From 91c3d4c4b13911c0dfe0c16fe33a4a0c51f02483 Mon Sep 17 00:00:00 2001 From: lltcggie Date: Fri, 29 May 2015 01:47:26 +0900 Subject: [PATCH] first --- .gitmodules | 3 + README.md | 166 ++++- common/waifu2x.cpp | 583 +++++++++++++++ common/waifu2x.h | 32 + include/tclap/Arg.h | 697 ++++++++++++++++++ include/tclap/ArgException.h | 200 +++++ include/tclap/ArgTraits.h | 87 +++ include/tclap/CmdLine.h | 633 ++++++++++++++++ include/tclap/CmdLineInterface.h | 150 ++++ include/tclap/CmdLineOutput.h | 74 ++ include/tclap/Constraint.h | 68 ++ include/tclap/DocBookOutput.h | 299 ++++++++ include/tclap/HelpVisitor.h | 76 ++ include/tclap/IgnoreRestVisitor.h | 52 ++ include/tclap/Makefile.am | 28 + include/tclap/Makefile.in | 403 ++++++++++ include/tclap/MultiArg.h | 433 +++++++++++ include/tclap/MultiSwitchArg.h | 216 ++++++ include/tclap/OptionalUnlabeledTracker.h | 62 ++ include/tclap/StandardTraits.h | 208 ++++++ include/tclap/StdOutput.h | 298 ++++++++ include/tclap/SwitchArg.h | 266 +++++++ include/tclap/UnlabeledMultiArg.h | 301 ++++++++ include/tclap/UnlabeledValueArg.h | 340 +++++++++ include/tclap/ValueArg.h | 425 +++++++++++ include/tclap/ValuesConstraint.h | 148 ++++ include/tclap/VersionVisitor.h | 81 ++ include/tclap/Visitor.h | 53 ++ include/tclap/XorHandler.h | 166 +++++ include/tclap/ZshCompletionOutput.h | 323 ++++++++ rapidjson | 1 + waifu2x-caffe-gui/CControl.cpp | 87 +++ waifu2x-caffe-gui/CControl.h | 79 ++ waifu2x-caffe-gui/CDialog.cpp | 58 ++ waifu2x-caffe-gui/CDialog.h | 93 +++ waifu2x-caffe-gui/CDialogBase.cpp | 41 ++ waifu2x-caffe-gui/CDialogBase.h | 25 + waifu2x-caffe-gui/CWindow.h | 61 ++ waifu2x-caffe-gui/CWindowBase.h | 47 ++ waifu2x-caffe-gui/GUICommon.h | 10 + waifu2x-caffe-gui/Resource.rc | Bin 0 -> 8392 bytes waifu2x-caffe-gui/Source.cpp | 601 +++++++++++++++ waifu2x-caffe-gui/manifest.manifest | 22 + waifu2x-caffe-gui/models/noise1_model.json | 1 + waifu2x-caffe-gui/models/noise2_model.json | 1 + waifu2x-caffe-gui/models/scale2.0x_model.json | 1 + waifu2x-caffe-gui/models/srcnn.prototxt | 193 +++++ waifu2x-caffe-gui/resource.h | Bin 0 -> 2542 bytes waifu2x-caffe-gui/waifu2x-caffe-gui.vcxproj | 116 +++ .../waifu2x-caffe-gui.vcxproj.filters | 70 ++ waifu2x-caffe.sln | 31 + waifu2x-caffe/Source.cpp | 277 +++++++ waifu2x-caffe/models/noise1_model.json | 1 + waifu2x-caffe/models/noise2_model.json | 1 + waifu2x-caffe/models/scale2.0x_model.json | 1 + waifu2x-caffe/models/srcnn.prototxt | 193 +++++ waifu2x-caffe/waifu2x-caffe.vcxproj | 94 +++ waifu2x-caffe/waifu2x-caffe.vcxproj.filters | 30 + 58 files changed, 9005 insertions(+), 1 deletion(-) create mode 100644 .gitmodules create mode 100644 common/waifu2x.cpp create mode 100644 common/waifu2x.h create mode 100644 include/tclap/Arg.h create mode 100644 include/tclap/ArgException.h create mode 100644 include/tclap/ArgTraits.h create mode 100644 include/tclap/CmdLine.h create mode 100644 include/tclap/CmdLineInterface.h create mode 100644 include/tclap/CmdLineOutput.h create mode 100644 include/tclap/Constraint.h create mode 100644 include/tclap/DocBookOutput.h create mode 100644 include/tclap/HelpVisitor.h create mode 100644 include/tclap/IgnoreRestVisitor.h create mode 100644 include/tclap/Makefile.am create mode 100644 include/tclap/Makefile.in create mode 100644 include/tclap/MultiArg.h create mode 100644 include/tclap/MultiSwitchArg.h create mode 100644 include/tclap/OptionalUnlabeledTracker.h create mode 100644 include/tclap/StandardTraits.h create mode 100644 include/tclap/StdOutput.h create mode 100644 include/tclap/SwitchArg.h create mode 100644 include/tclap/UnlabeledMultiArg.h create mode 100644 include/tclap/UnlabeledValueArg.h create mode 100644 include/tclap/ValueArg.h create mode 100644 include/tclap/ValuesConstraint.h create mode 100644 include/tclap/VersionVisitor.h create mode 100644 include/tclap/Visitor.h create mode 100644 include/tclap/XorHandler.h create mode 100644 include/tclap/ZshCompletionOutput.h create mode 160000 rapidjson create mode 100644 waifu2x-caffe-gui/CControl.cpp create mode 100644 waifu2x-caffe-gui/CControl.h create mode 100644 waifu2x-caffe-gui/CDialog.cpp create mode 100644 waifu2x-caffe-gui/CDialog.h create mode 100644 waifu2x-caffe-gui/CDialogBase.cpp create mode 100644 waifu2x-caffe-gui/CDialogBase.h create mode 100644 waifu2x-caffe-gui/CWindow.h create mode 100644 waifu2x-caffe-gui/CWindowBase.h create mode 100644 waifu2x-caffe-gui/GUICommon.h create mode 100644 waifu2x-caffe-gui/Resource.rc create mode 100644 waifu2x-caffe-gui/Source.cpp create mode 100644 waifu2x-caffe-gui/manifest.manifest create mode 100644 waifu2x-caffe-gui/models/noise1_model.json create mode 100644 waifu2x-caffe-gui/models/noise2_model.json create mode 100644 waifu2x-caffe-gui/models/scale2.0x_model.json create mode 100644 waifu2x-caffe-gui/models/srcnn.prototxt create mode 100644 waifu2x-caffe-gui/resource.h create mode 100644 waifu2x-caffe-gui/waifu2x-caffe-gui.vcxproj create mode 100644 waifu2x-caffe-gui/waifu2x-caffe-gui.vcxproj.filters create mode 100644 waifu2x-caffe.sln create mode 100644 waifu2x-caffe/Source.cpp create mode 100644 waifu2x-caffe/models/noise1_model.json create mode 100644 waifu2x-caffe/models/noise2_model.json create mode 100644 waifu2x-caffe/models/scale2.0x_model.json create mode 100644 waifu2x-caffe/models/srcnn.prototxt create mode 100644 waifu2x-caffe/waifu2x-caffe.vcxproj create mode 100644 waifu2x-caffe/waifu2x-caffe.vcxproj.filters diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..c2c64f3 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "rapidjson"] + path = rapidjson + url = https://github.com/miloyip/rapidjson.git diff --git a/README.md b/README.md index d0254cb..94c34f3 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,166 @@ # waifu2x-caffe -waifu2xのCaffe版 + +本ソフトは、画像変換ソフトウェア「[waifu2x](https://github.com/nagadomi/waifu2x)」の変換機能のみを、 +[Caffe](http://caffe.berkeleyvision.org/)を用いて書き直したソフトです。 + + + 要求環境 +---------- + +このソフトを動作させるには最低でも以下の環境が必要です。 + + * OS : Windows Vista以降 64bit (32bit用exeはありません) + * メモリ : 空きメモリ1GB以上 (ただし、変換する画像サイズによる) + * Visual C++ 2013 再頒布可能パッケージがインストールされていること(必須) + - 上記パッケージは[こちら](https://www.microsoft.com/ja-jp/download/details.aspx?id=40784) + - `ダウンロード` ボタンを押した後、`vcredist_x64.exe`を選択し、ダウンロード・インストールを行って下さい。 + - 見つからない場合は、「Visual C++ 2013 再頒布可能パッケージ」で検索してみて下さい。 + +cuDNNで変換する場合はさらに + + * GPU : Compute Capability 3.0 以上のNVIDIA製GPU + +自分のGPUのCompute Capabilityが知りたい場合は[こちらのページ](https://developer.nvidia.com/cuda-gpus)で調べて下さい。 + + + cuDNNについて +-------- + +cuDNNはNVIDIA製GPUでのみつかえる高速な機械学習向けのライブラリです。 +cuDNNを使うと使わない場合に比べて大きな画像を高速に変換することが出来ますが(cuDNNを使わなくてもGPUで変換出来ます)、 +ライセンスの関係上動作に必要なファイルを配布することが出来ません。 +なので、cuDNNを使いたい人は[こちらのページ](https://developer.nvidia.com/cuDNN)でWindows向けバイナリをダウンロードし、 +「cudnn64_65.dll」をwaifu2x-caffeのフォルダに入れて下さい。 +(cuDNNをダウンロードするにはNVIDIA Developerへの登録とCUDA Registered Developersへの登録が必要です。 + CUDA Registered Developersはおそらく(簡単な)審査があるっぽいので登録してもすぐにcuDNNをダウンロード出来るわけではありません。) + + + 使い方 +-------- + +「waifu2x-caffe.exe」はGUIソフトです。ダブルクリックで起動します。 + +「入力」欄に画像かフォルダをドラッグ&ドロップで放り込むと「出力」欄が自動で設定されます。 +出力先を変えたい場合は「出力」欄を変更して下さい。 + +好みに合わせて変換設定を変更することが出来ます。 + +「変換モード」 + 変換モードを指定します。 + * ノイズ除去 : ノイズ除去を行います + * 拡大 : 拡大を行います + * ノイズ除去と拡大 : ノイズ除去と拡大を行います + * ノイズ除去(自動判別)と拡大 : 拡大を行います。入力がJPEG画像の場合のみノイズ除去も行います + +「JPEGノイズ除去レベル」 + ノイズ除去レベルを指定します。 + +「拡大率」 + 拡大率を指定します + +「出力拡張子」 + 出力拡張子を指定します + +「プロセッサー」 + 変換を行うプロセッサーを指定します + * CPU : CPUのみを使って変換を行います + * GPU(使えたらcuDNN) : GPUを使って変換を行います(cuDNNが使えるならcuDNNが使われます) + +「cuDNNチェック」ボタンを押すとcuDNNが使えるか調べることが出来ます。 +が、cuDNNが動く環境でしか動かしていないためうまくチェック出来るかは不明です。 + +「実行」ボタンを押すと変換が始まります。 +途中でキャンセルしたい場合は「キャンセル」ボタンを押します。 +ただし、実際に停止するまでタイムラグがあります。 + + +「waifu2x-caffe-cui.exe」はコマンドラインツールです。 +`コマンドプロンプト` を立ち上げ、次のようにコマンドを打ち込み、使用して下さい。 + + +以下のコマンドは、使い方を画面に出力します。 +``` +waifu2x-caffe-cui.exe --help +``` + +以下のコマンドは、画像変換を実行するコマンドの例です。 +``` +waifu2x-caffe-cui.exe -i mywaifu.png -m noise_scale -j 8 --scale_ratio 1.6 --noise_level 2 +``` +以上を実行すると、`mywaifu(noise_scale)(Level2)(x1.600000).png`に変換結果が保存されます。 + + +本ソフトでは、以下のオプションを指定することが出来ます。 + + -i <文字列>, --input_file <文字列> + (必須) 変換する画像へのパス + フォルダを指定した場合、そのフォルダ以下の画像ファイルを全て変換してoutput_fileで指定したフォルダへ出力します。 + + -o , --output_file + 変換された画像を保存するファイルへのパス + (input_fileがフォルダの場合)変換された画像を保存するフォルダへのパス + (input_fileが画像ファイルの場合)拡張子(最後の.pngなど)は必ず入力するようにして下さい。 + 指定しなかった場合は自動でファイル名を決定し、そのファイルに保存します。 + ファイル名の決定ルールは、 + `[元の画像ファイル名]``(モード名)``(ノイズ除去レベル(ノイズ除去モードの場合))``(拡大率(拡大モードの場合))``.png` + のようになっています。 + 保存される場所は、基本的には入力画像と同じディレクトリになります。 + + + -l <文字列>, --input_extention_list <文字列> + input_fileがフォルダの場合の、フォルダ内の変換する画像の拡張子を指定します。 + デフォルト値は`png:jpg:bmp`です。 + また、区切り文字は`:`です。 + 例. png:jpg:bmp + + -l <文字列>, --input_extention_list <文字列> + input_fileがフォルダの場合の、出力画像の拡張子を指定します。 + デフォルト値は`png`です。 + + -m , --mode + 変換モードを指定します。指定しなかった場合は`noise_scale`が選択されます。 + * noise : ノイズ除去を行います (正確には、ノイズ除去用のモデルを用いて画像変換を行います) + * scale : 拡大を行います (正確には、既存アルゴリズムで拡大した後に、拡大画像補完用のモデルを用いて画像変換を行います) + * noise_scale : ノイズ除去と拡大を行います (ノイズ除去を行った後に、引き続き拡大処理を行います) + * auto_scale : 拡大を行います。入力がJPEG画像の場合のみノイズ除去も行います + + -s <小数点付き数値>, --scale_ratio <小数点付き数値> + 何倍に拡大するかを指定します。デフォルト値は`2.0`ですが、2.0倍以外も指定できます。 + 2.0以外の数値を指定すると、次のような処理を行います。 + * まず、指定された倍率を必要十分にカバーするように、2倍拡大を繰り返し行います。 + * 2の累乗以外の数値がしてされている場合は、指定倍率になるように拡大した画像を線形フィルタで縮小します。 + + -n <1|2>, --noise_level <1|2> + ノイズ除去レベルを指定します。ノイズ除去用のモデルはレベル1とレベル2のみ用意されているので、 + 1 もしくは 2 を指定して下さい。 + デフォルト値は`1`です。 + + --model_dir <文字列> + モデルが格納されているディレクトリへのパスを指定します。デフォルト値は`models`です。 + 基本的には指定しなくても大丈夫です。独自のモデルを使用する時などに指定して下さい。 + + --, --ignore_rest + このオプションが指定された後の全てのオプションを無視します。 + スクリプト・バッチファイル用です。 + + --version + バージョン情報を出力し、終了します。 + + -h, --help + 使い方を表示し、終了します。 + 手軽に使い方を確認したい時などにどうぞ。 + + + おことわり +------------ + +本ソフトは無保証です。 +利用者の判断の下に使用して下さい。 +制作者はいかなる義務も負わないものとします。 + + + 謝辞 +------ +オリジナルのwaifu2x、及びモデルの制作を行い、MITライセンスの下で公開して下さった ultraistさん、 +オリジナルのwaifu2xを元にwaifu2x-converterを作成して下さった アミーゴさん(READMEやLICENSE.txtの書き方、OpenCVの使い方等かなり参考にさせていただきました) +に、感謝します。 diff --git a/common/waifu2x.cpp b/common/waifu2x.cpp new file mode 100644 index 0000000..a4f029c --- /dev/null +++ b/common/waifu2x.cpp @@ -0,0 +1,583 @@ +#include "waifu2x.h" +#include +#include +#include +#include +#include +#include +#include +#include + +#if defined(WIN32) || defined(WIN64) +#include +#endif + +#ifdef _MSC_VER +#ifdef _DEBUG +#pragma comment(lib, "libcaffed.lib") +#pragma comment(lib, "libprotobufd.lib") +#else +#pragma comment(lib, "libcaffe.lib") +#pragma comment(lib, "libprotobuf.lib") +#endif +#pragma comment(lib, "libprotoc.lib") +#endif + +const auto block_size = 128; +const auto offset = 0; +const auto layer_num = 7; +const auto output_size = block_size - offset * 2; + +const int ConvertMode = CV_RGB2YUV; +const int ConvertInverseMode = CV_YUV2RGB; + +std::once_flag waifu2x_once_flag; +std::once_flag waifu2x_cudnn_once_flag; + + +// cuDNNg邩`FbNBWindowŝ +bool can_use_cuDNN() +{ + static bool cuDNNFlag = false; + std::call_once(waifu2x_cudnn_once_flag, [&]() + { +#if defined(WIN32) || defined(WIN64) + HMODULE hModule = LoadLibrary(TEXT("cudnn64_65.dll")); + if (hModule != NULL) + { + typedef cudnnStatus_t(*cudnnCreateType)(cudnnHandle_t *); + typedef cudnnStatus_t(*cudnnDestroyType)(cudnnHandle_t); + + cudnnCreateType cudnnCreateFunc = (cudnnCreateType)GetProcAddress(hModule, "cudnnCreate"); + cudnnDestroyType cudnnDestroyFunc = (cudnnDestroyType)GetProcAddress(hModule, "cudnnDestroy"); + if (cudnnCreateFunc != nullptr && cudnnDestroyFunc != nullptr) + { + cudnnHandle_t h; + if (cudnnCreateFunc(&h) == CUDNN_STATUS_SUCCESS) + { + if (cudnnDestroyFunc(h) == CUDNN_STATUS_SUCCESS) + cuDNNFlag = true; + } + } + + FreeLibrary(hModule); + } +#endif + }); + + return cuDNNFlag; +} + +// 摜ǂݍŒl0.0f`1.0f͈̔͂ɕϊ +eWaifu2xError LoadImage(cv::Mat &float_image, const std::string &input_file) +{ + cv::Mat original_image = cv::imread(input_file, cv::IMREAD_COLOR); + if (original_image.empty()) + return eWaifu2xError_FailedOpenInputFile; + + original_image.convertTo(float_image, CV_32F, 1.0 / 255.0); + original_image.release(); + + return eWaifu2xError_OK; +} + +// 摜Px̉摜o +eWaifu2xError CreateBrightnessImage(const cv::Mat &float_image, cv::Mat &im) +{ + cv::Mat converted_color; + cv::cvtColor(float_image, converted_color, ConvertMode); + + std::vector planes; + cv::split(converted_color, planes); + + im = planes[0]; + planes.clear(); + + return eWaifu2xError_OK; +} + +// ͉摜(Photoshopł)LoXTCYoutput_size̔{ɕύX +// 摜͍zuA]cv::BORDER_REPLICATEŖ߂ +eWaifu2xError PaddingImage(const cv::Mat &input, cv::Mat &output) +{ + const auto h_blocks = (int)floor(input.size().width / output_size) + (input.size().width % output_size == 0 ? 0 : 1); + const auto w_blocks = (int)floor(input.size().height / output_size) + (input.size().height % output_size == 0 ? 0 : 1); + const auto height = offset + h_blocks * output_size + offset; + const auto width = offset + w_blocks * output_size + offset; + const auto pad_h1 = offset; + const auto pad_w1 = offset; + const auto pad_h2 = (height - offset) - input.size().width; + const auto pad_w2 = (width - offset) - input.size().height; + + cv::copyMakeBorder(input, output, pad_w1, pad_w2, pad_h1, pad_h2, cv::BORDER_REPLICATE); + + return eWaifu2xError_OK; +} + +// 摜cv::INTER_NEARESTœ{Ɋg債āAPaddingImage()ŃpfBO +eWaifu2xError Zoom2xAndPaddingImage(const cv::Mat &input, cv::Mat &output, cv::Size_ &zoom_size) +{ + zoom_size = input.size(); + zoom_size.width *= 2; + zoom_size.height *= 2; + + cv::Mat zoom_image; + cv::resize(input, zoom_image, zoom_size, 0.0, 0.0, cv::INTER_NEAREST); + + return PaddingImage(zoom_image, output); +} + +// ͉摜zoom_sizȇ傫cv::INTER_CUBICŊg債AF݂̂c +eWaifu2xError CreateZoomColorImage(const cv::Mat &float_image, const cv::Size_ &zoom_size, std::vector &cubic_planes) +{ + cv::Mat zoom_cubic_image; + cv::resize(float_image, zoom_cubic_image, zoom_size, 0.0, 0.0, cv::INTER_CUBIC); + + cv::Mat converted_cubic_image; + cv::cvtColor(zoom_cubic_image, converted_cubic_image, ConvertMode); + zoom_cubic_image.release(); + + cv::split(converted_cubic_image, cubic_planes); + converted_cubic_image.release(); + + // Y͎gȂ̂ʼn + cubic_planes[0].release(); + + return eWaifu2xError_OK; +} + +// wKp[^t@Cǂݍ +eWaifu2xError LoadParameter(boost::shared_ptr> net, const std::string ¶m_path) +{ + rapidjson::Document d; + std::vector jsonBuf; + + try + { + FILE *fp = fopen(param_path.c_str(), "rb"); + if (fp == nullptr) + return eWaifu2xError_FailedOpenModelFile; + + fseek(fp, 0, SEEK_END); + const auto size = ftell(fp); + fseek(fp, 0, SEEK_SET); + + jsonBuf.resize(size + 1); + fread(jsonBuf.data(), 1, size, fp); + + fclose(fp); + + jsonBuf[jsonBuf.size() - 1] = '\0'; + + d.Parse(jsonBuf.data()); + } + catch (...) + { + return eWaifu2xError_FailedParseModelFile; + } + + std::vector>> list; + auto &v = net->layers(); + for (auto &l : v) + { + auto lk = l->type(); + auto &bv = l->blobs(); + if (bv.size() > 0) + list.push_back(l); + } + + try + { + int count = 0; + for (auto it = d.Begin(); it != d.End(); ++it) + { + const auto &weight = (*it)["weight"]; + const auto nInputPlane = (*it)["nInputPlane"].GetInt(); + const auto nOutputPlane = (*it)["nOutputPlane"].GetInt(); + const auto kW = (*it)["kW"].GetInt(); + const auto &bias = (*it)["bias"]; + + auto leyer = list[count]; + + auto &b0 = leyer->blobs()[0]; + auto &b1 = leyer->blobs()[1]; + + float *b0Ptr = nullptr; + float *b1Ptr = nullptr; + + if (caffe::Caffe::mode() == caffe::Caffe::CPU) + { + b0Ptr = b0->mutable_cpu_data(); + b1Ptr = b1->mutable_cpu_data(); + } + else + { + b0Ptr = b0->mutable_gpu_data(); + b1Ptr = b1->mutable_gpu_data(); + } + + const auto WeightSize1 = weight.Size(); + const auto WeightSize2 = weight[0].Size(); + const auto KernelHeight = weight[0][0].Size(); + const auto KernelWidth = weight[0][0][0].Size(); + + if (!(b0->count() == WeightSize1 * WeightSize2 * KernelHeight * KernelWidth)) + return eWaifu2xError_FailedConstructModel; + + if (!(b1->count() == bias.Size())) + return eWaifu2xError_FailedConstructModel; + + size_t weightCount = 0; + std::vector weightList; + for (auto it2 = weight.Begin(); it2 != weight.End(); ++it2) + { + for (auto it3 = (*it2).Begin(); it3 != (*it2).End(); ++it3) + { + for (auto it4 = (*it3).Begin(); it4 != (*it3).End(); ++it4) + { + for (auto it5 = (*it4).Begin(); it5 != (*it4).End(); ++it5) + weightList.push_back((float)it5->GetDouble()); + } + } + } + + caffe::caffe_copy(b0->count(), weightList.data(), b0Ptr); + + std::vector biasList; + for (auto it2 = bias.Begin(); it2 != bias.End(); ++it2) + biasList.push_back((float)it2->GetDouble()); + + caffe::caffe_copy(b1->count(), biasList.data(), b1Ptr); + + count++; + } + } + catch (...) + { + return eWaifu2xError_FailedConstructModel; + } + + return eWaifu2xError_OK; +} + +// ft@Clbg[N\z +// processcudnnw肳ȂꍇcuDNNĂяoȂ悤ɕύX +eWaifu2xError ConstractNet(boost::shared_ptr> &net, const std::string &model_path, const std::string &process) +{ + caffe::NetParameter param; + if (!caffe::ReadProtoFromTextFile(model_path, ¶m)) + return eWaifu2xError_FailedOpenModelFile; + + param.mutable_state()->set_phase(caffe::TEST); + + for (int i = 0; i < param.layer_size(); i++) + { + caffe::LayerParameter *layer_param = param.mutable_layer(i); + const std::string& type = layer_param->type(); + if (type == "Convolution") + { + if (process == "cudnn") + layer_param->mutable_convolution_param()->set_engine(caffe::ConvolutionParameter_Engine_CUDNN); + else + layer_param->mutable_convolution_param()->set_engine(caffe::ConvolutionParameter_Engine_CAFFE); + } + else if (type == "ReLU") + { + if (process == "cudnn") + layer_param->mutable_relu_param()->set_engine(caffe::ReLUParameter_Engine_CUDNN); + else + layer_param->mutable_relu_param()->set_engine(caffe::ReLUParameter_Engine_CAFFE); + } + } + + net = boost::shared_ptr>(new caffe::Net(param)); + + return eWaifu2xError_OK; +} + +// lbg[Ngĉ摜č\z +eWaifu2xError ReconstructImage(boost::shared_ptr> net, cv::Mat &im, const waifu2xProgressFunc func) +{ + const auto Height = im.size().height; + const auto Width = im.size().width; + const auto Line = im.step1(); + + assert(im.channels() == 1); + + float *imptr = (float *)im.data; + + try + { + const auto input_layer = + boost::dynamic_pointer_cast>( + net->layer_by_name("image_input_layer")); + assert(input_layer); + + const auto conv7_layer = + boost::dynamic_pointer_cast>( + net->layer_by_name("conv7_layer")); + assert(conv7_layer); + + // lbg[Nɓ͂摜̃TCY(o͉摜̕layer_num * 2Ȃ) + const int block_width = block_size + layer_num * 2; + + std::vector block(block_width * block_width, 0.0f); + std::vector dummy_data(block.size(), 0.0f); + + // 摜(̓s)output_size*output_sizeɕčč\z + for (int h = 0; h < Height; h += output_size) + { + for (int w = 0; w < Width; w += output_size) + { + if (w + block_size <= Width && h + block_size <= Height) + { + { + cv::Mat someimg = im(cv::Rect(w, h, block_size, block_size)); + cv::Mat someborderimg; + // 摜𒆉ɃpfBOB]cv::BORDER_REPLICATEŖ߂ + cv::copyMakeBorder(someimg, someborderimg, layer_num, layer_num, layer_num, layer_num, cv::BORDER_REPLICATE); + someimg.release(); + + // 摜𒼗ɕϊ + { + float *fptr = block.data(); + const float *uptr = (const float *)someborderimg.data; + + const auto Line = someborderimg.step1(); + + for (int i = 0; i < block_width; i++) + memcpy(fptr + i * block_width, uptr + i * Line, block_width * sizeof(float)); + } + } + + // lbg[Nɉ摜 + input_layer->Reset(block.data(), dummy_data.data(), block.size()); + + // vZ + auto out = net->ForwardPrefilled(nullptr); + + auto b = out[0]; + + assert(b->count() == block_size * block_size); + + const float *ptr = nullptr; + + if (caffe::Caffe::mode() == caffe::Caffe::CPU) + ptr = b->cpu_data(); + else + ptr = b->gpu_data(); + + // ʂ͉摜ɃRs[(ɏ镔Ƃŏ㏑镔͔ȂA͉摜㏑Ăv) + for (int i = 0; i < block_size; i++) + caffe::caffe_copy(block_size, ptr + i * block_size, imptr + (h + i) * Line + w); + } + } + } + } + catch (...) + { + return eWaifu2xError_FailedProcessCaffe; + } + + return eWaifu2xError_OK; +} + +eWaifu2xError waifu2x(int argc, char** argv, const std::vector &file_paths, + const std::string &mode, const int noise_level, const double scale_ratio, const std::string &model_dir, const std::string &process, + std::vector &errors, const waifu2xCancelFunc cancel_func, const waifu2xProgressFunc progress_func) +{ + if (scale_ratio <= 0.0) + return eWaifu2xError_InvalidParameter; + + eWaifu2xError ret; + + std::call_once(waifu2x_once_flag, [argc, argv]() + { + assert(argc >= 1); + + int tmpargc = 1; + char* tmpargvv[] = { argv[0] }; + char** tmpargv = tmpargvv; + // glog̏ + caffe::GlobalInit(&tmpargc, &tmpargv); + }); + + std::string process_fix(process); + if (process_fix == "gpu") + { + // cuDNNgȂcuDNNg + if (can_use_cuDNN()) + process_fix = "cudnn"; + } + + boost::filesystem::path mode_dir_path(model_dir); + if (!mode_dir_path.is_absolute()) // model_dir΃pXȂ΃pXɒ + { + // ܂̓JgfBNgɂ邩T + mode_dir_path = boost::filesystem::absolute(model_dir); + if (!boost::filesystem::exists(mode_dir_path) && argc >= 1) // argv[0]st@ĈtH_𐄒肵ÃtH_ɂ邩T + { + boost::filesystem::path a0(argv[0]); + if (a0.is_absolute()) + mode_dir_path = a0.branch_path() / model_dir; + } + } + + if (!boost::filesystem::exists(mode_dir_path)) + return eWaifu2xError_FailedOpenModelFile; + + if (process_fix == "cpu") + caffe::Caffe::set_mode(caffe::Caffe::CPU); + else + caffe::Caffe::set_mode(caffe::Caffe::GPU); + + boost::shared_ptr> net_noise; + boost::shared_ptr> net_scale; + + if (mode == "noise" || mode == "noise_scale" || mode == "auto_scale") + { + const std::string model_path = (mode_dir_path / "srcnn.prototxt").string(); + const std::string param_path = (mode_dir_path / ("noise" + std::to_string(noise_level) + "_model.json")).string(); + + ret = ConstractNet(net_noise, model_path, process); + if (ret != eWaifu2xError_OK) + return ret; + + ret = LoadParameter(net_noise, param_path); + if (ret != eWaifu2xError_OK) + return ret; + } + + if (mode == "scale" || mode == "noise_scale" || mode == "auto_scale") + { + const std::string model_path = (mode_dir_path / "srcnn.prototxt").string(); + const std::string param_path = (mode_dir_path / "scale2.0x_model.json").string(); + + ret = ConstractNet(net_scale, model_path, process); + if (ret != eWaifu2xError_OK) + return ret; + + ret = LoadParameter(net_scale, param_path); + if (ret != eWaifu2xError_OK) + return ret; + } + + int fileCount = 0; + for (const auto &p : file_paths) + { + progress_func(file_paths.size(), fileCount); + + if (cancel_func()) + return eWaifu2xError_Cancel; + + const auto &input_file = p.first; + const auto &output_file = p.second; + + cv::Mat float_image; + ret = LoadImage(float_image, input_file); + if (ret != eWaifu2xError_OK) + { + errors.emplace_back(p, ret); + continue; + } + + cv::Mat im; + CreateBrightnessImage(float_image, im); + + cv::Size_ image_size = im.size(); + + const boost::filesystem::path ip(input_file); + const boost::filesystem::path ipext(ip.extension()); + + const bool isJpeg = boost::iequals(ipext.string(), ".jpg") || boost::iequals(ipext.string(), ".jpeg"); + + const bool isReconstructNoise = mode == "noise" || mode == "noise_scale" || (mode == "auto_scale" && isJpeg); + const bool isReconstructScale = mode == "scale" || mode == "noise_scale"; + + if (isReconstructNoise) + { + PaddingImage(im, im); + + ret = ReconstructImage(net_noise, im, progress_func); + if (ret != eWaifu2xError_OK) + { + errors.emplace_back(p, ret); + continue; + } + + // pfBO蕥 + im = im(cv::Rect(offset, offset, image_size.width, image_size.height)); + } + + if (cancel_func()) + return eWaifu2xError_Cancel; + + const int scale2 = ceil(log2(scale_ratio)); + const double shrinkRatio = scale_ratio / std::pow(2.0, (double)scale2); + + if (isReconstructScale) + { + bool isError = false; + for (int i = 0; i < scale2; i++) + { + Zoom2xAndPaddingImage(im, im, image_size); + + ret = ReconstructImage(net_scale, im, progress_func); + if (ret != eWaifu2xError_OK) + { + errors.emplace_back(p, ret); + isError = true; + break; + } + + // pfBO蕥 + im = im(cv::Rect(offset, offset, image_size.width, image_size.height)); + } + + if (isError) + continue; + } + + if (cancel_func()) + return eWaifu2xError_Cancel; + + // č\zPx摜CreateZoomColorImage()ō쐬F}[WĒʏ̉摜ɕϊA + + std::vector color_planes; + CreateZoomColorImage(float_image, image_size, color_planes); + float_image.release(); + + color_planes[0] = im; + im.release(); + + cv::Mat converted_image; + cv::merge(color_planes, converted_image); + color_planes.clear(); + + cv::Mat process_image; + cv::cvtColor(converted_image, process_image, ConvertInverseMode); + converted_image.release(); + + const cv::Size_ ns(image_size.width * shrinkRatio, image_size.height * shrinkRatio); + if (image_size.width != ns.width || image_size.height != ns.height) + cv::resize(process_image, process_image, ns, 0.0, 0.0, cv::INTER_LINEAR); + + cv::Mat write_iamge; + process_image.convertTo(write_iamge, CV_8U, 255.0); + process_image.release(); + + if (!cv::imwrite(output_file, write_iamge)) + { + errors.emplace_back(p, eWaifu2xError_FailedOpenOutputFile); + continue; + } + + write_iamge.release(); + + fileCount++; + } + + progress_func(file_paths.size(), fileCount); + + return eWaifu2xError_OK; +} diff --git a/common/waifu2x.h b/common/waifu2x.h new file mode 100644 index 0000000..5dc5b6f --- /dev/null +++ b/common/waifu2x.h @@ -0,0 +1,32 @@ +#pragma once + +#include +#include +#include +#include + +enum eWaifu2xError +{ + eWaifu2xError_OK = 0, + eWaifu2xError_Cancel, + eWaifu2xError_InvalidParameter, + eWaifu2xError_FailedOpenInputFile, + eWaifu2xError_FailedOpenOutputFile, + eWaifu2xError_FailedOpenModelFile, + eWaifu2xError_FailedParseModelFile, + eWaifu2xError_FailedConstructModel, + eWaifu2xError_FailedProcessCaffe, +}; + +typedef std::pair InputOutputPathPair; +typedef std::pair PathAndErrorPair; +typedef std::function waifu2xCancelFunc; +typedef std::function waifu2xProgressFunc; + +bool can_use_cuDNN(); + +// mode: noise or scale or noise_scale or auto_scale +// process: cpu or gpu or cudnn +eWaifu2xError waifu2x(int argc, char** argv, + const std::vector &file_paths, const std::string &mode, const int noise_level, const double scale_ratio, const std::string &model_dir, const std::string &process, + std::vector &errors, const waifu2xCancelFunc cancel_func = nullptr, const waifu2xProgressFunc progress_func = nullptr); diff --git a/include/tclap/Arg.h b/include/tclap/Arg.h new file mode 100644 index 0000000..c9990e0 --- /dev/null +++ b/include/tclap/Arg.h @@ -0,0 +1,697 @@ +// -*- Mode: c++; c-basic-offset: 4; tab-width: 4; -*- + +/****************************************************************************** + * + * file: Arg.h + * + * Copyright (c) 2003, Michael E. Smoot . + * Copyright (c) 2004, Michael E. Smoot, Daniel Aarno . + * All rights reverved. + * + * See the file COPYING in the top directory of this distribution for + * more information. + * + * THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + *****************************************************************************/ + + +#ifndef TCLAP_ARGUMENT_H +#define TCLAP_ARGUMENT_H + +#ifdef HAVE_CONFIG_H +#include +#else +#define HAVE_SSTREAM +#endif + +#include +#include +#include +#include +#include +#include + +#if defined(HAVE_SSTREAM) +#include +typedef std::istringstream istringstream; +#elif defined(HAVE_STRSTREAM) +#include +typedef std::istrstream istringstream; +#else +#error "Need a stringstream (sstream or strstream) to compile!" +#endif + +#include +#include +#include +#include +#include + +namespace TCLAP { + +/** + * A virtual base class that defines the essential data for all arguments. + * This class, or one of its existing children, must be subclassed to do + * anything. + */ +class Arg +{ + private: + /** + * Prevent accidental copying. + */ + Arg(const Arg& rhs); + + /** + * Prevent accidental copying. + */ + Arg& operator=(const Arg& rhs); + + /** + * Indicates whether the rest of the arguments should be ignored. + */ + static bool& ignoreRestRef() { static bool ign = false; return ign; } + + /** + * The delimiter that separates an argument flag/name from the + * value. + */ + static char& delimiterRef() { static char delim = ' '; return delim; } + + static bool &ignoreMismatchedRef() { static bool ign = false; return ign; } + + protected: + + /** + * The single char flag used to identify the argument. + * This value (preceded by a dash {-}), can be used to identify + * an argument on the command line. The _flag can be blank, + * in fact this is how unlabeled args work. Unlabeled args must + * override appropriate functions to get correct handling. Note + * that the _flag does NOT include the dash as part of the flag. + */ + std::string _flag; + + /** + * A single work namd indentifying the argument. + * This value (preceded by two dashed {--}) can also be used + * to identify an argument on the command line. Note that the + * _name does NOT include the two dashes as part of the _name. The + * _name cannot be blank. + */ + std::string _name; + + /** + * Description of the argument. + */ + std::string _description; + + /** + * Indicating whether the argument is required. + */ + bool _required; + + /** + * Label to be used in usage description. Normally set to + * "required", but can be changed when necessary. + */ + std::string _requireLabel; + + /** + * Indicates whether a value is required for the argument. + * Note that the value may be required but the argument/value + * combination may not be, as specified by _required. + */ + bool _valueRequired; + + /** + * Indicates whether the argument has been set. + * Indicates that a value on the command line has matched the + * name/flag of this argument and the values have been set accordingly. + */ + bool _alreadySet; + + /** + * A pointer to a vistitor object. + * The visitor allows special handling to occur as soon as the + * argument is matched. This defaults to NULL and should not + * be used unless absolutely necessary. + */ + Visitor* _visitor; + + /** + * Whether this argument can be ignored, if desired. + */ + bool _ignoreable; + + /** + * Indicates that the arg was set as part of an XOR and not on the + * command line. + */ + bool _xorSet; + + bool _acceptsMultipleValues; + + /** + * Performs the special handling described by the Vistitor. + */ + void _checkWithVisitor() const; + + /** + * Primary constructor. YOU (yes you) should NEVER construct an Arg + * directly, this is a base class that is extended by various children + * that are meant to be used. Use SwitchArg, ValueArg, MultiArg, + * UnlabeledValueArg, or UnlabeledMultiArg instead. + * + * \param flag - The flag identifying the argument. + * \param name - The name identifying the argument. + * \param desc - The description of the argument, used in the usage. + * \param req - Whether the argument is required. + * \param valreq - Whether the a value is required for the argument. + * \param v - The visitor checked by the argument. Defaults to NULL. + */ + Arg( const std::string& flag, + const std::string& name, + const std::string& desc, + bool req, + bool valreq, + Visitor* v = NULL ); + + public: + /** + * Destructor. + */ + virtual ~Arg(); + + /** + * Adds this to the specified list of Args. + * \param argList - The list to add this to. + */ + virtual void addToList( std::list& argList ) const; + + /** + * Begin ignoring arguments since the "--" argument was specified. + */ + static void beginIgnoring() { ignoreRestRef() = true; } + + /** + * Whether to ignore the rest. + */ + static bool ignoreRest() { return ignoreRestRef(); } + + static void enableIgnoreMismatched() { ignoreMismatchedRef() = true; } + static bool ignoreMismatched() { return ignoreMismatchedRef(); } + + /** + * The delimiter that separates an argument flag/name from the + * value. + */ + static char delimiter() { return delimiterRef(); } + + /** + * The char used as a place holder when SwitchArgs are combined. + * Currently set to the bell char (ASCII 7). + */ + static char blankChar() { return (char)7; } + + /** + * The char that indicates the beginning of a flag. Defaults to '-', but + * clients can define TCLAP_FLAGSTARTCHAR to override. + */ +#ifndef TCLAP_FLAGSTARTCHAR +#define TCLAP_FLAGSTARTCHAR '-' +#endif + static char flagStartChar() { return TCLAP_FLAGSTARTCHAR; } + + /** + * The sting that indicates the beginning of a flag. Defaults to "-", but + * clients can define TCLAP_FLAGSTARTSTRING to override. Should be the same + * as TCLAP_FLAGSTARTCHAR. + */ +#ifndef TCLAP_FLAGSTARTSTRING +#define TCLAP_FLAGSTARTSTRING "-" +#endif + static const std::string flagStartString() { return TCLAP_FLAGSTARTSTRING; } + + /** + * The sting that indicates the beginning of a name. Defaults to "--", but + * clients can define TCLAP_NAMESTARTSTRING to override. + */ +#ifndef TCLAP_NAMESTARTSTRING +#define TCLAP_NAMESTARTSTRING "--" +#endif + static const std::string nameStartString() { return TCLAP_NAMESTARTSTRING; } + + /** + * The name used to identify the ignore rest argument. + */ + static const std::string ignoreNameString() { return "ignore_rest"; } + + /** + * Sets the delimiter for all arguments. + * \param c - The character that delimits flags/names from values. + */ + static void setDelimiter( char c ) { delimiterRef() = c; } + + /** + * Pure virtual method meant to handle the parsing and value assignment + * of the string on the command line. + * \param i - Pointer the the current argument in the list. + * \param args - Mutable list of strings. What is + * passed in from main. + */ + virtual bool processArg(int *i, std::vector& args) = 0; + + /** + * Operator ==. + * Equality operator. Must be virtual to handle unlabeled args. + * \param a - The Arg to be compared to this. + */ + virtual bool operator==(const Arg& a) const; + + /** + * Returns the argument flag. + */ + const std::string& getFlag() const; + + /** + * Returns the argument name. + */ + const std::string& getName() const; + + /** + * Returns the argument description. + */ + std::string getDescription() const; + + /** + * Indicates whether the argument is required. + */ + virtual bool isRequired() const; + + /** + * Sets _required to true. This is used by the XorHandler. + * You really have no reason to ever use it. + */ + void forceRequired(); + + /** + * Sets the _alreadySet value to true. This is used by the XorHandler. + * You really have no reason to ever use it. + */ + void xorSet(); + + /** + * Indicates whether a value must be specified for argument. + */ + bool isValueRequired() const; + + /** + * Indicates whether the argument has already been set. Only true + * if the arg has been matched on the command line. + */ + bool isSet() const; + + /** + * Indicates whether the argument can be ignored, if desired. + */ + bool isIgnoreable() const; + + /** + * A method that tests whether a string matches this argument. + * This is generally called by the processArg() method. This + * method could be re-implemented by a child to change how + * arguments are specified on the command line. + * \param s - The string to be compared to the flag/name to determine + * whether the arg matches. + */ + virtual bool argMatches( const std::string& s ) const; + + /** + * Returns a simple string representation of the argument. + * Primarily for debugging. + */ + virtual std::string toString() const; + + /** + * Returns a short ID for the usage. + * \param valueId - The value used in the id. + */ + virtual std::string shortID( const std::string& valueId = "val" ) const; + + /** + * Returns a long ID for the usage. + * \param valueId - The value used in the id. + */ + virtual std::string longID( const std::string& valueId = "val" ) const; + + /** + * Trims a value off of the flag. + * \param flag - The string from which the flag and value will be + * trimmed. Contains the flag once the value has been trimmed. + * \param value - Where the value trimmed from the string will + * be stored. + */ + virtual void trimFlag( std::string& flag, std::string& value ) const; + + /** + * Checks whether a given string has blank chars, indicating that + * it is a combined SwitchArg. If so, return true, otherwise return + * false. + * \param s - string to be checked. + */ + bool _hasBlanks( const std::string& s ) const; + + /** + * Sets the requireLabel. Used by XorHandler. You shouldn't ever + * use this. + * \param s - Set the requireLabel to this value. + */ + void setRequireLabel( const std::string& s ); + + /** + * Used for MultiArgs and XorHandler to determine whether args + * can still be set. + */ + virtual bool allowMore(); + + /** + * Use by output classes to determine whether an Arg accepts + * multiple values. + */ + virtual bool acceptsMultipleValues(); + + /** + * Clears the Arg object and allows it to be reused by new + * command lines. + */ + virtual void reset(); +}; + +/** + * Typedef of an Arg list iterator. + */ +typedef std::list::iterator ArgListIterator; + +/** + * Typedef of an Arg vector iterator. + */ +typedef std::vector::iterator ArgVectorIterator; + +/** + * Typedef of a Visitor list iterator. + */ +typedef std::list::iterator VisitorListIterator; + +/* + * Extract a value of type T from it's string representation contained + * in strVal. The ValueLike parameter used to select the correct + * specialization of ExtractValue depending on the value traits of T. + * ValueLike traits use operator>> to assign the value from strVal. + */ +template void +ExtractValue(T &destVal, const std::string& strVal, ValueLike vl) +{ + static_cast(vl); // Avoid warning about unused vl + std::istringstream is(strVal); + + int valuesRead = 0; + while ( is.good() ) { + if ( is.peek() != EOF ) +#ifdef TCLAP_SETBASE_ZERO + is >> std::setbase(0) >> destVal; +#else + is >> destVal; +#endif + else + break; + + valuesRead++; + } + + if ( is.fail() ) + throw( ArgParseException("Couldn't read argument value " + "from string '" + strVal + "'")); + + + if ( valuesRead > 1 ) + throw( ArgParseException("More than one valid value parsed from " + "string '" + strVal + "'")); + +} + +/* + * Extract a value of type T from it's string representation contained + * in strVal. The ValueLike parameter used to select the correct + * specialization of ExtractValue depending on the value traits of T. + * StringLike uses assignment (operator=) to assign from strVal. + */ +template void +ExtractValue(T &destVal, const std::string& strVal, StringLike sl) +{ + static_cast(sl); // Avoid warning about unused sl + SetString(destVal, strVal); +} + +////////////////////////////////////////////////////////////////////// +//BEGIN Arg.cpp +////////////////////////////////////////////////////////////////////// + +inline Arg::Arg(const std::string& flag, + const std::string& name, + const std::string& desc, + bool req, + bool valreq, + Visitor* v) : + _flag(flag), + _name(name), + _description(desc), + _required(req), + _requireLabel("required"), + _valueRequired(valreq), + _alreadySet(false), + _visitor( v ), + _ignoreable(true), + _xorSet(false), + _acceptsMultipleValues(false) +{ + if ( _flag.length() > 1 ) + throw(SpecificationException( + "Argument flag can only be one character long", toString() ) ); + + if ( _name != ignoreNameString() && + ( _flag == Arg::flagStartString() || + _flag == Arg::nameStartString() || + _flag == " " ) ) + throw(SpecificationException("Argument flag cannot be either '" + + Arg::flagStartString() + "' or '" + + Arg::nameStartString() + "' or a space.", + toString() ) ); + + if ( ( _name.substr( 0, Arg::flagStartString().length() ) == Arg::flagStartString() ) || + ( _name.substr( 0, Arg::nameStartString().length() ) == Arg::nameStartString() ) || + ( _name.find( " ", 0 ) != std::string::npos ) ) + throw(SpecificationException("Argument name begin with either '" + + Arg::flagStartString() + "' or '" + + Arg::nameStartString() + "' or space.", + toString() ) ); + +} + +inline Arg::~Arg() { } + +inline std::string Arg::shortID( const std::string& valueId ) const +{ + std::string id = ""; + + if ( _flag != "" ) + id = Arg::flagStartString() + _flag; + else + id = Arg::nameStartString() + _name; + + if ( _valueRequired ) + id += std::string( 1, Arg::delimiter() ) + "<" + valueId + ">"; + + if ( !_required ) + id = "[" + id + "]"; + + return id; +} + +inline std::string Arg::longID( const std::string& valueId ) const +{ + std::string id = ""; + + if ( _flag != "" ) + { + id += Arg::flagStartString() + _flag; + + if ( _valueRequired ) + id += std::string( 1, Arg::delimiter() ) + "<" + valueId + ">"; + + id += ", "; + } + + id += Arg::nameStartString() + _name; + + if ( _valueRequired ) + id += std::string( 1, Arg::delimiter() ) + "<" + valueId + ">"; + + return id; + +} + +inline bool Arg::operator==(const Arg& a) const +{ + if ( ( _flag != "" && _flag == a._flag ) || _name == a._name) + return true; + else + return false; +} + +inline std::string Arg::getDescription() const +{ + std::string desc = ""; + if ( _required ) + desc = "(" + _requireLabel + ") "; + +// if ( _valueRequired ) +// desc += "(value required) "; + + desc += _description; + return desc; +} + +inline const std::string& Arg::getFlag() const { return _flag; } + +inline const std::string& Arg::getName() const { return _name; } + +inline bool Arg::isRequired() const { return _required; } + +inline bool Arg::isValueRequired() const { return _valueRequired; } + +inline bool Arg::isSet() const +{ + if ( _alreadySet && !_xorSet ) + return true; + else + return false; +} + +inline bool Arg::isIgnoreable() const { return _ignoreable; } + +inline void Arg::setRequireLabel( const std::string& s) +{ + _requireLabel = s; +} + +inline bool Arg::argMatches( const std::string& argFlag ) const +{ + if ( ( argFlag == Arg::flagStartString() + _flag && _flag != "" ) || + argFlag == Arg::nameStartString() + _name ) + return true; + else + return false; +} + +inline std::string Arg::toString() const +{ + std::string s = ""; + + if ( _flag != "" ) + s += Arg::flagStartString() + _flag + " "; + + s += "(" + Arg::nameStartString() + _name + ")"; + + return s; +} + +inline void Arg::_checkWithVisitor() const +{ + if ( _visitor != NULL ) + _visitor->visit(); +} + +/** + * Implementation of trimFlag. + */ +inline void Arg::trimFlag(std::string& flag, std::string& value) const +{ + int stop = 0; + for ( int i = 0; static_cast(i) < flag.length(); i++ ) + if ( flag[i] == Arg::delimiter() ) + { + stop = i; + break; + } + + if ( stop > 1 ) + { + value = flag.substr(stop+1); + flag = flag.substr(0,stop); + } + +} + +/** + * Implementation of _hasBlanks. + */ +inline bool Arg::_hasBlanks( const std::string& s ) const +{ + for ( int i = 1; static_cast(i) < s.length(); i++ ) + if ( s[i] == Arg::blankChar() ) + return true; + + return false; +} + +inline void Arg::forceRequired() +{ + _required = true; +} + +inline void Arg::xorSet() +{ + _alreadySet = true; + _xorSet = true; +} + +/** + * Overridden by Args that need to added to the end of the list. + */ +inline void Arg::addToList( std::list& argList ) const +{ + argList.push_front( const_cast(this) ); +} + +inline bool Arg::allowMore() +{ + return false; +} + +inline bool Arg::acceptsMultipleValues() +{ + return _acceptsMultipleValues; +} + +inline void Arg::reset() +{ + _xorSet = false; + _alreadySet = false; +} + +////////////////////////////////////////////////////////////////////// +//END Arg.cpp +////////////////////////////////////////////////////////////////////// + +} //namespace TCLAP + +#endif + diff --git a/include/tclap/ArgException.h b/include/tclap/ArgException.h new file mode 100644 index 0000000..3411aa9 --- /dev/null +++ b/include/tclap/ArgException.h @@ -0,0 +1,200 @@ +// -*- Mode: c++; c-basic-offset: 4; tab-width: 4; -*- + +/****************************************************************************** + * + * file: ArgException.h + * + * Copyright (c) 2003, Michael E. Smoot . + * All rights reverved. + * + * See the file COPYING in the top directory of this distribution for + * more information. + * + * THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + *****************************************************************************/ + + +#ifndef TCLAP_ARG_EXCEPTION_H +#define TCLAP_ARG_EXCEPTION_H + +#include +#include + +namespace TCLAP { + +/** + * A simple class that defines and argument exception. Should be caught + * whenever a CmdLine is created and parsed. + */ +class ArgException : public std::exception +{ + public: + + /** + * Constructor. + * \param text - The text of the exception. + * \param id - The text identifying the argument source. + * \param td - Text describing the type of ArgException it is. + * of the exception. + */ + ArgException( const std::string& text = "undefined exception", + const std::string& id = "undefined", + const std::string& td = "Generic ArgException") + : std::exception(), + _errorText(text), + _argId( id ), + _typeDescription(td) + { } + + /** + * Destructor. + */ + virtual ~ArgException() throw() { } + + /** + * Returns the error text. + */ + std::string error() const { return ( _errorText ); } + + /** + * Returns the argument id. + */ + std::string argId() const + { + if ( _argId == "undefined" ) + return " "; + else + return ( "Argument: " + _argId ); + } + + /** + * Returns the arg id and error text. + */ + const char* what() const throw() + { + static std::string ex; + ex = _argId + " -- " + _errorText; + return ex.c_str(); + } + + /** + * Returns the type of the exception. Used to explain and distinguish + * between different child exceptions. + */ + std::string typeDescription() const + { + return _typeDescription; + } + + + private: + + /** + * The text of the exception message. + */ + std::string _errorText; + + /** + * The argument related to this exception. + */ + std::string _argId; + + /** + * Describes the type of the exception. Used to distinguish + * between different child exceptions. + */ + std::string _typeDescription; + +}; + +/** + * Thrown from within the child Arg classes when it fails to properly + * parse the argument it has been passed. + */ +class ArgParseException : public ArgException +{ + public: + /** + * Constructor. + * \param text - The text of the exception. + * \param id - The text identifying the argument source + * of the exception. + */ + ArgParseException( const std::string& text = "undefined exception", + const std::string& id = "undefined" ) + : ArgException( text, + id, + std::string( "Exception found while parsing " ) + + std::string( "the value the Arg has been passed." )) + { } +}; + +/** + * Thrown from CmdLine when the arguments on the command line are not + * properly specified, e.g. too many arguments, required argument missing, etc. + */ +class CmdLineParseException : public ArgException +{ + public: + /** + * Constructor. + * \param text - The text of the exception. + * \param id - The text identifying the argument source + * of the exception. + */ + CmdLineParseException( const std::string& text = "undefined exception", + const std::string& id = "undefined" ) + : ArgException( text, + id, + std::string( "Exception found when the values ") + + std::string( "on the command line do not meet ") + + std::string( "the requirements of the defined ") + + std::string( "Args." )) + { } +}; + +/** + * Thrown from Arg and CmdLine when an Arg is improperly specified, e.g. + * same flag as another Arg, same name, etc. + */ +class SpecificationException : public ArgException +{ + public: + /** + * Constructor. + * \param text - The text of the exception. + * \param id - The text identifying the argument source + * of the exception. + */ + SpecificationException( const std::string& text = "undefined exception", + const std::string& id = "undefined" ) + : ArgException( text, + id, + std::string("Exception found when an Arg object ")+ + std::string("is improperly defined by the ") + + std::string("developer." )) + { } + +}; + +class ExitException { +public: + ExitException(int estat) : _estat(estat) {} + + int getExitStatus() const { return _estat; } + +private: + int _estat; +}; + +} // namespace TCLAP + +#endif + diff --git a/include/tclap/ArgTraits.h b/include/tclap/ArgTraits.h new file mode 100644 index 0000000..0b2c18f --- /dev/null +++ b/include/tclap/ArgTraits.h @@ -0,0 +1,87 @@ +// -*- Mode: c++; c-basic-offset: 4; tab-width: 4; -*- + +/****************************************************************************** + * + * file: ArgTraits.h + * + * Copyright (c) 2007, Daniel Aarno, Michael E. Smoot . + * All rights reverved. + * + * See the file COPYING in the top directory of this distribution for + * more information. + * + * THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + *****************************************************************************/ + +// This is an internal tclap file, you should probably not have to +// include this directly + +#ifndef TCLAP_ARGTRAITS_H +#define TCLAP_ARGTRAITS_H + +namespace TCLAP { + +// We use two empty structs to get compile type specialization +// function to work + +/** + * A value like argument value type is a value that can be set using + * operator>>. This is the default value type. + */ +struct ValueLike { + typedef ValueLike ValueCategory; + virtual ~ValueLike() {} +}; + +/** + * A string like argument value type is a value that can be set using + * operator=(string). Usefull if the value type contains spaces which + * will be broken up into individual tokens by operator>>. + */ +struct StringLike { + virtual ~StringLike() {} +}; + +/** + * A class can inherit from this object to make it have string like + * traits. This is a compile time thing and does not add any overhead + * to the inherenting class. + */ +struct StringLikeTrait { + typedef StringLike ValueCategory; + virtual ~StringLikeTrait() {} +}; + +/** + * A class can inherit from this object to make it have value like + * traits. This is a compile time thing and does not add any overhead + * to the inherenting class. + */ +struct ValueLikeTrait { + typedef ValueLike ValueCategory; + virtual ~ValueLikeTrait() {} +}; + +/** + * Arg traits are used to get compile type specialization when parsing + * argument values. Using an ArgTraits you can specify the way that + * values gets assigned to any particular type during parsing. The two + * supported types are StringLike and ValueLike. + */ +template +struct ArgTraits { + typedef typename T::ValueCategory ValueCategory; + virtual ~ArgTraits() {} + //typedef ValueLike ValueCategory; +}; + +#endif + +} // namespace diff --git a/include/tclap/CmdLine.h b/include/tclap/CmdLine.h new file mode 100644 index 0000000..11da062 --- /dev/null +++ b/include/tclap/CmdLine.h @@ -0,0 +1,633 @@ +// -*- Mode: c++; c-basic-offset: 4; tab-width: 4; -*- + +/****************************************************************************** + * + * file: CmdLine.h + * + * Copyright (c) 2003, Michael E. Smoot . + * Copyright (c) 2004, Michael E. Smoot, Daniel Aarno. + * All rights reverved. + * + * See the file COPYING in the top directory of this distribution for + * more information. + * + * THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + *****************************************************************************/ + +#ifndef TCLAP_CMDLINE_H +#define TCLAP_CMDLINE_H + +#include +#include +#include +#include + +#include +#include +#include +#include + +#include +#include + +#include +#include + +#include +#include +#include +#include +#include +#include +#include // Needed for exit(), which isn't defined in some envs. + +namespace TCLAP { + +template void DelPtr(T ptr) +{ + delete ptr; +} + +template void ClearContainer(C &c) +{ + typedef typename C::value_type value_type; + std::for_each(c.begin(), c.end(), DelPtr); + c.clear(); +} + + +/** + * The base class that manages the command line definition and passes + * along the parsing to the appropriate Arg classes. + */ +class CmdLine : public CmdLineInterface +{ + protected: + + /** + * The list of arguments that will be tested against the + * command line. + */ + std::list _argList; + + /** + * The name of the program. Set to argv[0]. + */ + std::string _progName; + + /** + * A message used to describe the program. Used in the usage output. + */ + std::string _message; + + /** + * The version to be displayed with the --version switch. + */ + std::string _version; + + /** + * The number of arguments that are required to be present on + * the command line. This is set dynamically, based on the + * Args added to the CmdLine object. + */ + int _numRequired; + + /** + * The character that is used to separate the argument flag/name + * from the value. Defaults to ' ' (space). + */ + char _delimiter; + + /** + * The handler that manages xoring lists of args. + */ + XorHandler _xorHandler; + + /** + * A list of Args to be explicitly deleted when the destructor + * is called. At the moment, this only includes the three default + * Args. + */ + std::list _argDeleteOnExitList; + + /** + * A list of Visitors to be explicitly deleted when the destructor + * is called. At the moment, these are the Vistors created for the + * default Args. + */ + std::list _visitorDeleteOnExitList; + + /** + * Object that handles all output for the CmdLine. + */ + CmdLineOutput* _output; + + /** + * Should CmdLine handle parsing exceptions internally? + */ + bool _handleExceptions; + + /** + * Throws an exception listing the missing args. + */ + void missingArgsException(); + + /** + * Checks whether a name/flag string matches entirely matches + * the Arg::blankChar. Used when multiple switches are combined + * into a single argument. + * \param s - The message to be used in the usage. + */ + bool _emptyCombined(const std::string& s); + + /** + * Perform a delete ptr; operation on ptr when this object is deleted. + */ + void deleteOnExit(Arg* ptr); + + /** + * Perform a delete ptr; operation on ptr when this object is deleted. + */ + void deleteOnExit(Visitor* ptr); + +private: + + /** + * Prevent accidental copying. + */ + CmdLine(const CmdLine& rhs); + CmdLine& operator=(const CmdLine& rhs); + + /** + * Encapsulates the code common to the constructors + * (which is all of it). + */ + void _constructor(); + + + /** + * Is set to true when a user sets the output object. We use this so + * that we don't delete objects that are created outside of this lib. + */ + bool _userSetOutput; + + /** + * Whether or not to automatically create help and version switches. + */ + bool _helpAndVersion; + + public: + + /** + * Command line constructor. Defines how the arguments will be + * parsed. + * \param message - The message to be used in the usage + * output. + * \param delimiter - The character that is used to separate + * the argument flag/name from the value. Defaults to ' ' (space). + * \param version - The version number to be used in the + * --version switch. + * \param helpAndVersion - Whether or not to create the Help and + * Version switches. Defaults to true. + */ + CmdLine(const std::string& message, + const char delimiter = ' ', + const std::string& version = "none", + bool helpAndVersion = true); + + /** + * Deletes any resources allocated by a CmdLine object. + */ + virtual ~CmdLine(); + + /** + * Adds an argument to the list of arguments to be parsed. + * \param a - Argument to be added. + */ + void add( Arg& a ); + + /** + * An alternative add. Functionally identical. + * \param a - Argument to be added. + */ + void add( Arg* a ); + + /** + * Add two Args that will be xor'd. If this method is used, add does + * not need to be called. + * \param a - Argument to be added and xor'd. + * \param b - Argument to be added and xor'd. + */ + void xorAdd( Arg& a, Arg& b ); + + /** + * Add a list of Args that will be xor'd. If this method is used, + * add does not need to be called. + * \param xors - List of Args to be added and xor'd. + */ + void xorAdd( std::vector& xors ); + + /** + * Parses the command line. + * \param argc - Number of arguments. + * \param argv - Array of arguments. + */ + void parse(int argc, const char * const * argv); + + /** + * Parses the command line. + * \param args - A vector of strings representing the args. + * args[0] is still the program name. + */ + void parse(std::vector& args); + + /** + * + */ + CmdLineOutput* getOutput(); + + /** + * + */ + void setOutput(CmdLineOutput* co); + + /** + * + */ + std::string& getVersion(); + + /** + * + */ + std::string& getProgramName(); + + /** + * + */ + std::list& getArgList(); + + /** + * + */ + XorHandler& getXorHandler(); + + /** + * + */ + char getDelimiter(); + + /** + * + */ + std::string& getMessage(); + + /** + * + */ + bool hasHelpAndVersion(); + + /** + * Disables or enables CmdLine's internal parsing exception handling. + * + * @param state Should CmdLine handle parsing exceptions internally? + */ + void setExceptionHandling(const bool state); + + /** + * Returns the current state of the internal exception handling. + * + * @retval true Parsing exceptions are handled internally. + * @retval false Parsing exceptions are propagated to the caller. + */ + bool getExceptionHandling() const; + + /** + * Allows the CmdLine object to be reused. + */ + void reset(); + +}; + + +/////////////////////////////////////////////////////////////////////////////// +//Begin CmdLine.cpp +/////////////////////////////////////////////////////////////////////////////// + +inline CmdLine::CmdLine(const std::string& m, + char delim, + const std::string& v, + bool help ) + : + _argList(std::list()), + _progName("not_set_yet"), + _message(m), + _version(v), + _numRequired(0), + _delimiter(delim), + _xorHandler(XorHandler()), + _argDeleteOnExitList(std::list()), + _visitorDeleteOnExitList(std::list()), + _output(0), + _handleExceptions(true), + _userSetOutput(false), + _helpAndVersion(help) +{ + _constructor(); +} + +inline CmdLine::~CmdLine() +{ + ClearContainer(_argDeleteOnExitList); + ClearContainer(_visitorDeleteOnExitList); + + if ( !_userSetOutput ) { + delete _output; + _output = 0; + } +} + +inline void CmdLine::_constructor() +{ + _output = new StdOutput; + + Arg::setDelimiter( _delimiter ); + + Visitor* v; + + if ( _helpAndVersion ) + { + v = new HelpVisitor( this, &_output ); + SwitchArg* help = new SwitchArg("h","help", + "Displays usage information and exits.", + false, v); + add( help ); + deleteOnExit(help); + deleteOnExit(v); + + v = new VersionVisitor( this, &_output ); + SwitchArg* vers = new SwitchArg("","version", + "Displays version information and exits.", + false, v); + add( vers ); + deleteOnExit(vers); + deleteOnExit(v); + } + + v = new IgnoreRestVisitor(); + SwitchArg* ignore = new SwitchArg(Arg::flagStartString(), + Arg::ignoreNameString(), + "Ignores the rest of the labeled arguments following this flag.", + false, v); + add( ignore ); + deleteOnExit(ignore); + deleteOnExit(v); +} + +inline void CmdLine::xorAdd( std::vector& ors ) +{ + _xorHandler.add( ors ); + + for (ArgVectorIterator it = ors.begin(); it != ors.end(); it++) + { + (*it)->forceRequired(); + (*it)->setRequireLabel( "OR required" ); + add( *it ); + } +} + +inline void CmdLine::xorAdd( Arg& a, Arg& b ) +{ + std::vector ors; + ors.push_back( &a ); + ors.push_back( &b ); + xorAdd( ors ); +} + +inline void CmdLine::add( Arg& a ) +{ + add( &a ); +} + +inline void CmdLine::add( Arg* a ) +{ + for( ArgListIterator it = _argList.begin(); it != _argList.end(); it++ ) + if ( *a == *(*it) ) + throw( SpecificationException( + "Argument with same flag/name already exists!", + a->longID() ) ); + + a->addToList( _argList ); + + if ( a->isRequired() ) + _numRequired++; +} + + +inline void CmdLine::parse(int argc, const char * const * argv) +{ + // this step is necessary so that we have easy access to + // mutable strings. + std::vector args; + for (int i = 0; i < argc; i++) + args.push_back(argv[i]); + + parse(args); +} + +inline void CmdLine::parse(std::vector& args) +{ + bool shouldExit = false; + int estat = 0; + + try { + _progName = args.front(); + args.erase(args.begin()); + + int requiredCount = 0; + + for (int i = 0; static_cast(i) < args.size(); i++) + { + bool matched = false; + for (ArgListIterator it = _argList.begin(); + it != _argList.end(); it++) { + if ( (*it)->processArg( &i, args ) ) + { + requiredCount += _xorHandler.check( *it ); + matched = true; + break; + } + } + + // checks to see if the argument is an empty combined + // switch and if so, then we've actually matched it + if ( !matched && _emptyCombined( args[i] ) ) + matched = true; + + if ( !matched && !Arg::ignoreRest() && !Arg::ignoreMismatched() ) + throw(CmdLineParseException("Couldn't find match " + "for argument", + args[i])); + } + + if ( requiredCount < _numRequired ) + missingArgsException(); + + if ( requiredCount > _numRequired ) + throw(CmdLineParseException("Too many arguments!")); + + } catch ( ArgException& e ) { + // If we're not handling the exceptions, rethrow. + if ( !_handleExceptions) { + throw; + } + + try { + _output->failure(*this,e); + } catch ( ExitException &ee ) { + estat = ee.getExitStatus(); + shouldExit = true; + } + } catch (ExitException &ee) { + // If we're not handling the exceptions, rethrow. + if ( !_handleExceptions) { + throw; + } + + estat = ee.getExitStatus(); + shouldExit = true; + } + + if (shouldExit) + exit(estat); +} + +inline bool CmdLine::_emptyCombined(const std::string& s) +{ + if ( s.length() > 0 && s[0] != Arg::flagStartChar() ) + return false; + + for ( int i = 1; static_cast(i) < s.length(); i++ ) + if ( s[i] != Arg::blankChar() ) + return false; + + return true; +} + +inline void CmdLine::missingArgsException() +{ + int count = 0; + + std::string missingArgList; + for (ArgListIterator it = _argList.begin(); it != _argList.end(); it++) + { + if ( (*it)->isRequired() && !(*it)->isSet() ) + { + missingArgList += (*it)->getName(); + missingArgList += ", "; + count++; + } + } + missingArgList = missingArgList.substr(0,missingArgList.length()-2); + + std::string msg; + if ( count > 1 ) + msg = "Required arguments missing: "; + else + msg = "Required argument missing: "; + + msg += missingArgList; + + throw(CmdLineParseException(msg)); +} + +inline void CmdLine::deleteOnExit(Arg* ptr) +{ + _argDeleteOnExitList.push_back(ptr); +} + +inline void CmdLine::deleteOnExit(Visitor* ptr) +{ + _visitorDeleteOnExitList.push_back(ptr); +} + +inline CmdLineOutput* CmdLine::getOutput() +{ + return _output; +} + +inline void CmdLine::setOutput(CmdLineOutput* co) +{ + if ( !_userSetOutput ) + delete _output; + _userSetOutput = true; + _output = co; +} + +inline std::string& CmdLine::getVersion() +{ + return _version; +} + +inline std::string& CmdLine::getProgramName() +{ + return _progName; +} + +inline std::list& CmdLine::getArgList() +{ + return _argList; +} + +inline XorHandler& CmdLine::getXorHandler() +{ + return _xorHandler; +} + +inline char CmdLine::getDelimiter() +{ + return _delimiter; +} + +inline std::string& CmdLine::getMessage() +{ + return _message; +} + +inline bool CmdLine::hasHelpAndVersion() +{ + return _helpAndVersion; +} + +inline void CmdLine::setExceptionHandling(const bool state) +{ + _handleExceptions = state; +} + +inline bool CmdLine::getExceptionHandling() const +{ + return _handleExceptions; +} + +inline void CmdLine::reset() +{ + for( ArgListIterator it = _argList.begin(); it != _argList.end(); it++ ) + (*it)->reset(); + + _progName.clear(); +} + +/////////////////////////////////////////////////////////////////////////////// +//End CmdLine.cpp +/////////////////////////////////////////////////////////////////////////////// + + + +} //namespace TCLAP +#endif diff --git a/include/tclap/CmdLineInterface.h b/include/tclap/CmdLineInterface.h new file mode 100644 index 0000000..1b25e9b --- /dev/null +++ b/include/tclap/CmdLineInterface.h @@ -0,0 +1,150 @@ + +/****************************************************************************** + * + * file: CmdLineInterface.h + * + * Copyright (c) 2003, Michael E. Smoot . + * Copyright (c) 2004, Michael E. Smoot, Daniel Aarno. + * All rights reverved. + * + * See the file COPYING in the top directory of this distribution for + * more information. + * + * THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + *****************************************************************************/ + +#ifndef TCLAP_COMMANDLINE_INTERFACE_H +#define TCLAP_COMMANDLINE_INTERFACE_H + +#include +#include +#include +#include +#include + + +namespace TCLAP { + +class Arg; +class CmdLineOutput; +class XorHandler; + +/** + * The base class that manages the command line definition and passes + * along the parsing to the appropriate Arg classes. + */ +class CmdLineInterface +{ + public: + + /** + * Destructor + */ + virtual ~CmdLineInterface() {} + + /** + * Adds an argument to the list of arguments to be parsed. + * \param a - Argument to be added. + */ + virtual void add( Arg& a )=0; + + /** + * An alternative add. Functionally identical. + * \param a - Argument to be added. + */ + virtual void add( Arg* a )=0; + + /** + * Add two Args that will be xor'd. + * If this method is used, add does + * not need to be called. + * \param a - Argument to be added and xor'd. + * \param b - Argument to be added and xor'd. + */ + virtual void xorAdd( Arg& a, Arg& b )=0; + + /** + * Add a list of Args that will be xor'd. If this method is used, + * add does not need to be called. + * \param xors - List of Args to be added and xor'd. + */ + virtual void xorAdd( std::vector& xors )=0; + + /** + * Parses the command line. + * \param argc - Number of arguments. + * \param argv - Array of arguments. + */ + virtual void parse(int argc, const char * const * argv)=0; + + /** + * Parses the command line. + * \param args - A vector of strings representing the args. + * args[0] is still the program name. + */ + void parse(std::vector& args); + + /** + * Returns the CmdLineOutput object. + */ + virtual CmdLineOutput* getOutput()=0; + + /** + * \param co - CmdLineOutput object that we want to use instead. + */ + virtual void setOutput(CmdLineOutput* co)=0; + + /** + * Returns the version string. + */ + virtual std::string& getVersion()=0; + + /** + * Returns the program name string. + */ + virtual std::string& getProgramName()=0; + + /** + * Returns the argList. + */ + virtual std::list& getArgList()=0; + + /** + * Returns the XorHandler. + */ + virtual XorHandler& getXorHandler()=0; + + /** + * Returns the delimiter string. + */ + virtual char getDelimiter()=0; + + /** + * Returns the message string. + */ + virtual std::string& getMessage()=0; + + /** + * Indicates whether or not the help and version switches were created + * automatically. + */ + virtual bool hasHelpAndVersion()=0; + + /** + * Resets the instance as if it had just been constructed so that the + * instance can be reused. + */ + virtual void reset()=0; +}; + +} //namespace + + +#endif diff --git a/include/tclap/CmdLineOutput.h b/include/tclap/CmdLineOutput.h new file mode 100644 index 0000000..71ee5a3 --- /dev/null +++ b/include/tclap/CmdLineOutput.h @@ -0,0 +1,74 @@ + + +/****************************************************************************** + * + * file: CmdLineOutput.h + * + * Copyright (c) 2004, Michael E. Smoot + * All rights reverved. + * + * See the file COPYING in the top directory of this distribution for + * more information. + * + * THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + *****************************************************************************/ + +#ifndef TCLAP_CMDLINEOUTPUT_H +#define TCLAP_CMDLINEOUTPUT_H + +#include +#include +#include +#include +#include +#include + +namespace TCLAP { + +class CmdLineInterface; +class ArgException; + +/** + * The interface that any output object must implement. + */ +class CmdLineOutput +{ + + public: + + /** + * Virtual destructor. + */ + virtual ~CmdLineOutput() {} + + /** + * Generates some sort of output for the USAGE. + * \param c - The CmdLine object the output is generated for. + */ + virtual void usage(CmdLineInterface& c)=0; + + /** + * Generates some sort of output for the version. + * \param c - The CmdLine object the output is generated for. + */ + virtual void version(CmdLineInterface& c)=0; + + /** + * Generates some sort of output for a failure. + * \param c - The CmdLine object the output is generated for. + * \param e - The ArgException that caused the failure. + */ + virtual void failure( CmdLineInterface& c, + ArgException& e )=0; + +}; + +} //namespace TCLAP +#endif diff --git a/include/tclap/Constraint.h b/include/tclap/Constraint.h new file mode 100644 index 0000000..a92acf9 --- /dev/null +++ b/include/tclap/Constraint.h @@ -0,0 +1,68 @@ + +/****************************************************************************** + * + * file: Constraint.h + * + * Copyright (c) 2005, Michael E. Smoot + * All rights reverved. + * + * See the file COPYING in the top directory of this distribution for + * more information. + * + * THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + *****************************************************************************/ + +#ifndef TCLAP_CONSTRAINT_H +#define TCLAP_CONSTRAINT_H + +#include +#include +#include +#include +#include +#include + +namespace TCLAP { + +/** + * The interface that defines the interaction between the Arg and Constraint. + */ +template +class Constraint +{ + + public: + /** + * Returns a description of the Constraint. + */ + virtual std::string description() const =0; + + /** + * Returns the short ID for the Constraint. + */ + virtual std::string shortID() const =0; + + /** + * The method used to verify that the value parsed from the command + * line meets the constraint. + * \param value - The value that will be checked. + */ + virtual bool check(const T& value) const =0; + + /** + * Destructor. + * Silences warnings about Constraint being a base class with virtual + * functions but without a virtual destructor. + */ + virtual ~Constraint() { ; } +}; + +} //namespace TCLAP +#endif diff --git a/include/tclap/DocBookOutput.h b/include/tclap/DocBookOutput.h new file mode 100644 index 0000000..a42ca27 --- /dev/null +++ b/include/tclap/DocBookOutput.h @@ -0,0 +1,299 @@ +// -*- Mode: c++; c-basic-offset: 4; tab-width: 4; -*- + +/****************************************************************************** + * + * file: DocBookOutput.h + * + * Copyright (c) 2004, Michael E. Smoot + * All rights reverved. + * + * See the file COPYING in the top directory of this distribution for + * more information. + * + * THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + *****************************************************************************/ + +#ifndef TCLAP_DOCBOOKOUTPUT_H +#define TCLAP_DOCBOOKOUTPUT_H + +#include +#include +#include +#include +#include + +#include +#include +#include +#include + +namespace TCLAP { + +/** + * A class that generates DocBook output for usage() method for the + * given CmdLine and its Args. + */ +class DocBookOutput : public CmdLineOutput +{ + + public: + + /** + * Prints the usage to stdout. Can be overridden to + * produce alternative behavior. + * \param c - The CmdLine object the output is generated for. + */ + virtual void usage(CmdLineInterface& c); + + /** + * Prints the version to stdout. Can be overridden + * to produce alternative behavior. + * \param c - The CmdLine object the output is generated for. + */ + virtual void version(CmdLineInterface& c); + + /** + * Prints (to stderr) an error message, short usage + * Can be overridden to produce alternative behavior. + * \param c - The CmdLine object the output is generated for. + * \param e - The ArgException that caused the failure. + */ + virtual void failure(CmdLineInterface& c, + ArgException& e ); + + protected: + + /** + * Substitutes the char r for string x in string s. + * \param s - The string to operate on. + * \param r - The char to replace. + * \param x - What to replace r with. + */ + void substituteSpecialChars( std::string& s, char r, std::string& x ); + void removeChar( std::string& s, char r); + void basename( std::string& s ); + + void printShortArg(Arg* it); + void printLongArg(Arg* it); + + char theDelimiter; +}; + + +inline void DocBookOutput::version(CmdLineInterface& _cmd) +{ + std::cout << _cmd.getVersion() << std::endl; +} + +inline void DocBookOutput::usage(CmdLineInterface& _cmd ) +{ + std::list argList = _cmd.getArgList(); + std::string progName = _cmd.getProgramName(); + std::string xversion = _cmd.getVersion(); + theDelimiter = _cmd.getDelimiter(); + XorHandler xorHandler = _cmd.getXorHandler(); + std::vector< std::vector > xorList = xorHandler.getXorList(); + basename(progName); + + std::cout << "" << std::endl; + std::cout << "" << std::endl << std::endl; + + std::cout << "" << std::endl; + + std::cout << "" << std::endl; + std::cout << "" << progName << "" << std::endl; + std::cout << "1" << std::endl; + std::cout << "" << std::endl; + + std::cout << "" << std::endl; + std::cout << "" << progName << "" << std::endl; + std::cout << "" << _cmd.getMessage() << "" << std::endl; + std::cout << "" << std::endl; + + std::cout << "" << std::endl; + std::cout << "" << std::endl; + + std::cout << "" << progName << "" << std::endl; + + // xor + for ( int i = 0; (unsigned int)i < xorList.size(); i++ ) + { + std::cout << "" << std::endl; + for ( ArgVectorIterator it = xorList[i].begin(); + it != xorList[i].end(); it++ ) + printShortArg((*it)); + + std::cout << "" << std::endl; + } + + // rest of args + for (ArgListIterator it = argList.begin(); it != argList.end(); it++) + if ( !xorHandler.contains( (*it) ) ) + printShortArg((*it)); + + std::cout << "" << std::endl; + std::cout << "" << std::endl; + + std::cout << "" << std::endl; + std::cout << "Description" << std::endl; + std::cout << "" << std::endl; + std::cout << _cmd.getMessage() << std::endl; + std::cout << "" << std::endl; + std::cout << "" << std::endl; + + std::cout << "" << std::endl; + std::cout << "Options" << std::endl; + + std::cout << "" << std::endl; + + for (ArgListIterator it = argList.begin(); it != argList.end(); it++) + printLongArg((*it)); + + std::cout << "" << std::endl; + std::cout << "" << std::endl; + + std::cout << "" << std::endl; + std::cout << "Version" << std::endl; + std::cout << "" << std::endl; + std::cout << xversion << std::endl; + std::cout << "" << std::endl; + std::cout << "" << std::endl; + + std::cout << "" << std::endl; + +} + +inline void DocBookOutput::failure( CmdLineInterface& _cmd, + ArgException& e ) +{ + static_cast(_cmd); // unused + std::cout << e.what() << std::endl; + throw ExitException(1); +} + +inline void DocBookOutput::substituteSpecialChars( std::string& s, + char r, + std::string& x ) +{ + size_t p; + while ( (p = s.find_first_of(r)) != std::string::npos ) + { + s.erase(p,1); + s.insert(p,x); + } +} + +inline void DocBookOutput::removeChar( std::string& s, char r) +{ + size_t p; + while ( (p = s.find_first_of(r)) != std::string::npos ) + { + s.erase(p,1); + } +} + +inline void DocBookOutput::basename( std::string& s ) +{ + size_t p = s.find_last_of('/'); + if ( p != std::string::npos ) + { + s.erase(0, p + 1); + } +} + +inline void DocBookOutput::printShortArg(Arg* a) +{ + std::string lt = "<"; + std::string gt = ">"; + + std::string id = a->shortID(); + substituteSpecialChars(id,'<',lt); + substituteSpecialChars(id,'>',gt); + removeChar(id,'['); + removeChar(id,']'); + + std::string choice = "opt"; + if ( a->isRequired() ) + choice = "plain"; + + std::cout << "acceptsMultipleValues() ) + std::cout << " rep='repeat'"; + + + std::cout << '>'; + if ( !a->getFlag().empty() ) + std::cout << a->flagStartChar() << a->getFlag(); + else + std::cout << a->nameStartString() << a->getName(); + if ( a->isValueRequired() ) + { + std::string arg = a->shortID(); + removeChar(arg,'['); + removeChar(arg,']'); + removeChar(arg,'<'); + removeChar(arg,'>'); + arg.erase(0, arg.find_last_of(theDelimiter) + 1); + std::cout << theDelimiter; + std::cout << "" << arg << ""; + } + std::cout << "" << std::endl; + +} + +inline void DocBookOutput::printLongArg(Arg* a) +{ + std::string lt = "<"; + std::string gt = ">"; + + std::string desc = a->getDescription(); + substituteSpecialChars(desc,'<',lt); + substituteSpecialChars(desc,'>',gt); + + std::cout << "" << std::endl; + + if ( !a->getFlag().empty() ) + { + std::cout << "" << std::endl; + std::cout << "" << std::endl; + std::cout << "" << std::endl; + } + + std::cout << "" << std::endl; + std::cout << "" << std::endl; + std::cout << "" << std::endl; + + std::cout << "" << std::endl; + std::cout << "" << std::endl; + std::cout << desc << std::endl; + std::cout << "" << std::endl; + std::cout << "" << std::endl; + + std::cout << "" << std::endl; +} + +} //namespace TCLAP +#endif diff --git a/include/tclap/HelpVisitor.h b/include/tclap/HelpVisitor.h new file mode 100644 index 0000000..cc3bd07 --- /dev/null +++ b/include/tclap/HelpVisitor.h @@ -0,0 +1,76 @@ + +/****************************************************************************** + * + * file: HelpVisitor.h + * + * Copyright (c) 2003, Michael E. Smoot . + * All rights reverved. + * + * See the file COPYING in the top directory of this distribution for + * more information. + * + * THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + *****************************************************************************/ + +#ifndef TCLAP_HELP_VISITOR_H +#define TCLAP_HELP_VISITOR_H + +#include +#include +#include + +namespace TCLAP { + +/** + * A Visitor object that calls the usage method of the given CmdLineOutput + * object for the specified CmdLine object. + */ +class HelpVisitor: public Visitor +{ + private: + /** + * Prevent accidental copying. + */ + HelpVisitor(const HelpVisitor& rhs); + HelpVisitor& operator=(const HelpVisitor& rhs); + + protected: + + /** + * The CmdLine the output will be generated for. + */ + CmdLineInterface* _cmd; + + /** + * The output object. + */ + CmdLineOutput** _out; + + public: + + /** + * Constructor. + * \param cmd - The CmdLine the output will be generated for. + * \param out - The type of output. + */ + HelpVisitor(CmdLineInterface* cmd, CmdLineOutput** out) + : Visitor(), _cmd( cmd ), _out( out ) { } + + /** + * Calls the usage method of the CmdLineOutput for the + * specified CmdLine. + */ + void visit() { (*_out)->usage(*_cmd); throw ExitException(0); } + +}; + +} + +#endif diff --git a/include/tclap/IgnoreRestVisitor.h b/include/tclap/IgnoreRestVisitor.h new file mode 100644 index 0000000..e328649 --- /dev/null +++ b/include/tclap/IgnoreRestVisitor.h @@ -0,0 +1,52 @@ + +/****************************************************************************** + * + * file: IgnoreRestVisitor.h + * + * Copyright (c) 2003, Michael E. Smoot . + * All rights reverved. + * + * See the file COPYING in the top directory of this distribution for + * more information. + * + * THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + *****************************************************************************/ + + +#ifndef TCLAP_IGNORE_REST_VISITOR_H +#define TCLAP_IGNORE_REST_VISITOR_H + +#include +#include + +namespace TCLAP { + +/** + * A Vistor that tells the CmdLine to begin ignoring arguments after + * this one is parsed. + */ +class IgnoreRestVisitor: public Visitor +{ + public: + + /** + * Constructor. + */ + IgnoreRestVisitor() : Visitor() {} + + /** + * Sets Arg::_ignoreRest. + */ + void visit() { Arg::beginIgnoring(); } +}; + +} + +#endif diff --git a/include/tclap/Makefile.am b/include/tclap/Makefile.am new file mode 100644 index 0000000..0e247bf --- /dev/null +++ b/include/tclap/Makefile.am @@ -0,0 +1,28 @@ + +libtclapincludedir = $(includedir)/tclap + +libtclapinclude_HEADERS = \ + CmdLineInterface.h \ + ArgException.h \ + CmdLine.h \ + XorHandler.h \ + MultiArg.h \ + UnlabeledMultiArg.h \ + ValueArg.h \ + UnlabeledValueArg.h \ + Visitor.h Arg.h \ + HelpVisitor.h \ + SwitchArg.h \ + MultiSwitchArg.h \ + VersionVisitor.h \ + IgnoreRestVisitor.h \ + CmdLineOutput.h \ + StdOutput.h \ + DocBookOutput.h \ + ZshCompletionOutput.h \ + OptionalUnlabeledTracker.h \ + Constraint.h \ + ValuesConstraint.h \ + ArgTraits.h \ + StandardTraits.h + diff --git a/include/tclap/Makefile.in b/include/tclap/Makefile.in new file mode 100644 index 0000000..65ef251 --- /dev/null +++ b/include/tclap/Makefile.in @@ -0,0 +1,403 @@ +# Makefile.in generated by automake 1.10 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = include/tclap +DIST_COMMON = $(libtclapinclude_HEADERS) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/config/ac_cxx_have_long_long.m4 \ + $(top_srcdir)/config/ac_cxx_have_sstream.m4 \ + $(top_srcdir)/config/ac_cxx_have_strstream.m4 \ + $(top_srcdir)/config/ac_cxx_namespaces.m4 \ + $(top_srcdir)/config/ac_cxx_warn_effective_cxx.m4 \ + $(top_srcdir)/config/bb_enable_doxygen.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(libtclapincludedir)" +libtclapincludeHEADERS_INSTALL = $(INSTALL_HEADER) +HEADERS = $(libtclapinclude_HEADERS) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOT = @DOT@ +DOXYGEN = @DOXYGEN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +WARN_EFFECTIVE_CXX = @WARN_EFFECTIVE_CXX@ +WARN_NO_EFFECTIVE_CXX = @WARN_NO_EFFECTIVE_CXX@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CXX = @ac_ct_CXX@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +libtclapincludedir = $(includedir)/tclap +libtclapinclude_HEADERS = \ + CmdLineInterface.h \ + ArgException.h \ + CmdLine.h \ + XorHandler.h \ + MultiArg.h \ + UnlabeledMultiArg.h \ + ValueArg.h \ + UnlabeledValueArg.h \ + Visitor.h Arg.h \ + HelpVisitor.h \ + SwitchArg.h \ + MultiSwitchArg.h \ + VersionVisitor.h \ + IgnoreRestVisitor.h \ + CmdLineOutput.h \ + StdOutput.h \ + DocBookOutput.h \ + ZshCompletionOutput.h \ + OptionalUnlabeledTracker.h \ + Constraint.h \ + ValuesConstraint.h \ + ArgTraits.h \ + StandardTraits.h + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu include/tclap/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu include/tclap/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-libtclapincludeHEADERS: $(libtclapinclude_HEADERS) + @$(NORMAL_INSTALL) + test -z "$(libtclapincludedir)" || $(MKDIR_P) "$(DESTDIR)$(libtclapincludedir)" + @list='$(libtclapinclude_HEADERS)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(libtclapincludeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(libtclapincludedir)/$$f'"; \ + $(libtclapincludeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(libtclapincludedir)/$$f"; \ + done + +uninstall-libtclapincludeHEADERS: + @$(NORMAL_UNINSTALL) + @list='$(libtclapinclude_HEADERS)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(libtclapincludedir)/$$f'"; \ + rm -f "$(DESTDIR)$(libtclapincludedir)/$$f"; \ + done + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + test -z "$(CTAGS_ARGS)$$tags$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$tags $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && cd $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) $$here + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(HEADERS) +installdirs: + for dir in "$(DESTDIR)$(libtclapincludedir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-libtclapincludeHEADERS + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-libtclapincludeHEADERS + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ + ctags distclean distclean-generic distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-libtclapincludeHEADERS \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags \ + uninstall uninstall-am uninstall-libtclapincludeHEADERS + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/include/tclap/MultiArg.h b/include/tclap/MultiArg.h new file mode 100644 index 0000000..34bb2d7 --- /dev/null +++ b/include/tclap/MultiArg.h @@ -0,0 +1,433 @@ +/****************************************************************************** + * + * file: MultiArg.h + * + * Copyright (c) 2003, Michael E. Smoot . + * Copyright (c) 2004, Michael E. Smoot, Daniel Aarno. + * All rights reverved. + * + * See the file COPYING in the top directory of this distribution for + * more information. + * + * THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + *****************************************************************************/ + + +#ifndef TCLAP_MULTIPLE_ARGUMENT_H +#define TCLAP_MULTIPLE_ARGUMENT_H + +#include +#include + +#include +#include + +namespace TCLAP { +/** + * An argument that allows multiple values of type T to be specified. Very + * similar to a ValueArg, except a vector of values will be returned + * instead of just one. + */ +template +class MultiArg : public Arg +{ +public: + typedef std::vector container_type; + typedef typename container_type::iterator iterator; + typedef typename container_type::const_iterator const_iterator; + +protected: + + /** + * The list of values parsed from the CmdLine. + */ + std::vector _values; + + /** + * The description of type T to be used in the usage. + */ + std::string _typeDesc; + + /** + * A list of constraint on this Arg. + */ + Constraint* _constraint; + + /** + * Extracts the value from the string. + * Attempts to parse string as type T, if this fails an exception + * is thrown. + * \param val - The string to be read. + */ + void _extractValue( const std::string& val ); + + /** + * Used by XorHandler to decide whether to keep parsing for this arg. + */ + bool _allowMore; + +public: + + /** + * Constructor. + * \param flag - The one character flag that identifies this + * argument on the command line. + * \param name - A one word name for the argument. Can be + * used as a long flag on the command line. + * \param desc - A description of what the argument is for or + * does. + * \param req - Whether the argument is required on the command + * line. + * \param typeDesc - A short, human readable description of the + * type that this object expects. This is used in the generation + * of the USAGE statement. The goal is to be helpful to the end user + * of the program. + * \param v - An optional visitor. You probably should not + * use this unless you have a very good reason. + */ + MultiArg( const std::string& flag, + const std::string& name, + const std::string& desc, + bool req, + const std::string& typeDesc, + Visitor* v = NULL); + + /** + * Constructor. + * \param flag - The one character flag that identifies this + * argument on the command line. + * \param name - A one word name for the argument. Can be + * used as a long flag on the command line. + * \param desc - A description of what the argument is for or + * does. + * \param req - Whether the argument is required on the command + * line. + * \param typeDesc - A short, human readable description of the + * type that this object expects. This is used in the generation + * of the USAGE statement. The goal is to be helpful to the end user + * of the program. + * \param parser - A CmdLine parser object to add this Arg to + * \param v - An optional visitor. You probably should not + * use this unless you have a very good reason. + */ + MultiArg( const std::string& flag, + const std::string& name, + const std::string& desc, + bool req, + const std::string& typeDesc, + CmdLineInterface& parser, + Visitor* v = NULL ); + + /** + * Constructor. + * \param flag - The one character flag that identifies this + * argument on the command line. + * \param name - A one word name for the argument. Can be + * used as a long flag on the command line. + * \param desc - A description of what the argument is for or + * does. + * \param req - Whether the argument is required on the command + * line. + * \param constraint - A pointer to a Constraint object used + * to constrain this Arg. + * \param v - An optional visitor. You probably should not + * use this unless you have a very good reason. + */ + MultiArg( const std::string& flag, + const std::string& name, + const std::string& desc, + bool req, + Constraint* constraint, + Visitor* v = NULL ); + + /** + * Constructor. + * \param flag - The one character flag that identifies this + * argument on the command line. + * \param name - A one word name for the argument. Can be + * used as a long flag on the command line. + * \param desc - A description of what the argument is for or + * does. + * \param req - Whether the argument is required on the command + * line. + * \param constraint - A pointer to a Constraint object used + * to constrain this Arg. + * \param parser - A CmdLine parser object to add this Arg to + * \param v - An optional visitor. You probably should not + * use this unless you have a very good reason. + */ + MultiArg( const std::string& flag, + const std::string& name, + const std::string& desc, + bool req, + Constraint* constraint, + CmdLineInterface& parser, + Visitor* v = NULL ); + + /** + * Handles the processing of the argument. + * This re-implements the Arg version of this method to set the + * _value of the argument appropriately. It knows the difference + * between labeled and unlabeled. + * \param i - Pointer the the current argument in the list. + * \param args - Mutable list of strings. Passed from main(). + */ + virtual bool processArg(int* i, std::vector& args); + + /** + * Returns a vector of type T containing the values parsed from + * the command line. + */ + const std::vector& getValue(); + + /** + * Returns an iterator over the values parsed from the command + * line. + */ + const_iterator begin() const { return _values.begin(); } + + /** + * Returns the end of the values parsed from the command + * line. + */ + const_iterator end() const { return _values.end(); } + + /** + * Returns the a short id string. Used in the usage. + * \param val - value to be used. + */ + virtual std::string shortID(const std::string& val="val") const; + + /** + * Returns the a long id string. Used in the usage. + * \param val - value to be used. + */ + virtual std::string longID(const std::string& val="val") const; + + /** + * Once we've matched the first value, then the arg is no longer + * required. + */ + virtual bool isRequired() const; + + virtual bool allowMore(); + + virtual void reset(); + +private: + /** + * Prevent accidental copying + */ + MultiArg(const MultiArg& rhs); + MultiArg& operator=(const MultiArg& rhs); + +}; + +template +MultiArg::MultiArg(const std::string& flag, + const std::string& name, + const std::string& desc, + bool req, + const std::string& typeDesc, + Visitor* v) : + Arg( flag, name, desc, req, true, v ), + _values(std::vector()), + _typeDesc( typeDesc ), + _constraint( NULL ), + _allowMore(false) +{ + _acceptsMultipleValues = true; +} + +template +MultiArg::MultiArg(const std::string& flag, + const std::string& name, + const std::string& desc, + bool req, + const std::string& typeDesc, + CmdLineInterface& parser, + Visitor* v) +: Arg( flag, name, desc, req, true, v ), + _values(std::vector()), + _typeDesc( typeDesc ), + _constraint( NULL ), + _allowMore(false) +{ + parser.add( this ); + _acceptsMultipleValues = true; +} + +/** + * + */ +template +MultiArg::MultiArg(const std::string& flag, + const std::string& name, + const std::string& desc, + bool req, + Constraint* constraint, + Visitor* v) +: Arg( flag, name, desc, req, true, v ), + _values(std::vector()), + _typeDesc( constraint->shortID() ), + _constraint( constraint ), + _allowMore(false) +{ + _acceptsMultipleValues = true; +} + +template +MultiArg::MultiArg(const std::string& flag, + const std::string& name, + const std::string& desc, + bool req, + Constraint* constraint, + CmdLineInterface& parser, + Visitor* v) +: Arg( flag, name, desc, req, true, v ), + _values(std::vector()), + _typeDesc( constraint->shortID() ), + _constraint( constraint ), + _allowMore(false) +{ + parser.add( this ); + _acceptsMultipleValues = true; +} + +template +const std::vector& MultiArg::getValue() { return _values; } + +template +bool MultiArg::processArg(int *i, std::vector& args) +{ + if ( _ignoreable && Arg::ignoreRest() ) + return false; + + if ( _hasBlanks( args[*i] ) ) + return false; + + std::string flag = args[*i]; + std::string value = ""; + + trimFlag( flag, value ); + + if ( argMatches( flag ) ) + { + if ( Arg::delimiter() != ' ' && value == "" ) + throw( ArgParseException( + "Couldn't find delimiter for this argument!", + toString() ) ); + + // always take the first one, regardless of start string + if ( value == "" ) + { + (*i)++; + if ( static_cast(*i) < args.size() ) + _extractValue( args[*i] ); + else + throw( ArgParseException("Missing a value for this argument!", + toString() ) ); + } + else + _extractValue( value ); + + /* + // continuing taking the args until we hit one with a start string + while ( (unsigned int)(*i)+1 < args.size() && + args[(*i)+1].find_first_of( Arg::flagStartString() ) != 0 && + args[(*i)+1].find_first_of( Arg::nameStartString() ) != 0 ) + _extractValue( args[++(*i)] ); + */ + + _alreadySet = true; + _checkWithVisitor(); + + return true; + } + else + return false; +} + +/** + * + */ +template +std::string MultiArg::shortID(const std::string& val) const +{ + static_cast(val); // Ignore input, don't warn + return Arg::shortID(_typeDesc) + " ... "; +} + +/** + * + */ +template +std::string MultiArg::longID(const std::string& val) const +{ + static_cast(val); // Ignore input, don't warn + return Arg::longID(_typeDesc) + " (accepted multiple times)"; +} + +/** + * Once we've matched the first value, then the arg is no longer + * required. + */ +template +bool MultiArg::isRequired() const +{ + if ( _required ) + { + if ( _values.size() > 1 ) + return false; + else + return true; + } + else + return false; + +} + +template +void MultiArg::_extractValue( const std::string& val ) +{ + try { + T tmp; + ExtractValue(tmp, val, typename ArgTraits::ValueCategory()); + _values.push_back(tmp); + } catch( ArgParseException &e) { + throw ArgParseException(e.error(), toString()); + } + + if ( _constraint != NULL ) + if ( ! _constraint->check( _values.back() ) ) + throw( CmdLineParseException( "Value '" + val + + "' does not meet constraint: " + + _constraint->description(), + toString() ) ); +} + +template +bool MultiArg::allowMore() +{ + bool am = _allowMore; + _allowMore = true; + return am; +} + +template +void MultiArg::reset() +{ + Arg::reset(); + _values.clear(); +} + +} // namespace TCLAP + +#endif diff --git a/include/tclap/MultiSwitchArg.h b/include/tclap/MultiSwitchArg.h new file mode 100644 index 0000000..8820b64 --- /dev/null +++ b/include/tclap/MultiSwitchArg.h @@ -0,0 +1,216 @@ + +/****************************************************************************** +* +* file: MultiSwitchArg.h +* +* Copyright (c) 2003, Michael E. Smoot . +* Copyright (c) 2004, Michael E. Smoot, Daniel Aarno. +* Copyright (c) 2005, Michael E. Smoot, Daniel Aarno, Erik Zeek. +* All rights reverved. +* +* See the file COPYING in the top directory of this distribution for +* more information. +* +* THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS +* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +* DEALINGS IN THE SOFTWARE. +* +*****************************************************************************/ + + +#ifndef TCLAP_MULTI_SWITCH_ARG_H +#define TCLAP_MULTI_SWITCH_ARG_H + +#include +#include + +#include + +namespace TCLAP { + +/** +* A multiple switch argument. If the switch is set on the command line, then +* the getValue method will return the number of times the switch appears. +*/ +class MultiSwitchArg : public SwitchArg +{ + protected: + + /** + * The value of the switch. + */ + int _value; + + /** + * Used to support the reset() method so that ValueArg can be + * reset to their constructed value. + */ + int _default; + + public: + + /** + * MultiSwitchArg constructor. + * \param flag - The one character flag that identifies this + * argument on the command line. + * \param name - A one word name for the argument. Can be + * used as a long flag on the command line. + * \param desc - A description of what the argument is for or + * does. + * \param init - Optional. The initial/default value of this Arg. + * Defaults to 0. + * \param v - An optional visitor. You probably should not + * use this unless you have a very good reason. + */ + MultiSwitchArg(const std::string& flag, + const std::string& name, + const std::string& desc, + int init = 0, + Visitor* v = NULL); + + + /** + * MultiSwitchArg constructor. + * \param flag - The one character flag that identifies this + * argument on the command line. + * \param name - A one word name for the argument. Can be + * used as a long flag on the command line. + * \param desc - A description of what the argument is for or + * does. + * \param parser - A CmdLine parser object to add this Arg to + * \param init - Optional. The initial/default value of this Arg. + * Defaults to 0. + * \param v - An optional visitor. You probably should not + * use this unless you have a very good reason. + */ + MultiSwitchArg(const std::string& flag, + const std::string& name, + const std::string& desc, + CmdLineInterface& parser, + int init = 0, + Visitor* v = NULL); + + + /** + * Handles the processing of the argument. + * This re-implements the SwitchArg version of this method to set the + * _value of the argument appropriately. + * \param i - Pointer the the current argument in the list. + * \param args - Mutable list of strings. Passed + * in from main(). + */ + virtual bool processArg(int* i, std::vector& args); + + /** + * Returns int, the number of times the switch has been set. + */ + int getValue(); + + /** + * Returns the shortID for this Arg. + */ + std::string shortID(const std::string& val) const; + + /** + * Returns the longID for this Arg. + */ + std::string longID(const std::string& val) const; + + void reset(); + +}; + +////////////////////////////////////////////////////////////////////// +//BEGIN MultiSwitchArg.cpp +////////////////////////////////////////////////////////////////////// +inline MultiSwitchArg::MultiSwitchArg(const std::string& flag, + const std::string& name, + const std::string& desc, + int init, + Visitor* v ) +: SwitchArg(flag, name, desc, false, v), +_value( init ), +_default( init ) +{ } + +inline MultiSwitchArg::MultiSwitchArg(const std::string& flag, + const std::string& name, + const std::string& desc, + CmdLineInterface& parser, + int init, + Visitor* v ) +: SwitchArg(flag, name, desc, false, v), +_value( init ), +_default( init ) +{ + parser.add( this ); +} + +inline int MultiSwitchArg::getValue() { return _value; } + +inline bool MultiSwitchArg::processArg(int *i, std::vector& args) +{ + if ( _ignoreable && Arg::ignoreRest() ) + return false; + + if ( argMatches( args[*i] )) + { + // so the isSet() method will work + _alreadySet = true; + + // Matched argument: increment value. + ++_value; + + _checkWithVisitor(); + + return true; + } + else if ( combinedSwitchesMatch( args[*i] ) ) + { + // so the isSet() method will work + _alreadySet = true; + + // Matched argument: increment value. + ++_value; + + // Check for more in argument and increment value. + while ( combinedSwitchesMatch( args[*i] ) ) + ++_value; + + _checkWithVisitor(); + + return false; + } + else + return false; +} + +inline std::string +MultiSwitchArg::shortID(const std::string& val) const +{ + return Arg::shortID(val) + " ... "; +} + +inline std::string +MultiSwitchArg::longID(const std::string& val) const +{ + return Arg::longID(val) + " (accepted multiple times)"; +} + +inline void +MultiSwitchArg::reset() +{ + MultiSwitchArg::_value = MultiSwitchArg::_default; +} + +////////////////////////////////////////////////////////////////////// +//END MultiSwitchArg.cpp +////////////////////////////////////////////////////////////////////// + +} //namespace TCLAP + +#endif diff --git a/include/tclap/OptionalUnlabeledTracker.h b/include/tclap/OptionalUnlabeledTracker.h new file mode 100644 index 0000000..8174c5f --- /dev/null +++ b/include/tclap/OptionalUnlabeledTracker.h @@ -0,0 +1,62 @@ + + +/****************************************************************************** + * + * file: OptionalUnlabeledTracker.h + * + * Copyright (c) 2005, Michael E. Smoot . + * All rights reverved. + * + * See the file COPYING in the top directory of this distribution for + * more information. + * + * THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + *****************************************************************************/ + + +#ifndef TCLAP_OPTIONAL_UNLABELED_TRACKER_H +#define TCLAP_OPTIONAL_UNLABELED_TRACKER_H + +#include + +namespace TCLAP { + +class OptionalUnlabeledTracker +{ + + public: + + static void check( bool req, const std::string& argName ); + + static void gotOptional() { alreadyOptionalRef() = true; } + + static bool& alreadyOptional() { return alreadyOptionalRef(); } + + private: + + static bool& alreadyOptionalRef() { static bool ct = false; return ct; } +}; + + +inline void OptionalUnlabeledTracker::check( bool req, const std::string& argName ) +{ + if ( OptionalUnlabeledTracker::alreadyOptional() ) + throw( SpecificationException( + "You can't specify ANY Unlabeled Arg following an optional Unlabeled Arg", + argName ) ); + + if ( !req ) + OptionalUnlabeledTracker::gotOptional(); +} + + +} // namespace TCLAP + +#endif diff --git a/include/tclap/StandardTraits.h b/include/tclap/StandardTraits.h new file mode 100644 index 0000000..46d7f6f --- /dev/null +++ b/include/tclap/StandardTraits.h @@ -0,0 +1,208 @@ +// -*- Mode: c++; c-basic-offset: 4; tab-width: 4; -*- + +/****************************************************************************** + * + * file: StandardTraits.h + * + * Copyright (c) 2007, Daniel Aarno, Michael E. Smoot . + * All rights reverved. + * + * See the file COPYING in the top directory of this distribution for + * more information. + * + * THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + *****************************************************************************/ + +// This is an internal tclap file, you should probably not have to +// include this directly + +#ifndef TCLAP_STANDARD_TRAITS_H +#define TCLAP_STANDARD_TRAITS_H + +#ifdef HAVE_CONFIG_H +#include // To check for long long +#endif + +// If Microsoft has already typedef'd wchar_t as an unsigned +// short, then compiles will break because it's as if we're +// creating ArgTraits twice for unsigned short. Thus... +#ifdef _MSC_VER +#ifndef _NATIVE_WCHAR_T_DEFINED +#define TCLAP_DONT_DECLARE_WCHAR_T_ARGTRAITS +#endif +#endif + +namespace TCLAP { + +// ====================================================================== +// Integer types +// ====================================================================== + +/** + * longs have value-like semantics. + */ +template<> +struct ArgTraits { + typedef ValueLike ValueCategory; +}; + +/** + * ints have value-like semantics. + */ +template<> +struct ArgTraits { + typedef ValueLike ValueCategory; +}; + +/** + * shorts have value-like semantics. + */ +template<> +struct ArgTraits { + typedef ValueLike ValueCategory; +}; + +/** + * chars have value-like semantics. + */ +template<> +struct ArgTraits { + typedef ValueLike ValueCategory; +}; + +#ifdef HAVE_LONG_LONG +/** + * long longs have value-like semantics. + */ +template<> +struct ArgTraits { + typedef ValueLike ValueCategory; +}; +#endif + +// ====================================================================== +// Unsigned integer types +// ====================================================================== + +/** + * unsigned longs have value-like semantics. + */ +template<> +struct ArgTraits { + typedef ValueLike ValueCategory; +}; + +/** + * unsigned ints have value-like semantics. + */ +template<> +struct ArgTraits { + typedef ValueLike ValueCategory; +}; + +/** + * unsigned shorts have value-like semantics. + */ +template<> +struct ArgTraits { + typedef ValueLike ValueCategory; +}; + +/** + * unsigned chars have value-like semantics. + */ +template<> +struct ArgTraits { + typedef ValueLike ValueCategory; +}; + +// Microsoft implements size_t awkwardly. +#if defined(_MSC_VER) && defined(_M_X64) +/** + * size_ts have value-like semantics. + */ +template<> +struct ArgTraits { + typedef ValueLike ValueCategory; +}; +#endif + + +#ifdef HAVE_LONG_LONG +/** + * unsigned long longs have value-like semantics. + */ +template<> +struct ArgTraits { + typedef ValueLike ValueCategory; +}; +#endif + +// ====================================================================== +// Float types +// ====================================================================== + +/** + * floats have value-like semantics. + */ +template<> +struct ArgTraits { + typedef ValueLike ValueCategory; +}; + +/** + * doubles have value-like semantics. + */ +template<> +struct ArgTraits { + typedef ValueLike ValueCategory; +}; + +// ====================================================================== +// Other types +// ====================================================================== + +/** + * bools have value-like semantics. + */ +template<> +struct ArgTraits { + typedef ValueLike ValueCategory; +}; + + +/** + * wchar_ts have value-like semantics. + */ +#ifndef TCLAP_DONT_DECLARE_WCHAR_T_ARGTRAITS +template<> +struct ArgTraits { + typedef ValueLike ValueCategory; +}; +#endif + +/** + * Strings have string like argument traits. + */ +template<> +struct ArgTraits { + typedef StringLike ValueCategory; +}; + +template +void SetString(T &dst, const std::string &src) +{ + dst = src; +} + +} // namespace + +#endif + diff --git a/include/tclap/StdOutput.h b/include/tclap/StdOutput.h new file mode 100644 index 0000000..35f7b99 --- /dev/null +++ b/include/tclap/StdOutput.h @@ -0,0 +1,298 @@ +// -*- Mode: c++; c-basic-offset: 4; tab-width: 4; -*- + +/****************************************************************************** + * + * file: StdOutput.h + * + * Copyright (c) 2004, Michael E. Smoot + * All rights reverved. + * + * See the file COPYING in the top directory of this distribution for + * more information. + * + * THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + *****************************************************************************/ + +#ifndef TCLAP_STDCMDLINEOUTPUT_H +#define TCLAP_STDCMDLINEOUTPUT_H + +#include +#include +#include +#include +#include + +#include +#include +#include +#include + +namespace TCLAP { + +/** + * A class that isolates any output from the CmdLine object so that it + * may be easily modified. + */ +class StdOutput : public CmdLineOutput +{ + + public: + + /** + * Prints the usage to stdout. Can be overridden to + * produce alternative behavior. + * \param c - The CmdLine object the output is generated for. + */ + virtual void usage(CmdLineInterface& c); + + /** + * Prints the version to stdout. Can be overridden + * to produce alternative behavior. + * \param c - The CmdLine object the output is generated for. + */ + virtual void version(CmdLineInterface& c); + + /** + * Prints (to stderr) an error message, short usage + * Can be overridden to produce alternative behavior. + * \param c - The CmdLine object the output is generated for. + * \param e - The ArgException that caused the failure. + */ + virtual void failure(CmdLineInterface& c, + ArgException& e ); + + protected: + + /** + * Writes a brief usage message with short args. + * \param c - The CmdLine object the output is generated for. + * \param os - The stream to write the message to. + */ + void _shortUsage( CmdLineInterface& c, std::ostream& os ) const; + + /** + * Writes a longer usage message with long and short args, + * provides descriptions and prints message. + * \param c - The CmdLine object the output is generated for. + * \param os - The stream to write the message to. + */ + void _longUsage( CmdLineInterface& c, std::ostream& os ) const; + + /** + * This function inserts line breaks and indents long strings + * according the params input. It will only break lines at spaces, + * commas and pipes. + * \param os - The stream to be printed to. + * \param s - The string to be printed. + * \param maxWidth - The maxWidth allowed for the output line. + * \param indentSpaces - The number of spaces to indent the first line. + * \param secondLineOffset - The number of spaces to indent the second + * and all subsequent lines in addition to indentSpaces. + */ + void spacePrint( std::ostream& os, + const std::string& s, + int maxWidth, + int indentSpaces, + int secondLineOffset ) const; + +}; + + +inline void StdOutput::version(CmdLineInterface& _cmd) +{ + std::string progName = _cmd.getProgramName(); + std::string xversion = _cmd.getVersion(); + + std::cout << std::endl << progName << " version: " + << xversion << std::endl << std::endl; +} + +inline void StdOutput::usage(CmdLineInterface& _cmd ) +{ + std::cout << std::endl << "USAGE: " << std::endl << std::endl; + + _shortUsage( _cmd, std::cout ); + + std::cout << std::endl << std::endl << "Where: " << std::endl << std::endl; + + _longUsage( _cmd, std::cout ); + + std::cout << std::endl; + +} + +inline void StdOutput::failure( CmdLineInterface& _cmd, + ArgException& e ) +{ + std::string progName = _cmd.getProgramName(); + + std::cerr << "PARSE ERROR: " << e.argId() << std::endl + << " " << e.error() << std::endl << std::endl; + + if ( _cmd.hasHelpAndVersion() ) + { + std::cerr << "Brief USAGE: " << std::endl; + + _shortUsage( _cmd, std::cerr ); + + std::cerr << std::endl << "For complete USAGE and HELP type: " + << std::endl << " " << progName << " --help" + << std::endl << std::endl; + } + else + usage(_cmd); + + throw ExitException(1); +} + +inline void +StdOutput::_shortUsage( CmdLineInterface& _cmd, + std::ostream& os ) const +{ + std::list argList = _cmd.getArgList(); + std::string progName = _cmd.getProgramName(); + XorHandler xorHandler = _cmd.getXorHandler(); + std::vector< std::vector > xorList = xorHandler.getXorList(); + + std::string s = progName + " "; + + // first the xor + for ( int i = 0; static_cast(i) < xorList.size(); i++ ) + { + s += " {"; + for ( ArgVectorIterator it = xorList[i].begin(); + it != xorList[i].end(); it++ ) + s += (*it)->shortID() + "|"; + + s[s.length()-1] = '}'; + } + + // then the rest + for (ArgListIterator it = argList.begin(); it != argList.end(); it++) + if ( !xorHandler.contains( (*it) ) ) + s += " " + (*it)->shortID(); + + // if the program name is too long, then adjust the second line offset + int secondLineOffset = static_cast(progName.length()) + 2; + if ( secondLineOffset > 75/2 ) + secondLineOffset = static_cast(75/2); + + spacePrint( os, s, 75, 3, secondLineOffset ); +} + +inline void +StdOutput::_longUsage( CmdLineInterface& _cmd, + std::ostream& os ) const +{ + std::list argList = _cmd.getArgList(); + std::string message = _cmd.getMessage(); + XorHandler xorHandler = _cmd.getXorHandler(); + std::vector< std::vector > xorList = xorHandler.getXorList(); + + // first the xor + for ( int i = 0; static_cast(i) < xorList.size(); i++ ) + { + for ( ArgVectorIterator it = xorList[i].begin(); + it != xorList[i].end(); + it++ ) + { + spacePrint( os, (*it)->longID(), 75, 3, 3 ); + spacePrint( os, (*it)->getDescription(), 75, 5, 0 ); + + if ( it+1 != xorList[i].end() ) + spacePrint(os, "-- OR --", 75, 9, 0); + } + os << std::endl << std::endl; + } + + // then the rest + for (ArgListIterator it = argList.begin(); it != argList.end(); it++) + if ( !xorHandler.contains( (*it) ) ) + { + spacePrint( os, (*it)->longID(), 75, 3, 3 ); + spacePrint( os, (*it)->getDescription(), 75, 5, 0 ); + os << std::endl; + } + + os << std::endl; + + spacePrint( os, message, 75, 3, 0 ); +} + +inline void StdOutput::spacePrint( std::ostream& os, + const std::string& s, + int maxWidth, + int indentSpaces, + int secondLineOffset ) const +{ + int len = static_cast(s.length()); + + if ( (len + indentSpaces > maxWidth) && maxWidth > 0 ) + { + int allowedLen = maxWidth - indentSpaces; + int start = 0; + while ( start < len ) + { + // find the substring length + // int stringLen = std::min( len - start, allowedLen ); + // doing it this way to support a VisualC++ 2005 bug + using namespace std; + int stringLen = min( len - start, allowedLen ); + + // trim the length so it doesn't end in middle of a word + if ( stringLen == allowedLen ) + while ( stringLen >= 0 && + s[stringLen+start] != ' ' && + s[stringLen+start] != ',' && + s[stringLen+start] != '|' ) + stringLen--; + + // ok, the word is longer than the line, so just split + // wherever the line ends + if ( stringLen <= 0 ) + stringLen = allowedLen; + + // check for newlines + for ( int i = 0; i < stringLen; i++ ) + if ( s[start+i] == '\n' ) + stringLen = i+1; + + // print the indent + for ( int i = 0; i < indentSpaces; i++ ) + os << " "; + + if ( start == 0 ) + { + // handle second line offsets + indentSpaces += secondLineOffset; + + // adjust allowed len + allowedLen -= secondLineOffset; + } + + os << s.substr(start,stringLen) << std::endl; + + // so we don't start a line with a space + while ( s[stringLen+start] == ' ' && start < len ) + start++; + + start += stringLen; + } + } + else + { + for ( int i = 0; i < indentSpaces; i++ ) + os << " "; + os << s << std::endl; + } +} + +} //namespace TCLAP +#endif diff --git a/include/tclap/SwitchArg.h b/include/tclap/SwitchArg.h new file mode 100644 index 0000000..3916109 --- /dev/null +++ b/include/tclap/SwitchArg.h @@ -0,0 +1,266 @@ + +/****************************************************************************** + * + * file: SwitchArg.h + * + * Copyright (c) 2003, Michael E. Smoot . + * Copyright (c) 2004, Michael E. Smoot, Daniel Aarno. + * All rights reverved. + * + * See the file COPYING in the top directory of this distribution for + * more information. + * + * THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + *****************************************************************************/ + + +#ifndef TCLAP_SWITCH_ARG_H +#define TCLAP_SWITCH_ARG_H + +#include +#include + +#include + +namespace TCLAP { + +/** + * A simple switch argument. If the switch is set on the command line, then + * the getValue method will return the opposite of the default value for the + * switch. + */ +class SwitchArg : public Arg +{ + protected: + + /** + * The value of the switch. + */ + bool _value; + + /** + * Used to support the reset() method so that ValueArg can be + * reset to their constructed value. + */ + bool _default; + + public: + + /** + * SwitchArg constructor. + * \param flag - The one character flag that identifies this + * argument on the command line. + * \param name - A one word name for the argument. Can be + * used as a long flag on the command line. + * \param desc - A description of what the argument is for or + * does. + * \param def - The default value for this Switch. + * \param v - An optional visitor. You probably should not + * use this unless you have a very good reason. + */ + SwitchArg(const std::string& flag, + const std::string& name, + const std::string& desc, + bool def = false, + Visitor* v = NULL); + + + /** + * SwitchArg constructor. + * \param flag - The one character flag that identifies this + * argument on the command line. + * \param name - A one word name for the argument. Can be + * used as a long flag on the command line. + * \param desc - A description of what the argument is for or + * does. + * \param parser - A CmdLine parser object to add this Arg to + * \param def - The default value for this Switch. + * \param v - An optional visitor. You probably should not + * use this unless you have a very good reason. + */ + SwitchArg(const std::string& flag, + const std::string& name, + const std::string& desc, + CmdLineInterface& parser, + bool def = false, + Visitor* v = NULL); + + + /** + * Handles the processing of the argument. + * This re-implements the Arg version of this method to set the + * _value of the argument appropriately. + * \param i - Pointer the the current argument in the list. + * \param args - Mutable list of strings. Passed + * in from main(). + */ + virtual bool processArg(int* i, std::vector& args); + + /** + * Checks a string to see if any of the chars in the string + * match the flag for this Switch. + */ + bool combinedSwitchesMatch(std::string& combined); + + /** + * Returns bool, whether or not the switch has been set. + */ + bool getValue(); + + virtual void reset(); + + private: + /** + * Checks to see if we've found the last match in + * a combined string. + */ + bool lastCombined(std::string& combined); + + /** + * Does the common processing of processArg. + */ + void commonProcessing(); +}; + +////////////////////////////////////////////////////////////////////// +//BEGIN SwitchArg.cpp +////////////////////////////////////////////////////////////////////// +inline SwitchArg::SwitchArg(const std::string& flag, + const std::string& name, + const std::string& desc, + bool default_val, + Visitor* v ) +: Arg(flag, name, desc, false, false, v), + _value( default_val ), + _default( default_val ) +{ } + +inline SwitchArg::SwitchArg(const std::string& flag, + const std::string& name, + const std::string& desc, + CmdLineInterface& parser, + bool default_val, + Visitor* v ) +: Arg(flag, name, desc, false, false, v), + _value( default_val ), + _default(default_val) +{ + parser.add( this ); +} + +inline bool SwitchArg::getValue() { return _value; } + +inline bool SwitchArg::lastCombined(std::string& combinedSwitches ) +{ + for ( unsigned int i = 1; i < combinedSwitches.length(); i++ ) + if ( combinedSwitches[i] != Arg::blankChar() ) + return false; + + return true; +} + +inline bool SwitchArg::combinedSwitchesMatch(std::string& combinedSwitches ) +{ + // make sure this is actually a combined switch + if ( combinedSwitches.length() > 0 && + combinedSwitches[0] != Arg::flagStartString()[0] ) + return false; + + // make sure it isn't a long name + if ( combinedSwitches.substr( 0, Arg::nameStartString().length() ) == + Arg::nameStartString() ) + return false; + + // make sure the delimiter isn't in the string + if ( combinedSwitches.find_first_of( Arg::delimiter() ) != std::string::npos ) + return false; + + // ok, we're not specifying a ValueArg, so we know that we have + // a combined switch list. + for ( unsigned int i = 1; i < combinedSwitches.length(); i++ ) + if ( _flag.length() > 0 && + combinedSwitches[i] == _flag[0] && + _flag[0] != Arg::flagStartString()[0] ) + { + // update the combined switches so this one is no longer present + // this is necessary so that no unlabeled args are matched + // later in the processing. + //combinedSwitches.erase(i,1); + combinedSwitches[i] = Arg::blankChar(); + return true; + } + + // none of the switches passed in the list match. + return false; +} + +inline void SwitchArg::commonProcessing() +{ + if ( _xorSet ) + throw(CmdLineParseException( + "Mutually exclusive argument already set!", toString())); + + if ( _alreadySet ) + throw(CmdLineParseException("Argument already set!", toString())); + + _alreadySet = true; + + if ( _value == true ) + _value = false; + else + _value = true; + + _checkWithVisitor(); +} + +inline bool SwitchArg::processArg(int *i, std::vector& args) +{ + if ( _ignoreable && Arg::ignoreRest() ) + return false; + + // if the whole string matches the flag or name string + if ( argMatches( args[*i] ) ) + { + commonProcessing(); + + return true; + } + // if a substring matches the flag as part of a combination + else if ( combinedSwitchesMatch( args[*i] ) ) + { + // check again to ensure we don't misinterpret + // this as a MultiSwitchArg + if ( combinedSwitchesMatch( args[*i] ) ) + throw(CmdLineParseException("Argument already set!", + toString())); + + commonProcessing(); + + // We only want to return true if we've found the last combined + // match in the string, otherwise we return true so that other + // switches in the combination will have a chance to match. + return lastCombined( args[*i] ); + } + else + return false; +} + +inline void SwitchArg::reset() +{ + Arg::reset(); + _value = _default; +} +////////////////////////////////////////////////////////////////////// +//End SwitchArg.cpp +////////////////////////////////////////////////////////////////////// + +} //namespace TCLAP + +#endif diff --git a/include/tclap/UnlabeledMultiArg.h b/include/tclap/UnlabeledMultiArg.h new file mode 100644 index 0000000..d5e1781 --- /dev/null +++ b/include/tclap/UnlabeledMultiArg.h @@ -0,0 +1,301 @@ + +/****************************************************************************** + * + * file: UnlabeledMultiArg.h + * + * Copyright (c) 2003, Michael E. Smoot. + * All rights reverved. + * + * See the file COPYING in the top directory of this distribution for + * more information. + * + * THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + *****************************************************************************/ + + +#ifndef TCLAP_MULTIPLE_UNLABELED_ARGUMENT_H +#define TCLAP_MULTIPLE_UNLABELED_ARGUMENT_H + +#include +#include + +#include +#include + +namespace TCLAP { + +/** + * Just like a MultiArg, except that the arguments are unlabeled. Basically, + * this Arg will slurp up everything that hasn't been matched to another + * Arg. + */ +template +class UnlabeledMultiArg : public MultiArg +{ + + // If compiler has two stage name lookup (as gcc >= 3.4 does) + // this is requried to prevent undef. symbols + using MultiArg::_ignoreable; + using MultiArg::_hasBlanks; + using MultiArg::_extractValue; + using MultiArg::_typeDesc; + using MultiArg::_name; + using MultiArg::_description; + using MultiArg::_alreadySet; + using MultiArg::toString; + + public: + + /** + * Constructor. + * \param name - The name of the Arg. Note that this is used for + * identification, not as a long flag. + * \param desc - A description of what the argument is for or + * does. + * \param req - Whether the argument is required on the command + * line. + * \param typeDesc - A short, human readable description of the + * type that this object expects. This is used in the generation + * of the USAGE statement. The goal is to be helpful to the end user + * of the program. + * \param ignoreable - Whether or not this argument can be ignored + * using the "--" flag. + * \param v - An optional visitor. You probably should not + * use this unless you have a very good reason. + */ + UnlabeledMultiArg( const std::string& name, + const std::string& desc, + bool req, + const std::string& typeDesc, + bool ignoreable = false, + Visitor* v = NULL ); + /** + * Constructor. + * \param name - The name of the Arg. Note that this is used for + * identification, not as a long flag. + * \param desc - A description of what the argument is for or + * does. + * \param req - Whether the argument is required on the command + * line. + * \param typeDesc - A short, human readable description of the + * type that this object expects. This is used in the generation + * of the USAGE statement. The goal is to be helpful to the end user + * of the program. + * \param parser - A CmdLine parser object to add this Arg to + * \param ignoreable - Whether or not this argument can be ignored + * using the "--" flag. + * \param v - An optional visitor. You probably should not + * use this unless you have a very good reason. + */ + UnlabeledMultiArg( const std::string& name, + const std::string& desc, + bool req, + const std::string& typeDesc, + CmdLineInterface& parser, + bool ignoreable = false, + Visitor* v = NULL ); + + /** + * Constructor. + * \param name - The name of the Arg. Note that this is used for + * identification, not as a long flag. + * \param desc - A description of what the argument is for or + * does. + * \param req - Whether the argument is required on the command + * line. + * \param constraint - A pointer to a Constraint object used + * to constrain this Arg. + * \param ignoreable - Whether or not this argument can be ignored + * using the "--" flag. + * \param v - An optional visitor. You probably should not + * use this unless you have a very good reason. + */ + UnlabeledMultiArg( const std::string& name, + const std::string& desc, + bool req, + Constraint* constraint, + bool ignoreable = false, + Visitor* v = NULL ); + + /** + * Constructor. + * \param name - The name of the Arg. Note that this is used for + * identification, not as a long flag. + * \param desc - A description of what the argument is for or + * does. + * \param req - Whether the argument is required on the command + * line. + * \param constraint - A pointer to a Constraint object used + * to constrain this Arg. + * \param parser - A CmdLine parser object to add this Arg to + * \param ignoreable - Whether or not this argument can be ignored + * using the "--" flag. + * \param v - An optional visitor. You probably should not + * use this unless you have a very good reason. + */ + UnlabeledMultiArg( const std::string& name, + const std::string& desc, + bool req, + Constraint* constraint, + CmdLineInterface& parser, + bool ignoreable = false, + Visitor* v = NULL ); + + /** + * Handles the processing of the argument. + * This re-implements the Arg version of this method to set the + * _value of the argument appropriately. It knows the difference + * between labeled and unlabeled. + * \param i - Pointer the the current argument in the list. + * \param args - Mutable list of strings. Passed from main(). + */ + virtual bool processArg(int* i, std::vector& args); + + /** + * Returns the a short id string. Used in the usage. + * \param val - value to be used. + */ + virtual std::string shortID(const std::string& val="val") const; + + /** + * Returns the a long id string. Used in the usage. + * \param val - value to be used. + */ + virtual std::string longID(const std::string& val="val") const; + + /** + * Opertor ==. + * \param a - The Arg to be compared to this. + */ + virtual bool operator==(const Arg& a) const; + + /** + * Pushes this to back of list rather than front. + * \param argList - The list this should be added to. + */ + virtual void addToList( std::list& argList ) const; +}; + +template +UnlabeledMultiArg::UnlabeledMultiArg(const std::string& name, + const std::string& desc, + bool req, + const std::string& typeDesc, + bool ignoreable, + Visitor* v) +: MultiArg("", name, desc, req, typeDesc, v) +{ + _ignoreable = ignoreable; + OptionalUnlabeledTracker::check(true, toString()); +} + +template +UnlabeledMultiArg::UnlabeledMultiArg(const std::string& name, + const std::string& desc, + bool req, + const std::string& typeDesc, + CmdLineInterface& parser, + bool ignoreable, + Visitor* v) +: MultiArg("", name, desc, req, typeDesc, v) +{ + _ignoreable = ignoreable; + OptionalUnlabeledTracker::check(true, toString()); + parser.add( this ); +} + + +template +UnlabeledMultiArg::UnlabeledMultiArg(const std::string& name, + const std::string& desc, + bool req, + Constraint* constraint, + bool ignoreable, + Visitor* v) +: MultiArg("", name, desc, req, constraint, v) +{ + _ignoreable = ignoreable; + OptionalUnlabeledTracker::check(true, toString()); +} + +template +UnlabeledMultiArg::UnlabeledMultiArg(const std::string& name, + const std::string& desc, + bool req, + Constraint* constraint, + CmdLineInterface& parser, + bool ignoreable, + Visitor* v) +: MultiArg("", name, desc, req, constraint, v) +{ + _ignoreable = ignoreable; + OptionalUnlabeledTracker::check(true, toString()); + parser.add( this ); +} + + +template +bool UnlabeledMultiArg::processArg(int *i, std::vector& args) +{ + + if ( _hasBlanks( args[*i] ) ) + return false; + + // never ignore an unlabeled multi arg + + + // always take the first value, regardless of the start string + _extractValue( args[(*i)] ); + + /* + // continue taking args until we hit the end or a start string + while ( (unsigned int)(*i)+1 < args.size() && + args[(*i)+1].find_first_of( Arg::flagStartString() ) != 0 && + args[(*i)+1].find_first_of( Arg::nameStartString() ) != 0 ) + _extractValue( args[++(*i)] ); + */ + + _alreadySet = true; + + return true; +} + +template +std::string UnlabeledMultiArg::shortID(const std::string& val) const +{ + static_cast(val); // Ignore input, don't warn + return std::string("<") + _typeDesc + "> ..."; +} + +template +std::string UnlabeledMultiArg::longID(const std::string& val) const +{ + static_cast(val); // Ignore input, don't warn + return std::string("<") + _typeDesc + "> (accepted multiple times)"; +} + +template +bool UnlabeledMultiArg::operator==(const Arg& a) const +{ + if ( _name == a.getName() || _description == a.getDescription() ) + return true; + else + return false; +} + +template +void UnlabeledMultiArg::addToList( std::list& argList ) const +{ + argList.push_back( const_cast(static_cast(this)) ); +} + +} + +#endif diff --git a/include/tclap/UnlabeledValueArg.h b/include/tclap/UnlabeledValueArg.h new file mode 100644 index 0000000..5721d61 --- /dev/null +++ b/include/tclap/UnlabeledValueArg.h @@ -0,0 +1,340 @@ + +/****************************************************************************** + * + * file: UnlabeledValueArg.h + * + * Copyright (c) 2003, Michael E. Smoot . + * Copyright (c) 2004, Michael E. Smoot, Daniel Aarno. + * All rights reverved. + * + * See the file COPYING in the top directory of this distribution for + * more information. + * + * THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + *****************************************************************************/ + + +#ifndef TCLAP_UNLABELED_VALUE_ARGUMENT_H +#define TCLAP_UNLABELED_VALUE_ARGUMENT_H + +#include +#include + +#include +#include + + +namespace TCLAP { + +/** + * The basic unlabeled argument that parses a value. + * This is a template class, which means the type T defines the type + * that a given object will attempt to parse when an UnlabeledValueArg + * is reached in the list of args that the CmdLine iterates over. + */ +template +class UnlabeledValueArg : public ValueArg +{ + + // If compiler has two stage name lookup (as gcc >= 3.4 does) + // this is requried to prevent undef. symbols + using ValueArg::_ignoreable; + using ValueArg::_hasBlanks; + using ValueArg::_extractValue; + using ValueArg::_typeDesc; + using ValueArg::_name; + using ValueArg::_description; + using ValueArg::_alreadySet; + using ValueArg::toString; + + public: + + /** + * UnlabeledValueArg constructor. + * \param name - A one word name for the argument. Note that this is used for + * identification, not as a long flag. + * \param desc - A description of what the argument is for or + * does. + * \param req - Whether the argument is required on the command + * line. + * \param value - The default value assigned to this argument if it + * is not present on the command line. + * \param typeDesc - A short, human readable description of the + * type that this object expects. This is used in the generation + * of the USAGE statement. The goal is to be helpful to the end user + * of the program. + * \param ignoreable - Allows you to specify that this argument can be + * ignored if the '--' flag is set. This defaults to false (cannot + * be ignored) and should generally stay that way unless you have + * some special need for certain arguments to be ignored. + * \param v - Optional Vistor. You should leave this blank unless + * you have a very good reason. + */ + UnlabeledValueArg( const std::string& name, + const std::string& desc, + bool req, + T value, + const std::string& typeDesc, + bool ignoreable = false, + Visitor* v = NULL); + + /** + * UnlabeledValueArg constructor. + * \param name - A one word name for the argument. Note that this is used for + * identification, not as a long flag. + * \param desc - A description of what the argument is for or + * does. + * \param req - Whether the argument is required on the command + * line. + * \param value - The default value assigned to this argument if it + * is not present on the command line. + * \param typeDesc - A short, human readable description of the + * type that this object expects. This is used in the generation + * of the USAGE statement. The goal is to be helpful to the end user + * of the program. + * \param parser - A CmdLine parser object to add this Arg to + * \param ignoreable - Allows you to specify that this argument can be + * ignored if the '--' flag is set. This defaults to false (cannot + * be ignored) and should generally stay that way unless you have + * some special need for certain arguments to be ignored. + * \param v - Optional Vistor. You should leave this blank unless + * you have a very good reason. + */ + UnlabeledValueArg( const std::string& name, + const std::string& desc, + bool req, + T value, + const std::string& typeDesc, + CmdLineInterface& parser, + bool ignoreable = false, + Visitor* v = NULL ); + + /** + * UnlabeledValueArg constructor. + * \param name - A one word name for the argument. Note that this is used for + * identification, not as a long flag. + * \param desc - A description of what the argument is for or + * does. + * \param req - Whether the argument is required on the command + * line. + * \param value - The default value assigned to this argument if it + * is not present on the command line. + * \param constraint - A pointer to a Constraint object used + * to constrain this Arg. + * \param ignoreable - Allows you to specify that this argument can be + * ignored if the '--' flag is set. This defaults to false (cannot + * be ignored) and should generally stay that way unless you have + * some special need for certain arguments to be ignored. + * \param v - Optional Vistor. You should leave this blank unless + * you have a very good reason. + */ + UnlabeledValueArg( const std::string& name, + const std::string& desc, + bool req, + T value, + Constraint* constraint, + bool ignoreable = false, + Visitor* v = NULL ); + + + /** + * UnlabeledValueArg constructor. + * \param name - A one word name for the argument. Note that this is used for + * identification, not as a long flag. + * \param desc - A description of what the argument is for or + * does. + * \param req - Whether the argument is required on the command + * line. + * \param value - The default value assigned to this argument if it + * is not present on the command line. + * \param constraint - A pointer to a Constraint object used + * to constrain this Arg. + * \param parser - A CmdLine parser object to add this Arg to + * \param ignoreable - Allows you to specify that this argument can be + * ignored if the '--' flag is set. This defaults to false (cannot + * be ignored) and should generally stay that way unless you have + * some special need for certain arguments to be ignored. + * \param v - Optional Vistor. You should leave this blank unless + * you have a very good reason. + */ + UnlabeledValueArg( const std::string& name, + const std::string& desc, + bool req, + T value, + Constraint* constraint, + CmdLineInterface& parser, + bool ignoreable = false, + Visitor* v = NULL); + + /** + * Handles the processing of the argument. + * This re-implements the Arg version of this method to set the + * _value of the argument appropriately. Handling specific to + * unlabled arguments. + * \param i - Pointer the the current argument in the list. + * \param args - Mutable list of strings. + */ + virtual bool processArg(int* i, std::vector& args); + + /** + * Overrides shortID for specific behavior. + */ + virtual std::string shortID(const std::string& val="val") const; + + /** + * Overrides longID for specific behavior. + */ + virtual std::string longID(const std::string& val="val") const; + + /** + * Overrides operator== for specific behavior. + */ + virtual bool operator==(const Arg& a ) const; + + /** + * Instead of pushing to the front of list, push to the back. + * \param argList - The list to add this to. + */ + virtual void addToList( std::list& argList ) const; + +}; + +/** + * Constructor implemenation. + */ +template +UnlabeledValueArg::UnlabeledValueArg(const std::string& name, + const std::string& desc, + bool req, + T val, + const std::string& typeDesc, + bool ignoreable, + Visitor* v) +: ValueArg("", name, desc, req, val, typeDesc, v) +{ + _ignoreable = ignoreable; + + OptionalUnlabeledTracker::check(req, toString()); + +} + +template +UnlabeledValueArg::UnlabeledValueArg(const std::string& name, + const std::string& desc, + bool req, + T val, + const std::string& typeDesc, + CmdLineInterface& parser, + bool ignoreable, + Visitor* v) +: ValueArg("", name, desc, req, val, typeDesc, v) +{ + _ignoreable = ignoreable; + OptionalUnlabeledTracker::check(req, toString()); + parser.add( this ); +} + +/** + * Constructor implemenation. + */ +template +UnlabeledValueArg::UnlabeledValueArg(const std::string& name, + const std::string& desc, + bool req, + T val, + Constraint* constraint, + bool ignoreable, + Visitor* v) +: ValueArg("", name, desc, req, val, constraint, v) +{ + _ignoreable = ignoreable; + OptionalUnlabeledTracker::check(req, toString()); +} + +template +UnlabeledValueArg::UnlabeledValueArg(const std::string& name, + const std::string& desc, + bool req, + T val, + Constraint* constraint, + CmdLineInterface& parser, + bool ignoreable, + Visitor* v) +: ValueArg("", name, desc, req, val, constraint, v) +{ + _ignoreable = ignoreable; + OptionalUnlabeledTracker::check(req, toString()); + parser.add( this ); +} + +/** + * Implementation of processArg(). + */ +template +bool UnlabeledValueArg::processArg(int *i, std::vector& args) +{ + + if ( _alreadySet ) + return false; + + if ( _hasBlanks( args[*i] ) ) + return false; + + // never ignore an unlabeled arg + + _extractValue( args[*i] ); + _alreadySet = true; + return true; +} + +/** + * Overriding shortID for specific output. + */ +template +std::string UnlabeledValueArg::shortID(const std::string& val) const +{ + static_cast(val); // Ignore input, don't warn + return std::string("<") + _typeDesc + ">"; +} + +/** + * Overriding longID for specific output. + */ +template +std::string UnlabeledValueArg::longID(const std::string& val) const +{ + static_cast(val); // Ignore input, don't warn + + // Ideally we would like to be able to use RTTI to return the name + // of the type required for this argument. However, g++ at least, + // doesn't appear to return terribly useful "names" of the types. + return std::string("<") + _typeDesc + ">"; +} + +/** + * Overriding operator== for specific behavior. + */ +template +bool UnlabeledValueArg::operator==(const Arg& a ) const +{ + if ( _name == a.getName() || _description == a.getDescription() ) + return true; + else + return false; +} + +template +void UnlabeledValueArg::addToList( std::list& argList ) const +{ + argList.push_back( const_cast(static_cast(this)) ); +} + +} +#endif diff --git a/include/tclap/ValueArg.h b/include/tclap/ValueArg.h new file mode 100644 index 0000000..7ac2952 --- /dev/null +++ b/include/tclap/ValueArg.h @@ -0,0 +1,425 @@ +/****************************************************************************** + * + * file: ValueArg.h + * + * Copyright (c) 2003, Michael E. Smoot . + * Copyright (c) 2004, Michael E. Smoot, Daniel Aarno. + * All rights reverved. + * + * See the file COPYING in the top directory of this distribution for + * more information. + * + * THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + *****************************************************************************/ + + +#ifndef TCLAP_VALUE_ARGUMENT_H +#define TCLAP_VALUE_ARGUMENT_H + +#include +#include + +#include +#include + +namespace TCLAP { + +/** + * The basic labeled argument that parses a value. + * This is a template class, which means the type T defines the type + * that a given object will attempt to parse when the flag/name is matched + * on the command line. While there is nothing stopping you from creating + * an unflagged ValueArg, it is unwise and would cause significant problems. + * Instead use an UnlabeledValueArg. + */ +template +class ValueArg : public Arg +{ + protected: + + /** + * The value parsed from the command line. + * Can be of any type, as long as the >> operator for the type + * is defined. + */ + T _value; + + /** + * Used to support the reset() method so that ValueArg can be + * reset to their constructed value. + */ + T _default; + + /** + * A human readable description of the type to be parsed. + * This is a hack, plain and simple. Ideally we would use RTTI to + * return the name of type T, but until there is some sort of + * consistent support for human readable names, we are left to our + * own devices. + */ + std::string _typeDesc; + + /** + * A Constraint this Arg must conform to. + */ + Constraint* _constraint; + + /** + * Extracts the value from the string. + * Attempts to parse string as type T, if this fails an exception + * is thrown. + * \param val - value to be parsed. + */ + void _extractValue( const std::string& val ); + + public: + + /** + * Labeled ValueArg constructor. + * You could conceivably call this constructor with a blank flag, + * but that would make you a bad person. It would also cause + * an exception to be thrown. If you want an unlabeled argument, + * use the other constructor. + * \param flag - The one character flag that identifies this + * argument on the command line. + * \param name - A one word name for the argument. Can be + * used as a long flag on the command line. + * \param desc - A description of what the argument is for or + * does. + * \param req - Whether the argument is required on the command + * line. + * \param value - The default value assigned to this argument if it + * is not present on the command line. + * \param typeDesc - A short, human readable description of the + * type that this object expects. This is used in the generation + * of the USAGE statement. The goal is to be helpful to the end user + * of the program. + * \param v - An optional visitor. You probably should not + * use this unless you have a very good reason. + */ + ValueArg( const std::string& flag, + const std::string& name, + const std::string& desc, + bool req, + T value, + const std::string& typeDesc, + Visitor* v = NULL); + + + /** + * Labeled ValueArg constructor. + * You could conceivably call this constructor with a blank flag, + * but that would make you a bad person. It would also cause + * an exception to be thrown. If you want an unlabeled argument, + * use the other constructor. + * \param flag - The one character flag that identifies this + * argument on the command line. + * \param name - A one word name for the argument. Can be + * used as a long flag on the command line. + * \param desc - A description of what the argument is for or + * does. + * \param req - Whether the argument is required on the command + * line. + * \param value - The default value assigned to this argument if it + * is not present on the command line. + * \param typeDesc - A short, human readable description of the + * type that this object expects. This is used in the generation + * of the USAGE statement. The goal is to be helpful to the end user + * of the program. + * \param parser - A CmdLine parser object to add this Arg to + * \param v - An optional visitor. You probably should not + * use this unless you have a very good reason. + */ + ValueArg( const std::string& flag, + const std::string& name, + const std::string& desc, + bool req, + T value, + const std::string& typeDesc, + CmdLineInterface& parser, + Visitor* v = NULL ); + + /** + * Labeled ValueArg constructor. + * You could conceivably call this constructor with a blank flag, + * but that would make you a bad person. It would also cause + * an exception to be thrown. If you want an unlabeled argument, + * use the other constructor. + * \param flag - The one character flag that identifies this + * argument on the command line. + * \param name - A one word name for the argument. Can be + * used as a long flag on the command line. + * \param desc - A description of what the argument is for or + * does. + * \param req - Whether the argument is required on the command + * line. + * \param value - The default value assigned to this argument if it + * is not present on the command line. + * \param constraint - A pointer to a Constraint object used + * to constrain this Arg. + * \param parser - A CmdLine parser object to add this Arg to. + * \param v - An optional visitor. You probably should not + * use this unless you have a very good reason. + */ + ValueArg( const std::string& flag, + const std::string& name, + const std::string& desc, + bool req, + T value, + Constraint* constraint, + CmdLineInterface& parser, + Visitor* v = NULL ); + + /** + * Labeled ValueArg constructor. + * You could conceivably call this constructor with a blank flag, + * but that would make you a bad person. It would also cause + * an exception to be thrown. If you want an unlabeled argument, + * use the other constructor. + * \param flag - The one character flag that identifies this + * argument on the command line. + * \param name - A one word name for the argument. Can be + * used as a long flag on the command line. + * \param desc - A description of what the argument is for or + * does. + * \param req - Whether the argument is required on the command + * line. + * \param value - The default value assigned to this argument if it + * is not present on the command line. + * \param constraint - A pointer to a Constraint object used + * to constrain this Arg. + * \param v - An optional visitor. You probably should not + * use this unless you have a very good reason. + */ + ValueArg( const std::string& flag, + const std::string& name, + const std::string& desc, + bool req, + T value, + Constraint* constraint, + Visitor* v = NULL ); + + /** + * Handles the processing of the argument. + * This re-implements the Arg version of this method to set the + * _value of the argument appropriately. It knows the difference + * between labeled and unlabeled. + * \param i - Pointer the the current argument in the list. + * \param args - Mutable list of strings. Passed + * in from main(). + */ + virtual bool processArg(int* i, std::vector& args); + + /** + * Returns the value of the argument. + */ + T& getValue() ; + + /** + * Specialization of shortID. + * \param val - value to be used. + */ + virtual std::string shortID(const std::string& val = "val") const; + + /** + * Specialization of longID. + * \param val - value to be used. + */ + virtual std::string longID(const std::string& val = "val") const; + + virtual void reset() ; + +private: + /** + * Prevent accidental copying + */ + ValueArg(const ValueArg& rhs); + ValueArg& operator=(const ValueArg& rhs); +}; + + +/** + * Constructor implementation. + */ +template +ValueArg::ValueArg(const std::string& flag, + const std::string& name, + const std::string& desc, + bool req, + T val, + const std::string& typeDesc, + Visitor* v) +: Arg(flag, name, desc, req, true, v), + _value( val ), + _default( val ), + _typeDesc( typeDesc ), + _constraint( NULL ) +{ } + +template +ValueArg::ValueArg(const std::string& flag, + const std::string& name, + const std::string& desc, + bool req, + T val, + const std::string& typeDesc, + CmdLineInterface& parser, + Visitor* v) +: Arg(flag, name, desc, req, true, v), + _value( val ), + _default( val ), + _typeDesc( typeDesc ), + _constraint( NULL ) +{ + parser.add( this ); +} + +template +ValueArg::ValueArg(const std::string& flag, + const std::string& name, + const std::string& desc, + bool req, + T val, + Constraint* constraint, + Visitor* v) +: Arg(flag, name, desc, req, true, v), + _value( val ), + _default( val ), + _typeDesc( constraint->shortID() ), + _constraint( constraint ) +{ } + +template +ValueArg::ValueArg(const std::string& flag, + const std::string& name, + const std::string& desc, + bool req, + T val, + Constraint* constraint, + CmdLineInterface& parser, + Visitor* v) +: Arg(flag, name, desc, req, true, v), + _value( val ), + _default( val ), + _typeDesc( constraint->shortID() ), + _constraint( constraint ) +{ + parser.add( this ); +} + + +/** + * Implementation of getValue(). + */ +template +T& ValueArg::getValue() { return _value; } + +/** + * Implementation of processArg(). + */ +template +bool ValueArg::processArg(int *i, std::vector& args) +{ + if ( _ignoreable && Arg::ignoreRest() ) + return false; + + if ( _hasBlanks( args[*i] ) ) + return false; + + std::string flag = args[*i]; + + std::string value = ""; + trimFlag( flag, value ); + + if ( argMatches( flag ) ) + { + if ( _alreadySet ) + { + if ( _xorSet ) + throw( CmdLineParseException( + "Mutually exclusive argument already set!", + toString()) ); + else + throw( CmdLineParseException("Argument already set!", + toString()) ); + } + + if ( Arg::delimiter() != ' ' && value == "" ) + throw( ArgParseException( + "Couldn't find delimiter for this argument!", + toString() ) ); + + if ( value == "" ) + { + (*i)++; + if ( static_cast(*i) < args.size() ) + _extractValue( args[*i] ); + else + throw( ArgParseException("Missing a value for this argument!", + toString() ) ); + } + else + _extractValue( value ); + + _alreadySet = true; + _checkWithVisitor(); + return true; + } + else + return false; +} + +/** + * Implementation of shortID. + */ +template +std::string ValueArg::shortID(const std::string& val) const +{ + static_cast(val); // Ignore input, don't warn + return Arg::shortID( _typeDesc ); +} + +/** + * Implementation of longID. + */ +template +std::string ValueArg::longID(const std::string& val) const +{ + static_cast(val); // Ignore input, don't warn + return Arg::longID( _typeDesc ); +} + +template +void ValueArg::_extractValue( const std::string& val ) +{ + try { + ExtractValue(_value, val, typename ArgTraits::ValueCategory()); + } catch( ArgParseException &e) { + throw ArgParseException(e.error(), toString()); + } + + if ( _constraint != NULL ) + if ( ! _constraint->check( _value ) ) + throw( CmdLineParseException( "Value '" + val + + + "' does not meet constraint: " + + _constraint->description(), + toString() ) ); +} + +template +void ValueArg::reset() +{ + Arg::reset(); + _value = _default; +} + +} // namespace TCLAP + +#endif diff --git a/include/tclap/ValuesConstraint.h b/include/tclap/ValuesConstraint.h new file mode 100644 index 0000000..cb41f64 --- /dev/null +++ b/include/tclap/ValuesConstraint.h @@ -0,0 +1,148 @@ + + +/****************************************************************************** + * + * file: ValuesConstraint.h + * + * Copyright (c) 2005, Michael E. Smoot + * All rights reverved. + * + * See the file COPYING in the top directory of this distribution for + * more information. + * + * THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + *****************************************************************************/ + +#ifndef TCLAP_VALUESCONSTRAINT_H +#define TCLAP_VALUESCONSTRAINT_H + +#include +#include +#include + +#ifdef HAVE_CONFIG_H +#include +#else +#define HAVE_SSTREAM +#endif + +#if defined(HAVE_SSTREAM) +#include +#elif defined(HAVE_STRSTREAM) +#include +#else +#error "Need a stringstream (sstream or strstream) to compile!" +#endif + +namespace TCLAP { + +/** + * A Constraint that constrains the Arg to only those values specified + * in the constraint. + */ +template +class ValuesConstraint : public Constraint +{ + + public: + + /** + * Constructor. + * \param allowed - vector of allowed values. + */ + ValuesConstraint(std::vector& allowed); + + /** + * Virtual destructor. + */ + virtual ~ValuesConstraint() {} + + /** + * Returns a description of the Constraint. + */ + virtual std::string description() const; + + /** + * Returns the short ID for the Constraint. + */ + virtual std::string shortID() const; + + /** + * The method used to verify that the value parsed from the command + * line meets the constraint. + * \param value - The value that will be checked. + */ + virtual bool check(const T& value) const; + + protected: + + /** + * The list of valid values. + */ + std::vector _allowed; + + /** + * The string used to describe the allowed values of this constraint. + */ + std::string _typeDesc; + +}; + +template +ValuesConstraint::ValuesConstraint(std::vector& allowed) +: _allowed(allowed), + _typeDesc("") +{ + for ( unsigned int i = 0; i < _allowed.size(); i++ ) + { + +#if defined(HAVE_SSTREAM) + std::ostringstream os; +#elif defined(HAVE_STRSTREAM) + std::ostrstream os; +#else +#error "Need a stringstream (sstream or strstream) to compile!" +#endif + + os << _allowed[i]; + + std::string temp( os.str() ); + + if ( i > 0 ) + _typeDesc += "|"; + _typeDesc += temp; + } +} + +template +bool ValuesConstraint::check( const T& val ) const +{ + if ( std::find(_allowed.begin(),_allowed.end(),val) == _allowed.end() ) + return false; + else + return true; +} + +template +std::string ValuesConstraint::shortID() const +{ + return _typeDesc; +} + +template +std::string ValuesConstraint::description() const +{ + return _typeDesc; +} + + +} //namespace TCLAP +#endif + diff --git a/include/tclap/VersionVisitor.h b/include/tclap/VersionVisitor.h new file mode 100644 index 0000000..c110d4f --- /dev/null +++ b/include/tclap/VersionVisitor.h @@ -0,0 +1,81 @@ +// -*- Mode: c++; c-basic-offset: 4; tab-width: 4; -*- + +/****************************************************************************** + * + * file: VersionVisitor.h + * + * Copyright (c) 2003, Michael E. Smoot . + * All rights reverved. + * + * See the file COPYING in the top directory of this distribution for + * more information. + * + * THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + *****************************************************************************/ + + +#ifndef TCLAP_VERSION_VISITOR_H +#define TCLAP_VERSION_VISITOR_H + +#include +#include +#include + +namespace TCLAP { + +/** + * A Vistor that will call the version method of the given CmdLineOutput + * for the specified CmdLine object and then exit. + */ +class VersionVisitor: public Visitor +{ + private: + /** + * Prevent accidental copying + */ + VersionVisitor(const VersionVisitor& rhs); + VersionVisitor& operator=(const VersionVisitor& rhs); + + protected: + + /** + * The CmdLine of interest. + */ + CmdLineInterface* _cmd; + + /** + * The output object. + */ + CmdLineOutput** _out; + + public: + + /** + * Constructor. + * \param cmd - The CmdLine the output is generated for. + * \param out - The type of output. + */ + VersionVisitor( CmdLineInterface* cmd, CmdLineOutput** out ) + : Visitor(), _cmd( cmd ), _out( out ) { } + + /** + * Calls the version method of the output object using the + * specified CmdLine. + */ + void visit() { + (*_out)->version(*_cmd); + throw ExitException(0); + } + +}; + +} + +#endif diff --git a/include/tclap/Visitor.h b/include/tclap/Visitor.h new file mode 100644 index 0000000..38ddcbd --- /dev/null +++ b/include/tclap/Visitor.h @@ -0,0 +1,53 @@ + +/****************************************************************************** + * + * file: Visitor.h + * + * Copyright (c) 2003, Michael E. Smoot . + * All rights reverved. + * + * See the file COPYING in the top directory of this distribution for + * more information. + * + * THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + *****************************************************************************/ + + +#ifndef TCLAP_VISITOR_H +#define TCLAP_VISITOR_H + +namespace TCLAP { + +/** + * A base class that defines the interface for visitors. + */ +class Visitor +{ + public: + + /** + * Constructor. Does nothing. + */ + Visitor() { } + + /** + * Destructor. Does nothing. + */ + virtual ~Visitor() { } + + /** + * Does nothing. Should be overridden by child. + */ + virtual void visit() { } +}; + +} + +#endif diff --git a/include/tclap/XorHandler.h b/include/tclap/XorHandler.h new file mode 100644 index 0000000..d9dfad3 --- /dev/null +++ b/include/tclap/XorHandler.h @@ -0,0 +1,166 @@ + +/****************************************************************************** + * + * file: XorHandler.h + * + * Copyright (c) 2003, Michael E. Smoot . + * Copyright (c) 2004, Michael E. Smoot, Daniel Aarno. + * All rights reverved. + * + * See the file COPYING in the top directory of this distribution for + * more information. + * + * THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + *****************************************************************************/ + +#ifndef TCLAP_XORHANDLER_H +#define TCLAP_XORHANDLER_H + +#include +#include +#include +#include +#include + +namespace TCLAP { + +/** + * This class handles lists of Arg's that are to be XOR'd on the command + * line. This is used by CmdLine and you shouldn't ever use it. + */ +class XorHandler +{ + protected: + + /** + * The list of of lists of Arg's to be or'd together. + */ + std::vector< std::vector > _orList; + + public: + + /** + * Constructor. Does nothing. + */ + XorHandler( ) : _orList(std::vector< std::vector >()) {} + + /** + * Add a list of Arg*'s that will be orred together. + * \param ors - list of Arg* that will be xor'd. + */ + void add( std::vector& ors ); + + /** + * Checks whether the specified Arg is in one of the xor lists and + * if it does match one, returns the size of the xor list that the + * Arg matched. If the Arg matches, then it also sets the rest of + * the Arg's in the list. You shouldn't use this. + * \param a - The Arg to be checked. + */ + int check( const Arg* a ); + + /** + * Returns the XOR specific short usage. + */ + std::string shortUsage(); + + /** + * Prints the XOR specific long usage. + * \param os - Stream to print to. + */ + void printLongUsage(std::ostream& os); + + /** + * Simply checks whether the Arg is contained in one of the arg + * lists. + * \param a - The Arg to be checked. + */ + bool contains( const Arg* a ); + + std::vector< std::vector >& getXorList(); + +}; + + +////////////////////////////////////////////////////////////////////// +//BEGIN XOR.cpp +////////////////////////////////////////////////////////////////////// +inline void XorHandler::add( std::vector& ors ) +{ + _orList.push_back( ors ); +} + +inline int XorHandler::check( const Arg* a ) +{ + // iterate over each XOR list + for ( int i = 0; static_cast(i) < _orList.size(); i++ ) + { + // if the XOR list contains the arg.. + ArgVectorIterator ait = std::find( _orList[i].begin(), + _orList[i].end(), a ); + if ( ait != _orList[i].end() ) + { + // first check to see if a mutually exclusive switch + // has not already been set + for ( ArgVectorIterator it = _orList[i].begin(); + it != _orList[i].end(); + it++ ) + if ( a != (*it) && (*it)->isSet() ) + throw(CmdLineParseException( + "Mutually exclusive argument already set!", + (*it)->toString())); + + // go through and set each arg that is not a + for ( ArgVectorIterator it = _orList[i].begin(); + it != _orList[i].end(); + it++ ) + if ( a != (*it) ) + (*it)->xorSet(); + + // return the number of required args that have now been set + if ( (*ait)->allowMore() ) + return 0; + else + return static_cast(_orList[i].size()); + } + } + + if ( a->isRequired() ) + return 1; + else + return 0; +} + +inline bool XorHandler::contains( const Arg* a ) +{ + for ( int i = 0; static_cast(i) < _orList.size(); i++ ) + for ( ArgVectorIterator it = _orList[i].begin(); + it != _orList[i].end(); + it++ ) + if ( a == (*it) ) + return true; + + return false; +} + +inline std::vector< std::vector >& XorHandler::getXorList() +{ + return _orList; +} + + + +////////////////////////////////////////////////////////////////////// +//END XOR.cpp +////////////////////////////////////////////////////////////////////// + +} //namespace TCLAP + +#endif diff --git a/include/tclap/ZshCompletionOutput.h b/include/tclap/ZshCompletionOutput.h new file mode 100644 index 0000000..0b37fc7 --- /dev/null +++ b/include/tclap/ZshCompletionOutput.h @@ -0,0 +1,323 @@ +// -*- Mode: c++; c-basic-offset: 4; tab-width: 4; -*- + +/****************************************************************************** + * + * file: ZshCompletionOutput.h + * + * Copyright (c) 2006, Oliver Kiddle + * All rights reverved. + * + * See the file COPYING in the top directory of this distribution for + * more information. + * + * THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + *****************************************************************************/ + +#ifndef TCLAP_ZSHCOMPLETIONOUTPUT_H +#define TCLAP_ZSHCOMPLETIONOUTPUT_H + +#include +#include +#include +#include +#include + +#include +#include +#include +#include + +namespace TCLAP { + +/** + * A class that generates a Zsh completion function as output from the usage() + * method for the given CmdLine and its Args. + */ +class ZshCompletionOutput : public CmdLineOutput +{ + + public: + + ZshCompletionOutput(); + + /** + * Prints the usage to stdout. Can be overridden to + * produce alternative behavior. + * \param c - The CmdLine object the output is generated for. + */ + virtual void usage(CmdLineInterface& c); + + /** + * Prints the version to stdout. Can be overridden + * to produce alternative behavior. + * \param c - The CmdLine object the output is generated for. + */ + virtual void version(CmdLineInterface& c); + + /** + * Prints (to stderr) an error message, short usage + * Can be overridden to produce alternative behavior. + * \param c - The CmdLine object the output is generated for. + * \param e - The ArgException that caused the failure. + */ + virtual void failure(CmdLineInterface& c, + ArgException& e ); + + protected: + + void basename( std::string& s ); + void quoteSpecialChars( std::string& s ); + + std::string getMutexList( CmdLineInterface& _cmd, Arg* a ); + void printOption( Arg* it, std::string mutex ); + void printArg( Arg* it ); + + std::map common; + char theDelimiter; +}; + +ZshCompletionOutput::ZshCompletionOutput() +: common(std::map()), + theDelimiter('=') +{ + common["host"] = "_hosts"; + common["hostname"] = "_hosts"; + common["file"] = "_files"; + common["filename"] = "_files"; + common["user"] = "_users"; + common["username"] = "_users"; + common["directory"] = "_directories"; + common["path"] = "_directories"; + common["url"] = "_urls"; +} + +inline void ZshCompletionOutput::version(CmdLineInterface& _cmd) +{ + std::cout << _cmd.getVersion() << std::endl; +} + +inline void ZshCompletionOutput::usage(CmdLineInterface& _cmd ) +{ + std::list argList = _cmd.getArgList(); + std::string progName = _cmd.getProgramName(); + std::string xversion = _cmd.getVersion(); + theDelimiter = _cmd.getDelimiter(); + basename(progName); + + std::cout << "#compdef " << progName << std::endl << std::endl << + "# " << progName << " version " << _cmd.getVersion() << std::endl << std::endl << + "_arguments -s -S"; + + for (ArgListIterator it = argList.begin(); it != argList.end(); it++) + { + if ( (*it)->shortID().at(0) == '<' ) + printArg((*it)); + else if ( (*it)->getFlag() != "-" ) + printOption((*it), getMutexList(_cmd, *it)); + } + + std::cout << std::endl; +} + +inline void ZshCompletionOutput::failure( CmdLineInterface& _cmd, + ArgException& e ) +{ + static_cast(_cmd); // unused + std::cout << e.what() << std::endl; +} + +inline void ZshCompletionOutput::quoteSpecialChars( std::string& s ) +{ + size_t idx = s.find_last_of(':'); + while ( idx != std::string::npos ) + { + s.insert(idx, 1, '\\'); + idx = s.find_last_of(':', idx); + } + idx = s.find_last_of('\''); + while ( idx != std::string::npos ) + { + s.insert(idx, "'\\'"); + if (idx == 0) + idx = std::string::npos; + else + idx = s.find_last_of('\'', --idx); + } +} + +inline void ZshCompletionOutput::basename( std::string& s ) +{ + size_t p = s.find_last_of('/'); + if ( p != std::string::npos ) + { + s.erase(0, p + 1); + } +} + +inline void ZshCompletionOutput::printArg(Arg* a) +{ + static int count = 1; + + std::cout << " \\" << std::endl << " '"; + if ( a->acceptsMultipleValues() ) + std::cout << '*'; + else + std::cout << count++; + std::cout << ':'; + if ( !a->isRequired() ) + std::cout << ':'; + + std::cout << a->getName() << ':'; + std::map::iterator compArg = common.find(a->getName()); + if ( compArg != common.end() ) + { + std::cout << compArg->second; + } + else + { + std::cout << "_guard \"^-*\" " << a->getName(); + } + std::cout << '\''; +} + +inline void ZshCompletionOutput::printOption(Arg* a, std::string mutex) +{ + std::string flag = a->flagStartChar() + a->getFlag(); + std::string name = a->nameStartString() + a->getName(); + std::string desc = a->getDescription(); + + // remove full stop and capitalisation from description as + // this is the convention for zsh function + if (!desc.compare(0, 12, "(required) ")) + { + desc.erase(0, 12); + } + if (!desc.compare(0, 15, "(OR required) ")) + { + desc.erase(0, 15); + } + size_t len = desc.length(); + if (len && desc.at(--len) == '.') + { + desc.erase(len); + } + if (len) + { + desc.replace(0, 1, 1, tolower(desc.at(0))); + } + + std::cout << " \\" << std::endl << " '" << mutex; + + if ( a->getFlag().empty() ) + { + std::cout << name; + } + else + { + std::cout << "'{" << flag << ',' << name << "}'"; + } + if ( theDelimiter == '=' && a->isValueRequired() ) + std::cout << "=-"; + quoteSpecialChars(desc); + std::cout << '[' << desc << ']'; + + if ( a->isValueRequired() ) + { + std::string arg = a->shortID(); + arg.erase(0, arg.find_last_of(theDelimiter) + 1); + if ( arg.at(arg.length()-1) == ']' ) + arg.erase(arg.length()-1); + if ( arg.at(arg.length()-1) == ']' ) + { + arg.erase(arg.length()-1); + } + if ( arg.at(0) == '<' ) + { + arg.erase(arg.length()-1); + arg.erase(0, 1); + } + size_t p = arg.find('|'); + if ( p != std::string::npos ) + { + do + { + arg.replace(p, 1, 1, ' '); + } + while ( (p = arg.find_first_of('|', p)) != std::string::npos ); + quoteSpecialChars(arg); + std::cout << ": :(" << arg << ')'; + } + else + { + std::cout << ':' << arg; + std::map::iterator compArg = common.find(arg); + if ( compArg != common.end() ) + { + std::cout << ':' << compArg->second; + } + } + } + + std::cout << '\''; +} + +inline std::string ZshCompletionOutput::getMutexList( CmdLineInterface& _cmd, Arg* a) +{ + XorHandler xorHandler = _cmd.getXorHandler(); + std::vector< std::vector > xorList = xorHandler.getXorList(); + + if (a->getName() == "help" || a->getName() == "version") + { + return "(-)"; + } + + std::ostringstream list; + if ( a->acceptsMultipleValues() ) + { + list << '*'; + } + + for ( int i = 0; static_cast(i) < xorList.size(); i++ ) + { + for ( ArgVectorIterator it = xorList[i].begin(); + it != xorList[i].end(); + it++) + if ( a == (*it) ) + { + list << '('; + for ( ArgVectorIterator iu = xorList[i].begin(); + iu != xorList[i].end(); + iu++ ) + { + bool notCur = (*iu) != a; + bool hasFlag = !(*iu)->getFlag().empty(); + if ( iu != xorList[i].begin() && (notCur || hasFlag) ) + list << ' '; + if (hasFlag) + list << (*iu)->flagStartChar() << (*iu)->getFlag() << ' '; + if ( notCur || hasFlag ) + list << (*iu)->nameStartString() << (*iu)->getName(); + } + list << ')'; + return list.str(); + } + } + + // wasn't found in xor list + if (!a->getFlag().empty()) { + list << "(" << a->flagStartChar() << a->getFlag() << ' ' << + a->nameStartString() << a->getName() << ')'; + } + + return list.str(); +} + +} //namespace TCLAP +#endif diff --git a/rapidjson b/rapidjson new file mode 160000 index 0000000..c8c8ad4 --- /dev/null +++ b/rapidjson @@ -0,0 +1 @@ +Subproject commit c8c8ad47c372dc724cbabcbaf5c62aee4618afeb diff --git a/waifu2x-caffe-gui/CControl.cpp b/waifu2x-caffe-gui/CControl.cpp new file mode 100644 index 0000000..a889c70 --- /dev/null +++ b/waifu2x-caffe-gui/CControl.cpp @@ -0,0 +1,87 @@ +#include +#include "CControl.h" + + +CControl::CControl(const UINT ID) +{ + ResourceID = ID; +} + +CControl::CControl() +{ +} + +CControl::~CControl() +{ +} + +void CControl::RegisterFunc(HWND hWnd) +{ + hSub = GetDlgItem(hWnd, ResourceID); + + if(hSub == NULL) + return; + + SetWindowLongPtr(hSub, GWLP_USERDATA, (LONG_PTR)this); + + OrgSubWnd = (WNDPROC)GetWindowLongPtr(hSub, GWLP_WNDPROC); + SetWindowLongPtr(hSub, GWLP_WNDPROC, (LONG_PTR)DispatchSubProc); +} + +int CControl::GetResourceID() +{ + return ResourceID; +} + +void CControl::SetEventCallBack(const CustomEventFunc &func, const LPVOID lpData, const UINT uMsg) +{ + mEventMap[uMsg] = stEvent(func, lpData); +} + +BOOL CControl::Register(LPCTSTR ClassName, const HINSTANCE hInstance) +{ + WNDCLASS winc; + + winc.style = CS_HREDRAW | CS_VREDRAW; + winc.cbClsExtra = winc.cbWndExtra = 0; + winc.hInstance = hInstance; + winc.hCursor = LoadCursor(NULL , IDC_ARROW); + winc.hbrBackground = (HBRUSH)GetStockObject(WHITE_BRUSH); + winc.lpszMenuName = NULL; + winc.lpfnWndProc = DispatchCustomProc; + winc.hIcon = NULL; + winc.lpszClassName = ClassName; + + return RegisterClass(&winc); +} + +LRESULT CControl::SubProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) +{ + auto it = mEventMap.find(uMsg); + if(it != mEventMap.end()) + return it->second.pfunc(hWnd, wParam, lParam, OrgSubWnd, it->second.lpData); + else + //ŏȂ̂͌̃vV[WɂĂ炤 + return CallWindowProc(OrgSubWnd, hWnd, uMsg, wParam, lParam); +} + +// _CAOvV[W(`) +LRESULT CALLBACK CControl::DispatchSubProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) +{ + // _CAO 32 rbgɊi[Ă + // this |C^肾 + CControl *pcControl = (CControl *)GetWindowLongPtr(hWnd, GWLP_USERDATA); + if(pcControl == NULL) + { + // Ԃ񂱂s邱Ƃ͂Ȃ + return NULL; + } + + // o֐̃_CAOvV[WĂяo + return pcControl->SubProc(hWnd, uMsg, wParam, lParam); +} + +LRESULT CALLBACK CControl::DispatchCustomProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) +{ + return DefWindowProc(hWnd, uMsg, wParam, lParam); +} diff --git a/waifu2x-caffe-gui/CControl.h b/waifu2x-caffe-gui/CControl.h new file mode 100644 index 0000000..8e89a25 --- /dev/null +++ b/waifu2x-caffe-gui/CControl.h @@ -0,0 +1,79 @@ +#pragma once + +#include +#include +#include "GUICommon.h" + + +// +// CxgnhSetWindowLongGWL_USERDATAꍇȂ +class CControl +{ +private: + // Rs[A̋֎~ + CControl(const CControl&); + CControl& operator =(const CControl&); + +protected: + struct stEvent + { + CustomEventFunc pfunc; + LPVOID lpData; + + stEvent() : pfunc(nullptr), lpData(nullptr) + { + } + + stEvent(const CustomEventFunc &func, const LPVOID Data) : pfunc(func), lpData(Data) + { + } + + stEvent(const stEvent &st) + { + pfunc = st.pfunc; + lpData = st.lpData; + } + }; + + std::unordered_map mEventMap; + + HWND hSub; + WNDPROC OrgSubWnd; + int ResourceID; + + // _CAOvV[W() + virtual LRESULT SubProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); + +public: + // RXgN^(\[XIDw) + CControl(const UINT ID); + CControl(); + + // zfXgN^(Ȃ) + virtual ~CControl(); + + // ‚̃bZ[Wɂ‚‚̊֐o^łȂ. + // łɂꍇ͏㏑. + // lpData͓o^֐ɗ^DȈ. + // o^ł֐́A + // BOOL Create(HWND hWnd, WPARAM wParam, LPARAM lParam, LPVOID lpData); + // ̂悤Ȋ֐. + // ߂lTRUEłFALSEł悢. + void SetEventCallBack(const CustomEventFunc &func, const LPVOID lpData, const UINT uMsg); + + // JX^Rg[o^ + BOOL Register(LPCTSTR ClassName, const HINSTANCE hInstance); + + // [U[ĝ͂܂ + + + void RegisterFunc(HWND hWnd); + + int GetResourceID(); + + // _CAOvV[W(`) + static LRESULT CALLBACK DispatchSubProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); + + // JX^Rg[vV[W + static LRESULT CALLBACK DispatchCustomProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); +}; diff --git a/waifu2x-caffe-gui/CDialog.cpp b/waifu2x-caffe-gui/CDialog.cpp new file mode 100644 index 0000000..7e99dcd --- /dev/null +++ b/waifu2x-caffe-gui/CDialog.cpp @@ -0,0 +1,58 @@ +#include "CControl.h" +#include "CDialog.h" + + +CDialog::CDialog() : mInitFunc(nullptr), mInitData(nullptr) +{ + mEventMap[WM_INITDIALOG] = stEvent([this](HWND hWnd, WPARAM wParam, LPARAM lParam, LPVOID){ SetControl(hWnd); if(mInitFunc) mInitFunc(hWnd, wParam, lParam, mInitData); }, nullptr); + mEventMap[WM_CLOSE] = stEvent([this](HWND hWnd, WPARAM, LPARAM, LPVOID){ EndDialog(hWnd, 0); }, nullptr); + mEventMap[WM_COMMAND] = stEvent([this](HWND hWnd, WPARAM wParam, LPARAM lParam, LPVOID){ CommandCallBack(hWnd, wParam, lParam); }, nullptr); +} + +void CDialog::SetEventCallBack(const EventFunc &func, const LPVOID lpData, const UINT uMsg) +{ + if(uMsg == WM_INITDIALOG) // ʂɏ܂ȂĂ͂Ȃ֌W + { + mInitFunc = func; + mInitData = lpData; + } + else + mEventMap[uMsg] = stEvent(func, lpData); +} + +void CDialog::SetCommandCallBack(const EventFunc &func, const LPVOID lpData, const UINT ResourceID) +{ + mCommandMap[ResourceID] = stCommand(func, lpData); +} + +void CDialog::AddControl(CControl *pfunc) +{ + vControl.push_back(pfunc); +} + +void CDialog::SetControl(HWND hWnd) +{ + for(std::vector::size_type i = 0; i < vControl.size(); i++) + vControl[i]->RegisterFunc(hWnd); +} + +INT_PTR CDialog::DialogProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) +{ + const auto it = mEventMap.find(uMsg); + if(it != mEventMap.end()) + { + it->second.pfunc(hWnd, wParam, lParam, it->second.lpData); + return TRUE; + } + + return FALSE; +} + +void CDialog::CommandCallBack(HWND hWnd, WPARAM wParam, LPARAM lParam) +{ + const int ResourceID = LOWORD(wParam); + + auto it = mCommandMap.find(ResourceID); + if(it != mCommandMap.end()) + it->second.pfunc(hWnd, wParam, lParam, it->second.lpData); +} diff --git a/waifu2x-caffe-gui/CDialog.h b/waifu2x-caffe-gui/CDialog.h new file mode 100644 index 0000000..c925a3a --- /dev/null +++ b/waifu2x-caffe-gui/CDialog.h @@ -0,0 +1,93 @@ +#pragma once + +#include +#include +#include +#include "CDialogBase.h" +#include "GUICommon.h" + +class CControl; + + +// +// CxgnhSetWindowLongGWL_USERDATAꍇȂ +class CDialog: public CDialogBase +{ +private: + struct stEvent + { + EventFunc pfunc; + LPVOID lpData; + + stEvent() : pfunc(nullptr), lpData(nullptr) + { + } + + stEvent(const EventFunc &func, const LPVOID Data) : pfunc(func), lpData(Data) + { + } + + stEvent(const stEvent &st) + { + pfunc = st.pfunc; + lpData = st.lpData; + } + }; + + struct stCommand + { + EventFunc pfunc; + LPVOID lpData; + + stCommand() : pfunc(nullptr), lpData(nullptr) + { + } + + stCommand(const EventFunc &func, const LPVOID Data) : pfunc(func), lpData(Data) + { + } + + stCommand(const stCommand &st) + { + pfunc = st.pfunc; + lpData = st.lpData; + } + }; + + std::vector vControl; + std::unordered_map mEventMap; + std::unordered_map mCommandMap; + + EventFunc mInitFunc; + LPVOID mInitData; + + // Rs[A̋֎~ + CDialog(const CDialog&); + CDialog& operator =(const CDialog&); + + // _CAOvV[W + INT_PTR DialogProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); + void CommandCallBack(HWND hWnd, WPARAM wParam, LPARAM lParam); + void SetControl(HWND hWnd); + +public: + // ‚̃bZ[Wɂ‚‚̊֐o^łȂ. + // łɂꍇ͏㏑. + // WM_COMMANDo^ꍇASetCommandCallBack͎gȂȂ. + // lpData͓o^֐ɗ^DȈ. + // o^ł֐́A + // BOOL Create(HWND hWnd, WPARAM wParam, LPARAM lParam, LPVOID lpData); + // ̂悤Ȋ֐. + // _CAOłTRUEԂ. + void SetEventCallBack(const EventFunc &func, const LPVOID lpData, const UINT uMsg); + + // {^ꂽƂȂǂ̂ + // lpData͓o^֐ɗ^DȈ + void SetCommandCallBack(const EventFunc &func, const LPVOID lpData, const UINT ResourceID); + + // {^Ȃǂ̃TuNXRg[lj + void AddControl(CControl *pfunc); + + // RXgN^(Ȃ) + CDialog(); +}; diff --git a/waifu2x-caffe-gui/CDialogBase.cpp b/waifu2x-caffe-gui/CDialogBase.cpp new file mode 100644 index 0000000..66ee4d9 --- /dev/null +++ b/waifu2x-caffe-gui/CDialogBase.cpp @@ -0,0 +1,41 @@ +#include +#include "CDialogBase.h" + + +// _CAO쐬 +INT_PTR CDialogBase::DoModal(HINSTANCE hInstance, int iDialogId) +{ + return DialogBoxParam(hInstance, MAKEINTRESOURCE(iDialogId), NULL, &DispatchDialogProc, (LPARAM)this); +} + +HWND CDialogBase::GetDialogHWND(void) +{ + return hDialog; +} + +// _CAOvV[W(`) +INT_PTR CALLBACK CDialogBase::DispatchDialogProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) +{ + // _CAO 32 rbgɊi[Ă + // this |C^肾 + CDialogBase *pcDialog = (CDialogBase *)GetWindowLongPtr(hWnd, GWLP_USERDATA); + if(pcDialog == NULL) + { + if(uMsg == WM_INITDIALOG || uMsg == WM_CREATE) + { + // O DialogBoxParam() Ă΂Ăꍇ + // this |C^_CAÕ[U[̈ɓ + pcDialog = (CDialogBase*)lParam; + + SetWindowLongPtr(hWnd, GWLP_USERDATA, (LONG_PTR)pcDialog); + pcDialog->hDialog = hWnd; + + return pcDialog->DialogProc(hWnd, uMsg, wParam, lParam); + } + + return FALSE; + } + + // o֐̃_CAOvV[WĂяo + return pcDialog->DialogProc(hWnd, uMsg, wParam, lParam); +} diff --git a/waifu2x-caffe-gui/CDialogBase.h b/waifu2x-caffe-gui/CDialogBase.h new file mode 100644 index 0000000..71ca767 --- /dev/null +++ b/waifu2x-caffe-gui/CDialogBase.h @@ -0,0 +1,25 @@ +#pragma once + +#include + + +class CDialogBase +{ +private: + // _CAOvV[W() + virtual INT_PTR DialogProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) = 0; + +protected: + HWND hDialog; + +public: + virtual ~CDialogBase(){}; + + // _CAO쐬 + INT_PTR DoModal(HINSTANCE hInstance, int iDialogId); + + HWND GetDialogHWND(void); + + // _CAOvV[W(`) + static INT_PTR CALLBACK DispatchDialogProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); +}; diff --git a/waifu2x-caffe-gui/CWindow.h b/waifu2x-caffe-gui/CWindow.h new file mode 100644 index 0000000..0d5fde3 --- /dev/null +++ b/waifu2x-caffe-gui/CWindow.h @@ -0,0 +1,61 @@ +#pragma once + +#include +#include +#include +#include "CWindowBase.h" +#include "GUICommon.h" + + +// +// CxgnhSetWindowLongGWL_USERDATAꍇȂ +class CWindow: public CWindowBase +{ +private: + struct stEvent + { + EventFunc pfunc; + LPVOID lpData; + + stEvent() : pfunc(nullptr), lpData(nullptr) + { + } + + stEvent(const EventFunc &func, const LPVOID Data) : pfunc(func), lpData(Data) + { + } + + stEvent(const stEvent &st) + { + pfunc = st.pfunc; + lpData = st.lpData; + } + }; + std::unordered_map mEvent; + + // Rs[A̋֎~ + CWindow(const CWindow&); + CWindow& operator =(const CWindow&); + + // _CAOvV[Wij + LRESULT WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); + +public: + // ‚̃bZ[Wɂ‚‚̊֐o^łȂ. + // łɂꍇ͏㏑. + // lpData͓o^֐ɗ^DȈ. + // o^ł֐́A + // BOOL Create(HWND hWnd, WPARAM wParam, LPARAM lParam, LPVOID lpData); + // ̂悤Ȋ֐. + // ߂lTRUEłFALSEł悢. + void SetEventCallBack(EventFunc pfunc, LPVOID lpData, UINT uMsg); + + // EBhETCYύX + void SetWindowSize(int nWidth, int nHeight, BOOL Adjust); + + // EBhEʒSֈړ + void MoveWindowCenter(); + + // RXgN^(Ȃ) + CWindow(); +}; diff --git a/waifu2x-caffe-gui/CWindowBase.h b/waifu2x-caffe-gui/CWindowBase.h new file mode 100644 index 0000000..4fa996e --- /dev/null +++ b/waifu2x-caffe-gui/CWindowBase.h @@ -0,0 +1,47 @@ +#pragma once + +#include + + +class CWindowBase +{ +private: + // _CAOvV[W() + virtual LRESULT WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) = 0; + +protected: + HWND hWindow; + DWORD dwStyle; + +public: + // zfXgN^(Ȃ) + virtual ~CWindowBase(); + + // _CAO쐬 + // Adjust: ^ȂTCYNCAg̈̂̂Ƃ + // bSizeBox: ^ȂTCYύXł悤ɂ + HWND InitWindow(HINSTANCE hInstance, UINT Width, UINT Height, + BOOL Adjust, BOOL bSizeBox, LPCTSTR szClassName, LPCTSTR szWindowTitle); + + HWND InitWindow(HINSTANCE hInstance, UINT Width, UINT Height, + BOOL Adjust, LPCTSTR szClassName, LPCTSTR szWindowTitle, + UINT WindowClassStyle = CS_HREDRAW | CS_VREDRAW, DWORD WindowStyle = WS_OVERLAPPEDWINDOW); + + // EBhE\ + void ShowWindow(int nCmdShow); + + // CEBhẼnh擾 + HWND GetWindowHandle(void); + + // bZ[W[v + void MessageLoop(); + + // ߂l: I 0 + // bZ[W 1 + // bZ[W͂Ȃ 2 + int PeekLoop(); + + + // _CAOvV[W(`) + static LRESULT CALLBACK DispatchWindowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); +}; diff --git a/waifu2x-caffe-gui/GUICommon.h b/waifu2x-caffe-gui/GUICommon.h new file mode 100644 index 0000000..63ca0af --- /dev/null +++ b/waifu2x-caffe-gui/GUICommon.h @@ -0,0 +1,10 @@ +#pragma once + +#include +#include + + +#define SetClassFunc(FuncObject, ObjectPointer) std::bind(&FuncObject, ObjectPointer, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, std::placeholders::_4) +#define SetClassCustomFunc(FuncObject, ObjectPointer) std::bind(&FuncObject, ObjectPointer, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, std::placeholders::_4, std::placeholders::_5) +typedef std::function EventFunc; +typedef std::function CustomEventFunc; diff --git a/waifu2x-caffe-gui/Resource.rc b/waifu2x-caffe-gui/Resource.rc new file mode 100644 index 0000000000000000000000000000000000000000..87e52055c9ffda91f20782f2306630a63d2b9879 GIT binary patch literal 8392 zcmdT~%WoS+82_#y@jn;`L@Givw(~qDw&R#Oj%z!iX)9T2UX4_eDi6T{32{KY?p%=I zf`m9APF&~(#EA>H3L#Dfap7^|h7j=keUs_TI=i;lO(i31cXnrIzWE-%@3FJ~_n%3b zl#Hy%zHG^n9Lh0{T{%JDI{J>~R5s-f?uzm}ei_-59XY^pg#Ht>+vqz&%Xz1`+QM}P zcciv2cQNL&JS9(Jl}T;K(0hQVcQATe$7avXzbv;UtD`w{Ovml&Jknl}hP0$DYf_S` ztV&0kQbunH*LA7M26|dJugD^LYPfdmlZVm!IqqDWkqY$Et>ay2=}=yV{3p;3_0WdY z*Kn>v>LTQ%KFa9N(!+gJ0AyLv#%O?I^sRsn7bfLz>W2q7CdAP{!;{UI>1j2Khk{-zf9uH zHfS_~(vG|cU#w#Wd90zgj@~u26-A=!;W%1`&&%+~vP^(_3nLdF&f@B2aJGQn8cEsrXmmNXVr;fpnRRt1`1rgeABIvJpdK5WlZ zQjlrA&&ia`D;;L&4a{doD#6#8lgsE^0>wI7#u)cx1$`x@zl6B5fXvNV{`nGCzlJ{2 z*}xG#W8@;eGG^NTmvpri^@l2GRpmOKvKAoUq-sYr(9=M)X+(O9Sib>!tSsu0Cw6V} zR>v&rs(UPPzo|Gng+IM2FQCrZMD*GP!Yt~&^mD4OEcl~5EzRk7w9+c!yod4B?-Vo~ zYTAHmPS=k2c}7lK6*weE+pO$d{h&$Ov~y9d!e~x;i|EbiYB`zF>sg%VbTvnXHmG8B z(khOs8`r_;x@x%%T6s|88dEqs$#UqO0MA4SV}BcZU&dV#_GI-|!&7T7%Ed87{K{%0 z;(`dX6`tdDB1LoLvmlg`D>Bpyqit3N(cF1@7v29kK*!XelC-b-Y z)+FPB(odgh!s=oMmLv8ZwW9h-`^;Ld*SA^u&U|dXG~4grYlZ93&t3g){ht*`9n`9@ zCo6<3I6pYf1jbTA6j4m*{u%gZZt8_vL_AMn~&`vl=}MT@ksz|JhY?>On3( zd*2CdPRy?3sHv?k+W!iwH|v4+Iz1Y!EcsNjP=mwCLTg)2ohJ@wd3xVl$6@4Pb>y>d z9#*DzSUWonMg84n)WI{a_h7#3+0|CD3RhzuW+Z1GwleX$R~8N ztKDagAY1{~9k9s&cp``Qb zbJp`%0ft`HA0;9EhE`leBE7Z++F9%la^Lj??+?eo`(52J+&kL~JO&3gZrW;^S*od? z(ZpOLn3XuSHHFsNKWdNu_W#WMZ2pAbM{`;f1*|H#U&$;(B;=t5uH6d>{a5z>^0oN{ zap&_$)amA6S#fwpV*+1Q65^WZ88liu@_viyDXDdhjkym|G&u)^Lj@1gqYjSgbN z=Xq*^?_b^cNbe8+-OKqz2U=%+P4D2UJ`ec%W{^w}-8&+RM{Ca`I5TJAc~XR4^h z>NwYRPr^NA%Om~1BX>SoUlG})$~BVLihqCS{O;Ws?gNDTFXYZe-FPbQDeJi<*m?y% z$NgGzMQXE=xZ_4Q@w|fgettY7LUbR%&0)3J#0)Px>GKUg +#include +#include +#include +#include +#include +#include +#include +#include +#include "resource.h" +#include "../common/waifu2x.h" + +#include "CDialog.h" +#include "CControl.h" + +#define WM_FAILD_CREATE_DIR (WM_APP + 5) +#define WM_END_WAIFU2X (WM_APP + 6) +#define WM_END_THREAD (WM_APP + 7) + +const size_t AR_PATH_MAX(1024); + + +// http://stackoverflow.com/questions/10167382/boostfilesystem-get-relative-path +boost::filesystem::path relativePath(const boost::filesystem::path &path, const boost::filesystem::path &relative_to) +{ + // create absolute paths + boost::filesystem::path p = boost::filesystem::absolute(path); + boost::filesystem::path r = boost::filesystem::absolute(relative_to); + + // if root paths are different, return absolute path + if (p.root_path() != r.root_path()) + return p; + + // initialize relative path + boost::filesystem::path result; + + // find out where the two paths diverge + boost::filesystem::path::const_iterator itr_path = p.begin(); + boost::filesystem::path::const_iterator itr_relative_to = r.begin(); + while (*itr_path == *itr_relative_to && itr_path != p.end() && itr_relative_to != r.end()) { + ++itr_path; + ++itr_relative_to; + } + + // add "../" for each remaining token in relative_to + if (itr_relative_to != r.end()) { + ++itr_relative_to; + while (itr_relative_to != r.end()) { + result /= ".."; + ++itr_relative_to; + } + } + + // add remaining path + while (itr_path != p.end()) { + result /= *itr_path; + ++itr_path; + } + + return result; +} + +// _CAOp +class DialogEvent +{ +private: + HWND dh; + + std::string input_str; + std::string output_str; + std::string mode; + int noise_level; + double scale_ratio; + std::string process; + std::string outputExt; + std::string inputFileExt; + + std::thread processThread; + std::atomic_bool cancelFlag; + + std::string autoSetAddName; + bool isLastError; + +private: + std::string AddName() const + { + std::string addstr("_" + mode); + + if (mode.find("noise") != mode.npos || mode.find("auto_scale") != mode.npos) + addstr += "(Level" + std::to_string(noise_level) + ")"; + if (mode.find("scale") != mode.npos) + addstr += "(x" + std::to_string(scale_ratio) + ")"; + + return addstr; + } + + bool SyncMember() + { + bool ret = true; + + { + char buf[AR_PATH_MAX] = ""; + GetWindowTextA(GetDlgItem(dh, IDC_EDIT_INPUT), buf, _countof(buf)); + buf[_countof(buf) - 1] = '\0'; + + input_str = buf; + } + + { + char buf[AR_PATH_MAX] = ""; + GetWindowTextA(GetDlgItem(dh, IDC_EDIT_OUTPUT), buf, _countof(buf)); + buf[_countof(buf) - 1] = '\0'; + + output_str = buf; + } + + if (SendMessage(GetDlgItem(dh, IDC_RADIO_MODE_NOISE), BM_GETCHECK, 0, 0)) + mode = "noise"; + else if (SendMessage(GetDlgItem(dh, IDC_RADIO_MODE_SCALE), BM_GETCHECK, 0, 0)) + mode = "scale"; + else if (SendMessage(GetDlgItem(dh, IDC_RADIO_MODE_NOISE_SCALE), BM_GETCHECK, 0, 0)) + mode = "noise_scale"; + else + mode = "auto_scale"; + + if (SendMessage(GetDlgItem(dh, IDC_RADIONOISE_LEVEL1), BM_GETCHECK, 0, 0)) + noise_level = 1; + else + noise_level = 2; + + { + char buf[AR_PATH_MAX] = ""; + GetWindowTextA(GetDlgItem(dh, IDC_EDIT_SCALE_RATIO), buf, _countof(buf)); + buf[_countof(buf) - 1] = '\0'; + + char *ptr = nullptr; + scale_ratio = strtod(buf, &ptr); + if (!ptr || *ptr != '\0') + { + scale_ratio = 2.0; + ret = false; + + MessageBox(dh, TEXT("g嗦͐łKv܂"), TEXT("G["), MB_OK | MB_ICONERROR); + } + } + + { + char buf[AR_PATH_MAX] = ""; + GetWindowTextA(GetDlgItem(dh, IDC_EDIT_OUT_EXT), buf, _countof(buf)); + buf[_countof(buf) - 1] = '\0'; + + outputExt = buf; + if (outputExt.length() > 0 && outputExt[0] != '.') + outputExt = "." + outputExt; + } + + if (SendMessage(GetDlgItem(dh, IDC_RADIO_MODE_CPU), BM_GETCHECK, 0, 0)) + process = "cpu"; + else + process = "gpu"; + + { + char buf[AR_PATH_MAX] = ""; + GetWindowTextA(GetDlgItem(dh, IDC_EDIT_INPUT_EXT_LIST), buf, _countof(buf)); + buf[_countof(buf) - 1] = '\0'; + + inputFileExt = buf; + } + + return ret; + } + + void ProcessWaifu2x() + { + const boost::filesystem::path input_path(boost::filesystem::absolute(input_str)); + + std::vector file_paths; + if (boost::filesystem::is_directory(input_path)) // input_pathtH_Ȃ炻̃fBNgȉ̉摜t@Cꊇϊ + { + boost::filesystem::path output_path(output_str); + + output_path = boost::filesystem::absolute(output_path); + + if (!boost::filesystem::exists(output_path)) + { + if (!boost::filesystem::create_directory(output_path)) + { + SendMessage(dh, WM_FAILD_CREATE_DIR, (WPARAM)&output_path, 0); + PostMessage(dh, WM_END_THREAD, 0, 0); + // printf("o̓tH_u%sv̍쐬Ɏs܂\n", output_path.string().c_str()); + return; + } + } + + std::vector extList; + { + // input_extention_list𕶎̔zɂ + + typedef boost::char_separator char_separator; + typedef boost::tokenizer tokenizer; + + char_separator sep(":", "", boost::drop_empty_tokens); + tokenizer tokens(inputFileExt, sep); + + for (tokenizer::iterator tok_iter = tokens.begin(); tok_iter != tokens.end(); ++tok_iter) + extList.push_back("." + *tok_iter); + } + + // ϊ摜̓́Ao̓pX擾 + const auto func = [this, &extList, &input_path, &output_path, &file_paths](const boost::filesystem::path &path) + { + BOOST_FOREACH(const boost::filesystem::path& p, std::make_pair(boost::filesystem::recursive_directory_iterator(path), + boost::filesystem::recursive_directory_iterator())) + { + if (!boost::filesystem::is_directory(p) && std::find(extList.begin(), extList.end(), p.extension().string()) != extList.end()) + { + const auto out_relative = relativePath(p, input_path); + const auto out_absolute = output_path / out_relative; + + const auto out = (out_absolute.branch_path() / out_absolute.stem()).string() + outputExt; + + file_paths.emplace_back(p.string(), out); + } + } + + return true; + }; + + if (!func(input_path)) + return; + + for (const auto &p : file_paths) + { + const boost::filesystem::path out_path(p.second); + const boost::filesystem::path out_dir(out_path.parent_path()); + + if (!boost::filesystem::exists(out_dir)) + { + if (!boost::filesystem::create_directories(out_dir)) + { + SendMessage(dh, WM_FAILD_CREATE_DIR, (WPARAM)&out_dir, 0); + PostMessage(dh, WM_END_THREAD, 0, 0); + //printf("o̓tH_u%sv̍쐬Ɏs܂\n", out_absolute.string().c_str()); + return; + } + } + } + } + else + file_paths.emplace_back(input_str, output_str); + + bool isFirst = true; + + const auto ProgessFunc = [this, &isFirst](const int ProgressFileMax, const int ProgressFileNow) + { + if (isFirst) + { + isFirst = true; + + SendMessage(GetDlgItem(dh, IDC_PROGRESS), PBM_SETRANGE32, 0, ProgressFileMax); + } + + SendMessage(GetDlgItem(dh, IDC_PROGRESS), PBM_SETPOS, ProgressFileNow, 0); + }; + + std::vector errors; + const eWaifu2xError ret = waifu2x(__argc, __argv, file_paths, mode, noise_level, scale_ratio, "models", process, errors, [this]() + { + return cancelFlag; + }, ProgessFunc); + + SendMessage(dh, WM_END_WAIFU2X, (WPARAM)&ret, (LPARAM)&errors); + + PostMessage(dh, WM_END_THREAD, 0, 0); + } + + void ReplaceAddString() + { + SyncMember(); + + const boost::filesystem::path output_path(output_str); + std::string stem = output_path.stem().string(); + if (stem.length() > 0 && stem.length() >= autoSetAddName.length()) + { + const std::string base = stem.substr(0, stem.length() - autoSetAddName.length()); + stem.erase(0, base.length()); + if (stem == autoSetAddName) + { + const std::string addstr(AddName()); + autoSetAddName = addstr; + + boost::filesystem::path new_out_path = output_path.branch_path() / (base + addstr + outputExt); + + SetWindowTextA(GetDlgItem(dh, IDC_EDIT_OUTPUT), new_out_path.string().c_str()); + } + } + } + +public: + DialogEvent() : dh(nullptr), mode("noise_scale"), noise_level(1), scale_ratio(2.0), process("gpu"), outputExt("png"), inputFileExt("png:jpg:jpeg:tif:tiff:bmp"), isLastError(false) + { + } + + void Exec(HWND hWnd, WPARAM wParam, LPARAM lParam, LPVOID lpData) + { + if (processThread.joinable()) + return; + + SyncMember(); + + if (input_str.length() == 0) + { + MessageBox(dh, TEXT("̓pXw肵ĉ"), TEXT("G["), MB_OK | MB_ICONERROR); + return; + } + + if (output_str.length() == 0) + { + MessageBox(dh, TEXT("o̓pXw肵ĉ"), TEXT("G["), MB_OK | MB_ICONERROR); + return; + } + + if (outputExt.length() == 0) + { + MessageBox(dh, TEXT("o͊gqw肵ĉ"), TEXT("G["), MB_OK | MB_ICONERROR); + return; + } + + SendMessage(GetDlgItem(dh, IDC_PROGRESS), PBM_SETPOS, 0, 0); + cancelFlag = false; + isLastError = false; + + processThread = std::thread(std::bind(&DialogEvent::ProcessWaifu2x, this)); + + EnableWindow(GetDlgItem(dh, IDC_BUTTON_CANCEL), TRUE); + EnableWindow(GetDlgItem(dh, IDC_BUTTON_EXEC), FALSE); + } + + void WaitThreadExit(HWND hWnd, WPARAM wParam, LPARAM lParam, LPVOID lpData) + { + processThread.join(); + EnableWindow(GetDlgItem(dh, IDC_BUTTON_CANCEL), FALSE); + EnableWindow(GetDlgItem(dh, IDC_BUTTON_EXEC), TRUE); + + if (!isLastError) + MessageBeep(MB_ICONASTERISK); + } + + void OnDialogEnd(HWND hWnd, WPARAM wParam, LPARAM lParam, LPVOID lpData) + { + if (!processThread.joinable()) + PostQuitMessage(0); + else + MessageBeep(MB_ICONEXCLAMATION); + } + + void OnFaildCreateDir(HWND hWnd, WPARAM wParam, LPARAM lParam, LPVOID lpData) + { + const boost::filesystem::path *p = (const boost::filesystem::path *)wParam; + + // o̓tH_u%sv̍쐬Ɏs܂\n", out_absolute.string().c_str()); + std::wstring msg(L"o̓tH_\r\nu"); + msg += p->wstring(); + msg += L"v\r\n̍쐬Ɏs܂"; + + MessageBox(dh, msg.c_str(), TEXT("G["), MB_OK | MB_ICONERROR); + + isLastError = true; + } + + void OnEndWaifu2x(HWND hWnd, WPARAM wParam, LPARAM lParam, LPVOID lpData) + { + const eWaifu2xError ret = *(const eWaifu2xError *)wParam; + const std::vector &errors = *(const std::vector *)lParam; + + if ((ret != eWaifu2xError_OK) || errors.size() > 0) + { + char msg[1024] = ""; + + switch (ret) + { + case eWaifu2xError_Cancel: + sprintf(msg, "LZ܂"); + break; + case eWaifu2xError_InvalidParameter: + sprintf(msg, "p[^sł"); + break; + case eWaifu2xError_FailedOpenModelFile: + sprintf(msg, "ft@CJ܂ł"); + break; + case eWaifu2xError_FailedParseModelFile: + sprintf(msg, "ft@CĂ܂"); + break; + case eWaifu2xError_FailedConstructModel: + sprintf(msg, "lbg[N̍\zɎs܂"); + break; + } + + if (ret == eWaifu2xError_OK) + { + // SẴG[\邱Ƃ͏oȂ̂ōŏ̈‚\ + + const auto &fp = errors[0].first; + + bool isBreak = false; + switch (errors[0].second) + { + case eWaifu2xError_InvalidParameter: + sprintf(msg, "p[^sł"); + break; + case eWaifu2xError_FailedOpenInputFile: + //sprintf(msg, "͉摜u%svJ܂ł", fp.first.c_str()); + sprintf(msg, "͉摜J܂ł"); + break; + case eWaifu2xError_FailedOpenOutputFile: + //sprintf(msg, "o͉摜u%sv߂܂ł", fp.second.c_str()); + sprintf(msg, "o͉摜߂܂ł"); + break; + case eWaifu2xError_FailedProcessCaffe: + sprintf(msg, "ԏɎs܂"); + break; + } + } + + MessageBoxA(dh, msg, "G[", MB_OK | MB_ICONERROR); + + isLastError = true; + } + } + + void Create(HWND hWnd, WPARAM wParam, LPARAM lParam, LPVOID lpData) + { + dh = hWnd; + + SendMessage(GetDlgItem(hWnd, IDC_RADIO_MODE_NOISE_SCALE), BM_SETCHECK, BST_CHECKED, 0); + SendMessage(GetDlgItem(hWnd, IDC_RADIONOISE_LEVEL1), BM_SETCHECK, BST_CHECKED, 0); + SendMessage(GetDlgItem(hWnd, IDC_RADIO_MODE_GPU), BM_SETCHECK, BST_CHECKED, 0); + + EnableWindow(GetDlgItem(dh, IDC_BUTTON_CANCEL), FALSE); + + char text[] = "2.00"; + SetWindowTextA(GetDlgItem(hWnd, IDC_EDIT_SCALE_RATIO), text); + SetWindowTextA(GetDlgItem(hWnd, IDC_EDIT_OUT_EXT), outputExt.c_str()); + SetWindowTextA(GetDlgItem(hWnd, IDC_EDIT_INPUT_EXT_LIST), inputFileExt.c_str()); + } + + void Cancel(HWND hWnd, WPARAM wParam, LPARAM lParam, LPVOID lpData) + { + cancelFlag = true; + EnableWindow(GetDlgItem(dh, IDC_BUTTON_CANCEL), FALSE); + } + + void RadioButtom(HWND hWnd, WPARAM wParam, LPARAM lParam, LPVOID lpData) + { + ReplaceAddString(); + } + + void CheckCUDNN(HWND hWnd, WPARAM wParam, LPARAM lParam, LPVOID lpData) + { + if (can_use_cuDNN()) + MessageBox(dh, TEXT("cuDNNg܂"), TEXT(""), MB_OK | MB_ICONINFORMATION); + else + MessageBox(dh, TEXT("cuDNN͎g܂"), TEXT(""), MB_OK | MB_ICONERROR); + } + + // œnhWndIDC_EDITHWND(Rg[̃Cxg) + LRESULT DropInput(HWND hWnd, WPARAM wParam, LPARAM lParam, WNDPROC OrgSubWnd, LPVOID lpData) + { + char szTmp[AR_PATH_MAX]; + + // hbvꂽt@C擾 + UINT FileNum = DragQueryFileA((HDROP)wParam, 0xFFFFFFFF, szTmp, _countof(szTmp)); + if (FileNum >= 1) + { + DragQueryFileA((HDROP)wParam, 0, szTmp, _countof(szTmp)); + + boost::filesystem::path path(szTmp); + + if (!SyncMember()) + return 0L; + + if (boost::filesystem::is_directory(path)) + { + HWND ho = GetDlgItem(dh, IDC_EDIT_OUTPUT); + + const std::string addstr(AddName()); + autoSetAddName = AddName(); + + auto str = (path.branch_path() / (path.stem().string() + addstr)).string(); + + SetWindowTextA(ho, str.c_str()); + + SetWindowTextA(hWnd, szTmp); + } + else + { + HWND ho = GetDlgItem(dh, IDC_EDIT_OUTPUT); + + std::string outputFileName = szTmp; + + const auto tailDot = outputFileName.find_last_of('.'); + outputFileName.erase(tailDot, outputFileName.length()); + + const std::string addstr(AddName()); + autoSetAddName = addstr; + + outputFileName += addstr + outputExt; + + SetWindowTextA(ho, outputFileName.c_str()); + + SetWindowTextA(hWnd, szTmp); + } + } + + return 0L; + } + + // œnhWndIDC_EDITHWND(Rg[̃Cxg) + LRESULT DropOutput(HWND hWnd, WPARAM wParam, LPARAM lParam, WNDPROC OrgSubWnd, LPVOID lpData) + { + TCHAR szTmp[AR_PATH_MAX]; + + // hbvꂽt@C擾 + UINT FileNum = DragQueryFile((HDROP)wParam, 0xFFFFFFFF, szTmp, AR_PATH_MAX); + if (FileNum >= 1) + { + DragQueryFile((HDROP)wParam, 0, szTmp, AR_PATH_MAX); + SetWindowText(hWnd, szTmp); + } + + return 0L; + } + + LRESULT TextInput(HWND hWnd, WPARAM wParam, LPARAM lParam, WNDPROC OrgSubWnd, LPVOID lpData) + { + const auto ret = CallWindowProc(OrgSubWnd, hWnd, WM_CHAR, wParam, lParam); + ReplaceAddString(); + return ret; + } +}; + + +int WINAPI WinMain(HINSTANCE hInstance, + HINSTANCE hPrevInstance, + LPSTR lpCmdLine, + int nCmdShow) +{ + // CDialogNXŃ_CAO쐬 + CDialog cDialog; + CDialog cDialog2; + // IDC_EDIT̃TuNX + CControl cControlInput(IDC_EDIT_INPUT); + CControl cControlOutput(IDC_EDIT_OUTPUT); + CControl cControlScale(IDC_EDIT_SCALE_RATIO); + CControl cControlOutExt(IDC_EDIT_OUT_EXT); + + // o^֐܂Ƃ߂ꂽNX + // O[o֐g΃NXɂ܂Ƃ߂Kv͂Ȃ̕@𗧂‚Ƃ͂ + DialogEvent cDialogEvent; + + // NX̊֐o^ꍇ + + // IDC_EDITWM_DROPFILESĂƂɎs֐̓o^ + cControlInput.SetEventCallBack(SetClassCustomFunc(DialogEvent::DropInput, &cDialogEvent), NULL, WM_DROPFILES); + cControlOutput.SetEventCallBack(SetClassCustomFunc(DialogEvent::DropOutput, &cDialogEvent), NULL, WM_DROPFILES); + cControlScale.SetEventCallBack(SetClassCustomFunc(DialogEvent::TextInput, &cDialogEvent), NULL, WM_CHAR); + cControlOutExt.SetEventCallBack(SetClassCustomFunc(DialogEvent::TextInput, &cDialogEvent), NULL, WM_CHAR); + + // Rg[̃TuNXo^ + cDialog.AddControl(&cControlInput); + cDialog.AddControl(&cControlOutput); + cDialog.AddControl(&cControlScale); + cDialog.AddControl(&cControlOutExt); + + // eRg[̃CxgŎs֐̓o^ + cDialog.SetCommandCallBack(SetClassFunc(DialogEvent::Exec, &cDialogEvent), NULL, IDC_BUTTON_EXEC); + cDialog.SetCommandCallBack(SetClassFunc(DialogEvent::Cancel, &cDialogEvent), NULL, IDC_BUTTON_CANCEL); + + cDialog.SetCommandCallBack(SetClassFunc(DialogEvent::RadioButtom, &cDialogEvent), NULL, IDC_RADIO_MODE_NOISE); + cDialog.SetCommandCallBack(SetClassFunc(DialogEvent::RadioButtom, &cDialogEvent), NULL, IDC_RADIO_MODE_SCALE); + cDialog.SetCommandCallBack(SetClassFunc(DialogEvent::RadioButtom, &cDialogEvent), NULL, IDC_RADIO_MODE_NOISE_SCALE); + cDialog.SetCommandCallBack(SetClassFunc(DialogEvent::RadioButtom, &cDialogEvent), NULL, IDC_RADIO_AUTO_SCALE); + cDialog.SetCommandCallBack(SetClassFunc(DialogEvent::RadioButtom, &cDialogEvent), NULL, IDC_RADIONOISE_LEVEL1); + cDialog.SetCommandCallBack(SetClassFunc(DialogEvent::RadioButtom, &cDialogEvent), NULL, IDC_RADIO_MODE_CPU); + cDialog.SetCommandCallBack(SetClassFunc(DialogEvent::RadioButtom, &cDialogEvent), NULL, IDC_RADIO_MODE_GPU); + + cDialog.SetCommandCallBack(SetClassFunc(DialogEvent::CheckCUDNN, &cDialogEvent), NULL, IDC_BUTTON_CHECK_CUDNN); + + // _CAÕCxgŎs֐̓o^ + cDialog.SetEventCallBack(SetClassFunc(DialogEvent::Create, &cDialogEvent), NULL, WM_INITDIALOG); + cDialog.SetEventCallBack(SetClassFunc(DialogEvent::OnDialogEnd, &cDialogEvent), NULL, WM_CLOSE); + cDialog.SetEventCallBack(SetClassFunc(DialogEvent::OnFaildCreateDir, &cDialogEvent), NULL, WM_FAILD_CREATE_DIR); + cDialog.SetEventCallBack(SetClassFunc(DialogEvent::OnEndWaifu2x, &cDialogEvent), NULL, WM_END_WAIFU2X); + cDialog.SetEventCallBack(SetClassFunc(DialogEvent::WaitThreadExit, &cDialogEvent), NULL, WM_END_THREAD); + + // _CAO\ + cDialog.DoModal(hInstance, IDD_DIALOG); + + return 0; +} diff --git a/waifu2x-caffe-gui/manifest.manifest b/waifu2x-caffe-gui/manifest.manifest new file mode 100644 index 0000000..b25476a --- /dev/null +++ b/waifu2x-caffe-gui/manifest.manifest @@ -0,0 +1,22 @@ + + + +applcation + + + + + + diff --git a/waifu2x-caffe-gui/models/noise1_model.json b/waifu2x-caffe-gui/models/noise1_model.json new file mode 100644 index 0000000..418d653 --- /dev/null +++ b/waifu2x-caffe-gui/models/noise1_model.json @@ -0,0 +1 @@ +[{"weight":[[[[-0.0074667679145932,-0.11989582329988,-0.079815961420536],[-0.0022693427745253,-0.032127153128386,0.04622845724225],[-0.00080419890582561,0.067840985953808,0.12698559463024]]],[[[0.066826343536377,0.020378602668643,-0.023073747754097],[0.0023027174174786,-0.010793132707477,0.028627749532461],[-0.028349900618196,-0.046103361994028,-0.011497860774398]]],[[[0.073378227651119,0.014924479648471,-0.020094357430935],[-0.00089756853412837,-0.022391842678189,-0.059255294501781],[-0.0056277406401932,-0.040375951677561,0.079751238226891]]],[[[0.0035967396106571,0.0032893491443247,0.15076979994774],[-0.0099694319069386,-0.14968346059322,0.0079760691151023],[0.0012238457566127,-0.0092173339799047,-0.00032873675809242]]],[[[0.053432378917933,-0.015831243246794,-0.0008611996890977],[-0.0034333593212068,0.047888554632664,0.019786877557635],[0.2025838047266,-0.040484774857759,0.0041747083887458]]],[[[-0.078985191881657,-0.1103592440486,0.019772831350565],[-0.1140488088131,-0.009413218125701,-0.0071435151621699],[-0.002790556056425,-0.13578999042511,0.013786068186164]]],[[[0.1063314601779,0.085902258753777,0.012267952784896],[-0.1476461738348,-0.051417220383883,0.056973952800035],[-0.026913050562143,-0.065258860588074,0.030904024839401]]],[[[-0.082549341022968,-0.07258252799511,0.0037937799934298],[0.016132665798068,0.14522151648998,0.077938258647919],[0.013762203976512,-0.012502274475992,-0.091449968516827]]],[[[0.090391524136066,0.086528740823269,0.025827322155237],[-0.04997207224369,-0.085557281970978,-0.060509160161018],[0.0048256097361445,-0.045181650668383,0.027537787333131]]],[[[-0.041959032416344,0.052510667592287,0.10084590315819],[0.073166765272617,0.13226634263992,0.1008387580514],[-0.010600212961435,-0.026831766590476,0.17054484784603]]],[[[0.016487104818225,-0.060531746596098,0.018943434581161],[0.10748887807131,0.0019070147536695,0.0067211408168077],[-0.035267155617476,-0.072520546615124,0.012363818474114]]],[[[0.037382192909718,0.035442735999823,-0.062087837606668],[0.014112187549472,-0.025633532553911,-0.017047856003046],[-0.042123444378376,-0.015116676688194,0.073986157774925]]],[[[0.11952974647284,0.020328732207417,-0.068428784608841],[0.032844394445419,0.06730068475008,0.019899640232325],[-0.042413767427206,-0.028470773249865,-0.014138595201075]]],[[[0.015106830745935,-0.0071813743561506,-0.0016012381529436],[-0.025804197415709,-0.017905425280333,-0.027894143015146],[0.0010555130429566,0.064388744533062,-0.0101168891415]]],[[[-0.042344223707914,-0.063498675823212,-0.0056388541124761],[-0.097910925745964,-0.11247319728136,0.099358670413494],[0.059795599430799,0.12483971565962,0.048238258808851]]],[[[0.01881916821003,-0.0097370883449912,-0.0084061389788985],[-0.017241546884179,0.088133290410042,-0.01098211761564],[-0.042257227003574,0.020037248730659,-0.051767989993095]]],[[[-0.23555245995522,-0.094180464744568,-0.0047501609660685],[0.0095892669633031,-0.11213900148869,-0.11405062675476],[-0.09172485023737,0.01073582470417,0.062072742730379]]],[[[-0.10318392515182,-0.0083689363673329,0.11419752985239],[0.023371797055006,0.1017799898982,-0.12658263742924],[-0.0016788971843198,-0.010738344863057,-0.0032234634272754]]],[[[-0.012621490284801,0.019803274422884,-0.0076490067876875],[0.042255390435457,-0.04468235373497,-0.011769304983318],[-0.27657300233841,0.0053470204584301,0.01874753460288]]],[[[-0.0016901042545214,-0.010555851273239,0.015409086830914],[-0.22741957008839,0.13615934550762,-0.019414460286498],[-0.016477113589644,0.097280964255333,0.02137678861618]]],[[[-0.037055015563965,0.038769394159317,0.062909014523029],[-0.03945279866457,0.00013122048403602,0.010212319903076],[0.031901840120554,-0.026246411725879,-0.0031056592706591]]],[[[-0.025502068921924,-0.027480021119118,0.0030768513679504],[0.02919352427125,-0.0091610085219145,0.013116816990077],[0.036323945969343,0.0038715221453458,-0.0149250254035]]],[[[-0.012199000455439,-0.032022673636675,0.0048950128257275],[0.017813507467508,0.013781835325062,0.14838464558125],[-0.027710385620594,0.042968463152647,-0.026438577100635]]],[[[-0.040446002036333,-0.0046125617809594,0.011358274146914],[-0.052072111517191,-0.056174792349339,-0.024119710549712],[0.036380648612976,-0.035405196249485,0.16142618656158]]],[[[0.02415350265801,-0.021667283028364,-0.0025883193593472],[-0.023547617718577,0.030804188922048,0.0052515980787575],[0.0023424448445439,-0.011398816481233,-0.0068765529431403]]],[[[0.013367978855968,0.054771151393652,-0.088157489895821],[-0.062158178538084,0.026363156735897,-0.0028129501733929],[0.067042358219624,0.016135955229402,-0.017508944496512]]],[[[-0.015380336903036,0.013226700015366,-0.0022526532411575],[0.21472914516926,-0.18671102821827,-0.0082962047308683],[0.15464971959591,-0.18130087852478,0.0064040920697153]]],[[[0.022678345441818,-0.13393470644951,0.110047288239],[-0.090421341359615,-0.081317372620106,-0.016643557697535],[-3.8839880289743e-05,0.095102958381176,0.094289094209671]]],[[[-0.014621589332819,-0.096882492303848,-0.06190100684762],[-0.030023254454136,-0.12052262574434,-0.056640651077032],[0.0014213648391888,0.0070757679641247,-0.067551165819168]]],[[[0.029991453513503,0.083336390554905,-0.1568292081356],[0.057529184967279,0.039771430194378,-0.030057929456234],[-0.0055201714858413,-0.011412210762501,-0.0019596216734499]]],[[[-0.0012628188123927,-0.025462843477726,0.017543729394674],[-0.0090248547494411,-0.013478326611221,-0.10182315856218],[-0.05071709677577,0.15121284127235,0.032504301518202]]],[[[0.13398376107216,0.071720711886883,-0.003142527770251],[-0.051550403237343,0.026052311062813,-0.15836364030838],[-0.00067586684599519,0.025874463841319,-0.046671573072672]]]],"nOutputPlane":32,"kW":3,"kH":3,"bias":[-0.0062757870182395,-0.016833353787661,-0.032047137618065,-0.010524915531278,-0.065466277301311,0.045012503862381,0.015970313921571,-0.01250038575381,-0.0054268250241876,-0.068715788424015,-0.010761457495391,-0.0063506853766739,-0.091411486268044,-0.0040450585074723,0.0046170689165592,-0.0074411304667592,0.029893616214395,-0.007930682040751,0.033151175826788,-0.0072863432578743,-0.045242447406054,-0.035132441669703,-0.11946002393961,-0.0050082602538168,-0.008012292906642,-0.019822647795081,-0.0087625747546554,0.018337551504374,0.053679529577494,0.0032701934687793,-0.015723254531622,-0.0061082425527275],"nInputPlane":1},{"weight":[[[[0.053702257573605,0.14440612494946,-0.046290442347527],[-0.068093486130238,0.0048292609862983,0.076489880681038],[0.081238985061646,-0.03095537237823,0.033253755420446]],[[-0.00041858674376272,-0.21202154457569,0.087565369904041],[-0.045868024230003,0.0071628033183515,-0.11375752091408],[0.050902992486954,-0.093261010944843,-0.023127172142267]],[[0.061064776033163,0.050562046468258,-0.010818547569215],[-0.010522090829909,-0.025966819375753,0.060190550982952],[-0.041034247726202,-0.031853001564741,-0.038690838962793]],[[-0.050070054829121,-0.015658965334296,0.086265690624714],[-0.0045500406995416,-0.099796526134014,-0.0028983436059207],[-0.049260064959526,0.018180627375841,-0.044322401285172]],[[-0.01864935643971,-0.039296224713326,0.019330240786076],[0.014743600040674,0.016375934705138,-0.12028431147337],[-0.0095001487061381,-0.091491162776947,0.15061047673225]],[[-0.003822596045211,-0.14063477516174,-0.16872185468674],[0.0070645925588906,0.14336431026459,-0.036964368075132],[-0.026726502925158,0.078854769468307,0.019502462819219]],[[-0.030266596004367,0.078931823372841,-0.1690549403429],[-0.02180896513164,0.28190088272095,0.019310798496008],[0.016119176521897,0.070139907300472,0.075553350150585]],[[-0.069418132305145,0.013735245913267,0.031420134007931],[0.031989119946957,0.090091414749622,0.055730201303959],[0.0074480040930212,-0.077351927757263,-0.23445020616055]],[[0.011215079575777,-0.023107562214136,-0.0090603400021791],[-0.03183676674962,-0.18091826140881,-0.13959108293056],[0.059451911598444,0.095245353877544,0.016944766044617]],[[0.12749017775059,0.043143633753061,0.084004811942577],[-0.14739121496677,0.076428234577179,0.056312099099159],[-0.13583138585091,-0.063200183212757,-0.010450660251081]],[[0.011258550919592,-0.10731072723866,0.0093221617862582],[0.035708975046873,0.017615562304854,0.070240639150143],[-0.060765147209167,0.031345520168543,0.032884877175093]],[[0.011466431431472,-0.082900412380695,-0.050853289663792],[0.10135446488857,-0.075209125876427,-0.10209836810827],[0.088299632072449,-0.03303262591362,0.053262125700712]],[[0.05560927093029,-0.082157261669636,-0.015296241268516],[0.013563804328442,0.043685294687748,-0.044811457395554],[-0.0062550739385188,-0.12595970928669,0.13251988589764]],[[0.11922779679298,0.16654996573925,-0.046278581023216],[0.074874974787235,-0.069590926170349,-0.051729876548052],[-0.10492930561304,-0.028014773502946,0.062648884952068]],[[-0.013140349648893,-0.09910673648119,-0.037714060395956],[0.05294505879283,-0.067276790738106,-0.083593040704727],[0.075705654919147,0.0030031870119274,-0.086355097591877]],[[-0.066145859658718,-0.061093874275684,0.049117039889097],[-0.063255898654461,0.0080125415697694,-0.13610917329788],[0.016843186691403,0.018687529489398,0.086578443646431]],[[-0.04145971685648,0.023482324555516,-0.051742780953646],[0.014658771455288,0.051718816161156,-0.040108576416969],[0.020338384434581,0.1217348575592,-0.23693400621414]],[[-0.02784950658679,-0.077936172485352,-0.061241995543242],[-0.034352831542492,0.0736253708601,0.021132837980986],[0.025011874735355,0.035913575440645,-0.17466987669468]],[[-0.019109584391117,0.1099843159318,-0.17811785638332],[0.084924317896366,0.0887361317873,0.26935496926308],[0.06302373111248,0.092296034097672,-0.070987679064274]],[[0.029453780502081,0.017451686784625,-0.07907123118639],[-0.079193212091923,-0.017145333811641,-0.35123404860497],[-0.073643445968628,0.034315276890993,0.017255634069443]],[[-0.13115760684013,0.075910992920399,0.096219420433044],[0.076361693441868,-0.094566859304905,0.011558446101844],[0.017795898020267,-0.052414622157812,-0.024996016174555]],[[0.022212693467736,0.060108661651611,0.022290486842394],[0.015839733183384,-0.088760793209076,-0.066206023097038],[0.083107590675354,0.12000172585249,-0.11972424387932]],[[0.028220146894455,-0.030955860391259,-0.0075807822868228],[-0.040754612535238,0.0033301743678749,0.093067824840546],[-0.12145581841469,-0.091040827333927,-0.038033675402403]],[[0.09247861802578,0.11120995134115,0.052451658993959],[-0.1379332691431,0.079330928623676,-0.010425542481244],[-0.079267904162407,-0.0033330018632114,-0.053186986595392]],[[0.062254548072815,0.13502866029739,-9.6560461315676e-06],[-0.042590506374836,0.061218064278364,-0.026546193286777],[-0.084781311452389,-0.09706124663353,0.048377975821495]],[[0.073186308145523,0.031176529824734,0.12097599357367],[0.099857367575169,0.018740871921182,-0.14898878335953],[-0.090261340141296,0.046546641737223,0.087060652673244]],[[-0.067178092896938,-0.15445363521576,0.1542451530695],[0.034032490104437,0.11199386417866,-0.029591018334031],[0.029871368780732,0.095241419970989,-0.047457963228226]],[[-0.02363334223628,-0.021445069462061,0.02070739865303],[-0.042685136198997,-0.074911527335644,-0.082497708499432],[0.049644391983747,0.12011835724115,-0.0089452369138598]],[[0.036579292267561,-0.0960688367486,-0.06078752502799],[0.07529678940773,-0.037452064454556,-0.13826410472393],[0.0035490305162966,0.1154477968812,0.031512781977654]],[[-0.012650000862777,0.10668600350618,0.047213613986969],[0.030496256425977,-0.12968571484089,0.13253669440746],[-0.10710181295872,0.054615780711174,-0.068995371460915]],[[0.14860017597675,0.10264283418655,-0.020089359954],[-0.11031942814589,-0.042363803833723,0.060371495783329],[-0.046290639787912,-0.11475213617086,0.080126784741879]],[[-0.018519353121519,-0.025674281641841,-0.0058521241880953],[-0.10932360589504,-0.035021252930164,-0.0075502246618271],[-0.0027681167703122,0.084904544055462,0.056288912892342]]],[[[-0.21111880242825,-0.019201574847102,-0.0012075921986252],[0.0028703699354082,-0.027324177324772,-0.068990983068943],[0.1373860090971,0.18804961442947,-0.063887812197208]],[[-0.018591908738017,0.10143092274666,0.058607574552298],[0.018866701051593,-0.00045608973596245,-0.051582489162683],[0.01718769595027,-0.063842289149761,-0.13645806908607]],[[-0.10328754037619,0.10941293090582,0.026256173849106],[0.085635162889957,0.071194238960743,0.0156259983778],[0.012444992549717,-0.095490962266922,-0.093523196876049]],[[-0.031996633857489,-0.028022611513734,0.013554720208049],[0.011675723828375,0.25808727741241,-0.029962422326207],[-0.23584730923176,-0.05081770196557,-0.017502961680293]],[[0.073450893163681,-0.11369746178389,-0.20026232302189],[-0.053438935428858,0.040015798062086,-0.088188990950584],[-0.034980557858944,-0.022079793736339,0.027498196810484]],[[0.039388064295053,0.095711894333363,0.11397074908018],[0.089088827371597,0.16324202716351,0.10442911833525],[-0.014426111243665,0.14359393715858,0.13822653889656]],[[0.030974084511399,0.12678597867489,-0.052444700151682],[0.028273705393076,-0.10241552442312,0.12344753742218],[-0.060830883681774,-0.045702110975981,-0.048394180834293]],[[0.16279965639114,-0.13827858865261,-0.1080831438303],[-0.067162811756134,-0.0303760394454,-0.0071624740958214],[0.0030869108159095,0.10446780920029,0.067978262901306]],[[-0.080100253224373,0.12636168301105,0.00042116199620068],[0.0059738480485976,-0.030527813360095,0.23303154110909],[0.03619821369648,-0.06262918561697,-0.15437729656696]],[[-0.21795627474785,-0.048261430114508,0.072411730885506],[-0.22055926918983,-0.15493682026863,-0.2087454199791],[-0.094540968537331,-0.15431813895702,0.11478351056576]],[[-0.039804574102163,-0.040199980139732,0.10932786762714],[0.080737471580505,0.014533442445099,-0.20363013446331],[-0.064316861331463,0.15237493813038,-0.098883286118507]],[[-0.012557586655021,0.024597898125648,0.10267408192158],[-0.035030916333199,0.025807593017817,-0.08838352560997],[0.031149936839938,0.058068092912436,-0.086424306035042]],[[-0.033602010458708,-0.014936360530555,-0.019010221585631],[-0.05048018693924,0.11090000718832,-0.21699190139771],[0.027022894471884,0.032309200614691,-0.064894996583462]],[[0.15850129723549,-0.021255576983094,-0.22871761023998],[-0.068320192396641,0.094327531754971,0.043829172849655],[-0.010271624661982,0.068273395299911,-0.031565830111504]],[[0.041134811937809,-0.034815069288015,0.037898804992437],[-0.084671579301357,0.057622030377388,-0.025522047653794],[-0.024645395576954,0.053150549530983,-0.023376734927297]],[[0.033716216683388,0.074904456734657,0.01938958466053],[-0.067937709391117,-0.1097392141819,0.099473655223846],[0.038005229085684,-0.022070355713367,-0.062804721295834]],[[0.14013542234898,0.022796876728535,0.11061204224825],[0.081843212246895,0.16164870560169,0.020421545952559],[0.10660140216351,0.17000731825829,0.1045433357358]],[[0.034177545458078,0.018231865018606,-0.03016253747046],[0.08045868575573,-0.14612989127636,-0.052486836910248],[-0.088408827781677,0.11723208427429,0.051861930638552]],[[-0.040426108986139,0.16992503404617,0.23997513949871],[0.014555225148797,-0.0089360512793064,0.041041377931833],[0.01673979125917,0.040938500314951,0.0087521830573678]],[[-0.05845195800066,-0.16550029814243,-0.014081285335124],[0.059289038181305,-0.11065159738064,0.060309343039989],[-0.076137460768223,0.025826320052147,0.049203339964151]],[[0.02387853525579,0.038667492568493,-0.083495765924454],[0.059744849801064,-0.0097226500511169,0.046862967312336],[0.03391033783555,-0.13014334440231,-0.0018066670745611]],[[-0.058541916310787,0.051956281065941,-0.013032741844654],[-0.055798709392548,-0.00062745588365942,-0.051451310515404],[-0.0018708184361458,0.076884724199772,0.040007263422012]],[[-0.098769165575504,-0.0052763898856938,0.012511210516095],[-0.093727350234985,0.078725025057793,-0.1173053830862],[0.027521256357431,-0.0875099375844,-0.06244682893157]],[[-0.09208307415247,0.032991636544466,-0.10560473799706],[0.058766536414623,0.0017468783771619,0.042576774954796],[-0.10485351085663,0.089013487100601,-0.029508460313082]],[[0.048070766031742,-0.012006733566523,-0.01919062808156],[-0.10833648592234,-0.014882734045386,0.13630998134613],[0.015976076945662,0.0029999536927789,-0.041981395334005]],[[-0.032554440200329,0.030483411625028,-0.010139293037355],[0.051284082233906,0.02820104546845,0.023042613640428],[0.076706975698471,-0.11213330924511,-0.026947144418955]],[[0.025820488110185,0.1606320142746,-0.027060452848673],[-0.042010080069304,0.018121691420674,-0.016461161896586],[0.034056659787893,-0.036947909742594,0.028723996132612]],[[-0.039055734872818,-0.040419731289148,-0.018961604684591],[-0.040920618921518,-0.022987872362137,0.12228982150555],[-0.018990097567439,0.031174622476101,0.035607203841209]],[[0.11534179747105,0.063564524054527,0.045798059552908],[0.19875334203243,0.059065837413073,0.036219105124474],[0.13123446702957,0.3367979824543,0.25577196478844]],[[-0.017107607796788,-0.084945425391197,0.05040967091918],[0.02580445073545,-0.043939374387264,0.0022932549472898],[0.13486610352993,-0.036483611911535,0.00019660129328258]],[[-0.026220435276628,-0.19290652871132,0.13322547078133],[0.13814528286457,0.089889965951443,-0.028987118974328],[-0.044936951249838,-0.0038634929805994,-0.072611838579178]],[[0.025414193049073,-0.016635032370687,-0.04975775256753],[0.16323831677437,0.0475860722363,0.076471194624901],[-2.1552228645305e-05,-0.068376943469048,-0.084096536040306]]],[[[0.070461004972458,0.00747777428478,-0.094140194356441],[0.072256803512573,0.049599226564169,-0.049402572214603],[0.018357131630182,-0.10170252621174,0.0009885182371363]],[[-0.097163058817387,0.018066277727485,0.038560345768929],[0.0024195518344641,-0.13242021203041,0.13753728568554],[-0.044143252074718,-0.002495228080079,0.078225523233414]],[[-0.052310016006231,0.07257516682148,-0.0079403202980757],[0.055705990642309,0.011389104649425,-0.014931100420654],[-0.25325164198875,-0.10952460020781,0.1294174939394]],[[-0.085253849625587,0.10158970952034,0.053146742284298],[-0.020468425005674,0.15833550691605,0.081368871033192],[-0.27109783887863,-0.16305270791054,0.14068457484245]],[[0.10708320885897,-0.0256382599473,0.10259607434273],[-0.30471184849739,0.10322521626949,-0.051377333700657],[-0.0024189618416131,-0.02225337177515,0.10071215778589]],[[0.033727634698153,-0.063066974282265,0.093226529657841],[0.12973745167255,-0.061643086373806,-0.027116749435663],[0.0029055301565677,0.0261056330055,-0.14606781303883]],[[0.077767252922058,-0.10465953499079,-0.19808994233608],[-0.18153481185436,-0.0975506529212,0.074341900646687],[-0.012354519218206,0.0076559847220778,-0.18328692018986]],[[-0.050939403474331,0.078699462115765,-0.099370732903481],[-0.094739459455013,0.099949389696121,-0.059934720396996],[0.084166042506695,0.10027031600475,-0.12265129387379]],[[-0.11525039374828,0.2712709903717,0.10520764440298],[0.084244564175606,-0.014211812987924,0.23079231381416],[-0.16168130934238,0.11724095791578,0.19208545982838]],[[0.042041823267937,0.032207664102316,-0.03094893693924],[0.096814565360546,-0.092217393219471,-0.18854637444019],[0.03224915266037,0.11405126005411,0.00038500808295794]],[[-0.081001363694668,0.080480195581913,0.0071424916386604],[-0.057791024446487,-0.068957671523094,0.031861089169979],[-0.015150104649365,0.02554901689291,-0.011541473679245]],[[-0.018216086551547,0.18035607039928,-0.040917716920376],[-0.094466015696526,0.085870109498501,-0.009235143661499],[-0.076783679425716,-0.019259320572019,-0.052117884159088]],[[-0.16993939876556,0.23494680225849,-0.31528395414352],[-0.03061524964869,-0.1476059705019,0.024097023531795],[-0.068100117146969,-0.054812014102936,0.11022409051657]],[[-0.028310453519225,0.18304312229156,0.039410062134266],[-0.091525211930275,-0.034372128546238,-0.13051252067089],[0.047263529151678,-0.044675949960947,-0.051111869513988]],[[0.08220724016428,-0.028499022126198,-0.22314015030861],[-0.14277562499046,0.08501847833395,0.22232031822205],[0.083753816783428,-0.22374302148819,-0.040896847844124]],[[0.073113396763802,0.0012609352124855,-0.026623548939824],[0.027312887832522,-0.15986543893814,-0.1027470305562],[-0.010111324489117,-0.15288913249969,0.19362942874432]],[[-0.042358629405499,-0.022196147590876,0.00097857438959181],[0.16870205104351,0.032988309860229,0.024048756808043],[-0.11899833381176,-0.02168189547956,-0.028024701401591]],[[0.01415016874671,0.10070348531008,0.015881430357695],[-0.19120560586452,-0.2843020260334,-0.10700237005949],[-0.17786125838757,-0.059116072952747,-0.016952250152826]],[[-0.077061489224434,-0.14538861811161,0.076011188328266],[-0.074023365974426,0.004764405079186,-0.049159359186888],[-0.068173013627529,0.074183419346809,-0.15442299842834]],[[0.0056603262200952,0.23447546362877,-0.035954814404249],[-0.058966819196939,-0.0684514939785,-0.22469474375248],[-0.036328170448542,-0.1000239700079,-0.24493008852005]],[[-0.043461382389069,-0.059579815715551,-0.03028723038733],[-0.012878817506135,0.14583258330822,-0.010348811745644],[-0.15588970482349,0.14951571822166,0.035988751798868]],[[0.018541118130088,-0.070688046514988,-0.061140596866608],[0.14898458123207,-0.035542536526918,0.028741337358952],[0.015382407233119,0.23111797869205,-0.15279117226601]],[[-0.098148681223392,-0.11647016555071,-0.16609871387482],[0.046103116124868,-0.094047285616398,0.035943705588579],[0.054881427437067,0.0029397381003946,0.15297345817089]],[[-0.072992324829102,-0.16823482513428,0.10345964878798],[0.097480364143848,-0.16536523401737,0.076803117990494],[-0.12571494281292,0.14421708881855,-0.22900199890137]],[[-0.15179792046547,0.09921620041132,0.047648463398218],[-0.052929442375898,-0.1103044077754,0.18682320415974],[-0.20251193642616,0.13899283111095,0.187829002738]],[[-0.18220935761929,0.0059062717482448,0.02751737087965],[0.030036399140954,-0.21882861852646,-0.072398968040943],[-0.075810730457306,0.0021602823399007,-0.15268830955029]],[[-0.014561155810952,-0.19427265226841,-0.084036082029343],[0.13602651655674,-0.23924250900745,-0.072544321417809],[-0.1223399490118,-0.092378549277782,-0.0059849247336388]],[[-0.28598794341087,0.13447369635105,-0.10344582796097],[-0.13777530193329,0.0062287580221891,-0.13586214184761],[-0.057437036186457,-0.056636840105057,0.25652015209198]],[[0.045029256492853,-0.010255376808345,-0.054107312113047],[-0.051840227097273,0.1872626543045,0.012626207433641],[0.1127716973424,-0.035589307546616,0.11592037975788]],[[0.086667090654373,-0.22050358355045,0.0088738454505801],[0.079623818397522,-0.09775397926569,0.071815863251686],[-0.17182548344135,-0.012501268647611,-0.17698876559734]],[[-0.0175292622298,-0.099204510450363,0.0082684913650155],[-0.20198698341846,0.014617180451751,0.080049097537994],[-0.020895464345813,-0.25703591108322,-0.060607548803091]],[[-0.0014852962922305,-0.045103948563337,-0.090784586966038],[-0.074947483837605,-0.028045503422618,-0.23149318993092],[0.14287286996841,-0.11156488955021,-0.018672777339816]]],[[[0.0034965230152011,-0.036654282361269,0.062710046768188],[-0.071187503635883,-0.39172500371933,-0.072756811976433],[-0.090024597942829,-0.036435704678297,-0.045542020350695]],[[-0.091710478067398,0.028980638831854,0.051419701427221],[0.05195652320981,-0.19387385249138,0.056210231035948],[-0.13196650147438,0.012290693819523,0.13362681865692]],[[0.028222195804119,0.072319857776165,0.02240514755249],[-0.050804369151592,-0.063872821629047,-0.13732312619686],[-0.032743141055107,-0.10776176303625,0.19205757975578]],[[0.081328719854355,0.089411035180092,0.037207525223494],[0.053963001817465,-0.30140376091003,0.20045602321625],[0.03331021592021,-0.19628700613976,0.030692489817739]],[[-0.083560891449451,0.050842978060246,0.066715955734253],[-0.040271386504173,-0.0068424390628934,0.08712637424469],[0.044896401464939,0.015169350430369,0.019166326150298]],[[0.094399243593216,-0.096980206668377,-0.055528577417135],[-0.14169535040855,0.043262224644423,-0.10127758234739],[0.18106359243393,-0.17317089438438,0.17488990724087]],[[0.02125839702785,-0.01469315867871,-0.015720745548606],[-0.20364458858967,-0.20709012448788,-0.0014837373746559],[0.12408138811588,0.089738875627518,0.091197185218334]],[[-0.0036937452387065,0.049573723226786,-0.028554519638419],[-0.1302485615015,-0.079460762441158,-0.042421959340572],[-0.041235484182835,-0.26991629600525,-0.07811314612627]],[[0.097271256148815,-0.13882192969322,-0.01905557140708],[-0.015343194827437,-0.023343468084931,-0.23786389827728],[0.037238486111164,-0.033209655433893,0.017554737627506]],[[0.050873663276434,-0.027669742703438,-0.020818449556828],[0.10650166124105,-0.079880833625793,0.055093213915825],[-0.083225138485432,-0.072392649948597,-0.097662918269634]],[[0.086486741900444,-0.15011118352413,-0.012198504991829],[-0.047423865646124,-0.058002185076475,0.057954858988523],[0.20328529179096,-0.0087461192160845,-0.12455806881189]],[[0.13920494914055,0.0059766033664346,-0.0024831367190927],[-0.17201478779316,-0.1458448022604,0.063344426453114],[0.020224753767252,-0.031965412199497,-0.033461458981037]],[[0.047848250716925,0.10346299409866,-0.12355580180883],[-0.090633846819401,0.013822429813445,0.0338887386024],[0.0040481328032911,-0.27671790122986,0.02331268787384]],[[-0.1003732830286,-0.081232525408268,0.051084086298943],[-0.06402675062418,-0.01467393245548,-0.070554479956627],[0.047016631811857,0.054931584745646,0.045937303453684]],[[-0.019634883850813,0.067928232252598,-0.039393052458763],[0.068473033607006,-0.067013822495937,-0.24728465080261],[-0.048071447759867,0.034633744508028,0.17196674644947]],[[-0.10091563314199,-0.063936017453671,-0.092998348176479],[-0.016026748344302,0.02225355245173,0.021757882088423],[0.29716446995735,-0.027252890169621,0.00032078239019029]],[[0.024201763793826,0.071166068315506,-0.069349221885204],[-0.13512814044952,-0.031825203448534,-0.10841055959463],[0.14362046122551,-0.13829199969769,-0.060188010334969]],[[0.02291352301836,-0.043563593178988,0.011182989925146],[-0.17197051644325,0.011210376396775,-0.021170131862164],[0.044622354209423,-0.15450286865234,-0.13192240893841]],[[0.11363143473864,0.046530809253454,-0.26777479052544],[-0.10409428179264,-0.11166112869978,0.050709091126919],[-0.045974623411894,0.039327081292868,-0.079979613423347]],[[0.024544043466449,0.051577486097813,-0.1441446095705],[0.041251618415117,-0.010435595177114,-0.15815816819668],[-0.069978505373001,-0.011779132299125,-0.085597790777683]],[[0.017344892024994,0.015725007280707,0.053712125867605],[0.13893119990826,-0.03233864530921,0.028193719685078],[-0.014832536689937,-0.054863154888153,-0.18850047886372]],[[-0.0049419268034399,-0.1726720482111,0.10987021774054],[-0.063991948962212,0.080403782427311,-0.050485245883465],[0.1970072388649,0.068631999194622,-0.038129530847073]],[[-0.049344353377819,0.017753472551703,-0.023813314735889],[0.0069002127274871,-0.15068651735783,0.022110743448138],[0.060406718403101,-0.078086398541927,0.040726196020842]],[[-0.049106556922197,-0.13151583075523,0.022225955501199],[-0.12888446450233,-0.22511728107929,-0.074897170066833],[-0.013092041015625,0.075545348227024,-0.033849466592073]],[[-0.034058190882206,0.035639207810163,0.1204901188612],[0.11167114973068,-0.14547477662563,-0.12847098708153],[-0.071863010525703,0.10479939728975,0.040664218366146]],[[0.057251591235399,-0.050431948155165,0.055490836501122],[0.024798268452287,0.015062159858644,-0.24787528812885],[-0.05114683881402,0.047476585954428,0.039747174829245]],[[0.011842027306557,-0.29921147227287,0.065947905182838],[-0.0053443098440766,-0.17002348601818,-0.14082379639149],[-0.0098517015576363,0.013060874305665,-0.18193438649178]],[[-0.035430073738098,0.040214970707893,0.10295760631561],[0.046872816979885,-0.22417099773884,-0.18954491615295],[0.059769067913294,0.047409851104021,0.12129664421082]],[[-0.23394963145256,-0.042348276823759,-0.10919632762671],[-0.11985222250223,-0.14735481142998,0.091248050332069],[0.060191594064236,0.13744492828846,-0.062422018498182]],[[0.024748157709837,-0.065420150756836,0.076859571039677],[-0.0088349087163806,0.010549022816122,0.026926051825285],[-0.061610501259565,-0.17811833322048,-0.063916906714439]],[[-0.0015805811854079,0.013238179497421,0.063332661986351],[-0.015730427578092,-0.12258049100637,-0.15158738195896],[0.0032990218605846,-0.031831853091717,-0.056992724537849]],[[-0.074712932109833,-0.059144023805857,-0.013170326128602],[0.019694907590747,0.053964491933584,0.050093717873096],[0.008343162946403,-0.028842434287071,0.052146643400192]]],[[[0.03946990147233,-0.035108387470245,-0.1097127571702],[-0.084732487797737,0.079130850732327,0.021685345098376],[0.051076486706734,-0.043808739632368,0.033203173428774]],[[-0.034421510994434,0.084011971950531,-0.064387984573841],[-0.011494773440063,0.076536953449249,-0.062722206115723],[-0.013461750000715,-0.00076116365380585,0.13084316253662]],[[0.12313594669104,-0.099499769508839,0.07442793995142],[0.012860467657447,0.010083608329296,0.043127782642841],[-0.03199202939868,0.060018166899681,-0.076621122658253]],[[0.099600970745087,0.061774637550116,-0.021514127030969],[0.062610305845737,0.086551234126091,0.034364093095064],[-0.052855245769024,-0.014669668860734,0.025947950780392]],[[0.092443041503429,0.036279104650021,-0.017436441034079],[0.042782299220562,-0.0010101635707542,-0.082797445356846],[-0.10531065613031,-0.056229345500469,0.026183014735579]],[[0.14023996889591,-0.10540544986725,-0.093599207699299],[0.005318314768374,-0.0078573226928711,0.073087930679321],[0.11166702955961,0.045569859445095,0.10942243784666]],[[-0.027829809114337,-0.1599412560463,-0.14343696832657],[0.10083723068237,-0.025347808375955,0.017105154693127],[-0.1436113268137,0.0043164929375052,0.090792275965214]],[[-0.10509071499109,0.037342134863138,0.024403451010585],[0.15319134294987,-0.0077649601735175,0.045262489467859],[-0.18688000738621,-0.021483011543751,0.17081695795059]],[[0.001070435740985,-0.10011976212263,-0.13826690614223],[-0.085359022021294,-0.073083959519863,-0.085532896220684],[0.05816001817584,0.017820822075009,-0.11634620279074]],[[-0.018540946766734,0.031446557492018,0.033815581351519],[-0.018336679786444,0.16047635674477,-0.10091143846512],[0.029103985056281,-0.15749205648899,-0.23656129837036]],[[0.055953044444323,0.1160558834672,-0.21332916617393],[0.079701028764248,0.15811529755592,0.057861473411322],[-0.12152966111898,0.018664499744773,-0.0049214563332498]],[[-0.048984497785568,0.030839705839753,0.088151149451733],[0.094731286168098,0.012333278544247,-0.15951529145241],[0.021124746650457,-0.16300831735134,0.071779176592827]],[[-0.047812320291996,-0.055114399641752,-0.055547967553139],[0.088174693286419,0.097586758434772,0.077702715992928],[-0.050869010388851,-0.007925434038043,0.034726336598396]],[[-0.16162221133709,0.034175932407379,0.006156271789223],[0.10052496194839,0.17958581447601,0.048579663038254],[-0.10094828903675,-0.035602185875177,-0.11479779332876]],[[0.046739038079977,-0.13110050559044,0.019112514331937],[0.023519182577729,0.12434773147106,-0.040504407137632],[-0.053720947355032,-0.010840049944818,0.13378213346004]],[[-0.022763038054109,-0.024072054773569,0.059453085064888],[-0.066744051873684,-0.10619094222784,-0.11018193513155],[0.020238382741809,0.058271214365959,0.041290368884802]],[[0.082315057516098,-0.013039756566286,-0.053549017757177],[0.13083785772324,0.048586566001177,0.099735461175442],[0.059260785579681,-0.035175126045942,-0.032983902841806]],[[-0.040540430694818,0.11983150243759,-0.22798632085323],[-0.1396097689867,-0.048139687627554,0.022120334208012],[-0.0081704771146178,-0.050108265131712,0.09734645485878]],[[-0.11466193944216,0.074241176247597,-0.013329124078155],[0.12201828509569,0.091413423418999,-0.1955014616251],[0.0387232452631,-0.19108115136623,-0.0060832058079541]],[[0.081555262207985,0.044577658176422,0.16435407102108],[-0.0047687143087387,-0.0025498662143946,0.1015797406435],[-0.043425288051367,-0.080892615020275,0.11105805635452]],[[-0.059858419001102,0.074184589087963,0.069655239582062],[-0.064201630651951,-0.0060817338526249,0.01349685434252],[0.078117169439793,0.11656567454338,0.09648759663105]],[[0.075411595404148,-0.0064633362926543,0.019652489572763],[0.091829903423786,0.075233303010464,0.10895566642284],[0.12097924202681,0.063969686627388,-0.043368354439735]],[[0.16227993369102,0.033112764358521,0.069995507597923],[0.27313339710236,-0.026880271732807,-0.066857792437077],[0.23736706376076,0.11577702313662,0.053366970270872]],[[-0.040435157716274,0.022900665178895,-0.027379307895899],[0.033185102045536,-0.082608558237553,0.12893478572369],[-0.055584155023098,0.13980154693127,0.084756217896938]],[[-0.054918758571148,0.010684964247048,-0.002331908326596],[-0.080307677388191,0.029509192332625,-0.15058460831642],[0.014212850481272,0.0065422081388533,0.034395810216665]],[[0.0022278258111328,-0.0089537994936109,0.0018196684541181],[0.0048349848948419,0.072501137852669,0.041344575583935],[0.055441305041313,0.049036249518394,-0.19841277599335]],[[-0.12419322878122,-0.030194018036127,-0.17302271723747],[0.027374403551221,-0.0082708448171616,-0.02854841388762],[-0.00042113129165955,0.081580311059952,-0.1797204464674]],[[-0.056299567222595,-0.10768286883831,0.11319952458143],[-0.014663763344288,-0.054402403533459,-0.14608056843281],[0.13016517460346,-0.066514328122139,0.010303934104741]],[[0.12468284368515,0.036976125091314,0.078401893377304],[0.0085958130657673,0.10799825191498,0.09813267737627],[-0.0066215386614203,-0.036355648189783,0.14609451591969]],[[-0.0099940290674567,-0.0056147235445678,-0.053249388933182],[-0.03463488817215,0.10330079495907,0.030280692502856],[-0.17972473800182,-0.05039195343852,-0.10315327346325]],[[0.019695026800036,-0.092122256755829,-0.0077571617439389],[0.041871532797813,0.16317497193813,-0.014437048695982],[-0.096084229648113,-0.014319694600999,0.04218727722764]],[[0.095327854156494,-0.18528658151627,0.10018578916788],[-0.0076789795421064,-0.067129530012608,-0.034615378826857],[0.048105344176292,-0.099177911877632,-0.13802662491798]]],[[[-0.052760872989893,-0.2846183180809,0.13164573907852],[-0.09104335308075,-0.31069314479828,-0.1520319879055],[-0.016765281558037,-0.037599250674248,-0.030424501746893]],[[-0.061758629977703,0.15137289464474,-0.062045499682426],[0.086550980806351,0.007300871424377,0.060638282448053],[-0.012834755703807,0.024439385160804,-0.020359167829156]],[[0.012847265228629,-0.094426594674587,-0.030883729457855],[-0.18214693665504,0.067782573401928,0.04339224845171],[0.00028062393539585,0.016351547092199,0.0094564259052277]],[[0.20843087136745,-0.088271014392376,-0.24162673950195],[0.24743354320526,-0.097546070814133,-0.19333474338055],[0.11940924823284,0.14826259016991,-0.016304433345795]],[[-0.042473040521145,0.06061701849103,0.050591628998518],[0.057333342730999,-0.0082610724493861,-0.046120826154947],[0.01349616702646,0.19425711035728,-0.075548470020294]],[[-0.15285661816597,0.052428729832172,0.094283245503902],[-0.073949009180069,-0.026299783959985,0.087962426245213],[0.058369103819132,-0.037610061466694,0.10879009217024]],[[-0.32930088043213,-0.076727278530598,0.24845176935196],[0.0564044713974,-0.4216682612896,0.1302540153265],[0.13428646326065,-0.25571089982986,-0.01484146900475]],[[-0.0098176086321473,-0.21637155115604,-0.02656539157033],[0.13249397277832,-0.2473618388176,-0.2383611947298],[0.1694208830595,-0.33278396725655,-0.15313641726971]],[[-0.040652666240931,-0.070169284939766,-0.15307089686394],[-0.067911997437477,0.27428951859474,0.12992678582668],[0.083350248634815,0.031299717724323,-0.073155149817467]],[[-0.046010177582502,-0.17844022810459,0.10623580217361],[-0.14740480482578,0.064346812665462,0.093299545347691],[0.064463689923286,-0.10953039675951,0.018427737057209]],[[0.048672243952751,0.00055136298760772,0.10367276519537],[0.14364401996136,-0.13491617143154,-0.050924576818943],[0.063805140554905,0.055786296725273,-0.35243850946426]],[[-0.085739031434059,-0.056759029626846,0.16609121859074],[-0.042052373290062,0.1781297326088,-0.002572026103735],[-0.099037349224091,0.091169908642769,-0.17799270153046]],[[0.10477919876575,0.066425211727619,-0.029522592201829],[-0.063416823744774,0.13944570720196,-0.11268202960491],[-0.048631437122822,0.10893343389034,-0.15275321900845]],[[-0.12986125051975,0.021021641790867,0.074565656483173],[-0.020887762308121,0.075422935187817,0.12469633668661],[0.12102808058262,-0.031532268971205,-0.0069689843803644]],[[-0.084990814328194,0.28212410211563,0.038507390767336],[-0.11158292740583,-0.039412807673216,0.0097382701933384],[-0.0050196279771626,-0.20784056186676,-0.15820808708668]],[[0.097951464354992,0.13583183288574,0.033630207180977],[-0.035128086805344,-0.1179102435708,0.11259875446558],[0.043243493884802,-0.078630641102791,-0.14881630241871]],[[0.18125608563423,-0.046068955212831,0.1290582716465],[-0.12197469174862,-0.083049669861794,-0.089551389217377],[0.072801284492016,-0.12540613114834,-0.070811927318573]],[[-0.074082106351852,0.050880204886198,-0.076591596007347],[-0.016482386738062,-0.1145982593298,-0.18715001642704],[0.024319920688868,-0.0030247918330133,-0.14699298143387]],[[-0.13600477576256,0.015349062159657,-0.14386151731014],[-0.017390510067344,-0.16744947433472,-0.0075482274405658],[-0.039873484522104,-0.036573830991983,-0.20095266401768]],[[0.050696182996035,-0.024643305689096,-0.11296669393778],[0.016971396282315,0.11421573162079,0.061175003647804],[-0.012293014675379,0.16546685993671,0.031923249363899]],[[0.024761701002717,-0.0018810256151482,-0.2559734582901],[0.15496079623699,-0.069068610668182,-0.081895843148232],[0.19054184854031,0.098466522991657,-0.037347704172134]],[[0.069700963795185,-0.13790839910507,0.16290955245495],[-0.0037771491333842,-0.16845054924488,-0.18988119065762],[0.36242717504501,0.0023664373438805,-0.22035571932793]],[[-0.029310604557395,0.024832721799612,-0.20071536302567],[0.17365725338459,-0.034536380320787,-0.13515278697014],[-0.04609527811408,-0.10745540261269,0.052560701966286]],[[-0.16456055641174,0.010476895608008,-0.1585565507412],[0.11715215444565,-0.0071953567676246,-0.044494926929474],[0.093753099441528,-0.01610098220408,0.030091840773821]],[[0.12144556641579,0.0067087416537106,-0.12172181904316],[0.02953002601862,0.066171258687973,-0.065004073083401],[0.19032138586044,-0.13732631504536,0.062584899365902]],[[0.070655487477779,-0.21110105514526,0.2263574898243],[-0.16485887765884,-0.0069792149588466,0.24381047487259],[-0.08496568351984,-0.17282466590405,0.1132008805871]],[[-0.073740169405937,0.1488169580698,-0.044984340667725],[-0.10373990237713,-0.25197279453278,0.012250360101461],[0.0037412999663502,-0.19659893214703,-0.0044401492923498]],[[-0.050849657505751,0.16659604012966,0.030452515929937],[-0.013848694041371,0.055826500058174,-0.1669527888298],[-0.24678291380405,-0.034732319414616,0.065327063202858]],[[0.08291457593441,0.078357756137848,-0.079522505402565],[0.20707546174526,-0.021303249523044,0.071914352476597],[-0.076747000217438,0.047420389950275,-0.069510564208031]],[[0.082305520772934,-0.17624939978123,-0.240488499403],[0.20648202300072,-0.1112492159009,0.054871961474419],[0.20808106660843,0.17357943952084,-0.016257869079709]],[[-0.18153791129589,0.093116208910942,0.068296484649181],[0.098248340189457,-0.0090929847210646,-0.042170524597168],[0.10345535725355,-0.15601627528667,-0.0073609766550362]],[[0.024628674611449,-0.02878956310451,-0.08890962600708],[-0.21513448655605,-0.046419203281403,-0.15189155936241],[-0.24998816847801,0.16615672409534,0.11529320478439]]],[[[0.083259910345078,-0.086823895573616,0.0032785646617413],[-0.18447472155094,-0.068275511264801,-0.048519149422646],[-0.081529200077057,0.014587623998523,0.028035035356879]],[[-0.15838241577148,-0.049307562410831,-0.031236911192536],[0.09127239137888,0.0049319821409881,-0.11796917766333],[-0.0367496535182,0.079552799463272,0.055455252528191]],[[0.18991138041019,-0.10805913805962,0.096963047981262],[-0.19195967912674,0.0093159750103951,-0.085568390786648],[0.091422691941261,-0.28805395960808,0.14462567865849]],[[-0.0092961536720395,0.038519218564034,-0.051113955676556],[0.023080993443727,0.069335497915745,-0.069201111793518],[-0.071209587156773,0.027809087187052,-0.04854679480195]],[[0.093663081526756,-0.081945806741714,-0.077700905501842],[-0.0036500724963844,-0.0064871860668063,0.072847820818424],[0.15772834420204,0.047160297632217,0.089124277234077]],[[-0.042206116020679,-0.035577673465014,-0.10289660841227],[-0.17989362776279,0.06503676623106,0.0060197943821549],[-0.078980512917042,0.040779914706945,0.08223132789135]],[[0.11225049942732,-0.094797283411026,0.028135491535068],[0.048899568617344,-0.056698594242334,-0.16109016537666],[0.14738644659519,0.049125045537949,-0.036884617060423]],[[-0.05915167927742,0.019249927252531,0.056856151670218],[0.029272917658091,0.087777487933636,0.021773243322968],[0.042176116257906,0.086797125637531,0.12617027759552]],[[0.030254226177931,-0.18641902506351,-0.014177949167788],[0.044639509171247,0.0466333553195,0.015562773682177],[0.020709106698632,-0.088399074971676,0.097322821617126]],[[-0.051463700830936,-0.042164713144302,0.091382689774036],[-0.20371232926846,-0.034106060862541,0.083921611309052],[-0.061844866722822,0.063048511743546,0.017636341974139]],[[-0.053383935242891,0.17290087044239,-0.072565153241158],[-0.31420543789864,0.07167586684227,0.0078750597313046],[0.040542926639318,-0.064856335520744,-0.11026395112276]],[[-0.023284176364541,0.024963159114122,-0.062956221401691],[-0.0039049102924764,0.1612645983696,-0.022834083065391],[0.16993026435375,0.022319413721561,0.080200798809528]],[[-0.0035883721429855,-0.14211031794548,0.043591693043709],[0.0030275695025921,0.057270266115665,-0.2042388767004],[0.10355535894632,-0.046221576631069,0.040550205856562]],[[-0.099979922175407,-0.023416427895427,0.097043573856354],[0.057498522102833,-0.024225106462836,0.11250125616789],[-0.0010597880464047,-0.0089013138785958,0.090008914470673]],[[0.019158923998475,-0.08837129175663,-0.0051835998892784],[0.019830528646708,0.053810052573681,0.0064938287250698],[-0.021413192152977,0.14350406825542,0.026018496602774]],[[-0.1836214363575,-0.11171653866768,-0.16854698956013],[0.089396171271801,-0.049156282097101,0.095069199800491],[0.14697279036045,0.11324517428875,0.084126777946949]],[[-0.12830664217472,-0.068432569503784,-0.044019680470228],[0.057235229760408,-0.025959363207221,0.083187572658062],[0.061239991337061,0.17061667144299,-0.095809422433376]],[[0.051320839673281,-0.1341310441494,0.018488828092813],[-0.16784471273422,-0.1141048297286,-0.10363901406527],[0.061638906598091,-0.025883445516229,0.047334067523479]],[[-0.071722395718098,0.15432651340961,-0.058053553104401],[0.071889758110046,-0.11449205875397,0.31627508997917],[0.010912392288446,0.092821158468723,-0.21039724349976]],[[0.087476849555969,-0.26458260416985,-0.063653253018856],[0.031733248382807,-0.0074826725758612,-0.16351591050625],[0.076970525085926,-0.1282976269722,-0.09820482134819]],[[0.15829083323479,-0.10141826421022,0.097667194902897],[-0.13040003180504,-0.01369303278625,-0.045138634741306],[-0.054907251149416,-0.26665034890175,-0.01302286516875]],[[-0.0012988072121516,0.13424524664879,0.0029224399477243],[0.0052341809496284,0.15370672941208,-0.0091261621564627],[-0.15032301843166,0.084102630615234,-0.012333666905761]],[[-0.14341326057911,0.039704035967588,0.031589772552252],[-0.20766219496727,-0.12130535393953,0.19349703192711],[-0.10622791200876,0.0051661883480847,-0.059885948896408]],[[0.025851843878627,-0.041037011891603,-0.035247817635536],[-0.21446207165718,-0.044110134243965,-0.13915768265724],[-0.073117025196552,-0.16957159340382,-0.0089600030332804]],[[-0.020213300362229,-0.1234952583909,0.0255754198879],[-0.18884314596653,-0.11231783032417,-0.29230836033821],[-0.15006840229034,-0.031639020889997,-0.071945443749428]],[[0.14163780212402,-0.060500789433718,0.1143167540431],[0.16439034044743,-0.12644298374653,-0.015216795727611],[-0.20336367189884,-0.023639073595405,0.1739332228899]],[[0.073031596839428,-0.05657421797514,0.017608938738704],[-0.12496384978294,0.12822410464287,-0.078412212431431],[-0.070665754377842,-0.0080506773665547,-0.049155402928591]],[[0.12189748138189,-0.012102252803743,-0.005893912166357],[0.083306051790714,-0.015697956085205,-0.12210832536221],[-0.053423743695021,0.069136410951614,0.0832639336586]],[[-0.083141811192036,0.10705249011517,-0.071156032383442],[-0.022296646609902,0.087807685136795,-0.094458490610123],[-0.028536897152662,0.043972704559565,-0.11393270641565]],[[-0.17760652303696,0.16910746693611,0.0081008579581976],[-0.031274884939194,-0.063713803887367,0.072738222777843],[-0.059999093413353,-0.059007026255131,0.049084316939116]],[[-0.045086201280355,-0.13984921574593,0.058038368821144],[0.028845647349954,0.0035894049797207,0.23191840946674],[-0.029398545622826,-0.093180797994137,-0.038666058331728]],[[-0.04356187954545,-0.0099883396178484,0.034991640597582],[-0.021210677921772,0.14472503960133,-0.014519169926643],[-0.06277122348547,0.12937022745609,0.084880515933037]]],[[[-0.025491768494248,-0.10907219350338,-0.029218161478639],[0.11879049241543,0.10259346663952,0.0093783549964428],[-0.13482488691807,-0.15749564766884,0.051726717501879]],[[-0.02410089969635,-0.0040106549859047,-0.012040833942592],[0.0099247694015503,-0.039579268544912,-0.078027993440628],[-0.15234561264515,0.083477221429348,0.048128258436918]],[[-0.017546420916915,0.022106351330876,-0.045799549669027],[-0.035604029893875,0.068261221051216,-0.06807279586792],[-0.022307453677058,-0.0064567639492452,0.061145111918449]],[[0.013953569345176,0.13850146532059,0.020795935764909],[-0.25628668069839,-0.33644220232964,0.044727586209774],[0.065522596240044,-0.273811429739,0.053158566355705]],[[0.064393572509289,-0.10248856246471,0.052408047020435],[0.11690458655357,0.016686802729964,0.042118299752474],[-0.11206002533436,0.11079916357994,0.14361746609211]],[[0.036638118326664,-0.078765615820885,0.078923657536507],[-0.04115179926157,-0.18196426331997,-0.077373556792736],[0.02025018632412,-0.1337980479002,0.037102583795786]],[[-0.072456814348698,-0.19204173982143,0.17864386737347],[-0.029742989689112,-0.16114847362041,-0.46545711159706],[0.077808387577534,0.25932931900024,0.015812188386917]],[[-0.14260306954384,-0.086401879787445,0.017706785351038],[-0.04279875010252,0.14649340510368,0.066400043666363],[0.087062120437622,-0.06533569842577,-0.12998557090759]],[[0.044569853693247,0.0060580442659557,0.050184387713671],[-0.080213986337185,-0.13285031914711,-0.2868478000164],[-0.056670617312193,0.016964273527265,0.13752372562885]],[[-0.011959091760218,-0.037076685577631,-0.19669581949711],[0.14225909113884,-0.0036223796196282,0.05034551024437],[0.038965877145529,-0.11704622209072,-0.024469409137964]],[[0.096663519740105,0.011250181123614,-0.16468822956085],[-0.12196226418018,0.13285511732101,0.074825592339039],[0.0016097931656986,0.11439926177263,-0.11149270087481]],[[0.02483993396163,0.14693695306778,0.049777325242758],[-0.086350098252296,0.069955259561539,-0.14099235832691],[-0.29680940508842,0.11818747222424,-0.031960915774107]],[[-0.093263313174248,-0.060647040605545,0.012359923683107],[0.045253872871399,0.076629042625427,-0.17488676309586],[-0.072676733136177,-0.10138045996428,0.086837068200111]],[[-0.23375695943832,0.028746340423822,0.019698223099113],[-0.026997329667211,0.07547028362751,-0.09243668615818],[-0.001819315017201,0.0079062161967158,0.071378611028194]],[[-0.065634623169899,0.13779105246067,0.15004627406597],[-0.091821387410164,-0.12080451101065,0.10145708173513],[0.028049826622009,0.079735577106476,-0.083032183349133]],[[-0.051944319158792,0.007883470505476,0.030456084758043],[-0.059084169566631,0.095746256411076,-0.023109704256058],[-0.10933374613523,0.076821021735668,-0.04316196590662]],[[0.10806620121002,0.17500422894955,0.064269408583641],[-0.023909702897072,0.066344939172268,0.08694925904274],[-0.018569828942418,-0.15519367158413,-0.14925214648247]],[[0.05025439709425,-0.015425282530487,0.052876427769661],[-0.28824919462204,-0.0051232888363302,0.018983408808708],[0.22887940704823,-0.1183996796608,-0.010221345350146]],[[0.0088266767561436,0.15978276729584,-0.14110669493675],[0.0096765588968992,0.0080022467300296,0.044584356248379],[0.032153699547052,0.039005171507597,-0.074059121310711]],[[0.051831480115652,-0.041313976049423,0.086046643555164],[0.017664266750216,0.097614794969559,-0.28578591346741],[0.0043571954593062,-0.010958188213408,0.22269612550735]],[[0.042905461043119,-0.11892905831337,0.024663871154189],[-0.012210933491588,-0.034182615578175,-0.048044830560684],[0.052944790571928,0.021316131576896,0.027939978986979]],[[-0.062629096210003,0.09191007912159,-0.013509978540242],[0.040023688226938,-0.022374289110303,-0.003000209107995],[0.016324572265148,-0.075104057788849,-0.069050274789333]],[[-0.14425933361053,0.037654228508472,-0.026159822940826],[-0.01929522678256,-0.037534788250923,0.11198858916759],[0.17289833724499,0.10792932659388,0.014956309460104]],[[0.059408634901047,-0.21174824237823,0.061482649296522],[0.0092286700382829,0.038655683398247,0.034473963081837],[0.12158185988665,-0.054203320294619,-0.019640700891614]],[[-0.10544384270906,-0.21357902884483,0.21811391413212],[-0.049101885408163,0.091156467795372,-0.1295849531889],[0.048660043627024,-0.07029751688242,0.03868705779314]],[[0.012566179968417,-0.010763389989734,0.025451470166445],[0.023498522117734,-0.02569074369967,0.0037327173631638],[-0.14365370571613,-0.098840393126011,-0.019244439899921]],[[-0.029020335525274,-0.0064833969809115,-0.021505249664187],[-0.0073343948461115,-0.11383509635925,0.14808686077595],[0.067149296402931,-0.0054739895276725,-0.14720733463764]],[[0.10454739630222,0.15180191397667,0.0228555444628],[-0.14570960402489,0.018193105235696,0.00040074862772599],[-0.034135438501835,-0.080415390431881,0.070696994662285]],[[0.049436938017607,0.19043752551079,0.12746876478195],[-0.11376469582319,-0.17727622389793,0.12120051681995],[-0.18179774284363,0.0035773778799921,0.014491838403046]],[[-0.043546799570322,-0.11174313724041,-0.11403433978558],[0.11456733942032,0.2166749984026,0.035084363073111],[-0.1785197108984,0.031575910747051,0.067475438117981]],[[-0.050360426306725,-0.088262312114239,-0.06657163053751],[0.065709561109543,0.00042182905599475,-0.1159131154418],[0.066774316132069,0.015153476037085,-0.011918326839805]],[[0.11786662787199,0.051093965768814,0.030586790293455],[-0.15462636947632,-0.01944755576551,-0.28914213180542],[0.039286587387323,-0.1334448158741,0.041108299046755]]],[[[-0.02527416869998,-0.042990013957024,-0.045662507414818],[-0.046464122831821,-0.022201970219612,-0.0073015326634049],[0.034403223544359,-0.054153814911842,-0.0058149322867393]],[[0.0067049711942673,-0.069589719176292,-0.072861887514591],[0.16101409494877,0.099616698920727,0.022222591564059],[0.070482641458511,0.16587035357952,0.13461689651012]],[[0.11984618008137,-0.051384028047323,0.040287271142006],[-0.17589591443539,-0.069937624037266,0.20113623142242],[-0.0063507026061416,0.013198706321418,0.18739156424999]],[[-0.070365078747272,0.080113768577576,-0.068226881325245],[0.17164634168148,0.026146778836846,-0.061209954321384],[0.057428833097219,0.056371606886387,-0.041806094348431]],[[-0.025010544806719,0.01526343356818,0.077080190181732],[-0.050850678235292,-0.063948303461075,0.11823263764381],[0.08671098947525,-0.037005104124546,-0.065356731414795]],[[-0.063532099127769,0.033218078315258,-0.096658810973167],[0.0077871838584542,0.20518478751183,0.18891501426697],[0.06783439964056,0.11872810870409,-0.057855993509293]],[[-0.035598881542683,-0.010484835132957,0.13331876695156],[-0.14752362668514,-0.05505795031786,-0.059490755200386],[-0.054943516850471,-0.23227153718472,-0.15969756245613]],[[-0.01770993322134,-0.1791430413723,0.0041197878308594],[-0.022428493946791,0.02717400342226,-0.1019533649087],[0.010265544056892,-0.17248627543449,-0.030471267178655]],[[0.056847181171179,-0.070035167038441,-0.095451235771179],[0.13361063599586,0.043127484619617,0.070640742778778],[-0.11566201597452,-0.14954303205013,0.14415314793587]],[[-0.1211259663105,0.046902764588594,0.14332023262978],[0.07003490626812,-0.020121539011598,-0.11556165665388],[0.0014131694333628,0.047514606267214,0.11669643968344]],[[0.089954771101475,0.055011320859194,-0.0034497673623264],[0.066883772611618,-0.039215009659529,0.20067553222179],[-0.059924606233835,0.011114973574877,-0.11491050571203]],[[0.082620158791542,0.12204311043024,0.035016737878323],[-0.085066460072994,-0.014352512545884,-0.011642846278846],[0.026858936995268,-0.0029680093284696,0.032998494803905]],[[0.037438649684191,0.021288109943271,-0.019268898293376],[0.090943217277527,0.078653819859028,-0.009269842877984],[-0.11614073067904,0.12091106176376,-0.039518434554338]],[[-0.016533982008696,0.12439104914665,-0.080270610749722],[-0.017247343435884,-0.048108477145433,-0.070755079388618],[0.09166993945837,0.046509969979525,-0.0083186561241746]],[[-0.053705923259258,-0.10613169521093,0.078743830323219],[0.020592352375388,0.11480242013931,0.098670154809952],[-0.085602827370167,-0.067715711891651,0.11003330349922]],[[0.056136105209589,0.054318804293871,0.00052742881234735],[0.061174564063549,0.028901459649205,-0.042666215449572],[0.024368014186621,0.15627938508987,0.1092893332243]],[[0.12527374923229,0.15885923802853,0.14971312880516],[0.090055041015148,0.25214084982872,0.035438194870949],[-0.071020513772964,0.24147786200047,0.033780843019485]],[[0.045153077691793,0.13812346756458,0.084660016000271],[-0.082510478794575,0.042174648493528,0.11069647222757],[0.062166258692741,-0.068624369800091,-0.019724937155843]],[[-0.046098466962576,0.027923196554184,0.037363447248936],[0.064747892320156,0.17444939911366,0.062099900096655],[-0.0021662381477654,0.040260694921017,-0.064088985323906]],[[-0.099228866398335,-0.057929884642363,-0.0036183504853398],[0.017906714230776,-0.041789576411247,-0.0074488129466772],[0.099538385868073,-0.043590229004622,-0.017919931560755]],[[0.0031122884247452,-0.018577098846436,-0.053239036351442],[9.9190719993203e-06,-0.088349342346191,-0.037153366953135],[0.071609064936638,-0.053340286016464,-0.002957439282909]],[[0.18177157640457,-0.037821047008038,0.12418527901173],[-0.052447982132435,0.095725119113922,-0.052279494702816],[0.035881102085114,-0.019457904621959,-0.17368447780609]],[[0.067838340997696,0.044734615832567,0.10001922398806],[0.013785739429295,-0.069988712668419,-0.0014042247785255],[-0.086662739515305,-0.042370818555355,-0.090140022337437]],[[0.13064710795879,0.031161891296506,-0.092629447579384],[0.036138121038675,-0.0622070543468,0.007952076382935],[0.12760508060455,-0.082611992955208,-0.086337514221668]],[[-0.033804662525654,0.028012841939926,0.12709181010723],[0.073518924415112,-0.0015542480396107,-0.05011822283268],[-0.1403728723526,0.088897444307804,-0.13170747458935]],[[-0.038560766726732,-0.13640081882477,-0.014846619218588],[0.19496689736843,0.18864932656288,0.032242149114609],[-0.17530985176563,0.12545092403889,0.0045165615156293]],[[0.030129661783576,-0.14443720877171,-0.22894914448261],[-0.075374752283096,0.095315739512444,-0.029108483344316],[0.037465069442987,0.05868362262845,-0.038556322455406]],[[-0.0058472976088524,-0.16308502852917,0.055336032062769],[-0.058559495955706,-0.049495756626129,-0.012085727415979],[-0.045981895178556,0.012796990573406,-0.056795228272676]],[[-0.047719035297632,-0.03271583840251,-0.082724787294865],[0.10284466296434,0.13408011198044,0.078428111970425],[-0.0025399897713214,-0.03966311365366,-0.011913906782866]],[[0.078284747898579,0.1277192234993,0.13502818346024],[0.0069728493690491,-0.043342031538486,0.080843321979046],[0.084404990077019,-0.08776218444109,0.092040963470936]],[[0.011647476814687,-0.032153870910406,0.026888383552432],[-0.18457716703415,0.026777008548379,-0.075946405529976],[0.19082218408585,-0.036085858941078,-0.02068861015141]],[[-0.06195230409503,0.15870454907417,-0.015374280512333],[-0.023353200405836,-0.048487208783627,-0.027266418561339],[-0.011469691991806,-0.028837624937296,-0.068590372800827]]],[[[-0.097872920334339,0.01646826043725,-0.023786347359419],[-0.093019522726536,0.26778572797775,0.034046228975058],[-0.045489300042391,0.17285408079624,-0.24425157904625]],[[0.071633599698544,-0.028860183432698,0.18726851046085],[-0.017162842676044,-0.081428587436676,-0.18904823064804],[-0.01281432248652,-0.04374835267663,0.010281437076628]],[[-0.0022232816554606,-0.0075181927531958,0.004898393061012],[-0.11281162500381,-0.12448615580797,0.0033889946062118],[-0.0152358841151,-0.23274616897106,-0.16703577339649]],[[-0.11632519215345,-0.011209103278816,0.092202723026276],[-0.1707020252943,-0.19227376580238,0.11804765462875],[-0.37593129277229,-0.27687323093414,-0.31338393688202]],[[0.078411564230919,-0.16194887459278,-0.050048757344484],[0.033975131809711,-0.025093311443925,-0.0038906566333026],[0.11335919052362,-0.019886273890734,-0.047255780547857]],[[-0.057882815599442,-0.036362048238516,-0.088798344135284],[0.034450404345989,-0.030519118532538,0.02674899995327],[-0.14924252033234,-0.017203373834491,-0.058047324419022]],[[-0.11862609535456,0.061071820557117,0.024171592667699],[0.12226895987988,0.20849581062794,0.10031202435493],[-0.15172350406647,-0.15498022735119,-0.055089298635721]],[[-0.098690167069435,0.19960203766823,-0.092091836035252],[-0.23205082118511,-0.077586308121681,0.03399845212698],[-0.080199614167213,-0.14727556705475,-0.090876765549183]],[[-0.21885216236115,0.01491713989526,-0.13363365828991],[-0.10783187299967,-0.057818789035082,-0.22333583235741],[-0.074796505272388,-0.13410793244839,-0.21986082196236]],[[0.078215971589088,-0.063048623502254,0.058974083513021],[0.016506707295775,-0.13855986297131,0.055934086441994],[0.0033462243154645,-0.01217554975301,-0.027564372867346]],[[-0.091386243700981,0.046859037131071,-0.015238052234054],[-0.14003103971481,-0.16846093535423,-0.13391569256783],[-0.093791455030441,-0.17110820114613,-0.16787149012089]],[[-0.08681533485651,0.052495874464512,0.061182077974081],[0.027399169281125,-0.010235013440251,-0.041412658989429],[-0.097212307155132,-0.023803452029824,0.053850512951612]],[[0.0091571323573589,-0.11128564178944,-0.0067716608755291],[-0.0097683425992727,-0.094413459300995,-0.17420238256454],[0.020909013226628,-0.04818082600832,-0.17145337164402]],[[0.042879246175289,-0.14720612764359,-0.037712443619967],[0.068541869521141,-0.075491808354855,-0.10327698290348],[-0.10004730522633,0.047127179801464,0.0093047441914678]],[[-0.34230470657349,-0.44070085883141,-0.45485788583755],[-0.036208663135767,-0.076186008751392,-0.058311719447374],[-0.20170804858208,-0.14092999696732,0.032207321375608]],[[-0.13178968429565,0.057719234377146,0.09167292714119],[-0.16538001596928,0.05715611949563,0.057685978710651],[-0.057435564696789,-0.15022924542427,-0.17837086319923]],[[-0.073899626731873,-0.089859418570995,-0.037195295095444],[0.015986263751984,-0.13036036491394,-0.048287514597178],[0.11844178289175,0.011910846456885,-0.14425213634968]],[[-0.16744656860828,-0.022553218528628,0.060332652181387],[0.022005911916494,-0.13620296120644,-0.01810859143734],[-0.079807758331299,-0.096911236643791,0.0044426047243178]],[[-0.08211062848568,0.097961895167828,0.14457839727402],[-0.12346262484789,-0.01981514506042,-0.18353308737278],[0.0612225048244,-0.19011335074902,-0.065499164164066]],[[0.11083937436342,-0.25887656211853,-0.17768967151642],[-0.28328466415405,-0.1399785131216,0.07940749078989],[0.11546056717634,-0.117486551404,0.024781610816717]],[[-0.015324968844652,-0.0053987470455468,-0.039278008043766],[-0.15839047729969,-0.20555011928082,-0.10169650614262],[-0.12596200406551,-0.20534212887287,0.014015196822584]],[[-0.025776708498597,0.011569127440453,0.015397761017084],[-0.073663845658302,0.064933203160763,-0.0057263020426035],[-0.20994253456593,-0.10953310132027,-0.14199914038181]],[[0.051848538219929,-0.090729311108589,0.043840922415257],[-0.095895074307919,-0.33410522341728,-0.13945786654949],[-0.06332977861166,0.069288872182369,-0.16735436022282]],[[-0.073955789208412,-0.15175245702267,0.043518953025341],[-0.074127219617367,-0.026617368683219,0.039931196719408],[-0.045141875743866,-0.033101495355368,0.007349191699177]],[[-0.058284357190132,-0.15986503660679,0.090913541615009],[-0.016024451702833,-0.086245059967041,-0.19227130711079],[-0.047758936882019,0.060961663722992,-0.05503660812974]],[[0.16864281892776,0.083374910056591,-0.098826125264168],[0.12761741876602,0.060418866574764,0.049278318881989],[-0.27165275812149,-0.12747460603714,-0.17356722056866]],[[-0.099339716136456,-0.019670557230711,0.038261123001575],[-0.027092745527625,0.078248076140881,-0.44678202271461],[-0.1872420758009,-0.0031646606512368,-0.17803318798542]],[[-0.29729849100113,-0.38953766226768,-0.061235282570124],[0.068464420735836,-0.062215656042099,0.065976902842522],[-0.14835020899773,-0.10361969470978,-0.10330233722925]],[[-0.036735381931067,-0.04739011451602,0.016896804794669],[-0.2615080177784,0.096759095788002,0.056651871651411],[0.047679755836725,0.12962381541729,-0.049353085458279]],[[-0.091610841453075,0.17164480686188,-0.21629658341408],[-0.11751365661621,0.10367330163717,0.010176039300859],[-0.048272535204887,0.066810749471188,-0.046686440706253]],[[-0.2839483320713,-0.090259298682213,0.11137349903584],[-0.024155596271157,-0.05521172657609,0.0660630017519],[-0.022990886121988,0.081113293766975,-0.063796706497669]],[[-0.31090915203094,-0.084892228245735,0.023671003058553],[-0.14115957915783,-0.11319464445114,-0.21155981719494],[-0.11736669391394,-0.24189968407154,-0.20438028872013]]],[[[-0.099230594933033,0.081510409712791,-0.1090986803174],[-0.11009379476309,-0.12553954124451,-0.1232041567564],[-0.13093280792236,-0.29712584614754,-0.14092914760113]],[[0.09033726900816,-0.022451341152191,0.082056984305382],[0.1246842071414,0.073097556829453,0.11286755651236],[-0.050133548676968,0.067639142274857,0.074579305946827]],[[0.005051898304373,-0.10792636871338,0.0099894925951958],[0.12520456314087,0.0061513395048678,0.054591070860624],[0.075720302760601,0.12847271561623,-0.1827008575201]],[[0.11293438076973,-0.1502937078476,-0.027315448969603],[0.072129525244236,0.078582689166069,0.15219819545746],[0.15986210107803,0.21154615283012,0.031654585152864]],[[0.022061640396714,-0.00084388599498197,-0.13377809524536],[-0.010850728489459,0.0011441031238064,-0.11555826663971],[-0.021742133423686,0.022484207525849,0.22443388402462]],[[-0.061360534280539,0.054374448955059,0.10207132995129],[-0.11982029676437,0.037707444280386,0.068715497851372],[0.10886573791504,-0.12420614808798,-0.11260466277599]],[[-0.024585267528892,-0.10763224959373,0.16709114611149],[0.029070137068629,-0.10958343744278,0.0704690143466],[-0.1846477240324,-0.15087489783764,-0.040826711803675]],[[0.028072368353605,0.022810148075223,-0.040247071534395],[0.032800741493702,-0.038519781082869,0.094252899289131],[-0.11622432619333,-0.17151784896851,-0.094203136861324]],[[-0.078266352415085,0.10382886230946,0.17596112191677],[-0.098373867571354,0.1290947496891,0.022954294458032],[-0.17180226743221,0.106913164258,0.024388445541263]],[[-0.042705789208412,0.092525847256184,-0.21900872886181],[-0.062455464154482,0.05037872120738,-0.090530820190907],[-0.057616610080004,0.17538432776928,0.15967555344105]],[[0.024652233347297,0.068561531603336,0.21729516983032],[-0.048682253807783,0.049936007708311,-0.1087266728282],[-0.00016696727834642,-0.026288483291864,-0.080287881195545]],[[0.18310947716236,-0.22877058386803,-0.052965715527534],[0.083512283861637,-0.08972404897213,-0.002113540424034],[0.10188110917807,0.00065295939566568,0.028103811666369]],[[-0.092943862080574,-0.27040150761604,-0.0047318474389613],[0.12096692621708,0.062379457056522,-0.034767214208841],[-0.06087402254343,-0.095005862414837,-0.14120608568192]],[[-0.052596196532249,-0.030007420107722,-0.20124635100365],[0.033799424767494,-0.11092265695333,-0.076750010251999],[-0.030987311154604,0.071586325764656,-0.016480507329106]],[[-0.078005582094193,0.056487832218409,-0.064421236515045],[-0.10235518962145,0.067028716206551,0.020854825153947],[0.075025364756584,0.017310217022896,0.073688820004463]],[[0.055921792984009,0.099033810198307,-0.18143501877785],[0.13657130300999,0.024841902777553,0.018156656995416],[-0.10747390240431,0.14726632833481,-0.046758063137531]],[[0.0086895739659667,0.071948640048504,-0.13615940511227],[0.1202035099268,-0.0064566656947136,0.080644205212593],[0.099429741501808,0.075406946241856,-0.020782634615898]],[[-0.063463814556599,0.044997543096542,0.050861805677414],[0.23954191803932,0.025902725756168,0.10610424727201],[0.062559559941292,-0.1511846780777,0.044722985476255]],[[0.12702982127666,-0.11354442685843,0.09024341404438],[-0.0051804981194437,-0.080530226230621,0.010395196266472],[0.065641798079014,-0.011097772046924,-0.09580796957016]],[[-0.0018130763201043,0.029520191252232,-0.20555384457111],[-0.0089477906003594,-0.12188585847616,-0.045926705002785],[-0.10270117223263,0.055412419140339,-0.041845384985209]],[[0.046616736799479,-0.037419907748699,-0.092482216656208],[-0.085047729313374,0.00017648923676461,0.067967675626278],[-0.035837519913912,0.16684472560883,0.080060958862305]],[[0.02448514662683,0.017716307193041,0.016250612214208],[-0.035243310034275,-0.0086843799799681,-0.14903247356415],[-0.13657885789871,-0.036095630377531,-0.010288145393133]],[[-0.22420278191566,-0.14085087180138,-0.014909504912794],[0.010105072520673,0.21027238667011,-0.027127869427204],[0.24859718978405,0.12530542910099,-0.015119228512049]],[[-0.10210457444191,0.14386862516403,0.041941098868847],[-0.085345268249512,0.10996396094561,-0.099535189568996],[-0.13987149298191,-0.0073076128028333,-0.27567586302757]],[[0.049677085131407,-0.014176037162542,0.056739639490843],[-0.10347501933575,-0.034948758780956,-0.13279189169407],[0.038328289985657,-0.05036411806941,-0.087408393621445]],[[0.016876885667443,0.068405859172344,-0.13880394399166],[-0.038361564278603,-0.037279348820448,0.047829631716013],[-0.052823219448328,0.093944884836674,-0.074894115328789]],[[-0.038950972259045,-0.094657257199287,-0.086834840476513],[0.051009450107813,0.015508177690208,-0.18856863677502],[-0.11281462013721,-0.092173554003239,-0.1565133780241]],[[-0.0095530329272151,-0.043932471424341,0.031295653432608],[0.067069850862026,-0.017976885661483,-0.042753022164106],[0.0051562981680036,-0.13134208321571,0.047347467392683]],[[0.19563637673855,0.0020221089944243,0.0033912279177457],[0.083310715854168,0.071601405739784,-0.035743936896324],[-0.14561574161053,-0.16449426114559,-0.2466584444046]],[[-0.011426405981183,0.070568218827248,-0.12265933305025],[0.11266846209764,-0.077815897762775,-0.13679324090481],[-0.010318118147552,-0.16016206145287,0.076910637319088]],[[-0.078035235404968,-0.020758165046573,-0.15800821781158],[0.014387335628271,0.10958487540483,0.041184928268194],[-0.15993538498878,-0.062469944357872,0.04756823182106]],[[-0.010114322416484,0.016346165910363,-0.061310674995184],[0.11664577573538,-0.040602251887321,-0.075893610715866],[0.14300894737244,0.15564090013504,-0.23510724306107]]],[[[0.013896087184548,-0.089439742267132,0.039954241365194],[0.0072610438801348,-0.15964739024639,0.0134919853881],[-0.1592945754528,-0.13656757771969,0.04204211756587]],[[0.055551506578922,-0.055974792689085,0.047268219292164],[0.10621167719364,0.050853922963142,0.15817449986935],[-0.010858907364309,0.015492445789278,0.12498860806227]],[[-0.0042910166084766,-0.12461783736944,0.025699047371745],[0.094178073108196,0.048257615417242,0.096647083759308],[-0.045526269823313,0.027359060943127,0.11222395300865]],[[-0.020217269659042,0.046697303652763,-0.036854539066553],[0.074390448629856,0.018136639147997,-0.057270754128695],[0.10058663785458,-0.06280206143856,-0.045372270047665]],[[0.11578343063593,-0.020350007340312,-0.014333427883685],[0.026262374594808,0.08728101849556,-0.052370488643646],[-0.037802375853062,-0.07926444709301,-0.081971988081932]],[[-0.092613555490971,-0.008979769423604,0.028784610331059],[-0.048757266253233,-0.078641958534718,-0.057110615074635],[0.168686658144,-0.027590336278081,-0.06677033752203]],[[-0.077657654881477,-0.020902387797832,0.15641222894192],[-0.082002818584442,-0.003051434410736,-0.13444040715694],[-0.096007093787193,-0.16121006011963,-0.035354260355234]],[[0.030492188408971,-0.087319269776344,0.01536994241178],[-0.038400489836931,-0.04545671492815,0.015504151582718],[-0.03134760633111,-0.12526254355907,-0.068133033812046]],[[0.033287316560745,0.010555421933532,-0.12296230345964],[0.04402694478631,0.065582260489464,0.053665366023779],[0.060731060802937,-0.021061537787318,-0.011427680030465]],[[-0.12956880033016,-0.0097689917311072,0.045868441462517],[-0.025118131190538,-0.16508668661118,0.074402526021004],[0.056056819856167,0.049528058618307,-0.044591642916203]],[[0.012577778659761,0.019011471420527,-0.0063435444608331],[-0.048950459808111,-0.069977425038815,-0.08508376032114],[-0.089378073811531,-0.048412628471851,0.0092978710308671]],[[-0.08692092448473,0.10475993901491,0.021347610279918],[-0.036389738321304,0.20618984103203,-0.012289918027818],[-0.017837295308709,-0.042218949645758,-0.02295184507966]],[[-0.054133486002684,0.057610109448433,0.097184933722019],[-0.065161935985088,0.074941538274288,0.10952416062355],[-0.16807761788368,-0.073054663836956,0.21264293789864]],[[0.0021855819504708,0.0097284223884344,0.0522899068892],[-0.099263042211533,-0.026084201410413,0.14213521778584],[-0.20311997830868,0.0050725005567074,-0.024224538356066]],[[-0.025980385020375,0.032559737563133,-0.033087328076363],[-0.07290381193161,0.067048482596874,0.13511003553867],[0.14550918340683,0.10130880773067,0.19201067090034]],[[-0.074599906802177,0.096987128257751,0.0063927476294339],[0.093595005571842,0.077722124755383,0.034891933202744],[-0.0095345303416252,0.024606551975012,-0.032156396657228]],[[-0.046690121293068,-0.11809905618429,-0.20528349280357],[0.032644357532263,-0.12497964501381,-0.016710016876459],[0.020028719678521,-0.10705672204494,0.0032413140870631]],[[-0.055376429110765,-0.015582595951855,0.031150018796325],[-0.10115998238325,-0.021091500297189,-0.016069699078798],[-0.056817695498466,-0.053574193269014,-0.043413661420345]],[[-0.10226980596781,-0.00132018502336,0.096454687416553],[-0.09031417965889,-0.22736625373363,-0.041617464274168],[-0.065436899662018,-0.030474429950118,-0.054220382124186]],[[0.06710185110569,0.074561059474945,0.12328597903252],[0.080591171979904,-0.063998430967331,0.038313083350658],[0.086915381252766,-0.1081600934267,0.024096658453345]],[[0.14217936992645,-0.12138091027737,-0.062831282615662],[0.035503543913364,0.16374038159847,-0.00041087516001426],[0.076695792376995,0.035155761986971,-0.064457684755325]],[[0.054801270365715,0.016498012468219,0.092713788151741],[-0.098664686083794,-0.085606783628464,0.0083314720541239],[0.072520434856415,-0.10978885740042,-0.028231685981154]],[[-0.047624029219151,-0.034923419356346,-0.025548761710525],[0.22650475800037,0.0558663867414,-0.00027013113140129],[0.043004732578993,0.027035215869546,-0.17099855840206]],[[-0.027422094717622,-0.044804230332375,-0.050868187099695],[-0.052939224988222,-0.0030026282183826,-0.12741301953793],[0.0035316194407642,-0.065768964588642,-0.060044843703508]],[[-0.043180871754885,0.10178972035646,0.01641608029604],[-0.017140708863735,-0.1612776517868,0.16146928071976],[-0.05842500180006,0.041982736438513,-0.047665569931269]],[[0.070986196398735,-0.091300740838051,0.022841738536954],[0.0083836978301406,-0.13679534196854,-0.095424525439739],[0.067267581820488,0.13027665019035,-0.09936036169529]],[[-0.050166249275208,-0.093937948346138,-0.0089396759867668],[-0.024364190176129,0.060929581522942,-0.10920141637325],[0.0073429769836366,-0.045250758528709,0.024781422689557]],[[-0.018034368753433,-0.027917178347707,0.02303378097713],[-0.040742240846157,0.11292500793934,0.012798470444977],[-0.014293462969363,-0.1072596758604,-0.056515611708164]],[[0.20986676216125,0.11606130748987,0.10647892951965],[-0.014965220354497,0.056205790489912,0.13002111017704],[-0.036627762019634,-0.12561492621899,-0.0058861961588264]],[[0.028009323403239,0.031395930796862,-0.012298452667892],[-0.0079624783247709,-0.039708748459816,-0.038471460342407],[-0.039276167750359,0.10335090011358,-0.018382746726274]],[[-0.14781583845615,0.1602284014225,0.00515346089378],[-0.077292002737522,-0.028076132759452,0.0021469925995916],[-0.099443711340427,-0.040905557572842,-0.036798778921366]],[[-0.026438606902957,0.031150080263615,0.020070089027286],[-0.018104024231434,-0.073254622519016,-0.011230131611228],[0.0078050806187093,-0.010487059131265,-0.029958348721266]]],[[[-0.12546347081661,-0.0044462303631008,0.0098886666819453],[0.0063078412786126,0.22061163187027,-0.063492640852928],[-0.22148950397968,0.18415102362633,-0.040032867342234]],[[-0.054259266704321,0.039089716970921,-0.17364238202572],[0.010221546515822,0.12597323954105,0.00089271867182106],[0.0054095415398479,0.20405057072639,0.0084978314116597]],[[-0.013153192587197,0.17400875687599,-0.0068543711677194],[0.014218173921108,-0.044785030186176,0.078712128102779],[-0.045627009123564,0.084236495196819,-0.0063024167902768]],[[0.021246494725347,-0.3336561024189,-0.09702442586422],[-0.26621389389038,-0.18256168067455,-0.10239122062922],[-0.011547491885722,-0.30937296152115,-0.13025124371052]],[[-0.0074900425970554,0.11202058196068,-0.12395148724318],[-0.09513059258461,-0.10531669855118,0.042299553751945],[0.036073457449675,0.061974156647921,-0.01565702073276]],[[0.054068949073553,0.092200189828873,-0.026715993881226],[-0.023064322769642,0.054609157145023,0.02280580997467],[-0.10589260607958,-0.055180687457323,-0.023106416687369]],[[0.16890496015549,0.14684101939201,0.076657503843307],[-0.080331683158875,0.031101796776056,0.068831458687782],[-0.076577097177505,-0.032286778092384,0.0012202609796077]],[[-0.12245285511017,0.071227319538593,0.065189726650715],[-0.16178588569164,-0.090322501957417,-0.12242470681667],[-0.17216670513153,-0.018377432599664,-0.09888482093811]],[[-0.038031511008739,-0.23347319662571,-0.20134298503399],[-0.036169689148664,-0.056934230029583,0.12411732971668],[0.068451590836048,-8.4427803813014e-05,-0.045797016471624]],[[-0.25385349988937,0.20051829516888,0.12412284314632],[-0.045970730483532,0.089259602129459,-0.11861951649189],[0.041740659624338,-0.0061155408620834,0.0060904622077942]],[[0.073038958013058,-0.10216634720564,0.081063151359558],[-0.14902023971081,-0.090691983699799,0.10116373747587],[-0.026732344180346,-0.066773414611816,-0.087298661470413]],[[-0.0047872997820377,0.096513405442238,0.011963475495577],[0.057611353695393,0.041851062327623,0.10581824928522],[-0.031508725136518,0.075134441256523,-0.054223407059908]],[[-0.0045603914186358,0.014132909476757,0.075034938752651],[-0.22778789699078,0.13365651667118,0.05085277557373],[0.021439941599965,-0.037936069071293,-0.016928974539042]],[[0.047059077769518,0.051749665290117,0.24663805961609],[0.088104940950871,-0.11646910756826,-0.023077167570591],[-0.16086542606354,-0.044845350086689,0.014296995475888]],[[0.054423402994871,-0.097775794565678,-0.11688502877951],[-0.080415725708008,0.17728810012341,0.073151737451553],[0.0040824087336659,-0.090978145599365,-0.14539970457554]],[[0.057428564876318,3.5457662306726e-05,-0.067699611186981],[-0.17121432721615,0.094942167401314,-0.027359621599317],[-0.1665011793375,0.16469940543175,-0.042853705585003]],[[-0.030981430783868,-0.096171215176582,-0.098267510533333],[0.096194818615913,0.16449971497059,0.13531772792339],[0.084438376128674,0.02259155921638,0.023987187072635]],[[-0.018902838230133,-0.11931891739368,-0.019372118636966],[-0.001864937832579,-0.058947153389454,-0.10895326733589],[-0.038482960313559,-0.0010134235490113,0.015105448663235]],[[-0.015616660937667,-0.083264067769051,0.087533228099346],[0.12697486579418,-0.16490505635738,-0.05080097541213],[0.042155869305134,-0.10790569335222,0.081039905548096]],[[-0.044777065515518,-0.44811901450157,0.034577406942844],[-0.06593345105648,-0.16759987175465,-0.11453792452812],[0.19292345643044,-0.15917514264584,-0.020810442045331]],[[-0.13243338465691,-0.069748856127262,0.22338217496872],[0.20590813457966,-0.19215248525143,-0.038468934595585],[-0.063279889523983,0.01197627838701,-0.032988604158163]],[[0.14063291251659,0.19919915497303,0.081900849938393],[-0.23210081458092,-0.015621964819729,-0.10515421628952],[-0.077240280807018,-0.18476976454258,-0.064254269003868]],[[0.013910800218582,-0.0075758052989841,0.065285414457321],[-0.049254588782787,-0.069083608686924,-0.098668158054352],[-0.1122682839632,0.031104216352105,-0.084216557443142]],[[0.035651192069054,-0.065037913620472,-0.17772243916988],[-0.076131522655487,-0.0014784400118515,-0.061530485749245],[-0.049509041011333,-0.12316752225161,0.021409710869193]],[[-0.0035199541598558,-0.03812313452363,0.14466555416584],[0.099911324679852,-0.091065108776093,0.28205454349518],[0.0012797293020412,-0.22266052663326,-0.060469076037407]],[[-0.026829989627004,0.16191241145134,-0.0063475477509201],[0.18453651666641,0.29671230912209,-0.10605555027723],[-0.22457765042782,0.1027547493577,-0.045074120163918]],[[-0.1188258305192,0.038790434598923,0.040973015129566],[-0.19072681665421,0.0025663028936833,-0.0662791877985],[-0.015395779162645,0.11556458473206,-0.13897813856602]],[[-0.0079920263960958,-0.083450332283974,-0.029559591785073],[-0.066493675112724,0.32060378789902,0.065596580505371],[-0.20248448848724,0.083812072873116,-0.041940867900848]],[[0.039918310940266,0.056143194437027,0.079894594848156],[-0.071458719670773,-0.11081010848284,-0.040601279586554],[-0.070169508457184,0.02173587679863,-0.18334233760834]],[[0.048887755721807,0.1319480240345,-0.072888799011707],[-0.018044117838144,-0.052425365895033,0.027796898037195],[-0.074473686516285,0.010014051571488,0.11363001912832]],[[0.0098253693431616,-0.048021357506514,0.045283295214176],[0.049066919833422,-0.22684575617313,0.00019986975530628],[-0.16646303236485,-0.097827322781086,-0.068404078483582]],[[-0.029127845540643,0.013724311254919,-0.064348302781582],[-0.17714765667915,0.21632678806782,0.0010197249939665],[-0.01645153388381,0.030513612553477,-0.071140743792057]]],[[[-0.17755255103111,-0.23762789368629,-0.043928328901529],[-0.3421376645565,-0.41498118638992,0.040719129145145],[-0.011207472532988,0.17447505891323,0.045381523668766]],[[0.0076865279115736,-0.015539242886007,-0.06342389434576],[-0.034327261149883,-0.018960479646921,0.049377378076315],[-0.033733855932951,-0.056589461863041,-0.027870694175363]],[[-0.015857988968492,0.058440256863832,-0.10215047746897],[0.022344600409269,0.055886425077915,0.014756298623979],[-0.093264825642109,0.033094432204962,-0.05465367808938]],[[0.033797834068537,0.055628638714552,-0.062648624181747],[0.01852922514081,-0.11002262681723,0.025225237011909],[-0.082859843969345,-0.25119149684906,0.017703015357256]],[[-0.0030980547890067,-0.087177239358425,0.070669412612915],[-0.24701575934887,0.069303549826145,0.0647988691926],[-0.11008168756962,0.098001927137375,0.060177944600582]],[[0.17377932369709,0.14062766730785,0.05702992156148],[-0.06758725643158,0.02884435094893,-0.080343633890152],[0.095316760241985,-0.042433757334948,-0.12968622148037]],[[-0.04967387393117,0.097989805042744,-0.15491731464863],[0.056785527616739,-0.17757149040699,-0.18102766573429],[-0.015518553555012,-0.0011146104661748,0.11183648556471]],[[-0.053197897970676,-0.098577849566936,0.033121924847364],[-0.074882045388222,-0.12391819804907,0.10631351172924],[0.16901306807995,-0.072060160338879,-0.077066130936146]],[[-0.07555765658617,0.10721715539694,0.071941643953323],[-0.073003023862839,-0.16363070905209,-0.14794251322746],[-0.24682322144508,0.038627482950687,0.021375924348831]],[[-0.12682089209557,-0.025349553674459,0.014602097682655],[0.08301156014204,0.076315149664879,-0.067242123186588],[0.112523175776,0.10046829283237,-0.085307016968727]],[[-0.057661283761263,0.037413652986288,-0.20683300495148],[0.0098648890852928,-0.034331150352955,-0.17419363558292],[0.10584681481123,0.036887511610985,0.20252111554146]],[[-0.012122576124966,0.093614719808102,0.074320085346699],[0.0089652426540852,0.12834687530994,-0.20406192541122],[0.0067675849422812,-0.0061349351890385,-0.13644747436047]],[[-0.17710864543915,-0.052145984023809,-0.18608812987804],[0.035983253270388,0.033867705613375,0.086553536355495],[-0.094854183495045,0.044312410056591,0.26136672496796]],[[0.040792159736156,0.089210413396358,0.054257929325104],[-0.0060537508688867,0.033981401473284,0.03719462826848],[0.044502545148134,-0.0010587162105367,-0.17340834438801]],[[0.080618739128113,0.18109753727913,0.23513709008694],[0.085747748613358,-0.21222661435604,0.020874280482531],[0.048934765160084,-0.21898449957371,-0.25358888506889]],[[0.028930649161339,0.12204463779926,0.15532943606377],[-0.24619001150131,-0.010359022766352,0.22090831398964],[-0.12455085664988,0.025454821065068,-0.084176003932953]],[[0.085407689213753,0.11039573699236,0.23774373531342],[0.02385981567204,-0.039556924253702,0.07043994218111],[-0.0029690524097532,-0.16377086937428,-0.015036433003843]],[[0.14316889643669,-0.01400899887085,-0.01355801243335],[0.15847040712833,-0.11700998991728,-0.032644242048264],[-0.10411468148232,-0.011593917384744,-0.011594917625189]],[[0.27963197231293,-0.038135480135679,-0.056034900248051],[0.095647349953651,0.10625834017992,0.011432811617851],[-0.072509288787842,0.034292008727789,-0.11384488642216]],[[-0.23493780195713,0.06414420902729,-0.051202412694693],[-0.17593719065189,-0.21296325325966,0.21377597749233],[-0.16078399121761,-0.049542143940926,0.045020826160908]],[[-0.025976838544011,-0.084951177239418,-0.017951967194676],[0.15038834512234,-0.086283877491951,0.031556591391563],[-0.026988126337528,-0.0022380431182683,0.05810958147049]],[[-0.15881478786469,0.023430230095983,0.11103580892086],[-0.091977499425411,0.014339618384838,0.14763475954533],[0.075967937707901,-0.14683543145657,0.035496361553669]],[[0.1254049539566,-0.0017148653278127,-0.054948017001152],[0.1420423835516,0.15619646012783,-0.013340674340725],[0.018281219527125,-0.034853737801313,0.027534237131476]],[[-0.17548096179962,-0.23359631001949,-0.033572491258383],[-0.090485967695713,-0.0053936326876283,0.20334608852863],[0.105011112988,0.1089334487915,0.11572317779064]],[[-0.094373039901257,0.097967840731144,-0.050269477069378],[-0.087489388883114,-0.091067023575306,-0.0040470818057656],[0.1234430745244,0.16658060252666,0.03564603254199]],[[0.036055572330952,0.016529513522983,0.067428834736347],[0.015441343188286,-0.06622227281332,-0.056694772094488],[0.081846617162228,-0.075746648013592,0.086286224424839]],[[0.069058038294315,-0.14771927893162,-0.057064034044743],[0.065903432667255,-0.19949269294739,0.074948199093342],[0.042371235787868,-0.12211430817842,-0.19248716533184]],[[0.1415486484766,0.039320334792137,0.049785323441029],[-0.11657072603703,0.18721814453602,-0.24623380601406],[0.029073137789965,-0.13540445268154,0.07327775657177]],[[0.11100976914167,-0.0037868898361921,0.0035323319025338],[-0.026220686733723,-0.049568962305784,0.058262642472982],[-0.037684313952923,-0.19776628911495,-0.059393174946308]],[[0.043288972228765,-0.046804111450911,0.046369642019272],[0.0076959561556578,0.043447639793158,0.068561837077141],[-0.42367851734161,-0.15210480988026,0.093926191329956]],[[0.059373077005148,0.092859223484993,-0.016319628804922],[-0.034436006098986,-0.12774835526943,0.049943413585424],[-0.11772710084915,-0.017751350998878,0.0029923852998763]],[[0.018979195505381,-0.049634594470263,-0.16483825445175],[0.0055232695303857,-0.18540713191032,-0.27697852253914],[-0.10571359843016,0.07838761806488,-0.22366560995579]]],[[[-0.084955342113972,0.030738418921828,0.0010708082700148],[0.30013230443001,0.049574721604586,0.015839288011193],[0.013383533805609,0.047020401805639,0.0096156839281321]],[[-0.0099529400467873,-0.065399475395679,0.036454819142818],[0.11116290837526,-0.013558344915509,-0.056718464940786],[0.049126286059618,-0.017568044364452,0.13475225865841]],[[-0.055789325386286,0.027056651189923,0.05735881254077],[0.061469979584217,0.10013606399298,-0.030624087899923],[-0.020115077495575,0.0006146181258373,0.12455230951309]],[[0.0013300469145179,0.090979151427746,0.04289174079895],[-0.31443703174591,-0.11815025657415,0.10273932665586],[-0.05527900904417,-0.051055904477835,-0.1065539419651]],[[-0.11080048978329,0.093615025281906,0.021093815565109],[-0.029379280284047,-0.029599422588944,-0.051649808883667],[-0.06060341745615,0.052214205265045,0.055603891611099]],[[0.071717321872711,-0.09633844345808,0.061807584017515],[0.10643813759089,0.11872924119234,0.026522632688284],[-0.08684404194355,0.12000942975283,-0.031322807073593]],[[0.025234574452043,0.039542239159346,0.021331800147891],[-0.0071515534073114,0.019440151751041,0.15350350737572],[0.01610741391778,-0.14022891223431,-0.01360153593123]],[[0.024531096220016,-0.0069659277796745,0.11059956997633],[-0.082417272031307,-0.16100527346134,-0.088495321571827],[0.07554467767477,-0.018717061728239,0.017889386042953]],[[0.023393804207444,0.03963628038764,-0.085640229284763],[-0.03269337117672,-0.038737170398235,-0.095290333032608],[-0.056121706962585,0.094642244279385,0.031047960743308]],[[0.066067807376385,-0.032224271446466,-0.034696772694588],[0.073393873870373,0.11356021463871,-0.058216966688633],[0.084341205656528,-0.1461675465107,-0.059585060924292]],[[-0.020060749724507,-0.0014668074436486,0.079972885549068],[0.032295625656843,0.018717050552368,0.053331598639488],[-0.070833496749401,0.022567434236407,-0.018907401710749]],[[-0.0218814779073,0.031839367002249,-0.029163951054215],[0.13089269399643,0.075671479105949,-0.01589754037559],[-0.04314137622714,-0.02275975048542,0.048249732702971]],[[0.15575282275677,-0.024586724117398,0.086015932261944],[0.087665878236294,0.10858728736639,-0.11132388561964],[-0.04862741753459,0.079629153013229,-0.17453074455261]],[[-0.11644122749567,0.028447670862079,-0.0053960662335157],[-0.13796083629131,0.0022996517363936,-0.099486343562603],[-0.028497943654656,0.16748633980751,0.071519628167152]],[[0.030336959287524,-0.13620394468307,0.044808126986027],[0.0031992748845369,-0.018525455147028,-0.042738508433104],[-0.0056878072209656,-0.10377152264118,0.11764875054359]],[[0.049757674336433,-0.16509614884853,0.05996323749423],[0.093943014740944,0.0010379072045907,0.0091447485610843],[0.089997559785843,-0.14183993637562,0.09505320340395]],[[-0.028238272294402,0.028441686183214,0.07078292965889],[-0.015826322138309,-0.11678643524647,-0.050086509436369],[0.036116816103458,0.13239316642284,-0.072929598391056]],[[-0.05328943580389,0.0061544720083475,0.058633677661419],[-0.037434261292219,-0.07475034147501,0.060182947665453],[-0.057657342404127,-0.0062017017044127,0.027957623824477]],[[0.11161141842604,0.28376293182373,0.029802551493049],[0.057973098009825,0.06571602076292,-0.039292652159929],[-0.14767047762871,0.09456168115139,0.0033708475530148]],[[-0.051782369613647,0.044345539063215,-0.019222812727094],[-0.085791416466236,0.27455124258995,0.041000623255968],[-0.061029586941004,-0.051968384534121,0.093107610940933]],[[0.0019753945525736,0.070852428674698,-0.016137359663844],[-0.061339743435383,0.019050719216466,-0.086446508765221],[0.096604369580746,0.092041864991188,0.1293903440237]],[[0.029737267643213,0.033412802964449,0.072153754532337],[-0.10646318644285,0.026054246351123,0.01791375875473],[-0.11554054170847,-0.14755119383335,0.1122870221734]],[[0.10129491984844,-0.04075612872839,-0.022759335115552],[-0.055054988712072,-0.18223097920418,0.021411448717117],[-0.067959122359753,0.0095757246017456,0.05523044988513]],[[0.035807784646749,0.1776147633791,0.11997862905264],[0.031032653525472,0.3222724199295,0.093654371798038],[-0.20358051359653,0.069680459797382,0.0087239742279053]],[[-0.086952306330204,-0.11849762499332,-0.029961114749312],[-0.070967480540276,0.10113067924976,-0.065608970820904],[0.05267421156168,0.040118135511875,-0.072523087263107]],[[0.096257872879505,0.006555940490216,-0.014393734745681],[-0.18162758648396,-0.0093693248927593,-0.016512043774128],[0.18371358513832,0.026205893605947,-0.027332365512848]],[[0.042500287294388,-0.11581785231829,-0.20690031349659],[0.044297274202108,-0.29694357514381,0.064441256225109],[0.048988964408636,0.015929391607642,0.026337089017034]],[[0.066688932478428,-0.0930270627141,-0.083512373268604],[-0.0028832943644375,-0.13767664134502,-0.011001684702933],[-0.093065105378628,0.027263900265098,0.050298426300287]],[[-0.095632165670395,-0.054477479308844,0.037079911679029],[-0.12954233586788,-0.091539993882179,0.046339005231857],[-0.00027308228891343,-0.064094804227352,-0.11538382619619]],[[-0.03128669410944,-0.10029432922602,-0.011798446998],[-0.1683574616909,-0.037540681660175,0.16943083703518],[-0.0058074630796909,-0.0076476018875837,0.0017469042213634]],[[-0.17072582244873,0.0079925870522857,-0.0097045507282019],[-0.10030286759138,-0.044266935437918,0.14367106556892],[0.041342116892338,-0.0042677926830947,0.069701112806797]],[[0.0025110277347267,-0.004441911354661,-0.10565201938152],[0.044864997267723,-0.17045336961746,-0.22708290815353],[0.040446054190397,-0.12356099486351,-0.081381164491177]]],[[[-0.19684889912605,-0.25408479571342,-0.20148831605911],[-0.13867382705212,-0.15786328911781,-0.059336271136999],[0.05423167720437,0.14189369976521,-0.041939530521631]],[[-0.062365930527449,0.14208002388477,-0.014624473638833],[-0.12266862392426,0.0062257400713861,0.14109835028648],[-0.12530156970024,0.088450856506824,-0.10282111912966]],[[-0.32209625840187,-0.13193257153034,0.075031563639641],[0.030240852385759,0.075784049928188,0.079769305884838],[-0.014041660353541,-0.021163377910852,0.01133603323251]],[[-0.13866348564625,-0.16031321883202,-0.26215246319771],[0.030140832066536,0.14918169379234,-0.16817949712276],[-0.11920553445816,-0.16384503245354,-0.11569733917713]],[[0.061870686709881,-0.0634376257658,-0.077776506543159],[0.094308406114578,-0.18307203054428,-0.075455814599991],[-0.030065394937992,0.088455155491829,-0.083750441670418]],[[-0.0065428609959781,-0.13546127080917,0.067923687398434],[0.13026107847691,0.029960421845317,-0.14571911096573],[-0.14275421202183,0.026233665645123,0.095610477030277]],[[-0.010086460970342,0.040686395019293,-0.1599146425724],[0.31640127301216,0.10696963220835,-0.034436870366335],[0.055205747485161,-0.029624108225107,-0.14768427610397]],[[0.092135831713676,-0.0013794117840007,-0.049184381961823],[-0.014280895702541,-0.081487901508808,-0.14415287971497],[-0.13347180187702,0.088513493537903,-0.0029477165080607]],[[-0.21348737180233,-0.16395474970341,0.15421044826508],[-0.10790121555328,-0.029384095221758,0.036456368863583],[-0.053410783410072,-0.034727614372969,0.13409641385078]],[[-0.063834026455879,-0.16329976916313,0.046287331730127],[-0.012466735206544,0.040860265493393,0.20388829708099],[-0.060058701783419,0.027496909722686,0.14550510048866]],[[-0.21639057993889,-0.030376551672816,-0.11329892277718],[0.024153493344784,-0.063343621790409,0.099802784621716],[0.12536355853081,0.1115066036582,-0.10734515637159]],[[-0.16895319521427,-0.096830300986767,0.0019024226348847],[0.038607131689787,-0.11141890287399,-0.02126782014966],[0.067945122718811,0.11976708471775,0.1963602155447]],[[-0.25161978602409,-0.088957943022251,-0.027612799778581],[-0.048940517008305,-0.082838281989098,-0.12808795273304],[0.14945784211159,-0.20473071932793,0.021972306072712]],[[0.14696730673313,-0.0079485364258289,-0.078848801553249],[0.063546821475029,-0.058366890996695,-0.054903589189053],[0.1183173134923,0.017285225912929,-0.10201232135296]],[[-0.027156481519341,0.17848911881447,-0.11755699664354],[0.059031441807747,0.09107232093811,0.094912849366665],[-0.031469121575356,-0.14767727255821,0.025827387347817]],[[-0.07126971334219,-0.034291807562113,0.19112403690815],[0.014858799055219,-0.11259616911411,0.17270648479462],[0.061029952019453,-0.07765306532383,-0.00027031046920456]],[[-0.030897444114089,-0.074095100164413,0.090528883039951],[0.078156590461731,0.099424168467522,0.032957922667265],[0.067121341824532,-0.1475710272789,-0.11045861244202]],[[-0.075261563062668,0.0082967774942517,-0.090379506349564],[-0.20518542826176,-0.13601745665073,-0.12224993854761],[-0.084722027182579,0.032523553818464,0.069924898445606]],[[0.13308309018612,0.033861238509417,0.048310622572899],[-0.069415152072906,0.052237723022699,0.027117012068629],[0.10993187874556,0.019740058109164,-0.05506207048893]],[[0.057231239974499,-0.0046573928557336,-0.24770124256611],[-0.12835673987865,-0.18028324842453,-0.18064148724079],[-0.1315985172987,-0.022751353681087,-0.1933126449585]],[[0.084492281079292,0.13393057882786,0.057536136358976],[-0.14418484270573,0.10189288854599,0.2060023099184],[-0.24858556687832,-0.067741900682449,0.065298244357109]],[[0.023708909749985,-0.085099749267101,-0.11007913202047],[-0.076262556016445,0.10796838253736,0.038791760802269],[-0.21348541975021,0.067190907895565,-0.010935101658106]],[[-0.24053554236889,-0.18288861215115,-0.12551781535149],[-0.11988221108913,-0.012244252488017,0.026144828647375],[-0.14360439777374,0.023738199844956,0.0056560034863651]],[[0.13481085002422,-0.082041688263416,-0.14952489733696],[0.062153209000826,-0.1142814680934,-0.18468163907528],[-0.06504013389349,0.065699212253094,-0.12861531972885]],[[-0.099599242210388,-0.031128911301494,0.0071646650321782],[-0.098567649722099,-0.012492910958827,-0.073104664683342],[0.15014584362507,-0.13850109279156,0.011837628670037]],[[0.032135739922523,-0.0055269608274102,0.010612632147968],[0.13628667593002,0.062007900327444,-0.10638403147459],[0.019618928432465,0.011660991236567,-0.058118257671595]],[[-0.093102514743805,0.056730486452579,0.20207305252552],[-0.015965025871992,-0.099857404828072,0.087411977350712],[-0.0069443471729755,0.099816046655178,0.18436221778393]],[[-0.19335825741291,0.024221602827311,0.25746881961823],[-0.010200307704508,0.23109309375286,-0.022110080346465],[0.0042854086495936,-0.081350401043892,-0.011413348838687]],[[0.056875161826611,0.10630468279123,0.065822020173073],[0.0069962348788977,0.029499918222427,0.16736833751202],[0.10494220256805,-0.27341771125793,-0.16497817635536]],[[0.10576971620321,-0.09267833083868,-0.35383579134941],[-0.036363296210766,-0.04797512665391,0.16835398972034],[-0.03703111410141,0.036351002752781,-0.074688650667667]],[[0.065213218331337,-0.091026715934277,-0.093804329633713],[-0.099528782069683,-0.0449991337955,-0.16679264605045],[-0.016994405537844,0.099448777735233,-0.030860925093293]],[[-0.14026436209679,0.091260880231857,0.020571514964104],[-0.072247110307217,0.13585676252842,0.12722343206406],[0.24786300957203,-0.077283427119255,0.046870693564415]]],[[[-0.049562927335501,-0.093108549714088,0.014334777370095],[-0.046254094690084,-0.0014660900924355,0.021788489073515],[-0.13606083393097,0.12371670454741,-0.12572632730007]],[[0.0046987566165626,0.0065836310386658,0.04715545848012],[0.022524401545525,-0.10521373897791,0.032834064215422],[0.09584990888834,0.11587802320719,-0.12398477643728]],[[-0.1074280962348,0.016334887593985,-0.0074043027125299],[0.010161058045924,0.085573069751263,0.027183186262846],[-0.070886991918087,0.014834253117442,-0.036793176084757]],[[-0.059724293649197,0.034806873649359,-0.022150091826916],[-0.19674043357372,0.16839355230331,0.081322051584721],[-0.10899148881435,0.0081715881824493,0.035443939268589]],[[0.048555333167315,0.10423473268747,-0.16658486425877],[0.072147004306316,0.033329740166664,0.063270829617977],[-0.092231579124928,0.12891182303429,0.024927955120802]],[[-0.02948878519237,0.078288033604622,0.026689574122429],[-0.11714102327824,-0.13120239973068,-0.073576971888542],[-0.23808953166008,0.017843961715698,0.10086359828711]],[[0.01080303452909,-0.027901619672775,0.038592953234911],[0.04941538348794,-0.11346105486155,0.0016058860346675],[0.031396679580212,-0.081210620701313,-0.0059534427709877]],[[0.12828490138054,0.051030311733484,-0.048690520226955],[0.051160868257284,-0.028235433623195,0.036827448755503],[-0.13943049311638,-0.13478420674801,0.043745547533035]],[[-0.053496234118938,0.030663426965475,0.089294336736202],[0.066643834114075,-0.039024520665407,0.0052834753878415],[0.16701319813728,-0.082566067576408,-0.1854500323534]],[[-0.069852538406849,0.0022929620463401,-0.012153283692896],[-0.035655431449413,0.040705110877752,-0.086259394884109],[0.013105735182762,-0.028319695964456,0.017525188624859]],[[-0.040086377412081,-0.10747975111008,0.12737517058849],[-0.057701051235199,-0.045845746994019,-0.011537444777787],[0.03058504499495,0.052045527845621,0.04281709343195]],[[-0.010494758374989,-0.082514263689518,-0.07722070813179],[-0.018948884680867,0.1815457046032,-0.06243247538805],[-0.044130921363831,-0.10310553759336,0.012404727749527]],[[0.013453580439091,0.064430512487888,-0.014629749581218],[-0.061580501496792,-0.033896643668413,-0.070892497897148],[-0.029403144493699,0.20598067343235,-0.091220580041409]],[[-0.011868600733578,0.2026774585247,0.14590609073639],[-0.097548238933086,-0.10667220503092,0.032364796847105],[0.014845964498818,-0.12379521876574,-0.023118536919355]],[[-0.088560447096825,0.020204164087772,0.0853655859828],[-0.18991093337536,-0.1011778190732,-0.0081450715661049],[0.045486886054277,-0.06840493530035,0.037106446921825]],[[0.053696122020483,-0.057562407106161,0.17757597565651],[0.091043204069138,-0.087438806891441,0.014985063113272],[-0.026643894612789,-0.052557893097401,-0.051099091768265]],[[-0.01644585095346,-0.08999315649271,-0.026137687265873],[0.11311002075672,0.041817106306553,-0.0065749920904636],[0.0044662556611001,-0.21036173403263,0.0035245413891971]],[[-0.048386126756668,-0.040480248630047,0.06467005610466],[0.024519193917513,-0.16363351047039,-0.010760271921754],[-0.12225007265806,0.037549316883087,0.048468351364136]],[[-0.031417518854141,-0.22924429178238,0.12902230024338],[0.0042521911673248,-0.070903480052948,-0.089327409863472],[-0.045649878680706,-0.080328948795795,0.061819724738598]],[[0.07389759272337,-0.17478077113628,0.025144832208753],[0.22656911611557,-0.13699914515018,-0.00071037415182218],[-0.06795421987772,0.06858092546463,-0.048800770193338]],[[-0.098569467663765,0.11904194951057,-0.067296586930752],[-0.062931515276432,-0.036094535142183,0.047558158636093],[-0.071435160934925,-0.19146619737148,-0.062617711722851]],[[0.034757934510708,-0.054290220141411,-0.030064737424254],[0.056605082005262,-0.074388734996319,0.012406229041517],[-0.054491877555847,0.14672654867172,-0.0042689144611359]],[[-0.0336002856493,-0.23736031353474,-0.0071048242971301],[-0.12066286802292,0.11615744233131,0.16615726053715],[0.028420874848962,0.076174385845661,0.07425357401371]],[[-0.091347903013229,0.077547013759613,-0.018150912597775],[0.079472161829472,0.10909267514944,0.061475809663534],[-0.073630169034004,0.0026876074261963,0.068770505487919]],[[-0.012163482606411,0.15060918033123,-0.048665586858988],[0.1262097209692,-0.17446288466454,-0.039341673254967],[0.094091884791851,0.094883382320404,-0.073104843497276]],[[-0.029495615512133,0.077241323888302,-0.022372931241989],[-0.22118648886681,0.07919953763485,0.093441568315029],[-0.010406410321593,-0.056159872561693,0.070100128650665]],[[-0.016690704971552,0.15131314098835,-0.059799548238516],[-0.048375274986029,0.025235842913389,-0.063605412840843],[0.086790695786476,0.019742405042052,0.025459032505751]],[[0.041723400354385,-0.090083792805672,-0.04398275539279],[-0.15704090893269,-0.085332036018372,-0.040613751858473],[-0.0042341039516032,-0.020303571596742,0.039292212575674]],[[-0.055717248469591,0.013816557824612,0.046894777566195],[-0.10335198789835,0.23441083729267,0.079584382474422],[0.017067544162273,-0.14020654559135,0.094810009002686]],[[-0.0061377384699881,-0.072338685393333,0.055661592632532],[0.054589491337538,0.05548195540905,-0.12832142412663],[0.030593350529671,0.097228795289993,-0.066058829426765]],[[0.068136230111122,-0.045870631933212,-0.0181337390095],[0.007791236974299,0.062922187149525,0.0073120626620948],[-0.061118122190237,-0.041036080569029,0.070444069802761]],[[-0.021746918559074,-0.077028840780258,-0.027097227051854],[-0.0011631522793323,-0.13923488557339,-0.01018063724041],[-0.0087619312107563,0.12908054888248,-0.085736498236656]]],[[[-0.032048106193542,-0.026773413643241,-0.051180474460125],[-0.039932895451784,0.0093381674960256,-0.12508594989777],[-0.020378703251481,-0.048381570726633,-0.16334122419357]],[[0.11215092241764,0.054931003600359,-0.010440320707858],[0.064977563917637,-0.048147339373827,0.023607702925801],[-0.063735701143742,-0.06585443764925,-0.036420091986656]],[[0.12492699176073,-0.014931986108422,0.10106164216995],[-0.07336850464344,-0.065795823931694,-0.04953807592392],[-0.065721496939659,0.042016368359327,-0.0014447974972427]],[[0.072896555066109,-0.030840655788779,-0.071669213473797],[-0.042548179626465,0.0087391072884202,-0.11193966120481],[0.128188341856,0.057970564812422,-0.10607171803713]],[[-0.12802566587925,0.18983617424965,-0.18846343457699],[0.071531675755978,-0.11355450749397,0.15541213750839],[0.054533034563065,0.024787159636617,-0.071926295757294]],[[-0.12968690693378,0.077907361090183,0.042217634618282],[0.019740169867873,-0.047060135751963,-0.10452197492123],[0.0069707878865302,0.0088014537468553,-0.035154059529305]],[[-0.0063635194674134,-0.018007546663284,0.11606226116419],[0.11043327301741,0.060815945267677,-0.098852194845676],[-0.092143759131432,0.11761975288391,-0.0071979281492531]],[[-0.059912368655205,0.055808145552874,0.017753509804606],[-0.036370903253555,0.16916692256927,-0.058620717376471],[0.0040686074644327,-0.015693712979555,-0.076531782746315]],[[-0.019298797473311,0.03862226754427,0.057835295796394],[-0.18101327121258,-0.078900046646595,0.161436393857],[0.18275144696236,-0.12060608714819,0.063350602984428]],[[-0.15082670748234,-0.042808067053556,0.027401331812143],[-0.074759192764759,0.03440785035491,0.044582266360521],[0.10759183764458,0.09744593501091,-0.012443516403437]],[[-0.10134240984917,-0.0469591319561,-0.024430867284536],[0.036360759288073,-0.053634289652109,-0.033811457455158],[-0.038100000470877,-0.027290904894471,0.11339902877808]],[[0.045401200652122,-0.10069192945957,-0.047907069325447],[0.063313774764538,-0.090509258210659,0.19319546222687],[-0.1057657673955,0.043450981378555,-0.044141627848148]],[[0.0065562422387302,0.17742401361465,0.18781216442585],[-0.066708326339722,-0.028289614245296,-0.15595661103725],[0.078347489237785,-0.042257461696863,-0.084263168275356]],[[0.049875069409609,-0.069478563964367,0.03437576815486],[0.090445011854172,0.11650573462248,-0.033146392554045],[-0.099114753305912,-0.10547617822886,-0.066963382065296]],[[-0.05783786252141,0.0088609056547284,0.092558011412621],[-0.12366410344839,-0.075901418924332,0.12896454334259],[-0.25293320417404,0.068305984139442,0.037936560809612]],[[-0.15136829018593,0.078786060214043,-0.0013073114678264],[-0.0055304230190814,-0.20723956823349,0.076052866876125],[-0.068347528576851,0.15165674686432,-0.01222238317132]],[[0.072964772582054,0.044628519564867,-0.092556223273277],[0.15549151599407,0.10613951086998,0.10151473432779],[0.0026391868013889,0.048544812947512,0.086903132498264]],[[-0.085345573723316,0.060942947864532,0.068708062171936],[-0.053730629384518,0.18639570474625,0.00026722848997451],[-0.032094441354275,0.063004799187183,0.010522924363613]],[[0.029969524592161,-0.07641514390707,0.18799239397049],[-0.031205646693707,0.13875077664852,-0.035957645624876],[0.022791126742959,-0.13936543464661,-0.010657045058906]],[[0.070200130343437,-0.11474653333426,-0.12737639248371],[-0.07940436154604,0.0048059029504657,0.013878318481147],[0.080942586064339,-0.11376184225082,0.017697231844068]],[[0.16457089781761,-0.10359359532595,-0.12928237020969],[0.052014876157045,0.12236777693033,0.10383561253548],[0.036541007459164,-0.095267049968243,-0.14087177813053]],[[-0.071099057793617,0.11102741211653,-0.10120648890734],[-0.12978187203407,0.0055023729801178,-0.023011531680822],[-0.026556586846709,0.023925986140966,0.14678122103214]],[[-0.13722401857376,-0.092457935214043,-0.1119140535593],[-0.09277106821537,0.10100661218166,-0.18487805128098],[-0.019788503646851,0.18279899656773,0.011852688156068]],[[0.052272081375122,0.074617244303226,-0.10613842308521],[0.0017329088877887,0.017818842083216,-0.08259766548872],[0.15260325372219,-0.15915149450302,0.042349815368652]],[[-0.051117606461048,0.097831696271896,-0.0052014105021954],[-0.22127705812454,0.016539754346013,-0.057255618274212],[0.12713408470154,0.045805286616087,0.065308079123497]],[[-0.1678806245327,0.1284024566412,0.016530761495233],[-0.086623162031174,0.04846503958106,-0.019828364253044],[-0.0025950723793358,-0.023300936445594,-0.039328947663307]],[[-0.12088122218847,0.037623859941959,-0.22634747624397],[0.0014537664828822,0.1590374559164,0.10926628857851],[-0.040944557636976,0.014329479075968,0.0039071501232684]],[[-0.11172652989626,-0.1258832514286,0.071192301809788],[-0.03925096988678,-0.0075503569096327,0.1177281960845],[-0.080193608999252,-0.073335692286491,0.011935382150114]],[[0.046615891158581,-0.033157903701067,-0.048853255808353],[-0.0060556451790035,0.046123165637255,0.019419573247433],[-0.095112465322018,-0.035525768995285,-0.056073952466249]],[[-0.083260208368301,0.048039101064205,-0.043405614793301],[-0.049171891063452,-0.043898239731789,0.10109166800976],[0.11195945739746,-0.1245054975152,-0.026526536792517]],[[0.051912140101194,-0.19683480262756,-0.017037181183696],[0.063698068261147,-0.20634606480598,-0.067406222224236],[0.069128714501858,0.0021659964695573,0.070388399064541]],[[-0.016566323116422,-0.071206636726856,-0.013727722689509],[0.051313690841198,0.20871536433697,0.0096267387270927],[0.0075842472724617,-0.072156235575676,0.073799021542072]]],[[[-0.048578187823296,0.067889660596848,-0.11201582103968],[0.12241434305906,0.041019152849913,-0.00048539202543907],[0.046976581215858,0.070093937218189,-0.015498124063015]],[[-0.033589962869883,0.048172686249018,0.0022651941981167],[0.045624006539583,0.010168782435358,-0.1316152215004],[0.028549000620842,-0.040635693818331,-0.073410339653492]],[[-0.049770370125771,-0.098598219454288,-0.014068304561079],[-0.12114381790161,0.080134190618992,0.05844447389245],[-0.072265803813934,-0.052063677459955,0.12462864816189]],[[0.04117301478982,0.01334408018738,0.14660832285881],[-0.21453368663788,-0.16765388846397,-0.15627580881119],[-0.17983239889145,-0.12336165457964,-0.10316523909569]],[[-0.057751290500164,0.021345863118768,-0.077823653817177],[-0.10636455565691,-0.072050519287586,-0.077444188296795],[0.039770215749741,-0.00065782701130956,0.13112606108189]],[[-0.084230661392212,0.10734970122576,-0.053868621587753],[0.0087688183411956,-0.023184698075056,0.0090482085943222],[-0.036549605429173,0.18341791629791,0.032251723110676]],[[-0.036154367029667,0.12831801176071,-0.11883582174778],[-0.18333435058594,0.029473461210728,0.090251922607422],[-0.24043147265911,-0.093368202447891,0.089449092745781]],[[-0.089635401964188,0.13989396393299,0.12482897937298],[0.14231185615063,0.065043069422245,-0.14868472516537],[-0.011127575300634,-0.070063278079033,0.099816031754017]],[[-0.02060117572546,-0.16826429963112,0.090680561959743],[0.065672881901264,-0.11675395071507,0.0091380840167403],[0.28772678971291,-0.38198736310005,-0.16719835996628]],[[0.11428632587194,0.037160228937864,-0.076992131769657],[-0.067833669483662,-0.008721143938601,0.14228318631649],[-0.10236813127995,-0.08737014234066,0.13005387783051]],[[-0.097653679549694,0.033769886940718,-0.11131437122822],[0.084845714271069,0.17888395488262,0.094421915709972],[0.035007022321224,0.036255437880754,0.022824896499515]],[[0.0039547621272504,-0.14436581730843,-0.19938999414444],[-0.065001629292965,0.12467197328806,-0.082484066486359],[0.12433575093746,-0.0042265183292329,0.058850646018982]],[[-0.13821735978127,0.13500897586346,-0.049075976014137],[0.060197327286005,0.087426617741585,-0.06267025321722],[-0.11990424990654,-0.067573897540569,-0.025528134778142]],[[0.27692925930023,-0.071964606642723,-0.073212236166],[-0.028104482218623,0.065478682518005,-0.11524851620197],[-0.10405328124762,-0.14729122817516,0.023788137361407]],[[0.072633929550648,-0.23499463498592,-0.25952351093292],[0.17118760943413,0.34218662977219,-0.21179169416428],[-0.066307283937931,-0.043503165245056,-0.0014017273206264]],[[0.018948212265968,-0.16166651248932,-0.15747284889221],[0.10783302783966,-0.094118215143681,-0.024149056524038],[0.075409509241581,0.029313551262021,0.14367803931236]],[[-0.14129011332989,-0.054765041917562,-0.12076272070408],[-0.073694095015526,-0.064420752227306,-0.0004869548138231],[-0.099292129278183,0.074250474572182,-0.029017098248005]],[[-0.081659600138664,-0.0061720791272819,0.033114898949862],[-0.13793866336346,0.10297626256943,0.077237762510777],[-0.012890443205833,0.02697704359889,-0.13530266284943]],[[0.003283926518634,0.08439327031374,0.2113062441349],[0.063410386443138,0.026540847495198,0.11713104695082],[0.034892775118351,0.12950463593006,0.0084967184811831]],[[-0.079462334513664,-0.096998155117035,-0.097126364707947],[-0.036159455776215,-0.11134268343449,-0.17944319546223],[0.016772825270891,0.088488295674324,0.13251312077045]],[[0.030467573553324,0.030822264030576,0.2950564622879],[-0.082802101969719,-0.071906112134457,-0.0033754883334041],[0.15532602369785,-0.18441945314407,-0.19648922979832]],[[0.057234235107899,-0.023715557530522,0.14107771217823],[0.10369507223368,0.1660613566637,-0.11717643588781],[-0.070682443678379,-0.088384792208672,-0.22771897912025]],[[0.0056851399131119,0.16740739345551,0.2385379076004],[-0.060083117336035,0.028674667701125,-0.067496828734875],[0.06329208612442,-0.026936268433928,-0.16112484037876]],[[-0.15875765681267,0.00056746980408207,0.040212523192167],[-0.10574423521757,-0.15236346423626,-0.13382463157177],[0.05302869528532,-0.033780485391617,-0.076220899820328]],[[0.012965097092092,-0.042849749326706,0.083415649831295],[-0.18442122638226,-0.15232446789742,0.054775208234787],[0.25704598426819,0.046827983111143,-0.075846567749977]],[[0.10274950414896,-0.0029112068004906,0.073074094951153],[0.074623353779316,-0.083384588360786,-0.11475168168545],[-0.1057451069355,-0.062052827328444,0.013761381618679]],[[0.031348992139101,-0.21227210760117,0.06866741925478],[0.020401872694492,0.19671301543713,-0.064326673746109],[-0.066945768892765,-0.18717058002949,0.043147392570972]],[[-0.17396664619446,-0.38527348637581,-0.065530344843864],[0.29256284236908,0.071340657770634,0.044990584254265],[0.11365818232298,0.090021215379238,-0.16067790985107]],[[-0.041937913745642,0.03060514293611,-0.1632853448391],[0.14785277843475,-0.033945314586163,-0.23665447533131],[0.18561677634716,0.077240064740181,-0.15131531655788]],[[0.0041518355719745,0.20579779148102,-0.053093995898962],[-0.20121352374554,-0.25929376482964,0.12037009745836],[-0.048544280230999,-0.06425042450428,-0.014999289065599]],[[0.050527054816484,-0.03644648194313,-0.15029184520245],[-0.1244619935751,0.020064862444997,0.018688850104809],[-0.15070234239101,0.00082345952978358,0.16058479249477]],[[-0.11224692314863,-0.02458668500185,-0.049352686852217],[0.072241775691509,0.18016284704208,-0.09988734126091],[0.059588003903627,0.16033561527729,0.026639642193913]]],[[[-0.20587049424648,0.092925138771534,-0.052923172712326],[0.020971035584807,-0.019517468288541,-0.08455602824688],[0.008083482272923,-0.09288477152586,-0.0018948423676193]],[[0.014472980052233,0.12234675884247,0.011329263448715],[-0.0015219708438963,-0.032249841839075,-0.071916855871677],[-0.0006253857864067,-0.027141712605953,0.011062270030379]],[[-0.11172089725733,0.081489689648151,0.0048331520520151],[-0.0081867687404156,-0.026370596140623,-0.066192589700222],[0.0089232455939054,0.047451417893171,-0.027771508321166]],[[0.10585056245327,-0.14230604469776,-0.095189854502678],[-0.25856971740723,0.12295760214329,0.019692262634635],[0.026226347312331,0.081531018018723,0.058795310556889]],[[0.064702622592449,-0.074709638953209,-0.086563564836979],[-0.09696851670742,0.091786526143551,0.091385267674923],[-0.054099075496197,0.08332372456789,-0.067585296928883]],[[-0.0096312565729022,0.0070436289533973,0.022473987191916],[-0.071328230202198,0.054637812077999,0.060295943170786],[0.023457670584321,-0.047652095556259,-0.030794693157077]],[[-0.10583718121052,0.11927754431963,-0.01833825185895],[0.031016238033772,-0.016695439815521,-0.016368580982089],[-0.044107269495726,0.018543865531683,-0.017241727560759]],[[0.032842289656401,-0.01343035325408,-0.0069358735345304],[-0.040560968220234,0.00036647589877248,-0.026021407917142],[0.037998955696821,-0.017266850918531,-0.027949433773756]],[[0.028597719967365,0.10195456445217,-0.16971276700497],[0.040007580071688,-0.058054145425558,0.11232933402061],[0.064988695085049,-0.10003356635571,0.034227520227432]],[[-0.13956464827061,-0.0030315739568323,0.071341559290886],[-0.11567936837673,0.053168375045061,0.15639066696167],[-0.0035663063172251,0.018031334504485,0.033314406871796]],[[0.019349280744791,0.011103429831564,-0.10935489833355],[-0.095424562692642,-0.06832043081522,-0.15366208553314],[-0.018567759543657,0.044540110975504,-0.012497657909989]],[[-0.18503247201443,0.086684383451939,0.092416040599346],[0.029299626126885,-0.11841839551926,0.11501606553793],[-0.052182178944349,-0.035039752721786,0.047662913799286]],[[-0.076661013066769,-0.071296580135822,0.13473388552666],[0.10500741750002,-0.20370331406593,-0.1405785381794],[0.0094367749989033,-0.11220072954893,-0.075256012380123]],[[0.051146946847439,-0.29217958450317,0.066587463021278],[-0.0098381079733372,-0.090642780065536,-0.075923569500446],[0.026235355064273,0.06955049186945,0.082997523248196]],[[-0.054013550281525,0.17167967557907,0.080326594412327],[-0.080269709229469,0.21842104196548,-0.062374319881201],[0.036795999854803,0.046663008630276,-0.00013138099166099]],[[0.067400708794594,-0.28442543745041,0.17121952772141],[-0.04124715924263,0.014479886740446,0.17580182850361],[-0.1468465924263,-0.025528565049171,-0.031136844307184]],[[0.045588362962008,-0.04459985345602,-0.042283371090889],[0.0016062925569713,0.15084391832352,0.12532487511635],[0.092862486839294,0.010517446324229,0.046632908284664]],[[0.052179895341396,-0.093367278575897,-0.032694399356842],[0.020894957706332,0.084168583154678,0.054991848766804],[-0.013031259179115,0.030446356162429,-0.078032545745373]],[[-0.0067375362850726,-0.016664424911141,-0.016069503501058],[0.036894608289003,0.071172073483467,-0.11972975730896],[-0.020472908392549,-0.013137524016201,0.00063338223844767]],[[0.057513866573572,-0.090367130935192,0.071331642568111],[-0.022224916145205,-0.049509339034557,-0.12474787980318],[-0.05723911523819,0.005187816452235,-0.010326300747693]],[[0.020198788493872,0.055346541106701,-0.054877556860447],[-0.10450191795826,-0.018126334995031,-0.033128805458546],[-0.041962921619415,-0.00042894534999505,-0.043843250721693]],[[0.097016528248787,-0.017367100343108,-0.10219940543175],[-0.025514204055071,-0.05792224407196,-0.11932969093323],[0.024071402847767,0.062348760664463,0.0061753615736961]],[[-0.17944046854973,0.05186865106225,-0.054958529770374],[-0.11906000971794,0.097694613039494,0.047427885234356],[0.0031935032457113,0.15658028423786,0.018294598907232]],[[-0.051473837345839,0.068602070212364,-0.18428781628609],[-0.01535779517144,-0.024614196270704,-0.056205313652754],[0.030124450102448,0.00061172229470685,-0.046078383922577]],[[0.043867845088243,0.014970174059272,0.044617366045713],[-0.072910189628601,-0.09214261174202,0.013017835095525],[-0.025971930474043,0.045542016625404,0.021600231528282]],[[-0.059184443205595,-0.04800858348608,0.02234161272645],[0.11838644742966,-0.27215415239334,0.1427248865366],[-0.018628619611263,-0.050180502235889,-0.078239306807518]],[[-0.0032481648959219,0.24078072607517,-0.62627345323563],[-0.0050197299569845,0.025202684104443,0.10140423476696],[0.054725494235754,-0.0027069526258856,0.043611120432615]],[[-0.024908885359764,0.14512068033218,0.036150939762592],[-0.0097971064969897,0.16903617978096,-0.11644811928272],[-0.078895144164562,0.08673257380724,-0.038182273507118]],[[0.17012396454811,-0.030331380665302,-0.05563260614872],[0.066827684640884,-0.019383432343602,-0.086019530892372],[0.077010296285152,0.19226697087288,-0.12099865823984]],[[-0.012894500046968,0.12831437587738,-0.11266369372606],[0.0021722675301135,-0.28096303343773,0.028500683605671],[-0.036479268223047,-0.11284990608692,0.01426902320236]],[[0.017767783254385,-0.16434973478317,0.060702443122864],[-0.054759856313467,-0.084786906838417,0.03984971717],[-0.082757160067558,-0.033911969512701,0.036585353314877]],[[0.087540283799171,-0.21593314409256,0.096657171845436],[0.059770420193672,-0.062145337462425,0.091945424675941],[0.0408034324646,0.0071037160232663,0.16281913220882]]],[[[-0.20500762760639,-0.12291868031025,0.19932827353477],[-0.17627854645252,0.038089655339718,-0.11565366387367],[-0.10266897827387,0.032582715153694,-0.10978630185127]],[[-0.02075950987637,0.040517490357161,0.080747574567795],[0.28199237585068,0.23463715612888,0.00083085085498169],[-0.023081781342626,0.098668649792671,0.18559174239635]],[[-0.044400729238987,0.039121400564909,0.13602025806904],[-0.026096925139427,-0.038478970527649,0.13584391772747],[-0.026881104335189,0.098181717097759,0.16360802948475]],[[0.11262851208448,-0.043974407017231,-0.083880580961704],[-0.037651125341654,0.02077167481184,-0.11775057762861],[0.0060406653210521,-0.053990557789803,-0.16852597892284]],[[0.025805871933699,-0.04591978341341,-0.21512109041214],[0.1001698449254,0.085850089788437,0.1304903626442],[0.21509186923504,0.039070889353752,0.0070188986137509]],[[-0.095732294023037,0.079996898770332,-0.041310016065836],[-0.20318557322025,0.061944585293531,0.15178397297859],[0.0053628981113434,-0.013111421838403,-0.06785923987627]],[[-0.16464659571648,0.063035175204277,-0.08807922154665],[0.086402393877506,0.12768119573593,-0.053632259368896],[-0.10162235051394,-0.17157244682312,-0.011547316797078]],[[-0.1089036911726,0.19656248390675,0.041017189621925],[-0.075026601552963,-0.094495333731174,0.047039106488228],[-0.085701555013657,-0.10064286738634,-0.15992061793804]],[[0.0023174590896815,-0.10279167443514,0.020542122423649],[-0.078191056847572,-0.0096586225554347,0.03974024951458],[0.071074135601521,0.016380617395043,-0.10598600655794]],[[-0.087019212543964,-0.018885098397732,0.13107378780842],[-0.060315504670143,-0.21117293834686,0.020376740023494],[0.018328217789531,-0.11870607733727,0.10146824270487]],[[-0.15198850631714,0.06806992739439,0.17908053100109],[0.10577166825533,-0.1423404365778,0.12962962687016],[-0.17071540653706,-0.042111091315746,-0.042368400841951]],[[-0.049841079860926,-0.073866754770279,-0.21917439997196],[-0.026453297585249,0.010896667838097,-0.013996381312609],[0.055871076881886,0.021524760872126,0.036285415291786]],[[-0.12428346276283,-0.09851111471653,0.025552546605468],[-0.11620730906725,0.014593351632357,0.071211911737919],[-0.054703772068024,0.027010524645448,0.11793649196625]],[[-0.13820205628872,-0.033239625394344,0.11333165317774],[-0.20235311985016,0.094259634613991,0.012780004180968],[-0.063161052763462,0.020998455584049,0.24128712713718]],[[0.038979593664408,-0.076767198741436,-0.17176447808743],[-0.010506359860301,0.081169754266739,0.014117637649179],[-0.059242188930511,-0.064827479422092,-0.021554013714194]],[[0.048528332263231,0.093552373349667,-0.24411143362522],[-0.0074146208353341,0.033868547528982,0.062813952565193],[0.10048419982195,-0.02213478833437,0.10568758845329]],[[-0.17635288834572,-0.16657087206841,-0.0090063288807869],[-0.0053603067062795,0.001419868436642,0.0068480088375509],[-0.16797475516796,-0.018300535157323,0.18116334080696]],[[-0.057628139853477,0.063034117221832,-0.061828427016735],[-0.1136712282896,0.0028572406154126,0.13558526337147],[-0.017256461083889,-0.080679900944233,-0.15070283412933]],[[-0.045444682240486,-0.1763907968998,0.22094143927097],[-0.013195427134633,-0.10818775743246,-0.034780222922564],[-0.1287147551775,-0.12236323952675,-0.096407227218151]],[[0.056508153676987,-0.22264099121094,-0.020506599918008],[-0.018278514966369,-0.1041027829051,-0.036965258419514],[0.2189255207777,0.10364306718111,0.14034858345985]],[[0.059824984520674,0.0095506645739079,-0.020810943096876],[0.027721041813493,0.079488091170788,-0.072476215660572],[0.18287551403046,0.060656525194645,-0.11087146401405]],[[-0.046681899577379,-0.04532453417778,0.26833409070969],[0.0014512034831569,-0.0011278878664598,-0.064304932951927],[-0.034479003399611,-0.17851956188679,0.050545912235975]],[[0.028985694050789,0.067919336259365,-0.028146790340543],[0.026818964630365,-0.1110343337059,-0.19684730470181],[-0.055436939001083,-0.17734920978546,-0.22237040102482]],[[0.074341826140881,-0.070827521383762,0.039061237126589],[-0.11683861166239,0.11641960591078,-0.048767242580652],[0.017928143963218,0.08763325214386,-0.057721327990294]],[[-0.059275418519974,0.14669558405876,0.1262921243906],[0.019346192479134,0.072815038263798,0.0048904167488217],[-0.16469059884548,-0.091149546205997,0.0034327232278883]],[[0.05701394751668,-0.042933233082294,0.30835059285164],[0.015363260172307,-0.11407773941755,0.048002284020185],[-0.094679944217205,-0.11268308758736,-0.083355963230133]],[[-0.094355292618275,0.058830287307501,-0.15909764170647],[-0.072136953473091,-0.16514658927917,-0.17647916078568],[-0.23914878070354,-0.20281979441643,0.022798174992204]],[[0.0095578702166677,0.043308611959219,0.02447460219264],[0.061296552419662,0.1221129372716,-0.023007100448012],[-0.13425476849079,-0.039183221757412,-0.059779584407806]],[[0.088437423110008,0.061491157859564,-0.18287941813469],[0.24794653058052,0.12162547558546,-0.036650877445936],[-0.061117962002754,0.02334626019001,-0.13402895629406]],[[-0.086647368967533,0.062660671770573,-0.015546746551991],[0.039018526673317,0.058745160698891,-0.04068909958005],[-0.0098804868757725,-0.016079355031252,0.0056340652517974]],[[0.024479661136866,0.038920544087887,-0.041014943271875],[-0.11332188546658,0.036753173917532,0.040979895740747],[-0.0089070601388812,-0.0083885733038187,-0.10830771923065]],[[0.00013414879504126,0.13141775131226,0.010641649365425],[-0.11946282535791,0.017345434054732,-0.060273081064224],[-0.089352332055569,0.035545419901609,-0.16176085174084]]],[[[-0.096567526459694,0.15972113609314,-0.049613058567047],[0.043075211346149,0.092753432691097,0.053875043988228],[-0.081627868115902,-0.055587258189917,-0.057485014200211]],[[0.065542109310627,-0.026293013244867,0.03805585578084],[-0.068997994065285,-0.027728704735637,0.013759233057499],[-0.10234590619802,-0.0021884262096137,0.069872103631496]],[[0.099492892622948,0.031835652887821,0.016330644488335],[-0.088404580950737,-0.019688718020916,-0.13570393621922],[0.17079135775566,0.093449711799622,0.047606807202101]],[[-0.10739536583424,-0.13998021185398,-0.16731651127338],[-0.10666715353727,0.12122554332018,-0.057548504322767],[-0.16560080647469,0.048494897782803,0.21174101531506]],[[0.046987902373075,-0.24727953970432,0.005712803453207],[-0.14176504313946,-0.063442446291447,0.021095175296068],[0.068268209695816,-0.091851606965065,-0.10493712872267]],[[0.018148804083467,0.033803183585405,-0.065153107047081],[0.0095227425917983,-0.10822676867247,0.026758702471852],[0.27205726504326,0.21719996631145,-0.22561195492744]],[[0.089969381690025,-0.15381853282452,0.0010910404380411],[0.097471103072166,-0.020967265591025,-0.078734710812569],[-0.067544482648373,-0.14885801076889,-0.061809681355953]],[[-0.027789365500212,-0.050962027162313,-0.14226926863194],[-0.0092108324170113,-0.0062927743420005,0.064313285052776],[-0.016992786899209,-0.0033036356326193,-0.21862319111824]],[[-0.13481524586678,-0.056315563619137,-0.038597166538239],[0.17174211144447,-0.23815570771694,0.10614071041346],[-0.071452207863331,-0.084102436900139,-0.060750883072615]],[[0.016545668244362,0.13422073423862,-0.024908427149057],[0.054072320461273,-0.023389857262373,0.016136037185788],[-0.037673823535442,0.09391275793314,-0.015234582126141]],[[0.068076774477959,-0.041862897574902,-0.091495603322983],[0.1151897162199,-0.10571721196175,-0.10453519970179],[0.12801848351955,0.0033208213280886,-0.058324731886387]],[[0.064155757427216,-0.15534269809723,-0.20342196524143],[-0.21935643255711,-0.092943787574768,0.14384564757347],[0.13303430378437,-0.0434057302773,0.066390380263329]],[[-0.19086034595966,-0.11742900311947,0.086208425462246],[0.21037915349007,0.087270453572273,0.039004884660244],[0.063641607761383,-0.10986918956041,-0.061632506549358]],[[0.18712721765041,0.047221176326275,-0.11185686290264],[0.13937321305275,0.068044871091843,-0.076935090124607],[0.023734614253044,-0.068580284714699,0.068492718040943]],[[-0.096895411610603,-0.17701481282711,-0.026715788990259],[0.019741399213672,0.26034939289093,-0.01575581356883],[0.27051621675491,0.033491618931293,0.03266865760088]],[[-0.16702868044376,0.065561808645725,0.069651164114475],[-0.02909317612648,0.014364713802934,0.16224220395088],[-0.17050750553608,-0.067258186638355,-0.05259931832552]],[[0.077321596443653,0.020206801593304,-0.061046399176121],[-0.080212667584419,-0.092408083379269,-0.19050695002079],[0.065046824514866,0.096280388534069,0.021346658468246]],[[-0.070865727961063,-0.1128189265728,-0.19660863280296],[-0.14672274887562,-0.17733551561832,0.030714778229594],[-0.10912600904703,-0.29430627822876,-0.17445592582226]],[[0.038589809089899,0.32010793685913,-0.14692209661007],[-0.0015563300112262,0.12842218577862,-0.18331952393055],[-0.035392895340919,0.13465863466263,-0.10076343268156]],[[-0.14431998133659,-0.18045870959759,-0.20606245100498],[-0.40086486935616,-0.22571143507957,-0.34612354636192],[-0.23468168079853,-0.26263919472694,-0.33686569333076]],[[-0.048726867884398,0.085821069777012,0.0048730885609984],[0.12456009536982,0.10658460110426,-0.13855417072773],[0.10633663088083,-0.048427481204271,0.0088671054691076]],[[0.066823191940784,0.030720490962267,0.045222714543343],[0.019574098289013,0.060540281236172,0.20995439589024],[-0.060672577470541,-0.11027086526155,-0.0099043752998114]],[[0.21436202526093,0.17843943834305,-0.0040022856555879],[0.19652795791626,-0.013427643105388,0.17836593091488],[-0.24031308293343,-0.11431854218245,0.10780039429665]],[[0.0054690036922693,0.060722462832928,0.19741585850716],[-0.014716849662364,-0.023262299597263,-0.062610417604446],[-0.19319076836109,-0.032123293727636,-0.066123105585575]],[[-0.0042136181145906,0.011315913870931,0.11096102744341],[0.16769428551197,-0.072060748934746,0.10242480784655],[-0.14576604962349,-0.049551840871572,-0.029905589297414]],[[0.0066586686298251,0.038315985351801,-0.15061083436012],[-0.016833396628499,-0.057614665478468,0.16867698729038],[-0.13133262097836,0.098215200006962,0.062635332345963]],[[-0.022117329761386,-0.069962941110134,-0.071693733334541],[0.05004795640707,-0.31637805700302,0.055839110165834],[-0.17732961475849,-0.093846961855888,0.095562875270844]],[[0.21369084715843,0.072784535586834,-0.11219351738691],[0.053225316107273,-0.095984026789665,0.065121941268444],[0.088435292243958,0.057196259498596,-0.054742615669966]],[[0.0014860302908346,-0.056713212281466,0.21530772745609],[0.058740261942148,0.05486198887229,0.0087498398497701],[0.17416536808014,-0.12904113531113,-0.029043663293123]],[[0.021447010338306,0.077681437134743,0.020318930968642],[-0.1698377430439,0.12768167257309,-0.15731230378151],[-0.13588955998421,-0.015073021873832,-0.031336385756731]],[[-0.044191718101501,-0.061239060014486,-0.07648354023695],[-0.047339335083961,-0.081586986780167,-0.073159977793694],[-0.073423005640507,-0.055626604706049,0.095566965639591]],[[-0.0097851436585188,0.028276264667511,0.1141252219677],[-0.064085319638252,-0.016433943063021,-0.037553984671831],[0.031632300466299,0.02021623775363,-0.037076003849506]]],[[[-0.085615552961826,-0.082173854112625,0.045079711824656],[0.11077204346657,-0.0071401209570467,0.18051433563232],[0.11160821467638,0.079081699252129,0.10187977552414]],[[0.033300589770079,-0.076125547289848,-0.15344727039337],[0.011489296332002,0.015106922015548,0.094166435301304],[0.085729815065861,-0.10790048539639,-0.1181073859334]],[[0.052091255784035,0.010456153191626,-0.038126673549414],[-0.082833491265774,-0.071348235011101,-0.043376184999943],[0.080543301999569,-0.073494628071785,-0.11090774089098]],[[0.07107324898243,0.15370881557465,-0.048343561589718],[-0.098820701241493,0.084363013505936,-0.0026561019476503],[-0.036006536334753,-0.08500312268734,0.068439111113548]],[[-0.031715326011181,0.11769262701273,-0.034849375486374],[0.06741888821125,-0.072705291211605,-0.21535460650921],[0.10777992755175,0.011059854179621,-0.14427061378956]],[[-0.31283861398697,0.18478690087795,-0.098462343215942],[-0.060539063066244,0.074808247387409,0.038815699517727],[0.0061574135906994,-0.017787050455809,0.072366692125797]],[[-0.22794130444527,-0.11629121750593,-0.10923614352942],[0.10366131365299,-0.0074419570155442,-0.094082660973072],[-0.14268934726715,0.056830119341612,0.0040216664783657]],[[-0.035909123718739,-0.11283619701862,0.036442510783672],[-0.037438772618771,0.0477324873209,-0.011411680839956],[-0.069734297692776,-0.27601501345634,0.055549755692482]],[[0.091546602547169,-0.091759666800499,-0.082749463617802],[0.099560938775539,0.16089184582233,0.051345475018024],[-0.071151062846184,0.044326946139336,-0.080442160367966]],[[-0.17267663776875,-0.04354315251112,0.13106220960617],[0.10396503657103,0.0053603136911988,-0.061015941202641],[0.15099129080772,0.0083041368052363,-0.081900998950005]],[[-0.10092199593782,-0.18085704743862,0.036086801439524],[-0.09290736913681,-0.034399308264256,0.12421704083681],[-0.0079841744154692,-0.07919916510582,-0.013422904536128]],[[0.027535229921341,0.04976961016655,-0.11487664282322],[0.074672564864159,0.066783338785172,-0.24548798799515],[0.069361224770546,0.050255656242371,0.020023822784424]],[[0.045645523816347,-0.0098181581124663,0.046222746372223],[0.14741368591785,0.010047201998532,0.014189281500876],[-0.11194039881229,0.13083206117153,-0.093751356005669]],[[-0.16559928655624,-0.0055097164586186,0.12268756330013],[0.12194571644068,0.059361577033997,-0.0079841064289212],[-0.29389315843582,0.031316515058279,0.061599060893059]],[[-0.0044330535456538,-0.074722334742546,0.063764572143555],[-0.24597226083279,-0.15818051993847,0.018925376236439],[-0.069504767656326,0.0154496608302,-0.090214125812054]],[[-0.056512925773859,0.081706874072552,-0.071416556835175],[-0.045473266392946,0.10946730524302,0.19755913317204],[0.0025927936658263,0.028260432183743,-0.097345605492592]],[[0.0046947100199759,-0.15733163058758,0.086404345929623],[-0.20031802356243,-0.0071213035844266,-0.049690619111061],[-0.0029103241395205,-0.061629012227058,0.22683377563953]],[[-0.042903158813715,-0.16932213306427,-0.11163695156574],[-0.321513235569,-0.10406223684549,-0.052313171327114],[0.024879774078727,0.044749218970537,0.081715419888496]],[[-0.1347278803587,-0.2253223657608,0.10526845604181],[-0.065020181238651,-0.15804895758629,0.13681755959988],[-0.067656107246876,-0.16803622245789,0.061612471938133]],[[-0.0078069069422781,-0.051121789962053,-0.082380257546902],[-0.12267120182514,-0.21621276438236,0.22114565968513],[-0.098193429410458,-0.01914107427001,-0.10420220345259]],[[-0.13157147169113,0.083773925900459,0.018128260970116],[0.13821090757847,0.1885312050581,-0.11039607226849],[0.2470535337925,0.022773871198297,0.062560580670834]],[[-0.051379796117544,-0.033801347017288,0.048882264643908],[0.0080031659454107,-0.048360127955675,0.0770518258214],[-0.050140839070082,0.0035725308116525,0.088638678193092]],[[0.0037744308356196,0.12091062217951,-0.10320588201284],[0.29710048437119,0.026158273220062,-0.20379146933556],[-0.062961034476757,-0.1481703966856,-0.18980431556702]],[[0.014286226592958,-0.01045330055058,0.025001090019941],[-0.082502782344818,-0.14061525464058,0.18746721744537],[-0.025352500379086,0.12687900662422,0.077728502452374]],[[0.061083484441042,0.19302274286747,0.19498085975647],[-0.04588533565402,-0.019556239247322,0.11800333857536],[-0.18738982081413,-0.16486018896103,-0.1728178858757]],[[-0.089477673172951,-0.035261582583189,-0.016601875424385],[-0.15678113698959,-0.0016436378937215,0.03563966229558],[0.0077661131508648,-0.12290457636118,-0.036492206156254]],[[-0.3196761906147,-0.092251896858215,-0.42781576514244],[-0.11881764233112,-0.050086107105017,-0.23326480388641],[-0.10711293667555,-0.083414427936077,-0.24094355106354]],[[0.06751462072134,-0.0033710631541908,0.00085037265671417],[-0.24453277885914,-0.079672649502754,-0.18961538374424],[-0.10384223610163,-0.095957405865192,0.0040408954955637]],[[-0.014314759522676,0.027159858494997,-0.049271177500486],[0.073323048651218,0.01027721259743,-0.20867913961411],[0.16286888718605,0.045457690954208,0.11300628632307]],[[-0.057889726012945,0.0092217586934566,-0.074255898594856],[0.12509290874004,-0.15176551043987,0.24054780602455],[0.066817089915276,-0.12256765365601,0.1223505884409]],[[0.13287548720837,-0.060366101562977,-0.097334213554859],[-0.031746156513691,-0.06648476421833,-0.15801267325878],[0.0082555804401636,0.10932397842407,-0.12202423065901]],[[-0.0076079089194536,-0.26649758219719,-0.030979121103883],[-0.16362690925598,-0.0050204494036734,-0.17672999203205],[-0.18291468918324,0.00062012951821089,-0.10649900138378]]],[[[0.065738461911678,-0.048101302236319,-0.18098337948322],[0.046397291123867,-0.027660397812724,0.15039901435375],[0.040979500859976,0.063588835299015,0.0036634686402977]],[[-0.030118955299258,0.011881390586495,-0.25234541296959],[0.10563028603792,-0.081479988992214,0.065301164984703],[0.0063604274764657,0.051227264106274,0.032072898000479]],[[-0.1024316996336,-0.21894724667072,-0.0039801076054573],[-0.073727443814278,-0.00089553894940764,-0.19133791327477],[0.0089148450642824,-0.20514851808548,0.025204325094819]],[[0.25868690013885,-0.017902972176671,-0.028465686365962],[-0.14362545311451,-0.080559447407722,0.052678678184748],[0.16621753573418,-0.50635707378387,0.19979354739189]],[[0.058904483914375,-0.0074964608065784,0.081655092537403],[-0.051406797021627,0.10024032741785,-0.047822147607803],[0.06640700250864,-0.08433586359024,0.027266133576632]],[[-0.015573415905237,-0.1208368614316,0.071696542203426],[-0.064088925719261,0.016119215637445,-0.086990714073181],[0.051040902733803,0.098654843866825,0.089217238128185]],[[-0.015098750591278,-0.13366088271141,0.11287375539541],[0.045759420841932,0.0087861334905028,-0.12536260485649],[-0.08269926905632,0.080285280942917,0.060966208577156]],[[-0.1092968955636,0.13303907215595,0.08856800198555],[-0.097859911620617,0.045029599219561,-0.089186996221542],[0.077565856277943,0.049448750913143,-0.08314561098814]],[[0.0064385822042823,-0.16626723110676,-0.0057093701325357],[-0.15324641764164,0.16799277067184,-0.20536458492279],[0.07962454855442,-0.13621483743191,0.098630547523499]],[[0.090004831552505,-0.082706600427628,-0.014137762598693],[-0.13163396716118,0.082817137241364,-0.060679394751787],[0.045990012586117,0.01150640193373,-0.0060590850189328]],[[0.062719725072384,-0.12146352976561,0.16753701865673],[0.019933193922043,-0.027118016034365,-0.21395045518875],[0.21376137435436,-0.24482399225235,0.11412063241005]],[[-0.018299525603652,-0.12734873592854,0.018587315455079],[0.029509894549847,0.039544157683849,-0.17952260375023],[0.077830530703068,-0.078849345445633,0.11867118626833]],[[0.15855841338634,0.06153492256999,0.13282024860382],[0.046230591833591,-0.13849982619286,-0.11044324189425],[-0.090703852474689,-0.095979318022728,0.067330799996853]],[[0.027783127501607,-0.11747857183218,-0.064903229475021],[-0.028709327802062,0.050336122512817,-0.095358572900295],[-0.01275593880564,0.15027165412903,0.037424117326736]],[[-0.081209607422352,0.17820028960705,-0.10586708039045],[0.066831395030022,-0.15477423369884,0.16243922710419],[-0.074032470583916,-0.015765126794577,-0.056000404059887]],[[-0.071920931339264,-0.0029177414253354,0.13208547234535],[0.024904733523726,0.017610071226954,-0.012566138990223],[-0.06287606805563,-0.018131570890546,0.0057731634005904]],[[-0.060458038002253,0.14440728724003,-0.13216505944729],[0.0091352490708232,-0.13563792407513,0.078026190400124],[0.064897678792477,-0.086915969848633,-0.062943696975708]],[[-0.0080778850242496,-0.17662301659584,0.0021439876873046],[-0.096850298345089,0.064116187393665,-0.25733119249344],[0.0033480885904282,-0.25360882282257,-0.15475487709045]],[[-0.040312558412552,0.04010421782732,-0.089018978178501],[0.07910779863596,-0.17965154349804,0.15336379408836],[-0.021968919783831,0.17452140152454,-0.13292098045349]],[[0.10279504954815,-0.087282434105873,-0.08484748005867],[0.0028450665995479,0.21710595488548,-0.30365425348282],[-0.045852407813072,-0.25007337331772,-0.053454592823982]],[[0.0025148778222501,-0.16536447405815,0.017890010029078],[0.015697479248047,0.093090794980526,-0.069122456014156],[0.032705146819353,-0.21283252537251,0.060777887701988]],[[-0.13025167584419,-0.064986832439899,-0.046865582466125],[-0.031409550458193,0.075298100709915,-0.027045963332057],[0.1551875025034,0.086211077868938,-0.0041414764709771]],[[-0.11090689152479,0.20186197757721,-0.28526103496552],[0.078092686831951,-0.15260021388531,0.027412641793489],[0.0053693503141403,0.019115183502436,-0.023484360426664]],[[0.030838500708342,-0.27103763818741,-0.050729498267174],[-0.18891641497612,0.12589636445045,-0.26465412974358],[0.19932408630848,-0.1676906645298,-0.09435772895813]],[[-0.17036087810993,0.063927091658115,-0.0006422862643376],[-0.042542889714241,0.029641794040799,-0.041200131177902],[0.11248046159744,-0.17859281599522,0.12403028458357]],[[0.034553848206997,0.073325984179974,0.1550597846508],[-0.11037553846836,-0.079076394438744,-0.15366415679455],[0.05414017662406,-0.029412547126412,-0.14574392139912]],[[-0.10108651965857,-0.28563877940178,-0.06371858716011],[0.04170660302043,-0.10592452436686,-0.050131540745497],[-0.1166849732399,0.010240676812828,-0.041545666754246]],[[0.057783886790276,-0.2320908010006,-0.012553291395307],[-0.22996978461742,0.15073001384735,-0.1378483325243],[0.089488759636879,-0.42519819736481,0.24449121952057]],[[0.099052302539349,0.0060546756722033,0.079655580222607],[0.014516088180244,-0.15281671285629,0.04218952357769],[-0.066968746483326,0.05525479093194,0.030618131160736]],[[0.010485987178981,0.12217085063457,-0.15091460943222],[0.037941992282867,-0.19044908881187,0.073358334600925],[-0.21039415895939,0.10271038115025,-0.20304143428802]],[[0.039458099752665,-0.038903497159481,-0.21697337925434],[-0.083550579845905,0.056668993085623,-0.096630819141865],[0.12091783434153,0.023641707375646,-0.088498115539551]],[[0.057928971946239,-0.13215567171574,0.065600246191025],[-0.04516514018178,-0.075837232172489,-0.11083363741636],[0.084104895591736,-0.16773438453674,0.15554937720299]]],[[[-0.089356102049351,0.01961868070066,-0.079535350203514],[0.18054547905922,0.15890961885452,-0.21395780146122],[0.084827080368996,-0.15968056023121,-0.068468116223812]],[[-0.071737088263035,0.078003823757172,0.070688158273697],[0.0037659252993762,0.066828958690166,-0.1671162545681],[0.060141120105982,0.11785455793142,0.079875469207764]],[[-0.25444012880325,-0.049547269940376,0.041954051703215],[-0.1841836720705,-0.064596988260746,0.20984926819801],[0.039351396262646,0.11392284929752,0.058439753949642]],[[0.14665220677853,-0.067146472632885,-0.14796529710293],[-0.041071325540543,-0.35199850797653,-0.087229281663895],[-0.11392814666033,-0.012002515606582,-0.053383469581604]],[[-0.020156487822533,0.031091190874577,-0.13944120705128],[0.050248462706804,0.11433122307062,-0.19489362835884],[0.047860283404589,0.001554112881422,-0.069067426025867]],[[-0.01145068090409,0.10392568260431,-0.035863228142262],[-0.026375994086266,0.054735537618399,-0.022455347701907],[-0.06155813857913,0.10752283036709,-0.039608463644981]],[[0.17678926885128,0.0048164650797844,-0.00097513129003346],[0.18602265417576,-0.17069445550442,-0.25516444444656],[0.043318502604961,-0.31153872609138,0.019906006753445]],[[0.22043044865131,-0.069807142019272,0.026152057573199],[0.13182161748409,0.0063493172638118,-0.047217737883329],[-0.1186185926199,-0.14000937342644,-0.095349743962288]],[[0.032663870602846,-0.025619773194194,0.030454291030765],[0.084535419940948,-0.037035897374153,-0.091696970164776],[0.010667410679162,0.16948790848255,0.074361056089401]],[[-0.14994932711124,0.065978102385998,0.010664272122085],[-0.13710243999958,0.050633102655411,0.069341078400612],[0.097629405558109,-0.034099727869034,0.1326529532671]],[[0.11966408789158,-0.14260375499725,0.066327542066574],[0.11115330457687,-0.046981945633888,0.09644278138876],[0.042505692690611,-0.15000651776791,-0.15741300582886]],[[-0.059834703803062,0.077937744557858,0.01683684065938],[-0.00083970290143043,-0.11966323107481,0.017045177519321],[0.0080734919756651,0.074774086475372,0.030875409021974]],[[0.008883404545486,-0.019684880971909,-0.064201161265373],[-0.022484907880425,-0.13376912474632,0.11611950397491],[-0.042364552617073,-0.062119986861944,0.20502933859825]],[[0.051508951932192,-0.12197109311819,-0.010949579998851],[-0.094630807638168,0.054935198277235,-0.035101763904095],[-0.014776769094169,0.041846387088299,0.034306593239307]],[[-0.043721068650484,-0.056516256183386,0.14148779213428],[0.11777074635029,-0.050413992255926,-0.049428775906563],[-0.013507244177163,-0.082358539104462,-0.037354648113251]],[[-0.078995980322361,-0.095358312129974,0.044858645647764],[-0.039915446192026,-0.058874364942312,-0.011790805496275],[-0.0089191868901253,0.22542028129101,0.18415129184723]],[[-0.066142797470093,0.11967234313488,0.018290540203452],[0.083022877573967,0.0062090964056551,0.014954995363951],[0.025678565725684,0.076796755194664,0.034323673695326]],[[0.25687900185585,0.23930355906487,-0.013529943302274],[0.09774162620306,0.034346267580986,-0.050075922161341],[-0.079915292561054,-0.22648647427559,-0.14684256911278]],[[0.13701343536377,0.09487222880125,0.040896207094193],[-0.049028098583221,-0.013224139809608,0.026417570188642],[-0.0095037911087275,0.0066213235259056,0.061779350042343]],[[-0.086257345974445,0.215492233634,-0.077363833785057],[0.044628519564867,-0.00037184983375482,-0.235042527318],[0.072599850594997,-0.23883260786533,-0.019273823127151]],[[0.072327926754951,0.079277016222477,-0.072940640151501],[0.0039218822494149,0.042397528886795,-0.0073029021732509],[0.0065088071860373,-0.23324136435986,0.059221170842648]],[[0.08239222317934,-0.11910120397806,-0.017537262290716],[0.062965862452984,-0.084366522729397,-0.056574992835522],[0.11724244058132,-0.057763278484344,0.039253104478121]],[[0.06743623316288,0.085738599300385,0.066622398793697],[-0.0091734230518341,0.097342848777771,0.10607872903347],[-0.15548025071621,-0.10561234503984,-0.19053602218628]],[[-0.011989502236247,-0.032807927578688,-0.090003989636898],[-0.029108120128512,-0.0075199077837169,-0.10430717468262],[-0.0845937281847,0.10076083242893,-0.097670376300812]],[[0.004597975872457,-0.058353703469038,-0.022454742342234],[0.13071098923683,0.10805302858353,-0.12490326166153],[0.092691816389561,-0.11593163013458,-0.060072440654039]],[[0.10195863246918,0.14711533486843,0.03781333565712],[0.0048151439987123,-0.21207769215107,-0.00057279982138425],[-0.12692767381668,-0.16436530649662,0.10484370589256]],[[0.12721368670464,0.20120449364185,-0.37136161327362],[-0.14430429041386,0.025628808885813,-0.20296768844128],[-0.13715423643589,-0.092083960771561,-0.13085322082043]],[[-0.10465475171804,0.10796691477299,0.043312042951584],[0.046240705996752,0.090956747531891,0.01596973836422],[-0.065664984285831,-0.28538113832474,-0.065896421670914]],[[0.043703809380531,-0.15243902802467,-0.10318404436111],[0.17740353941917,-0.056853488087654,-0.15474109351635],[-0.035354252904654,0.028061177581549,-0.101442694664]],[[0.15207500755787,0.083918638527393,0.029085701331496],[0.057427164167166,0.10006201267242,-0.02835782058537],[-3.0614748538937e-05,-0.36671203374863,-0.10457281768322]],[[-0.013051684014499,-0.15743550658226,-0.038910832256079],[-0.22337584197521,-0.15323327481747,0.062686540186405],[-0.068789333105087,0.072255469858646,0.12896807491779]],[[-0.019252300262451,0.039116449654102,0.032828316092491],[-0.040105447173119,0.075735688209534,0.13597765564919],[-0.10632333904505,0.12554298341274,0.099166534841061]]],[[[-0.11574007570744,0.13130865991116,0.020605731755495],[0.083173520863056,-0.027143465355039,0.10604654997587],[0.028439039364457,0.13166360557079,0.075423613190651]],[[-0.020440211519599,0.023530436679721,0.013539393432438],[-0.022043926641345,-0.045769039541483,-0.015811344608665],[-0.15551963448524,0.020103085786104,0.15864492952824]],[[0.073059029877186,-0.044904537498951,0.017522066831589],[-0.13972924649715,0.033638201653957,0.096330277621746],[-0.072980456054211,0.018844934180379,0.041328199207783]],[[-0.02930923551321,-0.13696876168251,0.055697660893202],[0.020548522472382,0.13562695682049,-0.094515897333622],[-0.053167473524809,0.13987784087658,-0.026796754449606]],[[0.13716290891171,0.073881410062313,0.022573683410883],[0.12807242572308,-0.03316979855299,-0.0046935076825321],[-0.018405126407743,-0.044604811817408,0.071928188204765]],[[0.0028648066800088,-0.12558671832085,-0.026861116290092],[-0.033297888934612,-0.0033305112738162,0.070162668824196],[0.096513696014881,0.094413280487061,-0.030634084716439]],[[0.04881488904357,-0.00092011975357309,0.058806508779526],[0.00048169237561524,-0.090512990951538,-0.10304824262857],[0.011494419537485,0.12550535798073,-0.040373232215643]],[[0.010547286830842,-0.040703341364861,-0.097978428006172],[-0.19621294736862,-0.049959745258093,0.014185709878802],[0.1886773109436,-0.049025770276785,0.067882753908634]],[[0.033671762794256,0.14458575844765,-0.023840317502618],[-0.0026761018671095,-0.039308585226536,-0.082575552165508],[0.077632293105125,0.10488281399012,-0.1734983921051]],[[-0.041591610759497,0.0056126094423234,0.048300955444574],[0.0083657810464501,-0.11071389913559,-0.03263495862484],[0.091314725577831,-0.1043605953455,-0.058725405484438]],[[-0.10839742422104,-0.21194997429848,-0.016328250989318],[0.032526332885027,0.045756082981825,0.054595127701759],[-0.065244220197201,0.1629114151001,0.15587112307549]],[[-0.036716140806675,0.062522649765015,-0.10656018555164],[0.016898479312658,0.091485626995564,-0.0094583388417959],[-0.0098579376935959,0.13153055310249,0.11314949393272]],[[-0.063181936740875,-0.11510318517685,-0.11368679255247],[-0.0024363938719034,-0.027785331010818,0.044436056166887],[-0.10928472131491,0.11386442184448,0.099434860050678]],[[-0.22797422111034,0.127072006464,0.007695893291384],[-0.12326190620661,0.13366851210594,0.13612009584904],[-0.028223356232047,0.11095082014799,0.016132755205035]],[[0.12914805114269,-0.1096273586154,-0.16664727032185],[0.051579792052507,0.03778437897563,-0.023209255188704],[0.12139628827572,-0.084298357367516,-0.10805173963308]],[[-0.10696786642075,-0.025916311889887,-0.06423956155777],[0.16328606009483,0.01843643002212,-0.10480373352766],[-0.095367886126041,0.072581000626087,-0.036292720586061]],[[0.054090186953545,-0.0063843205571175,-0.072525583207607],[0.044209938496351,-0.076299950480461,-0.15301072597504],[-0.052757725119591,-0.1530514806509,0.13013425469398]],[[-0.067532874643803,0.00503368396312,0.034097764641047],[-0.12603837251663,0.00088015635265037,0.11453745514154],[0.23312926292419,0.073583126068115,0.13096597790718]],[[-0.068673603236675,-0.17575970292091,-0.13412074744701],[-0.029846722260118,-0.14764678478241,-0.013161255978048],[0.031446717679501,-0.037626091390848,-0.034817412495613]],[[-0.082297325134277,-0.096514016389847,0.01195714995265],[-0.048219028860331,-0.24124795198441,-0.058483716100454],[-0.0040192133747041,0.048715557903051,-0.084519669413567]],[[-0.19252280890942,-0.12570345401764,-0.019050907343626],[-0.10257598012686,-0.077088139951229,0.058156341314316],[0.38835421204567,0.10939734429121,-0.17431533336639]],[[-0.083451934158802,0.043607648462057,0.11638775467873],[-0.029628263786435,-0.12436749786139,-0.11929881572723],[-0.019072540104389,-0.042671374976635,-0.069038011133671]],[[0.011974547058344,0.050008989870548,0.071779698133469],[0.032892186194658,0.019031478092074,-0.051501430571079],[-0.14820443093777,-0.1506687104702,-0.12707071006298]],[[-0.068704567849636,-0.10025212168694,0.22584141790867],[-0.028431799262762,-0.065133579075336,0.086045362055302],[-0.0032576734665781,0.0014571450883523,0.013748970814049]],[[0.087136961519718,-0.16827762126923,0.15327434241772],[0.076760411262512,-0.055050358176231,0.046044997870922],[0.037477880716324,-0.021471193060279,0.043999779969454]],[[-0.12088868021965,-0.090135417878628,0.03835454210639],[-0.17957054078579,0.18477801978588,0.016285177320242],[-0.020854083821177,-0.0062463106587529,-0.10100057721138]],[[-0.14594498276711,0.025158340111375,-0.27731272578239],[-0.1413104981184,0.056019756942987,-0.056668039411306],[0.022460862994194,0.13320069015026,-0.072281487286091]],[[0.097769282758236,-0.01220967900008,-0.056569166481495],[-0.046808209270239,0.055039498955011,0.087339103221893],[0.090837530791759,0.043330196291208,0.050780139863491]],[[0.027479875832796,-0.021660478785634,0.16701078414917],[-0.11307293176651,0.0088092163205147,0.019151173532009],[0.0040694363415241,-0.036553338170052,0.10478163510561]],[[0.032348234206438,-0.022992001846433,0.044373471289873],[-0.053724568337202,0.098088681697845,-0.028507320210338],[0.010126165114343,-0.10355443507433,-0.0013226150767878]],[[-0.085017435252666,0.033216051757336,-0.056427977979183],[-0.074600979685783,-0.086552619934082,0.069533370435238],[-0.085653193295002,0.086840733885765,0.011599576100707]],[[-0.21769173443317,-0.0097561934962869,-0.005658142734319],[-0.14678125083447,-0.11830733716488,-0.0068810414522886],[0.026559080928564,0.030221950262785,-0.048936646431684]]],[[[0.055795021355152,-0.033948130905628,0.023858319967985],[0.08218152821064,0.043489303439856,-0.016999613493681],[0.026760056614876,-0.16027510166168,-0.036518003791571]],[[-0.027294280007482,-0.0826695561409,0.023375391960144],[-0.044286444783211,0.12398500740528,-0.11342819035053],[0.10619056224823,0.053433030843735,-0.029387500137091]],[[0.048126827925444,0.0017681448953226,0.012976032681763],[-0.02801769413054,-0.05048643425107,-0.005284353159368],[-0.032135788351297,0.0097255697473884,0.075163826346397]],[[-0.016794430091977,-0.015146453864872,0.039332941174507],[0.055123634636402,-0.13821363449097,-0.022795172408223],[-0.0013591932365671,0.062835581600666,0.02038267813623]],[[-0.077402159571648,0.094563648104668,-0.049750205129385],[0.12847279012203,0.040727362036705,0.048587825149298],[0.020158423110843,0.028043124824762,0.065793082118034]],[[-0.076689831912518,-0.16230198740959,-0.071718238294125],[0.087296567857265,-0.046874977648258,0.083802774548531],[0.046711958944798,-0.011394825764,-0.0049324329011142]],[[0.046403929591179,0.041465982794762,-0.15889018774033],[0.12000104784966,0.016310665756464,-0.083581976592541],[-0.027991415932775,0.061349421739578,-0.05401311814785]],[[0.0052125826478004,0.044087808579206,0.012538192793727],[-0.063962005078793,0.068582244217396,0.018229192122817],[-0.017710542306304,0.01176355406642,-0.084793090820312]],[[-0.048977341502905,0.046567089855671,-0.052322503179312],[0.069771707057953,-0.097418986260891,-0.053612407296896],[0.017925921827555,0.053371723741293,0.044036451727152]],[[0.053411573171616,0.063012413680553,0.029595490545034],[0.099227838218212,0.25541880726814,0.071262761950493],[-0.022073162719607,0.053801618516445,0.10649075359106]],[[-0.023368624970317,-0.058190748095512,0.012898127548397],[0.089420095086098,-0.11350413411856,0.092993013560772],[0.011948820203543,-0.031752239912748,0.010089418850839]],[[0.064315646886826,-0.076412685215473,-0.045207943767309],[-0.010408588685095,-0.020604573190212,0.018244856968522],[-0.022693879902363,-0.0063068442977965,0.10234899073839]],[[0.0066337124444544,0.0031377570703626,-0.085839189589024],[-0.00071717152604833,-0.0013193011982366,0.062835693359375],[-0.031208926811814,-0.031313393265009,0.088409751653671]],[[0.0096011254936457,0.17153885960579,-0.097347684204578],[-0.1255104392767,0.015732314437628,0.013215751387179],[0.015083022415638,-0.11672230809927,0.10610315948725]],[[0.026776000857353,0.055355817079544,-0.066372148692608],[-0.055307697504759,0.10690121352673,0.076275378465652],[-0.034139219671488,-0.013762301765382,-0.072576276957989]],[[-0.005130585283041,-0.095124706625938,-0.054722268134356],[-0.0012806694721803,0.096368461847305,0.004354618024081],[0.012237103655934,-0.047742940485477,0.090152598917484]],[[-0.13589645922184,-0.079339787364006,-0.059260439127684],[0.01598640717566,-0.0043006376363337,-0.12584759294987],[-0.10501156747341,-0.2305641323328,-0.0053034853190184]],[[-0.0027222232893109,-0.01460890751332,-0.042446315288544],[-0.079488769173622,0.0079512437805533,0.11623656749725],[0.050106316804886,0.014224298298359,-0.099968798458576]],[[-0.028974527493119,-0.15155829489231,0.069945059716702],[0.013497584499419,-0.048964276909828,-0.059361696243286],[0.0044679348357022,-0.054034534841776,0.046120099723339]],[[0.031211212277412,-0.0093243131414056,-0.055348839610815],[-0.0091175055131316,0.053495194762945,-0.13082332909107],[0.093440167605877,-0.034896980971098,0.035400405526161]],[[-0.051079798489809,0.051163081079721,0.0024552652612329],[0.07481749355793,-0.048399038612843,-0.12819872796535],[0.081757396459579,-0.049364641308784,0.083797849714756]],[[-0.10181714594364,0.058229766786098,0.1839325428009],[-0.079007655382156,0.016716724261642,-0.048689767718315],[0.0044707213528454,-0.035616144537926,0.01135859079659]],[[0.0031450230162591,-0.12263268977404,0.045071832835674],[0.054476946592331,0.016154021024704,0.025156423449516],[0.07323907315731,0.0065062339417636,-0.052697457373142]],[[0.067344509065151,0.065901912748814,-0.0067804688587785],[-0.037090759724379,-0.13511615991592,-0.031643953174353],[0.069048099219799,0.026128582656384,-0.045306254178286]],[[0.072945334017277,0.037053983658552,0.01848129183054],[-0.12360775470734,-0.017106559127569,0.15108761191368],[-0.0034874735865742,-0.037114083766937,-0.11310604214668]],[[-0.026943868026137,-0.034257002174854,0.049677845090628],[0.053181696683168,-0.05557381734252,0.062904603779316],[-0.083778344094753,0.029534563422203,0.014519536867738]],[[-0.047562520951033,-0.054279185831547,0.087333485484123],[0.0018935614498332,0.0081877885386348,-0.023886831477284],[-0.0075246673077345,-0.010376239195466,0.023395815864205]],[[0.13270245492458,0.047529596835375,0.034430619329214],[-0.087591215968132,0.072931408882141,-0.12009383738041],[-0.056188937276602,-0.025340277701616,-0.014283087104559]],[[-0.028976630419493,-0.091789029538631,0.08954931050539],[-0.078245908021927,-0.10374718159437,0.01011760532856],[-0.1090225726366,-0.0026801291387528,-0.073596931993961]],[[-0.027615642175078,0.11804930120707,-0.040535070002079],[0.04859608784318,-0.15734642744064,0.034913148730993],[-0.11262352019548,0.14637400209904,-0.0090009160339832]],[[0.042652655392885,0.047845300287008,0.052864484488964],[-0.078081116080284,-0.065843775868416,0.04366022720933],[0.0073597771115601,0.025663949549198,-0.07631304115057]],[[-0.011330258101225,0.026198729872704,0.050371259450912],[-0.066155098378658,-0.093944512307644,-0.032579846680164],[-0.051458138972521,0.094894714653492,0.079827949404716]]],[[[-0.21468943357468,-0.17071948945522,0.091262251138687],[0.044736240059137,-0.062444727867842,-0.15363276004791],[-0.08379478007555,-0.1163038611412,-0.098445929586887]],[[-0.020167455077171,-0.058843519538641,0.02539099380374],[0.046559147536755,0.02732690051198,-0.057712871581316],[-0.10543281584978,-0.20585881173611,-0.22533020377159]],[[-0.052425693720579,0.057683572173119,0.066035509109497],[0.091658003628254,-0.031975351274014,0.0068342857994139],[0.086460128426552,-0.14514701068401,0.051106557250023]],[[-0.088599428534508,-0.1548819988966,0.011803886853158],[-0.22258701920509,-0.043152578175068,-0.10922010242939],[-0.23616294562817,-0.19400115311146,-0.070149391889572]],[[0.029846446588635,-0.18157424032688,-0.082213304936886],[-0.045851532369852,-0.15651150047779,-0.011546236462891],[-0.12067284435034,-0.066426806151867,-0.083726324141026]],[[0.11448409408331,0.0010386491194367,0.021617244929075],[-0.16120499372482,0.19969163835049,0.035430248826742],[0.058444384485483,0.20108583569527,-0.049688626080751]],[[-0.089260078966618,0.081085279583931,-0.22003808617592],[-0.058463618159294,-0.10737737268209,-0.20628236234188],[-0.050375379621983,-0.029162822291255,-0.07638581097126]],[[0.053828809410334,0.10513500124216,-0.12847766280174],[-0.065295822918415,0.15001244843006,-0.12585265934467],[-0.14915370941162,0.0054869456216693,-0.15947334468365]],[[-0.069415993988514,-0.080542720854282,-0.2615459561348],[-0.070719391107559,-0.02395629696548,-0.067692153155804],[-0.11268804222345,-0.11467961221933,-0.028552619740367]],[[0.0035441569052637,0.046910282224417,0.092891328036785],[-0.049685258418322,0.049858678132296,0.15810003876686],[-0.054282389581203,0.1268807053566,0.0099895410239697]],[[-0.084944702684879,0.29203832149506,-0.16271933913231],[-0.054873883724213,0.036187514662743,-0.1104326993227],[0.016998995095491,-0.22106918692589,0.018739635124803]],[[-0.12994971871376,-0.10627921670675,-0.13204389810562],[-0.078463159501553,-0.19891652464867,0.022309973835945],[0.032639756798744,-0.015810942277312,0.042230248451233]],[[-0.093496173620224,-0.020090179517865,0.011811004951596],[0.0054889395833015,-0.29626527428627,-0.13254873454571],[-0.17283818125725,-0.24960714578629,-0.087751418352127]],[[-0.082174755632877,-0.13619801402092,0.0027608508244157],[0.24407914280891,0.022146426141262,-0.12799595296383],[0.037205159664154,0.01984222792089,0.13344596326351]],[[-0.033946510404348,-0.077675886452198,-0.1238356679678],[0.0015736089553684,0.097293883562088,-0.10832063108683],[0.018469851464033,-0.049705054610968,0.018501287326217]],[[0.12517260015011,-0.17012511193752,-0.04047679528594],[-0.030062744393945,-0.29167577624321,0.015139516443014],[0.082827903330326,-0.0044639334082603,0.00031737753306516]],[[0.072799675166607,0.023032741621137,-0.10213565081358],[0.075193978846073,0.17508316040039,-0.033631771802902],[0.12508498132229,0.099499262869358,-0.13163629174232]],[[0.04698883369565,-0.17639592289925,-0.092360578477383],[0.079072423279285,0.025859886780381,-0.1308631002903],[-0.0271021630615,0.014288332313299,-0.2148367613554]],[[0.053542241454124,0.37416538596153,0.20049171149731],[-0.095978319644928,-0.070454463362694,0.14409591257572],[-0.15968495607376,-0.16193760931492,-0.040120828896761]],[[0.078976996243,0.0047582881525159,0.0087505402043462],[-0.13450458645821,-0.15377399325371,-0.26016440987587],[-0.04336167499423,-0.14896763861179,-0.085837863385677]],[[0.093187406659126,-0.14462843537331,-0.06897509843111],[-0.023157797753811,-0.092908777296543,-0.037478860467672],[-0.18645593523979,-0.090931914746761,0.09176416695118]],[[0.053228173404932,0.099544115364552,0.021400827914476],[-0.060427363961935,0.13841564953327,0.11657879501581],[0.10842565447092,-0.0074891983531415,-0.047084324061871]],[[-0.21248179674149,0.017104720696807,0.16750456392765],[-0.17218598723412,0.018724791705608,0.1081695407629],[-0.30260360240936,-0.030114049091935,-0.048303954303265]],[[-0.11449433118105,0.028001707047224,-0.064708039164543],[-0.037816934287548,-0.0090477475896478,-0.083034366369247],[0.047498218715191,-0.034845024347305,-0.22455003857613]],[[0.088891230523586,0.11232494562864,-0.097151607275009],[-0.00557232927531,0.077423803508282,0.18911400437355],[0.029713584110141,0.018806230276823,0.011701148934662]],[[-0.1312603354454,0.13245655596256,0.14556123316288],[-0.030189175158739,-0.098818495869637,0.097499765455723],[0.11120329797268,-0.083780318498611,0.17856433987617]],[[-0.029000138863921,-0.10768216848373,-0.43724864721298],[0.0801952034235,-0.1247711032629,-0.36165428161621],[-0.040064629167318,0.069571994245052,-0.19464182853699]],[[-0.31153631210327,-0.12770573794842,-0.10289393365383],[0.16703094542027,0.058739744126797,-0.044961463660002],[0.022332275286317,-0.080499343574047,-0.1480792760849]],[[-0.024940995499492,-0.11517336219549,-0.14443647861481],[0.22092697024345,0.013321484439075,-0.11842805892229],[-0.0039953207597136,-0.0173828471452,-0.059198658913374]],[[-0.01423698104918,0.14997000992298,-0.4282012283802],[-0.068276010453701,-0.33198636770248,0.070243433117867],[-0.13701608777046,-0.24960152804852,-0.12311007082462]],[[-0.086451560258865,0.22005048394203,0.054976541548967],[0.0039031214546412,-0.022264327853918,-0.180016502738],[0.012648553587496,-0.017742104828358,-0.12648649513721]],[[0.11302711814642,-0.24898399412632,0.069858118891716],[0.16464182734489,-0.11335511505604,-0.058603499084711],[0.1330175101757,-0.2469224780798,-0.082989640533924]]],[[[-0.38942405581474,-0.16269007325172,-0.062049634754658],[-0.36206531524658,-0.054584871977568,-0.11591874808073],[0.074221067130566,-0.07964263856411,-0.064844772219658]],[[0.060045592486858,0.076142735779285,0.23714399337769],[0.012303772382438,0.10369297116995,-0.01940418407321],[0.0063989167101681,-0.013250151649117,-0.042523931711912]],[[-0.17808650434017,0.07160934060812,0.082433111965656],[-0.045369330793619,-0.028869390487671,0.061787374317646],[0.017425842583179,0.029111754149199,0.079347848892212]],[[0.0015030128415674,-0.040513195097446,0.0050876205787063],[0.012274845503271,0.11228825896978,0.023862734436989],[-0.07230706512928,-0.059548709541559,0.045676525682211]],[[0.077379427850246,-0.03011854365468,-0.013332254253328],[-0.12915705144405,0.16463159024715,-0.1454254090786],[0.042698871344328,0.019145222380757,-0.11927060037851]],[[0.084176816046238,0.051912937313318,0.020825169980526],[0.10178039222956,-0.047642331570387,0.14220859110355],[0.12124693393707,-0.0047489651478827,-0.027179758995771]],[[-0.051590915769339,0.064423359930515,-0.0039512179791927],[-0.060399919748306,0.0080562215298414,-0.11433550715446],[-0.038907382637262,-0.024227159097791,0.026664523407817]],[[0.043132148683071,0.038226161152124,-0.10222434997559],[-0.0069945598952472,-0.11621648073196,-0.0061391205526888],[-0.032771959900856,0.070813626050949,0.053176458925009]],[[0.047827295958996,0.036890596151352,0.11894585192204],[0.030614579096437,-0.04369980096817,-0.027687173336744],[0.068756759166718,-0.1968345195055,0.13632260262966]],[[-0.20448340475559,-0.061874967068434,0.0025179868098348],[-0.11346039921045,0.20259219408035,-0.041645146906376],[0.069521524012089,0.091020047664642,0.1130424067378]],[[0.12033733725548,0.066394940018654,0.078493252396584],[-0.090001985430717,-0.0016940087080002,0.10891109704971],[0.019282095134258,0.0033387050498277,-0.078405268490314]],[[-0.24311067163944,-0.092500582337379,0.13881132006645],[-0.010738019831479,-0.20242835581303,0.18206949532032],[0.069413907825947,0.20935262739658,-0.011047773994505]],[[-0.15502373874187,0.0059815500862896,0.019810257479548],[0.023104337975383,0.091358207166195,-0.0264340210706],[-0.054991193115711,-0.0053100800141692,0.14217506349087]],[[-0.053503848612309,0.020526092499495,-0.07619221508503],[0.074730724096298,-0.092980928719044,-0.092940203845501],[0.030330367386341,0.2215683311224,0.11458606272936]],[[0.015218080952764,0.028632828965783,0.027288179844618],[0.0129329059273,0.17520985007286,-0.01576104387641],[-0.019745226949453,-0.12026505917311,-0.035737428814173]],[[-0.028519788756967,0.16286286711693,-0.1438622623682],[-0.0051902392879128,0.038643356412649,0.0067764022387564],[-0.055849950760603,-0.14762504398823,0.033840622752905]],[[0.061630729585886,0.085266180336475,-0.02705642208457],[-0.032459821552038,0.2033017873764,-0.055738255381584],[0.080426409840584,-0.16216933727264,-0.06843663007021]],[[-0.17967209219933,-0.098724380135536,-0.16397121548653],[0.050458986312151,-0.12464360892773,0.032786022871733],[0.036592651158571,0.018801297992468,-0.035785723477602]],[[-0.077583178877831,0.2079014480114,0.0066483239643276],[0.062906190752983,-0.047076366841793,-0.023222148418427],[0.020863153040409,-0.12063151597977,0.042824670672417]],[[-0.18349073827267,-0.030275663360953,-0.19603890180588],[-0.095020346343517,-0.18080517649651,0.12254119664431],[-0.083934359252453,-0.0094446465373039,0.012943872250617]],[[0.04105607047677,-0.29396307468414,-0.22680120170116],[0.20523431897163,-0.063708811998367,0.046631779521704],[-0.11932877451181,0.15900519490242,0.13376513123512]],[[0.03618037328124,-0.061714567244053,-0.0061225616373122],[-0.070677809417248,-0.087697982788086,0.087435357272625],[0.0088818101212382,-0.14558660984039,0.17871591448784]],[[-0.095201447606087,-0.056864079087973,0.096894145011902],[-0.018086992204189,0.21573194861412,-0.097644113004208],[0.045823443681002,0.17699974775314,-0.11021983623505]],[[0.03844378516078,-0.09318133443594,-0.2466985732317],[-0.16558988392353,0.031884469091892,0.064072221517563],[-0.083905749022961,0.076837874948978,0.035161651670933]],[[-0.031825520098209,-0.15529377758503,-0.017032545059919],[0.04313525557518,0.033730525523424,-0.031707189977169],[-0.0060287700034678,0.015541446395218,0.064861558377743]],[[-0.079363137483597,0.20523734390736,-0.20829619467258],[-0.061378132551908,-0.07249466329813,-0.035132601857185],[-0.061279945075512,0.039470806717873,-0.021905919536948]],[[-0.016135793179274,0.12915374338627,0.095392197370529],[-0.049727257341146,-0.011750213801861,-0.014115771278739],[0.027521247044206,-0.05987723171711,-0.14483147859573]],[[0.0017629099311307,0.15123818814754,0.05921346694231],[-0.02395998686552,0.0081063499674201,-0.092193990945816],[0.0098901251330972,0.011235604993999,-0.11881440877914]],[[0.10509347915649,-0.036023505032063,0.050312481820583],[0.027428014203906,-0.11860467493534,-0.1232338026166],[-0.019174955785275,-0.036298092454672,-0.12699013948441]],[[0.073497250676155,-0.13575553894043,0.047460589557886],[-0.026636850088835,-0.002829551929608,-0.026155034080148],[-0.038067601621151,0.19262306392193,0.074676968157291]],[[-0.20682901144028,0.08105530589819,0.10320968180895],[-0.093845918774605,-0.042643595486879,-0.0093677323311567],[0.1224165186286,0.043243411928415,-0.0941416695714]],[[-0.030895043164492,-0.021517740562558,-0.081829838454723],[0.055555924773216,0.073543630540371,0.022020798176527],[0.091392554342747,-0.037640858441591,0.081444002687931]]],[[[0.030669020488858,0.063353776931763,-0.022954946383834],[-0.076485067605972,0.024201655760407,0.012853554449975],[0.058225065469742,0.060342840850353,0.006292246747762]],[[0.027491731569171,-0.036426797509193,-0.064695209264755],[-0.052753649652004,0.067747309803963,0.022334106266499],[-0.11311780661345,-0.086848489940166,0.066411077976227]],[[0.0018728000577539,-0.055593267083168,-0.02130826190114],[-0.081716567277908,-0.068020150065422,0.077619448304176],[-0.078132569789886,0.04451796784997,-0.097094491124153]],[[0.099722400307655,0.0026545249857008,-0.002314250683412],[-0.035683453083038,-0.023099843412638,0.038632642477751],[0.092575274407864,0.002848477801308,-0.0084412265568972]],[[-0.010321861132979,-0.081224657595158,0.068381942808628],[0.095363102853298,-0.032402332872152,0.10978888720274],[0.1194858327508,-0.17584908008575,0.014501066878438]],[[-0.0072209346108139,-0.10990279912949,-0.053793899714947],[-0.040323574095964,-0.040496546775103,-0.05083067342639],[0.01172240357846,0.013408677652478,0.047705668956041]],[[-0.046633452177048,0.05057642608881,0.026855109259486],[0.11089064180851,-0.086380377411842,-0.035580556839705],[0.12188585102558,0.030987987294793,0.20308738946915]],[[-0.066577389836311,0.024672819301486,0.03722607716918],[0.061432313174009,-0.0035575737711042,-0.082539565861225],[0.023394344374537,-0.00032693956745788,0.13097201287746]],[[-0.020045448094606,0.025630680844188,0.0063545466400683],[-0.071321696043015,-0.0033205836080015,0.046736385673285],[-0.012067851610482,0.04777942225337,-0.022027606144547]],[[0.062263049185276,-0.01696634106338,-0.082964815199375],[-0.010421927087009,0.093584008514881,-0.049400269985199],[0.049419816583395,-0.01656018383801,0.039516780525446]],[[-0.005727862007916,0.1391731351614,0.047393132001162],[-0.017856411635876,-0.033515803515911,0.046926192939281],[-0.03731095045805,-0.053809102624655,-0.011435776948929]],[[0.072526529431343,0.072219185531139,-0.086721338331699],[0.011999577283859,-0.032740823924541,-0.06903824955225],[0.029175473377109,0.0071688247844577,-0.10733202844858]],[[-0.0075282449834049,-0.08272735029459,-0.059906665235758],[-0.055033296346664,0.0032432768493891,-0.027615364640951],[-0.016136962920427,0.039437476545572,-0.041230823844671]],[[-0.0067437160760164,-0.0041497168131173,-0.088690578937531],[0.055330831557512,0.054114036262035,-0.036596857011318],[0.047620799392462,-0.0056078210473061,0.063925832509995]],[[-0.036179561167955,-0.021985555067658,0.06216873601079],[0.038839414715767,-0.14857868850231,-0.11741431802511],[-0.028162101283669,-0.11078260838985,-0.020793771371245]],[[0.052039563655853,-0.012024198658764,-0.072513304650784],[-0.011086369864643,-0.058867990970612,-0.030421432107687],[0.015305859036744,-0.066834911704063,0.0085385460406542]],[[-0.0091972639784217,0.040197093039751,-0.21411123871803],[0.17115750908852,-0.042576000094414,-0.017844958230853],[0.046752192080021,-0.051678847521544,0.056927882134914]],[[0.043405588716269,0.070675209164619,0.046204477548599],[0.054061226546764,0.0088129639625549,0.010161267593503],[-0.0097708785906434,0.093465223908424,0.050206921994686]],[[0.095452435314655,0.015532354824245,-0.040921226143837],[0.07995293289423,-0.0065842047333717,0.067346811294556],[0.055789407342672,-0.03558499738574,0.0044896211475134]],[[0.038488384336233,0.015986461192369,0.085374176502228],[-0.055770218372345,-0.033518329262733,-0.030856780707836],[0.017002431675792,0.030937425792217,0.048976898193359]],[[-0.066129691898823,0.0007166201248765,0.050796516239643],[-0.10365771502256,-0.056236993521452,-0.052504260092974],[0.032199919223785,0.027398569509387,-0.081836104393005]],[[-0.10884946584702,-0.1527182161808,-0.081270404160023],[0.18091081082821,0.0050209914334118,-0.040423136204481],[-0.20993155241013,-0.1591387540102,0.035077463835478]],[[0.068589754402637,0.060870759189129,-0.062718957662582],[-0.17774613201618,-0.016822494566441,-0.18933869898319],[-0.077118210494518,-0.14620803296566,-0.11832142621279]],[[-0.012039755471051,0.08772935718298,0.14725649356842],[0.099748082458973,-0.017952118068933,0.023544998839498],[-0.093641497194767,0.15281815826893,0.017502857372165]],[[0.058329675346613,0.076340518891811,-0.15492680668831],[0.029472164809704,-0.079010061919689,0.075004912912846],[0.086291030049324,-0.12439402937889,0.099648900330067]],[[0.026106879115105,-0.022294215857983,0.052172228693962],[-0.00087885116226971,-0.024147171527147,-0.033962599933147],[-0.030080297961831,-0.071572571992874,-0.012188322842121]],[[0.040267169475555,0.091506078839302,-0.0062837451696396],[0.066237658262253,0.015770429745317,0.11917868256569],[-0.052207570523024,0.069628812372684,-0.035018894821405]],[[-0.014972859993577,-0.08043297380209,0.033122643828392],[0.064747922122478,0.080532811582088,-0.016240790486336],[0.14289617538452,-0.055292420089245,-0.04370453953743]],[[0.044919297099113,-0.11999111622572,-0.060556411743164],[0.17626099288464,-0.083566285669804,0.087145507335663],[-0.031256150454283,0.036168176680803,-0.15862247347832]],[[-0.058232601732016,0.020775020122528,-0.025993207469583],[-0.014925139024854,0.030328091233969,0.032140627503395],[-0.08849174529314,-0.16438123583794,0.020222958177328]],[[-0.053540777415037,0.016690475866199,-0.1158187314868],[0.06474843621254,-0.071985475718975,0.080506518483162],[0.086378067731857,0.0048606828786433,0.023696210235357]],[[0.045087710022926,0.0017064485000446,-0.07868067920208],[-0.03759466484189,0.043374828994274,-0.047772899270058],[-0.02382755279541,0.12176219373941,0.0020275947172195]]],[[[-0.025112697854638,0.062350250780582,-0.10694133490324],[0.36995276808739,0.093481212854385,-0.14485695958138],[0.26338556408882,0.032438937574625,0.0023391866125166]],[[0.012449986301363,0.0077082770876586,0.13382595777512],[0.04206096380949,-0.052844513207674,-0.10048845410347],[-0.070163674652576,-0.01855300180614,-0.10073504596949]],[[0.06415855884552,-0.029503282159567,0.06015569716692],[-0.0018223832594231,-0.042645402252674,-0.058440182358027],[0.089650847017765,-0.15697818994522,-0.0011258460581303]],[[-0.11586674302816,0.084223210811615,-0.088662318885326],[-0.076593443751335,-0.19907084107399,-0.0066314158029854],[-0.20759788155556,0.024528397247195,-0.21270258724689]],[[0.14255900681019,-0.0071151214651763,0.095326140522957],[0.099547877907753,0.010750479996204,-0.024247886613011],[0.0092175276950002,-0.14456106722355,-0.090042524039745]],[[-0.09990281611681,-0.09867101162672,-0.093054078519344],[-0.16695658862591,-0.10976959764957,0.16112272441387],[-0.12405231595039,-0.085132725536823,-0.071054391562939]],[[-0.032771866768599,0.042589399963617,-0.15301913022995],[-0.15275827050209,-0.092762917280197,-0.081112571060658],[-0.044980145990849,0.092478550970554,0.0934167355299]],[[0.0067730681039393,-0.17318746447563,-0.10271453857422],[0.10203928500414,-0.087414272129536,0.043068196624517],[0.034303840249777,-0.056533597409725,0.19535793364048]],[[0.00084450689610094,0.20114894211292,-0.015490163117647],[-0.020148379728198,-0.14868320524693,0.087157063186169],[-0.081437066197395,0.035639099776745,0.075201511383057]],[[0.086687095463276,0.011762022040784,-0.10962235927582],[-0.041637655347586,-0.095421195030212,0.084659777581692],[0.034623458981514,-0.19104772806168,0.090444043278694]],[[0.053380958735943,0.19950696825981,0.094374418258667],[0.031085586175323,-0.088716544210911,-0.15222358703613],[0.011102247051895,-0.15787926316261,0.034494485706091]],[[-0.087402768433094,-0.022993350401521,-0.12295038998127],[0.18445762991905,-0.1224463135004,-0.099309399724007],[0.17283870279789,0.028825594112277,-0.066028125584126]],[[0.15437297523022,0.048153609037399,-0.14096076786518],[-0.11609899997711,-0.069272018969059,-0.0016192574985325],[-0.071634121239185,-0.057263221591711,-0.26600140333176]],[[-0.033039923757315,0.15323679149151,-0.12124533951283],[-0.071543358266354,0.014125116169453,0.11945626139641],[0.010141551494598,-0.023907279595733,-0.10822103917599]],[[-0.10309511423111,-0.0051816622726619,0.017882427200675],[-0.050437442958355,-0.077196530997753,-0.15643641352654],[-0.14152432978153,-0.067089200019836,0.23784111440182]],[[0.13171730935574,0.24276511371136,-0.11707999557257],[-0.044169008731842,-0.066635839641094,-0.050986897200346],[-0.05184580385685,-0.032018344849348,0.078467763960361]],[[-0.041833613067865,0.05231324955821,-0.069495007395744],[-0.13641948997974,-0.14477314054966,-0.061047825962305],[0.0029468415305018,-0.093815952539444,0.0084732137620449]],[[0.10167172551155,-0.083463810384274,-0.25896316766739],[-0.10959615558386,-0.21929337084293,-0.15237131714821],[-0.012461576610804,-0.22273972630501,-0.020395567640662]],[[0.023209974169731,-0.13292020559311,-0.0070827226154506],[-0.013205671682954,-0.056324105709791,0.076236702501774],[0.073962956666946,0.15649652481079,0.059949792921543]],[[-0.018110297620296,-0.036134578287601,0.17885205149651],[0.17858396470547,-0.048021201044321,0.14652200043201],[0.034260794520378,0.0066319587640464,-0.013471055775881]],[[-0.033060241490602,0.012491125613451,0.027163926512003],[0.23941440880299,0.09024203568697,0.14972975850105],[0.012938437052071,-0.25408306717873,-0.036405477672815]],[[-0.087779976427555,0.0077984044328332,0.10805866867304],[-0.074295297265053,-0.091083399951458,0.084398627281189],[0.019445529207587,-0.13119271397591,0.074457764625549]],[[0.11880739033222,-0.12660759687424,0.00019340755534358],[0.15856179594994,-0.078518867492676,-0.14520919322968],[0.17839603126049,-0.090375609695911,0.11193571984768]],[[0.02101032808423,0.13829469680786,-0.018720312044024],[0.059499461203814,0.035182766616344,0.037968013435602],[0.046559430658817,-0.015139376744628,-0.20798519253731]],[[0.083003751933575,-0.11894679069519,-0.010472894646227],[0.026428304612637,-0.10416401177645,-0.0142917688936],[-0.058942630887032,0.21733395755291,0.12622810900211]],[[0.12564636766911,0.091119773685932,0.00027603583293967],[-0.067963913083076,0.14315620064735,-0.17521877586842],[0.033524323254824,0.072151556611061,-0.053028799593449]],[[-0.14749896526337,-0.023306103423238,-0.21753320097923],[-0.15039287507534,-0.1918095946312,-0.018443631008267],[-0.081502623856068,0.015016078017652,-0.091802135109901]],[[-0.0023339460603893,-0.10467663407326,-0.11280880868435],[-0.092892423272133,-0.1984217017889,-0.02404647693038],[-0.15642066299915,0.15853926539421,0.11636873334646]],[[0.085488073527813,0.052123326808214,0.076115772128105],[-0.031327772885561,-0.14177526533604,-0.069771222770214],[0.031026564538479,0.089731954038143,0.043377533555031]],[[-0.044451829046011,-0.18184448778629,-0.13077500462532],[-0.18497890233994,-0.010522845201194,0.19818417727947],[-0.027106830850244,0.10283009707928,0.10286647826433]],[[0.02197558619082,0.065718330442905,-0.21912987530231],[-0.059756115078926,-0.12422025948763,-0.10088686645031],[0.03342254832387,-0.012579042464495,-0.026886796578765]],[[-0.038008473813534,-0.064099833369255,0.011875598691404],[0.0053566475398839,-0.097478687763214,0.0095569677650928],[0.030015874654055,0.029995387420058,0.070406794548035]]],[[[0.15896198153496,-0.02542382851243,0.014955975115299],[-0.1681049913168,-0.11247805505991,0.01167434360832],[-0.01315965782851,0.15223668515682,-0.023682137951255]],[[-0.0064097847789526,0.059159461408854,-0.014475527219474],[0.029338980093598,-0.055057719349861,-0.079795569181442],[0.0089624198153615,-0.026741817593575,-0.097247160971165]],[[0.12854610383511,0.05800174921751,-0.078855656087399],[0.011432368308306,0.044768158346415,-0.10428965836763],[-0.062152329832315,-0.046513959765434,0.0632314234972]],[[0.11693846434355,0.01049969624728,-0.029032958671451],[-0.0037744548171759,-0.14687016606331,-0.012880892492831],[-0.075625687837601,-0.0026823298539966,-0.042281240224838]],[[0.05132208392024,0.17086936533451,0.12535351514816],[0.0061350553296506,-0.028722940012813,-0.1822288185358],[0.014867551624775,0.1049734428525,0.021733002737164]],[[0.064996890723705,-0.098244249820709,0.054123014211655],[-0.085250847041607,-0.14991533756256,-0.026016931980848],[0.073048703372478,0.0057989419437945,0.12282586097717]],[[-0.034978818148375,-0.21535237133503,-0.059335552155972],[0.011677755042911,-0.052439592778683,0.0050905025564134],[-0.036536831408739,0.043536357581615,0.18068353831768]],[[-0.041119299829006,0.034897226840258,0.039689868688583],[-0.048196081072092,0.17559857666492,0.064370445907116],[-0.0024866147432476,-0.33724743127823,-0.00045465078437701]],[[0.15296959877014,-0.1031781360507,0.026384899392724],[-0.048709206283092,-0.088240288197994,0.022390186786652],[-0.10474126040936,0.030224410817027,0.023867348209023]],[[0.01671994663775,-0.033182874321938,0.060387119650841],[0.070630230009556,0.0083364229649305,0.027467058971524],[-0.071106746792793,-0.20735658705235,-0.074221633374691]],[[0.10279393196106,0.065897613763809,-0.098262600600719],[0.0068632918410003,-0.026908552274108,-0.01378314383328],[0.094089969992638,-0.02403443492949,-0.1259603202343]],[[0.1804237216711,-0.091595992445946,-0.14021146297455],[-0.023408954963088,0.10770988464355,-0.10690338909626],[0.0055479165166616,0.041718367487192,-0.05388368293643]],[[0.053933676332235,-0.0014970105839893,-0.0019842342007905],[0.033298689872026,-0.075853936374187,0.016012523323298],[0.011210908181965,0.0063007473945618,0.0039906906895339]],[[0.1011405736208,0.056899186223745,-0.074326545000076],[-0.09400724619627,-0.031392887234688,-0.068939171731472],[0.073921144008636,0.019478550180793,-0.021444499492645]],[[0.11827312409878,-0.16301234066486,-0.15732587873936],[-0.1155696734786,-0.61395758390427,-0.10495933890343],[-0.10831698030233,-0.015795521438122,0.083792708814144]],[[-0.004872256424278,-0.00010174624912906,0.0099798114970326],[-0.0066150156781077,-0.13232065737247,-0.010987636633217],[-0.0056123579852283,0.003783090505749,-0.00528659299016]],[[-0.047237914055586,-0.22181865572929,0.021990668028593],[-0.22621151804924,-0.097072936594486,-0.11480565369129],[0.079864367842674,-0.15202099084854,-0.09968937933445]],[[-0.010730625130236,-0.027953503653407,-0.0061218389309943],[-0.097855463624001,0.074764482676983,-0.014974308200181],[0.11097478866577,-0.058003179728985,0.046699166297913]],[[-0.073807001113892,-0.099043674767017,-0.1071588024497],[0.0016326261684299,0.021516960114241,0.2518807053566],[0.073487497866154,0.014549666084349,-0.036050740629435]],[[0.080161117017269,0.15678872168064,-0.051045652478933],[0.13778214156628,-0.056959055364132,-0.067021876573563],[0.043888304382563,-0.014933844096959,0.070252791047096]],[[0.095338992774487,0.048988346010447,0.076874479651451],[0.0003987547243014,-0.14042879641056,-0.028455501422286],[-0.014354903250933,-0.16072499752045,0.037938293069601]],[[-0.078123539686203,0.10385807603598,-0.071142837405205],[0.085381023585796,-0.050623465329409,-0.04843931645155],[0.035302605479956,-0.017399156466126,-0.0043422980234027]],[[0.14971822500229,0.009624152444303,-0.079344138503075],[0.037108648568392,-0.035023994743824,0.058470878750086],[-0.2765890955925,-0.24277015030384,-0.10427957028151]],[[0.037785030901432,-0.049958314746618,0.069424070417881],[-0.1447339951992,0.092404752969742,-0.0071842623874545],[0.028425987809896,-0.020751079544425,-0.021164502948523]],[[0.0081549501046538,-0.10218724608421,-0.062124151736498],[0.10312170535326,0.15166261792183,-0.031582213938236],[-0.053021777421236,-0.02493485249579,0.093824297189713]],[[0.018506912514567,-0.0030280272476375,0.044419154524803],[-0.010617145337164,-0.25381445884705,0.021260507404804],[-0.093408472836018,-0.087443120777607,0.14307343959808]],[[-0.067140080034733,-0.10413095355034,0.084996238350868],[-0.065514735877514,-0.0029660849831998,-0.022091826424003],[0.021015919744968,-0.033310670405626,-0.054603159427643]],[[-0.045235026627779,-0.11656884849072,-0.042942441999912],[-0.13325452804565,-0.1063923612237,-0.028017731383443],[-0.11283169686794,0.025792971253395,0.16267424821854]],[[-0.22353342175484,-0.0066832029260695,-0.089429974555969],[-0.19568230211735,0.0017940745456144,0.088073655962944],[-0.0025730694178492,0.28333786129951,0.13539932668209]],[[-0.04549253359437,0.0030100995209068,0.037304144352674],[0.034185942262411,0.15895061194897,0.015301902778447],[0.030079865828156,0.04226890206337,-0.13439843058586]],[[0.10828430950642,0.11911062151194,-0.083403080701828],[-0.22391384840012,-0.0033187479712069,0.098959289491177],[0.042146217077971,0.006978829856962,-0.023287449032068]],[[-0.10945557802916,0.049195244908333,0.018814995884895],[-0.061136811971664,0.051649667322636,0.010678476653993],[-0.093033641576767,-0.044543173164129,-0.056328415870667]]]],"nOutputPlane":32,"kW":3,"kH":3,"bias":[-0.015943452715874,0.073978587985039,0.0013188297161832,-0.011283865198493,0.022165037691593,0.0082648629322648,-0.020345233380795,-0.0076120654121041,-0.012962901033461,-0.031606145203114,-0.0072578797116876,0.021890230476856,-0.021887315437198,0.0081736100837588,-0.0021077417768538,-0.043398819863796,0.0046981908380985,-0.0032903046812862,-0.0076863477006555,-0.01681998744607,-0.0072864862158895,-0.030378023162484,-0.0037269415333867,-0.0075555760413408,-0.0023169009946287,-0.0088555617257953,-0.054278627038002,-0.032620389014482,-0.0060135861858726,-0.033623896539211,0.0074248318560421,0.0020904811099172],"nInputPlane":32},{"weight":[[[[0.052473932504654,0.0050539965741336,-0.015713054686785],[0.017765069380403,-0.0044232751242816,-0.026127941906452],[-0.0071141994558275,0.060987904667854,0.098072662949562]],[[0.017511520534754,0.0032738989684731,0.022191124036908],[-0.033576708287001,-0.12320267409086,0.12353494763374],[0.063099205493927,0.085040412843227,-0.061576150357723]],[[0.05119738727808,-0.026759292930365,-0.0630813986063],[-0.083597227931023,0.036526586860418,-0.056096874177456],[0.042254470288754,0.045327864587307,-0.066579386591911]],[[-0.042763415724039,0.0065717278048396,0.031480729579926],[-0.08176701515913,0.085812963545322,0.0076000136323273],[-0.04116377979517,-0.0035780814941972,0.043408650904894]],[[-0.025257967412472,-0.063924044370651,0.0099020963534713],[-0.019762445241213,-0.023654837161303,-0.1217106282711],[0.022278374060988,0.084219887852669,-0.011358365416527]],[[-0.022913740947843,-0.086977459490299,-0.19756117463112],[0.086416445672512,-0.022777304053307,-0.0061055351980031],[0.098610356450081,-0.034829460084438,0.00071587320417166]],[[-0.12151096016169,0.009863642975688,0.082393832504749],[-0.01207247748971,0.040419165045023,-0.024082558229566],[-0.055917866528034,-0.0040662968531251,0.0096747577190399]],[[0.0025998873170465,-0.070392526686192,-0.012449361383915],[-0.052856393158436,0.011378962546587,-0.024025050923228],[-0.036110009998083,-0.071932017803192,-0.10428107529879]],[[-0.034362901002169,-0.040992166846991,-0.075152412056923],[0.084361627697945,-0.10361552983522,0.022579068318009],[-0.02128092944622,-0.054718527942896,-0.021657446399331]],[[-0.093714274466038,0.15382838249207,0.027814818546176],[0.048694361001253,0.099217094480991,0.21414969861507],[0.023265516385436,0.057867668569088,0.056407202035189]],[[0.057734817266464,-0.0066670691594481,-0.043937794864178],[0.080827310681343,0.053800974041224,-0.057661056518555],[0.099241763353348,0.037762481719255,0.028436493128538]],[[-0.11672120541334,0.029392927885056,-0.15369445085526],[0.007105995900929,-0.083605349063873,-0.089697979390621],[0.077062822878361,0.14462891221046,0.063427619636059]],[[0.030695434659719,0.081716075539589,-0.054896749556065],[-0.023081531748176,-0.078831546008587,0.033691126853228],[-0.023409120738506,0.042036529630423,0.028395535424352]],[[-0.041725378483534,0.0092253182083368,0.037730809301138],[-0.0096315070986748,0.019134638831019,0.034110948443413],[-0.12836328148842,-0.04397551715374,-0.060257032513618]],[[-0.02497093193233,-0.11728890240192,-0.11596991121769],[-0.055817674845457,-0.086523175239563,-0.063602231442928],[0.14150750637054,0.0077333399094641,-0.076626338064671]],[[-0.092333361506462,0.029916808009148,-0.097409725189209],[0.072802193462849,-0.056079234927893,-0.027252081781626],[0.14866310358047,-0.034549653530121,0.018497744575143]],[[0.014410147443414,-0.03158863261342,-0.041911985725164],[-0.021719956770539,0.043315049260855,-0.010746423155069],[0.0025639317464083,-0.043994218111038,0.052286934107542]],[[0.014153438620269,-0.062796145677567,-0.070304825901985],[0.059979770332575,-0.047364082187414,0.067333333194256],[0.024515120312572,0.036752063781023,0.023257158696651]],[[-0.0091674933210015,-0.0099582374095917,0.046899408102036],[0.058041140437126,0.028536872938275,-0.13925778865814],[0.034635089337826,-0.013023555278778,0.14980886876583]],[[0.014828897081316,-0.014314168132842,0.040605884045362],[0.076283045113087,0.030558824539185,-0.018762430176139],[-0.083346530795097,0.037312127649784,0.035430513322353]],[[-0.0019405914936215,0.070722959935665,-0.030600132420659],[0.10914006084204,0.029856098815799,0.1136569082737],[-0.073139332234859,0.093373537063599,-0.05078149959445]],[[-0.041617717593908,-0.10056798160076,-0.028008852154016],[0.071850508451462,0.011017982847989,0.13766819238663],[0.040242429822683,-0.026985518634319,0.043152812868357]],[[0.0707041695714,0.005533897317946,0.073915965855122],[0.02922947704792,-0.04029469192028,0.16460834443569],[0.070209421217442,0.060251843184233,0.080653257668018]],[[0.019218366593122,-0.008379046805203,-0.051299586892128],[0.10472910106182,-0.054527092725039,0.046764295548201],[0.062207479029894,-0.012952155433595,0.041634019464254]],[[-0.052220441401005,0.14477136731148,0.052786868065596],[-0.0030823980923742,-0.033358428627253,-0.025841630995274],[-0.045230112969875,0.055580470710993,-0.02514198794961]],[[0.0071051232516766,0.02700225263834,-0.050189450383186],[-0.0070626735687256,0.015515621751547,0.1265674829483],[0.0096748061478138,-0.037882447242737,-0.10362274944782]],[[0.026536099612713,-0.079264789819717,-0.0053672376088798],[0.092005081474781,-0.1285430341959,-0.11426236480474],[0.0047059198841453,0.13990218937397,0.037845138460398]],[[0.12625959515572,-0.028593240305781,-0.054155647754669],[0.0060782264918089,0.017358837649226,-0.033499915152788],[0.03572778403759,0.083217188715935,0.026350514963269]],[[0.049448378384113,-0.05512136220932,0.0032861479558051],[0.017795091494918,-0.027934739366174,0.0084778387099504],[-0.060717422515154,0.06330269575119,-0.12223612517118]],[[0.022397968918085,-0.011957474984229,-0.002927694004029],[-0.027528274804354,0.13629804551601,-0.024726396426558],[-0.0042247157543898,0.01349962502718,0.027902726083994]],[[0.089887358248234,-0.092552050948143,-0.18842424452305],[-0.15494927763939,-0.16303795576096,-0.11691728979349],[0.056420460343361,-0.076937228441238,-0.025840735062957]],[[0.018814625218511,0.042041547596455,-0.02703526429832],[-0.046170119196177,-0.043485913425684,-0.012427624315023],[-0.0043821213766932,-0.064029194414616,0.027754744514823]]],[[[-0.066711358726025,0.033769782632589,-0.14964187145233],[-0.060597088187933,0.05547159165144,0.037307161837816],[-0.022842286154628,0.032563585788012,0.085352659225464]],[[0.012150039896369,-0.021915514022112,0.010399426333606],[-0.048688150942326,0.010259174741805,0.016641516238451],[-0.067009426653385,-0.021732868626714,0.12550093233585]],[[-0.033672731369734,-0.11389914155006,-0.12363864481449],[0.092790156602859,-0.037124015390873,-0.055879797786474],[-0.031380273401737,0.060624375939369,-0.0154661340639]],[[-0.005041497759521,-0.053452715277672,-0.06397545337677],[0.046989306807518,0.0095670148730278,-0.053554601967335],[0.010412978939712,-0.057630270719528,-0.018908347934484]],[[-0.011129931546748,-0.024352831766009,-0.0038385144434869],[-0.083266153931618,-0.08354390412569,0.012421700172126],[0.047324541956186,0.00069245032500476,-0.066228561103344]],[[-0.033246714621782,-0.078200235962868,-0.015769217163324],[0.16158366203308,-0.14944112300873,-0.17653632164001],[-0.024538738653064,-0.020145498216152,-0.014278501272202]],[[-0.031670074909925,0.037727445363998,0.065062768757343],[-0.16450595855713,-0.057296417653561,0.019153293222189],[-0.09097446501255,0.062190733850002,-0.027267161756754]],[[-0.050676595419645,0.01232994440943,0.0029727234505117],[-0.0036692637950182,-0.054408531636,0.065630629658699],[-0.11539296805859,0.063032858073711,0.021058889105916]],[[0.06480698287487,-0.023603674024343,-0.14033971726894],[0.004512295126915,0.11008360236883,-0.12612599134445],[0.049143936485052,-0.011273349635303,-0.0041993106715381]],[[0.0112135251984,0.047031864523888,0.17288376390934],[-0.059470076113939,0.12754376232624,0.25827112793922],[0.060469683259726,0.27428752183914,0.070885345339775]],[[0.042436119168997,-0.022800251841545,-0.11103336513042],[0.017969263717532,-0.070467054843903,0.097606137394905],[0.1155339628458,0.1105080768466,-0.059676993638277]],[[0.050965908914804,-0.13023619353771,-0.0070186583325267],[0.034205634146929,-0.030059181153774,-0.049342360347509],[-0.09545973688364,0.019199348986149,0.030904892832041]],[[0.017259670421481,-0.073143392801285,-0.14148515462875],[0.043216291815042,0.0065148160792887,-0.050154529511929],[-0.0011258769081905,-0.10303095728159,-0.045189835131168]],[[-0.1294566988945,0.020120605826378,0.02365130931139],[-0.14166502654552,-0.15151929855347,-0.063064001500607],[-0.039195518940687,0.092530645430088,0.10708078742027]],[[-0.018390530720353,-0.0692288428545,0.096591047942638],[-0.059814453125,0.01775299757719,0.10861791670322],[-0.027348577976227,-0.13844856619835,0.04305412247777]],[[-0.18697647750378,0.062454883009195,0.048211324959993],[-0.011884682811797,-0.042117219418287,-0.0071924333460629],[-0.038405559957027,-0.022347604855895,0.0079693561419845]],[[-0.2020758241415,-0.10116568952799,-0.075308710336685],[-0.14213100075722,-0.14097459614277,-0.061818305402994],[-0.21196134388447,-0.12655599415302,-0.051495116204023]],[[-0.15187326073647,0.0033918132539839,0.052161995321512],[0.040107034146786,-0.14187826216221,-0.07232242077589],[0.20186750590801,-0.11428243666887,-0.064749322831631]],[[-0.19773940742016,-0.075072452425957,-0.0056357746943831],[-0.24348194897175,-0.080615408718586,0.009842867963016],[-0.11238013952971,-0.094864435493946,0.12433516979218]],[[-0.039412468671799,0.074729137122631,-0.0030703744851053],[0.011648102663457,-0.086256936192513,-0.017156399786472],[0.058779086917639,-0.17544156312943,0.038530074059963]],[[-0.051859930157661,-0.00077587808482349,-0.096909135580063],[-0.059481903910637,0.1205211058259,0.075794085860252],[-0.074440911412239,-0.11464989930391,0.072393409907818]],[[0.030626974999905,-0.069668114185333,0.028563665226102],[-0.016643324866891,-0.071633733808994,0.0582543797791],[-0.11081781238317,0.028336009010673,-0.020198788493872]],[[0.051901437342167,0.0064510093070567,0.079773396253586],[0.050774246454239,0.1433000266552,0.07570394128561],[-0.015363361686468,0.16883845627308,0.11345577985048]],[[-0.090961329638958,-0.088779084384441,-0.042534228414297],[-0.061297126114368,-0.01788486354053,-0.076658025383949],[-0.2116367816925,-0.020593388006091,0.16138462722301]],[[-0.038803923875093,0.084770381450653,-0.023747511208057],[-0.14047172665596,-0.012015759013593,0.083231769502163],[0.013133590109646,0.10818480700254,-0.038000345230103]],[[0.088062390685081,0.072308279573917,-0.1118618324399],[-0.0030680305790156,-0.10647826641798,0.01180827524513],[-0.063569068908691,-0.021524447947741,-0.062429964542389]],[[0.016675788909197,-0.00056163803674281,0.041591301560402],[0.082280270755291,0.0087507208809257,-0.075283601880074],[0.051259513944387,-0.090623669326305,-0.041140269488096]],[[0.039667721837759,0.15529373288155,0.11732953041792],[0.070245705544949,-0.0065668197348714,0.25715619325638],[-0.023607604205608,-0.10932392627001,0.075633965432644]],[[0.091583520174026,-0.12425435334444,0.062908738851547],[0.052322424948215,0.0013201974797994,-0.067212820053101],[-0.016348807141185,-0.0332239754498,0.054998032748699]],[[0.066602736711502,-0.058685995638371,0.022541578859091],[-0.0056394506245852,-0.0084164096042514,0.0079021453857422],[-0.012515822425485,0.038643632084131,-0.08683355152607]],[[-0.1170345172286,-0.13311910629272,0.020139673724771],[0.017342703416944,-0.096121780574322,-0.0069053992629051],[0.13855795562267,-0.14911483228207,-0.14771826565266]],[[-0.016013212502003,0.00030477685504593,-0.037620544433594],[0.029370186850429,-0.13440279662609,-0.14615742862225],[-0.023862577974796,0.0066991145722568,-0.0055239535868168]]],[[[0.0077457898296416,-0.26327088475227,-0.058354437351227],[0.0055494648404419,0.11696685105562,0.00055023626191542],[-0.0054202717728913,-0.019341168925166,-0.0027497760020196]],[[0.0024855758529156,0.14034856855869,0.1522369235754],[-0.016333289444447,-0.12937812507153,-0.05875862762332],[-0.03374170139432,-0.011251190677285,-0.048805080354214]],[[-0.061536267399788,0.10754879564047,0.096032500267029],[-0.029102753847837,0.0025144061073661,-0.017882477492094],[0.047835327684879,-0.024237168952823,0.037543073296547]],[[-0.024463146924973,-0.014186853542924,-0.31909388303757],[-0.014715100638568,-0.030774671584368,-0.043092004954815],[0.024336164817214,0.026742666959763,-0.017782961949706]],[[-0.040375720709562,-0.030080858618021,0.015648851171136],[-0.018730552867055,0.014618806540966,-0.046307437121868],[0.0057138996198773,0.025354519486427,-0.012555574066937]],[[-0.045006275177002,0.061645153909922,-0.04888404160738],[0.1097723543644,0.024279398843646,-0.0074976561591029],[0.069640547037125,0.095546036958694,-0.01035248208791]],[[-0.025108283385634,-0.04749308526516,0.021755307912827],[-0.028315093368292,-0.073287360370159,0.075322814285755],[-0.0076499842107296,-0.028012873604894,-0.024946732446551]],[[0.065427631139755,-0.036322303116322,-0.031889960169792],[-0.0066435523331165,0.019739596173167,0.12180612236261],[0.012971013784409,0.0011816456681117,0.023323087021708]],[[0.052371274679899,0.034996829926968,-0.04441862180829],[0.011065444909036,0.060430288314819,-0.076304405927658],[0.021606175228953,0.062902309000492,-0.12067753821611]],[[0.070245079696178,-0.025247078388929,0.17957276105881],[-0.13650894165039,-0.17345812916756,-0.12505914270878],[0.0082883620634675,0.054863590747118,0.0054160063154995]],[[0.024716477841139,0.0081206010654569,0.060976587235928],[0.21216470003128,0.063745498657227,0.023785170167685],[-0.083312183618546,-0.016403410583735,-0.00043024262413383]],[[0.11266008019447,0.0056619145907462,0.13268414139748],[0.12603282928467,-0.05417312681675,0.036002915352583],[0.010025114752352,-0.15645681321621,-0.11736962944269]],[[0.041563529521227,-0.088435731828213,0.011999156326056],[-0.10495610535145,-0.18357181549072,-0.069701194763184],[0.1367883682251,0.0016339735593647,0.075862042605877]],[[-0.070234961807728,-0.010611957870424,-0.062062166631222],[0.067238889634609,-0.025706727057695,0.014354990795255],[0.017897350713611,0.06406657397747,0.089538924396038]],[[-0.042535245418549,-0.088314600288868,-0.074606984853745],[-0.03442744538188,0.0057469988241792,0.028843201696873],[0.033224001526833,0.035436522215605,-0.087030135095119]],[[0.033377561718225,0.068852715194225,-0.017283018678427],[-0.083068214356899,-0.091693453490734,-0.051319994032383],[0.029011463746428,0.087838612496853,0.15063604712486]],[[-0.042632512748241,0.065489858388901,-0.10939820855856],[-0.033389151096344,-0.14292766153812,-0.082531057298183],[-0.012365729548037,-0.048605661839247,-0.033250752836466]],[[0.010034410282969,0.071538798511028,-0.0058504128828645],[-0.00043803278822452,-0.072529286146164,0.10490207374096],[-0.00011448240547907,0.017881061881781,-0.042667388916016]],[[0.047978080809116,-0.020008213818073,0.09601965546608],[-0.0428751334548,-0.089005328714848,-0.022162027657032],[-0.002851769560948,0.064776130020618,-0.10469748079777]],[[-0.032482974231243,-0.023379107937217,0.010237537324429],[-0.027296053245664,-0.060578435659409,-0.017772287130356],[0.077599428594112,-0.0090312659740448,-0.087729625403881]],[[0.068534210324287,0.020630130544305,0.29064837098122],[-0.02958669513464,-0.035434685647488,-0.047341756522655],[0.0044184201397002,-0.085784964263439,-0.023670261725783]],[[-0.10632166266441,0.045267730951309,0.16324503719807],[0.037754397839308,0.089841395616531,-0.14430981874466],[-0.074832245707512,-0.13157227635384,-0.030978266149759]],[[-0.030533347278833,-0.050325442105532,0.0079864161089063],[0.10530517250299,0.029848795384169,0.13848991692066],[-0.020834363996983,0.14684566855431,0.16223160922527]],[[0.023756558075547,0.017058022320271,-0.0083998972550035],[0.023071382194757,0.036213286221027,0.02209503762424],[0.00058807473396882,0.056454561650753,-0.026364667341113]],[[-0.039246410131454,-0.00042981345904991,-0.041254092007875],[-0.071002945303917,-0.0074110808782279,0.034367792308331],[-0.04013605043292,-0.10625077784061,-0.10736301541328]],[[-0.020872298628092,-0.011198407039046,0.13226428627968],[-0.041405942291021,-0.036393597722054,0.026585271582007],[-0.052069492638111,0.0051300628110766,0.054763145744801]],[[-0.017062878236175,-0.10969635099173,-0.11786215007305],[0.030290508642793,0.12355627119541,0.059557978063822],[0.016607280820608,0.013683003373444,0.00584283657372]],[[0.043492261320353,-0.16798031330109,0.13198681175709],[-0.082759484648705,-0.18307490646839,-0.091407686471939],[0.032472230494022,0.087847031652927,-0.035453949123621]],[[0.074591025710106,0.096517980098724,0.11219468712807],[0.02362484484911,0.10893864184618,-0.069194093346596],[0.046606935560703,-0.0077802143059671,-0.037959549576044]],[[-0.0052507952786982,-0.11126379668713,-0.1047752276063],[0.0016440330073237,0.005844525527209,-0.079794891178608],[0.026569673791528,0.042152177542448,0.009266977198422]],[[-0.030344381928444,-0.17238126695156,0.036888401955366],[-0.028784718364477,0.060718569904566,-0.05874202772975],[0.046788081526756,0.019714891910553,-0.018192898482084]],[[0.0056097232736647,0.04350183531642,-0.22749881446362],[0.014439277350903,-0.03063215687871,0.062416072934866],[0.012073782272637,0.024716895073652,0.014867584221065]]],[[[-0.0022124007809907,-0.052201569080353,0.0084475921466947],[0.0055862418375909,0.094582930207253,-0.13399471342564],[0.066446609795094,0.067392930388451,-0.016226561740041]],[[-0.011531108990312,0.0044688591733575,0.065725475549698],[-0.087475396692753,-0.17865641415119,0.098937995731831],[-0.030534928664565,-0.021753747016191,0.10581236332655]],[[0.017121657729149,0.0023262915201485,0.033114694058895],[0.19996762275696,0.059235636144876,-0.02937089651823],[-0.11005710810423,-0.02376227080822,0.052545674145222]],[[-0.058393709361553,-0.089019991457462,0.0062514590099454],[0.0046425545588136,0.03472875803709,0.01163384411484],[-0.051358468830585,-0.037928219884634,0.0045658843591809]],[[0.033112738281488,-0.043609790503979,0.0028659689705819],[0.070349670946598,0.070891067385674,0.054863382130861],[0.14025555551052,0.1423052251339,0.090681597590446]],[[0.019408788532019,-0.014437333680689,0.045334003865719],[-0.082698658108711,0.018606098368764,-0.021366789937019],[0.019320476800203,0.07158088684082,0.030514793470502]],[[-0.035803928971291,-0.095678880810738,-0.10957259684801],[-0.0066032293252647,-0.064248740673065,-0.01919817365706],[0.032364718616009,-0.075849741697311,-0.074341841042042]],[[0.020664200186729,-0.048261776566505,0.020444182679057],[-0.05762692540884,-0.085174076259136,-0.082202643156052],[-0.056422293186188,-0.11662479490042,-0.03803825750947]],[[0.014915510080755,-0.06486963480711,-0.13209037482738],[0.12225302308798,-0.13245743513107,0.061646394431591],[0.069589957594872,-0.14873151481152,-0.026736678555608]],[[0.071814246475697,0.0073435232043266,0.1364164352417],[-0.12897646427155,-0.048696845769882,0.11148735880852],[-0.06387048214674,0.062887512147427,0.27207747101784]],[[0.2891705930233,0.098196461796761,-0.036056961864233],[0.11188362538815,0.0091583486646414,-0.053341425955296],[-0.10320887714624,-0.29256498813629,-0.18274760246277]],[[0.033526122570038,-0.0053108073771,0.032065223902464],[-0.032653789967299,-0.025685409083962,0.029856106266379],[-0.051581542938948,-0.041139110922813,-0.028058549389243]],[[-0.015833796933293,-0.028028983622789,0.060339417308569],[-0.04175815358758,-0.020359206944704,0.034837484359741],[-0.081754088401794,-0.11720380932093,0.002429157262668]],[[0.16218848526478,0.030982891097665,-0.022852819412947],[-0.023231538012624,-0.050596673041582,0.019223986193538],[-0.01675483956933,0.039676073938608,-0.028529325500131]],[[0.02276149764657,-0.072654709219933,-0.058269910514355],[0.015821974724531,0.021780179813504,-0.013186355121434],[0.093520753085613,-0.023352846503258,-0.010051734745502]],[[-0.10598489642143,-0.044651612639427,-0.088787853717804],[-0.079452387988567,-0.06148611754179,-0.049035359174013],[0.010542765259743,-0.093321450054646,-0.001797602744773]],[[0.0405647829175,-0.045206654816866,-0.038859397172928],[-0.02821996435523,-0.15748983621597,-0.077344536781311],[0.0210867729038,-0.090241283178329,-0.062914721667767]],[[0.014294021762908,0.035216204822063,-0.0051779602654278],[-0.0353490896523,-0.042288351804018,-0.096560768783092],[0.056353818625212,-0.078512012958527,-0.074163258075714]],[[-0.063524298369884,0.019703265279531,0.05508391559124],[-0.0542510189116,-0.13338184356689,0.071734189987183],[0.054843503981829,0.091224908828735,0.023626228794456]],[[-0.019369343295693,-0.041765443980694,-0.0022318565752357],[0.042448651045561,-0.088474236428738,0.040397193282843],[0.070323877036572,-0.22419966757298,0.017804114148021]],[[-0.13447389006615,0.18474045395851,0.15070217847824],[-0.17086727917194,-0.045763924717903,0.26329651474953],[-0.14198473095894,-0.026786351576447,0.061307065188885]],[[-0.12922030687332,0.047159347683191,-0.1083011329174],[0.082503922283649,-0.075848080217838,-0.055555023252964],[-0.041580643504858,-0.014642097987235,-0.1199286878109]],[[0.032004356384277,0.033650990575552,0.036324370652437],[-0.093650653958321,0.19846205413342,0.3532021343708],[0.12175369262695,-0.021103007718921,0.1164552718401]],[[-0.028102489188313,-0.15776713192463,-0.00290871062316],[-0.13674898445606,0.012363323010504,-0.055792022496462],[-0.038226511329412,-0.061691224575043,0.081026844680309]],[[-0.019149530678988,0.066241748631001,0.069067783653736],[0.005824962630868,0.01796505227685,0.019649351015687],[0.0039753648452461,0.034894477576017,-0.016076410189271]],[[-0.095380425453186,-0.050551030784845,-0.012621900998056],[-0.024533865973353,-0.042646165937185,0.043468654155731],[0.015425239689648,0.048975829035044,0.057850539684296]],[[0.0085140541195869,0.015160661190748,-0.10315372794867],[0.14165988564491,0.07013151794672,-0.060267120599747],[0.056122161448002,-0.098179958760738,-0.017789283767343]],[[0.089718207716942,0.096509970724583,-0.053985085338354],[0.032500598579645,-0.080913633108139,-0.15252257883549],[0.12354049086571,-0.12326030433178,-0.12330647557974]],[[0.022247461602092,-0.070961304008961,0.056493546813726],[0.094332650303841,-0.15299375355244,-0.010761167854071],[0.035228379070759,-0.01040873862803,0.094823874533176]],[[0.044534467160702,-0.0095202317461371,-0.10369990766048],[0.042158514261246,0.10695533454418,-0.0018220138736069],[0.08512157201767,-0.02422334253788,-0.068912476301193]],[[-0.023000650107861,0.048218946903944,-0.09537198394537],[-0.003947545774281,-0.030730213969946,-0.007972301915288],[0.029482156038284,-0.047495737671852,0.032930251210928]],[[0.022222731262445,-0.23768673837185,-0.15403467416763],[-0.037483163177967,-0.067714296281338,-0.13421934843063],[-0.019013157114387,-0.0064744874835014,0.016487928107381]]],[[[0.019648602232337,0.034887656569481,0.052381820976734],[-0.073610447347164,-0.036865882575512,-0.017514424398541],[-0.056303072720766,-0.093282990157604,-0.034358292818069]],[[-0.070253826677799,-0.015790414065123,0.082661166787148],[0.027886107563972,0.10244452208281,0.02003769762814],[0.018295740708709,-0.0078005064278841,-0.080871522426605]],[[0.10592413693666,-0.09364715218544,-0.14424356818199],[0.059492167085409,0.067502945661545,-0.063801802694798],[-0.088824532926083,-0.0055997902527452,-0.12742726504803]],[[0.095433339476585,0.098201528191566,0.038975488394499],[0.0091995345428586,0.0044658742845058,0.081328734755516],[-0.0011989163467661,0.045335445553064,-0.088034376502037]],[[-0.054274868220091,-0.015032380819321,-0.14163671433926],[-0.089142248034477,0.061721630394459,-0.084670603275299],[0.0027858982793987,-0.073698215186596,0.0049552391283214]],[[0.022424465045333,0.025808734819293,-0.063770443201065],[0.18830989301205,-0.019829111173749,-0.033139456063509],[-0.082485295832157,-0.096887834370136,-0.095599740743637]],[[-0.042885631322861,0.05018064007163,-0.020578680559993],[0.081362143158913,0.02170086465776,-0.015981698408723],[-0.11747154593468,0.0065133511088789,0.041239712387323]],[[0.020078560337424,-0.013237494975328,0.029497992247343],[-0.056318636983633,-0.015703342854977,-0.03090263903141],[-0.10242895036936,0.074375808238983,0.041976187378168]],[[0.0041110785678029,-0.069395527243614,0.033358428627253],[-0.13550099730492,-0.054457742720842,0.05807513743639],[-0.10735930502415,0.036803897470236,-0.047539185732603]],[[0.034156322479248,0.08483312278986,0.052876766771078],[0.067199684679508,0.13267916440964,0.028720919042826],[0.041232500225306,0.081760376691818,-0.010768426582217]],[[0.0053653907962143,0.071818135678768,0.029342390596867],[-0.076885730028152,0.066793814301491,0.0036912087816745],[0.16922797262669,-0.079665638506413,0.032361112535]],[[-0.092420823872089,0.027122868224978,-0.10535384714603],[-0.14375098049641,-0.014576879329979,0.028867486864328],[0.17017985880375,-0.046779952943325,0.089704647660255]],[[0.094382680952549,0.01802327670157,0.0014296973822638],[-0.036314487457275,-0.084560811519623,-0.032209035009146],[-0.095254324376583,0.065005160868168,0.078201442956924]],[[0.069916285574436,0.02988613769412,0.093380883336067],[-0.03374195471406,-0.072351261973381,-0.019452815875411],[0.071386992931366,-0.073734246194363,0.0093926955014467]],[[-0.047504138201475,-0.12363179028034,0.16647663712502],[-0.069611705839634,-0.12961041927338,-0.017024260014296],[-0.029829893261194,-0.080276034772396,0.0016585710691288]],[[-0.068168230354786,0.080730877816677,-0.072629183530807],[0.10869514942169,0.027209078893065,0.011314312927425],[0.12326875329018,0.10510314255953,0.06031734123826]],[[-0.034199461340904,-0.085469923913479,-0.015683099627495],[-0.074624434113503,-0.08229660987854,0.10144703090191],[0.010240999050438,-0.069029748439789,-0.062707401812077]],[[0.080524519085884,0.042626705020666,-0.016219455748796],[0.084765791893005,-0.03045461140573,-0.09274772554636],[-0.15722647309303,-0.0038853934966028,-0.025052443146706]],[[-0.082704305648804,0.05325960740447,-0.056593872606754],[0.056344874203205,0.06405933201313,0.051901638507843],[-0.0667689666152,0.058074980974197,-0.044842734932899]],[[-0.030874434858561,0.069068498909473,0.062602743506432],[-0.0075033362954855,0.0011354913003743,0.021342791616917],[0.0074498588219285,-0.033063046634197,0.023929532617331]],[[0.12259738147259,0.054012794047594,0.095881469547749],[-1.268044252356e-05,-0.071598961949348,0.16552563011646],[-0.089487560093403,0.13134442269802,-0.022786989808083]],[[0.0064076697453856,-0.037074908614159,0.15240639448166],[0.075939178466797,-0.023905234411359,0.068382620811462],[0.077461004257202,-0.14416415989399,0.084739618003368]],[[0.026893030852079,0.065643765032291,-0.02215414494276],[0.015707271173596,0.030731486156583,-0.014926433563232],[0.05562885850668,0.036232184618711,0.096842087805271]],[[-0.022593753412366,0.016142940148711,0.073884934186935],[0.074180409312248,0.05457504093647,0.046894889324903],[0.025415636599064,0.045795310288668,-0.022378608584404]],[[0.065212272107601,0.062362298369408,-0.00042222643969581],[-0.070968016982079,0.051301959902048,-0.080005429685116],[0.036079250276089,0.038657430559397,-0.031318705528975]],[[0.07613018155098,-0.045739803463221,0.043061409145594],[-0.0053969300352037,0.030634138733149,-0.063092708587646],[-0.061161398887634,-0.022695092484355,-0.047598104923964]],[[-0.11710979789495,0.031053449958563,-0.077586330473423],[0.036410484462976,0.022920656949282,0.08561085164547],[-0.059948582202196,0.12071111798286,-0.054901171475649]],[[-0.00024598513846286,0.071525327861309,0.025715354830027],[0.055289376527071,0.016341276466846,-0.045061267912388],[-0.078687220811844,0.087193474173546,0.11195800453424]],[[0.098424136638641,-0.0049101100303233,0.16543279588223],[-0.083868406713009,0.015408910810947,0.033403962850571],[-0.20516972243786,-0.089729599654675,-0.029713718220592]],[[-0.027184510603547,0.030461532995105,0.03429651260376],[0.10454371571541,-0.038219910115004,0.070992991328239],[0.15904562175274,-0.085524879395962,-0.0030447149183601]],[[0.093419179320335,-0.059156853705645,0.14296799898148],[0.12815296649933,-0.19779461622238,-0.093947701156139],[-0.019110469147563,-0.036392699927092,-0.11490864306688]],[[0.009595962241292,0.06404136121273,-0.014179882593453],[0.1227008253336,-0.0047498294152319,0.00079397932859138],[0.073363669216633,0.044185180217028,0.090061038732529]]],[[[-0.10912109166384,-0.0078583611175418,-0.23834705352783],[0.051918044686317,0.097308985888958,-0.25702905654907],[-0.050905674695969,-0.061312355101109,-0.11536410450935]],[[0.0063831177540123,-0.0084664132446051,0.020619599148631],[0.0047574969939888,-0.0029453679453582,-0.035231333225965],[-0.027268245816231,-0.036460872739553,0.029513418674469]],[[0.043729696422815,0.046608988195658,0.05066155269742],[0.11237713694572,-0.013847447931767,-0.094032615423203],[0.0027927067130804,-0.16204385459423,-0.026374813169241]],[[-0.033924780786037,-0.016196750104427,-0.065516762435436],[-0.047455459833145,0.024686336517334,-0.025571040809155],[-0.0036128270439804,-0.011038636788726,0.080994077026844]],[[0.068810731172562,0.044486347585917,0.085631653666496],[0.056969102472067,0.055930852890015,-0.0016613841289654],[-0.056010134518147,0.065799333155155,0.089224420487881]],[[-0.14099426567554,0.010829105973244,-0.048457663506269],[-0.1126674041152,0.11060743778944,-0.0090225730091333],[0.018834117799997,0.24562503397465,-0.118378482759]],[[0.024709014222026,0.07084484398365,0.025155609473586],[0.087016128003597,0.090211965143681,-0.028255878016353],[-0.076443508267403,-0.104257337749,-0.060950547456741]],[[0.10123911499977,-0.066136240959167,-0.086147949099541],[0.04115179926157,-0.2227897644043,-0.04655085504055],[-0.03601261228323,-0.06072436645627,-0.081397093832493]],[[-0.0046866456978023,-0.015604929998517,-0.031492203474045],[-0.069673754274845,0.011481090448797,-0.10005848109722],[0.014705469831824,0.14409470558167,0.015091545879841]],[[0.052830062806606,0.1689437776804,0.15028050541878],[-0.043710421770811,0.25866106152534,0.10806080698967],[0.041938226670027,0.16990964114666,0.13574732840061]],[[0.068081960082054,-0.070507183670998,0.041608039289713],[0.038820866495371,0.068141892552376,-0.054396770894527],[-0.062931589782238,-0.057510834187269,-0.016807923093438]],[[-0.12190271168947,-0.0060678771696985,0.089439772069454],[-0.10693718492985,-0.065238334238529,-0.054306205362082],[0.022652475163341,0.041207145899534,0.0027321011293679]],[[-0.041349437087774,-0.15733301639557,-0.04262650385499],[-0.1149699985981,-0.14266139268875,-0.0074321278370917],[-0.017431475222111,0.13860708475113,0.10384713858366]],[[0.18886806070805,-0.059074100106955,-0.17852929234505],[0.021781384944916,-0.13871401548386,0.031144268810749],[0.073083892464638,-0.16271951794624,-0.30052655935287]],[[0.0070418054237962,0.075653322041035,-0.06754994392395],[0.055861722677946,-0.033264994621277,0.025824571028352],[0.077158592641354,0.020072318613529,-0.038317177444696]],[[-0.12538850307465,-0.18487013876438,-0.044522553682327],[-0.22947624325752,-0.1689564883709,0.14343410730362],[-0.12589213252068,-0.0025535000022501,0.045577149838209]],[[-0.0049291253089905,-0.014395220205188,-0.28391268849373],[0.057183872908354,-0.11258482187986,-0.12798680365086],[-0.0022189340088516,0.0032675210386515,0.14810395240784]],[[-0.019562175497413,-0.16929061710835,-0.063924998044968],[0.0030233133584261,-0.041773620992899,0.036796923726797],[0.042914010584354,-0.06706278771162,0.097082853317261]],[[-0.067597270011902,-0.07417356222868,-0.11479019373655],[0.023471731692553,-0.0074807782657444,-0.08713273704052],[0.11333375424147,-0.13083176314831,0.001833648304455]],[[0.10243166983128,-0.016243247315288,-0.033012319356203],[0.11552871018648,-0.064055867493153,-0.022428277879953],[0.065508797764778,0.055554002523422,0.0053347409702837]],[[-0.04955467581749,-0.015992403030396,0.26209843158722],[-0.076319321990013,0.076024867594242,0.16384607553482],[-0.031348817050457,0.033378563821316,0.0988415107131]],[[-0.027246696874499,-0.065753638744354,0.080239214003086],[-0.040754314512014,0.0091898683458567,-0.0042654019780457],[-0.07223879545927,-0.10381709784269,-0.0032483590766788]],[[-0.026934551075101,-0.030641598626971,0.27504223585129],[-0.0013301421422511,0.21765504777431,0.1993228495121],[-0.08523628115654,0.17782580852509,0.10113210976124]],[[-0.021384498104453,-0.033268559724092,-0.020808648318052],[0.07211272418499,-0.03964464366436,0.0002573192177806],[0.12013279646635,-0.031967613846064,-0.031009187921882]],[[-0.092142224311829,-0.0013904386432841,0.085184305906296],[0.026423148810863,0.10722951591015,-0.09213549643755],[-0.021149540320039,-0.0017698698211461,0.023814998567104]],[[0.036407884210348,0.053077325224876,0.030829241499305],[0.059568915516138,-0.0027485173195601,-0.031573850661516],[-0.0087907928973436,0.0015943403122947,-0.031957998871803]],[[0.033477410674095,-0.07134061306715,-0.10620383173227],[0.0016215465730056,0.047828081995249,-0.011124988086522],[-0.004895118996501,0.090703755617142,0.015901461243629]],[[-0.10295870155096,-0.033911984413862,0.0058947918005288],[-0.040286481380463,0.031746298074722,0.0075270961970091],[0.01805791631341,0.05176655203104,-0.029268931597471]],[[-0.0225201677531,0.084720991551876,0.049771022051573],[0.048936825245619,-0.085050530731678,-0.033766038715839],[0.1054600700736,-0.034656926989555,-0.029999058693647]],[[0.16210882365704,-0.12263701856136,-0.073917143046856],[0.049427434802055,0.14040151238441,-0.086656011641026],[0.080874569714069,-0.0024999701417983,-0.099564485251904]],[[0.0124273262918,0.045353181660175,0.17127035558224],[-0.14406707882881,0.067670941352844,0.088065050542355],[-0.073049977421761,-0.11084812879562,0.014390327036381]],[[-0.040381487458944,0.098206147551537,-0.054103080183268],[0.035244610160589,0.12470170855522,0.006268338765949],[0.1222855374217,0.10512667149305,0.072701193392277]]],[[[-0.053808487951756,0.17131160199642,-0.0072078118100762],[0.15677835047245,-0.10430571436882,0.10399570316076],[-0.090911902487278,0.0092063872143626,-0.057097192853689]],[[-0.046199448406696,0.037262719124556,0.11929751932621],[0.039675388485193,-0.086469925940037,-0.039715804159641],[-0.0011058003874496,-0.080582208931446,0.0041358582675457]],[[0.080213733017445,0.097962558269501,0.11063076555729],[-0.012438592500985,0.070278115570545,-0.07581502199173],[-0.15477699041367,0.072105430066586,-0.12732225656509]],[[0.036690805107355,-0.022997457534075,-0.07261099666357],[0.0020201345905662,0.09434936195612,0.081639640033245],[-0.026791976764798,-0.012953764759004,0.078861907124519]],[[0.14261291921139,0.076457135379314,0.093207523226738],[0.11613912135363,-0.079521514475346,-0.021322824060917],[0.017658650875092,-0.019602315500379,-0.0021022311411798]],[[-0.00792021676898,-0.04166042432189,-0.17991332709789],[-0.041054911911488,0.018926402553916,0.06109844148159],[0.084723815321922,0.047450326383114,0.032506424933672]],[[-0.063088096678257,-0.091126792132854,-0.048013962805271],[0.047997090965509,-0.0034312221687287,-0.015537747181952],[-0.031894631683826,0.14625704288483,0.010522888973355]],[[-0.0080914376303554,-0.0052191326394677,-0.067788787186146],[-0.22894223034382,-0.14152278006077,-0.066871963441372],[0.015816507861018,-0.060306344181299,-0.014782567508519]],[[-0.12868675589561,-0.092997148633003,0.044431835412979],[0.019666569307446,0.14172790944576,0.12149537354708],[0.048843555152416,-0.12426464259624,-0.17324927449226]],[[0.0050869155675173,-0.066853746771812,0.2214168459177],[0.20545223355293,0.079179786145687,-0.11664941161871],[-0.10256680101156,0.021915052086115,-0.12867841124535]],[[-0.026903619989753,-0.021474976092577,0.086350828409195],[0.063083179295063,0.029623633250594,0.028637176379561],[-0.020102433860302,-0.092458248138428,0.032842241227627]],[[0.014658094383776,-0.030829440802336,0.074496276676655],[-0.055085014551878,0.088483870029449,0.013845497742295],[0.096036948263645,0.084427185356617,-0.10798693448305]],[[0.059202544391155,0.16592799127102,-0.023055898025632],[-0.04383347928524,-0.083771839737892,-0.12567919492722],[0.066407382488251,-0.074971787631512,0.12077818065882]],[[-0.098312400281429,-0.03193861246109,-0.14433886110783],[-0.017713814973831,0.018976042047143,0.11105588078499],[0.060959707945585,0.046691659837961,0.11878380179405]],[[-0.0032958323135972,0.052401330322027,0.058846194297075],[-0.018635399639606,-0.080617047846317,-0.10912849754095],[-0.094371266663074,-0.0039549982175231,-0.047535467892885]],[[0.0072479066438973,0.022230686619878,0.073279097676277],[0.10642539709806,0.073599465191364,-0.021356146782637],[-0.031497858464718,-0.013669075444341,-0.06765104085207]],[[-0.09541416913271,-0.026820993050933,-0.11058376729488],[-0.036589052528143,0.020070569589734,-0.13154692947865],[0.073120951652527,0.029639041051269,0.084766924381256]],[[-0.06523634493351,0.043727956712246,-0.16562534868717],[-0.10159619152546,-0.057297166436911,0.11694783717394],[-0.085492849349976,-0.054314266890287,-0.081276036798954]],[[-0.11759725213051,-0.030501866713166,-0.030113581568003],[0.070487432181835,0.14889580011368,-0.072432495653629],[0.030863516032696,0.15951469540596,0.0074201659299433]],[[-0.0085790026932955,-0.065814942121506,0.028272584080696],[-0.054323293268681,0.02669127844274,0.049918077886105],[0.0068229050375521,0.030356803908944,-0.12616273760796]],[[-0.10698664933443,-0.084583170711994,0.30285584926605],[-0.037914536893368,0.026254959404469,-0.027610652148724],[-0.061390247195959,-0.1626887768507,-0.064668014645576]],[[0.083151385188103,0.091603308916092,0.19445052742958],[-0.0027533995453268,0.15598252415657,-0.0037585026584566],[0.090845443308353,-0.042666606605053,-0.16201874613762]],[[0.10100362449884,0.13068978488445,0.0070880125276744],[-0.07293263822794,-0.1766170412302,-0.025585843250155],[-0.073670484125614,-0.0072165154851973,0.11300318688154]],[[-0.020877292379737,0.019738454371691,-0.0019533347804099],[0.040538374334574,-0.053982827812433,0.033914834260941],[-0.10321982949972,-0.087769605219364,-0.042614698410034]],[[0.063977770507336,-0.040020421147346,0.084125772118568],[0.1009814068675,-0.047556091099977,0.084170959889889],[0.075311042368412,0.029364315792918,-0.0061994981952012]],[[0.036237753927708,0.11373978108168,-0.045946463942528],[-0.089005567133427,0.022747719660401,-0.040614176541567],[-0.023208722472191,0.0044257552362978,-0.028248405084014]],[[-0.0013830247335136,-0.050606489181519,-0.089653976261616],[-0.012331210076809,0.0014494998613372,0.032129988074303],[0.034517552703619,0.028888858854771,0.045102801173925]],[[0.14070904254913,-0.10660552978516,0.037046488374472],[0.25237736105919,-0.12530955672264,0.082117676734924],[0.074222534894943,0.14472414553165,-0.17357110977173]],[[-0.077656216919422,-0.19436199963093,-0.17395628988743],[0.0048658517189324,-0.0098353950306773,0.066858731210232],[0.0070787994191051,0.059338480234146,0.1143577247858]],[[0.09070398658514,-0.0062502892687917,-0.10975852608681],[-0.097539722919464,0.052633542567492,0.027545811608434],[0.048769421875477,0.19257047772408,-0.0088143656030297]],[[0.27720418572426,-0.014221969991922,-0.0593386515975],[0.11461663991213,-0.059539768844843,0.037182353436947],[0.12780547142029,-0.071078702807426,-0.05171862244606]],[[0.011320271529257,0.098140433430672,0.13964787125587],[-0.027547823265195,-0.062644183635712,-0.11623932421207],[-0.03433433175087,0.083369933068752,0.11182433366776]]],[[[0.049220092594624,-0.049896541982889,0.014866148121655],[0.00051007914589718,0.052696824073792,-0.034156136214733],[-0.055502723902464,0.026920320466161,-0.028077121824026]],[[-0.1291069239378,0.085055142641068,0.067287981510162],[-0.08714734017849,-0.022199530154467,0.0097633078694344],[0.03007298335433,-0.02147383056581,0.10702380537987]],[[0.028815880417824,0.11223903298378,-0.048575438559055],[-0.014203062281013,-0.014869906939566,0.0096460180357099],[-0.032806057482958,-0.034239176660776,0.076727092266083]],[[0.062101192772388,0.059828765690327,0.00048008680460043],[0.00051007757429034,0.1122512370348,-0.0069476547650993],[0.044564850628376,-0.037437215447426,0.063247822225094]],[[-0.079465299844742,0.043878860771656,-0.11064573377371],[-0.041831858456135,0.17581313848495,0.040991939604282],[-0.11041928082705,-0.090355813503265,0.027472399175167]],[[0.001542448066175,-0.087615109980106,-0.074513681232929],[0.05963383987546,0.043765138834715,0.049728371202946],[-0.083542235195637,0.084530360996723,0.011936807073653]],[[0.013206008821726,0.04101824760437,-0.083253964781761],[-0.10118500888348,0.03844403475523,-0.14312146604061],[0.024052683264017,0.051228635013103,-0.075695730745792]],[[0.010082055814564,-0.040450472384691,0.053207125514746],[-0.0050043999217451,0.034127626568079,-0.052806969732046],[-0.036072105169296,0.01392169110477,0.060131061822176]],[[0.043501626700163,-0.066120646893978,0.030520854517817],[-0.031853102147579,0.0023372224532068,-0.037022031843662],[-0.067047633230686,-0.10521469265223,-0.074051856994629]],[[0.052704028785229,0.081962011754513,0.14266483485699],[0.006797622423619,0.12303014099598,0.17665815353394],[-0.0018293207976967,-0.04139993712306,0.021945999935269]],[[0.092277273535728,0.11836908757687,0.047103557735682],[-0.012344623915851,0.033538293093443,0.086981490254402],[0.0098666790872812,0.1721675246954,0.079736396670341]],[[-0.075179167091846,0.099806636571884,-0.031690862029791],[-0.11621718853712,0.11590620130301,0.045032843947411],[0.010100174695253,0.098428085446358,0.13716769218445]],[[-0.065759189426899,-0.09376535564661,0.012047657743096],[0.10998494178057,0.0011159806745127,0.05666583403945],[-0.17371487617493,-0.19732972979546,-0.030378414317966]],[[-0.075934745371342,0.051257688552141,-0.071390941739082],[0.06561578810215,0.045561760663986,0.053832679986954],[0.0045546223409474,0.078745268285275,0.11366888135672]],[[0.027846723794937,-0.027960151433945,0.10655239224434],[0.0077011119574308,0.11210898309946,-0.079117439687252],[0.020763853564858,0.015865659341216,-0.041533946990967]],[[0.037411663681269,0.0055254972539842,0.045962501317263],[0.067503362894058,-0.099617794156075,0.051311012357473],[0.19514679908752,-0.070962898433208,-0.078718326985836]],[[-0.10531863570213,-0.037289120256901,-0.032270975410938],[-0.044780440628529,0.095999397337437,-0.081129543483257],[-0.0596908852458,0.021224269643426,0.056414201855659]],[[0.021792620420456,0.051667116582394,0.012993148528039],[-0.025991486385465,-0.022700997069478,-0.056834291666746],[-0.083776295185089,0.10692265629768,-0.12480135262012]],[[-0.057687692344189,-0.040658473968506,-0.26045069098473],[-0.18499520421028,0.069248914718628,-0.017144287005067],[-0.081820197403431,0.18059800565243,0.0297298617661]],[[0.015281599014997,-0.019013671204448,0.040692396461964],[0.022624652832747,0.065824769437313,0.026849949732423],[0.12663698196411,0.12254243344069,-0.01353835593909]],[[-0.015250843949616,-0.18415910005569,0.027982963249087],[0.019402354955673,0.040208708494902,0.13936710357666],[-0.09076302498579,0.099852293729782,0.1291611790657]],[[-0.064662583172321,0.14715977013111,-0.032566491514444],[0.12421791255474,0.15658117830753,0.080143593251705],[0.004909114446491,0.072079211473465,0.19569598138332]],[[0.12039534747601,0.075862005352974,0.031939029693604],[0.14588691294193,0.025148877874017,0.048512067645788],[-0.10400702804327,-0.043916080147028,0.075813852250576]],[[-0.19853474199772,-0.016557516530156,-0.069377869367599],[-0.052313711494207,0.0035799210891128,0.032550912350416],[-0.083296269178391,0.087617062032223,0.051695488393307]],[[0.023742051795125,0.0010152234463021,-0.086003459990025],[-0.020053189247847,0.086764886975288,-0.070044726133347],[0.033729031682014,0.1380830258131,-0.12633219361305]],[[0.1216845959425,0.028522286564112,-0.088137522339821],[0.050545964390039,-0.054114177823067,0.093179941177368],[-0.064186945557594,0.046015784144402,-0.076307363808155]],[[0.0097010508179665,-0.022908860817552,0.044543284922838],[0.03104348666966,0.00976153742522,-0.014902917668223],[0.084734737873077,-0.061413798481226,-0.10348433256149]],[[-0.0090442560613155,-0.027167147025466,0.021898441016674],[0.032134752720594,0.050441715866327,0.12286026030779],[0.091228172183037,0.06221429631114,-0.016335677355528]],[[0.13771000504494,0.11240791529417,-0.068714424967766],[-0.085116662085056,0.14374893903732,0.038371309638023],[0.16913701593876,0.14118984341621,0.076187118887901]],[[0.0070405867882073,0.098958060145378,0.028502386063337],[0.027537034824491,-0.022934401407838,-0.115996517241],[-0.036477666348219,0.070955030620098,0.052022185176611]],[[-0.0093260891735554,-0.022602336481214,0.071027465164661],[-0.050746168941259,0.025148533284664,0.07972302287817],[-0.12543004751205,-0.070771254599094,-0.12825791537762]],[[0.02064073830843,-0.029545523226261,0.013092384673655],[-0.029887262731791,0.066240154206753,0.018001852557063],[-0.034214049577713,-0.048156764358282,0.0044200532138348]]],[[[0.030614154413342,0.124178417027,0.082173645496368],[-0.070189870893955,-0.15791796147823,0.02277179248631],[-0.043926026672125,-0.08825197070837,-0.013286964967847]],[[0.10010815411806,0.094543479382992,0.10603962093592],[0.15145333111286,0.12869089841843,0.12471897155046],[0.13477046787739,0.093579590320587,0.14014348387718]],[[0.028691148385406,0.035826180130243,-0.034328632056713],[0.012457366101444,0.051812816411257,-0.0092550627887249],[-0.020483952015638,0.020925607532263,-0.021752750501037]],[[0.019308537244797,0.070262335240841,0.026273675262928],[0.024972453713417,0.05828695371747,-0.07743226736784],[-0.040762975811958,-0.085614219307899,0.01820713840425]],[[-0.025574281811714,0.090429544448853,0.054125193506479],[0.0043233674950898,0.055079262703657,0.063108161091805],[-0.013197047635913,0.018505955114961,0.075210846960545]],[[0.013221388682723,0.033153280615807,-0.0039294259622693],[0.019639413803816,-0.034886173903942,-0.02252596989274],[-0.04514391720295,0.011052936315536,0.036317694932222]],[[-0.038295354694128,0.013411605730653,0.0008232836262323],[0.024429231882095,-0.022152159363031,-0.023353138938546],[0.011749869212508,0.012697242200375,-0.0094620492309332]],[[-0.0071573033928871,-0.049486938863993,-0.0008221278549172],[-0.0051242695190012,-0.16993498802185,-0.097450263798237],[0.12239741533995,0.11894474178553,0.00035000860225409]],[[-0.063720129430294,-0.010553793981671,0.055319879204035],[0.021761488169432,-0.015161482617259,0.0066340593621135],[0.025972753763199,0.0076995040290058,0.032070010900497]],[[-0.042682085186243,0.047517895698547,-0.023049719631672],[0.021655755117536,0.040650703012943,-0.060012169182301],[0.10055288672447,-0.016914075240493,-0.042126048356295]],[[-0.062868073582649,0.019217059016228,-0.040602017194033],[0.014001773670316,-0.016240812838078,-0.060260139405727],[0.074225217103958,-0.020586658269167,0.092758700251579]],[[-0.02115635946393,-0.022505693137646,-0.051933281123638],[0.018890032544732,-0.04023203253746,-0.010859129019082],[0.04059074819088,0.025441074743867,0.051643420010805]],[[-0.027579875662923,-0.0037716443184763,-0.072011157870293],[0.054863039404154,-0.061733189970255,-0.060722228139639],[0.01909396238625,0.092406414449215,0.06930023431778]],[[-0.015854356810451,-0.016353173181415,-0.0083110816776752],[0.018227800726891,0.014668915420771,0.0091991545632482],[0.028500398620963,-0.021080892533064,-0.020226065069437]],[[-0.052617054432631,-0.076783858239651,0.045175675302744],[-0.08440475165844,0.025855917483568,-0.035626575350761],[0.016064692288637,0.050026550889015,0.047968741506338]],[[-0.022585263475776,-0.01867838576436,-0.029669221490622],[0.082326360046864,0.034692391753197,-0.0099268080666661],[0.023365212604403,-0.072615198791027,-0.033931627869606]],[[-0.013246519491076,-0.047589391469955,-0.0039307367987931],[0.031861703842878,0.11276329308748,-0.11546698212624],[0.042470946907997,0.041830543428659,-0.065941549837589]],[[0.019197054207325,0.0301992315799,-0.036923535168171],[-0.05163212120533,0.032114379107952,-0.035630811005831],[0.00016290092025883,0.031207997351885,-0.0013851217227057]],[[-0.071794971823692,-0.041209693998098,0.026391699910164],[0.028111780062318,0.032559338957071,0.036722213029861],[-0.038671493530273,-0.058941904455423,0.016733048483729]],[[-0.0094999149441719,-0.031806979328394,-0.0019739323761314],[-0.16922748088837,0.011299038305879,0.012254366651177],[-0.1140498444438,0.13057270646095,0.045743964612484]],[[-0.034990940243006,0.10922396928072,-0.038079734891653],[-0.036697048693895,-0.01705252751708,-0.021179376170039],[0.006206851452589,0.040665652602911,0.041265551000834]],[[0.059000533074141,-0.09299835562706,0.059952814131975],[-0.054728701710701,-0.073168553411961,0.10365142673254],[0.034949626773596,-0.11121838539839,0.080468498170376]],[[0.016625577583909,0.079776145517826,-0.075140193104744],[-0.087981268763542,0.0053138080984354,0.069502167403698],[0.036066178232431,-0.036502316594124,0.019830459728837]],[[-0.023570720106363,0.0051720859482884,0.016335066407919],[0.038932003080845,-0.07152159512043,-0.050644237548113],[0.020243676379323,0.062146961688995,0.049698520451784]],[[-0.035380117595196,0.084407977759838,-0.046227551996708],[-0.065638437867165,-0.11860831081867,0.043333653360605],[-0.028932180255651,0.079620189964771,0.05290013179183]],[[0.029949894174933,0.015670642256737,-0.057386051863432],[-0.023861430585384,-0.0068590599112213,0.016150388866663],[0.0048514963127673,0.012177340686321,-0.0094917956739664]],[[-0.063968829810619,-0.11399310827255,-0.0036958954297006],[-0.087478786706924,-0.094846241176128,-0.085341729223728],[-0.045296154916286,-0.15369147062302,-0.035402297973633]],[[-0.022998260334134,-0.060029808431864,0.030195329338312],[-0.032370809465647,0.034229293465614,-0.012118354439735],[-0.12846785783768,0.060871791094542,0.1144627481699]],[[-0.059941276907921,0.0078952563926578,0.043513856828213],[-0.0035958075895905,0.0099249249324203,-0.0055725499987602],[0.016372641548514,-0.059903185814619,0.046028275042772]],[[0.049003608524799,0.048123750835657,-0.0019992352463305],[0.048676732927561,-0.0064744837582111,-0.045547150075436],[-0.011129948310554,9.0095141786151e-05,0.060021352022886]],[[0.013979274779558,0.040491845458746,-0.0379294231534],[0.048005599528551,-0.01541021745652,0.01130211725831],[-0.020087912678719,0.023437207564712,-0.038623355329037]],[[0.028413886204362,0.082593388855457,0.021004550158978],[0.065508216619492,-0.032526414841413,-0.092378884553909],[0.063384592533112,-0.13485133647919,-0.043479956686497]]],[[[-0.10635275393724,-0.059993617236614,-0.014023057185113],[0.092400714755058,-0.21884305775166,-0.058352410793304],[-0.13242939114571,-0.12609392404556,0.0084760552272201]],[[-0.061739675700665,-0.064463414251804,0.073719777166843],[-0.14505065977573,0.054257337003946,0.079952761530876],[0.023820411413908,0.020693248137832,0.0079801753163338]],[[-0.094329468905926,0.17901813983917,-0.11970561742783],[-0.010063953697681,-0.17519341409206,0.15142193436623],[-0.10788444429636,0.059658356010914,0.0040557361207902]],[[0.023734830319881,-0.040446721017361,0.037803497165442],[-0.11449347436428,0.025134764611721,-0.076163247227669],[0.052242383360863,-0.12082785367966,0.064667925238609]],[[-0.072519779205322,0.0288479719311,0.021631726995111],[0.057173699140549,0.018794139847159,0.065496705472469],[0.0076243607327342,-0.032572597265244,-0.062902510166168]],[[-0.10264696925879,-0.15321230888367,-0.11858724802732],[0.11704376339912,0.051103167235851,-0.11219543963671],[0.12609741091728,-0.19940449297428,-0.049750991165638]],[[-0.092388428747654,0.00081135804066435,-0.11505596339703],[-0.10146847367287,0.14592683315277,0.076377607882023],[0.029076918959618,-0.017198720946908,-0.032449770718813]],[[0.0284408275038,-0.073045767843723,0.020895386114717],[-0.04302004724741,-0.0031224219128489,-0.08379265666008],[-0.097920194268227,0.066921174526215,-0.028592130169272]],[[0.044781699776649,-0.036443840712309,-0.022055108100176],[-0.06723316013813,-0.078584469854832,-0.022556848824024],[0.083733581006527,-0.019461821764708,-0.035720679908991]],[[0.0089126564562321,0.2366331666708,0.026641298085451],[-0.034241642802954,0.083789773285389,0.078164637088776],[0.10698982328176,0.24508023262024,0.0093394219875336]],[[0.063387364149094,-0.15225553512573,0.12396309524775],[-0.053239762783051,0.11608244478703,0.01008231472224],[-0.018432138487697,0.014054741710424,0.0049690119922161]],[[-0.020670939236879,0.001065359916538,0.12178263813257],[0.068805195391178,-0.055836349725723,0.02113226428628],[0.009211678057909,-0.071037322282791,-0.044520676136017]],[[0.045210044831038,-0.017296189442277,0.060647465288639],[-0.029574777930975,0.19159346818924,-0.19953072071075],[-0.059769660234451,-0.043588984757662,-0.033847376704216]],[[0.10086973011494,0.0098319761455059,-0.13982610404491],[0.041549414396286,-0.2802070081234,0.12452057003975],[-0.039703886955976,-0.1346575319767,0.22643208503723]],[[-0.023627845570445,0.083941891789436,0.06555101275444],[0.04015077278018,-0.12590716779232,-0.099622018635273],[-0.059521615505219,-0.073817618191242,0.045822877436876]],[[-0.056424550712109,-0.13812620937824,-0.084073506295681],[-0.15007378160954,-0.1462379693985,0.2731801867485],[-0.14718499779701,-0.031088026240468,0.17613197863102]],[[-0.027680369094014,-0.10205771028996,-0.073983319103718],[-0.22600626945496,-0.075094193220139,-0.021430786699057],[-0.065108276903629,0.039059851318598,-0.20175586640835]],[[-0.12523199617863,-0.051705934107304,-0.053115531802177],[-0.21811605989933,-0.041759517043829,-0.053452484309673],[0.05620240047574,0.12293013185263,-0.0041310754604638]],[[-0.0023332175333053,0.029234074056149,-0.03611746057868],[-0.10993323475122,-0.047537092119455,0.038840282708406],[-0.085956543684006,0.024030156433582,-0.11174087971449]],[[0.11948297172785,-0.0048586665652692,0.0072509436868131],[-0.002187906531617,2.7021176720154e-05,0.052324667572975],[-0.37457895278931,-0.0046263979747891,0.024991417303681]],[[0.12556812167168,-0.0085409563034773,-0.002892438089475],[-0.037930183112621,-0.063224211335182,0.00074190151644871],[-0.10408295691013,0.15257753431797,-0.028034588322043]],[[0.32945150136948,0.013564973138273,-0.048026505857706],[-0.01501209102571,-0.23037792742252,0.13039772212505],[-0.18209081888199,0.011550913564861,0.063362322747707]],[[0.055250965058804,-0.031269006431103,-0.01359433028847],[0.018013251945376,0.2365407794714,0.01612695120275],[0.031876001507044,-0.0026556407101452,-0.07385578751564]],[[-0.081228747963905,-0.039962109178305,-0.00087281258311123],[0.04799397289753,0.0049801664426923,-0.081699974834919],[0.045829638838768,-0.043494153767824,0.094547472894192]],[[-0.11173475533724,-0.052900340408087,0.10310381650925],[-0.083015479147434,-0.076636858284473,0.10346400737762],[-0.090166494250298,-0.086172625422478,0.04783695563674]],[[0.072281874716282,-0.039860859513283,0.023989917710423],[-0.02409665286541,0.066475503146648,-0.081019997596741],[-0.095396444201469,0.035745792090893,-0.10962951183319]],[[0.081853523850441,-0.096983171999454,0.011601079255342],[-0.01138190086931,0.070384986698627,-0.043260987848043],[-0.0081139681860805,0.015828853473067,-0.030066050589085]],[[-0.011859153397381,-0.077699609100819,-0.085083663463593],[-0.089505396783352,-0.12609545886517,0.2079986333847],[-0.14236010611057,0.057131510227919,0.11010252684355]],[[-0.017623741179705,0.043954905122519,-0.14392538368702],[0.14764401316643,-0.033209625631571,-0.10717303305864],[-0.0099181942641735,-0.011021880432963,0.091777853667736]],[[0.0190892778337,-0.038534298539162,-0.069594077765942],[0.047456596046686,-0.041565980762243,0.027494641020894],[-0.015848454087973,0.050350349396467,0.036765292286873]],[[-0.018986688926816,0.074800670146942,0.012234612368047],[0.054933618754148,-0.15147019922733,0.080326221883297],[-0.033934123814106,0.09338054060936,-0.0063788671977818]],[[-0.15744924545288,0.047750677913427,0.091335840523243],[-0.0037953883875161,0.1337515860796,-0.051613621413708],[0.064749330282211,0.014953861013055,0.047650963068008]]],[[[0.012692488729954,-0.26700508594513,-0.074921809136868],[-0.057251714169979,-0.1016855314374,0.076460286974907],[0.023547794669867,0.0059423190541565,0.0087363542988896]],[[-0.1717591881752,-0.019671175628901,-0.012278106994927],[0.062151364982128,-0.082590438425541,0.10045951604843],[0.0035293276887387,0.033625736832619,0.063630171120167]],[[-0.1457671970129,0.13677524030209,0.03010044619441],[0.097479358315468,-0.017349071800709,-0.050835087895393],[-0.12074480950832,0.13821171224117,-0.079927146434784]],[[-0.24331560730934,-0.0057159536518157,-0.039494041353464],[0.065505102276802,-0.017165107652545,-0.067259319126606],[0.11083710938692,0.075055807828903,0.034200612455606]],[[-0.064036168158054,0.12562067806721,0.023888675495982],[-0.012718174606562,-0.016130601987243,-0.074598334729671],[0.13578481972218,-0.026475640013814,-0.076498739421368]],[[0.10507446527481,0.12374368309975,0.056889124214649],[0.14217786490917,-0.33023518323898,0.20947721600533],[-0.15753857791424,-0.012049021199346,0.03390247374773]],[[-0.053682450205088,-0.10015136003494,-0.012183996848762],[-0.032589975744486,-0.01157244015485,0.10574901103973],[-0.026230784133077,0.078661106526852,0.12222708016634]],[[0.027400564402342,-0.035889688879251,-0.0041304007172585],[-0.23672421276569,-0.1297152787447,0.017657311633229],[-0.13648067414761,-0.0063524600118399,0.09818896651268]],[[-0.080828703939915,0.020610921084881,-0.054094646126032],[0.0047547491267323,0.091105476021767,-0.032272670418024],[0.0529974848032,0.20906986296177,0.0413604862988]],[[0.12129488587379,0.075497359037399,0.065670527517796],[0.0054802736267447,0.17020747065544,0.00789640750736],[0.039598662406206,0.098850451409817,0.036065351217985]],[[0.27861288189888,-0.20068183541298,-0.082975342869759],[-0.036200776696205,-0.0018132863333449,-0.01844016648829],[0.0787218734622,0.053641632199287,0.065660245716572]],[[0.014154768548906,-0.19873082637787,0.095895610749722],[-0.0085603520274162,-0.056747857481241,-0.013541671447456],[-0.050894737243652,0.12073119729757,0.069563187658787]],[[0.074806466698647,-0.11911423504353,-0.0087004043161869],[-0.10429847240448,0.033098623156548,-0.15214441716671],[0.036695294082165,0.15163891017437,0.0647062510252]],[[0.23353691399097,-0.083990052342415,-0.33662927150726],[-0.014148894697428,-0.22951056063175,0.0060122744180262],[-0.045555535703897,-0.042187582701445,-0.056855916976929]],[[-0.024912362918258,0.023622753098607,-0.0054299621842802],[0.0048322598449886,0.06636468321085,0.10032492876053],[-0.015726510435343,-0.02807973511517,0.028076775372028]],[[0.045699007809162,-0.027713358402252,-0.0063382182270288],[-0.07228484749794,-0.14844217896461,0.068411521613598],[-0.057321567088366,-0.017534183338284,0.18786723911762]],[[0.13581198453903,-0.03385927900672,0.078862383961678],[0.051148869097233,-0.087018027901649,0.0037088019307703],[0.055045858025551,-0.090405911207199,-0.06213404238224]],[[-0.036038614809513,-0.057117126882076,0.15146015584469],[-0.12241465598345,-0.080891944468021,0.010710478760302],[-0.039782617241144,0.10332006961107,0.018778288736939]],[[0.044670201838017,0.081799618899822,-0.051471188664436],[-0.022781357169151,0.060624308884144,0.063477270305157],[-0.15726207196712,0.0064177219755948,-0.1375604569912]],[[-0.023173063993454,-0.034361399710178,-0.0056824986822903],[-0.05076802521944,-0.056734137237072,0.063851833343506],[-0.13333681225777,0.077638313174248,0.028718363493681]],[[0.057473417371511,-0.068383879959583,-0.079024381935596],[0.097150847315788,-0.020903961732984,0.076325014233589],[0.12235034257174,0.1847863048315,-0.018652642145753]],[[-0.0018685040995479,0.11046800017357,0.064823903143406],[-0.046696234494448,0.12757642567158,-0.023657143115997],[0.049143902957439,-0.026220936328173,-0.059869859367609]],[[0.041241358965635,-0.0085566528141499,0.067705444991589],[0.10767691582441,0.048466615378857,-0.011390410363674],[0.16158555448055,-0.031624373048544,-0.096598640084267]],[[0.14581817388535,0.014735639095306,0.025552796199918],[0.042846333235502,-0.031114106997848,-0.018248686566949],[-0.072294071316719,0.005218094214797,-0.10565613955259]],[[-0.010870268568397,-0.095123745501041,0.05277507007122],[0.090190671384335,-0.10427196323872,-0.11564490199089],[-0.0053153038024902,-0.18609531223774,0.070664413273335]],[[0.14937894046307,-0.15541629493237,-0.038153160363436],[0.018790801987052,0.056449711322784,-0.17508219182491],[-0.031134527176619,0.075145684182644,0.065586134791374]],[[0.10128540545702,0.11183425039053,-0.02720845490694],[-0.05957069247961,-0.031216636300087,-0.019575756043196],[-0.10020689666271,-0.010591247119009,0.049020230770111]],[[0.29933768510818,0.063729599118233,-0.15875151753426],[0.16535615921021,0.016120215877891,0.06925705820322],[0.037318095564842,-0.03962192684412,-0.090443149209023]],[[0.079464755952358,0.056245341897011,-0.1732691526413],[-0.084173120558262,-0.089483074843884,0.10371916741133],[-0.071899332106113,-0.045486051589251,0.088518135249615]],[[0.057538818567991,0.082801662385464,-0.038170825690031],[-0.042400330305099,0.04851558804512,-0.061081599444151],[-0.058011658489704,0.018904013559222,-0.013235542923212]],[[-0.084035068750381,0.091833390295506,0.055511303246021],[-0.086731001734734,0.13025887310505,-0.31560146808624],[0.056716490536928,-0.090142898261547,-0.07436915487051]],[[-0.25307461619377,-0.16194322705269,0.1048249900341],[-0.21676224470139,-0.15403510630131,0.14797963202],[-0.01687615737319,-0.01251285802573,-0.031549979001284]]],[[[0.018502540886402,0.22311316430569,0.15893958508968],[0.033531829714775,-0.24768850207329,-0.048258222639561],[0.071666888892651,0.11903621256351,0.048631019890308]],[[0.062798522412777,0.012716798111796,0.04643938690424],[0.065329976379871,0.062723256647587,-0.038519717752934],[0.0051000704988837,-0.064812228083611,-0.09481355547905]],[[0.058382745832205,-0.0016660752007738,-0.0093162395060062],[0.013320956379175,0.038026392459869,0.046490073204041],[-0.077181607484818,0.12223075330257,-0.05701631680131]],[[0.014659591019154,0.060885634273291,0.064792685210705],[-0.081085965037346,-0.03860742226243,0.07804823666811],[0.067156083881855,0.12574861943722,0.01678135432303]],[[0.073394350707531,-0.059711933135986,0.016794873401523],[-0.0023530095349997,-0.053087078034878,0.0087551344186068],[-0.022505858913064,0.045066349208355,-0.049372058361769]],[[-0.082962810993195,-0.036075502634048,0.019194012507796],[0.082678981125355,-0.042582619935274,0.043777879327536],[0.011262367479503,0.0027654482983053,-0.1159054338932]],[[0.022636197507381,0.043188758194447,0.085027702152729],[-0.028215438127518,0.12580220401287,0.098686568439007],[0.080925606191158,-0.0094371642917395,0.020393410697579]],[[-0.00033571850508451,0.022339373826981,0.031819395720959],[-0.098740719258785,-0.10085836052895,0.016442427411675],[-0.077224396169186,-0.23182439804077,0.0071759186685085]],[[-0.063278488814831,-0.023445496335626,-0.075121469795704],[0.050442151725292,0.021136974915862,0.10903911292553],[-0.0058595845475793,0.11295341700315,0.027942886576056]],[[-0.077011004090309,0.01550243422389,0.061422221362591],[0.08049975335598,0.034722477197647,0.00051154283573851],[-0.11137402057648,-0.07924610376358,-0.2528230547905]],[[0.053919296711683,0.01766349375248,0.076730526983738],[0.13998690247536,0.2310046851635,-0.14067144691944],[-0.059421863406897,0.028798963874578,-0.058471351861954]],[[0.084860764443874,-0.037558533251286,-0.0067003443837166],[-0.028581010177732,0.064916729927063,-0.016046315431595],[0.0075286482460797,0.03194835036993,-0.039789825677872]],[[0.011676464229822,-0.00010402440238977,0.044038202613592],[-0.031674303114414,0.020686956122518,0.013736453838646],[0.073153585195541,0.11291165649891,0.14174637198448]],[[-0.061349652707577,0.025186009705067,-0.054271075874567],[0.055208709090948,-0.013340477831662,-0.04565018042922],[-0.044623773545027,0.038232676684856,0.19165171682835]],[[0.0093337642028928,-0.040835496038198,0.018703624606133],[-0.079424306750298,-0.16992394626141,-0.043040614575148],[0.0011131903156638,-0.083210065960884,-0.081427618861198]],[[-0.054905779659748,-0.0075278109870851,-0.13737998902798],[0.17224672436714,0.019530283287168,0.049378633499146],[0.22025410830975,0.18154346942902,0.06437611579895]],[[0.023553168401122,-0.015746703371406,0.0504020601511],[0.042058665305376,0.082857966423035,-0.083538047969341],[0.045115370303392,-0.0090536344796419,0.0087967738509178]],[[-0.034466300159693,0.10108104348183,-0.030709497630596],[0.01789341494441,0.017403548583388,0.098968468606472],[0.044989299029112,-0.049534536898136,-0.01962742395699]],[[-0.087222740054131,-0.012073353864253,0.0079201934859157],[-0.027966978028417,-0.011547134257853,-0.027320574969053],[-0.029431568458676,0.076317071914673,0.01985190436244]],[[0.022367345169187,0.0020377817563713,0.020675215870142],[-0.1304652094841,-0.12070633471012,-0.093988642096519],[-0.1272606998682,-0.29111576080322,-0.16947966814041]],[[-0.04907738417387,0.019162176176906,-0.093100361526012],[0.10320512205362,-0.0039195972494781,0.018819840624928],[-0.033417582511902,0.0032996519003063,-0.037573736160994]],[[0.013228846713901,0.033312138170004,0.13558511435986],[-0.10221235454082,0.10938972979784,0.064375586807728],[-0.1444091796875,0.018898364156485,-0.046581525355577]],[[-0.056058015674353,-0.076621115207672,-0.021157585084438],[-0.20898240804672,-0.11022520810366,-0.021956413984299],[0.023900952190161,0.087913289666176,-0.051436558365822]],[[0.06020786985755,-0.0080250268802047,-0.037453100085258],[-0.088922195136547,-0.079902544617653,0.044368963688612],[-0.11377719044685,-0.021533077582717,-0.011433279141784]],[[0.11994831264019,0.031063375994563,-0.013196812942624],[0.047043427824974,-0.022641412913799,-0.15039132535458],[-0.042881771922112,-0.061254780739546,-0.11938481032848]],[[0.0092255305498838,0.0078396340832114,0.0039107403717935],[-0.074560455977917,-0.014758437871933,0.098286457359791],[-0.037655830383301,-0.063929237425327,0.081811383366585]],[[-0.09738752245903,-0.078015267848969,-0.024777553975582],[-0.035149559378624,0.042529128491879,-0.0048854099586606],[0.033830415457487,0.051666591316462,0.14308513700962]],[[0.0064645395614207,0.15702511370182,-0.041713360697031],[0.16837204992771,0.26035484671593,0.075313791632652],[0.28784495592117,0.16544698178768,-0.22570349276066]],[[-0.1703200340271,-0.02352162078023,0.042139235883951],[0.040569145232439,0.056332286447287,0.0099976090714335],[0.099962122738361,0.048701290041208,0.11490669846535]],[[-0.011960186064243,-0.066367886960506,0.03004196099937],[-0.1446058601141,-0.079778596758842,0.10107900202274],[-0.0006123140337877,-0.029303869232535,0.005744734313339]],[[-0.05899453163147,-0.12472059577703,-0.064746893942356],[-0.00058118154993281,-0.0098891463130713,-0.0081007415428758],[0.018666451796889,0.035223215818405,-0.099192537367344]],[[-0.003181716427207,-0.034847564995289,-0.12294020503759],[-0.037285692989826,-0.29019537568092,-0.12271387130022],[-0.091072492301464,-0.160789757967,0.041944727301598]]],[[[-0.0036938199773431,-0.093017801642418,-0.15639112889767],[-0.10858500003815,-0.065656147897243,-0.048688970506191],[-0.0085795847699046,-0.068316355347633,-0.055149238556623]],[[0.078576281666756,-0.12715491652489,-0.084294073283672],[0.049034092575312,-0.12775100767612,-0.038898423314095],[0.090984471142292,0.065962448716164,0.092337682843208]],[[-0.098232679069042,0.042401529848576,0.0030675653833896],[0.0012577186571434,0.036302343010902,0.031264964491129],[-0.14630295336246,-0.0043137525208294,-0.066693663597107]],[[-0.021972477436066,-0.023125231266022,-0.040590967983007],[-0.033907972276211,-0.11714957654476,0.0084983911365271],[0.020954322069883,0.029998574405909,0.0044802026823163]],[[0.0085113365203142,-0.016525836661458,0.0433694049716],[0.057723000645638,0.035746570676565,0.12500916421413],[0.011261538602412,0.036193702369928,0.019199017435312]],[[-0.029384512454271,-0.13468109071255,-0.0044095343910158],[-0.06336634606123,-0.065091721713543,0.030532952398062],[-0.048749912530184,0.015785655006766,0.0090353861451149]],[[0.041694052517414,-0.037839975208044,-0.13250629603863],[0.011890043504536,0.0033443802967668,-0.013473965227604],[-0.035902667790651,-0.04174131155014,0.0087005225941539]],[[0.018287533894181,0.017576208338141,0.018840910866857],[0.031218117102981,0.097547829151154,0.12555882334709],[0.042093303054571,-0.1153434291482,-0.12202975898981]],[[-0.086342729628086,0.031317062675953,0.071942813694477],[-0.0091486219316721,-0.050900429487228,-0.071911334991455],[0.00054514309158549,0.019140668213367,0.00085800961824134]],[[0.065940402448177,-0.051684383302927,0.1565610319376],[-0.127357006073,-0.024961328133941,-0.054453387856483],[0.022760763764381,0.097921095788479,0.11480198800564]],[[0.0073728808201849,0.21494081616402,-0.11526113003492],[-0.01456163264811,-0.067251659929752,-0.14477427303791],[0.037166245281696,-0.088751263916492,-0.12943890690804]],[[0.021541718393564,-0.065357774496078,0.0010455755982548],[0.046602305024862,-0.0096839172765613,-0.056760281324387],[0.064363121986389,-0.095716916024685,-0.0043633226305246]],[[0.037671454250813,0.024842876940966,-0.042010195553303],[0.11109529435635,-0.025634739547968,0.018812164664268],[0.062279108911753,0.040780603885651,-0.0060121775604784]],[[0.058344401419163,-0.0065345359034836,0.069343239068985],[0.06926554441452,-0.084046758711338,-0.013787820935249],[-0.10257187485695,0.066727317869663,-0.011191598139703]],[[0.022010063752532,-0.054894965142012,0.046067170798779],[-0.093310706317425,-0.081115663051605,0.012492929585278],[0.003196241799742,0.069048717617989,0.11485743522644]],[[-0.026618521660566,-0.064406640827656,-0.15489137172699],[0.015262383967638,-0.04107803851366,-0.098329186439514],[0.055868316441774,0.059942431747913,-0.030217856168747]],[[-0.022141737863421,0.052529320120811,0.061885718256235],[0.099451802670956,-0.043446984142065,0.049631897360086],[0.009268862195313,0.055710054934025,-0.04651752114296]],[[-0.013143822550774,-0.056341476738453,0.035496138036251],[-0.056803032755852,0.0025883526541293,0.0076838727109134],[-0.014896836131811,-0.0072402134537697,0.076116673648357]],[[0.0068804058246315,-0.0086843743920326,0.033230122178793],[-0.061573769897223,-0.042703419923782,-0.01651893556118],[-0.015975112095475,-0.07077681273222,-0.060865309089422]],[[-0.021173574030399,-0.011177310720086,0.075488440692425],[0.023199588060379,0.019314417615533,-0.059458300471306],[-0.086685568094254,-0.13413615524769,0.026370197534561]],[[0.1219888702035,-0.17247249186039,-0.0649503916502],[0.10687591135502,-0.12453486770391,-0.22305677831173],[0.12180765718222,-0.033390197902918,0.016860412433743]],[[-0.12008474767208,0.12630350887775,0.08057527244091],[-0.016796188428998,0.066916860640049,-0.13006494939327],[-0.041984152048826,-0.054801046848297,0.132025629282]],[[-0.25122767686844,-0.1568146944046,-0.012888361699879],[0.1168520450592,-0.054855469614267,0.1488022506237],[0.044770881533623,0.11990340054035,-0.037902895361185]],[[-0.032631136476994,0.020988469943404,-0.068988770246506],[-0.01508825737983,-0.058137055486441,0.020572500303388],[0.049478750675917,0.069336377084255,-0.13778106868267]],[[-0.024416673928499,0.0067692226730287,-0.043768029659986],[0.0079390592873096,0.051729362457991,0.016536600887775],[-0.014036099426448,-0.024557972326875,-0.0071719754487276]],[[-0.049411799758673,0.043137736618519,-0.032848030328751],[-0.035504464060068,-0.020460221916437,-0.0059599746018648],[-0.0329215452075,0.079068049788475,0.059823587536812]],[[0.011678188107908,0.16630554199219,0.084565907716751],[-0.01262076664716,-0.007844990119338,0.033523969352245],[-0.12893714010715,-0.051273182034492,-0.078364424407482]],[[0.21490781009197,-0.017351746559143,-0.097744628787041],[0.21092566847801,0.11269927024841,-0.12756972014904],[0.11174914240837,0.041745234280825,0.058332268148661]],[[-0.06980986148119,0.04296750202775,-0.07811164855957],[-0.071344740688801,0.013061070814729,-0.15635046362877],[-0.0028500049374998,0.014667773619294,-0.053183123469353]],[[-0.055589400231838,0.080810680985451,-0.050369396805763],[-0.0045958361588418,0.080160073935986,0.023191411048174],[-0.0028732030186802,-0.025621881708503,-0.0028253227937967]],[[-0.085983529686928,0.087728768587112,-0.00013946089893579],[-0.041284911334515,0.072764582931995,-0.012312733568251],[-0.011008340865374,0.047821182757616,0.065009295940399]],[[0.044400162994862,-0.051987364888191,-0.029382802546024],[-0.043212097138166,-0.015368354506791,0.070906594395638],[0.0052175549790263,-0.018646579235792,-0.022021140903234]]],[[[-0.062072388827801,-0.032715648412704,-0.10082732886076],[0.026424419134855,0.0041423290967941,-0.14318470656872],[0.052534136921167,-0.051200553774834,0.061744198203087]],[[-0.11541195213795,0.034595292061567,-0.055750273168087],[-0.092992126941681,-0.0032609973568469,0.12152465432882],[-0.03177160397172,0.018203062936664,-0.022322466596961]],[[-0.041514992713928,-0.13898703455925,0.045576825737953],[-0.01980721578002,0.016724448651075,-0.12902027368546],[0.11273215711117,0.045095734298229,-0.037224505096674]],[[-0.028848253190517,-0.034584913402796,-0.056622695177794],[0.2050639539957,0.14970909059048,-0.061887450516224],[0.012569270096719,0.10855893790722,-0.0092629874125123]],[[0.11625225841999,0.038990054279566,0.0073681976646185],[0.14224846661091,0.1776620298624,-0.022733306512237],[0.17900605499744,0.033468652516603,0.026574501767755]],[[0.16589869558811,0.059791728854179,-0.019605884328485],[-0.015659231692553,-0.087015263736248,-0.065914630889893],[0.065811775624752,-0.062688201665878,-0.12813417613506]],[[0.0040186522528529,0.069861963391304,0.047489013522863],[0.076799787580967,0.013515468686819,0.047037746757269],[-0.10008502751589,0.011655690148473,-0.024462271481752]],[[-0.061550967395306,0.033161852508783,-0.024463592097163],[-0.17975907027721,-0.061847683042288,-0.031409062445164],[-0.080497309565544,0.032857429236174,0.069048143923283]],[[-0.078308321535587,0.11913347244263,-0.13547424972057],[0.03516686335206,0.11991184204817,-0.013712036423385],[0.0049099838361144,-0.02615119703114,-0.13193620741367]],[[-0.020311011001468,-0.07866607606411,-0.033288937062025],[0.11314104497433,0.083918005228043,0.14183926582336],[0.17493319511414,0.038149226456881,0.072278402745724]],[[-0.048552893102169,0.071438118815422,-0.20925329625607],[-0.040028173476458,-0.037828180938959,-0.053767681121826],[-0.057401493191719,-0.057933248579502,-0.0010314927203581]],[[0.13674311339855,0.10327955335379,0.11207354068756],[-0.051033530384302,0.073691211640835,0.07466834038496],[0.0019095151219517,-0.16547936201096,0.06710696965456]],[[0.0039150626398623,-0.0062973950989544,0.097082816064358],[-0.032365776598454,0.081140995025635,-0.003246653592214],[-0.094735950231552,0.11847428232431,0.039409942924976]],[[-0.026772813871503,-0.12168226391077,-0.039387810975313],[-0.073419004678726,0.0020905018318444,0.094987452030182],[0.0023669982329011,-0.056151691824198,0.029714778065681]],[[-0.020155854523182,-0.022765776142478,0.068067945539951],[0.10551803559065,-0.10398506373167,0.15859785676003],[0.093342259526253,-0.038556423038244,-0.10883297026157]],[[-0.10133486241102,0.017018176615238,-0.002670815680176],[0.025148434564471,-0.068929746747017,0.11704914271832],[0.18359261751175,0.15978962182999,0.12372697889805]],[[0.036019522696733,-0.062437932938337,-0.016127990558743],[0.017867140471935,0.13373486697674,-0.014803296886384],[0.0021185213699937,-0.017110150307417,0.027182601392269]],[[-0.053732208907604,-0.053354673087597,0.061386026442051],[-0.009914237074554,0.073695726692677,0.011394467204809],[0.11241493374109,0.0085386140272021,0.097141332924366]],[[-0.056724820286036,0.098315194249153,-0.13844394683838],[-0.0391008220613,0.025631481781602,0.11950836330652],[-0.097658142447472,-0.0090467194095254,0.057400081306696]],[[0.069662839174271,0.046036574989557,-0.0010934072779492],[0.13407821953297,0.13541157543659,0.00059279490960762],[0.023413749411702,-0.037341859191656,0.071371346712112]],[[-0.057520173490047,0.0027107277419418,-0.083410792052746],[0.042936526238918,0.11274541169405,0.036220673471689],[-0.045642461627722,0.058173079043627,-0.093697413802147]],[[0.098571874201298,-0.15944111347198,0.015747791156173],[0.16149127483368,0.056152608245611,0.078964211046696],[-0.058556903153658,-0.010296832770109,0.091229684650898]],[[-0.13548618555069,-0.025693470612168,0.079314924776554],[-0.015698762610555,0.170658826828,-0.060442864894867],[-0.13272249698639,-0.14938481152058,-0.02419045381248]],[[0.0053158453665674,0.089927487075329,-0.047939412295818],[-0.08644213527441,0.01710020005703,0.0088015608489513],[-0.039372093975544,-0.03292890265584,0.042198430746794]],[[-0.10624991357327,0.08528745919466,-0.092809334397316],[-0.15135824680328,-0.0360460691154,-0.030072217807174],[-0.034006793051958,0.11392240226269,-0.048181794583797]],[[-0.029430147260427,0.1111731082201,-0.17409750819206],[-0.0051335250027478,0.13585719466209,-0.077748775482178],[-0.13781575858593,0.064956158399582,-0.14008417725563]],[[0.057635501027107,0.11488690972328,-0.0051622707396746],[-0.0063161165453494,-0.0032284560147673,-0.055928237736225],[-0.031812626868486,-0.036520827561617,-0.014289411716163]],[[0.12279102951288,0.22766409814358,-0.054598048329353],[-0.083892859518528,0.082867294549942,-0.061287630349398],[0.016937956213951,0.18640269339085,0.055711038410664]],[[-0.00075459986692294,-0.091671131551266,0.0031011246610433],[0.06441305577755,0.012780242599547,0.046120665967464],[-0.0370750464499,-0.12739875912666,-0.10800568759441]],[[-0.032656837254763,0.035047434270382,0.15324334800243],[-0.098283119499683,-0.052705336362123,0.032809529453516],[-0.044440757483244,0.12186865508556,-0.05037872120738]],[[-0.0081033296883106,0.14985224604607,-0.026802688837051],[-0.21417871117592,-0.042355194687843,-0.030721385031939],[-0.14164401590824,0.056880246847868,-0.069547362625599]],[[-0.071923166513443,-0.019345160573721,-0.010740339756012],[-0.069517500698566,-0.15933740139008,0.033391937613487],[-0.019480163231492,-0.013753836974502,-0.0025620241649449]]],[[[0.089890874922276,-0.098853789269924,0.032289817929268],[-0.03733017295599,-0.067357577383518,-0.02140255458653],[0.035767216235399,-0.013567029498518,-0.020944952964783]],[[0.04080780223012,0.018879987299442,-0.053679753094912],[0.048895698040724,-0.044262029230595,-0.030804121866822],[0.12108533829451,-0.15173447132111,-0.011244835332036]],[[-0.030281744897366,0.037123776972294,-0.080340877175331],[0.0098801916465163,0.044313117861748,-0.00089003873290494],[-0.077940985560417,-0.077023081481457,-0.033588264137506]],[[-0.073349542915821,-0.030268900096416,0.081711038947105],[0.11171238124371,0.02520177513361,0.056008961051702],[-0.017909100279212,0.024692881852388,0.025185510516167]],[[0.095125205814838,0.08402082324028,-0.03675876185298],[0.0092301173135638,0.022349404171109,-0.060999218374491],[-0.083070635795593,0.058983415365219,0.08925873041153]],[[-0.12340930104256,-0.07745485752821,-0.082165591418743],[-0.038650505244732,-0.0021016718819737,0.036870457231998],[-0.071765892207623,0.11254841834307,0.14605855941772]],[[-0.072384059429169,0.0044009969569743,0.064632028341293],[0.064504012465477,-0.096321351826191,0.12687641382217],[0.024570113047957,0.19903817772865,0.074997998774052]],[[0.07916808873415,0.064362235367298,-0.079693876206875],[0.12510739266872,-0.011287181638181,-0.030816623941064],[-0.10629416257143,-0.15029647946358,-0.087519243359566]],[[0.081374980509281,-0.0060209180228412,0.08033649623394],[-0.0020424826070666,-0.043069891631603,0.041652277112007],[0.0023890768643469,-0.094546407461166,-0.057403139770031]],[[-0.056675266474485,0.13361924886703,0.024685287848115],[0.054718639701605,0.012494515627623,-0.049950014799833],[-0.0083756521344185,-0.011179863475263,0.073061533272266]],[[-0.044686045497656,0.067412607371807,0.05316025018692],[0.02741321362555,-0.0064518437720835,-0.082642078399658],[0.22754566371441,0.016338674351573,-0.19591997563839]],[[-0.0048695146106184,-0.13274353742599,-0.043403495103121],[0.05507780611515,-0.036523960530758,0.047833383083344],[0.063218325376511,0.0007639384130016,-0.049836713820696]],[[-0.053456999361515,0.044580969959497,0.059536810964346],[0.074790626764297,-0.027507646009326,0.096046485006809],[-0.05197911709547,0.11692504584789,-0.0032418975606561]],[[0.05086363106966,-0.074242919683456,-0.0022871941328049],[-0.1550799459219,-0.10609593242407,0.067681193351746],[-0.11937544494867,0.10366349667311,0.11250638961792]],[[0.024233588948846,0.00038014439633116,0.0096363071352243],[0.031118713319302,0.037645030766726,-0.015132243745029],[0.076174058020115,-0.010165400803089,0.016010526567698]],[[-0.068202748894691,-0.044213026762009,-0.05828507989645],[-0.019341079518199,-0.036284293979406,-0.0042633712291718],[0.11843428760767,0.074236884713173,0.1052372828126]],[[0.018855610862374,-0.063049204647541,-0.033525355160236],[0.018568901345134,-0.038976758718491,0.02631296031177],[0.023829123005271,0.054205950349569,0.15131287276745]],[[-0.021612165495753,-0.092115469276905,-0.021460548043251],[-0.01456611789763,0.038209199905396,-0.019154766574502],[0.06041095033288,-0.071035772562027,0.067936785519123]],[[0.032829407602549,0.015148274600506,0.06032857298851],[-0.010549386963248,0.013262584805489,0.021275965496898],[-0.064328819513321,0.024887349456549,-0.01732480712235]],[[0.012037191540003,-0.079378202557564,-0.016816867515445],[0.085716001689434,-0.066056944429874,0.082464665174484],[-0.18207991123199,-0.20124933123589,-0.041507247835398]],[[-0.1182479262352,-0.063391007483006,-0.036390133202076],[0.029899951070547,-0.064449958503246,0.15074063837528],[-0.030698418617249,0.11326686292887,0.075673781335354]],[[-0.22804941236973,0.0056166923604906,-0.016413701698184],[-0.012508169747889,0.11873065680265,0.11677525937557],[0.10557129234076,0.016773797571659,0.061935890465975]],[[-0.1347841322422,-0.084332875907421,0.15763404965401],[-0.063118815422058,-0.11777106672525,0.12053024023771],[-0.12101658433676,-0.074243940412998,0.018260000273585]],[[-0.12596373260021,-0.022445054724813,-0.062289543449879],[-0.045883841812611,0.069207690656185,-0.071295574307442],[0.19343057274818,-0.022661283612251,0.012453509494662]],[[0.22465498745441,0.16403995454311,0.050205294042826],[0.07704221457243,0.21387776732445,-0.048154447227716],[-0.0052344216965139,0.01746485568583,-0.13170230388641]],[[-0.16497375071049,-0.11081071197987,-0.11519908159971],[0.034917533397675,0.012135826051235,0.0072256717830896],[-0.092927515506744,0.025347057729959,0.17100666463375]],[[-0.0068910992704332,-0.012874795123935,-0.049516960978508],[-0.033049028366804,0.010874920524657,0.019294682890177],[-0.011391428299248,0.019099693745375,0.043022450059652]],[[-0.011455684900284,0.1490170955658,-0.029297819361091],[0.17334906756878,0.034830298274755,-0.042594917118549],[-0.010073221288621,0.10453029721975,-0.14605338871479]],[[-0.2060265392065,0.073426596820354,-0.054910995066166],[-0.13061791658401,-0.068110786378384,0.050721772015095],[-0.094579689204693,0.17682906985283,0.095240131020546]],[[0.023985628038645,0.10217576473951,-0.025718335062265],[-0.0061546382494271,0.093201413750648,0.006799241527915],[-0.035852290689945,0.015808826312423,-0.066834174096584]],[[-0.09241671860218,-0.015903506428003,0.10789313167334],[-0.045093726366758,-0.044384744018316,-0.059667926281691],[-0.059089090675116,-0.017335172742605,-0.015984827652574]],[[0.085605926811695,0.034380652010441,-0.040389079600573],[-0.057789027690887,-0.002033949829638,0.017877684906125],[0.032051429152489,-0.070224672555923,0.096684992313385]]],[[[-0.087588295340538,-0.1023980230093,0.034145709127188],[0.028065074235201,0.0061911474913359,0.092215023934841],[-0.0094689726829529,0.014066114090383,-0.0052874498069286]],[[-0.21586182713509,-0.01002492569387,-0.028533309698105],[0.04039678350091,0.12012708932161,0.07228596508503],[0.059593454003334,0.062534295022488,-0.0059878183528781]],[[-0.089328125119209,0.059507690370083,0.025056341663003],[-0.025032659992576,0.0062810028903186,-0.00076499278657138],[0.080693021416664,-0.072504334151745,0.026856862008572]],[[0.05292110145092,-0.17127971351147,0.060534294694662],[-0.088042311370373,0.081858642399311,-0.00041697212145664],[-0.023144723847508,0.10229687392712,0.089908868074417]],[[0.0093196658417583,0.062860004603863,-0.090434536337852],[-0.015207655727863,0.040239550173283,0.020509896799922],[0.0095726735889912,-0.082738570868969,-0.092172183096409]],[[0.0098286056891084,-0.023949917405844,-0.028092257678509],[-0.051589317619801,-0.00078906788257882,-0.077718742191792],[0.017109911888838,0.039509382098913,0.11657232046127]],[[-0.018073612824082,0.030642613768578,-0.10944782197475],[-0.055681809782982,-0.031454388052225,-0.0088147940114141],[-0.0073189153335989,0.043005343526602,-0.062395550310612]],[[-0.029640268534422,-0.019741455093026,-0.013018201105297],[-0.029624665156007,-0.086030721664429,0.0097032301127911],[-0.044946204870939,0.016980474814773,0.030086239799857]],[[0.01216653175652,-0.0035646215546876,-0.034436292946339],[-0.075237847864628,-0.07385016977787,-0.034142021089792],[0.020935110747814,-0.02234829030931,0.077250696718693]],[[0.099788837134838,0.023506639525294,-0.042751878499985],[0.0052007073536515,0.022868201136589,-0.094930678606033],[-0.025698093697429,0.01369845867157,-0.062708452343941]],[[-0.0088691879063845,0.05459513887763,0.0093726208433509],[-0.021422084420919,0.062037568539381,-0.015923850238323],[0.10498274862766,-0.00052552483975887,0.063368961215019]],[[-0.10568108409643,-0.0048129162751138,0.03018763102591],[0.025770390406251,0.0010213180212304,-0.052587788552046],[-0.030143070966005,-0.01561458222568,0.060034275054932]],[[0.013480670750141,0.085451439023018,0.028531327843666],[0.060821630060673,0.038582865148783,0.012167262844741],[0.0045905755832791,0.16012266278267,-0.029617873951793]],[[-0.031456999480724,0.021730050444603,-0.085564792156219],[0.099037952721119,0.084193512797356,-0.027997674420476],[0.0080409683287144,-0.041771788150072,-0.088964559137821]],[[0.08070869743824,-0.013880678452551,-0.16164669394493],[0.078994825482368,0.05406453832984,-0.0017227128846571],[0.030851043760777,0.095697656273842,0.021993344649673]],[[0.0084377937018871,-0.049518138170242,0.058583032339811],[-0.10852642357349,-0.11610691994429,0.021696154028177],[0.031328815966845,-0.015521684661508,-0.014390619471669]],[[0.073301285505295,-0.16004347801208,0.0098403180018067],[0.026010802015662,-0.14158122241497,0.023414054885507],[0.028073323890567,0.042377009987831,0.038237195461988]],[[-0.092768177390099,-0.015226536430418,-0.037822432816029],[-0.048337709158659,-0.09168429672718,-0.07482622563839],[0.03763834014535,0.12190029770136,-0.013917753472924]],[[-0.025283241644502,-0.027521666139364,-0.026970261707902],[0.10400824248791,-0.030482061207294,0.062046587467194],[0.040725268423557,-0.029835399240255,-0.11258088797331]],[[-0.066694617271423,-0.054102849215269,-0.0294772926718],[-0.024967549368739,-0.052425600588322,-0.037947371602058],[0.098663702607155,0.0075686327181756,0.029778769239783]],[[-0.070533104240894,0.041816849261522,-0.036233235150576],[0.047516521066427,-0.099449880421162,-0.10513016581535],[-0.021241890266538,-0.037331577390432,-0.11939876526594]],[[-0.043973848223686,-0.060563899576664,0.087554037570953],[0.0094111375510693,0.052314594388008,0.055971655994654],[0.0271091517061,-0.042549204081297,-0.089669153094292]],[[0.085645936429501,0.077090010046959,-0.012994667515159],[0.01826411485672,0.11961128562689,0.039730619639158],[-0.072255365550518,-0.057291444391012,-0.10900231450796]],[[0.021946605294943,-0.059898812323809,-0.027145143598318],[-0.051638897508383,-0.025736343115568,-0.084287986159325],[0.085030533373356,0.081244803965092,0.069528579711914]],[[0.058895606547594,0.04281822219491,-0.053758293390274],[0.0053727412596345,0.083752818405628,-0.11718965321779],[-0.019713001325727,-0.038030128926039,0.095430746674538]],[[0.080083511769772,-0.14513036608696,-0.0024557809811085],[0.087829180061817,-0.073590651154518,-0.071572437882423],[0.14390796422958,-0.045260965824127,0.0057654003612697]],[[0.014943680725992,-0.055848021060228,0.0048215631395578],[-0.053399693220854,-0.00020908714213874,-0.028193833306432],[0.023567540571094,0.061402648687363,-0.051188588142395]],[[-0.015386560000479,0.10193093121052,0.018478993326426],[-0.0095283668488264,0.017159275710583,0.23607386648655],[-0.045600160956383,-0.046737734228373,0.070580266416073]],[[-0.013951987959445,-0.01421124022454,-0.01002093218267],[-0.008212486281991,0.034885633736849,-0.015941116958857],[0.040881723165512,0.10676427930593,0.012519047595561]],[[0.016160104423761,0.033600442111492,0.086680166423321],[-0.027803059667349,0.020599041134119,0.056286279112101],[0.020347999408841,0.010385864414275,0.030472561717033]],[[0.13107359409332,-0.13399222493172,0.0049393614754081],[0.011622893624008,-0.14052924513817,0.021365493535995],[-0.034040957689285,0.057340044528246,-0.001448864582926]],[[-0.028090950101614,0.013123784214258,-0.015197596512735],[0.019299771636724,0.12613017857075,-0.050841353833675],[0.007301667239517,-0.032805159687996,-0.11685169488192]]],[[[0.0076995445415378,0.068228296935558,-0.0012958635343239],[-0.022055067121983,-0.17538715898991,-0.15403458476067],[-0.099959753453732,-0.074847646057606,-0.02197534404695]],[[-0.049167603254318,0.076147936284542,-0.035795565694571],[-0.018569301813841,0.10772529244423,-0.068435318768024],[0.04360293596983,0.03244860842824,-0.037776835262775]],[[-0.037809293717146,0.037341743707657,-0.034344114363194],[-0.062764696776867,-0.060534413903952,-0.048183128237724],[0.041363950818777,-0.082941591739655,0.0054368181154132]],[[-0.033553201705217,0.0090957246720791,-0.10801638662815],[-0.0040486324578524,0.013080418109894,0.0060523580759764],[-0.0030021409038454,0.056374728679657,-0.14149662852287]],[[-0.029081556946039,0.029800660908222,-0.056562326848507],[0.098596967756748,-0.0053245285525918,0.064167447388172],[0.019837958738208,0.119503647089,-0.27340433001518]],[[0.020834788680077,0.11789266765118,-0.18183036148548],[0.016595704481006,0.028474031016231,0.087106429040432],[-0.036850340664387,0.005664121825248,-0.029040595516562]],[[-0.045554351061583,-0.028330082073808,0.057581309229136],[-0.17501799762249,0.055035442113876,-0.018166417255998],[0.053349167108536,-0.038328688591719,0.107745654881]],[[0.10808376222849,0.030994739383459,-0.030361481010914],[0.041230551898479,0.011576662771404,-0.032045636326075],[0.16287237405777,0.090519770979881,-0.10778649896383]],[[0.054817602038383,0.14643603563309,-0.016372080892324],[-0.042274933308363,0.061632607132196,0.0077707511372864],[-0.0057765739038587,-0.10918149352074,-0.20858444273472]],[[0.070823341608047,0.089175283908844,-0.067662961781025],[0.081792503595352,0.11022642999887,0.016168151050806],[0.078697010874748,0.14797024428844,-0.07681031525135]],[[0.0025669445749372,-0.090168945491314,0.11432778090239],[-0.036470379680395,0.025006594136357,0.062538534402847],[-0.10166485607624,0.023126345127821,0.097601778805256]],[[-0.15185540914536,0.016226187348366,0.0091928448528051],[0.012013202533126,-0.2362324744463,0.12843222916126],[-0.10561200976372,-0.045932006090879,-0.094747081398964]],[[0.0062202895060182,-0.13545721769333,-0.027831051498652],[0.034409411251545,-0.011069261468947,-0.024576146155596],[-0.0013029109686613,0.0076875435188413,-0.033378455787897]],[[0.12018714845181,0.069779708981514,0.013649183325469],[0.044993009418249,0.015037534758449,-0.10506708920002],[-0.13466614484787,-0.030076280236244,0.066557332873344]],[[-0.12360472977161,-0.038387477397919,-0.14313636720181],[-0.08220474421978,0.029110392555594,0.059236045926809],[0.067562140524387,0.025793131440878,0.0080230040475726]],[[-0.068278528749943,0.021228060126305,0.0040109721012414],[-0.050452407449484,0.038516841828823,-0.0059002372436225],[-0.052158419042826,0.027139894664288,0.14805993437767]],[[0.029718372970819,-0.10360141843557,-0.063310295343399],[-0.059343099594116,-0.05256487056613,-0.035056799650192],[-0.021403690800071,-0.10770197957754,-0.0083146682009101]],[[0.067399375140667,0.03531850874424,-0.060187429189682],[-0.009224621579051,-0.024565208703279,-0.073530614376068],[0.042019989341497,0.045212913304567,-0.017000220716]],[[0.058105785399675,0.036982879042625,0.01070751901716],[-0.00027033386868425,0.092643059790134,-0.19611021876335],[0.19890166819096,0.053075976669788,-0.092813074588776]],[[0.046237159520388,-0.1187879294157,-0.043080069124699],[0.092133872210979,0.12599425017834,-0.046601120382547],[-0.060766857117414,0.086223430931568,-0.14132556319237]],[[0.036491073668003,0.072974480688572,0.043797478079796],[-0.061827704310417,-0.10041686892509,-0.054139342159033],[-0.15544632077217,-0.01304492726922,-0.026421755552292]],[[-0.015026748180389,0.06775639206171,0.045830741524696],[0.071214824914932,-0.022879684343934,-0.061991009861231],[0.075222156941891,0.00423289462924,-0.17378768324852]],[[-0.016435535624623,0.028672417625785,0.023228505626321],[-0.0064559881575406,-0.021038245409727,-0.017968168482184],[-0.010404701344669,0.045532066375017,0.0075427177362144]],[[-0.014794961549342,-0.04393719881773,0.056256845593452],[0.012071635574102,-0.05871119722724,-0.023599438369274],[0.034486666321754,0.017466098070145,0.0019480786286294]],[[-0.093744710087776,-0.08106940984726,-0.02171635068953],[0.11282385885715,0.11203682422638,0.066567108035088],[-0.061266638338566,-0.031200027093291,0.043944623321295]],[[0.09417463093996,-0.0014408292481676,-0.082919806241989],[-0.025966882705688,-0.05954061076045,-0.051163487136364],[0.0091865211725235,-0.010466967709363,-0.010146883316338]],[[0.023837605491281,0.061392113566399,-0.087819762527943],[0.033470720052719,0.053606722503901,-0.042220436036587],[-0.085596419870853,-0.056444585323334,0.042383719235659]],[[-0.012596409767866,-0.025241982191801,0.069347016513348],[0.02941027469933,-0.0050244512967765,-0.016540337353945],[0.040168862789869,0.0098887756466866,0.0045554540120065]],[[-0.075496859848499,-0.11345779150724,-0.00051474059000611],[-0.018373254686594,-0.073593884706497,-0.1001640111208],[0.070892915129662,0.12665225565434,0.093277253210545]],[[0.016970539465547,0.082841776311398,-0.00092018861323595],[0.11348430812359,-0.046613145619631,-0.11707706749439],[-0.0071276286616921,-0.012409116141498,-0.11436233669519]],[[0.060839463025331,-0.02474101819098,-0.12414020299911],[0.089234709739685,0.094069331884384,-0.080490082502365],[0.16139230132103,-0.011687680147588,-0.10734759271145]],[[-0.036785691976547,-0.037353407591581,-0.14938741922379],[0.023744598031044,-0.053818732500076,0.064059443771839],[0.016992902383208,-0.032810710370541,0.083863541483879]]],[[[-0.099795922636986,-0.20490857958794,-0.23724199831486],[0.0039975200779736,-0.050944563001394,-0.15448392927647],[0.0987818390131,0.036035399883986,-0.070833705365658]],[[0.0093433521687984,-0.029847024008632,-0.043570820242167],[0.069576129317284,0.020090570673347,-0.12146169692278],[0.093353308737278,0.011261555366218,0.027524534612894]],[[0.070114463567734,0.08927197009325,0.12975138425827],[-0.025474961847067,-0.0258734151721,-0.014825277030468],[-0.088409833610058,-0.14537523686886,-0.096632868051529]],[[-0.027951322495937,-0.0025934900622815,0.076886013150215],[0.067331522703171,-0.1290710568428,0.08916237205267],[-0.13487912714481,-0.20317162573338,0.016789158806205]],[[0.057357415556908,-0.0058661089278758,-0.050932597368956],[0.031140647828579,0.013696612790227,0.0032793232239783],[-0.093342810869217,-0.06864020973444,-0.10753854364157]],[[-0.058189783245325,0.017088279128075,-0.26402097940445],[-0.026958020403981,0.039393153041601,-0.0051556853577495],[-0.040803968906403,-0.084256529808044,-0.10093981772661]],[[-0.011627393774688,-0.055651664733887,-0.093160405755043],[0.10021729022264,0.0046845520846546,0.036966044455767],[0.096528574824333,0.20048166811466,0.15568110346794]],[[0.0020462803076953,-0.007704000454396,-0.012861274182796],[-0.13073188066483,-0.17162236571312,-0.13706324994564],[0.049047578126192,-0.025121502578259,-0.10845220834017]],[[0.083858460187912,-0.10490737855434,0.028336754068732],[-0.059305623173714,0.10567302256823,-0.044398903846741],[0.012266468256712,-0.070809364318848,-0.073218479752541]],[[0.045844260603189,0.21971283853054,0.058493737131357],[0.05609443411231,0.18892580270767,0.10435082763433],[-0.064693413674831,-0.05075217038393,-0.071230709552765]],[[-0.033871587365866,0.03922476619482,-0.0075211287476122],[-0.070701174438,0.15400965511799,0.057129766792059],[-0.23427005112171,-0.078637130558491,-0.19345611333847]],[[0.011364336125553,-0.071598678827286,-0.20632511377335],[-0.15017154812813,0.0078237215057015,0.066876664757729],[-0.031782537698746,0.12174019217491,0.002489305799827]],[[0.062040444463491,0.02183928526938,0.083877936005592],[0.017856933176517,0.05409824103117,0.10474993288517],[-0.062751516699791,0.053111869841814,0.02217373996973]],[[-0.026418073102832,-0.13591147959232,-0.0073681399226189],[-0.017704976722598,0.059797443449497,-0.1022155508399],[-0.24285151064396,0.093220494687557,-0.15886327624321]],[[0.044745322316885,-0.037975933402777,0.11138018965721],[-0.058211978524923,-0.029429638758302,0.050539955496788],[-0.0053880303166807,0.070899449288845,-0.063347212970257]],[[-0.10116310417652,0.11865420639515,-0.083956882357597],[-0.10939275473356,0.11114142090082,0.088900931179523],[0.046083316206932,0.14103752374649,0.12618669867516]],[[-0.063514374196529,-0.24751752614975,0.010289750061929],[0.0073065361939371,-0.07170308381319,-0.095048807561398],[-0.045136954635382,0.16075167059898,0.0030067425686866]],[[-0.023598205298185,-0.15956535935402,-0.047740660607815],[-0.081606052815914,-0.0027224619407207,-0.022352369502187],[0.15014101564884,0.065125405788422,-0.0064918505959213]],[[-0.052785977721214,-0.034654501825571,0.061204835772514],[0.073216512799263,0.1368812918663,0.049565743654966],[0.12712849676609,0.03978506475687,-0.056683298200369]],[[0.010657795704901,-0.046500980854034,-0.018361354246736],[-0.15095673501492,-0.25017097592354,-0.081050425767899],[-0.19894456863403,-0.046323850750923,-0.10849542170763]],[[0.029434377327561,-0.062092393636703,-0.1395521312952],[0.11885560303926,0.029343223199248,-0.07399408519268],[-0.036739487200975,-0.072177402675152,-0.31876823306084]],[[-0.091047234833241,0.15087307989597,0.2170934677124],[-0.0013762916205451,0.13870872557163,0.048205800354481],[-0.17044126987457,-0.091865010559559,-0.18559697270393]],[[0.0054646045900881,0.21044717729092,0.024247949942946],[0.068238407373428,0.0056362757459283,-0.17771448194981],[-0.43974336981773,-0.061101906001568,-0.27167761325836]],[[-0.053299140185118,0.013572341762483,-0.064438201487064],[-0.0064391177147627,0.071837589144707,0.0048922547139227],[-0.13056282699108,-0.075793839991093,-0.082293294370174]],[[0.04380127415061,-0.04371178150177,-0.048526968806982],[0.050724405795336,-0.048912741243839,-0.10463096946478],[0.12570722401142,0.024885680526495,0.0056968019343913]],[[0.10743979364634,0.02011457271874,-0.046058587729931],[-0.096500545740128,-0.098479114472866,-0.024723654612899],[0.054523535072803,0.021316586062312,0.11770904064178]],[[-0.076683722436428,0.13411147892475,0.025531832128763],[-0.13569137454033,-0.01525538880378,0.082880407571793],[-0.053271789103746,-0.031702894717455,0.054648067802191]],[[0.18488845229149,0.2040921151638,-0.012661679647863],[-0.002558765700087,0.35939678549767,0.20094884932041],[-0.23036408424377,0.15806704759598,-0.13312764465809]],[[-0.17889480292797,-0.091814808547497,0.027662705630064],[0.023801300674677,-0.02972356043756,0.0061300890520215],[-0.0037405816838145,0.10609086602926,0.14559894800186]],[[0.18138866126537,0.07405212521553,0.04060872644186],[-0.0099545521661639,-0.057349167764187,0.092493414878845],[-0.026162717491388,0.0057345726527274,-0.029799429699779]],[[-0.0084079671651125,-0.03188468515873,0.015999898314476],[0.024984056130052,-0.01023923419416,0.095605708658695],[-0.11313177645206,0.023698108270764,0.16088937222958]],[[0.035492647439241,-0.051677756011486,-0.14341098070145],[0.1011748611927,-0.055221244692802,-0.011411711573601],[0.065266586840153,0.049002572894096,0.086965091526508]]],[[[-0.1000140234828,0.033291287720203,0.0069602625444531],[-0.19642621278763,-0.15619698166847,-0.074765987694263],[-0.045134473592043,-0.053638178855181,0.053937342017889]],[[0.051473520696163,0.036369644105434,-0.0068565425463021],[0.026531914249063,-0.0076857428066432,0.18734528124332],[-0.10205680131912,-0.14594538509846,0.025629518553615]],[[-0.06259698420763,-0.06805032491684,-0.077363051474094],[0.027461787685752,-0.061903119087219,0.04172732681036],[0.10513125360012,0.0064344857819378,0.055767416954041]],[[-0.077873297035694,0.019257908686996,-0.085012227296829],[-0.045166239142418,-0.22724696993828,0.1277451813221],[0.13217036426067,0.03623428195715,-0.03993409126997]],[[-0.044501297175884,0.0081608705222607,-0.0072882641106844],[0.029287558048964,-0.0042131580412388,0.001371334772557],[-0.1768627166748,-0.086369521915913,-0.083474561572075]],[[0.066048108041286,0.015832494944334,-0.0059326556511223],[-0.062446251511574,-0.052771955728531,0.065706305205822],[0.067575238645077,-0.021186880767345,-0.14279086887836]],[[0.052592545747757,0.085237294435501,-0.15729348361492],[0.076361157000065,-0.080433331429958,0.086421482264996],[0.048879440873861,0.066070288419724,0.1028648018837]],[[-0.045273866504431,0.0050430726259947,-0.026792736724019],[-0.034911725670099,-0.02927921526134,0.019758630543947],[-0.0064453184604645,0.079423412680626,-0.04976499825716]],[[0.024011462926865,0.14440967142582,0.13133923709393],[-0.11260065436363,0.05243756249547,0.011617726646364],[-0.10510955750942,0.097347550094128,-0.069782145321369]],[[-0.077817149460316,0.012815540656447,-0.046753764152527],[0.14468830823898,0.030739983543754,0.05041852965951],[0.15144105255604,-0.045488856732845,-0.027516821399331]],[[-0.00075168395414948,-0.052510660141706,0.035476353019476],[-0.063924595713615,0.11414428055286,0.006576337851584],[-0.032748106867075,0.0073458654806018,-0.0084355603903532]],[[0.08274319767952,0.0097868526354432,-0.071078084409237],[-0.12153577804565,-0.075921609997749,0.06898820400238],[0.038763165473938,-0.14026002585888,-0.15229167044163]],[[-0.0436403863132,-0.0053266589529812,-0.069289162755013],[0.012492977082729,-0.042962573468685,0.074305526912212],[0.15001641213894,0.11702524125576,0.011907076463103]],[[0.055043950676918,0.13614152371883,0.0035628771875054],[-0.0099212927743793,0.074675559997559,0.058743540197611],[-0.044787261635065,-0.01092048920691,-0.11055561900139]],[[0.17108957469463,-0.0060112592764199,-0.023836622014642],[-0.02079021371901,0.046726979315281,0.015183896757662],[-0.14680750668049,0.021611941978335,-0.051580600440502]],[[0.027248691767454,-0.099465161561966,-0.047807227820158],[0.12985487282276,-0.13964419066906,-0.063539110124111],[0.052858684211969,-0.027135953307152,-0.082525841891766]],[[0.019868537783623,-0.14157782495022,-0.014007778838277],[0.0031888345256448,0.030111905187368,0.00063447147840634],[0.036678146570921,-0.039753891527653,0.11409771442413]],[[-0.013925602659583,-0.0034087270032614,0.084114879369736],[0.02078670822084,0.14498095214367,-0.16270433366299],[-0.11318030208349,0.005549275316298,0.035845242440701]],[[-0.036635611206293,-0.024760335683823,0.02075850404799],[0.049047909677029,-0.063189275562763,-0.12234622985125],[0.033505272120237,0.027270417660475,-0.04716582223773]],[[-0.0028283155988902,0.0082174660637975,0.0049908505752683],[-0.066109642386436,0.010922756046057,0.015981642529368],[0.046623613685369,-0.17076641321182,-0.0039731208235025]],[[0.10635320097208,-0.12330297380686,-0.02901167422533],[-0.053931672126055,0.20436102151871,-0.092202849686146],[0.08573018014431,-0.014967505820096,-0.21620650589466]],[[-0.044144030660391,-0.050810262560844,0.010980078019202],[0.050611354410648,0.062305971980095,0.031636208295822],[0.13361324369907,0.17803117632866,0.0069054113700986]],[[0.010728851892054,0.043027263134718,0.064403995871544],[-0.07437002658844,0.096595175564289,-0.10012905299664],[0.010661847889423,0.14963074028492,-0.12898224592209]],[[-0.06399866938591,-0.00050313386600465,-0.037693131715059],[0.0091117797419429,0.11371844261885,-0.02992021292448],[0.062736079096794,-0.1203590258956,0.037221223115921]],[[-0.10312253236771,0.057921249419451,0.039349354803562],[0.013454156927764,0.11340684443712,-0.092116199433804],[-0.092978112399578,-0.021622814238071,-0.0076680639758706]],[[-0.068404152989388,-0.0021985277999192,0.013684802688658],[0.031667176634073,0.0099075650796294,-0.021567391231656],[-0.038864150643349,-0.093648456037045,0.055023718625307]],[[0.025597877800465,0.057381883263588,-0.016292037442327],[-0.03742553293705,0.0093937097117305,-0.0096878306940198],[-0.12508210539818,0.010539816692472,0.051753249019384]],[[-0.076517909765244,-0.010692253708839,0.066789031028748],[-0.067771092057228,0.1012159511447,0.014456494711339],[0.020705830305815,0.071174889802933,-0.082519389688969]],[[-0.13238914310932,0.12140656262636,-0.016441853716969],[-0.086653083562851,-0.20396068692207,0.0022391229867935],[-0.025551218539476,0.046004101634026,0.026607125997543]],[[0.060011319816113,-0.032175045460463,0.060421355068684],[-0.06911601126194,0.051299747079611,0.08792332559824],[-0.0022616782225668,0.0072357105091214,-0.018670570105314]],[[-0.037384018301964,-0.029517505317926,-0.059524152427912],[0.099193945527077,-0.0033916991669685,0.18881143629551],[0.048457507044077,-0.071857526898384,-0.11713301390409]],[[0.00075922295218334,-0.06274800747633,0.040225405246019],[0.12735459208488,-0.067781135439873,-0.071283869445324],[-0.0049903569743037,0.031898889690638,-0.0063553326763213]]],[[[0.04303814470768,-0.23766057193279,-0.069073550403118],[-0.074591420590878,-0.11085899174213,0.021271638572216],[-0.090028271079063,0.0046399487182498,0.13159291446209]],[[0.11416479945183,0.069499582052231,0.029985666275024],[-0.052548043429852,-0.085484683513641,-0.019572157412767],[-0.042904209345579,0.0038326531648636,-0.002516457810998]],[[0.076256632804871,-0.090469352900982,-0.14962105453014],[0.064364962279797,-0.022044587880373,-0.019073233008385],[0.068788260221481,-0.1204976812005,0.049844436347485]],[[-0.081117264926434,0.005933728069067,-0.1037292778492],[-0.083879329264164,-0.11097437888384,-0.21496745944023],[-0.075483597815037,-0.1084071546793,-0.053260020911694]],[[-5.1398503273958e-05,0.0043974597938359,-0.11090035736561],[-0.084987640380859,-0.075275339186192,0.055106889456511],[-0.026572592556477,-0.025154208764434,-0.15094761550426]],[[-0.046043541282415,-0.0026611504144967,-0.13358178734779],[-0.047275327146053,-0.11530854552984,0.029150191694498],[-0.15510413050652,-0.011307246983051,-0.1399994045496]],[[-0.11764349788427,0.01882185973227,0.053929027169943],[-0.033220730721951,-0.081292599439621,-0.14594855904579],[-0.089105077087879,-0.13657709956169,0.15927501022816]],[[0.029901890084147,-0.11052199453115,-0.12144497781992],[-0.12523424625397,-0.023597128689289,-0.24568764865398],[-0.12907652556896,-0.24874651432037,-0.092329800128937]],[[-0.078735165297985,-0.080350585281849,-0.036378558725119],[0.031766097992659,-0.18731126189232,-0.078109234571457],[0.010834323242307,-0.040986936539412,0.074171185493469]],[[0.08499313890934,0.060606829822063,0.24751722812653],[0.047740396112204,0.015756471082568,-0.042966429144144],[0.1812360137701,0.09598097205162,0.20218148827553]],[[0.052767034620047,-0.042890820652246,-0.062723018229008],[0.018312815576792,-0.017757559195161,0.02422165684402],[-0.077407568693161,0.022801944985986,-0.031683657318354]],[[0.043718442320824,-0.0095285130664706,0.058427028357983],[-0.19233833253384,-0.0022590735461563,-0.058257527649403],[-0.026689641177654,-0.14358189702034,0.0041123945266008]],[[-0.00094809976872057,-0.12777501344681,-0.057297453284264],[0.067389108240604,-0.076575204730034,0.04246611520648],[-0.028667792677879,-0.036851182579994,-0.049646213650703]],[[-0.036303885281086,0.13546797633171,-0.016274098306894],[-0.041738174855709,-0.0080694826319814,-0.063164070248604],[0.13799269497395,0.058412488549948,0.092344373464584]],[[-0.0019455512519926,-0.059405647218227,-0.13359770178795],[-0.10538750886917,-0.047594506293535,-0.21192805469036],[-0.032273877412081,-0.16390192508698,-0.15038128197193]],[[-0.093497417867184,0.094437070190907,0.0780189037323],[0.024150423705578,-0.06296294927597,0.10340239107609],[-0.12840342521667,0.010301697067916,0.034424602985382]],[[-0.038899980485439,-0.10782365500927,-0.27621728181839],[-0.14436005055904,-0.15825022757053,0.050326745957136],[0.015402539633214,-0.01433742325753,-0.20170877873898]],[[0.024225428700447,-0.12446195632219,-0.10124944150448],[0.0037283741403371,0.0067591657862067,-0.0093928407877684],[-0.057881399989128,-0.015490976162255,-0.18669897317886]],[[-0.17796246707439,-0.26463410258293,-0.1031374707818],[-0.13517139852047,0.002137741073966,-0.12525473535061],[-0.010733589529991,-0.1884787529707,-0.16693346202374]],[[-0.09948268532753,0.045291271060705,-0.069878734648228],[0.004603844601661,-0.13226580619812,-0.096179448068142],[-0.017416346818209,-0.12221392244101,-0.12024873495102]],[[0.044843025505543,0.19765561819077,0.075142234563828],[-0.049333147704601,-0.033121008425951,-0.0094062704592943],[-0.039700753986835,0.0041053146123886,0.028256202116609]],[[-0.097235187888145,-0.13631987571716,-0.023125674575567],[-0.026406437158585,0.011303688399494,0.019825199618936],[0.0058425832539797,-0.043510608375072,0.077034026384354]],[[-0.0036078449338675,0.1187736839056,-0.020160680636764],[0.070979006588459,-0.060448810458183,0.087186835706234],[0.035532105714083,0.079575717449188,0.021097520366311]],[[0.016097538173199,-0.1365674585104,0.049752350896597],[-0.13258315622807,-0.11975558102131,-0.28844025731087],[-0.072854839265347,-0.20856690406799,-0.089001856744289]],[[-0.22075173258781,-0.11318789422512,-0.081037580966949],[-0.091047443449497,-0.2470159381628,0.044174320995808],[-0.098077088594437,-0.028792783617973,-0.054598774760962]],[[0.019407380372286,-0.011095500551164,-0.1676085293293],[-0.048525594174862,-0.18939681351185,0.0015248084673658],[-0.14672189950943,0.060873877257109,-0.17284132540226]],[[-0.053401336073875,0.0020093794446439,-0.03675938397646],[0.13573369383812,-0.10668644309044,0.079835683107376],[-0.016084756702185,-0.028558796271682,-0.031217018142343]],[[0.025490894913673,-0.082991197705269,0.26903960108757],[0.033711884170771,-0.17369908094406,0.06473284214735],[0.038831502199173,0.071435041725636,0.04321414232254]],[[-0.0067653912119567,-0.038037665188313,0.01211064402014],[-0.24938583374023,0.055900283157825,0.0089359749108553],[0.020350825041533,-0.15439519286156,-0.048481266945601]],[[0.017157554626465,-0.094438880681992,0.035048488527536],[0.039838202297688,0.024224629625678,-0.045984294265509],[0.12413366883993,0.032753851264715,-0.023535734042525]],[[-0.02250056900084,0.013294345699251,-0.022251587361097],[-0.12314356118441,-0.14209844172001,-0.12349300086498],[0.010647614486516,-0.14692033827305,-0.069608733057976]],[[-0.037243351340294,-0.013046015053988,-0.13878010213375],[-0.054079383611679,-0.050917360931635,0.052941933274269],[0.06213890388608,-0.097122028470039,-0.11092099547386]]],[[[-0.10624761879444,-0.026437992230058,-0.010637057945132],[0.030337342992425,-0.20844975113869,0.032590512186289],[-0.024705164134502,-0.034396484494209,0.070428773760796]],[[-0.10446448624134,0.15996500849724,-0.11424870789051],[-0.090012237429619,0.12644390761852,-0.094560161232948],[0.044589444994926,0.1386027187109,-0.10326916724443]],[[0.15084883570671,-0.15517292916775,-0.017442559823394],[0.030596928671002,-0.12754414975643,0.14509934186935],[-0.20321042835712,0.036014284938574,-0.20325389504433]],[[0.059249620884657,-0.28117337822914,0.035529740154743],[0.041842047125101,-0.20761686563492,0.019809616729617],[-0.010183298029006,-0.12969981133938,-0.0050620101392269]],[[0.059489913284779,0.12213203310966,0.087636664509773],[0.061521332710981,0.047494899481535,0.057706810534],[-0.017952166497707,-0.016329100355506,-0.0079937176778913]],[[-0.12911348044872,0.14768575131893,0.070770055055618],[-0.17307375371456,0.044754229485989,0.019186371937394],[-0.013218970037997,-0.097943305969238,-0.097868338227272]],[[-0.09134404361248,0.024055035784841,-0.13167937099934],[0.019338814541698,-0.038331903517246,-0.13311342895031],[-0.0068555534817278,0.052142430096865,0.097710765898228]],[[0.0034387037158012,0.0094849625602365,0.014834860339761],[0.0091599896550179,-0.0058065853081644,0.064559675753117],[0.011970489285886,0.12992990016937,0.0082001155242324]],[[-0.080615378916264,0.069828800857067,-0.20327112078667],[-0.068431176245213,0.039461001753807,-0.1235743612051],[0.041662335395813,0.063906371593475,-0.017926789820194]],[[0.12107450515032,0.24054409563541,-0.10071782767773],[0.10027572512627,0.033243775367737,0.0090748770162463],[0.0794498026371,-0.030843216925859,0.096474163234234]],[[-0.1939914226532,0.079705730080605,-0.050036933273077],[0.034201737493277,0.031745567917824,-0.11875373870134],[0.062899477779865,-0.094920739531517,0.16191053390503]],[[-0.004636365454644,-0.033501513302326,0.080417975783348],[0.051566231995821,-0.094821102917194,0.1534648835659],[0.032317355275154,0.024409353733063,0.0073766144923866]],[[-0.22056663036346,0.14501312375069,-0.21159696578979],[-0.12546728551388,0.011436372995377,-0.1185098439455],[0.15262462198734,-0.015031510964036,-0.1594358086586]],[[-0.07519343495369,-0.16688153147697,0.18541665375233],[-0.027774261310697,-0.074290007352829,0.12723389267921],[-0.14222446084023,0.060912985354662,0.11092522740364]],[[0.11148855090141,-0.049571268260479,0.018884731456637],[-0.03704459220171,-0.14699575304985,-0.015455337241292],[0.044957891106606,-0.08455104380846,-0.0029998447280377]],[[0.1461908519268,-0.043769091367722,0.12241593748331],[0.098621591925621,0.05269468203187,-0.044546991586685],[-0.05268358066678,-0.044392611831427,-0.20606431365013]],[[-0.14348265528679,0.008537613786757,-0.22692693769932],[-0.070746049284935,-0.0020904215052724,-0.092396676540375],[-0.0066656935960054,0.05499454587698,-0.0091318283230066]],[[-0.22877000272274,0.098522506654263,-0.0075017032213509],[-0.1524296104908,0.016372755169868,-0.32492178678513],[0.18614982068539,0.13444125652313,0.03103020042181]],[[0.02746400795877,0.088888593018055,0.0096087576821446],[-0.03359230607748,-0.010960969142616,-0.090296268463135],[-0.048405259847641,0.046686116605997,0.00016870764375199]],[[-0.079987935721874,-0.010208738967776,0.030470553785563],[-0.31648540496826,-0.015823831781745,-0.17853683233261],[-0.11366187781096,-0.062518745660782,-0.13278813660145]],[[-0.030643466860056,-0.10634953528643,-0.030494704842567],[0.023731682449579,-0.053677882999182,0.060740951448679],[-0.038289058953524,0.065536461770535,0.024849796667695]],[[0.04877582192421,-0.12445145845413,0.1422768086195],[0.15611995756626,-0.15551011264324,0.25091305375099],[-0.13631100952625,-0.079048439860344,-0.024607174098492]],[[-0.066237017512321,0.20300337672234,0.022496795281768],[-0.15485465526581,0.35728001594543,-0.13886806368828],[-0.1572557836771,0.069296956062317,-0.15948343276978]],[[0.042112987488508,-0.044603679329157,0.0067973900586367],[0.042743168771267,-0.087899163365364,0.023986766114831],[0.089853577315807,-0.12403056025505,0.021494755521417]],[[-0.040671221911907,0.19779539108276,-0.2508539557457],[-0.03176187723875,0.010960837826133,-0.089958742260933],[0.010883999988437,-0.045906998217106,0.10662706941366]],[[-0.013516570441425,0.03633276373148,-0.0004813531122636],[0.012004727497697,-0.039183773100376,-0.054962337017059],[0.049001734703779,0.0032641575671732,0.0069722849875689]],[[-0.03795663267374,0.12917141616344,0.023556673899293],[-0.12226419895887,0.045975726097822,-0.0030662240460515],[-0.032091673463583,0.055713176727295,-0.025816233828664]],[[0.017435675486922,0.1209277138114,0.11146596819162],[0.035747695714235,0.12951236963272,0.044330481439829],[-0.048834230750799,0.078796423971653,0.0048392759636045]],[[-0.2198960185051,-0.086349911987782,0.084618248045444],[-0.13282586634159,-0.092055946588516,-0.093627825379372],[0.1882901340723,0.039876893162727,0.13069543242455]],[[-0.025042982771993,-0.1695668399334,0.052751619368792],[-0.025011898949742,-0.0066421832889318,-0.037805397063494],[-0.067906476557255,-0.0011989495251328,0.023478178307414]],[[-0.020305827260017,0.0082504618912935,-0.031407799571753],[0.0087666772305965,0.10059944540262,-0.081828661262989],[0.079193688929081,0.0057160938158631,-0.13745309412479]],[[-0.068875260651112,-0.0034019739832729,-0.10531707108021],[0.078188769519329,-0.045703615993261,0.049183391034603],[0.13841365277767,-0.089548245072365,0.060800280421972]]],[[[0.12595349550247,0.05832139775157,-0.01619884185493],[-0.078768745064735,-0.030349534004927,0.090308345854282],[-0.018492562696338,0.0046177445910871,0.063028804957867]],[[0.003249182831496,0.036712277680635,-0.00587422773242],[0.05206947773695,0.042178563773632,0.054067607969046],[-0.1536149084568,-0.11386157572269,0.037716187536716]],[[-0.043718121945858,-0.11787555366755,-0.14957104623318],[-0.019486187025905,0.00030447304015979,-0.012196601368487],[0.016987441107631,-0.12844802439213,0.0831593349576]],[[0.11831215769053,-0.017626859247684,-0.033504363149405],[0.04654087126255,-0.015578567050397,-0.069272071123123],[-0.044882513582706,-0.049852274358273,0.026111798360944]],[[-0.098856575787067,-0.0076881931163371,-0.004995001014322],[0.034786760807037,-0.012142622843385,0.065337441861629],[-0.023897457867861,-0.018982980400324,0.00045114062959328]],[[0.010624947957695,-0.10242652148008,-0.020555485039949],[0.19259545207024,-0.10332595556974,-0.033738508820534],[-0.001922081457451,-0.094578541815281,-0.038846991956234]],[[0.00060382462106645,0.042341105639935,0.05226106569171],[-0.097282715141773,0.18096758425236,-0.0062326220795512],[-0.025475826114416,0.12485538423061,-0.056980133056641]],[[0.026331136003137,0.029619498178363,-0.015259456820786],[0.045603454113007,-0.032740615308285,0.036929734051228],[0.097745254635811,0.080580316483974,0.07116224616766]],[[-0.012765808030963,0.056392308324575,0.058857399970293],[0.062952548265457,0.014833556488156,-0.036150019615889],[-0.093881882727146,0.017988177016377,0.059715401381254]],[[0.10008009523153,0.15551687777042,0.047941915690899],[-0.085056446492672,0.092773228883743,0.089093655347824],[-0.012627196498215,0.03171731159091,0.05475165322423]],[[-0.0023269453085959,-0.11978072673082,-0.033452585339546],[0.18312850594521,-0.014051984995604,-0.0055180718190968],[-0.025159724056721,0.082517400383949,0.10305450856686]],[[0.070077642798424,0.10686866939068,-0.084285050630569],[0.0047655473463237,-0.10852584242821,0.0090458150953054],[-0.030934263020754,-0.0038366853259504,0.12672980129719]],[[0.061459071934223,0.028400680050254,-0.036373153328896],[0.009688233025372,-0.007697076536715,0.058269858360291],[-0.039143335074186,-0.030643552541733,0.075443483889103]],[[-0.11392229795456,0.051482658833265,-0.017609598115087],[0.1695516705513,-0.075476869940758,-0.031163815408945],[-0.049263048917055,-0.068259119987488,0.030495358631015]],[[-0.06075432524085,-0.026879418641329,0.074505478143692],[0.019043194130063,-0.1657861918211,0.071173444390297],[-0.013462232425809,-0.19855399429798,-0.075119122862816]],[[-0.043949078768492,-0.0091632129624486,-0.015368500724435],[-0.014398161321878,-0.14558750391006,-0.0182538125664],[-0.027328351512551,0.14771099388599,0.015963245183229]],[[0.0027310042642057,-0.052591618150473,-0.0076891556382179],[-0.0543765835464,-0.035111304372549,-0.2092263251543],[-0.0080869477242231,-0.054429668933153,-0.025643335655332]],[[-0.0041121300309896,0.1069905012846,-0.11085058003664],[-0.046435281634331,0.075746551156044,-0.039891634136438],[-0.12095199525356,-0.055458124727011,-0.14125539362431]],[[0.079987853765488,-0.038563467562199,0.0038882850203663],[0.038720440119505,-0.041412133723497,0.011376016773283],[-0.18375931680202,-0.019773097708821,-0.02985317632556]],[[0.013082396239042,-0.049552164971828,-0.039525676518679],[-0.015558487735689,-0.075098231434822,-0.0018528827931732],[-0.025801869109273,-0.11370205879211,0.039803065359592]],[[0.085881359875202,0.056043487042189,0.079105481505394],[0.060152798891068,0.024147879332304,0.13694353401661],[-0.063820198178291,0.0017271171091124,-0.004076449200511]],[[-0.11840377002954,0.10784598439932,-0.013319264166057],[-0.080403037369251,-0.094250366091728,0.05143316462636],[0.096913650631905,-0.00056281156139448,-0.0091636842116714]],[[0.19089482724667,-0.025185653939843,0.12436951696873],[0.012457945384085,0.0032427893020213,0.10705507546663],[-0.02181563153863,0.13459332287312,0.032943438738585]],[[-0.14293222129345,0.0029413783922791,0.0048660999163985],[0.072844959795475,-0.099144361913204,-0.099436245858669],[0.043568670749664,-0.070728339254856,0.035981841385365]],[[-0.10541177541018,0.072587758302689,0.0056731607764959],[-0.17950764298439,-0.04787141084671,-0.048815242946148],[-0.0061618713662028,0.00076119822915643,-0.0023471091408283]],[[0.061100859194994,0.028733003884554,-0.069575563073158],[0.0069902990944684,0.0094886934384704,0.0037782238796353],[-0.022264217957854,-0.14587265253067,0.043795902282]],[[-0.0316889770329,-0.051275290548801,0.048083387315273],[0.048689097166061,-0.0018640627386048,-0.046290036290884],[0.040186405181885,0.069150827825069,-0.093447677791119]],[[0.12901894748211,0.11011949181557,-0.010321334004402],[-0.031866833567619,0.042453296482563,0.12304790318012],[-0.07432783395052,-0.075259506702423,0.12504927814007]],[[-0.055562749505043,-0.062490899115801,0.11859603971243],[-0.078662797808647,0.015726687386632,0.020986761897802],[0.072773233056068,-0.11400488764048,0.028308300301433]],[[0.0016036160523072,0.027348412200809,0.0030170807149261],[0.012921227142215,-0.020418418571353,0.030861552804708],[0.0072583337314427,0.044395454227924,-0.016304112970829]],[[-0.050217814743519,-0.003530579386279,0.0036854329518974],[-0.059366904199123,-0.048693377524614,-0.016847193241119],[0.10986467450857,-0.014823821373284,-0.095985494554043]],[[0.0020692879334092,0.014723640866578,0.039024848490953],[-0.085001066327095,-0.076033435761929,-0.063219882547855],[0.055654726922512,-0.0505331158638,-0.033653117716312]]],[[[-0.066467113792896,-0.090728297829628,-0.062012076377869],[-0.35477319359779,-0.096631608903408,-0.05442988499999],[-0.11312766373158,-0.087979175150394,-0.024477893486619]],[[0.054125960916281,0.10047020018101,-0.046111565083265],[0.0070724505931139,-0.031318858265877,-0.052328355610371],[0.0045869862660766,0.048026863485575,-0.075256183743477]],[[0.068006858229637,-0.16180472075939,-0.13209839165211],[-0.24290163815022,0.16808494925499,-0.23399706184864],[0.058194540441036,-0.19426941871643,-0.02631089836359]],[[0.096218667924404,-0.087883904576302,0.091327592730522],[-0.091636672616005,0.13628354668617,-0.060127779841423],[0.07085146009922,-0.046721693128347,0.076972477138042]],[[0.054228585213423,0.10490725189447,0.079217307269573],[-0.037420749664307,-0.0046518268063664,-0.010077607817948],[0.020904686301947,0.077872380614281,-0.021021053195]],[[-0.2549566924572,0.064532041549683,0.028009740635753],[-0.0025791067164391,-0.092903584241867,0.078172393143177],[-0.10731013119221,0.064675644040108,0.18612304329872]],[[-0.13540731370449,0.092132098972797,-0.031004246324301],[-0.066997230052948,0.11648643016815,-0.10949759930372],[0.013664689846337,-0.0012557370355353,-0.026309289038181]],[[-0.030784178525209,0.014717008918524,-0.0091723836958408],[-0.047319859266281,0.0068985815159976,-0.05294880643487],[-0.020546900108457,-0.033305503427982,0.047144621610641]],[[-0.060372438281775,-0.128502368927,0.014487241394818],[0.064121171832085,0.02300182916224,-0.095140010118484],[0.020411903038621,-0.08256658911705,-0.13147327303886]],[[0.072215139865875,-0.032344114035368,-0.061800017952919],[0.081013418734074,0.062253654003143,-0.068860076367855],[0.12837480008602,-0.010888571850955,-0.0092337122187018]],[[0.052922267466784,0.092757195234299,-0.031984973698854],[0.11058317869902,0.01397205889225,-0.041223611682653],[-0.04417584836483,-0.077490329742432,-0.18004932999611]],[[0.059827119112015,0.028496831655502,0.023561853915453],[0.041892845183611,-0.013910685665905,-0.099540539085865],[0.092202976346016,-0.19599735736847,-0.26664736866951]],[[0.024413522332907,-0.11035255342722,-0.05813605338335],[0.18244327604771,0.030454421415925,0.018331905826926],[0.039211481809616,-0.058672223240137,0.15964332222939]],[[-0.1096436008811,0.068433843553066,-0.012635924853384],[0.040931142866611,0.041878618299961,0.1321837157011],[-0.16717711091042,0.038814261555672,-0.04838627949357]],[[0.1164266616106,-0.043915998190641,-0.12137005478144],[0.00015350290050264,0.0058721620589495,-0.016744257882237],[-0.044694695621729,-0.0052988170646131,0.10851150751114]],[[0.085020452737808,-0.026711374521255,0.073225654661655],[0.015052345581353,-0.0014928466407582,-0.10210113227367],[-0.17000731825829,-0.19874666631222,0.10580579936504]],[[-0.01599271222949,0.062421031296253,0.0061371894553304],[-0.041339598596096,0.059763610363007,0.056920163333416],[-0.018839355558157,0.087804950773716,0.063877917826176]],[[0.019669122993946,0.048935629427433,0.11377102136612],[-0.043713144958019,0.046333596110344,0.0069812061265111],[-0.24821284413338,-0.10837585479021,-0.0035464181564748]],[[-0.052401948720217,0.052484914660454,-0.01924323104322],[-0.020388703793287,-0.049240089952946,0.0105493767187],[0.020895209163427,0.050676856189966,-0.020788211375475]],[[-0.083982229232788,-0.010996260680258,-0.061605282127857],[-0.17983524501324,-0.066185049712658,0.033892404288054],[-0.26768979430199,-0.2100185751915,0.001143820816651]],[[0.12857641279697,-0.2252534031868,-0.20094506442547],[0.26661026477814,0.018440816551447,-0.079413503408432],[0.14518702030182,0.045882854610682,-0.11281098425388]],[[0.023303078487515,-0.052223283797503,-0.036040227860212],[-0.022190952673554,0.11883710324764,0.0030791901517659],[0.20740437507629,-0.26711222529411,0.024361588060856]],[[-0.062723375856876,-0.11692944914103,-0.14674617350101],[0.041404247283936,-0.071362189948559,-0.064770020544529],[0.17914061248302,0.12542222440243,0.12256468087435]],[[-0.0011557794641703,0.11510761082172,0.026007765904069],[-0.070031620562077,0.0066863750107586,-0.082058474421501],[-0.16934084892273,0.058261338621378,0.029160052537918]],[[-0.074563302099705,-0.11829022318125,-0.13413941860199],[0.0081444699317217,0.018151516094804,-0.030792623758316],[0.010371840558946,0.073560044169426,-0.050828654319048]],[[0.085438683629036,0.063553765416145,0.052055671811104],[0.023350413888693,0.047975488007069,-0.076517947018147],[-0.11891669780016,-0.07468093931675,-0.11365774273872]],[[-0.079503603279591,0.018988905474544,-0.011537787504494],[0.013158325105906,-0.022040210664272,0.18685461580753],[-0.12499044835567,0.07363460958004,-0.061475608497858]],[[0.1291535794735,0.095918133854866,0.075744785368443],[0.092352598905563,0.21676898002625,-0.18462435901165],[0.057909801602364,0.073562353849411,0.18538270890713]],[[0.13508556783199,-0.17018465697765,-0.074549004435539],[0.050571616739035,0.10493405908346,-0.043084118515253],[-0.010786866769195,-0.052414733916521,-0.089501023292542]],[[-0.0578846745193,0.056171491742134,-0.018677597865462],[-0.17544764280319,0.06964997947216,0.12638406455517],[-0.058301195502281,0.059394400566816,-0.0030912559013814]],[[0.13066372275352,0.023916579782963,-0.059993740171194],[-0.11058764159679,-0.093345776200294,0.032426606863737],[0.066052243113518,-0.0064293621107936,-0.077068954706192]],[[-0.11517330259085,0.02499377168715,0.15531520545483],[-0.056912325322628,0.059108559042215,-0.055350419133902],[0.027101846411824,0.039184778928757,-0.033355232328176]]],[[[-0.075673297047615,-0.11934875696898,-0.19953337311745],[-0.029656739905477,0.017714517191052,-0.052754081785679],[-0.00023522638366558,-0.011053294874728,0.02206096239388]],[[-0.034446597099304,-0.20625519752502,-0.085798427462578],[-0.045483827590942,0.069387368857861,0.014811131171882],[0.041254036128521,0.13846391439438,0.074241638183594]],[[-0.048121582716703,-0.013761288486421,-0.068840645253658],[0.079018749296665,0.012541721574962,-0.096624344587326],[0.0050945528782904,-0.058594815433025,0.0059935045428574]],[[-0.050441950559616,-0.042708978056908,-0.039243690669537],[-0.084974773228168,0.062206625938416,-0.13003236055374],[0.046279959380627,-0.03270460665226,0.012055998668075]],[[0.012455522082746,-0.0046896617859602,-0.0039041887503117],[0.05561563000083,0.021202199161053,0.14438247680664],[0.019609626382589,-0.046682454645634,0.031932655721903]],[[0.05551915615797,0.088906027376652,0.016024202108383],[-0.030339339748025,-0.14907625317574,0.015149711631238],[-0.0045139635913074,-0.027170741930604,-0.12535905838013]],[[-0.12498211860657,-0.041769068688154,-0.146708548069],[-0.05123196169734,0.031450491398573,0.10197655111551],[0.043596010655165,0.028676401823759,0.040474865585566]],[[-0.0050476486794651,0.056897699832916,-0.01075093075633],[0.049923218786716,0.049833424389362,0.095449157059193],[0.065098077058792,-0.0061925859190524,0.01896870136261]],[[-0.051380895078182,0.14345110952854,-0.1484904140234],[-0.024305697530508,-0.045212842524052,-0.13053786754608],[0.060137026011944,0.008576137945056,0.068126507103443]],[[0.23160468041897,0.046829227358103,0.066208243370056],[-0.0510189011693,0.038918569684029,0.10072848945856],[0.032520536333323,0.1338939666748,0.19876137375832]],[[-0.052209682762623,-0.27736246585846,-0.1051684692502],[-0.12657655775547,0.0017557218670845,-0.020218070596457],[-0.025601282715797,0.064772427082062,-0.0091893896460533]],[[-0.0055605177767575,-0.15638381242752,-0.066300980746746],[-0.022802421823144,-0.013147166930139,-0.065099470317364],[0.047879911959171,-0.012449110858142,0.011279943399131]],[[0.0021737057249993,-0.05576203763485,0.057674068957567],[0.0060092057101429,0.054666306823492,-0.083844192326069],[0.059732865542173,-0.015674781054258,0.039718691259623]],[[0.089646808803082,0.011071210727096,0.11525690555573],[-0.032559636980295,0.0069371610879898,-0.0014839338837191],[-0.08091201633215,-0.094315029680729,-0.14747942984104]],[[0.0037830176297575,0.028945572674274,0.0053416001610458],[-0.01752551831305,0.040846392512321,0.024133140221238],[0.04556754976511,0.025146327912807,0.086072042584419]],[[0.039651531726122,0.035225078463554,0.0063662808388472],[-0.090705126523972,-0.057071316987276,-0.040113609284163],[-0.022399535402656,-0.080503322184086,0.049305282533169]],[[-0.031139202415943,0.019292324781418,0.056719705462456],[-0.042163301259279,-0.12419758737087,-0.018994143232703],[-0.030374029651284,0.025024127215147,-0.08368469029665]],[[0.062800034880638,-0.12280330806971,-0.0019880516920239],[-0.071119211614132,-0.055234897881746,-0.094594903290272],[0.0097802728414536,0.025526866316795,-0.034561950713396]],[[0.040900580585003,-0.098011299967766,0.016535034403205],[0.024474879726768,0.034917581826448,-0.0052668801508844],[0.012109291739762,-0.03504616394639,-0.013709105551243]],[[0.0014508003368974,-0.0075123701244593,-0.00065217015799135],[0.017671965062618,-0.15350338816643,-0.044179361313581],[-0.23780447244644,0.034812893718481,0.010392051190138]],[[0.057340789586306,-0.24831919372082,-0.16900683939457],[0.0074187102727592,-0.033746521919966,0.091818258166313],[0.0046233902685344,-0.064900927245617,0.22937433421612]],[[-0.087046235799789,-0.00035989572643302,-0.19688908755779],[0.1009192019701,-0.1351285725832,0.13117747008801],[0.10172886401415,0.13220852613449,0.088625960052013]],[[-0.19561184942722,-0.1368423551321,0.25719171762466],[0.051742233335972,0.041319862008095,0.02737564407289],[-0.030235921964049,0.053955063223839,-0.049449034035206]],[[-0.11594365537167,-0.0057847867719829,-0.063083425164223],[0.040428560227156,-0.023500954732299,-0.03992560133338],[-0.032268352806568,-0.065132029354572,-0.027555564418435]],[[-0.024964462965727,0.014150187373161,-0.0054278885945678],[-0.00030023764702491,0.10403586179018,-0.042310826480389],[-0.0095302360132337,-0.057863809168339,0.08518310636282]],[[0.044316470623016,-0.075212903320789,-0.036748185753822],[0.031156567856669,-0.014181753620505,-0.071587637066841],[0.03579680994153,0.063406087458134,-0.0090283956378698]],[[0.12529055774212,0.18111333250999,0.087593153119087],[-0.07018143683672,-0.049062877893448,-0.039369873702526],[-0.050100408494473,-0.15235278010368,-0.057316891849041]],[[0.19559824466705,0.0068778996355832,-0.043594539165497],[0.11503905802965,0.044495336711407,0.086873292922974],[-0.069982789456844,-0.018334120512009,0.14288625121117]],[[-0.047241758555174,-0.094683736562729,-0.015306157059968],[-0.13640956580639,-0.12850165367126,-0.012501975521445],[-0.041169811040163,0.024124516174197,0.064402371644974]],[[0.036139108240604,0.098826386034489,0.10073593258858],[0.042539689689875,-0.0081183733418584,-0.011238975450397],[-0.0084805684164166,-0.040080118924379,0.019648412242532]],[[-0.020310036838055,0.023731872439384,-0.021321732550859],[0.024285392835736,-0.042638517916203,0.047104828059673],[0.039687644690275,-0.018639434129,-0.035085931420326]],[[-0.050460699945688,-0.042070187628269,-0.047413174062967],[-0.019445097073913,0.011140224523842,-0.00089546613162383],[-0.0031978604383767,-0.094586655497551,-0.048079565167427]]],[[[-0.026497488841414,0.12763758003712,-0.041194181889296],[-0.040571756660938,-0.054072052240372,0.1109294295311],[-0.025755224749446,0.062777690589428,-0.039398144930601]],[[0.0015897061675787,0.00010412793199066,0.069459900259972],[-0.043929576873779,-0.052218079566956,-0.052065938711166],[0.044909816235304,0.070193156599998,0.0035237658303231]],[[0.033057376742363,-0.092590287327766,-0.038777805864811],[-0.096517272293568,-0.069762036204338,0.060530345886946],[-0.01616539247334,-0.041099220514297,-0.014082598499954]],[[0.10528156161308,0.073670156300068,-0.03773995116353],[-0.013289612717927,-0.25026908516884,-0.064740568399429],[-0.020434580743313,-0.063240237534046,0.034885734319687]],[[0.055284947156906,0.059554725885391,-0.0042597069405019],[-0.084419839084148,-0.059539292007685,-0.12950797379017],[0.095909774303436,0.086101651191711,-0.027144802734256]],[[0.027274005115032,-0.085008285939693,-0.15500816702843],[0.14000689983368,-0.049652367830276,0.057910431176424],[-0.044786497950554,0.020131448283792,-0.049485374242067]],[[-0.15584763884544,-0.042418781667948,0.01317173242569],[0.028076913207769,0.03205668181181,0.017499377951026],[-0.042066063731909,0.069049723446369,-0.025772076100111]],[[-0.053215708583593,0.023258704692125,0.0054145599715412],[0.036200780421495,-0.01295083668083,-0.062010049819946],[-0.034445714205503,-0.078723557293415,-0.071651093661785]],[[0.051875047385693,-0.0036678893957287,0.044111717492342],[0.053563043475151,-0.034655012190342,-0.026268335059285],[-0.090086847543716,0.048376902937889,-0.079712428152561]],[[0.00082813203334808,0.071929842233658,0.063634015619755],[-0.018492266535759,0.13180515170097,0.10720580816269],[0.17690972983837,0.057376883924007,0.099847503006458]],[[0.040394119918346,-0.035565327852964,-0.0061473315581679],[0.031270835548639,-0.0097566107288003,-0.011492921970785],[-0.13182003796101,0.078612335026264,0.057715933769941]],[[0.049729097634554,-0.068796880543232,0.082257397472858],[-0.013689430430532,-0.024615548551083,0.10617011785507],[0.05939207971096,0.052469093352556,-0.017455702647567]],[[0.13006004691124,-0.074567817151546,-0.12254454195499],[-0.17097839713097,0.014640871435404,-0.067866452038288],[0.037336841225624,0.082605615258217,-0.21221725642681]],[[0.11982997506857,0.036593563854694,0.0056460564956069],[0.24251963198185,-0.23007625341415,0.034768469631672],[0.17658188939095,-0.32455059885979,-0.18058589100838]],[[0.043529871851206,-0.045431721955538,0.022484946995974],[-0.026356503367424,0.071776986122131,-0.098551049828529],[0.21683409810066,-0.067701034247875,0.0058014686219394]],[[0.011579449288547,0.051981922239065,0.028173832222819],[0.016602259129286,0.064354427158833,-0.0075754942372441],[-0.11637612432241,-0.15716187655926,0.073723994195461]],[[0.099729858338833,-0.030096197500825,-0.037163365632296],[-0.028035923838615,-0.11477437615395,-0.095283754169941],[0.10113530606031,-0.15293921530247,-0.027441306039691]],[[0.045283939689398,0.13453114032745,0.080535054206848],[0.0045121209695935,-0.010946628637612,-0.062227722257376],[0.016939304769039,0.064912758767605,-0.16527457535267]],[[-0.1246052980423,-0.061045981943607,-0.017389794811606],[-0.0066662328317761,-0.085028849542141,0.028546517714858],[-0.055011838674545,-0.083735570311546,0.0482466109097]],[[-0.0019322743173689,0.055041141808033,-0.010761855170131],[0.069390438497066,-0.074807122349739,0.0056741875596344],[0.072197072207928,0.046124998480082,-0.053327657282352]],[[0.22570389509201,0.037357911467552,-0.012394107878208],[-0.088224001228809,-0.097607709467411,0.082746759057045],[-0.0642109811306,0.00069038080982864,0.032863322645426]],[[0.027822364121675,0.17076094448566,-0.028440721333027],[0.20525765419006,0.024548228830099,0.070367202162743],[0.072637304663658,0.0027095775585622,-0.010632368735969]],[[-0.026847880333662,-0.0077900164760649,-0.0045443172566593],[-0.0099964663386345,0.21584551036358,-0.0042747529223561],[-0.099079921841621,0.089838176965714,-0.24365586042404]],[[0.13412928581238,-0.19857513904572,0.018419414758682],[-0.065592631697655,-0.11781047284603,0.078166007995605],[0.14322601258755,0.079976066946983,0.010338292457163]],[[-0.016681985929608,0.03667725995183,0.065783880650997],[-0.14769640564919,-0.061580430716276,-0.049633622169495],[-0.19918598234653,0.091283604502678,0.11852097511292]],[[-0.024944921955466,0.0051209940575063,-0.043359450995922],[0.17939184606075,0.033005431294441,0.076463714241982],[-0.0087012071162462,-0.017554573714733,-0.05809311568737]],[[0.051803935319185,-0.059261627495289,-0.03190479055047],[0.014417857863009,0.057851046323776,-0.067295968532562],[-0.040957659482956,0.13856483995914,-0.084662914276123]],[[-0.025330418720841,0.051716350018978,0.025701927021146],[0.037890888750553,-0.045130703598261,0.045952256768942],[-0.10481584072113,0.21007581055164,0.11856054514647]],[[0.0070297163911164,-0.068219289183617,0.092808172106743],[0.040796380490065,0.017737347632647,-0.12409242987633],[-0.061947830021381,0.071472227573395,-0.11567984521389]],[[-0.016981149092317,0.0079096741974354,-0.01826530136168],[0.1844460517168,0.0034640103112906,-0.033183701336384],[-0.036232482641935,-0.052870508283377,-0.043161232024431]],[[-0.033106151968241,7.3240480560344e-05,-0.010404312051833],[-0.011629877611995,0.0099986363202333,-0.15168282389641],[-0.054130483418703,0.037297874689102,0.086988776922226]],[[-0.062446184456348,-0.043292131274939,0.0061900177970529],[-0.10405676066875,0.021630255505443,-0.10015524923801],[-0.0039461236447096,-0.04045257344842,-0.046589426696301]]],[[[-0.08134338259697,-0.057573810219765,-0.15143989026546],[-0.007564727216959,-0.065095782279968,-0.18746209144592],[0.038261823356152,-0.0028333659283817,-0.045931868255138]],[[-0.014963461086154,0.054713729768991,0.04594375193119],[-0.0023929704912007,0.042439505457878,-0.049166556447744],[0.046022538095713,0.005852812435478,0.0023495482746512]],[[0.038300655782223,0.021694088354707,0.025879565626383],[0.019883500412107,-0.0056045986711979,-0.080758698284626],[-0.091026112437248,0.016466982662678,0.064055494964123]],[[0.031362235546112,-0.20224913954735,-0.08755886554718],[-0.010477725416422,-0.12512890994549,0.075891368091106],[0.065921038389206,0.063505634665489,0.024215810000896]],[[0.036117825657129,-0.0053737638518214,-0.050992697477341],[-0.012147801928222,0.084376566112041,0.10781203210354],[0.036563608795404,-0.024527529254556,0.088150776922703]],[[-0.038650933653116,0.0064333286136389,-0.040531639009714],[-0.0016468089306727,0.025992272421718,0.02285273373127],[-0.039464697241783,0.10410556942225,-0.12646982073784]],[[0.037183023989201,-0.079056546092033,0.022171525284648],[0.089214436709881,0.027048792690039,-0.043661821633577],[0.016954086720943,0.089434750378132,-0.027940087020397]],[[-0.043863821774721,-0.016671119257808,0.081081353127956],[0.053531933575869,0.0059516839683056,0.19262136518955],[0.09335657954216,-0.1484100818634,-0.016965759918094]],[[0.019324190914631,-0.024259947240353,-0.050958584994078],[0.025445781648159,0.058655686676502,0.012844124808908],[-0.11274615675211,0.098558619618416,0.092284239828587]],[[-0.055594984441996,0.095653235912323,0.011144590564072],[-0.011452442035079,-0.016962014138699,-0.10821319371462],[-0.031954795122147,0.0057421554811299,0.05008539929986]],[[0.1488232165575,-0.055494409054518,-0.064085245132446],[-0.2161813378334,0.2180261015892,0.0037405644543469],[-0.13881292939186,0.16005890071392,-0.11563954502344]],[[-0.01325435936451,-0.073062159121037,0.0013231387129053],[0.010167021304369,0.091095328330994,0.0064442013390362],[-0.10778187960386,0.074486188590527,0.1428562104702]],[[-0.089991688728333,0.0062830154784024,0.046483598649502],[0.040506940335035,-0.056577138602734,-0.0014672240940854],[0.011965283192694,0.071685269474983,0.092239044606686]],[[-0.06445349752903,0.12459808588028,-0.018084680661559],[0.0712890625,-0.16671149432659,0.007423906121403],[-0.10838338732719,0.13949696719646,-0.10784029215574]],[[0.020167304202914,-0.031936123967171,0.085202626883984],[-0.013263227418065,-0.048022091388702,-0.033604484051466],[0.043947674334049,0.010267528705299,0.059913601726294]],[[-0.063206106424332,0.071148291230202,-0.18471424281597],[0.063108541071415,-0.025375140830874,-0.031008761376143],[0.090948097407818,0.067962259054184,-0.017542576417327]],[[0.02461282722652,0.09411184489727,-0.018422866240144],[0.0012862867442891,-0.016159126535058,-0.085916347801685],[0.0084868529811502,-0.1248093098402,0.021315310150385]],[[0.059438243508339,0.022511342540383,0.0015474802348763],[0.027728468179703,0.02395716868341,-0.039623375982046],[-0.016830133274198,0.030195791274309,-0.12430914491415]],[[0.013784784823656,-0.038298729807138,-0.052526596933603],[-0.020477462559938,-0.0058057238347828,0.080419152975082],[0.068622760474682,0.06218820437789,0.085631541907787]],[[0.047362305223942,-0.0083482433110476,0.063483521342278],[-0.066589348018169,-0.042280122637749,-0.035443842411041],[-0.060073845088482,-0.14087115228176,-0.29983827471733]],[[-0.011517687700689,-0.058710228651762,-0.023265991359949],[0.080053202807903,0.027610072866082,-0.11169503629208],[-0.016726419329643,0.040315181016922,0.017428478226066]],[[0.039480373263359,-0.051523592323065,-0.016487848013639],[-0.032410915941,0.077183768153191,0.022724602371454],[0.011916188523173,-0.049548763781786,0.087361507117748]],[[-0.13010460138321,0.099387317895889,-0.26466912031174],[-0.11472592502832,-0.020154600962996,0.040073003619909],[-0.062343440949917,0.1675777733326,-0.02816441655159]],[[0.0604432746768,-0.0048255189321935,0.095737248659134],[-0.090326525270939,-0.020654926076531,0.040443010628223],[-0.028957489877939,0.052639216184616,0.016744870692492]],[[0.06214252486825,0.06049332767725,-0.071160435676575],[0.11857310682535,0.12760874629021,0.036318767815828],[0.071273036301136,0.13413482904434,-0.028153905645013]],[[-0.032583460211754,0.07125086337328,-0.024324664846063],[0.053403686732054,0.069652453064919,-0.027429094538093],[0.053966715931892,0.018532253801823,-0.044937487691641]],[[-0.00024665161618032,0.10674097388983,0.16423797607422],[-0.11168161779642,-0.03134923428297,0.13757316768169],[-0.078158058226109,-0.0083579467609525,-0.0040372335352004]],[[-0.090326264500618,0.15849362313747,-0.073335044085979],[-0.047550518065691,0.10298290848732,0.033264011144638],[-0.065211780369282,0.14234639704227,-0.015599728561938]],[[0.0090590314939618,0.02706097625196,-0.053598795086145],[0.037663716822863,-0.11056411266327,0.042967237532139],[0.0026527636218816,0.0092010507360101,0.081043750047684]],[[-0.046669952571392,-0.022917903959751,0.026519825682044],[0.080800861120224,-0.099019400775433,0.091085709631443],[-0.041140459477901,-0.029168682172894,0.11992906033993]],[[0.09191869199276,0.080711759626865,-0.099167019128799],[0.049221932888031,0.046285435557365,0.051709972321987],[0.027994826436043,-0.087828628718853,-0.005996264051646]],[[0.027796601876616,0.10211232304573,0.004330990370363],[0.02946382202208,-0.17608031630516,-0.0059897168539464],[0.0010318078566343,0.0036706051323563,0.018475895747542]]],[[[0.038073487579823,0.025125673040748,0.10883037745953],[0.033838365226984,-0.15962882339954,-0.11679348349571],[0.028006684035063,-0.064024575054646,0.0094966161996126]],[[0.030976634472609,-0.044539250433445,0.035817239433527],[0.0075879581272602,0.034897617995739,-0.04613247141242],[-0.011241249740124,-0.021983271464705,0.0007135474588722]],[[0.14716666936874,0.15440315008163,0.0080403126776218],[-0.019602037966251,0.057254541665316,-0.090155087411404],[-0.16177879273891,-0.082756891846657,0.066756032407284]],[[0.060629781335592,0.15629911422729,0.01114659756422],[0.075352162122726,0.11703477054834,-0.14056773483753],[-0.015125653706491,-0.1469791084528,-0.15853506326675]],[[-0.029111431911588,0.055769260972738,-0.0015635560266674],[-0.072464168071747,0.035914193838835,0.11934247612953],[0.067974358797073,-0.059019468724728,-0.017586441710591]],[[-0.086069762706757,-0.067373424768448,-0.0077699823305011],[0.076116092503071,0.12403997033834,0.11951854079962],[0.033510930836201,-0.079371199011803,-0.28111982345581]],[[0.021221917122602,0.043808307498693,0.04962470009923],[-0.21970736980438,-0.0082924300804734,0.059798397123814],[0.042590297758579,0.16703233122826,-0.015711717307568]],[[0.0018605567747727,-0.025728672742844,-0.072102122008801],[-0.022157322615385,-0.098478294909,-0.14861956238747],[-0.15735232830048,-0.16491028666496,-0.015083013102412]],[[0.16849593818188,0.0079144285991788,-0.045462165027857],[0.0063279713504016,-0.023380532860756,-0.10499372333288],[-0.053144071251154,-0.11883189529181,-0.088419705629349]],[[0.038015332072973,0.087823234498501,0.096800461411476],[0.01336007937789,0.077683359384537,0.073151938617229],[-0.051658488810062,-0.092615500092506,-0.080555714666843]],[[0.16770330071449,0.12780104577541,0.20564748346806],[0.073524698615074,-0.055168606340885,0.0021322201937437],[-0.10952795296907,0.0058689904399216,-0.33450254797935]],[[0.096057385206223,0.10640260577202,0.027453117072582],[0.066388621926308,0.034946020692587,-0.01290176436305],[0.028926536440849,-0.034210037440062,-0.086938001215458]],[[0.1900419741869,0.0030778769869357,0.082078129053116],[0.071378290653229,0.11018515378237,-0.081458620727062],[-0.038047779351473,-0.12234257161617,-0.00018255948089063]],[[-0.049907110631466,0.12030272930861,0.0075824577361345],[0.091530598700047,0.022255243733525,-0.07220259308815],[0.15269008278847,-0.17497466504574,-0.21155898272991]],[[-0.0090938452631235,-0.023684531450272,0.025870261713862],[-0.10015077888966,-0.10997415333986,0.057794410735369],[-0.12031500041485,-0.067332789301872,0.078684717416763]],[[-0.0013955758186057,0.030614430084825,0.063408404588699],[0.19420917332172,0.16441734135151,0.014537459239364],[0.098086230456829,0.0015551346587017,0.03506363928318]],[[0.094500474631786,0.080031901597977,-0.01920104585588],[0.074672490358353,-0.036999739706516,-0.062458962202072],[-0.075206413865089,-0.078333608806133,0.11233505606651]],[[0.12923903763294,0.057437215000391,-0.10569036006927],[0.034331273287535,-0.050544772297144,-0.010981821455061],[0.075588978827,-0.11352855712175,0.23963236808777]],[[0.0027867492754012,0.046691011637449,-0.15147642791271],[0.080668888986111,0.14372366666794,-0.06394100189209],[0.057062372565269,-0.0066072070039809,-0.061105377972126]],[[-0.012108461000025,-0.10787098109722,-0.058915894478559],[0.028041137382388,-0.11544834822416,0.011686240322888],[0.016371427103877,0.075589671730995,0.04493897035718]],[[-0.016046427190304,0.097693249583244,0.1827485114336],[0.097950890660286,0.011274766176939,-0.075400643050671],[-0.092439331114292,-0.18158929049969,-0.2816074192524]],[[0.1825008392334,0.063848443329334,0.11543870717287],[0.15126593410969,0.003916303627193,-0.057814188301563],[0.10469767451286,-0.16867159307003,-0.11940305680037]],[[0.13786292076111,-0.015025284141302,0.15684708952904],[0.092040315270424,-0.17225649952888,0.18301460146904],[0.15616239607334,0.045070730149746,-0.0063270865939558]],[[-0.047113034874201,-0.018123568966985,-0.032591838389635],[-0.034784570336342,-0.018917568027973,0.156623005867],[0.091150388121605,0.078433461487293,0.13270902633667]],[[0.059541791677475,-0.13420528173447,0.057103119790554],[-0.096268646419048,-0.016015017405152,-0.19709184765816],[-0.056872140616179,-0.23301415145397,-0.17434778809547]],[[0.017815319821239,0.089236788451672,-0.066209368407726],[-0.019254984334111,-0.044303983449936,-0.068385168910027],[0.074011400341988,0.090266712009907,0.074202217161655]],[[-0.11283056437969,-0.12329080700874,-0.027621624991298],[0.04490489512682,-0.0037705218419433,0.075043082237244],[0.03970567509532,0.099313445389271,0.024064254015684]],[[0.090867199003696,0.082733176648617,0.16573061048985],[0.134231954813,0.19812768697739,0.076649449765682],[0.05301870778203,-0.1845155954361,-0.25723779201508]],[[-0.016151946038008,0.12796191871166,0.10554195195436],[0.084315828979015,0.073046982288361,0.056220903992653],[0.12698216736317,-0.0020900713279843,-0.22179552912712]],[[-0.053938038647175,-0.013609420508146,-0.13643765449524],[0.081488445401192,0.052699267864227,-0.029636701568961],[0.0027042569126934,-0.084279015660286,0.0020205995533615]],[[-0.11192229390144,-0.041782889515162,0.028010534122586],[-0.1961432248354,-0.032630827277899,0.14497604966164],[0.17080223560333,0.0113331284374,0.12024330347776]],[[0.048128888010979,0.060410123318434,-0.009382264688611],[0.053744595497847,-0.070604883134365,0.10641015321016],[0.049348939210176,0.14019818603992,0.11752197891474]]],[[[-0.083122551441193,0.052326511591673,0.1229262650013],[0.012213498353958,0.16039337217808,0.00080823508324102],[0.033927168697119,0.013939647935331,-0.013570735231042]],[[-0.0075229527428746,-0.025806160643697,0.054811105132103],[-0.013601738959551,-0.018090154975653,-0.043174404650927],[0.055431708693504,0.053294818848372,-0.054787516593933]],[[0.15029700100422,0.019059263169765,-0.0065581793896854],[-0.15327805280685,0.018662234768271,-0.072782538831234],[0.094049260020256,-0.026060471311212,-0.021473612636328]],[[0.10903100669384,-0.087714068591595,-0.0063360752537847],[0.071748442947865,0.0386325083673,0.047152981162071],[0.023434156551957,-0.012348770163953,-0.057359762489796]],[[0.036386795341969,0.042748551815748,-0.041582964360714],[0.016842506825924,0.070833556354046,-0.042853832244873],[-0.019841346889734,-0.019057117402554,-0.05505683645606]],[[0.013797852210701,-0.22719199955463,-0.16515406966209],[-0.064256355166435,-0.053931679576635,0.0050556119531393],[-0.017173321917653,0.14522039890289,0.01324949786067]],[[-0.035031214356422,0.059568904340267,0.00018791019101627],[0.0092253545299172,0.051198370754719,-0.069204144179821],[-0.013711475767195,-0.069591656327248,-0.12865681946278]],[[0.0039785979315639,-0.023174988105893,-0.0050861248746514],[-0.15875123441219,0.12730477750301,-0.029654361307621],[-0.040009222924709,-0.021874440833926,0.0022149533033371]],[[-0.03471540287137,0.13776545226574,0.11244936287403],[-0.10018247365952,0.072089821100235,-0.11698804050684],[0.011147098615766,-0.081136085093021,-0.11466887593269]],[[0.066293194890022,0.043975558131933,-0.072482608258724],[-0.082537934184074,0.014516603201628,-0.14086829125881],[0.16223740577698,-0.11005941778421,-0.048222672194242]],[[0.17304809391499,0.014962723478675,0.13355901837349],[0.084941059350967,0.015557670034468,-0.070650890469551],[-0.027941033244133,-0.044853683561087,-0.082384720444679]],[[0.11061555147171,0.0029748044908047,0.10751657932997],[0.014437540434301,0.12522667646408,0.041928123682737],[0.029561288654804,-0.05332050845027,-0.20512360334396]],[[-0.0069047519937158,0.12733076512814,-0.17207489907742],[0.10414978116751,0.039492692798376,-0.13419066369534],[-0.12233432382345,-0.032159212976694,-0.064150139689445]],[[-0.1533535271883,-0.18098670244217,-0.033048495650291],[-0.081103220582008,-0.0072270296514034,0.31426432728767],[0.10564205050468,0.085331842303276,0.14802034199238]],[[0.043329395353794,-0.18832959234715,0.044273901730776],[-0.20258346199989,0.043084189295769,0.10898733139038],[-0.035633075982332,-0.14472962915897,-0.034855559468269]],[[-0.083311133086681,0.024009019136429,0.10326908528805],[0.059084355831146,-0.1201106980443,0.051286049187183],[0.031208710744977,0.16115605831146,-0.0025442731566727]],[[-0.1288345605135,-0.31862425804138,-0.16857625544071],[-0.098894849419594,0.032898440957069,0.15423727035522],[0.049751259386539,0.067417249083519,0.23191785812378]],[[-0.066481031477451,-0.11652785539627,-0.078232437372208],[0.11485781520605,-0.020918965339661,0.17675054073334],[-0.031961761415005,-0.0089167766273022,-0.035048820078373]],[[-0.038466703146696,-0.052184734493494,0.051551051437855],[-0.21079559624195,0.025819608941674,-0.024565944448113],[0.035718165338039,0.065301030874252,-0.010968491435051]],[[0.023858278989792,-0.098826512694359,-0.041884023696184],[-0.15255285799503,-0.031557749956846,0.0094212749972939],[-0.11208492517471,-0.022247148677707,-0.01375385094434]],[[-0.056310299783945,0.10274346917868,0.025519762188196],[0.11006868630648,0.13426478207111,-0.037968516349792],[0.066215790808201,0.1128269135952,0.01125880330801]],[[0.099793799221516,0.0027012526988983,0.37540969252586],[0.05182333663106,-0.042399827390909,-0.021298775449395],[-0.15422238409519,-0.12940150499344,0.042106356471777]],[[0.068393565714359,0.070742011070251,0.035428203642368],[0.055542595684528,-0.094514325261116,-0.01424349937588],[0.13617794215679,-0.061417352408171,-0.035210888832808]],[[-0.11595235019922,0.075426526367664,-0.023470060899854],[0.071198426187038,0.11687365174294,-0.021706094965339],[0.0033927711192518,0.019657308235765,0.00295819202438]],[[0.015774611383677,0.0011248051887378,0.16449193656445],[-0.13652603328228,-0.088870249688625,0.082366563379765],[-0.12510497868061,-0.045910246670246,-0.21536609530449]],[[0.034727606922388,0.11563396453857,-0.069765657186508],[0.048160720616579,-0.10828579962254,-0.10646179318428],[-0.042003706097603,-0.041398201137781,0.030859254300594]],[[-0.038012653589249,-0.034347806125879,-0.075993403792381],[0.0060207173228264,0.00040618615457788,0.1037867218256],[0.01796361990273,0.0059768655337393,0.018605710938573]],[[-0.070094935595989,0.049546085298061,0.054041102528572],[-0.030853686854243,0.1061357408762,0.11668082326651],[0.025816844776273,0.10491268336773,-0.14777970314026]],[[0.027214847505093,-0.12849414348602,-0.08368194848299],[0.15049254894257,-0.099696360528469,-0.067685924470425],[0.18108385801315,0.087677426636219,0.0057967402972281]],[[0.020588785409927,-0.04830875992775,-0.081097364425659],[-0.056936129927635,0.061313278973103,0.063623607158661],[0.087782062590122,-0.082789018750191,-0.043031569570303]],[[0.14110040664673,0.052274234592915,-0.015432597137988],[-0.052149217575788,0.15679748356342,-0.076167941093445],[0.033460278064013,0.054578043520451,-0.12672705948353]],[[-0.19010522961617,0.086151905357838,0.065409861505032],[-0.028652545064688,-0.079655930399895,0.040157929062843],[0.032927423715591,0.024127878248692,0.071272201836109]]],[[[-0.056909706443548,-0.023540651425719,0.0051736189052463],[-0.0044584409333766,-0.053955122828484,-0.013736321590841],[0.051065009087324,0.022873163223267,0.1445235311985]],[[-0.0026361029595137,-0.011478394269943,-0.055405080318451],[-0.10500269383192,0.065213441848755,0.059496618807316],[-0.0063824472017586,0.023894503712654,0.064297899603844]],[[0.00081910582957789,-0.044947970658541,-0.03541399538517],[-0.13552747666836,0.10966839641333,0.13301949203014],[0.017888106405735,0.10535273700953,0.069281220436096]],[[-0.031844705343246,0.075925379991531,-0.06529550999403],[-0.023234626278281,0.0042539434507489,0.047907508909702],[-0.033879473805428,0.10230238735676,0.10072907805443]],[[0.0011971782660112,-0.017164766788483,0.055570833384991],[-0.08731933683157,0.10022208094597,-0.0041315415874124],[-0.04165244102478,-0.0070558628067374,-0.01062076818198]],[[0.28786158561707,-0.031180763617158,0.13810288906097],[0.050318241119385,0.077451154589653,0.1234926879406],[-0.0083856731653214,0.055923692882061,-0.041263096034527]],[[-0.1443782299757,-0.14335153996944,0.053189776837826],[-0.022947609424591,-0.06257937848568,-0.12083525955677],[-0.1180295497179,0.040610335767269,-0.031926199793816]],[[0.037030413746834,0.025285674259067,0.094630271196365],[-0.07642287760973,0.061703190207481,0.040033847093582],[-0.025325134396553,0.039449747651815,0.04343293607235]],[[0.084615118801594,0.095680415630341,0.0086450995877385],[-0.15581086277962,-0.12293119728565,0.081302866339684],[-0.15962943434715,-0.029071087017655,0.11544232070446]],[[-0.045849278569221,0.10876057296991,0.1630916595459],[-0.018673317506909,0.22023215889931,0.2163370847702],[0.043014008551836,0.19150529801846,0.38993358612061]],[[-0.15994833409786,0.13057923316956,0.083603791892529],[-0.22178460657597,-0.0009038599091582,0.0043291756883264],[0.070610739290714,0.048053722828627,0.13423250615597]],[[0.050800990313292,0.10474006086588,-0.0060405801050365],[0.068001851439476,0.017102461308241,-0.11591161042452],[-0.0010327666532248,-0.05665710568428,0.049895238131285]],[[-0.038892477750778,0.067060254514217,0.11900001764297],[-0.020349625498056,0.03291292116046,0.034837912768126],[-0.1188689917326,-0.045368954539299,-0.022230314090848]],[[0.043902602046728,0.06658524274826,0.067771412432194],[-0.011793460696936,0.13681054115295,-0.011861329898238],[0.055687755346298,-0.0076710395514965,-0.35573735833168]],[[0.0094838999211788,-0.035476934164762,0.04376257583499],[-0.041064735502005,0.093886755406857,0.12062605470419],[-0.037376884371042,0.023377314209938,-0.050309550017118]],[[0.073344923555851,0.08421079069376,-0.046820309013128],[0.12002357840538,-0.1521343588829,0.034899208694696],[-0.03003772161901,-0.054658081382513,0.0712501257658]],[[0.14666666090488,-0.049907322973013,0.17986443638802],[0.010479682125151,0.079164378345013,0.038193885236979],[-0.15121629834175,-0.06214427575469,0.011205263435841]],[[0.0087087051942945,0.055424578487873,-0.022159719839692],[-0.085434779524803,-0.15108473598957,-0.071098610758781],[0.10503989458084,-0.1082848906517,-0.096228159964085]],[[-0.0090917330235243,0.1508656591177,0.0030981753952801],[-0.15875041484833,0.024948723614216,0.11141856759787],[-0.12930180132389,-0.11750894039869,0.05963334441185]],[[0.071238860487938,0.063963539898396,0.07622417062521],[0.060592915862799,-0.066913485527039,-0.032555762678385],[0.071184270083904,0.098375469446182,0.040378142148256]],[[0.12866850197315,0.01044731028378,0.0070915743708611],[-0.22844734787941,0.071042723953724,0.25491583347321],[-0.13319201767445,0.047902386635542,0.22206482291222]],[[-0.24977964162827,0.029081350192428,0.19387285411358],[0.01600131765008,-0.060519989579916,0.11284423619509],[0.038860771805048,0.058713909238577,0.12003932148218]],[[0.027513820677996,-0.016868745908141,0.03341206908226],[-0.11206558346748,0.15798042714596,-0.054973822087049],[-0.056069061160088,0.048862021416426,0.088618360459805]],[[-0.041111208498478,0.099859476089478,0.030923483893275],[-0.11366970837116,-0.053426194936037,0.028142247349024],[-0.030547300353646,0.054636389017105,-0.09468137472868]],[[0.054336965084076,0.028331279754639,-0.052858520299196],[0.19114013016224,-0.0020206337794662,-0.085749067366123],[0.069439917802811,-0.017520880326629,-0.065431281924248]],[[0.011493305675685,-0.022651024162769,-0.049397129565477],[0.010181646794081,0.019268091768026,0.082561001181602],[-0.023456459864974,-0.006735750939697,-0.04006738960743]],[[0.028310170397162,0.068137302994728,0.07922674715519],[0.060922361910343,-0.044099893420935,-0.070090889930725],[0.018288286402822,-0.0083700530230999,-0.10394090414047]],[[-0.12406539171934,0.17348182201385,0.057125587016344],[-0.1334770321846,-0.056899126619101,0.068292044103146],[0.094860419631004,0.052732843905687,0.2217766046524]],[[0.034846004098654,0.0022105388343334,0.05690485984087],[0.067445151507854,-0.044317189604044,-0.21995909512043],[-0.0043569365516305,0.02016176469624,-0.098549477756023]],[[0.046132683753967,-0.048524223268032,0.086702428758144],[-0.03877280279994,-0.073056451976299,-0.094900391995907],[-0.050090871751308,0.01218462176621,0.055901613086462]],[[-0.086476258933544,-0.072671264410019,0.057785414159298],[-0.1784110814333,0.002517179120332,-1.8994927813765e-05],[-0.16582685709,-0.023886755108833,0.012307391501963]],[[0.030988957732916,-0.065211556851864,-0.0046210698783398],[-0.064587958157063,-0.010200756601989,-0.1306032538414],[-0.017985871061683,-0.092329360544682,-0.26611429452896]]],[[[-0.055270675569773,0.099243938922882,0.018108205869794],[0.035043220967054,-0.073672533035278,0.063181340694427],[0.0086549082770944,-0.045077182352543,0.022297924384475]],[[-0.0083555588498712,-0.10388116538525,0.063910230994225],[0.18054197728634,0.20979437232018,-0.041704200208187],[-0.06744097918272,0.049701724201441,-0.048983756452799]],[[-0.088905997574329,-0.0047116321511567,-0.11184245347977],[0.051881819963455,-0.048563044518232,-0.064657531678677],[0.039801016449928,-0.18350237607956,0.026215890422463]],[[0.030649913474917,-0.026325115934014,0.099228069186211],[0.10848069190979,-0.044994618743658,-0.012315728701651],[0.028603654354811,-0.090800136327744,-0.0041864695958793]],[[-0.083170332014561,0.019230488687754,-0.052176278084517],[-0.090975560247898,-0.058008510619402,-0.10452104359865],[-0.18221396207809,-0.12434855848551,-0.15594227612019]],[[0.03135384991765,0.1584946513176,-0.10705257952213],[-0.03783342987299,0.0044037294574082,0.041366547346115],[-0.011076716706157,-0.064409270882607,0.022149050608277]],[[0.015654800459743,0.12856394052505,0.061718247830868],[-0.014845895580947,-0.036392740905285,0.010020833462477],[0.067924164235592,0.083363644778728,0.022767156362534]],[[-0.027944600209594,0.038836516439915,-0.0043021216988564],[0.041699573397636,-0.029727084562182,0.043082349002361],[-0.024835566058755,0.033806197345257,0.10550107806921]],[[-0.072127178311348,0.098335348069668,-0.043545000255108],[0.080123387277126,-0.056433320045471,-0.001556771225296],[0.014442447572947,0.02379959449172,-0.040064230561256]],[[0.020048066973686,-0.088787697255611,-0.0048443544656038],[-0.056892648339272,0.083747275173664,-0.054737187922001],[0.053759027272463,0.069892801344395,-0.059239145368338]],[[-0.024453474208713,0.0029372945427895,0.14328624308109],[-0.02977984957397,-0.037069603800774,-0.00019318894192111],[0.085318088531494,0.036617085337639,-0.10063134878874]],[[-0.10741018503904,-0.057201970368624,0.014298691414297],[-0.032082907855511,0.06845036894083,0.023969732224941],[-0.10661619901657,-0.084040120244026,0.019687294960022]],[[0.035080410540104,0.13008072972298,0.061965335160494],[0.090600073337555,-0.047524325549603,-0.063032358884811],[0.023104809224606,0.070159584283829,-0.0011295201256871]],[[-0.069147795438766,0.11826393008232,0.04046144336462],[0.016430826857686,0.17983478307724,0.1288741081953],[0.094267509877682,-0.062487579882145,-0.03615802526474]],[[-0.1947695761919,-0.010389781557024,-0.029922308400273],[-5.9541907830862e-05,0.12157112360001,0.099422059953213],[0.0023716224823147,-0.0078855464234948,-0.053411245346069]],[[0.036051526665688,0.089335210621357,-0.027803655713797],[-0.026329701766372,0.023853722959757,0.1354918628931],[-0.052885599434376,-0.06615424156189,-0.002262465422973]],[[0.04122407361865,-0.084759414196014,-0.0022481954656541],[-0.022116988897324,-0.021603994071484,0.044683795422316],[0.048236317932606,0.11022155731916,0.030015425756574]],[[-0.039055544883013,0.13183052837849,-0.010373996570706],[-0.0053778393194079,0.024743854999542,0.0072417627088726],[0.0094286715611815,0.022006791085005,0.13143816590309]],[[-0.0044934959150851,0.017698271200061,0.12851914763451],[0.0076718423515558,0.0026205002795905,-0.029122926294804],[-0.083682551980019,0.076197862625122,-0.013799143955112]],[[0.06870786100626,-0.054716449230909,0.0042895977385342],[-0.044219732284546,0.024387087672949,0.033133111894131],[0.01113364379853,0.11192415654659,0.00019190233433619]],[[0.11756247282028,0.071857668459415,-0.088609866797924],[0.0077890828251839,0.025481212884188,0.085548356175423],[-0.05177028849721,-0.071983829140663,-0.14440003037453]],[[0.0016579647781327,-0.053244642913342,-0.03142112866044],[-0.049214612692595,0.048066038638353,0.074814163148403],[-0.040008407086134,0.032258581370115,-0.037476528435946]],[[-0.023382226005197,-0.032859664410353,0.18537598848343],[0.060739122331142,0.011751959100366,0.080942459404469],[-0.025702062994242,-0.0031112018041313,0.023046152666211]],[[0.10683236271143,0.0082912538200617,-0.047424245625734],[0.050058346241713,0.029699629172683,0.038215458393097],[0.015499974600971,0.026173204183578,0.01833070255816]],[[0.019307592883706,0.035495419055223,0.091384395956993],[0.057945571839809,-0.056088156998158,0.19805872440338],[-0.019840959459543,-0.084340885281563,0.12618637084961]],[[0.11641582101583,-0.022251753136516,-0.10025297105312],[0.020304478704929,-0.0015513098333031,0.061673179268837],[0.063194133341312,-0.040130417793989,-0.00086410832591355]],[[0.075827389955521,0.021002704277635,-0.01822055503726],[-0.022703403607011,0.019758826121688,0.011959880590439],[-0.043197598308325,0.034799445420504,-0.033438429236412]],[[-0.031149240210652,-0.032671552151442,-0.019392678514123],[-0.02657070569694,-0.0046700784005225,-0.067972883582115],[0.01191771030426,0.13560159504414,-0.068354852497578]],[[0.14133776724339,-0.0044945445843041,0.12013195455074],[0.020262500271201,-0.017913026735187,-0.0014682260807604],[0.066297918558121,-0.019954552873969,0.08105530589819]],[[0.030196394771338,-0.0071943835355341,0.081160984933376],[0.035758044570684,0.0037583659868687,-0.02609496936202],[0.080933839082718,0.028753731399775,-0.071423314511776]],[[0.057555202394724,0.037309650331736,0.13230484724045],[-0.052095644176006,-0.1492070555687,0.0089097218587995],[0.057641811668873,0.044153358787298,-0.042891662567854]],[[-0.012949537485838,0.11598192900419,0.070062145590782],[-0.0040150373242795,0.011380871757865,-0.0023461515083909],[0.031714051961899,-0.021095203235745,-0.0044866255484521]]],[[[-0.11131881177425,-0.089208170771599,0.014532038010657],[-0.026366712525487,-0.09841176122427,-0.035934995859861],[-0.09096447378397,-0.077952712774277,-0.032594405114651]],[[0.091741599142551,-0.080245770514011,-0.029395643621683],[-0.10836335271597,0.050623141229153,-0.058854911476374],[0.069455713033676,-0.038735643029213,0.10421069711447]],[[-0.11796382069588,0.12263848632574,0.12794880568981],[0.057731375098228,-0.12817864120007,-0.019953401759267],[-0.091625183820724,-0.037516314536333,-0.092236772179604]],[[0.11021208763123,0.054902348667383,0.11709047108889],[-0.1181149110198,0.079871214926243,0.046300180256367],[0.12711974978447,-0.0405288413167,0.11895499378443]],[[0.014614732936025,0.080690011382103,-0.0014248428633437],[0.042698688805103,0.10329572111368,0.0018357984954491],[0.089810878038406,0.22352096438408,0.02048248052597]],[[0.11368727684021,0.051201205700636,-0.029022984206676],[-0.09659331291914,0.0041840169578791,0.16478045284748],[-0.033622842282057,-0.23871429264545,-0.13748191297054]],[[-0.058441709727049,-0.12361524999142,-0.027560750022531],[0.091539777815342,-0.040293034166098,0.059187471866608],[-0.056257795542479,-0.0012332969345152,0.015214384533465]],[[0.041005823761225,-0.043093115091324,0.042357750236988],[-0.16160203516483,-0.10225834697485,-0.075184106826782],[-0.039939761161804,0.077283166348934,-0.13857913017273]],[[-0.020266389474273,-0.08915438503027,-0.063764452934265],[-0.030769571661949,-0.0063019939698279,-0.0090149464085698],[0.025698712095618,-2.1759784431197e-05,-0.064410515129566]],[[0.057597406208515,0.075626872479916,-0.034390486776829],[0.095183618366718,0.036052081733942,0.12003336846828],[-0.0085552409291267,-0.062334507703781,0.10177429020405]],[[-0.075460575520992,0.063007019460201,0.034066841006279],[0.08545545488596,-0.10987102985382,0.12736591696739],[-0.019297141581774,-0.062957942485809,0.081736408174038]],[[-0.031166492030025,0.090332701802254,-0.090819396078587],[0.02737552113831,0.020637633278966,0.080339752137661],[0.012932603247464,-0.10338344424963,-0.033035565167665]],[[0.06741327047348,-0.043192107230425,0.13092869520187],[0.051787476986647,0.042318370193243,-0.030946372076869],[0.0092382477596402,0.016385806724429,-0.025595549494028]],[[-0.27642062306404,0.21834690868855,-0.22272852063179],[0.10239856690168,-0.19699464738369,0.27398982644081],[-0.090416371822357,0.10605738312006,-0.16190055012703]],[[0.16421575844288,0.027551406994462,-0.033122055232525],[-0.1416842341423,0.063002213835716,-0.083503253757954],[0.075214065611362,0.059142250567675,-0.015166586264968]],[[0.0015839318512008,-0.047394689172506,-0.0057619214057922],[-0.014366939663887,0.11442667245865,0.053585324436426],[0.0036986630875617,0.17474479973316,0.045449364930391]],[[0.0012894562678412,0.034796934574842,-0.018751906231046],[-0.024386905133724,-0.032110601663589,0.1321793794632],[-0.044727168977261,0.092440329492092,0.021987864747643]],[[0.11108328402042,-0.0026744205970317,0.031809333711863],[-0.23233088850975,0.064294137060642,0.096320793032646],[-0.1100095063448,-0.04095109924674,-0.13832522928715]],[[0.024515593424439,-0.094370484352112,0.043732922524214],[-0.098238617181778,-0.10942611843348,-0.030539356172085],[0.010305264033377,0.061742961406708,-0.020668962970376]],[[-0.0036277621984482,-0.042919028550386,-0.035666596144438],[-0.057737991213799,0.013015801087022,-0.022171953693032],[-0.038270063698292,-0.062125034630299,-0.035282112658024]],[[0.049510546028614,0.052923686802387,0.031536661088467],[0.10672502219677,0.12841215729713,-0.007958710193634],[0.17502991855145,0.014707649126649,0.035347204655409]],[[0.030780142173171,0.081103682518005,0.1070397272706],[-0.0083198817446828,-0.011931071057916,0.045424278825521],[-0.023354580625892,-0.088936299085617,0.056620873510838]],[[0.13189969956875,-0.1445797085762,-0.0060687987133861],[0.02997774258256,0.064547941088676,-0.057793810963631],[0.032988049089909,0.0068242158740759,0.038299303501844]],[[-0.15390555560589,0.024929834529757,-0.13593262434006],[-0.12772151827812,-0.17751660943031,-0.011305220425129],[-0.10010869801044,-0.071713887155056,-0.17468658089638]],[[-0.015991784632206,-0.039787709712982,-0.052529163658619],[0.034110948443413,0.029178338125348,-0.031869493424892],[0.027804443612695,-0.14926199615002,0.017537519335747]],[[0.13126350939274,0.023906547576189,-0.07778187841177],[-0.012852072715759,-0.012070368044078,0.03870765119791],[-0.046673927456141,-0.012964498251677,-0.20378862321377]],[[-0.012727369554341,-0.065600156784058,0.051040478050709],[-0.0011170420330018,0.024076381698251,0.010200992226601],[0.0023124050348997,0.018185371533036,0.0089016333222389]],[[0.096161648631096,0.10315486043692,0.036529432982206],[-0.015927009284496,0.051988497376442,0.12164033204317],[-0.07771510630846,-0.096364878118038,0.062961988151073]],[[0.083129376173019,0.012035262770951,0.026978101581335],[0.046511016786098,-0.081860482692719,-0.045316383242607],[-0.09840776771307,0.056660912930965,0.063790425658226]],[[-0.083359122276306,0.082489117980003,-0.04787315428257],[-0.0097104730084538,-0.05869722738862,0.1227853000164],[-0.12286934256554,0.024613486602902,-0.10825461149216]],[[0.13522863388062,0.041700154542923,0.02114093862474],[-0.14076672494411,-0.0021624551154673,0.017918044701219],[0.047960363328457,-0.12267620116472,-0.091130986809731]],[[0.012623680755496,-0.077536500990391,0.057195357978344],[0.056880872696638,-0.09104747325182,-0.080366022884846],[0.04743767529726,0.029359957203269,-0.023580875247717]]],[[[0.0090799117460847,0.10978695750237,0.036293394863605],[0.045007433742285,0.093742109835148,0.01616658270359],[-0.042040515691042,0.08727939426899,-0.0026716780848801]],[[-0.084520854055882,-0.031198548153043,-0.076005727052689],[0.047927178442478,-0.038857724517584,0.010687237605453],[0.12038493901491,0.053183626383543,0.010633872821927]],[[0.03117429278791,-0.017314288765192,0.12033452093601],[-0.15975266695023,-0.038018401712179,-0.10524220764637],[0.06224287673831,-0.04650779440999,-0.078656055033207]],[[-0.066523142158985,0.037590894848108,-0.012645673006773],[-0.10387180000544,0.014460120350122,-0.078834645450115],[0.020642908290029,0.12292020767927,0.092385970056057]],[[-0.026567650958896,0.049686957150698,-0.062636710703373],[0.035592693835497,0.083182312548161,0.034867163747549],[-0.048735350370407,0.061839118599892,-0.021218234673142]],[[-0.14638514816761,-0.057679142802954,0.036070939153433],[0.012397015467286,0.020165499299765,0.10853569209576],[0.052799578756094,-0.15445324778557,0.056187201291323]],[[0.015358593314886,-0.012767194770277,-0.036701090633869],[0.12753811478615,0.0087057696655393,-0.054945472627878],[0.048160616308451,0.017927676439285,-0.010009898804128]],[[-0.025618119165301,0.04693740978837,0.018340473994613],[0.0023685086052865,-0.049505583941936,0.051079202443361],[-0.034474972635508,-0.015822166576982,0.053568717092276]],[[-0.058557689189911,-0.058040402829647,-0.06198450550437],[-0.10927881300449,-0.046866457909346,0.058270465582609],[0.0034866591449827,0.032455135136843,0.091280497610569]],[[0.050280924886465,-0.077624477446079,-0.0013505540555343],[0.19014772772789,0.18367458879948,0.1276918053627],[0.12112036347389,0.051201947033405,0.011148693971336]],[[0.020261103287339,0.10916525125504,-0.05382027477026],[0.043619386851788,-0.045729175209999,0.090439260005951],[0.022815531119704,-0.095829322934151,0.074733883142471]],[[0.088842011988163,0.066383399069309,0.048974651843309],[-0.0032981007825583,0.090071193873882,0.050634689629078],[0.0032543905545026,-0.06148923933506,-0.012896559201181]],[[-0.025015057995915,0.17142148315907,0.023505287244916],[-0.072525769472122,-0.0078996671363711,0.077714070677757],[-0.048442024737597,0.026828482747078,0.11751984059811]],[[-0.086807861924171,-0.19645775854588,0.035558439791203],[0.024036532267928,0.24840641021729,-0.2298663854599],[0.14809574186802,0.038224205374718,-0.027293218299747]],[[0.081026203930378,0.0082152178511024,0.15700869262218],[-0.021401824429631,-0.010635393671691,0.026662306860089],[0.0097239799797535,0.01451010722667,-0.015082991681993]],[[0.010310435667634,-0.090558663010597,0.058843653649092],[-0.037080395966768,0.15422651171684,0.024461321532726],[0.017174499109387,0.050739917904139,0.051342759281397]],[[0.0030750432051718,0.080097198486328,0.11549653857946],[-0.019407507032156,0.15588927268982,0.0015972866676748],[0.031289298087358,0.14923226833344,0.060790419578552]],[[-0.060359463095665,0.07674091309309,0.11146093159914],[-0.048174828290939,-0.01994295604527,-0.0037776462268084],[-0.01258101593703,0.038404982537031,0.063477016985416]],[[-0.0039320597425103,-0.033234514296055,0.062031097710133],[0.029973382130265,-0.066828362643719,-0.09442663192749],[0.010057244449854,0.049219906330109,-0.10841900855303]],[[0.032283458858728,-0.014524367637932,0.045779008418322],[-0.073969535529613,-0.086150854825974,-0.089629985392094],[0.043513659387827,0.10071805119514,0.016173243522644]],[[0.04272198677063,0.019075056537986,-0.043698977679014],[0.015825046226382,0.1238764077425,-0.027002418413758],[0.062179811298847,0.085934966802597,0.012882675044239]],[[-0.016925282776356,0.15965700149536,0.1502750068903],[-0.11434774845839,0.042153902351856,0.11545274406672],[-0.11968808621168,-0.047261219471693,0.026907123625278]],[[-0.062415827065706,0.055566150695086,-0.084742724895477],[0.21387021243572,0.048747796565294,-0.033518213778734],[0.1519410610199,0.043170850723982,-0.054576750844717]],[[-0.020157681778073,-0.042798899114132,0.04883499443531],[-0.1546934992075,-0.043168183416128,0.065989211201668],[-0.12082172930241,-0.11143025755882,-0.068969756364822]],[[0.0061403503641486,0.032528650015593,-0.10391538590193],[0.0064458991400898,-0.070140816271305,0.00054735637968406],[-0.023913202807307,0.0017053505871445,0.070831641554832]],[[-0.055842772126198,0.075856290757656,-0.006647770293057],[-0.0047229346819222,0.054295852780342,-0.067635878920555],[0.024921523407102,0.097212925553322,-0.0154342148453]],[[0.025023525580764,0.11854736506939,-0.0096182338893414],[-0.024808520451188,-0.067907884716988,0.098782517015934],[0.029969112947583,-0.036369044333696,-0.074855662882328]],[[0.091596305370331,-0.030940921977162,0.1153257638216],[0.098732873797417,0.10801634937525,-0.079877831041813],[-0.003568371757865,-0.037018276751041,0.041566703468561]],[[0.061839986592531,0.054422169923782,-0.031176844611764],[-0.0032127490267158,0.053746819496155,0.064985506236553],[0.11962667107582,-0.029359970241785,0.0026229517534375]],[[-0.054432600736618,0.013638149946928,0.067877091467381],[-0.079800769686699,-0.13071626424789,0.054302211850882],[-0.052462548017502,-0.062878794968128,-0.073181368410587]],[[0.023215813562274,-0.029123291373253,0.060068506747484],[0.067464098334312,-0.012315463274717,-0.022170547395945],[-0.10781183838844,0.068798065185547,0.062910139560699]],[[0.023908488452435,-0.17865270376205,-0.083488032221794],[-0.026386369019747,-0.011058701202273,-0.0096219275146723],[0.030425352975726,-0.046380892395973,-0.10582992434502]]],[[[-0.14878985285759,0.062088418751955,0.020909724757075],[-0.11407770216465,-0.042532902210951,-0.22905501723289],[0.0042181271128356,-0.0088664097711444,0.082360737025738]],[[0.065108358860016,-0.044052883982658,-0.11782105267048],[-0.034867182374001,0.13213139772415,-0.048798229545355],[0.054845541715622,0.070452012121677,-0.076692894101143]],[[0.11021369695663,-0.16675481200218,0.044682882726192],[-0.16001716256142,-0.14609609544277,0.098387144505978],[-0.011374551802874,-0.047790326178074,0.063359424471855]],[[-0.053403917700052,0.064220197498798,0.17007355391979],[0.047561455518007,-0.023045429959893,0.01631603948772],[-0.012721390463412,-0.20333190262318,0.062526151537895]],[[0.015624733641744,0.10185581445694,0.013570032082498],[0.038651164621115,-0.029591144993901,0.027931068092585],[-0.02937475964427,0.14237575232983,-0.085768312215805]],[[0.17877414822578,0.052804924547672,0.079583242535591],[0.19773833453655,0.0035485147964209,-0.08438665419817],[0.017121691256762,-0.29302203655243,-0.15238958597183]],[[-0.050860434770584,0.062112510204315,-0.013189264573157],[-0.014732368290424,-0.048194985836744,-0.12294685840607],[-0.03372860699892,0.017695512622595,-0.066569417715073]],[[-0.015769720077515,-0.036876488476992,0.018359120935202],[0.086872845888138,0.013042252510786,-0.043060604482889],[-0.012871361337602,-0.063956238329411,0.13601750135422]],[[-0.075197137892246,0.041268385946751,0.009506537579],[-0.14406131207943,-0.076465733349323,-0.038820654153824],[-0.22161862254143,0.076219499111176,0.13513420522213]],[[0.099224351346493,0.17630717158318,0.030380330979824],[0.04223819822073,-0.12024661898613,-0.053947288542986],[0.15745158493519,0.15598312020302,0.15486605465412]],[[-0.16604115068913,0.14870025217533,-0.13221324980259],[-0.12821733951569,0.11493825912476,-0.032012484967709],[-0.13452816009521,0.17521062493324,0.042015079408884]],[[0.12742331624031,-0.066263623535633,0.0087153818458319],[0.038607515394688,0.0049653220921755,0.0090246368199587],[0.08957751095295,-0.19460889697075,0.077371619641781]],[[0.029188862070441,0.015217096544802,-0.15421870350838],[-0.28588807582855,0.049262188374996,0.1587303429842],[0.076732531189919,0.10405886918306,-0.097901895642281]],[[-0.12543886899948,0.20462734997272,0.18032516539097],[0.041582506150007,-0.27260440587997,0.12306420505047],[-0.19976875185966,-0.19226707518101,-0.037660200148821]],[[0.11454503983259,-0.089422672986984,0.043295558542013],[-0.044306356459856,-0.0050767450593412,0.050149336457253],[0.034372124820948,-0.0086472732946277,-0.1037085801363]],[[0.036899503320456,0.054529905319214,-0.26577177643776],[-0.10294377058744,-0.043240107595921,0.040088854730129],[0.045681357383728,0.11346225440502,0.14716885983944]],[[0.046916235238314,-0.037877235561609,-0.0079593434929848],[-0.069027163088322,0.14827132225037,0.021741777658463],[-0.050915036350489,-0.063866153359413,-0.14019647240639]],[[-0.034870531409979,-0.11097624152899,0.078631684184074],[-0.14217233657837,-0.03160621970892,0.02255710400641],[-0.072544530034065,0.047678869217634,0.0551454462111]],[[-0.0064288121648133,-0.2273875772953,0.011081418953836],[-0.17119181156158,-0.081448465585709,0.1654546558857],[0.16927714645863,0.095063894987106,-0.11845231801271]],[[-0.034561987966299,-0.20111772418022,0.058247145265341],[-0.021447192877531,-0.099752627313137,-0.082220353186131],[-0.036897283047438,-0.14464730024338,-0.064183928072453]],[[0.26485958695412,-0.073109194636345,-0.12594230473042],[0.060724399983883,-0.15755678713322,0.016187189146876],[0.002591397613287,0.061745341867208,-0.11278624087572]],[[-0.073984757065773,-0.09435460716486,-0.011972790583968],[0.040236365050077,-0.27587729692459,0.029473219066858],[0.010158590041101,-0.11357873678207,0.1632699072361]],[[0.0027761147357523,0.0074230558238924,-0.076635383069515],[-0.088547877967358,0.15042908489704,0.027855997905135],[0.0068115266039968,0.041955720633268,-0.26466816663742]],[[-0.11806860566139,0.025271026417613,-0.095284707844257],[-0.052085194736719,-0.089562594890594,0.058740731328726],[0.021707883104682,-0.027487514540553,0.066721118986607]],[[-0.0083727324381471,0.0671441629529,0.09798326343298],[-0.17834961414337,0.022857993841171,0.047223869711161],[-0.16117702424526,0.082085601985455,0.066832222044468]],[[0.0026334058493376,0.13242723047733,-0.096498876810074],[-0.01937803439796,0.044505521655083,0.058139689266682],[-0.16621048748493,0.090452834963799,-0.083199687302113]],[[-0.095860548317432,0.067804984748363,0.0080847488716245],[0.010562954470515,0.0013665269361809,0.028704402968287],[-0.016184827312827,0.026670608669519,-0.003857048926875]],[[-0.0052525764331222,0.29073494672775,0.010964947752655],[-0.13019877672195,0.25341340899467,0.012563901953399],[0.011717410758138,0.19624848663807,0.050759147852659]],[[0.040278051048517,-0.12355824559927,0.0086014242842793],[-0.083346858620644,0.044938001781702,0.043844606727362],[-0.15656200051308,0.15360483527184,0.061034362763166]],[[0.020928602665663,0.017689432948828,0.043605800718069],[-0.21771942079067,-0.12832361459732,-0.014610735699534],[0.031498275697231,-0.10829473286867,0.11950522661209]],[[0.0049266410060227,0.041993450373411,0.17498585581779],[-0.049700826406479,0.06190200150013,-0.19537435472012],[-0.24058811366558,0.072826281189919,-0.093980349600315]],[[0.034519270062447,-0.060860309749842,-0.041797157377005],[-0.028559530153871,0.017947323620319,0.13791893422604],[-0.053464207798243,0.020311845466495,0.047605000436306]]],[[[0.069810330867767,0.056796453893185,-0.0037850546650589],[-0.0039239572361112,0.0042355214245617,-0.035550430417061],[-0.0067366538569331,0.089112304151058,-0.091659754514694]],[[-0.0009661897784099,0.016840230673552,0.027025155723095],[-0.02414727024734,-0.048756375908852,0.057419788092375],[-0.077413938939571,-0.072066240012646,0.07808318734169]],[[0.086398236453533,-0.018047746270895,0.033606227487326],[0.025781363248825,-0.019398633390665,-0.15592396259308],[0.17615701258183,0.049310158938169,-0.087402187287807]],[[0.016221394762397,-0.014026008546352,0.075515635311604],[-0.027867564931512,0.07793540507555,-0.081881143152714],[0.060038197785616,0.032401069998741,-0.080540850758553]],[[0.081299267709255,-0.0966881737113,-0.048264697194099],[-0.023787938058376,0.15410088002682,-0.037615794688463],[0.042633552104235,-0.031994305551052,0.004668852314353]],[[-0.075988672673702,-0.071886010468006,-0.0039792661555111],[-0.1017781496048,0.072041265666485,0.016607705503702],[-0.07532649487257,0.14248372614384,0.17188237607479]],[[0.13730454444885,-0.061287838965654,0.074357151985168],[0.067310079932213,-0.084390424191952,0.041745498776436],[-0.06676459312439,0.069412253797054,-0.030660001561046]],[[-0.010912708006799,-0.046486761420965,0.0027907921466976],[-0.10158357769251,0.039679206907749,-0.068768292665482],[-0.034265231341124,-0.065166279673576,0.063983075320721]],[[-0.049890249967575,-0.043087914586067,0.026410752907395],[0.0040917182341218,-0.053244177252054,0.062132846564054],[0.10200847685337,-0.068874299526215,-0.093919605016708]],[[0.11909481137991,-0.12356010824442,0.077347226440907],[0.048858135938644,-0.0037529969122261,0.093063063919544],[-0.072500042617321,-0.05397867411375,0.090269036591053]],[[-0.0021456144750118,-0.057919278740883,0.0077479016035795],[-0.0014097987441346,-0.15158967673779,-0.035606101155281],[0.049129299819469,-0.047395545989275,-0.072091981768608]],[[0.0069703599438071,0.071286469697952,-0.036206100136042],[-0.05973606929183,-0.073947913944721,0.048175189644098],[0.012692147865891,0.058831017464399,-0.076471276581287]],[[0.030735688284039,-0.08439477533102,-0.027133954688907],[0.10533966124058,-0.0075945206917822,-0.10620778053999],[0.040516875684261,-0.0047702118754387,-0.050320811569691]],[[0.077551402151585,-0.037046674638987,0.0028731485363096],[0.010492281988263,-0.050361648201942,-0.026431923732162],[0.030125005170703,0.034396808594465,-0.012945117428899]],[[0.0061493990942836,0.017215147614479,0.098138533532619],[0.082183949649334,0.055415071547031,-0.14252336323261],[-0.05180286616087,0.01772484742105,-0.12016539275646]],[[-0.21362635493279,-0.0089449649676681,0.12215158343315],[-0.022649265825748,0.01301237847656,0.11830952018499],[-0.13816250860691,0.042666956782341,0.073359750211239]],[[0.077803581953049,0.017133817076683,-0.00074751587817445],[0.027785612270236,-0.045582298189402,0.085197910666466],[-0.013326739892364,-0.041378077119589,0.047005623579025]],[[0.0046249427832663,-0.075596906244755,-0.059725251048803],[0.049290753901005,-0.012210290879011,-0.039876125752926],[0.14214432239532,-0.054800637066364,0.0082960063591599]],[[0.08543436229229,0.01127777993679,0.017051311209798],[-0.027319572865963,-0.0405208542943,-0.0043282289989293],[0.035244755446911,0.12550531327724,0.0064137019217014]],[[0.033166963607073,0.022097785025835,0.0048410664312541],[0.017141157761216,0.0043265125714242,0.034881696105003],[0.085166677832603,-0.098022520542145,0.12273370474577]],[[-0.092133268713951,0.084317713975906,0.03168236836791],[-0.1338214725256,0.076960995793343,0.098214477300644],[-0.11946572363377,-0.0031697773374617,0.055830467492342]],[[0.0059825861826539,0.10845738649368,-0.061285950243473],[0.025891875848174,0.10231149196625,-0.055259134620428],[0.17866890132427,0.062047339975834,-0.064765699207783]],[[0.054720427840948,0.031682536005974,0.094219654798508],[-0.11031295359135,-0.042822126299143,0.081038177013397],[0.12052182853222,-0.08900436013937,0.090332344174385]],[[0.073359966278076,-0.014033270999789,-0.016906276345253],[-0.032373070716858,0.019460916519165,0.072579234838486],[0.00025049946270883,0.05805840715766,0.037607487291098]],[[0.04165655374527,-0.015330940485001,0.063134007155895],[0.027642702683806,-0.19955991208553,-0.042846091091633],[0.04070134088397,-0.090957798063755,0.094089016318321]],[[-0.059203691780567,-0.048389934003353,-0.035670850425959],[-0.047219432890415,0.017971018329263,-0.071635365486145],[0.038619749248028,0.021273894235492,0.010339384898543]],[[-0.0028612338937819,-0.067684680223465,-0.038245212286711],[0.093344993889332,0.044517632573843,0.0048106475733221],[0.017011450603604,0.018545029684901,-0.10393260419369]],[[0.096914127469063,-0.14480493962765,0.046471960842609],[0.097065038979053,-0.081296719610691,-0.059837598353624],[0.1151929423213,-0.22968801856041,-0.031267069280148]],[[0.033279594033957,-0.075925156474113,0.037114467471838],[0.0057630226947367,-0.031178204342723,0.094571754336357],[-0.06706091016531,0.062136616557837,-0.12223006784916]],[[0.055717445909977,-0.063017442822456,0.02083638869226],[0.084948740899563,0.11136240512133,-0.017917970195413],[0.082009360194206,0.022364167496562,-0.053517561405897]],[[0.084016062319279,0.017452390864491,0.031778752803802],[-0.047514729201794,0.090848669409752,-0.16282103955746],[0.00014745032240171,-0.0021214459557086,0.023875681683421]],[[0.013336539268494,-0.015912402421236,0.01541686616838],[0.013631518930197,0.00068613287294284,-0.05993914976716],[-0.069650761783123,-0.017839889973402,-0.013791276142001]]],[[[0.10763707011938,0.071296788752079,0.065895564854145],[0.0433578081429,-0.26345571875572,-0.08256771415472],[0.0112184593454,-0.13811552524567,-0.062977366149426]],[[-0.055826552212238,-0.0080772992223501,-0.059591226279736],[0.11964743584394,-0.074871450662613,-0.040268529206514],[-0.0041055134497583,0.061714384704828,0.019370444118977]],[[-0.14912047982216,0.047024883329868,-0.014294076710939],[-0.16568885743618,-0.033291254192591,0.11809063702822],[-0.12101755291224,-0.079411454498768,0.024766098707914]],[[-0.062460105866194,0.13393965363503,-0.0096025485545397],[0.054650261998177,0.020360212773085,0.10958600789309],[0.0046144062653184,0.040208868682384,-0.06886225938797]],[[-0.024147791787982,0.049609795212746,0.10466719418764],[-0.061488069593906,0.10843046754599,0.064225539565086],[0.047838393598795,0.048217337578535,0.071000851690769]],[[-0.095094479620457,0.099700160324574,0.13320836424828],[-0.13497143983841,-0.05551665276289,-0.049111064523458],[0.13647438585758,-0.17058962583542,0.0075635905377567]],[[-0.067526839673519,0.068888194859028,-0.016769632697105],[-0.0053424993529916,-0.0078967371955514,-0.13542297482491],[0.19794410467148,-0.0067258337512612,0.04051610827446]],[[0.026458770036697,0.042369466274977,-0.016910951584578],[0.023606864735484,-0.0501270852983,-0.11467269808054],[0.01476960349828,0.13442109525204,-0.0012810539919883]],[[-0.099943868815899,0.036711450666189,0.12778340280056],[0.030649846419692,0.13320869207382,0.091803669929504],[-0.044500209391117,-0.0097345616668463,-0.0031683358829468]],[[0.069922052323818,-0.11838204413652,0.042164657264948],[0.1004853323102,0.040640611201525,0.096392795443535],[-0.0070281149819493,-0.069145813584328,0.037667687982321]],[[-0.10476939380169,0.046474482864141,0.072884552180767],[-0.029563600197434,0.040011890232563,-0.10678144544363],[0.017663592472672,0.019983675330877,-0.051641967147589]],[[0.072317771613598,0.18750694394112,0.056634124368429],[-0.077295616269112,0.032279461622238,-0.0018998275045305],[0.022912966087461,-0.026161348447204,0.06375277787447]],[[-0.024996913969517,0.0032745450735092,-0.044305313378572],[0.095854260027409,0.053407657891512,0.069281756877899],[0.0079511795192957,-0.0022608493454754,0.061967078596354]],[[0.14868393540382,-0.077436447143555,0.095984734594822],[0.024356944486499,-0.087615720927715,0.10465981066227],[-0.073089368641376,0.0088244052603841,-0.043383542448282]],[[0.045444879680872,-0.11469572037458,-0.0099623184651136],[0.041591130197048,-0.0051179062575102,-0.059408649802208],[0.040045965462923,-0.0092233642935753,0.11554849892855]],[[0.064341150224209,0.035879883915186,0.11627921462059],[0.034783452749252,0.020689295604825,0.093853391706944],[-0.1279314160347,0.025673303753138,0.029201004654169]],[[-0.080175533890724,0.020815769210458,0.02853424847126],[0.10420095175505,0.035535778850317,-0.00053324841428548],[-0.062980704009533,0.046090383082628,-0.073683843016624]],[[-0.017130050808191,0.052628189325333,0.015062128193676],[-0.083990029990673,0.14572939276695,0.10610245913267],[-0.079057082533836,-0.13380222022533,-0.022734755650163]],[[0.077402293682098,0.12822924554348,-0.22643049061298],[-0.007334666326642,0.03829562664032,0.0076591358520091],[0.11714112013578,-0.14366707205772,-0.13607403635979]],[[-0.1233938485384,-0.086255125701427,0.061057183891535],[0.027948910370469,0.018590657040477,-0.13671067357063],[0.1037934049964,0.021038668230176,0.054681785404682]],[[0.029562186449766,0.049183212220669,0.080736227333546],[0.005477333907038,0.044642060995102,0.01740376278758],[0.014311616308987,-0.083751380443573,0.1400523930788]],[[-0.011132749728858,0.11987493932247,0.20714925229549],[-0.11629592627287,0.026224186643958,0.055389638990164],[-0.13937091827393,0.063333317637444,0.020960308611393]],[[0.08895568549633,-0.091988302767277,0.15915237367153],[-0.027470448985696,0.01215850841254,-0.03816007450223],[0.047597277909517,-0.10887402296066,0.019956197589636]],[[-0.033884827047586,-0.098020724952221,-0.0055964644998312],[0.017591014504433,0.025389384478331,0.067234955728054],[0.0052116657607257,0.090798646211624,0.082339912652969]],[[-0.065529763698578,-0.055627685040236,-0.10428734868765],[0.20832690596581,0.029199784621596,-0.15811495482922],[0.073316931724548,0.065332487225533,0.060471694916487]],[[-0.015692241489887,-0.050132196396589,0.1034517660737],[-0.0017505328869447,0.034944415092468,-0.0065357545390725],[0.11279476433992,0.09271864593029,-0.11755552887917]],[[-0.043197225779295,0.09985987842083,-0.039761427789927],[-0.028131609782577,-0.064002588391304,0.080269895493984],[0.050642233341932,-0.0039132963865995,-0.020084597170353]],[[0.053349990397692,0.09430655092001,-0.14523071050644],[-0.064109697937965,-0.029028087854385,0.056022603064775],[0.089009553194046,-0.094226740300655,0.062153320759535]],[[0.0044404501095414,0.05032317340374,0.11955486238003],[-0.079269587993622,0.18246676027775,0.052480485290289],[-0.030990207567811,-0.064434573054314,0.095367297530174]],[[-0.010527940467,0.056149754673243,0.045954722911119],[-0.13136287033558,0.042872563004494,0.037594430148602],[-0.055003099143505,0.0011757676256821,0.070179596543312]],[[-0.098752878606319,-0.10306211560965,0.074098244309425],[0.021310610696673,-0.0009830720955506,0.073378838598728],[-0.038772117346525,-0.046497907489538,0.026588538661599]],[[-0.032047726213932,-0.11057058721781,0.035133361816406],[0.04008587449789,0.028610972687602,0.0062175332568586],[-0.0074164723046124,0.10030686855316,0.023344069719315]]],[[[-0.043907921761274,0.044398665428162,0.076564557850361],[0.02021512389183,-0.24573886394501,-0.020750882104039],[-0.034427434206009,0.033603884279728,-0.059528805315495]],[[0.0053512146696448,0.15295341610909,0.11183286458254],[-0.080575048923492,0.13578818738461,0.076661348342896],[-0.10981312394142,-0.10361301153898,-0.077777169644833]],[[0.0027690145652741,0.05651056393981,-0.1445294469595],[0.12137490510941,0.047399122267962,0.1789890229702],[-0.072515912353992,-0.011645973660052,-0.0031948839314282]],[[0.0049148513935506,0.087339080870152,-0.041738171130419],[-0.077931642532349,-0.23710772395134,-0.0054028080776334],[0.035607602447271,0.018317414447665,-0.046750392764807]],[[0.034286014735699,0.02389650605619,0.062072075903416],[-0.020080205053091,0.019363516941667,-0.091773450374603],[-0.050460200756788,-6.536538421642e-07,-0.083733811974525]],[[0.0074166366830468,0.010125315748155,0.025470934808254],[0.0044980105012655,-0.024670042097569,-0.090429693460464],[0.03223242610693,0.081335961818695,0.04166341945529]],[[-0.029852805659175,0.081991620361805,0.011807919479907],[-0.05296340957284,0.059813234955072,0.041687574237585],[-0.035553954541683,0.0059603708796203,-0.0082662058994174]],[[-0.02376745082438,-0.018550584092736,0.053036905825138],[-0.065098904073238,-0.033617243170738,-0.10467869788408],[-0.065393842756748,-0.09629113227129,-0.033429943025112]],[[-0.040417779237032,0.073075085878372,-0.027756862342358],[0.016546536237001,0.062955498695374,0.008859128691256],[0.035907801240683,0.052030049264431,0.011879642494023]],[[-0.095436945557594,0.11081026494503,0.071048177778721],[0.019743271172047,0.16875594854355,0.06006070971489],[-0.031458150595427,-0.069719508290291,-0.28861048817635]],[[0.054079964756966,0.13870976865292,-0.018496992066503],[0.026963897049427,0.15048265457153,-0.12512987852097],[0.050691056996584,0.062148462980986,-0.08315022289753]],[[-0.03597329929471,0.081714399158955,0.014854310080409],[-0.05501152575016,-0.028252385556698,0.029632676392794],[-0.1336165368557,-0.023660542443395,-0.022318618372083]],[[-0.071708805859089,-0.078067533671856,-0.098091833293438],[-0.04336528852582,0.078252635896206,-0.066878393292427],[0.01765189692378,-0.1087835803628,-0.04970682784915]],[[-0.028191667050123,0.096422620117664,-0.08900310844183],[-0.094200395047665,-0.052662804722786,-0.024270471185446],[0.072922356426716,-0.014137286692858,-0.046829912811518]],[[-0.0058704614639282,-0.010614078491926,-0.010230641812086],[0.0080260373651981,-0.10744013637304,0.039139464497566],[-0.022509740665555,-0.0323819629848,0.013962374068797]],[[-0.081159926950932,-0.13119533658028,-0.047088265419006],[0.066141083836555,0.074586935341358,-0.041265562176704],[0.051682516932487,0.038843590766191,0.040109559893608]],[[-0.0042067389003932,-0.050640467554331,-0.039134439080954],[-0.018630420789123,0.030246194452047,-0.044865250587463],[0.016498748213053,-0.084343634545803,0.047617375850677]],[[0.038015276193619,0.0016162628307939,0.0086215501651168],[-0.029812069609761,0.0340033210814,-0.043718960136175],[-0.021036118268967,-0.029123740270734,0.078007139265537]],[[-0.00051994144450873,-0.039993651211262,-0.018658677116036],[-0.013873808085918,-0.035404589027166,0.013768301345408],[0.010946299880743,-0.029439507052302,0.030456885695457]],[[0.051891412585974,0.049881216138601,-0.0066429823637009],[-0.017820540815592,0.051702883094549,0.044249150902033],[-0.076865337789059,0.014231299050152,-0.010773033834994]],[[-0.075273923575878,0.15601962804794,0.10392491519451],[-0.10333696752787,0.17247134447098,0.16006988286972],[-0.081405311822891,-0.046093292534351,-0.12447445839643]],[[0.13659575581551,-0.076407678425312,0.045941192656755],[-0.025140905752778,-0.047169648110867,0.090293802320957],[0.023750502616167,0.067098401486874,-0.14834870398045]],[[0.061621379107237,0.094296932220459,0.040489967912436],[-0.16925717890263,0.12897047400475,-0.049791432917118],[-0.10859075188637,0.082011446356773,0.18278183043003]],[[-0.012684191577137,-0.011003932915628,-0.013985891826451],[0.06654554605484,-0.10235273838043,-0.0066853002645075],[-0.034483350813389,0.04943622648716,-0.023296160623431]],[[0.057446096092463,0.051348336040974,-0.0089862029999495],[0.030861290171742,-0.022203728556633,0.03537293151021],[-0.052621643990278,0.041877303272486,-0.03327277302742]],[[0.020573660731316,-0.042221795767546,-0.030138099566102],[-0.0097521124407649,0.014134908095002,0.038437269628048],[-0.013090605847538,0.05360434576869,0.029711352661252]],[[-0.0054342127405107,-0.10825835168362,-0.044083338230848],[0.06276211887598,-0.00032206709147431,-0.082660354673862],[0.053851298987865,0.047690711915493,0.10089501738548]],[[-0.11650887876749,0.028546407818794,0.031826566904783],[-0.049929991364479,-0.05300809442997,0.13524501025677],[0.098043613135815,-0.094216004014015,-0.19497461616993]],[[-0.23944494128227,0.012552457861602,-0.044075310230255],[0.029291359707713,0.01775917224586,0.081224024295807],[-0.028655428439379,0.035613372921944,-0.022652219980955]],[[0.019827835261822,-0.11486902087927,-0.042873080819845],[0.072248749434948,-0.086589604616165,-0.038265649229288],[0.026952644810081,0.13185326755047,-0.053218517452478]],[[0.015474112704396,0.037314411252737,-0.014782996848226],[0.042682748287916,0.038135148584843,0.11160814762115],[-0.010061445645988,-0.051687549799681,0.046259518712759]],[[0.031903117895126,0.046108700335026,0.07618985325098],[-0.022884342819452,-0.10172419250011,0.012391995638609],[0.005315475165844,-0.0014827280538157,0.063908874988556]]],[[[0.039785366505384,-0.021630451083183,0.026285259053111],[0.019182097166777,0.11782030016184,-0.065313510596752],[-0.04298285022378,0.03934384137392,0.078219853341579]],[[-0.025517944246531,-0.017637446522713,0.11142133176327],[-0.019294960424304,0.057437818497419,-0.028635360300541],[0.08667254447937,-0.12525440752506,-0.017273690551519]],[[0.11649779230356,0.13592840731144,0.035238496959209],[-0.013296645134687,-0.02102248929441,0.0072325323708355],[-0.012221031822264,0.053184274584055,-0.10485375672579]],[[-0.12842008471489,0.066206634044647,-0.051104065030813],[-0.048261202871799,0.042056865990162,-0.062210977077484],[0.018807843327522,0.0010730600915849,-0.04423039034009]],[[0.028969988226891,0.019949447363615,-0.0064708692952991],[0.094748206436634,0.14112295210361,0.059179082512856],[0.11833254247904,0.12095427513123,0.089523240923882]],[[0.1048337072134,0.044551938772202,0.002511347644031],[-6.806175224483e-05,0.03270873054862,0.078145653009415],[0.18081015348434,0.027701573446393,0.035419538617134]],[[-0.0041706901974976,-0.023602390661836,0.011499440297484],[0.020388346165419,-0.05851673707366,0.066003553569317],[-0.095587268471718,0.0032499604858458,0.0066127767786384]],[[-0.014115325175226,0.028237566351891,0.043299976736307],[0.1356076002121,0.1449341326952,0.046059153974056],[-0.0042672231793404,0.0027100332081318,-0.029936421662569]],[[-0.067914314568043,0.10757824778557,-0.0092061217874289],[0.01898474805057,0.015812069177628,0.022990494966507],[-0.038824234157801,-0.025890111923218,0.060256108641624]],[[-0.06010952219367,-0.059255972504616,-0.054916635155678],[-0.017784874886274,-0.057950608432293,0.0039496780373156],[-0.0076206116937101,0.025385430082679,0.11748437583447]],[[0.098876804113388,-0.040837742388248,-0.032811999320984],[0.029291970655322,-0.0039817150682211,-0.1276514083147],[-7.3947834607679e-05,0.024901134893298,-0.058048322796822]],[[0.060349468141794,-0.028401246294379,0.039772871881723],[0.17439307272434,0.0042347027920187,-0.0050119920633733],[-0.0028114221058786,0.013935321010649,0.16242107748985]],[[-0.055275030434132,0.061680600047112,0.018479693681002],[0.011141020804644,0.057062197476625,-0.00023176975082606],[0.0013636550866067,0.055639863014221,0.0095568997785449]],[[0.047590233385563,0.02115117944777,-0.023442251607776],[-0.041209984570742,0.13625964522362,0.1161270365119],[-0.046337865293026,0.013217244297266,-0.02781255915761]],[[0.020298715680838,-0.097092494368553,0.051198378205299],[-0.040663618594408,-0.0025381546001881,-0.035420160740614],[0.0067386128939688,0.027421252802014,0.0083848489448428]],[[0.044843338429928,-0.027729902416468,-0.038383182138205],[0.040880482643843,-0.037963636219501,0.030766693875194],[0.17005182802677,-0.13483491539955,0.081593103706837]],[[0.078088261187077,-0.026748249307275,-0.0025554555468261],[0.0056762611493468,0.07532911747694,-0.043382603675127],[0.037517204880714,0.040456023067236,-0.05072233453393]],[[-0.0017101392149925,0.045510396361351,0.02609284222126],[0.011354049667716,0.15508861839771,-0.01448579877615],[0.044216830283403,0.13743640482426,0.053437955677509]],[[0.030999938026071,-0.0034314359072596,0.035349920392036],[0.04789312183857,-0.027519203722477,-0.07721720635891],[0.068236358463764,0.094979748129845,0.07985982298851]],[[0.038463480770588,0.03799406811595,0.018163550645113],[0.16322210431099,-0.036691263318062,-0.039782878011465],[0.16104915738106,0.061083868145943,0.11728613823652]],[[-0.12892296910286,0.047480996698141,0.1132892370224],[-0.052905183285475,0.013193787075579,0.047505594789982],[-0.11032707989216,0.037360139191151,0.019194573163986]],[[0.0049123791977763,0.040544651448727,-0.019104093313217],[0.11623600125313,-0.033861353993416,0.031014097854495],[-0.012074182741344,-0.10349217057228,-0.018243735656142]],[[-0.042322497814894,0.0054230997338891,0.013387940824032],[-0.072428002953529,0.07876954972744,0.22139266133308],[-0.19286149740219,-0.05845720693469,-0.017700020223856]],[[0.16512115299702,0.034776087850332,0.079116620123386],[0.11748623102903,0.1212304905057,0.1510861068964],[0.17944858968258,0.092889323830605,0.082613572478294]],[[-0.0070876572281122,0.015416353940964,0.09524030983448],[0.060838714241982,0.15271855890751,0.012303570285439],[-0.014388668350875,0.0068439501337707,0.0024231192655861]],[[-0.0099327536299825,0.0089592924341559,-0.031791243702173],[-0.016110565513372,0.057804144918919,0.091175124049187],[0.0070747486315668,-0.028700677677989,0.085681356489658]],[[0.16579505801201,-0.032908987253904,0.060068685561419],[0.010635665617883,0.0036348095163703,-0.099791243672371],[0.018247533589602,0.11265263706446,-0.028277449309826]],[[0.039820913225412,0.0064955074340105,-0.079086802899837],[0.084187291562557,-0.05324175208807,-0.060125485062599],[-0.10004770755768,-0.013835285790265,0.030247749760747]],[[0.10646798461676,-0.087189324200153,0.1086325570941],[0.046810057014227,-0.059948414564133,-0.1116908043623],[-0.06727223098278,0.012598313391209,-0.062845960259438]],[[0.073393739759922,-0.022345796227455,0.00041902816155925],[-0.060279067605734,-0.10803714394569,0.070925310254097],[0.030158979818225,0.13263738155365,-0.15339253842831]],[[0.0034071956761181,0.0053360164165497,0.026491647586226],[0.021125575527549,-0.02079550921917,-0.036899767816067],[-0.10380218178034,0.016519490629435,-0.045485109090805]],[[0.0045905415900052,0.015566693618894,0.0088620502501726],[0.10781302303076,0.15925632417202,0.0030853440985084],[0.028238346800208,-0.015933219343424,0.0026536076329648]]],[[[-0.043495919555426,0.0046387906186283,-0.062661498785019],[-0.13021595776081,-0.0040691518224776,-0.22174592316151],[0.045579843223095,0.14163742959499,0.04414951056242]],[[-0.043056178838015,0.050483837723732,-0.078557230532169],[-0.12913703918457,-0.05433252081275,0.09899015724659],[0.00056261423742399,0.065438352525234,0.053680833429098]],[[-0.018566355109215,-0.10263628512621,0.03785215318203],[-0.035125620663166,0.033047169446945,-0.026068771257997],[0.12341192364693,-0.11356372386217,-0.019013879820704]],[[0.030961327254772,0.016157457605004,0.092615254223347],[-0.15216442942619,-0.022114923223853,-0.077415481209755],[0.080376282334328,-0.078785106539726,0.10212419182062]],[[-0.057228982448578,-0.035205006599426,0.018281454220414],[-0.012928779236972,-0.051684632897377,0.14882926642895],[-0.0023194749373943,-0.039525989443064,0.00030005912412889]],[[0.014776629395783,-0.14311276376247,0.15107429027557],[0.23618818819523,0.021254451945424,-0.059421569108963],[-0.0036565095651895,-0.13923810422421,-0.090356715023518]],[[-0.062476184219122,0.032732091844082,0.11132886260748],[-0.09323862195015,0.058999788016081,-0.049896720796824],[0.066210053861141,-0.0045444192364812,0.079228356480598]],[[-0.059634670615196,-0.035746291279793,0.023852575570345],[-0.063508994877338,0.13987703621387,-0.064025156199932],[-0.31667566299438,-0.2296040803194,-0.00015489035286009]],[[0.034457985311747,0.014542343094945,0.047505863010883],[0.091057926416397,0.037291809916496,-0.033063653856516],[0.091452315449715,0.0063933888450265,-0.11595606803894]],[[0.073540732264519,0.054817959666252,0.028926042839885],[0.046198524534702,-0.017498321831226,-0.033333636820316],[0.14989174902439,0.10437452793121,0.058535255491734]],[[-0.089652940630913,0.034594971686602,-0.060061927884817],[0.046881306916475,-0.076929643750191,-0.010916216298938],[0.04377643764019,0.027524963021278,0.085911728441715]],[[0.1050141826272,-0.13530358672142,-0.065564565360546],[0.08739797770977,0.027734177187085,0.0065544187091291],[-0.06640363484621,-0.038702543824911,0.012111201882362]],[[-0.12324720621109,-0.0093758208677173,-0.20299887657166],[0.10306114703417,-0.10043274611235,0.027648171409965],[0.021770946681499,0.032667934894562,-0.26076653599739]],[[-0.29532510042191,0.18674844503403,0.067003846168518],[0.10187372565269,-0.086387977004051,-0.10990447551012],[0.095361582934856,-0.11942801624537,0.013499423861504]],[[0.11632709205151,-0.093048103153706,0.028278896585107],[-0.039826188236475,-0.14237321913242,-0.034917015582323],[0.038980565965176,0.029436962679029,0.010995739139616]],[[-0.042196970432997,0.0074278847314417,-0.12425321340561],[0.025888884440064,-0.13351193070412,0.030603859573603],[-0.080233387649059,-0.14254069328308,0.045124739408493]],[[-0.11786755174398,0.10426369309425,0.026077978312969],[-0.075307294726372,0.10574411600828,-0.0076763653196394],[-0.0073849568143487,-0.061443414539099,-0.045134160667658]],[[0.090988531708717,0.048656046390533,0.025008756667376],[-0.013661962933838,-0.17238853871822,-0.20757350325584],[-0.031881958246231,0.14236238598824,-0.0026562255807221]],[[0.004757849033922,0.023557776585221,-0.021575789898634],[-0.16497214138508,-0.023973520845175,0.092375680804253],[-0.20271876454353,-0.076824776828289,0.17836545407772]],[[-0.20928966999054,-0.020393272861838,-0.010306121781468],[-0.022017642855644,-0.022202020511031,0.051931899040937],[0.017048740759492,0.0074780690483749,0.055639158934355]],[[0.06786435097456,0.14003886282444,-0.026798758655787],[0.096454910933971,-0.053028929978609,0.0058865142054856],[0.025059079751372,0.10096754133701,0.10331592708826]],[[-0.016656780615449,-0.082721091806889,0.018038066104054],[-0.014094276353717,-0.12765391170979,0.11144204437733],[0.037882097065449,0.069550409913063,0.16500480473042]],[[-0.034130163490772,-8.0876372521743e-05,0.012034223414958],[0.050321012735367,0.025283632799983,0.072979919612408],[0.079611726105213,0.019947761669755,-0.082574144005775]],[[-0.02134825848043,0.0029691883828491,0.019606646150351],[-0.030687222257257,-0.14173543453217,0.06143594533205],[-0.08090864866972,-0.030228083953261,-0.0016664235154167]],[[-0.24741299450397,0.083361715078354,0.072962686419487],[-0.15593548119068,-0.094353511929512,-0.075305409729481],[-0.00096442899666727,-0.1460448205471,0.088509067893028]],[[0.05224322900176,0.077092729508877,-0.032562311738729],[0.16594032943249,0.060224983841181,0.028444211930037],[0.091082192957401,-0.082837484776974,-0.081310749053955]],[[0.0041766609065235,0.05672849714756,0.032022472470999],[0.041578616946936,-0.0037167423870414,-0.039500918239355],[-0.034297175705433,0.030255321413279,-0.096406742930412]],[[-0.095331892371178,0.26003473997116,0.090706989169121],[0.097175717353821,-0.073346711695194,-0.090765789151192],[0.24808238446712,-0.016632173210382,-0.094943195581436]],[[0.08049613237381,0.12022302299738,-0.032890349626541],[-0.004880306776613,0.067139618098736,-0.037095580250025],[0.030867919325829,-0.060086224228144,0.089408412575722]],[[-0.12403289973736,0.0012202084762976,0.042916260659695],[0.011148580349982,0.13101425766945,-0.040162064135075],[-0.0010655785445124,0.052560668438673,-0.11440625041723]],[[-0.061247419565916,-0.1459169536829,0.020334273576736],[-0.31700778007507,-0.0076871565543115,-0.0050780428573489],[-0.057984549552202,0.042163416743279,-0.10558976978064]],[[-0.038778249174356,-0.02186381071806,-0.039692845195532],[-0.11963374167681,-0.0058917077258229,-0.005070473998785],[-0.064670145511627,-0.15735706686974,-0.11912257224321]]],[[[-0.025374867022038,0.031028363853693,-0.05817374587059],[-0.043046768754721,0.11769222468138,0.033750560134649],[-0.051233865320683,-0.066631339490414,-0.070187889039516]],[[-0.025075912475586,-0.048822164535522,-0.018774507567286],[-0.0068082083016634,-0.043950758874416,0.087929181754589],[-0.085209652781487,0.088809363543987,0.015151981264353]],[[0.028300631791353,0.063864044845104,-0.02538800612092],[0.10472282022238,-0.11730900406837,-0.015764907002449],[-0.036524243652821,0.096708133816719,0.071645945310593]],[[-0.1016324236989,-0.12427309900522,-0.091411523520947],[0.074901431798935,-0.036993592977524,0.086277820169926],[0.064830712974072,-0.13269309699535,0.021586641669273]],[[0.10500292479992,0.0037906253710389,0.053400062024593],[0.0043678809888661,-0.10606827586889,-0.06043940782547],[-0.108293376863,0.018665922805667,-0.013280424289405]],[[0.12031579017639,0.060478083789349,-0.015957461670041],[0.15373203158379,-0.11778987199068,-0.0078735901042819],[0.0031349973287433,-0.073935501277447,0.09765686839819]],[[-0.077113896608353,0.15012365579605,-0.020565647631884],[-0.1219068095088,0.1260184943676,-0.018992556259036],[0.025830365717411,-0.12052647024393,0.017177717760205]],[[-0.012360855005682,0.058536227792501,0.00083456106949598],[-0.022164372727275,-0.039211425930262,-0.03099612891674],[-0.017575059086084,0.044609591364861,0.0021229137200862]],[[0.023481719195843,-0.052971199154854,0.13874693214893],[-0.02822027541697,0.066242851316929,0.17007631063461],[-0.11574662476778,-0.14532651007175,0.081251084804535]],[[-0.071895219385624,-0.014369351789355,0.13448552787304],[0.010730262845755,-0.035753335803747,-0.017847064882517],[0.009206609800458,-0.14647145569324,-0.023340737447143]],[[-0.098720103502274,0.016388446092606,-0.030651414766908],[-0.10967963188887,0.085480280220509,-0.057915437966585],[-0.0080469846725464,0.11662246286869,-0.052534934133291]],[[0.032449647784233,0.049405794590712,-0.014223855920136],[0.057284291833639,0.0019144034013152,-0.050018906593323],[0.078072972595692,0.006029381416738,0.045035984367132]],[[0.091097168624401,0.11532973498106,0.15621557831764],[0.12250063568354,0.06793799996376,0.0029946574941278],[0.057788658887148,-0.055290475487709,0.072644710540771]],[[0.024512754753232,-0.19411639869213,-0.0081314109265804],[-0.014660558663309,-0.014757420867682,0.032117377966642],[0.077134504914284,0.24902658164501,0.092166371643543]],[[-0.021347593516111,0.1009748056531,0.042254235595465],[0.012440822087228,-0.016034506261349,-0.018033327534795],[0.080128826200962,-0.00040986263775267,0.05728355050087]],[[0.15054903924465,0.0001048137419275,0.12632636725903],[-0.032865945249796,-0.09475314617157,-0.0079453093931079],[0.09027374535799,0.0099784256890416,-0.12322073429823]],[[0.056745838373899,-0.029003899544477,0.058305814862251],[-0.046864729374647,-0.18965953588486,0.06525531411171],[0.053046554327011,0.089695252478123,0.001908430014737]],[[0.091821685433388,-0.164596170187,-0.040741868317127],[-0.11656055599451,-0.015987604856491,-0.017829755321145],[-0.13806353509426,0.14230039715767,0.25201255083084]],[[-0.00390619575046,-0.21029026806355,0.15896508097649],[-0.068447761237621,0.033167686313391,0.020224148407578],[-0.069553568959236,-0.095678776502609,-0.061821725219488]],[[0.040793489664793,-0.094419330358505,-0.025478206574917],[-0.0033911655191332,-0.015521397814155,0.055795535445213],[-0.029600260779262,0.04751980677247,0.0055777202360332]],[[0.053695805370808,-0.048331212252378,-0.043977029621601],[0.086151219904423,-0.091678522527218,0.045644678175449],[0.057459678500891,0.023272849619389,-0.048534944653511]],[[-0.014837212860584,0.15976604819298,0.14355334639549],[-0.028289576992393,0.016708707436919,0.01784391887486],[-0.0028571994043887,0.085815347731113,0.10747671872377]],[[-0.013348185457289,0.064411491155624,0.074531197547913],[-0.035384830087423,-0.023822478950024,0.01663326844573],[-0.051744069904089,-0.068534359335899,-0.077392682433128]],[[0.063199937343597,-0.0012942138127983,0.11203517764807],[0.026748960837722,0.047507788985968,0.12325354665518],[-0.051703073084354,0.089130908250809,0.071844458580017]],[[-0.10952290892601,0.08861893415451,0.019234851002693],[-0.12448301911354,0.065911203622818,-0.11203673481941],[-0.020962502807379,-0.053768370300531,0.016543978825212]],[[0.090719260275364,0.13177247345448,-0.041370909661055],[0.012532206252217,-0.051606021821499,-0.069410763680935],[0.039755366742611,0.019345281645656,-0.032490413635969]],[[0.010722749866545,0.0011712161358446,0.016424953937531],[0.018063668161631,-0.016388844698668,-0.076286412775517],[-0.10325546562672,0.059092003852129,0.014962184242904]],[[-0.010438432916999,0.055528324097395,0.030954064801335],[0.031836789101362,0.092738583683968,0.013682408258319],[-0.17130029201508,-0.087758041918278,-0.07159573584795]],[[-0.11799874156713,0.028865167871118,0.013418465852737],[0.023827459663153,0.085267454385757,0.046098746359348],[-0.027210934087634,0.1022190824151,-0.036602567881346]],[[0.10021682828665,0.028677571564913,0.042545735836029],[0.040001001209021,0.029509037733078,0.03366918861866],[-0.02435414865613,0.010908918455243,0.080757036805153]],[[-0.023074517026544,-0.025908289477229,-0.0022759542334825],[0.27429234981537,0.13089206814766,0.024885622784495],[-0.025428423658013,-0.025519382208586,-0.13695788383484]],[[0.010215617716312,-0.10576515644789,-0.075402118265629],[-0.013171689584851,0.10948593914509,0.033142011612654],[0.066837437450886,-0.092495247721672,-0.019775129854679]]],[[[0.10712235420942,0.052326943725348,-0.10880511254072],[0.0032162240240723,-0.063990019261837,0.018254892900586],[-0.095551043748856,-0.010977674275637,-0.0026672249659896]],[[0.053285147994757,0.091108687222004,-0.02555400878191],[0.012676206417382,0.075669981539249,-0.11387047916651],[0.070940986275673,0.051373600959778,-0.089783221483231]],[[-0.084045827388763,-0.09739338606596,-0.054918292909861],[0.13284397125244,0.0098578808829188,-0.040241841226816],[-0.099343217909336,0.010969213210046,-0.0147888911888]],[[0.11420416086912,-0.023873392492533,-0.061945598572493],[-0.06862685829401,-0.099451802670956,0.01581228338182],[0.017075076699257,0.15971547365189,0.043712228536606]],[[-0.071768030524254,-0.10711511969566,-0.14714907109737],[0.024458918720484,-0.14021515846252,-0.11382894963026],[0.01088073477149,-0.17183880507946,0.048940565437078]],[[0.01399839296937,0.091029182076454,-0.021840861067176],[0.038189236074686,-0.023724218830466,0.030648762360215],[0.14029897749424,-0.090456031262875,-0.12981875240803]],[[-0.12639078497887,0.034341052174568,-0.03952556848526],[-0.044043779373169,-0.042927004396915,0.071857906877995],[-0.12355419993401,-0.047664739191532,-0.098376549780369]],[[-0.075698278844357,-0.044388599693775,-0.013056376948953],[-0.053046155720949,-0.063657060265541,0.080147095024586],[-0.040188539773226,0.041718617081642,-0.059414148330688]],[[0.039133135229349,-0.10909477621317,0.014390085823834],[-0.0068805958144367,-0.20661474764347,-0.10147438943386],[0.010991033166647,-0.10996195673943,-0.049182523041964]],[[0.073505662381649,0.06970501691103,0.061705626547337],[-0.021071877330542,0.086976207792759,0.16233062744141],[0.15915973484516,0.019082367420197,-0.043818838894367]],[[-0.069937497377396,-0.17603300511837,0.10345943272114],[-0.12625934183598,-0.11036565899849,0.022179735824466],[0.12604570388794,-0.04933625459671,-0.021593019366264]],[[0.12893404066563,-0.02379135414958,0.04834434017539],[-0.066358909010887,0.055094566196203,-0.014885175041854],[-0.097743384540081,0.086663007736206,-0.048783272504807]],[[0.11035187542439,-0.0099266823381186,-0.058663923293352],[0.039368759840727,-0.059775043278933,0.0078649763017893],[0.018843416124582,-0.11573167145252,0.10130490362644]],[[-0.0010837423615158,0.075287751853466,0.049601729959249],[-0.058837346732616,0.19706562161446,0.086582019925117],[0.085958831012249,-0.017864486202598,-0.16894534230232]],[[-0.0010598155204207,-0.10458930581808,0.063422836363316],[-0.14791411161423,-0.13890717923641,0.060406763106585],[0.05584579706192,-0.046771548688412,-0.041703261435032]],[[0.048803448677063,-0.0030195803847164,0.012072681449354],[-0.023424685001373,0.22502003610134,0.14106349647045],[-0.086440064013004,-0.13798010349274,0.093848064541817]],[[0.034369867295027,-0.090498559176922,-0.083049707114697],[-0.11496140807867,-0.032836496829987,0.010650143027306],[0.011388468556106,-0.086060144007206,-0.031756643205881]],[[0.077499255537987,0.054336089640856,0.11786680668592],[0.062690757215023,-0.087294101715088,0.037500157952309],[-0.094668447971344,0.0014894056366757,-0.057968471199274]],[[-0.11892668902874,-0.038452427834272,-0.062863804399967],[-0.11577808111906,-0.084435932338238,-0.026023937389255],[-0.022591700777411,0.10224434733391,0.033278446644545]],[[0.079760827124119,-0.0166688375175,-0.0016921481583267],[-0.12841388583183,0.11581156402826,0.005422486923635],[-0.064798809587955,-0.060259271413088,0.038775987923145]],[[0.17314091324806,-0.040863212198019,-0.12820385396481],[-0.045532006770372,0.030801851302385,-0.047481790184975],[-0.064442910254002,-0.10432884842157,-0.02547119371593]],[[0.056990280747414,-0.16052611172199,-0.1068869382143],[-0.018645623698831,-0.034849666059017,0.15728288888931],[-0.00054282095516101,0.08475748449564,0.09287966042757]],[[0.17553599178791,0.024587199091911,-0.096149809658527],[-0.096848987042904,0.28573626279831,-0.23308707773685],[-0.009709145873785,-0.01720299385488,0.1310056746006]],[[-0.1123033836484,0.072987221181393,-0.090890787541866],[-0.17335829138756,-0.094694130122662,-0.012952974066138],[-0.17982147634029,-0.056071203202009,-0.061848543584347]],[[-0.10720372200012,-0.057527113705873,0.16661606729031],[-0.0010648493189365,-0.089253321290016,0.056648667901754],[-0.13127572834492,0.10578129440546,-0.014650536701083]],[[-0.066907495260239,-0.11464653164148,0.08272822201252],[-0.10374906659126,0.033204086124897,0.0064547150395811],[-0.025287762284279,-0.056444495916367,0.089321345090866]],[[0.064098969101906,-0.033914785832167,-0.02042935974896],[0.040876064449549,0.075402773916721,-0.067553266882896],[0.041787851601839,-0.034485425800085,-0.057726569473743]],[[0.043646078556776,0.018423087894917,0.10134031623602],[-0.13251900672913,0.24257451295853,0.18843369185925],[-0.011500669643283,0.022042319178581,-0.029012532904744]],[[-0.10135260224342,-0.048636954277754,0.060400724411011],[0.10656836628914,-0.033928018063307,-0.084912002086639],[-0.081797875463963,0.0067951749078929,-0.073852866888046]],[[0.079259224236012,0.0003263178805355,-0.11024402081966],[0.055821463465691,-0.21435767412186,0.046909872442484],[0.054949715733528,-0.028808021917939,-0.089125156402588]],[[-0.14967194199562,0.041669335216284,0.001111846533604],[-0.011624586768448,0.0055668507702649,-0.099794737994671],[0.076456531882286,-0.06826513260603,0.056894987821579]],[[-0.03196119889617,-0.1216878220439,0.10249097645283],[0.003889825893566,-0.014742245897651,-0.0036844382993877],[-0.023318333551288,0.0058902427554131,-0.12274327129126]]],[[[0.042363882064819,-0.025446657091379,0.0054021961987019],[-0.0050909984856844,0.010260287672281,-0.18062105774879],[-0.030214479193091,-0.036717157810926,-0.10740856826305]],[[-0.034228701144457,-0.097061358392239,0.025974618270993],[0.023814462125301,-0.092245444655418,0.10246859490871],[0.028039494529366,-0.07868742197752,0.10206416249275]],[[-0.031425572931767,0.033061940222979,0.048346806317568],[-0.14646896719933,-0.034347213804722,0.081151403486729],[0.077040992677212,0.0291657615453,0.11262238770723]],[[0.054286483675241,0.043271757662296,0.035075020045042],[-0.070201352238655,0.015094923786819,0.01152329146862],[-0.093212209641933,-0.020293068140745,-0.080267861485481]],[[-0.083908841013908,0.048675585538149,0.18270130455494],[0.0077449064701796,-0.063756600022316,0.035814378410578],[0.042766187340021,0.0016495221061632,0.063652038574219]],[[-0.03586333617568,0.026913089677691,0.015570995397866],[0.00079132750397548,-0.056262888014317,-0.01956813596189],[0.065741419792175,0.0055579473264515,-0.041390873491764]],[[-0.069050870835781,0.060823410749435,-0.035594187676907],[-0.036679573357105,-0.18116672337055,-0.018252147361636],[-0.048138320446014,-0.034965064376593,-0.049891378730536]],[[0.00471624545753,0.010044623166323,-0.017639387398958],[0.021408203989267,-0.1871512979269,-0.052871737629175],[-0.01028292812407,-0.084503464400768,-0.07023436576128]],[[-0.0972019135952,0.073461547493935,0.11201296746731],[-0.088840201497078,-0.051586486399174,0.049868375062943],[-0.060677900910378,0.032449316233397,-0.10209448635578]],[[0.12817777693272,-0.13724090158939,-0.023507580161095],[-0.010079641826451,0.053972505033016,0.19869974255562],[-0.0024058881681412,0.17351604998112,0.11580779403448]],[[0.072615064680576,0.017110580578446,0.11822307854891],[0.030114056542516,-0.15400063991547,0.012051067315042],[-0.088298350572586,-0.078215077519417,0.0031410756055266]],[[-0.047322619706392,-0.06337883323431,0.056809414178133],[0.017500398680568,-0.036745686084032,0.018076485022902],[-0.079010717570782,0.00674694404006,-0.00035254363319837]],[[0.00016721116844565,-0.069333419203758,-0.038559813052416],[-0.22539231181145,0.071254022419453,0.036683466285467],[0.020642139017582,-0.095608629286289,0.0053166635334492]],[[0.057147372514009,-0.033063393086195,-0.0038526786956936],[0.07214130461216,0.073465995490551,0.0013354598777369],[-0.10046728700399,-0.040330171585083,-0.10541248321533]],[[-0.058570265769958,0.011890248395503,0.0026226593181491],[-0.023640861734748,-0.020566573366523,-0.087677523493767],[-0.0012536062858999,-0.0073875952512026,-0.027350060641766]],[[0.058768194168806,-0.050102394074202,-0.095985189080238],[-0.17205767333508,0.070709027349949,0.11895845085382],[3.492459654808e-07,0.11876661330462,0.15232217311859]],[[0.033933874219656,0.13145762681961,0.011261138133705],[-0.059262357652187,-0.04677689820528,-0.10303296893835],[-0.0031092008575797,-0.087090939283371,-0.16393484175205]],[[0.024976961314678,0.022029593586922,0.045932188630104],[-0.0098340436816216,0.081913039088249,-0.16598856449127],[-0.077840745449066,-0.023399828001857,-0.019175345078111]],[[-0.17299282550812,-0.17567878961563,0.0029330281540751],[-0.086261905729771,0.095180317759514,0.14366868138313],[-0.010574586689472,-0.029024045914412,-0.015583800151944]],[[0.0063234702683985,0.034771755337715,0.0050757615827024],[0.12251033633947,0.063749566674232,0.073123686015606],[-0.0012799740070477,-0.13168741762638,0.024180950596929]],[[-0.098473057150841,-0.037231478840113,-0.069528467953205],[-0.038860000669956,0.021129993721843,-0.054705340415239],[0.11357818543911,0.13560664653778,0.15985970199108]],[[-0.03047545813024,0.055653255432844,0.081525705754757],[-0.039776518940926,0.031881354749203,-0.095210894942284],[0.024894751608372,0.011829148977995,0.013240220956504]],[[-0.14741125702858,-0.012266272678971,0.16814751923084],[0.21315582096577,0.056621268391609,0.044117879122496],[0.11735904961824,-0.19461505115032,0.046995852142572]],[[0.071081422269344,0.043734557926655,0.012738818302751],[-0.020265461876988,0.0765246078372,-0.026513539254665],[0.056910682469606,0.0060401153750718,0.055726267397404]],[[-0.031898483633995,0.025122456252575,0.019404049962759],[0.02550245821476,-0.26573166251183,0.056879121810198],[0.02133603580296,-0.040132127702236,0.037575665861368]],[[-0.045199032872915,-0.035256944596767,0.10208339989185],[-0.033799864351749,-0.1562160551548,-0.058820158243179],[0.048906959593296,-0.016001291573048,0.0054541155695915]],[[0.1403516381979,0.043645024299622,-0.049858953803778],[-0.029176257550716,-0.044320795685053,-0.064334087073803],[0.011951457709074,0.022498885169625,-0.047672610729933]],[[0.16670553386211,-0.093685053288937,-0.095979832112789],[0.086722910404205,0.031926069408655,0.044657614082098],[0.09518788009882,-0.016451396048069,0.031125381588936]],[[-0.021052729338408,-0.10091726481915,-0.016796736046672],[-0.13495093584061,-0.0109922606498,-0.014449802227318],[-0.13724257051945,0.0029380724299699,-0.01088722422719]],[[-0.011923734098673,0.089093387126923,-0.029305862262845],[0.035446565598249,0.082057379186153,-0.034761186689138],[-0.036672044545412,-0.026490101590753,0.029824204742908]],[[-0.0044501996599138,-0.093559451401234,0.058027807623148],[0.075297497212887,-0.014842823147774,-0.046562045812607],[-0.01308995205909,-0.095404259860516,0.097564503550529]],[[-0.043632697314024,0.0080655012279749,0.074477694928646],[-0.017566928640008,0.047294918447733,-0.022129394114017],[0.046867717057467,0.10081196576357,0.0051514585502446]]],[[[-0.052196394652128,-0.066470108926296,-0.020663905888796],[-0.01853503473103,-0.032165188342333,-0.024360861629248],[-0.018438210710883,-0.045797009021044,0.013706738129258]],[[0.0052875629626215,0.15424944460392,-0.21516391634941],[0.0024613898713142,0.067182615399361,-0.083332486450672],[-0.0064719580113888,0.030571622774005,-0.011984966695309]],[[-0.031191552057862,-0.10983539372683,0.0036602728068829],[-0.17353515326977,-0.0033825265709311,-0.0065949554555118],[-0.14521273970604,0.037455141544342,-0.01960676163435]],[[0.088813036680222,-0.13120971620083,0.28003397583961],[-0.085439585149288,-0.058060593903065,0.088090054690838],[0.02873121201992,-0.022186668589711,0.0021951645612717]],[[0.017353819683194,-0.028860822319984,-0.017878033220768],[-0.030420493334532,0.070228226482868,-0.028104051947594],[0.059945702552795,0.0042961053550243,-0.0020006520207971]],[[0.17820060253143,0.13205111026764,-0.044528737664223],[0.14398841559887,0.054610349237919,-0.11057856678963],[-0.029235288500786,0.0080355294048786,-0.12225323170424]],[[0.042585883289576,-0.072304747998714,0.018794164061546],[-0.090008452534676,0.070108734071255,-0.21407197415829],[0.0071935248561203,0.070915281772614,0.050646815448999]],[[0.052394211292267,-0.10794273018837,0.061618957668543],[0.033316727727652,-0.042827963829041,-0.12123027443886],[-0.022150043398142,0.021220257505774,-0.03743140399456]],[[0.15084603428841,0.066497795283794,-0.09325484931469],[-0.0088746510446072,-0.02313881739974,-0.086150877177715],[-0.014749143272638,-0.068446934223175,-0.01014197152108]],[[-0.012246982194483,0.011656151153147,0.058176342397928],[0.12470689415932,-0.099510282278061,-0.093246094882488],[-0.023914696648717,-0.040018655359745,-0.0030112965032458]],[[-0.020813012495637,0.15514442324638,-0.19518940150738],[0.020063284784555,-0.11029710620642,0.071543142199516],[-0.11856419593096,-0.018051207065582,0.040185902267694]],[[0.035653166472912,-0.0019841857720166,-0.041281957179308],[0.047453638166189,-0.10943618416786,-0.0030359956435859],[0.067793689668179,0.00074216368375346,-0.040429282933474]],[[-0.10690413415432,0.049760084599257,-0.14742946624756],[0.0090071558952332,0.19324886798859,-0.054089188575745],[0.13535250723362,0.050580829381943,-0.022923305630684]],[[-0.16269247233868,0.0574058778584,0.0581672526896],[-0.046515569090843,0.039230942726135,0.092475011944771],[-0.059204611927271,-0.047733940184116,0.11838340014219]],[[-0.077693447470665,0.080246686935425,0.063142165541649],[-0.0017087224405259,-0.044467285275459,-0.097458943724632],[-0.015021278522909,-0.081177063286304,0.0089970557019114]],[[0.12538336217403,0.084814071655273,-0.0025819910224527],[-6.1990562244318e-05,0.10126542299986,0.010676430538297],[-0.055699836462736,0.065419115126133,0.086438864469528]],[[-0.062266696244478,-0.065218791365623,-0.26050826907158],[-0.023269779980183,0.013290987350047,-0.067595362663269],[-0.050495494157076,0.051243957132101,0.019521420821548]],[[0.054160550236702,0.02471324801445,-0.12208405137062],[0.031824324280024,0.03798384219408,-0.14981161057949],[0.014716242440045,-0.015897139906883,-0.023783478885889]],[[-0.06297617405653,0.070852689445019,-0.041915476322174],[-0.088156551122665,0.0075553273782134,-0.013410025276244],[-0.028210962191224,-0.014503107406199,0.022037174552679]],[[-0.010048934258521,0.05634094402194,0.0088555561378598],[-0.045288447290659,0.046764060854912,-0.23782747983932],[-0.015872741118073,-0.030678493902087,0.10174869000912]],[[-0.034482523798943,0.1889297068119,-0.16312709450722],[0.011647230945528,0.030874233692884,-0.11642803251743],[0.10839428752661,-0.10855684429407,-0.0052485927008092]],[[-0.18263778090477,-0.066636204719543,0.097110137343407],[0.05289800837636,-0.15858712792397,0.058738209307194],[-0.060961488634348,0.035459335893393,0.14359132945538]],[[0.011703593656421,0.047976236790419,-0.18107484281063],[-0.17194396257401,0.10205639153719,-0.21354141831398],[0.02079795114696,0.10722531378269,-0.13875038921833]],[[0.072129584848881,-0.18861332535744,-0.025296477600932],[-0.036195199936628,-0.029941262677312,-0.1407824754715],[0.016016118228436,-0.10680585354567,0.021889932453632]],[[0.009544282220304,-0.056022994220257,-0.0022619105875492],[-0.015017565339804,-0.033664733171463,0.050182472914457],[0.0082777552306652,-0.048121646046638,-0.077542386949062]],[[0.050728481262922,-0.11358540505171,0.051773108541965],[-0.013223844580352,-0.045352824032307,0.017422987148166],[-0.01622224599123,-0.056769665330648,0.0079888999462128]],[[-0.051684569567442,0.026102332398295,0.00042139415745623],[-0.072637662291527,0.050741292536259,-0.0036473958753049],[0.0060096657834947,0.050682362169027,-0.021453648805618]],[[0.058623928576708,0.25263345241547,0.1433098167181],[0.022301163524389,0.32335433363914,0.0030984436161816],[0.018640220165253,0.011417420580983,0.025042278692126]],[[0.016652017831802,0.11856985837221,0.08388539403677],[0.026330983266234,-0.076373174786568,0.010854665189981],[-3.2067749998532e-05,0.039223991334438,0.02136922813952]],[[-0.11567638814449,-0.090515047311783,0.19963094592094],[0.0020374064333737,0.04374323785305,0.039002239704132],[-0.0082639455795288,0.010355874896049,-0.055326979607344]],[[0.079772651195526,0.071362674236298,0.033509526401758],[0.012490540742874,-0.026413546875119,-0.14058616757393],[-0.0029016153421253,-0.042413927614689,0.00090345030184835]],[[0.13002994656563,-0.22030137479305,-0.006388271227479],[0.096989281475544,-0.066016286611557,0.028195977210999],[0.026979371905327,0.0048257582820952,0.0087892226874828]]],[[[-0.037353023886681,0.054703697562218,0.005370395258069],[0.028873926028609,-0.12917499244213,0.056109216064215],[0.056415658444166,0.038696099072695,-0.0035130504984409]],[[-0.035079497843981,0.0097249615937471,0.03339883312583],[-0.030845833942294,0.22298793494701,0.062929913401604],[-0.085598692297935,-0.017878575250506,0.018899718299508]],[[-0.01775018684566,-0.0042475746013224,-0.0035016082692891],[0.11485685408115,-0.14183117449284,0.051427207887173],[0.11146724224091,0.061748206615448,-0.07770873606205]],[[-0.070450372993946,0.0076846061274409,0.005014861933887],[0.10367637127638,-0.073395080864429,0.11667641252279],[0.015861447900534,-0.093699559569359,0.055306244641542]],[[-0.25455850362778,-0.063122875988483,-0.12603358924389],[-0.1307023614645,-0.021484930068254,-0.10198182612658],[-0.051716700196266,-0.0064364788122475,-0.076308459043503]],[[0.13381181657314,0.0019329049391672,0.014228622429073],[0.032243672758341,-0.11068069934845,-0.070125043392181],[-0.010585394687951,-0.20244413614273,0.044503189623356]],[[0.018288442865014,0.091471835970879,0.053138226270676],[0.090667396783829,0.072146236896515,-0.083398886024952],[-0.022291192784905,-0.016989329829812,-0.11834409087896]],[[-0.054401736706495,0.046066921204329,0.010282130911946],[-0.0279760081321,-0.1636871099472,-0.023807527497411],[0.028724065050483,0.0565773434937,0.04362491518259]],[[0.067431040108204,-0.03495742380619,0.035699002444744],[-0.010367771610618,0.10592120140791,0.043605662882328],[0.075606517493725,0.067900195717812,0.16671492159367]],[[-0.075262039899826,0.010068167001009,0.088270246982574],[0.03783280774951,0.16477687656879,0.040510721504688],[0.09381902217865,0.14450381696224,0.015889951959252]],[[-0.11053834110498,0.1710839420557,-0.13208001852036],[-0.020282717421651,0.021968280896544,-0.064148992300034],[-0.03009819239378,0.10012148320675,0.10568982362747]],[[-0.13744820654392,-0.29675689339638,-0.10340948402882],[-0.058459166437387,-0.20992560684681,-0.1349805444479],[0.0064709992147982,-0.046250876039267,0.065025396645069]],[[-0.066379234194756,0.012853795662522,-0.10902028530836],[-0.050103586167097,0.090769171714783,0.10640769451857],[-0.012748712673783,0.03640990704298,-0.18770554661751]],[[0.058232225477695,-0.040440090000629,-0.01319791097194],[0.033832546323538,0.0098161986097693,-0.0048034191131592],[0.057348810136318,-0.054280176758766,-0.082409843802452]],[[-0.029151963070035,-0.048364009708166,0.0014704331988469],[-0.028732936829329,0.20760111510754,0.18345202505589],[0.03829363361001,0.067188262939453,-0.02235228009522]],[[0.15010686218739,0.027734242379665,-0.083871960639954],[0.0013310513459146,-0.093780800700188,-0.0098390905186534],[0.17520758509636,0.0061265514232218,0.057282231748104]],[[-0.0024244501255453,0.071281604468822,0.029873095452785],[0.064262524247169,0.0082398103550076,0.0031642806716263],[0.024286104366183,-0.075531199574471,0.0057167499326169]],[[0.048631459474564,0.034456547349691,0.10925111174583],[-0.061536286026239,0.017470786347985,0.037099622189999],[0.0086845364421606,-0.085163459181786,-0.10705314576626]],[[0.21025584638119,-0.0063430825248361,0.03535034507513],[0.018901070579886,-0.028229784220457,0.010974967852235],[0.0652194917202,-0.066536828875542,0.039447251707315]],[[0.016538737341762,0.09239374101162,0.025803152471781],[0.023127358406782,-0.015025856904685,0.020486975088716],[-0.024190563708544,0.053957249969244,0.02239572070539]],[[0.12363395094872,-0.11223684996367,-0.051404505968094],[0.12750868499279,-0.25133633613586,0.012586981989443],[-0.0023787217214704,0.027563273906708,0.065650001168251]],[[-0.037320747971535,0.063580699265003,-0.12360940873623],[0.046148147433996,-0.093845292925835,0.025727562606335],[0.061584837734699,0.077082201838493,0.095551624894142]],[[-0.088791862130165,0.1805744767189,0.052180930972099],[-0.12447275221348,0.17017525434494,0.036107834428549],[-0.13308401405811,0.019309865310788,-0.011196967214346]],[[0.098888665437698,0.033881612122059,0.0607302300632],[-0.036427397280931,0.034519281238317,0.05875539034605],[-0.035004571080208,0.067483946681023,0.02228251285851]],[[0.032153967767954,0.13120655715466,-0.00074715720256791],[-0.049308456480503,0.077379465103149,-0.029502857476473],[-0.014246463775635,-0.045292485505342,-0.088605649769306]],[[-0.02256228402257,-0.041735138744116,-0.012222249060869],[-0.02797619625926,0.031308427453041,-0.016942717134953],[-0.010106034576893,0.011999082751572,0.071746915578842]],[[0.058515805751085,0.014884121716022,-0.051580898463726],[0.030555402860045,0.040519032627344,0.027822045609355],[0.0049620517529547,-0.038330126553774,-0.061906911432743]],[[-0.035828746855259,-0.01295424811542,-0.12770208716393],[-0.023888371884823,0.18533703684807,0.029683213680983],[-0.061859026551247,0.079959139227867,0.16083268821239]],[[-0.10980240255594,0.090359568595886,0.08478832244873],[-0.13251055777073,-0.058708015829325,0.014609857462347],[-0.14279575645924,0.11359685659409,0.020671140402555]],[[0.044833403080702,-0.016403771936893,0.002832998521626],[0.11171238124371,-0.060190714895725,0.041746273636818],[-0.076774835586548,-0.0090296510607004,-0.040195610374212]],[[-0.082380287349224,0.0024935295805335,0.038985755294561],[-0.059295874089003,0.035648185759783,0.064980618655682],[-0.013659991323948,0.074090093374252,0.019752720370889]],[[0.066942475736141,-0.051022887229919,-0.06677021831274],[0.03080621175468,-0.038790263235569,-0.085910737514496],[-0.03246433287859,-0.035917051136494,0.010335268452764]]],[[[-0.014297211542726,-0.10137394070625,-0.041062563657761],[0.053089752793312,0.047372106462717,0.024301951751113],[0.040634654462337,0.0064956448040903,-0.033307619392872]],[[-0.0070898877456784,-0.073584198951721,-0.08707632869482],[-0.025093426927924,-0.12443662434816,-0.096163369715214],[-0.10706359893084,-0.031246051192284,-0.066122755408287]],[[-0.0045658024027944,-0.02653544023633,-0.041988804936409],[0.040744546800852,-0.0071089435368776,0.043975479900837],[0.025263855233788,-0.071177661418915,0.038828525692225]],[[-0.024008115753531,-0.04992638528347,0.006220128852874],[-0.036998424679041,0.11677400767803,0.017087897285819],[-0.042896829545498,0.011871645227075,-0.0020561837591231]],[[-0.08779476583004,-0.10814867913723,-0.017481604591012],[-0.042523436248302,-0.093225039541721,0.019162775948644],[0.050193373113871,0.0093499105423689,-0.041604798287153]],[[-0.037403386086226,-0.023845719173551,0.061978910118341],[0.016384897753596,-0.021814662963152,-0.028498459607363],[0.042399533092976,0.081231191754341,-0.056279186159372]],[[0.047580365091562,0.034325018525124,-0.066899299621582],[-0.06617484241724,-0.03726839646697,-0.076851345598698],[0.066740252077579,0.016184421256185,0.073354788124561]],[[0.017261615023017,0.041226040571928,0.020007818937302],[-0.039677571505308,0.11549506336451,0.026932088658214],[-0.10991625487804,-0.082421913743019,0.0033442617859691]],[[0.01554408390075,0.0081404484808445,0.025121610611677],[0.014981832355261,0.0052635981701314,-0.078945308923721],[0.067197725176811,-0.069746628403664,0.011180347763002]],[[0.043385215103626,0.051219835877419,0.078304767608643],[-0.099897749722004,0.0018812499474734,-0.014562976546586],[-0.12845352292061,0.038996241986752,0.028652055189013]],[[0.055226143449545,0.0096237948164344,0.000175076405867],[-0.033526856452227,0.0037580002099276,-0.030694399029016],[-0.074428804218769,0.065817914903164,-0.0020106181036681]],[[-0.063764579594135,0.053939968347549,0.048937663435936],[0.016726771369576,0.040720567107201,-0.019982105121017],[-0.052292544394732,-0.078117348253727,0.042763635516167]],[[-0.021143905818462,0.033267222344875,0.11769209802151],[-0.052507363259792,-0.09405118227005,-0.026517884805799],[-0.059930995106697,-0.02223689109087,0.12613387405872]],[[0.061984907835722,0.053056079894304,0.011426786892116],[-0.022191364318132,-0.08650141954422,0.017875358462334],[-0.020102124661207,0.079994514584541,-0.096977017819881]],[[-0.039924740791321,0.0300527010113,0.056219253689051],[0.017096217721701,-0.023779658600688,0.061791501939297],[-0.063350729644299,-0.010880311951041,-0.027994906529784]],[[-0.051673039793968,-0.012361248023808,0.033631887286901],[-0.026555938646197,0.018839618191123,0.012929324060678],[0.034040592610836,-0.0090587148442864,0.00057150679640472]],[[0.032250292599201,0.027878658846021,0.02378948777914],[-0.024835841730237,-0.11796884983778,0.050036381930113],[-0.050007984042168,-0.018028309568763,0.070141434669495]],[[0.0047335275448859,-0.06514198333025,0.035483114421368],[0.036219000816345,-0.015669289976358,0.018731206655502],[0.018296191468835,-0.02361173927784,-0.016966791823506]],[[-0.037406355142593,0.12185388803482,-0.04891162738204],[-0.039355359971523,0.052188243716955,-0.092590436339378],[0.052418634295464,0.01069872174412,-0.0038796418812126]],[[0.032983183860779,-0.0066987061873078,0.00083420576993376],[0.10595647990704,-0.033618036657572,-0.01886123791337],[0.018334303051233,-0.047305107116699,-0.067408956587315]],[[-0.014959531836212,0.072673559188843,-0.010312674567103],[0.016586745157838,-0.058311894536018,-0.032075442373753],[0.086908832192421,-0.15475976467133,0.090971991419792]],[[-0.10591048002243,0.0059649832546711,-0.070678040385246],[0.10206375271082,0.047495421022177,0.026268489658833],[0.070324547588825,-0.012629947625101,-0.055220820009708]],[[-0.0050582666881382,0.042533542960882,-0.067637912929058],[0.048251483589411,-0.045805431902409,0.052050281316042],[0.082218565046787,-0.067461118102074,-0.040578320622444]],[[-0.10243508219719,0.055475603789091,0.0010095281759277],[-0.020633721724153,0.04286565259099,-0.013123171404004],[0.017654428258538,0.059324841946363,-0.029447607696056]],[[0.0050754575058818,0.013161563314497,-0.020785028114915],[0.056844111531973,0.099683530628681,-0.069938495755196],[-0.049623556435108,-0.0073350663296878,-0.048561684787273]],[[-0.05949567630887,-0.00090488546993583,0.0095331324264407],[0.030904958024621,0.01336867082864,-0.031653307378292],[-0.089839957654476,0.13232710957527,-0.0097098965197802]],[[0.06646866351366,0.053342629224062,0.055604923516512],[0.12355726957321,0.1392477452755,0.067781880497932],[-0.021202260628343,0.13315050303936,0.088314428925514]],[[0.067561186850071,-0.073582962155342,-0.075972937047482],[0.14486153423786,0.11033608019352,-0.075889892876148],[0.094522461295128,-0.069267362356186,-0.12429907172918]],[[0.066475905478001,-0.099893324077129,-0.033932026475668],[-0.0024273733142763,-0.056038908660412,0.11684218794107],[0.032584760338068,-0.052255041897297,0.022280123084784]],[[0.0079828146845102,-0.035429801791906,-0.0092424983158708],[-0.010894884355366,0.087477616965771,0.017421595752239],[0.074550203979015,-0.080028124153614,-0.002992526628077]],[[-0.047126218676567,-0.031086482107639,0.064130187034607],[0.016983544453979,-0.03672468662262,0.05396756157279],[-0.00084465718828142,-0.05971996858716,0.04277278855443]],[[-0.030420264229178,-0.1002114340663,-0.0019003482302651],[-0.025980537757277,0.0074440059252083,0.051686152815819],[0.0044060773216188,0.049591019749641,0.048986732959747]]],[[[-0.034728053957224,-0.059980019927025,-0.033926043659449],[-0.010111471638083,-0.070735409855843,-0.059044998139143],[-0.0098887635394931,-0.070088364183903,0.030439775437117]],[[0.0012912024976686,0.0015365543076769,-0.028823457658291],[-0.02893572114408,0.081041134893894,-0.14194047451019],[0.075561493635178,0.18081420660019,-0.057316780090332]],[[-0.10232882201672,0.030643872916698,0.017356298863888],[0.0085919108241796,-0.1586229801178,0.13900019228458],[0.010542795993388,-0.068816281855106,-0.047478944063187]],[[0.0064970906823874,-0.028038922697306,-0.038441568613052],[-0.0057682287879288,-0.079788021743298,0.043541178107262],[-0.045683041214943,-0.093263499438763,0.059678260236979]],[[-0.066746279597282,-0.13859625160694,-0.10673569887877],[-0.016271442174911,-0.031701814383268,0.037717778235674],[0.0069837034679949,0.033763576298952,-0.068976648151875]],[[0.016882948577404,-0.0069934693165123,0.033581495285034],[-0.014093725942075,0.017262443900108,-0.048854865133762],[0.047624263912439,-0.0231141038239,0.05577639490366]],[[0.023441094905138,-0.047697618603706,-0.048084136098623],[-0.046122688800097,-0.033335700631142,-0.057844650000334],[-0.016586516052485,0.0039299051277339,-0.0083577008917928]],[[-0.012074581347406,0.014991754665971,0.012513089925051],[0.020938746631145,0.045016415417194,0.049703616648912],[0.098491005599499,0.058438036590815,0.057698149234056]],[[-0.054361991584301,-0.017238253727555,0.11887693405151],[0.037126664072275,0.073217645287514,0.046439327299595],[-0.013040384277701,-0.023558806627989,0.020369110628963]],[[-0.13465787470341,0.031342022120953,-0.12228133529425],[0.036693144589663,0.090406566858292,-0.0094208074733615],[0.070929504930973,0.088312387466431,0.15996281802654]],[[-0.034508798271418,0.086528852581978,-0.0098144104704261],[0.012851592153311,0.043041568249464,-0.14365354180336],[-0.068485759198666,-0.035857059061527,-0.055427268147469]],[[-0.11965902149677,-0.038943096995354,-0.10462043434381],[0.059055808931589,-0.034294955432415,-0.13044087588787],[0.06436563283205,0.033508963882923,-0.17682664096355]],[[0.015838654711843,0.099904529750347,0.016880881041288],[-0.017066700384021,0.044224131852388,-0.075857177376747],[0.02227539382875,0.13612352311611,-0.040239743888378]],[[-0.02633785456419,0.01844622567296,-0.024513816460967],[0.11023931205273,0.090490952134132,-0.040388960391283],[-0.054977800697088,-0.08260640501976,-0.10494762659073]],[[-0.040609955787659,-0.017029993236065,0.025071695446968],[-0.033666450530291,0.016746450215578,0.076697237789631],[0.053939543664455,0.077471375465393,0.0045148185454309]],[[0.010410738177598,0.0096076726913452,-0.10197249799967],[0.056864969432354,-0.036668621003628,-0.0025542210787535],[0.11180222034454,0.035340208560228,0.05639411881566]],[[0.020682061091065,-0.004961630795151,-0.0059688542969525],[0.016484154388309,-0.048089530318975,-0.034185890108347],[0.026547852903605,0.041749857366085,-0.21185329556465]],[[-0.0078626312315464,-0.010121018625796,0.071976587176323],[0.020385397598147,-0.065614596009254,0.030608732253313],[-0.037326235324144,-0.025740705430508,-0.018332585692406]],[[0.045689892023802,-0.01015392318368,0.053440351039171],[0.08442397415638,0.061540696769953,0.044247891753912],[-0.0090808039531112,-0.099766418337822,0.035479493439198]],[[0.02414883300662,0.008603255264461,-0.0013100809883326],[0.0065007172524929,0.044710710644722,0.046270821243525],[-0.026378473266959,0.09845032542944,-0.051533773541451]],[[-0.04630171880126,-0.043860845267773,-0.042487651109695],[0.057254333049059,-0.059299603104591,-0.16251772642136],[-0.0269492007792,0.096106834709644,-0.20337557792664]],[[0.043440882116556,0.042002890259027,0.012821287848055],[0.10941114276648,-0.10379034280777,0.067110076546669],[0.010986031964421,-0.057638239115477,-0.078260585665703]],[[-0.15686099231243,-0.035847183316946,-0.029749920591712],[-0.11855790019035,0.031634666025639,-0.034631196409464],[-0.052647646516562,0.13673311471939,-0.20706413686275]],[[-0.021934946998954,0.06250386685133,0.0015338500961661],[0.048316042870283,-0.050515979528427,0.049226671457291],[0.054813995957375,0.065625585615635,0.084652505815029]],[[0.053176455199718,-0.005092503502965,0.033160034567118],[-0.062162701040506,-0.016961285844445,-0.04534662142396],[-0.010092092677951,-0.083403259515762,0.087470501661301]],[[0.049630407243967,-0.060123585164547,0.068635337054729],[-0.010225592181087,0.0048941853456199,-0.064416073262691],[0.059222392737865,-0.1059534996748,-0.15446770191193]],[[0.023724637925625,0.0099703287705779,0.024736551567912],[0.026710631325841,0.018464526161551,0.018065519630909],[-0.07977356761694,-0.055476617068052,0.0030425940640271]],[[-0.027767268940806,0.16030988097191,-0.26744559407234],[-0.0078311963006854,0.11146371811628,0.087509259581566],[-0.069697245955467,0.21736921370029,0.2015745639801]],[[0.0098053626716137,-0.036047205328941,0.038905866444111],[0.084490031003952,0.0021903715096414,-0.099414855241776],[-0.010566087439656,-0.019217289984226,-0.00036765143158846]],[[-0.052636932581663,0.053895756602287,0.054568260908127],[0.0080847460776567,-0.056500062346458,0.069501787424088],[-0.090999729931355,0.0096368249505758,0.077474094927311]],[[0.062114231288433,-0.055420283228159,-0.024824133142829],[-0.033049650490284,0.062578126788139,-0.094201758503914],[-0.025522239506245,0.020219510421157,-0.069901064038277]],[[0.019884770736098,-0.0090951332822442,0.0040213316679001],[-0.053228724747896,0.045169875025749,-0.01771136187017],[0.047990761697292,-0.026019297540188,-0.027692448347807]]],[[[0.14124222099781,-0.10730186104774,-0.070693619549274],[-0.031864773482084,0.12784212827682,-0.12263210117817],[-0.032460860908031,0.13979141414165,-0.017879851162434]],[[-0.014745470136404,-0.082485698163509,0.0084125157445669],[0.091861359775066,-0.020232608541846,-0.08536222577095],[0.058808196336031,-0.0058057652786374,0.040618855506182]],[[-0.080990873277187,0.1199367120862,0.11120148748159],[-0.057039517909288,-0.0085861310362816,-0.13937194645405],[-0.054862786084414,-0.10816173255444,0.091512739658356]],[[-0.012659573927522,-0.061848737299442,-0.0085723539814353],[0.017441974952817,0.010323897004128,-0.020029885694385],[-0.081150740385056,0.066504403948784,-0.044094510376453]],[[0.081107504665852,-0.047232873737812,0.053388200700283],[0.10138867050409,0.094760678708553,-0.090531289577484],[-0.035348262637854,-0.029197696596384,0.044403452426195]],[[-0.37447369098663,-0.22908629477024,0.04025037959218],[0.0079148774966598,-0.280616492033,-0.10809876769781],[0.27085727453232,0.074391283094883,0.14453534781933]],[[0.15741515159607,-0.011687517166138,0.026445608586073],[0.026653207838535,0.0014358925400302,-0.034140449017286],[0.10202368348837,-0.1056025326252,-0.028667762875557]],[[0.016061527654529,0.056570947170258,-0.099343217909336],[-0.18121998012066,-0.037136472761631,-0.17209914326668],[0.10057447850704,0.010881364345551,-0.0061675761826336]],[[0.054004799574614,-0.10145445168018,0.020943919196725],[0.10712770372629,-0.041838508099318,-0.073465473949909],[-0.01533673144877,-0.037617262452841,0.063953384757042]],[[0.066215239465237,0.082664608955383,-0.0051391599699855],[0.045555554330349,0.26304993033409,0.25177559256554],[-0.25344261527061,0.08251566439867,0.16136141121387]],[[0.055867694318295,-0.13970147073269,0.092957600951195],[0.025310941040516,0.13829676806927,0.078063152730465],[-0.13513939082623,-0.11550609767437,-0.18085622787476]],[[0.032994195818901,-0.18749597668648,-0.031256586313248],[0.1390138566494,-0.10146576911211,-0.01560977846384],[0.16931229829788,0.12775839865208,-0.027771431952715]],[[0.12114012241364,-0.017760572955012,0.0525515191257],[0.08000722527504,-0.022180425003171,-0.12009890377522],[0.015300843864679,0.04485535249114,-0.083164550364017]],[[-0.010292884893715,0.11266752332449,0.060270708054304],[-0.29010051488876,-0.039134055376053,0.20499481260777],[-0.11044519394636,-0.19192452728748,-0.009717795997858]],[[0.12558898329735,0.13780638575554,-0.044934533536434],[-0.0055527104996145,0.042589955031872,0.037062663584948],[0.010751804336905,0.027775749564171,-0.14653420448303]],[[-0.077370375394821,0.079971134662628,0.012533007189631],[-0.031770061701536,-0.042378898710012,0.16670845448971],[0.022028941661119,-0.13485996425152,0.18713730573654]],[[-0.071644119918346,-0.037195526063442,-0.00071462464984506],[0.094025388360023,0.013159248046577,-0.025598371401429],[0.029272489249706,0.056821636855602,-0.011514162644744]],[[0.026332827284932,0.011448818258941,-0.0036666104570031],[-0.078815959393978,0.077402718365192,-0.024591911584139],[-0.083726100623608,-0.1515084952116,-0.007882496342063]],[[0.26952391862869,-0.29784381389618,-0.12529167532921],[0.083857662975788,0.016554338857532,-0.011165210977197],[-0.079038321971893,0.10252964496613,-0.041108272969723]],[[0.019488729536533,-0.065934337675571,-0.020693434402347],[-0.028275268152356,-0.16344718635082,0.02771064825356],[-0.094568967819214,-0.10980681329966,0.026143856346607]],[[-0.050065197050571,-0.28090566396713,-0.11184418201447],[0.073289290070534,0.073662161827087,0.15607258677483],[0.061432335525751,0.016718501225114,0.058391481637955]],[[0.11920085549355,0.12576405704021,0.052495833486319],[-0.04864415153861,0.13222344219685,0.040542099624872],[-0.075648956000805,-0.024376027286053,-0.098808027803898]],[[0.086685873568058,0.10148191452026,0.053742717951536],[-0.041252203285694,-0.084873229265213,0.044858690351248],[-0.0042070872150362,-0.27667620778084,0.0039251251146197]],[[-0.089489966630936,0.10623072087765,-0.053056839853525],[0.0031447513028979,-0.076048940420151,-0.20417815446854],[-0.01751795783639,0.12359698116779,0.10785028338432]],[[0.0050527956336737,-0.028294151648879,0.056158300489187],[-0.075512230396271,-0.11275209486485,-0.17425613105297],[0.083571143448353,0.04661176353693,-0.054623071104288]],[[0.24759203195572,0.059362631291151,-0.0083137517794967],[0.02938736975193,-0.014949316158891,-0.18813939392567],[-0.092082649469376,-0.12159429490566,0.0064102406613529]],[[0.030134798958898,0.024791033938527,-0.020626932382584],[-0.060574002563953,0.066817209124565,-0.020284643396735],[0.030261289328337,-0.02336186543107,-0.013496317900717]],[[0.25209754705429,-0.030892487615347,-0.056020084768534],[0.11619435250759,0.14601136744022,0.11570365726948],[-0.15883453190327,0.038127530366182,0.063395075500011]],[[-0.038376182317734,-0.0053090425208211,0.050188776105642],[-0.13393387198448,-0.18856330215931,-0.010663192719221],[-0.044804252684116,0.0060571189969778,-0.13075953722]],[[0.073586046695709,0.087988518178463,-0.011469325982034],[-0.088818162679672,0.070912837982178,0.075204871594906],[-0.12468904256821,-0.062729164958,-0.028321404010057]],[[0.089065253734589,-0.028611743822694,0.071198314428329],[-0.096755526959896,-0.12709802389145,0.11202290654182],[-0.068506419658661,-0.081771478056908,-0.081893794238567]],[[-0.078399278223515,-0.13791480660439,0.0073588457889855],[-0.095770701766014,-0.10515858232975,0.030434152111411],[-0.029738632962108,-0.086612246930599,-0.01686335913837]]],[[[0.024906992912292,-0.0094331866130233,-0.10036913305521],[-0.039733428508043,-0.020509462803602,-0.013449653051794],[-0.030994648113847,-0.062431301921606,-0.066513553261757]],[[0.077999345958233,0.10435225069523,-0.014160661026835],[0.069614633917809,-0.056023765355349,-0.0075904317200184],[-0.012939653359354,-0.12837351858616,-0.016085706651211]],[[-0.00044945406261832,0.011158750392497,-0.043182414025068],[-0.035934373736382,0.054969511926174,0.02469939365983],[-0.14537788927555,0.07287060469389,0.083189487457275]],[[0.0046305111609399,-0.009875226765871,-0.0045767636038363],[-0.086503855884075,-0.0099090505391359,0.1332029402256],[-0.017128782346845,0.03775804117322,0.057825412601233]],[[0.049185231328011,-0.00020763544307556,0.081493750214577],[0.0046122930943966,-0.011531843803823,-4.3615720642265e-05],[0.0089197093620896,-0.035172935575247,0.024800006300211]],[[-0.045619074255228,0.0091854892671108,0.01949174515903],[0.10182239115238,-0.061761360615492,-0.042925171554089],[-0.063465088605881,-0.12247399240732,-0.0014083890710026]],[[-0.016976356506348,-0.014344691298902,-0.084715381264687],[-0.063423819839954,-0.076030813157558,0.081616409122944],[0.064498379826546,0.092990003526211,0.049159150570631]],[[-0.0065806079655886,-0.11974087357521,-0.032332859933376],[-0.10125982016325,-0.089632704854012,-0.038154006004333],[-0.079506605863571,-0.11778823286295,0.0009689224534668]],[[0.10385242849588,-0.06523972004652,0.0077526555396616],[-0.0077671483159065,-0.07090001553297,0.020957462489605],[-0.10131617635489,-0.15557965636253,-0.020660189911723]],[[0.030428066849709,0.068738013505936,-0.086383491754532],[0.14265818893909,0.014453599229455,-0.075629189610481],[-0.025904877111316,-0.047398298978806,-0.038070019334555]],[[-0.011457502841949,0.080747924745083,-0.14938959479332],[-0.1284975707531,0.086705707013607,-0.0057387426495552],[0.011574115604162,0.24350334703922,-0.21126566827297]],[[0.007811130490154,0.088287144899368,0.057860877364874],[-0.011133165098727,-0.061854306608438,-0.017341645434499],[-0.065797977149487,0.081196017563343,0.041991479694843]],[[-0.016760786995292,0.041042268276215,0.019810849800706],[-0.041254010051489,0.13857509195805,0.089021481573582],[-0.015731604769826,-0.017624333500862,0.021177280694246]],[[-0.056254774332047,0.029379846528172,-0.029417833313346],[0.033451862633228,-0.063970372080803,-0.028436159715056],[-0.017829395830631,0.099365793168545,0.05583656206727]],[[-0.037243463099003,-0.023513091728091,-0.01148980949074],[-0.023069750517607,0.0033607627265155,0.045591846108437],[-0.037727214396,-0.00068085570819676,0.033832523971796]],[[0.017520252615213,0.094183675944805,0.1525868922472],[-0.042144674807787,0.064812891185284,0.15900729596615],[0.067973218858242,0.11101068556309,-0.023555770516396]],[[-0.01419822871685,0.031483937054873,-0.0034679644741118],[-0.0093528414145112,0.11934091150761,-0.090578310191631],[-0.0054139238782227,0.097965814173222,0.23659145832062]],[[0.079141892492771,-0.024828609079123,0.0066921566613019],[-0.024775533005595,0.054713822901249,0.14532524347305],[-0.0090473834425211,-0.042179487645626,0.058758918195963]],[[-0.002891693264246,0.021825022995472,-0.086037650704384],[-0.0012242123484612,-0.098255828022957,-0.051374260336161],[0.055508777499199,-0.099658437073231,-0.045119255781174]],[[-0.014539680443704,0.034968543797731,-0.054755762219429],[-0.010978309437633,0.025606043636799,0.015565898269415],[-0.0055206953547895,0.098587930202484,-0.078739792108536]],[[0.080823056399822,0.011175828054547,-0.11164792627096],[0.11898695677519,-0.00655831489712,-0.12265176326036],[-0.024568010121584,-0.061815436929464,-0.0077129215933383]],[[0.04033936932683,-0.0018138474551961,0.032753758132458],[0.095568776130676,0.0730215087533,-0.034112296998501],[0.05901325494051,0.15714804828167,-0.068832725286484]],[[-0.020210981369019,0.098858460783958,-0.24796429276466],[0.053806275129318,-0.058145634829998,-0.075471319258213],[0.07478504627943,-0.010035908780992,0.15090262889862]],[[0.024910625070333,-0.097838126122952,0.011272616684437],[-0.0411646515131,0.16664843261242,-0.12208475917578],[-0.066103130578995,0.05269367992878,-0.012270950712264]],[[0.14353176951408,-0.021168043836951,0.027860507369041],[0.0036188040394336,-0.075562104582787,-0.037523310631514],[-0.045888621360064,-0.010554200038314,-0.083552770316601]],[[0.031822007149458,0.03048425540328,-0.012997282668948],[0.063499145209789,0.057461593300104,-0.063806749880314],[0.023548291996121,-0.018944781273603,-0.037217259407043]],[[-0.072514049708843,-0.023088725283742,-0.045575316995382],[-0.04214234277606,-0.067168161273003,0.11815770715475],[-0.012290669605136,0.062315911054611,0.12189540266991]],[[-0.035252343863249,0.075581647455692,0.094098553061485],[-0.0048540900461376,0.17773370444775,0.038323279470205],[0.20299881696701,0.10845063626766,-0.19667209684849]],[[-0.080479487776756,-0.05869933962822,0.035950317978859],[-0.059238497167826,-0.029615398496389,0.085087962448597],[-0.16362592577934,-0.055626109242439,0.052638560533524]],[[-0.023486563935876,-0.16189648211002,-0.044917907565832],[-0.026611849665642,0.002114781877026,-0.039157215505838],[-0.05205774307251,-0.040345590561628,0.0059235543012619]],[[0.070519469678402,-0.064329512417316,-0.036504723131657],[0.038867488503456,0.048603434115648,-0.065062187612057],[-0.010885385796428,-0.15685652196407,-0.024416586384177]],[[0.090384639799595,0.035643242299557,-0.097478143870831],[0.098415940999985,-0.35282927751541,0.16916072368622],[0.028752811253071,0.14897941052914,0.083218984305859]]],[[[-0.071322433650494,0.037417478859425,-0.023248631507158],[-0.075660265982151,-0.14303605258465,0.01142733823508],[-0.080035962164402,-0.093701474368572,0.026855669915676]],[[-0.025940699502826,-0.044193174690008,0.010324815288186],[-0.017060039564967,-0.062338672578335,0.10164307057858],[0.036337621510029,0.048759754747152,-0.050671901553869]],[[0.065257720649242,0.0064237448386848,0.14657041430473],[0.11254171282053,0.012501462362707,0.074150189757347],[-0.10476572811604,0.048696480691433,0.009293700568378]],[[0.01304096262902,0.075256556272507,-0.0050704996101558],[0.078583858907223,-0.026080891489983,0.020045531913638],[-0.013447692617774,-0.04703601077199,0.065285868942738]],[[0.03473836928606,-0.025918496772647,0.14645837247372],[0.0053692744113505,0.071510247886181,0.030739549547434],[0.042344827204943,-0.11453272402287,0.092237077653408]],[[0.051244832575321,0.086902149021626,0.090921871364117],[-0.0076046492904425,0.08677227050066,-0.2055548876524],[-0.10124945640564,-0.13804741203785,0.045696031302214]],[[0.089710213243961,0.041608799248934,-0.15049587190151],[0.039112910628319,-0.1126242429018,0.044133998453617],[-0.00085268152179196,-0.017706299200654,0.094219863414764]],[[0.071515195071697,0.017586164176464,-0.013190269470215],[0.012436025775969,-0.087125547230244,-0.010798088274896],[-0.06945338845253,0.079303808510303,0.01239066105336]],[[-0.092969991266727,-0.0099097974598408,-0.027857929468155],[-0.16377732157707,0.090152457356453,0.21854494512081],[-0.025298498570919,-0.037040065973997,0.048493407666683]],[[0.0098923221230507,0.052071213722229,0.075896546244621],[0.083217926323414,0.046624194830656,0.085191421210766],[0.18989773094654,-0.040209878236055,-0.033029656857252]],[[-0.043190278112888,0.069501101970673,0.040832903236151],[0.0090102655813098,0.016294695436954,-0.067144595086575],[-0.1601864695549,-0.041939444839954,0.11301666498184]],[[0.022488217800856,0.014786748215556,0.077211558818817],[-0.057008292526007,-0.004302435554564,0.00025704019935802],[-0.06523060798645,-0.044466644525528,0.15340954065323]],[[-0.12187096476555,0.01194638106972,0.048570960760117],[-0.064555868506432,-0.0068927062675357,0.1635023355484],[-0.14037980139256,0.058390986174345,-0.0013771280646324]],[[0.13035932183266,-0.03738159313798,-0.094112366437912],[-0.050670608878136,0.01387245580554,-0.38917201757431],[-0.086685366928577,-0.037386730313301,0.29053542017937]],[[0.14348940551281,0.13575041294098,0.030912090092897],[-0.075520738959312,0.017882978543639,-0.016801359131932],[-0.0060781100764871,-0.083915129303932,-0.028175344690681]],[[-0.021809428930283,-0.056144364178181,0.072660408914089],[-0.048328664153814,-0.11972721666098,0.0010654401266947],[0.018098447471857,0.07331757247448,0.1076038852334]],[[0.011819127947092,0.08105181157589,-0.067006506025791],[-0.01330626104027,-0.10433262586594,-0.32439279556274],[-0.085182309150696,-0.16792984306812,-0.064470842480659]],[[0.059344049543142,-0.016148323193192,-0.17428851127625],[0.22338825464249,-0.09387218952179,-0.12613862752914],[0.014600505121052,0.15456849336624,-0.10812415927649]],[[-0.079392321407795,-0.11425891518593,-0.13672904670238],[0.021800685673952,-0.12053776532412,-0.092261783778667],[-0.030049813911319,-0.18006770312786,0.053363442420959]],[[-0.028714004904032,0.0066664484329522,-0.0085623590275645],[0.12302893400192,0.042510069906712,0.022540582343936],[-0.0051492876373231,-0.12867917120457,-0.063455194234848]],[[0.018954919651151,-0.066751502454281,0.13117037713528],[-0.11815883219242,0.060525078326464,0.084237314760685],[-0.1343135535717,-0.18042816221714,0.077435791492462]],[[0.14725604653358,0.034019820392132,-0.031091181561351],[0.027444066479802,-0.05600243806839,0.18193134665489],[-0.095831394195557,-0.030727837234735,0.051986400038004]],[[-0.012914107181132,0.086314663290977,0.090872921049595],[-0.13275903463364,0.24540995061398,-0.13703563809395],[-0.017890658229589,0.011520070023835,-0.077566742897034]],[[0.074717305600643,0.082151629030704,0.12563063204288],[0.015439902432263,-0.043593376874924,-0.0077432598918676],[0.1449037194252,-0.091318219900131,-0.1283622533083]],[[-0.010272464714944,0.026996800675988,-0.06872846186161],[0.10320734232664,0.0088244453072548,-0.057848196476698],[-0.071676567196846,0.060107477009296,0.043833326548338]],[[0.0073696067556739,0.0050678607076406,0.00070346804568544],[0.029885778203607,0.07624789327383,-0.065351285040379],[0.070587798953056,0.055820558220148,-0.092649653553963]],[[-0.038895566016436,0.078650549054146,-0.0086104068905115],[-0.10809661448002,0.0076659368351102,-0.0063474206253886],[-0.026965390890837,0.065081872045994,0.059250961989164]],[[0.059602249413729,0.04184927046299,0.044025704264641],[-0.067413710057735,0.136643409729,0.0091575253754854],[-0.040217947214842,-0.054649136960506,-0.034206960350275]],[[0.078908756375313,0.080611564218998,0.0088256550952792],[-0.071700245141983,0.18673457205296,0.14286527037621],[-0.18487817049026,0.035200286656618,0.15096862614155]],[[0.038445323705673,-0.11537797749043,-0.049254655838013],[0.019803289324045,0.011119625531137,-0.18033085763454],[0.011005746200681,0.11154271662235,-0.078421294689178]],[[-0.17632146179676,0.21841169893742,0.1324128061533],[0.025157399475574,-0.034375354647636,0.048414073884487],[0.055013723671436,0.079084984958172,0.094641178846359]],[[-0.01963597163558,0.022099846974015,0.024624317884445],[0.1172194480896,0.14791929721832,-0.0018845846643671],[0.1521924585104,0.012784297578037,0.052968434989452]]],[[[0.077402830123901,-0.027731332927942,0.039596542716026],[-0.086251877248287,0.025605207309127,-0.044161975383759],[-0.089361742138863,-0.0073140440508723,-0.030213253572583]],[[-0.01905320212245,0.041234780102968,0.068369470536709],[-0.087652198970318,-0.093377955257893,-0.06923758238554],[0.11002427339554,0.010313373990357,0.041694778949022]],[[-0.045617312192917,-0.076280906796455,-0.054258141666651],[0.0063274228014052,0.10173331946135,-0.065791636705399],[-0.028799373656511,0.10828195512295,0.024065561592579]],[[-0.16139169037342,-0.11600887775421,-0.1928918659687],[0.019380705431104,-0.042992770671844,-0.058752089738846],[-0.0816700309515,-0.10124759376049,-0.019902296364307]],[[-0.00059857254382223,-0.025154691189528,-0.0069082034751773],[-0.00061856140382588,0.030664594843984,0.024593727663159],[0.071927487850189,-0.094113744795322,-0.011105376295745]],[[-0.033603545278311,0.10216644406319,-0.023201338946819],[-0.099606990814209,-0.022413641214371,0.010636015795171],[-0.090961463749409,0.00017287825176027,0.046339068561792]],[[-0.15705598890781,-0.1652921885252,-0.031395964324474],[0.11985117197037,0.12885825335979,0.13138750195503],[-0.2366316318512,-0.20576766133308,-0.0049939807504416]],[[-0.034976821392775,-0.071850702166557,-0.074641391634941],[-0.040456458926201,-0.10655424743891,-0.075798474252224],[-0.035721879452467,-0.15171228349209,-0.099679559469223]],[[0.00208525871858,-0.096153676509857,0.083377338945866],[0.008685695938766,-0.032542128115892,-0.074011966586113],[-0.035539045929909,0.035394970327616,0.047060843557119]],[[0.16631127893925,0.21277269721031,0.31639623641968],[-0.15507304668427,-0.1091293618083,-0.1431660503149],[0.41414859890938,0.0920430123806,0.25322988629341]],[[-0.14088539779186,-0.0057341256178916,-0.10815695673227],[0.059899747371674,0.0051326975226402,-0.0048294602893293],[0.019681170582771,-0.10182009637356,-0.021291309967637]],[[-0.014544887468219,0.018804639577866,0.08435382694006],[0.04445731267333,-0.0040508038364351,-0.061367556452751],[0.067775182425976,0.12271598726511,-0.041267868131399]],[[-0.083502776920795,0.092748075723648,-0.10510344058275],[-0.14870315790176,-0.021063966676593,-0.14199636876583],[0.04081355035305,0.23354235291481,-0.01528309378773]],[[0.0050090863369405,-0.1233739554882,-0.11932622641325],[0.13297647237778,0.074773065745831,0.32200780510902],[-0.20399536192417,-0.16204182803631,-0.22512240707874]],[[0.057086359709501,-0.099681176245213,0.020894316956401],[-0.03334529325366,0.11225394904613,-0.053641073405743],[0.062203772366047,0.011689373292029,0.0090080872178078]],[[0.11142109334469,0.15700942277908,0.11302895098925],[-0.18234801292419,-0.14241473376751,-0.15010024607182],[0.086409218609333,-0.0067259985953569,0.045488625764847]],[[0.078401684761047,-0.077559001743793,-0.055832773447037],[0.022072229534388,0.080280236899853,0.061433929949999],[0.11473032832146,0.025686305016279,-0.016451252624393]],[[0.0020334310829639,-0.060836743563414,0.011373250745237],[-0.2725116610527,-0.033140230923891,0.10906594246626],[-0.042003493756056,-0.072229035198689,0.16628497838974]],[[0.065553054213524,-0.014104556292295,0.14869876205921],[-0.14435563981533,-0.12716029584408,-0.022728761658072],[-0.07069244235754,0.083262614905834,0.036556299775839]],[[-0.057801011949778,0.012524056248367,0.0079678734764457],[-0.12056156992912,0.031346008181572,-0.062469884753227],[-0.1379933655262,0.030606226995587,-0.0064805643633008]],[[0.086926534771919,0.13235980272293,0.099383324384689],[-0.11572270840406,-0.17543134093285,-0.11733822524548],[0.12497565895319,0.059937175363302,0.0093743680045009]],[[0.095596000552177,-0.017926616594195,0.035002421587706],[-0.036103818565607,-0.15564854443073,0.10174859315157],[0.28395360708237,0.012962208129466,0.083975777029991]],[[0.049358107149601,0.16513320803642,-0.0082985907793045],[0.048723418265581,0.10458187013865,-0.035072859376669],[-0.16210417449474,-0.069625191390514,-0.11245135217905]],[[0.086932346224785,-0.037968505173922,0.11643192917109],[0.11592631042004,-0.19944390654564,0.066796414554119],[0.14480577409267,0.11786114424467,0.083554118871689]],[[-0.07215066999197,0.020365046337247,-0.061182871460915],[-0.15111587941647,-0.023785023018718,-0.15083844959736],[0.085442453622818,0.17514319717884,0.056859496980906]],[[-0.061663974076509,-0.10064045339823,-0.085931047797203],[0.11333464831114,0.067925594747066,0.071817733347416],[-0.069139651954174,0.027145830914378,0.038224682211876]],[[-0.018162570893764,-0.021129725500941,-0.062898248434067],[0.027148945257068,0.17765025794506,-0.016554502770305],[-0.05522757768631,0.022804692387581,-0.014191292226315]],[[0.21700482070446,0.082133233547211,-0.0035982069093734],[-0.11714896559715,0.0065639428794384,-0.1681245714426],[0.23207950592041,0.092925541102886,0.17438389360905]],[[-0.083885438740253,0.065661482512951,-0.0067902584560215],[0.067699939012527,-0.11930188536644,0.073732607066631],[-0.17995065450668,-0.031605798751116,-0.15066613256931]],[[0.06263106316328,-0.048542913049459,-0.075080506503582],[0.020492585375905,-0.084751114249229,0.047385208308697],[-0.012738453224301,-0.2440101057291,0.076368942856789]],[[-0.047577675431967,-0.038894239813089,-0.072669789195061],[-0.13193352520466,0.097229741513729,0.10596084594727],[-0.1682037115097,-0.10481426119804,-0.045039940625429]],[[-0.14793661236763,-0.035873584449291,-0.028063151985407],[-0.017629845067859,0.012423763982952,0.090946689248085],[-0.10419411212206,-0.066131137311459,-0.040227141231298]]],[[[0.024678539484739,-0.0020381836220622,-0.015625597909093],[-0.0649274289608,-0.007032725494355,-0.053630888462067],[0.010232470929623,0.0074632675386965,0.0014873025938869]],[[0.019132034853101,0.091621160507202,-0.078853107988834],[-0.017318872734904,0.045305918902159,-0.010787710547447],[0.075349137187004,-0.040824867784977,-0.040753532201052]],[[-0.0097112152725458,0.046363033354282,-0.05979423224926],[-0.076356895267963,0.052397359162569,0.038157988339663],[0.11569725722075,0.028645666316152,0.11958291381598]],[[0.049933549016714,0.018010517582297,-0.0066274716518819],[0.037048637866974,0.019804339855909,0.034383796155453],[-0.021326156333089,0.098732329905033,0.027224687859416]],[[-0.016079621389508,-0.016300730407238,0.10019677132368],[0.062352519482374,-0.014984854497015,0.076960802078247],[-0.055714961141348,-0.08950536698103,0.039386469870806]],[[0.044828586280346,-0.049756433814764,0.010419042780995],[0.059694781899452,0.129688590765,-0.052716616541147],[0.016623312607408,0.16932974755764,0.0995062738657]],[[0.013754175044596,0.013677484355867,0.019632944837213],[-0.017631633207202,0.0042686494998634,0.077203780412674],[-0.012220496311784,-0.029833553358912,-0.035667225718498]],[[0.07731781899929,-0.068491384387016,0.082778289914131],[0.051064409315586,-0.012604855932295,-0.021224062889814],[-0.12997137010098,0.037363778799772,-0.029723770916462]],[[0.030068254098296,-0.061115682125092,-0.020473388954997],[0.01151913497597,-0.05187788978219,0.028334418311715],[0.034846574068069,-0.070200979709625,-0.015522140078247]],[[0.099255092442036,0.088445961475372,0.054253734648228],[0.01211931463331,-0.021532081067562,0.013988610357046],[-0.093637205660343,0.052983459085226,0.053894992917776]],[[0.057751901447773,-0.038618881255388,-0.097697176039219],[0.02474313788116,-0.016904648393393,-0.044159863144159],[0.051939379423857,-0.078740812838078,0.029240066185594]],[[-0.041647113859653,-0.014152677729726,0.036879803985357],[0.13314643502235,-0.042748648673296,-0.08413415402174],[0.068354956805706,0.06936177611351,-0.033317033201456]],[[0.0027052434161305,0.009409730322659,-0.021150402724743],[-0.0053049181587994,0.002164255362004,0.020863397046924],[0.13890968263149,0.11756504327059,-0.0096698570996523]],[[0.014623941853642,0.090821124613285,-0.084006763994694],[-0.046994853764772,-0.039467565715313,0.059835329651833],[-0.018660014495254,-0.12575203180313,-0.072835341095924]],[[0.054889008402824,0.072122015058994,0.06244371086359],[-0.079269550740719,-0.061122313141823,-0.045735448598862],[-0.081077978014946,-0.0069799902848899,0.083078928291798]],[[0.1816999912262,-0.073201403021812,-0.18307393789291],[-0.0085714990273118,-0.046077262610197,-0.062645949423313],[-0.054146237671375,0.058776970952749,0.033426135778427]],[[0.023135583847761,0.074173077940941,0.06070663779974],[-0.029241051524878,0.1285295933485,0.097638390958309],[-0.055499278008938,0.054534409195185,0.063910417258739]],[[-0.043047178536654,0.022242868319154,0.10978606343269],[0.11338423192501,0.014461453072727,0.017255080863833],[-0.11538719385862,-0.020069887861609,0.10514041036367]],[[0.076851196587086,-0.021319534629583,-0.016216538846493],[-0.044263511896133,-0.0061532356776297,-0.126305565238],[-0.1264691054821,-0.082409203052521,0.15422886610031]],[[-0.027657659724355,0.0053882016800344,0.031741730868816],[0.025760101154447,-0.0121118882671,-0.071621410548687],[-0.003015247406438,-0.06469502300024,0.0049385195598006]],[[0.099091783165932,-0.042355697602034,-0.084209360182285],[0.0026876050978899,-0.026628436520696,0.056663833558559],[0.04276342317462,-0.01797217130661,0.088003426790237]],[[0.051076576113701,-0.062194135040045,0.011907101608813],[-0.1181566119194,0.047193229198456,0.031483992934227],[0.082292102277279,0.025137543678284,0.032864574342966]],[[-0.037437275052071,-0.088284835219383,-0.049812454730272],[-0.073316559195518,-0.026859389618039,0.059166807681322],[-0.046015452593565,0.08418370038271,0.094040900468826]],[[-0.0086839767172933,0.031125487759709,-0.02942181751132],[0.012795656919479,0.03678485751152,0.03074767999351],[-0.046458899974823,-0.16691686213017,0.096098832786083]],[[-0.054487101733685,-0.029802037402987,-0.11147081106901],[0.0084435446187854,0.14327436685562,-0.1254980713129],[0.0041027739644051,-0.066574722528458,0.035704605281353]],[[-0.038795810192823,0.047567594796419,0.0091865779832006],[0.013448123820126,0.075734294950962,0.012824029661715],[0.089187651872635,-0.082017414271832,-0.0082154301926494]],[[0.0087264580652118,-0.050725977867842,0.062417715787888],[-0.038634747266769,-0.012564939446747,0.04209965094924],[-0.042882200330496,0.0061986674554646,-0.016027888283134]],[[-0.073406413197517,0.027385048568249,-0.052764236927032],[0.041178580373526,0.096122570335865,-0.13632969558239],[0.12247819453478,0.08178573101759,-0.077528700232506]],[[-0.023996097967029,-0.1055628657341,-0.049636892974377],[-0.11491269618273,0.05405917391181,-0.017274497076869],[0.033072598278522,-0.15347862243652,0.14166386425495]],[[0.0416394546628,-0.084996931254864,-0.1045383438468],[-0.12146832048893,0.0020199397113174,0.024565994739532],[0.011341630481184,0.014682780951262,0.0734948143363]],[[-0.069788470864296,-0.0033555992413312,0.098625004291534],[0.084667697548866,0.014473249204457,-0.031467664986849],[0.099652178585529,0.084844119846821,0.019019190222025]],[[-0.012920741923153,0.022712793201208,0.014504699036479],[-0.016379939392209,0.020628217607737,0.020216442644596],[-0.070543795824051,0.014990270137787,-0.11399379372597]]],[[[-0.066748008131981,0.032725017517805,0.037678949534893],[-0.034174300730228,0.031713519245386,0.057566799223423],[0.019080882892013,0.10048924386501,0.0346504971385]],[[0.03181205317378,0.03925309330225,-0.0051595885306597],[-0.12007232010365,0.16674818098545,0.069419950246811],[-0.18670669198036,0.027650272473693,-0.088876865804195]],[[0.049363173544407,0.087244234979153,0.063372246921062],[-0.023910006508231,0.04916775226593,0.11756186187267],[0.11573155969381,-0.068077571690083,0.05962623283267]],[[0.011576031334698,0.011291203089058,0.064928762614727],[-0.080401167273521,0.042992599308491,0.089675106108189],[-0.072217784821987,-0.061153873801231,0.034650031477213]],[[-0.05985751748085,0.086756207048893,-0.019817057996988],[0.0003755846992135,-0.15814469754696,0.0025904616340995],[-0.019183741882443,0.049078918993473,0.06391503661871]],[[0.21525450050831,0.069812029600143,0.010966898873448],[0.025164648890495,0.12279872596264,-0.079617887735367],[0.023615140467882,0.025465451180935,0.12595966458321]],[[-0.088824108242989,0.0030725146643817,-0.013953314162791],[-0.038501083850861,-0.031355030834675,-0.0070032067596912],[0.029259711503983,0.06707352399826,0.02167047187686]],[[-0.027360027655959,0.0092085627838969,0.022748842835426],[0.021287018433213,-0.091492891311646,-0.011566327884793],[-0.065983325242996,0.080492570996284,-0.034987512975931]],[[0.06093380227685,0.034535672515631,0.018664101138711],[0.023418866097927,0.024655958637595,0.076092675328255],[-0.1032150387764,0.019518505781889,0.065402947366238]],[[-0.063185162842274,0.19759882986546,-0.0022353420499712],[-0.016107337549329,0.18704076111317,0.10028500854969],[0.00047165947034955,-0.021633047610521,0.046458326280117]],[[-0.13278920948505,0.072243548929691,0.040701907128096],[-0.0064585083164275,0.01642788015306,0.030165389180183],[-0.086628451943398,0.014127567410469,0.082385562360287]],[[-0.070283241569996,-0.031696986407042,-0.0021596825681627],[-0.18307191133499,0.018726116046309,0.1313483864069],[-0.10353218019009,-0.0025153511669487,0.074126407504082]],[[-0.080929346382618,0.068607725203037,-0.01741673797369],[-0.00046692258911207,-0.030360480770469,0.060996353626251],[-0.049312572926283,0.012390623800457,-0.070563472807407]],[[0.03668162599206,-0.096417941153049,-0.1506190598011],[0.028264563530684,0.10089818388224,0.021117666736245],[0.12019054591656,-0.0060034897178411,-0.095632307231426]],[[0.032284781336784,-0.009654963389039,-0.01516932155937],[-0.057266637682915,-0.019119221717119,0.027572862803936],[0.026164773851633,-0.062604174017906,-0.020668122917414]],[[0.15110616385937,-0.023634821176529,0.041035678237677],[0.039641629904509,0.057023294270039,0.023661071434617],[0.12953172624111,0.076210893690586,-0.011341029778123]],[[-0.051516883075237,-0.053673509508371,-0.010384463705122],[-0.042044896632433,0.032078243792057,0.10266871750355],[0.1105145663023,0.028376821428537,0.02309082262218]],[[0.034355722367764,-0.014185051433742,-0.085233673453331],[0.02397895604372,-0.038637105375528,0.013594405725598],[0.038558512926102,0.0024607747327536,0.065764375030994]],[[-0.010779755190015,-0.098609879612923,0.038914989680052],[-0.045187320560217,0.016422510147095,-0.049188129603863],[0.10453151166439,-0.024816961959004,0.044053521007299]],[[0.028105676174164,0.079378165304661,0.026364542543888],[0.025223223492503,0.045423705130816,0.0064893667586148],[0.034749187529087,0.076561249792576,0.032162196934223]],[[0.10733435302973,-0.10392627120018,0.069355651736259],[0.035742565989494,0.17251394689083,0.20700414478779],[-0.10410133749247,0.031930144876242,-0.083740726113319]],[[-0.0091835297644138,-0.069013327360153,0.013540709391236],[-0.0087076537311077,-0.10712891817093,0.13072481751442],[0.043590195477009,0.10016041994095,-0.12334471940994]],[[-0.10441590100527,0.2285203486681,0.18633706867695],[-0.028890442103148,0.14431695640087,-0.064497038722038],[-0.2671255171299,0.25234574079514,0.016368864104152]],[[0.075411155819893,0.057524990290403,0.035366777330637],[-0.021146224811673,0.084381453692913,-0.021775882691145],[0.047708094120026,-0.034051399677992,0.062984853982925]],[[-0.026790576055646,0.11362773180008,-0.057119101285934],[-0.045879650861025,0.031646054238081,0.049543131142855],[-0.094171531498432,-0.063731253147125,-0.12243489176035]],[[-0.15080671012402,-0.052480783313513,-0.10440761595964],[0.097256220877171,-0.11371486634016,0.054237727075815],[0.10346575081348,0.095649302005768,-0.037142362445593]],[[0.05139672383666,-0.011174232698977,-0.066450349986553],[-0.035633612424135,-0.10972944647074,0.025020496919751],[-0.011927312240005,0.17443263530731,-0.045892536640167]],[[-0.09545674175024,0.10560295730829,-0.069822832942009],[-0.042563892900944,0.067632384598255,0.11084601283073],[-0.10059725493193,-0.13737034797668,0.063503593206406]],[[-0.025261351838708,0.094299666583538,0.024206908419728],[-0.028042363002896,0.047814544290304,0.12260798364878],[-0.060368128120899,0.0062704375013709,0.0015565764624625]],[[-0.030032260343432,0.050618886947632,0.015561542473733],[0.1547377705574,0.061632949858904,-0.0078356694430113],[0.029228981584311,0.02787421643734,-0.011247953400016]],[[-0.035137481987476,0.0077375443652272,0.061139404773712],[0.040771845728159,0.079480275511742,0.068799450993538],[-0.025961114093661,-0.10296529531479,0.016992729157209]],[[0.025652667507529,0.077708810567856,0.011157440952957],[-0.10945501923561,-0.018201051279902,-0.004986213054508],[-0.026849713176489,-0.0053521916270256,-0.044737484306097]]],[[[-0.011372573673725,-0.10249423980713,0.044878177344799],[0.017053166404366,-0.08149529248476,-0.0040786559693515],[-0.087819136679173,-0.066841393709183,-0.10068243741989]],[[0.019661201164126,0.10936640948057,0.1016790792346],[-0.047585010528564,0.0042730704881251,-0.04364638030529],[-0.024220900610089,-0.12248757481575,-0.025807367637753]],[[-0.015768561512232,0.044124342501163,-0.076947599649429],[0.026966519653797,0.08490177243948,0.075567089021206],[0.015369999222457,0.11014949530363,0.070446528494358]],[[-0.031968224793673,0.0085879797115922,-0.015986891463399],[0.022760443389416,-0.0090516395866871,-0.068262510001659],[0.047117292881012,0.13741809129715,0.097705475986004]],[[0.02711676992476,0.016670132055879,0.05767048150301],[0.081949919462204,-0.019088355824351,-0.020059518516064],[-0.022355554625392,0.079425625503063,-0.040010064840317]],[[0.002673699054867,0.048353776335716,0.014742977917194],[-0.035747859627008,0.046033430844545,0.0012161054182798],[0.043175589293242,-0.085788823664188,0.062511011958122]],[[-0.033627603203058,0.087529949843884,0.072804033756256],[-0.034781571477652,-0.040638275444508,0.041441671550274],[0.045590300112963,0.024715665727854,-0.022411189973354]],[[0.029019188135862,-0.0083491243422031,0.096562303602695],[-0.18775044381618,-0.10675149410963,-0.025995874777436],[-0.34160774946213,-0.29403305053711,-0.021510319784284]],[[0.027129782363772,0.068921692669392,-0.04557117074728],[-0.05662402138114,-0.00055077637080103,0.0015493547543883],[0.034598182886839,-0.029541939496994,0.040245980024338]],[[0.10618806630373,0.056961644440889,0.025881500914693],[0.039858549833298,0.0059859449975193,0.077010326087475],[0.13366281986237,0.029970031231642,0.086139157414436]],[[0.033243682235479,-0.03400145471096,-0.078668393194675],[0.20632024109364,0.027762215584517,-0.043137591332197],[0.077089846134186,-0.002989379921928,-0.014700344763696]],[[0.05718420445919,-0.0077949380502105,-0.030271584168077],[0.095544204115868,0.088887639343739,0.043595016002655],[-0.14717720448971,0.032562296837568,-0.0037802755832672]],[[-0.083102442324162,0.040493778884411,0.049730286002159],[-0.080612495541573,0.030461866408587,0.16644710302353],[-0.1048748344183,-0.1411117464304,0.10332143306732]],[[0.023605644702911,-0.12413887679577,-0.10579077154398],[0.019702477380633,0.06422134488821,0.013079759664834],[0.065007753670216,0.000574954028707,-0.052760969847441]],[[-0.024290546774864,0.014051131904125,-0.0042792484164238],[0.031155908480287,0.047104153782129,0.020556936040521],[0.045991986989975,0.018420660868287,0.05753942206502]],[[0.050492912530899,-0.10118056088686,-0.16088792681694],[0.034415170550346,-0.074645146727562,-0.17722246050835],[0.12228274345398,0.060447499155998,-0.018836798146367]],[[-0.017887983471155,-0.03957211971283,0.14295434951782],[0.063961327075958,-0.061117719858885,0.073981687426567],[-0.022739393636584,-0.10242324322462,-0.061998218297958]],[[0.14833787083626,-0.028932323679328,0.076808758080006],[-0.029544737190008,0.0094208037480712,0.057968709617853],[-0.043843042105436,-0.065468266606331,-0.015006120316684]],[[-0.038205962628126,-0.0088599156588316,-0.060724750161171],[0.0037281215190887,-0.12777145206928,-0.0047234669327736],[-0.0021554292179644,-0.050315205007792,0.10494578629732]],[[0.058899492025375,0.11809405684471,0.094338655471802],[0.0031702062115073,0.13636085391045,0.036399707198143],[-0.080268643796444,-0.2088495194912,-0.022486029192805]],[[-0.1174046844244,0.2393264323473,0.15645089745522],[-0.034642089158297,0.082441188395023,0.1088308468461],[-0.035591222345829,-0.10499172657728,0.26892203092575]],[[-0.042364872992039,-0.14052551984787,-0.012377654202282],[-0.042108602821827,-0.096650116145611,-0.094342820346355],[-0.023742582648993,0.012658913619816,-0.11737236380577]],[[0.015957579016685,0.0271633323282,-0.34362959861755],[0.0051870536990464,0.00099930458236486,0.022003870457411],[0.036383338272572,0.068717248737812,0.28748863935471]],[[0.032377321273088,0.17314727604389,0.028668820858002],[0.035612601786852,0.091123431921005,0.034505117684603],[-0.044504538178444,0.045735463500023,-0.0039937528781593]],[[-0.02527772448957,0.15923520922661,0.015514709055424],[0.0028876715805382,0.15730275213718,-0.0016755317337811],[-0.059317883104086,-0.07502219080925,0.024506306275725]],[[-0.023336354643106,0.028000084683299,-0.10995550453663],[-0.064239405095577,0.13330096006393,-0.029113728553057],[-0.017025319859385,0.023075064644217,-0.016971262171865]],[[-0.019835134968162,-0.18805405497551,-0.0336644500494],[0.1076003909111,0.0091194361448288,0.024990344420075],[0.10499315708876,-0.017301740124822,0.031341578811407]],[[0.022338140755892,0.098376616835594,-0.20547436177731],[0.094643749296665,0.019221054390073,-0.099514089524746],[0.39072087407112,0.011717419140041,-0.1243756711483]],[[0.033902898430824,-0.046588990837336,-0.12912476062775],[0.039621043950319,-0.0071630817838013,0.062767021358013],[0.1634351760149,-0.04143051803112,0.0094231301918626]],[[-0.069264449179173,-0.062745437026024,-0.0088069317862391],[0.016150118783116,-0.11251004040241,0.012595410458744],[0.042906116694212,0.17997695505619,-0.095225244760513]],[[-0.25193816423416,-0.15758615732193,-0.11848835647106],[0.063023872673512,0.024027280509472,-0.096499353647232],[0.17192851006985,-0.0075862095691264,-0.094536140561104]],[[-0.053102798759937,0.055693842470646,0.026328761130571],[-0.053955625742674,-0.047442600131035,-0.10912620276213],[-0.013537691906095,0.11678623408079,0.004362209700048]]],[[[-0.001215735101141,0.060830406844616,-0.096058174967766],[-0.037804678082466,0.0097591103985906,-0.013802774250507],[-0.00056248030159622,-0.03412476927042,0.055901382118464]],[[0.16619688272476,-0.070484355092049,0.063675001263618],[0.059647981077433,-0.18164953589439,-0.011843887157738],[-0.012927642092109,0.040144667029381,-0.09799212962389]],[[-0.01566381752491,-0.065529197454453,0.059209160506725],[-0.094358272850513,-0.0051511684432626,0.050512600690126],[-0.015611998736858,-0.17583973705769,-0.081093296408653]],[[-0.018851384520531,-0.059059180319309,0.057310447096825],[-0.11068043112755,0.025951595976949,0.16475529968739],[-0.067111916840076,-0.047955852001905,-0.055590033531189]],[[-0.011328444816172,0.083160042762756,0.13497568666935],[0.099540211260319,0.032685372978449,-0.035719599574804],[0.064279288053513,-0.030170682817698,0.025442741811275]],[[0.045929800719023,-0.015310219489038,-0.21043953299522],[0.017237041145563,-0.022248415276408,0.053713548928499],[-0.0020770395640284,0.044121023267508,-0.01777670532465]],[[0.091014005243778,-0.20916195213795,-0.067497156560421],[0.061978586018085,0.14344300329685,-0.034019283950329],[0.097025796771049,0.0694275572896,0.11565820127726]],[[-0.015886003151536,0.031360346823931,0.0055216834880412],[-0.079389713704586,-0.052311826497316,-0.035001467913389],[0.010981084778905,0.014746762812138,-0.015270401723683]],[[0.064835347235203,-0.071648374199867,0.007223404943943],[-0.079490579664707,-0.18394680321217,-0.058762814849615],[-0.19583143293858,0.0072303474880755,-0.074178501963615]],[[-0.054600156843662,0.15172998607159,0.017646288499236],[0.058908056467772,0.066133610904217,0.078601479530334],[-0.078343443572521,-0.030908303335309,-0.095298908650875]],[[0.095257475972176,-0.067279003560543,0.11005536466837],[-0.070116281509399,-0.01944219879806,0.070289224386215],[-0.086936980485916,0.11593705415726,-0.03415409475565]],[[-0.039233636111021,0.10366475582123,-0.072189763188362],[-0.046076200902462,-0.032569728791714,-0.023863637819886],[-0.022922256961465,0.12297638505697,-0.13509319722652]],[[-0.13453176617622,-0.058201719075441,-0.015705332159996],[-0.04172395542264,0.024461772292852,0.073496744036674],[0.0025518469046801,-0.12024547159672,-0.04097717627883]],[[-0.062690258026123,-0.047050435096025,0.032119985669851],[0.049815196543932,0.14939799904823,-0.018372625112534],[-0.14984121918678,0.10201840102673,-0.12054449319839]],[[-0.013144107535481,-0.10545592010021,-0.0017005172558129],[0.032743461430073,0.012736142612994,0.023432658985257],[0.023092621937394,0.097058139741421,0.038546971976757]],[[-0.11452599614859,0.032379508018494,-0.14231896400452],[0.21671897172928,0.053623706102371,-0.15618719160557],[-0.066032752394676,-0.12092092633247,0.0546521730721]],[[-0.040702566504478,-0.011841000057757,-0.025996537879109],[0.06145516782999,-0.025622673332691,0.085248023271561],[-0.065534740686417,0.10036768019199,-0.024271057918668]],[[0.0059649962931871,-0.0030737891793251,0.10047320276499],[-0.021019291132689,-0.11981372535229,-0.069741971790791],[-0.003898466238752,0.13278310000896,0.0054899654351175]],[[0.014677039347589,0.10077594220638,-0.027894550934434],[-0.019008118659258,-0.015738543123007,0.095673874020576],[-0.0010941177606583,0.079000204801559,-0.11570613831282]],[[-0.058968763798475,-0.014171415008605,-0.021177217364311],[-0.016684520989656,-0.042415887117386,0.035920701920986],[-0.061305411159992,-0.00021188774553593,-0.071332193911076]],[[0.0078021786175668,0.016148479655385,0.056220173835754],[0.1478542983532,0.048111744225025,-0.02655809931457],[0.13630890846252,-0.07173216342926,-0.070399343967438]],[[-0.052061844617128,-0.024878550320864,0.09209581464529],[-0.16092433035374,0.027592686936259,-0.047667223960161],[0.04073703289032,-0.11268816888332,0.003260362893343]],[[0.10691156238317,-0.0081646554172039,0.1139003932476],[0.026649786159396,-0.1888614743948,0.032813344150782],[0.056015096604824,0.042694237083197,0.070264853537083]],[[-0.089526861906052,-0.075307875871658,-0.0095937075093389],[-0.0076742409728467,0.036948960274458,0.031986355781555],[0.051778636872768,0.090070508420467,0.021309617906809]],[[0.019147856160998,-0.1486501544714,-0.064828254282475],[0.015956187620759,-0.032264690846205,-0.035843592137098],[0.0063612512312829,-0.0077923438511789,0.0054256971925497]],[[-0.0067978333681822,-0.016006425023079,0.041527029126883],[-0.091073878109455,-0.0040649902075529,-0.050707973539829],[0.052137114107609,0.0047106496058404,-0.1819579154253]],[[0.087440676987171,-0.14214420318604,0.062785558402538],[-0.11573146283627,0.034021362662315,-0.071558311581612],[-0.0018308976432309,0.09640234708786,0.053523611277342]],[[-0.040382068604231,-0.053063374012709,0.094853900372982],[-0.065244063735008,0.013839177787304,0.12558573484421],[0.025350078940392,0.014399497769773,0.022686386480927]],[[0.097461566329002,-0.048925779759884,0.013224934227765],[-0.10588888078928,-0.0013144123367965,-0.08154733479023],[-0.022998047992587,-0.048521723598242,-0.054324701428413]],[[-0.024880839511752,-0.067199431359768,-0.0016171836759895],[0.1455540060997,-0.063168592751026,0.081687547266483],[-0.046739257872105,-0.084882810711861,-0.052890218794346]],[[0.035214513540268,-0.10213848948479,0.044848900288343],[0.036466598510742,-0.12350492179394,0.11393488943577],[0.032161802053452,-0.00012716166384052,0.0060711707919836]],[[-0.028648940846324,0.026555359363556,0.13892345130444],[-0.010236225090921,-0.0039887009188533,-0.1027610450983],[0.023286191746593,0.036786075681448,0.019795592874289]]],[[[-0.060347933322191,-0.073775164783001,-0.0010517683112994],[0.11495988070965,-0.011026186868548,0.081197142601013],[0.12545642256737,0.092013582587242,0.16813445091248]],[[-0.028181856498122,-0.05114595964551,-0.047084037214518],[-0.020950835198164,0.016233900561929,-0.01801916025579],[-0.015817223116755,0.058268509805202,0.1447491645813]],[[-0.048022590577602,-0.065362893044949,0.0014736131997779],[0.020740954205394,-0.050684086978436,0.070284321904182],[0.030822742730379,0.11442189663649,-0.016589321196079]],[[-0.048243876546621,-0.043988417834044,0.0070995986461639],[-0.025205865502357,0.10697967559099,-0.049715917557478],[-0.0028219914529473,0.011887131258845,0.010853057727218]],[[-0.019207265228033,0.0091844610869884,-0.12700644135475],[0.0073616527952254,0.04570596665144,0.034573148936033],[0.022548826411366,0.052044030278921,0.041597981005907]],[[-0.066374488174915,-0.079622864723206,0.015491988509893],[-0.11157809942961,-0.066967040300369,-0.078685767948627],[0.0047901272773743,0.1718807220459,-0.0063851084560156]],[[-0.059757992625237,-0.21248607337475,-0.035849384963512],[-0.0045259115286171,0.015141355805099,-0.01863880828023],[0.11493220925331,0.00025769110652618,-0.01179561112076]],[[-0.0076547400094569,-0.10628772526979,0.027167353779078],[-0.12284231930971,0.021058091893792,0.13610918819904],[0.00030139600858092,0.16380287706852,0.0981674939394]],[[-0.039902560412884,-0.045789208263159,-0.10812006145716],[-0.029071247205138,-0.08672408759594,-0.073898948729038],[-0.036050915718079,0.14792628586292,0.13539615273476]],[[0.16017404198647,0.13773989677429,0.016036547720432],[0.23082457482815,0.19361750781536,0.088400907814503],[0.094950377941132,0.21433725953102,0.21251976490021]],[[-0.086824953556061,-0.01539621502161,-0.073729276657104],[0.012755298055708,0.054210890084505,-0.10112629085779],[0.075832799077034,0.039028607308865,-0.021200774237514]],[[0.094001263380051,0.062459353357553,-0.058110564947128],[-0.037106528878212,-0.10841844975948,-0.14491038024426],[-0.056328278034925,0.14622355997562,0.079280473291874]],[[0.06024981290102,-0.033318392932415,0.027666674926877],[-0.037733308970928,-0.01979586482048,-0.0081421155482531],[-0.12709127366543,-0.055011760443449,0.21481518447399]],[[-0.01297096349299,0.012345695868134,0.094593249261379],[0.21073243021965,-0.035912282764912,0.064236782491207],[-0.0060668135993183,-0.13291583955288,-0.65334576368332]],[[0.05079397931695,-0.089493691921234,-0.09477249532938],[-0.08495020866394,-0.067616276443005,-0.053539011627436],[-0.033651083707809,0.19921720027924,0.10347128659487]],[[-0.074745252728462,0.12899802625179,0.0016724639572203],[0.039539504796267,0.044244695454836,0.13679811358452],[-0.034309092909098,-0.14056803286076,-0.05287816375494]],[[0.00069178140256554,0.064156956970692,0.052017297595739],[0.056438181549311,0.052970100194216,0.13815174996853],[0.0065656956285238,0.084449999034405,-0.090111710131168]],[[-0.065923534333706,-0.052602726966143,0.044519890099764],[-0.13675616681576,-0.070071771740913,0.057352188974619],[0.057809960097075,0.036686550825834,0.060144174844027]],[[-0.25451445579529,-0.054850339889526,-0.027467463165522],[-0.32744368910789,-0.032105930149555,-0.072517938911915],[-0.046656336635351,-0.12696328759193,0.25443518161774]],[[-0.13102746009827,-0.089080035686493,-0.053900364786386],[-0.26280042529106,-0.2302490323782,-0.02548510953784],[0.03327053040266,0.029152257367969,0.098276145756245]],[[0.13106095790863,-0.045002155005932,-0.093326784670353],[0.097781233489513,-0.063286364078522,-0.15752366185188],[-0.0035326180513948,-0.0091316541656852,0.22624859213829]],[[-0.041280101984739,-0.082372613251209,-0.13955721259117],[0.021665943786502,0.011908696033061,0.047421768307686],[-0.099461510777473,-0.020151427015662,-0.075245559215546]],[[0.11761804670095,0.11752105504274,0.015307969413698],[0.18445710837841,0.11912428587675,-0.0019171900348738],[0.18254588544369,-0.069777205586433,-0.20339149236679]],[[-0.16369725763798,-0.066291004419327,0.073849558830261],[-0.07833444327116,-0.023108318448067,0.11206325888634],[-0.031901016831398,0.11360377818346,0.012472914531827]],[[0.052639435976744,-0.081708192825317,0.034079667180777],[-0.17200127243996,-0.12869162857533,0.038209222257137],[-0.20849719643593,0.012584740296006,0.12608180940151]],[[0.11657915264368,-0.0068812733516097,-0.13592886924744],[0.0015544891357422,0.0085074361413717,-0.23561009764671],[-0.031768746674061,0.19561338424683,-0.043079409748316]],[[0.038814820349216,-0.018204487860203,0.10396973788738],[-0.03125274926424,-0.042489655315876,0.032430216670036],[0.057013552635908,-0.055266667157412,-0.041698735207319]],[[-0.10952079296112,0.14011724293232,-0.013606974855065],[0.19196833670139,-0.00095785717712715,0.07634225487709],[0.093250550329685,-0.013577876612544,0.084706954658031]],[[-0.041858337819576,-0.11066126823425,-0.0061983307823539],[0.019630827009678,0.038644932210445,-0.01936181075871],[0.067995153367519,0.041582554578781,0.090950287878513]],[[-0.067241206765175,0.0508025996387,0.054383095353842],[0.013055352494121,0.019081886857748,0.0029858259949833],[-0.048488650470972,-0.16093872487545,-0.12141845375299]],[[-0.0082218153402209,-0.12331581860781,-0.097009114921093],[-0.20664444565773,0.082607366144657,0.037533268332481],[-0.0010901317000389,-0.046769216656685,0.003564331214875]],[[-0.24023835361004,-0.24679540097713,-0.029435059055686],[-0.13686606287956,-0.37685772776604,0.041289400309324],[-0.051933072507381,-0.18552727997303,-0.11116443574429]]],[[[0.0066434610635042,0.078837357461452,-0.0062751951627433],[-0.0049546798691154,-0.0040632574819028,0.06358589977026],[0.0018887837650254,-0.015021346509457,0.038853134959936]],[[0.033952064812183,-0.21021501719952,-0.067864552140236],[0.054744999855757,0.062263175845146,0.0409971550107],[0.037001218646765,-0.012652271427214,0.017165753990412]],[[-0.11247845739126,-0.12182369083166,-0.070837236940861],[-0.063556730747223,0.11417270451784,-0.0024109748192132],[0.11142507940531,-0.099768079817295,0.085312806069851]],[[0.11532524973154,0.058406047523022,0.088737592101097],[0.030891794711351,-0.10942633450031,0.036655783653259],[0.011552900075912,0.020130796357989,0.0034668713342398]],[[0.0033244451042265,0.14663350582123,-0.041248552501202],[-0.012660942971706,-0.059427693486214,0.21527178585529],[-0.046008482575417,0.05208795145154,-0.011742575094104]],[[0.044635236263275,0.090823628008366,0.031116036698222],[0.035430353134871,-0.081134967505932,-0.12012957781553],[-0.048787657171488,-0.0040920525789261,-0.0091291265562177]],[[-0.051180806010962,0.081006601452827,-0.1774263381958],[0.086612343788147,-0.06529351323843,0.026668505743146],[-0.0042590834200382,0.028706831857562,-0.12318481504917]],[[-0.0099644316360354,0.072019249200821,0.031561974436045],[0.050138644874096,-0.39748749136925,0.044545069336891],[0.081311956048012,0.08695849776268,0.0073063015006483]],[[-0.024448486045003,-0.17381179332733,-0.045501951128244],[0.029543915763497,-0.038923665881157,0.017111111432314],[-0.022397423163056,0.064231023192406,0.013868140056729]],[[0.037912722676992,0.02472966350615,-0.079425744712353],[-0.034791763871908,0.17910693585873,0.033014129847288],[-0.023974871262908,0.00084083940600976,0.024199595674872]],[[-0.090706907212734,0.11420471221209,-0.010810155421495],[-0.083133958280087,0.022186037153006,0.0018689022399485],[0.093823097646236,0.10478843003511,-0.04448414966464]],[[-0.046446450054646,0.041862424463034,-0.14091670513153],[-0.0054499134421349,0.030952133238316,0.028893498703837],[0.06406107544899,0.067688189446926,0.029882542788982]],[[0.061415202915668,-0.01821755990386,-0.037576958537102],[0.063424132764339,0.0053561045788229,0.041033927351236],[-0.065802849829197,0.044978566467762,0.043374743312597]],[[-0.024826727807522,0.050053235143423,0.0029318304732442],[0.024505227804184,-0.13605876266956,-0.0034157522022724],[0.041596379131079,-0.033075671643019,-0.032802768051624]],[[-0.015114185400307,0.042416524142027,0.0032033778261393],[-0.0035943121183664,0.0018937770510092,-0.0046677896752954],[0.018242409452796,0.087245039641857,0.00072096480289474]],[[0.038993615657091,-0.061704155057669,0.054723665118217],[0.027474872767925,0.068967685103416,0.096878834068775],[-0.089802272617817,-0.031994685530663,-0.10589974373579]],[[-0.0084859253838658,-0.021605251356959,0.035538606345654],[-0.018335776403546,0.088171370327473,-0.078287623822689],[0.053856205195189,0.013703254982829,-0.033476892858744]],[[-0.056371416896582,-0.059197083115578,0.088679693639278],[-0.049148645251989,-0.053956311196089,-0.075892426073551],[0.0100830309093,0.012234170921147,0.089110933244228]],[[0.070622071623802,-0.049615640193224,-0.041769064962864],[0.042693708091974,0.011378112249076,-0.037571851164103],[0.0071852952241898,-0.0042246384546161,0.080892473459244]],[[0.030251938849688,0.023703400045633,0.015131480060518],[-0.0082782674580812,0.030643295496702,-0.057846948504448],[-0.082461342215538,0.038899712264538,0.041187971830368]],[[-0.0023020328953862,-0.20969590544701,-0.036132834851742],[0.058961246162653,0.075483649969101,-0.030226476490498],[-0.032832875847816,0.013033226132393,0.049431730061769]],[[0.0035965014249086,0.05984503030777,0.027696058154106],[-0.091111972928047,0.089816004037857,0.10122039169073],[-0.075994692742825,0.031327161937952,-0.1151500493288]],[[-0.051749929785728,0.023040626198053,0.058587614446878],[0.11968753486872,-0.10627453029156,-0.071672208607197],[-0.03513365983963,-0.035570662468672,-0.04276417940855]],[[-0.1157765313983,0.13903467357159,0.048523034900427],[0.085241034626961,-0.21628974378109,0.11226838827133],[0.03691191971302,0.019333064556122,0.052106481045485]],[[-0.014978830702603,-0.021946223452687,-0.043008383363485],[-0.075393974781036,-0.10740784555674,-0.015962870791554],[0.015460614115,0.048413172364235,-0.038895390927792]],[[0.047414012253284,0.038800090551376,-0.043621473014355],[0.0092887384817004,-0.10407818853855,-0.1593946814537],[0.039184842258692,0.076374486088753,-0.014739037491381]],[[-5.6724470596237e-06,0.0048142839223146,0.092818677425385],[-0.010684573091567,-0.096391536295414,0.031084364280105],[-0.055240016430616,0.070915929973125,-0.034682765603065]],[[0.0038105975836515,0.074608333408833,-0.056568995118141],[0.062448184937239,0.071322716772556,-0.0012891173828393],[-0.19374577701092,-0.0022911843843758,0.04619750007987]],[[-0.095772139728069,0.040608812123537,-0.013634066097438],[-0.09826373308897,-0.03242039680481,0.028451021760702],[0.0077932551503181,0.039644975215197,0.026310747489333]],[[-0.041171904653311,0.12213926762342,0.096222102642059],[-0.0087862135842443,-0.12873797118664,-0.018340757116675],[-0.049731444567442,-0.01245417073369,-0.011214598082006]],[[-0.020844029262662,-0.01110527291894,0.053604613989592],[-0.0030519836582243,-0.13125151395798,-0.060779422521591],[-0.051476508378983,0.01429736148566,-0.012247656472027]],[[0.02192971855402,0.11309976875782,0.088115371763706],[-0.024379454553127,-0.033215388655663,0.0010671915952116],[-0.030971949920058,-0.031671598553658,-0.036950308829546]]],[[[0.031025448814034,-0.0094980234280229,0.0061177811585367],[-0.033230185508728,0.011883663013577,-0.138881534338],[0.011653842404485,-0.011077954433858,-0.0086258621886373]],[[0.028929710388184,-0.0037941848859191,-0.023009678348899],[0.051117137074471,0.016469510272145,-0.058699917048216],[0.13077640533447,-0.041924890130758,-0.12135187536478]],[[-0.037097252905369,-0.1301653534174,0.0923061221838],[-0.22221384942532,0.13062153756618,0.13850562274456],[-0.13699948787689,-0.015838155522943,-0.079797498881817]],[[0.0095824422314763,0.036657720804214,-0.10746429860592],[-0.07538478076458,0.015699060633779,0.12503273785114],[-0.10851200670004,0.12393373996019,-0.064495988190174]],[[-0.058523274958134,-0.015928212553263,0.089080914855003],[0.14841543138027,-0.038219816982746,-0.046871975064278],[0.1731618642807,-0.11577728390694,0.0028620439115912]],[[0.055856496095657,-0.13081125915051,-0.025134187191725],[-0.042296193540096,0.042302519083023,0.062686897814274],[0.12390252202749,0.040923979133368,-0.038955219089985]],[[-0.023147381842136,0.060891933739185,-0.0063864011317492],[0.045304708182812,-0.21238672733307,0.13082920014858],[-0.0029648111667484,0.0036250608973205,-0.049579609185457]],[[0.009889586828649,0.0090430630370975,0.010167481377721],[-0.033952936530113,0.077494211494923,-0.0025741043500602],[-0.096891552209854,0.059258069843054,0.056192588061094]],[[-0.0047904965467751,0.016296643763781,0.0037339858245105],[0.0027711875736713,-0.10555779188871,0.10025525093079],[-0.0051378784701228,-0.016451053321362,-0.08771788328886]],[[-0.1145595908165,0.04787540435791,0.037227556109428],[0.069707907736301,0.015830857679248,-0.01809411868453],[0.15695759654045,0.064194090664387,-0.080782547593117]],[[0.0057830782607198,-0.06944215297699,0.018899360671639],[0.10296226292849,0.030902659520507,0.030313374474645],[-0.076347149908543,-0.051805317401886,0.089087001979351]],[[0.073407553136349,0.053825218230486,-0.018237080425024],[0.14996902644634,-0.074985779821873,0.0034401121083647],[0.054142795503139,-0.022554619237781,-0.11923330277205]],[[0.046752411872149,-0.02410776168108,-0.044757772237062],[0.021735046058893,0.093511834740639,0.04857387766242],[-0.046304456889629,0.0051569533534348,0.13133914768696]],[[-0.061458889394999,0.080405101180077,0.0014834786998108],[-0.049098502844572,-0.021552601829171,0.084637090563774],[-0.11896999180317,-0.036685928702354,0.099158562719822]],[[0.018916724249721,0.0072897165082395,0.0054719327017665],[-0.053141608834267,-0.085226900875568,-0.075755469501019],[0.035423148423433,-0.011586809530854,-0.054308380931616]],[[0.06665026396513,-0.027539119124413,-0.049114789813757],[-0.023647267371416,0.14010316133499,-0.16994506120682],[0.048307970166206,0.10995606333017,0.017088370397687]],[[-0.021624978631735,-0.0070475819520652,0.046459946781397],[-0.028706379234791,-0.050759699195623,-0.020701287314296],[0.060709293931723,-0.19308792054653,0.17971034348011]],[[0.027165146544576,0.056659668684006,-0.00087234453530982],[0.026560021564364,-0.22123423218727,-0.030567590147257],[0.0012389235198498,-0.041860245168209,0.078315563499928]],[[-0.055105071514845,0.049706127494574,-0.032783545553684],[0.083820849657059,0.011628471314907,-0.060286540538073],[0.029027637094259,0.075697787106037,0.01474738959223]],[[0.030349457636476,0.00025767792249098,-0.016090583056211],[-0.032192710787058,-0.035456098616123,0.037126835435629],[-0.023432506248355,-0.13098636269569,-0.08327255398035]],[[0.034666698426008,0.078853726387024,-0.050728481262922],[0.017098672688007,0.0053826756775379,-0.06226671859622],[0.087482802569866,-0.09222823381424,-0.13892973959446]],[[-0.019990546628833,0.13024953007698,-0.0099569400772452],[-0.11781315505505,0.28108215332031,0.09882827103138],[-0.082551255822182,-0.011259042657912,-0.22164005041122]],[[0.021183550357819,-0.12966102361679,-0.13514068722725],[-0.13648371398449,-0.0841940715909,-0.18456590175629],[-0.027750985696912,-0.050376009196043,0.13868826627731]],[[-0.016569424420595,0.0050214272923768,0.0036413101479411],[0.041390527039766,-0.099045418202877,0.029593884944916],[-0.19930717349052,-0.029377331957221,0.013367338106036]],[[-0.041744124144316,-0.051918640732765,-0.058373749256134],[0.088854275643826,-0.091822348535061,-0.08951074630022],[-0.03410404548049,-0.073916599154472,-0.098918221890926]],[[-0.0081727057695389,0.028965948149562,0.053589757531881],[-0.025697860866785,-0.080468654632568,0.065981149673462],[-0.12208911776543,-0.095021463930607,0.040772844105959]],[[-0.008285223506391,-0.013140382245183,0.035356637090445],[-0.020469425246119,0.016198324039578,0.0083530060946941],[-0.13059535622597,0.023782236501575,0.098375149071217]],[[0.0086501641198993,0.048266392201185,0.055195618420839],[0.1840428262949,0.076947174966335,0.051397640258074],[0.17982488870621,0.18571385741234,-0.15146164596081]],[[-0.0033043443690985,0.067896127700806,0.042991138994694],[0.016141980886459,-0.047840848565102,0.089047096669674],[-0.059472300112247,-0.14075639843941,-0.0086917374283075]],[[-0.039956361055374,0.016796424984932,0.0081873033195734],[0.004474853631109,-0.028224399313331,-0.0044933189637959],[-0.099771410226822,-0.0097878910601139,0.095070645213127]],[[-0.05316249281168,0.029061900451779,0.06424967944622],[-0.028880421072245,-0.053369011729956,-0.018598265945911],[0.016062133014202,-0.001864810124971,-0.054120406508446]],[[0.0021677727345377,-0.0012844727607444,0.024022778496146],[0.029445242136717,-0.11120340973139,-0.042155265808105],[-0.035904385149479,-0.030381288379431,0.080723218619823]]],[[[0.063981711864471,-0.028748635202646,-0.17423641681671],[-0.12171822041273,0.035502936691046,-0.13800126314163],[-0.13669693470001,0.032598830759525,-0.12023328244686]],[[-0.021113947033882,0.064013674855232,-0.17992360889912],[0.10553063452244,0.10736107826233,-0.042989932000637],[-0.06502179056406,-0.048164512962103,-0.21460457146168]],[[0.024428499862552,-0.013365943916142,0.095348581671715],[0.0072658150456846,0.086633607745171,0.14619234204292],[0.026890886947513,-0.04326243698597,-0.042145013809204]],[[0.10185605287552,-0.016841763630509,-0.0058518294245005],[-0.15411457419395,-0.11404284089804,-0.093932047486305],[0.10461762547493,0.22062854468822,0.13731433451176]],[[0.090695433318615,-0.00042421917896718,-0.026201494038105],[0.038773700594902,0.014804788865149,-0.021838951855898],[-0.043072741478682,-0.026033401489258,-0.100386492908]],[[-0.1251608133316,-0.023797549307346,0.12598317861557],[-0.02618957310915,0.11753303557634,-0.070660658180714],[-0.023922797292471,0.016122914850712,0.035511575639248]],[[-0.074428915977478,-0.013323972001672,-0.078526347875595],[-0.13978730142117,-0.086033366620541,-0.063007384538651],[-0.039374981075525,0.04603311419487,-0.047367788851261]],[[-0.10306359827518,-0.038781210780144,-0.08352505415678],[-0.15180979669094,-0.23449836671352,0.066079445183277],[0.047541301697493,0.0062714042142034,-0.19943104684353]],[[0.023033624514937,0.0098386323079467,-0.069769963622093],[0.055963676422834,-0.04349996894598,-0.040534228086472],[-0.041602190583944,-0.0055195083841681,0.012545458041131]],[[0.20185431838036,0.16692641377449,0.063252046704292],[0.31404039263725,0.37938490509987,0.24347768723965],[0.22226229310036,0.0057870945893228,0.047984231263399]],[[0.01094685215503,0.31757551431656,-0.095576666295528],[0.15147776901722,0.13155516982079,0.017148431390524],[-0.0021215335000306,0.035266660153866,-0.01285582408309]],[[0.10680792480707,0.01127187628299,-0.042398184537888],[0.089387245476246,-0.035374172031879,-0.11637286841869],[0.052643407136202,-0.11017373949289,-0.071438178420067]],[[0.072658143937588,-0.038651809096336,-0.0025264404248446],[0.030957279726863,-0.082075275480747,0.014440150931478],[-0.043251410126686,-0.021111406385899,0.15029196441174]],[[-0.029804099351168,-0.029523022472858,-0.067106261849403],[0.11969298869371,-0.12458537518978,-0.217793866992],[-0.13288436830044,-0.24121880531311,-0.23766475915909]],[[0.19213335216045,-0.21203105151653,0.033943589776754],[-0.067760214209557,-0.010068969801068,0.0072513050399721],[-0.04837191849947,0.12391676753759,-0.14809095859528]],[[0.10471920669079,0.01192329172045,-0.065298870205879],[0.10078363120556,0.087634593248367,0.07676687091589],[0.035562220960855,-0.068789899349213,0.038768954575062]],[[-0.016639683395624,-0.035935513675213,-0.088653236627579],[0.043903585523367,-0.10593828558922,-0.32580274343491],[0.029482208192348,-0.20510841906071,-0.24541099369526]],[[0.015846909955144,-0.067564129829407,-0.21324457228184],[-0.041682824492455,-0.10897083580494,-0.16940613090992],[-0.12033626437187,0.074787579476833,-0.18141405284405]],[[-0.043526761233807,-0.10255917161703,-0.20032659173012],[0.048036597669125,-0.19693244993687,-0.2192954570055],[-0.17562136054039,-0.31188324093819,-0.064788520336151]],[[0.003968327306211,-0.080295197665691,-0.1147718578577],[-0.19793766736984,-0.10162305086851,-0.1876272559166],[-0.18088200688362,-0.016717230901122,-0.11693279445171]],[[0.10735971480608,-0.02106230519712,0.017980240285397],[0.19881756603718,0.17996454238892,0.00039681509952061],[0.039244942367077,-0.18296824395657,-0.0049915052950382]],[[-0.018491890281439,-0.068343311548233,0.19735619425774],[0.027105718851089,0.03072047047317,0.14784471690655],[-0.012980596162379,-0.040360540151596,0.12577962875366]],[[0.13824452459812,0.29494813084602,-0.063353262841702],[-0.11005439609289,0.14481656253338,-0.012899979948997],[0.042351443320513,0.37000063061714,-0.034280143678188]],[[-0.1197457909584,-0.13158190250397,-0.16327546536922],[0.086396440863609,-0.26130273938179,0.030497651547194],[-0.11844531446695,-0.067492574453354,-0.055024269968271]],[[-0.1082796305418,-0.092568807303905,-0.27305600047112],[-0.24523694813251,-0.060871332883835,-0.16280402243137],[0.0096534630283713,-0.050443187355995,-0.068260610103607]],[[0.10383530706167,-0.0062238909304142,-0.074645675718784],[-0.0336196385324,0.054579488933086,-0.10509015619755],[-0.032812658697367,-0.032835889607668,-0.127770408988]],[[-0.052526444196701,-0.00077215989585966,0.059606436640024],[-0.054794982075691,-0.0042349454015493,-0.011107268743217],[-0.03273556753993,0.023409128189087,0.038885328918695]],[[-0.024783374741673,0.23368179798126,0.19982188940048],[0.1823958158493,0.59046918153763,0.24922850728035],[0.0010065053356811,0.25498116016388,0.078683026134968]],[[-0.043443001806736,-0.056551411747932,0.061673324555159],[-0.082485251128674,-0.16457092761993,0.015076044015586],[0.0091647515073419,-0.059602908790112,0.031098704785109]],[[-0.011444116011262,-0.053260046988726,-0.034699618816376],[0.028736600652337,-0.032514870166779,-0.04151039198041],[-0.011890161782503,0.043076917529106,0.10393849760294]],[[0.034250542521477,0.073558963835239,0.10433101654053],[-0.022281728684902,0.055139645934105,0.027815010398626],[0.11525963246822,0.030094401910901,0.057237107306719]],[[-0.055251233279705,-0.1279464662075,-0.18191653490067],[-0.081506617367268,-0.3528279364109,-0.13934847712517],[-0.089474119246006,-0.12838134169579,-0.024957006797194]]],[[[-0.10593392699957,-0.068555600941181,0.057277638465166],[0.082759842276573,-0.044100072234869,-0.030137678608298],[-0.022495420649648,-0.0061295880004764,-0.0031982578802854]],[[0.052641350775957,-0.026026334613562,-0.024958150461316],[-0.040189690887928,-0.014863094314933,0.019663721323013],[0.003134835511446,-0.021668454632163,0.080675892531872]],[[0.018094126135111,-0.052224263548851,0.19278921186924],[0.02283725515008,0.05093739554286,-0.068927764892578],[-0.0073118694126606,0.066332824528217,-0.012402481399477]],[[0.070965021848679,0.061915069818497,-0.03430213034153],[0.027581743896008,0.099199801683426,0.04765360802412],[0.028347158804536,-0.065329149365425,0.087598457932472]],[[-0.015039493329823,0.028196012601256,-0.0017377201002091],[0.049424398690462,-0.084544621407986,-0.041436970233917],[0.010470908135176,0.022960543632507,-0.088845066726208]],[[0.041957125067711,-0.30190977454185,0.16560497879982],[-0.080169953405857,0.046142671257257,-0.06130026653409],[-0.02412386611104,-0.039251081645489,0.19708517193794]],[[-0.054225418716669,0.04134027659893,-0.0153793329373],[-0.028421491384506,0.030044322833419,-0.061570506542921],[-0.0096259983256459,0.083119496703148,0.034623917192221]],[[0.04568699747324,-0.065523818135262,0.042710293084383],[0.091854326426983,-0.10435518622398,-0.062044862657785],[-0.060018394142389,0.051853150129318,0.044767949730158]],[[-0.03253660351038,-0.1026466563344,-0.011451337486506],[-0.096145190298557,0.039828609675169,0.12043283879757],[0.0072629335336387,-0.064815163612366,-0.050565797835588]],[[-0.077603571116924,0.13483795523643,-0.044633615761995],[0.018075402826071,0.1117045134306,-0.10581728816032],[0.0024723296519369,-0.0027949707582593,0.043362941592932]],[[0.054593298584223,0.000173657463165,-0.020206084474921],[0.12918783724308,0.11345224827528,-0.017157290130854],[-0.062368724495173,-0.091770678758621,0.0039658779278398]],[[-0.14471378922462,0.036684382706881,0.086063764989376],[0.11250200867653,-0.12867911159992,-0.024951986968517],[0.0094369342550635,0.0062472932040691,0.0045833820477128]],[[0.057259701192379,0.099046781659126,0.043955143541098],[0.037408880889416,0.038669679313898,0.015342185273767],[0.063147768378258,0.074200920760632,0.030185727402568]],[[-0.12637859582901,0.076908282935619,0.085393190383911],[0.13120505213737,0.023074885830283,-0.094267845153809],[-0.096958547830582,-0.072349153459072,0.21789839863777]],[[0.034121487289667,-0.11390057951212,0.078145302832127],[-0.077012613415718,0.091087535023689,0.018644111230969],[0.053931966423988,-0.034385535866022,0.046643793582916]],[[0.02198838070035,-0.20523978769779,0.199078977108],[-0.1256547421217,0.33877083659172,-0.26969200372696],[-0.085957929491997,-0.21046374738216,0.24484838545322]],[[0.013257907703519,0.011231197044253,-0.065821141004562],[-0.0033620891626924,0.0045367609709501,-0.02733994089067],[0.090356051921844,-0.052266053855419,0.050707869231701]],[[0.030661670491099,-0.12031646072865,0.046960286796093],[-0.079027011990547,-0.04166903719306,-0.10069426894188],[0.064209938049316,0.16092076897621,-0.062345329672098]],[[-0.03263246640563,0.15706869959831,-0.13400579988956],[0.038446750491858,-0.038622938096523,-0.15530698001385],[0.115931160748,0.00053406407823786,-0.070598527789116]],[[-0.059699557721615,-0.094375476241112,0.015133331529796],[0.056996311992407,0.053957939147949,-0.11202662438154],[0.0048748129047453,0.019808113574982,0.14992660284042]],[[-0.018642799928784,0.033955071121454,-0.063441902399063],[-0.032405663281679,-0.019994614645839,0.087851800024509],[0.12345422059298,-0.065417557954788,-0.015246970579028]],[[0.013694633729756,0.068929880857468,-0.19663035869598],[0.16732934117317,-0.17392280697823,0.31534305214882],[-0.12645225226879,0.0012551463441923,0.053373478353024]],[[0.18448889255524,-0.058803398162127,0.0031065070070326],[-0.0097354417666793,0.2060207426548,-0.098854683339596],[-0.078959383070469,-0.13842684030533,0.1776252835989]],[[-0.14123979210854,-0.025168584659696,0.18027184903622],[0.12250661104918,0.078532189130783,-0.15658198297024],[-0.084553301334381,0.053858794271946,0.060261629521847]],[[0.090380348265171,-0.010822026990354,-0.078085698187351],[-0.0046483362093568,-0.35316824913025,0.16030284762383],[0.025068992748857,-0.026873944327235,0.038298510015011]],[[0.01659856364131,-0.1039807498455,0.047611515969038],[0.03564490750432,-0.0073302374221385,-0.10576725006104],[-0.062283825129271,0.061517640948296,-0.11612208932638]],[[-0.014795386232436,-0.087033778429031,0.09668680280447],[-0.044726684689522,0.052088908851147,0.014644222334027],[0.062898352742195,0.047524224966764,-0.14240674674511]],[[0.083284266293049,0.0261658616364,-0.033191833645105],[-0.023039024323225,0.14684721827507,-0.13303482532501],[0.032839488238096,-0.22432139515877,0.15472979843616]],[[0.014419938437641,-0.088840022683144,-0.021719638258219],[0.032809261232615,-0.052243061363697,-0.064421951770782],[0.095800615847111,0.13349182903767,-0.037851709872484]],[[-0.062881976366043,0.11755599081516,0.084612749516964],[0.050025463104248,0.0049113612622023,0.056541938334703],[0.02568381652236,-0.048340994864702,0.070678763091564]],[[-0.085659816861153,0.12433738261461,-0.093016341328621],[-0.054992347955704,0.034646920859814,0.16555640101433],[0.019508352503181,-0.10981146246195,-0.067607797682285]],[[0.032196406275034,-0.029691316187382,0.092100352048874],[-0.031836539506912,-0.030662590637803,-0.16046194732189],[-0.022385463118553,0.054451432079077,-0.027812752872705]]],[[[-0.16343306005001,-0.12205955386162,0.059118244796991],[0.082761116325855,0.072378665208817,0.011110548861325],[-0.045727800577879,0.0722501501441,0.085887879133224]],[[-0.0052131866104901,-0.12756995856762,0.041887834668159],[-0.08051472902298,-0.042026687413454,0.02839246019721],[-0.0021892767399549,-0.012710468843579,0.12051434069872]],[[-0.1097491979599,0.090316399931908,0.11559043824673],[-0.00041327229700983,-0.048256181180477,0.022999493405223],[-0.022533036768436,0.03739807754755,-0.00099430652335286]],[[-0.028088184073567,-0.013112472370267,0.062204465270042],[0.069782741367817,-0.0911480858922,0.061723493039608],[0.093668825924397,0.017187213525176,-0.0038122043479234]],[[-0.042823623865843,-0.048320390284061,0.054748646914959],[0.086407005786896,0.05403945967555,0.15378731489182],[0.141985014081,0.00050093530444428,-0.038144443184137]],[[-0.15456767380238,0.046124923974276,-0.042587045580149],[-0.060879047960043,-0.17181341350079,0.087973102927208],[-0.082004301249981,0.0074874050915241,0.010900102555752]],[[0.046026598662138,0.0076547465287149,-0.13842557370663],[0.0067165964283049,-0.064298205077648,0.068263977766037],[-0.013253689743578,0.092043250799179,-0.027267364785075]],[[0.046962793916464,0.036758575588465,-0.0155621888116],[0.08292368799448,-0.010110565461218,0.0033781419042498],[0.024012142792344,-0.030373048037291,-0.093696191906929]],[[0.031885590404272,-0.077563643455505,0.016890831291676],[0.009125180542469,-0.071274414658546,0.05303119122982],[0.023784091696143,0.10180006921291,0.050886925309896]],[[-0.005941167473793,0.050947278738022,0.12100575864315],[-0.02629578858614,0.16431634128094,0.14742447435856],[0.052039530128241,0.15865187346935,0.086612612009048]],[[-0.012853030115366,-0.0059349522925913,0.04979457333684],[0.06903450936079,-0.003096541389823,0.083939701318741],[0.015298271551728,-0.026159105822444,0.12322769314051]],[[-0.087585724890232,-0.15094390511513,0.011014793999493],[0.0060734981670976,0.07860042899847,-0.022576224058867],[0.057058580219746,-0.045759629458189,0.087787717580795]],[[0.23018506169319,0.1329692453146,0.017760062590241],[0.066225998103619,0.030125085264444,-0.031643450260162],[0.027085825800896,-0.029162866994739,-0.072480782866478]],[[0.11229225248098,-0.07284414768219,-0.22907765209675],[0.033565171062946,-0.026746666058898,-0.0023858093190938],[0.039174195379019,0.13238500058651,0.061911281198263]],[[-0.013226483948529,0.0012825694866478,0.040420517325401],[0.047747828066349,0.062786653637886,-0.004531015176326],[0.06142545491457,0.086083605885506,-0.012884550727904]],[[-0.071176961064339,-0.061794515699148,-0.00034313736250624],[0.045075803995132,-0.10988812893629,0.086679257452488],[-0.15836381912231,-0.041583921760321,0.15225966274738]],[[0.067885629832745,0.108727902174,0.014866398647428],[0.13191197812557,-0.072208151221275,-0.16991659998894],[0.035969134420156,-0.113290540874,-0.23639090359211]],[[-0.064180225133896,0.017438922077417,0.033032160252333],[0.12529443204403,0.11101104319096,-0.1690221875906],[-0.076590329408646,0.026365758851171,-0.097754932940006]],[[-0.089415334165096,-0.075014531612396,0.0067883073352277],[0.01843767054379,0.043145023286343,0.088203407824039],[-0.020389463752508,-0.0066649443469942,0.05034027248621]],[[0.039543837308884,0.013458667322993,0.030291613191366],[-0.0015849624760449,0.092683620750904,-0.01364412996918],[0.04055517539382,0.10560395568609,0.017024844884872]],[[-0.011546848341823,0.022549653425813,-0.24791169166565],[0.014536619186401,0.098186112940311,0.10928089171648],[-0.13157665729523,0.13823592662811,0.13178601861]],[[0.00044522117241286,0.071969375014305,0.0024431732017547],[0.055472869426012,0.085844799876213,-0.0087973102927208],[-0.056665021926165,0.041606798768044,0.10353817790747]],[[0.0046360506676137,0.026550691574812,0.075625106692314],[0.03363973274827,0.0025552455335855,0.10213516652584],[-0.013221600092947,0.021900771185756,-0.093184612691402]],[[0.15440215170383,0.13204039633274,0.075236991047859],[-0.11298309266567,-0.0047617149539292,-0.1245661303401],[-0.055849611759186,0.051862120628357,-0.079541981220245]],[[0.097410313785076,0.029092472046614,0.081148400902748],[0.014153806492686,-0.041937828063965,-0.10033732652664],[0.057967003434896,-0.042338870465755,-0.06639900803566]],[[0.06396571546793,0.045731961727142,-0.14026209712029],[0.053647965192795,0.0069161942228675,-0.14919306337833],[0.10473012179136,0.18004862964153,-0.081860058009624]],[[0.10983621329069,0.03552521020174,-0.010465435683727],[0.046071331948042,0.0073972530663013,-0.044964209198952],[0.028657026588917,-0.10500901937485,-0.12014449387789]],[[0.17835809290409,0.0091076828539371,-0.057168181985617],[0.0049008731730282,-0.025558430701494,-0.11538500338793],[-0.0079709282144904,0.036875575780869,0.090391889214516]],[[0.077691413462162,-0.036837331950665,-0.10811015963554],[0.16523872315884,0.073444724082947,0.18237043917179],[0.10881798714399,0.07756070047617,-0.003555599367246]],[[0.053397227078676,0.045683745294809,0.015548373572528],[-0.012438005767763,-0.010063139721751,-0.052098520100117],[0.070843480527401,0.013726147823036,-0.0077184909023345]],[[-0.10578232258558,0.047135833650827,0.034419972449541],[-0.20771631598473,0.027862714603543,0.0544025413692],[0.089474387466908,-0.089950807392597,0.06202320754528]],[[-0.03132526949048,0.0084815854206681,-0.0019391537643969],[-0.22440958023071,-0.10440995544195,-0.23723669350147],[-0.054229117929935,-0.1009513437748,-0.094505541026592]]],[[[0.04797038435936,-0.094632811844349,0.0029746063519269],[-0.010724134743214,-0.011436002328992,-0.065988637506962],[-0.029147643595934,0.09803432226181,-0.072620220482349]],[[0.033539399504662,0.20418745279312,-0.059769075363874],[-0.093848705291748,-0.014548062346876,-0.036505796015263],[-0.077659770846367,-0.00017752202984411,0.021667394787073]],[[0.10334809869528,-0.073171190917492,-0.10461321473122],[0.17453926801682,0.057044323533773,0.080766014754772],[0.03304461017251,0.062792971730232,0.035249929875135]],[[0.023899484425783,0.070564821362495,-0.14089764654636],[-0.057239640504122,0.021861618384719,0.042937930673361],[0.0046781762503088,0.013688052073121,0.044202651828527]],[[-0.097614817321301,-0.0096735330298543,0.034836806356907],[0.055404420942068,0.04035422205925,0.070158258080482],[0.037360489368439,-0.0023520102258772,0.030035810545087]],[[-0.14612509310246,0.014366327784956,0.00030733793391846],[0.013600872829556,-0.035600129514933,-0.023207858204842],[0.18061794340611,-0.058327488601208,-0.14714583754539]],[[0.068147987127304,0.058281730860472,-0.15307325124741],[-0.12488873302937,-0.097124204039574,0.077201649546623],[-0.045367795974016,0.093467973172665,0.067649222910404]],[[0.025511976331472,-0.031324364244938,0.015096940100193],[0.1088879480958,-0.085301652550697,-0.10224751383066],[0.04972992092371,0.14577296376228,0.075560994446278]],[[0.075238928198814,0.14803898334503,0.11629918217659],[-0.14993673563004,0.0265695117414,0.036525618284941],[-0.13123862445354,-0.025097684934735,-0.1226309761405]],[[0.01024638209492,0.13237573206425,0.0088021773844957],[0.059966620057821,0.017026200890541,-0.0031916513107717],[0.015787687152624,-0.15048059821129,-0.057149149477482]],[[-0.060573168098927,0.047125604003668,-0.0019484873628244],[0.074666053056717,-0.051271837204695,0.20165567100048],[-0.081098601222038,-0.049740351736546,-0.032443080097437]],[[0.012450089678168,-0.0049225906841457,-0.22184003889561],[-0.0070462222211063,-0.031739413738251,0.071200974285603],[-0.19508017599583,0.011052434332669,0.045727640390396]],[[0.20134545862675,-0.085743255913258,0.051015645265579],[-0.00093566544819623,0.18820206820965,0.056360054761171],[-0.058237120509148,0.082866251468658,0.096401229500771]],[[-0.082462854683399,-0.018515285104513,-0.16418346762657],[0.091833062469959,-0.090114869177341,-0.094110883772373],[0.10578453540802,0.14135256409645,0.076741576194763]],[[-0.026390543207526,0.00027859531110153,0.071635760366917],[0.0083664273843169,-0.12042339146137,-0.0096398666501045],[-0.030702544376254,-0.11220666021109,-0.039023358374834]],[[0.10816035419703,-0.21014961600304,0.077178589999676],[0.07905375957489,0.010999909602106,-0.1052835136652],[0.13758434355259,-0.039239045232534,0.058832306414843]],[[0.0069608585909009,0.13484628498554,-0.012248592451215],[0.040780358016491,-0.027149295434356,-0.017591290175915],[-0.046489872038364,-0.18424512445927,-0.16595032811165]],[[0.12626866996288,-0.084430038928986,-0.017769558355212],[0.065044812858105,-0.065185129642487,-0.14328558743],[0.027384193614125,-0.054692175239325,-0.0032996332738549]],[[0.065655641257763,-0.045100621879101,-0.051969829946756],[-0.0034629739820957,0.10063505172729,0.03393380343914],[0.010309923440218,0.16251838207245,-0.023401569575071]],[[0.088504113256931,0.12385448813438,-0.062249910086393],[-0.085207067430019,0.07015236467123,-0.051857654005289],[-0.14344596862793,-0.10356468707323,-0.013899387791753]],[[0.046038318425417,0.094584681093693,0.027408733963966],[0.0026893883477896,0.071278095245361,0.038872443139553],[-0.044782135635614,-0.008690245449543,0.058836594223976]],[[-0.019201708957553,0.0121462456882,-0.091111220419407],[-0.10750553756952,0.007065980695188,0.04163783788681],[0.10056050121784,-0.017200877889991,0.059132378548384]],[[0.025879064574838,0.022939305752516,0.052764296531677],[0.022568877786398,0.018049785867333,-0.11915239691734],[0.089421346783638,0.11635708063841,0.12618309259415]],[[0.16481363773346,-0.092384330928326,-0.10768713802099],[0.07780634611845,0.042263891547918,-0.0043104100041091],[0.070683442056179,-0.01486191060394,-0.10346616059542]],[[0.10332132130861,-0.079642049968243,-0.055723931640387],[-0.10349050164223,0.13473352789879,-0.048836100846529],[-0.017768625169992,0.1039963811636,-0.06673576682806]],[[-0.016610603779554,0.045782689005136,-0.021060559898615],[-0.088201850652695,-0.052923463284969,0.020915221422911],[0.079974070191383,-0.012831353582442,-0.042771864682436]],[[-0.0095415711402893,-0.06340204179287,0.044159527868032],[-0.0091118952259421,0.0077363718301058,0.1107574030757],[-0.035534784197807,-0.023049373179674,-0.02306405454874]],[[-0.056638520210981,0.035082433372736,-0.029765395447612],[-0.054033298045397,0.12093472480774,-0.02146977186203],[0.059099163860083,0.040141023695469,0.12522748112679]],[[0.010211928747594,0.062099196016788,0.18444983661175],[0.010417039506137,-0.00051442364929244,-0.072796918451786],[0.033708788454533,-0.22558602690697,0.021515706554055]],[[0.043627701699734,-0.063409350812435,-0.016813887283206],[0.0088696563616395,-0.041265733540058,-0.053067412227392],[-0.047716230154037,0.0085004223510623,-0.014191282913089]],[[-0.11111910641193,0.08048128336668,-0.020272292196751],[0.0098728286102414,0.040410552173853,0.15390047430992],[-0.11650747060776,-0.060557171702385,0.04394543543458]],[[-0.041554626077414,0.096564792096615,0.029087048023939],[-0.067351005971432,0.14963653683662,0.020680021494627],[-0.014026606455445,0.018601957708597,0.00017199851572514]]],[[[0.02039061486721,0.14582724869251,0.24338540434837],[0.017152551561594,0.014177180826664,0.031720500439405],[-0.037457399070263,0.024396548047662,0.11921074986458]],[[0.063648000359535,0.033388629555702,0.075604200363159],[-0.0030010151676834,-0.0083429664373398,-0.0093989558517933],[-0.065524272620678,-0.080131322145462,-0.049264255911112]],[[0.097006097435951,0.026252524927258,0.089501857757568],[0.027851652354002,0.008007007651031,0.052884798496962],[0.028437424451113,-0.0055810902267694,0.15375548601151]],[[0.053908128291368,0.051287852227688,0.024294437840581],[0.15455855429173,0.1479439586401,0.14648631215096],[0.10481302440166,0.07384742051363,0.0021941247396171]],[[0.053884226828814,-0.13731421530247,-0.0094363735988736],[-0.025724599137902,0.10683615505695,0.019734987989068],[-0.072476655244827,-0.10518506169319,0.071196265518665]],[[0.042092997580767,0.0052427053451538,0.14191107451916],[-0.063033573329449,0.11882428079844,0.11867502331734],[0.08922266215086,-0.084895253181458,-0.13548521697521]],[[0.052856046706438,-0.076501995325089,-0.091679826378822],[0.087254405021667,-0.075536422431469,-0.0058583756908774],[-0.058007102459669,0.031378410756588,-0.025393519550562]],[[0.01142249815166,0.064033269882202,0.065410427749157],[-0.048158697783947,-0.024439392611384,-0.050778362900019],[-0.10613995790482,-0.18745425343513,0.097293950617313]],[[0.065719544887543,0.045626815408468,0.034245129674673],[0.065630406141281,0.037801094353199,0.077676877379417],[-0.048967216163874,0.065028376877308,-0.017114887014031]],[[0.13471248745918,0.11362510174513,0.079040601849556],[0.070773035287857,0.12371633946896,0.04488617554307],[0.17023250460625,0.0074951583519578,0.028102962300181]],[[-0.061004061251879,0.037978310137987,-0.090958155691624],[0.048863168805838,0.27862596511841,0.0079054767265916],[0.0079416874796152,0.17039026319981,0.069441862404346]],[[0.062008414417505,0.076210990548134,0.06641011685133],[0.042989812791348,0.02315472625196,0.13515342772007],[-0.070633642375469,-0.080345012247562,-0.0029197654221207]],[[-0.11326302587986,0.039506245404482,0.11518589407206],[-0.13016663491726,-0.05867850407958,0.038395263254642],[-0.075320839881897,0.1419495344162,-0.081357397139072]],[[-0.099529534578323,-0.069784313440323,-0.30353000760078],[0.073037192225456,0.056943900883198,-0.18925742805004],[0.0076063531450927,0.12930329144001,0.16276478767395]],[[-0.080071963369846,-0.14252658188343,0.074202731251717],[-0.045713152736425,-0.21915636956692,0.14541020989418],[0.031817261129618,-0.057914979755878,0.0080109992995858]],[[0.015084560960531,-0.063358284533024,-0.11831828951836],[0.081898495554924,0.0079095885157585,-0.14397200942039],[0.064058110117912,0.16851904988289,0.031574405729771]],[[-0.13743653893471,-0.0030515841208398,0.0094852885231376],[0.046682719141245,0.056452546268702,-0.078868374228477],[0.018116215243936,0.039411596953869,-0.06503438949585]],[[-0.13601092994213,-0.015659233555198,-0.12803912162781],[0.15502798557281,0.12475024163723,0.033666957169771],[-0.027415089309216,0.091752514243126,0.075994394719601]],[[0.08549540489912,-0.016048735007644,0.11735910177231],[-0.020215798169374,-0.031150881201029,-0.039098344743252],[0.037136185914278,0.048731870949268,0.060374673455954]],[[0.062331978231668,0.06622039526701,0.07895677536726],[0.090910352766514,-0.027071895077825,0.11537165939808],[-0.059985995292664,-0.20307502150536,0.01555138733238]],[[0.040811207145452,0.044665489345789,0.085903860628605],[0.098259977996349,-0.10869207233191,-0.062772504985332],[0.20889118313789,0.036467835307121,-0.036815192550421]],[[0.18191903829575,0.064044013619423,0.042790032923222],[0.067049741744995,0.045238133519888,0.16864551603794],[-0.051411278545856,-0.0051043340936303,0.055070370435715]],[[-0.054501593112946,-0.019946107640862,-0.15830241143703],[-0.044296495616436,0.27356052398682,0.017012517899275],[0.035159800201654,0.25620222091675,0.06618095189333]],[[-0.054470710456371,0.023317834362388,0.045438528060913],[0.12113134562969,-0.026536839082837,0.040873326361179],[0.064296007156372,0.061082452535629,-0.0038858794141561]],[[-0.1022555232048,-0.03258578851819,0.034640442579985],[-0.13731360435486,0.061675131320953,0.12939338386059],[-0.2179239243269,-0.017925510182977,-0.16549855470657]],[[-0.20814776420593,0.12252393364906,-0.11482836306095],[0.05029559507966,0.190802693367,0.13935929536819],[-0.14117427170277,0.12997363507748,0.11938871443272]],[[0.011682766489685,-0.026422064751387,-0.13670061528683],[0.015974637120962,0.032056234776974,-0.032181415706873],[-0.063554368913174,0.12439918518066,0.073350422084332]],[[-0.032478518784046,0.023066464811563,-0.082302108407021],[-0.037149962037802,0.20007713139057,-0.20212712883949],[-0.022479491308331,0.17035247385502,-0.04961046949029]],[[-0.071046240627766,0.17860208451748,-0.12165666371584],[0.024896487593651,0.15956497192383,-0.055500376969576],[0.077334441244602,0.058774445205927,0.0097048580646515]],[[0.0040377136319876,-0.1349069327116,0.062205780297518],[0.064270727336407,0.029285121709108,-0.052191555500031],[0.079524718225002,-0.095095604658127,0.032932352274656]],[[-0.090957574546337,-0.1087726354599,-0.20020151138306],[0.12501867115498,-0.063079632818699,-0.058127772063017],[0.073268011212349,0.12141602486372,0.0021127054933459]],[[0.0011183008318767,-0.0063849119469523,0.045013379305601],[-0.038842152804136,-0.16300854086876,-0.020908897742629],[0.047076866030693,0.022265899926424,-0.042859237641096]]],[[[-0.15015950798988,0.004352243617177,0.047871503978968],[0.0954859405756,-0.083781711757183,-0.0011535629164428],[-0.057502772659063,-0.041402373462915,0.0084973350167274]],[[0.094595424830914,0.0025973790325224,-0.099716663360596],[-0.040223471820354,-0.055853690952063,0.080019846558571],[0.10883190482855,-0.096000835299492,0.033147972077131]],[[0.24117045104504,-0.15963651239872,-0.32434490323067],[-0.32043674588203,0.058487702161074,-0.057031609117985],[0.036050569266081,0.013253353536129,-0.20079177618027]],[[0.051792223006487,-0.05699384957552,0.15352940559387],[-0.0058795972727239,-0.057157408446074,0.024015167728066],[0.016719644889235,0.24590259790421,-0.040907632559538]],[[0.019034376367927,-0.021873908117414,0.053583703935146],[0.062038529664278,0.010698248632252,-0.031481582671404],[-0.032786075025797,-0.0033682973589748,-0.008284468203783]],[[-0.17402449250221,-0.0026982547715306,0.084394082427025],[0.054497517645359,0.10529347509146,-0.029465641826391],[0.0220293905586,0.09192305803299,-0.027182025834918]],[[-0.010497980751097,0.1708462536335,0.082948245108128],[-0.012292477302253,-0.15631899237633,0.076519124209881],[-0.050606340169907,0.092660270631313,0.0029124582652003]],[[-0.10901952534914,0.061525624245405,-0.039389617741108],[0.040674652904272,-0.025200279429555,-0.097442664206028],[-0.079416394233704,-0.053583581000566,0.075922161340714]],[[0.031079418957233,0.014222677797079,-0.13542726635933],[-0.069587990641594,-0.044647134840488,0.023259114474058],[0.15708661079407,0.029483865946531,-0.13183970749378]],[[0.029431488364935,-0.11141587793827,0.026006560772657],[-0.098276391625404,-0.0071142530068755,0.16989287734032],[0.18506194651127,0.16917058825493,0.051657259464264]],[[0.018323833122849,0.021650172770023,0.08562596142292],[0.13802310824394,-0.1178812906146,-0.033676214516163],[-0.13297346234322,-0.033388111740351,0.028948061168194]],[[-0.0021018916741014,0.00040257253567688,0.057562805712223],[-0.033016707748175,0.099246710538864,0.014642619527876],[-0.056765284389257,0.035295445472002,0.062169399112463]],[[0.11740276962519,-0.12424945086241,-0.23844151198864],[-0.20631225407124,0.12170530855656,0.19974100589752],[0.29411238431931,-0.18919561803341,-0.193050339818]],[[0.016739174723625,-0.084838420152664,0.087832644581795],[0.041052430868149,0.074455566704273,-0.12198462337255],[0.0048413053154945,-0.0003820238634944,-0.096562162041664]],[[-0.083476990461349,-0.023365372791886,0.16598474979401],[0.058464489877224,-0.007986119017005,-0.11171892285347],[0.015577775426209,0.037413470447063,-0.031934596598148]],[[0.17287775874138,-0.035918850451708,-0.13451799750328],[-0.1818657964468,0.057086978107691,0.078077778220177],[0.067541643977165,0.014384164474905,-0.21815750002861]],[[-0.029539875686169,0.050106357783079,-0.21569095551968],[-0.045819830149412,-0.039701864123344,-0.059094715863466],[0.028031557798386,-0.14772312343121,-0.081652626395226]],[[0.0097144832834601,-0.037966668605804,0.044985357671976],[0.077963925898075,0.025808528065681,-0.022471101954579],[-0.0082416906952858,0.029471948742867,0.079211100935936]],[[-0.048234798014164,0.036594599485397,-0.15687443315983],[0.15615360438824,-0.17267067730427,0.039860501885414],[-0.020033081993461,0.01051645167172,0.1834170371294]],[[-0.13371428847313,-0.020617499947548,-0.032696776092052],[-0.011340365745127,0.074173040688038,-0.014010084792972],[0.08502783626318,-0.010581285692751,0.034843910485506]],[[-0.0047995131462812,-0.0078882817178965,-0.097531534731388],[-0.03151673451066,-0.0099552497267723,0.14060206711292],[0.13432873785496,-0.071242921054363,-0.099142603576183]],[[-0.0049718539230525,0.12667624652386,-0.077525667846203],[-0.12726300954819,-0.063502058386803,0.14129300415516],[0.091209173202515,0.17998290061951,-0.093983538448811]],[[-0.13455122709274,0.11797132343054,0.061421137303114],[-0.07562680542469,0.13151744008064,0.0037964358925819],[0.071083024144173,-0.19397926330566,-0.020168237388134]],[[-0.056740529835224,-0.057848069816828,0.006947960704565],[-0.055240910500288,0.047560192644596,0.02516601420939],[-0.0050993822515011,-0.025947192683816,-0.093239508569241]],[[0.019347967579961,0.025773214176297,0.0015975493006408],[-0.057267293334007,-0.069002009928226,-0.032257284969091],[-0.018053650856018,0.11341106146574,0.064118131995201]],[[-0.14378280937672,0.1117615327239,-0.018086867406964],[0.064054325222969,-0.10818140953779,-0.035421043634415],[0.091539949178696,-0.06970089673996,0.095773130655289]],[[0.033537816256285,0.06179603934288,-0.10547436028719],[0.012394458055496,0.014006259851158,-0.019114121794701],[0.080639459192753,-0.052346054464579,-0.011709000915289]],[[0.11321126669645,-0.24918437004089,0.094718553125858],[-0.030695866793394,0.14546884596348,0.070441238582134],[0.031034912914038,0.068942204117775,0.072426028549671]],[[0.1511205881834,-0.10767581313848,-0.04536921530962],[-0.080462984740734,0.10571441799402,0.056255843490362],[-0.0013547636335716,0.099615126848221,-0.15162967145443]],[[-0.044776927679777,0.039762306958437,0.0068963086232543],[0.024383805692196,-0.054953873157501,-0.12519052624702],[-0.049627605825663,0.01418477203697,0.065044492483139]],[[-0.28755244612694,0.15826204419136,-0.0010097706690431],[0.097777456045151,-0.16623915731907,-0.17417192459106],[-0.13574753701687,0.07901357114315,0.073078036308289]],[[-0.05449490249157,-0.087988868355751,0.022484634071589],[0.069390371441841,-0.10938288271427,-0.0066893082112074],[-0.0023061081301421,-0.022866506129503,-0.025413820520043]]],[[[0.149290189147,0.19055530428886,0.018641397356987],[-0.039364688098431,0.11901581287384,0.17131768167019],[0.036850988864899,0.076982200145721,0.13635441660881]],[[0.029054449871182,0.010835678316653,-0.039491929113865],[0.053877543658018,-0.0076123792678118,0.015903528779745],[-0.033589888364077,-0.068124562501907,0.037170071154833]],[[0.0080441096797585,-0.13235010206699,-0.14703392982483],[0.16447408497334,0.11243192106485,-0.028766700997949],[0.14558233320713,-0.0071604931727052,0.039385322481394]],[[0.031107788905501,-0.12938842177391,-0.020427767187357],[0.19566528499126,0.24781054258347,-0.012574308551848],[0.10482902079821,0.035328190773726,0.12998224794865]],[[-0.041326005011797,0.063366875052452,-0.049604624509811],[0.021381951868534,-0.0059152571484447,-0.002826138632372],[0.022797973826528,0.032184440642595,0.018284665420651]],[[0.2894711792469,-0.22691352665424,0.060317773371935],[0.15910977125168,-0.042779162526131,-0.06139675155282],[-0.13489827513695,0.11003506183624,-0.0062705264426768]],[[0.088424161076546,-0.042386375367641,-0.14578863978386],[0.082994274795055,0.15406702458858,0.0032747334334999],[0.089835964143276,-0.02171460352838,-0.016632735729218]],[[0.12962612509727,0.013388641178608,0.0064947162754834],[0.14116059243679,-0.11440568417311,-0.073152251541615],[-0.022028109058738,0.050457511097193,-0.010708224959671]],[[0.17283011972904,-0.036540556699038,-0.22324611246586],[-0.045784473419189,0.20886674523354,-0.0066217854619026],[-0.11526111513376,-0.042025811970234,0.07567972689867]],[[-0.068575501441956,0.1127302646637,0.04082053899765],[-0.068281106650829,0.1404352337122,0.033008936792612],[0.15301689505577,-0.0065812594257295,0.088400065898895]],[[0.094512365758419,0.13840802013874,-0.090130276978016],[-0.0041326466016471,0.043265867978334,-0.035349063575268],[0.026779117062688,0.022769942879677,0.053575217723846]],[[0.16057766973972,0.088576517999172,0.0054223267361522],[0.10192946344614,0.032779682427645,-0.038019482046366],[-0.059254877269268,0.036882773041725,-0.014769138768315]],[[0.13817158341408,0.025854710489511,-0.001282079028897],[0.1145498752594,0.027629870921373,0.04974465072155],[-0.14611232280731,-0.18916580080986,0.094094887375832]],[[-0.32625144720078,-0.13842105865479,0.039256066083908],[0.31130316853523,0.062234275043011,-0.25454756617546],[0.086004167795181,-0.012868450023234,0.032215315848589]],[[-0.019675681367517,-0.029306219890714,-0.021297313272953],[-0.073298931121826,-0.094677187502384,-0.131800994277],[-0.15616272389889,-0.053558677434921,-0.013629641383886]],[[0.0091399159282446,0.13396914303303,0.063288755714893],[0.07741454988718,-0.02344367466867,-0.10263900458813],[0.17311728000641,-0.14168128371239,-0.094917118549347]],[[0.072202809154987,0.094469867646694,0.04735554754734],[-0.10938455909491,-0.14032672345638,-0.017863541841507],[0.039247889071703,-0.15191140770912,-0.14482156932354]],[[0.026353638619184,0.069045692682266,0.0092290472239256],[0.10205096751451,-0.076005198061466,-0.15778292715549],[0.11112454533577,-0.1483433842659,-0.23125456273556]],[[0.17933352291584,0.1260230243206,-0.13490264117718],[-0.13737945258617,0.03833831846714,-0.010088404640555],[0.06998585909605,-0.11906074732542,-0.050311051309109]],[[-0.058717116713524,-0.10855700820684,-0.035241115838289],[-0.10038883239031,-0.029417438432574,-0.097027748823166],[0.055047288537025,-0.11552266031504,-0.041518896818161]],[[0.19889932870865,-0.058998439460993,-0.11381680518389],[-0.021266376599669,0.14884388446808,-0.0061180214397609],[0.033463001251221,0.15567101538181,0.18959967792034]],[[-0.055811900645494,0.072737962007523,0.049923092126846],[-0.018744301050901,0.0087695345282555,0.025974601507187],[0.033654905855656,-0.033159717917442,0.16641966998577]],[[-0.18652826547623,-0.12731386721134,-0.056695371866226],[0.14127930998802,0.000364819803508,0.16218817234039],[0.11975121498108,0.1624132245779,0.12044119089842]],[[-0.13834527134895,-0.15989856421947,-0.058546479791403],[0.035535171627998,0.084846332669258,-0.1110038459301],[0.045970067381859,-0.044368349015713,-0.021111857146025]],[[-0.080714754760265,-0.10257145017385,0.014992021024227],[-0.12887886166573,-0.25848087668419,-0.04148905351758],[0.024078484624624,-0.1369015276432,-0.14984934031963]],[[0.1654447466135,0.015332014299929,0.018527500331402],[0.096261858940125,0.087402865290642,-0.090641133487225],[0.027002496644855,-0.024953922256827,0.011089579202235]],[[-0.02805519849062,-0.027545966207981,-0.0093577224761248],[0.084550008177757,0.0098209027200937,-0.05892039462924],[0.045317001640797,0.03099113702774,-0.0094796447083354]],[[0.023655308410525,0.14028657972813,0.1388227045536],[-0.074546493589878,0.21825933456421,0.01905039511621],[0.19804894924164,-0.085318170487881,-0.0016162645770237]],[[0.084339298307896,-0.045259043574333,0.067725919187069],[0.14389112591743,0.06286034733057,-0.32066088914871],[0.092342279851437,0.098623193800449,-0.026709420606494]],[[-0.099303521215916,-0.13549098372459,0.081687174737453],[-0.089487724006176,-0.11103401333094,-0.035180177539587],[0.020759034901857,-0.03567249327898,-0.039089974015951]],[[-0.070203982293606,-0.081125617027283,-0.075428672134876],[-0.05432665720582,0.003854243317619,-0.09863355755806],[0.062569357454777,0.10796164721251,0.056949649006128]],[[-0.095800451934338,-0.030407341197133,-0.015212421305478],[-0.011174586601555,-0.050029046833515,-0.032819598913193],[-0.099346600472927,-0.070767216384411,-0.12474679946899]]],[[[-0.04064704105258,-0.10736173391342,0.098872937262058],[-0.0026519256643951,-0.10615617036819,0.086993239820004],[-0.0049835219979286,0.039402205497026,-0.082749344408512]],[[-0.13392598927021,-0.058039668947458,0.10773716121912],[-0.019464764744043,0.052637919783592,0.1278088837862],[-0.065439462661743,-0.047221537679434,0.034212816506624]],[[0.1215530410409,0.093935556709766,0.024209229275584],[0.22568476200104,0.091610208153725,-0.062033616006374],[0.087412260472775,0.040980093181133,0.064460530877113]],[[-0.026208061724901,0.005363380536437,0.10289371013641],[0.16061469912529,0.058704387396574,-0.057270597666502],[0.049084689468145,-0.039405155926943,-0.0060720797628164]],[[0.02778927795589,0.090231098234653,-0.053441178053617],[-0.0020372183062136,-0.0013358436990529,-0.02647689729929],[0.049647551029921,0.08652526140213,-0.021436899900436]],[[-0.16694551706314,-0.046278610825539,0.065350569784641],[-0.0003835063544102,-0.075201459228992,-0.098338648676872],[-0.042517721652985,-0.093311175704002,-0.033756941556931]],[[-0.12984509766102,-0.033710695803165,0.12187834084034],[-0.16958738863468,0.063209228217602,-0.050400648266077],[-0.039999946951866,-0.025405501946807,0.060007721185684]],[[0.01881636492908,0.016974650323391,0.016978114843369],[-0.17294973134995,-0.1623465269804,-0.10320798307657],[-0.10137538611889,0.010467144660652,-0.051663991063833]],[[-0.015913700684905,-0.059218510985374,-0.0093814823776484],[-0.059722401201725,-0.022958349436522,0.16903501749039],[0.082559563219547,-0.030330298468471,-0.020906547084451]],[[0.10718311369419,0.20985779166222,0.10469441115856],[0.30099907517433,0.29736649990082,0.13990317285061],[0.0068263239227235,0.13967272639275,-0.14281027019024]],[[0.16979376971722,0.042921230196953,-0.31975224614143],[0.046816844493151,0.16812507808208,-0.011429640464485],[0.059163924306631,0.089141175150871,0.01133531704545]],[[-0.070634931325912,-0.012876608408988,0.048789542168379],[-0.10915739089251,-0.0074146534316242,0.038419701159],[-0.16752544045448,0.15367567539215,0.03107082284987]],[[0.090940020978451,0.031186873093247,-0.075053989887238],[0.019203115254641,0.040508959442377,-0.020436184480786],[0.059786643832922,-0.15382143855095,-0.079415045678616]],[[-0.060623452067375,-0.20141324400902,-0.14325530827045],[0.013066160492599,0.12481968849897,-0.010786384344101],[-0.025681821629405,-0.019468761980534,-0.1214305460453]],[[-0.010876966640353,0.041657544672489,0.066448539495468],[0.02721013687551,0.061551626771688,-0.070954099297523],[0.057810500264168,-0.058410357683897,0.024039201438427]],[[-0.2961074411869,-0.13722766935825,-0.29110848903656],[-0.087001517415047,0.015414400026202,0.049976285547018],[0.022713886573911,0.14379434287548,-0.087072923779488]],[[0.011466234922409,-0.058035310357809,-0.10733453184366],[0.057493288069963,-0.16949555277824,-0.2515797317028],[-0.065027020871639,-0.16411009430885,-0.12517403066158]],[[-0.051638506352901,-0.15340277552605,-0.024934154003859],[0.074867218732834,0.063979044556618,-0.10537797957659],[-0.0095656970515847,-0.09182420372963,-0.036100998520851]],[[-0.16098472476006,0.033382229506969,0.0020988266915083],[-0.028579883277416,0.000576926919166,0.0051044244319201],[-0.078382790088654,0.17530430853367,-0.066150434315205]],[[-0.030045602470636,-0.11942289024591,-0.0069915866479278],[-0.10247863829136,-0.13121974468231,0.00061358825769275],[-0.085396252572536,-0.019286846742034,-0.022871147841215]],[[-0.19864201545715,0.091375134885311,0.073240727186203],[-0.0095829339697957,0.22276739776134,0.18187998235226],[-0.19495534896851,0.14285692572594,-0.026773663237691]],[[-0.04712737351656,-0.096951395273209,0.031368482857943],[-0.11397933214903,-0.03466572239995,-0.011718825437129],[0.01537489425391,0.027227493003011,-0.11289236694574]],[[0.21425399184227,0.2082432359457,0.10807490348816],[-0.0039031913038343,-0.0097720799967647,0.0026427353732288],[-0.030608801171184,-0.10897963494062,0.19858291745186]],[[-0.064836584031582,0.038878098130226,-0.036633465439081],[0.037513911724091,-0.036180775612593,-0.017301101237535],[-0.050896398723125,0.047299612313509,0.0012003651354462]],[[0.016903392970562,-0.072624273598194,0.068777158856392],[0.001314043183811,-0.19493919610977,-0.11870750784874],[-0.065516397356987,0.036998875439167,-0.03039314225316]],[[0.049935832619667,0.010965163819492,0.013631223700941],[-0.10521264374256,0.0095636146143079,0.093570180237293],[0.012985289096832,-0.011333442293108,0.017743168398738]],[[0.046243891119957,-0.011562551371753,-0.090311445295811],[0.070542626082897,-0.043535225093365,-0.051655821502209],[0.11398791521788,-0.078712433576584,0.054428055882454]],[[0.050948441028595,0.032397467643023,-0.067390307784081],[0.10062252730131,0.03457298502326,0.061298970133066],[0.015319989994168,0.071150556206703,-0.23054388165474]],[[-0.051332592964172,-0.20293216407299,-0.17386676371098],[-0.032788097858429,-0.0089435763657093,0.0789809897542],[-0.11281894892454,0.0032893097959459,0.0349390655756]],[[0.077195361256599,0.085608690977097,-0.050337243825197],[0.13489404320717,-0.054989505559206,-0.09691496938467],[0.024256486445665,-0.063488014042377,-0.058441884815693]],[[-0.14698407053947,-0.021957004442811,-0.019234843552113],[0.0078289341181517,0.01700546592474,0.089214153587818],[0.080631658434868,-0.030592234805226,0.095694243907928]],[[-0.082815818488598,-0.073558203876019,0.036061659455299],[-0.030301135033369,-0.065488524734974,-0.080001763999462],[0.026012262329459,0.018083887174726,0.053125869482756]]]],"nOutputPlane":64,"kW":3,"kH":3,"bias":[-0.0055284616537392,-0.0016456062439829,-0.010900143533945,0.0079343998804688,0.0011974744265899,0.0041075455956161,-0.0042419796809554,-0.0019682564307004,0.021093482151628,-0.0063817976042628,0.001328986370936,0.006143799982965,0.0047061983495951,-0.001084188115783,0.00040093821007758,-0.0077343606390059,-0.0096843335777521,0.0060163596644998,-0.0049961595796049,-0.0083490777760744,-0.0090779904276133,-0.0026080191601068,0.0028288264293224,0.0014093846548349,-0.0090899653732777,-0.054744467139244,-0.00053572072647512,-0.0062636453658342,0.0025194180198014,-0.035004939883947,-0.0074321567080915,-0.0061973305419087,-0.0051793539896607,-0.005410757381469,-0.010749697685242,0.004917164798826,-0.073217697441578,-0.0042323963716626,-0.0083625810220838,-0.012309921905398,-0.0016093823360279,-0.0070675662718713,-0.015247606672347,-0.020686130970716,-0.0018924218602479,-0.0021064896136522,-0.0061867185868323,-0.0037598311901093,-0.0059700524434447,-0.011123686097562,0.0021727662533522,-0.001356233144179,-0.005871050991118,0.0027931968215853,-0.0097296535968781,-0.0061278231441975,0.0035998742096126,-0.009953017346561,-0.0040099839679897,-0.0028562811203301,0.0046433466486633,-0.0085962163284421,0.0013404469937086,0.01114377938211],"nInputPlane":32},{"weight":[[[[0.031783655285835,-0.10777265578508,0.064630672335625],[0.09458827227354,-0.10881417989731,0.054013811051846],[0.034361720085144,0.05779617652297,-0.093907810747623]],[[-0.078847967088223,0.19434030354023,0.071952857077122],[0.13939805328846,0.023292286321521,-0.050877939909697],[-0.025216756388545,-0.024588633328676,-0.062959529459476]],[[0.02765641361475,0.018486935645342,-0.028952734544873],[-0.0022483861539513,-0.09179375320673,-0.052602969110012],[0.050473928451538,-0.069303564727306,-0.21186353266239]],[[-0.057293023914099,-0.019552335143089,-0.016063800081611],[-0.086361825466156,0.065434277057648,0.048776984214783],[-0.0033196683507413,-0.090425245463848,0.12232578545809]],[[0.10594497621059,-0.2152906358242,0.020718481391668],[-0.064950570464134,-0.061155714094639,-0.032492727041245],[0.02288006991148,-0.037732280790806,-0.0086100334301591]],[[-0.020717216655612,-0.023646062240005,-0.033291220664978],[-0.017519054934382,0.029943585395813,-0.074527509510517],[0.062150973826647,-0.030446942895651,0.049894016236067]],[[0.003657941473648,0.040032248944044,0.0038123140111566],[-0.029464745894074,-0.06113662943244,-0.013256523758173],[-0.071225918829441,0.10538111627102,0.074577383697033]],[[0.1649973988533,-0.056201916188002,0.1373165845871],[-0.074080057442188,-0.17709827423096,-0.11400318145752],[-0.1411866247654,-0.093619972467422,0.021639643236995]],[[-0.070133455097675,-0.071829818189144,-0.03099955804646],[-0.067907154560089,0.12105921655893,0.061428427696228],[0.028511542826891,0.0065079028718174,0.06315828114748]],[[-0.077064454555511,-0.040749285370111,-0.078947596251965],[-0.04602974280715,-0.098096869885921,0.0017767315730453],[-0.096845924854279,0.087852366268635,-0.072518669068813]],[[-0.16600869596004,0.016817258670926,-0.13514034450054],[-0.033097997307777,-0.011501723900437,-0.053023215383291],[-0.048014719039202,-0.031522937119007,0.0076956795528531]],[[-0.043418642133474,0.12821869552135,-0.058543242514133],[0.021510314196348,-0.047954544425011,0.030828883871436],[0.14822885394096,-0.0046374341472983,-0.044349856674671]],[[0.024768739938736,-0.085639521479607,-0.061576351523399],[-0.035290945321321,-0.052087251096964,-0.035663887858391],[0.014199038036168,-0.021597543731332,-0.017760347574949]],[[-0.03864411264658,0.053973142057657,0.095430709421635],[0.0086760642006993,0.10980246961117,-0.037878349423409],[0.091166064143181,0.023250171914697,-0.036735244095325]],[[-0.12655252218246,-0.14278523623943,-0.14156749844551],[0.01725641451776,0.049930106848478,0.15286311507225],[-0.0048983194865286,0.10988987237215,-0.00059363438049331]],[[0.054192513227463,-0.099028065800667,0.042052689939737],[0.085716813802719,-0.12377865612507,0.077193386852741],[-0.043882202357054,0.047932852059603,-0.071577355265617]],[[-0.097008667886257,0.063167296350002,0.035216223448515],[0.039535738527775,-0.12219978123903,0.018017008900642],[-0.015516623854637,-0.0040374151431024,0.039464045315981]],[[0.039327211678028,0.025744264945388,-0.12987248599529],[0.11903186142445,-0.040857490152121,-0.081036686897278],[-0.059503503143787,0.048357933759689,-0.031391721218824]],[[-0.016174305230379,0.019751803949475,-0.1087913364172],[0.14167636632919,0.059403542429209,0.033249579370022],[0.098390586674213,0.036169085651636,0.042985741049051]],[[0.1204524859786,0.090139634907246,0.1729674488306],[0.18948379158974,0.0096787624061108,0.25056719779968],[0.052880220115185,0.039761107414961,0.13167090713978]],[[-0.063005544245243,0.14003813266754,-0.18034973740578],[0.0013743716990575,0.029287798330188,-0.016044523566961],[0.042534478008747,0.015068778768182,-0.015902372077107]],[[-0.022768706083298,-0.035789985209703,0.066863469779491],[-0.03039307333529,-0.050652518868446,0.027460988610983],[0.015375318937004,-0.0056711789220572,0.06994516402483]],[[0.049138505011797,0.057808510959148,-0.010048863478005],[-0.021321322768927,0.033904679119587,0.045882869511843],[0.022585485130548,0.0029757427982986,-0.02729476429522]],[[0.012931392528117,-0.027740057557821,-0.049035996198654],[-0.049173638224602,0.0014106609160081,-0.099779583513737],[0.016389299184084,-0.073593713343143,-0.058150142431259]],[[0.18108366429806,0.10460633784533,0.11412805318832],[0.16766488552094,-0.050538312643766,0.17524705827236],[0.024191105738282,-0.13443376123905,-0.083717480301857]],[[-0.03131752833724,-0.079219840466976,-0.064514122903347],[0.060220908373594,0.086489610373974,0.11143934726715],[0.065855823457241,0.10103606432676,-0.03708029165864]],[[-0.038454826921225,-0.08829016238451,0.041219566017389],[-0.069382399320602,0.053791116923094,0.07789571583271],[0.061716739088297,-0.0085473014041781,-0.06115335971117]],[[-0.071928381919861,-0.01659270003438,-0.12959530949593],[-0.20528699457645,-0.033271044492722,0.056323409080505],[-0.048698160797358,-0.076902106404305,-0.049550879746675]],[[0.12680001556873,-0.022574782371521,0.0032977729570121],[-0.089231878519058,-0.12078643590212,-0.10791528970003],[0.031126517802477,-0.076899491250515,0.14391440153122]],[[-0.11281231045723,-0.059967510402203,-0.10458048433065],[-0.13339228928089,0.044254500418901,-0.18310107290745],[-0.061849690973759,-0.065556652843952,-0.041729021817446]],[[0.03004384227097,-0.1283516138792,-0.019785383716226],[-0.045286759734154,0.022255169227719,0.046488251537085],[0.039058860391378,0.15862290561199,-0.011724885553122]],[[-0.074096739292145,0.037537131458521,0.047886550426483],[-0.049319501966238,-0.023928644135594,-0.024124240502715],[0.021237960085273,0.013145000673831,0.035677410662174]],[[-0.017999356612563,-0.13006222248077,-0.076019488275051],[-0.084866389632225,-0.083625584840775,-0.036570802330971],[-0.030658354982734,0.049595773220062,0.06845223903656]],[[-0.066893592476845,-0.10185354202986,0.11422074586153],[0.03531751409173,0.03193823993206,-0.11476930975914],[0.016391376033425,-0.042224261909723,-0.11879580467939]],[[-0.046547025442123,-0.011455945670605,0.14501501619816],[-0.11554348468781,0.028137063607574,0.18542437255383],[-0.004707517568022,0.026015162467957,0.09697537124157]],[[0.036449570208788,-0.047222975641489,0.020117940381169],[-0.16637283563614,-0.094951182603836,0.11080311238766],[-0.051014736294746,0.096839398145676,-0.047497805207968]],[[-0.17543146014214,-0.10191756486893,0.044428817927837],[-0.17344573140144,-0.11085041612387,0.1333831846714],[-0.149278819561,0.033527873456478,0.15958321094513]],[[-0.014083976857364,0.0024170360993594,0.04879217222333],[-0.096874743700027,0.11775786429644,0.13512308895588],[0.049318552017212,-0.034818962216377,0.082127071917057]],[[-0.049145583063364,-0.09731475263834,-0.056739017367363],[0.10875814408064,0.056871570646763,-0.12452630698681],[0.044687245041132,-0.032122079282999,-0.083771839737892]],[[0.028208676725626,0.026032079011202,0.065593488514423],[0.024453949183226,0.063812084496021,0.025164566934109],[-0.10177762061357,-0.012552203610539,0.11851603537798]],[[-0.13771130144596,-0.1170899271965,-0.068865589797497],[0.052727654576302,-0.017134364694357,0.052711106836796],[-0.061001602560282,0.042303889989853,0.088539309799671]],[[0.021387474611402,0.019737249240279,0.057404905557632],[-0.062685139477253,0.057250309735537,0.027857147157192],[0.0062411408871412,0.14025980234146,-0.062773562967777]],[[-0.12358544766903,-0.0041810874827206,0.023892065510154],[-0.038254082202911,0.070740394294262,0.052642323076725],[-0.0062537682242692,-0.026049703359604,0.018608521670103]],[[0.070497632026672,0.042020544409752,-0.0014544341247529],[0.042829681187868,0.01487525459379,-0.090615496039391],[0.053035896271467,-0.034443099051714,-0.10313658416271]],[[0.014446941204369,-0.10087566822767,-0.04847214743495],[-0.077724047005177,-0.03221046179533,0.060195159167051],[0.0024366059806198,0.016046306118369,-0.051519513130188]],[[-0.13252258300781,-0.080353528261185,0.027016213163733],[-0.013891590759158,-0.052593950182199,-0.04924326390028],[-0.18190214037895,0.029912680387497,-0.028265058994293]],[[0.029327234253287,-0.032330770045519,0.0084785250946879],[-0.024918457493186,-0.081505008041859,0.18775732815266],[-0.087792560458183,0.037399549037218,0.078226707875729]],[[-0.020056907087564,-0.013928350061178,0.060348585247993],[-0.055811192840338,-0.069045975804329,0.10241878777742],[-0.08900398015976,0.019091883674264,0.061493709683418]],[[-0.043551806360483,0.027356350794435,0.087850973010063],[0.080274969339371,-0.13065832853317,0.0077890125103295],[-0.039811708033085,-0.024278106167912,0.085001640021801]],[[-0.024882076308131,-0.035013556480408,-0.054394759237766],[-0.045871950685978,0.070429183542728,0.012568456120789],[0.012825230136514,0.039805755019188,0.012285271659493]],[[-0.076830364763737,0.01190931443125,-0.12512758374214],[-0.11736357212067,-0.037677060812712,0.061127707362175],[-0.024327602237463,-0.059531923383474,0.018022570759058]],[[-0.18237608671188,-0.04309680685401,-0.081910334527493],[0.049355834722519,-0.0022251554764807,0.19296376407146],[0.055464282631874,0.0089997425675392,3.3212782000192e-05]],[[0.098524197936058,-0.048232890665531,-0.19160640239716],[0.14661967754364,-0.07798694819212,-0.10087879747152],[-0.082310512661934,0.042891286313534,-0.076836824417114]],[[0.086118623614311,0.16597545146942,-0.037987489253283],[0.012703618966043,-0.043188188225031,0.055831123143435],[-0.00076472474029288,0.091691575944424,-0.038740795105696]],[[-0.030236748978496,-0.019445437937975,-0.043061554431915],[-0.0103551261127,0.078645624220371,-0.044175874441862],[0.062686547636986,-0.031526125967503,0.01048120111227]],[[0.078174903988838,0.015266533941031,0.15221586823463],[-0.0027091484516859,-0.015432216227055,-0.051991060376167],[-0.034393835812807,0.059152729809284,0.023821281269193]],[[0.10087788850069,-0.077313825488091,0.18588446080685],[-0.14115929603577,0.0233667884022,0.15702159702778],[0.13448794186115,0.12186366319656,0.29513427615166]],[[0.050196047872305,-0.053896706551313,-0.058853249996901],[0.091565780341625,0.082911968231201,0.094755738973618],[-0.30321300029755,0.0067602042108774,0.068859189748764]],[[-0.024802193045616,0.14367166161537,0.088507257401943],[0.10336032509804,-0.0091715482994914,0.087220698595047],[-0.086556389927864,-0.0028471779078245,-0.073723934590816]],[[0.014630590565503,0.14616048336029,-0.031183233484626],[0.086490362882614,0.11245428025723,0.075624696910381],[0.037616223096848,0.098252564668655,-0.066479668021202]],[[-0.011592355556786,-0.079691231250763,-0.10322993248701],[-0.078118890523911,0.10478232055902,-0.0036538455169648],[0.077912300825119,0.0072337100282311,0.020542958751321]],[[0.043362069875002,0.02548161149025,-0.11671963334084],[0.092772044241428,-0.063047900795937,-0.11342809349298],[0.055634126067162,-0.057915065437555,-0.05271203815937]],[[0.15388409793377,0.088728725910187,-0.08088069409132],[0.047366250306368,-0.05162401497364,-0.047116179019213],[0.092431128025055,0.00602698745206,-0.060084730386734]],[[0.20321904122829,0.08776817470789,-0.13859984278679],[0.097556337714195,-0.038204964250326,0.009925389662385],[-0.11802142858505,-0.16035285592079,-0.096424333751202]]],[[[-0.087328799068928,-0.03440847992897,-0.014969915151596],[-0.030086437240243,-0.029275301843882,-0.013506503775716],[0.091355510056019,0.0738126039505,0.016129679977894]],[[0.0053030634298921,0.064482904970646,-0.038713868707418],[0.087218262255192,-0.0005025690770708,-0.012901241891086],[0.0077081467024982,0.063428416848183,-0.057180538773537]],[[-0.059623997658491,0.10655049979687,-0.030520549044013],[0.039757799357176,0.049134731292725,0.074729457497597],[0.081457979977131,0.0021250958088785,0.067486084997654]],[[-0.23314549028873,-0.043743140995502,0.074229329824448],[-0.015808464959264,-0.31542482972145,0.040635872632265],[-0.02104402706027,-0.070078030228615,-0.071338996291161]],[[0.087770693004131,0.041886225342751,-0.082821875810623],[0.10006011277437,-0.089017987251282,-0.065015994012356],[-0.016136549413204,-0.055812895298004,0.0028711420018226]],[[0.0084330793470144,-0.042913015931845,0.068778954446316],[-0.026500433683395,-0.046034380793571,0.032927837222815],[0.042590752243996,0.0034280919935554,-0.077295526862144]],[[-0.10021850466728,0.065746627748013,-0.058058477938175],[-0.028861589729786,0.0071062208153307,-0.04208792001009],[0.061636615544558,-0.074756622314453,-0.040060184895992]],[[-0.053223945200443,-0.082309946417809,0.038047686219215],[-0.12984472513199,0.014405261725187,0.019402576610446],[-0.003474383149296,0.033069264143705,0.071083225309849]],[[0.015215639024973,-0.014726362191141,-0.018684472888708],[0.045830029994249,0.092618204653263,-0.13337282836437],[0.027887646108866,0.050827231258154,-0.033779367804527]],[[-0.03592823445797,-0.024614484980702,0.0066265952773392],[0.059129901230335,0.03065432049334,0.14243318140507],[0.098138645291328,0.11391735821962,-0.072999536991119]],[[0.0049462392926216,0.069262593984604,-0.11030576378107],[0.038855355232954,-0.035014156252146,0.023622097447515],[-0.07020203769207,-0.020955925807357,0.0437978990376]],[[-0.043845795094967,0.078591175377369,-0.080488190054893],[-0.00092510867398232,0.11071245372295,0.076949782669544],[-0.18414759635925,-0.0096893813461065,-0.0044409376569092]],[[0.057379703968763,0.0404052734375,-0.081485599279404],[-0.077481910586357,0.11886435002089,0.032232921570539],[-0.12168721854687,-0.10456243157387,0.072316944599152]],[[0.069032587110996,-0.081544034183025,-0.034905854612589],[0.05061350017786,0.063341535627842,0.036889404058456],[0.048875063657761,-0.060119897127151,-0.054959394037724]],[[-0.046543054282665,0.062182314693928,0.061185505241156],[-0.17485551536083,-0.065665006637573,0.071865804493427],[0.023659246042371,-0.071564570069313,0.05118141323328]],[[-0.025671137496829,-0.013950439170003,0.047785766422749],[-0.066654875874519,-0.014845974743366,0.071083299815655],[-0.0099053550511599,-0.041986633092165,-0.054026462137699]],[[-0.024242302402854,-0.0069082090631127,-0.025519939139485],[0.022546896710992,-0.033905319869518,-0.086964033544064],[0.030227478593588,-0.029460076242685,-0.10350862890482]],[[0.051066461950541,0.15420247614384,-0.092919163405895],[0.037917766720057,0.16796426475048,-0.082120180130005],[-0.11927556991577,0.0086654638871551,0.0081871468573809]],[[-0.15122769773006,0.12260095775127,0.018796214833856],[0.01256113871932,0.012644718401134,0.078323379158974],[-0.025337507948279,0.010560931637883,-0.03138654306531]],[[0.012339943088591,-0.015493921935558,0.14133077859879],[-0.079570814967155,-0.16022242605686,0.039244446903467],[0.012273452244699,-0.1114751547575,-0.02496469207108]],[[0.0051008872687817,0.05083504319191,0.074704714119434],[-0.0051722000353038,0.044205363839865,0.0031783899758011],[-0.038624610751867,0.013150840066373,-0.065609067678452]],[[0.1160801127553,-0.13130792975426,0.12920369207859],[0.10224633663893,-0.040402743965387,-0.075476974248886],[-0.080987922847271,-0.083928011357784,-0.096410796046257]],[[0.044937718659639,0.026528378948569,-0.09987235814333],[-0.0052306251600385,0.14615102112293,0.016135327517986],[-0.074540182948112,-0.037873014807701,0.083898209035397]],[[0.00029250973602757,-0.20638830959797,-0.092307791113853],[-0.023200267925858,-0.087113529443741,-0.089083522558212],[-0.028903340920806,-0.057263098657131,-0.063861772418022]],[[-0.047181826084852,0.098014190793037,-0.0014320178888738],[0.13493186235428,-0.079538308084011,-0.067008577287197],[-0.022098328918219,-0.036745954304934,-0.043020505458117]],[[0.083970464766026,0.06429348886013,-0.081716656684875],[-0.015877289697528,0.13470354676247,0.018763657659292],[-0.06531822681427,-0.034650396555662,-0.029040049761534]],[[0.071429289877415,-6.1011371144559e-05,0.032314982265234],[-0.031237881630659,-0.057808961719275,-0.030928179621696],[0.04271087422967,-0.13829758763313,-0.071853443980217]],[[0.097583279013634,0.024122321978211,-0.065472953021526],[0.12896955013275,0.0021245845127851,-0.075596898794174],[0.08863677829504,-0.040604185312986,-0.13492491841316]],[[0.073476873338223,-0.15115810930729,-0.054320383816957],[0.059402961283922,-0.018164925277233,-0.18009662628174],[0.02704268693924,-0.059362675994635,0.084423206746578]],[[-0.020485555753112,-0.018497308716178,-0.062634810805321],[0.10210429131985,-0.1050361841917,-0.012064621783793],[0.088467255234718,0.054402824491262,0.040684122592211]],[[0.0066759190522134,0.063950024545193,0.0071157836355269],[-0.18512991070747,0.08571769297123,0.085973232984543],[0.018809150904417,-0.044377516955137,-0.0079325679689646]],[[-0.13894714415073,-0.067695178091526,0.10264582186937],[-0.070379957556725,-0.0085235713049769,-0.074942924082279],[0.0051925126463175,-0.086438864469528,-0.00136312993709]],[[0.018215049058199,0.0058110328391194,-0.12081747502089],[-0.12767288088799,-0.0047482592053711,0.035395301878452],[0.044642884284258,0.038474004715681,0.037202626466751]],[[-0.026176668703556,0.014758789911866,-0.041801068931818],[-0.0092421621084213,-0.037946037948132,-0.0050204740837216],[0.043512236326933,0.024157805368304,-0.045569095760584]],[[-0.080670572817326,-0.032952647656202,0.0022398880682886],[-0.079016350209713,0.0092929191887379,0.10883117467165],[-0.01857041195035,-0.045142255723476,-0.041175581514835]],[[-0.062778405845165,-0.23190531134605,0.083963789045811],[0.051155209541321,-0.3133801817894,-0.046737004071474],[0.02050737850368,0.033452704548836,-0.12501387298107]],[[0.082984149456024,0.032742857933044,0.058854483067989],[-0.097673021256924,-0.018142562359571,0.066739469766617],[-0.11158028244972,-0.096155881881714,0.0064913141541183]],[[0.018945910036564,-0.052913494408131,0.034984271973372],[0.068685241043568,0.031125934794545,-0.012029583565891],[0.10250405967236,-0.10581082850695,0.0060606584884226]],[[0.067718103528023,0.051777835935354,0.030948793515563],[0.058921210467815,-0.047935780137777,-0.038303330540657],[-0.062937840819359,-0.07368416339159,-0.040654834359884]],[[0.025156557559967,-0.014152247458696,0.059631768614054],[0.057992745190859,-0.026497468352318,-0.12139173597097],[-0.11551489681005,-0.071788601577282,0.029058726504445]],[[-0.0011374622117728,-0.086103431880474,0.083607167005539],[0.012681316584349,0.09092815220356,0.23531509935856],[-0.019973456859589,-0.020672254264355,0.11457686126232]],[[-0.044385589659214,-0.067564502358437,-0.038980517536402],[-0.097233608365059,-0.079826302826405,-0.024513879790902],[-0.20211823284626,-0.14228883385658,-0.15134057402611]],[[-0.030470309779048,0.1483465731144,0.018256330862641],[-0.04955891892314,-0.078592799603939,-0.019992364570498],[0.040429349988699,0.0077664940617979,0.036732755601406]],[[-0.064436078071594,0.088934548199177,0.037501994520426],[-0.061776015907526,-0.044855542480946,0.089328445494175],[-0.063112340867519,-0.050809465348721,0.07535270601511]],[[-0.020151078701019,0.0088895140215755,-0.11361316591501],[-0.018764711916447,-0.074273332953453,0.035333871841431],[-0.0043426468037069,0.0040491507388651,0.014939061366022]],[[0.14211235940456,0.088548898696899,0.07377427816391],[0.082700721919537,0.051803924143314,-0.082290947437286],[0.029016712680459,-0.033248495310545,-0.12885934114456]],[[-0.072844229638577,-0.048454664647579,0.0032123434357345],[-0.07499073445797,-0.15319091081619,-0.17526917159557],[-0.048943795263767,-0.0061233486048877,-0.17071126401424]],[[-0.015060855075717,-0.10890981554985,0.14323358237743],[0.099267907440662,-0.067643746733665,-0.039633091539145],[0.010162377730012,-0.048580728471279,-0.033632904291153]],[[0.0054660816676915,-0.016546480357647,0.025937583297491],[-0.0065835597924888,-0.020744994282722,0.10808105021715],[-0.085529945790768,-0.14574401080608,-0.07569308578968]],[[0.092506930232048,0.056398577988148,-0.028962519019842],[-0.074066109955311,0.052308697253466,-0.048640485852957],[-0.079101450741291,0.01793740876019,0.014220761135221]],[[0.0079819215461612,-0.14936164021492,0.04847140610218],[-0.025532715022564,0.019778169691563,-0.091188132762909],[-0.086150623857975,-0.0118423467502,0.023107975721359]],[[-0.14458951354027,-0.11332926154137,0.10592992603779],[0.11340730637312,-0.29797592759132,-0.055362708866596],[0.13426168262959,-0.0063702259212732,-0.15355539321899]],[[-0.02519903331995,0.034259136766195,-0.0099170869216323],[-0.012316827662289,0.0022788159549236,-0.12321026623249],[0.046221226453781,0.10723202675581,0.041743826121092]],[[-0.18935675919056,-0.087213948369026,0.01177831646055],[-0.071355007588863,0.023730041459203,-0.047554612159729],[0.022425979375839,0.14359427988529,0.25500649213791]],[[-0.022977979853749,-0.08021068572998,0.092006005346775],[-0.011759077198803,-0.055764853954315,-0.17994986474514],[-0.057172264903784,-0.16698521375656,-0.054136343300343]],[[-0.074162609875202,-0.02255916595459,-0.14084675908089],[0.029422584921122,-0.013834312558174,-0.040991272777319],[0.037439208477736,-0.035474199801683,-0.062125772237778]],[[0.061151266098022,-0.040533069521189,0.13684044778347],[0.021839948371053,-0.071544893085957,-0.058832451701164],[0.02058107405901,-0.013559342361987,-0.080546192824841]],[[0.018365552648902,0.0051341988146305,0.080330058932304],[-0.11225614696741,-0.11871998757124,0.07139065861702],[-0.061352446675301,-0.11420291662216,-0.0023341230116785]],[[-0.15406464040279,-0.034546453505754,0.070434480905533],[-0.053202502429485,-0.025378119200468,0.042348254472017],[-0.12041353434324,-0.05838181078434,0.043871361762285]],[[-0.0012715425109491,-0.072138547897339,0.067535541951656],[0.12298768758774,-0.038391027599573,0.0041611394844949],[0.02956411242485,0.01826866529882,-0.10894791781902]],[[-0.0026286393404007,0.039531860500574,-0.062042132019997],[-0.053451001644135,-0.1521330177784,0.053242888301611],[0.12047910690308,-0.060050271451473,-0.041759815067053]],[[0.013728930614889,-0.032151971012354,-0.097289763391018],[0.073027797043324,0.025739004835486,0.00063906004652381],[-0.012290065176785,-0.10898185521364,-0.0015363985439762]],[[0.20377950370312,-0.063172020018101,0.047646138817072],[0.14153634011745,-0.079493395984173,-0.13670098781586],[-0.048646051436663,-0.088218674063683,-0.094670124351978]],[[-0.24818256497383,-0.10635468363762,0.1408186852932],[-0.023132031783462,-0.27627691626549,0.01378908008337],[0.061863083392382,0.029607832431793,-0.22363735735416]]],[[[-0.017099928110838,-0.021987685933709,-0.022347372025251],[-0.022401835769415,0.059539675712585,-0.1134454458952],[0.026150945574045,-0.10004257410765,-0.038866639137268]],[[0.19093468785286,0.10318534076214,0.073457822203636],[0.13079658150673,0.0053382022306323,-0.098566330969334],[-0.013833120465279,0.010637979023159,-0.18222154676914]],[[-0.2839794754982,0.0046280482783914,0.026081528514624],[0.010736294090748,0.027077158913016,0.068889655172825],[-0.10683158785105,-0.075488187372684,0.15674936771393]],[[0.13832023739815,0.040618374943733,0.014652291312814],[-0.068449214100838,-0.05910062417388,-0.07863087952137],[-0.016673589125276,-0.005601289216429,-0.026117706671357]],[[-0.086981818079948,-0.052135292440653,0.1509804725647],[-0.09427672624588,0.023555355146527,0.010729702189565],[0.078899495303631,0.0047030323185027,-0.053716257214546]],[[0.054983589798212,-0.037498563528061,-0.1991863399744],[-0.021898377686739,-0.081303171813488,-0.033076167106628],[0.13724727928638,0.078552842140198,-0.018788807094097]],[[-0.060482632368803,-0.0087116146460176,-0.062372032552958],[-0.10805509984493,0.027141930535436,0.12861853837967],[-0.049905348569155,0.076762817800045,0.055082425475121]],[[0.10155172646046,0.058376517146826,-0.025423031300306],[0.030161984264851,0.0899293795228,-0.020566690713167],[-0.028210025280714,-0.022213149815798,0.040647849440575]],[[-0.014934420585632,-0.014260998927057,-0.02306186594069],[-0.043254267424345,0.0033769414294511,0.025351628661156],[0.055282425135374,0.018534777686,0.0097807301208377]],[[-0.0636031255126,-0.17756333947182,0.024233687669039],[-0.033099547028542,-0.051269840449095,0.060710370540619],[0.047007989138365,0.058069441467524,0.11997597664595]],[[-0.20446500182152,-0.02844868786633,-0.052547674626112],[0.10040042549372,0.13600777089596,0.076284252107143],[0.093960650265217,0.15733087062836,0.13731946051121]],[[0.095660388469696,0.07951907813549,0.05471320822835],[-0.020659679546952,0.0042939679697156,-0.048397030681372],[0.029514340683818,-0.066758416593075,-0.1896707713604]],[[-0.044772446155548,-0.054019540548325,-0.02446623146534],[0.055737745016813,-0.038232810795307,0.051199946552515],[0.035623919218779,-0.015568995848298,0.067249193787575]],[[-0.03667314350605,0.057717852294445,-0.032453861087561],[-0.059705089777708,0.016138663515449,0.032298561185598],[0.095990970730782,0.033763792365789,0.099536307156086]],[[0.039616946130991,0.13693676888943,0.031727094203234],[-0.070614226162434,-0.068994238972664,0.012174719013274],[-0.12061329185963,-0.047072779387236,-0.14986929297447]],[[-0.074944421648979,-0.14141823351383,-0.022437201812863],[-0.00027811247855425,0.070755809545517,0.061454709619284],[0.068771675229073,0.098312169313431,-0.065335020422935]],[[0.10280559957027,0.091217428445816,-0.038900669664145],[0.060804288834333,0.026745196431875,-0.025217089802027],[-0.026644384488463,0.067767962813377,-0.11973094940186]],[[-0.05769957229495,-0.012658884748816,0.095485627651215],[0.031156130135059,0.14075583219528,0.094176463782787],[0.046176139265299,-0.042878244072199,0.047609012573957]],[[0.044493485242128,-0.060454625636339,0.092596255242825],[0.021726876497269,-0.069487996399403,-0.064732328057289],[0.083328366279602,-0.061723824590445,-0.048613205552101]],[[0.057938016951084,0.048901610076427,-0.052981846034527],[0.15653376281261,0.071288883686066,-0.064155295491219],[-0.018056547269225,-0.0052244723774493,-0.054251778870821]],[[-0.066545516252518,0.036200746893883,0.041970919817686],[0.078522369265556,-0.11431304365396,0.13082221150398],[0.050626616925001,0.14719896018505,0.08742593228817]],[[-0.011023746803403,0.071052670478821,-0.053630646318197],[0.061786659061909,0.048339460045099,-0.11223046481609],[0.026854632422328,0.049499873071909,0.10177349299192]],[[-0.028075652197003,0.10409868508577,0.10880721360445],[0.068720459938049,0.10397837311029,-0.0092906374484301],[0.043644770979881,0.13046072423458,-0.10572830587626]],[[-0.029085576534271,-0.11240866780281,-0.032999720424414],[-0.094805307686329,0.081011071801186,0.0054129422642291],[-0.052039362490177,-0.032470542937517,0.14019259810448]],[[0.11081614345312,0.045748110860586,-0.053399004042149],[0.13333994150162,0.018125707283616,-0.046398539096117],[0.030563039705157,-0.11828351020813,-0.17549054324627]],[[0.061351738870144,-0.044889144599438,-0.077301114797592],[0.068108387291431,-0.021330865100026,-0.07798594981432],[-0.018189080059528,-0.092899218201637,-0.0065949042327702]],[[-0.014848704449832,-0.038075566291809,0.10195057094097],[-0.079142555594444,0.06757914274931,0.13127413392067],[0.078961484134197,0.24997365474701,0.20419275760651]],[[0.098139591515064,-0.055276334285736,-0.032666467130184],[-0.022731345146894,0.062937892973423,-0.036151353269815],[0.11456649005413,0.11869109421968,-0.026995524764061]],[[-0.096153765916824,0.0017803612863645,-0.084424942731857],[-0.080828152596951,0.037396226078272,-0.0049217995256186],[-0.11718183010817,-0.1252633780241,-0.068888589739799]],[[-0.13700638711452,-0.05464281141758,-0.0250493735075],[-0.0052854237146676,-0.18468144536018,0.00018859206466004],[-0.00022647470177617,0.11201470345259,0.094703912734985]],[[0.27927595376968,-0.057950008660555,-0.0078410068526864],[0.030919870361686,0.082864120602608,-0.079980224370956],[0.0871951431036,-0.031812783330679,-0.11385323107243]],[[-0.054677855223417,0.13765977323055,0.098861373960972],[0.0600939206779,-0.04516738653183,0.0050735594704747],[-0.076948687434196,-0.034362781792879,-0.033625230193138]],[[0.10173205286264,-0.067942939698696,-0.0038261427544057],[0.11997018009424,-0.017240259796381,-0.0096190078184009],[0.18439313769341,0.090842969715595,0.00072475988417864]],[[0.010393037460744,-0.12199871242046,0.050749614834785],[0.021049458533525,-0.039973858743906,0.053271260112524],[0.066136807203293,-0.0054520373232663,0.094049654901028]],[[-0.071718782186508,-0.081763669848442,-0.16002675890923],[-0.041821267455816,0.073004484176636,-0.065729886293411],[0.057952146977186,0.060285303741693,-0.074975892901421]],[[-0.056412648409605,-0.10624926537275,-0.025320598855615],[0.024915875867009,0.057802509516478,0.0078407963737845],[0.027863996103406,0.025605630129576,0.094514071941376]],[[-0.074400492012501,0.0038233466912061,-0.10861288756132],[-0.14201417565346,0.0036115380935371,0.0560542345047],[-0.021363850682974,0.095640391111374,0.11637024581432]],[[0.073025278747082,0.14983735978603,0.12661999464035],[0.044068709015846,0.1090744510293,-0.036018881946802],[0.043053206056356,-0.018884783610702,-0.16292259097099]],[[-0.088063925504684,-0.116291038692,0.022352362051606],[0.017656717449427,-0.073726691305637,-0.041342545300722],[0.15581850707531,0.17909772694111,0.14374342560768]],[[0.092178419232368,-0.077998772263527,0.092348195612431],[0.10810024291277,0.13117165863514,-0.030965365469456],[0.15794979035854,0.015429168008268,-0.054323304444551]],[[0.15633334219456,0.038035057485104,-0.046122428029776],[-0.033806346356869,-0.0043124654330313,0.036048900336027],[-0.046237133443356,-0.021244868636131,-0.085691928863525]],[[-0.0033506094478071,-0.13107219338417,0.045941364020109],[-0.11665999144316,0.0039234338328242,-0.038995936512947],[-0.2250407487154,0.058751028031111,0.019539102911949]],[[-0.040990673005581,0.00088752416195348,0.023471061140299],[-0.21328775584698,-0.17815715074539,-0.051649626344442],[0.060334954410791,-0.05642544478178,0.19932013750076]],[[-0.076498530805111,0.0097522297874093,-0.0093471379950643],[-0.0010708100162446,0.010029985569417,0.033487789332867],[0.020850518718362,-0.01082538254559,0.026362359523773]],[[-0.12020452320576,-0.076432935893536,-0.051885444670916],[-0.10185852646828,0.047213967889547,0.012454859912395],[-0.028804386034608,0.032595306634903,0.089094303548336]],[[-0.041183084249496,-0.065972790122032,-0.045106135308743],[0.11131875216961,0.046753387898207,-0.14039017260075],[-0.043375130742788,-0.17712722718716,-0.046508241444826]],[[-0.032319955527782,-0.053384322673082,-0.071061693131924],[0.036683510988951,-0.0011433210456744,0.057696145027876],[-0.027294550091028,0.016591414809227,-0.096384063363075]],[[-0.013376627117395,0.031176146119833,-0.049903564155102],[0.058756146579981,-0.039601560682058,0.03642351180315],[-0.043734159320593,-0.014532131142914,-0.00111545517575]],[[0.037707298994064,0.063661672174931,-0.12227561324835],[0.18322603404522,-0.00020587045582943,-0.030206270515919],[0.073203675448895,0.0012675480684265,-0.042706463485956]],[[0.064422704279423,0.087004445493221,-0.026146994903684],[-0.013131726533175,0.089150123298168,0.026280920952559],[0.046433538198471,-0.046960201114416,0.0092899827286601]],[[-0.21480093896389,-0.044382944703102,0.0068932361900806],[-0.19895163178444,0.011673756875098,0.098310589790344],[0.016125399619341,0.013039843179286,0.056904036551714]],[[-0.035440392792225,0.013055827468634,-0.024774072691798],[-0.059915047138929,-0.047517988830805,0.0039602434262633],[-0.020910926163197,0.00062983768293634,0.16906447708607]],[[0.059265002608299,0.055709049105644,-0.044314220547676],[0.06230092421174,-0.037442568689585,-0.030691903084517],[-0.047065921127796,0.026725551113486,-0.011893053539097]],[[0.28758063912392,0.044328726828098,-0.10394755005836],[0.088113144040108,-0.075454525649548,-0.10618396103382],[0.058118283748627,-0.051633246243,-0.19103139638901]],[[-0.085155315697193,0.12165533006191,-0.036085162311792],[-0.06050506606698,-0.068948552012444,0.030468074604869],[-0.043904561549425,0.12022354453802,0.090688988566399]],[[0.073175400495529,-0.18952152132988,-0.10663321614265],[0.096517659723759,-0.11178214848042,0.027619507163763],[0.02608628757298,0.021909661591053,0.10191562771797]],[[0.19426374137402,0.1255911141634,0.09266160428524],[0.091332361102104,0.058589544147253,-0.12302084267139],[0.046562742441893,0.092976413667202,-0.20925395190716]],[[-0.036502242088318,-0.10955917090178,0.0010940429056063],[-0.28760460019112,-0.045374646782875,0.145234182477],[0.082278378307819,0.11477664858103,0.12497854977846]],[[0.089744694530964,0.09266047924757,-0.025412214919925],[-0.028444267809391,0.02570535428822,-0.13199535012245],[0.028122913092375,-0.12662029266357,-0.14705118536949]],[[-0.038177125155926,0.052651975303888,0.017377203330398],[-0.16682183742523,-0.028108354657888,0.014514189213514],[0.014190655201674,-0.051364075392485,0.031028596684337]],[[0.027608139440417,-0.025435650721192,0.034982852637768],[-0.032083932310343,0.017006376758218,-0.10150813311338],[-0.08564119040966,0.032412886619568,0.17790539562702]],[[0.023624958470464,-0.035109404474497,-0.013287260197103],[0.060741424560547,0.082081280648708,0.082199484109879],[0.096197411417961,0.065593726933002,0.080395251512527]],[[0.092610143125057,-0.035137932747602,0.012252963148057],[0.077022932469845,0.028156103566289,-0.16685013473034],[-0.010573084466159,0.02316770516336,-0.16283971071243]],[[0.077796839177608,0.0019818844739348,0.059664506465197],[0.076922923326492,-0.020477619022131,-0.030498908832669],[0.074342526495457,-0.10399816185236,0.042736854404211]]],[[[-0.018898328766227,-0.073698043823242,0.077922344207764],[-0.071485780179501,-0.042397912591696,-0.00090437027392909],[0.049375418573618,0.0479517839849,0.15902605652809]],[[-0.035338174551725,0.11535504460335,-0.12114132195711],[-0.020569358021021,-0.11278039216995,0.18072982132435],[0.10870016366243,0.0091648669913411,0.033649548888206]],[[-0.089222393929958,-0.0045630130916834,-0.0054257498122752],[0.012752962298691,0.068710796535015,0.064173132181168],[-0.014177027158439,-0.046036124229431,0.017603052780032]],[[-0.13526903092861,-0.13258898258209,0.056761048734188],[0.11511954665184,0.0049631097353995,-0.073468320071697],[-0.0082206539809704,-0.0030592186376452,0.014480601996183]],[[-0.03000545501709,0.17424187064171,0.042342912405729],[-0.0038240845315158,-0.087199807167053,0.066530928015709],[0.0067453919909894,-0.0055394168011844,-0.04644538834691]],[[-0.091305650770664,-0.035944372415543,0.13771280646324],[-0.0052376776002347,-0.078895844519138,-0.066975615918636],[-0.064864546060562,0.068979285657406,0.11347783356905]],[[-0.195980489254,-0.070230789482594,-0.0035879933275282],[-0.07810465991497,-0.094852395355701,-0.077009126543999],[0.064786568284035,-0.0044400859624147,-0.038354970514774]],[[0.080794811248779,0.023291749879718,-0.11830768734217],[-0.094492562115192,-0.0047091203741729,0.035615246742964],[0.096063688397408,0.0099398577585816,-0.052293825894594]],[[0.094146393239498,0.037807885557413,0.0070934477262199],[-0.13931213319302,-0.042336244136095,0.012715524062514],[0.0424586199224,-0.0026888905558735,-0.02785394154489]],[[0.033782187849283,0.0058970325626433,-0.15275996923447],[0.030554028227925,0.03587269410491,-0.095175243914127],[-0.051409799605608,-0.10775783658028,0.07737735658884]],[[-0.040213447064161,0.0022209715098143,0.091002725064754],[0.14146104454994,-0.13590359687805,-0.16103574633598],[-0.10776643455029,0.0062434491701424,-0.032056268304586]],[[0.0081645920872688,0.088268674910069,-0.17765499651432],[-0.045130886137486,0.0042662881314754,0.11159277707338],[-0.055854484438896,0.0080461176112294,0.097831800580025]],[[-0.0083913039416075,0.0037432403769344,0.090356513857841],[-0.00010550751903793,-0.04895618185401,-0.19985194504261],[-0.049185398966074,0.081785582005978,-0.0073217833414674]],[[-0.031574312597513,0.0030624233186245,0.035593170672655],[-0.12398208677769,0.0321424305439,-0.045658469200134],[0.11200205236673,0.015794012695551,-0.026062494143844]],[[-0.066826097667217,0.14660006761551,-0.092818684875965],[0.026595028117299,-0.1162718757987,-0.047349222004414],[0.01642526127398,-0.082589730620384,0.10423160344362]],[[-0.042083721607924,0.0094181206077337,-0.13407145440578],[0.015914492309093,-0.0023472674656659,0.022232562303543],[0.03598440811038,0.058184653520584,0.0077134128659964]],[[0.18777088820934,-0.036594651639462,-0.051657300442457],[-0.086610928177834,0.10281417518854,0.011347508057952],[-0.017444713041186,-0.0033550909720361,-0.030932918190956]],[[0.085074931383133,0.17335037887096,0.10018285363913],[-0.1185367628932,-0.19599170982838,-0.21557319164276],[-0.024738002568483,0.061099659651518,-0.18653820455074]],[[-0.01670403778553,0.010488552972674,-0.0037719556130469],[0.017824742943048,-0.23289093375206,-0.063086912035942],[0.16029834747314,0.1126362234354,-0.039769049733877]],[[-0.17019054293633,0.025520311668515,0.046626035124063],[0.26703855395317,-0.11175930500031,-0.072282642126083],[-0.00069141143467277,0.088170140981674,0.14755268394947]],[[0.12262014299631,0.021666383370757,0.019378440454602],[-0.013269701972604,0.18155683577061,-0.072560146450996],[-0.042205087840557,-0.062123972922564,0.016353107988834]],[[0.02727678604424,-0.074799835681915,0.036635309457779],[-0.017795141786337,-0.024586776271462,0.016801720485091],[0.063559219241142,0.056360568851233,-0.072525002062321]],[[0.022483978420496,0.2059386074543,0.046959612518549],[-0.022949038073421,-0.025719810277224,-0.1031910404563],[-0.00054648343939334,-0.040784440934658,-0.12096382677555]],[[0.16489365696907,0.037053532898426,0.065847955644131],[-0.10596992820501,0.05319581925869,-0.019554257392883],[0.068918414413929,0.015709575265646,-0.038252208381891]],[[-0.051431115716696,-0.13794735074043,-0.09750072658062],[0.038572888821363,0.06621091812849,-0.0010758369462565],[0.0038294575642794,-0.13372682034969,-0.022693686187267]],[[0.090577691793442,0.012011596933007,0.181760892272],[-0.10945255309343,-0.064720459282398,-0.024855177849531],[-0.033930633217096,-0.031078821048141,0.037012577056885]],[[0.024568049237132,-0.082367524504662,-0.071948438882828],[-0.051102977246046,0.055602040141821,0.040607765316963],[-0.0082598747685552,-0.10050422698259,0.011120944283903]],[[0.033649682998657,0.041724905371666,0.055759079754353],[-0.078279614448547,-0.036837428808212,-0.037017628550529],[-0.031288623809814,0.04559039324522,0.034510530531406]],[[-0.097552552819252,-0.088043533265591,0.10823205113411],[-0.057304117828608,0.011334635317326,-0.044885486364365],[-0.084499917924404,-0.021373210474849,-0.021148189902306]],[[-0.049580816179514,-0.1149004176259,0.066893100738525],[0.038858748972416,-0.030863750725985,-0.038253635168076],[-0.049566492438316,0.12434323877096,0.14989310503006]],[[-0.11374454945326,0.1121304705739,0.12856489419937],[-0.079579189419746,0.022579656913877,-0.22643834352493],[0.103519923985,0.20605997741222,0.021235482767224]],[[-0.015715304762125,-0.069249480962753,-0.17490313947201],[0.059641968458891,0.050599817186594,0.15767003595829],[-0.0046271700412035,-0.12333296239376,0.035131555050611]],[[-0.01881449483335,-0.076684348285198,-0.12188162654638],[0.024605184793472,-0.031431056559086,0.015823975205421],[0.068805582821369,0.010283426381648,0.14206238090992]],[[0.018104983493686,-0.19157731533051,-0.060525551438332],[-0.1530204564333,0.005547808483243,-0.049111768603325],[-0.056548714637756,0.045796398073435,0.046099953353405]],[[-0.068501226603985,-0.13496859371662,0.11367225646973],[0.061121683567762,-0.077472805976868,-0.028061006218195],[-0.04999053478241,0.1827184855938,-0.010081854648888]],[[0.036956194788218,-0.050251126289368,-0.17284555733204],[-0.071029312908649,0.15145768225193,0.066865153610706],[-0.067119225859642,0.049851827323437,-0.090431958436966]],[[0.042862698435783,0.11581067740917,0.049138840287924],[0.013606326654553,-0.026835767552257,-0.12329075485468],[-0.0029636935796589,0.00016103516099975,-0.046077460050583]],[[0.016787558794022,0.010359173640609,-0.097776919603348],[-0.0053296233527362,0.031783457845449,0.012158423662186],[0.074514023959637,-0.15448604524136,0.10155653953552]],[[0.11431788653135,0.019073894247413,0.15219596028328],[0.11394569277763,-0.071791797876358,-0.046286080032587],[-0.015498226508498,-0.082042753696442,-0.077996514737606]],[[-0.062154714018106,0.032805442810059,0.10985785722733],[0.032384712249041,-0.0035810763947666,-0.023355292156339],[-0.028763925656676,0.043917935341597,-0.076850078999996]],[[-0.11854226887226,-0.0053766081109643,-0.13129949569702],[0.17168661952019,0.10210915654898,0.0011545397574082],[-0.080176040530205,0.072506196796894,0.10390608012676]],[[-0.029844412580132,-0.053953323513269,0.040008436888456],[0.0047262627631426,0.16132339835167,0.019913665950298],[-0.070490606129169,-0.040097896009684,0.13688209652901]],[[0.064845740795135,0.055460799485445,0.077320449054241],[-0.17445875704288,0.025180630385876,0.017298458144069],[0.022967720404267,-0.092422917485237,0.031773712486029]],[[-0.097216740250587,0.043604083359241,-0.066904969513416],[0.071111142635345,-0.0068239006213844,0.065768420696259],[0.032626528292894,-0.099331274628639,0.049911007285118]],[[-0.00056348036741838,-0.017641326412559,-0.04759044200182],[0.033147443085909,0.055518206208944,-0.16642305254936],[-0.03470940515399,-0.0078821796923876,0.12895196676254]],[[0.15252332389355,0.17286331951618,-0.010178091935813],[-0.1452529579401,-0.15394331514835,-0.096000142395496],[-0.0047059506177902,0.08083413541317,-0.040665484964848]],[[-0.08950337767601,0.03071441501379,0.057476248592138],[0.056277591735125,-0.24080047011375,-0.021305058151484],[-0.068519659340382,-0.024022554978728,-0.20840674638748]],[[0.074731908738613,0.021706063300371,0.058272734284401],[0.012682548724115,-0.10527746379375,0.11158855259418],[-0.0073742782697082,-0.067682184278965,-0.020321916788816]],[[-0.045159757137299,-0.1672700047493,0.062958426773548],[0.026795664802194,-0.083453021943569,-0.022219516336918],[-0.098131015896797,-0.0078688655048609,0.061229284852743]],[[-0.028921209275723,-0.036507159471512,-0.039764154702425],[0.055864162743092,0.066270627081394,0.014188406988978],[0.051102209836245,-0.0071861133910716,-0.00013285872410052]],[[-0.040477622300386,-0.10193893313408,-0.021902414038777],[-0.063569419085979,0.0063228644430637,-0.057907115668058],[-0.0048955767415464,-0.13221275806427,0.014769017696381]],[[0.034079305827618,-0.057332459837198,-0.071604959666729],[-0.018234942108393,-0.030187549069524,0.028702586889267],[-0.097389556467533,0.16075566411018,-0.061445936560631]],[[0.0040370631031692,-0.16431201994419,-0.08444706350565],[0.00085180503083393,0.026887841522694,-0.22001159191132],[0.081328481435776,0.05652965977788,0.099495209753513]],[[-0.054591778665781,-0.087341256439686,0.15534764528275],[-0.059096056967974,-0.038795080035925,-0.018624255433679],[0.0048114438541234,0.049411926418543,-0.013816145248711]],[[0.08069159090519,0.070352524518967,-0.11539172381163],[-0.10654531419277,-0.1381744146347,0.0016582862008363],[0.033338125795126,-0.077795676887035,-0.028795383870602]],[[0.11284834891558,-0.095984898507595,-0.20526613295078],[-0.074058078229427,0.12338915467262,0.10367229580879],[0.039033841341734,-0.053229998797178,-0.096037738025188]],[[0.26441705226898,0.12638157606125,-0.0062968102283776],[-0.069652438163757,0.00044016458559781,-0.043096963316202],[0.19399882853031,0.14998644590378,-0.10131500661373]],[[0.1111808270216,-0.075990743935108,-0.057370956987143],[-0.012001408264041,-0.20105589926243,0.049656484276056],[-0.0728490203619,-0.05802882835269,-0.09679651260376]],[[-0.025786347687244,0.018820697441697,0.07559534907341],[0.17123375833035,-0.12279134243727,0.011543334461749],[-0.16229256987572,0.010704488493502,0.073807135224342]],[[0.087500229477882,0.020325200632215,0.092261143028736],[0.14959919452667,0.074572481215,-0.017377518117428],[0.097063258290291,-0.082179546356201,-0.093631133437157]],[[0.048850048333406,-0.016217092052102,-0.12678752839565],[-0.022819928824902,-0.010951288975775,0.11945890635252],[-0.1022429689765,0.01559486053884,0.088889144361019]],[[0.10533294826746,-0.064820155501366,-0.26352247595787],[-0.035133291035891,-0.072911344468594,-0.0010907070245594],[-0.032587669789791,-0.22030079364777,-0.098473943769932]],[[0.1600463539362,0.0060155573301017,0.022765398025513],[0.22986637055874,0.072780974209309,0.036208905279636],[0.099008575081825,-0.029457792639732,-0.15457712113857]],[[-0.054574798792601,0.15187288820744,-0.047272589057684],[-0.16219346225262,0.017502518370748,0.23264493048191],[0.051131937652826,-0.02488855458796,-0.11993853747845]]],[[[0.03419740870595,-0.040227223187685,0.023445047438145],[-0.0062567922286689,-0.037207771092653,-0.13578529655933],[0.026987005025148,0.096775352954865,0.083006843924522]],[[0.018004443496466,-0.096648536622524,-0.00086936983279884],[0.075629703700542,-0.095535211265087,0.044752169400454],[0.0029437919147313,0.09640645980835,-0.040066506713629]],[[0.035307232290506,-0.044996798038483,0.022957939654589],[0.017046796157956,-0.15628036856651,-0.045515611767769],[0.082891471683979,0.008953619748354,-0.0050754961557686]],[[0.062897332012653,-0.044841058552265,0.03580280393362],[-0.065399691462517,-0.02993799187243,-0.02155552431941],[0.10985899716616,0.02641262486577,-0.062456991523504]],[[-0.086133234202862,0.033233594149351,-0.036082293838263],[-0.019208323210478,0.15676960349083,-0.048485718667507],[-0.14454631507397,-0.09331513941288,0.019833378493786]],[[-0.083302780985832,-0.034888543188572,0.0023092092014849],[0.030731877312064,-0.011927421204746,-0.011205883696675],[0.0046696942299604,0.019711764529347,-0.037439301609993]],[[-0.040849179029465,-0.11641770601273,0.0090069686993957],[-0.024378474801779,-0.10217551887035,0.073268599808216],[0.018458100035787,-0.064977735280991,-0.0086804423481226]],[[-0.028568655252457,0.071497216820717,0.072226822376251],[-0.1070344671607,-0.040898468345404,0.065605841577053],[0.05302170291543,0.05530533567071,-0.049312930554152]],[[-0.068627685308456,-0.021232284605503,0.041163101792336],[-0.033422816544771,0.036591112613678,0.027353746816516],[0.0051629138179123,-0.047201320528984,0.056616820394993]],[[0.04593425616622,-0.16896162927151,-0.15501822531223],[0.0034507985692471,-0.11740658432245,-0.16492968797684],[-0.064592406153679,-0.10010795295238,-0.050867054611444]],[[0.052754808217287,-0.10296817868948,0.026292648166418],[0.031057575717568,0.11368622630835,-0.0097318850457668],[-0.026609404012561,0.042654283344746,0.046404592692852]],[[-0.069768831133842,-0.0064075626432896,0.068274646997452],[-0.10431875288486,-0.094647936522961,-0.016026444733143],[0.011729622259736,-0.094325631856918,-0.041386287659407]],[[-0.15311366319656,-0.10836447775364,0.095896825194359],[0.10259793698788,0.028631767258048,0.091794326901436],[-0.0028920664917678,0.0042035705409944,0.067552991211414]],[[-0.066012106835842,-0.0001888289116323,-0.02200380153954],[0.060835190117359,-0.072799742221832,0.10205306857824],[0.052931122481823,0.072991423308849,0.18054905533791]],[[0.0039705117233098,-0.054094918072224,-0.030933307483792],[-0.029333991929889,-0.0046788579784334,-0.10753577202559],[-0.047609016299248,0.015937345102429,0.084713712334633]],[[-0.043592613190413,-0.0247240383178,0.083941951394081],[-0.045348975807428,-0.085612371563911,0.065964870154858],[-0.055910967290401,-0.0063194520771503,0.056338366121054]],[[0.0093066915869713,0.020444311201572,0.010191203095019],[0.014269102364779,-0.068891651928425,-0.055425599217415],[-0.07999137789011,-0.081409573554993,-0.0015130355022848]],[[-0.16063022613525,0.032946046441793,0.055986691266298],[0.03831422701478,0.032962560653687,-0.025276143103838],[0.092748090624809,0.046945746988058,0.040007907897234]],[[-0.14054077863693,-0.11700461059809,-0.01389807742089],[-0.0087618343532085,0.08818856626749,0.07158886641264],[-0.11245706677437,-0.011525960639119,0.095048248767853]],[[-0.12170534580946,-0.14845086634159,0.049922861158848],[-0.035226389765739,0.087304286658764,0.047746188938618],[-0.11081670969725,0.075396470725536,0.080656982958317]],[[-0.0403046682477,-0.017536960542202,-0.041523948311806],[0.013453360646963,0.043815135955811,-0.00089012534590438],[-0.0041557769291103,-0.10945402830839,0.0016608029836789]],[[-0.091501407325268,0.11256178468466,-0.027470650151372],[-0.03776902332902,0.058262143284082,-0.091987192630768],[0.0035355580039322,0.01826680265367,0.037871550768614]],[[-0.0087489513680339,-0.095563933253288,-0.01928123831749],[-0.14719453454018,0.1837655454874,0.010816054418683],[-0.083353020250797,-0.0006666966364719,0.098645523190498]],[[-0.24437455832958,0.05810809135437,-0.076305650174618],[-0.12029711902142,-0.27848362922668,-0.19770807027817],[0.0015457668341696,-0.089998707175255,-0.074916318058968]],[[-0.0065361158922315,0.01199262496084,-0.011946814134717],[0.038448266685009,-0.05801485106349,0.075603604316711],[-0.036490853875875,-0.019497333094478,0.091876305639744]],[[-0.088454395532608,0.072042100131512,-0.05001387745142],[0.049832172691822,0.043536599725485,-0.075765676796436],[0.036582179367542,-0.096735149621964,-0.093826770782471]],[[0.078781314194202,0.0012263292446733,-0.075004428625107],[0.031437292695045,-0.025948671624064,0.019602317363024],[-0.042273994535208,-0.041518729180098,0.035464305430651]],[[-0.15247324109077,-0.012439483776689,0.018155807629228],[-0.082185618579388,-0.08996793627739,0.0051008029840887],[0.037183232605457,-0.025396024808288,-0.051225237548351]],[[0.046482536941767,0.1328991651535,-0.017580334097147],[0.013122367672622,-0.017839971929789,0.028746567666531],[0.10294717550278,0.12521018087864,-0.0033769451547414]],[[0.09353793412447,-0.069244839251041,0.076800920069218],[-0.037298902869225,0.065135970711708,0.013035285286605],[0.03528792783618,-0.059527102857828,0.064990870654583]],[[0.008633672259748,0.083409912884235,-0.094859331846237],[0.13025590777397,0.081679977476597,0.068846642971039],[-0.059567786753178,0.013505851849914,0.030965350568295]],[[0.019845405593514,0.013184687122703,0.0010672077769414],[0.054911784827709,0.09608643501997,0.17174486815929],[-0.021838530898094,0.033606294542551,0.10892818123102]],[[0.083152316510677,-0.024896217510104,0.052554622292519],[0.021184787154198,0.071283228695393,0.052244078367949],[0.018110910430551,0.078017473220825,-0.15462410449982]],[[-0.04448764026165,0.22667963802814,0.0092659750953317],[-0.011873003095388,0.05492827668786,0.016619367524981],[0.00022601650562137,-0.24487257003784,-0.057952255010605]],[[0.069599024951458,-0.028777055442333,-0.03309965506196],[0.087004341185093,0.044611725956202,-0.066132195293903],[0.028692115098238,-0.092974841594696,-0.03865335136652]],[[0.049098890274763,0.016962075605989,-0.073183439671993],[-0.019872447475791,-0.14533460140228,-0.070321165025234],[0.080198593437672,-0.10566361248493,-0.026137925684452]],[[-0.055012747645378,-0.012663790024817,-0.045016892254353],[-0.081136003136635,-0.011065943166614,0.0052925129421055],[-0.016485802829266,0.085672460496426,-0.036290667951107]],[[-0.14642459154129,-0.074947834014893,0.084863275289536],[-0.060855317860842,-0.02582685649395,0.085682533681393],[0.016352090984583,0.035577591508627,0.14085011184216]],[[-0.030799459666014,-0.048266839236021,0.010013395920396],[-0.073745682835579,-0.097420923411846,-0.032288238406181],[0.047315075993538,0.032357797026634,0.093855209648609]],[[0.035133194178343,-0.057575739920139,-0.07845664024353],[0.085107073187828,-0.08993174135685,0.12530317902565],[0.057424232363701,0.037322916090488,-0.0044224392622709]],[[0.0017803576774895,0.097951099276543,-0.036783952265978],[-0.17091456055641,-0.011503137648106,0.018046360462904],[-0.09488720446825,-0.10738106817007,0.016184538602829]],[[0.094681836664677,0.097795471549034,-0.026515755802393],[0.1194382160902,0.069632694125175,0.026856796815991],[0.073196485638618,-0.039036750793457,-0.048636749386787]],[[-0.061932109296322,-0.15809790790081,0.12629622220993],[-0.059748101979494,-0.10787632316351,-0.12244264036417],[0.087486915290356,0.10703203082085,0.076090022921562]],[[0.098344571888447,-0.0021778859663755,-0.022848693653941],[0.071442328393459,0.0055755097419024,-0.026352044194937],[0.0056739412248135,-0.031623758375645,-0.093187816441059]],[[0.043293491005898,-0.01492187846452,0.015012642368674],[0.079584680497646,-0.0083594173192978,0.044764205813408],[0.051123548299074,0.05979423224926,0.01641826890409]],[[0.0037908561062068,-0.14486326277256,0.053003553301096],[0.064328975975513,-0.051490373909473,0.0027426627930254],[0.11846689134836,-0.006123723462224,0.11897163838148]],[[-0.089751318097115,-0.010256703943014,0.010909927077591],[0.093891024589539,0.047394808381796,0.11064652353525],[-0.093333221971989,0.031996857374907,0.10328543186188]],[[0.059690643101931,-0.033728487789631,-0.010489076375961],[0.032926734536886,0.047414917498827,-0.042585950344801],[-0.03452467545867,0.077604487538338,-0.024568686261773]],[[-0.00088529899949208,-0.015170487575233,-0.075952365994453],[-0.031870324164629,0.054886765778065,0.017206203192472],[0.028049787506461,0.035961754620075,-0.097588613629341]],[[-0.10513011366129,0.057982467114925,-0.030156930908561],[0.023406432941556,0.070039451122284,0.057002108544111],[0.055658057332039,0.059109326452017,-0.031147141009569]],[[0.03257305547595,0.2137131690979,0.04604009911418],[-0.032988797873259,0.025139510631561,-0.088138110935688],[0.087500996887684,0.044405724853277,-0.10988500714302]],[[-0.016008395701647,0.051843255758286,-0.022857343778014],[-0.051193188875914,0.083652533590794,0.05231911316514],[-0.0056701418943703,-0.041102081537247,0.058109026402235]],[[0.028239527717233,-0.0053611244075,0.0035498656798154],[0.076769828796387,0.069684021174908,0.11098913103342],[0.03014407120645,-0.084197118878365,0.026065491139889]],[[0.16373665630817,-0.098282389342785,-0.044899050146341],[0.010349832475185,-0.040672905743122,-0.0218943990767],[0.086047396063805,-0.055840633809566,0.0099885119125247]],[[-0.069078154861927,0.0027184460777789,-0.043413911014795],[0.015656139701605,-0.14870703220367,-0.035034988075495],[-0.00967803504318,-0.026513205841184,-0.10682288557291]],[[0.081925749778748,0.13291482627392,-0.012869914993644],[-0.0052327373996377,-0.024486823007464,0.046761613339186],[0.0085619827732444,-0.019316725432873,0.047490712255239]],[[0.027930669486523,0.055395185947418,-0.031590428203344],[0.082362659275532,-0.054740015417337,-0.10696083307266],[0.012031299993396,0.13379888236523,0.039083924144506]],[[-0.16877563297749,-0.075781986117363,-0.022974764928222],[-0.00791837554425,-0.020217156037688,-0.094470500946045],[-0.11644052714109,0.0018134054262191,0.037636704742908]],[[0.061185099184513,-0.06867541372776,-0.04743042960763],[-0.086783699691296,0.079712323844433,0.07733590900898],[0.00082752743037418,0.14276076853275,0.0023409882560372]],[[-0.086782030761242,-0.15014418959618,-0.00688561424613],[-0.038683861494064,0.024616800248623,0.015687417238951],[-0.052739933133125,0.076939061284065,0.13080936670303]],[[-0.010299076326191,-0.038285668939352,0.03223242983222],[0.027428105473518,-0.053122013807297,0.055402155965567],[-0.07839373499155,-0.089184828102589,0.0095050856471062]],[[0.065393179655075,-0.018573686480522,0.015921579673886],[-0.014718223363161,0.060054421424866,0.011311518028378],[0.034634001553059,0.02849480509758,-0.097971953451633]],[[-0.024663429707289,0.1321008503437,-0.019662549719214],[-0.08310205489397,0.084470093250275,-0.10366608947515],[-0.040652386844158,0.051751431077719,0.049094095826149]],[[-0.14233863353729,-0.14267893135548,-0.014497961848974],[0.050469998270273,0.0097798081114888,0.055108122527599],[0.093678012490273,0.042558085173368,0.19141422212124]]],[[[-0.023371752351522,0.12255234271288,0.029974687844515],[-0.056296110153198,-0.052584327757359,-0.039249137043953],[-0.048950977623463,0.00061554583953694,-0.12129054963589]],[[0.092691414058208,4.2916184611386e-05,0.01662596873939],[-0.025756280869246,-0.0056385756470263,0.058303188532591],[0.0016600468661636,-0.062735483050346,0.15165607631207]],[[0.054911237210035,0.03151473030448,-0.013776377774775],[-0.030621727928519,-0.055102527141571,-0.066126488149166],[0.041111472994089,0.068199999630451,-0.068702541291714]],[[-0.026581026613712,0.12262480705976,-0.090550944209099],[0.033907067030668,0.14501464366913,0.0097846202552319],[0.043014232069254,0.06051017343998,0.028526324778795]],[[-0.090951845049858,0.01846537552774,-0.028680263087153],[0.003960341680795,0.1170499920845,0.028381049633026],[-0.068827763199806,-0.042238291352987,-0.04882499948144]],[[-0.076314352452755,-0.010962101630867,0.078075364232063],[-0.11705938726664,0.069397807121277,-0.010714854113758],[-0.074315741658211,-0.051509890705347,0.021563466638327]],[[0.060832317918539,-0.09824700653553,-0.043925322592258],[0.018540700897574,0.005085694603622,-0.047037694603205],[0.00056246406165883,-0.015596305020154,-0.038111671805382]],[[0.11512643843889,0.0064953388646245,-0.10365911573172],[0.0153573686257,-0.011214797385037,0.012701668776572],[0.025833489373326,0.14969880878925,-0.0086166094988585]],[[0.0077224392443895,0.05165971070528,-0.021248271688819],[-0.000704993493855,0.21705634891987,0.030209932476282],[-0.018359588459134,-0.0090524656698108,-0.054603077471256]],[[0.024376148357987,0.03666128963232,0.024463344365358],[0.084687657654285,-0.02645867690444,-0.0081551307812333],[0.027089791372418,-0.025056982412934,6.9205520958349e-06]],[[0.03488489612937,0.045972730964422,0.0030980864539742],[-0.045034628361464,0.11420954018831,0.088768750429153],[-0.028531363233924,0.073223859071732,-0.018056977540255]],[[0.027822334319353,0.019149400293827,0.082020901143551],[0.13307346403599,0.025093093514442,0.022773489356041],[0.0085042137652636,-0.071911834180355,-0.0067496551200747]],[[-0.018926464021206,0.0011301572667435,0.017316155135632],[-0.049801148474216,0.041750609874725,0.029059760272503],[-0.041003603488207,0.01719456911087,0.028100708499551]],[[0.04130307585001,-0.067481882870197,-0.10017412155867],[0.0058916718699038,0.014742163941264,-0.069312252104282],[0.010692077688873,0.060040894895792,-0.097316190600395]],[[-0.016541969031096,-0.078548491001129,0.066328272223473],[0.030891735106707,-0.023774165660143,-0.10070321708918],[-0.061646144837141,-0.073539204895496,0.029976923018694]],[[-0.037936687469482,0.027122106403112,0.080793850123882],[0.094688177108765,0.068213067948818,-0.0068940478377044],[-0.052313048392534,-0.025463875383139,-0.18177853524685]],[[-0.0053044678643346,-0.03376717492938,0.024162566289306],[-0.0079391365870833,0.068119004368782,-0.0097463810816407],[0.0043670125305653,0.082093648612499,0.0061659947969019]],[[0.089042708277702,-0.045074865221977,0.019736513495445],[0.00324233667925,-0.017628576606512,0.013306817039847],[0.022391261532903,0.031683452427387,0.040025997906923]],[[0.098934531211853,-0.1630440056324,-0.067430175840855],[0.14373044669628,0.058372400701046,0.014724975451827],[0.049841769039631,0.001635319320485,0.0923952460289]],[[0.0023693612311035,0.13214504718781,0.057727240025997],[-0.0756014585495,-0.062899835407734,0.064848966896534],[0.020153902471066,0.093967944383621,0.037902928888798]],[[-0.0096744894981384,0.023714313283563,-0.026946138590574],[-0.063810981810093,0.01871233433485,-0.08570135384798],[-0.045525275170803,0.05944611877203,-0.022814074531198]],[[0.039192777127028,0.012235283851624,-0.064227193593979],[0.082450732588768,0.039609242230654,0.085589163005352],[-0.034502319991589,-0.06260471791029,-0.0034414422698319]],[[-0.024714067578316,0.092690020799637,-0.072327330708504],[0.0058287959545851,0.021453829482198,-0.041104044765234],[-0.026008728891611,0.15775680541992,0.052955090999603]],[[0.027719246223569,0.051187891513109,-0.052011840045452],[0.040736723691225,0.098188258707523,0.015165409073234],[0.014337779954076,-0.064450904726982,0.046663351356983]],[[0.14584821462631,0.09632807970047,0.027629474177957],[-0.15375936031342,-0.067482493817806,0.01230257190764],[-0.002132740104571,-0.040090050548315,-0.023223947733641]],[[-0.016958085820079,-0.070595316588879,0.051453746855259],[0.0062704333104193,-0.11836910992861,0.029336044564843],[-0.096580266952515,0.044509809464216,0.010611082427204]],[[-0.039032086730003,-0.0002769760612864,-0.011323502287269],[0.048642285168171,0.051192194223404,-0.031978033483028],[-0.073182456195354,-0.10486254841089,-0.13197730481625]],[[-0.093708150088787,0.14153470098972,0.075579151511192],[0.054129365831614,0.05638038367033,-0.075632840394974],[-0.027042178437114,-0.12555620074272,0.0072814431041479]],[[-0.066076174378395,0.040605776011944,0.0047355382703245],[-0.060816064476967,0.057580664753914,-0.00014646707859356],[-0.027756698429585,0.032592434436083,-0.01059524808079]],[[-0.037972521036863,0.089215293526649,0.05123296007514],[0.022470658645034,0.15632283687592,0.1702846288681],[0.079452335834503,-0.081346027553082,0.10608668625355]],[[0.069576360285282,-0.068883180618286,0.10851190239191],[-0.074580639600754,-0.053336657583714,-0.038037437945604],[0.035987228155136,-0.069631911814213,0.053592707961798]],[[0.0065730791538954,0.081346288323402,0.088917389512062],[0.023439440876245,-0.090196043252945,0.033109560608864],[0.090169422328472,-0.035961620509624,-0.011823491193354]],[[-0.028254160657525,-0.020481895655394,0.011181640438735],[0.017462700605392,0.056905277073383,-0.027878008782864],[-0.032278478145599,-0.0030733575113118,0.024415032938123]],[[-0.017549218609929,0.022111194208264,-0.011674514971673],[0.020504588261247,-0.038846228271723,0.014303358271718],[0.0234145950526,-0.038739629089832,-1.7726026271703e-05]],[[-0.010752849280834,0.045652452856302,0.0097295083105564],[-0.12637916207314,0.02562503516674,0.060560844838619],[-0.0033525098115206,0.031085181981325,-0.13235361874104]],[[0.030380137264729,-0.033614348620176,-0.00070409709587693],[-0.046968683600426,0.072131045162678,-0.0048150373622775],[-0.0013225101865828,0.025806088000536,-0.012925867922604]],[[-0.13290663063526,-0.099131226539612,0.053686074912548],[-0.14999237656593,-0.013123033568263,-0.11647903174162],[0.05881417170167,0.013978649862111,-0.053310137242079]],[[-0.060149855911732,0.11655346304178,-0.0044019734486938],[0.11070942133665,0.13536190986633,-0.028115140274167],[-0.00851512234658,0.090972915291786,-0.06465195119381]],[[0.025820046663284,0.085447616875172,-0.149005189538],[0.022789917886257,-0.051462605595589,-0.1353724449873],[0.069617673754692,0.025886731222272,0.057387702167034]],[[-0.066638104617596,-0.017644185572863,0.11832988262177],[-0.15380698442459,0.053988516330719,-0.051909543573856],[-0.0067458720877767,0.017033664509654,0.051167327910662]],[[-0.010402731597424,-0.0098432525992393,0.050662726163864],[-0.0011746148811653,-0.085577502846718,0.060539379715919],[-0.029852399602532,0.025591416284442,0.011491511017084]],[[0.046544898301363,0.095637127757072,0.0080457841977477],[0.057307429611683,0.077306695282459,0.010969694703817],[0.065063036978245,0.078699380159378,0.0058967480435967]],[[0.074757508933544,0.060967449098825,0.012585483491421],[0.073758900165558,0.17869164049625,0.12684521079063],[0.056609723716974,0.059148442000151,0.028953308239579]],[[0.035251837223768,-0.03362749516964,-0.062805354595184],[-0.037029664963484,0.16134518384933,0.00046813872177154],[0.048748403787613,-0.037453237921,0.056270249187946]],[[-0.023128366097808,0.1370605379343,-0.013607398606837],[-0.049200084060431,0.075214236974716,-0.035876054316759],[-0.062387876212597,0.0061530987732112,0.031469460576773]],[[-0.033956844359636,0.091951906681061,0.011157741770148],[-0.032571785151958,0.012322660535574,0.013168836943805],[-0.011574798263609,0.015143245458603,-0.012749085202813]],[[0.062102697789669,-0.036993473768234,0.058948010206223],[-0.024000030010939,-0.075295306742191,0.072722285985947],[0.065126709640026,0.023246567696333,-0.024251841008663]],[[-0.034430310130119,0.032818704843521,0.066353157162666],[-0.037437498569489,-0.054923132061958,-0.012047822587192],[0.02214084006846,0.021589536219835,-0.026750795543194]],[[0.065092220902443,0.0038551066536456,0.046112582087517],[0.00081699172733352,-0.052744336426258,0.070284627377987],[0.053491245955229,0.026836346834898,0.0057475999929011]],[[0.016412939876318,-0.022997952997684,0.033912904560566],[0.044478502124548,0.049435585737228,-0.022595342248678],[-0.065397851169109,0.027634052559733,-0.062156584113836]],[[-0.032506804913282,0.07955152541399,-0.038026165217161],[0.0059197526425123,0.10440088063478,-0.05996598303318],[-0.049180146306753,0.029877694323659,0.017894381657243]],[[-0.024270236492157,0.03108449652791,0.051104135811329],[-0.059260807931423,0.074160292744637,0.040146697312593],[-0.0010413877898827,-0.036096420139074,0.012712128460407]],[[-0.030509039759636,-0.18188804388046,-0.031468965113163],[-0.021783659234643,-0.10315024852753,-0.0233847592026],[0.083016432821751,-0.026118688285351,0.036160126328468]],[[-0.05739227309823,0.018739433959126,-0.060891158878803],[-0.019878381863236,-0.014761967584491,0.014859392307699],[0.039786003530025,-0.013677109032869,0.018545733764768]],[[0.07611221075058,-0.017962070181966,0.023060284554958],[0.092025861144066,-0.025816962122917,0.026411786675453],[0.046369597315788,-0.11929477006197,0.085651531815529]],[[0.074978083372116,-0.067585043609142,0.15662495791912],[-0.010505392216146,0.057340241968632,0.0278544370085],[-0.019484542310238,-0.022213570773602,-0.0059587960131466]],[[-0.01242315582931,0.12520276010036,0.10940378159285],[0.12658841907978,0.076567336916924,0.093684993684292],[-0.010397034697235,0.1342436671257,0.016242686659098]],[[0.053804259747267,-0.030425552278757,0.0011652183020487],[0.072014778852463,-0.0052670915611088,-0.063464343547821],[-0.017384830862284,-0.027174530550838,0.049919720739126]],[[0.091634005308151,0.013500239700079,0.0025887803640217],[0.072176963090897,0.0092881778255105,-0.035806391388178],[0.065824829041958,-0.039699845016003,-0.00029332443955354]],[[0.090586461126804,-0.064187422394753,-0.077788278460503],[0.056309293955564,-0.041982959955931,-0.099037416279316],[0.019567968323827,0.01232494879514,0.046753816306591]],[[0.016137573868036,-0.058257337659597,-0.030195534229279],[0.032197736203671,-0.032014921307564,0.049158625304699],[-0.017728414386511,-0.0039714411832392,0.049492742866278]],[[0.021786499768496,-0.0069645405746996,0.065475724637508],[0.044190376996994,-0.014629270881414,0.026457225903869],[-0.081462278962135,0.038765251636505,0.034000128507614]],[[-0.027172274887562,-0.018368622288108,0.029561506584287],[-0.027043143287301,-0.034511551260948,0.030539307743311],[-0.016410976648331,-0.019215231761336,0.030543807893991]],[[0.060825053602457,0.064258225262165,0.011497574858367],[-0.054514676332474,0.040639102458954,0.026389051228762],[0.021674692630768,0.10139455646276,0.021207252517343]]],[[[-0.035515047609806,-0.025810644030571,0.083627000451088],[-0.081345699727535,0.0086375661194324,0.098473444581032],[-0.12916967272758,-0.02586555108428,-0.054673451930285]],[[0.011929267086089,0.030278509482741,0.006321884226054],[-0.02187280729413,0.065426886081696,-0.018010070547462],[-0.041679564863443,0.069504380226135,-0.031307399272919]],[[-0.033839426934719,0.11903341114521,-0.026995906606317],[-0.0079857213422656,-0.16723203659058,0.027207925915718],[0.01512305624783,0.080492727458477,0.068650245666504]],[[-0.074183590710163,-0.028172217309475,-0.077431224286556],[0.0096328780055046,-0.098301962018013,-0.011042322032154],[-0.052130769938231,0.034175455570221,-0.023758471012115]],[[-0.041142128407955,-0.0044236048124731,-0.023131711408496],[-0.015924686565995,-0.07215853780508,-0.031441368162632],[-0.043147932738066,0.034398019313812,0.061129331588745]],[[0.0043372143991292,0.0059308176860213,0.0098839905112982],[-0.052063785493374,-0.02254699356854,0.061684258282185],[0.0061693480238318,-0.06882306188345,0.018468640744686]],[[-0.041951656341553,-0.11201898753643,-0.081061087548733],[0.047442488372326,-0.0058690942823887,-0.020450215786695],[0.012382781133056,-0.036972604691982,-0.055501323193312]],[[0.033018779009581,-0.035161051899195,-0.092517822980881],[0.021949332207441,0.094380721449852,-0.060472428798676],[-0.016173671931028,0.010808071121573,-0.017304820939898]],[[-0.045753784477711,0.051269471645355,0.041228942573071],[-0.019999282434583,-0.01541948504746,0.056574039161205],[-0.051397413015366,0.059583112597466,0.02782978489995]],[[0.0033396233338863,-0.1371680945158,0.0064078392460942],[-0.010668846778572,0.042912874370813,-0.094337426126003],[-0.045032888650894,-0.053665868937969,-0.069258898496628]],[[0.021414058282971,-0.0035221942234784,-0.041876424103975],[0.052155803889036,-0.034880239516497,0.027638208121061],[-0.026193935424089,-0.0033094929531217,0.0028813565149903]],[[-0.04392509534955,-0.16706532239914,0.026325199753046],[0.019342264160514,-0.0030208847019821,-0.078480288386345],[-0.020596843212843,-0.011780852451921,0.00061680428916588]],[[-0.029217973351479,0.079022325575352,-0.028569161891937],[-0.15144418179989,-0.022391345351934,-0.017347102984786],[-0.04379053413868,-0.048474125564098,-0.014659739099443]],[[-0.018067218363285,-0.064542412757874,0.01390091329813],[0.0093838553875685,-0.046917088329792,-0.067846521735191],[0.027214821428061,-0.059093371033669,-0.050751585513353]],[[-0.066282361745834,0.041517041623592,-0.0069309142418206],[-0.082892961800098,-0.028515562415123,-0.057893052697182],[0.038383085280657,0.05977214500308,-0.0083359330892563]],[[0.056244470179081,-0.042252395302057,-0.11562176048756],[0.067306563258171,-0.09794744104147,-0.037133242934942],[0.05395058915019,0.036686740815639,0.025163544341922]],[[-0.095549114048481,0.0085090780630708,-0.0035830039996654],[-0.033797580748796,0.044033080339432,-0.00031804799800739],[0.0087886340916157,-0.027007356286049,0.067850157618523]],[[-0.020003344863653,0.039558872580528,-0.038008816540241],[-0.078641064465046,-0.051721077412367,0.0063792616128922],[0.0080158049240708,-0.0088271833956242,0.037987902760506]],[[0.027059055864811,-0.03997265547514,-0.07632065564394],[0.027162225916982,0.071952901780605,-0.061721723526716],[0.014211172237992,0.005730074364692,-0.021748038008809]],[[0.0032944071572274,0.047026816755533,-0.0091246208176017],[0.038224309682846,-0.10003883391619,-0.046866241842508],[-0.0020180847495794,0.046806149184704,0.053613390773535]],[[0.015233278274536,-0.07983211427927,0.001091180020012],[-0.015227036550641,-0.017419964075089,-0.0052744899876416],[-0.03306157886982,0.039172194898129,-0.029899194836617]],[[-0.022564154118299,-0.070597566664219,-0.096448160707951],[-0.058562509715557,0.083942539989948,-0.024355202913284],[-0.034924957901239,-0.0046917162835598,-0.0014138499973342]],[[-0.11513374745846,-0.01162666361779,-0.092535100877285],[0.067265465855598,-0.055185675621033,0.036560006439686],[-0.11844485998154,0.13253282010555,0.010168580338359]],[[0.031733829528093,-0.026107536628842,-0.013081450946629],[-0.022525617852807,-0.00078531407052651,-0.10519395023584],[0.016081783920527,-0.0039379512891173,0.02675206400454]],[[-0.097322732210159,0.036179322749376,0.085022978484631],[0.011079383082688,-0.020742598921061,-0.099268481135368],[0.039740648120642,-0.011360617354512,0.050581004470587]],[[-0.068632982671261,-0.060573138296604,-0.0013217644300312],[-0.021939791738987,-0.036325667053461,-0.030095281079412],[0.013990513980389,0.0047518461942673,-0.0076207355596125]],[[0.042333446443081,-0.054221417754889,-0.014730790629983],[-0.048995189368725,-0.0013485957169905,-0.053682807832956],[-0.010474011301994,0.032939355820417,0.021716186776757]],[[-0.10729416459799,0.010300571098924,0.034836906939745],[-0.079961068928242,-0.037050615996122,-0.068301379680634],[-0.013711280189455,0.034205790609121,0.13152721524239]],[[0.0039541525766253,-0.054128170013428,-0.033218376338482],[-0.027531055733562,-0.0087389294058084,-0.048753965646029],[0.051415979862213,-0.078666806221008,-0.076993875205517]],[[-0.054468430578709,0.072486370801926,0.076993860304356],[-0.05216197296977,-0.0054684584029019,0.08233105391264],[-0.033029824495316,-0.020437352359295,0.0016015735454857]],[[0.025397187098861,0.030086660757661,-0.081753000617027],[-0.022549856454134,-0.025869257748127,-0.061763752251863],[-0.05966505408287,0.02413996309042,-0.10956115275621]],[[0.048434607684612,-0.051324207335711,-0.061958763748407],[0.031049890443683,-0.0046979133039713,-0.033949449658394],[0.00055232550948858,-0.041784722357988,-0.028080267831683]],[[-0.060478642582893,-0.053543794900179,-0.0030243773944676],[-0.025069389492273,0.041459549218416,0.055259045213461],[-0.021250711753964,0.053756754845381,0.086124368011951]],[[-0.053248155862093,-0.037964895367622,-0.021286619827151],[-0.031553279608488,-0.10689633339643,0.066967383027077],[-0.060590174049139,-0.032759968191385,-0.011841830797493]],[[-0.064817748963833,-0.044161010533571,-0.010818571783602],[-0.031657040119171,-0.049272019416094,0.0892239138484],[-0.026881992816925,-0.020348582416773,0.035400778055191]],[[-0.042139586061239,-0.082873225212097,-0.049015454947948],[-0.039095316082239,-0.096702121198177,-0.077249996364117],[0.026619486510754,-0.019507337361574,-0.023884316906333]],[[-0.01946665905416,-0.068503521382809,0.00079760962398723],[-0.040361527353525,0.0048951590433717,0.060681242495775],[0.049830369651318,-0.06900567561388,-0.011171317659318]],[[0.018928904086351,-0.0057749743573368,0.084738150238991],[0.03249242156744,0.1308014690876,-0.065952338278294],[-0.046745542436838,-0.025672411546111,-0.043443962931633]],[[0.037733919918537,-0.011518922634423,-0.099595926702023],[0.056822273880243,-0.019824482500553,-0.061853926628828],[-0.06717287003994,0.03465073928237,0.075854413211346]],[[-0.037310592830181,-0.066353306174278,0.12395291775465],[-0.11374824494123,0.048636499792337,-0.033132672309875],[-0.046775706112385,-0.024175005033612,0.028203498572111]],[[-0.042381666600704,-0.004250091034919,0.02949907630682],[0.057692553848028,-0.066189341247082,0.012682781554759],[-0.010501133278012,-0.060316003859043,-0.054032828658819]],[[-0.015134936198592,0.032355215400457,-0.056759014725685],[0.078801557421684,-0.0026887243147939,-0.00018320340313949],[-0.057603269815445,-0.034010697156191,0.0050961775705218]],[[0.10280480980873,-0.0070193996652961,-0.018116232007742],[-0.041162602603436,0.012620205059648,-0.046261820942163],[0.012328648939729,0.042918514460325,-0.052071005105972]],[[0.064174897968769,0.085299573838711,0.053112361580133],[0.058200284838676,-0.052410528063774,-0.07294637709856],[0.024404453113675,-0.094080828130245,-0.052121751010418]],[[-0.030846942216158,-0.021646423265338,0.027702085673809],[0.0033680712804198,0.017903504893184,0.0060363300144672],[0.010455707088113,0.009731613099575,-0.010636028833687]],[[-0.020441498607397,-0.033842168748379,-0.087208934128284],[0.018736075609922,0.0080374600365758,-0.070322796702385],[-0.014453365467489,-0.027431048452854,-0.034175377339125]],[[0.015091634355485,-0.072958320379257,-0.043059807270765],[0.013440419919789,-0.081138037145138,0.029845608398318],[0.036140620708466,0.077012501657009,0.053219582885504]],[[0.014376075007021,0.028663020581007,0.00080335856182501],[0.018588941544294,-0.066984571516514,0.061043363064528],[0.076107554137707,-0.054098807275295,0.030186455696821]],[[0.053651943802834,-0.14979723095894,0.013367463834584],[-0.024386201053858,-0.082067400217056,0.034827716648579],[0.032763183116913,0.051883727312088,0.057107992470264]],[[-0.0060847732238472,0.04392820969224,-0.077845267951488],[0.0081342663615942,0.061457920819521,0.010981758125126],[0.053632657974958,-0.02611536718905,-0.018535299226642]],[[-0.0067449379712343,0.0097900200635195,-0.11112204194069],[-0.06519427895546,0.01262537855655,0.017455313354731],[0.0036044821608812,0.02888672798872,0.020845521241426]],[[-0.039692230522633,-0.039071764796972,0.023442469537258],[-0.091945558786392,-0.033546507358551,0.0038486225530505],[-0.014356167055666,-0.02011863514781,-0.0085989627987146]],[[0.023411359637976,-0.10476682335138,0.0065558580681682],[-0.0020985999144614,-0.030119037255645,0.046637363731861],[-0.02271063067019,-0.0073568955995142,0.045737974345684]],[[-0.065603397786617,0.034466482698917,-0.051041036844254],[-0.001819719793275,-0.018997952342033,0.13506229221821],[-0.0056942589581013,0.025431044399738,-0.0077463309280574]],[[0.057802483439445,-0.047699805349112,0.013027602806687],[0.05732262507081,0.11090301722288,0.04646410048008],[0.081900045275688,-0.18826727569103,-0.031195169314742]],[[-0.0039057706017047,-0.066339321434498,-0.032856300473213],[0.011007289402187,-0.015099724754691,0.021974451839924],[-0.0061553679406643,0.074955090880394,-0.026122778654099]],[[-0.03760215267539,-0.059664245694876,-0.017970664426684],[-0.084203019738197,0.042365554720163,0.075859278440475],[0.021508308127522,0.02435795404017,-0.053322046995163]],[[-0.043843869119883,-0.011160998605192,0.057815156877041],[-0.047638699412346,-0.085203506052494,-0.044731996953487],[-0.065214991569519,-0.075557701289654,0.066863410174847]],[[-0.10230465978384,-0.0081433122977614,0.064550794661045],[0.010846020653844,0.022655554115772,-0.012878272682428],[0.075263500213623,0.050455491989851,-0.16231349110603]],[[0.042288850992918,-0.067123934626579,-0.046803392469883],[0.08217728883028,-0.07336837053299,0.0096692899242043],[0.018566882237792,0.051243644207716,-0.048200882971287]],[[-0.059459324926138,0.0060616037808359,0.073966018855572],[-0.049781955778599,0.0077890190295875,0.0019330061040819],[0.059153337031603,-0.040757440030575,-0.0049128555692732]],[[-0.078063748776913,-0.047675870358944,0.071108542382717],[0.016083361580968,0.0051810881122947,0.0069552306085825],[-0.026170438155532,0.018443159759045,0.053948864340782]],[[-0.041119057685137,-0.12686868011951,0.072170481085777],[0.019612997770309,-0.029533157125115,-0.041104648262262],[-0.066517718136311,-0.07063389569521,0.0093801682814956]],[[-0.012925625778735,-0.04265072196722,-0.043732326477766],[0.0089466776698828,-0.089063256978989,0.043681405484676],[-0.052784092724323,0.0021245842799544,0.036363169550896]]],[[[0.069347053766251,-0.0091056497767568,-0.030332466587424],[0.053294260054827,-0.1403491050005,-0.051956154406071],[-0.030937384814024,0.13179802894592,0.031066872179508]],[[0.074011363089085,0.037785671651363,-0.037509717047215],[0.085586674511433,0.096534892916679,0.045264273881912],[0.043995391577482,-0.067364491522312,-0.13483293354511]],[[-0.023087335750461,-0.047337215393782,0.0059832097031176],[-0.034041717648506,-0.12879055738449,0.028869455680251],[-0.14677134156227,-0.014176710508764,-0.0066702691838145]],[[0.081552401185036,0.048579104244709,0.074849329888821],[-0.00053736660629511,-0.091306254267693,-0.042896445840597],[0.057176154106855,-0.10575467348099,0.037755846977234]],[[0.045794859528542,-0.033405255526304,-0.056141246110201],[-0.056873358786106,-0.033953674137592,-0.079503886401653],[0.014293733052909,-0.0060839359648526,-0.042649928480387]],[[-0.013771404512227,0.032393369823694,-0.036846674978733],[-0.11260465532541,0.041750587522984,0.034988474100828],[0.0081787807866931,0.01859400421381,-0.003658932633698]],[[-0.063084945082664,-0.064427211880684,0.031548772007227],[-0.02825553715229,-0.16819684207439,0.031291976571083],[-0.050818536430597,-0.067840121686459,0.072807691991329]],[[0.0034948759712279,-0.1365439593792,-0.027834957465529],[-0.03646370023489,0.024349199607968,-0.02228313498199],[0.011053899303079,-0.037382584065199,0.08423125743866]],[[0.00061857339460403,0.058687951415777,0.087646417319775],[-0.015665909275413,-0.12657245993614,0.16693702340126],[0.010128173045814,-0.077489286661148,-0.054085168987513]],[[-0.070094205439091,0.043599605560303,0.059594176709652],[0.019919142127037,-0.023875536397099,-0.0075436644256115],[-0.22753646969795,0.049251239746809,0.01921989955008]],[[-0.13249276578426,-0.044546011835337,0.064477302134037],[0.01080172881484,-0.097052797675133,0.017057117074728],[0.06010652706027,-0.042942520231009,0.025328928604722]],[[-0.010527001693845,-0.261808604002,-0.083493731915951],[-0.020602835342288,0.031014880165458,0.070469178259373],[-0.00029804010409862,0.074025668203831,0.050407007336617]],[[0.0041101984679699,-0.055638991296291,-0.026320839300752],[-0.15575575828552,-0.16312800347805,-0.064451016485691],[-0.011123427189887,0.028762912377715,0.04528545960784]],[[0.044149376451969,-0.039319157600403,0.090640611946583],[-0.073261879384518,-0.12249474972486,-0.077747866511345],[0.032925575971603,0.02503665164113,0.13873191177845]],[[-0.02387410774827,-0.033617772161961,-0.028041968122125],[0.025205796584487,0.020176649093628,0.16672338545322],[0.052634693682194,-0.0029088004957885,0.10871414840221]],[[-0.042700860649347,0.0094501636922359,-0.069329150021076],[-0.0014250417007133,0.0018585014622658,-0.001670558587648],[0.12605971097946,0.081554844975471,-0.019863082095981]],[[-0.068075925111771,-0.14566227793694,0.12677076458931],[-0.066421888768673,-0.10362599045038,0.19262772798538],[0.023957036435604,-0.023899536579847,-0.048319764435291]],[[-0.093993000686169,-0.1150128915906,-0.064291439950466],[-0.090437613427639,0.08475012332201,-0.0051601510494947],[-0.046036563813686,-0.030107032507658,0.0010651921620592]],[[-0.063756421208382,-0.015206310898066,-0.0093890940770507],[-0.070963226258755,0.067862063646317,0.11216124147177],[-0.078287251293659,0.072431422770023,0.13726982474327]],[[0.089956715703011,0.065464086830616,0.057755775749683],[-0.010325946845114,0.1572038680315,-0.0023580901324749],[-0.060722336173058,0.066514760255814,-0.078291825950146]],[[-0.083634994924068,-0.053355287760496,-0.0093507571145892],[-0.088765121996403,-0.018887566402555,-0.043361708521843],[-0.098002813756466,-0.028078693896532,-0.00081671989755705]],[[-0.021705463528633,-0.13313415646553,-0.067000202834606],[-0.099309839308262,0.086604088544846,-0.019313817843795],[0.0088690547272563,-0.053082931786776,0.080838792026043]],[[-0.022814439609647,0.059007283300161,-0.059080459177494],[-0.062110532075167,0.074753522872925,-0.001448969473131],[0.010966747999191,-0.035585548728704,-0.069645836949348]],[[-0.066201008856297,-0.010441529564559,-0.065062016248703],[-0.0087684551253915,0.074692226946354,0.13304325938225],[-0.099661223590374,0.043696206063032,0.059900049120188]],[[-0.080586984753609,0.047112606465816,0.077170461416245],[0.058534774929285,-0.08727390319109,-0.059090986847878],[0.070834845304489,-0.01876837015152,-0.01336498465389]],[[-0.056287083774805,-0.075482040643692,-0.026067797094584],[-0.035352170467377,0.075219452381134,0.0047831973060966],[0.0075388429686427,0.041546061635017,0.077710695564747]],[[0.071617297828197,-0.049898285418749,0.025077357888222],[-0.134327724576,-0.21133053302765,0.0013508144766092],[0.003042939119041,-0.042954307049513,0.086993396282196]],[[0.0073218061588705,-0.062352072447538,-0.016227440908551],[-0.016894090920687,0.040374413132668,0.031548995524645],[-0.034572798758745,-0.012341044843197,-0.064678981900215]],[[0.034863393753767,0.15808214247227,0.073057845234871],[-0.036404017359018,0.03022089600563,-0.21590383350849],[0.031310636550188,-0.037450645118952,-0.21545396745205]],[[-0.030190289020538,0.012436343356967,-0.011394176632166],[-0.019249035045505,-0.094392061233521,0.054992210119963],[0.011784076690674,-0.049514122307301,0.053846549242735]],[[-0.092292189598083,0.095158256590366,0.052940651774406],[0.0088278893381357,0.098370380699635,-0.1075479015708],[-0.03026021271944,0.19948284327984,-0.020963687449694]],[[0.23313128948212,0.074729427695274,0.13014954328537],[0.087494313716888,-0.00024770695017651,-0.061843860894442],[0.086339063942432,0.01681094430387,-0.14785240590572]],[[-0.16264119744301,-0.075396165251732,0.025500059127808],[-0.043914385139942,-0.077731177210808,0.233532294631],[0.15224477648735,-0.015545359812677,0.18681548535824]],[[-0.096059426665306,-0.082556553184986,-0.049987893551588],[-0.048508740961552,0.011393188498914,0.037210181355476],[0.011559578590095,0.12076281756163,0.12730523943901]],[[-0.080799482762814,-0.097338974475861,-0.048770945519209],[-0.036208588629961,-0.070329129695892,-0.014900950714946],[0.1933036595583,0.055322304368019,-0.015405165031552]],[[0.056685950607061,-0.11451185494661,-0.10052777081728],[0.066851519048214,0.0099839409813285,-0.022897498682141],[-0.023542318493128,-0.094712488353252,-0.13196684420109]],[[-0.12592534720898,-0.077592559158802,0.021003434434533],[-0.030951043590903,-0.14863330125809,-0.069040291011333],[0.041692454367876,0.039185035973787,0.093141995370388]],[[0.0078055779449642,-0.069760605692863,-0.020972097292542],[0.023237368091941,0.016580848023295,0.023847039788961],[-0.034874390810728,-0.10919355601072,-0.0064794342033565]],[[0.069941885769367,-0.010775699280202,-0.084118098020554],[-0.054699964821339,0.031070359051228,0.14293296635151],[-0.024983214214444,0.051774263381958,0.087684459984303]],[[0.078004345297813,0.0089447479695082,-0.013365056365728],[0.061666801571846,-0.059300806373358,-0.029587961733341],[0.05868972837925,-0.15590360760689,-0.13250289857388]],[[0.022748690098524,-0.012160938233137,0.0030513247475028],[-0.020451745018363,-0.11767244338989,-0.067715875804424],[0.048538990318775,0.013718016445637,0.064291328191757]],[[-0.015760073438287,0.0086881136521697,0.00070721574593335],[0.0076088183559477,-0.052024390548468,0.01570232398808],[0.095996432006359,-0.034635506570339,0.10092582553625]],[[-0.048291202634573,-0.086341954767704,-0.032012220472097],[0.0031846452038735,-0.036594241857529,-0.042902801185846],[0.049568902701139,-0.030659703537822,0.077730000019073]],[[-0.017119092866778,-0.046415783464909,-0.0049032284878194],[0.043478660285473,0.042124513536692,-0.14849048852921],[0.010145339183509,0.03445915132761,0.10040728002787]],[[-0.085169941186905,0.0043541868217289,0.043245036154985],[0.052872024476528,-0.18283872306347,0.04178087413311],[0.015369904227555,0.084718868136406,0.10820680856705]],[[-0.021265115588903,-0.073152087628841,-0.028533915057778],[0.046252857893705,-0.051880951970816,0.072418533265591],[-0.0086691537871957,0.017322644591331,-0.010589790530503]],[[0.099782899022102,0.030994962900877,-0.050473608076572],[-0.069689378142357,-0.049781195819378,-0.090240314602852],[-0.11311177909374,-0.061617285013199,-0.09907178580761]],[[-0.0046949000097811,-0.14048819243908,-0.047284815460443],[0.11201578378677,-0.055845428258181,0.039396792650223],[-0.012824216857553,0.032313615083694,-0.096475496888161]],[[0.018671147525311,0.0090040322393179,0.116933375597],[-0.10506051778793,-0.21781027317047,-0.20628958940506],[0.064105108380318,0.023118695244193,0.026376632973552]],[[-0.029344839975238,-0.091874189674854,-0.063567459583282],[0.010717608965933,-0.0049861874431372,0.047278538346291],[0.0089043350890279,-0.04253651201725,0.080323025584221]],[[-0.10142125934362,-0.07863537967205,-0.033209159970284],[0.064708761870861,-0.016013959422708,0.050404768437147],[-0.010979049839079,0.015291335061193,0.095392718911171]],[[-0.01053209323436,-0.068493366241455,0.095186777412891],[-0.038482923060656,-0.033986564725637,-0.015610481612384],[-0.032568041235209,0.13227094709873,0.088725417852402]],[[-0.053071409463882,-0.042430002242327,0.041084259748459],[-0.0011218129657209,-0.040452808141708,-0.14350879192352],[0.004760772921145,0.1642669737339,-0.02586554735899]],[[0.093334570527077,0.14415095746517,0.1061858907342],[0.0068139233626425,0.073039457201958,0.087820217013359],[0.044602878391743,0.027419753372669,-0.12023483216763]],[[-0.033009462058544,0.0025652940385044,0.0034363949671388],[0.037386354058981,-0.059143584221601,-0.046479396522045],[-0.0038220072165132,-0.079297848045826,0.0083857662975788]],[[-0.047619212418795,0.040885239839554,0.072368890047073],[0.0048335562460124,0.023657236248255,-0.070045903325081],[0.030841639265418,-0.10689251869917,-0.0038296007551253]],[[0.049629252403975,0.048493608832359,0.10229961574078],[0.14521047472954,0.040459852665663,0.13428056240082],[-0.0018332307226956,-0.10856029391289,0.031528633087873]],[[-0.04910734295845,-0.070602253079414,-0.084499210119247],[-0.056832108646631,0.029928173869848,0.1202649474144],[-0.064717538654804,-0.023752056062222,0.10273364186287]],[[-0.08413951843977,0.15971820056438,0.013640652410686],[0.016533879563212,-0.0037040635943413,-0.019341975450516],[-0.068081974983215,0.016503438353539,-0.050653602927923]],[[-0.18502895534039,-0.22969403862953,0.081107668578625],[5.5875440011732e-05,-0.15065933763981,-0.075431972742081],[0.016563452780247,0.050067871809006,0.12173634767532]],[[0.031314667314291,-0.013936036266387,0.00033676857128739],[0.091359995305538,0.056944027543068,-0.0074243959970772],[0.0077968253754079,-0.021835874766111,0.027599710971117]],[[0.040204335004091,-0.0052343150600791,0.070807255804539],[-0.071311868727207,-0.17119887471199,-0.054862752556801],[0.14368550479412,0.027473524212837,0.068454630672932]],[[-0.011808126233518,0.02904892899096,-0.021017979830503],[0.084769003093243,-0.024577002972364,0.02444314584136],[0.013643850572407,0.10480193048716,-0.14156553149223]],[[0.059550575911999,-0.012317985296249,-0.019508710131049],[0.0052805808372796,0.088126167654991,0.050913482904434],[0.037401840090752,-0.10845027118921,-0.25594472885132]]],[[[0.029063656926155,-0.024682715535164,-0.13416469097137],[0.055756330490112,0.050409495830536,-0.10792832821608],[0.041913744062185,0.087263084948063,0.038332838565111]],[[0.24703660607338,-0.094098791480064,0.0048261005431414],[-0.031174959614873,0.022844716906548,-0.10638698190451],[0.091348558664322,-0.0064831036143005,-0.013565008528531]],[[0.049162894487381,0.024450831115246,-0.061325177550316],[-0.1134582310915,0.038745991885662,-0.021112019196153],[-0.045365493744612,-0.031468857079744,0.069687902927399]],[[-0.24657478928566,-0.010115519165993,0.068885967135429],[-0.064671047031879,0.0037463188637048,0.21198199689388],[-0.13621781766415,-0.034137289971113,-0.070526547729969]],[[0.095723450183868,0.00056705134920776,0.020075378939509],[0.064140804111958,0.021128449589014,0.027070131152868],[-0.058166239410639,-0.1007644161582,-0.055611941963434]],[[0.096765600144863,0.017470380291343,0.12026255577803],[-0.041473854333162,0.003475381527096,0.0070914467796683],[0.033295907080173,-0.07769251614809,0.018984945490956]],[[-0.15887904167175,-0.12172713130713,-0.073776036500931],[0.023289060220122,-0.082487739622593,0.051117479801178],[-0.071746841073036,-0.13646757602692,-0.019237916916609]],[[-0.075888626277447,-0.016656501218677,0.12674342095852],[-0.15895235538483,0.07704945653677,-0.021224226802588],[-0.014229714870453,-0.015954647213221,0.070454277098179]],[[0.10878881812096,0.00055803928989917,-0.08141154050827],[-0.032624874264002,0.040013920515776,-0.022968107834458],[0.012081525288522,-0.017903422936797,0.02468042075634]],[[-0.041214767843485,0.032293919473886,0.079316027462482],[0.0044725434854627,0.10889580100775,0.083989217877388],[0.014839074574411,0.026907639577985,-0.026312513276935]],[[0.068262495100498,0.12948399782181,-2.2663316485705e-05],[0.01644866541028,0.027310581877828,0.083157241344452],[-0.013863352127373,-0.084223337471485,0.015422937460244]],[[0.036380287259817,-0.053966592997313,-0.023060249164701],[0.20701105892658,-0.080699495971203,-0.22795900702477],[0.22392007708549,0.056308757513762,-0.045023825019598]],[[-0.027944523841143,0.098043821752071,0.11560820043087],[-0.13904100656509,0.14898137748241,0.02911900728941],[-0.26134651899338,-0.067563198506832,0.090380243957043]],[[0.13620364665985,0.0093063991516829,0.047819957137108],[0.052207957953215,0.10824861377478,-0.005148371681571],[-0.00096943508833647,-0.048979461193085,0.02225155942142]],[[-0.072085075080395,0.039067342877388,-0.014760423451662],[-0.027900164946914,0.031416192650795,0.009110520593822],[-0.086102075874805,0.092471480369568,-0.13049581646919]],[[-0.062307354062796,-0.059707134962082,0.015503492206335],[0.083256013691425,0.047092065215111,0.069552689790726],[-0.06648176908493,-0.057948831468821,-0.079431623220444]],[[-0.0058808694593608,-0.076622359454632,0.11911033838987],[-0.20633445680141,0.067860491573811,-0.097873970866203],[0.071958757936954,-0.0065157520584762,0.029148191213608]],[[0.072730906307697,0.035065561532974,0.056320510804653],[0.0070050125941634,0.0098802410066128,0.15755206346512],[-0.11850947141647,-0.090011954307556,0.019182385876775]],[[-0.07586245238781,-0.004154805559665,0.1329508125782],[-0.068536922335625,-0.012382628396153,0.1973469555378],[-0.12256111204624,-0.13426487147808,0.039764974266291]],[[0.024924468249083,-0.14143051207066,-0.017424883320928],[0.11313010752201,0.035405680537224,-0.059315554797649],[0.061604738235474,0.10171105712652,-0.012628607451916]],[[0.011355746537447,0.14696374535561,0.080785498023033],[-0.03680918738246,0.1019819304347,0.029547112062573],[-0.11221854388714,-0.037395462393761,-0.023598171770573]],[[0.015386581420898,0.02084156498313,-0.093670517206192],[0.016536634415388,-0.063680574297905,0.096304029226303],[-0.14463867247105,-0.049152512103319,0.013837529346347]],[[0.056541912257671,0.075309656560421,0.10606595873833],[-0.021343160420656,0.024974683299661,-0.042559958994389],[-0.073472291231155,-0.16779175400734,-0.080153435468674]],[[-0.065268166363239,-0.085555426776409,-0.20912104845047],[0.18073470890522,0.0045849024318159,-0.0048052766360343],[0.085752435028553,0.11904696375132,0.061558786779642]],[[-0.015348456799984,-0.094809785485268,-0.058916263282299],[0.065124236047268,-0.038877323269844,0.16079685091972],[-0.13531082868576,-0.10253103077412,0.18937568366528]],[[0.12173918634653,0.0023411617148668,-0.15132085978985],[-0.019805200397968,-0.039995033293962,-0.044487785547972],[-0.10799607634544,-0.14054818451405,0.027522025629878]],[[0.042057499289513,-0.080808475613594,0.062100797891617],[0.0064942431636155,-0.10662702471018,0.04080893471837],[-0.019353870302439,-0.056716702878475,0.027045644819736]],[[-0.035329964011908,-0.043920043855906,-0.038255535066128],[0.079025372862816,0.0052706571295857,-0.037351433187723],[0.067091293632984,0.058809343725443,0.013189554214478]],[[-0.06512513011694,0.019648404791951,0.044084221124649],[-0.032770585268736,-0.14591401815414,0.034692849963903],[-0.11790575832129,-0.052259650081396,0.11710508167744]],[[-0.089192301034927,0.0045417691580951,0.045146524906158],[-0.089705161750317,0.078948475420475,0.060897726565599],[-0.1212749928236,0.031972594559193,-0.12684819102287]],[[0.021120920777321,-0.068384043872356,-0.041453324258327],[-0.084473475813866,0.1405024677515,-0.065895266830921],[0.033648669719696,-0.052232667803764,0.0054030157625675]],[[-0.030208783224225,0.11368483304977,0.041294846683741],[0.070980206131935,-0.042896468192339,-0.013877650722861],[0.028534783050418,0.0082294093444943,-0.062795050442219]],[[0.063382260501385,-0.033584091812372,-0.0054618963040411],[-0.072668120265007,-0.027782574295998,0.0024330688174814],[-0.079336613416672,-0.07386426627636,-0.074119068682194]],[[0.12779660522938,0.032302249222994,-0.060110364109278],[0.14397779107094,0.016757318750024,-0.012348252348602],[-0.040758520364761,-0.1790814101696,-0.024651519954205]],[[0.063779145479202,-0.019960001111031,0.040178008377552],[-0.074916951358318,-0.05660654976964,0.01703479886055],[-0.085426546633244,-0.14563181996346,-0.097324311733246]],[[0.054080240428448,-0.14564524590969,-0.0062053897418082],[0.096186757087708,-0.091125808656216,-0.25569015741348],[0.14476568996906,0.036888610571623,-0.019057914614677]],[[-0.029555065557361,-0.075510762631893,-0.043180711567402],[-0.0028434789273888,-0.10185660421848,-0.0056994268670678],[0.016977287828922,0.01577877625823,0.10380833595991]],[[0.01135915890336,-0.0013253657380119,-0.049657166004181],[0.023002224043012,0.19011488556862,-0.046357974410057],[0.039152596145868,-0.0053864507935941,-0.03395851701498]],[[0.11165796220303,-0.040834371000528,0.036257036030293],[-0.06123199686408,-0.061278905719519,-0.065676987171173],[0.034155081957579,0.026000829413533,-0.04593450576067]],[[-0.04862304776907,-0.09063858538866,0.026283940300345],[-0.0057163476012647,-0.043302800506353,-0.068356148898602],[0.0915816873312,-0.022639913484454,-0.0064567686058581]],[[0.13384509086609,-0.0026228551287204,-0.02212505415082],[0.053866196423769,-0.060957737267017,0.028329849243164],[-0.042523384094238,-0.023025752976537,-0.066296555101871]],[[0.062739118933678,0.058186810463667,0.018214473500848],[-0.063621670007706,-0.031953915953636,-0.060747388750315],[0.0067225159145892,-0.073139727115631,0.071932524442673]],[[-0.03727912902832,0.067343145608902,-0.025267062708735],[0.066633194684982,-0.066813305020332,0.039610154926777],[-0.027447210624814,-0.011642831377685,0.05862533301115]],[[0.0097764926031232,0.022938715294003,-0.036492981016636],[-0.038368582725525,-0.0218665599823,-0.0063580656424165],[-0.012159519828856,0.11099584400654,-0.0094660818576813]],[[0.053104430437088,-0.018616374582052,-0.052888408303261],[0.0087632220238447,-0.02454274520278,0.0055117714218795],[-0.032525457441807,-0.077283203601837,-0.0091786710545421]],[[-0.05930769443512,0.028785170987248,0.062530644237995],[0.015740929171443,0.040894757956266,-0.077088311314583],[-0.059261083602905,-0.12668986618519,-0.029417732730508]],[[-0.18121571838856,-0.013520709238946,0.0071729347109795],[-0.0950807929039,0.097525365650654,0.023276383057237],[-0.023312536999583,0.035445969551802,0.043294191360474]],[[-0.036490142345428,0.054797038435936,-0.034175910055637],[-0.0033285648096353,-0.019659319892526,-0.098089553415775],[0.0027129617519677,0.040762320160866,-0.014785944484174]],[[0.0053253159858286,0.012134738266468,-0.032220475375652],[0.17466495931149,-0.080451279878616,0.11417272686958],[-0.020576579496264,-0.026054067537189,0.014611637219787]],[[0.040041472762823,0.1106745377183,-0.00017422865494154],[0.020718118175864,0.013230262324214,0.041500084102154],[-0.10031821578741,0.017410708591342,-0.013982634991407]],[[-0.018063433468342,0.10664917528629,0.0013811842072755],[0.028687190264463,0.018133752048016,0.070391222834587],[-0.043197546154261,-0.097371615469456,-0.052540499716997]],[[0.0036860788241029,-0.18387740850449,-0.068492449820042],[0.0060152006335557,0.11041035503149,-0.055921718478203],[-0.10659594833851,0.076020658016205,-0.046910680830479]],[[0.16948682069778,0.072614513337612,0.054936725646257],[-0.094889499247074,-0.13657106459141,-0.043689139187336],[-0.054806981235743,-0.051086988300085,-0.021824132651091]],[[-0.013852408155799,0.0122876977548,0.055834945291281],[-0.045344658195972,0.07563803344965,-0.024210086092353],[-0.13541473448277,0.012554787099361,0.017893576994538]],[[-0.024798762053251,-0.061049677431583,-0.031665161252022],[-0.086218856275082,-0.054756447672844,-0.12693065404892],[-0.00016787459026091,-0.022876538336277,-0.064243607223034]],[[0.097763687372208,-0.026262288913131,-0.0065752440132201],[-0.0037015045527369,-0.020127492025495,-0.039973851293325],[0.065026700496674,-0.068376749753952,-0.041105724871159]],[[0.091609165072441,0.048465143889189,0.2203768491745],[0.11191956698895,-0.07620170712471,0.0032585398294032],[0.075250871479511,-0.086319424211979,0.11509463191032]],[[0.12575401365757,0.070357702672482,-0.059690278023481],[-0.076258540153503,0.065557204186916,0.040086571127176],[0.090614147484303,-0.20571148395538,-0.062814846634865]],[[-0.10606998205185,-0.049217879772186,-0.0029688950162381],[-0.045586932450533,0.10529354959726,0.1354629099369],[-0.06837272644043,-0.054491572082043,0.068946279585361]],[[-0.15091355144978,-0.0023841299116611,0.11197262257338],[-0.14872969686985,0.097508303821087,0.1438484787941],[-0.092078156769276,-0.11614085733891,0.069604530930519]],[[0.14167064428329,0.074863448739052,-0.1101353392005],[0.022023238241673,0.052733074873686,0.10635307431221],[-0.22916373610497,0.048547878861427,-0.058928031474352]],[[-0.0040022726170719,-0.015566606074572,0.0035830652341247],[0.086673460900784,-0.13675609230995,0.03905988112092],[-0.017007756978273,-0.041178591549397,0.068000122904778]],[[-0.059269335120916,0.018756367266178,-0.20904733240604],[-0.013773292303085,0.083308294415474,-0.032920505851507],[0.095091372728348,-0.12578988075256,0.033890672028065]],[[-0.12936736643314,-0.15381793677807,0.071569882333279],[-0.042464070022106,-0.01651574857533,0.017469242215157],[0.023065760731697,0.057663433253765,0.043677005916834]]],[[[-0.069912731647491,0.0052402652800083,0.080131128430367],[-0.032944269478321,-0.030776746571064,0.062052775174379],[0.076427429914474,-0.14221101999283,-0.13048340380192]],[[0.10955258458853,-0.058180764317513,-0.15192997455597],[0.083241932094097,0.03129979968071,-0.093101367354393],[0.008809469640255,0.0050695901736617,-0.043284758925438]],[[-0.17591468989849,-0.095990218222141,-0.013638333417475],[-0.039515648037195,0.11067432910204,0.11010929942131],[0.13193199038506,0.14958319067955,0.019290277734399]],[[-0.13982261717319,0.072725921869278,-0.033601563423872],[0.0048087956383824,-0.11814208328724,-0.032142881304026],[0.15177674591541,-0.15370434522629,-0.092332653701305]],[[0.074708580970764,-0.13736902177334,-0.047906994819641],[-0.012731349095702,-0.068250223994255,0.010184071958065],[0.064110517501831,-0.00042628025403246,0.068504862487316]],[[0.10750535875559,-0.16234955191612,-0.067217081785202],[0.080746501684189,-0.2184786349535,0.12358639389277],[-0.0015480993315578,-0.033727005124092,-0.01193053368479]],[[-0.12703414261341,0.058486774563789,0.056477818638086],[-0.050044145435095,0.02353890798986,-0.029703529551625],[0.15848283469677,0.05453184992075,0.030839338898659]],[[0.02897990308702,0.017456896603107,0.050077326595783],[0.046824220567942,-0.011082756333053,-0.1593032926321],[0.052471380680799,-0.013030740432441,-0.081173725426197]],[[-0.016390547156334,0.05806053057313,-0.11286517232656],[0.0080849761143327,0.034780722111464,-0.02324459142983],[0.010484515689313,0.068725138902664,-0.0021151381079108]],[[-0.071431085467339,0.038450408726931,0.062352191656828],[0.070283375680447,0.0048585194163024,0.15264113247395],[0.026820711791515,-0.0056407349184155,-0.041810899972916]],[[0.10111738741398,-0.054056897759438,0.028835585340858],[0.020010018721223,0.042038954794407,0.087600193917751],[0.0087506184354424,0.065817534923553,0.032123852521181]],[[0.081442967057228,0.018594352528453,-0.21054229140282],[0.054437611252069,-0.094535276293755,-0.12609069049358],[0.036947209388018,0.023250909522176,0.12758752703667]],[[-0.0730861723423,0.0014368137344718,-0.048819679766893],[-0.07910193502903,0.12553942203522,0.049554884433746],[0.077379062771797,0.045960765331984,0.0085888598114252]],[[0.1106708869338,-0.048973191529512,-0.024129552766681],[-0.057201471179724,0.074350908398628,0.0028213968034834],[0.036098811775446,0.081753000617027,-0.15599425137043]],[[-0.069170132279396,-0.021250043064356,-0.022846285253763],[0.087771438062191,-0.018049038946629,-0.022087257355452],[-0.061719439923763,-0.14258064329624,0.062863908708096]],[[0.051172625273466,0.022015729919076,-0.01014681905508],[0.036837313324213,-0.010365210473537,-0.038619987666607],[-0.01062981877476,-0.060327220708132,-0.054521914571524]],[[-0.047648441046476,-0.0076314844191074,-0.079530082643032],[-0.11092095077038,-0.074800066649914,0.10209154337645],[-0.11145567893982,-0.044092446565628,7.4845462222584e-05]],[[-0.00031322799623013,-0.25480768084526,0.004283806309104],[0.064678117632866,-0.059702917933464,0.051119562238455],[-0.053920604288578,0.10496008396149,0.077195838093758]],[[0.030407370999455,-0.072948418557644,-0.08475873619318],[0.013987882062793,0.019179468974471,0.088024467229843],[-0.060985933989286,0.087050035595894,0.057670641690493]],[[0.13593679666519,-0.017233800143003,0.054066099226475],[0.017043430358171,0.090922303497791,-0.049347776919603],[0.14962209761143,-0.028744332492352,-0.14653643965721]],[[0.089505098760128,0.058054786175489,-0.084157839417458],[0.065012268722057,-0.079091437160969,0.058535374701023],[-0.10298799723387,-0.13551144301891,0.013855529949069]],[[-0.011183581314981,0.021332873031497,0.052414335310459],[0.042222388088703,0.05147036164999,0.031631547957659],[0.035776413977146,0.027149857953191,-0.045224968343973]],[[0.099969819188118,-0.015197943896055,-0.0043827220797539],[0.042739655822515,0.015458797104657,0.013071431778371],[-0.075841546058655,0.0048304391093552,-0.037540033459663]],[[-0.010352187789977,-0.03708116710186,-0.15872731804848],[0.13068713247776,-0.13463340699673,-0.094841606914997],[-0.014908256009221,-0.077040515840054,-0.10651569068432]],[[-0.031598739326,-0.01630487665534,0.035971846431494],[-0.045469019562006,0.10620381683111,0.0046984096989036],[-0.093389675021172,0.084198132157326,-0.25219368934631]],[[0.081159882247448,-0.087799593806267,-0.1048398911953],[-0.033794827759266,0.07880488038063,-0.082682877779007],[0.073099464178085,0.078447781503201,0.024893540889025]],[[0.024766467511654,-0.091751471161842,-0.046620678156614],[0.023106573149562,-0.077490724623203,-0.07741854339838],[0.050511069595814,-0.11398743093014,0.08204710483551]],[[0.14728599786758,0.067969888448715,-0.083986654877663],[0.052063200622797,0.09421344846487,0.054164875298738],[-0.0043964674696326,-0.060009084641933,0.0064428318291903]],[[0.017350319772959,0.046777192503214,-0.1019095107913],[-0.024787683039904,0.11709869652987,-0.030253184959292],[-0.0097722411155701,0.0076640383340418,-0.11955316364765]],[[0.12034314870834,0.10770657658577,-0.043130476027727],[-0.093821853399277,0.007367798127234,0.04669214785099],[0.04177526012063,0.014516890980303,-0.06312220543623]],[[0.032915700227022,-0.0011502518318594,-0.0014928769087419],[0.14458350837231,0.070865519344807,0.061836563050747],[0.039316333830357,0.10180762410164,-0.15593820810318]],[[-0.031845707446337,-0.060928497463465,-0.13618923723698],[-0.055962707847357,0.010524285957217,-0.060900174081326],[0.094271883368492,0.00371656822972,0.081630237400532]],[[-0.03585622087121,0.07626711577177,0.059005010873079],[0.034632090479136,0.039810184389353,-0.0037776546087116],[0.070288948714733,-0.085671290755272,-0.053946018218994]],[[0.09435997158289,0.02330269664526,0.087077960371971],[0.079320415854454,-0.1085502281785,0.03980553150177],[-0.032732699066401,0.072917580604553,0.015433738939464]],[[0.13189294934273,0.043964195996523,-0.031747959554195],[0.061070870608091,-0.09960712492466,-0.046823419630527],[-0.02841292321682,-0.089738085865974,0.0022706417366862]],[[-0.069089882075787,0.018558340147138,0.023322109133005],[-0.083945520222187,-0.091940976679325,-0.070801854133606],[0.012778599746525,-0.030677679926157,0.017665721476078]],[[0.075666449964046,0.021908102557063,0.1055810675025],[-0.052397325634956,-0.051430832594633,-0.035111490637064],[-0.19200250506401,-0.064697287976742,-0.12079557031393]],[[0.032090991735458,0.07540986686945,0.093808218836784],[-0.025730907917023,0.078437022864819,-0.085421472787857],[0.043438497930765,0.13121069967747,-0.13315235078335]],[[-0.070889852941036,0.058147102594376,-0.087435849010944],[0.040726490318775,-0.026780243963003,0.038761850446463],[0.086250096559525,-0.044760338962078,0.12143494188786]],[[0.03441296890378,0.036273505538702,0.07192400097847],[-0.084958232939243,0.016338035464287,0.0014369864948094],[0.096804045140743,0.074598178267479,0.03743963688612]],[[0.051610518246889,-0.012371866963804,0.044400729238987],[0.054276783019304,-0.013817084021866,0.0094890948385],[0.073752835392952,0.0029078414663672,0.065663389861584]],[[0.096160165965557,0.052745930850506,0.061838746070862],[-0.003184384200722,0.043583940714598,-0.049229931086302],[-0.14128808677197,-0.084439337253571,0.15707094967365]],[[-0.029670011252165,-0.130250826478,-0.032999284565449],[-0.044871598482132,0.076216027140617,0.11682578921318],[0.074120208621025,0.07751601934433,0.013588385656476]],[[-0.028863433748484,-0.086758807301521,0.18939454853535],[-0.02178462035954,0.014637454412878,0.029678663238883],[-0.0075267110951245,-0.069514811038971,-0.016894577071071]],[[0.0050527611747384,-0.01783231459558,0.031992830336094],[-0.067691765725613,-0.10680267214775,0.0058870404027402],[-0.12752160429955,0.00398616399616,-0.074552394449711]],[[-0.16251392662525,0.061961852014065,-0.074154295027256],[-0.054472140967846,0.06559120118618,0.022281773388386],[-0.040699042379856,-0.041486445814371,-0.059665217995644]],[[-0.092359438538551,0.12365510314703,-0.0079309120774269],[-0.13918560743332,-0.14864617586136,-0.10795484483242],[-0.021872334182262,-0.11507005989552,0.050145335495472]],[[0.15489441156387,-0.02579702809453,-0.15274524688721],[0.0043626739643514,-0.070062421262264,-0.057475514709949],[0.025505032390356,-0.057143367826939,-0.10416992753744]],[[0.13111679255962,0.13718268275261,0.0069847712293267],[-0.069147855043411,-0.061824813485146,-0.082183763384819],[0.043847665190697,0.04891038313508,0.022611517459154]],[[-0.052555344998837,0.11791408807039,-0.011177442967892],[0.034124348312616,0.057734023779631,-0.094418942928314],[-0.13659165799618,-0.044090822339058,-0.010763854719698]],[[0.011683811433613,0.070508375763893,0.1152192056179],[-0.012802263721824,0.065230257809162,0.11826362460852],[-0.10682798922062,-0.056567054241896,-0.029935352504253]],[[-0.031672291457653,0.0032217677216977,-0.027417976409197],[0.023883512243629,0.026863776147366,0.0325917750597],[0.046049822121859,-0.098814204335213,-0.02538581751287]],[[-0.088614404201508,0.028958141803741,0.0064494162797928],[0.18095225095749,-0.0094872172921896,-0.017270551994443],[0.12051942199469,-0.068291626870632,-0.056370418518782]],[[-0.21889136731625,0.088786326348782,-0.029231132939458],[0.033052049577236,-0.023512782528996,0.011844104155898],[-0.0007841843762435,0.0076418020762503,0.024298651143909]],[[-0.043891433626413,-0.13510574400425,-0.02656034193933],[0.033702973276377,-0.09808124601841,-0.022813614457846],[-0.073361948132515,-0.076012380421162,-0.18455323576927]],[[0.021892411634326,0.065225772559643,0.079842403531075],[0.024950779974461,0.058013625442982,-0.0063870307058096],[0.018793368712068,0.049895294010639,-0.058967288583517]],[[0.05838530510664,0.18443369865417,-0.018736056983471],[0.15937043726444,0.017956640571356,-0.082988604903221],[0.11294268071651,0.12012923508883,0.00068204663693905]],[[-0.03155605122447,0.0953329205513,0.067212291061878],[-0.057040899991989,-0.17615240812302,0.07857047021389],[-0.18567296862602,-0.057554829865694,0.024880990386009]],[[0.040900159627199,-0.1865311563015,0.029540430754423],[0.11219248175621,0.037681009620428,0.015117355622351],[0.091386914253235,-0.01612931676209,-0.19265103340149]],[[0.063102230429649,-0.13361370563507,0.030933035537601],[0.088858343660831,-0.076191417872906,0.03236673399806],[0.07777912914753,0.041616972535849,-0.086798794567585]],[[0.071952775120735,0.048227712512016,0.093989141285419],[0.033193401992321,-0.023426933214068,0.0066230925731361],[-0.085874639451504,0.0023797056637704,-0.017203733325005]],[[-0.03215017914772,-0.023854007944465,-0.036133736371994],[0.018880970776081,-0.10595712810755,-0.071560889482498],[0.087302066385746,-0.1627971380949,-0.061789624392986]],[[0.058294367045164,-0.0052144802175462,-0.024695357307792],[-0.075508065521717,0.050275608897209,-0.0061630154959857],[-0.095589026808739,0.094978764653206,-0.020319497212768]],[[-0.041993524879217,-0.22595469653606,0.038845617324114],[-0.18460600078106,0.039700888097286,0.011323378421366],[0.12599222362041,-0.015322580002248,0.058056205511093]]],[[[-0.10893251746893,-0.037005800753832,0.062651894986629],[-0.050262752920389,0.059418827295303,0.0020323391072452],[-0.069198474287987,0.09559029340744,-0.0024343158584088]],[[-0.018159162253141,0.040839664638042,-0.014601904898882],[0.027728816494346,0.053922452032566,-0.057811178267002],[0.01953605748713,-0.012427250854671,0.052431620657444]],[[-0.099020667374134,0.0036703208461404,-0.086275860667229],[0.018370876088738,0.0072110928595066,-0.05553287640214],[0.040399681776762,0.00060347653925419,0.035552438348532]],[[0.12161099910736,0.12584549188614,-0.029632790014148],[-0.10737445950508,0.0034612796735018,0.054236683994532],[-0.16719821095467,-0.077782317996025,-7.6270596764516e-05]],[[0.052066430449486,-0.081681102514267,-0.034542486071587],[0.01189707685262,-0.054471880197525,-0.082342125475407],[0.022075084969401,0.12137850373983,0.02832262031734]],[[-0.0014882681425661,-0.12523844838142,-0.072612404823303],[-0.044797506183386,0.019887195900083,0.081922054290771],[-0.022039035335183,-0.17693205177784,-0.09064257144928]],[[0.020311824977398,0.090277582406998,-0.0044760317541659],[-0.015604190528393,0.037250626832247,-0.033356104046106],[0.018226521089673,-0.10083521157503,-0.0021502182353288]],[[0.063366875052452,0.13162060081959,-0.058005265891552],[-0.089480996131897,-0.07287660241127,0.038304761052132],[-0.12103515118361,0.0075862538069487,0.11769729107618]],[[0.091905027627945,0.064576834440231,0.0096652545034885],[-0.1088677495718,0.056870102882385,-0.0043246746063232],[-0.069117054343224,-0.090654373168945,0.063106074929237]],[[-0.091308780014515,-0.079952336847782,-0.031444504857063],[-0.0050296513363719,0.0043927035294473,0.0059583452530205],[-0.032904174178839,-0.0030787324067205,-0.0052258782088757]],[[-0.090617381036282,0.057904399931431,0.014593292959034],[0.00029839086346328,-0.038483954966068,-0.033031117171049],[0.022101547569036,-0.088521108031273,-0.059813357889652]],[[-0.056074492633343,-0.12525877356529,0.077168457210064],[0.027013124898076,0.045680485665798,0.01105497777462],[0.093076847493649,0.029648628085852,-0.0040171220898628]],[[0.023639298975468,0.029274543747306,-0.0060139112174511],[0.086846984922886,0.0015602281782776,0.01479658856988],[-0.034598097205162,-0.025768434628844,-0.058138981461525]],[[0.12001050263643,0.029091497883201,0.12882223725319],[-0.010740490630269,0.057832445949316,0.0038043041713536],[-0.058411426842213,0.1074008718133,0.028273846954107]],[[0.062243893742561,-0.0022784010507166,0.035762563347816],[-0.091787733137608,-0.034032981842756,0.017480013892055],[0.069660484790802,-0.16937199234962,0.069678761065006]],[[0.030609017238021,0.027474818751216,-0.12484155595303],[0.0026512839831412,-0.00077356729889289,0.046074021607637],[-0.019856922328472,0.015561323612928,-0.069336675107479]],[[0.022797292098403,0.19868570566177,-0.087780997157097],[-0.097446471452713,-0.030833456665277,0.10076815634966],[-0.05949179828167,-0.034262247383595,-0.042585972696543]],[[-0.064480870962143,0.011600033380091,0.052769776433706],[-0.018843814730644,0.0094992201775312,0.032387122511864],[0.067044764757156,-0.033745728433132,0.013715013861656]],[[0.016996601596475,-0.072102330625057,-0.033863950520754],[-0.094788037240505,0.06030048802495,0.0086262430995703],[0.074361078441143,-0.038617338985205,-0.16756716370583]],[[-0.023399211466312,0.014728849753737,-0.078887104988098],[0.12948401272297,0.088821105659008,-0.0074250483885407],[-0.014387495815754,0.12587755918503,0.078102603554726]],[[-0.075475499033928,0.036840595304966,0.066207773983479],[-0.03582476451993,0.049274668097496,-0.082821525633335],[0.057997450232506,0.014926064759493,-0.0043687829747796]],[[0.095980018377304,-0.13647100329399,-0.057049259543419],[-0.053399410098791,-0.045201677829027,0.047778077423573],[-0.092091992497444,-0.13088311254978,-0.014047398231924]],[[-0.24368903040886,0.0017287698574364,0.042807079851627],[0.14273564517498,0.13325783610344,-0.030168926343322],[-0.052234902977943,-0.022898809984326,0.074462287127972]],[[0.012913770973682,-0.064809150993824,0.034891217947006],[-0.044565372169018,-0.0075711472891271,0.021785151213408],[-0.025549054145813,-0.056996326893568,0.0030352456960827]],[[0.050602350383997,-0.044696684926748,0.083635956048965],[-0.038968022912741,-0.061781838536263,0.045513555407524],[0.025634368881583,-0.08731384575367,-0.028998859226704]],[[0.089104689657688,-0.03075996786356,-0.045233950018883],[0.11883947998285,0.017563482746482,-0.021213641390204],[-0.072977229952812,0.16270057857037,0.06245718896389]],[[-0.051839519292116,-0.019272670149803,-0.04413540661335],[-0.054997276514769,0.0042235208675265,0.0049039758741856],[-0.022812195122242,0.086281083524227,0.054354324936867]],[[-0.065349899232388,-0.081268697977066,0.008659171871841],[0.1254865527153,-0.010028666816652,-0.050643894821405],[0.030004154890776,-0.10687014460564,-0.017243314534426]],[[0.039842635393143,0.0081100631505251,0.00148098426871],[0.0098122144117951,-0.1836412101984,-0.083979047834873],[-0.052118457853794,0.063432313501835,-0.0095662856474519]],[[-0.043691664934158,0.0010352340759709,-0.043618079274893],[0.0048674549907446,-0.019075412303209,0.018529227003455],[0.020298158749938,0.015728686004877,0.070124804973602]],[[0.099489152431488,0.023557251319289,-0.015069902874529],[-0.037306297570467,0.096654444932938,0.0084351357072592],[0.0659254565835,0.10492078959942,-0.13394792377949]],[[5.2266605052864e-05,-0.057827420532703,0.06865032017231],[-0.0019488871330395,0.003470647148788,-0.048161972314119],[0.02347169443965,0.16651113331318,0.017148433253169]],[[-0.0042113997042179,-0.074642136693001,0.056537572294474],[-0.018154621124268,-0.097390301525593,-0.044104691594839],[-0.095611020922661,0.14063714444637,0.19085119664669]],[[-0.032702919095755,-0.066370315849781,0.12449408322573],[0.068863242864609,0.028606126084924,-0.065192729234695],[-0.1298448741436,-0.026197969913483,-0.031134741380811]],[[0.042075134813786,-0.0064794621430337,0.032117530703545],[-0.060302890837193,0.058713801205158,-0.078700743615627],[0.11268386989832,0.032881196588278,0.12918396294117]],[[-0.049362145364285,-0.10414472967386,-0.070266962051392],[-0.12336149066687,-0.051115177571774,0.036561414599419],[0.13377133011818,-0.064149729907513,-0.072954602539539]],[[-0.035623922944069,0.049771286547184,-0.11557402461767],[-0.002723524114117,-0.054700624197721,-0.036683566868305],[-0.0086649702861905,0.05052712932229,-0.15026162564754]],[[-0.10674039274454,-0.022681213915348,0.016702434048057],[0.056041430681944,0.0024591786786914,0.0023911092430353],[-0.032605547457933,0.0063604521565139,0.083922490477562]],[[0.19358032941818,0.022764662280679,-0.091014891862869],[-0.00956264231354,0.18232193589211,-0.091726914048195],[-0.016254493966699,0.035909246653318,0.038426872342825]],[[-0.051209807395935,0.012717729434371,0.0094300014898181],[-0.018164351582527,0.16379863023758,-0.045117281377316],[-0.031139440834522,-0.071711041033268,0.062511257827282]],[[0.076886333525181,0.0401268042624,-0.0079980418086052],[-0.028054429218173,0.059475742280483,0.035750467330217],[-0.07351715862751,0.045431222766638,0.016081385314465]],[[0.095833659172058,0.0018377874512225,0.022557666525245],[-0.071586072444916,0.10908899456263,-0.054043237119913],[0.055580355226994,-0.14291588962078,0.047963209450245]],[[-0.012195283547044,0.054080683737993,0.098125323653221],[-0.071852162480354,-0.034038592129946,-0.012320838868618],[0.026626152917743,0.083001285791397,0.03537742421031]],[[-0.016364317387342,-0.10410945862532,-0.025001855567098],[0.17854161560535,-0.0076196626760066,-0.023531079292297],[-0.016794754192233,0.010116794146597,-0.0064841322600842]],[[-0.077001504600048,0.024478271603584,0.029155969619751],[-0.030923098325729,-0.0051488354802132,-0.0016224490245804],[-0.0067634372971952,0.019045203924179,0.016785031184554]],[[-0.009644920937717,0.010030028410256,0.002709060208872],[-0.011247474700212,0.013207596726716,0.046859722584486],[-0.028076913207769,-0.15351743996143,-0.049991264939308]],[[0.047566190361977,0.10535431653261,0.060202166438103],[0.033908627927303,-0.00016892429266591,0.019611738622189],[-0.006232192274183,0.019059833139181,0.054417673498392]],[[0.054164040833712,-0.079742886126041,-0.022899355739355],[0.031522836536169,-0.058508481830359,0.030219215899706],[0.062031663954258,-0.026364080607891,0.044449411332607]],[[-0.049473233520985,-0.056794799864292,-0.025103405117989],[0.060133844614029,-0.092105932533741,-0.094635978341103],[-0.0054474975913763,0.13771094381809,0.092865027487278]],[[-0.019632533192635,-0.026785038411617,0.0051042148843408],[-0.06462037563324,0.07377502322197,0.027328461408615],[-0.072105474770069,0.063238620758057,-0.043600965291262]],[[0.0039487131871283,-0.013017773628235,0.021250665187836],[0.082337014377117,0.049578834325075,-0.065845087170601],[-0.080765284597874,-0.013226635754108,-0.019913613796234]],[[-0.0063200443983078,0.014721666462719,0.071861706674099],[0.0024606452789158,0.034859582781792,0.072110421955585],[-0.063484810292721,-0.069041587412357,-0.014086263254285]],[[0.035402879118919,0.049236085265875,0.0054816026240587],[-0.0014404361136258,-0.036950994282961,0.07657728344202],[-0.040511380881071,-0.074712872505188,-0.19389137625694]],[[-0.082346342504025,0.053141500800848,0.096648633480072],[0.0071147670969367,0.028013695031404,0.0213324110955],[-0.0017828732961789,0.13096599280834,0.004470543935895]],[[0.063007138669491,-0.062793239951134,-0.039175920188427],[0.022399747744203,-0.00078257865970954,-0.029360411688685],[0.015507427975535,-0.0081335371360183,0.0097606517374516]],[[0.067862279713154,0.01399888843298,0.043801173567772],[-0.087406903505325,-0.021855194121599,-0.040052223950624],[0.016639010980725,-0.031880803406239,0.082342334091663]],[[0.0089809419587255,0.080009363591671,0.088095232844353],[-0.006796651519835,-0.061746459454298,-0.036336019635201],[-0.0058761383406818,0.10067036747932,0.031278427690268]],[[0.056823085993528,-0.071913123130798,0.056384555995464],[0.01350964512676,0.0099063226953149,0.0030405959114432],[-0.026992995291948,-0.05378357693553,-0.025459406897426]],[[0.031363010406494,0.0045788949355483,-0.042134802788496],[0.066307611763477,-0.0041320025920868,0.010629178024828],[-0.067347541451454,0.02978191524744,0.042395733296871]],[[-0.063620194792747,0.024956569075584,0.021202515810728],[-0.1256984770298,0.065780505537987,-0.032432723790407],[-0.19165033102036,-0.02930342592299,0.06004836037755]],[[0.10708800703287,0.010577884502709,-0.049612205475569],[-0.14867840707302,0.053012900054455,0.06569404900074],[-0.0056581068783998,-0.10711129754782,-0.050494614988565]],[[0.21088069677353,0.091266065835953,-0.079467557370663],[-0.03910056501627,0.031475178897381,-0.049863994121552],[-0.08544983714819,-0.079836264252663,0.028546091169119]],[[0.13018704950809,-0.02380682528019,-0.017653761431575],[-0.018600722774863,-0.014031928963959,-0.034658573567867],[0.090682551264763,0.068598203361034,-0.1325256228447]],[[-0.09195426851511,0.10408038645983,0.081910498440266],[0.11528059840202,0.00032093230402097,-0.018768116831779],[0.097637660801411,-0.050238009542227,0.056870181113482]]],[[[-0.079361259937286,0.02249738574028,0.0041545699350536],[0.033449202775955,0.059467859566212,0.084062404930592],[-0.082371070981026,0.090746395289898,-0.040159612894058]],[[0.078402683138847,0.035750150680542,0.014896173961461],[0.011997060850263,0.038503047078848,-0.088654160499573],[-0.024098217487335,-0.012533206492662,0.033158279955387]],[[0.035905230790377,-0.028236754238605,0.0039880173280835],[-0.033688794821501,-0.095071531832218,-0.07813324034214],[-0.15099243819714,-0.043033212423325,0.034896697849035]],[[-0.034383948892355,0.16400767862797,-0.16223177313805],[-0.29676893353462,0.24803297221661,-0.13531938195229],[0.0028633205220103,0.13825623691082,-0.056484673172235]],[[0.19632109999657,-0.14665265381336,0.10557196289301],[-0.016022967174649,-0.11927648633718,0.031830687075853],[0.0031439301092178,-0.0036144144833088,-0.01258297264576]],[[0.015296781435609,-0.13115911185741,-0.0030892218928784],[-0.064795218408108,0.10708399116993,0.014381286688149],[0.059165760874748,-0.0057365191169083,0.20265480875969]],[[-0.048705291002989,0.089186936616898,-0.064068824052811],[-0.061521958559752,0.092477060854435,-0.13679625093937],[-0.16804680228233,0.0037597103510052,0.046257689595222]],[[0.10785691440105,-0.070272877812386,0.13026778399944],[-0.016481837257743,-0.022866856306791,0.067141681909561],[0.021527402102947,-0.021388404071331,0.0057241669856012]],[[-0.017002232372761,0.042369183152914,-0.041155233979225],[0.0030852679628879,-0.038616124540567,0.048215582966805],[0.040305875241756,-0.04047167301178,0.0045800525695086]],[[-0.022339725866914,-0.090717412531376,-0.012337294407189],[0.07040361315012,-0.083556212484837,0.02333839982748],[0.23571932315826,-0.14862805604935,-0.10259065777063]],[[0.013981541618705,0.043767854571342,-0.052332833409309],[-0.20169606804848,-0.10813972353935,-0.004772107116878],[0.064257450401783,-0.077045559883118,-0.053164083510637]],[[0.059131268411875,-0.27812013030052,0.15170265734196],[0.024657271802425,-0.0099902534857392,0.15871722996235],[0.17233638465405,-0.20954132080078,0.010486774146557]],[[0.08906190097332,0.035097021609545,-0.088720113039017],[0.0038722944445908,0.12240831553936,-0.14190736413002],[-0.11302746087313,0.049143508076668,-0.070991471409798]],[[0.031504798680544,-0.14091707766056,0.044393017888069],[-0.011381639167666,-0.15789897739887,-0.0067067719064653],[-0.043704885989428,-0.19325579702854,0.15653583407402]],[[0.015098934061825,0.012178059667349,-0.067471094429493],[-0.14789898693562,0.12137577682734,-0.14176453649998],[0.016319124028087,0.076982632279396,-0.11100084334612]],[[0.016050742939115,-0.076744817197323,0.0025341014843434],[-0.0023730769753456,0.0083799632266164,-0.074774220585823],[-0.019359996542335,0.016463814303279,0.033572763204575]],[[-0.17364025115967,0.016775039955974,-0.0027385358698666],[0.079178750514984,-0.10309819877148,-0.004584594629705],[-0.032837845385075,-0.010044516064227,0.049874052405357]],[[0.092248320579529,-0.29644754528999,0.11613726615906],[-0.026032702997327,0.057892952114344,-0.016999827697873],[0.13627128303051,-0.26778319478035,0.074012964963913]],[[-0.075135707855225,0.050516407936811,-0.022440873086452],[0.036961309611797,-0.20400729775429,-0.05467826128006],[0.051477685570717,-0.025716112926602,0.12837010622025]],[[0.087692022323608,-0.0092738829553127,-0.011262317188084],[0.0047430186532438,0.14599819481373,0.01989958435297],[-0.088223554193974,0.12569807469845,-0.15386839210987]],[[0.011032781563699,0.050811301916838,0.09248835593462],[-0.06918179243803,-0.15791596472263,-0.027316965162754],[0.0089267613366246,-0.21198028326035,-0.0082696182653308]],[[0.080532304942608,-0.049924228340387,0.079262398183346],[-0.037267580628395,-0.1038720831275,0.10048744827509],[-0.039262905716896,0.051901992410421,0.059753585606813]],[[0.012216278351843,0.052373096346855,-0.11867347359657],[0.015430903062224,0.070413380861282,-0.13379262387753],[0.034992080181837,0.039198409765959,-0.14518503844738]],[[-0.0057865572161973,-0.11104244738817,0.077538013458252],[0.052091166377068,-0.10982249677181,0.16390128433704],[-0.025264017283916,0.054496925324202,0.086223483085632]],[[0.098419316112995,-0.22495597600937,0.040025290101767],[0.028268102556467,-0.25230801105499,0.14652052521706],[0.096016943454742,-0.099961370229721,-0.042671859264374]],[[0.019840585067868,-0.23061360418797,0.13993664085865],[0.059235725551844,-0.0061798011884093,-0.09993602335453],[0.0055983765050769,-0.14050441980362,0.08291782438755]],[[0.096598237752914,-0.07538116723299,0.060773514211178],[-0.051329795271158,0.069033943116665,-0.12122743576765],[-0.29413875937462,0.093798443675041,-0.051837891340256]],[[0.19373401999474,-0.1017897054553,0.14010663330555],[-0.071664616465569,-0.041066396981478,-0.046877834945917],[0.069929070770741,-0.08312426507473,-0.02306973002851]],[[0.13148064911366,-0.070768304169178,0.037584025412798],[0.021344861015677,0.044958934187889,0.026784906163812],[-0.16954208910465,0.027492012828588,-0.097942732274532]],[[0.10004901140928,-0.010075704194605,0.067256778478622],[-0.036803636699915,-0.19865959882736,0.032047476619482],[-0.037002258002758,0.067289263010025,-0.096938021481037]],[[-0.084776610136032,0.002728417981416,0.01262723095715],[0.10699840635061,0.0098062129691243,-0.14525383710861],[-0.12536355853081,0.071472302079201,0.035694696009159]],[[0.026540353894234,0.022463208064437,-0.15621533989906],[0.0087779657915235,0.055020544677973,-0.030536076053977],[-0.060739189386368,0.12169979512691,-0.016940880566835]],[[0.088482335209846,-0.22963458299637,0.16515968739986],[-0.11395882070065,-0.2555840909481,0.23464468121529],[0.040110126137733,-0.14137156307697,0.16319541633129]],[[0.10849972814322,-0.19719679653645,0.18892945349216],[-0.015682935714722,-0.12256465107203,0.058032996952534],[0.021962339058518,-0.1071393340826,0.060251802206039]],[[-0.070076741278172,0.089579939842224,-0.083482898771763],[-0.065842658281326,0.046486556529999,-0.0015804077265784],[0.083378292620182,-0.14584773778915,0.038400910794735]],[[-0.096935197710991,0.041427463293076,0.087066225707531],[0.16885308921337,-0.034546740353107,0.00014861981617287],[0.0014592894585803,-0.06136092543602,-0.030889296904206]],[[-0.063624180853367,-0.030214689671993,0.071137838065624],[0.013515044003725,-0.084857814013958,0.075524769723415],[0.037497255951166,0.031445287168026,-0.0023310335818678]],[[0.089716717600822,-0.088127166032791,-0.13992160558701],[-0.050473392009735,-0.11396565288305,-0.078516744077206],[-0.094779923558235,0.087444953620434,0.12922212481499]],[[-0.014878782443702,0.00068128312705085,0.097044356167316],[-0.066638678312302,-0.07445777207613,0.066055454313755],[-0.037945441901684,-0.0276566632092,-0.035895369946957]],[[0.14691254496574,-0.027220863848925,-0.00061076506972313],[-0.045610703527927,-0.18742604553699,-0.00022289266053122],[0.097265176475048,-0.010592852719128,0.03351741656661]],[[-0.14827905595303,0.093673750758171,-0.067643523216248],[-0.059118334203959,-0.055415529757738,-0.046851668506861],[-0.07710687816143,0.024176843464375,-0.012876562774181]],[[0.016243860125542,0.044947680085897,0.00090695399558172],[-0.054402638226748,-0.068683154881001,0.0091269379481673],[-0.069975949823856,-0.024247540161014,0.091691590845585]],[[0.085251204669476,-0.036266848444939,-0.069379441440105],[-0.039047211408615,-0.1149035692215,0.027437046170235],[-0.088033601641655,-0.15767630934715,-0.035176120698452]],[[0.010938310064375,0.041137952357531,0.021935004740953],[0.014605479314923,-0.026883823797107,-0.044247284531593],[-0.053453113883734,0.00098405894823372,0.042745910584927]],[[-0.03585697337985,-0.13426448404789,0.063059784471989],[-0.013849225826561,-0.16542112827301,-0.032475810497999],[-0.0096168648451567,-0.11236120015383,0.0053740534931421]],[[0.023285835981369,0.015405127778649,-0.051041044294834],[-0.096747323870659,-0.014087758027017,-0.07225526869297],[-0.08048003166914,-0.014045244082808,-0.116031691432]],[[0.010964936576784,0.085151486098766,0.010472429916263],[-0.058499217033386,0.0953673645854,-0.10038963705301],[-0.10995090007782,0.072568222880363,-0.061542738229036]],[[-0.18018306791782,0.094893135130405,-0.040864784270525],[-0.053826570510864,-0.14998152852058,0.10858546197414],[0.053914789110422,-0.17285098135471,0.14480867981911]],[[0.03134024143219,-0.16610173881054,0.19493255019188],[0.065635792911053,-0.096798971295357,0.19979120790958],[0.12272431701422,-0.17953327298164,0.054928325116634]],[[0.066558048129082,-0.023938799276948,0.0046311221085489],[0.0043312851339579,-0.055190227925777,-0.088796384632587],[-0.0057812165468931,-0.0046617891639471,0.056914940476418]],[[0.06541334092617,-0.0075923395343125,0.052930757403374],[-0.025970501825213,-0.1373111307621,-0.052239622920752],[-0.0044546611607075,-0.049158539623022,-0.049014005810022]],[[-0.080647274851799,0.091180540621281,-0.029000524431467],[-0.13465815782547,0.04256309196353,0.020895706489682],[-0.027522513642907,0.13637083768845,-0.014282328076661]],[[-0.038626287132502,0.038900695741177,0.02495071478188],[-0.060933407396078,-0.024930587038398,-0.076437808573246],[-0.043470788747072,0.11041422188282,-0.11551012843847]],[[-0.051051896065474,0.024792771786451,-0.025857083499432],[-0.0031516870949417,0.022525256499648,-0.01711742207408],[0.11227203160524,0.13137246668339,0.10701924562454]],[[-0.025564722716808,0.0526536218822,-0.015272043645382],[-0.045177210122347,-0.055225171148777,-0.0093641839921474],[-0.026796564459801,-0.14959216117859,-0.016307277604938]],[[-0.054195918142796,0.03566262498498,0.003266594838351],[0.090032033622265,-0.12023315578699,-0.10405102372169],[0.080396048724651,-0.052909888327122,0.092573210597038]],[[-0.024482205510139,0.062999680638313,0.055902272462845],[0.12555046379566,-0.013958942145109,0.047771610319614],[0.16454169154167,-0.12119346112013,0.1014199256897]],[[0.076594538986683,-0.083543382585049,-0.0062864478677511],[-0.019020752981305,0.052766591310501,-0.036829423159361],[-0.14688378572464,-0.10216943919659,0.072738535702229]],[[0.0081668114289641,0.038275323808193,0.02910222671926],[0.016217758879066,-0.0060147345066071,0.09503348171711],[-0.082519136369228,0.018833301961422,-0.13113825023174]],[[0.084657154977322,-0.048209596425295,0.11369203031063],[0.050578124821186,-0.076849907636642,0.10318975150585],[-0.041429113596678,-0.045250151306391,-0.0057769324630499]],[[0.16252756118774,-0.20620647072792,0.0011354349553585],[0.054628498852253,-0.29720211029053,0.095267415046692],[0.08086671680212,-0.21129794418812,0.066263921558857]],[[0.0083046220242977,0.12301049381495,-0.18271091580391],[-0.24811534583569,-0.12911753356457,-0.11428469419479],[0.089453756809235,0.033363964408636,0.10968537628651]],[[0.0039274515584111,-0.053931914269924,-0.16463157534599],[0.13403423130512,-0.18535785377026,0.08193176984787],[0.011662045493722,0.13945230841637,0.0094668297097087]],[[-0.059953991323709,0.12489350885153,0.010501768440008],[0.038880914449692,0.17672197520733,-0.23335660994053],[-0.010877002961934,-0.03018095344305,-0.00010117125930265]]],[[[-0.057962600141764,-0.031641151756048,0.097866579890251],[-0.035574905574322,-0.037973288446665,-0.025243500247598],[-0.021979866549373,-0.020735166966915,-0.045124739408493]],[[-0.014216277748346,-0.048567559570074,-0.023783892393112],[0.067980870604515,-0.063315451145172,0.060695070773363],[-0.097310401499271,0.10217805206776,0.020199665799737]],[[-0.021765587851405,-0.085078917443752,-0.0012583064381033],[-0.023174336180091,-0.17301952838898,-0.068596407771111],[-0.091252669692039,-0.17934142053127,-0.088792823255062]],[[-0.15563714504242,-0.11146374046803,-0.051994446665049],[-0.08640968054533,0.075167275965214,0.08818431198597],[0.095005549490452,0.14549474418163,-0.037873487919569]],[[0.022404462099075,0.013407754711807,-0.021793494001031],[-0.0017169179627672,-0.046682938933372,0.036856699734926],[0.011150628328323,0.024604531005025,0.010594442486763]],[[0.010051214136183,-0.019867239519954,-0.048065986484289],[-0.044498335570097,-0.042971093207598,0.0094616338610649],[0.029052581638098,0.059273529797792,0.043283849954605]],[[-0.067410632967949,-0.014388108626008,-0.098668210208416],[0.00084655068349093,-0.059538073837757,0.07873272895813],[0.0062276562675834,-0.02149660885334,0.072163805365562]],[[0.0080926418304443,-0.019973004236817,-0.016649028286338],[-0.089061662554741,0.04399997740984,0.10945829749107],[-0.032106462866068,-0.078556299209595,-0.013667677529156]],[[0.081763967871666,0.17193172872066,0.10951969772577],[-0.027842039242387,-0.054649740457535,-0.079947307705879],[-0.076281681656837,-0.11119436472654,-0.035845916718245]],[[-0.018129680305719,0.11434477567673,-0.022668898105621],[0.020446382462978,-0.078854560852051,0.080131508409977],[-0.037628371268511,0.08535361289978,0.071534305810928]],[[0.08930716663599,-0.0025422112084925,-0.01886628754437],[-0.13271832466125,-0.16894064843655,-0.044993236660957],[-0.059881485998631,-0.047472678124905,-0.053342152386904]],[[0.097418695688248,0.11854719370604,-0.021891064941883],[0.11844187229872,0.10542847216129,0.11854276061058],[-0.021820168942213,0.02817702665925,-0.022331368178129]],[[-0.11184722930193,-0.15429571270943,-0.10857553780079],[-0.12838743627071,-0.15529498457909,-0.029344273731112],[0.032247524708509,-0.051547609269619,0.040585994720459]],[[0.024669274687767,0.010737578384578,0.027704849839211],[-0.12802411615849,-0.077733539044857,0.095310613512993],[-0.028550315648317,-0.015640996396542,0.078105621039867]],[[-0.0170917827636,0.017793884500861,0.087015070021152],[0.019252356141806,0.083046458661556,-0.026444114744663],[0.0091207716614008,-0.042541440576315,-0.12662553787231]],[[0.031968265771866,-0.029497431591153,-0.0016197764780372],[-0.0061628143303096,-0.033757142722607,0.037358827888966],[-0.0054072705097497,0.039588045328856,0.022367123514414]],[[-0.0085948966443539,0.015651229768991,-0.071258798241615],[-0.016638917848468,0.057620510458946,-0.09237515181303],[0.048859935253859,-0.054067563265562,-0.0081298379227519]],[[0.067413426935673,0.022082133218646,-0.0048014516942203],[-0.0147297186777,-0.082444421947002,-0.044861745089293],[-0.075466722249985,-0.11574808508158,-0.041855357587337]],[[-0.15442776679993,0.06065472215414,-0.11146374046803],[0.010818501003087,-0.08390673995018,-0.007206289563328],[-0.028789214789867,0.05469361692667,0.031107507646084]],[[0.0075156837701797,-0.069830276072025,0.018315317109227],[0.039123971015215,0.18327188491821,0.052489269524813],[-0.060585245490074,0.078648880124092,0.015737112611532]],[[-0.059640195220709,-0.031633548438549,0.020747831091285],[-0.029789680615067,0.0015042135491967,-0.064641587436199],[0.038604740053415,0.059847395867109,0.027991894632578]],[[-0.065801732242107,-0.051971901208162,-0.14003564417362],[-0.045574203133583,-0.09373751282692,-0.032243940979242],[0.0078954277560115,-0.011169379577041,-0.013072652742267]],[[-0.034003902226686,0.036999676376581,-0.069303661584854],[-0.020067747682333,0.010901039466262,0.06659808754921],[0.086468644440174,-0.05575817450881,0.08270151168108]],[[0.001606271835044,0.041507165879011,-0.018320582807064],[-0.17030170559883,-0.31124198436737,-0.010921997949481],[0.022027505561709,0.05464443564415,0.0030677632894367]],[[-0.024845147505403,0.065132789313793,0.025440912693739],[-0.01561251282692,-0.059233460575342,-0.016509994864464],[0.025720976293087,-0.070702940225601,0.015193786472082]],[[-0.17630462348461,0.0039874813519418,0.044233500957489],[-0.023363891988993,-0.035768117755651,-0.06485216319561],[-0.10520598292351,0.035040404647589,0.011214857921004]],[[0.025999182835221,0.0026164723094553,-0.00050204119179398],[0.043348137289286,0.056102763861418,0.064241297543049],[0.068074055016041,0.048382394015789,-0.027279993519187]],[[0.044674824923277,0.074385285377502,0.029308235272765],[-0.010462966747582,0.017151134088635,0.047602470964193],[-0.022425474599004,-0.017665075138211,0.020642263814807]],[[-0.083002351224422,-0.077827163040638,-0.12141464650631],[-0.10101767629385,-0.1538260281086,-0.00022942139185034],[-0.015091232024133,-0.040481764823198,0.014627832919359]],[[-0.025839721783996,-0.13188491761684,-0.034137811511755],[-0.01923299767077,0.017937919124961,0.014946274459362],[0.079085662961006,0.0078584859147668,0.080424763262272]],[[0.076322130858898,0.046506244689226,-0.13011966645718],[0.0059002139605582,0.034846860915422,0.068962231278419],[-0.031846068799496,0.0054917531087995,0.09957666695118]],[[-0.043810907751322,0.017702858895063,0.035655576735735],[-0.070643320679665,-0.084525689482689,-0.013547052629292],[-0.013339673168957,0.10554403066635,0.051341231912374]],[[0.025722734630108,-0.0030944277532399,-0.018593199551105],[-0.024433283135295,-0.013695511035621,-0.10513488948345],[0.092122428119183,-0.032130382955074,-0.022903965786099]],[[0.086616910994053,-0.17218913137913,0.049327820539474],[-0.15353167057037,0.015312570147216,0.030710490420461],[-0.093548268079758,0.027160091325641,0.042269449681044]],[[-0.082397513091564,-0.073233000934124,-0.066103361546993],[-0.019832439720631,-0.10326708853245,0.044462144374847],[0.11834578216076,0.031272795051336,0.03029271773994]],[[-0.038914725184441,0.1084543839097,0.0079237222671509],[0.1109257414937,0.098387278616428,0.0028642923571169],[-0.037997525185347,0.01914575509727,-0.033290877938271]],[[-0.034181855618954,-0.18452453613281,-0.122817248106],[0.01886129938066,0.064148709177971,0.059240952134132],[0.10842523723841,-0.032860103994608,-0.047067631036043]],[[0.043187376111746,-0.10294509679079,0.07511880248785],[0.02615587040782,-0.040180217474699,-0.032507371157408],[-0.095480851829052,-0.078335776925087,0.014508152380586]],[[-0.064186818897724,0.046844877302647,-0.0087134074419737],[0.0920205488801,0.051012244075537,-0.0067525063641369],[-0.044242929667234,0.026841018348932,-0.0011379092466086]],[[0.033601593226194,-0.1034636721015,-0.10361690074205],[0.011095836758614,-0.043717876076698,0.036921158432961],[-0.04631619900465,-0.021727565675974,0.088866695761681]],[[0.058634579181671,0.10434322059155,-0.081227377057076],[-0.037054132670164,-0.16423776745796,-0.026363290846348],[0.16561411321163,0.13880035281181,0.026198921725154]],[[-0.0068868971429765,0.0074263541027904,0.031631384044886],[-0.11836878955364,0.015113326720893,-0.0080347442999482],[0.045110780745745,-0.14322620630264,-0.056295722723007]],[[0.027430988848209,0.012606348842382,0.063992500305176],[-0.051945336163044,-0.016973493620753,-0.11574175953865],[-0.016651526093483,-0.01246936339885,0.057555861771107]],[[-0.078924894332886,-0.1013875156641,-0.093833148479462],[0.031746573746204,0.016442190855742,0.053579453378916],[0.025389464572072,0.11381420493126,0.041869431734085]],[[-0.050378452986479,0.024998238310218,-0.033570069819689],[-0.024317810311913,-0.12420386821032,0.020195668563247],[0.015325888060033,0.063298858702183,-0.0022593792527914]],[[-0.0049924734048545,-0.0038740853779018,0.037476029247046],[-0.015352320857346,-0.080612234771252,-0.061245147138834],[-0.0050642443820834,0.082049034535885,-0.10912504792213]],[[-0.17412094771862,-0.15838158130646,-0.029977731406689],[-0.093098729848862,-0.147556245327,-0.10003506392241],[0.032820753753185,-0.13224942982197,-0.023117387667298]],[[0.0071176085621119,0.0064182318747044,-0.009673997759819],[0.0020561153069139,0.05819945037365,-0.009597803466022],[0.05447006598115,0.0057044792920351,0.062430091202259]],[[0.013935648836195,0.021343363448977,-0.0044095809571445],[0.0063392901793122,-0.043685618788004,-0.071266993880272],[0.0014973033685237,0.041038129478693,-0.00017453724285588]],[[-0.03773270919919,-0.021439591422677,0.022525167092681],[0.028410013765097,-0.074733473360538,0.0059457500465214],[0.13369461894035,-0.03572441637516,-0.048180878162384]],[[0.031365152448416,-0.057769030332565,-0.027649510651827],[-0.024835212156177,-0.036555305123329,-0.097915820777416],[-0.037536259740591,0.0019049374386668,0.00029058795189485]],[[0.09224171936512,-0.0079694790765643,-0.035258088260889],[0.064160414040089,0.019805258139968,-0.04131992161274],[0.013667911291122,-0.0023922049440444,-0.03389523178339]],[[-0.048078555613756,-0.027962880209088,-0.084975518286228],[-0.067572444677353,-0.0038210980128497,-0.085858419537544],[-0.079740956425667,0.12208269536495,0.016907980665565]],[[-0.050857808440924,-0.11860757321119,-0.029268389567733],[0.0092820124700665,-0.12811014056206,-0.092433243989944],[-0.017929691821337,-0.092439904808998,0.063432395458221]],[[-0.034420017153025,0.047712370753288,-0.016519719734788],[-0.012584947049618,-0.091643244028091,0.10909824818373],[0.16795229911804,0.0028848110232502,0.049277149140835]],[[-0.026144538074732,-0.084146611392498,-0.0081471921876073],[0.0061675114557147,0.11499840021133,-0.10784906893969],[0.019314929842949,0.0049303863197565,0.070172913372517]],[[0.016939798370004,0.19064198434353,0.1213880777359],[0.0044377697631717,0.08143450319767,0.11429312080145],[0.011630831286311,-0.13108491897583,0.0074219722300768]],[[0.091172866523266,0.0014438338112086,0.0095297154039145],[-0.065062202513218,0.0059118419885635,-0.030974198132753],[-0.012361535802484,-0.065675102174282,-0.018531171604991]],[[0.040128231048584,0.0070486781187356,-0.012316535227001],[-0.12110329419374,0.060226812958717,0.029795579612255],[0.082669697701931,-0.06156537681818,-0.052111804485321]],[[0.033412478864193,0.046083398163319,-0.0062966020777822],[-0.10377751290798,-0.034751642495394,-0.013336151838303],[-0.078297436237335,-0.069514997303486,0.11261763423681]],[[0.039109073579311,-0.0083699701353908,0.0010362024186179],[0.0076672458089888,0.028886159881949,-0.038110785186291],[0.018470713868737,-0.043307788670063,0.0082659469917417]],[[-0.0054517220705748,-0.019373834133148,-0.0063913268968463],[-0.024803921580315,0.020487289875746,0.097522653639317],[-0.041398197412491,0.068506136536598,0.018403938040137]],[[0.025856006890535,0.063142888247967,-0.028909604996443],[0.056849543005228,0.049341563135386,-0.045940086245537],[0.073328301310539,-0.047872744500637,0.057517986744642]],[[-0.019762117415667,0.10120809823275,0.11090433597565],[0.0092236017808318,-0.076157048344612,0.022582890465856],[-0.0096836471930146,0.012232406996191,-0.16516324877739]]],[[[-0.026468127965927,0.035059805959463,0.024080900475383],[-0.0062633333727717,-0.05003572627902,-0.066408067941666],[-0.089421570301056,-0.071509316563606,0.11503369361162]],[[-0.11770663410425,0.042373970150948,-0.04879567027092],[-0.07358692586422,0.027894124388695,-0.030231790617108],[-0.059175699949265,0.025115007534623,0.036089707165956]],[[-0.0091221434995532,-0.053433131426573,-0.055722959339619],[-0.069654524326324,0.0012599155306816,0.029597843065858],[0.030285377055407,0.040715526789427,-0.049691386520863]],[[0.054952431470156,-0.010355305857956,-0.0023183196317405],[-0.045435309410095,-0.10090094804764,-0.007475626654923],[-0.092380233108997,-0.17648243904114,-0.118383012712]],[[-0.0072170994244516,0.088765196502209,-0.074272215366364],[0.047469198703766,0.080110497772694,-0.09469997882843],[-0.073656477034092,0.0081295901909471,-0.084531329572201]],[[-0.13987717032433,-0.12998551130295,0.080125212669373],[-0.15508815646172,-0.18223161995411,0.10361088812351],[-0.043175492435694,-0.15768368542194,-0.070709638297558]],[[0.0075218705460429,-0.03751040995121,-0.020712135359645],[-0.10362784564495,-0.10024216026068,-0.074499271810055],[-0.011893624439836,-0.10570332407951,-0.22246433794498]],[[-0.14035804569721,-0.00580985378474,-0.040799468755722],[-0.086605131626129,-0.13065028190613,-0.021161315962672],[0.14044040441513,-0.078265003859997,-0.08462143689394]],[[-0.044528231024742,0.096147753298283,-0.0025473774876446],[0.065306268632412,-0.023185284808278,-0.015211865305901],[-0.12566594779491,-0.047850001603365,0.078971840441227]],[[-0.081595338881016,-0.14935024082661,-0.033968094736338],[-0.026461642235518,-0.14463821053505,-0.058025930076838],[-0.20781365036964,-0.097470290958881,-0.045248433947563]],[[-0.06138851493597,-0.062656611204147,-0.019232036545873],[0.080577358603477,-0.085378415882587,0.064853176474571],[-0.16562755405903,-0.059172887355089,-0.024326600134373]],[[-0.19294466078281,0.0068506160750985,0.012415596283972],[-0.081413544714451,-0.11904064565897,0.044335916638374],[-0.067475989460945,-0.079598382115364,0.005105756688863]],[[-0.0077493051066995,-0.063965730369091,-0.091420598328114],[-0.051758788526058,0.0046493359841406,-0.070601738989353],[-0.15392147004604,-0.0039330678991973,-0.089485555887222]],[[0.031397510319948,-0.1589736789465,-0.12346498668194],[-0.027998592704535,-0.086105145514011,-0.076014578342438],[0.067001648247242,0.1437710672617,0.070032633841038]],[[-0.1037420257926,-0.13123323023319,-0.01015199162066],[0.1270397156477,-0.16298219561577,-0.0042706951498985],[-0.012258248403668,0.015267261303961,-0.065598353743553]],[[-0.044472571462393,0.033808261156082,-0.029879994690418],[-0.014130402356386,-0.031568996608257,0.023562150076032],[-0.018442509695888,-0.061328187584877,-0.069527260959148]],[[-0.05380617082119,-0.13058097660542,-0.03545131906867],[-0.055298179388046,0.0014135120436549,0.022672262042761],[-0.22664365172386,-0.01867943815887,-0.071810357272625]],[[-0.15064120292664,0.02107117138803,0.015667637810111],[0.013486493378878,-0.098560877144337,0.064342513680458],[-0.097399555146694,0.016316527500749,0.065089352428913]],[[0.006607131101191,-0.093594960868359,-0.049832429736853],[-0.082226276397705,0.029196765273809,-0.029861649498343],[-0.04327954351902,0.069760151207447,0.059152200818062]],[[0.10129780322313,-0.0026403802912682,0.071102976799011],[0.058316502720118,0.050509493798018,0.017937250435352],[0.16591858863831,0.01905258372426,0.0059064733795822]],[[-0.0083967363461852,-0.14754717051983,0.15823289752007],[-0.046413447707891,-0.045129716396332,-0.023231092840433],[-0.19876462221146,0.12491694092751,-0.01401680894196]],[[-0.01474928483367,0.026315269991755,-0.011353977024555],[-0.089870274066925,0.044328756630421,0.025885716080666],[-0.13825295865536,-0.12836389243603,0.043160054832697]],[[0.0005314945592545,0.057665020227432,-0.11158018559217],[-0.12546502053738,-0.02055161818862,-0.046646527945995],[-0.08204972743988,-0.0044033778831363,-0.017174677923322]],[[0.012702642939985,-0.018526826053858,-0.1107555180788],[-0.13098095357418,-0.13659608364105,0.006822797935456],[0.091337390244007,-0.05765838176012,0.029222935438156]],[[0.019176879897714,-0.018969036638737,0.12906980514526],[-0.086142383515835,-0.056070070713758,-0.049099497497082],[0.064821138978004,0.015086912550032,-0.18046827614307]],[[0.014604319818318,-0.032703094184399,0.022348444908857],[-0.1481541544199,0.087948925793171,0.037268705666065],[-0.23877002298832,-0.0018663572845981,0.090677745640278]],[[-0.055764835327864,-0.036479823291302,-0.17628811299801],[-0.16842931509018,-0.087593421339989,-0.12454811483622],[0.058601334691048,-0.066978231072426,-0.018954388797283]],[[-0.047429103404284,-0.011663189157844,0.012738460674882],[0.022435147315264,-0.096416927874088,-0.015167913399637],[-0.0017110714688897,-0.057687763124704,-0.095856092870235]],[[-0.08083288371563,-0.092497982084751,-0.038708869367838],[-0.12519517540932,-0.12669438123703,-0.079386904835701],[-0.023773469030857,-0.01399456243962,-0.15199810266495]],[[0.066973470151424,-0.11515672504902,0.040319137275219],[0.12802509963512,0.14189855754375,0.0051723700016737],[0.076768562197685,-0.051413618028164,-0.036126393824816]],[[-0.0011688995873556,-0.058540429919958,-0.12489505857229],[-0.016325335949659,-0.10737890005112,-0.0096190320327878],[-0.089237809181213,-0.040133941918612,-0.10494118928909]],[[0.078181408345699,-0.022104233503342,0.018107550218701],[-0.059218272566795,-0.080493077635765,0.064247287809849],[0.10935238003731,0.036867260932922,0.036727882921696]],[[-0.091470956802368,-0.081212878227234,0.01884662732482],[-0.08626164495945,0.077710270881653,-0.13602763414383],[-0.076620809733868,0.010898348875344,-0.10146920382977]],[[-0.083386279642582,0.018373940140009,-0.1266235858202],[-0.11530840396881,0.049843233078718,-0.050268165767193],[-0.11366745084524,0.12640397250652,0.076344855129719]],[[0.00064600381301716,-0.087449967861176,0.1194197461009],[-0.038497764617205,-0.034668326377869,0.083081990480423],[0.092549413442612,-0.097910061478615,0.057409469038248]],[[-0.015118799172342,0.0086122658103704,-0.0531395226717],[-0.043995406478643,-0.15491345524788,-0.16231569647789],[-0.091857105493546,-0.1226347759366,-0.095628924667835]],[[-0.0046782325953245,-0.087224945425987,-0.077055692672729],[-0.013305808417499,-0.055385269224644,-0.096827402710915],[-0.095846630632877,-0.10967762023211,-0.10416042804718]],[[0.039984442293644,-0.15960764884949,-0.045147232711315],[-0.11609098315239,-0.049563363194466,-0.0041598593816161],[0.056920785456896,0.10126032680273,-0.22102330625057]],[[0.031639870256186,-0.11777136474848,0.14031319320202],[-0.2045221477747,-0.055046282708645,-0.057257454842329],[-0.079998753964901,-0.035963390022516,0.2163103222847]],[[0.019758954644203,-0.02403187379241,-0.033191103488207],[-0.044086221605539,-0.051379412412643,-0.020492620766163],[-0.032330114394426,-0.067810244858265,-0.016129603609443]],[[-0.15613302588463,-0.073005676269531,-0.05386919900775],[0.051788311451674,0.035283952951431,0.12127803266048],[-0.087436772882938,-0.060803052037954,0.010846908204257]],[[-0.1087522059679,-0.141800314188,0.0016141664236784],[-0.0047293156385422,-0.18287605047226,-0.03020565956831],[-0.077090546488762,-0.10555412620306,-0.26024404168129]],[[-0.14282387495041,-0.18366295099258,-0.015688868239522],[-0.041800308972597,-0.0086901094764471,-0.019538782536983],[-0.057535100728273,-0.056147754192352,-0.051299408078194]],[[0.019449301064014,-0.068432785570621,0.030487613752484],[-0.030080581083894,-0.091123551130295,-0.012467469088733],[0.051815714687109,-0.02071649953723,0.094687454402447]],[[-0.071315318346024,-0.035365235060453,-0.098479188978672],[-0.011191948316991,-0.16809551417828,-0.016286032274365],[-0.0029119655955583,-0.017463171854615,-0.0029452887829393]],[[-0.16540867090225,-0.12250786274672,-0.086683094501495],[0.0023867255076766,-0.120490655303,0.0010907186660916],[-0.06951679289341,-0.012799330055714,0.014721976593137]],[[0.14397478103638,-0.082873307168484,-0.079183422029018],[-0.076996400952339,-0.24219685792923,-0.10642544925213],[-0.018021762371063,-0.076858446002007,0.034044504165649]],[[-0.033012591302395,-0.024152999743819,-0.013099906034768],[-0.056482512503862,0.044481638818979,-0.072921141982079],[-0.042813032865524,-0.11628349125385,-0.15931965410709]],[[-0.025563936680555,0.062849491834641,-0.014443540945649],[-0.037667743861675,-0.11585631221533,-0.025796229019761],[0.018934786319733,0.071824848651886,-0.031637951731682]],[[-0.041872601956129,0.019991394132376,0.0057321614585817],[-0.091950684785843,-0.085188068449497,-0.024847738444805],[-0.032981928437948,-0.11468756198883,-0.065916001796722]],[[-0.04660626500845,-0.12238331884146,-0.034715514630079],[-0.14063580334187,-0.1485201716423,0.013771574012935],[-0.018186526373029,-0.14101631939411,-0.10812109708786]],[[-0.021476600319147,-0.094106592237949,-0.043837293982506],[-0.11418509483337,-0.15658470988274,-0.098328717052937],[0.037311058491468,-0.10125089436769,0.016528896987438]],[[0.020751314237714,-0.071367733180523,0.031946301460266],[-0.14276044070721,0.010687543079257,-0.0049383845180273],[0.12095043808222,-0.0400635227561,-0.046541094779968]],[[-0.08582528680563,-0.070677578449249,-0.10848230868578],[-0.025218771770597,0.056082524359226,0.041851609945297],[-0.11623775959015,0.082836076617241,-0.0080768801271915]],[[0.047159530222416,-0.039151325821877,-0.038244143128395],[-0.091511972248554,-0.13556988537312,-0.061818812042475],[-0.033137869089842,-0.17480838298798,0.022045265883207]],[[-0.17594854533672,0.032224707305431,-0.22990040481091],[-0.00056487403344363,-0.016020053997636,-0.24666826426983],[-0.047427993267775,0.045725233852863,-0.085220322012901]],[[0.11108347028494,0.073456943035126,-0.053793113678694],[0.17878307402134,0.023824453353882,0.070059634745121],[0.16399116814137,-0.10618230700493,0.033238831907511]],[[0.078240476548672,0.00624616490677,-0.11145436018705],[-0.12592789530754,-0.062239348888397,-0.013337540440261],[-0.30629178881645,-0.012115164659917,0.037852857261896]],[[-0.082150310277939,-0.098049573600292,-0.14674048125744],[0.051778681576252,-0.048413440585136,-0.014679756015539],[-0.097448736429214,0.02915507927537,-0.16871859133244]],[[0.012400658801198,0.020156746730208,-0.091310851275921],[-0.10055288672447,-0.067121304571629,-0.041519179940224],[-0.013096246868372,0.086485527455807,0.090835452079773]],[[0.0039981775917113,-0.056720469146967,0.052273605018854],[-0.061458148062229,0.0065646581351757,-0.030162965878844],[0.04254949837923,-0.025924295186996,-0.17609639465809]],[[-0.028542757034302,-0.1316773891449,-0.059758186340332],[-0.064410552382469,0.059586875140667,0.00070302526000887],[-0.091061562299728,-0.094734206795692,0.014079087413847]],[[-0.09492365270853,0.09959252178669,0.024019135162234],[-0.13715867698193,-0.059714004397392,-0.035503000020981],[-0.0060676750726998,0.021736057475209,-0.043203853070736]],[[-0.031410668045282,-0.013437635265291,-0.058239746838808],[0.013079814612865,-0.0004475568421185,0.029945777729154],[0.094689108431339,0.083608292043209,-0.022522509098053]]],[[[-0.11171842366457,0.053917951881886,-0.0060672760009766],[0.0098013961687684,-0.034767910838127,-0.0067381314001977],[0.11825624853373,0.012087657116354,-0.067601472139359]],[[-0.087560288608074,0.079906776547432,0.10170688480139],[0.17132893204689,-0.0076804058626294,-0.082367561757565],[0.12413332611322,0.11476004123688,-0.15773491561413]],[[-0.085043460130692,-0.0041630752384663,-0.0042658415623009],[0.054321616888046,-0.038060963153839,-0.10762111842632],[-0.14259359240532,-0.12827004492283,0.013169637881219]],[[0.005182184278965,-0.017587402835488,0.068463653326035],[-0.0046835918910801,-0.092027850449085,0.010564533993602],[-0.014115129597485,-0.053115718066692,0.10542599856853]],[[-0.041206706315279,-0.064693465828896,-0.069384336471558],[-0.011748239398003,-0.034200455993414,0.10103898495436],[-0.0068164276890457,-0.071403689682484,0.053285077214241]],[[0.062719516456127,0.062603503465652,0.0096023511141539],[-0.037837415933609,-0.090031065046787,0.037498991936445],[-0.057767599821091,0.0356060937047,0.0013132047606632]],[[-0.089768305420876,0.062715508043766,-0.10550393909216],[-0.012413717806339,-0.003692987607792,0.044355068355799],[-0.0015464028110728,0.00065715576056391,0.022480892017484]],[[0.054445870220661,-0.0025160405784845,0.0089467270299792],[-0.0026971383485943,-0.064635649323463,-0.085042983293533],[0.11022160947323,0.034631039947271,-0.029513770714402]],[[-0.15609784424305,-0.044162031263113,-0.099370516836643],[0.068697884678841,-0.086587563157082,0.0063857492059469],[0.15641918778419,0.062370896339417,0.014700148254633]],[[-0.042703792452812,-0.021952982991934,-0.012874397449195],[-0.0062780878506601,0.070953615009785,-0.052933666855097],[0.074869193136692,-0.067518278956413,-0.0092678908258677]],[[0.0062665431760252,-0.035691719502211,-0.0024291954468936],[0.0071701477281749,-0.0062259896658361,0.04695351421833],[0.012391513213515,-0.040826890617609,0.014230517670512]],[[0.031797248870134,0.022881828248501,0.077948324382305],[0.05129349604249,0.08306135982275,0.10459746420383],[-0.026816103607416,0.040793526917696,0.027190793305635]],[[0.065155252814293,-0.077136665582657,0.045006327331066],[-0.033240050077438,-0.10471652448177,0.031945738941431],[0.038695566356182,0.013133075088263,-0.043326705694199]],[[-0.10627752542496,0.062413088977337,-0.0076513169333339],[-0.0020820279605687,0.042354561388493,0.011549586430192],[-0.0055506327189505,-0.041247759014368,-0.040492489933968]],[[0.0097805103287101,-0.0027878244873136,-0.041211105883121],[-0.093103937804699,-0.051249407231808,0.12434975802898],[0.10678288340569,-0.017501441761851,-0.048096615821123]],[[0.011861306615174,0.099023185670376,-0.082078732550144],[-0.1776260882616,-0.02803067676723,0.008717211894691],[0.027086064219475,-0.066958375275135,0.068928025662899]],[[-0.11143211275339,0.052924498915672,-0.012206924147904],[0.1380800306797,-0.11086625605822,-0.10050742328167],[0.07852753251791,0.040759854018688,0.069877691566944]],[[-0.062988109886646,0.13768814504147,-0.12999083101749],[0.1157162040472,-0.0043749483302236,0.013539079576731],[-0.025449901819229,-0.018573801964521,0.0021991720423102]],[[-0.0042019914835691,-0.076934061944485,-0.031981881707907],[-0.070436872541904,0.0053663072176278,0.048004597425461],[0.088939920067787,0.094316422939301,-0.1047789528966]],[[0.12368986010551,0.060193963348866,0.081095978617668],[0.075795382261276,0.070271976292133,0.10826030373573],[-0.0047432817518711,0.016708441078663,-0.017311355099082]],[[-0.011476416140795,-0.012523875571787,-0.065405212342739],[-0.094353504478931,-0.16084243357182,-0.1861763894558],[0.069082736968994,-0.15893466770649,0.025019407272339]],[[0.028238639235497,0.11573094129562,0.17981784045696],[-0.11831148713827,-0.052640970796347,-0.13093847036362],[0.0053704897873104,-0.056887827813625,-0.09715761244297]],[[0.047462608665228,-0.13555340468884,0.072161436080933],[-0.039595182985067,0.075998477637768,0.017902797088027],[0.043169844895601,-0.044244643300772,0.075140051543713]],[[-0.083286166191101,-0.031567417085171,-0.082975916564465],[-0.015200450085104,-0.050475496798754,0.06729532033205],[-0.027073094621301,-0.077601432800293,-0.030044220387936]],[[0.061729148030281,0.11112794280052,-0.13050210475922],[0.20273174345493,0.062108676880598,-0.010779468342662],[-0.036752220243216,0.001482491963543,-0.15117561817169]],[[-0.021825710311532,0.030024079605937,-0.11988673359156],[0.024624884128571,-0.0040966789238155,-0.10246398299932],[0.060997057706118,-0.04500899091363,-0.090680070221424]],[[-0.11696571856737,-0.04939803481102,-0.035936124622822],[0.056550014764071,-0.087551675736904,0.026769364252687],[0.075786136090755,0.025602161884308,-0.053826164454222]],[[-0.081012472510338,0.019576324149966,-0.057719714939594],[0.010196819901466,-0.09081644564867,0.015227820724249],[-0.059437613934278,0.074303723871708,-0.089635543525219]],[[0.067067630589008,0.0012835948728025,0.028568556532264],[0.0094983400776982,-0.027299575507641,-0.020175993442535],[-0.062397006899118,-0.033626832067966,0.073099412024021]],[[0.0058489390648901,0.054969564080238,-0.20143458247185],[0.10088686645031,0.039381995797157,0.0042760614305735],[-0.038345173001289,0.012798580341041,-0.1667695492506]],[[0.025068981572986,-0.021513100713491,0.079965606331825],[-0.12812361121178,0.076938472688198,-0.02270371094346],[0.18050581216812,0.092418417334557,-0.06768523901701]],[[0.022912591695786,-0.072410583496094,-0.037820909172297],[-0.080358922481537,-0.04600565135479,0.029542280361056],[-0.03751927614212,-0.029454227536917,-0.0020399529021233]],[[0.004042630083859,0.002559790154919,-0.11472909897566],[0.0083759184926748,-0.18255876004696,0.034230284392834],[-0.067720271646976,0.038761895149946,-0.025257816538215]],[[0.072160296142101,0.090799063444138,0.0057333237491548],[0.020985163748264,0.12022466957569,-0.097485966980457],[0.065095514059067,-0.042019538581371,0.033618915826082]],[[-0.023391887545586,-0.012502452358603,0.026913810521364],[0.0062990537844598,0.0062264995649457,-0.082714304327965],[-0.080027990043163,-0.020661428570747,-0.068020768463612]],[[0.039195671677589,-0.00091483845608309,-0.018215708434582],[-0.11745084822178,0.025118699297309,-0.050216108560562],[0.095426298677921,0.066762186586857,0.018739288672805]],[[0.0077040228061378,-0.065420225262642,-0.10501626133919],[-0.059636428952217,-0.13178433477879,0.11567078530788],[-0.019603444263339,0.082497954368591,0.14892181754112]],[[-0.10566506534815,-0.06996077299118,-0.05564920604229],[-0.090216301381588,0.023920517414808,0.086248509585857],[0.080398343503475,-0.058697663247585,0.021828068420291]],[[-0.032188694924116,-0.15328601002693,0.037373565137386],[0.074077427387238,0.005616472568363,-0.021828843280673],[-0.16113251447678,-0.085055403411388,-0.092357568442822]],[[0.0019374734256417,-0.030907468870282,0.0009884238243103],[0.00040154144517146,0.046249393373728,0.074116908013821],[0.027901643887162,-0.064047366380692,-0.054328631609678]],[[-0.044157259166241,-0.06416179984808,0.0036989036016166],[-0.084442131221294,0.033768255263567,-0.057428769767284],[0.0018459754064679,-0.072768315672874,-0.04316683858633]],[[0.07427604496479,0.041680976748466,0.0090967221185565],[-0.16632409393787,0.02070640027523,0.022925658151507],[0.039773877710104,-0.26019072532654,0.10646954923868]],[[0.10589435696602,-0.15718355774879,-0.071015141904354],[0.1473983079195,0.0064561832696199,-0.0078979237005115],[-0.04008362069726,0.11561343818903,-0.1091255620122]],[[0.025774737820029,0.040606696158648,-0.012952675111592],[0.054727699607611,0.03990188613534,0.046337094157934],[-0.02493891119957,-0.061315409839153,-0.11685308814049]],[[-0.018077459186316,-0.034084673970938,0.062599524855614],[0.071811065077782,-0.035589952021837,-0.015869818627834],[-0.072379268705845,-0.077659733593464,-0.049199141561985]],[[0.020013902336359,0.0078252479434013,-0.12564355134964],[-0.015476911328733,-0.075352624058723,0.010668091475964],[-0.094550862908363,-0.11629331856966,0.0099740009754896]],[[0.024959042668343,-0.055647775530815,0.13342943787575],[0.13780754804611,-0.048300705850124,-0.074844278395176],[0.0062462165951729,-0.11191327869892,0.062620513141155]],[[0.042534310370684,-0.016146384179592,-0.010273606516421],[-0.11835224181414,-0.040438365191221,-0.0185437630862],[-0.095036044716835,-0.036541473120451,0.094368368387222]],[[0.052383910864592,-0.023747099563479,0.084747336804867],[0.028995040804148,0.040937393903732,-0.027401717379689],[0.0075113847851753,-0.079975239932537,-0.032142776995897]],[[-0.059336684644222,0.040674705058336,-0.034447848796844],[0.054655220359564,-0.019185369834304,-0.065448522567749],[0.079025991261005,0.1049280166626,0.093096867203712]],[[-0.021415892988443,-0.040336810052395,0.060904875397682],[0.069926708936691,-0.08533751219511,0.070011131465435],[-0.048373609781265,0.081390604376793,-0.016558071598411]],[[0.018552642315626,-0.042343448847532,0.060159683227539],[-0.089888848364353,0.12303198128939,0.0004302425077185],[0.005806555505842,0.024450765922666,0.1100018620491]],[[0.031244866549969,0.072689548134804,-0.093407273292542],[-0.088316641747952,-0.18637745082378,-0.19646281003952],[0.045436505228281,0.10485537350178,-0.032630834728479]],[[0.05000388994813,-0.010493746958673,-0.0029306157957762],[-0.053462814539671,-0.064087189733982,0.0062315012328327],[0.036124151200056,-0.0089851738885045,-0.013752470724285]],[[-0.12596864998341,0.089080348610878,-0.027611425146461],[-0.048137255012989,-0.051187384873629,-0.11083690822124],[-0.1433971375227,0.037914291024208,-0.068813934922218]],[[0.014578176662326,-0.035054698586464,-0.049458336085081],[-0.047849372029305,0.16221582889557,0.11233239620924],[0.072087250649929,-0.020730581134558,-0.024801198393106]],[[0.13920798897743,0.072163797914982,-0.051627971231937],[0.057209894061089,-0.034434534609318,0.1074825823307],[0.062387235462666,0.20667815208435,0.14380159974098]],[[-0.10616869479418,-0.040935602039099,-0.016329048201442],[0.082321643829346,0.031059311702847,-0.02777792699635],[0.055655367672443,-0.08851520717144,0.0022454056888819]],[[-0.048406768590212,0.065795138478279,0.015598544850945],[0.024954751133919,0.0021206240635365,0.0081151910126209],[-0.076796099543571,0.044097773730755,-0.13723732531071]],[[0.0019941052887589,-0.027997869998217,0.019632365554571],[-0.083700716495514,0.018872179090977,0.002316921716556],[0.088782198727131,0.0029293375555426,-0.028845889493823]],[[-0.08976423740387,-0.0003927027573809,-0.10848874598742],[0.071436904370785,-0.028745232149959,-0.077640995383263],[0.043596640229225,0.05660892277956,0.031907442957163]],[[0.045786466449499,0.067584663629532,-0.090731956064701],[-0.019121319055557,-0.051509439945221,-0.00077708385651931],[-0.036917261779308,-0.13561545312405,-0.1073257997632]],[[0.12458774447441,-0.080991916358471,-0.018523816019297],[0.10851948708296,-0.077313959598541,0.015299789607525],[-0.032419599592686,0.042540434747934,0.069765843451023]],[[0.05445945635438,-0.021513191983104,0.10043350607157],[0.0086139412596822,0.081784948706627,-0.0045649763196707],[0.041264429688454,-0.072842128574848,-0.097107149660587]]],[[[0.076793007552624,0.01585790514946,0.060977801680565],[0.006924303714186,-0.022185754030943,0.010104199871421],[-0.078336991369724,-0.055830352008343,-0.062730990350246]],[[0.065001137554646,0.01691666059196,-0.24716809391975],[0.036446712911129,0.067400358617306,-0.026644438505173],[0.055041115731001,0.13419099152088,0.11061906069517]],[[-0.062835589051247,0.063385538756847,-0.0097177894786],[-0.028467630967498,-0.035691779106855,0.062055718153715],[-0.056380089372396,0.077138476073742,-0.022724319249392]],[[0.073780328035355,-0.050592783838511,0.086198270320892],[-0.078626021742821,-0.13035933673382,0.054324571043253],[0.037153962999582,0.070084758102894,-0.14135032892227]],[[0.0034892924595624,0.042654637247324,0.11451383680105],[0.027290401980281,0.049214787781239,0.040192879736423],[-0.10585411638021,-0.2093169093132,-0.05379082262516]],[[0.058186333626509,-0.016642056405544,0.015826296061277],[0.003645466407761,0.0073860636912286,-0.10917563736439],[-0.098721005022526,0.029168689623475,0.042297646403313]],[[0.052979871630669,-0.0748276039958,0.036029785871506],[-0.067835412919521,-0.028462048619986,0.15457117557526],[-0.053296003490686,0.022465527057648,0.062971673905849]],[[-0.13503101468086,-0.19029171764851,-0.1238217279315],[-0.07353288680315,-0.12129961699247,0.095495358109474],[0.17469483613968,0.14134374260902,-0.0010979330400005]],[[0.0017879949882627,-0.14663000404835,-0.13791719079018],[0.09626466780901,0.09135115891695,0.016533780843019],[-0.061177052557468,0.055974647402763,0.067670740187168]],[[-0.049365062266588,0.099248766899109,0.11047647148371],[0.064383991062641,-0.035796474665403,-0.07031124830246],[0.015642717480659,-0.078917816281319,-0.23048211634159]],[[-0.046596031636,0.039943195879459,0.028809908777475],[-0.22375349700451,0.011438271962106,0.061856150627136],[-0.044860016554594,-0.11951723694801,-0.0062853605486453]],[[-0.017663463950157,-0.00069386040559039,0.047367956489325],[0.12857696413994,-0.073116488754749,-0.10727372020483],[0.04681047052145,-0.049534287303686,-0.077442355453968]],[[-0.016221964731812,0.012089159339666,-0.04319005087018],[0.026980832219124,0.024419765919447,-0.099079392850399],[-0.15031200647354,-0.026859080418944,-0.081166446208954]],[[0.018461229279637,0.15699581801891,-0.1487250328064],[-0.099843725562096,-0.1026234999299,0.10132139921188],[0.036788243800402,-0.056416667997837,-0.074870780110359]],[[0.046190470457077,0.12787564098835,0.049417719244957],[-0.18205200135708,-0.14349889755249,0.017041450366378],[-0.067241251468658,0.036172721534967,0.10663706809282]],[[0.032755766063929,0.084255307912827,-0.020035171881318],[-0.064182251691818,0.1595243960619,-0.0043422230519354],[-0.042716968804598,-0.078331723809242,0.01295174472034]],[[0.034962836652994,-0.093012623488903,0.054134897887707],[-0.05590495839715,-0.022177323698997,0.10409300774336],[-0.072412021458149,0.08885332942009,-0.078489519655704]],[[0.0090689407661557,0.056525003165007,0.12155894935131],[-0.040874529629946,-0.070182353258133,0.037105709314346],[-0.062359306961298,-0.13227321207523,0.093315288424492]],[[-0.16939096152782,-0.044365275651217,0.05878983438015],[-0.12843759357929,0.057923324406147,-0.061342597007751],[-0.0082409959286451,0.018406176939607,0.02186306566]],[[0.10682498663664,-0.081476546823978,0.046169336885214],[0.041173480451107,0.13849680125713,-0.087303288280964],[-0.023226426914334,0.093130134046078,-0.095535479485989]],[[0.13432441651821,0.075598247349262,0.150280341506],[0.033621188253164,0.044102232903242,0.092565588653088],[-0.10683795064688,0.02987945266068,0.024369791150093]],[[-0.1441530585289,0.017805969342589,0.1126728579402],[-0.039143264293671,-0.018708201125264,-0.079290091991425],[-0.01633059233427,-0.046423353254795,0.13651567697525]],[[0.04127062112093,-0.060008406639099,0.06404123455286],[-0.13712488114834,-0.0034739000257105,0.0030457703396678],[0.0036704018712044,-0.063259810209274,-0.0087051894515753]],[[-0.074507817625999,-0.086859561502934,-0.024310253560543],[-0.10960403829813,-0.12821795046329,0.044295217841864],[0.035225760191679,-0.0064076385460794,0.14660076797009]],[[0.068687103688717,0.12938229739666,0.010637255385518],[0.023339102044702,0.0050082593224943,0.039555814117193],[-0.064048364758492,0.045569706708193,-0.06577330082655]],[[0.014761001802981,0.030451808124781,-0.19358906149864],[0.078728705644608,-0.11336167901754,-0.049351647496223],[0.0012407776666805,-0.070777960121632,0.10574105381966]],[[0.086712002754211,-0.17668507993221,-0.045566752552986],[0.10761675983667,-0.043272737413645,-0.11091681569815],[-0.02674918808043,-0.032401639968157,0.02014797180891]],[[0.083921335637569,-0.065252549946308,0.026878919452429],[0.011482382193208,-0.003948091994971,-0.031233035027981],[-0.18455508351326,0.06632524728775,0.089757420122623]],[[-0.014518169686198,-0.027920613065362,0.031619686633348],[0.053560364991426,-0.075674146413803,-0.031540751457214],[0.021118968725204,-0.021257778629661,0.0065812412649393]],[[0.21925981342793,-0.021473230794072,0.081996083259583],[0.071338385343552,0.023494645953178,0.025496108457446],[-0.022712260484695,-0.010286069475114,-0.035926770418882]],[[-0.099203199148178,0.062958098948002,0.050679989159107],[-0.015649888664484,-0.11835220456123,0.069809973239899],[-0.0033739707432687,-0.18597200512886,-0.0048243547789752]],[[-0.026268161833286,-0.16988031566143,0.061855968087912],[-0.11418280750513,0.0039144372567534,-0.0051918579265475],[-0.011148980818689,0.10949344933033,0.027057342231274]],[[-0.095828831195831,0.032609600573778,-0.016506547108293],[-0.091454945504665,0.0050262613222003,0.20065942406654],[-0.14281122386456,0.095501825213432,-0.031416982412338]],[[-0.10610250383615,-0.081932224333286,-0.10922445356846],[0.08019146323204,0.02981167472899,0.04865725710988],[-0.071364723145962,-0.1524799913168,0.073448419570923]],[[0.0095967352390289,-0.085893258452415,0.089163713157177],[-0.29340663552284,-0.10366796702147,0.13773567974567],[0.044195011258125,-0.0018853847868741,0.078319869935513]],[[-0.19966605305672,-0.038274437189102,-0.048046953976154],[0.04857000336051,-0.10748299211264,-0.078303374350071],[-0.0056480234488845,0.039947085082531,0.078425094485283]],[[0.062611363828182,-0.14232005178928,0.016899839043617],[-0.011157033033669,-0.15164130926132,-0.073163107037544],[0.041917197406292,-0.071360141038895,0.13949652016163]],[[-0.20254863798618,-0.10196189582348,-0.011662980541587],[-0.033967509865761,-0.012492181733251,-0.1204130500555],[0.11007585376501,0.0094624571502209,0.046909652650356]],[[-0.035677004605532,-0.033131711184978,0.060727331787348],[0.025248806923628,-0.038465615361929,-0.020453751087189],[-0.05038496106863,0.066749297082424,0.06504275649786]],[[-0.066414840519428,-0.18672350049019,-0.034947611391544],[-0.032710693776608,-0.0069042867980897,0.031310424208641],[0.040780391544104,-0.065610408782959,-0.034220442175865]],[[-0.023183660581708,0.070572786033154,0.10811457782984],[-0.042312163859606,-0.063434958457947,-0.035918567329645],[0.01093774754554,-0.012430091388524,0.043113194406033]],[[0.024863908067346,-0.070539027452469,-0.013047239743173],[-0.083588421344757,-0.2176678031683,-0.16778828203678],[-0.05839129909873,0.073494859039783,-0.044035710394382]],[[-0.093477472662926,-0.12985107302666,-0.068223655223846],[-0.056355997920036,-0.005042442586273,0.18252632021904],[0.11116790026426,0.055500723421574,0.0065283137373626]],[[-0.059440549463034,-0.041346788406372,0.060650262981653],[0.09462384134531,-0.066665008664131,-0.022999538108706],[0.026113115251064,0.077068030834198,-0.057603850960732]],[[-0.018773954361677,-0.070470631122589,-0.02981137111783],[0.064067900180817,0.104023642838,0.036555763334036],[0.016237571835518,0.0004051034047734,0.10907232761383]],[[0.067842192947865,0.023953888565302,-0.17678669095039],[0.071191310882568,-0.014992040582001,0.0088343024253845],[0.042141884565353,0.02890439145267,-0.024388767778873]],[[0.0015652027213946,-0.022386245429516,0.12871000170708],[0.0055257440544665,0.031237477436662,-0.12658540904522],[-0.014884340576828,0.075196161866188,0.056252300739288]],[[-0.065250054001808,0.14539632201195,-0.038712933659554],[-0.090334430336952,0.12650135159492,0.092998661100864],[-0.14631526172161,-0.0081686750054359,-0.04518998041749]],[[0.026582045480609,-0.041642021387815,-0.0034842495806515],[0.096278101205826,-0.16119211912155,0.018686462193727],[0.11798174679279,0.0014388849958777,-0.019129948690534]],[[-0.10297936201096,0.07301452755928,0.016225716099143],[-0.10263902693987,-0.036841720342636,-0.022920338436961],[0.041420839726925,0.0028611065354198,0.026012696325779]],[[-0.042342558503151,-0.055221181362867,0.074338980019093],[0.083123907446861,-0.040825750678778,-0.010534496046603],[0.067558668553829,-0.031735386699438,-0.02652989141643]],[[-0.054771214723587,-0.015163319185376,0.033030804246664],[-0.028129087761045,-0.03641103208065,-0.15754960477352],[0.040670521557331,0.10099194943905,0.010393228381872]],[[-0.0063738082535565,0.089685469865799,-0.081539757549763],[-0.019849080592394,0.075324811041355,0.018658278509974],[0.036192305386066,-0.15998458862305,0.031647209078074]],[[-0.13171678781509,0.0017564772861078,0.011726415716112],[-0.13265177607536,0.11731151491404,0.050448030233383],[-0.075632318854332,0.021902449429035,0.21689994633198]],[[-0.023634426295757,-0.022502657026052,0.017389848828316],[-0.089909940958023,-0.065278246998787,-0.11137308180332],[-0.040820401161909,0.016960073262453,0.04245076328516]],[[-0.026833437383175,0.018096471205354,-0.19219407439232],[0.013429177924991,-0.010854799300432,0.2065120190382],[0.06578266620636,-0.03013820387423,0.13586060702801]],[[0.17279528081417,0.014318906702101,-0.034417789429426],[-0.0057923458516598,0.077808447182178,0.061626378446817],[0.02819581143558,0.0452153198421,0.0014724796637893]],[[-0.124118514359,0.052188899368048,0.027608910575509],[-0.25163674354553,0.061403069645166,0.01882085390389],[-0.054751012474298,-0.0038623446598649,0.10178798437119]],[[-0.099622555077076,0.02240239828825,-0.091412618756294],[-0.027390655130148,0.035608816891909,-0.011803123168647],[0.17943400144577,0.24370519816875,0.076982289552689]],[[0.099647887051105,-0.0090413093566895,-0.0076104965992272],[0.018303954973817,-0.1311611533165,0.041042122989893],[-0.028451047837734,0.042511202394962,0.0081301555037498]],[[-0.10558477789164,0.12844927608967,-0.0079466290771961],[0.10387472063303,-0.14410822093487,-0.011137248948216],[-0.073902316391468,0.085951291024685,-0.010943504050374]],[[0.069609470665455,0.03761937096715,0.079174719750881],[-0.046615533530712,0.030676642432809,-0.083206869661808],[0.081605367362499,-0.046614982187748,0.0023021700326353]],[[-0.18614257872105,-0.13269951939583,0.1376014649868],[0.053992483764887,0.0054722451604903,-0.0049000079743564],[-0.032492693513632,-0.051973678171635,0.13147453963757]],[[-0.040261432528496,-0.053468197584152,-0.23448108136654],[0.041226223111153,-0.00026566919405013,0.05965781211853],[0.004435102455318,0.047711435705423,0.095661632716656]]],[[[-0.035490863025188,0.013585917651653,-0.03595057502389],[0.0074985222890973,-0.013431683182716,-0.079324416816235],[0.018683725968003,-0.029089385643601,0.031718924641609]],[[0.041190896183252,-0.0078638447448611,0.029063709080219],[0.028940748423338,0.030637143179774,0.033262722194195],[-0.074670299887657,0.064210884273052,-0.020154617726803]],[[-0.042533904314041,0.01576660759747,-0.0083752758800983],[-0.08323335647583,0.14473581314087,-0.0036217137239873],[-0.081941992044449,0.04214645922184,0.0087643871083856]],[[0.035670410841703,0.021535569801927,-0.062683947384357],[-0.1144480779767,0.047653328627348,-0.019023219123483],[0.091491043567657,-0.01266944501549,0.066226400434971]],[[0.013310028240085,0.025019166991115,0.045389153063297],[-0.014419795013964,0.034739747643471,0.039361298084259],[-0.031834244728088,-0.058269165456295,0.11908679455519]],[[-0.042214576154947,0.073450244963169,0.04246161878109],[0.0368427708745,-0.058703042566776,-0.013136661611497],[-0.12829683721066,0.10279381275177,-0.03382770717144]],[[-0.011642423458397,-0.070595443248749,-0.065139308571815],[-0.029299467802048,0.00082977139391005,0.01403883472085],[0.015144556760788,0.08289261162281,0.037375029176474]],[[-0.090020336210728,0.093318268656731,0.042794719338417],[-0.13581216335297,0.058259136974812,0.021478284150362],[0.047867894172668,0.094390831887722,-0.052629716694355]],[[0.029138829559088,0.068444080650806,-0.060710191726685],[0.075883567333221,-0.04808121919632,-0.046402595937252],[-0.056025430560112,0.050249505788088,-0.054413016885519]],[[-0.094013027846813,0.010146420449018,-0.040736019611359],[0.016719972714782,-0.11928480118513,0.11747267097235],[0.032613530755043,-0.021563965827227,-0.013607194647193]],[[0.053829915821552,0.047204568982124,0.0061536272987723],[-0.01557432860136,-0.0097637586295605,-0.052950404584408],[-0.074613071978092,-0.03314308822155,0.0017605450702831]],[[-0.058553691953421,-0.0097624966874719,0.11557526886463],[0.15770624577999,-0.008294053375721,0.016808206215501],[-0.054514858871698,-0.029115099459887,0.0052917078137398]],[[-0.033317431807518,0.062405943870544,0.044167451560497],[0.026591142639518,-0.0024353733751923,-0.064691558480263],[-0.017494091764092,-0.069588325917721,0.0056198979727924]],[[0.0054743657819927,0.00041787352529354,-0.06357004493475],[-0.008869418874383,-0.085118360817432,-0.0034697491209954],[0.003579564159736,-0.019627949222922,0.14158034324646]],[[0.0068812621757388,-0.037205472588539,-0.016378233209252],[-0.16907848417759,0.025645164772868,0.030446771532297],[-0.05100329965353,0.078196063637733,-0.08443545550108]],[[0.013237539678812,-0.02226522937417,-0.017814764752984],[0.014019386842847,-0.072054743766785,0.0034686280414462],[0.045118603855371,-0.049475781619549,-0.025751017034054]],[[0.023306598886847,0.019555354490876,0.016478415578604],[-0.017364120110869,0.059313148260117,-0.099346973001957],[0.042479071766138,0.0023498283699155,-0.041221629828215]],[[-0.051493816077709,-0.062087561935186,-0.013797542080283],[0.043226793408394,0.0024739387445152,0.0052397279068828],[-0.010046821087599,-0.040639586746693,-0.063872344791889]],[[-0.078972890973091,0.028685944154859,-0.065574824810028],[0.019697431474924,-0.023965118452907,-0.076828517019749],[0.092116802930832,0.11985173076391,-0.051212660968304]],[[0.12796393036842,-0.15425401926041,0.11493016034365],[-0.13013377785683,0.079963639378548,-0.067753687500954],[-0.0037125942762941,-0.03915161639452,0.0038571897894144]],[[0.039437759667635,0.10657674074173,-0.028129894286394],[0.057248320430517,-0.13860315084457,0.064791783690453],[0.017305858433247,0.0041391090489924,-0.040521468967199]],[[0.087135881185532,-0.081515364348888,-0.015286007896066],[0.058014806360006,-0.15973044931889,-0.018026635050774],[-0.029630307108164,-0.0048689651302993,-0.070514969527721]],[[0.061688210815191,0.0033675171434879,0.078795291483402],[-0.079420402646065,-0.019940905272961,0.01194070186466],[-0.021886013448238,-0.034077670425177,0.1129501760006]],[[0.018970148637891,-0.10225701332092,0.0082278428599238],[0.048625435680151,-0.028973499312997,-0.059009559452534],[-0.042973291128874,0.043256085366011,-0.019490269944072]],[[0.052828945219517,-0.14427502453327,0.069387063384056],[-0.014442189596593,-0.043424412608147,-0.008575995452702],[0.037121050059795,0.067946948111057,-0.0422607883811]],[[0.026366766542196,0.033370222896338,-0.026181530207396],[0.053849074989557,0.075637273490429,-0.02107778377831],[-0.032414585351944,-0.17104402184486,0.029731687158346]],[[-0.03050135448575,-0.08122069388628,0.075279407203197],[-0.082540608942509,-0.054667968302965,-0.0047988030128181],[-0.01193034183234,-0.086158253252506,0.10193491727114]],[[0.079320661723614,-0.037847388535738,0.018557440489531],[-0.01304888818413,0.069826737046242,-0.066754601895809],[0.0087094511836767,-0.0178850479424,-0.0065154768526554]],[[-0.0080970581620932,-0.026135440915823,-0.10277792811394],[0.061909921467304,0.034559059888124,0.081194221973419],[0.0067628384567797,0.024480365216732,-0.040538463741541]],[[-0.018105948343873,-0.047256380319595,0.11171342432499],[0.058432761579752,-0.13578480482101,0.015595301985741],[-0.04289023578167,-0.082836456596851,0.0076126796193421]],[[-0.12724225223064,0.053097546100616,0.016482667997479],[0.026355721056461,-0.0027171892579645,-0.02170092612505],[-0.087457463145256,-0.016492011025548,-0.12956766784191]],[[0.026100037619472,0.050990115851164,-0.037503603845835],[0.015981398522854,0.038883540779352,-0.11199545860291],[0.037751588970423,-0.039007473737001,0.013640384189785]],[[0.028135852888227,-0.024002285674214,0.018556002527475],[-0.036131277680397,-0.0032983464188874,0.010415968485177],[0.084134228527546,-0.046844754368067,0.054915595799685]],[[-0.085198201239109,0.0047834683209658,0.015726577490568],[-0.071007288992405,0.01911617256701,0.04135238006711],[0.024270387366414,-0.019734110683203,0.016635993495584]],[[-0.10536339879036,0.027416912838817,0.048533223569393],[-0.078501231968403,0.063004061579704,-0.045784957706928],[-0.050727117806673,-0.062572047114372,-0.015939766541123]],[[-0.12001469731331,0.068621024489403,-0.023370722308755],[0.029393628239632,-0.17187422513962,0.038988590240479],[-0.094933904707432,0.061568807810545,-0.032582677900791]],[[-0.0054775238968432,0.065470047295094,0.055738374590874],[-0.13146956264973,0.0023679786827415,-0.013621997088194],[-0.057903341948986,-0.097894243896008,0.0037119553890079]],[[0.054906219244003,-0.023038197308779,0.053828310221434],[0.0056346692144871,-0.050872348248959,0.01708510145545],[0.12552461028099,-0.21926915645599,0.013992615044117]],[[0.022687915712595,-0.032298725098372,0.039315491914749],[-0.050281021744013,-0.12020359933376,0.011171742342412],[0.011777014471591,0.041470687836409,0.050133317708969]],[[-0.044839482754469,0.16005396842957,-0.061651423573494],[-0.013152272440493,-0.1834224909544,0.036242127418518],[-0.081087432801723,-0.040102202445269,-0.040672529488802]],[[0.0034632096067071,0.066889636218548,0.032717324793339],[-0.22237183153629,0.23573741316795,-0.050428010523319],[-0.091210000216961,0.070435382425785,0.12298400700092]],[[-0.0016006026417017,-0.04085735976696,-0.0053201485425234],[-0.092310734093189,0.04616567492485,-0.02618396282196],[-0.075485080480576,0.0055531468242407,-0.0041038221679628]],[[-0.11124008893967,-0.012595686130226,0.011280285194516],[0.067244991660118,-0.05530322343111,0.027291145175695],[-0.045559450984001,0.016701851040125,-0.043356198817492]],[[-0.040633335709572,-0.028759805485606,0.052184142172337],[-0.050908651202917,0.035200908780098,0.026662096381187],[-0.003803726285696,-0.025271581485868,0.029326157644391]],[[0.094323001801968,-0.029128612950444,0.013704648241401],[-0.01450960803777,-0.022644069045782,0.036754317581654],[-0.096920289099216,0.063041232526302,0.028842365369201]],[[0.040581002831459,0.093976676464081,-0.10354917496443],[0.041970804333687,0.07531426846981,0.038687858730555],[-0.077098652720451,0.055527329444885,0.12758760154247]],[[0.018635008484125,0.0031508021056652,0.033734068274498],[-0.22534303367138,0.0063343131914735,-0.060224916785955],[-0.045496430248022,-0.083127871155739,-0.037821616977453]],[[0.10314810276031,-0.025693248957396,-0.023433515802026],[0.093154244124889,-0.020795909687877,0.040905762463808],[-0.067519277334213,-0.0033819244708866,0.073945626616478]],[[0.044130712747574,-0.088701188564301,0.060734055936337],[0.066861316561699,-0.083703875541687,0.14598463475704],[0.046218436211348,-0.13253654539585,-0.0041638137772679]],[[-0.10138895362616,-0.024849055334926,0.026751114055514],[0.054464086890221,-0.14470830559731,-0.026587072759867],[0.088677279651165,-0.024293180555105,0.018623642623425]],[[-0.018751239404082,-0.013500120490789,0.043641641736031],[-0.019595950841904,-0.026231022551656,0.0037995297461748],[0.025184586644173,0.030935550108552,0.06068292632699]],[[-0.15356765687466,0.076287157833576,-0.078751124441624],[0.12604987621307,-0.25506398081779,0.037545330822468],[-0.035351660102606,0.028699887916446,-0.011445658281446]],[[-0.069744199514389,-0.011242889799178,-0.029306577518582],[-0.0010904470691457,0.075043998658657,0.049849063158035],[-0.04532041028142,0.029124449938536,-0.0086334999650717]],[[-0.11949786543846,0.04326044395566,-0.011170459911227],[-0.096164062619209,0.047562003135681,-0.026681840419769],[-0.071516066789627,0.1060274541378,0.14145748317242]],[[-0.060594838112593,0.011601070873439,-0.047028385102749],[0.070278361439705,-0.11175982654095,-0.043310269713402],[-0.053915947675705,0.03475920855999,-0.0068942485377192]],[[-0.054468300193548,-0.011239249259233,-0.10512933135033],[0.034584637731314,-0.10872474312782,0.026452343910933],[-0.030805604532361,-0.0192028619349,-0.033649262040854]],[[0.0017017181962729,0.098877407610416,-0.027637938037515],[0.098522447049618,-0.073947481811047,0.084923632442951],[0.058926571160555,-0.036930412054062,-0.039038963615894]],[[-0.1168105378747,-0.0017098796088248,0.025909880176187],[0.041040450334549,-0.12722083926201,0.0457928404212],[-0.065262518823147,0.055633172392845,-0.038614220917225]],[[-0.0045227515511215,-0.059618175029755,0.032880056649446],[0.068833962082863,-0.054789159446955,0.043318565934896],[-0.077471703290939,0.10823635011911,-0.17187061905861]],[[-0.024995950981975,0.034388333559036,-0.066448159515858],[0.048721428960562,-0.0074904100038111,0.090270891785622],[0.010285509750247,-0.011291558854282,-0.039520066231489]],[[0.050924308598042,-0.076750800013542,-0.012897941283882],[0.045168954879045,0.056007590144873,-0.033250570297241],[0.011375172063708,0.032270725816488,-0.0079805264249444]],[[-0.053279336541891,0.059993296861649,-0.02132217027247],[0.023658273741603,-0.0310312025249,-0.049483098089695],[0.12873212993145,-0.0061558675952256,-0.029783915728331]],[[0.061754193156958,0.008372244425118,-0.091446369886398],[0.17029201984406,0.027979323640466,-0.040179718285799],[0.069489218294621,-0.049217082560062,-0.056371465325356]],[[-0.053112994879484,0.088549427688122,-0.031136695295572],[0.063908331096172,-0.076065048575401,0.034139018505812],[-0.051883075386286,0.012914637103677,0.074067272245884]]],[[[-0.094031378626823,-0.011949761770666,0.010603738948703],[0.0041997325606644,0.087712414562702,0.013691132888198],[0.044365894049406,-0.013063063845038,-0.062578797340393]],[[-0.0054528336040676,0.028190752491355,-0.078107818961143],[0.0081984661519527,-0.0018109754892066,-0.029546294361353],[-0.0032270385418087,0.036132700741291,0.032382551580667]],[[0.070593938231468,-0.030136099085212,-0.015068281441927],[-0.15531101822853,-0.13224819302559,-0.027396354824305],[0.082171827554703,0.04960997030139,-0.052667316049337]],[[0.065915644168854,-0.0299889780581,-0.0076295114122331],[0.013346699997783,-0.12807466089725,-0.072860054671764],[-0.008890955708921,-0.053053170442581,0.044252783060074]],[[-0.018621563911438,0.0073361052200198,0.077658541500568],[-0.0011776436585933,-0.013831462711096,-0.003551522269845],[0.048390474170446,-0.035195421427488,-0.063923723995686]],[[-0.0486805960536,-0.038691557943821,0.067194320261478],[0.013092171400785,-0.072501704096794,-0.021072898060083],[-0.012348634190857,0.047632154077291,-0.03322870656848]],[[0.016883742064238,-0.24072498083115,0.062284976243973],[0.052052736282349,0.048520348966122,0.029488889500499],[0.055595923215151,-0.0012929395306855,-0.035559136420488]],[[-0.015419899486005,-0.037980988621712,-0.046830590814352],[-0.026007933542132,-0.090296573936939,0.066473312675953],[-0.0082687772810459,-0.014478785917163,0.090954169631004]],[[-0.044273469597101,-0.015104623511434,0.06999908387661],[0.0060603185556829,0.0084727732464671,-0.035466305911541],[0.022057009860873,0.016809551045299,-0.045294284820557]],[[-0.086318038403988,0.019310528412461,-0.02989367954433],[0.044627506285906,0.030430532991886,-0.056771963834763],[0.027734149247408,0.064526066184044,0.11716409027576]],[[0.14964874088764,-0.0010555037297308,0.09100715816021],[-0.0053161703981459,-0.00086723978165537,0.020645726472139],[0.018272254616022,-0.081942573189735,-0.0083948224782944]],[[-0.15219134092331,-0.37684863805771,-0.016229508444667],[-0.10373405367136,-0.005137771833688,0.089087702333927],[-0.0092757819220424,-0.037282440811396,0.068809755146503]],[[0.098487034440041,0.049192391335964,-0.0033134738914669],[0.0088816331699491,-0.048209372907877,-0.018226550891995],[0.025229370221496,0.019355626776814,0.010559811256826]],[[-0.0093778874725103,-0.051516503095627,-0.045749634504318],[0.1195624768734,0.045557402074337,0.017523443326354],[0.013580818660557,-0.0079558733850718,-0.0072255437262356]],[[-0.075563058257103,-0.14706066250801,-0.0016607750440016],[-0.028107652440667,-0.12897706031799,-0.0036069822963327],[-0.0027263108640909,0.05628651753068,0.011306097730994]],[[-0.017852341756225,-0.065899096429348,0.0019846407230943],[0.017429314553738,0.12666334211826,0.0039080968126655],[0.014274120330811,0.0017327619716525,-0.019398396834731]],[[0.0099658472463489,0.060854505747557,0.05091805011034],[0.034871716052294,0.033333797007799,0.081521727144718],[-0.040346458554268,-0.062008328735828,-0.023539429530501]],[[-0.14599603414536,0.00086962798377499,-0.0069434819743037],[-0.032349295914173,0.11315434426069,-0.00048390938900411],[0.013938259333372,-0.12820054590702,0.02804621681571]],[[-0.096551716327667,0.02975027449429,0.039309166371822],[-0.056593231856823,-0.0094902757555246,-0.047568276524544],[0.071539871394634,0.0097215352579951,-0.0048276269808412]],[[-0.10927995294333,0.061240166425705,-0.046853810548782],[-0.047553073614836,-0.028954688459635,-0.024998305365443],[-0.019624214619398,0.12479574233294,0.073009617626667]],[[0.032142881304026,0.058197695761919,0.012821025215089],[-0.10687075555325,0.035244781523943,0.0075441841036081],[-0.022917436435819,0.053512439131737,0.02140923589468]],[[0.043943181633949,0.068051658570766,-0.041940998286009],[0.00018899695714936,-0.014689573086798,-0.023846987634897],[-0.049044616520405,-0.021328773349524,-0.0038262433372438]],[[-0.030446577817202,-0.0797114148736,0.097892314195633],[-0.10092651098967,-0.049220718443394,0.0083575425669551],[-0.088726557791233,0.052707009017467,0.066547580063343]],[[-0.02568762563169,0.012395932339132,-0.0057095047086477],[0.011117557063699,-0.038390249013901,-0.056149259209633],[0.011465545743704,-0.080752469599247,0.025742212310433]],[[0.12658561766148,0.12699668109417,-0.056370697915554],[-0.097516313195229,-0.0089680310338736,-0.13135060667992],[-0.012725024484098,-0.028809757903218,-0.10460383445024]],[[-0.081028446555138,0.10121263563633,0.069591253995895],[-0.2692024409771,0.023208133876324,-0.021304914727807],[-0.090210370719433,0.023981479927897,-0.041526857763529]],[[0.03617949783802,-0.066836349666119,-0.023769190534949],[0.012283188290894,-0.11265934258699,0.013176229782403],[-0.043867856264114,0.016592435538769,0.057145778089762]],[[0.031067032366991,-0.091806530952454,0.10478737950325],[-0.097768642008305,-0.18939039111137,0.046005681157112],[0.030477439984679,-0.03457235917449,0.081260144710541]],[[0.096329651772976,0.0078513454645872,0.083137817680836],[0.072117231786251,0.034171365201473,-0.012649884447455],[-0.083781227469444,-0.083369262516499,-0.098778888583183]],[[0.044309515506029,-0.020764043554664,0.012803632766008],[-0.031357508152723,-0.12291134893894,0.045510105788708],[0.040867354720831,0.0025039985775948,0.055200770497322]],[[-0.020865760743618,-0.1019204929471,0.1070644557476],[-0.015864977613091,-0.068337708711624,-0.0041340570896864],[-0.082014374434948,-0.027774216607213,0.11582195013762]],[[-0.0064555834978819,-0.087193123996258,0.051867604255676],[-0.028587967157364,0.020154481753707,0.055433426052332],[-0.063215844333172,-0.042909290641546,-0.022287327796221]],[[-0.087840311229229,0.034009981900454,-0.005334279499948],[-0.011130716651678,0.015689194202423,0.025307407602668],[-0.1019160374999,0.013410699553788,0.071036815643311]],[[0.0011262365151197,-0.088082164525986,-0.065734334290028],[-0.085774265229702,-0.036766573786736,-0.030476188287139],[-0.0073174652643502,0.035542707890272,0.052345730364323]],[[0.067018494009972,-0.016634657979012,-0.029688434675336],[-0.068904966115952,0.046880070120096,-0.015764959156513],[-0.044825095683336,0.066907897591591,0.0091793453320861]],[[-0.13754093647003,-0.055795017629862,0.045061998069286],[-0.10507015138865,-0.027980465441942,0.015935758128762],[-0.012324337847531,0.023617593571544,0.019656104966998]],[[0.082816138863564,0.05705127492547,0.077377609908581],[0.016934581100941,-0.030399069190025,-0.039398513734341],[0.072306290268898,0.043741773813963,-0.093366950750351]],[[0.041375543922186,0.03473449498415,0.11004332453012],[-0.05169914290309,0.033706411719322,-0.063592217862606],[-0.011118005029857,0.12836956977844,0.014449644833803]],[[-0.035174928605556,-0.050360027700663,0.035059858113527],[0.075023576617241,0.084398232400417,0.055916383862495],[-0.085246413946152,-0.012032715603709,0.04315747693181]],[[0.070507802069187,-0.06467804312706,0.021854007616639],[-0.091931514441967,0.066056534647942,-0.034691534936428],[0.015310721471906,-0.063329793512821,-0.016687607392669]],[[-0.002922574756667,-0.015333028510213,-0.042343065142632],[-0.047878112643957,0.032217815518379,0.024858644232154],[-0.023995783179998,0.041154339909554,0.075875490903854]],[[0.03082936629653,0.017318306490779,0.0054844501428306],[0.030782446265221,-0.024704493582249,-0.024512555450201],[-0.22246158123016,0.015309110283852,0.0092303548008204]],[[0.095199756324291,0.012808514758945,-0.031105851754546],[-0.044145487248898,-0.052640069276094,0.019186668097973],[-0.031336799263954,0.053943648934364,0.082050062716007]],[[0.019052123650908,0.030404057353735,-0.13243858516216],[0.023953491821885,-0.032126478850842,0.058483485132456],[-0.036725454032421,0.0011701699113473,0.058567307889462]],[[-0.01186889782548,0.0020995670929551,-0.0092484029009938],[-0.030264040455222,0.016959303990006,0.0036383585538715],[-0.018549995496869,-0.0064264312386513,0.025480419397354]],[[0.047467160969973,-0.14523549377918,0.0085079669952393],[0.076760850846767,0.063170313835144,-0.056810554116964],[-0.024459708482027,-0.097083665430546,-0.0063008996658027]],[[0.10799217969179,-0.1129574328661,0.043726172298193],[-0.04775382950902,-0.091430135071278,-0.075999267399311],[0.017202382907271,-0.060341071337461,-0.069177366793156]],[[-0.076527401804924,0.026621405035257,0.040017642080784],[0.091611906886101,-0.017834905534983,-0.013066289015114],[0.10283283889294,-0.040453474968672,-0.05148795992136]],[[0.042218036949635,0.10561129450798,0.0082183023914695],[-0.20817616581917,-0.10694590955973,0.0086805401369929],[0.048971138894558,0.034798443317413,0.019511979073286]],[[0.037315458059311,0.029543366283178,0.020425003021955],[-0.092240668833256,-0.070615135133266,-0.036538269370794],[-0.0073914309032261,-0.022859109565616,-0.046167436987162]],[[-0.086603134870529,0.027042988687754,-0.09735007584095],[-0.0090899113565683,-0.035898789763451,-0.01666889898479],[0.061036918312311,0.007784565910697,-0.006010009907186]],[[-0.012728109024465,-0.099290959537029,0.04380564019084],[-0.042560055851936,-0.089414238929749,-0.078736670315266],[-0.072946801781654,0.046420481055975,-0.010996420867741]],[[-0.095286674797535,0.035137455910444,-0.1046075373888],[-0.051664099097252,-0.13265869021416,-0.069031476974487],[0.015003172680736,0.02802468650043,0.0053318189457059]],[[-0.19331592321396,0.0043536089360714,0.042150098830462],[-0.0090749803930521,0.031449645757675,0.059869863092899],[0.022508312016726,0.0097645819187164,0.030119890347123]],[[-0.036718964576721,-0.01883227750659,0.02559725381434],[0.02791141718626,-0.00023289494856726,-0.0030783710535616],[0.013268417678773,-0.028195345774293,0.023564256727695]],[[-0.13716290891171,-0.19625194370747,0.027667699381709],[-0.062394261360168,-0.017177594825625,-0.0020547255408019],[-0.0043709585443139,0.001601503812708,0.01413341332227]],[[-0.20318120718002,-0.078775107860565,-0.053156845271587],[-0.15547110140324,0.22633814811707,-0.014960411004722],[-0.089328840374947,-0.012479914352298,-0.033617336302996]],[[0.028379745781422,-0.047154553234577,-0.065632462501526],[-0.0053499140776694,-0.1028600409627,0.034904405474663],[-0.034010011702776,0.0018736128695309,0.021327489987016]],[[0.040488064289093,0.0644426420331,0.12413127720356],[0.037034399807453,0.095020726323128,-0.033461548388004],[-0.053239177912474,0.061316773295403,0.0079823834821582]],[[-0.035613242536783,-0.085530444979668,-0.025867249816656],[-0.073216557502747,0.060899991542101,0.058703023940325],[0.019158158451319,0.020151380449533,0.022373789921403]],[[-0.21537110209465,0.077950783073902,-0.079749867320061],[-0.10893035680056,0.087360315024853,-0.061497610062361],[0.042011648416519,0.11487882584333,-0.0065672099590302]],[[0.0042994963005185,-0.081696897745132,0.01446180883795],[0.14382666349411,-0.062796242535114,-0.0068987812846899],[-0.16048741340637,0.05128962919116,0.0046308394521475]],[[0.12226185202599,-0.0028692064806819,-0.077718637883663],[-0.09012920409441,-0.054458126425743,0.0082940496504307],[-0.072935193777084,0.020246876403689,-0.058276824653149]],[[-0.016705794259906,0.0047699888236821,-0.015463692136109],[-0.027791997417808,0.037323296070099,0.14099740982056],[-0.035461213439703,0.042581338435411,-0.050700362771749]]],[[[0.01362432166934,-0.048574674874544,0.11528085172176],[-0.0097580691799521,0.022393368184566,-0.031061453744769],[-0.12369379401207,-0.069374546408653,-0.050782561302185]],[[0.16101944446564,0.074425518512726,0.20427890121937],[-0.046606924384832,-0.042158879339695,0.04600390419364],[-0.11318875849247,0.0068835620768368,-0.028515907004476]],[[-0.016095653176308,0.037877965718508,-0.085629872977734],[-0.038447797298431,0.02773186005652,-0.13999111950397],[0.083187885582447,-0.058688096702099,-0.13749243319035]],[[-0.0075049898587167,-0.15245424211025,-0.034089643508196],[0.10806514322758,0.019226104021072,-0.08881301432848],[-0.029441995546222,0.19126516580582,-0.060702696442604]],[[-0.12589046359062,-0.063032031059265,-0.045941792428493],[-0.038595870137215,0.09299148619175,0.018702618777752],[-0.013086753897369,0.071276001632214,-0.027602210640907]],[[0.029225405305624,0.019299367442727,-0.039027463644743],[0.069884695112705,0.11982932686806,-0.08059124648571],[0.10256985574961,0.00069284212077036,0.0156858433038]],[[0.084042571485043,-0.056163929402828,-0.2004374563694],[0.053170446306467,0.033800918608904,0.073279574513435],[0.027525573968887,0.0053791683167219,-0.083119980990887]],[[0.1106788739562,0.027729645371437,0.0047670123167336],[0.0028575060423464,0.09076601266861,0.035799786448479],[-0.19539971649647,0.083699658513069,0.037325598299503]],[[-0.070865981280804,0.03737385943532,-0.031315740197897],[0.080848000943661,0.021641246974468,0.001372238388285],[-0.068275645375252,0.021433938294649,0.036036711186171]],[[0.053946945816278,-0.090545207262039,-0.059201508760452],[-0.042360953986645,-0.089441105723381,-0.14581549167633],[0.023282309994102,-0.10150581598282,-0.13967056572437]],[[-0.39472508430481,-0.017102658748627,-0.0015838923864067],[-0.082771845161915,0.00037974090082571,0.10352890193462],[-0.091797582805157,-0.12807597219944,-0.0022757647093385]],[[0.0833540558815,0.10611547529697,0.024471493437886],[-0.08237013220787,-0.034126419574022,0.030382422730327],[-0.043831247836351,0.01218824647367,-0.058733340352774]],[[-0.055111892521381,-0.015736486762762,-0.050421591848135],[-0.06923446804285,-0.016995618119836,-0.098553478717804],[-0.033144649118185,-0.08229099214077,-0.030238043516874]],[[-0.1496613919735,0.0062260790728033,0.098430648446083],[-0.030366010963917,0.037370420992374,-0.08732645213604],[-0.14814825356007,-0.0045635690912604,0.10134940594435]],[[0.18260437250137,0.11560447514057,0.04598680883646],[0.082098573446274,-0.030716160312295,-0.015267468057573],[0.051636546850204,0.025407390668988,-0.27672764658928]],[[0.0077269738540053,0.018894506618381,0.070879608392715],[-0.12501221895218,-0.011378763243556,-0.0067463265731931],[0.056165721267462,0.037338014692068,-0.028083272278309]],[[0.0067743114195764,-0.047414157539606,0.046825356781483],[0.069263704121113,-0.1056392788887,0.024054484441876],[-0.042174659669399,0.10772363096476,0.0098419822752476]],[[0.093269646167755,0.019271064549685,-0.13451068103313],[0.084957838058472,-0.11971718072891,-0.074991203844547],[0.29898983240128,0.12968400120735,0.069753021001816]],[[-0.076319806277752,0.050552226603031,0.096303842961788],[-0.0069035710766912,0.11078402400017,-0.1132532954216],[-0.064758256077766,0.0074425279162824,0.052611831575632]],[[-0.0079588321968913,0.16682575643063,0.21287409961224],[-0.15093870460987,0.048768561333418,0.096930108964443],[-0.070219665765762,0.044768664985895,0.094178535044193]],[[0.011465708725154,-0.013473461382091,-0.059985619038343],[0.11568928509951,0.039369203150272,-0.043218366801739],[0.13338556885719,0.099277809262276,-0.091367401182652]],[[-0.050224740058184,-0.011604866944253,-0.089255623519421],[0.059708621352911,0.039280422031879,-0.11225996166468],[0.091183260083199,-0.071152403950691,0.044510200619698]],[[-0.1835585385561,-0.0036763390526175,0.15527299046516],[-0.18078936636448,0.12098882347345,0.078019209206104],[-0.18838977813721,-0.068361684679985,-0.00032886333065107]],[[-0.084340281784534,-0.034395284950733,-0.1348742544651],[0.022129422053695,-0.064502567052841,-0.096179641783237],[0.086019836366177,0.12299655377865,-0.11248002946377]],[[-0.084079936146736,0.02825503796339,0.11975552141666],[-0.021531701087952,0.043954759836197,0.037594337016344],[-0.08300768584013,-0.0021535148844123,-0.054994851350784]],[[0.11411569267511,0.062678813934326,-0.00054166972404346],[0.041306268423796,0.038023386150599,-0.023304168134928],[0.001192971249111,0.037307407706976,0.030551936477423]],[[-0.055083595216274,-0.009387431666255,-0.099131271243095],[-0.042038600891829,-0.055392686277628,-0.07405162602663],[0.0506611764431,0.062934577465057,-0.080454804003239]],[[-0.089049339294434,0.03998139500618,0.013925440609455],[-0.077926345169544,0.055710665881634,-0.10993118584156],[-0.097672708332539,-0.038412064313889,0.074814587831497]],[[0.087674871087074,0.044267658144236,-0.12775160372257],[0.16226591169834,-0.013710635714233,-0.1608681678772],[0.10837872326374,0.031812898814678,0.072360932826996]],[[0.011426275596023,-0.18136142194271,-0.045857172459364],[0.10594955086708,0.015302830375731,-0.080007612705231],[0.21115256845951,-0.04789150133729,-0.029280439019203]],[[-0.092556893825531,0.12690198421478,0.10489891469479],[-0.13835203647614,0.053143229335546,0.33137282729149],[-0.16491276025772,0.037177335470915,0.11799824982882]],[[0.05627503618598,0.08890363574028,0.14444184303284],[-0.081870310008526,-0.0080831600353122,0.076880775392056],[-0.072756744921207,-0.11721496284008,-0.020326817408204]],[[-0.07612943649292,0.042738437652588,-0.060967687517405],[-0.071410484611988,0.0093729449436069,0.0014334009028971],[-0.025510508567095,0.13030479848385,0.085975140333176]],[[-0.067401416599751,0.03740755841136,0.0082261664792895],[0.023148002102971,-0.078557170927525,0.073345094919205],[0.070741906762123,-0.011462435126305,-0.052094656974077]],[[0.099150642752647,-0.020594453439116,-0.077723875641823],[0.072316832840443,0.074196219444275,0.0052053681574762],[0.055293306708336,0.01166978944093,-0.050492201000452]],[[0.04820778220892,-0.094607934355736,-0.15260417759418],[-0.02057665027678,-0.041447062045336,0.062401108443737],[-0.022971430793405,0.026322050020099,0.036429576575756]],[[0.000880605308339,-0.083621449768543,-0.11314057558775],[-0.0040375418029726,0.071153372526169,-0.061246480792761],[0.099215909838676,0.089899130165577,-0.050204358994961]],[[-0.14285425841808,0.057527430355549,0.15141493082047],[-0.10646121948957,-0.12113466858864,0.22207225859165],[-0.21758334338665,-0.14990352094173,0.10109983384609]],[[0.0037727917078882,-0.073050320148468,-0.093388542532921],[0.11490251123905,-0.079430185258389,-0.22882072627544],[0.073229104280472,0.15856721997261,-0.073437444865704]],[[-0.028830360621214,0.10115409642458,0.14815816283226],[0.00086216878844425,-0.0080603966489434,0.069097153842449],[-0.18040691316128,-0.026822177693248,0.041524801403284]],[[-0.032095063477755,-0.10537595301867,0.22187212109566],[-0.018787024542689,-0.030608965083957,-0.039185352623463],[0.0020375563763082,-0.028895558789372,0.081517145037651]],[[0.05548781901598,-0.053281582891941,0.040116291493177],[-0.051383558660746,-0.11142898350954,-0.11182803660631],[0.069860316812992,-0.059980589896441,-0.011664532124996]],[[-0.027486182749271,-0.030233539640903,0.013732055202127],[-0.027823301032186,-0.10584683716297,-0.043600592762232],[-0.007522005122155,0.06185070425272,0.036351818591356]],[[0.043597765266895,0.041097111999989,0.069238394498825],[0.02252178452909,-0.13610906898975,-0.065900430083275],[0.042301088571548,-0.036707308143377,0.011479251086712]],[[0.061620865017176,-0.13845837116241,-0.10253670066595],[0.045523911714554,-0.041466806083918,-0.075386837124825],[0.072516366839409,0.041560858488083,-0.051785010844469]],[[0.074730716645718,-0.048281665891409,-0.167245849967],[0.15010017156601,-0.065439529716969,-0.032986477017403],[0.16657420992851,0.20382283627987,-0.026274481788278]],[[-0.0088079506531358,0.064129412174225,-0.093719996511936],[0.057531706988811,-0.015223511494696,0.014305899851024],[-0.05190122500062,0.053393993526697,0.10159991681576]],[[-0.0059161707758904,0.057812545448542,0.025213049724698],[0.050149023532867,0.07025283575058,-0.059541624039412],[0.051654700189829,0.096353933215141,-0.0034945670049638]],[[-0.13772070407867,0.044487696141005,0.085240975022316],[-0.23851931095123,0.025492323562503,0.10830561816692],[-0.084028273820877,-0.057163849473,0.12747500836849]],[[-0.0016787777421996,-0.014870470389724,0.08887043595314],[-0.067285433411598,0.044947229325771,-0.038080055266619],[0.00918273255229,-0.1380589902401,0.10736387968063]],[[-0.0053159832023084,-0.04850859567523,-0.068714022636414],[0.08464589715004,-0.039297919720411,-0.15194293856621],[0.13953439891338,0.14791545271873,-0.089584201574326]],[[0.037259269505739,-0.005364497192204,-0.046794675290585],[0.0098535781726241,-0.029269276186824,-0.10178693383932],[0.0076820193789899,0.0045208223164082,-0.07230344414711]],[[0.18136718869209,-0.11361054331064,0.0057921535335481],[0.09444136172533,-0.010096271522343,-0.028570003807545],[0.10484763979912,-0.069098271429539,-0.013702703639865]],[[0.029217353090644,0.14367869496346,0.030797217041254],[0.018140891566873,0.043377384543419,-0.12531585991383],[0.051673196256161,-0.12374889850616,-0.060344908386469]],[[0.0050025121308863,-0.10323143750429,-0.21187041699886],[0.096166580915451,-0.018119150772691,-0.20220617949963],[0.11919753998518,-0.043894644826651,-0.01326594222337]],[[-0.061224564909935,0.07486280798912,-0.032345645129681],[0.075355775654316,-0.032447330653667,0.032614886760712],[0.12142241001129,0.011761349625885,0.0070834830403328]],[[0.04590005427599,0.038280759006739,0.20219603180885],[0.0034140304196626,0.22428406774998,0.19755336642265],[-0.1408075094223,0.028098583221436,0.20802131295204]],[[-0.044818047434092,0.032331489026546,0.039837159216404],[0.0084569826722145,0.11419476568699,-0.17762233316898],[-0.0062044304795563,-0.089955076575279,-0.073164336383343]],[[0.018230706453323,0.097227461636066,0.060594189912081],[-0.0021483737509698,0.078881219029427,-0.010980379767716],[-0.0022641739342362,-0.081323593854904,0.0012357733212411]],[[-0.082605615258217,-0.16380803287029,-0.039665181189775],[0.10727176815271,0.04865713045001,0.0040049254894257],[0.069963611662388,0.010715004056692,0.11574783176184]],[[-0.041459679603577,-0.14986258745193,-0.19694994390011],[-0.023703802376986,-0.081024475395679,-0.17431558668613],[0.010403444059193,0.10278503596783,-0.1363488137722]],[[-0.0025158936623484,0.21383227407932,-0.0012157909804955],[-0.063327468931675,0.058385841548443,-0.010663417167962],[0.035774528980255,-0.081986106932163,0.081806875765324]],[[-0.21506400406361,-0.14360418915749,-0.01591644063592],[-0.15830112993717,0.029349580407143,0.2071840018034],[-0.040193680673838,0.010448812507093,0.15845559537411]],[[0.10085019469261,0.084419131278992,0.058368660509586],[-0.16480825841427,-0.010326979681849,0.032944414764643],[-0.418297290802,0.019308349117637,-0.015054922550917]]],[[[0.086944222450256,-0.02885808609426,0.03906586393714],[0.031534370034933,-0.071849144995213,-0.096387468278408],[0.04458624497056,0.03434681147337,0.037890523672104]],[[-0.01672837510705,0.0043879114091396,0.018267929553986],[-0.10938923805952,0.00030501704895869,0.018673488870263],[-0.003896706039086,0.082901507616043,-0.11206053197384]],[[0.0021519043948501,-0.013251745142043,0.026465475559235],[0.048985827714205,-0.012126533314586,0.026802942156792],[0.02800715342164,-0.041677892208099,-0.0069658793509007]],[[-0.015296891331673,-0.0073787174187601,-0.011393832974136],[0.070397913455963,-0.044728063046932,-0.026936527341604],[-0.046910274773836,0.0045773889869452,0.040480095893145]],[[-0.10518281161785,0.066605664789677,0.038032941520214],[-0.014349261298776,0.069395631551743,-0.024718727916479],[-0.055573739111423,0.014218907803297,0.02745421603322]],[[0.0035158337559551,0.073334857821465,-0.03491124138236],[-0.0037044337950647,0.048901427537203,0.084120191633701],[-0.0039290534332395,0.025294274091721,0.010086763650179]],[[0.014848310500383,0.1406367868185,0.002510289195925],[0.064254395663738,-0.028368916362524,-0.026264496147633],[0.083197556436062,0.087484270334244,-0.023157730698586]],[[-0.032795157283545,0.13188800215721,0.13143676519394],[0.033262182027102,0.053608030080795,0.054715380072594],[-0.13854995369911,0.0051637436263263,-0.067680314183235]],[[-0.071719996631145,-0.11259872466326,-0.08845642209053],[-0.09923629462719,-0.044785924255848,-0.013241545297205],[-0.13466183841228,0.0042953393422067,-0.014089336618781]],[[0.039418093860149,0.0077148010022938,-0.027837596833706],[0.050907984375954,0.020984074100852,0.0059428364038467],[-0.034667283296585,-0.096016928553581,0.024838618934155]],[[-0.00065783754689619,-0.051762159913778,-0.081205114722252],[0.0051716547459364,-0.054664928466082,0.018412357196212],[0.0092655587941408,-0.076781831681728,0.046472802758217]],[[-0.041216894984245,-0.05153775587678,-0.083809666335583],[-0.029757158830762,0.065061539411545,0.010974943637848],[0.029630992561579,0.0040677608922124,-0.078962817788124]],[[0.013404834084213,-0.049779914319515,-0.099558643996716],[0.025586882606149,-0.07336413860321,-0.11622288823128],[0.06449468433857,0.0022810720838606,-0.028216192498803]],[[-0.037619784474373,-0.011273165233433,0.086148083209991],[0.03290481865406,-0.036201596260071,0.052353125065565],[0.052456416189671,-0.014141687192023,0.063436888158321]],[[-0.024007145315409,0.027061661705375,-0.067790649831295],[0.026564497500658,0.014273139648139,-0.070510700345039],[0.066805474460125,-0.068309925496578,-0.018006907775998]],[[-0.073226794600487,0.0078519452363253,-0.081544071435928],[0.01566769182682,-0.020647427067161,0.050047300755978],[-0.02652051858604,-0.008915507234633,0.10912075638771]],[[-0.032730583101511,-0.00032485113479197,0.1083328127861],[0.18497912585735,0.015626264736056,-0.094137690961361],[0.0143011379987,-0.0032576930243522,-0.08490813523531]],[[-0.014934117905796,0.028065031394362,-0.041156951338053],[-0.002951048547402,0.0077506811358035,-0.041765682399273],[0.01489884685725,-0.0070931920781732,-0.005381403490901]],[[0.042151439934969,-0.0097962925210595,0.10428138822317],[-0.064498327672482,0.075348310172558,0.0092482399195433],[0.0077783484011889,0.0071994988247752,-0.025235304608941]],[[0.017913589254022,0.066862970590591,-0.10509466379881],[-0.017625343054533,0.086010053753853,0.02244189940393],[0.027107274159789,0.071854323148727,0.088036902248859]],[[0.0072761666961014,-0.078308805823326,0.0072472747415304],[-0.028215892612934,0.032404653728008,0.084814973175526],[-0.053930401802063,-0.057100594043732,-0.066289387643337]],[[-0.017239136621356,0.031957473605871,-0.037132531404495],[0.0037921408656985,0.065114513039589,0.041075516492128],[0.070968590676785,-0.067500293254852,-0.098158776760101]],[[-0.031468737870455,0.053058430552483,-0.010824144817889],[-0.014968615956604,0.036711316555738,0.031042153015733],[0.033071912825108,0.024339184165001,-0.067522838711739]],[[-0.10662707686424,0.015277608297765,0.0087901717051864],[-0.002399631543085,0.042152665555477,0.013117956928909],[0.062150500714779,-0.014561478048563,-0.10500102490187]],[[-0.035405784845352,0.00062169262673706,0.063976690173149],[-0.035112097859383,0.060469906777143,0.11901420354843],[0.042554926127195,-0.050434194505215,0.016424706205726]],[[-0.060137242078781,-0.039869032800198,-0.058888848870993],[-0.15631745755672,-0.014665461145341,0.10854443907738],[0.08048415184021,0.010453211143613,0.010943818837404]],[[-0.0084600914269686,0.0067127225920558,0.02589357830584],[-0.027825562283397,-0.040966376662254,0.081240065395832],[0.094625882804394,0.0021885661408305,0.11508426070213]],[[-0.024148093536496,0.014994349330664,-0.011025169864297],[-0.014238444156945,0.024207692593336,0.14184400439262],[-0.038356471806765,0.02581618912518,-0.11041665822268]],[[-0.026146044954658,0.12230087816715,0.047846850007772],[0.048835549503565,-0.083384782075882,0.0079625826328993],[-0.066704399883747,-0.059585407376289,-0.045935735106468]],[[-0.020820217207074,0.010822488926351,-0.18608404695988],[-0.0019178346265107,-0.09691060334444,-0.10371640324593],[0.041036527603865,-0.011000608094037,-0.10047168284655]],[[0.03916746750474,0.059219472110271,-0.10407657921314],[0.14929853379726,-0.026893861591816,-0.078878134489059],[-0.0085930116474628,-0.055351257324219,0.061874039471149]],[[0.12041589617729,-0.031611256301403,0.075558416545391],[0.062157787382603,-0.083568416535854,-0.065588533878326],[-0.047846000641584,-0.041390176862478,-0.060522831976414]],[[0.041261877864599,-0.001773314201273,0.078512474894524],[0.0053034797310829,-0.098308995366096,-0.0034449412487447],[-0.05895459279418,-0.064901188015938,0.0074999686330557]],[[-0.085983514785767,-0.04566678404808,0.010483145713806],[-0.055651228874922,0.066720187664032,0.024302903562784],[-0.026126889511943,0.012448993511498,-0.16028425097466]],[[-0.019458303228021,-0.017430098727345,0.041362721472979],[-0.090921729803085,-0.058372307568789,0.0063806637190282],[-0.10034865140915,-0.13462583720684,0.02190381474793]],[[0.04390386864543,0.05099443718791,-0.027206705883145],[0.039068441838026,-0.066381737589836,0.034498028457165],[-0.014890077523887,0.04256347194314,-0.064570382237434]],[[-0.020901156589389,0.00032690435182303,-0.042727187275887],[0.0055226674303412,0.025246992707253,-0.034950811415911],[0.0091223940253258,-0.079734526574612,-0.071323826909065]],[[-0.18758536875248,0.092093393206596,-0.060433398932219],[0.044399984180927,-0.0060443077236414,0.048114351928234],[0.022553062066436,-0.048723146319389,0.076285108923912]],[[0.035117462277412,0.052766390144825,-0.088108941912651],[-0.096609592437744,-0.056346546858549,0.065507017076015],[-0.043230928480625,-0.063962854444981,-0.052880305796862]],[[-0.044810134917498,-0.10378777980804,0.11029056459665],[-0.020200638100505,-0.04754438623786,-0.026809168979526],[-0.040318086743355,0.080682456493378,0.016062553972006]],[[0.0054340190254152,-0.014621914364398,-0.023082997649908],[-0.035032439976931,-0.0010835789144039,-0.0040772738866508],[-0.05034813284874,-0.033622644841671,-0.0043160826899111]],[[0.045259598642588,0.060687299817801,-0.020137073472142],[0.058741897344589,-0.030497208237648,0.017668968066573],[0.20009268820286,0.085798121988773,-0.095599845051765]],[[0.083816766738892,-0.036155823618174,-0.16455499827862],[0.064749255776405,0.021882062777877,0.099818520247936],[0.071300238370895,0.013511508703232,-0.055813513696194]],[[0.063071236014366,0.0022701031994075,0.027304699644446],[0.037556156516075,0.056861899793148,-0.071007676422596],[0.0096084289252758,-0.085640020668507,-0.092710018157959]],[[0.023306204006076,-0.053229872137308,0.0086457459256053],[-0.039881426841021,0.029238978400826,0.0048834001645446],[-0.064886271953583,-0.01969937235117,0.016674606129527]],[[0.13080708682537,0.04766059294343,-0.027898300439119],[0.12594184279442,0.0054120142012835,-0.055697996169329],[0.046077743172646,-0.14265704154968,-0.093333877623081]],[[0.043626595288515,0.060975052416325,0.044422283768654],[0.002315797843039,0.025866493582726,0.028990505263209],[0.046254321932793,0.096457369625568,0.031558059155941]],[[0.066180638968945,0.023884072899818,0.094072565436363],[-0.031856194138527,-0.014929350465536,-0.051832359284163],[0.064837381243706,0.06138514727354,0.016581375151873]],[[0.089551404118538,0.0064820270054042,0.088775888085365],[0.039245549589396,0.038205128163099,-0.0096930051222444],[-0.017932804301381,0.13474036753178,0.041008237749338]],[[0.024203447625041,0.024578034877777,-0.10641615092754],[-0.05868798494339,-0.037699487060308,0.04421903938055],[-0.014137043617666,-0.072450555860996,0.014318181201816]],[[-0.0073641506023705,0.12119967490435,-0.098337508738041],[0.026895809918642,-0.046964205801487,0.032312050461769],[0.038881458342075,-0.086755998432636,0.00092335871886462]],[[0.023266756907105,0.041773244738579,-0.003405922325328],[-0.065374054014683,-0.018227325752378,0.05123657733202],[-0.10441773384809,-0.078912064433098,0.080884695053101]],[[0.060085214674473,0.054125782102346,0.045116674154997],[0.0624985024333,0.0079184351488948,-0.10951483249664],[0.097943432629108,0.0042304922826588,-0.039633296430111]],[[-0.095969289541245,-0.0035332888364792,0.040333595126867],[0.083945915102959,-0.066018983721733,0.025586474686861],[0.0625886246562,0.027765855193138,-0.036395136266947]],[[0.025515573099256,0.072250649333,-0.027021318674088],[0.019364062696695,0.010123692452908,0.027769491076469],[-0.010504419915378,0.078126959502697,0.10211570560932]],[[0.015578523278236,0.015756066888571,0.096814498305321],[-0.030795712023973,0.00044865364907309,0.003700403496623],[-0.0052158515900373,0.015916522592306,0.025267638266087]],[[0.088624835014343,-0.0058616823516786,0.0094640888273716],[0.081909865140915,0.056395143270493,0.074029758572578],[0.010284513235092,0.029055513441563,0.0025972565636039]],[[-0.0034936578013003,-0.061047028750181,0.013596266508102],[0.010709695518017,0.030946353450418,-0.034604508429766],[0.015042089857161,0.057307884097099,-0.027138391509652]],[[-0.027079930528998,-0.022065641358495,0.077397055923939],[0.010041552595794,0.15053237974644,-0.016213783994317],[-0.10918342322111,0.035234164446592,-0.11087816208601]],[[-0.016517367213964,-0.004085689317435,0.057532049715519],[-0.10835020244122,0.16541507840157,-0.01620177924633],[-0.058067828416824,0.11716555058956,0.089537881314754]],[[-0.0050098379142582,-0.043329417705536,0.0047918502241373],[-0.15513047575951,0.035944618284702,0.050742890685797],[-0.073414154350758,0.092877797782421,-0.038003496825695]],[[-0.010351515375078,0.028297150507569,0.12722116708755],[0.1099292114377,0.016172416508198,-0.10605839639902],[-0.060540366917849,0.063410446047783,-0.081278063356876]],[[0.0026862639933825,0.061836883425713,-0.070863261818886],[0.0086047053337097,0.031395245343447,0.051502246409655],[0.010449993424118,0.0086011961102486,0.0036100370343775]],[[0.030773600563407,0.006432709749788,0.055550951510668],[0.023965656757355,0.021601324900985,0.0026745900977403],[0.016882557421923,-0.093776233494282,0.022665273398161]]],[[[-0.076415985822678,-0.063027329742908,-0.0061490405350924],[-0.052030637860298,0.056625634431839,0.094554975628853],[0.10368154197931,-0.051907524466515,0.038412149995565]],[[-0.081108711659908,0.10941644757986,-0.075791604816914],[0.033406537026167,0.027648560702801,-0.0058589628897607],[0.064090073108673,0.091143108904362,0.092250742018223]],[[-0.059430070221424,-0.055673740804195,-0.069938436150551],[0.05639024823904,0.081546701490879,-0.039095807820559],[-0.082774423062801,0.0023959293030202,-0.027209805324674]],[[-0.049328915774822,0.26372539997101,0.026161398738623],[0.017071042209864,-0.17024648189545,0.13359096646309],[-0.22158515453339,0.004739795345813,-0.12921194732189]],[[-0.0049890480004251,-0.046023979783058,-0.03759927675128],[0.034029316157103,-0.084686435759068,0.017559291794896],[0.048521567136049,-0.057741984724998,0.018649209290743]],[[-0.063865773379803,0.089260093867779,0.0048281992785633],[-0.037974059581757,-0.038178779184818,0.026111094281077],[-0.089615687727928,0.0050850380212069,0.048954177647829]],[[-0.054962947964668,0.11691706627607,0.038443371653557],[-0.092640854418278,0.072397738695145,0.031181650236249],[0.046539500355721,-0.069908834993839,0.10020451247692]],[[0.081088542938232,0.023040864616632,0.03933297842741],[-0.089276097714901,0.047596607357264,-0.016039583832026],[-0.013780822046101,-0.015861485153437,-0.018436063081026]],[[-0.042464293539524,0.026936620473862,0.033751141279936],[-0.017014563083649,-0.029406828805804,0.044519875198603],[0.044731661677361,0.029231369495392,-0.030985593795776]],[[-0.0098056197166443,-0.011204916983843,-0.057373519986868],[-0.14643993973732,-0.024775333702564,-0.087363444268703],[0.0075340573675931,-0.067895144224167,-0.10431146621704]],[[0.053165290504694,-0.017956513911486,-0.015461109578609],[0.12285889685154,0.016689669340849,-0.068482287228107],[-0.067919328808784,-0.05163262039423,0.039793536067009]],[[0.021191207692027,0.070046834647655,-0.0008904985152185],[0.090486988425255,0.0071778292767704,-0.02156625315547],[-0.051658514887094,0.076206408441067,-0.040943700820208]],[[0.050809435546398,-0.11506765335798,0.22685481607914],[-0.12077394872904,0.080029748380184,-0.19829662144184],[0.14273105561733,-0.41775155067444,0.14968109130859]],[[-0.049590367823839,0.16526953876019,0.031820714473724],[-0.10686417669058,0.061762917786837,-0.010421370156109],[0.031045841053128,0.071953818202019,-0.017264192923903]],[[-0.10819724202156,-0.094112515449524,0.00088628352386877],[0.06476915627718,0.0025346779730171,0.10313399881124],[-0.012274029664695,0.043782614171505,-0.029430832713842]],[[-0.03543009981513,-0.0075121922418475,-0.10008504241705],[0.097047820687294,0.090527310967445,0.046686310321093],[-0.023646840825677,0.04336429014802,-0.092584893107414]],[[0.038835134357214,0.041268665343523,-0.064183920621872],[-0.09676118940115,-0.0095674796029925,-0.0012159709585831],[0.13755287230015,-0.05704502761364,0.021270025521517]],[[0.091889120638371,-0.042900998145342,0.016086306422949],[-0.2231666892767,0.099982433021069,-0.2471631616354],[0.054860100150108,-0.022044623270631,0.063275292515755]],[[0.04874212294817,0.013162959367037,0.045339737087488],[0.0051819742657244,-0.037257771939039,-0.05637376755476],[0.10920082777739,0.048694647848606,-0.055015802383423]],[[-0.10696672648191,0.19541348516941,0.12937553226948],[0.075781628489494,0.053314939141273,0.17723210155964],[0.0033329345751554,0.13531969487667,0.09469747543335]],[[0.076319523155689,0.071636565029621,-0.034222632646561],[0.042171601206064,-0.10543868690729,-0.054176457226276],[0.0622315146029,-0.17454546689987,-0.05126478895545]],[[0.041621755808592,-0.048055786639452,0.12071621417999],[-0.031975101679564,0.1277459859848,0.049274176359177],[0.056365005671978,-0.033665250986814,-0.087235935032368]],[[0.089977063238621,-0.12283816188574,0.094540439546108],[-0.19594722986221,0.05980708450079,-0.15905958414078],[0.09437757730484,-0.082137428224087,0.0025421073660254]],[[0.065301008522511,-0.085888154804707,0.062619872391224],[0.045935790985823,0.075351923704147,-0.0497005879879],[-0.0046297325752676,0.081961572170258,0.10612678527832]],[[-0.032534155994654,-0.0084519982337952,0.041540760546923],[0.0013782973401248,0.038911089301109,0.080546230077744],[0.044616471976042,-0.15006372332573,0.091010585427284]],[[-0.055765923112631,-0.045301739126444,0.056844938546419],[0.0566999129951,-0.032152894884348,-0.16267378628254],[0.12089095264673,0.027921607717872,0.081653855741024]],[[0.020576789975166,-0.057247780263424,0.094685256481171],[0.084817036986351,0.064611278474331,-0.076019205152988],[0.05559254437685,-0.10169592499733,-0.039914775639772]],[[0.0025033322162926,0.065526656806469,0.099943876266479],[-0.07302438467741,-0.054674003273249,-0.14200647175312],[-0.044962089508772,0.05513409152627,-0.038645040243864]],[[-0.11462837457657,0.035004142671824,-0.13382282853127],[0.055443722754717,-0.080649241805077,0.0023732036352158],[0.059332698583603,-0.026847710832953,0.046770460903645]],[[-0.012120781466365,-0.14984908699989,0.035838756710291],[-0.022696861997247,0.089668318629265,-0.11029854416847],[-0.12243449687958,-0.041366163641214,-0.12126448005438]],[[0.061401419341564,-0.1345349252224,0.17439393699169],[-0.18618044257164,0.00070488580968231,-0.19108057022095],[-0.011727107688785,-0.085347287356853,0.15822453796864]],[[-0.030497731640935,0.11302172392607,0.0055307387374341],[0.059058871120214,0.048841059207916,-0.0059818387962878],[0.019309349358082,0.16163440048695,0.039769042283297]],[[0.067708358168602,-0.19576957821846,0.049896184355021],[-0.00041530944872648,-0.050982367247343,-0.084737978875637],[0.062202028930187,-0.019043520092964,0.0038814342115074]],[[0.013548032380641,0.041111592203379,-0.082915022969246],[0.11084985733032,-0.11944538354874,-0.21955056488514],[0.0049907555803657,-0.061523456126451,-0.15519937872887]],[[-0.034977961331606,-0.0097099104896188,-0.013094267807901],[-0.050559490919113,0.029958868399262,-0.043409269303083],[-0.0044410065747797,0.12596952915192,0.11674484610558]],[[0.033806797116995,-0.19754879176617,0.067159697413445],[-0.1283878237009,0.17733839154243,-0.15571691095829],[0.044931929558516,-0.077983535826206,-0.0096840905025601]],[[-0.063430972397327,-0.034570567309856,-0.096307151019573],[-0.029171181842685,-0.1025595292449,-0.08157803863287],[-0.0077940467745066,-0.02272211201489,0.029233150184155]],[[-0.046770974993706,0.02114113047719,0.082715839147568],[-0.11968525499105,0.080803707242012,-0.010570170357823],[0.12422180920839,-0.07286174595356,-0.01949025131762]],[[-0.023032775148749,-0.10231985896826,0.06876727938652],[0.073974132537842,-0.00044518706272356,-0.0054949270561337],[-0.087770812213421,-0.030147902667522,-0.049652695655823]],[[0.024207606911659,-0.054376214742661,0.18119637668133],[-0.11883625388145,0.057464051991701,-0.013073144480586],[0.01296990737319,-0.15086150169373,0.17647275328636]],[[0.10334524512291,0.073598124086857,0.039648704230785],[-0.031402532011271,0.049951355904341,-0.095601871609688],[-0.12550921738148,0.034028060734272,0.12277815490961]],[[-0.12962079048157,-0.073016084730625,0.032792076468468],[0.046766351908445,-0.12822398543358,0.030372163280845],[0.023479286581278,-0.081932619214058,0.041633248329163]],[[0.01419229246676,-0.14706230163574,-0.0085944505408406],[-0.082120582461357,-0.029869228601456,-0.0043339813128114],[0.038621757179499,-0.070167250931263,0.042070619761944]],[[0.027959061786532,-0.10942769795656,0.025359956547618],[0.093663156032562,0.030086159706116,0.00044328987132758],[0.027798019349575,-0.093113154172897,-0.0064948457293212]],[[0.15426781773567,-0.26427066326141,0.011216292157769],[0.0601407289505,-0.015936451032758,-0.0028575146570802],[0.04969447106123,-0.065574400126934,-0.062096357345581]],[[-0.072988428175449,-0.037354558706284,0.16402995586395],[-0.088669948279858,-0.029768750071526,0.051901489496231],[-0.15659408271313,0.10643561184406,-0.072734728455544]],[[-0.017074126750231,0.019885821267962,0.12389042973518],[-0.0081619750708342,-0.10273225605488,-0.0091810412704945],[0.088975787162781,0.015878707170486,-0.0085258400067687]],[[-0.0071265669539571,0.19115886092186,-0.06170142441988],[-0.10002639144659,-0.11334539204836,0.16645747423172],[-0.094905637204647,5.4370302677853e-05,-0.094862721860409]],[[0.22138611972332,-0.037153977900743,0.035850923508406],[0.047749619930983,-0.14918303489685,-0.22168663144112],[0.16167776286602,-0.090031914412975,0.064102955162525]],[[-0.058766908943653,0.06674549728632,-0.065761648118496],[0.03784378990531,-0.018427573144436,0.036656066775322],[-0.073619827628136,0.038937266916037,0.06615075469017]],[[-0.038837883621454,-0.071313552558422,-0.07367717474699],[0.018088690936565,-0.052897769957781,-0.02249263599515],[-0.11121759563684,0.051093630492687,0.01291848346591]],[[0.077159650623798,-0.095524407923222,0.0024058753624558],[-0.095860496163368,0.053695097565651,-0.23381903767586],[0.11129476130009,-0.20913983881474,0.0033038349356502]],[[0.068019345402718,-0.07877492159605,0.056152019649744],[0.018634824082255,-0.11941616982222,-0.090203732252121],[0.08217791467905,-9.7686068329494e-05,-0.018215337768197]],[[-0.036602187901735,-0.076542474329472,0.071625143289566],[-0.086561173200607,-0.091550752520561,-0.05434263125062],[0.039577830582857,-0.051404494792223,0.050979048013687]],[[-0.082467176020145,-0.064154088497162,-0.011530645191669],[-0.22574797272682,-0.10103764384985,-0.081673920154572],[-0.11889636516571,-0.089837200939655,0.012550712563097]],[[0.11300799995661,-0.07173427939415,0.038064148277044],[0.010973902419209,-0.017766214907169,-0.053362105041742],[0.0065525006502867,-0.16825889050961,-0.030124150216579]],[[0.24756747484207,0.017082223668694,0.27709802985191],[0.033563796430826,0.14873698353767,0.087713494896889],[0.16282822191715,0.075484819710255,0.20849344134331]],[[-0.050706014037132,-0.026623521000147,-0.21155209839344],[-0.048046782612801,0.01786427013576,-0.12518672645092],[0.062297768890858,-0.12715421617031,-0.13062509894371]],[[-0.11569622159004,-0.087563015520573,-0.054528869688511],[0.092430591583252,-0.023694323375821,0.061000108718872],[-0.060102727264166,0.095366202294827,0.11139997839928]],[[0.027349594980478,-0.08935471624136,-0.059740398079157],[0.095601603388786,-0.0021949324291199,-0.067161336541176],[0.10861720144749,0.1145683079958,-0.046043265610933]],[[0.077427007257938,-0.029160592705011,-0.060029864311218],[0.034905664622784,-0.056081622838974,-0.0035793203860521],[0.099117532372475,0.014543361961842,-0.040554758161306]],[[0.023123569786549,0.066280528903008,0.0073724361136556],[0.060795176774263,0.067980080842972,-0.13171102106571],[0.10959810018539,-0.15113197267056,-0.058427590876818]],[[0.089928224682808,0.057762775570154,-0.1567562520504],[-0.024635320529342,-0.1088784635067,0.010847555473447],[-0.00076895585516468,0.096567779779434,-0.051823321729898]],[[0.11283385753632,-0.15213702619076,-0.053243085741997],[-0.0217350050807,0.097330279648304,-0.023410322144628],[0.019397061318159,-0.082837872207165,0.10620818287134]]],[[[-0.0095735592767596,0.091671764850616,0.008763724938035],[0.094947531819344,0.017313867807388,-0.073631785809994],[0.0517841540277,-0.063765116035938,-0.090431317687035]],[[-0.065392091870308,-0.014591151848435,0.067842036485672],[-0.043681412935257,0.095231369137764,-0.028312299400568],[0.040734179317951,-0.0044108019210398,0.030593644827604]],[[0.13668674230576,0.01299499720335,0.051611505448818],[0.06257152557373,-0.096896559000015,0.030506214126945],[-0.18616551160812,-0.069803655147552,0.074217535555363]],[[0.14153961837292,-0.057314787060022,-0.028102748095989],[0.10017302632332,0.046555511653423,-0.0082093356177211],[0.094321198761463,0.059570275247097,-0.12575286626816]],[[0.071885965764523,-0.0005105686141178,-0.0067644482478499],[-0.10588724911213,-0.0016020276816562,0.017361626029015],[-0.10375648736954,0.0494254976511,0.085809335112572]],[[-0.1680129468441,-0.062651924788952,-0.06635669618845],[-0.17164362967014,0.029067296534777,-0.040628656744957],[0.040193364024162,-0.044277712702751,0.07687047123909]],[[0.14028599858284,0.0044828574173152,0.049452636390924],[-0.011011711321771,-0.043762434273958,0.03457535803318],[-0.045567501336336,-0.092956252396107,0.015091437846422]],[[-0.0050404220819473,0.049998331815004,0.0061429436318576],[0.10044500231743,-0.13493658602238,0.055519554764032],[0.12640492618084,0.030731957405806,-0.14702652394772]],[[-0.0054755760356784,-0.011260233819485,-0.054785754531622],[-0.071399055421352,0.005840222351253,0.042401321232319],[0.045680910348892,0.012779362499714,0.032642882317305]],[[0.011943243443966,0.049545329064131,0.056945733726025],[-0.13916599750519,-0.22796089947224,-0.12980161607265],[-0.089921377599239,-0.11610649526119,-0.020600123330951]],[[0.0131910527125,0.1215000897646,0.03855986148119],[-0.09961874037981,0.10204993933439,0.0046531581319869],[-0.096392601728439,0.036970056593418,0.12871494889259]],[[-0.020682703703642,-0.30960264801979,0.019317554309964],[-0.17117990553379,-0.22621609270573,-0.054865133017302],[0.023454422131181,-0.098718978464603,0.058792158961296]],[[0.041459802538157,0.039155870676041,0.053724359720945],[-0.024674002081156,-0.074084758758545,-0.025679783895612],[0.0088100200518966,-0.025959841907024,0.086439244449139]],[[0.16978397965431,-0.015223962254822,-0.064808495342731],[-0.020817244425416,-0.057811260223389,-0.044385358691216],[0.020154371857643,0.068314470350742,-0.012873211875558]],[[0.00099759502336383,-0.10286775976419,-0.011924621649086],[0.0066281603649259,-0.053844146430492,0.0056912591680884],[0.059372451156378,-0.10585748404264,0.015383454971015]],[[0.027497069910169,0.064326792955399,-0.08538693934679],[-0.16494904458523,0.040045112371445,0.11583150923252],[-0.012539361603558,-0.0087754912674427,0.037438802421093]],[[0.12110026925802,0.0025112547446042,-0.074193730950356],[-0.08338638395071,0.048439331352711,-0.080334298312664],[0.0096445120871067,-0.012304506264627,-0.074829675257206]],[[0.056223049759865,-0.0091340290382504,0.12482396513224],[-0.11137738823891,-0.130495429039,-0.055514987558126],[-0.12050906568766,0.0050670732744038,0.055942945182323]],[[-0.072434261441231,-0.007184321526438,0.080055393278599],[-0.036657400429249,-0.14166428148746,0.13261067867279],[0.027972344309092,-0.070280164480209,0.16171623766422]],[[0.19591668248177,-0.035339668393135,-0.047375023365021],[0.031848091632128,0.056204583495855,-0.10348741710186],[0.093012109398842,0.1894316971302,-0.0060749365948141]],[[0.0028013151604682,0.12383484840393,0.078423015773296],[-0.12218491733074,0.019968189299107,-0.050593975931406],[0.050925008952618,-0.11364497989416,0.034613996744156]],[[-0.094906985759735,0.1002524793148,-0.045563470572233],[-0.17749471962452,0.038935411721468,0.03964639082551],[-0.040980458259583,0.16122907400131,0.041874449700117]],[[0.059217307716608,-0.051602408289909,0.074469462037086],[-0.044065684080124,0.048423711210489,-0.089807502925396],[-0.14328737556934,0.063624992966652,0.061012886464596]],[[-0.19512258470058,-0.099168792366982,-0.011194943450391],[-0.34194657206535,-0.0190160702914,-0.034211032092571],[-0.0035284776240587,0.0058202533982694,0.0040255300700665]],[[-0.15822049975395,0.1394377797842,0.0078092203475535],[0.034704305231571,0.079553700983524,-0.13599279522896],[0.057697918266058,-0.043410211801529,0.014623962342739]],[[0.013270112685859,0.063011690974236,0.056182377040386],[-0.07290868461132,-0.037990275770426,-0.063330695033073],[-0.12522087991238,-0.11616623401642,-0.017365228384733]],[[-0.13373780250549,-0.079268284142017,0.02737570554018],[0.048608150333166,-0.031205741688609,0.086485520005226],[-0.055188145488501,-0.036087710410357,0.28301647305489]],[[-0.027359427884221,-0.11467964947224,-0.00036981093580835],[-0.049297321587801,0.057888574898243,0.039669118821621],[-0.03211884573102,0.080810435116291,0.021033875644207]],[[-0.019311705604196,0.034631337970495,-0.078361943364143],[-0.14433859288692,0.032133113592863,-0.011909520253539],[0.049330931156874,0.032159741967916,-0.16319970786572]],[[0.11875637620687,0.074902653694153,0.059393245726824],[0.085311636328697,0.028004055842757,-0.031125508248806],[-0.063846610486507,-0.005880915094167,-0.027457186952233]],[[-0.075969099998474,0.076346397399902,-0.064949847757816],[-0.017924420535564,-0.10589038580656,-0.11351609230042],[-0.0041387393139303,0.020073242485523,0.078037425875664]],[[0.0030281341169029,-0.031405072659254,-0.10485274344683],[0.16199038922787,-0.021292759105563,0.057744331657887],[0.00076313794124871,-0.024608366191387,0.022831980139017]],[[0.011644304729998,0.02600627578795,0.10341286659241],[-0.091032832860947,-0.060132548213005,-0.044698800891638],[-0.05240198597312,-0.044766832143068,-0.11732905358076]],[[0.058202672749758,-0.06300862133503,-0.056598898023367],[-0.11610782146454,-0.23027785122395,0.037494692951441],[-0.13997420668602,-0.047904990613461,-0.056332163512707]],[[0.028611386194825,-0.075622871518135,0.093797110021114],[-0.031847383826971,0.0090425498783588,0.049989353865385],[-0.21942847967148,0.043516393750906,-0.037314485758543]],[[-0.12051470577717,-0.11055286973715,0.059502802789211],[0.050009541213512,0.072962015867233,-0.023251913487911],[0.002358014928177,0.035614579916,0.065141409635544]],[[0.15215550363064,0.080710664391518,-0.10976809263229],[-0.020515510812402,0.1291791498661,-0.11041517555714],[-0.035227458924055,-0.10938914120197,0.023607574403286]],[[0.10206690430641,0.027725921943784,0.03267166018486],[0.078542985022068,-0.091480419039726,-0.046294588595629],[0.069483727216721,0.10288499295712,-0.028961138799787]],[[-0.050546210259199,0.13267104327679,0.088770590722561],[0.032909210771322,0.087527051568031,-0.023400578647852],[0.0016236411174759,0.010065563954413,-0.030322933569551]],[[0.11358766257763,-0.060608275234699,-0.10355439782143],[-0.0062395902350545,-0.13997189700603,-0.11021088063717],[0.03990912437439,0.12440947443247,0.10846192389727]],[[0.058086816221476,-0.00082826730795205,0.028324434533715],[-0.22583639621735,-0.055119026452303,0.042967215180397],[-0.18615038692951,-0.11238899081945,-0.068030692636967]],[[0.098489679396152,-0.022851461544633,-5.8061021263711e-05],[-0.055743526667356,0.0026207130867988,0.052530903369188],[0.20864875614643,-0.013246592134237,-0.010501533746719]],[[0.018036356195807,0.15358527004719,0.057130228728056],[-0.10141795128584,-0.12620125710964,0.0301035605371],[0.080089598894119,-0.14313769340515,-0.028949903324246]],[[0.087935104966164,0.13520213961601,-0.028857367113233],[-0.052911933511496,-0.0013895925367251,-0.082253202795982],[0.067995473742485,-0.088770195841789,-0.028241124004126]],[[-0.16379798948765,0.093256741762161,-0.062347583472729],[0.026686239987612,-0.0088401660323143,-0.038735825568438],[0.031028756871819,0.034028325229883,-0.04116078093648]],[[-0.10040986537933,0.083242639899254,0.046475309878588],[-0.047949470579624,-0.13568235933781,0.043732210993767],[0.082836709916592,0.047625739127398,-0.026556277647614]],[[0.020750174298882,0.096464648842812,0.026691315695643],[0.063664458692074,0.027890719473362,-0.0022915876470506],[0.11444507539272,-0.044116050004959,-0.022904481738806]],[[0.1213201880455,0.030810259282589,-0.059440530836582],[-0.095361433923244,0.040011011064053,0.18199092149734],[-0.15501701831818,0.0081372857093811,-0.031001538038254]],[[-0.041822873055935,-0.028266252949834,0.08647695183754],[0.076097212731838,0.002984490711242,-0.12411203980446],[0.0946279540658,0.002200081711635,-0.15258687734604]],[[0.04481265693903,-0.017596822232008,-0.031456999480724],[0.037347570061684,0.034402139484882,0.0042789154686034],[0.06198351457715,-0.15854313969612,0.029589248821139]],[[0.10726966708899,0.13958881795406,-0.066574573516846],[-0.040363717824221,-0.022130724042654,-0.075979977846146],[-0.0088536096736789,-0.12075960636139,-0.01288066059351]],[[-0.022873573005199,-0.021891629323363,-0.0065323915332556],[0.060955259948969,-0.10070653259754,0.054834097623825],[-0.022132540121675,0.040155086666346,0.047448076307774]],[[0.078907251358032,0.27336674928665,0.034099187701941],[-0.1525623947382,-0.024433856830001,0.11182119697332],[-0.22627460956573,-0.074938304722309,-0.016591854393482]],[[0.037017207592726,0.0055379895493388,0.080657623708248],[0.24131964147091,-0.065378487110138,-0.043928679078817],[0.071097657084465,0.056474801152945,-0.17063322663307]],[[-0.12065549194813,0.012770028784871,-0.0096711860969663],[-0.21323648095131,-0.034846182912588,0.018247090280056],[0.023493878543377,-0.060013722628355,0.13399197161198]],[[-0.039529532194138,0.12056251615286,0.0021119874436408],[-0.023696901276708,0.013963337056339,0.11772606521845],[-0.017137801274657,0.081252455711365,-0.07503741979599]],[[0.24767191708088,-0.085651993751526,-0.01393704675138],[0.08684466779232,0.031584408134222,0.02684697508812],[0.091480329632759,-0.0071187289431691,-0.010420249775052]],[[-0.11633476614952,0.053541045635939,-0.08893309533596],[0.067241199314594,-0.017675502225757,-0.020188393071294],[0.12133448570967,-0.11560057848692,0.0044636917300522]],[[0.13408467173576,0.028545977547765,-0.01384857762605],[0.077997401356697,0.1731611341238,-0.12565504014492],[0.13445921242237,-0.083333536982536,-0.13331566751003]],[[-0.03605717793107,0.025704313069582,-0.027324521914124],[-0.0055402028374374,-0.036000728607178,0.08222172409296],[-0.087482057511806,0.019568368792534,-0.0068729952909052]],[[-0.085341453552246,-0.10173108428717,-0.01067091152072],[-0.041209362447262,-0.080151118338108,0.090630270540714],[0.017717776820064,0.085636921226978,0.016929222270846]],[[-0.018734198063612,0.041521281003952,0.12992329895496],[0.067469760775566,-0.045885931700468,-0.028685323894024],[-0.059989023953676,0.0082366149872541,0.022579248994589]],[[0.017045417800546,-0.035185322165489,-0.06649636477232],[-0.021722055971622,0.0090514179319143,-0.1151263192296],[0.056141924113035,-0.12250711023808,-0.055513024330139]],[[-0.20031008124352,0.057555355131626,0.049238655716181],[0.16689872741699,0.079599760472775,0.04001409932971],[0.070656165480614,0.015277996659279,-0.077001050114632]]],[[[0.036265883594751,0.058403752744198,0.066833212971687],[-0.037654954940081,-0.034070305526257,0.02229599840939],[-0.080927819013596,-0.050839532166719,-0.034227628260851]],[[-0.078022263944149,0.045925438404083,-0.022182215005159],[0.042729794979095,-0.016558147966862,-0.029109183698893],[-0.054595708847046,0.050983037799597,0.056681711226702]],[[-0.026761472225189,0.071072190999985,-0.010766604915261],[0.074115455150604,0.049736015498638,0.037725400179625],[-0.13011656701565,-0.075004898011684,0.0232202000916]],[[-0.016121895983815,0.045828256756067,-0.077589854598045],[-0.021405691280961,0.017886886373162,0.061371356248856],[-0.053616710007191,-0.011039420031011,0.050809182226658]],[[-0.021491643041372,0.0241121891886,0.046424955129623],[-0.021677915006876,-0.011485508643091,0.0453613512218],[-0.0404900200665,0.055053558200598,-0.07658763229847]],[[0.013601296581328,-0.0077790813520551,0.050786048173904],[-0.02433916926384,-0.013899926096201,0.025397133082151],[0.0023238712456077,-0.038541074842215,-0.012231103144586]],[[0.0066851158626378,0.014103644527495,0.0069842548109591],[0.03995318338275,0.03091699257493,-0.082907125353813],[-0.03994969651103,-0.028022825717926,0.05264151468873]],[[-0.031267911195755,-0.010003136470914,-0.03337175771594],[-0.027262020856142,-0.044881153851748,-0.028816977515817],[0.039960671216249,0.0017135940724984,0.13372866809368]],[[-0.00031586503610015,-0.11360505968332,-0.091132998466492],[-0.011339583434165,-0.098613515496254,-0.079360820353031],[-0.027563577517867,-0.15382923185825,0.035858456045389]],[[0.0075727659277618,-0.0065439455211163,0.01073573436588],[-0.048464808613062,-0.05041029304266,0.058056857436895],[-0.041245575994253,0.031289882957935,0.049193520098925]],[[-0.023056238889694,0.031217178329825,-0.033221147954464],[0.024667091667652,0.030797209590673,-0.0058690514415503],[-0.04238273203373,0.012136853300035,0.0072836126200855]],[[0.010296182706952,0.040253974497318,0.0048555438406765],[-0.10280930995941,-0.021775782108307,0.070953562855721],[0.097402289509773,-0.098411865532398,0.0060764355584979]],[[-0.047139767557383,-0.054124534130096,0.051009979099035],[0.033068884164095,0.031420025974512,-0.081161417067051],[0.0042570228688419,0.043790571391582,0.017674775794148]],[[-0.04925586655736,0.07339845597744,-0.038433477282524],[-0.0042911218479276,0.028428263962269,-0.077119648456573],[0.0074747540056705,0.037756536155939,0.018520038574934]],[[0.010257326066494,-0.030148869380355,-0.0064777201041579],[-0.01670241355896,0.073753289878368,0.055438663810492],[-0.054335311055183,-0.027958316728473,-0.03470216691494]],[[-0.013390593230724,-0.010620925575495,0.021999029442668],[-0.0019952352158725,-0.035486850887537,0.019149785861373],[0.063744269311428,0.012430212460458,-0.051989823579788]],[[-0.0045921001583338,0.0070885135792196,-0.032978024333715],[0.007540512830019,0.04400947317481,0.00093591376207769],[-0.068679012358189,0.064378008246422,-0.0031515657901764]],[[0.032670464366674,0.021367367357016,-0.0030465133022517],[-0.042789719998837,0.015735993161798,-0.0019964866805822],[-0.0051006395369768,-0.006674041505903,-0.013894901610911]],[[0.077318266034126,-0.02002484165132,0.00517388433218],[-0.025264477357268,0.043443601578474,0.0013943398371339],[0.010325602255762,-0.11700049042702,0.038541074842215]],[[0.030330026522279,-0.039559848606586,0.041386742144823],[-0.050945207476616,-0.17671692371368,0.07514750957489],[0.046237252652645,0.099022306501865,-0.039888069033623]],[[0.014747424982488,-0.01773221231997,0.0013296219985932],[-0.00071115902392194,0.014925920404494,-0.042141951620579],[0.013188634067774,-0.032183147966862,0.048274617642164]],[[-0.062113497406244,0.065489359200001,0.1118269264698],[0.04075550287962,-0.056841518729925,-0.056698027998209],[-0.036195635795593,-0.0057902242988348,0.0040540159679949]],[[0.013516431674361,0.0031369843054563,0.0053005171939731],[-0.0014754686271772,0.005181236192584,-0.022703323513269],[-0.023874206468463,-0.010074171237648,0.031627614051104]],[[0.014158962294459,-0.098064281046391,0.012983125634491],[-0.012177638709545,-0.036293968558311,0.027128625661135],[-0.0054477010853589,0.073182538151741,0.016174918040633]],[[0.094335749745369,0.11383105814457,-0.07523638010025],[-0.055634193122387,-0.00060339830815792,-0.059693239629269],[-0.045780304819345,0.042268004268408,-0.012329640798271]],[[-0.030336484313011,-0.0035910778678954,-0.00035827988176607],[0.04385794326663,0.064295664429665,-0.015858430415392],[0.0013355328701437,-0.05077600851655,-0.012919272296131]],[[-0.033905882388353,0.010724681429565,0.0080227265134454],[0.073664791882038,-0.024742471054196,-0.0034162374213338],[-0.049952261149883,0.031435336917639,-0.045966453850269]],[[-0.05476862564683,0.044488321989775,-0.053143821656704],[-0.0032132668420672,0.032914724200964,0.00042890332406387],[-0.0060604712925851,0.025583148002625,0.015695488080382]],[[-1.3368745385378e-05,0.07170756906271,-0.046202108263969],[-0.021888392046094,-0.064285233616829,0.070860020816326],[-0.011583616957068,0.011746499687433,-0.012845625169575]],[[0.030311895534396,0.010045573115349,-0.0099110910668969],[-0.035852607339621,-0.014960257336497,-0.024926491081715],[-0.0039282264187932,0.019373001530766,0.025754004716873]],[[-0.11764498054981,-0.073878675699234,0.089806705713272],[0.066477999091148,-0.079729504883289,0.060829821974039],[0.083106152713299,0.044675413519144,-0.067613676190376]],[[-0.016786128282547,-0.01548792142421,-0.039239823818207],[0.02426216378808,-0.062096759676933,0.056035801768303],[0.069289490580559,0.0063811321742833,-0.027475729584694]],[[0.0084619261324406,0.037337347865105,-0.020032422617078],[-0.03918618708849,-0.022197544574738,0.030835812911391],[-0.0099678533151746,0.060150820761919,-0.051228065043688]],[[-0.070403344929218,0.039168875664473,0.042423151433468],[-0.038734115660191,0.085042975842953,-0.066584773361683],[-0.036837678402662,-0.040373545140028,0.069052003324032]],[[0.034258473664522,0.016396436840296,0.050934229046106],[-0.10100225359201,-0.0011883465340361,-0.06453350931406],[0.086971335113049,0.031612444669008,-0.050823375582695]],[[0.058547396212816,0.052135687321424,0.072094112634659],[-0.095988385379314,-0.076038338243961,0.081555992364883],[0.02191998064518,-0.10858484357595,-0.0046156197786331]],[[-0.015647603198886,0.016765980049968,0.011743313632905],[-0.048795033246279,-0.0072515313513577,0.1134404540062],[0.01255533285439,0.014661812223494,-0.094375930726528]],[[-0.048484604805708,0.0149259082973,0.019590789452195],[0.018348898738623,0.06801800429821,-0.042347680777311],[-0.019886344671249,0.04142339900136,-0.037998836487532]],[[0.046767022460699,-0.088149607181549,0.046599440276623],[0.0093803498893976,0.010077147744596,-0.08362190425396],[-0.03437852486968,0.067331545054913,0.047931008040905]],[[-0.070333711802959,0.00047299906145781,0.0088608162477612],[0.098503924906254,-0.082374505698681,0.049929741770029],[-0.031057676300406,-0.048933435231447,0.075583919882774]],[[-0.0061652739532292,-0.035380676388741,0.030826848000288],[-0.089150980114937,0.010747876018286,0.032253362238407],[-0.02508433163166,0.091648943722248,-0.0037884407211095]],[[0.0038753391709179,-0.021169692277908,0.003813429037109],[0.013441283255816,-5.0539434596431e-05,-0.021843541413546],[0.1267818659544,-0.077374279499054,-0.035176210105419]],[[-0.0020683645270765,-0.033247672021389,0.040022827684879],[0.12364851683378,-0.031098950654268,0.012335132807493],[-0.070801876485348,-0.033357139676809,0.0015323916450143]],[[0.041827902197838,0.039939224720001,0.071393199265003],[0.17869871854782,0.0084827952086926,0.1280192732811],[0.076469466090202,0.14316336810589,0.05752019956708]],[[0.035283878445625,0.045865684747696,0.008177574723959],[0.0070550115779042,-0.088304117321968,-0.0028744132723659],[0.0099503863602877,0.00890510994941,-0.030178291723132]],[[-0.01754892244935,0.037486165761948,0.001518334960565],[-0.043182279914618,-0.055759102106094,0.0014190850779414],[0.023433899506927,0.021608838811517,0.028469383716583]],[[0.020114412531257,0.077053651213646,-0.0090087661519647],[0.050464488565922,-0.00664131809026,-0.054864693433046],[0.055064287036657,-0.11748103052378,-0.019046425819397]],[[0.0034959656186402,0.021413216367364,-0.018189517781138],[-0.021536886692047,0.097319155931473,-0.07816156744957],[0.0058471886441112,0.046158686280251,-0.052747529000044]],[[-0.0050534810870886,0.012098508886993,-0.0039835823699832],[-0.013666560873389,-0.081360220909119,0.078614071011543],[0.090457744896412,-0.04570510238409,-0.025118783116341]],[[0.0047478633932769,0.047366078943014,-0.0029131232295185],[-0.014381166547537,0.0051026828587055,-0.0030764120165259],[-0.011062198318541,0.020037032663822,-0.055719297379255]],[[0.021820427849889,0.052988324314356,0.011999962851405],[-0.051829945296049,-0.073505192995071,0.01532828528434],[0.038131158798933,-0.044277582317591,0.024155559018254]],[[-0.0074832919053733,0.031312223523855,0.018271384760737],[-0.04540142044425,0.046637903898954,-0.015875754877925],[0.0091794431209564,-0.014471382834017,-0.02955542691052]],[[0.071573346853256,-0.018191115930676,-0.0073946788907051],[-0.010378097184002,-0.028962919488549,-0.007233795709908],[-0.00010126580309588,-0.06320795416832,0.097632102668285]],[[0.001067285425961,0.047236405313015,-0.026834711432457],[0.0074885785579681,-0.01050410605967,-0.029402144253254],[0.0019460865296423,0.010945770889521,-0.0027680492494255]],[[0.023458739742637,-0.015508721582592,0.011570438742638],[0.064421020448208,-0.091501593589783,-0.027816029265523],[0.026539316400886,0.04751206189394,-0.044161342084408]],[[-0.023140160366893,0.11227427423,-0.070053778588772],[0.036549381911755,-0.0036061345599592,-0.043953936547041],[-0.031421821564436,0.021858546882868,-0.014192170463502]],[[0.16298301517963,-0.098015613853931,0.0023957868106663],[0.069655783474445,0.093632020056248,-0.13527971506119],[-0.075724333524704,0.0058898092247546,-0.051343947649002]],[[-0.050328902900219,0.02727834880352,0.049930073320866],[0.064757138490677,-0.05388643220067,-0.030026959255338],[-0.035428419709206,0.011683996766806,0.011182171292603]],[[-0.0098161492496729,-0.042626559734344,0.040008060634136],[-0.021429002285004,-0.039839413017035,-0.12490447610617],[0.10252576321363,0.0085992068052292,0.042032606899738]],[[0.0097615411505103,-0.04859409853816,0.063142880797386],[0.075908161699772,-0.0046807448379695,-0.025216486304998],[0.0047709625214338,-0.053592909127474,-0.022541703656316]],[[0.00303197465837,-0.035595215857029,0.021329388022423],[-0.033416200429201,0.13122379779816,-0.03760302066803],[0.007993046194315,-0.053226202726364,0.0042323474772274]],[[0.034159604460001,0.034900460392237,-0.089435949921608],[0.0097702462226152,-0.0089031048119068,0.0085036316886544],[-0.033432312309742,-0.034673012793064,0.076369985938072]],[[0.077721506357193,-0.098219484090805,0.033718097954988],[-0.039158325642347,0.00096830690745264,0.031286470592022],[0.02084619179368,0.01284809038043,-0.030425200238824]],[[0.039718478918076,0.020298760384321,0.0047944788821042],[-0.046239782124758,-0.089616723358631,0.0015047916676849],[0.022340353578329,0.061762642115355,-0.0085382042452693]]],[[[-0.08435021340847,0.080845005810261,0.042008448392153],[-0.07169846445322,-0.018261533230543,-0.14305686950684],[0.048355344682932,-0.047843635082245,0.027902700006962]],[[-0.0035054259933531,-0.12303845584393,-0.10439333319664],[0.080738879740238,0.024162018671632,-0.034809894859791],[-0.0046141496859491,0.16652452945709,0.17545121908188]],[[0.069708116352558,0.065039291977882,-0.020226573571563],[-0.046304862946272,0.049747064709663,0.0092732775956392],[-0.053505826741457,0.046189546585083,-0.04908699542284]],[[-0.068777807056904,0.10146363079548,0.078241027891636],[0.074740596115589,0.0019730611238629,-0.081107787787914],[0.039841916412115,0.069551706314087,-0.058676145970821]],[[-0.064795449376106,-0.043855730444193,-0.040843568742275],[-0.024829652160406,0.062054082751274,0.13370279967785],[-0.042086888104677,-0.03031937032938,0.059989586472511]],[[0.060349944978952,0.022825488820672,0.052978347986937],[-0.040766227990389,-0.06743448972702,-0.022979533299804],[0.086697101593018,0.0028112065047026,-0.0035051505547017]],[[0.12467855960131,0.090348832309246,0.055390276014805],[0.095377415418625,-0.0099105322733521,-0.021494532003999],[-0.1435928195715,-0.13272798061371,-0.34311267733574]],[[-0.028363142162561,0.012958163395524,-0.071383073925972],[0.014980142004788,0.033355593681335,0.013357819989324],[-0.019690660759807,0.17457844316959,-0.095530137419701]],[[0.0038309635128826,-0.078911706805229,0.029970239847898],[-0.00043414472020231,-0.0071013211272657,0.11992289870977],[-0.0081251226365566,-0.0061479602009058,-0.028840625658631]],[[0.019742656499147,-0.042285282164812,0.020771050825715],[0.076762527227402,-0.052312038838863,-0.18006551265717],[0.015396962873638,-0.14300383627415,-0.07758517563343]],[[-0.062682174146175,-0.035270873457193,-0.06207300722599],[-0.042640615254641,0.15785007178783,0.0074431165121496],[0.094515852630138,-0.031207298859954,0.070561893284321]],[[0.16789756715298,-0.2061325609684,-0.1948943734169],[0.089013911783695,-0.29342380166054,-0.084326200187206],[-0.031760711222887,-0.0008833299507387,0.094682797789574]],[[0.057063568383455,0.12195447087288,-0.083824969828129],[0.017841013148427,0.059678923338652,-0.11117867380381],[0.075672812759876,-0.059774529188871,-0.027865201234818]],[[0.013943656347692,-0.071965709328651,-0.12873478233814],[0.1073502600193,-0.0084456857293844,0.0047750556841493],[0.020037725567818,0.10458236932755,0.025140829384327]],[[-0.01439562253654,0.017523786053061,0.096216529607773],[0.021727565675974,-0.056869626045227,-0.044721633195877],[-0.030814504250884,-0.0083127031102777,0.10270941257477]],[[0.089431591331959,0.0077440934255719,0.10021543502808],[0.032115623354912,0.050317924469709,-0.049201186746359],[-0.075136847794056,0.025827571749687,0.098205618560314]],[[-0.022739944979548,0.03296360000968,0.078088507056236],[0.036670506000519,-0.034024395048618,0.046727102249861],[-0.07511643320322,-0.053796704858541,-0.083871051669121]],[[-0.091631717979908,-0.010946471244097,-0.09847928583622],[-0.042321376502514,0.044697519391775,0.14835035800934],[-0.072842262685299,0.0097845736891031,-0.029160866513848]],[[0.082915961742401,-0.11520749330521,-0.056281622499228],[0.042312182486057,-0.054974511265755,0.020191874355078],[0.059667982161045,-0.081363655626774,-0.058931794017553]],[[-0.036873061209917,0.060789655894041,-0.19854003190994],[-0.07301127910614,-0.068171359598637,0.0397541038692],[0.14556302130222,0.11981400102377,0.238755017519]],[[0.076461903750896,-0.085550412535667,0.069734804332256],[-0.063640989363194,0.050311248749495,-0.011279792524874],[-0.10534252226353,0.037107020616531,-0.0316032320261]],[[-0.026993505656719,0.1889765560627,0.13350202143192],[-0.072721362113953,-0.043589513748884,-0.016537986695766],[-0.016763532534242,-0.035767763853073,-0.18894191086292]],[[-0.12332624942064,-0.019492445513606,-0.12509985268116],[-0.06458730250597,0.062708482146263,-0.08769465982914],[0.078621469438076,-0.053163416683674,0.056644175201654]],[[0.01977764070034,-0.038243860006332,0.033434569835663],[0.036946799606085,-0.15006142854691,-0.14940120279789],[-0.049598388373852,-0.15974450111389,-0.13301494717598]],[[-0.047786690294743,-0.018331771716475,-0.0013202074915171],[-0.042783364653587,0.08048902451992,-0.039475582540035],[0.1125829666853,-0.0092048579826951,0.10944416373968]],[[0.027260355651379,0.066532216966152,-0.070693358778954],[0.074903219938278,0.072409026324749,-0.055369969457388],[0.016436150297523,-0.071168296039104,-0.20443384349346]],[[0.13687072694302,0.070753753185272,-0.1662845313549],[0.0028193893376738,-0.073523633182049,-0.080573655664921],[-0.019663227722049,-0.015228198841214,-0.12999442219734]],[[-0.14330819249153,-0.019382249563932,-0.030292062088847],[0.00059928168775514,-0.15432508289814,-0.024051791056991],[-0.068297691643238,0.057603426277637,0.3597309589386]],[[0.043539840728045,-0.093213900923729,0.026644354686141],[0.0388458147645,0.064152926206589,-0.0056563206017017],[0.041249256581068,-0.00031962335924618,-0.12762509286404]],[[0.020820237696171,0.10045927762985,0.0071902382187545],[-0.02864932641387,-0.15505076944828,-0.073884703218937],[-0.073124222457409,-0.11279161274433,-0.028994932770729]],[[-0.14076554775238,-0.070195145905018,-0.22121983766556],[0.070933647453785,-0.0018572107655928,-0.013280531391501],[0.13042432069778,-0.011128844693303,0.20859631896019]],[[0.064171738922596,-0.083682648837566,-0.088053874671459],[-0.0040646204724908,-0.049285791814327,0.063239581882954],[0.18753841519356,0.017105095088482,0.10125806182623]],[[-0.025016747415066,0.019765947014093,0.060134299099445],[-0.051204446703196,0.011705267243087,0.10357878357172],[0.073046997189522,-0.11155468970537,-0.051466960459948]],[[-0.0316430516541,-0.062357753515244,-0.026134688407183],[-0.061425283551216,-0.03063278645277,0.033235751092434],[0.068351119756699,-0.082511410117149,0.012518261559308]],[[-0.015898475423455,0.084500133991241,-0.059831082820892],[-0.054374702274799,-0.057507030665874,-0.10003868490458],[0.14566445350647,0.082691438496113,-0.098946258425713]],[[0.0069323028437793,-0.19566123187542,-0.020605653524399],[0.088028222322464,-0.024653058499098,-0.029443399980664],[-0.042680229991674,0.013671386986971,0.0093154096975923]],[[0.066209480166435,0.0052994694560766,0.078378230333328],[0.020177204161882,0.11450032889843,0.01757855899632],[-0.034592024981976,-0.085903413593769,-0.21020038425922]],[[-0.035166695713997,0.014456982724369,-0.057146850973368],[0.086732305586338,0.055764749646187,-0.034315012395382],[0.04187174513936,0.096298173069954,0.12225264310837]],[[0.11889858543873,0.0019346373155713,-0.08746463060379],[0.04014004394412,-0.13735154271126,0.0081632863730192],[-0.027443025261164,-0.046824779361486,0.22419704496861]],[[-0.023208511993289,0.017973765730858,-0.031642787158489],[0.098857313394547,-0.005666327662766,-0.16187331080437],[-0.07599650323391,-0.02767600491643,0.09077326208353]],[[-0.0050630224868655,-0.15569213032722,-0.049031920731068],[0.0040707178413868,-0.0031255003996193,0.021078316494823],[-0.028066899627447,-0.024416102096438,0.093469381332397]],[[0.071620307862759,-0.012228564359248,-0.11542718857527],[-0.0014456142671406,0.057354055345058,0.0059223682619631],[-0.026731450110674,0.17142350971699,0.093819603323936]],[[-0.030681360512972,0.09099605679512,-0.019788293167949],[0.040675785392523,0.12303360551596,-0.089580126106739],[-0.035165145993233,-0.0730836763978,0.034177105873823]],[[0.063165716826916,0.016105523332953,0.019629856571555],[-0.0089920209720731,-0.025276187807322,-0.019983176141977],[0.035803854465485,-0.11311346292496,0.044707112014294]],[[0.16988354921341,-0.023381795734167,-0.017490491271019],[0.056013695895672,-0.0024187143426389,-0.025421848520637],[-0.091540887951851,-0.18066483736038,-0.017975008115172]],[[0.027056174352765,0.084529086947441,-0.094119593501091],[0.039199437946081,0.039067529141903,-0.045559875667095],[-0.050331979990005,0.062678560614586,-0.076500028371811]],[[-0.054179392755032,-0.057049568742514,-0.092837505042553],[-0.0049094241112471,0.17336969077587,0.13429981470108],[0.006004408467561,0.077223554253578,-0.21035024523735]],[[0.0062222206033766,-0.10714073479176,0.16058920323849],[0.014039388857782,-0.02741258777678,0.024382127448916],[0.00061518960865214,-0.0068836314603686,-0.10797916352749]],[[-0.10580517351627,-0.074580006301403,0.11692930757999],[0.007231330499053,0.033327620476484,0.031050655990839],[0.034531630575657,-0.067198909819126,0.13548466563225]],[[0.0083204703405499,0.16202813386917,-0.05051189661026],[-0.05241858959198,0.10462020337582,0.048556134104729],[0.10182692110538,0.037271019071341,-0.047012757509947]],[[0.083763629198074,0.023842349648476,-0.031294047832489],[-0.070271521806717,-0.085405059158802,-0.074586644768715],[0.0965171828866,0.058318220078945,-0.15948839485645]],[[-0.015720473602414,-0.0013141782255843,0.074081502854824],[0.013113467022777,-0.017426433041692,-0.1499255001545],[0.0021750836167485,0.044971615076065,0.075103014707565]],[[0.13422602415085,0.034167893230915,0.099881142377853],[-0.035622652620077,-0.065446771681309,0.099065266549587],[-0.1496195346117,-0.021690346300602,-0.07622592151165]],[[-0.055099066346884,0.071968898177147,0.022733708843589],[0.025688268244267,0.09659930318594,0.11512486636639],[-0.058129385113716,-0.0959617421031,-0.014539105817676]],[[0.053453847765923,-0.075012564659119,0.11152544617653],[-0.043587274849415,-0.096715047955513,-0.0013387383660302],[-0.096453107893467,-0.11732166260481,-0.052454262971878]],[[0.0081495027989149,0.11699019372463,0.060617197304964],[-0.040504947304726,0.043032206594944,0.024995040148497],[-0.0156629383564,0.12319812178612,0.091898761689663]],[[-0.086593478918076,-0.12182246148586,-0.010230377316475],[0.052066326141357,0.022730959579349,0.09332101047039],[0.032467816025019,0.13376778364182,0.16088218986988]],[[-0.092654280364513,0.040300238877535,0.051648829132318],[-0.17866399884224,-0.053183790296316,0.12136191129684],[0.047527637332678,-0.061064280569553,0.087317422032356]],[[-0.11267443746328,-0.058986131101847,0.13241058588028],[-0.071688421070576,0.081150330603123,0.20147626101971],[0.054294027388096,0.076447010040283,0.10884452611208]],[[-0.086200453341007,0.047223914414644,0.081866398453712],[-0.13142350316048,0.14135849475861,0.082255356013775],[-0.064185693860054,-0.0052183587104082,-0.060569599270821]],[[0.10711514949799,0.029379734769464,0.066777870059013],[0.020809050649405,-0.01649185270071,0.043729428201914],[-0.1124282181263,-0.00068935344461352,0.047639038413763]],[[0.023700693622231,-0.0071552828885615,0.067756406962872],[-0.0040507442317903,0.02857961319387,-0.062383275479078],[-0.13934518396854,0.034870766103268,0.031724639236927]],[[0.027463981881738,-0.0635636895895,0.12438871711493],[-0.0017793296137825,0.0065940017811954,0.056619998067617],[0.027620447799563,-0.062862448394299,-0.049875158816576]],[[-0.23132275044918,-0.11761552840471,-0.0072979270480573],[-0.029454244300723,-0.051185816526413,0.23437866568565],[-0.025234010070562,0.23976975679398,0.10651699453592]]],[[[0.10476516187191,-0.012995078228414,-0.021003913134336],[0.04658879712224,-0.021913969889283,-0.061200957745314],[0.0048767030239105,0.12640875577927,0.071179270744324]],[[-0.011928221210837,0.026191029697657,0.059771157801151],[0.021990977227688,0.051245797425508,-0.018437659367919],[0.066961482167244,0.14327728748322,-0.094146743416786]],[[0.02171434648335,0.041786473244429,0.01439780369401],[0.087380960583687,-0.088680237531662,0.0088220676407218],[-0.24867804348469,-0.029925644397736,0.023377314209938]],[[-0.1529770642519,0.0079665742814541,-0.14767348766327],[0.019158927723765,-0.0022467677481472,0.042131416499615],[-0.018662353977561,-0.18001073598862,-0.051637265831232]],[[0.050876572728157,-0.058757331222296,0.10925376415253],[-0.0044447262771428,-0.091673001646996,0.062200952321291],[-0.014365202747285,0.037075806409121,0.020081095397472]],[[-0.0074849976226687,-0.00018326018471271,-0.087554015219212],[0.023148098960519,0.050146795809269,0.0016790595836937],[-0.15729880332947,-0.029196817427874,-0.058822616934776]],[[-0.064723089337349,0.00085828109877184,-0.0086121344938874],[-0.017809461802244,-0.12435682117939,-0.14414390921593],[0.017732234671712,0.12552744150162,-0.003624151693657]],[[-0.071038939058781,-0.021058328449726,0.16763392090797],[-0.0082717705518007,-0.044533837586641,-0.037824980914593],[-0.077548205852509,-0.20269566774368,-0.060700736939907]],[[-0.064216397702694,-0.15518519282341,-0.05291535332799],[-0.00036682770587504,-0.027308709919453,0.031982988119125],[0.056723643094301,0.034507986158133,0.096384316682816]],[[-0.030727351084352,-0.12523011863232,-0.072028458118439],[-0.057618666440248,-0.12367810308933,-0.075341857969761],[-0.089701764285564,-0.15175057947636,-0.13457837700844]],[[-0.035944610834122,-0.0045096124522388,0.068547442555428],[0.030971609055996,0.00559176877141,-0.068980507552624],[-0.054337672889233,-0.13073712587357,-0.068675510585308]],[[-0.038556158542633,-0.006449899636209,-0.026813581585884],[-0.11380124092102,0.12019719928503,-0.15198183059692],[0.040026616305113,-0.047186147421598,0.015285681001842]],[[-0.075634621083736,-0.14026406407356,-0.056605990976095],[-0.0017539514228702,0.08302965015173,-0.06574110686779],[-0.067097179591656,-0.096108943223953,-0.076055742800236]],[[-0.031147113069892,-0.055066611617804,0.074895411729813],[0.017556576058269,-0.048709891736507,0.12326619029045],[-0.057085070759058,-0.049766309559345,0.056472312659025]],[[-0.013266914524138,-0.037237625569105,0.12784172594547],[0.0052031110972166,-0.019141947850585,-0.10795432329178],[0.10966844856739,0.05304167047143,0.007485774345696]],[[-0.01438938267529,-0.13760723173618,-0.0091061685234308],[-0.049748711287975,0.10560949146748,0.077140279114246],[-0.042284514755011,0.018019063398242,-0.021732373163104]],[[0.10423317551613,0.026732180267572,0.075097315013409],[0.012493169866502,0.055172774940729,0.0025159972719848],[-0.063083603978157,-0.070725850760937,0.046971887350082]],[[0.12579871714115,-0.10645395517349,0.050846919417381],[-0.0083908410742879,-0.0090428935363889,-0.030515203252435],[-0.031831558793783,0.0063882167451084,-0.043637033551931]],[[-0.084807924926281,-0.068277321755886,0.0093424245715141],[0.1028441414237,-0.024003181606531,0.11829247325659],[0.053930044174194,0.050667490810156,-0.073898173868656]],[[-0.086350508034229,-0.11678508669138,0.045554663985968],[-0.0343660376966,0.16169515252113,0.11310859024525],[-0.054425362497568,0.030040595680475,0.036331783980131]],[[0.056428376585245,-0.065168082714081,-0.019041072577238],[-0.079650387167931,0.071612320840359,0.0096754673868418],[-0.05986487492919,0.11994005739689,-0.021131666377187]],[[-0.036529373377562,0.13192568719387,0.14244724810123],[-0.032532893121243,-0.03272720053792,0.087869346141815],[-0.069926969707012,-0.0046096094883978,0.058986347168684]],[[0.059728071093559,-0.051100138574839,0.14236590266228],[-0.01885480247438,-0.0020681053865701,-0.058361303061247],[0.062186893075705,0.093585066497326,-0.059029310941696]],[[0.0097969546914101,-0.065733812749386,-0.039167828857899],[0.02085692808032,0.0016136075137183,-0.081060491502285],[-0.0097793946042657,-0.04424461722374,-0.029004663228989]],[[-0.065705440938473,0.03148390725255,0.16368737816811],[-0.027105821296573,-0.057784669101238,0.050884217023849],[0.01400095038116,0.032501820474863,0.047939654439688]],[[-0.0509541220963,-0.074365250766277,0.047743156552315],[-0.12988701462746,-0.099094353616238,-0.096206344664097],[-0.033651128411293,0.11766563355923,0.020595284178853]],[[0.051067166030407,0.021672105416656,0.089251615107059],[-0.21326567232609,-0.07304073870182,0.050960496068001],[0.028113311156631,0.061562966555357,-0.067936033010483]],[[0.058857150375843,-0.048199702054262,-0.01555753685534],[0.022451346740127,0.058015752583742,-0.013912851922214],[-0.017211001366377,-0.051714994013309,0.038703516125679]],[[-0.046658363193274,0.054377391934395,0.011389545165002],[-0.016315780580044,-0.22024513781071,0.14184604585171],[0.0085496231913567,-0.038169272243977,-0.07082249969244]],[[-0.021413587033749,-0.025372214615345,0.015716740861535],[-0.057170864194632,-0.051045142114162,0.0022182397078723],[-0.048957463353872,-0.052940502762794,-0.09881953150034]],[[-0.088774129748344,-0.098630994558334,0.08263061195612],[-0.15204876661301,-0.13736806809902,-0.097950987517834],[0.095410279929638,0.023058257997036,0.11984075605869]],[[-0.032307211309671,0.0060557117685676,-0.022089771926403],[-0.078338623046875,-0.007497479673475,-0.033915136009455],[-0.085888035595417,-0.046726383268833,-0.0085157649591565]],[[0.15338839590549,-0.11146458238363,-0.03758492320776],[0.013232351280749,-0.094117201864719,0.016863904893398],[-0.051501303911209,-0.063709191977978,-0.02335112541914]],[[-0.014316750690341,-0.12168548256159,0.076414600014687],[-0.092531122267246,-0.1486179381609,0.0085610318928957],[0.076385788619518,-0.032619822770357,0.0028988358099014]],[[0.022806355729699,0.03339109569788,-0.00014625888434239],[0.0090630138292909,-0.022869424894452,-0.10718107968569],[-0.10151214152575,0.026151547208428,0.025375701487064]],[[0.11219243705273,-0.01200280431658,0.030012052506208],[-0.053224585950375,-0.18576417863369,-0.048892550170422],[0.04860982298851,-0.0019368624780327,0.017499461770058]],[[0.036870967596769,-0.069443322718143,-0.033082790672779],[-0.031913932412863,-0.028367200866342,-0.071756534278393],[0.13384753465652,-0.0062298052944243,0.029673483222723]],[[-0.052394438534975,-0.080739937722683,-0.087985411286354],[0.0091851986944675,0.091906800866127,0.040030848234892],[0.019023867323995,0.062338784337044,-0.089050658047199]],[[0.093201376497746,-0.052176937460899,0.056955471634865],[-0.090469755232334,-0.096180498600006,-0.00011430091399234],[-0.11722102016211,-0.082391053438187,0.0090458504855633]],[[-0.12419347465038,0.030914736911654,-0.048555433750153],[-0.01931026391685,0.11336490511894,-0.068992704153061],[0.07067109644413,0.075222857296467,0.13978342711926]],[[-0.06309362500906,-0.041192974895239,-0.0023380659986287],[-0.24584959447384,0.0708879083395,0.020810127258301],[-0.080833300948143,-0.073706343770027,-0.035107053816319]],[[0.012034827843308,-0.0073726284317672,-0.041078992187977],[0.055983766913414,-0.099650487303734,0.030678221955895],[-0.19712546467781,-0.02192060276866,0.10446533560753]],[[0.0038821890484542,-0.0012611062265933,-0.019007848575711],[-0.032576929777861,0.1406431645155,-0.04564231261611],[0.042313940823078,0.081109374761581,-0.12210167199373]],[[0.20107039809227,0.099689960479736,-0.012704847380519],[-0.1112859621644,0.054017871618271,-0.051638834178448],[-0.017804738134146,-0.06152131035924,-0.10407391935587]],[[-0.046833898872137,0.027696518227458,-0.06596565246582],[-0.0040293554775417,0.033051893115044,0.014401832595468],[-0.10325794667006,-0.026920353993773,-0.071563228964806]],[[0.0098886759951711,-0.033410500735044,0.036271415650845],[-0.036935456097126,-0.12837791442871,-0.12290434539318],[-0.032870057970285,-0.058005858212709,-0.16303804516792]],[[0.0061968709342182,0.18067127466202,0.07680270075798],[0.039274096488953,-0.019108053296804,-0.045418549329042],[0.062836974859238,0.056160934269428,0.085159920156002]],[[0.036320328712463,-0.0011495526414365,-0.099194578826427],[-0.067903183400631,0.020443562418222,0.14153856039047],[-0.058523263782263,-0.10557819902897,0.0036795281339437]],[[0.0049075311981142,-0.089847303926945,0.0001904131640913],[0.037040457129478,-0.014444684609771,-0.053244214504957],[-0.13765351474285,-0.054681897163391,-0.0042886235751212]],[[0.019441016018391,-0.011404685676098,0.01138512045145],[-0.031685825437307,0.0073611931875348,0.039933878928423],[0.062923513352871,0.055130437016487,-0.038032460957766]],[[-0.0010294384555891,0.014226295053959,0.028328834101558],[-0.094505399465561,-0.071572601795197,-0.015414264053106],[0.02601058781147,-0.011972662061453,0.052031066268682]],[[-0.075083792209625,0.056881748139858,0.0075228018686175],[0.081473924219608,-0.037509616464376,-0.055671229958534],[0.0039671626873314,0.01910999789834,-0.11038958281279]],[[0.0852090716362,0.043010324239731,-0.14488483965397],[-0.076506540179253,-0.11181773990393,-0.16313289105892],[0.12262840569019,-0.068606473505497,-0.02758802101016]],[[-0.029522273689508,0.037980154156685,0.024430703371763],[-0.064420610666275,0.014710488729179,0.073704153299332],[0.00064275262411684,-0.011073883622885,-0.01592013426125]],[[0.042183168232441,-0.088141292333603,0.0031028131488711],[-0.028869781643152,-0.044724196195602,-0.091557554900646],[0.025554440915585,-0.03324618190527,-0.062154125422239]],[[0.021630328148603,-0.082402758300304,0.03361289203167],[0.0079517289996147,-0.085966281592846,-0.00062229367904365],[0.025006107985973,-0.0057040392421186,-0.048460528254509]],[[0.026367546990514,-0.0066203619353473,-0.077159017324448],[0.11630275845528,0.059468250721693,0.040119349956512],[-0.06437199562788,0.06688229739666,0.086328238248825]],[[-0.066791124641895,0.041724193841219,-0.085679791867733],[-0.011943708173931,-0.089334785938263,-0.010557316243649],[0.034760497510433,-0.013010941445827,0.0020229236688465]],[[-0.043424546718597,0.044783476740122,0.12736028432846],[-0.036319214850664,0.034810692071915,-0.022495290264487],[-0.033631812781096,0.12800669670105,0.035588763654232]],[[-0.026672041043639,0.13994188606739,0.085997708141804],[0.068275891244411,0.14862321317196,0.0071101551875472],[-0.037822660058737,-0.064044572412968,-0.014098194427788]],[[-0.053468026220798,-0.07706343382597,0.062563873827457],[-0.018876975402236,-0.092211842536926,-0.0087276296690106],[-0.05176343023777,0.030986802652478,-0.062967725098133]],[[0.076850816607475,0.017086155712605,-0.099894069135189],[-0.063156686723232,-0.10331143438816,-0.062238566577435],[-0.0026980673428625,0.038193814456463,-0.08122605830431]],[[0.10003942251205,-0.064181752502918,-0.049283511936665],[0.042349964380264,0.088129363954067,-0.028871243819594],[0.036297865211964,-0.00083959224866703,-0.08996307104826]],[[0.098422445356846,0.057973869144917,-0.0089408904314041],[-0.23925659060478,-0.012902007438242,-0.025266805663705],[-0.078846499323845,0.049552749842405,0.13948303461075]]],[[[-0.016757443547249,-0.065262526273727,0.11221595853567],[0.077341794967651,-0.070479139685631,0.025426596403122],[-0.035547561943531,0.0079552996903658,-0.075159810483456]],[[0.10207415372133,0.10650600492954,0.013943886384368],[0.024095010012388,0.12906193733215,-0.064865291118622],[-0.067992426455021,0.048109706491232,-0.15683208405972]],[[0.075954034924507,0.046792164444923,0.028066320344806],[0.029871409758925,-0.15139780938625,0.0051799365319312],[-0.15960077941418,-0.0148467393592,-0.11582740396261]],[[0.025920540094376,0.14803890883923,-0.10297322273254],[0.022975098341703,-0.24257385730743,-0.061485275626183],[-0.091236472129822,0.0086736688390374,0.15625496208668]],[[0.015082105994225,0.07430337369442,-0.022659217938781],[0.0011730226688087,0.012720914557576,-0.10977753996849],[0.09205300360918,-0.091005638241768,-0.059013403952122]],[[0.01443446520716,-0.00985505618155,-0.12316810339689],[-0.00034858428989537,-0.18318746984005,0.12616907060146],[-0.12173504382372,0.25871542096138,-0.038574762642384]],[[0.075497731566429,0.027756026014686,-0.050785526633263],[-0.016377247869968,-0.2312967479229,-0.012467486783862],[0.12668044865131,-0.060418948531151,-0.11471761763096]],[[0.065235882997513,-0.032206542789936,0.017240781337023],[-0.0017795551102608,0.009564770385623,-0.070403151214123],[0.14656345546246,-0.010215729475021,-0.063064455986023]],[[0.014123233035207,-0.096509538590908,0.055185228586197],[0.012446969747543,0.032423656433821,0.047706563025713],[0.069442957639694,-0.13140751421452,0.011053623631597]],[[-0.098896220326424,-0.14716017246246,-0.016466703265905],[-0.046755753457546,-0.068257577717304,0.0042275623418391],[-0.016226906329393,-0.12867800891399,0.051532953977585]],[[-0.03868667408824,0.046133071184158,0.1608595252037],[0.073375582695007,-0.0011722517665476,-0.007157338783145],[0.046464253216982,-0.21933221817017,-0.15450598299503]],[[-0.060995228588581,-0.19152237474918,-0.18251222372055],[-0.1578007787466,-0.019402025267482,0.15106472373009],[0.1304819136858,0.10435204207897,0.13889546692371]],[[0.083799228072166,0.12840209901333,0.038291200995445],[0.13111245632172,-0.16517367959023,-0.24845983088017],[-0.25190898776054,-0.02684298157692,0.051217958331108]],[[0.10786616802216,0.065476924180984,-0.057568039745092],[-0.015453221276402,0.013707200996578,0.075534835457802],[0.00040577526669949,-0.061803739517927,-0.16248093545437]],[[0.002316448604688,-0.10025700181723,0.031612105667591],[-0.10368514806032,-0.15382605791092,0.12365856021643],[0.068831592798233,-0.0051267873495817,-0.085479125380516]],[[-0.0090917078778148,-0.039094690233469,0.0087679764255881],[0.020306376740336,0.033553123474121,0.0084087522700429],[-0.018986547365785,0.021918479353189,-0.0065809772349894]],[[0.083850122988224,-0.031207652762532,0.00047512911260128],[0.081553533673286,-0.08135150372982,-0.0843136459589],[0.05189686268568,-0.012223983183503,-0.02433561719954]],[[-0.013260181993246,0.080369263887405,-0.031782615929842],[0.037072826176882,0.10255720466375,-0.039940435439348],[0.018814224749804,0.0038587558083236,-0.314966827631]],[[0.060954682528973,-0.01376942358911,-0.1662420630455],[-0.020080944523215,0.022956283763051,0.015563054941595],[-0.064750999212265,0.065929710865021,0.019169690087438]],[[0.083755992352962,0.026491586118937,0.12578150629997],[0.038193732500076,0.061691164970398,-0.012160652317107],[-0.064672954380512,0.097473695874214,0.16965082287788]],[[-0.026324786245823,0.11591314524412,0.056699991226196],[0.085904464125633,-0.065642230212688,-0.064602091908455],[-0.076832078397274,-0.010496800765395,-0.090515993535519]],[[0.20998764038086,-0.0090370383113623,-0.021487955003977],[-0.029050214216113,-0.13076142966747,-0.17031195759773],[-0.14471778273582,-0.19832763075829,-0.085236646234989]],[[0.16620302200317,-0.16527873277664,-0.040160857141018],[-0.18674868345261,-0.18493311107159,0.16326928138733],[0.074034661054611,0.025862799957395,0.11506781727076]],[[-0.043437529355288,0.013384645804763,-0.054270893335342],[0.073365725576878,-0.17808386683464,-0.031060039997101],[0.14494396746159,-0.049772713333368,0.021259024739265]],[[-0.039297714829445,-0.029870126396418,0.12103675305843],[-0.0045293346047401,-0.021932145580649,-0.12555338442326],[-0.037505932152271,-0.1205267906189,0.10405175387859]],[[0.0060918522067368,0.15287412703037,0.0047111613675952],[-0.19528429210186,0.18488991260529,-0.0918984785676],[-0.11606407165527,-0.00048748354311101,0.034525170922279]],[[0.10015425831079,-0.070928759872913,-0.00281289848499],[0.13861614465714,-0.19342768192291,-0.12968337535858],[-0.12380917370319,0.17499577999115,0.14218233525753]],[[0.033397622406483,-0.11962836235762,-0.11480838805437],[-0.1413552314043,-0.017724197357893,0.31209135055542],[-0.087395735085011,-0.022287840023637,0.22672620415688]],[[-0.089355282485485,0.099293798208237,0.089293166995049],[0.12523536384106,-0.13660681247711,-0.12492623180151],[-0.14096075296402,-0.1900898963213,-0.064419262111187]],[[0.066405817866325,0.079799354076385,0.021980715915561],[-0.026264328509569,-0.10824818909168,0.059115722775459],[-0.20822951197624,-0.064425952732563,0.022733015939593]],[[-0.061743352562189,0.084399819374084,-0.01804325543344],[-0.011998015455902,0.038151811808348,-0.010254015214741],[0.058279547840357,0.041764300316572,0.0081573566421866]],[[0.025823948904872,0.024227583780885,0.044976301491261],[0.0043854415416718,0.065999828279018,0.055758472532034],[-0.018982145935297,-0.0007937682676129,0.045377612113953]],[[-0.096613064408302,-0.080029293894768,0.11475479602814],[-0.070596441626549,0.019517155364156,-0.042116828262806],[-0.2913379073143,-0.14421556890011,0.20155107975006]],[[-0.11278385668993,0.031755644828081,-0.10068535804749],[0.0066782245412469,0.02290228754282,-0.0013870581751689],[0.10077860951424,-0.037005130201578,-0.044140238314867]],[[-0.0011676674475893,-0.044207759201527,0.017163434997201],[-0.051737308502197,-0.012425958178937,-0.0790741071105],[0.064811877906322,-0.059623777866364,0.14755468070507]],[[-0.045127712190151,-0.15773969888687,0.038290046155453],[-0.18269185721874,0.086634546518326,0.13092738389969],[0.062009334564209,0.031434286385775,-0.15214981138706]],[[0.030295696109533,-0.04745664820075,0.023448921740055],[0.020443420857191,0.022475546225905,0.041838742792606],[0.13135029375553,-0.027337871491909,3.3081108995248e-05]],[[0.010975239798427,-0.02274176850915,0.19881093502045],[0.093558005988598,-0.15647326409817,-0.13064865767956],[-0.25470831990242,-0.091407857835293,0.15878933668137]],[[0.017277076840401,-0.1082209944725,0.0070025916211307],[-0.037968125194311,0.072541989386082,-0.027297956869006],[0.12660379707813,-0.018532061949372,0.054363388568163]],[[0.06311197578907,0.040801301598549,-0.024921108037233],[0.011172820813954,-0.043745707720518,-0.044252004474401],[0.012061590328813,0.00023829002748244,-0.04831226542592]],[[-0.062538370490074,-0.0091973785310984,0.17550614476204],[-0.037859566509724,-0.030392238870263,-0.099722012877464],[-0.049327090382576,0.065307758748531,0.086090162396431]],[[0.0089969169348478,0.083707004785538,0.024836517870426],[0.064783476293087,-0.13828238844872,0.0055734529159963],[-0.25768488645554,-0.042797327041626,0.072146512567997]],[[0.077200509607792,0.070762358605862,0.0039150365628302],[0.058114521205425,0.092421136796474,-0.10354359447956],[0.036115236580372,-0.14540942013264,-0.20263177156448]],[[0.0093993786722422,-0.014399768784642,0.01170470379293],[-0.025248287245631,-0.019005563110113,0.022716736420989],[-0.039721038192511,0.11259813606739,-0.038397934287786]],[[-0.1223653331399,-0.055225942283869,0.037759710103273],[0.0013246537419036,0.064467735588551,-0.11474218964577],[-0.002535768551752,-0.15916411578655,0.047216925770044]],[[-0.013105911202729,0.026363372802734,-0.059783071279526],[-0.063237942755222,0.041707817465067,0.20986001193523],[-0.060795430094004,0.04620348289609,0.0071924272924662]],[[0.024451104924083,0.080048516392708,-0.058500178158283],[0.04748810082674,-0.056718029081821,-0.018108360469341],[-0.025793140754104,-0.16884200274944,-0.12905459105968]],[[-0.093984380364418,-0.0081400005146861,0.10932849347591],[0.010007502511144,-0.15443347394466,0.14289213716984],[0.050143487751484,-0.11472021043301,-0.11487761884928]],[[-0.1386998295784,0.06890619546175,0.058248102664948],[-0.087750531733036,0.10566931962967,0.023201124742627],[-0.15046274662018,-0.0018502777675167,-0.031024228781462]],[[-0.0034453133121133,0.082505241036415,-0.044299606233835],[-0.088737681508064,0.036968946456909,0.021619925275445],[0.018441246822476,0.039042394608259,-0.030141988769174]],[[-0.00082937785191461,-0.081835627555847,0.034492149949074],[-0.013253561221063,0.046915877610445,0.17431826889515],[0.00089864758774638,-0.027343967929482,-0.10397050529718]],[[0.04593463614583,-0.011924907565117,-0.22764167189598],[-0.26917994022369,-0.084451906383038,0.013778493739665],[0.14122772216797,0.13014853000641,0.1307986676693]],[[0.032871779054403,0.097737796604633,0.081906646490097],[-0.0049143922515213,-0.044568661600351,-0.11996422708035],[0.070483952760696,-0.019306136295199,-0.027346581220627]],[[-0.0017410812433809,0.084260188043118,0.13795632123947],[0.06926067173481,-0.029751284047961,-0.0675168633461],[-0.14774569869041,-0.15936289727688,0.17074663937092]],[[0.016542738303542,-0.23371641337872,-0.026010358706117],[-0.046158973127604,-0.12167222052813,-0.010431726463139],[-0.016183895990252,0.027179630473256,-0.010861851274967]],[[-0.085270918905735,-0.016992568969727,0.045379981398582],[0.022183367982507,0.059163112193346,0.014879113063216],[-0.06078128516674,-0.039401020854712,0.054602604359388]],[[0.12451695650816,0.05647599697113,-0.061059013009071],[0.016249829903245,0.066821672022343,0.041827041655779],[0.00091800827067345,-0.12242498248816,-0.0056684496812522]],[[-0.075193800032139,-0.057659104466438,-0.03042353130877],[-0.023618068546057,0.12657202780247,-0.081445313990116],[-0.091234192252159,-0.067177794873714,-0.10716450214386]],[[0.032693084329367,0.071141615509987,0.16827952861786],[-0.025704566389322,0.0061485162004828,-0.10463047772646],[-0.03983549028635,0.077966801822186,-0.049639187753201]],[[-0.025413522496819,0.0018512720707804,-0.0099969021975994],[0.061255756765604,0.076458595693111,-0.10346995294094],[-0.1808150857687,-0.083592034876347,-0.040141671895981]],[[0.024502152577043,0.061574779450893,-0.14051465690136],[0.075319968163967,-0.078817829489708,-0.0060184318572283],[-0.1682411134243,0.080130212008953,-0.029714226722717]],[[-0.079176597297192,-0.016622303053737,-0.034920956939459],[0.011317660100758,-0.0030885981395841,-0.019037760794163],[0.20114284753799,-0.10824796557426,-0.0086760045960546]],[[-0.086957708001137,-0.011193662881851,-0.17036066949368],[-0.02528060413897,0.056662440299988,0.081423103809357],[-0.16316995024681,0.14551617205143,0.011468224227428]],[[-0.041818737983704,-0.033132202923298,0.17613515257835],[0.067112430930138,0.13118632137775,0.12138374149799],[0.023535577580333,-0.20066170394421,-0.37200805544853]]],[[[-0.0089636230841279,0.059660512953997,0.093064874410629],[0.017140863463283,0.078919529914856,-0.039550982415676],[-0.067006170749664,0.054772038012743,-0.0063972435891628]],[[0.010497471317649,0.057449541985989,-0.085337519645691],[-0.088509052991867,0.12435813993216,0.0077365604229271],[0.016340978443623,-0.021867960691452,0.04733219742775]],[[0.045659549534321,0.0072628408670425,0.0033891419880092],[0.043909687548876,-0.075923271477222,-0.069418169558048],[-0.072943709790707,-0.0094051091000438,-0.012259439565241]],[[-0.13770085573196,-0.042301867157221,0.065268874168396],[-0.010818717069924,0.058977443724871,-0.09664735943079],[0.081824660301208,0.019433094188571,-0.1316614151001]],[[-0.054338835179806,0.057577103376389,-0.053817562758923],[-0.054932750761509,0.028762374073267,0.11340391635895],[-0.062364231795073,0.06799254566431,0.0090200388804078]],[[-0.1008109152317,-0.021195186302066,-0.020265495404601],[-0.015216286294162,-0.003065250813961,-0.0047145639546216],[0.1322158575058,0.1023501381278,0.017721254378557]],[[0.034017961472273,0.0011675551068038,0.023352427408099],[0.050894942134619,0.078861385583878,0.11369931697845],[-0.14913168549538,-0.085248567163944,-0.10561220347881]],[[0.092975817620754,0.10714404284954,-0.0326660387218],[-0.02184995636344,-0.00088482885621488,-0.0138986306265],[-0.022576244547963,-0.046518996357918,-0.019922504201531]],[[0.050073310732841,0.045736033469439,0.039918135851622],[-0.12707333266735,0.0040574590675533,0.052044585347176],[-0.013715271838009,-0.059235613793135,0.020193768665195]],[[0.14145715534687,0.033443983644247,0.090155228972435],[-0.080198369920254,0.0011937327217311,-0.043901033699512],[-0.056292172521353,0.070564709603786,-0.021758321672678]],[[-0.02119273878634,0.011411406099796,0.14376357197762],[0.036424275487661,0.03880337998271,-0.10124035179615],[-0.0077496441081166,0.076340608298779,-0.079304076731205]],[[0.020826935768127,-0.037043016403913,-0.08745851367712],[0.073291085660458,-0.14035074412823,0.10250335931778],[0.031238399446011,-0.17551662027836,0.049328800290823]],[[-0.0053731915540993,0.10391063988209,-0.053357258439064],[0.013824701309204,-0.12739148736,-0.081912070512772],[-0.003448034171015,0.012921208515763,0.061562329530716]],[[-0.076158836483955,0.019618384540081,0.018969722092152],[0.049767956137657,0.025488581508398,0.069750614464283],[0.0036464054137468,0.069551013410091,0.12097933888435]],[[0.091847255825996,0.031652890145779,0.067921787500381],[0.015624575316906,-0.096150420606136,-0.029652424156666],[-0.038164552301168,-0.048565290868282,-0.029069373384118]],[[0.0049385018646717,0.029033966362476,0.055852718651295],[-0.0067094406113029,-0.048421133309603,0.022365871816874],[0.027163809165359,0.039449878036976,-0.10059400647879]],[[0.015983594581485,0.073501475155354,0.024759700521827],[-0.063209421932697,-0.057325940579176,0.030388029292226],[-0.098748527467251,-0.069877475500107,0.027124065905809]],[[0.021157657727599,0.056597795337439,-0.013829267583787],[0.015558848157525,-0.0089703090488911,-0.069886535406113],[-0.050705131143332,0.011038917116821,0.011674196459353]],[[0.018821964040399,0.016513170674443,-0.022096132859588],[-0.0044645927846432,-0.14995193481445,0.031955406069756],[0.1576359719038,-0.061983969062567,0.048244196921587]],[[0.012359021231532,0.019972922280431,0.14780206978321],[-0.087210580706596,0.22406089305878,-0.0097288312390447],[0.10574075579643,0.044018935412169,0.16382621228695]],[[0.0084223207086325,-0.033175148069859,0.048918977379799],[0.067258164286613,-0.1938688158989,-0.048325341194868],[0.009676898829639,-0.036182761192322,0.032545074820518]],[[-0.028738519176841,-0.081688433885574,0.019133653491735],[-0.056236233562231,-0.022820862010121,-0.11398337781429],[-0.053371541202068,-0.045781213790178,0.028241772204638]],[[-0.12696745991707,0.020668672397733,0.079383872449398],[0.02871890924871,-0.0024516780395061,-0.12828281521797],[0.075096495449543,-0.10233281552792,-0.0049210200086236]],[[-0.02884285338223,-0.037819944322109,0.088403321802616],[-0.04148057103157,-0.084685690701008,-0.0032459669746459],[-0.062656320631504,-0.11678083986044,-0.083957836031914]],[[-0.062989443540573,0.010560091584921,0.11507079750299],[-0.018521167337894,0.098647020757198,0.11164937913418],[-0.0053728059865534,0.06495575606823,-0.017009783536196]],[[0.062042530626059,-0.021285204216838,0.03427604585886],[-0.014879310503602,-0.019397323951125,-0.057495635002851],[-0.029875162988901,0.02297136746347,0.032201580703259]],[[0.076425321400166,-0.06791365146637,0.0044918642379344],[0.028401527553797,0.05651268735528,-0.043540760874748],[0.008406107313931,0.0021862769499421,0.045295242220163]],[[0.11663003265858,-0.024439072236419,0.035817805677652],[-0.016088342294097,0.0053261681459844,0.030201360583305],[0.011851153336465,0.084772400557995,0.084749333560467]],[[-0.061313815414906,-0.045683395117521,0.032211005687714],[0.043712545186281,-0.10607516765594,0.035364557057619],[-0.079432800412178,-0.0050449725240469,-0.066994369029999]],[[0.018020318821073,-0.059277631342411,0.059630297124386],[-0.023237071931362,-0.021361973136663,0.062737673521042],[-0.031195353716612,-0.074187085032463,0.045360617339611]],[[0.078829571604729,0.01737629622221,-0.036641731858253],[-0.016696924343705,0.041928075253963,0.064435973763466],[-0.11394069343805,0.10363468527794,0.010861529968679]],[[-0.015185367316008,0.028609668835998,0.052552457898855],[0.012214220128953,-0.093708083033562,0.087955676019192],[0.10958641022444,-0.0035447857808322,-0.03089133836329]],[[0.0082350922748446,-0.073874652385712,-0.02479375526309],[-0.078639306128025,-0.09684344381094,0.082158759236336],[0.0363739579916,-0.11673491448164,0.056622728705406]],[[-0.033384848386049,-0.041272200644016,-0.053979631513357],[-0.073563925921917,0.011544438079,0.034436639398336],[-0.064356476068497,-0.013463499955833,0.048901289701462]],[[0.022578852251172,-0.10078541189432,0.0029157951939851],[-0.12085619568825,0.085652515292168,0.12431080639362],[0.12095219641924,-0.039922781288624,0.038287378847599]],[[0.020755836740136,-0.093897975981236,0.072541020810604],[-0.070204228162766,0.00014321588969324,-0.037416409701109],[-0.032751366496086,-0.0089335246011615,-0.070305466651917]],[[0.097856752574444,0.021381029859185,0.046698771417141],[-0.044581737369299,-0.037158191204071,-0.027278963476419],[-0.0057175024412572,0.055290315300226,0.054378338158131]],[[0.14346155524254,0.09000925719738,-0.037563782185316],[-0.12542714178562,0.096313826739788,0.043129909783602],[-0.0087962709367275,0.069813400506973,-0.027656149119139]],[[0.12761729955673,-0.093966469168663,0.059624850749969],[-0.030755568295717,-0.044218376278877,0.031426213681698],[0.025168925523758,0.0017297234153375,-0.048556841909885]],[[-0.11653760820627,0.15094776451588,-0.12325102090836],[0.12368404865265,-0.042413171380758,0.082320272922516],[-0.15279769897461,0.10552524030209,0.054005116224289]],[[0.011413148604333,0.0074445372447371,0.023763844743371],[0.039875093847513,-0.01758598908782,-0.042686928063631],[0.098342970013618,-0.037343919277191,-0.0023068473674357]],[[0.009955664165318,-0.030041320249438,0.018435426056385],[0.038433503359556,-0.03818603977561,-0.01787799410522],[0.12390777468681,-0.23543101549149,0.021743943914771]],[[-0.0013618275988847,0.031482391059399,0.020385263487697],[0.086423434317112,-0.11009399592876,-0.036309439688921],[0.021652821451426,-0.065054506063461,0.014856527559459]],[[0.0010185164865106,-0.074013985693455,-0.062782190740108],[0.12492552399635,0.020423177629709,-0.011711406521499],[0.031703811138868,-0.0098844356834888,-0.022805435582995]],[[0.0081370072439313,-0.18509523570538,0.084884263575077],[0.02182780764997,0.029308002442122,-0.091957025229931],[-0.038591470569372,0.034754700958729,-0.056233439594507]],[[0.0024187339004129,-0.06618570536375,0.0029089651070535],[0.018016304820776,0.046752944588661,-0.098326377570629],[0.019335040822625,-0.0077256415970623,0.097172640264034]],[[0.013840229250491,-0.010875225998461,-0.0077980142086744],[-0.047957994043827,-0.056557267904282,-0.050956014543772],[0.11267909407616,0.006294708698988,0.036919344216585]],[[0.026701299473643,-0.023632198572159,-0.078629016876221],[-0.0083875497803092,-0.0019847310613841,0.021028447896242],[-0.079208970069885,-0.0039517674595118,-0.032016143202782]],[[-0.033268578350544,-0.0086465105414391,0.016276013106108],[0.083264790475368,0.15055286884308,0.035350680351257],[0.0065822550095618,0.024935360997915,0.01792649179697]],[[-0.00062141398666427,0.05375961214304,-0.0015321840764955],[-0.019433973357081,0.0086668115109205,-0.060593996196985],[-0.035243205726147,-0.070944868028164,0.039691481739283]],[[-0.015818577259779,-0.0049836016260087,0.0050873002037406],[-0.10888553410769,0.059218626469374,-0.018967870622873],[0.036815315485001,-0.086920104920864,-0.019077753648162]],[[0.0088595226407051,-0.026929020881653,0.011251925490797],[-0.084091126918793,0.030454955995083,-0.058640029281378],[0.064118832349777,-0.051360175013542,-0.11681282520294]],[[0.1289694160223,0.0079848002642393,0.04968886077404],[-0.040978986769915,0.11280843615532,-0.046654134988785],[-0.020662650465965,-0.018951648846269,-0.06723664700985]],[[0.1661429554224,-0.076549209654331,0.043186321854591],[-0.029143080115318,-0.03265693038702,0.02162854000926],[-0.078423485159874,-0.071804188191891,-0.054181255400181]],[[-0.03424484282732,0.031632348895073,-0.053806249052286],[-0.04480641707778,-0.16432186961174,0.10453899204731],[0.097004592418671,0.053685907274485,-0.096554301679134]],[[0.027302177622914,0.058002509176731,-0.07685175538063],[-0.061723422259092,0.0072204465977848,-0.031562253832817],[-0.024130284786224,0.027463126927614,-0.022516287863255]],[[0.081759989261627,0.057003457099199,-0.017542496323586],[0.026372352614999,-0.074702888727188,0.084018275141716],[-0.035347022116184,0.0038015150930732,0.013748345896602]],[[0.0052426569163799,-0.020596427842975,0.053332455456257],[-0.12887617945671,-0.047283198684454,-0.0061713671311736],[0.061857767403126,-0.13579680025578,0.0046100886538625]],[[-0.031377270817757,-0.033723548054695,0.094928942620754],[0.13171039521694,0.058852083981037,0.053993552923203],[0.012307887896895,-0.022748796269298,-0.083457179367542]],[[0.023776851594448,-0.020121203735471,-0.02250867523253],[0.04316108673811,-0.022007633000612,-0.00025523349177092],[-0.010015716776252,-0.027230806648731,0.01523763500154]],[[-0.043000150471926,-0.014558305032551,0.034596376121044],[-0.10678471624851,0.053117346018553,0.027267910540104],[-0.028616080060601,-0.075610682368279,-0.029439417645335]],[[-0.051082465797663,-0.057823751121759,0.053552750498056],[0.0018114491831511,0.029343767091632,-0.018627615645528],[-0.0066379690542817,0.062209010124207,0.033774480223656]],[[0.017753709107637,-0.039519604295492,-0.13263563811779],[-0.099647395312786,0.024292722344398,-0.063208505511284],[0.088873580098152,0.042269572615623,-0.069381430745125]],[[-0.035433102399111,0.010910946875811,0.0087817665189505],[0.11261834204197,0.081216298043728,-0.12842299044132],[-0.02047703973949,0.0207394734025,0.0016776324482635]]],[[[0.15654474496841,0.083549246191978,-0.13623006641865],[0.019509088248014,-0.029732912778854,-0.032140035182238],[-0.043385982513428,0.0003922161704395,-0.023964857682586]],[[0.04830439388752,-0.00015207540127449,-0.028669416904449],[-0.12495659291744,-0.070061415433884,-0.009028559550643],[-0.017647037282586,0.03209738060832,0.085791036486626]],[[-0.014216384850442,-0.0051187532953918,-0.046257797628641],[-0.062987186014652,0.046160914003849,0.088852360844612],[-0.047544505447149,-0.031394563615322,-0.0058139730244875]],[[-0.05654338747263,0.017781594768167,0.048173695802689],[0.11255776137114,0.0066800992935896,-0.079939231276512],[0.11422667652369,-0.090976625680923,-0.044713728129864]],[[0.030018968507648,-0.049597855657339,0.00095080881146714],[-0.016136236488819,-0.051853071898222,-0.00061524205375463],[0.051029574126005,0.020830299705267,-0.031599074602127]],[[0.078432612121105,0.0037025313358754,-0.024895558133721],[-0.048480272293091,-0.094315767288208,-0.063258484005928],[0.047028932720423,0.11112567037344,-0.11318100988865]],[[-0.09081295132637,-0.011935276910663,0.10247970372438],[0.033134892582893,0.033106163144112,0.021943068131804],[-0.10105965286493,0.016149563714862,0.001274430193007]],[[0.10460113734007,-0.048336341977119,0.17216865718365],[-0.064185954630375,-0.0096988277509809,-0.091944970190525],[0.094183430075645,-0.032837778329849,0.076882317662239]],[[0.024154774844646,0.0087790247052908,0.019624669104815],[-0.084644787013531,0.039408665150404,0.072417728602886],[0.044069577008486,-0.096657305955887,0.0027847262099385]],[[0.085598468780518,0.014738616533577,0.0071009257808328],[0.028800826519728,-0.123400606215,-0.038175348192453],[0.017431985586882,-0.14593602716923,0.070586107671261]],[[0.080166958272457,-0.039041996002197,0.12055879831314],[-0.046736862510443,0.0045352471061051,0.033983279019594],[-0.12460396438837,-0.072405628859997,-0.093182504177094]],[[0.16198937594891,-0.0059007005766034,-0.022254714742303],[0.02877002954483,-0.11798640340567,-0.053146310150623],[0.089125327765942,-0.030771050602198,-0.064889937639236]],[[-0.0099561000242829,0.12512665987015,-0.022768957540393],[0.079246044158936,-0.0203594006598,0.02551643550396],[-0.078491300344467,0.10937438905239,-0.098570749163628]],[[0.065154694020748,0.094260774552822,-0.028051750734448],[0.0067576225847006,-0.020059728994966,0.054629072546959],[-0.11797596514225,0.040190517902374,0.11037237942219]],[[0.033496394753456,-0.0083799082785845,0.18315640091896],[-0.026176180690527,-0.038733843713999,-0.13445340096951],[-0.017788743600249,-0.0086233681067824,-0.12359411269426]],[[0.037474445998669,0.014505158178508,-0.013990302570164],[0.021365782245994,0.048363201320171,0.035805437713861],[0.1013777256012,0.0033096186816692,-0.14438989758492]],[[-0.090439967811108,0.073174566030502,-0.15263424813747],[-0.03751714527607,-0.10364999622107,0.088790036737919],[-0.040499735623598,0.014123987406492,0.048823338001966]],[[-0.064782485365868,0.022130154073238,0.048056934028864],[-0.030325897037983,-0.0757787078619,-0.0052065374329686],[-0.10512366890907,0.14949759840965,-0.052135437726974]],[[-0.026230875402689,-0.080141469836235,-0.045162867754698],[-0.029060617089272,0.052361916750669,0.13609282672405],[-0.0064938375726342,0.015440883114934,-0.095540516078472]],[[0.060602530837059,0.11645428091288,0.028073221445084],[0.086183652281761,-0.0053520314395428,0.17895121872425],[0.0027043863665313,0.027928676456213,0.22062596678734]],[[-0.073061637580395,0.061703000217676,-0.038662124425173],[-0.046319723129272,-0.13050971925259,0.0084930788725615],[-0.14543913304806,-0.10469967871904,-0.06974221765995]],[[0.079731330275536,0.097111329436302,0.0068414160050452],[0.0034515643492341,0.028749341145158,-0.01533958222717],[0.028931906446815,-0.026210924610496,-0.16505958139896]],[[0.08798360824585,-0.0052784802392125,0.0085833081975579],[0.085648819804192,-0.064207330346107,-0.018159762024879],[-0.14254707098007,-0.064524680376053,0.10675655305386]],[[0.11004243046045,-0.043535105884075,0.048969943076372],[0.0066149835474789,0.083542250096798,-0.13134181499481],[0.088433101773262,0.075367711484432,-0.010388068854809]],[[-0.075996667146683,-0.052741955965757,0.011557281948626],[-0.072449378669262,-0.0018264676909894,0.05904209241271],[-0.01627204567194,0.052679061889648,-0.0052808639593422]],[[-0.086311966180801,0.20211824774742,0.088799394667149],[-0.032104093581438,-0.059382133185863,0.085355222225189],[-0.15845715999603,-0.11136834323406,-0.017880167812109]],[[0.090162366628647,-0.11260978877544,-0.092500440776348],[-0.030612342059612,-0.074511423707008,-0.0054112779907882],[-0.001742196502164,-0.090884618461132,0.006519369315356]],[[0.096711546182632,-0.076744988560677,0.050651159137487],[0.15650828182697,-0.10214462131262,-0.12005180865526],[-0.05409412458539,0.0039961393922567,0.037624072283506]],[[0.021537687629461,-0.14531511068344,-0.075545810163021],[0.038598019629717,-0.022071992978454,0.078407965600491],[-0.01650851778686,-0.045599397271872,0.02255661226809]],[[-0.11183129251003,0.0086368191987276,-0.02567508071661],[0.029274471104145,0.0042957896366715,-0.07289195805788],[-0.012663471512496,-0.09061361849308,-0.099783889949322]],[[0.080687284469604,0.038416903465986,0.13502749800682],[0.022430960088968,0.066572897136211,-0.063117273151875],[0.022097939625382,-0.033492244780064,-0.10411167889833]],[[0.0066824671812356,0.15979720652103,0.030802179127932],[0.11690200120211,-0.05172136425972,0.036917883902788],[-0.098534628748894,0.052615817636251,0.16890838742256]],[[-0.024481093510985,-0.035557691007853,-0.028441023081541],[-0.090174123644829,-0.0045836418867111,-0.0061589903198183],[0.034771215170622,0.06093717738986,0.050204861909151]],[[-0.22101086378098,-0.0059413551352918,-0.14165398478508],[-0.12358036637306,-0.052914638072252,-0.0086233457550406],[-0.10038071125746,0.016702184453607,0.094328247010708]],[[-0.082095094025135,0.062635108828545,0.01380533259362],[0.037803173065186,0.031782981008291,0.081784099340439],[3.0624745704699e-05,0.054474573582411,-0.018183022737503]],[[0.048709213733673,-0.09516129642725,-0.16706067323685],[0.057331386953592,-0.017887366935611,0.0029016640037298],[0.0078842546790838,0.091620244085789,-0.048738077282906]],[[0.011999102309346,-0.13249517977238,0.032930564135313],[0.026175228878856,-0.026349894702435,-0.078308090567589],[0.053065672516823,-0.0079291742295027,-0.22762097418308]],[[0.067555412650108,0.061697654426098,0.031281966716051],[0.04888703301549,0.021203897893429,-0.15463106334209],[0.024652030318975,-0.039464686065912,0.031614080071449]],[[-0.09414280205965,0.061647646129131,0.057725768536329],[-0.047453846782446,-0.04466462507844,0.072269909083843],[-0.12095239758492,0.0074482951313257,0.051162570714951]],[[0.079617463052273,0.0032825113739818,0.12728793919086],[0.085761286318302,0.11341112852097,-0.096678197383881],[0.069697238504887,-0.047335270792246,-0.11616629362106]],[[0.10559726506472,0.036514736711979,0.15015131235123],[-0.0463537722826,-0.11275012791157,0.070904210209846],[-0.030642716214061,-0.048617843538523,-0.086296930909157]],[[-0.11213305592537,-0.055492114275694,-0.056933507323265],[0.11686306446791,-0.14851647615433,0.018803503364325],[0.028037244454026,0.11872856318951,-0.085522197186947]],[[-0.056565269827843,-0.026892155408859,0.052592180669308],[-0.11591658741236,0.010047261603177,-0.023339554667473],[-0.0076486454345286,-0.0022292011417449,0.25838324427605]],[[-0.05231811851263,0.051642667502165,-0.10937344282866],[0.084683857858181,-0.029891643673182,0.052679300308228],[-0.079468965530396,0.10910714417696,-0.021044420078397]],[[0.066208101809025,-0.15102729201317,0.10944869369268],[-0.031245116144419,-0.079400524497032,-0.049210477620363],[-0.058674372732639,-0.11931078135967,-0.016511376947165]],[[0.025551130995154,0.042877599596977,-0.12137390673161],[0.067763738334179,0.054148763418198,-0.14394371211529],[0.10558219254017,-0.011416972614825,0.01405540574342]],[[-0.085121147334576,0.003882922232151,0.0061297006905079],[0.17772556841373,0.050976902246475,0.067810140550137],[0.076361373066902,0.057428099215031,-0.010738640092313]],[[-0.041974298655987,-0.019913846626878,0.01836558803916],[-0.073806747794151,0.050039399415255,-0.031631089746952],[0.037229929119349,-0.037319876253605,0.14080721139908]],[[-0.060024574398994,0.028191572055221,0.058338802307844],[0.08119735121727,0.0018430199706927,0.02997850254178],[0.060699187219143,-0.065068237483501,-0.098588861525059]],[[-0.10923214256763,0.039644882082939,-0.025615835562348],[0.022823195904493,-0.072600714862347,-0.088362142443657],[-0.10594053566456,0.13492225110531,0.023449847474694]],[[-0.046302311122417,-0.010931290686131,0.12650536000729],[-0.12014599889517,0.072127029299736,-0.10846299678087],[0.036875255405903,-0.07634387165308,0.031520150601864]],[[-0.068009540438652,0.0055067734792829,-0.091971702873707],[0.1491377055645,-0.15338844060898,-0.12044646590948],[0.054760906845331,-0.0058967228978872,-0.04718941822648]],[[-0.20425145328045,0.062744669616222,0.10786424577236],[-0.12082359939814,-0.082744121551514,0.079897738993168],[-0.10614335536957,0.066198632121086,-0.10139848291874]],[[0.0074602533131838,-0.11761150509119,0.047740288078785],[0.034744869917631,-0.065277941524982,0.11829147487879],[0.067169927060604,0.002078857505694,0.0034587241243571]],[[-0.0024881723802537,-0.24897049367428,0.0025881987530738],[-0.12995173037052,0.031493850052357,-0.15531927347183],[0.0088081369176507,-0.088754944503307,0.08201190829277]],[[-0.042439628392458,-0.044440291821957,0.036015931516886],[0.013788142241538,0.036671094596386,-0.086125820875168],[-0.15763983130455,0.067149974405766,0.090218015015125]],[[0.12863437831402,-0.022117659449577,0.06092769280076],[0.21333311498165,0.089964032173157,0.14294497668743],[0.19514237344265,0.00070686108665541,0.022943561896682]],[[0.09428284317255,0.034940030425787,-0.066860742866993],[-0.10722358524799,-0.10770217329264,-0.015166726894677],[-0.037052758038044,0.025198953226209,-0.043013833463192]],[[0.0061169895343482,-0.013654100708663,0.12202367186546],[0.021718828007579,-0.025173883885145,0.16981282830238],[0.038112115114927,-0.0079111745581031,0.12128096073866]],[[-0.15535461902618,0.064450852572918,0.00042547294287942],[-0.085422061383724,-0.058753821998835,0.00040852566598915],[0.0063059297390282,-0.026244573295116,0.079748824238777]],[[0.068692557513714,-0.017759922891855,0.061771761626005],[-0.062223453074694,-0.088607892394066,-0.21466362476349],[0.019973810762167,-0.02394200488925,-0.031566850841045]],[[-0.14712128043175,-0.038782313466072,0.025426998734474],[-0.12826564908028,-0.082195661962032,-0.0349639095366],[0.031045541167259,-0.089023299515247,0.073825031518936]],[[-0.0014558464754373,-0.11758465319872,-0.037824705243111],[0.038653220981359,-0.031231520697474,0.084067143499851],[-0.091481626033783,-0.0533826649189,-0.0017136755632237]],[[0.0049782902933657,-0.04404678195715,-0.17651601135731],[-0.073368407785892,0.028711443766952,0.024938065558672],[0.18316732347012,0.10041222721338,0.040478188544512]]],[[[-0.079657383263111,0.027423638850451,-0.024298503994942],[-0.056711439043283,0.043224833905697,-0.01028033066541],[-0.022670421749353,0.054863005876541,-0.11974219977856]],[[0.070301420986652,0.072658553719521,-0.097671024501324],[0.014024392701685,-0.052667412906885,0.039289101958275],[-0.064325079321861,-0.047259632498026,-0.057701535522938]],[[0.0028636669740081,-0.068653278052807,0.03891559690237],[0.020585283637047,0.04193577170372,-0.032420188188553],[-0.10857512056828,0.11499694734812,0.058397889137268]],[[-0.0066862185485661,0.06832704693079,0.017247639596462],[-0.030643958598375,-0.14441005885601,0.19897150993347],[-0.0073156431317329,-0.15744559466839,-0.059268921613693]],[[-0.025643417611718,-0.045530565083027,0.018995121121407],[0.0066747642122209,-0.027477471157908,-0.0014870832674205],[0.031824860721827,-0.0030063225422055,-0.085163250565529]],[[-0.038045331835747,0.0043127997778356,-0.063523210585117],[-0.0017801714129746,-0.018789008259773,0.056743394583464],[-0.0735929235816,-0.0020701189059764,-0.12410249561071]],[[-0.031570788472891,-0.033655289560556,0.0096652209758759],[-9.8386371973902e-06,-0.092263855040073,0.022800445556641],[0.017711522057652,-0.059267062693834,-0.024839336052537]],[[0.018301432952285,0.081489682197571,0.068862669169903],[0.016869058832526,0.077476806938648,-0.057342041283846],[-0.013452404178679,-0.13103853166103,-0.12262250483036]],[[-0.083825595676899,0.00093464157544076,-0.025800468400121],[-0.066235020756721,0.089977763593197,0.12828631699085],[-0.06331767141819,0.0025333652738482,0.045558180660009]],[[-0.12293814122677,0.016002986580133,0.07620457559824],[-0.1391376554966,0.0030755226034671,0.041474305093288],[-0.0021468841005117,-0.05750397592783,0.081873171031475]],[[0.099238350987434,0.11114551126957,0.026268636807799],[-0.014865342527628,-0.075735963881016,-0.059068880975246],[0.029442340135574,-0.11746959388256,-0.0448885448277]],[[-0.14462681114674,-0.034749120473862,-0.0026345578953624],[0.043722968548536,-0.045860912650824,0.071289375424385],[0.036836940795183,-0.017891468480229,-0.0020485066343099]],[[0.050974927842617,-0.019977331161499,0.043316781520844],[-0.10075382888317,-0.030923394486308,0.091288276016712],[-0.016716485843062,-0.013622866012156,-0.095652662217617]],[[0.052751697599888,-0.022611541673541,0.032567661255598],[-0.0041759749874473,0.058517046272755,-0.10299970954657],[-0.072600603103638,0.094278506934643,-0.072710037231445]],[[0.18051931262016,0.029752526432276,0.012053775601089],[-0.058068215847015,-0.1972718089819,0.081873558461666],[0.02553460560739,-0.049646016210318,0.01716037094593]],[[-0.043853655457497,0.096558041870594,-0.14476107060909],[0.066229440271854,-0.13108533620834,-0.062855124473572],[0.11930750310421,-0.079896338284016,0.029570404440165]],[[0.04117888584733,0.11721840500832,0.040377072989941],[-0.13837306201458,0.0033446180168539,-0.071157835423946],[-0.027009312063456,0.011408403515816,-0.064206011593342]],[[-0.10365870594978,-0.031076332554221,0.076191432774067],[0.12528443336487,-0.058487977832556,-0.032614719122648],[-0.079001523554325,0.11561472713947,0.028157129883766]],[[0.033473093062639,0.14104825258255,0.065077535808086],[0.033467065542936,-0.084051877260208,-0.051247231662273],[0.0068369298242033,-0.10301002115011,-0.043599687516689]],[[0.068858541548252,0.083592645823956,0.022086044773459],[0.05480682849884,0.065927013754845,0.004944936838001],[-0.023438941687346,-0.0785898193717,0.069397978484631]],[[0.046305153518915,0.022852223366499,0.051878213882446],[-0.021114461123943,-0.033379785716534,-0.067033633589745],[0.024108747020364,0.029796194285154,-0.0758171454072]],[[0.064895175397396,-0.05315638333559,0.072084508836269],[-0.075456231832504,-0.085082046687603,-0.059109229594469],[0.096374399960041,0.0013976568588987,-0.00969547778368]],[[0.076871521770954,-0.065842345356941,0.078885242342949],[0.041663203388453,0.038626372814178,0.021825468167663],[-0.10486013442278,-0.095759697258472,-0.030095471069217]],[[-0.054522410035133,-0.027251090854406,-0.011898181401193],[0.076533764600754,-0.087990038096905,0.074492461979389],[-0.061669584363699,0.092773132026196,0.098555319011211]],[[-0.057862609624863,0.076853685081005,0.044209275394678],[-0.029477644711733,0.030151881277561,0.085760250687599],[-0.14472423493862,-0.069416537880898,-0.060437057167292]],[[-0.050921805202961,-0.035456661134958,-0.0056822546757758],[-0.018237067386508,0.25862866640091,-0.074220418930054],[0.08931140601635,-0.027662638574839,0.0074938642792404]],[[0.034586481750011,-0.063574336469173,-0.00067814707290381],[0.053045656532049,-0.057781685143709,0.022741790860891],[0.040442865341902,0.026859747245908,0.0099545205011964]],[[-0.00053690327331424,-0.057183969765902,0.028423616662621],[0.10151375830173,-0.07425145804882,-0.1239268630743],[0.068650647997856,0.015810230746865,0.21231800317764]],[[0.032377324998379,-0.0066993441432714,-0.059458803385496],[0.041962642222643,-0.049025602638721,-0.006200710311532],[0.0077793835662305,-0.088271215558052,-0.11823028326035]],[[-0.054481573402882,-0.04173693805933,0.12815161049366],[0.089873522520065,-0.13014997541904,0.099572539329529],[0.0080213639885187,-0.022905943915248,-0.012973489239812]],[[-0.066743053495884,-0.013090605847538,-0.0057527706958354],[0.0027650818228722,0.076213754713535,0.05655774101615],[-0.091694861650467,-0.010357404127717,-0.14302338659763]],[[0.029509311541915,-0.0094423163682222,-0.0094386320561171],[0.013812054879963,-0.066544517874718,-0.013651508837938],[0.037711318582296,0.13120609521866,-0.063826605677605]],[[-0.063839182257652,-0.0053964578546584,-0.098563767969608],[-0.13348940014839,0.040710035711527,0.045630417764187],[0.12824857234955,0.012307647615671,0.12422473728657]],[[0.11849638819695,-0.061233893036842,-0.098201543092728],[-0.056416586041451,-0.04826720058918,-0.0063467854633927],[-0.057313345372677,0.036820344626904,0.02824667468667]],[[0.0041067469865084,0.06745906919241,-0.011832074262202],[0.020169394090772,-0.057241000235081,-0.010234828107059],[0.089249826967716,0.04984762519598,-0.12933048605919]],[[-0.07313534617424,-0.09978911280632,0.067624062299728],[-0.084366418421268,-0.041534148156643,0.035285327583551],[-0.04395104944706,0.020335629582405,-0.023931331932545]],[[-0.082411006093025,-0.073773615062237,-0.12917669117451],[-0.019187603145838,-0.076539926230907,-0.033713664859533],[0.09464555233717,0.065237365663052,0.086275435984135]],[[0.063879273831844,-0.042906761169434,0.099701784551144],[0.013379501178861,0.072640843689442,0.03432984650135],[-0.097615033388138,-0.13936801254749,-0.03712123259902]],[[0.052359785884619,0.06624673306942,0.017965631559491],[0.05370619893074,-0.0073933568783104,0.014164915308356],[-0.067728146910667,-0.081000179052353,-0.1866033822298]],[[-0.059874460101128,0.057096038013697,0.061956088989973],[-0.0027288650162518,0.037882130593061,0.18756094574928],[-0.19617296755314,-0.06821620464325,-0.064828105270863]],[[-0.11134482175112,0.0021198547910899,0.047871567308903],[-0.039541069418192,0.13880185782909,0.069062918424606],[-0.083760470151901,-0.04922454431653,0.061294805258512]],[[-0.066538512706757,0.036076098680496,0.071383647620678],[0.0016002212651074,0.029337732121348,0.044002003967762],[0.091367848217487,-0.17901289463043,0.041445277631283]],[[0.10120035707951,0.082553088665009,0.045396309345961],[-0.0029697304125875,0.020847612991929,0.0029532795306295],[-0.010305618867278,-0.064356550574303,0.02051399461925]],[[-0.037154965102673,-0.034974165260792,-0.03950908780098],[0.069345444440842,-0.016504829749465,-0.049351170659065],[0.016273008659482,-0.022835919633508,0.12141975015402]],[[-0.015429396182299,-0.18614302575588,-0.024591760709882],[-0.091862417757511,-0.046416584402323,0.013201873749495],[-0.049301568418741,0.11823906004429,0.10002480447292]],[[-0.031920112669468,-0.04717206582427,-0.0026680971495807],[-0.063698008656502,-0.05080945789814,-0.067973181605339],[0.051572006195784,-0.11488001793623,0.033208895474672]],[[-0.0073386374861002,-0.0068178419023752,0.0090858489274979],[0.083804175257683,0.012071619741619,-0.032894987612963],[0.041787218302488,-0.057988032698631,-0.063871189951897]],[[0.017043856903911,-0.06266064196825,-0.1439645588398],[-0.016823979094625,0.042871441692114,0.078493744134903],[0.020341753959656,0.016058595851064,-0.085101172327995]],[[-0.00986507255584,0.06136367097497,-0.087171994149685],[0.12288112938404,-0.071397542953491,-0.054862774908543],[-0.0092983255162835,0.071001909673214,0.062928318977356]],[[0.10175554454327,-0.048840772360563,0.029457239434123],[-0.075741127133369,0.027900671586394,0.13917841017246],[-0.016953324899077,-0.09607595205307,0.031300451606512]],[[0.0095511646941304,0.0030819419771433,-0.13183802366257],[0.016798499971628,-0.12576706707478,-0.011131482198834],[-0.019780747592449,-0.048453476279974,0.10871500521898]],[[-0.040996894240379,0.037726428359747,0.096277423202991],[0.029577311128378,-0.028419500216842,-0.0094066811725497],[0.026465773582458,-0.0079001989215612,-0.060007981956005]],[[0.049986016005278,-0.12299218028784,0.0149508100003],[-0.052258037030697,-0.102738045156,0.022180657833815],[-0.006742044351995,-0.060495194047689,-0.14943332970142]],[[0.12121354043484,-0.026308318600059,-0.051625054329634],[-0.071694016456604,-0.12657354772091,0.0029748692177236],[0.016768718138337,-0.0068552228622139,-0.048168409615755]],[[0.0092144664376974,0.03486630320549,-0.051885183900595],[-0.058400109410286,0.017699837684631,0.013666959479451],[0.022780640050769,0.021066438406706,0.061849351972342]],[[-0.10274147242308,0.041019570082426,0.073749363422394],[-0.0027345977723598,-0.13700678944588,-0.017029674723744],[-0.0032540312968194,0.026208430528641,-0.0080931335687637]],[[0.042302757501602,0.041798736900091,0.036340799182653],[0.14425125718117,0.0078655239194632,0.017394311726093],[0.16109327971935,0.065999023616314,-0.010523062199354]],[[-0.05245054885745,-0.045054648071527,0.028728820383549],[-0.059271518141031,-0.012339097447693,0.030358295887709],[0.039966911077499,-0.030646102502942,0.11285019665956]],[[-0.053978703916073,0.017388282343745,-0.079900316894054],[0.008787483908236,0.17182633280754,-0.0018848817562684],[0.055528420954943,0.052711170166731,-0.040886640548706]],[[0.018976006656885,0.012631816789508,-0.05997746437788],[0.010299089364707,-0.062456231564283,0.12948828935623],[-0.052123669534922,0.089947782456875,0.029372056946158]],[[0.063317112624645,-0.041191443800926,0.047660890966654],[0.021610535681248,0.047675080597401,-0.077730931341648],[0.13268990814686,-0.066671289503574,0.024878527969122]],[[0.034073796123266,0.017756927758455,-0.0073496531695127],[0.010114914737642,-0.048601746559143,-0.020288996398449],[-0.077171705663204,0.057217713445425,0.12040948867798]],[[0.017905214801431,-0.083726048469543,-0.05247462913394],[-0.024187913164496,-0.0099927624687552,0.021964060142636],[0.078287973999977,0.076585188508034,-0.046159364283085]],[[0.030929412692785,-0.068891853094101,0.027902219444513],[0.00553870620206,-0.034157752990723,-0.052242022007704],[-0.0014943173155189,0.10435147583485,0.040704626590014]]],[[[-0.086916223168373,-0.012092807330191,-0.012508867308497],[-0.04422715306282,-0.073162831366062,0.078971549868584],[-0.0036884781438857,0.048588752746582,-0.044176165014505]],[[-0.049092542380095,0.13013298809528,0.018750699236989],[0.13498705625534,0.093223549425602,-0.01912203989923],[-0.026442622765899,-0.024008182808757,0.060136985033751]],[[-0.032695487141609,0.12122028321028,0.00058683543466032],[-0.12618970870972,0.012123537249863,0.066618926823139],[0.037935484200716,0.052721049636602,0.030606545507908]],[[0.15034592151642,0.16706398129463,0.11009891331196],[0.11176254600286,0.06776787340641,-0.02322418615222],[-0.012404069304466,-0.17645411193371,-0.256945759058]],[[-0.0057454481720924,0.0049921930767596,-0.032088570296764],[-0.021113771945238,-0.070975430309772,0.0055765430442989],[0.12403280287981,0.020852863788605,0.0054793287999928]],[[-0.0050324848853052,-0.091417357325554,-0.061958402395248],[-0.010085307061672,-0.078998118638992,0.015434606932104],[0.090129539370537,0.011048015207052,-0.12806059420109]],[[0.021602729335427,0.061814330518246,-0.056641761213541],[0.029978524893522,-0.045352656394243,0.044156055897474],[-0.016749896109104,-0.065655782818794,-0.062495239078999]],[[0.010018404573202,-0.039358463138342,-0.011457386426628],[0.099583499133587,0.034501902759075,0.073542691767216],[-0.024964159354568,-0.052066490054131,0.029294880107045]],[[-0.082821652293205,-0.14476947486401,0.0047606346197426],[-0.051750797778368,0.076673731207848,0.075935617089272],[0.063364312052727,0.079790890216827,0.0014077739324421]],[[0.0027865788433701,-0.12014448642731,-0.10915759950876],[-0.025681247934699,-0.14705848693848,-0.15813691914082],[0.013789782300591,-0.019023919478059,-0.086802907288074]],[[-0.068723499774933,0.0050183665007353,0.065247215330601],[-0.046972703188658,-0.036992747336626,0.033830981701612],[0.029413091018796,0.045020204037428,-0.05536188185215]],[[0.031808245927095,-0.18148812651634,-0.36927086114883],[-0.13340428471565,-0.29671609401703,-0.16943891346455],[-0.056004080921412,0.015432693995535,0.13710126280785]],[[-0.0013868462992832,0.11677998304367,0.067074097692966],[0.058658119291067,0.12408202141523,0.031458053737879],[0.019266895949841,-0.0004678008845076,-0.041421551257372]],[[-0.027928408235312,0.10382096469402,-0.10209035128355],[0.0020525073632598,0.062928467988968,-0.0064090890809894],[0.024353565648198,0.020287752151489,0.052120853215456]],[[-0.012356723658741,-0.034203793853521,-0.13235127925873],[0.052455388009548,0.038487944751978,0.035600028932095],[-0.031674865633249,0.0031839178409427,0.089273817837238]],[[0.025398762896657,-0.10913211107254,0.0512450709939],[0.048045549541712,-0.024352623149753,0.038532186299562],[0.018285958096385,-0.035206329077482,0.029104253277183]],[[-0.15515686571598,0.068530634045601,-0.065166510641575],[0.006582454778254,0.050221648067236,0.1482422798872],[-0.037943731993437,-0.017707459628582,0.057295046746731]],[[-0.091471672058105,-0.033368039876223,0.075133830308914],[-0.093293160200119,0.032201312482357,-0.013296949677169],[0.028508126735687,0.13562732934952,0.069473080337048]],[[0.054812122136354,0.029478637501597,0.0078946892172098],[0.087593726813793,-0.010554530657828,-0.010794763453305],[0.052104715257883,0.0096544418483973,-0.009789016097784]],[[0.079864054918289,0.081936471164227,0.097448766231537],[-0.05565082654357,-0.0044192369095981,-0.04390525072813],[-0.11116994172335,-0.019099662080407,-0.072367250919342]],[[0.016260055825114,-0.061872445046902,-0.011594051495194],[0.045240022242069,-0.14467929303646,-0.055533468723297],[-0.041966550052166,-0.016713907942176,0.0041825408115983]],[[-0.043781619518995,0.037332393229008,0.12809628248215],[0.065210446715355,0.12455792725086,0.033558361232281],[0.042237147688866,-0.052519418299198,-0.0047640614211559]],[[0.10834700614214,-0.11584533005953,0.040293272584677],[0.031712051481009,-0.057626284658909,-0.088985107839108],[0.012239235453308,-0.04115042090416,-0.11277630925179]],[[-0.04184590280056,-0.15554776787758,-0.071104668080807],[-0.089856833219528,-0.073595002293587,-0.10178367048502],[-0.0083895968273282,-0.087649464607239,-0.012699929066002]],[[-0.0040526129305363,0.13414342701435,0.20135796070099],[-0.028623225167394,0.071873672306538,0.040611367672682],[-0.13316595554352,-0.073286414146423,-0.091635175049305]],[[0.034997567534447,-0.022141430526972,0.056109715253115],[0.048936564475298,-0.050598047673702,0.053351443260908],[-0.062576480209827,-0.082908138632774,-0.057454083114862]],[[0.072817355394363,0.0044617797248065,-0.12793003022671],[0.036978106945753,-0.11258424818516,-0.03598541021347],[-0.01709345728159,-0.011128610000014,-0.072411775588989]],[[-0.02623526006937,-0.23944936692715,-0.0093992156907916],[0.046934187412262,-0.073741227388382,-0.0057566021569073],[-0.0339973308146,-0.043194357305765,0.080089382827282]],[[0.010430121794343,-0.023145334795117,0.15012626349926],[0.013719791546464,0.11557936668396,0.090003736317158],[0.075880639255047,-0.01988940499723,-0.076626770198345]],[[0.17357295751572,0.19251485168934,0.061126496642828],[0.093786671757698,-0.072340629994869,-0.11305683851242],[0.032798480242491,-0.069915182888508,-0.12916631996632]],[[-0.032161626964808,-0.013021191582084,0.039967779070139],[-0.036537777632475,-0.023924773558974,0.024212274700403],[0.044937621802092,0.08067349344492,-0.066531978547573]],[[-0.0019869438838214,0.10147547721863,-0.12824665009975],[-0.0029341853223741,-0.077395729720592,0.078867979347706],[0.022888949140906,-0.050130113959312,-0.054646778851748]],[[-0.093353524804115,-0.0035605204757303,0.010597815737128],[0.065398648381233,-0.035460539162159,0.040277242660522],[-0.026247886940837,-0.024325931444764,0.065376028418541]],[[-0.080192402005196,-0.18402796983719,-0.046175941824913],[-0.051226306706667,-0.12970717251301,-0.059970654547215],[0.095344446599483,0.13608920574188,0.0054010860621929]],[[0.042465433478355,-0.046463906764984,0.029658837243915],[-0.066165827214718,-0.0080683538690209,-0.011027114465833],[0.038790628314018,0.037900149822235,-0.090893648564816]],[[-0.0020662317983806,-0.098330341279507,-0.15060234069824],[-0.027482284232974,-0.10975249111652,-0.0065306047908962],[-0.04015926644206,0.030711406841874,-0.041785374283791]],[[0.092978835105896,0.02613539993763,-0.025049207732081],[0.071779169142246,-0.065430425107479,0.083026237785816],[-0.015947114676237,-0.062355227768421,0.013353028334677]],[[0.10582152754068,0.018973110243678,0.052050817757845],[0.056714858859777,0.0056704236194491,-0.025594137609005],[-0.073796734213829,-0.017209971323609,-0.045333243906498]],[[0.015245260670781,-0.041209358721972,-0.08641691505909],[0.039641056209803,-0.02783190459013,-0.062489487230778],[-0.021927870810032,0.059894729405642,0.061687346547842]],[[0.013495236635208,0.085580214858055,0.11826634407043],[0.061920713633299,0.087977401912212,-0.014341505244374],[-0.017605317756534,-0.10588212311268,-0.072493232786655]],[[0.17478446662426,-0.037494372576475,0.034582577645779],[-0.1447845697403,-0.14497393369675,-0.026279648765922],[0.041487649083138,-0.17175024747849,-0.028542146086693]],[[-0.0012065066257492,0.060308046638966,-0.077779360115528],[0.07328063249588,-0.11612593382597,0.00221316376701],[-0.014042442664504,-0.10295982658863,0.089487805962563]],[[-0.064258843660355,0.0058386609889567,0.032892178744078],[0.054932091385126,-0.021157894283533,-0.025245245546103],[0.06954137980938,0.013134641572833,0.024893486872315]],[[-0.002968619344756,0.10904729366302,0.0047330721281469],[0.064077995717525,0.080875888466835,-0.104233764112],[-0.054535657167435,-0.023410871624947,-0.068375021219254]],[[0.028080245479941,-0.14945943653584,0.0027702439110726],[-0.022266309708357,0.0067731202580035,0.021494168788195],[0.002549096243456,0.0045105740427971,0.0368443839252]],[[-0.092041730880737,-0.00011685104982462,-0.094204343855381],[0.055042624473572,0.1138456761837,0.061622437089682],[-0.060205370187759,-0.027182267978787,-0.13058722019196]],[[-0.010678892955184,0.094191834330559,0.0018836798844859],[-0.010178733617067,-0.10342618077993,-0.035761769860983],[0.030377369374037,0.14228139817715,0.0021950118243694]],[[-0.04798599332571,0.063211694359779,0.080316238105297],[-0.062932670116425,-0.059065483510494,0.073245167732239],[0.0047170761972666,-0.0067494525574148,0.02082678116858]],[[0.07347671687603,-0.12319106608629,-0.053134005516768],[-0.0053441589698195,0.023803390562534,-0.084477357566357],[0.019749626517296,-0.025974011048675,-0.027956893667579]],[[0.057232614606619,-0.1039160862565,0.013392417691648],[-0.040213257074356,-0.01929790340364,-0.00064439041307196],[-0.054243549704552,0.023112185299397,0.052145138382912]],[[-0.063016571104527,-0.04237174987793,-0.051816184073687],[0.0095768496394157,-0.02972274273634,0.016779227182269],[-0.021153789013624,0.026608791202307,0.090138882398605]],[[0.0049575571902096,0.090064145624638,0.010832986794412],[-0.043039243668318,-0.10400432348251,-0.2051392942667],[0.044341541826725,-0.067150712013245,-0.082754291594028]],[[0.033258836716413,0.01645958609879,0.10568481683731],[0.047862872481346,-0.090799413621426,0.14488899707794],[0.089970730245113,0.010387856513262,-0.12101019918919]],[[0.050270937383175,0.066735036671162,0.12909103929996],[-0.13283209502697,0.099328756332397,0.15690533816814],[-0.0026529137976468,0.080257818102837,-0.046014025807381]],[[-0.031554471701384,-0.022333962842822,0.027188159525394],[0.0072723892517388,-0.14796547591686,-0.096920408308506],[-0.11628211289644,-0.088343098759651,-0.03647356107831]],[[-0.005002211779356,0.061191733926535,0.00048692795098759],[0.0070141130127013,0.030870361253619,0.068294458091259],[-0.032255277037621,-0.082859143614769,-0.021432735025883]],[[0.19256465137005,-0.029849860817194,-0.085420735180378],[0.1302548199892,-0.0085209282115102,0.026490055024624],[0.071621954441071,0.027052879333496,0.020272241905332]],[[0.053404651582241,-0.093769758939743,0.10616666078568],[-0.059085570275784,0.0057261921465397,-0.015034517273307],[-0.022547606378794,-0.046292770653963,0.11926640570164]],[[-0.034180544316769,0.10690289735794,0.17167064547539],[-0.021017583087087,0.020808635279536,0.19291773438454],[-0.11484045535326,-0.044684529304504,-0.015924029052258]],[[-0.10613824427128,-0.0054826899431646,0.041006959974766],[0.036319803446531,-0.019344467669725,-0.040042199194431],[0.011730616912246,-0.019668398424983,0.10988295078278]],[[0.011778366751969,-0.02261808514595,-0.094462856650352],[-0.074598848819733,-0.035248026251793,-0.12381657212973],[0.20323729515076,0.015382673591375,0.030776131898165]],[[0.045053731650114,0.063044145703316,-0.026310553774238],[0.074321083724499,0.013824511319399,-0.019824421033263],[0.061943899840117,-0.0040916493162513,-0.0030936731491238]],[[0.26834547519684,0.0099829444661736,0.012854694388807],[-0.072580814361572,-0.15296007692814,-0.13190558552742],[-0.013721979223192,-0.11552211642265,-0.10719088464975]],[[-0.055660109966993,-0.15385656058788,-0.019068244844675],[0.059018615633249,0.12436276674271,0.17869345843792],[0.06076230853796,0.028067467734218,0.17109279334545]]],[[[0.0095575898885727,-0.013382287696004,0.063761584460735],[0.011706128716469,-0.01782632060349,0.012594735249877],[0.085972972214222,-0.011606582440436,0.11934745311737]],[[0.094118133187294,-0.054287776350975,-0.073464147746563],[0.16959464550018,-0.049264162778854,-0.15434348583221],[0.16692344844341,0.019486546516418,0.087889418005943]],[[-0.029387682676315,-0.050469327718019,0.015468407422304],[0.062617145478725,-0.079057566821575,0.03195545822382],[0.13006103038788,0.10127223283052,-0.029694681987166]],[[-0.070841990411282,-0.049090392887592,-0.13782088458538],[-0.086345016956329,-0.074361950159073,0.033417209982872],[-0.0039461362175643,-0.02377106808126,0.0098618436604738]],[[-0.004837001208216,0.014645208604634,0.012384698726237],[0.0089567564427853,-0.015022243373096,0.073727890849113],[-0.011877118609846,0.0089140478521585,0.020186001434922]],[[0.021547356620431,-0.022644190117717,0.061480104923248],[0.032787553966045,-0.063415892422199,0.022098874673247],[0.092264622449875,0.078654758632183,-0.23771208524704]],[[0.082347474992275,0.096549570560455,-0.015176414512098],[-0.044561114162207,-0.052746620029211,0.011128270067275],[-0.044125866144896,-0.044611591845751,-0.0106394989416]],[[-0.12122764438391,-0.13399730622768,-0.055475249886513],[0.10330660641193,-0.012080358341336,-0.068593695759773],[0.17830780148506,0.020386777818203,0.13265505433083]],[[0.0019190683960915,-0.05180461704731,-0.030721155926585],[-0.052585139870644,-0.012850476428866,-0.036844223737717],[0.075592465698719,0.086223125457764,0.055515848100185]],[[0.048617240041494,0.053468991070986,0.017218293622136],[-0.011758212931454,0.049079660326242,0.036090202629566],[-0.04095271229744,-0.099850244820118,-0.11367339640856]],[[-0.073803164064884,-0.072208724915981,-0.056459601968527],[-0.036861542612314,-0.0067734150215983,-0.051795542240143],[0.12797953188419,0.10303649306297,0.029228832572699]],[[0.011708499863744,0.010472601279616,0.050553441047668],[0.0012110180687159,-0.025583187118173,-0.11074358224869],[0.10165115445852,-0.17983734607697,-0.058521963655949]],[[-0.067306481301785,0.004454636014998,-0.0026957420632243],[0.046328458935022,0.097093418240547,-0.00063799740746617],[0.013734331354499,0.15776823461056,-0.024696657434106]],[[0.026053177192807,0.07156290858984,-0.012386355549097],[-0.086545944213867,0.038894299417734,-0.10138542205095],[0.20092236995697,-0.041375063359737,0.055969838052988]],[[0.069567799568176,0.0090872598811984,-0.023400619626045],[0.10328610986471,0.067059077322483,0.00071204773848876],[-0.036543633788824,0.035920802503824,-0.069458648562431]],[[0.030557995662093,-0.05412844195962,0.012984136119485],[-0.068664915859699,-0.030045438557863,0.035325780510902],[-0.028527311980724,0.023382710292935,-0.083185456693172]],[[0.082655161619186,0.10612485557795,0.0188003834337],[0.015244749374688,0.044820688664913,-0.083418883383274],[-0.18303079903126,-0.054455485194921,0.10941252112389]],[[-0.035456594079733,-0.12653385102749,-0.22329063713551],[0.10405416041613,0.15841990709305,-0.0068722902797163],[-0.0034008978400379,0.095548063516617,0.012005772441626]],[[0.081375680863857,-0.026517666876316,0.0083797154948115],[0.0030923178419471,-0.0025489737745374,-0.052277486771345],[0.082732923328876,0.087206117808819,0.02246431261301]],[[0.021375609561801,-0.24232965707779,-0.22819186747074],[0.061242021620274,-0.033322364091873,-0.14232909679413],[0.08579932898283,0.075803674757481,-0.14733989536762]],[[0.0067154807038605,-0.030823245644569,-0.071295939385891],[-0.028425671160221,0.052807465195656,-0.01538157928735],[-0.095746554434299,0.0058377804234624,-0.031481750309467]],[[-0.09142030775547,-0.057046826928854,0.054992951452732],[-0.059520121663809,0.077578686177731,0.043547794222832],[0.084338001906872,-0.067444831132889,-0.053224865347147]],[[0.085719116032124,-0.1734264343977,-0.095271490514278],[0.13643915951252,-0.023223353549838,-0.03046696074307],[0.1044577434659,0.12038454413414,-0.00022708506730851]],[[0.067484751343727,0.052873887121677,0.023609315976501],[-0.065732516348362,0.11960117518902,0.23572333157063],[0.0024437997490168,-0.33413287997246,-0.21044784784317]],[[-0.069213405251503,-0.18397924304008,-0.21788588166237],[0.020618231967092,-0.087259940803051,0.0023988939356059],[0.038077991455793,0.19066599011421,0.060163866728544]],[[-0.11442732065916,-0.011212245561182,0.052267540246248],[0.013327662833035,0.011036404408514,0.080607242882252],[0.029795173555613,-0.0094417305663228,0.014445110224187]],[[-0.041998535394669,-0.057142809033394,-0.040854103863239],[-0.056451808661222,-0.20429660379887,-0.20611676573753],[0.022828619927168,-0.088062845170498,-0.026123275980353]],[[-0.052831202745438,0.048778276890516,0.054836340248585],[0.017977822571993,0.047441452741623,0.054909449070692],[0.06526143103838,-0.020913256332278,-0.022441424429417]],[[-0.0060512074269354,0.080734506249428,0.14174783229828],[0.0068187057040632,-0.0333087220788,0.015197860077024],[0.0051235128194094,0.10392265766859,-0.029809193685651]],[[0.10836428403854,0.022841967642307,-0.032797578722239],[-0.020286738872528,0.025759443640709,0.0050539961084723],[0.056105710566044,-0.10726296156645,-0.13744316995144]],[[-0.14950095117092,-0.090154945850372,-0.23145490884781],[0.15647691488266,0.003357317764312,0.0028854955453426],[0.35382398962975,0.15410704910755,0.059970006346703]],[[0.0020212242379785,-0.038607209920883,-0.12825222313404],[-0.0095719983801246,-0.097679987549782,0.010124540887773],[0.31153756380081,0.024275733157992,-0.012000183574855]],[[0.015951177105308,-0.014692813158035,0.0066705550998449],[0.065678305923939,0.012084144167602,0.036598697304726],[-0.058358047157526,-0.092852629721165,0.016691144555807]],[[0.0065153948962688,-0.049924455583096,0.0027499785646796],[0.0086894584819674,0.049795404076576,0.012465017847717],[0.1197394579649,-0.038393717259169,0.037808779627085]],[[-0.024949604645371,0.00232725427486,-0.017858611419797],[-0.032879911363125,-0.038083586841822,-0.10120271891356],[0.050318714231253,0.01572273671627,-0.049617044627666]],[[-0.018051510676742,0.042203135788441,0.13003005087376],[-0.21032382547855,-0.16377429664135,0.023772470653057],[0.070007108151913,-0.18048731982708,-0.15985134243965]],[[-0.12827180325985,-0.075658231973648,-0.011348358355463],[-0.17084777355194,0.039051733911037,0.017855864018202],[0.0096885738894343,0.040295694023371,-0.0076408283784986]],[[-0.048778619617224,-0.10522994399071,-0.20215354859829],[0.075484849512577,-0.0049146572127938,0.02843764051795],[0.23842257261276,0.21329189836979,0.120799921453]],[[-0.020773183554411,-0.14321000874043,0.034323692321777],[0.1062954813242,-0.036980420351028,-0.012224091216922],[0.066461756825447,-0.14052157104015,0.076828151941299]],[[-0.016606587916613,-0.050226915627718,-0.061123136430979],[-0.050830569118261,0.014498431235552,0.029131598770618],[0.09135514497757,0.12271304428577,-0.023202046751976]],[[0.0054442533291876,-0.13504905998707,-0.057729482650757],[-0.070717468857765,-0.020508313551545,0.065946944057941],[0.070530652999878,-0.066857144236565,0.065337240695953]],[[-0.05889193713665,-0.029107371345162,-0.0052792779169977],[-0.070299468934536,0.032149352133274,0.050064645707607],[-0.26401188969612,-0.071748927235603,0.017433425411582]],[[0.051182400435209,0.001282857498154,0.060324806720018],[0.02800715342164,0.079655781388283,0.06681440025568],[-0.017616417258978,-0.10562665760517,-0.053748495876789]],[[-0.018582599237561,0.079756297171116,0.01743807643652],[-0.049726083874702,0.055959992110729,0.031471334397793],[-0.011803498491645,-0.066220298409462,-0.030760264024138]],[[0.11247858405113,0.00063857354689389,0.095343329012394],[0.0047109010629356,0.015829576179385,0.0739421620965],[-0.18202669918537,-0.079860970377922,0.0030355458147824]],[[-0.054238200187683,0.0038082641549408,-0.021230490878224],[-0.12333738058805,0.057937350124121,0.080416545271873],[-0.063470236957073,-0.13498099148273,0.091588594019413]],[[-0.049714978784323,0.069678120315075,-0.034221228212118],[-0.11491720378399,-0.077608123421669,-0.23140074312687],[-0.11057044565678,0.27218559384346,0.10501929372549]],[[-0.010852181352675,-0.034849192947149,-0.077074408531189],[0.060768827795982,0.054550539702177,-0.0046438407152891],[-0.047909654676914,0.037935048341751,-0.10650216788054]],[[0.0021266136318445,-0.021539883688092,-0.11013768613338],[-0.031953178346157,0.11209867149591,-0.0899628251791],[0.11662191152573,0.14309340715408,0.014336331747472]],[[-0.16450676321983,-0.0581234395504,0.070910230278969],[-0.018167020753026,0.09840127825737,0.071729622781277],[-0.025805301964283,0.10125341266394,-0.057874232530594]],[[-0.0059501328505576,0.010791567154229,0.099734857678413],[-0.068521805107594,0.013217351399362,0.17850637435913],[-0.051545012742281,0.010209126397967,0.016457051038742]],[[0.019858166575432,0.024803372099996,0.084566257894039],[-0.050484731793404,0.1001503765583,0.13634425401688],[-0.034715916961432,-0.11664367467165,-0.0031746772583574]],[[0.041464574635029,-0.020639825612307,-0.076566360890865],[0.089724160730839,-0.058215774595737,-0.09194927662611],[0.13313499093056,0.15459789335728,0.18220730125904]],[[0.11201643198729,0.0054979752749205,-0.097089596092701],[0.10392678529024,0.020791999995708,-0.0022345008328557],[0.059999730437994,0.012953926809132,-0.020409325137734]],[[-0.01333833206445,-0.011786954477429,0.12912836670876],[-0.19255545735359,0.010840088129044,-0.077402651309967],[-0.29116031527519,-0.28354746103287,-0.085627004504204]],[[0.075454920530319,-0.079514935612679,-0.010035438463092],[-0.080748587846756,-0.20691461861134,0.067532010376453],[0.016255263239145,-0.0071132811717689,-0.043515630066395]],[[-0.13512499630451,-0.19866305589676,-0.24477890133858],[0.15061742067337,0.092857182025909,-0.055531024932861],[0.2453089505434,0.28867927193642,0.19917134940624]],[[-0.053386736661196,0.0097224684432149,0.059503424912691],[-0.21478322148323,-0.050673704594374,0.077517464756966],[-0.16606226563454,-0.14513799548149,0.035035002976656]],[[0.074081301689148,-0.065720111131668,-0.003141317749396],[-0.17406031489372,0.061024524271488,0.062237031757832],[0.15256835520267,0.1438325047493,-0.0735764503479]],[[0.051734384149313,0.1241546869278,0.1834838539362],[-0.0573427118361,-0.095452941954136,-0.018895912915468],[-0.083208560943604,-0.038530185818672,-0.01946790330112]],[[0.059846613556147,0.013209343887866,0.12904272973537],[0.018392100930214,0.029833985492587,0.050276041030884],[0.01825663074851,-0.079888857901096,0.044835023581982]],[[0.05079710483551,0.081271231174469,0.059975538402796],[-0.089922942221165,-0.0090172486379743,0.090292774140835],[0.0012457735138014,-0.034235693514347,-0.087788097560406]],[[-0.039067406207323,0.038505703210831,0.046522367745638],[-0.046688690781593,-0.10217102617025,0.084516674280167],[-0.042350843548775,0.039201837033033,0.040841694921255]],[[-0.064311891794205,0.022667292505503,0.080920599400997],[-0.032369446009398,-0.0001599807292223,-0.11091189831495],[0.017736103385687,-0.10936673730612,0.10058460384607]]],[[[-0.015653243288398,0.15719953179359,-0.20951813459396],[0.067185707390308,0.03649028018117,-0.023115264251828],[0.056014064699411,0.086344316601753,-0.031853940337896]],[[0.070098340511322,-0.018107291311026,-0.12323467433453],[0.1197969391942,-0.14324687421322,-0.034457020461559],[0.11531085520983,0.00026294696726836,-0.12642578780651]],[[-0.10734948515892,-0.092061161994934,0.016131533309817],[-0.25056120753288,-0.16015316545963,0.18170949816704],[-0.1332792788744,0.032380476593971,-0.0085031054913998]],[[-0.009720734320581,-0.19128985702991,-0.13171166181564],[0.0059821787290275,-0.2750546336174,0.084902338683605],[-0.026962054893374,-0.097597479820251,0.051433458924294]],[[0.030022842809558,0.085441708564758,0.05126915127039],[-0.13025213778019,0.026993924751878,-0.018935589119792],[0.042537860572338,-0.08913280069828,0.027743235230446]],[[-0.024144930765033,-0.017356298863888,0.09082193672657],[0.13113830983639,-0.039667885750532,-0.17642283439636],[-0.019972136244178,-0.18465608358383,0.049629531800747]],[[-0.065818414092064,-0.070589616894722,0.17144221067429],[-0.14768779277802,-0.055368263274431,0.066745184361935],[-0.038999419659376,0.061992842704058,0.095031462609768]],[[-0.02401652559638,-0.016632407903671,-0.0058320756070316],[0.04495420306921,-0.12693804502487,-0.030932703986764],[0.060740265995264,-0.12591668963432,-0.070065923035145]],[[0.10531623661518,0.049135100096464,0.048823859542608],[-0.030096983537078,-0.065031759440899,-0.094480030238628],[0.0066927522420883,-0.004326787777245,-0.014128278009593]],[[0.041566345840693,0.1221175044775,0.020976778119802],[-0.037479545921087,0.21362534165382,0.096235990524292],[-0.1261619925499,0.0033543820027262,0.022065076977015]],[[-0.025921121239662,0.0481350235641,-0.092176981270313],[-0.072002120316029,-0.13360589742661,-0.03374020755291],[0.042425036430359,-0.01614828966558,0.094334922730923]],[[0.0044210655614734,0.056727577000856,0.027291804552078],[-0.038455650210381,0.0996003895998,-0.052640229463577],[0.061921641230583,0.09793496876955,-0.039778530597687]],[[-0.067469634115696,-0.338637560606,0.065663561224937],[-0.083994850516319,0.053700644522905,0.12804372608662],[-0.069045551121235,-0.034379009157419,0.069614708423615]],[[-0.062409337610006,-0.00061744055710733,-0.084330849349499],[-0.16060738265514,-0.019976133480668,-0.15214458107948],[0.07779523730278,0.015727911144495,-0.059974696487188]],[[0.02095384337008,0.010135324671865,-0.043137099593878],[0.082600653171539,0.04630084708333,-0.017468102276325],[-0.0078592132776976,-0.14308875799179,0.03403764218092]],[[-0.11561554670334,0.047262895852327,-0.015686804428697],[-0.021859547123313,-0.047319576144218,-0.079805515706539],[0.032872516661882,-0.13415232300758,0.093750193715096]],[[0.087826564908028,-0.05988473072648,0.039412297308445],[-0.07657378166914,-0.16402626037598,0.060522109270096],[-0.064980670809746,-0.0050701284781098,-0.018313204869628]],[[-0.041505802422762,-0.081424899399281,-0.041831523180008],[-0.049517292529345,-0.0055661909282207,0.048748530447483],[0.073072403669357,-0.026926282793283,0.072781518101692]],[[-0.020932495594025,-0.12691521644592,-0.013491422869265],[-0.086207449436188,-0.083161316812038,-0.087877735495567],[0.10122119635344,0.12051306664944,0.10718224942684]],[[0.0027068625204265,-0.11042834818363,-0.16897647082806],[0.063163325190544,-0.0107356403023,0.14771446585655],[0.046124279499054,0.041475776582956,-0.12500338256359]],[[0.018339179456234,-0.052440777420998,-0.080073490738869],[-0.03150911256671,-0.031242378056049,-0.0327606536448],[-0.24481344223022,-0.037053771317005,-0.0064906449988484]],[[-0.071539416909218,-0.013075955212116,-0.094517692923546],[-0.082292638719082,0.16889829933643,0.043379485607147],[0.03170209005475,-0.069332279264927,-0.012809948995709]],[[-0.038323912769556,0.029726603999734,0.071419067680836],[-0.03063003346324,0.055382754653692,-0.055972065776587],[0.098712183535099,0.00039619661401957,0.011496494524181]],[[0.038355603814125,0.066569395363331,-0.095116719603539],[0.05767909437418,0.15005403757095,-0.026809077709913],[0.11054757982492,0.014763669110835,0.024876633659005]],[[-0.068265430629253,-0.091633789241314,-0.051322940737009],[0.04494084790349,-0.0015203772345558,0.039805490523577],[-0.08300119638443,-0.097665257751942,0.016086569055915]],[[-0.04907763749361,0.0044550108723342,0.14077506959438],[0.054261457175016,0.038722280412912,0.032237287610769],[-0.060622327029705,0.018553057685494,0.00095010449877009]],[[-0.0053027574904263,-0.033733513206244,0.077454879879951],[0.015233739279211,0.021813631057739,-0.039132066071033],[0.094786882400513,-0.0032513304613531,0.050871480256319]],[[-0.079847760498524,0.088557429611683,0.090976670384407],[-0.033285349607468,0.025659533217549,0.054230157285929],[0.15591061115265,0.0094554843381047,-0.15970341861248]],[[0.059492416679859,0.025813177227974,0.012277325615287],[-0.11812499165535,-0.057419091463089,0.1172556579113],[0.069899164140224,-0.12154932320118,0.030256621539593]],[[-0.023649416863918,0.016035901382565,0.054010573774576],[-0.084307730197906,0.015943426638842,-0.084317825734615],[-0.087217688560486,0.014915616251528,0.016950491815805]],[[-0.0069814622402191,-0.092000663280487,-0.011120394803584],[0.017947878688574,0.13662081956863,-0.25478595495224],[0.043988071382046,0.10440431535244,-0.045856211334467]],[[-0.002494981046766,-0.057201500982046,-0.084259547293186],[0.11819937825203,-0.016472566872835,0.016045205295086],[0.011828053742647,0.08531516045332,-0.14777715504169]],[[-0.050817519426346,0.13195493817329,0.10879418253899],[0.083393856883049,-0.14180754125118,0.052349749952555],[-0.060611840337515,-0.054798766970634,0.05639985576272]],[[-0.056600537151098,-0.055657967925072,-0.032833535224199],[-0.095038011670113,0.019842367619276,-0.00035391023266129],[-0.055706299841404,-0.021969316527247,-0.057146474719048]],[[0.0017494378844276,-0.11780289560556,0.03299018368125],[0.16243840754032,0.066880397498608,0.12063190340996],[-0.10097492486238,-0.036869965493679,-0.10772750526667]],[[0.0073036188259721,0.16278438270092,-0.065501555800438],[-0.010333474725485,0.057026159018278,-0.17647510766983],[0.00055309291929007,0.14255388081074,-0.099952213466167]],[[-0.10603611171246,0.081608220934868,0.16181816160679],[-0.2364442050457,0.044749073684216,0.031894266605377],[-0.23981916904449,-0.10461483150721,0.058976072818041]],[[0.0074218162335455,-0.018660413101315,-0.02529782615602],[0.027372075244784,0.088455557823181,0.091541633009911],[-0.043058175593615,-0.020663112401962,-0.077616952359676]],[[0.0091964518651366,0.017834791913629,0.099549524486065],[-0.046984221786261,0.061532597988844,0.030593669041991],[0.011329595930874,-0.084400944411755,-0.030098278075457]],[[-0.093459136784077,0.0019188228761777,-0.007082502823323],[-0.024123024195433,-0.031329091638327,0.015648456290364],[0.16458344459534,0.047761414200068,0.047397542744875]],[[-0.0089369704946876,0.0064001204445958,-0.040968354791403],[0.099397450685501,0.089255891740322,0.052451707422733],[-0.10994961857796,0.14136226475239,0.040526732802391]],[[-0.011936062015593,-0.05625806376338,0.093167364597321],[-0.039127878844738,0.083403214812279,0.03051196038723],[-0.17630548775196,-0.24672189354897,-0.15136981010437]],[[-0.01706081815064,0.055271942168474,-0.082625404000282],[0.02368463948369,-0.062236558645964,0.082563817501068],[0.0046014105901122,0.037621140480042,0.05514408275485]],[[-0.10520504415035,0.031466972082853,-0.033781491219997],[-0.044346913695335,0.096135124564171,0.063943438231945],[-0.028352506458759,0.067023679614067,-0.047080658376217]],[[-0.072522208094597,-0.0037427030038089,-0.14146734774113],[-0.13900293409824,-0.08955143392086,-0.0081886518746614],[-0.15614764392376,-0.0091161197051406,0.078637696802616]],[[-0.024562945589423,0.0063267420046031,0.035641275346279],[-0.076586477458477,0.10108482092619,0.0039895353838801],[0.013470801524818,-0.011532478034496,-0.069465689361095]],[[0.010657239705324,-0.10347946733236,-0.0017932988703251],[-0.01073298137635,-0.0034065714571625,0.04595048353076],[-0.18476264178753,-0.026925267651677,0.018028719350696]],[[0.030195031315088,-0.013248559087515,0.13213843107224],[-0.013723074458539,-0.082979425787926,-0.020855510607362],[-0.043077528476715,2.8376814952935e-05,-0.063694782555103]],[[0.071118280291557,0.14361195266247,-0.059639539569616],[0.040015432983637,0.0081019205972552,-0.10090721398592],[0.0055244583636522,0.089776657521725,0.042660966515541]],[[-0.039513658732176,0.0206563398242,0.056141991168261],[0.01375658903271,-0.017112784087658,-0.064062900841236],[0.024782860651612,0.077416516840458,-0.031586691737175]],[[-0.045525390654802,-0.064683459699154,-0.023042405024171],[-0.062686294317245,0.035539552569389,0.059147860854864],[-0.028544068336487,-0.10593108832836,0.0058578457683325]],[[0.052023760974407,-0.12768460810184,0.013495779596269],[0.074205063283443,0.085853554308414,0.015234564431012],[-0.12298978865147,-0.093724466860294,-0.0044594602659345]],[[-0.0063548199832439,0.03363960981369,0.035831604152918],[-0.13390247523785,0.053152751177549,-0.0020640813745558],[-0.020436273887753,0.029344374313951,-0.053744282573462]],[[0.0037294963840395,-0.09559753537178,-0.027461024001241],[-0.065948352217674,0.018790097907186,-0.038169987499714],[0.061622425913811,-0.044047899544239,0.055696960538626]],[[0.0032162698917091,0.0062636202201247,-0.0011252022814006],[0.0033722242806107,-0.012486098334193,0.088942438364029],[-0.037342309951782,-0.12147245556116,-0.10822577774525]],[[0.078221641480923,-0.079414680600166,-0.15951469540596],[-0.023739984259009,-0.17450572550297,-0.13164977729321],[-0.02677203156054,0.015791080892086,-0.084570720791817]],[[-0.027521880343556,-0.1170981824398,-0.090007692575455],[-0.01687347330153,-0.031619064509869,-0.077790968120098],[0.091772466897964,0.15156346559525,0.00017290582763962]],[[0.17268680036068,0.013514435850084,0.052163366228342],[-0.061608325690031,0.024271050468087,0.10352518409491],[0.086926005780697,-0.020249096676707,0.054717648774385]],[[-0.015361534431577,0.11551022529602,-0.23439694941044],[0.098519712686539,-0.0027010866906494,-0.19877824187279],[-0.041568797081709,-0.11024516820908,-0.012343522161245]],[[-0.09258271753788,0.0087913842871785,0.0030135728884488],[0.060806579887867,-0.15598152577877,-0.1103725656867],[0.021117769181728,-0.055078528821468,0.03465436026454]],[[0.083219729363918,0.0051447530277073,-0.043397776782513],[-0.027387356385589,-0.095544531941414,-0.0091028427705169],[-0.068327762186527,-0.1410469263792,-0.03718339279294]],[[-0.11591395735741,-0.020377034321427,0.094298712909222],[-0.082218900322914,-0.028928635641932,-0.017551954835653],[-0.0643555149436,-0.0025590036530048,-0.022021193057299]],[[-0.069577537477016,0.036107819527388,-0.13758647441864],[0.037439189851284,0.073476001620293,0.027748396620154],[-0.061198677867651,0.05166956409812,-0.050282772630453]],[[0.10111105442047,0.11159892380238,-0.1171068996191],[0.099737904965878,-0.055572904646397,-0.2139652967453],[-0.095243193209171,-0.14719359576702,-0.033087071031332]]],[[[0.048218201845884,0.062112726271152,0.080699726939201],[0.039806701242924,0.0057820389047265,0.040185872465372],[-0.085003755986691,-0.067172683775425,-0.083460241556168]],[[0.050305064767599,0.17490400373936,0.12523140013218],[-0.00023457345378119,0.046999715268612,-0.0063564921729267],[-0.0091856019571424,-0.029556136578321,-0.071530260145664]],[[0.052556078881025,-0.0049753240309656,-0.18135797977448],[-0.07230569422245,-0.089893862605095,-0.11717353761196],[-0.017593506723642,-0.26114076375961,-0.16211342811584]],[[0.068821124732494,-0.031557437032461,-0.10509493947029],[-0.027590552344918,-0.26333156228065,-0.01750797778368],[-0.14691972732544,-0.10750638693571,0.095437541604042]],[[-0.0073733772151172,0.016308654099703,-0.023276876658201],[0.043388165533543,-0.009501064196229,-0.12679369747639],[0.11685710400343,0.024276588112116,-0.056490682065487]],[[0.0023027872666717,0.089990548789501,0.14458951354027],[0.11709396541119,0.013768397271633,0.03367168828845],[-0.16940754652023,-0.18469758331776,-0.021527545526624]],[[0.0066375718452036,0.096131607890129,-0.13493034243584],[0.081148691475391,-0.029986977577209,-0.0074952305294573],[0.22243504226208,0.029257223010063,-0.026506876572967]],[[-0.14513652026653,-0.0092827770859003,-0.076628245413303],[0.011769332922995,-0.10053008794785,0.10624748468399],[-0.02966920286417,0.049241717904806,-0.027925841510296]],[[-0.003954709507525,0.057539016008377,-0.019527329131961],[-0.0088130915537477,0.069979935884476,-0.02456078492105],[0.043040085583925,-0.022907914593816,-0.091147616505623]],[[0.0054687508381903,-0.024082507938147,-0.12822479009628],[-0.015349233523011,-0.035661827772856,-0.01349263638258],[0.19493634998798,-0.037029907107353,0.14178478717804]],[[-0.087333910167217,-0.11654669046402,-0.039944399148226],[-0.049397528171539,0.060699533671141,0.074230886995792],[0.11263220757246,-0.081761300563812,0.023776700720191]],[[-0.031420260667801,-0.073536582291126,0.099913887679577],[-0.2322800308466,0.031824022531509,0.093708828091621],[0.0023339525796473,0.030964033678174,-0.045759201049805]],[[0.030124144628644,-0.0002136040275218,-0.152124106884],[0.059538472443819,-0.13162285089493,-0.067658744752407],[-0.16032434999943,-0.10504797846079,0.049506295472383]],[[0.026269001886249,-0.018231987953186,0.0053298734128475],[0.10360787063837,-0.020875927060843,-0.005624579731375],[0.0086710089817643,-0.025010028854012,-0.15142817795277]],[[0.06572861969471,0.052148144692183,0.013463878072798],[-0.070050925016403,-0.065433256328106,0.024573294445872],[-0.010307099670172,0.0040630102157593,-0.089904814958572]],[[-0.052520286291838,-0.022329853847623,-0.064363561570644],[0.075019903481007,0.081866860389709,0.053909033536911],[-0.014897680841386,-0.077898770570755,0.053821422159672]],[[-0.04574217274785,0.12445470690727,0.034553024917841],[-0.0045842719264328,-0.14825470745564,0.094215899705887],[-0.030981170013547,-0.015154957771301,0.045921053737402]],[[-0.073340706527233,-0.031873192638159,-0.022710911929607],[-0.16297689080238,0.11306644231081,-0.05553587153554],[0.14176964759827,-0.067405842244625,-0.04963430762291]],[[-0.026541326195002,0.022886039689183,-0.071499101817608],[-0.033050112426281,0.16992063820362,-0.023201990872622],[0.1466850489378,-0.023240469396114,0.059812858700752]],[[0.088500365614891,0.084889218211174,0.13720588386059],[-0.01572116650641,0.084101296961308,0.10866791009903],[-0.1109334975481,-0.026361014693975,0.033650308847427]],[[0.027553023770452,-0.15414378046989,-0.17739775776863],[-0.059568587690592,-0.068432152271271,0.12476925551891],[-0.0057671833783388,0.19878481328487,-0.030617460608482]],[[-0.069712288677692,0.079354785382748,-0.11562147736549],[0.053069654852152,0.11740724742413,0.14395046234131],[0.0066576818935573,-0.2538900077343,-0.18988259136677]],[[-0.067368566989899,-0.013748510740697,0.04221985861659],[0.050243195146322,0.012510909698904,0.10928881168365],[-0.04960922151804,-0.016445614397526,-0.023035760968924]],[[0.019146125763655,0.044361151754856,-0.026486251503229],[-0.009578125551343,-0.08459585160017,0.011212129145861],[0.091925643384457,-0.014786252751946,0.15875059366226]],[[0.027178900316358,0.038733012974262,0.12643240392208],[0.13099437952042,0.03120837919414,-0.07264332473278],[-0.16569694876671,-0.14048869907856,0.077014774084091]],[[-0.03393218293786,-0.032878749072552,-0.14670437574387],[-0.026252269744873,-0.038753543049097,-0.033315692096949],[0.073050975799561,-0.022446416318417,0.015929849818349]],[[0.054414574056864,0.018472926691175,0.087167277932167],[0.021509071812034,-0.11185412108898,0.059109777212143],[-0.12196535617113,0.065906852483749,0.079340025782585]],[[0.018275413662195,-0.081181488931179,0.053157947957516],[-0.095398508012295,-0.020411148667336,0.043747942894697],[-0.090776383876801,0.060615442693233,-0.081112839281559]],[[0.038098625838757,-0.077209956943989,-0.044140033423901],[0.051152274012566,-0.12180440872908,-0.077791787683964],[-0.095437362790108,-0.10035950690508,-0.01858307980001]],[[0.094154976308346,0.016206471249461,-0.099342167377472],[-0.028832595795393,-0.076597027480602,0.019408013671637],[0.039470080286264,0.047880761325359,0.11609020084143]],[[0.033977147191763,0.07041347026825,-0.0079040303826332],[0.050860084593296,0.029985290020704,-0.10865846276283],[0.18519623577595,-0.089431054890156,-0.042699750512838]],[[0.040417902171612,-0.10411673784256,-0.030949134379625],[-0.022824794054031,-0.085574999451637,-0.021556306630373],[-0.061072047799826,-0.12313462793827,-0.10424823313951]],[[0.01505855191499,-0.02605595253408,-0.081131249666214],[-0.030753005295992,0.067415155470371,-0.012157042510808],[-0.094186618924141,0.010344343259931,0.17908710241318]],[[-0.07941660284996,0.025323370471597,-0.084477677941322],[0.014836302958429,0.17596387863159,-0.060123924165964],[0.048826619982719,-0.15876027941704,-0.088088020682335]],[[0.10637599229813,0.042856577783823,-2.7746631531045e-05],[-0.027450853958726,0.037991587072611,-0.017988007515669],[0.029124008491635,-0.15509869158268,-0.13098636269569]],[[0.012572077102959,0.057552199810743,0.011742067523301],[-0.081537768244743,-0.075887680053711,-0.057672072201967],[0.081796988844872,0.0042890161275864,-0.00052640965441242]],[[-0.071137361228466,-0.014106363989413,-0.14363546669483],[-0.014113664627075,-0.044325463473797,0.024394955486059],[0.034659091383219,0.050427690148354,0.03360328450799]],[[-0.019774915650487,0.031796872615814,-0.02817321382463],[0.024781676009297,-0.01750897243619,-0.023306457325816],[-0.16441583633423,-0.12674127519131,0.13170948624611]],[[0.045098699629307,-0.19969438016415,-0.019190948456526],[0.17445623874664,-0.096102446317673,0.13074736297131],[0.06611941754818,0.023180847987533,-0.037162315100431]],[[0.034598283469677,-0.018510282039642,0.055232048034668],[-0.06893190741539,-0.050723176449537,0.021145025268197],[-0.05120499804616,-0.055046603083611,0.02087914198637]],[[-0.011847365647554,0.050636649131775,0.055430758744478],[-0.057616375386715,0.10176152735949,0.027870321646333],[-0.070752114057541,-0.061134770512581,0.081302963197231]],[[-0.055409297347069,-0.11985920369625,-0.24545499682426],[0.026328528299928,-0.11100605875254,-0.15968136489391],[-0.10141657292843,0.013462077826262,-0.063155509531498]],[[-0.063973516225815,-0.058599658310413,-0.070599474012852],[0.023595701903105,-0.098379552364349,0.08020193874836],[0.063291035592556,0.019358227029443,0.1020298525691]],[[-0.027328869327903,-0.0031985761597753,0.027743952348828],[-0.028817441314459,0.0082469591870904,0.028982060030103],[0.03112112544477,0.014417238533497,-0.035076700150967]],[[0.027876000851393,-0.039429619908333,-0.14068265259266],[0.053051453083754,0.035059534013271,-0.012235328555107],[0.022782171145082,-2.6825970053324e-05,-0.067024230957031]],[[0.04146322235465,0.049252487719059,-0.037496995180845],[0.018502740189433,0.13633340597153,-0.073051154613495],[-0.01687659882009,-0.2072080373764,-0.24760763347149]],[[0.017437651753426,0.1127308011055,0.12753893435001],[0.014877382665873,0.0029245575424284,-0.035707507282495],[0.074025638401508,0.022372249513865,-0.099386662244797]],[[-0.078005038201809,0.032204333692789,-0.019069219008088],[-0.022199552506208,0.01656199619174,-0.078819610178471],[0.1565420627594,-0.082933560013771,-0.015321770682931]],[[-0.083193019032478,-0.084505476057529,-0.0073189190588892],[-0.071378238499165,0.041238073259592,0.16460977494717],[-0.025538032874465,-0.00048702993080951,0.064423613250256]],[[-0.0183947365731,0.032340534031391,-0.053388923406601],[0.04736416041851,0.095656879246235,-0.046517547219992],[0.018432898446918,-0.081987544894218,0.033686079084873]],[[-0.08238959312439,-0.16507497429848,-0.12401124835014],[-0.037890750914812,0.013469094410539,0.071463540196419],[-0.058962788432837,-0.053849846124649,0.02991128526628]],[[-0.041400596499443,0.059340067207813,0.11329345405102],[0.069397814571857,0.033819902688265,0.0010724279563874],[0.047350257635117,-0.024619840085506,-0.033167187124491]],[[0.10293254256248,-0.069913290441036,-0.11006062477827],[0.067415066063404,-0.055501822382212,0.051533944904804],[0.10636758804321,0.011890521273017,-0.059368927031755]],[[0.02121601626277,0.015427564270794,-0.14165936410427],[0.060593269765377,0.011940116994083,-0.13572569191456],[-0.023468034341931,-0.097455829381943,-0.026579348370433]],[[-0.079827442765236,-0.084229834377766,0.053316231817007],[0.0057062054984272,-0.050870336592197,0.019534576684237],[0.010924117639661,-0.019404912367463,-0.020487632602453]],[[0.038418292999268,0.029515730217099,-0.20148615539074],[-0.069571904838085,-0.1531794667244,-0.049836833029985],[0.005090662278235,0.0098396604880691,-0.051808893680573]],[[-0.045245323330164,-0.0010464959777892,0.13526448607445],[0.073525458574295,0.12890502810478,0.13381825387478],[-0.094193696975708,-0.046882249414921,-0.0047932770103216]],[[-0.038457732647657,0.011062353849411,-0.0029672149103135],[-0.11233179271221,0.057184223085642,0.065842486917973],[-0.0353759303689,-0.023866221308708,-0.054640997201204]],[[0.0035815217997879,-0.069251634180546,0.025803973898292],[0.021777641028166,-0.021536435931921,-0.06598399579525],[-0.29353871941566,0.013254920952022,0.045995268970728]],[[-0.015334548428655,-0.080433912575245,-0.020639851689339],[0.017386825755239,0.064936950802803,0.027014357969165],[-0.094033785164356,-0.042573396116495,0.0077359471470118]],[[-0.037942487746477,-0.082408644258976,-0.11341198533773],[0.071432754397392,-0.040843054652214,-0.026987044140697],[-0.014717044308782,-0.022372828796506,0.0008580440771766]],[[-0.072937093675137,-0.013500616885722,-0.05318795517087],[0.080935455858707,0.068696364760399,0.078171275556087],[-0.05623846128583,0.044508017599583,0.1017656698823]],[[-0.12204379588366,-0.050491705536842,-0.079998053610325],[0.052576210349798,-0.032982427626848,-0.072985447943211],[-0.1691470593214,-0.092853061854839,0.0057849581353366]],[[0.042569968849421,0.11721184104681,0.15784876048565],[-0.043022345751524,-0.08090703189373,-0.11795381456614],[-0.075590625405312,-0.18314592540264,-0.093609355390072]]],[[[-0.023270986974239,0.015516460873187,0.027973763644695],[0.018971426412463,-0.047923795878887,0.10340661555529],[-0.091363497078419,0.037749610841274,-0.073060244321823]],[[0.1386353969574,-0.089440912008286,0.0015236579347402],[0.042186051607132,0.027822982519865,-0.029413167387247],[-0.038295846432447,0.15189728140831,-0.052289009094238]],[[0.018248209729791,-0.10217075794935,-0.0026673378888518],[-0.11415632069111,-0.045206788927317,0.057894047349691],[-0.070859231054783,-0.39755815267563,0.059899065643549]],[[-0.028374776244164,-0.32925844192505,-0.022113904356956],[-0.079993598163128,0.059538099914789,0.084923453629017],[-0.17384433746338,0.11095431447029,0.042207792401314]],[[0.01531773712486,-0.04411106929183,-0.0090728001669049],[0.033726833760738,-0.068620160222054,0.10143201053143],[0.022090686485171,0.0040044337511063,-0.095927730202675]],[[-0.010949160903692,0.013188107870519,0.043270282447338],[0.088591516017914,0.12582540512085,-0.052571881562471],[-0.088785924017429,-0.12155499309301,0.075066938996315]],[[-0.21680541336536,-0.065438531339169,0.036789055913687],[-0.11689836531878,-0.040545210242271,-0.048046305775642],[-0.086103811860085,-0.11962858587503,0.14589799940586]],[[-0.015911910682917,-0.026465695351362,0.0071679553948343],[-0.01141391787678,0.05455432459712,-0.058017451316118],[0.12996344268322,0.0059772185049951,0.061897959560156]],[[-0.014243800193071,0.10698615014553,-0.0056681106798351],[0.0023986059240997,-0.044604517519474,-0.061002660542727],[0.059348482638597,-0.030016537755728,0.034078724682331]],[[-0.076369240880013,0.0065983105450869,-0.11803836375475],[-0.0188277810812,-0.089796356856823,0.067134976387024],[0.14498151838779,-0.14830523729324,0.070352710783482]],[[0.23148283362389,0.036753486841917,-0.083867073059082],[-0.00014622107846662,0.027411103248596,-0.098499797284603],[-0.11199241131544,-0.2385255843401,0.075356245040894]],[[-0.14434480667114,-0.003317954717204,0.053571969270706],[-0.070171475410461,0.13908797502518,-0.10258236527443],[0.011424718424678,-0.05220290645957,-0.028338260948658]],[[-0.038298096507788,-0.11111268401146,0.061864007264376],[0.032311126589775,-0.13954302668571,0.016127636656165],[0.0073115937411785,-0.013557875528932,-0.072889745235443]],[[0.14081257581711,0.00096447410760447,-0.10724747925997],[0.066230997443199,-0.071366339921951,-0.051572807133198],[-0.088259920477867,-0.035637643188238,0.059667985886335]],[[-0.079630017280579,0.023247228935361,-0.050624750554562],[0.10030258446932,0.0049476511776447,-0.081236459314823],[-0.021117996424437,0.054729238152504,-0.046610649675131]],[[-0.032143592834473,-0.046545092016459,-0.091655924916267],[0.054321799427271,0.063898228108883,-0.091058552265167],[-0.0056511806324124,0.077887184917927,-0.0031640599481761]],[[0.068479910492897,0.028405129909515,-0.052168805152178],[0.067652978003025,-0.026912333443761,-0.14782363176346],[-0.018230136483908,-0.034300353378057,-0.027138341218233]],[[-0.012412151321769,0.041019380092621,-0.082941010594368],[0.062773786485195,0.036567412316799,-0.14986376464367],[0.021132756024599,-0.18247523903847,-0.047776840627193]],[[0.019019117578864,0.0051895589567721,0.025551145896316],[0.063366524875164,0.087335504591465,-0.12478100508451],[0.052353631705046,-0.042360529303551,-0.089983649551868]],[[0.19507437944412,-0.11729384958744,0.073421247303486],[0.064628258347511,0.062640346586704,0.044850248843431],[0.097356967628002,0.093059815466404,-0.095492228865623]],[[-0.08087033778429,0.04350858554244,0.06568156182766],[-0.013458848930895,0.027333784848452,-0.040761668235064],[0.041321612894535,0.015760337933898,0.1185405626893]],[[0.19456371665001,0.14209672808647,-0.15610930323601],[0.090714603662491,-0.0012812936911359,0.026426194235682],[-0.13556291162968,0.013247177936137,0.012637666426599]],[[-0.053628638386726,0.060624368488789,0.0012866155011579],[0.13702468574047,-0.026619620621204,0.065079599618912],[-0.064987570047379,-0.089682526886463,-0.0090221473947167]],[[0.026641828939319,0.14333707094193,-0.16081956028938],[0.033116687089205,0.013900317251682,0.059410724788904],[-0.097656138241291,0.08591365814209,0.0023635206744075]],[[0.016286093741655,-0.052669588476419,-0.022399414330721],[0.089621566236019,0.045181479305029,-0.032054591923952],[0.020750923082232,0.057452078908682,0.03013077378273]],[[-0.18120422959328,0.15974965691566,-0.062956243753433],[-0.0020086765289307,-0.019727358594537,-0.081891402602196],[0.010581642389297,0.080432273447514,-0.03544582054019]],[[0.050176877528429,0.0053668082691729,0.025047482922673],[-6.9110858021304e-05,-0.13615095615387,-0.079337298870087],[0.13032892346382,0.10248778760433,-0.088076740503311]],[[0.056659664958715,0.11234313994646,0.09117541462183],[0.08161735534668,-0.044142507016659,-0.21918192505836],[0.04035634547472,-0.006437923759222,-0.095334880053997]],[[-0.026611942797899,-0.050092913210392,0.066593021154404],[-0.14479498565197,-0.073787279427052,-0.029025072231889],[0.031980387866497,0.0013773617101833,0.038380790501833]],[[-0.013954779133201,-0.046816419810057,0.10198321193457],[-0.079175785183907,0.072545729577541,-0.052173476666212],[-0.03337761759758,0.024337936192751,-0.072898365557194]],[[-0.09971135109663,-0.011529522016644,0.0045689810067415],[0.1529973000288,0.02012144960463,0.048621516674757],[0.060959942638874,-0.081907480955124,0.047538284212351]],[[0.064858466386795,-0.0045749000273645,0.13525623083115],[-0.11362981051207,0.044290196150541,-0.013923808000982],[-0.093941375613213,0.048647992312908,0.018663896247745]],[[-0.053123913705349,0.08659415692091,-0.023492740467191],[-0.011525535024703,-0.042413033545017,-0.0088555673137307],[-0.070234604179859,0.14028158783913,-0.008408147841692]],[[-0.066509999334812,-0.03030401468277,-0.011533194221556],[0.10460348427296,-0.0059622880071402,-0.076188281178474],[0.0057500060647726,-0.021339705213904,-0.033220622688532]],[[-0.0037552383728325,0.011863455176353,0.12624660134315],[0.0034054580610245,-0.021555677056313,0.12344388663769],[0.069955222308636,-0.20583634078503,0.027020068839192]],[[-0.045094627887011,0.085949473083019,-0.07410803437233],[-0.041004627943039,0.057537522166967,-0.10490549355745],[0.027825931087136,-0.18604373931885,0.095426954329014]],[[-0.071620903909206,-0.15006877481937,0.030541930347681],[0.01370307803154,-0.047053836286068,0.041942473500967],[0.083071641623974,0.058227766305208,0.041456561535597]],[[0.0015404038131237,0.17821969091892,0.059456005692482],[-0.13434579968452,-0.068001560866833,0.053026296198368],[-0.098970860242844,-0.095165230333805,-0.1365443021059]],[[0.04851034656167,-0.024738643318415,-0.098246514797211],[-0.077410526573658,0.015504328534007,0.041021466255188],[-0.041654091328382,0.0018208920955658,0.0071022608317435]],[[-0.00038706004852429,-0.015362870879471,0.081446304917336],[0.015021565370262,0.052121732383966,0.064842708408833],[0.0044617084786296,0.024498736485839,0.009663937613368]],[[-0.033151153475046,-0.037667386233807,0.083572447299957],[-0.060741540044546,0.13523368537426,0.026525201275945],[-0.11309320479631,-0.031308595091105,-0.009045354090631]],[[0.017796600237489,-0.062910959124565,0.034862495958805],[-0.10503195971251,0.049978215247393,0.025887846946716],[-0.040744937956333,-0.041659597307444,-0.1295512765646]],[[0.027152460068464,0.030326319858432,-0.019054867327213],[0.00040251619066112,-0.086675450205803,-0.030641075223684],[-0.05504684150219,-0.051550030708313,0.10673668980598]],[[0.094877682626247,-0.14326691627502,0.002266155788675],[-0.011225030757487,0.0012368466705084,0.081185169517994],[-0.049239184707403,0.067069634795189,-0.019984001293778]],[[-0.0620750002563,-0.022801069542766,-0.20248471200466],[0.059303268790245,-0.19292260706425,0.011945680715144],[0.041648268699646,-0.11210335791111,-0.015011472627521]],[[0.013842318207026,-0.017108775675297,0.035893347114325],[0.013592374511063,-0.1064460426569,0.067067623138428],[-0.10747928917408,-0.15274831652641,0.085731141269207]],[[0.12763403356075,-0.021478570997715,0.078974448144436],[-0.024020051583648,-0.02037650719285,0.023577054962516],[0.070318855345249,-0.041109591722488,0.10979724675417]],[[0.043867539614439,-0.11284876614809,-0.080975450575352],[0.13218112289906,-0.062149118632078,0.046724148094654],[0.050057627260685,-0.10588819533587,0.023059768602252]],[[-0.038136355578899,-0.022215707227588,0.011991595849395],[0.03792729228735,0.00025843209004961,-0.063033290207386],[-0.064371228218079,0.048480033874512,0.013971590436995]],[[0.10811711847782,-0.050848495215178,-0.015875726938248],[-0.079966582357883,0.010036653839052,0.049941223114729],[-0.003369513200596,-0.0084780333563685,0.08400197327137]],[[-0.055183488875628,0.00098181725479662,0.026330560445786],[-0.046129211783409,-0.020552208647132,0.11443395912647],[-0.068483330309391,0.079351305961609,-0.076206140220165]],[[0.04301005974412,-0.044147443026304,0.076934568583965],[-0.07834542542696,-0.035928010940552,-0.064319916069508],[0.0048186387866735,0.093754172325134,-0.01101875025779]],[[-0.11981631070375,-0.02721143886447,-0.069843038916588],[0.0079308953136206,0.075272276997566,0.041569255292416],[-0.061886940151453,-0.0066889063455164,0.061780739575624]],[[-0.17741295695305,-0.019724994897842,0.0017096396768466],[-0.047842998057604,-0.027024284005165,0.19629487395287],[-0.104910351336,0.16585293412209,-0.11678422242403]],[[-0.008141609840095,-0.02082653157413,-0.093188636004925],[0.041057147085667,-0.017568707466125,-0.049340929836035],[-0.043664786964655,0.092050634324551,-0.017080198973417]],[[-0.079326659440994,-0.07391731441021,-0.053609497845173],[0.061543747782707,-0.017942287027836,-0.029522065073252],[-0.086893737316132,-0.050027921795845,-0.015367450192571]],[[0.034992881119251,0.084509313106537,-0.0342136323452],[0.02855240739882,0.023374397307634,0.024534611031413],[0.072152331471443,0.073712222278118,0.0042683412320912]],[[0.10760666429996,-0.012616671621799,-0.10575761646032],[-0.18561147153378,-0.12173010408878,0.093230739235878],[-0.09769994020462,-0.15732099115849,-0.044299528002739]],[[0.12748822569847,0.1093746945262,-0.081030666828156],[-0.076561830937862,-0.011267192661762,0.022131524980068],[-0.07930825650692,0.031803037971258,0.082529306411743]],[[-0.01478810608387,0.060251872986555,-0.038617014884949],[0.098660290241241,0.013767235912383,-0.025537988170981],[-0.019584437832236,0.066851809620857,0.0015724739059806]],[[-0.02558272331953,0.0096926232799888,-0.11966781318188],[-0.0044083842076361,-0.0027411624323577,-0.059785611927509],[0.15144102275372,-0.0027867646422237,-0.031605180352926]],[[-0.070453196763992,-0.0066975085064769,0.07371861487627],[0.038012880831957,0.093287527561188,-0.048616863787174],[-0.0041696038097143,0.02610944584012,-0.04946680739522]],[[-0.064796350896358,-0.1034668982029,-0.015420153737068],[-0.12080932408571,0.12174019962549,0.0095217069610953],[-0.029169188812375,-0.018898390233517,-0.12582676112652]],[[0.12702308595181,0.10169903188944,-0.33857223391533],[-0.036321982741356,-0.075298823416233,0.0028637202922255],[-0.16481046378613,-0.19421339035034,0.14057931303978]]],[[[-0.0085544930770993,0.035012528300285,0.0049386513419449],[-0.030234850943089,0.025468086823821,0.03094338439405],[0.023849301040173,-0.034335937350988,-0.049814485013485]],[[-0.04727727919817,0.075071178376675,0.10525394976139],[-0.085909247398376,0.03633813932538,0.020834671333432],[-0.099420495331287,0.077901624143124,-0.0025604413822293]],[[-0.066010139882565,-0.0052817491814494,0.011943413875997],[-0.18698841333389,-0.21566243469715,-0.02683973684907],[-0.27334865927696,-0.17231410741806,0.0051107411272824]],[[-0.10149289667606,-0.049796402454376,-0.060172006487846],[0.12568014860153,0.2348206192255,-0.046480000019073],[0.14800456166267,0.14247527718544,0.0084179658442736]],[[0.072864107787609,0.028705460950732,-0.12398786842823],[-0.039185892790556,0.039043933153152,0.069591097533703],[-0.054799892008305,-0.035006307065487,-0.021591430529952]],[[-0.078989110887051,-0.0033256378956139,-0.07158524543047],[-0.070196807384491,-0.039372835308313,-0.017341922968626],[0.018659468740225,0.017123494297266,0.0062187663279474]],[[0.014454419724643,-0.10455717146397,-0.077468506991863],[0.10309272259474,-0.039560306817293,0.13192021846771],[0.011062923818827,-0.092391714453697,0.01298741530627]],[[-0.01910294778645,0.018587969243526,-0.086852073669434],[-0.057897157967091,0.12471621483564,0.040886741131544],[-0.0133145628497,-0.11255662888288,0.01929228939116]],[[-0.0046047675423324,0.095860339701176,0.055183224380016],[-0.024966023862362,-0.026024077087641,-0.012462113052607],[-0.041087493300438,-0.068022824823856,0.019844230264425]],[[0.038318939507008,0.053209938108921,0.049191422760487],[-0.002176552079618,-0.068274527788162,-0.054606001824141],[-0.081341184675694,0.19266377389431,0.021802976727486]],[[-0.082966521382332,-0.026927143335342,-0.0063565126620233],[-0.021941129118204,-0.017941422760487,-0.0036735010799021],[-0.026186998933554,0.0015602490166202,-0.0030622272752225]],[[0.033787507563829,0.066108837723732,-0.021904369816184],[0.11703818291426,-0.1234540194273,-0.0031077011954039],[-0.00552321318537,0.051741223782301,-0.03736038506031]],[[-0.17136834561825,-0.12973062694073,0.093720018863678],[-0.1395109295845,-0.22586151957512,-0.043527856469154],[0.12040568143129,-0.12902703881264,0.019250612705946]],[[-0.15129013359547,0.016622642055154,0.025486838072538],[-0.0029111679177731,-0.13849544525146,-0.012934145517647],[0.033616960048676,-0.018418410792947,0.0043276702053845]],[[0.0076252855360508,0.06323754042387,0.05866401642561],[0.0023151224013418,-0.014190618880093,-0.023302923887968],[0.035042025148869,-0.079105637967587,-0.014430124312639]],[[0.017508041113615,-0.028348470106721,0.050299625843763],[-0.00015518869622611,0.019968451932073,0.081312112510204],[-0.065819166600704,-0.028450952842832,0.0033559815492481]],[[0.01949336566031,-0.06660220772028,0.0050993226468563],[-0.041948851197958,-0.046150267124176,0.048405341804028],[0.022882534191012,-0.0027898359112442,0.030371826142073]],[[-0.062811441719532,-1.7245918570552e-05,0.07559784501791],[-0.042605929076672,-0.033101033419371,0.0070165493525565],[-0.091437175869942,-0.079143889248371,-0.034302227199078]],[[0.018923711031675,-0.069353871047497,0.049204390496016],[0.015765659511089,-0.01722078025341,0.035949893295765],[-0.024665607139468,-0.030238198116422,-0.017435079440475]],[[-0.10535246878862,0.019215295091271,-0.12891626358032],[0.10825241357088,0.04750856384635,0.044614620506763],[0.069131009280682,0.049172770231962,0.11733821034431]],[[-0.022718103602529,0.024396903812885,-0.037278365343809],[-0.055729668587446,0.0081035289913416,-0.040698543190956],[-0.0045160739682615,0.052654810249805,0.020426729694009]],[[-0.084895387291908,-0.091092765331268,-0.05480333045125],[-0.10825848579407,-0.075297594070435,-0.23320029675961],[0.045125924050808,0.10270059853792,0.028925653547049]],[[-0.1134192943573,0.049235593527555,0.036458190530539],[-0.11439748853445,0.12905178964138,-0.088766574859619],[0.008401770144701,0.017493946477771,0.081032320857048]],[[0.090275600552559,0.033433232456446,0.028424264863133],[0.038591202348471,0.05152328684926,0.00093560048844665],[0.0084180273115635,0.062704026699066,-0.012299259193242]],[[0.010827783495188,-0.046439688652754,-0.085493035614491],[0.034456510096788,-0.031150683760643,0.029755847528577],[-0.016704011708498,0.036105953156948,-0.010451440699399]],[[-0.051852289587259,-0.052699886262417,0.017072346061468],[-0.027312139049172,-0.17011430859566,-0.092772014439106],[0.039536289870739,-0.044476252049208,-0.0007347526261583]],[[-0.0457608923316,-0.010770230554044,-0.015733730047941],[0.10773306339979,0.039792742580175,0.011072525754571],[0.10100501030684,0.034478295594454,0.046233553439379]],[[-0.018074473366141,-0.004461373668164,-0.032373275607824],[-0.039136819541454,-0.086171716451645,-0.072410434484482],[-0.029928062111139,0.16787147521973,-0.0025936218444258]],[[0.040901996195316,0.019928215071559,-0.01737791672349],[-0.048940002918243,-0.031598627567291,-0.093732394278049],[0.013771410100162,0.050755195319653,-0.050210393965244]],[[-0.015024660155177,-0.14863778650761,0.025608444586396],[0.033740539103746,0.031054263934493,-0.074529394507408],[0.12360144406557,-0.044062111526728,0.072001419961452]],[[0.13866482675076,-0.11559992283583,0.027748614549637],[-0.11804101616144,-0.003957545850426,-0.062915727496147],[-0.049862999469042,0.12919613718987,0.016508221626282]],[[-0.13910780847073,0.021380860358477,0.035280667245388],[0.037755981087685,0.10184811800718,0.11630138754845],[-0.11990784853697,-0.028374562039971,0.039784517139196]],[[0.021020002663136,0.046120759099722,-0.049427933990955],[0.012636718340218,-0.049423940479755,-0.11079677939415],[0.068951077759266,-0.053291417658329,-0.036638904362917]],[[-0.31780722737312,-0.25107553601265,0.018345106393099],[-0.37150368094444,-0.17977660894394,0.0008074275101535],[-0.01225730124861,0.06240900978446,0.050330717116594]],[[0.034595429897308,-0.076546348631382,-0.029684592038393],[0.05108392983675,-0.095634363591671,-0.105857886374],[0.091182552278042,0.07899747043848,-0.026496913284063]],[[0.12082473933697,0.025953376665711,-0.041997548192739],[0.05707773566246,0.12448009848595,-0.020460925996304],[-0.079318039119244,0.14822860062122,0.018465012311935]],[[-0.034938875585794,-0.062809593975544,-0.1891383677721],[0.099617764353752,0.020578179508448,-0.061465200036764],[0.25092911720276,0.060178387910128,0.069605134427547]],[[-0.17110848426819,-0.076521307229996,0.016507863998413],[-0.18900549411774,0.14339843392372,0.014449851587415],[-0.016143023967743,0.043038286268711,0.084509968757629]],[[-0.050589427351952,-0.0043941559270024,0.096768356859684],[-0.0087521560490131,-0.045510340481997,-0.051423560827971],[-0.035569258034229,0.02795984223485,0.10529769957066]],[[-0.016804890707135,0.036369223147631,-0.045391604304314],[0.0036213288549334,-0.033873304724693,0.056090045720339],[-0.034548368304968,0.083278939127922,0.076500631868839]],[[0.029988255351782,-0.041887786239386,-0.0073475930839777],[0.042345844209194,-0.11699330061674,-0.0025556709151715],[0.032576765865088,0.092177011072636,-0.049931861460209]],[[-0.0029873957391828,0.0078234644606709,0.02108658105135],[-0.1152650937438,-0.20192396640778,-0.073773697018623],[0.058751069009304,0.13861998915672,0.025615639984608]],[[0.0052877748385072,-0.028013722971082,0.041335307061672],[-0.043720025569201,-0.041802328079939,-0.033970460295677],[0.065488703548908,-0.15286509692669,-0.017349880188704]],[[-0.055903825908899,-0.057344615459442,-0.0854087844491],[0.074432022869587,-0.00028029043460265,0.030187331140041],[0.050254665315151,0.05170938745141,-0.0066008716821671]],[[0.0046501024626195,0.0079062441363931,0.026973741129041],[-0.12527488172054,-0.12921756505966,-0.021369878202677],[-0.029774261638522,-0.019840594381094,-0.060653679072857]],[[-0.03053436987102,0.022278351709247,-0.10609719157219],[0.0029054274782538,-0.11502138525248,-0.0097007462754846],[0.071249686181545,0.020533077418804,-0.071481287479401]],[[-0.072485908865929,-0.17657612264156,-0.039872992783785],[0.040312092751265,-0.12933026254177,0.087664797902107],[0.023546930402517,-0.10637524724007,0.0096680754795671]],[[0.0041922116652131,-0.010907241143286,-0.017184391617775],[-0.044891886413097,0.03362288698554,-0.057088263332844],[0.14737264811993,-0.036952301859856,-0.031785488128662]],[[-0.0019375866977498,0.013613007031381,-0.011525033041835],[-0.068244747817516,0.027800554409623,-0.084435544908047],[0.0043553211726248,0.068451009690762,-0.028371812775731]],[[0.031546179205179,-0.040273144841194,-0.023918632417917],[0.0853221565485,-0.10374726355076,-0.0075325658544898],[-0.093021802604198,-0.013788275420666,-0.059051752090454]],[[-0.051543168723583,-0.12848323583603,-0.037265826016665],[0.022900272160769,0.02064036950469,-0.11132016032934],[0.048530030995607,-0.088747628033161,-0.0028708707541227]],[[0.020578363910317,0.021384079009295,0.025636155158281],[0.082927353680134,-0.0032598930411041,0.015149923972785],[-0.078644022345543,0.04735429212451,-0.00044330488890409]],[[0.088033527135849,0.071200653910637,-0.12138544768095],[0.090524919331074,0.062526762485504,-0.031122060492635],[-0.14897595345974,0.033368028700352,-0.095209263265133]],[[0.063385374844074,-0.032836776226759,-0.016880530864],[0.11851722747087,-0.065592370927334,-0.0019648766610771],[-0.1291231662035,-0.072416111826897,-0.0038677447009832]],[[-0.054941538721323,-0.0059915436431766,-0.063935108482838],[-0.12071648985147,0.12062961608171,0.0033121341839433],[-0.016784772276878,0.060904700309038,-0.0038171617779881]],[[0.017391027882695,-0.018185641616583,-0.024206073954701],[-0.002464943099767,0.12614162266254,0.0060605476610363],[-0.051982268691063,0.011131292209029,-0.046740211546421]],[[-0.084155671298504,0.058015398681164,0.099674455821514],[0.039746407419443,0.078235514461994,0.074791632592678],[-0.092029295861721,0.03937915340066,-0.02981879003346]],[[0.014269571751356,-0.12987247109413,-0.0045899944379926],[-0.064351700246334,-0.040277190506458,-0.048620507121086],[0.047874923795462,0.067891716957092,0.018056727945805]],[[-0.042539458721876,-0.034563381224871,0.027062654495239],[0.040481653064489,-0.0087156128138304,-0.020176567137241],[-0.012305771932006,-0.038669690489769,-0.073785215616226]],[[0.042029689997435,0.10303595662117,0.070230461657047],[-0.095511719584465,-0.047840695828199,-0.05015542730689],[-0.072099268436432,-0.022218141704798,0.0163948033005]],[[-0.034791324287653,-0.0021320222876966,0.099902614951134],[-0.0072585702873766,0.056969251483679,-0.070059470832348],[-0.045883808284998,-0.033415731042624,0.019435795024037]],[[0.0076377023942769,0.034053321927786,-0.018602479249239],[-0.038799870759249,0.069550104439259,0.020603807643056],[0.086240470409393,0.071377456188202,0.052562966942787]],[[-0.043637312948704,-0.025520592927933,-0.0010738419368863],[0.00064037571428344,0.063849255442619,0.041086792945862],[0.011796499602497,0.083944886922836,-0.062314663082361]],[[-0.020171569660306,0.07893130928278,-0.0010291483486071],[0.0037155807949603,-0.080903887748718,0.10386396199465],[0.011789236217737,-6.8184235715307e-06,-0.022888708859682]]],[[[0.068397738039494,0.038098126649857,-0.093453928828239],[-0.048842381685972,0.066654175519943,-0.012382146902382],[-0.13755299150944,0.02812491543591,0.074569158256054]],[[0.010092535987496,-0.054857060313225,0.083191819489002],[-0.020289935171604,-0.017147846519947,-0.0036076430696994],[-0.13614532351494,-0.012606855481863,0.071395881474018]],[[-0.067157849669456,0.042756322771311,-0.0071784001775086],[-0.061092216521502,0.023115370422602,0.061981115490198],[0.076240122318268,-0.021577436476946,0.11755469441414]],[[-0.027132323011756,-0.0038204956799746,-0.0196892041713],[0.064871907234192,0.049235049635172,0.031410858035088],[0.099401667714119,-0.055326461791992,-0.053230326622725]],[[0.064766004681587,0.074855893850327,-0.068590492010117],[0.069223918020725,-0.020241018384695,0.045171543955803],[-0.051459062844515,-0.039547581225634,-0.079928599298]],[[-0.0041649220511317,0.0060163559392095,-0.02610044926405],[-0.029731288552284,0.025489246472716,0.027022536844015],[0.01295982580632,0.080610282719135,-0.0057229888625443]],[[-0.0043029133230448,0.086716189980507,-0.032100461423397],[-0.051361605525017,-0.0102110048756,-0.0022046605590731],[0.0056482129730284,-0.04996046423912,0.10281054675579]],[[0.071032807230949,0.10274269431829,0.012380539439619],[0.032643105834723,-0.040563430637121,0.06123673915863],[-0.10133336484432,0.026575591415167,-0.16433008015156]],[[0.05398777872324,0.13732932507992,0.024679446592927],[-0.028282729908824,-0.022437296807766,-0.0033557158894837],[-0.008034186437726,-0.003522232407704,0.038903646171093]],[[0.069109670817852,0.016461629420519,0.087766997516155],[0.066626697778702,-0.2277438044548,0.13397864997387],[-0.018444243818521,0.062201134860516,-0.029206970706582]],[[0.011047361418605,0.020432073622942,-0.051336470991373],[-0.068065337836742,0.1204476878047,-0.010662792250514],[-0.019224137067795,0.1277959048748,0.030882446095347]],[[0.14991872012615,-0.058437425643206,-0.024977300316095],[0.078860335052013,-0.098298758268356,-0.099948726594448],[-0.071844488382339,-0.069210954010487,-0.089822642505169]],[[-0.090889103710651,-0.019910821691155,-0.067792370915413],[0.10101904720068,0.017541544511914,-0.02010809443891],[0.01937772706151,0.042429015040398,0.016396151855588]],[[-0.060992278158665,-0.03276402503252,-0.067152433097363],[-0.042633514851332,-0.071806110441685,0.030675945803523],[0.078044660389423,-0.020889880135655,0.14089925587177]],[[0.023243468254805,-0.085384026169777,0.046430043876171],[-0.046443972736597,0.090329430997372,-0.004019414074719],[-0.066427111625671,-0.015632551163435,0.027349369600415]],[[0.034494079649448,-0.085414186120033,0.072997935116291],[-0.027307480573654,-0.045883238315582,0.073448017239571],[0.067118816077709,-0.13430534303188,0.1132168918848]],[[0.030724806711078,0.042412668466568,-0.035802830010653],[-0.014858918264508,-0.047102220356464,0.012689429335296],[-0.01649859175086,0.061208203434944,-0.008521556854248]],[[-0.029983166605234,-0.021334631368518,-0.12670077383518],[0.030473668128252,-0.034227225929499,0.085096761584282],[0.0089289946481586,0.11841332912445,0.12157562375069]],[[-0.10100754350424,-0.18413487076759,0.031536966562271],[0.042062591761351,0.012125175446272,0.061023734509945],[0.1536622941494,-0.020487120375037,-0.027482723817229]],[[-0.004670845810324,0.11582390964031,-0.020129097625613],[0.012502289377153,0.026508271694183,-0.13142064213753],[0.028521664440632,0.10301155596972,-0.12461373209953]],[[0.081282936036587,-0.087804675102234,0.053780730813742],[0.029165850952268,-0.11852684617043,0.058790288865566],[0.074869699776173,0.0014894590713084,0.066422648727894]],[[-0.087249517440796,0.056060910224915,0.073032163083553],[0.093639545142651,0.023734709247947,-0.043526001274586],[0.028080102056265,-0.011452312581241,-0.061289679259062]],[[0.031721260398626,-0.038287382572889,-0.041799280792475],[0.027395891025662,0.019335895776749,0.0044360314495862],[0.0084708426147699,-0.083486534655094,-0.043074063956738]],[[-0.041598822921515,0.023477712646127,-0.017973160371184],[0.0010342111345381,-0.093812212347984,0.035973645746708],[-0.040250264108181,-0.0086372504010797,-0.05833663418889]],[[-0.050773423165083,0.059599995613098,0.024154730141163],[-0.051813777536154,0.10730439424515,0.018761843442917],[-0.043764688074589,0.027192626148462,0.033173590898514]],[[0.18291395902634,0.03520293533802,-0.13581663370132],[0.24808464944363,-0.15020069479942,-0.13150545954704],[0.029322559013963,-0.10027269273996,-0.074635654687881]],[[-0.013462205417454,0.034111496061087,0.098601020872593],[-0.030029688030481,-0.10364768654108,0.025680186226964],[0.0074507282115519,0.12048963457346,0.0047507621347904]],[[0.031958144158125,0.018864216282964,-0.071154817938805],[-0.026344602927566,-0.075936153531075,0.012700704857707],[-0.042439702898264,0.09900863468647,0.0070373388007283]],[[0.002163149183616,0.062827505171299,-0.10522925108671],[0.17521068453789,-0.08231945335865,0.052034452557564],[0.074446104466915,-0.014547330327332,0.004812206607312]],[[-0.031258754432201,-0.039238784462214,0.056538365781307],[-0.063503511250019,-0.00036096904659644,0.045069042593241],[-0.015562332235277,0.043268222361803,0.05743321403861]],[[0.062803320586681,0.024963585659862,-0.033124782145023],[0.02165799960494,-0.0053971917368472,0.058750938624144],[-0.056560412049294,0.047851696610451,-0.098196819424629]],[[0.017693072557449,-0.023302441462874,0.10282877832651],[-0.028368337079883,0.083274282515049,-0.1164376437664],[-0.068442195653915,-0.0034176991321146,0.0071360501460731]],[[0.057767394930124,-0.021630188450217,-0.05550130456686],[0.09787905216217,-0.10789695382118,0.050985150039196],[0.043456349521875,0.024993143975735,0.0148999793455]],[[-0.03685650229454,-0.043496057391167,-0.028928691521287],[0.049392532557249,-0.042958904057741,-0.019662300124764],[0.038577914237976,0.025165643543005,0.076392233371735]],[[-0.058612693101168,-0.034885071218014,0.043978672474623],[-0.10164235532284,0.036336373537779,-0.049339607357979],[0.11807698756456,-0.0011475798673928,-0.036915972828865]],[[0.10782371461391,0.078161507844925,0.015346938744187],[-0.065965332090855,-0.047841068357229,-0.013177676126361],[-0.042131241410971,-0.072783902287483,-0.048433557152748]],[[-0.01415088865906,-0.048159088939428,-0.11297001689672],[-0.018824720755219,0.088161610066891,-0.0031580692157149],[-0.11742880195379,0.17171908915043,0.099535688757896]],[[0.011277001351118,0.083571828901768,-0.10257260501385],[-0.071623973548412,0.032414890825748,0.1193798109889],[0.052755299955606,-0.021146163344383,-0.048441585153341]],[[0.042610369622707,-0.031051034107804,0.057867597788572],[-0.020364383235574,-0.072792962193489,-0.022745637223125],[0.0095535488799214,0.024539642035961,-0.053229711949825]],[[0.016909196972847,0.092797711491585,-0.020241711288691],[-0.019496981054544,0.0097866551950574,0.057785928249359],[-0.070513658225536,-0.037074826657772,0.025458654388785]],[[0.17908830940723,-0.10841505229473,0.0097344564273953],[0.0076806447468698,-0.049066960811615,-0.058064062148333],[-0.1113838404417,-0.076649561524391,-0.030250445008278]],[[-0.019131248816848,-0.042592398822308,0.025766626000404],[0.056318841874599,0.064721323549747,0.037242773920298],[-0.021435176953673,0.095290899276733,-0.046763546764851]],[[-0.096709705889225,0.04701317474246,0.052882220596075],[-0.072156213223934,-0.024763522669673,0.076417341828346],[0.035569585859776,-0.092026494443417,0.0030946414917707]],[[0.050039891153574,-0.0079451855272055,0.10638184845448],[0.096261233091354,0.084867037832737,0.012350932694972],[-0.01788817346096,-0.027111578732729,-0.092885628342628]],[[-0.065758161246777,0.052544083446264,0.00028351531364024],[0.09101639688015,-0.0035996923688799,0.025291813537478],[-0.003262820886448,0.063553087413311,-0.094351477921009]],[[0.14239795506001,-0.022710515186191,-0.098790742456913],[0.062188714742661,0.074210934340954,-0.080708302557468],[0.053345676511526,0.033810213208199,0.084579586982727]],[[0.037290975451469,-0.038038037717342,0.026522975414991],[0.04123842716217,0.0037152362056077,0.04326343908906],[0.029805958271027,0.080424755811691,-0.026962392032146]],[[0.010045118629932,-0.0077536669559777,0.068449273705482],[-0.10519461333752,0.0097946729511023,-0.065955638885498],[0.0027445000596344,0.14844323694706,-0.043808687478304]],[[-0.11230432242155,-0.0088550318032503,-0.063001491129398],[0.056865621358156,0.05824926123023,0.11002665013075],[-0.080004297196865,0.016769325360656,0.038823839277029]],[[-0.014875613152981,-0.061245962977409,0.027190947905183],[-0.021148521453142,0.059343263506889,0.0027371300384402],[0.063973344862461,-0.065472193062305,-0.019438520073891]],[[-0.025481035932899,0.020301723852754,0.00026713535771705],[0.063310265541077,0.026517402380705,-0.0089472252875566],[0.0093539645895362,-0.11238396167755,0.022388661280274]],[[-0.018378036096692,0.052732571959496,-0.031796623021364],[-0.045943655073643,0.09512373059988,0.11636982113123],[-0.08600477874279,0.067062184214592,-0.0014982857974246]],[[0.017674222588539,-0.090826570987701,0.05978724732995],[0.064521677792072,-0.032932095229626,0.07193911075592],[-0.01017866935581,-0.063016913831234,0.005222522187978]],[[-0.093877851963043,0.056134581565857,0.092456370592117],[-0.12177856266499,0.15962009131908,0.041951529681683],[-0.015517491847277,0.1174546405673,-0.042242255061865]],[[0.054186638444662,-0.066862054169178,0.077432975172997],[-0.046999342739582,0.055021900683641,-0.065589919686317],[0.009172048419714,-0.041469179093838,0.048046834766865]],[[-0.035476513206959,-0.079865761101246,0.05580323189497],[-0.031898364424706,0.11645962297916,0.013268073089421],[0.048544861376286,0.10181125253439,-0.03551097586751]],[[0.055632170289755,-0.11429904401302,-0.0066422633826733],[0.081026874482632,0.12086790800095,-0.022294033318758],[0.0098220705986023,0.033682763576508,-0.10410706698895]],[[-0.0068284077569842,0.060068782418966,0.0063607608899474],[0.036412790417671,0.028977386653423,0.072617538273335],[0.084168002009392,-0.094910599291325,-0.080497145652771]],[[-0.049857519567013,0.027810489758849,0.088815353810787],[0.027124859392643,0.028001358732581,0.051902621984482],[-0.10502555221319,-0.021853778511286,-0.054368428885937]],[[-0.039436664432287,0.023010091856122,-0.07041422277689],[0.032466799020767,-0.057126868516207,-0.045704048126936],[0.11129435896873,0.070558242499828,-0.1167609244585]],[[0.082732774317265,-0.063461728394032,0.13982281088829],[-0.0092076705768704,0.055976927280426,-0.0039185481145978],[-0.13074781000614,0.00409618858248,0.053537949919701]],[[0.030452162027359,0.081407517194748,-0.093711048364639],[-0.07384030520916,0.015518479049206,0.047402493655682],[0.072959691286087,0.13268931210041,-0.046488743275404]],[[0.13104842603207,0.12550589442253,0.030779944732785],[-0.0019899941980839,-0.063511915504932,-0.023609986528754],[0.044623177498579,-0.056297808885574,-0.1909501105547]],[[-0.014050372876227,0.083850376307964,-0.076562970876694],[-0.029795689508319,0.080630473792553,-0.014361307024956],[-0.050588399171829,0.034859143197536,-0.039218239486217]]],[[[-0.11093448102474,0.050321623682976,0.002182362601161],[-0.0085300384089351,-0.030570711940527,0.082604207098484],[-0.10836640745401,0.068546205759048,-0.030190702527761]],[[-0.078058585524559,-0.026147209107876,-0.049201931804419],[-0.029627097770572,-0.0030141437891871,0.065257385373116],[0.043685361742973,0.039212092757225,0.092746220529079]],[[0.050390847027302,0.030888276174664,-0.030177868902683],[0.13651442527771,0.021804586052895,-0.13323952257633],[0.042584650218487,0.082425698637962,0.098704345524311]],[[0.13921508193016,-0.012620757333934,-0.15226039290428],[0.13525842130184,-0.12213172018528,0.074412018060684],[0.028626792132854,0.074226543307304,0.0033432075288147]],[[-0.00098638376221061,-0.034174766391516,-0.11977763473988],[-0.069358564913273,-0.12745463848114,-0.072256527841091],[0.072689093649387,0.074570275843143,0.068405374884605]],[[0.028016895055771,-0.14292201399803,0.013687023892999],[-0.089664325118065,0.10473593324423,0.088789187371731],[0.032061714679003,-0.029393786564469,-0.11006645858288]],[[0.0032934625633061,0.1202289685607,0.0051626679487526],[0.027979824692011,-0.045628197491169,0.059620451182127],[0.055881906300783,0.027816284447908,-0.010102708823979]],[[-0.063280761241913,0.025249432772398,0.11474408209324],[-0.0064579942263663,-0.04985074698925,-0.10404744744301],[-0.10023766756058,0.089964546263218,0.031664058566093]],[[0.026986885815859,0.0017887612339109,-0.047787148505449],[0.064034178853035,-0.001405211049132,-0.072415374219418],[0.04585151001811,-0.014380837790668,-0.011019760742784]],[[0.039716526865959,0.019145520403981,0.084613092243671],[-0.047428030520678,0.028040640056133,0.10546912252903],[0.16720908880234,0.088778406381607,0.11196724325418]],[[-0.03722944483161,-0.008957595564425,-0.051202431321144],[0.009081588126719,0.072918310761452,0.023458857089281],[0.10520631819963,0.013667769730091,0.03158100694418]],[[-0.018965400755405,-0.11136186122894,0.15757714211941],[-0.13612723350525,0.13998091220856,0.10758698731661],[-0.074229344725609,0.026531336829066,0.10444079339504]],[[0.10999145358801,0.0032122358679771,0.0089361360296607],[-0.029844470322132,0.02114493958652,-0.0045354897156358],[0.036245625466108,0.0042819567024708,-0.026021623983979]],[[-0.051250718533993,0.088264383375645,-0.096876583993435],[0.030841683968902,0.08382959663868,0.12194510549307],[-0.074426501989365,-0.08367832005024,-0.043199185281992]],[[0.0040181311778724,-0.014822188764811,-0.063533537089825],[0.038658648729324,-0.095707833766937,0.0053133526816964],[0.072672411799431,-0.063341490924358,-0.13701577484608]],[[0.055793341249228,-0.010445827618241,0.006731144618243],[0.070031523704529,0.0041362531483173,-0.10622714459896],[-0.14405764639378,0.070614069700241,0.051430534571409]],[[-0.01256019808352,0.038522563874722,0.012786459177732],[-0.11292126774788,0.061511721462011,0.036767575889826],[0.043282229453325,-0.11988865584135,-0.13512027263641]],[[0.003558385418728,0.019565273076296,0.017500082030892],[-0.00783671438694,0.04432799294591,-0.071307741105556],[0.059491153806448,-0.086623832583427,0.011945147067308]],[[-0.062672734260559,0.10335199534893,0.0050599244423211],[0.11179439723492,0.078311055898666,-0.1142403408885],[-0.04853031411767,0.063001066446304,-0.19079697132111]],[[0.082288086414337,0.024942267686129,0.064997844398022],[0.0067211780697107,0.086638450622559,-0.034918993711472],[0.1886859536171,-0.083441078662872,0.025967886671424]],[[0.018604012206197,-0.18516109883785,-0.03744537755847],[-0.0217240229249,0.12428607046604,-0.035455815494061],[0.04336166754365,0.065578535199165,0.00041695640538819]],[[0.15049444139004,-0.061068877577782,-0.065900094807148],[0.078412964940071,-0.057420145720243,0.0091297933831811],[0.098029904067516,0.031055580824614,-0.085033126175404]],[[-0.0037536502350122,0.099912144243717,-0.0578891672194],[-0.018314078450203,0.11932891607285,-0.1311290115118],[0.041713584214449,-0.026238456368446,-0.012592135928571]],[[-0.045097235590219,-0.044035948812962,0.074133768677711],[-0.11614845693111,-0.019035579636693,-0.027016442269087],[-0.017401764169335,-0.036530133336782,0.026215573772788]],[[0.0059155263006687,-0.024413846433163,-0.04717568308115],[-0.11284633725882,0.0088841877877712,-0.045648206025362],[0.030532628297806,0.035497698932886,-0.091065756976604]],[[0.12097424268723,-0.07325504720211,-0.049188870936632],[-0.13424350321293,0.11191437393427,-0.06452314555645],[0.060822669416666,0.015096848830581,0.045970182865858]],[[0.092514738440514,0.047243874520063,-0.069223120808601],[-0.049294706434011,-0.071600124239922,0.019298680126667],[0.074634037911892,-0.021562336012721,0.053546976298094]],[[-0.10658827424049,0.045594852417707,0.068179786205292],[-0.047148380428553,0.062932960689068,0.0022893017157912],[-0.0020254193805158,0.046497013419867,-0.14369255304337]],[[0.023931683972478,-0.0486014559865,0.061836108565331],[0.029199250042439,-0.012989344075322,-0.10528215765953],[-0.009485631249845,-0.054011814296246,0.040947027504444]],[[0.060824401676655,0.052630227059126,-0.17904309928417],[0.13466703891754,-0.2050162255764,0.010644508525729],[0.054944336414337,0.058122459799051,-0.035786204040051]],[[-0.09539794921875,0.12415838986635,0.00068335339892656],[-0.016797656193376,-0.040689818561077,0.01718832924962],[-0.16915419697762,-0.066428154706955,0.041717708110809]],[[0.066658861935139,-0.018737480044365,-0.0059484452940524],[0.03527620062232,0.070813372731209,0.16512596607208],[-0.11188951134682,-0.03291429579258,-0.0042217187583447]],[[-0.0033204020000994,-0.079291082918644,-0.15640123188496],[-0.051354549825191,0.0071478886529803,-0.12812979519367],[0.053510066121817,-0.054324861615896,0.071436941623688]],[[-0.18313555419445,0.096755772829056,-0.079324893653393],[-0.01089826785028,0.004922351334244,-0.030088532716036],[0.16503067314625,0.0032311202958226,0.096514604985714]],[[0.053435906767845,0.021391499787569,0.042285267263651],[0.032868888229132,-0.15652975440025,-0.20892879366875],[-0.027192324399948,0.035152155905962,0.016750099137425]],[[-0.015345771797001,-0.023732367902994,0.14057803153992],[0.005949214566499,-0.032169084995985,-0.023342877626419],[-0.028580090031028,-0.086411602795124,0.026487227529287]],[[0.1176223680377,0.11953639239073,-0.048492215573788],[-0.041665002703667,0.078098058700562,-0.059084478765726],[0.029585693031549,-0.11263021081686,0.039206471294165]],[[-0.075282923877239,-0.072489500045776,-0.013254194520414],[0.043321888893843,-0.021719312295318,0.044187311083078],[0.014843005686998,-0.091063857078552,-0.07047750800848]],[[-0.024201648309827,-0.16195268929005,-0.021306455135345],[0.062180738896132,-0.057441253215075,0.11709385365248],[0.031464319676161,0.050375774502754,-0.0026714033447206]],[[-0.095167919993401,-0.0030545515473932,-0.088046856224537],[0.098958298563957,-0.058404538780451,0.1632367670536],[-0.098278477787971,-0.0011236389400437,0.033981770277023]],[[-0.065432123839855,0.013995273038745,-0.004185093101114],[-0.025209182873368,0.12915498018265,0.010742971673608],[0.011151503771544,-0.0329868234694,0.041319619864225]],[[-0.043211504817009,0.0067921825684607,0.011391082778573],[-0.012293733656406,0.0076231146231294,-0.12602153420448],[-0.032447788864374,-0.11140013486147,0.080955006182194]],[[-0.017342615872622,-0.045017991214991,-0.14516241848469],[0.011699017137289,0.0276965405792,-0.019753465428948],[0.0054334937594831,-0.054493941366673,0.019781172275543]],[[0.011995742097497,0.040267504751682,0.0046270065940917],[-0.049852840602398,-0.0028081343043596,0.083318427205086],[-0.13725407421589,0.008465813472867,0.021766720339656]],[[0.026838069781661,0.011559414677322,0.031834229826927],[0.0098428018391132,-0.014413613826036,-0.07193648815155],[-0.032754767686129,-0.037364132702351,0.060377433896065]],[[-0.058196809142828,-0.074080474674702,-0.16462580859661],[-0.033585701137781,0.0019610431045294,-0.017148843035102],[0.061621449887753,0.013188772834837,-0.086171366274357]],[[0.0037777947727591,0.095551922917366,-0.069535821676254],[0.013651872985065,-0.087485134601593,-0.011290536262095],[-0.11489723622799,-0.03319538757205,0.079422183334827]],[[0.059587195515633,0.017428833991289,-0.028759129345417],[-0.016049347817898,-0.040353894233704,-0.016667477786541],[0.049572218209505,-0.011697724461555,-0.041584614664316]],[[0.02233555354178,0.0701018050313,-0.024194916710258],[-0.071248680353165,0.12358905375004,0.0087900878861547],[-0.045181397348642,0.13650205731392,-0.053858418017626]],[[-0.02494971640408,0.014084305614233,-0.017649976536632],[-0.083162844181061,0.021234568208456,0.0059612137265503],[-0.021362127736211,-0.11321248114109,0.096935607492924]],[[0.05638162791729,-0.030565636232495,-0.093855388462543],[0.064689241349697,-0.068545505404472,0.0069112754426897],[0.021612519398332,0.088101074099541,0.010565182194114]],[[-0.011614092625678,-0.070213444530964,0.074698321521282],[0.047661680728197,-0.15048724412918,0.075892068445683],[-0.078061893582344,0.031328480690718,-0.080799773335457]],[[0.035684932023287,-0.079477556049824,0.057012181729078],[0.060241062194109,0.038821838796139,-0.069206826388836],[0.065191768109798,0.012819740921259,-0.027709206566215]],[[0.062249008566141,-0.067340575158596,0.064451143145561],[-0.046697314828634,-0.047440744936466,-0.054950047284365],[0.051660344004631,-0.030014213174582,-0.0016385554336011]],[[0.021112490445375,0.016633719205856,0.0020539041142911],[-0.012194300070405,-0.24453215301037,-0.038712244480848],[-0.1154630035162,-0.0053232526406646,-0.0072681121528149]],[[0.073379509150982,-0.042347088456154,-0.26469168066978],[0.038564246147871,-0.090981803834438,-0.030500780791044],[-0.0014158324338496,-0.065791815519333,-0.10364127159119]],[[0.039811823517084,0.023797851055861,-0.090009264647961],[0.10179340094328,-0.075063601136208,0.15722396969795],[-0.038731258362532,0.15086068212986,0.043185155838728]],[[0.012020340189338,-0.024325266480446,0.017625872045755],[-0.09136389195919,-0.050980400294065,-0.059779915958643],[0.094587072730064,-0.083154626190662,0.023694436997175]],[[0.073563866317272,0.12849178910255,0.057779777795076],[-0.068029925227165,-0.026803944259882,-0.12205550819635],[0.052818644791842,-0.094985581934452,-0.17597177624702]],[[-0.070108406245708,-0.039206489920616,-0.071952424943447],[-0.049030475318432,0.0020036620553583,-0.047663282603025],[0.022584490478039,0.16459937393665,0.10517532378435]],[[0.036249987781048,0.0023783140350133,-0.078724533319473],[0.031568206846714,-0.089084379374981,-0.085233375430107],[0.10106994956732,0.10213758796453,-0.09453971683979]],[[0.060701746493578,-0.038361299782991,-0.10953805595636],[0.15640644729137,-0.14215368032455,-0.035407669842243],[0.11836232244968,-0.018497673794627,0.013815888203681]],[[-0.13307203352451,0.07119008153677,-0.061279907822609],[0.0030105088371783,-0.056975424289703,0.10215558111668],[-0.070670165121555,0.12388676404953,0.011324089020491]],[[-0.12220364063978,0.083058036863804,0.11052397638559],[0.031021347269416,0.087522707879543,-0.1242398545146],[0.085285410284996,0.011382572352886,-0.024881860241294]]],[[[-0.01903422549367,0.010330221615732,0.098948910832405],[-0.0057635437697172,0.010610280558467,-0.058688685297966],[-0.01372118294239,0.009737522341311,-0.0059864376671612]],[[-0.0398217625916,-0.030206385999918,-0.13744799792767],[-0.0040982170030475,0.13181382417679,-0.017642877995968],[0.11144199222326,0.086184158921242,-0.1509727537632]],[[0.045252844691277,-0.19492492079735,-0.16375294327736],[-0.020156798884273,-0.23926220834255,-0.16745892167091],[-0.17893934249878,0.00085190124809742,-0.087606273591518]],[[-0.13964545726776,0.047543622553349,-0.15514260530472],[0.058721229434013,-0.051650866866112,0.034102216362953],[-0.049595065414906,-0.068520843982697,-0.018777050077915]],[[0.036085572093725,0.023887604475021,0.076925709843636],[-0.036048047244549,-0.051076639443636,-0.062313314527273],[0.12239768356085,-0.016320431604981,0.037885416299105]],[[0.034281428903341,-0.040602948516607,0.11197121441364],[-0.081529401242733,0.071024291217327,0.041684351861477],[0.11607230454683,-0.043423276394606,-0.047665067017078]],[[0.099915497004986,-0.078940622508526,0.060937780886889],[-0.038059268146753,0.01960975676775,-0.024363860487938],[-0.21849918365479,-0.0063530928455293,0.013141803443432]],[[0.078903593122959,0.040182065218687,0.0760677754879],[0.02511190995574,0.029984848573804,0.01254157256335],[-0.055949043482542,-0.21384462714195,-0.096165768802166]],[[0.024576976895332,0.044285669922829,0.006958395242691],[-0.044547017663717,-0.070678003132343,-0.0011176038533449],[-0.008296387270093,0.025391791015863,0.026265654712915]],[[0.086549066007137,0.12990917265415,0.13340002298355],[-0.018323885276914,-0.0045911888591945,-0.047795474529266],[-0.026102678850293,0.0086883585900068,0.075942888855934]],[[0.019211238250136,0.01976715773344,-0.027164030820131],[-0.067543543875217,0.077868424355984,-0.043512754142284],[-0.0040270704776049,0.044572163373232,0.062433071434498]],[[-0.049927148967981,-0.065728262066841,0.051856528967619],[-0.042447619140148,-0.064379014074802,0.058416862040758],[-0.066056340932846,0.078774824738503,0.025841703638434]],[[0.11634773761034,-0.24789762496948,-0.20290693640709],[0.0036470221821219,0.044671703130007,-0.11269397288561],[0.061469621956348,-0.0042983200401068,0.083380945026875]],[[0.023922860622406,-0.092559307813644,0.11261086165905],[-0.045729249715805,-0.045037444680929,0.088503673672676],[-0.058416049927473,0.14496098458767,-0.066802375018597]],[[0.024588430300355,0.0073855631053448,-0.10598486661911],[0.028441859409213,0.073942273855209,0.0071120639331639],[0.053845897316933,0.00041643748409115,-0.096158795058727]],[[0.035576902329922,0.012459740974009,-0.02640075981617],[-0.059933535754681,0.027705755084753,0.022883294150233],[-0.017232855781913,-0.042445205152035,0.068330772221088]],[[0.020297043025494,-0.0275729727,-0.0017052824841812],[0.020291352644563,0.080099605023861,0.048095490783453],[-0.016273671761155,-0.08573155105114,0.027988309040666]],[[0.021311104297638,-0.18552458286285,-0.11498914659023],[0.011024603620172,-0.037387501448393,-0.046587247401476],[0.085816442966461,-0.0038486029952765,-0.0060616140253842]],[[-0.041437115520239,-0.15704530477524,-0.019982254132628],[-0.11552701890469,0.13514415919781,-0.018866010010242],[-0.023863611742854,0.038123331964016,0.059251725673676]],[[-0.061722401529551,-0.0098757809028029,-0.24677720665932],[-0.041591223329306,0.20354506373405,0.016839444637299],[0.18029794096947,-0.14659309387207,0.19194720685482]],[[0.054371573030949,0.10647869110107,0.088358514010906],[-0.050343707203865,0.03034626878798,0.09437870234251],[0.091193452477455,-0.10872712731361,0.00050373835256323]],[[-0.079039141535759,-0.060138754546642,-0.23590233922005],[-0.13841305673122,0.20343062281609,0.10637898743153],[0.080968528985977,0.1442541629076,0.088119156658649]],[[-0.14327104389668,0.021092761307955,-0.028749814257026],[-0.12714883685112,-0.010487090796232,-0.070398904383183],[0.10979217290878,0.077637687325478,0.050536528229713]],[[-0.053862400352955,-0.057798564434052,0.066386088728905],[-0.0056127551943064,-0.13841463625431,0.068622671067715],[-0.11429787427187,-0.023295409977436,-0.086767122149467]],[[-0.11959030479193,0.085439212620258,0.16700707376003],[0.023588493466377,0.093041144311428,-0.082866415381432],[-0.0095793483778834,-0.060448098927736,0.059586428105831]],[[-0.024815110489726,-0.19260573387146,-0.076617769896984],[0.019286904484034,0.0072358977049589,-0.023972652852535],[0.059110853821039,0.0058398111723363,0.0023503263946623]],[[-0.022811504080892,0.0027419072575867,-0.023701295256615],[-0.098220638930798,0.016370557248592,0.031992170959711],[-0.05864368006587,0.05138249322772,0.078300558030605]],[[0.042403999716043,0.10679817199707,0.021692709997296],[-0.12908233702183,-0.035753648728132,-0.00080778420669958],[-0.043550875037909,-0.030479753389955,-0.019569402560592]],[[0.055309738963842,0.054779939353466,-0.070159636437893],[0.018412850797176,-0.075511910021305,-0.042941134423018],[0.058550320565701,-0.038498423993587,0.0053205410949886]],[[-0.011189050972462,0.061742726713419,0.0075351162813604],[0.11547680944204,-0.064286701381207,0.12202962487936],[-0.13612101972103,0.042011499404907,0.086918413639069]],[[0.063946947455406,-0.043449427932501,-0.0017312386771664],[0.065404072403908,0.063693813979626,0.039556480944157],[-0.038667939603329,0.067526079714298,0.086141347885132]],[[0.053171623498201,0.0062509998679161,-0.042345106601715],[-0.028788767755032,-0.10941943526268,0.17731329798698],[-0.053513988852501,0.014357160776854,0.11036785691977]],[[-0.074850507080555,-0.0087036872282624,0.0053133680485189],[-0.059119358658791,0.026349233463407,0.041944935917854],[-0.055444311350584,-0.14060662686825,-0.020723333582282]],[[-0.12066703289747,-0.12012573331594,0.052723847329617],[-0.23039337992668,-0.094332076609135,-0.030961496755481],[-0.12919297814369,-0.12635427713394,-0.03136695548892]],[[-0.049201902002096,-0.097030334174633,-0.1255294829607],[0.071422889828682,0.062792122364044,0.24643136560917],[0.042271453887224,0.0060426867567003,0.13878288865089]],[[-0.015646249055862,0.12569749355316,0.27305164933205],[0.013311720453203,-0.063253320753574,0.058214776217937],[-0.15599720180035,-0.17333297431469,-0.039712700992823]],[[-0.040159687399864,0.037445887923241,0.074349485337734],[0.04213248193264,-0.051003716886044,0.02359427511692],[-0.075417511165142,-0.24956572055817,0.049127649515867]],[[0.1023840084672,-0.17042909562588,-0.12826083600521],[0.063778221607208,-0.0059401048347354,0.0033354442566633],[0.075902909040451,-0.029318518936634,0.085851147770882]],[[0.00018500797159504,0.011911623179913,0.0016641705296934],[0.0083599099889398,-0.023209473118186,0.034298148006201],[-0.079850412905216,0.071997076272964,0.0016030605183914]],[[0.12229266762733,0.052435930818319,-0.038360748440027],[0.12637661397457,-0.1691719442606,0.068382777273655],[-0.0035332101397216,-0.034854799509048,0.078301846981049]],[[-0.069503463804722,0.16279603540897,-0.14817443490028],[0.021946284919977,-0.0078035495243967,-0.00040265324059874],[0.067074991762638,0.041006665676832,0.10088877379894]],[[0.043853268027306,-0.018492361530662,0.092078775167465],[-0.0509177967906,-0.079745851457119,0.05251133441925],[0.13636188209057,0.1717631071806,-0.16281867027283]],[[-0.081704705953598,0.023753583431244,-0.11496351659298],[0.059476725757122,0.064227245748043,0.00059799815062433],[-0.034605324268341,0.0450669080019,-0.012604901567101]],[[-0.015589509159327,-0.033425591886044,0.019238114356995],[0.069111362099648,0.034608446061611,-0.020183891057968],[0.0079677402973175,-0.026438485831022,-0.034861132502556]],[[0.0057279947213829,-0.021571449935436,0.028243079781532],[0.0022997504565865,-0.031137354671955,0.0047624777071178],[-0.097066007554531,-0.016051599755883,-0.079789720475674]],[[-0.057763982564211,0.052033826708794,0.091990515589714],[-0.023685123771429,-0.09758235514164,0.15387897193432],[-0.065203748643398,-0.074230849742889,-0.12401294708252]],[[0.071016915142536,0.034016836434603,0.072345614433289],[0.061151750385761,0.070457831025124,0.060259234160185],[0.022998170927167,-0.01314037013799,0.045352961868048]],[[0.014428790658712,0.066310882568359,-0.064351253211498],[-0.051058210432529,-0.016230285167694,0.0048476727679372],[0.014135616831481,0.073881067335606,4.1855906601995e-05]],[[0.010846819728613,0.086690135300159,0.062526196241379],[0.030227622017264,-0.048962246626616,0.042891547083855],[-0.071110531687737,0.031919289380312,0.08044794946909]],[[0.089395426213741,0.058917995542288,-0.042238675057888],[-0.088757455348969,-0.059963941574097,0.034248322248459],[0.011192433536053,-0.0010956369806081,-0.061173632740974]],[[0.01969263330102,0.051765516400337,-0.18922699987888],[-0.014021462760866,0.093746706843376,-0.1410283446312],[0.088762015104294,-0.1697888225317,-0.13701616227627]],[[-0.027581719681621,-0.019215129315853,-0.075108997523785],[0.01786177046597,-0.028266154229641,0.11902561038733],[-0.020053882151842,-0.024863880127668,-0.066174812614918]],[[0.042466782033443,0.0021044262684882,0.017496842890978],[-0.024833152070642,-0.10546900331974,0.057874340564013],[-0.044729173183441,0.062355749309063,0.0813272818923]],[[0.027915500104427,-0.089493989944458,-0.046226106584072],[0.015247797593474,-0.026654774323106,0.059361573308706],[-0.11539403349161,-0.10148806869984,0.0073309815488756]],[[-0.038998242467642,-0.0063536637462676,-0.016285859048367],[-0.15621925890446,-0.11766441166401,-0.087022952735424],[-0.071046270430088,-0.037766184657812,-0.12021917104721]],[[-0.019841892644763,0.042903646826744,-0.10268845409155],[-0.027214335277677,0.0059746638871729,0.0040980959311128],[0.017637904733419,0.065437383949757,-0.045320700854063]],[[-0.068038128316402,-0.03819590061903,-0.019228557124734],[-0.0076929801143706,-0.15748932957649,0.03327476605773],[0.17652057111263,0.091568157076836,0.012050253339112]],[[0.17927235364914,-0.0036741495132446,0.010034333914518],[-0.16522824764252,0.12327980995178,-0.012899255380034],[-0.016167152673006,-0.13272978365421,0.051317319273949]],[[-0.081219501793385,0.15525822341442,-0.067185394465923],[0.0070405015721917,0.081515088677406,-0.057577017694712],[0.085058189928532,-0.023617424070835,-0.069929301738739]],[[-0.047463767230511,-0.036259554326534,-0.21514065563679],[-0.035533457994461,0.097851470112801,-0.13846781849861],[0.014294281601906,0.11789738386869,-0.015197056345642]],[[-0.15159550309181,0.048741862177849,0.030926737934351],[-0.11569844186306,-0.067459225654602,-0.096063412725925],[-0.061459992080927,-0.053085993975401,0.022069755941629]],[[0.083213157951832,0.13321809470654,0.032756052911282],[-0.10831049829721,0.07089588791132,0.11562491208315],[-0.032316658645868,-0.025311466306448,-0.091313861310482]],[[-0.0053224847652018,0.028938375413418,-0.05504897236824],[-0.1012914404273,-0.14318542182446,0.011229457333684],[-0.14021986722946,-0.074196830391884,0.024017099291086]],[[-0.044000700116158,0.029447952285409,-0.012592361308634],[0.099094070494175,-0.047378592193127,-0.060562137514353],[0.077314384281635,0.090619318187237,-0.004110908601433]]],[[[0.13223262131214,0.06883143633604,-0.017197193577886],[0.024522066116333,-0.063984073698521,0.048319317400455],[0.043257415294647,-0.055867817252874,-0.011106330901384]],[[0.067332290112972,0.030861485749483,0.02497217617929],[-0.064275436103344,0.10868198424578,-0.059844207018614],[-0.079369872808456,-0.1470044106245,0.051698751747608]],[[0.12872284650803,0.041772957891226,-0.014889613725245],[-0.030046656727791,0.0024162128102034,-0.049588214606047],[0.035507742315531,-0.004007279407233,-0.019830832257867]],[[-0.07641813904047,-0.12701953947544,0.021244782954454],[-0.10146047174931,0.020824491977692,-0.046638682484627],[0.10879607498646,0.10428206622601,-0.17346651852131]],[[-0.069016739726067,-0.057764772325754,0.075304426252842],[-0.013111590407789,0.065551176667213,0.045071940869093],[-0.061946637928486,-0.039664063602686,-0.095062293112278]],[[0.0030056950636208,0.088513046503067,-0.050692837685347],[0.0098787397146225,0.026086207479239,-0.048438221216202],[-0.10473399609327,0.051862791180611,0.079878650605679]],[[-0.20033842325211,-0.028946187347174,-0.15254494547844],[0.11776375770569,0.077656053006649,-0.16231018304825],[0.10490193217993,-0.046043373644352,0.092038594186306]],[[0.1178831756115,0.056491278111935,0.15772520005703],[0.0147715639323,0.071892485022545,-0.0066217198036611],[-0.10522302240133,0.052384823560715,0.011306941509247]],[[-0.03819140419364,-0.0151223000139,0.024405047297478],[0.013214270584285,0.11780278384686,0.0081398114562035],[-0.053264815360308,-0.082465440034866,0.017415748909116]],[[-0.074851602315903,0.068423546850681,-0.0090894997119904],[-0.1006693392992,-0.041165579110384,-0.0085773896425962],[-0.078135810792446,-0.030176540836692,-0.0029472350142896]],[[0.017409203574061,-0.025580985471606,-0.017378313466907],[-0.056115012615919,-0.059011146426201,0.013389161787927],[-0.11661888659,-0.15085837244987,-0.019672038033605]],[[0.08591752499342,0.15329556167126,0.01313478499651],[0.13917514681816,-0.056790180504322,-0.089597456157207],[-0.043640147894621,-0.1119108274579,-0.21977165341377]],[[-0.087293684482574,-0.052787873893976,-0.083732113242149],[-0.16256631910801,0.011577034369111,0.0033799530938268],[-0.072636969387531,-0.090031608939171,-0.066880941390991]],[[0.10750348865986,0.051565311849117,0.16132086515427],[-0.08336403220892,-0.069589853286743,0.03772209957242],[-0.0038188903126866,-0.05799176543951,-0.047515634447336]],[[-0.065756775438786,-0.042306903749704,0.10864749550819],[0.071239307522774,-0.014813702553511,-0.015710722655058],[-0.051613260060549,-0.0016710568452254,-0.0046271001920104]],[[-0.14002798497677,0.039019454270601,-0.00010742676386144],[-0.064561136066914,0.05530433729291,-0.015641985461116],[0.021502442657948,-0.079110011458397,-0.093407966196537]],[[-0.0094826621934772,0.038696471601725,-0.00031017485889606],[0.13467806577682,-0.022243577986956,-0.04745227843523],[-0.011160488240421,0.08952260017395,-0.04658879339695]],[[-0.042416606098413,0.14422801136971,0.039886366575956],[-0.019315097481012,-0.17683038115501,0.040193483233452],[-0.079047083854675,-0.027589159086347,-0.01356787700206]],[[0.020730894058943,0.17979793250561,0.090801320970058],[-0.099317900836468,-0.078514859080315,-0.043567731976509],[3.2901280064834e-05,-0.10162302106619,-0.090865045785904]],[[0.020432205870748,0.22167894244194,-0.16937915980816],[0.030924057587981,-0.0051845046691597,-0.0013989028520882],[-0.18064494431019,-0.092366918921471,-0.093496203422546]],[[-0.015788501128554,0.062855459749699,0.012138513848186],[0.0037698056548834,-0.005896560382098,-0.018478270620108],[0.04485122859478,0.00017312502313871,-0.017113665118814]],[[0.042960084974766,-0.0038619553670287,0.0068878438323736],[0.035495448857546,-0.13337764143944,-0.082429081201553],[-0.019879760220647,-0.085696786642075,-0.0081612821668386]],[[-0.10504543036222,0.16558888554573,0.1684732735157],[-0.11098486185074,0.11427269130945,-0.022853577509522],[-0.036067269742489,-0.087053455412388,-0.14165289700031]],[[0.042723521590233,-0.05278929695487,0.023724084720016],[0.048519816249609,0.049398452043533,0.096680000424385],[-0.00042990883230232,0.041904248297215,0.049616515636444]],[[0.080291047692299,-0.0020558591932058,0.044133752584457],[-0.023591030389071,-0.030767655000091,-0.043875154107809],[-0.11568058282137,-0.13612395524979,0.15112203359604]],[[-0.0042223311029375,-0.10698308795691,-0.12241569906473],[0.034042540937662,-0.0099967168644071,0.010744941420853],[-0.19446370005608,0.10446381568909,0.065134175121784]],[[0.021716024726629,0.0099090095609426,-0.065045952796936],[0.097197659313679,0.0090903593227267,-0.012146934866905],[0.080886244773865,0.057716093957424,-0.013403275050223]],[[-0.15329164266586,-0.0074007948860526,-0.051688253879547],[0.096519008278847,0.13358445465565,-0.051304716616869],[0.079308524727821,-0.13278087973595,0.041241869330406]],[[-0.072306670248508,-0.078758582472801,0.035742204636335],[0.09111937135458,-0.099276557564735,0.094110064208508],[-0.073513045907021,0.0075718532316387,0.12201765179634]],[[-0.17681048810482,0.064379908144474,-0.10434041917324],[0.0011673864210024,-0.052511163055897,-0.11012755334377],[-0.022350292652845,0.11422023177147,-0.058626104146242]],[[0.10234019160271,-0.028114415705204,0.11348421871662],[-0.12579342722893,0.011594454757869,0.036910157650709],[-0.10427096486092,-0.11706578731537,-0.082606054842472]],[[-0.074266418814659,0.091762848198414,0.11758124083281],[-0.16382059454918,-0.11913004517555,0.052403144538403],[-0.031611759215593,-0.036360055208206,-0.10690466314554]],[[0.16315640509129,-0.13591986894608,0.089967504143715],[-0.0060286861844361,-0.0015337284421548,0.002644726075232],[0.0082487063482404,-0.044035207480192,0.11064931005239]],[[-0.10319262742996,0.00098271132446826,-0.019559532403946],[-0.060301523655653,-0.10798212140799,0.010230019688606],[-0.081840261816978,-0.051613084971905,-0.019271651282907]],[[0.0421521961689,0.058954145759344,0.18856303393841],[-0.014994833618402,-0.066489517688751,0.078854858875275],[-0.058019299060106,-0.18819932639599,-0.10705339163542]],[[-0.038845755159855,-0.16861291229725,-0.047471474856138],[0.058434203267097,0.071728020906448,-0.005604365374893],[0.03079123981297,0.099234364926815,0.058136135339737]],[[-0.11809086799622,-0.10047093033791,0.037326138466597],[-0.10872249305248,0.0073939738795161,0.081761345267296],[-0.020137097686529,0.006732476875186,0.046974144876003]],[[0.081647291779518,0.087011210620403,0.0038880980573595],[-0.069659516215324,-0.072120398283005,-0.046819891780615],[-0.2526328265667,-0.058617949485779,0.05830467119813]],[[-0.018685229122639,0.047089118510485,0.0034660771489143],[-0.043386969715357,-0.0093881767243147,0.023933790624142],[-0.014605963602662,-0.015275633893907,-0.0094183506444097]],[[0.0012402780121192,-0.11067368090153,0.030176319181919],[-0.034188188612461,0.021528290584683,-0.075093001127243],[-0.021283537149429,-0.061249285936356,0.089221268892288]],[[0.045597683638334,0.048184432089329,0.072664737701416],[0.036092508584261,0.027468448504806,0.013489155098796],[-0.045644409954548,-0.032942224293947,0.04056491330266]],[[-0.15618273615837,0.014871074818075,-0.014818578027189],[0.04649280756712,-0.1140630915761,-0.048305209726095],[-0.13551066815853,0.064185693860054,0.0022019040770829]],[[0.074526086449623,0.09191857278347,-0.008395086042583],[0.081805303692818,0.037592552602291,0.17909352481365],[-0.021813493221998,-0.10001884400845,-0.16483117640018]],[[0.056265935301781,0.10262995958328,-0.10724606364965],[-0.060376644134521,-0.049516301602125,0.018417784944177],[-0.029748195782304,0.06144230812788,0.013247000984848]],[[-0.010139410383999,-0.13475820422173,0.034647092223167],[-0.026765182614326,-0.039698768407106,0.083716504275799],[0.057646110653877,0.028413355350494,0.076520770788193]],[[0.068293400108814,0.014821035787463,0.036025688052177],[-0.021055085584521,-0.10528801381588,0.021738639101386],[0.13167703151703,-0.04074751958251,0.14216122031212]],[[-0.05586214363575,0.066626504063606,0.030947552993894],[0.023652724921703,0.024529848247766,-0.035889554768801],[-0.15464815497398,-0.049329623579979,-0.035040132701397]],[[-0.017808215692639,-0.10561733692884,-0.18085445463657],[-0.0066653708927333,0.036191001534462,-0.0029087103903294],[0.052942402660847,0.029591789469123,0.039562933146954]],[[0.0709033831954,0.030419865623116,0.068195581436157],[0.071047760546207,-0.049061674624681,-0.12923178076744],[-0.019949859008193,-0.13423152267933,0.054294638335705]],[[0.074615232646465,0.02133777923882,0.027966883033514],[-0.065878041088581,-0.010678061284125,0.080231182277203],[0.01037800963968,-0.075721897184849,-0.19211389124393]],[[0.052260350435972,-0.059786606580019,-0.10713776946068],[-0.056546922773123,-0.038046333938837,0.060380186885595],[0.023637715727091,0.00010363601177232,0.066042453050613]],[[-0.038563057780266,0.034349154680967,0.012567449361086],[-0.031823974102736,0.084938034415245,0.035195387899876],[-0.10528323799372,-0.17292974889278,-0.054047375917435]],[[0.035445045679808,-0.14074328541756,0.065082311630249],[-0.088587030768394,0.040194623172283,-0.076332077383995],[0.081053078174591,-0.078701786696911,-0.089621037244797]],[[0.12913782894611,0.047560680657625,0.03463564440608],[-0.0078609064221382,-0.0067425300367177,0.058027148246765],[-0.00057427363935858,-0.050909422338009,0.14960420131683]],[[-0.08177824318409,-0.085279740393162,-0.022783434018493],[-0.01767086237669,0.00068103964440525,-0.083823978900909],[-0.030749307945371,0.072557248175144,0.058460868895054]],[[0.024912914261222,-0.18488952517509,-1.9808659999399e-05],[-0.010936320759356,0.096439577639103,0.19114899635315],[0.015890533104539,-0.019924836233258,0.11427257955074]],[[0.1176488250494,0.19552282989025,0.20794619619846],[-0.018502114340663,0.13610683381557,0.1313421279192],[0.008254611864686,-0.13324449956417,-0.016477541998029]],[[-0.13665325939655,0.093477107584476,-0.097118020057678],[-0.064748294651508,-0.031761299818754,-0.012133803218603],[0.10961084067822,-0.080376416444778,0.02117176912725]],[[-0.034675545990467,0.076591305434704,0.040658988058567],[0.073784194886684,0.022422699257731,0.017798388376832],[-0.043551612645388,-0.16440001130104,0.14528454840183]],[[-0.065588861703873,0.17777076363564,-0.007941972464323],[-0.091624185442924,0.028422851115465,-0.031439691781998],[-0.15136961638927,-0.075379110872746,0.057105861604214]],[[0.068979784846306,-0.05539882928133,-0.046054638922215],[-0.015999557450414,0.0026867690030485,0.0080436673015356],[-0.013332158327103,0.06742587685585,0.11540508270264]],[[-0.081391602754593,-0.073631562292576,-0.16537848114967],[0.034685701131821,-0.13071338832378,-0.020974352955818],[0.02638472430408,0.024015257135034,0.067858777940273]],[[0.11335095763206,-0.042880706489086,0.065754242241383],[-0.023838283494115,0.0028146910481155,-0.043428473174572],[-0.060423489660025,-0.037449341267347,0.12555065751076]],[[0.084335304796696,0.10261366516352,-0.066494509577751],[-0.05763752758503,-0.033006563782692,0.045221339911222],[-0.16893203556538,0.031002175062895,-0.0086907353252172]]],[[[0.0040963897481561,0.039351351559162,-0.028305599465966],[0.039906345307827,-0.086280137300491,0.032782237976789],[0.12571458518505,-0.050145655870438,-0.084388345479965]],[[0.076064579188824,-0.028421292081475,-0.10805620998144],[0.048476252704859,0.013125818222761,0.01044605858624],[0.12810985743999,-0.14820823073387,0.021387964487076]],[[-0.060988288372755,-0.032924432307482,-0.049685869365931],[0.083705350756645,-0.051188860088587,-0.040657497942448],[0.28834220767021,0.11017989367247,0.096126340329647]],[[0.047756247222424,-0.064477242529392,0.099054299294949],[-0.0065687601454556,-0.046285916119814,0.10546910017729],[-0.0058797812089324,-0.13819898664951,0.015426476486027]],[[-0.029262395575643,-0.033002678304911,-0.014496844261885],[0.058888252824545,0.03423049300909,-0.025891160592437],[-0.086687214672565,0.017603222280741,-0.098542131483555]],[[0.036408044397831,0.057788390666246,0.070836320519447],[0.010638552717865,-0.049939803779125,-0.0065496978349984],[0.020845197141171,-0.19677077233791,-0.047536928206682]],[[0.063739769160748,-0.036892037838697,0.10153905302286],[0.03457835316658,-0.017184037715197,-0.055152028799057],[-0.01810478977859,-0.12009432166815,0.040338426828384]],[[-0.024529552087188,0.083944767713547,0.06127242743969],[0.084295585751534,-0.11801575869322,-0.026223098859191],[-0.016026495024562,-0.074093133211136,0.0036626849323511]],[[-0.082094639539719,-0.05786095932126,-0.10740541666746],[0.028591619804502,0.044799163937569,0.023148788139224],[0.050170458853245,0.046168047934771,0.073171861469746]],[[0.071563512086868,-0.13030184805393,0.045621383935213],[-0.0094381086528301,-0.015412122011185,0.099619351327419],[0.05345069244504,-0.093566372990608,-0.0022399357985705]],[[-0.033512264490128,-0.07191263884306,-0.018089456483722],[-0.12061356753111,0.048604525625706,0.10616303235292],[0.023374123498797,-0.038387946784496,0.061207860708237]],[[-0.028399392962456,0.018478026613593,0.082964666187763],[-0.099037930369377,-0.13287492096424,-0.0014692876720801],[0.090011976659298,-0.03212570771575,0.20128692686558]],[[-0.03091842122376,-0.069883413612843,-0.15596343576908],[0.1285914927721,0.15265393257141,0.069315299391747],[0.0055044325999916,0.056156117469072,-0.065649978816509]],[[-0.018750362098217,-0.16031128168106,-0.13281989097595],[0.047160711139441,-0.037520129233599,0.073326386511326],[-0.0048541566357017,-0.069270506501198,0.031206307932734]],[[0.0067005245946348,-0.025794187560678,-0.045832648873329],[0.066040717065334,-0.079268150031567,-0.054950598627329],[0.011507068760693,0.0038947707507759,0.08903044462204]],[[0.08775844424963,-0.19484654068947,0.068078577518463],[-0.056189205497503,0.027830494567752,0.023098014295101],[0.049186531454325,0.12221001088619,-0.061903811991215]],[[0.033598963171244,-0.0040832981467247,0.012906267307699],[-0.12382839620113,0.013339941389859,-0.11049876362085],[0.0055563114583492,-0.04471105709672,0.1091682612896]],[[-0.11665910482407,-0.12144067138433,-0.10321199148893],[0.096895970404148,0.14182351529598,0.055586382746696],[0.09537173807621,0.12375283241272,-0.025515355169773]],[[-0.089197091758251,0.016832051798701,-0.071021348237991],[0.0070230881683528,0.1718166321516,0.02602406963706],[-0.046419121325016,0.06145853921771,0.035082753747702]],[[-0.20947363972664,0.052389953285456,0.099119178950787],[0.0083443960174918,0.037913110107183,0.058997981250286],[-0.0030776087660342,0.072279550135136,-0.14808511734009]],[[0.097017005085945,-0.0087026413530111,0.010386707261205],[0.012610320933163,-0.041777204722166,0.053145475685596],[0.095499709248543,-0.022370725870132,0.024033354595304]],[[-0.014188023284078,0.15267924964428,-0.028486479073763],[0.15456035733223,0.16798883676529,0.084500089287758],[-0.072986222803593,-0.046279080212116,-0.083828069269657]],[[-0.0010189609602094,0.057578202337027,-0.021481461822987],[-0.029187446460128,-0.03558786958456,0.18956696987152],[-0.24723774194717,0.0035398912150413,0.0039826328866184]],[[-0.22977986931801,-0.013897879980505,-0.18056039512157],[-0.10305664688349,-0.18833097815514,-0.1052306368947],[-0.10172963887453,-0.13013218343258,0.0038536400534213]],[[-0.10808618366718,-0.083736762404442,0.1272416561842],[0.020676404237747,0.037331320345402,0.040579970926046],[-0.071088552474976,0.025033472105861,-0.0646603256464]],[[0.074460633099079,-0.089538298547268,-0.12188541144133],[0.18474857509136,0.082072593271732,-0.004470428917557],[-0.031649805605412,0.13639122247696,-0.091704927384853]],[[0.045529048889875,0.060809087008238,0.099542446434498],[-0.092839941382408,-0.073554866015911,-0.086169362068176],[-0.012419800274074,-0.0073274741880596,-0.038627717643976]],[[0.027737295255065,0.031509034335613,-0.0023844265379012],[-0.059429537504911,0.014589568600059,0.02248115837574],[-0.098321385681629,0.062824562191963,-0.011714559979737]],[[0.024869900196791,-0.035116393119097,-0.070834420621395],[0.0062404409982264,0.020797109231353,0.1102806404233],[0.05143378674984,0.005071422085166,-0.15380108356476]],[[0.037945222109556,0.017178958281875,-0.11006837338209],[0.14595368504524,-0.0084072817116976,0.051311101764441],[-0.03500359505415,-0.14006948471069,-0.060793183743954]],[[0.016095761209726,0.052013855427504,0.049355056136847],[0.0037978843320161,0.069286502897739,-0.015587121248245],[-0.10669293254614,-0.055521424859762,-0.005894388537854]],[[-0.031795535236597,-0.0093626426532865,0.094430588185787],[0.069000586867332,-0.10702493041754,-0.10145075619221],[-0.094051599502563,-0.028042294085026,-0.053827531635761]],[[0.006647689267993,0.0045015728101134,-0.0034967272076756],[0.023484384641051,0.018035843968391,0.0058071087114513],[-0.031698562204838,-0.065094672143459,0.02072718180716]],[[0.049890730530024,0.048974186182022,-0.047852829098701],[0.053786654025316,-0.038058388978243,-0.031083066016436],[0.098515897989273,0.021549010649323,0.035717234015465]],[[0.010080273263156,-0.018921544775367,-0.024913908913732],[0.066346228122711,-0.047670837491751,0.0051571428775787],[0.031835854053497,-0.081844799220562,0.031998801976442]],[[-0.035911954939365,0.0084331752732396,0.059180457144976],[-0.21006880700588,-0.14807936549187,0.03323607891798],[-0.0071768993511796,-0.10939840972424,-0.00037630347651429]],[[0.033170484006405,0.014840141870081,0.0084906993433833],[0.021909773349762,-0.11243180930614,0.1374649554491],[-0.055758815258741,-0.059173639863729,0.014824663288891]],[[-0.20798835158348,-0.029795056208968,0.0331618078053],[0.037022020667791,-0.08478157967329,0.11884954571724],[0.039993967860937,0.010215170681477,0.062432061880827]],[[-0.090750277042389,-0.049812782555819,-0.064127236604691],[-0.15982601046562,-0.072954796254635,0.093821957707405],[0.08699319511652,0.025316080078483,-0.022518675774336]],[[-0.023600539192557,-0.07617612183094,0.07483834028244],[-0.046410396695137,-0.01716180332005,-0.058562338352203],[0.099307104945183,0.042672671377659,-0.062890529632568]],[[0.072384342551231,-0.11733196675777,0.019590605050325],[0.053684320300817,0.015172854997218,0.060620497912169],[-0.060158725827932,-0.034268401563168,-0.056159731000662]],[[-4.3581720092334e-05,0.060908544808626,-0.055127963423729],[0.085066862404346,-0.18060459196568,-0.048872068524361],[0.043564580380917,-0.021529629826546,-0.002498100977391]],[[-0.025418547913432,-0.075472429394722,-0.058798283338547],[0.0434525385499,0.012176717631519,0.033774465322495],[0.064324721693993,-0.020181065425277,-0.055611845105886]],[[0.082063190639019,0.12661591172218,0.034135580062866],[0.018547084182501,-0.034284200519323,0.056878346949816],[-0.17824713885784,-0.01386390440166,-0.10112997889519]],[[0.05809673294425,-0.050814520567656,-0.090074636042118],[-0.047966308891773,0.00063815125031397,0.028908910229802],[-0.14250150322914,-0.0026531512849033,0.028927667066455]],[[0.1302687972784,-0.21274827420712,-0.08962944149971],[0.015466320328414,-0.077986806631088,0.061674013733864],[0.087254345417023,-0.073105044662952,0.0029177654068917]],[[0.1184361577034,0.092505648732185,0.024950854480267],[0.059022728353739,0.032485343515873,-0.0040092836134136],[-0.074058420956135,0.1605643928051,-0.080014899373055]],[[-0.11102490127087,0.053529098629951,-0.078582294285297],[-0.047255877405405,-0.068196021020412,-0.087917290627956],[0.078482165932655,-0.023999636992812,-0.030441042035818]],[[0.024504585191607,0.061928424984217,-0.01205946598202],[-0.15366201102734,0.019043039530516,0.024570856243372],[-0.097978316247463,0.043974958360195,0.05736007168889]],[[-0.089700423181057,0.019133290275931,-0.044555108994246],[0.0093470104038715,0.072025455534458,0.043498829007149],[-0.0017445801058784,-0.079509615898132,0.020801262930036]],[[0.021913940086961,-0.038136657327414,0.035523161292076],[0.023605899885297,-0.038223180919886,0.0093945767730474],[0.12306731194258,-0.068163111805916,-0.020971391350031]],[[-0.047100216150284,0.036227364093065,0.02288244664669],[-0.0094379093497992,0.008035502396524,-0.053651195019484],[-0.12517243623734,-0.077335774898529,-0.0045148930512369]],[[-0.084151409566402,-0.084932655096054,0.096435382962227],[-0.005165935959667,0.037541080266237,0.0098845958709717],[0.094002947211266,-0.055839583277702,0.024178201332688]],[[-0.085657462477684,0.1032100841403,-0.16083362698555],[-0.010151727125049,0.055054064840078,0.10158751904964],[0.086156465113163,0.075567007064819,-0.012165651656687]],[[0.054938115179539,0.065137781202793,0.028493652120233],[-0.11297554522753,-0.038654930889606,-0.058771822601557],[-0.21980056166649,-0.3286906182766,0.030751274898648]],[[0.098188228905201,-0.15628810226917,-0.095932707190514],[-0.033534590154886,-0.13506077229977,0.025605695322156],[-0.009660242125392,-0.041323736310005,-0.0096635427325964]],[[-0.17674280703068,0.0088144261389971,0.083594180643559],[0.0055711511522532,0.012822387740016,-0.022418586537242],[0.015601573511958,0.097716696560383,0.018448082730174]],[[0.029733464121819,0.0076053189113736,-0.057022791355848],[-0.043009262531996,0.0045479708351195,0.073226943612099],[-0.067750997841358,0.012857978232205,-0.031090386211872]],[[-0.10023190826178,-0.020234713330865,0.10694813728333],[0.0092031639069319,-0.012327769771218,-0.00069150433409959],[-0.036036886274815,-0.015055150724947,0.10123328119516]],[[-0.14650529623032,-0.030928697437048,0.14860451221466],[-0.031861186027527,-0.079557925462723,0.0052310014143586],[-0.03960644826293,0.02008930966258,-0.020201049745083]],[[-0.025160180404782,0.10496031492949,-0.07383169978857],[-0.0017388308187947,-0.021170161664486,-0.14227965474129],[0.06141434237361,-0.025732509791851,-0.049690939486027]],[[0.067659199237823,-0.055766448378563,0.046482019126415],[-0.0086829224601388,-0.12763951718807,-0.034718755632639],[-0.042931996285915,0.024208705872297,0.032821632921696]],[[-0.18393431603909,-0.02784557454288,-0.057133220136166],[0.047033607959747,0.11076155304909,-0.086636655032635],[-0.079579241573811,-0.094196401536465,0.031277637928724]],[[0.059343386441469,-0.15746214985847,0.10432521998882],[-0.072210408747196,-0.024507451802492,-0.085358127951622],[0.10505297780037,-0.094536498188972,-0.021133460104465]]],[[[0.031022626906633,0.086556576192379,-0.065384358167648],[0.026221504434943,-0.10844445973635,-0.090419746935368],[-0.073325723409653,-0.026131428778172,0.057186007499695]],[[0.041195813566446,-0.0075456514023244,-0.060006380081177],[0.0074200127273798,-0.019411362707615,0.091285467147827],[0.019797060638666,0.074843965470791,-0.041042361408472]],[[0.025316847488284,0.028313236311078,0.027254834771156],[-0.074412100017071,-0.071331217885017,0.05444673076272],[-0.11432721465826,0.078121833503246,-0.024356903508306]],[[-0.049756482243538,0.069835543632507,0.025812214240432],[-0.021237278357148,-0.01490216050297,0.060950290411711],[-0.12157228589058,0.044222943484783,0.05751671269536]],[[0.066274464130402,-0.046963028609753,0.065739035606384],[-0.013515233062208,0.051155526190996,0.033249005675316],[0.032595284283161,-0.018437290564179,-0.098063439130783]],[[-0.021849317476153,0.17258384823799,0.015848578885198],[0.025409584864974,-0.046735905110836,0.12263536453247],[0.11836030334234,-0.20448280870914,-0.032257579267025]],[[0.13199561834335,-0.050495147705078,0.021689299494028],[0.11702997237444,0.04951936006546,-0.19884893298149],[0.019399832934141,0.11631448566914,-0.03109610080719]],[[0.058759246021509,0.02083108946681,0.044143911451101],[-0.095771163702011,0.028158064931631,-0.03392481803894],[0.027461901307106,-0.027337683364749,0.00075834523886442]],[[-0.042627964168787,-0.008373087272048,0.095142729580402],[0.040212124586105,0.057223238050938,0.031910337507725],[-0.074592635035515,-0.053730454295874,-0.017377268522978]],[[-0.19362626969814,0.026397859677672,0.078787058591843],[0.099430203437805,-0.094690315425396,0.061884351074696],[0.042979005724192,0.03184449672699,-0.027785455808043]],[[-0.12414897978306,-0.035122506320477,-0.090087257325649],[-0.084948420524597,0.078583262860775,0.050652660429478],[0.056566566228867,0.032440487295389,-0.044647760689259]],[[-0.019816545769572,0.13797332346439,-0.12654376029968],[0.10349082946777,-0.037303529679775,0.054234329611063],[0.013731903396547,0.096153043210506,-0.065092511475086]],[[-0.0055620884522796,-0.11594676971436,0.096164211630821],[-0.046173669397831,0.077193565666676,-0.15295888483524],[0.062216844409704,-0.014607476070523,0.06275051087141]],[[0.095849633216858,0.065388150513172,0.10835532099009],[-0.092850215733051,0.031033985316753,-0.091024540364742],[-0.088569715619087,-0.047064404934645,0.078365884721279]],[[0.008221335709095,-0.033293258398771,0.1018245741725],[-0.076287999749184,0.034590650349855,0.095505364239216],[-0.082074485719204,-0.08815324306488,-0.0046764193102717]],[[-0.0095247756689787,0.069160357117653,-0.13062655925751],[-0.028394652530551,0.11453671008348,0.10478540509939],[0.03205843269825,-0.027021558955312,-0.095741756260395]],[[-0.045501720160246,0.016164084896445,-0.074077494442463],[0.065097711980343,-0.057346805930138,-0.015944676473737],[-0.094910494983196,0.015300798229873,-0.0097986236214638]],[[0.071464590728283,0.1745438426733,0.085281915962696],[0.0017582440050319,-0.056203152984381,-0.010866069234908],[-0.11843227595091,0.0074020107276738,0.042546175420284]],[[0.035103973001242,0.075031280517578,-0.015653850510716],[0.020602498203516,0.004787206184119,-0.083515286445618],[-0.060228727757931,0.13146434724331,0.002197632798925]],[[0.10865516215563,0.00019106789841317,0.15334591269493],[-0.024647256359458,0.064650811254978,-0.21644175052643],[0.15048339962959,-0.11470036953688,0.14233902096748]],[[0.014212246984243,0.049966484308243,0.073336996138096],[0.028467727825046,0.0010495689930394,-0.014718350954354],[-0.049110986292362,-0.043037604540586,0.050146248191595]],[[-0.073615692555904,-0.11536797881126,-0.032520528882742],[-0.04375484213233,-0.015846459195018,0.032328084111214],[0.024335995316505,-0.02557179145515,-0.033620681613684]],[[0.078785806894302,0.0084829796105623,0.19114789366722],[-0.18563494086266,-0.019230492413044,0.076147221028805],[-0.0684624761343,-0.081986993551254,0.072991967201233]],[[0.058217294514179,-0.0028661862015724,-0.010603024624288],[-0.056883201003075,0.079666249454021,0.073167107999325],[0.0030040724668652,0.020247587934136,0.0045198262669146]],[[0.10822663456202,0.031727742403746,0.019879546016455],[-0.0081612132489681,-0.013835907913744,-0.04797488078475],[0.033424243330956,-0.063643708825111,0.026878040283918]],[[0.088410720229149,0.054188437759876,-0.078711055219173],[-0.0115218879655,0.10599786043167,-0.017703339457512],[0.12060134112835,0.13777910172939,-0.021314390003681]],[[-0.053662747144699,0.02096183411777,0.069220378994942],[-0.045316033065319,-0.086725890636444,0.051845137029886],[0.0096068363636732,0.00034025963395834,0.00017817858315539]],[[0.018857873976231,-0.045940890908241,-0.011896478943527],[-0.041341926902533,0.038184944540262,0.056068982928991],[-0.086115218698978,0.06175797060132,0.023465072736144]],[[0.0092406561598182,0.041704289615154,0.049120865762234],[-0.13231904804707,0.084552899003029,-0.10023162513971],[0.0032247509807348,0.0031575670000166,0.20793053507805]],[[-0.1000472009182,-0.01011508423835,-0.020593157038093],[-0.050520811229944,0.018463848158717,0.05146112665534],[-0.036509070545435,-0.031808789819479,0.019723048433661]],[[0.052659101784229,-0.03953467682004,0.060750670731068],[0.047510750591755,0.11570806801319,-0.13755075633526],[0.045908972620964,0.06909766793251,0.049547519534826]],[[0.046272840350866,-0.081399880349636,-0.15740236639977],[0.012296796776354,0.069478020071983,-0.015562889166176],[0.074754469096661,0.059668734669685,0.087186932563782]],[[0.078420996665955,0.0053726229816675,0.11749526113272],[-0.024102056398988,0.036942988634109,-0.022893536835909],[-0.013442265801132,-0.012921242974699,0.082698300480843]],[[0.03572853282094,-0.050726402550936,0.048526830971241],[0.065025240182877,0.056921031326056,-0.070496618747711],[-0.070653490722179,-0.036594677716494,-0.010945832356811]],[[0.032216724008322,0.095577612519264,-0.061601307243109],[-0.16733002662659,-0.030165363103151,0.09690035879612],[0.032599184662104,-0.1104726716876,-0.09216620773077]],[[-0.13322189450264,0.067153096199036,-0.13100704550743],[0.03840995579958,-0.11190405488014,0.075750224292278],[-0.079511202871799,0.044653214514256,-0.14861862361431]],[[-0.068995274603367,0.050996195524931,0.18821136653423],[-0.1728358566761,-0.032188102602959,0.095909625291824],[-0.16436065733433,-0.036595478653908,0.041351944208145]],[[0.013065260834992,-0.063410721719265,0.076631456613541],[-0.098704025149345,0.015737937763333,0.067052572965622],[0.004607018083334,-0.00059937889454886,0.11042499542236]],[[-0.014676410704851,0.016851361840963,0.019652709364891],[-0.042827546596527,0.039790902286768,0.027144825085998],[-0.11746247112751,-0.05757812410593,0.19709479808807]],[[-0.086344659328461,0.043056011199951,-0.069465965032578],[0.12715432047844,-0.085399277508259,0.11755591630936],[-0.066757597029209,0.030339172109962,-0.033932406455278]],[[-0.10034342110157,0.18657077848911,-0.0085478937253356],[0.044602707028389,-0.15782736241817,0.10974433273077],[0.032150205224752,0.075775049626827,0.068821638822556]],[[0.030105480924249,-0.0088801318779588,-0.0033124017063528],[-0.091729655861855,0.079281896352768,0.12090979516506],[0.011235324665904,0.05997547134757,0.098794467747211]],[[-0.053630661219358,0.0402637347579,0.035964418202639],[-0.10341470688581,-0.075075067579746,0.023194281384349],[-0.035600125789642,0.010987398214638,-0.024092262610793]],[[0.018714694306254,-0.046139359474182,-0.014142970554531],[-0.027590626850724,-0.020078651607037,-0.062996417284012],[0.085303544998169,0.061066400259733,0.0051458855159581]],[[0.025103207677603,0.084172382950783,0.09266859292984],[0.047005202621222,0.014460453763604,-0.12159505486488],[-0.10914566367865,-0.025229586288333,-0.0065968041308224]],[[-0.11966439336538,0.10082698613405,0.07841020822525],[0.021420342847705,-0.10029700398445,-0.051410745829344],[-0.10275195538998,-0.0079031204804778,0.0021002702414989]],[[-0.018520414829254,0.0040950984694064,-0.04158004373312],[-0.076460644602776,-0.032743230462074,-0.0011849032016471],[-0.017290787771344,-0.0018329811282456,0.095204673707485]],[[0.091011457145214,0.030265564098954,-0.043664179742336],[0.096359193325043,-0.089674144983292,0.0078467223793268],[-0.00092993403086439,-0.030716994777322,-0.029757168143988]],[[-0.051171246916056,0.00045839644735679,0.18582631647587],[0.024241069331765,0.028279421851039,-0.081848748028278],[0.010067636147141,0.070332758128643,0.087540216743946]],[[-0.083657152950764,0.080040916800499,0.094940081238747],[-0.036410644650459,0.0031408723443747,0.081228278577328],[-0.10975922644138,-0.060979198664427,-0.025357738137245]],[[0.057237181812525,-0.029393753036857,-0.10343919694424],[-0.050311528146267,-0.016930440440774,-0.043105483055115],[-0.00051449582679197,0.023728121072054,0.034235779196024]],[[-0.059682406485081,0.075180307030678,-0.039283640682697],[-0.0014784085797146,-0.057386573404074,0.050701566040516],[-0.0080985026434064,-0.016129035502672,-0.0043200715444982]],[[-0.13794223964214,-0.0080277267843485,0.01909557916224],[0.049923736602068,-0.035485662519932,-0.086702033877373],[-0.017429865896702,0.010401207022369,0.041548173874617]],[[0.013985202647746,-0.01732068695128,0.044023964554071],[0.095240250229836,-0.11088919639587,0.050981484353542],[-0.0309988129884,-0.050997979938984,-0.014248004183173]],[[-0.020586706697941,0.039815485477448,0.1058813482523],[0.018319303169847,0.018875505775213,0.0018801550613716],[0.00050453009316698,-0.0054354006424546,-0.07839335501194]],[[-0.1815627515316,-0.079671256244183,0.14294509589672],[0.036733191460371,0.031490530818701,-0.00054101325804368],[-0.013808663934469,0.048470471054316,-0.01156906876713]],[[0.060517750680447,-0.033102598041296,0.050494264811277],[0.14386223256588,0.087612852454185,0.13567915558815],[0.1555330902338,0.12270187586546,0.059625316411257]],[[0.087205789983273,0.033573735505342,0.025061322376132],[0.036807358264923,-0.011682656593621,-0.043855708092451],[-0.15930750966072,-0.0595358684659,0.025788215920329]],[[0.083304889500141,-0.044009450823069,-0.0029560399707407],[-0.079616375267506,0.032147414982319,0.024697363376617],[0.023303376510739,-0.045736387372017,0.015222936868668]],[[-1.6791995221865e-05,0.1588648557663,0.15490184724331],[-0.056754134595394,-0.014934276230633,-0.094305709004402],[0.033685978502035,-0.021804643794894,-0.064211487770081]],[[-0.0011015078052878,-0.032859526574612,0.057686757296324],[0.050760805606842,0.058949414640665,-0.023380974307656],[-0.052133303135633,-0.090261809527874,0.10611362010241]],[[0.15288184583187,0.11571948230267,0.25708168745041],[-0.029442939907312,-0.051673151552677,-0.10263884812593],[-0.089040279388428,-0.1035139337182,0.043399158865213]],[[-0.079610012471676,-0.010036695748568,-0.054571487009525],[-0.053937718272209,-0.044471997767687,-0.047452744096518],[0.094546049833298,0.0054300180636346,0.058124635368586]],[[-0.026685528457165,0.056726064532995,-0.061523552983999],[-0.066607616841793,0.11323007941246,0.19831101596355],[-0.11882223188877,0.091678313910961,-0.065409272909164]]],[[[0.012540737167001,0.11597640812397,-0.040373425930738],[0.049076244235039,0.032145407050848,-0.20510642230511],[-0.004775429610163,-0.10237147659063,-0.0046657342463732]],[[0.11606711149216,0.03993696346879,0.0025922358036041],[0.023623928427696,0.020498359575868,0.040972873568535],[-0.08888353407383,-0.13739828765392,0.10238531976938]],[[0.023304026573896,-0.013050870038569,0.00085642916383222],[-0.021735556423664,0.010962086729705,-0.055796928703785],[-0.12862667441368,-0.068328350782394,0.0080901756882668]],[[-0.074964120984077,0.037449598312378,-0.064946964383125],[0.022076554596424,-0.056380432099104,0.051425941288471],[0.079152382910252,0.039269536733627,-0.13326866924763]],[[0.11903830617666,0.028479348868132,0.011810960248113],[-0.062301021069288,0.034954864531755,-0.080292880535126],[-0.065030939877033,0.026663772761822,-0.047110237181187]],[[0.039925668388605,0.080463796854019,0.014363070949912],[-0.095094613730907,-0.12647470831871,0.0092884236946702],[-0.01323616784066,0.066268891096115,-0.14126652479172]],[[-0.088563442230225,-0.019098119810224,-0.0658850222826],[-0.10974340885878,-0.15676988661289,-0.012767635285854],[0.08530505746603,-0.0061421818099916,0.052493412047625]],[[-0.032402902841568,-0.072352908551693,-0.0076811923645437],[-0.039637453854084,0.041479635983706,-0.043671626597643],[-0.067836113274097,0.050536781549454,0.03312636166811]],[[-0.059673395007849,-0.052826065570116,-0.02875803783536],[-0.069349244236946,0.032397396862507,0.045886795967817],[0.0044279503636062,0.10902407765388,0.036518860608339]],[[0.023500099778175,0.062437504529953,-0.041233599185944],[-0.036468043923378,-0.0049452320672572,-0.17247107625008],[0.049676258116961,0.08829740434885,-0.033143181353807]],[[-0.1189676001668,0.072255797684193,-0.0157471280545],[-0.064809493720531,0.043693289160728,-0.063245609402657],[-0.082463577389717,-0.055510878562927,-0.04409421235323]],[[-0.041467685252428,-0.20522789657116,-0.027065608650446],[0.032637726515532,0.087668001651764,0.028793830424547],[-0.038136135786772,-0.0081050880253315,0.028275823220611]],[[-0.033782135695219,0.015270973555744,-0.014919593930244],[-0.13641083240509,-0.091062195599079,0.012001768685877],[0.032043572515249,-0.064964957535267,-0.017820762470365]],[[-0.043728116899729,0.024709256365895,-0.016863388940692],[-0.041904475539923,0.024054788053036,-0.0048650279641151],[0.08490613847971,0.048047319054604,-0.0062335184775293]],[[0.033521883189678,-0.075888335704803,-0.11255629360676],[0.019694628193974,-0.13407328724861,-0.04464403167367],[0.010389943607152,0.116689696908,0.085283309221268]],[[0.057338736951351,0.050282411277294,-0.11489681899548],[-0.05892226099968,-0.11292538791895,-0.024576727300882],[-0.0074704666621983,0.10620363801718,0.073780849575996]],[[0.041442081332207,-0.06077079847455,-0.0014838667120785],[0.051990821957588,0.020685359835625,0.01095999032259],[-0.10797207802534,0.0089719025418162,-0.0080456547439098]],[[-0.036131072789431,-0.05977450683713,0.01415325794369],[-0.13052226603031,-0.056109290570021,0.051818665117025],[-0.15281650424004,-0.05872680991888,0.014170912094414]],[[-0.015232942998409,-0.030081598088145,0.028183272108436],[0.05978936329484,-0.093855649232864,-0.0061599500477314],[-0.062073264271021,0.048312339931726,-0.17599959671497]],[[0.21994894742966,-0.0095218177884817,-0.071566522121429],[0.047187075018883,0.016726782545447,0.03990825265646],[-0.03131390362978,0.024198304861784,-0.091227523982525]],[[-0.023403519764543,-0.031285751610994,-0.046741846948862],[-0.0048700501210988,0.022055301815271,0.01946902833879],[-0.10989412665367,-0.037323247641325,-0.011238609440625]],[[-0.13022217154503,0.12030294537544,0.044103298336267],[-0.13702467083931,-0.073945887386799,-0.13066971302032],[0.061998791992664,-0.065368287265301,0.15796840190887]],[[0.089032687246799,-0.012240491807461,0.063986167311668],[-0.15087726712227,0.061384249478579,-0.056956689804792],[-0.079121641814709,0.028620786964893,0.040298312902451]],[[-0.024081410840154,-0.016895202919841,0.026231249794364],[0.082721367478371,-0.13071668148041,0.056361395865679],[-0.041068490594625,0.0086455568671227,0.062151953577995]],[[-0.028572242707014,0.0086671886965632,-0.0065185562707484],[-0.034748002886772,0.057078547775745,-0.11153913289309],[0.063069134950638,0.090027295053005,-0.048593390733004]],[[-0.062848031520844,-0.059191826730967,0.066938549280167],[-0.23691082000732,0.024606727063656,0.023556068539619],[-0.12436544150114,0.17924609780312,0.067491270601749]],[[-0.01758486405015,-0.029983883723617,-0.13384291529655],[-0.05605997517705,0.053608197718859,0.017099780961871],[0.10382220894098,0.096798218786716,-0.067541129887104]],[[0.0081112841144204,-0.0045654559507966,0.0064247525297105],[-0.01969338580966,-0.033943712711334,0.12746649980545],[-0.048761185258627,-0.19233357906342,-0.15085315704346]],[[-0.095860943198204,0.13161958754063,-0.0522590726614],[-0.030087916180491,-0.12168027460575,0.014565989375114],[0.033707246184349,-0.072995714843273,-0.053726430982351]],[[-0.10857366770506,-0.015453472733498,0.12787839770317],[0.058144208043814,-0.05500166118145,0.085381016135216],[0.038090597838163,0.13234807550907,0.04552698880434]],[[0.088626004755497,0.024867370724678,0.033598925918341],[0.032499901950359,0.056106667965651,-0.050160929560661],[-0.033561032265425,0.0091677289456129,-0.15617109835148]],[[0.040085673332214,-0.017607226967812,-0.019771739840508],[-0.034920684993267,0.038496982306242,-0.0042694513686001],[-0.082399196922779,-0.21973188221455,-0.15731503069401]],[[0.09612549841404,-0.14912386238575,0.03128120675683],[0.01537455059588,-0.025870189070702,0.053741130977869],[-0.040904674679041,-0.056477200239897,-0.033875301480293]],[[-0.017220823094249,-0.059077557176352,0.057087756693363],[-0.13501486182213,0.0644556209445,-0.0022955115418881],[-0.074800685048103,0.070806488394737,0.10179395228624]],[[-0.099555179476738,0.042695622891188,0.073717795312405],[0.0074115265160799,-0.12245272099972,-0.029191609472036],[0.09446407854557,-0.080692961812019,-0.038063418120146]],[[-0.13230329751968,-0.071268431842327,0.017363732680678],[0.099293313920498,0.073905348777771,0.00084483769023791],[-0.17261870205402,0.078894421458244,-0.057939436286688]],[[-0.0069024180993438,-0.014030379243195,-0.080251693725586],[-0.1016891002655,0.079827457666397,0.039968710392714],[-0.044625300914049,-0.010097020305693,0.041933100670576]],[[0.10656072199345,-0.091548003256321,-0.005854909773916],[-0.077284246683121,-0.02403100579977,-0.070210285484791],[-0.0027681202627718,0.064750321209431,-0.034756142646074]],[[-0.055616062134504,0.003283551428467,0.14321699738503],[-0.087226405739784,0.076327636837959,-0.11001489311457],[-0.0030661823693663,-0.053346302360296,0.061571907252073]],[[0.057811427861452,-0.0090671284124255,0.042003091424704],[-0.085901238024235,0.037924509495497,-0.054357215762138],[0.059114623814821,-0.030720373615623,-0.0038524449337274]],[[0.0028706924058497,-0.07597903162241,0.055173765867949],[0.040745303034782,0.018920542672276,-0.057848259806633],[0.068329028785229,0.016884244978428,-0.0050294133834541]],[[-0.021827440708876,-0.0032696430571377,-0.022261975333095],[-0.026026617735624,0.02446498349309,-0.0001063247473212],[-0.021976482123137,0.11725395917892,-0.016128420829773]],[[-0.016793502494693,-0.089578837156296,0.061851624399424],[-0.04901846498251,-0.19120520353317,-0.024005627259612],[-0.024765584617853,0.14723832905293,0.054645366966724]],[[-0.092277280986309,-0.038345072418451,0.010410816408694],[0.050503734499216,0.10430842638016,0.016190296038985],[-0.047052547335625,-0.032158397138119,0.046437852084637]],[[0.018393777310848,-0.058174800127745,-0.10019099712372],[-0.0033147549256682,-0.069849856197834,-0.053704258054495],[-0.0018314451444894,0.0074469256214797,0.10167247802019]],[[0.12207825481892,0.022540979087353,-0.097563415765762],[-0.05212414637208,0.13317409157753,-0.014186708256602],[-0.068455725908279,0.075874716043472,0.0095911091193557]],[[-0.037214685231447,0.024627985432744,0.0032623207662255],[-0.037772890180349,0.0024618268944323,-0.04158791154623],[-0.0098876375705004,0.033358212560415,0.053980875760317]],[[0.025586050003767,-0.082505740225315,-0.07393479347229],[0.032808739691973,0.00024293680326082,0.073137670755386],[0.01040015462786,-0.030163824558258,0.004844225011766]],[[-0.024662947282195,-0.069542415440083,-0.067429050803185],[0.1326639354229,0.035406097769737,0.094819098711014],[0.076953656971455,-0.086724475026131,0.038714151829481]],[[-0.069611564278603,-0.041951298713684,0.033629052340984],[0.047027982771397,-0.10466832667589,0.066779308021069],[-0.084806181490421,0.046293653547764,-0.028487738221884]],[[-0.086435079574585,-0.09594514966011,-0.015819627791643],[0.031801003962755,0.053424660116434,-0.031537536531687],[0.0093004768714309,-0.031311187893152,0.10288719832897]],[[-0.047625295817852,0.079066805541515,0.066052742302418],[0.069915622472763,-0.15033408999443,-0.11799798905849],[-0.041639838367701,0.12058964371681,-0.042234901338816]],[[0.038908671587706,0.0045495429076254,0.039251558482647],[0.07324256747961,0.039868626743555,-0.093589201569557],[-0.022581228986382,-0.082582540810108,0.024901274591684]],[[0.05604575574398,0.014872749336064,0.1572242975235],[-0.12710127234459,-0.041335619986057,0.083059027791023],[0.0053865113295615,0.088385589420795,0.015644181519747]],[[-0.015059310942888,-0.089238986372948,0.057652499526739],[0.023083323612809,0.083371244370937,-0.11532969772816],[-0.038817256689072,-0.0068088821135461,-0.00027486227918416]],[[-0.10380876809359,0.14283533394337,0.016771268099546],[0.056958820670843,0.017097476869822,-0.1094416603446],[0.013995222747326,-0.018910145387053,0.026917504146695]],[[-0.014151231385767,0.05808250233531,0.027811899781227],[-0.0017675436101854,0.090410619974136,0.025498330593109],[0.12698765099049,0.060990136116743,0.14034578204155]],[[0.051077824085951,0.073791317641735,-0.072909064590931],[-0.24500885605812,0.012782028876245,0.080620259046555],[0.1047433540225,-0.25188881158829,0.1316634863615]],[[0.06678930670023,0.094957791268826,0.048592120409012],[-0.12285981327295,-0.089802592992783,-0.12613722681999],[0.093836612999439,-0.0091092893853784,0.0098552806302905]],[[0.064169369637966,-0.048247285187244,0.095466189086437],[-0.11978491395712,-0.046245198696852,0.13727857172489],[-0.052019864320755,0.0022581352386624,0.014689202420413]],[[0.010355190373957,-0.084628909826279,0.038839031010866],[0.085580267012119,-0.024096492677927,-0.041062526404858],[-0.059658106416464,0.033469833433628,0.1114312261343]],[[-0.012129650451243,-0.089844219386578,0.05729927495122],[0.01176209654659,0.099780976772308,0.099500417709351],[-0.047118227928877,0.053454965353012,-0.087893471121788]],[[-0.071031011641026,-0.0065141753293574,-0.092723198235035],[-0.015050901100039,-0.080747105181217,0.10521534085274],[-0.063638530671597,-0.092628076672554,-0.013278881087899]],[[-0.050378706306219,-0.0057771583087742,0.014039502479136],[0.046403985470533,-0.077984392642975,-0.03212608397007],[-0.039500828832388,-0.021854389458895,0.13301737606525]]],[[[-0.033123400062323,-0.0022173342294991,0.086929894983768],[0.039006773382425,-0.081582061946392,0.05222037807107],[0.013384104706347,0.0042277639731765,-0.04785268008709]],[[0.0029114652425051,0.041991852223873,0.056243691593409],[-0.0096678491681814,-0.06909067928791,-0.024929646402597],[0.091786183416843,0.022605342790484,-0.022141279652715]],[[0.0060488898307085,0.017496751621366,-0.062452785670757],[0.047347068786621,-0.023672135546803,-0.11737121641636],[0.04956641793251,0.062751173973083,-0.062056910246611]],[[-0.0097636813297868,0.0022917506285012,0.086029388010502],[0.014888348057866,-0.021754484623671,-0.040605057030916],[-0.046985682100058,0.11943184584379,0.046991650015116]],[[-0.053990554064512,-0.09981481730938,-0.010927476920187],[0.060761597007513,-0.026502562686801,0.070644468069077],[-0.0094028981402516,0.024959992617369,0.0067528774961829]],[[-0.075045689940453,-0.12136632204056,-0.010591417551041],[0.012946970760822,0.010200545191765,-0.014431403018534],[0.054417245090008,0.0093656582757831,0.14218969643116]],[[0.056961972266436,0.10468826442957,0.086027659475803],[-0.10777855664492,-0.12878657877445,0.091904334723949],[-0.0014737533638254,-0.019612954929471,-0.021614843979478]],[[0.044220630079508,-0.0418965741992,0.1221327483654],[-0.048248771578074,0.0097196102142334,-0.0058003533631563],[0.0025009617675096,-0.011002155952156,-0.027953924611211]],[[0.0084473798051476,0.10287497192621,0.065437689423561],[-0.07283728569746,0.040984831750393,-0.038393698632717],[-0.035063091665506,0.040432777255774,-0.10300346463919]],[[-0.015392935834825,0.032291788607836,-0.099608458578587],[-0.10578223317862,0.10070735961199,-0.035665649920702],[-0.056992072612047,-0.041269540786743,0.038024205714464]],[[0.01727550663054,0.056170575320721,-0.12162539362907],[0.044828910380602,-0.047496426850557,-0.046187315136194],[-0.00073419522959739,0.041503548622131,0.035476446151733]],[[-0.016317583620548,0.14024133980274,-0.0081783197820187],[0.045657217502594,0.10601568967104,0.13211685419083],[-0.0722331777215,0.058522339910269,0.048978626728058]],[[-0.063366465270519,0.032206896692514,-0.033152360469103],[0.041466809809208,-0.020369749516249,-0.0093171959742904],[0.095247767865658,0.012837206944823,-0.075414814054966]],[[-0.095939457416534,0.11536786705256,-0.12955614924431],[0.001084168208763,0.011835012584925,-0.03108061850071],[-0.07268451154232,-0.069351434707642,-0.067417964339256]],[[0.0021652320865542,-0.11228789389133,-0.11173562705517],[-0.098088465631008,0.078646771609783,-0.01227833237499],[-0.18220448493958,0.21024383604527,0.10163729637861]],[[-0.096875593066216,-0.074665509164333,0.025100408121943],[0.07254172116518,-0.032044298946857,-0.12062702327967],[-0.036162074655294,0.14291034638882,0.047983575612307]],[[-0.031450524926186,0.0093996673822403,-0.096944943070412],[0.047689847648144,-0.061286583542824,0.024626147001982],[-0.054436113685369,-0.0050154477357864,-0.0068657933734357]],[[-0.019535722211003,0.041572522372007,-0.084712386131287],[-0.021704545244575,0.1379795819521,-0.069733873009682],[-0.012906260788441,-0.027910394594073,0.093019030988216]],[[0.020107613876462,-0.0914311632514,0.020718481391668],[0.0085690142586827,-0.031085154041648,-0.096612811088562],[-0.13163441419601,-0.099401995539665,-0.033692616969347]],[[-0.013277949765325,0.029571179300547,-0.044827803969383],[0.13259749114513,-0.067987464368343,0.0023860894143581],[-0.037728082388639,-0.068265058100224,0.011059037409723]],[[-0.13626223802567,-0.024781730026007,0.043979104608297],[0.10686074197292,-0.057251196354628,0.022348053753376],[0.023624816909432,0.012753877788782,0.12832960486412]],[[-0.095698691904545,-0.14444872736931,-0.050647065043449],[-0.037948351353407,-0.02605320699513,0.06610681116581],[-0.033573552966118,0.030667711049318,0.049826376140118]],[[0.0095279542729259,0.10128036886454,-0.087433606386185],[0.044204968959093,-0.0069910855963826,0.10561826080084],[0.040141995996237,0.04730636253953,-0.059984613209963]],[[0.041418615728617,0.15414859354496,-0.041379746049643],[0.020803352817893,0.14375647902489,0.020749993622303],[-0.061233896762133,-0.071147330105305,0.03440248221159]],[[0.026997366920114,-0.022215189412236,-0.16857887804508],[0.13531719148159,-0.11593719571829,-0.076283976435661],[-0.028772907331586,0.06283887475729,0.031437128782272]],[[0.025130132213235,0.080211780965328,-0.069718599319458],[0.061585385352373,-0.033970221877098,-0.0077217686921358],[-0.004645464476198,0.084804244339466,-0.06929025053978]],[[-0.041100777685642,-0.04864339157939,0.036462169140577],[-0.098043709993362,-0.1023943349719,0.011413040570915],[0.017438048496842,-0.040639750659466,-0.05589896067977]],[[-0.038758102804422,0.035056669265032,0.073282152414322],[0.0083215609192848,-0.034875832498074,-0.13780380785465],[-0.029740639030933,0.015248236246407,0.039241023361683]],[[-0.023802852258086,-0.028370682150126,0.0075663039460778],[0.035525802522898,0.0086189182475209,-0.047236684709787],[0.030436430126429,0.014003281481564,0.0027095831464976]],[[-0.17490841448307,-0.0047396514564753,-0.003029016777873],[-0.17943190038204,-0.00432302756235,0.022772321477532],[-0.012114509008825,-0.050848472863436,-0.052404321730137]],[[0.014723390340805,-0.14214673638344,-0.078092254698277],[0.0075625898316503,-0.0038353241980076,-0.12880177795887],[-0.024644032120705,0.013970272615552,-0.08714298158884]],[[-0.0066572781652212,-0.098825260996819,-0.055648274719715],[0.059711519628763,0.050281316041946,-0.12579713761806],[-0.0089729754254222,0.065130561590195,0.0088311824947596]],[[-0.035533931106329,0.050451599061489,0.099128246307373],[0.098821111023426,0.054312776774168,-0.040565762668848],[-0.00048550666542724,0.0065606287680566,-0.089837484061718]],[[-0.085373006761074,0.05850338190794,0.020496059209108],[0.090389393270016,-0.035423867404461,0.10425240546465],[0.037272211164236,-0.058397628366947,0.0057046310976148]],[[-0.065258644521236,-0.057686060667038,-0.069123640656471],[0.0047650234773755,-0.016800528392196,0.056123603135347],[-0.14666011929512,-0.004625856410712,0.055157747119665]],[[-0.027506493031979,-0.0088599063456059,-0.010208598338068],[0.0022804054897279,-0.049531310796738,0.081300817430019],[0.040035806596279,-0.059656728059053,0.017340425401926]],[[-0.064865343272686,-0.0093142325058579,0.025770507752895],[-0.042086713016033,0.040991853922606,-0.048673197627068],[0.076129518449306,0.070100359618664,0.096944987773895]],[[0.04054443910718,0.054189961403608,0.035869263112545],[0.058210093528032,-0.093422047793865,0.016263512894511],[0.024131610989571,-0.085117556154728,-0.052926350384951]],[[-0.041400957852602,-0.027456484735012,-0.086035549640656],[-0.11597826331854,-0.026587279513478,0.062011417001486],[0.073511712253094,0.058945618569851,-0.014868105761707]],[[0.089946947991848,-0.039284244179726,0.00013841048348695],[0.020905338227749,0.055553704500198,-0.0074579687789083],[-0.047980159521103,0.0031213618349284,0.026066996157169]],[[0.0047497092746198,-0.020316243171692,0.026898475363851],[0.12363582849503,0.032235309481621,-0.005384087562561],[-0.039036322385073,0.040949791669846,0.091085985302925]],[[-0.099552839994431,-0.030293859541416,-0.0047196801751852],[-0.046405639499426,-0.05536488071084,0.0006823088042438],[0.1373093277216,0.0613913834095,-0.039839047938585]],[[0.0090457471087575,-0.018141550943255,0.021512899547815],[-0.031107895076275,0.018077369779348,0.13846817612648],[0.10109415650368,-0.036290522664785,-0.1333132237196]],[[-0.035679340362549,-0.01812869310379,0.048787895590067],[-0.019512966275215,0.030352143570781,0.056993905454874],[0.014672718942165,-0.12403048574924,0.026651045307517]],[[-0.011803949251771,-0.021064421162009,0.024000646546483],[-0.02285148575902,0.032424699515104,0.024565992876887],[-0.052444998174906,0.035232555121183,-0.13648608326912]],[[-0.020564930513501,-0.077786579728127,-0.0043167001567781],[-0.18013100326061,0.041053891181946,-0.00014832700253464],[-0.093525290489197,0.016829052940011,-0.053830511868]],[[0.019928136840463,-0.067357666790485,-0.022717863321304],[-0.10524240881205,0.10763955116272,-0.093209877610207],[-0.027791051194072,0.023824011906981,-0.14689289033413]],[[-0.080546863377094,-0.028078600764275,0.063290789723396],[-0.021704072132707,0.0091866590082645,-0.028571149334311],[0.046596474945545,-0.081584975123405,-0.0047439387999475]],[[-0.20599323511124,0.1200775206089,0.066902495920658],[0.025112630799413,-0.0022037965245545,-0.046046528965235],[-0.0026919248048216,-0.025393400341272,0.17872589826584]],[[-0.046332817524672,-0.093540608882904,-0.052708297967911],[0.0071799624711275,-0.014975964091718,0.027470195665956],[-0.084674425423145,0.070411287248135,0.011718468740582]],[[-0.080450765788555,-0.025239199399948,-0.00016010898980312],[0.041209850460291,0.06861562281847,0.031764276325703],[-0.10867584496737,0.0072911251336336,0.062454801052809]],[[0.047156177461147,-0.030815122649074,-0.081329748034477],[0.066570401191711,0.0094915330410004,0.054337698966265],[-0.15219312906265,0.1036698743701,0.12711361050606]],[[-0.099166050553322,-0.23570941388607,0.00089994200970978],[-0.012258339673281,-0.074643686413765,-0.076735615730286],[-0.034418538212776,-0.00542974146083,0.055997703224421]],[[0.23903506994247,-0.045049879699945,-0.097834169864655],[0.12878972291946,-0.075179986655712,0.02306174300611],[0.029534136876464,-0.035962544381618,-0.098122209310532]],[[-0.024660132825375,0.079651147127151,0.088163271546364],[-0.013268515467644,0.053116984665394,0.10131223499775],[-0.035496104508638,0.028011035174131,0.091233059763908]],[[-0.013845847919583,-0.017450109124184,-0.034839671105146],[-0.038423489779234,-0.20678800344467,-0.047115836292505],[0.020096847787499,-0.031901799142361,-0.040969531983137]],[[-0.019093949347734,0.017138209193945,0.19587330520153],[0.013449175283313,0.0090127596631646,0.15866009891033],[0.11418784409761,0.065661817789078,0.16833455860615]],[[-0.053527653217316,0.087111346423626,0.073881171643734],[0.11827410757542,-0.0062159248627722,0.048952165991068],[-0.12154976278543,0.1236409842968,-0.022519614547491]],[[0.026011750102043,0.019654219970107,-0.029169321060181],[0.13407960534096,-0.044633392244577,0.04099902883172],[-0.19480392336845,-0.055512379854918,-0.016735501587391]],[[-0.13056875765324,0.013866011053324,-0.035224631428719],[-0.05373403429985,-0.12379700690508,-0.051751509308815],[0.042154066264629,-0.042587324976921,-0.00058583909412846]],[[-0.0062725748866796,0.079222120344639,-0.0050445669330657],[0.027472132816911,0.017091162502766,0.029060769826174],[0.0050870599225163,0.051948674023151,-0.052754729986191]],[[-0.085890464484692,-0.070143088698387,-0.06383965909481],[-0.027655312791467,-0.04400722309947,0.017419012263417],[-0.050217609852552,-0.035018410533667,0.033448003232479]],[[-0.0074642798863351,0.1668097525835,-0.097770638763905],[-0.054812394082546,0.014756460674107,0.084702119231224],[0.12379825115204,-0.016455642879009,-0.077937304973602]],[[0.012475904077291,0.054762460291386,0.046182811260223],[0.10661599785089,0.041495341807604,0.0022700356785208],[-0.004917040001601,-0.065219506621361,-0.014413073658943]]],[[[-0.055945914238691,0.041120409965515,-0.032142471522093],[0.0096937408670783,0.048890680074692,0.072395831346512],[-0.026403179392219,-0.027109595015645,-0.057109955698252]],[[-0.013459667563438,-0.060008976608515,0.051565051078796],[-0.021932972595096,0.044888064265251,0.099086180329323],[-0.021542333066463,0.068554885685444,-0.046396464109421]],[[-0.0014313738793135,-0.00090345129137859,0.016016425564885],[0.00057215930428356,0.091090880334377,-0.0086121940985322],[-0.013090125285089,-0.054539006203413,0.048765122890472]],[[0.025301666930318,-0.12459795176983,0.0047221616841853],[0.12186028808355,-0.35916033387184,0.021996892988682],[0.051379449665546,-0.049182906746864,-0.1105277761817]],[[0.018020380288363,0.083157762885094,0.01350115519017],[-0.081270486116409,-0.010457186959684,-0.072480753064156],[-0.02345540560782,-0.052852530032396,-0.03076802007854]],[[-0.016300512477756,-0.03921016305685,-0.045469053089619],[0.078196883201599,0.04130931571126,-0.11195848882198],[0.05631323158741,0.0095885610207915,0.030161002650857]],[[0.036139130592346,-0.10456539690495,-0.21391128003597],[0.1363766938448,0.0085252933204174,0.022098613902926],[0.039243020117283,-0.17443230748177,-0.071234710514545]],[[-0.10342328995466,0.032051555812359,0.029033489525318],[-0.06302323192358,-0.056346975266933,-0.014799412339926],[0.15130537748337,-0.04365361481905,0.058205276727676]],[[-0.017996961250901,-0.063615970313549,0.039821106940508],[-0.034957375377417,0.034428395330906,-0.031780790537596],[0.031184328719974,0.045723978430033,0.039270605891943]],[[-0.094552494585514,-0.026259133592248,-0.074994310736656],[-0.17274402081966,-0.10905186086893,-0.073110476136208],[-0.10987910628319,0.067347519099712,-0.12151195853949]],[[0.0065559400245547,0.083381973206997,-0.060080390423536],[0.018044181168079,0.069913133978844,-0.062317755073309],[-0.071678675711155,-0.10475447028875,0.066503331065178]],[[-0.27563479542732,0.010342394933105,0.056129187345505],[-0.18979428708553,-0.021592112258077,0.038987293839455],[-0.12988196313381,0.015639090910554,0.050121322274208]],[[-0.0097895180806518,0.012549972161651,0.11941346526146],[-0.12788048386574,-0.17661973834038,-0.022845908999443],[-0.10395170748234,-0.11346809566021,-0.030738113448024]],[[0.12597239017487,0.054769087582827,-0.082885250449181],[-0.085711516439915,0.047277800738811,0.038033097982407],[-0.077329702675343,0.0064323050901294,-0.12151188403368]],[[-0.011047133244574,-0.079833269119263,0.0023971959017217],[0.073301628232002,-0.13366602361202,-0.012479228898883],[0.0049432562664151,0.05941953510046,0.13061957061291]],[[0.07428690046072,-0.066512919962406,0.01459956727922],[-0.0089747626334429,-0.036145199090242,0.031485334038734],[0.06882955878973,0.048268157988787,-0.063604258000851]],[[-0.073848247528076,0.046523708850145,0.13525988161564],[-0.18521244823933,-0.083052754402161,0.050149083137512],[0.024759348481894,0.017605762928724,0.10067102313042]],[[-0.14098356664181,-0.08575513958931,-0.002212742343545],[-0.16007123887539,0.12535914778709,0.0044076316989958],[-0.14526681602001,0.0025182161480188,0.026696378365159]],[[-0.11532690376043,0.10306952893734,-0.01625712774694],[-0.093414202332497,0.12726925313473,0.072455644607544],[-0.026994705200195,0.027218610048294,-0.087753050029278]],[[0.087045721709728,0.11646769195795,0.035933036357164],[0.040285956114531,-0.026816757395864,0.19135464727879],[0.063880257308483,-0.05190135166049,-0.077774807810783]],[[0.031721040606499,-0.05295580253005,0.065816797316074],[0.056726962327957,-0.059798508882523,0.0057001863606274],[-0.32685524225235,0.036725681275129,-0.037325158715248]],[[0.024859709665179,0.089606307446957,0.032859180122614],[-0.10257940739393,-0.13257485628128,0.027284929528832],[-0.023819547146559,-0.13711425662041,0.019196080043912]],[[-0.046199530363083,-0.052808489650488,-0.0049320184625685],[0.028341792523861,-0.092452980577946,0.055647749453783],[0.048969142138958,-0.029609555378556,0.092216476798058]],[[-0.10350172966719,0.026338009163737,-0.16005446016788],[-0.16547153890133,0.019822340458632,-0.039382725954056],[0.085050493478775,-0.09811020642519,0.10309979319572]],[[-0.010206861421466,0.063254185020924,-0.084968253970146],[0.0064473915845156,0.13546811044216,-0.1047675833106],[-0.0085641946643591,-0.14745524525642,0.025965409353375]],[[-0.077365770936012,0.16181489825249,-0.073907382786274],[-0.11951696872711,0.15168406069279,-0.016814121976495],[-0.033467810600996,-0.023706613108516,-0.0091759636998177]],[[-0.054774925112724,0.10520150512457,-0.035153653472662],[0.024891376495361,-0.012823483906686,-0.094538204371929],[0.059986162930727,-0.12907207012177,-0.001555037451908]],[[-0.10784013569355,0.084963910281658,-0.03760839626193],[-0.11472567170858,0.022016571834683,-0.049810785800219],[-0.067038089036942,0.14464712142944,0.01641022413969]],[[0.082769624888897,0.062931329011917,0.010315486229956],[-0.13513916730881,0.05470908805728,-0.031797345727682],[-0.022484062239528,0.0065710600465536,-0.039001129567623]],[[0.064242742955685,-0.12357460707426,0.16044829785824],[0.02505287155509,0.025674337521195,-0.024292400106788],[0.071483187377453,-0.1439157128334,0.04967975243926]],[[0.022875627502799,-0.08215906471014,0.087695740163326],[-0.226448148489,0.16415192186832,-0.011407393030822],[-0.11958689242601,0.0082605965435505,0.013448375277221]],[[0.14335940778255,-0.015785090625286,0.074254520237446],[0.04523891210556,0.025595201179385,0.069107331335545],[-0.11650117486715,-0.036528348922729,0.029939016327262]],[[0.01578607968986,-0.066918924450874,-0.1174289509654],[-0.087608508765697,0.012752087786794,0.055856760591269],[-0.057557605206966,-0.01046343985945,0.16337667405605]],[[-0.13542893528938,0.10458797961473,-0.04390749707818],[-0.075431197881699,-0.020906530320644,-0.072796069085598],[0.011180535890162,-0.035620264708996,0.036793202161789]],[[0.052215293049812,0.008136747404933,0.039115738123655],[0.080293230712414,-0.038975521922112,0.11985489726067],[-0.16594411432743,0.090748742222786,-0.016493991017342]],[[0.086906991899014,-0.050582606345415,0.0037171635776758],[-0.1054779663682,-0.0024718611966819,-0.11178424954414],[-0.014895908534527,0.14331956207752,-0.21792823076248]],[[0.0089298421517015,-0.013505525887012,-0.081905096769333],[-0.12107241898775,0.0058422209694982,-0.058043412864208],[0.069240786135197,0.010957735590637,0.031215591356158]],[[-0.063521429896355,0.11901890486479,0.10807495564222],[-0.066262364387512,-0.0021446666214615,0.055839471518993],[0.031688243150711,0.089772030711174,-0.11081386357546]],[[-0.1547454893589,-0.0028214303310961,0.0047927713021636],[-0.035923827439547,-0.042076796293259,0.058713592588902],[0.046409923583269,-0.012855064123869,-0.04339899122715]],[[-0.03187071159482,0.040451645851135,0.068467810750008],[-0.056591808795929,-0.016947580501437,0.013705731369555],[-0.10133595764637,0.0085342330858111,-0.090555220842361]],[[-0.00097444927087054,0.062273465096951,0.040045998990536],[0.020765556022525,-0.091290511190891,0.11044924706221],[-0.067880153656006,-0.19633707404137,0.047068517655134]],[[0.053217925131321,-0.072486750781536,0.058080092072487],[-0.0029119709506631,-0.064040638506413,-0.024389242753386],[-0.069426156580448,-0.065459996461868,-0.13694462180138]],[[-0.14101311564445,-0.011640643700957,0.11596069484949],[-0.015228779055178,-0.14565168321133,-0.021027406677604],[0.10453789681196,-0.052225898951292,-0.11730950325727]],[[0.09873328357935,0.07941522449255,-0.053265538066626],[-0.02066595107317,0.0047178138047457,0.012794340960681],[-0.04492024704814,0.021804401651025,-0.075108788907528]],[[-0.14679916203022,-0.052772630006075,-0.02768475189805],[-0.19087533652782,0.11549617350101,-0.019522875547409],[0.057081867009401,0.12590672075748,0.080078803002834]],[[-0.33547255396843,-0.028997430577874,0.073731377720833],[0.053894970566034,-0.095582090318203,-0.047279044985771],[0.025190513581038,-0.19671541452408,-0.011842815205455]],[[-0.009368053637445,-0.035230781883001,0.11367847770452],[0.05663488805294,0.024683512747288,-0.066191501915455],[-0.0058805518783629,0.0023095819633454,-0.15960121154785]],[[0.00093082385137677,0.081493213772774,-0.13797406852245],[-0.020908715203404,0.044569183140993,0.0090766008943319],[0.048158638179302,0.041843112558126,-0.053029973059893]],[[-0.03727013617754,0.0796924456954,-0.036775022745132],[0.030788023024797,0.061995677649975,-0.0070643681101501],[-0.11361204832792,-0.033389668911695,0.038257218897343]],[[-0.047785248607397,0.047184802591801,0.018273316323757],[-0.026014197617769,-0.019027540460229,0.088799886405468],[0.092069640755653,0.031537219882011,-0.067082397639751]],[[0.048642538487911,-0.025983510538936,-0.03616439551115],[-0.039201274514198,-0.18127445876598,0.075969509780407],[-0.0040076719596982,0.02913735434413,0.11455999314785]],[[0.10013353079557,-0.094942927360535,0.040227096527815],[0.029039325192571,-0.13904190063477,0.014708799310029],[0.049493998289108,0.086160331964493,-0.13132557272911]],[[0.050625309348106,-0.055428817868233,0.05056170001626],[-0.0067725307308137,0.020561881363392,-0.19349057972431],[0.051417957991362,0.0056322547607124,0.11498922109604]],[[-0.041024398058653,-0.18788734078407,0.087669961154461],[0.07940286397934,0.10592149198055,-0.23208858072758],[0.10294037312269,0.22255718708038,0.045860316604376]],[[-0.093827374279499,0.042326770722866,-0.066004559397697],[-0.19067838788033,-0.033549308776855,-0.13776499032974],[0.091857865452766,-0.051975727081299,0.00032537389779463]],[[0.10012774914503,0.094260565936565,-0.11268936097622],[-0.062651209533215,0.073192164301872,-0.061500076204538],[0.054965630173683,0.077897243201733,-0.021882705390453]],[[0.16029182076454,0.00023709828383289,0.12330098450184],[0.082279600203037,0.090870954096317,-0.012158172205091],[0.008988338522613,0.10113454610109,-0.042373426258564]],[[-0.075165919959545,-0.050486113876104,-0.041929021477699],[-0.09299423545599,0.038035843521357,-0.11734494566917],[-0.079177871346474,-0.019129741936922,-0.11329157650471]],[[0.012805229984224,-0.0075129638426006,-0.03845252469182],[0.16405203938484,0.068878129124641,-0.077665396034718],[0.069052688777447,-0.09418098628521,-0.040590293705463]],[[-0.068544805049896,0.043698936700821,-0.10632219910622],[0.016113923862576,0.079905025660992,-0.089655689895153],[0.095210485160351,-0.086840972304344,0.24320378899574]],[[-0.024236569181085,-0.039603460580111,0.016059666872025],[-0.013903361745179,-0.081786297261715,0.021812312304974],[0.20809794962406,-0.23668891191483,0.076547585427761]],[[-0.075694099068642,-0.18637828528881,0.015004955232143],[0.0032852662261575,-0.013923124410212,-0.067496247589588],[-0.0062975725159049,-0.072465293109417,-0.057550475001335]],[[-0.1473326832056,0.13078559935093,-0.050681509077549],[-0.14943781495094,0.031594287604094,-0.19454100728035],[-0.11205410957336,0.043935038149357,-0.10831294208765]],[[0.1073739528656,-0.059607367962599,-0.16466231644154],[0.13784739375114,0.034997217357159,-0.1207639425993],[0.02406002394855,-0.067792810499668,-0.14807596802711]]],[[[0.069201968610287,0.11572366207838,-0.034182656556368],[0.021424744278193,-0.004219273570925,-0.00083138269837946],[-0.032847918570042,0.07853551954031,0.080518662929535]],[[0.084071531891823,0.12065748125315,-0.18410460650921],[0.015469374135137,0.025789534673095,-0.028482299298048],[0.092825353145599,-0.010588285513222,-0.042221371084452]],[[0.087643936276436,-0.015559266321361,0.059388089925051],[0.001196272787638,0.022247852757573,0.0077640688978136],[-0.010476284660399,-0.046348854899406,0.0065895318984985]],[[-0.029560294002295,-0.11471166461706,0.0062421052716672],[-0.055847723037004,-0.11749490350485,-0.14422850310802],[-0.031853921711445,-0.08359868824482,-0.015100931748748]],[[0.080300234258175,0.022525979205966,-0.014680108055472],[-0.0030174339190125,0.095367096364498,0.014379265718162],[0.051977023482323,0.048325158655643,-0.022515079006553]],[[0.010612734593451,0.050505891442299,-0.150933355093],[0.14526258409023,-0.18000482022762,0.080293335020542],[-0.08468833565712,-0.0092084808275104,0.082046404480934]],[[0.10657592862844,0.011212068609893,0.034169767051935],[0.10991745442152,0.0028699182439595,0.0068307020701468],[0.0020394574385136,0.06168295070529,0.12141215801239]],[[0.043575271964073,-0.068531207740307,0.011081395670772],[0.066623970866203,-0.05726982280612,-0.10156393051147],[-0.0096171926707029,0.061688911169767,-0.024132609367371]],[[0.018891666084528,-0.032598029822111,-0.0095924129709601],[0.025242947041988,-0.033128794282675,0.054100211709738],[0.015509642660618,-0.07601061463356,-0.018294228240848]],[[-0.12044700235128,-0.17846022546291,0.11648497730494],[0.16128690540791,-0.011196142062545,-0.054616935551167],[-0.014967329800129,-0.052536264061928,0.088728033006191]],[[-0.080951660871506,0.041539188474417,0.026024017482996],[-0.061708364635706,-0.081373825669289,-0.077304996550083],[0.0014378130435944,-0.029659224674106,-0.082218781113625]],[[-0.068864084780216,0.045455023646355,-0.13482046127319],[0.041223727166653,0.068346738815308,-0.0635005235672],[-0.0095997219905257,-0.036702070385218,-0.0017367266118526]],[[-0.072980180382729,0.01434169895947,0.038378249853849],[0.10019839555025,-0.0080713722854853,-0.15113133192062],[-0.057882107794285,0.0038077575154603,-0.043708637356758]],[[0.12421891838312,0.058309867978096,0.065913535654545],[-0.021617507562041,-0.25710311532021,-0.013208825141191],[-0.13589262962341,-0.049375452101231,0.11250299215317]],[[0.046020116657019,-0.04826695099473,0.021370710805058],[0.033397518098354,-0.015762735158205,0.034805934876204],[-0.022294426336884,0.033623684197664,-0.09625031799078]],[[-0.13481003046036,0.048738777637482,-0.042514611035585],[0.024356067180634,-0.02164057828486,0.063617587089539],[-0.15692339837551,0.081117168068886,-0.016704976558685]],[[-0.097675383090973,0.010851914063096,-0.035810612142086],[0.11827654391527,0.11574310809374,-0.031369660049677],[-0.06114450097084,0.043371707201004,0.079799965023994]],[[-0.026117216795683,0.02654829993844,0.073431611061096],[0.073829375207424,-0.032584834843874,-0.052584055811167],[0.074553407728672,-0.029860014095902,-0.0074521023780107]],[[0.050587303936481,-0.04634965211153,-0.060980521142483],[0.0091886715963483,-0.077072359621525,-0.14110980927944],[0.14912270009518,0.0095527926459908,0.067183434963226]],[[-0.092408202588558,0.0034442516043782,0.093603283166885],[0.065080069005489,-0.0020838596392423,-0.10398078709841],[0.02659061178565,0.0017282449407503,0.14755281805992]],[[-0.042026340961456,-0.21591413021088,0.10289775580168],[-0.12773358821869,-0.00012591668928508,-0.12810797989368],[-0.040202114731073,0.096430599689484,-0.21608574688435]],[[-0.01926688849926,0.0072011779993773,0.083272106945515],[0.0091515183448792,-0.017505651339889,0.026215316727757],[-0.07813972979784,0.051734130829573,0.084184624254704]],[[0.097644776105881,0.0017252238467336,-0.017471199855208],[0.07796286046505,0.031696829944849,0.04024326428771],[0.0031188449356705,-0.073616154491901,-0.055710669606924]],[[0.003583992132917,-0.050213664770126,0.063538745045662],[0.15828052163124,0.096797987818718,0.097181737422943],[0.046106398105621,0.020889988169074,0.0052675381302834]],[[0.046339362859726,0.035339847207069,0.087707072496414],[0.042244434356689,-0.040680546313524,0.030981492251158],[-0.1399450302124,0.042188707739115,0.073468670248985]],[[-0.13097356259823,0.02842359803617,-0.020421283319592],[0.050938282161951,-0.0062452941201627,0.074757762253284],[-0.082175575196743,0.05330853164196,-0.049199152737856]],[[0.043979123234749,-0.01185492426157,0.0028125715907663],[-0.13682225346565,0.0007213739445433,0.070702828466892],[-0.018424652516842,0.066607117652893,-0.052466884255409]],[[0.030502000823617,0.0096047502011061,0.040490541607141],[0.062530718743801,-0.038649816066027,-0.043211072683334],[-0.0023294158745557,-0.012415368109941,0.1038863658905]],[[0.0052105546928942,-0.03779474273324,0.018050579354167],[-0.00096626358572394,-0.041374269872904,-0.076731465756893],[-0.0500223711133,-0.0714291036129,-0.010557212866843]],[[0.040724363178015,0.073266968131065,0.12100473046303],[-0.057099010795355,-0.16321815550327,0.13708272576332],[-0.2230584025383,-0.023903280496597,0.014096318744123]],[[0.0090031521394849,0.082865640521049,-0.13829711079597],[-0.073865301907063,-0.022312415763736,0.011834650300443],[0.12549316883087,-0.0035658245906234,0.022084591910243]],[[0.092654727399349,0.037227902561426,-0.11614530533552],[0.04023626819253,-0.054053001105785,-0.12857984006405],[-0.022133156657219,-0.027189975604415,0.060387559235096]],[[0.045986171811819,-0.016247296705842,0.17036961019039],[-0.055568914860487,0.074692271649837,0.14722408354282],[-0.006423132494092,-0.06014547124505,0.13696984946728]],[[-0.012407875619829,-0.046376828104258,-0.013728079386055],[-0.012852375395596,-0.30708172917366,-0.042639046907425],[-0.02545421384275,-0.033556878566742,-0.066485680639744]],[[0.087136656045914,0.070483222603798,0.15615247189999],[-0.011713333427906,-0.06572425365448,0.055979210883379],[-0.12345464527607,-0.17561082541943,0.13184559345245]],[[-0.019606452435255,-0.092582732439041,0.0069144326262176],[-0.098353765904903,0.062751024961472,0.17685857415199],[0.005219645332545,-0.1022084876895,0.035380840301514]],[[-0.077495440840721,0.020986840128899,-0.073218382894993],[-0.0075779305770993,-0.051993776112795,-0.024595098569989],[0.089952766895294,-0.023972645401955,0.005609801504761]],[[-0.14823745191097,-0.016019828617573,0.020756974816322],[-0.084755942225456,0.098714739084244,0.03583812713623],[-0.013507764786482,0.11443985998631,0.12322071939707]],[[0.059918459504843,-0.15302368998528,0.12583713233471],[-0.152203977108,-0.018936514854431,0.043813899159431],[-0.11620602011681,0.052602630108595,-0.074740506708622]],[[-0.067233055830002,0.024659641087055,-0.12619812786579],[0.030939076095819,0.0877376049757,0.051591925323009],[0.027637153863907,-0.062950603663921,0.0006882791640237]],[[0.011200435459614,0.054957777261734,0.069251045584679],[-0.12257093936205,0.049925845116377,0.0042826244607568],[0.017665661871433,0.069792702794075,0.058512158691883]],[[-0.029774308204651,-0.14118413627148,-0.095084972679615],[-0.005691812839359,-0.12471403181553,-0.010887652635574],[-0.20033940672874,-0.056787192821503,0.14921776950359]],[[0.12503887712955,-0.024356104433537,0.19646090269089],[-0.0017815983155742,-0.15953627228737,0.058953855186701],[-0.037880081683397,0.019856618717313,-0.041231166571379]],[[0.048759967088699,-0.0069798645563424,0.092733509838581],[-0.090276084840298,-0.017361581325531,-0.032431423664093],[-0.055716264992952,0.10983271896839,-0.061597939580679]],[[0.091998018324375,-0.046213615685701,-0.08137883991003],[0.072802864015102,0.055614374577999,-0.043963439762592],[-0.074926853179932,-0.047718923538923,0.017905181273818]],[[-0.029666524380445,0.077810205519199,-0.064010471105576],[0.020785231143236,-0.058554854243994,-0.27502483129501],[-0.1860296279192,-0.045607820153236,0.094156824052334]],[[0.08913317322731,-0.010073604993522,-0.11745038628578],[-0.049904186278582,0.080218866467476,-0.0477738045156],[0.049158420413733,0.086756713688374,-0.014611784368753]],[[0.099446557462215,0.063237078487873,-0.065010644495487],[0.12404507398605,-0.017083562910557,0.15821023285389],[-0.071845732629299,0.0350446626544,-0.015286196954548]],[[-0.15429352223873,0.08374147862196,-0.0068558696657419],[-0.001153010991402,0.18240721523762,-0.062613487243652],[-0.096233524382114,-0.022003728896379,0.044393882155418]],[[-0.018826223909855,0.0023662324529141,0.038837172091007],[-0.055487547069788,-0.12290381640196,0.034729722887278],[-0.01212219055742,-0.095744259655476,-0.068765960633755]],[[0.048236489295959,-0.025278970599174,0.06057221069932],[-0.033586908131838,-0.054989505559206,-0.074643485248089],[-0.080922730267048,0.028005620464683,0.032072234898806]],[[0.10948640108109,0.032411228865385,0.0073448489420116],[-0.11014983803034,0.0070638325996697,-0.034464612603188],[-0.12270560115576,-0.09190372377634,0.043814081698656]],[[0.056008461862803,0.040359705686569,0.0044719087891281],[0.040646262466908,-0.063587002456188,-0.12253984063864],[-0.075283214449883,0.020039431750774,-0.083710677921772]],[[0.060223944485188,0.019721567630768,-0.029598398134112],[0.0041753207333386,0.088127538561821,-0.008630758151412],[-0.019346978515387,0.049393933266401,0.045430343598127]],[[-0.079937934875488,-0.0051328861154616,-0.089271686971188],[-0.041871901601553,-0.11549842357635,0.060130514204502],[-0.11902620643377,-0.049452167004347,-0.083593882620335]],[[-0.046905018389225,-0.058070175349712,0.073502987623215],[0.0009002125589177,0.066312946379185,-0.050667136907578],[-0.027223845943809,-0.081996142864227,-0.062097609043121]],[[0.083134055137634,0.043486930429935,-0.072385638952255],[0.065257713198662,0.14529857039452,-0.012219779193401],[0.099166512489319,-0.055976364761591,-0.021403290331364]],[[-0.06776088476181,-0.033512782305479,0.1593259125948],[-0.065485008060932,0.092761822044849,-0.10117492824793],[-0.15509018301964,0.10656191408634,0.020444894209504]],[[0.016444142907858,0.0071628279983997,0.10167137533426],[-0.10989294201136,-0.011681869626045,0.10901835560799],[-0.11765871942043,-0.11314049363136,-0.10780779272318]],[[-0.041504878550768,0.058135371655226,0.0026869636494666],[0.02976761572063,-0.059316210448742,0.088882461190224],[-0.027813192456961,-0.0090130707249045,-0.10321883112192]],[[0.09760819375515,-0.10059937089682,0.027362484484911],[-0.040664087980986,0.01045888941735,-0.05712366104126],[-0.018533922731876,-0.12158146500587,-0.031042315065861]],[[-0.10932043939829,0.15642391145229,0.073525860905647],[-0.029420038685203,-0.22641032934189,0.081203460693359],[-0.2648611664772,0.0886460095644,0.0025686719454825]],[[-0.18033309280872,0.0096860993653536,-0.0027484714519233],[-0.06269133836031,0.069339834153652,0.0027547294739634],[0.053964022547007,0.047148507088423,-0.037799309939146]],[[0.077574878931046,-0.052696827799082,-0.062318347394466],[-0.16146489977837,0.13085436820984,0.087691500782967],[-0.15072798728943,0.12552773952484,-0.17267788946629]]],[[[-0.11091709136963,-0.10256500542164,0.017861571162939],[-0.040904395282269,0.018614554777741,-0.073560766875744],[0.040614929050207,-0.05545748770237,0.13698971271515]],[[-0.15491481125355,-0.056717351078987,-0.050932850688696],[0.030682951211929,0.068934559822083,0.045436765998602],[-0.034769225865602,0.070027388632298,-0.056744229048491]],[[-0.010053653270006,-0.11619584262371,0.021261988207698],[0.049395263195038,0.0092766117304564,0.11183001101017],[0.036379400640726,0.07871175557375,0.019423766061664]],[[0.10250955075026,-0.053160116076469,-0.029773402959108],[0.098260425031185,-0.11260043829679,-0.033305525779724],[0.11990586668253,-0.00987458974123,-0.068142272531986]],[[-0.19594821333885,0.1131478920579,-0.098123595118523],[-0.057497851550579,0.11533699184656,0.069125398993492],[0.060200002044439,0.0045837024226785,-0.010030838660896]],[[-0.12485586851835,-0.025320779532194,-0.03358968347311],[-0.069922216236591,-0.033995073288679,-0.070560604333878],[0.029579263180494,0.15788313746452,0.0014629991492257]],[[-0.023309187963605,0.006647530477494,0.039045158773661],[0.10537631064653,-0.031354960054159,-0.03517983481288],[0.078229866921902,0.029786607250571,-0.021797481924295]],[[0.046483263373375,-0.12296395003796,0.03283778205514],[0.043681018054485,-0.049204789102077,-0.062836550176144],[0.050140842795372,0.027269992977381,-0.043861739337444]],[[-0.017947318032384,-0.001995088532567,-0.0074577080085874],[0.0090119997039437,0.086041115224361,-0.037650275975466],[0.010990581475198,0.044190615415573,-0.071665354073048]],[[-0.076210901141167,-0.08072354644537,0.041813969612122],[-0.10292730480433,0.12602062523365,0.029441028833389],[-0.0040608663111925,0.091660268604755,-0.03193562105298]],[[-0.02567870169878,0.026186423376203,-0.024752235040069],[0.15111945569515,-0.038550961762667,0.0482387393713],[-0.087465167045593,-0.079254843294621,0.062419105321169]],[[-0.16688324511051,0.074763372540474,0.29727274179459],[-0.011952393688262,0.049447935074568,0.13607560098171],[-0.11486367881298,-0.097256474196911,-0.038161993026733]],[[0.027701329439878,0.065135650336742,0.11619471758604],[-0.011307259090245,0.030488897114992,0.032540045678616],[0.058436263352633,-0.036319430917501,-0.055940382182598]],[[-0.065510854125023,-0.093597255647182,-0.027531828731298],[0.048999935388565,0.15563209354877,0.040285658091307],[-0.067360609769821,-0.069854736328125,-0.098862834274769]],[[-0.086255379021168,-0.092191934585571,-0.00045284250518307],[0.046943981200457,-0.17292553186417,0.13117149472237],[0.11449096351862,-0.060581725090742,0.081817224621773]],[[-0.064904302358627,-0.083709239959717,0.0034206828568131],[0.07565226405859,0.043980251997709,0.071985937654972],[-0.02807399071753,-0.19155175983906,-0.06171603128314]],[[-0.013055744580925,-0.1457729190588,-0.010264232754707],[0.092994883656502,-0.028948510065675,0.039183981716633],[0.00018628987891134,0.022853827103972,0.058016587048769]],[[-0.21692354977131,0.21440607309341,0.063108831644058],[-0.17795649170876,-0.048542715609074,0.15938855707645],[-0.047074273228645,-0.043545011430979,0.06478164345026]],[[-0.024763356894255,-0.069600708782673,0.0062621780671179],[-0.017441054806113,0.055146411061287,-0.012644822709262],[-0.03571991994977,0.015619399026036,0.16626159846783]],[[0.052145943045616,0.026366809383035,0.13417020440102],[-0.069666467607021,0.030260579660535,0.0054468903690577],[-0.060813400894403,0.058728788048029,0.048288490623236]],[[-0.047080870717764,-0.080034203827381,0.052651755511761],[0.11676967144012,-0.22354279458523,0.090655095875263],[0.073467068374157,-0.039699330925941,0.063059687614441]],[[0.10695112496614,0.20682129263878,-0.12724138796329],[0.0062415148131549,-0.065876640379429,-0.016109613701701],[0.049567550420761,-0.099827371537685,0.021071659401059]],[[-0.074912339448929,0.021723330020905,0.068808026611805],[-0.090306363999844,0.085753366351128,-0.012516252696514],[-0.092593297362328,-0.0084570497274399,0.056286115199327]],[[0.018627282232046,0.041635725647211,-0.11450822651386],[-0.0034667009022087,0.1066552773118,-0.0040056807920337],[0.099135309457779,-0.20515531301498,0.023431239649653]],[[0.031590923666954,0.045343160629272,-0.056306295096874],[-0.027226153761148,-0.057382505387068,-0.10970823466778],[0.0032958937808871,-0.0095820929855108,0.060568012297153]],[[0.07225327193737,0.10167653858662,-0.056279830634594],[-0.12371820211411,0.042799141258001,-0.012647884897888],[-0.017090879380703,-0.10640001296997,-0.017865961417556]],[[0.030956968665123,-0.11451490968466,-0.080825932323933],[0.10672168433666,-0.041410882025957,-0.094914257526398],[0.049781139940023,-0.017799930647016,-0.114950992167]],[[-0.073246844112873,0.077837757766247,-0.095818690955639],[0.14231105148792,0.025807866826653,-0.0187346059829],[0.018808355554938,0.037901174277067,-0.050958480685949]],[[-0.15632148087025,0.021124700084329,0.013690937310457],[-0.20407539606094,-0.015974113717675,-0.035653952509165],[0.17453762888908,-0.054819572716951,-0.0016204866115004]],[[-0.040002346038818,-0.014685180969536,0.035466220229864],[-0.20185862481594,-0.00096571666654199,0.079578034579754],[-0.025516474619508,-0.090812399983406,0.0644361525774]],[[-0.009253459982574,-0.067438088357449,-0.075527869164944],[-0.083311080932617,0.10239842534065,0.11564695090055],[-0.084323130548,-0.014138647355139,-0.023135025054216]],[[0.1117876842618,-0.20161786675453,-0.099653609097004],[0.00028371004736982,0.0024931784719229,-0.051931254565716],[-0.032862860709429,-0.052722759544849,0.012718715704978]],[[-0.064169809222221,0.024614572525024,-0.030148463323712],[-0.21185487508774,0.045815706253052,-0.0074133039452136],[-0.024526137858629,-0.00034877582220361,0.081353649497032]],[[-0.15452572703362,0.23616270720959,-0.028751147910953],[-0.19155292212963,0.2090663164854,0.10258831828833],[-0.078582763671875,-0.15183953940868,-0.030896730720997]],[[-0.053217001259327,-0.054201800376177,-0.05242445319891],[0.11229130625725,-0.14299200475216,0.0059217624366283],[0.012446881271899,-0.00240597454831,0.039016526192427]],[[-0.063650786876678,0.014325539581478,-0.080971695482731],[0.1105485484004,0.064889967441559,-0.077132634818554],[-0.020134633406997,0.081099636852741,-0.11567564308643]],[[-0.065187312662601,-0.022819960489869,0.062679082155228],[0.054343432188034,-0.033048044890165,-0.16615676879883],[-0.018821891397238,-0.054716624319553,-0.035881482064724]],[[0.044362511485815,-0.02276230789721,0.1307530105114],[-0.15264439582825,-0.048849325627089,-0.10261109471321],[-0.033455744385719,0.010720701888204,0.015839291736484]],[[-0.044020846486092,0.039891492575407,0.13877947628498],[0.037752356380224,-0.071214288473129,0.077688604593277],[-0.11733284592628,-0.12338010966778,0.026274977251887]],[[0.041546743363142,0.085700303316116,-0.0090479049831629],[0.062520258128643,-0.090655095875263,-0.082431457936764],[-0.020922780036926,-0.084154173731804,0.0086845858022571]],[[-0.0060925474390388,-0.13585510849953,0.10122536867857],[0.032036736607552,-0.13974590599537,0.12345347553492],[-0.14117254316807,-0.050418023020029,0.020376522094011]],[[-0.046980384737253,-0.075761422514915,-0.083444334566593],[-0.077646292746067,-0.22067286074162,-0.25097090005875],[0.072824448347092,-0.090362831950188,-0.14449977874756]],[[-0.11865475028753,-0.083473227918148,0.059341385960579],[0.093734741210938,0.059374444186687,0.17093712091446],[-0.14504423737526,0.0033049103803933,-0.082364469766617]],[[0.019375432282686,-0.096710793673992,0.0043706553988159],[0.0031390164513141,0.040166333317757,0.066678553819656],[0.0022867694497108,-0.057296261191368,0.019203159958124]],[[-0.079007849097252,-0.030890874564648,-0.0093366457149386],[-0.033184751868248,0.029638011008501,-0.13826894760132],[0.097334213554859,0.020539831370115,0.040228378027678]],[[0.0024056821130216,-0.16892376542091,-0.089180432260036],[0.17549507319927,-0.24572578072548,0.05615596100688],[0.071591809391975,-0.064273558557034,0.26495197415352]],[[0.12483083456755,0.086186490952969,-0.012336319312453],[-0.0466138869524,-0.13353727757931,-0.063153557479382],[0.095865294337273,-0.046718683093786,-0.1085782200098]],[[0.03601661324501,0.096778564155102,-0.2137738019228],[-0.051686339080334,0.17267379164696,0.029040414839983],[0.085242576897144,-0.016764169558883,-0.054120134562254]],[[-0.011589055880904,0.11882044374943,0.031730402261019],[0.017619661986828,0.099217846989632,-0.13569079339504],[-0.0021346993744373,0.011579385958612,0.0048146923072636]],[[-0.083683781325817,0.0168192461133,-0.015158608555794],[-0.086712926626205,-0.04170124232769,-0.039945382624865],[0.05914917960763,0.026814002543688,-0.0099240653216839]],[[-0.088778518140316,-0.025320924818516,-0.058064714074135],[-0.14921456575394,-0.04477870836854,0.020724594593048],[0.10032925009727,-0.047252904623747,0.0070353364571929]],[[0.09237652271986,-0.061847969889641,-0.187260389328],[-0.024367962032557,0.019879225641489,-0.13560239970684],[-0.099047876894474,0.093284703791142,-0.076450414955616]],[[-0.040346741676331,-0.11667262017727,0.094515934586525],[0.022297905758023,-0.08574403077364,-0.060803603380919],[-0.13562531769276,-0.044168252497911,0.10590726137161]],[[0.044664483517408,-0.054849054664373,-0.096094466745853],[0.04457325860858,0.049134541302919,-0.073178000748158],[0.092369467020035,0.06607548892498,0.1350504308939]],[[0.0027925216127187,0.0035327174700797,0.013113901950419],[0.011028760112822,-0.0063289487734437,-0.0017318794270977],[0.052412439137697,-0.067116379737854,0.098782196640968]],[[0.026478663086891,-0.086141854524612,-0.054487641900778],[-0.077108077704906,0.042048502713442,0.012939793989062],[0.068512454628944,0.0038754236884415,0.018638744950294]],[[-0.03881774097681,0.11231476813555,0.032113458961248],[0.063365995883942,0.072331130504608,0.12330600619316],[0.02668410167098,0.021973226219416,0.048469915986061]],[[-0.066363885998726,0.035239435732365,-0.048552561551332],[-0.10471583902836,0.020291525870562,-0.051245678216219],[0.12391185760498,0.035027675330639,-0.022046159952879]],[[-0.0082450276240706,-0.0032957463990897,-0.26634380221367],[0.013353018090129,-0.049511656165123,-0.057252574712038],[0.035438556224108,0.091299377381802,0.084379389882088]],[[0.012969303876162,0.0067869103513658,-0.084175892174244],[-0.021827459335327,-0.029423989355564,-0.0052366671152413],[-0.05420633405447,0.062774643301964,0.16409194469452]],[[-0.10177244991064,0.058527447283268,-0.039247248321772],[0.072045713663101,0.067115813493729,0.066891513764858],[0.097684375941753,0.082007467746735,-0.20269937813282]],[[-0.06335236877203,-0.032524064183235,-0.04138732329011],[0.075525030493736,0.0916867852211,-0.03551783785224],[0.063147306442261,0.12519273161888,0.054201077669859]],[[0.1265334635973,0.009779361076653,-0.0040337969549],[-0.096063181757927,0.096006758511066,-0.081140488386154],[-0.024195715785027,0.052801012992859,0.056934636086226]],[[0.19698317348957,-0.13594803214073,-0.2770214676857],[0.18040846288204,0.013925509527326,-0.077278204262257],[0.040892001241446,0.1323317438364,0.051516208797693]]],[[[-0.080105103552341,-0.097827702760696,-0.029487604275346],[-0.046389855444431,-0.025302393361926,0.101616717875],[-0.070855796337128,0.047774132341146,0.042883161455393]],[[0.098672531545162,0.077096775174141,-0.038684949278831],[-0.14626471698284,0.024456271901727,0.01639011874795],[0.0069079184904695,-0.016158297657967,0.077864855527878]],[[0.074268706142902,-0.049332667142153,-0.0066688843071461],[0.032605186104774,-0.03891110047698,-0.10928224027157],[0.07428964227438,-0.01679995469749,-0.085137009620667]],[[0.14449569582939,0.040554702281952,0.019549580290914],[0.17324396967888,0.063517898321152,0.07433146238327],[-0.12574969232082,0.10833483934402,-0.078430131077766]],[[-0.010352866724133,-0.014137230813503,-0.090911008417606],[-0.11256913840771,-0.015593159012496,-0.064140193164349],[0.090293578803539,0.14374123513699,-0.016191186383367]],[[-0.096153974533081,-0.12855635583401,-0.14862754940987],[-0.1356041431427,-0.19274245202541,-0.12403852492571],[0.030766217038035,-0.26983925700188,-0.08620211482048]],[[0.048929579555988,-0.10053861141205,-0.0045737670734525],[0.1008128747344,-0.049973025918007,0.077999994158745],[0.088200002908707,0.05244267359376,-0.086854495108128]],[[-0.098993241786957,-0.028931027278304,0.085252061486244],[0.052093863487244,0.031011734157801,-0.04230684787035],[0.014895158819854,0.08731297403574,-0.081067577004433]],[[0.019162282347679,-0.0086479671299458,-0.012851376086473],[0.023421010002494,0.034103203564882,0.029803583398461],[-0.036729864776134,0.019983176141977,-0.033657342195511]],[[-0.02567046135664,-0.035219922661781,0.14440011978149],[-0.029607938602567,-0.05335370823741,-0.048297330737114],[0.012425862252712,0.029176488518715,0.026144726201892]],[[0.068938001990318,-0.038918875157833,-0.070746704936028],[-0.023867767304182,-0.065417170524597,0.12298057228327],[-0.0014773578150198,0.080602690577507,0.060105495154858]],[[-0.25648546218872,-0.16665488481522,0.056983191519976],[-0.24183732271194,-0.19603353738785,0.14956609904766],[0.0077432971447706,0.059991117566824,0.12910190224648]],[[0.043074619024992,-0.02759494073689,0.015262881293893],[0.039805382490158,-0.025007730349898,-0.062825761735439],[0.048185363411903,-0.055990189313889,0.019864631816745]],[[-0.023165291175246,-0.072156369686127,0.0049772886559367],[-0.045151621103287,0.13614536821842,0.036568485200405],[0.054245389997959,0.080310016870499,0.0014532645000145]],[[0.04194837808609,-0.053579021245241,0.0304463673383],[0.041137672960758,-0.12735226750374,-0.091843150556087],[-0.028637522831559,-0.070883996784687,-0.035889651626348]],[[-0.026497412472963,-0.040714383125305,-0.00057087338063866],[-0.011721895076334,0.036642979830503,-0.016502488404512],[-0.02944465726614,0.090923175215721,-0.079676546156406]],[[0.11512114107609,0.062121789902449,-0.0097036007791758],[0.1143439784646,-0.11503577977419,0.050841581076384],[0.0014533019857481,-0.059339668601751,0.069722078740597]],[[-0.10612789541483,0.031254906207323,-0.075731948018074],[-0.11974203586578,0.014683673158288,0.024708371609449],[0.0592330545187,0.075703926384449,0.1834037899971]],[[0.036728080362082,0.0030233378056437,-0.083972282707691],[-0.03275291621685,0.0092517742887139,-0.0074927951209247],[-0.066479325294495,0.048806250095367,0.025372525677085]],[[-0.14530436694622,0.041750855743885,0.014336151070893],[-0.065089836716652,0.078386902809143,0.059440772980452],[-0.097454190254211,0.090252056717873,0.095674447715282]],[[0.027691759169102,-0.06456932425499,0.11313589662313],[-0.055639669299126,-0.01988947764039,-0.020398726686835],[0.033788874745369,0.036491353064775,-0.063929535448551]],[[-0.014179930090904,0.029365841299295,-0.067028224468231],[0.089752897620201,-0.058405827730894,0.011828674003482],[-0.015937155112624,-0.0032596006058156,0.014133758842945]],[[-0.076325938105583,-0.10485481470823,0.048570763319731],[-0.045376241207123,-0.014515132643282,-0.035216588526964],[0.01546601112932,0.045947551727295,-0.019367618486285]],[[0.0067840400151908,0.038970731198788,-0.057541999965906],[0.20144042372704,0.068356305360794,-0.10136324167252],[0.1268325150013,-0.036553852260113,-0.069394968450069]],[[0.036772783845663,0.008986609056592,-0.024970393627882],[-0.011023529805243,0.061718989163637,-0.0043831085786223],[-0.039007157087326,-0.023821238428354,0.10571056604385]],[[0.016313247382641,-0.07160497456789,-0.053734790533781],[0.015130019746721,-0.14243750274181,-0.019064143300056],[-0.019406398758292,-0.039754912257195,-0.04140080884099]],[[-0.057224757969379,0.12694093585014,-0.11557719111443],[-0.0028651361353695,0.0035655174870044,-0.039529234170914],[-0.097764663398266,-0.03253823146224,0.024201450869441]],[[-0.056015443056822,-0.034636221826077,0.01058586128056],[0.090035937726498,-0.10513160377741,-0.15077836811543],[0.036402616649866,-0.10478778928518,0.0034739736001939]],[[0.039283074438572,-0.0064397635869682,0.0043118773028255],[0.0092044696211815,0.007683414965868,-0.045402802526951],[0.024324191734195,0.060680326074362,-0.090032555162907]],[[0.18074774742126,-0.046199958771467,0.011335485614836],[0.020735653117299,-0.1427994966507,0.024371920153499],[-0.059434980154037,-0.1438902169466,-0.091970160603523]],[[-0.14873422682285,-0.030599484220147,0.0065621547400951],[-0.093971699476242,0.052950780838728,0.027430649846792],[-0.13754662871361,0.013750334270298,0.0776641741395]],[[0.0066384947858751,0.027032336220145,0.012227236293256],[-0.047307547181845,0.13343486189842,0.13274385035038],[0.033218652009964,-0.0044833403080702,-0.091905668377876]],[[0.051051672548056,0.0058353012427688,-0.042341716587543],[0.021672707051039,0.077734544873238,-0.089653633534908],[0.083362258970737,-0.1257206350565,0.011082590557635]],[[-0.072002336382866,0.0076130395755172,-0.039454892277718],[-0.20635275542736,-0.065892793238163,0.044437907636166],[0.075424961745739,-0.11705566942692,-0.1617605984211]],[[-0.032018236815929,-0.068035140633583,-0.13049523532391],[-0.07525609433651,-0.014183415099978,-0.067609138786793],[-0.012216149829328,0.037938375025988,-0.0026446727570146]],[[0.055453404784203,0.0092269442975521,0.12992060184479],[-0.086889296770096,-0.061220161616802,0.036510404199362],[-0.050271313637495,-0.084697104990482,-0.034193154424429]],[[0.14610047638416,0.065809242427349,-0.061025459319353],[0.10818298906088,0.089165844023228,-0.17919319868088],[-0.054610528051853,-0.052767675369978,-0.1581406891346]],[[-0.13470637798309,-0.052155252546072,-0.026348363608122],[-0.06536029279232,-0.052208710461855,0.060106128454208],[-0.034162882715464,0.043367091566324,0.069856740534306]],[[-0.15263324975967,-0.012258522212505,0.16524615883827],[-0.109509781003,0.019981609657407,-0.066949650645256],[0.016806095838547,0.072379000484943,-0.02587154135108]],[[-0.11625176668167,-0.054680302739143,-0.069536782801151],[0.031108271330595,0.075290061533451,-0.0092807756736875],[-0.069918543100357,0.011814310215414,0.040402930229902]],[[-0.049363870173693,0.042059928178787,0.10721050202847],[-0.34546571969986,-0.10988190770149,-0.0667979195714],[-0.15588596463203,-0.12958480417728,-0.10002055764198]],[[-0.013270427472889,-0.047796949744225,-0.044161111116409],[-0.12214644998312,-0.058117158710957,-0.090979009866714],[0.030213618651032,0.0033242241479456,-0.11871065944433]],[[0.091269597411156,0.11393115669489,-0.054671447724104],[0.060439802706242,-0.037723202258348,-0.031298723071814],[0.025858171284199,0.0027761191595346,-0.067493811249733]],[[-0.030925059691072,-0.0066615389660001,-0.058861032128334],[0.0068564899265766,-0.017616270110011,0.081892780959606],[0.11860460788012,-0.026417968794703,-0.051882855594158]],[[-0.06318587064743,0.017668440937996,0.057483050972223],[0.047310449182987,0.087777160108089,-0.021417126059532],[-0.029720608144999,-0.03850507363677,-0.11151102930307]],[[0.041085045784712,-0.019641114398837,0.10399433970451],[0.043312776833773,-0.0065741715952754,-0.079829581081867],[0.015333075076342,-0.030249150469899,0.068403080105782]],[[0.092407785356045,0.076446421444416,-0.24878726899624],[0.10471738129854,0.081101506948471,0.060275468975306],[0.066331468522549,0.018675919622183,-0.14265736937523]],[[-0.017654461786151,-0.061307322233915,-0.039643850177526],[-0.036920744925737,-0.0064278920181096,-0.011879426427186],[0.12873359024525,0.01942284591496,0.095453947782516]],[[0.13135294616222,0.06144106015563,0.022756803780794],[0.16632631421089,-0.018837556242943,-0.025801138952374],[-0.05301358923316,-0.011836929246783,0.049989983439445]],[[0.015400555916131,0.044596519321203,-0.034082897007465],[0.03355609998107,0.012830170802772,0.050461664795876],[0.064329266548157,-0.25719821453094,-0.027405343949795]],[[-0.037233095616102,0.09199608117342,0.049156367778778],[-0.019284987822175,-0.0076338285580277,-0.10059490054846],[-0.0087370900437236,0.053282987326384,-0.10308150202036]],[[0.12741449475288,-0.0019769947975874,0.054426554590464],[-0.048736609518528,-0.023592481389642,0.085366062819958],[-0.16416454315186,-0.036141451448202,0.045757535845041]],[[-0.0050917584449053,-0.0066221537999809,-0.11684762686491],[0.011004080064595,0.0058670123107731,-0.024454990401864],[-0.014325610361993,-0.015826420858502,-0.010582500137389]],[[-0.044715639203787,-0.0011806185357273,0.035453654825687],[-0.061804067343473,-0.042262323200703,-0.09282174706459],[-0.021610405296087,-0.0012636232422665,-0.092038750648499]],[[-0.05145962536335,0.064400628209114,-0.02838265709579],[0.039139613509178,-0.002090455731377,0.043500375002623],[0.04747686907649,-0.032759852707386,0.0097818719223142]],[[-0.060004878789186,0.21051648259163,0.012464788742363],[0.016452018171549,-0.092672280967236,-0.17536801099777],[-0.01435183826834,-0.030446765944362,-0.00040684858686291]],[[0.025425953790545,0.043000560253859,0.10190435498953],[-0.040924523025751,0.074405305087566,0.15689541399479],[0.080710843205452,-0.060327846556902,0.19274854660034]],[[0.088437788188457,0.048663131892681,0.037792392075062],[-0.019362585619092,0.031713273376226,0.057115264236927],[0.024220729246736,-0.016710689291358,-0.13710515201092]],[[0.14198988676071,-0.009336412884295,-0.12387635558844],[0.043138317763805,0.014782141894102,0.017368102446198],[0.018254132941365,0.011129279620945,0.013832078315318]],[[0.11191636323929,0.024421961978078,-0.067592151463032],[0.043855283409357,-0.052281711250544,-0.05464730411768],[0.010866732336581,0.08707582950592,0.014814971014857]],[[-0.013249028474092,0.016148883849382,0.05900726467371],[-0.034485299140215,0.040241062641144,-0.0231719519943],[0.051256682723761,-0.020839197561145,-0.078823439776897]],[[0.019123077392578,-0.031431712210178,0.13736870884895],[0.0059287939220667,0.092087358236313,-0.073560871183872],[0.097335629165173,0.10185480117798,-0.0022780147846788]],[[0.14319124817848,0.09608343988657,0.061185248196125],[0.021060375496745,-0.054176367819309,0.029717959463596],[0.0070802038535476,-0.071945160627365,0.080638058483601]],[[-0.00077693548519164,-0.019543679431081,-0.10027580708265],[0.12670320272446,0.087057068943977,-0.033791076391935],[-0.051718834787607,0.013305694796145,0.031244592741132]]],[[[-0.063664011657238,0.029814440757036,0.16694554686546],[-0.093162454664707,-0.060620527714491,-0.050618335604668],[0.037258882075548,0.14922843873501,-2.5308454496553e-06]],[[0.017154145985842,0.032285086810589,0.0051690777763724],[0.097792834043503,-0.024139415472746,-0.049360491335392],[0.052055343985558,0.018622539937496,0.011366477236152]],[[-0.034448217600584,0.042233046144247,-0.01032779738307],[-0.037926200777292,-0.088194280862808,0.13813725113869],[0.17811273038387,-0.017096806317568,-0.1174688860774]],[[0.02474139817059,-0.068223930895329,-0.084285266697407],[0.067886002361774,0.0015874616801739,-0.051703874021769],[0.063423611223698,-0.087585106492043,0.041800778359175]],[[-0.0067558279260993,0.012991605326533,-0.084740571677685],[-0.014264148660004,0.076148398220539,-0.062855415046215],[-0.043540835380554,-0.084544219076633,-0.13759784400463]],[[-0.048517473042011,0.009553138166666,0.10735588520765],[0.05195602029562,0.047816697508097,-0.052916511893272],[0.024022400379181,-0.023593313992023,-0.0028890008106828]],[[-0.06358677148819,-0.001283064018935,0.091778710484505],[-0.0064762770198286,-0.10452480614185,-0.039368819445372],[-0.013333525508642,0.041048664599657,0.036329407244921]],[[0.062846399843693,0.004075211007148,-0.11798465251923],[-0.058307129889727,0.0071320114657283,-0.038153953850269],[0.089725136756897,-0.037723127752542,0.13960425555706]],[[0.014107599854469,0.012528304941952,-0.087893329560757],[0.074061341583729,-0.073225937783718,-0.036094810813665],[0.044568818062544,0.087149567902088,-0.025434669107199]],[[0.0045385984703898,0.00029623360023834,-0.14692234992981],[0.031615201383829,0.022261256352067,-0.082321681082249],[-0.0013058944605291,-0.0091570802032948,-0.0034518295433372]],[[-0.013440120965242,0.022307951003313,-0.054565284401178],[0.06618881970644,0.062145791947842,-0.065568998456001],[-0.034912414848804,0.031043013557792,0.081362426280975]],[[0.048159152269363,-0.02475206181407,-0.035048294812441],[0.011818406172097,-0.075567096471786,-0.042050190269947],[0.046243034303188,-0.040118101984262,-0.0093907210975885]],[[0.0205352678895,-0.034897930920124,-0.020739328116179],[-0.063486360013485,-0.0237235147506,0.046759147197008],[-0.025548495352268,0.0050734370015562,-0.0086418436840177]],[[0.053567588329315,0.0008868922595866,-0.12248080968857],[0.040463674813509,0.051848590373993,0.037172172218561],[-0.050273448228836,0.015340533107519,0.0078733069822192]],[[0.020813014358282,-0.014929093420506,-0.039045285433531],[0.055713552981615,-0.10485247522593,0.0019811710808426],[0.083963915705681,-0.053916025906801,-0.034640926867723]],[[0.026358779519796,-0.019880106672645,-0.075816929340363],[0.020217474550009,0.033581230789423,-0.0025606332346797],[-0.078436717391014,-0.098069034516811,-0.06656252592802]],[[0.065650247037411,0.0057771913707256,0.038978256285191],[0.0014647011412308,0.13401238620281,-0.077655933797359],[0.060716882348061,-0.02496063709259,0.090521842241287]],[[-0.023803289979696,0.082333765923977,-0.049573704600334],[-0.046988401561975,-0.060965955257416,0.03451656550169],[-0.013303020037711,-0.024303494021297,-0.036813631653786]],[[-0.028868746012449,0.081054136157036,0.021031873300672],[-0.050955314189196,-0.053119041025639,0.011411476880312],[-0.053558766841888,-0.021609336137772,0.038550581783056]],[[-0.019993051886559,0.089415304362774,-0.048164214938879],[-0.0051148398779333,0.085951678454876,0.067156761884689],[0.068293333053589,0.02178473956883,-0.079385116696358]],[[0.0081390095874667,-0.046327218413353,-0.015505983494222],[-0.082212209701538,-0.042487077414989,-0.11052067577839],[0.049001410603523,0.036026008427143,-0.094579391181469]],[[0.019134644418955,-0.11245822906494,-0.050241068005562],[0.022063042968512,0.013080355711281,0.012268115766346],[0.031236339360476,-0.051185462623835,-0.064189046621323]],[[-0.0017992422217503,-0.0848708152771,0.011718839406967],[0.022473542019725,-0.032191786915064,0.0076932450756431],[-0.10638406872749,0.086091533303261,-0.027066642418504]],[[0.067768424749374,0.008566346950829,-0.057089734822512],[0.0038754192646593,-0.062088452279568,0.037817992269993],[-0.022112550213933,-0.057669147849083,0.0024442819412798]],[[-0.070449590682983,-0.035469826310873,0.0011104298755527],[0.14166663587093,-0.0050605600699782,-0.046322349458933],[-0.063141725957394,0.040875039994717,-0.07656455039978]],[[-0.02146297506988,-0.051308646798134,-0.029094994068146],[-0.093150295317173,0.0030000845436007,0.053316749632359],[0.042951449751854,-0.0082713905721903,-0.043689459562302]],[[-0.032072942703962,-0.010422207415104,-0.054909124970436],[0.010381954722106,-0.041267387568951,-0.05842474475503],[0.020934885367751,0.086910076439381,-0.072596482932568]],[[0.047320336103439,0.040357351303101,-0.00011415293556638],[0.024369969964027,0.082725279033184,0.01221536193043],[0.017316181212664,-0.0057368534617126,-0.066760905086994]],[[-0.04516601935029,0.044664423912764,0.028250692412257],[-0.0074687283486128,-0.060307569801807,-0.010022738948464],[0.084862053394318,-0.014036188833416,-0.0086579164490104]],[[0.041326589882374,0.08212423324585,-0.083183519542217],[-0.018639052286744,-0.079711176455021,0.0085602765902877],[0.080374360084534,-0.093509346246719,-0.014067199081182]],[[0.01610604301095,0.044468019157648,0.011344565078616],[-0.073583267629147,0.015926454216242,0.14300492405891],[-0.021061386913061,0.020286606624722,0.040235318243504]],[[0.070113569498062,-0.038274750113487,0.020146047696471],[0.036547776311636,0.014775417745113,0.033635128289461],[-0.019451199099422,-0.016847128048539,-0.019596707075834]],[[-0.024086032062769,0.14033545553684,0.053968925029039],[0.0156882815063,-0.11189118772745,0.0037689015734941],[-0.020695872604847,-0.11337460577488,0.026982633396983]],[[0.055546801537275,-0.15430811047554,0.045582707971334],[0.12016274780035,-0.17458672821522,0.09389716386795],[0.049445778131485,0.004221685230732,-0.10690665245056]],[[0.079306669533253,-0.010341339744627,0.056028254330158],[-0.053423449397087,0.087019003927708,-0.052689343690872],[-0.051026225090027,-0.13580955564976,0.052296578884125]],[[-0.026286566630006,-0.0092276157811284,0.049923934042454],[-0.022815452888608,-0.10377594083548,-0.084966532886028],[0.044437389820814,-0.060898754745722,0.024465860798955]],[[0.064526662230492,0.039669670164585,0.006463625933975],[0.063434459269047,-0.091066189110279,-0.049933221191168],[-0.0020550272893161,-0.078611344099045,0.089909285306931]],[[0.020486613735557,0.082169093191624,0.14182186126709],[0.023251002654433,-0.076833337545395,-0.0098456330597401],[-0.089634828269482,-0.017023082822561,-0.063203983008862]],[[-0.035899233072996,-0.02886694855988,-0.060316197574139],[0.055325608700514,-0.055334806442261,-0.081452272832394],[0.070510014891624,-0.062438011169434,-0.050174996256828]],[[-0.016806347295642,0.012247848324478,-0.050700724124908],[-0.13001684844494,0.10877645760775,-0.00039741044747643],[-0.063961021602154,-0.058887958526611,0.033796168863773]],[[-0.023958334699273,-0.1665686070919,0.041105829179287],[0.027976477518678,-0.12280527502298,0.051514871418476],[0.038431193679571,-0.16903801262379,-0.019207803532481]],[[0.039702482521534,-0.0096167735755444,-0.066867373883724],[-0.0025944237131625,-0.091430872678757,-0.027023829519749],[-0.072460345923901,-0.038694147020578,-0.14564318954945]],[[-0.018255930393934,-0.092098794877529,-0.075275778770447],[-0.021262031048536,-0.014940624125302,-0.17752148211002],[0.16915117204189,0.14605210721493,-0.089660748839378]],[[-0.03904939815402,-0.01173597201705,0.11669125407934],[-0.090145908296108,0.015253937803209,0.022449035197496],[-0.046438336372375,-0.01688858307898,0.046490859240294]],[[0.047293815761805,-0.076052375137806,-0.0049341395497322],[-0.13652710616589,0.037910766899586,0.012802550569177],[0.021410988643765,-0.022998390719295,-0.031845089048147]],[[-0.0029634153470397,-0.025090800598264,-0.031086860224605],[-0.0076607782393694,-0.073500484228134,-0.016128832474351],[0.040378592908382,-0.10711342841387,-0.04741008579731]],[[0.0056705451570451,0.048786275088787,-0.16095857322216],[-0.10001027584076,0.015277964994311,-0.025154482573271],[-0.071770682930946,-0.08898439258337,-0.060592710971832]],[[0.083087846636772,-0.099167130887508,0.0086817275732756],[0.030461000278592,0.12543547153473,-0.056976277381182],[0.099498450756073,-0.049728404730558,-0.083456963300705]],[[-0.062070585787296,0.020589288324118,0.027524568140507],[-0.14727464318275,-0.015964871272445,0.09513970464468],[-0.045372128486633,0.036128416657448,-0.032729394733906]],[[0.07782569527626,-0.048748638480902,0.018776044249535],[-0.039605427533388,0.03312436491251,0.0060683251358569],[0.039104174822569,-0.0094447927549481,-0.19934889674187]],[[0.080149851739407,-0.023596588522196,-0.068970136344433],[-0.062617063522339,0.0030726420227438,0.021756399422884],[-0.0380854383111,0.00060510809998959,-0.089215472340584]],[[0.075693428516388,5.5950189562282e-05,-0.026318801566958],[0.032202951610088,-0.035598609596491,-0.012231514789164],[0.04859958216548,-0.10684564709663,-0.13905313611031]],[[-0.12423145025969,-0.0084254527464509,0.022900534793735],[0.0085135046392679,-0.00073658407200128,0.042921267449856],[-0.0041281315498054,0.019246170297265,0.040903456509113]],[[-0.061363533139229,0.029822772368789,0.03370912745595],[0.029237857088447,-0.029823161661625,0.0092187710106373],[0.068027406930923,0.039472911506891,-0.035997174680233]],[[0.0054041836410761,-0.066105760633945,0.027399942278862],[-0.020246516913176,0.023073649033904,-0.05820257216692],[-0.065676018595695,-0.015569359995425,0.024090236052871]],[[-0.0089641017839313,0.01633282750845,-0.044094316661358],[0.014215942472219,-0.1914636194706,-0.023200860247016],[0.029184179380536,-0.063226774334908,0.026848062872887]],[[0.035187818109989,0.07340732216835,0.023832006379962],[-0.12395425140858,0.23438282310963,-0.043932810425758],[0.011623600497842,0.11647483706474,-0.032132465392351]],[[-0.021263178437948,0.026856807991862,0.087991341948509],[0.022584989666939,0.068094678223133,0.034398701041937],[-0.14667671918869,0.024335807189345,-0.033879846334457]],[[0.019104721024632,-0.034178994596004,-0.064073227345943],[0.030668586492538,0.048913136124611,-0.083217725157738],[-0.062017079442739,0.0066752498969436,-0.02804078347981]],[[-0.026557637378573,0.021639024838805,0.033819459378719],[-0.0065513327717781,-0.060874652117491,-0.094322443008423],[-0.031949199736118,0.092712581157684,-0.10416536033154]],[[0.059385385364294,-0.087495043873787,0.11252268403769],[0.00060472788754851,0.033453192561865,-0.041398428380489],[-0.0030649632681161,-0.11757055670023,-0.047578617930412]],[[0.023596372455359,-0.0021417622920126,-0.062887959182262],[-0.038466233760118,-0.070757783949375,-0.032924838364124],[-0.044430080801249,0.01900576800108,0.12180826067924]],[[-0.042323991656303,0.012209632433951,-0.019435681402683],[-0.037732340395451,0.011766627430916,0.045408718287945],[-0.058659460395575,-0.069909617304802,0.050180170685053]],[[0.018972471356392,0.1196279078722,-0.036544751375914],[-0.064417786896229,0.14440731704235,0.052584737539291],[0.0050966148264706,-0.055470913648605,-0.030221937224269]]],[[[0.13813619315624,0.068179465830326,-0.01662022061646],[-0.08831537514925,-0.1191183552146,0.0094505678862333],[-0.036003895103931,0.0076030176132917,0.045822322368622]],[[-0.050523955374956,-0.037179380655289,0.22777730226517],[-0.084792710840702,0.0086764674633741,0.12530475854874],[0.12697221338749,0.021845426410437,0.059350099414587]],[[-0.15854623913765,-0.040878091007471,0.025017697364092],[-0.21218994259834,-0.075269415974617,0.010302593000233],[0.065438874065876,0.15436440706253,-0.014438914135098]],[[-0.14879080653191,-0.18021441996098,0.12164840102196],[0.11781495064497,0.023416539654136,0.15602323412895],[-0.033935844898224,-0.068352058529854,-0.093790970742702]],[[-0.016687337309122,0.070786118507385,-0.20154581964016],[0.077366411685944,0.18495117127895,-0.044506721198559],[-0.12179770320654,-0.08050499856472,0.061174683272839]],[[-0.036755561828613,-0.020370449870825,0.088550053536892],[0.122254088521,0.071518376469612,-0.1672291457653],[0.079714767634869,-0.10172653198242,-0.080829180777073]],[[-0.17643922567368,-0.040072660893202,0.032778970897198],[0.019866341724992,0.10776609927416,-0.080160029232502],[-0.017785822972655,0.037944946438074,-0.042929630726576]],[[0.16051350533962,-0.018100278452039,-0.075687050819397],[-0.051543325185776,0.079514749348164,0.08896204829216],[0.10488356649876,-0.027010230347514,-0.11092462390661]],[[0.0092015322297812,0.049173161387444,-0.014661484397948],[-0.052920803427696,0.02489092759788,-0.022867592051625],[-0.024467453360558,0.048097681254148,0.019909115508199]],[[0.020315494388342,0.074294395744801,0.03302113711834],[0.0099714640527964,-0.0045936172828078,-0.0020053805783391],[0.035057444125414,-0.027766212821007,-0.12786871194839]],[[0.014372480101883,-0.016075516119599,0.060428682714701],[0.043148417025805,0.072219453752041,-0.07226175814867],[0.0031541758216918,0.058108814060688,-0.026405148208141]],[[-0.044368647038937,0.19785189628601,0.072312906384468],[-0.043475098907948,-0.096907272934914,-0.16873045265675],[-0.16692985594273,0.011091278865933,0.018551563844085]],[[-0.15367659926414,-0.27454391121864,0.045392073690891],[0.20175009965897,0.087088547646999,0.12727524340153],[0.022809453308582,-0.14095209538937,-0.0075302855111659]],[[-0.0082020880654454,-0.14083416759968,0.084070175886154],[-0.11514791846275,-0.036149963736534,0.041994526982307],[0.051352553069592,0.053990058600903,0.027676796540618]],[[0.071470521390438,0.090677961707115,-0.050758115947247],[0.018293730914593,-0.1757742613554,-0.011869798414409],[0.024264130741358,-0.14125548303127,-0.083981819450855]],[[-0.078799121081829,-0.065077140927315,-0.067460387945175],[-0.039140723645687,-0.11396425962448,-0.0028215681668371],[0.031949616968632,-0.008960435166955,-0.0099684502929449]],[[-0.052763968706131,-0.035409525036812,0.042025592178106],[0.13548694550991,0.071668937802315,0.010363584384322],[-0.0092594306915998,-0.11877857148647,0.11405067145824]],[[0.099210843443871,-0.0039356341585517,0.04582617431879],[-0.1477003544569,1.3064327504253e-06,-0.079052083194256],[-0.035588759928942,0.20046696066856,-0.088073462247849]],[[0.1025128364563,-0.011336850933731,-0.048728331923485],[-0.060420375317335,-0.055057801306248,0.11343773454428],[0.055673487484455,-0.025899181142449,0.076339781284332]],[[0.034192372113466,-0.064672462642193,0.0076386239379644],[9.6964795375243e-06,0.11845029890537,0.088760979473591],[0.016633933410048,-0.070945799350739,0.056607075035572]],[[0.087689526379108,0.087562933564186,-0.01825650036335],[0.015632616356015,-0.053618829697371,-0.023946594446898],[-0.038961913436651,-0.03534048050642,-0.0078889466822147]],[[-0.12607783079147,0.041155807673931,-0.10922507196665],[-0.062239304184914,0.042621575295925,0.0048132780939341],[0.070079326629639,-0.12873859703541,0.04400697350502]],[[-0.016888972371817,0.075395032763481,0.0075753796845675],[0.068214796483517,-0.079180419445038,0.10284251719713],[-0.10030695050955,-0.0045731663703918,-0.029821641743183]],[[-0.098028987646103,0.122733540833,0.00297079840675],[0.033712334930897,0.055056318640709,-0.019755503162742],[-0.050680611282587,0.030326005071402,0.093232445418835]],[[0.019292568787932,0.024740917608142,-0.074821062386036],[-0.0039990250952542,-0.041487399488688,0.039426501840353],[0.04747236892581,0.078475065529346,-0.11353708803654]],[[-0.0012552043190226,0.025067927315831,-0.16555890440941],[0.0085873706266284,-0.00037017275462858,-0.040609318763018],[-0.011247023008764,0.085041463375092,-0.077122032642365]],[[0.010714107193053,-0.038182731717825,-0.10219833999872],[0.15404658019543,0.042235340923071,-0.088399335741997],[0.020595546811819,-0.06542731821537,0.036959581077099]],[[-0.0017588529735804,0.0025123588275164,0.0059965834952891],[0.10520529747009,-0.082885175943375,-0.07053791731596],[-0.052589382976294,-0.055729296058416,-0.047391157597303]],[[0.021342225372791,-0.13935519754887,0.021497268229723],[-0.12093232572079,0.0060847937129438,0.057031009346247],[0.059426940977573,0.012118515558541,-0.041279643774033]],[[-0.078988835215569,-0.045059822499752,0.0038526365533471],[-0.11796080321074,0.11279432475567,0.097600057721138],[0.048149526119232,0.01984273083508,-0.044596575200558]],[[-0.0093492483720183,-0.15628948807716,-0.0056525124236941],[-0.10376667231321,0.085945107042789,0.1411774456501],[0.028206828981638,0.042805794626474,0.064266532659531]],[[0.080774374306202,0.074308045208454,-0.024073895066977],[0.084701783955097,-0.055055472999811,0.025122355669737],[-0.00032407301478088,0.017235141247511,0.036930214613676]],[[-0.035426292568445,-0.033913165330887,-0.039068344980478],[0.070598788559437,0.011007602326572,-0.0427759103477],[0.22008135914803,-0.069205857813358,-0.024356786161661]],[[0.0019406750798225,-0.040042012929916,-0.097811840474606],[-0.10958199948072,0.1280777156353,-0.0096179684624076],[0.052879244089127,-0.016832705587149,-0.016154745593667]],[[-0.10567349940538,-0.02433936484158,0.000668810098432],[0.024150345474482,0.12263995409012,0.078241273760796],[-0.1005727276206,0.07109197229147,-0.098334670066833]],[[0.028570426627994,0.098808035254478,-0.069984249770641],[0.031083879992366,-0.034142255783081,-0.18457362055779],[-0.016130926087499,0.049033842980862,-0.084596246480942]],[[-0.058897480368614,-0.048125974833965,-0.036280546337366],[-0.0062445029616356,0.036943461745977,0.01046346873045],[0.073461003601551,0.11211025714874,-0.0012799601536244]],[[-0.091357707977295,0.00075155083322898,-0.063224591314793],[-0.019520319998264,-0.043290365487337,0.12662544846535],[0.049240492284298,-0.0060318415053189,0.043237220495939]],[[-0.10880272090435,-0.10355948656797,0.139637991786],[-0.038711689412594,-0.084617376327515,-0.070693343877792],[0.0028569477144629,0.10351222753525,0.021700527518988]],[[-0.061226721853018,0.0038585767615587,0.053996380418539],[0.033835142850876,-0.045177679508924,0.074256211519241],[-0.10856545716524,0.12078814208508,-0.026580894365907]],[[0.07642388343811,-0.039740420877934,0.058990843594074],[0.017499588429928,0.11311292648315,0.06777685135603],[-0.0058923824690282,-0.048017133027315,0.0056182313710451]],[[0.070583321154118,0.07298182696104,0.051396138966084],[-0.10798986256123,0.031937371939421,-0.078340105712414],[-0.05491154640913,-0.2173141092062,-0.13860721886158]],[[0.10212533175945,-0.016250284388661,-0.11787541210651],[-0.072401963174343,-0.040044520050287,-0.028397984802723],[0.038648594170809,0.010354194790125,-0.045175116509199]],[[-0.057936117053032,-0.12063759565353,-0.0028558392077684],[0.052697394043207,-0.031866189092398,0.083949945867062],[0.019163215532899,0.078691326081753,-0.0073478692211211]],[[-0.13691544532776,-0.10703885555267,-0.17131276428699],[-0.112463504076,0.053293187171221,0.052736863493919],[0.039999641478062,0.039522644132376,-0.076020859181881]],[[0.15924125909805,-0.050040032714605,0.069440804421902],[0.087366998195648,-0.1363387554884,-0.026247253641486],[-0.0065876482985914,-0.11312166601419,0.064362443983555]],[[-0.067328654229641,-0.071280032396317,0.010003883391619],[-0.040025655180216,-0.11440500617027,0.10793489962816],[0.025329802185297,-0.046442814171314,0.035948637872934]],[[-0.13909585773945,-0.0057093403302133,0.13485358655453],[0.13720446825027,-0.077931679785252,-0.053414069116116],[-0.010046110488474,-0.032659240067005,0.057815637439489]],[[-0.023903837427497,0.023568481206894,0.032442230731249],[-0.0048197251744568,0.038753367960453,-0.07201787084341],[-0.064713537693024,-0.04780125617981,-0.11570747196674]],[[-0.029439575970173,0.028238018974662,0.0081054754555225],[0.034914828836918,-0.0010193267371505,-0.022795364260674],[0.053127359598875,-0.1053855791688,-0.031388346105814]],[[0.027734655886889,0.067256480455399,0.082199804484844],[0.017069455236197,-0.0374840721488,-0.11656161397696],[-0.028412943705916,-0.096604093909264,-0.10954762250185]],[[0.043652176856995,-0.032415244728327,0.087985374033451],[0.07653646916151,-0.051485914736986,0.0773960724473],[-0.035196051001549,-0.12261921912432,-0.010692732408643]],[[-0.040033865720034,-0.16941975057125,0.043164867907763],[0.047637511044741,0.060880102217197,0.10245285183191],[0.033038269728422,0.029509890824556,-0.067008458077908]],[[-0.11746383458376,-0.18287613987923,-0.028362471610308],[-0.00036801301757805,-0.039681758731604,0.08589182049036],[0.052089836448431,-0.042803443968296,0.0058502540923655]],[[0.086764872074127,-0.015866285189986,-0.029079521074891],[0.054862074553967,-0.10136913508177,-0.053519811481237],[0.027006024494767,-0.10252390056849,-0.030539993196726]],[[0.12076318264008,-0.14306604862213,-0.0010069839190692],[-0.019490739330649,0.057025760412216,0.13102224469185],[0.04360143840313,-0.038371980190277,0.029299410060048]],[[-0.043188791722059,0.1974585801363,-0.01812569797039],[-0.024103535339236,0.062031518667936,0.038327589631081],[0.069697797298431,0.20918323099613,0.061262138187885]],[[0.10172731429338,-0.075325153768063,-0.012282269075513],[0.030439073219895,-0.032408360391855,-0.05516255646944],[0.017461162060499,0.0077414461411536,-0.001145662390627]],[[0.084763899445534,-0.052257556468248,0.036950387060642],[0.022686339914799,-0.092444241046906,0.049515970051289],[0.042744781821966,-0.012598283588886,0.17418129742146]],[[0.067117780447006,-0.060234982520342,0.0014149742200971],[0.010827330872416,-0.024874847382307,0.093888834118843],[-0.0065912292338908,0.066781803965569,0.11817344278097]],[[0.1679285466671,0.067604772746563,-0.096449591219425],[0.13118976354599,-0.033645205199718,-0.105009958148],[0.14065219461918,-0.12070205062628,0.026458432897925]],[[0.055933453142643,-0.010975705459714,-0.013257409445941],[0.006579902023077,-0.015881430357695,0.1946589499712],[-0.088661178946495,0.076412759721279,-0.06574708968401]],[[-0.072639398276806,-0.070233464241028,-0.01467714086175],[0.097830310463905,0.13241495192051,-0.016116319224238],[-0.024944866076112,-0.019065225496888,-0.043068651109934]],[[0.061343807727098,-0.1465682387352,-0.12244354188442],[0.056229904294014,-0.10590080916882,-0.10496337711811],[0.02329451777041,0.12201571464539,-0.0036528240889311]]],[[[-0.017351845279336,0.046783201396465,-0.11202801018953],[-0.034773763269186,0.0099613601341844,-0.021772379055619],[-0.030245583504438,0.010730446316302,0.13490141928196]],[[-0.026025811210275,-0.045961610972881,0.0055306190624833],[0.020229980349541,0.020048191770911,0.037505496293306],[-0.0043101338669658,0.16418200731277,0.069556906819344]],[[-0.011306429281831,0.064396515488625,-0.028170518577099],[0.053854744881392,-0.012568576261401,0.086977191269398],[-0.03588093072176,0.058587502688169,0.028601909056306]],[[-0.12452065944672,0.19592568278313,0.073800303041935],[-0.011386908590794,0.092119306325912,0.091109611093998],[-0.094811640679836,0.18319489061832,-0.084223881363869]],[[0.011218601837754,0.017639644443989,-0.036501068621874],[-0.02696874178946,0.016514396294951,0.020386448130012],[0.072616137564182,-0.016560025513172,-0.14773842692375]],[[0.025917207822204,0.057775609195232,-0.070914134383202],[-0.01559039670974,0.062396362423897,-0.091020531952381],[-0.0069965408183634,-0.011258892714977,-0.101333335042]],[[-0.0040479837916791,0.12768967449665,0.042500928044319],[0.041488256305456,-0.082670167088509,0.0085204001516104],[0.087962359189987,0.030667018145323,-0.07112929224968]],[[0.079719163477421,-0.052746966481209,-0.065480187535286],[-0.11058753728867,0.070145606994629,0.063662022352219],[0.12079808115959,0.1198728531599,0.0021668828558177]],[[-0.084997579455376,0.051160719245672,-0.099689722061157],[0.097388915717602,0.047686967998743,-0.076008327305317],[0.011207566596568,0.044693116098642,0.031145136803389]],[[-0.12200023233891,-0.018341964110732,-0.046576570719481],[0.068408668041229,0.087406329810619,-0.02228931337595],[0.070525825023651,0.13307581841946,-0.086456641554832]],[[-0.048832003027201,0.048114579170942,-0.013831595890224],[0.020135369151831,0.10615784674883,-0.024015262722969],[0.01227124594152,-0.0065260888077319,-0.094835259020329]],[[0.14635419845581,-0.02902228012681,-0.00450199842453],[0.13733105361462,0.0078954957425594,-0.0030856335069984],[0.0067617921158671,-0.063327148556709,0.050443284213543]],[[-0.073705017566681,0.049408849328756,0.071095801889896],[-0.054844453930855,0.14231917262077,-0.02073728479445],[-0.022275369614363,0.086151257157326,-0.070357583463192]],[[0.041400898247957,-0.054623872041702,-0.079811297357082],[-0.043666049838066,0.0081655373796821,0.10944535583258],[0.12211368232965,-0.008306372910738,0.055229637771845]],[[-0.1350317299366,0.029450170695782,-0.0077536688186228],[-0.01488440297544,-0.019413152709603,0.090409941971302],[-0.15722432732582,0.026061141863465,-0.058386940509081]],[[-0.02680647559464,0.014690076000988,0.02223745174706],[0.052876114845276,-0.015527185983956,0.014710520394146],[0.01960476487875,-0.14564919471741,0.056954275816679]],[[-0.061843942850828,3.8500911614392e-06,0.020236268639565],[-0.048063538968563,-0.010586027987301,-0.13749715685844],[-0.09977475553751,-0.036406185477972,-0.0058942339383066]],[[-0.046349916607141,0.049349535256624,-0.11642364412546],[-0.036547608673573,-0.069995313882828,0.10498794913292],[-0.0079396786168218,0.093980841338634,0.045784953981638]],[[0.08649305254221,-0.11649496108294,0.056188642978668],[0.022774130105972,-0.094559669494629,-0.018830969929695],[0.023865442723036,0.0025292297359556,-0.0082366829738021]],[[0.084740296006203,0.017441244795918,0.1816888153553],[-0.00020906593999825,0.11816292256117,0.0093669034540653],[0.17024098336697,-0.036221541464329,0.013901500031352]],[[0.063199117779732,-0.021589549258351,-0.058662220835686],[-0.051047138869762,-0.016117984429002,-0.047258235514164],[-0.09217307716608,-0.078128784894943,0.020828055217862]],[[0.053042802959681,-0.026376964524388,0.1453200429678],[-0.0069976411759853,0.032348718494177,0.0068860608153045],[-0.062672600150108,-0.027167232707143,0.22257439792156]],[[-0.07562130689621,0.077489480376244,-0.010113120079041],[-0.098237603902817,-0.045059777796268,0.03215803951025],[0.16007624566555,0.1508837044239,-0.0254109762609]],[[-0.04173131659627,-0.0032636732794344,0.064524553716183],[0.089804820716381,-0.022520685568452,0.065294951200485],[-0.068819053471088,-0.053428240120411,0.0055028237402439]],[[0.0066478229127824,-0.092912569642067,-0.045948896557093],[-0.042899657040834,-0.19814546406269,0.0022270020563155],[0.11114867031574,-0.0047032786533237,0.059085007756948]],[[0.17952515184879,-0.047479245811701,-0.053715340793133],[0.093686409294605,-0.045024994760752,-0.046297509223223],[0.055973388254642,-0.081076122820377,0.0034336373209953]],[[0.036182057112455,-0.058874942362309,0.033096697181463],[0.10406533628702,-0.035939861088991,-0.077888160943985],[-0.0693449229002,-0.013570380397141,-0.069916509091854]],[[0.16079914569855,0.033961553126574,-0.12572057545185],[-0.065993838012218,0.1369773298502,0.05930495634675],[0.014365082606673,0.011344675906003,0.040132656693459]],[[-0.11124341934919,0.072235889732838,0.023948881775141],[-0.031372684985399,0.11495275050402,-0.002141633303836],[-0.027567798271775,0.046287577599287,-0.016985159367323]],[[-0.068206071853638,0.0072590834461153,-0.046008303761482],[-0.027130167931318,-0.01808450371027,0.024398030713201],[-0.11547860503197,-0.084447875618935,0.060085169970989]],[[-0.059410728514194,0.20280684530735,-0.076488420367241],[-0.055262938141823,-0.0086631281301379,0.11980682611465],[0.053862378001213,0.024271951988339,-0.14419886469841]],[[0.02383990213275,0.0082217743620276,-0.012744521722198],[-0.016817813739181,-0.051941964775324,-0.084288895130157],[0.076779276132584,-0.14151628315449,-0.068869091570377]],[[0.070151172578335,0.019524207338691,0.11665923148394],[0.0016505146631971,-0.037237264215946,-0.03140852227807],[0.068403713405132,-0.0028285933658481,0.051805965602398]],[[0.079169034957886,-0.063898332417011,0.076920680701733],[0.13221864402294,-0.11197599768639,-0.012121392413974],[0.089655488729477,0.053077485412359,0.083522289991379]],[[0.0010690616909415,0.012061323970556,-0.048263270407915],[-0.11890512704849,-0.1427284181118,-0.058561131358147],[-0.032276250422001,-0.1011119633913,-0.086787819862366]],[[-0.064657464623451,-0.014841860160232,-0.053939513862133],[-0.0057256943546236,0.076859049499035,0.043924599885941],[-0.076002649962902,0.043443031609058,-0.085122808814049]],[[-0.035766743123531,0.016997681930661,0.11843131482601],[0.035818070173264,0.019879076629877,-0.053417723625898],[-0.037044871598482,-0.065574936568737,-0.031355708837509]],[[0.18904659152031,0.11490700393915,-0.026881439611316],[-0.042206585407257,-0.047569617629051,-0.0044753011316061],[0.053110737353563,-0.067228339612484,-0.025973629206419]],[[-0.031976416707039,-0.12079758197069,0.030489960685372],[0.11586064100266,-0.21907489001751,-0.014546985737979],[0.0034911837428808,0.042227279394865,0.026428388431668]],[[0.038088448345661,0.10076362639666,-0.081042446196079],[0.044274065643549,-0.13919275999069,0.16790835559368],[-0.055581081658602,0.037689916789532,-0.097395457327366]],[[0.020980730652809,0.036314692348242,-0.069444201886654],[0.059981506317854,-0.026099318638444,-0.13246440887451],[-0.041434574872255,0.061432272195816,-0.0084371687844396]],[[0.027719436213374,0.043594229966402,-0.028973735868931],[-0.18384009599686,0.084413014352322,-0.014939752407372],[-0.13734437525272,0.026702985167503,0.061323687434196]],[[-0.044094245880842,0.065218299627304,-0.059923738241196],[-0.035377912223339,-0.031711407005787,-0.061177980154753],[-0.083241917192936,-0.059141002595425,-0.067202895879745]],[[0.098927870392799,-0.0053245476447046,0.055424232035875],[-0.15764671564102,-0.04767794162035,0.030414609238505],[-0.016919668763876,0.0077994759194553,0.025080161169171]],[[0.12369994819164,-0.062879830598831,-0.25499296188354],[-0.03804138302803,0.020651062950492,-0.020080043002963],[-0.025603152811527,-0.094598740339279,0.045557014644146]],[[-0.0086150942370296,-0.074806295335293,-0.01968902349472],[-0.1934676617384,0.11667055636644,0.065423361957073],[0.0088853416964412,0.11883026361465,0.0028857602737844]],[[-0.049869000911713,0.0099810510873795,0.14896275103092],[-0.010413385927677,0.09827870875597,0.019318891689181],[-0.065599627792835,0.04493173584342,0.00050763337640092]],[[0.039051752537489,-0.13369585573673,-0.0048317667096853],[0.049523800611496,-0.031984247267246,-0.086987860500813],[-0.043963063508272,-0.02270707860589,-0.035783063620329]],[[0.061907790601254,-0.067069038748741,0.20481327176094],[0.088818147778511,-0.04470394924283,0.12794682383537],[-0.0082568740472198,-0.18215876817703,-0.042268097400665]],[[-0.048878218978643,0.062333844602108,0.12813439965248],[0.020491482689977,0.013178546912968,-0.11173301190138],[-0.063341155648232,-0.00818264298141,0.037174012511969]],[[-0.046627707779408,0.0040589603595436,0.096551187336445],[-0.12942279875278,0.039125345647335,-0.061164315789938],[-0.079234264791012,-0.029704658314586,0.0077160461805761]],[[-0.010651875287294,0.021708944812417,-0.067279905080795],[-0.017007844522595,0.075676567852497,-0.087447099387646],[0.069851644337177,-0.044457864016294,-0.054598212242126]],[[0.048760574311018,-0.015607411973178,0.015284434892237],[0.071727648377419,-0.055075645446777,0.0046021821908653],[-0.02248060144484,0.0031819685827941,0.037707727402449]],[[-0.16724964976311,0.067720949649811,0.040086925029755],[-0.13962763547897,-0.022132478654385,-0.032001510262489],[0.054766345769167,0.019477730616927,0.030605509877205]],[[-0.10156416893005,0.02388533949852,0.038320876657963],[0.080145627260208,-0.10308171063662,-0.078167073428631],[-0.10055406391621,0.030671890825033,-0.16888809204102]],[[-0.15891115367413,-0.023824645206332,-0.028498183935881],[-0.085604317486286,-0.09718881547451,0.0419628508389],[-0.10628021508455,-0.09585539996624,-0.047061484307051]],[[-0.010211335495114,0.18951235711575,0.041630949825048],[0.15036635100842,0.043000034987926,0.041204817593098],[-0.037932686507702,0.16538970172405,-0.028523553162813]],[[0.016133230179548,0.06425678730011,0.028858963400126],[0.10610865056515,-0.12194023281336,0.030006147921085],[-0.092158749699593,-0.055348034948111,-0.10097854584455]],[[0.023448746651411,0.068773284554482,0.0035444789100438],[-0.023120775818825,-0.031887348741293,0.044487901031971],[-0.043254878371954,0.028578106313944,0.022657562047243]],[[0.00034288299502805,0.043552871793509,0.031129904091358],[-0.028141502290964,-0.0866329818964,0.00097528658807278],[0.044808901846409,-0.051234234124422,-0.0497214384377]],[[0.10099837183952,-0.081245265901089,0.011201954446733],[0.045786298811436,0.024976992979646,0.018835697323084],[-0.1146821975708,-0.037434156984091,-0.040404465049505]],[[0.014146099798381,-0.0082773342728615,-0.020281381905079],[-0.077374219894409,-0.13906963169575,-0.020275458693504],[0.15008528530598,0.10572110116482,0.051015887409449]],[[-0.04876522347331,0.07158999145031,-0.035929832607508],[0.073052659630775,0.0080332728102803,0.070784956216812],[-0.13500942289829,-0.11804655194283,-0.11845496296883]],[[0.040331240743399,-0.049278020858765,-0.00021989637752995],[-0.023242199793458,-0.021419124677777,0.15914079546928],[-0.018704473972321,0.084417693316936,0.13128693401814]]],[[[-0.046473268419504,-0.026046834886074,0.03575798869133],[-0.019886616617441,-0.013753455132246,-0.088202439248562],[0.027593713253736,0.041281849145889,0.013041156344116]],[[-0.21818326413631,0.041472714394331,0.067301325500011],[-0.17174163460732,0.19553254544735,0.16603229939938],[-0.055323027074337,-0.062310285866261,0.074147999286652]],[[0.043370585888624,-0.08055567741394,-0.055931024253368],[-0.025189589709044,-0.11955337971449,-0.081277556717396],[-0.23010964691639,-0.12969066202641,-0.023835489526391]],[[0.029414733871818,0.042329374700785,0.03263134136796],[0.074612401425838,0.075654424726963,0.057309944182634],[-0.076963998377323,0.067507393658161,-0.029782086610794]],[[0.058024402707815,0.035739243030548,0.038788743317127],[-0.0732401907444,-0.10893297940493,0.079811006784439],[-0.0067005357705057,-0.069536626338959,0.054729092866182]],[[-0.062608279287815,-0.14751446247101,-0.15023212134838],[0.040897112339735,0.034559540450573,0.036174576729536],[-0.01010656170547,0.0094407070428133,-0.0077716945670545]],[[0.034399461001158,0.0041081877425313,-0.073517225682735],[0.02711758762598,0.038112867623568,0.0019290699856356],[-0.050782848149538,0.011507811024785,-0.015064712613821]],[[-0.037034016102552,-0.020427035167813,-0.076713860034943],[-0.042919054627419,-0.0078252060338855,-0.012269910424948],[0.11355988681316,0.04632855579257,0.045522466301918]],[[-0.014855452813208,0.02322893217206,0.11931881308556],[-0.074017614126205,-0.075368851423264,0.14097088575363],[-0.053844384849072,-0.054519601166248,-0.029574397951365]],[[-0.032231375575066,-0.098441891372204,-0.12044337391853],[-0.048379331827164,-0.069688245654106,-0.11414373666048],[-0.086523175239563,-0.085751570761204,-0.0087154414504766]],[[0.069136552512646,0.10008063912392,-0.078372076153755],[-0.015271763317287,-0.022183464840055,-0.051917862147093],[-0.058199856430292,-0.076317898929119,-0.16363672912121]],[[-0.1239795088768,-0.092117384076118,-0.14388075470924],[0.019896924495697,-0.013156865723431,-0.056700725108385],[0.067136779427528,0.050518449395895,-0.026507273316383]],[[-0.033432222902775,-0.15773424506187,-0.13026060163975],[0.029430979862809,-0.060259457677603,-0.087531268596649],[0.057141404598951,-0.046771921217442,-0.055932227522135]],[[-0.010021086782217,0.011606181040406,0.038499914109707],[-0.0047942791134119,-0.063625261187553,0.072574190795422],[0.016297895461321,-0.039084311574697,0.015809943899512]],[[-0.010458180680871,-0.020556502044201,-0.036550395190716],[-0.010694424621761,-0.056444801390171,0.024765571579337],[0.011032206937671,-0.040450897067785,-0.10150272399187]],[[-0.015644395723939,-0.042150560766459,0.014535052701831],[0.05078037455678,-0.028169550001621,0.054653871804476],[-0.020906995981932,0.014947926625609,0.036032576113939]],[[-0.0054090702906251,-0.031643576920033,0.02505762130022],[0.068316370248795,0.0028256601653993,-0.024101568385959],[-0.047398168593645,0.0060493657365441,0.039479270577431]],[[-0.056896783411503,-0.22442865371704,0.014626388438046],[-0.029443878680468,-0.20260639488697,-0.028785454109311],[-5.952541687293e-05,-0.0026038731448352,-0.015255782753229]],[[-0.054187934845686,0.046418033540249,-0.094066269695759],[0.012695695273578,-0.058913934975863,-0.022928774356842],[0.036778137087822,-0.003184508299455,-0.054919991642237]],[[0.19449497759342,-0.084166780114174,-0.090929590165615],[-0.017762638628483,0.18059660494328,0.023654920980334],[-0.071428261697292,-0.02111480012536,0.093556918203831]],[[0.0034772611688823,-0.16362410783768,-0.010926744900644],[0.003080926835537,-0.22167007625103,0.011042750440538],[0.016257215291262,-0.035523392260075,-0.035802081227303]],[[-0.063180260360241,-0.045905023813248,-0.17923393845558],[0.017395133152604,-0.041784796863794,-0.021908970549703],[0.0020615090616047,0.029578179121017,0.017464961856604]],[[-0.085819989442825,-0.074396699666977,0.048754964023829],[-0.071193009614944,-0.014492050744593,-0.07364409416914],[0.098832406103611,-0.027009705081582,-0.0040630800649524]],[[0.061258587986231,-0.081882059574127,0.051389116793871],[0.12499050796032,0.11340934038162,-0.17663496732712],[0.0011239603627473,0.076194509863853,0.017356531694531]],[[0.083203539252281,0.044085215777159,0.071858771145344],[-0.034294486045837,0.14548936486244,0.012457843869925],[-0.086331367492676,-0.0059755281545222,0.025198128074408]],[[-0.01007018238306,-0.32109075784683,-0.038313020020723],[-0.13012857735157,-0.16278244554996,-0.0086741773411632],[0.12427025288343,-0.003904503537342,0.015152579173446]],[[0.012428223155439,0.03038252145052,0.010728220455348],[-0.0069966269657016,0.063488408923149,0.0055848769843578],[-0.011476803570986,0.034675542265177,-0.097136951982975]],[[-0.065382733941078,0.015852624550462,0.034351367503405],[-0.014983184635639,0.040079098194838,-0.0071641034446657],[-0.10633784532547,0.0047915214672685,0.050919841974974]],[[0.026355689391494,0.018355902284384,0.010638727806509],[-0.051012866199017,-0.066348478198051,0.053663577884436],[-0.0084730060771108,-0.070869632065296,0.07821374386549]],[[-0.01683490537107,0.021979382261634,0.075241558253765],[0.0026639741845429,-0.051064658910036,-0.088538512587547],[-0.08118350058794,0.049263443797827,0.013849139213562]],[[-0.00011085571895819,0.1227371096611,-0.10370734333992],[-0.037610404193401,-0.083852842450142,0.11129801720381],[0.14254964888096,-0.015253322198987,-0.065144963562489]],[[0.040368553251028,-0.12770514190197,0.065516196191311],[0.035463087260723,-0.010445415973663,-0.047849833965302],[0.027621198445559,0.019729902967811,0.043383967131376]],[[0.039506290107965,-0.23099522292614,0.095094494521618],[-0.043970450758934,-0.10000723600388,0.060683630406857],[-0.009810677729547,-0.070196785032749,-0.047938238829374]],[[-0.1229927316308,-0.057168815284967,-0.022147420793772],[-0.095410443842411,-0.071040913462639,-0.098551943898201],[0.079853564500809,-0.056855585426092,-0.012326632626355]],[[-0.041410472244024,0.022548297420144,-0.0027205985970795],[0.017055412754416,-0.095646671950817,-0.063431911170483],[-0.026535464450717,0.066191211342812,-0.025734774768353]],[[0.061065122485161,0.045043285936117,0.026167107746005],[0.03370513394475,0.049650650471449,0.090316109359264],[-0.10409435629845,-0.027164610102773,-0.0058576161973178]],[[0.026440421119332,-0.018594816327095,-0.11656638979912],[0.056579742580652,0.042722050100565,0.016334738582373],[0.04220224916935,0.045035351067781,0.044886950403452]],[[0.04390137270093,0.018373550847173,-0.069989912211895],[-0.067474022507668,0.026364751160145,0.049454230815172],[-0.13586431741714,-0.093729242682457,0.13748718798161]],[[0.031219962984324,-0.037913616746664,-0.078396588563919],[-0.051069423556328,-0.06440631300211,0.065737225115299],[0.032796833664179,0.054367732256651,-0.0049761808477342]],[[0.031278636306524,0.035354696214199,0.018783321604133],[0.0032222860027105,-0.18174670636654,0.15432639420033],[0.026026533916593,0.078407809138298,-0.02488025650382]],[[-0.07037702947855,-0.0050102239474654,-0.076121166348457],[-0.099040947854519,-0.12018755078316,-0.061496376991272],[-0.0066677955910563,-0.03925908729434,0.00019752539810725]],[[0.0011272676056251,0.0028636993374676,0.044622823596001],[0.078593902289867,-0.2396320104599,0.045440793037415],[0.17808890342712,-0.27991029620171,0.0012692029122263]],[[0.0023199999704957,-0.03951695933938,0.003668830730021],[-0.027627479285002,-0.039402898401022,-0.030728528276086],[0.092129044234753,0.039631512016058,-0.060389656573534]],[[0.023412166163325,-0.012226128950715,-0.070454828441143],[0.10166386514902,0.019886858761311,-0.22313703596592],[0.08086185157299,0.073318764567375,0.017460662871599]],[[-0.016086032614112,-0.27622509002686,-0.0025983762461692],[0.079385593533516,-0.13808904588223,-0.056398138403893],[0.033537726849318,-0.037913292646408,0.025825928896666]],[[0.046605844050646,-0.0058377874083817,-0.067052997648716],[0.037927459925413,0.053446564823389,-0.23277938365936],[-0.013286209665239,0.027229631319642,-0.071638904511929]],[[0.053719323128462,-0.0014629100915045,0.088797062635422],[0.023796804249287,-0.0049120355397463,0.085035055875778],[0.037812389433384,-0.049122933298349,-0.052919197827578]],[[-0.0037247003056109,-0.065857626497746,0.049659315496683],[0.0081546176224947,0.022357270121574,0.097568109631538],[-0.040325943380594,-0.0085805365815759,-0.014748252928257]],[[-0.086409643292427,-0.11005029827356,-0.15914779901505],[0.086427748203278,0.051860447973013,-0.043502002954483],[-0.019216245040298,0.055143002420664,-0.070682808756828]],[[0.055366512387991,0.002516255248338,-0.030218068510294],[-0.020056668668985,-0.085346527397633,0.030740067362785],[0.018546367064118,-0.11579514294863,0.090913899242878]],[[-0.056394185870886,0.019998826086521,-0.060905937105417],[0.0090277716517448,-0.14073537290096,-0.0021788254380226],[0.014002506621182,0.025790186598897,-0.0095542371273041]],[[0.10764865577221,-0.060155555605888,0.053274258971214],[-0.0054836720228195,0.0017407104605809,0.06037263199687],[-0.072782129049301,-0.0012553073465824,0.044989205896854]],[[0.058236856013536,-0.003001187928021,-0.022989176213741],[-0.029027719050646,0.040100496262312,-0.0042972904630005],[-0.020380422472954,0.013694575987756,-0.089613825082779]],[[0.0023938354570419,-0.021408122032881,0.056434754282236],[-0.10698459297419,0.078311890363693,0.12974072992802],[-0.052995905280113,0.0087376032024622,0.10026710480452]],[[0.033990848809481,-0.090470507740974,0.043325915932655],[0.053932789713144,-0.14993047714233,-0.087941758334637],[0.075689360499382,0.10385829955339,0.077831089496613]],[[-0.00012949868687429,0.0064920606091619,-0.33064338564873],[-0.0084337843582034,0.0077318418771029,-0.070565491914749],[-0.041840095072985,-0.055129386484623,0.0035007169935852]],[[-0.085134513676167,-0.014018295332789,0.20123052597046],[0.081183902919292,-0.13096079230309,0.074752986431122],[0.033813700079918,0.036055691540241,-0.054177612066269]],[[0.020803121849895,0.0075859883800149,-0.031667567789555],[0.047464728355408,-0.084542989730835,-0.0034009297378361],[-0.013149064965546,0.078394837677479,0.028901414945722]],[[0.03305647149682,0.047802187502384,0.0043587852269411],[0.12691390514374,0.10061566531658,-0.075503066182137],[-0.028131902217865,0.076073154807091,0.028510894626379]],[[-0.011827423237264,-0.029626540839672,-0.086661949753761],[0.020433543249965,-0.011618555523455,-0.068865232169628],[0.073578685522079,-0.16273812949657,0.0055560460314155]],[[-0.0191780179739,-0.061535887420177,0.057463426142931],[-0.0046286461874843,0.022473052144051,-0.025274204090238],[-0.0064865094609559,0.019981399178505,-0.019840126857162]],[[0.016425967216492,0.087994419038296,-0.032948460429907],[-0.032744016498327,-0.055661641061306,0.025653097778559],[0.056565418839455,0.068674191832542,-0.031826674938202]],[[0.060425888746977,0.075652100145817,0.015100137330592],[-0.0093430699780583,-0.045083779841661,0.014628602191806],[0.016535690054297,0.055102001875639,-0.03810441493988]],[[0.019750675186515,0.016751058399677,0.039107363671064],[0.11065868288279,0.034437451511621,0.097305133938789],[-0.069350138306618,0.064970962703228,0.0052821352146566]]],[[[-0.034982934594154,-0.0022805593907833,-0.078132323920727],[-0.04419094696641,-0.11676824092865,-0.095209158957005],[-0.038489356637001,0.072688959538937,0.0095203388482332]],[[0.098514676094055,-0.046403892338276,-0.12807227671146],[0.11652648448944,0.050372123718262,-0.0016659658867866],[-0.14197361469269,-0.13122972846031,0.048816632479429]],[[-0.05481881275773,0.019166408106685,-0.0013802079483867],[-0.13821989297867,-0.10246656090021,0.018005726858974],[-0.0018167258240283,-0.025783643126488,0.025637740269303]],[[-0.087613314390182,-0.0051048137247562,-0.063739523291588],[-0.047068003565073,-0.024644874036312,-0.040480960160494],[-2.6925590645988e-05,0.010822124779224,0.026797553524375]],[[-0.013232889585197,-0.040454123169184,0.028002025559545],[0.090200684964657,-0.11559081822634,0.059108398854733],[-0.038978952914476,-0.042864508926868,-0.0066673145629466]],[[0.032209627330303,-0.056395031511784,-0.0067967516370118],[-0.021140923723578,0.013566535897553,-0.025784444063902],[0.012061617337167,-0.012098893523216,-0.0059357983991504]],[[-0.029151171445847,-0.062947563827038,-0.095199935138226],[0.051425490528345,-0.062467288225889,-0.054388381540775],[-0.021820263937116,-0.07114963978529,-0.023308100178838]],[[0.042319156229496,0.071735315024853,-0.086327560245991],[-0.014108930714428,0.029543379321694,0.0018556229770184],[0.04791247472167,0.079347223043442,-0.030108846724033]],[[-0.036309488117695,-0.034004300832748,0.030783763155341],[0.11199280619621,-0.015468296594918,-0.025101041421294],[-0.019167540594935,-0.084140807390213,-0.050928361713886]],[[-0.062432494014502,-0.024712581187487,0.01166888140142],[0.041597299277782,0.036680687218904,-0.087657377123833],[0.023561270907521,-0.047034949064255,0.029563169926405]],[[0.025758013129234,0.033903695642948,0.038304518908262],[-0.056102886795998,0.042971089482307,0.056218452751637],[0.040150877088308,-0.042816672474146,-0.018937757238746]],[[0.00016667315503582,-0.091475993394852,-0.031765230000019],[-0.057859688997269,-0.06625946611166,-0.018062647432089],[-0.065041154623032,-0.067476652562618,-0.018661299720407]],[[-0.031101673841476,0.053831219673157,0.017145689576864],[-0.0013439356116578,-0.0032098300289363,-0.078212969005108],[-0.07970817387104,-0.056405231356621,-0.028320154175162]],[[0.021157905459404,-0.073413126170635,0.0394347012043],[0.073097318410873,0.022939138114452,-0.008527921512723],[-0.047234911471605,-0.051830463111401,-0.078839361667633]],[[0.049466699361801,-0.032358180731535,0.06060828268528],[-0.012607723474503,-0.091430127620697,-0.026240421459079],[0.022669496014714,0.040880344808102,0.0030132269021124]],[[0.07126522064209,-0.14457342028618,0.0037345928139985],[0.079784892499447,-0.070436917245388,-0.018013061955571],[-0.015215030871332,-0.027306096628308,0.0031718520913273]],[[-0.006884500849992,-0.056334882974625,-0.03434144333005],[-0.011679702438414,-0.023148223757744,-0.00071902183117345],[0.027558267116547,-0.018133724108338,0.091730087995529]],[[-0.021148944273591,-0.05402709171176,0.050373304635286],[-0.024187264963984,-0.058528654277325,0.055285595357418],[0.060409460216761,-0.0064540910534561,-0.015026672743261]],[[-0.020074589177966,0.089894957840443,0.036174204200506],[-0.091079458594322,0.080907121300697,-0.057938002049923],[-0.063757218420506,-0.049334805458784,0.06595329195261]],[[-0.0675018876791,0.017735313624144,-0.17139914631844],[0.065390966832638,0.1225076764822,-0.17534452676773],[0.00066064408747479,0.033298891037703,-0.10543324798346]],[[-0.025576245039701,-0.02239372394979,-0.051676090806723],[-0.012193123809993,-0.076393716037273,-0.035834457725286],[-0.07884855568409,-0.10980132967234,-0.054710742086172]],[[0.011781797744334,0.087591275572777,-0.022615853697062],[-0.0039942930452526,-0.048689741641283,0.057133208960295],[-0.037267997860909,0.007236004807055,0.0011534739751369]],[[-0.085544906556606,0.018048517405987,-0.0197698995471],[-0.061644997447729,0.0020822156220675,0.007681320887059],[-0.06867453455925,-0.0055115879513323,-0.0043948907405138]],[[-0.0089508332312107,-0.030257932841778,-0.030325071886182],[0.028489496558905,-0.032703544944525,-0.0015424416633323],[-0.038717661052942,-0.032462909817696,-0.026104614138603]],[[0.0093866121023893,-0.079143211245537,-0.012312716804445],[0.0044604958966374,-0.019531015306711,0.05379219353199],[0.028333820402622,-0.009397960267961,0.021082850173116]],[[0.0060379789210856,0.010882244445384,0.043520584702492],[0.095298886299133,-0.15464703738689,-0.094109818339348],[0.032017063349485,0.00016388397489209,-0.23514941334724]],[[0.018262816593051,-0.13797451555729,0.0057541658170521],[0.014819388277829,-0.013191545382142,-0.055515822023153],[-0.081959269940853,0.079617507755756,-0.0072199660353363]],[[0.018841795623302,0.054679475724697,0.059668779373169],[-0.0053859581239522,-0.0054852161556482,0.0086794896051288],[-0.07548926025629,-0.040701884776354,0.066587075591087]],[[-0.018538085743785,0.12051604688168,-0.016645085066557],[0.035394296050072,-0.0088302548974752,0.11871444433928],[-0.061943247914314,-0.015055816620588,-0.021656468510628]],[[-0.044856764376163,-0.094637051224709,0.0075046368874609],[-0.010009335353971,-0.091543078422546,-0.004597875289619],[0.055108841508627,-0.043132312595844,0.062008291482925]],[[-0.02651740424335,0.014260594733059,-0.015270160511136],[-0.14324079453945,-0.064713604748249,0.048866003751755],[-0.021536761894822,0.018925219774246,0.019499270245433]],[[-0.030940845608711,-0.037081852555275,0.040033709257841],[-0.0082320673391223,0.055231381207705,0.070726849138737],[0.038185507059097,-0.0039403568953276,0.022085960954428]],[[0.023894632235169,-0.064577765762806,-0.0035840761847794],[-0.028549790382385,-0.025882635265589,-0.050047431141138],[-0.059968639165163,-0.012354759499431,-0.042082626372576]],[[0.010287688113749,-0.14568899571896,0.053831774741411],[0.06370485574007,-0.13408154249191,-0.017702307552099],[-0.013602373190224,-0.052056659013033,-0.08539567142725]],[[-0.020055651664734,0.067001923918724,-0.040197532624006],[0.068452909588814,-0.16732156276703,-0.12934128940105],[0.090799517929554,0.13057215511799,-0.1502493172884]],[[-0.055980373173952,-0.071286842226982,-0.0099325459450483],[0.0090774241834879,-0.0063620177097619,0.0024420311674476],[0.011718125082552,-0.037762179970741,-0.039456762373447]],[[-0.091884158551693,0.052948374301195,-0.031648956239223],[-0.026553081348538,0.03546155244112,0.0049543944187462],[-0.0090521471574903,-0.081736497581005,-0.17988494038582]],[[-0.093507714569569,-0.0098863486200571,0.088215529918671],[-0.047756515443325,-0.016520237550139,0.00060086167650297],[-0.0081916600465775,0.073568418622017,0.026059780269861]],[[-0.031045857816935,0.0028765089809895,-0.046725209802389],[-0.01165209710598,-0.0416474416852,-0.0010791819076985],[0.061297480016947,-0.0048692040145397,0.026317523792386]],[[0.0049273762851954,-0.019357614219189,-0.10116580873728],[0.039730682969093,-0.025631589815021,-0.051515571773052],[0.013950523920357,0.0041863154619932,0.020159132778645]],[[0.0073297931812704,-0.026974277570844,0.05809760093689],[0.10075382143259,-0.050832364708185,0.02590811252594],[0.0013353169197217,0.0077102016657591,0.14370991289616]],[[-0.016752747818828,0.0053307577036321,-0.01668150909245],[-0.093905583024025,-0.049663301557302,-0.020848488435149],[-0.10120306909084,-0.021343445405364,0.028328264132142]],[[0.031581033021212,0.038799189031124,-0.15940250456333],[-0.043585035949945,0.0058726565912366,0.020861709490418],[-0.050171997398138,-0.11097611486912,-0.060846708714962]],[[-0.072173677384853,-0.053975217044353,-0.049670528620481],[0.0083675142377615,0.01503000035882,0.058298915624619],[-0.008497946895659,-0.023359337821603,0.082724899053574]],[[-0.046141628175974,0.092331916093826,0.017211453989148],[-0.031401243060827,-0.046480719000101,-0.15161879360676],[0.039601229131222,0.019706772640347,0.0054660569876432]],[[-0.023264724761248,0.076499797403812,-0.028638521209359],[0.047210220247507,0.07833468914032,-0.057681750506163],[0.040596690028906,0.027135625481606,0.051665894687176]],[[-0.15229481458664,-0.10692612081766,-0.021552361547947],[-0.077917210757732,0.008741719648242,0.012028669007123],[-0.068759918212891,-0.0074890507385135,-0.045732870697975]],[[-0.020763387903571,-0.016118405386806,-0.090567871928215],[0.067002601921558,0.059041541069746,-0.1003168746829],[0.017077308148146,-0.0023196458350867,-0.031060779467225]],[[-0.023842047899961,-0.033658646047115,0.011980660259724],[-0.10556771606207,-0.022522741928697,0.05297240242362],[-0.071723721921444,-0.05541654676199,0.052972782403231]],[[-0.00068637868389487,0.037239391356707,-0.064008936285973],[-0.0028396220877767,0.045589558780193,-0.028076358139515],[0.035356044769287,-0.00023368980328087,-0.080811910331249]],[[-0.0075207185000181,0.0031771522480994,-0.050499621778727],[0.061433013528585,-0.020514054223895,-0.079975135624409],[-0.0091787641867995,0.0094509907066822,-0.028106022626162]],[[0.03001700527966,0.029064932838082,0.0054184924811125],[-0.013815781101584,-0.0075811091810465,0.0097823832184076],[0.0021191129926592,-0.065611906349659,-0.04189183190465]],[[-0.079078361392021,0.0020473427139223,-0.05351472273469],[0.0005892007611692,-0.014545473270118,-0.090898551046848],[0.043254107236862,-0.026149746030569,-0.047255489975214]],[[-0.025716723874211,-0.016108613461256,0.0138975167647],[-0.062541656196117,0.043839003890753,0.052369970828295],[-0.031285781413317,-0.034243665635586,-0.022634204477072]],[[-0.0044978051446378,-0.041161019355059,-0.0034838141873479],[-0.020004417747259,0.087751679122448,0.072040855884552],[-0.10555962473154,-0.07520592212677,0.021602604538202]],[[-0.02177057787776,-0.098911046981812,0.089799910783768],[0.021636659279466,-0.11462094634771,0.0092692710459232],[0.037959136068821,-0.030954198911786,-0.01595644839108]],[[-0.15218238532543,-0.012117644771934,-0.028318345546722],[-0.050869230180979,0.087531901896,0.011427805759013],[-0.13787479698658,0.088237643241882,-0.014864518307149]],[[-0.029965240508318,-0.027174221351743,0.0088376058265567],[-0.03271160274744,-0.034440074115992,0.027551703155041],[0.029231445863843,-0.062645077705383,0.0073788170702755]],[[0.078473590314388,-0.0060159987770021,0.044605154544115],[-0.01046235486865,-0.06663204729557,-0.084895081818104],[0.056422796100378,0.12259230017662,-0.048422690480947]],[[0.046889487653971,-0.073094636201859,0.0012588256504387],[-0.055682841688395,-0.10359764844179,0.092282585799694],[0.049164898693562,-0.11661909520626,0.017400117591023]],[[0.016873314976692,0.021232087165117,0.13203962147236],[0.065728053450584,-0.017113955691457,0.017194846644998],[-0.086483851075172,-0.06251722574234,0.13379783928394]],[[0.025673303753138,-0.053456466645002,-0.057632423937321],[-0.079853236675262,-0.05870046839118,-0.061442576348782],[-0.022453522309661,0.014439009130001,-0.0062188361771405]],[[-0.0081489980220795,-0.0094847492873669,-0.0103595033288],[0.00059404707280919,-0.010927339084446,0.062206018716097],[-0.015082079917192,-0.12537711858749,0.076626181602478]],[[0.023914083838463,-0.056182909756899,-0.026434266939759],[-0.0043485467322171,-0.016188278794289,-0.0019394715782255],[-0.097978487610817,-0.081818379461765,-0.051656760275364]]],[[[-0.013396418653429,-0.094224475324154,0.036571633070707],[0.031600948423147,-0.018720963969827,-0.025890352204442],[-0.028501847758889,0.0070080948062241,0.048114728182554]],[[-0.0094733731821179,-0.11099690943956,-0.049196351319551],[-0.032870054244995,0.088771007955074,-0.063416689634323],[-0.066269688308239,0.077883668243885,0.11360559612513]],[[-0.013083035126328,0.087974689900875,0.010956985875964],[-0.057870909571648,-0.17430451512337,0.021172029897571],[-0.04242230579257,0.018573669716716,-0.00302450847812]],[[-0.02937532030046,0.10298310220242,0.089276008307934],[-0.025119010359049,-0.086349628865719,-0.0053054317831993],[-0.061913106590509,0.075141243636608,-0.18129377067089]],[[-0.071796074509621,0.064206950366497,0.00054326455574483],[0.041571162641048,0.046739384531975,0.014227051287889],[0.027341732755303,0.0079064071178436,-0.029993558302522]],[[0.059116404503584,0.084547206759453,-0.012872317805886],[-0.0056606098078191,-0.02679281681776,-0.073468804359436],[0.040620338171721,-0.0016238836105913,0.060894150286913]],[[-0.048567492514849,0.037099722772837,-0.081601090729237],[-0.026259010657668,-0.001625316333957,-0.14021483063698],[-0.015115454792976,0.070735231041908,-0.0027387628797442]],[[0.087601989507675,-0.015103556215763,-0.022094331681728],[0.11540918052197,-0.0980034917593,-0.10411683470011],[0.10963103175163,0.16610312461853,0.11358764022589]],[[0.030215160921216,0.016778156161308,-0.035548746585846],[0.012018184177577,-0.019684806466103,0.043941348791122],[-0.040834039449692,0.0087798358872533,0.033973976969719]],[[0.020112000405788,-0.09384810179472,-0.10676096379757],[0.00092372728977352,0.010390720330179,-0.11523025482893],[-0.06062601134181,-0.053841449320316,-0.092132963240147]],[[-0.0088453032076359,0.037980481982231,-0.015529587864876],[0.082400910556316,0.061029259115458,0.010429845191538],[0.023589175194502,-0.058575335890055,-0.06069765612483]],[[-0.14768819510937,-0.11797609180212,-0.095539957284927],[0.0087341452017426,-0.035814695060253,-0.11658494919538],[0.11135391145945,0.10834655165672,0.032364137470722]],[[0.11244365572929,0.097230695188046,0.017772564664483],[-0.076810739934444,0.026843138039112,0.065076798200607],[0.010858786292374,-0.15176096558571,-0.018289968371391]],[[0.033662479370832,0.02757516130805,-0.029285999014974],[0.049315456300974,0.022523354738951,0.076765969395638],[-0.0085239289328456,-0.076557777822018,-0.087043203413486]],[[0.02199624478817,-0.0017051068134606,-0.082066811621189],[-0.02183173596859,-0.047203820198774,0.024925548583269],[-0.076857157051563,-0.038257941603661,0.020097423344851]],[[0.083207562565804,-0.044223871082067,-0.030515868216753],[0.028663367033005,0.036330617964268,0.023169385269284],[-0.032861948013306,-0.030516924336553,-0.076111041009426]],[[0.047834012657404,0.10496913641691,0.036757629364729],[-0.027374556288123,-0.035082451999187,0.021319206804037],[-0.020052179694176,-0.023778326809406,0.044030047953129]],[[0.0065593589097261,-0.010290626436472,0.0052258060313761],[0.16057886183262,-0.022998224943876,0.05708984285593],[-0.10924253612757,0.12807084619999,0.010550956241786]],[[0.049641560763121,-0.020326156169176,0.21745389699936],[-0.06248052418232,-0.020134054124355,0.077420771121979],[-0.0303371604532,-0.062244366854429,-0.025157487019897]],[[-0.022808060050011,0.099850580096245,0.019434923306108],[-0.076676309108734,-0.010786201804876,0.04877307638526],[0.075081631541252,-0.0027080622967333,-0.18490643799305]],[[0.027167486026883,0.018921706825495,0.021116256713867],[-0.01096224039793,0.030811855569482,-0.032269388437271],[-0.025349598377943,-0.010051413439214,0.051141437143087]],[[0.12253157794476,0.016298497095704,0.0012334098573774],[-0.031398318707943,-0.074403986334801,-0.060033898800611],[-0.055772989988327,-0.049072630703449,-0.027960447594523]],[[0.10757823288441,0.081564240157604,-0.07327888160944],[0.061254493892193,0.10799720883369,-0.0089933956041932],[-0.15689647197723,-0.12415439635515,-0.10285274684429]],[[0.029643401503563,-0.058464247733355,-0.066474445164204],[0.097197942435741,-0.033519253134727,-0.072590075433254],[0.010640454478562,-0.012321693822742,0.12322744727135]],[[-0.042740192264318,-0.028324484825134,0.023820832371712],[-0.038330119103193,0.0076860897243023,-0.049033753573895],[-0.036477509886026,0.051383513957262,0.02558764256537]],[[0.067749835550785,0.067091196775436,0.072691164910793],[0.0038458090275526,-0.11081367731094,0.089512206614017],[-0.12543611228466,-0.15690161287785,0.1481621414423]],[[0.035965040326118,0.075380310416222,-0.17173846065998],[-0.010783057659864,-0.007292749825865,-0.093167200684547],[-0.0030447687022388,0.099967978894711,-0.16634848713875]],[[0.0072941635735333,-0.027431542053819,0.044721595942974],[-0.014339445158839,-0.022902235388756,-0.0080901933833957],[0.038270406424999,0.082928389310837,0.06018329039216]],[[-0.029223911464214,-0.052022915333509,0.12755516171455],[-0.021460892632604,0.037016354501247,0.16348513960838],[-0.16948911547661,-0.08221697807312,0.1508232653141]],[[-0.011832939460874,0.075368165969849,0.054244063794613],[-0.059782937169075,-0.019306616857648,-0.045038335025311],[-0.11309309303761,-0.022094907239079,-0.08064428716898]],[[-0.041013527661562,-0.091049589216709,-0.10518277436495],[0.018326105549932,-0.05999480932951,0.061263624578714],[0.039863329380751,0.060687746852636,0.052656095474958]],[[-0.057646788656712,-0.064030088484287,-0.0092727923765779],[-0.022999115288258,-0.023650892078876,0.00027299352223054],[0.088201723992825,0.088558234274387,0.0064738132059574]],[[-0.07762810587883,0.011233739554882,0.045086555182934],[0.028580151498318,-0.0052423877641559,0.08800033479929],[-0.077035166323185,0.037701860070229,-0.068176418542862]],[[0.12173437327147,0.08823898434639,0.15490981936455],[0.032659024000168,0.088653713464737,-0.068805322051048],[-0.029499081894755,-0.086335875093937,0.051003649830818]],[[0.0043646804988384,-0.037125263363123,0.03656717389822],[0.094507046043873,-0.065293483436108,-0.075886197388172],[0.0027950587682426,-0.013210262171924,0.089093163609505]],[[-0.14358180761337,-0.27969998121262,-0.056275557726622],[-0.021967986598611,-0.011909771710634,-0.21328413486481],[0.038746282458305,0.056271221488714,0.052355237305164]],[[0.037906050682068,0.066836059093475,0.092779070138931],[0.015828929841518,-0.10457966476679,-0.023174235597253],[-0.022164477035403,-0.12368098646402,-0.14156404137611]],[[0.041508983820677,0.034768808633089,-0.03844615444541],[0.11759386211634,-0.059631552547216,0.023085616528988],[0.032286349684,0.050773650407791,-0.053412918001413]],[[0.061829816550016,0.012092431075871,-0.027882551774383],[0.017188230529428,0.02639801800251,-0.11434453725815],[-0.048065651208162,0.0025865046773106,0.072378389537334]],[[0.044901434332132,0.045544981956482,0.063701525330544],[-0.053501710295677,0.085409298539162,0.016380105167627],[0.016043765470386,-0.043090745806694,-0.015914756804705]],[[-0.14489394426346,0.034058097749949,0.068277165293694],[-0.052908558398485,-0.063519202172756,-0.018682196736336],[-0.062876485288143,-0.15878322720528,-0.088852375745773]],[[0.016840869560838,0.017049301415682,0.040437929332256],[-0.030498068779707,0.028736066073179,-0.15209574997425],[-0.11949592828751,-0.16057033836842,0.0055239046923816]],[[0.011229697614908,0.12033584713936,-0.00016879226313904],[0.050153732299805,0.0071892095729709,-0.12608537077904],[0.041530873626471,0.1516115963459,0.028141926974058]],[[-0.0070453314110637,0.01344804931432,0.073693312704563],[-0.012777196243405,-0.03326815739274,-0.00047119837836362],[0.094319730997086,-0.029589436948299,-0.086710333824158]],[[0.0087748449295759,0.097428478300571,-0.075244002044201],[-0.0015805757138878,0.0033332393504679,0.041794624179602],[0.0023450737353414,-0.065570764243603,-0.0782161206007]],[[0.047939706593752,0.062394008040428,-0.044531561434269],[0.0031192728783935,-0.06306067854166,-0.014644352719188],[0.010175037197769,0.028269397094846,-0.033199194818735]],[[0.036838676780462,0.072998367249966,0.13134233653545],[0.070504926145077,-0.0080142896622419,0.025335246697068],[0.050457164645195,0.037141770124435,0.11943463236094]],[[-0.052808426320553,-0.11639469861984,0.041747029870749],[-0.10922422260046,0.09647873044014,0.085802637040615],[-0.10593724250793,-0.043486870825291,-0.043044652789831]],[[-0.046968165785074,-0.050458755344152,0.16292691230774],[-0.068288989365101,-0.060914646834135,-0.051214821636677],[-0.0071196020580828,0.0062545347027481,-0.12301599234343]],[[0.07078542560339,0.038784854114056,0.02677752263844],[-0.020693201571703,-0.051386870443821,0.03426280990243],[0.030784618109465,-0.12372139841318,-0.13985781371593]],[[0.021634073927999,-0.13369370996952,0.087057895958424],[-0.0068045067600906,-0.082018621265888,0.068542413413525],[-0.0079077249392867,-0.037056013941765,-0.019518457353115]],[[-0.11418210715055,-0.077955417335033,-0.0083820056170225],[-0.057289104908705,-0.10157527774572,-0.26837772130966],[0.079985201358795,0.022955676540732,0.078471809625626]],[[0.010291191749275,-0.026495505124331,0.02988045103848],[-0.015770651400089,0.099968627095222,0.056191872805357],[-0.0087593430653214,-0.063050180673599,-0.12522415816784]],[[-0.12902745604515,-0.13846731185913,0.1217445358634],[0.073077820241451,0.027642633765936,0.1229665055871],[0.018750628456473,-0.0024865171872079,0.22210165858269]],[[0.04948166757822,-0.024002458900213,-0.064334377646446],[-0.023793278262019,-0.046298962086439,-0.10164994746447],[0.044973824173212,-0.10916845500469,-0.01355252508074]],[[-0.10814915597439,-0.063429266214371,-0.08521281182766],[0.04296563565731,0.032673019915819,0.039676696062088],[-0.053934160619974,0.075520887970924,0.015058294869959]],[[0.066787771880627,-0.037600465118885,-0.10166984051466],[0.04546245932579,0.065845876932144,0.006901788059622],[0.059907678514719,-0.00042080273851752,0.090479627251625]],[[-0.018679911270738,-0.022214496508241,0.022359859198332],[-0.039554852992296,-0.075123868882656,-0.062958009541035],[0.032803546637297,0.0066217826679349,-0.11982486397028]],[[-0.039644945412874,0.0078572640195489,-0.14932218194008],[-0.03228971362114,0.0048340721987188,-0.079743422567844],[0.083989411592484,0.13219791650772,0.012636980973184]],[[0.0032856736797839,0.022432133555412,0.053231317549944],[0.01131849642843,-0.057972885668278,-0.029657343402505],[0.017700996249914,0.024469535797834,-0.02160282060504]],[[-0.030482217669487,-0.17572602629662,0.035338267683983],[-0.076597310602665,-0.07982113212347,-0.14573347568512],[0.04555893316865,0.12182097136974,0.10589122027159]],[[0.03489077091217,-0.020426573231816,0.042315796017647],[-0.030702279880643,0.026770368218422,-0.0091028185561299],[-0.071725077927113,0.037117928266525,0.077076949179173]],[[0.1398678123951,-0.032063368707895,-0.013105104677379],[0.025627756491303,0.010699152946472,0.0083796149119735],[0.0053469878621399,0.08542761951685,0.0044597126543522]],[[-0.14244571328163,0.06705841422081,-0.36218902468681],[0.057174418121576,0.035979192703962,0.10593591630459],[0.020346345379949,0.019170328974724,0.15425251424313]]],[[[-0.055071234703064,-0.11958946287632,-0.087600402534008],[0.0094543127343059,-0.08206033706665,-0.10598056763411],[-0.12248003482819,0.053191624581814,-0.02738799341023]],[[0.064270839095116,-0.031036986038089,0.090740285813808],[0.003833026625216,0.046638779342175,0.037029411643744],[0.072390250861645,0.20402036607265,0.099338248372078]],[[-0.17399138212204,-0.20766378939152,-0.049153245985508],[-0.1433751732111,-0.16718129813671,-0.25906151533127],[-0.10105583071709,-0.038013987243176,-0.089754424989223]],[[-0.13603563606739,-0.0058704423718154,-0.15379203855991],[-0.10595431178808,-0.1002551317215,0.068658411502838],[-0.12555289268494,-0.061108581721783,-0.13782925903797]],[[-0.038558263331652,0.022001652047038,0.065730184316635],[0.10610752552748,-0.087999150156975,-0.074584849178791],[0.0055097122676671,-0.08627637475729,-0.12879851460457]],[[0.030504364520311,-0.080715231597424,-0.072300463914871],[-0.045363746583462,-0.012981494888663,-0.039584774523973],[-0.10200028121471,-0.036368664354086,-0.036846928298473]],[[-0.1566920876503,-0.05201867595315,-0.078549705445766],[-0.07992846518755,0.030723476782441,-0.086401633918285],[-0.10273046046495,-0.18615891039371,-0.092546962201595]],[[0.11362940073013,0.10151083022356,-0.10267549753189],[-0.044603228569031,0.093011938035488,0.065340995788574],[0.077029548585415,0.059098780155182,0.13994298875332]],[[0.012083240784705,-0.007274214643985,-0.12487631291151],[-0.08120359480381,-0.10789688676596,-0.004387694876641],[-0.22462220489979,-0.21579803526402,-0.28573220968246]],[[-0.095510393381119,0.067717537283897,-0.052972421050072],[0.055789597332478,-0.15881051123142,-0.12649536132812],[-0.15010230243206,-0.10118266940117,0.08762563765049]],[[-0.10395877063274,-0.22528015077114,0.027224346995354],[-0.084337078034878,-0.013533881865442,0.00012686973786913],[0.05237615481019,-0.027960985898972,0.00016648705059197]],[[-0.12070842832327,-0.16935634613037,-0.019766060635448],[-0.20848444104195,-0.14397867023945,-0.055523537099361],[-0.021924553439021,-0.13431657850742,-0.1274665594101]],[[0.051662277430296,-0.15534637868404,-0.055556815117598],[-0.30029165744781,-0.20102663338184,-0.26692989468575],[-0.012429571710527,-0.10191372036934,-0.088416747748852]],[[-0.032836463302374,-0.01570743881166,-0.076087810099125],[-0.075753197073936,-0.11002795398235,-0.016757758334279],[-0.16654194891453,-0.055567137897015,0.087505973875523]],[[0.0026995404623449,0.099419929087162,0.055395394563675],[-0.17033270001411,-0.17377950251102,-0.10292629897594],[-0.085118725895882,-0.13770082592964,-0.11451322585344]],[[-0.046650588512421,-0.0037234392948449,-0.066966444253922],[-0.027106704190373,-0.066871672868729,0.011912986636162],[0.0093599939718843,-0.0010709065245464,-0.067338079214096]],[[0.035499628633261,-0.0030154443811625,0.12331717461348],[-0.012673615477979,0.0095799304544926,-0.010772281326354],[-0.0050996723584831,-0.18546481430531,-0.065026924014091]],[[-0.13228993117809,-0.24397724866867,-0.080847501754761],[-0.052801705896854,-0.022705901414156,-0.17274163663387],[0.064726009964943,-0.0075540686957538,0.0030306368134916]],[[0.01368850748986,-0.033817801624537,0.10364352911711],[-0.0668865442276,0.08668976277113,0.1740400493145],[-0.23984304070473,-0.1631580889225,-0.066906541585922]],[[-0.0055411700159311,0.080886386334896,0.11845202744007],[0.013955247588456,-0.01170158945024,0.19848170876503],[0.20696507394314,0.29489195346832,0.11678989976645]],[[0.033206574618816,0.030651871114969,-0.19011437892914],[0.11484096944332,0.066516511142254,-0.030382920056581],[0.10911414772272,-0.066714696586132,0.01541758608073]],[[0.0026060726959258,-0.044193927198648,-0.25585490465164],[0.0070726475678384,0.013505892828107,-0.00033499821438454],[-0.26135647296906,-0.28627562522888,-0.054749939590693]],[[-0.047284107655287,-0.067745395004749,0.11997590214014],[-0.14410081505775,0.038139160722494,0.050977900624275],[-0.17088596522808,0.0052818418480456,0.06418115645647]],[[-0.028700601309538,0.039944846183062,0.0028800123836845],[-0.23822394013405,-0.2926838696003,-0.23546198010445],[0.041118834167719,0.034490570425987,0.0081548411399126]],[[-0.066221378743649,0.00048829196020961,-0.0072181047871709],[-0.0073041724972427,0.063695803284645,-0.0572763197124],[-0.019764602184296,0.078016556799412,-0.10888046771288]],[[0.006969353184104,-0.31629553437233,0.0086641367524862],[-0.1051354855299,0.033054169267416,-0.10684958845377],[-0.25382342934608,-0.17642264068127,-0.014836950227618]],[[0.096318133175373,-0.085888236761093,0.024741938337684],[-0.042650561779737,0.024765223264694,-0.2002711892128],[-0.14598974585533,-0.071419224143028,-0.17721579968929]],[[0.088187158107758,-0.048499871045351,0.034599158912897],[0.020062688738108,-0.086862087249756,-0.084366530179977],[0.041579429060221,-0.083446323871613,0.14565686881542]],[[-0.025690719485283,-0.016032531857491,0.13934770226479],[-0.041174918413162,-0.047190587967634,0.0062868287786841],[-0.14118309319019,-0.091311194002628,-0.0728699862957]],[[-0.064884021878242,-0.067196704447269,0.072509586811066],[-0.05303118377924,0.078827135264874,-0.098027668893337],[-0.038439627736807,-0.2898376584053,-0.063567109405994]],[[-0.015066025778651,-0.029416916891932,0.080776192247868],[-0.0098105622455478,0.058956682682037,-0.11089143157005],[-0.037658505141735,0.050037857145071,0.042804718017578]],[[-0.051892153918743,0.073937632143497,0.075065292418003],[-0.11824107915163,-0.31504872441292,0.059225846081972],[0.19121567904949,-0.20893070101738,-0.21583074331284]],[[-0.067079678177834,-0.031314492225647,0.08111384510994],[-0.0086318608373404,0.075627155601978,0.044934429228306],[-0.10222575068474,-0.013262521475554,-0.12718139588833]],[[0.14870312809944,-0.23780880868435,-0.031052883714437],[-0.042887050658464,-0.17073853313923,0.099501341581345],[-0.1327838152647,0.089835457503796,-0.0065880226902664]],[[-0.07423447072506,-0.029369911178946,-0.25075197219849],[-0.071802228689194,0.044908758252859,-0.19825255870819],[-0.086889587342739,-0.13386029005051,-0.13686691224575]],[[-0.21026007831097,-0.24429389834404,-0.12270835042],[-0.13059183955193,-0.19761964678764,-0.18798907101154],[-0.16376554965973,-0.19580034911633,-0.17358992993832]],[[-0.085247978568077,-0.043445255607367,-0.10142239183187],[0.012531706131995,-0.087655439972878,-0.22086764872074],[0.019413724541664,-0.065916754305363,-0.15500167012215]],[[0.13592456281185,0.027941405773163,-0.10984261333942],[0.10339414328337,0.016426475718617,-0.033624392002821],[0.049566224217415,0.031710598617792,0.00012337754014879]],[[0.11918055266142,-0.003733713645488,-0.0054798582568765],[-0.16684757173061,-0.10160198807716,-0.074198484420776],[-0.087996989488602,0.21401287615299,0.13460326194763]],[[0.020383672788739,0.0037556062452495,0.10684843361378],[0.037275109440088,0.023673299700022,0.061989266425371],[0.0580680295825,-0.095915079116821,-0.021424507722259]],[[0.029967358335853,0.014709791168571,-0.018402732908726],[0.05145575478673,-0.1416884958744,-0.093941062688828],[-0.22493463754654,-0.038407620042562,-0.097733616828918]],[[0.03280245885253,-0.025784004479647,-0.095789432525635],[-0.030156711116433,0.065357752144337,-0.16676566004753],[-0.20089156925678,0.062060747295618,-0.02280473895371]],[[-0.007843398489058,-0.041670449078083,-0.065145619213581],[-0.17242729663849,0.079096257686615,-0.18674145638943],[-0.2529504597187,-0.086458995938301,-0.082201093435287]],[[-0.06858167052269,-0.073883570730686,0.022369695827365],[-0.071391403675079,-0.040380023419857,-0.076112031936646],[0.11131516098976,0.10819831490517,0.047059789299965]],[[-0.21321266889572,-0.13203972578049,-0.015513514168561],[-0.1269069314003,-0.27283760905266,-0.18909949064255],[-0.11715312302113,-0.17383921146393,-0.048765622079372]],[[-0.09214186668396,-0.012340236455202,0.033078990876675],[0.11722262203693,-0.086096905171871,-0.14743193984032],[0.13827735185623,-0.040197294205427,-0.075111344456673]],[[-0.17548196017742,-0.1677829772234,-0.043814152479172],[-0.027866397053003,0.041552405804396,-0.013403701595962],[0.02974671497941,-0.059772986918688,-0.15566053986549]],[[-0.016001179814339,0.001434167381376,-0.099317565560341],[-0.075631313025951,-0.12962780892849,0.19229388237],[-0.092517450451851,-0.015667738392949,-0.027424795553088]],[[-0.0023413207381964,-0.039394356310368,0.11346477270126],[-0.16629001498222,-0.045676797628403,-0.083490312099457],[0.048737112432718,-0.01519888266921,0.011896370910108]],[[-7.3855757364072e-05,-0.091501079499722,0.0081713376566768],[-0.014170880429447,-0.0064947293139994,-0.044001068919897],[-0.055956091731787,-0.00066414137836546,-0.083890050649643]],[[-0.076355367898941,-0.074628628790379,-0.14766244590282],[-0.16817313432693,-0.052637275308371,0.031145688146353],[-0.19392189383507,-0.10510596632957,0.02114175260067]],[[-0.13588987290859,-0.22364500164986,-0.0020303621422499],[-0.23249396681786,-0.14831537008286,-0.21987493336201],[0.0085937846451998,-0.028209820389748,-0.068197183310986]],[[-0.19991111755371,0.05275135114789,0.086256235837936],[0.040310967713594,0.10834635049105,0.091538950800896],[0.0017505708383396,-0.19866745173931,-0.15400299429893]],[[-0.15439550578594,-0.059625212103128,-0.015070976689458],[0.023075979202986,0.13469767570496,0.0083520980551839],[0.05378932505846,-0.092390507459641,0.21477279067039]],[[-0.070915125310421,-0.098247811198235,-0.14035715162754],[-0.44948142766953,-0.044938452541828,-0.13032950460911],[-0.18093985319138,-0.37834170460701,-0.29876345396042]],[[-0.021454989910126,-0.31997567415237,0.027663704007864],[0.080317467451096,-0.024086575955153,-0.37567508220673],[-0.074134334921837,-0.069621376693249,-0.063600331544876]],[[0.20949573814869,0.10570374131203,0.29205197095871],[0.14320442080498,0.26387456059456,0.2358013689518],[0.1540219783783,0.12178784608841,0.14383178949356]],[[-0.014969727955759,-0.23068453371525,-0.2145219296217],[-0.096127465367317,-0.13317477703094,-0.089698366820812],[-0.35094100236893,-0.1266897469759,0.076816692948341]],[[0.055836874991655,-0.082747161388397,-0.132768034935],[-0.047616560012102,-0.062929771840572,-0.021659811958671],[0.052126355469227,0.054256912320852,0.084331125020981]],[[0.12661492824554,-0.072897963225842,-0.21780148148537],[-0.142746925354,-0.14789654314518,-0.012534596957266],[-0.16839435696602,-0.14587710797787,-0.042445011436939]],[[-0.13540840148926,-0.057880956679583,-0.0054751923307776],[-0.036703050136566,-0.16889506578445,0.010573812760413],[0.062893807888031,-0.11292197555304,-0.035983715206385]],[[0.013847704045475,-0.042144764214754,0.055973332375288],[-0.032160542905331,0.067604824900627,-0.0055104126222432],[-0.21467716991901,0.006542488001287,0.076837368309498]],[[0.010699824430048,-0.13813060522079,-0.13688711822033],[0.1062299311161,0.0096361730247736,-0.1703375428915],[0.05123333632946,0.033301815390587,-0.14053848385811]],[[-0.23889683187008,-0.0042449729517102,-0.040425736457109],[-0.1777621358633,-0.14050175249577,0.031932655721903],[0.24382762610912,0.10871528834105,-0.03123951330781]]],[[[0.080632984638214,-0.055889997631311,0.091112896800041],[-0.11033330112696,-0.16935610771179,-0.17586386203766],[0.045909482985735,0.011207432486117,0.03286562487483]],[[0.026979569345713,0.036055359989405,0.029387848451734],[0.024915629997849,0.071997627615929,-0.004878627602011],[-0.028172357007861,-0.074457824230194,0.069443769752979]],[[-0.067622512578964,-0.1648678034544,0.010334158316255],[-0.24784979224205,-0.13515083491802,-0.016346791759133],[-0.085873804986477,0.14999257028103,-0.059886235743761]],[[-0.018149247393012,0.18783664703369,0.054185222834349],[0.084014475345612,0.019104585051537,0.0049470826052129],[0.056763477623463,-0.20692844688892,-0.17111521959305]],[[-0.096827454864979,-0.062623985111713,0.03702886775136],[-0.039906490594149,0.045907106250525,0.062896236777306],[-0.1555151194334,0.039343383163214,-0.07318726927042]],[[0.089780822396278,-0.018342759460211,-0.03301814571023],[0.007546950597316,-0.00025725795421749,0.028159394860268],[0.075385674834251,0.073954433202744,0.017163965851068]],[[0.023579102009535,-0.10769774764776,-0.043524701148272],[-0.039855733513832,0.10468924790621,-0.067082054913044],[0.1194200143218,-0.062705934047699,-0.12957106530666]],[[-0.024368267506361,0.071182727813721,0.067860342562199],[0.043102782219648,-0.0059675276279449,-0.023969246074557],[0.052568256855011,-0.048215053975582,-0.038387186825275]],[[-0.074023120105267,-0.043163742870092,0.084641180932522],[0.034352518618107,0.02361261472106,0.074326038360596],[-0.021722182631493,-0.041494980454445,-0.0065447078086436]],[[0.00080475042341277,-0.29290792346001,-0.13241119682789],[-0.094525530934334,0.036871176213026,-0.012932541780174],[0.039443425834179,0.230867177248,-0.029949590563774]],[[-0.030429610982537,-0.049513880163431,0.0038247215561569],[-0.024778893217444,0.069707252085209,0.055685635656118],[-0.027748061344028,-0.074959240853786,0.0044368193484843]],[[0.13098119199276,-0.044680114835501,-0.017750330269337],[0.053060814738274,-0.089729398488998,-0.053176369518042],[-0.23944322764874,-0.28418639302254,-0.0096107600256801]],[[-0.052449818700552,-0.096502654254436,-0.035850744694471],[0.020353948697448,0.10908328741789,0.026924762874842],[-0.097859151661396,-0.09627577662468,0.039160907268524]],[[-0.078439339995384,-0.21747733652592,0.038316126912832],[-0.014133222401142,0.059900458902121,0.054485689848661],[0.11707042902708,0.12077756971121,0.075719103217125]],[[0.023277834057808,0.09614310413599,-0.00040540701593272],[0.040587477385998,0.080165848135948,0.03338336572051],[0.058290004730225,-0.11696760356426,0.028368748724461]],[[0.038804367184639,-0.057456612586975,0.091149792075157],[-0.016882032155991,-0.095873609185219,0.032832071185112],[-0.037789080291986,-0.055091787129641,-0.035884987562895]],[[0.018311711028218,0.038817010819912,-0.023380445316434],[-0.00056634924840182,0.085654355585575,-0.034352522343397],[-0.071727357804775,0.013849632814527,0.10134806483984]],[[0.019058560952544,-0.02624224498868,0.017905909568071],[-0.071132153272629,-0.052327111363411,-0.007489756681025],[-0.13656491041183,0.10626430809498,0.033941235393286]],[[-0.068588458001614,-0.0206079762429,0.056454181671143],[0.06194269284606,0.05662576854229,0.048285942524672],[0.055157423019409,-0.093857645988464,-0.010580692440271]],[[0.022099081426859,0.084928154945374,0.015392129309475],[0.085862815380096,0.17178650200367,0.085233256220818],[-0.018365172669291,0.030772222205997,0.010074249468744]],[[0.023615533486009,0.004750844091177,-0.098464109003544],[-0.01252216566354,-0.11527352780104,0.064465321600437],[-0.0013339854776859,0.11919435858727,-0.010086514987051]],[[-0.17993070185184,0.026204628869891,-0.008469695225358],[-0.081017032265663,-0.035581581294537,0.073914892971516],[-0.026366615667939,-0.075620390474796,0.11054728925228]],[[-0.016469165682793,0.013000328093767,0.052772287279367],[-0.011689129285514,-0.060893688350916,0.10077553987503],[0.0094534112140536,-0.030515065416694,-0.037492629140615]],[[0.034223400056362,-0.089497655630112,-0.27304270863533],[0.041611146181822,-0.10033214092255,-0.0879782512784],[-0.005167949013412,-0.22536781430244,-0.10286131501198]],[[0.028709946200252,0.055471163243055,0.050741191953421],[-0.15852181613445,0.089287355542183,0.061205871403217],[-0.11675544083118,0.082435019314289,-0.11390180885792]],[[-0.1036317050457,-0.073232740163803,-0.0027281614020467],[0.009190509095788,0.12586216628551,-0.05090294033289],[0.010017665103078,-0.090826541185379,0.031287126243114]],[[-0.02547569014132,-0.012178971432149,-0.055318079888821],[-0.006646279245615,0.013161456212401,-0.060432732105255],[0.13787254691124,-0.072421789169312,0.098183140158653]],[[-0.076602086424828,0.051428146660328,-0.092713348567486],[0.053237590938807,-0.017326245084405,-0.059702515602112],[0.0081715760752559,0.080709010362625,0.1680633276701]],[[-0.0086147980764508,-0.11561784893274,-0.056987140327692],[0.032889701426029,0.059520456939936,0.017072603106499],[0.069207094609737,0.21092958748341,-0.19455575942993]],[[0.061037085950375,-0.035999592393637,-0.12968754768372],[-0.049978274852037,0.20683787763119,-0.023235339671373],[-0.006632077973336,-0.26172989606857,-0.058633457869291]],[[0.032571587711573,-0.13511180877686,-0.0025854026898742],[-0.051774919033051,-0.0608005002141,-0.006274017971009],[-0.064996428787708,-0.0093046789988875,0.0097872130572796]],[[-0.0098981829360127,0.072052918374538,0.11471212655306],[0.026184931397438,-0.070390649139881,-0.073351569473743],[0.047800790518522,0.067837975919247,-0.096523329615593]],[[-0.012991029769182,-0.031335286796093,-0.017179906368256],[0.074631035327911,0.052859012037516,0.037520322948694],[-0.059537183493376,-0.083573743700981,-0.078228294849396]],[[-0.044924430549145,0.0065902299247682,0.088849879801273],[-0.14545913040638,0.0012402331922203,-0.13683624565601],[0.01137319020927,-0.00085775292245671,-0.031011303886771]],[[-0.019119665026665,-0.14528019726276,0.0058999387547374],[-0.0013555876212195,0.10178680717945,-0.0040024719201028],[0.049942720681429,0.061250992119312,-0.030834294855595]],[[0.0384591370821,0.1898076236248,-0.058315824717283],[0.016560409218073,-0.23094652593136,-0.020842479541898],[-0.035736560821533,-0.0015451950021088,-0.13730317354202]],[[-0.052648074924946,-0.183978125453,-0.070268332958221],[0.0091245518997312,-0.040075067430735,-0.085946872830391],[0.028745748102665,-0.0083788698539138,0.056769248098135]],[[-0.0048851738683879,-0.0091678537428379,-0.081815525889397],[0.083130836486816,-0.053226422518492,0.058655634522438],[-0.017694851383567,0.036405827850103,0.084693886339664]],[[-0.050959274172783,-0.11906304955482,-0.0061340401880443],[0.06004025042057,-0.026478048413992,-0.060798462480307],[0.051819823682308,-0.057061154395342,0.0051416489295661]],[[-0.023626374080777,0.021499054506421,0.13182488083839],[-0.16062796115875,0.028192365542054,0.044269789010286],[-0.033061761409044,-0.052982814610004,0.04506728425622]],[[-0.013656372204423,-0.14900919795036,0.026179036125541],[0.084836110472679,-0.068182833492756,0.0036407134030014],[0.037257242947817,0.05043737962842,0.07534221559763]],[[-0.028473168611526,-0.04260215908289,-0.013666209764779],[-0.096106216311455,-0.02228775806725,0.010068903677166],[0.034090030938387,0.033191204071045,0.022630149498582]],[[0.054751191288233,-0.19054165482521,-0.068536661565304],[-0.01304333191365,0.070636883378029,-0.18604366481304],[0.081834509968758,0.056429080665112,0.20103761553764]],[[0.032970156520605,0.0013020854676142,-0.059339206665754],[0.023322509601712,-0.015827879309654,-0.09687102586031],[0.025297917425632,0.049419540911913,0.049160547554493]],[[-0.17929866909981,-0.083875209093094,0.0059669488109648],[-0.046036966145039,0.094757661223412,-0.039142083376646],[0.094542890787125,0.095744222402573,0.034365747123957]],[[-0.016041051596403,-0.12021744996309,-0.036122739315033],[0.013487013056874,0.093083500862122,-0.0055754384957254],[0.10099402815104,-0.076955050230026,-0.10617408901453]],[[-0.042387254536152,0.067748673260212,-0.016574740409851],[0.1438128054142,0.055196449160576,-0.03299817815423],[0.093230359256268,-0.021325338631868,0.013390944339335]],[[-0.039868779480457,0.06899256259203,-0.0957395657897],[-0.034304637461901,0.12248345464468,-0.077827088534832],[-0.048542108386755,0.10182749480009,-0.10239285230637]],[[0.017816405743361,-0.023454351350665,-0.096011683344841],[0.11100524663925,0.15953397750854,-0.0020897327922285],[0.030432313680649,0.0031906689982861,-0.023289225995541]],[[-0.092621378600597,0.039712373167276,0.028607903048396],[0.020210249349475,-0.0060251718387008,0.13335241377354],[0.098623409867287,-0.14219796657562,-0.18923524022102]],[[-0.16559563577175,-0.067800104618073,-0.03604656085372],[-0.0020955037325621,-0.17409357428551,0.05634468048811],[0.029613889753819,0.13532017171383,-0.01083495747298]],[[0.016966953873634,0.065945968031883,-0.04855103418231],[0.0029001014772803,0.040260028094053,-0.043610859662294],[0.043600797653198,-0.00045654809218831,-0.09003896266222]],[[-0.019550466910005,-0.070534884929657,-0.089115120470524],[-0.0017090750625357,-0.006471314933151,0.020683560520411],[-0.028310434892774,-0.12324143201113,0.080101281404495]],[[0.11045797914267,0.13973312079906,0.052161354571581],[-0.0063456520438194,-0.019968677312136,-0.047800552099943],[0.037248183041811,0.095679685473442,-0.02730518579483]],[[-0.044754728674889,0.14781767129898,0.028943726792932],[0.1169958114624,0.049477577209473,0.019086493179202],[0.05288004130125,-0.10577385872602,-0.05092715844512]],[[0.063495196402073,0.021150441840291,0.013049265369773],[-0.046160195022821,0.00098193611484021,-0.11138369143009],[0.011510439217091,-0.071058765053749,0.042573407292366]],[[0.091009944677353,0.10297460108995,0.033956207334995],[0.094870030879974,0.093297697603703,-0.014458374120295],[-0.1656519472599,0.0045606237836182,-0.038998644798994]],[[0.076892867684364,-0.11911717802286,-0.16788643598557],[0.073252648115158,0.12551064789295,-0.11591950803995],[0.064783930778503,-0.011118815280497,0.11172193288803]],[[-0.0099763087928295,0.013005734421313,0.016589134931564],[-0.1477697044611,-0.020832188427448,-0.033145561814308],[-0.0043494035489857,0.1413082331419,0.017564885318279]],[[-0.075749188661575,0.013051607646048,-0.011041199788451],[0.0025918995961547,0.15538586676121,-0.068824782967567],[0.006565994117409,0.064371541142464,-0.030788622796535]],[[0.0074686468578875,-0.087892457842827,-0.0037304570432752],[-0.0055295331403613,0.052908308804035,0.0048205396160483],[0.097383737564087,-0.077768564224243,-0.033977478742599]],[[0.06081360206008,-0.044170010834932,0.0092080757021904],[-0.02302148938179,0.091923661530018,0.097162529826164],[0.095977202057838,-0.05979074165225,-0.048756808042526]],[[-0.019392255693674,0.030237348750234,-0.071010649204254],[0.01848298124969,-0.026548929512501,-0.11846239119768],[-0.07767815887928,-0.012864235788584,-0.057960610836744]],[[0.05332400649786,0.11826144903898,0.064418725669384],[-0.056034367531538,-0.025829235091805,-0.069532632827759],[-0.09843859821558,0.0057692704722285,-0.024438677355647]]],[[[-0.1144113317132,0.056805267930031,-0.044930849224329],[0.17932911217213,-0.013272331096232,0.066471084952354],[0.077857732772827,-0.021615162491798,0.0058207586407661]],[[-0.010448770597577,-0.041009016335011,0.038600135594606],[0.027617454528809,0.018664883449674,-0.017383839935064],[-0.0021568026859313,-0.16005918383598,0.00059038418112323]],[[-0.0965905636549,0.013615656644106,-0.026257043704391],[-0.13406264781952,-0.06944365054369,-0.078234523534775],[0.12797698378563,0.023660689592361,0.040338162332773]],[[0.09037184715271,-0.038051672279835,-0.077110514044762],[0.063004143536091,0.092633053660393,0.10708279907703],[-0.21277935802937,-0.091621845960617,0.053412333130836]],[[-0.041899405419827,0.018076891079545,-0.038198947906494],[-0.073253929615021,0.12058383226395,0.082013018429279],[-0.093001745641232,-0.044030554592609,0.017147013917565]],[[-0.12528930604458,-0.14829801023006,-0.074184492230415],[0.1201426461339,0.19908583164215,0.0037922172341496],[-0.059546113014221,0.050378933548927,0.071282751858234]],[[-0.034622363746166,-0.059253934770823,0.037603333592415],[-0.12022989243269,0.053260542452335,0.086352542042732],[0.0091293454170227,-0.097286343574524,0.033073104918003]],[[0.011081048287451,0.042868047952652,-0.057136218994856],[-0.011761576868594,-0.039647147059441,0.07503005117178],[-0.055464874953032,-0.0454490929842,0.079927623271942]],[[-0.09273673593998,0.024785697460175,0.011556770652533],[0.027830816805363,-0.011757356114686,-0.037410337477922],[0.066211692988873,0.0048084552399814,0.01400669850409]],[[0.0025646460708231,-0.097615242004395,-0.086247228085995],[-0.050087876617908,0.0035050134174526,0.019357116892934],[0.0020830028224736,0.10775650292635,-0.054538987576962]],[[-0.085005886852741,-0.11326583474874,0.049331489950418],[0.016516342759132,-0.063324972987175,-0.053611628711224],[0.14828883111477,0.088390722870827,0.034257389605045]],[[0.083094358444214,0.1303378790617,0.13997969031334],[-0.21357044577599,-0.012734485790133,0.056757621467113],[-0.077895827591419,-0.16221126914024,-0.0017766219098121]],[[-0.2693952023983,-0.20585736632347,-0.045793991535902],[0.1908672451973,-0.027571633458138,-0.023795695975423],[0.069604523479939,0.11174160987139,-0.073359131813049]],[[-0.054281584918499,-0.013022525236011,0.034944340586662],[0.035805597901344,-0.026238024234772,-0.029743591323495],[-0.045523904263973,0.036688823252916,0.017618846148252]],[[-0.10407550632954,-0.093542724847794,0.0024205413646996],[0.10298224538565,0.072096936404705,-0.026520691812038],[-0.05085602030158,-0.03902542963624,0.14101202785969]],[[-0.10531669855118,-0.057887632399797,-0.057094298303127],[0.042423788458109,0.042498011142015,-0.0040067839436233],[-0.022586844861507,-0.036633014678955,0.11587332189083]],[[0.10103861242533,-0.15327496826649,-0.11618932336569],[0.083317674696445,0.097450204193592,-0.11034333705902],[-0.049953419715166,-0.0061757047660649,0.1201089695096]],[[-0.093600541353226,-0.14112883806229,0.02264741808176],[-0.10228382050991,-0.00011666265345411,-0.12017563730478],[0.25998130440712,0.10271482914686,0.017673412337899]],[[0.025965051725507,-0.047624927014112,-0.093790777027607],[0.14950884878635,-0.0011076212394983,-0.10022351890802],[-0.011444563046098,0.12529557943344,0.06172439455986]],[[-0.043925195932388,0.025393662974238,0.082300178706646],[-0.026146365329623,0.10547246783972,0.11812504380941],[-0.088615946471691,0.020581945776939,-0.029537834227085]],[[-0.020788978785276,-0.033618282526731,-0.061449687927961],[-0.005001422483474,-0.0014051051111892,0.0019967139232904],[0.011584575287998,0.011270819231868,0.054777633398771]],[[0.02507321536541,0.0024341105017811,-0.18722389638424],[0.032365933060646,0.064470931887627,0.049205139279366],[-0.023000456392765,0.00030014506774023,0.062205594033003]],[[0.012772462330759,-0.077463805675507,-0.21470472216606],[0.094635970890522,0.13783273100853,0.0018473850795999],[-0.083618775010109,0.20173981785774,0.040754336863756]],[[-0.210125669837,0.029254656285048,0.086815267801285],[-0.0021588066592813,-0.078804582357407,-0.1965239495039],[-0.021409733220935,-0.1348140835762,-0.12650300562382]],[[0.069196529686451,-0.013280430808663,-0.014633836224675],[0.0051418114453554,0.1428319811821,-0.026543490588665],[-0.021706173196435,-0.0085844043642282,-0.067914836108685]],[[-0.13664820790291,-0.057537317276001,0.0050037810578942],[0.0074606793932617,0.015200906433165,-0.16938796639442],[0.12640680372715,0.050110310316086,0.029889855533838]],[[0.15029184520245,0.022577563300729,0.067630298435688],[-0.024204200133681,0.075762234628201,0.012414668686688],[-0.22453057765961,-0.06671142578125,-0.038164850324392]],[[0.10213669389486,-0.0075855278410017,0.011873842217028],[0.039011891931295,0.014100943692029,-0.063520543277264],[-0.1706333309412,-0.10855438560247,0.02295109257102]],[[-0.0043854820542037,0.029223918914795,-0.11217611283064],[-0.029377760365605,-0.044300593435764,-0.0031886990182102],[0.033325359225273,0.15845875442028,0.042830564081669]],[[0.011460801586509,0.034840457141399,-0.04976412281394],[0.077288933098316,0.01592992991209,-0.025439038872719],[-0.066083110868931,0.048243544995785,-0.049629218876362]],[[0.010092074982822,-0.022476878017187,-0.028400918468833],[0.11955036222935,-0.032231226563454,-0.043639369308949],[-0.059078320860863,-0.075414516031742,0.10072740912437]],[[0.0043202266097069,0.015601449646056,0.24234829843044],[-0.025808803737164,-0.14309483766556,-0.088527768850327],[-0.1560682207346,-0.11526305228472,0.082965821027756]],[[-0.044500607997179,-0.030634058639407,-0.047783777117729],[0.11143270879984,0.033792395144701,-0.048463188111782],[0.019497571513057,0.19582018256187,0.0027293507009745]],[[-0.012361842207611,0.037731427699327,0.069082200527191],[0.034110702574253,0.030207596719265,-0.026740906760097],[0.021920524537563,0.028854768723249,-0.030194154009223]],[[0.086048543453217,-0.017157819122076,-0.058170173317194],[0.24332110583782,0.054161597043276,-0.089295998215675],[-0.0044821240007877,0.023643761873245,0.090120017528534]],[[0.082158856093884,0.10155293345451,0.10655792057514],[-0.19647558033466,0.055901676416397,0.12970876693726],[-0.098071783781052,-0.2514474093914,-0.10302197933197]],[[-0.063684023916721,0.051116026937962,0.12604382634163],[-0.032687190920115,-0.071019262075424,-0.054279327392578],[0.059234995394945,-0.01479457039386,-0.015115071088076]],[[-0.064300991594791,-0.0049600903876126,0.011157280765474],[0.0080852555111051,0.029364405199885,-0.017531549558043],[-0.084827199578285,0.0076000848785043,-0.039128705859184]],[[-0.014844925142825,-0.036563325673342,0.011600520461798],[-0.17773473262787,0.010716082528234,-0.011396808549762],[-0.071845680475235,-0.018366783857346,0.019625071436167]],[[0.15503463149071,-0.033028047531843,0.013895764946938],[-0.027719991281629,0.045136064291,0.045938689261675],[0.094233132898808,-0.057134985923767,0.076844304800034]],[[0.098302133381367,0.035083048045635,0.054007526487112],[-0.024327699095011,-0.047046579420567,0.043945848941803],[-0.052723217755556,0.074682019650936,-0.051535155624151]],[[0.004449300467968,0.041288372129202,0.018856478855014],[-0.024805054068565,0.11949069052935,0.04937681928277],[0.071356609463692,-0.099934779107571,0.049446374177933]],[[-0.026731276884675,-0.033103596419096,0.023087538778782],[-0.0033515410032123,-0.023430032655597,-0.017382884398103],[-0.028856761753559,0.13529953360558,0.072764046490192]],[[0.12550437450409,-0.008905709721148,0.0076067699119449],[-0.10106514394283,0.050446141511202,0.019857414066792],[-0.065535247325897,0.0081710750237107,-0.036342483013868]],[[-0.09611052274704,-0.049094948917627,-0.10795059800148],[-0.06506522744894,0.044227585196495,-0.045493442565203],[0.015842318534851,-0.056775368750095,0.065123409032822]],[[-0.29399499297142,0.017914395779371,0.070393368601799],[-0.22146262228489,-0.16820421814919,0.045473821461201],[0.030780663713813,0.16175985336304,0.11526488512754]],[[0.075264655053616,0.048437397927046,-0.0037745982408524],[0.093173742294312,0.11208757013083,0.068143360316753],[-0.19964879751205,-0.02913767658174,-0.050440229475498]],[[0.026825932785869,0.083183966577053,-0.017180973663926],[0.029831631109118,-0.016772417351604,0.10597262531519],[-0.19339735805988,-0.086089387536049,0.010125721804798]],[[0.091375969350338,0.022226044908166,0.12077713757753],[0.11155416071415,-0.078213199973106,-0.066659606993198],[-0.047168061137199,0.013560830615461,-0.022596644237638]],[[-0.032948583364487,0.0043469169177115,0.013013809919357],[0.10789701342583,-0.03483746573329,-0.020057247951627],[0.084526561200619,0.013679603114724,-0.075008869171143]],[[0.1156265065074,0.091737248003483,-0.080092459917068],[0.099811658263206,-0.1219776943326,-0.05312967300415],[-0.028456442058086,-0.082328997552395,-0.017307342961431]],[[0.030401680618525,-0.0026973821222782,-0.080033965408802],[-0.15159270167351,0.19818715751171,0.12344335019588],[-0.072181656956673,-0.30038911104202,-0.096523962914944]],[[-0.019645299762487,0.053076781332493,-0.071851171553135],[-0.014314166270196,-0.0039368364959955,-0.068289890885353],[0.13909040391445,-0.045052491128445,0.095524482429028]],[[0.028902368620038,-0.044140566140413,-0.061421923339367],[-0.072527356445789,-0.044692657887936,-0.13522627949715],[0.11479541659355,0.071753054857254,0.15722893178463]],[[0.07572740316391,0.0021313214674592,-0.10579478740692],[-0.12206272780895,-0.077561624348164,0.035771828144789],[0.026658838614821,-0.011992094106972,-0.0049287979491055]],[[0.0087845614179969,0.034022804349661,0.0061033740639687],[0.00078613619552925,-0.16032256186008,-0.013024172745645],[-0.052497040480375,-0.079680480062962,0.023494333028793]],[[0.075867548584938,0.084926642477512,0.16333808004856],[-0.14876720309258,-0.026975993067026,-0.005606540478766],[-0.0030079658608884,0.10765035450459,-0.076697461307049]],[[-0.071590676903725,-0.045981146395206,-0.11515935510397],[0.063585378229618,-0.04373412579298,-0.0015549977542832],[-0.18889750540257,0.21304892003536,0.020159242674708]],[[0.10493259131908,-0.0076957023702562,-0.00095254968618974],[-0.092219159007072,-0.091302379965782,0.029586296528578],[0.0065971044823527,0.039095047861338,0.083666376769543]],[[-0.003610767191276,-0.072537772357464,-0.085852295160294],[0.065181382000446,-0.10466591268778,0.1262828707695],[0.12163538485765,0.035840008407831,0.16592091321945]],[[-0.09726770222187,0.0018616344314069,-0.19593745470047],[0.044578637927771,0.042470071464777,0.0099663278087974],[0.07152895629406,-0.096826359629631,0.073457598686218]],[[0.069236479699612,-0.071465007960796,0.044562745839357],[-0.034958962351084,-0.089597575366497,-0.1541163623333],[-0.0041568856686354,0.01019312441349,0.014331039041281]],[[0.018348801881075,0.12556183338165,-0.0049488958902657],[-0.08278564363718,0.0054776002652943,-0.036387454718351],[0.073239117860794,0.041704703122377,-0.14151902496815]],[[0.026018446311355,0.103257201612,0.24446748197079],[-0.037040114402771,-0.069203235208988,-0.048192471265793],[-0.048414897173643,-0.12493385374546,-0.090250447392464]]],[[[0.0092700244858861,0.11192125827074,-0.0046319584362209],[0.033887300640345,-0.049137279391289,-0.066344849765301],[-0.043597050011158,0.067572295665741,-0.082935459911823]],[[0.0074322801083326,0.011544962413609,0.027512596920133],[-0.1465310305357,0.060348555445671,0.083881802856922],[-0.040460310876369,-0.034935038536787,-0.035946246236563]],[[-0.003498932113871,-0.0056053036823869,0.023124327883124],[-0.019828546792269,-0.044611521065235,-0.032677941024303],[-0.080269083380699,0.0038550177123398,0.029608841985464]],[[0.11203812807798,-0.097510151565075,0.0011685424251482],[-0.03501982986927,-0.0082804188132286,-0.04438903927803],[-0.04096595197916,0.0030176760628819,0.01879271492362]],[[-0.040875282138586,-0.06304319947958,0.019713826477528],[0.018421348184347,-0.075975127518177,0.04095558822155],[-0.0065882550552487,0.011481202207506,0.03383719176054]],[[-0.024312742054462,-0.06101256236434,-0.013793688267469],[-0.0095833921805024,-0.098013818264008,-0.018241276964545],[0.028736487030983,0.0039745112881064,0.0037161586806178]],[[-0.015116087161005,-0.053049698472023,-0.013616661541164],[-0.018613593652844,0.051417712122202,-0.14269225299358],[0.0076983193866909,0.07700864225626,-0.060979709029198]],[[-0.0025005475617945,-0.048738304525614,0.0093007711693645],[0.03369115665555,-0.081365443766117,0.049954619258642],[-0.074639938771725,-0.014834818430245,0.11463990807533]],[[0.048457186669111,0.061236571520567,0.031141420826316],[-0.064562492072582,-0.077979169785976,0.085610099136829],[-0.0094515755772591,-0.053198039531708,-0.0020083587151021]],[[0.064653851091862,0.068418733775616,-0.042760424315929],[-0.1161829829216,0.0071073384024203,-0.082178443670273],[-0.0061103873886168,0.020600844174623,0.012765442021191]],[[-0.059975899755955,0.018647709861398,0.10973946750164],[0.029673896729946,0.053617928177118,-0.017436929047108],[-0.039995774626732,-0.034801978617907,-0.13637465238571]],[[-0.00167433579918,-0.026842344552279,-0.039091892540455],[-0.073998980224133,-0.071528151631355,-0.12414997071028],[-0.022938789799809,0.13019190728664,0.031529165804386]],[[-0.11664183437824,0.025560528039932,0.046378049999475],[0.045475095510483,-0.14105942845345,0.067237727344036],[0.017846366390586,0.019792323932052,-0.049255672842264]],[[0.026538675650954,-0.0072036688216031,-0.034523542970419],[-0.056849241256714,0.049002181738615,0.0082170991227031],[-0.022088577970862,-0.017747938632965,-0.025922425091267]],[[-0.032930035144091,-0.035584058612585,-0.0079608419910073],[-0.010700859129429,-0.018173035234213,-0.17643940448761],[-0.085595339536667,0.022381905466318,-0.031118361279368]],[[0.070550918579102,0.06541284173727,0.0074289008043706],[-0.015682309865952,-0.053496267646551,-0.079576723277569],[0.017453880980611,-0.039804469794035,0.079155772924423]],[[0.10935097187757,-0.00083132134750485,-0.061543010175228],[-0.088553965091705,-0.0090986946597695,-0.039291776716709],[0.029371526092291,0.036895278841257,0.018697267398238]],[[-0.046715579926968,-0.064723446965218,0.17777371406555],[-0.083277083933353,-0.030825361609459,0.09708821028471],[0.082856886088848,-0.11439637094736,-0.10943092405796]],[[0.037520419806242,-0.063775628805161,0.00698002288118],[0.02942349947989,-0.028979947790504,-0.0037855892442167],[-0.0023767550010234,-0.068467378616333,-0.0038928806316108]],[[-0.018811162561178,-0.031023370102048,0.046619970351458],[0.068679176270962,0.078245021402836,-0.10061963647604],[-0.042635124176741,0.029454696923494,0.047770112752914]],[[0.017145676538348,0.042189467698336,-0.037310883402824],[-0.028755458071828,-0.08143226057291,0.0030374499037862],[-0.031361568719149,0.071343928575516,-0.037884790450335]],[[-0.00066034431802109,-0.061892051249743,0.011209997348487],[0.051808822900057,-0.060187980532646,0.074760131537914],[0.028406301513314,-0.010390046052635,-0.0003602389479056]],[[-0.060420639812946,0.0081225410103798,0.14380072057247],[-0.058312129229307,0.061067622154951,0.093334756791592],[-0.045943628996611,-0.052805591374636,0.038661804050207]],[[-0.072522297501564,0.11073686927557,0.048725187778473],[0.079976744949818,-0.094650372862816,0.020808167755604],[0.039883423596621,0.097616694867611,-0.032328523695469]],[[0.01191043201834,0.032107073813677,-0.029879570007324],[0.041543781757355,-0.0465296395123,0.14051800966263],[-0.028140790760517,-0.0017754520522431,-0.016581552103162]],[[0.053750518709421,-0.045965492725372,0.17839948832989],[-0.13073402643204,-0.25780010223389,0.051839169114828],[0.043493121862411,0.023745698854327,-0.014524900354445]],[[-0.020042806863785,-0.0026008316781372,-0.055305231362581],[0.0046149492263794,0.018384205177426,-0.083684846758842],[0.013765458017588,-0.050876244902611,0.053503643721342]],[[-0.096032798290253,-0.034593444317579,-0.038771953433752],[-0.0019198179943487,-0.020913681015372,0.02254987321794],[0.0099757481366396,-0.10827804356813,0.024997774511576]],[[0.078701883554459,0.04321776330471,-0.055616810917854],[-0.016362980008125,-0.06678444892168,0.059882555156946],[-0.051079127937555,-0.13301520049572,-0.045065548270941]],[[-0.013245667330921,-0.055322516709566,0.038099687546492],[-0.016393216326833,-0.0074054840952158,0.075361512601376],[0.044355407357216,-0.010233273729682,-0.10159099847078]],[[-0.017925702035427,0.052173051983118,0.0088969599455595],[-0.0498604811728,0.025887701660395,0.083722077310085],[0.13923588395119,0.082710824906826,-0.085284799337387]],[[-0.07051882147789,0.034244909882545,-0.057188153266907],[-0.0055855149403214,-0.10116450488567,-0.041829202324152],[-0.044789638370275,0.047677237540483,-0.058830328285694]],[[0.016786908730865,-0.046080444008112,0.0033123043831438],[0.015575074590743,-0.030024705454707,0.14002265036106],[0.032852746546268,0.032506033778191,-0.017421526834369]],[[0.0014934111386538,-0.16736999154091,-0.042926695197821],[-0.074498891830444,-0.015304482541978,-0.12357919663191],[-0.09647610783577,0.032049939036369,0.00086066796211526]],[[-0.053291130810976,-0.053284134715796,-0.076134063303471],[-0.052710339426994,0.031142871826887,0.087121516466141],[0.055786717683077,-0.0062521006911993,-0.051584970206022]],[[0.06912299990654,-0.049203179776669,-0.11265372484922],[-0.073085702955723,0.06653868407011,0.0331243686378],[-0.078804388642311,-0.13149544596672,-0.0014596674591303]],[[0.066992774605751,0.0076920781284571,-0.032095927745104],[0.062768988311291,-0.042887397110462,0.0072730579413474],[0.025118563324213,-0.030024532228708,0.01998633518815]],[[-0.18124122917652,0.028653806075454,0.12111721932888],[0.030986171215773,-0.05112536624074,-0.14821441471577],[0.07060033082962,-0.057083684951067,0.094514936208725]],[[0.059954229742289,0.0038651223294437,0.049574878066778],[0.075100883841515,-0.036495961248875,0.067575216293335],[-0.08143874257803,-0.0099974172189832,-0.0096022486686707]],[[-0.022172670811415,0.041116286069155,-0.019399259239435],[-0.044875267893076,0.055937271565199,0.10037185996771],[-0.035150144249201,0.044287521392107,-0.018270883709192]],[[0.074534639716148,0.033780157566071,0.018205342814326],[-0.10991160571575,-0.098063565790653,-0.014396142214537],[0.12151715159416,-0.075829796493053,-0.10271672159433]],[[0.008191192522645,0.0084192017093301,-0.010285058058798],[0.043871194124222,0.054633725434542,0.018832443282008],[0.092244736850262,-0.16289576888084,0.031722109764814]],[[-0.040478747338057,-0.037200160324574,0.023039462044835],[0.004022151697427,0.048539489507675,-0.022256337106228],[0.06761546432972,-0.058609191328287,-0.11202649772167]],[[-0.065830267965794,-0.033842273056507,-0.064833223819733],[0.081951469182968,0.028635989874601,-0.021143367514014],[0.084117949008942,0.035804811865091,-0.03272258117795]],[[-0.077277593314648,-0.00070898688863963,0.032217659056187],[0.088022172451019,-0.037933260202408,-0.0087600769475102],[0.0232272464782,0.0058462331071496,-0.019260436296463]],[[-0.066879943013191,0.10368787497282,0.086240850389004],[0.013617028482258,0.0081872241571546,-0.056716550141573],[-0.013240478001535,-0.026578718796372,-0.05430069565773]],[[0.00096151686739177,-0.06925543397665,-0.087635464966297],[0.0018626492237672,0.1760445535183,0.047653872519732],[0.0070770857855678,-0.11602418124676,0.018691623583436]],[[-0.08243565261364,0.060570366680622,-0.048101227730513],[0.099433250725269,0.020480580627918,-0.01461795438081],[-0.037690937519073,0.080498591065407,0.0016735306708142]],[[-0.0056267050094903,-0.049430884420872,0.043287608772516],[-5.0141996325692e-05,0.094161070883274,0.070221200585365],[0.0080638127401471,0.05154337733984,-0.042543072253466]],[[-0.033232968300581,0.075162373483181,0.019949059933424],[-0.046544317156076,-0.053767185658216,-0.087856769561768],[0.035687763243914,0.081167541444302,0.042173344641924]],[[0.029164008796215,0.032437726855278,0.024604953825474],[-0.021167811006308,-0.0074367355555296,-0.017127025872469],[0.050174899399281,-0.062190264463425,-0.0074624083936214]],[[0.054368436336517,-0.03018618747592,2.0115163351875e-05],[-0.026999669149518,0.002227233024314,-0.045391913503408],[0.021344680339098,0.073248267173767,-0.020050385966897]],[[-0.0082060769200325,0.0030953919049352,-0.062023919075727],[-0.058586072176695,-0.051446538418531,-0.044170621782541],[-0.021424839273095,0.099440157413483,0.0089339856058359]],[[-0.065553039312363,-0.076684936881065,0.037275578826666],[-0.016753537580371,-0.027793385088444,0.11743702739477],[0.015270872972906,0.0003145424707327,0.17426778376102]],[[-0.0393405854702,0.015314591117203,-0.030861001461744],[0.020794047042727,-0.12333767861128,0.04955268651247],[0.064647726714611,-0.14889650046825,-0.075166873633862]],[[0.069198749959469,-0.018776830285788,0.018317075446248],[0.0065271444618702,0.089265123009682,-0.15460872650146],[-0.029638214036822,-0.015600838698447,0.011093253269792]],[[-0.071749828755856,0.14753311872482,0.086452223360538],[0.10016749054193,0.0063123190775514,0.12110722064972],[0.013579144142568,-0.031487163156271,-0.12073089182377]],[[-0.080929823219776,-0.0016227485612035,0.012649027630687],[-0.1362311989069,-0.0038000210188329,-0.051662970334291],[0.088893808424473,-0.22382022440434,0.11518008261919]],[[0.0096463821828365,-0.065641149878502,0.056709736585617],[0.1557631790638,-0.041351892054081,-0.041558790951967],[-0.0056657800450921,-0.0062027536332607,0.01213600486517]],[[-0.070190906524658,-0.084234066307545,0.0028733985964209],[-0.040841199457645,-0.040305607020855,0.028841966763139],[0.075823739171028,0.050360426306725,-0.12718142569065]],[[0.05916066840291,0.067508175969124,-0.039704900234938],[-0.069213576614857,0.061211325228214,0.05432541295886],[-0.0071598086506128,0.11351927369833,0.035096257925034]],[[-0.098321445286274,-0.040155343711376,0.082586906850338],[-0.0054668253287673,0.0016413427656516,-0.062750443816185],[-0.008789973333478,0.030281854793429,-0.038519900292158]],[[0.18817909061909,0.13444702327251,-0.10545113682747],[0.028162308037281,0.040147017687559,-0.0055548404343426],[0.033208601176739,-0.11295215785503,-0.097938776016235]],[[-0.096365690231323,0.0061390586197376,-0.087718725204468],[0.0056308191269636,0.080586545169353,0.043351821601391],[0.0224047023803,-0.057650934904814,0.058127470314503]]],[[[0.078599460422993,-0.018046595156193,0.0074311136268079],[-0.066872417926788,-0.022087287157774,0.092464663088322],[-0.07154742628336,0.048966370522976,0.048163641244173]],[[-0.11532049626112,-0.081274688243866,-0.003803433617577],[-0.076157107949257,0.018912749364972,0.095206648111343],[-0.098818354308605,0.020670237019658,0.081242181360722]],[[-0.14511512219906,0.059651877731085,-0.0098087191581726],[0.072447054088116,0.086774803698063,0.0065795057453215],[-0.084215365350246,-0.063937947154045,0.013635519891977]],[[-0.13602276146412,-0.053366526961327,-0.022190511226654],[-0.093765996396542,0.12218816578388,0.07029065489769],[-0.074955470860004,0.027405461296439,0.011029883287847]],[[0.0010056960163638,0.004682928789407,-0.031507175415754],[0.10837189108133,-0.016310196369886,-0.066828094422817],[0.023646548390388,-0.018678659573197,0.026518540456891]],[[-0.081137038767338,-0.01869966648519,0.019895013421774],[-0.046412400901318,0.0090284608304501,0.057015210390091],[-0.0033801039680839,0.060948744416237,0.069366574287415]],[[0.028928032144904,0.026075469329953,0.010407527908683],[0.057932965457439,-0.092729590833187,-0.096741147339344],[-0.071139052510262,-0.010769027285278,0.03233602270484]],[[-0.12642282247543,0.032255817204714,-0.0092746755108237],[0.064092747867107,0.10818894952536,-0.065707750618458],[-0.11398413777351,0.032006096094847,0.063366927206516]],[[0.13676173985004,0.018703043460846,-0.057757891714573],[0.01999394968152,-0.072051264345646,-0.038297157734632],[0.012547424994409,0.0097257010638714,-0.055353581905365]],[[0.10077137500048,-0.26626044511795,0.050970911979675],[-0.033199168741703,0.0060590193606913,0.067722156643867],[0.017934655770659,0.010531379841268,-0.035631168633699]],[[-0.077503032982349,-0.076812922954559,-0.035521280020475],[-0.11597220599651,-0.099663406610489,-0.0347412340343],[-0.0039188754744828,0.020302545279264,-0.011180678382516]],[[0.0710803642869,0.032582491636276,-0.017879655584693],[0.11504866927862,0.11223054677248,-0.056158542633057],[0.010113800875843,0.0020973703358322,-0.070293210446835]],[[-0.17684848606586,0.037735775113106,-0.039776939898729],[-0.06377162784338,0.0098725603893399,0.039130330085754],[-2.4883687729016e-05,0.00092925265198573,-0.0083256242796779]],[[0.017695542424917,-0.041455399245024,-0.070861011743546],[-0.052516132593155,-0.081068366765976,0.035315420478582],[-0.0046378276310861,0.01323383115232,0.026369191706181]],[[-0.036400638520718,-0.0090749990195036,0.02717587351799],[-0.013571639545262,0.075508512556553,-0.013749168254435],[-0.011026731692255,0.033173676580191,0.0077822743915021]],[[0.084009885787964,-0.035795573145151,0.020168375223875],[-0.047479912638664,0.038641776889563,-0.08141715079546],[0.018475661054254,-0.090775139629841,0.083637110888958]],[[0.04515590146184,-0.041941158473492,-0.059521146118641],[0.1023588553071,-0.033767271786928,-0.062851577997208],[0.0053377654403448,0.018824744969606,-0.045862499624491]],[[0.028395859524608,-0.020177265629172,0.028483781963587],[-0.024935847148299,-0.0031688546296209,-0.025560131296515],[-0.024956302717328,-0.012178269214928,-0.049099717289209]],[[0.019620532169938,-0.018800375983119,-0.030176250264049],[-0.10202270746231,-0.0071675623767078,0.020058749243617],[0.051609061658382,0.0048930183984339,-0.032843071967363]],[[-0.20380766689777,-0.012087664566934,-0.050595544278622],[0.1819085329771,0.084694065153599,-0.028898436576128],[-0.019807554781437,-0.073765657842159,-0.066491596400738]],[[0.080489903688431,-0.034019853919744,-0.030003633350134],[0.064502507448196,-0.10236643999815,0.050188988447189],[0.052200496196747,-0.052912030369043,0.0096959797665477]],[[-0.058835186064243,-0.079539142549038,0.018302565440536],[-0.032608307898045,0.032626077532768,-0.020504485815763],[-0.019804824143648,0.019459139555693,-0.0031835646368563]],[[0.061890307813883,-0.03735588863492,-7.9552126408089e-05],[0.028533950448036,0.081739023327827,0.079249061644077],[0.06015233322978,-0.048226736485958,-0.047975424677134]],[[-0.026212904602289,-0.22351568937302,-0.045827236026525],[-0.20955620706081,0.035332195460796,0.060058582574129],[-0.019241515547037,0.034099034965038,-0.0025814815890044]],[[-0.14812169969082,-0.0070903426967561,-0.083537861704826],[0.046719994395971,-0.055286213755608,0.032745528966188],[-0.0022097416222095,0.045148190110922,0.070523343980312]],[[-0.033122260123491,0.073335573077202,-0.031921915709972],[0.026676302775741,0.046372629702091,-0.0083880228921771],[-0.035546194761992,0.00052715034689754,0.003438349114731]],[[-0.032015517354012,0.078503951430321,-0.050355307757854],[-0.0025121932849288,-0.030764384195209,-0.017500896006823],[0.039469823241234,0.026183899492025,-0.063837870955467]],[[0.077263355255127,0.048129942268133,0.015121294185519],[-0.1450287103653,0.073658384382725,0.042695783078671],[0.0027398876845837,0.00077000149758533,-0.009459818713367]],[[-0.03953168913722,0.043068613857031,0.027196638286114],[-0.069367907941341,-0.027056461200118,0.082611232995987],[-0.068562351167202,0.043949257582426,0.042930234223604]],[[0.095774538815022,-0.053946267813444,0.0039161746390164],[-0.033184580504894,-0.12375525385141,-0.020354177802801],[-0.054002016782761,0.016528194770217,0.010840246453881]],[[0.040368113666773,0.079369843006134,-0.09868835657835],[0.081966675817966,-0.047687783837318,0.03170570731163],[0.063736230134964,-0.0087775643914938,0.005120241548866]],[[-0.039415538311005,-0.021840248256922,-0.018283177167177],[-0.028260458260775,-0.10909885168076,-0.077507510781288],[-0.0057809529826045,-0.023340154439211,0.029170202091336]],[[-0.015841688960791,-0.01492219697684,-0.086760021746159],[-0.027461150661111,0.10905127227306,0.032626464962959],[0.0076240948401392,0.028763381764293,-0.084831446409225]],[[0.0019372932147235,0.12881813943386,0.056523557752371],[-0.035862289369106,0.074102908372879,0.00090105616254732],[-0.010898583568633,-0.017591673880816,-0.0069072637706995]],[[-0.023186692968011,0.026941543444991,-0.012190372683108],[-0.1669245660305,-0.0078929690644145,-0.006366397254169],[0.033409990370274,0.022542338818312,-0.0095361042767763]],[[0.10060119628906,-0.045593269169331,0.015724044293165],[0.044200472533703,-0.041447732597589,-0.0017040628008544],[-0.041533585637808,-0.042551662772894,0.03049922734499]],[[-0.16513729095459,-0.052713230252266,0.0061747008003294],[-0.078267112374306,-0.067954674363136,-0.015294994227588],[0.071013070642948,0.021333372220397,0.085049763321877]],[[-0.22179925441742,-0.14423935115337,-0.00055389606859535],[-0.0041974517516792,0.010484877042472,-0.010105297900736],[0.020215831696987,-0.089394092559814,0.10271098464727]],[[0.099681727588177,-0.035221859812737,0.048802491277456],[-0.040795363485813,-0.025120422244072,-0.06121040135622],[-0.085518382489681,-0.022240947932005,-0.0060623590834439]],[[0.012149323709309,0.082876965403557,-0.10253858566284],[-0.065078862011433,-0.053183790296316,0.11182850599289],[-0.067179672420025,-0.028193792328238,0.052990067750216]],[[-0.05501925945282,-0.083717495203018,0.013810788281262],[-0.21368680894375,-0.047672938555479,-0.0056925117969513],[-0.0040224515832961,-0.0010223624994978,0.0048851147294044]],[[0.0026576307136565,0.043201375752687,0.016241773962975],[-0.042824096977711,-0.023407878354192,0.001562831341289],[-0.034876681864262,-0.057287998497486,-0.030383022502065]],[[-0.015433475375175,-0.0074636787176132,-0.0027105414774269],[-0.15544931590557,-0.24068102240562,-0.034864325076342],[0.014825445599854,-0.05012459680438,0.088038615882397]],[[-0.1133883818984,-0.036809053272009,0.099837474524975],[0.0083219278603792,-0.013692158274353,0.02696792781353],[-0.044479586184025,0.003879311028868,0.064459092915058]],[[0.061705466359854,-0.14916364848614,-0.040975417941809],[0.062519326806068,-0.095837473869324,0.0061821104027331],[-0.013806348666549,-0.016999820247293,-0.020430251955986]],[[-0.035046849399805,0.054720167070627,-0.027085389941931],[-0.13070838153362,-0.0086267534643412,-0.062185663729906],[-0.065100610256195,0.0060830526053905,-0.065877251327038]],[[-0.090486735105515,-0.010955160483718,0.0024390236940235],[-0.018010269850492,-0.023126056417823,-0.059507865458727],[0.0022873878479004,-0.041318472474813,0.11880328506231]],[[0.026558943092823,-0.041742686182261,-0.01616020873189],[-0.047707784920931,-0.089493729174137,-0.042016848921776],[0.021331971511245,0.030588058754802,0.028460087254643]],[[-0.14495170116425,-0.16760009527206,-0.039817977696657],[0.077213913202286,-0.036361210048199,0.13805858790874],[-0.052659071981907,-0.081218734383583,0.0077595813199878]],[[-0.046088874340057,0.0062287948094308,-0.0098201222717762],[-0.065089516341686,0.090054608881474,0.073424234986305],[0.029169023036957,0.022148255258799,-0.00087423162767664]],[[0.054335836321115,-0.015098670497537,0.03570320084691],[-0.02430185675621,-0.030919434502721,0.03807396069169],[-0.060768753290176,-0.024574037641287,0.020816776901484]],[[-0.073013499379158,-0.056970253586769,-0.05603289976716],[0.0013887188397348,0.008411536924541,-0.0066079790703952],[0.042410865426064,0.025599997490644,0.019253799691796]],[[-0.044276591390371,0.10368311405182,-0.01584891974926],[0.073277004063129,-0.016575556248426,-0.015831809490919],[-0.02209116332233,-0.044940326362848,0.02582866512239]],[[-0.18128389120102,-0.068394966423512,-0.011851573362947],[-0.030866993591189,0.11916973441839,-0.027242856100202],[0.025828558951616,0.076612703502178,0.078009404242039]],[[0.037312190979719,-0.032315839082003,0.0081297429278493],[-0.1249925494194,-0.087829075753689,-0.055107019841671],[0.011993434280157,0.079412743449211,-0.044616170227528]],[[-0.0073786396533251,-0.0070016914978623,-0.1321851760149],[0.0087767746299505,-0.031969752162695,0.042152550071478],[-0.029517604038119,-0.035506565123796,-0.052354138344526]],[[0.2145626693964,0.055532995611429,-0.0090720281004906],[0.084531307220459,-0.22260497510433,-0.083843193948269],[0.035243090242147,-0.1356628537178,0.062249336391687]],[[0.023712266236544,0.0050635635852814,-0.0069940979592502],[0.023880833759904,0.073177754878998,-0.021096426993608],[0.057203210890293,-0.011062743142247,-0.023180859163404]],[[-0.14314866065979,-0.16941863298416,-0.14127561450005],[-0.09423153847456,-0.092671081423759,0.10258024185896],[-0.14499780535698,-0.10328170657158,0.16343405842781]],[[-0.00057086657034233,-0.0058111362159252,-0.022998822852969],[0.092633441090584,-0.095190957188606,0.0031491813715547],[0.02582598850131,-0.013871408067644,-0.042597558349371]],[[0.026472751051188,0.0060600335709751,-0.011909579858184],[-0.028639350086451,-0.03985608369112,0.0021852112840861],[0.022941336035728,-0.029699617996812,-0.048814874142408]],[[-0.0018031122162938,-0.1219722032547,-0.065927468240261],[-0.14602583646774,-0.022213371470571,0.065304011106491],[0.024536103010178,-0.042675096541643,0.0081517836079001]],[[-0.042541664093733,0.012331471778452,-0.043590813875198],[0.057035304605961,0.0071957330219448,-0.16032506525517],[0.040514905005693,0.019644832238555,0.0032949654851109]],[[0.012116934172809,-0.046319134533405,0.030976532027125],[-0.10592406243086,-0.087596446275711,0.021773176267743],[-0.045726772397757,-0.035406477749348,0.059489157050848]]],[[[0.044786788523197,-0.11963269859552,0.048915386199951],[0.052750676870346,0.014944905415177,0.026980698108673],[0.15619064867496,-0.029615350067616,-0.0169394351542]],[[-0.12127866595984,0.058860991150141,0.068727098405361],[-0.012137551791966,-0.1361507922411,-0.01940331608057],[-0.11288868635893,0.042831815779209,0.056879609823227]],[[0.072045378386974,-0.10379081219435,0.035855740308762],[-0.085829891264439,0.075802497565746,-0.10548333823681],[0.11551363766193,-0.051374033093452,-0.010925960727036]],[[-0.070619180798531,0.1321509629488,-0.21723082661629],[0.09074742347002,-0.017103442922235,0.027566213160753],[0.065622068941593,0.025837859138846,0.10543149709702]],[[0.031725216656923,0.12338028848171,-0.053682662546635],[-0.063716970384121,0.09739226847887,0.09101103246212],[0.063269376754761,-0.12106021493673,-0.0663081407547]],[[0.030227007344365,-0.23145425319672,0.15626604855061],[-0.055113669484854,0.18098682165146,-0.10058129578829],[-0.088022261857986,-0.095692366361618,-0.021990889683366]],[[-0.010019254870713,-0.054560083895922,0.065356262028217],[-0.029297281056643,-0.0061155073344707,-0.047246601432562],[0.017998743802309,0.0040144468657672,0.04877695441246]],[[0.040889952331781,-0.0024242280051112,-0.044284000992775],[-0.00051805394468829,-0.051678672432899,-0.03589491173625],[0.037969946861267,-0.0022250064648688,0.039874996989965]],[[-0.13014249503613,0.036022994667292,0.0016160096274689],[0.16170370578766,-0.072410427033901,-0.04612509906292],[-0.024243699386716,0.12113691866398,-0.072232753038406]],[[-0.038421053439379,-0.13071355223656,0.020354485139251],[0.029206590726972,-0.046780705451965,-0.07092572748661],[0.055767685174942,-0.0034085586667061,0.0069482927210629]],[[0.023984113708138,-0.017501519992948,0.1371446698904],[-0.03663107380271,0.045112695544958,-0.12862764298916],[-0.0076336287893355,-0.081499487161636,0.023360138759017]],[[0.10018065571785,-0.13967548310757,0.063477210700512],[0.13012686371803,0.0602409504354,-0.045281391590834],[-0.073585420846939,0.0068419696763158,0.054918881505728]],[[0.05549555644393,-0.1456758081913,0.035015150904655],[0.027692560106516,0.1179738715291,-0.12531569600105],[-0.012660874053836,-0.18768985569477,0.0099167693406343]],[[0.030872529372573,-0.019042370840907,-0.087285362184048],[0.11094433814287,-0.024291776120663,-0.050245549529791],[-0.015644168481231,0.019455155357718,-0.031275372952223]],[[-0.023500632494688,-0.037022951990366,-0.060465920716524],[0.013017942197621,0.045223392546177,-0.017940748482943],[0.041150826960802,-0.023557754233479,-0.06908230483532]],[[-0.049817055463791,-0.15207456052303,0.079419478774071],[0.044989116489887,0.00086758163524792,0.098255097866058],[-0.010282274335623,-0.074814550578594,-0.07285762578249]],[[0.080744355916977,-4.2978426790796e-05,-0.0025452487170696],[-0.037233173847198,-0.076228655874729,-0.07014411687851],[-0.055092956870794,0.076417677104473,0.10900390893221]],[[-0.10457144677639,-0.087049946188927,0.14483769237995],[0.0088189803063869,0.15742641687393,-0.082540057599545],[-0.086884871125221,-0.11705243587494,0.035910025238991]],[[-0.033222697675228,-0.017213108018041,0.1013815626502],[0.087890982627869,0.069168411195278,-0.048994190990925],[-0.15842577815056,0.075035594403744,-0.1373423486948]],[[0.14544560015202,0.013447808101773,0.083320677280426],[-0.047545842826366,0.19715410470963,0.021097047254443],[0.20713302493095,-0.040608916431665,0.039066333323717]],[[0.14393346011639,-0.059889029711485,-0.0059035359881818],[-0.014582552947104,-0.055990379303694,0.20706090331078],[-0.063260346651077,0.013614038936794,-0.090751029551029]],[[0.089730098843575,0.081787846982479,-0.028780981898308],[-0.048241231590509,-0.017854668200016,-0.022225050255656],[-0.068935170769691,-0.074275828897953,0.21635454893112]],[[0.098243519663811,0.033931277692318,-0.054262965917587],[0.090073116123676,-0.14014165103436,-0.052216492593288],[-0.0067482166923583,-0.17571260035038,0.17345379292965]],[[0.099969513714314,-0.10111895948648,0.054853942245245],[-0.08842010051012,-0.044123657047749,0.13696120679379],[-0.060945272445679,0.081241525709629,0.078679151833057]],[[0.089310124516487,-0.093895480036736,-0.052793245762587],[0.055385913699865,-0.2005944699049,-0.065624997019768],[-0.040958039462566,0.19386960566044,-0.046628095209599]],[[0.03648841008544,-0.027193490415812,0.079046569764614],[0.030219724401832,-0.041723225265741,-0.011698361486197],[-0.0063852439634502,-0.087274499237537,-0.084689572453499]],[[0.063567064702511,-0.091057501733303,0.028417004272342],[-0.13313199579716,0.050279311835766,-0.11805459856987],[0.013761520385742,-0.083287246525288,0.039077617228031]],[[0.065397441387177,0.0070947450585663,0.050470303744078],[-0.049558855593204,0.018659923225641,-0.18427681922913],[0.0079747987911105,-0.01998389698565,0.026345489546657]],[[0.057043053209782,-0.10553453862667,-0.068473190069199],[-0.051914464682341,-0.13675880432129,0.11825878173113],[0.013772428035736,0.011543590575457,-0.040537036955357]],[[0.02871173992753,0.1169126406312,0.097133561968803],[-0.018213802948594,-0.013493990525603,-0.15827465057373],[0.04438230022788,-0.014727261848748,0.10392340272665]],[[0.13999010622501,0.010406457819045,0.095893755555153],[0.033405523747206,0.020506983622909,0.027761498466134],[-0.0028316793031991,0.019505031406879,-0.17853802442551]],[[-0.10292114317417,0.059847299009562,-0.11433558911085],[-0.026982644572854,-0.082840353250504,-0.054205823689699],[-0.041935902088881,0.072814434766769,0.058757357299328]],[[0.027330813929439,-0.15340405702591,0.083429299294949],[-0.020449858158827,0.027492186054587,-0.032361473888159],[-0.059846136718988,0.10893801599741,-0.013054637238383]],[[0.025596670806408,0.07787399739027,0.0094248689711094],[0.082558386027813,-0.021810483187437,0.066850833594799],[0.0041758599691093,0.08769291639328,-0.033525969833136]],[[0.17825677990913,0.019367856904864,-0.052843853831291],[-0.044574666768312,0.021407159045339,0.068819634616375],[0.13808730244637,-0.1404116153717,-0.018666546791792]],[[-0.015575744211674,0.043709345161915,0.090668864548206],[-0.021182619035244,-0.048165857791901,0.041771929711103],[-0.16516014933586,0.15658684074879,-0.10921190679073]],[[0.023870721459389,-0.040856007486582,0.13024067878723],[0.042567156255245,0.054888058453798,-0.14304612576962],[-0.27637538313866,-0.029775954782963,-0.10872506350279]],[[0.013018843717873,0.17217017710209,0.042916711419821],[-0.045247480273247,-0.074698850512505,0.029327282682061],[-0.027881631627679,-0.048499654978514,-0.10847218334675]],[[0.0039362874813378,0.0060485163703561,0.11022220551968],[-0.069550581276417,-0.039181906729937,-0.090100951492786],[0.0018910196376964,-0.055387627333403,0.13718719780445]],[[-0.17447331547737,0.050398048013449,0.039041057229042],[0.086702555418015,-0.0066565941087902,0.027312761172652],[-0.12730300426483,0.016010701656342,0.0006732476176694]],[[-0.094393208622932,0.045727513730526,0.049903329461813],[0.065023176372051,-0.069884426891804,-0.014273992739618],[-0.056507136672735,0.060547553002834,0.058762490749359]],[[-0.0057595311664045,0.029058676213026,-0.020524958148599],[-0.039253506809473,0.054023746401072,0.014912878163159],[-0.083041183650494,-0.0039254212751985,-0.061738956719637]],[[0.01422671508044,0.14589504897594,0.061672374606133],[-0.0603839866817,-0.021547559648752,0.020183030515909],[-0.018318116664886,0.092268139123917,-0.014138404279947]],[[0.052314188331366,0.0082976641133428,0.040313687175512],[-0.091910965740681,0.00031888886587694,0.03022900223732],[-0.096311964094639,0.0089332275092602,0.036640390753746]],[[0.079971261322498,-0.024769727140665,-0.031761147081852],[-0.21889418363571,0.0038670781068504,0.0084682973101735],[0.088680915534496,-0.038953021168709,-0.039305470883846]],[[-0.028589807450771,-0.043880928307772,0.063058525323868],[-0.083440832793713,0.1751723587513,-0.24706746637821],[-0.02568181976676,-0.063269078731537,0.076309897005558]],[[0.016510542482138,-0.03507936373353,-0.073125697672367],[0.026559034362435,0.092638574540615,-0.12015073746443],[-0.060676589608192,-0.017748108133674,-0.085636906325817]],[[-0.074789173901081,0.16324579715729,-0.13845229148865],[-0.083338506519794,-0.020486850291491,0.14291843771935],[-0.13057214021683,0.045259043574333,-0.016649948433042]],[[0.044299140572548,0.022200038656592,-0.054553288966417],[-0.028321968391538,0.0020079195965081,0.12305334210396],[-0.19645056128502,-0.0074516474269331,0.02810432203114]],[[0.14049550890923,-0.091785691678524,0.014947555027902],[0.021502086892724,0.048643466085196,-0.04396840184927],[-0.092370301485062,-0.015640284866095,-0.053253643214703]],[[0.065309055149555,0.037542626261711,0.077857092022896],[-0.068762093782425,-0.034813679754734,0.0057706851512194],[0.04584975913167,0.053566593676805,0.01126700360328]],[[0.016893774271011,0.03416121378541,-0.025757450610399],[0.030906170606613,0.090244717895985,0.056226581335068],[0.01902455277741,-0.05822991579771,-0.15272645652294]],[[0.1828445494175,-0.022950753569603,-0.05415715277195],[-0.04592327401042,0.02312839217484,-0.0053263674490154],[-0.0036158410366625,-0.070633627474308,0.0055911098606884]],[[-0.0086821941658854,0.1245109885931,-0.12296470999718],[-0.043021962046623,-0.0033263175282627,-0.0098568852990866],[0.017659163102508,0.053460258990526,-0.12594643235207]],[[-0.084990985691547,0.031967986375093,-0.061327457427979],[-0.099896863102913,-0.049455739557743,0.035427629947662],[-0.037835747003555,-0.10851760953665,-0.094235055148602]],[[-0.04539643228054,0.0655537545681,-0.061969738453627],[0.0064759138040245,-0.10794954001904,0.038289748132229],[-0.17296589910984,-0.019759545102715,-0.03349931910634]],[[0.09452510625124,0.03148727118969,-0.0066346772946417],[0.022242391481996,0.14158533513546,0.02659111097455],[0.080701053142548,0.11711356788874,0.052982266992331]],[[-0.094065293669701,0.1646568775177,-0.20409299433231],[-0.11420784145594,0.019630677998066,0.10139063745737],[-0.092291980981827,-0.061529062688351,-0.10162665694952]],[[0.14749780297279,0.021949172019958,-0.025177804753184],[0.058942619711161,-0.12219008803368,0.11111607402563],[-0.064371481537819,-0.015186673030257,-0.15708981454372]],[[-0.019976899027824,-0.13334295153618,0.0064280973747373],[0.14237095415592,-0.05025490373373,0.05592493340373],[-0.0065468088723719,-0.047020670026541,-0.10856133699417]],[[-0.038431465625763,-0.056184306740761,-0.16770826280117],[0.087342575192451,-0.061870016157627,-0.0239039324224],[0.11587546020746,-0.046543966978788,0.007429557852447]],[[-0.21984526515007,0.12147008627653,-0.055293951183558],[-0.02789524756372,-0.13220167160034,0.079433314502239],[0.0087393866851926,0.079614207148552,-0.12836340069771]],[[-0.091849088668823,0.11299087107182,-0.1186950802803],[0.0074939797632396,0.069412685930729,-0.086332447826862],[-0.020505195483565,-0.10051651299,0.095526926219463]],[[-0.10144720971584,0.18786370754242,-0.091613821685314],[0.12567967176437,-0.10819088667631,-0.019995143637061],[-0.10164906084538,0.089215084910393,0.097836002707481]]],[[[0.014368559233844,0.0026515908539295,0.055270325392485],[0.018579589203,0.019569423049688,0.050525348633528],[0.038328863680363,-0.11074629426003,-0.098776951432228]],[[-0.017967145889997,-0.0093114720657468,-0.0093674175441265],[-0.02561348862946,0.039119798690081,-0.034856703132391],[0.19521072506905,-0.086166590452194,-0.044946104288101]],[[-0.0090357232838869,-0.017178790643811,-0.0064498842693865],[-0.096958577632904,-0.042379893362522,-0.05102751031518],[0.11767710000277,0.042895324528217,0.015449390746653]],[[0.019321428611875,-0.06546775251627,0.035497695207596],[0.036323316395283,-0.093453787267208,-0.013698797672987],[0.041031338274479,0.026907242834568,-0.036500904709101]],[[0.020996101200581,-0.028414033353329,0.024363555014133],[-0.027473084628582,0.022896023467183,0.059136457741261],[0.025954328477383,-0.085848160088062,-0.034538626670837]],[[0.011393623426557,-0.01581247895956,-0.022332109510899],[-0.027840157970786,0.10889063030481,-0.078006975352764],[-0.011075734160841,0.036969743669033,-0.017536543309689]],[[-0.024827763438225,-0.019152047112584,-0.040648248046637],[0.031466607004404,-0.047465108335018,0.078760035336018],[0.01678217574954,0.0039090337231755,-0.021817794069648]],[[0.060901116579771,-0.10689843446016,0.047454245388508],[0.054224688559771,-0.035239927470684,0.069179393351078],[-0.0032540347892791,0.040050834417343,-0.087539926171303]],[[-0.010767995379865,0.20650066435337,-0.0283247474581],[0.01780129596591,0.11596786975861,0.075777962803841],[0.098208270967007,0.11224640905857,0.044348675757647]],[[-0.030739197507501,0.035615034401417,0.036489371210337],[0.081150807440281,0.035814065486193,-0.07984633743763],[0.041662354022264,-0.0255740378052,-0.10453739017248]],[[0.016498357057571,-0.056946028023958,0.029372336342931],[0.047343194484711,-0.023744540289044,-0.010869778692722],[-0.014408833347261,0.0050453813746572,-0.030165718868375]],[[0.014059291221201,-0.00012021709699184,-0.034671474248171],[-0.040104173123837,0.016094785183668,0.017135702073574],[-0.03535870462656,0.058203581720591,-0.051351360976696]],[[0.036339085549116,-0.054478567093611,-0.027274554595351],[-0.03278636559844,-0.0027356585487723,-0.0084575479850173],[-0.042941186577082,0.019739028066397,0.033414751291275]],[[-0.033386763185263,-0.016821954399347,-0.030613139271736],[-0.025049678981304,0.011029207147658,0.14073224365711],[0.0029302705079317,-0.055112894624472,0.0046150614507496]],[[0.027718024328351,-0.026540778577328,0.021098701283336],[-0.0048711127601564,-0.025706049054861,-0.052659299224615],[0.018926154822111,0.010755245573819,0.019759157672524]],[[-0.046550866216421,0.047643315047026,-0.016713501885533],[-0.054522681981325,0.094275824725628,-0.10911712050438],[0.017045779153705,0.014219149015844,0.040138456970453]],[[-0.058153849095106,0.024860326200724,0.011031191796064],[-0.05445358902216,-0.019492752850056,0.024975555017591],[0.046312820166349,-0.014897087588906,0.042163107544184]],[[0.0095748100429773,0.0029586448799819,0.0065713874064386],[-0.022100504487753,-0.018369449302554,-0.034603916108608],[0.0059016337618232,-0.018174584954977,0.022666906937957]],[[-0.01704527810216,-0.0060022627003491,-0.089612782001495],[0.0582963116467,0.019396144896746,-0.12627109885216],[-0.019315639510751,0.14446519315243,0.034376543015242]],[[-0.0012984580826014,-0.062056791037321,0.088986530900002],[-0.088146299123764,-0.078384250402451,0.074349328875542],[0.0058684954419732,0.057674925774336,0.014512843452394]],[[-0.0051326449029148,0.044372271746397,-0.038084499537945],[-0.011494860053062,-0.030004786327481,0.014537336304784],[-0.018191112205386,0.070922702550888,-0.0067974836565554]],[[0.037981435656548,-0.13753725588322,-0.066117949783802],[-0.038617916405201,0.05001962184906,0.034560244530439],[0.03130166977644,0.044081144034863,0.0093836048617959]],[[-0.017242912203074,0.012508885934949,-0.01712454855442],[-0.039720192551613,0.042629614472389,-0.02854935079813],[0.019303116947412,0.01686448417604,0.002690440043807]],[[0.0092700198292732,0.13177014887333,0.00098354753572494],[0.0015508225187659,0.023892231285572,-0.019864790141582],[-0.032018311321735,-0.040480859577656,-0.059934630990028]],[[-0.082707017660141,0.089130319654942,0.056226544082165],[-0.071000136435032,0.042119190096855,0.115972019732],[0.013010807335377,-0.052234690636396,-0.11064701527357]],[[0.038543529808521,-0.025298034772277,-0.04958812519908],[-0.018084472045302,-0.06544653326273,0.072851866483688],[-0.050694465637207,0.0046597304753959,0.003504291176796]],[[-0.0033923923037946,-0.014191980473697,0.026426060125232],[-0.019604368135333,-0.058073807507753,0.026281382888556],[0.007157564163208,0.031377337872982,-0.010335956700146]],[[0.097465716302395,-0.099062047898769,0.056120697408915],[0.060579355806112,-0.056521140038967,-0.024145819246769],[-0.01024673320353,-0.038998328149319,0.019037248566747]],[[0.010065766051412,-0.016069082543254,0.033736381679773],[0.034454111009836,0.0080457963049412,-0.059136975556612],[0.0037349904887378,-0.027401631698012,0.00086129090050235]],[[-0.048534411936998,-0.040683582425117,0.0030122301541269],[-0.017295418307185,0.051958322525024,0.016370056197047],[0.063179083168507,-0.10041236877441,0.022129833698273]],[[0.018784631043673,-0.013759740628302,-0.015098066069186],[0.017763696610928,0.026282228529453,0.034635864198208],[-0.046889644116163,-0.021857097744942,-0.013573106378317]],[[-0.028824565932155,0.018907381221652,0.0071622370742261],[-0.050907205790281,0.0053806276991963,0.020355561748147],[-0.0023734839633107,0.0084368977695704,-0.034930761903524]],[[-0.032978571951389,0.035082899034023,0.03532586991787],[0.032370436936617,-0.01967653632164,-0.030900152400136],[-0.013056745752692,-0.031591918319464,0.0075872857123613]],[[0.056310571730137,-0.032146722078323,-0.05020546913147],[0.030091624706984,-0.033084578812122,-0.05467551201582],[0.086265251040459,-0.041804280132055,-0.006594670470804]],[[-0.027215698733926,-0.036328043788671,-0.028741717338562],[0.066219143569469,-0.0052775884978473,0.10085310041904],[0.023709138855338,-0.10547316074371,-0.031405054032803]],[[-0.045051924884319,-0.026895366609097,-0.071833848953247],[-0.044120285660028,0.020402118563652,-0.0042799720540643],[0.048676140606403,0.019975477829576,0.044242549687624]],[[0.076169043779373,-0.027698427438736,-0.037003483623266],[-0.0039708642289042,-0.062700919806957,0.04766046255827],[-0.037537463009357,-0.02725182287395,0.047506332397461]],[[0.042825270444155,-0.0092072412371635,-0.031999569386244],[0.01075173728168,0.0096167149022222,-0.00014964339789003],[0.045126263052225,-0.047846257686615,-0.024333894252777]],[[0.0018288607243448,0.045414928346872,-0.002313130768016],[0.022969024255872,-0.053313970565796,0.021627670153975],[-0.022013815119863,-0.044643316417933,0.015870379284024]],[[-0.07539614289999,0.04041401296854,-0.0096582034602761],[-0.11197851598263,0.095581337809563,0.082672938704491],[-0.033268336206675,-0.013804031535983,0.053273051977158]],[[0.044550962746143,0.051628265529871,-0.023215245455503],[0.0035091850440949,-0.01853814907372,0.012628670781851],[-0.064238116145134,-0.040647227317095,0.0066866870038211]],[[-0.022150512784719,0.010759082622826,-0.021498927846551],[-0.025820149108768,0.073850035667419,0.042667083442211],[-0.090832091867924,0.040135156363249,0.023796323686838]],[[0.019314900040627,-0.050444234162569,0.012221541255713],[-0.041798196732998,0.041582774370909,-0.011338694952428],[0.048334877938032,-0.012388228438795,-0.039922196418047]],[[-0.091742657124996,-0.067154347896576,-0.13462443649769],[-0.099918857216835,-0.052299797534943,-0.011238008737564],[-0.11207988113165,0.045139592140913,-0.16851937770844]],[[0.015542763285339,-0.03548364713788,0.044830221682787],[-0.13986310362816,0.049949549138546,-0.0061555546708405],[-0.038381796330214,0.028742974624038,0.010661387816072]],[[0.0077904113568366,-0.044092081487179,0.061156962066889],[0.013999164104462,0.080500885844231,-0.036612343043089],[0.0011105668963864,-0.031154341995716,-0.034571595489979]],[[0.039645340293646,-0.049215272068977,-0.047162063419819],[-0.036825995892286,-0.061410419642925,0.039178170263767],[-0.069756895303726,0.086020596325397,0.055690504610538]],[[0.0010019234614447,-0.0023165233433247,-0.015694752335548],[0.050478614866734,-0.037435457110405,-0.01365705486387],[-0.051184136420488,0.011680371128023,0.056196969002485]],[[-0.04906727746129,-0.031247833743691,0.066103287041187],[0.012927365489304,0.028845578432083,-0.014669259078801],[0.021325528621674,0.011385855264962,-0.040918506681919]],[[0.040622390806675,-0.024765055626631,-0.022115172818303],[-0.098385646939278,-0.017485426738858,0.011902159079909],[0.065854109823704,0.020450850948691,0.0084138186648488]],[[-0.025297084823251,0.0013700717827305,-0.022216968238354],[0.052653320133686,-0.028068292886019,-0.055483311414719],[-0.031138800084591,0.06205241009593,0.024423215538263]],[[0.020325126126409,-0.072143323719501,-0.031036373227835],[-0.0077858329750597,-0.02232439443469,0.026074508205056],[0.013823604211211,-0.038273368030787,0.061170674860477]],[[-0.037263289093971,0.037777353078127,-0.085993267595768],[0.019310921430588,0.016171474009752,-0.014332537539303],[0.03499386459589,-0.033784300088882,0.041332844644785]],[[-0.03317104652524,-0.066337503492832,0.026872396469116],[-0.037213135510683,0.013482758775353,0.0021005088929087],[0.03027174808085,0.015858493745327,0.025075955316424]],[[-0.040585834532976,0.0079584093764424,-0.011494476348162],[-0.048629257827997,0.1172071620822,0.099777437746525],[-0.041372992098331,-0.093928687274456,-0.009846854954958]],[[0.02866967767477,-0.1053623855114,0.017554448917508],[-0.058649431914091,-0.029921378940344,0.07653845846653],[-0.026162939146161,-0.0091941179707646,0.040681082755327]],[[-0.14627511799335,-0.078736484050751,0.011218479834497],[-0.067305333912373,0.013855031691492,0.15494053065777],[-0.074412412941456,0.0043535316362977,0.075375162065029]],[[0.075263068079948,-0.035225503146648,-0.010217434726655],[-0.057645484805107,-0.0086387703195214,-0.0034003604669124],[-0.02055405266583,-0.0061704399995506,0.00096328527433798]],[[-0.022528534755111,0.0076244617812335,-0.019345350563526],[0.052619051188231,0.005798471160233,0.014188206754625],[-0.014353659003973,-0.11260870844126,0.12011866271496]],[[-0.012835069559515,-0.010718423873186,-0.047304037958384],[-0.00053926208056509,-0.015611229464412,-0.023315191268921],[-0.0048553454689682,0.052656449377537,0.030514989048243]],[[0.052998177707195,-0.038264323025942,0.010726178996265],[-0.066065691411495,-0.01288881432265,-0.007919067516923],[-0.01476629730314,0.045138783752918,0.016832141205668]],[[0.01893588155508,0.025025010108948,0.032360676676035],[-0.060146436095238,-0.031300991773605,0.042426202446222],[-0.022913239896297,-0.0015025809407234,0.0081702778115869]],[[-0.024676233530045,0.07329086959362,-0.014578074216843],[-0.043986979871988,-0.0026446057017893,-0.058689497411251],[0.0082786846905947,-0.010934992693365,0.060444556176662]],[[-0.013070956803858,0.031926117837429,-0.011163776740432],[-0.024309102445841,0.020004276186228,-0.0039032087661326],[0.0069425110705197,0.010859123431146,-0.025948848575354]]],[[[0.059622101485729,0.010245827026665,0.077379673719406],[0.039277248084545,0.021256502717733,-0.01849234290421],[-0.00068414298584685,0.014942731708288,-0.045423850417137]],[[0.048103168606758,-0.091165244579315,-0.0067045870237052],[0.051797531545162,0.015966478735209,-0.074940532445908],[-0.13325189054012,-0.0022163304965943,0.038240414112806]],[[-0.18029755353928,0.066288456320763,0.029250564053655],[-0.072545625269413,-0.16702216863632,0.058960366994143],[0.18096008896828,-0.043208993971348,-0.05568915233016]],[[-0.20617108047009,-0.21459259092808,-0.045284546911716],[-0.21646583080292,-0.11635192483664,0.12850442528725],[-0.093284763395786,-0.0120370676741,0.084188036620617]],[[0.055733699351549,-0.024975664913654,-0.032218087464571],[0.0053517306223512,0.024558046832681,0.0094318250194192],[-0.0079099033027887,0.082216955721378,-0.050056960433722]],[[0.11485108733177,-0.046813640743494,0.097964741289616],[-0.0087789576500654,-0.032233003526926,-0.062001749873161],[0.0055299210362136,-0.072678759694099,0.032640047371387]],[[-0.19554334878922,-0.14187268912792,-0.0256581120193],[-0.10526686906815,-0.032568745315075,0.098722867667675],[0.031068747863173,-0.025772074237466,0.081992462277412]],[[-0.16147693991661,0.030078504234552,-0.053721740841866],[-0.036504819989204,-0.11118433624506,-0.035965614020824],[0.053840052336454,0.044316925108433,0.11781500279903]],[[0.0021493823733181,0.060594942420721,-0.074852108955383],[0.0067909071221948,0.009906955063343,-0.06478326022625],[0.049153577536345,0.045990999788046,-0.041281044483185]],[[-0.0064355726353824,-0.020051157101989,0.076800614595413],[0.010668740607798,0.021137205883861,0.11965879797935],[-0.0093013532459736,-0.1077099069953,0.10550685971975]],[[0.0046969600953162,-0.042943775653839,0.012208027765155],[0.03036311455071,0.048229664564133,-0.025649070739746],[0.059380810707808,0.064105525612831,0.047776289284229]],[[0.14095520973206,0.27512741088867,0.030161079019308],[-0.0035857560578734,0.11314730346203,0.085014507174492],[0.024802803993225,0.040007743984461,0.0050742267630994]],[[-0.13634899258614,0.042479049414396,0.1182666271925],[0.0061514796689153,-0.019179729744792,0.056903060525656],[0.014667700976133,0.065369695425034,0.0020660094451159]],[[0.030289221554995,0.13400736451149,0.0029313615523279],[-0.067570388317108,-0.097073681652546,-0.1064291074872],[0.013433678075671,-0.085562750697136,-0.094273291528225]],[[0.0085232527926564,0.050143979489803,-0.071211285889149],[0.010013595223427,0.16765084862709,-0.088097147643566],[-0.00045212777331471,0.038618616759777,0.073813661932945]],[[-0.024302091449499,0.0034379810094833,-0.084868535399437],[-0.023840365931392,-0.04148306697607,-0.01751758903265],[-0.041943851858377,-0.024583596736193,-0.0024430446792394]],[[-0.047275770455599,-0.028516368940473,-0.044403832405806],[0.029647188261151,-0.089534893631935,-0.036635771393776],[0.10338347405195,0.034912336617708,-0.047851357609034]],[[0.12537212669849,-0.016996676102281,-0.029544167220592],[0.11132425814867,0.080644257366657,-0.052729442715645],[0.07264019548893,0.012544664554298,-0.095111310482025]],[[-0.041145101189613,0.046756524592638,-0.06901454180479],[-0.025794783607125,0.024043370038271,0.0042858244851232],[-0.0075113903731108,0.013059693388641,0.11255113780499]],[[0.10933317244053,-0.036427907645702,0.082279689610004],[0.18545562028885,0.057071402668953,-0.10406111180782],[-0.053240690380335,-0.20361810922623,-0.085363067686558]],[[-0.060431968420744,0.0021344595588744,-0.0006711762980558],[-0.057695653289557,-0.0038440756034106,-0.011209385469556],[0.031318750232458,-0.027665412053466,0.029135432094336]],[[0.042299401015043,0.056763719767332,0.15728202462196],[0.13746806979179,0.00056124350521713,-0.014440403319895],[0.017430935055017,-0.057212136685848,-0.025717480108142]],[[0.10562159121037,-0.020757416263223,0.10768918693066],[0.085092760622501,0.026581587269902,-0.033972654491663],[-0.078569494187832,0.10898374021053,0.02267143689096]],[[-0.055511694401503,0.1131791099906,-0.11109498888254],[-0.27667701244354,-0.083697654306889,0.1412760168314],[-0.068394161760807,-0.058720350265503,0.072049975395203]],[[-0.14281478524208,-0.012278486043215,-0.031447414308786],[-0.0065786261111498,-0.035007420927286,-0.051622394472361],[0.006659503094852,0.042003363370895,0.04504756256938]],[[0.023734530434012,0.029673730954528,-0.0042692390270531],[0.0508878454566,0.076560206711292,0.016712000593543],[-0.077709876000881,-0.027119806036353,-0.0157421361655]],[[-0.074396230280399,0.0069641568697989,0.069487437605858],[-0.033979333937168,0.004188968334347,0.0054675093851984],[-0.039399467408657,0.04700493812561,-0.032629113644361]],[[-0.0046450216323137,-0.021409161388874,0.0089334473013878],[0.031224427744746,0.0074790106154978,-0.19456292688847],[0.063732080161572,-0.12224504351616,-0.11751314252615]],[[-0.048353333026171,-0.00068578828359023,0.010347523726523],[-0.096073724329472,-0.086843483150005,0.078711092472076],[-0.017296163365245,0.011748745106161,0.037778466939926]],[[-0.14656092226505,0.0011541360290721,-0.049911737442017],[-0.043051570653915,0.011072285473347,0.046426795423031],[-0.030677076429129,0.08528558164835,-0.0066110538318753]],[[-0.010768317617476,0.035335596650839,0.11878362298012],[0.12028681486845,0.020402900874615,-0.06105163693428],[0.072746321558952,-0.11657080054283,-0.14165613055229]],[[-0.015425240620971,-0.067075446248055,0.071615792810917],[0.0040986156091094,-0.038466319441795,0.023839028552175],[-0.059990722686052,-0.0058952276594937,0.095274284482002]],[[-0.027359575033188,-0.15750801563263,-0.00037452127435245],[-0.0011665286729112,0.024316165596247,-0.059400822967291],[0.011571927927434,0.1785660982132,0.046324834227562]],[[-0.099327191710472,-0.028422618284822,-0.018037840723991],[0.0050746253691614,-0.038854096084833,0.027525026351213],[0.077313378453255,-0.03091924265027,-0.01036284584552]],[[0.018021814525127,-0.042405571788549,0.054039306938648],[0.027174329385161,0.0029208189807832,0.072252601385117],[-0.082074023783207,-0.054178681224585,0.054867196828127]],[[-0.034858133643866,-0.12272836267948,-0.027645392343402],[-0.11030180007219,0.078971818089485,0.052959460765123],[0.0011546926107258,-0.0065917763859034,0.0024973864201456]],[[-0.15077039599419,0.074853867292404,-0.033103343099356],[-0.11118821799755,-0.066675961017609,-0.13996975123882],[0.018704582005739,0.019598614424467,0.0018319227965549]],[[0.058968145400286,-0.06821832805872,0.017163326963782],[0.070660658180714,-0.031918134540319,0.072953566908836],[0.10469546169043,-0.046977341175079,-0.094262152910233]],[[-0.018633658066392,0.066520154476166,0.1952378898859],[-0.074279598891735,-0.07494543492794,0.024757239967585],[-0.059769462794065,0.073060758411884,-0.08177438378334]],[[0.064362183213234,-0.0025585549883544,0.053664293140173],[-0.0046893581748009,-0.053518764674664,0.0044927014969289],[0.10040163248777,-0.0090976282954216,-0.08407798409462]],[[0.056936986744404,0.035684116184711,0.033836405724287],[0.046031136065722,0.082713916897774,0.019394116476178],[-0.096153676509857,0.11032176762819,0.005069961771369]],[[-0.13660894334316,-0.014182389713824,0.055345863103867],[-0.18982535600662,-0.14680807292461,0.072419866919518],[-0.063836008310318,-0.043530907481909,-0.078440614044666]],[[-0.080026783049107,-0.074621506035328,0.021316925063729],[0.012462181039155,-0.063995994627476,0.070813730359077],[-0.044358383864164,0.030104456469417,0.052132729440928]],[[-0.095682427287102,0.023345243185759,0.095729306340218],[-0.099726423621178,0.09071446210146,0.010742862708867],[-0.088212564587593,-0.029978251084685,0.081869050860405]],[[-0.14357076585293,-0.078830040991306,-0.066739439964294],[-0.10377038270235,0.10253775119781,0.0066948616877198],[0.013973235152662,-0.043174963444471,0.13082945346832]],[[-0.16571025550365,-0.037987027317286,-0.013185573741794],[-0.15428537130356,-0.0076769273728132,0.0099110342562199],[-0.048091951757669,-0.069491162896156,0.11830302327871]],[[-0.093057118356228,-0.11969990283251,0.0088101271539927],[-0.14922200143337,-0.10540395230055,-0.065491244196892],[0.014015194028616,-0.13799984753132,0.0037691087927669]],[[0.085040621459484,-0.080654390156269,-0.0057691317051649],[0.010642565786839,0.0005161146982573,-0.012743940576911],[0.001750617637299,-0.014214862138033,-0.010796561837196]],[[0.066010601818562,-0.0064421105198562,0.033414348959923],[-0.057904072105885,0.014089866541326,0.05675208568573],[0.017614852637053,-0.10268916934729,-0.040369249880314]],[[-0.010389221832156,-0.027350649237633,0.01030710618943],[0.038485791534185,-0.054576806724072,-0.07689180970192],[0.08253750950098,0.049479302018881,0.0174829531461]],[[-0.0095628015697002,-0.080675266683102,0.14500516653061],[-0.0009709972073324,0.045674987137318,-0.0047233900986612],[0.0090663265436888,0.03934933245182,0.031785432249308]],[[-0.020364744588733,-0.11810352653265,0.0071102357469499],[-0.20193846523762,-0.057844083756208,-0.027632806450129],[0.03475146740675,-0.030916433781385,0.035304747521877]],[[-0.19207273423672,0.066151216626167,0.075312040746212],[-0.0563496761024,0.13034956157207,-0.028302289545536],[0.017793832346797,0.11710074543953,-0.02249120734632]],[[-0.12533757090569,-0.192168161273,-0.13887944817543],[0.0064090215601027,0.087130568921566,-0.18281751871109],[-0.0023522137198597,0.0098236622288823,-0.021697277203202]],[[-0.024517558515072,-0.035066444426775,-0.043455190956593],[-0.21678820252419,-0.14592999219894,-0.066044181585312],[-0.11143826693296,0.043263580650091,0.05720454454422]],[[-0.027035834267735,-0.051543023437262,-0.17610788345337],[-0.014935205690563,0.14063942432404,-0.036784626543522],[-0.020840430632234,-0.025579836219549,0.064402163028717]],[[0.18690098822117,0.10672018676996,-0.087786220014095],[0.16070283949375,0.11010191589594,-0.2162364423275],[0.099942333996296,0.15385149419308,0.0022238760720938]],[[0.072220481932163,0.062257677316666,0.018802450969815],[0.086486726999283,0.03554979339242,-0.063358888030052],[-0.054576773196459,0.020346274599433,0.057511314749718]],[[-0.042257755994797,0.0038375582080334,-0.066122844815254],[-0.2121167331934,-0.059352315962315,0.013224430382252],[-0.04434035718441,0.081833846867085,0.032486144453287]],[[-0.080237716436386,0.0059825475327671,0.085508435964584],[-0.093480966985226,-0.049486193805933,-0.025800410658121],[0.010522077791393,-0.078703463077545,0.0014683913905174]],[[0.035976056009531,0.051347699016333,-0.045263521373272],[-0.084960781037807,-0.027089832350612,0.025478303432465],[0.099324777722359,0.020468534901738,-0.043726831674576]],[[0.0090461615473032,-0.0017859704094008,-0.080732747912407],[0.023518960922956,0.10690569132566,-0.033457554876804],[-0.054270531982183,-0.049939937889576,-0.0022592542227358]],[[-0.22964188456535,-0.012902423739433,-0.03739345818758],[-0.024738989770412,-0.07667975127697,0.03299418091774],[-0.10429614037275,0.083512678742409,0.11341409385204]],[[0.023314954712987,-0.24316276609898,-0.14013034105301],[-0.083302281796932,-0.10748343169689,-0.12594340741634],[0.074609853327274,-0.10147807002068,-0.047598127275705]]],[[[-0.0697126314044,0.053833764046431,0.034085065126419],[-0.10641815513372,0.044768039137125,0.047979671508074],[0.024957271292806,-0.023979429155588,0.14478659629822]],[[-0.074310004711151,-0.21622076630592,0.014038138091564],[0.17604111135006,-0.0039043028373271,-0.12782454490662],[0.026123639196157,-0.011528206057847,0.11055691540241]],[[0.049748796969652,0.067961029708385,-0.0086967321112752],[0.088998414576054,0.026534359902143,0.07989302277565],[0.013189494609833,0.088647060096264,-0.0051909345202148]],[[-0.091233439743519,0.12481788545847,-0.016057442873716],[-0.37829741835594,0.063321590423584,0.015394743531942],[0.11713068187237,0.016503356397152,-0.042050160467625]],[[0.074248962104321,0.0010626115836203,-0.026248933747411],[0.050879418849945,-0.019621757790446,-0.076703280210495],[-0.024496586993337,0.11350017040968,0.0021350265014917]],[[0.061531465500593,-0.12359099090099,-0.042794544249773],[-0.097817532718182,-0.062658071517944,-0.046540684998035],[-0.028994888067245,-0.086955808103085,-0.10755858570337]],[[-0.022037265822291,-0.090436138212681,0.001354060950689],[-0.021803813055158,-0.097895972430706,-0.18371075391769],[0.026887444779277,-0.062339439988136,-0.20595496892929]],[[-0.031794875860214,-0.0062591806054115,-0.10088549554348],[0.040003199130297,-0.091473959386349,-0.04798000305891],[-0.02311559766531,0.059442326426506,-0.054209843277931]],[[-0.041740268468857,0.00095099443569779,-0.029598116874695],[0.048607431352139,0.05730289593339,-0.0057763033546507],[0.011306406930089,0.01417869143188,-0.022333746775985]],[[-0.037883229553699,-0.038293849676847,-0.010668092407286],[-0.030702309682965,0.11530282348394,-0.050209861248732],[-0.056889940053225,0.068116597831249,0.022637257352471]],[[0.098171480000019,0.092558644711971,-0.003563912352547],[-0.1098929643631,-0.028701102361083,-0.030965769663453],[0.22032943367958,0.0087115243077278,0.042084764689207]],[[-0.12466695159674,-0.44501999020576,0.012667682953179],[0.074594996869564,-0.037408445030451,-0.022403815761209],[0.052552580833435,-0.053060628473759,0.062341973185539]],[[0.080794230103493,-0.050871502608061,-0.031860683113337],[-0.010567164048553,0.14856964349747,-0.05359860137105],[-0.12645137310028,-0.047664258629084,0.045404590666294]],[[0.044129531830549,0.015716679394245,0.011222943663597],[0.14780512452126,0.0090966327115893,-0.061662815511227],[-0.11648707836866,-0.0028791350778192,0.095501132309437]],[[0.056125435978174,0.11455602198839,-0.0016704258741811],[-0.063348226249218,0.014867832884192,-0.046802621334791],[0.0021614488214254,-0.20380221307278,-0.14191818237305]],[[0.050849974155426,-0.052448015660048,0.0196069534868],[0.1135745793581,0.037142600864172,0.066610842943192],[-0.026088491082191,-0.072103761136532,-0.033166546374559]],[[0.050636153668165,0.035300005227327,0.074251919984818],[-0.15688851475716,-0.23907166719437,-0.00022212347539607],[0.035004071891308,-0.21516336500645,0.051422841846943]],[[-0.026958603411913,-0.12044610828161,-0.026889700442553],[0.073653414845467,-0.0049456208944321,0.033540479838848],[-0.01490172278136,-0.028657395392656,0.13099691271782]],[[-0.0061921291053295,0.0046808212064207,-0.054067097604275],[-0.086475402116776,-0.03754898160696,-0.05599407851696],[0.10157599300146,0.042216014117002,0.029468363150954]],[[-0.12733760476112,-0.074419640004635,0.013808190822601],[-0.037068031728268,0.12166697531939,0.038628280162811],[0.013856835663319,0.062113158404827,0.1052608191967]],[[0.15273825824261,-0.10866576433182,0.013925996609032],[0.070500619709492,0.00082534406101331,-0.085938110947609],[0.075493402779102,0.029905881732702,-0.044000599533319]],[[0.09162162989378,0.0092824008315802,0.049020271748304],[0.13141421973705,-0.0029509656596929,0.12371104210615],[0.071289904415607,0.0040277880616486,-0.090216621756554]],[[-0.069526828825474,-0.035049501806498,0.015859877690673],[0.066381826996803,0.10931956022978,0.046007808297873],[-0.11144714057446,0.056464895606041,0.00041743816109374]],[[-0.011719049885869,-0.012915262952447,-0.016728926450014],[0.045069441199303,-0.30752527713776,-0.054064892232418],[0.064225859940052,0.053378973156214,-0.072507709264755]],[[-0.078704915940762,-0.069103270769119,-0.090626187622547],[0.019220476970077,0.067377336323261,0.015134155750275],[0.045074548572302,0.060747690498829,0.11856490373611]],[[0.036559347063303,-0.074987158179283,-0.0070511884987354],[0.16283212602139,-0.077093340456486,0.043509133160114],[-0.09437407553196,0.0049946852959692,-0.010917076840997]],[[0.024382574483752,0.075285412371159,-0.085010953247547],[0.20825868844986,0.014051190577447,-0.036176521331072],[-0.026526775211096,-0.074983663856983,0.012221932411194]],[[-0.0013545292895287,-0.056788321584463,0.099107176065445],[0.04273372516036,-0.05822766944766,0.006161033641547],[-0.11408794671297,-0.061405893415213,-0.12189513444901]],[[0.015234387479722,0.069367401301861,-0.018068639561534],[0.051247268915176,-0.12329456955194,-0.0047467602416873],[-0.062850259244442,-0.02895731665194,-0.087909430265427]],[[0.090838238596916,-0.079803049564362,-0.056338619440794],[0.010395185090601,-0.14175543189049,-0.024059677496552],[0.03716953843832,0.13540774583817,-0.095808140933514]],[[-0.13111539185047,0.1796028316021,0.0086611313745379],[-0.02856357768178,-0.031725738197565,0.022158872336149],[0.13797010481358,-0.016725789755583,0.071339949965477]],[[0.092119187116623,0.024593718349934,0.025656597688794],[0.011725685559213,0.009073500521481,-0.0073855994269252],[0.055401291698217,0.11638341844082,0.0069636828266084]],[[0.013015862554312,0.1010077893734,-0.048192650079727],[0.047135908156633,0.09877110272646,0.043681509792805],[-0.024043455719948,-0.13946843147278,-0.13693980872631]],[[-0.082462713122368,-0.12001357972622,0.071523860096931],[0.27555951476097,-0.0082098199054599,0.014143285341561],[-0.17393638193607,0.010910404846072,0.039646904915571]],[[0.029737839475274,0.099138282239437,0.10725631564856],[0.021303178742528,-0.16215197741985,-0.10185488313437],[0.08623319119215,-0.029107220470905,-0.19117079675198]],[[-0.29982575774193,0.041802484542131,0.020508177578449],[-0.00076080881990492,-0.0098751951009035,-0.019192337989807],[0.050345417112112,-0.019883420318365,-0.046766769140959]],[[0.05694380030036,0.062370032072067,-0.036086216568947],[0.19837966561317,-0.062275804579258,-0.10232127457857],[-0.13211564719677,-0.097734212875366,-0.10381187498569]],[[-0.033459309488535,-0.0075399996712804,-0.13148041069508],[-0.0048081711865962,0.026625806465745,0.035735324025154],[-0.094440385699272,0.10619033128023,0.18947909772396]],[[0.08925012499094,-0.12501049041748,-0.079839468002319],[-0.019004983827472,0.16526000201702,-0.024339212104678],[0.19215127825737,-0.15413101017475,-0.11766290664673]],[[-0.14092864096165,-0.0042614950798452,-0.12523417174816],[-0.047972962260246,-0.0051052886992693,0.015715958550572],[-0.033573258668184,0.085557326674461,0.12814424932003]],[[-0.14533510804176,-0.069947361946106,0.008329464122653],[-0.21057438850403,-0.33410736918449,-0.12767960131168],[0.18383711576462,0.15572254359722,-0.02815299294889]],[[0.10250346362591,0.007005128543824,-0.069265760481358],[-0.027389029040933,0.080711610615253,-0.0017310183029622],[-0.3266227543354,-0.1283220499754,0.011040097102523]],[[0.097395151853561,-0.14768035709858,-0.013055243529379],[0.054430589079857,0.17491561174393,0.046247370541096],[0.0088133132085204,0.080650493502617,-0.013175415806472]],[[0.052653681486845,0.006875064689666,0.088781625032425],[-0.034697975963354,-0.037714909762144,0.0083680599927902],[-0.023203976452351,-0.020446306094527,-0.03614604100585]],[[0.088228665292263,0.057615488767624,0.0050869258120656],[0.10683795064688,-0.030091820284724,-0.052058942615986],[-0.026378210633993,-0.11812061071396,-0.056983150541782]],[[0.17819590866566,-0.029379777610302,-0.018876003101468],[0.080289475619793,0.1278440207243,-0.030034802854061],[-0.0019436598522589,0.025898827239871,-0.0762679874897]],[[-0.12222412228584,0.06992831081152,-0.0285017285496],[0.030137039721012,0.027584232389927,-0.024717550724745],[-0.18412309885025,0.076741084456444,-0.071392312645912]],[[0.15024371445179,-0.017501767724752,-0.18253001570702],[0.075300365686417,-0.12768705189228,-0.18517439067364],[0.11366303265095,-0.049615059047937,-0.086022473871708]],[[0.01612333022058,0.032277140766382,-0.01959409378469],[-0.047706108540297,0.082278996706009,0.097210511565208],[0.062637679278851,0.025195132941008,-0.0007213723147288]],[[0.040670782327652,0.05581421777606,-0.042554195970297],[0.0082651367411017,0.12804906070232,-0.076982937753201],[-0.18179659545422,-0.055015597492456,0.063978634774685]],[[0.066986225545406,0.071563802659512,0.040587279945612],[0.062012974172831,-0.048388998955488,-0.048066955059767],[-0.05551166459918,0.059195056557655,-0.072843343019485]],[[-0.14384172856808,0.065075680613518,0.05071210116148],[-0.063509032130241,-0.05301458388567,-0.017005717381835],[0.11446694284678,-0.18292824923992,0.067561380565166]],[[-0.15399740636349,0.23054459691048,-0.018465083092451],[-0.059672988951206,-0.11176229268312,0.017448920756578],[0.026998624205589,0.0059678498655558,-0.047356504946947]],[[-0.057604819536209,0.093278460204601,0.088634051382542],[-0.30016070604324,-0.11261331290007,-0.0049712676554918],[0.036256957799196,-0.010259889997542,-0.14119428396225]],[[0.029909290373325,-0.040127471089363,-0.025235511362553],[0.12738406658173,-0.07228709757328,-0.063128359615803],[-0.040490008890629,-0.11846002936363,-0.22282512485981]],[[-0.19213201105595,-0.1821966022253,0.037425454705954],[0.084362246096134,-0.20058591663837,-0.24479082226753],[0.098351515829563,-0.071174375712872,-0.049276236444712]],[[-0.011671312153339,-0.0073275594040751,0.081027112901211],[0.020360644906759,0.10314427316189,0.015537716448307],[-0.00077445397619158,0.2171713411808,0.23907922208309]],[[-0.081989921629429,-0.040082532912493,0.025580577552319],[0.09598807990551,0.075350888073444,-0.087554484605789],[-0.012895633466542,-0.13216948509216,0.04006078466773]],[[0.055234022438526,0.039388056844473,-0.052068043500185],[-0.049830548465252,-0.11734855920076,0.051719963550568],[0.089957632124424,0.045629195868969,-0.020891210064292]],[[0.021989049389958,0.072837702929974,-0.016870304942131],[0.17791841924191,-0.027190905064344,-0.063786260783672],[0.020203096792102,-0.064485475420952,-0.13281397521496]],[[0.028362294659019,0.020050691440701,0.016030767932534],[0.045579694211483,0.019298592582345,-0.003821958322078],[-0.035561792552471,-0.1135905534029,-0.069262400269508]],[[0.11444386839867,0.0013287953333929,-0.049590084701777],[-0.02878780849278,-0.039644446223974,-0.04050924256444],[0.048587214201689,0.0030871743801981,-0.090643398463726]],[[-0.012133776210248,0.007148640230298,0.072424739599228],[0.13654436171055,-0.0095282876864076,-0.04920943453908],[0.07853052765131,0.05854582414031,0.037634771317244]],[[-0.16073790192604,0.068367570638657,0.011540859937668],[-0.1466266065836,-0.0080166989937425,0.05980958044529],[-0.23968431353569,-0.14574645459652,0.091190546751022]]],[[[-0.059582654386759,-0.0309839528054,-0.014383460395038],[0.022658875212073,0.062524951994419,-0.029863327741623],[0.0065577463246882,0.012213204056025,0.045027300715446]],[[-0.071879155933857,-0.16073542833328,0.075796969234943],[0.0012375373626128,0.053898219019175,-0.029111294075847],[0.030132753774524,0.032600678503513,0.19499260187149]],[[-0.027294915169477,-0.037414852529764,0.026599913835526],[0.038698621094227,-0.0073889982886612,-0.034137044101954],[-0.098836928606033,0.047993157058954,-0.063934236764908]],[[-0.10987639427185,0.17177778482437,0.10330960899591],[-0.064333260059357,0.26939916610718,0.0507907345891],[-0.019158810377121,0.094108015298843,-0.2221072614193]],[[-0.066149272024632,0.014781666919589,-0.057769794017076],[-0.00020466813293751,0.065483346581459,-0.032454822212458],[0.12936659157276,-0.080825179815292,-0.10908527672291]],[[-0.080802321434021,0.035032924264669,0.017670653760433],[-0.092447213828564,0.03516736254096,-0.01841109059751],[0.077370204031467,-0.15944582223892,-0.051889382302761]],[[-0.002091629197821,0.087533347308636,0.045671533793211],[-0.081390254199505,-0.010490084066987,0.035101193934679],[0.061649784445763,0.13761803507805,-0.12035727500916]],[[-0.13840916752815,-0.056825738400221,0.089079342782497],[-0.0055374624207616,0.0047501833178103,0.1386231482029],[-0.037292346358299,0.15559314191341,-0.02619824744761]],[[-0.031188307330012,0.049468349665403,0.027308039367199],[-0.022544438019395,-0.051271196454763,0.040492948144674],[0.0038695770781487,-0.0019069220870733,0.0055825775489211]],[[-0.05768658220768,-0.077705763280392,-0.17616313695908],[0.057147957384586,0.031303480267525,-0.11673258244991],[0.041601274162531,-0.093174368143082,-0.29321527481079]],[[0.029027720913291,0.097222119569778,-0.029166290536523],[-0.03884968534112,0.1120046377182,0.010090936906636],[0.004843823146075,0.11171977967024,-0.028945259749889]],[[-0.018720712512732,-0.026311105117202,0.06343886256218],[0.077288046479225,-0.27366346120834,-0.19493351876736],[0.032240193337202,0.057429954409599,-0.15733858942986]],[[0.12677146494389,-0.056375831365585,0.020709013566375],[0.018382128328085,0.1012100726366,-0.025787873193622],[0.070391438901424,-0.12913367152214,0.046287640929222]],[[-0.11041075736284,-0.10365430265665,0.080452643334866],[-0.017623687162995,0.083460867404938,0.094143882393837],[0.03565151616931,0.037051640450954,0.078210674226284]],[[-0.048456460237503,0.12411393970251,-0.12727206945419],[-0.073913119733334,0.086837127804756,-0.013376888819039],[-0.075201109051704,-0.0052743130363524,-0.029114991426468]],[[-0.035051967948675,0.023946061730385,0.03819603100419],[0.04780663177371,0.004420951474458,0.014036550186574],[-0.02706204354763,0.0042348653078079,0.039924308657646]],[[0.070334143936634,0.059413321316242,-0.060384348034859],[-0.032485567033291,-0.077946051955223,0.085404448211193],[-0.10629608482122,0.077003642916679,0.079705715179443]],[[0.012061354704201,0.037940539419651,-0.11488718539476],[0.045718591660261,-0.071386590600014,0.012063298374414],[0.067696586251259,-0.090096712112427,0.076376795768738]],[[0.051679346710443,0.04377368837595,-0.10978536307812],[0.031030898913741,-0.01389654353261,-0.10502579063177],[0.054867498576641,-0.040674477815628,0.083110369741917]],[[0.11917841434479,-0.060448586940765,0.068598300218582],[-0.093758642673492,0.096124395728111,0.11197030544281],[0.041434284299612,-0.082740798592567,0.18897086381912]],[[0.060898125171661,0.021111847832799,-0.082335382699966],[0.057745207101107,-0.045532066375017,-0.20316402614117],[0.044246345758438,-0.080998562276363,-0.010178783908486]],[[-0.12196578830481,-0.004883554764092,0.079191237688065],[0.054860133677721,-0.10437353700399,0.022719211876392],[-0.046753361821175,-0.092679232358932,-0.089070998132229]],[[0.010741497389972,-0.12091166526079,-0.011168272234499],[-0.004988947417587,0.072087414562702,-0.11914441734552],[0.08807872235775,-0.14069601893425,-0.087816916406155]],[[-0.05130922049284,0.076391957700253,0.1166569814086],[0.13697700202465,-0.29348999261856,-0.15813073515892],[0.04226702824235,0.036810871213675,-0.14317442476749]],[[-0.038559358566999,-0.025752076879144,-0.029738124459982],[-0.015079151839018,-0.020570496097207,-0.027647633105516],[-0.09419921040535,-0.010258920490742,0.092794001102448]],[[0.23527528345585,0.033299889415503,-0.12751521170139],[0.11968652904034,-0.077852867543697,-0.057191215455532],[0.045665696263313,-0.13695414364338,0.070998542010784]],[[0.14088568091393,0.06275499612093,-0.0345100723207],[0.0046330587938428,-0.019709970802069,0.0056757698766887],[-0.046113923192024,-0.1089410930872,-0.20409008860588]],[[0.023841692134738,0.080385789275169,-0.15261352062225],[0.0088533293455839,-0.013080785982311,0.03726327046752],[0.011032088659704,0.019776752218604,0.028887625783682]],[[-0.00084604282164946,0.011592350900173,0.10580798238516],[0.037263307720423,-0.079190351068974,0.0396673604846],[-0.015912689268589,-0.0020620960276574,0.11619777977467]],[[0.032572239637375,-0.054168090224266,0.0059393113479018],[-0.059441570192575,0.11430002003908,-0.050156977027655],[0.026541152969003,-0.064850509166718,-0.2089572250843]],[[0.088487349450588,0.018934745341539,-0.024239186197519],[-0.039825987070799,0.080596253275871,0.10170037299395],[-0.004002797883004,-0.090516045689583,-0.057757623493671]],[[-0.017129754647613,0.0033799982629716,0.011504340916872],[0.046863429248333,0.1004628688097,-0.018999788910151],[0.043380051851273,-0.1219220533967,0.07511742413044]],[[-0.044685568660498,-0.074801661074162,-0.036162603646517],[0.034069612622261,-0.073719762265682,0.078691259026527],[0.067328728735447,-0.095350123941898,-0.14496655762196]],[[-0.028434216976166,0.025266531854868,0.13154388964176],[0.029026111587882,-0.10220777988434,-0.082806751132011],[0.19219778478146,-0.024931207299232,-0.050744019448757]],[[0.053075421601534,-0.032126810401678,-0.048392079770565],[0.042679503560066,0.0062389224767685,-0.04482701048255],[0.017108654603362,0.029694933444262,-0.059324573725462]],[[-0.073631025850773,0.033701557666063,0.068523749709129],[0.068600885570049,-0.11474116891623,-0.081469044089317],[-0.092274382710457,-0.022172790020704,0.14288957417011]],[[-0.064340949058533,0.14374721050262,-0.042765900492668],[0.092865452170372,0.13081315159798,0.062420696020126],[0.0085897091776133,-0.035404287278652,-0.11863788962364]],[[0.050172448158264,-0.045631140470505,-0.01824345625937],[0.010868679732084,0.034376513212919,0.16322746872902],[-0.057502690702677,-0.0047515942715108,-0.091319359838963]],[[0.046680144965649,0.013284113258123,-0.073254093527794],[-0.085184387862682,0.10731709003448,-0.20881676673889],[0.038746859878302,0.065558329224586,0.080025151371956]],[[-0.035633999854326,-0.10132803022861,-0.057725086808205],[0.15332427620888,0.14702482521534,-0.028700191527605],[-0.076550170779228,0.03895877301693,0.047610834240913]],[[-0.025040809065104,-0.11494758725166,0.022589167580009],[0.027472112327814,-0.25614222884178,-0.026813980191946],[0.034245889633894,-0.03911979496479,-0.036208607256413]],[[0.002656003460288,-0.039669889956713,0.075193226337433],[0.046105623245239,0.028613464906812,-0.033139191567898],[0.08345989137888,0.14031095802784,0.15644308924675]],[[-0.0080430330708623,-0.03616851568222,-0.14452034235001],[-0.018814586102962,0.042932517826557,-0.069843858480453],[-0.0038823876529932,0.1437750607729,-0.027870694175363]],[[0.014061593450606,-0.041827451437712,-0.047723647207022],[-0.038876075297594,0.023958614096045,-0.023037612438202],[0.092430964112282,-0.0037373495288193,0.020394876599312]],[[-0.021987918764353,0.017666719853878,0.030259950086474],[0.07899846881628,-0.083460845053196,0.011627818457782],[0.022878499701619,-0.023527212440968,-0.16405218839645]],[[0.073487848043442,-0.074118994176388,-0.0067381463013589],[0.038814403116703,-0.0064060357399285,-0.053938541561365],[0.026666948571801,0.11246480047703,-0.15266904234886]],[[0.008947036229074,0.05644953623414,-0.096057437360287],[0.0098090516403317,0.11419253051281,-0.0077202934771776],[-0.16289888322353,0.024214589968324,0.020619608461857]],[[-0.09959401935339,0.017926678061485,0.024701861664653],[-0.039722457528114,0.0011749221011996,-0.056699816137552],[0.052220024168491,-0.088961638510227,-0.043798629194498]],[[0.045709870755672,0.094792895019054,0.0075300424359739],[0.021049346774817,0.034717865288258,0.010424400679767],[-0.14966417849064,-0.03159648925066,0.083962135016918]],[[0.0042857015505433,0.03701151534915,0.098094277083874],[0.080607801675797,0.054656695574522,-0.034421656280756],[0.12172468006611,-0.068603061139584,-0.20077322423458]],[[-0.050990466028452,-0.092547103762627,0.059401448816061],[0.04997380822897,-0.076312161982059,-0.06825315207243],[0.032277505844831,0.030166821554303,-0.031810767948627]],[[-0.099465698003769,0.1283613294363,0.050298321992159],[0.054516900330782,2.1198698959779e-05,-0.054218664765358],[-0.037820342928171,-0.1201982870698,0.015913059934974]],[[-0.05006730183959,0.022658903151751,0.021300107240677],[0.0077987303957343,0.036654055118561,0.012647580355406],[-0.0024868680629879,-0.089281365275383,-0.0012865458847955]],[[0.00082666840171441,0.088593550026417,-0.0027895588427782],[0.025798197835684,-0.14732937514782,0.049222242087126],[-0.033089641481638,-0.065855331718922,0.26783576607704]],[[0.080009542405605,-0.02146703004837,0.0086399652063847],[0.093154393136501,-0.057232450693846,0.097815379500389],[0.017983743920922,-0.17159602046013,-0.11264241486788]],[[-0.06915183365345,0.031431090086699,0.32293203473091],[-0.037402078509331,-0.013282650150359,0.032294034957886],[0.0025142626836896,-0.10296003520489,-0.064365670084953]],[[0.001057012588717,-0.014081811532378,0.11835658550262],[0.010954494588077,0.14611820876598,0.11933796107769],[0.10952633619308,-0.055942703038454,0.10669170320034]],[[-0.23328259587288,-0.051099341362715,0.040727887302637],[-0.10261634737253,-0.10756865888834,0.056106835603714],[0.12292014807463,-0.015358730219305,0.097044952213764]],[[-0.052771840244532,-0.046578247100115,-0.13202615082264],[-0.047027084976435,0.044141512364149,0.09891864657402],[0.072038494050503,0.027394186705351,0.26342669129372]],[[0.12987615168095,0.044719461351633,-0.0039186924695969],[-0.091103091835976,0.0656473711133,-0.012035800144076],[0.082791365683079,0.025898257270455,-0.15203514695168]],[[0.10869991779327,-0.042768590152264,0.064565233886242],[-0.10371426492929,-0.085393637418747,-0.11995045095682],[0.085755042731762,0.0072359009645879,-0.076277300715446]],[[0.077163621783257,-0.072437070310116,0.065047658979893],[-0.086358822882175,-0.055824998766184,0.044117551296949],[-0.021370649337769,-0.12000054121017,0.018665600568056]],[[-0.005101184360683,-0.063102342188358,0.053531780838966],[0.056038599461317,-0.050110917538404,0.035926640033722],[0.014239220879972,-0.11494724452496,0.070926807820797]],[[0.023821834474802,0.0291797965765,-0.051984924823046],[0.04882937297225,0.016299713402987,0.051911752671003],[-0.19839197397232,0.076970241963863,0.08118050545454]]],[[[-0.15991893410683,0.035723496228456,0.055051255971193],[0.039242278784513,0.02459792047739,0.055640198290348],[0.093914732336998,0.15762305259705,-0.052056767046452]],[[-0.029455298557878,0.072241611778736,0.16674722731113],[-0.13839529454708,-0.077646784484386,0.091035135090351],[0.05348201841116,0.06220780685544,-0.12769135832787]],[[0.064776860177517,0.048759087920189,0.091022938489914],[0.049643263220787,-0.014930575154722,0.027603158727288],[0.013780529610813,-0.18092322349548,-0.047882135957479]],[[-0.041174225509167,-0.068324707448483,-0.058739021420479],[0.054180964827538,-0.16964587569237,-0.094217151403427],[-0.19364352524281,-0.086167924106121,0.11660221219063]],[[0.089153774082661,0.032404784113169,-0.0038141659460962],[-0.011725376360118,0.0048689944669604,0.1122585311532],[0.071730926632881,0.074121184647083,-0.046004321426153]],[[-0.13938511908054,0.031598817557096,-0.027851976454258],[0.094070389866829,0.095029033720493,0.069536209106445],[-0.082300819456577,-0.05110352113843,0.090285412967205]],[[0.11629608273506,0.0021111569367349,-0.11010321974754],[0.14841546118259,-0.010539664886892,-0.1676229685545],[0.096562467515469,-0.19217143952847,0.031945060938597]],[[0.0056466879323125,-0.0080319233238697,0.084592171013355],[-0.040465284138918,0.039336122572422,0.0081219850108027],[-0.077934041619301,0.019081205129623,0.048209346830845]],[[0.030265158042312,0.032022558152676,0.039209198206663],[0.018896779045463,-0.053039010614157,-0.095142036676407],[0.012044766917825,0.0065506184473634,0.0005184676265344]],[[-0.0064520733430982,0.021624566987157,-0.1784391105175],[-0.0084102200344205,0.017161587253213,0.0026162990834564],[-0.037041667848825,-0.055552162230015,-0.039739076048136]],[[-0.07060918956995,-0.06657463312149,-0.092750996351242],[0.070951797068119,-0.036103613674641,0.0016286544268951],[0.0094407498836517,-0.0026037816423923,0.096618786454201]],[[-0.063028275966644,-0.1547369658947,0.094710670411587],[-0.2024795114994,-0.040034595876932,0.084098875522614],[-0.12287471443415,0.18841372430325,0.075708851218224]],[[-0.069500185549259,-0.022510396316648,0.055106803774834],[-0.066245719790459,-0.05931269749999,-0.01945742033422],[0.094370469450951,-0.15005598962307,-0.057204764336348]],[[-0.0092982463538647,0.035692363977432,0.045853406190872],[-0.13268998265266,-0.208351790905,0.036986265331507],[-0.026596009731293,0.088203206658363,-0.10585786402225]],[[0.060429319739342,-0.036248024553061,0.094564743340015],[0.0054269270040095,-0.046417467296124,0.0018513672985137],[0.11053088307381,0.015822976827621,-0.13967657089233]],[[-0.0044825891964138,-0.07995430380106,-0.069859609007835],[0.03287098929286,0.025885106995702,-0.0094458013772964],[0.01721416413784,-0.055312104523182,0.095616936683655]],[[-0.042443942278624,-0.071808077394962,0.13407270610332],[0.00024073946406133,0.023321436718106,-0.080473780632019],[0.073177054524422,-0.077337570488453,-0.10965945571661]],[[-0.12583330273628,-0.0019477418391034,0.046319857239723],[-0.013393400236964,-0.065326526761055,0.13014674186707],[0.10506452620029,-0.018401637673378,0.030682111158967]],[[-0.077019847929478,0.039597757160664,0.24491372704506],[-0.19337072968483,0.10331963002682,0.18418468534946],[-0.16131049394608,0.0045478488318622,-0.10997477173805]],[[-0.1634421646595,0.074394755065441,-0.069720901548862],[-0.081507854163647,0.047851160168648,0.1170072183013],[-0.020158067345619,-0.011804897338152,-0.17277619242668]],[[0.058871552348137,0.015157677233219,-0.14259673655033],[-0.11153367906809,-0.11693405359983,0.056064046919346],[0.016328586265445,-0.10189507901669,0.085040278732777]],[[-0.15810641646385,-0.053143288940191,0.10805182158947],[0.014013709500432,0.037548627704382,0.008011830970645],[-0.048815201967955,-0.0058431616052985,0.083947524428368]],[[-0.080480828881264,-0.14536574482918,0.023861026391387],[-0.15282864868641,-0.026128862053156,0.064047545194626],[-0.07299992442131,0.0039764894172549,0.1573775857687]],[[-0.068056710064411,0.032292444258928,0.0021622974891216],[0.10852412879467,-0.10467796772718,0.12698565423489],[0.021507719531655,0.021075624972582,0.08106255531311]],[[-0.046481043100357,-0.0064963037148118,-0.029813639819622],[0.10620342940092,0.11651607602835,0.028145227581263],[-0.016027752310038,-0.041013542562723,0.023494279012084]],[[-0.055247358977795,-0.028216250240803,-0.083910308778286],[-0.085281826555729,-0.052583269774914,-0.12107162922621],[-0.10578722506762,-0.20240923762321,-0.0035234214738011]],[[0.055353477597237,-0.11288914084435,-0.055539894849062],[0.055500503629446,-0.057685941457748,0.055720847100019],[-0.028807615861297,0.13207092881203,-0.085831105709076]],[[0.0012761548859999,-0.082073032855988,0.041193589568138],[-0.19161710143089,0.038765758275986,-0.024846373125911],[0.10065491497517,0.0024182852357626,-0.17619031667709]],[[0.060985241085291,-0.015667464584112,0.086597166955471],[0.10323895514011,-0.012563671916723,-0.12992851436138],[0.096630685031414,-0.056583024561405,-0.019477277994156]],[[-0.0067162490449846,0.064496539533138,0.16772778332233],[0.053170476108789,-0.11395766586065,0.052947446703911],[-0.038918755948544,-0.12691394984722,-0.076495930552483]],[[-0.064235918223858,-0.085094071924686,-0.031846322119236],[-0.14353872835636,0.0067705470137298,0.17192858457565],[-0.079652264714241,-0.040974669158459,0.23126764595509]],[[0.013765511102974,-0.024324990808964,-0.17394933104515],[-0.068220257759094,0.10449449717999,-0.0073442300781608],[-0.041793700307608,0.047935388982296,0.10220958292484]],[[-0.012505168095231,0.046188231557608,0.011006466113031],[-0.086855739355087,0.04722847416997,-0.032685410231352],[-0.038337875157595,-0.0012625299859792,-0.019320631399751]],[[-0.1950897872448,0.18080168962479,0.080683685839176],[-0.11148375272751,-0.064570732414722,0.0091448277235031],[-0.006326534319669,-0.092792212963104,-0.085440263152122]],[[0.1607458293438,0.093870535492897,0.14477531611919],[-0.076306253671646,0.054911211133003,0.036606196314096],[-0.16774095594883,-0.062252689152956,0.023708635941148]],[[-0.0037788106128573,0.039876811206341,-0.072721675038338],[-0.077793523669243,0.063201420009136,-0.088513307273388],[-0.026856580749154,-0.042605720460415,-0.021047543734312]],[[0.048245768994093,0.0063515165820718,-0.1005647778511],[0.064814358949661,-0.037035092711449,-0.063182346522808],[-0.12105467915535,-0.07181915640831,-0.074576877057552]],[[-0.14562129974365,-0.19531841576099,0.19809548556805],[-0.14675775170326,-0.12967374920845,0.1321836411953],[-0.14698950946331,-0.036399286240339,0.052423644810915]],[[-0.15818192064762,-0.14561659097672,0.055146396160126],[-0.086708769202232,-0.012470122426748,-0.021381806582212],[-0.15039257705212,0.02673226967454,0.15750612318516]],[[-0.029484568163753,-0.0089575555175543,0.011014917865396],[-0.034848384559155,0.0053558116778731,0.003307368606329],[0.00049192312872037,0.021087311208248,-0.11126884073019]],[[0.052263375371695,0.024345742538571,-0.020828349515796],[0.046087313443422,-0.136853992939,-0.0083780307322741],[-0.098051562905312,-0.039266590029001,0.090589746832848]],[[0.11462409794331,0.098019286990166,-0.047883331775665],[0.07065087556839,-0.068123146891594,-0.18186537921429],[-0.12385489791632,-0.21891088783741,-0.27288630604744]],[[0.0205033197999,0.068866141140461,0.096742652356625],[0.025301473215222,-0.14814880490303,-0.11191622912884],[-0.14485456049442,0.019243972375989,0.12993128597736]],[[0.054837379604578,0.045053225010633,0.068281397223473],[-0.067048065364361,-0.015123839490116,-0.066212423145771],[-0.05813442543149,0.073282428085804,-0.0075512258335948]],[[0.097572326660156,0.10839506983757,0.010062161833048],[0.016090754419565,-0.058815881609917,-0.045488271862268],[-0.072015278041363,-0.14622403681278,-0.1804334372282]],[[-0.04299084097147,-0.02517406269908,-0.11859578639269],[-0.048736959695816,-0.080073162913322,0.044099155813456],[-0.095138266682625,-0.032453045248985,0.036438062787056]],[[-0.055284779518843,0.075443722307682,-0.029662981629372],[-0.046449963003397,0.080045364797115,0.077993646264076],[-0.07696320861578,-0.055375587195158,0.059177812188864]],[[-0.018353307619691,0.030572509393096,-0.0059488648548722],[0.074008494615555,0.062697641551495,-0.16825278103352],[0.16477209329605,0.043329652398825,0.032099492847919]],[[-0.070387482643127,0.060886364430189,0.005062525626272],[-0.083784371614456,-0.0078778406605124,0.068101450800896],[-0.11586603522301,0.13857750594616,0.10357163101435]],[[0.0054284455254674,0.069660358130932,-0.015609784983099],[0.032153476029634,-0.020933302119374,-0.096164911985397],[-0.11787740886211,0.058962989598513,0.0050242128781974]],[[0.11249746382236,-0.091563664376736,0.059713717550039],[-0.010872558690608,0.00062297697877511,-0.028098471462727],[0.0079644480720162,0.074840657413006,-0.1516537964344]],[[0.056554295122623,-0.011362615972757,0.037625104188919],[-0.033083133399487,0.035413764417171,-0.0089252172037959],[-0.04383048415184,0.0095113394781947,0.05196325480938]],[[-0.061134546995163,-0.15697182714939,-0.01861128769815],[-0.045124497264624,0.040383089333773,-0.071694023907185],[-0.04864477366209,0.086853176355362,0.072032988071442]],[[-0.14525821805,0.0025937797036022,-0.016097094863653],[-0.15777064859867,0.058322373777628,0.071659006178379],[0.00088611518731341,-0.1439039260149,-0.016027610749006]],[[-0.012777237221599,-0.042911663651466,-0.030936539173126],[-0.075474001467228,0.012344791553915,-0.19561591744423],[-0.086649559438229,-0.074062936007977,-0.04044034704566]],[[-0.0041454532183707,0.028505444526672,0.031214328482747],[-0.013484999537468,-0.1925860196352,-0.0076204361394048],[0.0028415024280548,-0.059487495571375,-0.16176454722881]],[[-0.11887343972921,-0.0084273694083095,0.078435450792313],[-0.059823255985975,0.03190840035677,0.19244861602783],[0.011049366556108,0.030107736587524,0.11328457295895]],[[-0.053218375891447,0.052508488297462,-0.011984206736088],[-0.030883599072695,-0.17393754422665,-0.085749574005604],[-0.015708312392235,0.012672350741923,-0.096210815012455]],[[-0.031351216137409,0.062997333705425,-0.004794780164957],[-0.037618197500706,-0.036571923643351,0.064968310296535],[0.055602021515369,0.0028525681700557,0.0062545323744416]],[[0.080822393298149,0.12564037740231,0.15722312033176],[0.10057054460049,0.086593806743622,0.019153866916895],[-0.010935164056718,-0.017622092738748,-0.05014281347394]],[[-0.087927013635635,-0.044198039919138,0.026587586849928],[0.05359360575676,-0.022537497803569,-0.085034839808941],[0.021042741835117,0.081607297062874,-0.051362305879593]],[[0.090792164206505,0.098291732370853,0.010707725770772],[0.046351827681065,-0.0041258884593844,-0.016369054093957],[-0.069494463503361,-0.00022333201195579,-0.082490712404251]],[[-0.24976243078709,-0.1740690767765,-0.063331753015518],[-0.27467745542526,-0.13058896362782,0.0058119278401136],[-0.054030142724514,0.11924155801535,0.26937901973724]],[[-0.051730781793594,-0.0076360525563359,-0.060500141233206],[-0.11736742407084,0.029024599120021,-0.11262826621532],[-0.12455746531487,-0.0048323119990528,0.047274220734835]]]],"nOutputPlane":64,"kW":3,"kH":3,"bias":[-0.00588050018996,0.0008885528659448,-0.0057445778511465,-0.0035950150340796,-0.0015332452021539,-0.048650950193405,-0.0030352203175426,-0.0023438697680831,-0.0049941455945373,0.0018939082510769,-0.0030656384769827,-0.011646983213723,-0.0099629564210773,-0.005798801779747,-0.011946951970458,-0.0031217276118696,-0.010976647958159,-0.0047516878694296,0.0043024607002735,-0.0032059801742435,-0.0080632520839572,-0.0049681682139635,5.7128509070026e-05,-0.0015297307400033,0.0015176525339484,-0.0076840720139444,0.0010468447580934,-0.010081626474857,-0.0021154887508601,-0.0031456560827792,0.0029334740247577,-0.0034899509046227,0.0032497881911695,-0.0028147180564702,-0.0065538082271814,-0.054927051067352,-0.01054963003844,0.0020889812149107,-0.0014902936527506,-0.003754778765142,-0.0033093597739935,-0.0033519377466291,-0.0098138032481074,0.0025215896312147,0.0048941071145236,-0.012393111363053,-0.0053693554364145,-0.0033873543143272,-0.0011144878808409,-0.017202230170369,-0.0097322249785066,0.0021081063896418,-0.0035756335128099,-0.0051966747269034,-0.0016549455467612,-0.0036366453859955,-0.0067147053778172,-0.010736564174294,-0.0074983248487115,0.00012872797378805,-0.004280676599592,0.0043212152086198,-0.0056016431190073,0.0005356929032132],"nInputPlane":64},{"weight":[[[[0.057490475475788,0.024424266070127,0.0123131563887],[0.044238872826099,0.054165184497833,0.00040905419155024],[-0.023657182231545,0.045819412916899,0.056803204119205]],[[0.025098269805312,-0.0031940720509738,-0.030848115682602],[0.008911638520658,-0.032486744225025,-0.025963351130486],[-0.020227555185556,-0.0037898113951087,0.0012706907000393]],[[0.074432089924812,0.0063604894094169,-9.6284507890232e-05],[-0.079526036977768,-0.034771218895912,0.041900735348463],[0.088307298719883,-0.11181112378836,0.02748336084187]],[[0.030196918174624,0.065525971353054,-0.029654875397682],[0.047660797834396,-0.038515876978636,-0.012766025960445],[0.066562280058861,0.053421247750521,-0.075568400323391]],[[0.027825843542814,-0.034076027572155,0.015690747648478],[0.010821704752743,0.0083595179021358,0.048261016607285],[0.035233426839113,0.01177890598774,0.044977597892284]],[[-0.055702801793814,-0.077520847320557,-0.061925463378429],[-0.01161418389529,-0.14454047381878,-0.09969686716795],[-0.080800250172615,0.020730279386044,0.39606532454491]],[[-0.020549908280373,0.032465070486069,-0.028819024562836],[-0.035137470811605,-0.10957474261522,-0.026460880413651],[0.014653016813099,-0.044947620481253,0.04864951223135]],[[0.012006427161396,-0.011734962463379,-0.068662464618683],[-0.0099011724814773,0.02654417231679,0.039787832647562],[0.026894859969616,0.056056674569845,-0.019474068656564]],[[0.00658805295825,0.013640061952174,-0.075956515967846],[0.030958840623498,-0.054709959775209,0.016581788659096],[-0.025979811325669,0.020230315625668,-0.083015702664852]],[[0.0045374510809779,-0.052606347948313,-0.038639008998871],[-0.0029850178398192,0.018107647076249,0.011879061348736],[-0.034079525619745,0.038025170564651,0.0051992926746607]],[[-0.056552533060312,0.033428091555834,0.02742862328887],[0.0068782432936132,-0.0022884358186275,0.05497869104147],[0.019892385229468,0.034187104552984,0.064406290650368]],[[-0.022412111982703,0.022473536431789,-0.036384452134371],[-0.0079030031338334,-0.041935730725527,0.024744169786572],[-0.0077842087484896,-0.014374236576259,0.017363710328937]],[[-0.0032974982168525,-0.020477242767811,-0.026848437264562],[0.055415846407413,0.042664930224419,-0.028222614899278],[0.013534119352698,0.015323984436691,0.0066066198050976]],[[0.010767553932965,0.067542605102062,-0.002415593713522],[0.067257232964039,0.10126411914825,0.049768533557653],[0.010306227952242,0.028102241456509,0.027672164142132]],[[0.0064562293700874,0.014989290386438,0.022310078144073],[0.030560780316591,-0.029958231374621,-0.093896195292473],[0.0083921896293759,-0.097458556294441,-0.081351555883884]],[[-0.033287081867456,0.040691759437323,-0.0037188164424151],[-0.090744622051716,0.0096593517810106,0.10924032330513],[-0.03691204637289,0.028126608580351,-0.00065487017855048]],[[-0.012311868369579,-0.027831403538585,0.035293143242598],[-0.03675327450037,0.026084195822477,-0.0003201843064744],[-0.0013770778896287,-0.025969948619604,0.067314885556698]],[[0.051584471017122,0.049562133848667,-0.035351347178221],[0.019375065341592,0.027521701529622,0.031016688793898],[-0.019425548613071,-0.0085175130516291,0.017988182604313]],[[-0.083816275000572,0.05156509950757,-0.01202623359859],[0.016439139842987,0.052641656249762,-0.018962368369102],[-0.02639683149755,0.025602484121919,-0.091230764985085]],[[0.060908231884241,-0.025900181382895,0.058661621063948],[0.023653225973248,-0.10749370604753,0.020098509266973],[-0.06341340392828,0.0049540544860065,0.093887500464916]],[[0.10967432707548,-0.016219900920987,-0.015334856696427],[-0.06545601785183,-0.031196178868413,-0.016071271151304],[-0.040282692760229,0.022548081353307,-0.02813876606524]],[[-0.073507837951183,0.059289589524269,-0.061032675206661],[-0.033611331135035,-0.0031893302220851,0.038949109613895],[0.066117256879807,0.024883575737476,0.0092931222170591]],[[0.011387258768082,0.029768045991659,-0.032295849174261],[0.0026405754033476,0.044829584658146,-0.033475421369076],[-0.029859248548746,-0.029417298734188,0.047985099256039]],[[0.01310364343226,-0.0019607776775956,-0.0122737204656],[-0.035563327372074,0.072518013417721,0.019530007615685],[-0.017203064635396,-0.062778271734715,-0.088711626827717]],[[0.011615424416959,0.021802751347423,0.064195692539215],[-0.0036022081039846,-0.073359236121178,0.079825028777122],[0.014025915414095,-0.022880768403411,0.098528251051903]],[[0.036934982985258,-0.043688371777534,-0.021446827799082],[-0.0099521381780505,0.008855827152729,-0.063563510775566],[-0.035784896463156,-0.0018949622754008,-0.069608896970749]],[[0.018126748502254,0.058518696576357,-0.016778944060206],[-0.0031865194905549,-0.066646255552769,-0.04864801093936],[-0.049026668071747,-0.0082383044064045,0.050653260201216]],[[0.026749864220619,0.028257772326469,0.075704470276833],[-0.06150995567441,-0.043136823922396,0.0018623765790835],[0.04309618473053,-0.029822058975697,-0.06560655683279]],[[-0.048037022352219,0.0067984662018716,-0.0262232683599],[-0.06684735417366,0.051423795521259,-0.032804355025291],[-0.064779959619045,0.078842416405678,-0.092126175761223]],[[-0.10024490207434,-0.00091493740910664,0.014414214529097],[0.012855967506766,-0.022909330204129,-0.0068834717385471],[-0.0096503002569079,0.013863364234567,0.0031949991825968]],[[-0.00074354751268402,-0.049272757023573,0.02442342787981],[0.010396736674011,0.0017379871569574,-0.051287647336721],[-0.049824014306068,0.067909918725491,-0.063644461333752]],[[0.053592152893543,0.0082248579710722,0.061490826308727],[-0.070562213659286,-0.009929908439517,0.050609234720469],[-0.031831685453653,0.025508096441627,0.077215440571308]],[[-0.0089393397793174,-0.013663036748767,-0.096471913158894],[0.00384336640127,-0.023847486823797,-0.098366037011147],[0.040819313377142,0.012137997895479,0.0055614495649934]],[[-0.025651127099991,-0.031228262931108,-0.0040043103508651],[-0.018861625343561,-0.0027651425916702,-0.05550542101264],[-0.0096488911658525,-0.046935725957155,-0.10113690048456]],[[0.0043826154433191,-0.016593964770436,-0.01816220767796],[0.0061434167437255,0.0036661422345787,-0.011344153434038],[0.016752233728766,-0.0078065926209092,0.067526139318943]],[[0.072069771587849,0.14092692732811,-0.0006841272697784],[0.038020312786102,-0.037326920777559,-0.15227408707142],[0.0086456807330251,-0.068526245653629,-0.061083875596523]],[[-0.026125621050596,-0.049962982535362,-0.033507589250803],[-0.057458806782961,0.040792226791382,-0.092514619231224],[0.085379667580128,0.073058359324932,-0.036160461604595]],[[0.048712436109781,-0.0064395824447274,-0.058938771486282],[-0.062372919172049,0.04318818077445,0.034334067255259],[-0.066489949822426,-0.033247537910938,0.015830794349313]],[[0.023420488461852,0.0058820494450629,0.058108020573854],[-0.026669761165977,-0.038359675556421,0.0015968724619597],[0.010657757520676,-0.042091444134712,-0.020176127552986]],[[0.051668576896191,-0.05138898640871,0.10772652924061],[-0.064140819013119,0.00068346003536135,-0.01126957219094],[-0.0161407366395,-0.019176056608558,0.048012889921665]],[[0.058866448700428,-0.038210183382034,-0.054962132126093],[-0.038442071527243,-0.048889815807343,0.011876062490046],[0.0358070358634,-0.04786915704608,0.11352518945932]],[[0.0038925509434193,-0.098263874650002,-0.061889298260212],[-0.048672702163458,-0.086644016206264,0.15657563507557],[-0.026065360754728,0.023449001833797,0.016877923160791]],[[0.0031220603268594,0.030294295400381,-0.040436279028654],[0.030143849551678,-0.030166123062372,0.0018808012828231],[0.03501695767045,-0.024456890299916,-0.020894767716527]],[[0.030094727873802,-0.029359739273787,-0.010611729696393],[0.028032619506121,0.081811614334583,0.0085378531366587],[-0.010235127061605,-0.067359328269958,0.0056078489869833]],[[0.063608817756176,-0.10641438513994,0.012477664276958],[-0.048294708132744,-0.019357915967703,0.093706138432026],[-0.09554086625576,-0.18545468151569,0.088998936116695]],[[0.075658015906811,-0.0023660082370043,0.058632891625166],[-0.036627519875765,-0.068165957927704,-0.042745314538479],[-0.023930886760354,0.075908668339252,-0.0032120491378009]],[[0.0052124373614788,0.04598331078887,-0.035377740859985],[0.073252037167549,-0.042023103684187,-0.01953143812716],[-0.0037075493019074,-0.039215788245201,0.0085326256230474]],[[0.022535784170032,-0.048970781266689,-0.0472242385149],[-0.00030927485204302,0.023450057953596,0.10014520585537],[-0.022014789283276,-0.046125292778015,0.10822436213493]],[[-0.021631916984916,-0.05205625295639,-0.021020395681262],[0.016913620755076,0.016917113214731,0.025785116478801],[0.045778542757034,0.071696050465107,0.013874220661819]],[[0.092834569513798,-0.021773427724838,-0.084193624556065],[0.00080268643796444,0.075051724910736,-0.0066963508725166],[0.032783515751362,-0.004311163444072,-0.061106398701668]],[[-0.044177316129208,-0.036269266158342,0.011120396666229],[-0.0088857924565673,-0.0070412284694612,-0.015651861205697],[-0.020877115428448,-0.060435753315687,0.025608878582716]],[[0.031964797526598,0.015347635373473,0.040287367999554],[0.026118198409677,-0.061224263161421,-0.010450465604663],[0.045701757073402,0.045623760670424,0.080278061330318]],[[-0.0063673839904368,-0.059629004448652,-0.017277602106333],[-0.095323592424393,0.03365844860673,-0.042275190353394],[0.070890486240387,-0.01724780164659,0.054072812199593]],[[-0.032394893467426,0.0778439193964,0.045655839145184],[0.05728368461132,0.10090175271034,0.031390301883221],[0.067508645355701,0.02617753483355,0.09011796861887]],[[0.06373319029808,-0.039608605206013,0.00097788206767291],[-0.049176931381226,-0.015178821049631,-0.081582270562649],[-0.068346507847309,0.049371227622032,0.10296021401882]],[[-0.033421650528908,0.00046100449981168,0.044063609093428],[0.0054223691113293,-0.040919408202171,0.031071081757545],[-0.011423260904849,0.039888340979815,0.048153396695852]],[[0.0030145815107971,0.0050787497311831,-0.016938524320722],[-0.0013002631021664,0.037487212568521,-0.040346499532461],[0.009898011572659,0.06709835678339,-0.026408787816763]],[[-0.012832637876272,-0.02829422801733,0.038168858736753],[0.040014736354351,-0.012297215871513,0.025244139134884],[0.0090068988502026,-0.034721374511719,0.14560121297836]],[[0.026308793574572,-0.031174747273326,0.098475150763988],[-0.017727747559547,0.058107748627663,0.073428057134151],[-0.02524422109127,-0.023315483704209,-0.050139062106609]],[[-0.051358316093683,-0.0080450642853975,0.012129018083215],[-0.0023035989142954,-0.0010637373197824,0.050300426781178],[0.037877805531025,-0.01945005916059,0.083907723426819]],[[-0.012264456599951,0.0053733545355499,0.023043068125844],[0.011801825836301,-0.004133720882237,-0.011553588323295],[0.044437631964684,-0.056451205164194,0.053788248449564]],[[0.01317900326103,0.017722150310874,-0.0054724258370697],[-0.013614728115499,0.0036975510884076,-0.038834195584059],[0.025579111650586,0.056095857173204,-0.049222454428673]],[[0.039022546261549,0.030021831393242,-0.0081868125125766],[-0.068925559520721,0.006389997433871,0.022943884134293],[0.061004232615232,0.0593651086092,-0.079835422337055]],[[-0.040938638150692,-0.0041858167387545,0.015221467241645],[0.027779595926404,-0.021811448037624,0.020642280578613],[0.03584698215127,0.053056746721268,-0.039633218199015]]],[[[0.076001584529877,-0.035047128796577,-0.010594204068184],[-0.11570375412703,-0.039639748632908,-0.01226644963026],[-0.010238668881357,0.048394445329905,0.055595811456442]],[[0.014921276830137,0.0030122802127153,-0.0091522205621004],[-0.030323712155223,-0.014739056117833,-0.052096471190453],[-0.047472935169935,-0.019445788115263,-0.032108020037413]],[[-0.045681804418564,0.084475889801979,-0.0036383813712746],[-0.041429340839386,-0.039420887827873,-0.015286589041352],[-0.0021122288890183,0.036651756614447,0.019511202350259]],[[-0.048039074987173,-0.039812233299017,0.026195390149951],[-0.068071030080318,0.027530780062079,0.041500397026539],[-0.013479750603437,0.10074186325073,-0.037952907383442]],[[-0.01236835680902,-0.023888310417533,0.045660942792892],[-0.039715755730867,0.013965195976198,0.021863793954253],[0.02130570076406,-0.011293378658593,-0.025177968665957]],[[-0.11487065255642,0.12885531783104,0.022247202694416],[-0.046521548181772,-0.011421092785895,0.038009751588106],[0.076361030340195,-0.035222485661507,-0.052596967667341]],[[0.013309475034475,0.043695371598005,0.044596582651138],[-0.00019431153486948,-0.014151317998767,-0.023230101913214],[-0.02238960377872,0.0077471653930843,-0.0044370084069669]],[[0.044427376240492,-0.09182408452034,0.0020667747594416],[0.018005786463618,0.028559846803546,-0.11029657721519],[0.029240868985653,-0.016750641167164,-0.0017435136251152]],[[-0.042866095900536,-0.044136561453342,-0.080969385802746],[-0.016217045485973,-0.0028232363983989,0.018925102427602],[-0.012138810008764,0.009456449188292,0.024911085143685]],[[-0.0092808548361063,0.038901168853045,-0.0053901812061667],[0.0096672270447016,-0.056408856064081,0.044837713241577],[-0.011685584671795,-0.060510281473398,-0.0036262436769903]],[[-0.072069749236107,0.10075190663338,-0.007726286072284],[0.0051539693959057,-0.028985626995564,-0.014583325013518],[-0.00049265549750999,0.029074061661959,0.045626241713762]],[[-0.02698171697557,-0.028538813814521,0.026282867416739],[-0.044818595051765,0.093338049948215,-0.063049860298634],[0.039032060652971,-0.0047034132294357,-0.012151048518717]],[[0.040747798979282,0.029930716380477,-0.013875594362617],[-0.023138361051679,0.015293126925826,0.03849296271801],[0.016210775822401,0.033717475831509,-0.022860981523991]],[[0.10993317514658,0.028737904503942,0.075809665024281],[0.016917044296861,0.069706231355667,0.093133188784122],[0.0087267179042101,0.071017630398273,0.078666396439075]],[[0.049811068922281,0.0057391412556171,0.060913275927305],[-0.045413229614496,-0.013154337182641,-0.0082344245165586],[-0.048970736563206,0.084941171109676,-0.0065254885703325]],[[-0.043374534696341,-0.044468972831964,0.075683489441872],[-0.044041901826859,-0.0032980523537844,-0.078749127686024],[0.039492104202509,0.024146173149347,-0.035163968801498]],[[0.0072727170772851,0.059014119207859,0.029906870797276],[0.085096850991249,-0.0030156439170241,-0.052813492715359],[0.014498739503324,0.062247656285763,0.042857721447945]],[[-0.031966466456652,0.043435595929623,-0.036180432885885],[-0.0032204389572144,0.01808550581336,0.0003969999961555],[-0.04765771701932,-0.008316108956933,-0.015038033016026]],[[0.010556996800005,-0.054240871220827,-0.028096210211515],[0.026548629626632,0.065151773393154,-0.0037483449559659],[0.028831593692303,-0.017846267670393,-0.0075420956127346]],[[0.055528860539198,0.022472605109215,0.038179688155651],[0.014463484287262,0.044400259852409,-0.03959909081459],[0.010696165263653,0.016523890197277,0.023829665035009]],[[0.013382633216679,0.099862329661846,0.037011791020632],[0.066188186407089,0.053007669746876,0.085613653063774],[0.040229950100183,0.065342098474503,0.065585188567638]],[[0.12406566739082,0.071591258049011,0.10416403412819],[0.052012834697962,0.020713996142149,-0.054189786314964],[0.0086374180391431,-0.017035724595189,-0.05148783326149]],[[-0.040168981999159,0.051089573651552,0.030405044555664],[-0.029513042420149,-0.0033470736816525,-0.020011208951473],[-0.019505590200424,0.0084935845807195,0.029366200789809]],[[-0.067692212760448,-0.0028115527238697,-0.031853627413511],[0.053620018064976,0.061317548155785,0.0082301590591669],[0.028406808152795,0.057776249945164,0.0041500856168568]],[[0.017258247360587,0.02412579767406,0.030487459152937],[0.024941077455878,0.035355467349291,0.049309089779854],[0.042312074452639,0.064869828522205,0.010251152329147]],[[0.0024449117481709,-0.038698263466358,-0.060920111835003],[0.079011745750904,0.025520138442516,0.0098000569269061],[-0.0061045233160257,-0.068906299769878,-0.021286090835929]],[[0.081835217773914,0.15912927687168,0.037075355648994],[0.050009492784739,-0.041041154414415,-0.026835529133677],[0.016547165811062,0.076078072190285,0.01367358956486]],[[0.050990626215935,0.084809176623821,0.0087120030075312],[-0.012029067613184,0.01140099298209,0.011389424093068],[0.011996202170849,0.0021633966825902,-0.067712672054768]],[[0.026027070358396,-0.037743229418993,-0.029109703376889],[-0.033563192933798,0.14505948126316,0.015271024778485],[-0.018497131764889,0.015095601789653,-0.022868299856782]],[[-0.0038818411994725,0.034236267209053,-0.016793409362435],[0.0048258579336107,-0.052211407572031,0.05110065639019],[-0.040953278541565,0.04091763868928,-0.048531033098698]],[[-0.00087633897783235,0.024816377088428,0.068983778357506],[0.031323477625847,0.0026405295357108,-0.027586735785007],[-0.030233431607485,0.005136460531503,0.020865738391876]],[[0.037064716219902,-0.032893139868975,0.024604240432382],[0.048047311604023,-0.063135907053947,-0.06428200751543],[0.070198282599449,0.010813406668603,-0.066907644271851]],[[-0.00078768015373498,-0.012428839690983,0.014795464463532],[-0.041771717369556,-0.035935867577791,0.0079672811552882],[0.016553247347474,0.012628208845854,0.0048121851868927]],[[-0.039258375763893,0.061674412339926,-0.0013213388156146],[-0.016985403373837,0.012474372982979,-0.010906642302871],[-0.061470087617636,0.022822584956884,0.050112966448069]],[[0.011640098877251,0.019098134711385,-0.0073707224801183],[0.012246232479811,-0.020164838060737,0.012316794134676],[0.0025084570515901,-0.0049511874094605,0.0159478969872]],[[0.014089881442487,0.013874755240977,0.01123455259949],[0.087876334786415,0.0038307774811983,0.050798758864403],[0.041397549211979,0.083366349339485,0.0038361009210348]],[[-0.081435978412628,-0.025860801339149,0.044353079050779],[0.044931937009096,0.062384828925133,-0.031516723334789],[-0.076834164559841,0.039108272641897,-0.025755761191249]],[[-0.063875615596771,-0.065107576549053,0.03946565836668],[0.036038804799318,0.011281916871667,0.011473382823169],[-0.027833044528961,-0.047881118953228,-0.00044912900193594]],[[-0.054331578314304,0.026462694630027,-0.0048641716130078],[-0.023311676457524,0.043064188212156,0.019952237606049],[0.046234108507633,0.0128378784284,0.051372475922108]],[[-0.032131116837263,-0.047095607966185,0.061260554939508],[0.0094089023768902,0.0057638809084892,0.08026547729969],[-0.034581638872623,0.048514794558287,-0.009423547424376]],[[-0.0018390367040411,0.042707052081823,0.035168677568436],[-0.086217284202576,-0.001284314901568,-0.0083334911614656],[0.0034049476962537,-0.0043706749565899,0.069243215024471]],[[0.024217508733273,0.05957642570138,0.018953409045935],[-0.054424479603767,-0.028003308922052,0.023656552657485],[-0.074775174260139,-0.059420756995678,-0.012368637137115]],[[0.054068297147751,0.00024853623472154,0.026087632402778],[0.04525925591588,0.045344807207584,-0.056917995214462],[0.013968080282211,-0.036082848906517,0.044415105134249]],[[-0.090004779398441,-0.01679084263742,0.017087705433369],[-0.074183367192745,-0.014464252628386,-0.03108823299408],[-0.052172858268023,-0.046029336750507,-0.025815570726991]],[[-0.028445530682802,0.067278236150742,-0.080015167593956],[0.040256556123495,0.045156925916672,0.046255849301815],[0.055632952600718,0.063776411116123,-0.0077936947345734]],[[-0.0061384565196931,0.014811875298619,-0.0010442368220538],[0.052623249590397,-0.087609224021435,0.010867580771446],[0.056245587766171,-0.04827880486846,-0.0073603973723948]],[[0.056841846555471,0.023142317309976,0.00034730488550849],[-0.084812633693218,-0.010641809552908,-0.050144422799349],[-0.093891471624374,-0.011501139961183,0.011995618231595]],[[-0.019407449290156,0.029204288497567,0.029935117810965],[0.00060251553077251,-0.011105997487903,-0.022597415372729],[0.030905328691006,0.01764814183116,0.01815046556294]],[[0.027431953698397,0.015220132656395,-0.074286423623562],[0.025673896074295,-0.026122638955712,-0.031845811754465],[0.029999136924744,0.022457027807832,-0.041466344147921]],[[-0.0018126111244783,0.024236982688308,0.043796338140965],[-0.036407992243767,0.016082290560007,0.086982607841492],[-0.0017541726119816,0.040701799094677,0.033867366611958]],[[-0.011210050433874,0.047600619494915,0.030926495790482],[0.070717670023441,0.0032695170957595,-0.018878748640418],[0.046159964054823,0.021700376644731,0.027180410921574]],[[-0.053890828043222,-0.016962381079793,0.020409446209669],[-0.0029220425058156,0.080252952873707,0.019483499228954],[-0.0029218508861959,-0.068701513111591,-0.058820001780987]],[[-0.0078789470717311,0.011810553260148,-0.0092840669676661],[-0.067550525069237,-0.084661707282066,-0.027637595310807],[-0.037768684327602,0.034059155732393,-0.010984887368977]],[[0.07231293618679,0.053124032914639,0.049075543880463],[0.023025427013636,-0.034356199204922,-0.038567915558815],[0.082798078656197,0.018458301201463,0.063093714416027]],[[0.043225344270468,0.05863169953227,0.0081417206674814],[-0.011598602868617,-0.0057169036008418,0.0026183447334915],[-0.054890103638172,-0.09072034060955,-0.025888850912452]],[[0.053063310682774,0.025847712531686,0.014179385267198],[-0.010532055050135,-0.053594384342432,-0.016172295436263],[0.0098595842719078,-0.073609732091427,0.028756590560079]],[[0.046479217708111,0.0048531284555793,0.023845948278904],[0.053258806467056,-0.030541531741619,0.067425653338432],[0.059556789696217,0.03087273798883,-0.025934644043446]],[[-0.034663591533899,0.019199477508664,0.01063859090209],[-0.0058614751324058,-0.010312780737877,0.015344045124948],[0.020581094548106,-0.028495378792286,-0.063384413719177]],[[-0.074663236737251,-0.0062917335890234,0.054144650697708],[0.022893270477653,-0.055613432079554,0.028693513944745],[-0.035341300070286,0.04234204441309,-0.059511177241802]],[[-0.013758029788733,0.024706600233912,-0.0065731345675886],[0.011354397051036,-0.0078156795352697,-0.057399783283472],[0.075977973639965,0.025699354708195,-0.0017935201758519]],[[-0.041142880916595,0.02087421528995,0.0098937265574932],[-0.0073080016300082,0.084161154925823,-0.0052681202068925],[0.018928185105324,0.014529142528772,0.0038617651443928]],[[-0.04710466042161,-0.018741710111499,-0.018143936991692],[0.02847214601934,-0.034892991185188,0.060598526149988],[-0.068710550665855,0.00092793576186523,-0.021052688360214]],[[0.027599904686213,-0.015542006120086,0.023340161889791],[-0.0457593947649,-0.027708936482668,0.020159425213933],[0.010563572868705,-0.00091546337353066,-0.01426796708256]],[[0.089158467948437,0.017199609428644,-0.0040903622284532],[-0.048607304692268,-0.033998984843493,-0.034437876194715],[0.042959652841091,0.010017720982432,-0.16722247004509]]],[[[-0.012413115240633,-0.080788172781467,0.075208194553852],[-0.017946194857359,0.04908062890172,-0.081817768514156],[-0.028201309964061,-0.030215198174119,-0.056884743273258]],[[-0.014747873879969,-0.004369487054646,-0.12267760932446],[0.14598740637302,0.004118197131902,-0.073084607720375],[0.11058197170496,0.019867008551955,-0.00073571625398472]],[[-0.029553897678852,0.032861687242985,0.022905487567186],[-0.086838692426682,0.027879077941179,0.047357920557261],[-0.032921653240919,-0.089537002146244,-0.019484408199787]],[[0.034725703299046,-0.066271394491196,0.0053615309298038],[0.015336438082159,0.017348490655422,-0.074303887784481],[0.050444431602955,-0.04617803171277,0.00034223811235279]],[[0.021008471027017,-0.023051477968693,-0.11631751060486],[0.019113291054964,0.059901863336563,-0.047865904867649],[-0.0050919158384204,0.10034367442131,0.10300146043301]],[[0.095040522515774,0.051985066384077,-0.15398482978344],[0.059441812336445,-0.0024762318935245,-0.04812291264534],[0.070988066494465,-0.065808095037937,-0.026801759377122]],[[-0.022858668118715,-0.051089745014906,-0.032379042357206],[-0.014100470580161,0.0031510973349214,-5.799506106996e-05],[-0.0081695262342691,0.036945104598999,0.010663985274732]],[[-0.090874403715134,0.021122822538018,-0.023301403969526],[-0.015195964835584,-0.0075766588561237,-0.067875817418098],[0.032189603894949,0.044472634792328,0.03108018822968]],[[0.046134430915117,0.0008301087655127,0.13854099810123],[-0.004286898765713,-0.061038825660944,-0.030960423871875],[-0.029163060709834,-0.074211403727531,-0.057827711105347]],[[-0.015624117106199,0.046947330236435,-0.0654251947999],[-0.014410218223929,-0.031448692083359,-0.057276595383883],[-0.036939322948456,-0.0074456050060689,-0.01342711597681]],[[-0.082418575882912,-0.02677877061069,-0.035515613853931],[-0.040072053670883,-0.058623131364584,-0.039967346936464],[-0.0020556529052556,-0.039103794842958,0.08155432343483]],[[3.264627957833e-05,-0.056340359151363,0.015918679535389],[-0.059502001851797,0.015719842165709,0.090940929949284],[-0.050829965621233,-0.033260129392147,0.062521487474442]],[[0.02099883556366,-0.12561765313148,-0.095193199813366],[0.0087629435583949,0.021557053551078,-0.1298716366291],[0.06269446760416,-0.073537215590477,0.060832303017378]],[[-0.08032414317131,0.033155802637339,0.23084416985512],[-0.04957814514637,-0.0044194376096129,0.16417580842972],[-0.048637427389622,-0.060443393886089,0.11791327595711]],[[-0.10828337818384,-0.012159117497504,0.085033640265465],[-0.05006630718708,-0.0058378046378493,0.079067632555962],[-0.0054673557169735,-0.072540156543255,0.033747427165508]],[[-0.012386839836836,0.028175281360745,-0.12369927018881],[0.062430273741484,0.0062804953195155,-0.040804147720337],[0.066441632807255,0.065966308116913,-0.025873173028231]],[[-0.0060751624405384,0.034004610031843,-0.15133094787598],[0.0034938759636134,0.049189660698175,0.040016278624535],[0.020891709253192,0.033031389117241,0.070746131241322]],[[0.016242802143097,-0.025713481009007,0.00012786184379365],[0.028206774964929,-0.0032081068493426,-0.054707158356905],[-0.009268444031477,-0.0028498072642833,-0.093195073306561]],[[0.079303957521915,0.044221103191376,-0.0033597128931433],[-0.073350071907043,-0.022299002856016,-0.016900526359677],[0.10101042687893,-0.053053688257933,0.0054703117348254]],[[-0.044072151184082,-0.015288586728275,-0.088479742407799],[0.0066312062554061,0.0029862802475691,-0.034175124019384],[0.039076760411263,0.087199248373508,-0.015652460977435]],[[0.0020960748661309,0.047235038131475,0.094353705644608],[-0.078313209116459,0.006849417462945,0.029438011348248],[-0.012956949882209,0.052595783025026,0.00038804329233244]],[[-0.018611650913954,-0.060381736606359,-0.055270306766033],[0.016615090891719,0.1117532774806,0.024316010996699],[0.10249041765928,-0.078095965087414,0.049516279250383]],[[0.073300182819366,-0.045345768332481,-0.01385838072747],[0.066517487168312,-0.095564223825932,0.051176361739635],[0.048257376998663,-0.047462593764067,-0.027319245040417]],[[0.0021032171789557,-0.088011153042316,-0.018682429566979],[0.0029194690287113,0.048629131168127,-0.076162986457348],[-0.0039982292801142,0.033904399722815,-0.062946453690529]],[[0.040141891688108,-0.026892945170403,0.10656090080738],[0.066712334752083,-0.078974083065987,-0.024634478613734],[0.13086214661598,0.030041424557567,-0.06223663315177]],[[0.070537343621254,-0.093145839869976,0.018183510750532],[0.07569681853056,-0.068985112011433,-0.065127819776535],[-0.072577647864819,-0.0086749969050288,-0.063332781195641]],[[-0.028989048674703,0.12987631559372,0.021726839244366],[-0.1344209164381,-0.031457737088203,0.026963414624333],[-0.087557271122932,-0.076432980597019,0.032428532838821]],[[0.039902448654175,0.059066366404295,0.084311120212078],[-0.013923071324825,0.014763941988349,0.057640753686428],[-0.20265959203243,-0.049882184714079,0.043831840157509]],[[-0.072000451385975,-0.0028175951447338,0.090920671820641],[0.042408287525177,-0.0021161660552025,0.023047002032399],[-0.070880278944969,-0.000718071940355,0.059615220874548]],[[0.033234946429729,0.019245490431786,-0.024074450135231],[-0.042052157223225,0.028355374932289,-0.010419768281281],[0.014220654964447,0.011045228689909,-0.11947304010391]],[[0.030742067843676,-0.019734535366297,-0.015500189736485],[-0.096059568226337,-0.0077613452449441,-0.10993459075689],[0.037692923098803,-0.13000462949276,0.014395372010767]],[[-0.11328289657831,-0.053324077278376,-0.077485673129559],[-0.024600295349956,0.0053020915947855,-0.081289522349834],[-0.027070637792349,-0.018458360806108,-0.035116773098707]],[[-0.012017036788166,0.041447337716818,0.0093103097751737],[0.030651032924652,-0.051600869745016,-0.0051557682454586],[-0.067623667418957,-0.045041881501675,-0.047705978155136]],[[-0.0042177881114185,0.0098436065018177,0.018483135849237],[0.012555955909193,0.043068144470453,0.0065606278367341],[0.053057972341776,0.0033796883653849,-0.050633817911148]],[[0.0067485929466784,0.033967074006796,-0.048881780356169],[0.03207591548562,0.14811927080154,0.11695616692305],[0.026310091838241,-0.07200526446104,-0.0088133551180363]],[[-0.016949847340584,-0.052986387163401,-0.014042794704437],[0.052871473133564,-0.037012208253145,-0.017513865604997],[-0.062209155410528,-0.082288518548012,0.011828381568193]],[[-0.057032559067011,-0.04314186796546,-0.0048198481090367],[-0.0057567339390516,0.035066682845354,0.028766458854079],[-0.075949661433697,-0.056087784469128,0.073529727756977]],[[0.050930462777615,0.00045041742851026,-0.21107490360737],[-0.096825443208218,0.12782882153988,-0.014599597081542],[-0.068254813551903,0.10675617307425,-0.090709418058395]],[[0.12136184424162,0.025429144501686,-0.20354953408241],[0.073638968169689,-0.030485827475786,-0.099160335958004],[0.046445906162262,0.040656842291355,-0.047437254339457]],[[-0.069699205458164,-0.14708611369133,0.04192291945219],[0.080087304115295,-0.10949657857418,-0.032344318926334],[0.0031872214749455,0.060349211096764,0.069486245512962]],[[-0.0418361723423,-0.069187633693218,0.020586429163814],[-0.017767844721675,-0.020105550065637,-0.019997810944915],[-0.051595207303762,-0.016681049019098,0.043168518692255]],[[0.07344538718462,0.026433560997248,0.029348274692893],[-0.048808697611094,-0.066021241247654,0.059330698102713],[0.0079071512445807,-0.0034693786874413,-0.022950289770961]],[[-0.17031939327717,0.017583983018994,0.07914611697197],[-0.18480226397514,-0.020684165880084,0.10582471638918],[-0.15052285790443,-0.009097901172936,0.04648919776082]],[[-0.019619159400463,-0.013793743215501,-0.040941502898932],[0.10980585217476,-0.04495819658041,0.0018909765640274],[0.11639835685492,0.030559593811631,-0.042229175567627]],[[0.084166616201401,-0.13385842740536,0.037461172789335],[0.024532480165362,-0.11458371579647,0.0032884546089917],[0.048354931175709,-0.081907741725445,-0.015009638853371]],[[0.054619807749987,-0.016646087169647,0.015742583200336],[-0.041533194482327,0.14097189903259,0.018476853147149],[-0.015040128491819,-0.010658551938832,0.090430125594139]],[[-0.040822930634022,-0.11786327511072,-0.082480765879154],[-0.030158882960677,0.031949877738953,0.13288836181164],[0.05279678106308,0.033883087337017,0.13057337701321]],[[0.013791895471513,-0.049280311912298,0.02801620028913],[0.071624949574471,0.00015874071686994,-0.053658947348595],[0.043069038540125,0.00062526157125831,0.0026765202637762]],[[0.10068587958813,-0.0039387922734022,-0.032107274979353],[0.070421263575554,-0.027559839189053,0.033785346895456],[0.066937901079655,-0.01541952136904,0.029685541987419]],[[-0.059523209929466,-0.048675000667572,0.063705995678902],[-0.093122534453869,-0.049533478915691,-0.070076115429401],[0.017234301194549,-0.013884331099689,-0.04399236664176]],[[-0.074636183679104,-0.13160853087902,0.0085567338392138],[0.040224563330412,-0.010824274271727,-0.0085701672360301],[-0.072864629328251,0.047884739935398,-0.10112200677395]],[[0.033064126968384,0.0044832671992481,-0.093315921723843],[-0.043001186102629,-0.039680045098066,-0.063146837055683],[-0.0090628685429692,0.012153069488704,0.0033511309884489]],[[0.017457718029618,-0.025500945746899,-0.10571672767401],[0.042148876935244,0.09474416077137,0.093039229512215],[-0.011118145659566,0.0070659867487848,-0.025232806801796]],[[0.14577476680279,0.10074733197689,0.029681352898479],[0.00046071116230451,0.073363892734051,0.070232793688774],[-0.028536181896925,0.11875649541616,0.11336247622967]],[[0.018510220572352,-0.03684725984931,0.061352048069239],[0.058103423565626,-0.076099842786789,0.097281336784363],[-0.04638609290123,0.062437009066343,-0.044059790670872]],[[0.079930111765862,-0.11397644877434,0.036039020866156],[0.099073320627213,0.048611957579851,-0.18732810020447],[0.053239148110151,0.026912156492472,-0.13947463035583]],[[-0.10412476211786,-0.045454408973455,-0.0085813263431191],[-0.0041364748030901,-0.096032097935677,0.12023697793484],[0.0015946298372,-0.015473153442144,-0.075353391468525]],[[-0.015438437461853,-0.0070788222365081,-0.0076459408737719],[0.00070095720002428,0.032937474548817,0.030751006677747],[0.02147401124239,0.027945468202233,0.056647293269634]],[[0.025221701711416,-0.12080306559801,-0.054181911051273],[-0.023624576628208,-0.0023554635699838,-0.069561868906021],[-0.04748398438096,0.025287352502346,0.064333759248257]],[[-0.003552901558578,0.022759774699807,0.038975238800049],[-0.098116353154182,0.069501489400864,-0.013483219780028],[-0.0036865146830678,0.032836623489857,0.039109971374273]],[[-0.017491331323981,0.067678608000278,0.041755691170692],[0.11914586275816,0.021818311884999,0.043955110013485],[0.039733052253723,0.065153658390045,0.077158704400063]],[[-0.083501540124416,-0.092860512435436,-0.010773909278214],[0.036230258643627,-0.062916032969952,-0.075345851480961],[0.059590678662062,0.13459704816341,0.065098993480206]],[[0.0096689322963357,-0.069777794182301,-0.11585372686386],[0.14457567036152,0.037814617156982,-0.0030133444815874],[0.074888102710247,-0.033055175095797,0.090452998876572]],[[0.00024402307462879,0.058024197816849,0.037815924733877],[-0.052812181413174,-0.049548272043467,0.062980279326439],[0.031106473878026,0.016293417662382,0.14489133656025]]],[[[0.0378477871418,0.0092621613293886,-0.010442970320582],[0.0017048923764378,-0.019765503704548,-0.023555800318718],[-0.034771911799908,-0.045966174453497,0.042106151580811]],[[-0.0005781744257547,-0.026606122031808,-0.028296329081059],[-0.036931168287992,-0.019619727507234,0.021779173985124],[0.016489990055561,-0.0089608114212751,0.03480501845479]],[[-0.0025297387037426,0.016262959688902,-0.0002142947196262],[-0.032820329070091,-0.051772207021713,0.0076598734594882],[0.001832612673752,-0.019348032772541,-0.014738948084414]],[[0.0049750693142414,0.016312848776579,0.005139566026628],[-0.023016473278403,-0.058104127645493,0.019123347476125],[-0.011888199485838,-0.027629578486085,-0.0096592092886567]],[[-0.043978631496429,-0.0037786196917295,0.0024605074431747],[-0.0034649204462767,-0.017553804442286,-0.015522007830441],[-0.025474540889263,0.021653026342392,-0.04347861930728]],[[-0.0099364994093776,0.082878768444061,0.049177870154381],[0.054944686591625,-0.087928049266338,-0.00070754328044131],[-0.020643206313252,-0.099550291895866,0.091118164360523]],[[-0.037236232310534,-0.025712555274367,-0.019886173307896],[-0.018693394958973,-0.083400152623653,-0.023359874263406],[-0.030612900853157,-0.024476381018758,0.0075328219681978]],[[0.011284846812487,-0.0392991527915,-9.1565350885503e-05],[-0.030160155147314,-0.021198336035013,0.045702159404755],[-0.042990908026695,0.0027884361334145,0.026091601699591]],[[-0.054985851049423,0.052838258445263,-0.06243371963501],[0.092840977013111,-0.045294515788555,0.021298428997397],[-0.072499454021454,-0.064052358269691,0.013825138099492]],[[-0.017131842672825,0.024448838084936,0.043538823723793],[-0.017487980425358,0.018151950091124,-0.031137408688664],[-0.049013521522284,0.029025614261627,-0.0095005687326193]],[[0.018661106005311,-0.015250064432621,0.017178624868393],[-0.037339344620705,0.10362400859594,-0.02022816427052],[0.04093024879694,-0.013378052040935,-0.03121941536665]],[[0.043302103877068,0.056054938584566,0.010382763110101],[0.045094389468431,0.020348712801933,-0.022658031433821],[-0.079318404197693,0.021596759557724,-0.03346311300993]],[[-0.0049802400171757,-0.066830053925514,0.026381261646748],[-0.037038702517748,0.019195750355721,0.005337433423847],[0.043354164808989,-0.086642637848854,-0.033407565206289]],[[0.064628504216671,0.024014892056584,-0.014291755855083],[-0.052503395825624,0.043745290488005,0.03885730355978],[0.062256254255772,0.016853433102369,0.072475045919418]],[[-0.007163560949266,0.075114175677299,-0.034605573862791],[0.0051173930987716,-0.014829399995506,-0.030210947617888],[0.057245086878538,0.025287218391895,-0.050980012863874]],[[0.087708823382854,-0.055836264044046,0.048660635948181],[-0.039681531488895,0.047798603773117,-0.014841005206108],[0.045391205698252,0.019423715770245,0.0066167837940156]],[[0.058960933238268,0.0056986818090081,0.0164495985955],[0.010984904132783,-0.033840097486973,-0.0059390752576292],[0.081965833902359,-0.0093782441690564,0.060301776975393]],[[-0.0033281277865171,-0.017944486811757,0.0037532201968133],[0.028185231611133,-0.028417902067304,-0.0024687205441296],[0.011600221507251,0.066824898123741,-0.027531661093235]],[[0.075042694807053,-0.057668663561344,-0.020850015804172],[-0.025465937331319,0.017239775508642,-0.030507104471326],[-0.025747692212462,-0.045199800282717,-0.04103335365653]],[[0.00061651621945202,-0.044409830123186,0.01785784214735],[-0.0079820835962892,0.081500142812729,0.027940068393946],[-0.021692521870136,0.0028774789534509,-0.021966470405459]],[[0.013375032693148,-0.058416053652763,0.053605992347002],[-0.028424357995391,-0.004305912181735,0.06478064507246],[-0.04615181684494,-0.03374045714736,-0.028772609308362]],[[0.0027330741286278,0.011416057124734,0.012323667295277],[-0.021092040464282,-0.042930774390697,-0.12073644250631],[-0.018414497375488,0.0046191117726266,-0.01038421690464]],[[0.019394963979721,-0.007463438436389,0.011386101134121],[0.036967817693949,-0.032872594892979,-0.022142870351672],[-0.0052489559166133,0.042286202311516,-0.027207966893911]],[[0.015185870230198,-0.025712043046951,0.043397087603807],[-0.018624067306519,-0.0046179131604731,0.02010478451848],[-0.057490259408951,-0.051741912961006,-0.0078740529716015]],[[0.019779775291681,-0.028973177075386,0.076971001923084],[0.018316950649023,0.011539692990482,-0.051336515694857],[0.022147098556161,0.020521929487586,0.010386360809207]],[[-0.065125577151775,0.0026316719595343,0.017238292843103],[-0.031880229711533,0.019368899986148,0.017844216898084],[-0.011756080202758,-0.049835875630379,-0.0063430182635784]],[[-0.060335338115692,-0.027112998068333,0.0045359539799392],[-0.070566035807133,-0.013198859058321,-0.014015318825841],[-0.033652897924185,-0.12554335594177,0.0078732091933489]],[[0.024845764040947,0.043407823890448,0.013536333106458],[0.012162723578513,-0.0035719971638173,0.046579737216234],[-0.02780226059258,-0.061178706586361,0.031643930822611]],[[-0.0064532314427197,0.043718725442886,0.034895420074463],[0.011841280385852,0.024063682183623,0.0024416667874902],[-0.03934021294117,0.05706425756216,-0.04730374738574]],[[-0.0004995126510039,0.0028389585204422,-0.027678187936544],[0.015504684299231,0.0057510719634593,0.03202461078763],[0.035232990980148,-0.040830183774233,0.031082935631275]],[[-0.031543865799904,-0.049939431250095,-0.017311224713922],[0.029928497970104,0.0338494181633,-0.057092361152172],[0.038341492414474,0.017426013946533,-0.028042010962963]],[[-0.022292686626315,-0.0015640829224139,0.002769896062091],[-0.053065814077854,0.0025805835612118,0.018188171088696],[-0.03527444601059,-0.043330874294043,-0.047439828515053]],[[-0.051967699080706,-0.025586711242795,-0.024567009881139],[-0.034863382577896,-0.056497037410736,-0.0061998129822314],[0.026017628610134,0.035226535052061,-0.069862134754658]],[[-0.030758041888475,-0.010268647223711,-0.021386099979281],[-0.016529666259885,0.021738963201642,-0.027848402038217],[0.017886849120259,0.00096029322594404,-0.020744668319821]],[[-0.014625301584601,0.034309893846512,0.064553417265415],[0.056990090757608,-0.031467922031879,0.021007554605603],[0.024017825722694,0.019593507051468,0.032155726104975]],[[-0.052843108773232,-0.10102315247059,0.002232554834336],[-0.06305493414402,0.060106713324785,-0.061920769512653],[-0.02812665887177,0.006988599896431,-0.0026726231444627]],[[-0.011042230762541,-0.028306307271123,-0.010007176548243],[-0.069427080452442,0.019519275054336,-0.02520121075213],[0.019560091197491,-0.0034755000378937,-0.0022912516724318]],[[0.055070158094168,0.043891221284866,0.0048151048831642],[0.035980794578791,-0.0046742535196245,-0.010767039842904],[0.076005719602108,-0.01407596282661,-0.0028558103367686]],[[-0.040089786052704,0.0054939123801887,-0.014511542394757],[-0.046892441809177,0.042727820575237,-0.0021564103662968],[-0.06554239243269,0.006559357047081,0.029864197596908]],[[-0.047232497483492,0.052003484219313,-0.021119529381394],[-0.025347182527184,-0.032533057034016,-0.021507419645786],[0.045241069048643,-0.0076226498931646,0.046786766499281]],[[0.024046866223216,0.013396915979683,-0.010671720840037],[-0.042107589542866,0.015535130165517,-0.049122769385576],[0.0082067307084799,-0.028695788234472,-0.0078637981787324]],[[0.013369317166507,-0.0099102547392249,-0.042165815830231],[0.023190692067146,-0.011246816255152,0.042238272726536],[-0.10921137034893,-0.033688094466925,-0.024808591231704]],[[0.069051623344421,-0.010206047445536,-0.04859010130167],[-0.019808068871498,-0.038503218442202,0.048973869532347],[-0.044374465942383,-0.0010853641433641,-0.034595768898726]],[[-0.010495124384761,-0.040060631930828,-0.043785020709038],[0.0076914164237678,-0.014336483553052,-0.040503442287445],[-0.020816480740905,0.0328602604568,0.02994048409164]],[[0.070920690894127,0.0062434724532068,0.019798552617431],[0.051213528960943,0.015359071083367,-0.076381005346775],[-0.035226952284575,-0.052091866731644,-0.0094603020697832]],[[-0.017950389534235,-0.013582240790129,-0.014030901715159],[0.0039338935166597,-0.045699831098318,0.00066885282285511],[0.0063407928682864,-0.035719003528357,0.026940742507577]],[[-0.0031412981916219,-0.059693068265915,-0.03675502166152],[0.026585714891553,-0.0032582376152277,0.015683120116591],[0.017960833385587,-0.032264411449432,-0.025127600878477]],[[0.026719508692622,-0.0073591102845967,0.032308526337147],[0.052943680435419,-0.017513016238809,0.027759375050664],[0.013208421878517,0.0048290565609932,0.019879147410393]],[[0.08749944716692,-0.00082305166870356,0.0048064887523651],[0.015887841582298,-0.040466025471687,0.028756238520145],[0.039333704859018,-0.013730294071138,-0.050084758549929]],[[0.016494736075401,0.030144084244967,0.058114249259233],[0.00028260314138606,0.048367287963629,-0.020534561946988],[0.025436958298087,-0.01712117344141,0.0060952981002629]],[[-0.0045926417224109,0.00024599174503237,0.0073029370978475],[-0.0032473742030561,-0.071592003107071,-0.017908424139023],[-0.037616714835167,-0.030398171395063,0.027284583076835]],[[-0.034506395459175,0.029467107728124,-0.017946850508451],[-0.0090055344626307,0.054723080247641,0.028110150247812],[-0.036307562142611,-0.041462115943432,0.032512340694666]],[[-0.0048910593613982,0.03736162558198,-0.0100018652156],[0.023896459490061,-0.025076538324356,0.017237942665815],[0.0054325857199728,0.020068105310202,0.037430323660374]],[[0.025377092882991,-0.016593653708696,0.035975333303213],[-0.0057943211868405,0.03810527920723,0.14393420517445],[-0.017544712871313,0.033778879791498,0.052715998142958]],[[-0.031886544078588,0.028718519955873,-0.084422774612904],[-0.058666627854109,0.0036168619990349,-0.03202348202467],[0.046188868582249,-0.010947303846478,0.023295013234019]],[[-0.01681156642735,-0.033988185226917,0.051096323877573],[-0.056818034499884,0.031952958554029,0.016380669549108],[0.03688008710742,0.055047210305929,-0.044365711510181]],[[-0.045276157557964,-0.001854976057075,-0.0019579513464123],[0.012029820121825,-0.042198147624731,-0.054666474461555],[0.015557538717985,-0.069557853043079,-0.0053675081580877]],[[-0.019008085131645,0.019879573956132,0.0058516287244856],[-0.00030511248041876,0.010911383666098,0.039376985281706],[0.021910186856985,-0.051000878214836,0.044907171279192]],[[0.070484295487404,0.0029977159574628,0.045217879116535],[-0.033598888665438,-0.01645739376545,-0.033930242061615],[-0.050725564360619,-0.040963668376207,-0.0016365689225495]],[[-0.0087418276816607,0.0054589547216892,-0.017181100323796],[-0.027184717357159,0.024505883455276,0.046197269111872],[-0.0073842988349497,-0.024442473426461,0.004051607567817]],[[-0.0043336991220713,-0.0099246250465512,-0.076534636318684],[0.030487671494484,0.022861134260893,0.0051695620641112],[0.042504262179136,0.010768545791507,0.026036012917757]],[[0.018892236053944,0.032792780548334,-0.01604924723506],[0.012842862866819,-0.015529336407781,-0.036894574761391],[-0.010737878270447,0.016369849443436,-0.015828935429454]],[[0.028557721525431,0.034873262047768,-0.024583596736193],[-0.008492598310113,-0.040578536689281,-0.088891640305519],[0.035511802881956,0.0021921850275248,0.024031857028604]],[[0.026276184245944,-0.024706639349461,-0.0010748144704849],[0.0054453876800835,-0.03950534760952,-0.022048804908991],[0.015724623575807,0.0048704678192735,-0.068768344819546]]],[[[-0.090405337512493,-0.08327142894268,0.012231545522809],[0.072671554982662,-0.084848664700985,0.015419121831656],[-0.055181697010994,0.052773304283619,-0.017149038612843]],[[-0.018483996391296,-0.0039949603378773,0.017679911106825],[-0.022341633215547,-0.010830094106495,0.021001180633903],[0.032568465918303,0.025442631915212,0.040177896618843]],[[0.021965350955725,0.0088453134521842,-0.0057560973800719],[-0.013174623250961,-0.0069264564663172,0.03519830852747],[0.02390113286674,-0.034673053771257,0.037068352103233]],[[0.01124669611454,0.033896569162607,-0.01806678622961],[-0.012200707569718,0.058063488453627,-0.028485650196671],[0.0018367229495198,0.024696983397007,0.0054996162652969]],[[0.0095249777659774,-0.020969055593014,0.074821695685387],[0.069920837879181,0.035355508327484,-0.0024655242450535],[-0.037781294435263,0.037168901413679,-0.00026993849314749]],[[0.043470270931721,-0.045877274125814,0.025617867708206],[0.033350400626659,-0.14461220800877,0.031311377882957],[-0.13175339996815,0.053961023688316,-0.0038760206662118]],[[0.032649409025908,0.026594901457429,0.003837933531031],[-0.015487897209823,-0.015478626824915,-0.018938617780805],[-0.049473088234663,0.020135931670666,-0.020317735150456]],[[0.028217263519764,-0.040279485285282,0.052315577864647],[-0.072869755327702,0.044703595340252,0.032002173364162],[-0.018465360626578,0.045732740312815,-0.033690914511681]],[[-0.034798387438059,0.068744324147701,0.0042188079096377],[0.0008965750457719,0.004292203579098,-0.010042279958725],[-0.012877762317657,-0.048472344875336,-0.031784247606993]],[[0.032632194459438,0.012378616258502,0.025014599785209],[0.049319107085466,-0.0034235797356814,0.026786006987095],[-0.12374355643988,0.012224681675434,-0.028059786185622]],[[0.0039601102471352,-0.072479322552681,0.011381587944925],[0.078828878700733,-0.044570088386536,0.035147853195667],[0.011672391556203,-0.044968783855438,-0.023619057610631]],[[0.059015572071075,0.015334035269916,0.040230095386505],[-0.0085247186943889,-0.009558486752212,-0.014481606893241],[0.0044879890047014,0.035464238375425,0.055236663669348]],[[0.045097310096025,-0.0019243503920734,0.038025051355362],[-0.0021869598422199,0.042780801653862,0.018494958058],[0.0082880072295666,0.029554329812527,-0.031627759337425]],[[-0.011028966866434,-0.0065623563714325,-0.0046843132004142],[-0.023444918915629,-0.056747104972601,0.023994542658329],[0.090705625712872,-0.035553511232138,0.032807338982821]],[[-0.019166201353073,0.060276638716459,-0.11997456103563],[0.018316278234124,0.03276876360178,-0.061697036027908],[0.020409064367414,0.045646224170923,0.028097515925765]],[[-0.0031541646458209,0.035233292728662,-0.016646932810545],[0.021933630108833,0.066177174448967,-0.029627729207277],[-0.0019857042934746,0.034688528627157,0.057580087333918]],[[0.0043372535146773,-3.5023418604396e-05,0.015930654481053],[0.013393893837929,0.00024798908270895,0.037395697087049],[-0.006159114651382,-0.046803422272205,-0.021647268906236]],[[0.0016887977253646,0.021257219836116,-0.036401655524969],[-0.0022739970590919,0.02401814609766,0.058204911649227],[-0.0033925690222532,0.085349693894386,-0.0066301925107837]],[[0.011308374814689,0.040076538920403,0.040568500757217],[-0.042577613145113,-0.0083967605605721,0.005754895042628],[-0.017331359907985,-0.0099558709189296,-0.027916653081775]],[[-0.058609448373318,-0.041456181555986,0.053424086421728],[-0.033604633063078,-0.0048035513609648,0.018712129443884],[-0.023528128862381,-0.069320574402809,-0.0030774758197367]],[[-0.0037861759774387,-0.0050520007498562,-0.040720742195845],[0.066968977451324,0.032961033284664,0.050128154456615],[0.078239992260933,-0.016333056613803,-0.021251918748021]],[[0.029747208580375,0.028941243886948,0.036134365946054],[-0.0078150387853384,-0.022482326254249,-0.0058384374715388],[0.043017279356718,-0.029311537742615,0.011351643130183]],[[-0.010085425339639,0.03412326797843,0.009527588263154],[0.0022058133035898,-0.011550275608897,0.013695881702006],[-0.0040353462100029,0.023384146392345,-0.034922890365124]],[[0.0055963378399611,-0.027707414701581,0.0097073893994093],[0.0047543300315738,0.031577449291945,0.024283464998007],[-0.032742865383625,0.003588346298784,0.016388051211834]],[[0.0085505181923509,0.047717090696096,-0.0036450659390539],[0.070195019245148,-0.013776659965515,0.015724891796708],[-0.032393492758274,0.072383023798466,-0.01663975045085]],[[-0.063767328858376,-0.015907978639007,-0.0012034572428092],[0.0060170758515596,-0.059618204832077,-0.011455199681222],[-0.015042586252093,-0.071312248706818,0.061076287180185]],[[0.031706504523754,0.040995806455612,0.026122584939003],[0.010567024350166,2.108344779117e-05,0.014549752697349],[-0.018238384276628,-0.0072755222208798,-0.04404815658927]],[[0.042667239904404,0.052132479846478,0.016739619895816],[-0.073327511548996,0.13683119416237,0.015378448180854],[-0.037099778652191,0.056467186659575,0.033905308693647]],[[0.0085869235917926,0.014006963931024,-0.012241600081325],[-0.0037217140197754,-0.03052187897265,-0.0049811573699117],[-0.0094611663371325,-0.0038697635754943,-0.02029930613935]],[[0.018248347565532,0.02343319542706,0.05123870074749],[-0.010220781899989,0.052490208297968,-0.066288322210312],[-0.018028240650892,0.028976745903492,0.0063834162428975]],[[0.030754068866372,-0.044125210493803,-0.060638412833214],[0.019785534590483,-0.039905574172735,0.056402675807476],[-0.07773531973362,-0.02188977599144,-0.053030699491501]],[[-0.047312058508396,0.037716031074524,-0.032617505639791],[0.0090831145644188,-0.02297668159008,0.02322568744421],[0.0061373156495392,0.026901144534349,0.052874177694321]],[[-0.013522759079933,0.014133575372398,-0.060073468834162],[-0.030592760071158,-0.030319822952151,-0.023468898609281],[0.020368812605739,0.032823100686073,-0.025453003123403]],[[-0.0060868496075273,0.05844172462821,0.027358032763004],[-0.029936879873276,-0.050611633807421,0.03595108166337],[-0.010729776695371,-0.013918776996434,0.030843045562506]],[[-0.021571969613433,-0.04475025832653,0.022531595081091],[-0.030596634373069,0.011212135665119,0.0084749516099691],[-0.014444892294705,0.014685215428472,0.012537827715278]],[[-0.0390814691782,-0.0065097738988698,0.0081003084778786],[-0.0122837042436,-0.050529181957245,0.088302657008171],[-0.074888318777084,-0.033800952136517,-0.053096536546946]],[[-0.011882148683071,0.036067016422749,-0.0017514368519187],[-0.014798450283706,-0.0034044699277729,-0.042724121361971],[-0.035599261522293,0.031530633568764,-0.023615449666977]],[[-0.0036681815981865,0.014444566331804,0.042025700211525],[-0.00095671159215271,0.014228967018425,-0.065594360232353],[0.022803824394941,0.077279627323151,0.046020530164242]],[[0.011592566035688,-0.037551324814558,0.011087494902313],[-0.025202054530382,0.015100577846169,-0.066738925874233],[-0.016916774213314,-0.019111292436719,0.025468867272139]],[[0.028581021353602,-0.0038508649449795,0.0031775441020727],[-0.017729571089149,0.014188441447914,0.042255017906427],[0.02074614726007,0.027348522096872,0.026824371889234]],[[0.048161927610636,-0.0096387797966599,0.08308169990778],[0.070562034845352,-0.021267078816891,0.020909633487463],[-0.06557035446167,-0.02576782181859,0.064991004765034]],[[-0.025494603440166,-0.049610715359449,-0.082050390541553],[-0.069938167929649,-0.0073545281775296,-0.041028708219528],[0.086802013218403,0.026554128155112,-0.018413467332721]],[[0.023846503347158,-0.083536803722382,0.010456406511366],[-0.083038158714771,0.027272589504719,-0.094736911356449],[0.047838617116213,-0.014611550606787,-0.070040516555309]],[[-0.032461501657963,-0.017099002376199,-0.0091019626706839],[-0.030903166159987,-0.0346036888659,-0.05005244165659],[0.0083918096497655,-0.027360327541828,-0.028524210676551]],[[-0.03012621961534,0.035370465368032,-0.041734267026186],[-0.033071629703045,0.00085205980576575,-0.015411276370287],[-0.051338158547878,0.08661986887455,-0.043151933699846]],[[-0.088032774627209,-0.027575336396694,-0.0045401179231703],[0.043855749070644,-0.010681104846299,0.019144395366311],[0.060543671250343,0.041183952242136,0.053635355085135]],[[-0.035849060863256,-0.003285160753876,0.030302980914712],[0.03167737647891,-0.040256179869175,0.01970311999321],[-0.027899099513888,-0.015515984036028,-0.0047459425404668]],[[-0.052842766046524,0.033097960054874,-0.025693088769913],[0.071832999587059,-0.044465910643339,-0.033663339912891],[0.042621046304703,0.014235018752515,0.026378044858575]],[[0.017869554460049,0.0055591254495084,-0.0010267958277836],[-0.047786977142096,0.025684440508485,0.11140092462301],[0.050868809223175,0.042678847908974,-0.0016400933964178]],[[0.043772719800472,0.010403786785901,0.035105515271425],[0.029377486556768,0.01870702393353,-0.040272582322359],[-0.045387182384729,0.022544035688043,0.023880910128355]],[[-0.011768560856581,0.04577761515975,0.0024218074977398],[0.0032811933197081,-0.019776510074735,-0.039765574038029],[-0.0053030485287309,-0.022796120494604,0.019279139116406]],[[-0.10799216479063,0.0073072728700936,-0.052902951836586],[0.010605207644403,0.0037704217247665,0.030468132346869],[0.022731877863407,0.01986444927752,0.027324756607413]],[[0.0084978844970465,-0.028981877490878,0.025844682008028],[0.00067079224390909,-0.043543513864279,0.064894862473011],[-0.039780139923096,0.017139058560133,-0.010495875962079]],[[0.008651508949697,0.0085455337539315,0.083030045032501],[0.078621491789818,0.078698568046093,0.024586502462626],[0.14876346290112,0.024653900414705,0.043646465986967]],[[0.042486768215895,-0.0034684229176491,-0.0077151227742434],[-0.045201864093542,-0.034738719463348,-0.03193037211895],[-0.083147399127483,-0.050775650888681,0.029993809759617]],[[0.027309807017446,-0.01444991491735,-0.055578246712685],[0.044668830931187,-0.0020604587625712,-0.010796041227877],[0.0197828207165,-0.0036269112024456,-0.022205092012882]],[[0.01295814756304,0.040829814970493,0.027431486174464],[0.037504483014345,0.075250126421452,0.018317544832826],[-0.0096179628744721,-0.024526439607143,0.0056769349612296]],[[0.012995040044188,-0.0082941921427846,0.021254613995552],[-0.023001665249467,-0.016530768945813,0.019921666011214],[-0.0027549020014703,-0.017929017543793,0.029610082507133]],[[0.074704796075821,0.0888437256217,0.012534423731267],[-0.025087613612413,0.012405311688781,-0.068776473402977],[0.013153814710677,-0.0026795957237482,0.029577860608697]],[[-0.015241417102516,-0.023756733164191,0.0011776401661336],[0.050509914755821,0.046187233179808,0.0074480129405856],[0.0043408046476543,-0.0070877755060792,0.027974648401141]],[[-0.014985009096563,0.056651689112186,-0.020954124629498],[0.032449435442686,0.03211135789752,0.071799285709858],[-0.049076110124588,-0.017973178997636,-0.024985367432237]],[[0.034869439899921,-0.018075343221426,0.021911403164268],[0.00095959840109572,-0.014471691101789,-0.038876745849848],[0.042164072394371,0.059566918760538,0.011539376340806]],[[0.050215419381857,-0.0621845908463,0.047989018261433],[0.028165573254228,0.04024887830019,0.00072575605008751],[-0.012672803364694,-0.013446716591716,0.015081881545484]],[[0.035849567502737,-0.044357262551785,-0.0074148494750261],[-0.038107473403215,-0.037266418337822,0.026915026828647],[0.062007933855057,-0.031920060515404,-0.030822925269604]]],[[[-0.066405944526196,0.084853194653988,-0.028098497539759],[-0.054188165813684,-0.012551613152027,-0.007440138142556],[0.026156907901168,0.0043909037485719,-0.020510686561465]],[[-0.079399041831493,0.010145355015993,0.030317896977067],[-0.0080886483192444,0.046954825520515,-0.0099192634224892],[0.053752884268761,0.040438901633024,0.054758362472057]],[[-0.067945286631584,0.010957774706185,-0.022320447489619],[0.055731028318405,0.010454173199832,-0.14644214510918],[0.084981828927994,0.040822774171829,-0.12371415644884]],[[0.0093382149934769,-0.034247372299433,-0.013533229008317],[-0.00010518769704504,0.0047100782394409,-0.097716845571995],[-0.010104929096997,0.0085992161184549,-0.013993978500366]],[[0.03532987087965,-0.038873109966516,0.0017847893759608],[-0.0032277286518365,-0.00044062320375815,0.072054296731949],[0.081269204616547,-0.018054816871881,-0.085912495851517]],[[-0.0095150964334607,0.055456757545471,0.04711727052927],[-0.012044223956764,-0.10139410197735,-0.054228894412518],[-0.028018556535244,0.018487619236112,-0.048171650618315]],[[-0.025764100253582,-0.061031349003315,0.00091266876552254],[-0.010483651421964,0.012764996849,-0.027275061234832],[0.021983861923218,-0.06031483784318,-0.012009904719889]],[[0.0062124668620527,-0.066223487257957,-0.03506001457572],[-0.042296424508095,-0.12837144732475,-0.058456886559725],[0.016768418252468,-0.02963705919683,0.063084550201893]],[[0.050094835460186,0.047048326581717,0.077352799475193],[0.073804438114166,-0.0030428229365498,-0.080843403935432],[0.02773973532021,-0.062936969101429,0.050057895481586]],[[-0.046653289347887,-0.0070525230839849,-0.073941104114056],[-0.00032927969004959,-0.066559709608555,0.007625506259501],[0.008259448222816,0.019940752536058,-0.077865868806839]],[[-0.043154437094927,-0.020727477967739,0.040210530161858],[0.048681549727917,0.022977711632848,0.025364447385073],[-0.073251456022263,-0.046612612903118,-0.011212079785764]],[[-0.017178185284138,-0.023719977587461,-0.016477851197124],[-0.044060435146093,-0.029950100928545,-0.00068722560536116],[0.00013098304043524,-0.076589532196522,-0.02922972291708]],[[-0.021823631599545,-0.05302669852972,-0.00082947127521038],[0.0013802110916004,-0.079611867666245,0.0099012786522508],[-0.11276438832283,-0.04115542024374,-0.12234708666801]],[[0.044419080018997,-0.023257043212652,-0.036972749978304],[0.030837053433061,0.055650893598795,0.040477823466063],[0.0059099718928337,-0.031339518725872,0.023027334362268]],[[-0.010767413303256,-0.079616099596024,0.048204407095909],[0.0061254468746483,-0.052259437739849,-0.0090928310528398],[-0.016330854967237,-0.03076745569706,-0.13671410083771]],[[0.037263110280037,-0.0045494688674808,-0.012374968267977],[-0.039152979850769,-0.0060241026803851,-0.016622383147478],[0.020332422107458,-0.053080603480339,-0.024616219103336]],[[0.038650896400213,-0.037216506898403,0.010949081741273],[-0.047389842569828,0.028631312772632,-0.12246700376272],[-0.028471214696765,0.010120858438313,-0.028274180367589]],[[0.01177051756531,0.017023200169206,-0.024932848289609],[0.0039014138747007,-0.053422328084707,-0.011549722403288],[-0.019139023497701,0.02881721034646,-0.045080367475748]],[[0.026155391708016,-0.081196494400501,-0.04319317266345],[-0.093399964272976,-0.067475564777851,-0.067087382078171],[-0.053217962384224,0.051691226661205,0.0500543192029]],[[0.0089140320196748,-0.047479145228863,0.024097640067339],[-0.035197611898184,-0.028941385447979,0.080296665430069],[-0.073192328214645,0.074116282165051,-0.050123993307352]],[[-0.059089560061693,-0.028998348861933,-0.11569277197123],[0.0029906402342021,0.013798038475215,0.0016960615757853],[-0.0072603411972523,-0.17412073910236,0.074008367955685]],[[0.022664815187454,0.023825623095036,-0.02387061342597],[-0.06227707490325,0.013950958848,0.02440139837563],[-0.0084651885554194,-0.087759368121624,-0.031018426641822]],[[-0.055933143943548,0.062770329415798,-0.07344463467598],[0.043645039200783,-0.00086225185077637,-0.055179044604301],[0.033398382365704,-0.021544229239225,0.066695995628834]],[[-0.017159547656775,0.067629851400852,0.008832648396492],[-0.031355012208223,0.011073590256274,0.025564407929778],[-0.018259886652231,-0.074177466332912,-0.029033860191703]],[[-0.094731606543064,0.0023505943827331,0.031545337289572],[-0.013195458799601,-0.017788542434573,0.057239841669798],[-0.035940185189247,0.0785893201828,-0.083894267678261]],[[-0.0019039047183469,0.0047627137973905,0.048823244869709],[-0.051073834300041,-0.018254956230521,-0.0089805265888572],[-0.0034331320784986,0.026674225926399,0.013910098001361]],[[0.0257228910923,-0.0230344068259,-0.044855359941721],[-0.010601162910461,-0.084960997104645,-0.073377467691898],[-0.054233599454165,-0.11929682642221,-0.0092043420299888]],[[0.033465512096882,-0.06813258677721,0.02953982539475],[-0.067632339894772,-0.04566490277648,-0.057525798678398],[0.032000184059143,-0.14311483502388,-0.013384555466473]],[[0.024388156831264,0.02564537897706,-0.004363174084574],[0.021325092762709,-0.07308803498745,-0.078157134354115],[0.0084246695041656,-0.00092058000154793,-0.02421292103827]],[[0.018452350050211,-0.065312430262566,0.025276936590672],[0.0075729629024863,0.022227996960282,-0.061808504164219],[0.0047531058080494,0.019153313711286,0.015391238965094]],[[-0.12496099621058,0.040430620312691,-0.058117549866438],[0.02202813513577,0.061472754925489,-0.027783032506704],[0.004619101062417,0.048710934817791,-0.0086654294282198]],[[0.014152513816953,0.012852265499532,0.043426923453808],[-0.043525844812393,0.0031691754702479,-0.031934518367052],[-0.14369738101959,0.0064841615967453,-0.02644389308989]],[[0.012101838365197,-0.069677017629147,-0.019076900556684],[0.020244302228093,0.078472003340721,0.01417741458863],[-0.04365024715662,-0.00074298301478848,-0.057546034455299]],[[-0.022643607109785,-0.00053564656991512,-0.0067819831892848],[-0.085790455341339,0.018337478861213,-0.043965835124254],[-0.0085748787969351,-0.011542960070074,-0.11053618043661]],[[0.0060553690418601,0.001146764610894,0.026593796908855],[-0.10582734644413,0.011265208013356,0.0046613113954663],[0.013603320345283,0.097212046384811,-0.074184574186802]],[[-0.018760222941637,-0.083042703568935,-0.046480432152748],[-0.046348087489605,-0.033937707543373,-0.021235853433609],[-0.0095337340608239,0.036526471376419,-0.07175736874342]],[[0.023007709532976,0.095873147249222,-0.037615492939949],[-0.11469583213329,-0.037086058408022,-0.0021199316252023],[-0.037112083286047,0.001736753154546,-0.00021988412481733]],[[0.054325539618731,-0.041560519486666,0.071019150316715],[-0.018365487456322,-0.066307120025158,0.061866112053394],[0.054036911576986,0.0038907546550035,-0.055943917483091]],[[0.048543378710747,0.037779022008181,0.10050018876791],[-0.004814000800252,-0.01354057341814,-0.11607138812542],[-0.090133622288704,0.028162503615022,-0.042281646281481]],[[0.050880566239357,-0.00092449714429677,0.013143887743354],[-0.013159074820578,-0.038799412548542,-0.045769728720188],[-0.012938343919814,0.017365934327245,0.0046544028446078]],[[0.053121574223042,-0.12255284935236,0.0033551598899066],[0.045858383178711,-0.061193905770779,-0.020199183374643],[0.034915048629045,-0.039950795471668,-0.032526433467865]],[[-0.084831535816193,-0.012966061942279,0.010344686917961],[-0.0019790902733803,-0.00073067704215646,-0.10974688827991],[0.0067455125972629,-0.01001432724297,0.015989135950804]],[[-0.038701325654984,-0.024320229887962,-0.095891736447811],[0.011471865698695,-0.029199259355664,0.10785360634327],[0.095583036541939,-0.038537081331015,0.064204394817352]],[[-0.022913381457329,0.037454467266798,0.0031638133805245],[0.026177451014519,-0.0099681429564953,-0.05709657818079],[-0.024078760296106,-0.040302354842424,-0.041517212986946]],[[-0.068568110466003,0.029040584340692,0.055711857974529],[0.00764817930758,-0.10500986129045,0.032483510673046],[0.0113863684237,0.0079675940796733,0.018585607409477]],[[0.032762423157692,0.016722563654184,-0.0089689856395125],[-0.13386189937592,0.060378726571798,-0.068011075258255],[0.0027685295790434,0.026706801727414,0.048501197248697]],[[0.045426659286022,0.027568187564611,-0.12249816954136],[-0.066340409219265,-0.0076910657808185,0.016512731090188],[-0.026988994330168,-0.0035695731639862,0.018909581005573]],[[-0.033289927989244,-0.063013404607773,-0.056563757359982],[0.069963097572327,-0.022329771891236,0.076994203031063],[0.065551608800888,-0.013352744281292,0.016882563009858]],[[0.030985379591584,0.016686486080289,-0.041018307209015],[-0.07615665346384,0.013730882667005,-0.059666637331247],[-0.071818217635155,0.0051610129885375,-0.04181095585227]],[[-0.089329808950424,-0.055003702640533,-0.03627785295248],[-0.04902782663703,-0.077533558011055,-0.040218971669674],[-0.011363027617335,-0.0035113075282425,-0.063867084681988]],[[0.0028714283835143,-0.024302497506142,-0.010492445901036],[-0.023179158568382,-0.0027257448527962,-0.048140481114388],[-0.047967821359634,0.023778380826116,-0.0036519353743643]],[[-0.062430277466774,0.034774538129568,-0.020449858158827],[0.06403312087059,-0.015481069684029,-0.0093269711360335],[-0.0098099187016487,0.030407443642616,0.037313710898161]],[[-0.016342068091035,0.036183159798384,0.00069178408011794],[0.012627519667149,0.020765539258718,0.0029243684839457],[-0.022888464853168,0.084124028682709,0.021021563559771]],[[0.068971782922745,0.03176998719573,-0.019472669810057],[0.16681529581547,0.060511540621519,0.16892524063587],[0.034591302275658,0.058577675372362,-0.0019928892143071]],[[0.048758175224066,-0.028332876041532,0.037458993494511],[-0.0015443575102836,0.046956524252892,-0.016436941921711],[0.01666727475822,0.039862267673016,-0.015725076198578]],[[0.034745413810015,-0.039859313517809,0.039209805428982],[-0.0039258999750018,0.056679088622332,-0.0089914985001087],[0.039047852158546,0.045285619795322,-0.071550324559212]],[[-0.020891826599836,-0.013887403532863,0.011158962734044],[-0.040129993110895,-0.034604784101248,-0.099209599196911],[-0.05120350420475,-0.040194652974606,-0.03956650197506]],[[0.041104916483164,-0.042325034737587,0.018788946792483],[-0.047201309353113,0.0047088959254324,-0.032048765569925],[-0.012948408722878,0.031845487654209,-0.018920879811049]],[[0.027775816619396,-0.029209980741143,-0.032242994755507],[-0.0094107249751687,0.037283878773451,0.066589966416359],[-0.087677508592606,0.00062966370023787,0.0057142139412463]],[[-0.0020384220406413,-0.059153504669666,0.0029448785353452],[0.043726928532124,0.040216829627752,0.028561390936375],[-0.018022218719125,-0.01988841407001,0.076259709894657]],[[-0.094532273709774,0.055726770311594,-0.0049639749340713],[-0.026110045611858,0.02518773637712,-0.012250965461135],[0.056789547204971,-0.12064256519079,-0.039784923195839]],[[0.031131798401475,0.039127256721258,0.059200804680586],[0.0044974852353334,0.013100675307214,-0.044404592365026],[-0.018230395391583,0.067510969936848,-0.0010595418279991]],[[-0.060312788933516,0.047337662428617,-0.012347877025604],[-0.028555613011122,0.0056797889992595,0.032060571014881],[0.023152777925134,-0.03600637242198,-0.063113912940025]],[[-0.03680532798171,-0.037192799150944,-0.05551914870739],[-0.0027059752028435,0.033342413604259,-0.010387096554041],[-0.040479738265276,-0.11189185082912,0.015218899585307]]],[[[-0.037751793861389,0.036577548831701,-0.012991334311664],[0.037845473736525,-0.019274357706308,0.0092830620706081],[0.070472694933414,0.017977947369218,0.071085974574089]],[[0.079729594290257,-0.014010858722031,-0.010823738761246],[-0.036303196102381,-0.044552125036716,-0.035202227532864],[0.0062712389044464,-0.019417438656092,0.0052572274580598]],[[0.052900355309248,-0.011623458005488,0.01117944996804],[-0.035959292203188,-0.040687315165997,-0.019438989460468],[0.0057832719758153,0.019107088446617,0.036233104765415]],[[-0.036337614059448,0.014171663671732,0.03087224625051],[0.011307663284242,-0.090365774929523,-0.0079894652590156],[-0.0055408244952559,-0.086611121892929,-0.014580154791474]],[[-0.057738300412893,-0.021660188212991,0.017841778695583],[0.025620944797993,0.0099007291719317,-0.075523994863033],[0.049862150102854,0.034950446337461,0.02779277972877]],[[0.027596063911915,-0.081921197474003,-0.084185153245926],[0.029205359518528,-0.015218375250697,0.12218128144741],[-0.04352992027998,0.050373144447803,0.037410698831081]],[[-0.0010735325049609,-0.018405424430966,0.0015468857018277],[-0.056532878428698,0.013318715617061,0.019165465608239],[0.018623318523169,0.050813857465982,-0.013192531652749]],[[0.073367483913898,-0.023782089352608,-0.03234152123332],[-0.0048713288269937,0.031327322125435,0.040897715836763],[-0.0068861613981426,-0.10359410196543,-0.034104816615582]],[[-0.048886675387621,0.054883021861315,0.046369139105082],[-0.013928431086242,0.052635859698057,0.01692889072001],[0.019055787473917,0.016309166327119,-0.019561219960451]],[[0.0019921341445297,0.047586165368557,0.0091699277982116],[-0.074929900467396,-0.04985050112009,0.0093603255227208],[0.015404789708555,-0.030161339789629,-0.0014380459906533]],[[0.032496172934771,-0.092191740870476,0.022056244313717],[0.021102711558342,-0.090734593570232,-0.03711686655879],[-0.0068380162119865,-0.055748879909515,0.027600791305304]],[[0.0032037424389273,-0.081560984253883,-0.028647493571043],[-0.010957287624478,-0.034636825323105,-0.016507206484675],[-0.027869090437889,-0.027632126584649,0.039133060723543]],[[0.010635848157108,-0.11464020609856,0.062972739338875],[0.0090796072036028,-0.059671688824892,-0.023446038365364],[-0.015532013960183,-0.0075265178456903,0.022309152409434]],[[-0.043790966272354,0.010406354442239,0.04230722039938],[0.036954216659069,0.0070221209898591,0.083895035088062],[0.083813801407814,-0.0061296378262341,0.034059066325426]],[[0.11171609908342,-0.04307247325778,0.0033467903267592],[0.019414411857724,-0.0030412198975682,-0.015962956473231],[-0.032109692692757,-0.0035677989944816,-0.0024757939390838]],[[0.02866530045867,-0.021856550127268,-0.029928999021649],[-0.036180891096592,-0.02337490953505,0.0072988560423255],[0.030908407643437,-0.00025203375844285,0.040423270314932]],[[-0.027081379666924,0.027819102630019,0.010357414372265],[0.069372333586216,0.041131589561701,-0.00021898100385442],[0.00075421296060085,0.07852403819561,-0.018860172480345]],[[-0.024673018604517,-0.076219283044338,0.028582151979208],[-0.019635748118162,0.054279625415802,0.0084838457405567],[-0.0098135368898511,0.067846134305,0.031720906496048]],[[0.044481109827757,-0.058520790189505,0.063482075929642],[-0.012933226302266,0.0064941495656967,-0.0048983697779477],[0.053126361221075,-0.012076665647328,-0.025820033624768]],[[0.016839530318975,0.026964958757162,0.0086452048271894],[-0.017804330214858,-0.015929406508803,-0.019322853535414],[0.02824573405087,0.052569378167391,-0.015660583972931]],[[-0.05292983725667,-0.093391880393028,-0.046406768262386],[0.02880859747529,-0.035715609788895,-0.031026216223836],[0.0018477343255654,-0.0020085184369236,-0.036103881895542]],[[-0.080465897917747,-0.03889973834157,0.018698401749134],[0.083388090133667,-0.091992355883121,-0.0087311519309878],[-0.021006491035223,0.044328425079584,-0.0089285541325808]],[[-0.03193698450923,-0.075053617358208,0.04306984692812],[0.01463031116873,0.068374805152416,-0.064224265515804],[-0.0095586515963078,0.056798364967108,-0.0040730922482908]],[[0.013297610916197,0.028154164552689,-0.019627364352345],[-0.0078774495050311,0.018752733245492,-0.01117608230561],[-0.027351362630725,-0.041628830134869,-0.013466137461364]],[[0.052391733974218,0.038610376417637,0.040093254297972],[-0.033797681331635,0.019942753016949,0.084728948771954],[-0.0017594137461856,-0.010289516299963,0.064470537006855]],[[0.047099247574806,0.029552428051829,0.049483750015497],[-0.037216495722532,-0.023181334137917,0.011136353947222],[-0.057014755904675,-0.010552595369518,-0.0018851074855775]],[[-0.022526102140546,-0.012422506697476,-0.013104574754834],[0.028269119560719,0.016707252711058,-0.03491198644042],[0.021160662174225,0.036764413118362,-0.027404712513089]],[[0.035112824290991,-0.068670347332954,0.029283355921507],[-0.0080026853829622,0.011070869863033,0.086680173873901],[0.05961611494422,-0.075692392885685,0.046833492815495]],[[-0.010267223231494,0.019645683467388,-0.031050007790327],[-0.03875569999218,-0.0072333910502493,-0.050177220255136],[-0.0055035632103682,-0.0015614515868947,0.015271039679646]],[[0.015512770973146,-0.025678934529424,-0.024841235950589],[0.0031531623098999,0.0015976259019226,-0.037999618798494],[-0.019477782770991,0.031516335904598,-0.00019396937568672]],[[0.0090949507430196,-0.052050944417715,0.039837192744017],[-0.037353590130806,-0.019753908738494,-0.011618502438068],[-0.059753216803074,0.0012170338304713,0.0061907800845802]],[[-0.042299751192331,-0.020276473835111,-0.010304035618901],[-0.0085362205281854,0.03241615369916,0.039686169475317],[-0.0028042846824974,-0.0096793351694942,0.02433080598712]],[[-0.043685421347618,-0.10500567406416,-0.074744187295437],[0.0086780125275254,-0.10462808609009,-0.032336682081223],[0.030685236677527,0.018188493326306,0.016381155699492]],[[0.046111550182104,0.039673160761595,-0.063120990991592],[-0.073216199874878,0.033935844898224,0.072213910520077],[-0.040254406630993,0.046626057475805,-0.010027491487563]],[[-0.013871455565095,-0.037958018481731,-0.012408453039825],[0.025125479325652,0.086273357272148,0.036864947527647],[-0.0094992062076926,-0.0035246086772531,-0.062168959528208]],[[0.044841766357422,-0.048133406788111,0.063583076000214],[-0.027445334941149,-0.013552635908127,0.021363042294979],[-0.05615010112524,-0.046652399003506,-0.040847167372704]],[[-0.019712625071406,0.044065743684769,0.026893580332398],[-0.0073249796405435,0.017915055155754,-0.0010121730156243],[-0.037552580237389,0.031044567003846,0.049186643213034]],[[0.078788727521896,-0.11534681171179,0.0074682659469545],[0.075370311737061,0.018291741609573,0.027156658470631],[-0.045866873115301,0.014593495056033,-0.049672905355692]],[[0.019315330311656,-0.022569064050913,0.016561320051551],[0.005716357845813,0.033654555678368,0.038133200258017],[-0.016339695081115,-0.030747592449188,-0.0043096384033561]],[[0.00086505763465539,-0.0016910940175876,0.045470144599676],[-0.032201632857323,0.022990392521024,0.0062747257761657],[-0.038343697786331,-0.021222826093435,-0.014085003174841]],[[0.013981876894832,0.030743042007089,-0.011982661671937],[-0.070194713771343,0.038480941206217,0.062281996011734],[-0.008758345618844,-0.026802642270923,0.012571076862514]],[[0.045371364802122,0.091551132500172,0.0554169267416],[0.0082446979358792,-0.031480792909861,0.028286419808865],[-0.049711409956217,0.027630502358079,0.053901508450508]],[[0.018186138942838,0.037332203239202,-0.012901146896183],[0.059939935803413,0.02767819352448,-0.016202766448259],[0.035628460347652,-0.012992358766496,0.036264307796955]],[[-0.049217872321606,0.027400214225054,-0.043298285454512],[0.0087092043831944,-0.0066394335590303,-0.049015391618013],[-0.011329475790262,0.010503256693482,-0.049391742795706]],[[0.02547793276608,-0.032912224531174,-0.0072054942138493],[0.021906021982431,-0.0038020866923034,0.0087748384103179],[-0.049984727054834,-0.027911357581615,0.023853277787566]],[[-0.043695956468582,0.087530672550201,0.00053975114133209],[0.0057046227157116,0.035732120275497,-0.00015841890126467],[-0.051751993596554,0.023161148652434,-0.014023342169821]],[[-0.003007892286405,-0.0007959232898429,-0.074089795351028],[-0.030508236959577,0.039440084248781,-0.025100763887167],[-0.033684022724628,0.006816390901804,0.02241912856698]],[[-0.067097991704941,-0.065214909613132,0.029081828892231],[-0.0097245145589113,0.046536721289158,-0.0091086653992534],[0.020356521010399,0.09484001994133,0.05886447429657]],[[-0.025416299700737,-0.00068162532988936,0.0098542766645551],[-0.045834928750992,0.0031004084739834,0.012220217846334],[-0.091903731226921,-0.072743698954582,-0.0014579758280888]],[[-0.037483546882868,0.11022731661797,0.054569143801928],[-0.031255625188351,-0.023820111528039,-0.0039413077756763],[-0.081356659531593,-0.090929575264454,-0.049454908818007]],[[0.0014540632255375,-0.016308711841702,-0.0055768764577806],[-0.041532091796398,0.054784625768661,0.033515304327011],[-0.024827985092998,-0.014962470158935,-0.019302502274513]],[[-0.075504533946514,0.047827128320932,-0.043430060148239],[-0.070625647902489,0.030518747866154,-0.029443068429828],[-0.036401592195034,-0.049119029194117,0.0082734255120158]],[[-0.0030958915594965,-0.0054943095892668,-0.052637174725533],[0.023931181058288,0.048362914472818,0.020570319145918],[-0.0077673839405179,0.03932174667716,-0.017968088388443]],[[0.036523401737213,0.0781264975667,0.027321677654982],[0.055385060608387,0.060950409621,0.020891843363643],[0.086502946913242,-0.0095861312001944,0.054235849529505]],[[-0.0062122433446348,0.0035865542013198,-0.047854717820883],[0.025628976523876,-0.02940695732832,0.016903916373849],[-0.07885180413723,-0.0096526481211185,-0.025646850466728]],[[-0.032680183649063,0.044051829725504,0.0369658395648],[0.020192373543978,-0.020016107708216,-0.01591482758522],[0.0053768563084304,0.01720947958529,0.033187747001648]],[[-0.03584174066782,-0.054983891546726,-0.021329781040549],[0.021195013076067,-0.051784597337246,0.047337304800749],[0.0083303153514862,0.045253667980433,-0.057723868638277]],[[0.0079869898036122,0.033397126942873,-0.018391322344542],[-0.0418273024261,-0.0060790786519647,0.017214100807905],[-0.042861364781857,-0.010201377794147,-0.026101725175977]],[[0.022123135626316,0.014101472683251,0.0032754875719547],[-0.036034513264894,0.052008561789989,-0.012683687731624],[0.0077053923159838,-0.048727791756392,-0.025741375982761]],[[0.038485817611217,0.050244078040123,0.022074477747083],[-0.017660723999143,-0.042023453861475,0.01061580516398],[0.021862167865038,0.005404588766396,-0.023424690589309]],[[0.061341762542725,-0.057150468230247,-0.059439856559038],[-0.038935486227274,-0.019024325534701,-0.0022609794978052],[0.017075892537832,0.057266004383564,0.049773670732975]],[[0.028959970921278,0.019224792718887,0.03657552972436],[0.016969662159681,-0.024126732721925,-0.047444254159927],[0.013597336597741,-7.9321340308525e-05,-0.055325083434582]],[[0.016650427132845,0.029721044003963,-0.0068113137967885],[-0.03609361499548,-0.0076530147343874,0.0094977552071214],[0.084018714725971,-0.027288941666484,0.037795580923557]],[[-0.020846139639616,0.032484613358974,0.052851557731628],[-0.02711140923202,0.020914278924465,0.028166845440865],[-0.044453226029873,0.059337873011827,-0.027089711278677]]],[[[0.059130217880011,0.022703252732754,-0.022690258920193],[-0.036936838179827,0.027059322223067,-0.02718472853303],[-0.0089296819642186,-0.05975903198123,-0.03990538045764]],[[-0.0065625784918666,0.057499311864376,0.053067289292812],[-0.016345351934433,0.00071122508961707,-0.0014492418849841],[0.029350068420172,-0.032054536044598,-0.010082778520882]],[[0.0017476900247857,-0.0056651290506124,0.0048183188773692],[0.031523134559393,-0.021915283054113,0.024053171277046],[-0.032921928912401,-0.025303291156888,0.047672942280769]],[[0.0068688662722707,0.030670240521431,0.060313560068607],[-0.0063104396685958,0.038683716207743,0.033489607274532],[0.056252438575029,-0.02280168235302,-0.016580622643232]],[[0.011139183305204,0.027027893811464,0.0091407569125295],[0.0063047334551811,0.014284840784967,-0.013390640728176],[0.015667092055082,0.050677079707384,-0.017837667837739]],[[0.05753268301487,0.051253072917461,0.05015792325139],[-0.021656950935721,-0.027139313519001,0.0055827284231782],[-0.024709593504667,0.00175848568324,-0.00059863249771297]],[[0.016208132728934,-0.034114848822355,-0.029534701257944],[-0.063146010041237,-0.022578837350011,-0.020648391917348],[-0.015730241313577,-0.0020207243505865,-0.0020445717964321]],[[-0.01822404935956,-0.023206051439047,0.014646734111011],[-0.091987028717995,-0.024700682610273,0.047443974763155],[-0.0025735711678863,0.0063284845091403,-0.019905146211386]],[[0.030287398025393,0.0064730513840914,-0.0041781794279814],[-0.0032732032705098,-0.043683525174856,0.043503206223249],[0.064005009829998,0.077445715665817,-0.0021004879381508]],[[0.014901042915881,-0.065695680677891,0.019689766690135],[0.10829182714224,-0.0068085072562099,0.00057798461057246],[-0.029778661206365,0.033107038587332,-0.022136308252811]],[[0.012914996594191,0.057608664035797,0.0067577622830868],[0.023163877427578,-0.020774515345693,0.0095771327614784],[0.012695265002549,-0.013173940591514,0.0014861256349832]],[[0.056443724781275,0.04403742775321,0.010708946734667],[0.036915317177773,-0.028605304658413,0.0074791153892875],[-0.036968801170588,-0.024212926626205,-0.0017767288954929]],[[-0.032915476709604,0.032718874514103,-0.027471236884594],[-0.0082412380725145,0.040887925773859,-0.036786980926991],[0.027936596423388,0.040632702410221,-0.072171129286289]],[[0.08656894415617,0.035259239375591,-0.010807832702994],[0.048504129052162,0.070313185453415,0.10501088947058],[0.02636743709445,0.0091474074870348,0.040486935526133]],[[0.028448337689042,0.054258655756712,0.0016845248173922],[0.0090457526966929,0.025180393829942,0.051547158509493],[-0.0098343603312969,-0.0017711209366098,0.0334199257195]],[[0.011874351650476,-0.027184585109353,0.019195070490241],[-0.041003968566656,0.046397101134062,-0.037199832499027],[-0.01428247243166,0.04671698063612,0.021897006779909]],[[0.063156142830849,0.1014836281538,0.04227377474308],[-0.03263433277607,-0.039025563746691,-0.026066165417433],[-0.0049480348825455,0.010603466071188,0.014056623913348]],[[0.024466145783663,-0.00089956552255899,0.010783144272864],[0.047080393880606,0.021974673494697,0.00024850471527316],[-0.014396354556084,-0.088179297745228,0.044744439423084]],[[-0.054154835641384,0.019198918715119,0.014486630447209],[0.048563316464424,-0.00407550111413,-0.051336657255888],[-0.012156780809164,-0.012282858602703,0.061443421989679]],[[0.0054705156944692,0.042850229889154,-0.066729545593262],[0.030813321471214,-0.028924008831382,-0.0070467088371515],[0.007602097466588,-0.022183967754245,0.010335213504732]],[[0.030434764921665,0.045231498777866,-0.065773002803326],[0.024046145379543,-0.029161171987653,-0.027614783495665],[0.047251436859369,-0.10907726734877,0.014290648512542]],[[0.006134897004813,0.050120078027248,0.0061541758477688],[0.065689519047737,0.041500862687826,-0.0088387355208397],[0.0079064704477787,-0.0058713210746646,0.039735220372677]],[[0.0052001252770424,0.028248470276594,-0.028592707589269],[0.0083332927897573,0.062561482191086,-0.0070985252968967],[-0.030839053913951,-0.039534859359264,0.023397490382195]],[[-0.033464469015598,-0.058330785483122,0.036706816405058],[-0.016374738886952,-0.039790030568838,-0.018173290416598],[0.0015110935783014,-0.047396473586559,0.011499151587486]],[[0.014125782065094,0.029896831139922,0.011867008171976],[0.06898906826973,-0.045656654983759,-0.050991866737604],[-0.02824062295258,0.054080244153738,-0.092776350677013]],[[-0.085790298879147,0.015262445434928,-0.053811855614185],[-0.0033526157494634,-0.020780870690942,0.013627886772156],[0.00042657472658902,0.015501867048442,-0.011982394382358]],[[0.026372576132417,0.031640835106373,-0.00028837964055128],[-0.0042917593382299,0.0056208209134638,-0.022471399977803],[-0.051833555102348,-0.03328263014555,0.024765722453594]],[[-0.010921406559646,0.030077179893851,-0.044289652258158],[0.054469998925924,-0.076588675379753,0.0011084458092228],[0.031258650124073,0.032837297767401,-0.042270723730326]],[[-0.013448117300868,0.015896441414952,0.0236910674721],[-0.05768932774663,-0.00080980337224901,-0.016387283802032],[0.020864777266979,0.010077085345984,-0.060547169297934]],[[-0.019036289304495,0.027827594429255,-0.013862012885511],[0.002414511051029,0.010923316702247,-0.0080552361905575],[-0.015473040752113,0.026856975629926,-0.0071886940859258]],[[-0.02499127574265,-0.030555007979274,-0.041691184043884],[0.016859855502844,-0.017662482336164,-0.082400038838387],[-0.0088670663535595,0.018506664782763,-0.037021186202765]],[[0.017540629953146,0.035144746303558,-0.0081660337746143],[0.01391504984349,0.026031063869596,0.026404181495309],[-0.0024909609928727,-0.032853495329618,0.01020114403218]],[[-0.06368737667799,-0.03892732411623,-0.049177568405867],[-0.023591585457325,0.0033867249730974,0.0096913706511259],[0.063700392842293,-0.020126633346081,-0.023931551724672]],[[-0.06803560256958,-0.013189339078963,0.042461667209864],[0.00070645048981532,-0.052072368562222,0.013861257582903],[-0.040283657610416,-0.049588277935982,0.048171985894442]],[[-0.031491253525019,0.072369687259197,0.052280072122812],[0.039120566099882,-0.06601682305336,-0.076643235981464],[0.009375668130815,-0.0095814988017082,0.069459073245525]],[[0.03167513012886,-0.020258575677872,-0.043233714997768],[-0.03870702534914,-0.011077677831054,-0.02985804527998],[-0.026500908657908,-0.0024551937822253,-0.05860174447298]],[[-0.0073224077932537,0.020950250327587,0.017504315823317],[-0.076761782169342,-0.059907294809818,0.01898836158216],[-0.031768422573805,0.037617571651936,-0.037393376231194]],[[-0.022699903696775,0.040567703545094,-0.015670828521252],[-0.027223056182265,-0.049982085824013,0.0095894262194633],[-0.0077024940401316,-0.01475262735039,0.032976128160954]],[[-0.0077322577126324,-0.024656519293785,-0.0041743731126189],[-0.034774884581566,-0.018025435507298,0.013558492995799],[-0.035849746316671,-0.079773768782616,-0.0065319156274199]],[[0.0041958545334637,0.05630673840642,-0.057620786130428],[-0.054597239941359,-0.046247687190771,0.015292895026505],[0.04606869071722,-0.0061316704377532,0.014456985518336]],[[0.052158858627081,-0.022436629980803,0.010137911885977],[0.015006787143648,-0.058995459228754,-0.02571071498096],[-0.028391271829605,0.070339351892471,-0.0078694941475987]],[[-0.022288851439953,-0.1376705467701,-0.025027763098478],[-0.079188421368599,0.0773054510355,0.026850592344999],[0.02455366589129,-0.028035145252943,0.032026350498199]],[[0.029845410957932,0.073036387562752,0.0067248633131385],[0.013821113854647,-0.035490024834871,-0.0094438530504704],[-0.068795584142208,0.0046411701478064,-0.082282304763794]],[[0.06034267321229,-0.034176107496023,0.038753774017096],[0.004538924433291,-0.0046798666007817,-0.037178996950388],[-0.0099216923117638,-0.066472582519054,-0.026065176352859]],[[0.067956946790218,0.021045111119747,-0.030330043286085],[0.029598787426949,-0.024729741737247,0.0038537178188562],[0.062812201678753,0.0389772541821,-0.025266520678997]],[[-0.0022393325343728,0.03115026652813,-0.0024001013953239],[0.00034197387867607,-0.014357331208885,-0.030676705762744],[0.052288491278887,0.026834696531296,0.035619858652353]],[[-0.090931497514248,-0.056864514946938,0.074396133422852],[-0.071411274373531,-0.037863276898861,0.10113205015659],[0.053326331079006,0.0077237500809133,-0.039952080696821]],[[-0.028797000646591,0.014658296480775,-0.035133227705956],[-0.033741299062967,0.069947637617588,0.076673001050949],[-0.081330582499504,-0.0044223805889487,0.052107691764832]],[[-0.05186539888382,0.046658672392368,0.016742553561926],[-0.088534072041512,0.0046174582093954,0.027160353958607],[-0.042744338512421,0.024472400546074,0.03819302469492]],[[0.063659623265266,0.0061642802320421,0.046478107571602],[0.00103732815478,0.065168477594852,-0.0078491419553757],[-0.054642703384161,0.094833433628082,0.010522393509746]],[[-0.002313012490049,-0.014904655516148,-0.020172614604235],[0.05040356144309,-0.059781730175018,0.00017431942978874],[-0.003156544174999,0.0063080894760787,-0.0044206255115569]],[[-0.055743474513292,0.0027038953267038,0.0015046189073473],[0.0073431259952486,-0.0029344588983804,0.020911648869514],[0.088476091623306,0.01442779880017,-0.010485394857824]],[[-0.019845670089126,0.054624285548925,0.0091710854321718],[-0.027203850448132,0.046798672527075,-0.016878450289369],[-0.019109092652798,-0.0097904950380325,0.042731713503599]],[[0.0838463306427,0.0366390645504,-0.039071172475815],[-0.0022279671393335,0.061173647642136,0.12063863128424],[0.04007176309824,0.098249763250351,-0.014482554979622]],[[-0.038054149597883,0.048153072595596,-0.0150051349774],[0.047776732593775,-0.10897875577211,0.037067044526339],[0.014097628183663,0.038531970232725,-0.017232090234756]],[[-0.0040693157352507,-0.050197839736938,-0.014292871579528],[-0.057202998548746,0.019238522276282,0.0088847354054451],[0.019099382683635,-0.073085218667984,0.047405228018761]],[[-0.026025205850601,-0.010050237178802,0.019204014912248],[0.0084991231560707,0.043774150311947,0.035356733947992],[-0.017584886401892,-0.034740660339594,0.073701828718185]],[[-0.0096633266657591,0.049123600125313,-0.010990438982844],[0.015363527461886,-0.011466512456536,-0.0076820640824735],[0.013062274083495,0.044932097196579,0.0012318637454882]],[[0.09286043047905,0.012324121780694,0.052908919751644],[-0.019678812474012,0.020045390352607,0.009145469404757],[0.065225258469582,-0.019697098061442,0.026238350197673]],[[0.01751902140677,-0.057902749627829,0.029649624601007],[-0.0029663098976016,0.022746095433831,0.026688784360886],[0.026694608852267,0.027930166572332,-7.0006353780627e-05]],[[-0.017330281436443,-0.035773191601038,-0.037255793809891],[-0.045529536902905,0.0096584213897586,-0.022242411971092],[0.062912009656429,-0.017815668135881,0.015931937843561]],[[-0.062468815594912,-0.019892852753401,0.030457014217973],[0.013751008547843,0.028417140245438,0.017572775483131],[0.017646608874202,-0.021669259294868,0.038045004010201]],[[0.00012889482604805,-0.012630684301257,-0.042909365147352],[0.012185850180686,-0.015254411846399,0.011469173245132],[0.055792097002268,-0.015338594093919,-0.054943308234215]],[[-0.025253027677536,-0.01034140586853,0.036405090242624],[-0.066655687987804,-0.015340590849519,-0.018065810203552],[0.0026630153879523,-0.0048122243024409,0.0083360765129328]]],[[[0.076049216091633,0.031685493886471,0.036438919603825],[0.012628766708076,-0.09073144942522,-0.12664774060249],[0.0042587891221046,0.0032881805673242,-0.022142296656966]],[[-0.010373085737228,0.065525636076927,-0.0082038650289178],[-0.060479503124952,-0.033715933561325,0.03931275382638],[-0.039854247123003,-0.01943744905293,-0.0047962558455765]],[[0.019368834793568,0.028498509898782,0.064761012792587],[-0.045631114393473,-0.04066227003932,-0.014789381064475],[-0.050716318190098,-0.022004388272762,-0.0071504805237055]],[[-0.061642501503229,-0.00040602701483294,0.019560772925615],[0.010847665369511,0.091986075043678,0.046640202403069],[0.015598928555846,0.019886638969183,-0.037757053971291]],[[0.0032424193341285,0.026764903217554,-0.075102798640728],[0.017157947644591,-0.029414650052786,0.055799812078476],[-0.0012607178650796,0.022950049489737,-0.068786822259426]],[[-0.12186793982983,0.023832991719246,-0.038519930094481],[-0.034297559410334,0.036101095378399,-0.045696496963501],[-0.075589284300804,0.029824111610651,-0.031563524156809]],[[-0.022412415593863,-0.017217813059688,0.0071911313571036],[-0.027875749394298,-0.068735927343369,0.012986443936825],[-0.046114973723888,0.010198873467743,0.010452944785357]],[[-0.064851492643356,-0.018147168681026,0.027138072997332],[-0.11580003798008,0.012719491496682,-0.0094180013984442],[-0.031222689896822,-0.0066267079673707,-0.0010917582549155]],[[-0.051303587853909,-0.033891290426254,0.0014786254614592],[0.054865378886461,-0.0045516425743699,0.057816237211227],[-0.048222821205854,0.064145348966122,-0.016108920797706]],[[0.060556404292583,0.050955876708031,-0.037310041487217],[0.029007947072387,-0.0098731424659491,-0.042953617870808],[0.010870892554522,-0.0016659464454278,-0.026725690811872]],[[0.012479806318879,0.00057745538651943,0.061605170369148],[-0.079610899090767,-0.036547049880028,0.034825176000595],[0.015768025070429,0.087389945983887,-0.020599756389856]],[[0.0029213463421911,0.031078197062016,0.043240297585726],[0.00186179834418,-0.016037894412875,0.060655441135168],[0.017634706571698,0.03172180429101,-0.037003360688686]],[[-0.0052797575481236,0.00068116647889838,-0.01903703995049],[-0.028992230072618,0.028199205175042,-0.012586414813995],[0.056096844375134,0.061194229871035,-0.0082610761746764]],[[0.049701295793056,0.0076015233062208,0.027693569660187],[0.056818276643753,0.054292220622301,-0.040026720613241],[-0.016791885718703,-0.025644928216934,-0.015012796036899]],[[-0.013146585784853,0.09475664049387,0.013659453950822],[-0.029138654470444,-0.041949957609177,0.025129383429885],[-0.017117824405432,0.028978986665606,0.019845085218549]],[[0.018655130639672,-0.054747741669416,0.044981218874454],[0.0019100721692666,-0.038479052484035,-0.012588886544108],[-0.054610315710306,0.022094920277596,0.0037892183754593]],[[-0.027381701394916,0.0055426671169698,0.026251330971718],[-0.0098700448870659,-0.0059748641215265,-0.042680412530899],[0.032289896160364,-0.031139431521297,0.042955733835697]],[[-0.012879530899227,0.021265776827931,-0.0095456643030047],[-0.023888939991593,0.0039240489713848,0.023703843355179],[-0.043505780398846,-0.0058386921882629,-0.041965078562498]],[[-0.033914126455784,-0.00093542650574818,0.014519470743835],[0.023271983489394,-0.011974593624473,-0.037611238658428],[-0.034558769315481,-0.0017919831443578,0.0051603587344289]],[[-0.042589507997036,-0.03798408433795,0.0071875192224979],[-0.033385667949915,0.011195453815162,-0.0021118668373674],[0.036224097013474,-0.051018282771111,-0.011025745421648]],[[0.015634421259165,0.038593806326389,0.0053317272104323],[0.081283271312714,0.00085509393829852,0.059783138334751],[-0.068349257111549,-0.033935353159904,0.027874341234565]],[[0.075674399733543,-0.040901646018028,-0.01099272351712],[-0.027925420552492,0.00405562389642,-0.051531616598368],[0.021381262689829,-0.0040165018290281,0.024877233430743]],[[0.056178748607635,0.035604014992714,0.016506809741259],[-0.032708425074816,-0.046707198023796,-0.0093707097694278],[-0.021783171221614,0.0061993291601539,0.015993647277355]],[[0.057267677038908,-0.070015177130699,0.027319708839059],[-0.062949948012829,0.037549447268248,0.0014468684094027],[-0.0037458392325789,-0.031099094077945,-0.015023687854409]],[[-0.024938335642219,0.020639002323151,-0.084247455000877],[0.054037228226662,-0.0057338159531355,-0.021641634404659],[-0.030411606654525,-0.011863954365253,0.042320765554905]],[[-0.018224321305752,0.044670831412077,0.0034425135236233],[-0.025753097608685,-0.016822535544634,-0.010425884276628],[0.029499700292945,0.0024895933456719,-0.049449175596237]],[[-0.056890562176704,0.042869612574577,0.043771144002676],[-0.0058764303103089,-0.016383977606893,-0.0049144942313433],[0.029545247554779,0.0016876163426787,0.0037393767852336]],[[0.02813296765089,-0.041224520653486,-0.004256091080606],[0.047980446368456,-0.0086872400715947,-0.0038191031198949],[-0.037858594208956,-0.044101741164923,-0.017299426719546]],[[0.052568171173334,-0.0031795424874872,-0.014794813469052],[-0.062856383621693,-0.01635629683733,-0.0064112762920558],[0.047605104744434,-0.020624987781048,0.040544584393501]],[[-0.038513273000717,-0.031759098172188,0.011188986711204],[0.021351832896471,0.033648893237114,0.039592888206244],[0.06889333575964,0.01095168851316,0.022722434252501]],[[-0.010220156982541,0.030312020331621,-0.044749185442924],[-0.043203741312027,-0.056385342031717,-0.024510649964213],[-0.00096173124620691,-0.050168227404356,0.018051916733384]],[[0.035158410668373,0.080185420811176,-0.0034197352360934],[-0.012709319591522,-0.028065593913198,-0.006145607214421],[0.039296615868807,-0.04131069406867,-0.030295215547085]],[[-0.074937626719475,-0.04356537759304,-0.056146644055843],[-0.023026080802083,-0.0068604499101639,-0.039814967662096],[0.04394968226552,0.03606516122818,-0.042924076318741]],[[-0.039904203265905,-0.027288863435388,-0.0023413845337927],[-0.013842225074768,-0.023664422333241,0.0062795002013445],[0.040501642972231,-0.10702956467867,-0.041210357099771]],[[-0.063499711453915,-0.0071614845655859,0.038711979985237],[0.0099988179281354,-0.0085127977654338,-0.057312212884426],[-0.062999859452248,0.012048569507897,0.058171086013317]],[[-0.049439541995525,-0.03658589348197,-0.049992203712463],[-0.067948751151562,-0.0069646374322474,-0.063839726150036],[0.039555631577969,0.037302378565073,0.048455704003572]],[[0.0065552992746234,-0.0086439987644553,0.050542950630188],[-0.063264466822147,-0.041507553309202,0.035304646939039],[-0.010089603252709,0.023800620809197,0.043903183192015]],[[-0.0053586876019835,0.037503995001316,0.0054422449320555],[-0.035377494990826,0.067888759076595,0.0088359406217933],[0.053003389388323,-0.052307154983282,-0.0044917166233063]],[[-0.0024465061724186,-0.029646834358573,0.04436956346035],[0.0026842672377825,-0.043975051492453,-0.049379244446754],[-0.033400487154722,-0.090894795954227,-0.080311119556427]],[[0.068823881447315,0.040133222937584,-0.026342805474997],[0.030679240822792,0.031502023339272,0.017602952197194],[-0.049264244735241,0.041389316320419,-0.017965704202652]],[[-0.063111744821072,-0.0049375775270164,0.0090362261980772],[0.039035603404045,-0.0066545568406582,0.097132101655006],[-0.03411778062582,0.0057503152638674,0.015330786816776]],[[-0.0028529495466501,-0.030553657561541,-0.060802027583122],[-0.062976062297821,-0.096287071704865,-0.031253855675459],[-0.001352682011202,0.036269344389439,-0.043050620704889]],[[-0.057806812226772,-0.031571947038174,0.041352290660143],[-0.03287411108613,0.02615549787879,0.014719846658409],[0.011258601211011,-0.017946556210518,-0.018040426075459]],[[-0.052552260458469,-0.010381568223238,0.026697339490056],[0.026639606803656,-0.025750819593668,0.019861701875925],[0.045684102922678,0.0010527941631153,-0.010001769289374]],[[0.0176553837955,-0.027357185259461,0.015639843419194],[0.021027380600572,0.039055112749338,-0.067942567169666],[0.042451217770576,-0.0078960638493299,0.027208302170038]],[[0.038546677678823,-0.051970314234495,0.024663958698511],[0.011088505387306,0.012804351747036,-0.0012748981826007],[0.08386492729187,-0.028257029131055,0.035502456128597]],[[0.077663905918598,-0.10395040363073,0.014483031816781],[-0.024730520322919,0.03428453207016,-0.022414613515139],[0.0075361733324826,-0.038459476083517,0.010946094989777]],[[0.026089223101735,-0.021386316046119,0.038711659610271],[-0.014128223992884,-0.0630012601614,-0.03251039981842],[0.0095371333882213,-0.0010952947195619,0.018120313063264]],[[0.033960152417421,-0.014915648847818,0.0044708629138768],[-0.04848675429821,0.056396562606096,0.011746405623853],[0.03517035022378,-0.011803106404841,0.032538656145334]],[[0.043658286333084,-0.045707404613495,-0.022305311635137],[0.10149199515581,0.066709861159325,0.015284359455109],[-0.0035400267224759,0.027598025277257,0.08359532058239]],[[-0.0021302383393049,0.027885688468814,-0.020165884867311],[0.047492198646069,-0.0074039846658707,-0.018727485090494],[-0.019284201785922,-0.0027702467050403,-0.020404597744346]],[[-0.05785147100687,-0.027596022933722,0.028330136090517],[0.016552994027734,0.071801386773586,0.027995845302939],[0.029470156878233,-0.011046146042645,-0.07236222922802]],[[-0.009422211907804,0.042015749961138,-0.02922155149281],[-0.085478976368904,0.01339218672365,-0.052227076143026],[-0.0027630690019578,0.019104199483991,-0.043725199997425]],[[0.056542932987213,0.013303400017321,0.083644725382328],[0.03303536772728,-0.014974623918533,0.025103703141212],[0.07483759522438,0.069379962980747,0.078201100230217]],[[0.076973870396614,-0.057668995112181,-0.037130452692509],[-0.019901538267732,-0.0049968822859228,-0.01258435472846],[-0.0065153366886079,0.0088124917820096,-0.013334050774574]],[[-0.00069690821692348,-0.00044040186912753,-0.0020003814715892],[-0.049883831292391,0.021772095933557,0.024243243038654],[0.0396395213902,-0.018400892615318,0.086269199848175]],[[0.026007480919361,0.018072877079248,0.054295502603054],[0.019814725965261,0.022084789350629,-0.012685257010162],[0.044945497065783,-0.040534917265177,0.046400155872107]],[[-0.048991814255714,0.0064151748083532,0.016948882490396],[0.055176436901093,0.060590896755457,0.01048868894577],[-0.024489771574736,-0.0058118142187595,-0.023302040994167]],[[0.037356335669756,0.042558584362268,0.0060113510116935],[-0.0095061520114541,0.019212955608964,0.074998959898949],[0.019584892317653,-0.05549069866538,-0.0014277982991189]],[[-0.033030156046152,0.013571785762906,0.0067427288740873],[0.0087939519435167,0.046716712415218,-0.013759012334049],[0.020989926531911,0.033355742692947,-0.017319032922387]],[[-0.037001941353083,-0.0059874327853322,-0.055194213986397],[-0.022464230656624,-0.045682922005653,-0.02799897454679],[-0.024636972695589,-0.022170681506395,0.044474329799414]],[[0.089205384254456,0.0012402082793415,0.012580179609358],[-0.030243063345551,-0.0025912155397236,-0.032568942755461],[0.01864729821682,-0.037852969020605,-0.016055097803473]],[[0.0014519726391882,0.015232908539474,-0.053323563188314],[0.00059357727877796,-0.027441222220659,-0.0061044567264616],[-0.012199084274471,0.052309945225716,-0.05091580376029]],[[0.020519345998764,-0.026635773479939,0.025229398161173],[0.051138799637556,-0.038245182484388,-0.0021267919801176],[-0.07331857085228,0.025407664477825,-0.05057705566287]]],[[[0.032780092209578,0.071236275136471,0.095911107957363],[0.14170435070992,0.027498960494995,-0.21751941740513],[-0.073593787848949,0.10957437008619,0.10380710661411]],[[-0.038093347102404,-0.058614265173674,-0.040810208767653],[-0.078263498842716,-0.10720057785511,-0.10433525592089],[0.046005886048079,-0.0061559658497572,-0.090317688882351]],[[-0.032664958387613,-0.07582351565361,-0.02556069009006],[-0.045573864132166,-0.0020624021999538,0.025918155908585],[-0.1348058283329,0.019850520417094,-0.018151000142097]],[[0.0065148961730301,0.058615431189537,-0.10292159020901],[-0.088491126894951,-0.030052008107305,-0.020652588456869],[0.032139386981726,0.10669349879026,0.0071086171083152]],[[-0.066724061965942,0.10963696241379,0.0096410047262907],[0.1064782589674,-0.0348653011024,0.045197553932667],[0.015064368955791,-0.10093670338392,0.0036069238558412]],[[-0.038802437484264,0.058870494365692,-0.10798982530832],[-0.1001198142767,-0.015402936376631,-0.035287078469992],[-0.054296184331179,0.055009089410305,-0.050770789384842]],[[-0.10581853985786,-0.11638198047876,0.016532694920897],[-0.02358359657228,-0.029878925532103,-0.032606575638056],[-0.078621000051498,-0.082011207938194,0.012229228392243]],[[0.04602362588048,0.023748755455017,-0.070483684539795],[-0.040413659065962,-0.10561507195234,0.056009940803051],[-0.0085559086874127,-0.066877171397209,-0.0081379925832152]],[[0.025660082697868,-0.0080857314169407,-0.025767598301172],[0.0099682463333011,0.068802699446678,-0.0135284550488],[0.002066498156637,0.031296029686928,-0.096510119736195]],[[0.05749523639679,-0.012645242735744,0.11839350312948],[-0.060824248939753,-0.081236064434052,-0.10627254098654],[0.098480351269245,0.071459598839283,-0.16267523169518]],[[0.1129994392395,0.014156637713313,0.10947267711163],[0.0039157113060355,0.08207406103611,-0.069258004426956],[-0.19893179833889,0.041732415556908,-0.015806123614311]],[[-0.010721653699875,0.011047053150833,0.040598157793283],[0.04140093550086,-0.078737169504166,-0.010209106840193],[-0.062827669084072,-0.045315720140934,-0.016785418614745]],[[0.010281202383339,-0.00073242635698989,0.00064082228345796],[-0.039869271218777,-0.033833034336567,-0.013932063244283],[-0.033074133098125,0.085658602416515,-0.037287876009941]],[[0.00211217161268,0.034283775836229,0.089325554668903],[0.053302712738514,0.23066177964211,0.21472871303558],[0.12916737794876,0.057903800159693,0.19250562787056]],[[0.086290970444679,0.12916907668114,0.032060749828815],[0.019061760976911,-0.03417744114995,0.097398184239864],[0.032670330256224,0.045611876994371,0.12042728811502]],[[-0.083289444446564,0.042437750846148,0.11995991319418],[-0.042475987225771,0.02624580077827,0.033604614436626],[0.053405862301588,0.064976029098034,0.043876852840185]],[[0.025129118934274,-0.027358625084162,0.0012725042179227],[-0.0113182105124,-0.1296706199646,0.026018621399999],[-0.0090347258374095,-0.119200758636,0.0047651221975684]],[[-0.10783039033413,-0.086858697235584,-0.045814011245966],[-0.088618621230125,0.012375317513943,-0.11907501518726],[-0.056304328143597,-0.14080436527729,-0.12203841656446]],[[-0.0075804768130183,0.025435008108616,-0.060782145708799],[-0.13115650415421,-0.084065861999989,-0.065250419080257],[0.014033142477274,-0.03817642480135,-0.056309465318918]],[[0.024300361052155,-0.10646372288465,-0.013794523663819],[-0.13040286302567,-0.0066856141202152,-0.03084715269506],[0.041520267724991,-0.12347090244293,0.074265532195568]],[[0.11876028031111,0.030437670648098,0.095956407487392],[0.19206409156322,0.0085369255393744,0.11104550212622],[0.15964183211327,0.069615252315998,0.03842618316412]],[[0.065684169530869,-0.10122327506542,-0.027716593816876],[-0.049338821321726,-0.033550273627043,0.0049412837252021],[-0.092085503041744,0.013845681212842,-0.010786021128297]],[[0.071035318076611,0.016275258734822,0.085740223526955],[-0.12506991624832,-0.13349297642708,0.066341742873192],[-0.0096269184723496,0.0015872295480222,0.066394284367561]],[[0.052012160420418,-0.0074773393571377,0.025285646319389],[-0.033435747027397,0.095000438392162,0.0069202836602926],[-0.036591783165932,0.042145691812038,-0.088924273848534]],[[-0.024437932297587,0.020960099995136,0.031121475622058],[-0.028664777055383,0.092853747308254,0.012439886108041],[-0.0023614000529051,0.085211619734764,0.14189645648003]],[[-0.058482605963945,-0.050689641386271,-0.054667849093676],[0.014294592663646,-0.0042736297473311,-0.031177153810859],[-0.044328905642033,0.026220250874758,-0.063827060163021]],[[0.041868150234222,-0.043945353478193,-0.057704843580723],[0.074019886553288,-0.13025446236134,0.05373952537775],[-0.047082930803299,0.0081107281148434,0.0096311857923865]],[[-0.011798955500126,0.14477175474167,0.22900608181953],[-0.01809105835855,0.10364965349436,0.085589796304703],[0.098619647324085,-0.015281230211258,0.011822309345007]],[[-0.037036534398794,0.11619090288877,0.11002322286367],[0.089057594537735,0.05303155630827,0.055353704839945],[0.0068742912262678,0.045332245528698,-0.033416192978621]],[[-0.016030354425311,-0.11630181223154,-0.030013494193554],[-0.097703151404858,-0.053385224193335,0.033470299094915],[-0.012652962468565,0.044582296162844,0.02644388191402]],[[-0.045921925455332,-0.14736206829548,0.024066135287285],[0.018166534602642,-0.0067409323528409,-0.018996328115463],[-0.018548024818301,0.013262622989714,0.075861841440201]],[[0.019115645438433,0.039620373398066,0.01611683703959],[0.10408713668585,-0.0026792236603796,0.042737696319818],[-0.054477628320456,-0.090500965714455,0.021772312000394]],[[-0.052041564136744,0.019282618537545,-0.0019057474564761],[0.019836926832795,0.015579115599394,-0.054584868252277],[0.042968709021807,0.065761290490627,-0.085954152047634]],[[0.033518072217703,-0.0025323841255158,0.024181308224797],[-0.11360063403845,-0.10276763886213,-0.046806439757347],[-0.020295614376664,-0.09597510099411,-0.16104997694492]],[[-0.069972179830074,-0.01179310772568,-0.020954612642527],[0.00088506424799562,0.12578132748604,0.15372668206692],[-0.0016024111537263,0.078580133616924,0.13343447446823]],[[-0.048192836344242,-0.064367339015007,-0.12301515042782],[-0.00028462850605138,0.10647547245026,-0.11309064924717],[0.050212252885103,0.025222316384315,-0.036308094859123]],[[-0.050954226404428,-0.011597600765526,0.04152388125658],[0.031417541205883,-0.058328434824944,0.11770672351122],[-0.039632931351662,0.063362367451191,0.028369192034006]],[[-0.028793251141906,-0.079105637967587,0.11562667787075],[0.0053050676360726,0.0060217664577067,-0.041733089834452],[-0.027964664623141,0.082039855420589,-0.07594957202673]],[[0.050034921616316,0.0020518533419818,0.017824240028858],[-0.044716738164425,0.007138998247683,0.084517724812031],[0.065139874815941,-0.093670308589935,0.12333042174578]],[[-0.069630578160286,0.063449926674366,0.036288265138865],[-0.018581338226795,0.052649296820164,0.1524807959795],[-0.0078774075955153,-0.026223471388221,0.01715736463666]],[[-0.033693473786116,0.029144963249564,0.041950423270464],[-0.015185889787972,-0.050097331404686,-0.074978664517403],[-0.097637511789799,-0.12138652801514,0.065770246088505]],[[0.034884434193373,-0.031201483681798,-0.010713122785091],[-0.017900560051203,-0.17306073009968,-0.063472412526608],[-0.039760880172253,0.012419396080077,0.033451344817877]],[[-0.00081020302604884,0.020931031554937,0.018198473379016],[-0.051947496831417,-0.061754163354635,-0.11175568401814],[-0.018746124580503,-0.14229418337345,0.0025780289433897]],[[-0.018599953502417,0.019062696024776,0.028749316930771],[-0.010566447861493,0.005341250449419,-0.010296969674528],[0.019482122734189,0.032380230724812,0.018546706065536]],[[-0.021754702553153,0.022686224430799,0.035721816122532],[0.07364259660244,0.14201039075851,-0.078952997922897],[0.0047926385886967,0.045238614082336,0.0085696177557111]],[[0.060154695063829,0.025308068841696,-0.05768870189786],[-0.11516367644072,-0.094388328492641,0.13182456791401],[0.0092181712388992,-0.043083738535643,0.13397246599197]],[[0.012577089481056,-0.056235048919916,-0.02288163267076],[0.042904548346996,0.0098634138703346,0.0487638451159],[0.017784776166081,0.027427377179265,0.077230490744114]],[[-0.078436851501465,-0.024932082742453,-0.061950720846653],[-0.1548085808754,-0.032500114291906,-0.1553959697485],[-0.10262938588858,-0.017321564257145,-0.059806544333696]],[[-0.066013641655445,-0.025787374004722,0.061204001307487],[0.0060290554538369,0.081582844257355,0.02749533392489],[-0.054724346846342,-0.039431635290384,-0.010425440967083]],[[0.0066463146358728,0.13429947197437,0.042813193053007],[0.041071802377701,0.14635975658894,-0.043340507894754],[0.025184884667397,-0.023788694292307,-0.23486311733723]],[[-0.063600823283195,-0.031203255057335,-0.037346035242081],[-0.090702079236507,-0.13469655811787,0.060106951743364],[0.042357098311186,-0.20287035405636,0.0074223643168807]],[[-0.10659342259169,-0.082120336592197,-0.071387998759747],[0.057681210339069,-0.0037421649321914,-0.037587478756905],[-0.032414626330137,-0.021372081711888,-0.050993770360947]],[[0.023977341130376,0.046671766787767,-0.013963675126433],[0.018593480810523,-0.06292849034071,-0.039441987872124],[-0.050287917256355,-0.0047374209389091,-0.059069558978081]],[[-0.10182158648968,-0.19116345047951,0.065117843449116],[0.14860053360462,0.27291125059128,-0.029357295483351],[0.14116081595421,0.25847586989403,0.017526121810079]],[[-0.034845750778913,-0.14705768227577,0.082243956625462],[0.005107051692903,0.0098431007936597,0.10974206775427],[0.035022716969252,0.07100972533226,0.0054859896190464]],[[0.0099070128053427,0.10790979862213,-0.026143413037062],[0.084753386676311,0.10096157342196,0.0080686444416642],[0.012142634950578,-0.019912540912628,-0.035689603537321]],[[-0.059145409613848,0.022451432421803,0.0027542694006115],[0.015574731864035,-0.12864935398102,0.036370370537043],[-0.0011610513320193,-0.01122097671032,-0.05294007435441]],[[-0.0064458018168807,-0.043564971536398,-0.052602745592594],[0.016822263598442,-0.22038757801056,-0.067006565630436],[-0.075530640780926,-0.04991988837719,-0.039743896573782]],[[-0.018097806721926,0.01532812975347,0.010724938474596],[-0.069119229912758,0.025591434910893,0.014855640940368],[0.010620943270624,0.018372014164925,0.077369384467602]],[[-0.069239132106304,-0.031705062836409,-0.033008899539709],[0.12483894824982,0.1485743522644,0.01068917196244],[0.0025272471830249,-0.0048006395809352,-0.074477881193161]],[[-0.07698281109333,-0.10234031826258,0.0035746276844293],[0.033890295773745,0.058105651289225,-0.010826445184648],[0.0073600085452199,0.037831600755453,-0.034918196499348]],[[0.014526135288179,0.014434984885156,0.071619898080826],[0.0060304687358439,-0.071638233959675,-0.021163197234273],[-0.020744819194078,0.049171295017004,0.028905952349305]],[[-0.0057146823965013,0.069235347211361,0.023521654307842],[-0.045144688338041,-0.066073730587959,-0.058829098939896],[0.028035746887326,-0.087008625268936,0.068451918661594]],[[-0.014856066554785,-0.064529344439507,0.031950738281012],[-0.10788247734308,-0.018178947269917,-0.0019544668029994],[-0.016520399600267,0.024827828630805,-0.003932704217732]]],[[[-0.086123451590538,-0.10754042118788,-0.077402278780937],[0.034474056214094,0.053559098392725,-0.068428009748459],[0.056519351899624,-0.045718245208263,-0.070797294378281]],[[-0.0099191088229418,-0.058870006352663,-0.029654663056135],[0.019303085282445,0.0016716041136533,0.018231270834804],[-0.039806921035051,0.025475781410933,0.085595488548279]],[[0.051050882786512,0.073199830949306,0.052486654371023],[-0.00092711107572541,-0.085574977099895,0.037977151572704],[-0.020004523918033,-0.037756513804197,-0.031501401215792]],[[-0.020594840869308,-0.0056673376820982,0.030727706849575],[-0.01746316626668,-0.024843379855156,-0.032376021146774],[0.016229430213571,0.02683618478477,0.0041446099057794]],[[0.048307072371244,0.044353876262903,0.027839578688145],[-0.037426587194204,0.037144500762224,-0.0064934231340885],[0.024478962644935,-0.027530802413821,-0.012849713675678]],[[0.11961194872856,-0.016787197440863,0.036659117788076],[-0.096785604953766,-0.0805843770504,0.054885260760784],[-0.093120001256466,-0.049691043794155,-0.041708961129189]],[[0.050254341214895,0.0081515675410628,-0.050610400736332],[-0.048754084855318,0.012639203108847,0.013006116263568],[-0.044324226677418,-0.029123887419701,-0.10460173338652]],[[-0.13142195343971,-0.12237260490656,0.011628398671746],[-0.054508537054062,-0.045022614300251,0.052341725677252],[0.030871205031872,-0.042226634919643,0.039592672139406]],[[-0.015772635117173,0.051234569400549,0.02253588475287],[0.014757633209229,-0.03621806204319,-0.011743297800422],[0.017235556617379,0.0021644094958901,-0.029696077108383]],[[0.038197685033083,-0.014666310511529,0.052739255130291],[0.00095158361364156,-0.017774242907763,0.062958396971226],[0.030671430751681,-0.020589094609022,-0.068780831992626]],[[0.018024019896984,-0.0056821801699698,0.048113036900759],[-0.051046524196863,0.052068214863539,-0.027196601033211],[0.0091292960569263,0.062989227473736,0.096227250993252]],[[-0.054134771227837,-0.046540454030037,-0.11986146867275],[-0.05176891759038,-0.023802192881703,0.026839008554816],[0.01976060308516,0.010589707642794,0.023904852569103]],[[0.0119474157691,-0.0041749230585992,0.0038734166882932],[0.058496423065662,-0.012548518367112,-0.010283723473549],[-0.03031618706882,0.006532299797982,-0.0042646611109376]],[[-0.069443896412849,0.049650985747576,-0.065323561429977],[0.10476650297642,0.027806460857391,-0.0086862239986658],[0.064436160027981,-0.02735722437501,0.072258621454239]],[[-0.014363933354616,0.055201355367899,-0.0061454488895833],[0.062173698097467,0.018142057582736,-0.019271524623036],[0.036275308579206,-0.016805898398161,-0.046069230884314]],[[0.010243933647871,0.0047815446741879,-0.01381257083267],[0.020289814099669,0.048504810780287,0.0029710056260228],[0.093115828931332,-0.03762824088335,0.0020150085911155]],[[-0.0063317697495222,-0.054221246391535,0.043916121125221],[-0.020235411822796,0.024148974567652,0.069065488874912],[-0.026108792051673,-0.0627461373806,-0.026050580665469]],[[0.024860292673111,0.062673278152943,-0.016465447843075],[-0.058487016707659,-0.031037883833051,0.031188406050205],[-0.066055603325367,-0.060749474912882,-0.065038315951824]],[[0.0039540734142065,0.0042923437431455,0.0083074998110533],[0.097715154290199,0.062781900167465,0.012191079556942],[0.002057628473267,-0.095750167965889,-0.013021942228079]],[[-0.0049656596966088,-0.10423657298088,-0.037290249019861],[-0.057114109396935,-0.050640873610973,-0.020385675132275],[-0.049239493906498,0.035293102264404,-0.03761288523674]],[[0.086562909185886,-0.0095964334905148,-0.040753625333309],[0.012601187452674,-0.019849333912134,-0.035331897437572],[-0.017408335581422,-0.032153863459826,-0.01388247217983]],[[0.00063472910551354,-0.017187461256981,0.0018170356051996],[0.06426015496254,-0.035926200449467,0.029753683134913],[0.023100866004825,-0.039032839238644,-0.0026537880767137]],[[-0.0078403176739812,0.021736161783338,0.043009348213673],[0.025704951956868,0.036123972386122,-0.007797840051353],[-0.0023805361706764,-0.05097820982337,-0.052901543676853]],[[0.081961661577225,-0.03943820297718,-0.0055987010709941],[-0.0020854510366917,-0.036988720297813,0.0030865801963955],[-0.0081073874607682,-0.03440785035491,-0.0090402625501156]],[[0.015048646368086,0.082294322550297,0.031625021249056],[0.039171628654003,-0.04734144359827,0.020537706092],[0.012541112489998,-0.035820003598928,-0.010724524967372]],[[0.040697988122702,0.06365705281496,0.026933617889881],[-0.021405428647995,0.020692693069577,-0.013036550953984],[-0.052273310720921,0.0010791788809001,0.032013598829508]],[[-0.0098890997469425,0.0047607594169676,-0.035730056464672],[-0.06158871948719,-0.047617290169001,-0.060980413109064],[-0.031450647860765,-0.046322364360094,-0.11179432272911]],[[-0.023066816851497,-0.0042953202500939,0.015656121075153],[-0.010837323963642,0.018172910436988,0.022487122565508],[0.038765881210566,-0.041074674576521,-0.036995399743319]],[[0.043186258524656,0.042188495397568,0.057894948869944],[-0.019244505092502,-0.027055921033025,0.058366917073727],[-0.013874525204301,0.052757520228624,0.036364953964949]],[[-0.042100191116333,-0.029519122093916,-0.057353798300028],[-0.07573726028204,0.021758718416095,-0.082849197089672],[-0.050079129636288,4.5605316699948e-05,-0.048316031694412]],[[0.096906065940857,-0.043212957680225,0.034202419221401],[0.061356659978628,-0.033812966197729,-0.0061386874876916],[-0.1612264662981,-0.012658653780818,-0.064672261476517]],[[0.017482442781329,0.018515491858125,0.044505272060633],[0.039651036262512,0.021694406867027,0.030609970912337],[-0.082069039344788,0.090699896216393,0.0084513518959284]],[[0.085831299424171,-0.090981312096119,-0.12326519191265],[0.0029787668026984,0.021967899054289,-0.017025986686349],[0.00024925579782575,0.037823799997568,0.0053135682828724]],[[0.081631578505039,0.061939489096403,0.015561454929411],[-0.039236556738615,0.02025580778718,0.013203567825258],[-0.00065622897818685,0.03295137360692,0.038244184106588]],[[-0.043887212872505,-0.033811282366514,-0.041238434612751],[0.0030841373372823,-0.015226924791932,0.036857858300209],[0.0021840299014002,-0.046843089163303,-0.020574977621436]],[[0.039700306952,0.00079809624003246,-0.025802943855524],[0.0071905581280589,-0.1223599165678,-0.014768747612834],[-0.089645020663738,-0.13225291669369,-0.14148357510567]],[[0.018510652706027,-0.011951510794461,-0.049455389380455],[0.087665110826492,-0.021947735920548,-0.0057635037228465],[-0.053859408944845,-0.0020007374696434,0.011638953350484]],[[0.013874241150916,0.013443422503769,0.042359840124846],[0.050998520106077,0.0066040414385498,-0.071060217916965],[-0.024441882967949,0.023247078061104,0.0063472874462605]],[[0.0027148043736815,0.01385472714901,0.043692138046026],[0.024495899677277,0.017903633415699,0.039706207811832],[-0.0078540444374084,-0.045233361423016,0.0036733110900968]],[[0.0292216129601,-0.041122514754534,0.097254484891891],[0.052082192152739,-0.028075719252229,0.040218718349934],[-0.069268025457859,-0.040566768497229,0.025411836802959]],[[0.05881217494607,-0.0056079491041601,0.030272550880909],[0.013206250965595,0.0023846940603107,-0.032598428428173],[0.0017538203392178,-0.073409698903561,0.054530862718821]],[[-0.0029843528755009,-0.026699913665652,0.06824055314064],[0.017544198781252,0.0012738117948174,0.01912241987884],[0.011616409756243,0.020308380946517,-0.034920834004879]],[[-0.035542540252209,-0.043614782392979,0.085242815315723],[0.026558892801404,0.0096406498923898,0.0019245351431891],[-0.0057201818563044,-0.040296200662851,-0.067135125398636]],[[-0.044026982039213,-0.029520848765969,0.011300575919449],[-0.019806362688541,-0.060468532145023,0.021559085696936],[0.015251342207193,0.024470835924149,0.060854736715555]],[[-0.030919080600142,0.021986125037074,-0.022551864385605],[0.030861267820001,0.046482410281897,0.02182712033391],[-0.12352585792542,-0.010863966308534,-0.042264010757208]],[[-0.023171501234174,0.022009102627635,-0.005313700530678],[-0.022683685645461,-0.0217653978616,-0.072514779865742],[0.045964937657118,0.02300818823278,0.010087622329593]],[[-0.052213720977306,-0.032189656049013,-0.017334699630737],[0.02257558517158,0.080142006278038,0.052117373794317],[0.012934676371515,0.02934386394918,0.0083853518590331]],[[0.012771666049957,0.028998298570514,0.01757244206965],[0.0039707864634693,-0.017466638237238,-0.086149945855141],[0.018946820870042,0.030992351472378,-0.017216002568603]],[[0.044349577277899,-0.027205012738705,-0.028621112927794],[-0.024949084967375,0.028932901099324,-0.006699743680656],[-0.037405677139759,-0.1048264876008,-0.034295007586479]],[[0.014250642620027,-0.007623225916177,-0.072097897529602],[0.029728543013334,-0.038317535072565,-0.06695381551981],[-0.026931582018733,-0.0075157661922276,-0.073305331170559]],[[0.069843702018261,-0.024942664429545,0.025277383625507],[-0.033221833407879,0.050722200423479,0.019973056390882],[0.0065363915637136,0.030623285099864,0.040617082268]],[[-0.0095641408115625,0.028993843123317,-0.041292935609818],[-0.033684983849525,-0.0034641490783542,0.018726231530309],[0.0038368788082153,-0.057826276868582,-0.028192179277539]],[[0.040292374789715,-0.035031132400036,-0.040191806852818],[-0.10443233698606,-0.055306736379862,0.026623893529177],[-0.090817406773567,-0.041619766503572,0.0020995826926082]],[[0.069075644016266,0.065984942018986,0.087366670370102],[0.05195103213191,0.033108312636614,-0.01372778788209],[0.06875417381525,0.083137311041355,0.10329934954643]],[[0.018797850236297,0.013307529501617,0.044533781707287],[-0.02384683676064,-0.017197858542204,0.0090236142277718],[-0.033202391117811,-0.058919660747051,-0.017940428107977]],[[-0.01914181932807,-0.015390004962683,-0.026864282786846],[-0.032250545918941,0.025611201301217,-0.033071130514145],[-0.074197165668011,0.002132774097845,-0.013560088351369]],[[0.049640350043774,-0.030789947137237,0.029368029907346],[-0.034638900309801,0.055267378687859,0.053280934691429],[-0.084815084934235,-0.023435976356268,-0.05145051330328]],[[0.023588197305799,-0.014219807460904,-0.014461560174823],[-0.026611734181643,-0.017638707533479,0.06851913779974],[-0.027719890698791,0.0044156755320728,0.063903696835041]],[[-0.0019923343788832,-0.019598366692662,-0.084375381469727],[-0.014252997934818,0.070890404284,0.038685653358698],[-0.083597928285599,-0.02979183383286,-0.055531967431307]],[[-0.00023875670740381,0.0085670854896307,-0.037308439612389],[-0.050770666450262,0.023859441280365,-0.025344846770167],[0.02960367128253,0.056644774973392,0.053677257150412]],[[0.017283016815782,0.032668855041265,-0.073884099721909],[0.06086103990674,-0.027087509632111,-0.015305984765291],[-0.08221473544836,-0.034947276115417,-0.019342616200447]],[[-0.071328967809677,-0.087454311549664,-0.02668708562851],[-0.040569331496954,0.035388644784689,-0.00092310027685016],[-0.0023911029566079,0.016609760001302,-0.056400120258331]],[[0.094998382031918,0.051648333668709,-0.013438247144222],[0.011070352979004,-0.062857702374458,0.059825848788023],[-0.043734110891819,0.017255889251828,-0.057997226715088]],[[-0.087341748178005,0.016183773055673,0.0021047841291875],[-0.051972441375256,-0.049653753638268,-0.0079059759154916],[0.029570195823908,0.012141044251621,-0.057988774031401]]],[[[-0.094521164894104,-0.097482331097126,0.084948092699051],[-0.014536529779434,-0.0294448453933,0.079372957348824],[0.10171341896057,-0.043414615094662,0.035173002630472]],[[0.042416591197252,-0.00023180912830867,-0.001147192902863],[-0.0032206361647695,0.021761640906334,0.028015533462167],[-0.093486957252026,-0.052104935050011,-0.11192105710506]],[[0.037625059485435,-0.024887641891837,-0.025959873571992],[-0.069508269429207,-0.12759128212929,0.025874363258481],[0.026143383234739,-0.10068130493164,-0.081539623439312]],[[0.12273106724024,-0.20879863202572,0.093302667140961],[-0.19821059703827,0.092004656791687,-0.12593893706799],[0.072470463812351,-0.10566771775484,-0.063259392976761]],[[-0.099759884178638,0.021339122205973,-0.003889414248988],[0.048197910189629,-0.05751571804285,-0.059510227292776],[0.071998842060566,-0.10597421228886,0.038078308105469]],[[0.018790820613503,-0.065130889415741,0.070724189281464],[0.021870654076338,0.0012178687611595,-0.081579074263573],[-0.019618451595306,-0.003984188195318,-0.073649786412716]],[[0.017316659912467,-0.089818954467773,0.0047212294302881],[-0.11961109191179,-0.033321999013424,-0.039865076541901],[-0.057035431265831,-0.035907819867134,0.0069095701910555]],[[-0.040183424949646,-0.069478869438171,0.015675561502576],[-0.058301616460085,-0.063496530056,0.019292188808322],[-0.018982253968716,0.088159881532192,-0.00012177440657979]],[[0.043452218174934,0.027515601366758,0.066698417067528],[-0.069531925022602,0.024494027718902,-0.036654446274042],[-0.0051737162284553,0.05005494877696,-0.021533168852329]],[[-0.22165282070637,0.24340628087521,-0.1107029914856],[0.079707309603691,-0.14960642158985,-0.01820426248014],[0.076895862817764,-0.19764068722725,0.1172392219305]],[[0.0044994154013693,-0.024348547682166,-0.087238840758801],[-0.030618941411376,-0.042468883097172,0.027993429452181],[-0.0043124365620315,-0.047442156821489,-0.049022443592548]],[[-0.25445225834846,0.076671831309795,0.012348315678537],[0.19533525407314,-0.08040776103735,-0.045801274478436],[-0.17408725619316,0.050640009343624,0.049016762524843]],[[-0.057196348905563,0.029777809977531,-0.051591668277979],[0.08208866417408,0.00090761744650081,0.028977587819099],[-0.056975491344929,0.098626993596554,-0.070118270814419]],[[-0.0036695611197501,0.11430051922798,0.11025334149599],[-0.033128336071968,0.20563246309757,0.0069492268376052],[0.09644078463316,-0.13670611381531,0.19615630805492]],[[-0.10168748348951,-0.046967148780823,-0.079091556370258],[0.044846791774035,-0.070596165955067,0.17173007130623],[0.055732864886522,-0.068353474140167,-0.029986696317792]],[[0.024568688124418,-0.072578422725201,0.053676042705774],[0.10556837916374,-0.058421388268471,-0.0013558458304033],[-0.088360704481602,0.090087398886681,-0.070431709289551]],[[-0.23090767860413,-0.052459839731455,-0.23774261772633],[-0.1323037147522,-0.059299971908331,-0.22511695325375],[-0.12934498488903,-0.10711281746626,0.016715321689844]],[[-0.080819524824619,-0.13676449656487,0.013469887897372],[0.041097562760115,0.026585010811687,-0.1297549456358],[-0.16707563400269,0.003916559740901,-0.050228651612997]],[[0.053551144897938,-0.056893739849329,-0.037682678550482],[-0.085990503430367,-0.11272914707661,0.12759985029697],[-0.1948653459549,0.09129660576582,-0.13046549260616]],[[0.14573565125465,-0.071697473526001,-0.042804375290871],[-0.045124981552362,-0.05312742292881,0.021992145106196],[-0.075407989323139,0.092338986694813,-0.11792375892401]],[[-0.013727096840739,0.020521834492683,-0.036038212478161],[-0.022713327780366,-0.057178281247616,0.039314735680819],[-0.047253277152777,0.051616352051497,-0.018261168152094]],[[0.065268494188786,-0.16874808073044,0.14209516346455],[0.14591763913631,-0.075990453362465,-0.17039482295513],[-0.30992916226387,0.11024576425552,-0.10206569731236]],[[0.049005281180143,-0.055789384990931,0.023313701152802],[0.0094090076163411,0.061278589069843,0.0063133779913187],[-0.073226377367973,-0.033580008894205,0.0071293297223747]],[[0.08222408592701,-0.019637314602733,0.045793190598488],[-0.046364489942789,-0.001862755860202,0.045408047735691],[-0.036172479391098,-0.054069731384516,-0.020760992541909]],[[-0.01935307867825,0.064297996461391,0.025784600526094],[-0.02240345813334,0.12086374312639,-0.10758420825005],[0.041294246912003,-0.13659009337425,0.10642446577549]],[[0.013204692862928,-0.061425589025021,-0.09958778321743],[-0.086342923343182,-0.038236513733864,-0.0025945629458874],[0.080960817635059,-0.072526827454567,-0.010565363802016]],[[-0.02976044639945,0.11742401123047,-0.12043773382902],[-0.15674185752869,0.066995024681091,-0.047594226896763],[0.012933121062815,-0.069409750401974,-0.055554252117872]],[[0.043236061930656,0.015806220471859,-0.090430453419685],[-0.069038197398186,0.075705319643021,-0.0079706367105246],[0.11941995471716,-0.1550517231226,0.062356643378735]],[[-0.00079773308243603,-0.0086092185229063,-0.10404123365879],[-0.056197796016932,0.039620831608772,-0.030308762565255],[0.029446575790644,-0.024735709652305,0.14882992208004]],[[0.04158129543066,0.10383073985577,-0.050251636654139],[-0.081639289855957,0.031108271330595,0.025132218375802],[0.070278219878674,-0.078666605055332,0.13101997971535]],[[-0.073986530303955,-0.034870859235525,-0.037137988954782],[-0.052020993083715,0.060684971511364,-0.10706289857626],[0.13617525994778,-0.11207684874535,0.013470533303916]],[[0.060531925410032,-0.048265401273966,0.12682236731052],[-0.026417849585414,0.11279927194118,-0.031021533533931],[-0.12845486402512,0.056350015103817,0.017813267186284]],[[0.011071676388383,-0.0094527173787355,-0.11760749667883],[0.02040757983923,-0.020919049158692,-0.090263053774834],[-0.0099807903170586,0.13736997544765,0.036163866519928]],[[0.050691232085228,-0.049587607383728,-0.019643876701593],[-0.081260874867439,-0.081571884453297,-0.080080293118954],[-0.065021090209484,-0.025075836107135,-0.2354970574379]],[[0.067870542407036,-0.0088958637788892,-0.063313186168671],[-0.13701288402081,-0.023479450494051,-0.053553361445665],[0.082439079880714,-0.062694698572159,0.058836597949266]],[[-0.055293787270784,0.024392096325755,-0.055477574467659],[0.050505489110947,-0.064202561974525,0.072229966521263],[-0.040827836841345,-0.097604811191559,-0.11694081127644]],[[0.096193075180054,-0.019902382045984,0.13055208325386],[-0.055929485708475,0.00022335634275805,-0.11281219869852],[-0.021761009469628,0.087829656898975,-0.12075331062078]],[[0.0081849079579115,-0.081273086369038,0.16949592530727],[-0.18242500722408,0.10886401683092,-0.099378935992718],[0.10172096639872,-0.064243346452713,0.15202993154526]],[[-0.13630545139313,0.032426979392767,-0.03528443723917],[-0.021701958030462,-0.029526861384511,0.064033269882202],[0.038131181150675,0.00019690531189553,-0.018084960058331]],[[0.028159448876977,-0.020214445888996,0.069628328084946],[0.10876577347517,-0.15505829453468,0.11903227865696],[-0.16252100467682,0.16307640075684,-0.10262909531593]],[[-0.04612547904253,-0.002975428942591,0.039381794631481],[-0.072474412620068,-0.016555087640882,-0.10969191044569],[-0.024208083748817,-0.084782280027866,-0.0010513075394556]],[[-0.19983346760273,0.08010970056057,0.011114564724267],[0.0085241850465536,-0.091324515640736,-0.12420544028282],[-0.019571011886001,0.011616832576692,0.14211215078831]],[[-0.0022284989245236,-0.058427076786757,-0.004845411516726],[0.025486189872026,-0.05025202780962,0.024775693193078],[-0.062008373439312,0.0268932916224,-0.070527285337448]],[[0.13796938955784,-0.22313749790192,0.1270427107811],[-0.15623573958874,-0.046262677758932,-0.13936229050159],[0.0284991171211,-0.043824568390846,0.049407094717026]],[[0.07380136102438,0.016772834584117,-0.069375678896904],[-0.095060855150223,0.055049922317266,0.044808071106672],[-0.014967299997807,-0.14502124488354,0.032688464969397]],[[0.042392563074827,0.0073441090062261,0.059351183474064],[0.0051359999924898,0.1340316683054,-0.091132059693336],[-0.070934928953648,0.095365293323994,-0.028992276638746]],[[0.11307157576084,0.027097186073661,0.033433020114899],[-0.073377065360546,-0.12631227076054,-0.039797227829695],[-0.16274572908878,0.23079538345337,-0.19507038593292]],[[-0.025594120845199,-0.030482806265354,-0.10078209638596],[0.021338539198041,-0.0039383522234857,0.00034295581281185],[0.052709672600031,-0.13936287164688,0.071647763252258]],[[0.031926658004522,-0.090637713670731,0.078357510268688],[0.04021280631423,0.10814345628023,-0.04135736823082],[-0.054724350571632,-0.06540048122406,-0.12924095988274]],[[0.086001537740231,-0.039224278181791,0.030524456873536],[0.011291969567537,-0.016789726912975,0.099545978009701],[-0.00058105186326429,0.017325544729829,-0.076640501618385]],[[0.017737513408065,-0.030726674944162,0.029350999742746],[-0.018339183181524,-0.022751618176699,0.080986700952053],[0.089328043162823,-0.014671701006591,0.024174094200134]],[[-0.004065043758601,0.039920572191477,-0.061469301581383],[0.020347664132714,0.053715165704489,-0.041606828570366],[-0.046303622424603,-0.079809345304966,0.054008394479752]],[[-0.068550057709217,0.008855240419507,0.035166323184967],[-0.060392878949642,-0.083490386605263,0.084794335067272],[-0.13482001423836,0.10573387145996,-0.25554877519608]],[[-0.0042383349500597,0.079928427934647,0.08050175756216],[0.12241685390472,0.049024604260921,0.043643958866596],[0.17782641947269,0.10058033466339,0.084885984659195]],[[0.016708176583052,-0.16724474728107,0.086777471005917],[-0.014705516397953,-0.048392489552498,-0.035911846905947],[0.0074360659345984,-0.13496825098991,0.14410692453384]],[[0.03996542096138,-0.024235546588898,0.027782838791609],[-0.0057218540459871,0.01497704628855,0.048044722527266],[0.034918487071991,0.04262912273407,-0.079592101275921]],[[-0.028271840885282,-0.083764590322971,-0.099334381520748],[-0.050443135201931,0.070795632898808,-0.09368047118187],[-0.11185876280069,0.10862964391708,-0.070669896900654]],[[-0.014473067596555,-0.020943187177181,-0.026949333027005],[-0.056633848696947,-0.010094818659127,-0.068194963037968],[0.063260704278946,-0.096112675964832,0.056642279028893]],[[-0.24233438074589,-0.058353841304779,-0.021444737911224],[-0.29911896586418,0.045085623860359,-0.30281966924667],[-0.31383520364761,-0.19174893200397,0.14502127468586]],[[-0.0083443904295564,0.027235586196184,-0.006551330909133],[-0.039992030709982,0.0026111979968846,-0.015742732211947],[0.035414408892393,0.044429164379835,0.0022793682292104]],[[0.031610526144505,-0.11250155419111,0.095065623521805],[0.056744534522295,0.030692784115672,-0.045144766569138],[-0.083215668797493,0.056022115051746,0.038481082767248]],[[-0.13213025033474,0.11359106749296,-0.094946444034576],[0.23715154826641,-0.062828317284584,-0.040589839220047],[-0.0014084950089455,-0.072922833263874,0.017437757924199]],[[-0.1738895624876,0.083211950957775,-0.2067836523056],[0.15521992743015,-0.14473600685596,0.056110445410013],[-0.15387606620789,0.069838978350163,-0.10583763569593]],[[-0.067742392420769,-0.038663387298584,-0.0645502358675],[0.036545038223267,-0.076687254011631,0.04680098220706],[-0.085204012691975,0.080467060208321,0.01449609734118]]],[[[0.048810109496117,0.0069395946338773,0.057497810572386],[-0.016992004588246,0.07974711805582,0.096749648451805],[-0.024138800799847,-0.042964328080416,-0.086007043719292]],[[-0.03038833476603,-0.004459435120225,-0.02012112736702],[-0.021247949451208,0.031405154615641,-0.019062109291553],[0.0053383824415505,-0.01919300109148,0.023362439125776]],[[-0.084457330405712,-0.032822586596012,0.053217027336359],[-0.012131826020777,-0.032231621444225,0.059607516974211],[0.001710198353976,0.027851030230522,-0.057650618255138]],[[-0.0068873353302479,0.046077128499746,-0.043984152376652],[0.0155178476125,-0.01365933008492,0.017335940152407],[-0.015161893330514,-0.00018747744616121,0.062464583665133]],[[0.006578435190022,0.078016892075539,-0.049943961203098],[-0.034531071782112,-0.051456119865179,0.021364433690906],[-0.032446675002575,-0.076649732887745,0.064389608800411]],[[-0.02144511975348,0.033146198838949,-0.096422925591469],[-0.020020268857479,0.16939274966717,-0.06674163043499],[-0.11224771291018,0.090839318931103,-0.02647884003818]],[[-0.022787913680077,0.003996588755399,-0.016664626076818],[0.010604137554765,-0.030711518600583,0.0023450555745512],[-0.00049448478966951,-0.067700810730457,-0.057948976755142]],[[-0.027861524373293,0.039055436849594,0.015233539044857],[0.033233501017094,0.0026032624300569,0.0021128626540303],[0.015939988195896,0.027149111032486,0.031725071370602]],[[-0.0011513030622154,-0.041531633585691,-0.10811084508896],[-0.022175662219524,-0.050838369876146,-0.045664139091969],[-0.064888097345829,-0.0087933819741011,-0.0012877527624369]],[[0.041816137731075,-0.044455610215664,0.022425912320614],[-0.012667423114181,-0.02374136634171,-0.042159643024206],[0.026833245530725,0.029876066371799,-0.053550649434328]],[[-0.054664593189955,0.015439222566783,0.095403164625168],[-0.012134960852563,-0.026845740154386,0.049840055406094],[-0.070875816047192,-0.030938511714339,0.05653440579772]],[[0.010046540759504,0.0017640937585384,-0.01958685182035],[0.02588096819818,0.0071540027856827,0.010976900346577],[0.044678159058094,0.004889365285635,0.050755448639393]],[[-0.032347075641155,-0.053179357200861,-0.036004818975925],[-0.098175533115864,-0.027752241119742,-0.035633988678455],[0.018316140398383,0.0057859588414431,0.092412725090981]],[[0.084842137992382,0.032004572451115,0.064095787703991],[-0.071535661816597,0.0098926955834031,0.061304528266191],[-0.0013694457011297,-0.015940878540277,0.026755830273032]],[[0.014256095513701,-0.04079907387495,-0.022496040910482],[0.018378870561719,0.03064483217895,0.057151053100824],[0.017684007063508,0.011636955663562,0.067415237426758]],[[-0.04902957752347,-0.052745506167412,0.039029091596603],[0.048910517245531,-0.030375804752111,-0.02493236027658],[0.0404865257442,0.020831568166614,2.533996666898e-05]],[[-0.027695078402758,-0.062847062945366,0.037042293697596],[0.046487998217344,0.14729528129101,0.099976383149624],[0.0064121568575501,0.00021015274978708,0.02201010659337]],[[-0.0073982691392303,-0.032259132713079,0.0012858855770901],[-0.01541099883616,-0.016551891341805,0.011329780332744],[0.030933784320951,0.014193560928106,-0.020814176648855]],[[0.013674611225724,-0.026927856728435,-0.053458604961634],[0.024224035441875,0.02339150942862,0.034900069236755],[-0.030499028041959,-0.029554687440395,-0.039930287748575]],[[0.0075432420708239,0.0044219410046935,-0.047428753226995],[0.019689561799169,0.053728900849819,0.021569296717644],[0.037203006446362,-0.088811300694942,-0.043750006705523]],[[0.1311871856451,0.018870176747441,0.060072995722294],[0.089898288249969,-0.012940973043442,0.027169702574611],[0.081302247941494,0.0837776735425,0.073378644883633]],[[0.017700212076306,-0.0070537752471864,0.011311206966639],[0.020939996466041,-0.0036782422102988,-0.017138445749879],[-0.015471669845283,0.019923495128751,-0.012400107458234]],[[0.037038248032331,-0.022226655855775,0.038237534463406],[0.011363854631782,0.035659410059452,-0.004681455437094],[-0.0092572700232267,-0.01319111417979,-0.051804754883051]],[[0.0018491540104151,-0.020328352227807,0.014984405599535],[0.012538770213723,-0.086387723684311,0.0069902325049043],[0.0027967456262559,0.088172018527985,-0.061554666608572]],[[-0.02560805529356,0.036776233464479,-0.075776949524879],[0.0015859887935221,-0.065018899738789,0.072193816304207],[0.039943560957909,-0.002326478715986,-0.084337696433067]],[[0.063912153244019,-0.094833001494408,-0.061725929379463],[-0.026561236009002,0.013951999135315,0.040759228169918],[-0.026822727173567,0.030268128961325,0.043315928429365]],[[-0.074583865702152,-0.030560879036784,-0.039839424192905],[-0.017411863431334,0.017046295106411,-0.0078909583389759],[0.020737217739224,0.062514618039131,-0.0051080323755741]],[[0.02507146820426,0.035525780171156,0.085308738052845],[-0.019806852564216,0.066094897687435,-0.012096489779651],[0.048811133950949,0.0057328124530613,0.068419374525547]],[[-0.11560303717852,-0.11679068207741,0.019913464784622],[-0.040354371070862,-0.043365754187107,0.046934895217419],[0.087204828858376,0.050838183611631,0.036369375884533]],[[-0.052885852754116,-0.077418901026249,-0.044880140572786],[-0.014413954690099,0.03538241609931,0.012773071415722],[-0.03042870387435,0.028745383024216,0.0131856482476]],[[-0.030357705429196,0.02000779658556,0.026094360277057],[-0.0034692981280386,-0.030849173665047,-0.062058907002211],[-0.078386887907982,0.022607365623116,0.041808743029833]],[[0.066665396094322,-0.030640443786979,-0.070823647081852],[0.035799216479063,-0.0057123461738229,0.032653283327818],[0.059300627559423,0.085328534245491,0.040691565722227]],[[0.045910079032183,0.06184596195817,-0.031585678458214],[0.043750233948231,0.0077234171330929,0.044526595622301],[-0.0010769891086966,-0.049610640853643,-0.036060012876987]],[[0.050958253443241,-0.082326628267765,-0.096516586840153],[-0.047376837581396,-0.027777021750808,0.058844491839409],[-0.0083153937011957,0.048087820410728,-0.028811514377594]],[[0.0023997069802135,-0.058458391577005,0.030193626880646],[0.020382340997458,0.015815867111087,0.043443989008665],[0.010323717258871,-0.018458817154169,-0.063978344202042]],[[-0.063313961029053,-0.072391040623188,-0.060142602771521],[-0.013264216482639,-0.039597950875759,-0.082449927926064],[-0.012562904506922,-0.051641035825014,-0.064960062503815]],[[0.022370453923941,0.02714685164392,0.066937908530235],[-0.037505805492401,-0.029528358951211,0.0016782820457593],[0.10220336914062,0.056158252060413,0.01110627502203]],[[0.021332953125238,0.023747846484184,-0.015126867219806],[-0.011251097545028,0.057380806654692,-0.035336058586836],[-0.0011315625160933,-0.029764078557491,0.0047278921119869]],[[0.050793245434761,0.011062362231314,0.10697619616985],[-0.022393574938178,0.020196678116918,0.021944493055344],[-0.011821406893432,-0.018357688561082,0.0038586528971791]],[[0.056039303541183,-0.057981517165899,0.029398547485471],[-0.039709709584713,0.038145639002323,0.0079435762017965],[0.012579986825585,-0.025215335190296,0.017474360764027]],[[-0.02133415825665,0.057822655886412,-0.07669760286808],[-0.010207951068878,-0.012828689068556,0.083256408572197],[-0.0072227162308991,0.020240584388375,-0.011624303646386]],[[0.05544962733984,0.0057242373004556,0.080924727022648],[0.071095556020737,-0.087589547038078,-0.03741493076086],[-0.011076086200774,-0.063971474766731,0.040703438222408]],[[0.026927415281534,0.029695533216,0.028994385153055],[-0.0055606830865145,0.034888233989477,-0.0022184480912983],[-0.030607106164098,-0.05591107159853,0.011970159597695]],[[-0.011453097686172,-0.037763822823763,-0.023729300126433],[0.00094566534971818,0.012851254083216,0.047805845737457],[-0.087688520550728,0.010055408813059,0.0094235297292471]],[[0.0042960639111698,-0.024489972740412,-0.056345328688622],[0.012289418838918,-0.012888106517494,0.0032750233076513],[-0.070128716528416,0.042177904397249,-0.023289926350117]],[[0.063498139381409,0.06497685611248,0.019294714555144],[-0.010424922220409,-0.0039536524564028,-0.040927045047283],[-0.044489976018667,-0.057989589869976,0.012625617906451]],[[-0.048360902816057,-0.078972585499287,0.0024810582399368],[-0.010066050104797,0.054955124855042,0.057003974914551],[-0.11559671908617,0.010362337343395,-0.072283960878849]],[[0.04838702455163,-0.010008768178523,0.010246432386339],[-0.008072535507381,0.024969233199954,-0.022951265797019],[0.044687192887068,0.01299945730716,0.04093824326992]],[[0.025076514109969,-0.06425816565752,-0.0067987353540957],[-0.010627066716552,-0.042389381676912,-0.0037114499136806],[-0.016929795965552,-0.059042766690254,0.031272035092115]],[[0.026315428316593,0.096482902765274,-0.0084900567308068],[0.058656051754951,0.0099693574011326,0.011840056627989],[0.0045990590006113,-0.01029902882874,-0.0094181383028626]],[[3.0141725801514e-05,-0.0067173661664128,0.025454074144363],[-0.0013476001331583,0.030655791983008,0.02544141933322],[-0.01931057497859,-0.02645462565124,-0.017720276489854]],[[0.0085972491651773,0.036334577947855,0.053998567163944],[0.054443333297968,0.038269300013781,0.053945243358612],[-0.00064020609715953,-0.059750355780125,0.076639257371426]],[[-0.015238174237311,0.0094520123675466,-0.060407813638449],[-0.0050053130835295,-0.0065105580724776,0.0019394501578063],[0.039064154028893,-0.035711195319891,-0.030334491282701]],[[0.016495866701007,0.14574654400349,0.050926759839058],[0.041902177035809,0.0041384780779481,0.044723782688379],[-0.015673898160458,-0.028259554877877,0.012678578495979]],[[0.10147819668055,-0.009917133487761,0.038733303546906],[-0.034499764442444,-0.019687332212925,-0.034850127995014],[-0.00018085545161739,0.0051441532559693,0.028853887692094]],[[-0.038139574229717,-0.0033261447679251,-0.057963386178017],[0.043028499931097,-0.062234479933977,-0.089550636708736],[0.019609900191426,0.066302001476288,-0.026553058996797]],[[-0.0094336159527302,0.058581277728081,0.059500150382519],[0.042385991662741,0.013681396842003,0.056924443691969],[-0.0053362501785159,0.042151145637035,-0.016683561727405]],[[0.0074389209039509,-0.028585212305188,0.030343135818839],[-0.0040659378282726,0.028559243306518,0.043992735445499],[-0.0084069883450866,0.0095858769491315,0.107241936028]],[[-0.067963890731335,0.0023412404116243,0.0091963270679116],[0.0041021034121513,-0.059708975255489,0.056472811847925],[-0.036374174058437,0.0058210860006511,0.024918135255575]],[[-0.0010336773702875,-0.023481694981456,0.027302980422974],[-0.014143577776849,0.0048124394379556,-0.025221049785614],[0.015220231376588,0.039690900593996,0.053688034415245]],[[0.0091238068416715,0.013309885747731,0.02845698967576],[0.053095530718565,0.020349850878119,0.051218580454588],[-0.06145004183054,0.017715238034725,-0.0093388659879565]],[[0.013331118039787,0.0073611042462289,-0.070694655179977],[-0.025460924953222,0.01106480602175,0.052623279392719],[-0.084304392337799,0.010345378890634,-0.01538450922817]],[[0.088725581765175,-0.0016488203546032,-0.028304940089583],[0.001018357812427,-0.018239228054881,0.029613880440593],[-0.056978534907103,-0.006255466490984,-0.03183426707983]],[[-0.022825790569186,0.0075426180846989,0.0020283898338675],[0.071568012237549,0.037075262516737,-0.016379838809371],[0.022502895444632,0.0047904928214848,-0.011797964572906]]],[[[-0.061165928840637,0.10858462005854,0.037556525319815],[0.058207105845213,-0.0062610786408186,0.0079803112894297],[0.083668775856495,-0.054178643971682,-0.048614304512739]],[[0.029426353052258,0.024584703147411,0.051432207226753],[0.024085208773613,0.00037603959208354,0.0097536202520132],[0.046838872134686,-0.054081950336695,-0.022176891565323]],[[0.038868431001902,-0.015592227689922,0.023012222722173],[0.069336771965027,0.0017739027971402,-0.035094514489174],[-0.01782400906086,-0.048935290426016,-0.033366445451975]],[[-0.014287129044533,-0.0049764062277973,-0.043769173324108],[0.0073000215925276,0.054037392139435,-0.030056143179536],[-0.0036472424399108,-0.01944662630558,-0.055361662060022]],[[-0.022783098742366,-0.011901501566172,0.040181670337915],[0.062835231423378,0.028355523943901,-0.0028471446130425],[-0.033791288733482,-0.026838263496757,-0.092664785683155]],[[-0.082511194050312,0.18143981695175,-0.038904249668121],[0.051091022789478,-0.039676543325186,0.076624669134617],[0.10715454816818,-0.16750647127628,-0.038563918322325]],[[-0.058964774012566,-0.033338747918606,0.033706154674292],[0.051277343183756,-0.0075455522164702,-0.020581118762493],[0.028922745957971,0.021819496527314,0.033948834985495]],[[-0.070433437824249,0.045354466885328,-0.028086232021451],[-0.0083340769633651,-0.013080520555377,-0.034253988415003],[-0.026425734162331,-0.0068918247707188,0.0010138518409804]],[[0.018485771492124,0.011928723193705,-0.050662495195866],[0.021998671814799,0.0035362234339118,0.0027520982548594],[-0.030954537913203,0.0053711575455964,-0.014741070568562]],[[0.035479854792356,0.0070812911726534,0.044490706175566],[0.028873551636934,0.049385063350201,-0.031464789062738],[-0.016454145312309,-0.054951079189777,0.0063719283789396]],[[-0.0022434608545154,0.065000645816326,0.0048090592026711],[-0.055851817131042,-0.018370131030679,-0.012306183576584],[-0.0088522266596556,-0.012688373215497,-0.090614505112171]],[[-0.020409215241671,0.027985729277134,0.030244955793023],[0.030219305306673,0.042196091264486,-0.059626840054989],[-0.020780432969332,0.017664613202214,0.024968622252345]],[[-0.043044917285442,0.0073974137194455,-0.035467382520437],[0.020293522626162,0.050191946327686,-0.050061948597431],[-0.025433225557208,0.010492823086679,-0.040400434285402]],[[-0.054507028311491,-0.0039350925944746,-0.056725427508354],[-0.021743409335613,-0.017416436225176,0.079136446118355],[0.059298031032085,0.037851367145777,0.058190658688545]],[[0.023584490641952,0.030768966302276,0.064965754747391],[0.0079017030075192,-0.015725202858448,-0.03812076151371],[0.052771687507629,0.013148944824934,-0.02182736620307]],[[0.033947173506021,0.014512619003654,-0.015348946675658],[0.019860751926899,0.011860788799822,-0.025573782622814],[-0.022662961855531,-0.0014094021171331,-0.073168933391571]],[[-0.025476993992925,0.0053460667841136,0.064831092953682],[-0.0060922200791538,-0.033522319048643,0.043289594352245],[-0.0022352582309395,0.00010981802188326,-0.024870535358787]],[[0.03035675175488,-0.012135773897171,-0.019612807780504],[-0.027021387591958,-0.013505113311112,-0.067577309906483],[-0.033331654965878,-0.025816207751632,-0.051658216863871]],[[-0.005115897860378,-0.015867829322815,-0.028941851109266],[-0.033901605755091,-0.018726382404566,-0.046769477427006],[-0.012634438462555,-0.029249649494886,0.034853167831898]],[[-0.083587974309921,-0.043731279671192,-0.0060763647779822],[0.092236645519733,-0.00038825834053569,0.015252524055541],[0.010426081717014,0.025561342015862,-0.092285983264446]],[[-0.046977836638689,-0.036195807158947,0.10729574412107],[-0.048364337533712,-0.050485748797655,0.028930572792888],[0.013674948364496,0.078314363956451,0.058795709162951]],[[-0.052021056413651,0.016819274052978,-0.044458966702223],[0.0067360298708081,-0.035644568502903,-0.013283639214933],[0.028710583224893,-0.012755651958287,0.011441141366959]],[[0.05759447440505,0.012490944936872,-0.036867752671242],[-0.067854285240173,-0.053282275795937,0.0033606579527259],[0.03611871227622,0.024566641077399,-0.013516589067876]],[[-0.006444341968745,0.01709346100688,0.059295054525137],[0.068143725395203,-0.036646939814091,0.021432189270854],[0.02215807326138,-0.045716293156147,-0.066297858953476]],[[-0.040251012891531,-0.0246616397053,0.011833649128675],[-0.01125985942781,-0.025991436094046,0.018731320276856],[0.049182143062353,-0.03390958160162,0.0400410592556]],[[-0.011550639756024,-0.032231651246548,-0.040413565933704],[0.038996331393719,0.036775153130293,0.0064859315752983],[0.0026229256764054,0.016587700694799,0.0030213280115277]],[[-0.0024275353644043,0.028036087751389,0.039417255669832],[-0.082255154848099,-0.032196972519159,0.052185002714396],[0.0051324060186744,-0.044459231197834,0.0049073360860348]],[[0.001401147688739,-0.017156478017569,-0.0273706484586],[-0.054994828999043,0.042019132524729,-0.019802428781986],[0.053660456091166,-0.0025302059948444,0.015375916846097]],[[0.065378598868847,0.0074730417691171,0.019362976774573],[-0.020254770293832,0.0094559220597148,-0.0025035615544766],[-0.087593130767345,-0.00098283542320132,-0.0036703031510115]],[[-0.02472323551774,0.10489533096552,0.060641586780548],[0.041623886674643,0.0019578225910664,-0.00066999037517235],[0.055307004600763,-0.04659541323781,-0.034871447831392]],[[0.093000493943691,-0.0082469694316387,-0.0047205444425344],[-0.0056799645535648,-0.07066784799099,-0.04135150834918],[-0.010539633221924,-0.0031240074895322,-0.016524586826563]],[[0.046293370425701,-0.023665180429816,0.039351623505354],[0.019196283072233,-0.019008515402675,0.095567137002945],[-0.024031069129705,-0.010933319106698,-0.038482695817947]],[[0.016811456531286,-0.010975433513522,-0.059109717607498],[-0.0019010495161638,-0.020919939503074,0.092775218188763],[-0.016573326662183,0.033915836364031,-0.051839079707861]],[[-0.00085472781211138,-0.05918600782752,-0.016198506578803],[0.09983267635107,0.02697828412056,-0.1003448292613],[-0.027028359472752,-0.04108938574791,-0.081469722092152]],[[0.034988570958376,-0.041075427085161,0.022776108235121],[-0.036482729017735,0.021811012178659,0.043657753616571],[0.026476003229618,0.036784362047911,-0.050479400902987]],[[-0.039305552840233,-0.012065336108208,-0.078996889293194],[-0.041943300515413,-0.0099295768886805,0.039719339460135],[0.031251221895218,0.012292618863285,0.013668308034539]],[[0.060832999646664,0.0057042655535042,-0.059637580066919],[-0.035249575972557,0.052133657038212,0.021739162504673],[-0.021221023052931,-0.050292879343033,-0.026163391768932]],[[0.032200306653976,0.024019155651331,0.024207770824432],[-0.032263051718473,0.054783053696156,-0.0068882741034031],[-0.010627414099872,-0.079339943826199,-0.018486343324184]],[[0.05800299346447,-0.027064815163612,0.096379019320011],[0.018297022208571,-0.069620467722416,-0.060655146837234],[-0.024078197777271,0.044821165502071,-0.050004050135612]],[[0.025294797495008,-0.0024401950649917,0.050988372415304],[0.044529058039188,-0.069795690476894,-0.014287904836237],[0.066158942878246,-0.046465590596199,0.067363746464252]],[[-0.061780426651239,-0.064223311841488,0.06125671043992],[0.017165761440992,-0.0089912759140134,-0.02199918217957],[-0.011817662976682,-0.019132170826197,-0.008314442820847]],[[-0.024276964366436,-0.0067470627836883,-0.010162495076656],[0.012608356773853,-0.095503963530064,0.010064849629998],[-0.0037389434874058,-0.0031722695566714,0.072886407375336]],[[-0.030339244753122,-0.073972046375275,0.063712902367115],[-0.077036574482918,0.025302240625024,0.042971316725016],[-0.038656923919916,0.018091596662998,-0.005627999547869]],[[0.061353847384453,0.023408757522702,-0.04200940951705],[-0.032188083976507,-0.060413718223572,0.0070985890924931],[-0.007968177087605,0.031325295567513,-0.060360636562109]],[[0.019035991281271,-0.00096420361660421,0.018762612715364],[-0.09190122038126,0.060590654611588,-0.036444805562496],[-0.053000152111053,0.0044913338497281,-0.013193766586483]],[[-0.011629243381321,-0.0428077429533,0.03924436122179],[0.053582258522511,-0.036264684051275,0.036869529634714],[-0.087163046002388,0.04432987049222,0.0086736110970378]],[[0.01925415918231,0.0028493362478912,0.00024531179224141],[-0.059374112635851,-0.0010158324148506,0.074219755828381],[0.024721037596464,0.023338617756963,0.032714486122131]],[[0.066887959837914,-0.0033691497519612,0.069855697453022],[0.014244118705392,0.0042925248853862,-0.010562702082098],[-0.010179628618062,0.021870596334338,-0.052656698971987]],[[0.066575646400452,0.00048087385948747,-0.029859442263842],[0.083413176238537,-0.025758190080523,-0.061768729239702],[0.029331693425775,-0.034505475312471,-0.0097773121669888]],[[-0.018503138795495,0.084911607205868,-0.0053218458779156],[-0.0093838246539235,-0.05117667093873,0.074288763105869],[-0.020673839375377,0.081899113953114,0.036431849002838]],[[-0.046736143529415,0.032485738396645,0.036434058099985],[-0.034399308264256,-0.025804968550801,-0.040886476635933],[0.0016916391905397,-0.013177550397813,-0.04152850061655]],[[0.055435568094254,0.0095062078908086,0.017099492251873],[-0.028458653017879,-0.0043997243046761,0.086051918566227],[0.026068955659866,-0.052905309945345,0.022722302004695]],[[0.02914042212069,0.022015195339918,-0.035578262060881],[-0.033603589981794,-0.016284136101604,-0.0010325683979318],[0.033504251390696,0.038619302213192,-0.033109977841377]],[[0.014463644474745,0.037977445870638,0.12349665164948],[0.018070068210363,0.055054798722267,0.044536061584949],[0.047392055392265,0.020729620009661,0.059281561523676]],[[0.041874915361404,-0.024787936359644,-0.097797445952892],[0.026659173890948,-0.073674492537975,-0.024070054292679],[-0.01215750630945,0.057678617537022,0.0028597239870578]],[[0.016328681260347,-0.0043129287660122,0.034459784626961],[0.022854901850224,0.00053843006026,-0.0028630055021495],[-0.018084665760398,-0.013738561421633,-0.0084189353510737]],[[0.046610601246357,0.07193660736084,-0.03711150214076],[-0.005285813473165,-0.017921339720488,0.0083295563235879],[-0.035385273396969,-0.034904234111309,-0.026691822335124]],[[-0.022155730053782,0.014917760156095,0.076378799974918],[0.03879027068615,-0.024834694340825,0.07122191041708],[0.0019413609988987,-0.058280494064093,0.047522895038128]],[[0.034786511212587,-0.062001083046198,0.023895889520645],[0.056991901248693,-0.037833318114281,0.04523017629981],[0.0078034796752036,0.0012710921000689,-0.012866257689893]],[[-0.0090586002916098,0.026369873434305,0.042579591274261],[-0.0296038556844,0.008899942971766,-0.0023303458001465],[-0.017492270097136,0.038473714143038,0.013842863030732]],[[-0.014685488305986,-0.024970104917884,-0.0062251118943095],[0.0085767675191164,-0.03172805160284,0.0037775801029056],[0.089870266616344,-0.034049421548843,-0.038535617291927]],[[-0.0038932813331485,0.018520446494222,-0.027473594993353],[0.13047526776791,0.010049493052065,0.0096039585769176],[-0.039127193391323,0.050121497362852,-0.028803769499063]],[[-0.040921304374933,0.072819739580154,0.0046020499430597],[-0.005096741952002,-0.0040776687674224,-0.050052892416716],[-0.013086230494082,-0.070690549910069,-0.038685396313667]],[[0.049269881099463,0.03888725861907,0.052455067634583],[-0.068656280636787,-0.040427211672068,-0.0014186637708917],[-0.084323659539223,-0.0032071762252599,-0.064965851604939]]],[[[0.14933769404888,0.22340305149555,0.016779966652393],[-0.086955308914185,0.13759657740593,0.097424425184727],[0.0090184304863214,-0.015655249357224,-0.091350838541985]],[[-0.0033353506587446,0.020191175863147,0.023703999817371],[0.05628826469183,-0.14416348934174,0.081052727997303],[-0.0016232494963333,-0.028095418587327,-0.036987133324146]],[[-0.031973604112864,0.0030230591073632,-0.017502937465906],[-0.060769557952881,-0.082915462553501,-0.25713577866554],[-0.049987483769655,-0.021831348538399,-0.058023598045111]],[[-0.073650978505611,0.0084792971611023,0.084218867123127],[-0.021251061931252,0.0049643428064883,0.036252122372389],[-0.06900842487812,-0.091782882809639,-5.3219400797389e-06]],[[-0.019649151712656,-0.12630099058151,0.01000361610204],[-0.044985890388489,-0.077567473053932,-0.024211093783379],[0.0032196831889451,-0.10798664391041,-0.040270444005728]],[[-0.084400214254856,-0.052781917154789,0.069104798138142],[-0.076244950294495,-0.1347841322422,0.024488538503647],[-0.1125146523118,-0.049424983561039,0.009778163395822]],[[-0.060150615870953,-0.046634592115879,-0.061363343149424],[-0.14956131577492,-0.063889816403389,-0.034802321344614],[-0.11434940993786,-0.16354569792747,-0.13138794898987]],[[-0.10329768061638,-0.14005102217197,-0.033605434000492],[-0.10013047605753,-0.086429879069328,-0.052240576595068],[-0.10648614168167,-0.0052752871997654,-0.018880039453506]],[[0.043874237686396,-0.059864524751902,0.054730970412493],[-0.016953701153398,-0.0095322979614139,-0.04623968526721],[-0.030029157176614,-0.040946036577225,0.024238022044301]],[[0.026015201583505,-0.013410618528724,-0.042287927120924],[0.0016136323101819,0.061930004507303,-0.00098873639944941],[-0.078009530901909,0.020923286676407,0.091001458466053]],[[0.092185616493225,-0.003364269156009,0.10226452350616],[-0.043373458087444,0.050788879394531,-0.010576255619526],[-0.057130396366119,-0.12872393429279,0.057808641344309]],[[0.0077884891070426,-0.088740266859531,-0.031096864491701],[0.0022248837631196,-0.034769218415022,0.0024406102020293],[-0.049508355557919,-0.061014514416456,0.024644559249282]],[[-0.0054295463487506,-0.0089638829231262,-0.041389655321836],[-0.048576060682535,-0.046491198241711,-0.047129757702351],[-0.022369418293238,-0.070067062973976,-0.073975093662739]],[[0.094858959317207,0.048310041427612,-0.02430778183043],[0.11869597434998,0.14690361917019,0.16206446290016],[0.079887248575687,0.061958819627762,-0.029436931014061]],[[-0.01947720721364,-0.068531841039658,-0.0072524719871581],[0.019952012225986,-0.066135384142399,-0.21922129392624],[0.00023221966694109,0.053770951926708,0.010335091501474]],[[0.0048172753304243,-0.05735407397151,-0.053683210164309],[-0.049364980310202,-0.01274383906275,-0.019814696162939],[0.0039270492270589,0.0093516558408737,-0.021000329405069]],[[-0.089712016284466,-0.10391807556152,0.028391029685736],[0.036181814968586,-0.14728105068207,-0.025413326919079],[0.071836441755295,0.0049316100776196,-0.15184289216995]],[[-0.027809688821435,-0.0067162718623877,-0.052953392267227],[-0.11297233402729,0.013029281981289,-0.041083410382271],[-0.097656950354576,-0.095870062708855,-0.18407170474529]],[[-0.054993815720081,-0.08362652361393,-0.070381551980972],[-0.11002649366856,-0.063265644013882,0.059930026531219],[-0.077119015157223,0.094498164951801,-0.017564967274666]],[[-0.0047159432433546,0.027582429349422,-0.03339271619916],[-0.049694985151291,0.072929501533508,0.056969732046127],[0.1373175829649,0.15361182391644,-0.028526993468404]],[[-0.069413676857948,0.032668724656105,-0.075813412666321],[0.10776619613171,0.15835194289684,0.065549269318581],[-0.23466429114342,0.13522750139236,0.055360954254866]],[[0.043920177966356,-0.015705076977611,0.018212683498859],[-0.074004292488098,-0.10812145471573,-0.027284726500511],[-0.025529595091939,-0.061177253723145,0.022660572081804]],[[0.08081529289484,-0.03576048836112,-0.081573434174061],[0.12809544801712,-0.010116746649146,-0.11495388299227],[0.056980084627867,0.080031260848045,-0.029211815446615]],[[-0.01017839834094,0.034372601658106,0.058739688247442],[0.012751957401633,-0.001557864015922,0.070562139153481],[-0.12562105059624,-0.022428760305047,0.0067420094273984]],[[0.051729112863541,0.12709301710129,0.11940095573664],[0.013923713937402,-0.024312632158399,-0.068705983459949],[0.0031430113594979,-0.012512100860476,0.031833823770285]],[[0.0069138142280281,0.1018578633666,0.09189360588789],[-0.1137593537569,0.038210306316614,0.00027768930885941],[0.052528828382492,0.013911144807935,0.094096161425114]],[[-0.019389463588595,-0.057260632514954,0.022628800943494],[-0.10466824471951,-0.090913571417332,-0.051360581070185],[-0.13749197125435,-0.051497213542461,-0.035993121564388]],[[0.135357812047,-0.038236573338509,-0.11535310745239],[0.13105836510658,0.043613605201244,0.040401019155979],[0.13846158981323,0.12366744875908,-0.0083617633208632]],[[0.0042183441109955,-0.16369758546352,0.0011498150415719],[-0.064739696681499,-0.071616105735302,-0.15198315680027],[-0.10090310871601,-0.049558814615011,-0.023380242288113]],[[-0.0088875507935882,0.047126278281212,0.010401056148112],[0.017042942345142,-0.022605579346418,-0.040889389812946],[0.045928776264191,-0.045512534677982,0.042323172092438]],[[0.046543300151825,0.10366842895746,-0.10863824933767],[-0.13702197372913,0.030885677784681,0.060901403427124],[-0.05767647176981,-0.028103239834309,-0.099612921476364]],[[-0.058824561536312,-0.024273488670588,0.047888789325953],[-0.018067702651024,0.078338712453842,0.045901566743851],[-0.0057972623035312,0.014788066036999,-0.066161051392555]],[[-0.028040941804647,-0.0015263856621459,-0.15289726853371],[0.055136814713478,0.026261355727911,0.041991714388132],[-0.022099826484919,-0.040971238166094,0.075405530631542]],[[0.072108782827854,-0.017066657543182,0.049827914685011],[0.045587688684464,0.058054607361555,0.013120437040925],[-0.015424598939717,-0.064426995813847,0.0098301507532597]],[[-0.094462037086487,-0.093134492635727,0.13252617418766],[0.074879840016365,-0.10968843847513,-0.016389440745115],[0.1657643020153,0.07806720584631,-0.12170038372278]],[[-0.028199473395944,0.0042097107507288,0.076189406216145],[-0.12257862091064,-0.077198974788189,0.087975263595581],[-0.040856633335352,-0.12036188691854,-0.04596009105444]],[[0.029598763212562,-0.011751065030694,-0.050865992903709],[0.071061171591282,-0.0058079571463168,-0.094823904335499],[-0.10284045338631,0.06121214106679,0.1054043546319]],[[0.0334597453475,0.13645201921463,-0.089640542864799],[-0.01168121304363,0.033272854983807,0.026836182922125],[-0.081102766096592,-0.096063226461411,0.053265146911144]],[[-0.040842767804861,-0.023686155676842,0.04957165569067],[-0.0092965327203274,-0.12597021460533,0.028584016487002],[0.013166083954275,0.0025565961841494,-0.11517004668713]],[[-0.064539402723312,0.045887172222137,-0.07229371368885],[-0.059612814337015,0.032664697617292,-0.036914642900229],[-0.0066715995781124,-0.12754637002945,-0.044690869748592]],[[-0.06318835914135,0.027600735425949,0.048202343285084],[-0.068721309304237,-0.04135274887085,0.084572285413742],[-0.031909678131342,-0.078628569841385,-0.10403013974428]],[[0.04636737704277,0.014954539015889,0.074077412486076],[0.11256271600723,0.055985070765018,0.065256915986538],[0.014086839742959,-0.023739006370306,0.1274658292532]],[[-0.072565078735352,-0.010011262260377,-0.036708474159241],[-0.035209108144045,-0.15881744027138,0.053402848541737],[0.055935680866241,0.14531925320625,0.045034680515528]],[[-0.042902454733849,-0.083469144999981,0.044098917394876],[-0.048949711024761,0.044949665665627,0.017414301633835],[-0.12844055891037,-0.058527391403913,0.039440099149942]],[[0.0098256906494498,0.10489895939827,0.065709143877029],[-0.010814382694662,0.047156643122435,-0.015358781442046],[-0.03253822401166,0.024049434810877,0.144326582551]],[[-0.0028234391938895,-0.06073422729969,0.011448125354946],[0.12371373921633,-0.091037772595882,0.018047420307994],[0.050225730985403,0.043901856988668,-0.089625529944897]],[[0.13781870901585,0.014108926057816,0.0033573904074728],[0.078013814985752,-0.039778340607882,0.023495629429817],[0.016968922689557,-0.073118254542351,-0.050994601100683]],[[-0.01510912925005,0.052461609244347,-0.026368752121925],[-0.03523388877511,-0.05891652777791,0.05785846337676],[0.10588332265615,-0.023690555244684,0.015938054770231]],[[0.041115041822195,-0.030621783807874,0.028065893799067],[0.030158068984747,0.059972520917654,-0.052879121154547],[0.0063111917115748,-0.13737262785435,-0.098650753498077]],[[0.011201366782188,0.12081263959408,0.098183944821358],[0.08425385504961,0.042033169418573,-0.042901925742626],[-0.02639664337039,0.25760966539383,0.019503798335791]],[[-0.069084450602531,-0.04580045863986,-0.018731493502855],[-0.03478617221117,-0.064920373260975,-0.11747392266989],[-0.15542317926884,-0.057150024920702,-0.1076146364212]],[[0.030515171587467,0.096280165016651,-0.032479491084814],[-0.096013009548187,0.039078172296286,0.048978254199028],[-0.072129115462303,-0.082555308938026,0.03806284442544]],[[0.0036786000709981,0.053890369832516,-0.074397571384907],[-0.027505673468113,-0.080582112073898,-8.3302220446058e-06],[0.105833157897,-1.9405133571126e-06,0.052016548812389]],[[0.25532850623131,0.24910905957222,-0.097719848155975],[0.15148930251598,0.37418627738953,0.39037892222404],[-0.032597988843918,-0.11045870929956,0.23524948954582]],[[0.10164412856102,-0.04435421153903,-0.1296167075634],[0.053413577377796,0.064977183938026,-0.053226865828037],[-0.0052856151014566,-0.029817698523402,-0.070728495717049]],[[-0.013498472981155,-0.043492753058672,-0.010664869099855],[-0.067317590117455,0.019678523764014,0.01364551205188],[0.10336532443762,-0.042835235595703,-0.033334754407406]],[[-0.038330152630806,-0.11477357149124,-0.11191300302744],[-0.099739208817482,-0.096492022275925,-0.098287843167782],[-0.1523045450449,-0.16380482912064,-0.074350446462631]],[[-0.03423098474741,-0.034963555634022,-0.033522184938192],[0.0050441208295524,-0.039037171751261,-0.037583161145449],[0.0083997910842299,-0.07739719748497,0.016835104674101]],[[-0.0076891095377505,0.056795243173838,-0.12919615209103],[0.050683073699474,-0.11772139370441,0.020970584824681],[-0.063941471278667,0.064770862460136,0.023016886785626]],[[0.0091487448662519,0.09664162248373,0.09421144425869],[-0.11854808032513,0.13752253353596,0.1753516048193],[-0.090144224464893,-0.037097204476595,0.050311490893364]],[[0.093073576688766,0.027776340022683,-0.011468048207462],[-0.011466440744698,0.019868550822139,0.087669394910336],[0.049938570708036,0.053084883838892,0.053881507366896]],[[0.031119903549552,0.089855641126633,-0.11934813857079],[0.036721225827932,-0.001335593406111,0.017794730141759],[-0.055400356650352,-0.051232047379017,0.10237174481153]],[[0.042399261146784,0.046000696718693,-0.015817413106561],[0.039250779896975,0.13209018111229,-0.078989118337631],[-0.037235707044601,-0.014315400272608,0.010380648076534]],[[-0.046492163091898,-0.11711967736483,-0.070348590612411],[0.078873850405216,-0.11488562077284,-0.065573945641518],[0.056095119565725,0.0095451883971691,0.023351283743978]]],[[[-0.10991365462542,-0.1089331060648,0.0055580865591764],[-0.044325664639473,-0.01007005572319,-0.060557033866644],[-0.013824206776917,0.047730132937431,0.079643160104752]],[[-0.12295074760914,0.058518305420876,0.09286530315876],[0.025854237377644,-0.035188023000956,0.04993648827076],[0.017032792791724,0.049205988645554,-0.018489452078938]],[[0.0093240113928914,-0.1314809024334,-0.05269680544734],[-0.036040779203176,-0.042748246341944,-0.035598631948233],[-0.024713259190321,-0.058458298444748,-0.033259570598602]],[[0.020766898989677,-0.018599044531584,-0.019900411367416],[-0.018547499552369,-0.04558951407671,-0.0083782011643052],[0.050613630563021,-0.12197627127171,-0.0077764326706529]],[[-0.063860446214676,-0.19045306742191,-0.038858521729708],[-0.041746735572815,0.12439561635256,0.0087369130924344],[0.029199477285147,-0.039744757115841,0.020093994215131]],[[0.022687615826726,-0.055382616817951,0.088793471455574],[-0.05575905367732,-0.16541485488415,-0.042345527559519],[-0.033981837332249,0.033641755580902,-0.0021810673642904]],[[-0.041948415338993,-0.040371228009462,-0.019228687509894],[-0.0044748582877219,-0.033934779465199,0.019047429785132],[-0.012329593300819,0.039701592177153,-0.010172029957175]],[[-0.016100266948342,-0.090166471898556,0.018396753817797],[-0.032609023153782,-0.063839100301266,-0.0032368379179388],[0.070633091032505,0.067927055060863,0.08677976578474]],[[-0.10343155264854,0.0087253144010901,0.036944717168808],[0.099497631192207,-0.035363964736462,0.052621673792601],[-0.029555197805166,-0.073952704668045,-0.10584244132042]],[[-0.0842424929142,0.01777583733201,0.01100452337414],[-0.1426959335804,-0.042662270367146,-0.075541444122791],[0.064305700361729,-0.001775607932359,0.0074466424994171]],[[0.0041036135517061,-0.01262366771698,-0.021138459444046],[-0.043552447110415,-0.015660099685192,0.033057477325201],[0.02645181119442,-0.049655348062515,-0.0079771988093853]],[[0.025923728942871,-0.0082240980118513,0.069336362183094],[0.023793725296855,0.089450851082802,-0.053062379360199],[-0.012198751792312,-1.3226438568381e-05,0.027755960822105]],[[0.0065249940380454,-0.048680979758501,-0.012639125809073],[0.0086091663688421,-0.13237909972668,0.0088876252993941],[0.0092157023027539,-0.081543363630772,-0.028796494007111]],[[0.039844546467066,-0.071619123220444,0.053923945873976],[-0.025216318666935,0.06585718691349,0.0082773054018617],[0.11329241842031,-0.0014781076461077,0.085706047713757]],[[-0.10548173636198,-0.079536445438862,-0.047475144267082],[-0.088514380156994,0.13160014152527,-0.15129441022873],[-0.031766530126333,-0.024551395326853,-0.011249165982008]],[[0.010651327669621,0.013798482716084,0.050197657197714],[-0.064783878624439,-0.055530767887831,0.023402648046613],[-0.013373425230384,0.047710113227367,-0.00073900591814891]],[[-0.052810944616795,-0.1195387840271,-0.0099515616893768],[-0.1049410328269,0.0065744798630476,-0.20919397473335],[-0.062229797244072,-0.010161546990275,-0.018556706607342]],[[-0.05484701693058,-0.010669072158635,-0.0072146537713706],[0.015947883948684,-0.14397290349007,-0.030995851382613],[-0.027416218072176,0.055789839476347,0.12255581468344]],[[-0.026106916368008,-0.044399436563253,0.011404910124838],[-0.15047159790993,-0.10654467344284,-0.046070925891399],[-0.026825746521354,0.0060895346105099,-0.0017506547737867]],[[0.0053705400787294,-0.048152137547731,-0.015204258263111],[0.026756193488836,0.0040937019512057,-0.042153812944889],[-0.010545550845563,0.035828500986099,0.0066617550328374]],[[-0.15905551612377,0.063482135534286,-0.18680657446384],[0.092615783214569,-0.095470227301121,-0.045001734048128],[-0.096182852983475,0.11812770366669,-0.21358904242516]],[[0.10516348481178,0.057653822004795,-0.10002583265305],[-0.052276127040386,-0.036144904792309,-0.047801107168198],[-0.034162603318691,-0.027824258431792,-0.012961967848241]],[[-0.062279250472784,-0.1165410131216,-0.038114424794912],[0.097006551921368,0.013482513837516,-0.011829021386802],[0.042655806988478,0.032593831419945,0.025569563731551]],[[-0.043559886515141,-0.015336701646447,0.0035025177057832],[-0.024053487926722,3.2471347367391e-05,-0.050493642687798],[0.0095904069021344,-0.011839488521218,-0.0072019933722913]],[[0.027704309672117,-0.016747858375311,-0.0072294739075005],[0.055621992796659,0.015872260555625,0.013501545414329],[-0.045177921652794,0.027751103043556,-0.018258903175592]],[[0.015010205097497,0.055259328335524,0.010095577687025],[-0.0038660317659378,-0.089339531958103,0.037501942366362],[0.009637582115829,0.068396158516407,-0.018335521221161]],[[-0.0018070633523166,-0.035206325352192,-0.087767638266087],[-0.13625425100327,-0.068633712828159,-0.0042995130643249],[-0.054476257413626,0.01777970045805,-0.0083394562825561]],[[-0.091471120715141,0.071900747716427,-0.028502631932497],[-0.060369458049536,0.016838787123561,-0.012874369509518],[-0.19836972653866,0.031591538339853,-0.15850119292736]],[[0.0014278012095019,0.046569518744946,-0.0047346381470561],[0.00075954193016514,-0.005590861197561,-0.034248035401106],[0.015462308190763,0.017528403550386,-0.015260738320649]],[[0.087964370846748,-0.030918473377824,-0.045079253613949],[-0.14021326601505,-0.15074102580547,-0.023050712421536],[0.0036059103440493,0.08046717196703,-0.0095082195475698]],[[-0.12019208073616,-0.11803215742111,-0.11081014573574],[-0.015473648905754,-0.058383021503687,0.050069991499186],[0.065782725811005,0.018641801550984,0.010563034564257]],[[-0.031377743929625,0.062585793435574,0.1405693590641],[-0.12720078229904,-0.003449046285823,0.042258933186531],[-0.057319354265928,0.067321792244911,-0.017366409301758]],[[0.037331130355597,-0.038144376128912,-0.10864844918251],[0.02288855612278,-0.0023087030276656,0.074288681149483],[-0.042844548821449,0.015326667577028,-0.025914518162608]],[[-0.10038357973099,-0.094842925667763,0.05385634303093],[-0.042174857109785,-0.069181703031063,-0.024308325722814],[-0.019621374085546,-0.078977420926094,0.019916435703635]],[[-0.038537293672562,-0.0040997941978276,-0.0056741456501186],[0.027794923633337,0.065206527709961,-0.042407296597958],[-0.018423674628139,0.024240341037512,-0.013597415760159]],[[0.024355780333281,-0.17035385966301,-0.037635259330273],[0.063490852713585,-0.046579923480749,0.016289781779051],[-0.020744513720274,0.038139682263136,0.00013514538295567]],[[-0.073250986635685,0.0007720566354692,-0.085984900593758],[0.079152397811413,-0.042474061250687,-0.039467021822929],[0.015513009391725,-4.4047297706129e-05,-0.0071549359709024]],[[-0.061484880745411,0.042514100670815,0.028679978102446],[-0.073572248220444,-0.050443131476641,0.023334600031376],[0.044886957854033,0.0027330634184182,0.027821831405163]],[[-0.0026195663958788,0.043419286608696,0.028066696599126],[-0.027273822575808,-0.0039830096065998,-0.0055835410021245],[-0.050088841468096,-0.016676560044289,0.018932200968266]],[[-0.10309690982103,-0.17648603022099,-0.15544375777245],[0.028240075334907,-0.1070111989975,0.00026809121482074],[0.025145681574941,0.012632099911571,0.035431962460279]],[[-0.029088439419866,-0.0084199290722609,0.053214877843857],[-0.1119271889329,-0.069336853921413,-0.1128191575408],[0.013915314339101,-0.041301794350147,0.014818456023932]],[[-0.00022533447190654,0.04842571914196,0.051875732839108],[-0.010997667908669,0.05997920781374,0.0042155869305134],[-0.054640766233206,-0.026766389608383,0.030352661386132]],[[-0.050201799720526,-0.050608869642019,-0.067317299544811],[0.066238030791283,-0.062634095549583,0.056536924093962],[-0.010408933274448,0.037067428231239,0.036455534398556]],[[-0.087913617491722,0.055001392960548,-0.1308409422636],[0.027697246521711,-0.026091882959008,0.0067982878535986],[0.024022774770856,0.050469692796469,-0.039225414395332]],[[-0.077387690544128,0.12887126207352,0.059372205287218],[0.074351027607918,-0.073383882641792,0.0025985902175307],[-0.041619449853897,-0.051192503422499,-0.039176508784294]],[[0.0077479337342083,-0.051092736423016,0.037330605089664],[-0.057106051594019,-0.091901153326035,-0.042925927788019],[-0.013513471931219,0.026224812492728,0.033298019319773]],[[0.079312905669212,0.045115415006876,-0.13859963417053],[0.1121429502964,-0.035871107131243,-0.039953045547009],[0.054585117846727,-0.012055082246661,-0.086354166269302]],[[-0.064692847430706,0.0064499173313379,-0.041032284498215],[0.10262921452522,-0.06128890812397,-0.021454622969031],[0.070806965231895,0.062299843877554,-0.014562472701073]],[[-0.034728594124317,0.032073378562927,0.013099982403219],[0.054376348853111,0.056016575545073,-0.010498406365514],[-0.00091515068197623,-0.020620483905077,-0.0069017335772514]],[[-0.06536728143692,-0.057949669659138,0.15633633732796],[-0.16389784216881,-0.072146318852901,-0.082103259861469],[-0.019653789699078,-0.10236740857363,-0.038108479231596]],[[0.024533225223422,-0.085736870765686,-0.004650664050132],[-0.032366946339607,-0.06070988997817,-0.0072077265940607],[-0.16397148370743,-0.06767326593399,0.002485872246325]],[[0.014930170960724,0.027013493701816,-0.012216075323522],[0.0062490780837834,-0.015017448924482,-0.017666770145297],[0.02107996866107,0.0063266498036683,-0.086967937648296]],[[0.0065670078620315,-0.037361722439528,-0.017850618809462],[-0.081208273768425,-0.22510321438313,0.0075463806279004],[0.034913998097181,0.0781329870224,-0.0049966787919402]],[[0.015098463743925,0.30715790390968,0.01486002933234],[0.11485414206982,0.03030763193965,0.11748950183392],[-0.12702693045139,0.020870441570878,-0.055981561541557]],[[-0.090542644262314,-0.17841044068336,-0.082822352647781],[0.037793815135956,0.063606657087803,0.022422650828958],[0.091802410781384,0.065826110541821,0.069619320333004]],[[-0.0022850865498185,-0.065884321928024,-0.032637733966112],[-0.0079079512506723,0.0098634753376245,0.035172987729311],[-0.043404288589954,-0.013462299481034,-0.035210404545069]],[[-0.064347729086876,-0.10887605696917,-0.052456438541412],[-0.080237530171871,-0.094241179525852,0.0098786624148488],[-0.034286744892597,-0.1122829541564,-0.0042226440273225]],[[0.013912421651185,-0.060776006430387,0.011116280220449],[-0.058650556951761,-0.013520088978112,-0.0074647567234933],[0.0077320258133113,-0.043469324707985,-0.16879668831825]],[[-0.036223534494638,-0.072720669209957,0.078797489404678],[0.054136492311954,-0.14990845322609,-0.044858295470476],[-0.088976621627808,-0.069581873714924,-0.06915321201086]],[[0.059001855552197,0.11290621757507,0.040000628679991],[-0.037167213857174,-0.087414041161537,0.042277988046408],[-0.037415191531181,-0.029151076450944,-0.038339830935001]],[[-0.011316180229187,-0.051914189010859,-0.043381400406361],[0.087009333074093,0.07051595300436,-0.0051494399085641],[0.053867537528276,-0.0098872967064381,-0.12821273505688]],[[0.1094608604908,0.039571862667799,0.0022044058423489],[0.0081944903358817,0.021724466234446,-0.033074609935284],[-0.011799581348896,-0.0489322245121,-0.059400841593742]],[[-0.066162213683128,-0.099173851311207,0.0022381539456546],[-0.05746978521347,0.044466570019722,-0.012329707853496],[0.026667391881347,-0.068458318710327,0.017270108684897]],[[-0.053110636770725,0.022880410775542,0.019514752551913],[-0.015537969768047,-0.012648098170757,0.026910794898868],[-0.0045157209970057,0.0084237139672041,0.021262664347887]]],[[[0.060339365154505,-0.089087776839733,-0.085238806903362],[0.0053424700163305,-0.023835627362132,0.014698310755193],[-0.036885488778353,0.032136622816324,0.14731660485268]],[[-0.0031565623357892,-0.063601583242416,-0.020327050238848],[-0.055232957005501,-0.0048162606544793,0.0032641754951328],[0.012611840851605,-0.00030636039446108,-0.086949668824673]],[[0.0070440708659589,0.049971424043179,-0.041867930442095],[-0.078117735683918,0.012950631789863,-0.087495498359203],[0.022910295054317,-0.0086664659902453,0.077990509569645]],[[0.021351171657443,0.056348331272602,-0.042027566581964],[-0.025469042360783,0.0047434489242733,0.037948813289404],[0.096128441393375,-0.035819035023451,0.011061673983932]],[[-0.050846997648478,0.027912581339478,0.022059038281441],[-0.028297828510404,0.020250644534826,-0.047260109335184],[-0.034764416515827,0.044635877013206,0.050915274769068]],[[-0.051234401762486,-0.13756056129932,-0.022650267928839],[0.11005517840385,-0.10679373145103,-0.13027942180634],[-0.0074066682718694,0.10532035678625,0.035827834159136]],[[-0.0057735187001526,0.0030114350374788,0.0018992066616192],[0.0054290755651891,0.01470972597599,0.056493833661079],[-0.10337112098932,-0.011588321067393,-0.015574863180518]],[[0.026934185996652,0.0035163334105164,-0.062267299741507],[0.055630408227444,0.02117470279336,-0.0096704289317131],[0.028444731608033,0.12350364029408,0.009701888076961]],[[0.021528054028749,-0.057667452841997,-0.088305592536926],[-0.042696915566921,0.025442713871598,-0.01746179535985],[0.068699181079865,0.0069704847410321,-0.050152149051428]],[[-0.0027453382499516,0.0090277269482613,-0.0043509029783309],[0.046585489064455,0.013006689958274,-0.026477759703994],[0.011055886745453,-0.049200545996428,0.0084787681698799]],[[0.028933266177773,-0.065701961517334,0.016369154676795],[-0.0076894545927644,-0.075275167822838,0.087542496621609],[-0.0018770354799926,-0.0019474041182548,0.0041880151256919]],[[-0.154012337327,-0.023409580811858,-0.039749290794134],[0.0066097895614803,-0.0026123952120543,-0.025599109008908],[0.076021797955036,0.046753663569689,0.049230109900236]],[[0.03222594410181,0.029558913782239,0.012553729116917],[-0.056810177862644,0.0015760988462716,0.070492975413799],[0.03772072121501,-0.071327202022076,-0.050832238048315]],[[0.051325973123312,-0.00032705895137042,0.029178991913795],[0.027529140934348,0.068209074437618,0.017695093527436],[0.046799458563328,0.0068674604408443,-0.014132801443338]],[[0.02935117483139,0.06347368657589,-0.072503745555878],[-0.002064626198262,0.12194556742907,-0.016158822923899],[0.0088816964998841,0.016042429953814,0.043768137693405]],[[-0.032208319753408,-0.082311153411865,-0.022734070196748],[-0.012241628021002,0.04895531758666,-0.06735560297966],[-0.003777917008847,-0.029694916680455,-0.02254993468523]],[[0.028484579175711,-0.034877926111221,0.017055692151189],[-0.010993427596986,-0.12287966161966,0.061369549483061],[-0.070077396929264,0.028382793068886,0.03111613355577]],[[0.031828504055738,-0.011426070705056,-0.0016613363986835],[-0.03355985507369,0.056313447654247,0.023154145106673],[-0.042573519051075,0.071134470403194,0.14836041629314]],[[-0.0017328611575067,0.01691416464746,0.029460867866874],[-0.010537831112742,-0.030014619231224,0.017386445775628],[-0.046711843460798,0.0044996934011579,0.030021289363503]],[[-0.0073248967528343,-0.042100891470909,0.055601354688406],[-0.014017436653376,-0.011980080977082,-0.0043481108732522],[-0.013032691553235,0.00086391519289464,0.043653387576342]],[[0.055938474833965,-0.020749919116497,0.0068152802996337],[0.074037775397301,-0.038161557167768,-0.064320132136345],[0.039219468832016,0.0098686795681715,-0.098312258720398]],[[-0.016124850139022,-0.045807365328074,0.035314794629812],[-0.012409331277013,-0.028702765703201,0.058046489953995],[-0.011972810141742,-0.053200103342533,0.013809960335493]],[[0.02922217734158,0.0017293869750574,0.019255947321653],[-0.10877975821495,0.03810815140605,0.053106013685465],[-0.023155467584729,-0.023391596972942,0.032645877450705]],[[-0.014451002702117,0.015858378261328,-0.051858566701412],[-0.0071194772608578,0.016503728926182,-0.059497520327568],[0.082988508045673,-0.079235948622227,0.048180978745222]],[[0.004199305549264,-0.070359818637371,-0.085938863456249],[0.0042650527320802,-0.061210438609123,0.0014840663643554],[-0.020625034347177,-0.032013218849897,0.090461254119873]],[[-0.035105217248201,-0.0052971434779465,-0.070863954722881],[0.023216553032398,-0.025263858959079,-0.034029688686132],[0.032498434185982,-0.1140598654747,-0.011847473680973]],[[-0.0044490965083241,-0.047089777886868,0.0051973364315927],[0.10441065579653,0.024757901206613,-0.055847946554422],[-0.0023669560905546,0.030129386112094,0.075227938592434]],[[0.10641410201788,0.031782083213329,-0.054562110453844],[0.039873939007521,-0.10850158333778,-0.02577043697238],[0.006882372777909,0.030820282176137,-0.0032108486630023]],[[0.038570646196604,0.048618637025356,-0.056741550564766],[0.045736648142338,0.068561851978302,-0.011757369153202],[-0.026858048513532,-0.006439299788326,-0.012569238431752]],[[0.021010303869843,0.034815557301044,-0.058903716504574],[0.045737896114588,0.018558146432042,-0.032570064067841],[-0.075610108673573,0.014998587779701,0.0049980054609478]],[[-0.065153509378433,0.013823374174535,0.017992623150349],[0.018105089664459,-0.010798320174217,0.00469487067312],[0.048976972699165,-0.024096373468637,0.037571951746941]],[[0.0051121450960636,0.0085704708471894,0.0086097670719028],[-0.019762238487601,0.0087022799998522,-0.016106370836496],[-0.028810108080506,-0.065224833786488,-0.044230025261641]],[[-0.0071892398409545,0.082369662821293,0.040598325431347],[0.02355825714767,-0.044020015746355,0.043599270284176],[-0.053336672484875,0.02836768515408,-0.033297050744295]],[[-0.033113781362772,-0.029315548017621,-0.01239192020148],[0.029539432376623,-0.062308918684721,-0.032410923391581],[-0.077308833599091,-0.087274551391602,0.034742534160614]],[[-0.010303075425327,0.038835410028696,0.02076618373394],[0.088266782462597,-0.046440575271845,-0.042601555585861],[-0.090298280119896,-0.041772734373808,0.059076927602291]],[[-0.065439715981483,-0.069328546524048,0.0024224603548646],[0.0029150552581996,-0.051818892359734,-0.099932380020618],[-0.04777006059885,-0.022765796631575,0.022236324846745]],[[-0.060389395803213,0.026373375207186,-0.06115784496069],[0.0091213956475258,-0.0033326509874314,0.02457969635725],[-0.0033928432967514,0.028538284823298,0.0056764637120068]],[[-0.035390339791775,0.0064590368419886,0.059842813760042],[-0.038971222937107,-0.069268025457859,-0.060051392763853],[-0.049382887780666,-0.06346483528614,0.033604439347982]],[[-0.011932995170355,0.002187684411183,-0.048475429415703],[0.019369004294276,-0.0032098167575896,-0.017617659643292],[0.024137005209923,-0.03539814054966,0.046044152230024]],[[0.026294330134988,0.11152588576078,-0.066568173468113],[-0.01648285612464,-0.048118375241756,0.034556675702333],[0.064098134636879,-0.0083964494988322,-0.031257566064596]],[[-0.11690926551819,0.0070919590070844,0.014744613319635],[0.025755060836673,0.046233542263508,-0.053669258952141],[0.011251082643867,-0.0023185417521745,0.010658624581993]],[[0.0062199290841818,-0.10294706374407,-0.1077491492033],[-0.058437209576368,-0.014075526967645,-0.021244700998068],[0.015036792494357,0.081245921552181,-0.013911792077124]],[[0.024088511243463,0.035175692290068,0.018444180488586],[-0.020323220640421,-0.02157443203032,-0.016276335343719],[-0.020829053595662,0.015474590472877,0.0011351858265698]],[[0.00074176903581247,-0.0096009578555822,0.030487865209579],[-0.015648953616619,0.023720242083073,0.047224812209606],[-0.0085975024849176,0.020098244771361,0.059438787400723]],[[0.051373109221458,-0.01152165979147,0.01988041959703],[0.022373680025339,0.02729775570333,-0.0054787872359157],[0.043332614004612,-0.027143474668264,0.036755502223969]],[[-0.049140281975269,0.028939213603735,0.04038479924202],[0.012279381044209,0.12362233549356,0.023095920681953],[0.065128445625305,-0.042270831763744,-0.037258576601744]],[[0.040715601295233,-0.059387367218733,0.034328605979681],[0.0049001788720489,0.017559492960572,-0.074321217834949],[0.073341928422451,-0.0054812538437545,-0.16399149596691]],[[-0.032964378595352,0.046612855046988,-0.10500067472458],[-0.13985066115856,-0.037318084388971,0.010271642357111],[-0.085532121360302,-0.026359906420112,0.038324169814587]],[[-0.045492008328438,-0.024097930639982,-0.039172284305096],[-0.030376981943846,-0.013819481246173,0.0110854646191],[0.03306644782424,-0.037216611206532,-0.015734968706965]],[[0.003241601632908,-0.0048052947968245,0.071230553090572],[-0.097920380532742,-0.015097809024155,0.095804989337921],[-0.025062615051866,0.079652599990368,0.05884612351656]],[[-0.017247749492526,0.020774738863111,0.021608516573906],[0.045077335089445,-0.045575603842735,-0.015772681683302],[-0.016872508451343,0.084027074277401,0.03555603697896]],[[-0.079755119979382,0.012255109846592,-0.010717655532062],[-0.0021572327241302,0.048578672111034,-0.025387965142727],[-0.032107260078192,-0.040382418781519,-0.036886535584927]],[[-0.095728695392609,-0.014164987020195,0.082808241248131],[-0.061512757092714,0.057580780237913,-0.040611151605844],[-0.039762303233147,0.010817222297192,0.0071929264813662]],[[0.018651753664017,0.10885980725288,0.052196107804775],[0.020473133772612,0.029497662559152,0.087584391236305],[0.13073846697807,0.076219066977501,-0.080924600362778]],[[0.030281795188785,0.029504174366593,0.053049258887768],[-0.013594699092209,-0.0064152395352721,0.017981996759772],[0.021958619356155,0.033782109618187,0.021570816636086]],[[-0.040846794843674,0.00058013573288918,-0.076852366328239],[-0.032973270863295,0.010089448653162,0.01833251491189],[-0.027127927169204,-0.0013181215617806,0.032844517379999]],[[-0.045910347253084,-0.0028518661856651,0.0033584255725145],[0.05438195541501,0.075073450803757,0.035853873938322],[-0.046787191182375,0.0033956631086767,0.039470504969358]],[[-0.022739253938198,-0.017370015382767,0.0011278704041615],[0.018658403307199,-0.0034794954117388,-0.062380779534578],[-0.01016587484628,-0.048276871442795,-0.048058785498142]],[[-0.040612936019897,-0.04539580270648,0.11082910001278],[-0.064017377793789,0.002355900593102,-0.083486504852772],[0.061033308506012,-0.01226201467216,0.00084098312072456]],[[-0.021631801500916,0.0033962610177696,0.0026752883568406],[0.056971456855536,-0.0036251314450055,-0.024119585752487],[0.043969970196486,-0.020619694143534,-0.0098696984350681]],[[0.037700675427914,-0.032917965203524,-0.007007721811533],[-0.033078495413065,-0.0069800210185349,-0.0055331666953862],[-0.024218153208494,-0.036349259316921,-0.029739573597908]],[[0.11462637037039,0.013536685146391,-0.082622028887272],[-0.036471169441938,-0.0023280142340809,0.06221941486001],[-0.086695142090321,-0.09279203414917,-0.032206509262323]],[[-0.035463899374008,0.032743725925684,-0.080238983035088],[-0.016358444467187,-0.051028523594141,-0.036733973771334],[0.0085396217182279,-0.042710285633802,-0.01576074026525]],[[0.038101751357317,-0.028429187834263,-0.016773236915469],[-0.0048294421285391,0.041428819298744,-0.023878866806626],[0.058053724467754,0.052832689136267,-0.004324906039983]]],[[[0.021387213841081,-0.11763793230057,0.056846763938665],[0.014170737937093,0.040617011487484,-0.12793743610382],[-0.048365477472544,0.11417409777641,0.082914382219315]],[[-0.01975985057652,-0.0701934248209,-0.090481951832771],[-0.066348150372505,-0.040739163756371,-0.041580680757761],[-0.085371933877468,-0.10103350877762,-0.05696415156126]],[[0.062904722988605,0.015252775512636,0.058148190379143],[-0.078787907958031,0.045251160860062,-0.0096096275374293],[-0.064777337014675,-0.039516568183899,-0.033228520303965]],[[-0.082133762538433,-0.1037098839879,0.034010507166386],[0.012287803925574,-0.054061993956566,-0.12178708612919],[-0.082682229578495,-0.14270585775375,0.12304393947124]],[[-0.062194928526878,0.077565580606461,0.00091304309898987],[-0.091588780283928,-0.043379548937082,-0.014579094946384],[0.016211913898587,0.047511391341686,-0.028709452599287]],[[-0.042242590337992,0.071066275238991,0.094146408140659],[0.0073422831483185,0.00017697218572721,-0.016982156783342],[-0.15515038371086,0.088305823504925,-0.0072202617302537]],[[0.030206575989723,0.018983939662576,0.0044304202310741],[0.027272243052721,-0.044129561632872,-0.075062699615955],[-0.005434297490865,0.0046462472528219,-0.034193444997072]],[[0.0012775930808857,-0.02526486851275,-0.14768896996975],[-0.14657962322235,0.1467686444521,0.072962328791618],[-0.26067969202995,-0.047766461968422,-0.051757253706455]],[[0.008624772541225,0.028671422973275,0.016759384423494],[0.010675475932658,0.023440450429916,-0.041180431842804],[0.079626813530922,-0.0070759668014944,-0.014812998473644]],[[-0.031650621443987,0.024684844538569,-0.010630821809173],[0.026279585435987,0.0565435141325,-0.028435796499252],[-0.062142454087734,-0.058573700487614,0.0099657494574785]],[[-0.058064840734005,0.0057605658657849,-0.16933603584766],[0.022291865199804,-0.024352557957172,0.029382828623056],[0.13116905093193,-0.14590431749821,0.0025321044959128]],[[-0.10349209606647,-0.07601560652256,-0.10318773239851],[-0.10907411575317,-0.045693758875132,-0.11867842078209],[0.023577263578773,-0.1264750957489,-0.0079801455140114]],[[0.034680064767599,-0.049963358789682,0.13490895926952],[0.033975031226873,-0.11997050046921,0.036900721490383],[-0.054756332188845,0.033355575054884,-0.11578940600157]],[[0.073224596679211,0.016580732539296,0.04623607173562],[0.016032434999943,0.11581098288298,0.021507747471333],[0.010646997019649,0.075964622199535,0.017956895753741]],[[-0.030884673818946,0.08584201335907,-0.054142732173204],[0.058963548392057,0.029154447838664,-0.15957845747471],[0.084955222904682,0.043399557471275,0.028701972216368]],[[0.039403818547726,0.017132088541985,-0.044295787811279],[-0.0048656277358532,0.0223219525069,-0.022285018116236],[-0.037048894912004,-0.0054151499643922,0.023725479841232]],[[0.030297795310616,-0.083587773144245,0.041700843721628],[-0.04865101352334,0.0073761115781963,0.024702435359359],[-0.10170710086823,-0.085864141583443,-0.060124956071377]],[[-0.0069973678328097,0.0051936306990683,0.020079547539353],[-0.017800208181143,0.027821339666843,-0.11701803654432],[0.015186738222837,0.11326100677252,-0.028373651206493]],[[-0.010947672650218,-0.050583153963089,0.04644512757659],[-0.039226494729519,0.051203455775976,-0.039317581802607],[-0.043272983282804,-0.082724198698997,-0.038380600512028]],[[0.016350312158465,-0.020922392606735,0.0076648150570691],[0.019649567082524,-0.0036820201203227,0.064822345972061],[-0.022694954648614,-0.0032741220202297,0.021722735837102]],[[-0.021583445370197,0.067327700555325,0.11312340945005],[0.012985256500542,0.023320810869336,0.021124646067619],[0.02007245644927,-0.024193216115236,0.1479566693306]],[[0.015321319922805,-0.012847756966949,0.048026818782091],[0.072504334151745,0.059158157557249,-0.0048107258044183],[-0.018300956115127,0.013447589240968,0.014676634222269]],[[-0.016592463478446,0.054548617452383,0.016857650130987],[-0.030856743454933,0.0020740011241287,-0.0073312227614224],[0.03435942903161,-0.014299468137324,-0.031150799244642]],[[0.05376810580492,-0.017477605491877,0.041988916695118],[0.021242773160338,-0.0029159178957343,0.024434322491288],[0.017964888364077,0.090991012752056,0.058438386768103]],[[-0.033028621226549,0.03585571423173,-0.044465437531471],[0.0049660159274936,-0.08271137624979,-0.054685711860657],[-0.00071858149021864,-0.060003191232681,0.0043758344836533]],[[-0.030321527272463,0.057144645601511,0.14136563241482],[-0.077594734728336,0.012670114636421,0.052402567118406],[0.087070852518082,-0.095404595136642,-0.0241709779948]],[[0.048425607383251,-0.026673264801502,0.084921903908253],[0.033776924014091,-0.031303837895393,0.028188660740852],[0.15167188644409,0.15814223885536,-0.018969770520926]],[[-0.024581314995885,-0.058227155357599,0.0026941290125251],[0.027910966426134,0.049095589667559,0.12512882053852],[0.13705171644688,0.11064895242453,0.12390238046646]],[[0.00054389494471252,-0.073384553194046,0.051665559411049],[0.0092091960832477,-0.067370377480984,0.0025236818473786],[-0.067313946783543,0.051493510603905,-0.00028759322594851]],[[0.035343419760466,0.0075093819759786,-0.022996827960014],[0.1166272982955,0.047054640948772,0.0054731061682105],[0.021892171353102,0.021624794229865,0.046875908970833]],[[-0.0329210460186,-0.1125101968646,-0.059550289064646],[0.022526966407895,0.0022404070477933,-0.16940326988697],[-0.13809601962566,8.3876337157562e-05,-0.0072257397696376]],[[-0.020802743732929,0.041474979370832,0.04631470516324],[0.046676717698574,0.081222087144852,0.04548429325223],[0.093793593347073,0.10825749486685,-0.040909327566624]],[[0.081035286188126,-0.023746589198709,0.0027920084539801],[-0.060503985732794,-0.0085253855213523,-0.0047083231620491],[0.01725997403264,0.033166766166687,0.063865676522255]],[[-0.002076914999634,0.09887008368969,0.057250317186117],[0.045350763946772,0.088740475475788,0.12262695282698],[0.0211016908288,0.025643277913332,0.016007672995329]],[[-0.034489475190639,0.041484840214252,-0.019123109057546],[0.052441872656345,0.011680074036121,-0.079762406647205],[-0.024992223829031,-0.062163796275854,-0.03913901373744]],[[0.022122621536255,0.039871126413345,-0.031310398131609],[-0.056973908096552,-0.0023395714815706,-0.0680847838521],[-0.023237528279424,-0.16240741312504,-0.0019364904146641]],[[-0.033126953989267,-0.013942752033472,-0.01928180642426],[-0.04654860496521,0.013403292745352,0.091703496873379],[-0.0014872236642987,-0.055620763450861,0.0014120240230113]],[[0.030567886307836,-0.019463408738375,0.11787255108356],[0.059782952070236,0.0096365185454488,0.080911763012409],[0.030595701187849,-0.18933346867561,0.011359435506165]],[[0.012499028816819,-0.014253010973334,0.11672075837851],[-0.071537703275681,0.013112343847752,-0.0014291910920292],[-0.071264930069447,0.032645482569933,0.0036761336959898]],[[-0.053771521896124,-0.039684601128101,0.1096409112215],[-0.0503342859447,0.020719774067402,0.038043756037951],[-0.079275317490101,0.09402996301651,-0.078895680606365]],[[0.013858624733984,-0.08579245954752,-0.10338903963566],[-0.015885282307863,0.032681122422218,0.058713424950838],[-0.065851971507072,-0.036409806460142,0.03257055208087]],[[-0.02458287589252,-0.032150596380234,-0.051978215575218],[0.0054004467092454,-0.013121325522661,0.029575850814581],[0.011257539503276,0.067185558378696,-0.057196073234081]],[[-0.048920154571533,-0.039987068623304,-0.044679719954729],[0.022416109219193,0.10176439583302,-0.15185467898846],[0.039976019412279,-0.032800268381834,-0.084017030894756]],[[0.012933100573719,0.055618152022362,-0.039228804409504],[0.029538916423917,-0.072834178805351,0.13342455029488],[-0.16520127654076,0.040288951247931,-0.011482037603855]],[[-0.0047984896227717,0.098199270665646,0.066807851195335],[0.019086170941591,-0.13230217993259,0.076079174876213],[0.071969553828239,0.074697360396385,-0.019763162359595]],[[0.038602411746979,-0.080474570393562,0.045683536678553],[-0.078983746469021,-0.025515716522932,0.018448766320944],[-0.052650101482868,-0.057507831603289,-0.11671247333288]],[[-0.008527091704309,-0.033282708376646,-0.037632465362549],[0.066897727549076,0.05929109454155,-0.088435351848602],[-0.086307398974895,-0.09053136408329,-0.042749959975481]],[[0.13238026201725,-0.10511804372072,0.03028654679656],[0.11124982684851,-0.26741135120392,0.01532391551882],[-0.028959730640054,-0.1832210123539,-0.069848947227001]],[[-0.024673562496901,-0.012264200486243,-0.2013988494873],[0.0074745058082044,-0.1157049536705,-0.092664316296577],[-0.090494737029076,-0.081917695701122,0.0066164629533887]],[[-0.049420658499002,-0.054740849882364,-0.14601822197437],[0.07285763323307,0.11790701746941,0.053024470806122],[0.034010574221611,0.11370866000652,0.08120396733284]],[[-0.046949986368418,-0.044539898633957,0.036245234310627],[-0.077479727566242,-0.056941024959087,-0.0062566208653152],[-0.074351839721203,-0.11086075752974,-0.1027032956481]],[[0.058527484536171,0.045963648706675,-0.02688311971724],[-0.039817120879889,0.033966206014156,-0.0015529507072642],[-0.070459522306919,0.032502867281437,-0.017488393932581]],[[-0.055057410150766,-0.11436645686626,0.0052277189679444],[-0.08275993168354,-0.10260773450136,-0.15879553556442],[-0.15781344473362,-0.053149703890085,-0.14075419306755]],[[0.035270240157843,0.10377549380064,-0.042067494243383],[0.0092540718615055,0.099527940154076,0.096750900149345],[0.17652191221714,0.14844180643559,0.12159169465303]],[[0.0055665764957666,-0.032739661633968,-0.0061371773481369],[-0.019156742841005,0.095728151500225,-0.055439155548811],[0.014859425835311,0.15611423552036,-0.063389331102371]],[[-0.07760301232338,-0.048411414027214,-0.17721402645111],[-0.00022475881269202,-0.12509313225746,-0.10705264657736],[-0.065547093749046,-0.037193410098553,-0.079825736582279]],[[0.065850973129272,-0.010959839448333,-0.029862036928535],[-0.04315534606576,0.19205597043037,-0.018650587648153],[-0.16919869184494,-0.10721898823977,0.13945789635181]],[[0.002042330102995,0.012731090188026,0.00076914299279451],[-0.043090373277664,-0.053905721753836,0.14042299985886],[-0.0059346002526581,-0.078980080783367,0.019006974995136]],[[-0.014426226727664,0.019831094890833,-0.056204002350569],[0.021858869120479,0.033137563616037,0.02832842990756],[-0.079933032393456,0.022626863792539,-0.037426270544529]],[[0.00033041584538296,-0.035599797964096,0.011432413943112],[0.024149734526873,-0.0049603725783527,0.015041537582874],[-0.0096087343990803,0.05172136053443,0.045839589089155]],[[0.05106845498085,0.12294092029333,-0.042352873831987],[0.035074129700661,-0.020574713125825,-0.0554358959198],[0.038017060607672,0.032148607075214,0.10983533412218]],[[-0.01697501540184,-0.053679838776588,0.04994673281908],[-0.023060776293278,-0.0085356971248984,-0.046443186700344],[-0.014373105950654,0.070222176611423,0.010358223691583]],[[-0.046662952750921,0.043805543333292,0.010284431278706],[0.01784460619092,0.02771214209497,-0.076588377356529],[0.015451984480023,0.024316636845469,-0.038908287882805]],[[0.00049720163224265,0.070622101426125,-0.043368738144636],[0.021082676947117,0.0034035623539239,0.021354192867875],[0.0031441554892808,0.098022438585758,-0.012163267470896]]],[[[-0.015198637731373,0.076001048088074,-0.012751357629895],[0.039098624140024,-0.0065350299701095,0.032250802963972],[-0.015749149024487,-0.025226458907127,0.12245586514473]],[[0.0046023814938962,0.017289720475674,0.02959849499166],[0.042339954525232,0.077028445899487,0.025261621922255],[-0.035371817648411,-0.030231332406402,-0.093137219548225]],[[0.035842627286911,0.045199684798717,-0.1032305881381],[-0.0070405467413366,0.0081617347896099,0.032121177762747],[-0.0016262015560642,-0.089499659836292,-0.023043574765325]],[[-0.015423119068146,0.026834024116397,0.027632441371679],[0.046672202646732,0.025011319667101,0.10328023135662],[-0.016342340037227,0.016416825354099,0.028814509510994]],[[0.0082860654219985,0.015357200987637,0.016127316281199],[-0.0064076292328537,-0.00772152421996,-0.039310462772846],[-0.05233907699585,-0.068502306938171,-0.01985832862556]],[[0.009781351312995,-0.081848450005054,0.1140590980649],[-0.12780179083347,-0.060989174991846,0.13774101436138],[0.12852436304092,-0.057246007025242,-0.00091136089758947]],[[-0.014255158603191,-0.018068321049213,0.014319581910968],[0.032794587314129,-0.06571651995182,3.4265201975359e-05],[0.037704207003117,-0.046127684414387,-0.050996817648411]],[[-0.025885134935379,0.11768212914467,0.05328282341361],[-0.037058606743813,-0.042713977396488,0.042365185916424],[0.014772957190871,-0.027735251933336,-0.048324070870876]],[[-0.018464459106326,-0.088487759232521,-0.046598311513662],[-0.027721123769879,0.055553156882524,0.071806699037552],[0.048715993762016,0.021576005965471,0.0046264873817563]],[[0.078071072697639,0.023243380710483,-0.090571701526642],[-0.066357560455799,-0.042010463774204,-0.006107512395829],[-0.044778440147638,-0.12033524364233,-0.043699566274881]],[[0.050600945949554,0.1045001745224,-0.02241649851203],[-0.032603748142719,-0.089378789067268,-0.01826130785048],[-0.06452576816082,-0.098651863634586,0.013877519406378]],[[0.057196594774723,-0.010165910236537,0.030751012265682],[0.036459725350142,-0.063796974718571,0.016990391537547],[0.073222033679485,-0.014504649676383,-0.043098974972963]],[[-0.068178802728653,0.070903450250626,0.045527428388596],[0.016408301889896,-0.066734358668327,-0.098543830215931],[0.01360266841948,-0.10005932301283,-0.08103883266449]],[[0.085461132228374,0.016630595549941,0.051711514592171],[0.033159129321575,-0.0022329529747367,-0.059767317026854],[0.11542781442404,-0.092593096196651,-0.019757729023695]],[[-0.0024911779910326,-0.099684864282608,-0.0040097809396684],[-0.040997121483088,0.14255891740322,0.0025334369856864],[0.021204190328717,0.045129831880331,0.053910873830318]],[[-0.065524458885193,-0.020600309595466,0.0084195863455534],[0.048890393227339,-0.012105655856431,-0.034834194928408],[-0.058275360614061,-0.068996988236904,0.049464449286461]],[[0.023810733109713,0.062675669789314,0.06215263530612],[0.022010980173945,-0.079587258398533,-0.13349585235119],[-0.0033775880001485,0.0093873515725136,-0.077645003795624]],[[-0.076460994780064,-0.011000475846231,-0.013421741314232],[0.070604287087917,-0.064865201711655,-0.032415218651295],[0.04892510920763,0.036757010966539,-0.024148674681783]],[[0.04637635871768,0.00603541219607,0.052679263055325],[-0.05226481333375,-0.033053904771805,-0.067596592009068],[-0.039613623172045,0.019351251423359,0.0099386172369123]],[[0.11583320051432,0.018627000972629,-0.05132395401597],[0.055655624717474,0.036654580384493,0.044631820172071],[-0.010331617668271,0.054647106677294,0.022169288247824]],[[-0.023599388077855,0.0008450715104118,-0.089461714029312],[0.020822416990995,0.016514424234629,0.010251144878566],[0.0041268425993621,0.057463493198156,0.084779508411884]],[[0.060599569231272,0.099277555942535,0.015755956992507],[-0.05406940728426,0.078474678099155,0.0089737810194492],[0.0022267764434218,0.041991408914328,-0.053126007318497]],[[-0.075814925134182,0.033465869724751,0.064396813511848],[-0.11033792793751,0.031503964215517,0.035818740725517],[-0.041747007519007,0.052382983267307,0.011418933048844]],[[-0.10229732096195,0.0051933499053121,0.020372714847326],[-0.058729108422995,0.0085698226466775,-0.040704656392336],[0.10260895639658,0.050077222287655,0.02585300989449]],[[-0.024090614169836,-0.022368045523763,0.083398625254631],[-0.12947909533978,0.040360901504755,0.10296689718962],[-0.029502857476473,0.015515502542257,0.027266731485724]],[[-0.074502311646938,-0.041451174765825,-0.038073103874922],[0.0144680775702,0.0088711343705654,0.03069113008678],[-0.097466021776199,-0.1604986935854,-0.067157484591007]],[[-0.099903777241707,0.090838737785816,0.0019198440713808],[0.088060684502125,0.10819181799889,-0.0048855138011277],[0.1034741923213,-0.0062395455315709,0.020658001303673]],[[-0.15614497661591,-0.048702090978622,-0.080407060682774],[0.025303533300757,-0.040773540735245,0.21576009690762],[-0.06432493776083,0.11191838234663,-0.011645090766251]],[[0.073226526379585,0.054898872971535,0.036054458469152],[-0.0078980037942529,0.038132768124342,-0.11926770210266],[0.016689604148269,0.021073898300529,-0.051724996417761]],[[0.0049820733256638,-0.069676846265793,-0.02573143132031],[0.080062821507454,0.013083660043776,0.017168745398521],[0.028628202155232,0.081994898617268,-0.07438637316227]],[[-0.087955921888351,-0.00067725498229265,-0.032487016171217],[0.0077972733415663,-0.032672725617886,-0.0040158550255001],[0.002678707242012,-0.093913324177265,0.049398474395275]],[[0.1715871244669,0.0889942497015,0.004817861597985],[0.11644858121872,-0.067370049655437,-0.04678288847208],[-0.031373608857393,0.055487874895334,-0.099666148424149]],[[0.089790388941765,-0.10710635781288,-0.29542145133018],[0.10080456733704,0.10916789621115,-0.063094988465309],[0.16233697533607,0.13050507009029,-0.07185747474432]],[[0.043913565576077,-0.090139254927635,-0.075365774333477],[-0.011861725710332,-0.090902909636497,-0.089816436171532],[0.0090781934559345,-0.0041256039403379,-0.026013581082225]],[[0.088913783431053,-0.071213595569134,-0.10926630347967],[-0.026740230619907,0.013793298974633,-0.074882470071316],[-0.0011370094725862,-0.0070878369733691,0.071952112019062]],[[0.038515318185091,-0.21343621611595,0.0053528128191829],[0.094696238636971,-0.070882551372051,0.038888871669769],[0.14254333078861,-0.025976292788982,0.048179849982262]],[[-0.073352187871933,0.10746040195227,0.043419666588306],[0.17079985141754,-0.023973887786269,-0.0052276630885899],[0.051661685109138,0.024118753150105,-0.078995384275913]],[[-0.072236977517605,-0.05993927270174,-0.063116006553173],[-0.055208165198565,0.034844350069761,-0.091898635029793],[-0.0022082831710577,0.034820146858692,0.1018675044179]],[[-0.0076182764023542,-0.071503832936287,-0.028677046298981],[0.02625435963273,-0.12833820283413,-0.10239305347204],[-0.050447847694159,-0.038437332957983,-0.04652576521039]],[[0.079503990709782,0.14982728660107,0.1228843331337],[-0.03724941983819,0.014271003194153,-0.17686697840691],[-0.018166733905673,-0.19010217487812,-0.055083055049181]],[[-0.040558185428381,0.08248695731163,0.1433801651001],[-0.064623273909092,0.082798160612583,0.042365893721581],[-0.0075984476134181,-0.097695961594582,-0.05731312930584]],[[-0.044453959912062,-0.10708867013454,-0.039584796875715],[-0.0096227265894413,-0.004852517042309,0.0029002069495618],[-0.051072265952826,0.090260148048401,0.0043867090716958]],[[0.055107321590185,0.007885355502367,0.0083559323102236],[-0.037154663354158,0.089516691863537,0.033221632242203],[0.10115421563387,0.063340328633785,0.024710753932595]],[[-0.020341567695141,-0.031355027109385,0.071685642004013],[0.019833697006106,0.044300876557827,-0.043622773140669],[0.010545204393566,0.045952439308167,0.047761764377356]],[[-0.077991262078285,0.10463603585958,0.045489877462387],[0.0037135654129088,0.093685559928417,0.040369860827923],[-0.0038467170670629,-0.064481481909752,0.01569527760148]],[[0.13871178030968,-0.028079584240913,0.026294954121113],[0.11221417039633,-0.048979695886374,-0.043970011174679],[0.1157940775156,-0.11865359544754,0.0007768030045554]],[[0.25469660758972,-0.012313836254179,-0.10424603521824],[-0.0094198910519481,0.0032217386178672,-0.097584508359432],[-0.019508747383952,-0.013182724826038,-0.056534953415394]],[[-0.062311712652445,0.0097897788509727,-0.050657577812672],[-0.12035142630339,-0.11293189972639,0.02115367911756],[-0.032997533679008,0.0058467532508075,-0.078257635235786]],[[-0.04377106577158,-0.020560931414366,0.019352251663804],[-0.068778216838837,-0.0025494175497442,0.031615022569895],[-0.011623606085777,-0.025008512660861,0.12188782542944]],[[-0.060628443956375,0.025249321013689,0.051057003438473],[-0.065662182867527,0.16641937196255,-0.0072062187828124],[0.034084547311068,-0.00094824458938092,0.14551347494125]],[[0.073249280452728,0.040945015847683,-0.010505292564631],[0.085682258009911,0.04857774451375,0.041955094784498],[0.087101019918919,0.10129683464766,0.039729598909616]],[[-0.15120643377304,2.7003487048205e-05,-0.017770987004042],[0.034676689654589,0.066007733345032,-0.035087689757347],[-0.064177192747593,-0.0047456002794206,-0.031231973320246]],[[0.013923792168498,-0.12031473219395,-0.01922869682312],[-0.075881510972977,-0.13616473972797,-0.092609830200672],[-0.0083163557574153,0.014147584326565,-0.11223615705967]],[[-0.036375783383846,-0.036305017769337,0.13298490643501],[0.070607885718346,0.0062794694676995,0.088027089834213],[0.042644213885069,0.15198735892773,0.036994785070419]],[[0.014551194384694,0.1389215439558,0.0033125290647149],[0.035344708710909,0.031982623040676,0.065634444355965],[0.032032407820225,0.042703174054623,-0.042817588895559]],[[0.048416342586279,0.0045003481209278,-0.0097759841009974],[0.038664568215609,-0.051404800266027,-0.12627916038036],[-0.063530489802361,-0.030976055189967,-0.095295868813992]],[[-0.048547077924013,-0.083817929029465,0.036623395979404],[-0.077418401837349,0.070679113268852,-0.041877221316099],[-0.019604614004493,0.016367798671126,-0.046187978237867]],[[0.012588790617883,-0.045440338551998,-0.046989131718874],[-0.0052148047834635,-0.1047368273139,-0.0067612105049193],[0.040728639811277,0.057075262069702,-0.21375793218613]],[[0.05605361238122,-0.0058604907244444,0.1159608438611],[0.0086176376789808,-0.062215588986874,-0.102196007967],[0.040442574769258,-0.060455352067947,-0.050439707934856]],[[-0.0029145213775337,0.029392026364803,-0.064875587821007],[0.065827660262585,0.0035424523521215,-0.0091650653630495],[0.072943471372128,-0.024169266223907,0.00020352366846055]],[[-0.16037228703499,-0.1326931566,-0.072496525943279],[-0.13431049883366,-0.017123766243458,0.057509392499924],[-0.0074212145991623,0.18144668638706,0.0094696674495935]],[[0.0417515411973,0.048702925443649,0.01768097281456],[-0.037132378667593,0.074605271220207,0.10560006648302],[-0.097886204719543,-0.066425368189812,-0.061436425894499]],[[0.021212538704276,-0.026502747088671,-0.01198695320636],[-0.027672290802002,-0.10596673190594,-0.082838892936707],[-0.087215714156628,0.077676303684711,-0.0060473596677184]],[[-0.082715921103954,0.059654470533133,-0.016977172344923],[0.05945136025548,0.044101521372795,-0.003873513545841],[0.051859442144632,-0.02926423586905,-0.093017064034939]]],[[[-0.014332661405206,-0.064973659813404,0.014769146218896],[0.025331014767289,-0.054656472057104,-0.0084681482985616],[0.11310654878616,-0.021921979263425,-0.070284657180309]],[[-0.022306660190225,0.0067471736110747,-0.029025133699179],[-0.029916275292635,-0.020309424027801,-0.043010845780373],[-0.037242334336042,-0.097165159881115,-0.027410838752985]],[[-0.039670038968325,-0.083050601184368,-0.043567907065153],[0.064577788114548,-0.076483972370625,-0.057959921658039],[0.0579041428864,0.029214734211564,0.02292893268168]],[[0.052973099052906,0.035755477845669,-0.036781389266253],[0.089722022414207,0.0073416875675321,-0.048954233527184],[0.059751380234957,-0.009143122471869,0.040189385414124]],[[-0.01307390909642,0.023841634392738,0.030711479485035],[0.064688213169575,0.017476316541433,-0.0033695949241519],[-0.062395520508289,-0.054542124271393,-0.07231742143631]],[[0.068823136389256,-0.12534835934639,-0.15775512158871],[0.069603078067303,-0.03866371139884,-0.15320731699467],[0.016055081039667,0.14747281372547,-0.10551622509956]],[[-0.076845251023769,0.045944660902023,-0.073977291584015],[-0.015912329778075,-0.011217830702662,0.0010552511084825],[-0.09200381487608,8.0703095591161e-05,-0.062366586178541]],[[-0.015614742413163,0.010462377220392,-0.026171678677201],[0.040756296366453,0.069795392453671,-0.012922998517752],[0.083439767360687,0.036241579800844,0.035025555640459]],[[-0.055705368518829,-0.015766089782119,-0.026550514623523],[-0.031872689723969,-0.035328630357981,0.027439944446087],[-0.016682902351022,-0.025330895558,-0.02817882783711]],[[0.065400071442127,0.07676462829113,0.045844223350286],[-0.0066591948270798,0.019469833001494,-0.022166425362229],[-0.002411225810647,-0.063660129904747,-0.043300803750753]],[[0.044934958219528,-0.095149949193001,-0.066169932484627],[0.090839490294456,0.034369967877865,-0.04289847612381],[0.050428315997124,0.11263633519411,-0.084883190691471]],[[0.0079525941982865,-0.013249345123768,-0.052922364324331],[0.053788051009178,-0.030608609318733,0.07028803229332],[0.05503660812974,0.015901807695627,-0.0062403017655015]],[[-0.00078810972627252,0.023812526836991,-0.034557908773422],[-0.00012040472211083,-0.031543236225843,-0.10100023448467],[0.026807913556695,-0.018715491518378,-0.068350575864315]],[[0.046509318053722,0.062056820839643,0.092452488839626],[-0.0065867281518877,-0.0034515757579356,0.0011012756731361],[0.014114965684712,0.074002765119076,-0.0419762134552]],[[-0.053044989705086,0.13166275620461,-0.030923828482628],[0.017785903066397,-0.047234643250704,-0.039745856076479],[-0.028779476881027,0.032048631459475,0.025677051395178]],[[-0.0059828250668943,-0.019991459324956,-0.046723823994398],[0.061956658959389,0.060835659503937,0.02351644821465],[-0.0049074366688728,0.018401669338346,-0.020694633945823]],[[-0.035153046250343,-0.059553153812885,-0.061426479369402],[0.061053302139044,0.038995161652565,-0.015254194848239],[0.023775301873684,0.034159827977419,-0.014280147850513]],[[-0.018529800698161,0.015556233935058,-0.039614889770746],[-0.013630012050271,-0.013247572816908,0.018734646961093],[-0.013595463708043,0.0056146043352783,0.0093201193958521]],[[-0.04028207436204,0.029435331001878,0.040303390473127],[0.020052153617144,0.02978896908462,0.0070336768403649],[-0.038531962782145,-0.033428229391575,-0.049526322633028]],[[0.049609359353781,0.0083370935171843,0.027462277561426],[0.08124215900898,-0.0037682766560465,-0.038646411150694],[-0.094808220863342,-0.067952908575535,-0.027889549732208]],[[-0.079640179872513,-0.013740349560976,-0.0071364874020219],[-0.0025278606917709,-0.021455785259604,-0.024781228974462],[-0.061653606593609,0.067406855523586,-0.096564441919327]],[[0.04702852293849,-0.074235431849957,0.011189792305231],[-0.024392558261752,0.032642997801304,0.085358284413815],[-0.022038795053959,-0.0086654806509614,-0.016089808195829]],[[0.070801839232445,0.0089296093210578,-0.019098207354546],[0.0022852546535432,-0.010079420171678,0.040697783231735],[-0.048614870756865,0.010402454994619,-0.041612058877945]],[[-0.042816441506147,-0.043982714414597,0.025582320988178],[0.015483638271689,0.0033479789271951,-0.051807582378387],[0.00068930932320654,0.019991686567664,0.092985168099403]],[[0.0031041845213622,-0.054678805172443,-0.08744340389967],[-0.032660454511642,0.065415754914284,-0.12113329768181],[0.04231359064579,-0.067640416324139,0.0035252794623375]],[[0.016390414908528,0.017223807051778,-0.010297548957169],[-0.0092270420864224,0.027050750330091,0.042163696140051],[-0.056206244975328,-0.042828973382711,0.00061488634673879]],[[-0.057328563183546,-0.075712159276009,-0.042492181062698],[-0.0047170170582831,-0.0099246008321643,-0.11613135039806],[-0.036698084324598,-0.033763650804758,-0.024332446977496]],[[0.11072129756212,-0.019220320507884,-0.041885405778885],[0.077443324029446,-0.024029646068811,-0.0054820976220071],[-0.066787287592888,0.07789234817028,-0.003501514904201]],[[0.0119070969522,-0.08976124972105,-0.041843865066767],[-0.076805777847767,0.012044877745211,0.056643486022949],[0.035065647214651,0.011313876137137,0.020882477983832]],[[-0.049250122159719,-0.024306461215019,-0.091785565018654],[-0.01876705698669,-0.019260136410594,0.025642266497016],[-0.027521347627044,-0.00085702340584248,-0.026218911632895]],[[0.039773613214493,-0.011770629324019,-0.023028109222651],[-0.037367399781942,-0.019892057403922,-0.034489791840315],[0.037443172186613,-0.085663162171841,0.0031049479730427]],[[-0.085906095802784,0.021985299885273,0.083788439631462],[-0.060731317847967,0.0058336392976344,-0.014125729911029],[-0.095479555428028,0.022026075050235,0.0091659547761083]],[[0.058714114129543,-0.042515873908997,0.052015148103237],[0.079278148710728,-0.04414775967598,-0.048114366829395],[0.028634693473577,-0.0025975874159485,0.021822478622198]],[[0.010954924859107,-0.083024926483631,-0.053181372582912],[-0.016829002648592,-0.06934493035078,-0.017521142959595],[0.0010571219027042,-0.046381451189518,0.013162057846785]],[[0.035962112247944,0.030610617250204,-0.050790589302778],[0.055862855166197,0.0084793968126178,0.010125051252544],[-0.023430220782757,-0.053189571946859,0.023978335782886]],[[-0.061552453786135,-0.048495195806026,0.02262088470161],[-0.054363526403904,-0.099644556641579,-0.043930534273386],[-0.076206989586353,0.011809939518571,-0.026328966021538]],[[-0.10782843083143,0.0088739357888699,0.05985888466239],[-0.050475407391787,-0.01920061558485,-0.015280135907233],[0.010899996384978,-0.025011133402586,0.043161302804947]],[[0.0090654697269201,0.0046917586587369,0.041064366698265],[-0.022722195833921,0.019351299852133,-0.016429660841823],[-0.036090444773436,-0.057592064142227,0.045687284320593]],[[-0.0098422160372138,-0.025203473865986,0.031042950227857],[-0.043322402983904,0.034454561769962,-0.063532762229443],[-0.05664348974824,-0.010088234208524,-0.053068112581968]],[[-0.026002960279584,-0.0068268151953816,-0.057551383972168],[0.047570209950209,-0.023315280675888,-0.007165564224124],[-0.054048530757427,-0.0065775536932051,-0.040653448551893]],[[-0.069918341934681,0.0084614343941212,0.032566823065281],[0.050399221479893,0.065966255962849,0.0035721899475902],[-0.012984277680516,-0.027822323143482,-0.047708239406347]],[[0.04466537758708,-0.021053519099951,-0.028735497966409],[-0.00089375919196755,0.015618654899299,-0.0043985806405544],[-0.043682131916285,-0.039858967065811,0.0065477322787046]],[[-0.062919065356255,0.026170119643211,0.1005565226078],[-0.015663865953684,0.0090168621391058,-0.042266339063644],[-0.056349258869886,-0.031947646290064,0.031489513814449]],[[-0.017904508858919,0.037337072193623,-0.039261691272259],[0.0023014184553176,-0.02092070505023,-0.065314695239067],[0.022651048377156,0.048156090080738,0.023893402889371]],[[-0.014190207235515,-0.053975589573383,-0.12734958529472],[-0.043417040258646,0.051186911761761,-0.063306987285614],[-0.024192241951823,-0.0029633245430887,-0.066402360796928]],[[-0.0074704280123115,0.0048370882868767,0.011069550178945],[0.026996999979019,-0.018299547955394,0.030131701380014],[0.014014098793268,0.046077258884907,0.054275166243315]],[[-0.059409700334072,0.014074979349971,0.09784297645092],[-0.0042825150303543,0.0055389394983649,0.0525185726583],[-0.01385344658047,0.0087393540889025,0.017129804939032]],[[0.013631675392389,0.022882185876369,-0.06032282859087],[-0.04496768862009,0.0081385429948568,0.093984849750996],[-0.06912087649107,0.027127873152494,-0.041619021445513]],[[-0.032924003899097,-0.030222097411752,-0.052743259817362],[-0.042875938117504,-0.075555235147476,0.026249099522829],[-0.050432980060577,-0.14277143776417,0.010272641666234]],[[0.057417783886194,0.019295351579785,0.031405560672283],[0.060137253254652,-0.003641321323812,-0.025120934471488],[0.054600782692432,-0.021159870550036,0.017689825966954]],[[-0.029658734798431,-0.015285005792975,0.016254369169474],[-0.051210079342127,-0.058278553187847,-0.0036385564599186],[-0.036677215248346,0.032169990241528,-0.011120757088065]],[[-0.049052722752094,-0.027570586651564,-0.0005049059400335],[0.028488539159298,0.011930800974369,0.0098134307190776],[0.03280445560813,0.0372712649405,-0.0051238839514554]],[[-0.047490026801825,-0.010370036587119,-0.029623813927174],[-0.057778839021921,-0.0065336395055056,-0.050560291856527],[-0.065284609794617,-0.067454636096954,-0.012060136534274]],[[-0.0058427532203496,0.1406784504652,0.12761907279491],[-0.023294335231185,0.041099317371845,-0.037848830223083],[0.09287516772747,0.045194443315268,0.026897646486759]],[[0.020027158781886,0.0028478719759732,0.013474046252668],[0.02950325794518,0.013173142448068,-0.015202464535832],[0.020554479211569,0.041326995939016,0.022455288097262]],[[-0.055409140884876,-0.00030161533504725,-0.057756200432777],[-0.042558431625366,0.0020818391349167,0.012026341632009],[-0.044494763016701,-0.021894153207541,0.034903544932604]],[[-0.012695838697255,-0.026726249605417,0.012741782702506],[0.038939286023378,-0.031579796224833,0.038599453866482],[0.0081508476287127,-0.0087299244478345,0.041241101920605]],[[-0.039789162576199,-0.031320687383413,0.0034073586575687],[0.045238714665174,0.060203243046999,0.022031016647816],[-0.0035656071268022,0.031881671398878,0.039692245423794]],[[-0.010044034570456,0.0088850120082498,0.054094556719065],[-0.047773193567991,0.027308730408549,-0.011075816117227],[-0.031766694039106,-0.04544897004962,0.012429466471076]],[[-0.047180321067572,0.052813310176134,-0.013544498942792],[-0.029072556644678,0.015170719474554,0.053688578307629],[0.037190262228251,-0.041365176439285,0.025183420628309]],[[0.01805954426527,0.0020331230480224,-0.010998232290149],[0.010955733247101,-0.04988282173872,0.0053742076270282],[-0.008187672123313,0.028259353712201,-0.026549935340881]],[[0.039769511669874,0.011620352976024,-0.025181738659739],[-0.010053428821266,-0.0036081513389945,0.0047744768671691],[-0.029852822422981,0.019581954926252,-0.023956129327416]],[[-0.024084186181426,0.00061745493439957,-0.028530878946185],[-0.014220047742128,-0.056951321661472,0.017355289310217],[-0.029545061290264,0.034634355455637,-0.0057319030165672]],[[-0.060788940638304,0.0071105030365288,-0.035192720592022],[-0.011361362412572,0.034955989569426,0.028611596673727],[0.019236406311393,0.0086445221677423,0.041597925126553]]],[[[-0.04597757384181,-0.0038906116969883,0.012013643048704],[-0.046740807592869,-0.10575135797262,0.039109010249376],[0.040452141314745,0.042143143713474,0.017084894701838]],[[-0.05956131964922,-0.046499088406563,0.015741173177958],[-0.00047938970965333,0.019128557294607,0.030728548765182],[-0.057712286710739,-0.02502279728651,-0.069629609584808]],[[0.018773596733809,-0.01005840767175,-0.036880034953356],[-0.022826699540019,-0.048342145979404,-0.0057717813178897],[0.040178012102842,0.0083707803860307,0.040335822850466]],[[0.073429398238659,0.0065324236638844,0.068184971809387],[0.00042481312993914,0.028313810005784,0.083166241645813],[-0.0050809886306524,-0.062163598835468,0.13906189799309]],[[-0.074444867670536,0.049803148955107,-0.029643505811691],[0.023738520219922,-0.0022482303902507,0.10798677802086],[0.049444392323494,0.067051485180855,-0.016837710514665]],[[-0.052073653787374,-0.044066365808249,0.03722558170557],[0.061744604259729,0.036046087741852,-7.1736489189789e-05],[-0.0088709304109216,-0.023962924256921,0.0051307752728462]],[[0.034070018678904,0.02177301608026,0.032476838678122],[0.037247829139233,0.034377187490463,0.034834291785955],[0.047486241906881,0.068229764699936,-0.003134801518172]],[[0.032622486352921,0.012827917002141,0.011391516774893],[0.027931464836001,0.027730068191886,-0.039227589964867],[-0.055458731949329,-0.14578826725483,-0.031765505671501]],[[0.0032276210840791,0.019758224487305,0.0090472986921668],[0.0033371224999428,0.0034978315234184,-0.068824902176857],[-0.042592763900757,-0.034487519413233,0.057737160474062]],[[-0.040297988802195,0.013320503756404,-0.064200460910797],[0.0085482252761722,0.023189954459667,-0.035727761685848],[-0.042923286557198,0.014987629838288,0.042264383286238]],[[-0.040854837745428,0.02919495664537,-0.012678067199886],[0.05523893237114,-0.034782238304615,0.017729539424181],[-0.053109534084797,0.019611425697803,0.023364692926407]],[[0.035391669720411,0.013810376636684,0.0317238047719],[-0.0085252998396754,0.037257898598909,-0.048488531261683],[0.0043169842101634,-0.031470406800508,0.016634780913591]],[[0.02920007519424,0.037053368985653,0.13239715993404],[-0.016720522195101,0.061956021934748,-0.072291851043701],[0.027352808043361,0.018942618742585,0.0081784054636955]],[[0.064048431813717,0.037248857319355,0.023946275934577],[0.010565776377916,-0.029105596244335,0.05931094288826],[-0.022374346852303,0.045970369130373,0.026275578886271]],[[0.026333713904023,-0.0099200727418065,-0.058780264109373],[0.020814122632146,0.024113837629557,0.065269574522972],[0.050088051706553,-0.012665802612901,0.040442258119583]],[[0.049477219581604,-0.015003086067736,-0.068825349211693],[-0.024220459163189,0.0014388794079423,-0.036581266671419],[0.067178659141064,-0.012694950215518,0.014240848831832]],[[0.0026514399796724,0.11247150599957,0.06172126531601],[0.084727488458157,0.1592827886343,0.063820920884609],[0.16579262912273,0.14321781694889,0.10160025954247]],[[0.034550733864307,-0.0014054817147553,0.019734527915716],[0.037107400596142,0.06308588385582,0.001352553954348],[0.082351922988892,0.11760305613279,-0.05841838568449]],[[-0.043096709996462,0.014280072413385,-0.10289491713047],[0.011328788474202,-0.0002197816647822,-0.022173020988703],[-0.12297957390547,-0.0050571160390973,-0.0020790919661522]],[[0.0067734327167273,-0.03139441460371,-0.0007335472619161],[0.039673671126366,0.097679182887077,-0.081161767244339],[0.00017398878117092,0.021406285464764,0.064127437770367]],[[0.13509938120842,0.081718601286411,0.045854706317186],[0.11252816021442,0.052479632198811,0.068379081785679],[0.08011020720005,0.1262838691473,0.089813962578773]],[[0.08347986638546,0.017626482993364,0.021483711898327],[0.043797247111797,-0.03911816701293,-0.038903675973415],[0.081241548061371,0.012144424952567,-0.062125317752361]],[[-0.029189519584179,-0.015491299331188,0.039756264537573],[0.011471220292151,0.076961755752563,-0.047107744961977],[-0.038149010390043,0.055531479418278,-0.032873462885618]],[[-0.00043515535071492,-0.00085538125131279,-0.036459032446146],[-0.057010166347027,0.010591708123684,0.048404227942228],[0.0067485277540982,0.013119084760547,-0.018396086990833]],[[0.06333763897419,0.061712238937616,0.063858836889267],[-0.0019214794738218,-0.02820504643023,0.054982800036669],[-0.0010019153123721,0.021770933642983,0.041469603776932]],[[0.063305221498013,-0.020506400614977,0.036380615085363],[0.042149133980274,0.011607836000621,0.0021442025899887],[0.019211985170841,-0.040271606296301,0.03522128239274]],[[-0.059032320976257,-0.017317717894912,0.040176283568144],[0.11972729861736,0.062436424195766,0.023665769025683],[0.047199632972479,0.13129250705242,0.083548180758953]],[[-0.010901181958616,-0.0033415681682527,-0.053937897086143],[-0.0033258597832173,-0.080729953944683,0.086026892066002],[0.06501179933548,0.090945944190025,0.086132481694221]],[[-0.0025482126511633,0.018278667703271,0.037186395376921],[-0.078939937055111,-0.01168220397085,0.032411590218544],[-0.0089406743645668,-0.016413105651736,-0.042268339544535]],[[-0.0089278621599078,0.0053991824388504,-0.0079201022163033],[-0.029992839321494,-0.0055333473719656,-0.0051244213245809],[-0.029171759262681,-0.034675687551498,-0.072711519896984]],[[0.025344410911202,0.036656573414803,-0.066211491823196],[-0.025553178042173,-0.017159456387162,-0.040023043751717],[0.029198119416833,0.048322051763535,-0.030949510633945]],[[-0.024567555636168,-0.026515109464526,-0.11787942796946],[-0.021574854850769,-0.041317135095596,-0.10559993982315],[0.065098762512207,0.01957380771637,-0.080340482294559]],[[-0.021812692284584,-0.051880944520235,0.033327806740999],[0.06767837703228,0.057022992521524,0.0047133327461779],[-0.11077357083559,-0.076207846403122,0.015483003109694]],[[0.078757435083389,0.034763164818287,0.050129842013121],[-0.037133440375328,0.066194154322147,0.056256476789713],[-0.037311751395464,0.036056157201529,0.14173552393913]],[[0.069771535694599,0.033277310431004,0.090569883584976],[0.023720726370811,0.017759000882506,-0.0040477272123098],[-0.12907946109772,-0.026330580934882,-0.060683473944664]],[[-0.028429483994842,-0.031439978629351,0.0098096048459411],[-0.14067274332047,0.037772007286549,0.038174219429493],[-0.012790949083865,-0.036289505660534,-0.019898720085621]],[[0.015621482394636,0.058792896568775,0.001027716207318],[0.048503112047911,-0.015591070055962,-0.057921539992094],[0.028365984559059,0.055632777512074,0.052878715097904]],[[0.0006081490428187,-0.0074646063148975,-0.034531258046627],[0.059689950197935,-0.061673268675804,-0.063856795430183],[-0.079667650163174,-0.041838802397251,-0.044601909816265]],[[0.053754858672619,-0.035826329141855,-0.028759442269802],[-0.048526357859373,0.047223474830389,-0.038100894540548],[0.00023311328550335,0.017037533223629,0.070658951997757]],[[-0.050411440432072,-0.048764146864414,-0.003101256210357],[0.028107775375247,-0.049012389034033,0.0050823469646275],[-0.031807143241167,-0.021204832941294,0.0077615496702492]],[[-0.013305232860148,0.12823995947838,0.042152300477028],[-0.041093461215496,0.022491609677672,0.067945100367069],[0.015641996636987,-0.00086166331311688,0.044799763709307]],[[0.0094317691400647,0.035891357809305,0.088604778051376],[-0.034621246159077,-0.042452190071344,0.11430183798075],[0.010883878916502,-0.0056963576935232,0.041367344558239]],[[0.027745448052883,0.016641162335873,-0.0054781008511782],[0.079067997634411,0.018923474475741,-0.0075429012067616],[-0.013131997548044,0.014140784740448,0.040730111300945]],[[0.047601986676455,0.080847531557083,0.07218100130558],[0.027579130604863,-0.012981116771698,-0.0032728507649153],[-0.014932886697352,0.01042471639812,0.0074131679721177]],[[-0.0097760511562228,-0.038866575807333,-0.076066464185715],[0.094169221818447,-0.02069547958672,-0.0019704115111381],[-0.020732088014483,0.06512812525034,0.018464524298906]],[[-0.011281912215054,-0.011100932955742,0.057033363729715],[-0.027057137340307,0.021137855947018,-0.063362322747707],[0.01056822668761,-0.020269541069865,0.0014851222513244]],[[-0.048821091651917,-0.043749410659075,0.052811067551374],[-0.041406005620956,-6.9893547333777e-05,0.032483514398336],[-0.0078144045546651,-0.046078540384769,-0.051277060061693]],[[-0.046814188361168,0.056381985545158,-0.019575214013457],[0.027183400467038,-0.040816001594067,-0.05266236141324],[-0.047909028828144,0.10103193670511,0.022672981023788]],[[0.075842186808586,-0.037424944341183,0.012722349725664],[0.00086202513193712,0.028923636302352,-0.010792881250381],[-0.034807126969099,0.014930807985365,0.017541073262691]],[[-0.052415102720261,0.013208310119808,0.018975332379341],[-0.056403368711472,0.051743309944868,0.11262286454439],[0.036706678569317,-0.014638442546129,0.087947100400925]],[[0.020701142027974,-0.021047402173281,0.024037215858698],[-0.055005766451359,-0.073829032480717,-0.028280016034842],[0.023143623024225,0.041482713073492,-0.034361213445663]],[[-0.01923044770956,0.044167514890432,0.08770502358675],[0.015253047458827,0.10523277521133,0.012803934514523],[-0.030377363786101,-0.032077934592962,-0.010003169067204]],[[0.069365777075291,-0.016751447692513,-0.045173656195402],[0.062639452517033,-0.013136117719114,-0.041263174265623],[-0.036760427057743,-0.045062277466059,0.021274762228131]],[[0.031116586178541,0.13440158963203,0.089283041656017],[0.025080902501941,0.086984559893608,0.089074797928333],[0.013957914896309,-0.059249836951494,0.014028634876013]],[[-0.027639051899314,0.005382567178458,0.051783058792353],[0.014092220924795,-0.053037978708744,0.049294769763947],[0.012371872551739,-0.029925661161542,-0.010352276265621]],[[-0.0092878248542547,-0.015971627086401,-0.02177800051868],[-0.02240570448339,-0.10048113018274,0.016751747578382],[0.018095165491104,-0.02216923981905,0.0020813378505409]],[[0.0027558412402868,0.046700295060873,0.079532526433468],[-0.0049965283833444,0.0070348172448575,0.049545831978321],[0.039858505129814,0.10595458745956,0.049627188593149]],[[0.0047844354994595,-0.053189791738987,-0.046781469136477],[0.0091685745865107,-0.046993527561426,-0.015189433470368],[0.024207673966885,-0.020273167639971,-0.055733043700457]],[[-0.019666625186801,0.15100029110909,0.018841408193111],[-0.0026130015030503,0.21918900310993,0.064744226634502],[-0.03059059381485,-0.030708830803633,0.021356254816055]],[[0.075918734073639,-0.0029016758780926,0.024423709139228],[0.054734028875828,-0.078080222010612,-0.021342981606722],[0.036608994007111,0.014455949887633,0.024311792105436]],[[0.051278222352266,0.055021524429321,-0.022261936217546],[0.023931453004479,0.048568744212389,0.018277758732438],[-0.025795379653573,0.0073096472769976,-0.010919196531177]],[[-0.0069461236707866,-0.031270891427994,0.024256812408566],[-0.030776375904679,-0.042718674987555,-0.048108499497175],[0.010376507416368,0.049940805882215,-0.0011908932356164]],[[0.080640725791454,0.0064005870372057,-0.0049913474358618],[0.013191328383982,0.018476683646441,-0.006464222446084],[0.014993157237768,0.06074832752347,0.10460138320923]],[[-0.021539913490415,-0.037160955369473,0.057671327143908],[0.042250748723745,0.045374404639006,-0.018296472728252],[0.062223058193922,-0.045533701777458,0.029269123449922]]],[[[0.18388019502163,-0.11696034669876,0.018595857545733],[-0.14050610363483,0.0011965999146923,-0.046282358467579],[0.061809495091438,0.021687485277653,0.19219273328781]],[[-0.03416270762682,0.052652817219496,0.026406204327941],[-0.062235474586487,0.016399946063757,-0.009799805469811],[-0.010998599231243,0.034024376422167,0.075488619506359]],[[0.051504753530025,-0.013774087652564,-0.006318342871964],[-0.001231157919392,0.035307981073856,-0.060478508472443],[0.0028038769960403,-0.069979898631573,0.036759361624718]],[[-0.017047511413693,-0.068150550127029,0.053359944373369],[-0.0017195247346535,-0.025700513273478,-0.019761299714446],[0.032637625932693,-0.079490587115288,-0.089339956641197]],[[0.024476867169142,-0.047908268868923,0.0053628040477633],[-0.043505147099495,0.060334257781506,-0.024497617036104],[0.069036342203617,0.031476639211178,-0.066599555313587]],[[0.05253043025732,0.034648343920708,0.12160517275333],[-0.037924155592918,0.094814300537109,0.014802929013968],[-0.012984280474484,-0.037030592560768,-0.15040303766727]],[[-0.033555049449205,-0.0027398820966482,-0.028052467852831],[0.093641042709351,-0.097196079790592,-0.05067415162921],[-0.018473690375686,0.0080613745376468,0.013227164745331]],[[-0.025053657591343,-0.059827163815498,-0.012861710041761],[-0.11382631212473,-0.083322264254093,0.017872514203191],[-0.03141114115715,-0.046481233090162,0.045088537037373]],[[0.078694239258766,-0.09294018894434,0.014329617843032],[-0.036969043314457,0.015061541460454,0.021062467247248],[0.002753822831437,0.048471607267857,-0.077206246554852]],[[-0.067981444299221,-0.018928095698357,-0.13788928091526],[-0.0062976107001305,-0.072511233389378,0.075802430510521],[-0.040987968444824,0.011996068060398,0.047298483550549]],[[-0.12465232610703,-0.053965166211128,0.06181263551116],[-0.13314437866211,0.023468608036637,0.00021661001665052],[-0.002594546880573,-0.081131607294083,0.0087951738387346]],[[0.04483238235116,-0.00056193518685177,-0.05285906419158],[-0.037462275475264,-0.085256233811378,-0.024615814909339],[-0.070278868079185,0.0076540638692677,-0.015697440132499]],[[0.027782524004579,-0.041288420557976,-0.055875346064568],[-0.032879635691643,-0.044101364910603,-0.07692976295948],[-0.083750866353512,-0.12774628400803,-0.076264016330242]],[[0.0019867192022502,-0.054028615355492,0.11537554860115],[0.034350700676441,0.009253004565835,0.10641678422689],[-0.052108522504568,0.066662192344666,-0.016766773536801]],[[0.021149210631847,-0.00045254963333718,-0.029389610514045],[0.041363421827555,-0.010515519417822,-0.05731725692749],[0.13495850563049,0.073793418705463,0.11603759974241]],[[-0.042729087173939,0.016778213903308,0.047318808734417],[-0.0405000038445,0.028332445770502,-0.063031196594238],[0.042501393705606,0.01041226182133,0.082146808505058]],[[0.062378160655499,-0.0013149485457689,0.024008985608816],[-0.070289760828018,-0.028528926894069,-0.11315792053938],[0.020623728632927,-0.0047774878330529,-0.012660022825003]],[[-0.021057315170765,0.0084573095664382,-0.020433260127902],[0.027644896879792,-0.029978424310684,0.021912068128586],[-0.044776178896427,0.059942737221718,0.061110764741898]],[[-0.028790704905987,-0.017448665574193,-0.045747101306915],[-0.036373879760504,-0.071882501244545,0.0052584512159228],[-0.0025020106695592,-0.0055652414448559,0.081692956387997]],[[0.033682461827993,-0.024748098105192,-0.03251026943326],[0.11137702316046,-0.014464233070612,0.0093715405091643],[-0.049090687185526,0.0034665009006858,0.012016608379781]],[[0.083409547805786,-0.02201995626092,-0.058741319924593],[-0.052001122385263,-0.00928935687989,-0.042920753359795],[0.01337425597012,-0.081531062722206,-0.031974390149117]],[[-0.0082781715318561,0.040589291602373,0.053573351353407],[0.017011515796185,0.070374146103859,-0.040524549782276],[-0.020999604836106,0.012219531461596,-0.020887373015285]],[[-0.091812990605831,-0.085235759615898,-0.0344950966537],[0.0057779937051237,0.060175102204084,0.025381423532963],[0.047733571380377,0.057715363800526,0.0069467364810407]],[[-0.17427642643452,0.018591972067952,-0.019305281341076],[0.0360715277493,-0.066219337284565,0.049541518092155],[-0.037684686481953,-0.069654047489166,-0.00097981875296682]],[[0.060704417526722,0.056815642863512,0.062170032411814],[0.079427920281887,-0.014950190670788,-0.0095157967880368],[-0.023666936904192,0.0051881712861359,-0.12776136398315]],[[-0.064886771142483,-0.016030386090279,-0.009101876989007],[0.066381834447384,0.0060846298001707,-0.070959247648716],[-0.014175380580127,-0.043139792978764,-0.02180489897728]],[[-0.0040877405554056,0.044479791074991,0.019125638529658],[0.087938740849495,-0.0016727773472667,-0.043135829269886],[-0.048913899809122,0.0036318197380751,0.053854554891586]],[[-0.1341540813446,-0.061053838580847,-0.091024413704872],[-0.025314414873719,-0.052477199584246,-0.045944850891829],[0.0057170051150024,-0.11453503370285,-0.082478627562523]],[[0.021829394623637,-0.022253725677729,-0.014926298521459],[-0.034086406230927,-0.04760755226016,-0.12226594239473],[-0.15418499708176,-0.046958062797785,-0.040260765701532]],[[0.073302768170834,0.075896762311459,-0.037878751754761],[0.04531679674983,0.028321877121925,0.0045551476068795],[-0.031169917434454,-0.034506011754274,-0.039986435323954]],[[-0.13691303133965,0.015664044767618,-0.066950716078281],[0.082218915224075,0.040614690631628,-0.057483933866024],[0.078173242509365,-0.0020421126391739,-0.047301445156336]],[[-0.029830621555448,-0.035845890641212,0.040911141782999],[-0.025180846452713,0.047136161476374,-0.0018696906045079],[0.0094783054664731,0.039137493818998,0.026765154674649]],[[-0.041294388473034,-0.065068371593952,-0.030589869245887],[-0.026735058054328,0.069520078599453,-0.086048364639282],[0.011473635211587,0.04404229670763,-0.021475736051798]],[[-0.02529614046216,0.029662057757378,-0.0076002804562449],[-0.0149767100811,-0.027668820694089,-0.054008543491364],[-0.08242666721344,-0.10683269798756,0.024238064885139]],[[-0.049300696700811,0.061110287904739,0.053986500948668],[0.079313315451145,-0.0054370034486055,-0.12113908678293],[0.033306691795588,0.015759343281388,0.061066824942827]],[[0.082109071314335,0.063299641013145,0.049782030284405],[-0.071945309638977,-0.018985789269209,-0.10909290611744],[-0.08319927752018,-0.039695501327515,-0.033808775246143]],[[0.079655922949314,0.07305096834898,-0.082092352211475],[-0.0089197345077991,-0.043094128370285,-0.089860118925571],[0.043064653873444,-0.0607082657516,-0.08414152264595]],[[0.036378879100084,0.036642555147409,-0.024496687576175],[0.067835837602615,0.014938354492188,-0.038912322372198],[-0.00058049178915098,0.059148564934731,0.05729378759861]],[[-0.0096505144611001,0.00730193965137,0.026934381574392],[-0.063145115971565,-0.083335213363171,-0.027897894382477],[0.03619609773159,0.05397367849946,-0.044319026172161]],[[-0.0076710325665772,0.023321308195591,0.012818363495171],[-0.063763849437237,-0.018783966079354,-0.015519694425166],[0.031428389251232,0.091034546494484,-0.099456518888474]],[[-0.029626211151481,-0.027227940037847,-0.0028776221442968],[-0.035237099975348,0.0043124202638865,-0.05707785114646],[-0.0014218795113266,0.022773636505008,0.077862918376923]],[[-0.084552451968193,-0.081181168556213,-0.051115937530994],[-0.018925778567791,0.038092881441116,0.12695406377316],[0.01188919134438,0.076253034174442,0.033340558409691]],[[-0.059679411351681,-0.017229350283742,-0.035317860543728],[-0.043285012245178,-0.0060769533738494,-0.0022944181691855],[0.051880333572626,0.079658634960651,0.11478161066771]],[[0.0092724962159991,0.00098241504747421,0.063657015562057],[-0.017855430021882,-0.047199163585901,-0.044909317046404],[-0.010387010872364,0.0011838240316138,-0.1348684579134]],[[0.044312801212072,-0.015186624601483,0.047333709895611],[0.022387214004993,0.0019639700185508,0.048236198723316],[0.024275677278638,0.056434731930494,0.019930044189095]],[[-0.053613528609276,0.0021696763578802,0.021653899922967],[-0.047688454389572,0.049759469926357,-0.02953396178782],[0.054939478635788,0.063542440533638,-0.017833914607763]],[[0.042818371206522,0.081685245037079,-0.085114248096943],[-0.087311290204525,-0.088420182466507,0.0055192331783473],[0.0060415659099817,0.028521426022053,0.041005186736584]],[[-0.013841854408383,0.013677918352187,-0.049381326884031],[0.029846722260118,0.067697644233704,-0.0037418690044433],[-0.050382230430841,0.07723405957222,0.01338554546237]],[[-0.027021355926991,-0.0048168818466365,-0.0061107813380659],[-0.079710572957993,0.00040075648576021,-0.064386315643787],[-0.045025259256363,0.05033091083169,-0.044259738177061]],[[-0.12807634472847,-0.031345065683126,-0.063515678048134],[0.0010720923310146,-0.020068867132068,-0.07485531270504],[0.032197486609221,0.049510542303324,0.097611054778099]],[[0.040607359260321,0.019046934321523,-0.044572476297617],[0.0047585661523044,-0.1123046875,-0.0065987328998744],[0.012087768875062,-0.01533886231482,0.0043954406864941]],[[-0.031654018908739,0.051853030920029,0.028463147580624],[0.021249374374747,0.099758647382259,-0.041470423340797],[-0.041757501661777,-0.082587242126465,-0.091590210795403]],[[0.084573648869991,-0.050328653305769,0.035555627197027],[0.054506033658981,-0.0077229011803865,-0.048049814999104],[0.051755715161562,0.036771550774574,0.080250106751919]],[[0.048094540834427,0.051990948617458,0.15486347675323],[0.179478764534,0.078006349503994,0.21063081920147],[-0.019959546625614,-0.068902187049389,-0.026079108938575]],[[-0.034246943891048,-0.057243641465902,0.011946056038141],[0.051407124847174,-0.044464461505413,-0.02867803350091],[0.020927987992764,-0.070963725447655,0.003493390744552]],[[0.0583266466856,-0.046436756849289,0.017417719587684],[-0.0071819215081632,0.030297225341201,0.020456075668335],[0.011820358224213,-0.02960916236043,-0.045152705162764]],[[-0.11261866986752,-0.11849801242352,-0.14427214860916],[-0.030011700466275,-0.019937111064792,-0.034445218741894],[-0.1041971296072,-0.11275987327099,-0.044157207012177]],[[0.029376028105617,0.018164537847042,-0.045702565461397],[-0.071532316505909,-0.060245733708143,-0.14426122605801],[-0.038978703320026,-0.028081800788641,-0.15906667709351]],[[-0.040229447185993,-0.027393808588386,0.051423460245132],[0.04300856590271,0.01251273881644,0.052342984825373],[0.048970945179462,0.058400105684996,-0.057736542075872]],[[0.079895704984665,0.036922551691532,0.02624549344182],[0.023338217288256,0.0054376823827624,0.0130107505247],[-0.031445153057575,-0.077288992702961,0.008522380143404]],[[-0.045200183987617,-0.022526394575834,0.003860485041514],[0.015504159033298,0.1035328283906,-0.096382595598698],[0.07070604711771,-0.046173617243767,-0.054456785321236]],[[0.03962280228734,0.05099593475461,0.017920447513461],[-0.039859607815742,-0.026543399319053,-0.0041083409450948],[-0.092907525599003,0.036859076470137,-0.0077318823896348]],[[-0.016601879149675,0.047996129840612,-0.086761638522148],[-0.033994659781456,-0.022006746381521,0.060610886663198],[0.0032942981924862,-0.034979518502951,0.023724019527435]],[[-0.010516577400267,0.0031217925716192,-0.029836423695087],[-0.048629619181156,-0.01321202609688,-0.002249289304018],[0.02020594291389,-0.043381005525589,-0.011768805794418]]],[[[-0.026786003261805,0.074884057044983,-0.0065505607053638],[0.025179026648402,-0.023997796699405,-0.03839098662138],[-0.056118328124285,0.010467090643942,-0.026223853230476]],[[0.010929115116596,-0.015493208542466,-0.066455036401749],[0.0080248033627868,-0.050029400736094,0.0012502180179581],[-0.06914684176445,0.028420366346836,-0.011909883469343]],[[0.0050119133666158,0.03883658349514,-0.019216202199459],[0.0024520941078663,-0.064375020563602,0.05208757519722],[0.037879720330238,-0.0075547462329268,0.012870061211288]],[[-0.017401203513145,0.025799322873354,0.0097772339358926],[-0.034197021275759,-0.041974369436502,0.074689045548439],[0.081942237913609,0.018267706036568,0.02352967299521]],[[0.043869767338037,-0.035826683044434,-0.041257414966822],[-0.050851054489613,-0.026865715160966,0.028485218062997],[0.060218404978514,-0.0015112665714696,0.035884588956833]],[[0.067687273025513,0.031388774514198,-0.00039648471283726],[-0.13460272550583,0.06365293264389,-0.0529830083251],[-0.11715377122164,0.014415415935218,0.059289023280144]],[[-0.050204992294312,0.057411693036556,-0.060625027865171],[-0.047894187271595,-0.024816362187266,0.00038269127253443],[-0.0024095452390611,0.00088571908418089,-0.024291405454278]],[[0.00063268205849454,0.054906044155359,-0.11132607609034],[-0.099269717931747,0.042104918509722,0.030105542391539],[0.070491410791874,-0.0031878028530627,0.040671247988939]],[[0.0073202983476222,-0.024166285991669,-0.031999066472054],[0.03427205234766,0.02871492318809,0.063419103622437],[0.0072655263356864,0.019143503159285,-0.036414068192244]],[[0.029607748612761,0.0254594553262,-0.028147615492344],[-0.037583112716675,0.045842513442039,0.0063396585173905],[0.0025715650990605,-0.055106367915869,-0.020059276372194]],[[0.01780485920608,0.0077121206559241,0.022172641009092],[-0.063568651676178,0.072016395628452,-0.042626567184925],[0.0032125366851687,0.050579912960529,0.023639434948564]],[[0.0067160036414862,-0.013920875266194,-0.010942194610834],[-0.04356437921524,-0.021307097747922,-0.020136907696724],[0.013080511242151,-0.0074056684970856,0.031402841210365]],[[0.010725225321949,0.0011539687402546,-0.031356785446405],[-0.036980453878641,-0.046666350215673,0.015253687277436],[-0.018637044355273,0.0034187512937933,-0.035297565162182]],[[-0.024780105799437,0.087045304477215,0.10068076848984],[-0.020421016961336,0.030908146873116,0.005071965046227],[0.055186122655869,0.068365633487701,-0.034681588411331]],[[0.0095815546810627,0.02900755032897,0.083000965416431],[-0.067798234522343,-0.030634388327599,0.046654898673296],[-0.044382721185684,-0.067851312458515,0.061227414757013]],[[0.034944213926792,-0.0016760407015681,-0.029850900173187],[0.049615480005741,-0.05134566500783,-0.0095798587426543],[0.062127191573381,-0.054570499807596,0.012858592905104]],[[-0.027494104579091,-0.057370856404305,-0.082603618502617],[0.029283314943314,0.071589656174183,0.09067077934742],[0.022191546857357,-0.049429763108492,0.025003017857671]],[[0.016510827466846,0.066322915256023,-0.10550253838301],[-0.016551092267036,-0.0062091103754938,-0.0010581521783024],[-0.0044267596676946,-5.9843943745364e-05,0.028507683426142]],[[0.0033176145516336,-0.011123202741146,-0.017751457169652],[-0.024699246510863,0.079402253031731,-0.007835378870368],[-0.068326659500599,-0.037630226463079,-0.023180739954114]],[[-0.081517808139324,-0.077490858733654,-0.083090290427208],[-0.0092652710154653,-0.025318527594209,-0.025180116295815],[-0.017557248473167,0.0095431581139565,0.052591107785702]],[[-0.031395632773638,-0.021887695416808,-0.019933946430683],[-0.075362287461758,-0.067534953355789,-0.055584840476513],[-0.1076262742281,0.033000141382217,-0.07901855558157]],[[0.035662684589624,-0.033489055931568,0.060132086277008],[-0.0045553031377494,0.009864330291748,-0.046559266746044],[0.0025784817989916,0.001336136017926,-0.0024978211149573]],[[-0.00084285042248666,0.050078611820936,-0.048380631953478],[0.033648371696472,0.069897510111332,-0.0080538364127278],[4.7659494157415e-05,-0.055845335125923,-0.017272885888815]],[[0.040138337761164,-0.042691562324762,-0.030527262017131],[-0.012603879906237,0.042250331491232,-0.044512148946524],[0.027502106502652,0.01749824732542,0.024237655103207]],[[-0.045041590929031,0.04847264662385,-0.10505025088787],[-0.05506344512105,0.055704087018967,-0.059614971280098],[-0.0392573364079,-0.0063730194233358,-0.025100089609623]],[[-0.058788299560547,0.036359906196594,-0.013262870721519],[0.004536859691143,0.10311898589134,-0.085106290876865],[-0.064592413604259,-0.028528861701488,0.0025493477005512]],[[0.020121723413467,-0.14343677461147,0.094307564198971],[-0.07097439467907,-0.059317708015442,-0.05376061797142],[-0.055340487509966,-0.074349693953991,0.016189642250538]],[[-0.072406947612762,-0.00051507871830836,0.02529720403254],[0.021550208330154,0.035730578005314,-0.03404938057065],[-0.041773278266191,-0.0078542781993747,-0.016487691551447]],[[0.083109803497791,0.028756184503436,-0.010516193695366],[-0.087606638669968,0.0089495768770576,0.02018017321825],[-0.015788221731782,-0.067563638091087,-0.027632895857096]],[[-0.020505748689175,-0.095636136829853,0.0390365421772],[-0.01383379753679,0.053337819874287,0.013313798233867],[-0.12980800867081,-0.045218124985695,0.016004232689738]],[[-0.037715915590525,0.016738340258598,0.046368487179279],[-0.0023464758414775,-0.0019826490897685,-0.0023046291898936],[-0.027359703555703,-0.052778456360102,0.026376869529486]],[[0.012184620834887,-0.049799133092165,-0.023503202944994],[0.033549945801497,-0.037090189754963,-0.012624836526811],[0.043003339320421,0.0082484493032098,0.030794803053141]],[[0.028541680425406,-0.025447778403759,-0.09267944842577],[0.081632278859615,-0.01656374707818,-0.050105854868889],[0.077060654759407,-0.014137661084533,-0.037469185888767]],[[-0.003439937485382,-0.085870295763016,-0.018011840060353],[0.014522065408528,-0.017505779862404,0.0033164422493428],[-0.061728294938803,-0.027235513553023,0.034977417439222]],[[-0.021856071427464,-0.036264639347792,0.012283159419894],[-0.025153154507279,-0.038956876844168,-0.052479844540358],[-0.029481781646609,-0.023859672248363,0.033378999680281]],[[-0.05778231471777,0.038324359804392,0.017007246613503],[-0.15679498016834,-0.1025663241744,0.041940107941628],[-0.075312398374081,-0.019525429233909,-0.048221096396446]],[[0.024492556229234,0.00066652748500928,-0.084161855280399],[-0.052520632743835,-0.090027928352356,0.020454756915569],[-0.023563742637634,-0.049615245312452,0.0042663807980716]],[[0.00067373871570453,-0.06212130934,0.031456775963306],[0.0080926083028316,-0.020147504284978,-0.062599986791611],[0.036454547196627,0.049193259328604,-0.02456315048039]],[[-0.10757246613503,0.014478892087936,-0.0097037237137556],[0.055181242525578,0.018857268616557,0.049703538417816],[-0.13458356261253,-0.016235405579209,-0.02845611795783]],[[-0.036146089434624,-0.049236886203289,0.040343336760998],[0.036841109395027,-0.00026153889484704,-0.029467303305864],[0.031405173242092,0.012803100980818,-0.0030657204333693]],[[-0.055968645960093,-0.050092279911041,-0.060998167842627],[-0.036127578467131,-0.024869345128536,0.11859676241875],[0.0032383508514613,0.021005008369684,0.10824167728424]],[[-0.02323087118566,-0.035364501178265,0.029930036514997],[0.040846068412066,-0.013143889605999,-0.0055475062690675],[-0.011932721361518,-0.071149855852127,-0.025326712056994]],[[-0.042051363736391,0.0199825912714,0.0051211705431342],[-0.057179726660252,0.019271854311228,0.10798734426498],[-0.0056459070183337,-0.014270247891545,0.0062328008934855]],[[-0.010149531066418,-0.042626410722733,-0.014241019263864],[0.011442246846855,-0.010739832185209,0.024278953671455],[-0.039812311530113,0.056048840284348,0.050143204629421]],[[0.056309018284082,-0.014093458652496,-0.0074340174905956],[-0.061129033565521,0.065498016774654,-0.094971694052219],[-0.14803558588028,0.034381542354822,0.00821128860116]],[[-0.0058986111544073,0.0074589331634343,-0.032198779284954],[-0.030576296150684,-0.017132734879851,0.072514995932579],[0.056898646056652,-0.0098528973758221,0.0044392375275493]],[[-0.028545871376991,-0.0098211281001568,0.059522274881601],[-0.020566575229168,0.059919331222773,-0.0091403303667903],[0.018708571791649,0.016856774687767,0.039165493100882]],[[0.049155566841364,0.037304021418095,0.014007405377924],[-0.0060630044899881,0.025933306664228,0.017733264714479],[-0.016125587746501,-0.080861166119576,0.021026000380516]],[[-0.0015770413447171,-0.047327119857073,-0.059312589466572],[0.011513532139361,0.03774743899703,-0.043564930558205],[-0.008365124464035,-0.01673842407763,0.0094901034608483]],[[0.050151694566011,-0.052323516458273,-0.0098004080355167],[-0.050576694309711,0.017935106530786,-0.046693168580532],[0.031513020396233,0.05857902765274,-0.020434807986021]],[[-0.044506419450045,0.037454083561897,0.0021270720753819],[-0.0042040571570396,-0.04911794885993,-0.07790669798851],[-0.036624196916819,0.056201662868261,0.010786773636937]],[[-0.07893730700016,-0.016812391579151,-0.061549421399832],[0.033064786344767,0.0088379783555865,0.048323310911655],[0.058924447745085,-0.0050563178956509,-0.022130070254207]],[[0.016838347539306,-0.0017885873094201,-0.053984977304935],[-0.020935023203492,-0.045701470226049,-0.053923595696688],[-0.029370475560427,0.026271723210812,0.010361397638917]],[[0.028129409998655,0.049223817884922,0.033190689980984],[0.14001938700676,0.080811575055122,0.051694247871637],[0.0013734254753217,-0.014377620071173,0.053940396755934]],[[0.021943539381027,0.073096290230751,-0.068349160254002],[-0.04122955724597,-0.019884550943971,-0.0085460180416703],[0.058917105197906,0.007056696806103,0.015310649760067]],[[-0.01523972582072,-0.066493675112724,-0.049912963062525],[0.0083733582869172,-0.031078919768333,0.0018874702509493],[-0.0040557808242738,-0.012597958557308,0.083849862217903]],[[0.01344798412174,-0.095685660839081,0.0027762679383159],[-0.015861986204982,0.022046899423003,0.066398210823536],[-0.042095083743334,0.02424362488091,0.0078177973628044]],[[-0.010373642668128,-0.032249391078949,0.018485311418772],[-0.031633503735065,-0.015141754411161,0.026847530156374],[-0.0078333811834455,-0.029236560687423,0.078145176172256]],[[-0.048898421227932,-0.015571030788124,0.035343945026398],[-0.0207663718611,0.0010329361539334,0.027708949521184],[-0.03542111068964,0.038499258458614,0.037639919668436]],[[0.03329024091363,-0.012268922291696,0.010060130618513],[-0.02941401861608,-0.07151385396719,0.043350420892239],[0.016690226271749,0.081552922725677,0.010974502190948]],[[-0.041515816003084,-0.059872847050428,-0.059335917234421],[0.014685656875372,-0.026370430365205,-0.0390719845891],[0.052970517426729,0.055348698049784,0.0083443783223629]],[[0.00812067091465,-0.034071117639542,-0.031656671315432],[0.0019925297237933,-0.00024526490597054,0.01180793531239],[0.0059949196875095,-0.017033712938428,-0.07481674849987]],[[-0.010160225443542,-0.055087573826313,0.022038800641894],[-0.015219789929688,-0.054118856787682,-0.052917465567589],[-0.007161614485085,0.053717464208603,-0.017156170681119]],[[-0.001130725373514,-0.017041789367795,-0.015970431268215],[0.00039354598266073,-0.04794891923666,0.033355787396431],[-0.045229975134134,0.0051486906595528,0.10164967179298]]],[[[0.042517732828856,0.043186236172915,-0.025150392204523],[-0.057574968785048,-0.043934922665358,-0.011742131784558],[0.095739871263504,0.02784968726337,-0.00032573094358668]],[[-0.050719350576401,0.037513583898544,0.025397954508662],[0.032214984297752,-0.026088576763868,-0.064240716397762],[-0.018628345802426,-0.01548620313406,0.0095418868586421]],[[0.017033107578754,-0.0091313254088163,0.069290868937969],[-0.030602622777224,-0.045347135514021,-0.040251947939396],[0.0047104223631322,0.04901710152626,0.014171457849443]],[[0.014289780519903,-0.028247835114598,-0.017666812986135],[-0.0066159893758595,0.01092723198235,-0.087729223072529],[0.037134487181902,0.0058663683012128,0.037616364657879]],[[0.071725435554981,0.0033436992671341,-0.073343716561794],[-0.13038264214993,-0.025476582348347,0.038682274520397],[0.058939442038536,0.025371572002769,0.03365046530962]],[[0.015136126428843,0.10899948328733,0.14074620604515],[-0.0076447739265859,-0.099619790911674,0.21963205933571],[-0.062700048089027,-0.18853484094143,0.042583677917719]],[[0.058731403201818,0.035713352262974,0.032192677259445],[0.014328283257782,-0.033280935138464,0.023087035864592],[0.0049542021006346,-0.044196087867022,-0.033262487500906]],[[-0.081785745918751,-0.010726984590292,0.0069099366664886],[-0.098146423697472,0.030273305252194,-0.045332677662373],[-0.0020673382095993,0.048644967377186,0.14401844143867]],[[0.035056252032518,0.024245886132121,-0.021445268765092],[-0.024889796972275,-0.095740459859371,0.046436876058578],[-0.033637307584286,0.07117272913456,-0.037575174123049]],[[-0.025441952049732,0.022057078778744,0.0049214684404433],[-0.051012720912695,0.054681289941072,-0.067328065633774],[0.059998799115419,0.025960160419345,-0.019461022689939]],[[0.09122796356678,-0.058960676193237,-0.029305938631296],[0.030966252088547,-0.00994888599962,0.082192838191986],[0.035881500691175,0.058428566902876,-0.013263559900224]],[[-0.042370647192001,-0.029809977859259,-0.055990573018789],[-0.035343714058399,0.079203940927982,0.061694856733084],[0.0047957305796444,-0.025000082328916,-0.0094739161431789]],[[-0.016841791570187,-0.036820206791162,-0.0022532364819199],[-0.045339364558458,-0.061196818947792,-0.04309356585145],[-0.0093535454943776,0.043166935443878,-0.046781737357378]],[[0.035822473466396,0.026945119723678,0.043206054717302],[-0.041408978402615,0.10965091735125,0.064191579818726],[0.13134190440178,-0.0027850137557834,-0.057736489921808]],[[-0.0034407456405461,-0.06760960817337,0.10947702080011],[0.068581715226173,-0.11051480472088,-0.050049480050802],[0.00028211131575517,0.046257711946964,-0.062240060418844]],[[0.028709022328258,0.037759948521852,0.033614158630371],[0.0047338246367872,-0.039091378450394,0.0033017178066075],[0.031050987541676,0.01932917535305,0.023858023807406]],[[-0.090780153870583,-0.00015480167348869,0.0081747397780418],[-0.040642183274031,-0.014326078817248,0.010913703590631],[-0.0013575400225818,0.013535403646529,-0.067688584327698]],[[-0.016312576830387,0.017273455858231,-0.045844033360481],[-0.065467439591885,-0.031778734177351,-0.0025785977486521],[0.0018007392063737,-0.020507622510195,0.0076184142380953]],[[-0.022048072889447,0.024828299880028,0.012679941952229],[-0.025987109169364,0.017170595005155,-0.061971306800842],[-0.013693076558411,-0.0045833503827453,0.074197456240654]],[[-0.046689849346876,-0.015961458906531,-0.029737072065473],[-0.0036691315472126,0.0040282560512424,-0.020707191899419],[-0.0075145093724132,-0.019832031801343,-0.020066823810339]],[[-0.053196307271719,-0.037071827799082,0.011828196235001],[0.082410663366318,-0.0011321908095852,-0.060952141880989],[-0.00074476969894022,0.033814020454884,0.033675726503134]],[[-0.013068715110421,0.00055681291269138,-0.034371145069599],[0.017468446865678,0.056663129478693,0.029687665402889],[-0.051613632589579,-0.041201904416084,-0.045702394098043]],[[-0.010633907280862,0.031514953821898,-0.042527988553047],[0.029447900131345,0.017595231533051,0.019855037331581],[-0.012923108413815,-0.0016003431519493,-0.055011633783579]],[[-0.0049274391494691,0.050868470221758,0.035058256238699],[-0.011557024903595,-0.017282444983721,-0.004678706638515],[-0.0074216015636921,0.036045391112566,0.065409183502197]],[[0.0046072825789452,-0.0083243418484926,0.040409207344055],[0.061993807554245,-0.039946459233761,0.049229376018047],[-0.031300064176321,0.01412255037576,0.03277600184083]],[[0.047827087342739,-0.036142818629742,-0.051611755043268],[-0.035992775112391,0.030321650207043,0.00067993742413819],[-0.052568323910236,0.02775046415627,0.017493629828095]],[[-0.066262498497963,-0.036040633916855,-0.023075424134731],[-0.019205214455724,-0.044429767876863,0.055648237466812],[0.0096915904432535,-0.056384742259979,-0.057675998657942]],[[-0.051392275840044,-0.046484667807817,0.022681165486574],[-0.082619614899158,0.026589410379529,-0.024281492456794],[0.069378159940243,-0.061983812600374,0.080395519733429]],[[0.049748782068491,-0.00093655497767031,-0.0018643526127562],[-0.059225335717201,0.043591890484095,-0.049253303557634],[-0.088180385529995,0.053134094923735,0.064645104110241]],[[0.042582139372826,-0.039622481912374,-0.038110960274935],[-0.026717545464635,-0.016419816762209,-0.0015942013124004],[-0.0049775070510805,-0.0032767821103334,-0.016497604548931]],[[-0.007431773468852,0.020865004509687,-0.0033593915868551],[-0.057144165039062,0.015133541077375,-0.024458583444357],[0.02732877805829,-0.086735747754574,-0.058133833110332]],[[-0.027114907279611,-0.055947192013264,-0.0065311067737639],[-0.10814315825701,-0.014454949647188,0.00049973599379882],[-0.028660899028182,0.021837877109647,-0.019878637045622]],[[0.043247383087873,-0.02480548620224,-0.084712408483028],[0.037877269089222,0.039959970861673,0.043576445430517],[0.0044650631025434,-0.064633503556252,-0.021745689213276]],[[0.030495284125209,-0.011441073380411,0.0052057132124901],[-0.0301523655653,-0.010793388821185,-0.039472956210375],[0.016545686870813,0.026758285239339,0.042341899126768]],[[-0.05929484218359,0.042159512639046,0.013443483039737],[0.053928643465042,-0.012132643721998,0.036918193101883],[-0.016674654558301,0.039612371474504,-0.079431526362896]],[[0.01804705709219,0.061750389635563,0.0073397089727223],[0.0086714578792453,-0.072117887437344,0.068065516650677],[-0.027751663699746,-0.058405373245478,0.017844870686531]],[[-0.029184751212597,-0.07352053374052,-0.034961480647326],[0.057751912623644,0.069088578224182,-0.021126193925738],[-0.079441845417023,0.014232514426112,-0.035382393747568]],[[0.053833264857531,-0.028540980070829,0.070998385548592],[-0.024080710485578,0.0052414513193071,-0.090282574295998],[-0.02480255253613,-0.067833349108696,0.057357549667358]],[[0.051275584846735,0.016649471595883,0.0061404299922287],[0.041919961571693,-0.11921082437038,-0.055084872990847],[-0.013863268308342,-0.050523545593023,-0.079730965197086]],[[-0.038035828620195,0.0033558011054993,0.047948442399502],[0.024726686999202,-0.063555240631104,-0.038614589720964],[-0.022371381521225,-0.068338178098202,0.031039822846651]],[[-0.090874761343002,-0.016211058944464,0.051027286797762],[-0.01321810297668,0.0014166051987559,-0.012079307809472],[-0.0020878638606519,-0.0011670193634927,0.016127560287714]],[[0.09088846296072,0.060509715229273,-0.090916842222214],[0.0086789401248097,0.0065275118686259,0.023737845942378],[-0.037904508411884,0.043723024427891,0.039143335074186]],[[0.011243866756558,0.0024966679047793,-0.081206783652306],[0.040431041270494,0.028080459684134,-0.012613721191883],[0.05307998880744,-0.018430031836033,0.045505732297897]],[[0.049636706709862,-0.01285286527127,-0.049871832132339],[-0.014515991322696,-0.12456806004047,-0.019643353298306],[-0.0086639253422618,0.077366665005684,-0.029497440904379]],[[-0.029720874503255,0.073871858417988,0.046421393752098],[0.0059803230687976,0.018114032223821,-0.0049642161466181],[0.00194149708841,-0.040179707109928,0.058347895741463]],[[0.058598652482033,0.033490959554911,-0.038817118853331],[-0.053394686430693,0.005082085262984,0.0086040031164885],[-0.022172773256898,0.04206084087491,-0.052282989025116]],[[-0.013872379437089,0.0097686713561416,0.0031615030020475],[0.013628992252052,-0.023714605718851,0.073695957660675],[-0.0024367170408368,0.010231984779239,-0.038080811500549]],[[0.030932791531086,0.015141810290515,0.032787200063467],[0.020974215120077,-0.025537062436342,0.012620743364096],[0.01982837356627,0.049849331378937,0.092392385005951]],[[0.035178750753403,0.023581365123391,0.038917671889067],[-0.0779924467206,-0.058213472366333,-0.022976171225309],[-0.082360088825226,-0.044281553477049,-0.010321099311113]],[[-0.050530523061752,0.022534549236298,-0.016941756010056],[0.028771469369531,0.005087910220027,-0.049224279820919],[-0.10352136939764,0.013290485367179,-0.029586561024189]],[[-0.014892465434968,0.038235552608967,0.015091782435775],[0.034689977765083,-0.013559282757342,0.013177422806621],[0.0042721233330667,0.0022997993510216,-0.018120050430298]],[[-0.041851814836264,-0.046678557991982,0.0056798034347594],[-0.038358133286238,-0.032004121690989,-0.11915899068117],[-0.0096207121387124,0.075251236557961,-0.069569699466228]],[[-0.04880503937602,-0.013107905164361,0.010890556499362],[-0.033639226108789,-0.017311476171017,-0.094934977591038],[-0.0082125775516033,0.0207390319556,-0.044908352196217]],[[0.10558019578457,0.018369214609265,0.016320055350661],[0.093943051993847,0.12647986412048,0.07590714097023],[0.077618174254894,0.057042758911848,0.086799331009388]],[[-0.053503632545471,0.031650885939598,0.003114300314337],[0.017325840890408,0.060830350965261,-0.015905102714896],[-0.012261372059584,-0.055203143507242,-0.024427806958556]],[[-0.0027019558474422,-0.0074213854968548,-0.071658901870251],[-0.054052788764238,-0.01117496099323,-0.051979698240757],[0.01396085228771,-0.015700777992606,-0.00057350716087967]],[[0.011551443487406,0.027024753391743,-0.0011082426644862],[0.025689927861094,-0.029904274269938,-0.10264164209366],[-0.041949924081564,-0.002019670791924,-0.0082239583134651]],[[-0.0078171864151955,0.019603421911597,0.07188817858696],[-0.0045904102735221,-0.057587951421738,0.048238843679428],[-0.030214935541153,0.049633406102657,0.055611152201891]],[[0.065533086657524,-0.015519513748586,0.037871167063713],[0.093042649328709,0.0008241402101703,0.030900737270713],[0.071914188563824,-0.035585269331932,-0.046929635107517]],[[0.024125788360834,0.050589498132467,-0.0066298106685281],[-0.026160281151533,-0.040609937161207,0.0072478801012039],[0.041811231523752,-0.032938595861197,0.030659429728985]],[[0.061571639031172,-0.025621900334954,-0.094468258321285],[0.044976767152548,-0.052852392196655,0.0028706446755677],[-0.0098847560584545,-0.053521130234003,0.01293424796313]],[[-0.04202688857913,0.053140856325626,-0.048491187393665],[0.092367209494114,-0.072338476777077,-0.094484649598598],[-0.031168159097433,0.012741786427796,-0.00061971339164302]],[[0.028271518647671,0.017161441966891,0.00069276982685551],[0.034221075475216,-0.0476662106812,-0.018401829525828],[-0.12226490676403,-0.0081442296504974,0.016861880198121]],[[-0.030453562736511,-0.044848948717117,0.091562867164612],[0.04375471919775,-0.03460468351841,0.0027908007614315],[-0.079116098582745,0.040758688002825,0.047688014805317]]],[[[0.020093718543649,0.14877831935883,-0.013925269246101],[0.1403541713953,-0.0078312754631042,-0.010915099643171],[-0.24525780975819,0.068308785557747,-0.02740871347487]],[[-0.19756019115448,0.11584801226854,-0.062666520476341],[0.13065671920776,-0.086640320718288,0.051654495298862],[-0.19444219768047,0.056351818144321,-0.05676956474781]],[[-0.13569414615631,0.035609312355518,-0.14048820734024],[-0.16281208395958,0.024300772696733,-0.0041142129339278],[0.01596911996603,-0.11753390729427,-0.16876891255379]],[[-0.13717480003834,-0.058942258358002,-0.025278691202402],[0.16664791107178,0.010656581260264,-0.07682678103447],[0.020658994093537,0.16505225002766,-0.095430441200733]],[[0.17206636071205,-0.12985932826996,-0.094634875655174],[-0.11650139093399,0.082349322736263,0.034432373940945],[0.05691422149539,-0.21562939882278,-0.036388728767633]],[[-0.10026898235083,-0.014024362899363,-0.062514424324036],[-0.0093735251575708,-0.043375391513109,-0.045062474906445],[-0.0042260494083166,-0.029343212023377,-0.042987298220396]],[[-0.10957984626293,-0.05220877379179,0.016872588545084],[-0.083246380090714,-0.019322525709867,-0.037835497409105],[-0.0046491092070937,-0.051624815911055,-0.023417545482516]],[[-0.0068931980058551,-0.022722855210304,0.099663347005844],[0.0010078105842695,0.026111764833331,-0.094094760715961],[0.035339597612619,0.0038803543429822,-0.0078485552221537]],[[0.0028902862686664,-0.020408906042576,0.042063768953085],[0.096907906234264,0.026097524911165,-0.062540598213673],[-0.0096804136410356,0.10423464328051,-0.10139981657267]],[[-0.046902351081371,-0.12139712274075,0.15207763016224],[0.080766096711159,0.07727088779211,-0.13804663717747],[-0.0418691188097,-0.061240971088409,-0.044217221438885]],[[0.05648485198617,-0.027984337881207,-0.063884407281876],[-0.12086570262909,-0.0013722757576033,-0.064831636846066],[0.11376521736383,-0.035736374557018,0.038970794528723]],[[0.15172147750854,-0.26616078615189,0.067580878734589],[-0.20245389640331,0.16936013102531,-0.24959035217762],[-0.041941300034523,-0.14458432793617,0.1065277531743]],[[-0.039290189743042,0.053771048784256,-0.075214236974716],[0.056821748614311,-0.055695276707411,-0.011998983100057],[-0.10993513464928,0.15893165767193,-0.072474241256714]],[[0.09583891928196,0.024440910667181,0.024674708023667],[0.05220390483737,0.034663651138544,0.15879657864571],[-0.072704620659351,0.13276802003384,-0.094807960093021]],[[-0.070314951241016,-0.023709384724498,-0.070082671940327],[-0.11334615945816,0.035455405712128,0.029585802927613],[0.17548435926437,-0.032347481697798,0.11656914651394]],[[0.2012722492218,-0.021039253100753,-0.0088914828374982],[-0.11002347618341,0.0023733032867312,0.0050973389297724],[0.0098456153646111,0.10602892190218,-0.12028110772371]],[[-0.00094617839204147,-0.099050790071487,-0.023136595264077],[-0.015730110928416,-0.12568025290966,-0.10414646565914],[-0.070399180054665,-0.062657944858074,-0.15717148780823]],[[0.040439359843731,-0.10573373734951,0.011327535845339],[-0.066865615546703,-0.043446410447359,-0.0952487885952],[-0.013364031910896,-0.047900926321745,-0.078580565750599]],[[-0.282525151968,0.090893484652042,-0.28107893466949],[0.05551053583622,-0.13215653598309,0.11124938726425],[-0.2856627702713,0.10293633490801,-0.23459529876709]],[[-0.12071488052607,0.045653972774744,0.0020865618716925],[0.059670120477676,-0.023843005299568,0.0059967408888042],[0.0018059471622109,-0.040669325739145,-0.018098773434758]],[[-0.16322509944439,-0.10989445447922,0.34363043308258],[0.067362725734711,-0.036960512399673,-0.056545924395323],[-0.072637222707272,0.21280145645142,-0.25563275814056]],[[0.1611185669899,-0.19677487015724,0.056338094174862],[-0.13034690916538,0.040398068726063,-0.0096700247377157],[0.043229956179857,0.039122637361288,-0.10240250080824]],[[0.043425183743238,-0.070169553160667,0.042851373553276],[-0.0096535701304674,0.070197001099586,-0.015595933422446],[0.0019300697604194,-0.046311981976032,-0.020069152116776]],[[-0.15636467933655,0.16729915142059,-0.25647494196892],[0.091299340128899,-0.11109664291143,0.14719603955746],[-0.12902227044106,0.10805337131023,-0.1507525742054]],[[0.11760437488556,-0.13000422716141,0.28324875235558],[0.031209310516715,0.029822802171111,-0.01809742115438],[-0.0089055197313428,-0.068733498454094,-0.00041857030009851]],[[-0.041807066649199,-0.151521936059,0.12558542191982],[-0.034970331937075,0.035276338458061,-0.075141489505768],[0.079730056226254,-0.06170691549778,0.036312106996775]],[[-0.131008207798,-0.01754592359066,-0.0989905372262],[0.03696483746171,-0.0034767652396113,0.12118393927813],[0.078904896974564,0.0069185774773359,-0.11116753518581]],[[-0.10354734957218,0.026912780478597,0.065776370465755],[0.03634462878108,0.036372568458319,-0.016405588015914],[-0.075738355517387,0.0083622988313437,0.23445057868958]],[[-0.096892274916172,0.034255843609571,0.061528645455837],[0.066740371286869,0.014420344494283,-0.12178107351065],[-0.090419620275497,-0.024520190432668,0.078338071703911]],[[-0.10094675421715,0.042731340974569,-0.035566620528698],[0.14132905006409,0.011222739703953,-0.042818106710911],[-0.087260082364082,-0.032720983028412,0.051566276699305]],[[-0.05582582205534,-0.19422625005245,-0.01603321544826],[-0.21834602952003,0.1633345335722,-0.075758822262287],[0.070702724158764,-0.13978762924671,0.0049736010842025]],[[0.026433462277055,-0.11596421897411,0.12183832377195],[-0.029033107683063,0.040577691048384,-0.01282110158354],[-0.070120044052601,0.047966364771128,0.017494026571512]],[[0.087789855897427,0.040005445480347,-0.055223550647497],[-0.17037542164326,0.057491686195135,-0.021409712731838],[0.077416814863682,-0.19065235555172,0.04769042879343]],[[-0.015190280042589,-0.018406139686704,-0.071350023150444],[-0.072715304791927,-0.00065909448312595,0.036405615508556],[0.092409677803516,-0.18621021509171,-0.078007906675339]],[[-0.23633283376694,0.14815185964108,-0.18462260067463],[0.15803149342537,-0.18952007591724,0.15277926623821],[-0.30547741055489,0.11694772541523,-0.18624264001846]],[[-0.019800549373031,0.036129023879766,-0.044130511581898],[0.016212269663811,-0.051278218626976,0.062117822468281],[-0.10247426480055,-0.072042785584927,0.038115449249744]],[[-0.023939283564687,-0.12649610638618,0.19625025987625],[-0.028254590928555,-0.0039614136330783,-0.1479640007019],[0.12014442682266,-0.056369479745626,-0.05019037052989]],[[-0.10865008831024,-0.10056173801422,0.034599110484123],[0.13184666633606,-0.11689763516188,0.018120847642422],[-0.21377816796303,0.14509524405003,-0.091295331716537]],[[-0.18541516363621,0.14748740196228,-0.076350785791874],[0.066448263823986,-0.075205840170383,-0.009616294875741],[-0.074929378926754,0.023129103705287,0.062782548367977]],[[0.016204476356506,-0.15739278495312,-0.016059754416347],[-0.14591488242149,0.094447694718838,-0.073163107037544],[0.15509356558323,-0.17404519021511,0.12141544371843]],[[0.017770478501916,-0.15955013036728,-0.12860083580017],[0.13814316689968,-0.15142565965652,-0.22384890913963],[-0.22647172212601,0.079833701252937,-0.044083785265684]],[[-0.020015310496092,-0.060689363628626,0.089346766471863],[0.17144151031971,-0.10518351197243,-0.14944341778755],[0.011993645690382,0.045500684529543,0.077484227716923]],[[-0.013061888515949,0.10521361231804,-0.10985071212053],[-0.016160976141691,-0.083855360746384,0.061247281730175],[0.033999212086201,0.070148877799511,-0.073615275323391]],[[-0.082817383110523,-0.051058791577816,0.034692224115133],[0.11484166234732,0.035954285413027,-0.09566942602396],[-0.0498086810112,0.075529016554356,0.0062994007021189]],[[0.10778744518757,0.056323751807213,-0.14238655567169],[-0.017667982727289,-0.040733806788921,0.093098141252995],[-0.035768188536167,-0.029596561565995,-0.00087101035751402]],[[-0.059359405189753,0.041074123233557,0.099743500351906],[0.10095775872469,-0.14734190702438,0.10355465114117],[-0.05783386528492,-0.016149610280991,-0.091931276023388]],[[-0.010466360487044,-0.063636057078838,0.041253212839365],[0.03103887476027,-0.080337047576904,0.055693723261356],[-0.067191459238529,0.11725446581841,-0.17734213173389]],[[0.040024500340223,-0.039800308644772,-0.045531775802374],[-0.02648301422596,0.032142020761967,-0.04310480505228],[0.046651221811771,-0.038044977933168,0.047382496297359]],[[-0.11943139135838,-0.0034376780968159,-0.080848224461079],[0.067437015473843,-0.029678449034691,0.10348600894213],[-0.029779151082039,0.1431288421154,-0.074131652712822]],[[0.045535944402218,0.02028532512486,-0.0079465340822935],[0.072048537433147,-0.016891252249479,-0.10326603055],[-0.12452565133572,0.10451513528824,0.025585724040866]],[[-0.047651994973421,0.081885434687138,-0.030250879004598],[0.062249828130007,-0.015939578413963,0.052844475954771],[-0.069166302680969,0.025357734411955,-0.021293010562658]],[[0.069544531404972,-0.03697856515646,-0.015083198435605],[0.025178572162986,0.037831291556358,-0.062541268765926],[0.079476974904537,-0.053486067801714,0.10469178110361]],[[-0.060773152858019,0.0064141401089728,-0.035839166492224],[-0.062664672732353,-0.084529832005501,0.03607589378953],[-0.098598271608353,0.11109931021929,-0.1657696813345]],[[0.066686697304249,-0.025843108072877,0.48637068271637],[0.042195290327072,0.20531241595745,0.033187583088875],[-0.035483345389366,0.10330343991518,0.008022821508348]],[[-0.00092198717175052,-0.050012309104204,0.013938817195594],[-0.023425713181496,-0.020411813631654,0.0111537380144],[0.020472651347518,-0.020310681313276,0.1226569712162]],[[0.12345322966576,-0.20309345424175,0.077273271977901],[-0.16342952847481,0.14672875404358,-0.14673686027527],[0.07784678041935,-0.11167978495359,0.039272107183933]],[[-0.086333446204662,-0.0610033236444,-0.14530958235264],[-0.11918889731169,-0.044397428631783,-0.074284121394157],[-0.0098455408588052,-0.094127811491489,-0.04895007237792]],[[-0.024240599945188,0.037470139563084,-0.060282006859779],[-0.044361133128405,-0.1124651953578,0.046607479453087],[-0.0032469069119543,-0.025290498510003,0.019174207001925]],[[0.0060266461223364,-0.18691001832485,0.14108026027679],[-0.094093896448612,-0.080709770321846,-0.075892217457294],[-0.17677435278893,0.021901074796915,0.074549704790115]],[[-0.025224121287465,0.026308720931411,0.013589425012469],[0.012537647038698,0.0084815118461847,0.027138674631715],[0.0066917976364493,0.0092865247279406,0.015097835101187]],[[0.1238172724843,-0.070129662752151,0.086142621934414],[-0.1062591150403,0.029298568144441,-0.083478584885597],[0.11428370326757,-0.071294851601124,0.089380368590355]],[[0.20274133980274,-0.13042455911636,0.066994525492191],[-0.12580969929695,-0.0026210797950625,-0.11345905065536],[0.0036024751607329,-0.086091160774231,-0.0085816038772464]],[[-0.12296330183744,-0.091867245733738,-0.090898744761944],[0.073307409882545,-0.20001962780952,0.14278472959995],[-0.081010900437832,0.23395155370235,-0.26600995659828]],[[-0.11670969426632,-0.13292242586613,0.058972809463739],[0.079044967889786,-0.084831744432449,0.018508655950427],[0.11351595818996,0.070892199873924,-0.13873451948166]]],[[[0.024426950141788,0.0030829664319754,-0.1325950473547],[-0.10284654051065,-0.034364640712738,0.089354887604713],[-0.036006886512041,0.035732235759497,0.054525665938854]],[[0.0092091476544738,0.060350622981787,0.065859764814377],[0.01245192065835,0.057275503873825,0.032873835414648],[0.045882228761911,0.056014705449343,0.0083870124071836]],[[0.038948640227318,0.047940190881491,-0.03931687772274],[-0.039126068353653,-0.014400166459382,-0.12677489221096],[-0.042398985475302,-0.065293423831463,-0.13093459606171]],[[0.064155861735344,0.074604630470276,0.031334307044744],[0.056275445967913,0.15774726867676,0.096507482230663],[0.068148449063301,-0.01927830837667,0.0006462698802352]],[[0.064009115099907,0.042062792927027,-0.041677638888359],[0.013560350984335,0.087316796183586,-0.11122355610132],[-0.0071791363880038,-0.038951739668846,-0.025764275342226]],[[-0.082208096981049,-0.044970251619816,0.030315173789859],[-0.058116715401411,-0.024149576202035,0.041231382638216],[0.0171800237149,0.059474129229784,-0.013663086108863]],[[-0.076739907264709,0.059612914919853,-0.015183700248599],[0.058264937251806,0.076387099921703,-0.05009551346302],[0.035102657973766,-0.076838597655296,-0.020265115424991]],[[0.017389493063092,-0.062654115259647,-0.036296151578426],[0.013062850572169,-0.074450880289078,0.080382853746414],[0.015503616072237,-0.16464477777481,0.021395055577159]],[[0.057881373912096,-0.08679286390543,0.01949374191463],[-0.0083950292319059,-0.058263193815947,-0.019173447042704],[0.035016410052776,-0.036089651286602,-0.009220196865499]],[[-0.050525944679976,-0.053489446640015,-0.0179722327739],[-0.0060467994771898,-0.05764140188694,-0.018450979143381],[0.054403107613325,0.029328335076571,-0.047428280115128]],[[-0.05723088234663,-0.022485662251711,0.018710067495704],[0.011799317784607,-0.015482652001083,0.034226823598146],[0.021030429750681,0.062133133411407,-0.023476347327232]],[[0.0052797365933657,-0.105672724545,-0.10699044913054],[-0.23124913871288,0.027020815759897,-0.12968909740448],[-0.15539851784706,-0.15332168340683,-0.027060844004154]],[[0.088054813444614,-0.060590770095587,0.0038456092588603],[-0.028224727138877,-0.0012587321689352,0.10104297846556],[-0.03278524428606,0.15422987937927,0.030036929994822]],[[-0.0041414382867515,-0.057008385658264,0.056311633437872],[-0.053947184234858,0.058659870177507,0.10030879080296],[-0.066533960402012,0.20213045179844,0.12157282233238]],[[0.039961952716112,0.023858107626438,-0.047703996300697],[-0.08009871840477,0.02050818875432,-0.010031260550022],[0.017177425324917,0.020044259727001,0.054019343107939]],[[0.021209344267845,-0.018183905631304,-0.022352829575539],[0.033355299383402,-0.075911812484264,0.024584339931607],[0.028583398088813,-0.0088463788852096,-0.023953415453434]],[[0.0027008908800781,-0.028811983764172,-0.024077218025923],[-0.10850425064564,-0.085027262568474,0.061861768364906],[-0.049124263226986,0.0038346864748746,0.027717156335711]],[[-0.24750518798828,-0.090305097401142,-0.073380567133427],[-0.23460248112679,-0.24638298153877,-0.077573895454407],[-0.1183375865221,-0.029810640960932,-0.046130690723658]],[[-0.033158905804157,0.023138266056776,-0.022190688177943],[0.0037568197585642,-0.013167515397072,0.057864751666784],[-0.0075108222663403,-0.0077870758250356,-0.0013896790333092]],[[-0.070188514888287,0.068250067532063,-0.059235956519842],[-0.013563797809184,0.019970670342445,0.0079243639484048],[-0.044807385653257,-0.049973476678133,0.022025149315596]],[[0.10142557322979,0.24187207221985,-0.097890548408031],[-0.10025703907013,-0.098835416138172,0.030506536364555],[-0.0404232442379,-0.039142042398453,0.25440457463264]],[[-0.0015260108048096,0.082899652421474,-0.054722748696804],[-0.063939623534679,0.053519807755947,-0.00029143490246497],[0.031051699072123,-0.072589054703712,0.029664918780327]],[[0.039920553565025,0.0035919055808336,-0.014846137724817],[-0.045237440615892,0.0048686717636883,0.057133801281452],[-0.063909940421581,0.038402933627367,-0.0087482947856188]],[[0.029533622786403,-0.021617788821459,0.026101568713784],[0.0017771979328245,-0.04699569940567,0.025782372802496],[0.037395756691694,-0.12392278015614,-0.10378673672676]],[[0.1054273545742,0.019084928557277,-0.024276604875922],[0.086621031165123,0.088581025600433,-0.12582962214947],[0.013351983390749,-0.010111132636666,0.11632345616817]],[[-0.09188885986805,-0.11545006930828,-0.018821269273758],[-0.11817138642073,-0.095515355467796,-0.22977611422539],[-0.099389255046844,-0.10131458938122,-0.15579687058926]],[[-0.024706073105335,-0.0072766970843077,-0.049370132386684],[-0.088749438524246,-0.039021514356136,-0.042061548680067],[-0.045915871858597,-0.076962374150753,-0.024865552783012]],[[0.19878633320332,0.029229022562504,-0.018304225057364],[0.1342907845974,-0.093705713748932,-0.17711417376995],[0.027707668021321,0.0036652148701251,0.10368715971708]],[[-0.010519029572606,0.039499912410975,-0.042825873941183],[0.039566330611706,0.083300098776817,0.045549776405096],[0.041173487901688,-0.065783560276031,-0.012881436385214]],[[-0.09964632242918,-0.013091924600303,-0.095410957932472],[0.058406263589859,0.05083816125989,-0.070625774562359],[-0.083808958530426,-0.068159326910973,-0.0060881790705025]],[[-0.011686046607792,0.039350137114525,0.030243264511228],[-0.0010329936631024,0.010329811833799,0.008475280366838],[0.039708930999041,0.026446321979165,0.040669534355402]],[[-0.023201674222946,-0.0070453225634992,-0.086097873747349],[-0.11221186071634,0.029502723366022,-0.021657884120941],[-0.07869091629982,0.0070002782158554,-0.087894953787327]],[[0.040023066103458,0.029662562534213,-0.072491690516472],[-0.030300926417112,0.067767128348351,-0.20158568024635],[-0.11348923295736,-0.0033040267881006,-0.062004588544369]],[[-0.036663059145212,0.10029486566782,-0.071607507765293],[0.09828170388937,0.022160643711686,-0.10315003246069],[-0.018952688202262,-0.18035064637661,-0.044478323310614]],[[-0.0301662851125,0.01753268763423,0.12307537347078],[-0.028782090172172,-0.014245988801122,-0.03606266528368],[0.019262643530965,0.0056199408136308,0.016236297786236]],[[-0.011431312188506,-0.029958941042423,0.022803353145719],[-0.02260035276413,-0.15047669410706,-0.025657339021564],[-0.059749461710453,0.041556600481272,-0.055790055543184]],[[0.030763057991862,-0.02192160487175,0.091242097318172],[-0.048073511570692,-0.027160111814737,-0.0021677783224732],[0.0060066785663366,-0.016724729910493,-0.032053574919701]],[[-0.035913214087486,-0.084477119147778,-0.023387538269162],[0.10646885633469,-0.017033118754625,-0.059809669852257],[-0.043887078762054,0.071961894631386,-0.0124243311584]],[[-0.023109689354897,-0.093613088130951,0.089951157569885],[0.022754523903131,0.080078095197678,0.024346698075533],[0.048835635185242,-0.0015204708324745,0.026233915239573]],[[0.0028378607239574,-0.059961631894112,-0.0063678226433694],[-0.0039554256945848,0.019915711134672,-0.10140673816204],[0.027443854138255,0.01325920317322,-0.054536208510399]],[[-0.036519538611174,0.13757547736168,-0.014857615344226],[-0.21072612702847,-0.086269274353981,0.083582550287247],[-0.04012568667531,-0.028921926394105,0.0046415221877396]],[[0.050696305930614,-0.043144837021828,0.00077585258986801],[-0.02312602289021,0.073361739516258,0.0056493016891181],[0.042686451226473,0.025684518739581,0.028283754363656]],[[-0.014539682306349,0.11473471671343,-0.0504468716681],[0.0032115015201271,-0.073663301765919,-0.00038774046697654],[-0.020239818841219,-0.033695958554745,-0.031400747597218]],[[0.021016137674451,0.041443984955549,0.10066449642181],[0.065096579492092,-0.053081937134266,0.078149020671844],[0.045174337923527,0.065930739045143,-0.079189665615559]],[[0.022402556613088,0.018662886694074,-0.018188605085015],[0.042292550206184,-0.027367448434234,0.02872814424336],[0.068214245140553,-0.032554615288973,-0.15945969521999]],[[0.0017400896176696,-0.051971722394228,0.031166570261121],[-0.017882106825709,0.11097231507301,-0.029121734201908],[-0.025256430730224,-0.0098693128675222,-0.058288626372814]],[[0.10402926057577,-0.010423321276903,0.010838992893696],[-0.028623452410102,-0.03261661157012,0.062020469456911],[0.0098884822800756,-0.035400234162807,-0.078909695148468]],[[0.016737470403314,0.008997967466712,-0.048057824373245],[-0.058691069483757,0.046527966856956,-0.022839030250907],[-0.015782436355948,0.094614960253239,0.00052821892313659]],[[-0.036146972328424,-0.17965443432331,-0.066820099949837],[-0.062155820429325,-0.083188280463219,-0.13604201376438],[-0.056376036256552,0.053308546543121,-0.058870516717434]],[[0.0025650502648205,-0.060945983976126,0.089288592338562],[0.06604016572237,-0.072819210588932,-0.032722026109695],[-0.11472618579865,-0.15254843235016,-0.069977417588234]],[[0.08445829898119,0.060565337538719,0.012719405815005],[0.13378356397152,0.0078657418489456,0.023790009319782],[0.10770767182112,0.0031904010102153,0.068953096866608]],[[-0.050834320485592,0.038467157632113,-0.004347512498498],[0.073764652013779,0.071750454604626,0.026062278077006],[0.013164036907256,0.016095397993922,-0.024967247620225]],[[0.061354212462902,0.050049055367708,0.054649606347084],[0.0561746917665,0.062583714723587,0.075262248516083],[-0.034194491803646,0.072832174599171,0.020795276388526]],[[0.010412193834782,0.12069146335125,0.038530759513378],[0.16320723295212,0.10458574444056,0.11028607934713],[0.077604532241821,-0.0062242448329926,0.024129526689649]],[[-0.030645124614239,-0.082473956048489,0.0044669914059341],[-0.071747541427612,0.072505980730057,-0.0016083328519017],[-0.15805126726627,-0.10722786188126,-0.15396459400654]],[[0.037642069160938,-0.027355683967471,0.082529567182064],[0.024664582684636,-0.013855520635843,-0.035038348287344],[0.040302131325006,0.042894002050161,0.025704110041261]],[[-0.0016352364327759,-0.089620724320412,0.0053172567859292],[0.15053573250771,-0.0017072285991162,-0.030366947874427],[0.021801792085171,-0.021803611889482,-0.021658327430487]],[[-0.023198429495096,-0.090003199875355,-0.015212573111057],[-0.090961322188377,-0.092050991952419,-0.15842252969742],[-0.037228256464005,-0.051795460283756,-0.11964099854231]],[[-0.038036651909351,-0.16382829844952,-0.03844653069973],[-0.056596245616674,0.043230351060629,-0.044480469077826],[-0.013198278844357,0.072113811969757,-0.0087763955816627]],[[-0.002304277382791,0.025261098518968,-0.024766597896814],[0.057974629104137,-0.073626436293125,0.020200023427606],[0.032861933112144,0.039121739566326,-9.9507982668001e-05]],[[-0.031341757625341,-0.093094758689404,0.035164933651686],[0.024536170065403,0.04990616068244,-0.06275513023138],[0.0099850548431277,0.069167122244835,0.024590954184532]],[[-0.047640301287174,-0.073953628540039,-0.0033618069719523],[0.015085809864104,0.025275131687522,0.04825883358717],[0.0097627742215991,0.063073933124542,-0.067195951938629]],[[0.079668618738651,-0.029356926679611,-0.021541683003306],[0.064516209065914,0.0006853828090243,0.037087418138981],[-0.018363090232015,-0.064913712441921,0.0051048193126917]],[[-0.10604774951935,-0.094964034855366,0.045792374759912],[-0.042140945792198,0.036546107381582,-0.006885620765388],[-0.041137795895338,0.10989682376385,0.037439096719027]]],[[[-0.093311876058578,0.054843723773956,2.917419624282e-05],[-0.058375049382448,0.031719133257866,-0.029296148568392],[-0.11112689971924,0.056542925536633,-0.030217718333006]],[[-0.012193926610053,0.0082466760650277,0.051756639033556],[-0.0084032416343689,-0.026568667963147,-0.034429997205734],[-0.045146569609642,-0.0074679553508759,-0.024036649614573]],[[-0.0042320350185037,-0.010021596215665,0.06236956641078],[-0.021489206701517,-0.0029908574651927,-0.016648665070534],[-0.11126799881458,-0.061298377811909,0.015644935891032]],[[-0.093394130468369,-0.023542754352093,0.011880896054208],[-0.020488187670708,-0.019745560362935,0.034961074590683],[-0.037843629717827,0.030029335990548,-0.017374157905579]],[[-0.045736461877823,-0.013935058377683,0.0079312492161989],[0.054147131741047,0.041754741221666,0.021674208343029],[0.0051606786437333,0.00083249097224325,0.042572923004627]],[[-0.036897011101246,-0.043382946401834,0.061011835932732],[0.0012833118671551,-0.0153216002509,0.040817968547344],[-0.033357374370098,-0.15864443778992,0.053604707121849]],[[-0.01843230985105,0.0061131659895182,-0.040893811732531],[-0.035482909530401,-0.0096787037327886,0.0051768170669675],[-0.076129123568535,0.035824060440063,-0.081712692975998]],[[-0.015933062881231,-0.089844986796379,-0.022868940606713],[-0.061296876519918,-0.046390611678362,0.021191375330091],[0.0069408458657563,-0.020126022398472,-0.020059425383806]],[[-0.057209827005863,-0.0094049442559481,-0.022994654253125],[0.047155022621155,0.051713887602091,-0.012227742932737],[-0.023459451273084,-0.007474354468286,-0.035194993019104]],[[-0.0020121461711824,0.043198458850384,0.0093913674354553],[0.032298840582371,0.044749177992344,0.038418937474489],[0.033986993134022,-0.019549731165171,0.027015125378966]],[[0.080028124153614,0.049113303422928,0.076463505625725],[0.0050952574238181,-0.07418517768383,-0.012117091566324],[-0.018729357048869,-0.005753327626735,0.097589872777462]],[[0.046751990914345,0.052247662097216,0.015356260351837],[-0.0018528340151533,-0.036249630153179,0.0026929662562907],[0.0069460738450289,0.014291296713054,0.030360972508788]],[[-0.051004745066166,0.0012878268025815,0.091463066637516],[0.066346406936646,0.10282634198666,-0.03829175978899],[0.021035654470325,0.059533398598433,-0.034628223627806]],[[0.073327705264091,-0.037328157573938,0.086178608238697],[0.020444108173251,0.035088811069727,0.045867182314396],[-0.06688928604126,0.018921919167042,0.041015725582838]],[[-0.015821240842342,-0.096839085221291,-0.0051184208132327],[-0.0036690358538181,-0.0072683440521359,0.13054348528385],[0.0079051908105612,0.010958281345665,-0.0012890576617792]],[[0.0032864396926016,-0.021126937121153,-0.037004005163908],[-0.021572532132268,0.044153790920973,0.094157822430134],[-0.016159106045961,-0.064639680087566,0.044940542429686]],[[-0.033020161092281,0.024086687713861,0.079802379012108],[0.041269812732935,-0.014987837523222,-0.036973491311073],[-0.025620168074965,0.02857406437397,-0.0012334793573245]],[[0.0041800565086305,-0.021272895857692,0.051962085068226],[0.02479605935514,-0.0049516619183123,-0.049068242311478],[0.013230255804956,0.035395834594965,-0.061182159930468]],[[-0.062157291918993,0.047120627015829,0.036046665161848],[-0.01195877417922,-0.060045138001442,0.02340498380363],[-0.1145920753479,-0.013264933601022,0.031381718814373]],[[-0.080498777329922,0.014184057712555,0.035625729709864],[0.01877823844552,0.03166938573122,-0.11051101982594],[-0.031107315793633,0.067431874573231,-0.027152314782143]],[[-0.020485335960984,0.023078914731741,-0.038715079426765],[-0.0082516204565763,0.020160987973213,-0.026085657998919],[0.016218291595578,-0.013570662587881,-0.042201500386]],[[-0.0057528517208993,-0.0041742366738617,-0.017035011202097],[-0.078356131911278,0.020207332447171,0.026647858321667],[0.1167481765151,-0.054707802832127,0.04709405824542]],[[-0.020860044285655,0.029321329668164,0.0012893634848297],[0.051902536302805,0.043049480766058,-0.073221378028393],[0.019260985776782,-0.027074348181486,-0.0048075593076646]],[[-0.091514259576797,-0.023157469928265,0.063372641801834],[-0.034810435026884,0.013358946889639,-0.0020494058262557],[-0.021407928317785,-0.027972552925348,0.012489226646721]],[[0.049988202750683,0.027689263224602,-0.077476657927036],[-0.00078983709681779,-0.014571218751371,0.01112799346447],[-0.037562105804682,0.028205184265971,0.041185718029737]],[[0.048953175544739,0.052843298763037,0.086476013064384],[0.16086211800575,-0.011542320251465,-0.0050704595632851],[0.043553080409765,-0.031127022579312,0.082932315766811]],[[0.0015896947588772,-0.044293932616711,-0.016606371849775],[-0.12459609657526,-0.035352539271116,0.070399165153503],[0.039888478815556,-0.018855422735214,-0.02609796077013]],[[-0.039245892316103,-0.0019126130500808,0.016957711428404],[0.13482908904552,0.033860269933939,-0.0031426222994924],[0.099072739481926,0.0082588559016585,-0.0068258647806942]],[[0.0016078896587715,0.091922663152218,0.055660869926214],[-0.032574694603682,0.031750056892633,-0.075431562960148],[-0.038832616060972,0.015351044945419,0.063353031873703]],[[0.088230758905411,0.031768139451742,0.0064218691550195],[0.0081987315788865,0.052106391638517,-0.073139205574989],[-0.01238395832479,-0.044660661369562,0.073216132819653]],[[-0.029859771952033,-0.0036377017386258,0.0093915071338415],[-0.0099852913990617,0.006116172298789,0.067963674664497],[-0.040493700653315,-0.0012530460953712,-0.058706514537334]],[[-0.0067506176419556,0.018935197964311,-0.051690444350243],[0.014872694388032,-0.043455749750137,0.082392148673534],[-0.17820999026299,-0.072911739349365,0.074396520853043]],[[0.032830599695444,-0.058479953557253,-0.056815650314093],[0.041867725551128,0.081433832645416,-0.16193230450153],[0.071621529757977,0.014589229598641,0.042486611753702]],[[-0.043049085885286,0.013763868249953,-0.010718182660639],[-0.0076434025540948,-0.015718491747975,0.001432957360521],[-0.090482696890831,0.087050721049309,0.12453970313072]],[[0.030052460730076,-0.040720868855715,0.061777465045452],[-0.06252696365118,0.036794748157263,0.049126140773296],[0.038463272154331,0.016519682481885,-0.09645377099514]],[[-0.057432536035776,0.0063758445903659,0.040746182203293],[-0.07108710706234,-0.035051375627518,-0.055368330329657],[-0.048043508082628,-0.03541774302721,-0.09556470066309]],[[0.020715679973364,-0.11138977855444,-0.072767078876495],[0.1010622382164,0.0017551407217979,0.025952747091651],[-0.012516329064965,-0.0024117871653289,0.034432016313076]],[[0.11511382460594,-0.04426147788763,-0.077902808785439],[-0.048277359455824,-0.093467742204666,-0.045999705791473],[-0.066417470574379,0.12936307489872,0.075873076915741]],[[-0.0084048062562943,0.038276664912701,0.029625095427036],[0.016232965514064,0.089109361171722,-0.018553536385298],[0.061395924538374,-0.026278290897608,0.045134142041206]],[[-0.037428636103868,-0.00074130319990218,0.050134170800447],[-0.0075401230715215,0.058237534016371,0.069700144231319],[0.051742065697908,-0.0060187466442585,-0.016620211303234]],[[0.0004065302782692,0.021924819797277,-0.04459298402071],[0.048127830028534,-0.016635106876493,-0.088917799293995],[-0.034362129867077,0.074829705059528,0.031793981790543]],[[0.01023971196264,0.012566573917866,0.044455263763666],[-0.06152206286788,0.051540143787861,-0.079178243875504],[0.0030459307599813,0.022277966141701,-0.018853861838579]],[[0.047804947942495,0.04535873234272,0.037187930196524],[0.047972928732634,0.024426298215985,-0.042585149407387],[-0.033050872385502,0.034833937883377,-0.041357453912497]],[[-0.0037379402201623,0.018493987619877,-0.0049149179831147],[-0.0011428374564275,-0.0078622922301292,-0.10916251689196],[-0.01665535569191,0.021305652335286,0.074205718934536]],[[-0.0065019340254366,0.068138942122459,-0.055032674223185],[0.086745642125607,0.0031119317281991,0.046985693275928],[0.056201118975878,0.021719742566347,0.048103787004948]],[[0.0078777763992548,0.048875562846661,0.0022720478009433],[-0.019423112273216,0.067087292671204,-0.019115574657917],[0.038457658141851,-0.025624616071582,-0.043324887752533]],[[0.0018929005600512,-0.035900976508856,0.01176012121141],[0.055429041385651,-0.0042058825492859,-0.0012670534197241],[0.03648666292429,-0.021194351837039,0.036714509129524]],[[-0.056696280837059,0.077689662575722,-0.063450403511524],[0.087249539792538,0.021553538739681,0.038411427289248],[0.026145035400987,0.0025783472228795,0.051928397268057]],[[-0.0093277953565121,0.047363705933094,-0.014816553331912],[0.061257142573595,0.016996413469315,0.086195044219494],[0.099505022168159,0.14703804254532,-0.018828142434359]],[[0.016572261229157,0.1335571706295,-0.0065316059626639],[0.0038119372911751,0.032121177762747,0.0053359693847597],[0.021289691329002,0.068998441100121,0.071723684668541]],[[0.0083029773086309,0.0088803982362151,-0.019805487245321],[-0.043532729148865,0.026176024228334,0.0038903602398932],[-0.0021208610851318,-0.079860769212246,0.012229825370014]],[[-0.0064359083771706,0.022813746705651,-0.014138361439109],[0.068969085812569,0.04053757339716,0.015152279287577],[-0.016009600833058,0.042556740343571,-0.035722464323044]],[[0.021852605044842,-0.041748885065317,-0.0048304959200323],[0.010258074849844,0.032976228743792,-0.046144999563694],[-0.029542988166213,0.020132467150688,0.017773117870092]],[[0.12341676652431,0.034917701035738,0.019984964281321],[-0.0002218095905846,0.066715717315674,-0.018957357853651],[0.020210212096572,-0.024899126961827,0.026572786271572]],[[-0.077063761651516,0.03067322447896,-0.01791593618691],[0.11590547114611,0.081957884132862,-0.0089456140995026],[0.084511741995811,-0.00063790619606152,0.023094294592738]],[[-0.054900769144297,-0.040914446115494,0.10501869767904],[0.056453008204699,0.036328300833702,0.062899820506573],[-0.021985018625855,0.027602441608906,-0.037745822221041]],[[-0.023113358765841,-0.025993999093771,-0.019389497116208],[-0.072046458721161,0.023233944550157,-0.02628386951983],[-0.010423170402646,0.058793786913157,0.0056601720862091]],[[0.0078253960236907,0.0043475236743689,0.0017720103496686],[-0.041297309100628,-0.031344808638096,0.0051710265688598],[-0.010861204005778,0.008901852183044,0.039434138685465]],[[0.01656617410481,-0.006084259133786,0.070893354713917],[0.035240598022938,-0.067105807363987,-0.020124623551965],[0.028375469148159,0.02765560336411,-0.045777782797813]],[[0.0090313265100121,-0.010581446811557,-0.012860142625868],[-0.02604297362268,-0.042943503707647,0.039852984249592],[0.029822204262018,0.018664818257093,0.026998603716493]],[[-0.013751907274127,-0.0089088119566441,-0.058868408203125],[0.045586388558149,0.077140480279922,-0.0015702444361523],[-0.023388348519802,0.047485779970884,0.031618908047676]],[[-0.0056234211660922,-0.00078575097722933,0.059190887957811],[0.0095967082306743,0.089720241725445,-0.084240548312664],[0.021480727940798,0.014904297888279,-0.017184047028422]],[[0.034171838313341,-0.019788218662143,0.031990278512239],[0.047254174947739,0.063662946224213,-0.011451080441475],[0.017318366095424,-0.011835585348308,0.029164699837565]],[[0.050283953547478,-0.077934838831425,0.031822182238102],[0.028800712898374,0.032796837389469,-0.030396660789847],[0.0048198206350207,0.017991583794355,0.014203219674528]]],[[[-0.017448244616389,-0.024102060124278,0.04028582200408],[-0.0022578411735594,-0.02268454618752,0.0046954029239714],[0.025693025439978,-0.0037999134510756,0.078423082828522]],[[0.014996719546616,0.03103775344789,0.0013917676405981],[-0.023276908323169,0.047333754599094,-0.032181825488806],[-0.036064997315407,0.016530929133296,-0.031405050307512]],[[-0.0027601299807429,-0.02384521253407,-0.058777384459972],[-0.012611696496606,0.034485477954149,0.0033085329923779],[0.0075976825319231,-0.048137053847313,-0.001229845569469]],[[0.033107429742813,-0.01420334354043,-0.0099822822958231],[-0.027425423264503,-0.018419094383717,-0.018015468493104],[0.055550742894411,-0.0076191280968487,0.009155323728919]],[[0.0044507440179586,0.033441700041294,0.012549381703138],[0.0015136867295951,-0.047700021415949,-0.014038858003914],[0.063483826816082,0.062327992171049,0.025671305134892]],[[0.077021636068821,-0.042733520269394,-0.060595907270908],[0.098945468664169,-0.12153346091509,0.061619225889444],[0.10211810469627,-0.12079585343599,-0.02385039255023]],[[-0.01854557543993,-0.01854289136827,-0.0029368039686233],[-0.01246827095747,-0.049727033823729,0.021674945950508],[-0.084199078381062,-0.018534550443292,-0.034485470503569]],[[0.050079438835382,0.01268323417753,-0.057550232857466],[0.013242343440652,0.04168589413166,-0.017298813909292],[-0.020524229854345,-0.016733257099986,-0.049697604030371]],[[0.037873089313507,-0.031697064638138,-0.073572404682636],[0.0069372509606183,-0.032017771154642,0.018755078315735],[0.00050495064351708,0.027807701379061,0.054776385426521]],[[-0.031044835224748,0.044497191905975,-0.026770105585456],[0.031135126948357,-0.0051001333631575,-0.012980961240828],[-0.082213655114174,-0.049205981194973,0.015565918758512]],[[0.0023938938975334,-0.028767418116331,0.027195969596505],[0.00022412349062506,-0.035758640617132,-0.016309918835759],[0.038038175553083,0.047542989253998,0.070353105664253]],[[0.017816673964262,-0.037872422486544,-0.026447124779224],[-0.047900717705488,0.00031997618498281,0.017644550651312],[-0.0011058110976592,-0.013955645263195,-0.039576098322868]],[[-0.038046058267355,0.0016715041128919,0.0057662115432322],[0.092364430427551,0.0071643921546638,-0.048174120485783],[0.0078298263251781,0.004318265710026,-0.062907680869102]],[[-0.0089451586827636,-0.019089808687568,0.044269613921642],[-0.015240936540067,0.035237148404121,0.10376632213593],[0.027551636099815,0.0086450185626745,-0.031098026782274]],[[-0.0025950220879167,-0.051900275051594,0.048328924924135],[0.0069689494557679,-0.021876642480493,-0.0081940973177552],[0.040474478155375,0.048133052885532,0.018432794138789]],[[-0.051833610981703,-0.048028871417046,0.017084797844291],[0.012815155088902,-0.036599915474653,0.012667195871472],[0.078817754983902,-0.0048539550043643,-0.040044505149126]],[[0.11883000284433,0.083357490599155,-0.034203976392746],[0.009111812338233,0.025066711008549,-0.015566419810057],[0.029031686484814,-0.057658843696117,-0.056764110922813]],[[-0.014095440506935,0.021338071674109,-0.061893824487925],[0.034604337066412,-0.0028786833863705,-0.013271291740239],[0.022942403331399,-0.020703312009573,0.019012395292521]],[[0.0014920033281669,-0.00085942127043381,-0.0095683392137289],[0.0096532180905342,0.0015377139206976,-0.034166872501373],[0.016467355191708,-0.057254195213318,-0.026520291343331]],[[0.0027830041944981,-0.030452812090516,-0.019989503547549],[0.017606580629945,0.0081317331641912,-0.067382335662842],[-0.028200495988131,-0.00071473338175565,0.06990459561348]],[[0.014718650840223,-0.042948294430971,-0.043870404362679],[0.014967566356063,-0.056859437376261,-0.0079025188460946],[-0.024284908547997,-0.024436602368951,0.023211726918817]],[[-0.062261831015348,-0.0081419656053185,-0.0076213455758989],[0.017353923991323,0.0106241395697,0.0097744334489107],[-0.12928012013435,0.033237800002098,-0.00021883244335186]],[[0.034676816314459,0.020871054381132,-0.078740857541561],[0.03234425932169,0.031090345233679,-0.010147054679692],[-0.051792588084936,0.0057889414019883,0.012339565902948]],[[-0.012176612392068,-0.053296074271202,-0.015468810684979],[-0.037535320967436,0.0018657715991139,-0.043991513550282],[-0.061951842159033,-0.038210988044739,0.0089139509946108]],[[0.019363131374121,0.047869734466076,0.028762498870492],[0.061962567269802,0.073177076876163,-0.029231710359454],[-0.035793166607618,-0.029569156467915,-0.02180833555758]],[[0.043891038745642,-0.0029081145767123,-0.11034876853228],[0.035740651190281,-0.033323332667351,-0.035713911056519],[0.039223715662956,-0.076294548809528,0.022643821313977]],[[-0.039348874241114,-0.038639076054096,0.038374610245228],[-0.0091148009523749,-0.022456582635641,-0.0052641499787569],[-0.013242167420685,-0.046531688421965,-0.0012794889044017]],[[0.044515065848827,0.0082800323143601,-0.024063255637884],[0.033970922231674,-0.026587419211864,-0.0035766360815614],[-0.048416301608086,-0.062317777425051,-0.054534133523703]],[[0.0082272356376052,0.0880062058568,0.036371897906065],[-0.043623942881823,-0.045879520475864,0.06715951114893],[-0.0029337550513446,0.020865730941296,0.093083709478378]],[[-0.050734721124172,0.078274928033352,-0.045847471803427],[0.0033072638325393,0.033167846500874,-0.038266129791737],[0.019857820123434,0.0083804922178388,0.0015873339725658]],[[-0.03947775810957,0.087989017367363,-0.025318827480078],[-0.0039279223419726,0.022345839068294,0.012413646094501],[-0.023406939581037,0.076648719608784,-0.0062305978499353]],[[-0.011078850366175,-0.079380445182323,-0.038893688470125],[-0.0078985933214426,-0.02809876576066,-0.011012367904186],[-0.011364278383553,0.046841587871313,0.0034553336445242]],[[0.012040105648339,0.053200915455818,0.075368590652943],[-0.047203712165356,0.058259468525648,-0.01599863357842],[0.0041194926016033,-0.067611679434776,-0.034745905548334]],[[0.024830166250467,0.019332103431225,0.028035959228873],[-0.01181073859334,0.024286303669214,-0.048049546778202],[-0.0085691455751657,-0.020636081695557,0.048539489507675]],[[0.0092412680387497,0.091558068990707,-0.006659893784672],[0.013635036535561,-0.034989561885595,-0.04893284291029],[-0.025920437648892,-0.018482780084014,0.020039198920131]],[[-0.030500495806336,-0.02088126540184,0.065014980733395],[0.012080441229045,-0.0062877512536943,-0.037209499627352],[-0.062737219035625,-0.067536979913712,-0.087729662656784]],[[-0.046186726540327,0.0037983066868037,-0.075586400926113],[-0.03864224255085,-0.047292847186327,0.011070532724261],[0.00074287567986175,-0.049350887537003,0.030482739210129]],[[0.006272585131228,-0.027737822383642,0.022732092067599],[0.057123433798552,-0.026759354397655,-0.039908424019814],[-0.054922543466091,0.003241544123739,0.057338614016771]],[[-0.065223209559917,-0.00031215345370583,-0.0063179237768054],[0.093546219170094,0.060061801224947,-0.011322459205985],[0.017209691926837,-0.0054548876360059,-0.018425347283483]],[[0.024919144809246,0.022689331322908,-0.016568973660469],[0.0084040835499763,-0.011161698959768,-0.069918341934681],[0.018230399116874,-0.0027031295467168,0.010309125296772]],[[-0.023021334782243,-0.043445128947496,-0.034323379397392],[-0.01701227016747,0.079434305429459,-0.055328760296106],[0.034577831625938,0.055899020284414,-0.0050505977123976]],[[0.011458768509328,-0.023287830874324,-0.11243616789579],[-0.0022400990128517,0.069949835538864,0.047635495662689],[-0.0036099930293858,-0.0090592736378312,-0.02790579199791]],[[-0.038563679903746,0.016706323251128,0.0024707564152777],[0.021047033369541,0.04848574846983,0.09486461430788],[-0.029054790735245,-0.0070506129413843,0.0092118289321661]],[[-0.098161056637764,0.031246490776539,-0.0073418985120952],[-0.055686563253403,-0.050245497375727,-0.0034903730265796],[-0.043978478759527,0.0070032407529652,-0.012233262881637]],[[-0.047282449901104,0.054374277591705,-0.052951447665691],[0.010689103975892,-0.06416018307209,-0.00026951252948493],[0.01418408472091,-0.017720011994243,0.0043975678272545]],[[0.0043057957664132,-0.0091420263051987,-0.063321948051453],[-0.068846665322781,0.014854099601507,-0.026569480076432],[0.028584746643901,0.014365354552865,0.014946446754038]],[[-0.0062329918146133,0.069491237401962,0.075203239917755],[0.021707786247134,0.031155148521066,0.031818028539419],[-0.024451110512018,-0.026514962315559,-0.030082657933235]],[[0.065557695925236,0.015530481934547,-0.019877312704921],[-0.045655187219381,0.020175179466605,0.065395995974541],[-0.040450640022755,0.038428079336882,0.021371932700276]],[[-0.0020018422510475,0.045753642916679,-0.045937366783619],[0.013495719060302,0.013350505381823,-0.029196687042713],[-0.021558631211519,-0.078800417482853,-0.053054917603731]],[[0.00074683298589662,-0.016150984913111,0.005743901245296],[-0.017622193321586,0.026069365441799,-0.0090493513271213],[-0.076012670993805,-0.086626060307026,-0.098626546561718]],[[-0.0006912195822224,-0.012925842776895,-0.028394728899002],[0.007301171310246,-0.016813110560179,-0.054994117468596],[0.053158156573772,-0.054341487586498,0.015378930605948]],[[-0.057050455361605,-0.065965130925179,-0.041563615202904],[0.026990409940481,0.052872736006975,-0.02563814073801],[-0.014282462187111,0.0084385592490435,0.011193858459592]],[[-0.040272876620293,0.01417401432991,-0.013071602210402],[-0.071671575307846,0.00011981470743194,-0.024559419602156],[-0.054164789617062,-0.030731489881873,0.05465417355299]],[[-0.023046612739563,-0.0068912412971258,0.10166322439909],[0.071556068956852,0.035811193287373,0.07138492166996],[0.040676854550838,-0.074823275208473,0.078237220644951]],[[-0.053084593266249,-0.05031555518508,-0.055287756025791],[0.015181872993708,-0.032333590090275,-0.026519365608692],[0.080620802938938,0.027306042611599,0.099850915372372]],[[0.012844354845583,-0.029515996575356,-0.029985696077347],[-0.010290220379829,-0.0036493893712759,-0.026911651715636],[-0.066850371658802,-0.037592850625515,-0.059553287923336]],[[-0.0090318527072668,-0.13594438135624,-0.04401882737875],[-0.013988700695336,0.016571126878262,0.0038830060511827],[0.0069819893687963,0.01642569154501,0.034032136201859]],[[-0.02161380648613,0.0027242677751929,-0.01207581255585],[0.013896255753934,0.0034391558729112,0.010280387476087],[0.0023250740487128,-0.0068887416273355,-0.017642922699451]],[[0.0057930601760745,-0.025000013411045,0.057636592537165],[-0.022570230066776,0.013077158480883,0.011066914536059],[0.029094642028213,0.083598203957081,0.025585634633899]],[[-0.0068125668913126,0.0081165293231606,0.0066434321925044],[0.0021087895147502,-0.029996193945408,0.007282339502126],[0.007681951392442,0.017946280539036,0.013637095689774]],[[-0.026610383763909,0.067026421427727,-0.012223618105054],[0.0176049657166,-0.025802280753851,-0.023510087281466],[-0.011021412909031,-0.0064918943680823,0.013675917871296]],[[-0.010025513358414,-0.03933547064662,-0.1206675991416],[-0.038239117711782,0.041242025792599,-0.014361252076924],[-0.024960985407233,0.0047199036926031,0.034416794776917]],[[0.020932339131832,-0.055991198867559,-0.0023267273791134],[0.010083130560815,-0.058650683611631,0.071719601750374],[0.0031872300896794,-0.02502560429275,0.019568223506212]],[[-0.021374385803938,0.0036135504487902,-0.045014087110758],[-0.039859496057034,-0.034116879105568,-0.018749056383967],[-0.015157429501414,-0.00017743089119904,0.026189627125859]]],[[[-0.051938764750957,-0.061226062476635,0.013157425448298],[0.046625752002001,0.023946525529027,-0.074629992246628],[0.025870833545923,-0.052422698587179,0.031632229685783]],[[0.011433893814683,-0.045049350708723,0.024832228198647],[-0.073037952184677,-0.030968815088272,0.011885923333466],[0.065755546092987,0.011494494043291,-0.014444681815803]],[[0.0069082262925804,0.040496550500393,0.014043264091015],[-0.033319212496281,0.04778790473938,0.049300219863653],[-0.051677882671356,-0.060764819383621,-0.016073731705546]],[[-0.036832012236118,0.041483990848064,-0.0080658411607146],[0.04076312482357,-0.059618189930916,0.0028880694881082],[0.020464681088924,-0.0036184038035572,-0.020857712253928]],[[0.018984632566571,-0.023135956376791,0.0013407295336947],[-0.001209449605085,-0.016034875065088,-0.029638841748238],[0.016563914716244,-0.029624056071043,0.03152010589838]],[[-0.041014060378075,0.13670301437378,-0.024279152974486],[-0.12474435567856,0.20516692101955,0.045373287051916],[-0.024255096912384,-0.10435477644205,-0.15983907878399]],[[0.0050292019732296,0.014365867711604,-0.02058476023376],[-0.0027283569797873,0.02580532990396,-0.051093466579914],[-0.066532753407955,-0.08297998458147,-0.013454037718475]],[[-0.068411700427532,0.036817234009504,-0.012574607506394],[-0.050224471837282,-0.028082232922316,-0.036422643810511],[-0.085426077246666,0.063689477741718,0.045520555227995]],[[0.025181919336319,-0.026304814964533,0.0042040105909109],[0.032827969640493,-0.008761596865952,-0.019639512524009],[-0.031748462468386,-0.014700278639793,0.051675710827112]],[[-0.01775261759758,0.037283375859261,0.026781138032675],[0.088512353599072,0.025612283498049,-0.020027095451951],[0.045342069119215,0.021223617717624,-0.034222189337015]],[[-0.022225389257073,-0.006215067114681,0.020501939579844],[-0.036608438938856,-0.0035005190875381,0.020002499222755],[0.076422147452831,-0.09216833114624,0.01649859175086]],[[0.0052494206465781,-0.037060372531414,-0.03864785656333],[0.014651753939688,-0.0051569235511124,0.024191634729505],[0.00083321408601478,-0.06810587644577,-0.051269821822643]],[[-0.011084037832916,0.036257609724998,-0.02116197347641],[-0.020643992349505,-0.011768688447773,-0.020010525360703],[0.028719091787934,0.00038812521961518,-0.017930125817657]],[[0.072519272565842,0.0059490012936294,-0.020668225362897],[0.017548499628901,0.058522313833237,0.016859374940395],[0.088258363306522,0.093724936246872,0.049200404435396]],[[-0.049902360886335,-0.07850369066,-0.017915029078722],[-0.048753764480352,-0.020853139460087,0.098462827503681],[-0.035921420902014,0.0050729871727526,-0.0055930120870471]],[[-0.058022294193506,-0.031426776200533,-0.028095295652747],[0.02076405659318,0.05025152862072,0.0066597922705114],[-0.012244820594788,0.11227814108133,0.072853595018387]],[[0.080632455646992,0.0299914162606,-0.023441061377525],[0.012254016473889,-0.0064425235614181,-0.011412710882723],[0.01038954872638,-0.11314310133457,0.0075685544870794]],[[0.029413007199764,-0.0023649842478335,0.020393842831254],[0.0032152719795704,-0.0031644939444959,-0.012277687899768],[0.024710197001696,-0.040466923266649,-0.10649416595697]],[[-0.015035424381495,-0.028949091210961,-0.0040335222147405],[-0.0051125213503838,0.0024549434892833,0.011186038143933],[-0.010635659098625,0.015179617330432,-0.038785841315985]],[[-0.044117070734501,-0.040175836533308,-0.063589841127396],[-0.064602881669998,-0.050115197896957,0.040456753224134],[-0.023459877818823,0.029824597761035,-0.082666344940662]],[[0.037232112139463,-0.07529491186142,0.024102071300149],[-0.045337166637182,-0.056884206831455,-0.022371998056769],[-0.076262436807156,-0.015610167756677,0.073011785745621]],[[0.080291166901588,-0.043153595179319,-0.038675632327795],[-0.003420339897275,0.028987957164645,0.032677117735147],[0.091953098773956,-0.024591144174337,0.022038666531444]],[[-0.071004256606102,0.063187189400196,0.019839908927679],[0.062179766595364,-0.040937550365925,-8.0689351307228e-05],[0.012628666125238,-0.038590669631958,-0.011536401696503]],[[-0.015316761098802,0.039310123771429,-0.014473978430033],[-0.042699065059423,0.014367836527526,-0.029997991397977],[-0.054426338523626,0.083875969052315,-0.0039687193930149]],[[-0.053750596940517,0.045217331498861,0.067747436463833],[-0.012274762615561,-0.010773240588605,0.057636756449938],[0.020203990861773,-0.038002967834473,-0.022898940369487]],[[0.014143296517432,-0.051402032375336,-0.06591721624136],[-0.065998531877995,-0.030601441860199,-0.078598462045193],[-0.021882433444262,-0.019425269216299,-0.015194202773273]],[[0.045792423188686,0.060782510787249,-0.012812142260373],[-0.091786935925484,-0.017675720155239,0.03775205463171],[-0.062768712639809,-0.12302395701408,-0.10364557802677]],[[-0.01728269085288,0.025109482929111,-0.053161084651947],[0.0034468581434339,0.038504224270582,0.057381417602301],[0.024744031950831,0.054619949311018,-0.092520780861378]],[[-0.058885291218758,0.069033361971378,-0.012879496440291],[0.0095370262861252,-0.036726862192154,-0.036604005843401],[-0.050252322107553,0.017983363941312,-0.01553419046104]],[[-0.031071966513991,-0.019815253093839,0.0084675345569849],[0.015339418314397,-0.010030903853476,0.0053281718865037],[-0.028104167431593,-0.02260922268033,0.010548230260611]],[[0.0043053878471255,0.010508433915675,-0.0065215877257288],[-0.1211828365922,-0.017916910350323,-0.0062745735049248],[-0.086582608520985,-0.065993674099445,-0.054618149995804]],[[0.039916791021824,0.0071546910330653,-0.041677474975586],[0.060661528259516,0.0046901684254408,0.041508194059134],[0.037884566932917,-0.020524505525827,-0.011162674054503]],[[-0.052418868988752,0.0024497050326318,0.0014372483128682],[0.0063524032011628,-0.014382933266461,-0.00809963978827],[0.047302510589361,0.024151848629117,0.0029277026187629]],[[-0.079414062201977,-0.097881279885769,-0.01195933111012],[0.0094447713345289,0.0436304025352,-0.02913236245513],[0.041863661259413,0.022738613188267,0.0098405545577407]],[[-0.00050971773453057,6.1656355683226e-05,-0.020187126472592],[0.015432205051184,-0.042269837111235,-0.083118222653866],[0.011411536484957,-0.00062814477132633,-0.053470533341169]],[[-0.0045992932282388,0.017972178757191,0.066852651536465],[-0.020728930830956,0.096938505768776,-0.015017885714769],[-0.043580789119005,-0.075858607888222,0.012495214119554]],[[-0.015259453095496,-0.053536113351583,-0.011961597949266],[0.089809812605381,-0.10973291099072,0.041819732636213],[-0.072718434035778,0.022534850984812,-0.023747019469738]],[[-0.048074517399073,0.013363899663091,0.029985116794705],[0.0047373063862324,-0.025040604174137,-0.062007490545511],[0.038181751966476,0.016532277688384,-0.065533325076103]],[[-0.03404700383544,-0.057754538953304,0.029641760513186],[0.00566968601197,0.012022141367197,0.0032780969049782],[-0.061665926128626,-0.063026487827301,0.031608164310455]],[[0.022512538358569,0.022787038236856,-0.016499705612659],[-0.0088866306468844,-0.0027420942205936,-0.053232997655869],[-0.029351579025388,-0.061839692294598,0.011789962649345]],[[-0.0018802197882906,-0.027854466810822,-0.03272308409214],[0.058281533420086,-0.098963007330894,0.015204294584692],[0.052895747125149,0.03562967479229,0.036558695137501]],[[-0.0014003631658852,0.016228791326284,-0.034001220017672],[-0.047467585653067,-0.037350337952375,-0.029235096648335],[0.042643513530493,-0.0068095298483968,0.011832283809781]],[[0.00021753506734967,0.026976281777024,-0.036204241216183],[0.075550235807896,-0.0080418642610312,-0.0068321102298796],[-0.086442060768604,0.033367976546288,0.023319508880377]],[[0.022568963468075,-0.00031340087298304,0.018850442022085],[-0.0092203672975302,-0.025804428383708,-0.021552868187428],[-0.0041228625923395,-0.036780659109354,-0.016772316768765]],[[0.0002256775915157,0.05814640969038,-0.0079610766842961],[-0.014312189072371,0.025743244215846,0.084124013781548],[-0.0024423743598163,-0.035054881125689,-0.049040853977203]],[[0.033073615282774,-0.0067197638563812,-0.076797120273113],[0.049531023949385,-0.067506320774555,0.017183035612106],[-0.0707917958498,0.016308655962348,-0.0034778553526849]],[[0.016448436304927,0.041913881897926,-0.032456751912832],[-0.022974183782935,-0.0050729643553495,0.034677937626839],[-0.060795925557613,0.03462602570653,0.014063033275306]],[[-0.0097257476300001,0.0016974919708446,-0.0029403532389551],[0.035664469003677,-0.040498200803995,-0.05944712460041],[0.041290018707514,0.012582643888891,-0.0021442680153996]],[[-0.032153900712729,0.027388425543904,-0.068843521177769],[0.0053321002051234,-0.020762287080288,-0.076466418802738],[-0.019639825448394,-0.034933600574732,-0.036791451275349]],[[-0.034236121922731,0.10994885861874,0.070689208805561],[0.032499369233847,-0.019387681037188,-0.0014421883970499],[-0.025698117911816,-0.012533731758595,-0.025554060935974]],[[-0.0021245346870273,0.05079535394907,-0.00098534510470927],[-0.015798814594746,0.072153188288212,0.040703292936087],[-0.016453623771667,0.05313178524375,-0.046298131346703]],[[0.020054304972291,0.0094574419781566,-0.077563643455505],[-0.070399411022663,0.085662990808487,0.083907060325146],[0.027583889663219,-0.0056720026768744,0.019976878538728]],[[-0.040646962821484,0.011634844355285,-0.019112730398774],[-0.07759627699852,-0.092196561396122,-0.031499836593866],[-0.035335835069418,-0.044361170381308,-0.076747976243496]],[[0.067281320691109,0.084001705050468,-0.016385354101658],[0.07200114428997,0.01113557908684,0.079007767140865],[0.036772605031729,0.021709464490414,0.11229679733515]],[[-0.0055444748140872,0.018079815432429,0.0060383793897927],[0.034243363887072,-0.076256886124611,-0.011254468932748],[0.0074552446603775,0.073083557188511,-0.062825493514538]],[[-0.045165710151196,-0.046097591519356,0.0016742986626923],[-0.015840124338865,0.045320395380259,0.050523571670055],[-0.022593969479203,-0.028398210182786,-0.016101233661175]],[[0.014494366012514,0.050072140991688,-0.025588303804398],[0.022454492747784,0.0050694020465016,-0.020295629277825],[-0.040507238358259,-0.11231632530689,-0.06088637933135]],[[0.006318926345557,0.0018756580539048,0.02051099576056],[-0.027696423232555,-0.031968880444765,0.033767063170671],[-0.0018478480633348,-0.0079419976100326,-0.010221092961729]],[[-0.016244992613792,0.026108322665095,0.067392341792583],[-0.0098139587789774,-0.051117241382599,0.00038879225030541],[-0.013317098841071,-0.017766954377294,0.010782117024064]],[[-0.021605974063277,-0.008547923527658,-0.011931431479752],[0.010049381293356,-0.025039929896593,0.0037186469417065],[-0.010761154815555,0.086165904998779,0.032186161726713]],[[-0.039522755891085,-0.059595476835966,0.0020709962118417],[0.0030890395864844,0.04902882501483,-0.058913249522448],[-0.010251133702695,-0.053762592375278,-0.0072564319707453]],[[0.024739295244217,-0.083488866686821,0.022548522800207],[0.030148055404425,0.0038780178874731,0.016548428684473],[-0.003725444432348,0.024909138679504,-0.032301712781191]],[[-0.050850961357355,-0.033055786043406,0.035169046372175],[0.0093517284840345,-0.013806979171932,0.017548033967614],[-0.032473508268595,-0.03879227861762,0.074639275670052]],[[-0.011474568396807,0.072983413934708,0.034602515399456],[0.017329951748252,-0.045105591416359,0.027409430593252],[-0.028903748840094,-0.086444690823555,0.064941793680191]]],[[[0.049874693155289,0.02318087220192,0.037831209599972],[-0.078937597572803,0.0033112983219326,-0.017212955281138],[0.041418045759201,-0.029693458229303,-0.023543881252408]],[[0.018734944984317,0.0012144745560363,-0.04180807992816],[0.034958183765411,-0.051714543253183,-0.02503421343863],[-0.015469601377845,-0.018615908920765,-0.0094923917204142]],[[-0.047636222094297,-0.025284234434366,0.1011291667819],[-0.062806375324726,0.038503926247358,-0.0047605424188077],[-0.051227558404207,-0.012454557232559,-0.016398556530476]],[[0.022598827257752,-0.026724029332399,-0.02252927608788],[-0.069806523621082,0.027647251263261,0.071108296513557],[-0.10844420641661,0.081261307001114,0.050064861774445]],[[-0.030208265408874,0.012706587091088,0.030186183750629],[0.03535782545805,0.08751392364502,0.027323476970196],[-0.030036086216569,-0.013683153316379,-0.037597455084324]],[[-0.092815220355988,0.073729626834393,0.079962752759457],[-0.066131740808487,-0.0078280298039317,0.024853587150574],[0.055709779262543,-0.096503511071205,-0.031296923756599]],[[-0.08318755030632,0.0074897524900734,0.0073455818928778],[-0.046240467578173,-0.0017733301501721,-0.0029650048818439],[-0.033721838146448,0.0030657346360385,0.026132624596357]],[[0.0033546863123775,0.049929350614548,-0.025020169094205],[0.008082072250545,0.032888386398554,0.054010756313801],[0.042432315647602,0.0020219155121595,-0.028671074658632]],[[0.0059230760671198,-0.045425429940224,-0.016387883573771],[0.051976751536131,0.0102843279019,-0.027364831417799],[0.020123794674873,0.035010259598494,-0.07742565870285]],[[0.092775642871857,0.019321165978909,-0.059188693761826],[0.059756025671959,0.00913305580616,-0.055267259478569],[-0.083182990550995,-0.050505120307207,-0.037727501243353]],[[0.0065233930945396,-0.079521298408508,0.083397731184959],[-0.070849530398846,0.050104539841413,0.013486291281879],[-0.047755371779203,-0.032678943127394,0.067329831421375]],[[0.032773204147816,-0.070899091660976,0.035590104758739],[-0.050090227276087,-0.027787454426289,0.092913627624512],[0.060312896966934,0.028868371620774,-0.0033090692013502]],[[0.042297501116991,0.086260281503201,0.052786003798246],[-0.042506568133831,-0.0049423952586949,0.043937910348177],[0.024531869217753,0.037430815398693,0.076959609985352]],[[0.11211558431387,0.058477763086557,0.0035046238917857],[0.13166087865829,0.06091532856226,-0.048024233430624],[0.072530262172222,0.10229469835758,-0.065477669239044]],[[-0.0065260827541351,-0.01902231015265,0.016738776117563],[-0.059802066534758,-0.0480279289186,-0.032648637890816],[-0.047292992472649,-0.025357643142343,-0.11205964535475]],[[0.099201291799545,0.016757555305958,0.013232067227364],[-0.06477428227663,0.079598069190979,-0.012433309108019],[-0.0057155820541084,0.071991950273514,0.015821108594537]],[[-0.062581174075603,-0.001929925638251,0.0022551028523594],[-0.041648864746094,-0.018622012808919,0.017926003783941],[-0.0015624022344127,0.025937091559172,0.031840018928051]],[[-0.028975836932659,0.052087284624577,0.081059247255325],[-0.024145361036062,-0.022754564881325,-0.012661925517023],[-0.057055588811636,-0.010287882760167,-0.089497856795788]],[[-0.040202904492617,-0.041762486100197,0.084839344024658],[-0.018178414553404,0.024448590353131,0.013217628002167],[-0.016083724796772,0.0027463980950415,0.014516968280077]],[[-0.021257869899273,0.059266284108162,-0.026488862931728],[-0.026899510994554,0.013726828619838,-0.023861065506935],[0.0014893623301759,-0.023060228675604,-0.030859984457493]],[[-0.013880645856261,-0.0063555524684489,0.029581740498543],[-0.031120451167226,0.027588542550802,-0.0090409722179174],[0.013482645153999,-0.0552161000669,-0.0041895541362464]],[[-0.022713454440236,0.01232928968966,-0.031396009027958],[0.031672105193138,0.058250237256289,-0.0024893512018025],[0.03179881721735,-0.031481627374887,0.063636928796768]],[[0.019174387678504,0.01132888905704,0.067624248564243],[-0.018846409395337,0.02986011095345,-0.036822210997343],[-0.061619341373444,-0.013680221512914,-0.022121269255877]],[[-0.0003322486882098,0.062880553305149,0.0035086569841951],[-0.033520583063364,-0.025626735761762,0.023559182882309],[-0.053395882248878,0.071434438228607,-0.070697203278542]],[[-0.059712115675211,-0.026884187012911,0.01689475029707],[-0.060700383037329,0.0029267081990838,-0.048339568078518],[-0.032842557877302,-0.022802010178566,-0.017037289217114]],[[0.039523307234049,0.0037420024164021,0.01055399607867],[0.0075285476632416,0.034264482557774,0.069685406982899],[0.036184541881084,-0.0060868179425597,0.038631569594145]],[[-0.10054898262024,-0.063727505505085,-0.012953289784491],[0.0061669587157667,0.010929215699434,0.0089701879769564],[0.048992931842804,0.031944178044796,-0.085596509277821]],[[0.026515439152718,-0.049025487154722,0.053574696183205],[-0.023133793845773,0.10430726408958,-0.039828211069107],[-0.0076618855819106,0.0065069133415818,0.0084254769608378]],[[0.012756975367665,-0.051568191498518,0.037939716130495],[-0.13283456861973,0.0033397383522242,0.041326303035021],[0.14616802334785,0.012058055959642,0.087237223982811]],[[-0.077781967818737,-0.080781303346157,-0.16384142637253],[-0.021439515054226,0.04328390583396,-0.011147877201438],[0.011256065219641,0.037476550787687,-0.043326016515493]],[[-0.045459538698196,0.0097932349890471,0.030646441504359],[0.018062051385641,-0.025325663387775,-0.022275425493717],[-0.079840399324894,-0.0029651147779077,0.0043284832499921]],[[-0.004569299519062,0.01592106372118,0.047192249447107],[0.085366539657116,0.0040220646187663,0.0169617254287],[0.092776484787464,0.072893418371677,0.026815298944712]],[[0.0028516298625618,-0.072636649012566,0.018050888553262],[-0.0004988886648789,0.0037377390544862,-0.004483194090426],[-0.096943698823452,-0.040934979915619,0.043904423713684]],[[-0.038428723812103,-0.0044676256366074,-0.0066681718453765],[-0.045396417379379,0.013468365184963,0.018913282081485],[-0.045108444988728,0.045076820999384,-0.025085953995585]],[[0.052509214729071,0.001157364808023,-0.036043364554644],[0.031308807432652,0.040691591799259,-0.10932713001966],[0.064482219517231,0.025308042764664,-0.066828183829784]],[[-0.072309032082558,0.0077430112287402,0.027347583323717],[-0.054561518132687,-0.078438058495522,-0.020121866837144],[-0.047976084053516,-0.046253241598606,-0.056419711560011]],[[-0.035194631665945,-0.013406603597105,0.013370963744819],[-0.055671267211437,-0.074037864804268,-0.020369289442897],[-0.089569076895714,-0.062509417533875,0.020064188167453]],[[-0.044191487133503,0.07247769087553,-0.021988108754158],[-0.036074038594961,-0.034484677016735,-0.071308724582195],[-0.036796111613512,-4.383220220916e-05,0.087996579706669]],[[-0.047317367047071,0.079892508685589,0.038068316876888],[-0.046454321593046,0.10282688587904,-0.052563596516848],[-0.058687411248684,-0.016014605760574,-0.047643937170506]],[[-0.037934120744467,-0.010371188633144,0.042305186390877],[-0.077672548592091,-0.065623432397842,0.043470852077007],[0.046460554003716,-0.039971154183149,0.0093208877369761]],[[0.013038592413068,0.015040098689497,0.024227220565081],[0.08523266762495,-0.062305748462677,5.1941093261121e-05],[-0.10070444643497,-0.098862640559673,-0.0617307536304]],[[-0.050175726413727,-0.045098654925823,-0.031245490536094],[0.055051237344742,-0.051115587353706,-0.057872448116541],[0.0052120494656265,0.051503006368876,0.034885764122009]],[[-0.062194358557463,0.033727671951056,0.067201070487499],[-0.019838059321046,-0.0081559540703893,-0.0037389697972685],[-0.051343154162169,0.00073475408134982,-0.075869247317314]],[[-0.041860330849886,0.034256882965565,0.00069257715949789],[-0.051534809172153,-0.095590189099312,-0.061844695359468],[-0.06915146112442,-0.015777984634042,-0.11415627598763]],[[-0.0017590845236555,0.0026988605968654,-0.11567919701338],[0.044502664357424,0.094128184020519,0.011121191084385],[0.037181813269854,0.0033733686432242,0.015039836987853]],[[-0.015506193973124,-0.029245370998979,-0.040468856692314],[0.0084839509800076,-0.039720397442579,-0.014200355857611],[-0.042007211595774,0.022636255249381,-0.074725970625877]],[[-0.050518400967121,0.074124291539192,0.0031071016564965],[-0.021970180794597,0.039311610162258,-0.019132770597935],[-0.020959321409464,-0.033044394105673,-0.0017024567350745]],[[-0.022097563371062,-0.032925121486187,-0.027103703469038],[-0.10696198046207,0.02835569344461,0.060343787074089],[-0.041758704930544,-0.007198613602668,0.0093770977109671]],[[-0.0032913552131504,-0.025448739528656,-0.015888715162873],[-0.020285381004214,-0.036479502916336,0.020792437717319],[-0.096272148191929,-0.021678108721972,-0.032698798924685]],[[-0.036385808140039,0.072642594575882,-0.18352957069874],[-0.016778502613306,-0.001852986169979,0.046448856592178],[-0.001110571087338,0.0014732778072357,-0.073716476559639]],[[0.0064962115138769,0.035099014639854,0.037423104047775],[-0.053856246173382,-0.0034035937860608,0.036715999245644],[-0.0068515953607857,0.026917714625597,-0.025676688179374]],[[-0.047848392277956,-0.043632749468088,0.01270264107734],[-0.10796788334846,0.0082590589299798,-0.015437783673406],[-0.094204030930996,0.0065226778388023,0.002749917563051]],[[-0.035999957472086,-0.055911853909492,0.02317301183939],[0.027536222711205,-0.061325073242188,-0.065116658806801],[-0.055317379534245,-0.070130117237568,0.0003154308651574]],[[0.054819412529469,0.09923543035984,0.025646386668086],[0.1671067327261,0.0057871923781931,0.045707400888205],[-0.019395532086492,0.060061365365982,0.061506114900112]],[[-0.02964829467237,-0.03908957913518,0.032199796289206],[-0.045502848923206,-0.046273574233055,0.015436675399542],[0.028772823512554,-0.010858826339245,-0.025724453851581]],[[-0.034705255180597,0.011763917282224,-0.0043541332706809],[0.035578716546297,-0.011742172762752,0.027477294206619],[0.032218810170889,0.02913754619658,-0.04413229227066]],[[0.037392400205135,0.078224927186966,0.017512721940875],[0.025607226416469,0.063817404210567,0.015793204307556],[-0.06600558757782,0.061483591794968,-0.006056229583919]],[[-0.024613808840513,-0.018221780657768,-0.02749739587307],[-0.039023779332638,0.051349077373743,0.043438233435154],[-0.018992964178324,-0.00012078297004336,0.023197036236525]],[[-0.028937410563231,-0.040188498795033,-0.055082373321056],[0.019858688116074,-0.036480244249105,0.063299350440502],[-0.015242137014866,0.05827334523201,0.035712778568268]],[[0.0045433882623911,-0.046652335673571,-0.075266100466251],[0.0089280409738421,0.08493710309267,0.035451229661703],[0.029374884441495,0.018445547670126,0.049590285867453]],[[-0.017663301900029,0.010590932331979,-0.0029231843072921],[-0.011794199235737,-0.069656826555729,0.017317604273558],[-0.054624743759632,-0.013562475331128,0.02434091642499]],[[-0.095818638801575,-0.023581413552165,-0.069164723157883],[0.010179456323385,0.0069144829176366,-0.091121301054955],[0.0059872884303331,0.0015505054034293,-0.039323426783085]],[[0.030373936519027,0.087629206478596,-0.0094911474734545],[-0.0081071518361568,-0.065958455204964,-0.024493554607034],[-0.0032092118635774,-0.019509077072144,0.020707231014967]],[[-0.01769432425499,-0.017275374382734,0.071551993489265],[0.027378730475903,0.021906452253461,0.056094992905855],[0.0029282255563885,0.029847862198949,0.07441234588623]]],[[[-0.0029033941682428,-0.050435073673725,-0.11457630246878],[0.025645900517702,-0.045076306909323,-0.1119197383523],[0.13639861345291,0.05054758861661,0.10855528712273]],[[-0.031972903758287,-0.068298742175102,0.057137511670589],[-0.035652074962854,0.0064926706254482,0.08995147049427],[-0.15963147580624,-0.093744687736034,-0.050028800964355]],[[0.0028660241514444,-0.050518590956926,0.063796631991863],[-0.037904091179371,-0.057574953883886,-0.040911689400673],[0.07123202085495,-0.046296581625938,0.050600919872522]],[[0.010665175504982,-0.06214676424861,0.075162589550018],[-0.009478303603828,-0.051811374723911,-0.08604571223259],[0.053619489073753,0.043139059096575,0.014164907857776]],[[-0.0084542110562325,-0.013634934090078,-0.052015155553818],[-0.064315356314182,0.063248381018639,0.039257049560547],[0.03079784847796,0.04211700335145,-0.014960747212172]],[[-0.0068517415784299,0.023697726428509,-0.11969890445471],[-0.0067666950635612,0.010299563407898,-0.019797643646598],[0.010517478920519,-0.044376127421856,-0.080569066107273]],[[-0.031651347875595,0.014782237820327,0.033177491277456],[-0.042330473661423,-0.023515023291111,0.0050868508405983],[-0.022350871935487,0.0048379553481936,0.089375756680965]],[[0.062295224517584,-0.040456295013428,-0.11713773757219],[0.013395288959146,0.10733448714018,0.13200537860394],[0.0079925302416086,0.0026770159602165,-0.012556771747768]],[[-0.15951067209244,-0.022598940879107,-0.0050202808342874],[0.015618550591171,-0.047116130590439,-0.071033351123333],[-0.12967240810394,-0.076026447117329,0.007581103593111]],[[-0.050762455910444,0.07592211663723,0.030862722545862],[0.04675666987896,-0.0013804362388328,0.041798509657383],[0.09862058609724,-0.0091224638745189,0.05251756682992]],[[0.068214409053326,-0.111332885921,-0.12019960582256],[-0.092081911861897,0.13432703912258,-0.12164258956909],[0.11101448535919,0.080907382071018,0.02026779204607]],[[0.014586918987334,-0.11773700267076,0.050188209861517],[0.048874907195568,0.074028074741364,-0.074228771030903],[-0.023600017651916,0.024078892543912,0.068678304553032]],[[0.072830393910408,0.064582355320454,-0.075381934642792],[-0.075330510735512,0.046338733285666,0.066599011421204],[-0.10051985085011,-0.12977224588394,-0.1462749093771]],[[0.015038030222058,0.043587040156126,-0.14089627563953],[-0.058884512633085,0.041796281933784,0.032857973128557],[0.17793422937393,0.14699837565422,0.097589425742626]],[[0.033051654696465,-0.020606661215425,-0.07023161649704],[0.0038232975639403,-0.021485522389412,-0.19547465443611],[0.089472338557243,0.11287620663643,-0.01549855619669]],[[-0.042844690382481,0.11736204475164,0.064112991094589],[0.043159633874893,-0.084709070622921,-0.081687368452549],[0.01593978330493,-0.088845290243626,-0.11646661162376]],[[-0.08294852077961,-0.077510043978691,-0.12762151658535],[-0.028002394363284,-0.032373689115047,0.049941673874855],[-0.028986122459173,-0.1022671982646,-0.11277145892382]],[[0.0062485337257385,-0.018534859642386,0.0064598936587572],[0.045982774347067,-0.082250207662582,-0.060121845453978],[-0.087552279233932,0.036927036941051,0.057159096002579]],[[-0.090854652225971,-0.037757955491543,-0.20725478231907],[0.015833025798202,-0.1109564602375,-0.071846388280392],[0.055965170264244,-0.026774171739817,-0.057947508990765]],[[-0.024295765906572,0.054102469235659,-0.047316648066044],[-0.041405204683542,-0.024416217580438,-0.024917421862483],[0.013559487648308,0.0029008376877755,0.055640500038862]],[[-0.014728104695678,-0.030410908162594,-0.15971100330353],[0.089392475783825,-0.011840587481856,-0.15535685420036],[0.098418407142162,0.12298563867807,-0.12873630225658]],[[-0.0020995242521167,-0.058216240257025,0.045494150370359],[-0.039143823087215,0.049681209027767,0.048397071659565],[-0.13359619677067,-0.057056251913309,-0.020288376137614]],[[0.010079639032483,-0.017417773604393,-0.068396128714085],[0.021167693659663,0.084413848817348,-0.020537016913295],[-0.028098434209824,-0.004819730296731,0.031770192086697]],[[0.031151061877608,8.4571554907598e-05,-0.010441051796079],[0.081658445298672,-0.029248889535666,-0.023735657334328],[0.031935218721628,0.063775971531868,-0.1907773911953]],[[0.021472908556461,0.00036538287531585,0.20421072840691],[0.098361529409885,0.068628318607807,0.0022895103320479],[-0.041227124631405,0.0046650599688292,0.027190214022994]],[[-0.029164394363761,-0.054755751043558,0.036120198667049],[-0.011373830959201,0.0047419839538634,-0.030026454478502],[-0.11720702797174,-0.047422930598259,-0.022447755560279]],[[0.066762737929821,-0.099169678986073,-0.081252753734589],[-0.013584641739726,-0.067067444324493,0.02616947889328],[0.045200269669294,0.10747393220663,0.093521296977997]],[[0.02250680886209,-0.042005274444818,-0.1274438649416],[0.013313827104867,0.048510178923607,-0.11332710087299],[0.10619928687811,-0.063100814819336,-0.16431279480457]],[[0.019548421725631,-0.11158458143473,-0.064722128212452],[-0.048950176686049,-0.10002671182156,-0.057215355336666],[0.017940003424883,0.060478508472443,0.047736283391714]],[[-0.040523894131184,0.015888655558228,-0.013052036054432],[-0.018220320343971,-0.063755430281162,-0.077829919755459],[-0.027950229123235,0.020938619971275,0.056783005595207]],[[0.043533612042665,-0.03991287574172,0.24500440061092],[0.061444822698832,-0.11530391126871,-0.019364733248949],[0.037078678607941,-0.016840854659677,0.0041319052688777]],[[-0.080694280564785,-0.08987931907177,-0.062902025878429],[-0.064298607409,0.046412326395512,0.055595837533474],[-0.07058135420084,0.070322930812836,0.079236567020416]],[[-0.040304239839315,-0.033399734646082,-0.020013937726617],[-0.012459960766137,-0.036472246050835,-0.043208718299866],[-0.024276807904243,-0.057942725718021,-0.055140569806099]],[[0.012831840664148,-0.054027885198593,-0.060244273394346],[0.085043855011463,0.1062283217907,-0.019478304311633],[-0.034690476953983,0.025262545794249,-0.060737371444702]],[[-0.061443161219358,-0.036842480301857,0.061694718897343],[0.0068281241692603,0.082442283630371,0.12093386054039],[-0.27887284755707,-0.044235195964575,0.12150954455137]],[[0.0049667661078274,0.0024491881486028,-0.0018896104302257],[0.0034890833776444,-0.079122066497803,-0.12465282529593],[0.015732103958726,-0.080111809074879,-0.054490827023983]],[[0.037241503596306,-0.15689839422703,0.031816698610783],[-0.017765000462532,-0.029171720147133,-0.13066351413727],[0.013054192066193,0.048281636089087,-0.012531877495348]],[[-0.047039028257132,-0.27813822031021,0.04778841137886],[-0.040033254772425,-0.027200100943446,-0.18728017807007],[0.141387835145,0.095878951251507,0.078253485262394]],[[0.0066383369266987,0.10665659606457,0.075308911502361],[-0.095550447702408,-0.023768849670887,-0.054765287786722],[-0.018649922683835,-0.096942037343979,-0.060157421976328]],[[-0.012276916764677,0.056566141545773,0.08479105681181],[-0.07983573526144,-0.094224646687508,-0.086420029401779],[-0.081612318754196,0.036391206085682,-0.022504294291139]],[[-0.0080017913132906,-0.053624864667654,-0.083408251404762],[-0.006025543436408,0.085709549486637,0.054428156465292],[0.035755053162575,-0.066223949193954,-0.073847606778145]],[[0.04387042298913,-0.11105504631996,0.14577607810497],[-0.03163243085146,-0.013792264275253,0.038756716996431],[0.010450903326273,0.083943627774715,0.074337415397167]],[[-0.13691551983356,0.047938946634531,-0.04137197881937],[-0.00062978995265439,0.020296819508076,0.096407420933247],[-0.0093944603577256,-0.025324461981654,-0.071199916303158]],[[-0.020748687908053,0.12309136241674,0.040665302425623],[0.010961146093905,-0.0013975296169519,0.0041910065338016],[0.035364780575037,-0.081940174102783,-0.14823564887047]],[[-0.036699797958136,0.0074151181615889,-0.15643315017223],[0.02911476790905,0.03882771730423,0.021756881847978],[0.086755238473415,-0.048989001661539,0.061183631420135]],[[0.021226456388831,0.035509929060936,-0.10401181876659],[-0.16020709276199,0.075805433094501,0.060197453945875],[-0.073993802070618,-0.01714058406651,-0.044808574020863]],[[0.071030102670193,0.006185898091644,0.020655760541558],[-0.015992168337107,0.086001098155975,-0.0039441077969968],[-0.14814588427544,0.018318979069591,0.046040151268244]],[[-0.013642305508256,-0.038440387696028,-0.10979452729225],[0.04222097247839,0.17330075800419,-0.058851718902588],[-0.020816165953875,0.019618984311819,-0.017669934779406]],[[0.0012740151723847,0.030229613184929,0.089246019721031],[-0.018511895090342,-0.050156608223915,-0.0060665956698358],[-0.14700873196125,-0.023418186232448,0.017698397859931]],[[-0.077577538788319,-0.084887705743313,-0.13776890933514],[0.21111550927162,-0.05847379565239,-0.11366398632526],[0.065458372235298,-0.10675120353699,-0.17091828584671]],[[0.033802580088377,0.11020214855671,0.037830535322428],[-0.16606429219246,-0.090595461428165,0.02641830034554],[-0.049246635288,-0.26367077231407,-0.06009591370821]],[[-0.014250768348575,0.01794021204114,0.1083650290966],[-0.080365307629108,-0.03836353495717,0.089092470705509],[-0.043068181723356,0.034288685768843,-0.049106527119875]],[[0.00022745490423404,0.087511703372002,0.095779106020927],[-0.049845732748508,-0.078278839588165,0.02745882794261],[-0.019865853711963,0.02457726560533,-0.021076407283545]],[[0.0033688452094793,0.11126453429461,-0.024878507480025],[0.080960243940353,0.080229088664055,0.18240642547607],[0.17321349680424,0.19294236600399,0.075032338500023]],[[-0.013690020889044,-0.07195533066988,-0.030107654631138],[0.0456587895751,-0.0079715987667441,-0.057829588651657],[0.023319831117988,0.024236433207989,-0.046002939343452]],[[-0.079138875007629,0.03715993091464,-0.091136440634727],[-0.056705117225647,-0.016665522009134,-0.077066197991371],[-0.1781190931797,-0.091691553592682,-0.09248124063015]],[[-0.084329523146152,-0.095697455108166,-0.082236021757126],[-0.017840391024947,-0.13708724081516,-0.11009686440229],[-0.035362411290407,0.17108941078186,-0.10904390364885]],[[0.0066633173264563,-0.02503708191216,0.0042246677912772],[0.025310143828392,0.020292036235332,-0.067716494202614],[-0.073670983314514,-0.01360378228128,-0.087818533182144]],[[-0.064744725823402,0.0018377612577751,-0.10868241637945],[0.090342402458191,0.01065850071609,-0.073658503592014],[0.033421117812395,0.05886210501194,-0.04148031771183]],[[0.010804754681885,0.052019398659468,0.079802893102169],[0.025017008185387,-0.06399492174387,0.066976457834244],[0.0057868515141308,0.010025051422417,-0.038901854306459]],[[0.0519801042974,-0.03502831235528,0.1053192615509],[0.029724072664976,0.10684192925692,-0.045073248445988],[-0.080775201320648,0.090499266982079,0.018490547314286]],[[0.023085033521056,-0.11011707037687,0.05311044305563],[-0.065392680466175,-0.025838457047939,0.05210692808032],[-0.061343938112259,0.024768678471446,0.024032400920987]],[[-0.0018894940149039,0.015328260138631,0.031068896874785],[0.031014204025269,0.011914035305381,-0.020733997225761],[-0.069043785333633,-0.00048824693658389,-0.093908481299877]],[[0.054364271461964,0.016707820817828,-0.005788744892925],[-0.0082638813182712,-0.06640238314867,0.0021933261305094],[0.024393275380135,0.0015219050692394,-0.019310688599944]]],[[[-0.10648046433926,0.03102076984942,-0.057421363890171],[0.032400634139776,-0.031475439667702,-0.06186031922698],[-0.1210722848773,-0.027507200837135,0.016345102339983]],[[0.0064357607625425,0.018529223278165,-0.08387153595686],[0.034674391150475,0.010015429928899,-0.043729573488235],[-0.044767841696739,-0.11250114440918,-0.01985165849328]],[[-0.0061861420981586,-0.012110506184399,-0.045713234692812],[-0.077147491276264,-0.034634694457054,0.00017187095363624],[-0.020406134426594,-0.026884535327554,-0.033948633819818]],[[-0.053985003381968,-0.022370731458068,-0.029470345005393],[-0.0043323915451765,0.0083881057798862,-0.071156114339828],[0.012318075634539,0.043899267911911,0.0048094275407493]],[[-0.01249089371413,0.075871549546719,-0.051133617758751],[0.057138562202454,-0.066343799233437,-0.00014614388055634],[-0.0012239061761647,0.071738503873348,0.025903273373842]],[[-0.023053020238876,-0.0073320954106748,-0.069154143333435],[-0.11445359885693,-0.078755863010883,-0.13686986267567],[0.05599195882678,-0.12862585484982,0.10026334226131]],[[-0.020510457456112,0.038209762424231,-0.024749388918281],[0.0060350224375725,-0.025087768211961,0.017767529934645],[0.018932363018394,-0.058606047183275,-0.0026541023980826]],[[-0.026621524244547,-0.0024349256418645,0.045542914420366],[-0.017925620079041,0.079240396618843,0.090228609740734],[0.040158789604902,0.020685907453299,0.037049472332001]],[[0.088311269879341,0.086750067770481,-0.093534089624882],[0.020727371796966,-0.025657972320914,-0.0047538499347866],[0.10169659554958,-0.04923265054822,-0.059856548905373]],[[-0.1172644123435,0.10147684812546,0.091225251555443],[0.070720806717873,0.11579672247171,-0.044990058988333],[0.045083601027727,0.14293138682842,-0.19856137037277]],[[-0.069994762539864,0.013186804950237,-0.023507881909609],[0.073179326951504,-0.11148612946272,-0.055713541805744],[0.11821186542511,-0.11984802037477,-0.014741650782526]],[[0.03490336611867,0.015895077958703,-0.01349566783756],[-0.082040794193745,-0.028355916962028,-0.0056292093358934],[0.055948663502932,0.040856748819351,-0.097046725451946]],[[-0.10444688796997,-0.24050977826118,-0.0085009122267365],[-0.030705036595464,-0.0028764344751835,0.12482565641403],[0.023594824597239,0.060736548155546,0.056900799274445]],[[-0.025149270892143,-0.045474592596292,0.0079996958374977],[0.022125942632556,0.0092476373538375,0.052276704460382],[0.03954915702343,0.02366671897471,0.014793891459703]],[[-0.049321889877319,-0.019844947382808,-0.062522038817406],[-0.029865784570575,0.0034495652653277,-0.064474001526833],[-0.070243038237095,0.031584024429321,0.069498308002949]],[[-0.067321307957172,-0.04317207634449,-0.11798878014088],[0.016349952667952,0.17392274737358,-0.022475080564618],[0.025610338896513,-0.029204402118921,-0.014144649729133]],[[-0.045014332979918,-0.031096514314413,-0.0033084584865719],[0.017175836488605,-0.06514935195446,-0.0066386694088578],[-0.010622592642903,0.081434041261673,0.057404153048992]],[[-0.020510079339147,0.032987009733915,-0.00030962086748332],[0.062344297766685,-0.0088159386068583,0.083404459059238],[0.013683255761862,-0.067272953689098,0.039138466119766]],[[-0.056107819080353,0.007377602159977,-0.05767172947526],[-0.02524377964437,0.065080434083939,0.053264204412699],[-0.023035850375891,-0.063847556710243,-0.072138853371143]],[[-0.068530566990376,-0.019100788980722,0.084112860262394],[-0.015185464173555,-0.00314035336487,0.064689345657825],[-0.089421018958092,-0.03405299410224,-0.016863567754626]],[[0.07462278008461,0.17431734502316,0.076515339314938],[0.098543472588062,0.016901331022382,0.053391236811876],[0.043111961334944,0.045846670866013,0.02836649119854]],[[-0.054912522435188,-0.075560532510281,0.021617138758302],[-0.019132236018777,0.0015072067035362,0.024847343564034],[0.035209834575653,0.061999376863241,-0.057069860398769]],[[-0.017917877063155,0.03508698195219,0.0058244722895324],[-0.035181861370802,0.036852970719337,0.015652785077691],[-0.0179936401546,-0.003551636589691,-0.0042386399582028]],[[0.0037875189445913,-0.055558364838362,0.026297686621547],[-0.056948006153107,-0.099512927234173,0.038032110780478],[-0.12692388892174,0.13588570058346,0.088949531316757]],[[-0.02130289003253,-0.003527156310156,0.031053459271789],[-0.11966186761856,0.016352387145162,0.068687073886395],[-0.093791514635086,0.064670771360397,0.021296374499798]],[[-0.021423771977425,0.11391825973988,-0.01334291882813],[0.016771588474512,-0.047460224479437,0.082353852689266],[-0.06088063493371,-0.0077748936600983,-0.029617404565215]],[[-0.038193259388208,0.017018705606461,0.070348709821701],[0.034493032842875,-0.054897513240576,-0.014135806821287],[0.023259153589606,-0.10179741680622,-0.12878160178661]],[[-0.030477302148938,0.030835865065455,0.0037464702036232],[0.081606015563011,0.039183456450701,0.020393682643771],[-3.5237888369011e-05,-0.05308560281992,-0.035886462777853]],[[-0.0021385843865573,-0.09426636993885,0.09196974337101],[-0.037342958152294,0.076730318367481,-0.020599758252501],[-0.031772885471582,0.023426854982972,-0.0064501003362238]],[[-0.072258837521076,0.041458629071712,0.13467410206795],[-0.11115539073944,-0.013525980524719,0.0657909065485],[-0.13629798591137,0.072122268378735,0.059615474194288]],[[-0.067328475415707,0.034199375659227,-0.10389534384012],[0.084566228091717,0.090691931545734,0.048378270119429],[-0.012338710017502,-0.028340211138129,-0.079043827950954]],[[-0.01502800732851,0.21510297060013,0.10770529508591],[-0.023034457117319,0.054378133267164,-0.036762159317732],[-0.0058373562060297,-0.10756696015596,-0.062075108289719]],[[-0.016715066507459,0.029030848294497,0.12850846350193],[-0.03768004104495,-0.00044069238356315,0.07144171744585],[-0.033400282263756,0.024340499192476,0.059238947927952]],[[-0.091696120798588,0.09958454221487,0.056480690836906],[0.019706467166543,0.08004654198885,0.024348922073841],[-0.12474701553583,-0.030908469110727,0.022471252828836]],[[-0.0097589194774628,0.054094459861517,-0.21790541708469],[0.02452515438199,-0.019518159329891,0.033440113067627],[-0.017741229385138,0.013939427211881,0.04681122303009]],[[-0.035108901560307,0.0015544892521575,-0.030702503398061],[-0.079256221652031,-0.0061858710832894,-0.058123242110014],[-0.062537185847759,-0.026865020394325,-0.061176035553217]],[[0.030670633539557,-0.047218210995197,0.080335572361946],[0.014866757206619,-0.053439043462276,0.080653063952923],[-0.068513303995132,0.027893150225282,-0.027521381154656]],[[-0.0019961658399552,0.20275039970875,0.15259249508381],[-0.022354429587722,-0.11130628734827,0.054323378950357],[-0.11015226691961,-0.041495401412249,0.010835332795978]],[[0.033046010881662,-0.082073912024498,0.025472713634372],[0.063683457672596,0.012600928544998,0.063838176429272],[0.01617736928165,-0.069551080465317,-0.061183840036392]],[[0.02277746796608,0.060961656272411,-0.025269616395235],[0.018081584945321,0.12509573996067,0.10100699216127],[0.021921806037426,0.028553631156683,-0.09818185120821]],[[-0.079528942704201,-0.071800924837589,0.075173445045948],[0.02015632763505,-0.13020613789558,-0.013027940876782],[-0.062430448830128,0.017991788685322,0.073741286993027]],[[-0.031867433339357,-0.0073700505308807,-0.11750431358814],[-0.040428146719933,-0.011113359592855,0.057682558894157],[0.1087431833148,-0.034756403416395,-0.035569995641708]],[[0.064302623271942,0.024418340995908,-0.018230549991131],[0.07741055637598,-0.17409722507,-0.0052917529828846],[0.067339934408665,0.050918132066727,0.031302697956562]],[[0.054274272173643,0.049791179597378,0.042337331920862],[0.057524442672729,0.0061868256889284,0.081319287419319],[-0.086655259132385,-0.10325977951288,-0.039521992206573]],[[-0.045923683792353,-0.00057156855473295,0.038109667599201],[-0.073463998734951,0.13456052541733,-0.010228078812361],[-0.08236800134182,0.079065024852753,-0.018668802455068]],[[0.018610680475831,-0.0041153505444527,-0.025745529681444],[0.096128582954407,0.044145822525024,-0.067830219864845],[0.04092088341713,-0.038163982331753,-0.11212401837111]],[[0.060362577438354,0.0013610097812489,-0.077937573194504],[0.067357666790485,-0.032626297324896,0.0091495672240853],[0.017240334302187,-0.019640220329165,-0.010232634842396]],[[-0.01985895074904,-0.092833444476128,0.044253975152969],[-0.056648649275303,0.023503568023443,0.073962949216366],[0.036940898746252,-0.061426844447851,-0.023546112701297]],[[0.025896601378918,-0.063243262469769,-0.056025937199593],[0.10842335224152,-0.0018456690013409,0.090569868683815],[-0.039632089436054,0.045533139258623,-0.026903359219432]],[[-0.047323066741228,-0.02632424980402,-0.040425315499306],[0.011981543153524,0.24781681597233,-0.035609107464552],[0.11697756499052,-0.042762111872435,0.081456288695335]],[[-0.014058112166822,-0.045331876724958,-0.047593414783478],[0.072420790791512,0.043311528861523,-0.052869983017445],[0.084437109529972,-0.0011899716919288,-0.019484749063849]],[[0.02903894521296,-0.037072516977787,-0.0872767791152],[0.026189852505922,-0.097766295075417,0.041773650795221],[0.037963960319757,0.0013151076855138,-0.001484890235588]],[[0.029876815155149,0.0034988464321941,-0.006437303032726],[-0.066608384251595,-0.03787874057889,-0.086890950798988],[-0.028463466092944,0.059327881783247,0.00010820339957718]],[[-0.08806911110878,0.073694996535778,0.10764165967703],[0.057250060141087,-0.024863870814443,0.0676304474473],[-0.015907278284431,0.043336525559425,-0.037989214062691]],[[-0.047497190535069,0.079863183200359,-0.21582213044167],[0.056752122938633,-0.067327052354813,-0.16050297021866],[0.039572134613991,-0.0038681006990373,-0.057113170623779]],[[0.023151312023401,0.037938289344311,-0.026139250025153],[-0.0043394388630986,-0.016181208193302,-0.01017992477864],[-0.018401838839054,-0.0029337573796511,-0.05247463285923]],[[0.0039743832312524,0.052874229848385,-0.014129602350295],[0.036694779992104,0.018161687999964,0.012993175536394],[-0.052824005484581,0.019918374717236,-0.0067048948258162]],[[-0.018760839477181,0.015365528874099,0.068003788590431],[-0.007133923470974,-0.075120836496353,-0.038838185369968],[0.030967243015766,-0.18362255394459,0.015656376257539]],[[0.066969856619835,-0.024042772129178,0.083961226046085],[-0.0051132207736373,0.086351186037064,-0.059063628315926],[0.040735442191362,-0.0047376723960042,-0.051476042717695]],[[0.031039398163557,-0.02589919231832,0.00457698199898],[0.036467421799898,-0.062165126204491,0.011298445984721],[0.01404142100364,-0.01094847265631,0.01053159404546]],[[-0.029280444607139,0.082141429185867,0.0083927260711789],[0.0099837062880397,0.063943110406399,-0.028083203360438],[0.043472234159708,-0.11395239084959,-0.10907747596502]],[[-0.0036911531351507,0.064526677131653,0.013728548772633],[-0.094108141958714,0.062146972864866,-0.027104649692774],[-0.13965329527855,0.075480543076992,0.014420533552766]],[[0.092616952955723,0.062507927417755,0.0061378432437778],[0.0069305920042098,-0.0158930439502,-0.058348212391138],[-0.072481825947762,0.019071517512202,-0.065656311810017]],[[-0.016659734770656,-0.021925250068307,-0.047259818762541],[-0.00077942141797394,-0.0009906436316669,-0.12875236570835],[-0.012912916950881,0.033016990870237,0.015534467063844]]],[[[-0.039957214146852,-0.075954154133797,-0.082476317882538],[-0.021893084049225,-0.038424823433161,0.051953300833702],[-0.0053734271787107,-0.021662345156074,-0.012023608200252]],[[-0.037726365029812,-0.019332725554705,-0.021378960460424],[-0.029157366603613,-0.015986915677786,-0.0057201152667403],[-0.018796665593982,0.0080380216240883,0.006752657238394]],[[-0.042513061314821,-0.021064108237624,-0.0098260948434472],[0.011807519942522,-0.026544079184532,0.018152406439185],[-0.043147727847099,-0.056240782141685,-0.0072492244653404]],[[0.00017222668975592,0.090992636978626,-0.075542941689491],[0.004180661868304,-0.0075530968606472,-0.023690300062299],[0.072466716170311,0.055533479899168,-0.04019820690155]],[[-0.07998913526535,0.0026198676787317,0.0063881939277053],[0.0090669151395559,-0.061921879649162,-0.065452098846436],[0.017544742673635,0.062050223350525,0.073269434273243]],[[-0.084761135280132,0.092968702316284,0.061555925756693],[0.032152093946934,-0.13293339312077,0.043673608452082],[0.055112887173891,-0.20990417897701,-0.15787717700005]],[[-0.043865479528904,0.024382878094912,-0.0011477002408355],[0.05223136395216,-0.037465091794729,-0.005103818140924],[0.015601838938892,0.0053108218125999,-0.056658666580915]],[[0.051981925964355,0.0093761039897799,0.027664666995406],[-0.0021281696390361,0.0017634034156799,0.031300310045481],[-0.019297072663903,-0.078127086162567,-0.048483964055777]],[[-0.0086562158539891,0.020184757187963,0.035311050713062],[-0.024980591610074,-0.040949936956167,-0.04900636151433],[-0.010766502469778,-0.022918056696653,-0.013095240108669]],[[0.022068267688155,-0.0017419318901375,-0.059156876057386],[-0.010683983564377,0.048891358077526,-0.12215013802052],[0.036452796310186,-0.038804691284895,-0.013529858551919]],[[-0.017385248094797,0.025880118831992,-0.015995280817151],[-0.029870554804802,-0.087197735905647,0.026914512738585],[-0.090718746185303,-0.047408472746611,0.028313143178821]],[[-0.042090721428394,-0.019832691177726,-0.046994134783745],[0.0082934079691768,-0.026399035006762,0.0043557747267187],[0.029681768268347,-0.0068867816589773,-0.0042935060337186]],[[-0.01123930234462,-0.017659796401858,0.051494210958481],[0.024859171360731,-0.03904265165329,0.00072419771458954],[-0.031533930450678,0.024747027084231,-0.08311814814806]],[[0.084444895386696,-0.031726650893688,-0.0012808870524168],[0.042395934462547,-0.0052923015318811,0.048106964677572],[0.060009382665157,0.0096311001107097,-0.0092082777991891]],[[0.025417374446988,-0.063541978597641,0.043824091553688],[-0.01633589528501,0.081089079380035,0.02183629758656],[0.089632041752338,0.055506054311991,0.017102053388953]],[[0.058295521885157,0.027280695736408,0.052430830895901],[0.032628241926432,0.010549323633313,-0.068879626691341],[0.068664856255054,0.0626011043787,-0.0023647176567465]],[[0.011438398621976,0.019708875566721,0.049113556742668],[0.014350047335029,-0.021715980023146,0.034314699470997],[-0.00066092581255361,0.03419741615653,-0.020621277391911]],[[-0.010884423740208,0.0068364511243999,0.0053302189335227],[0.01713364943862,0.060129970312119,0.064947105944157],[-0.013126344420016,0.024874981492758,0.032827563583851]],[[-0.006051026750356,-0.085261821746826,-0.048421151936054],[-0.062713280320168,0.067171581089497,-0.03571542352438],[-0.0010745659237728,0.012031997554004,0.036477487534285]],[[-0.034678153693676,0.034047987312078,-0.028934847563505],[-0.050040170550346,0.046902138739824,0.028621859848499],[0.027224516496062,0.0248813778162,0.039976228028536]],[[-0.010536587797105,-0.020915614441037,0.067749604582787],[0.020314004272223,0.010407737456262,0.0064079421572387],[-0.069192811846733,0.0028463515918702,-0.092782542109489]],[[0.0050959563814104,-0.053031001240015,-0.047183439135551],[-0.019342366605997,-0.0011976974783465,-0.043062999844551],[0.0043576583266258,0.0043692854233086,-0.017756253480911]],[[-0.030150085687637,-0.042134676128626,-0.001530262758024],[0.010384637862444,0.084329381585121,-0.03206130489707],[-0.069489844143391,0.075269311666489,0.038000997155905]],[[-0.0018614658620209,-0.0023936340585351,0.0045952387154102],[-0.015551079064608,-0.030464630573988,-0.0065304469317198],[-0.064030699431896,-0.090359464287758,-0.055315602570772]],[[0.051895719021559,0.00089446257334203,0.040808506309986],[0.0026368559338152,-0.048786662518978,0.039704479277134],[0.017584869638085,0.0083175776526332,-0.0029606558382511]],[[0.02237731590867,0.010659255087376,-0.040329735726118],[0.028373848646879,0.0021346788853407,-0.030598601326346],[-0.016226872801781,-0.057514190673828,0.0097158504649997]],[[-0.06355307996273,-0.018478531390429,0.015629053115845],[-0.028147924691439,-0.0071018193848431,0.020562553778291],[0.053182259202003,0.060255941003561,0.030088154599071]],[[-0.12383694946766,0.025857487693429,0.042554397135973],[-0.058770004659891,-0.010215438902378,0.031751401722431],[-0.024914467707276,-0.030904069542885,-0.057031221687794]],[[-0.013936870731413,-0.03621481731534,0.051461547613144],[0.014709260314703,-0.05434811860323,-0.0010058770421892],[0.02602225355804,-0.073971875011921,0.020533218979836]],[[-0.051016222685575,-0.042544823139906,-0.0084860352799296],[-0.017790326848626,-0.048615716397762,-0.047545596957207],[-0.018198819831014,0.027134720236063,0.035765413194895]],[[-0.023622278124094,0.001142566325143,-0.016270210966468],[0.016386730596423,-0.063769593834877,0.011442008428276],[0.018191771581769,-0.013371124863625,-0.0093447025865316]],[[0.0097362641245127,-0.015807503834367,-0.017639355733991],[-0.014183959923685,-0.003906637430191,-0.056333120912313],[0.090262867510319,0.012228014878929,-0.021376922726631]],[[-0.012132718227804,0.011717569082975,-0.021245239302516],[0.029887618497014,-0.053294375538826,-0.093132473528385],[0.015922125428915,0.018056897446513,-0.063649140298367]],[[-0.063684448599815,-0.032596506178379,-0.017363280057907],[-0.043224632740021,-0.079581774771214,-0.015298310667276],[-0.036147560924292,0.03091493435204,0.044158544391394]],[[0.036819405853748,-0.0031932247802615,0.043821550905704],[0.055869653820992,0.064903751015663,-0.018220128491521],[-0.050696957856417,-0.10015201568604,-0.057431757450104]],[[-0.12638983130455,-0.027894657105207,0.02093394100666],[0.016245171427727,-0.083557300269604,0.038680989295244],[-0.089776046574116,-0.011634786613286,-0.042038660496473]],[[-0.033352382481098,-0.0054739359766245,-0.038675673305988],[-0.02225156314671,-0.034772984683514,0.044225540012121],[-0.0067367274314165,-0.0066729043610394,0.048475481569767]],[[-0.0091857919469476,-0.024309676140547,-0.016089322045445],[0.032627064734697,0.034644059836864,-0.022890236228704],[-0.019541952759027,-0.017620697617531,0.029681481420994]],[[-0.028969952836633,-0.017857665196061,-0.033435400575399],[-0.039845280349255,-0.028189372271299,0.038731995970011],[-0.00093538290821016,0.015913665294647,0.027046894654632]],[[-0.073659434914589,-0.045556351542473,0.057579953223467],[-0.026976620778441,-0.0090272491797805,-0.013087703846395],[0.0025876048021019,-0.00087739451555535,-0.029515149071813]],[[-0.04808946326375,-0.0207479018718,-0.040451869368553],[-0.032440923154354,0.045084930956364,0.016742771491408],[0.022372949868441,0.076081648468971,0.011874407529831]],[[0.020908191800117,0.03597280010581,0.07578606903553],[-0.034082610160112,-0.065028518438339,0.01486743055284],[-0.0034302317071706,-0.040336731821299,-0.00069272250402719]],[[0.035085942596197,-0.010042536072433,-0.021647861227393],[0.00062787474598736,0.030485898256302,-0.0014127355534583],[0.047977034002542,-0.064153924584389,0.0026086594443768]],[[0.024772312492132,0.025448095053434,0.001936222310178],[-0.069571055471897,-0.061447877436876,0.00080591806909069],[-0.051016394048929,-0.029279351234436,-0.0099122636020184]],[[-0.051684185862541,-0.025080503895879,-0.040683187544346],[0.043123688548803,0.026251148432493,0.013533227145672],[-0.016135081648827,-0.048197966068983,0.052197951823473]],[[-0.0051563582383096,-0.025401264429092,-0.080005154013634],[0.012512002140284,-0.0015428349142894,-0.0054880557581782],[-0.020546028390527,0.0059251310303807,-0.066329039633274]],[[-0.11815312504768,-0.031217057257891,-0.0053629986941814],[-0.081850007176399,-0.052582185715437,-0.0048099895939231],[0.002356298500672,-0.071902610361576,-0.020092053338885]],[[-0.042124625295401,0.016066215932369,-0.025228230282664],[-0.02086178585887,0.0066210385411978,-0.0385184250772],[-0.03328849747777,0.032457508146763,-0.0016111233271658]],[[0.018360072746873,0.018506726250052,-0.046690579503775],[-0.019564351066947,0.031747180968523,-0.022067107260227],[-0.096430614590645,-0.049941617995501,-0.021232284605503]],[[-0.028662044554949,0.10176180303097,-0.061937011778355],[-0.1077810972929,-0.022986024618149,-0.071481257677078],[-0.047517597675323,0.06394898891449,0.037020333111286]],[[0.0020660376176238,0.013728120364249,-0.026449717581272],[-0.014722442254424,0.0022503016516566,-0.040616948157549],[0.020451812073588,-0.040551651269197,-0.017960609868169]],[[0.027807030826807,-0.04229548946023,-0.013176826760173],[-0.0088916076347232,0.019962459802628,0.023169174790382],[-0.01393361389637,-0.0013422054471448,0.0041975579224527]],[[-0.024878954514861,-0.041803583502769,0.011958690360188],[0.018036343157291,-0.00050554564222693,-0.00015941668243613],[-0.010047594085336,0.045239325612783,0.0068314042873681]],[[0.04696012288332,0.053086169064045,0.072259113192558],[-0.048786625266075,0.091337442398071,0.043677765876055],[0.0015327265718952,0.055445719510317,0.0089750168845057]],[[0.0087684644386172,-0.0040092458948493,0.006530859041959],[0.0092488387599587,-0.038057498633862,-0.027839822694659],[0.026321003213525,-0.019989838823676,0.0086839022114873]],[[-0.031201492995024,-0.028791194781661,0.080662332475185],[0.021957034245133,-0.086024314165115,-0.066789224743843],[0.036578483879566,-0.038062281906605,-0.027781995013356]],[[-0.067410759627819,-0.038341224193573,-0.019729917868972],[-0.0012025735341012,-0.020381225273013,-0.049964666366577],[-0.028728146106005,0.030806330963969,-0.003953299485147]],[[-0.025095790624619,-0.01080231461674,-0.017264248803258],[-0.015472501516342,-0.090431161224842,-0.062770776450634],[-0.024247931316495,-0.056215889751911,-0.10263397544622]],[[-0.027448337525129,0.037213861942291,-0.033850703388453],[-0.072425469756126,0.011566309258342,-0.083530731499195],[0.077688321471214,0.013687456026673,0.058586925268173]],[[0.042871721088886,0.050687819719315,-0.0035500666126609],[-0.023658499121666,-0.055360049009323,-0.016766166314483],[-0.022851107642055,0.048857167363167,0.022275187075138]],[[0.0015395723748952,-0.0402447655797,0.023219766095281],[0.029057214036584,0.063344940543175,0.060838457196951],[-4.5974811655469e-05,-0.029847839847207,-0.062895439565182]],[[0.0075412383303046,-0.054257314652205,-0.12385328859091],[-0.038781236857176,0.053845155984163,-0.05299986153841],[0.0090604573488235,0.0082928705960512,-0.022828038781881]],[[-0.058947958052158,-0.021219808608294,-0.0026339353062212],[-0.015540552325547,0.0094788987189531,-0.0036811509635299],[0.036848343908787,-0.028467191383243,-0.010503460653126]],[[-0.069603376090527,0.069892019033432,0.013792118057609],[0.0064551127143204,-0.09496270865202,-0.034645475447178],[-0.029100241139531,0.02326899394393,-0.036515742540359]]],[[[0.011549681425095,0.026247443631291,-0.0089225368574262],[0.04550601541996,-0.00062137446366251,-0.038456592708826],[0.020683446899056,0.036664161831141,0.037413071841002]],[[-0.001714916084893,-0.0077665075659752,0.021623495966196],[0.042939741164446,0.015800749883056,-0.020636964589357],[0.0013508962001652,-0.031650949269533,-0.048084802925587]],[[-0.052347782999277,0.003165997331962,-0.042460560798645],[0.0026594144292176,-0.027998382225633,0.032566651701927],[0.041831590235233,-0.070869892835617,-0.0059204213321209]],[[-0.098524622619152,0.017615249380469,-0.025103708729148],[-0.023134047165513,0.036353908479214,-0.022910946980119],[0.042503755539656,0.062282152473927,-0.075006522238255]],[[-0.012978316284716,-0.063559606671333,-0.037364650517702],[0.064545080065727,-0.044227842241526,-0.047475900501013],[-0.03733666986227,0.020926266908646,0.017216889187694]],[[-0.00035294250119478,-0.02819056250155,-0.043770898133516],[-0.19521076977253,0.041426137089729,0.033275857567787],[0.062593095004559,-0.010371626354754,0.028517859056592]],[[-0.043148938566446,-0.078978434205055,-0.032784614712],[-0.0059829843230546,-0.035033229738474,-0.023793814703822],[-0.0073289186693728,0.013265855610371,0.056320879608393]],[[0.011693846434355,0.054343041032553,-0.05075653642416],[0.040987450629473,0.044902503490448,0.13226316869259],[0.010631963610649,-0.00020179111743346,0.041990995407104]],[[0.020103489980102,0.016260106116533,-0.0039931749925017],[-0.029748504981399,-0.031706634908915,-0.0058504682965577],[-0.012138209305704,-0.024282980710268,-0.019431073218584]],[[-0.028745563700795,-0.0099639752879739,0.0017472440376878],[0.0020420080982149,-0.0037368235643953,0.0073073231615126],[0.0072027291171253,-0.043508492410183,-0.0061382343992591]],[[0.052553866058588,-0.029549056664109,-0.049391757696867],[-0.047061156481504,-0.0079600792378187,-0.036352843046188],[-0.013951097615063,-0.079252704977989,0.0016901697963476]],[[-0.04230847209692,-0.036982078105211,-0.0057960646227002],[-0.050797946751118,0.039154943078756,-0.015283029526472],[0.041422788053751,-0.019169306382537,0.087923981249332]],[[0.010814627632499,-0.037652723491192,-0.091341368854046],[0.0067832977510989,-0.12615914642811,-0.01991388015449],[-0.015715328976512,-0.059847962111235,-0.033876061439514]],[[0.0020922946278006,0.009006773121655,0.14372415840626],[-0.015592090785503,-0.073246218264103,0.015326814725995],[-0.061638738960028,-0.10029987245798,-0.027090448886156]],[[0.090995222330093,0.014054132625461,0.064582020044327],[0.041941683739424,-0.023937437683344,-0.014692776836455],[-0.0064528086222708,0.072796747088432,0.093356497585773]],[[-0.05872979387641,-0.11358588933945,-0.044311948120594],[-0.018071720376611,-0.032277334481478,0.00074027047958225],[0.041943464428186,-0.010714624077082,-0.0046318639069796]],[[-0.0039887032471597,0.074218846857548,0.019059443846345],[0.041397489607334,0.059546738862991,0.068161405622959],[0.092742525041103,0.10109407454729,0.11503545194864]],[[-0.035570628941059,-0.029793752357364,-0.069399744272232],[-0.052134715020657,0.092905104160309,-0.00019418200827204],[0.013376327231526,0.051167447119951,0.070636570453644]],[[-0.042689498513937,0.010158327408135,-0.065577909350395],[-0.082216061651707,0.032260090112686,-0.030586339533329],[0.015458393841982,0.0022062272764742,-0.016326036304235]],[[0.041414648294449,0.0083733545616269,0.015031273476779],[0.023674979805946,0.00020429065625649,0.061388574540615],[-0.045518681406975,-0.0071112080477178,0.02601682394743]],[[0.023939751088619,-0.04607080668211,-0.00060701312031597],[0.013745724223554,-0.028851725161076,-0.060671918094158],[-0.03562980890274,-0.10271823406219,-0.036895558238029]],[[-0.042813919484615,0.015687067061663,-0.013327769935131],[0.0095909731462598,-0.01775012165308,-0.074864745140076],[0.024559464305639,-0.020016441121697,-0.039369162172079]],[[0.024231057614088,-0.045206878334284,-0.054621372371912],[0.026214921846986,-0.0066375932656229,-0.0361567735672],[0.019941980019212,0.034629236906767,0.026517689228058]],[[0.0051587480120361,-0.043116874992847,-0.0077511114068329],[-0.037615172564983,0.038871187716722,-0.03017501719296],[0.0054779569618404,-0.040483351796865,0.042903229594231]],[[0.026100380346179,0.065997689962387,0.026344388723373],[0.041866928339005,0.032485730946064,0.041386347264051],[0.072011820971966,0.024446403607726,-0.0011590024223551]],[[0.023563403636217,0.016814276576042,0.014407550916076],[0.056549809873104,-0.024904081597924,0.032832078635693],[0.016353884711862,-0.033953245729208,-0.0057213301770389]],[[-0.032320529222488,-0.029064178466797,-0.061086680740118],[-0.071693778038025,0.018529422581196,0.017645014449954],[0.065186008810997,0.054620206356049,0.0021665543317795]],[[-0.018933996558189,0.058487594127655,0.050491776317358],[-0.042797736823559,-0.0089983521029353,-0.044117778539658],[-0.083286374807358,-0.016031531617045,-0.03827253729105]],[[-0.07550336420536,-0.0096101453527808,-0.083098776638508],[-0.044640526175499,-0.0085763083770871,-0.0087909400463104],[-0.063368126749992,0.028779217973351,-0.062929086387157]],[[-0.068322315812111,0.030530234798789,0.019444536417723],[-0.0018808695022017,0.007782491389662,-0.004342732951045],[-0.036217637360096,0.019575914368033,0.015532148070633]],[[0.0098341088742018,-0.072783805429935,-0.078388728201389],[0.058536518365145,0.014587808400393,-0.0015632130671293],[0.025885591283441,0.024873342365026,-0.011113689281046]],[[-0.034810446202755,-0.013112328015268,-0.069265529513359],[-0.00083117437316105,-0.027076236903667,0.026508059352636],[0.066441833972931,0.0060775689780712,-0.034027975052595]],[[0.01199169550091,-0.054114833474159,0.034369569271803],[0.004812334664166,0.0228032451123,0.0068803378380835],[0.0090371277183294,0.011299406178296,-0.026967771351337]],[[-0.00081200641579926,0.017474357038736,-0.0025437828153372],[0.016453839838505,-0.025128854438663,-0.030973335728049],[-0.042256101965904,-0.0084414128214121,-0.032781600952148]],[[-0.0022131085861474,-0.012519221752882,0.095007158815861],[-0.021741181612015,0.11975695937872,0.036201652139425],[0.0027792549226433,-0.00048635408165865,-0.013881588354707]],[[-0.0041230516508222,-0.053078010678291,-0.073651105165482],[-0.084304183721542,0.0034836360719055,0.0083536710590124],[-0.022902622818947,0.0060647698119283,0.072420962154865]],[[-0.096869632601738,0.0071865827776492,-0.044432569295168],[0.021245105192065,-0.060177389532328,-0.0025977217592299],[0.0037617441266775,-0.018676644191146,0.033617943525314]],[[0.0043474822305143,-0.10967962443829,-0.068691313266754],[0.049103427678347,0.058321800082922,0.076434805989265],[0.023470574989915,0.075561739504337,-0.027379877865314]],[[-0.046296339482069,-0.028208684176207,-0.016543222591281],[-0.071641400456429,-0.02336123213172,-0.017159432172775],[-0.034286443144083,0.028483174741268,-0.085799895226955]],[[-0.013580719009042,-0.048093125224113,-0.051247540861368],[0.024601209908724,-0.024836525321007,0.018018862232566],[0.0074394079856575,-0.0052780294790864,-0.0011214093538001]],[[-0.012966551817954,-0.13111443817616,0.036047831177711],[-0.0068686506710947,-0.066770382225513,0.1721399128437],[-0.036808833479881,0.077473111450672,0.039019901305437]],[[-0.029647016897798,0.030766578391194,0.05893387272954],[0.051680874079466,0.045808747410774,0.022247333079576],[0.067219883203506,-0.034609504044056,0.019127253443003]],[[0.024993151426315,-0.0047221374697983,-0.033573135733604],[-0.015414813533425,0.033040151000023,0.046703513711691],[0.090719364583492,0.01764627918601,0.036252222955227]],[[0.033162262290716,0.10597078502178,-0.026079304516315],[-0.012733889743686,-0.072136580944061,-0.02766066044569],[0.023762624710798,0.011358019895852,0.02631519921124]],[[0.0082727735862136,0.027206059545279,-0.0067814160138369],[-0.012639561668038,-0.043585103005171,0.042032703757286],[0.016161793842912,-0.026659300550818,-0.020917454734445]],[[0.092981241643429,-0.028158728033304,-0.017359893769026],[0.00082498718984425,0.07023973762989,0.014631615020335],[0.016174212098122,-0.007813822478056,-0.019005302339792]],[[0.016997156664729,-0.03383319824934,-0.00028417131397873],[-0.058418557047844,-0.049914259463549,-0.022685412317514],[0.017937622964382,0.07827240973711,0.033536784350872]],[[-0.06182000413537,0.044280987232924,-0.050372969359159],[0.054710820317268,0.073497518897057,0.025140799582005],[0.022293504327536,0.083390101790428,0.012166978791356]],[[0.027786254882812,0.055581238120794,-0.017607320100069],[0.015303683467209,0.064686566591263,-0.012431611306965],[0.014980629086494,0.0092717409133911,-0.0018545809434727]],[[0.00015353281924035,0.044086564332247,0.024735033512115],[0.01351654343307,0.035726178437471,-0.0041472748853266],[-0.036904852837324,-0.028674757108092,0.0098451552912593]],[[-0.077665969729424,-0.070604510605335,-0.018479704856873],[-0.043609440326691,-0.0065390975214541,-0.036766264587641],[-0.0088642928749323,-0.038267843425274,-0.00035100770764984]],[[0.02067762054503,0.035632763057947,0.032787412405014],[0.027226608246565,-0.0065223234705627,0.0098271807655692],[0.12666392326355,-0.021531447768211,-0.088976077735424]],[[0.10046938061714,0.044518880546093,-0.008359532803297],[0.01369253359735,0.089870788156986,0.02335174754262],[0.070855475962162,0.08352667838335,-0.015535875223577]],[[0.035534430295229,-0.0027494241949171,0.12346468865871],[0.045874107629061,-0.0027854789514095,0.067245364189148],[0.026806076988578,-0.032785590738058,0.0090589402243495]],[[-0.0050455089658499,-0.0015985263744369,-0.048935171216726],[0.0088415900245309,-0.0040054433047771,0.020568447187543],[0.035662852227688,-0.014443945139647,0.048347156494856]],[[0.043401047587395,-0.066341556608677,0.11079194396734],[0.043193686753511,0.0036470850463957,-0.044293574988842],[0.0097736874595284,-0.047232616692781,-0.042345263063908]],[[-0.028969405218959,-0.086480483412743,-0.065293483436108],[0.0023183925077319,0.022960543632507,-0.037118814885616],[0.025204353034496,-0.023778531700373,-0.061694581061602]],[[-0.029480688273907,-0.0006197948823683,-0.0031753508374095],[-0.017811853438616,0.0074412296526134,-0.0018459459533915],[-0.012436779215932,0.016091134399176,-0.10081994533539]],[[-0.037275791168213,0.011139323934913,-0.018820183351636],[-0.033010669052601,0.012559501454234,0.17562979459763],[0.062795169651508,0.055989425629377,0.1153326779604]],[[-0.0049784728325903,0.081956833600998,0.11110504716635],[0.020192284137011,-0.010205586440861,-0.018458839505911],[-0.042781800031662,-0.013044033199549,-0.047030989080667]],[[0.028000973165035,-0.017945770174265,-0.0042721703648567],[-0.0015110286185518,0.044715777039528,0.021907517686486],[0.038709316402674,0.06669607013464,0.023838782683015]],[[0.04514267668128,0.037729982286692,0.0047476547770202],[0.057648900896311,-0.059999965131283,-0.083274610340595],[0.031044209375978,-0.010433514602482,-0.034065894782543]],[[0.018291410058737,-0.014425716362894,0.027669034898281],[0.02070801705122,0.0087137781083584,-0.012562002055347],[-0.017935087904334,-0.021480182185769,0.0045531149953604]],[[-0.066717468202114,-0.0020206465851516,-0.029705710709095],[-0.022093256935477,-0.041668049991131,0.076521426439285],[-0.0017060873797163,-0.013985224068165,0.051524363458157]]],[[[0.0089649008587003,0.073587901890278,-0.018704317510128],[-0.026703547686338,-0.057000640779734,-0.023750504478812],[0.05398977547884,-0.0061293700709939,0.036990523338318]],[[-0.058839183300734,0.0098846303299069,-0.01034171693027],[0.033699873834848,-0.019725758582354,0.02126619964838],[0.029437221586704,-0.013826249167323,0.018937146291137]],[[0.009638580493629,-0.0078282672911882,-0.061560671776533],[0.033973503857851,-0.023977164179087,-0.048107128590345],[0.011641247197986,0.030609669163823,-0.022718710824847]],[[-0.0067022508010268,-0.024122223258018,-0.026366930454969],[-0.02304476685822,-0.086885184049606,-0.029376259073615],[-0.027159878984094,-0.0094951139762998,0.058282423764467]],[[-0.03685674443841,0.017507333308458,0.0039906036108732],[0.013559306040406,-0.053004153072834,-0.02048933878541],[-0.014075502753258,-0.030543746426702,-0.01739134080708]],[[-0.099522843956947,0.076084442436695,-0.063809722661972],[0.037281952798367,0.047086350619793,-0.05978113040328],[-0.0052657299675047,0.038335889577866,0.063151188194752]],[[-0.043069291859865,0.011549665592611,0.020777499303222],[-0.046710398048162,-0.033096950501204,0.014641198329628],[0.0096290912479162,-0.010390507988632,-0.0062419683672488]],[[-0.060555476695299,0.082123525440693,0.020678305998445],[0.066565074026585,0.044273465871811,0.035503573715687],[0.015957567840815,-0.040608678013086,0.047324817627668]],[[-0.12058228254318,0.0014488507295027,-0.017287064343691],[-0.060234021395445,-0.077035203576088,0.025693392381072],[-0.019525963813066,0.0033711530268192,-0.070818088948727]],[[0.067678354680538,-0.027263237163424,-0.0091331852599978],[-0.018536107614636,-0.086079403758049,-0.026220040395856],[0.033785603940487,-0.01861672103405,-0.1089364439249]],[[-0.058389931917191,-0.039284188300371,-0.012891517020762],[0.0063886307179928,-0.075210690498352,-0.012637316249311],[0.054077904671431,0.041465505957603,-0.0091348122805357]],[[-0.0014061399269849,-0.057723820209503,-0.0023850719444454],[-0.038540184497833,-0.051614180207253,-0.025541955605149],[0.005017701536417,-0.021145129576325,0.0012289171572775]],[[0.049033366143703,0.090646795928478,0.046493731439114],[-0.016271473839879,0.012778637930751,-0.046628925949335],[-0.02199736610055,0.011161231435835,-0.057638309895992]],[[-0.0094150742515922,0.080955728888512,0.0060316594317555],[0.0040960274636745,0.042224664241076,0.043544624000788],[-0.011867012828588,0.058744173496962,0.027896357700229]],[[-0.051570728421211,-0.0091020260006189,0.062531508505344],[0.090011261403561,-0.024623418226838,0.011871296912432],[0.028075935319066,0.20340624451637,0.016705701127648]],[[-0.025518029928207,-0.033157307654619,-0.05272363871336],[-0.029879691079259,-0.021952060982585,-0.097410276532173],[0.081623606383801,-0.075847469270229,-0.014926064759493]],[[0.036798369139433,-0.047746021300554,-0.019795011729002],[0.1169804930687,0.066608272492886,0.048855803906918],[0.01500731986016,-0.026892945170403,-0.048578299582005]],[[-0.0072656371630728,0.056118424981833,0.034164160490036],[-0.042028859257698,-0.074879288673401,0.059706743806601],[0.01695260964334,-0.0031186728738248,0.0059967464767396]],[[0.028533974662423,-0.072855204343796,0.029174895957112],[-0.030477238819003,0.023789310827851,-0.0023318391758949],[0.027120806276798,-0.0013062552316114,-0.036694843322039]],[[0.025718251243234,0.037985883653164,-0.072673551738262],[0.092588827013969,-0.0039276904426515,0.012019081041217],[0.0031780260615051,-0.019577985629439,-0.033307921141386]],[[0.028046723455191,0.049594428390265,0.0011011918541044],[-0.0042456788942218,-0.021280454471707,-0.014259433373809],[0.043030831962824,-0.016886293888092,0.096633747220039]],[[-0.033173639327288,-0.025539087131619,-0.033612310886383],[-0.018168998882174,-0.048079337924719,0.030783277004957],[-0.021542282775044,-0.018920253962278,0.001723121968098]],[[0.053280774503946,-0.076023958623409,0.024434944614768],[-0.032052595168352,-0.0063960961997509,-0.01339814811945],[-0.014412638731301,0.016154486685991,0.051666937768459]],[[-0.02248802781105,0.062646068632603,-0.047124058008194],[0.094079293310642,0.0037215985357761,-0.068717963993549],[-0.035923104733229,0.0052878125570714,-0.14755347371101]],[[-0.034343414008617,0.055344227701426,0.031600419431925],[0.013705413788557,0.00031936098821461,0.011151324026287],[0.068597204983234,0.0033367958385497,0.05153850838542]],[[0.061170369386673,0.05796654522419,-0.0021577591542155],[0.00027625815710053,0.032724663615227,0.060160212218761],[-0.014607771299779,-0.075070589780807,-0.074952848255634]],[[-0.05919124558568,0.011388227343559,0.0013408088125288],[-0.0170366037637,-0.04347263649106,-0.038964819163084],[-0.027048837393522,0.01950329169631,0.016006734222174]],[[-0.018474590033293,-0.0825335085392,0.082226946949959],[-0.031139366328716,-0.073847696185112,-0.063483327627182],[-0.040247637778521,-0.061602644622326,0.037874784320593]],[[0.0026933713816106,0.0052958065643907,0.022915728390217],[-0.055968295782804,-0.047393891960382,0.032234400510788],[0.01959522254765,-0.070216797292233,-0.060773622244596]],[[0.050521492958069,0.067577801644802,-0.04427782073617],[0.030625957995653,0.077840477228165,-0.079314887523651],[0.054314468055964,0.0023831492289901,-0.0072828088887036]],[[0.034028925001621,-0.031557969748974,-0.0094561474397779],[0.020120196044445,-0.011329622007906,-0.090685181319714],[-0.0071416758000851,0.060697659850121,0.10632292181253]],[[-0.055386535823345,-0.02306023798883,0.038018111139536],[-0.12367728352547,0.027928555384278,0.032393220812082],[-0.17523834109306,0.046716034412384,-0.043945271521807]],[[0.098024792969227,0.042502071708441,0.18003597855568],[-0.058103628456593,-0.0021036055404693,0.053685870021582],[-0.16767902672291,-0.099872939288616,-0.073929071426392]],[[0.047199048101902,0.045309942215681,0.02082340605557],[0.075050450861454,-0.019175203517079,-0.02408529818058],[0.043205138295889,-0.023002484813333,-0.17975863814354]],[[0.017534717917442,-0.0048384675756097,-0.031290419399738],[0.044099003076553,0.00068603141698986,0.032131679356098],[0.043862618505955,-0.080128684639931,-0.087689347565174]],[[-0.07321459800005,-0.009690030477941,-0.013292448595166],[-0.046381626278162,0.043236404657364,-0.0024239448830485],[0.056529514491558,-0.011305143125355,-0.0099898418411613]],[[0.025955975055695,0.028679067268968,0.037246935069561],[-0.013811599463224,0.0032903794199228,-0.0090958951041102],[0.022936066612601,-0.041491914540529,0.011906639672816]],[[0.068591728806496,-0.029565373435616,-0.016952887177467],[-0.015287926420569,0.1383538544178,0.1272389292717],[-0.065748438239098,-0.072603464126587,-0.10553237050772]],[[0.060335397720337,-0.020649323239923,-0.074726358056068],[-0.060826431959867,-0.026209814473987,-0.049710940569639],[-0.072800509631634,-0.067576207220554,-0.024644758552313]],[[0.051908385008574,-0.022834533825517,0.036652106791735],[0.058771543204784,-0.021596981212497,-0.090571649372578],[-0.038493379950523,-0.088643498718739,0.010476914234459]],[[-0.0543546192348,-0.065176576375961,-0.048193860799074],[0.048147186636925,-0.01375412940979,0.0045730187557638],[-0.0017431274754927,-0.026916034519672,0.030897391960025]],[[-0.059608951210976,0.010157362557948,-0.049814149737358],[-0.11695700138807,-0.11912117898464,-0.0042160074226558],[-0.087527386844158,0.06030984967947,0.01887284219265]],[[-0.038890987634659,-0.064391493797302,0.13337521255016],[-0.063390128314495,0.064121775329113,0.067773297429085],[0.034217443317175,0.020292975008488,0.042244888842106]],[[-0.011203463189304,0.045315589755774,-0.0034239026717842],[0.0029138212557882,-0.046106778085232,0.029404638335109],[-0.017575062811375,-0.014562305994332,-0.12191923707724]],[[0.061393864452839,-0.045739773660898,-0.04365635663271],[-0.017810260877013,0.010523095726967,-0.020997723564506],[0.03604369983077,0.0041592582128942,-0.043542038649321]],[[-0.0040169544517994,-0.013400149531662,-0.01667533069849],[0.033880285918713,0.010383737273514,-0.051455963402987],[-0.09089794754982,-0.042795244604349,0.035180971026421]],[[-0.037325277924538,-0.010787109844387,0.050629209727049],[0.031184492632747,0.091686375439167,0.038295190781355],[0.00098428374622017,-0.10525370389223,-0.096448585391045]],[[0.061494961380959,-0.042166963219643,-0.013927232474089],[-9.2230238806223e-06,0.027852004393935,-0.048010990023613],[-0.024246862158179,0.023129068315029,-0.00090985069982708]],[[0.02344461902976,0.030359826982021,0.020591555163264],[-0.059595707803965,-0.0027725175023079,-0.01885805465281],[0.033727638423443,-0.093005083501339,0.013770650140941]],[[-0.067696303129196,-0.083375312387943,-0.079479992389679],[0.00458102254197,0.0014325397787616,0.0045203813351691],[0.038249064236879,0.0088945776224136,-0.057340513914824]],[[0.027456007897854,-0.0056445533409715,0.028234513476491],[-0.029697773978114,-0.01009173784405,-0.074400089681149],[0.039799220860004,-0.045943327248096,0.00012421130668372]],[[-0.086674943566322,0.015988813713193,0.077355667948723],[0.063339121639729,-0.0064946468919516,0.0025919619947672],[0.023089284077287,0.025774784386158,-0.03660275042057]],[[-0.081801578402519,-0.014386421069503,-0.046584527939558],[-0.014932548627257,0.051703836768866,-0.0052395733073354],[-0.045726139098406,0.019064029678702,-0.0071760751307011]],[[0.12765315175056,0.076608784496784,0.010877730324864],[0.029432641342282,0.10845675319433,0.067964315414429],[0.011250552721322,0.11213627457619,0.023352243006229]],[[0.051388707011938,-0.028064677491784,0.056895058602095],[-0.0070159710012376,0.05031219497323,0.050739783793688],[-0.075852304697037,-0.064123742282391,-0.004359140060842]],[[-0.083747357130051,-0.0066230036318302,0.0026766746304929],[-0.07101533561945,-0.012000621296465,-0.06231352686882],[-0.040883101522923,0.0077498876489699,-0.037482924759388]],[[-0.03946141526103,-0.049463260918856,-0.0093016708269715],[-0.016212146729231,-0.04153585806489,0.0027015765663236],[-7.4001887696795e-05,0.0122912209481,-0.0134651446715]],[[0.0038917814381421,-0.0060970750637352,-0.021098412573338],[0.029819369316101,0.085497058928013,-0.066454976797104],[0.0073946872726083,-0.017771515995264,-0.061302218586206]],[[-0.0082615464925766,-0.072321847081184,-0.036771561950445],[-0.051658205688,0.022185256704688,0.099640063941479],[-0.018936662003398,0.016113378107548,0.063407108187675]],[[-0.0080649089068174,0.042298868298531,-0.0048056012019515],[0.010445152409375,0.061819117516279,-0.033571589738131],[0.044625002890825,-0.028300207108259,0.0083716763183475]],[[0.032900992780924,0.03870153427124,0.018521428108215],[-0.03610335290432,0.0015725382836536,-0.0407286696136],[0.0098235374316573,-0.066148370504379,-0.077535651624203]],[[-0.063911452889442,0.029969705268741,0.025700230151415],[-0.0037775028031319,-0.02805352024734,-0.023891016840935],[0.022691475227475,-0.0034530174452811,-0.012428900226951]],[[-0.0094805425032973,-0.052485998719931,0.045184075832367],[-0.032409243285656,-0.0032274022232741,0.048332553356886],[0.046877350658178,-0.061931416392326,-0.047811225056648]],[[0.070158712565899,0.045227814465761,0.038718700408936],[0.050015915185213,-0.046698372811079,-0.062868170440197],[0.026543626561761,0.0096539333462715,-0.020429683849216]]],[[[0.14099858701229,-0.079077430069447,-0.063266716897488],[0.018424108624458,0.078831017017365,-0.0018620868213475],[-0.0086681982502341,0.044366113841534,0.12005933374166]],[[0.076497331261635,-0.16141819953918,0.14971429109573],[0.031604122370481,-0.20325900614262,-0.043130379170179],[0.021612463518977,0.080300748348236,-0.064089946448803]],[[0.015708830207586,0.030148250982165,-0.050654333084822],[-0.055364076048136,0.017163509503007,-0.069099478423595],[-0.05111288279295,0.017974127084017,-0.076974764466286]],[[-0.027434030547738,-0.0093383779749274,-0.061492320150137],[-0.046789143234491,0.03584199398756,-0.017033468931913],[0.09196962416172,-0.039375774562359,-0.043645169585943]],[[-0.057991158217192,0.14681918919086,0.054264727979898],[0.036712784320116,-0.076362051069736,0.0023757708258927],[0.010479390621185,-0.071255095303059,-0.1356502622366]],[[-0.013113065622747,-0.034097000956535,0.14431521296501],[-0.079321339726448,-0.039128050208092,-0.024912988767028],[0.11230693757534,-0.038715660572052,0.0032732067629695]],[[-0.053008124232292,-0.029556341469288,-0.0010078180348501],[0.050210818648338,-0.038942016661167,-0.060051117092371],[0.021249396726489,0.020390044897795,0.050245068967342]],[[-0.0099126230925322,-0.11685290187597,0.025034273043275],[0.083177708089352,0.01118969079107,0.071243777871132],[0.10784512013197,0.071590691804886,0.041224475950003]],[[0.0081997681409121,-0.10758771747351,0.091957956552505],[-0.035479102283716,0.083403706550598,0.0598469004035],[-0.019718421623111,-0.078187622129917,-0.095301933586597]],[[0.097406804561615,-0.043615393340588,0.047884617000818],[0.0074389660730958,0.0086787259206176,0.024040387943387],[0.099826157093048,-0.030900742858648,-0.050550200045109]],[[-0.0008188656065613,-0.0090403845533729,-0.1467999368906],[0.010549085214734,0.14899176359177,0.036995701491833],[-0.086892627179623,0.09040267765522,0.050153139978647]],[[0.032175995409489,0.0030731603037566,-0.04774558916688],[-0.064371407032013,-0.0095510967075825,0.04258843883872],[0.040058471262455,0.054968904703856,0.053794097155333]],[[-0.078621387481689,0.027066821232438,0.0019634359050542],[-0.023352986201644,-0.093585900962353,0.0027032676152885],[0.069431006908417,-0.25720176100731,-0.024350667372346]],[[-0.036879952996969,-0.014746109955013,0.0086512779816985],[-0.1983647197485,0.014894493855536,-0.054656732827425],[-0.08835294097662,-0.056995455175638,0.044122342020273]],[[-0.055420894175768,0.021710036322474,-0.021319897845387],[0.012117411009967,-0.079948596656322,-0.098162353038788],[0.017808254808187,-0.034104157239199,-0.060154866427183]],[[-0.065217956900597,0.0052352915517986,0.069310672581196],[-0.047334119677544,-0.07205943018198,0.052777338773012],[-0.025361364707351,0.031304348260164,-0.002238865243271]],[[-0.053790017962456,0.13323076069355,-0.10646036267281],[-0.052921030670404,-0.0035287188366055,-0.073083870112896],[-0.0082664992660284,-0.11799095571041,-0.024392010644078]],[[0.010192417539656,-0.14282415807247,-0.026582827791572],[0.034504637122154,-0.059199374169111,-0.038090594112873],[0.056107878684998,0.046531680971384,0.011274029500782]],[[-0.044399570673704,-0.057296499609947,-0.016988283023238],[0.0082747573032975,-0.079067647457123,0.016779918223619],[-0.0062163271941245,-0.07326815277338,-0.036470990628004]],[[-0.10696547478437,0.067165143787861,-0.087881498038769],[-0.027346469461918,0.03163780644536,0.074877813458443],[-0.070137210190296,-0.013721121475101,0.0032798005267978]],[[0.13791237771511,0.12153209745884,-0.12010082602501],[-0.013052861206234,0.002242871792987,-0.09512023627758],[0.075074970722198,0.16673867404461,0.072642162442207]],[[0.12190667539835,0.082427680492401,0.12552104890347],[-0.052871398627758,-0.062672920525074,-0.01157786604017],[0.006161343306303,-0.17524056136608,-0.085717096924782]],[[0.015541405417025,-0.034167658537626,-0.057412099093199],[0.021692428737879,0.0080955466255546,-0.038166116923094],[0.027108328416944,0.03306008130312,0.0048535908572376]],[[0.012641796842217,-0.059238504618406,0.033788695931435],[-0.10183376818895,-0.027162773534656,-0.018894741311669],[0.048472814261913,0.0073225535452366,-0.010615650564432]],[[0.071893788874149,0.0030760313384235,-0.013355718925595],[-0.0020395517349243,0.16905373334885,-0.1296569108963],[0.017412459477782,-0.0088093318045139,0.064837507903576]],[[0.05495248734951,0.0031019740272313,0.060430705547333],[0.0280885938555,0.097430102527142,0.010396046563983],[0.044203825294971,-0.091931454837322,0.05877285823226]],[[-0.021041378378868,-0.13364517688751,0.0066144587472081],[-0.023413872346282,-0.12702806293964,-0.027116008102894],[-0.0092012658715248,-0.13622789084911,-0.0889907553792]],[[-0.022360542789102,0.081053622066975,0.013503673486412],[0.0088686533272266,0.053056459873915,0.017513759434223],[-0.079242460429668,-0.00058258348144591,0.11686444282532]],[[-0.016120532527566,0.0017723425989971,0.042739149183035],[0.042691506445408,0.011687734164298,-0.0011219187872484],[-0.012842756696045,-0.039308171719313,-0.0025461465120316]],[[-0.036807380616665,0.061500385403633,-0.0019432350527495],[-0.010486708022654,-0.0026214821264148,-0.085823990404606],[-0.034838747233152,0.043193887919188,0.034331876784563]],[[0.017971951514482,-0.079304337501526,-0.037176866084337],[0.065519995987415,-0.11408965289593,-0.039223853498697],[0.1312030851841,0.092137113213539,-0.09908489137888]],[[0.0087216729298234,-0.069463282823563,0.069465711712837],[0.0085466802120209,-0.098770178854465,0.12375148385763],[0.044628240168095,-0.076512902975082,0.040729139000177]],[[-0.023451618850231,-0.16054029762745,-0.039264909923077],[0.1671040058136,-0.044006075710058,-0.04287776350975],[-0.0067092976532876,0.043046694248915,-0.055461794137955]],[[-0.040373466908932,-0.07369601726532,0.059168886393309],[-0.049051370471716,0.099649302661419,0.0046895570121706],[-0.045565783977509,-0.088832184672356,0.031991150230169]],[[-0.08432936668396,0.042390920221806,0.071702137589455],[0.012265719473362,0.057349663227797,0.031911980360746],[-0.001920142560266,0.11103609204292,0.046101745218039]],[[0.045545488595963,0.021371455863118,-0.13806204497814],[0.02129615470767,-0.053534969687462,-0.028981288895011],[0.010318832471967,0.090469688177109,0.087840564548969]],[[-0.042877804487944,-0.10733695328236,-0.1486558765173],[0.02041251398623,-0.087085373699665,-0.026351137086749],[0.11640868335962,0.092404462397099,0.074511684477329]],[[0.083208337426186,-0.00011130001803394,-0.21813870966434],[-0.027092982083559,0.20637392997742,-0.0068074949085712],[-0.077579483389854,-0.077848248183727,-0.030604826286435]],[[-0.097248733043671,0.088404804468155,-0.0034558249171823],[-0.033901754766703,-0.059149999171495,-0.023468254134059],[-0.022306593134999,-0.0048322360962629,0.046363461762667]],[[-0.011108132079244,-0.24020662903786,-0.05254739895463],[0.059589464217424,-0.085860595107079,0.034301526844501],[0.022325206547976,0.0034166490659118,-0.036016400903463]],[[0.035971853882074,-0.0083287907764316,0.017790541052818],[0.030854927375913,0.10044211894274,0.032955281436443],[0.031537894159555,0.064451865851879,0.046726282685995]],[[-0.066500633955002,0.065006338059902,0.14278295636177],[-0.047687239944935,0.02402008511126,0.024601381272078],[0.031442511826754,-0.025471549481153,0.087831854820251]],[[0.039797674864531,-0.027552276849747,-0.064733579754829],[0.068110711872578,-0.0067682028748095,0.071268245577812],[0.001427065115422,-0.0094391852617264,-0.060048446059227]],[[0.11730933189392,0.071277730166912,0.039936650544405],[0.092711798846722,-0.07422548532486,-0.027947915717959],[0.024897294119,0.068556994199753,0.064545296132565]],[[0.019642196595669,0.17868937551975,-0.21922421455383],[-0.074415937066078,0.21653173863888,-0.037090886384249],[-0.15527747571468,0.011277455836535,-0.064109086990356]],[[0.018694661557674,-0.012049949727952,0.18877302110195],[-0.13503883779049,-0.10456715524197,0.044034160673618],[0.082412764430046,-0.22265776991844,0.073231101036072]],[[0.054820220917463,0.1274384111166,0.030303124338388],[-0.050590772181749,-0.029460614547133,0.050986897200346],[0.0059128412976861,0.046907849609852,-0.21429848670959]],[[-0.03743364661932,0.084304377436638,-0.06274338811636],[-0.0081659574061632,0.0086306519806385,0.10598414391279],[-0.096852570772171,0.0022247391752899,-0.072427704930305]],[[-0.060632325708866,0.046850651502609,-0.025251034647226],[0.049497306346893,-0.13266848027706,0.046654094010592],[0.0077302544377744,-0.014911298640072,-0.067868016660213]],[[-0.014238330535591,0.15911337733269,0.033678352832794],[-0.071343101561069,0.043101463466883,-0.013618043623865],[0.0043553588911891,-0.0892673432827,-0.06839656829834]],[[0.02477946691215,-0.017731020227075,-0.013799323700368],[-0.0079556433483958,-0.11522088199854,-0.028256986290216],[-0.033928990364075,0.067461274564266,0.048937555402517]],[[-0.038120325654745,-0.014298883266747,-0.065946750342846],[0.018574066460133,-0.024996662512422,0.088810004293919],[-0.029492815956473,-0.025140946730971,-0.0058920597657561]],[[-0.047170273959637,-0.025870077311993,0.09062997251749],[0.080057188868523,0.052611969411373,0.043973036110401],[0.024329077452421,0.067284695804119,-0.027990249916911]],[[-0.14686726033688,0.15500590205193,0.14843587577343],[-0.028587596490979,0.055391073226929,0.11805962026119],[-0.028383577242494,0.088571563363075,-0.0091994246467948]],[[-0.021545436233282,-0.09307573735714,-0.16502201557159],[0.1415368616581,0.058283917605877,0.063569039106369],[0.026347002014518,-0.10350131243467,-0.057879012078047]],[[-0.013929964974523,0.00057222216855735,0.090449713170528],[-0.026661368086934,0.081750109791756,0.07984397560358],[-0.013985763303936,0.011266329325736,0.035238899290562]],[[-0.24885305762291,-0.15515530109406,-0.0068364297039807],[-0.13959124684334,-0.040500994771719,-0.084126926958561],[0.032369092106819,0.0053288405761123,0.020402302965522]],[[0.016451999545097,0.074650354683399,-0.11218354105949],[-0.0087319919839501,0.10477292537689,-0.023230450227857],[-0.063039354979992,-0.023211991414428,-0.039313156157732]],[[0.088634371757507,-0.025282893329859,0.027526376768947],[-0.023341719061136,0.061498630791903,0.060706987977028],[0.04993487149477,-0.07129018753767,-0.061360087245703]],[[-0.028780423104763,0.067784786224365,0.02911365032196],[-0.00038420749478973,-0.091841883957386,0.055358171463013],[-0.025050669908524,-0.040511969476938,0.0031011020764709]],[[-0.0035318972077221,-0.090624444186687,0.13052055239677],[0.096456259489059,-0.069528706371784,0.0013059217017144],[0.0076889507472515,0.067661717534065,-0.11870461702347]],[[0.1614196151495,0.16247169673443,-0.15385696291924],[0.010014046914876,0.093647547066212,-0.14077281951904],[0.0057768314145505,-0.050624031573534,-0.068957261741161]],[[0.16971336305141,0.053866021335125,-0.12048061937094],[-0.066607236862183,-0.017031392082572,0.070293202996254],[0.0106550604105,-0.055812932550907,0.13108801841736]],[[-0.057546429336071,-0.096034027636051,0.095038838684559],[-0.076786704361439,-0.12144114077091,0.12617434561253],[0.024008834734559,-0.171152099967,0.045179780572653]]],[[[-0.094436705112457,0.24212546646595,0.098291672766209],[-0.078650921583176,-0.088947467505932,0.061433482915163],[-0.075625978410244,-0.029360735788941,0.16682782769203]],[[0.020360914990306,0.0081652421504259,-0.071131080389023],[-0.074214220046997,-0.13991016149521,0.063715718686581],[-0.046743530780077,-0.058896526694298,0.0033998561557382]],[[0.027222190052271,-0.018932057544589,0.034947659820318],[-0.040354046970606,-0.051305212080479,-0.032215479761362],[-0.043194834142923,0.0070756343193352,-0.023451818153262]],[[-0.034141931682825,-0.038749739527702,-0.0058229700662196],[0.078294947743416,-0.0021316092461348,0.007234098855406],[-0.015552037395537,-0.069595247507095,-0.017903292551637]],[[0.0012982517946512,0.069299578666687,0.0951047539711],[0.053857635706663,-0.11140083521605,-0.13045886158943],[-0.014074338600039,-0.050151046365499,-0.0065515455789864]],[[-0.047413621097803,-0.0028761229477823,-0.06466206163168],[0.070539876818657,-0.048029366880655,-0.066054455935955],[0.026174059137702,0.074061572551727,0.054662510752678]],[[0.030944200232625,-0.013941947370768,0.015669753775001],[-0.068551920354366,-0.064069926738739,-0.077522486448288],[-0.025649404153228,0.0073008076287806,-0.014566819183528]],[[-0.097192168235779,-0.21912996470928,-0.19914551079273],[0.058783609420061,0.031961087137461,0.055182002484798],[0.13380518555641,0.063541606068611,-0.011608975939453]],[[-0.053752463310957,-0.077706888318062,-0.059602659195662],[-0.032670095562935,0.018732445314527,-0.050374448299408],[0.036691352725029,0.018025647848845,0.0091091794893146]],[[0.12614637613297,0.17209804058075,0.064187653362751],[0.061433997005224,0.10693511366844,-0.015361437574029],[-0.10479622334242,-0.17382290959358,-0.085358060896397]],[[-0.043413903564215,-0.091914981603622,0.090270884335041],[-0.05316136777401,0.056369494646788,-0.05599669367075],[-0.001505363616161,0.044868152588606,0.082924604415894]],[[0.048753876239061,-0.026111505925655,-0.0066643934696913],[-0.024791540578008,-0.1218329295516,-0.034556087106466],[0.058057364076376,0.08046917617321,-0.0069480799138546]],[[0.041489325463772,-0.026745278388262,-0.12228102982044],[-0.071201004087925,-0.17046543955803,-0.033575043082237],[0.075025677680969,0.045427896082401,-0.0066447504796088]],[[-0.069389708340168,0.11185155808926,0.057122386991978],[-0.024304768070579,-0.090526193380356,0.041043743491173],[-0.023425806313753,-0.040016174316406,-0.065325401723385]],[[-0.02217061817646,-0.081008344888687,-0.0048923580907285],[-0.015619359910488,-0.024511700496078,-0.014723032712936],[0.09014481306076,-0.065777808427811,0.11331953853369]],[[-0.095447860658169,0.05910886079073,-0.0060120578855276],[-0.045265052467585,0.010860390029848,0.021711695939302],[-0.00065269169863313,0.016433093696833,-0.0070488839410245]],[[-0.045859050005674,-0.085338607430458,-0.1520099490881],[0.011858625337481,0.016499100252986,-0.17975057661533],[-0.0098639037460089,-0.002965749707073,0.0061588026583195]],[[0.027285827323794,-0.033865425735712,-0.11652378737926],[0.014057651162148,-0.079096518456936,-0.069796808063984],[0.0072769518010318,-0.024911642074585,-0.045970715582371]],[[-0.051574435085058,-0.069100081920624,-0.0054164631292224],[-0.063756421208382,0.10600804537535,-0.020366420969367],[-0.081199206411839,-0.07741416990757,-0.062583848834038]],[[-0.034276854246855,-0.0022157819475979,0.0047084614634514],[0.024826051667333,0.03922850266099,-0.0028776668477803],[-0.0040538907051086,-0.044323064386845,-0.062628500163555]],[[-0.004664208739996,0.15704667568207,0.18155470490456],[0.11924492567778,-0.034175787121058,-0.015024377964437],[-0.12301240861416,-0.12522612512112,-0.01534921489656]],[[0.030533095821738,-0.0084718791767955,-0.045100796967745],[0.020543264225125,0.0032298234291375,0.039355237036943],[4.5658787712455e-05,-0.040080968290567,-0.054254904389381]],[[0.071234032511711,0.04736040905118,0.035643916577101],[-0.0062540345825255,-0.12517829239368,0.020271945744753],[-0.040334481745958,0.021796923130751,-0.028068799525499]],[[-0.04524639248848,-0.045437432825565,-0.027315236628056],[-0.089685179293156,0.027797769755125,0.038791827857494],[0.030589392408729,0.092497050762177,-0.014014581218362]],[[8.0246500147041e-06,-0.0062937317416072,-0.053901918232441],[0.0017664360348135,0.060144480317831,0.095093697309494],[-0.0065387589856982,0.0078400345519185,-0.0096356561407447]],[[-0.17911083996296,-0.29504850506783,-0.015466098673642],[0.14447449147701,-0.0090869292616844,0.073962949216366],[0.06960454583168,-0.049984067678452,-0.0041542816907167]],[[-0.029775884002447,-0.18857365846634,-0.004464800003916],[0.0064308997243643,-0.0041723721660674,-0.13083417713642],[0.049046747386456,-0.010918254032731,0.058512546122074]],[[0.029877915978432,0.030564775690436,0.16821099817753],[-0.14992989599705,0.096050515770912,-0.066545531153679],[-0.24324636161327,0.04900011792779,-0.074285760521889]],[[-0.00022586187697016,-0.049134906381369,0.024492064490914],[0.010500403121114,0.059645105153322,0.030160440132022],[0.01798839122057,-0.049086108803749,-0.02229500003159]],[[0.069095499813557,0.055587869137526,-0.035658087581396],[0.054356954991817,0.018958792090416,0.076954871416092],[-0.027195120230317,0.007222939748317,-0.0066667408682406]],[[-0.06371209025383,-0.027770910412073,-0.046307925134897],[-0.037717327475548,0.053884126245975,-0.045052409172058],[0.069194436073303,-0.092338688671589,0.0051081366837025]],[[0.032308854162693,0.086785487830639,0.14699013531208],[-0.011327019892633,-0.16887894272804,0.0036718719638884],[-0.13082002103329,-0.056794416159391,-0.032046981155872]],[[0.0043627195991576,0.019955974072218,-0.098194435238838],[0.1637500077486,0.05797640606761,0.040459491312504],[0.11392223834991,-0.037607084959745,-0.058465301990509]],[[0.030009081587195,0.035351421684027,-0.017610892653465],[0.022120464593172,-0.044826973229647,-0.080142311751842],[-0.057454559952021,-0.028989288955927,-0.015404512174428]],[[0.047404900193214,-0.021757978945971,-0.14515051245689],[-0.040019694715738,-0.13954113423824,-0.031400043517351],[0.041458111256361,0.035474248230457,0.033312682062387]],[[0.044734045863152,0.0030983949545771,-0.050561524927616],[0.032546423375607,-0.043424021452665,-0.19370260834694],[0.028555685654283,0.030918968841434,-0.042809803038836]],[[-0.010097408667207,-0.127451390028,-0.14886556565762],[-0.06483756005764,0.012632131576538,0.040218763053417],[-0.026477262377739,-0.019000679254532,0.062764018774033]],[[0.068263657391071,0.081892155110836,-0.062582053244114],[-0.063978679478168,-0.1564454883337,-0.017643915489316],[-0.1995380371809,-0.054787795990705,0.062751039862633]],[[0.081802979111671,-0.01552564650774,0.053364150226116],[-0.03593735396862,-0.048636127263308,-0.034863516688347],[-0.021775593981147,-0.025903807953,-0.058427557349205]],[[0.005008218344301,-0.00051892531337216,0.19390152394772],[0.012090801261365,0.055249370634556,0.036645114421844],[0.089424647390842,-0.10777921229601,-0.043216202408075]],[[-0.079101614654064,0.076984345912933,-0.03655506670475],[0.042681783437729,-0.072621732950211,-0.023649955168366],[0.063157193362713,-0.046449769288301,-0.0011048028245568]],[[-0.041149847209454,-0.03276164829731,-0.070693716406822],[0.046999629586935,0.010452598333359,0.032062325626612],[0.067947298288345,-0.030511975288391,0.091668546199799]],[[-0.061246301978827,0.038227062672377,0.066142715513706],[-0.061740078032017,-0.01641677506268,-0.049320083111525],[-0.033259347081184,0.0061088651418686,0.049944471567869]],[[-0.0030764110852033,-0.018319817259908,0.023157579824328],[-0.019671220332384,0.051423013210297,0.094929330050945],[0.049600660800934,0.035179316997528,-0.029480183497071]],[[0.074547559022903,-0.0093931574374437,0.15412418544292],[-0.070341646671295,-0.0046374346129596,0.086943030357361],[0.05219642072916,-0.08824110776186,-0.014023522846401]],[[-0.011694055050611,0.026224985718727,0.012035757303238],[-0.016339331865311,0.031933981925249,-0.044780008494854],[0.02790748514235,-0.020213274285197,-0.040466364473104]],[[0.18427337706089,-0.085948206484318,0.01155374571681],[0.031581297516823,0.044723220169544,0.0063252192921937],[0.033218033611774,-0.012243031524122,-0.12620088458061]],[[-0.0043958919122815,-0.072173081338406,-0.073670886456966],[-0.097585521638393,-0.081416368484497,0.0070090317167342],[-0.10201305150986,-0.021895358338952,0.020127719268203]],[[0.02122887223959,-0.0012667675036937,0.12073005735874],[0.0080980882048607,-0.21495360136032,-0.35791999101639],[0.15164774656296,0.079427428543568,0.089200809597969]],[[0.038335304707289,0.1413965523243,-0.11682001501322],[0.12817832827568,0.045934792608023,-0.093948282301426],[0.098677009344101,-0.086076945066452,-0.043548621237278]],[[-0.073658250272274,0.08257619291544,0.048107124865055],[-0.014852184802294,-0.024931602180004,-0.019636383280158],[0.029779225587845,0.07434968650341,-0.010285394266248]],[[-0.058823384344578,-0.10186754912138,-0.051113586872816],[0.045127812772989,0.074063703417778,0.044716011732817],[0.037418745458126,-0.015046721324325,-0.018303632736206]],[[-0.10244507342577,-0.033527713268995,0.095872774720192],[0.010014601051807,-0.096209868788719,-0.076157204806805],[0.046310983598232,-0.043405327945948,-0.076113015413284]],[[-0.1071263179183,-0.060920581221581,-0.13306647539139],[-0.016591003164649,0.13367055356503,0.2612039744854],[-0.033696003258228,0.07814384251833,0.14823660254478]],[[-0.012879467569292,0.13063389062881,0.064405873417854],[0.073407679796219,-0.079931899905205,-0.084178015589714],[0.0049446187913418,-0.038373082876205,0.0024748793803155]],[[-0.0077758496627212,-0.027190005406737,-0.017652332782745],[-0.066834181547165,-0.090034015476704,-0.15831613540649],[0.016238376498222,0.043004173785448,0.045424845069647]],[[-0.037058494985104,0.047877192497253,-0.0048228921368718],[-0.02206514775753,0.056491270661354,0.020260717719793],[-0.067267939448357,0.010555368848145,-0.036101225763559]],[[-0.064706593751907,-0.0024355752393603,0.044512517750263],[0.022196542471647,-0.030544966459274,-0.094651199877262],[0.010155322961509,0.022195003926754,0.039126094430685]],[[-0.10057629644871,0.17311173677444,0.029416091740131],[-0.045447073876858,-0.008779427036643,-0.070373430848122],[-0.042183592915535,0.10619736462831,-0.057655487209558]],[[-0.059125281870365,-0.082819119095802,-0.023679967969656],[0.0098751140758395,0.046298567205667,0.060211721807718],[0.040629219263792,0.01827866025269,0.014439368620515]],[[0.058602064847946,0.087198883295059,0.012581026181579],[0.074591271579266,-0.10797257721424,-0.15555407106876],[-0.0051704118959606,0.048037458211184,0.068874292075634]],[[-0.00073265709215775,0.069694884121418,-0.15979498624802],[0.11297515779734,0.074274465441704,-0.0074803261086345],[-0.022324541583657,-0.02440993860364,-0.023117339238524]],[[0.0424491353333,0.15739715099335,-0.0018625488737598],[0.041096184402704,-0.053384125232697,-0.011975972913206],[-0.02773823030293,-0.11529268324375,-0.016898235306144]],[[-0.021893423050642,-0.079424276947975,-0.10782523453236],[0.10159830003977,0.030290672555566,-0.08347475528717],[0.091571159660816,0.072971880435944,-0.012824692763388]]],[[[0.0046456167474389,0.038445822894573,0.034727729856968],[-0.03182926774025,0.028444278985262,-0.026911063119769],[-0.021731706336141,0.12147972732782,-0.011315482668579]],[[-0.039985924959183,-0.014178219251335,0.0033857142552733],[-0.029600484296679,0.012688242830336,0.0046985866501927],[0.057413306087255,-0.01570413634181,-0.067958451807499]],[[-0.025184988975525,-0.043710462749004,-0.023198276758194],[0.023975534364581,-0.062352228909731,0.028087770566344],[-0.00025224903947674,-0.010621857829392,-0.066078551113605]],[[-0.08150789141655,-0.0012103103799745,0.052975408732891],[0.17617577314377,0.060892593115568,-0.188860937953],[-0.0060506677255034,-0.066363051533699,-0.099294304847717]],[[-0.051358424127102,-0.053064029663801,0.0093082217499614],[0.039976697415113,0.017810875549912,0.10413482785225],[0.012303631752729,0.014149531722069,-0.051595520228148]],[[0.12326169013977,-0.0051626805216074,0.088701352477074],[-0.060623329132795,-0.068427443504333,0.00547946523875],[0.011921332217753,0.035816308110952,0.04156444594264]],[[0.0010286774486303,-0.020825516432524,0.0084118358790874],[0.042364411056042,-0.0023243366740644,-0.0022689120378345],[-0.0036501449067146,-0.0064745382405818,-0.065711252391338]],[[-0.030239662155509,-0.036476980894804,0.060654204338789],[0.038925748318434,-0.10976667702198,0.044511895626783],[-0.00928920134902,0.0050992011092603,0.032309491187334]],[[0.024307074025273,-0.0020354420412332,-0.0001164139539469],[-0.02772281318903,-0.033630449324846,-0.14812207221985],[0.0073008383624256,-0.0019009686075151,0.045613076537848]],[[-0.046116203069687,-0.018255075439811,-0.014287854544818],[0.071749441325665,0.013590657152236,0.04145048931241],[-0.056141894310713,0.024915970861912,-0.0067377258092165]],[[0.1031087487936,-0.01179099176079,0.052464835345745],[-0.058171115815639,0.0034998347982764,-0.045811094343662],[0.074145816266537,0.02640213817358,0.0077292295172811]],[[-0.060848858207464,0.0078468527644873,0.038089599460363],[0.076891392469406,0.10512392967939,0.036019135266542],[-0.018127555027604,-0.042865142226219,0.051511060446501]],[[0.053183134645224,-0.031009789556265,0.047121651470661],[0.05043763294816,-0.026813443750143,0.13446003198624],[-0.022372301667929,0.026149962097406,0.010509889572859]],[[0.034041300415993,0.055672280490398,0.021166373044252],[0.10829468816519,0.021737461909652,-0.060333885252476],[-0.066906422376633,0.039785586297512,-0.013797639869153]],[[0.12369664758444,0.057067465037107,-0.16196209192276],[-0.10974676907063,0.00058571348199621,-0.0098205432295799],[0.069342605769634,0.0048730876296759,0.02930766902864]],[[0.07443368434906,0.053101908415556,-0.058691211044788],[0.11644036322832,-0.0039088022895157,-0.054331205785275],[0.051811624318361,-0.025481514632702,-0.05323676019907]],[[-0.0011244282359257,-0.029546845704317,0.012178543955088],[-0.042134266346693,0.06346333771944,-0.15287825465202],[-0.0093823634088039,0.034706450998783,0.031783524900675]],[[-0.0067381174303591,-0.061354756355286,0.03408520296216],[-0.006840811111033,0.055589832365513,-0.011126578785479],[-0.032156586647034,0.046129837632179,-0.0012110270326957]],[[0.037619333714247,0.01414483319968,-0.09758199006319],[-0.039153166115284,-0.080722972750664,0.022674888372421],[0.016871184110641,0.0062158494256437,0.012839733622968]],[[-0.059249095618725,0.016801062971354,0.013223613612354],[0.058616194874048,-0.01622299477458,-0.017231080681086],[0.019721185788512,-0.05087960138917,-0.031616546213627]],[[-0.064814783632755,0.037823475897312,-0.098164416849613],[-0.025210406631231,0.022468354552984,0.067144259810448],[0.013265821151435,0.061654835939407,-0.02273372747004]],[[-0.0053091961890459,-0.0089834127575159,0.038009352982044],[0.094109155237675,-0.041482228785753,-0.15353286266327],[-0.052794083952904,0.067700177431107,0.0091670090332627]],[[-0.020409086719155,-0.013111240230501,-0.0058734845370054],[-0.027600720524788,0.016877733170986,0.0056804553605616],[0.045359298586845,-0.00034415087429807,-0.0086845075711608]],[[0.013470636680722,-0.0012266468256712,0.037791665643454],[0.01014705747366,-0.090909190475941,-0.055758107453585],[-0.028322000056505,-0.011501983739436,0.041582982987165]],[[0.12925288081169,0.04591753706336,0.036199316382408],[0.037751022726297,-0.028704587370157,0.008898357860744],[0.093497730791569,-0.0057134991511703,-0.031489498913288]],[[-0.075609542429447,0.10549650341272,0.21797879040241],[-0.17028352618217,-0.044587705284357,0.030442921444774],[0.11520297080278,0.073236674070358,-0.0070858094841242]],[[0.11092468351126,0.05185991153121,-0.029224576428533],[-0.084589697420597,0.10335654765368,-0.023377830162644],[0.077641732990742,0.041956208646297,-0.027845397591591]],[[-0.057903684675694,-0.049470264464617,-0.0026420608628541],[0.0025426133070141,0.10418643057346,0.053870256990194],[0.063524693250656,0.0556007809937,0.038607977330685]],[[0.074083648622036,0.036534197628498,0.024912465363741],[0.029275113716722,-0.034674201160669,-0.11008694767952],[-0.0025867628864944,-0.018665265291929,-0.032885659486055]],[[-0.0066525707952678,-0.0057759084738791,0.045322824269533],[-0.0075489333830774,-0.060525756329298,-0.07484183460474],[0.0120346583426,0.036785863339901,0.016126284375787]],[[-0.070908218622208,-0.0015875542303547,-0.081432707607746],[0.043588861823082,-0.076454602181911,-0.034388449043036],[0.089314647018909,-0.029428286477923,0.082647100090981]],[[0.034743674099445,-0.0043405117467046,0.011727458797395],[-0.15702393651009,0.13131700456142,0.12521015107632],[0.057234141975641,0.039683438837528,-0.066538736224174]],[[0.017539886757731,-0.10284393280745,-0.055395059287548],[-0.12567023932934,-0.14427228271961,-0.14248041808605],[-0.0041594835929573,0.096514627337456,0.098142594099045]],[[-0.071869738399982,-0.023947417736053,0.013867254368961],[-0.041492227464914,0.030587593093514,-0.04375858232379],[-0.097774654626846,-0.23697467148304,-0.006657914724201]],[[-0.077406875789165,-0.024253346025944,0.063225075602531],[0.10331946611404,0.079269461333752,-0.046806626021862],[-0.022507956251502,-0.1129325479269,0.01794171333313]],[[0.029981883242726,-0.085877604782581,0.052275564521551],[-0.0016824379563332,0.028665335848927,0.068495154380798],[0.040665056556463,0.018416490405798,0.049915436655283]],[[0.0093336701393127,0.0093526979908347,-0.11392758786678],[0.033418338745832,-0.053457416594028,-0.018976911902428],[0.043601103127003,-0.073587723076344,0.062030401080847]],[[-0.14034654200077,-0.077908031642437,0.11115770787001],[0.094768017530441,0.10972490161657,-0.066296584904194],[0.025796009227633,-0.052379742264748,0.016379565000534]],[[0.046199258416891,0.088003739714622,0.0055705523118377],[-0.063069418072701,0.02653575129807,-0.066797964274883],[0.0081722531467676,0.0061441310681403,-0.031845185905695]],[[0.042186316102743,-0.0071794055402279,-0.019545093178749],[-0.14302563667297,0.064983561635017,0.032643731683493],[-0.017776096239686,0.01978175342083,-0.060860801488161]],[[0.032006684690714,0.016913317143917,-0.026517521589994],[0.0099539132788777,-0.089815899729729,0.12248948961496],[-0.0034781941212714,0.060048241168261,0.012016355991364]],[[-0.052111398428679,0.035684809088707,-0.058921698480844],[-0.019277105107903,-0.049173053354025,-0.034455113112926],[0.10799252986908,0.010623509995639,0.071132741868496]],[[-0.099531523883343,-0.12200532853603,0.047655530273914],[0.076067499816418,0.032958246767521,0.044629748910666],[0.058683063834906,-0.027484780177474,0.00469018984586]],[[0.0921565964818,0.13755190372467,0.0054575600661337],[-0.037980016320944,0.046301905065775,-0.017598362639546],[0.036265041679144,-0.044440425932407,-0.00068596401251853]],[[-0.0084856636822224,0.1023870781064,0.070584677159786],[-0.12949922680855,-0.014389419928193,0.031208099797368],[-0.026092594489455,0.098435938358307,-0.013747109100223]],[[-0.03880986571312,-0.016141083091497,0.013502272777259],[-0.034828919917345,-0.025520065799356,-0.078493699431419],[-0.08219613134861,0.11082109063864,-0.021016793325543]],[[0.11856406927109,0.029990816488862,0.055237729102373],[-0.11270812898874,0.0061703976243734,-0.14619612693787],[-0.056029222905636,0.042669143527746,-0.0043081887997687]],[[0.0084107518196106,0.073048651218414,0.039853546768427],[0.030759029090405,-0.13184855878353,-0.03645147383213],[0.10837309807539,0.028127767145634,-0.0031779755372554]],[[0.014252554625273,-0.031335890293121,-0.0094212172552943],[-0.042986333370209,0.1053090468049,0.092322863638401],[-0.053513444960117,-0.0025613140314817,0.051167782396078]],[[-0.012135266326368,0.048363365232944,0.046935502439737],[0.024983663111925,-0.035756923258305,0.07092110812664],[0.031591005623341,0.051831614226103,0.090025775134563]],[[0.0421950109303,-0.021862607449293,-0.014536423608661],[0.0011892233742401,-0.15423350036144,-0.0077866902574897],[-0.13262751698494,-0.067058019340038,-0.0060971123166382]],[[0.0047400016337633,-0.0042211711406708,0.045130535960197],[-0.024274228140712,-0.018909433856606,0.05979798361659],[-0.079278238117695,0.0030023772269487,-0.070453867316246]],[[0.081334680318832,0.0055492944084108,0.078426674008369],[0.031943824142218,0.066780090332031,-0.072165250778198],[-0.00015775104111526,0.06082497164607,0.024391179904342]],[[0.023912915959954,0.082622408866882,0.026028215885162],[0.094354249536991,0.030665142461658,0.026528585702181],[-0.020648999139667,0.0093049183487892,0.063987247645855]],[[-0.08153235912323,-0.04650479182601,-0.027305750176311],[-0.11112378537655,0.036556664854288,0.051595337688923],[0.067130245268345,0.016608633100986,-0.007722232490778]],[[0.019855672493577,-0.015242213383317,-0.0088377390056849],[-0.020186953246593,0.031529255211353,-0.045694131404161],[-0.089210979640484,0.020787850022316,-0.00584756443277]],[[-0.11200943589211,-0.066491909325123,-0.0072190347127616],[0.026650629937649,0.065282270312309,-0.083373606204987],[-0.002490627579391,-0.033683001995087,-0.087957516312599]],[[0.020686093717813,0.0033729881979525,0.0076906909234822],[0.0055351690389216,-0.073833160102367,0.022503454238176],[-0.012371705844998,0.015419294126332,-0.052155442535877]],[[-0.043685961514711,-0.06037937104702,0.080272108316422],[-0.0077919675968587,-0.075010433793068,0.00020170852076262],[-0.054236028343439,-0.054548360407352,0.096285201609135]],[[0.030721917748451,0.034174967557192,-0.015685791149735],[-0.011003933846951,-0.0070650512352586,-0.014320692978799],[-0.032472122460604,0.0084768710657954,0.019968923181295]],[[-0.0079829012975097,0.04188547283411,-0.079539008438587],[-0.034149255603552,-0.0050190379843116,-0.10769553482533],[0.0055308281444013,0.031723003834486,-0.084582343697548]],[[0.021773260086775,0.043985284864902,-0.0097910473123193],[0.03036592155695,-0.053042657673359,-0.014145317487419],[-0.062251590192318,0.0066110142506659,0.0053173135966063]],[[-0.0073554473929107,0.039780084043741,0.030962653458118],[0.029812844470143,-0.098098769783974,-0.12344465404749],[0.083680734038353,0.034338716417551,0.028528675436974]],[[0.07219160348177,0.0027333330363035,-0.016275346279144],[-0.089473202824593,0.0405133664608,0.024994049221277],[0.060795549303293,-0.025987772271037,0.011047133244574]]],[[[-0.17191110551357,0.092003867030144,-0.19299910962582],[-0.0084778312593699,0.097298622131348,-0.0018134413985536],[0.042792983353138,0.088808812201023,0.15793254971504]],[[0.15843032300472,0.0060092243365943,-0.093821905553341],[-0.012805979698896,-0.0096810022369027,-0.044768840074539],[-0.052990019321442,-0.025973323732615,-0.041392862796783]],[[-0.013148795813322,0.025677366182208,0.037018839269876],[-0.027251282706857,-0.019042221829295,0.004737289622426],[-0.04744777828455,0.00773547263816,-0.072607442736626]],[[0.052500832825899,-0.069774247705936,-0.066397346556187],[-0.17800591886044,0.0060342908836901,0.12651337683201],[0.10191325843334,0.10152342170477,-0.0052131903357804]],[[-0.22923588752747,0.10658329725266,0.013543920591474],[0.020765408873558,-0.0083922427147627,0.049280568957329],[0.053293656557798,0.085554257035255,-0.13449488580227]],[[-0.042999092489481,0.041510377079248,0.00018162169726565],[-0.094015404582024,0.019740086048841,-0.035399071872234],[-0.15548767149448,-0.077884517610073,0.053274180740118]],[[-0.050476349890232,-0.00086726510198787,0.0043689087033272],[0.017484720796347,-0.081619367003441,0.029136803001165],[-0.080030202865601,-0.015366178005934,-0.0019930624403059]],[[-0.12634468078613,-0.0040946407243609,-0.015986794605851],[-0.10287126153708,0.00049842614680529,0.0004332649987191],[0.023083491250873,-0.003737055696547,-0.070194616913795]],[[0.069761455059052,0.053175706416368,-0.040558967739344],[-0.017320938408375,0.029319182038307,-0.029325824230909],[-0.057887595146894,0.004616932477802,0.072761401534081]],[[-0.0070101073943079,-0.02808946929872,-0.045149069279432],[0.019032523036003,-0.023683574050665,-0.048042573034763],[-0.013778744265437,0.10257361829281,0.06149860471487]],[[-0.030795536935329,0.013609231449664,-0.019735354930162],[-0.11137066781521,-0.016268871724606,-0.060979846864939],[-0.24671442806721,0.064161762595177,0.14366503059864]],[[0.031193813309073,0.03424409404397,-0.020638348534703],[0.038328744471073,0.011485176160932,0.087571419775486],[0.011031905189157,0.027325611561537,-0.025296235457063]],[[0.12367474287748,0.074121572077274,-0.042945586144924],[-0.07794202119112,-0.13147579133511,-0.0014178373385221],[-0.16965620219707,0.027834925800562,0.03424134477973]],[[-0.21459612250328,0.050593044608831,0.13483841717243],[-0.018946884199977,0.060404621064663,0.12233418226242],[-0.020460026338696,0.11348386853933,0.11522081494331]],[[-0.11216677725315,-0.11242324858904,-0.053226921707392],[-0.11462836712599,-0.034772288054228,0.087254770100117],[0.013575846329331,0.018041474744678,0.11600407958031]],[[0.064747184514999,-0.013489194214344,0.07706606388092],[-0.051849592477083,0.029538119211793,-0.078316554427147],[0.057960275560617,-0.043488554656506,-0.10826645046473]],[[-0.046996977180243,-0.20092105865479,0.13164891302586],[-0.090985342860222,-0.037394784390926,-0.068610824644566],[-0.1596003472805,-0.074305549263954,-0.181505843997]],[[0.12805642187595,-0.036130271852016,-0.013600086793303],[0.0010301000438631,0.0052784234285355,-0.13809853792191],[-0.066974125802517,-0.17015661299229,-0.27161952853203]],[[-0.021236173808575,-0.0095018092542887,-0.0019949749112129],[-0.075803473591805,-0.083925075829029,-0.081509239971638],[0.068012319505215,-0.048472881317139,-0.071655742824078]],[[-0.0071080359630287,-0.011848881840706,-0.068734519183636],[0.052667077630758,0.025920169427991,0.0019593557808548],[-0.014348827302456,0.050658971071243,-0.053854279220104]],[[-0.14090298116207,-0.13457648456097,-0.0019648359157145],[-0.020550042390823,0.08066076785326,0.1625105291605],[-0.021833462640643,0.14930061995983,-0.087479516863823]],[[-0.0038826642557979,0.059180967509747,-0.12592595815659],[0.044909831136465,-0.008550001308322,0.0073325764387846],[0.015015166252851,0.051136273890734,0.032939080148935]],[[0.058143138885498,-0.00577680952847,0.014335258863866],[0.058897886425257,-0.022415090352297,-0.041741199791431],[0.02967788092792,-0.023911967873573,-0.044468559324741]],[[0.15685380995274,0.020384358242154,-0.013492686673999],[-0.12078965455294,-0.020667565986514,0.023592054843903],[0.0049575217999518,0.1740949600935,0.099991738796234]],[[0.086609780788422,-0.015934711322188,-0.01771861128509],[0.1507351398468,0.052782587707043,0.017608530819416],[-0.032628934830427,0.1750566214323,-0.020131913945079]],[[0.053358279168606,-0.011638142168522,-0.12975443899632],[0.0033150287345052,-0.043617323040962,-0.20899002254009],[-0.15326488018036,-0.092666320502758,-0.15784694254398]],[[0.044123236089945,-0.010098698548973,-0.05315512791276],[0.015160488896072,-0.10162179172039,-0.0059026717208326],[-0.028000921010971,-0.050848860293627,0.033351264894009]],[[-0.05847591906786,-0.11384707689285,-0.0083360495045781],[-0.11734194308519,0.050800304859877,0.13453774154186],[0.11039857566357,0.030942706391215,-0.053279161453247]],[[-0.060734890401363,-0.015551745891571,-0.032729595899582],[-0.14659811556339,-0.083333179354668,0.15701031684875],[-0.065958045423031,-0.015692710876465,0.012701538391411]],[[0.0028531968127936,0.031099203974009,-0.11080010980368],[0.13042855262756,-0.029224567115307,-0.26866617798805],[-0.16545490920544,-0.33820751309395,-0.19359686970711]],[[-0.099521793425083,-0.036631733179092,0.021095797419548],[0.0042231138795614,0.043485652655363,-0.028677701950073],[-0.041219100356102,-0.1449395865202,-0.1256345063448]],[[0.055090583860874,0.086405858397484,-0.10590206831694],[0.10115011036396,-0.041706077754498,-0.14564114809036],[-0.033255830407143,-0.038474831730127,-0.13602490723133]],[[0.030038703233004,0.040067944675684,-0.030662855133414],[-0.11212012916803,0.0087664555758238,-0.042554210871458],[-0.12672503292561,0.071458242833614,-0.092795148491859]],[[-0.046229600906372,0.05265836417675,-0.042286932468414],[0.055628936737776,0.055683080106974,-0.092540748417377],[-0.13236546516418,0.0058870590291917,-0.1346268504858]],[[0.081738069653511,-0.068099290132523,0.059094615280628],[0.15668892860413,0.12936455011368,-0.070055775344372],[-0.16468022763729,-0.24585331976414,-0.13220031559467]],[[0.013109826482832,0.10836920142174,0.077295184135437],[0.035455100238323,0.010824457742274,-0.088033698499203],[-0.075734809041023,-0.14414544403553,-0.17250607907772]],[[0.1082567051053,-0.15684677660465,0.017375960946083],[-0.22919327020645,-0.052361689507961,0.043180931359529],[-0.11462387442589,0.030414363369346,0.06333090364933]],[[0.025923671200871,-0.026880279183388,-0.036222025752068],[0.052054695785046,0.056154329329729,-0.018123963847756],[0.12253008037806,0.0022783449385315,-0.030523987486959]],[[0.031043199822307,0.032995466142893,0.077749788761139],[-0.052214283496141,0.056833863258362,-0.029028033837676],[-0.029243156313896,-0.14119958877563,-0.25620993971825]],[[0.029860820621252,-0.089705906808376,0.049138404428959],[-0.1782910078764,0.025697352364659,0.10914285480976],[0.063830517232418,0.10351447016001,0.090266406536102]],[[0.12439639121294,0.059629857540131,0.017246788367629],[-0.06232338771224,0.022752065211535,0.003619136987254],[-0.035778496414423,-0.021626168861985,-0.15525299310684]],[[0.017397807911038,0.055228754878044,-0.10399108380079],[0.0036466964520514,0.012527028098702,-0.021047290414572],[0.062890343368053,-0.00019712987705134,0.026938101276755]],[[-0.14648063480854,0.030799999833107,0.028509605675936],[-0.016573663800955,-0.080717548727989,0.069611668586731],[-0.014829022809863,-0.047791764140129,0.074138656258583]],[[0.18805852532387,-0.077014416456223,-0.013766632415354],[0.028035132214427,0.062726356089115,0.044690556824207],[-0.048031974583864,0.033675093203783,0.022993873804808]],[[0.032818384468555,0.054972503334284,0.0030378298833966],[-0.045737393200397,-0.025420855730772,-0.007913033477962],[-0.060141798108816,-0.068336322903633,-0.030572919175029]],[[-0.060006700456142,0.011030657216907,0.061282332986593],[-0.060974061489105,-0.20428863167763,0.0013516945764422],[-0.13478212058544,-0.12333007156849,-0.057095263153315]],[[0.03329960256815,-0.037436816841364,0.047795422375202],[-0.00027804390992969,-0.0044719623401761,-0.0032689056824893],[-0.11231172829866,0.011392928659916,0.17000596225262]],[[0.11865912377834,-0.035546023398638,0.055360816419125],[0.061877716332674,0.051453523337841,0.040412470698357],[0.027617609128356,0.019844073802233,0.037780307233334]],[[0.011214321479201,0.075561381876469,0.025201143696904],[0.16448862850666,0.18505151569843,-0.02030317299068],[-0.030481528490782,-0.068727262318134,-0.087494239211082]],[[-0.16606973111629,0.028562495484948,-0.069378271698952],[-0.061370301991701,0.10878579318523,-0.043574616312981],[-0.02848837338388,0.077340222895145,-0.060514241456985]],[[-0.055321525782347,-0.0030682578217238,0.0035159911494702],[-0.0044752554967999,-0.0082753906026483,0.0033534362446517],[-0.047703992575407,-0.023931540548801,-0.026007443666458]],[[0.15142671763897,0.026460548862815,-0.054566763341427],[-0.012716835364699,-0.072415858507156,0.061995323747396],[-0.079909890890121,0.092100456357002,-0.047746609896421]],[[0.0089684072881937,0.074173659086227,-0.017001429572701],[-0.072070322930813,0.012652534991503,-0.049416515976191],[-0.11293428391218,-0.035441283136606,-0.16861219704151]],[[0.032894164323807,0.074208542704582,0.06921623647213],[0.048103366047144,0.10359423607588,0.098588600754738],[0.16713608801365,0.21945324540138,0.21091128885746]],[[-0.10610640794039,0.10557209700346,0.044882949441671],[-0.064171597361565,0.029112318530679,0.0030833552591503],[-0.0091577414423227,0.032159425318241,-0.17769396305084]],[[0.033089317381382,0.10437326133251,-0.066015429794788],[0.0080268764868379,-0.029989758506417,-0.21321485936642],[-0.10211849957705,-0.1627888828516,-0.14701102674007]],[[0.032720740884542,0.031157480552793,0.040243573486805],[-0.13390238583088,-0.037429250776768,-0.021449482068419],[-0.15385444462299,-0.1290245205164,-0.027111936360598]],[[-0.048780687153339,0.051425281912088,-0.015552173368633],[0.094271518290043,0.05792049691081,-0.024294685572386],[-0.031922440975904,-0.006225117482245,0.10094916820526]],[[0.078045293688774,-0.072458907961845,-0.013790010474622],[-0.058634847402573,-0.07596555352211,-0.042886141687632],[0.020521160215139,-0.081338763237,0.028527220711112]],[[-0.035670295357704,0.019048577174544,0.011725602671504],[-0.014328827150166,-0.001835199422203,0.056395556777716],[-0.017082991078496,0.075557507574558,0.070965841412544]],[[-0.066755227744579,0.026718102395535,0.078278332948685],[0.13482181727886,-0.010227950289845,0.05263988673687],[0.053586639463902,-0.022640576586127,0.10489317029715]],[[0.048546381294727,0.11506544053555,-0.05589759349823],[-0.0035217287950218,-0.10075086355209,0.09838043898344],[0.072121478617191,0.026924632489681,0.022345367819071]],[[-0.089586548507214,0.091486655175686,-0.013876019045711],[0.04159527644515,0.039634943008423,0.0020355249289423],[-0.030827483162284,0.02016900293529,-0.068308539688587]],[[0.083061724901199,0.037087213248014,0.092703953385353],[-0.02826321311295,-0.023844411596656,-0.0050430046394467],[-0.035073526203632,-0.0048772734589875,0.10120292007923]]],[[[-0.070343963801861,0.019030474126339,0.12710931897163],[0.040219217538834,-0.067905470728874,-0.016741784289479],[-0.21301364898682,-0.12773326039314,0.071802988648415]],[[-0.011494184844196,-0.040983285754919,-0.04668502882123],[-0.067529879510403,-0.11208125203848,0.0085656940937042],[0.0057588252238929,-0.034285679459572,-0.015453645028174]],[[-0.021607108414173,-0.036513328552246,-0.0098784975707531],[-0.007731351070106,-0.0073795644566417,-0.0070853997021914],[-0.045642483979464,0.054565969854593,-0.01157334446907]],[[-0.05751745775342,0.017477169632912,-0.11153852939606],[-0.029530271887779,-0.16133360564709,-0.13437481224537],[-0.049952007830143,-0.074504822492599,0.012193597853184]],[[-0.030049262568355,-0.042685303837061,0.0048287832178175],[0.10357782244682,-0.052519585937262,-0.039447341114283],[-0.014182667247951,-0.044748041778803,0.00967379193753]],[[-0.064675360918045,-0.0014987837057561,0.060553621500731],[-0.046198401600122,-0.13220652937889,-0.049135100096464],[-0.072166010737419,-0.0038537338841707,-0.11692236363888]],[[-0.030070964246988,0.00056931999279186,-0.0088591501116753],[0.047268163412809,-0.0010495478054509,-0.027648424729705],[0.075014151632786,-0.0059707765467465,0.044148977845907]],[[0.0062317079864442,0.064431138336658,-0.01726639829576],[-0.067619740962982,0.10396537929773,0.10873957723379],[0.036371484398842,-0.040281720459461,-0.0428207218647]],[[-0.0080336108803749,-0.011388301849365,0.011608984321356],[0.060082778334618,0.029192922636867,-0.0033557671122253],[-0.031203174963593,0.0065741455182433,0.10222783684731]],[[-0.021956253796816,0.058249078691006,-0.036625310778618],[0.051033552736044,0.035607255995274,-0.012412406504154],[0.030901521444321,-0.028314905241132,-0.021470693871379]],[[-0.037317637354136,-0.10146944224834,0.05743670836091],[-0.011539427563548,0.054566074162722,-0.014590542763472],[0.055889692157507,-0.036064796149731,0.034395515918732]],[[0.0078912107273936,-0.035722061991692,-0.087533503770828],[0.02136137150228,-0.04631507396698,-0.019304431974888],[-0.020529696717858,-0.019749449566007,-0.051982533186674]],[[-0.06526841968298,-0.079114213585854,-0.043607249855995],[0.015694281086326,0.087142735719681,-0.043780766427517],[0.038910374045372,0.062189728021622,0.0024515783879906]],[[0.015668803825974,0.026323495432734,0.080005452036858],[0.1382377743721,0.019590446725488,-0.0069056772626936],[0.041521035134792,0.12806080281734,-0.065025575459003]],[[0.16564723849297,0.069618597626686,-0.037741456180811],[0.061404898762703,0.11508396267891,0.10840178281069],[-0.074885807931423,-0.097728833556175,-0.022056249901652]],[[0.073558144271374,0.016741832718253,-0.061696112155914],[-0.061004895716906,-0.075472295284271,0.062120251357555],[0.059837985783815,0.14292299747467,-0.022316647693515]],[[-0.048201397061348,0.020804271101952,-0.064036272466183],[-0.026293372735381,0.023645306006074,-0.0034954517614096],[-0.025501353666186,-0.060708280652761,-0.046806268393993]],[[-0.053877953439951,-0.032594036310911,-0.096826083958149],[0.014486320316792,-0.00015581697516609,-0.031229268759489],[0.11135425418615,0.0656518638134,0.087911538779736]],[[0.0035410188138485,0.040349882096052,0.015079082921147],[0.021424988284707,-0.060472782701254,0.091202698647976],[0.046585269272327,-0.046367555856705,0.025543244555593]],[[-0.095914959907532,0.044675327837467,0.071492806077003],[0.039583902806044,-0.016496369615197,0.070489898324013],[0.013734556734562,0.063907027244568,0.0095751471817493]],[[-0.032568696886301,0.12541049718857,-0.033607583492994],[0.028369974344969,-0.0068800505250692,0.088023811578751],[0.021618580445647,-0.13277196884155,0.023051721975207]],[[0.048992775380611,-0.055426958948374,-0.012713464908302],[-0.1764013916254,-0.13808964192867,-0.050092503428459],[0.019922390580177,-0.052379671484232,0.024203395470977]],[[0.040382470935583,-0.0034925695508718,-0.059729944914579],[-0.055094558745623,0.033766303211451,-0.013115898706019],[-0.0219397675246,0.056499917060137,0.036660231649876]],[[-0.023869397118688,-0.023074107244611,-0.1094461902976],[0.0042241374030709,-0.084216319024563,-0.13157486915588],[-0.025768660008907,0.002379932673648,-0.091561377048492]],[[0.027365809306502,-0.046062916517258,0.0021853346843272],[-0.083150289952755,0.10031863301992,0.11120584607124],[-0.077343627810478,0.018805503845215,0.13419859111309]],[[0.10282501578331,0.051483243703842,-0.075555026531219],[0.052414048463106,-0.025337558239698,0.032375808805227],[0.026927661150694,0.070157580077648,0.089223772287369]],[[-0.056908059865236,0.026306387037039,0.07583174854517],[-0.14309875667095,0.09112373739481,-0.031863555312157],[0.086664251983166,-0.1618686914444,-0.065817959606647]],[[0.072862505912781,0.009293450973928,0.13292028009892],[0.067801848053932,-0.027196897193789,-0.027375204488635],[-0.035010490566492,-0.070352002978325,-0.0036283014342189]],[[0.014469434507191,0.089630730450153,0.089678570628166],[0.081091955304146,-0.060445629060268,-0.0043644243851304],[-0.070030868053436,0.089432716369629,-0.019240222871304]],[[0.024771150201559,-0.017891077324748,0.065712168812752],[0.058569200336933,-0.037003271281719,0.10629502683878],[0.03663356974721,0.071279078722,0.1096022054553]],[[0.056260298937559,-0.0078152492642403,-0.073189921677113],[-0.025348719209433,0.036031991243362,-0.14584290981293],[0.02996176853776,0.023937148973346,-0.13314618170261]],[[-0.018751716241241,0.050772901624441,-0.0145846279338],[0.030565820634365,-0.0244976952672,-0.097450666129589],[-0.019927229732275,-0.024004828184843,0.0075128036551178]],[[-0.063091807067394,-0.055821567773819,0.13885030150414],[0.067831762135029,0.11921801418066,0.04777267575264],[0.038499444723129,-0.010195787996054,0.011937341652811]],[[0.060094900429249,0.080492302775383,-0.03400344774127],[0.05103912577033,-0.074437581002712,-0.13750497996807],[-0.080584175884724,0.060351148247719,-0.03175426274538]],[[0.028616761788726,0.039008248597383,-0.048584848642349],[-0.061667498201132,-0.087827757000923,0.03459108620882],[-0.067534945905209,0.00322883320041,-0.0096170380711555]],[[0.024284828454256,-0.10198699682951,-0.03765469416976],[-0.065160423517227,0.060306925326586,-0.072854071855545],[-0.10174816101789,-0.03453852981329,0.016106583178043]],[[0.0039831860922277,-0.01367187872529,0.030526857823133],[0.0041129128076136,-0.015554768033326,0.015161542221904],[-0.12042424827814,0.025025418028235,0.020759381353855]],[[0.041169598698616,0.095340438187122,-0.06475855410099],[-0.016999438405037,-0.12719026207924,0.012141471728683],[-0.18252603709698,-0.072092965245247,0.034365262836218]],[[-0.030454369261861,0.04286016151309,0.0056468066759408],[-0.052681133151054,-0.042586088180542,0.015540275722742],[0.13459421694279,0.10034736245871,0.039690162986517]],[[-0.032716285437346,-0.19513596594334,-0.16488701105118],[0.029672583565116,0.01926059089601,-0.18926173448563],[-0.02498709410429,0.015563380904496,0.0023011118173599]],[[-0.086804702877998,-0.058287393301725,-0.080867387354374],[0.054449714720249,0.047951493412256,-0.055766083300114],[-0.010325312614441,-0.0047228410840034,-0.04181332886219]],[[0.038136392831802,-0.039392597973347,-0.010697943158448],[-0.080595403909683,-0.033106919378042,0.044295363128185],[0.02113245986402,-0.047411799430847,-0.05008514970541]],[[-0.0077045131474733,-0.039503369480371,-0.030456203967333],[-0.0027086713816971,0.036074046045542,-0.12461631000042],[0.039226591587067,-0.025633793324232,-0.037429749965668]],[[-0.098626054823399,-0.072775311768055,-0.020313605666161],[-0.040639013051987,-0.0032537716906518,-0.042789112776518],[0.034773513674736,-0.11032305657864,-0.062075525522232]],[[0.039209645241499,0.026505570858717,-0.12529937922955],[-0.023779416456819,0.01526490598917,0.10142000764608],[0.054238986223936,0.021364523097873,0.030272563919425]],[[0.0385259129107,-0.0082934321835637,-0.090709954500198],[-0.012130414135754,-0.04388539493084,-0.076554700732231],[0.015027997083962,-0.090902358293533,0.0095613142475486]],[[-0.053521227091551,-0.08405476808548,0.042854353785515],[-0.018372789025307,0.016835546121001,5.7335339079145e-05],[0.013264301232994,0.023929646238685,0.00067149073584005]],[[-0.037994883954525,-0.025312023237348,0.03431298583746],[0.025105467066169,0.0050466228276491,0.07550884783268],[-0.030003493651748,-0.040326129645109,0.050292771309614]],[[-0.046517614275217,-0.043775707483292,-0.15903095901012],[0.039701666682959,0.11250047385693,-0.05198972299695],[-0.030706813558936,0.063639022409916,0.02318593673408]],[[0.037369813770056,0.064617849886417,0.12452954798937],[-0.069640561938286,-0.030275756493211,-0.041364546865225],[-0.036327868700027,-0.19078940153122,-0.11822484433651]],[[-0.06369087100029,-0.060317270457745,-0.0059929918497801],[-0.021945253014565,-0.10182945430279,-0.22273880243301],[0.09484975039959,0.030870964750648,-0.0065250718034804]],[[0.031514905393124,0.0054206689819694,-0.080979190766811],[0.040321283042431,-0.028539024293423,-0.0088451923802495],[-0.020291427150369,-0.0095472205430269,-0.028786750510335]],[[-0.011186364106834,0.043120257556438,-0.088377185165882],[-0.11897376179695,-0.1028395742178,-0.13234853744507],[0.10390491038561,0.084752179682255,-0.099693067371845]],[[-0.040537569671869,0.10195285081863,0.075467050075531],[0.17073154449463,0.15261214971542,0.23530173301697],[-0.021250175312161,0.032943870872259,-0.047435626387596]],[[-0.075352475047112,0.082611367106438,0.017715668305755],[0.07230469584465,-0.04729874804616,-0.033560018986464],[-0.20276518166065,-0.052109554409981,-0.053660996258259]],[[-0.15410943329334,-0.10857381671667,-0.13753773272038],[-0.064387902617455,0.10326099395752,0.064063556492329],[0.12730661034584,0.02722591906786,0.15491017699242]],[[-0.153076633811,-0.10311621427536,-0.034109976142645],[-0.011654647067189,-0.15116231143475,-0.091666795313358],[-0.052575137466192,-0.022749120369554,0.0019079972989857]],[[0.014999900013208,0.043092977255583,0.016408720985055],[0.016965268179774,-0.0060369819402695,0.020684214308858],[-0.085403501987457,-0.050731271505356,-0.059100050479174]],[[0.0011908347951248,0.015822721645236,-0.050348356366158],[-0.010064198635519,0.032711427658796,0.017042048275471],[0.0085930544883013,-0.065955370664597,0.023354209959507]],[[0.043090108782053,0.0095953233540058,0.064287059009075],[0.024099139496684,-0.033902730792761,0.039393346756697],[0.030813341960311,-0.040837492793798,-0.007151102181524]],[[0.06036376953125,-0.041026547551155,-0.01733835786581],[6.5647407609504e-05,-0.03492147102952,-0.0307582244277],[0.042939390987158,-0.013595532625914,-0.11479239910841]],[[-0.07360802590847,0.028537584468722,-0.086556144058704],[-0.056071050465107,0.0085111493244767,0.048988070338964],[0.010837525129318,-0.024706125259399,-0.012444160878658]],[[0.056488819420338,0.053955391049385,0.042869597673416],[-0.012049895711243,-0.055157989263535,-0.017284212633967],[-0.072871223092079,-0.1166163906455,-0.017002126201987]],[[0.02648426219821,0.017043996602297,0.027738016098738],[-0.041298374533653,0.055550441145897,-0.067494072020054],[0.087044090032578,0.030450591817498,-0.048719458281994]]],[[[0.046906020492315,-0.042898535728455,0.047734849154949],[0.051800966262817,-0.0090481145307422,0.039574064314365],[-0.0048065832816064,0.011504770256579,0.018139641731977]],[[0.071044772863388,-0.042830374091864,0.0043166736140847],[0.0060806283727288,0.084102995693684,0.061567466706038],[-0.014703189954162,-0.015468313358724,0.10325512290001]],[[-0.077126063406467,-0.083278268575668,-0.073448121547699],[0.044417142868042,-0.083642370998859,-0.086133345961571],[0.0023227506317198,0.0054902057163417,-0.072826609015465]],[[0.043246880173683,-0.045654390007257,0.043855778872967],[-0.0056683807633817,-0.03279060125351,-0.015301460400224],[-0.24253191053867,0.021774984896183,0.043992504477501]],[[-0.009914418682456,-0.055687416344881,-0.017433853819966],[-0.062974318861961,0.023401472717524,0.048016734421253],[-0.0064292508177459,-0.20863896608353,0.031248174607754]],[[-0.02879025042057,-0.024583991616964,-0.014288971200585],[0.088156044483185,-0.10856167972088,0.035207934677601],[0.026223549619317,0.015054917894304,-0.20092809200287]],[[0.018108058720827,0.028159422799945,0.047641597688198],[-0.080705270171165,-0.019109115004539,0.033941507339478],[-0.045703835785389,-0.055694453418255,0.04947679117322]],[[-0.053775679320097,0.039234548807144,-0.013956418260932],[-0.034116927534342,-0.011739366687834,-0.0024260370992124],[0.086994163691998,0.15102972090244,-0.0043866983614862]],[[0.0047483257949352,0.024576837196946,-0.03373659029603],[0.026267180219293,0.043555069714785,-0.13533800840378],[-0.0031177091877908,0.053885616362095,-0.11267024278641]],[[0.062191594392061,-0.18321707844734,-0.055503234267235],[0.11097821593285,0.099408119916916,-0.052345637232065],[-0.093851648271084,0.012152728624642,-0.13224747776985]],[[0.046633914113045,0.098285682499409,0.052899111062288],[-0.13154953718185,-0.037352681159973,-0.0725172534585],[0.017196711152792,-0.060663834214211,-0.10950493812561]],[[-0.032345645129681,0.0067030787467957,0.036649402230978],[-0.05589222162962,-0.07770462334156,-0.020319094881415],[0.03846064209938,-0.056823913007975,0.036315385252237]],[[0.0024592354893684,0.0077003729529679,0.015737298876047],[-0.014965080656111,0.098238468170166,-0.018932865932584],[-0.051397252827883,-0.04283232614398,-0.0023242514580488]],[[0.022489294409752,-0.005209774710238,0.010024697519839],[-0.091603130102158,-0.008538325317204,0.0055776201188564],[0.039202202111483,-0.0082669826224446,0.00034287112066522]],[[0.002698334865272,-0.0018448719056323,-0.096287563443184],[-0.038451258093119,0.075795166194439,0.058978155255318],[-0.00045701340422966,0.063020490109921,-0.0048356121405959]],[[-0.037136718630791,0.045691590756178,0.05700633302331],[0.030199868604541,0.00037308293394744,0.15365029871464],[-0.026232922449708,-0.074735708534718,-0.0061838221736252]],[[-0.028149977326393,-0.19393764436245,0.029438078403473],[0.10034729540348,0.073360666632652,0.058390039950609],[0.0031585860997438,-0.0080875046551228,-0.015603598207235]],[[-0.045767024159431,0.0039376500062644,0.068436898291111],[0.011298486031592,-0.12077629566193,0.077814556658268],[0.034486915916204,-0.06736832857132,0.0024536685086787]],[[-0.054894238710403,-0.051410969346762,-0.092664822936058],[0.040197402238846,-0.0093344524502754,-0.079080514609814],[-0.037936445325613,-0.017812995240092,0.050139103084803]],[[0.072648398578167,0.0079284971579909,0.10568409413099],[-0.072373613715172,0.096093446016312,0.075169160962105],[-0.0063204048201442,-0.089634597301483,0.037039387971163]],[[0.15982259809971,0.12477799504995,0.086474664509296],[0.11252338439226,0.012157739140093,0.12978887557983],[0.087066784501076,0.073151051998138,0.044241484254599]],[[-0.023450519889593,0.014595127664506,0.041604116559029],[0.11997386813164,-0.098308145999908,-0.076079741120338],[0.031466905027628,-0.040340296924114,-0.061334911733866]],[[0.015399535186589,0.040434151887894,-0.012668202631176],[0.0086222030222416,-0.073306918144226,0.045687798410654],[-0.039855647832155,0.012770435772836,0.012890018522739]],[[0.097112596035004,-0.011351662687957,-0.039698120206594],[0.027137475088239,-0.020549094304442,0.016670919954777],[-0.01747322268784,0.084853388369083,0.01995499804616]],[[-0.042663380503654,-0.026477005332708,0.021526446565986],[0.14198277890682,-0.10229329019785,0.028747592121363],[-0.02452022396028,0.033386699855328,0.036131214350462]],[[0.077322334051132,0.071096003055573,-0.0098274135962129],[0.058369439095259,-0.016019897535443,0.038771126419306],[0.019035175442696,-0.052401345223188,0.022967534139752]],[[0.025820706039667,0.055288050323725,-0.084126360714436],[-0.10164330899715,-0.03891360014677,-0.020666170865297],[0.072045490145683,-0.015086822211742,-0.027933588251472]],[[0.07590838521719,0.13007648289204,0.071294397115707],[0.076327189803123,-0.0047308527864516,-0.01212489977479],[-0.057121846824884,-0.037609942257404,0.08837053924799]],[[0.046998906880617,0.068074397742748,-0.092915318906307],[-0.051033087074757,0.13691195845604,-0.0068468693643808],[-0.051504518836737,0.0014360893983394,-0.0071411654353142]],[[-0.0071877902373672,-0.022363053634763,-0.021334873512387],[-0.15166443586349,0.016829671338201,0.018498757854104],[0.0051691848784685,0.017992340028286,-0.05090419575572]],[[0.047954380512238,-0.080651178956032,-0.021442048251629],[0.0056101926602423,0.018782209604979,0.034121710807085],[-0.088342174887657,0.06548435986042,0.092013522982597]],[[0.0482372418046,0.025943988934159,-0.012333108112216],[-0.059287682175636,-0.10837809741497,0.018347272649407],[-0.076585955917835,-0.14176954329014,-0.026970896869898]],[[0.070658311247826,0.029325695708394,0.077380761504173],[-0.013548097573221,0.11193942278624,-0.0090080043300986],[0.098123252391815,-0.041599631309509,0.021467646583915]],[[-0.044174335896969,0.057976294308901,-0.065563261508942],[-0.081866189837456,-0.035034488886595,-0.031196739524603],[-0.10228011757135,0.022129088640213,-0.04031378775835]],[[-0.0090065598487854,0.066494546830654,0.059147503226995],[0.067763112485409,-0.131642177701,-0.018155248835683],[0.027527369558811,-0.006362862419337,-0.0091071585193276]],[[-0.057050116360188,-0.12312620133162,-0.096919097006321],[-0.043205577880144,-0.037994287908077,-0.037091001868248],[-0.049809105694294,0.011453240178525,0.02879885211587]],[[0.036411102861166,-0.16472835838795,-0.099742710590363],[0.017198570072651,0.031699329614639,-0.04998766258359],[-0.03064925968647,0.007755002938211,0.03565850481391]],[[-0.036117054522038,0.061586480587721,0.0050384164787829],[0.070680975914001,-0.10061024129391,-0.055156663060188],[-0.15313124656677,0.0013786763884127,0.046170633286238]],[[0.076344557106495,0.05182570964098,0.050034411251545],[0.072093293070793,0.018359880894423,0.047830831259489],[-0.062358796596527,-0.096418507397175,0.087593495845795]],[[0.03983760625124,0.094543188810349,-0.070373855531216],[0.0092741148546338,-0.015629244968295,0.026472562924027],[-0.0521105453372,0.040870226919651,0.034628473222256]],[[-0.0058739720843732,-0.029522679746151,-0.015611559152603],[0.026776731014252,0.010998692363501,0.0062137800268829],[-0.0010794447734952,-0.076568730175495,-0.036376550793648]],[[-0.07447275519371,0.068760335445404,-0.066960826516151],[0.010211319662631,-0.069602809846401,-0.18471547961235],[0.061769768595695,0.056043788790703,0.054003108292818]],[[-0.0378761254251,-0.048323109745979,-0.053856991231441],[-0.048487011343241,0.0019763619638979,0.038763053715229],[0.061769891530275,0.060762748122215,-0.0040098545141518]],[[-0.020626397803426,-0.10984291136265,-0.016773486509919],[-0.011819309554994,0.0010281068971381,-0.08355924487114],[-0.10384295880795,-0.035701300948858,0.1338524222374]],[[0.014043825678527,-0.10032245516777,0.12003872543573],[-0.11863858252764,0.010514450259507,0.022921035066247],[-0.0029272742103785,-0.038054931908846,-0.094862528145313]],[[-0.073867671191692,0.019836774095893,-0.13188438117504],[0.049830041825771,0.026238150894642,0.045876398682594],[-0.024350946769118,-0.039858926087618,0.02989755384624]],[[-0.047380547970533,-0.0096811056137085,0.091764017939568],[0.0027082927990705,-0.03268776461482,-0.028455836698413],[0.0048333751037717,-0.090913668274879,-0.1031715720892]],[[-0.025206616148353,0.0073904767632484,0.049700871109962],[-0.034524604678154,-0.042218007147312,0.0038801785558462],[0.0056397509761155,-0.012730550020933,-0.034095402806997]],[[0.010687778703868,0.036685511469841,-0.030361032113433],[-0.092524908483028,0.029592789709568,0.088509991765022],[0.062222622334957,-0.061112012714148,0.016114622354507]],[[-0.016211625188589,0.027627794072032,0.042863078415394],[0.051833387464285,0.020623488351703,-0.11669459939003],[0.053692348301411,0.062044028192759,-0.06874206662178]],[[-0.037067208439112,-0.050866913050413,0.011932304129004],[-0.12215968966484,-0.012528525665402,-0.030821530148387],[0.16114163398743,0.048863157629967,0.0011598697165027]],[[-0.07525198161602,-0.10343359410763,-0.0026654647663236],[0.12171822041273,0.016367852687836,0.0066351164132357],[-0.010191542096436,0.057267356663942,0.07547951489687]],[[-0.056823752820492,0.098034977912903,0.031613279134035],[-0.031842097640038,0.02048222348094,0.080530419945717],[-0.10796770453453,-0.0042647109366953,0.01594452932477]],[[0.12977941334248,-0.0057805688120425,-0.028791209682822],[0.079136349260807,0.20012405514717,0.042998731136322],[0.037332452833652,0.090727634727955,0.013437843881547]],[[-0.035589072853327,0.074003733694553,0.051812987774611],[0.042807374149561,0.016364216804504,0.010173747316003],[-0.070190973579884,-0.11318157613277,0.023537637665868]],[[-0.1161299943924,0.020197305828333,0.20277364552021],[-0.00045538443373516,0.033796697854996,0.038120340555906],[-0.10067218542099,0.031822800636292,0.018029512837529]],[[-0.0059536378830671,0.023440027609468,0.13420341908932],[-0.074933387339115,0.027451997622848,0.04384097084403],[-0.12020348012447,0.1031386256218,0.086425490677357]],[[-0.018014131113887,0.036829140037298,-0.01562119834125],[0.01981608197093,-0.041402138769627,0.024520063772798],[0.036311022937298,-0.013880765996873,0.041396833956242]],[[-0.080453127622604,0.062208756804466,-0.079683803021908],[0.038851134479046,-0.03244312107563,-0.031195063143969],[-0.01582982391119,0.011965966783464,-0.061501543968916]],[[-0.029186835512519,-0.0058527966029942,0.0084808263927698],[0.022110784426332,-0.00072459713555872,0.012875624001026],[0.036563236266375,0.034900553524494,0.0075084632262588]],[[0.025020696222782,0.024343278259039,-0.046782076358795],[-0.030403215438128,0.027874678373337,0.026001907885075],[-0.056680958718061,-0.11648597568274,0.027586363255978]],[[0.035938061773777,0.067191019654274,0.047098983079195],[0.0058942874893546,-0.020064193755388,-0.22332519292831],[-0.089826591312885,0.081627868115902,-0.052203483879566]],[[0.057779833674431,0.09092091023922,0.019035229459405],[-0.03515112772584,-0.10071081668139,-0.12051932513714],[-0.10935620218515,-0.0040906080976129,-0.061233762651682]],[[-0.012600916437805,0.041094515472651,-0.06296630948782],[-0.016761669889092,0.087923943996429,0.069814749062061],[0.053393170237541,-0.051687616854906,-0.10219596326351]]],[[[0.11140272021294,0.053228057920933,-0.040459182113409],[0.12697514891624,0.041989978402853,0.008136723190546],[0.052619829773903,-0.023530745878816,-0.081416770815849]],[[-0.012130712158978,0.081725969910622,0.069278098642826],[-0.037691056728363,0.023884613066912,-0.013675121590495],[0.050372645258904,0.029215890914202,0.028537090867758]],[[0.02422833442688,-0.037556502968073,-0.060409680008888],[0.011946399696171,-0.0077367164194584,-0.031124612316489],[-0.057384587824345,0.023065527901053,-0.09423340857029]],[[0.002579708583653,0.024963155388832,0.0075871651060879],[-0.071916982531548,-0.021362271159887,-0.017583614215255],[0.048376251012087,-0.091338969767094,-0.048269417136908]],[[0.071214124560356,0.081765428185463,-0.13876104354858],[0.013743718154728,0.022037826478481,-0.026081923395395],[0.014305071905255,-0.017807636409998,-0.098658449947834]],[[-0.049178209155798,0.035824060440063,-0.020067719742656],[-0.017168095335364,-0.032579500228167,-0.026581121608615],[-0.013531097210944,0.019797760993242,0.028732310980558]],[[-0.015445293858647,0.021353866904974,-0.037899095565081],[-0.12364600598812,0.03073606453836,0.012200428172946],[-0.053990058600903,-0.023877220228314,0.014629588462412]],[[0.036366410553455,-0.021893477067351,-0.0021710123401135],[0.022868843749166,0.010690323077142,0.055489297956228],[0.05393972247839,0.013769027777016,0.11170024424791]],[[0.07290817797184,0.2539863884449,0.25340431928635],[-0.21230512857437,-0.091827750205994,0.07901968806982],[-0.24031737446785,-0.19775424897671,-0.10070054233074]],[[0.0094516510143876,0.11180707067251,0.020919801667333],[-0.02830558642745,-0.028876777738333,-0.057860847562551],[0.083164513111115,-0.058400455862284,-0.07502294331789]],[[-0.041471179574728,0.048421707004309,0.078650899231434],[-0.015426609665155,-0.050880450755358,0.12949253618717],[0.031370125710964,-0.007782971020788,-0.00063464289996773]],[[-0.029476495459676,0.0053275879472494,-0.0071671307086945],[-0.092607699334621,-0.017688613384962,-0.041148856282234],[0.037152659147978,0.0335982888937,-0.0017445476260036]],[[-0.023968849331141,0.022437850013375,-0.095827713608742],[-0.0092105278745294,0.004540091380477,-0.094899378716946],[-0.2001630961895,-0.14347249269485,-0.014735627919436]],[[-0.023547818884254,5.6481123465346e-05,0.023756511509418],[-0.042924873530865,0.070505134761333,0.0051295566372573],[-0.071043752133846,-0.039345510303974,-0.011051744222641]],[[0.051669254899025,0.03383868560195,0.05081083625555],[0.059324514120817,-0.073574297130108,-0.091718599200249],[-0.042023003101349,0.04793981090188,0.050659999251366]],[[-0.08985161036253,-0.015014006756246,0.077271424233913],[-0.010912689380348,-0.057827182114124,0.056090291589499],[-0.16667091846466,-0.13488234579563,-0.046123322099447]],[[0.010191107168794,-0.033869076520205,0.05214050039649],[0.030455395579338,-0.036228373646736,0.043465949594975],[0.040271434932947,0.056452125310898,0.040097177028656]],[[0.012309153564274,-0.01957200281322,-0.040796529501677],[-0.052948355674744,-0.031073585152626,-0.015822550281882],[0.021661998704076,0.041160684078932,-0.056911192834377]],[[-0.046872191131115,0.04246361553669,0.055489055812359],[-0.031542368233204,0.057352226227522,0.060700826346874],[-0.11980786174536,-0.059180077165365,-0.019179061055183]],[[0.066921003162861,0.054546371102333,-0.067445829510689],[-0.021808594465256,-0.024102354422212,-0.028800265863538],[-0.080324418842793,-0.0047135902568698,0.0069548431783915]],[[0.056884907186031,0.044779855757952,0.056742593646049],[-0.022888343781233,-0.0096620824187994,0.013763835653663],[0.030982792377472,0.028224360197783,0.0075771505944431]],[[-0.00098728353623301,0.097612380981445,0.0078870048746467],[0.011287353001535,0.07696882635355,-0.081467352807522],[-0.1924701333046,-0.11612790822983,-0.15702019631863]],[[0.019331088289618,-0.084983378648758,-0.023465685546398],[0.044786147773266,0.028439279645681,-0.025439884513617],[0.10981070995331,-0.027704751119018,-0.035774804651737]],[[-0.037900298833847,0.036435540765524,0.061050619930029],[0.011149709112942,-0.054558016359806,0.049485396593809],[-0.065019942820072,-0.041226156055927,-0.054395031183958]],[[0.04585962370038,0.070466279983521,0.090593926608562],[0.068295232951641,0.021940616890788,0.056493308395147],[0.13044112920761,-0.024262340739369,-0.083222426474094]],[[-0.020774381235242,0.058083221316338,0.072172775864601],[-0.073306746780872,-0.047093488276005,-4.9944435886573e-05],[-0.063887402415276,-0.040010243654251,0.029515195637941]],[[0.10281336307526,0.06160831078887,0.025919022038579],[-0.013383779674768,-0.056395202875137,-0.036110758781433],[-0.078573063015938,0.0056374631822109,-0.018472097814083]],[[0.0080051003023982,0.1375757753849,0.14478644728661],[-0.040554087609053,0.069393076002598,0.14666813611984],[-0.087533809244633,-0.13952718675137,-0.042023431509733]],[[-0.023178061470389,0.018198622390628,0.0079480819404125],[-0.047498609870672,-0.076772443950176,-0.02737707644701],[0.064230754971504,-0.010759217664599,-0.016732396557927]],[[0.033659383654594,0.13396248221397,-0.0019241113914177],[-0.12262000888586,-0.099403277039528,-0.049365747720003],[0.0058986749500036,0.016058642417192,-0.0042926520109177]],[[-0.0055169891566038,-0.12795302271843,-0.082137137651443],[-0.14633725583553,0.039005555212498,-0.038247119635344],[0.11264863610268,-0.077214412391186,0.12507236003876]],[[-0.1128685772419,-0.12660005688667,0.084898769855499],[-0.035926841199398,0.040030591189861,0.084763064980507],[-0.17505989968777,0.043907579034567,0.079574629664421]],[[-0.0071247620508075,-0.11492709815502,-0.026837296783924],[-0.0075468551367521,-0.048836067318916,-0.11492116004229],[0.088819690048695,0.011561720632017,-0.050951797515154]],[[-0.030625980347395,-0.012907708995044,0.082029812037945],[0.060212105512619,-0.07498637586832,0.0076392777264118],[0.091016575694084,0.020927442237735,0.005816251039505]],[[0.03428553789854,0.11548492312431,-0.0021307412534952],[0.063872180879116,0.29105150699615,0.16399146616459],[-0.16572493314743,0.02889177761972,0.083076536655426]],[[0.095164284110069,-0.01003038790077,0.0029191412031651],[0.030394822359085,-0.02130888774991,-0.044980578124523],[0.037918366491795,0.012171401642263,0.020126966759562]],[[-0.029317023232579,-0.03259514644742,-0.049642477184534],[-0.08565566688776,-0.074007272720337,-0.060407534241676],[0.053892597556114,-0.0045022736303508,0.035506702959538]],[[-0.16348020732403,-0.36631798744202,-0.49218118190765],[0.20015369355679,0.06619618088007,-0.12630397081375],[0.38883462548256,0.22478207945824,0.0089239869266748]],[[0.0039724525995553,0.0059772739186883,-0.047087121754885],[0.087496131658554,-0.047670152038336,-0.022938514128327],[-0.063134960830212,-0.01091986708343,0.067998021841049]],[[-0.20439383387566,-0.1811862885952,-0.092715926468372],[-0.11303901672363,-0.15605220198631,-0.20379480719566],[0.075714610517025,-0.10800087451935,-0.055536165833473]],[[-0.041431874036789,-0.091892816126347,0.0039479094557464],[-0.046210471540689,-0.076010711491108,0.048464611172676],[-0.0079139452427626,-0.059994459152222,0.092280253767967]],[[-0.051686491817236,0.10749460756779,0.075930520892143],[-0.1342841386795,0.010844108648598,0.14030002057552],[-0.08525475114584,-0.034797556698322,0.05353519320488]],[[-0.0052468571811914,0.012100649997592,-0.097639836370945],[0.0076800165697932,0.12627638876438,0.052769511938095],[-0.10056660324335,-0.073569864034653,0.058707427233458]],[[0.0306002125144,-0.024468315765262,0.014293775893748],[-0.047941956669092,-0.18724648654461,0.01779467985034],[-0.0034107069950551,-0.060808125883341,0.023473538458347]],[[-0.050176277756691,-0.026321765035391,-0.076259732246399],[0.054964117705822,0.021844090893865,-0.0011441522510722],[0.19798520207405,-0.049329981207848,-0.1003440991044]],[[-0.057488583028316,-0.014412318356335,0.046978421509266],[-0.10778204351664,-0.14889414608479,0.072996042668819],[-0.097045764327049,-0.070139370858669,0.0036767122801393]],[[0.093467108905315,-0.031844839453697,-0.11277428269386],[0.11779962480068,-0.015382448211312,0.088342376053333],[0.1006525605917,-0.062622427940369,-0.10888768732548]],[[0.06612154841423,0.0091843819245696,-0.034760482609272],[0.10976965725422,0.032644722610712,-0.017997644841671],[0.043481606990099,0.044440902769566,-0.012586275115609]],[[0.020203664898872,0.010228318162262,0.029966812580824],[0.035697035491467,-0.06317363679409,0.02880322560668],[-0.060981310904026,-0.01122166402638,0.0097573408856988]],[[-0.041062828153372,0.021412512287498,0.030959965661168],[-0.084463529288769,-0.10658995062113,0.057506661862135],[0.0020105277653784,-0.078913547098637,0.015918372198939]],[[-0.038980167359114,-0.04321251064539,-0.015913009643555],[-0.096591331064701,-0.13509939610958,-0.014664922840893],[-0.20006720721722,-0.071296639740467,0.01268567610532]],[[0.060450449585915,0.0056873015128076,-0.073722802102566],[0.041688803583384,0.10269075632095,0.075706213712692],[0.045878395438194,0.0020257504656911,0.044063672423363]],[[-0.038015875965357,-0.11827892810106,0.035879220813513],[0.041646491736174,0.090893015265465,0.08316557854414],[0.018141673877835,0.058817632496357,0.090441390872002]],[[0.078926809132099,0.092500932514668,0.089467115700245],[-0.023808553814888,0.06064223870635,0.16937166452408],[0.065474517643452,0.0077374204993248,0.043001621961594]],[[-0.083770118653774,-0.23053047060966,-0.16703854501247],[-0.061492763459682,-0.0088559770956635,0.02257801964879],[0.11825751513243,0.061568789184093,0.0458944439888]],[[-0.047807514667511,-0.10540442913771,-0.12323895096779],[0.042296025902033,-0.090201318264008,-0.10459968447685],[-0.056482318788767,0.0050156023353338,0.012031516060233]],[[-0.1071759685874,-0.039191618561745,0.10838204622269],[-0.15977603197098,-0.05919024720788,0.019693063572049],[0.018649226054549,-0.13611376285553,-0.003627783851698]],[[-0.01484317984432,0.009769425727427,0.0061545991338789],[0.027562847360969,-0.052779663354158,0.018554953858256],[-0.011800987645984,0.0053991372697055,0.083528190851212]],[[0.02656945772469,0.041686065495014,-0.029877522960305],[-0.04499514400959,0.023417454212904,-0.020053301006556],[0.039977911859751,-0.06202719733119,0.049883130937815]],[[-0.00086359033593908,0.067437581717968,0.092827573418617],[-0.066744863986969,0.0021518168505281,0.069929085671902],[-0.032286919653416,-0.061730023473501,-0.0055184615775943]],[[-0.084385812282562,0.0860475897789,0.1065546348691],[-0.025952847674489,-0.070707932114601,-0.095852628350258],[0.15484823286533,-0.028294935822487,-0.06928239017725]],[[0.061385560780764,0.055435497313738,-0.09821168333292],[0.039148259907961,-0.072491258382797,-0.15686923265457],[-0.059747330844402,-0.14548794925213,0.057875115424395]],[[0.0067668221890926,-0.12032312899828,-0.030964529141784],[-0.052744463086128,-0.0067726448178291,-0.0093310438096523],[0.0062767108902335,-0.032427452504635,0.020204961299896]],[[-0.17191554605961,0.062255762517452,0.17097041010857],[-0.045392729341984,-0.014217622578144,0.043697573244572],[-0.16246557235718,-0.10168031603098,-0.02568095177412]]],[[[-0.048502288758755,0.058324474841356,0.098713040351868],[0.060413952916861,0.017412917688489,0.012213428504765],[-0.021798677742481,-0.056997638195753,-0.012951606884599]],[[-0.0075177829712629,-0.031569719314575,0.010088634677231],[0.012578434310853,-0.00062132289167494,-0.018065894022584],[-0.10512693226337,-0.0064509389922023,0.036053020507097]],[[0.053014863282442,-0.0084500052034855,-0.0030662124045193],[-0.0063038887456059,-0.064070649445057,0.020653318613768],[-0.047268986701965,0.035460848361254,-0.039882693439722]],[[0.0360470674932,0.040641497820616,-0.038075301796198],[-0.011733599938452,-0.04094435274601,-0.021606875583529],[-0.12391225248575,-0.02841598726809,0.011926633305848]],[[-0.014183244667947,0.082074902951717,-0.055664759129286],[0.084905713796616,-0.027481639757752,0.02351376786828],[-0.024366231635213,-0.13830943405628,-0.0068474817089736]],[[-0.077682815492153,0.00074589619180188,-0.0024976832792163],[0.004618217702955,-0.087851025164127,-0.036427967250347],[0.021714339032769,-0.076151371002197,0.057703349739313]],[[0.074739634990692,-0.028907900676131,-0.014633058570325],[-0.037135489284992,0.047022085636854,-0.052975844591856],[-0.023930327966809,0.01377306971699,-0.054020047187805]],[[0.036644443869591,-0.085986189544201,-0.073216676712036],[0.068084500730038,-0.052644427865744,0.0090716313570738],[0.025123819708824,0.035489857196808,0.040434267371893]],[[-0.070919923484325,-0.022269733250141,-0.050748083740473],[-0.083760552108288,0.090174406766891,-0.0074756951071322],[-0.039716240018606,-0.10315816104412,-0.010940841399133]],[[0.028694977983832,0.077476136386395,0.0030996950808913],[-0.016695849597454,-0.020531943067908,0.095786638557911],[-0.058457154780626,-0.065523318946362,-0.024464298039675]],[[-0.028488269075751,0.0093675162643194,-0.038572952151299],[-0.036550223827362,0.089435376226902,-0.035911988466978],[0.06825839728117,-0.0097927805036306,0.019560147076845]],[[-0.010619663633406,-0.0028433753177524,-0.029699487611651],[0.007517515681684,-0.078899078071117,0.040987960994244],[-0.036798991262913,-0.013028293848038,-0.083343341946602]],[[0.0052179084159434,0.018645020201802,-0.03139691054821],[-0.034454539418221,-0.067706629633904,-0.079140797257423],[-0.077948644757271,-0.074405767023563,-0.032179914414883]],[[0.030586339533329,0.074095666408539,0.084159970283508],[0.06689066439867,0.0010160161182284,0.055585149675608],[0.070842124521732,0.030325867235661,-0.014058203436434]],[[0.037429798394442,-0.022540343925357,0.097918845713139],[-0.012875910848379,-0.078005105257034,-0.089434005320072],[0.062011256814003,0.0062147090211511,-0.067116767168045]],[[0.003908546641469,-0.019915021955967,0.036600932478905],[0.042174946516752,-0.011104034259915,0.028417766094208],[-0.0517847687006,-0.016780029982328,0.038093909621239]],[[-0.02416069060564,0.0025545191019773,-0.11806411296129],[-0.018515951931477,-0.039590869098902,0.0055633708834648],[0.022409496828914,0.024951821193099,-0.020543081685901]],[[-0.0090158618986607,0.0087907090783119,-0.078443594276905],[-0.019179536029696,-0.018172383308411,0.0013001690385863],[0.01642395183444,-0.028020353987813,-0.038608651608229]],[[-0.0050305854529142,-0.069143392145634,0.047961834818125],[-0.069727532565594,0.017006423324347,0.0062302742153406],[-0.014758435077965,0.028680263087153,0.021630901843309]],[[0.013930778950453,-0.0018663208466023,0.0056239855475724],[-0.051715787500143,-0.013407704420388,-0.027690654620528],[-0.047223169356585,0.068781591951847,-0.042036861181259]],[[-0.048790723085403,-0.059612650424242,-0.074975900352001],[-0.042034585028887,-0.044607769697905,-0.020460162311792],[0.019371079280972,-0.048935182392597,0.030697483569384]],[[-0.013483240269125,0.082789778709412,-0.010811975225806],[-0.061234496533871,-0.072293341159821,0.016718272119761],[-0.0094416299834847,0.024363154545426,-0.030416375026107]],[[0.013286679983139,-0.049672402441502,-0.00097748823463917],[0.03375244513154,-0.022113021463156,0.011030741967261],[0.056821033358574,-0.0089644556865096,-0.024814566597342]],[[0.040620658546686,-0.032169420272112,0.009513434022665],[-0.030405532568693,-0.058596648275852,-0.0070837740786374],[0.045420899987221,0.069820895791054,0.04455766454339]],[[-0.04835794493556,0.026258483529091,-0.016025822609663],[0.014625038951635,-0.010911350138485,-0.015365627594292],[0.057503152638674,-0.039585147053003,0.02348711527884]],[[-0.030148049816489,-0.020862996578217,0.0064297406934202],[-0.006417402997613,0.028968811035156,-0.05805604159832],[-0.040211714804173,0.035568598657846,-0.067919827997684]],[[-0.056841377168894,0.026852138340473,0.0053538898937404],[-0.076469920575619,-0.023664740845561,-0.066844828426838],[-0.051709815859795,-0.093134470283985,-0.063200429081917]],[[-0.010135287418962,0.03823971003294,0.035902880132198],[0.038829702883959,0.077042542397976,0.063010573387146],[0.011987032368779,-0.060036573559046,0.090734824538231]],[[-0.036939933896065,-0.044570297002792,-0.068850733339787],[-0.041675738990307,0.019889570772648,0.0082564139738679],[-0.056317932903767,0.087960764765739,0.013502540066838]],[[-0.015421431511641,0.0091295735910535,0.0028113790322095],[-0.024781120941043,-0.027411283925176,-0.03517322987318],[0.0024614844005555,0.022851075977087,-0.058584854006767]],[[0.037012778222561,0.010512658394873,-0.11228580772877],[0.045613300055265,-0.094885647296906,-0.069393612444401],[-0.0027376466896385,-0.0067286607809365,0.066094070672989]],[[-0.13814815878868,0.047660570591688,0.030062107369304],[-0.091040909290314,0.034361720085144,0.019516473636031],[-0.0086773335933685,0.039223793894053,0.056010220199823]],[[-0.062379185110331,0.0023316813167185,-0.058432213962078],[0.048033703118563,0.0020504223648459,-0.022377720102668],[-0.019544286653399,-0.0091594494879246,-0.038320600986481]],[[0.0098394164815545,-0.057784967124462,-0.009898915886879],[-0.01631673052907,-0.032422740012407,-0.0020455955527723],[0.012107454240322,-0.035436417907476,-0.032264966517687]],[[0.017805431038141,-0.050519037991762,-0.046802151948214],[0.035854160785675,0.045370049774647,0.0067948708310723],[0.0535555370152,-0.0054385950788856,-0.040069099515676]],[[0.08995221555233,0.12745103240013,-0.0097692152485251],[-0.057605251669884,0.068675227463245,0.095178723335266],[-0.029360169544816,-0.086707077920437,-0.0058617116883397]],[[-0.021958919242024,-0.025233147665858,-0.16603469848633],[0.036351658403873,-0.075299479067326,0.017084676772356],[-0.017551200464368,0.046592269092798,0.01920110732317]],[[0.036674547940493,-0.047462098300457,-0.071774654090405],[-0.034661762416363,0.093232676386833,-0.0066826064139605],[-0.044015083462,0.094382546842098,0.01061265449971]],[[-0.030346728861332,-0.091421082615852,0.022172974422574],[0.038594461977482,-0.012863856740296,-0.00836475007236],[0.015083677135408,-0.037291128188372,-0.0087736360728741]],[[-0.0077784964814782,-0.080510072410107,4.3474887206685e-05],[-0.061632558703423,0.016581319272518,-0.04280761256814],[-0.03325829282403,-0.0046971756964922,0.017654249444604]],[[0.031852759420872,0.033015497028828,-0.044642679393291],[-0.029006559401751,-0.052077822387218,0.039941526949406],[-0.11457618325949,0.085733495652676,-0.078294582664967]],[[-0.13058677315712,-0.060913547873497,-0.014703689143062],[0.027807762846351,0.0054215006530285,-0.016183961182833],[-0.0066054305061698,0.037247598171234,0.04278451576829]],[[-0.10211603343487,-0.086009815335274,0.0027365512214601],[-0.044509474188089,-0.041574340313673,0.077308133244514],[-0.085244722664356,0.05132919177413,0.087583102285862]],[[0.013293623924255,-0.040330830961466,-0.0014212550595403],[0.031295150518417,0.018414504826069,-0.021004479378462],[-0.011434242129326,-0.097002118825912,-0.030203219503164]],[[-0.027833934873343,0.010819752700627,0.027002565562725],[0.091937333345413,0.053770404309034,-0.038615688681602],[0.07592911273241,-0.041401255875826,-0.018522137776017]],[[-0.11441624909639,0.081688463687897,0.032096143811941],[-0.16880470514297,0.0053536919876933,-0.0010217006783932],[-0.0077369133941829,-0.059622760862112,0.032069087028503]],[[0.085282661020756,0.068882010877132,-0.01996548846364],[0.050250664353371,0.011572753079236,0.043938979506493],[-0.029794564470649,-0.02823693677783,-0.029001705348492]],[[-0.044286053627729,0.015740435570478,-0.022458828985691],[0.01608600653708,0.014387087896466,-0.02614869736135],[0.066113047301769,0.076846495270729,-0.056426707655191]],[[-0.013587984256446,-0.022820236161351,0.0048693069256842],[-0.0074206027202308,0.0014440803788602,-0.0038949057925493],[0.091312602162361,-0.037635482847691,-0.096551284193993]],[[0.016413442790508,-0.028177203610539,0.032051175832748],[0.018327511847019,-0.038355089724064,0.015066163614392],[-0.068589739501476,0.00097580009605736,0.068090617656708]],[[-0.0050848480314016,0.017229601740837,-0.0075675393454731],[-0.095777697861195,-0.028243388980627,-0.0038790120743215],[-0.027210237458348,0.012978441081941,0.045454572886229]],[[-0.06241862475872,7.2351504059043e-05,-0.019622949883342],[-0.0031878517474979,-0.027887023985386,-0.00045581100857817],[-0.027832664549351,-0.021443391218781,0.097929909825325]],[[-0.051715165376663,0.12896247208118,-0.10424194484949],[-0.063838310539722,0.054801072925329,0.0082454746589065],[-0.0070489370264113,-0.0034025146160275,-0.026943912729621]],[[0.062915153801441,0.024580331519246,0.11702855676413],[0.077405609190464,0.03741355240345,0.0075502237305045],[-0.016779504716396,0.051656972616911,0.14926609396935]],[[0.041877716779709,-0.021479103714228,0.0023224612232298],[0.029749725013971,0.070934310555458,0.018816646188498],[0.039595495909452,-0.024531349539757,0.011816055513918]],[[-0.010187150910497,0.04569074884057,-0.028079865500331],[-0.035683397203684,0.022164164111018,0.011525006964803],[-0.037771482020617,-0.0009774254867807,0.042207900434732]],[[0.017566943541169,-0.07477892935276,-0.099327482283115],[-0.044216331094503,-0.077563464641571,6.4423016738147e-05],[-0.0095694130286574,-0.023885807022452,0.010175679810345]],[[0.0173863414675,0.0066989841870964,0.027061026543379],[0.010195329785347,0.040784675627947,-0.00092968973331153],[-0.00043201079824939,0.014578309841454,0.037851236760616]],[[-0.07270772755146,-0.017118785530329,0.088438704609871],[0.018767047673464,0.0041616633534431,-0.01430933829397],[-0.11885697394609,0.014385430142283,-0.057842750102282]],[[-0.030079495161772,0.029075654223561,0.05206810310483],[-0.02898327447474,0.031436752527952,-0.048476997762918],[0.010016155429184,-0.020713523030281,0.053454861044884]],[[0.0082030659541488,0.065968081355095,-0.063722662627697],[-0.012086885981262,0.022478856146336,0.022174019366503],[0.05538322404027,-0.022874798625708,0.044177889823914]],[[0.029103588312864,-0.012262165546417,0.053037978708744],[0.073406688868999,0.034849084913731,0.0037778906989843],[-0.00027207404491492,-0.024524684995413,-0.09722276777029]],[[0.020319582894444,-0.078921921551228,0.026079757139087],[-0.025639519095421,-0.035628251731396,-0.024799959734082],[-0.040056299418211,-0.02513593994081,0.0052213263697922]],[[0.028930155560374,-0.018125249072909,0.055496148765087],[0.037568360567093,-0.031137837097049,-0.015485408715904],[-0.06221991404891,-0.076121509075165,0.010218723677099]]],[[[-0.028795542195439,-0.01743640191853,-0.045081444084644],[-0.069039806723595,-0.05440840870142,-0.064758308231831],[0.023037662729621,0.034934867173433,-0.08284156024456]],[[0.076431311666965,0.11154505610466,0.062291976064444],[-0.08467710763216,0.069286070764065,0.074468933045864],[0.070999667048454,-0.019979642704129,-0.044642727822065]],[[-0.06658449023962,0.0045602298341691,0.032084308564663],[-0.013360974378884,-0.055546075105667,-0.047381300479174],[0.006713739130646,-0.0320252366364,0.068854741752148]],[[0.0092742396518588,0.004288372118026,0.069733574986458],[0.0069261244498193,-0.062702037394047,-0.039897754788399],[0.0094894412904978,-0.058815598487854,-0.079760320484638]],[[-0.12805072963238,0.032981537282467,0.0060511087067425],[0.037775736302137,-0.021906452253461,-0.033327464014292],[0.0014279460301623,0.03227823600173,0.0082578575238585]],[[-0.041140105575323,0.042162738740444,0.019905790686607],[-0.084390662610531,-0.037690825760365,0.011827869340777],[-0.032158464193344,-0.097595721483231,0.056957501918077]],[[-0.049674049019814,0.0060625965707004,0.0082808854058385],[-0.018527729436755,-0.06745795160532,0.067298598587513],[-0.033911842852831,0.060408901423216,-0.07944244146347]],[[0.031842693686485,-0.072080291807652,-0.0067058946006],[-0.019804058596492,-0.083058781921864,0.04340423643589],[-0.061747618019581,-0.084413766860962,-0.0001422210916644]],[[-0.025997597724199,0.014266477897763,0.1035899668932],[-0.0056672426871955,-0.0085132056847215,-0.03116150200367],[-0.056388162076473,0.038721386343241,-0.018096024170518]],[[-0.0078268675133586,-0.031517721712589,0.071892723441124],[-0.029844572767615,-0.11793043464422,0.030786229297519],[-0.070979490876198,0.048304203897715,0.073511376976967]],[[0.019963102415204,-0.021013211458921,0.065056324005127],[0.07856772094965,-0.024166837334633,-0.051097102463245],[-0.026710610836744,-0.048445347696543,-0.099947847425938]],[[0.0025161663070321,0.053337257355452,0.10465800017118],[-0.019288126379251,-0.034905269742012,0.068415731191635],[-0.043527372181416,0.029721580445766,-0.044416882097721]],[[0.013733638450503,-0.00066994823282585,-0.0063597187399864],[-0.093995951116085,-0.066774941980839,-0.0064693694002926],[-0.047743428498507,-0.14709244668484,-0.032071977853775]],[[-0.027165612205863,0.0027687456458807,0.041543364524841],[0.054246328771114,0.046952024102211,0.031615048646927],[-0.013676096685231,0.11712975800037,-0.065347328782082]],[[0.022340644150972,-0.039759203791618,-0.06998273730278],[-0.075077854096889,-0.0023843813687563,-0.13258388638496],[0.029575370252132,0.0055274926126003,-0.021674631163478]],[[-0.043083187192678,0.067753687500954,-0.020921766757965],[-0.054306797683239,-0.10496339946985,0.051605768501759],[-0.00029052447644062,-0.088278487324715,-0.059987518936396]],[[-0.00047077363706194,-0.021029496565461,-0.016153585165739],[-0.097517549991608,-0.041584484279156,-0.017097815871239],[0.014671979472041,0.047656677663326,-0.037050873041153]],[[-0.0086682382971048,-0.05147822573781,-0.011966491118073],[-0.042620126157999,-0.028812248259783,-0.038896840065718],[-0.063481621444225,0.035702247172594,-0.0068314438685775]],[[0.046467553824186,-0.010278772562742,0.0054367608390749],[-0.015250238589942,0.029370609670877,-0.051117435097694],[0.050378277897835,-0.0051381378434598,0.011873258277774]],[[0.0037313604261726,0.0046433843672276,0.0091496929526329],[-0.0058986828662455,-0.013384965248406,-0.016876041889191],[0.0043267691507936,-0.05272164568305,0.025291927158833]],[[-0.019339926540852,-0.005331345833838,-0.12652872502804],[-0.00075896916678175,0.089499346911907,-0.12554979324341],[0.040347274392843,0.020494813099504,-0.082220114767551]],[[0.089343525469303,0.043886378407478,0.0067798616364598],[0.090494826436043,0.033098746091127,-0.069447048008442],[-0.048792686313391,0.017417937517166,0.070207834243774]],[[0.04681583866477,-0.029877154156566,0.028137700632215],[-0.016805348917842,-0.043530069291592,0.024839635938406],[-0.0039631361141801,0.038949135690928,-0.035516645759344]],[[0.0078909154981375,-0.066566273570061,0.037729248404503],[-0.0076490915380418,0.031188182532787,-0.00083217740757391],[-0.11580464988947,-0.1294699460268,0.012202054262161]],[[0.01101775560528,0.10263798385859,-0.10741125792265],[-0.033490058034658,0.09993863850832,0.041527044028044],[0.012922761961818,0.020723342895508,0.02097531221807]],[[-0.091439127922058,-0.067337356507778,-0.076812610030174],[-0.03279984369874,0.01518473867327,-0.094472080469131],[-0.0033828159794211,-0.033012252300978,0.048419319093227]],[[0.00059275951934978,0.11238317191601,-0.10633278638124],[-0.12923067808151,0.032009158283472,0.057019833475351],[-0.012901460751891,0.01029125507921,0.044327069073915]],[[0.19342510402203,0.053678523749113,-0.081204175949097],[0.027988392859697,-0.036395780742168,0.089096300303936],[-0.053328428417444,-0.086600214242935,0.0456687733531]],[[-0.12065067887306,0.05955084040761,0.0056520435027778],[0.032100364565849,-0.064734853804111,0.0030399602837861],[0.017054475843906,-0.04848300293088,-0.006676462944597]],[[-0.065412737429142,0.0024918951094151,-0.053549602627754],[-0.02402419783175,-0.040044520050287,0.016042347997427],[0.012482370249927,0.011972763575613,-0.026038974523544]],[[0.015883196145296,0.082318134605885,-0.062261272221804],[0.020148446783423,-0.082004681229591,-0.0021725660189986],[0.017460234463215,-0.076403632760048,0.10674028843641]],[[-0.14967449009418,-0.11566884070635,0.04982927441597],[-0.071926526725292,0.14975154399872,-0.024355934932828],[-0.052137073129416,0.03420140221715,0.13091404736042]],[[-0.057413842529058,-0.014670331962407,-0.14579835534096],[0.016544859856367,0.0023031630553305,-0.066689074039459],[0.02447946742177,-0.080695614218712,-0.075428865849972]],[[0.019691478461027,-0.1261138767004,0.013487927615643],[0.071593657135963,-0.1070489436388,0.07360478490591],[-0.046648655086756,-0.13987238705158,-0.021692713722587]],[[-0.057647544890642,-0.018004734069109,-0.035061746835709],[0.03461105376482,0.023903334513307,0.057752203196287],[-0.0076933214440942,-0.024016849696636,-0.036667730659246]],[[-0.02602625451982,-0.0017554877558723,-0.066310413181782],[0.017310410737991,-0.045370578765869,-0.097978480160236],[0.025508349761367,-0.15526215732098,-0.120824187994]],[[-0.14498138427734,-0.06384164839983,0.0088553167879581],[-0.097637817263603,0.094577722251415,0.0067613702267408],[0.018302788957953,0.063859298825264,0.022436382248998]],[[-0.16183617711067,-0.031883310526609,-0.056311320513487],[0.098468877375126,0.063139118254185,0.054619714617729],[0.0091060856357217,-0.033682364970446,0.12407869845629]],[[0.085112385451794,0.033752363175154,0.085934571921825],[-0.050516467541456,0.018276859074831,-0.021271035075188],[0.074107646942139,-0.045976381748915,-0.063039675354958]],[[0.0056689991615713,-0.033479653298855,0.041291888803244],[-0.044782530516386,-0.052921131253242,-0.034996133297682],[0.00092780793784186,-0.011534158140421,0.046090114861727]],[[-0.098386645317078,0.0085096023976803,0.052864469587803],[-0.10076146572828,-0.14668613672256,0.0079086543992162],[-0.0010429811663926,-0.069660067558289,-0.085213162004948]],[[-0.01385569293052,0.052787501364946,-0.015810117125511],[-0.005184025503695,0.042737942188978,0.017218494787812],[-0.062866076827049,-0.0088051659986377,-0.10578103363514]],[[-0.013429659418762,0.011951155029237,0.02950000949204],[-0.07452642172575,-0.063669189810753,-0.016996378079057],[-0.023139670491219,0.021418252959847,-0.098419651389122]],[[-0.035168159753084,-0.037073593586683,0.058355208486319],[-0.042355429381132,0.034949500113726,0.018414739519358],[0.041472416371107,0.038913242518902,-0.020079078152776]],[[9.0192414063495e-05,-0.020855834707618,-0.016953883692622],[0.047029480338097,0.0099358269944787,0.0078929606825113],[-0.067429929971695,-0.019823767244816,0.037496026605368]],[[0.054275620728731,0.048188615590334,0.030815152451396],[-0.030034866183996,-0.0046081403270364,-0.0016957597108558],[-0.038505811244249,0.016963552683592,-0.042645663022995]],[[-0.044790629297495,-0.058235436677933,0.030912166461349],[-0.06294672191143,-0.045489020645618,0.012516150251031],[-0.033895056694746,0.0059338021092117,0.028657456859946]],[[-0.030926886945963,0.015202189795673,-0.0214220341295],[-0.019714770838618,-0.0022037676535547,0.012623911723495],[-0.0048601683229208,0.015339344739914,-0.033026982098818]],[[-0.043480478227139,0.0016478057950735,0.08350583165884],[-0.037287697196007,-0.1322640478611,-0.05465292558074],[0.02523579262197,-0.04895194247365,-0.015463857911527]],[[0.042689792811871,-0.106141731143,0.053378216922283],[-0.012259332463145,0.024340761825442,0.026817979291081],[-0.15549765527248,-0.10733868926764,-0.0017654362600297]],[[0.035924918949604,-0.055961087346077,0.042230449616909],[-0.011676265858114,-0.0070944079197943,-0.017109839245677],[-0.06409327685833,0.02324085496366,0.028474155813456]],[[-0.029173381626606,0.041707921773195,0.00070983701152727],[0.020295072346926,-0.0093433801084757,0.023533344268799],[0.03154768794775,-0.027746671810746,-0.057209346443415]],[[-0.01919923722744,0.077792212367058,-0.083808459341526],[-0.16288207471371,-0.042997740209103,-0.05874564871192],[-0.036000896245241,-0.11897039413452,-0.12005782872438]],[[0.15039944648743,0.083663873374462,0.049539312720299],[0.070166632533073,-0.022063912823796,0.084545627236366],[0.087845601141453,0.094395764172077,0.044066179543734]],[[0.050066158175468,0.051343448460102,0.073471590876579],[0.014595311135054,-0.069427296519279,0.12194008380175],[-0.12422803044319,-0.11985566467047,0.025843167677522]],[[0.0062919431366026,-0.038118995726109,-0.10764506459236],[-0.074495978653431,-0.06814943999052,-0.042277693748474],[3.7901390896877e-05,-0.08185663819313,-0.061665471643209]],[[-0.054760597646236,0.037719812244177,0.047879293560982],[-0.0067999744787812,-0.026948176324368,0.012597315944731],[0.084716968238354,-0.095768347382545,-0.10877207666636]],[[-0.04726329818368,-0.079170539975166,0.0068554920144379],[0.004969943780452,-0.040369749069214,-0.048358291387558],[0.012458795681596,-0.0083690835162997,0.045834947377443]],[[0.010754247196019,-0.030436834320426,0.0063358042389154],[-0.0072667975910008,0.030288556590676,0.014409438706934],[0.08462692797184,-0.014115980826318,-0.061916701495647]],[[-0.030457980930805,0.01321002934128,-0.013626649975777],[0.052827190607786,0.030991513282061,0.029973661527038],[0.01928367651999,-0.0023346471134573,-0.00091377552598715]],[[0.052633449435234,0.025608569383621,0.022449355572462],[-0.035960510373116,0.011140177026391,0.088923066854477],[0.10344076901674,0.071709610521793,0.026426307857037]],[[-0.042326934635639,-0.021550841629505,0.011225453577936],[0.032689683139324,-0.0088964365422726,0.057913288474083],[0.0015680375508964,-0.11526291072369,0.16972772777081]],[[0.015916351228952,0.050056096166372,0.02021374925971],[-0.11649798601866,0.12470550090075,-0.031671788543463],[-0.058734867721796,-0.10748362541199,0.019385203719139]],[[-0.012349245138466,0.060766372829676,-0.044576548039913],[-0.10475497692823,0.019036188721657,0.0083862394094467],[-0.087289839982986,-0.0065839979797602,-0.015018840320408]]],[[[0.1139664798975,-0.0828722640872,-0.10275009274483],[-0.03853040933609,-0.022385330870748,-0.10351219773293],[0.0674939006567,0.018954202532768,-0.086631372570992]],[[0.010470184497535,-0.031917050480843,-0.032456252723932],[-0.088252633810043,0.051467224955559,0.017221331596375],[-0.027038995176554,-0.0097695076838136,0.011656818911433]],[[0.052453052252531,0.033162720501423,-0.014515061862767],[-0.020923461765051,0.054217614233494,-0.0039833025075495],[-0.010620600543916,-0.02488955296576,0.071138963103294]],[[0.018700201064348,0.067753538489342,0.072064124047756],[-0.021345367655158,-0.020610356703401,-0.041569422930479],[0.0067057823762298,-0.084690876305103,-0.0033018444664776]],[[0.0041459803469479,0.066511616110802,0.083630509674549],[0.0019600368104875,-0.084249965846539,-0.080603264272213],[-0.11376102268696,-0.092266261577606,-0.09308185428381]],[[-0.10530722886324,-0.079107731580734,0.085229858756065],[-0.064398735761642,-0.1302045583725,0.0033946225885302],[-0.0007047604303807,-0.11202294379473,-0.036222074180841]],[[-0.081528827548027,0.03346536681056,0.013590013608336],[-0.028772234916687,-0.012899146415293,-0.060962691903114],[-0.021833088248968,-0.032440830022097,-0.095227666199207]],[[-0.075490958988667,-0.079463325440884,0.018077965825796],[0.045163828879595,0.030830392614007,-0.055541608482599],[-0.013990331441164,0.10312741994858,0.075091257691383]],[[0.020928965881467,0.082599960267544,-0.044723261147738],[0.06526605039835,-0.11402708292007,0.052214134484529],[-0.021585676819086,0.052228812128305,0.048468574881554]],[[0.0073596234433353,-0.055802207440138,-0.094013281166553],[0.08989842236042,-0.076353244483471,-0.00055026798509061],[0.056228429079056,-0.20480485260487,0.07178820669651]],[[-0.020304841920733,-0.045710071921349,-0.002888738643378],[-0.037456717342138,0.10100156068802,-0.14144498109818],[0.022204473614693,0.00412767380476,0.0035862759687006]],[[-0.040863547474146,-0.064309641718864,0.055612523108721],[-0.014898540452123,-0.023826286196709,0.028724310919642],[0.007958541624248,0.047702789306641,-0.018880059942603]],[[-0.012743726372719,-0.019237440079451,0.01750043220818],[-0.014041243121028,-0.10162432491779,-0.001168769900687],[-0.069571301341057,-0.082065761089325,-0.10940672457218]],[[0.015614951960742,0.045804116874933,-0.022815980017185],[0.090238906443119,0.0077629019506276,-0.062687054276466],[0.040344163775444,0.076245032250881,-0.054992131888866]],[[0.036303594708443,0.0027896240353584,-0.036391448229551],[0.088019497692585,0.014526817016304,-0.16281139850616],[0.06884827464819,-0.032238066196442,-0.13708306849003]],[[0.065158195793629,-0.018858382478356,-0.0070921629667282],[-0.014277544803917,-0.15789724886417,0.011329399421811],[-0.050504013895988,-0.085839778184891,-0.080669805407524]],[[-0.086520187556744,-0.010490596294403,0.021631248295307],[-0.040406007319689,-0.024132570251822,0.030842984095216],[-0.021307649090886,0.011853656731546,-0.019840981811285]],[[-0.051943071186543,0.031267929822206,-0.01520486921072],[-0.056635800749063,-0.092431336641312,-0.042408414185047],[-0.046525340527296,0.0053686485625803,0.033847063779831]],[[-0.001774005475454,0.041451893746853,0.026198089122772],[0.038721114397049,0.050975404679775,0.017072420567274],[0.0023757624439895,0.024052860215306,-0.075955763459206]],[[-0.040313262492418,-0.0054836273193359,-0.035609286278486],[0.052393522113562,0.0012137218145654,-0.046972870826721],[0.013447135686874,-0.0018867753678933,0.014867966994643]],[[0.11007222533226,0.0056624729186296,-0.107640594244],[-0.027806265279651,0.0067126685753465,-0.12821839749813],[-0.01155763771385,-0.065631717443466,-0.10537401586771]],[[-0.12782444059849,0.068221345543861,0.043354533612728],[0.027530409395695,0.085363082587719,0.082952760159969],[-0.030468011274934,0.0033643508795649,-0.069837279617786]],[[0.0020423622336239,0.025877919048071,0.042557273060083],[-0.04039078950882,0.033652514219284,-0.069541335105896],[0.0028648087754846,0.023228039965034,-0.018057493492961]],[[-0.018182877451181,0.017384419217706,-0.12525226175785],[-0.0023850763682276,0.0057003884576261,-0.11068036407232],[-0.0016511015128344,-0.018509764224291,0.05782063305378]],[[0.004670730791986,-0.039624508470297,-0.0010347565403208],[-0.0063101639971137,-0.084831580519676,0.030991371721029],[0.044465687125921,0.033193524926901,0.0031067763920873]],[[-0.036616925150156,0.047676220536232,0.018164189532399],[-0.064747102558613,-0.0001850507396739,0.040819324553013],[0.025598360225558,-0.063743561506271,-0.040295675396919]],[[-0.043068554252386,-0.039598144590855,-0.073632441461086],[0.014380895532668,-0.15535216033459,-0.049992613494396],[-0.084821373224258,-0.037767730653286,0.00030128099024296]],[[0.099646337330341,0.048658054322004,-0.012439786456525],[0.10096806287766,-0.016077844426036,-0.0187614466995],[0.068446278572083,-0.16197788715363,-0.0018829824402928]],[[-0.10888039320707,-0.025823082774878,-0.0096465349197388],[0.017554048448801,0.022217269986868,0.033782806247473],[-0.00091269507538527,-0.062161989510059,-0.064504310488701]],[[-0.13218204677105,-0.042964737862349,0.19300575554371],[-0.21303905546665,0.032707538455725,0.10001953691244],[-0.1301487237215,-0.11925446242094,0.027917083352804]],[[0.068563394248486,0.012676698155701,0.058553319424391],[-0.13454306125641,-0.063589669764042,0.1162928789854],[0.10760610550642,0.03986756503582,-0.090409204363823]],[[0.0062181297689676,0.0024849460460246,-0.10197698324919],[-0.071781560778618,-0.032051339745522,0.14521606266499],[0.027314094826579,0.13298031687737,0.027855258435011]],[[0.007283098064363,-0.0408522374928,-0.059934105724096],[-0.025036515668035,0.017522403970361,0.089210897684097],[0.0081898234784603,-0.064113602042198,0.043805275112391]],[[-0.10192535817623,-0.055175613611937,-0.032041147351265],[-0.048771891742945,-0.067859053611755,0.018109550699592],[0.079571582376957,-0.053757198154926,0.086418062448502]],[[-0.11024262011051,-0.027245588600636,-0.054725024849176],[-0.0050139538943768,0.043489955365658,-0.058195807039738],[0.027704641222954,-0.016755698248744,0.019171906635165]],[[-0.019362054765224,-0.093606494367123,-0.046661328524351],[0.022278275340796,-0.0013521072687581,0.031402081251144],[-0.059923205524683,-0.11832517385483,-0.050608284771442]],[[-0.077723488211632,-0.046485330909491,-0.015099409036338],[-0.068622522056103,-0.044831667095423,0.12454310059547],[-0.05911311507225,-0.06370260566473,-0.0035216163378209]],[[-0.12309279292822,-0.03102252818644,-0.12950697541237],[-0.1449294090271,-0.056366547942162,0.10677319765091],[0.03142524510622,0.079769790172577,-0.024103812873363]],[[0.017941799014807,0.091787680983543,0.044091951102018],[-0.028417110443115,-0.025969734415412,-0.017324656248093],[-0.0063823373056948,-0.0042577320709825,-0.044476635754108]],[[0.0042789583094418,-0.0087976194918156,-0.08675778657198],[-0.10207325965166,-0.0025550343561918,-0.036393638700247],[-0.037738651037216,-0.021098347380757,-0.022350244224072]],[[0.050351288169622,0.059638891369104,0.00117566739209],[-0.060917284339666,-0.077705554664135,-0.078786313533783],[-0.03672892972827,-0.049555048346519,-0.10834245383739]],[[0.015827691182494,-0.05946783721447,-0.093754008412361],[0.018465714529157,0.0043932884000242,-0.020615665242076],[0.033079240471125,0.0047990675084293,-0.0046497997827828]],[[-0.033758714795113,0.097352363169193,-0.084631770849228],[-0.042065929621458,0.027968376874924,-0.068429052829742],[-0.016094943508506,0.0084033971652389,0.060700818896294]],[[0.0015137168811634,-0.0028785557951778,0.042754147201777],[0.0060072359628975,0.047363772988319,-0.0056071863509715],[0.021044034510851,-0.012345380149782,0.0539865270257]],[[0.071344397962093,0.044544879347086,-0.035846091806889],[0.11112168431282,0.023493638262153,-0.032142292708158],[-0.12121520191431,-0.15701155364513,0.036151204258204]],[[-0.00021340866805986,0.026205061003566,-0.049189370125532],[-0.046356372535229,-0.011349126696587,0.02131556533277],[-0.045816022902727,-0.035083536058664,-0.074677340686321]],[[-0.075750708580017,0.066611588001251,-0.088417835533619],[-0.016538569703698,-0.10270738601685,-0.10488716512918],[0.037633869796991,-0.077388599514961,0.016978828236461]],[[-0.0090594133362174,0.00095230859005824,0.028990710154176],[-0.032646391540766,-0.063762634992599,0.019522450864315],[-0.014473911374807,0.0066029261797667,-0.015857137739658]],[[-0.00803851056844,-0.11941904574633,-0.072070240974426],[-0.022385787218809,-0.013555428013206,-0.037163700908422],[0.0066384295932949,0.020868564024568,-0.050192724913359]],[[0.12072533369064,-0.057878088206053,-0.098943762481213],[-0.08038741350174,-0.22318869829178,-0.05916690453887],[0.049685254693031,-0.09272089600563,-0.014894171617925]],[[-0.0044355904683471,0.032434992492199,0.047768037766218],[-0.075049199163914,-0.08306223154068,-0.087118253111839],[-0.016530090942979,-0.031120495870709,0.11694487929344]],[[-0.12093269079924,-0.051343575119972,0.072821952402592],[-0.092065945267677,0.038769334554672,0.10154059529305],[-0.048789735883474,0.011057929135859,0.035697925835848]],[[-0.17231038212776,-0.089787907898426,0.081329762935638],[-0.11559236049652,-0.015196825377643,0.16163372993469],[0.040029939264059,-0.061934992671013,0.042504105716944]],[[0.078121744096279,0.066955551505089,0.012742350809276],[0.14784921705723,0.11721826344728,0.063370324671268],[0.10800526291132,0.12643393874168,0.0025684023275971]],[[0.051122821867466,0.089812949299812,-0.030161503702402],[-0.021640133112669,-0.037839110940695,0.040159329771996],[-0.025433929637074,-0.022050622850657,0.046076245605946]],[[0.018203312531114,0.006370578892529,-0.0095521630719304],[-0.044928029179573,0.037146512418985,0.041298862546682],[-0.061229132115841,0.037102229893208,0.013936011120677]],[[-0.046778231859207,0.061709214001894,-0.0011223644251004],[-0.072190515697002,-0.021648900583386,-0.073616713285446],[-0.052660431712866,-0.060222219675779,-0.019565658643842]],[[-0.024497341364622,-0.0062510366551578,-0.020018719136715],[-0.036736395210028,0.010535586625338,0.027309879660606],[-0.025828115642071,-0.052315231412649,0.068602859973907]],[[0.021492324769497,-0.13055403530598,0.014755926094949],[-0.083873465657234,-0.016190046444535,-0.034494947642088],[-0.029633991420269,-0.057051461189985,0.0016037143068388]],[[0.022701375186443,-0.012033616192639,-0.0018040797440335],[-0.00038668437628075,0.022315952926874,0.0345722399652],[0.012294633314013,0.016168024390936,0.011509978212416]],[[-0.018451005220413,-0.087438814342022,0.053399488329887],[-0.038169883191586,-0.10121685266495,0.074334643781185],[0.02459205314517,-0.033515363931656,0.077661983668804]],[[-0.072140105068684,-0.10729775577784,0.0050039631314576],[-0.019640874117613,-0.043782170861959,-0.12693122029305],[0.0072377300821245,-0.048083402216434,-0.0068762763403356]],[[0.031184151768684,0.019251942634583,-0.0439039953053],[-0.068156436085701,0.0099979322403669,-0.016449045389891],[-0.031919632107019,-0.043760575354099,0.023892717435956]],[[-2.4528653739253e-06,-0.049097109586,0.0042525017634034],[-0.041569244116545,-0.046949248760939,-0.032670557498932],[0.011973961256444,-0.036435410380363,-0.080789551138878]]],[[[0.035779569298029,-0.0030948533676565,-0.025403181090951],[-0.023450285196304,0.053560696542263,0.015855871140957],[0.055828977376223,-0.098706886172295,0.12356930226088]],[[-0.087134025990963,0.014126016758382,-0.028882836923003],[0.012466482818127,-0.026994533836842,0.016867104917765],[-0.0077766329050064,-0.077512137591839,-0.049006946384907]],[[0.018898501992226,-0.044809941202402,-0.12644858658314],[-0.048074439167976,0.0052675707265735,-0.027639845386147],[0.0078330188989639,0.039391007274389,0.01343978382647]],[[-0.026913175359368,-0.012422515079379,-0.034305866807699],[0.0070918272249401,0.0079509047791362,0.027054468169808],[0.05301396176219,-0.049889203161001,0.078989684581757]],[[0.038382418453693,0.029143156483769,0.045478012412786],[-0.051381532102823,6.073381882743e-05,0.030119374394417],[0.0065627656877041,-0.03925709053874,-0.076228521764278]],[[-0.056446358561516,0.0078162243589759,-0.10665917396545],[-0.062447272241116,-0.047759138047695,0.036014173179865],[0.066568374633789,0.027214050292969,0.080497600138187]],[[0.013099119067192,-0.059189211577177,-0.064344480633736],[-0.040848609060049,-0.042069040238857,0.017337970435619],[-0.0044487318955362,-0.047577299177647,-0.052637815475464]],[[0.037040080875158,-0.01762174256146,-0.098018243908882],[0.063536547124386,-0.036829445511103,0.096372164785862],[-0.0011246834183112,0.082731880247593,0.038522154092789]],[[0.034747213125229,0.015179544687271,-0.011248250491917],[-0.037784464657307,-0.011066851206124,0.001451532705687],[-0.0085838846862316,0.041343312710524,0.018055444583297]],[[0.0033014721702784,0.053069476038218,-0.036180283874273],[-0.018501792103052,0.022076832130551,0.0067393286153674],[0.012373139150441,-0.036365158855915,-0.092143923044205]],[[-0.0045685032382607,-0.029587414115667,0.025457607582211],[-0.041220746934414,-0.10714576393366,0.078649826347828],[0.011225052177906,0.10835938900709,-0.0092584528028965]],[[0.0029967317823321,-0.061678104102612,-0.0084258746355772],[-0.04950125515461,-0.055384084582329,-0.084793865680695],[0.044988956302404,0.055305078625679,0.026211380958557]],[[0.011605489067733,-0.066247545182705,0.040492363274097],[0.069014184176922,-0.026369405910373,-0.045344304293394],[-0.0094058029353619,-0.017362032085657,-0.022783175110817]],[[0.02606200799346,0.06888110935688,0.10245772451162],[-0.051116466522217,-0.058445949107409,0.10680700093508],[-0.023244658485055,0.016395630314946,-0.070072084665298]],[[0.015256457030773,0.044128894805908,0.021643612533808],[-0.1013276129961,-0.087486803531647,0.021376403048635],[-0.037366356700659,0.042297467589378,0.035387542098761]],[[-0.0070751900784671,-0.048498567193747,0.02953246049583],[0.012204188853502,0.042912315577269,0.031086977571249],[0.023258509114385,-0.011094462126493,-0.062909193336964]],[[-0.074629381299019,0.013622611761093,-0.005292390473187],[-0.030809417366982,0.052310507744551,0.018855478614569],[0.074480421841145,0.0060474989004433,0.0097751198336482]],[[-0.010473691858351,-0.0027484891470522,-0.029930854216218],[-0.042468912899494,-0.046501521021128,-0.035506822168827],[0.066911704838276,0.03332344815135,-0.015491013415158]],[[-0.088878951966763,0.043230134993792,-0.039581477642059],[0.00081388640683144,-0.019385453313589,-0.028597604483366],[-0.042061518877745,-0.04813339933753,-0.0079885413870215]],[[-0.049798544496298,0.0039814934134483,0.0089145116508007],[-0.039695229381323,-0.0088696349412203,-0.0088200531899929],[-0.10957785695791,0.045552652329206,0.017236640676856]],[[0.024352718144655,-0.028395872563124,-0.0098088812083006],[-0.049300249665976,-0.08305861055851,0.0027751706074923],[-0.026704683899879,-0.16267494857311,-0.064190454781055]],[[0.0017851457232609,-0.04656358808279,0.084304675459862],[-0.03560433909297,-0.0056597981601954,0.029804397374392],[-0.021881010383368,-0.086099661886692,0.024114588275552]],[[0.078522317111492,-0.01005837880075,-0.014003400690854],[0.053269870579243,0.015098693780601,-0.084401533007622],[-0.017310190945864,-0.031998220831156,0.010180165059865]],[[-0.014945878647268,-0.088738761842251,0.078038394451141],[-0.0011952294735238,-0.066918298602104,-0.038645632565022],[-0.00031849055085331,-0.03159636259079,0.017581891268492]],[[0.084657646715641,-0.055011577904224,-0.13426861166954],[0.11205525696278,-0.0059150285087526,-0.091009087860584],[0.051981408149004,-0.011554824188352,0.025798371061683]],[[-0.009932417422533,0.061177115887403,0.020479319617152],[-0.002980929100886,0.020101556554437,-0.11095172911882],[0.0067225191742182,-0.025021512061357,-0.0014873095788062]],[[-0.11671432852745,-0.018277836963534,-0.076809741556644],[-0.13061103224754,-0.15761761367321,-0.076660290360451],[-0.022258559241891,-0.0094188144430518,0.011377643793821]],[[0.12209472805262,0.031811274588108,0.098829425871372],[-0.027890423312783,0.010137253440917,-0.10471908003092],[-0.05399102717638,-0.03887540102005,-0.017754981294274]],[[0.063742525875568,-0.04388465732336,-0.014129645191133],[-0.038485214114189,0.046188298612833,0.096845708787441],[0.039738737046719,0.057545028626919,0.075388543307781]],[[0.014812568202615,0.0093441670760512,0.015919430181384],[-0.0047563947737217,0.015349229797721,-0.018969181925058],[-0.061961576342583,0.0050606424920261,0.020497547462583]],[[-0.069197170436382,0.070472963154316,-0.060222804546356],[0.060104727745056,-0.047291733324528,0.0054259761236608],[0.095232367515564,0.041489597409964,0.063243433833122]],[[-0.096743151545525,-0.042944636195898,-0.015590413473547],[-0.088653191924095,-0.046681150794029,0.0013068988919258],[-0.13189098238945,-0.03397473692894,-0.032553840428591]],[[0.058182150125504,0.096471808850765,-0.020177278667688],[0.037176493555307,0.0080573558807373,0.0054991841316223],[0.023254370316863,-0.0050184270367026,0.0043429764918983]],[[-0.017809448763728,-0.085421584546566,-0.013118129223585],[0.01802172511816,-0.04991789162159,-0.059895936399698],[0.016615303233266,-0.022241244092584,0.017843620851636]],[[-0.00020759782637469,0.041132990270853,0.023796107620001],[0.024051295593381,0.015745958313346,-0.020542677491903],[-0.02536877989769,0.0059145321138203,0.045884735882282]],[[0.071016795933247,-0.024415574967861,-0.019641008228064],[-0.029620815068483,-0.018284054473042,0.075354605913162],[-0.022297965362668,-0.022675845772028,0.048150986433029]],[[-0.022356944158673,-0.073588475584984,-0.066094011068344],[-0.05223061144352,-0.038829136639833,0.062997557222843],[0.011717078275979,-0.0021080204751343,0.01431246008724]],[[0.007419812027365,0.075691290199757,0.035677507519722],[-0.075680814683437,-0.011590473353863,-0.0035431296564639],[-0.090883798897266,-0.027700711041689,0.014778955839574]],[[-0.04943859949708,-0.0053755613043904,-0.091751553118229],[-0.030866188928485,0.0016047958051786,-0.078248791396618],[-0.037935256958008,0.028528047725558,-0.0056161792017519]],[[-0.026440327987075,-0.028861161321402,0.040104020386934],[-0.039006534963846,-0.0012953981058672,-0.0021317035425454],[0.054386753588915,0.006746522616595,-0.0060039809904993]],[[-0.0271439217031,-0.062648110091686,-0.057009290903807],[-0.12306841462851,0.041823238134384,0.044740598648787],[-0.12907327711582,0.043953645974398,-0.10626859217882]],[[-0.025303931906819,0.002956482116133,-0.034240819513798],[0.021344266831875,0.0013710256898776,0.0082051884382963],[-0.094220161437988,-0.015632158145308,0.032462369650602]],[[0.067718386650085,-0.045673489570618,0.034556832164526],[0.014510057866573,-0.13375982642174,0.098719090223312],[-0.013145293109119,-0.084009490907192,-0.036660999059677]],[[0.030759733170271,-0.017032485455275,-0.10882733762264],[-0.026618083938956,0.020808544009924,0.026311878114939],[0.1397303044796,-0.011944728903472,-0.02601688914001]],[[0.028937101364136,0.08123567700386,-0.12270104885101],[0.014463594183326,-0.13813771307468,-0.10980582237244],[0.012956162914634,-0.043387237936258,-0.043675620108843]],[[-0.040347922593355,0.043167687952518,0.03908909112215],[-0.0052325874567032,-0.034654576331377,0.036968778818846],[0.077263683080673,-0.029249912127852,0.02186000905931]],[[-0.10346417874098,0.0031259146053344,0.032673329114914],[0.059539601206779,0.080331668257713,0.016053605824709],[0.042970634996891,0.085855782032013,0.0042882645502687]],[[0.07034745067358,0.00080110569251701,-0.023968590423465],[0.052624180912971,0.02135412581265,0.032407276332378],[-0.048775691539049,0.051346078515053,-0.021467072889209]],[[-0.070260606706142,-0.03084616176784,-0.018740512430668],[-0.0058902404271066,-0.044829297810793,-0.034412022680044],[-0.0027061998844147,-0.033256698399782,-0.057005159556866]],[[-0.01817674189806,-0.039101596921682,-0.062868751585484],[-0.010063926689327,-0.048916943371296,0.021822441369295],[-0.068766839802265,0.021638598293066,-0.049268890172243]],[[-0.01132317725569,-0.024769905954599,-0.0040765823796391],[-0.031453054398298,-0.028606483712792,-0.043058704584837],[-0.020433977246284,-0.033974256366491,-0.025253033265471]],[[0.003137320978567,0.052457340061665,0.047454547137022],[0.07987629622221,-0.026304675266147,-0.10777112841606],[-0.047827534377575,0.010392228141427,-0.076783180236816]],[[-0.047660365700722,0.050570651888847,0.010201440192759],[0.053032226860523,-0.01963971182704,-0.00082716951146722],[-0.0081177121028304,-0.041729100048542,-0.043166566640139]],[[0.0060116811655462,0.090357877314091,0.046398710459471],[0.011233457364142,0.088541768491268,0.076643370091915],[0.039985276758671,0.11848698556423,0.046102277934551]],[[0.052733838558197,0.042510624974966,0.021923223510385],[-0.024722643196583,0.023534091189504,0.039997182786465],[0.09027886390686,0.0029120477847755,0.016771525144577]],[[-0.052274148911238,0.011923437938094,0.0047654286026955],[0.016056740656495,-0.039431482553482,0.077640354633331],[-0.0074967509135604,0.018735392019153,-0.066727519035339]],[[-0.013360277749598,-0.071328140795231,-0.0082075111567974],[-0.021590815857053,-0.063725017011166,-0.032943911850452],[0.068414986133575,0.0056386226788163,-0.019801203161478]],[[-0.029706673696637,-0.0098079340532422,0.00129703595303],[-0.00025015574647114,0.0057357475161552,0.046904787421227],[0.028072111308575,0.074701480567455,0.0025838387664407]],[[-0.024319011718035,0.10755191743374,0.021999085322022],[-0.02877432666719,0.03880587592721,-0.019918272271752],[-0.015990547835827,0.056273847818375,-0.0017104722792283]],[[-0.0037346286699176,-0.028823146596551,0.030747329816222],[-0.019318843260407,0.032567858695984,0.053400360047817],[0.0022027930244803,-0.023244408890605,0.014322661794722]],[[-0.0093376450240612,0.054812651127577,-0.0059010847471654],[0.031993251293898,-0.026348553597927,0.02258088812232],[0.031302027404308,0.058509059250355,0.040855627506971]],[[-0.061272978782654,-0.027175774797797,-0.098358549177647],[-0.034309156239033,-0.034649036824703,-0.030305948108435],[0.037361919879913,0.050006683915854,0.05470821633935]],[[-0.036929655820131,0.01769476942718,-0.017532533034682],[0.046493574976921,0.0018502421444282,0.039821121841669],[-0.00067310262238607,-0.080343879759312,-0.01569052785635]],[[0.014496117830276,0.017756167799234,-0.061664901673794],[-0.03270099312067,-0.0425113029778,0.11998306214809],[-0.086590796709061,3.4065844374709e-05,0.090493127703667]]],[[[0.019903572276235,0.032212268561125,0.11129608750343],[0.0047740880399942,-0.12347423285246,-0.029458215460181],[-0.15664520859718,-0.13841214776039,0.042455766350031]],[[-0.029612625017762,-0.072829619050026,-0.096275396645069],[-0.042756348848343,-0.057861126959324,-0.068507634103298],[-0.046186275780201,-0.039414532482624,-0.22077783942223]],[[0.077406778931618,-0.019781807437539,-0.051862742751837],[-0.046283263713121,0.014193472452462,-0.06473620980978],[0.013411081396043,-0.050771478563547,0.079090669751167]],[[0.046768065541983,0.030472949147224,0.038494899868965],[0.028731053695083,0.047393247485161,0.014726138673723],[0.15665405988693,-0.014117900282145,0.045861132442951]],[[-0.10480715334415,0.011516648344696,0.035739302635193],[0.049767035990953,-0.14274421334267,-0.053999941796064],[0.079717241227627,-0.035799514502287,-0.12829680740833]],[[-0.090919762849808,-0.025261595845222,-0.078825496137142],[-0.050378166139126,0.018337398767471,-0.017550818622112],[-0.022623229771852,0.027453789487481,0.00072057312354445]],[[-0.057395271956921,-0.041601695120335,0.0023124220315367],[0.077727884054184,-0.057052202522755,-0.020321175456047],[0.016878936439753,-0.01555004529655,-0.029627272859216]],[[-0.088100947439671,0.044046927243471,0.029725268483162],[0.020603653043509,0.09010049700737,0.047948900610209],[-0.094017744064331,-0.064682126045227,0.0055176382884383]],[[-0.018846277147532,0.069705255329609,-0.092967875301838],[-0.067162066698074,0.096880070865154,0.040601190179586],[-0.0049544088542461,-0.014719786122441,0.081955604255199]],[[-0.025979330763221,0.12587939202785,-0.05306800827384],[-0.0090540573000908,0.060044929385185,0.0020443017128855],[-0.0039185215719044,-0.034246951341629,-0.0038273597601801]],[[0.0015076395357028,0.01693819463253,0.053935874253511],[0.020697979256511,0.05960738286376,0.073704823851585],[-0.035526547580957,-0.017200319096446,0.034793179482222]],[[0.0054711936973035,-0.076821438968182,0.033667333424091],[-0.059855837374926,-0.0098865842446685,-0.10978829115629],[-0.058878179639578,0.041289564222097,-0.10961937904358]],[[0.0039959251880646,0.0026799046900123,-0.051764570176601],[-0.050258226692677,-0.058453433215618,0.0090196011587977],[0.053225710988045,-0.019345242530107,-0.031525880098343]],[[0.052698519080877,0.016004679724574,0.27259057760239],[0.097647450864315,-0.021200802177191,-0.0020535318180919],[0.01351969782263,-0.0013948495034128,0.010319884866476]],[[-0.01381235010922,0.17234665155411,0.035599905997515],[-0.010540667921305,-0.1520821005106,0.047912441194057],[-0.12362031638622,0.048124637454748,-0.040778841823339]],[[-0.0094596557319164,0.015138044022024,0.020578356459737],[-0.012018596753478,0.0022987346164882,0.019231077283621],[0.053896728903055,0.10398544371128,-0.048610474914312]],[[0.012163819745183,0.050667479634285,-0.074325062334538],[-0.11414296925068,-0.034824069589376,0.0034134432207793],[0.044470775872469,-0.072897180914879,-0.10261739045382]],[[-0.018585147336125,0.010055313818157,-0.038115404546261],[-0.037141516804695,-0.1077484562993,-0.10401958227158],[-0.059569910168648,0.11069633811712,-0.052162040024996]],[[0.02824873290956,-0.020996179431677,-0.022717332467437],[0.044508509337902,-0.044893339276314,-0.0064968280494213],[0.018294129520655,0.0049880240112543,-0.012357140891254]],[[-0.078274585306644,-0.14505127072334,-0.0049909674562514],[0.036466009914875,-0.08494883030653,-0.13105040788651],[0.012879308313131,-0.010591149330139,-0.047855924814939]],[[-0.0030446154996753,0.064817756414413,0.033328104764223],[-0.06156400591135,-0.07935057580471,-0.043543513864279],[-0.030949173495173,-0.010854451917112,0.015596540644765]],[[0.099116057157516,-0.062013201415539,-0.070983201265335],[-0.055493678897619,-0.045990236103535,-0.099874690175056],[-0.0022731237113476,-0.029880955815315,-0.036451835185289]],[[-0.031437616795301,-0.010190377011895,0.0072475019842386],[0.037947792559862,0.039140876382589,-0.067516386508942],[-0.012203228659928,0.038810253143311,-0.00044651454663835]],[[-0.014181849546731,0.062247797846794,-0.015793973580003],[-0.12906759977341,-0.031756188720465,-0.035694193094969],[-0.0058215404860675,-0.040560007095337,-0.083767458796501]],[[-0.042864836752415,0.004553334787488,0.040128313004971],[-0.062002416700125,0.021132957190275,0.062206462025642],[-0.051444869488478,0.0042095310054719,0.10469964891672]],[[-0.05235244333744,0.014323718845844,0.0008100473205559],[-0.044322766363621,0.022671585902572,-0.073037534952164],[-0.083322606980801,-0.071430966258049,-0.072038143873215]],[[-0.0509172976017,-0.05053524300456,0.0093517983332276],[0.018601514399052,-0.077623225748539,-0.074783571064472],[0.047615703195333,0.014915044419467,-0.05007678642869]],[[0.073362603783607,-0.046212557703257,0.067881613969803],[-0.045309867709875,-0.03041473031044,0.042707927525043],[-0.074353009462357,-0.026632452383637,0.048371538519859]],[[0.011552168987691,-0.02972461655736,0.043993942439556],[-0.03938540443778,0.039131049066782,0.045627396553755],[0.060141682624817,-0.10344137996435,-0.061044707894325]],[[-0.097197026014328,0.02210446819663,-0.036188017576933],[-0.06532009691,-0.0058897938579321,-0.0063404175452888],[-0.02588122151792,0.044988609850407,0.064465492963791]],[[0.014456632547081,0.037034764885902,0.046854462474585],[0.042017668485641,-0.013874958269298,-0.061003714799881],[0.12202290445566,0.0088443085551262,-0.11720810085535]],[[0.041623037308455,-0.088749587535858,-0.049904935061932],[0.071793280541897,0.018269898369908,0.036682635545731],[-0.052506193518639,-0.066860660910606,-0.13234411180019]],[[0.043258719146252,-0.0975461602211,-0.00036368815926835],[-0.086395494639874,0.051534805446863,0.11600834876299],[-0.01203057076782,-0.092865169048309,-0.016366884112358]],[[-0.044103294610977,-0.022886998951435,0.049802731722593],[0.023737030103803,0.065127611160278,0.017860198393464],[-0.029020611196756,0.050225775688887,-0.011070318520069]],[[0.081911005079746,-0.025558101013303,0.016102651134133],[-0.14089912176132,0.1350926309824,-0.055894292891026],[0.11389480531216,0.036790128797293,0.093492947518826]],[[0.11695410311222,0.041052285581827,0.023390328511596],[-0.068026356399059,-0.081416711211205,-0.0054548187181354],[0.00013020783080719,-0.1087998226285,-0.10927037894726]],[[0.006585958879441,0.015632294118404,0.0034993188455701],[-0.011640578508377,-0.035178538411856,0.10809348523617],[-0.040214288979769,-0.0024526743218303,0.027427176013589]],[[0.027308566495776,0.060684487223625,-0.026628088206053],[0.0083169164136052,0.005483269225806,-0.076932184398174],[0.023776493966579,-0.0091053787618876,-0.16530202329159]],[[-0.027270117774606,-0.0035557926166803,-0.04662562161684],[0.040418889373541,0.00040298004751094,0.10003207623959],[0.082378141582012,0.031731277704239,-0.049387816339731]],[[-0.092140212655067,0.022836551070213,0.054186649620533],[-0.01909264922142,0.069694258272648,-0.029774868860841],[0.06196254119277,-0.039067562669516,-0.074289470911026]],[[-0.043650437146425,0.00054394191829488,0.023051785305142],[-0.031593594700098,-0.052389293909073,-0.024274930357933],[-0.052973091602325,0.0049516004510224,-0.010076864622533]],[[0.0086051849648356,-0.0083018792793155,0.025333650410175],[-0.052520290017128,0.078580148518085,0.06837297976017],[0.018946716561913,-0.06845311075449,0.070382244884968]],[[0.061507537961006,0.013184023089707,0.016183014959097],[-0.021418169140816,0.073002316057682,0.016112625598907],[0.015011383220553,-0.077210634946823,-0.012666910886765]],[[-0.11737029254436,0.045470159500837,-0.14921663701534],[-0.10663508623838,-0.050081230700016,-0.14566116034985],[0.074615389108658,0.041083104908466,-0.0057632378302515]],[[0.060036547482014,0.049197990447283,-0.0094545111060143],[-0.021092062816024,0.10394785553217,-0.053642891347408],[-0.044736947864294,0.020806100219488,-0.070420943200588]],[[-0.058155357837677,-0.012461889535189,0.065527759492397],[-0.045053377747536,-0.092886224389076,0.0483653023839],[0.077176816761494,-0.071786023676395,-0.19684562087059]],[[0.042784385383129,0.036152433604002,0.0054770521819592],[0.0099846096709371,-0.07150936126709,0.035056702792645],[0.086764171719551,-0.1286093890667,-0.03607427701354]],[[-0.019938252866268,0.026689901947975,-0.033669389784336],[0.058334775269032,0.058665402233601,0.050028495490551],[0.06388796120882,0.079930856823921,-0.02064404450357]],[[-0.13381831347942,-0.026764983311296,-0.074124164879322],[0.024042518809438,-0.08012643456459,-0.0087292091920972],[0.02736672013998,0.070299699902534,0.0213040728122]],[[0.11369927972555,0.0094368131831288,-0.017088724300265],[-0.063938692212105,-0.13601189851761,-0.043154943734407],[-0.14653889834881,-0.079933568835258,0.14023973047733]],[[-0.072013936936855,-0.029645327478647,-0.036128129810095],[0.019273888319731,0.040267217904329,-0.069962531328201],[-0.028254315257072,0.010808419436216,0.052502647042274]],[[0.03018381819129,-0.047173421829939,-0.032986219972372],[-0.00043526838999242,0.064151436090469,0.052022870630026],[0.032757550477982,-0.039890095591545,0.027425495907664]],[[-0.023939184844494,0.0069491136819124,0.068011455237865],[0.22970435023308,-0.0076838033273816,-0.011308249086142],[0.13628715276718,0.14952537417412,-0.012332351878285]],[[0.073947034776211,-0.025211540982127,0.038916766643524],[-0.023379424586892,0.065219789743423,0.062004633247852],[0.025693494826555,0.0097359688952565,0.17761009931564]],[[0.019512867555022,0.01878984645009,0.090017221868038],[0.018283236771822,0.073930375277996,-0.06773354113102],[-0.015862781554461,-0.017556186765432,-0.039266441017389]],[[0.14819388091564,0.10632090270519,-0.064311668276787],[0.084526583552361,0.03358993679285,0.0098593179136515],[0.048774439841509,0.071342453360558,0.096363611519337]],[[-0.11776774376631,-0.075736559927464,0.047024447470903],[0.029567580670118,-0.042079895734787,-0.10831982642412],[0.008417883887887,-0.086941808462143,0.013517019338906]],[[0.020498340949416,-0.03146331012249,0.0085790632292628],[-0.045863065868616,-0.0030964447651058,0.044365495443344],[-0.020130665972829,-0.04957277327776,-0.0113924741745]],[[0.012092918157578,-0.040580090135336,-0.029893107712269],[0.044842772185802,-0.11792027950287,0.059212166815996],[-0.056565158069134,-0.076977245509624,0.079243823885918]],[[0.0160066280514,0.023990185931325,0.005198750179261],[-0.037482034415007,0.0087673729285598,0.020093327388167],[0.011030784808099,-0.034925509244204,-0.0035700388252735]],[[-0.055242091417313,-0.0071587329730392,0.015793412923813],[-0.016354957595468,-0.0069506084546447,0.0092507088556886],[0.0022452578414232,-0.089413098990917,-0.013524252921343]],[[0.089657850563526,-0.11376918107271,-0.041712466627359],[0.065378606319427,0.12613271176815,0.1241944283247],[-0.059972960501909,-0.059866432100534,0.13308066129684]],[[-0.015742333605886,-0.0085314279422164,-0.018229756504297],[-0.019351107999682,-0.12835201621056,-0.014921335503459],[-0.049579173326492,-0.11259514093399,-0.12796030938625]],[[-0.062125936150551,-0.011886741966009,0.038248538970947],[0.026215730234981,-0.10523666441441,0.077249549329281],[-0.0076794209890068,0.099837824702263,-0.06221054494381]]],[[[-0.046537153422832,-0.086560793220997,0.096789173781872],[0.061499737203121,0.055987015366554,0.061244789510965],[0.023279311135411,-0.001047071418725,0.060942102223635]],[[0.026661852374673,-0.025464141741395,0.014267291873693],[-0.056868128478527,-0.013496724888682,0.06671617180109],[-0.020302981138229,-0.043055333197117,-0.12822291254997]],[[0.012456041760743,-0.026985310018063,0.0065127508714795],[-0.018156500533223,0.029364002868533,0.022850353270769],[-0.11464734375477,-0.037546806037426,-0.16367244720459]],[[0.017178121954203,-0.061788093298674,-0.012090066447854],[0.0045908130705357,-0.0021693424787372,-0.015677807852626],[0.0069945165887475,-0.081897996366024,-0.02235396578908]],[[-0.017588967457414,0.0089980671182275,0.054009597748518],[-0.038981173187494,0.020578812807798,-0.071086443960667],[0.017218645662069,-0.093570776283741,-0.03671758249402]],[[-0.038120117038488,-0.032054703682661,-0.058610718697309],[-0.020711315795779,-0.13976961374283,-0.029364001005888],[0.032120380550623,-0.13550473749638,-0.067464083433151]],[[-0.0064737559296191,0.011197787709534,-0.10974941402674],[0.0050958218052983,-0.05771816894412,0.015863385051489],[-0.066209435462952,-0.0046402430161834,-0.042730495333672]],[[0.02032357826829,-0.10238157957792,0.014250016771257],[-0.036645710468292,0.067437194287777,0.024901896715164],[-0.0071720485575497,-0.032593879848719,-0.013358317315578]],[[-0.066115632653236,0.12185076624155,-0.056825093924999],[-0.059271022677422,-0.11689292639494,-0.031657785177231],[-0.13625191152096,0.21266627311707,-0.12248305976391]],[[-0.0057542896829545,0.028477100655437,0.024219732731581],[-0.022558579221368,-0.05218793079257,-0.022423032671213],[-0.029682960361242,0.084883540868759,-0.077446103096008]],[[-0.17448273301125,0.07526296377182,-0.081981711089611],[0.041905488818884,-0.022628579288721,-0.0087285237386823],[-0.00085977662820369,0.033979292958975,0.040486853569746]],[[0.12406668812037,0.071516148746014,-0.055418249219656],[-0.023482386022806,0.036540362983942,-0.097574934363365],[-0.038762003183365,-0.053924426436424,-0.030102010816336]],[[0.021291738376021,0.0030422029085457,0.063007019460201],[-0.013561896979809,-0.034709025174379,-0.073514506220818],[-0.050216443836689,-0.034986946731806,-0.010498163290322]],[[0.021668467670679,0.031416930258274,0.13175246119499],[0.0017463332042098,0.021140694618225,-0.063390210270882],[0.080150932073593,0.033604476600885,0.069677852094173]],[[0.057621724903584,-0.072578631341457,-0.0024196065496653],[0.029238173738122,-0.038286067545414,0.025382401421666],[0.11010088026524,0.076767519116402,0.041260544210672]],[[-0.031019404530525,0.01030130777508,-0.071603536605835],[0.070659071207047,0.0083882426843047,-0.039142750203609],[0.044667359441519,-0.016768425703049,0.01944138109684]],[[-0.057415794581175,-0.032390128821135,-0.045109204947948],[-0.0033766871783882,-0.10409062355757,-0.021627271547914],[-0.086277328431606,0.089383497834206,-0.094069465994835]],[[-0.030349289998412,-0.028510650619864,-0.040271207690239],[0.0076505737379193,-0.044910624623299,0.010082503780723],[-0.087486363947392,0.019800584763288,-0.04258893430233]],[[-0.03026444464922,-0.083616442978382,0.051392808556557],[0.01279931422323,0.021035596728325,-0.036723710596561],[-0.13200597465038,0.0083615612238646,-0.022627383470535]],[[-0.0036087932530791,0.052717268466949,-0.013738778419793],[-0.0028392900712788,-0.020555915310979,0.077212631702423],[-0.011076915077865,0.01767641492188,-0.054723110049963]],[[-0.11646148562431,-0.083719119429588,-0.16271390020847],[0.03641901910305,-0.17881694436073,-0.053401663899422],[-0.27638792991638,0.084804221987724,-0.13553901016712]],[[-0.053472436964512,0.093079812824726,-0.10316129028797],[0.10523533821106,-0.054275449365377,-0.037230040878057],[-0.026044737547636,-0.023400975391269,-0.04346265271306]],[[-0.046101823449135,-0.037087582051754,-0.015141586773098],[0.024676699191332,0.040291119366884,0.054683361202478],[-0.038818642497063,0.031296044588089,-0.0055561955086887]],[[-0.067357137799263,0.01413363404572,-0.10604368150234],[-0.050273772329092,0.039853125810623,-0.027053071185946],[-0.065052732825279,-0.031888242810965,0.063780449330807]],[[-0.044138737022877,0.099341489374638,-0.053744301199913],[0.12274487316608,-0.031865123659372,-0.070195958018303],[-0.079506427049637,0.063464283943176,-0.074268415570259]],[[-0.035938940942287,-0.0069706658832729,-0.0032226971816272],[0.072722926735878,-0.03336001932621,-0.070013761520386],[-0.090674832463264,-0.019564455375075,0.0074275159277022]],[[0.0051830946467817,0.044688884168863,-0.025140952318907],[0.071213394403458,-0.021567402407527,0.016758903861046],[0.01208739914,0.017265098169446,-0.022691106423736]],[[-0.043002396821976,0.024631399661303,0.050972051918507],[-0.08754812926054,0.058827240020037,-0.092159979045391],[0.01233759149909,-0.084707200527191,0.14167100191116]],[[0.11925366520882,-0.045663859695196,0.05132469534874],[-0.034488350152969,0.035163372755051,-0.062435016036034],[-0.011353304609656,-0.055752009153366,0.00424245884642]],[[0.030870944261551,-0.049779381603003,0.0062683187425137],[-0.094239868223667,0.078657098114491,-0.041829518973827],[0.040427066385746,-0.082923948764801,0.037557229399681]],[[0.038445688784122,-0.0024166421499103,-0.07310152053833],[0.050225105136633,-0.22502921521664,-0.026651130989194],[-0.055919006466866,0.019535733386874,-0.15365748107433]],[[-0.054098598659039,0.048570729792118,-0.021237082779408],[0.069747917354107,-0.034213989973068,0.0083231646567583],[0.059399332851171,0.073064267635345,0.038606949150562]],[[0.072484664618969,0.027137197554111,-0.088855318725109],[-0.00092608446720988,-0.051793567836285,0.046725768595934],[0.074482426047325,-0.010150434449315,-0.0038884284440428]],[[-0.074763931334019,0.019233031198382,-0.055588811635971],[-0.082753710448742,-0.022265052422881,-0.033625282347202],[-0.03997616097331,0.041227333247662,-0.038158558309078]],[[0.11252594739199,-0.064178623259068,-0.041784912347794],[-0.045221123844385,-0.0020955791696906,0.037769585847855],[0.0097287809476256,-0.019979240372777,0.06415881216526]],[[-0.0090473107993603,-0.012621697969735,0.010949816554785],[0.045997679233551,-0.078120790421963,0.045159853994846],[-0.17678588628769,-0.017358297482133,-0.098915576934814]],[[-0.055282831192017,0.059378758072853,-0.069602899253368],[0.013818755745888,0.032642882317305,0.13787929713726],[-0.024547474458814,0.059340454638004,-0.050414692610502]],[[-0.16191464662552,0.070266358554363,0.024301094934344],[0.080137267708778,-0.052455361932516,0.031155746430159],[-0.10092709213495,0.027420878410339,-0.062724284827709]],[[-0.054634138941765,-0.013072637841105,0.02271842956543],[-0.055456809699535,0.049760088324547,0.00086124031804502],[-0.038077861070633,-0.034881938248873,0.045696917921305]],[[0.014619627967477,-0.017177902162075,0.037590906023979],[0.022141944617033,-0.060153786092997,0.094897337257862],[-0.023325454443693,0.03599825873971,-0.080348387360573]],[[-0.066492229700089,-0.14002346992493,0.11282984912395],[-0.046644300222397,-0.050387918949127,-0.048447668552399],[-0.11782199144363,-0.015361785888672,0.063256703317165]],[[0.001967977033928,-0.054912846535444,-0.029162641614676],[-0.013068675994873,0.0011842522071674,0.00052695570047945],[0.01335113029927,-0.011729108169675,0.020384937524796]],[[-0.029327737167478,0.073836244642735,-0.024099249392748],[-0.035406712442636,0.020075282081962,0.073243454098701],[-0.020918242633343,-0.0051936591044068,0.022140666842461]],[[-0.031346309930086,-0.034253556281328,-0.031150391325355],[0.016036374494433,0.018058631569147,-0.039973929524422],[0.028668520972133,0.077032566070557,0.0086993593722582]],[[-0.082140408456326,-0.12408792227507,0.037199635058641],[0.0054821539670229,0.087230615317822,-0.14527067542076],[0.093080818653107,-0.011130199767649,0.03679758310318]],[[0.021292272955179,-0.028148107230663,0.091972127556801],[0.0515894331038,-0.015323917381465,0.006312511395663],[0.0033606882207096,-0.093128152191639,0.0015156526351348]],[[-0.09092240780592,-0.0022228767629713,-0.11775097250938],[-0.012252879329026,-0.033235765993595,0.048769772052765],[-0.11692128330469,0.13436934351921,-0.16355548799038]],[[-0.07239930331707,-0.046793106943369,-0.030777143314481],[-0.034108944237232,0.0034905497450382,0.01510626450181],[0.01977987959981,0.039351060986519,0.084751717746258]],[[0.053828522562981,0.053139731287956,-0.0092672640457749],[-0.0018033911474049,-0.028095372021198,-0.04634927213192],[0.024204598739743,0.034437343478203,0.028894579038024]],[[-0.019959770143032,-0.051064435392618,0.049396477639675],[-0.032531879842281,0.061469819396734,-0.064340218901634],[0.012522193603218,0.034041330218315,-0.048290360718966]],[[-0.038875740021467,0.0025514380540699,0.010848593898118],[0.0025503872893751,-0.060197744518518,0.025789815932512],[0.010884118266404,0.042189586907625,0.022279283031821]],[[-0.014988908544183,0.010097051970661,0.013869166374207],[-0.041754927486181,-0.017241565510631,-0.00052240601507947],[-0.023645110428333,0.026151748374104,0.044553007930517]],[[-0.071201883256435,0.1287854462862,-0.059816118329763],[0.15767221152782,-0.07753574848175,-0.032693855464458],[-0.12261569499969,0.12663428485394,-0.13469387590885]],[[0.023889211937785,0.20023420453072,0.058874744921923],[0.18131160736084,0.012060624547303,0.10924160480499],[-0.046864945441484,0.10644666105509,0.063554659485817]],[[0.090679578483105,0.0054101105779409,-0.046295449137688],[-0.064966946840286,0.0035635642707348,0.024238897487521],[-0.039509195834398,-0.055026136338711,-0.040418528020382]],[[0.015924660488963,-0.0063606356270611,-0.0041953264735639],[0.049801174551249,-0.067834362387657,0.026478370651603],[-0.026934891939163,-0.1019426882267,0.036200907081366]],[[-0.10807528346777,-0.016107320785522,-0.064871221780777],[-0.023376572877169,-0.044829927384853,-0.036115229129791],[-0.11798347532749,-0.025953656062484,-0.059569787234068]],[[-0.0036404163111001,0.049901146441698,-0.068641349673271],[-0.052198216319084,-0.04985149204731,-0.071237720549107],[0.033897455781698,-0.05199384316802,-0.0010361990425736]],[[-0.025810841470957,0.058027520775795,0.00010432179988129],[-0.049218524247408,0.033875118941069,0.036381643265486],[0.015248365700245,-0.071251206099987,0.014584979973733]],[[0.0022968759294599,0.052538435906172,0.0079828007146716],[0.017057277262211,-0.041129682213068,0.0016373666003346],[-0.012624751776457,0.056951802223921,-0.015660978853703]],[[0.022171940654516,0.0059868083335459,-0.027135964483023],[0.032776050269604,-0.045978840440512,-0.073324240744114],[-0.031247287988663,-0.03932960703969,-0.02865220233798]],[[0.022372126579285,0.029788292944431,0.009778612293303],[-0.047372244298458,0.10686650872231,0.0025201186072081],[0.085760682821274,0.03268076851964,-0.072727628052235]],[[-0.02658998593688,-0.059610471129417,0.0048665446229279],[0.068519122898579,-0.020926667377353,-0.0034685006830841],[-0.081074193120003,0.025042979046702,-0.14182455837727]],[[-0.038795705884695,-0.081828869879246,0.0044792960397899],[0.029275434091687,-0.036060720682144,0.062952674925327],[-0.086659528315067,0.025415223091841,-0.052042793482542]]],[[[-0.042395647615194,-0.09552501142025,0.078147761523724],[-0.069056801497936,-0.065409198403358,-0.058445431292057],[-0.071040816605091,-0.020652640610933,0.032047603279352]],[[-0.020079754292965,-0.014032813720405,-0.0095539661124349],[-0.0090178577229381,0.036090418696404,0.0044346377253532],[0.052117485553026,-0.0033302791416645,0.056401804089546]],[[0.0029456962365657,0.01252322550863,0.025791695341468],[0.026498552411795,0.0163938626647,-0.0026740953326225],[0.00461146235466,-0.019327539950609,0.050754301249981]],[[-0.01285049226135,0.035310376435518,0.038205035030842],[0.00090672890655696,-0.001512132701464,0.065527111291885],[0.0005712445708923,0.054098825901747,0.00026495545171201]],[[-0.039736993610859,-0.054585263133049,-0.082905605435371],[0.047178089618683,-0.0013176293577999,0.076144695281982],[4.2241437768098e-05,0.039265129715204,0.0854212641716]],[[-0.022037805989385,-0.0011957999086007,0.12799865007401],[-0.063516654074192,0.016854530200362,-0.0012042026501149],[-0.0083449361845851,0.0044017308391631,-0.097812317311764]],[[-0.060143653303385,0.024620672687888,-0.027387419715524],[0.044759947806597,0.0018364622956142,-0.021555246785283],[-0.0069314450956881,0.028544947504997,0.098852746188641]],[[0.02320540137589,-0.025383019819856,-0.053928393870592],[-0.036084048449993,0.063731156289577,0.0017610231880099],[-0.096850335597992,-0.041798964142799,0.017072480171919]],[[0.013765307143331,-0.021212674677372,0.021295350044966],[-0.042288359254599,0.034144978970289,0.033020101487637],[0.094282224774361,0.010523020289838,0.021627873182297]],[[-0.051541682332754,0.025330401957035,0.0087334290146828],[-0.031661741435528,-0.00013545516412705,0.084985673427582],[0.075527101755142,-0.050073761492968,-0.046952985227108]],[[0.013110019266605,-0.085196241736412,0.064169980585575],[0.091459430754185,0.017668636515737,0.1311851143837],[0.088446192443371,-0.046782340854406,0.0045516765676439]],[[-0.010596525855362,0.14410212635994,0.060716908425093],[0.030763825401664,-0.036527987569571,0.0045031905174255],[0.05335209518671,-0.01989272236824,0.029425354674459]],[[-0.052854020148516,0.06964510679245,0.012991732917726],[-0.036695003509521,-0.027112632989883,0.062135837972164],[-0.0081603126600385,0.075458757579327,-0.072242625057697]],[[-0.039524409919977,-0.052470274269581,0.010863817296922],[0.02797687612474,0.065404787659645,-0.057244271039963],[0.086353100836277,0.053599614650011,0.0083729019388556]],[[-0.099099643528461,0.060754436999559,0.079125426709652],[-0.0022338209673762,-0.055669441819191,-0.16167283058167],[-0.024258356541395,0.073262713849545,0.073593989014626]],[[0.022687207907438,0.078862436115742,0.010731619782746],[0.055430926382542,0.045504603534937,0.01804063655436],[-0.013575791381299,0.017836408689618,0.044393181800842]],[[0.043407149612904,0.044702928513288,0.098699271678925],[0.016977263614535,-0.036631740629673,0.047419514507055],[0.03142336755991,-0.0046675833873451,-0.038360383361578]],[[-0.0044399481266737,0.010825985111296,-0.023215040564537],[-0.028041047975421,0.010141313076019,0.094398856163025],[0.015546155162156,0.068746514618397,0.0027708648703992]],[[-0.033254846930504,-0.060839049518108,-0.016055684536695],[-0.098495110869408,0.0076160952448845,0.11312286555767],[-0.00043366485624574,0.0084317279979587,-0.048210758715868]],[[0.0137131633237,-0.010482141748071,0.050388745963573],[0.0085048191249371,-0.033006805926561,0.099459290504456],[-0.033826127648354,0.046293087303638,0.0039667077362537]],[[-0.10667330771685,0.021215133368969,0.053457703441381],[0.062776237726212,-0.0021965536288917,0.033605314791203],[0.092083722352982,0.087574452161789,0.035250011831522]],[[0.017682218924165,-0.01148936804384,0.07731206715107],[0.0047148657031357,-0.076874516904354,0.022202853113413],[0.032936919480562,-0.036743484437466,0.039314419031143]],[[-0.023728566244245,-0.0087090581655502,0.035786256194115],[-0.0011471700854599,0.0011804815148935,0.013818892650306],[-0.027755133807659,0.00060492812190205,0.039735548198223]],[[-0.0083398493006825,-0.0049953404814005,0.0069208536297083],[-0.005604350939393,0.089066080749035,-0.07494729757309],[-0.060093563050032,-0.01328581571579,0.028566278517246]],[[-0.025620363652706,0.051331140100956,0.051580082625151],[-0.027898600324988,0.018278263509274,0.045234423130751],[0.022404812276363,0.023852031677961,0.036010775715113]],[[-0.015201411210001,0.040353987365961,0.035196591168642],[0.010901072993875,0.023637145757675,0.017448967322707],[-0.019270252436399,-0.019567472860217,-0.010123427025974]],[[0.01555560529232,-0.045266754925251,0.064771734178066],[0.090340100228786,0.098619028925896,0.079932518303394],[0.043821938335896,0.015653371810913,0.062307812273502]],[[0.016002036631107,0.012439711950719,-0.010933404788375],[-0.04142228141427,0.032014977186918,0.0088450042530894],[-0.025112021714449,-0.059222467243671,-0.050216741859913]],[[-0.0010872222483158,0.021496834233403,0.028885519132018],[0.022540390491486,-0.040886141359806,-0.0088880779221654],[0.014403383247554,-0.10072258114815,-0.02162691950798]],[[-0.015817584469914,0.056341413408518,0.05038258805871],[-0.027558384463191,0.0057873427867889,0.010388968512416],[8.0419675214216e-05,0.066214479506016,0.0086153950542212]],[[0.0079078106209636,0.021780049428344,-0.0049882219173014],[-0.028859907761216,-0.034802567213774,-0.051359366625547],[0.021488476544619,0.028560157865286,-0.017534462735057]],[[-0.023808365687728,0.018445741385221,-0.10823107510805],[0.095954164862633,0.039473418146372,0.028236145153642],[-0.0074540763162076,-0.042830549180508,0.046999271959066]],[[-0.010499307885766,-0.017487842589617,-0.02758926525712],[-0.031320478767157,-0.034465476870537,-0.069911539554596],[0.065898261964321,0.0041825650259852,-0.093834735453129]],[[0.022846279665828,0.071979470551014,-0.010718498378992],[-0.02794886380434,0.0320042707026,0.041467268019915],[-0.011971285566688,-0.061478264629841,-0.020434698089957]],[[0.063486404716969,-0.038076974451542,0.028066869825125],[-0.044993296265602,-0.021834075450897,-0.0090249767526984],[0.0065420954488218,-0.029404129832983,0.069281175732613]],[[-0.10143050551414,-0.010102052241564,-0.10026221722364],[-0.13649593293667,-0.012787614949048,-0.049556352198124],[-0.045885786414146,0.054443180561066,0.038564782589674]],[[-0.01438475959003,-0.0054542925208807,0.011009714566171],[0.015942400321364,0.028926828876138,0.044054165482521],[0.0056429337710142,0.0688152089715,-0.031114786863327]],[[-0.083891585469246,-0.026553597301245,-0.046304740011692],[0.00029509089654312,0.033622674643993,0.02010809071362],[0.067484617233276,0.11132738739252,-0.010172076523304]],[[-0.053492039442062,-0.014548594132066,-0.0061839851550758],[-0.012271733023226,-0.019155466929078,-0.018664795905352],[-0.048321127891541,0.027953581884503,-0.033271100372076]],[[-0.016944957897067,-0.027801904827356,0.033334475010633],[0.0002831794845406,-0.013590821996331,-0.013759569264948],[-0.056271851062775,0.011241807602346,0.0012186854146421]],[[-0.030386699363589,-0.047306966036558,0.070543676614761],[0.093718603253365,0.051389954984188,-0.041109472513199],[-0.029913948848844,0.022913360968232,0.019925843924284]],[[-0.020741425454617,-0.04705024510622,0.043890409171581],[-0.064717933535576,-0.043621812015772,-0.12566274404526],[-0.040040336549282,-0.048333611339331,-0.039798069745302]],[[0.047110509127378,0.032616760581732,0.0093919280916452],[-0.018989205360413,-0.01682941429317,-0.01225286629051],[-0.022379919886589,-0.023030828684568,0.029927797615528]],[[-0.077562414109707,0.076612949371338,0.11777167022228],[-0.10815921425819,-0.010346933268011,0.013035397976637],[-0.00049821700667962,-0.022097719833255,0.050065577030182]],[[0.0056576272472739,0.014648746699095,0.078112833201885],[-0.092759989202023,0.024715330451727,0.039123591035604],[-0.067891925573349,-0.005265689920634,0.021224420517683]],[[0.008258655667305,-0.013304277323186,-0.052360404282808],[0.042627062648535,-0.050005629658699,0.052290555089712],[0.10522066801786,0.03935719653964,0.030877009034157]],[[0.044235728681087,-0.0047399899922311,0.029982808977365],[-0.083331555128098,-0.036638263612986,-0.041613429784775],[-0.0071924971416593,-0.034901078790426,-0.022544763982296]],[[-0.050595708191395,-0.04379989951849,0.030983628705144],[-0.034855347126722,-0.11799833923578,0.021814720705152],[0.019489824771881,0.003628792706877,-0.027549104765058]],[[0.020464602857828,0.087281286716461,-0.047986224293709],[-0.042718924582005,0.060870405286551,0.024683713912964],[0.0095297554507852,0.017391299828887,0.011691497638822]],[[-0.050689753144979,-0.001572422683239,0.13716699182987],[0.029849367216229,0.053033363074064,0.0067372834309936],[-0.0023245543707162,-0.11037890613079,-0.064912423491478]],[[-0.025569951161742,0.015480635687709,0.018495246767998],[-0.051871720701456,0.054266415536404,-0.03583312407136],[0.013886204920709,0.0014668112853542,-0.02549733966589]],[[-0.079323202371597,0.073663234710693,0.012674733065069],[0.061359453946352,0.049418967217207,0.043322812765837],[-0.01273457147181,0.018192559480667,-0.079703502357006]],[[-0.045390520244837,0.0026336284354329,-0.0081510655581951],[-0.00038620049599558,0.0027321462985128,0.017252145335078],[-0.057274907827377,0.056355211883783,-0.017728954553604]],[[0.12287533283234,0.025958575308323,0.10068493336439],[0.053113203495741,0.067407913506031,-0.042986389249563],[-0.013141258619726,0.088049605488777,0.047557558864355]],[[-0.0065151527523994,-0.077734127640724,-0.038683507591486],[0.048200875520706,-0.031586956232786,0.028232617303729],[-0.028480479493737,-0.052616775035858,-0.07740992307663]],[[0.0222745295614,0.03588954731822,0.0056809643283486],[-0.031766127794981,-0.042459778487682,0.055111344903708],[0.038664624094963,0.027606906369328,-0.02361230738461]],[[-0.015106081031263,-0.006114745978266,-0.029632026329637],[0.035966753959656,0.039653405547142,0.027853099629283],[0.027558783069253,0.011998628266156,0.054663743823767]],[[0.030613102018833,-0.048731509596109,-0.0049848784692585],[-0.017745900899172,-0.038150850683451,-0.018190680071712],[0.0043484228663146,-0.057228829711676,-0.085449896752834]],[[0.046324416995049,0.030710842460394,0.082323551177979],[0.0053059896454215,-0.02516333758831,0.080588340759277],[0.024908104911447,0.085693560540676,0.027941539883614]],[[0.026503464207053,0.06023670732975,0.047567546367645],[-0.032541509717703,-0.015503195114434,-0.016837643459439],[0.038916867226362,0.042817320674658,-0.038048453629017]],[[-0.051628522574902,0.0016650693723932,-0.12707822024822],[-0.054231125861406,0.092423669993877,-0.023262720555067],[-0.05609080940485,0.035159163177013,-0.013386007398367]],[[0.031274531036615,-0.072705321013927,0.085088111460209],[-0.024994989857078,-0.062891811132431,-0.057990174740553],[0.10750774294138,0.0031860216986388,-0.01981283351779]],[[-0.056900322437286,-0.027321141213179,-0.0048710126429796],[-0.0078404294326901,0.021886771544814,0.070143036544323],[0.061624519526958,-0.027224630117416,-0.020396932959557]],[[0.013853393495083,-0.012099067680538,-0.0045545711182058],[0.0040818601846695,-0.044260758906603,0.078016392886639],[-0.016060022637248,-0.04357497766614,0.016309818252921]]],[[[0.032654009759426,0.019021656364202,-0.036937274038792],[0.0010045195231214,-0.011252538301051,0.050401482731104],[-0.06892392039299,-0.0004704175516963,0.0095326593145728]],[[-0.041797749698162,0.026417417451739,0.025727495551109],[0.010829538106918,0.030045375227928,-0.024448741227388],[-0.020381473004818,-0.068089939653873,-0.045141790062189]],[[0.032288633286953,-0.027632040902972,-0.0124276811257],[-0.029094500467181,-0.032910443842411,0.0046748369932175],[0.050806488841772,-0.0002593458048068,0.039147652685642]],[[0.00918750744313,-0.068567968904972,-0.061027135699987],[-0.0084391720592976,-0.03106844983995,-0.047194059938192],[0.072789810597897,-0.024759164080024,-0.018658943474293]],[[0.057148922234774,-0.049254629760981,0.017928197979927],[0.00086427759379148,0.035358570516109,-0.012536301277578],[0.045875161886215,-0.0059518087655306,0.021252308040857]],[[0.057697258889675,-0.055558893829584,0.045981377363205],[-0.032685320824385,-0.019647162407637,-0.0097332280129194],[0.038547158241272,0.018568871542811,0.0076565975323319]],[[0.022053556516767,0.013777180574834,0.030263522639871],[-0.010614614933729,0.015505931340158,0.074963174760342],[-0.0042709596455097,-0.030003888532519,0.043307416141033]],[[-0.032734822481871,-0.019653217867017,-0.0094718737527728],[-0.01022429484874,0.037474505603313,0.12462043017149],[-0.051487144082785,0.032966278493404,0.05523656308651]],[[0.0015143845230341,-0.048833440989256,0.0039954693056643],[0.012983659282327,-0.017300143837929,0.010141406208277],[0.024747485294938,-0.026255752891302,0.025028005242348]],[[0.054524514824152,-0.1304334551096,-0.013289080932736],[-0.029144860804081,0.010020141489804,0.036757718771696],[0.062819093465805,0.051013574004173,-0.021007439121604]],[[0.022410431876779,0.032204262912273,0.044188980013132],[-0.0086764954030514,-0.099483713507652,0.048388056457043],[0.031949900090694,0.051772497594357,0.092633664608002]],[[-0.04908436909318,-0.031422484666109,-0.067177064716816],[-0.034455887973309,0.044327430427074,0.013059133663774],[0.054566171020269,0.026935268193483,0.058071937412024]],[[-0.015206250362098,-0.045645739883184,-0.013477734290063],[0.013048322871327,-0.013345020823181,0.061749264597893],[0.010640632361174,0.034617032855749,-0.049165043979883]],[[0.06004511192441,-0.061279352754354,0.078045353293419],[0.077385887503624,0.036512728780508,0.0046030352823436],[0.018123498186469,0.04741557314992,0.11994330585003]],[[0.074140876531601,0.053186915814877,0.011689750477672],[-0.0129853207618,-0.0016213922062889,-0.069474674761295],[0.048525389283895,0.0076450160704553,0.085448771715164]],[[-0.014059064909816,0.044239886105061,-0.081065885722637],[0.013569786213338,-0.062282714992762,-0.031922642141581],[0.064502067863941,-0.0022790452931076,-0.036847185343504]],[[0.041593968868256,0.057360414415598,0.047055933624506],[0.008207930251956,-0.056163873523474,0.0034642480313778],[0.04448552057147,0.064683273434639,0.015720061957836]],[[-0.022984892129898,0.0019593429751694,0.0034968988038599],[0.021714970469475,-0.0027048629708588,-0.018861519172788],[-0.010187025181949,0.048297423869371,0.013197217136621]],[[0.016447488218546,0.0004999655066058,-0.03042864240706],[-0.016375456005335,0.00033091922523454,0.026103874668479],[0.030775457620621,0.013880542479455,0.009847360663116]],[[-0.0037640559021384,0.046804279088974,0.047149997204542],[-0.064525865018368,-0.027994811534882,-0.024759061634541],[0.00853649713099,-0.015336907468736,-0.05430019274354]],[[0.047032799571753,0.058683082461357,-0.051044259220362],[-0.0021402719430625,0.050429087132215,0.074547559022903],[0.014522169716656,0.026313127949834,-0.0082557667046785]],[[0.014312982559204,-0.040240682661533,-0.036596208810806],[0.030631506815553,0.0030200090259314,-0.009836888872087],[-0.018773932009935,-0.028512071818113,-0.015132986940444]],[[-0.0088742300868034,-0.041010946035385,-0.015585474669933],[0.030467225238681,0.047910384833813,0.011983933858573],[-0.029009046033025,-0.052376009523869,0.048381242901087]],[[0.039601601660252,0.041690282523632,-0.031488075852394],[-0.062806732952595,-0.10152447968721,0.01889574341476],[0.026964206248522,-0.018909621983767,-0.030827919021249]],[[0.041697930544615,0.037122949957848,0.073231622576714],[0.020490810275078,0.039196327328682,-0.021414522081614],[0.028719058260322,0.022241402417421,-0.015357552096248]],[[-0.08106417953968,0.056296020746231,-0.023695638403296],[-0.0027619507163763,0.017885008826852,-0.023968549445271],[-0.0050513395108283,-0.054807584732771,0.011566515080631]],[[-0.015662554651499,0.057403933256865,-0.019831880927086],[0.015072354115546,-0.034329567104578,-0.038520388305187],[0.044157594442368,0.095410712063313,0.087848663330078]],[[-0.012232883833349,-0.027782430872321,0.069469504058361],[-0.010096481069922,-0.017947625368834,0.0073842159472406],[0.12376952171326,-0.088461957871914,0.035067308694124]],[[0.007814702577889,-0.047492209821939,-0.065573811531067],[-0.042272217571735,0.016908662393689,0.0663842856884],[-0.0016938778571784,-0.0035739878658205,-0.032001856714487]],[[0.0014192365342751,0.023190515115857,0.082304187119007],[-0.09828232228756,-0.013938571326435,-0.028986804187298],[-0.049615543335676,0.025016894564033,0.029404293745756]],[[0.017507091164589,-0.029169766232371,-0.0010184904094785],[0.011781218461692,0.056929729878902,-0.012112002819777],[-0.095301449298859,-0.032104790210724,0.053549256175756]],[[-0.096905149519444,-0.051492806524038,-0.077092327177525],[0.10120978206396,0.022461038082838,-0.14971400797367],[0.01533423922956,0.020161246880889,-0.0082927253097296]],[[0.022608382627368,0.042360354214907,0.013237333856523],[-0.0059435083530843,-0.0085041970014572,-0.011852676048875],[0.0073273861780763,0.035104483366013,-0.0020742551423609]],[[0.010424631647766,0.010765400715172,-0.0110321957618],[0.0012010228820145,-0.070247285068035,-0.023804353550076],[-0.059432160109282,0.046966154128313,-0.026950960978866]],[[0.018642155453563,0.051826555281878,0.078192450106144],[0.0069358805194497,-0.065943494439125,-0.027047885581851],[-0.0099408468231559,-0.05539882928133,0.01039307191968]],[[-0.011872991919518,0.058497004210949,0.05033028498292],[0.031022982671857,-0.0077609238214791,-0.065886959433556],[-0.055331941694021,0.017009409144521,0.072844497859478]],[[0.051754850894213,-0.0092149190604687,0.048407465219498],[-0.002559470012784,-0.0466034039855,-0.0043935705907643],[-0.0071118003688753,0.076945573091507,-0.017217414453626]],[[0.0068555008620024,0.008084918372333,0.048240967094898],[0.021362967789173,-0.035467855632305,-0.013291705399752],[-0.07172766327858,0.0056939511559904,-0.025720795616508]],[[0.019010862335563,-0.11497000604868,-0.1309871673584],[-0.06224550306797,0.038725793361664,0.041052766144276],[-0.0088731674477458,0.010720524005592,0.016085850074887]],[[0.0012997577432543,-0.070312030613422,-0.025318920612335],[0.0044626938179135,-0.004978044424206,0.021109322085977],[-0.049002036452293,-0.039284639060497,-0.022797537967563]],[[0.065415926277637,-0.036211606115103,-0.043193470686674],[0.004531770478934,0.021275291219354,-0.020860176533461],[-0.011980872601271,0.021774563938379,-0.012468384578824]],[[-0.0011658661533147,-0.043508037924767,-0.011455815285444],[-0.059491228312254,-0.031027654185891,-0.0024011929053813],[0.040533374994993,0.032621048390865,-0.021253351122141]],[[0.036811672151089,-0.018551358953118,-0.035944510251284],[-0.0045880628749728,-0.019027289003134,0.01134807150811],[0.018450040370226,0.047636248171329,0.01826599240303]],[[-0.0024145878851414,0.019560692831874,0.002011451870203],[-0.033076569437981,-0.020933002233505,0.034951332956553],[0.021023092791438,0.048594694584608,0.082401029765606]],[[0.047536600381136,-0.02697959728539,-0.087944589555264],[-0.030568646267056,-0.016315590590239,-0.0043284255079925],[0.014305567368865,0.0071520279161632,-0.0088098049163818]],[[-0.026759199798107,0.033399123698473,0.018516331911087],[-0.004125383682549,0.039064440876245,0.0034530393313617],[0.017506653442979,-0.0030411703046411,-0.14744073152542]],[[-0.099066115915775,0.041273005306721,-0.022018108516932],[-0.02600109577179,-0.014212082140148,0.020273694768548],[0.0054974858649075,-0.086722381412983,-0.010663761757314]],[[0.060146655887365,-0.031401239335537,0.0071526034735143],[0.036033533513546,0.014479122124612,-0.027534315362573],[0.023404205217957,-0.0023055896162987,0.03549837321043]],[[-0.025874059647322,0.046432327479124,-0.048511795699596],[-0.028068987652659,0.011063629761338,-0.058276101946831],[0.036013841629028,-0.053223561495543,0.010117175988853]],[[-0.043554771691561,-0.029466995969415,0.018699223175645],[-0.071758508682251,-0.019436681643128,0.033825859427452],[0.023548297584057,0.033838104456663,-0.013368535786867]],[[-0.049543652683496,-0.070408269762993,-0.015266086906195],[0.011643803678453,0.039784003049135,0.0098790396004915],[-0.004896632861346,-0.0039220941253006,-0.026943871751428]],[[-0.06000079959631,-0.074993468821049,-0.10023000836372],[0.056146658957005,-0.0089508229866624,-0.00029161834390834],[0.0037492122501135,-0.019183849915862,-0.0026590053457767]],[[-0.018065581098199,-0.049378164112568,-0.0049010766670108],[-0.015250753611326,0.083544388413429,0.001755821867846],[-0.02622938528657,-0.038928370922804,0.021847225725651]],[[0.059477474540472,0.095271855592728,0.044790375977755],[0.040027923882008,0.0060290372930467,0.035036496818066],[0.051521498709917,0.076199375092983,0.01725884526968]],[[0.045148439705372,0.093981191515923,0.026890380308032],[-0.0062451125122607,-0.063557967543602,0.043701112270355],[0.0031082145869732,0.033243004232645,-0.05043388530612]],[[-0.065851017832756,0.01294279191643,-0.049248438328505],[-0.0041591236367822,-0.015915907919407,-0.023485939949751],[0.011054289527237,-0.074254602193832,-0.0075170355848968]],[[0.045345120131969,0.023959435522556,0.0099610611796379],[0.061085067689419,0.02250312268734,0.019814493134618],[0.0048165041953325,0.013182493858039,0.035576269030571]],[[0.033820170909166,0.0034592242445797,0.020438136532903],[-0.048379864543676,-0.01863438822329,0.023474195972085],[0.040365509688854,-0.032411806285381,-0.058201428502798]],[[0.049734085798264,-0.036719433963299,-0.0062719071283937],[-0.090347602963448,-0.024521576240659,-0.042464006692171],[0.035811934620142,-0.0027011041529477,0.016365697607398]],[[-0.013776886276901,-0.0045665469951928,0.064338818192482],[0.011814520694315,-0.016271604225039,-0.077043063938618],[0.011689734645188,0.063759423792362,-0.0093018496409059]],[[0.030319333076477,-0.063708521425724,-0.0081735188141465],[0.019656080752611,-0.011303322389722,-0.029127962887287],[-0.025960344821215,0.003574849339202,0.012129969894886]],[[-0.016209241002798,-0.044274996966124,-0.13884752988815],[0.016296355053782,-0.039439480751753,0.025097604840994],[-0.087690658867359,0.027526076883078,0.010388011112809]],[[0.0377282127738,-0.011496219784021,-0.0029443632811308],[-0.024682661518455,-0.036493446677923,0.0069053340703249],[0.014065000228584,0.027953747659922,-0.046512968838215]],[[0.071725934743881,-0.032582934945822,-0.045792255550623],[-0.049562390893698,-0.070782780647278,-0.0089101726189256],[0.014206525869668,-0.0063190828077495,0.012125167064369]]],[[[-0.039322059601545,0.010665077716112,-0.03260301426053],[-0.089039370417595,0.064817972481251,0.030418559908867],[-0.07682428508997,-0.00025767504121177,0.10099095106125]],[[-0.062966771423817,-0.039163559675217,0.010431998409331],[-0.015614074654877,0.018925772979856,0.014885271899402],[0.047685872763395,0.081631079316139,0.01201044768095]],[[0.01473943144083,-0.0088431816548109,-0.047571610659361],[-0.040616974234581,-0.030297446995974,0.018259055912495],[-0.024628387764096,0.0091376360505819,-0.010443324223161]],[[0.0026289473753422,-0.072349175810814,0.019043939188123],[-0.089594028890133,-0.0070780678652227,0.048908960074186],[0.068410396575928,-0.0071012550033629,0.033426590263844]],[[0.0083843534812331,-0.096950270235538,-0.060762722045183],[-0.012063157744706,-0.13429665565491,0.059718865901232],[0.017388505861163,0.11582576483488,0.041907135397196]],[[-0.053589403629303,-0.067203648388386,0.019466990604997],[0.0060164895839989,0.062723435461521,0.015011606737971],[-0.0047018444165587,0.068681940436363,-0.051497910171747]],[[-0.028098609298468,-0.040152799338102,0.014930906705558],[0.05785595625639,0.015898898243904,-0.033508233726025],[0.032270051538944,0.018008101731539,0.015593817457557]],[[0.038716305047274,-0.048334643244743,0.002278683707118],[0.070753872394562,-0.042256847023964,0.0062086991965771],[-0.041761614382267,-0.046729575842619,0.061580553650856]],[[-0.010567133314908,-0.033001523464918,0.037963036447763],[0.010813965462148,0.0083095133304596,-1.8093944163411e-05],[-0.0074462136253715,0.0062298136763275,-0.030588250607252]],[[-0.30050081014633,0.0093628047034144,0.01057193800807],[0.024763166904449,-0.11784180253744,0.075570829212666],[0.048538394272327,0.047780185937881,-0.029988300055265]],[[0.063531368970871,-0.01925503090024,-0.0099374847486615],[-0.034709144383669,-0.069209732115269,-0.018799543380737],[-0.028130235150456,-0.031532451510429,-0.1355934292078]],[[0.045483838766813,-0.0054275365546346,0.05678079277277],[0.082912959158421,0.058745924383402,-0.033068262040615],[-0.004473754670471,-0.028297485783696,-0.034737847745419]],[[0.0025738943368196,0.073481440544128,0.015452696941793],[-0.10926024615765,-0.12719585001469,0.067765131592751],[-0.0092344349250197,-0.077734723687172,-0.0049458551220596]],[[0.038437005132437,-0.070606969296932,0.031958598643541],[0.057689394801855,0.042539648711681,-0.0032270413357764],[-0.013098149560392,-0.00067302456591278,-0.024488238617778]],[[0.12820112705231,0.038269758224487,-0.078209400177002],[-0.030293161049485,0.077154882252216,-0.030654506757855],[0.0011646453058347,-0.025378780439496,0.021112529560924]],[[-0.094812899827957,0.065167814493179,0.02909735403955],[-0.0093077626079321,0.12297704070807,0.041433081030846],[-0.026453647762537,0.054201383143663,-0.0011443319963291]],[[0.098441042006016,0.074888087809086,0.08616204559803],[0.088408559560776,0.026230916380882,-0.0054537560790777],[0.096729777753353,0.0037326449528337,-0.0047516641207039]],[[-0.01922264136374,0.022429496049881,-0.023833619430661],[0.048343479633331,-0.021196128800511,0.041852645576],[0.07345462590456,0.047434352338314,0.11915741115808]],[[-0.0072079999372363,-0.0036755043547601,-0.040219515562057],[0.05138360708952,-0.037367444485426,-0.055603988468647],[-0.018286822363734,0.06438310444355,-0.059483088552952]],[[-0.031477209180593,0.021636322140694,-0.024494543671608],[0.0074305776506662,-0.032484617084265,0.028722861781716],[0.013827363029122,-0.030649747699499,0.073109395802021]],[[0.080845057964325,0.11467867344618,0.036017633974552],[0.16529278457165,0.12233509123325,0.068486861884594],[0.13402731716633,0.12589934468269,0.12970399856567]],[[0.05138873681426,-0.025790439918637,-0.020924145355821],[-0.054753247648478,0.043126422911882,-0.0131148211658],[0.0058374865911901,0.048443347215652,-0.042246341705322]],[[-0.073294453322887,-0.0055987513624132,-0.0097286161035299],[-0.025406423956156,0.00094079080736265,0.023697961121798],[-0.027692705392838,0.06709511578083,0.061566170305014]],[[-0.079755432903767,0.010500566102564,0.018194148316979],[0.025209108367562,-0.022630918771029,0.026877721771598],[-0.0034361237194389,-0.15243284404278,0.019234290346503]],[[-0.063836023211479,0.075230836868286,0.094035163521767],[-0.029087450355291,0.031335599720478,0.044817682355642],[-0.042957443743944,0.061864819377661,0.071651592850685]],[[-0.062986418604851,0.034948039799929,-0.028145210817456],[-0.021099403500557,-0.0017966132145375,0.020476220175624],[-0.10856085270643,-0.11291247606277,-0.015484116971493]],[[0.066043637692928,-0.01180658582598,0.029093150049448],[0.056215044111013,-0.0085475016385317,0.032358922064304],[0.075917541980743,0.026846498250961,-0.017230842262506]],[[-0.033596947789192,0.010244319215417,-0.0576560087502],[-0.013589452952147,0.060899931937456,0.07797147333622],[-0.011960034258664,-0.022676086053252,-0.043866954743862]],[[0.13693927228451,0.051301468163729,0.026359787210822],[0.077279135584831,-0.029061056673527,-0.04182455688715],[-0.068299427628517,-0.11729096621275,0.00061281933449209]],[[0.022415161132812,-0.016604131087661,-0.030111523345113],[0.079039566218853,0.085976719856262,-0.042095959186554],[-0.043657507747412,0.085724025964737,-0.039578054100275]],[[0.0043096258305013,-0.015971031039953,-0.051668014377356],[-0.051486663520336,0.015756001695991,0.0072375554591417],[0.095592357218266,-0.063854739069939,0.030095286667347]],[[0.085352331399918,-0.0016642289701849,-0.17110767960548],[0.25810953974724,0.055152453482151,-0.068795219063759],[-0.046142935752869,0.021428512409329,-0.088171750307083]],[[-0.035287041217089,-0.25783666968346,-0.23555850982666],[0.10789766162634,-0.052440598607063,-0.048008821904659],[0.22287079691887,0.073370069265366,-0.060402531176805]],[[0.011671260930598,-0.066428773105145,-0.063438184559345],[-0.085031315684319,-0.10040414333344,-0.045862317085266],[0.048049245029688,0.067404538393021,0.024481233209372]],[[-0.033998370170593,-0.10760495066643,0.13218219578266],[-0.0057008164003491,-0.037750232964754,0.069780774414539],[-0.16908000409603,0.061474695801735,0.035771112889051]],[[0.033182971179485,0.00058678368804976,0.0057671014219522],[-0.020620560273528,-0.079755805432796,-0.02282128110528],[0.0083009079098701,0.051388990134001,-0.030313342809677]],[[0.073467470705509,0.075429767370224,0.0043913470581174],[0.099739395081997,-0.10197116434574,-0.11293493211269],[0.10415697097778,-0.0080059384927154,-0.092456132173538]],[[0.029384991154075,-0.11363478004932,-0.036159086972475],[0.088953524827957,0.043632991611958,0.061216659843922],[0.089960873126984,-0.063840307295322,-0.099115483462811]],[[-0.064061731100082,0.02840224839747,0.029039708897471],[0.012310375459492,-0.048505119979382,0.063986055552959],[0.052499942481518,0.096344791352749,0.055444784462452]],[[-0.013324680738151,-0.11583260446787,-0.082717560231686],[-0.1004481613636,-0.091252326965332,-0.10893899947405],[-0.04450262337923,-0.0072031798772514,0.040528584271669]],[[-0.021556166931987,-0.019886467605829,0.047872576862574],[-0.12302033603191,0.090902060270309,0.023775057867169],[0.0089475344866514,0.079641424119473,0.11384364962578]],[[0.061841405928135,-0.022291289642453,0.0017019364750013],[-0.12756256759167,-0.034278322011232,0.038811355829239],[0.002069506328553,-0.073915183544159,0.065068691968918]],[[0.020811019465327,0.057397127151489,-0.054891388863325],[0.0388388261199,0.10648201406002,-0.026051472872496],[0.0060874340124428,0.00086468632798642,0.032488834112883]],[[-0.098933428525925,0.02958625741303,-0.0012834805529565],[-0.020050881430507,0.084285534918308,0.023637531325221],[0.043546866625547,0.04631718993187,0.0017171282088384]],[[-0.019213005900383,0.14689654111862,0.054006524384022],[-0.040779363363981,0.021761082112789,0.10804150998592],[0.017307367175817,-0.043323431164026,0.019718781113625]],[[0.027741070836782,-0.20563946664333,0.051535621285439],[-0.057266306132078,-0.043587177991867,-0.022221628576517],[0.024762950837612,0.0084425704553723,-0.068521745502949]],[[0.018808867782354,0.02368894778192,-0.0015609798720106],[-0.067655801773071,-0.090336814522743,0.00091373914619908],[-0.056237902492285,-0.073817268013954,-0.042010553181171]],[[-0.10318636149168,0.068646982312202,0.0076358020305634],[-0.088204368948936,-0.018405908718705,-0.0016769291833043],[-0.097812302410603,0.028226222842932,0.0010961568914354]],[[-0.15368919074535,0.070024624466896,0.036318346858025],[0.025840863585472,0.0014300619950518,-0.055216461420059],[0.027454864233732,-0.0052606044337153,-0.022207183763385]],[[-0.094748765230179,0.068640775978565,-0.0077745225280523],[-0.12395124137402,-0.071897983551025,0.093154452741146],[-0.10377487540245,-0.03821374848485,0.037939354777336]],[[-0.075004644691944,0.009028485044837,0.0085473917424679],[0.014065693132579,-0.024688983336091,-0.014377297833562],[0.045505404472351,0.1503221988678,0.038843888789415]],[[0.053747039288282,-0.0073598395101726,0.057226151227951],[-0.015848346054554,0.051752973347902,-0.01153551787138],[-0.038261514157057,-0.04249531775713,0.010863095521927]],[[0.062163934111595,-0.023932963609695,0.096360489726067],[0.013491642661393,0.066113486886024,0.067761406302452],[-0.033608213067055,0.02117775939405,0.10911341756582]],[[-0.0040999441407621,0.16459287703037,0.090014077723026],[0.038619816303253,0.064473979175091,0.04255622625351],[0.068479612469673,-0.024699514731765,-0.1200977563858]],[[0.016545251011848,0.10143253207207,-0.032638199627399],[-0.0010884868679568,0.027869716286659,0.10163351148367],[0.011205981485546,0.036552902311087,0.066891074180603]],[[0.041551124304533,0.013068840838969,-0.035166971385479],[-0.034913469105959,0.018073763698339,-0.012558445334435],[-0.03593048453331,0.048485018312931,0.0088930167257786]],[[-0.084006741642952,-0.053075581789017,-0.015379711985588],[-0.045299094170332,-0.007819346152246,0.040367025882006],[0.00011248983355472,-0.012826588004827,0.059565730392933]],[[0.034882180392742,-0.03855799138546,-0.049160294234753],[-0.021466601639986,0.084680065512657,-0.12148085981607],[-0.033339459449053,0.030966171994805,-0.19770522415638]],[[-0.013755892403424,0.11933524906635,0.030427666381001],[-0.01345088519156,-0.0053471950814128,0.058787818998098],[0.024147367104888,0.018057318404317,-0.05741561204195]],[[0.089882656931877,0.076194986701012,0.040327053517103],[0.032879825681448,-0.081508226692677,-0.036346450448036],[0.046710107475519,-0.086867980659008,-0.024016728624701]],[[-0.043900806456804,-0.20363140106201,-0.01928448677063],[0.098342753946781,0.020990084856749,0.048769172281027],[-0.040863964706659,0.16469211876392,0.035546783357859]],[[-0.010876732878387,-0.034188002347946,0.034874394536018],[0.0001703517336864,-0.11501830071211,0.02986810170114],[-0.071247726678848,-0.021179726347327,-0.0097836153581738]],[[-0.10442589968443,-0.14466701447964,-0.053033761680126],[-0.069494098424911,-0.096159636974335,-0.011971187777817],[0.035439431667328,0.12471489608288,0.093652330338955]],[[-0.014856777153909,0.0051291668787599,0.029509600251913],[-0.016539309173822,-0.0077792503871024,-0.018097596243024],[0.019447198137641,0.016707072034478,-0.04769641533494]]],[[[0.030986512079835,0.011755536310375,-0.033766068518162],[-0.13045236468315,-0.0130704510957,-0.094579294323921],[0.073859639465809,0.044256661087275,0.13824287056923]],[[0.0042181755416095,0.021934950724244,0.02052516490221],[-0.027779392898083,0.0098646897822618,-0.0026307727675885],[0.021713513880968,0.00060969759942964,-0.011838807724416]],[[0.007362418808043,0.026775386184454,-0.036102324724197],[5.0721606385196e-05,-0.067625433206558,0.026903659105301],[-0.028530949726701,-0.043341137468815,0.0071800122968853]],[[-0.080001063644886,-0.024106623604894,0.040047131478786],[-0.052696134895086,0.027768161147833,-0.036167874932289],[0.056578863412142,0.02076755836606,-0.076969787478447]],[[-0.054152846336365,-0.04698983579874,-0.036885228008032],[-0.066950798034668,0.026826184242964,-0.037190612405539],[-0.056445710361004,0.014706434682012,0.016713440418243]],[[-0.037215325981379,0.13309949636459,0.084273658692837],[0.047029834240675,-0.032860144972801,0.011788002215326],[-0.047721300274134,-0.13978561758995,-0.017464946955442]],[[-0.042070437222719,-0.0026608777698129,0.018523667007685],[-0.092145368456841,-0.033565316349268,-0.022818831726909],[-0.025298699736595,-0.013383680023253,0.03754822537303]],[[-0.013914092443883,-0.10267101973295,-0.018063517287374],[-0.01713833026588,-0.054703876376152,-0.0072535220533609],[0.0080201094970107,-0.024974415078759,0.016526056453586]],[[-0.034361395984888,-0.042173393070698,0.088234089314938],[0.02089267782867,0.049605127424002,0.010465513914824],[-0.040816862136126,-0.025470186024904,-0.031194610521197]],[[-0.035039559006691,0.0040347240865231,-0.0093112969771028],[-0.034190997481346,-0.039900872856379,0.00025016046129167],[-0.0602743960917,-0.036108516156673,0.0030368387233466]],[[-0.0079906117171049,0.018834264948964,0.023682879284024],[-0.079287551343441,-5.6779088481562e-05,-0.052243892103434],[-0.046743419021368,-0.017621144652367,-0.067886091768742]],[[0.031454216688871,0.002858854830265,-0.079423323273659],[-0.0020949896425009,-0.0083784647285938,0.005494904704392],[0.014148894697428,-0.0070270304568112,-0.016287939622998]],[[-0.019123358651996,-0.043366342782974,-0.035302016884089],[-0.07159698009491,0.026906283572316,-0.0059641376137733],[-0.077870912849903,-0.01369461696595,-0.11451950669289]],[[-0.084950558841228,0.026242196559906,0.039629247039557],[-0.080256901681423,0.084135800600052,0.00059675110969692],[0.020688895136118,0.084078423678875,-0.0085314093157649]],[[-0.02559451572597,-0.031625021249056,-0.013830007053912],[-0.039564725011587,-0.00052543228957802,-0.064252808690071],[-0.058400277048349,0.013847561553121,-0.024073459208012]],[[-0.04265858232975,0.033684249967337,0.014534384012222],[0.018013264983892,-0.027326190844178,-0.029142465442419],[-0.019792843610048,-0.013304225169122,0.092826619744301]],[[-0.064043961465359,0.043242394924164,-0.082782596349716],[-0.0080287139862776,-0.0076897842809558,-0.012437274679542],[-0.021183690056205,0.0074357935227454,-0.024668147787452]],[[-0.028438832610846,0.015050664544106,-0.070301480591297],[-0.012568083591759,-0.029467489570379,-0.036844626069069],[0.025414623320103,-0.019076706841588,-9.4804352556821e-05]],[[-0.025090305134654,-0.029205335304141,-0.034515712410212],[-0.028186939656734,-6.0675592976622e-05,0.033633202314377],[0.0037537703756243,-0.015296314842999,-0.027916304767132]],[[-0.04513992369175,0.027089029550552,-0.080202013254166],[-0.0057997754774988,-0.0037552260328084,-0.012695816345513],[-0.0071058534085751,-0.017901422455907,-0.027104835957289]],[[-0.001717263716273,-0.01697332970798,0.0099536431953311],[0.017235901206732,-0.074280306696892,-0.016528369858861],[0.10519107431173,-0.032421883195639,-0.056532636284828]],[[-0.055483940988779,0.011216969229281,-0.013146373443305],[0.034773163497448,0.02784532494843,-0.077182061970234],[-0.0061991349793971,-0.04204561188817,0.089866943657398]],[[-0.010240791365504,0.015738578513265,-0.029117455706],[-0.045017782598734,0.028103690594435,-0.035741120576859],[0.045073725283146,-0.029593134298921,0.064346663653851]],[[-0.065096341073513,0.00065186072606593,-0.0087043084204197],[0.059515580534935,-0.038072790950537,0.0072202715091407],[-0.0093157272785902,-0.055279664695263,-0.089177943766117]],[[0.027306193485856,0.0061219688504934,0.094655558466911],[-0.010083819739521,-0.010145696811378,0.010481966659427],[-0.030329585075378,-0.048061136156321,0.022429661825299]],[[-0.1004603356123,0.038130864500999,0.058979261666536],[-0.0037304197903723,-0.06850615888834,-0.028211113065481],[0.01177329197526,-0.04447415843606,-0.0068207979202271]],[[0.002151194261387,0.099547907710075,0.014013699255884],[-0.028771184384823,-0.032834321260452,-0.0043208794668317],[-0.045370358973742,0.029723761603236,-0.03895278647542]],[[0.047668516635895,0.054156258702278,0.085056766867638],[0.042167946696281,-0.053026717156172,0.0125264050439],[0.038153365254402,-0.040536429733038,0.0040112319402397]],[[0.056964062154293,-0.020453914999962,0.026702357456088],[0.043624471873045,-0.055710755288601,-0.029968656599522],[0.0065176305361092,-0.023105850443244,-0.069469913840294]],[[0.0066324565559626,0.0099210618063807,0.007645879406482],[-0.054045341908932,0.064588695764542,-0.0091411154717207],[-0.02071151137352,0.030121117830276,0.046643290668726]],[[-0.0356120839715,-0.025036452338099,0.02567114494741],[0.0049470039084554,-0.073430098593235,-0.022387605160475],[-0.018708413466811,-0.02193951420486,0.016612773761153]],[[-0.047178968787193,0.0042957304976881,0.025747975334525],[-0.0017968962201849,0.058944527059793,-0.014246877282858],[0.018186109140515,-0.057587962597609,0.010429904796183]],[[-0.013099273666739,-0.066520668566227,-0.1821471452713],[-0.066090568900108,0.03515499830246,-0.038789395242929],[0.004389759618789,-0.0078418841585517,-0.041042156517506]],[[-0.00090357701992616,0.060488879680634,-0.0031354518141598],[0.057354532182217,-0.085862092673779,0.039706993848085],[-0.045094974339008,-0.046741403639317,-0.05387644469738]],[[-0.030953168869019,-0.078443855047226,0.026853432878852],[-0.021784296259284,-0.021532978862524,0.002743041375652],[0.067369513213634,-0.0012232201406732,-0.014353737235069]],[[-0.022621992975473,0.061839636415243,0.098206259310246],[-0.014263209886849,-0.039921972900629,-0.088078022003174],[-0.049701865762472,0.033409029245377,0.016397455707192]],[[-0.030381752178073,-0.0087400497868657,0.0037573503796011],[-0.00053352117538452,-0.093367539346218,-0.0066655739210546],[-0.014448665082455,-0.044834088534117,-0.030666587874293]],[[-0.09091380238533,0.020293779671192,-0.0006067255162634],[-0.062804393470287,-0.0012167148524895,0.039790045469999],[0.096801400184631,0.056845922023058,-0.02134009078145]],[[0.022323189303279,0.0086684236302972,-0.012201271019876],[-0.044497042894363,-0.066252022981644,-0.0047511095181108],[-0.0020093852654099,-0.052112963050604,0.078271076083183]],[[0.033560760319233,0.020330572500825,-0.012661688029766],[-0.05579998344183,-0.061595965176821,-0.025310451164842],[-0.061645198613405,-0.053696326911449,0.023668467998505]],[[-0.052290927618742,-0.016310874372721,0.043620754033327],[-0.088943727314472,0.012539024464786,0.018326889723539],[0.01603346504271,0.006060195621103,-0.0421492010355]],[[-0.083279676735401,0.019365003332496,-0.014524823985994],[0.0037229610607028,-0.064223617315292,0.0022746461909264],[-0.0048624561168253,-0.018645023927093,-0.0032120726536959]],[[-0.053870480507612,0.080990798771381,-0.0024047063197941],[-0.068148069083691,0.06851227581501,-0.031193980947137],[0.00811449252069,-0.0078980922698975,0.032549671828747]],[[-0.02869363874197,-0.038824032992125,0.059735864400864],[-0.024144256487489,-0.017571229487658,-0.11213476955891],[0.0079611800611019,-0.043610461056232,0.0046427240595222]],[[0.0077948742546141,0.060704529285431,-0.047026284039021],[0.02327081002295,-0.027736151590943,0.018866384401917],[-0.045805841684341,0.01254151109606,-0.00063280196627602]],[[-0.055843099951744,-0.0087668150663376,-0.02852276340127],[-0.09882940351963,-0.05295068398118,-0.026932403445244],[0.022542292252183,0.037374179810286,0.017754642292857]],[[0.0053327232599258,0.011554092168808,-0.01250712107867],[0.018669825047255,-0.065989531576633,0.036469768732786],[0.023476952686906,-0.042759403586388,-0.080809094011784]],[[-0.041168749332428,0.010952020995319,0.005610354244709],[0.01612227410078,0.013053153641522,-0.070189215242863],[-0.063486583530903,-0.059813473373652,-0.0025751744396985]],[[-0.058224894106388,0.015313815325499,-0.050908874720335],[-0.018796971067786,0.025189520791173,-0.032914314419031],[0.0072046802379191,-0.0082759046927094,-0.061839964240789]],[[-0.023399820551276,-0.011425589211285,-0.048128575086594],[0.0076885260641575,-0.037979748100042,-0.013761565089226],[-0.044739842414856,0.070606842637062,0.0087514230981469]],[[0.027916248887777,0.013209103606641,-0.034643352031708],[-0.012986904941499,-0.031528860330582,-0.021612960845232],[-0.036104831844568,-0.002160124713555,0.019082352519035]],[[-0.029982302337885,0.024873739108443,-0.046548709273338],[0.015317219309509,-0.014709583483636,0.026754142716527],[0.0008237810106948,-0.078720189630985,-0.056087359786034]],[[0.051457121968269,0.035900413990021,-0.034699279814959],[-0.060616072267294,-0.018674254417419,-0.013455407693982],[0.019490027800202,0.012503947131336,-0.03134660795331]],[[0.023849084973335,0.041538640856743,0.028052184730768],[0.10132100433111,0.013821247965097,-0.019904114305973],[0.0035893679596484,0.027171440422535,0.034190889447927]],[[-0.015210353769362,-0.091823428869247,-0.070726290345192],[-0.023132968693972,-0.022485116496682,0.042110167443752],[-0.006456570699811,-0.011647621169686,-0.019920490682125]],[[-0.0087892320007086,0.022433072328568,0.036811407655478],[-0.026829201728106,0.0072799208573997,0.0054672416299582],[-0.029628302901983,0.091886252164841,-0.0064402315765619]],[[0.026078166440129,-0.066661149263382,-0.013902113772929],[-0.067785389721394,-0.035894736647606,-0.05037733912468],[-0.048715922981501,-0.09669653326273,-0.015913065522909]],[[0.025631513446569,0.010778846219182,0.021843872964382],[-0.04237037524581,0.007893018424511,-0.070031680166721],[-0.069869935512543,-0.077936179935932,-0.022044900804758]],[[-0.062193475663662,0.039301693439484,0.0030531561933458],[0.036486200988293,0.010948623530567,-0.025343604385853],[-0.052511312067509,0.042020246386528,-0.019903309643269]],[[0.018749378621578,0.0092348176985979,0.014536429196596],[-0.046654902398586,-0.015883419662714,0.027032054960728],[-0.011823544278741,0.022751675918698,-0.030255798250437]],[[-0.065826885402203,0.011936341412365,-0.05907067283988],[0.029146561399102,-0.027183886617422,-0.010785127058625],[0.037355657666922,-0.032518800348043,0.023653019219637]],[[-0.053431529551744,0.053184226155281,-0.014645602554083],[-0.036466300487518,0.012901943176985,-0.039269264787436],[0.00092161365319043,0.00078927882714197,-0.051535066217184]],[[-0.0076371720060706,-0.032484289258718,-0.029889658093452],[-0.011883957311511,-0.063628025352955,-0.016702210530639],[0.030536293983459,-0.0581314265728,-0.04884685203433]],[[0.04948665574193,0.036598976701498,0.042534708976746],[-0.074143931269646,-0.063054986298084,-0.067504242062569],[0.0055759055539966,-0.049598291516304,-0.011663235723972]]],[[[-0.029280718415976,-0.0037725255824625,-0.051290653645992],[0.026772510260344,-0.015635881572962,0.089305482804775],[0.019352588802576,0.14127540588379,0.063761457800865]],[[-0.097601436078548,-0.15826959908009,-0.063202992081642],[-0.082337714731693,0.013554377481341,-0.14351816475391],[-0.10717964917421,-0.074904777109623,0.0098886676132679]],[[-0.0040285256691277,0.023757988587022,-0.014875791966915],[-0.017800401896238,0.0078242784366012,-0.0028897714801133],[0.035087816417217,-0.0098931770771742,-0.0082823559641838]],[[0.017381574958563,-0.011412722058594,-0.2220021635294],[-0.001089122495614,-0.069023571908474,-0.18089798092842],[-0.052891954779625,0.012252790853381,-0.13310165703297]],[[0.067275367677212,-0.023755172267556,-0.090911790728569],[0.091307647526264,0.075810745358467,0.0067741223610938],[-0.013671902008355,-0.0037527987733483,0.067411974072456]],[[-0.015244242735207,0.10143981128931,-0.12869964540005],[0.026776276528835,0.036004245281219,-0.060747228562832],[-0.051994796842337,-0.098663091659546,0.044834740459919]],[[-0.055557418614626,0.062412396073341,0.010640610009432],[0.0071665057912469,0.0002193643595092,0.064312487840652],[-0.073637887835503,-0.083635210990906,0.01671876385808]],[[0.037482436746359,-0.024158742278814,-0.073223061859608],[-0.024544067680836,-0.05962323769927,-0.10964445024729],[-0.016253009438515,0.13065455853939,0.023334171622992]],[[-0.029511608183384,-0.017891746014357,-0.095853619277477],[-0.083202138543129,-0.073906771838665,-0.072557732462883],[-0.059215798974037,0.012865351513028,-0.11530224978924]],[[-0.059357266873121,0.023997785523534,0.0039452123455703],[0.062170248478651,0.046036675572395,-0.14035472273827],[0.038623832166195,0.0038997146766633,-0.071874648332596]],[[0.054877016693354,-0.0041127968579531,0.070179916918278],[-0.020423734560609,-0.058292962610722,-0.12793208658695],[0.18784858286381,0.093687474727631,0.091676793992519]],[[-0.07289170473814,0.03637183457613,-0.0068925055675209],[-0.12264794111252,-0.010742465034127,-0.048614833503962],[-0.019349809736013,-0.11293411254883,0.06558134406805]],[[0.074399292469025,0.022748759016395,0.062612220644951],[0.048674762248993,0.15314513444901,0.10181680321693],[0.010838996618986,0.10395754128695,0.09924978017807]],[[0.080764137208462,0.13024185597897,0.029763471335173],[-0.043257340788841,-0.025349801406264,0.081312656402588],[-0.0034022079780698,-0.0083963060751557,-0.02535917237401]],[[-0.04497205466032,-0.011461047455668,0.1188982129097],[0.016581244766712,0.055976655334234,0.11183477193117],[0.1043810993433,-0.031825583428144,-0.028990471735597]],[[0.0054349191486835,-0.037397254258394,-0.057336781173944],[-0.077841185033321,0.015280702151358,0.045592401176691],[-0.059593770653009,0.0031559998169541,-0.072246305644512]],[[-0.053396642208099,-0.014801283366978,-0.032834284007549],[0.013944812119007,0.061458606272936,-0.0025074344594032],[-0.026144819334149,-0.019767079502344,0.11654637753963]],[[0.022600894793868,0.066673927009106,0.0090502500534058],[-0.013471149839461,0.074084654450417,-0.0021799108944833],[-0.014948517084122,-0.12830020487309,-0.044600419700146]],[[-0.030971700325608,-0.0392025411129,0.052393477410078],[-0.1273345798254,0.056449774652719,0.02264004573226],[0.013509809970856,-0.043949939310551,-0.063614219427109]],[[0.077132485806942,0.005148496478796,0.063891179859638],[-0.10104030370712,-0.05728118494153,-0.030849365517497],[-0.007392589468509,-0.01094828825444,-0.014512443915009]],[[0.0056352759711444,0.086115911602974,0.085265837609768],[0.060698937624693,0.030961319804192,0.061217669397593],[0.033204685896635,0.011137268505991,0.058735974133015]],[[-0.010165986604989,-0.025777652859688,0.063877336680889],[-0.022183932363987,0.0011467697331682,-3.5278881114209e-06],[-0.11066660284996,-0.032737750560045,-0.010243192315102]],[[0.0032942527905107,0.057342946529388,0.01499820034951],[0.041609857231379,-0.026848077774048,0.014018913730979],[-0.04354128614068,0.02645256742835,-0.078771032392979]],[[0.024336595088243,-0.041376829147339,0.058180063962936],[0.079635925590992,0.027393830940127,0.11761840432882],[-0.0042606801725924,-0.037273459136486,-0.083121828734875]],[[-0.02714728936553,-0.115408167243,0.078237727284431],[-0.13532702624798,0.024816799908876,-0.10519924759865],[0.11242990940809,-0.032870054244995,-0.035496696829796]],[[0.12769997119904,0.084654346108437,-0.0043846960179508],[0.23170042037964,0.065245725214481,0.12087482213974],[0.13102267682552,0.062317226082087,0.053694043308496]],[[-0.090853504836559,-0.040260713547468,0.14550267159939],[0.017671886831522,0.15568713843822,-0.23011916875839],[-0.096887975931168,-0.21124383807182,-0.016028711572289]],[[0.090300984680653,0.098825238645077,0.086249023675919],[0.11164782941341,0.1984087228775,0.049402676522732],[-0.019484905526042,-0.077713221311569,-0.031469967216253]],[[-0.034394524991512,0.058781702071428,0.042968463152647],[-0.18518844246864,-0.0059059225022793,0.070712186396122],[0.0041891899891198,0.043205369263887,-0.0007991335587576]],[[-0.014497137628496,0.053503908216953,0.077313557267189],[0.042446363717318,-0.034218940883875,0.14634399116039],[0.019257446750998,0.03715892508626,0.08860544860363]],[[-0.010551997460425,-0.019848100841045,-0.028686603531241],[-0.00080913375131786,-0.028216101229191,-0.0049326689913869],[0.073793612420559,-0.085910730063915,-0.049614783376455]],[[0.044663075357676,0.11353664845228,0.081838615238667],[0.038733750581741,-0.12050072103739,-0.21116071939468],[0.16735291481018,-0.10298860818148,0.050914101302624]],[[0.00029493900365196,0.061801739037037,0.15455754101276],[-0.10417084395885,-0.11205830425024,0.0083208614960313],[0.18058870732784,0.10523366928101,-0.10638764500618]],[[-0.016695506870747,0.076491847634315,-0.039613381028175],[0.025492927059531,-0.016563383862376,-0.17012453079224],[-0.088356390595436,0.019196325913072,-0.018947618082166]],[[0.014655816368759,-0.078488759696484,-0.072975143790245],[0.023348309099674,-0.088703617453575,-0.017737898975611],[-0.19588778913021,0.026703655719757,-0.026785267516971]],[[0.0038981719408184,-0.037598181515932,0.024130553007126],[0.048907890915871,0.054153084754944,-0.043738935142756],[-0.064439333975315,0.029542336240411,-0.014332779683173]],[[0.012044925242662,-0.063004240393639,-0.038465850055218],[-0.049216791987419,-0.098655022680759,0.043286371976137],[0.011933879926801,0.068158321082592,-0.029261400923133]],[[0.025239519774914,0.067262880504131,-0.20353896915913],[-0.0068370271474123,-0.12702649831772,0.063417479395866],[-0.12643626332283,0.058331672102213,0.084805510938168]],[[0.026602091267705,0.082934431731701,0.040763042867184],[-0.032048586755991,0.056804113090038,-0.00055067840730771],[0.068160876631737,-0.020033769309521,-0.045207895338535]],[[-0.065458558499813,0.020795347169042,0.031437467783689],[-0.026850644499063,0.006839825771749,-0.14102154970169],[0.0049987635575235,-0.0081087648868561,-0.080822542309761]],[[-0.031686879694462,-0.023722106590867,-0.067446507513523],[0.049344152212143,0.052056044340134,-0.027857491746545],[-0.013087548315525,-0.029182652011514,-0.061934631317854]],[[-0.050285317003727,-0.0035784945357591,0.020850196480751],[0.025999559089541,0.02362902648747,0.020048059523106],[-0.040020175278187,-0.10241197794676,-0.0091257281601429]],[[-0.013223772868514,-0.0010116205085069,-0.087150722742081],[0.0056593073531985,-0.064913772046566,-0.10750755667686],[8.9721594122238e-05,-0.10297556221485,-0.00017556380771566]],[[-0.033528983592987,-0.11867629736662,-0.15473665297031],[-0.098093613982201,-0.075054652988911,-0.075383886694908],[-0.092673972249031,0.030300578102469,-0.0041707358323038]],[[0.055329699069262,0.041429653763771,0.014978553168476],[0.025105303153396,0.046480905264616,0.14891205728054],[0.059076052159071,0.090761363506317,-0.043594472110271]],[[-0.012711479328573,0.060778390616179,-0.053403321653605],[-0.0087885269895196,-0.083307005465031,-0.035164207220078],[-0.040877848863602,-0.041405737400055,-0.012641428038478]],[[-0.056476689875126,0.020832633599639,-0.12971486151218],[0.067080952227116,-0.085198096930981,0.0065935421735048],[0.088148877024651,0.038546435534954,0.065898939967155]],[[-0.040704727172852,0.0053612147457898,-0.022053178399801],[0.012347459793091,0.13978092372417,0.057354256510735],[-0.042226355522871,0.098610997200012,-0.036765165627003]],[[-0.047733154147863,-0.029479775577784,0.093004502356052],[0.057325512170792,0.046813946217299,0.20892335474491],[0.072096943855286,0.095809914171696,0.11706867069006]],[[-0.011964227072895,-0.0088800778612494,0.012343890033662],[0.0082646636292338,-0.026400258764625,0.0737564265728],[0.15785171091557,-0.0078268088400364,-0.025103775784373]],[[-0.051480080932379,0.0022527556866407,0.012414624914527],[-0.040917951613665,0.06497548520565,-0.081094115972519],[0.030726524069905,-0.21550053358078,-0.17476816475391]],[[0.044592242687941,-0.024542935192585,-0.075136855244637],[-0.052149832248688,-0.055573739111423,0.051749978214502],[0.031462144106627,-0.019937537610531,-0.088207207620144]],[[-0.048253521323204,-0.071122020483017,-0.10457199811935],[-0.26767274737358,-0.021496677771211,0.042944192886353],[0.0033027234021574,-0.013059278950095,-0.17718499898911]],[[0.10869770497084,0.11918754130602,0.029534738510847],[0.038198545575142,-0.012826276011765,0.12415006756783],[-0.026021348312497,0.12557408213615,0.2226438075304]],[[-0.07382445037365,0.11119668185711,-0.11317485570908],[0.019082330167294,0.047979325056076,-0.13972154259682],[0.048108011484146,-0.070820435881615,-0.021074235439301]],[[-0.068964652717113,-0.014656454324722,0.020905228331685],[-0.12878805398941,-0.001961306668818,-0.066784389317036],[-0.12036809325218,-0.06108221039176,0.0071950512938201]],[[0.01080784574151,0.12844730913639,0.0082844374701381],[-0.052678771317005,-0.16089916229248,0.023140346631408],[0.0063495105132461,-0.080396957695484,-0.079745717346668]],[[-0.020559888333082,-0.057505868375301,-0.011847404763103],[0.066314622759819,-0.049901869148016,-0.0072057754732668],[0.030828615650535,0.063611894845963,0.058183655142784]],[[0.0042075174860656,0.024659918621182,-0.029650149866939],[-0.035168532282114,-0.076684467494488,0.0035896133631468],[-0.041186399757862,0.014793979935348,0.040716327726841]],[[0.019846890121698,-0.017314588651061,-0.047828804701567],[-0.023039292544127,-0.031391095370054,0.035790227353573],[0.075316749513149,0.02576264180243,0.071557953953743]],[[0.089205719530582,0.041020758450031,-0.029600529000163],[-0.083935916423798,-0.098612852394581,0.055014558136463],[-0.018224261701107,-0.070620283484459,-0.10481963306665]],[[0.023573499172926,0.063470669090748,-0.082843497395515],[-0.079607151448727,0.010687228292227,-0.072225272655487],[-0.052064958959818,0.0067031881771982,-0.027457753196359]],[[0.05012359842658,-0.040575157850981,-0.057147815823555],[0.037992011755705,-0.030255068093538,-0.0021844229195267],[0.097096011042595,-0.034157309681177,-0.052036330103874]],[[0.017449410632253,0.035848621279001,-0.022719914093614],[0.035788841545582,7.5304313213564e-05,-0.08986996114254],[0.13747243583202,0.028343258425593,0.017293581739068]]],[[[0.037812013179064,-0.037681106477976,-0.025011751800776],[-0.0080173555761576,-0.014718620106578,-0.06338070333004],[0.017580827698112,-0.092728771269321,0.011023801751435]],[[-0.035734288394451,0.015302996151149,0.049155853688717],[-0.012166487984359,-0.030926847830415,-0.057522997260094],[0.00018974556587636,0.05075042322278,0.022479865700006]],[[-0.029019827023149,0.041013028472662,-0.026330137625337],[-0.018579106777906,0.064735040068626,0.035526446998119],[0.035154677927494,-0.11267709732056,0.058801181614399]],[[1.0776563613035e-05,-0.04276791587472,0.067442618310452],[-0.02795840241015,0.02640587463975,0.030192671343684],[0.068208195269108,-0.017367165535688,-0.010837218724191]],[[0.007371321786195,-0.060468520969152,0.056338485330343],[-0.042843338102102,0.06014185026288,-0.0026321238838136],[0.035938449203968,0.044545087963343,0.017705617472529]],[[0.006232223007828,0.061545763164759,-0.08471205085516],[-0.066328853368759,0.026398940011859,0.013901928439736],[-0.069511875510216,-0.064781844615936,0.0058982013724744]],[[0.011136299930513,-0.035193536430597,0.029642170295119],[-0.058807257562876,0.082709148526192,-0.002471090760082],[-0.087292112410069,-0.022171601653099,0.069916501641273]],[[0.074440374970436,-0.058247894048691,-0.0072800237685442],[0.0035140791442245,0.0013598353834823,-0.097043953835964],[-0.10266786813736,0.00088282360229641,-0.016234900802374]],[[-0.023580366745591,-0.0035537735093385,0.034441106021404],[0.0081620346754789,0.088254541158676,0.010892353951931],[0.031354408711195,-0.046546287834644,-0.032934118062258]],[[0.027520267292857,-0.024403112009168,0.0080865565687418],[0.05400413647294,0.042019806802273,-0.010944833047688],[-0.097943849861622,-0.027816075831652,-0.041405633091927]],[[-0.016162341460586,-0.022572370246053,-0.11999379843473],[0.01239840965718,-0.023133831098676,0.038109287619591],[0.073831833899021,0.0094586042687297,0.009191544726491]],[[0.023727970197797,-0.013242686167359,0.096836172044277],[-0.033772461116314,-0.02947205491364,0.038887798786163],[-0.0056841946206987,0.030878638848662,0.039799772202969]],[[-0.02115279622376,-0.017575250938535,0.016384577378631],[0.0027811489999294,-0.010002095252275,0.030187444761395],[0.039183668792248,0.084515586495399,-0.029130112379789]],[[-0.049002762883902,0.038069900125265,-0.015097411349416],[-0.0089748874306679,0.092630311846733,0.043540850281715],[0.051594588905573,0.094889990985394,-0.058212645351887]],[[-0.060981437563896,0.10787592083216,0.016631804406643],[-0.058045607060194,0.069731988012791,0.08099476993084],[-0.022934937849641,0.017017349600792,-0.07319699972868]],[[0.0074250749312341,-0.032086573541164,-0.0073406514711678],[-0.0039125559851527,-0.018767571076751,0.065908081829548],[0.082518339157104,0.02551943436265,0.080564178526402]],[[0.018893590196967,0.023787660524249,-0.0010892181890085],[-0.064456254243851,-0.013368653133512,-0.055789556354284],[0.043608218431473,-0.033538568764925,0.04273122176528]],[[-0.011332415044308,-0.080895438790321,0.0057414607144892],[0.025499785318971,0.095817729830742,-0.0028755962848663],[-0.078586429357529,0.021375894546509,0.12234201282263]],[[0.0017156678950414,-0.017880482599139,-0.010889618657529],[-0.096755713224411,0.01647200062871,0.00048507118481211],[0.021051784977317,0.0093256002292037,0.0061788600869477]],[[-0.042575418949127,-0.0034737375099212,0.052258502691984],[-0.0080983126536012,0.014407688751817,-0.010383896529675],[0.016609694808722,0.0045124422758818,0.0060751177370548]],[[0.024618558585644,0.0066258041188121,-0.06731441617012],[-0.014467135071754,-0.024950955063105,0.01009052246809],[0.072115637362003,-0.063602924346924,-0.007416220381856]],[[0.024054007604718,-0.055502582341433,0.033196706324816],[-0.020917076617479,-0.079331755638123,-0.024853749200702],[0.050458900630474,0.071476608514786,0.020401757210493]],[[-0.013680565170944,-0.013758484274149,0.046948328614235],[0.054202597588301,-0.020284676924348,0.031821507960558],[-0.068640634417534,-0.036603737622499,0.031220097094774]],[[-0.044025059789419,0.011989993043244,0.0013367595383897],[0.069532111287117,0.023938037455082,-0.030264310538769],[-0.044939253479242,-0.078541398048401,0.037568252533674]],[[0.044466458261013,0.012505213730037,0.026894133538008],[-0.0031781899742782,0.04345254227519,-0.0090241171419621],[-0.0458411462605,0.027669131755829,-0.10076072067022]],[[0.034918490797281,-0.056620843708515,0.087126396596432],[0.013766617514193,0.017223889008164,0.052587371319532],[0.03288047388196,-0.017876410856843,-0.035317283123732]],[[0.061512377113104,0.051897931843996,0.079128943383694],[0.099811278283596,0.01608039624989,0.066842868924141],[-0.073316514492035,-0.12431167066097,0.0099371057003736]],[[0.094775699079037,0.066237330436707,-0.038768481463194],[0.1217050999403,0.067736960947514,-0.10297887027264],[0.061470072716475,-0.014512004330754,-0.018129365518689]],[[-0.012873530387878,-0.0021337354555726,-0.073174342513084],[-0.065389402210712,0.075948588550091,0.0083880145102739],[0.026483142748475,0.021823637187481,-0.1090245321393]],[[0.046915989369154,-0.0077318409457803,0.013620983809233],[-0.061755307018757,-0.017605058848858,-0.0048958179540932],[0.022885009646416,0.049246054142714,-0.016997968778014]],[[-0.0046048955991864,-0.018764274194837,-0.023896872997284],[-0.01454328559339,0.00032397845643573,-0.037823028862476],[-0.084580689668655,-0.071420386433601,-0.012553891167045]],[[0.11328494548798,0.034683544188738,0.0063029988668859],[-0.00026594291557558,0.049459308385849,0.024274351075292],[-0.017722463235259,0.027652438730001,-0.048545584082603]],[[-0.055099867284298,-0.051783561706543,-0.12599831819534],[-0.014247258193791,-0.040156021714211,-0.037412285804749],[-0.053461827337742,0.0039347363635898,-0.040023941546679]],[[-0.018200701102614,0.051569450646639,0.081957370042801],[-0.032903969287872,-0.010897588916123,0.022811144590378],[-0.045431658625603,-0.030372122302651,0.013711751438677]],[[0.032774820923805,0.0064958487637341,0.13175618648529],[-0.10304234176874,-0.078667968511581,-0.016309747472405],[0.018175520002842,-0.021692289039493,-0.076994515955448]],[[-0.071385249495506,-0.048446860164404,-0.013305969536304],[-0.1001593619585,0.046195242553949,0.0046597928740084],[-0.16233071684837,-0.0019137602066621,-0.051749303936958]],[[-0.063472248613834,-0.014885171316564,0.0298808272928],[0.029528977349401,0.035460334271193,-0.037768069654703],[0.04178811237216,0.003405645955354,0.026669766753912]],[[-0.0021772184409201,-0.054568242281675,-0.016573900356889],[0.0031233071349561,0.10864374041557,-0.015580794773996],[0.063757829368114,0.047434341162443,-0.013906192034483]],[[0.045757755637169,0.045012570917606,0.010788261890411],[-0.00064038997516036,0.031399317085743,-0.0070105069316924],[0.014596200548112,-0.052076894789934,0.051610425114632]],[[0.040593389421701,-0.04288037866354,-0.082769215106964],[0.06305342912674,-0.0079951509833336,0.050669711083174],[0.023766329512,-0.033353291451931,0.0062789246439934]],[[0.020174223929644,-0.0072702602483332,0.029170302674174],[-0.028614800423384,0.03059745579958,0.058980572968721],[-0.019653040915728,0.027296496555209,0.012571060098708]],[[-0.082823939621449,-0.070078827440739,-0.070679642260075],[-0.05688251554966,-0.041928615421057,-0.0421386025846],[0.067994028329849,0.067179128527641,0.032485011965036]],[[0.090037979185581,0.064537271857262,-0.06222190707922],[-0.028297448530793,-0.057006549090147,0.0049061649478972],[-0.028766945004463,-0.054916054010391,0.074324913322926]],[[-0.046550545841455,0.014413218013942,0.069991394877434],[-0.062042627483606,-0.035210408270359,0.013024848885834],[0.00010179381206399,0.032062623649836,0.019244074821472]],[[-0.081987492740154,0.048793718218803,0.019748633727431],[0.08906402438879,-0.022561881691217,-0.12463364750147],[-0.058247640728951,0.050416879355907,-0.096754975616932]],[[0.022967014461756,0.015278669074178,-0.031396936625242],[0.041206762194633,0.048109412193298,0.061296593397856],[0.021215390414,0.019349660724401,-0.0056939674541354]],[[-0.015771847218275,-0.024489695206285,0.053900886327028],[-0.026218168437481,-0.055081095546484,-0.0076237204484642],[0.019197287037969,0.048968587070704,-0.058374579995871]],[[-0.077672198414803,-0.033412262797356,-0.0492003262043],[-0.04128435626626,-0.058982934802771,-0.050180077552795],[-0.045605923980474,-0.014271025545895,0.02359364554286]],[[0.0014307234669104,-0.047398179769516,-0.030178461223841],[0.0082396455109119,-0.036479100584984,0.086233422160149],[-0.053311482071877,0.065424524247646,0.035630699247122]],[[-0.06691287457943,0.022581327706575,0.060452084988356],[0.062472715973854,0.043562725186348,-0.01690018363297],[-0.024315180256963,0.017598366364837,-0.0026952272746712]],[[-0.0099638951942325,-0.0071636000648141,-0.038690853863955],[0.022816410288215,0.043936651200056,-0.072748422622681],[-0.020590333268046,0.054473549127579,0.020362436771393]],[[0.016611998900771,-0.014549922198057,-0.075323522090912],[-0.11516631394625,-0.073655821382999,-0.058797668665648],[0.0086032785475254,-0.011039342731237,0.020213047042489]],[[0.017292151227593,-0.024546245113015,-0.028992757201195],[-0.067526169121265,0.01662215963006,0.020279953256249],[0.024711567908525,-0.0044685150496662,-0.04581493139267]],[[0.090365707874298,0.037102039903402,0.10797223448753],[0.099231667816639,-0.02169438265264,0.05027836561203],[0.095225550234318,-0.020913092419505,-0.0048683332279325]],[[-0.074899926781654,-0.062970891594887,-0.033476937562227],[0.028275003656745,-0.076347038149834,0.022745730355382],[-0.065849840641022,-0.00011685169738485,-0.035811234265566]],[[-0.028936481103301,-0.055054415017366,0.020133271813393],[-0.024053126573563,-0.012549318373203,-0.022109622135758],[0.010394503362477,0.058052934706211,-0.011698937043548]],[[-0.042506791651249,-0.0014951064949855,0.040643662214279],[0.056658159941435,0.1188040599227,0.076033763587475],[0.016779636964202,-0.066977761685848,0.014228503219783]],[[0.0085860146209598,0.012903737835586,-0.014823036268353],[-0.025188498198986,-0.017237449064851,-0.038072843104601],[0.020997004583478,0.057245884090662,-0.063073635101318]],[[0.081669025123119,0.027261190116405,-0.024004023522139],[-0.0094573246315122,-0.033411119133234,-0.0047076097689569],[0.03321298211813,-0.016965091228485,0.012409148737788]],[[0.015104438178241,0.0006438500713557,0.0032141907140613],[0.044765837490559,0.030619399622083,-0.070174671709538],[0.0069059948436916,0.049594733864069,-0.023305017501116]],[[-0.047871507704258,-0.073774993419647,-0.071015872061253],[-0.061624277383089,0.030710712075233,-0.044220056384802],[-0.0056095854379237,0.0013553113676608,-0.019502379000187]],[[-0.013593674637377,-0.025469787418842,-0.01356232073158],[0.023615496233106,0.0010689259506762,-0.029892332851887],[-0.0087123671546578,-0.022284399718046,-0.020181816071272]],[[-0.070551306009293,-0.02949196845293,-0.039495475590229],[-0.0018560320604593,-0.0082408171147108,-0.056951306760311],[0.043325550854206,-0.039663419127464,0.10653010755777]],[[0.025187376886606,-0.0089322635903955,-0.0081490529701114],[0.0096983714029193,0.041115391999483,0.004418243188411],[0.017028601840138,-0.010938992723823,0.068585798144341]]],[[[0.047049663960934,0.029849156737328,0.029983304440975],[0.038316063582897,0.006273876875639,0.14091293513775],[-0.052713628858328,0.01541664917022,-0.1016293540597]],[[-0.0043835290707648,0.10306998342276,0.048161379992962],[0.051748599857092,-0.025691956281662,-0.031575132161379],[0.045172959566116,0.038617826998234,0.046975366771221]],[[0.064752712845802,-0.034047231078148,-0.037138387560844],[0.0063569257035851,-0.12346360832453,-0.0024756849743426],[0.050324864685535,-0.011022914201021,0.005312561057508]],[[0.011074178852141,0.067914701998234,0.065641470253468],[0.0011845185654238,-0.066629707813263,-0.078748375177383],[0.028097094967961,-0.01253404840827,0.051116399466991]],[[-0.086010217666626,-0.077661260962486,0.030319906771183],[0.03609511628747,-0.057395756244659,0.037585474550724],[0.031975116580725,0.058334901928902,0.017343480139971]],[[0.071424081921577,-0.068974398076534,0.031623683869839],[-0.029444085434079,-0.022984655573964,0.072962053120136],[0.063995383679867,-0.081733278930187,0.0012240711366758]],[[-0.010499157011509,-0.023587116971612,0.0072536445222795],[0.024980472400784,0.017789278179407,0.083111919462681],[0.011561274528503,0.017283601686358,-0.049817208200693]],[[-0.017219001427293,-0.02774222753942,-0.0045817182399333],[-0.013404785655439,0.069236062467098,0.064776554703712],[-0.042333785444498,0.01230984646827,0.015764452517033]],[[-0.076766230165958,-0.013338567689061,-0.0043757585808635],[-0.015021529980004,0.087700754404068,0.0096874469891191],[-0.032566990703344,-0.15537191927433,0.015388044528663]],[[-0.033609606325626,-0.034621093422174,-0.11228903383017],[-0.014806535094976,0.098404608666897,0.051394917070866],[0.034877311438322,-0.099564373493195,-0.024403870105743]],[[-0.097446143627167,-0.080505892634392,0.044352184981108],[0.046733677387238,-0.09014817327261,-0.10953843593597],[0.12669393420219,-0.036139436066151,0.060132026672363]],[[0.040862955152988,0.014232096262276,0.0037554767914116],[0.03754348307848,0.024815378710628,0.086596198379993],[0.03451282158494,0.059140041470528,-0.0048640253953636]],[[0.011381748132408,-0.11716862022877,-0.033815942704678],[-0.038275439292192,-0.020441865548491,0.10271526128054],[0.030902270227671,-0.077003680169582,-0.020766967907548]],[[0.043266143649817,-0.044031627476215,-0.070004247128963],[0.036274123936892,0.077785193920135,-0.079282313585281],[0.054572228342295,0.1985307186842,-0.078876286745071]],[[0.082103133201599,0.039987932890654,-0.084055364131927],[0.029104040935636,0.087263777852058,0.0027739831712097],[-0.043248232454062,-0.0049147480167449,0.19316540658474]],[[0.0089274346828461,-0.05048006772995,-0.11036594212055],[0.038135223090649,0.080770805478096,0.0095002083107829],[-0.061549998819828,0.090655647218227,-0.012931848876178]],[[-0.024396585300565,0.05301670730114,0.030993914231658],[-0.037433549761772,0.034863505512476,-0.18704836070538],[-0.021908445283771,-0.007033237721771,0.023019613698125]],[[-0.068110518157482,-0.022793626412749,0.06842203438282],[0.010447130538523,-0.023957813158631,0.068655870854855],[-0.035881768912077,-0.059531044214964,-0.009722582064569]],[[-0.0086826579645276,0.015426535159349,0.048512455075979],[0.05134017765522,-0.078312568366528,-0.10748291015625],[-0.031433831900358,0.018751000985503,0.055063828825951]],[[-0.050344251096249,-0.069629698991776,-0.030089629814029],[0.050210054963827,0.049259070307016,-0.02591572701931],[-0.0034747663885355,0.037014808505774,-0.059014473110437]],[[-0.077374912798405,0.10020949691534,-0.038924477994442],[-0.018160995095968,0.040482711046934,0.0024436681997031],[-0.046701211482286,-0.021404977887869,-0.069576278328896]],[[-0.015002716332674,0.01150306686759,-0.0091523751616478],[0.017071276903152,-0.068884246051311,-0.074626632034779],[0.010504370555282,0.010785433463752,-0.0040931976400316]],[[0.017858954146504,-0.031057363376021,-0.093287363648415],[0.013636932708323,0.067627549171448,0.035239685326815],[-0.041528169065714,-0.016450218856335,0.045976717025042]],[[0.012832281179726,0.0018636671593413,0.027304084971547],[0.0013876059092581,-0.029819572344422,-0.056244071573019],[0.0092340689152479,-0.18081967532635,0.041650369763374]],[[0.023421674966812,0.040456876158714,0.038707975298166],[-0.08025861531496,-0.043587394058704,0.00020083607523702],[0.071283340454102,-0.069999270141125,-0.058429591357708]],[[-0.039796818047762,-0.019144050776958,0.0099774412810802],[0.0086835538968444,-0.020257690921426,-0.00899104680866],[0.0052816276438534,-0.041144818067551,-0.047630365937948]],[[-0.029228052124381,0.0035708586219698,-0.0069927731528878],[0.016122419387102,0.067455269396305,-0.0046038301661611],[0.031291339546442,0.064429119229317,0.087753504514694]],[[-0.071437679231167,0.045286640524864,-0.061572600156069],[0.00066650635562837,-0.10995708405972,-0.00071819493314251],[0.028293009847403,0.039108157157898,0.019462740048766]],[[0.00020491775649134,-0.0064854267984629,0.013893000781536],[-0.081555724143982,0.047318957746029,-0.066806368529797],[0.0092663299292326,-0.065751649439335,0.011067949235439]],[[-0.085724949836731,0.044097132980824,0.015478548593819],[0.013180191628635,0.11455196887255,-0.004230618942529],[-0.022396301850677,0.0087699880823493,-0.065209276974201]],[[-0.0217528603971,0.036770846694708,0.034870631992817],[-0.011605031788349,-0.037948917597532,-0.090253189206123],[-0.046305265277624,-0.047395519912243,0.069251582026482]],[[-0.038765333592892,-0.069969065487385,-0.08244701474905],[0.10881016403437,0.021890705451369,0.20813463628292],[0.05387107655406,-0.12537425756454,-0.059820685535669]],[[-0.099993266165257,-0.21379899978638,-0.23842114210129],[0.17279474437237,-0.095607101917267,0.046912785619497],[0.036598153412342,0.017315918579698,0.015201640315354]],[[0.046695381402969,-0.0079583125188947,0.12515610456467],[0.043968580663204,0.065743058919907,0.12250905483961],[-0.056572027504444,-0.11023074388504,0.014076493680477]],[[-0.026950690895319,0.054268181324005,0.075378097593784],[0.043236471712589,0.086458131670952,-0.0037393202073872],[-0.061395633965731,-0.057809099555016,-0.0036805220879614]],[[0.025236649438739,-0.048108197748661,0.018069909885526],[-0.023063426837325,0.05473293364048,0.084744416177273],[-0.036251869052649,0.0017721434123814,0.013481707312167]],[[-0.084223628044128,0.0040100808255374,-0.055977709591389],[0.061171725392342,-0.0098746903240681,-0.010501689277589],[0.069419451057911,-0.093441635370255,0.0099711287766695]],[[0.070923030376434,0.0180833209306,-0.039543699473143],[0.093137867748737,0.20138853788376,0.031833000481129],[-0.20388016104698,-0.1389295309782,-0.083767004311085]],[[0.09447968006134,-0.092123962938786,0.11936140805483],[0.0064093079417944,-0.077543750405312,-0.011049072258174],[0.0052854977548122,-0.0012865862809122,0.011534968391061]],[[0.047194674611092,-0.014588315971196,-0.093649491667747],[0.0049575041048229,-0.024393392726779,-0.030827453359962],[0.01674940623343,-0.030096609145403,0.079161733388901]],[[-0.034241419285536,-0.11813429743052,0.033580746501684],[0.085111312568188,0.045051198452711,-0.056304212659597],[0.012707931920886,0.047058820724487,0.02163552492857]],[[0.083313517272472,0.079125136137009,0.13741448521614],[-0.10178737342358,-0.10866693407297,0.058056946843863],[0.08188534528017,0.00014316363376565,0.066604778170586]],[[0.0047060893848538,0.11856745183468,0.0029887419659644],[-0.00080613547470421,0.0013159983791411,0.022137146443129],[-0.00062612228794023,-0.074012406170368,0.023008765652776]],[[-0.014164946973324,-0.069917149841785,-0.086201384663582],[0.0079098790884018,-0.038648072630167,-0.048470936715603],[0.031090419739485,0.018083062022924,-0.049092963337898]],[[-0.0019296344835311,0.024556851014495,0.11603557318449],[-0.058353591710329,-0.015377298928797,-4.3339750845917e-05],[0.0044911997392774,-0.0061787399463356,0.0031290291808546]],[[0.0071378764696419,0.043001852929592,-0.058399863541126],[-0.21390236914158,0.0036850236356258,-0.13435365259647],[0.10376933217049,0.073733881115913,0.11873523890972]],[[0.021312540397048,0.035803079605103,0.086626149713993],[-0.0055872402153909,0.046848498284817,-0.13813962042332],[0.058812696486712,0.024758495390415,-0.036529690027237]],[[0.016740782186389,0.028935179114342,-0.042743571102619],[0.0027285034302622,0.12993296980858,0.039023540914059],[-0.029257221147418,-0.012131092138588,0.024515841156244]],[[-0.012601315043867,-0.02212998829782,-0.025402519851923],[0.019506489858031,0.049418289214373,0.046906940639019],[-0.066432267427444,-0.0073724556714296,0.011286281980574]],[[-0.067520506680012,0.023499211296439,-0.11622916907072],[0.03066230751574,-0.1023216471076,0.052138887345791],[-0.053970750421286,-0.038049552589655,0.099078699946404]],[[0.06947273015976,0.040147326886654,-0.00026380355120637],[0.064140282571316,-0.38944980502129,-0.025245340541005],[0.012174710631371,0.10006166994572,0.01236635632813]],[[0.020881121978164,0.023168291896582,0.034211240708828],[-0.13357616961002,-0.077834814786911,0.048219706863165],[0.046862412244081,-0.034313958138227,-0.023033827543259]],[[0.031657807528973,-0.057554617524147,0.073259003460407],[-0.067641027271748,0.13177381455898,0.07065162062645],[-0.067070692777634,-0.11825750768185,0.013325789012015]],[[0.064686305820942,0.14312621951103,0.012933175079525],[0.0068648550659418,-0.035865746438503,0.1212559491396],[0.12297072261572,0.031676482409239,0.040272910147905]],[[0.028108708560467,-0.022678619250655,0.00050194305367768],[-0.044704705476761,-0.045494124293327,0.032938040792942],[0.024918016046286,0.015534419566393,-0.032145097851753]],[[0.038257274776697,0.0066518057137728,0.0035038748756051],[-0.018819592893124,-0.0046207560226321,-0.025756623595953],[-0.013522235676646,0.0022148594725877,-0.022906271740794]],[[-0.10721869021654,-0.064489297568798,0.029151620343328],[-0.046951852738857,0.0040746545419097,0.0079158861190081],[0.053824841976166,0.085624322295189,0.0075770975090563]],[[-0.0069929724559188,0.0057200961746275,0.027905633673072],[0.0014582820003852,0.067932114005089,0.0068956748582423],[-0.032437942922115,-0.05937185883522,-0.20815296471119]],[[0.049920629709959,-0.019139848649502,0.043915551155806],[0.021299291402102,0.066721566021442,-0.00046065243077464],[-0.021520653739572,-0.11792388558388,0.040723964571953]],[[0.0030521089211106,0.084608599543571,0.023346334695816],[0.01809786260128,-0.091196075081825,-0.029187984764576],[0.028355175629258,0.033665515482426,-0.021271608769894]],[[-0.080635488033295,-0.069104678928852,0.0373839661479],[0.049965523183346,0.1047190502286,-0.056443646550179],[-0.049486618489027,0.00029579480178654,-0.027949761599302]],[[-0.012215454131365,0.0061641735956073,-0.071467861533165],[-0.047065336257219,-0.068867385387421,0.10686472803354],[0.011392864398658,-0.040102977305651,-0.0500746704638]],[[0.0069396626204252,0.094779960811138,-0.067133031785488],[0.020295327529311,-0.16253036260605,-0.011221432127059],[0.067767962813377,0.11963523924351,-0.10446287691593]],[[0.038286667317152,-0.035408925265074,0.088342167437077],[-0.048746559768915,0.061229296028614,0.10523004829884],[-0.05502513423562,-0.054080873727798,0.061939850449562]]],[[[0.044062159955502,0.04405927285552,0.002877437742427],[0.10025487840176,-0.11396800726652,-0.25693202018738],[-0.019355598837137,-0.016217669472098,-0.0051738168112934]],[[0.074908934533596,0.084019601345062,0.038506325334311],[0.10596402734518,0.014464089646935,0.064219146966934],[0.10304614901543,-6.5371772507206e-05,0.054351266473532]],[[-0.015852501615882,0.081931985914707,0.018519598990679],[-0.047765247523785,-0.10718052834272,-0.0015637445030734],[-0.01173597946763,-0.07885967195034,-0.033283278346062]],[[0.0054258308373392,-0.12694379687309,0.06775139272213],[0.25456628203392,0.068723082542419,-0.054983668029308],[-0.01970705203712,0.13555769622326,-0.14624238014221]],[[0.00018011692736764,0.010095969773829,-0.026896113529801],[0.046972516924143,0.041914597153664,0.031813107430935],[0.015175518579781,-0.004152609501034,-0.019944231957197]],[[0.0012908776989207,0.063783541321754,0.0084770731627941],[-0.10428509116173,-0.071063548326492,-0.052855879068375],[-0.0078401006758213,-0.030130384489894,0.030909933149815]],[[0.011158534325659,-0.044708788394928,0.048487596213818],[-0.090621024370193,-0.041832260787487,-0.0016169605078176],[0.0047600278630853,-0.003897609654814,0.0091537069529295]],[[0.0025847072247416,-0.00019135259208269,-0.011923079378903],[-0.056038249284029,-0.023501414805651,-0.12595909833908],[-0.0098258350044489,0.009632209315896,-0.071706965565681]],[[0.035239391028881,0.0040892530232668,-0.06759712100029],[0.084270358085632,-0.028739437460899,-0.01043064147234],[-0.017640020698309,-0.012983809225261,-0.031746432185173]],[[0.042170811444521,0.09270828962326,0.0058351424522698],[0.043276060372591,-0.00073952239472419,0.038731064647436],[0.010725042782724,0.058456741273403,0.074606187641621]],[[0.080855064094067,0.016518807038665,-0.036478396505117],[-0.027668699622154,0.027913179248571,-0.11749498546124],[-0.082788661122322,-0.020317122340202,-0.031385291367769]],[[-0.096946477890015,-0.0024950178340077,-0.038038123399019],[-0.029758706688881,-0.098343499004841,-0.014849786646664],[-0.086350597441196,-0.12959024310112,-0.044416327029467]],[[0.0072264382615685,0.062679745256901,-0.0059474217705429],[0.083957828581333,0.02277809381485,-0.082345232367516],[0.031023196876049,-0.19957196712494,-0.043325778096914]],[[-0.10149869322777,0.067811913788319,-0.093659721314907],[0.12413519620895,0.03216191008687,-0.004740625154227],[0.080646932125092,-0.11803872138262,0.041351959109306]],[[-0.10118996351957,-0.060151223093271,-0.071164824068546],[0.019114265218377,-0.15721450746059,-0.0068710409104824],[0.072250477969646,-0.03754410520196,-0.014516785740852]],[[-0.0039620539173484,-0.0070528769865632,-0.0007284416933544],[-0.037699915468693,0.091957494616508,0.04350071400404],[0.037216112017632,0.064572639763355,0.047301985323429]],[[0.0030758548527956,0.02118731290102,0.045829776674509],[0.035828109830618,0.066414043307304,-0.099529512226582],[-0.048891071230173,0.032527931034565,0.09182546287775]],[[-0.11017265170813,-0.11146942526102,-0.073286607861519],[-0.045596960932016,0.16970105469227,-0.14746282994747],[-0.043143704533577,-0.12451535463333,-0.28692311048508]],[[-0.014597301371396,-0.055095765739679,0.036521673202515],[0.019107235595584,-0.044985789805651,-0.020305059850216],[0.0057651759125292,0.057259377092123,0.020967880263925]],[[-0.035001568496227,-0.081229783594608,0.10220094770193],[0.03838149830699,-0.03873723000288,-0.076340578496456],[0.077340550720692,-0.035806056112051,-0.026652544736862]],[[0.10505883395672,-0.017657132819295,0.18112200498581],[0.055210813879967,0.19925405085087,0.22065635025501],[0.03706444054842,0.1769872456789,-0.1174301058054]],[[-0.063714414834976,0.0149159822613,0.077733181416988],[-0.074582912027836,-0.059701986610889,0.020934578031301],[0.028316805139184,-0.0034688741434366,0.0054003861732781]],[[-0.003981314599514,0.022918833419681,0.015885701403022],[0.031424153596163,0.038277514278889,-0.034019704908133],[0.024703996255994,-0.040001280605793,-0.048540323972702]],[[-0.01140019390732,0.0093317413702607,-0.03056868724525],[-0.036515515297651,0.021399773657322,-0.092865854501724],[-0.011951711960137,-0.023152366280556,0.13280688226223]],[[-0.069022111594677,0.038984216749668,-0.018316576257348],[-0.081461802124977,-0.095359243452549,0.0140938796103],[0.03810590878129,-0.015171228908002,-0.091580592095852]],[[-0.073724128305912,-0.072002395987511,-0.067698404192924],[-0.080601990222931,-0.08067848533392,-0.12481731176376],[-0.079703167080879,-0.019565772265196,-0.088348910212517]],[[-0.022471351549029,-0.12806226313114,-0.080677278339863],[0.058113504201174,-0.10565131157637,-0.082408107817173],[0.023052224889398,-0.17727275192738,-0.11533612012863]],[[0.025388272479177,-0.040390111505985,-0.11913182586432],[0.017121132463217,0.078991807997227,0.039542995393276],[0.022699663415551,0.12121521681547,0.036035422235727]],[[-0.071037165820599,-0.021438712254167,-0.0049345488660038],[-0.015590022318065,-0.015139205381274,-0.043018244206905],[-0.01622735708952,-0.13059760630131,0.027062796056271]],[[-0.093696683645248,0.009664642624557,-0.045391727238894],[-0.17708110809326,0.043159354478121,-0.058920294046402],[-0.056292816996574,-0.15003676712513,-0.16763015091419]],[[0.019275587052107,-0.022784488275647,0.046380866318941],[-0.023226762190461,-0.016068516299129,0.089917860925198],[0.03176075220108,0.051989153027534,0.030659813433886]],[[0.0004270400677342,-0.092105031013489,-0.026374230161309],[-0.00049528683302924,0.042292837053537,0.025649938732386],[-0.0015829775948077,-0.073150739073753,-0.077286168932915]],[[-0.11183966696262,-0.0012677920749411,0.096719644963741],[0.11373625695705,-0.093536861240864,0.052065942436457],[-0.077485918998718,-0.061793722212315,-0.16117022931576]],[[-0.086338229477406,-0.077783353626728,0.048669293522835],[-0.080536067485809,0.10374281555414,-0.036605354398489],[0.093049719929695,-0.0066302428022027,-0.008089211769402]],[[0.10345617681742,0.0029241668526083,-0.087141901254654],[0.081767879426479,0.048645533621311,-0.0079262536019087],[0.040629547089338,0.087195865809917,0.048007972538471]],[[-0.081408441066742,-0.082239605486393,0.015318648889661],[0.010129537433386,-0.07051682472229,0.0017328994581476],[0.002416864503175,-0.067252442240715,-0.081917725503445]],[[0.046606417745352,0.025154873728752,-0.070149779319763],[-0.055752508342266,0.027933072298765,0.0025742657016963],[-0.11027436703444,-0.066836930811405,0.093095116317272]],[[-0.13108713924885,0.010065284557641,-0.018804505467415],[-0.10890719294548,-0.033525217324495,0.030723448842764],[-0.0052995611913502,-0.11865103244781,-0.06550107896328]],[[0.034319810569286,0.072408124804497,0.048657272011042],[-0.048193898051977,0.018045771867037,0.025058623403311],[-0.049352511763573,0.039585292339325,0.13023135066032]],[[-0.018001599237323,0.011859009973705,0.042325597256422],[-0.0055937999859452,-0.0027382159605622,0.052101332694292],[-0.0012330869212747,-0.02009511180222,0.051184959709644]],[[-0.14192736148834,-0.050827823579311,0.00414929818362],[0.00064115005079657,0.012259124778211,-0.039449494332075],[-0.13119779527187,-0.018019700422883,-0.023574367165565]],[[0.060445465147495,0.061779696494341,-0.048197098076344],[-0.049187637865543,-0.035112120211124,0.0096679162234068],[0.019389171153307,-0.051183637231588,-0.048674896359444]],[[0.076361164450645,0.021875459700823,-0.0048893028870225],[0.014175239950418,0.0013968977145851,-0.097118809819221],[-0.02519871853292,-0.034127302467823,-0.036569207906723]],[[0.084262564778328,-0.12212347239256,-0.079038374125957],[0.028768759220839,0.18832261860371,0.17931759357452],[0.010307574644685,-0.048279494047165,0.19612228870392]],[[0.0090778535231948,0.012086918577552,0.0051077990792692],[0.053401842713356,0.029505984857678,-0.096613258123398],[0.089421547949314,0.084208719432354,-0.12942346930504]],[[-0.036401383578777,0.034739516675472,0.032256692647934],[0.044584956020117,-0.031244652345777,-0.0039573502726853],[-0.025863727554679,-0.0084290830418468,-0.034894585609436]],[[-0.14093735814095,-0.072310209274292,0.051832273602486],[-0.00069828983396292,0.015036994591355,0.013211011886597],[0.0025845426134765,-0.0064946310594678,0.071885637938976]],[[0.095911853015423,-0.000634512049146,0.045214831829071],[0.081134788691998,-0.013528947718441,-0.070282451808453],[0.061148971319199,0.038132905960083,0.039271201938391]],[[0.023297935724258,-0.088875114917755,-0.034843925386667],[-0.1048676148057,-0.042634777724743,-0.13784964382648],[-0.10542234033346,-0.10957482457161,-0.027969013899565]],[[-0.034076001495123,0.048553675413132,-0.010172815993428],[0.028134118765593,0.025380700826645,-0.13012650609016],[0.015234287828207,-0.0027116273995489,-0.086554072797298]],[[-0.10358439385891,0.038053192198277,0.010647451505065],[-0.022367822006345,0.069439597427845,0.041262499988079],[-0.079434372484684,0.10147021710873,0.033609952777624]],[[0.08710877597332,-0.0013914115261286,0.04392584040761],[-0.015712417662144,-0.11726573109627,0.020106827840209],[0.016898483037949,-0.01775455288589,0.091287024319172]],[[-0.03657153993845,0.059375539422035,-0.0099104307591915],[-0.041263435035944,-0.0075301271863282,-0.030330447480083],[0.082965716719627,-0.021015577018261,0.072391398251057]],[[0.1207262724638,0.055994618684053,0.0017648967914283],[0.068953782320023,0.045654516667128,0.060476090759039],[-0.050932768732309,0.15091782808304,0.085869058966637]],[[0.022599572315812,-0.0053973156027496,0.0047390223480761],[0.066891849040985,0.092128865420818,-0.050074156373739],[-0.12886647880077,-0.071095623075962,-0.037443026900291]],[[0.037713009864092,-0.050148736685514,0.049482386559248],[0.051755871623755,-0.034965321421623,0.038525883108377],[-0.011897346004844,-0.0099400114268064,0.0093114404007792]],[[0.070749714970589,0.1235811188817,0.037621591240168],[-0.03598491102457,0.01720909960568,-0.019412519410253],[-0.021657405421138,0.01035019941628,-0.041477046906948]],[[-0.21134071052074,-0.0095176827162504,0.014091193675995],[-0.12703405320644,-0.1985976099968,-0.016202583909035],[-0.029564935714006,-0.066201701760292,-0.14379946887493]],[[-0.18115964531898,-0.020623141899705,-0.093541190028191],[0.0090028624981642,0.071844205260277,-0.029314758256078],[-0.042588770389557,-0.041854277253151,-0.087825126945972]],[[0.024000348523259,-0.059648014605045,0.0069098714739084],[-0.0028035321738571,-0.0093715842813253,0.023391770198941],[0.021360149607062,-0.007033163215965,0.05059277638793]],[[0.11893125623465,0.051936164498329,-0.013802136294544],[-0.019062073901296,0.012877459637821,-0.00022850219102111],[0.041776426136494,-0.14646588265896,-0.12415542453527]],[[0.045634567737579,0.029358167201281,0.012564639560878],[-0.052613344043493,-0.055039495229721,0.0006997148739174],[0.026623791083694,-0.0071909790858626,0.11228834092617]],[[-0.053012277930975,-0.0051839840598404,0.040982846170664],[0.056789845228195,-0.096833914518356,-0.0462203361094],[-0.027589291334152,-0.012676781974733,0.016882007941604]],[[-0.12521460652351,0.0089885434135795,-0.043664038181305],[0.028963698074222,-0.0076630292460322,0.067177757620811],[0.0071424758061767,-0.043506927788258,0.0015127793885767]]],[[[-0.10242794454098,0.0067734224721789,-0.04529282823205],[0.073914460837841,0.065961197018623,-0.047427974641323],[0.025938240811229,0.10947922617197,0.0126869129017]],[[0.032705835998058,0.013987150043249,-0.014328900724649],[-0.051613874733448,-0.046625573188066,-0.025194441899657],[-0.032702714204788,-0.01167444139719,-0.070465721189976]],[[-0.020605051890016,0.045791011303663,-0.08090515434742],[-0.01746454462409,0.04675729572773,-0.049967586994171],[0.033021792769432,-0.0048794229514897,0.0074034039862454]],[[-0.026237716898322,-0.053084950894117,0.006059561856091],[0.039262764155865,-0.067851908504963,0.006522158626467],[0.0029281778261065,0.017684027552605,0.031660348176956]],[[0.069300100207329,0.084391690790653,0.043909173458815],[0.011803600005805,0.017530830577016,-0.044937904924154],[-0.030685286968946,-0.018497131764889,0.050019647926092]],[[-0.0020379435736686,0.042756278067827,0.054968874901533],[-0.047795686870813,-0.06354895234108,-0.010384144261479],[0.037656381726265,-0.026721578091383,0.037042789161205]],[[-0.011441553011537,-0.01243676058948,0.0042820917442441],[-0.046599056571722,-0.039234064519405,0.016987254843116],[-0.068428434431553,-0.046021118760109,-0.058084428310394]],[[0.024077212437987,-0.11417789757252,0.026006173342466],[0.047612685710192,0.023804200813174,0.079905912280083],[0.024643694981933,-0.034850504249334,-0.0010936169419438]],[[-0.017416078597307,-0.0056446865200996,-0.10939558595419],[0.06511290371418,-0.022532671689987,-0.034306116402149],[-0.022370979189873,0.034369979053736,0.023669132962823]],[[-0.058703925460577,0.034023344516754,-0.035145986825228],[0.0010603300761431,-0.10190938413143,0.039506256580353],[-0.028142642229795,0.044032447040081,0.02895656041801]],[[-0.031611442565918,-0.010846342891455,0.063105948269367],[-0.072428874671459,0.017154665663838,0.0041882223449647],[-0.07527793943882,-0.017983889207244,-0.027677034959197]],[[-0.022933991625905,-0.0038984771817923,-0.019984049722552],[-0.0039286343380809,-0.037592157721519,-0.026525240391493],[-0.051233302801847,-0.065376959741116,-0.044804655015469]],[[0.0026076284702867,-0.030793029814959,0.0026765696238726],[0.035118702799082,-0.015559563413262,0.0047657294198871],[0.0088838711380959,-0.022857965901494,0.019085418432951]],[[0.10279836505651,0.096476398408413,-0.061404287815094],[0.052736856043339,0.020330980420113,0.072905011475086],[0.0057207187637687,0.079484477639198,0.051714424043894]],[[0.030201815068722,0.021577451378107,0.0023866891860962],[0.053930461406708,-0.046895831823349,0.027314936742187],[0.064596943557262,0.031577654182911,-0.10363829880953]],[[-0.01369000878185,-0.018721895292401,-0.0034508877433836],[0.0010024232324213,-0.02125907689333,0.070019491016865],[0.038372572511435,-0.067867107689381,0.034808043390512]],[[-0.019887749105692,-0.028016578406096,0.018948797136545],[-0.10862427204847,0.060875482857227,0.034962866455317],[0.010266416706145,0.051201485097408,0.061994787305593]],[[0.012053397484124,0.0012279156362638,0.006017021369189],[-0.010722889564931,-0.027998069301248,-0.0050960583612323],[-0.020855290815234,0.010886082425714,-0.0094818705692887]],[[0.013694736175239,-0.0028935738373548,-0.017301646992564],[-0.035975210368633,-0.044416423887014,0.019667061045766],[0.0082810474559665,-0.015285903587937,0.023158011958003]],[[0.046915590763092,0.0022818553261459,-2.2104555682745e-05],[-0.050661396235228,-0.088392727077007,-0.037222281098366],[-0.018720405176282,-0.012240598909557,0.044807218015194]],[[0.016910428181291,0.062325771898031,-0.0037117360625416],[-0.01356232073158,0.023636307567358,-0.00094181072199717],[0.057845443487167,0.092394270002842,0.072977997362614]],[[-0.022856140509248,-0.012360163033009,-0.069401495158672],[-0.031562831252813,0.081197537481785,-0.0048932889476418],[0.020237935706973,-0.014693479984999,0.0018763496773317]],[[0.037569724023342,0.01693456992507,-0.0025910043623298],[0.038660932332277,-0.008262986317277,0.018513968214393],[-0.026825791224837,-0.033822856843472,-0.039226021617651]],[[-0.011033404618502,0.0050072385929525,-0.021394841372967],[0.039535235613585,0.020994884893298,-0.042915675789118],[-0.04737439006567,-0.0027876945678145,-0.019830202683806]],[[-0.039617769420147,0.008971662260592,0.0044067134149373],[-0.060673795640469,-0.0051563545130193,0.048193030059338],[-0.023371189832687,-0.015915986150503,0.078746549785137]],[[-0.035921789705753,-0.018244862556458,0.029736252501607],[0.0580421872437,-0.09604624658823,0.0093632470816374],[0.025987688452005,0.0086169131100178,0.0025454817805439]],[[0.034625556319952,-0.030231295153499,-0.011213093064725],[-0.074306227266788,0.063176117837429,-0.012576368637383],[-0.066833913326263,-0.057395685464144,-0.0078088589943945]],[[-0.033375803381205,-0.01492334343493,-0.025720143690705],[0.024732988327742,0.062601715326309,-0.097360484302044],[-0.010556701570749,-0.079333864152431,-0.033262625336647]],[[-0.0033188057132065,0.018600754439831,-0.009058615192771],[-0.022625260055065,-0.053751364350319,0.026926927268505],[-0.093781754374504,0.031131418421865,0.0014336134772748]],[[-0.029812179505825,-0.019205044955015,-0.046362400054932],[-0.028816752135754,-0.0054052476771176,-0.010811185464263],[-0.028924968093634,-0.043973751366138,-0.0073345112614334]],[[-0.028076656162739,0.005925826728344,0.010369269177318],[-0.054784372448921,-0.042839653789997,0.018095904961228],[-0.036703657358885,0.013267856091261,-0.0047616753727198]],[[0.024676265195012,0.020016193389893,-0.036427054554224],[0.038400784134865,0.012506441213191,0.04222371801734],[0.012883357703686,-0.042335238307714,-0.049737989902496]],[[-0.072079978883266,-0.087970316410065,0.0066112694330513],[-0.019955202937126,-0.018815835937858,-0.059030942618847],[0.016895145177841,0.053505890071392,0.038551595062017]],[[0.0062183025293052,-0.0017780305352062,0.029340252280235],[0.015271083451807,-0.034095425158739,0.04849573969841],[-0.004140236414969,-0.044085294008255,0.016156520694494]],[[0.019133392721415,-0.030547007918358,0.025213008746505],[0.036865942180157,0.011640676297247,-0.025080248713493],[-0.0013794070109725,-0.003621319308877,-0.021973082795739]],[[0.030289348214865,0.00057037046644837,0.012724537402391],[-0.020024858415127,-0.028224814683199,-0.034823019057512],[-0.065085940063,-0.086932711303234,0.062289752066135]],[[-0.11328575760126,-0.0098474454134703,-0.045515395700932],[-0.05257735401392,0.044646766036749,-0.094284132122993],[0.057626444846392,0.092132918536663,0.0099431527778506]],[[0.0019737512338907,0.060186330229044,-0.0014725143555552],[-0.021576263010502,-0.035915281623602,-0.02669495344162],[-0.041576016694307,0.0037378827109933,0.033287905156612]],[[0.042193721979856,0.095157653093338,0.042950782924891],[-0.0067582279443741,0.0013688595499843,-0.0091117573902011],[-0.0025104978121817,0.027495855465531,-0.018167644739151]],[[0.05172011628747,0.029972713440657,0.030393304303288],[-0.021422944962978,0.027327483519912,-0.0088484352454543],[-0.0059288376942277,0.021765956655145,0.004299808293581]],[[0.009004577063024,0.035270120948553,0.021834233775735],[0.0039570974186063,-0.067829214036465,0.0067258258350194],[-0.088922314345837,-0.0043095913715661,-0.012784054502845]],[[0.039857815951109,-0.03015766851604,-0.027548046782613],[-0.029368303716183,0.058117296546698,-0.00017158941773232],[0.0088674379512668,0.0064520924352109,-0.023398196324706]],[[-0.0047305063344538,0.014210154302418,0.0056268498301506],[0.045894544571638,-0.0023335821460932,0.02096357382834],[0.0015716629568487,-0.061329830437899,-0.028694437816739]],[[-0.0066052367910743,0.017950665205717,0.026456121355295],[0.014888245612383,0.027702027931809,-0.051401805132627],[-0.0049113538116217,-0.03896301612258,-0.0034472583793104]],[[-0.00084084470290691,0.068108171224594,0.058876223862171],[0.063263155519962,0.048349287360907,-0.035739187151194],[-0.05925165489316,-0.030251517891884,0.021288665011525]],[[-0.056792121380568,0.054428856819868,0.039079818874598],[-0.018874879926443,0.038083918392658,-0.089304447174072],[-0.036548994481564,0.068438865244389,-0.029810907319188]],[[-0.036535415798426,0.015040179714561,-0.064216904342175],[0.046101357787848,-0.0085182674229145,0.021372362971306],[0.0085467621684074,0.0067920451983809,0.035543598234653]],[[-0.024810947477818,0.055609483271837,0.030283601954579],[0.046763591468334,0.03446102514863,0.016324542462826],[0.041719533503056,-0.060752682387829,0.062947876751423]],[[-0.073626980185509,-0.093898370862007,0.03889050334692],[-0.029469290748239,0.0085082249715924,-0.017394322901964],[-0.037960454821587,0.050320792943239,-0.052906971424818]],[[0.0097614834085107,0.051032558083534,-0.048033136874437],[0.019743157550693,0.00020894351473544,-0.0046764430589974],[0.056273203343153,-0.020676832646132,-0.028491891920567]],[[0.029317941516638,-0.011754741892219,0.020253524184227],[-0.021571550518274,-0.0028788412455469,0.010247743688524],[-0.011331946589053,-0.0085639851167798,0.0012452475493774]],[[-0.016091777011752,0.038436390459538,-0.033175144344568],[-0.037311304360628,-0.030653895810246,-0.020534988492727],[0.041694849729538,0.02759744413197,0.01847424916923]],[[-0.0037421835586429,-0.061086632311344,0.033026564866304],[-0.010654279962182,-0.018084118142724,0.00076877069659531],[0.0036708754487336,0.017348952591419,-0.044811498373747]],[[0.081752330064774,0.031389154493809,0.060908317565918],[0.021647185087204,-0.026892993599176,-0.010957011952996],[0.14458554983139,0.045425936579704,0.018166655674577]],[[-0.069561645388603,-0.014021775685251,0.039900369942188],[0.070933237671852,0.058893691748381,0.044817294925451],[-0.050718933343887,0.027882855385542,-0.034585319459438]],[[0.0013132498133928,0.021296635270119,-0.058315359055996],[0.00071361288428307,-0.024469781666994,0.034666165709496],[0.00042406015563756,0.024211131036282,0.00876668933779]],[[0.0037423684261739,0.023360848426819,0.026779379695654],[-0.015000434592366,0.05576391518116,-0.014944142661989],[0.012377570383251,0.05908489599824,-0.024161793291569]],[[-0.014737607911229,-0.0033313476014882,0.029167791828513],[0.0079669523984194,0.013335667550564,0.0036837484221905],[0.01727182045579,0.069237157702446,0.11470779031515]],[[-0.039959877729416,-0.032277248799801,-0.097489975392818],[-0.015714943408966,-0.040778234601021,-0.016959542408586],[-0.042396042495966,0.032332703471184,0.0081632863730192]],[[-0.010266850702465,-0.054318875074387,-0.032072074711323],[-0.017929142341018,0.057694941759109,0.037670746445656],[0.040122419595718,0.0095568681135774,0.039428550750017]],[[0.025898359715939,0.012480927631259,-0.065998964011669],[-0.081874705851078,0.015164733864367,-0.044786427170038],[0.02807554975152,0.028102297335863,0.041589770466089]],[[-0.030942991375923,0.080114245414734,0.026691922917962],[0.016575722023845,0.0010487815598026,-0.043450258672237],[-0.044607419520617,-0.014999309554696,-0.029411904513836]],[[0.032038014382124,0.030130784958601,0.041520625352859],[-0.02734693698585,0.0066776634193957,-0.047264810651541],[-0.049797363579273,-0.03587756305933,-0.011625847779214]],[[-0.00024947230122052,0.015170779079199,-0.017846824601293],[0.0051660914905369,0.033533461391926,0.017671033740044],[-0.016775162890553,-0.009962810203433,-0.0019935523159802]]],[[[0.012079868465662,-0.0587297976017,0.047709982842207],[0.052583537995815,-0.1002671867609,-0.039080515503883],[0.0094493143260479,0.084033466875553,-0.10947676748037]],[[-0.11231511086226,-0.17506676912308,-0.11898485571146],[-0.019371611997485,-0.027965331450105,-0.0030078731942922],[-0.012753228656948,-0.035520106554031,-0.029489932581782]],[[-0.042365588247776,-0.052662946283817,0.027585741132498],[0.016095271334052,0.026918327435851,-0.098472237586975],[-0.031339861452579,0.054687339812517,0.043706588447094]],[[0.039917968213558,-0.045004576444626,0.088820554316044],[-0.091530419886112,0.10405872017145,-0.039534647017717],[-0.014050997793674,0.047463361173868,0.10360115021467]],[[-0.0095238648355007,-0.030924815684557,-0.0077729341574013],[-0.063115537166595,0.040840543806553,0.055892799049616],[-0.0017371741123497,0.068504713475704,0.079230017960072]],[[-0.017471667379141,0.0029828741680831,-0.13219420611858],[0.058219376951456,-0.070000119507313,-0.099850617349148],[-0.086222782731056,-0.0082052210345864,-0.0056803324259818]],[[0.002703549573198,0.036363605409861,-0.02205815911293],[-0.031094837933779,0.027638519182801,-0.00041458936175331],[-0.017555912956595,-0.01774643920362,0.053084287792444]],[[0.0042973337695003,-0.036317307502031,-0.026709130033851],[0.08837353438139,0.050300341099501,0.09109503030777],[-0.021969391033053,0.029955128207803,0.049686022102833]],[[0.02838727273047,-0.015098284929991,0.0090361405164003],[-0.053335104137659,0.046769984066486,0.023060608655214],[0.025661950930953,-0.0059630125761032,-0.024765521287918]],[[-0.020395124331117,-0.079394772648811,0.007949679158628],[-0.035304248332977,-0.062962360680103,-0.10877195745707],[0.069967396557331,0.095487229526043,0.020942827686667]],[[-0.088091358542442,0.032118152827024,0.022082958370447],[0.031332492828369,0.040950838476419,0.0085468823090196],[-0.0021920274011791,-0.017462398856878,-0.017814744263887]],[[-0.05381752923131,-0.04127661883831,-0.057207494974136],[-0.027415433898568,0.011232982389629,0.026276256889105],[0.0074554262682796,0.027401795610785,-0.037705946713686]],[[0.067341692745686,-0.025796877220273,0.059298530220985],[0.035813111811876,0.053409948945045,0.086392343044281],[-0.00057182728778571,0.042547080665827,0.092062100768089]],[[0.16631105542183,0.18889117240906,0.12085451930761],[-0.015654044225812,0.079995647072792,0.082609981298447],[0.046109437942505,0.0019384572515264,0.018060680478811]],[[0.014547969214618,0.040809318423271,-0.099758125841618],[-0.001204542000778,-0.030727697536349,-0.044710014015436],[-0.032941587269306,-0.023379912599921,-0.028321005403996]],[[0.019214456900954,-0.061131723225117,-0.093037232756615],[-0.00767732411623,0.010206422768533,0.10999139398336],[0.027311218902469,-0.076064132153988,0.049265801906586]],[[-0.015058451332152,-0.10892288386822,-0.13511121273041],[-0.036561887711287,0.088746607303619,-0.0097217913717031],[0.0014467576984316,-0.025355480611324,0.068647734820843]],[[-0.0040147635154426,0.046036582440138,-0.022102965041995],[-0.085758283734322,-0.032450836151838,-0.02494802698493],[-0.0061848270706832,0.1096770465374,0.002685560612008]],[[0.024720745161176,-0.063013888895512,-0.058842595666647],[0.032434087246656,-0.040890816599131,0.019860196858644],[0.034878775477409,-0.093030378222466,-0.022475047037005]],[[-0.054775912314653,-0.019321260973811,-0.063665352761745],[-0.014997464604676,-0.002298068953678,-0.017561543732882],[0.021667065098882,0.020235989242792,0.086446367204189]],[[0.040755100548267,0.041190795600414,-0.051328249275684],[0.014494462870061,-0.0045904605649412,-0.05797753110528],[-0.02505312114954,-0.054445687681437,-0.031686298549175]],[[-0.058980323374271,-0.023321691900492,0.039512794464827],[-0.016101017594337,-0.020569393411279,-0.024994436651468],[-0.05392037332058,-0.024836150929332,-0.050199147313833]],[[-0.037737153470516,0.0014299865579233,0.031770434230566],[-0.015249443240464,-0.010643572546542,0.0051415101625025],[0.048170436173677,-0.00077856879215688,-0.0024496861733496]],[[0.0095580015331507,-0.029619462788105,-0.0194788929075],[-0.0075923115946352,-0.026764513924718,-0.12304764986038],[-0.074685037136078,-0.031092142686248,-0.054631564766169]],[[0.041006281971931,0.099331744015217,0.063783846795559],[0.10296055674553,0.065260119736195,-0.0074010831303895],[0.025128116831183,0.039580062031746,0.023656003177166]],[[0.00076647097012028,-0.0063687572255731,0.0062580914236605],[-0.055293157696724,0.010815402492881,-0.074209563434124],[0.0012649099808186,-0.079756431281567,-0.0066199656575918]],[[0.079762540757656,0.054518219083548,-0.070572748780251],[0.052704930305481,0.082023359835148,0.087303079664707],[-0.0050211786292493,0.088558562099934,-0.0094333970919251]],[[-0.05809248238802,0.079443007707596,0.10653070360422],[0.078277111053467,-0.030068630352616,-0.039841324090958],[-0.039126627147198,-0.16047213971615,0.011331426911056]],[[0.015388513915241,-0.035328634083271,-0.0083732046186924],[-0.020523477345705,-0.054732676595449,0.029800333082676],[-0.17576791346073,-0.042563386261463,0.061693023890257]],[[0.050887666642666,0.015286610461771,-0.060159634798765],[0.023005159571767,-0.085452780127525,-0.011922331526875],[0.091609425842762,-0.086093351244926,0.022124696522951]],[[0.03046803176403,0.065795354545116,0.035766083747149],[-0.075161598622799,0.045804720371962,-0.0086748888716102],[0.052124448120594,-0.070271983742714,0.12464565038681]],[[-0.028422892093658,0.0088278939947486,-0.02608722820878],[-0.094620265066624,0.028595494106412,0.061843689531088],[0.099889822304249,0.041560336947441,-0.019538963213563]],[[-0.085214450955391,-0.074491009116173,-0.081934787333012],[-0.11298671364784,0.049764256924391,-0.051169764250517],[-0.13237731158733,-0.044983603060246,-0.071855276823044]],[[-0.030947454273701,-0.0065219351090491,-0.086814612150192],[-0.058726776391268,-0.040554277598858,-0.023583067581058],[0.044673096388578,-0.10582942515612,-0.013304782100022]],[[0.0015745211858302,0.041980355978012,0.0083777094259858],[0.047664415091276,0.014437724836171,-0.042935516685247],[-0.0091856634244323,-0.06983558088541,-0.10747276246548]],[[0.022949486970901,-0.052749734371901,0.037229105830193],[-0.073568522930145,-0.029702866449952,-0.099864184856415],[-0.036119937896729,0.0047182398848236,0.011029281653464]],[[0.021769287064672,0.039245799183846,-0.030769392848015],[-0.030326476320624,0.0047222613357008,-0.0035270245280117],[0.040755577385426,-0.063803866505623,-0.010270660743117]],[[-0.010946284979582,-0.044512372463942,-0.046213876456022],[0.0040308181196451,0.049100764095783,-0.044520627707243],[-0.066992089152336,-0.029502585530281,0.040790181607008]],[[0.063504755496979,0.037545692175627,-0.050864394754171],[0.012850976549089,0.080686442553997,0.019815495237708],[0.052884977310896,0.032090090215206,0.032574832439423]],[[0.08118599653244,0.041034609079361,0.09821268171072],[-0.1360520273447,0.073083363473415,0.064689710736275],[0.032297875732183,0.080002553761005,0.01220487896353]],[[-0.013980235904455,0.02356817945838,-0.048473455011845],[-0.0076509048230946,-0.021450627595186,0.066038064658642],[-0.023588009178638,-0.035497944802046,0.035135436803102]],[[-0.0083290012553334,0.012661393731833,-0.039168730378151],[0.0085555221885443,0.022817853838205,-0.033836260437965],[0.034631811082363,0.016924640163779,0.057568620890379]],[[-0.03070685826242,0.010032821446657,0.033860709518194],[0.028856378048658,-0.027474129572511,0.0019802669994533],[0.00088590354425833,-0.067411780357361,-0.080862052738667]],[[0.044238898903131,-0.10044579207897,-0.10746978223324],[-0.046361681073904,-0.07449296861887,-0.053788408637047],[0.017240803688765,-0.039733976125717,-0.03725827485323]],[[0.0027310727164149,-0.015145882964134,0.065643511712551],[0.098349869251251,-0.00033211306435987,-0.12635572254658],[0.05300397798419,-0.051962476223707,0.11320575326681]],[[0.022856628522277,0.03139066323638,-0.014609307050705],[-0.058415036648512,0.028648909181356,0.056687854230404],[-0.027625758200884,0.0070804925635457,-0.0031400532461703]],[[-0.068572305142879,-4.3122778151883e-05,-0.035195972770452],[0.085732363164425,0.084712997078896,0.054922953248024],[0.0012521217577159,-0.11633417755365,-0.018888028338552]],[[-0.013918986544013,-0.0083865532651544,2.6400819479022e-05],[-0.024772835895419,0.070610404014587,-0.079756498336792],[0.0075763966888189,0.014964452013373,0.035905443131924]],[[-0.024081092327833,0.069091826677322,-0.0079060662537813],[-0.029868209734559,0.013102162629366,0.0072538652457297],[-0.056435808539391,0.11143759638071,0.11554218828678]],[[0.0011507029412314,-0.0020821786019951,0.01587837561965],[-0.009127501398325,-0.013209104537964,-0.029747027903795],[-0.055540837347507,0.030776714906096,-0.053723588585854]],[[0.0009506624774076,-0.041127648204565,-0.0010806659702212],[-0.14055082201958,-0.041200704872608,-0.0055231326259673],[-0.067333541810513,-0.045895263552666,-0.07629968225956]],[[-0.065876610577106,0.032485026866198,-0.037957154214382],[0.041029758751392,-0.026752185076475,-0.037036243826151],[-0.00042093454976566,-0.033644180744886,0.033643897622824]],[[-0.036898799240589,0.12523691356182,0.048433624207973],[0.010079507716,0.10842391848564,0.16071920096874],[0.1052476093173,-0.039925374090672,0.14438477158546]],[[0.071609102189541,0.083818130195141,0.15998351573944],[0.12418308109045,0.063064284622669,0.042557395994663],[-0.073255643248558,0.040073230862617,-0.019838094711304]],[[-0.12390448153019,-0.04307209327817,0.078764282166958],[0.00010516063775867,0.0085999108850956,0.0030184681527317],[0.033829860389233,0.037568487226963,-0.04273834452033]],[[0.055833831429482,-0.057247620075941,0.090885415673256],[-0.038627665489912,0.0053560342639685,0.017901353538036],[0.033107865601778,0.12337335199118,0.034278146922588]],[[-0.021646916866302,-0.018316406756639,0.014817044138908],[-0.10150466859341,-0.050208307802677,-0.021637244150043],[-0.060733124613762,-0.0034486900549382,-0.036105740815401]],[[-0.0073266541585326,-0.0092429229989648,-0.026768937706947],[0.011299338191748,0.0050325877964497,-0.046085435897112],[-0.099097065627575,-0.021302308887243,-0.0060928701423109]],[[0.051819499582052,-0.060515057295561,-0.0059087900444865],[0.025493755936623,0.044176191091537,0.041217781603336],[0.013909512199461,-0.020063968375325,-0.057646080851555]],[[0.016650276258588,0.041788902133703,-0.015314171090722],[-0.0070157391019166,0.021551512181759,0.041659984737635],[0.00071931193815544,-0.024384766817093,0.0058267889544368]],[[-0.078490816056728,-0.021533608436584,-0.042066171765327],[-0.028565688058734,0.03605579957366,-0.059615887701511],[-0.019694205373526,-0.1110370606184,-0.01337128225714]],[[-0.22068889439106,-0.072630390524864,0.04067662358284],[0.060982841998339,-0.086558096110821,-0.082987137138844],[0.04534825310111,0.081533454358578,0.14241720736027]],[[0.034407313913107,-0.0015520633896813,-0.096211455762386],[-0.078938670456409,-0.014295211993158,-0.017128080129623],[-0.0063161351718009,0.019986866042018,0.0047245854511857]],[[-0.005069934297353,0.034809298813343,-0.043883234262466],[-0.09003958851099,0.026046788319945,0.15152318775654],[0.046456299722195,0.031483296304941,0.0010902074864134]]],[[[-0.13223019242287,0.16564224660397,0.025092152878642],[-0.034176331013441,0.057742558419704,-0.092590011656284],[0.026796691119671,0.053889978677034,0.063392855226994]],[[-0.045654479414225,0.075785234570503,0.073416344821453],[0.048119217157364,0.064429506659508,-0.016999647021294],[-0.008329588919878,0.16064924001694,0.041903372853994]],[[-0.039584901183844,0.058981526643038,-0.010766334831715],[-0.035335384309292,0.0024475192185491,-0.027848726138473],[-0.0023839790374041,0.019931441172957,-0.051919158548117]],[[-0.07092747092247,0.012253892607987,0.058478880673647],[0.087142169475555,0.020516199991107,-0.13008564710617],[-0.098414421081543,-0.040523923933506,0.10327173769474]],[[0.22949412465096,-0.021877845749259,-0.084776364266872],[-0.090972229838371,0.10961058735847,-0.062814474105835],[0.0090796044096351,-0.051071811467409,0.10760068893433]],[[-0.052997756749392,-0.060598652809858,-0.0311229955405],[-0.10028696805239,0.0019027336966246,-0.014587621204555],[-0.034748669713736,0.023179380223155,-0.068860851228237]],[[0.037876266986132,-0.032181121408939,0.029191600158811],[-0.0030712473671883,0.11450695246458,-0.023045672103763],[0.0072212480008602,-0.079276643693447,0.027193255722523]],[[0.064463682472706,-0.012975515797734,-0.0062129856087267],[0.02776044793427,-0.030752092599869,0.057971090078354],[0.14850604534149,-0.29168474674225,0.032480742782354]],[[0.14054916799068,0.00081315910210833,-0.065677605569363],[0.042168375104666,-0.1165354475379,0.11700599640608],[0.026827674359083,0.009903060272336,-0.14522737264633]],[[0.056447189301252,-0.14162237942219,0.063375502824783],[0.025480033829808,0.040903750807047,-0.042692195624113],[0.14486613869667,-0.14425925910473,0.090877659618855]],[[-0.13515062630177,0.14650750160217,0.0099493293091655],[-0.014777167700231,0.0030279641505331,-0.10664247721434],[0.026870120316744,-0.067228920757771,0.0081360843032598]],[[0.11030492931604,-0.0070129805244505,-0.062623135745525],[0.035311505198479,0.073930956423283,-0.062095314264297],[-0.065220922231674,-0.01069357059896,0.1611640304327]],[[0.12677593529224,-0.11523544043303,-0.03444679453969],[-0.050741594284773,-0.061739947646856,-0.2024309784174],[-0.038873005658388,0.083474367856979,-0.14420185983181]],[[0.18309773504734,-0.055337097495794,-0.018596405163407],[0.0037194134201854,-0.090887382626534,-0.0070456969551742],[-0.11848113685846,0.05989408865571,0.059206735342741]],[[0.037254471331835,0.064131408929825,-0.016225311905146],[-0.034174662083387,0.12041617929935,0.011943596415222],[0.01672057248652,0.049793917685747,0.046912912279367]],[[-0.14244900643826,-0.20203258097172,-0.0051778014749289],[-0.059732913970947,0.10651963949203,-0.029518082737923],[-0.0013502103975043,-0.0050431834533811,0.034673601388931]],[[-0.053139887750149,-0.1517893075943,0.0060654547996819],[0.030977668240666,0.024634912610054,-0.058109197765589],[-0.014693627133965,-0.01372676808387,0.11376947909594]],[[-0.14399822056293,-0.071631267666817,-0.055425733327866],[0.0094019379466772,-0.082090266048908,0.070040598511696],[-0.021167004480958,-0.18055441975594,0.042667280882597]],[[0.0060718576423824,-0.02980412915349,0.038658209145069],[0.032044660300016,0.026462323963642,0.0093621099367738],[0.00067965558264405,-0.011197895742953,-0.026037145406008]],[[0.047684475779533,0.017355183139443,-0.035499706864357],[0.10762614756823,-0.0091217253357172,-0.047349389642477],[-0.0011823417153209,-0.041973039507866,0.031184539198875]],[[-0.052707772701979,0.0045954417437315,-0.001967447809875],[-0.077871561050415,-0.028729774057865,0.062120094895363],[-0.056683171540499,-0.053029429167509,-0.016250539571047]],[[-0.088435553014278,0.064790271222591,-0.030660754069686],[-0.00010572747851256,0.041297871619463,0.055739361792803],[0.12923547625542,-0.074124693870544,0.019442673772573]],[[-0.074107185006142,0.055456381291151,0.021121112629771],[0.0077227451838553,0.053570859134197,0.024096727371216],[-0.046628758311272,0.010252448730171,-0.040046464651823]],[[0.00097196688875556,-0.047691661864519,-0.0094573702663183],[0.052758283913136,-0.15669140219688,0.026659604161978],[0.12821900844574,0.053752195090055,-0.11442843079567]],[[0.0064437100663781,0.0538957901299,0.024765124544501],[-0.052552133798599,-0.21146783232689,0.048069212585688],[0.18737363815308,-0.16294381022453,-0.064056791365147]],[[-0.039903838187456,0.0060599958524108,-0.048186339437962],[-0.010181318968534,-0.021836729720235,-0.036334782838821],[-0.025046149268746,-0.086754180490971,-0.016741311177611]],[[-0.10743506997824,0.022083712741733,-0.082106530666351],[-0.057979293167591,-0.031835656613111,-0.082572668790817],[-0.068864494562149,-0.075074635446072,0.047428030520678]],[[-0.11548674851656,0.082490764558315,0.04254400357604],[0.077394172549248,-0.018575737252831,-0.093423947691917],[0.13474769890308,-0.10294210910797,0.040945958346128]],[[-0.068336509168148,0.0099596390500665,0.0098769012838602],[0.057436011731625,0.021802052855492,0.071234241127968],[0.018911615014076,-0.02209416218102,-0.029368860647082]],[[-0.008113881573081,-0.03213132917881,-0.061017379164696],[-0.18667323887348,0.10272653400898,0.0058857672847807],[-0.14215193688869,-0.1124739870429,-0.067274190485477]],[[-0.080695182085037,0.14291453361511,0.011185551062226],[0.087035290896893,-0.0050488347187638,-0.11759993433952],[0.015007637441158,0.027582561597228,0.042745299637318]],[[0.037900414317846,-0.050064887851477,-0.088412769138813],[-0.092997997999191,-0.079197935760021,0.04108951985836],[-0.016395511105657,-0.11935787647963,-0.036545563489199]],[[0.13383056223392,0.0096855154260993,-0.011689814738929],[0.039343617856503,0.021327715367079,-0.090793684124947],[0.047208778560162,0.026023719459772,-0.10415432602167]],[[-0.013749492354691,-0.028163706883788,-0.039333488792181],[0.087933838367462,-0.087636575102806,-0.059881143271923],[-0.12262853235006,-0.043888121843338,0.013257020153105]],[[-0.05136427283287,-0.087636485695839,0.085119120776653],[-0.014628121629357,-0.10327341407537,0.096582762897015],[-0.0014504354912788,-0.13080008327961,0.15963396430016]],[[-0.021760107949376,-0.1339502632618,-0.055098164826632],[-0.01623977907002,-0.09352458268404,0.020820774137974],[-0.02574541606009,-0.0447848290205,-0.00082722207298502]],[[0.067302659153938,0.015147719532251,-0.0035504337865859],[0.070017084479332,-0.048977058380842,0.043406955897808],[0.08924961835146,-0.043590527027845,-0.014679724350572]],[[-0.057048909366131,0.060573935508728,-0.11477687209845],[-0.016886048018932,0.0076364800333977,0.048161141574383],[-0.17687214910984,0.14086692035198,-0.084734357893467]],[[-0.043810073286295,-0.034738000482321,0.0099184764549136],[-0.0089283185079694,-0.07215990871191,-0.064674787223339],[-0.033835336565971,0.075201481580734,-0.01573259755969]],[[0.075433611869812,-0.056246694177389,-0.094762444496155],[0.033961545675993,-0.020197756588459,-0.081115216016769],[-0.055081978440285,0.011426079086959,-0.022794434800744]],[[0.026956720277667,0.065788008272648,0.014331575483084],[0.032369367778301,0.01946223154664,-0.032094992697239],[0.0026473451871425,0.070421069860458,-0.050013497471809]],[[0.039479039609432,-0.16607856750488,0.019191710278392],[-0.01495925989002,0.014382258988917,0.0038392543792725],[-0.085085980594158,0.086192548274994,0.046305518597364]],[[0.019180901348591,-0.041414570063353,-0.053855247795582],[-0.061331689357758,-0.00098395615350455,0.042493972927332],[-0.059356182813644,-0.13040982186794,0.021417686715722]],[[0.068219266831875,0.0096020372584462,0.11373350024223],[0.057885985821486,0.10277523100376,0.041321985423565],[0.056013513356447,0.16028356552124,-0.02755044773221]],[[0.05389753729105,-0.028499327600002,-0.043133873492479],[0.10729422420263,-0.017098305746913,0.066618472337723],[-0.090452164411545,0.032739143818617,-0.014453468844295]],[[0.037032887339592,-0.018711572512984,0.0204834677279],[0.049246102571487,0.023711200803518,-0.076139755547047],[-0.0005962829454802,0.080995194613934,0.06001790240407]],[[-0.0030462916474789,-0.16208118200302,-0.0071779987774789],[-0.048652853816748,0.034428097307682,-0.10316267609596],[-0.066779889166355,0.04014378041029,-0.039483673870564]],[[-0.083454318344593,0.035830248147249,0.024782774969935],[-0.040341321378946,-0.0043540732003748,-0.019859319552779],[-0.053323786705732,0.089599549770355,0.022389877587557]],[[-0.11193406581879,-0.13398490846157,0.063127718865871],[-0.0019091141875833,-0.026344692334533,-0.074260987341404],[0.00067282636882737,-0.041653376072645,-0.078162409365177]],[[0.07843841612339,0.00079678220208734,0.11648797243834],[0.014346975833178,-0.14877043664455,0.13905070722103],[-0.051915913820267,-0.074440166354179,0.028592886403203]],[[0.16591081023216,0.053533621132374,0.004876381251961],[0.060644153505564,0.10412791371346,0.033404380083084],[0.12045937776566,-0.059413529932499,0.030408848077059]],[[-0.0845802500844,0.050379555672407,0.031095074489713],[-0.037081558257341,-0.028742590919137,-0.047795850783587],[0.011550774797797,0.099470302462578,-0.043693844228983]],[[-0.067259676754475,-0.094520017504692,-0.10541749745607],[-0.17832814157009,-0.12141072005033,-0.092958606779575],[-0.18620331585407,0.0039958725683391,-0.019525235518813]],[[0.21058508753777,0.1912756562233,0.12255658209324],[0.064109168946743,0.11135271936655,0.07189754396677],[0.02688848040998,0.019712237641215,0.13732592761517]],[[0.12896260619164,-0.10415609925985,-0.021500904113054],[0.039823450148106,-0.014909314922988,-0.10093860328197],[-0.040997140109539,-0.0056720077991486,-0.06549708545208]],[[-0.0859384983778,-0.21922427415848,-0.020846605300903],[-0.023709220811725,-0.0296316370368,-0.10521053522825],[-0.034547843039036,-0.044922437518835,-0.18762265145779]],[[0.097507335245609,-0.1019556298852,0.016984602436423],[-0.031989622861147,-0.13485331833363,-0.040281772613525],[0.030923165380955,0.0028772251680493,-0.1299739331007]],[[-0.0033215896692127,-0.16489267349243,-0.032911367714405],[-0.023422524333,-0.036844380199909,-0.048798657953739],[-0.01727550290525,0.020055403932929,-0.12872333824635]],[[0.094005964696407,-0.052845150232315,-0.11420091986656],[0.055452793836594,-0.050698559731245,0.027368249371648],[0.085828974843025,-0.0020775806624442,0.039130620658398]],[[0.014765778556466,-0.009501245804131,0.00033412376069464],[0.068000353872776,-0.0013915450545028,-0.0016784005565569],[0.05198835209012,0.025344461202621,0.017911285161972]],[[0.16198827326298,0.074636586010456,-0.00073988258372992],[-0.082293525338173,-0.028281832113862,-0.10544910281897],[-0.096080414950848,0.10153286159039,0.034752130508423]],[[-0.11350717395544,-0.062364980578423,0.059210728853941],[0.091270841658115,-0.062038138508797,-0.05243132263422],[0.050727590918541,-0.01517444383353,-0.19282628595829]],[[0.081714116036892,-0.015447895042598,0.050860393792391],[0.11377316713333,0.016742093488574,0.049421690404415],[0.12836961448193,0.045062813907862,0.051551841199398]],[[0.007294247392565,-0.15827822685242,-0.066673927009106],[-0.016075218096375,0.0092752994969487,0.004312998149544],[0.0053414772264659,-0.11804830282927,0.051986537873745]]],[[[0.043972682207823,-0.019317448139191,0.052283957600594],[0.11765751987696,-0.058352828025818,0.057027082890272],[0.028196137398481,-0.062283720821142,0.02926685474813]],[[-0.0024396199733019,0.017773093655705,-0.0055394330993295],[0.026245979592204,0.0088482899591327,-0.044023916125298],[-0.0049300533719361,0.0063432087190449,0.036313384771347]],[[-0.03589441254735,0.025274215266109,-0.0082705048844218],[-0.046714853495359,-0.013002007268369,-0.010326521471143],[-0.010767450556159,-0.01495748013258,-0.010657001286745]],[[-0.02746201120317,0.03683116286993,0.021455943584442],[-0.0016295418608934,-0.00046333356294781,0.031336795538664],[0.054371256381273,0.015975607559085,0.028089223429561]],[[0.007674858905375,0.019404364749789,0.054845463484526],[0.028731191530824,-0.034341439604759,0.091122731566429],[0.014715479686856,0.0076095899567008,-0.012345710769296]],[[-0.060951020568609,0.0024402751587331,0.09729129076004],[0.055473942309618,0.070278085768223,0.090905971825123],[-0.08636112511158,-0.0038435512688011,-0.11274933815002]],[[-0.017005594447255,-0.038311012089252,-0.0010778912110254],[0.01471428014338,0.049270950257778,0.0103630553931],[-0.054035063832998,-0.015308208763599,0.0070361313410103]],[[-0.0016322344308719,0.038727357983589,-0.013094614259899],[0.071868136525154,-0.0020273344125599,0.00079495314275846],[-0.011246060952544,-0.10337363183498,0.036892522126436]],[[0.0389051027596,0.00046240040683188,-0.056683104485273],[-0.05748987197876,-0.014486650004983,-0.0062881093472242],[-0.0078677386045456,0.040238056331873,-0.021445944905281]],[[-0.026152951642871,-0.062250200659037,-0.087392747402191],[0.021910089999437,0.010291364043951,0.083338372409344],[0.090270861983299,-0.062928289175034,0.056827023625374]],[[0.024858891963959,-0.013545312918723,0.050748646259308],[-0.077776156365871,-0.040576186031103,0.014556034468114],[0.056025851517916,-0.19260200858116,0.013616559095681]],[[0.0044180541299284,0.070492118597031,0.068338565528393],[0.003342017531395,0.0089959409087896,0.00018927615019493],[0.040835805237293,0.0015731347957626,-0.049550760537386]],[[-0.035233803093433,-0.03350305557251,-0.0016149355797097],[-0.029304191470146,0.038843467831612,-0.035292364656925],[0.023765936493874,-0.015583025291562,0.05073731392622]],[[0.053497277200222,-0.067470423877239,-0.034969929605722],[0.065326027572155,-0.043341211974621,0.077526114881039],[0.036808837205172,0.01403624098748,-0.085981979966164]],[[-0.091733425855637,-0.0080796722322702,-0.062471009790897],[-0.029857154935598,0.063245244324207,-0.049987968057394],[-0.010903229005635,-0.049560263752937,-0.057635974138975]],[[0.028248349204659,0.037552434951067,0.0026196809485555],[0.015432906337082,-0.012199624441564,0.015980616211891],[0.032542571425438,0.060331523418427,-0.053043235093355]],[[-0.029514990746975,0.061736181378365,0.06857343018055],[0.017436252906919,-0.0088678868487477,0.014618933200836],[0.039503183215857,-0.055418148636818,0.014708462171257]],[[-0.021543733775616,-0.060184143483639,0.012008481658995],[0.001348166144453,0.069822520017624,-0.041226528584957],[-0.0011369858402759,-0.01777252368629,0.013662772253156]],[[-0.041689623147249,-0.027999022975564,0.035786829888821],[0.024115385487676,-0.047260478138924,-0.019407410174608],[-0.02271332219243,-0.024602942168713,0.058177087455988]],[[0.027404403313994,0.028870945796371,-0.040975872427225],[-0.0076306276023388,0.036451727151871,-0.031965363770723],[-0.0091129168868065,-0.036509599536657,0.019926410168409]],[[0.0082905003800988,0.0089183421805501,0.072938315570354],[-0.038724392652512,0.042406059801579,-0.047226052731276],[0.0026784013025463,0.058655358850956,-0.035704828798771]],[[-0.0039310259744525,-0.0046534319408238,-0.0064651709981263],[-0.018469510599971,0.02810750156641,0.037415996193886],[0.014226073399186,0.03356309980154,-0.045867212116718]],[[0.021879186853766,-0.023451022803783,-2.3475877242163e-08],[-0.01181635633111,0.073014423251152,0.020419279113412],[-0.056195717304945,0.017751695588231,-0.040865834802389]],[[-0.070365816354752,-0.0092327892780304,-0.028495186939836],[-0.036486383527517,-0.039493296295404,0.051036939024925],[-0.046365484595299,-0.02130320109427,0.043510422110558]],[[-0.03980441391468,-0.033731259405613,0.02678937651217],[-0.067274697124958,0.06468765437603,0.043984182178974],[-0.03696471452713,0.011580476537347,-0.0016386636998504]],[[-0.043248534202576,2.1288953576004e-05,-0.062137931585312],[-0.052851043641567,-0.05114521458745,0.054258797317743],[-0.013078368268907,0.015718901529908,-0.077886283397675]],[[-0.028905984014273,-0.015255203470588,0.061284512281418],[0.067830145359039,-0.048668313771486,0.037049978971481],[0.047298699617386,0.002532871440053,0.063882224261761]],[[0.0032337352167815,0.039202950894833,-0.042467508465052],[0.031334467232227,-0.012950384989381,-0.019328784197569],[0.032961364835501,0.018552454188466,-0.03176537156105]],[[-0.012873666360974,-0.011313370428979,-0.084702737629414],[-0.076203316450119,0.13294392824173,-0.00091114587849006],[0.013968043960631,-0.018536794930696,-0.010647514835]],[[-0.047200810164213,0.024830888956785,-0.0137400906533],[0.030697755515575,-0.06899531185627,-0.04267243668437],[0.0097749084234238,0.035922508686781,-0.074969828128815]],[[-0.018866902217269,0.038967873901129,-0.073622785508633],[-0.080519169569016,0.0059095746837556,-0.035034690052271],[0.037564218044281,0.017819093540311,0.025339623913169]],[[0.067844301462173,0.073143742978573,0.021535485982895],[-0.00041373743442819,-0.0018362459959462,-0.066892720758915],[-0.021499499678612,0.043906949460506,0.0025295789819211]],[[-0.061543211340904,0.0086056422442198,0.0034012740943581],[-0.05094825848937,-0.047628853470087,0.0050742514431477],[0.016579700633883,0.027340948581696,-0.028413455933332]],[[0.00059222494019195,-0.054516199976206,-0.023792531341314],[-0.081897221505642,0.017851831391454,-0.0078174080699682],[0.021319001913071,-0.031477194279432,0.044624518603086]],[[0.042211677879095,0.037704583257437,0.095086194574833],[0.01649190671742,0.017134239897132,-0.10327368229628],[-0.026548448950052,0.049987785518169,-0.056326620280743]],[[-0.011124557815492,-0.019720464944839,-0.088082142174244],[0.013767350465059,-0.0084738172590733,0.015130546875298],[0.019553780555725,-0.058980379253626,-0.030452594161034]],[[-0.0047631277702749,-0.014166615903378,-0.050555363297462],[0.029276726767421,0.0099958209320903,0.024696785956621],[0.0019061171915382,0.023392027243972,0.0066284984350204]],[[0.033680479973555,0.0020323586650193,-0.0079501522704959],[0.051156841218472,-0.059401199221611,-0.035990584641695],[0.0020453941542655,0.082468308508396,-0.046423997730017]],[[-0.10953547805548,-0.00039465914596803,0.06041058152914],[-0.0066298767924309,0.060254547744989,-0.016546506434679],[-0.080441005527973,0.021628558635712,-0.099895946681499]],[[0.030821187421679,0.039518099278212,0.0080794412642717],[-0.053106602281332,0.031504355370998,-0.0071125151589513],[-0.0029230075888336,0.041606429964304,0.0042255348525941]],[[-0.030872961506248,0.081492997705936,0.0077694072388113],[-0.03762274608016,0.0068205827847123,0.039249807596207],[0.036991737782955,-0.029065219685435,-0.022539155557752]],[[0.044258832931519,0.0070967893116176,0.0098678441718221],[0.03317528963089,-0.081561535596848,-0.016951289027929],[-0.096654869616032,0.017958445474505,0.011170458048582]],[[0.01193577144295,0.063746027648449,-0.087918728590012],[7.1875256253406e-05,-0.0042779771611094,-0.048389539122581],[-0.043398071080446,-0.11245081573725,-0.0056068957783282]],[[-0.081022515892982,-0.052767563611269,-0.093834325671196],[0.051607400178909,-0.036753877997398,0.024516351521015],[-0.038948304951191,0.046609703451395,0.029791640117764]],[[0.036307621747255,0.024844175204635,0.00024300112272613],[0.076247945427895,-0.037260044366121,0.020828556269407],[-0.0023611928336322,-0.0029625382740051,-0.020073901861906]],[[0.034921284765005,-0.033470164984465,-0.042477767914534],[-0.044720835983753,0.045816667377949,0.040954653173685],[-0.0071200430393219,-0.058810628950596,-0.035862192511559]],[[0.0057295151054859,-0.11822388321161,-0.022907027974725],[0.0071834912523627,0.0021668639965355,-0.019681535661221],[-0.023675084114075,7.5597679824568e-05,-0.030399410054088]],[[-0.0071683707647026,-0.045376166701317,-0.012556929141283],[-0.075141377747059,0.029592026025057,-0.0095073664560914],[-0.03989165276289,-0.017234828323126,0.025234028697014]],[[0.034661628305912,-0.013712203130126,0.036262579262257],[-0.01639405451715,-0.017964124679565,0.025125578045845],[-0.017807411029935,-0.021012479439378,-0.01279713306576]],[[0.014473371207714,0.0121816881001,0.0096715278923512],[0.01062217541039,-0.027672940865159,0.0091524329036474],[-0.043987642973661,-0.052691373974085,0.072983719408512]],[[-0.061599288135767,-0.054052338004112,-0.026481669396162],[0.020577298477292,0.061115656048059,-0.038494009524584],[-0.0017304145731032,-0.026990935206413,0.012226603925228]],[[0.0020839772187173,0.032055996358395,0.0026379728224128],[-0.074270397424698,0.018938792869449,-0.093782223761082],[-0.038474101573229,0.021186418831348,0.05836159363389]],[[0.0065746293403208,0.064266920089722,0.0026828825939447],[-0.02177201770246,0.039538837969303,0.011812423355877],[-0.010369900614023,-0.011875913478434,-0.0075344550423324]],[[0.049121875315905,0.017166882753372,0.063781544566154],[0.0039846915751696,0.042952798306942,0.12569482624531],[0.043576512485743,0.014672347344458,0.061245150864124]],[[-0.02633348107338,-0.020244736224413,0.00036781761446036],[0.041036523878574,-0.071861304342747,-0.039540663361549],[0.0092872558161616,0.05088946968317,0.010350509546697]],[[-0.032747574150562,-0.031395524740219,0.053964629769325],[0.018264150246978,0.08257569372654,0.0061888080090284],[-0.0035340157337487,0.0041805519722402,-0.024248709902167]],[[-0.019738251343369,0.02573711052537,0.009661010466516],[0.021026501432061,0.0069453003816307,-0.024920269846916],[0.042062181979418,0.0016746959881857,0.010563842020929]],[[-0.037240736186504,0.010005650110543,0.029477223753929],[-0.0053432993590832,0.0048927417956293,-0.011249296367168],[-0.002135940361768,-0.012201224453747,0.01244724355638]],[[-0.0063454913906753,0.074401833117008,0.088752426207066],[0.0066439267247915,-0.07671882212162,0.059957876801491],[-0.021232152357697,-0.03697070479393,0.034323204308748]],[[-0.0081744361668825,-0.017446253448725,0.0070098433643579],[0.031950570642948,-0.047098658978939,0.019167471677065],[0.052065595984459,-0.025893189013004,0.055475167930126]],[[0.036500975489616,-0.045854564756155,-0.078104764223099],[-0.07313447445631,-0.01980321854353,0.062727063894272],[0.00067089992808178,0.075867436826229,0.03483772277832]],[[0.016857586801052,-0.038462318480015,-0.095895133912563],[0.031179673969746,-0.074789427220821,-0.083637058734894],[-0.095925822854042,0.0044220937415957,-0.0040280660614371]],[[0.033692590892315,-0.052542615681887,-0.086807407438755],[0.040448453277349,0.0025266068987548,0.02316565439105],[0.034760523587465,-0.027084168046713,0.054730650037527]],[[0.030612923204899,-0.022836057469249,0.041015446186066],[0.041040480136871,0.010814533568919,-0.050435815006495],[-0.052985340356827,-0.028258863836527,-0.0099661070853472]]],[[[0.075921088457108,-0.078401871025562,-0.1402088701725],[0.063589088618755,0.14260467886925,-0.16937847435474],[0.14897379279137,0.001932862913236,0.065241992473602]],[[-0.032723449170589,0.0060007823631167,0.15311545133591],[-0.097048051655293,0.052212499082088,0.038981791585684],[-0.28397452831268,-0.21960723400116,-0.042852275073528]],[[0.051086667925119,-0.041523233056068,-0.054781761020422],[-0.043738529086113,-0.014025915414095,-0.017621668055654],[0.064162977039814,0.045749001204967,0.034122325479984]],[[-0.013127281330526,-0.038079060614109,-0.036373842507601],[-0.056996431201696,-0.029698604717851,0.027857756242156],[0.00038634709198959,0.050821986049414,0.084587581455708]],[[-0.10521544516087,-0.060751061886549,0.076141402125359],[0.0086718751117587,0.014475892297924,0.010595576837659],[0.022779600694776,0.034754432737827,-0.0018142429180443]],[[0.017777513712645,-0.0055679739452899,-0.057554502040148],[0.030245969071984,-0.058166228234768,-0.049762107431889],[0.0098373098298907,0.0025521616917104,-0.025412021204829]],[[0.028741354122758,0.01865510083735,-0.050155445933342],[-0.0022347003687173,0.01970680616796,0.028256375342607],[0.003931934479624,-0.12733663618565,-0.017204988747835]],[[-0.077881544828415,-0.12895603477955,-0.031345874071121],[0.18946377933025,0.035482995212078,0.048870585858822],[0.02671492099762,-0.040692407637835,0.048283033072948]],[[-0.0736153870821,0.095616362988949,-0.042873024940491],[-0.038373429328203,-0.0017512766644359,0.018641456961632],[-0.063419878482819,0.087017029523849,0.12226936221123]],[[-0.14173302054405,-0.044232975691557,0.089380405843258],[-0.11518957465887,-0.030381029471755,0.037185709923506],[0.072662658989429,0.022962927818298,0.027687851339579]],[[0.11475339531898,-0.1219932064414,-0.16230672597885],[0.10470540821552,0.16218037903309,-0.14429743587971],[0.080308079719543,-0.037495747208595,0.062453649938107]],[[0.00038544987910427,0.024769945070148,0.05069649964571],[0.053034827113152,0.042578231543303,-0.0012407725444064],[-0.088471829891205,0.0002433069748804,0.057937640696764]],[[0.0042291339486837,-0.014420932158828,-0.018460834398866],[-0.12018632143736,-0.092322804033756,-0.021330233663321],[-0.11556959152222,-0.10327122360468,-0.071039423346519]],[[0.00047713759704493,-0.092678464949131,-0.10222909599543],[-0.02431289665401,0.086411967873573,-0.073874741792679],[0.17769874632359,0.012718544341624,-0.047900747507811]],[[-0.11763112992048,-0.22645474970341,-0.19619336724281],[0.10047598928213,0.030314415693283,-0.094327822327614],[0.1936908364296,-0.011364467442036,-0.029008327051997]],[[-0.00090240663848817,0.034315176308155,0.11321253329515],[0.05225683003664,-0.024977164342999,0.010229333303869],[-0.042026527225971,0.058156087994576,-0.08251765370369]],[[-0.03387751057744,0.041281871497631,-0.026995975524187],[-0.011656293645501,-0.15423034131527,0.017344459891319],[-0.048898607492447,-0.058387696743011,-0.071684122085571]],[[-0.008360804989934,-0.028240082785487,-0.06484417617321],[-0.031300984323025,0.051088809967041,0.04834657907486],[-0.023162487894297,-0.1330178976059,0.059274293482304]],[[-0.098525710403919,-0.10982409119606,0.052559550851583],[0.029355570673943,-0.11385515332222,-0.11911973357201],[0.073749609291553,-0.0049877520650625,-0.017219273373485]],[[-0.054633691906929,0.03424235060811,0.023910515010357],[0.049708224833012,0.051638592034578,0.00086182623635978],[-0.055063471198082,0.044731829315424,0.012750121764839]],[[-0.028633534908295,-0.038544204086065,-0.14991171658039],[0.07890623062849,-0.054049555212259,-0.068345941603184],[0.22260965406895,-0.0083215115591884,0.027843164280057]],[[0.14648480713367,0.19997656345367,0.019188806414604],[-0.055794443935156,-0.087172396481037,0.038261644542217],[-0.21151798963547,-0.15425632894039,-0.066115066409111]],[[0.015631657093763,-0.016252001747489,-0.049555864185095],[-0.0063156201504171,0.047670599073172,-0.019706422463059],[-0.00083672197069973,0.033998113125563,-0.0040133656002581]],[[0.10040714591742,0.029548292979598,-0.043071459978819],[-0.0012789519969374,-0.14471212029457,0.011833749711514],[0.053467560559511,0.042051918804646,-0.028353858739138]],[[-0.022170497104526,-0.013422115705907,0.040445741266012],[0.108896702528,-0.01404195278883,0.084733232855797],[0.053768008947372,0.0265550352633,0.052376069128513]],[[-0.04867110028863,0.039782203733921,0.045465517789125],[-0.084830805659294,-0.08468646556139,-0.031352732330561],[-0.073485985398293,-0.023825520649552,-0.031855013221502]],[[-0.097884252667427,-0.16696017980576,-0.04485947266221],[0.20010353624821,0.034724459052086,0.011874603107572],[0.084807187318802,0.015936534851789,-0.013106757774949]],[[0.047834876924753,-0.10188408941031,-0.043550882488489],[-0.11842311173677,0.021007234230638,-0.033945389091969],[0.13733699917793,0.086619213223457,-0.031239073723555]],[[-0.043970853090286,-0.049975976347923,0.037177201360464],[0.031117960810661,-0.25359725952148,0.064940325915813],[0.088887415826321,-0.018297452479601,0.0094079999253154]],[[-0.15468913316727,0.018381355330348,0.076994456350803],[-0.019078314304352,0.057018164545298,-0.094984866678715],[-0.069613620638847,0.080389931797981,-0.010732270777225]],[[-0.052468679845333,0.06476353853941,0.022789897397161],[0.031271941959858,-0.19116348028183,0.10885800421238],[-0.010070501826704,-0.0025972698349506,0.055042326450348]],[[-0.096775613725185,0.096156373620033,-0.10719785094261],[0.13854336738586,-0.026990974321961,0.059962447732687],[0.039219051599503,-0.047793202102184,0.0171007681638]],[[0.00075438903877512,0.051366358995438,0.033880092203617],[-0.040501061826944,-0.048971723765135,-0.015940451994538],[-0.096431106328964,0.032919902354479,-0.037407889962196]],[[0.036969192326069,0.0067113982513547,0.094622664153576],[0.035444263368845,-0.0022216155193746,-0.018645649775863],[-0.059783443808556,0.15004102885723,0.04307771846652]],[[0.01304935850203,0.082726173102856,0.021925093606114],[-0.05827971175313,0.15352074801922,0.015393951907754],[-0.13798435032368,0.018572993576527,0.0028410635422915]],[[0.00085079600103199,-0.11079794168472,-0.12975589931011],[0.019199414178729,0.053144082427025,-7.0513982791454e-05],[-0.15596030652523,-0.063692770898342,-0.0069802119396627]],[[-0.078845515847206,-0.14901268482208,-0.13629497587681],[0.057478938251734,-0.14609326422215,-0.033793602138758],[0.0013462115311995,0.096305601298809,0.015211116522551]],[[-0.018686231225729,-0.043372873216867,0.059101313352585],[0.12151566892862,-0.17666792869568,0.030139749869704],[0.068610608577728,0.082720018923283,-0.0059412000700831]],[[0.090213462710381,0.036088090389967,0.055479709059],[-0.071102328598499,0.054058816283941,0.070636481046677],[0.00284837000072,-0.12455756217241,-0.019011080265045]],[[-0.093749955296516,-0.032148983329535,-0.10767016559839],[-0.086575210094452,-0.026555802673101,0.066033288836479],[-0.042229443788528,-0.082906506955624,-0.036358095705509]],[[0.08870317786932,-0.018281124532223,0.037699718028307],[0.1041504740715,0.029069298878312,0.023442715406418],[-0.027095997706056,0.047557007521391,-0.051353633403778]],[[-0.0035038525238633,0.060665562748909,-0.021520728245378],[0.038647599518299,-0.1183338612318,0.17403818666935],[0.061563551425934,-0.06837709993124,-0.05255238711834]],[[0.048483941704035,-0.07655268907547,0.032470740377903],[-0.11160037666559,0.065755352377892,0.029990581795573],[0.069178454577923,-0.031145300716162,0.07663232088089]],[[-0.014561325311661,0.18082903325558,0.020645750686526],[-0.098523288965225,-0.037201389670372,0.15208791196346],[-0.19232201576233,-0.10131116211414,-0.017108792439103]],[[0.0054741282947361,-0.045065633952618,0.018502231687307],[0.076332487165928,0.05932467803359,-0.031812191009521],[0.062209662050009,0.036809910088778,-0.021154237911105]],[[-0.044914186000824,0.037504315376282,0.066361404955387],[-0.057876914739609,-0.067789241671562,0.015291503630579],[-0.028330331668258,0.045413792133331,-0.094700336456299]],[[0.037234757095575,0.049467589706182,0.022714411839843],[-0.058289591223001,0.065953448414803,0.021203557029366],[-0.085715144872665,0.072367496788502,-0.062154859304428]],[[0.053406860679388,-0.14085315167904,0.10697933286428],[0.026951974257827,0.1151884496212,-0.10330040752888],[0.0026734387502074,0.16850586235523,0.016067923977971]],[[-0.1202829182148,0.0297643058002,0.05638750270009],[0.043742343783379,0.11960186064243,-0.063799276947975],[-0.085964173078537,-0.029971953481436,0.0688606351614]],[[-0.0021678041666746,-0.13100697100163,-0.25487589836121],[0.075902253389359,-0.018930226564407,-0.11660396307707],[0.067452348768711,0.0084438659250736,-0.063799075782299]],[[0.012669264338911,0.045089464634657,0.058073353022337],[-0.37520751357079,0.22620536386967,-0.030229484662414],[-0.15851974487305,-0.17788390815258,0.020062368363142]],[[0.014936683699489,0.10807078331709,-0.11578933894634],[-0.0033583093900234,-0.025614975020289,0.049915041774511],[-0.040716990828514,0.019017957150936,0.0029009520076215]],[[-0.086399398744106,0.13828080892563,0.067328616976738],[0.036407817155123,-0.024645002558827,0.088375516235828],[-0.23212987184525,0.024675091728568,-0.10122219473124]],[[0.15767231583595,0.15402612090111,0.0018711058655754],[0.11763120442629,0.14824196696281,0.025970937684178],[0.13100661337376,0.021740941330791,0.061676107347012]],[[-0.093764536082745,-0.013062871061265,-0.12588304281235],[-0.061254598200321,-0.10288814455271,0.028258254751563],[-0.05552963539958,-0.17303235828876,-0.02549535036087]],[[-0.10022314637899,0.048851173371077,-0.041726909577847],[-0.15274322032928,0.02159633859992,-0.097085446119308],[-0.066888563334942,-0.015389007516205,-0.029488053172827]],[[-0.011013286188245,-0.023097403347492,-0.00029846050892957],[-0.012948920950294,-0.10680612176657,-0.030890792608261],[0.041018296033144,-0.048635181039572,-0.023831106722355]],[[0.015982754528522,-0.028758686035872,0.050093628466129],[0.037419505417347,-0.0660759806633,0.039375994354486],[-0.053518146276474,-0.066599123179913,-0.10972145199776]],[[0.090961411595345,-0.066247016191483,0.059580001980066],[0.010317376814783,0.14798255264759,-0.034776009619236],[-0.020667729899287,-0.077238418161869,0.10266675800085]],[[0.036597605794668,0.024760065600276,0.090439438819885],[-0.023800449445844,0.024135366082191,0.026323234662414],[-0.00080001557944342,-0.029888408258557,0.014602105133235]],[[-0.081999816000462,0.023799777030945,0.014461562968791],[0.042386010289192,-0.031528010964394,0.11810950934887],[-0.11566495895386,0.061048410832882,-0.016258036717772]],[[-0.11776076257229,-0.13636103272438,0.092554531991482],[-0.050367061048746,-0.11821239441633,0.1054619923234],[-0.10330568253994,0.0079037053510547,-0.018695868551731]],[[0.10403772443533,0.0077715674415231,0.019281854853034],[-0.008812552317977,-0.059020355343819,0.036966226994991],[-0.0353036634624,-0.17994816601276,-0.032345704734325]],[[-0.068210527300835,-0.037631925195456,0.03903716430068],[0.050062675029039,-0.028741292655468,-0.025242686271667],[0.031928222626448,-0.06992395222187,-0.031701251864433]]],[[[0.12344088405371,-0.11545469611883,0.046718075871468],[-0.15612585842609,-0.074793785810471,0.094319857656956],[0.028242669999599,0.077850595116615,0.22419196367264]],[[-0.053403474390507,0.087776258587837,0.036660518497229],[0.017683021724224,0.0097437230870128,0.017900161445141],[-0.068014606833458,-0.033223707228899,-0.12615196406841]],[[0.10647038370371,-0.04352069273591,-0.038071893155575],[-0.026443338021636,0.0015159489121288,-0.036303330212831],[0.043755266815424,-0.01478838454932,-0.042135689407587]],[[-0.072246387600899,-0.042821142822504,0.017793556675315],[-0.061257526278496,0.045606344938278,0.016329396516085],[-0.0094591239467263,-0.04070832952857,-0.011120024137199]],[[-0.025788737460971,-0.077219732105732,-0.13593183457851],[-0.060688085854053,-0.062742978334427,-0.10601039230824],[-0.011103589087725,0.085072413086891,0.099566653370857]],[[0.14555415511131,0.23995184898376,0.10927864164114],[0.017821399495006,0.032428022474051,-0.10929059237242],[-0.062461689114571,-0.049576800316572,-0.16066105663776]],[[-0.0054505309090018,0.031717170029879,0.0010598920052871],[-0.01076852530241,-0.040486868470907,-0.01402476709336],[0.0051170778460801,0.013868149369955,0.0014637263957411]],[[0.11452393233776,0.06377612054348,0.0096846874803305],[0.0067278323695064,-0.0071955402381718,-0.073576591908932],[-0.058679562062025,-0.042945306748152,-0.025808161124587]],[[-0.16811963915825,-0.13788865506649,0.057535219937563],[0.012141909450293,-0.0075044753029943,0.061620328575373],[0.10794179141521,0.062445927411318,-0.01662166044116]],[[-0.034037537872791,-0.077963158488274,-0.044093232601881],[-0.023288711905479,-0.0070387772284448,-0.031846906989813],[-0.002139484975487,0.017707461491227,0.052562601864338]],[[0.010220115073025,0.023039396852255,0.038608092814684],[0.048346091061831,-0.035497382283211,-0.12797735631466],[0.034219264984131,0.069482192397118,-0.052281271666288]],[[-0.0068656005896628,-0.0031052802223712,0.038467034697533],[-0.034265205264091,0.025178536772728,-0.020328091457486],[0.014876578934491,-0.060372442007065,-0.043142084032297]],[[-0.054224397987127,-0.013613995164633,0.0062581785023212],[0.0061313891783357,-0.084257625043392,-0.034435778856277],[0.032656963914633,0.0042532766237855,-0.15542203187943]],[[0.040338829159737,0.086550034582615,0.050442680716515],[0.045114163309336,0.082055673003197,0.057899076491594],[0.013873918913305,0.056445799767971,-0.015817124396563]],[[0.0057550794444978,0.15742808580399,0.038569401949644],[0.024152096360922,0.071114167571068,-0.073435440659523],[0.022625636309385,0.089569665491581,-0.037233974784613]],[[-0.091138035058975,0.025385729968548,-0.026236539706588],[-0.049605056643486,-0.013638655655086,0.11223895847797],[-0.030117183923721,0.0095079848542809,0.092931762337685]],[[0.023001139983535,0.019908208400011,0.13235822319984],[-0.032633204013109,0.010811178945005,-0.056341722607613],[0.024269392713904,0.032513774931431,0.052908651530743]],[[-0.10800014436245,-0.055944986641407,-0.079400643706322],[-0.0079479282721877,-0.034227449446917,0.033133950084448],[-0.0014275889843702,-0.026297103613615,0.10664318501949]],[[-0.011513561941683,-0.088712297379971,0.046659175306559],[-0.076007343828678,0.01758685708046,0.00050329539226368],[-0.10098364204168,0.057939127087593,-0.023913422599435]],[[0.041850540786982,0.047339897602797,0.010568452998996],[-0.0053631230257452,-0.00059180281823501,-0.036219634115696],[0.0092669893056154,0.0023745722137392,-0.034669350832701]],[[0.0054430924355984,0.024884153157473,0.024067983031273],[0.026262320578098,0.068591415882111,0.03379649668932],[0.024809047579765,0.077924966812134,0.18034002184868]],[[0.23501451313496,0.02207818813622,-0.16710805892944],[-0.16764031350613,-0.041473869234324,-0.18546481430531],[-0.075760863721371,-0.042743492871523,-0.099536828696728]],[[-0.031546134501696,-0.031318850815296,-0.0047272043302655],[-0.011663882993162,-0.028128569945693,0.03483060002327],[-0.017923846840858,0.053191009908915,0.036000523716211]],[[0.11632313579321,-0.11784374713898,-0.16625611484051],[-0.16963112354279,-0.088920116424561,-0.13637214899063],[-0.12825626134872,-0.19186875224113,0.16546067595482]],[[0.066671207547188,0.039116840809584,0.013224185444415],[-0.060454044491053,-0.020239848643541,0.0039888191968203],[0.0013586500426754,-0.0091968812048435,0.11489248275757]],[[-0.026420207694173,0.047317083925009,0.069637939333916],[0.048329878598452,0.032747816294432,-0.092013441026211],[0.064968928694725,-0.073014326393604,-0.016446026042104]],[[-0.030615469440818,0.091942235827446,0.026164580136538],[-0.01657503657043,0.11816450953484,-0.0033221538178623],[0.019480427727103,-0.027694750577211,0.05307400226593]],[[0.04830365255475,-0.14330254495144,-0.020981481298804],[-0.1296221613884,-0.022644709795713,0.024338513612747],[0.0021116251591593,0.040974337607622,0.11285919696093]],[[0.050082851201296,0.063131026923656,0.041217178106308],[0.039457954466343,-0.10508915781975,-0.056296106427908],[-0.031714983284473,-0.0075640478171408,-0.03926744312048]],[[0.15576645731926,-0.068956047296524,-0.043737322092056],[-0.0017507178708911,-0.0045664212666452,-0.029655581340194],[-0.055166117846966,-0.073422953486443,0.12106989324093]],[[-0.079645164310932,-0.022968772798777,-0.092430651187897],[0.00031699336250313,-0.0020837066695094,-0.0027369991876185],[0.018648203462362,0.097136415541172,0.078155770897865]],[[-0.012635267339647,0.070612497627735,0.17499525845051],[-0.013634520582855,-0.032435562461615,0.027909770607948],[-0.063930220901966,0.012464388273656,0.011022463440895]],[[-0.021660346537828,-0.023716093972325,-0.019210744649172],[0.12632586061954,-0.12890103459358,-0.0024853970389813],[0.094173565506935,-0.037027593702078,-7.1813410613686e-05]],[[0.031921338289976,-0.048331655561924,0.0014440861996263],[-0.081149302423,-0.1893035620451,-0.047903157770634],[-0.088515289127827,-0.09046895802021,-0.0093396389856935]],[[-0.099815674126148,-0.065789930522442,0.040123555809259],[-0.11483024805784,0.011162823066115,0.0778863504529],[-0.040899977087975,0.16081178188324,0.094939596951008]],[[-0.035498023033142,0.030112458392978,-0.0075100245885551],[0.021253684535623,0.0076388642191887,-0.045568320900202],[0.01409063860774,-0.011172112077475,0.024589531123638]],[[-0.033404126763344,0.101193331182,0.080408446490765],[0.059509739279747,0.04777330160141,-0.019148007035255],[0.063561305403709,-0.046273078769445,-0.10684102773666]],[[0.073024578392506,0.1437231451273,0.12155026197433],[0.01842931099236,0.011946587823331,-0.11532143503428],[-0.16031856834888,-0.096003882586956,-0.0036233579739928]],[[0.0044240863062441,-0.00047586462460458,0.13570675253868],[-0.086084850132465,-0.0069811926223338,-0.092716701328754],[0.0087502272799611,-0.042103234678507,-0.06878612190485]],[[0.020014766603708,-0.046733267605305,0.015614164061844],[0.011491893790662,-0.034735321998596,-0.00016700669948477],[-0.014791362918913,-0.047741107642651,-0.11931142956018]],[[-0.1186880171299,-0.012815198861063,0.031577613204718],[-0.020526656880975,-0.055455185472965,0.059275884181261],[0.024644430726767,-0.040542297065258,0.12859006226063]],[[0.17793220281601,-0.059769738465548,-0.014924440532923],[-0.13465788960457,-0.097562335431576,0.0075695938430727],[-0.067644618451595,0.082890771329403,0.041877917945385]],[[0.064547725021839,-0.036701522767544,-0.030250124633312],[0.016378991305828,0.0068690069019794,0.019547201693058],[0.027543159201741,0.026221100240946,0.051839612424374]],[[-0.024834088981152,0.035535033792257,0.036193132400513],[-0.0081377131864429,-0.10118158906698,-0.033486008644104],[-0.031844016164541,-0.11393227428198,-0.040904078632593]],[[-0.1685836315155,-0.0027832693886012,-0.1254225820303],[0.0050161764957011,0.055417705327272,0.0062955403700471],[0.066977247595787,0.034301109611988,0.0041210590861738]],[[0.0023684916086495,-0.035581547766924,-0.02941913716495],[0.06568643450737,0.11149179190397,-0.14604753255844],[0.099040552973747,-0.024900807067752,-0.14833001792431]],[[0.24398122727871,0.09482380002737,-0.13405150175095],[0.10558959841728,-0.14438942074776,-0.19690831005573],[0.081263996660709,-0.29827991127968,-0.086746834218502]],[[0.011356613598764,-0.047803830355406,0.0034083002246916],[-0.035584013909101,0.020684482529759,-0.045502439141273],[0.030156848952174,-0.013506808318198,-0.034163177013397]],[[-0.1901693046093,0.017599612474442,0.066296130418777],[-0.10149274766445,0.023298682644963,0.068231426179409],[0.05695616453886,0.081607483327389,0.0046549472026527]],[[-0.062249191105366,-0.074874766170979,-0.00148407346569],[-0.085329480469227,-0.12356459349394,0.042099609971046],[-0.090263918042183,-0.09996397793293,0.10864815115929]],[[0.092486441135406,-0.031968884170055,-0.019681138917804],[0.10068388283253,-0.026111895218492,0.034560091793537],[-0.031037919223309,-0.018794203177094,0.030720507726073]],[[0.0054877316579223,0.035921920090914,0.062594771385193],[0.0068251402117312,0.031998880207539,-0.021063484251499],[0.060696229338646,-0.021670406684279,-0.040263641625643]],[[0.019271584227681,-0.088224790990353,-0.015317415818572],[-0.059501811861992,0.00016015546862036,-0.020765818655491],[-0.028725828975439,0.067107878625393,0.021194975823164]],[[-0.079372368752956,0.011244207620621,0.097038827836514],[0.071996107697487,0.073556527495384,0.071017019450665],[0.0041160373948514,0.059018693864346,0.100181825459]],[[-0.0068738041445613,-0.039062552154064,-0.049824476242065],[-0.11349338293076,-0.0266356728971,-0.040029242634773],[-0.049928609281778,0.10988723486662,0.14077590405941]],[[-0.041853070259094,-0.012255119159818,0.042148135602474],[-0.021595146507025,-0.038417436182499,0.086593806743622],[-0.027193175628781,-0.030436299741268,0.049466114491224]],[[-0.089069627225399,-0.13058677315712,-0.054625920951366],[0.045880723744631,-0.075944975018501,-0.047207701951265],[0.023644974455237,-0.085280224680901,-0.026709957048297]],[[0.028179345652461,-0.0090861432254314,-0.047710325568914],[-0.070413321256638,-0.035799756646156,-0.077110826969147],[-0.012625019997358,-0.086673803627491,-0.11565900593996]],[[0.0035356192383915,0.012678091414273,0.025159614160657],[-0.040599789470434,-0.0062499921768904,0.10497987270355],[0.025974705815315,-0.054934620857239,0.011810745112598]],[[0.025996878743172,0.084396965801716,0.01963490433991],[0.014598503708839,0.012620581313968,-0.089801371097565],[0.036762904375792,-0.045108165591955,-0.021657221019268]],[[-0.17986422777176,-0.016408810392022,-0.031220592558384],[0.056489937007427,0.084202386438847,0.038699306547642],[0.039906896650791,0.10819293558598,-0.054022826254368]],[[-0.020673949271441,0.11701500415802,0.10173511505127],[0.0044988123700023,0.022556494921446,-0.028191773220897],[-0.0055117309093475,-0.11952775716782,-0.0079359728842974]],[[-0.050067856907845,-0.10516831278801,-0.055512562394142],[-0.064291790127754,-0.098223358392715,-0.016037492081523],[0.032189588993788,0.0069692195393145,0.070614002645016]],[[-0.056218449026346,-0.057450897991657,0.0015509250806645],[0.090184658765793,0.065876759588718,0.028469663113356],[0.072844766080379,-0.009958908893168,-0.14922533929348]]],[[[0.034768603742123,0.12358298152685,0.092814370989799],[-0.059525460004807,0.0001627160818316,0.0076098507270217],[-0.052671957761049,0.015420363284647,-0.044582925736904]],[[-0.022613642737269,-0.13121655583382,-0.1684346050024],[-0.057393807917833,0.035444971174002,0.1122132614255],[-0.05319444835186,-0.16081263124943,-0.014697502367198]],[[-0.0076883821748197,-0.022257596254349,-0.0224550049752],[-0.012880792841315,0.02909879758954,-0.1255969107151],[-0.0093287145718932,0.032427161931992,-0.12634550035]],[[-0.035977330058813,0.086441591382027,0.025376215577126],[0.1544962823391,-0.056340523064137,-0.12576664984226],[-0.0035213241353631,0.076410233974457,0.113475009799]],[[0.02668178267777,0.18016822636127,0.060032062232494],[-0.024808712303638,-0.074598535895348,0.034386835992336],[0.03430251032114,-0.16463467478752,-0.16355535387993]],[[-0.12643042206764,-0.097454011440277,-0.10285400599241],[0.16897292435169,-0.18753129243851,-0.098604865372181],[-0.072344847023487,0.042289968580008,-0.0062339594587684]],[[0.057330545037985,-0.057941529899836,0.03065830282867],[-0.064172871410847,-0.061939239501953,0.028621591627598],[-0.072581730782986,-0.076085694134235,-0.052997764199972]],[[-0.047768779098988,-0.13373589515686,-0.054204691201448],[-0.056805938482285,-0.023417854681611,-0.093306988477707],[0.059609487652779,0.1627014875412,0.18860965967178]],[[0.081482380628586,0.084372207522392,0.02674875035882],[-0.065578229725361,-0.068517476320267,0.10999011993408],[0.049460150301456,0.06554126739502,-0.034739032387733]],[[0.087840065360069,0.03703523427248,-0.021280137822032],[0.034273687750101,0.052503980696201,-0.048367451876402],[-0.19189141690731,-0.0078566800802946,-0.10885567963123]],[[0.010846305638552,0.026519622653723,0.0047056889161468],[0.00020912229956593,-0.097563579678535,0.052256230264902],[-0.11114986985922,-0.041896305978298,-0.068647161126137]],[[-0.055872678756714,-0.02250836417079,0.039676759392023],[-0.01259396225214,0.013931690715253,-0.02263879776001],[0.028627160936594,0.0042651793919504,-0.020651627331972]],[[-0.078314207494259,0.080368153750896,0.038004022091627],[0.028376698493958,0.15740182995796,-0.04548803716898],[0.013194306753576,-0.12717500329018,-0.082536600530148]],[[-0.017886968329549,-0.021745793521404,-0.049978900700808],[-0.084111534059048,0.057769082486629,0.065405063331127],[-0.099397428333759,-0.085270442068577,-0.012187175452709]],[[-0.033156417310238,-0.027257710695267,-0.14394910633564],[-0.052020527422428,0.077630147337914,0.055670127272606],[0.043720621615648,0.049712885171175,-0.065691247582436]],[[0.066991835832596,-0.078240476548672,-0.11141353845596],[0.060682091861963,0.031807109713554,0.10181256383657],[-0.011637875810266,-0.078911080956459,-0.015123535878956]],[[-0.053479410707951,-0.10127119719982,-0.034502156078815],[-0.096187599003315,-0.052582636475563,-0.05053224414587],[0.013099497184157,-0.060153510421515,-0.098586872220039]],[[0.036006323993206,-0.1076352968812,0.0121786929667],[0.01034452021122,-0.12491125613451,-0.093316666781902],[0.0021884054876864,-0.01033434458077,-0.11436434090137]],[[-0.010672494769096,-0.041791401803493,-0.04123629629612],[-0.0090888338163495,-0.032137006521225,-0.089248538017273],[-0.12435787916183,-0.053359165787697,0.012956281192601]],[[-0.02820336073637,-0.039197724312544,0.10914739966393],[0.0071868025697768,-0.062363687902689,-0.032807495445013],[0.030900770798326,-0.0051094200462103,-0.022988999262452]],[[0.11708229780197,-0.017174130305648,0.01473771315068],[-0.099341370165348,0.054968327283859,-0.020267065614462],[-0.060335237532854,-0.073418080806732,-0.036056935787201]],[[0.063203707337379,-0.0098692746832967,-0.045273367315531],[0.059967841953039,0.10762391239405,-0.047426000237465],[-0.099793113768101,-0.068280763924122,-0.074489645659924]],[[0.060597732663155,0.05957393348217,0.038139499723911],[-0.082916095852852,-0.054354172199965,-0.02099584043026],[0.034038998186588,-0.0052590295672417,-0.035469155758619]],[[-0.098297506570816,-0.10021579265594,-0.021602855995297],[-0.035238858312368,-0.0086981551721692,-0.10546068847179],[0.07351541519165,0.10874363780022,0.12104859948158]],[[-0.10435929894447,0.034726157784462,-0.22578617930412],[-0.083538345992565,0.012850855477154,-0.021124061197042],[0.11077487468719,-0.01731039956212,-0.12065605819225]],[[0.012138119898736,-0.11091706156731,-0.029526054859161],[-0.077352553606033,0.010307153686881,-0.00068154773907736],[0.035138823091984,-0.064370021224022,-0.043654266744852]],[[-0.079145170748234,0.032983463257551,0.077174350619316],[0.10009177774191,-0.16883558034897,-0.085479378700256],[-0.029606951400638,0.071170300245285,-0.099798627197742]],[[-0.065104097127914,-0.031838942319155,0.079273819923401],[0.033789835870266,0.10885478556156,0.034267406910658],[-0.028559222817421,-0.013012772426009,0.17561002075672]],[[0.034497566521168,-0.18005582690239,-0.078010506927967],[0.065675623714924,0.13336834311485,0.11891258507967],[-0.11442980915308,-0.18943144381046,0.020033916458488]],[[0.018511494621634,-0.045751083642244,-0.19297978281975],[-0.0054415869526565,-0.13603058457375,-0.13323849439621],[-0.07591537386179,0.081312119960785,0.0071443398483098]],[[-0.038768704980612,-0.013318606652319,-0.047784850001335],[0.044281993061304,-0.025449547916651,0.0083647202700377],[-0.078497901558876,-0.017870269715786,0.0096317483112216]],[[0.0083336988463998,0.057087235152721,0.042009919881821],[0.0014366960385814,0.046530902385712,-0.011054531671107],[-0.070967599749565,0.045057769864798,-0.035736281424761]],[[-0.092124134302139,0.0057992697693408,-0.036764550954103],[-0.059124253690243,0.05415852740407,0.1087694466114],[-0.0080078095197678,-0.020061088725924,-0.055239252746105]],[[0.0079871714115143,0.1285305917263,-0.023675337433815],[-0.051432922482491,0.049977459013462,-0.18028934299946],[-0.038336828351021,-0.013390776701272,0.033936869353056]],[[-0.18620237708092,0.0070130405947566,-0.01335924398154],[-0.068272404372692,-0.14643226563931,-0.054263178259134],[0.056901600211859,0.20639136433601,0.061320159584284]],[[0.011910333298147,0.011839262209833,-0.052655719220638],[-0.014615113846958,-0.06902638822794,-0.028311876580119],[0.019307572394609,-0.043278619647026,0.022739179432392]],[[0.066383019089699,-0.053188014775515,-0.037006232887506],[-0.0052260025404394,0.12517592310905,-0.02271924726665],[-0.077214635908604,-0.048037491738796,-0.059445463120937]],[[0.14857114851475,0.067071326076984,0.039330158382654],[-0.16708537936211,-0.1645794659853,-0.0059164175763726],[0.091592654585838,-0.041945833712816,-0.089473739266396]],[[-0.026689538732171,-0.037611238658428,0.074688278138638],[-0.0090511608868837,-0.036981649696827,0.12550349533558],[-0.091806545853615,-0.0707081630826,0.0079017970710993]],[[-0.023680210113525,0.0034227105788887,0.13899965584278],[0.0285130944103,0.14232623577118,-0.039613358676434],[-0.12851104140282,-0.015434545464814,0.081115536391735]],[[0.012848479673266,0.069001279771328,0.090015456080437],[0.029749725013971,-0.015165673568845,-0.075803987681866],[-0.098099172115326,-0.044336728751659,-0.05765476077795]],[[-0.13838209211826,-0.11924735456705,-0.14117729663849],[0.07224827259779,0.1201368868351,0.021059324964881],[0.030882462859154,0.062102310359478,0.21140316128731]],[[-0.15649385750294,0.051952056586742,-0.053121238946915],[0.008437117561698,-0.047890931367874,-0.059997335076332],[0.072361938655376,0.050064403563738,0.070470787584782]],[[0.056057143956423,-0.022854531183839,-0.034252427518368],[-0.052426680922508,0.091901451349258,-0.0084446854889393],[0.036718275398016,-0.11513479799032,0.011654670350254]],[[-0.051801331341267,0.11587052792311,0.13230183720589],[-0.09912721067667,0.066295973956585,-0.12048648297787],[-0.0638113245368,0.014874257147312,-0.02071788161993]],[[-0.052255589514971,0.0069053280167282,-0.023649591952562],[0.11351199448109,-0.036435917019844,0.078735195100307],[0.027054980397224,-0.014043299481273,-0.11319598555565]],[[0.21427436172962,0.087960854172707,-0.042070884257555],[0.0013819325249642,-0.022228747606277,-0.090510375797749],[-0.027246624231339,-0.08265994489193,-0.08536035567522]],[[-0.016203377395868,-0.031384516507387,0.023414693772793],[-0.088534370064735,-0.074811220169067,-0.0071486071683466],[0.060019288212061,0.062344674021006,-0.03195583820343]],[[-0.01163165550679,-0.040502648800611,-0.085263751447201],[0.021955963224173,-0.037818528711796,0.010511616244912],[0.059667158871889,-0.11407819390297,-0.12151842564344]],[[-0.071765646338463,0.01613898947835,-0.028703548014164],[0.059750124812126,-0.10717676579952,-0.056093722581863],[0.058982457965612,0.061194866895676,-0.068038761615753]],[[0.0034453745465726,0.057434391230345,-0.010314610786736],[-0.021222352981567,-0.037135440856218,-0.012290883809328],[0.079796224832535,-0.004305764567107,-0.055956017225981]],[[0.0023388711269945,-0.19102014601231,0.031985010951757],[0.076796844601631,0.03853552043438,-0.054897267371416],[0.013970396481454,0.023875372484326,0.10740289837122]],[[-0.038899946957827,0.0071423784829676,0.1539149582386],[0.075700499117374,-0.048928931355476,0.11372415721416],[0.0057711796835065,-0.041870776563883,0.10116028040648]],[[0.012631889432669,0.0028439231682569,0.2186973541975],[0.071987472474575,0.13199293613434,-0.079244121909142],[0.004307541064918,0.10366502404213,0.15130780637264]],[[0.083839498460293,0.026769407093525,0.065382711589336],[-0.012842600233853,0.12198971956968,0.061514258384705],[0.0061026671901345,-0.14467811584473,-0.051187939941883]],[[0.032088909298182,0.098978452384472,0.026277396827936],[-0.083315461874008,-0.15728150308132,0.13906173408031],[-0.003834223607555,0.15010596811771,-0.12511579692364]],[[-0.063739739358425,0.094289518892765,-0.007915792055428],[-0.10832865536213,-0.089041948318481,-0.15299460291862],[-0.13026505708694,0.018109539523721,0.192965939641]],[[-0.01609256491065,0.068388447165489,-0.092396154999733],[0.016032509505749,-0.093635477125645,0.04206619784236],[0.0096789915114641,-0.010830876417458,0.069584704935551]],[[0.029703510925174,0.018842965364456,-0.0086876703426242],[-0.069045647978783,0.0086408220231533,-0.038131389766932],[0.023502623662353,-0.13745787739754,-0.031870182603598]],[[-0.031109075993299,-0.084998555481434,0.016587411984801],[0.040812823921442,0.078029587864876,-0.0044200182892382],[-0.013008367270231,-0.013836563564837,0.05831041932106]],[[-0.009156228043139,0.098922125995159,-0.0037296775262803],[0.012944590300322,-0.10218055546284,-0.031870298087597],[0.074552148580551,0.0015161199262366,-0.0068878126330674]],[[0.24709151685238,-0.0066179730929434,-0.0030210665427148],[0.15850593149662,0.097880110144615,-0.12983000278473],[-0.01395849045366,-0.063688486814499,0.038726460188627]],[[0.13452656567097,0.011646951548755,-0.088378354907036],[0.052313007414341,0.12877894937992,0.098336540162563],[-0.17537006735802,-0.21167956292629,-0.071842290461063]],[[-0.045368164777756,-0.030715350061655,-0.18684703111649],[-0.047002874314785,0.098048284649849,0.056619867682457],[-0.049444764852524,-0.09356851875782,0.097414471209049]]],[[[-0.030259011313319,0.053804904222488,0.0599500015378],[0.029990449547768,0.03259401768446,-0.072523199021816],[-0.065789461135864,-0.11461672186852,-0.0033464336302131]],[[0.035919617861509,0.014704911969602,-0.016844540834427],[-0.032329104840755,-0.038708861917257,-0.0233637932688],[0.012071748264134,-0.068608447909355,0.033718816936016]],[[0.081355057656765,-0.084586851298809,0.0082804569974542],[0.084451206028461,-0.11954334378242,-0.031537380069494],[0.10254906862974,0.037632241845131,-0.01620271243155]],[[7.7001393947285e-05,0.030346184968948,-0.023515272885561],[0.052862208336592,0.02290278673172,0.0046510281972587],[0.021180266514421,0.034440904855728,0.030208637937903]],[[0.010295430198312,-0.019307274371386,0.0090431105345488],[0.0026992962229997,0.013743821531534,0.094720102846622],[-0.077334500849247,-0.00033109579817392,-0.051962319761515]],[[0.10851524025202,-0.05513010174036,-0.0072484305128455],[0.008678175508976,-0.090052507817745,-0.16468805074692],[0.10719496756792,-0.010199626907706,-0.071664601564407]],[[0.018312836065888,0.0013852459378541,0.019210334867239],[-0.090733610093594,0.0031227986328304,-0.0048769442364573],[-0.045742969959974,0.011826771311462,-0.034027319401503]],[[-0.10593876987696,-0.079337447881699,0.045222029089928],[0.0059754978865385,-0.0046991058625281,-0.022499199956656],[0.0085994433611631,0.068141661584377,0.038559157401323]],[[-0.017219485715032,0.048293512314558,-0.0014571744250134],[-0.014397326856852,0.0073364609852433,-0.07464611530304],[-0.02844219841063,0.0080974455922842,-0.048736158758402]],[[-0.0076643382199109,0.064508005976677,-0.034859627485275],[0.047836199402809,0.033419258892536,0.064063861966133],[-0.011344674043357,0.0059614474885166,-0.001781546510756]],[[0.0077133690938354,0.048711862415075,0.043527662754059],[-0.035410903394222,0.016954207792878,0.015508517622948],[0.051082603633404,-0.087776444852352,0.048165619373322]],[[-0.035357225686312,0.0098651079460979,-0.015538328327239],[0.055428985506296,0.0048308172263205,-0.0089193591848016],[0.017143901437521,-0.066364116966724,0.0098759029060602]],[[0.067192651331425,0.029650438576937,-0.023226315155625],[-0.034971352666616,0.085730038583279,-0.024270659312606],[0.024410434067249,0.078374974429607,0.069388993084431]],[[0.01127440109849,0.014061981812119,0.060458388179541],[-0.012567109428346,0.042131260037422,-0.010608588345349],[0.025644939392805,-0.040886752307415,-0.018910193815827]],[[-0.028788344934583,-0.032740045338869,-0.034584879875183],[-0.089780554175377,-0.023869583383203,-0.037068113684654],[0.10868941992521,-0.024259459227324,-0.015438576228917]],[[0.027519626542926,0.047202531248331,0.012853956781328],[-0.074844434857368,-0.02419619075954,0.065700575709343],[-0.013201527297497,0.082751952111721,0.057750731706619]],[[-0.047832507640123,-0.045839373022318,0.0051793619059026],[-0.02342039719224,0.043517325073481,-0.079236589372158],[-0.017302338033915,-0.022997284308076,0.010271986946464]],[[-0.015564186498523,-0.0021929314825684,-0.023980401456356],[-0.028003860265017,0.0048068147152662,-0.00083000812446699],[0.014968113973737,0.023605113849044,-0.049948737025261]],[[-0.0009438288398087,0.062304459512234,-0.023025555536151],[0.064504392445087,-0.050310652703047,-0.03107912838459],[-0.046417593955994,0.024467637762427,-0.027229653671384]],[[0.022042138502002,-0.04202900454402,-0.079526737332344],[0.015833705663681,-0.027653304859996,-0.00099719176068902],[-0.021593391895294,0.067620255053043,0.039177928119898]],[[-0.0052849701605737,-0.063892640173435,-0.05948605760932],[-0.024703348055482,-0.054865535348654,-0.006350941490382],[-0.036206156015396,0.11462447047234,0.0066481376998127]],[[-0.039542730897665,0.028222154825926,-0.033346146345139],[-0.013937733136117,0.031901393085718,0.036837682127953],[0.032605648040771,-0.014964651316404,0.0059127495624125]],[[0.058119289577007,-0.017828403040767,0.017429394647479],[-0.04283083230257,0.05905582383275,0.036537159234285],[-0.023851854726672,-0.030642325058579,-0.038118492811918]],[[-0.029953770339489,-0.027981046587229,-0.021151941269636],[-0.035300046205521,-0.090107940137386,0.0037097816821188],[-0.050207626074553,-0.043611027300358,0.10518688708544]],[[-0.090125910937786,0.017948279157281,-0.039991166442633],[-0.070473194122314,-0.0082945628091693,-0.10100083053112],[0.0021528736688197,0.032478086650372,0.083722211420536]],[[-0.048517618328333,-0.076477281749249,-0.03294513002038],[-5.1871327741537e-05,-0.079067409038544,-0.014066024683416],[-0.013660646043718,-0.041042305529118,-0.021521288901567]],[[-0.17223870754242,-0.061637885868549,0.024550937116146],[-0.053766686469316,-0.13094887137413,-0.024210615083575],[0.027469970285892,-0.044504716992378,-0.065374299883842]],[[-0.0059497281908989,0.038877617567778,-0.026101000607014],[-0.014681110158563,0.059954576194286,-0.06165274605155],[0.019681246951222,-0.058349676430225,0.00067281525116414]],[[0.076432555913925,-0.14551922678947,0.0046119340695441],[-0.013114516623318,0.04330712929368,-0.0095843113958836],[0.0071062175557017,-0.025624761357903,0.0068387822248042]],[[-0.057834956794977,0.0029867656994611,0.080483198165894],[0.0014488700544462,-0.026906684041023,-0.0069723799824715],[-0.048384316265583,0.023768844082952,-0.043756756931543]],[[0.026743490248919,0.026639143005013,0.046497520059347],[-0.11239414662123,0.026679936796427,-0.063194125890732],[0.067125484347343,-0.046993274241686,0.012297680601478]],[[0.0096388850361109,-0.020704761147499,0.099636554718018],[-0.044237494468689,0.0053701791912317,-0.042621646076441],[-0.1346793025732,-0.0053014261648059,-0.027002580463886]],[[0.08674018830061,0.019407102838159,-0.046413466334343],[0.049990873783827,0.01754105836153,-0.015868380665779],[0.023048594594002,0.090069070458412,-0.034803424030542]],[[-0.085943482816219,-0.1114684715867,-0.053809359669685],[-0.068216912448406,0.030623201280832,-0.019945891574025],[-0.088806763291359,-0.010140711441636,0.0074521098285913]],[[-0.090789988636971,0.0076173949055374,-0.082738757133484],[-0.028859360143542,-0.03988117352128,-0.053883649408817],[-0.027446499094367,0.034467034041882,-0.032205849885941]],[[-0.044458087533712,-0.072592087090015,-0.05363967269659],[-0.10994459688663,-0.043293859809637,-0.025689993053675],[0.010771310888231,0.045795068144798,0.020775487646461]],[[0.011119171977043,-0.038561604917049,-0.023504644632339],[-0.037381358444691,-0.014165345579386,-0.023671552538872],[0.021937560290098,-0.0066016628406942,0.039753247052431]],[[0.0049243080429733,0.036343216896057,0.014536360278726],[0.017070142552257,0.040480978786945,0.040608417242765],[-0.11865072697401,-0.09990668296814,-0.030570974573493]],[[0.011209460906684,0.0033386598806828,-0.011436141096056],[-0.030530791729689,-0.11023084074259,0.027176471427083],[0.021196398884058,-0.0063702901825309,-0.0083732390776277]],[[0.084201119840145,-0.029459495097399,-0.0097565064206719],[0.0043860417790711,-0.038525938987732,-0.0021471937652677],[0.014869218692183,0.063475728034973,-0.0081712258979678]],[[0.043370328843594,-0.081110671162605,-0.023227278143167],[-0.0088576944544911,-0.0088117644190788,-0.079196505248547],[0.068983502686024,0.0033345075789839,-0.044690120965242]],[[0.022323386743665,-0.010805011726916,-0.055790118873119],[0.053250569850206,0.0029135327786207,0.00789725035429],[-0.014286807738245,-0.027501005679369,0.0050226380117238]],[[-0.033914845436811,0.028255203738809,0.013480542227626],[0.007765538059175,-0.029164189472795,-0.013365195132792],[-0.1261188685894,0.004785590339452,-0.0013392640976235]],[[-0.019730100408196,-0.038010913878679,0.0050396099686623],[0.030274273827672,-0.010482177138329,-0.052175238728523],[0.035982016474009,0.0072858133353293,-0.005673713516444]],[[0.041547626256943,-0.099195472896099,-0.020125420764089],[-0.016122395172715,-0.024713141843677,0.013405559584498],[-0.080194890499115,-0.071544855833054,-0.084785334765911]],[[0.0016697086393833,0.020343272015452,0.049231383949518],[-0.06984057277441,-0.012779499404132,-0.062413211911917],[-0.039995484054089,0.027163110673428,-0.11351396143436]],[[-0.026903837919235,-0.0013954794267192,-0.034333676099777],[-0.017037240788341,0.0030198313761503,0.060543108731508],[-0.011476369574666,-0.0012446463806555,-0.015421693213284]],[[-0.029306704178452,-0.021787289530039,-0.036079443991184],[-0.053391180932522,-0.050426077097654,-0.033844139426947],[-0.04522954672575,-0.10012210905552,0.037511736154556]],[[-0.018035294488072,-0.023474907502532,0.0076582347974181],[-0.028521066531539,0.060251504182816,0.0017750698607415],[-0.05883676931262,0.089711412787437,-0.014274848625064]],[[0.020460488274693,-0.04862492904067,-0.059056051075459],[0.0049611744470894,-0.043264012783766,-0.075477927923203],[-0.0087000876665115,0.047921601682901,0.031238270923495]],[[0.0079726008698344,0.045938856899738,-0.027629155665636],[-0.05619940534234,-0.066629268229008,0.00045402243267745],[0.071868702769279,0.045342650264502,-0.015563090331852]],[[0.014122090302408,-0.080309234559536,-0.002680042758584],[-0.074793681502342,-0.041341438889503,-0.03518957644701],[0.032229375094175,-0.0012517891591415,-0.025465434417129]],[[-0.031015511602163,-0.088035486638546,-0.066455096006393],[-0.059660386294127,-0.016817539930344,-0.044405702501535],[-0.069425448775291,-0.089143075048923,0.0065372497774661]],[[0.10009910166264,0.063615992665291,0.030615409836173],[-0.015834156423807,0.02210495620966,0.016079992055893],[0.065530888736248,0.064890302717686,0.13495717942715]],[[0.052084386348724,0.06223526224494,0.0810951218009],[0.05599170923233,0.011359316296875,0.063630953431129],[-0.053519707173109,-0.0015851963544264,0.021678855642676]],[[-0.070243023335934,0.0088723674416542,0.0040815561078489],[-0.054083600640297,0.050434105098248,-0.024284215644002],[-0.0018667726544663,0.067146740853786,-0.0024395294021815]],[[0.045036599040031,0.061623554676771,0.032544746994972],[-0.048315841704607,0.051714796572924,-0.03041810542345],[-0.0015269313007593,0.0027922866865993,-0.010381346568465]],[[-0.040250029414892,-0.048976011574268,0.010956704616547],[0.012502891011536,-0.0043698293156922,-0.033713847398758],[-0.0044459500350058,0.058609496802092,-0.01353982463479]],[[0.029130861163139,-0.072844535112381,-0.07339896261692],[-0.011933577246964,-0.0053781741298735,-0.08040901273489],[-0.02064448222518,0.051303017884493,-0.003765249857679]],[[-0.055870287120342,-0.026493396610022,-0.042372606694698],[-0.0077692554332316,0.0075437715277076,0.032044392079115],[0.055989004671574,0.034599479287863,0.062035903334618]],[[0.018142255023122,-0.080377377569675,-0.10969993472099],[-0.0092776929959655,-0.018472721800208,-0.034982666373253],[-0.0099519528448582,0.083793349564075,0.032576929777861]],[[-0.068753831088543,0.043536964803934,-0.021976875141263],[0.0011101381387562,-0.054884411394596,-0.0052276654168963],[0.0008064866415225,0.080491289496422,-0.023497538641095]],[[-0.0065848836675286,-0.028707806020975,-0.073622547090054],[-0.016213625669479,-0.0079085566103458,0.075286656618118],[-0.025558013468981,0.0049794954247773,-0.098246105015278]],[[-0.044617250561714,-0.033948440104723,0.065006755292416],[-0.014010763727129,-0.014236753806472,0.058733403682709],[-0.015076679177582,-0.01818984374404,0.010140581987798]]],[[[0.0056674461811781,-0.075734980404377,0.056630071252584],[0.0094745848327875,0.0038343612104654,0.07140576094389],[-0.046673305332661,-0.029376626014709,-0.0025923189241439]],[[0.0069626271724701,-0.10547488182783,-0.03181142359972],[-0.0029894197359681,0.0044199633412063,0.01998470723629],[0.064463257789612,0.026104919612408,-0.020039038732648]],[[-0.017286775633693,0.0097170481458306,-0.076178900897503],[0.0069745942018926,-0.033800907433033,0.058733947575092],[0.012025954201818,0.019688988104463,-0.0051946332678199]],[[-0.062442291527987,0.019524306058884,0.019026473164558],[0.02484386600554,-0.15313011407852,0.020630147308111],[-0.067297793924809,0.050005078315735,-0.028152611106634]],[[-0.14524215459824,-0.061431583017111,-0.007136425934732],[-0.0048871864564717,-0.0025527181569487,-0.0076479190029204],[0.016034645959735,-0.0020770209375769,0.066441401839256]],[[-0.15603648126125,-0.056648228317499,-0.039570715278387],[-0.076609700918198,-0.11144181340933,-0.037978142499924],[-0.030831910669804,0.0252316724509,0.084011599421501]],[[-0.029793223366141,-0.061032000929117,-0.0054879733361304],[0.0092823132872581,-0.027613239362836,0.0086211049929261],[0.057648904621601,0.052509151399136,0.015740774571896]],[[0.038954429328442,0.049315955489874,-0.02246280759573],[0.043632481247187,0.056562446057796,0.025641873478889],[-0.0053671230562031,0.042292971163988,0.035437688231468]],[[0.0069903428666294,0.066151604056358,0.020092414692044],[-0.0078210467472672,-0.0005532240611501,0.010835504159331],[-0.066934533417225,0.023190230131149,-0.0094575230032206]],[[-0.0088599510490894,0.02025162987411,0.012171782553196],[-0.040624085813761,-0.022994201630354,-0.029005357995629],[0.0041100243106484,-0.042718138545752,0.029795568436384]],[[0.09750635176897,-0.017993550747633,0.062114499509335],[0.013030688278377,-0.029496563598514,-0.013702259398997],[-0.1357676833868,-0.14100493490696,0.034900173544884]],[[-0.011957485228777,-0.0015558867016807,0.015153149142861],[0.049915805459023,0.073285117745399,-0.047647386789322],[0.027181211858988,0.017147943377495,-0.044379107654095]],[[-0.055401559919119,-0.065292075276375,-0.011850785464048],[-0.010945606976748,0.032397162169218,-0.086181811988354],[0.0069748787209392,0.0041011953726411,-0.035723347216845]],[[0.042203523218632,0.015979958698153,0.026519615203142],[0.0046359812840819,0.020297231152654,-0.0037415975239128],[0.039464142173529,-0.025157302618027,-0.081091269850731]],[[-0.014590651728213,0.080248676240444,0.018448308110237],[-0.066183157265186,-0.022611508145928,0.034426309168339],[-0.058721501380205,-0.065106645226479,0.024985847994685]],[[-0.014886351302266,-0.10826364159584,-0.039508521556854],[-0.053664449602365,0.032349277287722,0.052474826574326],[0.0093355979770422,0.062424540519714,0.10457791388035]],[[0.042461033910513,-0.12829424440861,-0.097155205905437],[0.11255361884832,-0.023642506450415,0.067887790501118],[0.042661685496569,0.096749924123287,0.086421132087708]],[[-0.016542809084058,-0.042248908430338,-0.0084120919927955],[0.020704129710793,0.0065544950775802,0.010110978968441],[0.032415468245745,0.099212720990181,-0.016651658341289]],[[0.010672383010387,0.079054899513721,-0.14167028665543],[-0.026124894618988,-0.077275291085243,0.018115354701877],[0.014728391543031,0.0087439687922597,0.00035280719748698]],[[0.025034811347723,-0.01991661824286,0.040649369359016],[0.022531384602189,-0.00066394958412275,0.016238857060671],[0.076239071786404,0.039884950965643,0.034408450126648]],[[0.031476464122534,0.018186304718256,0.04570122808218],[-0.039290614426136,0.0029189754277468,0.070298172533512],[0.09782949090004,-0.093634389340878,-0.077592223882675]],[[0.032161176204681,-0.080136582255363,0.020580882206559],[-0.0048172539100051,-0.016006899997592,-0.058712720870972],[0.027716772630811,-0.060134790837765,0.012217888608575]],[[-0.037183042615652,-0.036118917167187,-0.0057742381468415],[0.016561085358262,-0.015325375832617,-0.014387879520655],[0.02024807408452,0.063928052783012,0.023987300693989]],[[-0.051903698593378,-0.056453574448824,-0.038713771849871],[0.0046732593327761,0.046971414238214,-0.060246609151363],[-0.013048466295004,-0.014185036532581,0.029616745188832]],[[0.026113677769899,0.025403799489141,0.062348499894142],[0.0026800713967532,-0.051587220281363,0.061130426824093],[0.041559606790543,-0.00098753208294511,0.047297716140747]],[[0.022606134414673,-0.024937970563769,-0.005337749607861],[0.01141972001642,-0.059111170470715,-0.034462861716747],[0.010854103602469,-0.074753813445568,-0.03389685973525]],[[-0.051865335553885,-0.02596733905375,-0.0608278401196],[0.004727522842586,0.026234431192279,0.02229274250567],[0.04796177521348,-0.063718758523464,-0.0024863418657333]],[[-0.0087392656132579,-0.029922258108854,0.1435089558363],[-0.027812058106065,0.0012368566822261,-0.02618127129972],[-0.11645969748497,-0.041587010025978,0.017963087186217]],[[-0.022170823067427,0.050582598894835,0.057379629462957],[-0.048303317278624,0.02945027500391,-0.009538215585053],[-0.052496317774057,-0.067398227751255,-0.018026361241937]],[[-0.011991987936199,-0.017478581517935,-0.091385737061501],[0.029777439311147,-0.0037622579839081,0.052621450275183],[0.023896967992187,-0.009310276247561,-0.0078149093315005]],[[0.030704965814948,0.024613548070192,-0.047434478998184],[-0.081334315240383,-0.055100504308939,0.094611547887325],[-0.02031839825213,-0.028512429445982,-0.0099237924441695]],[[-0.05531944334507,-0.061399079859257,-3.8920759834582e-05],[-0.10152466595173,0.013924283906817,-0.020592749118805],[0.038438484072685,-0.064018741250038,-0.0099677667021751]],[[-0.0099142827093601,-0.008217116817832,0.074449472129345],[0.022429732605815,-0.060537923127413,-0.013234972022474],[-0.062094889581203,-0.013186636380851,-0.021151093766093]],[[-0.026306383311749,-0.073688521981239,-0.082670733332634],[0.03536619246006,0.027416568249464,-0.087186425924301],[-0.028152633458376,0.013197626918554,-0.018313920125365]],[[-0.035630609840155,-0.073376514017582,-0.058598708361387],[0.11319050192833,0.07271221280098,0.087548553943634],[0.090837523341179,0.09191569685936,0.090979978442192]],[[-0.087549582123756,-0.0046426504850388,0.084639817476273],[-0.021834464743733,-0.13015106320381,-0.010639505460858],[-0.025058219209313,-0.010405663400888,-0.10150997340679]],[[0.016190404072404,0.0053828088566661,0.061932824552059],[-0.03278624266386,0.040639188140631,0.058842424303293],[-0.033262673765421,0.03223779425025,0.013375760987401]],[[0.022798739373684,-0.088306158781052,0.043255090713501],[0.010504066944122,0.028026968240738,0.072784245014191],[-0.011687983758748,-0.0098190139979124,0.081668220460415]],[[-0.050645887851715,-0.13626833260059,-0.032316341996193],[0.029091846197844,-0.02228163741529,0.0022825251799077],[0.031960044056177,0.053777571767569,0.013899187557399]],[[-0.13628087937832,0.10687705129385,0.091058917343616],[0.02370254509151,-0.076766192913055,0.02066009119153],[-0.022132927551866,-0.021796843037009,-0.058577042073011]],[[-0.094666250050068,-0.082197301089764,0.034756943583488],[0.003132727695629,-0.067644700407982,-0.065698593854904],[0.038075964897871,-0.045870203524828,0.05760982632637]],[[0.022291418164968,-0.00051893299678341,0.02022410929203],[-0.036448758095503,-0.030217902734876,0.029703393578529],[0.0084720281884074,-0.012383362278342,0.088181093335152]],[[-0.020366793498397,0.0011976924724877,0.051308404654264],[0.036518391221762,0.10897848010063,-0.07599662989378],[-0.019186194986105,-0.0003132700221613,0.08895767480135]],[[-0.0010750729124993,0.057639975100756,0.030773561447859],[-0.010222462937236,-0.094835877418518,-0.077980510890484],[-0.028921656310558,0.0029586397577077,-0.082823425531387]],[[-0.031592648476362,-0.00062245619483292,0.027427077293396],[-0.037999428808689,0.037316102534533,0.034596625715494],[-0.06765254586935,0.0062654376961291,-0.016033127903938]],[[-0.0095976507291198,0.070572547614574,-0.01318998914212],[-0.037004571408033,-0.0080536976456642,-0.045858778059483],[-0.0344243273139,-0.023851849138737,-0.080790877342224]],[[-0.10443059355021,-0.025730630382895,-0.071640245616436],[-0.07507648319006,-0.08787053078413,0.052746325731277],[0.024602703750134,0.036038275808096,0.065087556838989]],[[0.021883981302381,0.1170911565423,-0.011333854869008],[0.057979431003332,0.061103515326977,-0.018879977986217],[0.026360683143139,0.03647068887949,-0.031024072319269]],[[0.024499729275703,0.012532922439277,0.00823490973562],[0.011840847320855,0.011884242296219,-0.018720127642155],[0.014666155911982,-0.1120445728302,0.014231398701668]],[[0.048671659082174,0.031852651387453,-0.011035959236324],[-0.0051746745593846,-0.084892332553864,-0.0061851902864873],[-0.021403664723039,-0.01338279619813,-0.064948752522469]],[[-0.0055661755613983,-0.0095463311299682,-0.020886439830065],[0.048415258526802,0.0012437369441614,0.037512466311455],[-0.055643003433943,0.039247125387192,-0.023991687223315]],[[0.028381759300828,-0.00048980966676027,-0.0061338189989328],[0.025322312489152,0.021722853183746,-0.0085269622504711],[-0.026432756334543,-0.1007212549448,-0.044461708515882]],[[-0.049146700650454,-0.034682851284742,0.029345756396651],[-0.0037926102522761,0.034715555608273,0.030011855065823],[0.17342396080494,0.0490732640028,0.050456967204809]],[[-0.0097383875399828,-0.0069182151928544,0.087135285139084],[-0.022806664928794,0.10511577129364,0.072879321873188],[-0.038594953715801,0.050258856266737,9.2986643721815e-05]],[[-0.057057395577431,-0.022594934329391,0.048076849430799],[0.016442805528641,0.031172780320048,0.0026076955255121],[-0.082542814314365,-0.053089160472155,-0.00065715715754777]],[[-0.0049726823344827,-0.10388021916151,0.037571262568235],[0.042006254196167,0.053431730717421,0.061953093856573],[0.071914337575436,0.021945487707853,0.061578694730997]],[[-0.069172099232674,0.015397474169731,0.0040569053962827],[0.017893671989441,-0.00046682491665706,0.036800026893616],[0.034122124314308,0.018497481942177,-0.052130237221718]],[[-0.038812939077616,0.0085703432559967,-0.037945054471493],[-0.035912897437811,-0.028147703036666,-0.049763880670071],[-0.016628636047244,-0.084007531404495,-0.065531335771084]],[[0.054623883217573,0.060772225260735,-0.06456333398819],[-0.12404562532902,-0.090913884341717,0.047533024102449],[0.039960917085409,0.068020455539227,0.05085402354598]],[[0.032958060503006,0.050102103501558,0.0044990270398557],[0.021728901192546,0.029164459556341,0.020086236298084],[-0.031574510037899,-0.016153125092387,-0.023116465657949]],[[0.05337331444025,0.00062801514286548,-0.041550856083632],[-0.021032908931375,0.043747343122959,0.06877639144659],[0.061885870993137,0.032353639602661,0.031033987179399]],[[0.018167525529861,-0.098421789705753,0.004080327693373],[0.018841426819563,-0.040943518280983,-0.10538823902607],[0.070403099060059,0.025319971144199,-0.011828110553324]],[[-0.056415338069201,0.070341564714909,0.071647450327873],[-0.060804713517427,-0.00599952833727,0.0068086949177086],[-0.038749136030674,-0.079025872051716,-0.002451830310747]],[[-0.062033511698246,0.048585347831249,-0.046506691724062],[-0.016100620850921,0.056577011942863,-0.020539343357086],[-0.036116816103458,0.067550502717495,0.11636329442263]]],[[[-0.13882194459438,-0.022912837564945,0.026422191411257],[-0.021241324022412,-0.017037929967046,-0.0054919891990721],[-0.0095412973314524,0.037259843200445,-0.013353845104575]],[[-0.019294749945402,-0.0040423753671348,-0.018770964816213],[-0.027817947790027,-0.033123221248388,0.0080791851505637],[0.053250819444656,-0.020598109811544,-0.10150197893381]],[[0.047251082956791,0.04289585724473,-0.0038925018161535],[0.005146770272404,0.0069243498146534,-0.020326048135757],[0.0027386266738176,-0.0016468517715111,0.026135334745049]],[[-0.042985491454601,0.013481481000781,-0.016792383044958],[0.011599406599998,-0.042067494243383,-0.044552069157362],[-0.064010769128799,-0.09230101108551,0.039986480027437]],[[-0.014069859869778,0.052356373518705,-0.047027722001076],[0.057458497583866,-0.047142248600721,-0.020956801250577],[0.013382795266807,0.04086908698082,0.047176696360111]],[[-0.056963063776493,0.042393047362566,-0.085890546441078],[-0.034332178533077,-0.07202959805727,-0.033090632408857],[-0.025957368314266,-0.071007005870342,0.013293808326125]],[[0.032124597579241,0.040962155908346,-0.0070908330380917],[-0.0072834775783122,-0.028925053775311,-0.00024360077804886],[0.05575830489397,0.0089074103161693,-0.0052140355110168]],[[-0.027795216068625,-0.058224190026522,-0.020714500918984],[-0.074151165783405,-0.076293043792248,-0.056310974061489],[-0.029294254258275,-0.06811435520649,-0.0027032548096031]],[[-0.033353012055159,-0.0057539544068277,0.031414296478033],[-0.016612574458122,-0.00028036546427757,-0.035976316779852],[0.038702093064785,0.022484270855784,-0.031602140516043]],[[-0.041738145053387,-0.014271326363087,0.042589247226715],[-0.049266025424004,0.061189241707325,0.056380659341812],[-0.029339937493205,0.035860054194927,0.061560969799757]],[[0.010160378180444,0.09945172816515,0.089558728039265],[0.041814934462309,-0.10873005539179,-0.014946348033845],[0.026360020041466,0.098852187395096,-0.13119466602802]],[[0.092040956020355,0.09182246774435,0.014278288930655],[0.08232818543911,-0.0041943392716348,0.067961364984512],[-0.01764427870512,0.029055388644338,0.045883093029261]],[[-0.012670741416514,-0.046580974012613,-0.015592790208757],[0.090288661420345,0.075392656028271,-0.051593672484159],[-0.00047426775563508,-0.057877335697412,0.0024408379103988]],[[-0.032963618636131,-0.0077780694700778,-0.0008833670290187],[0.1012092679739,0.00085744186071679,0.033332206308842],[0.0076517350971699,0.0040412857197225,0.01827447116375]],[[-0.047524854540825,0.029230959713459,-0.052843414247036],[-0.015714781358838,0.014460137113929,0.046742223203182],[0.04873800650239,-0.010986315086484,0.098199531435966]],[[-0.090079382061958,0.014324394986033,-0.043501008301973],[-0.048416949808598,0.011437107808888,0.038838978856802],[0.017965937033296,0.034393813461065,0.03977919369936]],[[0.040081534534693,-0.0057165678590536,0.051106065511703],[0.067763268947601,0.018945943564177,-0.025065898895264],[-0.013715878129005,0.065201297402382,-0.059261038899422]],[[0.017316835001111,-0.033603824675083,-0.0011240635067225],[0.020031083375216,-0.0096485018730164,-0.018006611615419],[0.052229952067137,0.041279155761003,-0.027947181835771]],[[-0.031754586845636,0.023468712344766,-0.056344464421272],[-0.015561182051897,0.018230451270938,0.044943630695343],[-0.092343106865883,0.01624071598053,-0.038079183548689]],[[-0.048238258808851,0.027729855850339,-0.023556178435683],[-0.037519793957472,0.011987812817097,0.018374131992459],[-0.0034895895514637,-0.023024177178741,-0.036866005510092]],[[0.063443705439568,0.027725603431463,0.083416491746902],[-0.021089058369398,-0.03601785376668,0.0126145305112],[0.051419142633677,0.072223037481308,-0.029607204720378]],[[-0.032788410782814,0.0067892055958509,0.12507551908493],[0.013118500821292,0.015790885314345,-0.051746774464846],[0.091787226498127,-0.0029952907934785,-0.11860159784555]],[[-0.028296303004026,-0.01253254711628,-0.0085462052375078],[-0.024638541042805,0.028470575809479,0.038129489868879],[0.048130221664906,-0.036946728825569,0.010608121752739]],[[-0.0083233267068863,-0.060979627072811,0.11359883844852],[-0.02657382376492,-0.015033422037959,0.073669597506523],[-0.03594708070159,-0.019273409619927,0.036399900913239]],[[0.100521042943,0.059327304363251,0.063886344432831],[0.012725739739835,0.034898400306702,-0.059367749840021],[0.024756759405136,0.059819206595421,-0.016216089949012]],[[-0.0021502336021513,0.040901973843575,-0.032779190689325],[-0.044158272445202,-0.035415261983871,0.034879799932241],[0.020971622318029,-0.0045904507860541,-0.056108810007572]],[[0.046544089913368,-0.012118156068027,0.073879308998585],[0.091399326920509,0.030466984957457,-0.028215780854225],[-0.017439689487219,-0.0046832519583404,0.011089293286204]],[[-0.070665679872036,-0.0066467779688537,0.015477661043406],[0.022735485807061,0.03206705302,0.065990954637527],[0.038540057837963,0.053493198007345,0.037470418959856]],[[-0.045886322855949,0.033224172890186,-0.0045131766237319],[-0.02629535086453,-0.045005157589912,0.06203443557024],[0.071306087076664,-0.079863809049129,-0.032173000276089]],[[0.048780757933855,0.031354688107967,-0.0045676366426051],[-0.080086059868336,0.0076067522168159,-0.095010176301003],[-0.059257794171572,0.085787564516068,-0.03382720798254]],[[-0.021674672141671,0.064350612461567,-0.046729512512684],[-0.011950582265854,-0.005014767870307,-0.012068180367351],[-0.042164251208305,-0.061320710927248,0.067255601286888]],[[-0.036019094288349,0.010830748826265,0.02691663429141],[-0.11718010157347,-0.014370799064636,-0.00018398248357698],[0.042037330567837,0.019158573821187,-0.057806681841612]],[[-0.0081249391660094,-0.10001880675554,-0.040860705077648],[0.01879115216434,-0.0038051614537835,-0.0041804304346442],[-0.072107277810574,0.010673469863832,0.0063305674120784]],[[-0.0032005498651415,-0.020161259919405,-0.031158979982138],[-0.13087052106857,0.049289532005787,0.13538846373558],[-0.048589237034321,-0.02396041341126,-0.0047565186396241]],[[0.048156786710024,-0.04734667763114,-0.0091913724318147],[0.05565956607461,0.051615759730339,0.022466711699963],[0.068876825273037,-0.041884232312441,0.023329677060246]],[[-0.042586166411638,0.1109307706356,-0.031093221157789],[-0.14201743900776,0.033916387706995,0.0020079498644918],[-0.074067249894142,-0.091187663376331,-0.011027599684894]],[[0.03750916197896,-0.0071215452626348,0.095353879034519],[-0.017573032528162,0.002791210077703,-0.025710536167026],[0.040776949375868,0.056976661086082,0.09715711325407]],[[0.07080153375864,-0.090941786766052,0.0083320997655392],[0.023524325340986,-0.0013876269804314,0.046131692826748],[-0.056007519364357,-0.034455593675375,-0.053254947066307]],[[0.091239050030708,-0.075801908969879,-0.00030592561233789],[0.051923263818026,0.030415043234825,-0.029005503281951],[0.022989269345999,0.047766342759132,-0.026307260617614]],[[-0.01064845174551,-0.038074843585491,0.035389520227909],[0.073335364460945,0.085318118333817,-0.066647127270699],[-0.081197187304497,0.006011888384819,0.065082892775536]],[[0.062033761292696,0.079603597521782,-0.078165628015995],[-0.0017789006233215,-0.073681995272636,0.10867697745562],[-0.018466804176569,0.070634379982948,0.00049338227836415]],[[0.021652799099684,-0.06864932179451,0.013266919180751],[-0.026962323114276,-0.029273642227054,-0.090005993843079],[0.034460097551346,0.051241185516119,-0.025016408413649]],[[0.012207644060254,-0.00092111324192956,-0.013911257497966],[-0.0051678619347513,-0.045719310641289,0.034668210893869],[0.0049903048202395,0.065259329974651,0.072275601327419]],[[0.037596575915813,0.085049174726009,0.13956931233406],[-0.016647070646286,-0.069242171943188,-0.059381637722254],[0.06337071955204,-0.036227583885193,-0.088255740702152]],[[-0.036571476608515,-0.047697346657515,0.0015886758919805],[0.036098893731833,0.047184620052576,0.046323832124472],[0.053429398685694,0.024009793996811,0.041060507297516]],[[0.037525054067373,0.038688722997904,0.047397099435329],[0.023889532312751,-0.02780600450933,-0.011382647790015],[0.049598027020693,-0.016945760697126,0.017916949465871]],[[0.039150599390268,-0.031764145940542,-0.065121836960316],[0.0011608781060204,0.011934143491089,-0.01355039421469],[0.05637800693512,0.068376481533051,0.10628741979599]],[[-0.055704690515995,-0.05152391269803,0.068537853658199],[0.018534382805228,0.018164461478591,-0.051952239125967],[-0.016338365152478,0.034001022577286,-0.017268063500524]],[[0.062995940446854,0.14307914674282,0.010925941169262],[0.043707299977541,-0.0038251348305494,0.025905344635248],[-0.077349208295345,0.073235176503658,0.017657162621617]],[[-0.0062165139243007,0.021177383139729,0.058771014213562],[0.024281729012728,-0.045804675668478,0.044896252453327],[-0.00078840652713552,0.043700411915779,0.10821335017681]],[[-0.045653935521841,0.040511202067137,-0.0043378402478993],[0.015923550352454,0.039459209889174,-0.068809002637863],[0.029788287356496,0.024731317535043,-0.010506581515074]],[[0.060029692947865,0.085875794291496,0.010920433327556],[-0.01665622740984,-0.008727471344173,0.097520306706429],[-0.089862897992134,0.027437143027782,-0.11310948431492]],[[0.034561347216368,-0.012514968402684,-0.058488562703133],[0.014740494079888,0.011053612455726,0.0081277722492814],[-0.053827613592148,-0.0084393601864576,0.0038592412602156]],[[-0.02348336391151,0.090766862034798,0.077827244997025],[0.024236347526312,-0.076582014560699,0.0049172583967447],[0.0022261734120548,0.014415471814573,0.095538653433323]],[[0.051787007600069,-0.063704878091812,-0.033271431922913],[0.036595668643713,-0.016438132151961,-0.063725583255291],[0.067628562450409,-0.011431478895247,0.062049448490143]],[[0.04843245446682,-0.0011442336253822,0.094726286828518],[-0.0079202950000763,-0.060028243809938,-0.031303972005844],[-0.036385718733072,0.027332421392202,-0.032877843827009]],[[-0.025997295975685,0.014323803596199,0.02737351693213],[0.0062790652737021,0.032280001789331,0.074116341769695],[-0.036103315651417,0.026716699823737,-0.031775467097759]],[[-0.0082551194354892,0.011123019270599,0.045899037271738],[-0.026333179324865,-0.045020028948784,-0.12747210264206],[-0.0093981176614761,0.010437949560583,-0.046267222613096]],[[0.0018652511062101,0.017704794183373,0.054724156856537],[-0.012772369198501,0.0078785307705402,0.021011905744672],[0.049538865685463,-0.090699315071106,0.023202616721392]],[[0.044652104377747,-0.010608094744384,0.041851129382849],[0.010400508530438,-0.0095846122130752,-0.040704682469368],[0.0023878156207502,0.0271125305444,-0.025373745709658]],[[0.12090358138084,0.047742418944836,0.025228062644601],[-0.04413902387023,0.16138716042042,-0.00084782124031335],[0.056174796074629,0.0075725954957306,-0.056818291544914]],[[-0.029109386727214,0.015884524211287,0.05768708512187],[0.048035524785519,0.0049988888204098,0.013842340558767],[0.071077771484852,0.02411812916398,0.014545287005603]],[[-0.010413222946227,0.027943652123213,0.039840318262577],[0.089018732309341,0.084693677723408,0.05430131778121],[-0.0077531817369163,0.014875905588269,0.03929103910923]],[[-0.031677648425102,-0.064825333654881,0.0079617351293564],[0.036940760910511,0.012683885172009,-0.067420922219753],[0.021725529804826,0.058480437844992,-0.046820621937513]]],[[[0.061843756586313,-0.025679763406515,-0.041976600885391],[-0.014734398573637,-0.045042905956507,0.028467448428273],[0.023983666673303,-0.03142150118947,0.04687774181366]],[[-0.077521897852421,-0.035186626017094,0.033666349947453],[0.013899299316108,0.045579008758068,-0.021889332681894],[-0.040810149163008,-0.016831504181027,0.0041774618439376]],[[0.030812617391348,-0.015944479033351,-0.016842057928443],[-0.025601817294955,-0.035155430436134,0.024170616641641],[-0.024322414770722,-0.011979961767793,0.0038780656177551]],[[0.017325405031443,-0.0067370012402534,0.0011577273253351],[-0.018096318468451,0.088576607406139,-0.0043350518681109],[0.047492709010839,0.024762917309999,-0.037047691643238]],[[0.026996746659279,0.019711162894964,-0.014533746056259],[-0.037274494767189,-0.010330811142921,-0.027743753045797],[0.00078463711543009,-0.060344472527504,-0.021527135744691]],[[-0.016601888462901,0.053914126008749,-0.072465613484383],[0.034255210310221,-0.01853378303349,-0.070810623466969],[-0.064076907932758,0.039300970733166,-0.020318709313869]],[[-0.010346127673984,-0.032507181167603,-0.0072191446088254],[-0.050751492381096,0.036660891026258,-0.016980355605483],[-0.0036702293436974,-0.014073980972171,-0.0090890740975738]],[[-0.076885722577572,-0.075274236500263,-0.060858353972435],[-0.10339057445526,-0.01484071649611,-0.019276294857264],[-0.050290048122406,-0.03695660457015,0.040163051337004]],[[-0.043247487396002,-0.014743308536708,0.020838992670178],[0.017343258485198,-0.013762356713414,-0.020848764106631],[-0.05260867998004,-0.0014017460634932,-0.016953770071268]],[[0.051560662686825,-0.017343817278743,-0.053145501762629],[-0.0073363399133086,-0.049401119351387,-0.017925757914782],[-0.017715429887176,-0.049280595034361,-0.030778408050537]],[[0.0038653819356114,0.012711810879409,-0.038945931941271],[-0.033399406820536,-0.068508081138134,-0.054572992026806],[-0.041589379310608,-0.0016365246847272,0.027005180716515]],[[0.08346051722765,-0.014775326475501,0.039622630923986],[-0.03846251219511,0.021408565342426,-0.063451640307903],[-0.070657879114151,-0.050871904939413,0.0038055740296841]],[[0.017636049538851,0.011203685775399,-0.043565198779106],[-0.010287743993104,0.050911143422127,0.014904007315636],[-0.03732081875205,0.0080273766070604,-0.10127473622561]],[[-0.056815676391125,-0.037524480372667,-0.031515698879957],[0.014586140401661,0.027684854343534,0.10590992122889],[-0.0035351468250155,0.04794243350625,0.09035724401474]],[[-0.029189607128501,0.054648529738188,0.023060774430633],[-0.12581157684326,0.031273558735847,-0.057564735412598],[-0.0019570023287088,-0.0018764480482787,-0.04939104989171]],[[-0.027942908927798,0.053158070892096,0.04849112406373],[-0.091208845376968,0.10598075389862,-0.049281798303127],[-0.015742160379887,0.091548964381218,0.011320102959871]],[[0.029367728158832,0.035887371748686,0.0037870791275054],[0.012304553762078,-0.041576381772757,-0.032747067511082],[0.062216456979513,0.011979445815086,0.0085251051932573]],[[0.0024376132059842,0.0048728208057582,-0.031451884657145],[-0.0084194308146834,0.0076937070116401,-0.011855736374855],[-0.031192503869534,0.001921534538269,0.061801005154848]],[[-0.021587653085589,-0.013908639550209,-0.029506227001548],[-0.092497229576111,0.02789843827486,-0.082003533840179],[0.065979577600956,-0.029596338048577,-0.039076738059521]],[[-0.033263377845287,-0.018004780635238,-0.031019799411297],[-0.0020498889498413,-0.046784412115812,-0.008247665129602],[-0.0079630073159933,0.040032606571913,0.037821553647518]],[[-0.027593817561865,-0.14354892075062,0.055913154035807],[-0.020679660141468,-0.015216835774481,0.017992485314608],[0.014559396542609,-0.068927012383938,-0.047301653772593]],[[0.026880761608481,0.0098844058811665,-0.013722914271057],[0.064284861087799,-0.031549334526062,0.054979428648949],[-0.075187765061855,0.021361725404859,-0.013180965557694]],[[0.002343748928979,-0.017077289521694,0.021370032802224],[-0.044674944132566,-0.0093367407098413,-5.9380796301411e-05],[0.0046092281118035,0.051197826862335,-0.0082049453631043]],[[-0.046495504677296,-0.047042034566402,-0.024555027484894],[-0.035725053399801,0.055647484958172,-0.0037045271601528],[-0.019247502088547,-0.020037248730659,0.014764082618058]],[[-0.056034859269857,0.028874896466732,0.019193226471543],[0.037354990839958,-0.074585184454918,-0.014006775803864],[-0.021478047594428,0.068255625665188,-0.036631636321545]],[[-0.037646263837814,-0.062341168522835,-0.029372585937381],[-0.0093330582603812,0.01019552256912,0.011968580074608],[-0.011104611679912,-0.08416585624218,-0.0094092842191458]],[[0.011014963500202,0.073720388114452,-0.00012517903815024],[-0.013465493917465,-0.016829023137689,0.017139201983809],[-0.022166250273585,-0.047692108899355,-0.014781742356718]],[[0.00058051710948348,-0.01984840258956,0.010636078193784],[-0.034110698848963,0.016839535906911,-0.005792451556772],[-0.08894470334053,-0.062181513756514,-0.031020063906908]],[[-0.054200738668442,0.019991802051663,-0.0032498377840966],[0.052832640707493,-0.0061790975742042,0.0031061626505107],[-0.079375185072422,0.014529710635543,-0.039069384336472]],[[0.079463355243206,-0.019957952201366,0.035425860434771],[0.093248903751373,-0.011519211344421,-0.021507415920496],[0.0087426137179136,0.02516988478601,-0.011849181726575]],[[-0.025695720687509,-0.038160130381584,-0.087598584592342],[0.034469712525606,0.0064871925860643,0.015574502758682],[0.047090515494347,0.032837070524693,-0.021107025444508]],[[0.022006195038557,-0.01195752248168,0.033778175711632],[-0.04801319539547,0.013913944363594,0.01503013074398],[-0.065025992691517,-0.04298035800457,0.032453130930662]],[[0.020484000444412,0.057997316122055,0.013514367863536],[0.0051592355594039,-0.060930088162422,-0.0043710479512811],[0.0069078067317605,0.018618490546942,-0.0094378534704447]],[[-0.011841123923659,-0.057320341467857,-0.022836586460471],[-0.023523814976215,-0.0039992458187044,-0.077227339148521],[-0.084106288850307,-0.025238672271371,-0.049591362476349]],[[-0.012897524051368,-0.021314201876521,-0.029840027913451],[0.0073041594587266,0.030919818207622,0.029353415593505],[0.01564765907824,1.0222761375189e-05,0.063512519001961]],[[0.016407024115324,-0.0088178366422653,-0.075468055903912],[0.045431211590767,-0.027355140075088,0.0068467385135591],[0.00082656653830782,0.029110338538885,-0.0055507039651275]],[[0.0024275579489768,0.026001838967204,-0.050428699702024],[-0.03013182990253,-0.019138449802995,-0.0023803415242583],[-0.015404020436108,0.010511024855077,-0.044293839484453]],[[-0.0014314816799015,-0.011317578144372,0.040517624467611],[-0.0056149130687118,0.0017621299484745,0.039579849690199],[-0.028724668547511,0.088628344237804,-0.027903024107218]],[[-0.064272202551365,-0.020970622077584,0.019538475200534],[-0.091933153569698,-0.084738656878471,-0.11788845062256],[0.016900837421417,0.021823313087225,-0.020953318104148]],[[0.030972709879279,0.03234888240695,0.025516556575894],[-0.019807334989309,-0.068667121231556,0.05981582030654],[-0.0070161279290915,0.0088058803230524,0.020803093910217]],[[-0.023053806275129,-0.026004049926996,0.017683710902929],[-0.045969482511282,-0.047907020896673,0.017747839912772],[-0.066003851592541,-0.015789559110999,0.036796063184738]],[[-0.013914301991463,-0.12141183763742,-0.072036653757095],[-0.021671948954463,-0.074773900210857,-0.0033233058638871],[0.0029012118466198,0.050107792019844,0.034439753741026]],[[-0.027845334261656,-0.086061343550682,0.045181561261415],[-0.055345438420773,-0.078756704926491,-0.008685814216733],[-0.03922063857317,-0.042547613382339,0.011493590660393]],[[0.012363386340439,0.038743540644646,-0.085520021617413],[-0.018101094290614,-0.027630802243948,0.0034821033477783],[-0.07775517553091,0.033623661845922,-0.046904511749744]],[[-0.053076770156622,0.12348893284798,-0.033351883292198],[-0.054278295487165,0.067369446158409,-0.044834658503532],[-0.037373963743448,0.015598129481077,-0.022582102566957]],[[0.024542763829231,-0.066667221486568,0.019225524738431],[-0.065607503056526,-0.031513605266809,0.088725902140141],[0.018970355391502,0.0039462600834668,0.02084450982511]],[[0.018918544054031,0.01639455370605,0.0091488864272833],[0.028104420751333,-0.021230345591903,-0.069239094853401],[0.052149895578623,0.064339242875576,-0.032841593027115]],[[-0.066266849637032,-0.063560202717781,0.003493107156828],[-0.055900324136019,-0.0061101992614567,-0.040131628513336],[-0.061692897230387,0.016352448612452,-0.0081933597102761]],[[0.013314126059413,-0.047713119536638,-0.026814932003617],[-0.058309759944677,0.091892994940281,-0.017953144386411],[-0.053785614669323,-0.0083775669336319,0.00242227059789]],[[0.091869100928307,0.002573522971943,0.064633391797543],[-0.0043287388980389,0.0044943555258214,-0.069325894117355],[-0.051255386322737,-0.05577664077282,-0.075227133929729]],[[0.024722747504711,0.014205255545676,-0.014178058132529],[0.05299248918891,0.0062901340425014,-0.011150796897709],[-0.016669068485498,-0.024275440722704,-0.020783288404346]],[[-0.065452575683594,0.0021114216651767,-0.0060530779883265],[0.029969446361065,-0.02970371209085,-0.016955638304353],[-0.0021741846576333,0.028206504881382,0.017677038908005]],[[0.023626329377294,-0.0094832703471184,0.011096567846835],[-0.043143928050995,-0.047494798898697,-0.061651885509491],[0.011430718004704,0.027106657624245,-0.00035565788857639]],[[0.060685377568007,-0.045865755528212,0.073602564632893],[-0.052181631326675,0.097310304641724,0.0080782808363438],[0.065253913402557,0.055541452020407,0.076126851141453]],[[0.01151411794126,0.049159456044436,0.023153392598033],[0.019096868112683,-0.044868960976601,-0.037198010832071],[-0.0041983644478023,-0.045166168361902,-0.060444563627243]],[[-0.034023232758045,-0.0025736819952726,0.004126189276576],[-0.02627906948328,0.015219992958009,0.0070154033601284],[-0.067732080817223,-0.053665228188038,0.035308126360178]],[[-0.02461832948029,-0.048505034297705,-0.022380011156201],[-0.057003173977137,-0.10729024559259,-0.05471695587039],[0.041622139513493,-0.064270257949829,0.020752815529704]],[[-0.027745505794883,-0.0010230035986751,-0.0060466630384326],[-0.0014384693931788,-0.031018247827888,-0.10388764739037],[-0.017309315502644,-0.015976943075657,-0.052639320492744]],[[-0.0075936010107398,-0.039822392165661,0.0079662594944239],[-0.042522881180048,-0.040564548224211,-0.0014617048436776],[-0.0068184239789844,0.037282474339008,0.0060638589784503]],[[0.0040801018476486,0.0090431356802583,-0.0026602628640831],[0.0029452661983669,0.041757099330425,-0.037396993488073],[0.028366750106215,-0.041815120726824,0.013030024245381]],[[-0.020471774041653,-0.0088417865335941,-0.022559372708201],[0.01828021556139,0.014941825531423,0.026829160749912],[0.020133709535003,0.023547142744064,-0.068904556334019]],[[-0.010488319210708,0.052582826465368,0.018487839028239],[-0.0019862628541887,-0.017080193385482,-0.0054899826645851],[-0.031123770400882,-0.021755022928119,0.011180606670678]],[[-0.095237031579018,0.024310633540154,-0.014010634273291],[-0.047462582588196,0.030221272259951,-0.031398572027683],[0.035444378852844,-0.10261055827141,-0.0062313829548657]],[[0.0059564891271293,0.027794683352113,0.011212669312954],[-0.043896745890379,-0.028726255521178,-0.075180999934673],[-0.01442714035511,-0.023684464395046,-0.10966394841671]]],[[[-0.0027930643409491,0.022566914558411,-0.039502583444118],[-0.046836990863085,-0.16089937090874,0.099750027060509],[-0.0017329825786874,0.041127502918243,-0.029891557991505]],[[0.051415555179119,-0.039457749575377,0.00091358821373433],[-0.0047967722639441,-0.056644760072231,-0.11304802447557],[0.0069880238734186,-0.054924294352531,-0.081008493900299]],[[0.074268959462643,-0.057336512953043,0.015106559731066],[-0.049959976226091,-0.075151421129704,0.042090967297554],[0.020038515329361,0.034605905413628,-0.035762872546911]],[[-0.030705714598298,0.046450924128294,0.00057630124501884],[0.033208601176739,-0.0061284834519029,-0.02508551068604],[-0.09319806843996,-0.010035225190222,-0.10976640880108]],[[0.030197193846107,-0.051402561366558,-0.056765023618937],[-0.05054584890604,-0.14328263700008,-0.016912531107664],[0.06353372335434,0.10451699793339,0.16572093963623]],[[-0.0098271034657955,0.0081637101247907,0.011848474852741],[-0.0007394987042062,0.043504141271114,-0.059295203536749],[-0.042741499841213,-0.10885153710842,-0.053564101457596]],[[0.03036175109446,0.0032997343223542,-0.026290029287338],[0.052625730633736,0.0047692530788481,0.036080840975046],[0.016706066206098,0.04239010438323,-0.033680055290461]],[[-0.14984951913357,-0.040136657655239,0.032484043389559],[0.026305748149753,-0.14362619817257,0.019420951604843],[-0.031538091599941,0.01054741255939,0.011102731339633]],[[-0.068909272551537,0.030877949669957,-0.035441070795059],[0.020662989467382,0.031745191663504,-0.029403790831566],[0.0032429394777864,6.9420872023329e-05,-0.035627510398626]],[[-0.096313528716564,0.014083419926465,-0.089393742382526],[-0.068919897079468,-0.043170057237148,0.021600641310215],[-0.04667441546917,-0.044407609850168,0.04269890114665]],[[-0.0076627908274531,-0.085011556744576,0.17188894748688],[-0.10666610300541,-0.025376396253705,0.005299047101289],[-0.017363568767905,-0.13844218850136,0.0037524225190282]],[[-0.048489704728127,-0.0056244856677949,-0.076596900820732],[-0.013122694566846,0.026997279375792,0.022362008690834],[0.030305180698633,0.013975666835904,-0.098527029156685]],[[0.025176897644997,0.022375959903002,0.02045444957912],[0.046195343136787,-0.0062455777078867,-0.049147333949804],[0.018378369510174,-0.08406326174736,-0.062149077653885]],[[0.16093945503235,0.014626613818109,-0.040869820863008],[0.098956227302551,0.054788749665022,0.064076833426952],[-0.0077850366942585,0.049396622925997,0.033722080290318]],[[-0.14619094133377,-0.068658612668514,-0.05939781665802],[-0.052676718682051,-0.061587188392878,0.00083997956244275],[0.072655141353607,0.029449813067913,-0.074506215751171]],[[-0.049095418304205,0.029247082769871,-0.11702138185501],[-0.013763535767794,0.057592306286097,-0.04882800579071],[-0.028972724452615,0.035069592297077,-0.063729733228683]],[[-0.064751625061035,0.026757439598441,-0.040399838238955],[3.7902045733063e-05,-0.050892472267151,-0.26387909054756],[-0.00050166371511295,-0.036181550472975,0.097250290215015]],[[0.055251404643059,0.068026468157768,-0.050349973142147],[-0.011159254238009,0.11549695581198,-0.12773881852627],[0.026729464530945,-0.095115654170513,-0.0639618486166]],[[0.0033954095561057,0.041685733944178,-0.052332416176796],[0.071067370474339,-0.094719208776951,-0.017114562913775],[-0.063436299562454,-0.038550913333893,-0.012388137169182]],[[0.070744350552559,0.0065688071772456,0.0321662761271],[0.0069341445341706,-0.035412225872278,-0.078521944582462],[-0.030596531927586,0.023609315976501,0.065539702773094]],[[-0.053261883556843,0.072174057364464,-0.050106283277273],[-0.002516713924706,-0.028719715774059,-0.038423765450716],[-0.038618419319391,-0.076852522790432,0.072271913290024]],[[0.060778435319662,-0.063119560480118,-0.084906682372093],[-0.0082973791286349,0.030508631840348,-0.10001903027296],[-0.021077735349536,0.014808317646384,0.011348724365234]],[[-0.025002820417285,0.044422339648008,-0.024700008332729],[-0.0176298674196,0.037716004997492,0.042649481445551],[-0.012703890912235,0.029268987476826,-0.058040104806423]],[[-0.038920044898987,0.055332761257887,0.035907600075006],[0.059234496206045,-0.067055314779282,-0.076784670352936],[0.024022305384278,-0.027616856619716,0.10468751192093]],[[0.1376359462738,0.036885812878609,0.0014718713937327],[-0.023763487115502,-0.045897841453552,0.10244386643171],[0.00024108737125061,-0.1311304718256,-0.028408182784915]],[[-0.070524670183659,-0.094368487596512,-0.13192071020603],[-0.011164504103363,0.0099001927301288,-0.19311176240444],[-0.053499080240726,-0.064041018486023,-0.066644601523876]],[[-0.05026201158762,-0.037509728223085,0.017498971894383],[0.082029893994331,-0.015924209728837,-0.099866539239883],[-0.042156416922808,0.0038176695816219,-0.0045042126439512]],[[-0.065566033124924,-0.043805088847876,-0.13304197788239],[0.044856838881969,0.029871689155698,-0.018028639256954],[-0.0083314273506403,0.080808103084564,0.13969795405865]],[[0.0095646139234304,0.047212243080139,-0.056887872517109],[-0.011841001920402,-0.017793599516153,-0.080273039638996],[-0.024192526936531,-0.0020110916811973,0.037345711141825]],[[0.21926766633987,0.10674237459898,0.00010619386739563],[0.14402425289154,0.088539607822895,-0.034729525446892],[0.038387347012758,0.037679336965084,0.016920005902648]],[[0.071627736091614,0.033208854496479,-0.0094120316207409],[0.034003652632236,-0.070839270949364,-0.045233450829983],[-0.0090430183336139,-0.040219578891993,0.069760926067829]],[[-0.040570929646492,0.010874263942242,0.020009804517031],[-0.014251168817282,0.1190497726202,-0.04511509090662],[-0.075892396271229,0.033834964036942,-0.043807089328766]],[[0.076513797044754,-0.050266936421394,0.053513363003731],[0.0094753876328468,0.031788434833288,0.040518153458834],[-0.054634720087051,-0.16715489327908,-0.025643229484558]],[[0.088516093790531,-0.016852619126439,-0.054956242442131],[-0.015920730307698,-0.12913802266121,-0.068157687783241],[-0.045980781316757,-0.16177299618721,0.059081327170134]],[[0.0095914732664824,0.038624163717031,-0.17329801619053],[0.038286682218313,-0.028882179409266,-0.067936614155769],[-0.060587760061026,0.11016670614481,-0.0047768801450729]],[[0.0060619660653174,-0.10214488953352,-0.02545422501862],[-0.046634092926979,-0.049351450055838,-0.041433982551098],[-0.061818663030863,-0.067332170903683,-0.019649928435683]],[[-0.10309921205044,0.045397575944662,-0.12793534994125],[0.022434424608946,0.013461996801198,-0.1220041885972],[0.0013831820106134,-0.15080185234547,-0.049833033233881]],[[0.11820717900991,0.043139327317476,-0.22291530668736],[-0.028804767876863,0.077201209962368,-0.21188232302666],[0.12452981621027,-0.032516587525606,-0.038359902799129]],[[0.019085267558694,-0.014352955855429,-0.019217664375901],[0.014365709386766,-0.16239900887012,-0.0591587908566],[0.00023617623082828,-0.096469685435295,-0.096913412213326]],[[0.023562092334032,-0.045547906309366,0.0038175687659532],[0.0043143886141479,0.019627772271633,0.018126582726836],[-0.055345643311739,-0.13929726183414,-0.01500809751451]],[[-0.063482940196991,-0.017340620979667,-0.016004463657737],[-0.042587667703629,-0.026807041838765,-0.016094401478767],[-0.0077170934528112,0.025209791958332,0.037379998713732]],[[-0.000262655550614,-0.034751810133457,0.031712237745523],[-0.024717880412936,0.034334089607,0.081590168178082],[-0.082651011645794,-0.047121316194534,0.046230766922235]],[[-0.028156690299511,-0.00033781368983909,0.062448222190142],[0.087475568056107,0.023577224463224,-0.019933572039008],[0.0087890010327101,0.057682570070028,-0.026983272284269]],[[0.029934735968709,0.021408382803202,-0.029151190072298],[0.024840041995049,0.039770510047674,-0.067235864698887],[0.02592952363193,-0.099421486258507,-0.053763408213854]],[[-0.0039959903806448,0.0049817305989563,-0.013744153082371],[-0.068315394222736,-0.064210645854473,-0.025953842326999],[0.079482190310955,0.014034980908036,0.028959298506379]],[[-0.004361605271697,-0.035351272672415,-0.024789629504085],[-0.048199806362391,-0.029217276722193,0.018230034038424],[0.039207596331835,0.057310111820698,0.079261884093285]],[[-0.0038283979520202,0.014077838510275,0.082851842045784],[-0.021694986149669,0.08262874186039,-0.10102462768555],[0.085207551717758,0.022848656401038,-0.042395409196615]],[[-0.0163927488029,0.077263124287128,-0.0072249947115779],[-0.014750537462533,-0.14403294026852,-0.058028843253851],[0.039521679282188,0.029528679326177,-0.061832088977098]],[[0.088310837745667,0.096556931734085,-0.033836990594864],[-0.015516130253673,0.051157578825951,0.078324183821678],[0.040490161627531,0.04037481918931,0.053379543125629]],[[-0.043776206672192,-0.0034731738269329,0.073054052889347],[-0.17038848996162,-0.11101707071066,0.10023923963308],[-0.032034568488598,-0.057080414146185,0.10546779632568]],[[-0.01196223590523,-0.051407970488071,-0.020401289686561],[0.0821877643466,0.0099805574864149,0.030655199661851],[0.016435064375401,-0.023267282173038,0.013825210742652]],[[-0.011849340982735,0.030080530792475,0.029230898246169],[0.018667813390493,0.15883180499077,-0.044614661484957],[-0.042762368917465,0.035060364753008,-0.027151830494404]],[[0.096224926412106,-0.019316531717777,-0.12085092067719],[-0.055220536887646,0.037774160504341,-0.046545628458261],[-0.046464491635561,-0.020399400964379,0.013045878149569]],[[0.089434891939163,0.11892847716808,0.067185133695602],[0.11454689502716,0.1312230527401,0.10691844671965],[0.094459518790245,0.055712942034006,0.10152017325163]],[[0.0027513750828803,0.063521467149258,-0.03214231133461],[-0.085449770092964,-0.018082674592733,-0.022468376904726],[-0.08060859143734,-0.092534244060516,-0.057015582919121]],[[-0.046448308974504,-0.009654987603426,-0.046385727822781],[0.11031723022461,-0.0064116581343114,0.014492614194751],[-0.028426529839635,-0.0044018649496138,0.015641326084733]],[[0.016886107623577,-0.024633832275867,-0.0052947653457522],[-0.071703523397446,-0.020078800618649,0.014331840910017],[-0.10633965581656,-0.12326913326979,-0.091257527470589]],[[0.061390671879053,-0.015942547470331,0.044068019837141],[-0.002211555140093,-0.011316032148898,-0.050150718539953],[0.016503643244505,-0.023474307730794,-0.086062721908092]],[[0.0057871360331774,-0.011361598968506,-0.0088848061859608],[-0.0018306316342205,-0.0079556768760085,-0.079730927944183],[0.033593628555536,0.081317506730556,0.014344349503517]],[[0.044509869068861,0.024263693019748,0.021240495145321],[0.0074453437700868,-0.0041053569875658,-0.0066470173187554],[0.049646761268377,0.0023736341390759,0.027568923309445]],[[0.013428183272481,0.14147980511189,-0.11705727130175],[0.022653751075268,0.093401603400707,-0.1383703649044],[0.063076086342335,-0.059541624039412,-0.036833386868238]],[[0.096891321241856,-0.013769781216979,0.080161787569523],[-0.092973574995995,0.13188678026199,0.075238153338432],[0.015595946460962,-0.066147834062576,-0.0017528643365949]],[[-0.021079588681459,-0.086650505661964,-0.020005529746413],[-0.091242946684361,-0.089502215385437,-0.076178655028343],[-0.011581881903112,-0.03210387378931,-0.013079700060189]],[[0.17635203897953,0.013534605503082,0.12110301107168],[-0.075433127582073,0.10351943224669,0.042772177606821],[0.021339904516935,-0.0095738051459193,-0.058592550456524]]],[[[-0.044746801257133,0.074408754706383,0.16302211582661],[0.073337458074093,0.11147953569889,0.006552358623594],[0.067986503243446,-0.014960168860853,-0.040556523948908]],[[0.0052423849701881,-0.080872565507889,-0.052496243268251],[-0.00016352292732336,-0.10955979675055,-0.050652373582125],[-0.093734361231327,-0.083984114229679,-0.035419102758169]],[[-0.029424615204334,0.065515615046024,-0.019539181143045],[0.0069954739883542,-0.020074624568224,0.015062988735735],[-0.021539684385061,0.012778157368302,-0.096598960459232]],[[0.014691279269755,0.01540691498667,-0.057697899639606],[-0.091762833297253,-0.066401928663254,-0.020299019291997],[-0.077610842883587,0.027608828619123,0.0097166290506721]],[[0.065466672182083,0.086442165076733,0.019714957103133],[0.046061456203461,0.14718137681484,0.08726454526186],[-0.057726386934519,-0.12070944905281,-0.12251242250204]],[[-0.01841183565557,-0.019361726939678,-0.018735338002443],[-0.0062168897129595,-0.061519160866737,-0.056005652993917],[-0.019146015867591,0.0031755301170051,-0.060452293604612]],[[-1.9779925423791e-05,0.013179066590965,-0.084588274359703],[0.014383681118488,-0.030091110616922,-0.063102692365646],[-0.032295905053616,0.002954978030175,-0.071382462978363]],[[-0.08277153968811,-0.1064588278532,0.0019844598136842],[-0.1259006857872,0.048913661390543,0.009313490241766],[-0.002652978990227,0.099888063967228,0.027500042691827]],[[-0.068250887095928,-0.052430920302868,-0.077245198190212],[0.059259243309498,0.0085467183962464,0.012939870357513],[0.033794693648815,0.06337708234787,-0.026854755356908]],[[-0.067229345440865,-0.042669102549553,0.0051407902501523],[0.11606425791979,0.025314375758171,0.0082675097510219],[0.092490814626217,0.062465313822031,-0.0090146819129586]],[[-0.036909826099873,0.10029155015945,-0.0419448800385],[0.013150907121599,0.0446457862854,-0.022348113358021],[0.0051334411837161,0.10933560878038,0.062521420419216]],[[0.005438613705337,-0.0044689774513245,-0.022418137639761],[-0.047324389219284,-0.13482618331909,-0.039941988885403],[-0.050198990851641,0.013837588019669,0.03020897321403]],[[0.051852565258741,0.0040700752288103,0.0012418229598552],[0.12021473795176,0.098402813076973,0.08094859868288],[0.12732914090157,0.097788669168949,0.13563211262226]],[[0.065118156373501,0.11341961473227,0.12742972373962],[0.011780108325183,0.016477406024933,-0.051023803651333],[-0.09828782081604,-0.087091393768787,-0.055809266865253]],[[0.044857587665319,0.08517998456955,0.12168564647436],[0.056761506944895,0.068616181612015,-0.0057613560929894],[0.064375013113022,0.04430229216814,-0.10295931249857]],[[-0.0022123523522168,0.039014961570501,0.052968587726355],[-0.0082889813929796,-0.0066484487615526,-0.0093920053914189],[-0.093526847660542,0.0068980664946139,-0.036895103752613]],[[0.047519240528345,0.037345834076405,0.080486908555031],[0.059175096452236,0.0031246629077941,0.09004969894886],[0.02573337033391,0.070872209966183,0.026957686990499]],[[0.032681290060282,0.033729791641235,-0.025215871632099],[-0.0017294565914199,-0.067462049424648,-0.099299885332584],[-0.022496365010738,-0.12052072584629,-0.13194774091244]],[[-0.088550470769405,-0.062352478504181,-0.050575289875269],[0.0082522816956043,0.012327456846833,0.010699866339564],[-0.03301465511322,-0.031155670061707,-0.080542117357254]],[[0.025625385344028,-0.044283173978329,0.045034889131784],[0.023734202608466,-0.069933503866196,-0.073795571923256],[-0.017027629539371,0.0022278123069555,-0.047423951327801]],[[0.064778983592987,0.0149016212672,0.018634386360645],[-0.031027032062411,0.085531540215015,0.034151747822762],[0.0015671584988013,0.081430368125439,0.071852803230286]],[[-0.042070768773556,-0.15444633364677,-0.035696770995855],[0.010744046419859,-0.0026660012081265,-0.013125929050148],[0.086791686713696,0.0083847008645535,0.021273603662848]],[[0.023556167259812,0.061701785773039,0.030171310529113],[0.053882714360952,0.03935294598341,-0.046720929443836],[-0.086528033018112,-0.015759561210871,-0.05696615204215]],[[-0.010482099838555,-0.12079113721848,0.034796122461557],[0.032318659126759,0.14073836803436,0.0073014507070184],[0.054508306086063,0.012090707197785,0.042235858738422]],[[-0.05818273127079,-0.0091565605252981,0.0085801118984818],[0.0059911143034697,0.062113676220179,-0.03021189942956],[-0.05471508949995,-0.0070262141525745,-0.0041287741623819]],[[-0.04010047391057,-0.020774500444531,-0.056536123156548],[0.10214009135962,0.017061874270439,0.030447278171778],[-0.057947762310505,0.075863637030125,0.10651603341103]],[[-0.021931787952781,0.0077540152706206,0.047527525573969],[-0.053604550659657,-0.0021435196977109,-0.046199135482311],[0.033366605639458,-0.023766968399286,-0.049689512699842]],[[0.11114215105772,0.06612104922533,-0.03364197537303],[0.043157763779163,-0.09393385052681,0.064865179359913],[0.074364215135574,0.039328187704086,0.084566511213779]],[[-0.0971415117383,-0.0074240160174668,-0.022309424355626],[-0.1162178888917,-0.0011510316981003,-0.013205741532147],[0.012828960083425,0.063813515007496,0.08328054100275]],[[-0.043032746762037,-0.17475184798241,-0.0052876253612339],[0.067034512758255,0.080501064658165,-0.015103525482118],[0.055345479398966,-0.054505936801434,0.025057654827833]],[[0.0079753762111068,0.0068218791857362,-0.098062865436077],[-0.044732909649611,-0.042370069772005,-0.011791756376624],[-0.03914238139987,0.038550280034542,-0.00232696486637]],[[-0.026285668835044,0.030580589547753,-0.11572965234518],[0.15173964202404,-0.0052436967380345,-0.15254910290241],[0.10066191107035,0.10943959653378,0.0017606586916372]],[[-0.0079579874873161,0.076890803873539,0.090707495808601],[0.0030329469591379,0.06862698495388,-0.053243540227413],[0.066247276961803,0.051556318998337,0.014274432323873]],[[-0.077884584665298,-0.010761394165456,-0.078808046877384],[-0.050076920539141,-0.051625795662403,-0.0059995036572218],[-0.066349066793919,0.093845054507256,0.031077018007636]],[[0.033983137458563,-0.084423646330833,-0.042961433529854],[-0.06813071668148,-0.032780312001705,0.0012469933135435],[-0.089336104691029,-0.0091072870418429,0.02690377086401]],[[0.066560216248035,0.042694658041,-0.031732946634293],[0.02166835218668,0.033188864588737,-0.1395922601223],[0.028917845338583,-0.076713256537914,-0.090182155370712]],[[0.009081257507205,-0.046175085008144,-7.6866954259458e-06],[-0.034468557685614,0.024762839078903,-0.0095732109621167],[-0.048472605645657,0.0052328193560243,0.019581528380513]],[[-0.050825536251068,-0.0094623919576406,-0.011654746718705],[0.097827903926373,0.058281775563955,-0.017609493806958],[-0.087082751095295,-0.049409508705139,-0.044309686869383]],[[-0.086881019175053,-0.058608487248421,-0.12700594961643],[0.0058067529462278,0.10920066386461,0.053336974233389],[0.089050769805908,-0.030875612050295,-0.10360018163919]],[[-0.073738373816013,0.039854537695646,-0.064849644899368],[0.065359942615032,0.1282724738121,-0.044803857803345],[0.05441078543663,0.092830635607243,-0.061748284846544]],[[0.015759699046612,-0.040213797241449,-0.013046995736659],[0.0026100364048034,0.079653367400169,-0.075844019651413],[0.0080576818436384,0.076783657073975,-0.052808232605457]],[[-0.045743085443974,-0.012518730014563,-0.034620326012373],[0.0025084777735174,-0.012449467554688,-0.056963037699461],[-0.012117044068873,0.024048274382949,-0.04704662412405]],[[0.00066404457902536,0.062981426715851,-0.02279950492084],[0.11680376529694,-0.11292331665754,-0.017250975593925],[-0.026273710653186,-0.087372526526451,-0.018882868811488]],[[0.0081020044162869,-0.11230528354645,-0.096660137176514],[-0.067316882312298,0.022048348560929,0.021314335986972],[-0.09577664732933,0.10896469652653,0.11659149080515]],[[0.064981862902641,0.0091424006968737,0.033501852303743],[-0.065289720892906,0.035042777657509,0.022289032116532],[-0.11552786082029,-0.076369777321815,0.036196976900101]],[[-0.0030605290085077,0.071436531841755,-0.0022731455974281],[-0.03171468898654,0.0064955255948007,0.027419865131378],[0.081109322607517,-0.063217110931873,-0.07118546962738]],[[-0.064530774950981,-0.065906509757042,0.011462778784335],[0.012993013486266,0.15554951131344,0.091327220201492],[0.014272155240178,0.0021075461991131,0.041430033743382]],[[-0.004649696405977,-0.023965314030647,0.026390727609396],[-0.020596962422132,0.029959322884679,0.016519686207175],[-0.0020816056057811,0.0080815656110644,0.044318851083517]],[[-0.027347855269909,-0.036040540784597,-0.05276083946228],[-0.024141706526279,-0.049834683537483,0.095978654921055],[0.052004795521498,0.1843528598547,0.081708267331123]],[[0.029855186119676,0.011304779909551,-0.055388655513525],[0.081469461321831,0.045378524810076,0.073863953351974],[0.021524269133806,0.0049206768162549,-0.047608159482479]],[[-0.089743107557297,0.025969220325351,0.0099014127627015],[-5.1268089009682e-05,0.033445585519075,-0.0023739566095173],[0.08684328943491,-0.094931192696095,-0.064845383167267]],[[-0.0088030882179737,0.03932997956872,-0.039634760469198],[-0.092400759458542,0.02882456406951,0.059039182960987],[-0.0029361427295953,0.050053421407938,0.029467208310962]],[[0.084199592471123,0.058114524930716,0.061611011624336],[-0.041679710149765,0.016068525612354,-0.029188932850957],[-0.10072666406631,-0.022013446316123,-0.11764384806156]],[[0.099340580403805,0.11588644236326,0.0051567223854363],[-0.10002451390028,-0.10581564903259,0.014711640775204],[0.047121442854404,-0.042560622096062,0.056632801890373]],[[-0.072247803211212,0.12963072955608,0.12597706913948],[0.10952211916447,0.0010997720528394,0.050295826047659],[-0.032669808715582,-0.015079776756465,0.067512698471546]],[[-0.065999172627926,0.076329097151756,-0.047686144709587],[-0.06753197312355,-0.032344054430723,0.052900079637766],[0.0097624817863107,-0.018385032191873,0.068724505603313]],[[0.059051714837551,0.084114514291286,0.023316303268075],[-0.036612372845411,0.04513893276453,-0.018445773050189],[0.079574726521969,0.099594831466675,-0.054445173591375]],[[-0.027331126853824,-0.0088140787556767,0.0088372956961393],[0.023620676249266,0.024582557380199,0.047184377908707],[-0.013235531747341,0.062414955347776,0.14721710979939]],[[0.046604227274656,0.023660616949201,0.010244279168546],[0.018786435946822,-0.012775063514709,-0.015877785161138],[-0.016262628138065,-0.035679455846548,0.01842188462615]],[[-0.062820643186569,-0.049853306263685,-0.0059831757098436],[-0.034563720226288,-0.0436045601964,0.058940201997757],[0.055945347994566,0.022791733965278,0.054159294813871]],[[0.092714697122574,-0.04910883307457,0.063264816999435],[-0.10921442508698,0.088972546160221,-0.035744473338127],[-0.061894524842501,0.16689169406891,0.021701900288463]],[[-0.033196128904819,-0.039689410477877,-0.070888787508011],[-0.11946851015091,0.0097869578748941,-0.01914669573307],[0.11188542097807,0.093479610979557,0.033876143395901]],[[0.11075533926487,0.060004562139511,-0.03487453609705],[0.063036240637302,0.034809894859791,-0.013417169451714],[0.0042670853435993,0.047337736934423,-0.072845436632633]],[[-0.0092605333775282,0.081930160522461,-0.057553965598345],[0.037127539515495,-0.0075286882929504,0.0040143658407032],[0.026764692738652,-0.078843288123608,-0.056437410414219]]],[[[-0.076019503176212,0.08532802015543,-0.13965158164501],[0.01495984941721,-0.067352928221226,0.011415107175708],[0.037182848900557,0.061088137328625,0.079256519675255]],[[0.16044047474861,-0.0073509914800525,-0.041076261550188],[0.015402059070766,-0.074080534279346,-0.036715190857649],[-0.1273480206728,-0.099081620573997,-0.12433693557978]],[[-0.13383609056473,-0.077181987464428,-0.018813386559486],[0.024277735501528,-0.11877853423357,0.00096228992333636],[0.089829280972481,0.046424672007561,0.062328979372978]],[[-0.030302869156003,-0.095520511269569,0.10288412123919],[0.087817624211311,-0.029907124117017,0.044368416070938],[0.050942424684763,-0.047244407236576,-0.036768596619368]],[[-0.10419049859047,0.027360973879695,-0.046844843775034],[-0.010219855234027,-0.014690848067403,0.060892056673765],[-0.0023402008228004,-0.017609402537346,-0.062171395868063]],[[-0.091219842433929,-0.15413999557495,0.038362890481949],[-0.067242510616779,0.067887395620346,-0.089110612869263],[0.041772734373808,0.044099695980549,-0.033655468374491]],[[-0.11131606996059,0.022289056330919,-0.0644810795784],[0.0019477166933939,-0.21426479518414,0.022979646921158],[-0.070170544087887,0.043026387691498,-0.01413649879396]],[[-0.068331710994244,-0.078469268977642,0.04200279712677],[-0.018369428813457,-0.038658920675516,0.13272650539875],[-0.088086359202862,-0.044955406337976,0.048252761363983]],[[-0.035282701253891,-0.061908088624477,0.1193727850914],[-0.13455292582512,-0.002068670000881,-0.050790473818779],[-0.034516494721174,-0.038559470325708,0.011287081055343]],[[-0.037285905331373,0.00039289446431212,-0.058375813066959],[-0.061302300542593,-0.042328584939241,0.0037489167880267],[0.050663255155087,0.083923757076263,0.10235279798508]],[[0.082355476915836,0.029420094564557,-0.021271754056215],[0.0077634579502046,0.0025808084756136,0.070538654923439],[-0.098285645246506,0.07190478593111,0.093178041279316]],[[0.02097469009459,0.033116962760687,-0.077672101557255],[-0.11128076165915,0.01577383838594,0.054354649037123],[0.035802081227303,-0.068846620619297,-0.058322437107563]],[[-0.065374612808228,0.049028337001801,0.0096377460286021],[-0.11899295449257,0.071169830858707,-0.010701479390264],[-0.0055131153203547,-0.084394939243793,-0.023405127227306]],[[-0.014135671779513,-0.091206513345242,-0.097426846623421],[-0.027512982487679,-0.055724386125803,-0.016096651554108],[0.061721004545689,0.074435360729694,0.11930544674397]],[[0.016506155952811,-0.042104236781597,0.012527199462056],[-0.021406222134829,0.0040221093222499,-0.021862730383873],[0.076987832784653,0.023852728307247,0.1512808650732]],[[0.041648991405964,-0.049292858690023,-0.05309047922492],[-0.0023317763116211,-0.041123352944851,-0.031200595200062],[-0.026137316599488,-0.018792847171426,0.01610279083252]],[[-0.057452592998743,-0.030152969062328,0.11059125512838],[-0.0055204876698554,-0.071376085281372,-0.21227598190308],[-0.026937074959278,-0.064778998494148,-0.13817478716373]],[[0.059394460171461,0.031536281108856,-0.014726342633367],[0.0067721107043326,0.0024889837950468,-0.21292115747929],[-0.053006120026112,-0.070084311068058,-0.15737698972225]],[[-0.04522867128253,0.017689803615212,-0.064012095332146],[0.092947885394096,-0.0040275189094245,-0.043644640594721],[0.001937071676366,-0.010377689264715,0.012754905037582]],[[0.016411434859037,0.020444771274924,-0.066694036126137],[0.00458624958992,-0.014915656298399,-0.03381684422493],[-0.028729366138577,-0.020914943888783,-0.030611803755164]],[[-0.088949769735336,-0.075225524604321,-0.10583300888538],[-0.049549613147974,0.032737694680691,0.076959386467934],[-0.055675216019154,0.1085714623332,-0.030641699209809]],[[-0.022745199501514,-0.055171765387058,0.10453591495752],[-0.027171636000276,-0.067771963775158,0.10910329222679],[-0.009552544914186,0.038105707615614,-0.065038129687309]],[[0.038048278540373,0.01562038064003,0.014149948954582],[0.016298118978739,-0.009064007550478,0.0010912079596892],[0.027788449078798,-0.071064807474613,-0.028128745034337]],[[0.050326786935329,-0.082827135920525,0.031239353120327],[0.038982454687357,0.10177604854107,0.079703405499458],[-0.045537523925304,0.051353119313717,0.0085502527654171]],[[0.077634543180466,0.070773579180241,-0.01897687278688],[0.0388551838696,0.048631630837917,0.049811899662018],[-0.028068765997887,0.067839995026588,0.015087708830833]],[[0.03586707636714,-0.092469975352287,0.0052471654489636],[-0.06314430385828,-0.034343361854553,-0.038557838648558],[-0.01939370855689,-0.043312679976225,-0.084610067307949]],[[-0.08734717220068,-0.02650492824614,0.11986590176821],[-0.033312246203423,-0.061709091067314,-0.095720633864403],[-0.070598371326923,0.0011063622077927,-0.0025588157586753]],[[-0.23071637749672,-0.13344329595566,-0.030578095465899],[-0.02793007530272,0.032077189534903,0.15008135139942],[0.012492396868765,0.087509520351887,-0.014256179332733]],[[0.011040001176298,-0.05464781075716,-0.0073141590692103],[-0.074309833347797,0.021080549806356,0.028817985206842],[-0.025765717029572,-0.079974509775639,-0.0060041486285627]],[[-0.022971207275987,0.08069258928299,-0.031193789094687],[0.072398297488689,-0.19049014151096,-0.097224779427052],[-0.084455326199532,-0.11849353462458,-0.11749308556318]],[[0.092669069766998,0.024602269753814,0.11286125332117],[0.018521210178733,0.028253335505724,0.0026489140000194],[-0.078854382038116,-0.074119992554188,-0.057569481432438]],[[0.0083541562780738,0.063079565763474,-0.058698814362288],[0.08616304397583,-0.0087548056617379,-0.081281445920467],[0.035516206175089,0.034508600831032,-0.023853726685047]],[[-0.039582461118698,-0.04584750905633,0.066784836351871],[-0.12444182485342,0.055410038679838,0.094958700239658],[-0.076451428234577,-0.052739609032869,-0.11265098303556]],[[0.18935757875443,0.014232032932341,-0.053697753697634],[0.11854172497988,0.032297000288963,-0.098010070621967],[-0.025099335238338,-0.18349699676037,-0.088545434176922]],[[0.04370004311204,-0.023476079106331,0.063197277486324],[-0.062700070440769,-0.27193522453308,-0.16866798698902],[-0.040756970643997,-0.16988727450371,-0.05246214941144]],[[0.06022372469306,0.010214815847576,0.029520507901907],[0.014235905371606,0.084645472466946,0.018844610080123],[-0.02997499704361,-0.044828567653894,-0.0061266710981727]],[[0.033197771757841,0.00053115340415388,-0.10985461622477],[-0.019921978935599,-0.0038848526310176,-0.012640681117773],[0.017112853005528,0.010575525462627,-0.0082766683772206]],[[-0.070545971393585,-0.071097582578659,0.008627318777144],[-0.022639445960522,0.087515816092491,-0.042596187442541],[0.04192353412509,0.043577373027802,0.039588421583176]],[[0.003862130921334,0.041611421853304,0.041631046682596],[0.0015725464327261,0.017543273046613,-0.021424535661936],[-0.081738449633121,-0.017266649752855,-0.13625858724117]],[[0.01104605384171,-0.011461264453828,0.09409823268652],[0.0077135157771409,0.082744419574738,0.087531924247742],[0.059812773019075,0.081181511282921,0.01435783226043]],[[0.085418619215488,0.094895005226135,-0.080974228680134],[0.018205415457487,-0.016319464892149,0.084254078567028],[-0.049747601151466,-0.10862817615271,-0.0027563474141061]],[[0.032440040260553,0.0013371095992625,0.058441180735826],[-0.1052310615778,-0.093762382864952,0.0010201942641288],[0.025355512276292,0.023787029087543,0.044163957238197]],[[-0.12828396260738,-0.056207783520222,-0.0076594185084105],[0.1066814288497,-0.037651408463717,0.035724364221096],[-0.046301927417517,0.0036340092774481,0.008509436622262]],[[0.17092323303223,-0.12754479050636,0.073676481842995],[-0.034483462572098,0.030161222442985,0.005590399261564],[-0.036172445863485,-0.055853791534901,-0.035886820405722]],[[-0.032160505652428,0.15279905498028,0.028173316270113],[0.091682873666286,-0.0061676786281168,-0.12291833013296],[-0.010759439319372,-0.14624942839146,-0.020057242363691]],[[-0.07784416526556,0.071515567600727,-0.049873799085617],[-0.0095360931009054,0.018388956785202,-0.057669043540955],[0.027332812547684,0.062766879796982,-0.015531204640865]],[[-0.026856031268835,-0.033813450485468,0.082015499472618],[-0.10288065671921,0.036465246230364,0.022695189341903],[-0.14498251676559,0.018079997971654,0.038625728338957]],[[0.21297162771225,-0.037863090634346,-0.13966400921345],[0.088554486632347,-0.12176568061113,-0.036864828318357],[0.11325665563345,0.0016509152483195,-0.0049032648093998]],[[0.055440504103899,0.13037540018559,0.13503751158714],[0.1537036895752,-0.061516009271145,-0.00089700205717236],[-0.078662604093552,-0.086012184619904,-0.013153662905097]],[[-0.1424473375082,0.035327389836311,-0.11429324001074],[-0.012612462975085,-0.059076126664877,-0.03642737492919],[-0.074162282049656,0.10879204422235,0.093624897301197]],[[-0.1295413672924,0.078596606850624,-0.010339071974158],[0.15534391999245,-0.065719924867153,-0.00022828410146758],[-0.053017865866423,-0.010665567591786,0.012576086446643]],[[-0.0033095565158874,0.080125294625759,0.076580889523029],[-0.076258599758148,0.11293224990368,0.0093973027542233],[0.012428648769855,-0.021086005493999,-0.0097768809646368]],[[0.02502903342247,-0.056898634880781,0.072622820734978],[-0.19496689736843,-0.015085358172655,-0.11976230144501],[-0.14910785853863,-0.14524872601032,-0.13347585499287]],[[-0.002684308681637,0.0088636483997107,-0.02190431766212],[0.11317770183086,0.064422935247421,0.019332414492965],[0.10789941996336,0.1972466558218,0.23606203496456]],[[0.051599934697151,-0.00081316335126758,0.050248585641384],[-0.028654268011451,-0.017652127891779,-0.090572379529476],[-0.1302947551012,-0.19970758259296,-0.076516799628735]],[[0.024337984621525,0.022970281541348,-0.12880788743496],[-0.061802074313164,-0.004194260109216,-0.086501576006413],[-0.065838277339935,-0.058893818408251,-0.056738615036011]],[[-0.040220089256763,-0.15878307819366,0.027869317680597],[0.015440684743226,0.034187380224466,0.03350817412138],[-0.17846454679966,-0.124680750072,-0.030598446726799]],[[0.0026164508890361,0.13167467713356,-0.044203605502844],[0.021630670875311,-0.18079021573067,0.15662659704685],[0.031103381887078,-0.063161537051201,-0.022791331633925]],[[0.14339116215706,-0.017314590513706,-0.056799933314323],[-0.20581610500813,-0.027606653049588,0.023165941238403],[0.057074557989836,-0.077593170106411,-0.023554151877761]],[[0.021821347996593,0.0059541845694184,-0.033277023583651],[-0.0016448954120278,0.011525738053024,0.065095022320747],[-0.01440086401999,0.022241372615099,0.051062200218439]],[[-0.017352156341076,-0.076686225831509,0.076393969357014],[-0.052314039319754,-0.024476172402501,0.050844620913267],[-0.046578574925661,-0.12810169160366,-0.043997909873724]],[[0.079269975423813,0.0019327864283696,-0.064260505139828],[-0.022526958957314,0.085096888244152,0.22413937747478],[-0.069831609725952,0.034301102161407,0.11057069152594]],[[0.056063283234835,0.00026287059881724,-0.054400872439146],[0.031021304428577,0.040836371481419,-0.051831044256687],[-0.042234383523464,-0.040673200041056,-0.075783245265484]],[[0.073732808232307,-0.0034230744931847,0.012188511900604],[-0.015797818079591,-0.026742052286863,0.020786046981812],[0.0052622510120273,-0.076646700501442,-0.066910557448864]]],[[[-0.049109142273664,0.094151817262173,0.12429766356945],[-0.043385803699493,-0.0016433667624369,0.042500890791416],[-0.029519144445658,-0.2357741445303,-0.10491272062063]],[[0.047316834330559,-0.07130666077137,-0.095036849379539],[0.10865281522274,0.076513662934303,-0.097172610461712],[0.0378154553473,0.12125887721777,0.0048688100650907]],[[-0.043264359235764,0.034947417676449,0.044604979455471],[-0.071106649935246,-0.090685412287712,0.050483681261539],[0.012215171009302,0.089100368320942,-0.011805783957243]],[[-0.12031537294388,-0.07503779232502,-0.01481657102704],[-0.10333077609539,-0.028290178626776,-0.066545583307743],[0.018386129289865,0.0093618594110012,-0.038095347583294]],[[-0.075550898909569,0.0069700116291642,0.0068902336061001],[-0.023670457303524,-0.024403912946582,-0.0076187569648027],[0.13438831269741,-0.11100592464209,-0.011419774033129]],[[-0.0038136201910675,-0.053236111998558,-0.06375552713871],[0.048412300646305,4.2064879380632e-05,-0.097416564822197],[-0.13629011809826,0.021245010197163,-0.080480672419071]],[[0.0031926098745316,-0.014461657032371,-0.046180162578821],[-0.067460313439369,0.058823514729738,-0.035093013197184],[-0.034183625131845,-0.053891558200121,-0.0099936742335558]],[[0.020807653665543,0.060496594756842,0.026411050930619],[0.021276377141476,0.056873925030231,-0.11464647948742],[0.089122347533703,0.048997949808836,-0.025053387507796]],[[0.067713879048824,0.030231982469559,-0.13077004253864],[0.020291129127145,-0.018103539943695,0.10494472831488],[0.031984202563763,0.039920933544636,0.072801254689693]],[[0.076653890311718,0.033247295767069,-0.0037249762099236],[0.07319214195013,0.053960856050253,-0.081022322177887],[-0.023187447339296,-0.10569709539413,0.053636528551579]],[[0.10700757801533,-0.0041986480355263,0.013569492846727],[-0.082003071904182,-0.10689030587673,0.1075806170702],[0.05686304345727,-0.05625169351697,-0.088990330696106]],[[-0.079880058765411,0.035988863557577,-0.0094267232343554],[0.034645341336727,0.082078620791435,-0.012648772448301],[0.03788947314024,-0.023102678358555,0.05744444206357]],[[-0.13034300506115,-0.22142608463764,-0.16263531148434],[-0.2100655734539,-0.046008057892323,-0.14590087532997],[0.027743736281991,-0.019373252987862,-0.033807765692472]],[[-0.053306423127651,0.13478870689869,0.17919692397118],[-0.024231247603893,0.055843431502581,0.14256553351879],[-0.073444224894047,-0.059753276407719,-0.083224162459373]],[[0.038964621722698,0.13015720248222,0.13504748046398],[0.0074603594839573,-0.0059497002512217,0.076404690742493],[-0.13413859903812,-0.091716580092907,-0.13492347300053]],[[0.075203731656075,-0.022169830277562,-0.068714134395123],[0.078483060002327,-0.071867518126965,-0.16369493305683],[-0.010044910944998,-0.045809756964445,-0.04293504357338]],[[-0.0059648063033819,-0.18142350018024,-0.13616919517517],[-0.030189260840416,-0.16206867992878,-0.037950586527586],[0.05815489217639,-0.10147897154093,-0.025780817493796]],[[-0.039773933589458,-0.017148848623037,-0.091941878199577],[-0.024061866104603,-0.02844125777483,-0.12245670706034],[-0.018920907750726,-0.038558691740036,0.097639016807079]],[[0.026388689875603,-0.014622757211328,0.057312421500683],[0.044557876884937,0.0718909278512,-0.067120566964149],[0.061733167618513,0.019939418882132,0.036167558282614]],[[0.098869800567627,0.04720102250576,-0.043965946882963],[-0.012973321601748,-0.007052110042423,-0.029577102512121],[-0.037353713065386,0.063469804823399,-0.015860384330153]],[[0.087996497750282,-0.034186150878668,0.16022884845734],[0.075101293623447,0.10319281369448,-0.026668706908822],[-0.1264686435461,0.011948315426707,-0.050604268908501]],[[0.027041621506214,-0.11078990995884,-0.043624959886074],[0.11928411573172,-0.0063127717003226,0.063545122742653],[-0.040626928210258,0.016296358779073,-0.032794944941998]],[[0.033376175910234,0.039903745055199,-0.038281127810478],[0.0030807023867965,0.0045600514858961,0.040637001395226],[-0.028263857588172,-0.049087580293417,-0.0029636546969414]],[[0.017488429322839,0.027163777500391,-0.077380992472172],[-0.048755496740341,-0.0477359816432,-0.02654879167676],[-0.11334996670485,-0.095175288617611,-0.036052610725164]],[[0.033329114317894,-0.064063914120197,0.011449521407485],[-0.0068388786166906,-0.016179978847504,0.044190339744091],[-0.042823858559132,-0.017360674217343,-0.031463708728552]],[[-0.13162797689438,-0.068752318620682,-0.21702194213867],[-0.064506478607655,-0.032938804477453,0.012082007713616],[0.024646565318108,0.060672406107187,0.035558212548494]],[[0.028253076598048,-0.034363836050034,0.066360533237457],[0.0013210361357778,-0.0084902169182897,0.020256515592337],[0.078423857688904,-0.10832335054874,-0.010664559900761]],[[-0.063452824950218,0.13596247136593,0.151211977005],[-0.031814400106668,-0.08946368098259,-0.022915041074157],[-0.050257328897715,-0.066612400114536,0.00082329753786325]],[[0.05733385682106,-0.12108928710222,0.068862475454807],[0.018674431368709,0.14503757655621,-0.12212477624416],[0.11861763894558,-0.030806487426162,0.055313188582659]],[[-0.20935447514057,-0.23416571319103,-0.12663371860981],[-0.19152991473675,-0.12166845798492,0.061471246182919],[0.072068117558956,0.12047848105431,0.019628388807178]],[[-0.019978722557425,-0.065529190003872,-0.045625671744347],[0.012032888829708,-0.10197906196117,-0.022070771083236],[-0.081980481743813,-0.0015620396006852,-0.083670794963837]],[[-0.0735969170928,-0.19764237105846,-0.22936637699604],[-0.03530353680253,-0.12434127181768,-0.2231418043375],[0.086816780269146,0.057132765650749,0.055990792810917]],[[0.0019243936985731,0.069632902741432,0.14075577259064],[-0.088407330214977,0.078313134610653,0.061744894832373],[0.014606696553528,0.10895877331495,-0.0085269268602133]],[[-0.037836510688066,-0.12114382535219,-0.14331257343292],[-0.056870624423027,-0.0034173638559878,-0.073377221822739],[0.0048553375527263,0.17826442420483,0.095309406518936]],[[-0.010457394644618,-0.14776033163071,-0.16750225424767],[0.032219100743532,0.11723166704178,-0.33987951278687],[0.0034271678887308,0.055992219597101,0.040375724434853]],[[0.018568122759461,-0.024270012974739,-0.070970214903355],[-0.034724701195955,0.0064011234790087,-0.036725126206875],[-0.039061222225428,-0.0034375851973891,0.020386220887303]],[[-0.014093693345785,-0.0017999523552135,-0.060765638947487],[-0.0065377745777369,-0.019398288801312,-0.041835658252239],[0.031439945101738,-0.046762932091951,0.013475282117724]],[[0.01725766249001,-0.13106541335583,0.041670709848404],[0.11049988120794,-0.1327002197504,-0.059203803539276],[-0.01851030997932,-0.017506621778011,0.03956026211381]],[[0.093786023557186,-0.10346069186926,-0.05481681227684],[0.094775900244713,0.017854770645499,-0.10980163514614],[0.10395167768002,0.11770445853472,0.072140008211136]],[[-0.01822366937995,0.056197419762611,-0.12749119102955],[-0.076791547238827,-0.044238593429327,0.068827979266644],[0.023802913725376,0.00051404471741989,-0.0036241174675524]],[[-0.095781452953815,-0.10780136287212,-0.12131432443857],[0.019279133528471,-0.066678144037724,0.044461462646723],[0.0040383064188063,-0.034932542592287,-0.14757800102234]],[[0.021105118095875,-0.005953571293503,0.053769133985043],[-0.037099629640579,0.013345627114177,0.00061013345839456],[-0.093763217329979,-0.025777889415622,-0.01728805154562]],[[-0.10434908419847,0.049730785191059,0.056429348886013],[-0.07183163613081,-0.023773349821568,0.10934154689312],[-0.13254536688328,-0.11842583119869,-0.0050795464776456]],[[0.085043981671333,-0.058014109730721,0.016134718433022],[0.058075048029423,0.070093624293804,0.059133812785149],[-0.030591314658523,0.010707820765674,-0.015023979358375]],[[-0.093914307653904,-0.04101662710309,-0.076207734644413],[-0.11234591156244,-0.08223932236433,0.078085906803608],[-0.070759929716587,0.084632582962513,0.042022775858641]],[[-0.074999548494816,0.027270548045635,-0.00019053540017921],[-0.038722265511751,-0.0076171779073775,0.010129688307643],[0.038703262805939,-0.02341172657907,-0.0057928925380111]],[[-0.013592653907835,-0.11763524264097,-0.1383361518383],[-0.0083697829395533,0.045640677213669,-0.08507576584816],[-0.024756286293268,0.027355911210179,0.087486393749714]],[[-0.039868969470263,0.047600261867046,-0.067073665559292],[0.0055729928426445,-0.07348694652319,0.054049201309681],[-0.036822494119406,-0.10576084256172,-0.065596505999565]],[[0.036209784448147,-0.07311162352562,-0.05807164311409],[-0.0024028965272009,0.0048674899153411,-0.039251063019037],[0.03106202930212,-0.063241608440876,-0.0065400404855609]],[[-0.0056069856509566,0.13624987006187,-0.043300393968821],[0.034453228116035,-0.13182961940765,-0.0079601500183344],[-0.18028309941292,-0.06824766844511,-0.023489961400628]],[[-0.11646202206612,-0.061033327132463,-0.037794880568981],[-0.020135071128607,0.043812565505505,-0.039837166666985],[0.072372570633888,-0.011731994338334,0.016854139044881]],[[-0.011148687452078,-0.073572240769863,-0.10599246621132],[0.014576064422727,-0.009304272942245,-0.037778198719025],[-0.055215574800968,0.086393781006336,0.086567305028439]],[[-0.21939371526241,-0.13394996523857,-0.10495124012232],[-0.10932051390409,-0.17991897463799,-0.10748695582151],[0.013065924867988,-0.022865459322929,-0.14572554826736]],[[0.13905388116837,0.16280630230904,0.1902961730957],[0.067164465785027,0.10789859294891,0.16518212854862],[-0.036121916025877,0.027718922123313,0.056739680469036]],[[-0.024848276749253,0.17129664123058,0.086087889969349],[0.0073732757009566,0.10554857552052,-0.087463580071926],[0.020624544471502,-0.10503669828176,0.038333799690008]],[[0.10164113342762,0.041273605078459,-0.14248010516167],[0.060615871101618,-0.17778038978577,0.097696602344513],[0.13598144054413,0.11221364140511,-0.013080620206892]],[[-0.098744258284569,-0.15156818926334,-0.14908401668072],[-0.20176708698273,0.11695922911167,-0.14713470637798],[0.035657603293657,-0.024299809709191,0.017948625609279]],[[0.011221100576222,0.013007562607527,0.0075883422978222],[0.022171748802066,-0.0036912704817951,-0.01213388890028],[0.010989089496434,0.017085211351514,-0.02886263653636]],[[-0.023287048563361,0.027033250778913,0.088018588721752],[-0.030761318281293,-0.14155068993568,0.041990052908659],[-0.045610748231411,0.007698499597609,-0.0012118441518396]],[[-0.022221982479095,-0.020894706249237,0.02986466139555],[0.015743214637041,0.015046971850097,-0.022202393040061],[0.015704434365034,0.065439529716969,0.022070681676269]],[[-0.12994182109833,-0.11646683514118,0.032042291015387],[-0.073944076895714,-0.046992782503366,0.062647253274918],[-0.013314142823219,0.084645345807076,0.038034897297621]],[[0.021526142954826,-0.054802574217319,-0.086091883480549],[0.096774078905582,0.097264610230923,0.089880228042603],[0.065064214169979,0.012082662433386,-0.025135543197393]],[[-0.005713795311749,-0.020315147936344,-0.012124426662922],[0.086883693933487,0.0092832501977682,-0.015223830007017],[0.044254280626774,-0.017274271696806,-0.084940567612648]],[[-0.00028584437677637,0.051617942750454,-0.0091872876510024],[0.0090879816561937,0.040730912238359,-0.064064152538776],[-0.028399989008904,-0.04463842138648,0.087636500597]]],[[[0.015183015726507,-0.054368574172258,0.074622116982937],[0.0079786852002144,0.043165467679501,-0.057944189757109],[0.090301156044006,-0.1145948767662,0.085144951939583]],[[-0.056931864470243,0.044648423790932,-0.054001715034246],[0.024030338972807,-0.044442895799875,-0.013931659050286],[0.045337256044149,0.020902492105961,0.00013861783372704]],[[-0.019558373838663,0.018165880814195,-0.065254010260105],[-0.051416113972664,-0.054700408130884,0.041341431438923],[0.042141523212194,-0.0076292948797345,-0.013302253559232]],[[-0.019984954968095,0.0093240719288588,0.052355341613293],[-0.031934171915054,0.0052399793639779,-0.073350787162781],[-0.0090327151119709,0.055301059037447,0.014135276898742]],[[-0.0018498605350032,0.028980107977986,-0.056709509342909],[0.0038029307033867,-0.042522426694632,0.016345210373402],[-0.021067406982183,-0.0052925925701857,0.020740630105138]],[[-0.04662924259901,-0.016640059649944,0.0035913686733693],[-0.031533822417259,0.0098087023943663,0.11397435516119],[-0.074756354093552,-0.031123764812946,0.13336752355099]],[[-0.0490408167243,-0.046566117554903,0.018945254385471],[0.011410908773541,0.011237652972341,-0.0019120394717902],[-0.017140494659543,-0.066869892179966,-0.013021291233599]],[[0.058715019375086,-0.035213481634855,-0.047603096812963],[-0.035301838070154,-0.031578294932842,0.024002645164728],[0.039532653987408,-0.0073535060510039,-0.038328967988491]],[[0.038029402494431,-0.027216631919146,0.055200170725584],[0.034044854342937,0.0039109610952437,0.015369416214526],[-0.022826274856925,0.042883791029453,-0.045423235744238]],[[-0.00047166593139991,0.080738455057144,-0.015760596841574],[-0.030624017119408,-0.078732162714005,0.012067067436874],[0.087938837707043,-0.0027239955961704,-0.03702075406909]],[[0.054134592413902,0.01810291223228,0.0093704471364617],[0.01779274083674,-0.015073019079864,-0.0030415609944612],[0.0074591068550944,-0.072658874094486,-0.063866071403027]],[[-0.089687585830688,-0.11096291989088,-0.014984392561018],[-0.058339025825262,0.023189077153802,-0.011482178233564],[0.0070080794394016,0.035560518503189,0.033935885876417]],[[-0.033680655062199,0.027344107627869,-0.065853171050549],[-0.042579282075167,0.092523299157619,-0.088790081441402],[-0.048749886453152,-0.050837393850088,0.077743299305439]],[[-0.016945170238614,-0.035325329750776,-0.0039421231485903],[0.12095430493355,0.019465424120426,-0.075281888246536],[0.15396544337273,0.060756348073483,0.029935220256448]],[[0.077076531946659,-0.051890015602112,-0.094497121870518],[0.065309666097164,-0.041287709027529,0.0079943044111133],[-0.057057615369558,-0.077764272689819,-0.03374657407403]],[[0.028088442981243,-0.054485403001308,0.025314783677459],[0.11167871952057,-0.001418515923433,0.052474834024906],[-0.13314536213875,0.015773460268974,0.043726395815611]],[[0.050486095249653,0.0058870897628367,-0.070657595992088],[-0.083497561514378,-0.0050739413127303,0.095373705029488],[-0.0022089204285294,-0.06283650547266,0.022935934364796]],[[-0.054831393063068,-0.080917946994305,-0.018322382122278],[0.018147828057408,-0.046521734446287,-0.046825926750898],[-0.0072558159008622,0.078756354749203,-0.0011972478823736]],[[-0.040297109633684,-0.016369558870792,-0.014328854158521],[-0.024139106273651,-0.026790637522936,-0.030943907797337],[0.012421643361449,-0.023955512791872,0.08129595220089]],[[-0.010066339746118,-0.026505384594202,-0.01377262827009],[-0.034254997968674,-0.057819955050945,-0.051515497267246],[0.014867597259581,0.018698450177908,0.033368650823832]],[[0.069756306707859,-0.036740738898516,0.015858463943005],[-0.029610333964229,-0.0031506880186498,-0.047089401632547],[-0.054070021957159,-0.0032822848297656,-0.059725735336542]],[[0.049865625798702,0.027584906667471,0.0056931101717055],[0.011635527014732,0.06535878777504,-0.017407689243555],[-0.0041506034322083,-0.054936375468969,0.07182340323925]],[[-0.0038578847888857,-0.001228321227245,0.069312788546085],[0.034263461828232,-0.036052446812391,-0.044882748275995],[0.0095487693324685,-0.029731104150414,0.0003842314472422]],[[0.0097220400348306,-0.0084989881142974,0.044724497944117],[0.074415594339371,0.042283065617085,-0.023907015100121],[-0.064805172383785,-0.037278812378645,0.018510490655899]],[[-0.067104637622833,-0.070097498595715,0.027358338236809],[-0.051510136574507,-0.013213178142905,0.0047294879332185],[-0.025934046134353,0.0061803786084056,0.045531075447798]],[[-0.039709638804197,0.038300033658743,0.074710361659527],[-0.069892011582851,0.01908690109849,0.067558616399765],[-0.019658900797367,-0.0081168944016099,0.0074351481162012]],[[0.00076574913691729,0.079051457345486,-0.042106449604034],[-0.027133028954268,-0.021580593660474,0.081219501793385],[0.09022282063961,-0.11510314047337,-0.055017247796059]],[[0.035179037600756,-0.040483955293894,0.098554380238056],[-0.025073118507862,0.033072087913752,-0.078239917755127],[0.037556231021881,-0.048000480979681,-0.026854952797294]],[[0.052818197757006,0.063043497502804,-0.025694347918034],[-0.05750210210681,0.014929697848856,-0.023691570386291],[-0.10906194895506,0.021265156567097,-0.042665492743254]],[[0.0068045994266868,-0.05834174901247,-0.013472180813551],[-0.063572369515896,-0.051812920719385,-0.03625700622797],[-0.048967827111483,-0.014687413349748,0.081330172717571]],[[-0.042013399302959,0.012648866511881,-0.10229757428169],[-0.027808077633381,-0.013265512883663,-0.069697342813015],[-0.024194318801165,-0.0065784030593932,0.070104360580444]],[[-0.064727932214737,0.0357705950737,0.074588961899281],[-0.029258292168379,0.12515740096569,0.1871198117733],[0.013014024123549,-0.069342106580734,-0.026219505816698]],[[0.0326485671103,0.0048867734149098,-0.024020968005061],[0.077348731458187,-0.094032175838947,-0.055034387856722],[0.046748347580433,-0.029766814783216,-0.024887485429645]],[[-0.0030688703991473,-0.042096577584743,-0.0063022361136973],[0.029070159420371,0.07915123552084,0.021956136450171],[-0.0059084980748594,-0.12328940629959,-0.063500672578812]],[[-0.048415210098028,0.016274826601148,0.038906175643206],[-0.011541247367859,0.027925474569201,-0.074949473142624],[0.012330699712038,0.0065136351622641,-0.068208537995815]],[[-0.015895502641797,-0.053638909012079,-0.078664392232895],[0.043967831879854,0.021866487339139,-0.016080098226666],[0.035958211869001,-0.031090376898646,-0.0093312431126833]],[[-0.0093821492046118,-0.17828674614429,-0.039418634027243],[-0.0729685947299,-0.036164175719023,-0.00052202376537025],[-0.15572817623615,0.0086085246875882,0.010233622044325]],[[-0.1072591021657,0.13291035592556,-0.032099235802889],[-0.03543084487319,0.030213162302971,-0.01017905306071],[-0.053974095731974,-0.057324025779963,0.064630642533302]],[[-0.04501985758543,0.039990704506636,0.095105156302452],[-0.097462862730026,-0.045350655913353,-0.026892444118857],[-0.11439788341522,-0.089152567088604,-0.036021903157234]],[[0.083330020308495,0.082300171256065,0.054992359131575],[-0.092632859945297,-0.043003246188164,-0.013050274923444],[0.012608524411917,-0.079346671700478,0.045941703021526]],[[-0.060175053775311,0.058927062898874,0.041051629930735],[-0.038049135357141,-0.031332187354565,0.033048924058676],[-0.064377129077911,-0.07242226600647,-0.058401465415955]],[[-0.044031016528606,0.037771128118038,0.019417999312282],[-0.058005392551422,-0.14427946507931,-0.048279635608196],[0.0035820796620101,0.11008434742689,-0.038200899958611]],[[-0.062781445682049,0.089430138468742,-0.0047983294352889],[-0.05266073346138,0.007524237036705,-0.042829629033804],[-0.12332160025835,-0.030234569683671,-0.058375354856253]],[[-0.094502650201321,-0.066668480634689,0.042344354093075],[0.048711936920881,0.077530913054943,-0.022868881002069],[0.068681873381138,0.10809645056725,-0.048466499894857]],[[0.015161072835326,0.085797391831875,-0.014083311893046],[0.057728379964828,0.0083084013313055,0.00046328848111443],[0.028018096461892,-0.046252645552158,0.070246271789074]],[[0.037367142736912,0.046210713684559,-0.03748831525445],[-0.03322945535183,0.13265793025494,0.014222835190594],[0.039684284478426,-0.0043565733358264,-0.00098602299112827]],[[-0.038954015821218,0.068606041371822,-0.011703317984939],[0.095932342112064,0.024005813524127,-0.02466943860054],[0.048994712531567,-0.00010633446072461,-0.018560217693448]],[[0.032107140868902,-0.060189329087734,0.026280671358109],[0.019746009260416,-0.11503058671951,-0.015906067565084],[-0.0017577530816197,0.013228574767709,-0.036712288856506]],[[0.0053442167118192,-0.013488272204995,0.085960991680622],[0.011508200317621,-0.08126825094223,-0.056271884590387],[-0.021504232659936,-0.047064159065485,-0.026964783668518]],[[-0.06790704280138,-0.0041277999989688,0.067938275635242],[0.0081147132441401,0.079224266111851,-0.048330947756767],[-0.036391273140907,0.04333582893014,-0.084544360637665]],[[0.031218441203237,-0.010765453800559,-0.014850934036076],[-0.11752191185951,0.0029268150683492,0.030468882992864],[-0.053704511374235,0.036777190864086,0.0095186093822122]],[[-0.03570295125246,0.0080044846981764,-0.010023314505816],[0.037233229726553,0.018732458353043,-0.042126979678869],[0.034868862479925,-0.00044075810001232,-0.06906271725893]],[[-0.040711294859648,0.037161413580179,-0.022598581388593],[-0.041039407253265,-0.034692738205194,-0.019602250307798],[0.043315351009369,-0.027425248175859,-0.020552860572934]],[[0.059794969856739,-0.068576835095882,0.070623494684696],[0.087289422750473,0.0098446812480688,0.024484138935804],[0.0050212042406201,0.13947074115276,0.05369109660387]],[[0.042206488549709,0.024149559438229,-0.039466712623835],[-0.071092776954174,0.12200915068388,0.017980521544814],[0.029325110837817,0.1358929425478,-0.0017802525544539]],[[-0.045717544853687,-0.056888796389103,0.066353477537632],[-0.013432320207357,0.0006613508448936,0.0025559677742422],[-0.057423800230026,0.0033786136191338,-0.053087379783392]],[[-0.060531549155712,-0.08600290119648,0.01357349101454],[0.0016363863833249,0.010746785439551,0.035144537687302],[-0.051192432641983,0.030478645116091,-0.074977226555347]],[[-0.0013576216297224,-0.045390896499157,-0.028929457068443],[-0.026999430730939,0.036434631794691,0.047721397131681],[-0.023357713595033,-0.031678266823292,0.06482458114624]],[[-0.031632903963327,0.087980672717094,0.034435279667377],[-0.028265204280615,-0.1667622178793,0.016516257077456],[0.0376734174788,0.045224193483591,-0.092365130782127]],[[0.025918297469616,-0.044235002249479,-0.011400477960706],[0.02849929779768,0.047735698521137,-0.02738780900836],[-0.027025911957026,-0.0036967142950743,0.022470191121101]],[[-0.0017694869311526,0.0064686397090554,-0.068793095648289],[0.094857394695282,-0.13448126614094,-0.015045241452754],[0.037604693323374,-0.16480022668839,-0.0020914222113788]],[[-0.10189903527498,0.007732252124697,-0.048992563039064],[-0.057210106402636,-0.0074083982035518,-0.084119603037834],[-0.0012334069469944,0.0079664252698421,-0.031949710100889]],[[-0.039595872163773,-0.035561200231314,-0.026761893182993],[0.075202830135822,-0.0012574376305565,-0.045136988162994],[-0.046114280819893,0.00034085151855834,-0.0058074840344489]],[[-0.0063617653213441,-0.072264455258846,0.040200062096119],[0.02361074090004,-0.051542859524488,0.055257130414248],[0.041016381233931,-0.016241734847426,0.0020587956532836]]],[[[-0.0053989919833839,0.031313568353653,0.055113676935434],[-0.078609943389893,-0.043340280652046,-0.028619706630707],[0.0078106406144798,0.039659451693296,0.04252341017127]],[[0.11632451415062,0.14042429625988,-0.0026748694945127],[-0.12211517244577,0.025345588102937,0.0077058165334165],[-0.012569750659168,-0.095010042190552,0.068020813167095]],[[-0.06690277159214,0.011517848819494,-0.054638918489218],[-0.050557270646095,-0.00048461099504493,0.0084949256852269],[-0.073208197951317,-0.087312892079353,-0.060765955597162]],[[-0.09279940277338,0.0032847910188138,0.013701082207263],[-0.067591644823551,-0.072827190160751,0.032164074480534],[-0.1400133818388,0.12411860376596,-0.14367547631264]],[[0.089514695107937,-0.22255502641201,0.15184690058231],[0.086523108184338,0.095020696520805,-0.022547455504537],[-0.059540044516325,0.0027382518164814,-0.032832898199558]],[[-0.053837064653635,-0.018452066928148,-0.094556331634521],[0.037226889282465,0.008456289768219,-0.080999292433262],[0.017310859635472,0.035715337842703,0.02505961805582]],[[-0.051868796348572,-0.028814554214478,0.0095864199101925],[-0.047054413706064,-0.10118481516838,0.011518464423716],[0.0091874804347754,-0.073286473751068,0.042859833687544]],[[-0.21036596596241,-0.074181526899338,-0.094049610197544],[-0.001973778475076,0.099478371441364,-0.033642280846834],[0.036718968302011,0.11376205831766,0.033776998519897]],[[0.13964493572712,0.093788489699364,-0.017228865996003],[-0.051871918141842,-0.10468181222677,-0.025506118312478],[-0.067964732646942,-0.062083501368761,0.17251396179199]],[[-0.031848557293415,0.14312547445297,-0.051580432802439],[-0.056227948516607,0.016680859029293,-0.066718712449074],[0.0048649897798896,0.024045249447227,-0.1416259855032]],[[0.007714772131294,0.063294321298599,-0.033743157982826],[0.03857496753335,-0.057069394737482,0.0763785764575],[0.12370530515909,0.032508946955204,-0.068581394851208]],[[-0.072392858564854,-0.061469148844481,0.075758144259453],[-0.25560703873634,-0.082544460892677,0.13599886000156],[0.24795593321323,-0.18970333039761,-0.16994191706181]],[[-0.030974112451077,0.013234880752861,0.12085301429033],[-0.036342870444059,0.036647297441959,-0.080385901033878],[-0.066060684621334,-0.083895556628704,-0.025283239781857]],[[-0.026038374751806,0.0066774915903807,0.023580931127071],[0.048156708478928,-0.00039753422606736,0.082111403346062],[0.0076621589250863,-0.00078976171789691,0.044327780604362]],[[-0.021998150274158,0.059438686817884,0.037851467728615],[-0.026647681370378,0.012691570445895,-0.057274125516415],[0.057251084595919,0.11791073530912,-0.027156095951796]],[[-0.16552916169167,-0.032451737672091,-0.1841262280941],[-0.068255975842476,-0.018997803330421,0.10179707407951],[0.024436822161078,-0.064844205975533,0.14445871114731]],[[-0.022314071655273,-0.051376514136791,-0.042897071689367],[0.0052686333656311,0.051590599119663,-0.086102873086929],[-0.10025227069855,-0.0017434378387406,0.055030003190041]],[[0.0010398039594293,0.026820020750165,-0.022835223004222],[-0.019314616918564,0.0004181427648291,0.029033705592155],[-0.015295332297683,-0.060542713850737,-0.14170046150684]],[[-0.12882749736309,-0.069891944527626,-0.12523202598095],[-0.061849027872086,0.098810806870461,0.028821289539337],[-0.11482995003462,-0.074561044573784,0.043925777077675]],[[-0.044769562780857,0.055561177432537,-0.058451369404793],[0.016463220119476,0.064499668776989,0.020079258829355],[0.016535393893719,-0.067482672631741,0.047149091959]],[[0.07664555311203,-0.012383341789246,0.030292952433228],[0.13284520804882,0.072688594460487,0.081728108227253],[-0.051154486835003,0.07757069170475,0.050057590007782]],[[0.0084111504256725,6.6057415097021e-05,0.083353370428085],[0.1174920797348,0.034258734434843,-0.077682867646217],[-0.097139701247215,-0.037806760519743,-0.052532929927111]],[[-0.030499899759889,0.018203251063824,0.045048363506794],[-0.022121779620647,-0.02342196367681,-0.026207577437162],[0.036583695560694,0.043157335370779,-0.029740462079644]],[[0.045815572142601,0.026919107884169,-0.075325898826122],[-0.012673835270107,0.10668101906776,-0.14140708744526],[-0.1162121668458,-0.016814287751913,0.025205472484231]],[[0.039969604462385,0.01579998806119,0.021543951705098],[0.081917323172092,-0.00017770478734747,0.063645057380199],[0.14420500397682,0.058211617171764,-0.062115479260683]],[[-0.091576084494591,0.1457870900631,0.0027615737635642],[-0.18444812297821,0.083356104791164,0.0015720017254353],[0.075916424393654,-0.049961153417826,-0.079109624028206]],[[-0.013839866034687,0.0073634502477944,-0.099603347480297],[-0.015543322078884,0.029231671243906,0.037318427115679],[-0.005628087092191,-0.00035919819492847,0.028046270832419]],[[0.024673381820321,0.060214232653379,0.075792074203491],[-0.054963912814856,0.04631369560957,0.11751984804869],[-0.089588239789009,0.027391461655498,0.14258395135403]],[[-0.054131165146828,0.10597363859415,-0.084410794079304],[-0.087739057838917,0.022021379321814,0.070457555353642],[-0.0038916231133044,0.0066314144060016,-0.17025773227215]],[[0.017216011881828,0.007335355039686,-0.019382925704122],[0.0087604243308306,0.050666004419327,-0.092502906918526],[0.020090792328119,0.03637357801199,-0.036899462342262]],[[-0.15430119633675,-0.042529001832008,-0.050398278981447],[-0.052013102918863,-0.044326588511467,0.11192826926708],[0.14208695292473,-0.080386720597744,-0.045041050761938]],[[0.13675837218761,-0.089493975043297,0.079361647367477],[-0.031136497855186,0.028031604364514,-0.18690466880798],[-0.11750344932079,0.017063334584236,-0.015403943136334]],[[-0.079223982989788,0.11246187984943,-0.0034529981203377],[-0.10347450524569,-0.20196875929832,0.026280384510756],[0.20780728757381,-0.1725994348526,-0.078177683055401]],[[0.03052512742579,-0.02261764369905,-0.035698994994164],[-0.12463038414717,0.042553581297398,-0.12226957827806],[0.021696522831917,0.093643181025982,0.12513756752014]],[[0.19038532674313,-0.18620267510414,-0.085752129554749],[0.11976803839207,0.015658009797335,-0.14149831235409],[-0.11173441261053,0.13647530972958,0.065185576677322]],[[0.012646147981286,0.08505617082119,0.041245672851801],[-0.0061428351327777,-0.07346349209547,-0.0035226831678301],[-0.021678963676095,-0.037944462150335,0.11236849427223]],[[0.07329498976469,-0.024362470954657,0.016676796600223],[0.014903425239027,0.042196944355965,0.065724343061447],[0.066135317087173,-0.051439806818962,-0.079540625214577]],[[-0.0039856829680502,0.030121523886919,0.18104329705238],[-0.031365167349577,-0.083010204136372,-0.078346125781536],[0.046408630907536,0.097478672862053,-0.18202485144138]],[[-0.0633694678545,0.069262377917767,-0.047101404517889],[-0.051241636276245,0.020971575751901,0.073162011802197],[-0.028345538303256,-0.1397020816803,0.20786862075329]],[[-0.20424364507198,0.14932899177074,0.081089928746223],[-0.045931648463011,-0.10260748118162,-0.020859181880951],[0.15342144668102,0.012020719237626,-0.071123406291008]],[[-0.0031599786598235,-0.010074276477098,0.1476191431284],[0.035005580633879,0.037149678915739,-0.050078727304935],[-0.097849376499653,0.082198478281498,-0.054474145174026]],[[0.031940516084433,0.01543574873358,0.087879553437233],[0.031900361180305,-0.03168148547411,0.047735080122948],[0.043010950088501,-0.027933781966567,-0.086574696004391]],[[0.057816877961159,-0.07263521105051,0.012121807783842],[-0.018222946673632,0.063735902309418,-0.027667826041579],[0.040848903357983,0.035422090440989,0.0085264910012484]],[[0.02599111571908,-0.19062274694443,-0.22685189545155],[-0.06594405323267,0.10913438349962,0.042457543313503],[0.073391184210777,-0.25101029872894,0.14827825129032]],[[0.026258276775479,0.0054998123086989,0.093351267278194],[0.020681027323008,-0.09395731985569,0.014840006828308],[-0.068203143775463,0.14071041345596,-0.12363518774509]],[[0.16121962666512,-0.045622739940882,-0.053382862359285],[-0.057178512215614,0.11134564131498,0.16565084457397],[-0.20711588859558,-0.07271858304739,0.10172399133444]],[[0.12016759812832,-0.072341896593571,-0.062857195734978],[0.090589269995689,0.085728414356709,-0.010094977915287],[-0.016478208824992,-0.072429366409779,-0.039307501167059]],[[-0.088279470801353,-0.015074455179274,0.11128851026297],[0.0084904590621591,-0.054351944476366,-0.056199591606855],[0.032818343490362,0.021231312304735,0.013928172178566]],[[0.010828829370439,0.16367448866367,-0.13774107396603],[-0.090858213603497,-0.092567212879658,-0.082146845757961],[0.12552523612976,0.02432300336659,0.031200475990772]],[[-0.020583184435964,0.036783877760172,0.016736561432481],[-0.0070320405066013,-0.00093752786051482,0.13775244355202],[0.020336696878076,-0.077120780944824,0.028650254011154]],[[-0.0040145688690245,-0.030930044129491,0.0052643776871264],[0.0032995021902025,0.082642391324043,-0.029167739674449],[-0.025524858385324,0.020437428727746,0.008207636885345]],[[0.13508035242558,0.084201104938984,-0.01830986328423],[0.038244914263487,-0.079158179461956,-0.036183752119541],[0.036244187504053,-0.0058645699173212,0.047816459089518]],[[0.021400675177574,0.063640922307968,-0.10315711051226],[-0.13206598162651,-0.035552002489567,-0.025293067097664],[0.11221094429493,-0.050663977861404,0.097251415252686]],[[0.12574115395546,0.1244068145752,0.048503499478102],[-0.063528403639793,0.11381428688765,0.21245202422142],[0.069152005016804,-0.082260444760323,0.047699566930532]],[[-0.17829243838787,0.070329211652279,0.029944110661745],[-0.030181942507625,-0.06493653357029,0.15165421366692],[0.12310566753149,-0.14553852379322,-0.010790933854878]],[[0.082881130278111,-0.1705563813448,0.13087032735348],[0.051851004362106,-0.07189168035984,-0.015711423009634],[-0.10352186858654,0.084912948310375,-0.21202604472637]],[[-0.0053389677777886,-0.025750227272511,0.070112317800522],[-0.10388897359371,-0.051377363502979,-0.1113859936595],[-0.088773407042027,-0.064899675548077,-0.02755768597126]],[[-0.0069477083161473,-0.02471049502492,-0.021904118359089],[0.036304254084826,-0.081525832414627,-0.031330842524767],[-0.023421194404364,-0.077989399433136,0.046245481818914]],[[-0.043344397097826,-0.042855609208345,0.0087483674287796],[-0.0042883921414614,0.073260888457298,0.076314352452755],[-0.046864729374647,0.077431209385395,0.035151872783899]],[[0.042612992227077,0.034426685422659,0.030888762325048],[-0.021945672109723,0.0057405610568821,-0.02533245459199],[-0.019732944667339,0.015159952454269,0.055343080312014]],[[-0.040205147117376,-0.038314484059811,0.00042313899029978],[-0.043813310563564,-0.051181249320507,0.10081958770752],[0.21421308815479,-0.056546423584223,-0.023887636139989]],[[-0.04167115688324,0.088711082935333,0.083881989121437],[0.09116630256176,-0.086140371859074,-0.074040874838829],[0.11587953567505,-0.12129633128643,-0.026781085878611]],[[-0.032890249043703,0.1110508441925,-0.11517121642828],[0.085199885070324,-0.10436520725489,-0.076268054544926],[-0.28869900107384,0.042024496942759,0.29503291845322]],[[-0.076251141726971,0.03360828012228,-0.17081961035728],[-0.096578478813171,0.11499090492725,-0.099002234637737],[-0.16113163530827,0.13739483058453,0.036038529127836]]],[[[-0.010905201546848,-0.0090605160221457,-0.044969227164984],[0.083561673760414,0.017153071239591,0.016929943114519],[0.011312117800117,-0.021679727360606,0.0011153047671542]],[[0.026959337294102,0.0039862967096269,-0.0048077753745019],[-0.065949596464634,0.004035824444145,-0.01810802705586],[-0.016849828884006,0.030056497082114,-0.054670631885529]],[[-0.047102350741625,-0.00069298397284001,-0.056262761354446],[-0.046375319361687,0.025990143418312,-0.046526752412319],[0.047358714044094,0.011617937125266,0.076809488236904]],[[-0.013581985607743,0.022351073101163,0.01447575725615],[0.052646227180958,-0.00014837220078334,-0.013793582096696],[0.0091426046565175,-0.06327036768198,-0.046190280467272]],[[-0.0066443951800466,-0.044723555445671,-0.018531484529376],[0.030013214796782,0.012924778275192,-0.03711348772049],[0.011235690675676,-0.034475337713957,0.024488478899002]],[[0.047961939126253,0.041010301560163,-0.023860638961196],[-0.055206641554832,0.0021706174593419,0.04303777962923],[0.0068057174794376,-0.068945214152336,0.12490954995155]],[[-0.042372677475214,-0.040001172572374,0.0089701842516661],[-0.011418947018683,-0.0013569776201621,0.031103787943721],[-0.045971747487783,0.065894462168217,0.022895930334926]],[[-0.042261015623808,0.020980397239327,0.052665814757347],[-0.029566513374448,-0.00067750329617411,0.0063553457148373],[-0.050704941153526,-0.0124406889081,-0.014484596438706]],[[0.0055792131461203,0.01713403314352,0.064402610063553],[-0.0057041454128921,-0.03123426809907,0.0062590870074928],[-0.012067725881934,-0.020553627982736,0.00010596620995784]],[[-0.016562666743994,-0.042361468076706,0.03129743039608],[-0.033665221184492,-0.065754868090153,-0.027491314336658],[0.027428455650806,-0.091650314629078,-0.039437841624022]],[[-0.025899467989802,0.040701784193516,-0.060527313500643],[-0.018639227375388,0.05027861520648,-0.08507326990366],[0.1011489033699,-0.052126821130514,0.11207741498947]],[[-0.024842796847224,0.021907705813646,0.0093864500522614],[-0.00053386512445286,-0.040019486099482,0.01812631264329],[-0.0078126862645149,0.051830306649208,-0.0086024394258857]],[[-0.037501160055399,-0.0585772767663,-0.05722938850522],[0.028342768549919,0.050378449261189,-0.033385016024113],[-0.011581244878471,0.0044012139551342,-0.021061915904284]],[[0.035194836556911,-0.01449828967452,0.0080863162875175],[0.0011487691663206,0.0023356589954346,-0.0080227749422193],[0.14363969862461,-0.0026265669148415,-0.033206485211849]],[[-0.030419742688537,0.04919858276844,0.022339163348079],[0.043554566800594,-0.087576158344746,-0.038131672888994],[0.014042688533664,-0.019091989845037,0.082164399325848]],[[-0.096754334867001,-0.014538488350809,0.040803000330925],[0.0424072034657,0.022289143875241,0.031551592051983],[0.0083890948444605,-0.011973852291703,0.051255598664284]],[[-0.025758925825357,-0.0014416964258999,-0.023881297558546],[-0.0051961536519229,0.0924988463521,0.045630298554897],[0.0016571643063799,-0.019693844020367,0.037806786596775]],[[-0.006167087238282,0.032972514629364,-0.024029079824686],[0.0011684659402817,-0.018729114905,0.017232703045011],[-0.016375742852688,0.073418028652668,0.066037058830261]],[[0.012259544804692,-0.01755927875638,0.01921060308814],[0.045619498938322,-0.00098905654158443,0.019240191206336],[0.04002345725894,-0.010055346414447,0.058475784957409]],[[0.018095649778843,0.018687745556235,-0.012568994425237],[0.024598516523838,0.0020241509191692,-0.021435318514705],[-0.01599533483386,0.012866914272308,0.013848363421857]],[[0.016577230766416,0.095250993967056,0.011533222161233],[0.065291114151478,0.035226859152317,-0.1048035249114],[0.011514096520841,0.0058264159597456,0.035456992685795]],[[-0.0084363399073482,-0.028460143133998,-0.031727470457554],[0.010575090534985,0.07719699293375,0.046544633805752],[0.018476791679859,0.01678442209959,0.029004126787186]],[[0.022516051307321,-0.043464388698339,-0.027871392667294],[0.026164695620537,0.021484954282641,0.022824462503195],[-0.056369300931692,0.030396621674299,0.0043802699074149]],[[0.015985602512956,-0.036464098840952,-0.049894638359547],[0.0050676669925451,0.012618226930499,0.0090928710997105],[-0.058476310223341,-0.049633726477623,0.012160984799266]],[[0.042198818176985,0.00029263764736243,-0.0013243822613731],[-0.0068225488066673,-0.044481415301561,-0.020440544933081],[-0.065057449042797,-0.042839989066124,0.030791934579611]],[[-0.069996111094952,-0.011959436349571,0.045932527631521],[0.015833942219615,-0.010011870414019,0.027431111782789],[-0.020795647054911,-0.01939707249403,0.048462722450495]],[[0.029640894383192,0.018178692087531,0.027942972257733],[-0.057345300912857,0.031462952494621,-0.034563008695841],[-0.0043857949785888,0.031717445701361,0.084701754152775]],[[0.06787421554327,-0.033398270606995,0.022025227546692],[0.10039341449738,0.0096312761306763,-0.052487384527922],[-0.031708233058453,-0.07569295912981,-0.0202372726053]],[[-0.048986751586199,0.063221752643585,0.049534182995558],[-0.040911488234997,-0.074377328157425,0.053123958408833],[-0.023190570995212,0.013669652864337,0.00044855737360194]],[[-0.0056255925446749,0.065388821065426,-0.0021067829802632],[0.036119382828474,0.043974976986647,0.0056508015841246],[0.011497723869979,0.051059488207102,0.015812959522009]],[[-0.0088147772476077,-0.012863483279943,-0.040657393634319],[0.09156608581543,0.065441705286503,0.01152107398957],[-0.011860246770084,0.028104724362493,0.071441695094109]],[[0.018328199163079,0.029369866475463,0.021473037078977],[0.0099571859464049,0.01228965818882,0.029531801119447],[-0.040514905005693,0.055704891681671,0.025979042053223]],[[-0.067092530429363,0.02931291051209,0.044074155390263],[-0.0083822086453438,-0.0025095706805587,-0.032293781638145],[-0.09819333255291,-0.033269826322794,-0.01412337180227]],[[0.012713013216853,0.0082885278388858,0.0090213194489479],[0.01312696095556,-0.063421785831451,0.020517745986581],[-0.00029429365531541,-0.032202251255512,-0.01007445063442]],[[0.0087299030274153,-0.0041292356327176,0.062645718455315],[0.0043994043953717,-0.034889657050371,0.037225022912025],[0.0028579942882061,0.06578604131937,0.021617824211717]],[[0.0074015050195158,-0.024113837629557,0.019323019310832],[-0.0050124321132898,-0.037984151393175,-0.041010148823261],[0.076652526855469,0.068169467151165,0.018150933086872]],[[-0.075215168297291,-0.030227405950427,-0.01351563911885],[-0.031838800758123,-0.073341250419617,-0.04170373827219],[0.0085773719474673,-0.086799331009388,-0.025094082579017]],[[0.0093908058479428,0.044871315360069,0.058407638221979],[0.029035340994596,0.076023831963539,-0.070748955011368],[-0.04725781083107,-0.037077840417624,0.065974704921246]],[[-0.01939120516181,0.027789801359177,0.029856136068702],[-0.0076530217193067,-0.060750491917133,-0.040009737014771],[-0.0065293880179524,0.026544161140919,0.046494238078594]],[[-0.083285771310329,-0.077150970697403,0.0029486576095223],[0.028757475316525,-0.027290543541312,-0.037008058279753],[0.035262603312731,0.022658504545689,0.0097589716315269]],[[-0.00035819952609017,-0.02793600410223,-0.024147350341082],[0.011074502952397,-0.015974972397089,0.054385062307119],[-0.027696741744876,-0.028042381629348,0.04767233133316]],[[-0.026415515691042,-0.099147401750088,0.036436460912228],[-0.017464820295572,-0.015194712206721,0.009013470262289],[0.01864480599761,-0.031530510634184,-0.041223302483559]],[[-0.036332935094833,0.04495145380497,0.0071675777435303],[0.013497056439519,-0.00069718935992569,0.094459608197212],[0.017007809132338,-0.01219024322927,-0.015028884634376]],[[-0.01634031906724,0.030282774940133,-0.0050478824414313],[0.011134929023683,-0.012680609710515,0.017169192433357],[-0.012546646408737,-0.026554556563497,-0.035979211330414]],[[0.019422389566898,-0.0332893691957,-0.030087335035205],[0.051383834332228,-0.021945938467979,-0.026540838181973],[0.036494735628366,0.015462098643184,-0.046382829546928]],[[-0.011341863311827,0.03781358525157,0.079192996025085],[0.033490929752588,0.01176180690527,-0.040232956409454],[0.04363376647234,0.069365948438644,-0.021484155207872]],[[0.0003398098051548,-0.0014568468322977,0.0018131139222533],[-0.074542045593262,0.00094493763754144,0.01147336512804],[-0.02439283952117,0.017379071563482,0.03605242818594]],[[-0.032798606902361,-0.0035899188369513,-0.037465658038855],[0.0072790691629052,0.086681023240089,0.024857049807906],[-0.0051122382283211,0.0089707495644689,-0.019817182794213]],[[0.010937980376184,-0.015185262076557,-0.0017288498347625],[-0.061287872493267,0.020562466233969,-0.048334017395973],[0.027790641412139,-0.044127073138952,-0.023240553215146]],[[0.0043680500239134,0.0076670087873936,-0.017988251522183],[-0.061382401734591,-0.047037281095982,-0.0095137618482113],[0.029752526432276,-0.043275915086269,0.036428540945053]],[[-0.018086204305291,-0.045532517135143,-0.034760616719723],[-0.0015748394653201,-0.055626608431339,-0.04022678732872],[0.056023243814707,-0.026592956855893,0.021841138601303]],[[-0.044362433254719,-0.043139912188053,-0.034820672124624],[0.056565824896097,0.05788566172123,0.039185971021652],[-0.0061504691839218,0.020384334027767,-0.057926144450903]],[[0.04431476816535,-0.036708321422338,-0.0035393165890127],[-0.044514164328575,0.01834032125771,0.04474276676774],[-0.0082580652087927,0.035415019840002,-0.025966553017497]],[[0.037812404334545,0.027260964736342,0.087448142468929],[0.057345941662788,-0.046328291296959,0.066652074456215],[0.038308370858431,0.016442084684968,0.059596218168736]],[[-0.030462311580777,0.024618839845061,0.028385980054736],[0.012995213270187,-0.015284555964172,-0.028806613758206],[-0.0067434664815664,-0.038745976984501,-0.012305978685617]],[[0.0091682113707066,-0.062640495598316,-0.011204786598682],[-0.024615274742246,0.0066128256730735,0.046614807099104],[-0.021177230402827,-0.051907077431679,-0.063320867717266]],[[-0.030465884134173,-0.050826791673899,0.028132220730186],[-0.045037388801575,-0.0036008602473885,0.01239721570164],[-0.0017496335785836,0.034940131008625,0.064489297568798]],[[-0.0050869537517428,0.014775844290853,-0.033707749098539],[-0.03271472454071,-0.0075922477990389,-0.031221285462379],[0.021991726011038,0.038317490369081,-0.0096924975514412]],[[0.065234147012234,0.040209718048573,0.005304261110723],[-0.0075555071234703,0.0044450638815761,-0.01483360864222],[-0.043910477310419,-0.0078485095873475,-0.0021773660555482]],[[0.012462696060538,-0.027759473770857,0.036479972302914],[-0.018276926130056,0.00025829605874605,-0.036337196826935],[0.045715648680925,-0.016651917248964,-0.02119374461472]],[[0.0049026049673557,-0.0046793464571238,-0.08047803491354],[-0.0081641366705298,0.018828991800547,0.0028297896496952],[0.015131855383515,-0.012665425427258,0.041557837277651]],[[-0.010863779112697,-0.0090065561234951,-0.096031881868839],[-0.011875800788403,-0.040965784341097,0.053212616592646],[0.0064373393543065,-0.0071552293375134,-0.020100241526961]],[[0.017869452014565,0.0091347536072135,0.013904528692365],[-0.025050388649106,0.011067369021475,-0.0036193707492203],[-0.049999881535769,-0.029881374910474,-0.0085262237116694]],[[0.045694813132286,-0.0086541771888733,-0.002899621380493],[0.017109761014581,0.030944449827075,-0.0044960603117943],[-0.0068980609066784,0.011310933157802,-0.035437323153019]]],[[[-0.06285322457552,0.055713303387165,-0.015480083413422],[-0.036653447896242,-0.043414913117886,-0.072852171957493],[-0.052486639469862,0.034106265753508,-0.047250863164663]],[[0.027888501062989,-0.13643373548985,-0.1081003472209],[0.005785598885268,0.0046714306809008,-0.081837207078934],[0.050392638891935,-0.014248993247747,-0.10395909100771]],[[0.011851489543915,-0.024896312505007,0.00079732201993465],[0.044090636074543,-0.090582370758057,0.015407447703183],[0.0011008580913767,-0.030922036617994,-0.0013346410123631]],[[0.032351985573769,0.039353623986244,0.01183520630002],[0.021310685202479,-0.041951883584261,-0.010647880844772],[-0.021352192386985,0.019224241375923,0.000477927736938]],[[-0.066493511199951,-0.10340264439583,-0.024450736120343],[0.023046085610986,0.029593460261822,-0.03873884677887],[-0.00029870061553083,0.11281403154135,-0.051889050751925]],[[-0.047189395874739,-0.12591955065727,-0.10051766782999],[-0.0080900834873319,-0.09886372834444,-0.072725504636765],[0.054136600345373,0.14771981537342,0.10034112632275]],[[-0.010818633250892,0.048025604337454,-0.060923784971237],[0.016033848747611,0.030291181057692,-0.01561439409852],[0.029107404872775,0.0083685182034969,0.0045842905528843]],[[-0.021222997456789,0.019716151058674,-0.010986477136612],[-0.026968777179718,0.0071225501596928,-0.064512237906456],[0.039395097643137,-0.00062629760941491,0.0056006666272879]],[[-0.062267571687698,-0.058766018599272,-0.10119054466486],[0.048591651022434,0.0093683796003461,-0.031504016369581],[0.092434905469418,0.070009000599384,0.043122500181198]],[[0.045188397169113,-0.05770405381918,-0.078596323728561],[0.040672220289707,-0.024704974144697,-0.004724242258817],[0.086022645235062,-0.072077684104443,-0.038841430097818]],[[0.021113861352205,0.053085550665855,-0.015845576301217],[0.0054851719178259,-0.054739527404308,0.070533558726311],[0.038217585533857,0.0018969989614561,-0.027922883629799]],[[-0.16263566911221,0.0032949030864984,-0.045263387262821],[-0.081643849611282,-0.001840827986598,-0.078772783279419],[-0.03543208912015,0.0010125631233677,-0.059625286608934]],[[0.013780412264168,-0.006242549046874,0.022041065618396],[0.074722930788994,-0.0075445924885571,0.039981029927731],[-0.031235624104738,0.17086546123028,0.08111160248518]],[[0.10912088304758,0.067600294947624,0.097260139882565],[0.079287096858025,0.011868211440742,0.048831600695848],[-0.045469205826521,-0.018810136243701,0.11648336052895]],[[0.025648439303041,0.066276691854,0.04233717545867],[-0.018318032845855,-0.035075724124908,-0.055706083774567],[-0.14969845116138,-0.075022466480732,-0.034988261759281]],[[0.030177023261786,-0.055703766644001,-0.059826884418726],[0.015272164717317,0.050615224987268,-0.052083268761635],[0.10938730090857,-0.035858932882547,-0.021346986293793]],[[0.018581040203571,-0.084578596055508,0.0032422689255327],[-0.048047035932541,0.032161507755518,-0.057642910629511],[-0.064062461256981,0.0049482611939311,0.017614183947444]],[[0.046624302864075,0.041353795677423,-0.039734829217196],[-0.05835260078311,0.026257758960128,-0.0093829622492194],[-0.064569376409054,-0.014051300473511,-0.012199061922729]],[[0.017837455496192,-0.0848678201437,0.013249067589641],[-0.016491441056132,0.057250812649727,-0.095403268933296],[0.016039088368416,0.030525986105204,0.01354943588376]],[[-0.091340318322182,0.091029949486256,-0.015100694261491],[-0.025566663593054,0.0075084222480655,-0.017983758822083],[-0.02641168795526,0.030767409130931,-0.034220829606056]],[[-0.035451155155897,-0.01310807466507,-0.00099019089248031],[-0.05640970915556,0.028281651437283,0.01256859395653],[-0.010462405160069,0.023886827751994,0.033655472099781]],[[0.039210863411427,0.023566294461489,0.0097780022770166],[0.07987180352211,-0.017501398921013,0.012238446623087],[-0.014330223202705,-0.054508130997419,-0.038424450904131]],[[0.0085825119167566,0.029852241277695,0.025396449491382],[0.040833722800016,-0.045221135020256,-0.021275276318192],[-0.032731305807829,0.00028315000236034,-0.036832213401794]],[[0.031475845724344,-0.028317078948021,0.0056379153393209],[0.0066986284218729,-0.070003934204578,-0.049222432076931],[0.067580163478851,0.019284592941403,0.056574556976557]],[[0.02847783267498,0.013389200903475,-0.026188170537353],[0.016048340126872,-0.16157047450542,0.027060246095061],[0.058680605143309,-0.0110435904935,0.05954572185874]],[[-0.0026273843832314,-0.097274996340275,-0.078223019838333],[0.027163095772266,-0.03756432980299,-0.033535491675138],[0.0018852942157537,-0.06693971902132,-0.031776044517756]],[[-0.05908302590251,0.0094083538278937,0.021012587472796],[-0.010630428791046,-0.063541002571583,-0.055503707379103],[-0.16167797148228,-0.036647900938988,0.018923871219158]],[[0.065612278878689,0.10498163104057,0.035823248326778],[0.059146542102098,0.011406122706831,-0.020049722865224],[-0.072960235178471,-0.046025976538658,-0.033416371792555]],[[0.025738881900907,0.043975789099932,-0.012605731375515],[-0.076686501502991,0.0031021842733026,0.0076338038779795],[0.026896875351667,0.04068685695529,-0.0010201798286289]],[[-0.035593081265688,0.0028962017968297,-0.039629895240068],[-0.012268725782633,-0.032721061259508,0.023427857086062],[0.032979782670736,0.03176649287343,-0.026408663019538]],[[-0.022719137370586,-0.0030040973797441,0.016346333548427],[-0.033097911626101,-0.064687617123127,0.020086623728275],[-0.036888640373945,-0.032562896609306,-0.10467263311148]],[[-0.081705123186111,0.012590747326612,-0.002834175247699],[-0.041267655789852,-0.010025345720351,-0.021942270919681],[-0.11610697209835,-0.10829544812441,-0.029477532953024]],[[0.0066696209833026,0.045110829174519,0.056882087141275],[-0.028437413275242,0.040155369788408,0.044888604432344],[0.019186403602362,-0.013979826122522,0.02080767787993]],[[0.018201936036348,-0.0064487941563129,-0.11961098760366],[-0.060901299118996,0.024151151999831,-0.10209518671036],[0.015445492230356,-0.060058996081352,-0.071032971143723]],[[0.059456415474415,-0.10536631196737,-0.070122800767422],[0.04130844026804,0.064269229769707,-0.11635032296181],[0.077039085328579,0.13316291570663,0.063912697136402]],[[0.035576030611992,0.06316950917244,0.066190086305141],[-0.031453933566809,-0.12900198996067,0.046862751245499],[-0.099200844764709,-0.0089461803436279,-0.0056320652365685]],[[-0.015010462142527,0.051645942032337,0.028834067285061],[-0.027073783800006,0.03358431532979,-0.063468039035797],[-0.048116263002157,-0.060236755758524,0.012389664538205]],[[-0.0023165408056229,-0.1329203993082,-0.010334325954318],[0.089166030287743,0.029230417683721,0.032559514045715],[-0.01338043436408,-0.059789769351482,-0.0081720994785428]],[[0.068401336669922,0.0079408492892981,-0.010840470902622],[-0.0021304760593921,0.071094565093517,-0.043609701097012],[0.05708347633481,-0.048269458115101,-0.072428114712238]],[[0.061497531831264,-0.0025911733973771,-0.089133225381374],[0.0050266059115529,-0.063302755355835,-0.063465893268585],[-0.1107424646616,-0.0068624173291028,0.015272646211088]],[[-0.050278060138226,-0.0010383512126282,-0.056270077824593],[0.017588282003999,0.014853819273412,0.017394473776221],[0.027113646268845,0.026260497048497,0.025408862158656]],[[0.0053618024103343,-0.046402599662542,-0.089970774948597],[-0.022441275417805,0.058014627546072,0.064798951148987],[0.05946446210146,0.05757474899292,0.045868951827288]],[[0.031278058886528,-0.023053031414747,0.022589571774006],[-0.040563430637121,-0.035306379199028,-0.074310168623924],[-0.069459669291973,-0.000537344138138,0.040300127118826]],[[0.02772169560194,-0.036332860589027,-0.15206997096539],[0.02079026773572,0.14911267161369,-0.0071034305728972],[-0.026009550318122,0.060555994510651,-0.120979167521]],[[-0.09425950050354,-0.037167157977819,-0.010047622025013],[0.038094822317362,-0.1009740754962,0.0036845593713224],[-0.084213256835938,0.023930953815579,0.00066156242974102]],[[0.04026285558939,-0.0081169325858355,0.010496914386749],[-0.034760173410177,0.031715482473373,-0.035657789558172],[-0.077679164707661,-0.032588325440884,0.01202352065593]],[[-0.02422352693975,-0.045370258390903,0.034802831709385],[0.022907786071301,0.028009407222271,0.038867674767971],[-0.0065884366631508,0.053092282265425,0.073718264698982]],[[-0.027569308876991,0.014307458885014,0.052583575248718],[0.099839471280575,0.024630522355437,0.00072741083567962],[0.05803569406271,-0.041078072041273,-0.026286689564586]],[[0.058915171772242,-0.070324428379536,-0.061323240399361],[-0.016239499673247,-0.024917908012867,0.0076119843870401],[-0.091419734060764,0.074249133467674,-0.084086120128632]],[[-0.013178727589548,0.014710545539856,0.018704844638705],[-0.0238301102072,0.030871184542775,0.086424775421619],[-0.021367521956563,-0.072484314441681,-0.0085011431947351]],[[-0.072753988206387,-0.03698655962944,-0.0070795845240355],[0.084191389381886,-0.037360571324825,-0.0033805763814598],[0.082842044532299,-0.0551638007164,-0.049041736871004]],[[-0.06567195057869,-0.023765182122588,-0.026899755001068],[0.013749098405242,0.046332843601704,0.00066126405727118],[-0.020949875935912,0.025570785626769,-0.037090390920639]],[[-0.0054214731790125,-0.024568365886807,-0.058090314269066],[-0.0030577431898564,-0.010383476503193,-0.10202337801456],[-0.031374081969261,0.033749636262655,-0.069347769021988]],[[0.032129280269146,0.11322302371264,0.074546068906784],[0.058878425508738,0.00094173761317506,0.038517143577337],[0.062984704971313,0.039374679327011,0.019143076613545]],[[0.0654436647892,0.05692932382226,0.033983692526817],[0.0093488907441497,0.03941847383976,-0.044076681137085],[0.078605338931084,-0.018312798812985,-0.021450085565448]],[[0.058206796646118,-0.064900279045105,0.030043914914131],[0.043877754360437,-0.045000970363617,-0.029837276786566],[0.005700598936528,0.024026988074183,0.051318999379873]],[[-0.017987390980124,0.079689934849739,-0.0095604192465544],[-0.021730372682214,0.017929993569851,-0.0010367588838562],[0.040924225002527,-0.057962853461504,-0.015412314794958]],[[-0.015211483463645,-0.029146252200007,0.0086287949234247],[-0.011850917711854,-0.027711385861039,-0.013138798996806],[0.012578275986016,0.0083267576992512,0.0073225693777204]],[[0.029808243736625,-0.086988374590874,-0.015725426375866],[0.0087782507762313,-0.048750132322311,-0.033162113279104],[-0.0047898450866342,-0.013866716064513,0.014774000272155]],[[0.0033149376977235,-0.039929773658514,0.010659630410373],[-0.00017401557124685,-0.00022993359016255,0.012651653960347],[0.0076925358735025,0.0268076043576,0.00038703522295691]],[[0.0090626422315836,0.0073715783655643,-0.095419399440289],[-0.077591240406036,0.03581777215004,-0.066663861274719],[0.08595847338438,0.075645282864571,-0.067572757601738]],[[-0.027925886213779,-0.041013326495886,0.057545550167561],[0.02779446169734,-0.091660715639591,0.040689490735531],[0.060025904327631,-0.053197585046291,-0.12597869336605]],[[0.012536249123514,0.014019691385329,-0.077095545828342],[0.0064922752790153,-0.015884842723608,-0.084968850016594],[-0.034716889262199,0.010497745126486,-0.084105551242828]],[[0.02459485270083,0.023952672258019,0.059552848339081],[-0.081150628626347,0.11822660267353,0.019383538514376],[-0.027640646323562,0.075546137988567,0.0091181630268693]]],[[[-0.042102582752705,0.034300576895475,-0.0019216630607843],[-0.079440839588642,-0.0067172185517848,-0.041793622076511],[-0.014119719155133,-0.037497065961361,0.019125457853079]],[[0.031038852408528,0.025501543655992,0.0035726870410144],[0.0075101656839252,0.0046142973005772,-0.061569269746542],[-0.040728040039539,-0.021294634789228,-0.039957072585821]],[[0.075910739600658,-0.0047941929660738,-0.02700674906373],[0.077388897538185,0.014361313544214,0.0080482149496675],[0.06044052541256,-0.0052641462534666,0.033309537917376]],[[0.036950275301933,-0.020616255700588,-0.031728968024254],[0.083742521703243,0.050692193210125,-0.081756852567196],[-0.0077704307623208,0.0070246504619718,-0.05428371578455]],[[-0.08791933208704,-0.044598266482353,-0.058365199714899],[-0.0099600553512573,0.044538836926222,-0.017317712306976],[-0.028353415429592,-0.024806506931782,-0.0032030025031418]],[[0.14657366275787,-0.22467762231827,-0.046933930367231],[-0.067596316337585,-0.058818303048611,-0.18451578915119],[0.095804311335087,0.13822281360626,-0.030620407313108]],[[-0.0017523122951388,0.026151280850172,-0.077946797013283],[-0.01403240300715,0.035936936736107,0.068851634860039],[-0.042015552520752,0.060640975832939,0.0007475673337467]],[[-0.010671757161617,0.003442735876888,0.043175142258406],[0.11040442436934,0.028163669630885,-0.046591613441706],[-0.060412589460611,-0.043605446815491,-0.05670028924942]],[[-0.057182718068361,-0.012423132546246,0.037929370999336],[-0.1787064820528,-0.070306748151779,-0.073979377746582],[-0.019798241555691,0.0093615474179387,0.062659367918968]],[[-0.077430292963982,0.016050120815635,-0.032027568668127],[0.029070841148496,0.044121343642473,0.030424350872636],[-0.015599808655679,0.037824582308531,0.034670550376177]],[[0.089016601443291,-0.050450380891562,0.019760582596064],[-0.045800354331732,0.030476244166493,0.010205885395408],[-0.056887209415436,-0.12712337076664,-0.025087716057897]],[[0.038851231336594,-0.0025168771389872,-0.076032400131226],[0.028136653825641,-0.0064567252993584,0.00099186087027192],[0.087298884987831,0.0063971886411309,0.013845128007233]],[[0.068115718662739,-0.01903030462563,-0.057189099490643],[0.053748283535242,-0.077303305268288,0.024038137868047],[-0.0020036203786731,-0.086511701345444,-0.017087694257498]],[[0.014948283322155,0.039718918502331,0.065123200416565],[0.048659510910511,0.053301569074392,0.016577092930675],[0.074277020990849,-0.017969680950046,-0.0033577517606318]],[[0.011287455447018,0.11731799691916,-0.058502122759819],[0.04303440824151,-0.0005560337449424,-0.031855762004852],[-0.014754174277186,0.030112100765109,0.17531484365463]],[[-0.012396367266774,-0.030927874147892,-0.028276646509767],[-0.042958050966263,0.014334876090288,0.021616600453854],[-0.00096262781880796,-0.0089603196829557,-0.033691924065351]],[[0.051241520792246,0.092162743210793,0.057410545647144],[0.063713125884533,-0.0077575873583555,-0.029063710942864],[-0.015891890972853,-0.023690151050687,-0.091663993895054]],[[-0.0072403703816235,0.052123796194792,-0.058480821549892],[-0.040370587259531,0.057578686624765,0.033804554492235],[0.027955951169133,0.032830104231834,0.086843647062778]],[[-0.0015574096469209,0.016999626532197,0.02281366661191],[0.079655885696411,-0.04027359560132,-0.093681864440441],[-0.073867447674274,-0.057648744434118,0.0034423368051648]],[[-0.037019103765488,0.04633379727602,-0.086856223642826],[-0.036018487066031,0.0067893150262535,0.034205120056868],[-0.020364981144667,0.023322382941842,0.027826573699713]],[[0.0030045879539102,0.057911369949579,-0.012410840019584],[0.046221058815718,-0.012403750792146,-0.0069581866264343],[-0.069265320897102,0.0091245397925377,0.055315371602774]],[[-0.086808167397976,0.018744666129351,0.034653726965189],[0.04666331410408,-0.0011525130830705,-0.035572584718466],[-0.093795754015446,0.038006797432899,0.0056759351864457]],[[0.03851318359375,-0.049688510596752,0.017833793535829],[-0.033123388886452,-0.0055076805874705,0.025086183100939],[-0.079271852970123,0.063850663602352,0.040413726121187]],[[0.05595837906003,-0.00639951787889,-0.0032942474354059],[-0.049624308943748,-0.12791593372822,-0.045176900923252],[-0.0028092486318201,-0.05104311928153,-0.021000681445003]],[[0.05519525706768,-0.043422255665064,-0.010676278732717],[0.019385935738683,-0.015168267302215,-0.019532365724444],[0.018730757758021,0.022920727729797,0.060401130467653]],[[-0.044231045991182,-0.05959739536047,0.0058534699492157],[-0.032830305397511,0.0063974321819842,-0.024242669343948],[-0.093719810247421,-0.11968914419413,-0.055192537605762]],[[-0.038096342235804,-0.067145451903343,-0.063950665295124],[-0.012190027162433,-0.020098069682717,0.020577885210514],[0.040329452604055,0.019114829599857,-0.044204063713551]],[[0.027428023517132,0.022700970992446,-0.017687847837806],[-0.14820504188538,0.0065998788923025,0.035538777709007],[-0.073949635028839,-0.028308119624853,-0.058224439620972]],[[0.075437404215336,-0.036651827394962,0.06355070322752],[-0.019596377387643,-0.14758579432964,-0.063006550073624],[0.073906153440475,-0.05951352417469,-0.054224535822868]],[[-0.013460281305015,0.027602389454842,0.0072465613484383],[0.08753228187561,0.058266039937735,0.0012365609873086],[-0.060277286916971,0.036493115127087,-0.052454099059105]],[[0.017708253115416,0.0031512586865574,0.0050041158683598],[0.0049164309166372,-0.055088795721531,-0.071005068719387],[0.078593708574772,-0.040242802351713,0.040391910821199]],[[0.0087008839473128,-0.074981689453125,-0.048240181058645],[-0.10630026459694,0.044426247477531,0.027870092540979],[-0.13682220876217,0.044292490929365,0.045911483466625]],[[0.096236437559128,0.079258747398853,-0.056899171322584],[0.018050760030746,-0.018728770315647,0.046261344105005],[0.015766270458698,-0.050724629312754,-0.029444357380271]],[[0.019415469840169,-0.018803594633937,-0.062670521438122],[0.052478279918432,0.027146119624376,-0.033642135560513],[-0.073728822171688,-0.089961051940918,-0.021968651562929]],[[0.043836783617735,-0.016609508544207,0.022306352853775],[0.046194478869438,0.032110758125782,-0.035515882074833],[0.018376331776381,0.067880265414715,0.02302772924304]],[[-0.021561782807112,0.048939533531666,-0.074726164340973],[-0.046592216938734,-0.080132327973843,-0.098893895745277],[-0.030640365555882,-0.043172065168619,-0.042670350521803]],[[0.0027707263361663,0.029735092073679,-0.096018001437187],[0.094073213636875,0.01519407518208,-0.10732561349869],[-0.0088134659454226,-0.053641501814127,-0.052544418722391]],[[-0.049319535493851,-0.018300717696548,0.0269694942981],[-0.087473124265671,0.0017649268265814,-0.059410870075226],[-0.02453488856554,0.0087635535746813,0.064939931035042]],[[-0.0078124073334038,0.023851551115513,-0.070754781365395],[-0.046795193105936,-0.011556958779693,0.000887603207957],[-0.043599810451269,-0.015234508551657,-0.023534318432212]],[[0.051788501441479,-0.016447868198156,-0.058835592120886],[0.0088639380410314,-0.054734662175179,-0.038745135068893],[0.028312046080828,0.021523959934711,0.032531660050154]],[[-0.076592296361923,0.047359507530928,0.018088942393661],[0.040390364825726,0.01806609518826,0.030157124623656],[-0.10622830688953,0.075042769312859,0.0011663943296298]],[[-0.028290364891291,-0.032655294984579,0.020614249631763],[-0.059461448341608,0.033541966229677,0.05294406786561],[-0.031336102634668,-0.050340417772532,0.033984556794167]],[[0.02263955026865,0.013556668534875,-0.025004543364048],[-0.017115356400609,-0.10307595133781,-0.014690661802888],[-0.059011440724134,0.073149539530277,0.016033379361033]],[[-0.022214079275727,-0.012111988849938,-0.01829331740737],[0.023152608424425,0.03410666808486,0.030684692785144],[0.0006054961704649,0.026654021814466,-0.051520735025406]],[[-0.097563527524471,0.043157454580069,-0.046723503619432],[-0.1580318659544,0.015621081925929,-0.059699807316065],[-0.17797148227692,-0.050043810158968,0.10961191356182]],[[-0.062143597751856,0.03183851018548,-0.087717078626156],[-0.10028471797705,0.086271867156029,0.016859363764524],[0.0050523853860795,0.042672868818045,-0.0085656624287367]],[[-0.011202213354409,-0.062936283648014,-0.011615734547377],[0.030950048938394,-0.034395772963762,0.00087309948867187],[0.008048907853663,0.02207744307816,-0.0011413936736062]],[[-0.048718482255936,0.030366463586688,-0.017024943605065],[-0.13902859389782,-0.058005712926388,-0.055114578455687],[-0.002708837389946,-0.048116102814674,0.044137712568045]],[[-0.061445560306311,-0.015627516433597,-0.034212108701468],[-0.050399672240019,0.0061148903332651,0.019973551854491],[-0.056031487882137,0.03710775449872,-0.02289979532361]],[[-0.01176146697253,0.026831477880478,0.073644503951073],[-0.040297638624907,-0.015645369887352,0.014427927322686],[-0.16284492611885,-0.03794751316309,0.0027214083820581]],[[0.023703761398792,-0.031835112720728,0.0095538096502423],[-0.039522089064121,0.03183800727129,0.011955079622567],[0.043683551251888,-0.041805174201727,-0.016035996377468]],[[-0.015251525677741,0.00056286156177521,-0.081829391419888],[-0.08170809596777,0.033998142927885,0.0040115471929312],[0.0047415499575436,-0.048932459205389,-0.035874083638191]],[[-0.028254060074687,-0.077686011791229,0.0016275828238577],[0.038853298872709,0.038136921823025,-0.064363598823547],[-0.0019515946041793,0.0054181199520826,0.02486763894558]],[[0.055165890604258,-0.026934284716845,0.01513200905174],[0.051865868270397,0.057497680187225,0.14984549582005],[0.054191119968891,0.10929921269417,0.061859074980021]],[[0.023205280303955,0.03543646633625,-0.090422742068768],[-0.053322780877352,-0.0096722589805722,0.037071757018566],[-0.0039505595341325,-0.045538861304522,-0.01233687531203]],[[-0.009445802308619,-0.050087846815586,0.018040435388684],[-0.065782628953457,0.030015580356121,0.015957845374942],[0.030515855178237,0.020113948732615,-0.054571706801653]],[[-0.018594101071358,0.064981319010258,-0.0118572935462],[0.060609299689531,-0.023222366347909,-0.057100974023342],[-0.034217704087496,0.033335894346237,-0.068207636475563]],[[0.022712644189596,-0.021963754668832,-0.063287667930126],[0.047937538474798,-0.012694058008492,-0.0020142812281847],[0.029491722583771,0.056453984230757,-0.22192603349686]],[[-0.0096995458006859,0.0029255312401801,0.057790033519268],[-0.016911623999476,-0.03148090466857,-0.00011759861808969],[-0.023319711908698,-0.01573895290494,-0.028206216171384]],[[0.0077207833528519,0.069143526256084,0.00047738687135279],[0.034429222345352,-0.0095326788723469,-0.006737008690834],[0.047874137759209,-0.043604820966721,-0.037894006818533]],[[-0.052593927830458,-0.074031122028828,-0.045767296105623],[-0.050991855561733,-0.047428946942091,-0.020330268889666],[-0.014007948338985,0.022210601717234,-0.078230567276478]],[[-0.002981950994581,-0.041669253259897,-0.015305185690522],[0.039805974811316,0.012682903558016,0.07677037268877],[0.026781758293509,-0.013377645984292,0.087783791124821]],[[-0.01806160621345,-0.098080307245255,-0.050955291837454],[-0.033892709761858,-0.067307904362679,-0.039847202599049],[-0.036376666277647,-0.060714077204466,0.020419653505087]],[[0.051395691931248,0.0089625846594572,0.0091779446229339],[-0.028678193688393,-0.058305103331804,-0.053784977644682],[0.0012590759433806,0.0074974303133786,0.024381153285503]]],[[[-0.021979654207826,0.012051138095558,0.094695501029491],[-0.082263067364693,0.00087472848827019,-0.054707948118448],[-0.024537285789847,0.022323872894049,0.099564656615257]],[[-0.01302591804415,0.006290677934885,0.027985641732812],[0.076237872242928,-0.013322478160262,-0.057507060468197],[0.018129523843527,-0.097359739243984,-0.019906574860215]],[[0.044720429927111,0.0062416875734925,-0.014356997795403],[-0.012592617422342,-0.033799275755882,0.012898213230073],[0.0350207015872,-0.04290958493948,0.010163662023842]],[[-0.031509555876255,-0.02280899323523,-0.011348960921168],[0.045110270380974,-0.023744253441691,-0.12922994792461],[-0.053034637123346,0.052639778703451,0.0094251576811075]],[[-0.032509911805391,0.065017066895962,0.055214866995811],[-0.026027424260974,0.026667345315218,0.031106378883123],[-0.045390632003546,-0.001320235314779,-0.036837004125118]],[[0.037983492016792,0.0018016418907791,-0.15234419703484],[-0.046922527253628,0.039342168718576,-0.062009617686272],[0.063239879906178,0.093459866940975,-0.079006068408489]],[[0.020501554012299,0.028835503384471,-0.02843838557601],[-0.052711211144924,0.030188640579581,-0.013583820313215],[0.063367076218128,-0.0078769251704216,0.0093518206849694]],[[-0.01306654792279,0.013335768133402,0.043960213661194],[-0.0069059133529663,0.025322485715151,0.027713432908058],[-0.024736193940043,-0.059568505734205,0.10625302046537]],[[0.021359600126743,-0.060915898531675,-0.21634013950825],[0.042581848800182,-0.047146577388048,-0.020459925755858],[-0.0019813138060272,0.046492770314217,0.0349459387362]],[[-0.090510815382004,-0.08421303331852,0.068882428109646],[0.010954577475786,-0.043476589024067,-0.03283815830946],[0.007753093726933,0.039805185049772,-0.031366474926472]],[[0.01852591522038,-0.026725685223937,-0.09123045951128],[-0.090091653168201,-0.034420818090439,0.084776692092419],[0.033255618065596,0.012733528390527,0.032224051654339]],[[0.029480485245585,0.019969142973423,-0.10719396919012],[-0.032543607056141,0.011972039937973,0.0040512415580451],[-0.060537625104189,0.034267831593752,-0.039132673293352]],[[0.063523903489113,-0.018167896196246,0.071466207504272],[-0.08029393106699,0.065769337117672,0.035700015723705],[-0.046436239033937,0.078249707818031,-0.03061549924314]],[[0.011778499931097,0.038465265184641,0.22035039961338],[-0.024613058194518,0.10399278998375,0.079934194684029],[-0.0015471153892577,-0.0090326834470034,0.11529850959778]],[[0.0446373000741,-0.018938757479191,-0.002775123808533],[-0.034330256283283,-0.015679521486163,0.0087036788463593],[0.10583823919296,0.030315935611725,0.020353695377707]],[[0.014421031810343,0.026432070881128,-0.066592454910278],[-0.04283095523715,-0.062656469643116,-0.030546357855201],[-0.022792061790824,-0.078871965408325,-0.0066902027465403]],[[0.018355002626777,-0.017484158277512,-0.0053908764384687],[0.030930522829294,0.062058947980404,-0.014478038996458],[0.0012101965257898,-0.022552918642759,0.057612542062998]],[[-0.010064204223454,0.018754800781608,-0.017169466242194],[-0.057204991579056,0.079130277037621,-0.051129776984453],[0.082225978374481,0.061471864581108,0.060014020651579]],[[0.037698283791542,0.014304451644421,-0.04177488386631],[-0.027067622169852,-0.044580221176147,-0.046782810240984],[-0.031191920861602,-0.062884949147701,-0.043480016291142]],[[-0.053349982947111,0.023497184738517,0.035937637090683],[0.057946942746639,0.0056072566658258,0.035025782883167],[0.02555931918323,0.036151312291622,-0.017059355974197]],[[-0.048002384603024,0.030790686607361,-0.066926620900631],[0.026823297142982,0.021545069292188,0.013388119637966],[0.056979551911354,-0.036598432809114,0.13217835128307]],[[0.071748644113541,0.026815691962838,0.018526619300246],[-0.0593919493258,-0.059133928269148,0.053081002086401],[0.0033780497033149,-0.16537477076054,-0.0055976454168558]],[[0.0070934477262199,0.004082266241312,-0.0061793816275895],[-0.014915307983756,-0.030845649540424,-0.013586150482297],[0.030927080661058,-0.014800765551627,0.02643128298223]],[[0.042898330837488,0.023522317409515,0.044576425105333],[-0.059712827205658,-0.057426817715168,-0.047656636685133],[0.027853364124894,0.096919767558575,0.019779937341809]],[[-0.044534679502249,-0.040939126163721,-0.1174378246069],[0.0075870701111853,-0.028197411447763,-0.0016195529606193],[-0.047754522413015,0.062530800700188,0.065854296088219]],[[-0.017094835639,0.054515771567822,-0.015957215800881],[0.08155183494091,-0.020838839933276,-0.071468159556389],[0.10276368260384,-0.036004573106766,0.013821584172547]],[[-0.11650978773832,-0.16475534439087,-0.026725325733423],[-0.1155040115118,0.010227498598397,0.044377472251654],[0.038710877299309,-0.040814105421305,-0.022450773045421]],[[0.040395852178335,0.01586514338851,0.090222090482712],[-0.063490368425846,-0.033352054655552,-0.063582770526409],[-0.033754460513592,0.074822537600994,0.078843846917152]],[[0.011479222215712,-0.03075117059052,0.0044465237297118],[-0.0068817916326225,-0.082936234772205,0.035239219665527],[0.0010618343949318,-0.06500455737114,0.036407500505447]],[[0.047639075666666,0.035702977329493,0.028845304623246],[0.038223385810852,-0.068033114075661,-0.029790174216032],[0.08248770236969,0.076440691947937,0.066329956054688]],[[-0.019505707547069,0.060311157256365,0.0060451687313616],[-0.037198074162006,-0.080478802323341,0.018823651596904],[0.057346779853106,-0.0088494280353189,-0.0070236823521554]],[[-0.063692279160023,0.0091207064688206,0.022324129939079],[0.071900278329849,0.082525067031384,-0.070588946342468],[0.032285064458847,-0.11964306980371,-0.12511216104031]],[[0.0064882724545896,-0.075424984097481,0.12809185683727],[0.070536009967327,0.076124511659145,0.023268872871995],[0.15620923042297,0.20648403465748,0.063899599015713]],[[0.0565713532269,0.054050825536251,-0.036843601614237],[0.087970308959484,0.085478372871876,-0.16419167816639],[-0.034357968717813,0.076108768582344,0.033539324998856]],[[0.047477100044489,0.10809121280909,-0.034652501344681],[0.058734033256769,0.00053584994748235,-0.14081811904907],[-0.041312389075756,-0.076726399362087,0.079137235879898]],[[0.020349621772766,-0.059883590787649,-0.084551051259041],[0.091078072786331,-0.020099455490708,-0.14821982383728],[0.054816391319036,0.051678836345673,0.024155607447028]],[[-0.028385397046804,-0.064019039273262,-0.01381463650614],[0.12753136456013,-0.021465877071023,0.11808612197638],[0.076089844107628,-0.095402128994465,0.043556969612837]],[[-0.020441122353077,-0.07379849255085,-0.030452635139227],[0.14296351373196,-0.044828470796347,0.01656093262136],[-0.13667729496956,-0.13857765495777,0.05230051651597]],[[0.011885986663401,-0.067498922348022,-0.058979075402021],[0.01612938195467,-0.041975773870945,-0.063675366342068],[0.05127589777112,-0.035555467009544,-0.023257920518517]],[[-0.084699012339115,-0.1512331366539,-0.061409972608089],[-0.051382634788752,-0.014089192263782,-0.0066278260201216],[0.0066421134397388,-0.025213679298759,-0.13845340907574]],[[0.03273993730545,-0.048269163817167,-0.093363374471664],[0.010090431198478,0.048142194747925,-0.03553368896246],[-0.00054383382666856,0.0028466961812228,-0.14254581928253]],[[0.008635887876153,0.0062991958111525,-0.10512834787369],[-0.059546533972025,-0.014385816641152,-0.018956683576107],[0.064096994698048,-0.02747012116015,0.047409929335117]],[[-0.014494211412966,-0.017338575795293,-0.021797146648169],[0.079647831618786,0.03544107824564,-0.046669960021973],[-0.0050280056893826,-0.05580697208643,-0.12127803266048]],[[0.053338963538408,-0.13860365748405,-0.11769795417786],[-0.081039525568485,-0.015132188796997,-0.030849382281303],[-0.02018022723496,-0.024935504421592,-0.043531693518162]],[[0.0028171129524708,0.090660467743874,-0.081277541816235],[-0.12332775443792,-0.036275748163462,0.024929530918598],[-0.012479929253459,0.072458133101463,0.035522248595953]],[[-0.041518416255713,0.062170065939426,-0.0061774770729244],[-0.024430800229311,-0.042265180498362,-0.047996081411839],[0.030527310445905,-0.016865519806743,-0.053998943418264]],[[-0.010414400137961,-0.039011038839817,0.0062726601026952],[0.12429442256689,-0.056260824203491,0.0025047054514289],[0.033958330750465,-0.047728460282087,-0.035222560167313]],[[0.086635008454323,0.082232601940632,0.036135323345661],[0.099091328680515,-0.053096856921911,0.049043960869312],[-0.075878545641899,0.00098539853934199,0.04845417663455]],[[0.01464734505862,-0.0095565998926759,-0.14102658629417],[-0.037539437413216,-0.049648731946945,-0.10296723246574],[0.051228098571301,-0.036740366369486,0.027936132624745]],[[-0.028172213584185,-0.00092595483874902,0.032486472278833],[-0.063536956906319,-0.038111701607704,0.051253229379654],[-0.073629647493362,-0.016169143840671,0.013132117688656]],[[-0.0055071995593607,-0.046378348022699,0.006385815795511],[-0.14937455952168,-0.12677828967571,-0.080062992870808],[-0.06483905762434,0.030585261061788,-0.071695923805237]],[[-0.012197525240481,0.032703399658203,-0.025229057297111],[-0.022166538983583,-0.016314899548888,-0.012490143999457],[0.047507654875517,0.036316424608231,-0.0066770915873349]],[[-0.068976312875748,-0.11376915872097,-0.058578968048096],[-0.16279657185078,-0.027154218405485,-0.11248973011971],[-0.14720566570759,-0.044511537998915,-0.11615551263094]],[[0.04980893060565,0.077580742537975,0.092465654015541],[0.11161587387323,0.11583186686039,0.081382364034653],[0.10587009042501,0.038488797843456,0.073568724095821]],[[-0.13083249330521,0.011031915433705,0.061688188463449],[0.059854224324226,0.054438453167677,-0.13043566048145],[0.20420415699482,0.0054712938144803,0.02684274315834]],[[-0.032224502414465,0.047455590218306,0.011847594752908],[-0.17998696863651,-0.017739281058311,0.011525465175509],[-0.046296451240778,0.12640474736691,-0.016726311296225]],[[0.0834821164608,0.043395638465881,0.034439042210579],[0.019545866176486,0.049142725765705,0.032182689756155],[0.12122752517462,0.032142329961061,0.0090525969862938]],[[0.032571487128735,-0.035747982561588,-0.026382494717836],[0.013887613080442,-0.038218982517719,-0.026781929656863],[-0.00071131763979793,-0.031547822058201,-0.018402891233563]],[[0.10407833009958,-0.16961722075939,0.052232757210732],[-0.12223538011312,0.034965332597494,0.014988761395216],[0.0023582510184497,0.0017225372139364,-0.07473286241293]],[[-0.0023494199849665,-0.0048844655975699,0.017188290134072],[-0.0094926105812192,0.03078643232584,0.065902382135391],[0.015624642372131,0.035017840564251,0.016355896368623]],[[0.016802476719022,-0.090727172791958,-0.090852580964565],[0.0057051163166761,0.038248218595982,-0.015298953279853],[0.10345902293921,0.021575659513474,0.018137443810701]],[[0.071637496352196,-0.039953865110874,0.026550242677331],[-0.029282450675964,-0.025111239403486,0.018067363649607],[-0.069551520049572,0.073840379714966,0.048072878271341]],[[0.060228928923607,0.047619991004467,-0.016004167497158],[0.038625296205282,0.0077417460270226,0.017635511234403],[-0.0055153160355985,-0.039734616875648,-0.031491454690695]],[[0.073227994143963,0.02908593416214,0.028367131948471],[-0.066751606762409,0.062947914004326,0.048232544213533],[0.10839691758156,0.067356072366238,-0.063840642571449]]],[[[-0.1349024772644,-0.04441649839282,0.014109327457845],[-0.0022816802375019,0.032799012959003,0.070077508687973],[-0.0081684282049537,0.01377263199538,-0.036366231739521]],[[-0.035008575767279,-0.041962821036577,0.019160404801369],[-0.04904804751277,-0.015476290136576,-0.00019368596258573],[-0.037274315953255,-0.025642501190305,-0.008938143029809]],[[-0.0052671157754958,0.019406456500292,0.012138378806412],[0.035027109086514,-0.0078453458845615,0.014582314528525],[0.10736485570669,-0.062200624495745,-0.002728644059971]],[[0.019403826445341,-0.034637417644262,-0.038450993597507],[0.06056746840477,-0.017924698069692,0.060322746634483],[-0.0052836276590824,0.0059969564899802,0.079269900918007]],[[-0.06211544200778,0.019513366743922,0.061965599656105],[-0.017258390784264,-0.037040311843157,-0.04152288287878],[0.021359721198678,-0.0025928851682693,0.00058048142818734]],[[0.15133516490459,-0.085835531353951,-0.11712696403265],[0.0015167262172326,0.039649553596973,-0.16249851882458],[-0.052183501422405,-0.13804021477699,-0.10676576942205]],[[0.053522691130638,-0.012547184713185,-0.034095887094736],[0.0044153928756714,-0.00183922983706,-0.048412669450045],[-0.020184352993965,-0.095995150506496,-0.10391364246607]],[[-0.12693272531033,-0.010268087498844,0.0012621199712157],[-0.074614964425564,0.006544669624418,-0.068098992109299],[-0.057668846100569,0.051794715225697,-0.047044347971678]],[[-0.0067950338125229,-0.036237951368093,-0.0073352255858481],[-0.016276236623526,-0.11849644035101,0.042745795100927],[0.021865285933018,-0.043998133391142,-0.019701279699802]],[[-0.003945788834244,-0.0065223923884332,-0.059283457696438],[0.045960355550051,0.041235521435738,-0.018951516598463],[0.068958900868893,0.025056704878807,-0.11080119758844]],[[0.022633818909526,-0.020218394696712,-0.038097593933344],[-0.082252807915211,-0.022375538945198,-0.026190472766757],[0.048280391842127,-0.044347934424877,0.081542000174522]],[[0.020289702340961,0.003701655426994,-0.035358980298042],[0.026458321139216,0.0074450373649597,-0.026446506381035],[-0.012185356579721,0.0058819623664021,0.030357632786036]],[[0.0040451665408909,0.014660365879536,0.0094071784988046],[0.073771424591541,0.03736050054431,0.015077210962772],[0.075226806104183,-0.021788803860545,0.038008719682693]],[[-0.013156455010176,0.059836521744728,-0.022192312404513],[-0.031756423413754,-0.031202750280499,0.11243131011724],[-0.010493325069547,-0.045651525259018,-0.0077567440457642]],[[-0.062418475747108,-0.0069097713567317,-0.064365290105343],[-0.039467327296734,-0.089720971882343,0.11075069755316],[0.078212603926659,0.090385437011719,0.037899881601334]],[[-0.04022353515029,0.074457794427872,-0.076929777860641],[0.044359188526869,-0.011228452436626,0.022859299555421],[-0.0035482116509229,0.028502374887466,-0.053929042071104]],[[0.026037592440844,0.073382265865803,0.078073650598526],[0.025406483560801,-0.019547399133444,-0.083943665027618],[0.059597950428724,0.028216110542417,0.032440010458231]],[[0.045162610709667,-0.0047180033288896,0.0054300259798765],[0.015069860965014,0.014256474561989,-0.04604609310627],[-0.01027817837894,-0.071271501481533,-0.030924502760172]],[[0.067881166934967,0.05164909362793,0.03298744186759],[0.021903838962317,0.011692532338202,-0.050421703606844],[-0.048235062509775,-0.027152433991432,-0.04291982203722]],[[0.021862482652068,-0.032145336270332,-0.06598349660635],[-0.027542423456907,0.027416817843914,-0.020798938348889],[-0.053817018866539,-0.023033583536744,-0.0043811746872962]],[[-0.045269500464201,0.086515620350838,-0.051518689841032],[0.015024481341243,0.063088238239288,0.0004532941384241],[0.039882965385914,-0.0021770384628326,-0.034198619425297]],[[-0.0011667296057567,0.044744744896889,0.020970735698938],[-0.057512674480677,-0.030346065759659,0.039586130529642],[0.037214372307062,0.040874823927879,0.062409088015556]],[[0.030642870813608,0.058336332440376,0.018242018297315],[-0.014970092102885,-0.011292710900307,0.015144848264754],[-0.018673829734325,0.00019281028653495,-0.076327435672283]],[[0.042793460190296,0.024616196751595,0.0018714591860771],[-0.017432522028685,-0.086184740066528,0.001513106864877],[0.0083327209576964,0.015295629389584,0.04978185147047]],[[0.003086025826633,0.050001624971628,0.0027934352401644],[0.047719281166792,0.052702188491821,-0.0042023891583085],[0.011897994205356,0.0027475617825985,-0.046195074915886]],[[0.064810328185558,0.079414717853069,-0.11015712469816],[-0.032164853066206,-0.0096077462658286,0.016563978046179],[0.0097022131085396,-0.0041530369780958,0.046882916241884]],[[0.0026769780088216,-0.0091147609055042,8.5429492173716e-05],[-0.010921127162874,-0.044136170297861,-0.030796518549323],[-0.024283507838845,-0.054756607860327,-0.04797125980258]],[[-0.018171148374677,0.12098790705204,-0.016891559585929],[-0.015366525389254,-0.095701843500137,0.10491213947535],[-0.087706983089447,0.072277136147022,0.075863964855671]],[[0.0055131437256932,0.10053504258394,-0.0075686532072723],[-0.025914741680026,0.09967715293169,0.059127777814865],[0.041452154517174,-0.086018867790699,-0.0021769416052848]],[[-0.052476566284895,-0.012038665823638,-0.0068526496179402],[-0.022200604900718,-0.0099070006981492,-0.027941510081291],[-0.05751309171319,-0.043784096837044,-0.0049445256590843]],[[-0.0078079290688038,0.014671636745334,0.039914503693581],[0.0041314358823001,-0.0096812024712563,0.0091988733038306],[-0.051289245486259,-0.046042498201132,-0.038506515324116]],[[0.0087878089398146,0.00022094677842688,-0.086270786821842],[-0.029423501342535,-0.039877433329821,-0.00048127234913409],[0.02542569488287,0.039159618318081,-0.014568705111742]],[[0.11649380624294,-0.054961204528809,-0.010841649957001],[-0.0016925471136346,0.023019256070256,-0.021577071398497],[0.073954574763775,-0.0090514291077852,-0.049652379006147]],[[-0.039409674704075,0.00064814911456779,-0.021478852257133],[-0.058379843831062,-0.015751333907247,-0.0099574103951454],[-0.024740220978856,0.040260322391987,0.074279390275478]],[[0.032891046255827,-0.024844542145729,-0.043338116258383],[-0.055323917418718,-0.015699584037066,-0.029037328436971],[-0.099200174212456,0.0013374486006796,-0.061331398785114]],[[0.00092198437778279,0.036876667290926,0.0034760008566082],[0.016119465231895,-0.0068192072212696,-0.030552888289094],[-0.091354787349701,-0.05876200273633,-0.018055072054267]],[[0.081400021910667,0.029565081000328,-0.012641060166061],[-0.011716652661562,0.0046875039115548,0.034819878637791],[0.081176251173019,0.038501154631376,0.021982347592711]],[[0.053308825939894,-0.0035468998830765,0.013170098885894],[0.0050226501189172,0.013798508793116,0.015240794047713],[-0.039336819201708,0.015698708593845,0.012854835018516]],[[-0.063770592212677,-0.057483550161123,-0.019546274095774],[-0.018134271726012,0.039387822151184,-0.070555798709393],[-0.020929522812366,-0.046102087944746,0.022585991770029]],[[0.052367649972439,0.018432755023241,-0.025628192350268],[0.011396480724216,0.07130990177393,0.07339396327734],[-0.033264804631472,0.032055769115686,0.017519157379866]],[[0.10843992233276,0.0089416708797216,-0.025827331468463],[0.017526810988784,0.040092471987009,-0.0086905183270574],[-0.03475084900856,0.034971367567778,-0.048328779637814]],[[-0.02013373747468,0.028507431969047,0.0010934800375253],[-0.0038496248889714,-0.047020602971315,0.032229594886303],[0.062867864966393,-0.061771608889103,-0.024763887748122]],[[0.032245274633169,-0.016431326046586,0.0095636229962111],[-0.010190413333476,-0.039892964065075,-0.063170216977596],[-0.066897600889206,0.048383630812168,-0.009894696995616]],[[-0.043342303484678,0.022197283804417,-0.033780436962843],[0.023499108850956,-0.0067867795005441,-0.028291212394834],[0.032955314964056,0.015816908329725,-0.021312410011888]],[[0.019751872867346,-0.057663150131702,-0.050117991864681],[-0.028233610093594,0.05228903144598,-0.033391632139683],[-0.023483972996473,-0.046911023557186,0.0017060044920072]],[[0.01601948030293,0.066092409193516,-0.018220344558358],[0.049133066087961,-0.076098151504993,0.036956667900085],[0.025834018364549,-0.0010468664113432,0.020806642249227]],[[-0.081058204174042,0.0010559599613771,0.10201555490494],[-0.0079332338646054,0.068218536674976,0.0019958904013038],[-0.007303707767278,0.022052379325032,-0.034320067614317]],[[-0.0019534549210221,-0.02810219489038,-0.035521380603313],[-0.023350505158305,-0.047543488442898,-0.0051083825528622],[-0.0028297817334533,-0.0035496309865266,-0.019545830786228]],[[-0.026821825653315,-0.0092009771615267,-0.0033237969037145],[0.01396784838289,-0.00067297893110663,-0.033597409725189],[-0.013935616239905,-0.027801943942904,-0.051816679537296]],[[0.075425557792187,0.114895388484,0.088598042726517],[-0.012209141626954,0.043332599103451,0.010433157905936],[-0.026204861700535,-0.028312092646956,0.043334726244211]],[[0.01181513722986,0.010040176101029,0.011409249156713],[0.03158051148057,0.028319953009486,-0.042065855115652],[0.030013330280781,0.0034774062223732,-0.002066764049232]],[[-0.0089854393154383,0.0421650595963,-0.02915476821363],[0.0072335125878453,-0.043707881122828,-0.018005488440394],[0.019671086221933,0.054212991148233,-0.0052904286421835]],[[-0.087219730019569,-0.051571302115917,0.011537045240402],[-0.014631928876042,-0.082215778529644,-0.025800675153732],[-0.046069856733084,-0.020841684192419,-0.055133499205112]],[[0.068817928433418,-0.079934597015381,0.050468917936087],[-0.0041491910815239,0.093046091496944,0.033448416739702],[0.14708624780178,0.091971024870872,0.03781995922327]],[[0.056351114064455,0.065211303532124,0.023047592490911],[-0.022362804040313,0.010706485249102,0.020034313201904],[-0.018609590828419,-0.0022496848832816,0.075701631605625]],[[-0.071630582213402,-0.036472108215094,-0.026267819106579],[-0.039450127631426,-0.00083271827315912,-0.010412999428809],[-0.040936052799225,0.027951017022133,-0.04906065389514]],[[0.068636693060398,0.082007236778736,0.076125465333462],[0.02863846719265,0.047390528023243,0.012504816055298],[0.015320621430874,-0.0031591863371432,0.0098245888948441]],[[-0.019931364804506,0.018109988421202,0.0095254881307483],[0.011107505299151,-0.016761308535933,0.051483508199453],[0.00041657267138362,-0.007428465411067,0.038088984787464]],[[0.052283335477114,0.098747372627258,0.017521159723401],[-0.048794060945511,0.052453048527241,-0.11291724443436],[-0.10965219885111,-0.037669386714697,0.042146168649197]],[[-0.010072267614305,-0.0083991223946214,-0.031278941780329],[0.037111420184374,-0.021482227370143,0.023654708638787],[-0.02367090806365,0.075637646019459,0.062390964478254]],[[0.07789845764637,0.00045008552842773,-0.033775541931391],[0.0036295619793236,0.021364679560065,0.0020802568178624],[-0.071810014545918,0.011980410665274,0.018323445692658]],[[-0.067785881459713,-0.01565826497972,0.042709946632385],[-0.044241800904274,-0.0070927133783698,0.073193036019802],[0.023059142753482,0.038468159735203,0.049109302461147]],[[0.002314604818821,0.0023702862672508,0.030421905219555],[-0.010737411677837,0.019821071997285,-0.0064406949095428],[-0.10097798705101,-0.0080221937969327,-0.018058013170958]],[[0.0077715269289911,0.0010597023647279,-0.019867157563567],[-0.058889385312796,-0.024894094094634,-0.08715583384037],[-0.00433369865641,-0.044626209884882,-0.025909559801221]]],[[[0.10678086429834,-0.020852074027061,-0.034175228327513],[-0.014590612612665,-0.094311855733395,-0.028488764539361],[0.084905125200748,0.039266597479582,0.069897457957268]],[[-0.00566441193223,0.0013623852282763,0.1108482927084],[-0.08144486695528,-0.0037984778173268,-0.031480886042118],[0.03920266777277,0.011060761287808,0.040537774562836]],[[-0.064973868429661,-0.031365565955639,-0.039798222482204],[-0.080534152686596,0.0039086821489036,0.060121022164822],[-0.080011829733849,-0.05025565251708,0.033983495086432]],[[0.010434842668474,-0.0076499851420522,-0.013471649959683],[-0.035840041935444,0.0030182471964508,-0.014972966164351],[0.012860023416579,-0.039082959294319,-0.0022675213404]],[[0.020045964047313,-0.098581030964851,-0.060898885130882],[-0.024625658988953,0.03386964648962,-0.03766243904829],[0.050420243293047,0.081938356161118,0.10710083693266]],[[-0.1035765260458,0.056927930563688,-0.026589624583721],[0.035736884921789,-0.0412278175354,-0.053661949932575],[-0.12712712585926,0.010936614125967,-0.042697489261627]],[[-0.022781889885664,-0.022074852138758,-0.021432612091303],[-0.0022770683281124,0.050031494349241,-0.07117010653019],[-0.0020789511036128,0.037917405366898,0.043844565749168]],[[0.029779877513647,0.016714217141271,0.060724839568138],[0.020837748423219,0.0065179863013327,-0.066833570599556],[-0.065525680780411,-0.076719537377357,-0.067958474159241]],[[-0.022206382825971,0.039325535297394,0.038561873137951],[0.034478981047869,0.04123754426837,0.037975531071424],[0.015272054821253,-0.067375168204308,-0.00033099856227636]],[[-0.03236985579133,-0.067983895540237,0.056942753493786],[0.02620904147625,-0.081089422106743,0.011330724693835],[-0.090965174138546,0.029202312231064,0.049926534295082]],[[-0.13474857807159,-0.026883225888014,-0.021733475849032],[-0.019270438700914,-0.08595622330904,-0.053646720945835],[0.0081687867641449,-0.025896154344082,-0.040362328290939]],[[0.036226011812687,0.063540309667587,0.052709762006998],[-0.050473533570766,0.02924438752234,0.0094326045364141],[0.039282351732254,-0.016174091026187,0.081110015511513]],[[0.011835402809083,-0.05139946565032,0.017929885536432],[-0.069159865379333,0.012089442461729,0.045756723731756],[0.0017052952898666,0.046522442251444,-0.036877863109112]],[[0.071532659232616,-0.066551335155964,-0.04058776050806],[0.097634993493557,0.051190678030252,-0.012189615517855],[0.10042460262775,0.024386851117015,0.0076210647821426]],[[-0.016867017373443,0.10992547869682,0.034856680780649],[0.01408957503736,-0.038929589092731,-0.014536417089403],[0.029875980690122,0.084726728498936,0.072999842464924]],[[-0.00047008506953716,-0.061618808656931,-0.046743921935558],[0.054510399699211,-0.032903663814068,0.062946237623692],[0.063492774963379,0.048649333417416,0.04174629971385]],[[-0.011493712663651,0.028446955606341,0.0372713804245],[0.065028421580791,-0.026774659752846,0.086334846913815],[0.046742957085371,0.041478648781776,0.05161015316844]],[[-0.060218349099159,-0.021502356976271,0.0089232241734862],[-0.037144564092159,-0.049157604575157,0.068306155502796],[0.012132944539189,0.056309800595045,0.14870962500572]],[[0.040789369493723,-0.0067357337102294,-0.013225618749857],[-0.044142164289951,-0.063165992498398,0.025874925777316],[-0.042379204183817,-0.091775543987751,0.034582819789648]],[[-0.016239900141954,0.064300015568733,0.0014798775082454],[0.024099005386233,-0.019250044599175,0.055467694997787],[0.016339875757694,0.0015851369826123,0.043024722486734]],[[0.10309273004532,0.0068516079336405,-0.033677980303764],[0.042703855782747,0.046189453452826,0.085327237844467],[0.077143885195255,0.0096695190295577,0.010666421614587]],[[0.027545116841793,-0.012598887085915,-0.010620503686368],[-0.0075574042275548,-0.011029299348593,-0.046542663127184],[0.020853631198406,-0.056778065860271,-0.020111069083214]],[[-0.086018055677414,-0.074914917349815,-0.0046875164844096],[0.037378635257483,-0.0053721643052995,0.042035352438688],[-0.016245655715466,0.029508410021663,0.088160760700703]],[[0.051936831325293,0.022692250087857,0.034952390938997],[0.014807405881584,-0.076864682137966,-0.028503216803074],[0.018270540982485,0.035812329500914,-0.08222471177578]],[[0.049577254801989,0.076849795877934,0.072967238724232],[0.058112423866987,0.12093032896519,0.043895769864321],[-0.0047168079763651,0.062929540872574,0.061223328113556]],[[-0.0090720737352967,0.062553077936172,0.11476645618677],[9.0767920482904e-05,-0.025601407513022,0.052264429628849],[-0.0062329964712262,0.018118677660823,0.029888929799199]],[[0.016724433749914,0.055413879454136,0.045800913125277],[0.055787440389395,0.065578617155552,0.10301878303289],[-0.014436748810112,0.082322612404823,0.044801905751228]],[[-0.027794724330306,-0.16576707363129,-0.028635017573833],[-0.054288990795612,-0.022814827039838,0.010324071161449],[0.084417641162872,-0.0078280083835125,-0.015926877036691]],[[0.095702104270458,0.035204105079174,-0.0061249742284417],[-0.013812533579767,0.018455971032381,-0.065262950956821],[-0.065369792282581,-0.0027159817982465,-0.054248347878456]],[[0.10716114938259,0.012399341911077,0.038252480328083],[0.06612553447485,0.0640619546175,0.077937670052052],[-0.0077296192757785,0.040569849312305,0.056196268647909]],[[-0.056454170495272,-0.088614165782928,-0.058635234832764],[-0.032111287117004,-0.054268702864647,-0.081327982246876],[-0.036034867167473,0.010300450026989,-0.014403921552002]],[[0.0070634610019624,0.084032371640205,-0.036863923072815],[-0.015101226046681,0.025515221059322,-0.032960567623377],[0.020796036347747,0.010800932534039,-0.026209650561213]],[[-0.042409237474203,-0.040591530501842,-0.047886479645967],[-0.05974081531167,0.08233904838562,-0.080857761204243],[-0.17178864777088,-0.054284252226353,-0.036063831299543]],[[0.02770378626883,0.056329846382141,0.064805395901203],[-0.019936054944992,0.013320752419531,0.045831102877855],[-0.012703436426818,-0.053681191056967,-0.0056093945167959]],[[0.019729880616069,-0.015114915557206,0.019430739805102],[0.037851955741644,0.033844515681267,-0.020077679306269],[0.011459641158581,-0.05032915994525,0.027903800830245]],[[0.012977967038751,0.034798089414835,0.0059742154553533],[-0.041718006134033,-0.0075854742899537,0.021380139514804],[-0.054408948868513,-0.062466353178024,-0.059307154268026]],[[-0.012359173968434,-0.032423872500658,0.083858743309975],[-0.03089583106339,-0.017683167010546,-0.014347399584949],[-0.014286844059825,0.0046557933092117,0.006046914961189]],[[-0.078877002000809,0.0051649417728186,-0.047721549868584],[-0.0037659308873117,0.014091555029154,0.049858145415783],[0.00066236150451005,0.045704517513514,0.002048964612186]],[[-0.043216697871685,-0.035932514816523,-0.010839560069144],[0.0017388159176335,-0.032463319599628,-0.0086486209183931],[-0.026341022923589,-0.057937294244766,-0.024604983627796]],[[0.024441735818982,0.064274966716766,0.021313289180398],[0.0081612197682261,-0.017597939819098,0.012562979012728],[-0.0035358758177608,0.013060082681477,0.023321749642491]],[[0.08324134349823,0.068681947886944,-0.0071239154785872],[-0.034285649657249,0.002051156014204,-0.0020930690225214],[0.00018694285245147,0.007144876755774,0.039644669741392]],[[-0.041632123291492,0.025910828262568,0.041748844087124],[0.0031073270365596,-0.031234808266163,-0.055615484714508],[-0.0010203111451119,-0.034580163657665,-0.0037433395627886]],[[0.079100459814072,0.023880379274487,0.020773755386472],[0.079882323741913,0.043653171509504,0.0201993342489],[0.03728761523962,0.019469682127237,0.017960172146559]],[[0.027379810810089,-0.0018497967394069,0.013510297052562],[-0.064610876142979,0.042610693722963,-0.011503803543746],[-0.0093004936352372,0.0091577712446451,0.069197498261929]],[[-0.04652052745223,-0.061383012682199,0.0058529861271381],[0.04648745059967,-0.019150085747242,-0.010038590058684],[0.095500305294991,0.04231109470129,0.097724974155426]],[[0.0046566436067224,0.070903725922108,-0.051367003470659],[0.092474587261677,-0.0021057776175439,-0.078101627528667],[-0.023578211665154,-0.021760771051049,-0.071565501391888]],[[0.099972456693649,0.0075454469770193,-0.11347199976444],[0.055100448429585,-0.11667028069496,0.022132454439998],[-0.061281196773052,0.009541236795485,-0.055070694535971]],[[0.00044795728172176,-0.035208806395531,-0.063604764640331],[-0.013092845678329,0.0142708029598,0.0011544660665095],[0.05774537473917,-0.0063700382597744,-0.060493014752865]],[[0.026416728273034,0.088851220905781,0.10087054222822],[0.014235357753932,0.001475271419622,0.023890865966678],[-0.026701766997576,-0.023584667593241,0.091443464159966]],[[-0.01987087354064,0.029180800542235,-0.021901477128267],[-0.03999388217926,0.021749299019575,0.00022214982891455],[-0.021284271031618,-0.02675798162818,-0.021531105041504]],[[0.017998810857534,0.018930004909635,0.021732818335295],[-0.026921233162284,0.032984834164381,-0.06121089309454],[0.059171017259359,-0.0075436546467245,0.0079851374030113]],[[-0.038239318877459,0.074545577168465,-0.014989553019404],[0.0060837916098535,0.054901205003262,0.065131701529026],[0.049026798456907,-0.02088232152164,-0.010256319306791]],[[-0.016489110887051,-0.018408207222819,-0.01570950075984],[0.12232065200806,0.062045618891716,0.05043114349246],[-0.036397121846676,-0.032746966928244,-0.027495734393597]],[[0.070715472102165,-0.055872812867165,-0.014123039320111],[0.094277776777744,0.097254812717438,0.054990418255329],[0.084540262818336,0.022283241152763,-0.078936658799648]],[[-0.10685334354639,-0.046885762363672,-0.021765265613794],[-0.017020337283611,-0.013188165612519,0.041791826486588],[-0.023851266130805,-0.02252952940762,-0.033867515623569]],[[0.011872586794198,0.065029852092266,0.073455184698105],[0.032314833253622,-0.029365675523877,0.02534924261272],[0.030853245407343,-0.052332825958729,0.01449008192867]],[[-0.087444700300694,-0.083860345184803,-0.027856644243002],[-0.033625368028879,-0.00025274691870436,0.019085548818111],[-0.022370088845491,-0.026212129741907,0.017295246943831]],[[0.012453579343855,0.01722152903676,-0.020080553367734],[-0.048052370548248,-0.0082448534667492,-0.1159240975976],[-0.012280012480915,-0.07529229670763,-0.10754491388798]],[[0.026522690430284,0.009756182320416,-0.054079882800579],[-0.0058445977047086,0.033301379531622,0.060144584625959],[0.032181542366743,-0.007944512180984,0.014704191125929]],[[0.052914340049028,0.084072835743427,0.058756552636623],[0.031784173101187,-0.039510883390903,-0.039982624351978],[-0.0024312592577189,0.021722014993429,-0.066471368074417]],[[-0.053141321986914,-0.049761056900024,-0.042065769433975],[0.032830100506544,0.06904998421669,0.05476725474],[-0.022666854783893,-0.010352097451687,-0.056713428348303]],[[0.050947200506926,0.001172341639176,0.06296905875206],[-0.028610298410058,-0.065602958202362,-0.044916063547134],[-0.079222656786442,-0.083650827407837,-0.05041766166687]],[[0.038035169243813,0.010757930576801,0.078090526163578],[-0.084681399166584,-0.017042303457856,0.04519060999155],[0.052046932280064,0.046163070946932,0.049135815352201]],[[0.013613369315863,-0.035883810371161,-0.010428819805384],[0.060615234076977,-0.063048884272575,-0.040685590356588],[-0.020039115101099,-0.029842920601368,-0.02404123917222]]],[[[0.071647554636002,-0.051096357405186,0.029743509367108],[0.088310070335865,-0.0065052807331085,0.1128411963582],[-0.073065914213657,0.065910466015339,0.001829803106375]],[[-0.023003133013844,-0.027224760502577,0.02104626968503],[-0.033277004957199,0.03667526319623,-0.032884903252125],[-0.034907873719931,-0.030395155772567,0.0070331552997231]],[[-0.015339281409979,0.0016779848374426,-0.0054559106938541],[-0.041935853660107,0.059407010674477,0.0048419320955873],[0.019967421889305,-0.038732647895813,0.025159189477563]],[[0.026226602494717,0.0042260033078492,-0.044616054743528],[0.0093964226543903,0.030210115015507,0.052709203213453],[-0.0071815433911979,0.052914150059223,0.0010621512774378]],[[0.026237091049552,0.063809111714363,0.00931591168046],[0.0081087313592434,0.011881993152201,-0.007756779436022],[0.047270391136408,-0.0080925347283483,0.021620074287057]],[[-0.026830676943064,-0.081381507217884,-0.0011827525449917],[0.075335338711739,0.04009659960866,0.00062824448104948],[-0.094827242195606,0.075909584760666,-0.12383433431387]],[[-0.0032114270143211,0.0011274701682851,-0.01543266326189],[-0.015788115561008,-0.046915084123611,-0.016931127756834],[0.016590096056461,-0.055531293153763,-0.037412770092487]],[[0.068976327776909,-0.0092353830114007,0.014569173566997],[0.016805984079838,0.015649829059839,-0.039229068905115],[-0.049493234604597,0.0085825808346272,-0.089658193290234]],[[-0.011666759848595,0.0067596514709294,-0.079676389694214],[-0.033268053084612,-0.03810515999794,0.0012592119164765],[0.013872214592993,-0.033356178551912,-0.0041825529187918]],[[-0.029235176742077,-0.0051889643073082,-0.041982803493738],[0.013718892820179,-0.029880777001381,-0.018034549430013],[-0.0073500494472682,0.062962032854557,0.06157149747014]],[[0.0058412333019078,0.0031793254893273,-0.1017853692174],[0.054926633834839,-0.0025217407383025,0.11140839755535],[0.013554020784795,-0.048225603997707,-0.012819125317037]],[[0.046816173940897,0.01170195825398,0.030362877994776],[0.039718061685562,0.023640772327781,0.056325189769268],[0.0075790067203343,0.036221228539944,-0.0029570762999356]],[[0.032843664288521,-0.015698954463005,0.018002944067121],[0.053490854799747,0.018294421955943,0.01810541562736],[-0.021058881655335,0.030245017260313,0.063055150210857]],[[-0.064298048615456,0.011938684619963,0.038104847073555],[-0.039459489285946,0.020010706037283,0.086558543145657],[0.060953710228205,0.053041037172079,0.0036431788466871]],[[-0.038844775408506,-0.035970419645309,0.032106336206198],[0.063294038176537,0.056596167385578,-0.052187394350767],[0.033349562436342,0.059981662780046,0.084582984447479]],[[-0.028281243517995,-0.041656490415335,-0.069816678762436],[-0.08439052850008,0.008664496243,-0.027222454547882],[0.023551151156425,0.00044003548100591,-0.01642126776278]],[[0.039006546139717,0.11602832376957,0.043031416833401],[0.10107992589474,-0.01605574414134,0.026221845299006],[0.010503638535738,0.047004580497742,-0.011367676779628]],[[0.017421819269657,-0.027436850592494,-0.0084139443933964],[0.0054973009973764,0.044819045811892,-0.03972015529871],[0.024018114432693,-0.061680916696787,0.050791401416063]],[[0.027475871145725,0.018133608624339,-0.025931051000953],[-0.056246127933264,-0.0092507293447852,-0.077805563807487],[-0.020402437075973,-0.017253512516618,0.030412336811423]],[[0.039133328944445,0.00034880088060163,-0.038401681929827],[-0.033235002309084,0.028850317001343,0.021749196574092],[0.022411273792386,0.057357184588909,-0.01726465113461]],[[-0.025039901956916,-0.018859405070543,0.040050696581602],[-0.0097258603200316,-0.013909671455622,0.042729120701551],[-0.048037588596344,0.062030460685492,0.055466800928116]],[[-0.021706877276301,0.014207894913852,-0.02961159311235],[0.048369847238064,-0.075988776981831,-0.017767639830709],[-0.046874694526196,0.037600755691528,0.022447856143117]],[[0.069094866514206,-0.0014806899707764,0.0019854228012264],[-0.019556928426027,-0.0072767762467265,-0.032102920114994],[-0.032414391636848,0.03479640558362,0.011174683459103]],[[0.00097080756677315,-0.013903300277889,0.0071422490291297],[-0.0087154908105731,-0.055192105472088,-0.034958083182573],[0.0088855512440205,-0.0022225405555218,-0.0072348625399172]],[[0.0046709743328393,0.023591959849,0.039514269679785],[0.065834484994411,-0.037219129502773,0.0017893983749673],[0.017754247412086,0.039946816861629,0.013823051936924]],[[0.01622655056417,-0.032959222793579,0.0079709505662322],[-0.0075817024335265,-0.020215451717377,-0.02831269428134],[0.036521159112453,-0.035116419196129,0.015989005565643]],[[-0.031317722052336,-0.0098698167130351,-0.034314498305321],[-0.032038401812315,-0.018549930304289,0.052699476480484],[0.040777053683996,-0.013366946019232,-0.0031599847134203]],[[0.076797321438789,0.021962948143482,-0.010380447842181],[0.040488582104445,0.018838800489902,0.023421678692102],[-0.034968238323927,-0.0087803844362497,-0.066705092787743]],[[-0.015367838554084,0.042844183743,-0.012704606167972],[0.00096323009347543,-0.028939289972186,-0.00063191691879183],[-0.021921530365944,-0.028301490470767,-0.0086829997599125]],[[-0.018825750797987,0.011521501466632,-0.040785264223814],[0.057548820972443,-0.0021276390179992,-0.025361163541675],[-0.010466114617884,0.039740145206451,0.0085451118648052]],[[0.061857707798481,-0.038289397954941,-0.047797255218029],[-0.020083228126168,0.041492380201817,-0.017274063080549],[-0.04358671978116,-0.025794722139835,-0.03651936724782]],[[-0.072640396654606,0.029865769669414,0.0082213655114174],[-0.08292131870985,-0.006005872040987,-0.055798038840294],[-0.035376500338316,-0.048763107508421,-0.014730459079146]],[[-0.0078648356720805,0.065050318837166,0.025795051828027],[0.009678733535111,-0.043685335665941,-0.029495576396585],[-0.0031926184892654,0.0011075873626396,-0.025102220475674]],[[0.01180705614388,0.015300631523132,-0.010627492330968],[0.024562114849687,-0.04482726752758,-0.025401504710317],[-0.063367135822773,0.05025003105402,0.05471183359623]],[[0.054208986461163,0.027697812765837,0.049883224070072],[-8.8023021817207e-05,0.013572321273386,0.030509540811181],[-0.061046078801155,-0.012126837857068,0.015673875808716]],[[-0.033939935266972,0.065209768712521,0.0067319138906896],[0.0059768743813038,-0.030977929010987,-0.026300955563784],[-0.085875995457172,-0.020993661135435,-0.032772820442915]],[[0.022056939080358,0.03417032957077,-0.024411901831627],[-0.045651625841856,0.016258487477899,-0.04141791164875],[0.066066831350327,0.056406397372484,0.00094635767163709]],[[0.00085184775525704,-0.032861027866602,-0.024625774472952],[-0.0076071252115071,-0.007397476118058,0.036273617297411],[-0.079937249422073,-0.0044690878130496,-0.060027331113815]],[[0.0088492594659328,0.056646153330803,-0.094150997698307],[-0.07644148170948,-0.041156601160765,-0.076369568705559],[0.031364977359772,0.012926016934216,-0.048282887786627]],[[0.033202864229679,0.064215391874313,0.00079683045623824],[0.024076323956251,0.0230956915766,-0.058582466095686],[0.016544541344047,0.048758670687675,-0.0056032133288682]],[[0.053859405219555,-0.0017023145919666,0.060883317142725],[-0.027307335287333,0.070041842758656,-0.031739596277475],[-0.057236645370722,0.029288180172443,-0.017933167517185]],[[-0.096762850880623,-0.060996577143669,-0.019933387637138],[0.0028176486957818,0.020028317347169,0.029103754088283],[0.057852581143379,-0.0059699770063162,0.061065837740898]],[[-0.047787040472031,-0.021034302189946,0.014430472627282],[-0.03250690177083,0.016439331695437,0.0010891010751948],[-0.0009376707021147,-0.034354317933321,0.094441652297974]],[[0.0021579551976174,-0.0088207023218274,-0.078409932553768],[0.021421182900667,0.022377667948604,0.049612674862146],[-0.013907010667026,0.038746554404497,-0.027600163593888]],[[0.074082493782043,-0.028954569250345,-0.054871335625648],[-0.0026205363683403,-0.0091892648488283,0.004395411349833],[-0.011976204812527,-0.044307537376881,0.0076418234966695]],[[0.00413305638358,-0.010072345845401,-0.01212402805686],[-0.035824667662382,-0.042515128850937,0.065032735466957],[0.008479718118906,-0.032659463584423,-0.019561728462577]],[[0.0010349412914366,-0.036119364202023,0.073137231171131],[0.057414148002863,0.089224524796009,0.027348782867193],[0.0057127606123686,-0.040314123034477,-0.055549308657646]],[[0.033364742994308,0.03070954605937,0.057088520377874],[0.011986897327006,0.010748495347798,0.078657098114491],[-0.021882684901357,0.073750488460064,0.01346320938319]],[[0.0053303511813283,0.02726736664772,0.011056769639254],[0.033781711012125,0.022553721442819,0.019888743758202],[0.027064824476838,0.051324602216482,0.020611910149455]],[[0.023208692669868,0.058271441608667,-0.014990538358688],[0.0029701378662139,0.0395792350173,0.087095357477665],[-0.056764043867588,0.026978431269526,-0.068476520478725]],[[-0.046821143478155,0.0068710371851921,0.023663673549891],[0.01408561412245,-0.0025717713870108,-0.041561510413885],[0.017617302015424,-0.038841567933559,0.001334086060524]],[[-0.017123553901911,0.031454440206289,0.034617945551872],[0.0083495583385229,0.048809520900249,-0.015398196876049],[0.042832441627979,0.058006945997477,0.095027431845665]],[[0.0032380551565439,-0.0037537303287536,0.033463064581156],[0.0069768349640071,0.020569143816829,-0.011674867011607],[0.0015806616283953,-0.0033877424430102,0.021977650001645]],[[0.038444228470325,0.085032097995281,-0.011725416406989],[0.051005467772484,0.03445964679122,0.062413979321718],[0.046302583068609,-0.040439262986183,0.082943841814995]],[[0.039795700460672,0.023000169545412,0.031164277344942],[0.0053573502227664,-0.016928231343627,-0.047114990651608],[0.020731162279844,0.033961053937674,0.039506278932095]],[[-0.049789026379585,-0.034050185233355,0.029605012387037],[0.023195112124085,0.030911989510059,-0.036123655736446],[-0.045506034046412,0.0051745069213212,-0.017568983137608]],[[0.014633257873356,0.044406604021788,0.019425900653005],[0.031942181289196,0.013811568729579,0.0090382508933544],[0.019325464963913,0.054200146347284,0.033150728791952]],[[0.041140746325254,0.01108247321099,0.0081760035827756],[0.012811763212085,0.022895803675056,0.038393188267946],[-0.0041769053786993,0.028215704485774,-0.039651725441217]],[[0.052006874233484,0.060315579175949,0.014625994488597],[-0.061836462467909,0.014687677845359,-0.078785963356495],[-0.033091843128204,0.076058484613895,0.025324871763587]],[[-0.0052637509070337,-0.041571248322725,0.030056849122047],[0.070901863276958,0.0058913617394865,0.028289124369621],[0.0074646454304457,-0.017240971326828,0.027012336999178]],[[0.043220240622759,-0.0020035996567458,-0.016758285462856],[0.071383491158485,0.017048478126526,0.050436738878489],[-0.025830235332251,0.017981911078095,-0.034261804074049]],[[0.0091953109949827,-0.023316472768784,-0.032200120389462],[0.020302280783653,0.046180814504623,-0.030995232984424],[-0.030714198946953,0.0044290479272604,0.081999696791172]],[[0.0073970607481897,-0.024303272366524,0.019129354506731],[0.0099333859980106,0.020734079182148,-0.031495250761509],[0.021883936598897,0.0086154043674469,-0.042188752442598]],[[0.048520319163799,-0.0065500750206411,0.016029568389058],[-0.044629987329245,0.015629194676876,-0.03062435425818],[-0.012495242059231,-0.0067106396891177,-0.019603768363595]]],[[[-0.054210782051086,-0.048008441925049,-0.011176490224898],[-0.14301943778992,0.0011019987287,0.073087975382805],[-0.037720508873463,0.0062152910977602,0.0975401699543]],[[0.10960927605629,0.1078360453248,0.063182651996613],[-0.03186871483922,0.018042974174023,0.036833435297012],[-0.01199700217694,0.10993164777756,-0.096351400017738]],[[-0.0097556049004197,0.0021274229511619,-0.036039460450411],[-0.033237848430872,-0.044483121484518,-0.050327692180872],[-0.010843401774764,-0.081342101097107,-0.072561874985695]],[[0.014749957248569,-0.11225760728121,0.13395130634308],[-0.019658457487822,-0.068199478089809,-0.086569286882877],[-0.14358966052532,-0.054058112204075,-0.081611759960651]],[[0.11109974235296,-0.019613433629274,-0.0028540682978928],[0.030564857646823,0.062061101198196,0.020897403359413],[-0.005657556001097,0.0026420892681926,-0.0083111301064491]],[[0.060891207307577,-0.069730296730995,0.076400592923164],[0.068657122552395,-0.028232431039214,-0.097298443317413],[-0.10036379098892,0.035543590784073,-0.0881068110466]],[[-0.026040010154247,-0.034094728529453,-0.044579785317183],[0.018294373527169,-0.019680446013808,0.023870078846812],[-0.034479465335608,0.046946167945862,0.0053310934454203]],[[-0.010768941603601,-0.036647651344538,-0.011443378403783],[-0.058482382446527,-0.048288464546204,-0.029326763004065],[-0.016876628622413,0.13496638834476,0.0060350047424436]],[[0.033404946327209,0.050358101725578,0.055369440466166],[0.066737599670887,-0.023219084367156,-0.019313519820571],[0.068152584135532,-0.12089940160513,0.0051038106903434]],[[0.11226464062929,0.13541622459888,-0.12829205393791],[-0.12136593461037,0.095044523477554,-0.036368951201439],[0.023734174668789,-0.0065499553456903,0.026974761858582]],[[-0.1281876116991,0.048444122076035,-0.085619688034058],[-0.075249627232552,0.014254918321967,0.030974647030234],[-0.046717990189791,0.018997924402356,-0.046040415763855]],[[-0.19025023281574,0.10475518554449,-0.16612440347672],[-0.23341625928879,-0.15453879535198,0.028725497424603],[0.16801880300045,-0.11349193006754,0.1078926846385]],[[-0.035504546016455,0.031373146921396,-0.023859634995461],[0.028292866423726,-0.012449675239623,-0.067497156560421],[-0.032929837703705,0.061855833977461,-0.016888635233045]],[[0.038230080157518,-0.088770315051079,0.020983340218663],[-0.041321590542793,0.064501062035561,0.042828992009163],[-0.079831518232822,0.15479069948196,-0.10697387158871]],[[-0.061979502439499,-0.093216978013515,-0.013109440915287],[0.022909978404641,0.06586892157793,-0.0094221336767077],[0.057533588260412,0.069189965724945,-0.0015409665647894]],[[-0.089077733457088,-0.038373149931431,0.08162098377943],[0.0047665708698332,-0.14114183187485,-0.0047589824534953],[0.056112784892321,-0.07341867685318,-0.010140406899154]],[[-0.11281795799732,-0.1071637570858,-0.19298656284809],[-0.017508700489998,-0.081000261008739,-0.13240261375904],[0.0091307898983359,0.015329669229686,-0.10948140919209]],[[-0.0056905434466898,-0.055232688784599,0.017960531637073],[0.020159903913736,-0.083554692566395,0.014019114896655],[-0.068688161671162,0.074325799942017,-0.059656828641891]],[[-0.033272907137871,-0.17253151535988,0.021788539364934],[0.0084024472162127,-0.026279317215085,-0.021332567557693],[-0.069096907973289,-0.075469821691513,0.081184253096581]],[[0.11537633091211,-0.02472591213882,0.018050676211715],[0.073736816644669,0.088127620518208,-0.0024703454691917],[-0.049724951386452,-0.043166991323233,-0.062394618988037]],[[0.043383337557316,-0.0051920460537076,-0.044953800737858],[0.13061547279358,-0.020791053771973,0.012853444553912],[-0.027979273349047,-0.017481004819274,0.137296423316]],[[0.1614762544632,-0.072077862918377,0.057554680854082],[-0.080243624746799,0.0061244517564774,-0.045434426516294],[-0.074887290596962,0.024425856769085,-0.052883349359035]],[[-0.076974637806416,0.011348420754075,-0.029834510758519],[0.010204532183707,0.004320751875639,0.012171684764326],[0.045486573129892,0.010664721019566,0.015660731121898]],[[0.043054416775703,0.066316269338131,-0.0029409658163786],[-0.062472548335791,0.036666437983513,0.034482665359974],[0.0050330245867372,0.0026339767500758,-0.075838252902031]],[[-0.027219334617257,0.08066201210022,-0.018564362078905],[-0.039336554706097,0.17363204061985,0.0097426483407617],[-0.03251526504755,0.033243671059608,0.037402216345072]],[[0.043833158910275,-0.018791293725371,0.013799967244267],[0.022087892517447,0.13024616241455,0.0209477879107],[-0.00045172256068327,-0.0028786195907742,0.042923457920551]],[[0.054926358163357,0.13381294906139,-0.049530006945133],[-0.026167653501034,-0.016103211790323,0.0010637977393344],[-0.039603985846043,0.040617793798447,-0.12214330583811]],[[-0.11139159649611,0.078090004622936,-0.048843953758478],[-0.035503394901752,0.048648275434971,0.040779259055853],[0.096742384135723,0.012510053813457,0.075398489832878]],[[-0.016851611435413,-0.093104615807533,-0.016915017738938],[-0.020293075591326,0.019702732563019,-0.023527052253485],[-0.10212904959917,0.15317924320698,0.023740492761135]],[[0.0038409035187215,0.073113925755024,-0.066327303647995],[-0.038457233458757,0.055300340056419,0.0036523600574583],[-0.029518477618694,0.032178536057472,0.098614484071732]],[[-0.014651607722044,-0.15781047940254,-0.016277838498354],[-0.044072382152081,0.10650859028101,-0.06366878002882],[-0.049660347402096,0.17166920006275,-0.16002771258354]],[[0.12265687435865,-0.069863043725491,0.083575792610645],[0.017657833173871,0.0096944244578481,-0.035744648426771],[-0.24340544641018,0.11256841570139,-0.072191998362541]],[[-0.051121678203344,-0.080036871135235,-0.098717056214809],[0.014272546395659,-0.005952135194093,-0.070774786174297],[0.064481370151043,0.079482242465019,-0.00086926820222288]],[[-0.041538458317518,-0.068881720304489,0.045828875154257],[-0.042350962758064,-0.032834447920322,-0.074036508798599],[0.065951637923717,-0.065435849130154,-0.073360286653042]],[[0.040411550551653,-0.066336810588837,0.1451550424099],[0.059033080935478,-0.008553528226912,0.00043907188228332],[-0.011803510598838,-0.0001182061896543,-0.073144562542439]],[[-0.019700353965163,0.021724654361606,0.018460378050804],[0.012075383216143,-0.036390595138073,-0.05988908931613],[-0.10656733065844,0.037818782031536,-0.024328822270036]],[[0.099658496677876,-0.021824093535542,-0.0682732462883],[-0.0051446189172566,-0.040220659226179,-0.024653075262904],[-0.07908196747303,0.086276561021805,-0.036511469632387]],[[-0.038928911089897,0.22398091852665,-0.031171042472124],[-0.11097583174706,0.14321388304234,-0.11829943209887],[-0.069779142737389,-0.1023985594511,0.080562978982925]],[[-0.21513338387012,0.01602666079998,0.097954094409943],[-0.066738724708557,-0.042415525764227,0.1470832824707],[-0.021599432453513,0.051094617694616,-0.034120317548513]],[[-0.06681639701128,0.012646980583668,-0.014611597172916],[0.018265679478645,0.039996184408665,-0.01477194391191],[0.061384581029415,-0.018386382609606,0.02515166439116]],[[-0.0036885156296194,-0.0054022031836212,0.11183320730925],[-0.019518217071891,-0.029072025790811,0.062762320041656],[0.024215810000896,-0.12709186971188,0.0075336140580475]],[[-0.070873059332371,-0.12891627848148,0.18372966349125],[-0.032558917999268,0.077287778258324,-0.069217637181282],[-0.086042702198029,0.15781328082085,-0.074356943368912]],[[-0.099519178271294,0.063655480742455,0.048036575317383],[0.069547064602375,-0.054794136434793,0.06010776758194],[0.12227462977171,0.021324306726456,0.031046483665705]],[[0.097485981881618,-0.064290516078472,0.098885580897331],[-0.0018107205396518,-0.035449113696814,-0.10831431299448],[-0.10586653649807,0.1947705000639,-0.090549252927303]],[[-0.0073760715313256,0.066370569169521,-0.042670480906963],[0.046466950327158,0.095087669789791,-0.0072816419415176],[-0.047606285661459,-0.11576745659113,0.029700394719839]],[[0.13078294694424,-0.14703695476055,0.10315765440464],[0.1512592881918,-0.03882347419858,0.034965824335814],[0.048144340515137,0.11472074687481,-0.18981982767582]],[[0.079613603651524,-0.0062416642904282,0.010889030061662],[0.077978827059269,-0.11808688938618,-0.03795849531889],[0.076093338429928,-0.11643204838037,-0.070371501147747]],[[-0.065217897295952,-0.044056337326765,-0.019331881776452],[-0.048353653401136,0.075155705213547,-0.014940351247787],[0.02447003684938,-0.036731090396643,-0.041025463491678]],[[-0.020591484382749,-0.061514776200056,0.093136675655842],[0.0064142174087465,-0.01307097543031,-0.12200000137091],[0.021611578762531,0.030796965584159,-0.052669458091259]],[[0.044026959687471,-0.0036384956911206,0.20084607601166],[-0.039090000092983,-0.070185102522373,0.044280026108027],[-0.058830510824919,-0.027857465669513,-0.13283330202103]],[[0.012475250288844,0.013047087937593,0.00068430980900303],[-0.066411502659321,-0.1124452650547,0.02075563184917],[0.046958889812231,-0.018973004072905,-0.0042303260415792]],[[0.010148327797651,-0.0027728474233299,0.021894568577409],[0.041124146431684,0.039071187376976,-0.049989975988865],[-0.071633562445641,0.050746414810419,-0.063508301973343]],[[-0.06034154817462,-0.01698693819344,0.043671824038029],[-0.10263859480619,-0.024470772594213,0.034434724599123],[-0.022961113601923,-0.019548131152987,-0.031452085822821]],[[0.070480056107044,0.039598572999239,0.10856268554926],[-0.012083834968507,0.058544803410769,0.0054983580484986],[0.0043351696804166,0.10413421690464,-0.12947870790958]],[[-0.025141531601548,-0.0026205701287836,-0.04402668774128],[-0.0406773686409,0.041982039809227,-0.07842480391264],[-0.13468842208385,0.16985061764717,0.06427439302206]],[[-0.0085299666970968,-0.039077267050743,0.016779579222202],[0.057617414742708,0.03850207477808,0.033778943121433],[-0.016969032585621,-0.0094868196174502,-0.063332960009575]],[[0.047622751444578,-0.050001326948404,-0.096118576824665],[-0.16396781802177,0.01179514080286,-0.037037909030914],[-0.027454031631351,-0.092548012733459,-0.02807136438787]],[[-0.024278933182359,0.00099802855402231,-0.048608478158712],[-0.067015804350376,-0.034611701965332,-0.12662357091904],[0.00067583471536636,-0.13518659770489,-4.9081587349065e-05]],[[0.0089761735871434,-0.037952359765768,-0.1295965462923],[-0.16801916062832,-0.13570894300938,-0.085047408938408],[-0.062754906713963,0.064776323735714,0.07242875546217]],[[0.061326876282692,0.031830798834562,0.011309570632875],[-0.026490958407521,0.011942465789616,-0.025217605754733],[0.016777373850346,-0.038637861609459,-0.030482893809676]],[[0.039430845528841,-0.080726519227028,0.03927356377244],[0.096896685659885,-0.069407314062119,0.040209013968706],[-0.060423191636801,0.036209590733051,0.05841638147831]],[[-0.077740177512169,0.17694054543972,0.022434180602431],[-0.065060809254646,0.015839846804738,0.0021362255793065],[0.057040013372898,-0.048866759985685,-0.049728836864233]],[[-0.076766222715378,0.13066923618317,-0.10752874612808],[-0.0022763528395444,-0.17515096068382,0.11413323879242],[0.14915381371975,-0.18614989519119,0.093045853078365]],[[0.0091623878106475,-0.11101473122835,0.019563300535083],[0.022611299529672,-0.045956816524267,0.060263205319643],[-0.12032920867205,-0.0039188642986119,0.021103750914335]]],[[[0.041878834366798,-0.023095849901438,0.01359532866627],[-0.0035882585216314,0.076917544007301,-0.11726652085781],[0.089956387877464,-0.054326727986336,0.012557553127408]],[[-0.0038457775954157,-0.0033195975702256,0.024983733892441],[0.0090544205158949,0.025219328701496,-0.048651218414307],[-0.016768576577306,-0.016718450933695,0.0070216492749751]],[[0.048252932727337,0.038456540554762,0.10430442541838],[-0.090924210846424,-0.035103026777506,0.11225540190935],[-0.0077613834291697,-0.072108417749405,-0.058449976146221]],[[0.040172874927521,0.018314121291041,0.010281634517014],[-0.069118157029152,-0.038812339305878,-0.032235637307167],[-0.02287246286869,-0.012228364124894,-0.035970214754343]],[[0.001401666784659,0.0048402170650661,-0.048449721187353],[0.068470932543278,0.037260204553604,-0.022879038006067],[-0.053079687058926,-0.025951504707336,0.019775431603193]],[[0.023383691906929,-0.061596099287271,0.23625725507736],[-0.1188964471221,-0.13891397416592,0.017203912138939],[-0.10277514904737,-0.013428922742605,0.045120049268007]],[[-0.026504760608077,-0.0070300004445016,-0.028754962608218],[0.0056415037252009,-0.0090752094984055,-0.052395522594452],[-0.0010611374164,-0.059993170201778,-0.015787709504366]],[[-0.027536215260625,0.12438219040632,0.017471784725785],[-0.22624935209751,-0.012101721949875,-0.0031892796978354],[0.0560352653265,0.011117541231215,0.021579561755061]],[[0.026288576424122,0.022246023640037,-0.0086976159363985],[0.023930979892612,0.0010565255070105,0.063278436660767],[-0.015660254284739,0.051484629511833,0.013935302384198]],[[0.038746628910303,-0.023801071569324,0.02478346042335],[0.0077597675845027,-0.031946033239365,-0.04585961997509],[-0.0047653070650995,-0.034461107105017,0.050404448062181]],[[-0.070856273174286,-0.062490962445736,-0.078716725111008],[-0.07028279453516,0.012803959660232,0.081293784081936],[0.059131618589163,0.02177644893527,-0.011577595956624]],[[-0.058914184570312,-0.045772936195135,0.032700676470995],[0.0048230914399028,0.011617975309491,-0.041986215859652],[-0.026945043355227,-0.088908046483994,-0.011797957122326]],[[0.0066930525936186,-0.050214562565088,-0.011897369287908],[-0.0086540943011642,-0.0070727546699345,-0.045269813388586],[-0.049499977380037,-0.049467410892248,0.012642262503505]],[[-0.049042101949453,0.034020006656647,0.031173598021269],[0.054001931101084,0.018764214590192,0.028122315183282],[0.052640672773123,0.031407587230206,0.058474022895098]],[[0.055092006921768,-0.018254622817039,-0.090497575700283],[0.029631299898028,0.076959580183029,0.01480804104358],[0.01582658290863,-0.032987467944622,0.0027849862817675]],[[-0.05723936855793,-0.099907733500004,0.00083113560685888],[0.0073668383993208,0.076039008796215,-0.053640022873878],[0.056931883096695,0.068230204284191,0.0096813617274165]],[[0.019667977467179,0.022859623655677,0.067188367247581],[0.015201830305159,-0.035028282552958,-0.01305088493973],[-0.044639226049185,0.040235683321953,0.0078400280326605]],[[0.0027585495263338,0.046001803129911,-0.0077328630723059],[-0.053604919463396,-0.051825400441885,-0.029304180294275],[-0.024259360507131,-0.017081625759602,0.082228519022465]],[[0.013789068907499,0.0010452183196321,-0.017605405300856],[0.017153527587652,0.038836468011141,-0.038718182593584],[-0.017986461520195,-0.059292521327734,-0.01795007288456]],[[0.0027175559662282,0.015828149393201,0.01572347432375],[-0.033051181584597,0.0051048435270786,0.0045399265363812],[0.036897696554661,-0.07892045378685,0.024716487154365]],[[-0.0062204538844526,-0.070791386067867,0.0061606233939528],[0.070168778300285,-0.0089998338371515,-0.0038040792569518],[0.021775348111987,0.051802758127451,0.013956560753286]],[[0.024201029911637,-0.040985446423292,0.077977783977985],[-0.028414037078619,-0.067191064357758,0.00080988853005692],[0.042396765202284,-0.055339749902487,0.028382230550051]],[[0.021923428401351,-0.021641159430146,-0.025693049654365],[-0.042968101799488,0.051977436989546,0.048805318772793],[0.013033809140325,0.0081911822780967,-0.052032582461834]],[[-0.033983215689659,0.013949085958302,-0.025946760550141],[0.0013692115899175,0.019135907292366,0.0044481609947979],[-0.086962297558784,-0.012219940312207,0.0046027493663132]],[[0.0031054429709911,0.035844523459673,0.0020157978869975],[0.022650169208646,-0.048847232013941,-0.029748803004622],[0.022871831431985,-0.098437018692493,-0.034629482775927]],[[-0.048198357224464,-0.13013279438019,-0.064623586833477],[0.021821454167366,0.012229109182954,-0.0064610107801855],[-0.056795906275511,-0.021075984463096,-0.061790365725756]],[[0.049422405660152,-0.063921332359314,0.099788933992386],[-0.021332522854209,0.059244852513075,-0.0095661729574203],[-0.070410117506981,-0.078245289623737,-0.10289430618286]],[[-0.038724191486835,-0.01130058709532,-0.041639618575573],[0.046186257153749,-0.032826974987984,-0.051267132163048],[0.080896526575089,-0.0060598128475249,-0.0044688601046801]],[[-0.15440368652344,0.1037262827158,-0.050336953252554],[0.12040498107672,-0.048069529235363,0.018808573484421],[-0.023658756166697,-0.025796610862017,-0.010516871698201]],[[0.017796063795686,-0.0040946109220386,-0.088890671730042],[-0.014871508814394,-0.031486101448536,-0.043538257479668],[0.01518539711833,-0.0024364138953388,-0.031328734010458]],[[0.036922186613083,-0.045839332044125,0.07769438624382],[0.01520627643913,-0.025038205087185,-0.013253595679998],[-0.018525134772062,-0.085014916956425,-0.083922021090984]],[[-0.050780024379492,-0.052669197320938,0.041833978146315],[0.039129961282015,0.0020799541380256,-0.042720168828964],[-0.033537656068802,0.025434846058488,0.056635528802872]],[[0.037850167602301,0.081468552350998,-0.019807931035757],[-0.029481021687388,-0.062799997627735,-0.075692355632782],[0.0018336890498176,0.07362225651741,-0.037597451359034]],[[0.017696755006909,0.0026087537407875,-0.012522319331765],[-0.0021776494104415,-0.050479266792536,-0.034697901457548],[-0.073520913720131,0.0097492076456547,0.073166981339455]],[[-0.0095635009929538,-0.0075196195393801,-0.012973229400814],[-0.0041247578337789,-0.053578663617373,0.0040384391322732],[-0.022166192531586,-0.0090889055281878,0.038297060877085]],[[-0.037128519266844,0.022216940298676,0.03382121026516],[0.055732939392328,-0.0091373864561319,-0.01117058377713],[-0.049662001430988,-0.10157331079245,-0.039975471794605]],[[-0.064633652567863,-0.099257744848728,-0.062880992889404],[0.14122258126736,-0.051036585122347,-0.051992241293192],[-0.0038518854416907,-0.042463347315788,0.041725773364305]],[[-0.027690822258592,-0.064565077424049,0.12420319020748],[0.13603492081165,-0.020615926012397,-0.017108097672462],[-0.045725118368864,0.010158156044781,-0.013899177312851]],[[-0.012113648466766,-0.006052169483155,-0.0014070514589548],[-0.026999223977327,-0.037621133029461,0.0078434636816382],[0.0028591239824891,-0.058554690331221,0.062847413122654]],[[0.044755835086107,0.013329396024346,0.046489395201206],[-0.01816700771451,0.046155016869307,0.039723958820105],[-0.0055935489945114,-0.007807647343725,0.057538829743862]],[[-0.01171562820673,-0.05989146232605,-0.0090398667380214],[-0.031711753457785,0.063571132719517,0.046716723591089],[0.0015420006820932,-0.045331973582506,-0.0047380495816469]],[[-0.093099415302277,-0.081980250775814,-0.035343810915947],[0.024631757289171,-0.016405636444688,-0.082434542477131],[-0.012538246810436,-0.00070930499350652,0.073989368975163]],[[-0.058485765010118,-0.057437777519226,0.08280361443758],[-0.03397798538208,0.056351158767939,-0.02066788636148],[0.056103322654963,-0.02024676464498,0.093882888555527]],[[0.042204789817333,-0.003129311138764,0.04130545258522],[0.0041004065424204,-0.0090743033215404,0.032210048288107],[-0.032520178705454,0.038295187056065,-0.0013337843120098]],[[0.0093982461839914,-0.010638467036188,-0.055537261068821],[0.057463467121124,0.037606507539749,0.10393550992012],[-0.016224853694439,0.048055931925774,0.0022813330870122]],[[-0.035151898860931,-0.03703398257494,0.044510550796986],[0.045513644814491,0.017598325386643,0.025094766169786],[0.017574476078153,-0.030461460351944,-0.052682790905237]],[[0.034528899937868,0.077106110751629,0.077406339347363],[0.033215627074242,-0.018466331064701,-0.042555909603834],[0.0051752803847194,0.033718124032021,-0.053978394716978]],[[0.031389653682709,0.058609012514353,0.046172525733709],[-0.019337791949511,0.082847744226456,-0.011419951915741],[0.011321088299155,0.051301069557667,-0.022579502314329]],[[0.040042940527201,0.025422982871532,0.057526096701622],[-0.060340110212564,-0.038966841995716,0.034900367259979],[0.10505554080009,-0.026760524138808,-0.0031844431068748]],[[0.058691766113043,-0.022554250434041,0.085743457078934],[-0.00078164553269744,0.01616290025413,-0.091843396425247],[-0.035568237304688,0.014807564206421,0.053183153271675]],[[0.021971324458718,-0.0051589664071798,0.053961709141731],[-0.0060982648283243,-0.019337430596352,-0.019027821719646],[0.044819194823503,0.014082347974181,0.012406386435032]],[[-0.054194312542677,0.035168841481209,0.011868622153997],[-0.00032416777685285,0.0036203099880368,-0.0080160107463598],[0.051139336079359,-0.023090882226825,0.018330182880163]],[[0.022042427212,-0.00063365785172209,0.048487089574337],[-0.074586868286133,-0.014829017221928,-0.010698071680963],[-0.094926871359348,-0.047740485519171,-0.0067719947546721]],[[0.089691616594791,0.01077151671052,0.0074829161167145],[0.040959242731333,0.13511015474796,0.029002586379647],[0.022977696731687,-0.0029682668391615,0.032227039337158]],[[-0.033629201352596,-0.12245750427246,0.0090321600437164],[0.065866440534592,0.075176388025284,-0.046432085335255],[0.01969738304615,-0.039248023182154,-0.021670181304216]],[[0.0010979367652908,-0.026660934090614,-0.05016653239727],[-0.041609831154346,0.037200018763542,-0.067734107375145],[0.011982900090516,-0.075136184692383,0.037280071526766]],[[-0.045374855399132,-0.019193278625607,-0.050517786294222],[-0.033609926700592,0.031915783882141,0.02971725165844],[-0.034000564366579,-0.065289355814457,-0.02926048822701]],[[0.018256908282638,0.022783728316426,0.038026742637157],[0.012632844038308,-0.065357580780983,0.010876975953579],[0.0053141685202718,0.00029078987427056,0.05955333635211]],[[0.0039826701395214,0.073184818029404,0.028328256681561],[-0.055709928274155,-0.014138381928205,0.0086590955033898],[0.0039694220758975,0.068072594702244,-0.04415787011385]],[[0.015038303099573,-0.032719969749451,0.022739168256521],[0.020523464307189,0.053934216499329,-0.022094305604696],[-0.029388323426247,-0.02310031466186,0.0495540574193]],[[0.041015461087227,-0.043462991714478,-0.035282015800476],[-0.049102503806353,-0.0017243231413886,-0.056249309331179],[0.021392252296209,-0.036449491977692,-0.0056605767458677]],[[-0.0024170216638595,-0.010347351431847,-0.066165275871754],[0.073253281414509,0.015619982033968,-0.00045351195149124],[-0.056767269968987,0.039884638041258,-0.040863342583179]],[[-0.13079218566418,-0.0013701620046049,-0.034083422273397],[0.10312435030937,-0.027616422623396,-0.0050382809713483],[-0.0038354848511517,-0.039412338286638,-0.019207445904613]],[[0.0081752557307482,0.051905520260334,0.082457907497883],[-0.047739468514919,0.027756236493587,-0.015124631114304],[-0.02021761611104,-0.094178654253483,0.024993928149343]]],[[[0.03481337800622,-0.084692053496838,0.055070348083973],[-0.077320918440819,-0.0029887519776821,0.0026507850270718],[0.020198862999678,0.0091246059164405,0.020137120038271]],[[0.042988613247871,-0.073270544409752,-0.058928590267897],[-0.030452102422714,-0.011974280700088,0.0046582389622927],[-0.011447335593402,-0.068669863045216,0.089255623519421]],[[0.10366261005402,-0.029715994372964,0.052414406090975],[-0.0028858880978078,0.016898013651371,-0.042830552905798],[0.037366978824139,-0.010914182290435,-0.17430911958218]],[[0.028033908456564,0.021517813205719,-0.060335047543049],[0.037785459309816,-0.040667880326509,-0.0071242777630687],[-0.05358000844717,0.10982314497232,-0.10220429301262]],[[0.0031364653259516,0.05417974665761,-0.01842207275331],[0.010049326345325,0.032837983220816,0.091257110238075],[0.023993430659175,-0.071301750838757,-0.11856991797686]],[[-0.062447838485241,0.1240497007966,0.0072923502884805],[0.079879134893417,0.066723190248013,-0.026296371594071],[-0.040676180273294,-0.052260711789131,-0.028314337134361]],[[-0.019615031778812,0.059622507542372,-0.002695226110518],[-0.028417337685823,-0.068541586399078,0.031179590150714],[-0.0097977006807923,-0.089941598474979,-0.049266912043095]],[[0.083779036998749,-0.022427575662732,-0.00756152626127],[0.027366569265723,-0.098947659134865,-0.038394566625357],[-0.02292993851006,0.12275507301092,-0.028229258954525]],[[-0.01834917999804,0.0056007471866906,0.0074143074452877],[0.067522749304771,0.042029414325953,-0.066818565130234],[-0.010649069212377,0.069564886391163,-0.11895148456097]],[[-0.0063123200088739,-0.0082357861101627,0.09778193384409],[-0.0074395728297532,-0.012232312932611,0.099511094391346],[0.015802169218659,0.091590516269207,-0.079152643680573]],[[0.042610857635736,-0.022227754816413,-0.099023558199406],[-0.048839580267668,0.045023363083601,0.036465257406235],[0.051819022744894,0.017057588323951,-0.0089092534035444]],[[0.13108672201633,0.1386232227087,-0.039699599146843],[-0.066219970583916,-0.072365410625935,-0.047022789716721],[-0.0693693831563,0.0115513978526,0.088748835027218]],[[0.013316189870238,0.0080591384321451,-0.037175182253122],[0.054650761187077,0.03465049341321,-0.0065691261552274],[0.0173828471452,-0.05951214581728,0.15730954706669]],[[-0.028121357783675,0.050202321261168,0.034431058913469],[-0.0063490495085716,0.037813104689121,0.094235301017761],[0.0056565953418612,0.0033587429206818,-0.052143763750792]],[[0.10283874720335,-0.037097215652466,-0.011816255748272],[-0.07560358196497,0.0037180867511779,0.01702282205224],[0.095499321818352,-0.10214137285948,0.15113957226276]],[[-0.11547746509314,0.010529203340411,-0.0040748012252152],[-0.039043035358191,0.19615417718887,0.044369108974934],[-0.051167160272598,-0.024531463161111,0.054859559983015]],[[-0.014753042720258,0.0033452496863902,-0.052876770496368],[0.017249347642064,-0.17515975236893,-0.036425292491913],[0.016669973731041,-2.5406012355234e-05,0.011199929751456]],[[-0.023621363565326,0.00013624904386234,-0.033320300281048],[-0.0014708227245137,-0.046977356076241,0.020296648144722],[-0.048773977905512,-0.069410018622875,-0.0087823383510113]],[[-0.0046890317462385,-0.088132597506046,-0.0017584972083569],[-0.046880666166544,0.022650890052319,0.053256336599588],[-0.11658497154713,0.093386821448803,-0.13193525373936]],[[-0.079791508615017,0.012520391494036,-0.02721719071269],[0.0241105761379,0.055490363389254,0.0038029479328543],[0.0615114569664,0.052538394927979,0.06402438133955]],[[0.082576349377632,-0.030174089595675,0.13740642368793],[-0.090653717517853,0.076073072850704,0.061800673604012],[0.022016976028681,0.04683618247509,0.013547118753195]],[[-0.14717036485672,-0.11135759949684,-0.021333917975426],[-0.0023588198237121,0.051802467554808,-0.071792341768742],[0.058943398296833,0.064433962106705,0.0091168386861682]],[[0.051925376057625,-0.0063509391620755,0.0082158176228404],[0.0080023482441902,0.071952417492867,-0.088501363992691],[-0.0013247677125037,-0.056569311767817,0.0098409270867705]],[[-0.01993440836668,0.089330263435841,0.044765323400497],[0.046455562114716,0.019995551556349,-0.04989343509078],[-0.064988166093826,-0.094402633607388,0.058361697942019]],[[0.056755132973194,-0.088110782206059,-0.014728824608028],[-0.023991035297513,-0.055233370512724,-0.024887321516871],[-0.011682583019137,0.021639807149768,-0.098902612924576]],[[0.087955228984356,0.031300850212574,0.05714200809598],[0.066208228468895,-0.036670714616776,0.023996448144317],[-0.12954203784466,-0.10208212584257,-0.0061231218278408]],[[-0.0175178386271,-0.072337917983532,-0.049479924142361],[0.09247625619173,-0.065511673688889,0.015032115392387],[-0.12168007344007,-0.1447668671608,-0.025591522455215]],[[-0.0016835005953908,0.10365886241198,0.038579538464546],[0.070001058280468,0.0035436409525573,0.025400426238775],[-0.10530130565166,-0.038091115653515,-0.072587072849274]],[[-0.022278117015958,-0.058092914521694,-0.00074999302159995],[-0.0032156328670681,-0.092923648655415,0.04385057464242],[0.063319221138954,0.02324485220015,0.072148568928242]],[[0.10151033848524,-0.096676625311375,0.14318938553333],[-0.12894870340824,0.068802356719971,-0.022808095440269],[-0.044098544865847,-0.016265444457531,0.043007642030716]],[[-0.037220157682896,-0.0021131781395525,-0.15013520419598],[-0.049473471939564,0.09421569108963,0.038011580705643],[-0.049657210707664,0.071810126304626,-0.12400638312101]],[[-0.030075611546636,0.018257681280375,0.13327591121197],[0.079185888171196,-0.001771624898538,-0.10055183619261],[-0.19241020083427,-0.065417103469372,0.011408458463848]],[[0.085570521652699,0.018476419150829,-0.047794427722692],[0.01708484813571,-0.031560432165861,0.0042705507948995],[0.121841840446,0.036185696721077,0.20611862838268]],[[-0.057263989001513,-0.034034579992294,0.12445402145386],[-0.055554646998644,-0.025437407195568,-0.1005197390914],[0.057846192270517,-0.051374461501837,0.065344169735909]],[[-0.1295063495636,0.023892296478152,-0.03676026314497],[-0.053276646882296,-0.075387418270111,-0.012765795923769],[0.10296255350113,0.11394356936216,-0.097262844443321]],[[-0.044642318040133,-0.022135771811008,0.064245916903019],[-0.012444230727851,0.024886749684811,0.015178335830569],[-0.0069912639446557,-0.027512568980455,-0.072369396686554]],[[-0.046883568167686,0.092813700437546,-0.1132176220417],[0.11051582545042,-0.041358280926943,-0.15787988901138],[-0.044881418347359,-0.00033743010135368,0.16327808797359]],[[0.059384290128946,0.035582222044468,-0.30778041481972],[0.021849855780602,0.024469641968608,0.023965738713741],[0.049846231937408,0.063454359769821,0.080036208033562]],[[-0.11538628488779,0.11914271861315,0.052095718681812],[0.038927238434553,-0.013359433971345,0.021268129348755],[0.040064003318548,-0.044111128896475,-0.010164274834096]],[[-0.042103543877602,-0.14580914378166,0.1574295759201],[-0.043574444949627,0.0083775194361806,0.11737854033709],[-0.044055741280317,-0.16220764815807,0.062427341938019]],[[0.041358407586813,-0.040136843919754,0.044696666300297],[0.038333363831043,-0.071548193693161,0.038266070187092],[-0.0058874334208667,-0.095377169549465,-0.016783012077212]],[[-0.051020469516516,-0.06208747625351,-0.14753824472427],[0.019348250702024,0.037645693868399,-0.014516458846629],[0.086798049509525,0.04500150308013,0.049587942659855]],[[-0.10621112585068,-0.017935594543815,-0.0014899011002854],[-0.032009553164244,-0.11107105761766,-0.12351210415363],[0.020453333854675,-0.12794065475464,0.034482579678297]],[[-0.01693650893867,0.0061289733275771,-0.022940959781408],[0.0069523570127785,0.064797177910805,-0.0079391552135348],[0.04062433168292,0.045425035059452,-0.030777007341385]],[[-0.063389711081982,0.053610105067492,0.092138133943081],[0.066866472363472,0.035479091107845,0.26646015048027],[-0.21951188147068,-0.34576240181923,0.080251827836037]],[[-0.058785255998373,-0.025345230475068,-0.028730809688568],[0.099823653697968,0.015916436910629,-0.041630927473307],[0.021445153281093,0.0084663610905409,0.021227065473795]],[[-0.016102960333228,-0.050565082579851,0.05787817761302],[0.10377834737301,-0.040146842598915,0.053019311279058],[-0.039371948689222,0.04450187087059,0.043562073260546]],[[0.024319281801581,0.053186621516943,-0.063838183879852],[-0.03084833547473,0.15691336989403,0.076189748942852],[0.06655465066433,0.061259988695383,0.041733141988516]],[[0.021085666492581,-0.001914614927955,-0.00015086111670826],[0.054203234612942,0.057002387940884,0.0021902017761022],[0.081619650125504,-0.060752727091312,-0.030734162777662]],[[0.047084271907806,0.070471480488777,-0.11679819971323],[0.098072700202465,0.058459870517254,-0.093430384993553],[-0.045310337096453,0.0018696316983551,-0.092576093971729]],[[0.032636445015669,-0.019429136067629,-0.015325875021517],[0.0085297161713243,-0.019692935049534,-0.028659719973803],[-0.15462167561054,-0.062519550323486,-0.04703164100647]],[[-0.050783757120371,0.11382741481066,-0.12141496688128],[-0.044653352349997,0.049506057053804,-0.045208312571049],[-0.020886439830065,-0.064423181116581,0.035548195242882]],[[-0.067934945225716,-0.078660547733307,-0.12873278558254],[-0.050475765019655,0.015084745362401,-0.019961757585406],[-0.086712911725044,-0.023347049951553,-0.13884063065052]],[[0.090960532426834,0.078489758074284,0.069982290267944],[-0.0056143146939576,0.086520545184612,0.035101488232613],[0.067077040672302,-0.057592578232288,0.18394085764885]],[[-0.030314762145281,0.070245914161205,-0.042301818728447],[0.028734236955643,-0.097585283219814,-7.605802238686e-05],[0.037154350429773,0.062856286764145,-0.10159907490015]],[[-0.07282792031765,0.020472962409258,0.054103441536427],[-0.0085432082414627,-0.0096028987318277,0.030800215899944],[0.004871865734458,0.045532073825598,-0.020663382485509]],[[-0.037358485162258,0.022817611694336,0.091980196535587],[0.099996007978916,-0.010932295583189,-0.059431996196508],[0.0039654225111008,0.030154284089804,-0.073638252913952]],[[0.010341697372496,0.011526952497661,-0.020069245249033],[-0.035830561071634,0.0095613803714514,-0.033619470894337],[-0.0079185636714101,-0.035409681499004,-0.093161396682262]],[[-0.058469504117966,0.043554127216339,-0.067615196108818],[-0.11504874378443,0.069270752370358,0.12288659065962],[0.073599867522717,-0.064702823758125,-0.052334498614073]],[[-0.0072146984748542,-0.018056558445096,-0.038733035326004],[-0.0099866092205048,0.037227921187878,0.053691308945417],[-0.03027387149632,-0.0037556060124189,0.060745541006327]],[[-0.10606203228235,0.0059329182840884,0.003768537659198],[0.086787104606628,0.062451954931021,-0.049957159906626],[0.020892605185509,0.012274280190468,-0.019447667524219]],[[0.035788495093584,0.10571344196796,-0.14469502866268],[-0.06781343370676,-0.10659145563841,0.03555990755558],[0.12934264540672,0.020493572577834,0.10918351262808]],[[-0.0086611611768603,0.057854618877172,-0.10189912468195],[0.04156769067049,0.04904692620039,0.025745134800673],[-0.042359061539173,0.028597477823496,-0.00194009358529]],[[-0.019087867811322,-0.065994538366795,-0.055936180055141],[0.065400309860706,-0.0035527634900063,-0.1239662989974],[-0.04888703301549,0.037720631808043,0.03749967738986]]],[[[0.018320506438613,-0.091362185776234,-0.0043674050830305],[0.0011283105704933,-0.052116513252258,0.041708674281836],[0.0094610322266817,0.047195546329021,-0.032927546650171]],[[-0.0092156585305929,-0.0026461961679161,-0.0085110142827034],[-0.013066676445305,-0.038174819201231,-0.036622449755669],[-0.02113900333643,0.0067276479676366,0.033294882625341]],[[0.015564286150038,0.046266809105873,-0.013065407052636],[0.015067922882736,0.017452182248235,-0.007360830437392],[-0.0087428214028478,0.0045414664782584,-0.023444039747119]],[[0.082830548286438,0.025488024577498,0.021471168845892],[-0.047509122639894,0.036399506032467,-0.04130432009697],[0.03113236092031,-0.051521003246307,0.061767999082804]],[[0.057670570909977,-0.022444630041718,0.028206633403897],[0.023937907069921,0.057130675762892,-0.00057879026280716],[-0.029221024364233,-0.0060050152242184,0.047796364873648]],[[0.077847689390182,0.00084510492160916,0.010696874931455],[-0.047970369458199,-0.094209469854832,-0.048676449805498],[-0.069067403674126,-0.044150840491056,-0.054333921521902]],[[0.0364587046206,0.011139797046781,-0.038828924298286],[0.029280003160238,0.022135384380817,0.015669535845518],[-0.069758184254169,-0.034573446959257,-0.023901253938675]],[[-0.04176626726985,-0.088828131556511,0.019162897020578],[-0.010635794140399,-0.049384776502848,-0.051738929003477],[-0.05169614776969,-0.022733565419912,-0.074594639241695]],[[0.097057521343231,0.050920482724905,0.032473172992468],[-0.040200542658567,0.028363661840558,0.011392164044082],[0.032841544598341,-0.020553352311254,0.0060286582447588]],[[0.018286373466253,-0.052195575088263,0.025729661807418],[-0.053028430789709,-0.053017258644104,0.012902649119496],[0.064696170389652,0.00024302251404151,0.015645230188966]],[[0.0040645184926689,0.0088665410876274,0.0050441799685359],[0.0047731092199683,-0.022115789353848,0.00096664729062468],[-0.049886368215084,-0.04545783996582,-0.028593888506293]],[[0.034741837531328,-0.047052416950464,-0.014948921278119],[-0.013053619302809,0.024962347000837,0.073274523019791],[-0.014107752591372,-0.03665005043149,-0.08991401642561]],[[0.035662967711687,-0.0025453837588429,-0.02944310195744],[0.007864024490118,0.018759608268738,-0.041318472474813],[-0.0054218526929617,0.012595208361745,-0.037269718945026]],[[0.053160045295954,-0.049505576491356,-0.0017979099648073],[0.012036210857332,0.050284933298826,0.017264349386096],[0.067094780504704,0.032775186002254,-0.031586296856403]],[[0.016065685078502,0.053690817207098,-0.080961465835571],[-0.072465561330318,0.036570589989424,0.0022698503453285],[0.050181265920401,-0.0079461028799415,0.00023467365826946]],[[0.041667394340038,0.022301623597741,0.044140454381704],[0.0029253149405122,0.022565355524421,-0.075123131275177],[-0.018898889422417,0.0068340725265443,0.028980171307921]],[[0.030697491019964,0.045421309769154,-0.053546994924545],[-0.081842392683029,0.018066510558128,-0.027494985610247],[0.00088471389608458,-0.10448507964611,-0.031802553683519]],[[0.0089676231145859,0.014344533905387,0.02499202825129],[-0.018494229763746,0.016917388886213,0.093069009482861],[0.021641541272402,-0.019979348406196,-0.0045947302132845]],[[0.045860268175602,-0.01709739305079,-0.0005265052895993],[-0.055989656597376,-0.014820211566985,-0.043583426624537],[0.043260134756565,-0.018845545127988,-0.0025313477963209]],[[0.0013727977639064,0.023129822686315,-0.050491403788328],[-0.0094386227428913,0.011872450821102,0.014703531749547],[-0.037981402128935,-0.025219310075045,-0.036253001540899]],[[0.032502189278603,0.0088618434965611,0.016550378873944],[-0.0034219361841679,0.018254088237882,0.035066731274128],[0.099988974630833,-0.032114401459694,-0.066717617213726]],[[-0.022830890491605,-0.0039685610681772,-0.033990159630775],[-0.052646819502115,0.0413125641644,-0.011709555052221],[0.027461837977171,0.021989369764924,0.0071446318179369]],[[-0.059608239680529,-0.011608484201133,0.051495794206858],[0.0098354881629348,0.088843680918217,-0.0044450955465436],[-0.06326762586832,-0.0037322351709008,-0.0075604831799865]],[[0.032177891582251,-0.015053797513247,0.0011788343545049],[0.064763590693474,0.028096718713641,0.029714267700911],[-0.080604143440723,-0.00089971185661852,0.016004838049412]],[[0.035356163978577,-0.068918190896511,0.064658239483833],[-0.0071106599643826,-0.11803502589464,-0.048941224813461],[-0.056427713483572,-0.030779540538788,-0.033425271511078]],[[0.0093300873413682,-0.0096645718440413,0.018504055216908],[0.013677036389709,-0.046541579067707,-0.014070744626224],[-0.019022114574909,0.008781835436821,-0.036191988736391]],[[0.0067725512199104,0.07820850610733,0.010011084377766],[-0.018222607672215,-0.059059672057629,0.0014115197118372],[0.02165524289012,-0.051959473639727,-0.053715240210295]],[[0.050452001392841,-0.024440832436085,0.037972752004862],[0.052265308797359,-0.056702733039856,0.081626750528812],[0.09051126986742,0.0019981721416116,0.030375137925148]],[[-0.0064766453579068,0.0086694145575166,-0.019525559619069],[-0.020973550155759,0.028519349172711,0.0044129551388323],[-0.047119047492743,-0.0047715599648654,-0.023424850776792]],[[0.040106296539307,-0.0021588541567326,0.035815577954054],[0.04342145845294,0.011219416745007,-0.040028415620327],[0.019093319773674,-0.0025776578113437,0.0039853840135038]],[[0.022711284458637,0.036817088723183,0.029719669371843],[-0.01275250967592,-0.071762651205063,-0.011553124524653],[-0.081887952983379,0.02644264139235,-0.013406792655587]],[[0.032359514385462,0.10928381234407,0.021234130486846],[-0.026907188817859,0.053213439881802,0.020336052402854],[-0.014908902347088,-0.044225513935089,0.046813420951366]],[[-0.0085727432742715,-0.052536521106958,-0.015810230746865],[-0.034098699688911,-0.0062404680065811,-0.027357518672943],[-0.001155628124252,-0.0027101351879537,0.0082725519314408]],[[-0.018247416242957,-0.019495075568557,0.022969417273998],[-0.056094534695148,-0.058651637285948,0.081960961222649],[-0.051431566476822,-0.060309115797281,-0.083747915923595]],[[0.016744315624237,0.029509177431464,0.083701550960541],[-0.037805303931236,0.022714944556355,-0.0038407614920288],[0.016338294371963,-0.082801677286625,-0.035234313458204]],[[-0.017630834132433,-0.074661515653133,0.018608693033457],[-0.06075344607234,-0.0461305975914,-0.058220826089382],[-0.024027461186051,-0.074412457644939,-0.12423260509968]],[[-0.020323684439063,-0.035888560116291,0.022596769034863],[-0.018291085958481,-0.058310206979513,0.025366336107254],[0.037253879010677,0.015487154014409,-0.0036553936079144]],[[0.056810166686773,0.099853448569775,-0.018395569175482],[-0.0041523166000843,0.0029813167639077,0.0024566415231675],[0.0065437108278275,-0.0029823635704815,0.0075649959035218]],[[0.040355946868658,-0.004512564279139,-0.082206413149834],[-0.045050214976072,0.093477785587311,0.014352562837303],[-0.053628988564014,-0.015316692180932,0.02808254212141]],[[-0.00057886366266757,0.033653821796179,0.041360054165125],[-0.045974005013704,0.064512096345425,0.0042949020862579],[-0.011879334226251,-0.0022981469519436,0.020434122532606]],[[-0.0050356471911073,0.058202680200338,0.080055899918079],[-0.027267973870039,0.03889736905694,-0.053803935647011],[-0.035196334123611,0.03433595970273,-0.044931940734386]],[[0.030665583908558,-0.071796305477619,-0.015149501152337],[-0.064007446169853,-0.034876212477684,-0.064556263387203],[-0.03272433578968,0.020428938791156,0.065551288425922]],[[-0.018476178869605,0.077394850552082,-0.059927277266979],[0.012450817041099,-0.046094633638859,0.06516769528389],[0.012322220019996,0.0086245825514197,-0.066849775612354]],[[0.01862327940762,-0.0068684886209667,0.064809657633305],[-0.037635929882526,0.015376348048449,-0.010682341642678],[-0.011601969599724,-0.0065734842792153,-0.076325923204422]],[[0.00829719286412,-0.0018471588846296,0.011655197478831],[0.10623916238546,-0.021963624283671,-0.0050404067151248],[0.011354473419487,0.027998635545373,-0.068553246557713]],[[0.033200580626726,0.046287257224321,-0.043569687753916],[0.070487320423126,0.037028450518847,-0.0016644088318571],[0.05607345700264,0.0092084743082523,-0.015393875539303]],[[-0.029385726898909,-0.036916051059961,-0.030957439914346],[-0.022936450317502,-0.026281129568815,0.022337621077895],[-0.033328656107187,-0.027512283995748,0.048239264637232]],[[-0.1000971198082,-0.025939652696252,0.035377457737923],[-0.0066775227896869,0.0022825018968433,-0.02327024564147],[-0.049660675227642,-0.047458242624998,0.02775819785893]],[[-0.03868118673563,0.00075441494118422,-0.026131032034755],[-0.034228820353746,0.0032881214283407,0.05707786232233],[-0.019531514495611,-0.029414525255561,-0.0012461281148717]],[[-0.054918926209211,-0.0317900814116,-0.021464416757226],[-0.045673877000809,-0.091586455702782,0.019977375864983],[-0.023290015757084,0.027530618011951,-0.10164589434862]],[[0.051092367619276,0.042433626949787,0.0065102335065603],[0.063433304429054,-0.0025590739678591,0.022020701318979],[0.0048536276444793,0.011087091639638,-0.0066423276439309]],[[-0.042088836431503,0.056956633925438,-0.020220885053277],[-0.078766293823719,0.0032127893064171,-0.05522371083498],[-0.032975491136312,0.012370592914522,0.039460323750973]],[[0.015665628015995,0.0087924934923649,-0.0040082484483719],[-0.086751841008663,0.015426560305059,-0.0065765311010182],[-0.011364663019776,-0.038906075060368,0.0089818267151713]],[[0.029983283951879,0.049967177212238,0.081870511174202],[0.042914871126413,0.042946584522724,0.012448035180569],[0.11701118201017,0.066920422017574,0.014637767337263]],[[-0.012786203995347,0.025928368791938,0.016028301790357],[-0.0163913089782,-0.0043260958045721,0.054522261023521],[-0.032852545380592,-0.05278629809618,0.0051702079363167]],[[0.00068303756415844,-0.012938158586621,0.044127974659204],[0.020515643060207,0.0060530719347298,-0.046321704983711],[-0.010481594130397,-0.0026728601660579,-0.030151013284922]],[[0.013157620094717,0.016934169456363,0.068166300654411],[5.3422427299665e-05,0.025056060403585,0.019125502556562],[-0.020820390433073,-0.00083836214616895,0.057058896869421]],[[-0.0058398712426424,-0.011211641132832,-0.030802255496383],[-0.0067883026786149,-0.014273227192461,-0.059611409902573],[-0.016968486830592,0.044590223580599,0.0199975669384]],[[0.013588976114988,0.037380799651146,-0.0070944400504231],[-0.067554391920567,0.023676577955484,-0.021323267370462],[0.012195560149848,-0.025785585865378,-0.037039428949356]],[[0.039734933525324,-0.032455094158649,-0.0063247559592128],[-0.016740640625358,-0.016800871118903,-0.018877487629652],[0.057238858193159,0.031324919313192,0.031617850065231]],[[-0.032266482710838,0.0081587051972747,-0.051199939101934],[-0.015486910939217,0.028491020202637,-0.0093399547040462],[-0.034391567111015,-0.067940220236778,0.0036346076522022]],[[0.027184933423996,0.033104725182056,-0.0067967548966408],[-0.026665238663554,0.0015404134755954,0.01885531283915],[-0.0025551849976182,0.049420304596424,-0.0035904375836253]],[[0.01519974693656,-0.035125557333231,-0.11510054767132],[0.026391606777906,0.037097435444593,-0.033057928085327],[-0.011096523143351,-0.014715034514666,-0.019183220341802]],[[-0.035313744097948,-0.012295834720135,-0.030570019036531],[0.02139182202518,0.016644310206175,-0.014216960407794],[0.0048152948729694,-0.01337312348187,-0.0573022775352]]],[[[0.073293574154377,-0.015791721642017,0.026044255122542],[-0.066413976252079,0.031565573066473,-0.10051269829273],[-0.0029510338790715,0.048958301544189,0.095104530453682]],[[-0.084838844835758,-0.042130786925554,-0.010898983106017],[0.0045239198952913,0.015624538064003,0.080272532999516],[-0.018411412835121,-0.035332102328539,-0.025185083970428]],[[0.027723817154765,-0.0059579811058939,-0.0024815038777888],[-0.053349163383245,-0.03885605558753,0.0098693510517478],[0.040037304162979,-0.033082351088524,-0.038628276437521]],[[0.024534031748772,0.043512396514416,-0.0062326421029866],[0.089010775089264,0.044705402106047,-0.16967920958996],[-0.091665588319302,-0.12785601615906,0.01877530105412]],[[0.010563303716481,-0.0068566603586078,-0.041651345789433],[0.046900413930416,-0.019037198275328,0.033402126282454],[-0.032844644039869,0.061901707202196,0.0095442309975624]],[[0.098201669752598,0.020974177867174,0.11139612644911],[-0.086909465491772,-0.030806757509708,0.044003494083881],[0.02237937413156,-0.0059018116444349,-0.080621272325516]],[[0.00095616444014013,-0.055008459836245,-0.012428005225956],[-0.0028664069250226,0.00042906063026749,-0.014505221508443],[0.03211323171854,-0.021901216357946,0.0095256874337792]],[[0.041312757879496,-0.037721462547779,0.020421788096428],[0.082768194377422,-0.1282594949007,-0.068703219294548],[-0.087506659328938,-0.0084676994010806,-0.019692746922374]],[[-0.0064915921539068,-0.018557369709015,-0.013364111073315],[-0.073283702135086,-0.0056342557072639,0.0025778734125197],[-0.015015929937363,0.022753551602364,-0.0082695055752993]],[[-0.076308220624924,0.017853943631053,-0.11064443737268],[0.017836743965745,0.0093747470527887,0.024177696555853],[-0.03716829419136,0.029756419360638,0.010751247406006]],[[0.015932330861688,0.031407885253429,0.0051322616636753],[-0.1040159240365,-0.044267445802689,-0.0079721072688699],[-0.0072929649613798,-0.022818967700005,-0.090275272727013]],[[0.029484201222658,-0.027660736814141,0.067429900169373],[-0.022448027506471,0.036923691630363,0.039031341671944],[-0.02363608404994,-0.0013145466800779,-0.016170836985111]],[[-0.0053485194221139,0.040919899940491,-0.057546675205231],[0.031015187501907,-0.057448979467154,-0.019521145150065],[-0.042339522391558,0.004858176689595,0.062902830541134]],[[0.045850493013859,-0.065721340477467,-0.0096719032153487],[0.036115761846304,0.021494388580322,-0.02137178555131],[0.08664008975029,0.16661965847015,0.1020372658968]],[[-0.053863994777203,0.026046311482787,0.074477851390839],[-0.011467156000435,-0.0099184103310108,0.046352505683899],[0.030442573130131,-0.012667601928115,0.042197939008474]],[[-0.044609680771828,-0.055431451648474,0.069615565240383],[0.0051430431194603,0.11448700726032,-0.093698583543301],[-0.050485901534557,0.038076840341091,0.034616440534592]],[[0.055972579866648,-0.0083963489159942,0.026999002322555],[-0.0091530010104179,0.0051922369748354,-0.015229904092848],[0.034262217581272,0.0085471170023084,-0.0083723850548267]],[[0.027829768136144,0.064275354146957,0.0080936336889863],[-0.037481557577848,0.0099092982709408,0.014555785804987],[0.016775507479906,-0.056438110768795,0.0012827483005822]],[[-0.012031893245876,0.061716895550489,-0.011609185487032],[0.054713968187571,-0.049498792737722,-0.00083975092275068],[-0.036395967006683,-0.04496693611145,0.0043533490970731]],[[0.0705197006464,0.07368303835392,-0.014173859730363],[0.028456199914217,0.041464645415545,0.061800267547369],[-0.024564001709223,-0.044842857867479,0.043143272399902]],[[0.0055155069567263,-0.0028462712652981,-0.027709599584341],[-0.041485600173473,0.039378199726343,-0.051866471767426],[0.0031751641072333,0.0077936886809766,0.059908527880907]],[[0.11559623479843,0.045989435166121,-0.015665868297219],[0.026912929490209,-0.022467708215117,-0.012521575205028],[0.081283234059811,0.040539734065533,-0.0033794774208218]],[[-0.010646185837686,-0.020745454356074,-0.0019430316751823],[-0.056013997644186,-0.0014688699739054,0.020573779940605],[0.064575292170048,-0.063761197030544,0.060883164405823]],[[-0.014789859764278,0.039368126541376,0.038730841130018],[0.013951324857771,0.033749870955944,-0.025055212900043],[-0.018938744440675,-0.031854536384344,-0.00034787310869433]],[[-0.01602521724999,0.026607822626829,0.013587359338999],[0.0046746493317187,-0.005189694929868,0.00015751918544993],[0.0031610555015504,0.012199773453176,0.050614047795534]],[[-0.01155851688236,0.048500385135412,-0.0015388668980449],[-0.051819119602442,0.038891892880201,0.01975679770112],[0.0046891393139958,0.062777005136013,-0.050644565373659]],[[0.011893221177161,0.022158673033118,-0.014359529130161],[-0.058007098734379,0.064334742724895,-0.02219539321959],[-0.029809890314937,0.016941605135798,0.10704579204321]],[[0.021780353039503,0.050185050815344,0.058783382177353],[0.040143519639969,-0.059542942792177,-0.019370833411813],[0.10723309963942,-0.017673265188932,0.0062939701601863]],[[-0.023091668263078,-0.033000230789185,-0.018626173958182],[0.11426523327827,-0.099822655320168,-0.13104894757271],[-0.044740796089172,-0.047964666038752,-0.026219295337796]],[[-0.075077712535858,0.010058699175715,0.0026074664201587],[0.054715596139431,0.060803923755884,0.05881829187274],[0.043564029037952,0.020954206585884,0.0077232862822711]],[[-0.030576623976231,0.0090101575478911,-0.070495523512363],[-0.0039189979434013,-0.078350245952606,-0.040040511637926],[0.09280751645565,0.015904650092125,-0.034879490733147]],[[0.066401094198227,0.045410517603159,0.052935268729925],[-0.080557070672512,0.036825139075518,0.0048404955305159],[-0.035581890493631,-0.022176489233971,-0.05333661660552]],[[0.073880255222321,-0.0051900004036725,0.068936564028263],[-0.043167844414711,-0.0093548623844981,0.0057044685818255],[-0.045126527547836,-0.10418695956469,-0.060550022870302]],[[-0.041169662028551,-0.032222453504801,0.067791298031807],[0.033439982682467,0.0053174649365246,-0.037397783249617],[-0.037932518869638,-0.1068911626935,-0.12762956321239]],[[0.031026020646095,-0.0024521653540432,0.03283778950572],[0.019595583900809,0.0026491635944694,-0.0017840126529336],[-0.018212653696537,-0.01819446310401,0.042056553065777]],[[0.087518751621246,-0.047225117683411,0.021280616521835],[0.0016193353803828,0.044305723160505,-0.10371123254299],[0.075190372765064,-0.054123006761074,-0.040885649621487]],[[-0.01533258985728,0.030349314212799,0.0076660187914968],[-0.0014209473738447,0.0069407876580954,0.045176461338997],[0.011728233657777,-0.046852130442858,-0.047558449208736]],[[0.06525331735611,0.021080143749714,0.040238741785288],[-0.12326481938362,0.015201493166387,0.11139612644911],[-0.0012543456396088,0.022475272417068,0.0085621355101466]],[[-0.10531710088253,-0.01035722810775,-0.039000123739243],[0.069968804717064,-0.0040204557590187,-0.045581266283989],[-0.016293168067932,0.002747624181211,-0.017865050584078]],[[-0.026132244616747,0.023169830441475,0.0049680126830935],[-0.011847734451294,-0.052898298949003,0.016545742750168],[-0.009363348595798,0.01874016970396,-0.023348299786448]],[[-0.033903650939465,0.038375325500965,-0.014282492920756],[0.069734312593937,-0.068747043609619,0.023031324148178],[-0.013005460612476,-0.013893633149564,-0.044706214219332]],[[-0.054611187428236,-0.043685391545296,0.042167484760284],[0.02235465683043,-0.068037860095501,-0.030386509373784],[0.03873722627759,0.043141834437847,-0.0015333378687501]],[[-0.10481901466846,0.12246088683605,-0.019161323085427],[-0.040755480527878,-0.014485666528344,0.08520495146513],[0.060089573264122,-0.028635757043958,0.049515880644321]],[[-0.020635867491364,0.033487658947706,-0.0095162494108081],[-0.020654754713178,-0.037650946527719,-0.022276163101196],[0.01234167534858,-0.061460290104151,-0.15454399585724]],[[-0.069268025457859,0.085034497082233,-0.02453420124948],[0.080337554216385,-0.050331346690655,0.09270341694355],[0.058618314564228,0.0084630195051432,-0.029634028673172]],[[-0.012639537453651,-0.0015831644413993,0.010848060250282],[-0.061286401003599,0.024684183299541,0.0020006783306599],[-0.026648838073015,-0.015924451872706,0.022217614576221]],[[-0.014171944931149,-0.016123419627547,-0.0012359827524051],[0.023566327989101,-0.043059196323156,-0.02616585791111],[-0.020424181595445,-0.049904853105545,0.0036140286829323]],[[0.019122639670968,-0.048729531466961,-0.043552547693253],[0.0025681159459054,-0.012657038867474,-0.0091089578345418],[0.051920440047979,0.016171189025044,0.006287008523941]],[[-0.00059038156177849,0.00052173307631165,-0.041471593081951],[-0.068714618682861,-0.02632037550211,0.031302981078625],[-0.043319184333086,0.03942783549428,0.022218568250537]],[[-0.0039471294730902,-0.036047071218491,-0.036901909857988],[-0.0086990315467119,-0.028985241428018,-0.074320614337921],[0.038210492581129,-0.053403306752443,-0.09015665948391]],[[-0.012774345465004,0.014558816328645,0.0058732060715556],[0.0025284022558481,0.0099996887147427,0.0079670259729028],[-0.01338090095669,0.0045763612724841,-0.016629232093692]],[[-0.038375925272703,-0.0055573456920683,0.043061163276434],[0.025506993755698,0.02039928548038,0.01256175711751],[-0.0052774329669774,0.084853872656822,-0.0077570336870849]],[[-0.0043916897848248,0.058786857873201,-0.061838980764151],[0.041796069592237,0.0030865308362991,0.0030630812980235],[0.0019729621708393,-0.0035205250605941,-0.0021679310593754]],[[-0.069037243723869,0.060209270566702,0.0056777074933052],[0.033000830560923,0.073504470288754,0.057984743267298],[0.067252419888973,0.046896927058697,0.023640284314752]],[[0.028713149949908,-0.057722475379705,-0.031461391597986],[-0.020833311602473,-0.0083616124466062,0.018832130357623],[0.021369509398937,-0.016140058636665,-0.089957356452942]],[[-0.0080299144610763,-0.0123246088624,0.017034528777003],[-0.0080060241743922,0.0064349328167737,0.039723046123981],[-0.023779863491654,0.011317459866405,-0.022139240056276]],[[0.02637293189764,-0.010786772705615,0.026655294001102],[-0.019501065835357,0.073904477059841,0.020199615508318],[-0.088585279881954,-0.057381175458431,-0.085189953446388]],[[-0.0050722360610962,-0.013080015778542,-0.0028772556688637],[0.058783318847418,-0.0023877799976617,-0.060120701789856],[-0.055050373077393,0.018756877630949,-0.10278896987438]],[[0.0041209734044969,-0.03176212310791,0.0081451423466206],[0.060986578464508,0.00097812712192535,-0.00043686787830666],[-0.035015299916267,0.021723380312324,0.063794806599617]],[[-0.0059741572476923,0.036267012357712,0.0040572420693934],[0.055449068546295,-0.00097692909184843,0.020470913499594],[-0.049741335213184,0.037702448666096,-0.027054354548454]],[[-0.0045541916042566,-0.015746407210827,0.027130344882607],[-0.0032913652248681,-0.017159758135676,0.02261289767921],[0.045125111937523,0.025306828320026,-0.023247567936778]],[[0.045914061367512,0.023208115249872,0.066971026360989],[0.034852355718613,0.034886453300714,-0.014978157356381],[0.060042783617973,-0.031875025480986,-0.033643469214439]],[[0.01166176982224,0.01883801445365,-0.019016468897462],[0.024525685235858,-0.0053863483481109,0.022552905604243],[0.0044617070816457,-0.020924909040332,-0.06389856338501]],[[0.034004706889391,-0.093838669359684,0.069192469120026],[0.038148757070303,-0.036919448524714,-0.034717809408903],[0.0091894138604403,-0.053504604846239,0.017406707629561]]],[[[0.059822365641594,-0.05613649263978,7.8133329225238e-05],[-0.039307657629251,0.029977833852172,0.053266324102879],[0.027664812281728,0.045148860663176,-0.00014022408868186]],[[-0.031032402068377,-0.00023006428091321,-0.028488218784332],[-0.041613824665546,0.00070599693572149,-0.053761217743158],[0.02048622444272,0.0026101928669959,0.031566116958857]],[[-0.0035372273996472,-0.012604153715074,0.0054065496660769],[-0.033116988837719,-0.00047054380411282,-0.038313083350658],[0.028729984536767,0.031066901981831,-0.026277521625161]],[[0.048995967954397,-0.049473866820335,0.010255386121571],[-0.034102853387594,0.0087648080661893,-0.11089247465134],[-0.013932631351054,0.011468442156911,-0.089595377445221]],[[0.00039267001557164,-0.0054906154982746,-0.0059545831754804],[-0.022570043802261,0.00013801992463414,-0.019939767196774],[0.026870619505644,-0.064551666378975,-0.031954020261765]],[[0.019068000838161,0.0024518012069166,-0.10240289568901],[0.052263744175434,-0.0065236533991992,0.0052345707081258],[0.10781456530094,0.071829177439213,-0.038720902055502]],[[-0.019793951883912,-0.034576240926981,0.014489536173642],[-0.087187387049198,0.0084058344364166,0.029141778126359],[-0.033606957644224,0.037258636206388,-0.019457841292024]],[[0.023520274087787,0.035909354686737,0.049577817320824],[0.070526368916035,0.047881994396448,-0.0086183743551373],[0.0062609557062387,0.040819440037012,-0.067858196794987]],[[0.016320569440722,-0.023175237700343,0.091868616640568],[-0.0087157124653459,-0.030748696997762,0.0051319808699191],[-0.025594184175134,-0.026000048965216,0.000612088420894]],[[-0.032059367746115,0.095142893493176,-0.018115362152457],[-0.07582987844944,0.0043987985700369,-0.012765860185027],[0.043469805270433,-0.015412115491927,0.031950488686562]],[[0.088816680014133,0.058690004050732,-0.0025885722134262],[-0.012331895530224,0.015862748026848,-0.051715597510338],[-0.054571013897657,0.0011403482640162,0.015466541051865]],[[0.036197904497385,-0.048349000513554,0.0035065447445959],[0.027511080726981,-0.033670548349619,0.021831789985299],[-0.0088240234181285,-0.033166225999594,-0.033399749547243]],[[0.013711981475353,-0.010860946029425,-0.033758938312531],[-0.0085103744640946,-0.0043997028842568,-0.01783736795187],[0.015884449705482,-0.046821638941765,0.032031167298555]],[[0.045285727828741,0.030382826924324,0.082221418619156],[0.052237279713154,0.048152044415474,0.023431012406945],[0.0097075728699565,-0.052356749773026,-0.036372780799866]],[[0.059360332787037,0.027159754186869,0.043124590069056],[-0.08461656421423,-0.036238268017769,-0.055627249181271],[0.11323051154613,-0.010742880403996,0.028758201748133]],[[0.041691686958075,0.035464279353619,0.0094986576586962],[0.018551163375378,0.012162373401225,0.058891631662846],[0.046073745936155,-0.039953298866749,0.044747214764357]],[[0.051570396870375,-0.022594947367907,-0.015709552913904],[0.024764683097601,-0.02284380607307,0.018433298915625],[-0.011708995327353,0.037740245461464,0.017106870189309]],[[-0.034502636641264,-0.016905929893255,0.039396550506353],[0.044622488319874,0.016026550903916,0.069776020944118],[0.039872903376818,0.045462336391211,0.022121326997876]],[[-0.039430022239685,0.0024247511755675,0.047717493027449],[-0.048800595104694,-0.018073942512274,0.047414399683475],[-0.022264899685979,-0.0026669600047171,0.0047168470919132]],[[0.021104110404849,-0.0324478559196,-0.030988533049822],[0.0060155256651342,0.02767076715827,-0.021888772025704],[0.015676837414503,0.036060877144337,0.029216032475233]],[[0.07556589692831,-0.037018943578005,-0.0098502514883876],[-0.020110882818699,-0.092485398054123,0.031019944697618],[0.042217243462801,0.010543928481638,0.04962719976902]],[[0.066182978451252,-0.088212721049786,0.039447598159313],[0.009009669534862,0.018846236169338,0.018374636769295],[-0.10517106950283,0.033036470413208,0.048764012753963]],[[-0.013870038092136,-0.0084145506843925,0.0064013176597655],[-0.029827868565917,-0.028808886185288,-0.012520559132099],[-0.0099282432347536,0.058838874101639,-0.0042313006706536]],[[0.011610131710768,0.010999231599271,0.021800195798278],[0.03388823568821,0.05690336599946,-0.030812062323093],[0.010893375612795,-0.016307644546032,-0.040237832814455]],[[0.021350830793381,-0.11396596580744,-0.048433009535074],[0.012179304845631,0.10813776403666,-0.00679612159729],[0.058408964425325,0.0025806704070419,0.10223365575075]],[[0.012773215770721,0.0089808367192745,0.017074540257454],[0.02705598808825,0.01871120929718,-0.00031086546368897],[-0.039486911147833,-0.012732729315758,-0.021104730665684]],[[-0.05022245272994,-0.087768018245697,-0.046494610607624],[0.066878706216812,-0.053518783301115,0.013350907713175],[-0.0012474169488996,0.0094072809442878,0.017593063414097]],[[0.003626651596278,-0.039800565689802,0.066489286720753],[-0.035072200000286,-0.065309569239616,0.039748504757881],[0.0044062030501664,-0.11137130856514,0.013940080069005]],[[0.033380229026079,0.0097093414515257,0.10991733521223],[-0.03742216899991,-0.092384785413742,-0.056603197008371],[0.072014763951302,-0.052795346826315,0.0036554245743901]],[[0.0080312257632613,-0.069663435220718,-0.016882678493857],[-0.032444953918457,0.0085585089400411,-0.0076052234508097],[0.021079432219267,0.050753332674503,-0.025210836902261]],[[-0.052174489945173,0.035485785454512,-0.042537033557892],[-0.016150882467628,-0.015884283930063,0.0081903925165534],[0.05804679915309,-0.02374710328877,0.045652344822884]],[[0.031958173960447,-0.023715535178781,-0.0037798369303346],[0.01544611249119,0.016784017905593,-0.00057367148110643],[0.03915624320507,0.043219957500696,-0.066153481602669]],[[0.013467386364937,-0.012816938571632,0.033376306295395],[0.011874795891345,0.014085072092712,0.044590435922146],[-0.0060777007602155,-0.019057061523199,-0.066198252141476]],[[-0.016991058364511,-0.06498745828867,-0.013510456308722],[-0.046896040439606,-0.022198684513569,0.016226287931204],[0.01837545260787,-0.044382162392139,0.011733538471162]],[[-0.098894514143467,0.079591929912567,-0.032596107572317],[-0.0037076363805681,-0.064829923212528,0.12943229079247],[0.086973652243614,-0.034453049302101,-0.016028268262744]],[[-0.064266830682755,-0.0036280287895352,-0.026639306917787],[-0.077204048633575,-0.062363352626562,-0.023636233061552],[0.040592022240162,0.023980319499969,0.0032430505380034]],[[-0.0025422568432987,0.079235926270485,0.033218957483768],[-0.011168966069818,0.00022083928342909,-0.011077152565122],[0.035740826278925,0.012143063358963,0.052893660962582]],[[-0.0040685520507395,0.054702267050743,-0.018056094646454],[-0.054229196161032,0.039463490247726,-0.0033840124960989],[-0.019753180444241,0.060126699507236,0.047598239034414]],[[0.01373475510627,0.057648818939924,0.061109382659197],[-0.10109219700098,-0.030179042369127,0.088944859802723],[-0.016014751046896,-0.030921574681997,-0.0042790868319571]],[[-0.0071604573167861,0.038098126649857,0.069243684411049],[0.02560244128108,-0.058867711573839,-0.043195120990276],[-6.2187842559069e-05,-0.00469900527969,0.019263651221991]],[[0.004646432120353,0.016963349655271,-0.013140420429409],[-0.01777258887887,0.016682207584381,0.015944261103868],[-0.04475349932909,0.0095545751973987,0.01517088804394]],[[-0.051119331270456,-0.023461572825909,-0.055564261972904],[0.098558843135834,0.070776917040348,-0.019512256607413],[-0.029371742159128,0.10287748277187,0.090238004922867]],[[0.024185989052057,-0.098142087459564,0.015775926411152],[0.071968883275986,0.084620878100395,-0.03882047906518],[0.016654452309012,0.020278675481677,0.029038516804576]],[[-0.01444579847157,-0.0065691727213562,-0.090009354054928],[-0.035356987267733,0.06487450748682,0.063954226672649],[-0.041166659444571,0.0059523964300752,0.065457992255688]],[[0.0025045664515346,0.028795348480344,-0.082204654812813],[-0.047712247818708,0.045933850109577,-0.010570394806564],[0.0385487601161,0.027596892789006,-0.02091932669282]],[[0.028218377381563,0.016745211556554,0.037441864609718],[-0.02337115444243,0.0063892626203597,0.016395270824432],[-0.088268995285034,0.0076164943166077,-0.0285529717803]],[[0.027444634586573,0.041698012501001,0.037053134292364],[0.019995482638478,-0.0070637315511703,0.0022820190060884],[-0.015205284580588,-0.019316628575325,-0.0093105752021074]],[[-0.0022503978107125,-0.048541720956564,-0.018918080255389],[-0.051870286464691,0.010181237012148,0.029970202594995],[0.031799700111151,0.017606211826205,-0.022809686139226]],[[-0.013955973088741,0.0049519673921168,0.039200082421303],[-0.008521874435246,0.061544667929411,0.001910756691359],[0.00584158860147,0.054973479360342,-0.024707397446036]],[[0.014097028411925,-0.0046913879923522,0.064637392759323],[-0.060439605265856,0.013538992032409,0.014361736364663],[-0.095139943063259,-0.13157460093498,-0.019862469285727]],[[0.062003139406443,0.023106602951884,0.00089988874970004],[-0.038751937448978,0.043791715055704,0.0078890779986978],[-0.029914842918515,-0.034641075879335,-0.038687285035849]],[[0.023423152044415,-0.0065502002835274,-0.083185017108917],[0.033862750977278,-0.010642433539033,0.062455922365189],[-0.12402877211571,-0.064299523830414,0.020605893805623]],[[-0.054628420621157,0.0098452912643552,-0.00048948655603454],[0.03006793372333,-0.016095507889986,-0.018536046147346],[0.032312881201506,0.024953318759799,-0.058692786842585]],[[-0.032776527106762,-0.0079983752220869,0.026106646284461],[0.117560736835,-0.037364829331636,0.049806676805019],[0.084789201617241,0.05553962662816,0.033830970525742]],[[0.0087757594883442,-0.045627504587173,0.042843677103519],[0.03306407853961,0.060112778097391,0.018109504133463],[-0.044803019613028,-0.06159770861268,-0.02979127317667]],[[0.063137412071228,0.035619761794806,0.03718489408493],[-0.00049947266234085,0.074605412781239,0.020334549248219],[0.054980468004942,0.020275466144085,0.033902231603861]],[[-0.053335774689913,-0.010346757248044,-0.050897188484669],[0.01058532204479,-0.036496471613646,-0.023039374500513],[0.0052135181613266,0.017313443124294,0.0026748282834888]],[[-0.0074420757591724,-0.027700314298272,-0.021404689177871],[0.010341323912144,0.027975600212812,-0.025302933529019],[-0.015922719612718,-0.040657814592123,-0.066471390426159]],[[0.0047273607924581,0.032098677009344,0.0027195096481591],[-0.011409743689001,-0.051564700901508,0.079465992748737],[0.018042013049126,-0.012290807440877,-0.00078488438157365]],[[0.033549763262272,0.047791641205549,-0.034727688878775],[0.062267430126667,0.0016261772252619,-0.0059057851321995],[-0.0082325376570225,-0.032247893512249,0.022212529554963]],[[0.053828157484531,0.031815081834793,0.018885055556893],[-0.098023481667042,0.012819664552808,0.073117479681969],[0.03534296900034,0.0024306799750775,-0.032209265977144]],[[0.052622277289629,0.062019936740398,-0.026178171858191],[0.026997832581401,0.017656462267041,-0.021315783262253],[-0.0094471555203199,0.003414920065552,0.026140419766307]],[[0.011778814718127,0.065188556909561,0.039988059550524],[-0.028977306559682,0.05166694521904,-0.0072097480297089],[-0.076946832239628,-0.0042424998246133,0.038590725511312]],[[-0.013452427461743,-0.024389183148742,-0.021346684545279],[0.026580473408103,-0.06227970123291,0.067667454481125],[-0.002326924353838,0.068509057164192,0.010518949478865]]],[[[0.022848129272461,-0.022588483989239,-0.020184302702546],[0.040876772254705,-0.040723823010921,-0.0032489814329892],[-0.062461219727993,0.038158722221851,-0.016910057514906]],[[-0.022221909835935,-0.015738599002361,-0.0051146899349988],[0.012763662263751,0.025542765855789,-0.030789315700531],[-0.028687657788396,-0.051061570644379,-0.040791310369968]],[[-0.012477279640734,-0.036603856831789,-0.00064257526537403],[0.004992303904146,-0.018424026668072,-0.013246276415884],[0.012457928620279,0.012501233257353,-0.0072640241123736]],[[-0.0042583607137203,-0.0078917192295194,-0.017319910228252],[-0.014356982894242,0.02343949303031,0.00059768790379167],[-0.0081220529973507,-0.060000654309988,0.046038296073675]],[[-0.021998308598995,0.026743143796921,0.055801164358854],[0.0008871789323166,-0.046748854219913,-0.0408137999475],[0.028129881247878,-0.076335579156876,0.063876904547215]],[[-0.062922731041908,-0.053214062005281,0.066886939108372],[-0.068756826221943,0.039445258677006,-0.16610984504223],[0.057232767343521,0.12593974173069,0.048208896070719]],[[-0.026407888159156,-0.031806834042072,-0.051954384893179],[0.012556065805256,0.011058989912271,-0.029223380610347],[0.060084842145443,-0.018014112487435,-0.058429222553968]],[[-0.0070385788567364,-0.050804689526558,-0.043120235204697],[-0.0096898041665554,0.02920663356781,0.071126505732536],[0.073336079716682,0.06614775210619,0.024090254679322]],[[0.001320821698755,-0.03720361739397,-0.040036059916019],[-0.0031551390420645,-0.030762931331992,0.030836507678032],[0.014319534413517,-0.00081800867337734,0.10747451335192]],[[0.054386243224144,-0.035533633083105,-0.055927876383066],[0.0055179791525006,0.0043841651640832,0.026790682226419],[-0.048202898353338,-0.02736802212894,-0.037583757191896]],[[-0.031453523784876,0.0655407756567,0.013808413408697],[-0.032969240099192,-0.029331291094422,0.0021337892394513],[0.06100045889616,-0.0017428232822567,0.034379113465548]],[[-0.039512377232313,-0.025829704478383,-0.056151699274778],[-0.034386921674013,-0.057025339454412,-0.053942244499922],[0.044198654592037,-0.00639987597242,0.047806728631258]],[[0.0012786224251613,-0.0037182059604675,-0.010944340378046],[-0.018550530076027,-0.02230822108686,0.03309553489089],[-0.04003694280982,0.0037770164199173,-0.034477721899748]],[[-0.098912045359612,0.099240601062775,0.025365957990289],[-0.057919651269913,0.033205036073923,0.1176649928093],[-0.080680966377258,0.023752061650157,0.07508846372366]],[[0.003770625917241,0.041945666074753,-0.02151739038527],[0.00035808817483485,-0.13017971813679,0.052251249551773],[0.09482604265213,0.042628616094589,0.051476784050465]],[[-0.021250650286674,0.0098959868773818,-0.024756567552686],[-0.015610061585903,0.030422404408455,0.00039342968375422],[0.091516971588135,0.074636526405811,0.064070351421833]],[[-0.028755016624928,-0.01878571882844,0.045145343989134],[0.05341000109911,-0.0056001073680818,0.00078704248880967],[0.10731119662523,0.08985410630703,0.023687051609159]],[[0.011462355032563,0.044940751045942,0.014986936934292],[-0.030734039843082,0.039492003619671,-0.044354349374771],[0.0083973072469234,-0.03133549913764,-0.0001792772236513]],[[0.01471796259284,0.0034914605785161,0.013632946647704],[-0.049726732075214,0.069396369159222,-0.037533633410931],[-0.022912377491593,-0.044942911714315,-0.0078561091795564]],[[-0.018872132524848,-0.00052755227079615,0.010411499999464],[0.067273259162903,0.030265811830759,0.0084096407517791],[0.052654575556517,0.024195028468966,0.015791403129697]],[[-0.026905110105872,-0.066734440624714,-0.038300096988678],[-0.095824085175991,0.019345935434103,0.0021408873144537],[-0.054897494614124,0.071687459945679,-0.0078893350437284]],[[-0.05462184920907,-0.042262367904186,0.0049476898275316],[-0.0076679768972099,0.041882079094648,0.027656719088554],[0.046776760369539,-0.075536206364632,0.070957757532597]],[[0.01878871396184,0.010144806466997,-0.03575899079442],[-0.0011509628966451,-0.03906274586916,0.0079388190060854],[0.024280840530992,0.012124264612794,-0.019232258200645]],[[0.0065566981211305,-0.041635625064373,-0.04038218781352],[-0.0243927128613,-0.044295504689217,-0.03829438611865],[0.025560762733221,-0.031721726059914,0.049701429903507]],[[-0.00010414881398901,0.041937436908484,0.029439257457852],[0.04143139347434,0.031141947954893,0.069492176175117],[0.038419485092163,-0.0015290275914595,0.0036420673131943]],[[0.0066372384317219,-0.014958078041673,-0.055169366300106],[0.024426052346826,-0.029607469215989,-0.024014871567488],[0.025225846096873,-0.018381990492344,-0.068190522491932]],[[-0.1187732219696,-0.068623527884483,0.010752345435321],[-0.038595415651798,-0.030598532408476,-0.038785509765148],[0.00098131457343698,-0.0033085856121033,0.015311049297452]],[[0.068839848041534,0.020188506692648,-0.069954216480255],[0.010621743276715,-0.04377031698823,-0.054093200713396],[-0.012640602886677,-0.11249452829361,-0.00063719478202984]],[[-0.053958527743816,0.037730656564236,0.022196557372808],[0.023711077868938,-0.0072528924793005,0.022104419767857],[-0.014171987771988,-0.039087969809771,0.040444284677505]],[[-0.069864884018898,0.010812475346029,0.072675704956055],[-0.032688483595848,-0.02339474670589,-0.002206854056567],[-0.015187776647508,0.02024563588202,-0.0064069321379066]],[[0.0095701785758138,-0.0355464220047,0.031348954886198],[-0.021212320774794,-0.015031435526907,0.054140347987413],[0.062622971832752,-0.078077480196953,-0.024343566969037]],[[-0.052376687526703,-0.0062359594739974,-0.028723331168294],[-0.022701270878315,-0.042646024376154,0.011466400697827],[0.028692031279206,0.0061664758250117,-0.028096111491323]],[[0.027176404371858,0.020515395328403,0.019346248358488],[0.0049016722477973,0.036091364920139,-0.043429896235466],[0.0040681166574359,0.036161277443171,-0.0052631702274084]],[[0.010609178803861,-0.036808494478464,-0.062610469758511],[-0.003258096287027,0.033042054623365,-0.05685693025589],[0.057934675365686,0.022273192182183,0.0055264821276069]],[[0.047290969640017,-0.0060940240509808,-0.003525486914441],[0.035593654960394,0.035927996039391,0.027315557003021],[0.057044859975576,0.00096005282830447,-0.046970658004284]],[[-0.011968355625868,0.0076201925985515,-0.03515987098217],[0.011892101727426,-0.051227439194918,0.071450456976891],[0.034008305519819,-0.056957799941301,-0.046836916357279]],[[0.0026771805714816,0.028343191370368,-0.051566038280725],[-0.038831993937492,-0.010951357893646,0.0035654278472066],[-0.013103753328323,0.0050582117401063,0.019846552982926]],[[-0.015095970593393,0.038495544344187,0.022204102948308],[-0.023498985916376,-0.01937816850841,0.02847733721137],[0.020654462277889,0.0093437815085053,-0.04128785431385]],[[-0.0004665031156037,-0.045173786580563,0.0074297459796071],[-0.0056143817491829,-0.030665960162878,-0.11170632392168],[0.060451127588749,0.0078009171411395,-0.044838599860668]],[[-0.046889312565327,-0.0060748946852982,0.028776280581951],[0.042420919984579,-0.026780337095261,-0.036661859601736],[0.01358535233885,0.033301968127489,-0.024758400395513]],[[-0.032677575945854,-0.033189263194799,0.025013361126184],[0.049506977200508,-0.025167910382152,-0.048417508602142],[0.018069857731462,0.060367058962584,-0.025018285959959]],[[-0.031295713037252,0.0016144736437127,0.018460489809513],[0.039846364408731,-0.00077084713848308,0.0037729400210083],[0.033191662281752,0.0028601246885955,0.020452713593841]],[[-0.084517389535904,-0.020376151427627,0.026281731203198],[-0.037163238972425,0.044422458857298,0.058770902454853],[0.062786519527435,0.03430662676692,0.065364643931389]],[[0.016121491789818,-0.02714584954083,-0.024365721270442],[-0.098790019750595,-0.062191922217607,-0.029967442154884],[-0.02117152698338,-0.0059649152681231,0.0047961692325771]],[[0.016860349103808,0.013066840358078,0.017012447118759],[-0.073946371674538,-0.023583333939314,0.094629049301147],[-0.028514677658677,0.020849572494626,0.07495241612196]],[[-0.056312929838896,0.031641121953726,-0.0085496157407761],[-0.009334254078567,-0.030048787593842,0.027072621509433],[-0.00025299825938419,-0.029750438407063,-0.020540362223983]],[[0.090928010642529,0.055385950952768,-0.012628152966499],[0.017515636980534,-0.037306848913431,0.0029225756879896],[0.063336454331875,0.02176322042942,-0.021508205682039]],[[0.034352160990238,-0.038952849805355,0.00086166267283261],[0.075429812073708,0.04387404024601,0.037752471864223],[0.026938578113914,0.060220170766115,0.060215376317501]],[[0.040042389184237,-0.038508143275976,-0.04002495855093],[0.002677834359929,-0.02806393429637,-0.025712857022882],[0.038403458893299,-0.090147398412228,-0.090918831527233]],[[0.014097365550697,-0.083294108510017,-0.030969565734267],[-0.055826980620623,0.062907502055168,-0.088371500372887],[-0.046379704028368,-0.048473101109266,-0.021347405388951]],[[0.021608164533973,-0.028092697262764,0.02089555375278],[-0.041677009314299,0.040539089590311,0.013455255888402],[0.014545137993991,-0.015160894021392,-0.016174143180251]],[[-0.0024216927122325,0.059127207845449,-0.022308941930532],[0.045458629727364,0.083549730479717,0.052941720932722],[-0.020526830106974,0.05806252732873,-0.045076955109835]],[[-0.057519197463989,0.021736957132816,-0.028956405818462],[0.046436183154583,-0.019282873719931,-0.030717285349965],[-0.018371013924479,-0.026606373488903,-0.014247146435082]],[[0.07123726606369,0.073153108358383,-0.018229285255075],[0.0066754412837327,0.10460951179266,0.096436686813831],[-0.065980978310108,0.0095665734261274,0.079922497272491]],[[0.074913807213306,-0.0021851765923202,0.031637314707041],[0.058405760675669,-0.0023827461991459,-0.070389397442341],[0.021022060886025,-0.028670700266957,-0.0064016478136182]],[[-0.0051629836671054,-0.072705782949924,-0.0079545006155968],[0.031711369752884,0.0033084941096604,0.017521446570754],[-0.016908099874854,0.00060164497699589,-0.017767138779163]],[[-0.028918333351612,-0.0067847417667508,-0.052728418260813],[-0.043963253498077,-0.038573071360588,-0.027469327673316],[-0.023986075073481,-0.032286673784256,0.010405196808279]],[[-0.0093947993591428,-0.017903843894601,0.036285992711782],[0.016265263780951,-0.013295764103532,0.0012763494160026],[-0.006348293274641,-0.028765723109245,-0.018505785614252]],[[-0.049524459987879,-0.1126805767417,-0.0075677307322621],[-0.01164108607918,0.0059743793681264,0.01230501756072],[0.01507599838078,0.022358365356922,0.039921574294567]],[[0.039978593587875,0.051847498863935,0.033367268741131],[0.0036138172727078,-0.0058883824385703,0.033468943089247],[-0.064060673117638,-0.017213327810168,0.020911663770676]],[[0.058352548629045,0.036098267883062,0.0027901150751859],[0.032725650817156,0.035710591822863,0.023161813616753],[-0.0083701675757766,0.059542927891016,0.010204575024545]],[[0.028331253677607,0.040645580738783,0.010541361756623],[-0.025980556383729,0.0046648173592985,0.0046065510250628],[-0.0056167533621192,-0.013985071331263,0.021359954029322]],[[0.0089976601302624,0.0098770605400205,-0.028921589255333],[-0.040996845811605,0.040404688566923,-0.066584281623363],[0.00077517714817077,-0.038798872381449,0.01426890771836]],[[0.00192312290892,-0.023301973938942,-0.01104446221143],[0.01850270666182,-0.0017434488981962,0.017272280529141],[-0.031375743448734,-0.035338412970304,0.057595204561949]]],[[[0.0011741002090275,-0.090601041913033,0.022251995280385],[-0.012035095132887,0.057425800710917,-0.039840307086706],[0.0090363631024957,0.022016823291779,-0.016821233555675]],[[-0.028237191960216,-0.057165145874023,0.061586365103722],[0.01594184152782,-0.018816862255335,-0.0016443729400635],[0.012753685936332,-0.088637329638004,-0.04262962564826]],[[0.027397779747844,-0.011389586143196,-0.0054470403119922],[0.02971370331943,0.020904775708914,-0.071384824812412],[0.088931240141392,0.018063236027956,0.013733685016632]],[[-0.037945590913296,-0.079129971563816,0.027881322428584],[0.071647375822067,0.063989751040936,-0.070935614407063],[-0.065887741744518,-0.015105394646525,-0.043616831302643]],[[0.046943921595812,0.046870678663254,0.06217247620225],[0.025982918217778,0.0035673659294844,-0.12866623699665],[-0.034634385257959,0.0079580191522837,-0.0033015499357134]],[[0.01968820951879,0.032207239419222,-0.056222591549158],[-0.054303538054228,0.065898157656193,-0.027776051312685],[0.047975886613131,0.10312284529209,-0.060415714979172]],[[-0.040824122726917,-0.034697759896517,-0.041463054716587],[0.0038338960148394,0.009590026922524,0.038697030395269],[-0.012694631703198,-0.020289314910769,-0.062380637973547]],[[-0.020265867933631,0.043698083609343,-0.071442976593971],[-0.080104738473892,-0.0035031549632549,0.0062980898655951],[-0.021921800449491,0.058339584618807,0.081619411706924]],[[-0.1303273588419,-0.0071032564155757,-0.057476975023746],[-0.061303935945034,0.023971538990736,0.11990286409855],[0.0045310468412936,0.005181479267776,-0.087943874299526]],[[-0.0084982514381409,-0.009925115853548,-0.054005932062864],[-0.029841605573893,-0.0086520938202739,0.075375311076641],[-0.049400925636292,0.014958515763283,-0.19141571223736]],[[-0.027293836697936,-0.023041354492307,0.06447684019804],[-0.067487441003323,-0.075362406671047,0.063137277960777],[0.0075684837065637,0.13807249069214,0.074990667402744]],[[0.17976221442223,0.093124032020569,0.074468143284321],[-0.019077861681581,0.02735230140388,0.010185437276959],[0.10714995861053,0.028829554095864,0.099195666611195]],[[-0.035378314554691,0.02127962000668,-0.043075334280729],[0.02590431086719,0.08160562813282,-0.0021676765754819],[0.078762412071228,0.03536669164896,-0.019999602809548]],[[-0.053451094776392,0.11535934358835,-0.052811179310083],[0.0051312390714884,-0.048191010951996,-0.058726914227009],[0.10023538023233,0.077621094882488,-0.0021477174013853]],[[0.0051792366430163,0.012479248456657,-0.1067508533597],[0.012448010966182,-0.0040930490940809,0.0392080321908],[-0.052057929337025,0.1079517826438,-0.078094437718391]],[[-0.11513783782721,0.19476465880871,-0.112129740417],[0.045279990881681,0.093665257096291,-0.0078156376257539],[-0.048654198646545,0.0068136313930154,-0.056997120380402]],[[0.038486566394567,0.0102100931108,-0.021964190527797],[0.019767889752984,0.027745719999075,-0.026073014363647],[-0.028045093640685,-0.011528972536325,0.031170599162579]],[[-0.063436724245548,0.0031999140046537,-0.040584456175566],[0.015580176375806,0.014815301634371,0.045535255223513],[-0.034324888139963,-0.026582222431898,-0.077961228787899]],[[0.022391606122255,0.0019563098903745,0.05597060546279],[-0.040818341076374,0.070881180465221,-0.044250048696995],[0.030161563307047,-0.0091325109824538,-0.061930436640978]],[[-0.0083209574222565,0.022047288715839,0.017974512651563],[-0.068740352988243,-0.05114658921957,-0.12118076533079],[-0.081575453281403,-0.06424617767334,0.10052713751793]],[[0.048636823892593,0.0036700726486742,-0.024225946515799],[-0.03760439530015,0.0457395426929,0.019372904673219],[0.15704067051411,0.016893172636628,-0.051512751728296]],[[-0.028096182271838,-0.024266954511404,-0.0083312168717384],[0.076504416763783,0.074050605297089,0.014866721816361],[-0.031106417998672,0.050747234374285,-0.0011207009665668]],[[-0.02259055711329,-0.0028221623506397,0.042435694485903],[-0.055166132748127,0.0689302906394,0.045401308685541],[-0.037528734654188,-0.032776299864054,-0.026400336995721]],[[-0.0027316224295646,0.026790138334036,-0.071258865296841],[0.0087709287181497,-0.049205660820007,0.062364041805267],[0.019435429945588,0.033198174089193,0.10602133721113]],[[0.12071148306131,0.017699899151921,0.06998298317194],[-0.0694415345788,-0.023638937622309,-0.039912719279528],[0.037353627383709,0.075202964246273,-0.02807579189539]],[[-0.03677324205637,-0.055603809654713,-0.037367325276136],[0.017165884375572,-0.041489537805319,-0.025328097864985],[0.039993114769459,-0.010490717366338,0.0023910100571811]],[[0.046493675559759,0.088671199977398,-0.015993610024452],[0.0077478475868702,-0.014465627260506,-0.10088405758142],[-0.031431026756763,0.095007814466953,-0.018487064167857]],[[-0.13324834406376,0.056580029428005,0.072865553200245],[-0.030686547979712,0.079185672104359,0.090594597160816],[-0.013182115741074,0.041975162923336,0.05037984624505]],[[-0.024447955191135,-0.05482017621398,0.050074845552444],[0.046093836426735,0.0020353398285806,0.11207780987024],[0.035067345947027,-0.064223371446133,-0.026320783421397]],[[-0.065082460641861,-0.070992395281792,0.020781980827451],[-0.013935898430645,-0.10861667990685,-0.046017710119486],[-0.063396416604519,-0.028592154383659,-0.027804266661406]],[[0.023296732455492,-0.023098323494196,0.082095764577389],[-0.0020601837895811,-0.038516137748957,-0.13480979204178],[-0.04767007753253,-0.037066742777824,0.07449758797884]],[[0.027351975440979,-0.038481131196022,0.01167050562799],[0.170255869627,-0.097002670168877,0.16267842054367],[-0.098742924630642,-0.046906754374504,-0.062864981591702]],[[-0.083738915622234,-0.016434092074633,-0.062686122953892],[0.13103461265564,0.054502815008163,-0.0044035608880222],[-0.057366233319044,-0.0093055721372366,0.033850621432066]],[[0.020798670127988,-0.018434951081872,0.097028158605099],[-0.058611456304789,-0.034150585532188,0.045891612768173],[-0.042919360101223,-0.015000361949205,0.036558102816343]],[[-0.063797518610954,-0.08650304377079,-0.10929949581623],[0.041258566081524,0.12492741644382,0.11318372189999],[-0.029407538473606,-0.1291097253561,-0.026890205219388]],[[-0.015594728291035,-0.0064328606240451,-0.010561365634203],[0.011450038291514,-0.12619288265705,-0.12779708206654],[-0.01564322039485,-0.10812235623598,-0.040145587176085]],[[-0.024960231035948,0.014804279431701,-0.067065119743347],[0.17736576497555,-0.046846155077219,0.12397224456072],[0.031064681708813,-0.073864005506039,-0.023461760953069]],[[0.071812525391579,-0.046479903161526,0.0025121832732111],[-0.0092001492157578,0.10125416517258,0.011392282322049],[-0.067238762974739,-0.035558842122555,-0.12376126646996]],[[0.05866926908493,-0.056321304291487,0.17343856394291],[-0.056078620254993,-0.099471747875214,-0.057834144681692],[0.078635543584824,-0.08704948425293,0.11750061810017]],[[0.026653500273824,0.071407198905945,-0.0057800258509815],[-0.048352360725403,0.0068089999258518,-0.038850329816341],[0.058817215263844,0.004963899962604,-0.016009259968996]],[[0.018597260117531,-0.071960307657719,0.13188309967518],[0.005939413793385,0.078403517603874,-0.07209424674511],[-0.04554707929492,-0.081414639949799,0.056849107146263]],[[0.06787121295929,0.014210847206414,0.012884634546936],[0.044041316956282,-0.21676699817181,-0.077754974365234],[0.074434578418732,0.013875769451261,0.043149530887604]],[[-0.036115605384111,-0.013459109701216,-0.034129474312067],[-0.023980991914868,-0.00067689002025872,-0.07144720107317],[0.077899627387524,-0.11114892363548,0.027334010228515]],[[-0.068215109407902,-0.10468342900276,-0.11119455844164],[0.003469048300758,-0.062114711850882,0.031294997781515],[-0.011251492425799,-0.036493688821793,-0.061910402029753]],[[0.082068085670471,-0.18317483365536,0.0012064328184351],[-0.02606387808919,-0.0013970269355923,0.12496316432953],[0.08594886213541,-0.14235958456993,0.043203569948673]],[[0.034554898738861,0.015769448131323,0.027747137472034],[-0.025200402364135,-0.07475583255291,-0.057769358158112],[0.0095761101692915,0.032325960695744,-0.083091624081135]],[[0.024281417950988,0.015090505592525,0.0010102909291163],[-0.05440616980195,0.014683880843222,-0.054259825497866],[0.14654837548733,-0.043360844254494,-0.018700212240219]],[[-0.049319494515657,-0.075338311493397,-0.003988228738308],[-0.038067992776632,0.064808025956154,-0.0050484449602664],[0.0087765036150813,-0.0010132401948795,-0.068002499639988]],[[-0.012773808091879,0.046715892851353,0.15273134410381],[-0.12785083055496,-0.054129354655743,0.023619739338756],[0.077869743108749,-0.086000718176365,0.13881781697273]],[[0.043019454926252,0.015596113167703,0.0053635975345969],[0.073322355747223,-0.035832233726978,0.0047272350639105],[0.020148040726781,0.031479053199291,-0.0082833282649517]],[[0.034531693905592,-0.063409604132175,0.0033688340336084],[0.041416861116886,0.07253360003233,0.044153857976198],[0.08788725733757,-0.031120710074902,0.091487303376198]],[[-0.013703060336411,0.025072459131479,0.013816787861288],[-0.056531049311161,-0.00813930016011,0.027490317821503],[-0.0068817506544292,-0.0029344556387514,-0.059825703501701]],[[-0.024791810661554,-0.13157637417316,0.0052176644094288],[-0.15808457136154,-0.037643071264029,-0.0023302643094212],[-0.041371189057827,-0.072343535721302,-0.052817348390818]],[[0.12724570930004,-0.04787340387702,0.078702636063099],[-0.0046006347984076,0.0088452827185392,0.051572050899267],[0.11576492339373,0.079406432807446,0.1423536837101]],[[0.0029317687731236,0.10791362076998,0.04758832603693],[-0.030948529019952,-0.085912011563778,-0.017919996753335],[-0.028342112898827,0.13574613630772,-0.0058636697940528]],[[0.017963713034987,-0.011226754635572,-0.038125958293676],[-0.052425388246775,0.0027126888744533,-0.054176520556211],[-0.071681246161461,0.083409629762173,-0.052855115383863]],[[-0.058786317706108,-0.068903625011444,0.034441754221916],[-0.035504013299942,-0.1471506357193,0.10151249170303],[-0.044233627617359,0.09094549715519,0.010653160512447]],[[-0.051634445786476,-0.0038688031490892,-0.11908131837845],[0.026493335142732,0.032910831272602,-0.012870579957962],[-0.095343627035618,-0.034507319331169,-0.1460953950882]],[[0.086427733302116,-0.1136879324913,0.069367751479149],[-0.029031071811914,0.059516951441765,0.02109751291573],[0.016943484544754,-0.057679358869791,0.034342274069786]],[[0.033502981066704,0.022969657555223,-0.019407251849771],[-0.010365975089371,0.006827246863395,-0.067634433507919],[0.036215294152498,0.022131890058517,0.053078707307577]],[[0.013593563809991,0.034070406109095,0.15968100726604],[-0.085421167314053,0.053470958024263,-0.126598700881],[-0.08051224052906,0.015260700136423,-0.019215386360884]],[[-0.037408150732517,-0.042730584740639,-0.035118069499731],[0.037313722074032,-0.09220315515995,0.10114566236734],[-0.050347276031971,-0.0066781928762794,0.040294848382473]],[[-0.021783236414194,0.0082704201340675,0.0073002767749131],[0.17067921161652,-0.088909521698952,0.097371838986874],[-0.037153992801905,0.0026435251347721,-0.1933481991291]],[[-0.008652918972075,-0.089834429323673,0.11387384682894],[0.10560765862465,-0.051364663988352,0.059319283813238],[0.094181925058365,-0.12248254567385,0.058556575328112]]],[[[-0.065141446888447,0.077009990811348,-0.12181871384382],[0.019727658480406,0.016746988520026,-0.060302045196295],[0.04851620644331,-0.011462981812656,0.047791995108128]],[[-0.08160437643528,-0.16452407836914,-0.1316162198782],[0.014603231102228,0.031342387199402,-0.024498840793967],[-0.049509823322296,-0.068926744163036,-0.065523236989975]],[[-0.018403658643365,-0.045015849173069,-0.080224774777889],[-0.03941447660327,0.028562741354108,-0.01303266081959],[0.022846659645438,0.0014715068973601,-0.0059581119567156]],[[0.0084217162802815,0.011977424845099,-0.028128828853369],[0.014378417283297,0.043186742812395,0.083857879042625],[0.03943894430995,0.04819867759943,0.065050765872002]],[[-0.062922894954681,-0.010993746109307,-0.0035272769164294],[-0.04532378166914,0.027227006852627,-0.044719539582729],[-0.018444068729877,-0.061734840273857,-0.0088139018043876]],[[0.011902597732842,0.19781075417995,-0.082427471876144],[-0.03462802991271,-0.018993195146322,-0.07409480214119],[-0.072114236652851,-0.1044672653079,-0.082513064146042]],[[0.032126359641552,0.015018654987216,-0.020262898877263],[-0.038622744381428,0.011282807216048,0.002830965211615],[0.027621150016785,-0.043589927256107,-0.039682921022177]],[[-0.0077541409991682,-0.0035098693333566,-0.016174567863345],[0.039728425443172,-0.13509024679661,0.034076832234859],[-0.077985629439354,0.021578507497907,0.0071493280120194]],[[0.065515495836735,0.1041165292263,-0.084539018571377],[0.048200119286776,-0.01613362878561,0.029225714504719],[-0.011140743270516,0.10224921256304,0.043936803936958]],[[-0.17124021053314,0.072356909513474,-0.031359866261482],[0.0044787754304707,0.010737247765064,-0.063490115106106],[-0.039475470781326,0.017234202474356,0.040964841842651]],[[0.044614024460316,-0.071134112775326,0.043603263795376],[-0.17054651677608,-0.059576250612736,0.040643349289894],[0.026842255145311,-0.048814557492733,0.0010291158687323]],[[-0.0076182335615158,0.037614315748215,-0.031792003661394],[-0.0023608112242073,0.0072990567423403,0.021964155137539],[-0.029057905077934,-0.0072724078781903,-0.022957952693105]],[[-0.050729997456074,-0.14777502417564,0.0081671541556716],[-0.14127112925053,-0.014901439659297,-0.122429035604],[-0.08182929456234,0.022834818810225,-0.014633453451097]],[[0.091565541923046,0.056816980242729,-0.017757326364517],[0.087365306913853,0.085782125592232,0.0012152992421761],[0.087019629776478,0.0049918056465685,-0.017231775447726]],[[0.026724671944976,-0.030473105609417,0.046175014227629],[-0.13942225277424,0.022591141983867,0.0068733613006771],[0.014512246474624,0.047416381537914,-0.024901073426008]],[[-0.031843844801188,0.052915848791599,-0.064112387597561],[0.04461120814085,-0.028450053185225,-0.085117772221565],[-0.0054052141495049,0.019480746239424,-0.040426831692457]],[[0.008102179504931,-0.025525229051709,-0.016344454139471],[0.0059594279155135,-0.0098790638148785,-0.010991457849741],[-0.040941663086414,0.022475650534034,-0.065774165093899]],[[-0.0099509879946709,0.0094377128407359,0.01876482181251],[-0.037170361727476,0.0065011894330382,0.011500900611281],[0.0085715791210532,-0.056336272507906,0.040975283831358]],[[-0.032425925135612,-0.054558396339417,-0.0085238879546523],[-0.010515075176954,0.02226272597909,0.0022512159775943],[0.010491011664271,-0.0034138679038733,0.021967483684421]],[[-0.019014183431864,0.071726486086845,0.095529325306416],[0.017840849235654,0.0087163997814059,0.00097418430959806],[0.035059377551079,0.066283255815506,-0.026832779869437]],[[0.059213913977146,-0.036100514233112,0.044095687568188],[0.041563116014004,0.046315416693687,0.021886065602303],[-0.038790248334408,0.044055938720703,0.050374802201986]],[[0.093130186200142,-0.066712349653244,0.016863826662302],[0.12014769017696,-0.081868268549442,0.057284016162157],[-0.055749963968992,-0.057554498314857,0.077112659811974]],[[0.0026141467969865,0.013601724989712,0.013500463217497],[-0.034472525119781,-0.011554656550288,0.04877346009016],[-0.020379286259413,-0.012896996922791,0.013993639498949]],[[0.032826080918312,0.024727918207645,0.098694019019604],[0.0028072497807443,0.041605349630117,0.059289764612913],[0.025496682152152,-0.0032243174500763,0.019156062975526]],[[0.074176304042339,0.021059315651655,-0.0019601145759225],[-0.0018912983359769,-0.076429836452007,0.029640581458807],[-0.11488476395607,0.002345482353121,0.032733533531427]],[[-0.10894396156073,-0.095708690583706,-0.11721085011959],[0.027953110635281,-0.094033002853394,-0.09767509996891],[-0.10607128590345,-0.11476339399815,0.0073620723560452]],[[0.01263979729265,0.020387940108776,0.10701345652342],[0.081668429076672,0.053242839872837,-0.012960721738636],[0.026707330718637,0.1183830499649,0.020661449059844]],[[-0.091007180511951,0.019499199464917,0.050354793667793],[0.046195741742849,0.057374633848667,-0.018467132002115],[-0.044550303369761,-0.024088410660625,-0.090337172150612]],[[0.018355388194323,-0.023372743278742,0.0096082827076316],[0.071514338254929,-0.019336171448231,-0.072136096656322],[0.0056606931611896,-0.016631484031677,0.011338035576046]],[[-0.030338898301125,-0.074667878448963,-0.0052578523755074],[0.073064394295216,-0.074297346174717,0.0086487075313926],[-0.0019769670907408,-0.020323844626546,0.012323740869761]],[[-0.022643566131592,-0.1706316024065,-0.0756825953722],[-0.061480302363634,-0.05768733471632,-0.010375662706792],[-0.024050008505583,-0.057024724781513,0.014393844641745]],[[0.066974803805351,0.18183022737503,0.00028407422360033],[0.01032324321568,0.086638689041138,-0.079730071127415],[0.076638333499432,-0.016389979049563,0.042937841266394]],[[0.011401357129216,-0.056128315627575,0.076844587922096],[-0.12403868883848,0.025767855346203,0.040246278047562],[0.032345447689295,0.028554731979966,0.075565710663795]],[[-0.032968532294035,0.14397950470448,0.014794298447669],[-0.12487234920263,-0.097457706928253,-0.0060027251020074],[-0.074723236262798,0.013632940128446,0.058870237320662]],[[0.052412673830986,-0.013413100503385,-0.13111470639706],[0.010051709599793,-0.065716631710529,-0.075654596090317],[-0.12403512001038,-0.042213652282953,0.038282368332148]],[[0.062156517058611,0.0084591498598456,0.0054446305148304],[0.04394669085741,-0.044485297054052,0.012012102641165],[-0.0014421450905502,-0.039453949779272,0.013711276464164]],[[-0.015866240486503,0.065063029527664,-0.098387658596039],[0.0016333502717316,0.014947198331356,-0.029478963464499],[0.047953806817532,0.037411894649267,0.06456071138382]],[[0.11035843938589,0.049386996775866,0.052746191620827],[0.15492127835751,-0.13643774390221,0.040312778204679],[-0.026578318327665,-0.067595295608044,0.12949967384338]],[[-0.074984543025494,0.037347439676523,0.077900692820549],[-0.0045392354950309,0.051411267369986,-0.01940156519413],[-0.017337650060654,0.069518491625786,-0.0079550668597221]],[[-0.015686810016632,0.016163071617484,0.053610324859619],[-0.021985974162817,-0.0082875108346343,0.023986328393221],[0.014048082754016,0.064150549471378,-0.12986934185028]],[[-0.057380672544241,-0.0006947256042622,0.065791383385658],[0.010080518200994,-0.0074215247295797,-0.033781513571739],[0.036419972777367,-0.062953770160675,-0.015401134267449]],[[0.038674555718899,-0.0026722478214651,-0.038380179554224],[-0.0038451149594039,0.041727788746357,0.0022294772788882],[0.0068141226656735,0.011092299595475,-0.0096551803871989]],[[0.013630685396492,0.07770100235939,0.029986653476954],[-0.028972389176488,0.047499511390924,-0.07857733219862],[-0.041341617703438,-0.048777401447296,0.023660629987717]],[[0.12159565836191,0.080928318202496,0.05143766477704],[-0.054465632885695,0.015518458560109,0.036746598780155],[-0.076671689748764,-0.046050045639277,0.041505005210638]],[[-0.097433395683765,-0.18250966072083,-0.060525722801685],[-0.13660532236099,-0.035001341253519,0.050031468272209],[-0.079457804560661,0.024228695780039,0.00020870269509032]],[[-0.022343268617988,0.014999589882791,0.11881940811872],[0.038420185446739,-0.014095799066126,0.018287010490894],[0.016205474734306,0.0085246684029698,-0.057287223637104]],[[-0.032602213323116,0.071123369038105,0.010640456341207],[0.031973510980606,0.027992123737931,-0.018944445997477],[0.082783661782742,-0.030680648982525,-0.029385572299361]],[[-0.044885147362947,-0.11377374082804,-0.039952453225851],[-0.056096974760294,-0.051365070044994,-0.0042351996526122],[-0.11875031888485,-0.016275182366371,0.0068244677968323]],[[0.010493508540094,-0.047962881624699,-0.067290596663952],[0.018529567867517,0.031436428427696,-0.02665058337152],[0.089688844978809,-0.071813322603703,0.039454761892557]],[[-0.056955553591251,-0.014012918807566,0.1221946105361],[-0.026070458814502,0.13108152151108,0.012706497684121],[0.015315317548811,0.060172159224749,0.0099816899746656]],[[-0.00019499877816997,0.00094793445896357,0.01077891048044],[-0.0091361869126558,-0.020205674692988,-0.030581681057811],[0.0079473629593849,0.0093796765431762,-0.017212064936757]],[[-0.023728176951408,0.064694680273533,-0.075151324272156],[-0.043919384479523,0.03261873498559,0.0061449808999896],[0.007955395616591,0.011270152404904,0.04467249661684]],[[-0.0013755125692114,-0.075461313128471,-0.044328205287457],[-0.082906551659107,-0.080382689833641,-0.022430969402194],[-0.099860012531281,0.0067750955931842,-0.023484662175179]],[[0.061964321881533,0.052654754370451,0.091217562556267],[0.094863757491112,0.081911064684391,0.039116788655519],[0.093613661825657,0.067600347101688,0.022414634004235]],[[-0.13056267797947,0.075372569262981,0.087204746901989],[0.013220656663179,0.037054140120745,-0.13618968427181],[0.0061248978599906,-0.1293028742075,0.013812063261867]],[[-0.0059960214421153,-0.096252590417862,-0.10481867939234],[-0.045681107789278,0.0015356480143964,-0.0050058299675584],[-0.055390547960997,-0.057146489620209,0.011027806438506]],[[0.044141724705696,0.077019460499287,0.034367881715298],[0.090817019343376,-0.02336298301816,0.044440656900406],[0.041250694543123,-0.012009255588055,0.090786308050156]],[[-0.015251580625772,0.050983279943466,0.013280547223985],[-0.0029308907687664,0.034049361944199,-0.018133696168661],[0.0028184445109218,-0.050578467547894,-0.065437003970146]],[[0.0078498544171453,0.0096926540136337,0.086706854403019],[-0.024731425568461,0.0061877286061645,0.0020222165621817],[0.023882472887635,-0.07260650396347,-0.03317429125309]],[[-0.017289239913225,0.019807200878859,-0.010658731684089],[0.066359207034111,0.010226155631244,-0.00027773636975326],[0.021218730136752,-0.013138270936906,0.027061440050602]],[[0.067515052855015,0.031572561711073,0.088254652917385],[0.023900840431452,0.031788051128387,-0.013532257638872],[0.0068607088178396,0.12012579292059,0.0041606617160141]],[[-0.0046070502139628,0.1071278527379,-0.047775402665138],[0.011385736986995,0.004651403054595,-0.030138680711389],[-0.022117339074612,0.01953411847353,-0.038412325084209]],[[-0.014028113335371,0.078416436910629,-0.11491961032152],[0.034888155758381,0.031052459031343,-0.0042843404226005],[-0.052122909575701,-0.005509409122169,-0.050414863973856]],[[-0.0075207753106952,0.047897893935442,0.053717758506536],[-0.031818576157093,-0.0054581821896136,-0.13558386266232],[-0.03194622322917,0.097438149154186,-0.096492819488049]]],[[[0.021462405100465,0.002514896215871,0.0695970505476],[0.072439692914486,-0.06759162992239,0.0055872374214232],[-0.06316314637661,0.020781660452485,-0.0016190784517676]],[[-0.039750903844833,-0.039982710033655,-0.0043340367265046],[0.018103521317244,0.021969817578793,0.006951164919883],[-0.046394072473049,-0.016270970925689,-0.041304651647806]],[[0.0069439918734133,-0.07633139193058,0.0060316435992718],[-0.020677622407675,0.022742690518498,-0.042221426963806],[0.0071588773280382,0.018130315467715,-0.071523934602737]],[[0.030176557600498,-0.038050446659327,-0.019967583939433],[0.019435422495008,-0.03902168571949,-0.048840459436178],[0.038749720901251,-0.082988619804382,0.021756255999207]],[[0.031921524554491,-0.021100388839841,-0.075093798339367],[0.0049281446263194,-0.015475663356483,-0.00016918388428167],[0.0091284550726414,0.051225949078798,0.044257704168558]],[[-0.039155285805464,-0.015310317277908,-0.011777552776039],[0.061366330832243,-0.012706046923995,-0.092128127813339],[-0.02301512658596,0.037827480584383,-0.0064369398169219]],[[-0.051911316812038,0.060689948499203,-0.0024497397243977],[-0.027804287150502,0.045813281089067,0.023678123950958],[0.025797976180911,0.025320630520582,0.061109714210033]],[[0.014781501144171,-0.021415781229734,0.0056916023604572],[-0.047241546213627,-0.039366316050291,0.03599114716053],[-0.067597240209579,-0.011909853667021,-0.077161438763142]],[[-0.091023735702038,-0.045583751052618,-0.0086878715083003],[0.077391549944878,-0.043328698724508,0.019512075930834],[-0.0037876137066633,-0.048057522624731,-0.034547112882137]],[[0.036484692245722,-0.041341803967953,-0.0002459685492795],[0.0011364197125658,0.046814016997814,-0.003503720741719],[0.013196763582528,0.013314697891474,0.016528908163309]],[[-0.034376736730337,0.078237988054752,-0.0087674586102366],[-0.051738522946835,-0.027662152424455,0.064979828894138],[0.024666568264365,0.00053807569202036,-0.011525646783412]],[[-0.036955397576094,-0.11229369789362,-0.0014613275416195],[0.019927220419049,0.056485984474421,0.036540634930134],[0.031626861542463,0.035305682569742,0.076764538884163]],[[-0.026515867561102,0.029217010363936,-0.029218733310699],[-0.010516660287976,-0.015454459935427,-0.019661366939545],[-0.077300406992435,0.029050441458821,-0.012838535010815]],[[0.023225467652082,-0.039633076637983,0.050103057175875],[0.088484883308411,0.077955439686775,-0.0065581169910729],[0.033450122922659,0.033075269311666,0.019789522513747]],[[-0.03075734525919,-0.028181079775095,-0.002143198158592],[-0.057771034538746,0.013639139942825,-0.011845840141177],[-0.052991133183241,0.022206157445908,0.050469364970922]],[[-0.011869828216732,-0.035316906869411,-0.015574096702039],[-0.023501208052039,-0.004696948453784,0.027820827439427],[-0.0010050534037873,0.01386484503746,0.059252865612507]],[[0.051638629287481,0.010655542835593,0.016327356919646],[0.0065036676824093,0.0094055999070406,0.0050465818494558],[0.079747468233109,0.0057103172875941,0.058757912367582]],[[0.0031991212163121,-0.0008884763228707,-0.0034645677078515],[-0.020408323034644,0.033915147185326,-0.024653702974319],[-0.065104052424431,-0.05901999771595,0.022565068677068]],[[-0.00027746229898185,-0.08631157130003,-0.032135877758265],[0.030708370730281,0.027252733707428,-0.012804378755391],[0.072517715394497,-0.05317185074091,-0.034631107002497]],[[0.042784329503775,-0.033986561000347,-0.089532613754272],[0.0064500155858696,0.0028230722527951,-0.000788206118159],[-0.014691531658173,-0.0015041019069031,-0.040577612817287]],[[0.042515106499195,-0.05456593260169,-0.048343800008297],[0.0026772087439895,-0.016510864719748,-0.012507337145507],[0.054653864353895,0.0099789556115866,-0.092557027935982]],[[-0.031313721090555,0.0032441082876176,-0.01056148763746],[-0.041719723492861,-0.036636598408222,-0.028129858896136],[0.015050115063787,-0.0029335021972656,-0.045407559722662]],[[-0.031270232051611,0.026328187435865,-0.014105738140643],[0.017321756109595,-0.071849577128887,0.080447539687157],[-0.017631590366364,-0.017335053533316,0.035580150783062]],[[0.033554065972567,0.010396408848464,-0.037522707134485],[-0.015567294321954,-0.019262909889221,-0.044415608048439],[-0.0036113653331995,0.027211468666792,-0.041283838450909]],[[0.045915212482214,-0.064084962010384,0.084769323468208],[0.01835098490119,-0.041962835937738,-0.081160761415958],[-0.03534272313118,-0.015949659049511,0.061787314713001]],[[0.029721807688475,-0.0073166694492102,-0.0015449246857315],[-0.0055474936962128,0.0015255020698532,0.051428250968456],[0.0082127712666988,0.0021837379317731,-0.040817674249411]],[[0.0055660782381892,0.025196189060807,0.058577097952366],[0.0095356795936823,-0.023367932066321,-0.017472460865974],[0.033425506204367,0.076495371758938,0.078975953161716]],[[0.05396630987525,-0.046248912811279,-0.015816792845726],[-0.0069160326384008,0.051072992384434,0.031690370291471],[-0.10393349826336,-0.0065893963910639,-0.09861583262682]],[[-0.067433558404446,-0.17917442321777,0.025485180318356],[-0.0075605087913573,-0.052093036472797,-6.3442603277508e-05],[-0.017944384366274,-0.0034177002962679,0.10578810423613]],[[-0.042571898549795,-0.0066759479232132,-0.0031131391879171],[-0.041261784732342,-0.03207054361701,-0.0069117629900575],[0.1387143433094,-0.038866061717272,0.0087391678243876]],[[0.01093403249979,-0.095382377505302,-0.078607395291328],[0.059251792728901,-0.021421896293759,-0.031738970428705],[-0.06550120562315,0.059652846306562,-0.032341297715902]],[[0.022104080766439,0.038585171103477,0.044689849019051],[0.023353634402156,0.02212780714035,-0.020962024107575],[-0.041200645267963,0.010434452444315,-0.012552254833281]],[[-0.037016108632088,0.08376283198595,0.021903648972511],[0.0066918795928359,-0.062076915055513,0.040472667664289],[-0.046128958463669,-0.083972446620464,-0.065261542797089]],[[-0.00048985733883455,-0.040978521108627,-0.01408941950649],[-0.048964597284794,-0.040802638977766,-0.012352426536381],[0.041423462331295,-0.10741959512234,-0.052419193089008]],[[0.025584964081645,0.011623404920101,0.01627785153687],[0.031412780284882,-0.043504778295755,0.046566978096962],[0.057080760598183,-0.019068744033575,0.013347483240068]],[[0.034817643463612,0.035852327942848,0.029051437973976],[-0.0058517353609204,-0.022025723010302,-0.094515092670918],[0.053706668317318,0.044560991227627,-0.08058375865221]],[[-0.0047482172958553,-0.031884230673313,-0.022195216268301],[-0.061776835471392,-0.0062758987769485,-0.013569371774793],[-0.05258434638381,-0.047126602381468,0.030542593449354]],[[-0.013179248198867,0.023891186341643,-0.058128148317337],[0.0037360549904406,0.038669802248478,0.037576947361231],[0.0020067079458386,0.0045300237834454,0.013785695657134]],[[-0.0060312054120004,0.013469344004989,-0.024695916101336],[0.015993954613805,0.0080845560878515,-0.011040766723454],[0.0058331899344921,-0.015297475270927,0.0023782914504409]],[[0.045295145362616,0.013560106046498,0.0082324538379908],[0.032266478985548,-0.053186047822237,0.0087583428248763],[-0.012292003259063,-0.010605636052787,-0.012274812906981]],[[-0.082068972289562,-0.08988019824028,0.00093431834829971],[-0.052794609218836,-0.051260732114315,0.056945826858282],[0.05123857408762,-0.0087343826889992,0.10186136513948]],[[-0.035825908184052,-0.054112389683723,-0.057935476303101],[0.019769972190261,0.0020226484630257,0.057046357542276],[0.070614583790302,-0.060198999941349,-0.019813127815723]],[[-0.00054899940732867,0.0038539415691048,0.03046428412199],[-0.0045022484846413,-0.0015602698549628,0.0007495908648707],[-0.032061845064163,-0.0049097589217126,-0.0098847914487123]],[[0.00055478780996054,0.022857312113047,0.0019798367284238],[-0.0095756184309721,-0.025156831368804,-0.031252566725016],[-0.013675894588232,-0.063819192349911,-0.069665431976318]],[[-0.054193630814552,-0.015231258235872,0.06394861638546],[-0.002760550705716,-0.013227409683168,-0.0069948527961969],[0.028528051450849,-0.032649770379066,0.016284175217152]],[[0.01723856292665,0.0087268799543381,-0.012071097269654],[-0.056582793593407,-0.023932738229632,-0.047604244202375],[-0.002795142820105,0.070855870842934,-0.008780475705862]],[[0.011782458983362,0.060862697660923,-0.010629766620696],[-0.0088018234819174,-0.025348231196404,0.0081760948523879],[0.0045628827065229,-0.041809216141701,-0.020087337121367]],[[-0.043321054428816,-0.059743084013462,-0.045875124633312],[0.00014138243568595,0.008543910458684,0.0042698895558715],[-0.01093699876219,-0.11407651007175,0.0053706262260675]],[[-0.031535364687443,0.02129384316504,0.050085537135601],[-0.082694299519062,-0.088837504386902,0.077550269663334],[-0.027525708079338,-0.0072900196537375,0.01167372148484]],[[-0.025119349360466,0.033076323568821,0.054463945329189],[0.086204372346401,-0.043605744838715,-0.024679161608219],[-0.024584587663412,0.032771978527308,-0.018411608412862]],[[0.020594159141183,0.0089042745530605,-0.035412941128016],[-0.041169088333845,0.031342200934887,0.026016987860203],[-0.029232796281576,-0.020320113748312,-0.038125246763229]],[[-0.050855230540037,0.031660567969084,-0.031462926417589],[-0.049157850444317,-0.0046754190698266,0.0099829575046897],[-0.077622517943382,-0.0021616898011416,0.0019588686991483]],[[0.027381399646401,0.060222592204809,-0.050971005111933],[-0.020777683705091,-0.0021184997167438,0.030171716585755],[-0.023558529093862,0.031612694263458,0.0083516854792833]],[[0.079048722982407,0.10379677265882,0.067973867058754],[-0.015077744610608,0.080665089190006,0.074018403887749],[0.039857443422079,0.028396708890796,0.099828705191612]],[[0.030599474906921,-0.031160321086645,0.067348398268223],[-0.028123568743467,-0.042104881256819,0.011436932720244],[-0.079803943634033,0.010487071238458,-0.017406120896339]],[[-0.053179450333118,-0.018428586423397,-0.033015999943018],[0.017362652346492,-0.059506975114346,0.014042031951249],[-0.016494819894433,-0.020480567589402,0.076299197971821]],[[0.042001504451036,0.046987641602755,-0.014458964578807],[-0.061399217694998,-0.031099805608392,-0.0088431779295206],[-0.012584971264005,0.022179413586855,0.044193763285875]],[[-0.0071023567579687,-0.035271666944027,0.026330400258303],[-0.00037063384661451,0.014171509072185,-0.098034732043743],[-0.017011817544699,0.012305366806686,-0.041035309433937]],[[0.02326887845993,-0.0089527377858758,-0.047254048287868],[0.010787185281515,-0.0010410437826067,0.010788504965603],[0.0042009297758341,-0.024804400280118,0.0034730217885226]],[[0.020162664353848,0.019853541627526,0.0093526737764478],[-0.015726624056697,-0.011699072085321,-0.028797736391425],[-0.0050460635684431,0.046036262065172,-0.023557050153613]],[[0.0063264654017985,0.075402982532978,-0.024314166978002],[0.001504203537479,-0.023573217913508,-0.032787438482046],[-0.076973117887974,0.0056592701002955,-0.0062516736797988]],[[-0.025169545784593,0.036962147802114,0.015173622407019],[-0.032009657472372,-0.036097824573517,-0.020623566582799],[-0.029523713514209,-0.029325913637877,0.033978894352913]],[[-0.00053684087470174,-0.030796026811004,0.00012054949911544],[0.015543636865914,-0.058799851685762,-0.065247349441051],[0.0032826415263116,-0.040259812027216,-0.075300790369511]],[[-0.0098241306841373,-0.027106273919344,0.031243808567524],[0.0047162394039333,0.0091280844062567,0.029903138056397],[-0.021911462768912,0.034848816692829,0.0017661617603153]]],[[[0.026529744267464,0.057337194681168,0.042883530259132],[-0.077960610389709,-0.026759911328554,0.0068877539597452],[-0.10840906947851,0.058683350682259,-0.0088568236678839]],[[-0.0051303752698004,-0.040885116904974,0.012660633772612],[0.047857485711575,-0.0096497312188148,0.030005188658834],[-0.018370147794485,-0.013581594452262,-0.0084381699562073]],[[0.0086252316832542,0.0052937199361622,0.065945126116276],[0.0044216108508408,-0.031274363398552,-0.034401025623083],[-0.045775141566992,-0.098535694181919,0.042481515556574]],[[-0.027509219944477,-0.0064948443323374,-0.056073538959026],[-0.03081831894815,0.073645956814289,-0.021749697625637],[-0.013440012931824,-0.043990790843964,-0.031530648469925]],[[-0.019380996003747,0.035940025001764,-0.032087590545416],[-0.027464875951409,0.052638303488493,-0.0092386594042182],[-0.025669964030385,-0.025798322632909,-0.038236547261477]],[[-0.067142769694328,-0.060917723923922,0.0721141025424],[-0.026989949867129,0.026911972090602,0.028391072526574],[-0.058942407369614,0.019409716129303,-0.025494316592813]],[[-0.036554541438818,-0.059421930462122,0.038464836776257],[-0.056723389774561,0.0077787046320736,-0.0049625290557742],[0.0097242761403322,-0.025333924219012,-0.0072157247923315]],[[0.020291410386562,-0.0063524744473398,0.029599778354168],[0.024992641061544,0.011342337355018,0.0059134257026017],[-0.0035874776076525,0.0067581869661808,0.024245642125607]],[[0.0079035134986043,-0.021542388945818,-0.065236151218414],[-0.039878439158201,-0.0078090750612319,0.022325592115521],[-0.037985719740391,-0.044358987361193,-0.02676915563643]],[[0.050595905631781,-0.00029566307784989,-0.028734631836414],[0.031961034983397,0.0099807325750589,0.053335785865784],[-0.062989011406898,0.022840734571218,-0.076397225260735]],[[-0.07376991212368,0.0304492469877,-0.0060898191295564],[-0.0066507142037153,0.032156422734261,0.020252646878362],[-0.023016674444079,0.049072712659836,-0.062541924417019]],[[-0.005063459277153,-0.015462817624211,0.017981929704547],[-0.069339223206043,-0.089067913591862,-0.022735144942999],[0.034008670598269,0.063056409358978,0.045252375304699]],[[-0.0011935699731112,-0.043203495442867,-0.026657432317734],[-0.054056953638792,-0.014871565625072,-0.026449874043465],[0.048074495047331,-0.035853330045938,0.018259143456817]],[[-0.052124213427305,0.055599577724934,0.044099979102612],[-0.11430223286152,0.023218939080834,0.10600692033768],[-0.070375166833401,0.0065818694420159,0.10907628387213]],[[-0.019802240654826,-0.0003759975079447,0.048632279038429],[0.041653692722321,-0.037108905613422,-0.024943036958575],[0.083555072546005,-0.037132762372494,-0.0002963712613564]],[[0.088378749787807,0.018033681437373,-0.015162361785769],[0.0079698814079165,0.065378561615944,0.020056562498212],[0.0066748345270753,0.017502447590232,-0.047763545066118]],[[-0.022735737264156,0.038500186055899,0.021476460620761],[0.017077973112464,-0.0054473215714097,0.083305142819881],[0.017236171290278,-0.060909256339073,0.006687487475574]],[[-0.014346726238728,-0.065108828246593,-0.057119313627481],[-0.025474352762103,-0.052732545882463,-0.12777374684811],[-0.028111901134253,0.010033658705652,0.011745326220989]],[[-0.016637286171317,-0.0051998561248183,-0.011221206746995],[-0.026530761271715,-0.0073001286946237,0.0051179863512516],[-0.088761456310749,-0.086633779108524,-0.022472623735666]],[[-0.0042948652990162,-0.039033181965351,-0.0016724187880754],[-0.077485583722591,0.011912275105715,0.03230844810605],[0.061473064124584,-0.0225765760988,0.031947147101164]],[[0.031841088086367,-0.0160325858742,-0.036589071154594],[-0.085506916046143,-0.10028033703566,-0.016216119751334],[0.0098813539370894,-0.0039201457984746,-0.022377084940672]],[[-0.0064706383273005,0.012267866171896,0.021910978481174],[0.02375577762723,-0.053066238760948,-0.012137211859226],[-0.087501809000969,-0.027353826910257,-0.014475353993475]],[[0.1112371981144,-0.034121572971344,-0.047107338905334],[0.026445388793945,-0.040108174085617,-0.023424463346601],[0.0055029951035976,0.02605657838285,-0.016250876709819]],[[-0.018313216045499,0.013203248381615,-0.037211492657661],[-0.090591594576836,0.040982391685247,0.031473685055971],[-0.056131131947041,-0.014617407694459,0.041605971753597]],[[0.036612063646317,-0.027371434494853,0.011607949621975],[0.029964074492455,0.035961072891951,0.03028067573905],[0.061290584504604,-5.4882522817934e-05,-0.0068822931498289]],[[-0.05624733120203,-0.016500050202012,-0.030187413096428],[0.012139062397182,0.012468530796468,0.0083159105852246],[-0.032161064445972,-0.073027886450291,-0.074658557772636]],[[-0.027328886091709,-0.0064591793343425,-0.0031327188480645],[-0.15727640688419,-0.020889038220048,-0.045046504586935],[-0.042302209883928,-0.088014289736748,-0.056550286710262]],[[0.067162871360779,0.024865930899978,0.014395412057638],[-0.052361629903316,0.092991963028908,-0.056313309818506],[-0.1087858825922,0.016389770433307,-0.072242207825184]],[[0.029618022963405,0.0011645981576294,0.093357242643833],[5.9195936046308e-05,-0.024496272206306,0.00055582239292562],[0.078244172036648,0.035189975053072,0.0045782742090523]],[[0.0023685726337135,0.0071551906876266,-0.028560629114509],[0.0030819338280708,0.018146568909287,0.021733252331614],[0.039490636438131,0.0069783157669008,-0.026369633153081]],[[0.015604893676937,-0.049396615475416,-0.025066880509257],[0.011886710301042,-0.0075216284021735,-0.027925569564104],[0.039568942040205,-0.025742907077074,0.0057472684420645]],[[-0.11684274673462,-0.010022233240306,0.0079662352800369],[-0.034457184374332,-0.080451488494873,0.0037209163419902],[-0.08258144557476,-0.0041627148166299,-0.012822915799916]],[[-0.0010527691338211,-0.060738384723663,-0.080911420285702],[0.014318464323878,0.022423820570111,-0.014611928723752],[0.094146452844143,0.061416774988174,-0.0025744591839612]],[[0.10492504388094,-0.0089766019955277,0.013414964079857],[-0.011288256384432,-0.063368320465088,-0.047557171434164],[0.0062015969306231,-0.0070331408642232,-0.041743829846382]],[[-0.0052697896026075,-0.023428235203028,0.033138889819384],[-0.01643137075007,0.03984747454524,0.033423583954573],[-0.021461632102728,0.039613675326109,0.065342709422112]],[[-0.017856307327747,-0.072274468839169,-0.062899097800255],[-0.062399059534073,0.021916685625911,0.035793736577034],[0.037441775202751,-0.028856663033366,0.027782667428255]],[[-0.066155910491943,-0.052672937512398,-0.08222633600235],[-0.00087149912724271,-0.031108634546399,0.02216899767518],[0.033263385295868,0.066838048398495,-0.014174946583807]],[[-0.069094844162464,0.0093658659607172,0.045829992741346],[0.057183228433132,0.031898017972708,-0.002819542074576],[-0.075137779116631,0.10852079093456,0.020360957831144]],[[-0.010869060643017,-0.034612756222486,-0.066509462893009],[0.015989147126675,-0.031999982893467,-0.084824800491333],[-0.022606303915381,-0.010544526390731,-0.040154706686735]],[[0.011093493551016,-0.015733106061816,-0.00057217199355364],[0.0014600674621761,0.021552497521043,0.050812859088182],[0.036106124520302,-0.035465192049742,0.0072928830049932]],[[-0.025248777121305,-0.034283094108105,0.030744118615985],[-0.047826174646616,0.010346641764045,-0.029432391747832],[-0.021731002256274,-0.10309286415577,0.0071656908839941]],[[-0.071503400802612,0.059080071747303,0.011157774366438],[0.037892155349255,-0.08108764141798,0.07659237831831],[0.031670965254307,-0.028134925290942,-0.010238433256745]],[[-0.04620360955596,0.0024485760368407,-0.00034643066464923],[-0.058180473744869,-0.024702548980713,-0.0064861727878451],[-0.023804496973753,0.039395172148943,-0.020421395078301]],[[0.051015716046095,-0.030567388981581,-0.059200793504715],[0.097608283162117,0.059023078531027,-0.010324197821319],[-0.00098499783780426,0.069089084863663,0.048526030033827]],[[0.090312644839287,-0.022030390799046,-0.012397889979184],[0.01280003413558,-0.0067544458433986,-0.0091703180223703],[-0.07187993824482,0.022719634696841,-0.022528439760208]],[[-0.068086750805378,-0.043941877782345,0.024414025247097],[-0.054409865289927,-0.0096510294824839,0.034627474844456],[-0.062957532703876,0.0056106159463525,0.013591184280813]],[[-0.021081645041704,-0.017443051561713,0.052430912852287],[0.09626467525959,-0.03533661365509,0.059293992817402],[0.017340207472444,0.011066535487771,-0.089184671640396]],[[0.053939033299685,0.05917938426137,0.0017376161413267],[-0.078246764838696,0.04080393910408,0.021686302497983],[0.029049614444375,0.085274524986744,0.036630351096392]],[[0.088885881006718,-0.033227156847715,0.018525827676058],[-0.028466012328863,-0.071966372430325,0.022934088483453],[0.087726458907127,0.026371927931905,-0.011093817651272]],[[0.0016297147376463,0.037707142531872,-0.035670667886734],[0.012624204158783,0.01789241656661,-0.04456938803196],[0.10567763447762,-0.0016285583842546,-0.12096226215363]],[[-0.095848143100739,-0.05327258631587,0.018333164975047],[-0.01702343672514,-0.062551498413086,-0.068528696894646],[-0.069951191544533,-0.0016520280623809,0.026003351435065]],[[-0.034467160701752,-0.044539853930473,0.033080950379372],[0.02479475736618,0.050102867186069,-0.0074581075459719],[-0.010454951785505,0.018493046984076,0.033496309071779]],[[0.017888305708766,0.028386041522026,0.03099856339395],[0.051963932812214,-0.046540785580873,-0.049037411808968],[0.019113879650831,-0.00056821975158527,-0.013683162629604]],[[-0.097449697554111,0.037742704153061,0.029459211975336],[-0.040122386068106,0.098800681531429,0.066927865147591],[0.061426654458046,0.045902982354164,0.097900032997131]],[[0.02563682384789,0.029948657378554,-0.044849593192339],[0.098348267376423,-0.036305472254753,0.032436553388834],[0.076129555702209,0.0085541782900691,0.025137398391962]],[[-0.061502169817686,0.039568115025759,0.024481719359756],[0.059828661382198,0.0035641021095216,-0.011489570140839],[-0.0069487653672695,-0.0031309146434069,0.0015953741967678]],[[-0.065529681742191,-0.048922263085842,-0.030417637899518],[-0.015674959868193,-0.035357531160116,-0.079586252570152],[0.049804598093033,0.034462206065655,-0.015671111643314]],[[-0.00022381171584129,0.0032622595317662,0.03927231952548],[0.013532405719161,0.069057211279869,0.071444667875767],[0.002288073534146,0.00077081233030185,0.0080886799842119]],[[-0.030157893896103,0.01883346028626,0.01350986585021],[-0.0081044193357229,-0.019773650914431,0.0035900983493775],[-0.065904378890991,0.011383964680135,-0.035420354455709]],[[-0.057116240262985,0.044072415679693,0.033242035657167],[-0.029222317039967,0.038966003805399,-0.0090042250230908],[-0.039496555924416,0.0085005238652229,0.0618005245924]],[[-0.0062086777761579,-0.0075211971998215,-0.016092590987682],[0.042681142687798,0.0099432971328497,0.04774234443903],[0.027910672128201,0.10630062222481,-0.0049060853198171]],[[0.033096667379141,-0.043733052909374,-0.014139464125037],[0.095749266445637,-0.016857335343957,-0.025786897167563],[0.014066701754928,-0.015535219572484,0.040813978761435]],[[0.060723207890987,-0.019371325150132,-0.017749639227986],[-0.0030453782528639,0.015613961964846,0.073307499289513],[0.0070851529017091,-0.033127631992102,0.025827180594206]],[[0.028823224827647,-0.024221455678344,-0.026843002066016],[0.0062851160764694,-0.059004161506891,-0.021302653476596],[0.02662243694067,-0.029651738703251,-0.045322198420763]]],[[[0.029264856129885,-0.038888659328222,0.055036678910255],[0.047894258052111,0.028147196397185,0.032727017998695],[-0.010605819523335,-0.021234011277556,-0.072498925030231]],[[-0.046113561838865,-0.0038364152424037,0.014713914133608],[0.041509184986353,0.018419677391648,0.061816360801458],[-0.058063343167305,0.045686084777117,-0.023701371625066]],[[-0.056172206997871,-0.014025553129613,-0.06544828414917],[-0.01726302318275,-0.081577315926552,-0.023959269747138],[0.015530577860773,-0.069783195853233,-0.09355953335762]],[[-0.0047064437530935,-0.072400100529194,-0.053148753941059],[0.010974072851241,-0.052183136343956,-0.032513912767172],[0.084859028458595,-0.087249331176281,-0.002201555063948]],[[0.020932653918862,-0.12835040688515,0.049211274832487],[-0.027117704972625,0.097873516380787,0.032806247472763],[-0.091007135808468,-0.027984527871013,-0.081202387809753]],[[-0.11581844091415,-0.031738836318254,-0.047079354524612],[-0.070725031197071,-0.044194079935551,0.15930505096912],[-0.08260153979063,0.018695298582315,-0.01626642793417]],[[-0.028292521834373,-0.025611354038119,-0.017876528203487],[-0.073936469852924,0.022813435643911,0.022881781682372],[0.00054544204613194,-0.035942886024714,0.0043274541385472]],[[-0.072774514555931,-0.019240893423557,0.0013038337929174],[-0.050984714180231,0.11876918375492,0.032445933669806],[0.033997982740402,0.078952863812447,-0.075453475117683]],[[-0.016764936968684,0.042872101068497,-0.22675220668316],[0.10454043745995,-0.13309592008591,-0.18363438546658],[0.078220844268799,-0.15808027982712,-0.11047653853893]],[[-0.045334029942751,0.12531031668186,-0.13732618093491],[-0.018608197569847,0.012419007718563,-0.10165352374315],[0.05585340783,-0.063895866274834,-0.043564453721046]],[[-0.080338679254055,0.057938013225794,-0.072747454047203],[-0.070341289043427,-0.12129919230938,0.10673905909061],[-0.0015668458072469,-0.020382389426231,-0.04052035883069]],[[-0.1134472489357,-0.046041388064623,-0.081662431359291],[-0.086237490177155,-0.038169480860233,-0.10874342173338],[0.051081951707602,0.11510746181011,0.11738849431276]],[[0.16100443899632,-0.0051341485232115,-0.10612603276968],[-0.09046532958746,-0.0095892949029803,0.012450250796974],[-0.11797920614481,0.10137667506933,0.009566149674356]],[[-0.18768782913685,-0.032691303640604,0.1225625500083],[-0.13243994116783,0.056058842688799,0.13950031995773],[-0.013268230482936,0.057225819677114,0.047038566321135]],[[0.037171091884375,-0.11484168469906,-0.063034780323505],[0.0087373908609152,-0.089776277542114,0.061498966068029],[-0.039382014423609,0.0047243735753,0.0016076345928013]],[[-0.054283764213324,0.010110408067703,-0.032481487840414],[0.038326065987349,-0.066529601812363,-0.075729511678219],[-0.04894271120429,-0.063940100371838,0.0019715356174856]],[[-0.014305480755866,-0.049935813993216,-0.1033861041069],[-0.026611100882292,-0.045909553766251,-0.047819681465626],[0.019076889380813,-0.033035822212696,0.039937820285559]],[[-0.0051270346157253,-0.038489285856485,-0.077076829969883],[-0.13608850538731,-0.092654347419739,-0.081488512456417],[-0.05376310646534,0.035829909145832,-0.02818133495748]],[[-0.082938827574253,-0.040566332638264,0.027874767780304],[0.0092849992215633,-0.12492193281651,-0.069194875657558],[-0.13466596603394,-0.090895801782608,0.025343554094434]],[[0.072913348674774,-0.013572779484093,0.0046758595854044],[0.064211949706078,0.02817059122026,-0.039482455700636],[-0.0012462236918509,-0.036996427923441,-0.04712151363492]],[[0.15352675318718,-0.17083476483822,-0.089626304805279],[-0.024906549602747,-0.032627016305923,-0.12324169278145],[0.016714513301849,-0.031406380236149,-0.014372957870364]],[[-0.089620821177959,0.12489835172892,0.020133325830102],[0.11906539648771,0.084484830498695,-0.013212721794844],[-0.039307396858931,0.027926029637456,-0.059296455234289]],[[0.032624967396259,-0.049833208322525,-0.057155046612024],[0.065032079815865,-0.027248656377196,-0.0034510623663664],[0.041648514568806,-0.023153817281127,0.013707667589188]],[[0.021417684853077,0.039149902760983,0.055787645280361],[0.034353241324425,0.11634868383408,-0.12440916150808],[-0.10211432725191,0.10782726109028,-0.11015091836452]],[[0.091812759637833,0.17845593392849,-0.069852210581303],[0.10568207502365,-0.0081850728020072,-0.11893121153116],[0.05011186003685,0.017805747687817,-0.033424999564886]],[[0.038501210510731,-0.041850205510855,0.077047996222973],[-0.0058171316049993,0.017590820789337,-0.067686602473259],[-0.059941302984953,-0.091636277735233,-0.031145859509706]],[[-0.02027827501297,-0.034682251513004,-0.066075585782528],[-0.17545053362846,-0.15855413675308,-0.041900333017111],[0.080696292221546,-0.0025385301560163,0.046997856348753]],[[0.11592399328947,0.11414904892445,0.067063719034195],[-0.036068066954613,0.028428502380848,-0.056029796600342],[-0.088161736726761,-0.1022105962038,-0.10949514061213]],[[-0.023729423061013,0.0090676276013255,0.0092688864096999],[-0.034638449549675,-0.028866861015558,-0.016590708866715],[0.0093938717618585,0.019056435674429,0.021298991516232]],[[0.04886531457305,0.03417494520545,-0.064212083816528],[-0.05692045763135,-0.00056429719552398,-0.11394774913788],[-0.065146699547768,0.01010871771723,-0.026721557602286]],[[-0.057608276605606,-0.10683985054493,-0.12511005997658],[-0.019331280142069,0.010005765594542,-0.045290239155293],[0.12436776608229,-0.023714473471045,-0.010725367814302]],[[-0.040861487388611,-0.13343997299671,0.27417448163033],[-0.20263393223286,0.054130245000124,0.07281830906868],[-0.14599069952965,-0.17296029627323,-0.031823728233576]],[[-0.014868350699544,0.033327642828226,0.032981541007757],[-0.10759354382753,0.042962145060301,-0.034092180430889],[-0.023998845368624,0.23872688412666,-0.15584789216518]],[[0.073096446692944,-0.12331998348236,0.066563799977303],[0.12689274549484,-0.095360495150089,-0.048357866704464],[-0.11633852869272,-0.037511628121138,-0.051226459443569]],[[-0.075743392109871,0.089630886912346,0.018528036773205],[0.06926816701889,0.13129739463329,-0.022440304979682],[0.042421739548445,0.060531374067068,-0.14504273235798]],[[0.049008995294571,0.065747164189816,-0.12700152397156],[0.015141844749451,0.050892282277346,-0.029638698324561],[0.038730025291443,0.020640481263399,-0.018689263612032]],[[-0.12677063047886,0.063710682094097,0.052151694893837],[-0.10731094330549,-0.007131093647331,0.057518925517797],[-0.04747861251235,0.067755244672298,-0.019176580011845]],[[-0.12144995480776,0.18008725345135,0.25609749555588],[-0.013429169543087,0.065338596701622,-0.075382493436337],[-0.051306463778019,-0.17292407155037,0.020158894360065]],[[0.052625868469477,0.0061807502061129,-0.073424018919468],[-0.041012406349182,0.058748003095388,0.021087653934956],[-0.12095532566309,0.027061600238085,-0.082752697169781]],[[-0.068802051246166,0.018165221437812,-0.017927637323737],[-0.027548041194677,-0.098937645554543,-0.017086640000343],[-0.03098912909627,-0.012803439982235,0.051775116473436]],[[0.12321192026138,-0.075553990900517,-0.011360357515514],[-0.0060734185390174,-0.0097946412861347,-0.008326786570251],[-0.0033878933172673,-0.017542377114296,-0.10045325756073]],[[-0.1237900480628,0.13517127931118,0.051309689879417],[-0.10168585926294,0.11004307866096,-0.043323811143637],[-0.055116672068834,0.036717861890793,0.029051218181849]],[[-0.049503941088915,-0.13275195658207,0.046468980610371],[-0.035263940691948,-0.040958631783724,0.14465802907944],[-0.018157802522182,-0.072405070066452,0.08369754254818]],[[-0.16142070293427,0.010324887000024,0.010010867379606],[-0.05377683788538,-0.045131474733353,-0.014822124503553],[0.12678031623363,0.11149729788303,-0.023642782121897]],[[0.16422232985497,0.027293233200908,-0.19893433153629],[0.056993544101715,-0.11342150717974,0.055893838405609],[-0.055199939757586,0.02449543774128,-0.023157279938459]],[[-0.25968447327614,0.044968973845243,0.16934406757355],[-0.23336479067802,0.034637928009033,0.044797360897064],[-0.18562172353268,0.063372373580933,0.049444787204266]],[[-0.1047340631485,0.072420313954353,0.018395483493805],[-0.0069653890095651,0.16693559288979,-0.060249835252762],[0.018863607198,0.024006886407733,-0.060584127902985]],[[0.12120928615332,-0.10817025601864,-0.049739569425583],[0.024619583040476,0.032111253589392,0.056706875562668],[-0.02381313033402,0.014127536676824,-0.039639070630074]],[[0.038071162998676,-0.15988443791866,0.033542308956385],[-0.15172603726387,-0.10166661441326,-0.0029845333192497],[-0.032102882862091,0.039577376097441,0.0026238020509481]],[[0.092654190957546,0.0036089944187552,-0.10256099700928],[0.15014845132828,-0.10327082127333,-0.1162112429738],[0.13278317451477,-0.11037962883711,-0.090741626918316]],[[-0.11839467287064,-0.040446236729622,-0.026296753436327],[-0.10126682370901,-0.10712253302336,-0.043103575706482],[-0.15065941214561,-0.067543044686317,-0.050714559853077]],[[-0.028786374256015,-0.02123586460948,0.0038856188766658],[-0.003387643257156,0.0030947695486248,0.011797134764493],[-0.032691780477762,-0.018839705735445,-0.017023347318172]],[[-0.055935624986887,0.036987539380789,0.075528435409069],[0.037640862166882,0.1018468812108,0.058732464909554],[0.043045341968536,0.027776923030615,0.039679560810328]],[[0.13880543410778,0.030601978302002,0.16123002767563],[-0.069731220602989,0.13023643195629,0.069744244217873],[0.04567751660943,-0.045733459293842,0.10202622413635]],[[0.012985722161829,-0.22857569158077,-0.075379714369774],[-0.0080297645181417,0.099683426320553,-0.028084209188819],[0.25605329871178,0.24581043422222,0.013709454797208]],[[0.088669650256634,-0.044652331620455,-0.0087424842640758],[0.045114673674107,0.0066266031935811,0.015202482230961],[0.024755608290434,0.027811488136649,-0.057444855570793]],[[-0.14621005952358,-0.010069835931063,-0.027782121673226],[-0.084339551627636,0.016787143424153,-0.10290566086769],[0.032715510576963,0.019955927506089,-0.034100700169802]],[[0.0076046972535551,-0.081102795898914,-0.010596833191812],[0.0064167082309723,-0.070824444293976,0.018097206950188],[0.032678205519915,-0.061717338860035,0.049213115125895]],[[0.042345430701971,0.040211949497461,-0.033229824155569],[-0.13150998950005,0.043908063322306,0.070530369877815],[0.14016775786877,0.001112800440751,-0.13412661850452]],[[0.0042742495425045,0.019050482660532,0.048300966620445],[-0.12683288753033,0.024838220328093,0.035278975963593],[-0.017355723306537,0.080130718648434,0.00095338054234162]],[[0.12705074250698,-0.17916551232338,-0.1997891664505],[0.026493480429053,-0.15421801805496,0.024331290274858],[-0.10317646712065,-0.043224144726992,0.094441838562489]],[[0.060125280171633,0.048408143222332,-0.012004194781184],[0.015391081571579,-0.043038200587034,-0.099776163697243],[0.044856090098619,0.047644905745983,-0.075244180858135]],[[0.10573220998049,0.031486209481955,-0.029520485550165],[0.15800845623016,-0.0048157181590796,-0.11197429150343],[-0.054576009511948,-0.041434042155743,-0.01294769346714]],[[-0.11420844495296,-0.085313946008682,0.031965602189302],[-0.12681357562542,-0.092718183994293,0.16908079385757],[-0.22135056555271,0.15987433493137,0.06981099396944]]],[[[0.23275892436504,0.080494351685047,-0.055190518498421],[0.035814620554447,0.11271815747023,-0.22879680991173],[0.00061126769287512,-0.064726456999779,-0.039964690804482]],[[-0.096701122820377,-0.055548585951328,0.027676260098815],[-0.28085985779762,0.018932705745101,-0.029807932674885],[-0.20283165574074,-0.10208079218864,-0.075536802411079]],[[0.023897828534245,-0.036021780222654,0.0032609577756375],[-0.014272111468017,0.023556772619486,0.064201407134533],[0.058931794017553,-0.039873369038105,0.068445704877377]],[[0.06145802885294,0.073157303035259,-0.018697598949075],[0.058486387133598,0.11527959257364,0.070594944059849],[0.15416686236858,-0.022502213716507,0.045531269162893]],[[-0.12330218404531,0.00040703956619836,0.0019283634610474],[-0.047197803854942,0.045225318521261,-0.026550102978945],[0.050338312983513,0.033772181719542,0.029954317957163]],[[0.0079806251451373,0.004374798387289,-0.0089542670175433],[-0.20703771710396,0.004594455473125,-0.13812051713467],[0.036548640578985,0.023940009996295,0.036722835153341]],[[0.0047532119788229,0.0037066282238811,0.032327689230442],[0.051367830485106,-0.028871348127723,0.04576463252306],[-0.010714950971305,0.017708566039801,-0.032459191977978]],[[0.10062204301357,-0.084782019257545,-0.011890013702214],[0.11230993270874,-0.049527943134308,-0.028069486841559],[-0.057050794363022,-0.046165030449629,0.042962215840816]],[[-0.084481634199619,0.068806327879429,-0.089419476687908],[-0.027986206114292,-0.027065753936768,0.081021964550018],[-0.030125485733151,0.044574081897736,0.0051939315162599]],[[-0.020048439502716,-0.064912408590317,0.016132632270455],[0.11320916563272,0.0033253093715757,-0.036564294248819],[0.11203905940056,-0.02592938952148,0.12276463955641]],[[0.078079551458359,0.096934713423252,-0.042442467063665],[-0.02668833732605,0.055768318474293,0.036864191293716],[-0.041400026530027,0.058630578219891,-0.11922790110111]],[[0.021830961108208,0.073125816881657,-0.026691619306803],[-0.018541254103184,0.065273553133011,-0.061752777546644],[-0.021571302786469,-0.0072403447702527,0.028259223327041]],[[-0.028326690196991,0.075553700327873,0.024051941931248],[0.092930659651756,0.064718268811703,0.072877295315266],[0.15435735881329,-0.071573309600353,0.062585718929768]],[[0.18778651952744,0.084482543170452,-0.024582726880908],[0.17295837402344,0.051341168582439,-0.025526018813252],[0.19135209918022,0.0018192352727056,-0.066816419363022]],[[-0.025447931140661,-0.025137024000287,-0.091798670589924],[0.011131013743579,0.10032214224339,-0.036909837275743],[0.07543122023344,-0.024771146476269,-0.083567313849926]],[[-0.072691611945629,-0.0894425958395,0.097439862787724],[0.082431301474571,-0.0348776653409,-0.032833963632584],[0.011148602701724,0.012487072497606,-0.032817967236042]],[[-0.062171645462513,0.15310594439507,-0.010553829371929],[-0.11037533730268,-0.36252993345261,-0.048235923051834],[0.066129110753536,0.030765874311328,-0.016712026670575]],[[-0.040437232702971,0.0070135602727532,-0.013713971711695],[-0.038469895720482,0.067146822810173,0.044519931077957],[-0.18094947934151,-0.046152994036674,0.21136610209942]],[[0.0072723589837551,-0.049679532647133,0.030282031744719],[0.064766384661198,-0.026845647022128,-0.082959033548832],[-0.047373972833157,-0.0054283523932099,-0.026452243328094]],[[-0.054969929158688,0.0054615787230432,0.027657805010676],[-0.10554542392492,-0.070935554802418,-0.003116489155218],[-0.057498678565025,-0.024413296952844,0.069774590432644]],[[0.11480255424976,-0.023365957662463,0.038398060947657],[0.12878014147282,-0.024217722937465,0.024612423032522],[0.13002355396748,-0.027199614793062,-0.12527024745941]],[[-0.18106150627136,0.035322211682796,0.036892261356115],[-0.18645384907722,-0.14897073805332,-0.026530027389526],[0.035165868699551,0.061051744967699,0.071906760334969]],[[-0.031241901218891,-0.00079570699017495,0.024176647886634],[-0.018136389553547,0.017560722306371,0.0019092396833003],[-0.0011256232392043,-0.0071187214925885,0.021000117063522]],[[-0.022467171773314,0.093910470604897,-0.05003571882844],[-0.023032004013658,-0.040412500500679,0.032459922134876],[-0.048402488231659,-0.023305740207434,0.028938746079803]],[[0.088580496609211,0.06739367544651,0.04159889742732],[0.05841526761651,0.05218518525362,0.11293078958988],[0.030224489048123,0.08579657971859,0.029463838785887]],[[-0.074274629354477,-0.01195609010756,-0.0092370789498091],[-0.024372668936849,-0.065311335027218,0.09928473085165],[-0.034449208527803,0.085772454738617,0.0045356922782958]],[[-0.0012060721637681,0.026053333655,0.068589560687542],[0.27895787358284,0.013107381761074,-0.051781181246042],[-0.13670589029789,0.010428400710225,-0.030112566426396]],[[0.020633259788156,-0.067990444600582,-0.10684087872505],[-0.049214668571949,0.069156594574451,-0.090260751545429],[0.24103435873985,0.13410115242004,-0.17041540145874]],[[0.053776692599058,0.04134189337492,0.046893902122974],[0.0033315164037049,0.055774863809347,0.065443813800812],[-0.010344654321671,-0.02620598487556,0.03666939213872]],[[-0.071106851100922,-0.040794614702463,0.053625144064426],[-0.083201587200165,0.098536290228367,0.016547340899706],[-0.0062460256740451,0.069669000804424,0.051111407577991]],[[0.094648852944374,0.04820254445076,0.062440954148769],[0.031176256015897,-0.095234215259552,0.1122228577733],[-0.056386519223452,0.066699668765068,-0.015379251912236]],[[0.011943147517741,-0.010575208812952,-0.047809563577175],[0.13107132911682,-0.12600520253181,-0.050068039447069],[-0.080064810812473,0.025435421615839,0.049308959394693]],[[-0.047381069511175,0.045128535479307,0.0053861504420638],[0.051571410149336,0.0068059479817748,0.056385919451714],[-0.064158245921135,0.021997002884746,0.052070487290621]],[[-0.11988240480423,-0.11233703047037,-0.095028601586819],[-0.28859478235245,-0.011976066045463,0.025171622633934],[-0.078886903822422,0.047297537326813,0.11719522625208]],[[-0.088081695139408,-0.026507150381804,-0.0048435097560287],[-0.16215093433857,-0.028417078778148,0.12181981652975],[-0.07128194719553,0.026812540367246,0.06737344712019]],[[-0.1016933619976,0.087187476456165,-0.008674162440002],[-0.010958307422698,0.11286616325378,-0.0098591921851039],[-0.050175409764051,0.071887351572514,0.017874328419566]],[[0.057056698948145,-0.061442758888006,-0.020896123722196],[0.090807609260082,-0.087405480444431,-0.16530352830887],[-0.028774779289961,0.071695350110531,0.0077314148657024]],[[-0.080906480550766,-0.051411021500826,-0.010008979588747],[-0.016602361574769,-0.032394327223301,0.085744306445122],[-0.042055420577526,0.020267287269235,0.034454513341188]],[[-0.030644170939922,0.055940736085176,0.0058578131720424],[0.14404080808163,0.024160109460354,0.066517017781734],[-0.068227775394917,-0.012365585193038,0.0085043637081981]],[[0.015899240970612,0.0019270018674433,-0.053099803626537],[0.010513486340642,-0.092132568359375,0.031990829855204],[-0.039809331297874,-0.00071953347651288,0.033158134669065]],[[0.0053115445189178,0.0072769750840962,0.061494003981352],[0.0094474498182535,0.02997450530529,-0.059739712625742],[-0.058444291353226,0.087088339030743,0.056098219007254]],[[0.047745876014233,0.026120068505406,-0.09845807403326],[0.011104928329587,-0.064375564455986,0.031153494492173],[0.049252793192863,0.015201950445771,0.05807077139616]],[[0.079098209738731,-0.092519633471966,-0.012834487482905],[-0.0019249735632911,-0.021385930478573,-0.09398939460516],[-0.00069683435140178,0.015431769192219,0.070631854236126]],[[-0.08384694904089,-0.061139963567257,0.075472839176655],[-0.10801021754742,-0.097675994038582,0.11775553971529],[-0.11605262756348,0.029354212805629,-0.037170402705669]],[[0.0098152132704854,-0.07344813644886,-0.038817215710878],[0.2365494966507,0.13846768438816,0.05926987528801],[-0.0019507929682732,-0.05391600728035,0.03515175357461]],[[0.013613816350698,0.0010320225264877,0.011269660666585],[0.01448236592114,-0.061960525810719,-0.057598788291216],[0.027605580165982,0.0018541382160038,-0.003396691987291]],[[0.0086251040920615,0.051199998706579,0.010239140130579],[-0.084202341735363,0.018414124846458,-0.0053608189336956],[-0.073450207710266,0.041812591254711,-0.090986423194408]],[[0.0087434975430369,0.069403283298016,-0.038431406021118],[-0.21866858005524,0.0795688778162,-0.12536071240902],[0.08746849745512,-0.052401166409254,-0.036247070878744]],[[-0.042544655501842,-0.0059953569434583,0.095539152622223],[-0.03901669383049,0.028631653636694,0.020575970411301],[-0.029288312420249,0.0072795706801116,0.047294076532125]],[[0.15624928474426,-0.032429255545139,-0.043296616524458],[0.13799892365932,0.058788053691387,-0.10295134782791],[-0.016288483515382,0.011631147935987,0.056959886103868]],[[-0.036971636116505,0.073208622634411,0.02020438015461],[-0.19843347370625,0.043756201863289,0.0075107896700501],[-0.091422572731972,-0.066244781017303,0.041807539761066]],[[0.032786451280117,-0.054085470736027,0.049240261316299],[-0.0081873899325728,0.091458946466446,0.071491472423077],[0.034680895507336,-0.066135361790657,-0.041208401322365]],[[-0.04731360077858,0.044944427907467,0.081760764122009],[0.10814901441336,-0.089655384421349,0.066190376877785],[-0.018250392749906,0.056044787168503,-0.013054019771516]],[[0.14753276109695,0.0043643014505506,0.00051116762915626],[0.054239578545094,0.099094443023205,-0.14264564216137],[0.19597160816193,-0.0052974545396864,-0.012113601900637]],[[0.0021697173360735,0.049981378018856,-0.050942115485668],[-0.079171620309353,-0.053980529308319,-0.019056789577007],[-0.085767440497875,-0.037437260150909,0.0098714251071215]],[[-0.056360147893429,-0.0019753074739128,-0.030278511345387],[-0.079567916691303,0.028494842350483,0.086992852389812],[-0.018966421484947,0.0067830877378583,0.059788130223751]],[[-0.099582836031914,0.10709594935179,-0.027202302590013],[0.015896916389465,-0.0352883040905,0.06533033400774],[-0.10863244533539,-0.083539374172688,0.016878295689821]],[[-0.019026696681976,-0.012739618308842,0.031499493867159],[-0.025275880470872,-0.12647043168545,0.039060302078724],[-0.016193149611354,-0.027401678264141,-0.12501984834671]],[[0.061716075986624,0.036391597241163,0.033706329762936],[0.16239356994629,0.10609003156424,-0.069989837706089],[-0.045180112123489,-0.018407510593534,0.042270831763744]],[[0.050313364714384,0.028703467920423,-0.0280333571136],[0.042715016752481,-0.053242091089487,-0.029929280281067],[0.036210108548403,0.0010846606455743,-0.036481656134129]],[[-0.18019269406796,-0.019694047048688,-0.0089138448238373],[-0.11184795945883,0.20094709098339,0.079510658979416],[-0.20962581038475,0.076213255524635,-0.043126557022333]],[[-0.1178972646594,-0.14828887581825,-0.019759520888329],[-0.10303355753422,0.069394402205944,0.081766277551651],[-0.080193154513836,0.0001819711033022,0.023936497047544]],[[-0.093250304460526,0.058008369058371,-0.03797522559762],[-0.02820092625916,0.042605016380548,0.0092586912214756],[-0.088499747216702,-0.021303148940206,0.0058877943083644]],[[0.0043141664937139,0.024002877995372,0.035312246531248],[0.057950235903263,-0.088828422129154,-0.10716252774],[-0.041394576430321,-0.033641189336777,0.025988303124905]]],[[[0.039014529436827,0.00032659934367985,-0.0084235109388828],[0.064510360360146,-0.063331045210361,-0.053869787603617],[0.081650868058205,0.016730034723878,-0.053852580487728]],[[-0.047823019325733,-0.043939605355263,-0.052993185818195],[-0.10113944113255,-0.07006398588419,-0.083559602499008],[-0.063355669379234,-0.056661639362574,-0.14782616496086]],[[-0.017252277582884,-0.027884555980563,-0.0019651460461318],[0.020296266302466,-0.018996328115463,0.010628988966346],[0.018866514787078,0.017711099237204,0.018115838989615]],[[-0.028432404622436,-0.037829957902431,-0.028626035898924],[-0.0041993809863925,0.0022431837860495,-0.019124271348119],[0.030309217050672,-0.012602778151631,0.014709625393152]],[[-0.060727264732122,-0.032025534659624,0.050127308815718],[-0.033176336437464,-0.0086758872494102,0.055102292448282],[-0.085580445826054,0.013904574327171,-0.013192736543715]],[[-0.085458643734455,-0.094822287559509,-0.043302062898874],[-0.020672466605902,0.043044120073318,0.011968371458352],[0.036557465791702,0.090266361832619,0.021562479436398]],[[-0.004014840349555,-0.02752335742116,-0.00060341431526467],[-0.033506873995066,-0.0077859535813332,-0.02358790487051],[0.030371453613043,0.016892114654183,0.01909326761961]],[[0.082481563091278,-0.052895680069923,-0.0057711652480066],[0.12785236537457,0.053597465157509,0.079963900148869],[-0.10058183968067,0.026104019954801,0.0083296010270715]],[[-0.046794757246971,-0.083469562232494,0.10059803724289],[0.010933305136859,0.035629786550999,-0.038561716675758],[-0.028096731752157,-0.06986303627491,-0.061892356723547]],[[0.010447323322296,-0.093236304819584,-0.076205708086491],[0.019891154021025,-0.10024061053991,-0.044272135943174],[-0.064965710043907,-0.027608117088675,0.061899669468403]],[[-0.011770930141211,-0.0043708309531212,0.022518571466208],[0.028466669842601,-0.02749533392489,-0.11145241558552],[0.01870091445744,-0.076290257275105,0.025444250553846]],[[-0.066052682697773,-0.051969833672047,0.0022909559775144],[0.044756680727005,0.085094355046749,0.01121824234724],[-0.073709040880203,-0.028188234195113,0.0017573437653482]],[[0.050909005105495,-0.10684122890234,-0.11976296454668],[0.017598982900381,-0.12078507244587,0.036304671317339],[-0.15843676030636,-0.11749655753374,-0.019053313881159]],[[0.012420788407326,0.17557691037655,0.0099960835650563],[0.012979595921934,-0.041275802999735,0.031072678044438],[-0.013120762072504,-0.078399807214737,-0.032473839819431]],[[-0.013616786338389,-0.011385305784643,-0.034080106765032],[0.078127838671207,-0.071201361715794,-0.0032371140550822],[0.050005037337542,0.029878417029977,0.0682383030653]],[[0.042248111218214,0.0062484019435942,-0.070189155638218],[-0.064278431236744,0.06850291788578,-0.010638565756381],[-0.043197363615036,0.01471414975822,-0.0062608332373202]],[[-0.055382870137691,-0.0035759171005338,-0.079570330679417],[-0.05015280097723,0.053619828075171,-0.005924500990659],[-0.059954389929771,0.0021866206079721,0.066164553165436]],[[-0.003823668230325,0.00090002984507009,0.017077865079045],[-0.04449213296175,0.026682062074542,-0.048608556389809],[-0.1028618812561,0.080083787441254,-0.030583772808313]],[[0.081689789891243,0.02351694740355,0.035198539495468],[-0.048998359590769,-0.04263961315155,-0.0090672709047794],[0.020222201943398,0.023656651377678,-0.072863548994064]],[[-0.031753979623318,-0.027458833530545,-0.044921338558197],[0.032739654183388,-0.029221469536424,-0.013136487454176],[-0.00023341563064605,0.054649572819471,0.027800794690847]],[[0.055796191096306,0.0072249686345458,-0.010578040033579],[0.05670752376318,-0.061393674463034,-0.12665651738644],[0.013188576325774,0.058549135923386,0.052010390907526]],[[0.041596423834562,0.07843379676342,0.034111324697733],[-0.0018495749682188,-0.0040450878441334,-0.038527969270945],[-0.098899513483047,-0.02420780621469,0.047997042536736]],[[0.013727343641222,-0.044682919979095,-0.071793504059315],[0.044165331870317,0.025127097964287,-0.048763446509838],[0.07691802084446,0.046966623514891,-0.02991552837193]],[[0.054111320525408,-0.047223202884197,0.052093535661697],[0.10864406824112,0.097402572631836,0.00043511774856597],[-0.068957805633545,-0.072979331016541,-0.018564367666841]],[[0.036018777638674,0.01684626378119,0.08130419999361],[0.078415021300316,-0.015958663076162,0.0085422275587916],[0.008977816440165,0.055753000080585,0.010871849954128]],[[-0.02937675639987,-0.052793253213167,0.072235196828842],[-0.14385893940926,0.058577887713909,-0.031766250729561],[0.033089525997639,0.016139596700668,0.030047133564949]],[[0.1620132625103,0.012974109500647,-0.047607641667128],[0.021419512107968,0.005129961296916,0.067423842847347],[-0.10084676742554,0.041560936719179,-0.0056185889989138]],[[0.086001373827457,0.10644952952862,0.097433291375637],[-0.088645301759243,-0.024838214740157,-0.0028667210135609],[-0.12389380484819,-0.089587293565273,-0.031020622700453]],[[-0.036605909466743,0.0032215451356024,-0.085540622472763],[0.004083564504981,0.02325783111155,0.011007291264832],[0.047102801501751,0.036943469196558,0.037488762289286]],[[0.048795513808727,0.1160956248641,0.055629141628742],[-0.052649337798357,-0.045049358159304,-0.049626849591732],[0.12529163062572,0.063355885446072,-0.019329786300659]],[[-0.06157485768199,0.047588009387255,-0.033606644719839],[-0.055002849549055,-0.062711276113987,-0.033879719674587],[-0.041522305458784,-0.080801665782928,-0.015977026894689]],[[0.016728211194277,-0.094302408397198,0.085487261414528],[-0.027659649029374,0.10667135566473,0.054753765463829],[-0.020510399714112,0.095270901918411,0.027511948719621]],[[0.082401014864445,-0.052317481487989,0.11277432739735],[0.084087982773781,-0.14421692490578,0.056358475238085],[0.014884281903505,-0.042779345065355,0.067548185586929]],[[0.080336473882198,-0.002651063259691,0.12730479240417],[0.10988258570433,0.025286385789514,0.13058334589005],[0.12659622728825,-0.038934540003538,0.1021526157856]],[[-0.017165049910545,0.080906398594379,0.16497968137264],[0.015713170170784,-0.019696243107319,-0.031883656978607],[0.0067299646325409,0.10359958559275,-0.036772988736629]],[[-0.018143426626921,-0.073782563209534,-0.052328526973724],[0.0030025322921574,-0.0374267809093,-0.028126496821642],[-0.0029670493677258,0.05745666846633,0.031810279935598]],[[-0.073554255068302,-0.019958890974522,-0.017125902697444],[0.0046567604877055,0.047114904969931,-0.039595756679773],[0.048583947122097,-0.0056424499489367,-0.040750589221716]],[[-0.049063168466091,0.024125553667545,-0.11939376592636],[-0.011639507487416,0.11146929860115,-0.05139484256506],[0.17617419362068,-0.012821555137634,-0.0074919913895428]],[[-0.028635023161769,0.011362828314304,-0.011940201744437],[-0.041417367756367,-0.021043471992016,0.038030698895454],[-0.084527656435966,0.036700196564198,-0.0335533618927]],[[-0.036165256053209,-0.14383056759834,-0.097354240715504],[-0.055617894977331,-0.13339042663574,-0.083283968269825],[-0.15540398657322,-0.033224284648895,-0.0064912298694253]],[[0.080683834850788,-0.038392182439566,-0.10266830772161],[0.025780586525798,0.068303652107716,0.0088564855977893],[0.026963006705046,0.024810126051307,-0.068784706294537]],[[-0.016598019748926,0.096291325986385,0.014756963588297],[-0.064231559634209,0.022034337744117,0.0073590758256614],[-0.07908596098423,0.074732154607773,0.0089133819565177]],[[0.017002981156111,-0.016591764986515,-0.12100526690483],[0.071404434740543,0.049172256141901,-0.014762467704713],[0.073987573385239,0.078191973268986,-0.0057622636668384]],[[-0.077218092978001,0.14197401702404,-0.10227029770613],[0.023031922057271,0.018348757177591,0.029873982071877],[-0.18261553347111,-0.11647336930037,-0.011980367824435]],[[0.016886258497834,0.040723998099566,-0.062030553817749],[0.03503904491663,-0.16472461819649,-0.060916028916836],[0.06013111025095,-0.048976875841618,0.017168395221233]],[[0.072559297084808,-0.1140878200531,-0.020573349669576],[0.033588510006666,-0.014709230512381,-0.086785458028316],[-0.024388164281845,0.0062834355048835,-0.047521594911814]],[[-0.058211397379637,-0.067189931869507,0.0010447325184941],[0.026930348947644,0.050524208694696,0.052553206682205],[0.086644165217876,0.0027059132698923,-0.024785114452243]],[[0.091178804636002,0.14945060014725,-0.093059852719307],[0.12891754508018,0.13080994784832,-0.043623778969049],[0.12664416432381,0.065312623977661,0.046236783266068]],[[-0.068513922393322,0.062170945107937,-0.096618093550205],[-0.046583782881498,0.0032886492554098,-0.06378909945488],[-0.019770691171288,-0.055269908159971,-0.069417752325535]],[[-0.010236908681691,0.0073725464753807,-0.0074404813349247],[-0.013175588101149,-0.038341917097569,0.02389170974493],[0.07924859970808,-0.062411829829216,-0.0049880254082382]],[[-0.15691713988781,-0.22635978460312,-0.14670605957508],[-0.15858954191208,-0.22856159508228,-0.1060611307621],[-0.28799825906754,-0.11137324571609,-0.043447885662317]],[[-0.057062685489655,-0.033319853246212,0.039171233773232],[-0.011024041101336,0.062137831002474,0.043532151728868],[0.019344702363014,-0.020181717351079,0.02922853268683]],[[-0.2172991335392,-0.13146214187145,-0.10081945359707],[-0.025481373071671,0.034551601856947,0.038118243217468],[0.019921109080315,-0.028729883953929,-0.015730988234282]],[[0.073701582849026,0.032371185719967,0.080569542944431],[0.093602322041988,0.08246237039566,0.10588147491217],[0.062894754111767,0.021358730271459,0.083110548555851]],[[-0.0066440375521779,-0.23264947533607,0.030539089813828],[-0.036093011498451,0.080097660422325,0.084392964839935],[-0.049536351114511,0.10367196053267,0.068845421075821]],[[-0.03118696436286,-0.019270246848464,0.002780205802992],[-0.071171894669533,0.027256844565272,-0.048760190606117],[-0.13868644833565,-0.11277318000793,0.05858951061964]],[[-0.071867726743221,-0.10147552937269,0.0756960734725],[-0.076428189873695,-0.098483540117741,-0.037176892161369],[0.12295917421579,-0.0020450067240745,-0.018197180703282]],[[0.0094562340527773,-0.002228775061667,0.07769513875246],[-0.028776979073882,-0.057111341506243,-0.041243389248848],[-0.020414503291249,-0.012665607966483,-0.034227840602398]],[[-0.01713708601892,-0.023317201063037,-0.087334178388119],[-0.080540560185909,0.0092236921191216,0.056181386113167],[0.044547606259584,0.058437913656235,-0.019806267693639]],[[-0.010635684244335,0.032458949834108,0.095399923622608],[0.0053522079251707,-0.038066428154707,0.063821867108345],[-0.031509026885033,-0.054710127413273,0.031587965786457]],[[-0.036144971847534,0.013096084818244,0.11113521456718],[0.054731044918299,-0.10750257223845,0.072730652987957],[0.11342097818851,-0.0057478058151901,-0.055489875376225]],[[-0.037612061947584,0.059018768370152,-0.020825048908591],[-0.0032791288103908,-0.040190223604441,-0.077290832996368],[-0.0013968566199765,-0.042131133377552,-0.07352639734745]],[[0.042541641741991,-0.051077257841825,0.020722528919578],[-0.066765822470188,0.04246062412858,0.056434113532305],[-0.019034892320633,-0.063850827515125,0.07400431483984]],[[0.037158064544201,0.023871190845966,0.12109249830246],[0.027630565688014,-0.07524162530899,0.042185787111521],[-0.0054252734407783,0.033570468425751,0.056826557964087]]],[[[-0.033351793885231,-0.0099225835874677,0.007858051918447],[0.00067682313965634,-0.10637921094894,0.060732811689377],[0.018252352252603,0.073416590690613,0.046273734420538]],[[-0.0043712481856346,0.10322669893503,0.025312792509794],[-0.0051743262447417,-0.0070057241246104,-0.036392454057932],[-0.03843717649579,-0.018439028412104,-0.020615899935365]],[[0.026211529970169,-0.040701080113649,-0.0008535428205505],[-0.042915780097246,-0.020458025857806,-0.023287514224648],[0.070853568613529,0.003305931109935,0.035732246935368]],[[-0.1589018702507,0.057294242084026,0.050306558609009],[-0.049378499388695,-0.1173842176795,-0.018507016822696],[0.020434334874153,-0.090614587068558,-0.013575103133917]],[[0.0056236288510263,-0.07853589951992,0.15151223540306],[-0.060756672173738,-0.026594944298267,-0.0032534813508391],[0.041306845843792,-0.024929407984018,0.0041280565783381]],[[-0.0012547556543723,-0.080661229789257,0.049484729766846],[0.032798051834106,0.004446619655937,0.02439727447927],[-0.096028819680214,-0.054298285394907,0.011769789271057]],[[-0.035068348050117,0.038725506514311,-0.011915176175535],[0.02610388211906,-0.01187258400023,0.03541948646307],[0.0049811420030892,0.053886208683252,-0.0036964882165194]],[[0.039110474288464,-0.022649904713035,-0.020376468077302],[-0.038716912269592,0.03272320330143,0.08460459113121],[-0.03140090033412,-0.014650619588792,0.037448335438967]],[[0.0053773783147335,0.060510061681271,-0.036206651479006],[0.025726027786732,-0.016271442174911,-0.022517513483763],[-0.012863583862782,0.014839881099761,-0.0048603937029839]],[[-0.096380367875099,0.099037997424603,-0.0037996305618435],[-0.017499575391412,0.016586748883128,-0.052835997194052],[0.034449532628059,-0.03505664691329,-0.023490542545915]],[[-0.097679443657398,0.083092644810677,0.017462220042944],[-0.025618433952332,-0.17834314703941,0.042460702359676],[-0.049220461398363,-0.010146301239729,0.033873680979013]],[[0.090826034545898,-0.074027441442013,-0.049469318240881],[-0.007759056519717,0.092572040855885,0.027588441967964],[0.00094474357319996,0.02514274045825,0.012344875372946]],[[-0.0072521809488535,0.022545155137777,0.011746749281883],[-0.18798813223839,0.12969322502613,0.065078862011433],[0.0034568584524095,-0.076937064528465,-0.027033131569624]],[[0.02242885902524,0.010313680395484,-0.040388129651546],[0.053624227643013,0.030421102419496,0.022806968539953],[0.13162685930729,-0.060625579208136,-0.021004026755691]],[[0.073710732161999,0.082915678620338,0.02312208712101],[-0.025961525738239,0.017773492261767,-0.10651428252459],[0.13891254365444,0.055441424250603,0.020340004935861]],[[0.04508876055479,0.013738897629082,0.05623035132885],[0.022870734333992,0.038998275995255,-0.027862368151546],[0.048710905015469,-0.044096454977989,-0.041654020547867]],[[0.038730353116989,0.088850893080235,-0.031293883919716],[0.016543328762054,-0.020037565380335,-0.014639315195382],[0.021692417562008,0.012829720973969,-0.010116132907569]],[[-0.020315999165177,-0.023404257372022,0.064320348203182],[0.057821415364742,0.0032314993441105,-0.032238990068436],[-0.042114764451981,0.061025965958834,0.11993575841188]],[[0.0063588912598789,-0.047776777297258,0.035095546394587],[-0.023640688508749,0.082811199128628,0.003914394415915],[0.022042581811547,-0.020902328193188,-0.017217854037881]],[[0.010836366564035,-0.024728585034609,0.019732134416699],[0.01216930616647,-0.02416536770761,-0.023674355819821],[-0.033137947320938,-0.031617313623428,0.0073966565541923]],[[0.12251775711775,0.020367382094264,0.050583243370056],[0.084785155951977,0.046714030206203,0.013706879690289],[-0.081839181482792,0.026927657425404,-0.070307888090611]],[[0.17147834599018,0.079951480031013,-0.098193436861038],[-0.059355232864618,-0.098707750439644,-0.018566410988569],[-0.00079038145486265,0.011275165714324,-0.040035273879766]],[[-0.089887201786041,0.031093219295144,-0.012553081847727],[-0.032093439251184,0.02904855273664,0.00026577056269161],[0.017540892586112,0.070680774748325,-0.0079333884641528]],[[-0.0042739445343614,0.048546515405178,-0.013738661073148],[-0.080880708992481,0.034561034291983,0.067759357392788],[-0.093642182648182,-0.063623026013374,0.019843390211463]],[[0.0092552434653044,0.04480579867959,0.084742948412895],[-0.009960113093257,-0.0042592440731823,-0.013410143554211],[0.02289898134768,-0.00819131731987,0.00035672914236784]],[[0.01616601459682,0.019263166934252,-0.012147163972259],[-0.088177308440208,-0.045328471809626,-0.021629920229316],[-0.069140486419201,0.055726371705532,-0.030310330912471]],[[-0.0038939970545471,-0.022528855130076,0.028895407915115],[0.076177299022675,0.0013792142271996,0.017667336389422],[0.045662555843592,0.054015781730413,0.045384354889393]],[[-0.068519361317158,0.044094048440456,-0.10711102932692],[0.053104441612959,-0.051454093307257,0.035261631011963],[0.0023070925381035,0.11207011342049,-0.060913391411304]],[[-0.13773903250694,0.18791009485722,0.024072425439954],[0.047063797712326,-0.0088865915313363,-0.0035286757629365],[-0.032685067504644,-0.10204303264618,-0.030373794957995]],[[-0.02426041662693,0.057495567947626,0.046335063874722],[0.053188066929579,-0.029010271653533,-0.026692215353251],[0.029266806319356,0.03831834346056,0.019021701067686]],[[-0.052198052406311,-0.062535770237446,-0.027818778529763],[0.055358730256557,-0.030642110854387,0.059208773076534],[-0.029333068057895,0.034632127732038,0.070320837199688]],[[-0.047454711049795,-0.046032268553972,0.042615603655577],[-0.018694980069995,0.056994412094355,-0.02674101665616],[-0.042495802044868,0.11749810725451,0.017518121749163]],[[0.0084787607192993,0.029604617506266,-0.078765690326691],[-0.07984883338213,-0.051903408020735,0.027893528342247],[-0.063684307038784,-0.016668636351824,-0.060107056051493]],[[0.0021434857044369,0.0048028649762273,-0.01242942083627],[-0.11561883985996,-0.021924449130893,0.081899709999561],[-0.033164214342833,-0.071664653718472,-0.044208262115717]],[[0.052532531321049,-0.0032054288312793,0.0073328693397343],[0.066508829593658,0.035132307559252,-0.013640501536429],[-0.024254538118839,-0.0094640646129847,-0.060424610972404]],[[-0.11278226226568,-0.045515645295382,0.0050199176184833],[0.01982513256371,-0.08182218670845,-0.049355637282133],[-0.082305029034615,0.00074219459202141,0.050198417156935]],[[0.050731882452965,-0.031983152031898,-0.065094873309135],[-0.027055736631155,0.05255588889122,-0.05092479288578],[0.036999732255936,0.014905688352883,-0.035143226385117]],[[-0.0043789888732135,-0.01119077205658,0.048713110387325],[0.031249519437551,0.0038592484779656,0.032066985964775],[-0.10326352715492,-0.02915296703577,-0.0094522014260292]],[[0.014950422570109,-0.066827587783337,0.045540921390057],[-0.08431538194418,0.072097815573215,-0.0068513914011419],[-0.016666071489453,-0.014927627518773,-0.014081485569477]],[[0.036458548158407,-0.051387574523687,0.012604531832039],[-0.086151115596294,-0.031403787434101,0.0045016617514193],[0.026719802990556,-0.0030558411963284,0.0097816186025739]],[[-0.053540959954262,0.059746891260147,0.022974528372288],[-0.12803007662296,-0.031186608597636,0.027945825830102],[0.047441139817238,0.00035764093627222,0.045948889106512]],[[0.041750602424145,0.011344581842422,-0.069230377674103],[-0.057832233607769,0.0085901189595461,-0.080976516008377],[0.060628283768892,0.047782011330128,0.030661785975099]],[[0.030409101396799,-0.050621703267097,0.10030397772789],[-0.012152600102127,-0.052934892475605,-0.020146368071437],[-0.016167322173715,0.072848871350288,-0.031227881088853]],[[-0.0098364530131221,-0.032806318253279,-0.038999982178211],[-0.023209180682898,-0.02368582598865,0.012529076077044],[-0.0084212543442845,-0.019758870825171,-0.094095766544342]],[[-0.085698693990707,-0.17058376967907,-0.035340692847967],[0.088519409298897,0.11515561491251,-0.10292810946703],[-0.020630909129977,-0.075382597744465,0.094660006463528]],[[-0.096586212515831,-0.036599233746529,-0.021875968202949],[0.0083377435803413,0.054852180182934,0.062535978853703],[0.0044141914695501,-0.015250886790454,-0.0077432570978999]],[[-0.0037446992937475,-0.021989079192281,-0.052095584571362],[-0.0041081430390477,-0.0035648057237267,-0.045063532888889],[0.0095820389688015,-0.026438007131219,-0.066700592637062]],[[0.069189429283142,-0.012725692242384,-0.092270977795124],[-0.045802172273397,0.037351433187723,-0.014766524545848],[0.040092404931784,0.02723141387105,0.040031384676695]],[[-0.094370633363724,0.03719337657094,0.045841559767723],[0.06675947457552,-0.11589033156633,0.010926040820777],[-0.041259631514549,0.055527467280626,0.033047519624233]],[[-0.010316940024495,-0.054090701043606,0.021980995312333],[0.075706213712692,-0.015390080399811,-0.013062654063106],[0.077607251703739,-0.0024710884317756,0.11281453818083]],[[-0.017682088539004,0.0086448565125465,-0.016678996384144],[0.087602704763412,0.020321346819401,-0.042214162647724],[-0.04897978156805,-0.10377066582441,-0.059080205857754]],[[0.010658857412636,0.038282748311758,-0.049043998122215],[-0.054961271584034,-0.032374363392591,0.0037186564877629],[0.043176237493753,-0.02351962774992,-0.045439321547747]],[[0.076330944895744,-0.071631222963333,0.049975179135799],[-0.029423661530018,0.049358103424311,-0.051066368818283],[0.058865092694759,-0.015653781592846,-0.037966933101416]],[[0.1068072244525,0.025430740788579,-0.1216249987483],[0.042422380298376,0.057353418320417,0.069912247359753],[0.00042825756827369,0.0082285404205322,0.028626892715693]],[[-0.043706960976124,0.0021925764158368,0.048912458121777],[-0.019552171230316,-0.11955577135086,-0.022697191685438],[-0.050051815807819,0.051170222461224,-0.022573493421078]],[[-0.0069073564372957,1.34877536766e-05,0.035924509167671],[-0.042685277760029,-0.076372809708118,0.015534140169621],[-0.039911214262247,-0.044492579996586,-0.012039041146636]],[[0.034641720354557,-0.008722297847271,-0.017342548817396],[0.039245188236237,0.0039810528978705,0.0011678521987051],[0.010391338728368,-0.071487843990326,-0.091943226754665]],[[-0.011447864584625,0.0093888537958264,0.042759396135807],[-0.048002764582634,-0.14973640441895,0.038759600371122],[-0.01888912729919,-0.16233842074871,-0.050473913550377]],[[0.046820804476738,-0.10894078016281,-0.04218377545476],[0.05321978032589,0.055510856211185,-0.040026515722275],[0.031731721013784,-0.032284654676914,0.11798775941133]],[[0.026081740856171,0.036279138177633,0.011377386748791],[0.066046059131622,-0.025651935487986,-0.040751583874226],[0.0067414669319987,-0.072635196149349,0.015889102593064]],[[-0.010791254229844,-0.098262578248978,-0.074114926159382],[0.055229764431715,-0.024671444669366,0.028461487963796],[0.064406424760818,-0.029513666406274,-0.073919638991356]],[[0.014725767076015,0.034205935895443,0.043690234422684],[-0.067909702658653,-0.037538845092058,0.079812526702881],[-0.056718830019236,-0.076468832790852,0.097908355295658]],[[-0.0771594196558,0.012263405136764,0.01233974751085],[0.011695618741214,0.13163651525974,-0.025306932628155],[-0.035429861396551,0.013192313723266,-0.011666283942759]],[[-0.023334983736277,0.0089627802371979,0.022800654172897],[0.083982467651367,0.031635478138924,-0.023252729326487],[-0.010117187164724,0.01531914062798,-0.062025282531977]]],[[[0.0020790887065232,-0.019963294267654,0.004389354493469],[-0.097231842577457,0.074554286897182,-0.021220875903964],[0.03230894729495,0.035202778875828,0.060660757124424]],[[-0.064289674162865,-0.049661844968796,-0.0098387785255909],[-0.013488604687154,-0.0077913934364915,-0.030092550441623],[0.018946437165141,-0.045517403632402,-0.016800813376904]],[[0.013627412728965,-0.069851160049438,0.12191404402256],[-0.072083249688148,-0.067928902804852,0.010419339872897],[-0.010902365669608,-0.01524468138814,0.042170815169811]],[[0.0008259309688583,0.074909955263138,0.0043478417210281],[0.025516843423247,0.017406523227692,-0.037508241832256],[-0.033170327544212,-0.051877062767744,0.031346578150988]],[[0.045015335083008,0.03298481926322,-0.029083721339703],[-0.034496624022722,-0.0089175682514906,-0.022605819627643],[-0.0040787565521896,-0.011751778423786,0.14364722371101]],[[0.031384963542223,0.047026351094246,0.067730396986008],[0.0027592235710472,-0.14362320303917,0.051787495613098],[-0.10333457589149,-0.023990601301193,0.049801826477051]],[[-0.0087657766416669,0.032321635633707,-0.054860569536686],[-0.06019901111722,0.057621598243713,0.059812061488628],[-0.017164906486869,-0.051873732358217,0.040477626025677]],[[-0.036509402096272,0.01033769454807,0.041582126170397],[0.050676673650742,0.019570445641875,-0.021240759640932],[-0.014525300823152,-0.026974840089679,-0.063140667974949]],[[0.041542675346136,-0.066245384514332,-0.015821617096663],[-0.043403044342995,-0.059127438813448,-0.0012996358564124],[0.05590682849288,0.045601788908243,-0.099320583045483]],[[0.054446090012789,-0.030135150998831,-0.044855605810881],[-0.024016750976443,0.022098038345575,-0.075197815895081],[-0.063845612108707,-0.0036852294579148,0.023821776732802]],[[0.0075804628431797,-0.0053845448419452,-0.056298982352018],[0.051177520304918,-0.12720802426338,0.13149644434452],[0.062574848532677,0.10025328397751,-0.075538717210293]],[[-0.046779993921518,-0.010594242252409,-0.02690670825541],[-0.034600596874952,-0.0051874099299312,0.041530150920153],[0.0043481690809131,-0.01212752610445,-0.029578663408756]],[[-0.044908154755831,0.0075707589276135,0.0072157462127507],[0.021877037361264,0.054506570100784,-0.021668964996934],[-0.01941061578691,0.069075912237167,0.014982396736741]],[[0.082069389522076,-0.013445797376335,0.00187006033957],[0.086966723203659,0.058059811592102,0.017551818862557],[0.016684116795659,0.023379659280181,-0.033349499106407]],[[0.047462519258261,-0.10929673910141,-0.027015654370189],[-0.074483998119831,0.013769725337625,0.060016095638275],[0.050037998706102,-0.037679430097342,0.020076146349311]],[[0.018458914011717,0.043225023895502,-0.0093710459768772],[0.03390247374773,-0.065919309854507,0.010779038071632],[0.050446067005396,0.015593890100718,0.026213016360998]],[[0.029158473014832,0.019729509949684,-0.014626638963819],[-0.015151831321418,0.0080423317849636,-0.03324943780899],[0.048241142183542,0.076541401445866,-0.012029001489282]],[[0.038685422390699,0.056644167751074,0.023474575951695],[-0.061518501490355,0.047200184315443,0.021108500659466],[-0.016903437674046,-0.0666538849473,-0.02006796002388]],[[-0.029655382037163,0.036161173135042,0.051443044096231],[-0.044429391622543,0.0043315785005689,-0.052171785384417],[0.016433365643024,0.015743950381875,0.049185499548912]],[[-0.041564732789993,-0.030735542997718,0.024651497602463],[-0.059671305119991,-0.014559643343091,-0.04823387786746],[0.013929706066847,-0.0019681968260556,-0.0027273031882942]],[[0.032054323703051,0.026709530502558,0.0059400424361229],[0.028667574748397,0.0040162061341107,-0.036747355014086],[0.069747880101204,0.0091171199455857,-0.028736189007759]],[[-0.046938542276621,-0.019481720402837,-0.02762727625668],[0.033126465976238,0.017649715766311,-0.0087791979312897],[0.029025584459305,0.055634196847677,0.025266952812672]],[[0.013837519101799,0.053131464868784,0.0029535256326199],[0.012885653413832,-0.00916419737041,-0.019770540297031],[-0.04764299467206,-0.010328731499612,0.012024913914502]],[[-0.0064573846757412,-0.030227262526751,0.052618626505136],[0.038863595575094,0.041898563504219,-0.002262347843498],[-0.04820766672492,-0.025614166632295,-0.034815020859241]],[[-0.022504307329655,-0.035076860338449,0.04643601924181],[0.030379327014089,-0.14180056750774,0.014005737379193],[-0.014875144697726,0.025875562801957,0.028713118284941]],[[0.03630606085062,0.054850488901138,-0.071901984512806],[-0.060792125761509,-0.0068849693052471,0.05092516541481],[-0.1323416531086,-0.013373530469835,-0.026458309963346]],[[-0.049023427069187,-0.021484846249223,0.010068585164845],[0.021156610921025,-0.0028655384667218,0.047662973403931],[-0.019410690292716,0.02814506739378,-0.00080413359683007]],[[0.045839264988899,-0.023254824802279,0.0015898570418358],[-0.0079078171402216,-0.090620458126068,0.07615389674902],[0.085948072373867,0.053563077002764,0.023332556709647]],[[-0.076399751007557,-0.0043051978573203,-0.027067251503468],[-0.044997174292803,-0.001881922245957,0.029832322150469],[-0.045318275690079,-0.019795207306743,-0.065316691994667]],[[-0.032400604337454,-0.020762922242284,-0.079895332455635],[0.027540639042854,0.0046777189709246,-0.050632856786251],[-0.022790137678385,0.032401748001575,-0.050130285322666]],[[-4.525386611931e-05,0.015838239341974,-0.0035288447979838],[-0.1164640635252,-0.043701816350222,-0.00585001334548],[-0.027985213324428,-0.0096372961997986,-0.016171813011169]],[[0.031148398295045,0.081320405006409,-0.042627137154341],[0.029879841953516,0.062177363783121,-0.027265409007668],[-0.0062300995923579,-0.0045076725073159,-0.0039940187707543]],[[-0.09830991178751,-0.03235862031579,-0.0084322271868587],[0.013660525903106,-0.042703676968813,-0.044636901468039],[0.063932873308659,-0.040555641055107,-0.092499159276485]],[[0.0037918337620795,-0.039602052420378,0.021796219050884],[-0.017014138400555,0.027019893750548,0.1131502315402],[0.069007992744446,-0.086857333779335,-0.048299707472324]],[[-0.00396638084203,-0.021525733172894,-0.016026640310884],[0.05511999130249,-0.025268744677305,-0.03836714476347],[0.046605799347162,-0.12186306715012,-0.020240331068635]],[[-0.06658623367548,-0.031043659895658,0.027763139456511],[-0.057359874248505,0.02436238899827,0.011210348457098],[-0.092145100235939,-0.090006105601788,-0.035745833069086]],[[0.073364749550819,-0.11342220753431,-0.018677838146687],[-0.012354401871562,0.036733031272888,0.013074273243546],[0.021482827141881,-0.0010427890811116,0.051433514803648]],[[0.039779767394066,-0.023194191977382,-0.10144297778606],[-0.05587850138545,-0.0022549729328603,-0.037929572165012],[-0.075461998581886,0.044492743909359,0.0016175317578018]],[[0.04012007266283,0.040384747087955,-0.061119705438614],[-0.0018944429466501,-0.014012358151376,0.039499286562204],[-0.036125797778368,-0.062037270516157,0.018092146143317]],[[-0.018758777529001,0.017704864963889,-0.0085626803338528],[0.041336506605148,0.038117650896311,0.010912532918155],[-0.084822207689285,-0.0024565644562244,0.027168242260814]],[[0.041971396654844,-0.10265233367682,0.043764725327492],[0.0027904876042157,0.0011130544589832,-0.055270817130804],[-0.02678476087749,0.0031266869045794,0.00066406308906153]],[[-0.12054344266653,0.025856390595436,0.048552896827459],[0.05651393905282,0.017607759684324,-0.055101130157709],[-0.058631781488657,0.11237840354443,-0.015936244279146]],[[-0.0060243112966418,-0.0089094461873174,0.01973332837224],[-0.018183000385761,-0.0492845736444,0.12995991110802],[-0.030079524964094,0.0567218773067,0.031575042754412]],[[-0.052152074873447,-0.042965445667505,0.031161038205028],[-0.026820641011,-0.017033228650689,-0.0096362689509988],[-0.062843330204487,-0.0009170540724881,-0.051428869366646]],[[0.047589659690857,0.0043057794682682,-0.034618489444256],[0.029862085357308,0.027015700936317,0.038357451558113],[-0.015762496739626,-0.060728210955858,-0.059796217828989]],[[-0.0094975065439939,0.092104248702526,-0.047945644706488],[0.03537991642952,0.088412031531334,-0.0628507360816],[-0.08951985090971,0.013705989345908,0.02253864146769]],[[-0.033892408013344,-0.036188613623381,-0.0052927979268134],[-0.042779743671417,-0.03446701914072,0.024498701095581],[-0.010665601119399,-0.041326213628054,-0.059315372258425]],[[0.013792088255286,-0.062217548489571,-0.044309418648481],[0.061936520040035,0.082236759364605,-0.0054552843794227],[-0.10146744549274,-0.069891847670078,-0.036755934357643]],[[-0.026561290025711,-0.029624121263623,-0.036881778389215],[-0.14116610586643,0.0085212327539921,0.017975574359298],[-0.010040931403637,-0.1282234787941,-0.13936701416969]],[[-0.00044247123878449,0.012913878075778,0.02859497629106],[0.0037569031119347,0.041241712868214,-0.094724245369434],[-0.028279937803745,0.036143943667412,-0.037592470645905]],[[0.09626429527998,0.012234062887728,0.020362328737974],[0.021395340561867,0.042119842022657,0.0086610876023769],[-0.015541772358119,-0.061999373137951,-0.049926273524761]],[[-0.020088391378522,-0.0055521614849567,-0.0030943269375712],[-0.011141560040414,-0.029171906411648,0.05613961443305],[-0.0077936942689121,-0.018908424302936,-0.078612826764584]],[[-0.00989621412009,0.032329078763723,-0.056144963949919],[-0.028771094977856,0.064240776002407,-0.056338671594858],[-0.046627808362246,0.010502547025681,0.0087573304772377]],[[0.15095812082291,0.032994456589222,0.062187608331442],[0.12427189946175,0.13281080126762,0.0010355876293033],[0.097190961241722,0.040179520845413,-0.0033805998973548]],[[-0.030693104490638,-0.030321216210723,-0.018492631614208],[0.0053674937225878,-0.060311578214169,-0.037348326295614],[-0.057400710880756,-0.045921798795462,-0.025817096233368]],[[0.02628069370985,-0.054699223488569,-0.024424396455288],[-0.056643277406693,0.026657152920961,-0.038979344069958],[-0.011949271894991,0.01257324591279,-0.062834545969963]],[[-0.045254025608301,-0.00019744674500544,0.033430475741625],[0.021605355665088,0.085004732012749,0.047957710921764],[0.027526585385203,-0.0092058628797531,-0.019477598369122]],[[-0.013163331896067,0.019159549847245,-0.0026890428271145],[0.024327298626304,0.053776364773512,-0.058990102261305],[-0.039316534996033,-0.04371227696538,0.019528416916728]],[[0.0094979992136359,0.055707339197397,-0.032855316996574],[0.011927079409361,-0.0095461988821626,0.036939613521099],[-0.0016193018527701,-0.0032900355290622,-0.014315943233669]],[[0.063417240977287,-0.019991995766759,-0.028971867635846],[-0.029623541980982,0.060256063938141,-0.031955063343048],[0.042695268988609,0.032763224095106,-0.0047515844926238]],[[-0.044839359819889,0.0029780257027596,-0.06405957788229],[0.030673142522573,-0.040456149727106,-0.0044025685638189],[-0.090810477733612,0.029586415737867,-0.095513917505741]],[[0.022615095600486,-0.10545504838228,-0.15191671252251],[-0.029346065595746,-0.057624187320471,-0.044057160615921],[-0.049601823091507,0.0028387687634677,-0.010025791823864]],[[0.065648071467876,-0.041723545640707,0.026159897446632],[-0.045398194342852,-0.026297593489289,0.00012174100265838],[-0.016600536182523,-0.045910887420177,0.0015317876823246]],[[-0.099804796278477,0.036950904875994,0.045296981930733],[0.0054028336890042,-0.037571635097265,-0.0036446019075811],[-0.059590004384518,0.078531086444855,0.042085729539394]]],[[[-0.24738158285618,0.020368928089738,-0.04559389129281],[0.010545160621405,0.019499516114593,0.024917118251324],[0.021975392475724,-0.050371631979942,-0.035393886268139]],[[-0.052527241408825,-0.044671315699816,0.023292923346162],[-0.041922479867935,0.04301080852747,-0.067793771624565],[-0.0044816145673394,0.030668457970023,0.0091516962274909]],[[0.029065540060401,0.084821991622448,-0.092677913606167],[0.029275624081492,0.018840489909053,-0.028904149308801],[0.10802589356899,0.034160289913416,0.020454013720155]],[[0.0082635646685958,0.0072870370931923,-0.099778197705746],[0.066940359771252,0.060443267226219,-0.009564490057528],[0.0019420654280111,0.021319655701518,-0.07702761143446]],[[0.0012493879767135,0.0017480384558439,0.0061937435530126],[-0.012974328361452,0.081227123737335,-0.035490117967129],[-0.00015160143084358,-0.071110352873802,0.055830206722021]],[[0.082934610545635,0.0065998858772218,0.02363783493638],[0.037685681134462,-0.010347506031394,-0.041784424334764],[0.02240532822907,0.017909992486238,-0.11521534621716]],[[0.025789549574256,-0.1187299489975,0.0021809795871377],[0.036555990576744,-0.041237019002438,-0.033566329628229],[-0.080187954008579,-0.10547295212746,-0.0039811306633055]],[[0.055713452398777,0.036928582936525,-0.030706658959389],[-0.015268980525434,-0.064182743430138,-0.11200039833784],[0.035727169364691,0.010757745243609,0.024953151121736]],[[-0.051461111754179,0.061266675591469,0.020210269838572],[0.088959135115147,-0.0096411788836122,0.0058000469580293],[-0.066065184772015,-0.034476760774851,0.033985402435064]],[[0.016233243048191,-0.01648973301053,-0.027560133486986],[0.14090625941753,-0.017472499981523,-0.074825882911682],[0.049573443830013,-0.063974641263485,0.0023020142689347]],[[-0.092570103704929,-0.027580261230469,-0.029926957562566],[-0.056379806250334,-0.013620727695525,0.037888906896114],[-0.054314937442541,0.034876801073551,0.0019302451983094]],[[0.036420620977879,0.13144443929195,-0.016974173486233],[0.081396259367466,0.034092862159014,0.065294958651066],[0.05299536511302,0.010417855344713,-0.0022681136615574]],[[0.0088151674717665,0.056606449186802,-0.0023206586483866],[0.0054261703044176,-0.066904217004776,0.11714252084494],[-0.0040559200569987,0.036550741642714,-0.10091242194176]],[[-0.022015390917659,0.055147852748632,-0.045144345611334],[-0.10913179069757,0.040986984968185,0.042976472526789],[0.076683528721333,-0.027538571506739,0.14134901762009]],[[-0.016241794452071,0.050417635589838,-0.10573049634695],[0.02478894405067,-0.047480303794146,-0.01212434284389],[0.048082623630762,-0.017527785152197,-0.0051154969260097]],[[-0.031974893063307,-0.081452749669552,0.016255829483271],[-0.017719067633152,-0.0064491545781493,0.075501903891563],[0.07163642346859,-0.065276525914669,0.010984811931849]],[[-0.066346444189548,0.021764988079667,-0.050735261291265],[0.027202824130654,-0.077435337007046,0.06362933665514],[0.037499997764826,-0.0088695548474789,-0.014993066899478]],[[0.027299221605062,-0.21070401370525,0.00026578802498989],[0.063389495015144,0.075203098356724,-0.0018263448728248],[-0.02818207629025,-0.13510246574879,0.022318299859762]],[[0.079019092023373,-0.041165824979544,-0.0096602970734239],[0.024114595726132,-0.052838709205389,-0.00030405330471694],[0.017537649720907,-0.018770270049572,-0.00011021671525668]],[[-0.031693354249001,0.020619194954634,0.015572188422084],[-0.073891900479794,-0.015546063892543,-0.048579394817352],[0.086187019944191,-0.054626110941172,-0.044723194092512]],[[-0.097360700368881,0.017969958484173,-0.072708174586296],[0.0386728271842,0.015744980424643,-0.043866068124771],[0.12439817935228,0.054061334580183,-0.056298665702343]],[[-0.067770704627037,0.18720206618309,-0.051951430737972],[-0.078213229775429,-0.17064590752125,0.10247799754143],[0.031945422291756,0.060088962316513,0.024616315960884]],[[-0.0089916195720434,-0.012182737700641,0.05868786200881],[0.044455863535404,-0.017652593553066,0.0035299216397107],[0.0055557903833687,-0.040517460554838,-0.063563972711563]],[[-0.05316261574626,0.058761738240719,-0.002189782448113],[-0.048007760196924,0.052022282034159,-0.067632213234901],[-0.018218668177724,0.035639598965645,0.059915732592344]],[[-0.012820583768189,0.13906599581242,-0.12356113642454],[-0.06743810325861,-0.030868256464601,-0.044734142720699],[-0.01050076354295,0.01987005956471,-0.028968941420317]],[[-0.0077143860980868,-0.01243104133755,-0.030249578878284],[-0.075776837766171,0.026432985439897,0.031755294650793],[-0.0070912577211857,0.05991130694747,-0.02929924055934]],[[0.065088897943497,-0.020826021209359,0.018896205350757],[-0.049598108977079,-0.013968476094306,0.067271672189236],[-0.10482504218817,-0.13601604104042,-0.079483516514301]],[[0.022436851635575,-0.10086050629616,0.056719869375229],[0.029009435325861,0.0027761813253164,0.023517848923802],[0.11052836477757,0.063696980476379,0.0096800588071346]],[[-0.017849745228887,0.010202707722783,-0.0021471020299941],[-0.056696716696024,-0.09454870223999,0.0013803238980472],[-0.0015703386161476,-0.0086834467947483,0.0056259166449308]],[[0.10371229052544,-0.097608350217342,-0.067314475774765],[-0.0019230524776503,-0.067852348089218,-0.045916225761175],[0.094216056168079,0.025094848126173,-0.087473228573799]],[[0.059695176780224,0.013652368448675,-0.032174088060856],[-0.0059033506549895,0.056375160813332,-0.044579893350601],[-0.047003600746393,0.023406883701682,-0.092440694570541]],[[-0.091648951172829,0.059151884168386,-0.091162674129009],[0.032888911664486,0.12974089384079,-0.043519377708435],[-0.080799542367458,0.0077291144989431,-0.0063892821781337]],[[0.040497951209545,0.090318739414215,-0.11234466731548],[0.024038635194302,0.16788168251514,-0.024068143218756],[-0.15180049836636,-0.030759729444981,0.0031556198373437]],[[-0.037266723811626,0.072050385177135,-0.047616381198168],[-0.075651235878468,0.0095873521640897,-0.0020489781163633],[-0.054293259978294,-0.030578173696995,-0.02165955491364]],[[0.031051341444254,-0.055716969072819,-0.039166085422039],[-0.037789832800627,-0.049517124891281,-0.0075165969319642],[-0.01881848089397,0.029982363805175,-0.023715108633041]],[[-0.10145483911037,-0.016559896990657,-0.12028101831675],[-0.060648504644632,-0.13342392444611,-0.079117886722088],[-0.1049295142293,-0.067585155367851,-0.062424331903458]],[[0.031442780047655,-0.07092223316431,0.040165137499571],[0.070006504654884,0.023641837760806,-0.066371962428093],[-0.040619403123856,-0.0052837156690657,-0.06476417183876]],[[-0.06294709444046,0.10497503727674,0.020805543288589],[-0.025422532111406,0.031627167016268,0.11036659032106],[-0.058188315480947,-0.06867528706789,-0.050395399332047]],[[0.014342776499689,0.088550493121147,-0.080349862575531],[-0.053174272179604,0.030614765360951,-0.10553044825792],[-0.055654808878899,0.078942768275738,-0.059801086783409]],[[-0.13648796081543,0.057185996323824,0.11403207480907],[0.0037584695965052,-0.061210945248604,-0.13902339339256],[0.020674549043179,0.090719178318977,0.095040440559387]],[[0.019199004396796,0.060111295431852,0.0043991515412927],[-0.098299697041512,0.076157674193382,0.045316945761442],[-0.03052644059062,-0.00019920113845728,-0.046123307198286]],[[-0.026396097615361,-0.0091264192014933,0.037953894585371],[0.021895876154304,-0.1099951416254,-0.061535470187664],[0.04565766081214,0.074949406087399,-0.088783919811249]],[[-0.1291338801384,-0.019407568499446,0.10547954589128],[-0.0086301323026419,-0.16147801280022,-0.0014719793107361],[-0.023451086133718,0.10319671779871,0.10206583142281]],[[-0.030131505802274,-0.002281418768689,-0.032649923115969],[0.024735406041145,-0.034967884421349,0.040573246777058],[-0.0070743458345532,-0.054779011756182,0.018757099285722]],[[-0.10507852584124,0.203767567873,-0.10510843247175],[-0.11097218841314,0.057219784706831,-0.11721874028444],[-0.032926835119724,0.2221951186657,-0.16895382106304]],[[0.018154306337237,-0.083472587168217,0.08510997146368],[0.090572759509087,-0.054797030985355,0.045052196830511],[-0.014951075427234,0.036438520997763,-0.06587702780962]],[[-0.00082021183334291,0.16225433349609,-0.010286814533174],[-0.043451745063066,0.03668225556612,-0.066493935883045],[-0.015199214220047,0.11509595811367,0.022532934322953]],[[0.025726711377501,-0.038593128323555,0.056299921125174],[-0.038461063057184,-0.020042654126883,-0.031362909823656],[-0.0096604218706489,0.08726329356432,-0.061336830258369]],[[-0.12543575465679,0.079356521368027,-0.035752322524786],[0.03872898593545,-0.039357718080282,-0.09711679071188],[-0.060130339115858,0.0081351911649108,-0.0033070426434278]],[[0.021806495264173,-0.10118206590414,0.11820501834154],[-0.050571173429489,-0.029049675911665,-0.056883085519075],[0.014281355775893,-0.025323785841465,0.011577882803977]],[[-0.079094409942627,0.019066980108619,-0.038780879229307],[-0.0388771481812,0.046503033488989,0.0564328096807],[-0.007651069201529,-0.017867648974061,-0.048753444105387]],[[0.039071142673492,-0.026670597493649,0.053445782512426],[0.02724570967257,-0.0032195255625993,-0.040903154760599],[-0.013630914501846,0.086483024060726,0.027850046753883]],[[-0.13575203716755,0.033590409904718,-0.030580891296268],[0.024046583101153,-0.008609252050519,-0.0029935170896351],[-0.072606667876244,-0.056558083742857,-0.066429667174816]],[[0.029968976974487,0.0098154433071613,0.10421847552061],[-0.0080778393894434,0.072541773319244,-0.042480666190386],[-0.01283722370863,0.060353860259056,0.12111210078001]],[[0.055485691875219,-0.0050025517120957,0.080810964107513],[-0.01024576369673,-0.048671845346689,-0.024847997352481],[0.04938118904829,-0.014310887083411,0.053049057722092]],[[0.047952301800251,-0.0089368596673012,0.065469682216644],[-0.012283362448215,-0.033160388469696,-0.032558206468821],[-0.001580753014423,-0.015453564934433,0.021275024861097]],[[-0.014692277647555,-0.0013159089721739,0.04525400698185],[0.0077689825557172,0.033476028591394,-0.045040339231491],[-0.069697454571724,-0.012264235876501,0.11530814319849]],[[0.0025652679614723,0.011446027085185,-0.075330130755901],[-0.052119605243206,-0.072616584599018,0.037138145416975],[0.044031597673893,-0.014731344766915,-0.0017466150457039]],[[0.086760140955448,-0.071115501224995,-0.044766377657652],[0.0034064401406795,-0.035394307225943,-0.023687094449997],[-0.06112277880311,0.16613060235977,0.060310583561659]],[[-0.020392278209329,0.031704403460026,0.01334775518626],[0.0011405202094465,0.0032919223885983,0.016539881005883],[-0.035134840756655,0.045844785869122,0.039472162723541]],[[-0.060848284512758,-0.075376883149147,-0.10797952860594],[-0.018964963033795,-0.028227912262082,-0.0013355939881876],[0.076018266379833,0.02014347538352,0.07160809636116]],[[-0.081147223711014,-0.063808940351009,-0.014586470089853],[0.091935746371746,0.012150913476944,0.038197614252567],[-0.051604688167572,-0.045124139636755,-0.054810099303722]],[[-0.050773840397596,-0.060655657202005,0.040023431181908],[0.089552290737629,-0.010656110942364,-0.064043775200844],[-0.027830589562654,-0.038255412131548,0.0046058832667768]],[[0.046335529536009,-0.06555412709713,0.0501290820539],[-0.0038324315100908,-0.038832377642393,0.082309916615486],[-0.014055780135095,-0.017899330705404,0.077976264059544]]],[[[0.019516976550221,0.0091738495975733,0.037289462983608],[-0.056294661015272,0.058437515050173,-0.030698157846928],[0.004448582418263,-0.056505538523197,-0.025257183238864]],[[-0.017951065674424,0.13198609650135,0.091779500246048],[-0.0026326400693506,-0.031379710882902,-0.046858415007591],[0.076815843582153,0.090609028935432,-0.0046040359884501]],[[-0.057557947933674,-0.0035402318462729,0.023409429937601],[-0.014087446033955,0.0051381876692176,0.02258481271565],[0.062007520347834,-0.023050427436829,0.014008480124176]],[[-0.12135784327984,-0.036981161683798,0.070822305977345],[-0.013188937678933,-0.13475468754768,0.095964893698692],[0.054857138544321,-0.048352852463722,-0.19895677268505]],[[-0.088694825768471,-0.18555411696434,0.041434422135353],[0.02209347859025,-0.12884978950024,-0.049272995442152],[-0.089221939444542,0.0530707500875,-0.029716739431024]],[[-0.018087273463607,-0.074912369251251,-0.013513838872313],[-0.027073938399553,-0.16976761817932,0.0035637009423226],[0.0098760742694139,-0.021354835480452,-0.045491062104702]],[[-0.061312451958656,-0.079528629779816,-0.037295185029507],[0.020003607496619,-0.022593142464757,0.032665062695742],[-0.020383896306157,0.035498358309269,0.037142489105463]],[[0.15006577968597,0.073862500488758,-0.043386943638325],[0.08703176677227,0.094063803553581,0.015991093590856],[-0.077106267213821,-0.16889882087708,-0.059208255261183]],[[-0.066619545221329,0.025453083217144,-0.041497770696878],[0.03380100056529,0.097402051091194,-0.083520404994488],[-0.0029402147047222,-0.068994216620922,0.075213305652142]],[[-0.10632465034723,-0.022405359894037,0.024521691724658],[-0.084437444806099,0.067418709397316,-0.003737227525562],[-0.015155848115683,0.00036919859121554,-0.03713708370924]],[[0.060477197170258,-0.059921033680439,-0.057437032461166],[0.079352170228958,0.017645066604018,-0.054774049669504],[-0.020725654438138,-0.15685822069645,-0.099730968475342]],[[-0.066145218908787,0.073318302631378,0.0027405885048211],[0.024437906220555,0.042164161801338,-0.026500821113586],[-0.080142132937908,-0.039289820939302,-0.028487423434854]],[[-0.12002085149288,-0.054057527333498,0.038757119327784],[-0.1652574390173,-0.29621198773384,-0.066243752837181],[-0.1108630001545,-0.091825291514397,-0.21436507999897]],[[0.099405758082867,0.021956807002425,0.0066041224636137],[0.10861356556416,0.078541584312916,-0.0015197813045233],[0.020762544125319,0.033544488251209,-0.048950735479593]],[[0.0023068252485245,-0.073737740516663,-0.064697183668613],[-0.025143852457404,-0.030813073739409,0.041141085326672],[0.0053833173587918,0.02844326198101,0.024502154439688]],[[-0.022812789306045,-0.0035662658046931,0.013643622398376],[0.025054527446628,-0.0057499180547893,-0.072132714092731],[0.021132564172149,0.024764386937022,0.017215566709638]],[[-0.13227641582489,0.034454107284546,0.050402592867613],[-0.006337022408843,-0.0069348430261016,-0.021677883341908],[0.050647482275963,0.064734309911728,-0.02694577910006]],[[-0.15446899831295,-0.10147394984961,-0.051923040300608],[-0.11008114367723,0.06643483787775,-0.00033769581932575],[-0.079084061086178,0.013500175438821,0.052480135113001]],[[0.080276735126972,0.066948138177395,-0.031479097902775],[-0.038233391940594,-0.036846183240414,0.01123144198209],[0.080653376877308,0.044466078281403,0.066895432770252]],[[-0.057447522878647,-0.034388951957226,-0.10260240733624],[0.014248297549784,-0.070278361439705,-0.0044168210588396],[0.0072984253056347,-0.033070996403694,0.010402277112007]],[[-0.034644477069378,0.045919466763735,-0.13651295006275],[-0.03369814530015,0.022390354424715,0.018836788833141],[-0.033917117863894,0.05361719802022,0.012044369243085]],[[0.033607270568609,-0.077427312731743,0.020215375348926],[-0.0018111801473424,-0.12082808464766,-0.023036777973175],[-0.027842773124576,-0.040586195886135,-0.057264495640993]],[[-0.068600751459599,-0.059900134801865,0.00757045019418],[-0.010780414566398,-0.0053131142631173,0.059531401842833],[-0.021868472918868,0.071389153599739,0.053739544004202]],[[-0.079493254423141,0.017507394775748,-0.06279032677412],[-0.068561181426048,-0.029514145106077,-0.046604637056589],[-0.089078240096569,-0.026905696839094,-0.14796687662601]],[[-0.033407494425774,0.010180396027863,-0.078277625143528],[-0.074141673743725,-0.027897702530026,0.012509667314589],[-0.016525754705071,-0.036689907312393,0.028942899778485]],[[0.031109359115362,0.010483794845641,0.0090282587334514],[0.10365331918001,0.049844834953547,-0.063797600567341],[-0.026454593986273,-0.06280180811882,-0.048128135502338]],[[-0.048524782061577,-0.10496459156275,-0.078068368136883],[0.02201278321445,0.096437640488148,-0.031902495771646],[-0.088020101189613,0.10573418438435,-0.007413656450808]],[[-0.10862782597542,-0.11354726552963,-0.13701276481152],[-0.029398975893855,-0.098521612584591,-0.028727082535625],[-0.017383571714163,0.030398197472095,0.069005146622658]],[[0.038089603185654,0.06797006726265,0.043010804802179],[0.043834552168846,-0.016828011721373,0.031872104853392],[-0.019095046445727,-0.038975968956947,0.020621618255973]],[[-0.13645289838314,-0.13412563502789,-0.027537422254682],[-0.17295603454113,-0.26440006494522,-0.005522399675101],[-0.10988314449787,-0.04923901706934,-0.1002933755517]],[[0.056240949779749,-0.012472580187023,0.080987818539143],[-0.029976958408952,0.039203226566315,0.0095260441303253],[0.010413327254355,0.052019935101271,0.055265605449677]],[[0.092708826065063,-0.0067098075523973,0.041478611528873],[0.067644990980625,-0.0010177169460803,-0.031610894948244],[-0.10559474676847,0.00702945003286,0.063475035130978]],[[-0.028031408786774,-0.067406721413136,-0.05555485188961],[0.0012759214732796,0.050114311277866,-0.0052683604881167],[-0.023617530241609,0.041245561093092,-0.099220164120197]],[[-0.0552495457232,0.072924949228764,-0.052792631089687],[0.046410329639912,-0.054569497704506,0.027382500469685],[0.091691054403782,-0.0071634068153799,0.037817638367414]],[[-0.0060587455518544,0.062637060880661,-0.036945462226868],[0.024688839912415,0.018634194508195,-0.015807323157787],[-0.0015106770442799,0.0537249147892,0.068576991558075]],[[-0.17397239804268,-0.18037155270576,-0.026606841012836],[-0.1086873114109,-0.0015093327965587,0.060965616255999],[-0.043876111507416,0.015088770538568,0.083675920963287]],[[0.12860287725925,0.089694820344448,0.0072908233851194],[0.014744378626347,-0.016477130353451,-0.11419643461704],[0.04618925973773,0.060981322079897,-0.062181767076254]],[[-0.01358575001359,-0.01801691390574,-0.060190994292498],[0.033115670084953,-0.089860290288925,-0.060871079564095],[0.079515166580677,0.03726364672184,-0.06069753319025]],[[0.053120601922274,0.092572338879108,0.030784232541919],[0.042595069855452,-0.02475674636662,-0.016343131661415],[0.025242913514376,-0.02422103472054,-0.013277634978294]],[[0.035718020051718,-0.064044520258904,0.022390153259039],[0.020594807341695,0.0030949164647609,-0.027755152434111],[0.0074224378913641,-0.020383957773447,-0.065659366548061]],[[-0.048962257802486,0.045957252383232,0.065577924251556],[-0.022902365773916,0.018350705504417,0.070173241198063],[-0.048074398189783,-0.081432543694973,-0.068111881613731]],[[0.002182774245739,0.014602853916585,0.018257036805153],[0.093004249036312,-0.012852665036917,0.039783593267202],[0.037219595164061,-0.05630936846137,-0.17171491682529]],[[0.03889038041234,0.067273944616318,-0.035766270011663],[0.048353299498558,0.032390050590038,-0.012300374917686],[0.03354237228632,0.049341924488544,0.037524405866861]],[[-0.068416699767113,-0.0026294754352421,0.030228771269321],[-0.11064406484365,-0.0068368152715266,-0.0060672429390252],[-0.02017536945641,-0.04898489639163,-0.27592694759369]],[[0.036910150200129,0.10215497761965,-0.11794839799404],[-0.032233819365501,0.052268292754889,0.057407863438129],[0.0099460687488317,0.040563024580479,0.0077316123060882]],[[-0.023881535977125,-0.010254721157253,-0.0083356229588389],[-0.0034382538869977,0.042506329715252,-0.092789225280285],[0.030345361679792,0.074779868125916,-0.037660714238882]],[[-0.049594953656197,0.027661902830005,0.023699425160885],[-0.05370569974184,-0.070358626544476,-0.13384054601192],[-0.0052208383567631,0.017283566296101,-0.16682055592537]],[[-0.059254832565784,0.058359228074551,-0.04381600022316],[-0.031396333128214,-0.036045387387276,-0.037055969238281],[0.079009242355824,0.11063331365585,-0.030841320753098]],[[0.023387584835291,-0.026793321594596,0.048649087548256],[0.12967735528946,0.10079615563154,0.020528392866254],[-0.005370787344873,0.061244979500771,-0.039674881845713]],[[-0.17186689376831,0.045941971242428,0.042700845748186],[-0.23515617847443,0.012609475292265,0.037365689873695],[-0.19542418420315,-0.062957972288132,0.20523113012314]],[[-0.065939582884312,9.2279020464048e-05,0.026105839759111],[0.078226529061794,0.036803986877203,0.034397520124912],[0.041291762143373,0.013065493665636,0.10588139295578]],[[0.08357198536396,0.092632673680782,0.051982026547194],[0.030766230076551,0.040478590875864,0.06496749073267],[0.061183411628008,-0.045104492455721,-0.10384917259216]],[[0.062025114893913,-0.1097669005394,-0.0043590837158263],[-0.015305927023292,-0.10124079883099,-0.042962584644556],[-0.054145153611898,0.12951315939426,0.088422141969204]],[[0.045840878039598,0.067434199154377,-0.05408001691103],[0.17225407063961,0.18605801463127,0.093009792268276],[0.13028061389923,0.035959284752607,0.035893138498068]],[[0.0023839245550334,-0.099746719002724,-0.014830948784947],[0.060147125273943,-0.088325053453445,-0.046686746180058],[-0.08612585067749,-0.087684065103531,-0.18904377520084]],[[-0.045774627476931,-0.01725709438324,0.011566774919629],[0.032315660268068,0.02178387157619,0.043452054262161],[0.039992347359657,0.012169565074146,0.0065139052458107]],[[-0.034043028950691,-0.021326564252377,0.038203053176403],[0.049827262759209,-0.0071864821948111,0.081703349947929],[0.016273066401482,-0.13040877878666,0.023409243673086]],[[0.02402282692492,-0.023103266954422,0.017903380095959],[-0.042590372264385,-0.40066289901733,-0.16846483945847],[0.00072176347021013,-0.18580821156502,-0.33915486931801]],[[-0.059443641453981,0.038080602884293,-0.039505835622549],[0.070248283445835,0.036375172436237,-0.15856350958347],[0.0091267107054591,0.020132323727012,-0.04876883327961]],[[0.088567338883877,0.091754741966724,-0.0026456348132342],[0.07429151982069,-0.023753296583891,-0.028458654880524],[0.019755057990551,-0.055734984576702,-0.062151126563549]],[[-0.06070127338171,-0.13264945149422,-0.059848103672266],[-0.081000760197639,-0.12013819813728,-0.11580716073513],[-0.048044420778751,-0.039615523070097,-0.095382951200008]],[[0.028429782018065,0.11896228045225,0.051937557756901],[-0.10900238156319,-0.0071101333014667,0.13248905539513],[0.0018326024292037,-0.0150923486799,-0.082809634506702]],[[-0.14278450608253,0.007672839332372,-0.06687543541193],[-0.078035965561867,-0.026521138846874,0.00042414251947775],[0.001115070306696,-0.11148533970118,-0.012521851807833]],[[-0.012650929391384,-0.0016423769993708,0.0034994154702872],[-0.031573187559843,0.082984618842602,-0.029832281172276],[-0.091300487518311,0.018257308751345,-0.059637479484081]]],[[[-0.065708935260773,-0.094311274588108,0.0055287457071245],[-0.11637748777866,-0.027355462312698,0.0035621265415102],[0.084534920752048,0.067453384399414,0.0070248506963253]],[[0.097832515835762,0.16424930095673,-0.037614971399307],[-0.091040425002575,-0.077544435858727,0.038907214999199],[0.035924136638641,0.029407439753413,0.021625274792314]],[[0.071715049445629,0.0012267084093764,0.047345213592052],[0.042146135121584,0.05285756662488,-0.048006616532803],[-0.050268664956093,-0.030569495633245,-0.027957890182734]],[[-0.18304520845413,-0.047091528773308,0.0055323648266494],[0.035580903291702,-0.22868293523788,0.0095629580318928],[-0.19666284322739,-0.12681451439857,-0.18383496999741]],[[0.17428524792194,-0.080317743122578,0.038835406303406],[-0.0027405882719904,0.047822169959545,-0.10261507332325],[-0.051856216043234,-0.073061093688011,-0.0055468128994107]],[[0.079241350293159,-0.054266761988401,-0.13285447657108],[-0.02695843949914,0.0030257576145232,0.010697410441935],[-0.057546369731426,-0.13576455414295,-0.10771263390779]],[[0.01017689332366,-0.029610982164741,0.014524417929351],[0.0066161113791168,-0.023306647315621,-0.065478511154652],[0.012944385409355,-0.026978000998497,-0.060784757137299]],[[-0.010080883279443,0.060478553175926,0.023736819624901],[-0.094054087996483,-0.059542864561081,0.018031526356936],[-0.0066539933905005,-0.067533388733864,0.050381526350975]],[[0.055609162896872,0.10019389539957,0.022815754637122],[0.046217288821936,-0.11018070578575,0.030127178877592],[0.015989162027836,-0.065384693443775,0.0056178634986281]],[[0.11388193815947,0.08025024831295,0.033359952270985],[-0.028937323018909,0.021732432767749,0.069275438785553],[-0.05750747397542,-0.12139389663935,-0.038293804973364]],[[0.078026592731476,0.0052155125886202,0.08260452747345],[-0.081453718245029,0.086377128958702,-0.001653054729104],[-0.023963177576661,-0.034672368317842,0.058169674128294]],[[0.0015849864576012,-0.077406585216522,0.05595787614584],[-0.10229283571243,0.0090198880061507,-0.058928161859512],[-0.094189666211605,-0.039281219244003,-0.094714216887951]],[[-0.069678515195847,-0.12668693065643,0.0015215483726934],[0.10538019239902,-0.12865899503231,-0.15747313201427],[-0.039822295308113,-0.040374543517828,0.095937334001064]],[[-0.18724952638149,-0.053319834172726,0.019160490483046],[0.015126025304198,0.059111587703228,0.072977811098099],[0.033268254250288,0.041953779757023,0.15767094492912]],[[0.098988309502602,0.041875813156366,0.0028778538107872],[-0.076620072126389,-0.031944934278727,-0.0080732526257634],[-0.12000829726458,-0.061416331678629,-0.058423526585102]],[[0.0063753570429981,-0.037426635622978,-0.089553020894527],[-0.0081829885020852,0.0061730500310659,0.034922670572996],[0.0054549900814891,-0.034867726266384,0.055687710642815]],[[0.060947712510824,0.043650023639202,0.022461021319032],[-0.020258143544197,0.011876047588885,-0.16145807504654],[-0.086015373468399,-0.069862857460976,0.066545814275742]],[[-0.016353730112314,-0.058213077485561,0.06791528314352],[-0.0012302034301683,-0.019861301407218,-0.074506022036076],[-0.076843321323395,-0.030825331807137,-0.12275004386902]],[[-0.03484446182847,-0.00066092656925321,0.01329171191901],[-0.056198190897703,-0.046180076897144,0.075007803738117],[-0.011427642777562,0.016357000917196,-0.0029164075385779]],[[0.070122547447681,-0.0070792678743601,-0.025122886523604],[0.065991714596748,-0.086529344320297,-0.015597331337631],[0.006342651322484,0.051723770797253,-0.02441536821425]],[[0.17288935184479,0.011462558060884,-0.083601430058479],[-0.045582942664623,0.1054879501462,-0.056539230048656],[0.06761958450079,-0.0088891368359327,0.0074169058352709]],[[0.099780023097992,-0.031128913164139,0.024028087034822],[-0.00059159845113754,0.10136473923922,-0.010046471841633],[-0.13458485901356,-0.007676197681576,0.036996502429247]],[[0.040060292929411,-0.040454525500536,0.019649123772979],[0.025929465889931,-0.036391779780388,-0.00049344316357747],[0.049238257110119,-0.0093413759022951,-0.038977559655905]],[[0.0077973655425012,-0.014803286641836,0.014853917993605],[0.011295638047159,-0.071819812059402,0.0045859576202929],[0.019709760323167,-0.09015429019928,-0.000887953909114]],[[0.00219871615991,-0.041171886026859,-0.064091354608536],[-0.062248066067696,0.073643371462822,-0.023183990269899],[0.013174443505704,0.013923210091889,0.011617531999946]],[[-0.081711269915104,0.010523429140449,-0.035680074244738],[-0.093489818274975,-0.017067493870854,-0.017983024939895],[-0.1329670548439,-0.0158876106143,0.073078341782093]],[[-0.015610373578966,0.013626008294523,-0.064790010452271],[-0.060033407062292,0.042578916996717,-0.091674849390984],[-0.11000674962997,-0.15469260513783,-0.12819109857082]],[[-0.12995959818363,0.10333282500505,0.10589023679495],[-0.030293917283416,0.10368624329567,0.026524808257818],[-0.036884281784296,0.05313827469945,0.04946294426918]],[[0.038779433816671,0.047689065337181,-0.081910870969296],[-0.07540974766016,-0.0162573158741,-0.082741618156433],[0.058112192898989,-0.0074044237844646,-0.013489354401827]],[[-0.037610318511724,-0.051408853381872,-0.096636019647121],[0.0024041039869189,-0.04408498108387,-0.0058880462311208],[0.032790772616863,-0.055997755378485,-0.01344108954072]],[[-0.049414023756981,-0.15404622256756,-0.037342172116041],[0.1010507196188,-0.080587327480316,0.035156507045031],[0.069146044552326,-0.10204526036978,-0.0045128567144275]],[[-0.047771167010069,0.02629167214036,0.01877405680716],[0.028045564889908,-0.0082295332103968,0.060477059334517],[-0.12428135424852,-0.044809553772211,0.018459716811776]],[[-0.005172704346478,-0.019561128690839,0.0010051665594801],[0.010119415819645,-0.075270891189575,-0.0023845552932471],[-0.0070359166711569,0.082949988543987,-0.057225782424212]],[[-0.075803354382515,0.06325476616621,0.11007222533226],[-0.04471580684185,-0.082013390958309,0.001195695833303],[0.071963213384151,-0.076552800834179,0.020575931295753]],[[-0.02495595626533,0.16567619144917,0.060287021100521],[-0.034172669053078,0.072321534156799,0.039324481040239],[0.039944153279066,0.13692277669907,0.0053474213927984]],[[0.082335002720356,0.040105637162924,0.024821978062391],[0.055275343358517,0.037263236939907,-0.0082485973834991],[-0.12747702002525,-0.090961486101151,-0.11193416267633]],[[-0.16215419769287,0.11325837671757,0.056474208831787],[-0.1583307236433,0.060462642461061,0.014221100136638],[-0.14984409511089,-0.039556514471769,-0.073803134262562]],[[0.084238678216934,-0.10816276818514,-0.096217654645443],[0.071873918175697,0.012958998791873,-0.10558135807514],[0.076726697385311,-0.11439533531666,0.034724276512861]],[[0.0060446970164776,-0.008128228597343,-0.046018276363611],[0.0050893067382276,-0.014690656214952,0.010213470086455],[-0.038525860756636,-0.029086904600263,0.028009058907628]],[[-0.11322994530201,-0.11301083862782,0.1102566421032],[-0.012944196350873,-0.054809335619211,-0.044650971889496],[-0.049753081053495,-0.22087825834751,-0.0079511646181345]],[[-0.01483756583184,-0.076696678996086,0.02715065702796],[-0.016968984156847,0.012750258669257,-0.024802736938],[0.042278110980988,-0.044422842562199,0.12381811439991]],[[-0.10945753008127,0.032836638391018,0.031170280650258],[-0.094399966299534,-0.020241778343916,0.032541900873184],[0.011148575693369,0.19760099053383,0.0024531011004001]],[[-0.0033314772881567,-0.1009132489562,0.023605527356267],[-0.029095474630594,-0.034119036048651,-0.031322535127401],[-0.003322955686599,0.074973806738853,0.023500056937337]],[[0.07993146777153,-0.03820937871933,-0.086505137383938],[-0.03185348212719,0.015642676502466,-0.0086660319939256],[-0.001305113430135,-0.092183850705624,0.11644925177097]],[[0.0017910730093718,0.015348554588854,0.093693569302559],[0.039012923836708,0.0034124120138586,-0.039500962942839],[0.035153660923243,-0.021651284769177,-0.082489781081676]],[[-0.097983300685883,-0.035154279321432,0.039226457476616],[-0.00040222724783234,0.029615750536323,0.08452570438385],[-0.038387075066566,0.03173128888011,0.061407957226038]],[[0.068914867937565,0.080430552363396,0.038284927606583],[0.096656270325184,-0.054950676858425,0.038830202072859],[0.057536367326975,0.010110634379089,-0.0020591251086444]],[[0.01629894413054,0.039456002414227,0.073724038898945],[0.0021045112516731,0.0096553908661008,0.02330107241869],[-0.026476643979549,0.060149356722832,-0.057903595268726]],[[0.0713230073452,-0.0001752066455083,-0.061758562922478],[0.045424554497004,0.060175884515047,-0.0046983482316136],[-0.040299125015736,-0.029133893549442,0.035246457904577]],[[0.069359205663204,0.080325894057751,-0.0074223419651389],[-0.02172271721065,0.062135688960552,0.1266303062439],[-0.004926510155201,-0.17238613963127,-0.10190124064684]],[[-0.00077531993156299,-0.042397644370794,-0.0069856247864664],[0.021310918033123,0.041295345872641,0.038228791207075],[-0.093878984451294,0.04365037754178,0.098762273788452]],[[0.09898142516613,0.051339846104383,-0.041574519127607],[0.026587082073092,0.082039639353752,-0.027810676023364],[0.071516521275043,-0.05804767459631,-0.025304498150945]],[[-0.0091180708259344,-0.11982499063015,-0.13662558794022],[-0.0057491357438266,0.054504305124283,-0.10788913071156],[0.063277676701546,-0.024158857762814,0.014792433008552]],[[0.11170289665461,0.071382753551006,0.015668012201786],[0.056864008307457,0.13197189569473,0.048562683165073],[-0.022534115239978,0.058136697858572,0.16541282832623]],[[-0.048602424561977,-0.2003261744976,0.091960407793522],[0.020591873675585,-0.16245192289352,-0.019496386870742],[-0.022628476843238,-0.028082037344575,-0.011460489593446]],[[-0.043434705585241,-0.075255908071995,0.069525890052319],[0.049721576273441,0.013138055801392,-0.013146380893886],[-0.018416734412313,-0.03395926579833,-0.059219446033239]],[[-0.0021586094517261,-0.068121500313282,0.020151874050498],[0.017184127122164,0.00087851518765092,-0.047380227595568],[0.057291574776173,-0.079865656793118,-0.054239422082901]],[[0.0018406722228974,0.074595972895622,0.0033194478601217],[0.0017444103723392,-0.11505981534719,0.034855980426073],[0.047616463154554,0.010224364697933,-0.031761214137077]],[[-0.080179400742054,-0.024709219112992,-0.0081168441101909],[0.093461379408836,0.040283717215061,0.061087690293789],[0.061214651912451,-0.0043122852221131,0.065162315964699]],[[-0.0050178794190288,0.065624117851257,0.0062058009207249],[0.021280093118548,0.011000486090779,-0.033708900213242],[-0.043599653989077,-0.0074914768338203,0.084170825779438]],[[-0.099438026547432,-0.14091373980045,0.059648528695107],[-0.019243739545345,-0.079960629343987,0.080251298844814],[0.22089099884033,-0.078716441988945,-0.035851929336786]],[[0.15338391065598,0.15998420119286,-0.032458625733852],[0.024186920374632,0.01805005222559,0.049089666455984],[0.043582882732153,-0.067654572427273,-0.053423952311277]],[[0.036148935556412,-0.022763164713979,0.092977277934551],[-0.0011946618324146,-0.075839966535568,0.049769084900618],[0.001464624889195,0.03718813508749,0.0035579400137067]],[[-0.055122200399637,0.040475055575371,-0.07982562482357],[-0.084873393177986,-0.065429471433163,0.096350446343422],[-0.040833599865437,-0.012089814990759,0.17288936674595]]],[[[-0.042962595820427,0.014236071147025,0.0050335489213467],[-0.056542906910181,-0.056865148246288,0.050758209079504],[0.020601604133844,0.099515438079834,-0.049767706543207]],[[0.0036820229142904,-0.044977445155382,-0.023216282948852],[-0.013540849089622,0.043561853468418,0.046404205262661],[0.0028823476750404,-0.018593367189169,0.031236490234733]],[[0.0064812344498932,-0.018985638394952,0.022457115352154],[-0.012138170190156,-0.0055766240693629,0.0043186810798943],[0.069871038198471,-0.018848445266485,-0.00069921847898513]],[[-0.017647488042712,0.0035536466166377,-0.011145979166031],[-0.0088223349303007,-0.016009859740734,-0.012479808181524],[-0.0052654310129583,0.0098423808813095,-0.040885210037231]],[[-0.01947308331728,-0.065624557435513,-0.022548088803887],[-0.031854331493378,0.048163201659918,-0.0029141753911972],[0.068943850696087,0.018710738047957,-0.039840426295996]],[[0.034843400120735,0.0086351670324802,0.07455188781023],[-0.013366270810366,-0.024723516777158,0.09194802492857],[0.013699212111533,-0.064010500907898,-0.0080448677763343]],[[-0.017981011420488,0.00060792156727985,-0.036626197397709],[-0.0054152538068593,0.0038501722738147,-0.0053357584401965],[0.013515951111913,-0.032535668462515,0.042290989309549]],[[0.048666283488274,-0.01365159265697,-0.03047483228147],[-0.023559583351016,-0.021645942702889,-0.0106644295156],[-0.077182829380035,-0.024948820471764,-0.0063302963972092]],[[-0.010834437794983,0.018862439319491,0.021480847150087],[-0.018719958141446,-0.034052796661854,0.027510130777955],[0.064755350351334,0.0074554588645697,-0.03615190461278]],[[-0.017102397978306,0.032438881695271,0.0023705060593784],[-0.024942979216576,0.047487538307905,0.024941047653556],[-0.0064991544932127,-0.066021174192429,0.00087452656589448]],[[0.040042124688625,-0.0064917774870992,-0.026992103084922],[-0.038176752626896,0.031210338696837,0.0064875660464168],[-0.0063615390099585,0.0045835082419217,0.0069350167177618]],[[-0.024433767423034,0.013979464769363,0.028033778071404],[-0.0071084224618971,-0.04029718786478,-0.067058108747005],[0.00092779425904155,-0.018373593688011,0.040725596249104]],[[-0.021944008767605,-0.030192075297236,-0.012000819668174],[0.023435682058334,-0.031346678733826,-0.015271478332579],[-0.015929298475385,-0.034381289035082,-0.02758208476007]],[[-0.047304254025221,-0.034086637198925,0.029028717428446],[0.0036556902341545,0.041864298284054,-0.026144005358219],[-0.064181812107563,0.097071029245853,0.032337214797735]],[[-0.023764278739691,-0.060236066579819,0.072370424866676],[0.006800732575357,-0.009140282869339,0.021045085042715],[-0.024496646597981,0.077679827809334,-0.0064842160791159]],[[0.077093243598938,-0.078617446124554,0.021682064980268],[0.058319266885519,0.042866311967373,-0.052558697760105],[0.044650182127953,0.064164012670517,-0.0084142163395882]],[[-0.011667459271848,-0.013369987718761,0.034457560628653],[0.057132303714752,0.031260751187801,0.035203333944082],[0.093156784772873,-0.0085688447579741,-0.0052763083949685]],[[0.0093646422028542,-0.0039096879772842,-0.0043051103129983],[-0.0032968346495181,0.051197104156017,0.0066946712322533],[0.034572426229715,0.0073026171885431,0.037269063293934]],[[0.030314745381474,-0.035035226494074,-0.053421840071678],[0.0042928368784487,0.020078174769878,0.021248526871204],[0.028537705540657,0.00076259113848209,0.0053349751979113]],[[-0.0050766621716321,0.0080082230269909,-0.037578716874123],[0.028060531243682,0.057337585836649,-0.011847800575197],[0.039293386042118,0.0098425066098571,0.023357825353742]],[[-0.0032792775891721,0.014456096105278,-0.047125194221735],[-0.02862111479044,0.034575004130602,-0.0010341322049499],[-0.029390310868621,0.016972314566374,0.014584700576961]],[[-0.050819054245949,-0.020503567531705,-0.011993640102446],[0.022901680320501,-0.0066586569882929,-0.065039440989494],[0.038339700549841,0.048338998109102,-0.10908419638872]],[[-0.017277518287301,-0.05233146622777,-0.024710085242987],[0.045664209872484,-0.0045305364765227,0.054203499108553],[-0.025484967976809,0.045846674591303,-0.031076308339834]],[[0.016572704538703,0.031139360740781,-0.012601611204445],[-0.032729879021645,-0.0032500035595149,-0.032799288630486],[-0.0076480424031615,0.012691753916442,-0.029172366485]],[[-0.0050846613012254,0.071534149348736,0.10314276814461],[0.036700922995806,0.025624997913837,-0.0098430840298533],[0.048384707421064,0.029380915686488,-0.048812214285135]],[[0.017072407528758,-0.07367380708456,0.063306480646133],[-0.02053564414382,-0.012243899516761,-0.077468678355217],[0.028573153540492,-0.0093553410843015,0.0034843368921429]],[[-0.024759581312537,0.0021357140503824,-0.014538287185133],[-0.066857434809208,-0.056083746254444,0.055824767798185],[-0.0016828869702294,0.025389323011041,-0.00079169147647917]],[[-0.061584696173668,0.035364251583815,-0.050446018576622],[-0.04026485979557,-0.083463221788406,-0.0063613830134273],[-0.070266589522362,0.0072478759102523,-0.00091331091243774]],[[0.029852334409952,-0.023330086842179,-0.022692207247019],[0.029270008206367,-0.029857903718948,0.0039859018288553],[0.034734670072794,-0.047588732093573,-0.030841859057546]],[[-0.086063988506794,0.059652004390955,-0.018708249554038],[-0.0037018156144768,-0.017296023666859,-0.03577696159482],[-0.014772643335164,0.0093203913420439,0.011309604160488]],[[0.038014803081751,-0.063549906015396,-0.0083659831434488],[0.0018682999070734,0.013768862001598,-0.056805901229382],[0.081098712980747,0.016235116869211,-7.8871329606045e-05]],[[0.032290041446686,-0.052267346531153,-0.0070988051593304],[-0.024477818980813,0.035715583711863,-0.015840858221054],[0.044887732714415,0.0050457771867514,0.0001678929256741]],[[-0.014231234788895,0.032528083771467,-0.019547332078218],[0.0016737916739658,-0.061627335846424,-0.014120349660516],[0.0026358852628618,-0.03510419651866,-0.072819642722607]],[[-0.077041894197464,-0.0089299222454429,-0.059891413897276],[-0.014632343314588,0.010869045741856,-0.022188486531377],[-0.0015154334250838,-0.03383956104517,-0.0084130149334669]],[[0.018915385007858,0.037758525460958,0.051393043249846],[0.0368976816535,-0.063194938004017,-0.019063070416451],[0.051516629755497,0.059157356619835,-0.061008457094431]],[[0.0051983916200697,0.0018008907791227,-0.035936068743467],[0.037540569901466,-0.048440776765347,0.0006597358151339],[-0.013617954216897,-0.024550572037697,-0.020931951701641]],[[0.078129991889,0.051768597215414,-0.011898948810995],[0.019378900527954,0.028797894716263,-0.020154705271125],[0.0016428119270131,-0.062769815325737,-0.04724258556962]],[[-0.0099037308245897,-0.03273268789053,-0.027708807960153],[0.054526619613171,0.052589111030102,0.029598545283079],[0.090148970484734,-0.013861490413547,-0.069178283214569]],[[0.039695389568806,0.027561897411942,-0.028046060353518],[-0.040040571242571,0.00016043518553488,-0.0056038089096546],[-0.092634715139866,-0.044265940785408,-0.036550901830196]],[[0.010426050983369,-0.0091468105092645,0.032101847231388],[-0.0086818663403392,-0.04830863699317,-0.0098662599921227],[0.028120959177613,-0.016191441565752,-0.039858136326075]],[[-0.034551873803139,-0.052005060017109,-0.031394984573126],[-0.012819712050259,-0.0018654295708984,-0.0040544788353145],[0.039052091538906,0.038661099970341,0.040409635752439]],[[-0.045542478561401,-0.011369463056326,0.03746261075139],[-0.030798442661762,0.014592040330172,0.035378836095333],[0.028945934027433,-0.05414155870676,-0.010377553291619]],[[0.02134601213038,0.018322413787246,-0.040529850870371],[-0.038135018199682,0.026615101844072,0.010238933376968],[-0.08975725620985,0.024802511557937,-0.034387022256851]],[[0.022969461977482,-0.052513796836138,-0.00012376776430756],[-0.011887554079294,-0.077858805656433,-0.084803640842438],[-0.0155931096524,0.018278626725078,0.053090639412403]],[[0.091402813792229,-0.053607739508152,-0.0029515800997615],[0.056274708360434,0.08760903775692,-0.042424727231264],[-0.045421905815601,0.063236229121685,0.015045137144625]],[[-0.041350066661835,0.065787047147751,-0.010834754444659],[-0.0016137547791004,-0.027270397171378,0.033840853720903],[0.050604794174433,0.023295715451241,-0.050668325275183]],[[0.02542831376195,-4.1154853533953e-05,0.017149034887552],[-0.066640615463257,-0.086249962449074,-0.026835775002837],[0.006577861495316,-0.038500301539898,0.054478038102388]],[[-0.041012790054083,-0.01291009504348,-0.028455980122089],[0.05217219889164,0.078960850834846,-0.06541895866394],[0.026498902589083,0.04178873822093,0.0019055140437558]],[[0.046696692705154,-0.027601031586528,-0.021142167970538],[-0.026668626815081,-0.040628142654896,0.00080879603046924],[-0.02586798928678,0.029128272086382,0.0037550760898739]],[[-0.017301531508565,-0.067723631858826,-0.035780154168606],[-0.0014357659965754,0.0060634580440819,-0.0078092529438436],[0.022047867998481,-0.0032369187101722,-0.030741449445486]],[[0.029375087469816,-0.022048640996218,-0.025532523170114],[0.03050635010004,-0.0088954018428922,-0.029536550864577],[-0.0054827267304063,-0.00085938611300662,0.024531850591302]],[[0.0046028345823288,-0.022280029952526,0.0076560778543353],[0.0061741354875267,-0.014135492034256,-0.0064399875700474],[0.033779036253691,0.035432890057564,0.044801693409681]],[[-0.034519728273153,0.010166937485337,-0.0012267386773601],[0.069705180823803,0.0092210816219449,0.02933338843286],[0.10369934141636,-0.036019496619701,-0.017956119030714]],[[0.061863698065281,0.085915312170982,0.034904751926661],[0.037704411894083,0.028887601569295,0.13645076751709],[0.029840912669897,0.11307756602764,0.0044092666357756]],[[0.0070942318998277,-0.033553831279278,0.016658697277308],[-0.037736807018518,0.014977879822254,0.020182928070426],[0.042282737791538,-0.02078721113503,0.0065175648778677]],[[0.029251055791974,-0.0078337779268622,0.047972023487091],[-0.045347683131695,0.010440673679113,0.0061607682146132],[-0.0013818888692185,-0.019824452698231,0.0016019680770114]],[[-0.10133621841669,-0.024693295359612,-0.032438430935144],[-0.0054758712649345,-0.025637447834015,-0.010578616522253],[-0.021206261590123,-0.044527277350426,-0.040101431310177]],[[-0.0065441243350506,0.030252626165748,0.0030479477718472],[-0.0077181560918689,-0.056717988103628,-0.056282918900251],[0.051838252693415,-0.022941332310438,-0.014107674360275]],[[0.071831919252872,-0.022204954177141,0.038480076938868],[0.034913193434477,-0.066373161971569,-0.078675024211407],[-0.034133139997721,-0.012856568209827,0.045328479260206]],[[0.048538368195295,0.0015925653278828,0.0111114513129],[0.020310847088695,0.042343903332949,-0.028677677735686],[-0.00085348781431094,-0.0036311582662165,0.024667773395777]],[[-0.0062155216000974,-0.010660580359399,-0.0081721115857363],[0.042734883725643,0.010618473403156,0.050421871244907],[0.020076271146536,-0.014590089209378,-0.021731741726398]],[[-0.051027841866016,0.050527174025774,-0.013159708119929],[-0.021931491792202,-0.032743774354458,-0.0099888015538454],[-0.024565979838371,-0.040449608117342,0.0028281959239393]],[[-0.055081520229578,0.062739670276642,0.0028062372002751],[-0.060453068464994,-0.014239455573261,0.0073186531662941],[0.044440805912018,-0.012910841032863,0.015385185368359]],[[-0.048517994582653,-0.011708522215486,-0.021234028041363],[-0.0014523895224556,0.061659920960665,-0.0083599137142301],[-0.089110322296619,-0.028561986982822,-0.0069096335209906]]],[[[0.057397328317165,0.023718388751149,0.0017573023214936],[0.013461436145008,-0.04874362796545,-0.086725011467934],[0.00018422452558298,0.05184280872345,0.061438620090485]],[[-0.020092036575079,0.06141958758235,0.035943027585745],[-0.011910392902792,-0.014834389090538,0.046588569879532],[-0.014500780962408,-0.004531592130661,0.027939995750785]],[[0.010407262481749,0.029968867078424,0.061003945767879],[0.011245152913034,-0.090197905898094,0.025424223393202],[-0.075766913592815,0.0059619252569973,0.0035558415111154]],[[-0.022069431841373,-0.0067042419686913,0.043490171432495],[-0.026591774076223,-0.052231132984161,-0.045783281326294],[-0.021586362272501,0.0071105221286416,0.066065981984138]],[[0.0010382195468992,0.021147398278117,0.015594067052007],[0.001507094479166,0.014145511202514,0.037038967013359],[0.013668077066541,-0.081009812653065,-0.03153020888567]],[[-0.0072543066926301,0.12995959818363,-0.056144148111343],[0.028643872588873,-0.10835105925798,-0.0050925016403198],[0.0018991802353412,0.028694789856672,0.023305997252464]],[[-0.025398373603821,0.016220485791564,-0.021031307056546],[-0.069855868816376,-0.037888281047344,-0.0075543173588812],[0.020922105759382,0.0066459346562624,0.030103007331491]],[[-0.062216699123383,-0.085170961916447,0.04590168595314],[0.04609240591526,0.068002067506313,0.079494476318359],[0.030717274174094,0.062277372926474,-0.015106186270714]],[[-0.067016169428825,0.029167905449867,0.044071096926928],[0.0034362836740911,-0.0097727188840508,0.016107907518744],[0.036810673773289,-0.050505701452494,0.007328093983233]],[[-0.0018385222647339,0.0086885299533606,0.01779081299901],[0.045322809368372,0.030417658388615,0.064463287591934],[-0.023259384557605,0.0041533871553838,-0.09251195192337]],[[-0.034554343670607,0.028195353224874,-0.012961736880243],[0.074830189347267,-0.040574744343758,-0.022354174405336],[0.093038514256477,-0.017835674807429,0.049310848116875]],[[0.063989102840424,0.040475957095623,0.066358610987663],[-0.059413898736238,0.068633742630482,-0.0077675636857748],[0.015565275214612,0.022377941757441,0.059139125049114]],[[0.043624952435493,-0.031748838722706,-0.081630282104015],[-0.11954766511917,-0.04348311945796,-0.019461859017611],[-0.025965381413698,0.014283862896264,-0.020750654861331]],[[0.062388520687819,0.02454636618495,0.054149106144905],[0.066929027438164,-0.020964911207557,0.0062703983858228],[-0.018763119354844,0.007441767025739,-0.024693010374904]],[[0.034383658319712,0.075544729828835,-0.024895971640944],[0.076981320977211,-0.062887474894524,0.0016650975449011],[-0.04389026761055,0.081916391849518,0.0066704824566841]],[[0.037603568285704,0.055110815912485,-0.049803748726845],[0.0074429782107472,-0.075118139386177,0.056309845298529],[0.060445699840784,-0.0022985388059169,0.03786912560463]],[[-0.049693860113621,0.02891038544476,-0.048470199108124],[-0.013860883191228,0.10405651479959,0.041393853724003],[0.032962419092655,0.0063930279575288,-0.016989897936583]],[[-0.02378548309207,0.040784679353237,0.0075601674616337],[-0.018943410366774,-0.048130515962839,0.083686418831348],[-0.052651949226856,-0.013112604618073,0.040744837373495]],[[-0.022808983922005,-0.0010700690327212,0.041167188435793],[0.032537933439016,-0.066179513931274,0.050446048378944],[-0.00097464810824022,0.027243006974459,0.0093428865075111]],[[-0.00297537073493,0.041558373719454,0.020747493952513],[0.01340591814369,0.0872433334589,-0.005964114330709],[0.0038623362779617,0.031692236661911,0.0033966712653637]],[[0.043400563299656,0.097524657845497,0.033865191042423],[0.037055492401123,-0.0089924735948443,-0.06317912042141],[0.045854639261961,0.028914220631123,0.11475088447332]],[[-0.048204161226749,0.012554183602333,0.021806130185723],[0.019556744024158,0.010269064456224,-0.019842572510242],[0.040975082665682,0.044971328228712,-0.084697499871254]],[[0.012610019184649,-0.0022858344018459,-0.079698942601681],[0.046403408050537,-0.00088152894750237,0.032845847308636],[-0.046762719750404,0.017159450799227,0.021280739456415]],[[-0.0077452901750803,-0.001410040538758,-0.027354875579476],[-0.027352897450328,-0.041417397558689,-0.010434432886541],[-0.017021229490638,-0.035430762916803,-0.025888998061419]],[[0.018752433359623,0.006427382119,0.025414215400815],[0.078149132430553,0.11330638825893,-0.050854738801718],[-0.0064905215986073,-0.002884583780542,0.051405847072601]],[[-0.016566829755902,0.015442338772118,-0.013019606471062],[0.009984009899199,0.060179065912962,-0.017665285617113],[-0.072133451700211,-0.033591784536839,0.010640302672982]],[[0.041324008256197,-0.020025931298733,-0.06944502145052],[-0.04137122631073,-0.038553010672331,0.028652373701334],[0.05432166531682,0.060631677508354,0.052616290748119]],[[0.022306233644485,0.018465042114258,-0.022336861118674],[0.020537354052067,0.02877158485353,-0.048054821789265],[0.043889682739973,-0.054991766810417,0.097210839390755]],[[-0.019082877784967,-0.0067242607474327,0.024518217891455],[-0.0051085068844259,-0.016706302762032,-0.014879028312862],[0.00023667443019804,0.0069573200307786,-0.034563016146421]],[[-0.028141448274255,-0.097399264574051,-0.0071538491174579],[0.0013054776936769,0.0059109013527632,-0.091055326163769],[-0.0058815125375986,-0.040231067687273,0.042278684675694]],[[-0.042585499584675,-0.017143355682492,-0.022762916982174],[0.029849104583263,0.04439202696085,-0.039011538028717],[0.0087311118841171,-0.039072409272194,-0.0076171588152647]],[[-0.033998880535364,0.059111967682838,-0.041419498622417],[0.016500886529684,0.0061283516697586,0.061263225972652],[0.028369251638651,0.076248988509178,-0.0045318230986595]],[[0.017513794824481,-0.022482085973024,-0.069891355931759],[0.014366055838764,0.019228020682931,-0.0051487837918103],[-0.049137938767672,-0.070381216704845,-0.077846355736256]],[[0.0081056179478765,-0.025119822472334,0.032687477767467],[-0.022191042080522,-0.012656313367188,-0.0064559481106699],[0.0060546435415745,-0.0066106799058616,-0.0037244255654514]],[[0.079613745212555,0.0081435786560178,0.039955422282219],[0.052019558846951,-0.0079483427107334,-0.01955015771091],[0.010800365358591,0.058268882334232,0.034032441675663]],[[0.018953269347548,-0.028494091704488,0.01217485871166],[-0.053466431796551,-0.10681136697531,-0.070375300943851],[-0.052744787186384,-0.0035686425399035,-0.036743316799402]],[[-0.02068411000073,-0.025603713467717,0.061220660805702],[0.0050534759648144,-0.038864050060511,-0.005715602543205],[0.037144709378481,0.019733792170882,0.013385453261435]],[[-0.035207729786634,0.053828362375498,-0.095892563462257],[-0.039067715406418,0.019516902044415,0.033288903534412],[0.020077323541045,0.011273853480816,0.042312424629927]],[[-0.05920359864831,0.038111858069897,0.046475276350975],[-0.0048705493099988,0.04512233287096,0.05340639129281],[-0.0094048492610455,-0.026646122336388,0.074869632720947]],[[-0.0034297804813832,-0.031874813139439,0.0014196806587279],[-0.02617640607059,0.011830837465823,0.021571973338723],[-0.0060474453493953,-0.0058513954281807,-0.055123548954725]],[[-0.044831581413746,0.0099703650921583,-0.027156054973602],[-0.035428024828434,0.077972412109375,0.064808636903763],[0.03907598555088,0.010828294791281,-0.030996048822999]],[[0.015774654224515,0.091160506010056,0.029074192047119],[0.0069335480220616,0.069849170744419,-0.042273130267859],[0.00040630350122228,0.0097683034837246,0.1173864081502]],[[-0.01455897372216,-0.030988302081823,0.0095207598060369],[0.014824571087956,0.0019608419388533,0.010000166483223],[0.0023191636428237,0.0081469099968672,0.01223312318325]],[[0.0053437491878867,0.032868552953005,0.013756558299065],[-0.019742548465729,-0.05996735021472,-0.0491535179317],[0.059969034045935,-0.0056926161050797,-0.038763906806707]],[[-0.02607804723084,-0.01712965592742,-0.012701094150543],[-0.026755811646581,0.048826385289431,-0.089211545884609],[-0.053469393402338,0.075042933225632,-0.048508413136005]],[[-0.062189631164074,0.02759075909853,0.021442491561174],[-0.065892145037651,-0.04914590716362,-0.038715235888958],[0.014729502610862,-0.063502058386803,-0.026261126622558]],[[-0.034853845834732,0.020556546747684,0.054721504449844],[-0.0015661232173443,0.021240655332804,0.024613481014967],[-0.062091894447803,0.013364390470088,-0.060173496603966]],[[0.0028933968860656,0.069001495838165,0.011664011515677],[0.073459483683109,0.053703907877207,0.069531388580799],[0.0056597599759698,-0.034655470401049,0.00097628473304212]],[[-0.029262565076351,-0.034403536468744,-0.022061444818974],[-0.069181449711323,-0.0065702586434782,0.053834814578295],[-0.023649776354432,-0.013793228194118,-0.055703960359097]],[[0.10354651510715,0.087290056049824,-0.036475524306297],[0.041078813374043,0.053160347044468,-0.061394717544317],[0.032740566879511,-0.0067905858159065,-0.035712271928787]],[[-0.016021706163883,-0.0090033626183867,-0.019555930048227],[-0.097817085683346,-0.080855377018452,-0.018366780132055],[0.040292836725712,-0.019180564209819,-0.017651410773396]],[[-0.033220585435629,0.0054131848737597,0.020632905885577],[0.013187482021749,0.0013888842659071,-0.040107574313879],[-0.10914190858603,0.0054319812916219,0.027727032080293]],[[-0.081618756055832,0.010564374737442,-0.021489622071385],[0.029987836256623,-0.02028476074338,0.096328921616077],[-0.063514560461044,0.076931014657021,0.041207123547792]],[[0.12565022706985,0.075872004032135,0.025005839765072],[0.02101737819612,-0.021371340379119,0.12062837183475],[0.060040187090635,0.0034356261603534,-0.00092431594384834]],[[-0.077575676143169,-0.047925535589457,-0.063649222254753],[-0.0042262799106538,0.047981955111027,0.013844565488398],[0.018772872164845,0.0070546669885516,-0.045428171753883]],[[-0.018119676038623,0.050678059458733,-0.10742335021496],[-0.015143521130085,-0.048834532499313,0.13590537011623],[-0.010935836471617,0.090519599616528,-0.0093378135934472]],[[-0.010726214386523,-0.045152865350246,-0.011010608635843],[-0.030728325247765,0.046016976237297,0.064857006072998],[0.010874051600695,0.09873428940773,0.00014570228813682]],[[0.0031751545611769,-0.017752591520548,0.053153481334448],[-0.022401180118322,0.06354084610939,-0.033152300864458],[0.021004946902394,0.0269674975425,0.018340623006225]],[[-0.10251055657864,0.068287126719952,-0.017078520730138],[0.024409605190158,-0.010535777546465,0.029055720195174],[-0.048030987381935,0.019684510305524,0.047348741441965]],[[0.00011019749945262,0.030345939099789,0.033223375678062],[-0.040907043963671,-0.0064944601617754,0.0032564857974648],[0.033135715872049,0.035012099891901,-0.02400485239923]],[[-0.026839293539524,0.030633989721537,-0.077649183571339],[0.030650105327368,-0.048563059419394,-0.071676529943943],[-0.014977666549385,-0.02616866119206,0.046000998467207]],[[-0.024653196334839,0.060362085700035,0.033142853528261],[-0.033504668623209,-0.033968437463045,-0.052457369863987],[0.044756125658751,-0.026335468515754,-0.035789716988802]],[[0.068981304764748,-0.045705132186413,0.044089630246162],[0.003425513394177,0.0092600295320153,0.052137460559607],[-0.0079214917495847,-0.035242412239313,0.0080839851871133]],[[-0.040687147527933,-0.011707090772688,0.0015270260628313],[0.066162802278996,0.026112152263522,0.10439694672823],[-0.075182348489761,0.0085810497403145,0.037917360663414]]],[[[0.063024207949638,-0.05022506788373,0.0028216775972396],[-0.080801993608475,-0.090138748288155,-0.065044932067394],[-0.008236363530159,0.019053319469094,0.1151055842638]],[[-0.061657540500164,-0.076395511627197,-0.039812758564949],[-0.0092740412801504,0.05280589312315,0.025585582479835],[0.039358928799629,-0.02004424110055,-0.038064796477556]],[[-0.059043001383543,-0.0045452429912984,-0.028491018339992],[0.0062699066475034,-0.0035256608389318,-0.02768749371171],[-0.009543165564537,-0.011591834016144,0.036301769316196]],[[0.10008381307125,0.025145728141069,-0.074507541954517],[0.038667183369398,0.0042006308212876,-0.00086172355804592],[0.052019476890564,-0.013300362974405,-0.026391854509711]],[[-0.00045448081800714,-0.0087527958676219,0.076740205287933],[-0.065121009945869,0.069245018064976,0.034712750464678],[-0.065054647624493,-0.025368336588144,-0.065751127898693]],[[-0.13722230494022,0.068271242082119,-0.0123554430902],[0.041575945913792,-0.019461125135422,0.071149796247482],[0.083522900938988,-0.17752905189991,0.055738817900419]],[[0.0014804754173383,0.01797523163259,-0.056355115026236],[-0.015968469902873,0.017004495486617,-0.039052166044712],[-0.076013714075089,-0.035967867821455,-0.013071300461888]],[[-0.038566458970308,-0.013199512846768,0.043559078127146],[0.099482446908951,-0.020835472270846,-0.024710759520531],[-0.076509974896908,0.0049193203449249,0.075483538210392]],[[0.035452414304018,-0.00099623401183635,-0.18922190368176],[-0.059226747602224,0.026755077764392,0.081169545650482],[0.10213981568813,-0.012679876759648,0.061625223606825]],[[0.0037660440430045,-0.078968390822411,-0.055265720933676],[0.037899028509855,0.078580878674984,-0.015137078240514],[-0.012138138525188,-0.08075051009655,-0.11904370039701]],[[-0.10713916271925,-0.017838617786765,-0.011180376634002],[0.033179130405188,0.052951712161303,0.012273234315217],[0.035756330937147,0.0007937439950183,-0.0040563312359154]],[[0.01886023953557,0.0049294256605208,0.018060866743326],[0.0047435788437724,-0.053937431424856,-0.034604016691446],[-0.064933516085148,-0.012804477475584,0.013499381951988]],[[-0.039855740964413,-0.023561533540487,0.026339566335082],[-0.06790854036808,0.0090275360271335,0.015196563676],[0.059742733836174,-0.04827992618084,0.048821195960045]],[[-0.019820787012577,-0.005742107052356,0.09231299161911],[-0.044497892260551,-0.040429841727018,-0.099520139396191],[-0.0025454377755523,0.022631889209151,0.02665444649756]],[[0.069178365170956,0.0027638520114124,-0.064315229654312],[0.020274536684155,0.012904363684356,0.012278944253922],[-0.092485100030899,-0.035964794456959,-0.033179774880409]],[[-0.029593652114272,-0.042017180472612,-0.0065194736234844],[0.059872657060623,0.049003224819899,0.016591001302004],[-0.013714462518692,-0.015475945547223,0.039311043918133]],[[-0.035837832838297,0.036034259945154,-0.058414183557034],[-0.0087288599461317,-0.036447398364544,-0.021585205569863],[-0.0049968590028584,-0.030331810936332,0.028189990669489]],[[0.0049474374391139,-0.031912725418806,-0.037412501871586],[0.041582569479942,0.03712285682559,-0.022670721635222],[0.014228043146431,0.0030544043984264,0.023444499820471]],[[-0.020339915528893,-0.016203736886382,-0.025292247533798],[0.01906824298203,-0.042682971805334,0.016939669847488],[-0.039366528391838,-0.080030873417854,-8.1255393524771e-06]],[[-0.067195527255535,-0.063092991709709,-0.096088893711567],[-0.068872183561325,-0.0080088842660189,-0.0065572564490139],[-0.062998257577419,-0.031113693490624,0.0063786394894123]],[[0.17310321331024,0.064322508871555,-0.021366899833083],[-0.013181661255658,-0.069202624261379,-0.13167840242386],[-0.045704510062933,0.014219680801034,-0.11064636707306]],[[-0.0064286659471691,0.0045867240987718,0.080682568252087],[-0.054118905216455,0.025225140154362,-0.0092792334035039],[-0.026836281642318,-0.044664856046438,-0.023235289379954]],[[-0.028383452445269,0.065357692539692,0.026239791885018],[0.0097729191184044,0.0051865978166461,-0.021436836570501],[-0.02574985101819,0.001173133845441,-0.031623218208551]],[[-0.023729998618364,-0.06934130191803,-0.014032853767276],[-0.029685011133552,0.0063776010647416,-0.0173912178725],[0.015993917360902,-0.016527799889445,0.033137395977974]],[[0.0047427648678422,-0.027814581990242,-0.015093313530087],[0.025430895388126,-0.025466976687312,-0.12635609507561],[0.031078860163689,0.032734341919422,-0.026889080181718]],[[-0.0027616035658866,-0.082929268479347,-0.085848703980446],[-0.060266859829426,0.033677726984024,-0.043652445077896],[-0.034522112458944,-0.030861435458064,-0.048004370182753]],[[0.11220378428698,-0.016183607280254,-0.014483133330941],[0.0077140126377344,-0.0134057411924,-0.030870219692588],[-0.035982932895422,-0.021768197417259,0.022832190617919]],[[-0.0080243907868862,0.04568287730217,-0.030273705720901],[0.051202557981014,0.0010548549471423,0.010450406000018],[-0.054251834750175,-0.042397137731314,0.048167381435633]],[[-0.027165150269866,-0.064027473330498,-0.077225148677826],[0.013691775500774,0.031216500326991,0.10934340208769],[-0.0085448492318392,-0.0055363606661558,-0.024388439953327]],[[-0.081048473715782,0.014931585639715,-0.015305773355067],[0.013329548761249,-0.05078948289156,-0.032479029148817],[-0.035930193960667,0.010282578878105,-0.0067317052744329]],[[-0.013118233531713,-0.021415065973997,-0.083589166402817],[-0.05839391797781,0.019392417743802,-0.03265019506216],[0.019610717892647,-0.024861430749297,0.04365673288703]],[[-0.010012602433562,0.010494745336473,0.030749561265111],[-0.048329617828131,0.00029440564685501,0.06313619017601],[0.013678262010217,-0.051185790449381,-0.026726456359029]],[[0.0079663945361972,-0.022222280502319,-0.0042280978523195],[0.088639922440052,-0.032964214682579,0.042954545468092],[0.063587009906769,0.077106729149818,0.0091161392629147]],[[-0.11713533848524,-0.059313856065273,-0.061321415007114],[-0.06026541441679,-0.0058869868516922,-0.013674553483725],[-0.0017779149347916,-0.11436446011066,0.019119678065181]],[[-0.019046649336815,0.039920203387737,-0.038155276328325],[0.054349225014448,-0.055061064660549,-0.058241609483957],[-0.064466431736946,-0.00034386391052976,0.085378237068653]],[[-0.0081025948747993,-0.041820179671049,-0.0073294728063047],[-0.10619290918112,-0.022044658660889,-0.11323376744986],[0.017903540283442,0.031000999733806,0.021813321858644]],[[0.019349848851562,-0.056791882961988,-0.06979314237833],[-0.018831120803952,-0.02977516874671,-0.089736297726631],[-0.0082748774439096,0.11171709746122,-0.036323368549347]],[[-0.096220746636391,-0.03070661239326,-0.024515448138118],[0.015606398694217,0.036932148039341,-0.015740554779768],[-0.045279409736395,-0.047965288162231,0.06062775105238]],[[-0.035613056272268,-0.021658770740032,-0.072185665369034],[-0.010797282680869,0.11351805925369,0.040482979267836],[-0.024858323857188,0.024356909096241,-0.025426618754864]],[[-0.015378445386887,0.018782852217555,-0.07631204277277],[-0.054210584610701,0.011248929426074,0.048956919461489],[0.004027527756989,0.017574643716216,-0.078430563211441]],[[0.025008389726281,0.0024889211636037,0.029441794380546],[0.011612888425589,0.037805765867233,0.023322435095906],[-0.12627835571766,0.02950088493526,-0.089878268539906]],[[-0.0058661899529397,-0.031488098204136,0.02534805983305],[-0.066843695938587,0.013963358476758,0.007780950050801],[-0.045648563653231,-0.077797763049603,-0.0067587019875646]],[[-0.033776115626097,-0.01239559147507,-0.023024866357446],[-0.002257164567709,-0.051497157663107,0.0051355483010411],[-0.070921957492828,-0.051560875028372,-0.017128707841039]],[[-0.0098721431568265,-0.020780561491847,-0.0053654070943594],[0.032712083309889,0.043377690017223,-0.030629016458988],[0.10803091526031,0.072110518813133,0.047323703765869]],[[0.079785518348217,-0.017811823636293,-0.025451229885221],[0.027544170618057,0.029080487787724,-0.046283584088087],[0.0097171058878303,-0.0013924464583397,-0.027449449524283]],[[-0.01494162529707,0.048427313566208,0.053655747324228],[0.039402820169926,0.031324740499258,-0.0091713694855571],[-0.0079312976449728,-0.066774368286133,0.016026185825467]],[[-0.14672335982323,0.0025511751882732,0.041278168559074],[-0.04365636780858,0.046051360666752,0.014149866998196],[0.030543943867087,0.069101065397263,-0.0022855536080897]],[[-0.027460375800729,-0.011808836832643,0.0029967282898724],[-0.093573167920113,-0.097850523889065,0.035710759460926],[0.043983839452267,0.010031972080469,-0.014755059033632]],[[-0.00038657104596496,0.030392441898584,-0.05274011939764],[-0.070680767297745,-0.0002421234967187,0.066156558692455],[0.0096394447609782,0.070192165672779,0.0018322014948353]],[[0.041413970291615,-0.027759624645114,-0.045921362936497],[-0.027547635138035,0.048232551664114,0.098033748567104],[-0.045872241258621,-0.075437538325787,0.043028883635998]],[[-0.045635621994734,-0.019798569381237,-0.043262001127005],[0.044730864465237,-0.038295537233353,-0.017066789790988],[0.026858391240239,-0.031534790992737,0.035226318985224]],[[-0.050949171185493,0.0047754840925336,-0.048643860965967],[-0.096491605043411,-0.070621207356453,-0.10216678678989],[0.03878266736865,-0.020687736570835,-0.0097241774201393]],[[-0.077022649347782,0.010378547012806,-0.018808130174875],[-0.029208157211542,-0.010307970456779,-0.025002541020513],[-0.0025396689306945,-0.007570440415293,-0.041750535368919]],[[0.11625055968761,0.051048446446657,0.10432663559914],[-0.027151891961694,0.035884283483028,-0.02405309677124],[0.090664848685265,0.19194702804089,0.022061487659812]],[[-0.013841909356415,0.11001295596361,-0.016667054966092],[-0.019785679876804,-0.072896756231785,-0.00051145686302334],[0.068525657057762,0.05746703594923,-0.037866394966841]],[[-0.017592430114746,-0.036048147827387,0.034574702382088],[-0.066598445177078,-0.048898465931416,0.03620257973671],[-0.016895763576031,-0.0056485068053007,-0.0075417049229145]],[[-0.068587861955166,0.054270457476377,0.045504044741392],[-0.014742675237358,0.024309806525707,0.020808763802052],[-0.039402719587088,-0.002460855524987,-0.0086324736475945]],[[-0.05630661919713,0.034674424678087,-0.051676534116268],[0.0034152753651142,0.029191493988037,-0.0019508253317326],[0.032147843390703,-0.073878541588783,0.00061543320771307]],[[0.030128359794617,-0.031120974570513,0.074265465140343],[-0.018277402967215,0.017875118181109,-0.047437682747841],[-0.030602663755417,-0.033127531409264,-0.015490906313062]],[[0.031626477837563,-0.089343428611755,-0.027422100305557],[-0.0050357789732516,-0.0057222857140005,0.021673796698451],[0.032863114029169,0.018434461206198,0.041859410703182]],[[-0.0063754701986909,0.010459473356605,-0.010519731789827],[-0.0084614334627986,-0.082424499094486,-0.10388092696667],[0.009066398255527,0.044103242456913,0.058687843382359]],[[-0.064493007957935,0.0065315612591803,-0.011099451221526],[0.021412372589111,0.012765764258802,0.0084082027897239],[0.04084312543273,-0.034044817090034,-0.026260638609529]],[[0.0082920221611857,-0.01857697032392,-0.057078786194324],[-0.034402802586555,0.011279086582363,0.029978066682816],[0.046908833086491,-0.037926241755486,-0.067296996712685]],[[-0.094134390354156,0.028779394924641,0.029624715447426],[-0.0033105469774455,-0.0036894106306136,0.025966916233301],[-0.021438147872686,0.0068331914953887,-0.035450611263514]]],[[[-0.0029346810188144,-0.032863389700651,0.036084495484829],[0.025252021849155,0.016880605369806,-0.029479341581464],[0.036704923957586,0.0076208501122892,0.1044264882803]],[[0.0045624156482518,-0.039123546332121,-0.072353377938271],[-0.033219981938601,-0.010763438418508,0.0007117138011381],[-0.025785245001316,0.01590989343822,0.0049272109754384]],[[0.010679901577532,-0.045224096626043,-0.026029860600829],[-0.013633738271892,-0.0500083938241,0.027910493314266],[-0.015318093821406,0.015719186514616,0.0087615810334682]],[[-0.0084342332556844,0.010623928159475,0.0040870471857488],[0.027806023135781,-0.0026274877600372,-0.044890131801367],[-0.029919354245067,0.030060697346926,0.050626531243324]],[[-0.080585971474648,0.034577213227749,-0.035445868968964],[0.031024741008878,-0.014333182014525,-0.051496244966984],[0.0037085595540702,0.10144044458866,-0.0085242744535208]],[[0.043283235281706,0.072968050837517,0.0073476359248161],[0.0039526796899736,0.05161426961422,-0.0062184622511268],[-0.011038958095014,-0.043183382600546,-0.081302046775818]],[[-0.026568509638309,0.0047223065048456,-0.012430812232196],[-0.010708780027926,0.0638093277812,0.0091139571741223],[0.012691794894636,-0.037652093917131,0.024842189624906]],[[-0.012223726138473,0.036940142512321,0.042428120970726],[0.093462876975536,0.071517392992973,0.000203679286642],[-0.037238173186779,-0.038839489221573,-0.097165003418922]],[[-0.030827635899186,0.052933618426323,-0.023755157366395],[-0.0036481756251305,-0.024985622614622,-0.0092862155288458],[-0.030952533707023,0.032538782805204,-0.026902988553047]],[[-0.049169667065144,0.0065216198563576,-0.079591199755669],[-0.029684618115425,0.0054543851874769,0.0090091610327363],[0.021778834983706,0.020343974232674,0.053997658193111]],[[-0.039870020002127,0.045813750475645,-0.079040229320526],[-0.032670132815838,-0.013595861382782,-0.07712396979332],[0.10743816196918,0.074896901845932,-0.062487293034792]],[[-0.0099834157153964,-0.048084851354361,0.04323835670948],[-0.020723842084408,0.0028013405390084,-0.019607841968536],[-0.010502126999199,0.05096448212862,0.038605328649282]],[[-0.026091048493981,0.030431918799877,-0.036539010703564],[-0.020545031875372,0.077477537095547,-0.016048330813646],[0.0011902932310477,0.020876420661807,0.021856205537915]],[[-0.050912961363792,-0.041408851742744,0.052985187619925],[0.029349518939853,-0.0023759473115206,0.056827154010534],[-0.030063219368458,0.06316913664341,2.4992226826726e-05]],[[-0.08792719990015,0.022317133843899,-0.16961327195168],[-0.0066019268706441,-0.099349938333035,0.10814663022757],[0.063568621873856,0.0158979780972,0.039066910743713]],[[-0.11850920319557,-0.037937004119158,0.0099954893812537],[-0.001595584792085,0.03442906588316,0.0098021812736988],[0.001147827366367,0.053985483944416,-0.019112685695291]],[[-0.0097822966054082,0.021811814978719,0.061373226344585],[0.043486151844263,0.02044259570539,-0.020041257143021],[-0.051518812775612,0.00025369520881213,0.036355443298817]],[[-0.022696217522025,0.023996084928513,-0.01119517441839],[0.014167142100632,0.018516439944506,-0.0040759537369013],[-0.048316992819309,0.038866184651852,0.030372122302651]],[[0.024923613294959,-0.0015845237066969,-0.041657913476229],[-0.045162092894316,-0.011490017175674,-0.052163649350405],[0.0083926180377603,0.027542924508452,0.028089975938201]],[[-0.023152887821198,-0.0091978795826435,-0.0050655673258007],[0.016450518742204,-0.034587882459164,-0.03899734467268],[0.020011285319924,0.024983825162053,0.0040478529408574]],[[0.0141307041049,-0.038764022290707,-0.076992429792881],[-0.052412923425436,0.046399667859077,0.17637650668621],[0.0098245311528444,0.015657488256693,0.099273279309273]],[[0.1420713365078,-0.12300499528646,-0.052042677998543],[0.062831752002239,0.062171224504709,-0.054501920938492],[0.008864788338542,-0.020653480663896,-0.013511671684682]],[[0.028216095641255,-0.032919254153967,-0.0076423762366176],[0.0060669686645269,0.027973022311926,0.019125394523144],[-0.04625203832984,-0.01029200758785,0.025877229869366]],[[-0.074220806360245,0.00026770104886964,0.0095017971470952],[0.02959050051868,-0.039774470031261,-0.019736746326089],[-0.023373613134027,-0.028263352811337,0.010095879435539]],[[0.002831201069057,0.051228400319815,0.072594903409481],[0.0017464936245233,0.027476927265525,-0.050277050584555],[-0.04674019664526,-0.01095247734338,0.02708775550127]],[[-0.054853666573763,0.08528408408165,-0.048970505595207],[0.025263417512178,-0.04179373383522,-0.044948071241379],[0.067241407930851,-0.048695173114538,-0.005746791139245]],[[-0.025313599035144,0.071813181042671,-0.00054456887301058],[-0.0095534222200513,-0.03204532712698,-0.0015185233205557],[-0.061110399663448,0.021552339196205,0.02482452057302]],[[-0.051785424351692,0.073811255395412,0.035847365856171],[-0.0045283059589565,-0.031216811388731,-0.070077210664749],[0.083942554891109,-0.024717917665839,-0.032674264162779]],[[-0.063236549496651,0.027354445308447,0.072039701044559],[0.031923856586218,0.029208639636636,0.002819120651111],[-0.034269582480192,-0.036219216883183,-0.099004626274109]],[[0.036194305866957,0.019407670944929,0.026923581957817],[-0.042836517095566,0.044436473399401,-0.082844324409962],[-0.050832364708185,0.028354300186038,0.045472532510757]],[[0.049305982887745,-0.018012195825577,-0.034861139953136],[-0.037769597023726,-0.036350667476654,0.062842905521393],[-0.001040022005327,0.006144670303911,0.053019359707832]],[[-0.061460111290216,0.014255584217608,0.046561699360609],[0.035885877907276,0.0558409281075,-0.028338434174657],[-0.031948808580637,0.027402864769101,-0.014750554226339]],[[0.001351535320282,-0.073643878102303,-0.038474198430777],[-0.031403705477715,-0.032278064638376,-0.038950432091951],[-0.018536044284701,-0.062537677586079,-0.0021977224387228]],[[0.034226957708597,-0.0095055997371674,0.0013511035358533],[0.02005172893405,-0.01059961412102,0.039194606244564],[-0.044236678630114,-0.037067756056786,0.029736939817667]],[[0.019446555525064,0.02158884704113,0.024809237569571],[-0.00977579690516,-0.0005055054789409,0.031894534826279],[-0.051712278276682,-0.082784451544285,-0.021506745368242]],[[-0.051108658313751,0.076442204415798,0.044398467987776],[-0.043628826737404,-0.0017023716354743,0.0046895146369934],[-0.0091406181454659,0.033188853412867,-0.016896044835448]],[[0.051188565790653,0.04409846663475,0.050232954323292],[-0.019013337790966,-0.040524747222662,-0.0089763794094324],[-0.049166083335876,0.012714421376586,-0.013667101971805]],[[0.048526346683502,-0.021076695993543,0.028158264234662],[0.023202372714877,0.033266738057137,0.0024970921222121],[-0.047391634434462,0.0063099055550992,0.048782587051392]],[[-0.015197075903416,-0.0076089794747531,0.019737830385566],[-0.049729194492102,-0.006496743299067,-0.072000935673714],[0.041583888232708,-0.0012350138276815,0.00068008009111509]],[[-0.0566694624722,-0.021163854748011,0.020361987873912],[-0.008668003603816,-0.037394519895315,0.0079576233401895],[0.022400300949812,-0.039063449949026,-0.041836049407721]],[[0.039218213409185,0.028999201953411,0.0011687765363604],[-0.01704335026443,-0.04851546511054,0.0075884740799665],[-0.024403549730778,0.1021973118186,0.030417585745454]],[[-0.013817872852087,0.0011542077409104,-0.056519664824009],[0.019159097224474,-0.084499292075634,-0.026077251881361],[-0.0060860272496939,0.06902377307415,0.058151941746473]],[[-0.03956950083375,-0.030766893178225,0.0012791024055332],[-0.021700387820601,0.057338774204254,-0.048175133764744],[-0.050992354750633,0.046674154698849,-0.004833581391722]],[[-0.084971539676189,0.046940036118031,0.0014170956565067],[0.025040155276656,0.02310573682189,-0.0065665054135025],[-0.056533511728048,-0.032413754612207,-0.053807303309441]],[[-0.0097083831205964,0.051403921097517,-0.14924010634422],[-0.081809096038342,-0.030768131837249,0.017071288079023],[0.021456092596054,0.0026637883856893,-0.027753168717027]],[[-0.013287934474647,0.021572628989816,0.04031240940094],[-0.020413227379322,0.056268323212862,-0.093051701784134],[0.0775056630373,-0.030223906040192,-0.017186243087053]],[[-0.05990557000041,-0.058703493326902,0.0250483173877],[0.013391975313425,-0.010964194312692,0.059614934027195],[-0.0078484546393156,-0.083503119647503,0.043048940598965]],[[-0.034212525933981,0.03002992272377,-0.037090037018061],[-0.040288787335157,-0.011825385503471,0.009540282189846],[-0.045405235141516,0.0050742607563734,-0.0264684073627]],[[-0.08722723275423,0.018028618767858,0.073795549571514],[-0.064223006367683,-0.02694171667099,0.0010366147616878],[0.011841036379337,-0.007980146445334,0.0072007398121059]],[[0.033088095486164,0.052218124270439,-0.08018808811903],[-0.00076681195059791,-0.039542283862829,-0.076985917985439],[0.029351914301515,-0.1033693626523,-0.043413430452347]],[[-0.026169696822762,-0.047413989901543,-0.0079535702243447],[0.019769290462136,0.021015560254455,7.1963637310546e-05],[0.048860475420952,-0.022868283092976,-0.0064651872962713]],[[-0.0771788880229,0.057567249983549,0.021659258753061],[-0.020974010229111,-0.019166376441717,-0.066592633724213],[-0.069479085505009,0.037598945200443,0.072940371930599]],[[0.056056540459394,-0.037769541144371,-0.046826016157866],[0.018445629626513,-0.013779453001916,-0.038453351706266],[-0.064273059368134,-0.026697766035795,-0.029533296823502]],[[0.10029897093773,0.11143188178539,0.070319421589375],[0.0305842962116,0.050373878329992,0.016423849388957],[0.022439483553171,0.028586283326149,0.0163654666394]],[[-0.038192935287952,-0.030244389548898,0.10197058320045],[0.032724972814322,-0.089211940765381,0.028372768312693],[0.018438160419464,-0.072288572788239,-0.043297294527292]],[[-0.032107539474964,-0.0026379320770502,-0.030515983700752],[-0.020493885502219,-0.053248308598995,0.050784796476364],[-0.033488258719444,0.017996391281486,-0.05349513143301]],[[0.0023652478121221,0.011030226014555,-0.013335206545889],[0.0041047213599086,0.043590907007456,-0.024852640926838],[0.0073842173442245,0.046883147209883,0.0087640937417746]],[[0.02125015296042,-0.027277175337076,0.0040871808305383],[-0.04688948392868,0.020357370376587,-0.065129920840263],[-0.010716687887907,0.021172285079956,-0.065613344311714]],[[0.0014444696716964,0.031823486089706,-0.034666266292334],[-0.038983713835478,0.0093568991869688,-0.063362076878548],[0.069417588412762,0.087369456887245,-0.017607433721423]],[[0.035664886236191,-0.0070271999575198,-0.011127395555377],[0.02749933861196,-0.011786674149334,-0.0081840679049492],[0.036628130823374,0.022575845941901,0.0035997400991619]],[[0.022944590076804,0.037840243428946,-0.088365539908409],[0.0074553131125867,0.015696261078119,0.0054034208878875],[-0.080213643610477,0.050058592110872,-0.021695252507925]],[[0.015274339355528,0.050055213272572,-0.027337957173586],[-0.045195702463388,-0.0094753624871373,-0.05729453265667],[-0.012756554409862,0.021207924932241,0.063120797276497]],[[0.07468780875206,-0.016656773164868,0.0014141259016469],[0.0029202701989561,-0.0053495923057199,-0.010786752216518],[-0.013101689517498,0.027158295735717,0.0017230048542842]],[[0.025227852165699,-0.024908976629376,0.021291913464665],[0.053275641053915,-0.02775813639164,-0.0084765665233135],[-0.028696497902274,0.065676249563694,0.023023121058941]]],[[[-0.094816699624062,-0.078171148896217,0.035888597369194],[-0.011950066313148,-0.0024946038611233,0.097933299839497],[-0.012943588197231,0.033374693244696,-0.022900002077222]],[[-0.018535373732448,-0.0067808632738888,-0.01549051143229],[-0.036778498440981,-0.050216171890497,-0.051690191030502],[0.0063938479870558,-0.0090086879208684,-0.013222256675363]],[[-0.030641797930002,-0.078688926994801,0.0036239398177713],[-0.079293265938759,-0.072359509766102,0.0067869173362851],[0.023127699270844,-0.053197681903839,0.045664604753256]],[[0.003030224936083,0.0062143700197339,0.015200208872557],[-0.069723702967167,-0.039635490626097,0.054306879639626],[0.029636096209288,0.010944278910756,0.075678817927837]],[[0.0057865199632943,-0.054149709641933,-0.046962074935436],[-0.053820587694645,-0.06965035200119,-0.02428325638175],[0.016757508739829,-0.10575667023659,-0.0063130822964013]],[[0.016414415091276,-0.059524692595005,0.048297438770533],[0.025469418615103,-0.044892996549606,-0.034371469169855],[-0.070998266339302,0.1314260661602,0.068687453866005]],[[-0.010118038393557,-0.012561983428895,0.010976009070873],[-0.041406840085983,-0.025867654010653,0.048444524407387],[-0.073129333555698,0.0089559732005,0.02901129424572]],[[-0.0014485202264041,0.0067618764005601,-0.013632182963192],[0.064357429742813,0.030260320752859,0.0026413812302053],[0.023218749091029,0.081155583262444,0.049526568502188]],[[-0.0048321932554245,0.0046185981482267,0.020601650699973],[0.011253396049142,-0.0020481385290623,-0.012971920892596],[0.012835936620831,0.066751748323441,-0.057380393147469]],[[0.036554001271725,-0.0003278428921476,-0.063757114112377],[-0.056669484823942,0.0087387571111321,0.0078263059258461],[0.0708092674613,-0.042294349521399,-0.015085890889168]],[[-0.038620874285698,0.066111713647842,0.076673313975334],[-0.0899842903018,-0.0340441390872,0.0033438017126173],[0.029781753197312,0.090615980327129,0.010944837704301]],[[-0.1260479092598,0.082061849534512,0.012519693933427],[0.011564626358449,-0.0063119707629085,-0.023044221103191],[0.055375013500452,0.081052526831627,0.026278851553798]],[[-0.039425522089005,0.016369896009564,-0.0048388885334134],[0.0013559513026848,-0.0022649252787232,-0.011374244466424],[-0.086275301873684,-0.075318604707718,0.034625388681889]],[[0.068833827972412,0.091642573475838,0.017916878685355],[0.058595508337021,0.0050687566399574,0.032204929739237],[0.0068675843067467,-0.0092887589707971,-0.075118198990822]],[[0.0033140731975436,-0.032683964818716,0.06137590110302],[0.0093365730717778,0.020494369789958,-0.059294495731592],[-0.027269104495645,-0.078475780785084,0.044063370674849]],[[0.056108720600605,-0.068280220031738,-0.018019082024693],[0.032406877726316,-0.098819613456726,-0.029668631032109],[-0.0021675466559827,-0.041591569781303,0.029152212664485]],[[-0.029043657705188,-0.044665291905403,-0.027182774618268],[-0.00683205248788,0.0017738005844876,0.021623810753226],[-0.040097311139107,0.041267182677984,-0.055655721575022]],[[-0.0037787845358253,0.003291854634881,-0.03568721935153],[-0.028854766860604,0.030745409429073,0.0018950462108478],[-0.0079173063859344,0.058375250548124,-0.0557716563344]],[[-0.050482772290707,0.029149308800697,-0.049047324806452],[0.049153216183186,-0.009911211207509,-0.0018164128996432],[-0.052309136837721,0.017814861610532,0.04893521592021]],[[0.02760536596179,0.011795871891081,-0.0068052955903113],[-0.030562000349164,-0.005997852422297,-0.011877258308232],[-0.047437723726034,-0.026323087513447,-0.072486765682697]],[[0.050196085125208,-0.052975133061409,0.027725430205464],[-0.037825223058462,-0.074696034193039,-0.068227864801884],[-0.010993522591889,0.044391021132469,-0.018664345145226]],[[-0.082603722810745,0.02629741281271,-0.0033977306447923],[-0.085117414593697,-0.042374230921268,0.050324853509665],[-0.025379240512848,-0.0019722334109247,0.01847480237484]],[[-0.0014964686706662,-0.030757483094931,0.036395218223333],[-0.0095486640930176,0.029044786468148,0.01141332089901],[0.0015345752472058,-0.047142863273621,0.0054697804152966]],[[0.0014832277083769,0.038217697292566,-0.00056844652863219],[0.070051968097687,0.0064520691521466,0.0019807401113212],[-0.055531814694405,0.039394725114107,-0.0054861870594323]],[[-0.073206722736359,0.079573675990105,0.03085046634078],[-0.051580537110567,0.057707447558641,-0.0058098528534174],[-0.080353535711765,0.0037101246416569,0.034111358225346]],[[0.027978058904409,-0.034046649932861,-0.020873077213764],[0.01307750493288,0.041877612471581,0.0076511274091899],[0.0076453322544694,0.036682397127151,0.04753802344203]],[[-0.11865898221731,0.027524439617991,-0.020656980574131],[-0.0463049672544,-0.027406807988882,-0.017326394096017],[0.026622429490089,0.029528863728046,0.045074097812176]],[[-0.077560588717461,0.023039454594254,0.10183089226484],[-0.0075758709572256,-0.054186876863241,0.044293515384197],[-0.044652707874775,0.030543057247996,-0.0013941691722721]],[[-0.050705768167973,-0.088918007910252,-0.044905506074429],[-0.01037080027163,0.03089652210474,-0.053904566913843],[0.033347498625517,0.027422688901424,0.022376300767064]],[[-0.0025980256032199,-0.088767349720001,-0.03048294596374],[0.0031911924015731,-0.058742042630911,0.073499888181686],[-0.044039763510227,-0.025438845157623,0.03308942168951]],[[-0.0093648806214333,0.053464945405722,0.011114968918264],[0.023887017741799,-0.015135608613491,0.0064408034086227],[0.021697770804167,0.0071178134530783,0.052634604275227]],[[0.025392131879926,-0.053231485188007,-0.015990050509572],[0.0029384500812739,-0.0059024998918176,-0.03944381326437],[-0.029753120616078,-0.044057350605726,-0.041832778602839]],[[0.041332870721817,-0.0013959507923573,0.038283210247755],[0.025540176779032,0.045127265155315,0.064859420061111],[-0.030477294698358,-0.035745084285736,0.029707727953792]],[[0.009900476783514,-0.080106414854527,0.022951263934374],[0.005751259624958,-0.01696752011776,-0.061675399541855],[0.00707085756585,0.058798525482416,0.0053049270063639]],[[0.029403569176793,0.065391682088375,0.038997650146484],[0.051947396248579,-0.0030600763857365,-0.0082568293437362],[-0.028350107371807,-0.00061958294827491,-0.0314638055861]],[[-0.02500513382256,0.053555235266685,-0.042053081095219],[-0.025547474622726,-0.0085506457835436,0.0038526975549757],[0.039401449263096,-0.047602444887161,0.010350681841373]],[[-0.0064533306285739,0.039646845310926,0.0065484056249261],[0.036574184894562,-0.029523696750402,0.026322713121772],[0.022129623219371,0.019885502755642,0.014823326840997]],[[-0.011182393878698,0.05483266711235,-0.015974599868059],[0.021722536534071,-0.035153262317181,-0.047209180891514],[0.039454933255911,-0.047968272119761,0.0023890538141131]],[[0.021227434277534,0.03401530906558,0.015531436540186],[-0.10334447771311,0.0048563308082521,0.014917001128197],[-0.040704466402531,-0.036985084414482,-0.034586578607559]],[[-0.0065644555725157,0.0045820320956409,-0.020374342799187],[-0.036202482879162,-0.081434264779091,-0.025147683918476],[-0.052222765982151,0.002365130931139,-0.035689808428288]],[[-0.050182595849037,0.033096980303526,-0.10262934863567],[0.025043988600373,0.040237411856651,0.038829028606415],[0.084848023951054,0.0056698019616306,-0.044780015945435]],[[0.028489494696259,0.011065875180066,-0.020618682727218],[-0.070203103125095,-0.012443081475794,-0.059112299233675],[-0.12845613062382,0.0050902855582535,-0.13717821240425]],[[0.0059357834979892,0.052185967564583,0.0043876268900931],[0.014614876359701,0.03237783908844,-0.018590651452541],[-0.088373281061649,-0.012104703113437,0.00045942430733703]],[[0.011566597037017,-0.051643595099449,-0.026874477043748],[0.026776157319546,0.06597001105547,0.077046126127243],[0.0034664557315409,0.10482005029917,0.12377588450909]],[[0.014248807914555,-0.033922649919987,0.021111492067575],[0.015558715909719,-0.021353296935558,0.010296649299562],[-0.017316970974207,-0.014855461195111,0.015354842878878]],[[0.031031362712383,0.058997385203838,0.06428100913763],[0.014948694035411,-0.024591684341431,-0.033279094845057],[0.0080391019582748,0.03206006065011,-0.0023694105912]],[[0.035054542124271,-0.020227519795299,0.036418743431568],[0.021608306095004,0.023299917578697,-0.012965937145054],[-0.013490853831172,-0.095539897680283,-0.051712404936552]],[[-0.021217625588179,-0.10352526605129,-0.07112643122673],[-0.019489996135235,0.011238523758948,-0.04592177271843],[0.028052788227797,0.0019022328779101,-0.013017642311752]],[[0.0013656532391906,-0.069638833403587,0.0036866317968816],[-0.02247054874897,-0.004646398127079,-0.0097814165055752],[0.0053162458352745,0.0037712848279625,0.060192454606295]],[[0.0064783883281052,0.017275748774409,-0.034067291766405],[0.062734112143517,0.056520815938711,0.00096098863286898],[-0.0024970371741802,0.06707426160574,-0.053225975483656]],[[-0.013276454992592,-0.033886380493641,0.0048984363675117],[0.035614438354969,0.014432543888688,0.0090251434594393],[-0.0055298311635852,0.085303016006947,0.0010213993955404]],[[0.02549627609551,-0.022159637883306,-0.025129791349173],[0.011637818999588,-0.043538477271795,-0.086385659873486],[-0.0032245528418571,-0.033227354288101,-0.0056245098821819]],[[0.0038316666614264,-0.0029750855173916,-0.088430784642696],[-0.023499809205532,9.7133350209333e-05,-0.083694726228714],[0.018493711948395,-0.01957687176764,-0.023159738630056]],[[0.063920632004738,0.088420450687408,0.029007732868195],[0.080177396535873,0.04291570186615,0.011327631771564],[-0.0052775638177991,0.058454915881157,0.0024758349172771]],[[-0.025755545124412,0.041043717414141,0.07193785905838],[-0.19925989210606,-0.0016005205688998,-0.0066287736408412],[0.07498562335968,0.080266162753105,0.089186653494835]],[[-0.0035811900161207,0.0057760518975556,-0.0046560387127101],[-0.048482585698366,0.046165220439434,-0.0072601409628987],[-0.0050960583612323,-0.06193432956934,0.018274266272783]],[[-0.0023383146617562,-0.022758843377233,0.002082742517814],[-0.051053263247013,0.044551841914654,0.084787085652351],[-0.0188495721668,0.077949434518814,-0.043300304561853]],[[-0.0036702931392938,-0.031817361712456,-0.050637472420931],[-0.014723710715771,-0.032553214579821,-0.009414853528142],[9.4280185294338e-05,0.0048799188807607,0.020462857559323]],[[-0.027399139478803,-0.0035825150553137,-0.11197935789824],[-0.0093144625425339,-0.051862224936485,0.055989135056734],[-0.058200247585773,-0.053059488534927,0.055024519562721]],[[0.013717081397772,-0.0081670517101884,-0.070788182318211],[-0.032214444130659,0.072242237627506,-0.044348079711199],[-0.012499372474849,0.055907525122166,0.043227482587099]],[[0.0070230448618531,-0.025529235601425,-0.021563140675426],[0.008064997382462,-0.00066218158463016,0.043292071670294],[0.04864289239049,0.013794576749206,0.035265386104584]],[[-0.0049340631812811,-0.011599211022258,-0.01001656241715],[0.016492195427418,0.010465082712471,0.025328617542982],[-0.025699384510517,-0.034866381436586,0.026251183822751]],[[-0.03420901671052,0.0054139820858836,0.00015252127195708],[-0.033083848655224,-0.044761035591364,0.027540411800146],[0.035600956529379,0.079438641667366,0.080825038254261]],[[-0.053179316222668,-0.057887729257345,-0.030519993975759],[0.044750440865755,0.0033704193774611,0.00250822189264],[0.018890701234341,0.05068938061595,0.066962443292141]]],[[[-0.054341826587915,0.06932532787323,0.035749550908804],[0.042524669319391,0.073332525789738,0.091755874454975],[-0.024210467934608,0.015048428438604,-0.17987105250359]],[[-0.00059244356816635,-0.009285076521337,-0.0011980358976871],[0.0072601716965437,-0.0056775887496769,0.011870268732309],[-0.0016312074149027,-0.038351990282536,0.0045159044675529]],[[-0.10446416586637,-0.017990110442042,-0.039481118321419],[-0.02361960709095,-0.05813866853714,-0.012428135611117],[-0.021491922438145,0.030602168291807,0.058385089039803]],[[0.067904315888882,0.10111892223358,-0.013036101125181],[-0.0086853904649615,-0.024874657392502,0.021505611017346],[-0.061591576784849,0.019927220419049,0.11295703053474]],[[-0.014692852273583,0.0077630900777876,0.022693121805787],[0.021705746650696,-0.016663104295731,0.027091521769762],[0.037014249712229,-0.049886170774698,0.037257172167301]],[[-0.059256825596094,-0.099795378744602,0.030233154073358],[-0.097914636135101,-0.026658240705729,0.082924127578735],[-0.019381197169423,0.1648196130991,0.12815959751606]],[[-0.033374343067408,-0.0051108240149915,0.0047917794436216],[-0.020661992952228,0.029025480151176,-0.022090077400208],[-0.014008811675012,-0.013067715801299,-0.018642431125045]],[[-0.10892426222563,-0.014107274822891,0.06389793753624],[0.014706198126078,-0.017718276008964,0.12486504763365],[0.010808547027409,0.057452250272036,0.023666912689805]],[[0.012521316297352,0.064913742244244,0.025212846696377],[-0.0053753843531013,0.020020065829158,-0.0090349828824401],[0.038526933640242,-0.046708337962627,-0.00018648829427548]],[[-0.021231081336737,0.022611098363996,0.024619223549962],[0.041892647743225,-0.021266583353281,0.005962654016912],[0.025700816884637,-0.052577160298824,-0.023965839296579]],[[0.012666399590671,0.07295385748148,-0.054355751723051],[-0.040471237152815,-0.055780980736017,0.0050208107568324],[0.044538915157318,-0.03196432441473,0.036095526069403]],[[0.0095716686919332,-0.021004525944591,0.019227670505643],[-0.046661324799061,-0.05421582236886,0.01722346432507],[0.0022030507680029,0.028740212321281,-0.0075837313197553]],[[-0.042607769370079,-0.046743251383305,0.034643068909645],[0.0023698867298663,-0.047837246209383,-0.0088420463725924],[-0.033352967351675,-0.013431554660201,0.021817125380039]],[[0.031417846679688,0.047449104487896,0.040338478982449],[-0.010945688933134,0.0084205530583858,0.024367570877075],[0.0034517927560955,0.047646824270487,-0.049952354282141]],[[0.066728480160236,-0.14519907534122,-0.15526773035526],[0.075641013681889,0.030363038182259,3.6601442843676e-05],[0.043845217674971,-0.13038046658039,0.059671264141798]],[[-0.056366369128227,-0.011241712607443,0.034476827830076],[-0.022285049781203,-0.01991244032979,0.0047811409458518],[0.07812525331974,0.041251786053181,-0.0070649078115821]],[[0.006047697737813,-0.05902000144124,-0.055411577224731],[0.039118908345699,0.07572877407074,-0.051202353090048],[0.0037618321366608,0.0021385450381786,0.011503290385008]],[[-0.031717371195555,-0.041991166770458,-0.017608545720577],[-0.00076253339648247,0.084017165005207,-0.011370756663382],[0.029821690171957,-0.0058046574704349,-0.010903120972216]],[[0.003878764109686,-0.025822095572948,-0.019185507670045],[0.0062016476877034,-0.03894616663456,-0.059108048677444],[0.028069190680981,0.0097062857821584,0.060141690075397]],[[-0.059209600090981,-0.024350736290216,-0.090351901948452],[-0.025982135906816,0.0051680104807019,-0.00015094989794306],[-0.060429155826569,0.069509938359261,0.018546557053924]],[[-0.0084059378132224,-0.011037420481443,-0.050250880420208],[-0.013871335424483,0.0076729864813387,0.049653317779303],[-0.044607799500227,0.0025857016444206,-0.0035789939574897]],[[0.0397033020854,0.087131924927235,-0.028975496068597],[-0.067689798772335,0.022459927946329,-0.055925093591213],[-0.0067862407304347,-0.020071316510439,-0.11533915996552]],[[-0.033396136015654,0.025194611400366,-0.0085020586848259],[0.017750538885593,0.063863836228848,-0.013588551431894],[-0.010187233798206,-0.061218496412039,0.0047496329061687]],[[-0.090207196772099,0.053059350699186,-0.11646685004234],[-0.038191255182028,0.0055128247477114,-0.023276142776012],[-0.028109457343817,0.051150765269995,0.075607940554619]],[[-0.069992892444134,0.0066965064033866,0.048387803137302],[-0.061901677399874,-0.061143420636654,0.0012795174261555],[0.0034934023860842,-0.04035360366106,0.021657859906554]],[[0.033873699605465,-0.027724996209145,-0.037766054272652],[-0.061448626220226,0.0031514351721853,-0.0043400437571108],[-0.00059598864754662,-0.021419949829578,0.029385231435299]],[[0.029131321236491,-0.012863706797361,0.010862147435546],[-0.059988893568516,-0.019389046356082,-0.10044936835766],[-0.078016571700573,0.035690475255251,0.084129318594933]],[[-0.02515946701169,0.025481872260571,0.016808208078146],[0.026470946148038,0.027908157557249,0.017791593447328],[0.034872610121965,-0.052130952477455,0.00083548878319561]],[[-0.14896865189075,-0.058688081800938,-0.035917904227972],[-0.014975080266595,0.064279325306416,0.027990583330393],[-0.023815276101232,-0.025920253247023,0.060125723481178]],[[0.059505820274353,0.0037853331305087,0.040538094937801],[-0.093923829495907,-0.040310725569725,-0.011818828992546],[0.033418923616409,-0.050564717501402,0.02811149507761]],[[0.040825892239809,-0.040002975612879,0.026165535673499],[-0.045588161796331,0.03008721023798,-0.0042087691836059],[-0.0033731702715158,-0.016220455989242,-0.015193822793663]],[[0.061128012835979,-0.011848397552967,0.070217445492744],[0.053962457925081,0.033121734857559,-0.030412636697292],[-0.057084284722805,0.078171387314796,-0.10554190725088]],[[0.0025834718253464,-0.10274892300367,0.015621247701347],[0.021910754963756,-0.0053400010801852,-0.037327881902456],[-0.091172575950623,0.025353306904435,0.066114217042923]],[[-0.0071091656573117,-0.0083735063672066,-0.02021904475987],[-0.051305640488863,-0.038112040609121,0.029184823855758],[-0.026635006070137,0.03063745982945,0.036127019673586]],[[0.056431796401739,-0.021440243348479,0.023702181875706],[-0.061911962926388,-0.0050628585740924,0.031757112592459],[0.006661603692919,0.0035720793530345,-0.0750552713871]],[[-0.0071878931485116,-0.055223233997822,0.029546795412898],[-0.054107192903757,-0.062662199139595,0.012208295054734],[-0.024268606677651,0.053899396210909,-0.041812781244516]],[[-0.03862938284874,0.056018434464931,0.061486303806305],[-0.084577791392803,-0.026845801621675,0.035777058452368],[0.060284152626991,-0.010238031856716,0.014598242007196]],[[0.0091197770088911,0.036174703389406,-0.019476668909192],[-0.091825969517231,-0.026587406173348,0.061225716024637],[-0.0042056236416101,-0.02320190705359,0.011472248472273]],[[0.075621366500854,0.019019972532988,-0.044734533876181],[-0.018760973587632,-0.12048901617527,-0.0088888201862574],[0.0283975135535,0.068730771541595,-0.034182820469141]],[[0.016933135688305,-0.04067362844944,-0.0019120944198221],[0.010723951272666,-0.019530342891812,0.023250762373209],[-0.068153366446495,0.049459554255009,0.031938657164574]],[[0.014634318649769,-0.0017718629678711,-0.016904791817069],[-0.069826789200306,0.03103980794549,0.017018176615238],[0.079503461718559,-0.02122706361115,0.035027720034122]],[[-0.015427990816534,-0.063307851552963,-0.0067385216243565],[-0.0039193783886731,0.006927577778697,-0.044445883482695],[0.010108494199812,0.023900190368295,-0.012300559319556]],[[0.072053007781506,0.028806205838919,0.023458810523152],[0.0082287881523371,0.076349906623363,0.054576624184847],[0.00756327342242,-0.0044704838655889,0.0032373734284192]],[[-0.051052305847406,0.0020776796154678,-0.050252094864845],[-0.058423489332199,-0.0075987274758518,-0.033340524882078],[0.047752007842064,-0.0085452944040298,-0.015554426237941]],[[0.027818730100989,0.046134255826473,-0.15821874141693],[-0.086277864873409,0.059125281870365,0.06118793040514],[0.050851993262768,0.02911240234971,-0.012666654773057]],[[0.089574828743935,0.0077922395430505,-0.069237932562828],[-0.059941973537207,0.037032056599855,-0.027430731803179],[0.009613398462534,0.083720527589321,-0.034341707825661]],[[-0.055275719612837,-0.088245160877705,-0.017635310068727],[0.0012185629457235,0.11477836966515,0.085953995585442],[-0.040092956274748,-0.041379302740097,-0.0040921671316028]],[[-0.049058616161346,-0.030567606911063,0.00027373209013604],[0.043046984821558,0.024645840749145,0.047507796436548],[0.0013970632571727,-0.088012129068375,0.034575112164021]],[[0.026618909090757,-0.03039382211864,-0.055896792560816],[0.0013602930121124,-0.013650461100042,-0.023836703971028],[0.017721613869071,-0.009738746099174,-0.021955795586109]],[[-0.14659076929092,-0.04136984795332,-0.003527476452291],[0.042591698467731,0.082382343709469,-0.050272658467293],[0.007920453324914,0.029884874820709,0.057267047464848]],[[0.097826935350895,-0.035593140870333,0.024609053507447],[-0.044176116585732,-0.0013870508410037,-0.010695124045014],[0.046440582722425,0.063389278948307,-0.027040511369705]],[[-0.074884556233883,0.10809023678303,-0.089377976953983],[-0.037162937223911,-0.081487290561199,-0.023423431441188],[-0.059486318379641,0.01103220321238,-0.034405574202538]],[[-0.0079430118203163,-0.066403344273567,-0.047333225607872],[0.027740556746721,-0.0052011907100677,-0.058890264481306],[-0.00039434226346202,-0.064712271094322,-0.044395811855793]],[[0.10063499212265,0.090844810009003,0.02786979265511],[0.12851242721081,0.074651956558228,-0.030680634081364],[0.0016232228372246,-0.00051330908900127,0.0063666384667158]],[[0.051258269697428,0.0039420826360583,0.095840685069561],[0.0037814439274371,0.029074950143695,-0.037662230432034],[-0.041729960590601,-0.0060169924981892,0.048890631645918]],[[-0.014147346839309,-0.06357929110527,-0.097638994455338],[0.0088339159265161,0.006694070994854,-0.032537493854761],[-0.012485585175455,-0.030974242836237,-0.025638217106462]],[[0.030484082177281,-0.062292125076056,0.034572869539261],[-0.03460518270731,0.064248107373714,0.018671657890081],[0.026363575831056,0.094158828258514,0.00064697884954512]],[[0.0010741229634732,-0.049067415297031,-0.0081717306748033],[0.0014335298910737,-0.038653437048197,0.015655281022191],[-0.024636264890432,0.078698165714741,-0.017930347472429]],[[-0.024224439635873,0.0070074140094221,0.020986115559936],[-0.044443998485804,0.088204376399517,-0.010683138854802],[-0.044635448604822,-0.13804565370083,0.038084164261818]],[[-0.021906647831202,-0.014480235055089,-0.031462784856558],[0.066760823130608,-0.014227190054953,-0.031037118285894],[-0.0066727697849274,0.039192195981741,0.017510117962956]],[[-0.03255782648921,0.018730416893959,-0.0093940859660506],[0.026417963206768,-0.010838533751667,0.0004348709480837],[-0.038198452442884,0.0035083603579551,0.021799577400088]],[[-0.015370890498161,0.013897246681154,-0.04754227399826],[-0.065389655530453,-0.066985338926315,0.0097384285181761],[-0.051362741738558,-0.063611246645451,-0.072404660284519]],[[0.068751327693462,-0.016835262998939,-0.0058129401877522],[-0.074071608483791,0.00038541652611457,-0.0037150266580284],[-0.044533330947161,0.042684253305197,-0.012530723586679]],[[-0.0033787675201893,-0.026425806805491,0.029453787952662],[0.0034531615674496,0.15860025584698,0.088115081191063],[0.047425042837858,-0.010617006570101,0.038508184254169]]],[[[-0.016048911958933,0.091655269265175,0.11970230191946],[0.0590940117836,0.073043040931225,-0.04539792984724],[0.026970017701387,0.018620742484927,-0.078035727143288]],[[0.00032175230444409,-0.025167444720864,0.0032329435925931],[0.049919288605452,0.017902487888932,0.05020434781909],[-0.018432606011629,-0.02510535158217,-0.038281120359898]],[[-0.077360115945339,-0.10679536312819,0.016812292858958],[-0.0065282345749438,0.012156140059233,-0.085654243826866],[-0.012335687875748,0.030102396383882,-0.0057664383202791]],[[0.0077564413659275,0.063540898263454,-0.025468461215496],[0.036951623857021,0.0075480765663087,0.062768094241619],[0.013465462252498,0.086854383349419,0.0021324534900486]],[[-0.013615884818137,-0.00022344884928316,-0.0020619460847229],[0.069037079811096,-0.011125599965453,0.033690217882395],[-0.02172970212996,-0.045188192278147,-0.0097145503386855]],[[-0.2244535535574,-0.13861267268658,0.019241249188781],[-0.076895944774151,0.1051364466548,-0.018325934186578],[-0.036236681044102,0.0077304891310632,0.043913934379816]],[[-0.019853362813592,-0.0019332050578669,-0.017455803230405],[-0.047245483845472,0.023786464706063,-0.019024834036827],[-0.017501048743725,-0.056135125458241,0.012316985987127]],[[-0.0091006914153695,-0.014302017167211,0.0053704991005361],[0.072476476430893,0.055126514285803,0.024292077869177],[0.072349540889263,0.026106933131814,0.00037551647983491]],[[0.014639269560575,0.052384506911039,-0.0090668359771371],[-0.020516099408269,-0.073258280754089,-0.027221208438277],[0.010577999986708,-0.0053939116187394,-0.0022015662398189]],[[-0.051722303032875,0.019921667873859,-0.0055639022029936],[0.05940455943346,0.020838109776378,0.021041544154286],[-0.011588267050683,-0.039750322699547,-0.048992853611708]],[[0.07012465596199,-0.02263449318707,0.006191817112267],[-0.081829391419888,0.010025015100837,-0.029277954250574],[0.060416337102652,-0.0076667875982821,0.028302321210504]],[[-0.011258574202657,-0.013760445639491,0.0022128296550363],[0.0016773253446445,-0.066120646893978,0.043981172144413],[0.033683318644762,0.048157449811697,-0.031037973240018]],[[-0.039560753852129,0.025774540379643,-0.0021083359606564],[-0.04093462228775,0.0045594498515129,-0.05314515158534],[0.027876002714038,0.059165563434362,-0.036874324083328]],[[0.099015578627586,0.098919957876205,0.04229187220335],[0.015389300882816,0.010400764644146,-0.069796532392502],[-0.051131121814251,-0.014802861958742,-0.084301881492138]],[[-0.070476457476616,-0.013212679885328,0.024347979575396],[0.042751792818308,0.033171009272337,0.034758780151606],[-0.039088901132345,0.0018127136863768,0.015883941203356]],[[0.0058635962195694,0.03841682523489,0.0017480574315414],[-0.0022717157844454,0.0032642986625433,0.040496323257685],[0.010556886903942,0.072029791772366,-0.048995193094015]],[[0.010043578222394,-0.056990034878254,0.0097634308040142],[0.0091636162251234,0.0046914308331907,0.03862376511097],[0.0053691929206252,0.047661099582911,0.064082488417625]],[[-0.019075574353337,-0.051720019429922,-0.015899091959],[0.035981893539429,-0.013087468221784,0.0025628295261413],[0.019206134602427,-0.022310679778457,-0.044385422021151]],[[-0.050162937492132,-0.04649256169796,0.010780723765492],[-0.0065484116785228,-0.0026080177631229,0.03213994204998],[0.0017409421270713,0.028030555695295,0.041174158453941]],[[-0.01969532482326,0.027993442490697,0.037021979689598],[0.018457550555468,-0.0379953160882,-0.0010499607305974],[0.025230672210455,0.04266495257616,-0.0025754554662853]],[[0.066680170595646,0.0033486485481262,0.028796639293432],[-0.016168415546417,-0.010467354208231,-0.030784826725721],[0.05956507101655,-0.043821722269058,-0.086107850074768]],[[-0.042743004858494,-0.013807485811412,0.020841423422098],[0.017997426912189,0.0023548123426735,0.054477706551552],[-0.050813127309084,0.034633658826351,0.020873449742794]],[[0.045100420713425,0.011483076028526,-0.042490519583225],[-0.016315720975399,0.0016604347620159,0.017120234668255],[-0.01117052976042,-0.027186622843146,-0.012225771322846]],[[0.036163344979286,-0.013777586631477,-0.053125932812691],[-0.015775827690959,-0.018663721159101,0.027145486325026],[-0.014714209362864,0.040229335427284,0.038866508752108]],[[-0.078900650143623,0.028535034507513,-0.013741468079388],[-0.041144978255033,0.083378538489342,-0.022712308913469],[-0.041369769722223,-0.0067472979426384,0.049268797039986]],[[-0.017367335036397,0.031636595726013,-0.09252018481493],[-0.036318313330412,0.020452253520489,-0.0019252401543781],[-0.032683216035366,-0.027153342962265,-0.085353456437588]],[[0.038450621068478,-0.018845543265343,0.0037825331091881],[0.01728287525475,-0.031950306147337,-0.01841045729816],[-0.046593904495239,0.02233138307929,0.027538413181901]],[[0.11802905797958,0.060263406485319,0.028764704242349],[-0.047233138233423,0.059149660170078,0.025692751631141],[-0.016576716676354,-0.018064899370074,0.0010388874216005]],[[0.017010375857353,0.049136538058519,-0.056309472769499],[-0.053379710763693,0.028001902624965,-0.018531208857894],[-0.019299328327179,-0.001684533781372,-0.060860443860292]],[[-0.013660582713783,-0.024179389700294,-0.011867201887071],[-0.012195342220366,0.035531409084797,-0.032489094883204],[0.044952914118767,0.023341502994299,-0.045024123042822]],[[-0.034288816154003,-0.0022618346847594,0.041759815067053],[-0.020914394408464,-0.013116707094014,-0.033574782311916],[0.029349844902754,0.036064337939024,0.057236019521952]],[[0.023666597902775,0.032454997301102,0.037543527781963],[-0.032788269221783,4.4432061258703e-05,-0.028017630800605],[-0.081106394529343,-0.044661283493042,-0.061515871435404]],[[-0.00066167692421004,0.023720303550363,0.068497769534588],[-0.022476589307189,0.0046222656965256,0.054986238479614],[0.041935868561268,-0.01020893920213,0.046486347913742]],[[-0.018962096422911,-0.051225256174803,0.016889985650778],[-0.008421222679317,0.030058233067393,0.10076167434454],[0.030487801879644,-0.0086959814652801,0.017810283228755]],[[0.026495890691876,0.050539504736662,-0.01126638893038],[0.0075547811575234,-0.010698522441089,-0.0081603238359094],[0.019740669056773,-0.036861050873995,0.0035960015375167]],[[-0.1249144077301,-0.075327597558498,-0.010612382553518],[0.034617897123098,0.021845679730177,-0.023655885830522],[-0.00020111858611926,0.00071303767617792,0.027112875133753]],[[0.0068016154691577,-0.027319872751832,0.037715941667557],[0.027529006823897,0.054105214774609,0.0683463960886],[0.0053716418333352,0.028280979022384,0.01449847407639]],[[-0.0039827479049563,0.045084595680237,0.0014395439065993],[-0.052454244345427,0.049844309687614,-0.017808796837926],[-0.10224255919456,-0.074007369577885,0.036085542291403]],[[-0.043199684470892,-0.022836580872536,-0.039574813097715],[-0.00029850244754925,-0.036720026284456,-0.045469969511032],[-0.044250439852476,-0.0039601167663932,-0.059606097638607]],[[-0.011311849579215,-0.044298946857452,-0.03411602973938],[0.033303324133158,0.013199996203184,0.037247512489557],[0.010009647347033,-0.031517539173365,0.036204986274242]],[[-0.070296257734299,0.032391868531704,0.012706688605249],[-0.025799717754126,0.025081358850002,0.013839779421687],[0.0094778584316373,-0.048339623957872,-0.018661260604858]],[[-0.067811816930771,0.092288129031658,-0.012108690105379],[0.01205888018012,-0.024019811302423,-0.066327974200249],[-0.019096843898296,0.033873222768307,0.011515290476382]],[[0.028607895597816,0.035043001174927,0.044283978641033],[0.090400665998459,0.0062261745333672,0.0014878001529723],[0.035701867192984,0.01186675671488,-0.005784850101918]],[[-0.022384831681848,-0.026084054261446,0.0076809916645288],[0.011270251125097,0.01023524068296,0.006202997174114],[-0.035724651068449,-0.0076863528229296,0.061813749372959]],[[-0.018322594463825,0.038043543696404,-0.019077895209193],[-0.0041830125264823,0.036096137017012,0.026203002780676],[0.04067038744688,0.061969351023436,0.03920266777277]],[[0.042802087962627,0.02489285171032,0.010983382351696],[0.045708745718002,0.030460765585303,-0.019650446251035],[-0.021541593596339,-0.054082799702883,0.012571644969285]],[[-0.034556474536657,0.052467346191406,-0.0045068301260471],[0.053351942449808,0.034881457686424,0.0075966473668814],[-0.024640828371048,-0.0053541483357549,-0.039034593850374]],[[0.052851308137178,0.074056267738342,0.030177101492882],[-0.011446950957179,-0.095090791583061,0.020828535780311],[0.0020389657001942,0.05775161087513,0.00091198412701488]],[[-0.044045530259609,0.056586340069771,-0.051698070019484],[-0.042510211467743,0.0010209348984063,0.029291111975908],[-0.018651476129889,0.0026019169017673,-0.08039241284132]],[[0.027921531349421,0.060502383857965,0.029486088082194],[-0.045834127813578,-0.079657636582851,0.042176842689514],[0.03375531733036,-0.0030431139748544,0.02983664907515]],[[0.0099867274984717,-0.01412151940167,0.031280819326639],[-0.007335789501667,0.035542521625757,-0.020159989595413],[0.01853352598846,0.023687936365604,0.012940250337124]],[[0.026124101132154,-0.039645694196224,-0.015802565962076],[0.017994401976466,0.047002710402012,0.0069606220349669],[-0.047497101128101,0.029442325234413,-0.063763178884983]],[[-0.032311130315065,0.046798422932625,-0.04803941398859],[0.0035269157961011,-0.015527738258243,0.0064876275137067],[0.02903063595295,-0.059005375951529,-0.022202389314771]],[[0.10328478366137,0.067039147019386,-0.011084425263107],[0.10730731487274,-0.066242150962353,-0.014615574851632],[0.02880366332829,0.057266660034657,0.069612830877304]],[[0.018504513427615,-0.034099917858839,0.018252627924085],[-0.0099005214869976,0.0076588378287852,-0.026655208319426],[0.022745449095964,0.0018208647379652,0.051684387028217]],[[-0.043105870485306,-0.0011181286536157,-0.041449062526226],[-0.0091596627607942,0.0052470867522061,-0.026500733569264],[-0.016147335991263,-0.0075883422978222,-0.0078283566981554]],[[-0.035919606685638,-0.016799263656139,-0.023452227935195],[-0.019467668607831,0.0046955230645835,-0.0064855003729463],[0.039004255086184,0.076242759823799,0.0097824251279235]],[[-0.020860273391008,-0.054393995553255,-0.020600415766239],[0.0081486683338881,0.075303353369236,-0.027954187244177],[0.013562354259193,0.031061451882124,0.03884332254529]],[[-0.11450877040625,0.0067085810005665,0.0022975548636168],[0.05715798959136,0.027075421065092,0.053172085434198],[0.039926651865244,-0.043265338987112,-0.01394953392446]],[[0.0010821658652276,-0.0052172979339957,0.007520713377744],[0.026864413172007,-0.033570826053619,-0.044936928898096],[0.020013699308038,0.036617610603571,0.045084461569786]],[[-0.0019341750303283,0.059214022010565,-0.025880236178637],[-0.040346741676331,0.02996064350009,-0.043098300695419],[0.027546932920814,0.011752028018236,0.040029659867287]],[[-0.063284277915955,-0.078856334090233,-0.098295830190182],[-0.010860545560718,-0.042514219880104,-0.047887582331896],[-0.0044707097113132,-0.024069290608168,0.044266797602177]],[[0.039275608956814,0.034894056618214,0.049121897667646],[-0.081228293478489,-0.012301694601774,0.02304214052856],[-0.020339708775282,0.061338402330875,0.0066571673378348]],[[-0.028334654867649,-0.01799806393683,-0.022438509389758],[0.017261512577534,0.0080483984202147,0.066394276916981],[-0.0059444322250783,-0.037245728075504,-0.033136978745461]]],[[[-0.10534577816725,0.010088471695781,-0.0095290206372738],[-0.019533690065145,0.049114286899567,0.034318264573812],[-0.007388717494905,-0.040919452905655,0.05025439709425]],[[-0.010451576672494,0.062767989933491,-0.046829041093588],[-0.037317376583815,-0.091375648975372,-0.070898063480854],[-0.017013901844621,0.083912923932076,-0.04153023660183]],[[0.04974988847971,0.04389775544405,-0.048741083592176],[0.002871627220884,-0.03393429890275,0.038177561014891],[0.075628072023392,-0.051411360502243,-0.014879424124956]],[[-0.091204926371574,0.023549349978566,-0.054810505360365],[0.006451552733779,-0.03461929410696,-0.012332318350673],[0.10467050224543,-0.064813576638699,-0.037908665835857]],[[-0.058135531842709,-0.12891462445259,-0.031939465552568],[-0.011524769477546,0.12924429774284,0.022655399516225],[-0.025737594813108,-0.04469320550561,-0.027316704392433]],[[0.14105002582073,-0.00038653446245007,-0.0607247389853],[0.16980987787247,-0.20263010263443,0.10077600181103],[0.048859987407923,0.010078690946102,-0.12065245211124]],[[-0.0075877266936004,-0.067302130162716,0.041991606354713],[-0.088590815663338,0.012869021855295,-0.025140207260847],[-0.036380302160978,-0.062300402671099,-0.035814873874187]],[[0.030800672248006,0.022566419094801,-0.051292303949594],[0.026594201102853,0.027478134259582,-0.021204212680459],[0.05021632835269,0.013132439926267,-0.035920411348343]],[[-0.021093966439366,0.059683863073587,-0.008490932174027],[0.046940866857767,-0.040707569569349,-0.028917396441102],[-0.02713655307889,-0.046913485974073,-0.029245309531689]],[[-0.0097546018660069,-0.090324610471725,0.01264438778162],[-0.18469101190567,-0.047862082719803,-0.064914613962173],[0.082629837095737,-0.0057680755853653,-0.024711366742849]],[[0.010361932218075,0.049886327236891,-0.035473715513945],[-0.023114489391446,0.014635467901826,-0.0094763739034534],[-0.072994761168957,-0.02027702704072,0.010397847741842]],[[0.040384858846664,-0.010128970257938,-0.076106682419777],[0.011535785160959,-0.059742975980043,0.0082296095788479],[-0.019680842757225,-0.045936193317175,-0.012292568571866]],[[0.00099076889455318,-0.030604215338826,0.01184999756515],[-0.033905766904354,-0.021830962970853,-0.089635796844959],[0.037266254425049,0.03995481133461,0.015574843622744]],[[-0.00049911992391571,0.040913127362728,0.025316759943962],[0.01768446341157,-0.02254306524992,0.048688303679228],[-0.041760627180338,0.036300662904978,0.096008032560349]],[[0.0099768880754709,-0.06184933334589,-0.00087593006901443],[-0.022675348445773,-0.07017807662487,0.057778567075729],[0.024133877828717,0.013760431669652,-0.045681718736887]],[[-0.0054120821878314,-0.022623039782047,-0.023261517286301],[-0.012527173385024,-0.033491812646389,-0.060208909213543],[0.017760075628757,-0.041381113231182,0.03236972540617]],[[-0.018408427014947,-0.022849954664707,-0.13181959092617],[0.051390256732702,0.030965358018875,-0.090708807110786],[-0.041289441287518,-0.028399793431163,-0.10080862045288]],[[-0.037568852305412,-0.00091880344552919,-0.017125068232417],[0.050209037959576,0.019142378121614,0.036747667938471],[-0.018966192379594,-0.082647547125816,-0.042670700699091]],[[0.054641131311655,0.019305059686303,-0.039054065942764],[0.041593696922064,-0.029111742973328,0.0028004262130708],[-0.05335484072566,-0.046891801059246,-0.026468770578504]],[[0.040335115045309,-0.067867562174797,-0.0021760759409517],[-0.028437053784728,0.015108260326087,-0.040024600923061],[-0.011608234606683,-0.038117419928312,-0.049518205225468]],[[0.0021122347097844,-0.051536675542593,0.045866638422012],[0.0069003226235509,0.0060009639710188,0.018734566867352],[0.040996495634317,-0.008390873670578,0.053416512906551]],[[-0.034079927951097,-0.018188089132309,0.046231467276812],[-0.028359852731228,0.063959248363972,-0.027459131553769],[-0.0021534466650337,-0.044654622673988,0.0087934732437134]],[[0.029349969699979,0.029861046001315,-0.010282798670232],[0.020546888932586,-0.0048654414713383,-0.01596887037158],[-0.03386203572154,-0.027811758220196,0.0097451973706484]],[[-0.04671910777688,-0.031246243044734,0.077143132686615],[0.0093957670032978,-0.12046936154366,-0.001633221632801],[0.0084669068455696,0.091619655489922,-0.068750657141209]],[[0.026103364303708,-0.019826225936413,-0.029008354991674],[-0.0068230787292123,0.039560191333294,0.08316570520401],[-0.022144179791212,0.018314829096198,0.0089487954974174]],[[-0.088778927922249,-0.014567084610462,-0.027844307944179],[0.083320885896683,-0.031087499111891,-0.057418029755354],[-0.028352247551084,-0.037160504609346,-0.044526148587465]],[[-0.025305274873972,-0.014861701056361,-0.042219094932079],[0.073340632021427,0.013445015065372,0.038351982831955],[-0.023820960894227,-0.076381847262383,-0.073975183069706]],[[0.083696588873863,0.0505694411695,0.002834168728441],[0.05780628696084,-0.045646846294403,-0.035037502646446],[0.026153862476349,0.021908147260547,-0.0070654968731105]],[[-0.043266784399748,0.060913406312466,0.068331949412823],[0.057555984705687,0.062040068209171,-0.0047379299066961],[0.029656000435352,0.043321620672941,-0.0081745274364948]],[[-0.017225008457899,-0.051533788442612,0.082351572811604],[0.048903536051512,0.053066771477461,-0.011166493408382],[-0.016925111413002,-0.0057663079351187,0.013543005101383]],[[0.018706945702434,0.032133851200342,-0.028274221345782],[0.0097270552068949,-0.0052856612019241,0.033358700573444],[-0.050050176680088,0.012401513755322,0.060672346502542]],[[0.009612419642508,-0.04280985891819,0.0029603473376483],[-0.025064311921597,0.058995876461267,-0.042019937187433],[0.067323841154575,0.037493925541639,-0.04762327298522]],[[0.059501431882381,-0.12677980959415,-0.067296892404556],[0.059404421597719,-0.04075726121664,-0.0096305897459388],[0.020768953487277,0.16266705095768,-0.073324553668499]],[[-0.021896217018366,-0.022459700703621,0.030653389170766],[-0.10588544607162,0.010758663527668,0.056997615844011],[-0.0053992546163499,0.034859359264374,0.027349296957254]],[[-0.049625113606453,-0.0026101688854396,-0.039584636688232],[0.062817052006721,0.056756008416414,-0.008794185705483],[-0.058097630739212,0.012123767286539,-0.054652445018291]],[[-0.045310277491808,-0.073852479457855,-0.034721661359072],[0.035620484501123,-0.0042630019597709,0.05088784173131],[-0.12126000225544,-0.042782489210367,-0.058338597416878]],[[-0.029400074854493,-0.03306956961751,-0.023366222158074],[-0.03850369155407,-0.070849731564522,-0.070383660495281],[-0.024750176817179,0.060589198023081,0.0078572165220976]],[[0.022425416857004,-0.085671581327915,0.061556078493595],[0.049024872481823,0.044395476579666,0.014353382401168],[-0.083939932286739,-0.088182672858238,-0.15395033359528]],[[0.015390583314002,-0.01860280148685,-0.023735234513879],[-0.008244345895946,0.049231611192226,0.033536676317453],[-0.018363874405622,0.0022204206325114,-0.060251448303461]],[[0.022108525037766,0.013534808531404,-0.011097203940153],[0.093638755381107,0.0086946366354823,0.050319906324148],[-0.0035735247656703,-0.066592484712601,-0.013398826122284]],[[-0.029503833502531,0.0092528723180294,0.026215650141239],[-0.066802203655243,0.0054866797290742,-0.089979954063892],[-0.017711520195007,-0.035989362746477,-0.069958567619324]],[[0.0086381938308477,0.10491963475943,0.13570502400398],[0.051099546253681,-0.29200717806816,-0.13657142221928],[-0.0083353351801634,0.0053130928426981,0.019205192103982]],[[-0.040201086550951,0.040534138679504,0.06634259223938],[-0.055006835609674,0.0090200006961823,-0.00093943817773834],[0.082611545920372,-0.072619125247002,0.010672129690647]],[[-0.051150094717741,-0.030284693464637,-0.10268888622522],[-0.060518488287926,0.061419900506735,0.06923259049654],[-0.017879387363791,0.022063378244638,0.047882553189993]],[[0.047171093523502,-0.022221472114325,-0.031856592744589],[-0.068483926355839,0.080335162580013,0.06522075086832],[-0.14186555147171,-0.017972346395254,0.01927574723959]],[[0.030876692384481,0.016616920009255,-0.032679673284292],[-0.0046292366459966,0.029885644093156,-0.0019895290024579],[0.0084615983068943,-0.01586457900703,-0.022550607100129]],[[-0.028976257890463,-0.030921671539545,0.06160993874073],[0.040450133383274,-0.020833306014538,0.019822932779789],[-0.02237950079143,0.024975607171655,-0.0098202656954527]],[[0.036190565675497,0.063502267003059,0.010001505725086],[0.046339150518179,0.00099567836150527,-0.064589783549309],[0.030872678384185,0.0054638972505927,0.059076901525259]],[[-0.067557118833065,0.0024563462939113,0.06314854323864],[-0.025916561484337,0.023758143186569,-0.062436453998089],[0.023542266339064,0.04653612151742,0.01205600053072]],[[-0.043461978435516,0.062816560268402,-0.014413657598197],[0.0047112838365138,-0.045528572052717,0.055621527135372],[-0.026220383122563,0.024298595264554,-0.037686582654715]],[[-0.023892587050796,-0.052653595805168,-0.037193235009909],[0.023115880787373,0.02718161791563,0.02030985802412],[0.02458993345499,0.011374711059034,-0.0068259816616774]],[[0.00099105888511986,-0.0090568298473954,-0.061186201870441],[0.016334265470505,-0.021691102534533,-0.095849134027958],[0.020460821688175,0.087232373654842,0.064956367015839]],[[-0.070447050035,0.016354324296117,-0.078506872057915],[-0.083074375987053,-0.020226892083883,0.043143596500158],[-0.13927410542965,-0.021894421428442,-0.10613045096397]],[[0.079236567020416,0.0573027767241,-0.0078929914161563],[0.051562454551458,-0.023532290011644,0.10348343104124],[0.046623021364212,0.062462832778692,0.033258844166994]],[[-0.056930493563414,0.030709821730852,0.0088364109396935],[0.0080195479094982,0.074132777750492,0.026080012321472],[-0.049648895859718,-0.00012498618161771,-0.021445697173476]],[[0.042691100388765,-0.022882541641593,-0.0030318973585963],[0.02310997620225,-0.13990157842636,-0.048280578106642],[-0.021456100046635,0.070298932492733,-0.055343233048916]],[[-0.0073742554523051,0.044061023741961,0.012288955971599],[0.022185206413269,-0.055238112807274,-0.039609860628843],[-0.022853761911392,-0.013132836669683,-0.061115212738514]],[[-0.016165686771274,-0.0078064645640552,-0.0054775308817625],[-0.021803822368383,0.098553508520126,0.011862742714584],[6.7815875809174e-05,0.029846873134375,-0.036169197410345]],[[0.014916703104973,0.074225097894669,-0.019508734345436],[-0.12154158204794,-0.021529205143452,0.039371285587549],[0.035291146486998,0.013950497843325,0.035454325377941]],[[-0.018064416944981,-0.009181572124362,-0.0072197201661766],[-0.030265588313341,0.024440901353955,-0.005626181140542],[0.044128626585007,0.033080503344536,0.023152083158493]],[[0.01807564869523,-0.028018528595567,-0.061391782015562],[0.017230957746506,0.096123717725277,0.056692212820053],[-0.067704454064369,-0.018126539885998,-0.055094122886658]],[[0.041081331670284,0.044174432754517,-0.010997839272022],[0.017079940065742,-0.015323848463595,0.0030014137737453],[-0.0034918754827231,0.0086507992818952,-0.025306845083833]],[[0.0010374528355896,0.019262669607997,-0.033923856914043],[-0.015098593197763,0.031132634729147,-0.0031752800568938],[-0.0081870118156075,-0.054251357913017,0.0048303953371942]],[[0.026698214933276,0.092344172298908,-0.057037889957428],[0.037953075021505,-0.05201455578208,0.038329869508743],[0.05462834239006,0.0017388254636899,-0.05933815613389]]],[[[-0.048172876238823,0.1600735783577,0.035604741424322],[0.13217142224312,0.0037397232372314,0.018831420689821],[-0.077893882989883,-0.1118475496769,-0.020564379170537]],[[-0.0046851360239089,-0.029065882787108,-0.0027394504286349],[-0.054084070026875,0.012142226099968,-0.044401828199625],[0.018802693113685,-0.01539209485054,-0.0080151194706559]],[[-0.046026617288589,-0.046018324792385,0.022699186578393],[-0.013038113713264,-0.10442056506872,-0.010804046876729],[0.0038107666186988,0.082693837583065,-0.038342285901308]],[[0.02669832855463,-0.053501389920712,-0.079429745674133],[0.021500030532479,-0.051559094339609,0.017492029815912],[-0.0092875901609659,-0.0092059690505266,-0.032591123133898]],[[0.0056556137278676,0.030401237308979,-0.074433155357838],[-0.048130415380001,0.036651644855738,-0.010555854067206],[-0.021789330989122,-0.050045646727085,0.0049406979233027]],[[-0.088337041437626,-0.017947601154447,-0.16233475506306],[-0.016716813668609,-0.013919781893492,-0.041436646133661],[0.032128941267729,0.074651949107647,0.070874482393265]],[[0.020657304674387,-0.0072053386829793,0.0020741722546518],[-0.091420121490955,-0.022724056616426,0.0018149387324229],[-0.055932525545359,-0.058039914816618,-0.00030263321241364]],[[-0.014183632098138,-0.10554078221321,0.025472264736891],[-0.0047316052950919,0.073908217251301,-0.0069754021242261],[0.017067087814212,0.022730436176062,-0.0032219444401562]],[[0.046482119709253,0.015435329638422,-0.035814378410578],[-0.021647753193974,-0.0014953013742343,0.02080244012177],[0.027101902291179,-0.054638642817736,0.090115047991276]],[[-0.029349185526371,0.045306630432606,0.039647832512856],[0.026065703481436,0.081967674195766,-0.068813621997833],[-0.12543785572052,-0.017330352216959,-0.15611279010773]],[[-0.085664667189121,0.033159386366606,-0.0090905046090484],[0.041725125163794,-0.0022126131225377,0.075712338089943],[0.03603770583868,0.066213935613632,0.065653882920742]],[[-0.0032928269356489,-0.01223118789494,-0.054333820939064],[0.016691591590643,-0.055158767849207,-0.026452787220478],[0.0058386991731822,0.034082539379597,0.0052432231605053]],[[0.013046947307885,-0.0062840529717505,-0.022494016215205],[-0.02294185012579,0.0029556662775576,0.067818000912666],[-0.032055128365755,0.021582195535302,0.055709652602673]],[[0.015602070838213,0.074255771934986,0.058250464498997],[0.0016159772640094,-0.026447180658579,0.061743699014187],[-0.080361299216747,0.00067510252119973,-0.0094323707744479]],[[0.069273129105568,-0.078470647335052,0.049954660236835],[0.0095996055752039,-0.075497075915337,-0.041643884032965],[-0.009662807919085,0.04535286873579,-0.05213850364089]],[[-0.016844151541591,-0.061001528054476,0.0543496273458],[-0.0044907792471349,-0.020608372986317,-0.029829699546099],[-0.016602367162704,0.012537568807602,-0.080656319856644]],[[0.023964632302523,0.053445633500814,0.07278898358345],[0.079757258296013,0.016501724720001,0.015726322308183],[-0.020279685035348,0.07179706543684,-0.0081503642722964]],[[-0.011687461286783,-0.0083068301901221,-0.10853120684624],[-0.0041086613200605,-0.0014941345434636,0.02150634676218],[0.013624149374664,0.016129497438669,0.04810719192028]],[[-0.011230735108256,0.071021653711796,0.020563596859574],[0.052297621965408,-0.10202108323574,-0.047875124961138],[-0.029141243547201,-0.0509167984128,-0.019748751074076]],[[0.00075644737808034,-0.0096795177087188,0.014988847076893],[0.030193386599422,-0.01016234792769,0.047192323952913],[-0.068417921662331,-0.00020679760200437,-0.026894373819232]],[[0.0033075765240937,-0.031552478671074,-0.034425921738148],[0.090954631567001,0.0018202686915174,-0.040011249482632],[-0.12388429790735,-0.10644789785147,0.052458085119724]],[[-0.029220532625914,0.012379658408463,0.013451428152621],[0.07772671431303,-0.13363812863827,-0.0061019766144454],[0.021274503320456,-0.079288974404335,0.013234896585345]],[[0.0095422454178333,0.0050255232490599,-0.0028977766633034],[0.010191998444498,-0.0041353232227266,0.023228120058775],[0.0021523188333958,0.019844269379973,-0.043258380144835]],[[-0.039812717586756,-0.080131784081459,-0.051814135164022],[-0.093528635799885,-0.0034000549931079,0.03233940154314],[0.040572565048933,0.028293883427978,0.057230345904827]],[[0.04513481259346,0.015732984989882,0.027714712545276],[0.086053363978863,-0.035856693983078,0.001238870434463],[0.011361097916961,0.03543059155345,-0.018153306096792]],[[0.033374547958374,-0.028358174487948,-0.16110099852085],[0.1060186997056,0.046977162361145,-0.017096448689699],[-0.037209738045931,-0.052232801914215,-0.022909829393029]],[[-0.064112111926079,-0.019592450931668,-0.036303736269474],[-0.014502935111523,-0.023033082485199,-0.014069804921746],[0.035444509238005,-0.059893801808357,-0.00067165127256885]],[[0.0012121461331844,0.061748616397381,0.017100999131799],[-0.018316941335797,-0.089563027024269,-0.088544294238091],[-0.10248639434576,-0.14238451421261,-0.036065842956305]],[[-0.073188446462154,-0.11707105487585,0.086620852351189],[-0.018073307350278,0.038538828492165,0.056136637926102],[0.038573335856199,0.017277514562011,-0.0085485009476542]],[[-0.015836538746953,0.010914099402726,0.05648997053504],[0.056449063122272,-0.0045715644955635,-0.088725492358208],[-0.030328361317515,-0.031860519200563,0.017586322501302]],[[0.074588596820831,0.05284570530057,-8.7854587036418e-06],[-0.051109164953232,0.02219689451158,-0.051988914608955],[0.030171222984791,-0.016111239790916,0.016855791211128]],[[-0.018400356173515,-0.023416699841619,-0.068971768021584],[-0.0099844327196479,-0.035139158368111,-0.054324340075254],[-0.030881840735674,-0.012359727174044,-0.078589841723442]],[[0.014609130099416,0.012981050647795,0.013241591863334],[0.037662647664547,0.050348799675703,-0.014110466465354],[-0.080422103404999,-0.010856019333005,0.0038469203282148]],[[-0.0049575474113226,-0.013906759209931,-0.076524749398232],[-0.043724846094847,0.056916404515505,-0.01458137575537],[-0.060683481395245,0.024454228579998,0.0054501048289239]],[[-0.026905668899417,-0.027118178084493,-0.0013168484438211],[0.021171171218157,0.040019735693932,0.059196129441261],[-0.080131374299526,0.033772762864828,-0.035036277025938]],[[-0.081432268023491,-0.13050670921803,-0.033422827720642],[-0.012688048183918,-0.063796706497669,0.0083154831081629],[-0.099963165819645,-0.0013169692829251,-0.048615250736475]],[[0.049488339573145,0.013022937811911,-0.038891095668077],[-0.0046699647791684,0.039135135710239,0.011064793914557],[0.012651504017413,0.062930464744568,-0.0018284659599885]],[[0.017782943323255,0.050684124231339,0.091796919703484],[0.054097130894661,-0.022593431174755,0.061096407473087],[-0.1273126155138,-0.057649672031403,-0.037585414946079]],[[-0.061552837491035,-0.020510587841272,-0.008655752055347],[-0.049096513539553,0.016920495778322,-0.031342897564173],[-0.024890586733818,-0.055025566369295,-0.047141704708338]],[[-0.013807185925543,0.012740900740027,-0.035684254020452],[0.042091283947229,0.017038702964783,0.012197893112898],[0.033878523856401,-0.0020839406643063,0.036785613745451]],[[-0.00057398102944717,-0.0085394456982613,0.0082416776567698],[0.0080237509682775,-0.012056349776685,-0.025188975036144],[0.04210165143013,0.0094908103346825,-0.038627859205008]],[[-0.029959606006742,0.054067231714725,-0.0014032333856449],[0.013027106411755,-0.006027405615896,-0.08215769380331],[-0.019404707476497,0.0021962926257402,0.0063142972066998]],[[0.049725137650967,-0.096884094178677,0.073326624929905],[-0.0088571477681398,-0.0093936724588275,0.0048461696133018],[-0.0045072413049638,-0.058667659759521,0.041767727583647]],[[-0.052698601037264,-0.0012534994166344,-0.030076667666435],[-0.025034457445145,0.024299213662744,0.11102484166622],[-0.035830903798342,-0.028562491759658,-0.028400572016835]],[[0.034717153757811,0.035638451576233,-0.14783065021038],[0.0067565157078207,0.11644949764013,0.030077388510108],[-0.10374168306589,0.068772040307522,0.063363090157509]],[[-0.005305661354214,0.05379731580615,-0.030776230618358],[0.0086324075236917,0.0097439475357533,0.012503352947533],[0.022686032578349,-0.042315158993006,-0.055003359913826]],[[-0.038159597665071,0.039279509335756,0.026778683066368],[0.067404799163342,0.031921938061714,-0.091388918459415],[-0.0096222599968314,-0.073261812329292,-0.029210709035397]],[[-0.02358727902174,-0.099083058536053,0.022192157804966],[-0.048102103173733,-0.041339363902807,0.02466288022697],[0.029777944087982,0.018427250906825,0.037671491503716]],[[-0.017587307840586,-0.065482392907143,-0.036188255995512],[-0.044473249465227,0.051231291145086,-0.029288062825799],[-0.020139034837484,0.042411386966705,-0.020409379154444]],[[-0.034632004797459,-0.045094978064299,-0.030330903828144],[-0.02023439668119,0.028294445946813,-0.031780548393726],[-0.092780850827694,-0.081826068460941,-0.078120581805706]],[[-0.030738595873117,0.00046765396837145,-0.014051254838705],[-0.015880882740021,-0.012732515111566,0.014763446524739],[0.0013568181311712,0.0042757415212691,0.016011631116271]],[[-0.079254321753979,-0.050925057381392,0.0013041469501331],[-0.040715947747231,0.048292178660631,0.044322598725557],[0.034876849502325,-0.0098271742463112,0.024052945896983]],[[-0.11076427996159,-0.0050960658118129,-0.0071462728083134],[0.04390562698245,0.072950884699821,-0.010158250108361],[-0.039277587085962,0.018232487142086,-0.0269331689924]],[[0.076328128576279,-0.012637588195503,0.09772701561451],[0.028725031763315,0.041436396539211,-0.054666180163622],[0.087381236255169,0.0088306283578277,0.067979894578457]],[[0.050268184393644,0.0752097889781,0.040983129292727],[-0.041566237807274,0.010367969982326,-0.048444528132677],[0.016409346833825,-0.027827605605125,-0.014087193645537]],[[-0.033209010958672,-0.019133497029543,-0.051816843450069],[-0.01610061340034,-0.045287858694792,0.036144685000181],[-0.0077949878759682,0.053409922868013,0.041623439639807]],[[-0.045627672225237,0.054022721946239,-0.034844402223825],[-0.002205757657066,0.011233383789659,-0.031201776117086],[-0.038777083158493,-0.0017040802631527,-0.093298003077507]],[[-0.016104120761156,-0.027098052203655,-0.002952906768769],[-0.032947678118944,0.038146156817675,-0.044810336083174],[-0.0021532783284783,-0.024030791595578,0.033722691237926]],[[0.039649371057749,-0.057984054088593,-0.048493824899197],[-0.018214087933302,0.08257994055748,-0.076596297323704],[-0.021625936031342,0.057957392185926,0.055503778159618]],[[0.0061859986744821,0.0004790943057742,0.02377662435174],[0.02450324781239,-0.036902200430632,-0.017718443647027],[-0.018158404156566,0.054217100143433,-0.0015690324362367]],[[0.019706320017576,-0.0083903009071946,-0.044282790273428],[-0.00042787718120962,0.043953824788332,0.038118436932564],[-0.034787595272064,0.0090633975341916,0.007142938207835]],[[-0.0070493686944246,0.0679921656847,0.037285581231117],[-0.038478031754494,-0.043068639934063,-0.037676189094782],[0.0083814477548003,0.05899989977479,-0.024235628545284]],[[-0.043061267584562,0.076575756072998,0.028175195679069],[-0.0065533118322492,0.028209626674652,0.022308798506856],[-0.024617133662105,-0.11074705421925,-0.038196045905352]],[[-0.053614262491465,0.021595738828182,0.022092426195741],[-0.022751446813345,-0.021931052207947,-0.019308529794216],[0.050495531409979,0.068026170134544,-0.045568499714136]]],[[[0.047706753015518,0.058959510177374,-0.066439874470234],[0.11700268834829,0.063209697604179,-0.029193930327892],[-0.066805526614189,0.067367941141129,0.055293798446655]],[[0.010359494015574,-0.14203083515167,-0.089803300797939],[0.040586769580841,0.041619189083576,-0.0052090622484684],[-0.048484779894352,-0.059252124279737,0.055844608694315]],[[0.040029682219028,-0.040035229176283,0.050172962248325],[-0.040492486208677,-0.055419225245714,0.019516367465258],[0.051022931933403,-0.0039158859290183,0.091364398598671]],[[-0.015033418312669,0.019754128530622,-0.10407041013241],[0.093507707118988,-0.0061283009126782,0.049328129738569],[-0.022015897557139,0.091594658792019,0.079501956701279]],[[0.023795682936907,0.00052344211144373,0.036164529621601],[0.015363562852144,-0.1190951615572,-0.00075128773460165],[-0.099184617400169,0.059099961072206,0.05952388048172]],[[-0.12224307656288,-0.019148446619511,0.056160110980272],[-0.2026481628418,-0.14233736693859,0.012454482726753],[0.15882007777691,0.07656504958868,0.035660780966282]],[[-0.11154568940401,0.024615611881018,-0.015763668343425],[0.029052244499326,-0.029118653386831,-0.078663215041161],[0.024786066263914,-0.027302572503686,0.017577657476068]],[[-0.10982722789049,-0.016618654131889,0.11403550952673],[0.011278836987913,-0.037265378981829,0.082930766046047],[0.10047592967749,0.035107973963022,0.04425110667944]],[[-0.013942137360573,-0.084035880863667,0.038182374089956],[-0.015781482681632,0.05001038312912,0.033285405486822],[-0.036526583135128,0.046184565871954,-0.044610910117626]],[[0.11196830123663,0.057702150195837,-0.12722806632519],[-0.059045124799013,-0.12098708003759,0.036228813230991],[-0.046147901564837,-0.0014692031545565,-0.0027958783321083]],[[0.073706224560738,-0.037971056997776,0.0040053832344711],[0.037745986133814,-0.04617902636528,-0.069933570921421],[0.063762560486794,0.046855390071869,0.058105431497097]],[[-0.079911060631275,0.08128073066473,0.051731042563915],[-0.052593413740396,0.012373957782984,0.10136860609055],[0.11066845804453,0.042838700115681,0.014425177127123]],[[-0.03606241568923,-0.0046172854490578,-0.016755159944296],[0.031267892569304,0.11211878806353,-0.051286295056343],[-0.0043920744210482,-0.14634001255035,0.021188212558627]],[[0.076321326196194,0.044326949864626,0.057084493339062],[0.053611915558577,0.095637410879135,0.063706204295158],[-0.039872214198112,0.08594024181366,-0.018450563773513]],[[0.061539523303509,-0.12487594038248,0.0096056824550033],[0.035341519862413,0.046216804534197,-0.038698278367519],[0.067273385822773,-0.049304015934467,0.074647687375546]],[[0.019981386139989,0.040794987231493,0.032500602304935],[0.0026950435712934,-0.13026283681393,0.047222316265106],[-0.017193332314491,0.001781695522368,0.01832271181047]],[[0.016844861209393,-0.12511000037193,0.081586189568043],[0.1141683831811,-0.012101379223168,-0.095530107617378],[0.0052380082197487,-0.066387847065926,0.049293864518404]],[[-0.14511178433895,-0.0032506179995835,-0.01482891663909],[-0.035455495119095,0.020498350262642,0.013924391940236],[0.063239991664886,0.059286955744028,0.045232474803925]],[[0.019187796860933,-0.093897752463818,0.03092985227704],[-0.0043410575017333,0.057894214987755,0.0027825403958559],[-0.034505806863308,0.0044150995090604,0.088871866464615]],[[-0.070494584739208,-0.012360364198685,-0.051162861287594],[-0.042762618511915,-0.12354924529791,0.0063494057394564],[-0.017545821145177,-0.012248815968633,0.0066019301302731]],[[0.040938809514046,-0.018654076382518,-0.048014353960752],[-0.056450445204973,0.050977796316147,0.0044071180745959],[-0.062706485390663,-0.030573409050703,-0.0070557091385126]],[[-0.043904971331358,-0.046138700097799,0.031517948955297],[-0.075215302407742,0.084305614233017,0.014700810424984],[-0.096207305788994,-0.057181693613529,-0.029065137729049]],[[-0.038433916866779,0.11173961311579,-0.05539171770215],[-0.022348195314407,0.045038122683764,-0.03301053866744],[0.042234692722559,-0.04771938174963,-0.0066297356970608]],[[0.011437440291047,-0.030119614675641,-0.021650778129697],[-0.024021230638027,-0.077531069517136,0.086569204926491],[-0.026727050542831,0.07178720831871,-0.0083865197375417]],[[0.038164932280779,-0.072474464774132,-0.012891148217022],[0.0051472904160619,-0.024124085903168,0.060119424015284],[-0.012707405723631,0.018435766920447,-0.024317070841789]],[[-0.018531078472733,-0.10225915163755,0.03244885802269],[-0.015141119249165,0.093913219869137,-0.023204389959574],[-0.079870380461216,-0.018736811354756,-0.015644451603293]],[[-0.094116881489754,0.0017742823110893,0.0073134414851665],[0.0050592329353094,-0.12518566846848,-0.087524652481079],[-0.022122640162706,-0.13997113704681,0.041057199239731]],[[-0.10997723788023,0.051797512918711,0.012773713096976],[-0.023852843791246,-0.076058730483055,0.024462573230267],[-0.07154980301857,-0.034101147204638,-0.036478605121374]],[[-0.038397245109081,-0.077225208282471,0.058317344635725],[-0.0011666988721117,-0.019173350185156,-0.011329101398587],[0.067289434373379,0.02084850333631,0.057670142501593]],[[0.037003021687269,-0.057157028466463,-0.026331011205912],[-0.057554669678211,-0.014765540137887,-0.017741333693266],[0.011689914390445,0.061151448637247,-0.029267879202962]],[[-0.035195931792259,-0.025310955941677,0.071760043501854],[-0.10043588280678,0.045854106545448,0.07658039778471],[-0.088575549423695,-0.031964235007763,-0.009509015828371]],[[0.021545898169279,-0.092414297163486,-0.050254642963409],[0.061237674206495,-0.042067475616932,-0.013290555216372],[-0.036073554307222,0.063756749033928,0.0019652512855828]],[[0.077835313975811,-0.23178726434708,-0.052313081920147],[-0.022687964141369,-0.086089074611664,0.047292668372393],[-0.01446879375726,0.016543416306376,-0.014353957958519]],[[0.097025386989117,-0.072391271591187,-0.00063225993653759],[-0.025277441367507,0.027815168723464,0.052159551531076],[-0.056522812694311,-0.028059558942914,-0.096992880105972]],[[-0.014753377996385,-0.029928777366877,-0.091184057295322],[0.054101753979921,-0.018510339781642,0.0082577550783753],[-0.013576100580394,-0.0028660537209362,0.030540753155947]],[[-0.012029320932925,-0.032909706234932,0.11411265283823],[-0.12233778089285,-0.013680114410818,0.033566515892744],[-0.045855205506086,-0.00515405414626,0.0016309634083882]],[[-0.033431854099035,-0.011890225112438,-0.087780192494392],[0.06232600659132,0.013616303913295,-0.012594883330166],[0.029355134814978,-0.087214685976505,-0.059376385062933]],[[-0.074325419962406,0.038820598274469,-0.0397291444242],[0.014678897336125,0.022553885355592,-0.023683642968535],[-0.03218986839056,-0.094463050365448,0.05828969180584]],[[-0.023810466751456,0.019195381551981,-0.082175046205521],[-0.021851856261492,-0.19172856211662,-0.0061553418636322],[0.016075123101473,0.058415502309799,-0.12667405605316]],[[0.033085059374571,-0.027923978865147,-0.06666050106287],[-0.024315221235156,-0.084985673427582,-0.0032595251686871],[-0.022827200591564,0.11147905886173,-0.046798519790173]],[[-0.0058988379314542,0.051002852618694,0.025385228917003],[0.013764987699687,-0.1318928450346,0.096431590616703],[-0.014098745770752,-0.01785104162991,-0.023071827366948]],[[0.013450670056045,-0.066701389849186,-0.072227366268635],[-0.033027905970812,-0.021408217027783,0.015660563483834],[-0.11672675609589,-0.015766452997923,0.0013340078294277]],[[-0.015625679865479,0.003047386649996,0.065310038626194],[-0.070079945027828,0.022253984585404,-0.050943128764629],[0.018524885177612,0.042139910161495,0.025729432702065]],[[0.027900399640203,-0.025337358936667,-0.059963658452034],[-0.047084931284189,-0.030589085072279,0.022569952532649],[-0.020763747394085,0.00051954877562821,-0.025852615013719]],[[-0.047773260623217,-0.070708997547626,-0.0078107132576406],[-7.3398005042691e-05,-0.063461601734161,-0.013087364844978],[-0.046348229050636,0.018841948360205,-0.0090631125494838]],[[0.0091638891026378,0.14444926381111,-0.062195301055908],[-0.06058868393302,-0.015806326642632,-0.041098400950432],[0.054419077932835,0.039574380964041,-0.00066289911046624]],[[0.11316701769829,-0.088223591446877,0.019146054983139],[-0.010017326101661,0.045095719397068,-0.030880302190781],[-0.0061946883797646,0.024336900562048,-0.032217927277088]],[[-0.02148967795074,0.043988071382046,-0.03368154913187],[0.026867277920246,0.13782860338688,0.10177585482597],[0.057280004024506,0.048297673463821,0.049893416464329]],[[0.0081940786913037,0.05273137614131,-0.054242331534624],[-0.079386107623577,-0.099754080176353,-0.030899981036782],[-0.019512578845024,0.016707237809896,0.077130071818829]],[[0.013702373020351,-0.050205785781145,0.053885977715254],[-0.10638898611069,0.081888392567635,-0.092595495283604],[0.017303932458162,-0.1075805798173,0.091893553733826]],[[0.029541671276093,-0.07340008020401,-0.039950229227543],[-0.073795780539513,0.031758788973093,0.044654686003923],[0.023758279159665,0.024654261767864,-0.050889398902655]],[[-0.055767066776752,0.12180108577013,0.090925641357899],[0.061249021440744,0.070326879620552,-0.025667862966657],[-0.050065316259861,-0.095377691090107,-0.082753449678421]],[[-0.080644689500332,0.061812613159418,-0.05737916380167],[-0.092379175126553,-0.02415337972343,-0.035073190927505],[0.026588674634695,-0.14812982082367,-0.036921914666891]],[[-0.014583066105843,0.12315559387207,0.010654305107892],[0.03587207570672,0.029863081872463,0.1549389064312],[-0.027481578290462,0.043588470667601,0.050404295325279]],[[-0.044779654592276,0.031549118459225,0.08672758936882],[0.055511202663183,-0.00092774693621323,-0.022505003958941],[-0.0061460109427571,-0.028389431536198,-0.0066915121860802]],[[0.053074575960636,-0.11621348559856,0.077636361122131],[0.012396953999996,-0.046686463057995,0.037745907902718],[-0.00010056975588668,-0.022945627570152,-0.0034589220304042]],[[-0.042525365948677,-0.029435211792588,-0.016567742452025],[0.067289046943188,0.016100851818919,0.0014624088071287],[-0.050124626606703,0.019027458503842,0.041283950209618]],[[-0.0049836845137179,-0.076643243432045,0.070292495191097],[-0.070123396813869,-0.093907654285431,0.058586969971657],[0.037294395267963,0.10198536515236,-0.086592942476273]],[[0.02209941111505,0.0084081031382084,-0.013765743933618],[-0.069297164678574,-0.020704530179501,0.0024224210064858],[0.10451009869576,-0.021184746176004,-0.023171490058303]],[[-0.027014568448067,-0.0022190054878592,0.032437141984701],[0.0063787330873311,-0.018316242843866,0.061143040657043],[0.022406984120607,-0.0081697329878807,0.0022997562773526]],[[-0.079441666603088,0.02031734213233,-0.0333062261343],[-0.0030287094414234,0.0086925635114312,0.061942551285028],[-0.04331461340189,0.055356122553349,0.026642069220543]],[[0.083493798971176,0.023808719590306,-0.059206508100033],[-0.026470242068172,-0.070067584514618,-0.02763413824141],[-0.058700934052467,-0.041572086513042,-0.12134206295013]],[[0.051196161657572,0.041978340595961,-0.02958245947957],[-0.061594076454639,-0.05112873390317,0.054051123559475],[-0.036505561321974,0.0080635603517294,0.033287681639194]],[[0.02081236615777,-0.036399316042662,0.14131067693233],[0.035869922488928,0.083426244556904,0.16808605194092],[0.0052982890047133,-0.007829574868083,-0.018210135400295]]],[[[-0.069797396659851,-0.019616767764091,-0.031613387167454],[-0.015955613926053,-0.051564514636993,0.034334383904934],[0.0036829789169133,0.045107662677765,0.087890841066837]],[[0.028164548799396,-0.023655600845814,-0.020400075241923],[0.024897491559386,-0.024393221363425,-0.0504000633955],[0.0026768539100885,0.031385790556669,0.009394814260304]],[[0.0056554060429335,-0.02582279779017,0.01955258846283],[-0.015577091835439,-0.013824820518494,-0.018113974481821],[0.0087915807962418,0.017819117754698,0.0049221506342292]],[[-0.032303918153048,0.026554150506854,-0.029475230723619],[-0.0058101452887058,-0.033095937222242,0.037845313549042],[0.016716362908483,0.043051145970821,-0.020996320992708]],[[-0.0073872520588338,0.009684999473393,0.013933897949755],[-0.04773472994566,0.0097628459334373,0.00013507284165826],[0.017803521826863,-0.029471781104803,0.022136926651001]],[[0.025116588920355,0.061963155865669,-0.077078178524971],[-0.0041005881503224,-0.011871886439621,0.026133952662349],[0.0053745107725263,-0.02156556583941,-0.022087555378675]],[[-0.027790706604719,0.022977635264397,0.00047608162276447],[-0.083175301551819,-0.042029175907373,0.00027066605980508],[0.0084866564720869,0.031057730317116,-0.0071372874081135]],[[-0.01693138666451,0.028018834069371,-0.023134967312217],[0.0090795187279582,0.030279938131571,-0.021291570737958],[-0.0046992474235594,-0.031536255031824,0.017560256645083]],[[-0.032772198319435,0.037831857800484,0.0028350511565804],[0.081240199506283,-0.022656109184027,0.013455542735755],[-0.065745145082474,0.039185080677271,-0.045101933181286]],[[0.015735419467092,-0.062673591077328,0.035585809499025],[-0.001525923027657,-0.035793654620647,-0.047532375901937],[0.020285284146667,0.0098458146676421,0.0036482699215412]],[[0.00078981916885823,-0.0078874230384827,-0.029168043285608],[-0.010166768915951,0.0052761742845178,0.020413361489773],[-0.018177958205342,0.0021357340738177,0.015079449862242]],[[-0.02588359080255,0.022211255505681,0.0053373696282506],[-0.0038029332645237,0.019995512440801,-0.025931028649211],[-0.0075545022264123,0.0017349736299366,0.016950493678451]],[[-0.0092279771342874,0.054304160177708,0.0087658390402794],[0.0093036722391844,0.0055300313979387,0.03847436979413],[-0.011114501394331,-0.084862746298313,0.013464792631567]],[[-0.099192701280117,0.1671571880579,-0.013955651782453],[-0.026944968849421,-0.041660271584988,-0.04740983620286],[0.023530129343271,0.060301251709461,-0.044318664819002]],[[-0.032494436949492,-0.020157814025879,0.0030642244964838],[0.0074045653454959,0.032272785902023,0.070504300296307],[0.020557805895805,-0.0046084453351796,0.025557855144143]],[[0.044409245252609,-0.059550113976002,0.065514981746674],[-0.034220330417156,-0.013465903699398,0.0059112319722772],[-0.023495757952332,-0.016886867582798,0.033965680748224]],[[-0.073005445301533,-0.023984992876649,0.044941566884518],[0.025755554437637,-0.051570244133472,-0.028337199240923],[0.013186636380851,-0.0027943793684244,-0.0015657808398828]],[[0.020329523831606,0.032845497131348,-0.018362695351243],[-0.026042284443974,-0.054630968719721,0.0078077423386276],[-0.015514348633587,0.0077315871603787,0.037340901792049]],[[-0.0026295545976609,0.049873866140842,-0.008053514175117],[-0.016705514863133,0.0072635058313608,-0.032749842852354],[-0.0042483871802688,0.031919579952955,-0.0099256876856089]],[[-0.049815911799669,-0.0064636841416359,-0.025033148005605],[-0.024406338110566,0.076933339238167,-0.0013342336751521],[0.033071290701628,-0.026866286993027,0.04108139872551]],[[-0.04117464274168,-0.07657378166914,0.021781090646982],[-0.0085006095468998,0.025252053514123,0.073741994798183],[-0.033330082893372,0.029924297705293,-0.0030902777798474]],[[-0.026727180927992,-0.034169472754002,-0.024742031469941],[0.0089605133980513,0.045267172157764,0.04364337772131],[-0.038351286202669,-0.0009744928102009,0.0035320420283824]],[[0.060971733182669,0.10925174504519,0.10335397720337],[0.028782432898879,0.12482809275389,0.024648372083902],[0.069553785026073,-0.01242942828685,0.050629440695047]],[[0.0095076775178313,-0.011242889799178,-0.022732801735401],[-0.025795042514801,0.018638839945197,0.012079670093954],[-0.031885530799627,0.038523774594069,-0.021908747032285]],[[-0.051328971982002,-0.03856373205781,-0.045369926840067],[0.029844673350453,0.024678895249963,0.051549702882767],[-0.052120883017778,0.0043873190879822,0.015994790941477]],[[0.040877908468246,-0.012690451927483,-0.031535565853119],[0.011778853833675,0.03589129447937,0.011935910210013],[-0.007195524405688,0.033917631953955,-0.019676191732287]],[[-0.0014327801764011,0.024799818173051,-0.0084975855425],[-0.058095388114452,0.047922264784575,0.0082712536677718],[-0.031846348196268,0.019846415147185,0.012249887920916]],[[0.067534483969212,0.04524265602231,-0.017080958932638],[-0.05239886790514,0.026943629607558,-0.062889993190765],[-0.064465425908566,0.043650794774294,-0.0085999965667725]],[[-0.015687089413404,-0.010337201878428,0.037290398031473],[0.0087755741551518,0.061839740723372,-0.035715065896511],[-0.0020454439800233,-0.0031399095896631,-0.015810269862413]],[[-0.008147681131959,-0.0037617005873471,0.015483415685594],[0.0040431912057102,0.0075306249782443,0.016429783776402],[-0.004593753721565,0.012007145211101,-0.0039157196879387]],[[0.027831112965941,-0.0037407726049423,-0.012319285422564],[-0.0030514332465827,-0.058733966201544,0.055404040962458],[-0.015235320664942,0.00036381496465765,0.01652997918427]],[[-0.035590041428804,0.049869157373905,-0.013382123783231],[-0.043324612081051,0.036545634269714,-0.012440050020814],[-0.01118313614279,-0.0077782389707863,0.027202701196074]],[[0.0082536051049829,-0.01163159776479,-0.014530526474118],[0.0080646490678191,0.016650276258588,0.016415981575847],[0.0097596077248454,-0.0075968997552991,-0.017733568325639]],[[-0.016583427786827,0.042120020836592,-0.025180257856846],[0.03358206897974,-0.010929347015917,-0.0060837082564831],[0.0016260199481621,-0.020049145445228,0.02103179693222]],[[-0.0079120164737105,0.0077323466539383,-0.023302365094423],[0.01974892988801,-0.038898680359125,0.022883102297783],[0.018226910382509,0.026145923882723,-0.039695780724287]],[[-0.010972932912409,0.012428716756403,-0.0050361594185233],[0.015807596966624,0.0778638869524,0.038378868252039],[0.021113451570272,0.034040037542582,0.023497607558966]],[[0.025244625285268,-0.037524081766605,0.0001151916658273],[-0.030421167612076,0.059504296630621,-0.006503386888653],[0.0056539135985076,0.0032636662945151,0.0091332234442234]],[[-0.010156298056245,-0.018575863912702,0.022698165848851],[-0.02526468411088,0.0031344492454082,0.027464468032122],[0.0421546921134,-0.02036371640861,-0.027929451316595]],[[-0.018137620761991,0.037896130234003,0.00043050578096882],[0.0082804374396801,-0.024819325655699,0.013803424313664],[0.0055384947918355,-0.015039063990116,0.019499460235238]],[[-0.04786067083478,0.00080698938108981,0.0025308255571872],[0.021799517795444,-0.036856442689896,0.029193406924605],[0.028434917330742,0.0073456219397485,-0.0035264249891043]],[[0.03868717700243,0.0111278956756,0.025204053148627],[-0.019499041140079,-0.010551416315138,-0.032059259712696],[0.0076926075853407,-0.008454111404717,0.046884313225746]],[[0.019177382811904,0.015542679466307,-0.039470374584198],[0.034969639033079,0.019022364169359,-0.0092766592279077],[-0.013600359670818,-0.00023226591292769,-0.0072733159177005]],[[0.040859613567591,-0.048562597483397,0.01943626627326],[-0.045820083469152,-0.042442340403795,-0.011123544536531],[0.028480401262641,0.010408265516162,-0.01767560094595]],[[0.023087168112397,-0.020857065916061,0.0098825534805655],[0.041043002158403,-0.0097343707457185,0.014874338172376],[-0.021017847582698,0.02872340939939,-0.002918804762885]],[[0.048930566757917,0.0020451457239687,-0.0094475774094462],[-0.039535935968161,-0.0088172052055597,-0.020730786025524],[-0.013012455776334,-0.0034327122848481,0.0025226313155144]],[[-0.015016508288682,0.014606853947043,-0.0052433870732784],[-0.013942268677056,-0.00029588816687465,-0.016445603221655],[0.019347062334418,0.027833428233862,-0.0040618977509439]],[[-0.015389471314847,-0.039161574095488,-0.018123855814338],[-0.0027618035674095,0.059333059936762,0.011447696015239],[0.04675830155611,-0.034759301692247,0.00059651036281139]],[[-0.0051499004475772,-0.026790088042617,0.020017459988594],[0.0094198668375611,-0.048671521246433,-0.026869529858232],[0.047980681061745,-0.021613137796521,-0.025977563112974]],[[0.028853053227067,0.02273297868669,-0.0051784375682473],[0.0030020796693861,0.018367685377598,0.012183814309537],[-0.044171318411827,-0.04122444242239,-0.021610045805573]],[[0.048060525208712,0.025981262326241,0.038444045931101],[-0.039241269230843,-0.046094805002213,-0.085319481790066],[-0.01189617998898,0.034534379839897,-0.011670252308249]],[[0.0052436417900026,0.027474913746119,0.002314314711839],[-0.045935444533825,0.066081881523132,0.0030830972827971],[-0.067895323038101,0.042733784765005,0.020399078726768]],[[-0.017126278951764,-0.043918538838625,-0.0075456281192601],[0.06378099322319,-0.039780061691999,0.0064845154993236],[0.0074493680149317,-0.051668796688318,-0.0031211317982525]],[[-0.035310093313456,0.0038888331037015,0.050057798624039],[0.02448470517993,-0.066617339849472,-0.087229169905186],[0.037456680089235,0.006669391412288,0.038086127489805]],[[0.065605103969574,0.096340581774712,0.054129019379616],[-0.026235617697239,-0.022266078740358,-0.00065642088884488],[0.0020324871875346,-0.018344523385167,-0.047651838511229]],[[0.035548262298107,-0.020386133342981,-0.00073965813498944],[-0.00195006292779,-0.061129830777645,0.019126860424876],[0.018512599170208,0.0019873986020684,-0.0013655702350661]],[[-0.029001288115978,0.051991865038872,-0.042662132531404],[0.0028455313295126,0.018114903941751,-0.015616110526025],[0.023296903818846,-0.074225388467312,0.010709959082305]],[[0.0036733001470566,-0.00458690430969,0.0062519605271518],[-0.039632089436054,0.025608513504267,0.015324958600104],[0.0054380595684052,-0.038775324821472,0.006505727302283]],[[-0.025266448035836,0.015079017728567,-0.026307374238968],[-0.0065761283040047,0.10708002001047,-0.0056278128176928],[-0.015105756931007,0.027410943061113,-0.11207419633865]],[[0.022015960887074,-0.048148181289434,-0.011046555824578],[-0.015026294626296,0.016301885247231,0.0094772502779961],[0.065424770116806,-0.026447424665093,0.020963806658983]],[[-0.073436327278614,-0.1291830688715,-0.012190079316497],[-0.090808980166912,0.013191338628531,-0.027815457433462],[-0.025336684659123,-0.02348374389112,-0.04856014996767]],[[0.012332309037447,-0.050248302519321,-0.020083390176296],[-0.0026866206899285,0.025478467345238,0.0079108392819762],[0.037627920508385,0.011271364986897,-0.044860895723104]],[[-0.033380128443241,0.022812934592366,0.06784925609827],[0.036658957600594,-0.026915270835161,-0.023999162018299],[-0.017483100295067,-0.038463369011879,0.013866120018065]],[[0.015364601276815,0.029686823487282,-0.0077381189912558],[0.026530373841524,-0.063044033944607,-0.013369550928473],[-0.022885465994477,0.023708712309599,-0.016539318487048]],[[-0.0015389837790281,-0.030290687456727,-0.0071301674470305],[0.023553274571896,0.008679605089128,0.040989886969328],[-0.028504949063063,0.013419604860246,0.0097010228782892]]],[[[0.014975328929722,0.022929776459932,-0.0065251146443188],[0.038320228457451,0.030175723135471,-0.091375507414341],[-0.030644482001662,0.026326915249228,-0.038044989109039]],[[-0.024677209556103,0.026620965451002,0.027679856866598],[-0.021069383248687,-0.017835000529885,0.021550498902798],[0.0082149058580399,-0.033659387379885,0.015500583685935]],[[0.017236160114408,0.0060793519951403,0.023798683658242],[0.0056195696815848,-0.047749705612659,-0.048956293612719],[-0.0084217498078942,0.04860296100378,0.0050586848519742]],[[-0.013739568181336,-0.019452201202512,0.056551069021225],[0.028889628127217,-0.049571793526411,-0.054532032459974],[0.022255811840296,0.014237162657082,0.017806090414524]],[[-0.037936083972454,-0.014244074933231,-0.013217205181718],[0.018947219476104,0.014870708808303,0.023985832929611],[0.013039449229836,0.0015067240456119,-0.017164044082165]],[[-0.0071051954291761,-0.010810275562108,0.0083803087472916],[-0.035338766872883,0.067635834217072,-0.010682506486773],[-0.016576144844294,-0.026360124349594,0.021295823156834]],[[-0.061030071228743,0.042378216981888,-0.017110137268901],[0.052476041018963,0.059536099433899,-0.0092964340001345],[-0.0048902691341937,-0.026822393760085,-0.029725912958384]],[[0.033913772553205,-0.082668073475361,0.00063212134409696],[-0.0035558384843171,-0.037950482219458,0.048137333244085],[-0.00032283371547237,0.039175406098366,-0.0075793513096869]],[[-0.030741196125746,-0.014142888598144,0.04696436226368],[0.035261202603579,-0.0052929185330868,-0.00053901801584288],[-0.0058558499440551,-0.023618392646313,0.0091194985434413]],[[-0.025093730539083,-0.017842261120677,-0.021343300119042],[0.017676413059235,-0.0018943749601021,0.03742915391922],[0.014398794621229,-0.010802610777318,-0.015798538923264]],[[0.028583470731974,-0.028499066829681,-0.028563050553203],[-0.022357223555446,0.027421126142144,-0.054150860756636],[0.0029163961298764,0.036333680152893,0.032810512930155]],[[0.009257135912776,-0.021811610087752,0.024773865938187],[0.0085717495530844,-0.0090528735890985,-0.021633498370647],[0.01347201038152,-0.0061931740492582,0.01894093491137]],[[-0.012484909966588,-0.026754323393106,-0.012813477776945],[-0.0065013486891985,-0.086121462285519,-0.015011343173683],[0.020616380497813,0.093083709478378,0.012793570756912]],[[0.022971548140049,-0.018169773742557,-0.039273411035538],[0.050766695290804,-0.035648226737976,-0.0013974505709484],[-0.00029909727163613,0.0034923902712762,0.026698306202888]],[[-0.022937150672078,0.05358025804162,-0.00423963367939],[0.014161456376314,-0.068979769945145,0.096427530050278],[-0.0013155387714505,-0.010262951254845,-0.047213222831488]],[[-0.010450926609337,0.065085850656033,-0.0078417807817459],[0.013238240964711,0.0016461207997054,0.060269586741924],[-0.0017813735175878,-0.11146990209818,-0.0055832741782069]],[[-0.027327122166753,0.042916592210531,-0.039349772036076],[-0.015999397262931,-0.11197612434626,0.053823124617338],[0.0087307523936033,0.04983026906848,-0.018671030178666]],[[0.0020077142398804,-0.0091761741787195,0.013151941820979],[0.0013831158867106,0.085112832486629,-0.0070854020304978],[0.0001013046130538,-0.024481574073434,-0.078534506261349]],[[-0.0077099339105189,-0.022148076444864,-0.013308404013515],[0.030921652913094,-0.010699403472245,0.046834204345942],[0.0076174437999725,-0.011613333597779,-0.020548172295094]],[[-0.012919756583869,-0.065893411636353,-0.052749026566744],[-0.0025839135050774,-0.0069878790527582,-0.047321770340204],[-0.015211543999612,-0.080904975533485,-0.050251595675945]],[[0.03277362883091,-0.032693415880203,-0.017913289368153],[-0.039133813232183,0.010759120807052,0.057813659310341],[0.056593239307404,-0.020780265331268,-0.015392506495118]],[[0.025081526488066,-0.035221487283707,0.049178175628185],[-0.022660193964839,0.010734530165792,-0.05978786945343],[0.020179755985737,-0.01059696264565,0.026720372959971]],[[-0.080815680325031,-0.12478908151388,-0.062607921659946],[-0.058917947113514,-0.095939971506596,-0.030468344688416],[-0.073163241147995,-0.071684800088406,-0.058998171240091]],[[0.012290011160076,-0.019836470484734,0.0035793150309473],[-0.038073498755693,-0.0015278566861525,-0.0031279730610549],[0.041236598044634,0.0042356355115771,-0.0070828618481755]],[[0.017557166516781,0.056501928716898,0.062481932342052],[-0.010661882348359,-0.063853085041046,-0.063507676124573],[-0.04077684879303,-0.02495289593935,0.032423336058855]],[[-0.066686257719994,-0.0083882194012403,0.048933256417513],[0.053075890988111,-0.040820986032486,-0.01038811262697],[0.022847931832075,-0.04023128002882,0.033490668982267]],[[-0.0083248950541019,0.020590133965015,-0.021383162587881],[0.065485760569572,-0.08260565251112,0.013580014929175],[0.020113939419389,-0.0022829298395663,-0.0012156306765974]],[[-0.0082724867388606,-0.031670555472374,0.044453978538513],[0.017112005501986,0.0084306988865137,-0.025712443515658],[0.004248533397913,-0.01257462054491,0.018577855080366]],[[0.090229257941246,-0.011997358873487,-0.024039592593908],[0.0064121563918889,-0.050922986119986,-0.050868786871433],[0.0042493557557464,0.024287451058626,0.020861994475126]],[[0.030230553820729,0.040415171533823,0.0031919523607939],[0.041660789400339,-0.01675389520824,0.010367578826845],[-0.024892261251807,-0.037973579019308,-0.025205114856362]],[[-0.023658219724894,0.026474568992853,0.036974176764488],[-0.00085101276636124,0.017123710364103,-0.028025990352035],[-0.015817549079657,-0.022340638563037,-0.0091589009389281]],[[0.0011624995386228,-0.019484680145979,-0.0037992193829268],[0.00069653772516176,-0.012131428346038,0.025822974741459],[0.0069228396750987,0.020553136244416,-0.02676116488874]],[[0.00024855529773049,-0.038469318300486,-0.0079341372475028],[0.021702641621232,-0.015657195821404,0.040259152650833],[0.0095571018755436,-0.013836265541613,0.0026969951577485]],[[0.0048907157033682,-0.016288612037897,0.021377380937338],[-0.038269948214293,-0.027510052546859,0.036560021340847],[-0.031503394246101,0.073296755552292,-0.023513603955507]],[[0.009814246557653,-0.0016925517702475,0.043327029794455],[-0.023044731467962,0.060705538839102,-0.044298496097326],[-0.024106925353408,-0.018831176683307,-0.022122599184513]],[[-0.0013847256777808,-0.022788796573877,0.057219829410315],[-0.054056230932474,0.028468715026975,-0.052576027810574],[0.025670299306512,0.036225400865078,0.035019896924496]],[[-0.029105378314853,0.063586950302124,-0.034848790615797],[0.076320625841618,-0.10641611367464,0.0045641981996596],[-0.018796116113663,-0.014212916605175,0.030704315751791]],[[0.0057353023439646,-0.00084608141332865,-0.022095808759332],[0.029304377734661,0.025452014058828,0.0062611605972052],[-0.042774517089128,-0.0012963372282684,-0.00090984907001257]],[[0.0034497329033911,-0.04020131751895,-0.021492816507816],[-0.010564114898443,0.068712472915649,-0.0060892538167536],[0.019143061712384,-0.0042536836117506,-0.016537247225642]],[[0.028377113863826,-0.043199304491282,-0.027246739715338],[0.0035859146155417,0.05705338716507,-0.02199642919004],[-0.0030006011947989,0.011001969687641,0.0029752918053418]],[[-0.030829155817628,-0.010974766686559,-0.029794758185744],[0.026960413902998,5.2979758038418e-05,0.04530018940568],[0.065786585211754,0.013970222324133,-0.053518857806921]],[[0.059542141854763,-0.013427588157356,0.072123356163502],[-0.037422567605972,0.013860762119293,-0.032579116523266],[0.018922124058008,-0.049903851002455,-0.033508542925119]],[[-0.028118189424276,-0.030679795891047,-0.070158027112484],[0.046214681118727,0.04377855733037,0.076683908700943],[-0.010258815251291,-0.014301515184343,-0.044569734483957]],[[0.038002394139767,0.01988965831697,0.027089703828096],[-0.055766280740499,-0.011185296811163,-0.051522362977266],[0.058381453156471,-0.0073296874761581,0.023193579167128]],[[-0.03478104993701,0.033912897109985,0.0031080495100468],[0.041815835982561,-0.024069126695395,0.0042967675253749],[-0.010911732912064,-0.045217040926218,0.017281437292695]],[[-0.019205158576369,-0.042028576135635,0.039369568228722],[0.014760354533792,0.047368112951517,-0.045383516699076],[-0.011155554093421,0.0020795844029635,0.01310886349529]],[[-0.00067039643181488,0.018632587045431,-0.019438317045569],[-0.01114406902343,-0.044990591704845,0.035262800753117],[-0.0013135802000761,0.012584089301527,0.020632481202483]],[[0.010823355987668,0.057362623512745,-0.020055213943124],[-0.081198133528233,0.020614612847567,0.054287098348141],[-0.058609422296286,0.012282442301512,-0.030697476118803]],[[-0.019989697262645,0.09072083234787,-0.030840702354908],[-0.021859990432858,0.0099141718819737,-0.019003380089998],[-0.012277222238481,0.041427124291658,-0.031027773395181]],[[-0.0011937632225454,0.02764455601573,0.0074923601932824],[-0.056736890226603,0.010316039435565,0.017307071015239],[-0.0095963636413217,0.049747671931982,-0.04209977760911]],[[0.0027366958092898,0.015420712530613,0.0017218958819285],[0.040191095322371,-0.14415840804577,-0.0041608717292547],[0.08920881152153,0.035693112760782,-0.021893238648772]],[[-0.057207103818655,0.034544847905636,-0.0336131490767],[-0.052936539053917,0.021242156624794,0.044960089027882],[0.00020689980010502,-0.01254372857511,-0.033224944025278]],[[0.030615795403719,-0.008591610006988,-0.024246359243989],[-0.036145929247141,0.066215053200722,0.031172292307019],[-0.02244240604341,-0.044601000845432,0.0064698406495154]],[[-0.086442947387695,-0.036368574947119,-0.092560857534409],[-0.050640501081944,-0.047828659415245,-0.016485992819071],[-0.031749427318573,0.035576481372118,-0.013435107655823]],[[0.0032166030723602,0.0055471220985055,-0.027943620458245],[0.00228810030967,0.018397208303213,0.025061752647161],[-0.0082798358052969,0.021823523566127,-0.044765710830688]],[[0.019951399415731,-0.028682852163911,0.0041177198290825],[0.0038522542454302,-0.023599019274116,-0.026814235374331],[-0.0079359970986843,0.020348981022835,0.029074667021632]],[[-0.050471022725105,-0.069110326468945,0.0026075339410454],[0.077655643224716,-0.040398541837931,-0.0074915825389326],[0.0027811385225505,0.060535032302141,-0.017419116571546]],[[0.0041461000218987,0.0050524394027889,-0.009271970950067],[-0.024637024849653,-0.11735288053751,0.017791554331779],[0.010636150836945,0.0080981748178601,0.099867910146713]],[[-0.021096836775541,0.040170922875404,-0.02836636453867],[0.014603909105062,-0.05063896253705,0.024761307984591],[0.037541776895523,0.022007906809449,-0.017281027510762]],[[0.062430396676064,0.097468614578247,0.096517257392406],[0.0077436775900424,0.069795943796635,0.022618101909757],[0.035582859069109,0.088961347937584,0.03392980992794]],[[-0.049540258944035,-0.011932052671909,0.023467350751162],[0.015150076709688,0.033172242343426,-0.019687816500664],[-0.026899546384811,-0.019749090075493,0.024332011118531]],[[-0.002456767950207,0.014771832153201,-0.0090162558481097],[-0.0087868180125952,0.012950787320733,0.02027883566916],[0.00059516046894714,0.00043380094575696,-0.048102736473083]],[[-0.06939310580492,-0.011216372251511,-0.0011539562838152],[0.0070280721411109,0.06644531339407,0.019107788801193],[0.0089732017368078,-0.010005112737417,-0.019890837371349]],[[0.014700329862535,-0.0078863902017474,-0.0086689842864871],[-0.028560845181346,-0.05334397405386,0.014632659032941],[0.039150755852461,-0.015514951199293,0.053340274840593]]],[[[-0.0060975793749094,0.021683165803552,-0.0062714470550418],[0.015700990334153,0.046637382358313,0.050158675760031],[-0.017215486615896,-0.016156295314431,0.064940363168716]],[[-0.038932487368584,-0.011782169342041,-0.036678321659565],[-0.052025478333235,-0.04774022474885,-0.035761035978794],[-0.023640720173717,-0.0090736746788025,-0.016175210475922]],[[-0.04248022288084,-0.0029151220805943,-0.048124689608812],[0.021695056930184,-0.051415894180536,0.04495007917285],[0.0077580688521266,-0.053197652101517,0.039046391844749]],[[-0.0041847708635032,0.03575250133872,-0.055234007537365],[-0.0070762168616056,-0.0047573195770383,0.063686691224575],[0.044952318072319,0.045523691922426,0.035141624510288]],[[0.036284744739532,-0.010643222369254,0.0038060646038502],[-0.10775078833103,0.00082218577153981,0.025956153869629],[-0.023061331361532,-0.020104808732867,-0.027343966066837]],[[-0.0046443031169474,-0.080697737634182,0.01729330047965],[0.025975929573178,0.050174750387669,-0.04131843522191],[-0.060441676527262,0.094646990299225,-0.031642407178879]],[[-0.019266296178102,-0.0091902501881123,0.014544436708093],[-0.056594528257847,-0.010743889957666,0.029232922941446],[-0.032503638416529,-0.049796715378761,0.0058260834775865]],[[0.012330221012235,0.011191314086318,-0.010899894870818],[-0.021432872861624,-0.020211469382048,0.070283032953739],[0.012645692564547,-0.044638022780418,0.06387784332037]],[[0.00075129698961973,-0.054278772324324,0.010069399140775],[0.017858766019344,-0.033892154693604,-0.060589369386435],[-0.039176572114229,-0.0087054148316383,0.032482676208019]],[[0.029517352581024,0.063374646008015,0.0045179412700236],[-0.0095630781725049,0.030539829283953,-0.035600140690804],[0.016324078664184,-0.053472999483347,-0.034506034106016]],[[0.070411458611488,0.024924824014306,0.067701488733292],[-0.0059759640134871,0.0088494475930929,0.029530443251133],[0.011794568970799,-0.034150272607803,-0.06312507390976]],[[-0.040514275431633,0.0067594479769468,-0.00086664751870558],[0.10218644142151,0.021574836224318,-0.015857493504882],[-0.051488745957613,-0.051710974425077,0.0088273379951715]],[[-0.033419828861952,-0.01352184265852,0.068173877894878],[-0.011376088485122,-0.021535316482186,-0.01713739708066],[-0.012327688746154,-0.011771913617849,0.031436812132597]],[[0.08224118500948,0.026296325027943,0.063656598329544],[0.041440304368734,-0.028541473671794,0.024007992818952],[0.052585106343031,-0.015577873215079,-0.028732370585203]],[[-0.080867417156696,-0.039784014225006,-0.086460620164871],[0.014994753524661,0.083036959171295,0.047418836504221],[-0.03487640991807,0.01752226613462,-0.0036100225988775]],[[-0.019473258405924,0.0046058832667768,-0.040704272687435],[0.023967325687408,0.013997809030116,-0.049392253160477],[-0.034707318991423,0.031956106424332,-0.018969375640154]],[[0.030757863074541,0.041387289762497,0.077064216136932],[-0.024435108527541,-0.049979534000158,0.021775789558887],[0.026147276163101,0.035191737115383,0.001662299502641]],[[-0.048089526593685,-0.0080919954925776,-0.0019230002071708],[0.023112166672945,0.018651874735951,0.0057215602137148],[-0.0057981256395578,-0.028602823615074,0.026840057224035]],[[0.037616025656462,-0.015097695402801,0.00080215517664328],[-0.030825715512037,0.007268953602761,-0.0022213947959244],[-0.012438082136214,-0.036467064172029,-0.030302880331874]],[[-0.012561331503093,0.029821638017893,0.046409353613853],[-0.0096976403146982,0.030543616041541,-0.029919380322099],[0.027547782287002,0.076147504150867,0.02764381095767]],[[0.013023351319134,0.0035592331551015,-0.039476919919252],[0.0045263539068401,0.0078856041654944,-0.02609490044415],[0.022991118952632,-0.02398681640625,-0.014265774749219]],[[0.018947508186102,-0.048882868140936,-0.053357966244221],[-0.0097263660281897,0.021343683823943,0.018531968817115],[0.018273308873177,0.031828556209803,0.0083068246021867]],[[0.0034480043686926,0.046337883919477,-0.0062005687505007],[0.032440956681967,-0.082194298505783,0.048382434993982],[-0.067629419267178,0.019059255719185,0.0091828675940633]],[[-0.049411065876484,0.037192277610302,0.0094608599320054],[-0.030455499887466,0.029115321114659,0.016343306750059],[0.020917274057865,-0.0099208997562528,-0.017541568726301]],[[-0.020211908966303,0.040807381272316,0.064347758889198],[-0.0059444420039654,0.014134891331196,-0.078265510499477],[0.004872283898294,0.031455930322409,0.070447355508804]],[[-0.0030010193586349,0.00033337486092933,0.027021188288927],[-0.12198238819838,0.0076871071942151,-0.047082338482141],[0.0081717660650611,-0.030293643474579,-0.011475618928671]],[[0.002106182044372,-0.049436453729868,-0.012321784161031],[0.0050407671369612,-0.0088938139379025,-0.02684879116714],[-0.011102834716439,0.039646696299314,0.048911098390818]],[[0.016429226845503,-0.062641128897667,0.014728169888258],[-0.033807434141636,-0.020417604595423,-0.023758934810758],[-0.0092899100854993,-0.050431586802006,-0.054564610123634]],[[0.02631901204586,0.0030948035418987,-0.017257994040847],[0.024950060993433,0.023270595818758,-0.061614215373993],[-0.012689513154328,-0.0026764674112201,-0.051170852035284]],[[-0.001944528426975,-0.065205559134483,-0.00085808715084568],[-0.043227653950453,0.010965430177748,-0.028745211660862],[-0.026410328224301,-0.042006283998489,-0.015165095217526]],[[0.0070761628448963,-0.023982057347894,-0.017061473801732],[-0.0052070734091103,-0.0017953542992473,0.025385985150933],[0.021646343171597,-0.032366242259741,-0.010107846930623]],[[0.058954078704119,-0.020590012893081,0.002998661948368],[0.018086090683937,0.049784176051617,-0.016458993777633],[0.013855561614037,0.01955789886415,-0.056653402745724]],[[-0.022724052891135,0.036792788654566,0.016788365319371],[-0.015649197623134,0.01638905890286,0.040221147239208],[-0.038300395011902,-0.037115827202797,-0.040140341967344]],[[-0.042508590966463,-0.033176433295012,-0.024526838213205],[0.043660238385201,-0.0059084664098918,-0.043798428028822],[0.031811308115721,-0.026441683992743,0.068473666906357]],[[0.0018938700668514,-0.021606236696243,0.024375246837735],[0.015504000708461,0.0046837870031595,-0.0062078023329377],[0.032509915530682,0.020535506308079,-0.018235869705677]],[[-0.035942688584328,-0.030675154179335,-0.0043997555039823],[-0.018238278105855,-0.0031338406261057,-0.064619556069374],[0.054492846131325,-0.028083184733987,0.015506713651121]],[[-0.012012552469969,0.038044083863497,-0.0080134682357311],[-0.029976507648826,-0.038347024470568,0.014363588765264],[-0.023743614554405,0.023678880184889,-0.03437153622508]],[[-0.050236348062754,0.0013731397921219,0.058585356920958],[0.027468387037516,-0.033461153507233,0.001644246163778],[-0.02310723438859,-0.052101012319326,-0.03345250710845]],[[0.020242629572749,0.046890497207642,0.0074247843585908],[-0.047799106687307,-0.052089679986238,0.0042100180871785],[-0.10228568315506,0.0094821285456419,-0.012357694096863]],[[0.046487797051668,0.041172418743372,0.030253116041422],[0.031523570418358,-0.040615040808916,-0.024093709886074],[0.020296674221754,0.0072984006255865,0.014533782377839]],[[0.034222200512886,0.038774851709604,0.0078110657632351],[-0.0012266059638932,0.033867295831442,0.045079164206982],[0.0036354884505272,-0.047412011772394,-0.015753788873553]],[[0.035559941083193,-0.0063509242609143,-1.4273113265517e-05],[-0.064860925078392,-0.063867062330246,-0.16402831673622],[0.0021793462801725,-0.053659290075302,0.012443182989955]],[[0.040041867643595,0.0014360254863277,-0.0059427926316857],[0.027828373014927,-0.029409090057015,0.015842653810978],[-0.05632209777832,-0.0095944358035922,0.0048976386897266]],[[-0.025027839466929,-0.043337967246771,-0.038364425301552],[0.0070634502917528,-0.060046423226595,0.0093644307926297],[-0.014861527830362,-0.0078219305723906,0.058099564164877]],[[0.0062960460782051,-0.040553577244282,-0.080199837684631],[-0.015240333043039,0.0085667185485363,0.072693474590778],[-0.094091601669788,0.039317414164543,0.053561702370644]],[[0.093967892229557,-0.0413738489151,0.011738014407456],[-0.014920078217983,-0.03094993904233,0.033081538975239],[0.0076251877471805,-0.01534070353955,-0.010899026878178]],[[-0.034574661403894,-0.028831971809268,-0.05704040825367],[-0.012428171932697,-0.047490801662207,0.043398670852184],[-0.017755474895239,0.014031744562089,-0.010190824978054]],[[-0.044826094061136,-0.06009178981185,-0.0026439586654305],[-0.0072378325276077,-0.00022624786652159,-0.037327073514462],[-0.010297102853656,0.012214889749885,-0.044603656977415]],[[-0.0072194309905171,0.017377723008394,-0.023866087198257],[0.022092763334513,-0.025791378691792,-0.039607163518667],[-0.105323523283,0.051420919597149,-0.028807399794459]],[[-0.022697580978274,0.020691063255072,-0.10833372920752],[-0.043678250163794,-0.0078965714201331,0.046696946024895],[-0.099491484463215,0.020146513357759,-0.047966834157705]],[[-0.028613045811653,0.031231645494699,-0.00768180238083],[0.012476875446737,0.028635084629059,-0.016290910542011],[0.0027367318980396,-0.0070753549225628,0.0071925050579011]],[[0.02117357775569,0.013787833042443,-0.012036906555295],[-0.006637935526669,-0.058279763907194,0.074758425354958],[-0.015988251194358,0.0020770691335201,-0.046335533261299]],[[-0.033199738711119,-0.0041504073888063,-0.017340851947665],[-0.036359239369631,-0.052841067314148,0.016230704262853],[-0.015104237012565,9.0808774984907e-05,0.014495154842734]],[[0.028220621868968,0.10536161065102,0.062788844108582],[0.038045335561037,-0.015765275806189,0.031733512878418],[-0.031036360189319,0.11629685759544,0.10308964550495]],[[0.0023774087894708,0.07917957007885,0.045970540493727],[0.02569299377501,0.00070774112828076,0.017332803457975],[-0.042562615126371,0.045121368020773,0.029366299510002]],[[-0.033833183348179,-0.082246899604797,0.0021484298631549],[-0.016944479197264,0.015073820017278,-0.09257099032402],[0.031711932271719,-0.074345037341118,-0.018132403492928]],[[0.01192369312048,0.015604805201292,-0.028802819550037],[-0.011065780185163,0.002003968693316,0.0048455740325153],[0.062123645097017,-0.040749303996563,-0.036550499498844]],[[-0.013450860977173,0.00039727403782308,-0.02178137563169],[0.0050383722409606,-0.032228671014309,0.024995105341077],[0.030734732747078,0.015032358467579,-0.066488228738308]],[[0.070577263832092,0.033874701708555,0.02146515622735],[-0.071763128042221,-0.028309889137745,6.1879101849627e-05],[0.011972625739872,-0.010651763528585,0.060317911207676]],[[-0.0027954084798694,-0.0081369560211897,-0.033871609717607],[0.010689207352698,0.011915860697627,0.018032109364867],[0.021134786307812,0.01119947899133,0.023544866591692]],[[-0.016695983707905,0.022866826504469,0.020609077066183],[-0.015236677601933,-0.036821439862251,0.051033392548561],[-0.0375746935606,0.005570768378675,0.021677237004042]],[[0.00027025651070289,-0.013097727671266,-0.043357942253351],[-0.052068181335926,0.013192540034652,-0.059598132967949],[-0.031496923416853,-0.052249565720558,-0.010547912679613]],[[-0.039623811841011,0.01305444445461,0.031671978533268],[-0.0037744250148535,-0.015688577666879,0.012170693837106],[-0.0023034380283207,0.072144329547882,0.043328177183867]],[[0.032991625368595,-0.032373454421759,0.00021530444792006],[0.049577388912439,0.03899160400033,-0.038358572870493],[0.010964121669531,-0.013607514090836,-0.0045283557847142]]],[[[0.012358196079731,0.0010326391784474,-0.0032248860225081],[-0.014092853292823,0.022865129634738,-0.039138931781054],[-0.032374639064074,-0.057082984596491,-0.052820596843958]],[[0.0099482908844948,0.0005040411488153,0.020342884585261],[0.012941461987793,-0.033645030111074,-0.0099462838843465],[-0.0047072735615075,0.019680835306644,-0.012385946698487]],[[-0.0099764140322804,0.063553936779499,-0.0018281838856637],[-0.053436286747456,0.031454227864742,-0.10651632398367],[0.037432078272104,-0.0081142457202077,0.028200421482325]],[[-0.0067028552293777,0.024399196729064,-0.0030652643181384],[-0.023909756913781,0.077074728906155,0.029858574271202],[-0.014350824989378,-0.010441659018397,0.036678969860077]],[[-0.06013835221529,0.0014418796636164,0.029053231701255],[0.029636826366186,0.019403617829084,0.0099190091714263],[-0.046159327030182,-0.017207134515047,0.054277013987303]],[[-0.025257151573896,0.058366533368826,0.021505462005734],[-0.018685625866055,-0.036941297352314,-0.023812770843506],[-0.034792095422745,0.021195480599999,0.11508723348379]],[[-0.027859635651112,-0.00023914272605907,-0.0060364925302565],[-0.055645238608122,-0.049705926328897,0.0092140752822161],[0.010308132506907,-0.032707922160625,-0.031317114830017]],[[-0.03834418579936,-0.07074362039566,-0.043724715709686],[-0.020998632535338,0.036158684641123,-0.01781321875751],[0.0051208375953138,0.0629917755723,-0.024738971143961]],[[0.0019314850214869,-0.00061682623345405,-0.040526315569878],[0.013257063925266,0.0010262402938679,0.033927202224731],[-0.053302407264709,-0.037984848022461,-0.033701911568642]],[[0.0054335272870958,0.12313514202833,-0.037113543599844],[0.045836932957172,-0.027291115373373,-0.024040278047323],[0.0033179472666234,0.026277465745807,0.018771188333631]],[[-0.023019140586257,0.034150678664446,-0.047915447503328],[0.0067436159588397,-0.0056701702997088,-0.0239616651088],[0.048315819352865,-0.07366930693388,0.068236567080021]],[[0.046134777367115,-0.029961237683892,0.042082820087671],[0.02092956751585,-0.015360076911747,0.012757625430822],[0.011557298712432,0.066618412733078,0.040959864854813]],[[-0.022017467767,0.011909694410861,0.039820782840252],[0.030176986008883,0.029833627864718,-0.023407083004713],[0.041259326040745,-0.0062053361907601,0.069656997919083]],[[0.088762357831001,0.096246436238289,0.0096949245780706],[-0.014364644885063,0.031575955450535,0.036688219755888],[-0.035788986831903,0.00073847931344062,0.040482316166162]],[[0.063154779374599,-0.037999782711267,0.043974559754133],[0.026663931086659,0.0079699559137225,-0.0029055534396321],[-0.0057054203934968,-0.041861455887556,0.028140988200903]],[[-0.06509430706501,0.050760220736265,0.024564251303673],[-0.035552777349949,0.029307188466191,0.10820206999779],[-0.017452195286751,-0.026969345286489,-0.026107987388968]],[[0.010159208439291,0.064304448664188,-0.0198666267097],[-0.040423355996609,-0.026216322556138,0.06715489923954],[-0.002017465652898,0.053698539733887,0.01909190043807]],[[0.015505382791162,-0.011357069946826,-0.0010354401310906],[0.016646375879645,-0.055147379636765,-0.035439983010292],[-0.02339400537312,0.000121361699712,-0.020960170775652]],[[-0.0027476651594043,0.0312859416008,0.007066669408232],[0.0098910760134459,0.040104478597641,-0.013504300266504],[-0.055520828813314,-0.024943688884377,-0.0077092782594264]],[[-0.016852952539921,0.02065178193152,-0.070123225450516],[-0.038924101740122,-0.028170473873615,-0.099351227283478],[-0.043524403125048,-0.043048791587353,0.023919751867652]],[[-0.0038138260133564,-0.00064497318817303,-0.021836938336492],[0.0100915459916,0.0018066705670208,0.021967209875584],[0.023860046640038,-0.032246712595224,0.051990814507008]],[[-0.03924011066556,-0.07086855173111,0.054202701896429],[0.02611318975687,-0.018396148458123,-0.006065372377634],[-0.047095440328121,-0.027942851185799,0.006551269441843]],[[0.05937147885561,0.046499814838171,0.0085213333368301],[-0.015770627185702,0.019921084865928,-0.01712660677731],[0.021754324436188,-0.0014888001605868,-0.11321281641722]],[[-0.0051773828454316,0.024845061823726,-0.043707318603992],[0.04601613804698,0.02696786634624,-0.093272387981415],[-0.017480198293924,0.081832461059093,0.064994804561138]],[[-0.020516663789749,0.017612108960748,-0.025945076718926],[0.0026238355785608,-0.00058043305762112,-0.0055404002778232],[-0.014533753506839,-0.035026762634516,0.014630949124694]],[[0.008486220613122,0.021723845973611,-0.031049864366651],[-0.01698799803853,0.025359766557813,0.0076835351064801],[0.017764717340469,-0.0047502689994872,0.01346539799124]],[[0.048519909381866,0.054670635610819,0.00096401962218806],[-0.071618050336838,-0.072063021361828,-0.076792061328888],[-0.019485646858811,-0.022788804024458,-0.014302926138043]],[[0.034893114119768,0.055518634617329,0.039065904915333],[0.0090652210637927,0.026707885786891,0.04720164462924],[-0.093571543693542,0.067252084612846,-0.021510599181056]],[[0.00473030237481,0.023266296833754,-0.003114749211818],[0.016031082719564,0.023471437394619,-0.034851670265198],[0.021239323541522,-0.033100131899118,0.00095954141579568]],[[-0.024878464639187,-0.014567036181688,-0.064753495156765],[-0.008486426435411,-0.0081217084079981,0.0207515116781],[0.023210886865854,-0.022641407325864,-0.012877035886049]],[[-0.015803007408977,-0.0079146064817905,-0.014191953465343],[0.057233680039644,0.069721505045891,-0.030134238302708],[0.0080513395369053,-0.0079920319840312,0.031603183597326]],[[-0.092860117554665,-0.00390763906762,-0.015279563143849],[-0.0070214956067502,0.0053068436682224,-0.050683494657278],[-0.10322923958302,-0.054456397891045,-0.014039607718587]],[[0.017553621903062,-0.069343514740467,0.028270971029997],[0.005223729647696,-0.082349643111229,0.062311571091413],[0.05686404183507,-0.0039877407252789,0.062491197139025]],[[-0.051243148744106,0.028429754078388,-0.00208186567761],[0.020469637587667,-0.052329506725073,0.0052731614559889],[-0.00012016349501209,-0.01968514546752,0.071359157562256]],[[-0.028245691210032,-0.010483263991773,0.0049445000477135],[-0.002916453871876,0.01778880879283,0.039136134088039],[-0.09136500954628,0.02202626876533,0.028090769425035]],[[-0.019704014062881,-0.0618558190763,0.028074510395527],[-0.068177111446857,-0.028517942875624,-0.13577368855476],[-0.082231178879738,0.02983901835978,0.038371589034796]],[[-0.059705179184675,-0.00094504287699237,-0.016166327521205],[0.030529819428921,0.01789559610188,0.008808234706521],[0.081139974296093,-0.017987059429288,-0.010795286856592]],[[-0.032104704529047,0.030544601380825,0.037998665124178],[0.017231287434697,-0.039300877600908,0.049461860209703],[0.020985789597034,-0.051558922976255,-0.041868031024933]],[[-0.0069269393570721,0.057696953415871,-0.071297198534012],[-0.040563181042671,-0.011410092003644,-0.049349382519722],[-0.017767947167158,-0.022132962942123,0.024563185870647]],[[0.029310934245586,-0.043772328644991,-0.012594365514815],[0.046969063580036,-0.025926429778337,-0.044187292456627],[-0.060960806906223,-0.023462807759643,0.033735100179911]],[[-0.071536339819431,-0.09547808021307,-0.014349319972098],[-0.0027308978606015,-0.028470158576965,0.059870213270187],[0.00048598047578707,-0.021721499040723,0.099300071597099]],[[-0.03812462836504,-0.045462023466825,-0.054016709327698],[-0.01779162697494,0.024888332933187,0.00025648783775978],[0.0045656817965209,0.0047076069749892,0.02170997671783]],[[0.015545071102679,-0.016517950221896,0.030434496700764],[-0.034413635730743,-0.06306304782629,-0.067027412354946],[-0.030027139931917,0.0038231133949012,-0.0032195497769862]],[[0.0035742693580687,0.0044203833676875,0.0052052712999284],[0.029317930340767,-0.0037417884450406,-0.041598871350288],[0.0081725129857659,0.017642918974161,0.0035571127664298]],[[0.015131486579776,0.049049757421017,-0.022239286452532],[0.12712606787682,-0.014635981991887,-0.10571168363094],[-0.010115010663867,-0.045557521283627,0.016040816903114]],[[0.067913182079792,-0.086463607847691,-0.022470641881227],[-0.034692760556936,0.013366096653044,-0.019034327939153],[-0.059212144464254,-0.043566443026066,0.040235169231892]],[[-0.015982858836651,-0.0046793930232525,0.0068392865359783],[0.058605551719666,0.032403346151114,0.06302997469902],[0.033770330250263,0.027676433324814,-0.029149822890759]],[[-0.042472496628761,0.041784159839153,0.022075470536947],[0.021857088431716,0.030865356326103,0.032949700951576],[0.033830046653748,0.0040152510628104,-0.020725555717945]],[[-0.024494865909219,0.0088651236146688,0.0096510406583548],[-0.031204687431455,0.0030737491324544,-0.039673943072557],[-0.063340619206429,-0.023698149248958,0.0013997034402564]],[[-0.012410248629749,0.070945598185062,0.046190991997719],[0.1672246158123,0.018311373889446,0.021491888910532],[0.0061618774197996,0.038483262062073,-0.023306731134653]],[[0.015715856105089,0.01696271263063,0.014469619840384],[0.0078177377581596,-0.065288476645947,-0.0111970808357],[-0.040843423455954,-0.05284121260047,-0.046883087605238]],[[0.020369838923216,0.0028352653607726,-0.029047997668386],[-0.039287779480219,0.0092302663251758,0.029212923720479],[-0.029520196840167,-0.039642602205276,-0.060210824012756]],[[0.049718923866749,0.0059700193814933,0.057289469987154],[-0.0014917575754225,-0.032012660056353,-0.034089274704456],[0.04127112030983,-0.063614957034588,-0.051426097750664]],[[-0.035774871706963,0.034660890698433,0.01855019107461],[0.15205585956573,0.016230760142207,0.076963230967522],[0.059830591082573,0.068137764930725,-0.093635037541389]],[[0.0080792987719178,-0.019723724573851,0.01265814807266],[0.039946731179953,-0.035534530878067,-0.017899872735143],[-0.0073771188035607,0.052321672439575,0.037253890186548]],[[-0.037041205912828,0.044525120407343,0.027044881135225],[-0.0070600076578557,0.025583999231458,0.00060370814753696],[0.060091398656368,-0.013421976007521,0.010858708061278]],[[0.02352536469698,0.022388627752662,0.01898324303329],[0.022859981283545,0.03118222951889,0.025395272299647],[0.026071563363075,0.021534215658903,0.031139835715294]],[[-0.016655331477523,0.031670805066824,-0.03239618614316],[0.03456174954772,0.05244055762887,0.083525128662586],[-0.049620773643255,0.037336580455303,0.11863628029823]],[[-0.045987188816071,-0.035212799906731,0.0012718663783744],[-0.07769538462162,-0.053779061883688,0.0066445898264647],[0.0047608194872737,-0.03946428373456,-0.021239019930363]],[[-0.031692307442427,-0.0020032478496432,0.0088010523468256],[0.015953887254,-0.04405253380537,0.02774809114635],[0.021743640303612,0.01536223012954,0.02305961586535]],[[-0.025626797229052,-0.011109239421785,-0.014147952198982],[-0.030641477555037,-0.012752197682858,0.0070713320747018],[0.014801987446845,0.067783653736115,0.020879061892629]],[[-0.080343209207058,-0.065000422298908,-0.015054311603308],[-0.028676629066467,0.015703791752458,0.011558467522264],[0.027365658432245,-0.013440281152725,0.059696644544601]],[[-0.010967992246151,0.035632472485304,0.026517251506448],[0.061433963477612,-0.019435660913587,-0.029928810894489],[-0.037847567349672,0.072518020868301,-0.018320962786674]],[[0.03308767080307,-0.015148252248764,0.024385195225477],[-0.03882373124361,-0.0066902781836689,0.016293976455927],[0.022545516490936,0.0092968698590994,-0.030632503330708]]],[[[-0.041112598031759,-0.0036039573606104,0.033365812152624],[-0.0062237093225121,0.0061552836559713,0.038564212620258],[0.044888503849506,0.01823814958334,-0.0026824739761651]],[[0.011430301703513,-0.017913768067956,0.0092806592583656],[-0.025207066908479,0.044130239635706,-0.00016480918566231],[0.0033115884289145,0.0068164821714163,0.0025924183428288]],[[0.020284757018089,0.011147355660796,-0.00035703156027012],[0.018243979662657,-0.0025642758700997,0.05671052634716],[-0.00120437995065,-0.058065228164196,-2.0197494450258e-05]],[[0.036725182086229,0.00051992881344631,-0.027962209656835],[-0.0048121809959412,0.050852440297604,0.026249499991536],[-0.023550635203719,-0.028667544946074,-0.017987253144383]],[[0.013492447324097,0.012343432754278,0.0089405262842774],[0.01766244135797,-0.023528380319476,-0.014429021626711],[-0.01761881634593,0.016801564022899,0.0011179090943187]],[[-0.012097963131964,0.0070141083560884,0.012742625549436],[0.0066670537926257,-0.064157016575336,0.021804643794894],[-0.038463037461042,0.05410760641098,0.045829281210899]],[[0.048996731638908,-0.014518879354,0.030554577708244],[-0.026946986094117,-0.099011264741421,0.041629083454609],[0.029635714367032,0.089556261897087,0.023021664470434]],[[-0.016013180837035,0.034960053861141,0.02927397377789],[-0.034360382705927,0.013728051446378,0.010134956799448],[0.0010307893389836,0.012158967554569,-0.011014382354915]],[[0.028564132750034,-0.0053971041925251,-0.050820257514715],[-0.081669166684151,0.020702151581645,0.018465705215931],[0.010612993501127,-0.012261813506484,0.045873794704676]],[[0.028364019468427,0.031552542001009,-0.0061403950676322],[0.011859851889312,0.05306089296937,-0.020365936681628],[-0.020498910918832,-0.0016033126739785,0.0069941696710885]],[[-0.0057799480855465,0.06292200088501,0.010538361035287],[-0.0035588990431279,0.020700059831142,0.049902450293303],[-0.040168233215809,-0.045329097658396,-0.027778519317508]],[[0.011828818358481,-0.013886825181544,-0.0059908595867455],[-0.0037448788061738,-0.0061100218445063,0.018537297844887],[0.011636406183243,0.015416335314512,-0.014935775659978]],[[-0.0014510493492708,0.0006304879207164,-0.0036819351371378],[-0.0061700437217951,0.05916965007782,-0.02911982499063],[0.0079137664288282,-0.061982505023479,-0.014548860490322]],[[0.014321247115731,0.010794138535857,-0.013921802863479],[-0.0034937162417918,-0.011320418678224,0.081419043242931],[-0.012442577630281,-0.027080357074738,0.0054354434832931]],[[-0.026090985164046,-0.062921866774559,-0.061067182570696],[-0.028423042967916,0.024162143468857,0.05894723534584],[-0.021063528954983,-0.010090446099639,-0.026573106646538]],[[-0.014352817088366,0.018799666315317,-0.0053433254361153],[0.0266022849828,0.020158626139164,-0.0072746914811432],[0.0069401129148901,0.01811708137393,-0.059493370354176]],[[0.096587829291821,-0.003606341779232,-0.0075354012660682],[-0.0097429510205984,0.11170540750027,-0.036448210477829],[-0.0024177136365324,-0.020429717376828,0.0057153310626745]],[[0.011223819106817,-0.021994994953275,0.015022785402834],[0.051263388246298,-0.10513239353895,0.026302605867386],[-0.0067967474460602,0.0065958546474576,0.020274156704545]],[[0.016558704897761,-0.031329061836004,0.02934430539608],[-0.0093020247295499,-0.015141411684453,0.0016933667939156],[0.0029738005250692,-0.0059453044086695,0.016457749530673]],[[0.0060912328772247,-0.061930667608976,0.032672479748726],[0.026964168995619,-0.043588884174824,-0.019028108566999],[0.050466373562813,-0.026684690266848,-0.03829387575388]],[[0.031256087124348,0.011975022032857,0.0088911969214678],[-0.0030299834907055,-0.0037541585043073,0.04714397713542],[-0.029470527544618,0.0156060019508,-0.056686855852604]],[[0.015221523120999,0.034129079431295,0.014468894340098],[0.0073095122352242,-0.035879522562027,-0.00995157007128],[0.019860193133354,-0.0059035369195044,0.00094579963479191]],[[0.058283638209105,0.04661700874567,0.024507269263268],[0.074020557105541,0.11131407320499,0.014764696359634],[0.038560345768929,0.090478166937828,-0.031782064586878]],[[-0.0059742857702076,0.011776162311435,0.0030905182939023],[0.02388421818614,0.0052836504764855,-0.025845425203443],[-0.0087033566087484,-0.01624458655715,0.040333073586226]],[[-0.0029679504223168,0.010429413057864,-0.028529919683933],[-0.0034499054308981,0.019146416336298,0.031863648444414],[0.052207924425602,-0.012320127338171,-0.0053270515054464]],[[0.0092770913615823,0.014221833087504,-0.014675813727081],[-0.033362995833158,0.0034217527136207,0.013715716078877],[-0.020026087760925,-0.0013988664140925,0.0028220771346241]],[[0.0016389496158808,-0.011556383222342,0.01105338986963],[-0.044046230614185,0.03300466760993,0.022345775738358],[-0.0043416088446975,-0.028956685215235,-0.026649914681911]],[[0.023733323439956,0.023643096908927,-0.03311014175415],[0.024238431826234,0.032708887010813,0.017721870914102],[-0.075579315423965,0.040505588054657,-0.021863400936127]],[[-0.0058083273470402,0.021095195785165,0.0026329983957112],[-0.027439758181572,-0.0008366871625185,0.046775422990322],[-0.033171895891428,-0.029235787689686,-0.00091505405725911]],[[-0.009603351354599,-0.025792447850108,-0.005994675680995],[-0.048523370176554,0.03496265411377,-0.0098232319578528],[0.0044880616478622,0.0047089760191739,0.02780595049262]],[[0.0090695833787322,-0.030995482578874,0.0005551318754442],[0.0050475439056754,0.017863472923636,-0.0098440907895565],[0.042403552681208,0.0049277176149189,-0.033330194652081]],[[0.025391818955541,-0.0092396773397923,0.0080162398517132],[0.034098383039236,-0.027916118502617,0.00021182524506003],[0.015156163834035,-0.013225068338215,-0.0019993539899588]],[[-0.026385685428977,0.039735022932291,0.015176189132035],[-0.024894302710891,0.026791645213962,-0.043233226984739],[-0.017925811931491,0.026485146954656,0.015391326509416]],[[0.0092207286506891,-0.010845360346138,0.0034508488606662],[-0.0016747518675402,0.020741853863001,-0.025577668100595],[0.033650401979685,-0.054895184934139,0.029390461742878]],[[0.0094290766865015,0.0016935712192208,-0.050559271126986],[0.012565838173032,-0.017580846324563,0.013447865843773],[0.015678349882364,0.0068872189149261,0.044500544667244]],[[-0.043080374598503,0.066363550722599,-0.026836015284061],[0.040667567402124,-0.061667632311583,0.014981369487941],[-0.022057803347707,-0.018499813973904,0.0047643696889281]],[[0.034187447279692,-0.067158162593842,0.037916257977486],[-0.040733989328146,0.059954576194286,-0.038705907762051],[0.0092813279479742,-0.0011358042247593,-0.03296622633934]],[[0.0023475703783333,0.0098035857081413,0.0040479199960828],[-0.013808812014759,-0.018827650696039,-0.021328881382942],[0.0038456665351987,0.020665002986789,0.015323733910918]],[[0.019283432513475,-0.025260791182518,-0.00360819674097],[0.012051175348461,-0.055620383471251,-0.0055579706095159],[-0.017555683851242,0.0056519871577621,0.0077564702369273]],[[0.030257621780038,0.0081340614706278,0.0069808508269489],[-0.0017351440619677,-0.013490561395884,-0.0054442845284939],[-0.041169855743647,-0.030538523569703,0.020975707098842]],[[-0.0059500597417355,-0.011253722943366,-0.021496443077922],[-0.018372898921371,0.039482064545155,0.0030707970727235],[-0.043043620884418,-0.011892109178007,-0.011821856722236]],[[-0.02136342972517,0.029115768149495,-0.033854894340038],[0.02599917165935,-0.034415848553181,-0.02139238640666],[-0.006706056650728,0.0077832601964474,0.026109868660569]],[[0.0036583868786693,0.0095898890867829,0.040439628064632],[0.020524594932795,0.0014335388550535,-0.072375237941742],[0.034300658851862,0.019316822290421,0.04256484284997]],[[-0.027850078418851,-0.0085207354277372,-0.013876530341804],[-0.0085880663245916,0.018189894035459,0.019350845366716],[-0.031562153249979,-0.00059729762142524,-0.0074480967596173]],[[-0.010007315315306,-0.024490274488926,0.0073128757067025],[-0.014930070377886,0.012267295271158,0.0055420487187803],[0.030354650691152,0.051978573203087,-0.00073472241638228]],[[0.014624308794737,0.0059971385635436,-0.019030494615436],[0.00087091105524451,-0.020141558721662,0.043679662048817],[-0.028455037623644,-0.055796880275011,0.01312180608511]],[[-0.01553175970912,0.022003337740898,0.052161931991577],[0.037543851882219,-0.011814103461802,-0.043327566236258],[-0.032972346991301,-0.0027735976036638,0.0042085777968168]],[[0.034623868763447,-0.034651160240173,0.022098811343312],[0.10953269153833,-0.05902511999011,-0.04024275764823],[0.010739210061729,0.054925676435232,0.012787991203368]],[[-0.01426221895963,-0.054629396647215,0.037599388509989],[0.029627082869411,-0.025625098496675,0.011141522787511],[0.061568230390549,-0.029216736555099,0.022549174726009]],[[0.025108011439443,-0.031702388077974,-0.028429988771677],[0.073047399520874,-0.0074774287641048,-0.009161957539618],[0.030531795695424,-0.059033345431089,0.037501767277718]],[[-0.0010358679573983,-0.010271892882884,0.0042717722244561],[-0.049257311969995,0.080325864255428,0.0017231825040653],[-0.054814882576466,-0.045988369733095,0.0050953566096723]],[[0.065701887011528,-0.034796964377165,0.0043647936545312],[0.027174953371286,-0.0095618097111583,-0.010130872949958],[-0.0073226951062679,0.038364361971617,0.0094973035156727]],[[-0.02200317569077,0.019093915820122,-0.0092882215976715],[0.018257005140185,-0.033178992569447,0.023221058771014],[0.0048854467459023,0.054402370005846,-0.015299464575946]],[[-0.0024051230866462,0.12869870662689,0.047748796641827],[-0.10982398688793,-0.071495860815048,-0.054330766201019],[0.0071689989417791,-0.095360822975636,-0.018353773280978]],[[-0.014236502349377,0.01680744998157,0.034019138664007],[-0.029205307364464,0.010497545823455,-0.012379110790789],[-0.0074532823637128,-0.0055641061626375,0.017062114551663]],[[0.0055798497051001,-0.014577335678041,0.02385494671762],[0.0093793990090489,-0.022988017648458,0.049470316618681],[-0.0054191341623664,0.036022126674652,-0.0062563177198172]],[[0.024331986904144,0.068593971431255,-0.0084174759685993],[-0.072822369635105,0.025917753577232,0.013755288906395],[0.011706710793078,-0.043524313718081,0.017934693023562]],[[-0.0022398501168936,-0.0093133058398962,0.0030787531286478],[0.012228257954121,0.044695805758238,0.035370800644159],[0.018107069656253,-0.017845751717687,-0.019997332245111]],[[-0.0067414315417409,0.027918802574277,-0.030832648277283],[0.024733491241932,-0.032416380941868,-0.020888602361083],[-0.026372913271189,0.015072425827384,-0.0032220103312284]],[[-0.032739073038101,-0.034151576459408,-0.046489924192429],[-0.095103278756142,-0.0408732034266,-0.091885358095169],[-0.035458642989397,-0.060042507946491,-0.012088480405509]],[[0.025783855468035,0.021658573299646,-0.021225016564131],[0.0046324748545885,-0.048136875033379,0.010670272633433],[-0.00010966770059895,0.034850742667913,-0.0058885863982141]],[[0.028234710916877,-0.03913039714098,-0.057705022394657],[0.0044996575452387,0.0032096232753247,0.017601115629077],[0.002577719045803,0.037434183061123,-0.0088458983227611]],[[0.0034851261880249,-0.011286547407508,0.031717389822006],[0.0028676360379905,-0.010601428337395,0.00025211571482942],[0.0063103246502578,-0.017181344330311,0.026736333966255]],[[-0.0060426169075072,0.025510359555483,0.02729369327426],[-0.024515364319086,-0.020481886342168,-0.061756309121847],[0.0076283463276923,0.023575996980071,-0.01516580209136]]],[[[-0.05025452002883,0.050885275006294,-0.0015626462409273],[0.052184004336596,0.013475042767823,0.0379808396101],[-0.0086635872721672,0.033265020698309,-0.03299031406641]],[[-0.014282791875303,0.017516752704978,-0.086602672934532],[-0.040313474833965,-0.0082196919247508,0.0019936833996326],[0.036150146275759,-0.020470382645726,-0.020071061328053]],[[-0.063109494745731,-0.067910932004452,0.074269384145737],[0.018282733857632,-0.028980333358049,-0.071394734084606],[0.042864225804806,0.029246976599097,0.045357473194599]],[[-0.071511253714561,-0.0059103681705892,0.019731614738703],[-0.019354315474629,0.011693722568452,0.01562543399632],[0.059693869203329,0.014983098953962,0.0091580506414175]],[[0.011233544908464,0.050606090575457,-0.082714334130287],[-0.01004433631897,-0.027536038309336,0.086481869220734],[0.02950649894774,0.0026519468519837,-0.087863318622112]],[[-0.096142932772636,0.046033635735512,-0.021779092028737],[0.031222246587276,-0.025550184771419,0.041502613574266],[0.035179685801268,-0.023807786405087,0.048601716756821]],[[-0.010040859691799,-0.027398711070418,0.03661872446537],[-0.02366628497839,0.019788274541497,-0.021519958972931],[-0.0043936441652477,-0.0046726665459573,0.042752493172884]],[[0.039655610918999,0.0050287558697164,-0.020939446985722],[-0.04691307246685,-0.013223100453615,0.053338412195444],[0.019114723429084,-0.010115573182702,0.055135961622]],[[-0.022441599518061,-0.011595148593187,0.039906393736601],[0.015138141810894,0.051012724637985,-0.027968380600214],[-0.016606491059065,-0.043677911162376,0.026318365707994]],[[0.15777486562729,-0.0060077793896198,0.044974680989981],[-0.030160937458277,-0.050506927073002,-0.049783691763878],[0.042439416050911,-0.049726068973541,-0.00022736057871953]],[[-0.042959969490767,-0.0049620037898421,-0.085675872862339],[-0.0015571195399389,-0.05410198867321,0.059819065034389],[0.025673573836684,0.027266748249531,-0.021732863038778]],[[0.038923177868128,-0.034282881766558,-0.0055423192679882],[-0.049013752490282,-0.04170286282897,0.015843566507101],[0.0039448970928788,0.014964706264436,0.0098746977746487]],[[0.015989804640412,0.029297081753612,-0.014766674488783],[-0.054408725351095,-0.029239492490888,-0.026462910696864],[-0.022613268345594,0.021825507283211,-0.039607968181372]],[[0.03188918158412,0.061438478529453,-0.0044360067695379],[0.04748959094286,-0.010847890749574,0.034308020025492],[0.054562859237194,0.045061219483614,-0.032933436334133]],[[-0.013705238699913,-0.05543277412653,0.031288396567106],[0.030401991680264,0.027376445010304,-0.057761125266552],[0.060138951987028,-0.011930758133531,-0.0052620870992541]],[[0.027449676766992,-0.0078698201104999,-0.063626043498516],[-0.020484866574407,0.033201474696398,0.010906236246228],[-0.021750489249825,0.065111219882965,0.0066521489061415]],[[0.01139160990715,0.0090561732649803,-0.076414674520493],[0.015975700691342,0.099853940308094,0.0060955411754549],[0.013959238305688,-0.011753214523196,0.044079255312681]],[[-0.043151453137398,-0.036500938236713,-0.0058066342025995],[0.047845453023911,0.0073296325281262,-0.025399623438716],[-0.039330516010523,-0.0051822257228196,-0.00025768621708266]],[[0.033487748354673,-0.019432129338384,0.017078835517168],[-0.0024739752989262,0.025522226467729,-0.022620555013418],[0.051355350762606,0.010128125548363,0.020234057679772]],[[-0.062528125941753,0.054452460259199,0.0098361875861883],[-0.06495001912117,0.036129999905825,0.018682645633817],[0.012711738236248,0.028221424669027,-0.012489262968302]],[[-0.042673949152231,-0.023279810324311,-0.051519930362701],[0.018996035680175,-0.024758890271187,-0.037567567080259],[0.039312470704317,-0.013102827593684,-0.025939436629415]],[[0.018192572519183,-0.059298507869244,-0.04521705955267],[-0.0041808248497546,0.01934408955276,-0.0087116798385978],[-0.0011405749246478,0.032180368900299,-0.11191481351852]],[[-0.01161683164537,-0.0086591588333249,0.046153340488672],[0.042227122932673,0.046308442950249,-0.097672618925571],[-0.038820821791887,-0.018083455041051,0.027483467012644]],[[-0.048007514327765,-0.024050632491708,0.041252143681049],[0.0025982137303799,0.016036963090301,0.056136801838875],[-0.044770009815693,0.074526973068714,-0.065759152173996]],[[-0.020190170034766,-0.019473629072309,-0.040647152811289],[0.010690425522625,0.019120313227177,0.018565412610769],[0.033205274492502,-0.036443255841732,-0.052533239126205]],[[-0.035025924444199,-0.021738642826676,-0.0012419394915923],[-0.065481022000313,0.085217863321304,0.027545981109142],[-0.090317025780678,-0.012181737460196,0.010437292978168]],[[-0.033174104988575,-0.079993605613708,-0.044397763907909],[-0.021577391773462,-0.021694852039218,-0.03850457072258],[-0.025655286386609,0.062003016471863,-0.00019161851378158]],[[-0.03511344268918,-0.065778277814388,-0.042545840144157],[-0.012367711402476,0.060598447918892,-0.1219684407115],[0.034737158566713,-0.080856762826443,-0.031599938869476]],[[-0.056614845991135,-0.068966791033745,0.022687258198857],[-0.12872911989689,0.028453201055527,-0.054010387510061],[-0.0030642545316368,-0.05619952082634,0.046081963926554]],[[-0.013865533284843,-0.05027948319912,-0.024317029863596],[-0.012443895451725,0.0089198304340243,-0.0090800821781158],[-0.029231613501906,-0.0019046927336603,0.042030952870846]],[[-0.077024683356285,0.014511004090309,-0.016432244330645],[-0.0019032197305933,-0.0079851998016238,-0.0044100070372224],[0.052002910524607,0.045596063137054,0.0095487842336297]],[[0.034772265702486,0.020310673862696,-0.05626130849123],[-0.050009958446026,-0.035850949585438,0.036455675959587],[0.018146088346839,-0.033046666532755,0.012811557389796]],[[0.033806767314672,-0.018191736191511,-0.0014030508464202],[0.046918254345655,0.048763334751129,0.023822465911508],[-0.051291234791279,-0.010596725158393,0.013943652622402]],[[-0.014742999337614,-0.015428885817528,-0.0081517025828362],[0.018287271261215,0.043694507330656,0.062109090387821],[-0.049038950353861,-0.0089498935267329,-0.010810034349561]],[[-0.017942210659385,-0.0051044099964201,0.0022201337851584],[0.031468383967876,0.03420877456665,0.0059881363995373],[0.01770268753171,0.0021380838006735,0.0087287044152617]],[[0.049616273492575,-0.071194387972355,-0.076336435973644],[-0.092962346971035,-0.071376323699951,0.040165454149246],[-0.051312331110239,-0.058809500187635,-0.069913938641548]],[[0.098240248858929,-0.051596537232399,0.017087329179049],[-0.054369956254959,-0.0060085668228567,-0.050293944776058],[0.00023095034703147,-0.037268944084644,0.073298908770084]],[[0.023504892364144,0.0075431670993567,-0.033697236329317],[-0.082986362278461,-0.015696555376053,-0.011771829798818],[0.032318651676178,-0.030215922743082,0.01739626377821]],[[-0.029467303305864,0.0013159991940483,-0.0066520357504487],[-0.0083422968164086,-0.045745730400085,0.059793397784233],[-0.025218499824405,-0.015653753653169,-0.021209029480815]],[[0.012776272371411,-0.071724019944668,0.048024088144302],[0.010387731716037,0.015166573226452,-0.00190070993267],[-0.006676281336695,-0.01010200381279,0.074153885245323]],[[0.040511019527912,-0.0846913382411,0.027107639238238],[-0.027637388557196,0.0048004663549364,0.014289488084614],[0.015397194772959,-0.048207905143499,0.021099174395204]],[[0.010849563404918,-0.013787964358926,0.053253017365932],[-0.045530010014772,-0.013126741163433,0.056854136288166],[0.0085617769509554,-0.029252972453833,-0.0077911405824125]],[[-0.025484751909971,-0.027349514886737,-0.019617816433311],[-0.032804705202579,0.014492532238364,0.010641288012266],[0.017494805157185,-0.044257815927267,0.060279000550508]],[[-0.01324084866792,-0.00019168232392985,-0.016214273869991],[0.021614264696836,-0.027415633201599,-0.0091332411393523],[0.0058441199362278,-0.030350523069501,0.045218471437693]],[[-0.037859760224819,0.008549096994102,0.047887086868286],[-0.0014036762295291,-0.041516877710819,-0.080606676638126],[-0.046443734318018,-0.0090325810015202,-0.012615879997611]],[[0.063406631350517,-0.040871851146221,0.069212436676025],[-0.034590739756823,-0.089039616286755,0.043785218149424],[0.048492852598429,0.042235009372234,-0.038611676543951]],[[0.03799756988883,-0.026961706578732,-0.05687453225255],[-0.018003210425377,0.04612235724926,-0.084936715662479],[0.04820342361927,-0.037468962371349,-0.041402649134398]],[[-0.019645921885967,-0.057533897459507,0.0091798901557922],[-0.056787516921759,0.055503834038973,0.058706928044558],[0.068486124277115,0.0090460907667875,0.040736269205809]],[[-0.016389954835176,-0.078477717936039,0.090792655944824],[-0.08919894695282,0.010925732553005,-0.038659460842609],[-0.0084894215688109,0.092705875635147,0.029833918437362]],[[0.092109024524689,0.054477229714394,-0.029409606009722],[0.011002356186509,-0.034302569925785,0.042088255286217],[0.047200858592987,-0.019617095589638,-0.074360385537148]],[[-0.028026523068547,-0.010907095856965,0.046082753688097],[-0.028940957039595,0.051314759999514,0.056820966303349],[-0.028753239661455,-0.095599807798862,-0.031416069716215]],[[-0.029648650437593,0.017666961997747,0.025162860751152],[-0.031375478953123,-0.052335608750582,0.050252132117748],[0.019016992300749,-0.0017654305556789,-0.084795877337456]],[[0.0091190822422504,-0.025684596970677,-0.017772249877453],[-0.032072149217129,-0.050477676093578,0.096872344613075],[0.012402431108057,0.028383305296302,0.009067989885807]],[[0.12047518789768,0.018659239634871,0.073764495551586],[0.092995919287205,0.09578512609005,-0.05187064409256],[0.024992408230901,0.026343636214733,0.009739039465785]],[[0.080712102353573,0.037616584450006,-0.047016751021147],[-0.071257300674915,-0.012726866640151,-0.037609163671732],[-0.023483093827963,-0.05505607649684,0.035042982548475]],[[-0.092132359743118,-0.0045064170844853,-0.036333598196507],[-0.0092468215152621,0.0058461506851017,-0.006341896019876],[0.020037587732077,-0.015606672503054,0.036389857530594]],[[0.0048315348103642,-0.028255900368094,-0.014898252673447],[-0.00089503033086658,0.049894187599421,-0.0090102525427938],[-0.0019113699672744,0.071288399398327,-0.059816010296345]],[[-0.030230596661568,-0.026700522750616,-0.023888546973467],[-0.034168370068073,-0.033658631145954,0.053919844329357],[0.028383070603013,-0.0034932044800371,0.024817876517773]],[[-0.074342027306557,0.10138562321663,0.010448482818902],[-0.032041434198618,-0.071935929358006,-0.042326610535383],[-0.076143473386765,0.11307675391436,0.0031703892163932]],[[0.031818188726902,-0.0041935197077692,0.021074008196592],[-0.018981857225299,-0.022921282798052,0.04296462982893],[0.0076053733937442,0.027111236006021,-0.022839421406388]],[[-0.024138234555721,-0.034329880028963,-0.015465648844838],[0.018133759498596,-0.0066872434690595,-0.034803684800863],[0.015332338400185,-0.040732897818089,0.055897492915392]],[[-0.037607245147228,0.0041089840233326,-0.066380865871906],[0.013274224475026,0.0065039787441492,-0.093377888202667],[-0.028611736372113,-0.05164984986186,-0.013268847949803]],[[0.050495978444815,-0.010364986024797,-0.052505057305098],[-0.069115675985813,-0.023208931088448,0.011832146905363],[0.047945607453585,-0.049183458089828,-0.065454266965389]],[[-0.044010411947966,0.032524518668652,0.019146909937263],[0.016023933887482,0.0050765443593264,0.040010496973991],[0.010188594460487,0.072520919144154,-0.052856229245663]]],[[[0.056894488632679,0.070564799010754,-0.10603415220976],[0.055417980998755,-0.020862024277449,-0.11025533080101],[0.1982449144125,-0.0084759648889303,0.030695740133524]],[[-0.07445402443409,-0.069141834974289,0.0047780964523554],[-0.024937458336353,0.00057895836653188,-0.10940604656935],[-0.081849969923496,0.027093581855297,-0.060496237128973]],[[0.014508506283164,0.0087892021983862,-0.037688102573156],[0.0049873157404363,0.0090597467496991,0.011378294788301],[-0.0014989876653999,-0.063084714114666,-0.00076281384099275]],[[-0.0080913752317429,-0.027279213070869,0.018205655738711],[0.099277377128601,0.037895455956459,0.087923057377338],[0.047807857394218,-0.033602118492126,0.070729590952396]],[[0.01651425473392,0.016924390569329,-0.11138875037432],[-0.037980284541845,-0.030424227938056,-0.00704086991027],[-0.067924819886684,-0.043073579668999,0.13916070759296]],[[-0.070621863007545,0.06564386934042,-0.0081096207723022],[-0.061286345124245,-0.034012012183666,0.081195928156376],[0.029320606961846,0.0011342576472089,-0.18182948231697]],[[0.025724597275257,-0.053294699639082,-0.066893368959427],[-0.021186202764511,-0.064400903880596,0.019416639581323],[0.028044458478689,-0.054251007735729,-0.0049010869115591]],[[-0.095087647438049,-0.066975995898247,-0.060813404619694],[0.01344554964453,-0.057087931782007,0.0082552963867784],[0.07526645809412,-0.099831506609917,-0.022839779034257]],[[0.036138914525509,0.045101620256901,0.057558856904507],[-0.0065977526828647,0.073897980153561,0.085226811468601],[0.011696842499077,-0.010846922174096,-0.013222682289779]],[[0.023185046389699,0.047935057431459,0.079015947878361],[-0.016952935606241,-0.16836568713188,-0.016824059188366],[0.074723459780216,-0.089060358703136,0.020022640004754]],[[0.065477296710014,0.093584164977074,-0.053159777075052],[-0.0026896144263446,-0.010432527400553,-0.078343123197556],[-0.0034679211676121,0.015077448450029,-0.016122072935104]],[[0.071123845875263,0.13393679261208,0.029312800616026],[0.0075539639219642,0.018727790564299,0.086327232420444],[0.049863208085299,-0.0041196537204087,-0.0026181729044765]],[[-0.01310870423913,-0.036508101969957,-0.15611708164215],[-0.028015207499266,0.064488805830479,-0.34985932707787],[0.02332934178412,-0.13831010460854,-0.2443250566721]],[[0.087278634309769,0.014364488422871,0.0086142523214221],[-0.0034188646823168,-0.020868582651019,-0.016599582508206],[0.035509429872036,0.053138747811317,0.083346776664257]],[[-0.016831062734127,0.082396201789379,0.093080878257751],[-0.074806146323681,-0.10164221376181,0.05156022682786],[-0.12422826141119,-0.043203804641962,-0.050680909305811]],[[0.0084133297204971,-0.028642227873206,0.02177619934082],[-0.059427570551634,0.05343297123909,0.01427230425179],[0.0098114069551229,-0.053852569311857,-0.073042072355747]],[[0.0077215088531375,-0.031642615795135,0.08406400680542],[0.038029383867979,0.018746076151729,-0.053409166634083],[0.067574553191662,-0.025089979171753,-0.086531586945057]],[[0.028202425688505,-0.010623480193317,0.034275878220797],[-0.03989477828145,-0.012045565992594,0.0029572045896202],[-0.026819227263331,-0.073001995682716,-0.063579000532627]],[[-0.02961159311235,-0.007138829678297,-0.0240618288517],[0.083677358925343,-0.027478842064738,-0.023410988971591],[-0.032953482121229,-0.0026774199213833,0.016502590849996]],[[-0.020970560610294,0.03096847422421,-0.010115149430931],[0.0071398760192096,0.0016818868461996,0.030947664752603],[0.020729942247272,0.074695512652397,0.0743023827672]],[[-0.035847272723913,-0.02296101488173,-0.033704686909914],[-0.063118509948254,-0.028170198202133,-0.053330700844526],[0.0076640076003969,0.045242842286825,-0.054211542010307]],[[0.058157283812761,0.072081483900547,0.11434189230204],[0.050847645848989,-0.044338349252939,-0.05699297785759],[0.033781550824642,0.10466554015875,0.016503931954503]],[[-0.0090492460876703,0.040358629077673,-0.0085318265482783],[-0.0033630740363151,-0.075372569262981,-0.012305506505072],[0.005497831851244,0.05413131415844,0.01646232791245]],[[0.12095061689615,0.10501053929329,-0.012888972647488],[-0.079180009663105,0.07053603976965,-0.035641688853502],[0.095909126102924,0.0051904865540564,-0.053502127528191]],[[0.042195349931717,-0.037564162164927,0.09234195202589],[0.045651815831661,-0.0050934599712491,0.18105085194111],[0.091778747737408,0.027759021148086,0.035968296229839]],[[-0.049223687499762,-0.019153729081154,-0.020633982494473],[0.0087509630247951,-0.095284141600132,0.030926270410419],[-0.18065720796585,0.029732195660472,-0.025532584637403]],[[0.046890109777451,0.12225522845984,0.0015036050463095],[0.050353072583675,0.10352679342031,0.066744491457939],[-0.017329636961222,-0.014410046860576,0.039627511054277]],[[0.023433497175574,-0.030808825045824,-0.023870876058936],[0.082996614277363,-0.053407497704029,0.024741631001234],[-0.054479353129864,0.021068826317787,-0.042069479823112]],[[-0.047922905534506,0.11643300205469,0.078754350543022],[-0.014852127991617,-0.087137989699841,0.027683546766639],[0.027882007881999,0.051238100975752,-0.030319256708026]],[[-0.065681926906109,0.003326068399474,-0.0579619333148],[-0.085503973066807,-0.065583288669586,0.00079868693137541],[-0.12456731498241,-0.087839849293232,-0.048791471868753]],[[-0.048705089837313,-0.046403400599957,-0.07510632276535],[-0.0075693866237998,0.0066825170069933,-0.15531024336815],[-0.069959633052349,0.043896153569221,-0.021431341767311]],[[-0.008506752550602,-0.027324812486768,-0.094584219157696],[0.012158235535026,-0.13690258562565,0.033802382647991],[-0.047931399196386,-0.10166126489639,0.13280741870403]],[[-0.005357320420444,-0.066859617829323,-0.18604452908039],[-0.031946897506714,0.15968835353851,-0.084581956267357],[0.11682628840208,-0.046237975358963,-0.10415858030319]],[[0.0057953405193985,0.015240173786879,-0.15631337463856],[-0.033809386193752,0.095393449068069,-0.057539980858564],[-0.009413430467248,0.0051353774033487,-0.15111121535301]],[[-0.031747050583363,-0.10286734253168,0.043363623321056],[-0.0033296458423138,-0.047014199197292,0.053517889231443],[-0.0081079658120871,-0.01900009252131,0.077088735997677]],[[-0.001634324202314,0.01210615132004,-0.02637892216444],[-0.009248455055058,0.0039331107400358,0.011808795854449],[-0.10525339096785,-0.10211295634508,-0.091923601925373]],[[-0.008521449752152,-0.17089392244816,0.082562603056431],[-0.013883666135371,-0.079334884881973,-0.017166346311569],[0.023224107921124,0.050559062510729,-0.033606562763453]],[[0.040568750351667,0.073791451752186,0.088369853794575],[0.00036160324816592,0.051629316061735,0.043911650776863],[-0.16493682563305,0.11460098624229,0.021961156278849]],[[0.047484874725342,0.0024867986794561,0.058570832014084],[-0.038317829370499,0.037117458879948,-0.13326732814312],[0.0060584815219045,-0.046314634382725,-0.15389023721218]],[[0.023393638432026,0.015519022941589,-0.086038172245026],[-0.0088270418345928,0.016910305246711,-0.15991504490376],[0.0062558711506426,-0.095984421670437,-0.083533741533756]],[[-0.036676269024611,0.11809727549553,0.016962338238955],[-0.012938761152327,-0.10786788165569,0.010270850732923],[-0.070823512971401,-0.065142065286636,0.01759210601449]],[[0.0011132783256471,0.011870137415826,0.026310114189982],[0.017088785767555,0.066296428442001,0.019929265603423],[-0.051401406526566,-0.046539932489395,0.072256371378899]],[[-0.059087838977575,0.0440838560462,-0.071408845484257],[-0.067072167992592,-0.21288648247719,0.030727175995708],[0.09154287725687,-0.032382901757956,0.046450488269329]],[[0.0017626913031563,0.011330025270581,0.21633903682232],[-0.045512046664953,0.091848835349083,-0.037479367107153],[0.10597704350948,-0.00082262750947848,-0.07760176807642]],[[-0.054405562579632,-0.063782803714275,-0.053294979035854],[-0.1121311634779,-0.0091581270098686,-0.11668621003628],[0.035969343036413,-0.014593258500099,-0.079409405589104]],[[-0.021748943254352,0.0057831043377519,-0.02452066168189],[0.027665503323078,-0.044344689697027,-0.069205805659294],[0.0069567300379276,0.054823324084282,0.025249125435948]],[[-0.061262488365173,0.023182734847069,-0.079587116837502],[-0.03795413300395,0.030024966225028,-0.036694090813398],[-0.039576545357704,0.036853395402431,0.086951494216919]],[[-0.060739852488041,-0.067745640873909,-0.079264797270298],[-0.0051882700063288,-0.07482797652483,-0.014487861655653],[-0.035002250224352,0.076285399496555,0.025377796962857]],[[-0.018396677449346,0.095934152603149,0.071925573050976],[0.024246545508504,0.023637279868126,0.11509878188372],[-0.052128840237856,0.084741324186325,0.035821259021759]],[[0.023415189236403,-0.010288600809872,-0.018568847328424],[0.005846485029906,0.015414603054523,-0.036280315369368],[-0.089131124317646,-0.00041322325705551,-0.079322412610054]],[[0.0085241757333279,0.028819721192122,-0.0033994442783296],[-0.0060713938437402,0.066026858985424,0.061160914599895],[0.068732649087906,-0.10298772901297,-0.035498403012753]],[[-0.049141500145197,-0.071169123053551,0.016361378133297],[-0.019973870366812,0.068262360990047,0.029732534661889],[0.044988136738539,0.041222013533115,0.0086438758298755]],[[-0.072197251021862,-0.022081440314651,-0.077606908977032],[-0.090176410973072,-0.022048218175769,-0.063281640410423],[0.047882042825222,0.00033794168848544,0.033388499170542]],[[0.036547530442476,0.15233360230923,0.041233062744141],[0.10557251423597,0.07031911611557,0.12390926480293],[-0.01009741704911,0.11181879043579,0.079673700034618]],[[0.089629396796227,0.019095817580819,-0.24163508415222],[0.049809362739325,0.032482501119375,0.016058476641774],[0.018464123830199,-0.13160873949528,0.10984453558922]],[[-0.015549851581454,-0.088854685425758,-0.040501229465008],[-0.0016431278781965,0.00055047468049452,0.030336823314428],[-0.00068575324257836,-0.041622310876846,-0.064225070178509]],[[-0.098251156508923,-0.057583674788475,-0.10784167051315],[-0.074114285409451,-0.088588908314705,-0.20548991858959],[-0.12917536497116,0.040548201650381,-0.16117024421692]],[[0.0048085367307067,0.05270441994071,-0.058445744216442],[-0.0045259846374393,-0.016800411045551,-0.0083433333784342],[-0.0023574756924063,0.045410726219416,0.011679107323289]],[[-0.064397044479847,0.085472285747528,0.017920276150107],[-0.038666490465403,0.025530194863677,0.0054635494016111],[-0.027757609263062,-0.043741565197706,0.00145766697824]],[[-0.0053966883569956,0.013560769148171,0.066470712423325],[0.0009479708969593,0.047544647008181,0.04493910446763],[0.030699867755175,-0.025359502062201,-0.027921635657549]],[[0.043654095381498,0.066444166004658,0.090572133660316],[-0.03035725094378,0.028406880795956,0.081027366220951],[0.0042290952987969,0.14583840966225,0.042689375579357]],[[0.034202892333269,-0.0099468994885683,0.018667636439204],[0.0060611893422902,0.073659054934978,-0.041227363049984],[0.039429921656847,0.077848300337791,-0.020486555993557]],[[0.11593660712242,0.037051577121019,0.0087922979146242],[-0.059816505759954,-0.043234266340733,0.084610939025879],[0.035262458026409,-0.11803336441517,-0.11970020085573]],[[-0.010726865381002,-0.021878812462091,0.072832472622395],[0.024449087679386,0.00041098479414359,0.061118833720684],[-0.0037730105686933,-0.075109586119652,-0.065500885248184]]],[[[0.17675669491291,0.18116894364357,-0.13421942293644],[0.10952584445477,0.017213381826878,0.032612323760986],[-0.0074734045192599,-0.019175307825208,-0.2328629642725]],[[-0.056370999664068,-0.016679493710399,0.041325479745865],[-0.078578770160675,0.03545044362545,-0.016230441629887],[-0.033043939620256,0.066337995231152,0.066849686205387]],[[-0.069539591670036,-0.080994948744774,-0.0015384200960398],[0.026480343192816,0.0062884227372706,0.063417546451092],[0.091760776937008,0.014673464931548,-0.017850561067462]],[[-0.16254639625549,-0.18506646156311,-0.038517855107784],[0.040792897343636,-0.023369643837214,-0.05511611327529],[0.11868355423212,0.08265532553196,-0.085663177073002]],[[-0.062753215432167,-0.17956812679768,-0.031690642237663],[0.019339807331562,-0.05743321031332,0.089815095067024],[0.058871760964394,-0.039819281548262,0.02564013376832]],[[-0.050755254924297,-0.068096503615379,-0.038944162428379],[0.039109993726015,-0.10716516524553,-0.10768509656191],[0.092164054512978,-0.024789284914732,-0.13778752088547]],[[-0.021710770204663,-0.02418945170939,-0.025119652971625],[-0.028007637709379,0.11699420213699,-0.024846699088812],[-0.024286242201924,0.058105815201998,0.11932118237019]],[[0.021406000480056,0.10485501587391,-0.012456763535738],[-0.0054321414791048,-0.049100577831268,-0.053475812077522],[-0.031620811671019,0.045334033668041,0.0045054322108626]],[[-0.013105757534504,0.099176958203316,0.028548881411552],[-0.090312786400318,0.096425130963326,0.042537592351437],[0.039117634296417,0.018688408657908,0.020455369725823]],[[-0.049636524170637,-0.095128297805786,0.060549821704626],[-0.044889628887177,0.13324202597141,0.071799859404564],[-0.024125874042511,0.081524915993214,-0.11487494409084]],[[0.041643165051937,0.14168539643288,-0.026056207716465],[0.11569213867188,-0.11601164191961,-0.10992491990328],[-0.052080202847719,-0.21105696260929,-0.16522124409676]],[[-0.067462310194969,0.011580801568925,0.028690621256828],[0.0093315886333585,-0.035479635000229,0.033659722656012],[0.065953262150288,-0.024069126695395,0.012071878649294]],[[-0.22390347719193,-0.1967755407095,-0.16199189424515],[-0.1665418446064,0.22657153010368,0.15619017183781],[0.018561817705631,0.0271329395473,-0.12038183957338]],[[0.24373170733452,0.12121936678886,0.01614385843277],[0.10539771616459,0.048107925802469,-0.02677758410573],[0.020663445815444,-2.4257569748443e-06,-0.20017449557781]],[[0.12435914576054,0.061081789433956,0.03523763641715],[0.046582546085119,0.027787588536739,-0.1346582621336],[0.026872513815761,-0.085046403110027,-0.15256309509277]],[[0.084091834723949,-0.2113831192255,-0.10604725778103],[0.080379031598568,0.029883133247495,-0.052767507731915],[0.0055922521278262,-0.010656854137778,-0.074774257838726]],[[-0.061240073293447,-0.0314731746912,0.064749777317047],[0.022032927721739,-0.050087884068489,-0.065863840281963],[0.048206657171249,-0.057812999933958,-0.042166627943516]],[[-0.27212050557137,-0.24863986670971,-0.24403713643551],[-0.12262031435966,0.059564404189587,0.20120792090893],[-0.045469615608454,0.03860767558217,0.11965399980545]],[[0.042393922805786,-0.039486326277256,-0.084965728223324],[0.016102375462651,-0.03812912851572,-0.039775811135769],[0.021255595609546,0.062917955219746,-0.020187638700008]],[[-0.0052791023626924,0.041455503553152,0.018761085346341],[-0.044935870915651,-0.037699643522501,0.10269426554441],[0.0030408385209739,0.011749315075576,-0.043834619224072]],[[-0.019247077405453,0.05622585490346,-0.12038870155811],[0.00016896567831282,0.057036057114601,-0.076633788645267],[0.017531787976623,0.022406511008739,-0.12191254645586]],[[0.11038657277822,-0.25879207253456,-0.069542855024338],[-0.043467987328768,0.019511772319674,0.0083316732198],[0.084314242005348,0.024041272699833,0.067168191075325]],[[-0.072549976408482,0.0107934307307,-0.027185717597604],[-0.076254777610302,0.038789134472609,0.11430106312037],[-0.0045231627300382,-0.012553559616208,0.045952379703522]],[[-0.19288116693497,-0.17476430535316,0.025639457628131],[-0.080731987953186,-0.011433023028076,0.013441746123135],[-0.091219499707222,-0.073300302028656,-0.082644499838352]],[[0.03413337469101,0.0796854570508,0.073064096271992],[-0.049467690289021,0.035166945308447,0.096628271043301],[-0.0095162903890014,0.0044642724096775,0.023209178820252]],[[-0.084382385015488,0.013002519495785,-0.029110075905919],[0.0085240732878447,-0.093418434262276,-0.00030897685792297],[0.039122108370066,0.082236714661121,0.15073372423649]],[[-0.010341388173401,0.0087843099609017,-0.042351651936769],[0.076183579862118,0.25231629610062,0.067073352634907],[0.051240488886833,-0.096206471323967,0.02743379957974]],[[0.08038005977869,0.05429957062006,-0.061597589403391],[0.16947685182095,-0.15490083396435,0.0088078612461686],[-0.071802631020546,-0.030324073508382,0.050439994782209]],[[-0.0084575992077589,-0.00047434700536542,0.039910227060318],[0.0067169717513025,-0.009376173838973,-0.02416412346065],[-0.034985739737749,0.020064000040293,0.083589024841785]],[[-0.014782102778554,-0.13582402467728,-0.063861556351185],[-0.11977326124907,-0.24116444587708,0.15252748131752],[-0.0088291438296437,0.11794446408749,0.083200603723526]],[[0.0065568895079195,0.10825238376856,-0.0042499089613557],[-0.14027743041515,-0.19321788847446,-0.057557221502066],[-0.082910925149918,0.068987712264061,0.036111071705818]],[[-0.10983414202929,-0.07199489325285,-0.025514153763652],[0.056230708956718,0.11634808778763,0.070469819009304],[-0.016751447692513,0.027232443913817,0.11014553159475]],[[-0.064617797732353,0.089971773326397,-0.10489690303802],[-0.016039462760091,0.10267894715071,-0.010033925995231],[-0.027855914086103,-0.036270573735237,0.11968150734901]],[[-0.036571208387613,-0.13367411494255,-0.095968075096607],[-0.15981012582779,-0.1033945903182,0.013989639468491],[-0.13192680478096,-0.0057093212381005,-0.15181958675385]],[[-0.1686284840107,-0.043298255652189,0.080982066690922],[-0.17700047791004,0.0476592220366,-0.037827797234058],[-0.12808232009411,0.078764319419861,0.036213539540768]],[[-0.15086475014687,-0.087313935160637,0.038363426923752],[-0.060237713158131,0.092607825994492,0.14598721265793],[-0.057792127132416,-0.059468824416399,-0.12163812667131]],[[-0.046153489500284,0.042952347546816,-0.084328062832355],[0.087311260402203,0.0065750107169151,0.049038708209991],[-0.0046772328205407,-0.019278325140476,-0.0049740192480385]],[[-0.11007548868656,-0.07903815060854,-0.00043646642006934],[0.015277575701475,-0.010561978444457,0.045997966080904],[0.028180440887809,0.034257236868143,0.0072591444477439]],[[-0.033575486391783,-0.026743732392788,0.12348961830139],[0.017694938927889,-0.019901951774955,0.046834353357553],[0.01883789896965,0.005427441559732,0.092908978462219]],[[-0.039924453943968,-0.057175822556019,-0.12706181406975],[0.038407322019339,0.064537420868874,-0.13497696816921],[0.0079820808023214,-0.0081202294677496,-0.016611944884062]],[[-0.082302421331406,-0.028031677007675,-0.036185700446367],[-0.050576142966747,-0.034750983119011,0.16040775179863],[0.00037782656727359,0.12897233664989,-0.036692082881927]],[[0.15207104384899,0.059671528637409,0.016089297831059],[0.039247151464224,0.013833254575729,-0.1435222774744],[-0.018885895609856,-0.08147718757391,0.033908318728209]],[[0.11014481633902,0.07267102599144,0.031217187643051],[-0.10486617684364,0.015645496547222,-0.16881692409515],[-0.0042914454825222,-0.057451892644167,0.01434704195708]],[[0.0034148765262216,0.030811667442322,-0.0052554155699909],[-0.020911103114486,0.080917298793793,-0.068585246801376],[-0.054712697863579,-0.1066185310483,0.091071411967278]],[[-0.023506777361035,-0.0078078210353851,-0.039577286690474],[-0.14196778833866,0.076484851539135,-0.051922298967838],[-0.02958576194942,0.051430024206638,0.051548417657614]],[[0.038601081818342,-0.0047722146846354,0.045837178826332],[-0.006909757386893,-0.050341349095106,-0.12095295637846],[0.00021568273950834,-0.0013039571931586,-0.03677261993289]],[[-0.059547733515501,-0.22396758198738,-0.024561084806919],[-0.071091562509537,0.063111804425716,-0.025140410289168],[-0.046520099043846,-0.04697835072875,0.0139933032915]],[[-0.053966086357832,-0.01180964242667,-0.0054159071296453],[-0.052972540259361,-0.14303497970104,-0.053065553307533],[0.083669759333134,0.0050606243312359,-0.024938823655248]],[[-0.1229667365551,-0.071052886545658,-0.039726655930281],[-0.072401292622089,0.1412644982338,0.12524497509003],[-0.066238202154636,0.10090252012014,0.023507218807936]],[[-0.060138788074255,0.078950203955173,0.071355894207954],[-0.048110254108906,-0.027375567704439,-0.026165392249823],[-0.038472943007946,-0.096452347934246,-0.068542532622814]],[[0.017773829400539,-0.027983913198113,-0.014427194371819],[0.030162075534463,0.10877112299204,0.031333424150944],[0.025251485407352,-0.027407482266426,0.044026028364897]],[[-0.030513074249029,0.099620409309864,-0.066232658922672],[0.024681847542524,-0.083372257649899,-0.0074415937997401],[0.033179327845573,0.02940246462822,0.026689682155848]],[[-0.06266076862812,0.098737813532352,0.0029600781854242],[-0.051376774907112,-0.10199148207903,-0.11624312400818],[-0.020314889028668,0.13362294435501,0.10767539590597]],[[0.3151518702507,0.12735436856747,0.06953901052475],[0.17814315855503,0.11147928982973,0.02214078605175],[0.10424573719501,-0.0085455169901252,-0.1484430283308]],[[0.062522552907467,0.10756171494722,0.21976679563522],[-0.12685716152191,0.0072059282101691,0.10517802834511],[-0.1947784870863,-0.019656825810671,0.01256747264415]],[[-0.081683345139027,-0.026554718613625,0.014148937538266],[-0.051290657371283,0.040013294667006,0.11803434044123],[0.052802454680204,0.035902731120586,0.066358759999275]],[[-0.082119949162006,-0.17655411362648,-0.038346160203218],[-0.014608766883612,0.20339435338974,0.032987397164106],[0.017544334754348,-0.0069862301461399,-0.069323271512985]],[[0.03731657192111,0.014773664996028,-0.013010839931667],[-0.1335951089859,-0.17961300909519,-0.22083996236324],[-0.023508131504059,-0.03605617210269,-0.076477527618408]],[[-0.019453313201666,0.011621210724115,-0.058797046542168],[0.064631156623363,0.025659289211035,-0.046304129064083],[0.016501192003489,-0.052039861679077,-0.072809860110283]],[[0.077393218874931,0.06310947984457,0.017847035080194],[0.10268668830395,-0.023631777614355,-0.08022478967905],[0.024699851870537,0.029249232262373,-0.077075153589249]],[[-0.18805770576,-0.20481152832508,-0.0069415625184774],[-0.20098672807217,-0.14699617028236,0.13961619138718],[0.027384001761675,0.081513844430447,-0.081497430801392]],[[-0.13886742293835,-0.09371691942215,-0.072499603033066],[-0.13846488296986,0.0035908576101065,-0.034213200211525],[-0.017109675332904,0.056048445403576,0.020801685750484]],[[0.033529914915562,-0.19679461419582,-0.0029229130595922],[-0.14914618432522,0.027580445632339,-0.058117143809795],[-0.065392412245274,-0.084347188472748,-0.091421559453011]],[[-0.011457561515272,0.00047300511505455,0.044594347476959],[-0.054549794644117,-0.070010751485825,0.088365100324154],[-0.094012998044491,-0.0090368967503309,0.033981140702963]]],[[[0.11084047704935,0.028591802343726,0.10138209909201],[-0.01922408118844,-0.030533760786057,-0.010643679648638],[0.012249764986336,-0.034469954669476,-0.0098059605807066]],[[-0.062413245439529,-0.010612860321999,-0.015745246782899],[0.024723140522838,-0.028302576392889,-0.023045672103763],[-0.0115184513852,0.029411753639579,0.092962920665741]],[[0.090580120682716,-0.015716360881925,-0.053998865187168],[0.038993656635284,0.0015412514330819,-0.066329777240753],[-0.027913514524698,-0.0097040645778179,0.072602540254593]],[[-0.15463601052761,-0.0081667490303516,0.018638564273715],[0.096595019102097,-0.0099823633208871,0.01639424264431],[0.058334421366453,-0.063339464366436,-0.0068389740772545]],[[0.0049472940154374,-0.044492527842522,-0.030593445524573],[-0.016169691458344,0.011778444051743,0.021782442927361],[0.070856377482414,0.025162559002638,0.0003445201436989]],[[-0.019492760300636,-0.044956132769585,-0.11541827023029],[-0.017172893509269,0.032846268266439,-0.11840139329433],[0.076497845351696,-0.09026475250721,0.0048974058590829]],[[-0.0043506026268005,0.0069429925642908,0.020888831466436],[0.039205726236105,-0.018031340092421,-0.016173386946321],[0.060771580785513,-0.0049246572889388,0.0047152945771813]],[[0.064771570265293,-0.031241569668055,-0.099857345223427],[0.035322032868862,0.032442651689053,0.050518952310085],[-0.023064848035574,0.0073047513142228,0.076741322875023]],[[-0.053640581667423,0.034125670790672,0.10645492374897],[-0.055680174380541,0.049529150128365,0.041677042841911],[-0.043923579156399,-0.035121478140354,-0.057952951639891]],[[-0.00093514035688713,0.13114611804485,0.071275465190411],[0.0031508337706327,-0.098555587232113,-0.084920786321163],[0.030016774311662,-0.02710728533566,-0.022220455110073]],[[0.005791480652988,-0.0013622618280351,0.088179193437099],[-0.069216139614582,-0.026833629235625,-0.036556553095579],[-0.016512054949999,0.042418777942657,-0.068065881729126]],[[0.0094545045867562,-0.017795760184526,-0.010163629427552],[0.0008883333648555,-0.082993842661381,0.04392696544528],[0.0082621723413467,-0.051916223019361,-0.0218875259161]],[[0.0058059394359589,-0.091229610145092,-0.06592570245266],[0.047462567687035,0.13728898763657,0.061962883919477],[0.0049782115966082,-0.06430908292532,-0.05375349521637]],[[0.0078753428533673,-0.022927656769753,0.032307550311089],[0.061677921563387,0.008822288364172,0.032323468476534],[0.037480290979147,0.042008545249701,-0.012568278238177]],[[0.094878777861595,0.10929401963949,0.046881299465895],[0.059016741812229,-0.064753293991089,-0.014789702370763],[-0.097431369125843,-0.046758107841015,-0.19145956635475]],[[-0.0067160637117922,0.010682239197195,-0.099657334387302],[0.0079351458698511,-0.069610089063644,-0.0098785841837525],[-0.066290989518166,-0.016268698498607,0.075366578996181]],[[-0.025151021778584,0.011073014698923,-0.02961315587163],[0.088072292506695,0.050622470676899,-0.025847075507045],[-0.024078562855721,-0.010624415241182,0.020582102239132]],[[-0.055770799517632,-0.058605261147022,-0.1017986908555],[0.047284867614508,-0.031972199678421,-0.042112670838833],[0.086740672588348,0.036267567425966,0.07732217758894]],[[0.017742581665516,0.049184706062078,0.06535754352808],[-0.058394867926836,-0.13746984302998,-0.023010114207864],[-0.0071887695230544,0.011500598862767,0.033140424638987]],[[-0.0095815202221274,-0.036885067820549,0.050309520214796],[0.021628370508552,0.036701574921608,0.040649365633726],[-0.007000467274338,-0.0053751142695546,0.047801733016968]],[[-0.0041020982898772,0.05871295183897,-0.026881027966738],[0.062464598566294,-0.012884206138551,0.0098654292523861],[-0.018077209591866,0.030360545963049,0.02453282289207]],[[0.075864486396313,-0.056503526866436,-0.0050108744762838],[-0.031734582036734,0.033021699637175,0.00090549577726051],[0.03196407854557,-0.028878422454,0.070172436535358]],[[-0.0037637541536242,-0.0049204947426915,-0.051858980208635],[0.016119662672281,-0.046132523566484,0.033928170800209],[0.037208337336779,0.029001588001847,-0.00096177880186588]],[[0.022307837381959,-0.032311696559191,0.012430244125426],[-0.027944752946496,0.06398818641901,-0.013222409412265],[-0.034356568008661,-0.078273855149746,-0.052594695240259]],[[0.028856612741947,0.03155281022191,0.010376720689237],[-0.014370475895703,-0.00022223919222597,-0.014118082821369],[0.0020652404054999,0.078608371317387,-0.021215043962002]],[[-0.027573902159929,0.010176746174693,-0.11347136646509],[0.0051025222055614,-0.034396879374981,-0.088073864579201],[0.05616433173418,0.0021954725962132,-0.0094215087592602]],[[-0.017340974882245,-0.086045622825623,-0.05423104390502],[-0.011551833711565,0.086453080177307,0.039795208722353],[0.053582578897476,-0.02283189445734,-0.014968330040574]],[[-0.065051503479481,0.0029740552417934,0.004306476097554],[0.027022318914533,0.012985591776669,0.044844001531601],[-0.004604828543961,0.070630192756653,0.0064951423555613]],[[0.040068250149488,0.037335447967052,-0.02211694791913],[-0.10926318913698,-0.010298289358616,0.18118235468864],[-0.085940450429916,0.0074098454788327,0.012531544081867]],[[0.084248729050159,0.030443634837866,0.019462483003736],[0.0056173671036959,-0.052085395902395,0.010486304759979],[-0.048144400119781,-0.056175027042627,-0.0044795745052397]],[[-0.0028830198571086,-0.044988751411438,-0.028271917253733],[-0.07283379137516,0.0096215540543199,-0.091029912233353],[0.023986268788576,-0.0087051158770919,0.092017062008381]],[[0.090564176440239,0.033198721706867,0.089222893118858],[-0.15194350481033,-0.20125363767147,-0.12349193543196],[-0.073509484529495,0.040021382272243,0.13297376036644]],[[-0.017908398061991,-0.012974948622286,0.027403123676777],[-0.073607891798019,-0.018730789422989,-0.091507710516453],[0.012230514548719,0.0066823321394622,-0.074348866939545]],[[0.010254449211061,0.024184761568904,-0.015758343040943],[0.075200736522675,0.029975309967995,0.01573290117085],[0.002432462759316,-0.0067326514981687,-0.00098833406809717]],[[-0.095029108226299,-0.065955810248852,-0.032690659165382],[0.074888043105602,0.10535038262606,0.095032632350922],[0.065581530332565,-0.040972806513309,-0.085404753684998]],[[0.0092473737895489,-0.051539283245802,-0.083743363618851],[-0.011642210185528,0.14590141177177,0.037745784968138],[-0.053457837551832,-0.077419213950634,0.008295183070004]],[[-0.027023358270526,-0.01958685554564,0.031430769711733],[0.01947595924139,0.0070996391586959,0.079779915511608],[0.088583000004292,-0.017339751124382,0.033730879426003]],[[0.04858423769474,0.038008712232113,-0.023027412593365],[-0.036077830940485,-0.011769122444093,-0.045273933559656],[0.076105497777462,0.073905400931835,0.02702178992331]],[[0.023276165127754,0.054376572370529,0.057496018707752],[0.020938895642757,0.015186649747193,-0.038364578038454],[-0.042036179453135,-0.016950884833932,0.016051683574915]],[[-0.034149076789618,-0.069274589419365,-0.039773266762495],[0.021628133952618,-0.0045238872990012,0.060099061578512],[0.0056714033707976,-0.022864049300551,-0.0066550681367517]],[[0.019269097596407,-0.0066188587807119,-0.044834893196821],[-0.051946375519037,-0.013494216836989,-0.029228428378701],[-0.066873393952847,0.060196001082659,0.015836741775274]],[[-0.0051324996165931,-0.088276386260986,-0.067301481962204],[-0.01394856441766,0.12438967078924,0.072542808949947],[0.0164680685848,-0.068800657987595,0.043806068599224]],[[0.055242571979761,0.010224846191704,0.0043684709817171],[-0.14391908049583,0.013235485181212,0.027257710695267],[-0.056574560701847,0.017806805670261,0.035480003803968]],[[0.073270618915558,0.0084730004891753,0.020471699535847],[0.07869166135788,0.063274696469307,-0.038416910916567],[-0.039876211434603,-0.1084220930934,-0.073422595858574]],[[-0.031930886209011,-0.029184069484472,-0.15548567473888],[0.039136230945587,0.059654716402292,-0.033829461783171],[0.022177221253514,-0.016899744048715,-0.041747141629457]],[[-0.014806130900979,0.04916574805975,-0.01835803873837],[0.023119904100895,-0.054203875362873,0.03246721252799],[-0.028439540416002,-0.055613294243813,0.047453410923481]],[[0.0068653891794384,-0.017074389383197,-0.10141545534134],[0.072995290160179,0.045782387256622,0.062608458101749],[0.17410281300545,-0.060997106134892,-0.026901727542281]],[[-0.020716197788715,-0.06510766595602,-0.023839337751269],[0.058893531560898,0.001075676176697,0.009591493755579],[0.0072536375373602,0.072302147746086,-0.044015649706125]],[[-0.066373161971569,-0.028069905936718,0.023777106776834],[0.0068505615927279,-0.0017970952903852,-0.062105361372232],[0.085189469158649,0.079455927014351,0.023098886013031]],[[0.1008443236351,0.026700040325522,-0.011841188184917],[0.080759957432747,0.015138068236411,-0.030478399246931],[-0.019241165369749,-0.055888708680868,0.047379579395056]],[[-0.034734737128019,-0.025394082069397,0.04458524286747],[-0.023121180012822,-0.081869632005692,-0.10406312346458],[-0.069083541631699,-0.010557096451521,-0.026029895991087]],[[-0.0051967492327094,0.058438450098038,0.022201035171747],[0.015524620190263,-0.055539563298225,-0.032234217971563],[-0.026772476732731,0.022473344579339,0.024837112054229]],[[0.07708914577961,-0.033745191991329,-0.024420285597444],[-0.042597949504852,0.067629434168339,0.027396580204368],[0.067172728478909,0.056765928864479,-0.0096902074292302]],[[0.061153415590525,-0.0012482868041843,-0.012268323451281],[0.0079731475561857,-0.015465993434191,0.081676304340363],[-0.058535493910313,0.02423639036715,-0.016014000400901]],[[-0.083457417786121,0.028406703844666,-0.068018101155758],[-0.0238246191293,0.0027165592182428,0.0043227281421423],[-0.00058392307255417,-0.009987928904593,-0.011078865267336]],[[-0.030079741030931,0.0021143858321011,-0.040637008845806],[0.036467261612415,0.050004951655865,-0.0055714580230415],[0.0012890773359686,0.027215858921409,0.087433032691479]],[[-0.019551353529096,-0.014282803982496,0.016206383705139],[-0.070105902850628,0.0034247369039804,-0.04201776906848],[0.051436249166727,-0.02081504277885,-0.013866614550352]],[[-0.0010816981084645,0.019742833450437,-0.0050263102166355],[-0.016494994983077,-0.05780852586031,-0.096157558262348],[0.010430294089019,-0.023001225665212,-0.052272133529186]],[[0.072072461247444,0.0019027037778869,0.081900097429752],[-0.012845505960286,0.061581928282976,-0.038484089076519],[0.022522257640958,-0.059331975877285,0.023932905867696]],[[0.018670877441764,-0.030972624197602,0.027162671089172],[-0.00095517834415659,0.045436814427376,-0.013339932076633],[0.0095021203160286,-0.0011818673228845,-0.044686675071716]],[[-0.020845018327236,-0.0069037205539644,-0.042158894240856],[0.044480986893177,-0.048354867845774,0.085770837962627],[0.080898270010948,-0.068613663315773,-0.061607282608747]],[[0.0025081348139793,0.071753926575184,-0.071860782802105],[0.022281017154455,0.033347308635712,-0.079672455787659],[0.041438650339842,0.0061684451065958,-0.084078721702099]],[[0.063778109848499,-0.036729890853167,0.047647036612034],[0.025744134560227,0.019999047741294,0.042160205543041],[0.050463359802961,-0.032181199640036,0.058068491518497]],[[0.040398132055998,-0.012004184536636,-0.044782053679228],[0.040753837674856,-0.062507562339306,0.067681103944778],[0.015353939495981,0.023212322965264,-0.009138529188931]]],[[[-0.037918698042631,0.067545227706432,-0.0032663373276591],[-0.02015825919807,-0.062257904559374,0.033583343029022],[-0.039336368441582,-0.069686219096184,0.017898336052895]],[[-0.076991267502308,0.0095396274700761,-0.029979525133967],[0.023929767310619,0.0036445995792747,0.006099502556026],[0.011382619850338,-0.020071534439921,0.0019773181993514]],[[-0.065952852368355,-0.039359211921692,0.059841930866241],[0.0043325140140951,-0.0042765312828124,0.0014561074785888],[-0.017949027940631,0.021522991359234,0.0098510570824146]],[[0.033195186406374,0.02899513207376,0.01509072072804],[-0.024718593806028,0.028063774108887,0.039329320192337],[-0.059008400887251,0.055091518908739,0.043062049895525]],[[-0.0046579921618104,0.039500076323748,-0.066810011863708],[0.041824582964182,-0.028940679505467,0.031368318945169],[-0.080834232270718,0.00567063735798,1.198167228722e-05]],[[-0.048256285488605,-0.10864274948835,-0.0016626830911264],[-0.15876041352749,0.025779353454709,0.0021634201984853],[-0.019525503739715,0.0718038007617,0.094562597572803]],[[0.013103275559843,-0.036026358604431,-0.027514912188053],[0.012507536448538,-0.043564032763243,-0.038793947547674],[-0.022802792489529,-0.0031201899982989,0.0061782589182258]],[[0.043815184384584,-0.017932876944542,0.046780992299318],[-0.097631558775902,0.008083070628345,0.02772980183363],[0.040826126933098,0.0039849737659097,-0.023296060040593]],[[0.013773269951344,0.039490383118391,-0.021038345992565],[-0.022547418251634,-0.066164918243885,0.11722695827484],[0.021917372941971,0.013749680481851,0.017017349600792]],[[0.016318771988153,-0.043513417243958,-0.0062184049747884],[-0.00076635065488517,-0.024172289296985,-0.029516585171223],[-0.058319639414549,0.080633364617825,-0.09784734249115]],[[0.0084647852927446,0.030259205028415,0.087556391954422],[-0.038803026080132,0.077005840837955,-0.033636622130871],[0.004563482478261,-0.050742514431477,0.063118807971478]],[[0.039424806833267,-0.018699711188674,-0.0076525900512934],[-0.056376516819,0.00079566065687686,0.017559733241796],[-0.023887377232313,0.0026320468168706,-0.056799277663231]],[[-0.0069413711316884,0.0072464225813746,0.021949591115117],[-0.0447594858706,-0.023936808109283,-0.044988494366407],[-0.0039462982676923,0.0023422834929079,0.021963246166706]],[[0.0012046158080921,-0.013792673125863,0.064238861203194],[0.012517312541604,0.0307776350528,-0.064236171543598],[0.037082120776176,-0.018239172175527,0.08557116985321]],[[-0.016435105353594,0.030632086098194,-0.064968802034855],[-0.030958360061049,0.028225550428033,-0.010481016710401],[0.02157867886126,0.023037232458591,0.078514143824577]],[[-0.066263377666473,-0.03260875493288,0.0069587435573339],[-0.024664122611284,-0.0080536995083094,0.095630750060081],[-0.017467971891165,-0.045209877192974,0.071344122290611]],[[0.036606904119253,0.037132784724236,-0.033266194164753],[0.040089461952448,-0.015563697554171,0.014902100898325],[0.045320618897676,-0.013575866818428,0.017635295167565]],[[-0.002018672414124,-0.0053444756194949,0.018852790817618],[-0.00018318180809729,-0.0095984172075987,0.062404051423073],[0.038795374333858,-0.00093880615895614,-0.05807838216424]],[[0.014810120686889,-0.041401382535696,0.013249869458377],[-0.029421476647258,-0.038048308342695,0.010485797189176],[0.015156607143581,-0.006824039388448,0.033311296254396]],[[-0.035415809601545,0.023954691365361,0.02373212389648],[0.014811841771007,-0.039051029831171,-0.012888985686004],[-0.019565157592297,-0.012442441657186,-0.041784774512053]],[[0.02802818454802,0.0022262341808528,0.0035812144633383],[0.030465809628367,0.031324457377195,-0.050876352936029],[-0.04674931243062,0.00022825291671325,0.019650913774967]],[[0.031872399151325,0.01837495341897,0.018070543184876],[0.0023178607225418,-0.009259051643312,0.04887118563056],[0.016692804172635,-0.06415943801403,-0.027344869449735]],[[-0.016505187377334,0.0046649789437652,-0.0040868585929275],[0.023670334368944,-0.0089048584923148,0.018715154379606],[0.04599054902792,-0.040070068091154,-0.023748403415084]],[[0.021658034995198,-0.027795877307653,0.018369825556874],[0.014132607728243,0.030048837885261,-0.063248582184315],[-0.0031102492939681,0.020264701917768,0.0048990990035236]],[[0.010927155613899,0.0084114614874125,0.070727810263634],[0.016706800088286,0.035598132759333,-0.0044378442689776],[0.058541864156723,0.024722388014197,-0.055114768445492]],[[0.039153799414635,0.018811171874404,-0.062686048448086],[-0.067509412765503,-0.011847365647554,-0.014096401631832],[-0.038166612386703,-0.0044700955040753,-0.0099551901221275]],[[0.035056844353676,-0.020714478567243,0.0099899666383862],[-0.031671199947596,-0.021843308582902,-0.0171969383955],[0.043582398444414,0.0051038437522948,0.030405305325985]],[[0.04091377928853,-0.00064471992664039,-0.020384451374412],[0.048473857343197,-0.0041124247945845,-0.0034146148245782],[0.044773016124964,0.022699870169163,0.00018814249779098]],[[-0.029697515070438,-0.017273837700486,-0.036900885403156],[-0.01607059687376,-0.047242701053619,0.040386747568846],[0.0083592813462019,-0.003438790794462,-0.047649044543505]],[[-0.030324185267091,-0.038736026734114,-0.05001387745142],[-0.028100254014134,0.04317831993103,0.012329281307757],[-0.039318311959505,0.0030777549836785,0.0027481892611831]],[[0.0016342159360647,0.008533394895494,0.018332527950406],[0.018276372924447,-0.032881680876017,-0.0039565260522068],[-0.05489843711257,0.0057925432920456,0.034654095768929]],[[-0.051453493535519,0.070332705974579,-0.039625938981771],[-0.015800587832928,0.00088793766917661,0.061703059822321],[0.033002436161041,-0.0076610841788352,0.014449866488576]],[[0.011474266648293,-0.058426111936569,-0.021911012008786],[0.008625665679574,0.024675766006112,-0.037016268819571],[-0.0021917417179793,0.022473327815533,0.032020915299654]],[[-0.018375216051936,0.01505574118346,-0.0012223863741383],[-0.061453953385353,0.020672520622611,-0.0031510752160102],[0.028600376099348,-0.010555020533502,-0.028836704790592]],[[0.014491654932499,0.045384865254164,0.0037497507873923],[0.038032751530409,0.027827810496092,0.01679321937263],[0.024996384978294,-0.0088584870100021,0.0042427279986441]],[[-0.00054109503980726,-0.018603444099426,0.010116499848664],[-0.033574093133211,0.04811155423522,-0.077096343040466],[-0.11125182360411,-0.062944196164608,0.034217763692141]],[[-0.033635016530752,-0.0043994029983878,-0.024686789140105],[0.0021616984158754,0.012135644443333,0.051950342953205],[-0.02330919355154,0.033893320709467,0.02668472006917]],[[0.00056967238197103,0.023602429777384,-0.031479220837355],[0.0078809699043632,0.027126403525472,0.028547389432788],[-0.039401412010193,0.089237436652184,-0.022589894011617]],[[-0.00093795306747779,-0.072407007217407,-0.014259563758969],[0.043700031936169,-0.022720983251929,-0.087479121983051],[-0.064927540719509,-0.018908830359578,-0.022817920893431]],[[0.016982575878501,0.032944299280643,0.0059963497333229],[-0.030260229483247,-0.014103256165981,0.0019040257902816],[0.0069327326491475,-0.019660916179419,0.07371199131012]],[[-0.029246736317873,-0.042690757662058,-0.062477551400661],[0.016682513058186,-0.012697443366051,0.071924790740013],[-0.032350901514292,0.027545098215342,-0.041999779641628]],[[-0.080758720636368,0.0077216872014105,-0.0093988124281168],[-0.027626117691398,0.07731868326664,-0.046906542032957],[0.02193545922637,-0.0074522746726871,0.014871606603265]],[[-0.0064983228221536,0.021722957491875,-0.029228452593088],[0.023161996155977,-0.0067721884697676,0.05227068439126],[0.014915060251951,0.078395940363407,0.013908358290792]],[[-0.053642604500055,-0.053393103182316,0.025108968839049],[-0.022323191165924,0.0020696166902781,-0.0146140800789],[0.0097652189433575,-0.037526164203882,-0.058498281985521]],[[-0.057447295635939,0.013037331402302,0.010371024720371],[0.038470607250929,0.027990749105811,0.094418041408062],[0.012615911662579,0.032863352447748,-0.029349798336625]],[[0.020902736112475,0.051973804831505,-0.085873953998089],[0.061627574265003,0.013096833601594,0.0040775146335363],[0.010118016041815,0.0067719328217208,-0.0028126479592174]],[[-0.020177537575364,0.009313615038991,-0.023048434406519],[0.050846595317125,-0.024802107363939,0.026953706517816],[-0.072004839777946,-0.026556150987744,-0.037892073392868]],[[0.017243703827262,-0.050395846366882,0.0089439060539007],[0.020436452701688,0.026652544736862,-0.0027166926302016],[0.030730431899428,0.025749586522579,-0.016483997926116]],[[-0.011089303530753,-0.012797471135855,-0.076033890247345],[-0.056501697748899,-0.04482713714242,-0.020140970125794],[-0.022063713520765,-0.061759985983372,0.026178698986769]],[[0.030769873410463,-0.017224470153451,-0.0072220996953547],[0.037957917898893,-0.020389413461089,0.022215891629457],[-0.019690237939358,-0.05525766313076,-0.039722677320242]],[[-0.011445078998804,-0.0092119164764881,-0.0069123678840697],[0.0048993374221027,-0.01693251542747,0.0067099551670253],[0.029288955032825,0.016400914639235,0.01193093881011]],[[0.027347587049007,0.050213363021612,0.035132803022861],[0.013298547826707,-0.059053741395473,0.0010655181249604],[0.036505222320557,-0.027463462203741,-0.10126601159573]],[[-0.0032846666872501,0.066821373999119,-0.019387222826481],[-0.001382885267958,0.027242176234722,-0.0088381571695209],[0.05512372776866,-0.030044654384255,-0.012063601054251]],[[0.0018074662657455,0.071507669985294,0.077530674636364],[0.077478505671024,0.0097255669534206,-0.0033781558740884],[0.0066183949820697,0.043630741536617,-0.010413257405162]],[[-0.027724709361792,0.022159997373819,-0.016906650736928],[-0.03317741677165,-0.0060416324995458,-0.00079981057206169],[0.0089472057297826,-0.013237583450973,-0.043368328362703]],[[0.011870792135596,0.023439407348633,-0.018972208723426],[-0.024403274059296,-0.002602830529213,-0.046566586941481],[-0.012081224471331,0.039337616413832,-0.011672889813781]],[[-0.022121261805296,-0.0027426660526544,0.0001870654814411],[-0.017638627439737,0.039980821311474,0.030538925901055],[-0.049138713628054,0.0066119339317083,-0.018672458827496]],[[0.0068547721020877,-0.014500926248729,-0.027236254885793],[-0.0018753196345642,0.038190644234419,-0.023721896111965],[-0.012244436889887,0.011889387853444,0.066116668283939]],[[-0.016838368028402,0.023579992353916,-0.026475185528398],[-0.016216427087784,0.016019383445382,-0.0072493255138397],[0.010659677907825,0.0031442760955542,0.029454382136464]],[[0.0170892868191,0.0096171228215098,-0.0042832200415432],[0.024369686841965,0.031533446162939,-0.015849472954869],[-0.014260699041188,-0.011717935092747,0.0098458249121904]],[[0.046089626848698,0.049832731485367,0.049744039773941],[0.033022671937943,-0.025290105491877,-0.04189283400774],[0.020658114925027,-0.038559891283512,-0.0079682432115078]],[[-0.044632911682129,-0.021894585341215,0.0017942500999197],[-0.095166243612766,0.024398170411587,-0.072908863425255],[0.0082683004438877,0.038767833262682,0.050009317696095]],[[0.056169345974922,0.013948016799986,-0.0010900660417974],[0.012804741971195,-0.021224966272712,0.0019765202887356],[-0.023894589394331,-0.02205565571785,0.030940212309361]],[[-0.059893645346165,0.051210511475801,-0.028003545477986],[-0.027992691844702,0.00016386032802984,0.033629465848207],[-0.047594379633665,-0.073086202144623,0.017931338399649]]],[[[-0.065013818442822,-0.083083309233189,-0.034585911780596],[0.022448347881436,0.0016471470007673,0.096527308225632],[0.0039750775322318,-0.019487598910928,-0.052598115056753]],[[0.019284777343273,0.058044124394655,0.029027353972197],[-0.01487276237458,-0.0077839409932494,-0.023412937298417],[-0.046753454953432,-0.023971773684025,0.0067884642630816]],[[-0.0050994786433876,-0.040259681642056,-0.043700069189072],[-0.00011746012751246,-0.00240383669734,0.00040797280962579],[0.011145649477839,-0.020969972014427,-0.062083713710308]],[[0.00021491291408893,-0.011322695761919,-0.040428403764963],[-0.058000937104225,-0.012411635369062,0.047402925789356],[0.032128218561411,0.043458759784698,-0.03217525780201]],[[0.028467115014791,0.026169251650572,0.046450614929199],[0.039503198117018,-0.0085657788440585,-0.057833351194859],[-0.0076671540737152,0.020721938461065,0.00061870511854067]],[[-0.030602149665356,0.034237768501043,-0.03165502846241],[-0.034762363880873,0.063334338366985,-0.16733957827091],[0.066033266484737,0.072521701455116,-0.10195460170507]],[[-0.012034119106829,-0.015003421343863,0.0053192884661257],[0.015503887087107,0.017376562580466,0.0065047321841121],[-0.043782576918602,-0.042119864374399,-0.028095822781324]],[[-0.005691874306649,0.035256091505289,0.024448398500681],[-0.066625632345676,-0.24154847860336,-0.1021361425519],[-0.020315360277891,0.042891677469015,0.012444661930203]],[[-0.014410687610507,0.056990221142769,0.063666716217995],[0.042184449732304,-0.001672581769526,0.0064013823866844],[0.060973327606916,-0.011025724001229,-0.063597172498703]],[[0.039104502648115,0.022634515538812,0.025858577340841],[-0.020648047327995,0.016508378088474,-0.031306404620409],[-0.081728801131248,0.014909359626472,-0.022508917376399]],[[0.014642800204456,-0.011236416175961,-0.026504270732403],[0.019415874034166,0.038575887680054,0.0069687473587692],[-0.040147483348846,-0.022036770358682,-0.029062416404486]],[[0.047905389219522,-0.0060670655220747,0.010680220089853],[0.0054799020290375,-0.16667376458645,0.014138912782073],[0.0079363528639078,-0.14776413142681,0.044638026505709]],[[-0.0068864547647536,0.058003529906273,0.034042775630951],[0.0087404530495405,-0.14904198050499,0.096484683454037],[0.064569503068924,0.053598035126925,-0.1891460865736]],[[-0.07267989218235,0.060559287667274,-0.062571935355663],[-0.014529748819768,0.18197993934155,-0.026620682328939],[0.07532063126564,0.13744308054447,0.060951963067055]],[[0.0055202064104378,-0.0096074799075723,-0.062318168580532],[0.035678967833519,0.015677059069276,0.014250135980546],[-0.010999022051692,0.040922921150923,0.02369824424386]],[[0.0093713812530041,-0.027233671396971,-0.031998995691538],[0.010430778376758,0.014786029234529,-0.070311687886715],[0.0011031429748982,0.05138149484992,0.047211971133947]],[[-0.0055468492209911,-0.007229539565742,-0.015693014487624],[-0.0068024937063456,-0.010088405571878,-0.074611648917198],[-0.011559071019292,-0.022259727120399,-0.048361010849476]],[[0.0010134589392692,0.011692872270942,0.032068736851215],[-0.027428949251771,-0.046056412160397,-0.03588180616498],[0.025279926136136,0.0018087626667693,-0.014287889935076]],[[-0.030871020630002,-0.046416498720646,0.0049897087737918],[-0.010160026140511,0.022777916863561,-0.068748757243156],[-0.061403792351484,0.023435041308403,0.0036113949026912]],[[-0.015483579598367,0.043837707489729,0.043850969523191],[0.020553296431899,-0.10422907024622,-0.010679384693503],[0.039467412978411,-0.098428726196289,-0.064895778894424]],[[0.06559307128191,0.079393625259399,0.029253512620926],[-0.011901545338333,-0.10618983954191,0.020007617771626],[-0.0060074059292674,-0.039698839187622,0.019268767908216]],[[0.040745530277491,-0.04883186519146,-0.005619952455163],[0.00088955037062988,-0.029114795848727,-0.045956172049046],[0.025388080626726,0.012801430188119,-0.010367487557232]],[[0.0092884683981538,-0.0049744723364711,0.082816764712334],[-0.03833619877696,-0.019150760024786,0.13718429207802],[-0.043009668588638,-0.13584537804127,0.011420931667089]],[[-0.034506063908339,0.0095453253015876,0.039037443697453],[-0.051367606967688,-0.040594328194857,0.017795290797949],[0.04579384624958,0.022840352728963,-0.021104175597429]],[[0.015094636939466,-0.010918909683824,-0.06023233383894],[0.0014081249246374,-0.027811661362648,-0.069633409380913],[-0.0052804416045547,0.010511734522879,0.0055050645023584]],[[0.017864797264338,-0.00034862940083258,-0.0071186143904924],[-0.031445167958736,0.013503008522093,-0.043346114456654],[0.020965119823813,0.049068693071604,0.0031032983679324]],[[0.011233198456466,0.027600159868598,0.016511667519808],[-0.040441729128361,-0.13604307174683,-0.05738153681159],[-0.011352920904756,-0.057397607713938,-0.054360337555408]],[[-0.018012931570411,-0.062411431223154,-0.020818157121539],[0.053933832794428,-0.09883813560009,-0.050959475338459],[0.10224783420563,0.13346876204014,-0.034009784460068]],[[0.023363199084997,0.015246250666678,-0.0043561360798776],[0.011968364939094,0.0015433164080605,0.029922384768724],[0.030633425340056,0.029390048235655,-0.053930968046188]],[[-0.0020427904091775,-0.07463788241148,-0.014584282413125],[0.06482121348381,-0.0050421077758074,-0.038611683994532],[-0.032070148736238,0.0058064484037459,-0.010715535841882]],[[-0.029386395588517,-0.010915346443653,-0.055276039987803],[-0.009390601888299,-0.028650240972638,-0.017664812505245],[-0.053525391966105,0.054605279117823,0.0091078076511621]],[[0.0076288068667054,0.068206496536732,-0.027544405311346],[0.0010900306515396,0.094116538763046,0.0024626126978546],[-0.0076797474175692,0.082092963159084,-0.092662908136845]],[[-0.027583545073867,-0.061472453176975,-0.019923830404878],[0.10167936235666,0.040560070425272,-0.016378458589315],[-0.030168084427714,0.031518787145615,0.031598679721355]],[[-0.020075554028153,0.0058409571647644,-0.0223632697016],[-0.03002461977303,0.00098075368441641,-0.076019942760468],[-0.12354052066803,-0.075088500976562,-0.019730042666197]],[[0.048231437802315,0.013545088469982,-0.045544765889645],[0.005984443705529,-0.15387052297592,-0.29776638746262],[0.079578451812267,-0.048529449850321,-0.14927032589912]],[[0.035198628902435,0.054320584982634,0.041779730468988],[0.015157200396061,-0.0043718279339373,0.026756670325994],[-0.034227464348078,-0.24072048068047,-0.020886737853289]],[[-0.0088266599923372,-0.019063919782639,0.033010143786669],[-0.0012915997067466,0.066706903278828,0.013640395365655],[-0.015035508200526,-0.035945687443018,0.016159916296601]],[[0.037910632789135,-0.0010250699706376,0.057701591402292],[0.031917344778776,-0.012698817998171,0.055769257247448],[-0.074918240308762,-0.051571469753981,-0.053976405411959]],[[-0.011187168769538,-0.0087413536384702,0.076267272233963],[-0.013608967885375,-0.061568181961775,0.078525505959988],[-0.053390998393297,-0.015607673674822,0.021541779860854]],[[-0.014936433173716,-0.0022090133279562,0.11968649923801],[0.0051875980570912,0.029305141419172,0.081500470638275],[-0.090351611375809,0.06867653131485,0.024154057726264]],[[-0.029155444353819,0.010571094229817,0.07184749096632],[-0.099967055022717,-0.085133589804173,-0.094456888735294],[-0.013378033414483,0.022969489917159,0.049427967518568]],[[-0.053898647427559,-0.058624558150768,-0.10005043447018],[-0.033090177923441,0.0086072590202093,0.026116831228137],[0.064587228000164,-0.051712565124035,0.009559528902173]],[[-0.037051618099213,-0.018869012594223,0.013837958686054],[-0.027781570330262,-0.028680795803666,0.090827822685242],[-0.0084758615121245,-0.14991036057472,-0.037750195711851]],[[0.0063660922460258,0.021546950563788,-0.0079622296616435],[0.016467029228806,-0.023392057046294,-0.051550049334764],[-0.059064507484436,0.090138867497444,-0.021518055349588]],[[-0.028323797509074,0.062881477177143,0.10322991013527],[-0.015881778672338,-0.033384013921022,0.0026830832939595],[-0.13814973831177,-0.043900392949581,-0.024989543482661]],[[0.0066336900927126,0.0092414459213614,-0.07075809687376],[0.046412628144026,-0.029710846021771,-0.01079991273582],[0.080576531589031,0.026954719796777,0.088313683867455]],[[0.024231730028987,0.068159058690071,-0.061373762786388],[0.025650123134255,0.01123474817723,0.0058132857084274],[0.0077395713888109,-0.065972745418549,-0.13290818035603]],[[0.0025336965918541,-0.046519953757524,0.01039086189121],[-0.02971482463181,-0.1833041459322,-0.081654153764248],[0.0017629433423281,-0.14164984226227,-0.039587922394276]],[[-0.014437399804592,-0.011436593718827,-0.055082228034735],[0.041169907897711,-0.038153126835823,0.047851547598839],[-0.0029350088443607,0.003660008776933,-0.14840438961983]],[[0.011551661416888,-0.10238003730774,0.072239726781845],[0.01295698992908,0.045921362936497,0.060093741863966],[-0.08549727499485,-0.096041604876518,0.10189125686884]],[[-0.0019779400900006,0.0055146152153611,-0.028700152412057],[0.023482179269195,-0.037610344588757,0.086468711495399],[0.079132825136185,-0.41618511080742,0.040443532168865]],[[-0.0055961017496884,-0.020945690572262,0.0083887139335275],[0.027550503611565,-0.042886298149824,0.071936182677746],[-0.019143130630255,-0.06777336448431,0.037337895482779]],[[-0.021101355552673,-0.090939231216908,0.055091787129641],[-0.032207649201155,-0.072453685104847,-0.054679680615664],[-0.048278033733368,-0.0179995726794,-0.0071719279512763]],[[0.051736354827881,-0.0062955319881439,0.17287577688694],[-0.0048623541370034,-0.018117036670446,-0.094598308205605],[0.094894096255302,0.20249919593334,0.053967379033566]],[[0.012886577285826,-0.084578983485699,-0.0051829176954925],[0.01990876160562,0.084217324852943,-0.086932919919491],[0.0022990861907601,0.021589169278741,-0.031526494771242]],[[0.0031791338697076,0.026696667075157,0.079556733369827],[0.033098679035902,-0.0070966416969895,-0.032746840268373],[0.0024517260026187,-0.025420472025871,-0.081026129424572]],[[-0.010240457952023,0.0032697503920645,-0.038042187690735],[0.041960258036852,-0.2370180785656,0.0046414444223046],[-0.027626687660813,-0.05859662592411,-0.06168195232749]],[[-0.0050427624955773,-0.016657771542668,-0.02997569181025],[0.012268011458218,0.021534696221352,0.00055037206038833],[-0.00059049139963463,-0.057458147406578,-0.090814106166363]],[[-0.059257742017508,0.027806792408228,-0.0045285522937775],[-0.029779905453324,-0.062763355672359,-0.039097905158997],[0.057464387267828,-0.040488708764315,0.047660231590271]],[[0.0022825798951089,-0.033225744962692,-0.049321912229061],[0.038896288722754,0.058103650808334,-0.058526121079922],[0.03315506502986,0.045908998697996,0.0074650542810559]],[[-0.0074718189425766,-0.036779243499041,-0.063548363745213],[0.02830171957612,-0.032272040843964,-0.10428186506033],[-0.013540837913752,-0.0028721860144287,0.042331267148256]],[[0.096038818359375,0.088870503008366,0.026453651487827],[0.023169737309217,0.10308215767145,0.0091637298464775],[-0.010089155286551,0.022848427295685,-0.067760922014713]],[[0.046375554054976,0.077741540968418,0.056812509894371],[0.001412775949575,-0.016383280977607,0.0014758332399651],[-0.00099760561715811,-0.10878413170576,-0.047957964241505]],[[-0.025483494624496,-0.0028740705456585,-0.073869876563549],[0.022040473297238,0.044162586331367,0.026111796498299],[-0.06748079508543,0.0069632856175303,0.0016449575778097]]],[[[-0.0075177731923759,-0.090609766542912,0.02513076364994],[-0.02970995940268,-0.059672601521015,0.08696661144495],[-0.035563141107559,0.025641286745667,-0.0091538578271866]],[[-0.05180199444294,-0.11096258461475,-0.027430912479758],[-0.050383560359478,-0.0049435175023973,-0.0039370404556394],[-0.056591883301735,-0.023166740313172,0.051529500633478]],[[-0.01136117707938,0.078503929078579,-0.056063678115606],[0.026847558096051,0.037435434758663,0.00083028560038656],[-0.02002240344882,0.0012766602449119,0.046546194702387]],[[-0.013373355381191,-0.020056154578924,-0.033627592027187],[-0.020402960479259,0.024892136454582,0.098461017012596],[-0.028867550194263,-0.011899943463504,0.0077764871530235]],[[-0.077320784330368,0.0026040966622531,-0.040526308119297],[-0.049626059830189,0.063840888440609,-0.042557887732983],[-0.024726124480367,-0.052961342036724,0.0073671140708029]],[[0.13545671105385,0.11477830260992,-0.012680160813034],[-0.033149387687445,0.043299578130245,-0.052275538444519],[-0.022133992984891,0.040880378335714,0.081712529063225]],[[-0.0048209205269814,-0.024955242872238,0.024973521009088],[0.025362500920892,0.028924344107509,0.001331354607828],[0.0063902516849339,0.033980816602707,0.073101349174976]],[[0.059800207614899,-0.043310482054949,0.010121919214725],[0.005628926679492,0.068732500076294,0.02472672238946],[-0.071519114077091,0.0164456050843,-0.040537431836128]],[[0.010805632919073,-0.081283316016197,-0.061767030507326],[-0.024400280788541,-0.024371171370149,0.020913193002343],[0.048381548374891,0.04349010437727,-0.063342802226543]],[[-0.050568342208862,0.015755284577608,-0.078202895820141],[0.031512197107077,-0.0037831549998373,0.011111969128251],[-0.066643081605434,0.089752234518528,-0.051525082439184]],[[-0.051009476184845,-0.11540800333023,-0.0078083663247526],[-0.026494381949306,0.05469860881567,-0.041939917951822],[-0.043633569031954,-0.042606841772795,0.0090025821700692]],[[0.019465129822493,-0.040862701833248,-0.032197188585997],[0.038769498467445,0.038330309092999,0.021589854732156],[-0.033160462975502,0.017275650054216,0.015768099576235]],[[0.013493102043867,-0.03345301002264,0.040739826858044],[-0.052303917706013,-0.0091706514358521,0.046377558261156],[-0.028360275551677,-0.061636291444302,-0.024278849363327]],[[-0.049925580620766,0.025688404217362,0.0013795676641166],[0.071368232369423,0.071253299713135,0.03023767285049],[0.020056845620275,0.030513379722834,-0.044080957770348]],[[-0.030184864997864,0.0036169837694615,0.0036981091834605],[0.026850072667003,0.024780342355371,-0.016629671677947],[0.090601623058319,-0.053950477391481,-0.039722219109535]],[[0.0015374881913885,-0.055441103875637,0.034505736082792],[0.014324531890452,-0.027893740683794,0.023483069613576],[0.066714875400066,0.024925846606493,-0.021657582372427]],[[-0.014705643057823,0.024760821834207,-0.02653550542891],[0.029236560687423,0.048187289386988,-0.012175671756268],[-0.024215713143349,-0.014868706464767,0.10070297122002]],[[-0.025650020688772,0.025378623977304,0.040210597217083],[-0.022216463461518,0.024250436574221,0.011434842832386],[-0.013646677136421,0.0060580810531974,0.062737293541431]],[[0.029142213985324,-0.041619766503572,-0.0053746118210256],[-0.060427937656641,0.001401876565069,-0.004802024923265],[0.012056381441653,0.01789940148592,0.043963883072138]],[[-0.015192034654319,-0.070245772600174,-0.032180387526751],[-0.0010534103494138,0.019438412040472,-0.046023942530155],[0.03578669205308,0.049925018101931,0.028923230245709]],[[-0.095481559634209,0.049519557505846,-0.0423414260149],[0.024023279547691,0.034031383693218,0.062865726649761],[0.040920358151197,0.0043488070368767,0.016780417412519]],[[0.07524348795414,-0.046008672565222,-0.014789706096053],[0.032177083194256,0.012740072794259,-0.062232449650764],[-0.042233366519213,0.018699141219258,-0.11747656017542]],[[-0.028612932190299,0.0030407975427806,0.031041782349348],[-0.088930957019329,0.0093298265710473,0.018226897343993],[-0.048579644411802,0.078754954040051,0.0025830725207925]],[[0.015972014516592,0.034978210926056,-0.059769604355097],[0.0013044630177319,-0.026993969455361,-0.069429643452168],[0.013834002427757,-0.11785553395748,0.027438962832093]],[[0.011435002088547,0.03963090851903,0.12059723585844],[-0.019432500004768,0.026521369814873,-0.0065856659784913],[-0.0057261097244918,0.033840343356133,0.055955927819014]],[[0.03597728908062,-0.030137784779072,-0.084138445556164],[-0.028875987976789,-0.043608766049147,-0.078084252774715],[-0.0096589922904968,-0.059210196137428,-0.0025283428840339]],[[0.11135118454695,0.074284486472607,0.0077096507884562],[0.10313601791859,0.089455559849739,-0.02053390070796],[0.007665254175663,-0.039016101509333,0.0081872660666704]],[[-0.041510790586472,-0.075726456940174,0.025098318234086],[-0.082555554807186,0.022297646850348,-0.04523741081357],[0.032194130122662,0.045996453613043,0.082931503653526]],[[0.061008982360363,0.021792493760586,-0.017937770113349],[0.039278719574213,-0.022391252219677,0.02811430208385],[-0.019414827227592,-0.042472328990698,-0.012552326545119]],[[0.0035737375728786,-0.008367451839149,0.0073897438123822],[0.0047780526801944,0.01449660398066,0.0023811568971723],[-0.0041286889463663,-0.0026685423217714,0.024707829579711]],[[-0.068001940846443,-0.065498724579811,-0.014904644340277],[0.0027778781950474,-0.038595147430897,0.014745280146599],[0.047543924301863,-0.012594523839653,-0.012274251319468]],[[-0.016391737386584,-0.03028355166316,-0.045470535755157],[0.011604581028223,-0.053072981536388,0.038121994584799],[0.015304649248719,0.069823317229748,0.046835497021675]],[[-0.060828376561403,0.028832094743848,0.018099619075656],[-0.079496473073959,0.091060921549797,0.058655820786953],[-0.026774346828461,-0.026322402060032,0.00095832388615236]],[[0.0070822727866471,0.047094728797674,-0.043063752353191],[-0.030016891658306,-0.10186947882175,-0.039803214371204],[0.06361198425293,-0.072657182812691,0.019381375983357]],[[0.013123377226293,-0.035225793719292,-0.081932127475739],[-0.062316823750734,0.023166965693235,0.059572651982307],[-0.012190164998174,-0.018394593149424,0.071646556258202]],[[0.014301430433989,0.031480073928833,0.024007901549339],[-0.040026109665632,-0.046040426939726,0.059145793318748],[0.017125517129898,0.0083134071901441,-0.096709191799164]],[[0.033779311925173,0.061771173030138,-0.04854042828083],[0.037645220756531,-0.011163216084242,-0.029991613700986],[0.032504756003618,-0.0019403133774176,-0.04161200299859]],[[0.10077827423811,0.0018801069818437,-0.15970854461193],[-0.13416311144829,-0.026306193321943,0.043509345501661],[-0.049238633364439,0.075940117239952,0.04071382433176]],[[-0.00679523171857,-0.047275610268116,0.012813006527722],[-0.078967548906803,-0.067026026546955,-0.043902192264795],[-0.023199174553156,-0.076071478426456,-0.02388458698988]],[[0.0048679076135159,0.053903490304947,-0.030809860676527],[-0.026242488995194,-0.023657703772187,-0.13349995017052],[-0.0073925391770899,-0.058306485414505,-0.015780381858349]],[[0.029554385691881,0.01691934838891,0.079109892249107],[-0.02396734058857,-0.041936662048101,0.10718858987093],[-0.08271549642086,-0.030880704522133,0.066549226641655]],[[-0.040916971862316,-0.10522278398275,-0.018344055861235],[0.050277806818485,0.027546148747206,0.021962754428387],[-0.01272951811552,0.046567060053349,0.10232660919428]],[[-0.031023997813463,-0.060280650854111,0.0038435310125351],[0.061785668134689,0.023220119997859,-0.082231990993023],[0.0062230061739683,-0.028777610510588,-0.070135913789272]],[[0.0175876673311,0.029354497790337,-0.010907073505223],[-0.021266434341669,-0.036979604512453,-0.037957161664963],[-0.071123749017715,-0.025660838931799,-0.033350970596075]],[[0.075904607772827,0.13418935239315,-0.10443233698606],[-0.0081312134861946,0.02905448526144,0.103719137609],[-0.037844356149435,0.0090367216616869,-0.0042257346212864]],[[-0.024423884227872,0.0034325395245105,0.0082672648131847],[-0.026475891470909,0.058072123676538,0.003586687380448],[0.077075742185116,0.038471769541502,0.023471519351006]],[[-0.033345278352499,-0.029013980180025,0.034382302314043],[-0.040990669280291,-0.003276270115748,-0.010471552610397],[-0.030791642144322,-0.038763947784901,-0.068264722824097]],[[-0.01765868999064,-0.06600633263588,-0.022270103916526],[-0.077184319496155,0.050646666437387,0.031694620847702],[-0.05549056455493,0.076988995075226,0.00018948581418954]],[[-0.0059402608312666,0.028949551284313,-0.048067182302475],[0.0043656518682837,0.020811727270484,0.0023320326581597],[-0.043757636100054,0.098428048193455,-0.048923268914223]],[[0.01738085411489,0.09397166967392,0.0015203057555482],[-0.0078811990097165,0.09626742452383,0.074954636394978],[0.017991002649069,0.022097526118159,-0.047271873801947]],[[0.085152842104435,-0.012091659009457,0.021064227446914],[0.045931227505207,-0.0003000530123245,0.0068279313854873],[0.031953360885382,0.015531164593995,0.030139332637191]],[[0.040041070431471,-0.0020882363896817,0.01789116859436],[0.013772031292319,-0.039408892393112,-0.050181899219751],[-0.10226223617792,-0.0066306488588452,0.047623384743929]],[[-0.0088524920865893,-0.026206819340587,-0.0081043066456914],[-0.041576784104109,-0.045666452497244,-0.0065170587040484],[0.071611173450947,-0.091786183416843,0.047423489391804]],[[-0.041650384664536,0.00027815747307613,0.12585107982159],[0.15280722081661,0.17395685613155,0.070139467716217],[0.013959777541459,0.17045238614082,-0.027062505483627]],[[-0.080124944448471,0.065403804183006,-0.0092057418078184],[-0.067949093878269,-0.041958030313253,0.014550076797605],[-0.094266086816788,-0.097393795847893,-0.0012336844811216]],[[0.012171007692814,-0.074145011603832,0.021919785067439],[0.0027361088432372,0.014834207482636,0.011161159723997],[-0.027539161965251,-0.027067832648754,-0.018317008391023]],[[0.0040963413193822,-0.020067874342203,-0.0085451919585466],[0.064835250377655,0.04575926437974,0.014472506940365],[0.002255731029436,0.035423550754786,0.044756107032299]],[[0.0473249591887,0.0055042752064764,-0.027621265500784],[-0.0092370342463255,0.0712009370327,-0.12075198441744],[-0.050459485501051,-0.080123074352741,-0.1359903216362]],[[-0.017743784934282,-0.031892713159323,-0.015996288508177],[0.041690696030855,-0.065361015498638,0.027867019176483],[0.016559870913625,0.070784598588943,7.8044540714473e-05]],[[0.080651335418224,0.039725869894028,-0.026851311326027],[0.047694448381662,0.035865984857082,-0.037696812301874],[0.0049770595505834,-0.057817429304123,0.031042795628309]],[[-0.088908202946186,-0.0771694034338,0.0079975910484791],[-0.031320691108704,0.061691012233496,0.046541467308998],[-0.015204031020403,-0.0094104576855898,-0.013827197253704]],[[-0.035738207399845,-0.0096473572775722,-0.0083400132134557],[0.04615854844451,0.09245254099369,0.067314796149731],[0.04236638918519,0.0052628088742495,0.039701722562313]],[[-0.0073962789028883,-0.030990408733487,-0.033781155943871],[0.015150927938521,-0.025841938331723,-0.044376660138369],[-0.095233723521233,0.0046495185233653,0.0483478307724]],[[0.038167119026184,-0.050898473709822,0.032872840762138],[-0.055462367832661,-0.043629843741655,0.01680938154459],[-0.058030623942614,-0.063395239412785,0.0075858733616769]]],[[[-0.07928204536438,-0.062178876250982,0.096632696688175],[-0.16242198646069,0.072406686842442,0.079343512654305],[0.10349210351706,-0.036960776895285,0.08044445514679]],[[0.088868334889412,-0.1323254108429,-0.046759687364101],[0.16590975224972,-0.16240242123604,-0.18950580060482],[0.045263972133398,0.031227024272084,-0.20588073134422]],[[-0.032609194517136,-0.011142652481794,-0.016481468454003],[-0.046595271676779,0.030768876895308,0.03469105437398],[0.0075170006603003,-0.05381092056632,0.068406194448471]],[[0.027612553909421,0.0073987450450659,-0.060442462563515],[-0.0098092770203948,0.010791189968586,0.019758647307754],[0.033178202807903,-0.016772273927927,-0.044581979513168]],[[-0.061886183917522,-0.10745840519667,0.0084691038355231],[-0.076783537864685,0.0068679112009704,-0.034236952662468],[0.059246513992548,0.020470755174756,0.021919878199697]],[[0.036431662738323,0.020545206964016,-0.024879388511181],[0.024272624403238,0.04250605776906,-0.025399342179298],[-0.069064080715179,-0.037033837288618,-0.11331406980753]],[[0.020937100052834,-0.02955630235374,0.018974971026182],[-0.014258011244237,0.1405284255743,-0.1041411831975],[-0.010101470164955,-0.028275078162551,0.00084570795297623]],[[-0.042548779398203,-0.035203844308853,0.049558721482754],[0.038990318775177,0.041367944329977,-0.081809818744659],[-0.027392832562327,-0.031742889434099,-0.085207216441631]],[[0.053728237748146,-0.024193435907364,-0.16150660812855],[-0.013287807814777,-0.016745401546359,-0.0063932952471077],[0.044078823179007,-0.025398252531886,-0.0082747004926205]],[[-0.044941082596779,-0.13281919062138,-0.070301048457623],[0.093406982719898,-0.1169685870409,-0.0091489125043154],[-0.017184626311064,-0.066845521330833,0.0062463786453009]],[[-0.12429096549749,-0.037434622645378,0.027193596586585],[-0.0039326855912805,-0.068987235426903,0.061075635254383],[0.0099709173664451,-0.013068451546133,0.081043392419815]],[[-0.03470104932785,0.013467078097165,0.050053127110004],[0.0020561835262924,-0.076817758381367,-0.0803017988801],[-0.045418761670589,-0.074953898787498,-0.13472402095795]],[[-0.054427873343229,0.078466981649399,0.017120910808444],[-0.018789183348417,-0.0027775301132351,-0.049982368946075],[0.054775923490524,-0.022253645583987,0.028833756223321]],[[-0.082357138395309,-0.043460439890623,0.085340522229671],[-0.044558562338352,-0.027045227587223,0.2406220883131],[-0.10795766860247,-0.033487882465124,0.081192225217819]],[[0.033629439771175,-0.018546793609858,0.13044795393944],[-0.085480347275734,-0.097341425716877,-0.019816944375634],[-0.042535077780485,0.027846639975905,-0.05939057096839]],[[0.10214000195265,-0.035885784775019,0.069898061454296],[0.11363756656647,-0.064250789582729,-0.071021147072315],[0.037031371146441,0.015511138364673,-0.011216904968023]],[[0.091684028506279,-0.073985397815704,-0.086920365691185],[-0.14115019142628,-0.043120052665472,0.10745462030172],[0.10138639807701,0.0082432283088565,-0.045970104634762]],[[0.048782356083393,0.038879610598087,-0.078302793204784],[0.10590490698814,0.0066673001274467,-0.17854203283787],[-0.051431234925985,0.10483259707689,-0.163479834795]],[[0.047880876809359,-0.0006484811892733,0.089581213891506],[-0.015759432688355,0.01000508479774,-0.026059651747346],[0.06803647428751,0.042594682425261,0.012246680445969]],[[-0.016018722206354,-0.056905139237642,-0.10635232925415],[-0.011139782145619,-0.059481799602509,-0.069111779332161],[-0.0066942707635462,0.022786054760218,0.019885934889317]],[[0.017322208732367,-0.02809888496995,0.18455027043819],[-0.095897451043129,0.047110825777054,0.058761950582266],[-0.15746729075909,0.074657797813416,0.075223661959171]],[[-0.059550080448389,-0.022256914526224,-0.075506679713726],[-0.0041169594042003,0.025570463389158,-0.061769798398018],[0.016927868127823,-0.075944922864437,-0.12355540692806]],[[-0.045497473329306,0.053149171173573,-0.028989367187023],[0.015222737565637,0.0096070915460587,-0.016761349514127],[-0.0053259716369212,0.056264739483595,-0.031003480777144]],[[0.055538047105074,-0.040251318365335,0.0044749584048986],[0.044601693749428,-0.11646350473166,-0.01017047278583],[-0.028528865426779,-0.11813056468964,0.0028221551328897]],[[0.011555299162865,0.040444184094667,0.036607440561056],[-0.03797072917223,-0.047267023473978,0.065506480634212],[-0.071248963475227,0.0071636871434748,0.09780615568161]],[[0.11418341100216,0.094720028340816,-0.118862234056],[0.080808952450752,-0.069413043558598,-0.10034830123186],[-0.027755908668041,0.0026112038176507,-0.082405529916286]],[[0.040946651250124,0.17367844283581,0.0065998858772218],[0.00096508156275377,-0.13342462480068,-0.078475579619408],[-0.14297080039978,-0.13517113029957,-0.000214768879232]],[[-0.080856166779995,-0.029651073738933,0.21277345716953],[-0.095735885202885,-0.040295511484146,0.15574604272842],[-0.108712695539,-0.089532852172852,0.19352839887142]],[[0.12684652209282,0.026567939668894,-0.018352296203375],[-0.052445650100708,-0.069308757781982,0.03398422524333],[0.01530481968075,0.024155246093869,0.040087960660458]],[[0.028935359790921,-0.034397203475237,-0.11021391302347],[0.049616780132055,0.022467171773314,-0.11644541472197],[-0.027546759694815,-0.014377584680915,-0.16368578374386]],[[-0.032714158296585,0.04193527251482,0.049377098679543],[-0.069681286811829,-0.11816252022982,0.018887529149652],[-0.03079411201179,0.0092123597860336,-0.040385507047176]],[[0.10302055627108,0.10362390428782,-0.097180865705013],[0.09187275916338,0.070611320436001,-0.30847945809364],[-0.021335855126381,-0.07239942252636,-0.15599364042282]],[[0.028865890577435,0.059317640960217,-0.01380599476397],[0.03815034776926,0.0070656761527061,0.079947501420975],[-0.12450201809406,-0.01146655343473,-0.050671741366386]],[[0.026277413591743,0.018041433766484,-0.076918661594391],[0.080926939845085,-0.059919346123934,-0.039094883948565],[0.032738633453846,0.084199912846088,-0.21624217927456]],[[-0.021058063954115,-0.17318253219128,-0.042237982153893],[0.044813763350248,-0.12594573199749,0.043304614722729],[0.028677754104137,0.097869746387005,-0.075222134590149]],[[-0.051864247769117,0.067791268229485,-0.02462163195014],[-0.025698859244585,0.019136695191264,0.038059879094362],[-0.0079758428037167,-0.048297353088856,0.014249325729907]],[[0.061562813818455,-0.083915218710899,-0.13526038825512],[-0.075576901435852,0.14641423523426,-0.073549270629883],[-0.022352458909154,0.075263790786266,0.045767616480589]],[[0.098639763891697,-0.081165634095669,-0.072616696357727],[-0.0085682757198811,-0.20715647935867,-0.12210847437382],[0.11434549838305,0.055833522230387,-0.079972960054874]],[[0.061553321778774,-0.099798776209354,-0.073782205581665],[0.056524552404881,0.036103524267673,-0.048334166407585],[-0.05482242256403,0.010224414989352,-0.030964367091656]],[[-0.039050221443176,0.043467875570059,-0.23760513961315],[0.018217900767922,0.0076599679887295,-0.075526714324951],[-0.018623992800713,-0.03758742660284,0.052670694887638]],[[-0.0079643949866295,-0.0081153158098459,0.072175480425358],[0.0053795683197677,-0.061939522624016,-0.046924788504839],[-0.0098376283422112,-0.064847990870476,0.0017353105358779]],[[-0.095200322568417,-0.23491497337818,0.087142705917358],[-0.024150284007192,0.068371780216694,0.2045065164566],[-0.076932907104492,0.006580809596926,0.063430920243263]],[[-0.005774324759841,0.019335810095072,-0.014257712289691],[-0.028783256188035,0.096381328999996,-0.083824053406715],[-0.074494689702988,-0.019626215100288,-0.070767618715763]],[[0.065549150109291,-0.020537251606584,-0.14214186370373],[0.13095393776894,-0.058766230940819,-0.0076428735628724],[0.0044148685410619,0.018237354233861,-0.0021681992802769]],[[0.1543136537075,0.075898490846157,-0.056150104850531],[0.014984497800469,0.12886235117912,-0.0025442878250033],[-0.10195101797581,-0.098173975944519,-0.096330545842648]],[[0.015136621892452,-0.042277250438929,-0.054820612072945],[-0.0030930209904909,0.022560868412256,0.00733189471066],[0.0068706525489688,0.11996351182461,-0.046357169747353]],[[-0.01001857034862,0.14261284470558,0.01638519577682],[0.047813273966312,-0.068964757025242,-0.01098576746881],[-0.012328071519732,-0.010336636565626,-0.056453004479408]],[[0.014369024895132,0.035179544240236,-0.10976967960596],[0.015118532814085,-0.018333479762077,0.047739092260599],[0.030964028090239,0.010709176771343,-0.0087661175057292]],[[0.074657924473286,0.023366168141365,-0.0049018189311028],[0.074640646576881,0.0077393604442477,-0.0267827603966],[0.087948940694332,0.060688830912113,-0.046883009374142]],[[-0.17014075815678,0.064666993916035,-0.00067565881181508],[-0.1366151124239,0.016055461019278,0.21335616707802],[-0.095975436270237,0.028408454731107,0.044643603265285]],[[-0.080133184790611,-0.13155470788479,-0.081030018627644],[-0.023018730804324,-0.088736586272717,-0.15647330880165],[-0.024032110348344,-0.060313768684864,-0.12392886728048]],[[-0.088441871106625,0.040829997509718,-0.0019943369552493],[0.085166700184345,0.13819219172001,0.012399135157466],[-0.076882295310497,0.050027806311846,-0.081011407077312]],[[-0.045988894999027,0.059449575841427,-0.063001357018948],[0.046151500195265,0.059576410800219,-0.05638712272048],[0.10156880319118,0.1310183852911,-0.053355935961008]],[[-0.0098716607317328,0.067775443196297,0.19760771095753],[0.083792671561241,0.14683546125889,0.06064435839653],[0.014121484942734,0.021025586873293,0.19998981058598]],[[0.15675708651543,0.094781793653965,0.063471719622612],[0.11238221079111,0.01329971011728,-0.093172758817673],[-0.13984043896198,-0.27731996774673,-0.12936632335186]],[[0.023601165041327,0.043481774628162,-0.084200121462345],[0.060154024511576,-0.045158907771111,0.011242687702179],[0.046851981431246,0.037237539887428,0.0058193909935653]],[[0.098059773445129,-0.097954884171486,0.016213249415159],[-0.0099701844155788,0.046333894133568,-0.22724016010761],[0.093669965863228,-0.07723194360733,-0.039539624005556]],[[0.045077249407768,0.015963107347488,-0.025164924561977],[-0.035234551876783,0.10644013434649,-0.079046569764614],[0.017392018809915,-0.25131642818451,-0.065203100442886]],[[-0.069765791296959,-0.086828500032425,-0.026494365185499],[0.060595199465752,-0.14029644429684,0.023571196943521],[-0.092689253389835,0.1169096454978,0.19458761811256]],[[0.034902136772871,0.0039217239245772,0.042134720832109],[-0.0070459833368659,0.0020053663756698,0.032590825110674],[-0.018066117540002,0.0024887060280889,0.0087225791066885]],[[-0.0400565341115,-0.078606709837914,-0.12796196341515],[0.1869905591011,-0.16769933700562,-0.11700683832169],[0.060104686766863,-0.09491128474474,-0.14908124506474]],[[-0.025397701188922,-0.080353498458862,0.0067582866176963],[0.0088658472523093,0.10510144382715,0.1431036144495],[0.066645406186581,-0.034888930618763,0.067925542593002]],[[-0.038936261087656,-0.044563952833414,0.0086726387962699],[0.033599071204662,0.077137045562267,-0.018295453861356],[-0.047046139836311,0.054259795695543,0.021102771162987]],[[0.019368309527636,0.018392583355308,0.11213612556458],[0.082386888563633,-0.055068597197533,0.017411585897207],[0.0080415857955813,-0.026985257863998,0.049658078700304]]],[[[0.0160066857934,0.057677038013935,-0.028157768771052],[0.023180559277534,-0.016122145578265,0.032172486186028],[-0.037614706903696,-0.015161116607487,-0.094653606414795]],[[-0.012841591611505,-0.015393526293337,-0.046355802565813],[0.017582166939974,-0.041162844747305,-0.0005766341346316],[-0.014860654249787,0.022213837131858,0.030344545841217]],[[-0.048042960464954,-0.048619847744703,0.052197564393282],[-0.028184991329908,-0.030823234468699,-0.014345550909638],[0.0158945415169,0.013614248484373,0.0048557668924332]],[[0.015989130362868,0.039281465113163,-0.043810501694679],[-0.0065706525929272,0.037995886057615,0.018235385417938],[-0.035884313285351,-0.022664299234748,-0.096147477626801]],[[-0.0054749418050051,0.014536462724209,0.042422197759151],[0.0014789931010455,0.034952823072672,0.0058498024009168],[0.036597035825253,-0.010062180459499,-0.0057843304239213]],[[0.019581668078899,-0.15524558722973,-0.046438794583082],[-0.049215719103813,0.088540710508823,-0.020334640517831],[-0.018963422626257,0.10940215736628,0.052289981395006]],[[0.016401689499617,-0.020734263584018,0.0047907251864672],[0.0019910577684641,0.053114593029022,-0.023730566725135],[0.00075675605330616,-0.077844366431236,0.0046277828514576]],[[0.02404597774148,0.032147094607353,-0.046941000968218],[0.041000489145517,0.020208772271872,0.015567659400403],[0.041383545845747,-0.028247926384211,0.081630125641823]],[[-0.0021091473754495,0.043144270777702,-0.047602377831936],[0.024383405223489,0.08771563321352,-0.0018429028568789],[-0.010941731743515,0.0021832843776792,-0.018948191776872]],[[0.028546925634146,-0.013688311912119,0.09230088442564],[-0.011554097756743,-0.029140358790755,-0.012413509190083],[0.046835038810968,-0.025688854977489,-0.07136008143425]],[[0.0063577154651284,-0.060160752385855,0.073039941489697],[-0.026054741814733,-0.0049084667116404,0.051635976880789],[0.1551308631897,0.0040581021457911,0.022577980533242]],[[-0.041657336056232,-0.0065208021551371,-0.004887075163424],[-0.051042605191469,-0.010436122305691,0.027893956750631],[0.089326210319996,-0.03316381201148,0.017901165410876]],[[-0.08861631155014,-0.0012496148701757,-0.001424127491191],[-0.013604743406177,-0.046286318451166,-0.0055745812132955],[0.021460989490151,0.038918625563383,-0.0097588347271085]],[[0.017023183405399,0.094142638146877,0.099648088216782],[-0.015709038823843,0.040559809654951,0.015798773616552],[-0.066897012293339,-0.11766020953655,0.0050609493628144]],[[0.018588878214359,-0.012192886322737,-0.072181388735771],[0.11582735925913,0.057823784649372,0.13584306836128],[0.076495490968227,0.0033623005729169,0.010415297932923]],[[-0.1435786485672,0.0035171187482774,-0.027930438518524],[-0.061681780964136,-0.035789307206869,-0.0050203450955451],[-0.019549176096916,-0.017201533541083,0.0046066888608038]],[[0.03042677603662,-0.059508636593819,0.01627267152071],[0.055946454405785,0.053872428834438,0.054642170667648],[0.12966121733189,0.033087309449911,0.069575309753418]],[[-0.018507793545723,-0.049324430525303,-0.045676708221436],[0.019250510260463,-0.0026352498680353,-0.0033152517862618],[0.042096801102161,0.034257560968399,-0.037292078137398]],[[0.0089097926393151,-0.030929323285818,-0.028437336906791],[-0.0075913821347058,-0.061318352818489,0.013262155465782],[0.035721953958273,0.024815309792757,0.068129263818264]],[[-0.076988287270069,-0.037605460733175,0.047683171927929],[0.0082360161468387,-0.073952712118626,0.012039549648762],[0.026018714532256,-0.025710305199027,-0.0090351114049554]],[[0.091414846479893,0.018335025757551,0.10276393592358],[0.075966522097588,0.0055807828903198,0.037114750593901],[0.013474262319505,0.10307117551565,0.059192012995481]],[[-0.010598632507026,-0.043992027640343,0.066695995628834],[-0.019334357231855,-0.056370086967945,0.018636887893081],[0.01412848290056,0.0064609362743795,-0.00086679734522477]],[[-0.0077017741277814,-0.026584137231112,-0.0015306066488847],[0.051535930484533,0.022808972746134,-0.023879719898105],[0.0063874823972583,0.02565379627049,-0.0515026897192]],[[-0.026930840685964,-0.0083651803433895,-0.022812485694885],[-0.0068826195783913,-0.0032964115962386,0.029958825558424],[0.041585981845856,0.0014469634043053,-0.045854989439249]],[[0.056971829384565,0.058971974998713,0.024615675210953],[-0.01082933973521,0.040052741765976,0.12232431024313],[-0.045102566480637,0.071540877223015,-0.02178162895143]],[[0.014586852863431,-0.011467602103949,0.014748441055417],[-0.040796875953674,-0.013520299457014,0.029057256877422],[0.027497747913003,-0.004710148088634,0.031417079269886]],[[-0.00036427131271921,-0.00014963033027016,-0.03238295763731],[-0.002659018849954,0.024182334542274,-0.073119178414345],[0.025200935080647,0.0055378689430654,0.045990403741598]],[[-0.035363718867302,-0.017313871532679,0.053406316787004],[-0.0048547103069723,0.033399932086468,0.020565638318658],[-0.054702069610357,0.019830390810966,-0.043642066419125]],[[0.010339355096221,-0.0055533978156745,-0.069490537047386],[0.025714118033648,0.02582504414022,-0.026487946510315],[-0.065529242157936,-0.022938108071685,0.0034020720049739]],[[-0.023260857909918,0.0070172301493585,-0.028739696368575],[-0.032308902591467,-0.105743072927,-0.043908510357141],[-0.067433811724186,0.061927914619446,-0.037893529981375]],[[0.00080963602522388,-0.017383636906743,-0.0070072393864393],[0.023366833105683,-0.053517963737249,-0.034308165311813],[0.066853575408459,0.046679191291332,-0.024435855448246]],[[-0.0012916926061735,0.0006208989652805,-0.050800763070583],[-0.0043675331398845,-0.047533500939608,-0.073226809501648],[-0.058111757040024,0.024504220113158,-0.084996476769447]],[[0.0016995266778395,-0.035954628139734,0.10834897309542],[-0.0005730707780458,-0.021079495549202,0.042863789945841],[0.01359885558486,0.022703615948558,0.0092662405222654]],[[-0.0033045667223632,-0.032935190945864,0.0019488115794957],[0.025386365130544,0.015779245644808,-0.015157347545028],[0.02385426685214,0.082743935286999,0.089903295040131]],[[0.040660835802555,0.042705677449703,0.057546429336071],[-0.0091930832713842,0.064385131001472,0.020710680633783],[0.0066525144502521,0.045914299786091,-0.016864396631718]],[[0.034811217337847,0.022819940000772,-0.080042392015457],[-0.065891571342945,-0.0033426191657782,-0.0083561213687062],[0.060020670294762,-0.049911268055439,-0.0024422074202448]],[[-0.007070675957948,0.0076904115267098,0.019463831558824],[0.06530637294054,0.031525246798992,-0.046559445559978],[-0.0054452293552458,0.049832791090012,-0.059083197265863]],[[0.009675670415163,-0.020814970135689,0.061655059456825],[0.011855777353048,-0.044137004762888,-0.041807200759649],[-0.018035396933556,-0.010186878964305,-0.023922488093376]],[[-0.032974369823933,-0.062400326132774,0.0062978905625641],[0.057823766022921,-0.038450136780739,0.0027321628294885],[-0.040713392198086,0.0014896845677868,0.02581387385726]],[[-0.12641820311546,-0.015992095693946,-0.0727514103055],[-0.010999657213688,-0.0046353633515537,-0.019636793062091],[-0.012870034202933,-0.036248963326216,0.021523106843233]],[[0.0025069063995034,-0.0095440624281764,-0.043080847710371],[-0.059495788067579,-0.042236834764481,0.022787913680077],[-0.0675915107131,0.067605704069138,0.017976842820644]],[[-0.088223621249199,-0.032356541603804,0.011240021325648],[-0.033364813774824,0.0012861354043707,0.050425283610821],[-0.053781572729349,0.0070218103937805,0.056194137781858]],[[0.092560052871704,-0.016022637486458,0.039176270365715],[0.0044977655634284,0.0044543715193868,-0.050439078360796],[0.039279997348785,0.024009017273784,-0.059520918875933]],[[-0.0025745183229446,-0.040432702749968,-0.023449469357729],[-0.015549792908132,-0.035754460841417,0.015427859500051],[-0.0515206605196,0.046124830842018,-0.040155652910471]],[[0.015572484582663,0.0035646460019052,-0.048303194344044],[-0.0072360914200544,0.0055998880416155,-0.015387960709631],[0.0073093227110803,0.079545363783836,-0.053483549505472]],[[0.050023820251226,0.012921436689794,-0.011529692448676],[0.01642738468945,0.041390687227249,0.057432312518358],[-0.031292375177145,-0.011517551727593,0.011516460217535]],[[-0.049340568482876,-0.075001239776611,-0.010778662748635],[-0.022085558623075,0.023517023772001,0.031721498817205],[-0.019377186894417,-0.031316574662924,0.08863890171051]],[[0.077377647161484,0.072849906980991,-0.053767666220665],[0.093011178076267,0.018886981531978,0.026749292388558],[0.085492610931396,0.028639528900385,0.066730342805386]],[[0.006671002600342,-0.00092179409693927,-0.0010982205858454],[0.061054933816195,0.016162736341357,-0.022000396624207],[0.020170187577605,0.022737115621567,0.064640492200851]],[[0.081171162426472,-0.12016958743334,-0.041864488273859],[0.021427331492305,-0.032105892896652,-0.0043613715097308],[0.015246016904712,0.00093044363893569,0.015516970306635]],[[-0.043815284967422,-0.021614087745547,0.0059352898970246],[-0.02653306722641,-0.042542699724436,-0.037093691527843],[-0.026255793869495,-0.020847462117672,0.015461028553545]],[[0.020625961944461,0.032178554683924,0.035388447344303],[0.0022832036484033,-0.0042348918505013,0.010727411136031],[0.022551888599992,-0.032423507422209,-0.010554350912571]],[[0.039494227617979,0.02153604477644,0.0065366178750992],[0.075032770633698,0.069766350090504,-0.07722382247448],[0.016105754300952,0.027541710063815,0.02273809351027]],[[-0.0016068541444838,0.032110340893269,0.056046772748232],[0.05358687415719,0.10027090460062,0.035645477473736],[-0.012616691179574,-0.0045171119272709,-0.026547070592642]],[[0.043275464326143,-0.0047712214291096,0.027426395565271],[0.010817710310221,-0.044266406446695,-0.037827100604773],[0.00084813061403111,0.0045517818070948,0.010529411956668]],[[-0.018752496689558,-0.084202915430069,-0.042512465268373],[0.0063526998274028,0.065200008451939,-0.018043905496597],[-0.019670674577355,-0.037558797746897,-0.058903235942125]],[[-0.10539443045855,0.025566997006536,0.013404571451247],[0.010004348121583,0.07395876199007,-0.013955156318843],[0.014025701209903,-0.0054869181476533,-0.027544301003218]],[[0.028014594689012,-0.013377404771745,0.031797848641872],[0.0082694953307509,-0.06058444455266,0.035633914172649],[0.018910553306341,-0.0036424649879336,0.0079845301806927]],[[-0.06496225297451,0.010583863593638,0.0013034082949162],[0.0073717511259019,-0.04822001606226,0.055135283619165],[-0.032367389649153,0.027134023606777,0.025617528706789]],[[-0.028698593378067,-0.0095925852656364,0.021200338378549],[0.0033540860749781,0.024512698873878,0.009295990690589],[0.013978861272335,-0.010172589682043,0.014299977570772]],[[-0.011931012384593,-0.0051280395127833,-0.0028851921670139],[0.0044000325724483,0.052684187889099,0.019274163991213],[0.044319067150354,0.065980963408947,-0.066275730729103]],[[-0.032287765294313,-0.085900112986565,-0.0050199716351926],[0.0063611408695579,-0.074766971170902,-0.032755352556705],[-0.044204290956259,0.00021661157370545,0.011815345846117]],[[0.016088251024485,-0.09089607000351,0.080362319946289],[0.004160450771451,0.025376824662089,-0.030456716194749],[-0.044747047126293,0.020299786701798,0.024157395586371]],[[-0.062410987913609,0.0075974143110216,-0.0058592399582267],[0.068584881722927,0.00042478661634959,0.03737485408783],[-0.041294634342194,0.0069843763485551,-0.018818609416485]]],[[[0.047246675938368,-0.057045727968216,0.0053759850561619],[-0.044181756675243,0.12365192174911,0.060307148844004],[0.018620254471898,0.063620857894421,0.041230272501707]],[[-0.008287881501019,-0.041337389498949,-0.057664755731821],[-0.0091307954862714,0.043928898870945,-0.014031213708222],[0.043376334011555,-0.031762767583132,-0.00046544821816497]],[[-0.055762577801943,0.058691460639238,0.048374094069004],[-0.05067352950573,0.049506030976772,-0.010790753178298],[-0.071072578430176,-0.0056937988847494,-0.012673981487751]],[[0.02921893261373,-0.015769965946674,-0.006594377104193],[-0.026772987097502,-0.025894774124026,0.013652781024575],[-0.044635329395533,0.10645305365324,-4.3774725781986e-05]],[[0.025812577456236,0.0059127127751708,0.027301233261824],[-0.05105410143733,0.064358532428741,-0.032313086092472],[-0.0085526825860143,-0.028258312493563,0.045867867767811]],[[0.0084024239331484,0.0010808798251674,-0.023178653791547],[0.046152394264936,0.077163316309452,0.10512801259756],[-0.14817464351654,0.011467094533145,0.0082159098237753]],[[0.042130623012781,-0.021391995251179,0.0043432004749775],[0.00085339270299301,-0.076735287904739,-0.0086074359714985],[-0.024651786312461,-0.021803671494126,-0.037025272846222]],[[-0.10170921683311,-0.05064719170332,0.01629295386374],[-0.0020347784738988,-0.045268584042788,-0.015783613547683],[-0.0021033193916082,0.0089626479893923,0.026728780940175]],[[0.039192974567413,-0.0079577229917049,0.065388053655624],[0.0065542804077268,-0.024208404123783,0.0095495507121086],[-0.07770798355341,0.038350906223059,-0.0049416488036513]],[[0.017175860702991,0.049904633313417,0.011162299662828],[0.031597159802914,-0.016248438507318,-0.13269884884357],[-0.016943896189332,-0.036216359585524,-0.036735840141773]],[[-0.03481674939394,0.074349910020828,0.010975122451782],[0.049799706786871,-0.087502680718899,-0.017843438312411],[0.090323612093925,0.082836978137493,-0.079842552542686]],[[0.044420972466469,-0.037991560995579,0.08873101323843],[0.034711085259914,0.030160259455442,-0.078726530075073],[-0.0020589106716216,0.011726784519851,0.087315455079079]],[[0.0067583862692118,0.049785751849413,0.033272445201874],[0.016491902992129,-0.02057701908052,0.032785944640636],[0.038384195417166,0.070884570479393,0.075700804591179]],[[0.017867162823677,-0.0080845039337873,-0.044359277933836],[0.0696045383811,0.029023664072156,0.025669427588582],[0.079803213477135,0.017820578068495,0.010582548566163]],[[0.044047705829144,-0.0038957754150033,0.013150569051504],[-0.054958179593086,0.039678230881691,0.073853924870491],[0.041254475712776,-0.022557225078344,-0.0042456393130124]],[[-0.0089308014139533,-0.024034885689616,-0.041769549250603],[0.020297326147556,-0.022564198821783,0.048601698130369],[-0.00073112384416163,0.040109694004059,0.017331644892693]],[[-0.019035123288631,0.010868167504668,-0.016766726970673],[-0.0014540962874889,0.041111804544926,0.044322311878204],[0.021745508536696,-0.051208019256592,-0.028649000450969]],[[0.020137213170528,0.067429594695568,0.075523756444454],[-0.02162080258131,0.069882564246655,0.027779061347246],[0.0072759124450386,0.020461427047849,-0.027245810255408]],[[-0.095296561717987,0.071082696318626,0.10136643052101],[-0.065362393856049,0.004719044547528,0.032219961285591],[-0.0067163766361773,-0.018165290355682,0.0011002769460902]],[[0.0040915077552199,-0.023895328864455,0.02923808991909],[0.025461070239544,0.0289555657655,-8.1391757703386e-05],[0.029510926455259,0.050886310636997,0.0602036267519]],[[0.080410301685333,-0.070701345801353,-0.022451620548964],[0.004154113586992,-0.028448762372136,0.056797202676535],[0.1642886698246,0.1189032047987,0.15427286922932]],[[0.0020489075686783,-0.0076374737545848,0.068293176591396],[0.040366377681494,0.055927406996489,0.0070906234905124],[0.040747862309217,-0.014848066493869,0.03107382170856]],[[-0.0084241759032011,0.042870387434959,0.055582836270332],[0.021928247064352,0.022353464737535,-0.051414720714092],[-0.065585918724537,-0.0050502000376582,0.0011067719897255]],[[0.062244053930044,-0.013175164349377,0.093684367835522],[-0.038490939885378,0.039594635367393,0.0074398443102837],[0.05617431551218,0.0031788742635399,-0.026008246466517]],[[-0.13704159855843,0.051676973700523,0.022773180156946],[-0.039732463657856,0.00066555273951963,-0.066146939992905],[0.025324005633593,-0.024315822869539,-0.027853175997734]],[[0.034709386527538,0.037154916673899,0.036346714943647],[-0.014117701910436,0.01159178186208,-0.055339820683002],[0.024479752406478,-0.088231444358826,-0.042656484991312]],[[0.04221522808075,0.10166297107935,-0.032009340822697],[-0.013957252725959,-0.052370827645063,0.074420221149921],[-0.050497725605965,-0.032805372029543,0.0404810346663]],[[0.053109981119633,-0.0050341645255685,-0.021695828065276],[-0.011559163220227,0.11837531626225,0.019502636045218],[0.12059939652681,0.092960514128208,0.036216009408236]],[[-0.069851472973824,0.0084463646635413,-0.066486582159996],[-0.032102350145578,-0.031580451875925,0.043390676379204],[0.016982957720757,-0.036795485764742,-0.083352290093899]],[[0.036713659763336,-0.083035089075565,0.037604402750731],[-0.056461773812771,0.075223930180073,-0.057320415973663],[0.043481022119522,0.0088161313906312,-0.061222594231367]],[[-0.0043886206112802,0.038521058857441,-0.011059045791626],[-0.073670193552971,0.029667396098375,-0.041667990386486],[0.067966289818287,-0.12290827929974,0.03173515573144]],[[0.099717371165752,0.059432093054056,0.038184888660908],[-0.01465308573097,-0.032138161361217,0.0084789870306849],[-0.007146664429456,0.079523608088493,0.00048327702097595]],[[0.033493664115667,0.02276031114161,-0.077405944466591],[-0.095384776592255,-0.16418135166168,0.055694013834],[0.16507463157177,-0.032832112163305,0.024979878216982]],[[0.084209606051445,0.03004171513021,0.059351444244385],[0.051424242556095,0.069394499063492,0.090988881886005],[-0.0036756249610335,-0.043559614568949,-0.037326000630856]],[[-0.030584491789341,0.06804695725441,0.002358649391681],[0.10134480148554,-0.055670481175184,-0.017177393659949],[-0.033834278583527,-0.087010979652405,-0.057448267936707]],[[0.017028169706464,-0.067278288304806,-0.0056903283111751],[-0.19306789338589,-0.090116746723652,0.049309510737658],[-0.030033113434911,0.02703426219523,0.024113027378917]],[[-0.031872734427452,-0.037880588322878,0.065259404480457],[-0.091024965047836,0.068734712898731,0.039128474891186],[-0.041363820433617,-0.043365139514208,-0.0088088642805815]],[[0.049250494688749,-0.06841916590929,-0.0098797949030995],[0.0011110283667222,0.052051812410355,0.02931097894907],[-0.13452416658401,-0.01658190600574,-0.050237212330103]],[[0.12819923460484,0.19713650643826,-0.012536039575934],[0.090490221977234,-0.051982965320349,0.056793108582497],[-0.077826075255871,-0.09762991964817,-0.0027070103678852]],[[0.042790818959475,-0.032049804925919,-0.026161909103394],[-0.00012958057050128,-0.031013859435916,0.012832895852625],[0.035289369523525,-0.04810593277216,-0.096906155347824]],[[0.050733111798763,0.058074165135622,0.050835151225328],[-0.049013994634151,0.030033489689231,0.093356810510159],[-0.01819759234786,-0.082296639680862,-0.033335138112307]],[[-0.082892723381519,-0.055394057184458,-0.025452034547925],[-0.013232837431133,0.00076549913501367,-0.011842857114971],[-0.028656678274274,0.057559929788113,0.14266167581081]],[[0.028806591406465,0.013648862019181,0.0047284425236285],[-0.043170958757401,0.037260644137859,-0.0050599765963852],[-0.00056570232845843,-0.036005437374115,-0.053381618112326]],[[-0.011629749089479,-0.035718493163586,-0.05477237328887],[0.013593459501863,0.018796795979142,-0.011933936737478],[-0.071343392133713,-0.075908467173576,-0.010451384820044]],[[0.043168310075998,0.025098552927375,-0.089606389403343],[0.11630172282457,0.039199288934469,-0.15287524461746],[0.15948170423508,0.01258419174701,-0.057846654206514]],[[0.043667290359735,-0.023001281544566,-0.080952174961567],[-0.0064151389524341,0.0091820200905204,-0.02791154012084],[0.0047577759250998,-0.074756614863873,-0.003784355474636]],[[-0.026663364842534,-0.058301754295826,0.064753636717796],[-0.060225334018469,0.066378273069859,-0.038387112319469],[0.014859205111861,-0.048553522676229,0.054981123656034]],[[-0.0025477283634245,0.021300723776221,0.014976339414716],[0.0030609723180532,0.071476876735687,0.0076237241737545],[-0.028156930580735,-0.024187656119466,0.029361847788095]],[[0.0037869105581194,0.0092235440388322,-0.0089777614921331],[-0.068634025752544,0.076572895050049,-0.016450259834528],[0.013842002488673,0.011312860064209,-0.022911882027984]],[[-0.0099554462358356,0.007587636820972,-0.061426650732756],[-0.050654985010624,-0.049069955945015,0.08461856842041],[0.045875761657953,0.055817138403654,-0.013669502921402]],[[0.048408381640911,0.04361928626895,-0.011128273792565],[0.022814786061645,-0.022481065243483,0.0058260122314095],[-0.11445969343185,0.038660746067762,-0.011007009074092]],[[0.012130152434111,-0.0049226516857743,0.02973985299468],[-0.064669102430344,0.091118380427361,0.043096661567688],[-0.010836509056389,-0.00084526877617463,0.071541763842106]],[[0.00068795098923147,0.058731153607368,-0.052643250674009],[-0.016308834776282,-0.039144065231085,-0.061423942446709],[-0.044999249279499,-0.071328334510326,0.016987586393952]],[[0.12581241130829,-0.026156861335039,-0.060214411467314],[-0.0060649402439594,0.069704294204712,0.082015089690685],[0.1957585811615,0.1139605268836,0.035879261791706]],[[0.16259667277336,-0.059080667793751,-0.053301304578781],[0.092164397239685,-0.024774814024568,0.0078560318797827],[-0.050494886934757,-0.052834138274193,-0.081695169210434]],[[0.083155855536461,0.1025149077177,-0.0078774048015475],[0.011780298314989,0.067083895206451,-0.060485903173685],[-0.0041284118779004,-0.042348932474852,0.02932364679873]],[[0.1193879544735,0.076019428670406,0.021590940654278],[0.031152494251728,0.017122253775597,-0.038018062710762],[0.081545889377594,-0.013724649325013,-0.000654197181575]],[[-0.0013003539061174,-0.025759866461158,0.0063031353056431],[0.0013631432084367,0.033455643802881,0.0089284973219037],[-0.012807314284146,0.021054126322269,-0.038924563676119]],[[-0.065657369792461,0.05781988799572,-0.058410041034222],[0.051480047404766,-0.052839998155832,0.0088047049939632],[0.040425803512335,-0.057439390569925,-0.082075364887714]],[[0.022630032151937,-0.023003278300166,-0.028399385511875],[-0.0094580259174109,-0.01977526396513,0.018861584365368],[0.05928810685873,0.032728925347328,0.063306145370007]],[[-0.0065928515978158,0.076141402125359,-0.032092362642288],[-0.019411770626903,-0.061205390840769,-0.024360632523894],[-0.059752397239208,0.05138711258769,0.056915834546089]],[[-0.030883608385921,0.061005383729935,-0.015797417610884],[0.084237225353718,-0.009280614554882,-0.10114144533873],[0.065092444419861,-0.050238601863384,-0.0077714901417494]],[[0.017486624419689,-0.047878071665764,0.03232790902257],[0.059272199869156,0.036098975688219,0.010836482048035],[-0.032198332250118,-0.023418799042702,0.0053247949108481]],[[0.040571797639132,-0.072343662381172,-0.039466790854931],[-0.062618136405945,-0.04027721658349,0.063146904110909],[-0.022672135382891,0.13603956997395,-0.043780822306871]]],[[[-0.094103991985321,-0.1544988155365,-0.029127672314644],[-0.047788422554731,0.04025761038065,0.064665302634239],[-0.017785271629691,0.051807623356581,-0.021822175011039]],[[-0.016388963907957,0.011598920449615,0.02910977602005],[0.056475173681974,0.042614948004484,-0.058173201978207],[-0.077866844832897,-0.0049715666100383,0.020865824073553]],[[0.00046019192086533,0.04468073323369,-0.042293969541788],[0.0061501231975853,-0.10456726700068,-0.011640109121799],[-0.016747133806348,0.0067515391856432,-0.095659822225571]],[[0.12697716057301,-0.052539195865393,-0.090708643198013],[-0.20103906095028,-0.09217319637537,0.030253874137998],[0.085939005017281,-0.13804821670055,0.10009671002626]],[[-0.0058365697041154,-0.072684727609158,-0.16021195054054],[0.010345494374633,0.085954189300537,0.027762381359935],[-0.031028425320983,0.065352000296116,0.043274279683828]],[[-0.013313983567059,-0.016131574288011,0.0068422444164753],[0.046782352030277,-0.0039769136346877,-0.056246023625135],[0.0024991421960294,-0.085423596203327,-0.046083636581898]],[[-0.013319688849151,-0.049882296472788,-0.04053770750761],[0.048401072621346,-0.0078009171411395,0.030120005831122],[0.037636399269104,0.022682240232825,0.054705772548914]],[[0.061657663434744,0.048599481582642,-0.059874542057514],[-0.0059594796039164,0.073486186563969,0.0083038620650768],[0.051268700510263,-0.14300334453583,0.048562921583652]],[[-0.00028458723681979,-0.0088701294735074,0.17201094329357],[-0.046251717954874,-0.13813863694668,-0.050150536000729],[0.093829460442066,-0.042389553040266,-0.15313038229942]],[[-0.19893354177475,-0.0025954109150916,0.046586312353611],[0.043937206268311,-0.13115426898003,-0.022465087473392],[0.10858859121799,0.11038000881672,-0.0013966808328405]],[[-0.11621081829071,0.010383425280452,-0.031800471246243],[0.063921950757504,-0.082344070076942,-0.034105874598026],[0.0026748348027468,0.11935879290104,0.030591094866395]],[[-0.15630342066288,0.057737987488508,-0.00048085537855513],[-0.062834553420544,-0.059574466198683,-3.9069464037311e-06],[0.031468734145164,0.043011900037527,0.019841497763991]],[[0.045604709535837,0.039447296410799,-0.080270305275917],[0.015699006617069,-0.014308896847069,-0.1626847833395],[-0.016752194613218,0.046250071376562,0.089075528085232]],[[-0.081586465239525,-0.039994198828936,0.039550378918648],[-0.0059031439013779,-0.0004510332364589,0.083861976861954],[-0.027634484693408,0.10615538805723,-0.010474077425897]],[[-0.022308198735118,0.0059666899032891,0.023258488625288],[-0.0055438573472202,0.0050591384060681,-0.04461419954896],[0.084582462906837,-0.009833344258368,0.057176776230335]],[[-0.097504653036594,0.011557682417333,0.031259555369616],[0.046243716031313,-0.020904410630465,-0.0017946243751794],[0.039271231740713,0.065428383648396,0.035427678376436]],[[0.047150015830994,0.068282529711723,0.0078950980678201],[-0.012266267091036,-0.016750833019614,-0.020846337080002],[-0.058301825076342,0.03401730582118,0.0052144275978208]],[[-0.072882771492004,0.048638232052326,-0.071180239319801],[-0.02496506460011,-0.028259878978133,-0.016582190990448],[0.0012440198333934,-0.0012041834415868,0.11920067667961]],[[-0.10179416835308,-0.022769268602133,0.013438598252833],[-0.067255064845085,0.0042171915993094,-0.050107289105654],[-0.022640386596322,0.033278189599514,-0.072447955608368]],[[-0.050432037562132,0.063715294003487,-0.028435541316867],[-0.072758138179779,-0.034600131213665,0.0093699023127556],[-0.0063359867781401,-0.06672041863203,0.018101351335645]],[[-0.052211072295904,-0.005841507576406,0.08605033159256],[0.017173325642943,-0.074880607426167,-0.010198776610196],[-0.016061382368207,0.059177312999964,0.069732792675495]],[[0.03962542116642,0.059520617127419,-0.08813051879406],[-0.027363818138838,-0.062432885169983,-0.0036202848423272],[-0.035879835486412,-0.027753347530961,0.10375960171223]],[[0.018797604367137,-0.012870113365352,-0.12236072123051],[0.014777233824134,0.087067432701588,-0.014428907074034],[-0.054164174944162,0.030500881373882,0.046492766588926]],[[0.060258764773607,0.042549025267363,0.02483251132071],[-0.026740709319711,0.086506821215153,0.049607429653406],[-0.11418984085321,-0.059216447174549,-0.07658052444458]],[[-0.028233731165528,0.066849507391453,0.078214623034],[-0.052154891192913,0.12846344709396,-0.088762730360031],[-0.10224658995867,0.080500386655331,0.096723109483719]],[[-0.032199464738369,-0.11611497402191,-0.0030681013595313],[-0.014022684656084,-0.10046434402466,-0.025763396173716],[0.016762956976891,-0.073738895356655,0.034168940037489]],[[-0.044930096715689,0.092253006994724,-0.027452107518911],[-0.023797007277608,0.038060732185841,-0.0036806338466704],[-0.035524278879166,0.010653273202479,0.141522154212]],[[0.045214299112558,0.096195206046104,0.082676485180855],[0.02287369966507,0.054544396698475,0.13405486941338],[-0.11739642173052,-0.07050859183073,-0.075850687921047]],[[-0.16710016131401,-0.054464392364025,0.015200766734779],[-0.046013165265322,-0.12749396264553,-0.062960051000118],[-0.004836046602577,-0.029449222609401,0.04582679271698]],[[-0.051621038466692,0.043898746371269,-0.088953346014023],[0.072269171476364,0.11168394237757,-0.04191904887557],[0.00036141872988082,0.038546897470951,-0.016985254362226]],[[-0.14775861799717,-0.14478050172329,-0.053366258740425],[-0.061140507459641,-0.038598444312811,-0.13237658143044],[0.16171281039715,0.12168552726507,0.054556284099817]],[[-0.082849338650703,-0.01356756594032,-0.071001969277859],[0.013509296812117,0.055988110601902,-0.06544703990221],[-0.13237270712852,-0.022063480690122,-0.075067616999149]],[[0.029035286977887,-0.072028264403343,-0.05585128441453],[0.10127265751362,-0.0040219505317509,0.015179386362433],[0.0229836627841,0.019028460606933,-0.11687342077494]],[[0.13446250557899,-0.017650259658694,0.01464939955622],[0.058947965502739,0.085729688405991,0.033449579030275],[-0.013085185550153,0.036199439316988,-0.10643368214369]],[[0.069184064865112,-0.035760756582022,0.065242037177086],[0.070133902132511,-0.029267596080899,0.14651927351952],[-0.0054143075831234,0.028078062459826,-0.11561089754105]],[[0.073268972337246,-0.011329940520227,0.044069096446037],[0.14707823097706,-0.10653513669968,-0.1012935936451],[-0.039965268224478,0.019628569483757,-0.032211694866419]],[[-0.056775912642479,-0.004214683547616,-0.02686832845211],[-0.0022960817441344,-0.055774483829737,0.00087047857232392],[0.12185605615377,0.17480221390724,-0.050832904875278]],[[-0.0044206292368472,-0.13466963171959,-0.061735540628433],[0.065462499856949,0.11664140224457,0.00049961358308792],[-0.029047777876258,0.014968017116189,0.040902122855186]],[[0.10851433128119,0.026554074138403,0.062088176608086],[-0.038283050060272,-0.029003163799644,0.04965403676033],[-0.0072583602741361,0.089834198355675,-0.086582891643047]],[[0.0058733895421028,-0.037984136492014,-0.049189705401659],[0.018439320847392,-0.19264741241932,-0.0067384457215667],[0.089145511388779,0.049531389027834,0.077573910355568]],[[-0.031888898462057,-0.0079735778272152,-0.0015227106632665],[-0.0070891748182476,0.0258530639112,-0.033281374722719],[0.099353477358818,0.017114775255322,0.066952876746655]],[[-0.058207299560308,0.08771325647831,0.096740327775478],[0.047381106764078,0.0078133754432201,0.02681390568614],[0.060096234083176,-0.10029012709856,-0.066644288599491]],[[-0.11390179395676,-0.082921326160431,0.094824932515621],[0.010160720907152,0.0094190975651145,0.11438573896885],[-0.018401520326734,-0.073964662849903,0.04296762868762]],[[-0.046869721263647,-0.02730967104435,-0.030354512855411],[-0.021330093964934,-0.032357428222895,-0.060044590383768],[0.024010537192225,0.079960957169533,-0.062431376427412]],[[-0.040923964232206,0.010600436478853,0.013584782369435],[-0.010513219982386,0.031066417694092,0.038673236966133],[-0.20285604894161,0.019463174045086,-0.033403120934963]],[[0.012903715483844,-0.11965792626143,-0.00085007934831083],[-0.0077827642671764,-0.062142923474312,-0.058562271296978],[-0.022849977016449,-0.07945129275322,0.0039185625500977]],[[0.17669110000134,0.02557635679841,-0.11580877751112],[0.19908182322979,0.088166750967503,-0.074688538908958],[-0.053231067955494,-0.0091727497056127,-0.085368677973747]],[[0.0056572961620986,0.10342868417501,-0.029494410380721],[-0.019046017900109,0.16901436448097,-0.0011800448410213],[-0.080327443778515,-0.008082190528512,-0.018770342692733]],[[0.048277083784342,0.060477007180452,0.02226016484201],[0.014615161344409,-0.011062401346862,-0.029435349628329],[-0.021096844226122,-0.037982810288668,0.059499673545361]],[[-0.019517911598086,0.048416934907436,0.037434369325638],[-0.10751836001873,0.015034946613014,0.037772692739964],[0.087864734232426,0.0073895375244319,-0.0097681153565645]],[[0.049227971583605,-0.040149662643671,-0.014034658670425],[0.024860080331564,-0.14776700735092,-0.012292038649321],[0.0065929307602346,-0.015448694117367,-0.10835079848766]],[[0.088698253035545,-0.010855099186301,0.036610189825296],[0.051110729575157,0.052275836467743,-0.019465027377009],[-0.045299369841814,0.0090484675019979,-0.038289982825518]],[[0.036008972674608,0.021504057571292,0.10844281315804],[-0.00033613803680055,0.067777469754219,0.025433361530304],[0.020797722041607,-0.002367575885728,-0.00057097233366221]],[[0.041905105113983,0.17458809912205,0.0037040666211396],[0.0069258431904018,-0.0078628053888679,0.14292596280575],[0.049787294119596,0.061707030981779,-0.046218406409025]],[[-0.1099770590663,-0.082211673259735,-0.11962208151817],[-0.0054792878217995,0.036942735314369,-0.044499430805445],[-0.069501809775829,0.09917263686657,0.048487722873688]],[[0.12537975609303,-0.051551029086113,-0.12471914291382],[0.01363683771342,0.093728207051754,-0.09458701312542],[-0.045124463737011,0.043990600854158,-0.019607704132795]],[[-0.029727621003985,-0.1225468814373,-0.027288312092423],[0.11075907945633,-0.12185993045568,-0.033882685005665],[0.091682180762291,-0.043109949678183,-0.084207095205784]],[[-0.013536908663809,-0.079550996422768,-0.01813874207437],[0.022623462602496,-0.0052320822142065,-0.07645283639431],[-0.045058108866215,-0.0033410133328289,-0.07011329382658]],[[-0.047718700021505,-0.10233751684427,0.014001291245222],[0.013280429877341,-0.024858759716153,-0.025257801637053],[0.021054370328784,0.013929545879364,0.0085761696100235]],[[0.010516528971493,0.034308832138777,0.074849180877209],[-0.0050436919555068,-0.055976424366236,0.0029098172672093],[0.02590230666101,-0.019366329535842,-0.038166765123606]],[[-0.063924834132195,-0.045421365648508,-0.010265734046698],[0.11512477695942,0.11422031372786,0.041154753416777],[-0.082450456917286,0.12361551821232,0.10054010897875]],[[-0.016436571255326,0.069508068263531,-0.01715868152678],[0.13570769131184,-0.091297216713428,-0.053699094802141],[-0.021485060453415,0.02626483514905,-0.094198547303677]],[[-0.079410873353481,-0.15905968844891,0.069971516728401],[-0.054222017526627,0.058665279299021,-0.0029216504190117],[0.019940461963415,0.12823036313057,-0.13711331784725]],[[-0.13366079330444,-0.033755958080292,0.074245028197765],[0.022942198440433,-0.10430116206408,0.075454607605934],[0.012984051369131,-0.084215760231018,-0.017175126820803]]],[[[0.032353281974792,-0.045951217412949,0.065303444862366],[0.058945681899786,-0.070050224661827,-0.014172581955791],[-0.0087668746709824,0.062592379748821,-0.048448070883751]],[[-0.012055742554367,-0.014250428415835,-0.016129374504089],[-0.0032386416569352,-0.054823122918606,3.1037383450894e-05],[0.013010586611927,-0.014903587289155,-0.024504227563739]],[[-0.024785591289401,-0.029623923823237,0.045327506959438],[0.0021024465095252,-0.031368013471365,-0.015162947587669],[-0.0011799720814452,0.017983181402087,0.0077838278375566]],[[-0.019907768815756,-0.01533639896661,0.022019926458597],[-0.0042902426794171,0.03365296125412,-0.011530335992575],[0.04020743444562,-0.050994500517845,-0.028900252655149]],[[-0.010487345978618,0.0029407169204205,-0.024490527808666],[0.025462659075856,-0.031475029885769,0.016730139032006],[-0.023246312513947,-0.015690319240093,-0.070786334574223]],[[0.0023898794315755,0.030183827504516,0.012097149156034],[-0.1061213389039,0.17580746114254,-0.088733196258545],[-0.075339183211327,0.051658842712641,-0.066267803311348]],[[-0.055994693189859,0.036634087562561,-0.0078321360051632],[-0.05948268994689,-0.00033003595308401,0.045953530818224],[-0.012943055480719,0.019643522799015,0.067419163882732]],[[0.11680449545383,0.055483341217041,-0.017413552850485],[-0.079866841435432,0.050967663526535,0.078070059418678],[0.0044520949013531,0.025633262470365,0.011563280597329]],[[-0.056929942220449,-0.062630467116833,0.0056302770972252],[-0.0073235272429883,-0.014143107458949,-0.024990594014525],[-0.072997562587261,-0.016360484063625,-0.0034371926449239]],[[-0.011272054165602,-0.055071666836739,0.075249187648296],[0.023561403155327,-0.028590528294444,-0.015824468806386],[-0.022081410512328,0.086125813424587,-0.078268125653267]],[[-0.011272157542408,-0.051056265830994,0.0030172395054251],[-0.077887684106827,0.064905472099781,-0.12668055295944],[-0.018907798454165,0.031242376193404,0.1034682393074]],[[-0.013195007108152,-0.048672866076231,0.007061657961458],[-0.070189036428928,-0.060435079038143,0.0027888587210327],[0.034302286803722,0.055164113640785,-0.0028432051185519]],[[-0.0033823775593191,-0.048165056854486,-0.084644183516502],[-0.081129528582096,0.0032399236224592,0.024931825697422],[0.031133282929659,-0.0018016415415332,-0.047332793474197]],[[0.016221679747105,0.073060177266598,0.02489666827023],[0.020882440730929,0.097039759159088,0.0073647005483508],[0.064706668257713,0.011184835806489,0.033016722649336]],[[0.043285723775625,0.0054824091494083,0.00047174395876937],[-0.00052931922255084,-0.02580277249217,0.023393988609314],[0.0609460324049,0.013426415622234,0.0435193143785]],[[-0.062520027160645,-0.026367928832769,-0.046309143304825],[-0.020772440358996,0.014608516357839,0.02652851305902],[-0.033955279737711,-0.075711734592915,0.0068259849213064]],[[0.0047598709352314,0.00850426312536,0.0092859622091055],[-0.044679369777441,0.047806520015001,0.048020765185356],[0.064795188605785,-0.030354617163539,0.047374360263348]],[[0.0028592171147466,-0.029614884406328,-0.041781306266785],[-0.036780998110771,-0.026462690904737,-0.033687129616737],[-0.0076051591895521,0.082428731024265,0.054762091487646]],[[0.078466653823853,0.021175663918257,0.049253705888987],[0.040785260498524,-0.055426474660635,0.011349061504006],[-0.0043623349629343,-0.070492640137672,-0.052468817681074]],[[-0.015386735089123,0.00071141857188195,-0.051849368959665],[-0.025699065998197,-0.04572381451726,-0.038669358938932],[0.041085455566645,-0.036137528717518,0.023470509797335]],[[-0.059553343802691,0.058055147528648,0.049711272120476],[-0.013041509315372,0.10755167156458,-0.014336511492729],[0.048665326088667,0.021705688908696,0.044253803789616]],[[-0.0079344203695655,-0.010417439043522,-0.01000196672976],[0.023949675261974,0.0073043443262577,-0.029267070814967],[0.016806228086352,-0.00054395542247221,0.0096802748739719]],[[-0.0038532314356416,0.049404814839363,-0.035921085625887],[-0.030193377286196,-0.025730369612575,0.0006581874913536],[-0.0013985941186547,-0.0093346713110805,0.034621965140104]],[[0.011410981416702,-0.0044844755902886,-0.016938166692853],[-0.01299995649606,0.021516606211662,0.030245561152697],[0.0041823801584542,0.029234107583761,0.0042662173509598]],[[-0.051852185279131,0.002952117472887,0.024366015568376],[0.008872234262526,-0.019358145073056,0.053737673908472],[0.062611863017082,0.034399434924126,0.10280442982912]],[[0.012870027683675,0.09158892929554,0.010704993270338],[0.029444945976138,0.014210042543709,-0.035619027912617],[-0.0043405019678175,0.012264136224985,0.027274152263999]],[[-0.0088283764198422,-0.017720380797982,-0.035843584686518],[-0.027281200513244,0.14738772809505,-0.017431823536754],[-0.026474714279175,0.050531830638647,0.047961134463549]],[[0.11872121691704,0.098615281283855,0.06358440220356],[0.021933726966381,0.04063218459487,0.042073301970959],[-0.023334454745054,-0.094448260962963,-0.057234730571508]],[[0.029432537034154,0.0005122039001435,0.072831377387047],[-0.053192786872387,-0.11517810821533,0.079188667237759],[-0.023901557549834,-0.017087543383241,0.059334646910429]],[[0.079874344170094,-0.010407627560198,0.01249985396862],[0.0038630228955299,0.072956211864948,-0.027892470359802],[-0.045056536793709,-0.0075811422429979,-0.00075312633998692]],[[-0.088279813528061,-0.0091648902744055,0.0091302031651139],[-0.036223735660315,-0.011780885048211,0.0062266387976706],[-0.034121043980122,0.024739740416408,0.01130361482501]],[[-0.023946162313223,0.04895468428731,0.0004436265444383],[-0.012461850419641,-0.030556770041585,0.050102587789297],[0.026173042133451,0.02812154404819,0.0021701671648771]],[[-0.0041386312805116,-0.12380641698837,-0.021457195281982],[-0.025796016678214,-0.057003155350685,-0.092384181916714],[0.068284392356873,-0.022925078868866,-0.08415637165308]],[[0.028817355632782,0.023552540689707,0.012527496553957],[-0.064297422766685,-0.057818755507469,-0.04091714322567],[0.020217414945364,0.031836330890656,-0.04314785823226]],[[0.0020791573915631,-0.021588884294033,0.0086840335279703],[0.042416907846928,0.0092953788116574,0.0068436064757407],[-0.016204101964831,0.0051860935054719,0.079621821641922]],[[0.021395778283477,-0.042329583317041,0.05165846273303],[0.01091172080487,0.0086631439626217,-0.10702922940254],[0.052992306649685,-0.035947997123003,-0.00031760451383889]],[[-0.035023264586926,-0.059523727744818,-0.040183357894421],[-0.022957632318139,-0.01736974902451,0.074026629328728],[-0.013316282071173,-0.031382512301207,-0.035723719745874]],[[0.01868880353868,0.002037234371528,-0.10179916024208],[-0.024415381252766,0.074956692755222,-0.023150788620114],[-0.040330808609724,0.098630920052528,0.090745151042938]],[[-0.028065456077456,0.00632802862674,0.034271005541086],[-0.032435484230518,0.017970375716686,-0.023011783137918],[-0.070637412369251,-0.041202168911695,0.02369967661798]],[[0.064125083386898,-0.047960501164198,-0.034307297319174],[-0.022220499813557,-0.053307365626097,-0.053276937454939],[0.027971001341939,-0.014307371340692,-0.0066965431906283]],[[-0.017299182713032,0.014592273160815,-0.037592604756355],[0.041351325809956,0.023126639425755,0.029927214607596],[-0.077931419014931,-0.0090585835278034,0.012867202982306]],[[-0.01718195527792,0.062770523130894,-0.081233121454716],[0.03175188973546,0.0041176280938089,-0.06536341458559],[0.013448310084641,0.049221210181713,0.083463542163372]],[[0.02293161675334,0.0071508558467031,-0.0092899445444345],[-0.0087551837787032,-0.025903338566422,-0.014648206532001],[-0.075638376176357,0.038146939128637,-0.025962043553591]],[[-0.023082545027137,-0.022919975221157,0.027466051280499],[-0.076139405369759,-0.026249721646309,-0.030193706974387],[0.035507217049599,0.027262303978205,-0.010132249444723]],[[0.0048791747540236,0.026338174939156,0.0098229059949517],[-0.07942695915699,0.054765604436398,-0.067366681993008],[-0.078267298638821,0.028690857812762,-0.02113320864737]],[[-0.063153669238091,0.009493357501924,-0.045914046466351],[0.022526375949383,0.0052841082215309,-0.045286167412996],[0.080531805753708,-0.039645992219448,-0.011248934082687]],[[0.049649309366941,-0.048765208572149,-0.021513398736715],[-0.017607379704714,-0.11064236611128,-0.020231587812304],[-0.023961812257767,0.005163767375052,-0.061545450240374]],[[-0.0090155135840178,0.0092339077964425,0.024446189403534],[-0.021016644313931,0.022486435249448,0.043242201209068],[-0.018323255702853,0.033714096993208,-0.041028909385204]],[[-0.035966292023659,0.038515239953995,0.048211392015219],[-0.010683781467378,-0.060535881668329,-0.039088241755962],[-0.027155473828316,-0.061813235282898,0.01541567966342]],[[0.029278526082635,0.020053872838616,-0.028708582744002],[0.0036034290678799,0.050117958337069,-0.03108030743897],[0.031576178967953,0.10876858234406,0.010954453609884]],[[0.011967766098678,0.034881245344877,0.03334903344512],[0.011164648458362,-0.072601072490215,0.0049396925605834],[0.0090176369994879,-0.02346995845437,-0.027455985546112]],[[-0.096383146941662,-0.027279520407319,0.00023733331181575],[0.0063411230221391,0.041489515453577,0.010809266008437],[-0.012086324393749,0.01655725389719,0.0082440096884966]],[[-0.012983216904104,-0.018067972734571,-0.02188060246408],[0.037411846220493,-0.026906026527286,-0.012039357796311],[0.042204704135656,0.017920058220625,0.033518560230732]],[[-0.023095443844795,0.08083564043045,0.0054062129929662],[0.055487781763077,-0.019183911383152,0.088786140084267],[0.012325604446232,0.061079870909452,0.078937090933323]],[[-0.02719508856535,-0.05180449411273,0.0064755850471556],[0.059493191540241,-0.054638925939798,0.11485437303782],[0.053272303193808,0.037061370909214,0.080409958958626]],[[-0.026327732950449,0.054078485816717,-0.015827296301723],[0.060836054384708,-0.012858466245234,0.0040424545295537],[-0.062867380678654,-0.038437731564045,-0.030952248722315]],[[-0.010105331428349,-0.022310810163617,-0.069822877645493],[0.017744665965438,0.073984712362289,-0.049263291060925],[0.001637096866034,0.036174211651087,-0.017364230006933]],[[0.032098952680826,-0.00084388093091547,0.033275689929724],[-0.034211751073599,0.09251756966114,0.023978734388947],[-0.026864841580391,-0.018509274348617,-0.0030073442030698]],[[-0.024253319948912,-0.051309235394001,0.016454799100757],[-0.083392940461636,0.0073343040421605,0.042833294719458],[0.029736893251538,-0.016669541597366,0.050584703683853]],[[-0.00054566358448938,-0.029676182195544,-0.0022805898915976],[0.030843913555145,0.03979305550456,0.030224606394768],[0.0035021831281483,0.053095791488886,-0.058034379035234]],[[-0.07961281388998,-0.030046354979277,0.0022872497793287],[0.015026494860649,-0.041397415101528,0.040618341416121],[-0.0094389459118247,0.11896421760321,0.048753846436739]],[[-0.0123156523332,-0.0020939111709595,-0.0067310817539692],[-0.083229757845402,0.0082995127886534,0.0002214588021161],[-0.091345384716988,-0.013888889923692,0.037920854985714]],[[0.037345316261053,-0.072538711130619,0.047653172165155],[0.031722404062748,0.013374124653637,-0.0073347655124962],[0.050964210182428,-0.0029783598147333,0.055130235850811]],[[0.075313910841942,-0.046914771199226,0.0014124402077869],[-0.015454331412911,-0.051986075937748,0.043155249208212],[0.00012805995356757,0.037084169685841,0.0069457679055631]]],[[[-0.067823357880116,-0.071094542741776,-0.040379162877798],[-0.0093267736956477,0.040222130715847,0.030561842024326],[0.01323380600661,0.0074122841469944,0.10226372629404]],[[0.013617567718029,0.020376784726977,-0.0085196932777762],[-0.036467865109444,-0.03113804385066,0.034755241125822],[-0.031699441373348,0.030466439202428,-0.02034542709589]],[[0.015086052007973,0.034059260040522,-0.012765792198479],[0.016716973856091,-0.10643261671066,0.086359865963459],[-0.00089814641978592,-0.069287218153477,-0.077867180109024]],[[-0.070352979004383,0.14262230694294,0.065012224018574],[-0.08620648086071,-0.033103592693806,0.028862396255136],[0.068423978984356,-0.083177782595158,-0.053548511117697]],[[-0.030642967671156,-0.050501517951488,0.014106634072959],[-0.062316201627254,0.030363069847226,0.034918669611216],[0.0568090043962,0.017587387934327,-0.0050861923955381]],[[0.15288735926151,0.012696835212409,0.018960002809763],[0.082295335829258,-0.10639930516481,-0.010212930850685],[0.078447297215462,-0.098592191934586,-0.043036330491304]],[[-0.017157284542918,-0.019704634323716,-0.01838818565011],[-0.0080529283732176,-0.0033244455698878,-0.00055976992007345],[0.062538743019104,-0.019015641883016,-0.046322531998158]],[[-0.04454118013382,-0.077857844531536,-0.050731629133224],[0.09585140645504,-0.033944237977266,-0.016442785039544],[-0.047754861414433,-0.041832819581032,0.054482538253069]],[[0.036359716206789,-0.0026460504159331,0.07276713103056],[0.04132117331028,0.01838524453342,-0.093656986951828],[-0.041167449206114,0.02588652446866,0.091894254088402]],[[-0.15084517002106,0.075595393776894,0.042674284428358],[0.060773000121117,0.085798822343349,0.021673701703548],[0.060568176209927,-0.085047096014023,0.0044544069096446]],[[-0.093379572033882,0.037008266896009,-0.044699769467115],[-0.040657389909029,0.10274317115545,0.058733876794577],[-0.0086728865280747,-0.091036021709442,0.008051079697907]],[[0.098738215863705,0.014564004726708,-0.0083777261897922],[-0.016881696879864,-0.031574800610542,-0.01208695396781],[-0.036292772740126,0.10350443422794,-0.01836677454412]],[[0.047801654785872,-0.030979530885816,-0.032296717166901],[-0.023563614115119,-0.026381060481071,-0.02591303922236],[-0.045877046883106,0.053576119244099,-0.021343652158976]],[[-0.052048686891794,-0.056756943464279,0.017668260261416],[-0.046634256839752,0.079384535551071,0.021385326981544],[0.040111802518368,-0.023056793957949,-0.0087965028360486]],[[0.043293222784996,0.086563087999821,0.0039611677639186],[-0.010798448696733,0.021693589165807,-0.065907627344131],[-0.034168262034655,-0.069817081093788,-0.051935471594334]],[[0.0137376813218,-0.012298862449825,-0.019690303131938],[-0.10789231210947,-0.026072096079588,0.0052698864601552],[-0.094697408378124,-0.016732607036829,-0.11331604421139]],[[-0.027142541483045,0.045291908085346,-0.0092180650681257],[0.0051847915165126,-0.058819111436605,-0.082116991281509],[-0.021924315020442,-0.038143284618855,-0.093608886003494]],[[0.025350412353873,0.0087650362402201,-0.0053181177936494],[0.032556742429733,0.042758747935295,0.026820404455066],[-0.051873058080673,-0.0040582357905805,0.019690783694386]],[[0.0055695925839245,0.016839530318975,-0.0026613683439791],[-0.021966125816107,-0.029979871585965,0.034679528325796],[0.032075252383947,-0.022860715165734,-0.0083327861502767]],[[-0.085160799324512,-0.063022561371326,-0.0017878494691104],[0.024954764172435,0.027458995580673,0.048074040561914],[0.00099027378018945,-0.028159374371171,0.080003023147583]],[[-0.037239037454128,-0.010696476325393,-0.05263252183795],[-0.057071208953857,0.0043101175688207,-0.094147227704525],[-0.029112532734871,-0.029430147260427,-0.0588792078197]],[[0.067571714520454,0.084727510809898,-0.0082404939457774],[0.02117315120995,0.11715151369572,-0.062570922076702],[-0.0066387443803251,0.019242733716965,-0.045749451965094]],[[-0.046631895005703,-0.028505446389318,-0.026527635753155],[-0.042571980506182,0.10509790480137,-0.0011775618186221],[-0.016914481297135,0.014901464805007,0.046374596655369]],[[-0.10800073295832,-0.019801450893283,0.022411432117224],[0.039557367563248,-0.1099906489253,-0.060428842902184],[-0.084611423313618,-0.070649713277817,-0.078618578612804]],[[-0.044619213789701,-0.015749648213387,-0.012741290032864],[0.010760951787233,0.055237527936697,0.021539153531194],[-0.041682008653879,0.074246503412724,-0.07182314991951]],[[-0.044233862310648,0.039025340229273,-0.037971921265125],[0.10549364984035,-0.051898434758186,-0.080661781132221],[0.037999451160431,-0.033042144030333,-0.025877114385366]],[[0.047012247145176,0.080014958977699,0.023206626996398],[0.11232456564903,-0.043926235288382,0.006331879645586],[-0.033730559051037,0.04199443385005,0.037418119609356]],[[-0.060119647532701,-0.0861556828022,-0.0093335639685392],[0.1008498519659,-0.019112817943096,-0.046450726687908],[0.047288566827774,-0.06115535646677,0.068398274481297]],[[0.074092149734497,0.027799684554338,0.030224375426769],[-0.06301998347044,-0.044484924525023,-0.054070129990578],[0.072224378585815,-0.077410489320755,-0.061862956732512]],[[0.10289077460766,0.001485152519308,0.0031383158639073],[-0.019450189545751,0.12897336483002,-0.011452053673565],[0.02142670378089,-0.097737483680248,-0.0071658445522189]],[[-0.0085479076951742,0.042490087449551,-0.040712278336287],[0.023030364885926,-0.013048000633717,-0.011285835877061],[-0.036147654056549,-0.089627474546432,-0.068816632032394]],[[0.031547855585814,0.040720090270042,0.0032316036522388],[0.053332529962063,0.067939959466457,0.0060285893268883],[0.053511075675488,0.070827953517437,0.0057116709649563]],[[8.5839281382505e-05,0.047889996320009,-0.096135936677456],[-0.043446592986584,-0.053745575249195,0.0030095686670393],[0.0040956763550639,0.040498167276382,-0.042094644159079]],[[-0.071680389344692,-0.10164623707533,-0.063583634793758],[-0.05008552968502,-0.022659791633487,-0.056472405791283],[-0.037655357271433,0.034161441028118,-0.014283671043813]],[[0.037345621734858,0.046133689582348,0.099479034543037],[-0.050862427800894,0.010994331911206,0.063210166990757],[0.071735329926014,-0.070585824549198,-0.029866421595216]],[[0.028774805366993,-0.068626895546913,-0.0089933099225163],[-0.060947578400373,-0.15439541637897,-0.079705648124218],[0.083636648952961,0.010857073590159,-0.11021230369806]],[[0.078065156936646,0.014177714474499,-0.097097732126713],[-0.019039284437895,-0.042434979230165,-0.028095195069909],[-0.043114349246025,-0.0029017038177699,-0.023022254928946]],[[0.052642975002527,-0.13103517889977,0.043070778250694],[0.037993479520082,0.10055009275675,0.024934595450759],[0.075515486299992,-0.019895192235708,-0.020562946796417]],[[-0.00791703350842,-0.036933694034815,0.049874290823936],[0.045752216130495,0.033733550459146,-0.017035163938999],[0.033452764153481,0.021532053127885,-0.0055662430822849]],[[0.042380284518003,0.015075745992362,0.10540204495192],[0.091893129050732,0.0040504783391953,0.0086467852815986],[0.02665476873517,-0.019465047866106,-0.00052416505059227]],[[-0.067057020962238,-0.038789961487055,-0.023536156862974],[0.039846412837505,-0.0010072303703055,0.015119962394238],[-0.10279630124569,0.030119802802801,0.042986746877432]],[[-0.0092142447829247,-0.10901352018118,-0.047936700284481],[-0.038927275687456,-0.033662501722574,-0.023336226120591],[0.027487544342875,0.07015211135149,0.12084431946278]],[[-0.021688157692552,-0.046033766120672,-0.0015475392574444],[0.011962026357651,0.045507591217756,-0.071069464087486],[0.037705928087234,-0.030935408547521,-0.060766216367483]],[[0.033616673201323,0.060106202960014,0.0041573191992939],[-0.053786031901836,-0.068072371184826,-0.044160846620798],[-0.016181401908398,0.0013036353047937,0.029257377609611]],[[-0.026571514084935,0.02046156860888,0.078284747898579],[0.0040985988453031,0.0020447564311326,-0.00081704696640372],[0.061357818543911,-0.060806225985289,0.00042467538150959]],[[-0.095053672790527,-0.056981302797794,0.021008770912886],[-0.054071836173534,0.038995746523142,-0.025661535561085],[0.073746010661125,0.041702605783939,0.013760225847363]],[[-0.05477449670434,-0.026741787791252,0.099777542054653],[-0.071850664913654,-0.0092437947168946,0.034816436469555],[0.008402924053371,-0.018389916047454,-0.015586320310831]],[[-0.029503162950277,-0.029670037329197,-0.0363156683743],[-0.0052958754822612,0.077299490571022,0.00064812717027962],[-0.039209648966789,0.061315272003412,-0.052833311259747]],[[-0.085329338908195,0.048061341047287,-0.020742205902934],[0.024082543328404,0.023402951657772,0.043664608150721],[0.010913076810539,0.0182901378721,0.027470273897052]],[[-0.0039969147183001,0.087196506559849,-0.028001520782709],[0.015694165602326,-0.023279516026378,-0.02609827555716],[-0.091181449592113,0.0066440836526453,0.11463530361652]],[[0.0026913441251963,0.04130420088768,-0.042002953588963],[0.048778846859932,-0.13298456370831,-0.014696286991239],[-0.050125882029533,0.044364042580128,0.011215202510357]],[[0.073695495724678,-0.0085865017026663,0.027493484318256],[-0.013816281221807,0.0068648303858936,0.010965151712298],[-0.1084782704711,0.038614071905613,-0.014544381760061]],[[0.085051313042641,-0.00089066987857223,0.044923085719347],[0.058269795030355,0.046023823320866,0.032050304114819],[0.083351291716099,0.01761582121253,0.07788422703743]],[[-0.037626650184393,0.019326372072101,0.051488228142262],[0.1674889177084,0.074768163263798,0.076773196458817],[-0.0072709848172963,-0.02514579705894,-0.0069223809987307]],[[-0.064884580671787,-0.041706893593073,-0.064952127635479],[-0.0030702971853316,-0.015450965613127,-0.015485688112676],[0.059945914894342,0.0046836356632411,-0.022993357852101]],[[-0.069547034800053,-0.081327125430107,0.016567321494222],[-0.036720164120197,-0.0087576685473323,-0.098911628127098],[-0.03219960257411,-0.0068754712119699,-0.028832936659455]],[[-0.075047306716442,-0.051424026489258,-0.048568863421679],[-0.011208810843527,0.065298557281494,0.045072115957737],[0.054274849593639,-0.10743958503008,-0.039279498159885]],[[0.00032341090263799,0.0012844846351072,0.035582602024078],[-0.042940884828568,-0.0013674529036507,-0.056221235543489],[-0.010758258402348,-0.1579175889492,-0.11988562345505]],[[0.096439428627491,0.026977632194757,0.039914835244417],[-0.054805308580399,-0.046293817460537,0.02687662653625],[0.070272423326969,0.017678119242191,0.029040910303593]],[[0.040446750819683,0.062542110681534,0.035572648048401],[-0.02097032032907,-0.07513066381216,0.0063417437486351],[0.036356374621391,-0.070034757256508,0.015130238607526]],[[0.058955650776625,0.014065238647163,-0.035956528037786],[-0.030575821176171,0.031239427626133,0.030535478144884],[0.0085744233801961,-0.09365551918745,-0.083378858864307]],[[-0.056246563792229,0.012411588802934,-0.059877268970013],[-0.073798716068268,0.057115878909826,0.032711148262024],[0.097763128578663,0.059365306049585,0.081583447754383]],[[0.028569471091032,-0.0097409412264824,0.0015940567245707],[-0.086637452244759,0.080267012119293,-0.036485243588686],[0.066688217222691,-0.060228228569031,0.055018145591021]],[[-0.020682919770479,0.00078533054329455,-0.059360515326262],[-0.059200093150139,-0.090409845113754,-0.066866382956505],[0.069585554301739,0.036993537098169,-0.099858172237873]]],[[[0.11455973237753,-0.01004090718925,0.0029106957372278],[0.091816000640392,0.027893170714378,0.022797029465437],[0.032943781465292,-0.0044558830559254,-0.0036952593363822]],[[0.043005678802729,-0.086470544338226,0.027147321030498],[-0.13952055573463,0.033419247716665,-0.044724185019732],[-0.06319959461689,-0.10576418787241,-0.057350493967533]],[[-0.0080082379281521,-0.0075731039978564,-0.086032666265965],[0.0090587623417377,-0.066975682973862,-0.035665661096573],[0.028982363641262,-0.063545949757099,-0.044928878545761]],[[-0.028136873617768,-0.053811941295862,-0.005096894223243],[-0.057989433407784,-0.14706805348396,-0.00047466674004681],[-0.038669787347317,0.011773776262999,-0.069563426077366]],[[0.036145318299532,-0.05605336651206,0.0073884688317776],[0.051609206944704,0.033649653196335,-0.0057779513299465],[-0.12307290732861,0.031936541199684,0.038124054670334]],[[0.033098183572292,0.080107241868973,0.05831790715456],[-0.026061587035656,0.033940818160772,-0.062351185828447],[-0.02053489163518,0.051277417689562,0.035471484065056]],[[-0.03016633912921,-0.015093821100891,-0.056396245956421],[-0.05974929779768,-0.05509191006422,-0.003533091628924],[0.00078433909220621,-0.060661476105452,0.012123044580221]],[[-0.079504519701004,-0.060242936015129,-0.034964255988598],[0.10537777096033,0.044268302619457,0.024381125345826],[-0.081653565168381,-0.070414617657661,-0.055390279740095]],[[0.0077042244374752,-0.12505881488323,-0.060109589248896],[-0.067153550684452,-0.034980028867722,-0.0023817559704185],[0.089816950261593,0.06231077387929,-0.031003218144178]],[[0.099187269806862,-0.029921503737569,-0.06055661663413],[0.042598452419043,-0.042297925800085,0.057527977973223],[-0.061132960021496,-0.017689645290375,0.044798851013184]],[[0.088952712714672,-0.011294876225293,0.032085087150335],[-0.042638458311558,-0.059339545667171,-0.021621907129884],[0.048923145979643,-0.038557525724173,-0.080506801605225]],[[0.047023970633745,-0.16798242926598,-0.031449317932129],[-0.0035589842591435,0.029969660565257,0.047806605696678],[-0.0051054251380265,0.026890819892287,-0.053643081337214]],[[0.071383759379387,0.027487663552165,-0.19137439131737],[-0.025214165449142,0.089930340647697,0.004403620492667],[-0.043013650923967,0.022466618567705,-0.08487993478775]],[[0.055008322000504,0.082931444048882,-0.029654778540134],[0.057567868381739,0.095100663602352,0.041142325848341],[-0.059066083282232,-0.081735245883465,0.015906972810626]],[[0.0850899964571,-0.012963462620974,-0.052834499627352],[-0.095329284667969,0.030837815254927,0.087387301027775],[-0.14107367396355,0.21897993981838,0.011457733809948]],[[-0.065287098288536,-0.056895725429058,0.1437081694603],[-0.017549410462379,-0.03992486000061,0.0045922677963972],[-0.045756116509438,-0.093441426753998,0.051002662628889]],[[-0.086806386709213,-0.036225643008947,0.089347451925278],[0.060221869498491,0.045302838087082,-0.10945348441601],[-0.02272367104888,-0.033514685928822,-0.030221097171307]],[[0.010153207927942,-0.03398085013032,-0.032858535647392],[-0.11709827929735,-0.014893851242959,0.0042470120824873],[0.00068935210583732,-0.064827002584934,0.022613298147917]],[[-0.049416478723288,0.024339739233255,-0.11746897548437],[0.088211379945278,-0.10321529209614,0.053375281393528],[-0.10386972129345,-0.1029119566083,0.029242044314742]],[[0.043764147907495,-0.076709888875484,-0.065051697194576],[0.067537933588028,0.0078991241753101,-0.088392242789268],[-0.028740450739861,-0.097325421869755,-0.057038407772779]],[[-0.00429318100214,0.0009609162225388,-0.035389922559261],[-0.015229471959174,0.09164983779192,-0.0013471437850967],[0.051745027303696,0.049925953149796,-0.039215978235006]],[[0.15090414881706,0.038570865988731,-0.033396419137716],[0.065392039716244,-0.011779676191509,-0.073189795017242],[-0.16062086820602,-0.049271360039711,-0.037365220487118]],[[0.0087852170690894,0.027057575061917,0.026816165074706],[-0.080788150429726,-0.0073217363096774,0.0030588817317039],[0.00129342766013,0.0045725447125733,0.011589787900448]],[[-0.065054200589657,-0.03407396748662,0.0057474114000797],[0.016543693840504,-0.010970822535455,-0.092802062630653],[-0.03488964214921,-0.10042379051447,0.16000516712666]],[[0.082794107496738,0.08604558557272,-0.010518262162805],[0.030557667836547,-0.10167840868235,0.013422755524516],[-0.099375046789646,-0.06951879709959,0.17336697876453]],[[-0.23067450523376,0.0095736812800169,-0.073403924703598],[-0.11471087485552,0.056607790291309,-0.18851312994957],[0.022848227992654,-0.077268213033676,0.010981881059706]],[[0.050652530044317,0.013791113160551,-0.11991368979216],[-0.11500573158264,0.025098150596023,0.060031037777662],[-0.10971551388502,-0.00017213332466781,0.035156235098839]],[[0.032558813691139,0.016958266496658,0.017833843827248],[0.007913320325315,-0.089883022010326,-0.072908349335194],[-0.22665879130363,-0.018741521984339,0.14524206519127]],[[0.00035624287556857,0.082235209643841,-0.0014692362165079],[0.0019789671059698,0.043151289224625,-0.077690497040749],[-0.056633368134499,-0.055885132402182,0.015361843630672]],[[0.14390410482883,0.059900008141994,-0.13369862735271],[-0.00088552216766402,-0.11419124156237,-0.018309343606234],[0.084030069410801,-0.16331797838211,0.0526487454772]],[[-0.021191030740738,0.023954544216394,-0.1184750571847],[-0.074521124362946,-0.01550617814064,-0.18750295042992],[-0.028732402250171,0.030265334993601,0.10593436658382]],[[-0.087199851870537,0.13863003253937,0.25839626789093],[0.066482521593571,0.021361885592341,0.1130845695734],[-0.067394189536572,-0.31556901335716,0.035636357963085]],[[0.076249651610851,-0.084717608988285,-0.051115248352289],[0.06954050809145,0.00712123606354,-0.087396286427975],[0.29604256153107,0.238286241889,-0.0021153746638447]],[[0.057691756635904,0.014322229661047,0.18008829653263],[0.010877034626901,-0.085592851042747,-0.0011677017901093],[0.0011936011724174,0.047822944819927,-0.07738584280014]],[[-0.08380888402462,-0.047632358968258,-0.034001018851995],[0.015556640923023,-0.055016785860062,0.034382000565529],[-0.16173049807549,0.082594886422157,0.038988046348095]],[[0.060841642320156,0.1653029024601,-0.047064453363419],[-0.0099145127460361,-0.066091269254684,-0.001400209730491],[0.0034722178243101,0.038158167153597,0.018445368856192]],[[-0.12384875863791,-0.037271104753017,0.085534445941448],[-0.010385973379016,0.16534000635147,-0.035597994923592],[0.048554219305515,0.014086417853832,-0.14537245035172]],[[-0.24576471745968,0.13863356411457,0.25898835062981],[0.15116882324219,-0.026944728568196,-0.1958521604538],[-0.12272082269192,-0.13819310069084,0.12331514060497]],[[0.0019711540080607,0.0059147016145289,0.035578552633524],[0.02513463050127,0.042554646730423,-0.010375843383372],[0.088230282068253,-0.11411019414663,-0.182766482234]],[[0.035698108375072,0.031713653355837,0.0026897320058197],[-0.018623638898134,0.022395551204681,-0.04356300458312],[-0.023325674235821,-0.046211645007133,-0.15646460652351]],[[0.024547584354877,-0.11042576283216,0.017954029142857],[-0.033973522484303,-0.0063313539139926,0.044211998581886],[-0.012273035943508,-0.065087921917439,-0.053478356450796]],[[-0.069606296718121,0.039163757115602,-0.1063190177083],[0.00061383540742099,-0.098017543554306,0.020861653611064],[0.012832682579756,0.023615041747689,0.090145960450172]],[[0.006484679877758,-0.039543196558952,0.079084485769272],[0.053826067596674,-0.05448292195797,-0.0053008729591966],[0.070619210600853,-0.02127954736352,0.10547276586294]],[[-0.11103292554617,0.040237963199615,0.089089445769787],[0.019841782748699,0.085066758096218,-0.040263045579195],[0.026316495612264,-0.085356473922729,-0.091849081218243]],[[-0.033003862947226,0.17351467907429,-0.20102681219578],[-0.35345643758774,0.17317965626717,-0.090984202921391],[0.038567770272493,0.14304609596729,0.0041171233169734]],[[-0.12300073355436,-0.0088158827275038,-0.14469270408154],[-0.020709166303277,0.015631694346666,0.047947812825441],[0.038418903946877,0.026110356673598,-0.089332558214664]],[[-0.17331418395042,0.010652361437678,0.026073034852743],[0.080121397972107,-0.032553445547819,-0.022451736032963],[0.12973555922508,-0.070845738053322,0.070975095033646]],[[0.048199310898781,-0.02882182225585,-0.052808772772551],[-0.071787543594837,-0.044193398207426,-0.025914272293448],[-0.021188816055655,0.021659502759576,0.056433815509081]],[[-0.079755410552025,-0.14164698123932,-0.032604418694973],[-0.17622102797031,0.071754887700081,0.015428219921887],[0.045721083879471,0.030551847070456,0.10911728441715]],[[-0.020173288881779,-0.10449353605509,-0.030081477016211],[-0.06395335495472,-0.027692323550582,0.041746728122234],[0.050611555576324,0.054519586265087,0.01752301864326]],[[0.0060073882341385,-0.099573187530041,-0.014836075715721],[0.027158441022038,0.008976012468338,0.023830993101001],[0.013763312250376,0.067775763571262,0.032997883856297]],[[-0.11550735682249,0.030301030725241,0.098758786916733],[-0.01909102499485,-0.0047815358266234,-0.018721645697951],[0.059988744556904,0.036288265138865,-0.0044197761453688]],[[-0.07022700458765,-0.038652658462524,-0.069634653627872],[-0.07008084654808,-0.055595114827156,-0.10323838889599],[0.014788055792451,0.044635064899921,-0.036305330693722]],[[0.070009052753448,-0.040737546980381,0.23744221031666],[0.053056657314301,0.16313324868679,0.080819509923458],[0.068189166486263,0.012745718471706,0.11517632007599]],[[0.029059007763863,-0.079062104225159,-0.034158073365688],[-0.0036595165729523,-0.03378913551569,0.017364054918289],[0.059620279818773,-0.060904867947102,0.17362034320831]],[[-0.029352152720094,-0.0070373704656959,-0.056315321475267],[-0.015273967757821,-0.11969398707151,-0.0287846904248],[0.017247870564461,-0.11542857438326,0.055467423051596]],[[-0.081529691815376,0.030514782294631,0.04152986779809],[-0.015337000600994,-0.07895590364933,-0.10613179951906],[0.050872009247541,-0.025573652237654,-0.0012129257665947]],[[0.016729593276978,-0.033240795135498,-0.029550142586231],[0.0021409846376628,0.040662206709385,-0.025563344359398],[-0.064127035439014,-0.088772684335709,-0.072512619197369]],[[-0.17623025178909,0.10810615867376,0.053259208798409],[-0.074577502906322,-0.017476361244917,0.0057773655280471],[0.094461485743523,0.035227078944445,0.029886534437537]],[[-0.052490916103125,-0.037716720253229,0.034838367253542],[0.020909974351525,0.066269002854824,-0.023429537191987],[0.048603910952806,0.0039372052997351,0.020678991451859]],[[-0.040925849229097,-0.01507021766156,-0.15016677975655],[-0.1182399019599,-0.026051728054881,0.0060944152064621],[0.14753024280071,0.12612228095531,0.024862980470061]],[[-0.015778416767716,0.012598681263626,0.16394229233265],[-0.064777746796608,0.17882084846497,-0.044302936643362],[-0.087736800312996,-0.067506805062294,-0.12119390070438]],[[0.11079446971416,-0.070428542792797,-0.15279924869537],[-0.011006460525095,0.050841998308897,-0.0037171836011112],[0.0017216205596924,-0.19598087668419,0.044158585369587]],[[0.036837007850409,-0.098973169922829,-0.10400635749102],[-0.078106366097927,-0.052048664540052,0.11611320823431],[0.05741798132658,0.06926766037941,-0.061905018985271]]]],"nOutputPlane":128,"kW":3,"kH":3,"bias":[-0.0094322999939322,0.00046276653301902,-0.0032271037343889,-0.0061664297245443,-0.0033527554478496,-0.0075097652152181,-0.0027688178233802,-0.0044393073767424,-0.0047362730838358,-0.014212036505342,-0.0043969512917101,-0.0095920022577047,-0.0031772013753653,-0.0063413614407182,-0.016928674653172,-0.0066147125326097,-0.0053861802443862,-0.0026549980975688,-0.00056249811314046,-0.006396637763828,-0.0035103741101921,-0.0067708529531956,-0.007105365395546,-0.0051199966110289,-0.0064286827109754,-0.006828423589468,-0.0046577886678278,-0.0032492240425199,-0.0021526368800551,-0.0081759011372924,-0.0054262783378363,-0.0078533757477999,-0.010679971426725,-0.0046326820738614,-0.0019500554772094,-0.0045784562826157,-0.0078862421214581,0.00022225006250665,-0.0062188468873501,-0.0055245291441679,-0.005238592159003,-0.0058892252855003,-0.0040519027970731,-0.0057558855041862,-0.0053950557485223,-0.0038638336118311,-0.0065292823128402,-0.0090258596464992,-0.0051863393746316,0.00080524937948212,-0.0041167051531374,-0.0055138263851404,-0.0026024498511106,-0.0027606934309006,-0.0030215322040021,-0.0067715989425778,-0.0024932427331805,-0.0060071935877204,-0.0057770637795329,-0.0056531624868512,-0.0058529390953481,-0.0052540958859026,-0.0085860025137663,-0.005529398098588,-0.0066254520788789,-0.0044873463921249,-0.0039866887964308,-0.0063852020539343,-0.0053950189612806,-0.0040693953633308,-0.0048961793072522,-0.0032829537522048,-0.0069933976046741,-0.0018741296371445,-0.005934034474194,-0.0063779740594327,-0.0052124634385109,-0.0060457177460194,-0.0055990824475884,-0.0042502847500145,-0.010135414078832,-0.0046979589387774,-0.0027849387843162,-0.0095562180504203,-0.0043113585561514,-0.0085145654156804,-0.0059371395036578,-0.0063356179744005,-0.0034825841430575,-0.0033998584840447,-0.0058086584322155,-0.0073780473321676,-0.0010731745278463,-0.0015820475528017,-0.0039845113642514,-0.0026133621577173,-0.01134926173836,-0.0054880469106138,-0.007336878683418,-0.0049822079017758,-0.0019526079995558,-0.0035902808886021,-0.0029152203351259,-0.00061069772345945,-0.0052465875633061,-0.0085630686953664,-0.0047321296297014,-0.0080675957724452,-0.0053922324441373,0.0082346741110086,0.00057344167726114,-0.0024301467929035,-0.0031014275737107,-0.00089313474018127,-0.0043110805563629,-0.0052303145639598,-0.0056586130522192,-0.0050673810765147,-0.0059892991557717,-0.004713402595371,-0.0057226847857237,-0.0017752628773451,-0.0045964303426445,-0.0027774521149695,-0.0042080753482878,-0.0045146401971579,-0.005391048733145,-0.0032717499416322],"nInputPlane":64},{"weight":[[[[-0.0064086844213307,0.014400883577764,0.046846758574247],[0.034757569432259,0.063202425837517,-1.585573045304e-05],[0.0067976275458932,-0.033959459513426,-0.067161098122597]],[[0.020211476832628,-0.041727405041456,-0.029462007805705],[-0.052145652472973,-0.043179232627153,0.049004331231117],[-0.0094279246404767,-0.061957355588675,-0.015919297933578]],[[-0.0077791553921998,0.047305274754763,-0.014557410031557],[-0.076863721013069,0.026533724740148,-0.051670357584953],[-0.10008157789707,0.048624824732542,0.049505490809679]],[[0.032688517123461,-0.045798007398844,0.072812467813492],[-0.0020715452264994,0.088745780289173,-0.022618118673563],[-0.0089822402223945,0.046385250985622,-0.032975316047668]],[[-0.066692300140858,-0.036616116762161,-0.0081565799191594],[-0.038400389254093,-0.12058331817389,0.015974840149283],[0.0069295465946198,-0.028648678213358,0.021840767934918]],[[0.06276524066925,-0.017141211777925,-0.054542902857065],[-0.032376900315285,-0.0051980447024107,-0.055914431810379],[0.027305396273732,-0.078085727989674,-0.025121023878455]],[[0.014767246320844,-0.0061698835343122,0.067227967083454],[-0.039871137589216,-0.063480570912361,0.033477954566479],[0.012864597141743,-0.032251246273518,-0.07941060513258]],[[0.072924517095089,0.064984053373337,-0.024049233645201],[-0.017778918147087,-0.077945351600647,0.029026659205556],[0.069924250245094,0.040017619729042,0.041469197720289]],[[0.034140896052122,0.0024065517354757,-0.036695923656225],[0.01515459921211,-0.018333930522203,0.033093344420195],[0.059866238385439,-0.061259772628546,0.016312962397933]],[[-0.0046271029859781,0.060262512415648,0.13362808525562],[0.029618285596371,0.0089911017566919,-0.028522331267595],[0.075723305344582,-0.022479686886072,-0.018824510276318]],[[0.02350520901382,-0.028186682611704,-0.041472677141428],[0.031855121254921,-0.038655839860439,0.02856813184917],[0.043975964188576,0.026215197518468,0.021045509725809]],[[-0.040896393358707,-0.049683626741171,0.02498160302639],[0.10182698816061,0.028024340048432,-0.022320384159684],[-0.055995929986238,0.010010851547122,-0.029413159936666]],[[-0.069447100162506,0.03138468042016,-0.038497198373079],[-0.0007836144650355,-0.00086328713223338,0.030022442340851],[-0.057196021080017,-0.018913634121418,-0.0060830032452941]],[[-0.0053642657585442,-0.0033245596569031,-0.049147341400385],[0.0060146637260914,-0.048795383423567,0.032518684864044],[0.056169662624598,0.0022274570073932,-0.031653750687838]],[[-0.055391523987055,0.0072186035104096,0.022401621565223],[-0.025292402133346,-0.012922117486596,0.057828582823277],[0.035413015633821,-0.064348667860031,0.023257872089744]],[[-0.0080188373103738,-0.045900713652372,-0.034431137144566],[-0.014005516655743,0.033070750534534,0.065062306821346],[0.0926323980093,-0.089193589985371,0.076972588896751]],[[-0.032418869435787,0.0092559522017837,-0.024111391976476],[-0.0328952036798,-0.00038476829649881,0.085133254528046],[-0.0017608494963497,0.078063145279884,-0.041945807635784]],[[-0.015223718248308,-0.035786844789982,0.051870219409466],[0.0088344002142549,-0.0063115167431533,-0.099702097475529],[0.048935323953629,0.077896662056446,-0.032615955919027]],[[-0.052064720541239,-0.015635496005416,0.029207389801741],[0.0027049973141402,-0.0226308144629,0.037382408976555],[0.044622156769037,0.053243763744831,0.0021984644699842]],[[-0.011727871373296,0.022901544347405,0.010439399629831],[0.037764448672533,-0.035943429917097,-0.0073417602106929],[0.022369217127562,0.028823222965002,-0.061593294143677]],[[-0.092028617858887,0.018703805282712,0.0038929111324251],[0.089589625597,-0.048465631902218,0.006673738360405],[-0.00057267810916528,-0.058987576514482,0.040693499147892]],[[0.035817846655846,-0.013968414627016,0.0076970099471509],[-0.01135223172605,0.00011665395140881,-0.035529989749193],[-0.0053194388747215,0.025720564648509,0.0084798941388726]],[[0.023081606253982,-0.020204180851579,0.10970135778189],[-0.035902600735426,0.032129265367985,-0.015437775291502],[0.0084753995761275,0.0061526405625045,0.047386448830366]],[[0.037145517766476,-0.01773963496089,0.030855502933264],[-0.046592138707638,0.025527952238917,-0.027930598706007],[-0.028299143537879,0.002001081360504,0.0040748547762632]],[[0.012594982050359,0.050523448735476,-0.024371756240726],[0.0065968972630799,0.044069863855839,0.027050152420998],[0.024768490344286,0.057219583541155,0.0059164548292756]],[[-0.052588444203138,0.037499409168959,-0.05356527119875],[-0.0025022036861628,-0.015828585252166,0.026473557576537],[-0.039806455373764,-0.0071169487200677,-0.073957949876785]],[[-0.0031124260276556,-0.017564039677382,0.05181235820055],[-0.027479419484735,-0.059328839182854,0.013179860077798],[0.015952939167619,0.10714439302683,0.083089388906956]],[[-0.033613707870245,-0.045180927962065,-0.0022316004615277],[-0.0057522361166775,0.090682283043861,0.023963704705238],[0.036642163991928,-0.027901783585548,-0.049419522285461]],[[0.027876252308488,0.048401303589344,-0.00043530919356272],[-0.061000522226095,0.013652559369802,-0.033365320414305],[0.05018388107419,-0.076748088002205,-0.010221090167761]],[[-0.035309292376041,-0.079718254506588,0.0083490367978811],[-0.00016390380915254,-0.020105758681893,0.040543630719185],[0.031591583043337,-0.056702587753534,0.0086450977250934]],[[0.010070749558508,0.054496254771948,0.056263126432896],[0.050168171525002,-0.0088813425973058,0.038851201534271],[-0.05951739102602,-0.073916964232922,-0.023797953501344]],[[-0.05155373737216,0.020460335537791,-0.05917351692915],[0.088996939361095,-0.0037268379237503,-0.012493591755629],[-0.036179646849632,0.018864780664444,-0.015604014508426]],[[-0.023580459877849,-0.05840077996254,0.041752055287361],[-0.016354346647859,-0.021767323836684,0.0071887569501996],[0.050986181944609,0.054344240576029,0.046177197247744]],[[0.006031041033566,-0.053078658878803,0.039170134812593],[-0.0055024013854563,-0.095812521874905,-0.002852524863556],[0.032090276479721,0.035831600427628,0.019071992486715]],[[-0.042735677212477,-0.038187824189663,-0.01032442599535],[0.067956082522869,-0.047930013388395,-0.0092607885599136],[0.048884022980928,0.070886619389057,0.031288031488657]],[[0.024758905172348,0.026222363114357,-0.01441627368331],[-0.0032203795854002,0.0067722829990089,-0.0422936193645],[0.03896239772439,0.038587331771851,0.024234764277935]],[[-0.050739079713821,0.00029301643371582,-0.0021503423340619],[0.039069570600986,-0.014932394959033,-0.031009141355753],[0.045860506594181,-0.056965094059706,0.080541118979454]],[[0.035684548318386,0.0069421292282641,0.0035354366991669],[-0.094833821058273,0.017789358273149,-0.037396274507046],[0.014250778593123,-0.017251221463084,-0.059476912021637]],[[-0.015292836353183,0.0055494424887002,0.10300797969103],[0.039852954447269,0.05141544342041,0.11117388308048],[-0.022282777354121,-0.07466471940279,0.020703863352537]],[[-0.043330244719982,0.01072712149471,-0.013433186337352],[-0.028696432709694,-0.051546085625887,0.005747995339334],[-0.052744720131159,0.02407062985003,0.074236996471882]],[[0.022518210113049,-0.094437308609486,0.0072605567984283],[-0.014230360276997,0.015276022255421,0.023951627314091],[-0.044725231826305,0.0055036740377545,0.04213659465313]],[[0.011832477524877,-0.041938237845898,-0.076246984302998],[-0.043583117425442,-0.025206882506609,-0.078211784362793],[0.01920199021697,0.037603534758091,-0.026426952332258]],[[-0.032152581959963,0.056601833552122,-0.074022382497787],[-0.040541388094425,0.025280242785811,0.062537528574467],[0.009392848238349,0.017908556386828,0.0032980539835989]],[[0.0054267048835754,0.019083142280579,0.04545059800148],[-0.0051820208318532,0.048333570361137,0.046303022652864],[0.046918455511332,-0.01935001835227,0.010591636411846]],[[-0.00044483566307463,0.014213060028851,-0.0029540895484388],[0.045532893389463,0.0013002211926505,0.06640762090683],[-0.041771452873945,-0.032651130110025,-0.071873918175697]],[[0.05422504991293,-0.030025014653802,0.031718160957098],[-0.018634933978319,0.025908458977938,-0.025353249162436],[-0.010205367580056,-0.017802067101002,-0.045359596610069]],[[-0.0080232182517648,0.014497751370072,0.0065208314917982],[0.039044622331858,-0.021950984373689,0.021569291129708],[0.0019524762174115,-0.008576113730669,0.018717225641012]],[[0.019512144848704,-0.01994264125824,-0.015522189438343],[0.041367087513208,0.0017518356908113,-0.008582204580307],[0.024959623813629,0.087102673947811,0.0323431417346]],[[0.051973640918732,-0.067877292633057,-0.041581526398659],[-0.09436322748661,0.030004926025867,0.037998862564564],[0.048873603343964,-0.017328893765807,-0.018928235396743]],[[-0.029834253713489,0.032776080071926,-0.010104077868164],[0.037728760391474,0.059325013309717,-0.046053431928158],[0.0031694676727057,-0.017550984397531,0.041945327073336]],[[0.0065927561372519,0.040827352553606,0.012637688778341],[-0.039390224963427,0.014593779109418,-0.0031503308564425],[-0.014696074649692,-0.084697559475899,0.049570053815842]],[[-0.019830467179418,0.045369811356068,0.0077936230227351],[-0.065627381205559,-0.023317735642195,0.029357491061091],[0.02405646070838,-0.019709387794137,0.046436671167612]],[[-0.013039429672062,-0.054548539221287,-0.042921051383018],[0.014978255145252,-0.0064401943236589,-0.010661688633263],[0.027588656172156,-0.048732992261648,0.025152627378702]],[[0.010222439654171,0.042580667883158,-0.064474411308765],[-0.024539591744542,-0.020743943750858,0.012193419039249],[0.067811392247677,0.071898423135281,0.072240747511387]],[[0.10640354454517,-0.0026799631305039,0.046167440712452],[0.005164950620383,-0.033466219902039,0.0007756797131151],[-0.012314576655626,-0.070925354957581,0.0058137709274888]],[[0.04905029386282,0.016950728371739,-0.06677882373333],[0.0082641262561083,-0.02025568112731,0.042616482824087],[-0.04969884827733,-0.0044091064482927,0.053962416946888]],[[-0.018433419987559,-0.029208991676569,0.032077897340059],[0.035787966102362,-0.039336904883385,0.013001514598727],[0.038183353841305,-0.047912959009409,0.0022248772438616]],[[-0.063293658196926,-0.050377301871777,-0.0079393768683076],[-0.040189918130636,-0.035199102014303,-0.067701101303101],[0.012193555943668,0.010928423143923,0.042656265199184]],[[0.059642672538757,0.037439793348312,0.065568149089813],[0.051080122590065,0.0051129134371877,-0.057916942983866],[-0.033323246985674,-0.027765450999141,-0.019786978140473]],[[0.019386125728488,-0.060065533965826,0.024104537442327],[-0.011690191924572,0.053242962807417,-0.091590069234371],[0.048392426222563,-0.061968453228474,0.03029072843492]],[[-0.028198109939694,0.042329017072916,0.016060194000602],[-0.03826942294836,-0.072183728218079,0.083896227180958],[0.034432847052813,0.014299781993032,-0.036745171993971]],[[-0.007491216994822,-0.075300544500351,0.020992513746023],[0.00098481064196676,-0.060655795037746,0.044427428394556],[0.011776639148593,0.014484665356576,0.056600637733936]],[[0.012843150645494,0.04096282273531,0.027910429984331],[0.027852630242705,0.065138667821884,-0.0013980031944811],[-0.023471318185329,-0.048777401447296,-0.055664531886578]],[[-0.052909310907125,0.032751325517893,-0.0010112561285496],[-0.010292033664882,-0.054679736495018,-0.035634547472],[-0.0015063028549775,-0.04882263019681,-0.064155489206314]],[[-0.0088667916134,-0.10244269669056,-0.03409269452095],[-0.02943841740489,0.0036249826662242,-0.022669121623039],[0.027279121801257,0.015007393434644,0.035837907344103]],[[-0.0066518429666758,-0.053810808807611,0.10342854261398],[0.010715267620981,0.066094778478146,-0.017310652881861],[0.070922024548054,0.074321016669273,-0.00099120638333261]],[[0.016755254939198,-0.060923773795366,-0.01171927433461],[0.023879257962108,-0.025018062442541,0.0053201257251203],[-0.020548213273287,-0.075053259730339,0.018043698742986]],[[-0.023244425654411,0.012564213015139,0.027853595092893],[-0.087339535355568,-0.011520708911121,-0.012675731442869],[-0.061993636190891,0.065829798579216,-0.02617428265512]],[[0.029835775494576,-0.049766551703215,-0.0024012650828809],[-0.0065448954701424,-0.038620509207249,-0.044199366122484],[0.032337546348572,0.0095947347581387,0.011700625531375]],[[-0.046601705253124,-0.01131784170866,0.0011563003063202],[-0.052981980144978,0.049256559461355,0.045507621020079],[0.084785617887974,-0.02253364212811,0.00050313404062763]],[[-0.038818374276161,-0.032177485525608,-0.043413650244474],[-0.023594109341502,0.0058955955319107,0.0033505726605654],[-0.029085954651237,-0.053183738142252,0.021368891000748]],[[-0.033931456506252,0.022985668852925,0.029554722830653],[-0.017103450372815,-0.060416661202908,0.029151475057006],[-0.0047651533968747,0.016724452376366,-0.022720400243998]],[[-0.0096937716007233,-0.016864970326424,0.028595624491572],[-0.075606651604176,-0.0020286375656724,0.0038422101642936],[0.078831240534782,0.026935612782836,-0.049059092998505]],[[0.051117036491632,0.0065250215120614,0.019002528861165],[0.025149868801236,0.015740245580673,-0.01205220259726],[-0.012965173460543,0.002177621005103,-0.022791335359216]],[[-0.030854366719723,0.025565452873707,-0.004583147354424],[0.014870717190206,-0.028044443577528,-0.072579637169838],[0.029718952253461,-0.020041322335601,-0.038894515484571]],[[-0.026497010141611,0.070202574133873,0.01646007783711],[-0.024920659139752,-0.061243865638971,0.046074338257313],[-0.00047855987213552,-0.020082408562303,-0.007523451000452]],[[0.0024106693454087,0.0017201714217663,0.038280688226223],[-0.013502559624612,-0.020354636013508,0.034988455474377],[-0.0051770200952888,-0.05751671269536,-0.0034189175348729]],[[-0.013190180063248,0.021810425445437,0.031755637377501],[0.012583182193339,0.023272817954421,9.4715403974988e-05],[0.048864677548409,0.01199768576771,-0.00075730221578851]],[[0.023877765983343,0.020376881584525,0.038887500762939],[0.032137401401997,-0.056822292506695,0.0038163040298969],[0.087017379701138,-0.025872219353914,0.02506535500288]],[[-0.061339538544416,-0.0067556030116975,0.074793361127377],[0.058573961257935,0.013424606993794,-0.0091987494379282],[0.033215768635273,0.00058654753956944,0.077174328267574]],[[0.026531536132097,-0.049963589757681,-0.025603622198105],[0.027515452355146,0.0021344986744225,-0.035911675542593],[-0.050623789429665,-0.0010483413934708,-0.073902569711208]],[[0.052009858191013,0.018286323174834,-0.00083115819143131],[0.019554171711206,0.0040554208680987,-0.038386136293411],[0.047836821526289,0.023051060736179,0.06021511182189]],[[-0.05994601547718,0.017033319920301,-0.021417023614049],[-0.048813946545124,-0.09507878869772,-0.10441177338362],[-0.030981039628386,-0.0048284535296261,-0.069506861269474]],[[-0.069798029959202,-0.0315723977983,-0.059427943080664],[0.039158869534731,-0.011746365576982,-0.071589305996895],[-0.03041097894311,-0.0039902501739562,-0.003897411050275]],[[0.015715017914772,-0.027446208521724,0.025856109336019],[-0.10248919576406,-0.0055249570868909,-0.033060904592276],[0.053761016577482,0.073605991899967,0.023848647251725]],[[0.0044996039941907,0.03079922683537,-0.027145329862833],[-0.11335534602404,-0.029800964519382,0.051194678992033],[-0.012076689861715,-0.0078995954245329,-0.035856191068888]],[[0.082633428275585,0.042021747678518,0.012222744524479],[-0.020193153992295,-0.034296713769436,0.032792899757624],[-0.041685491800308,-0.0070706736296415,0.012044804170728]],[[0.035442400723696,0.052631452679634,-0.0068879323080182],[0.04024026915431,-0.056670043617487,-0.01839710213244],[-0.017764313146472,0.028281265869737,-0.0043107797391713]],[[0.02536011300981,-0.015910424292088,0.016145085915923],[0.03910556063056,-0.073159478604794,-0.030322341248393],[0.0036758135538548,0.0032891256269068,-0.078580603003502]],[[-0.012496134266257,0.063179478049278,-0.0040055229328573],[-0.040101058781147,-0.026806449517608,0.011536910198629],[-0.072653479874134,-0.035814825445414,0.047835309058428]],[[-0.091321811079979,-0.025816895067692,0.035814229398966],[0.050624094903469,-0.057095017284155,0.0015398646937683],[-0.013133739121258,-0.035332180559635,-0.054719015955925]],[[0.012625721283257,0.04295077174902,0.0059507531113923],[0.0019935760647058,-0.013649339787662,-0.010999388992786],[-0.059021778404713,-0.021775966510177,0.018425118178129]],[[-0.0072510843165219,-0.031691789627075,0.0091110756620765],[0.018809285014868,-0.024750381708145,0.029236927628517],[0.083663910627365,-0.067988239228725,-0.041054930537939]],[[-0.015163890086114,0.030239587649703,-0.032093863934278],[0.018684780225158,-0.047999031841755,0.025811808183789],[0.030269742012024,0.04883835464716,-0.010742544196546]],[[-0.014812153764069,-0.02708393894136,0.01716204546392],[-0.029305996373296,0.009872923605144,0.068736225366592],[0.094268679618835,0.027572806924582,-0.07597241550684]],[[-0.069020472466946,0.048457119613886,-0.024020176380873],[0.002454218454659,-0.00095625373069197,0.0042135966941714],[0.11101558059454,-0.033393293619156,0.058156635612249]],[[-0.0065202177502215,0.014542216435075,-0.0031581800431013],[0.087363541126251,-0.010312790051103,-0.042068880051374],[-0.013102225959301,0.0062573477625847,-0.0059162299148738]],[[0.036467541009188,-0.02035148628056,0.038798820227385],[0.066065065562725,-0.026041638106108,0.013714015483856],[-0.083055377006531,0.0088019389659166,-0.003226013854146]],[[0.032065059989691,-0.0026124720461667,0.018474265933037],[0.0089444695040584,0.0063883438706398,-0.042111694812775],[0.0085580283775926,-0.018386853858829,0.027821177616715]],[[-0.0068890214897692,-0.02389438636601,-0.021915907040238],[-0.046261079609394,0.052755352109671,0.074726335704327],[0.034238565713167,-0.035598061978817,0.025522707030177]],[[-0.025755971670151,-0.001374242361635,0.0032523463014513],[0.05187140032649,0.0094291502609849,-0.054187327623367],[-0.011067194864154,0.02556898444891,0.023512691259384]],[[0.041524581611156,0.02995247207582,0.0039907637983561],[-0.034877020865679,-0.0080694360658526,-0.026997074484825],[-0.013813328929245,0.057220987975597,-0.05109116435051]],[[0.048022862523794,0.0055891182273626,-0.060185447335243],[-0.013613861985505,-0.010674391873181,0.020092714577913],[0.024358786642551,0.02092413417995,0.027599293738604]],[[0.023493377491832,-0.089041814208031,0.033218488097191],[-0.0060991500504315,0.010093045420945,0.025504063814878],[-0.002041649306193,-0.081027150154114,-0.034012667834759]],[[0.028949223458767,0.016192305833101,-0.039478309452534],[0.0059938528575003,0.046767447143793,0.010362967848778],[-0.023263586685061,-0.029993476346135,-0.04956703260541]],[[-0.0054800109937787,0.048953153192997,-0.0029575855005533],[-0.019730672240257,0.045736908912659,-0.074476309120655],[0.090507492423058,-0.076492138206959,0.039050240069628]],[[-0.060106955468655,-0.017630308866501,-0.031668044626713],[0.061429619789124,-0.019492903724313,0.0087552964687347],[0.017741126939654,-0.021276207640767,-0.021308105438948]],[[0.063368782401085,0.003615147434175,0.0071055833250284],[0.060300190001726,-0.077434010803699,0.085344262421131],[-0.0093754548579454,0.027237832546234,0.007957081310451]],[[0.027830542996526,-0.046268977224827,0.044944368302822],[-0.014340806752443,0.02640119381249,-0.028977716341615],[-0.041597623378038,-0.056409765034914,-0.0039868731983006]],[[0.057085201144218,-0.099180392920971,-0.064765185117722],[-0.063139751553535,-0.027440320700407,-0.031527381390333],[0.0099689522758126,-0.026138715445995,-0.043958470225334]],[[0.019675033167005,0.054932311177254,0.073346264660358],[0.02782722376287,-0.041093192994595,0.015566146932542],[0.05484776571393,0.044885385781527,0.033498447388411]],[[-0.030391892418265,0.029850812628865,-0.0029755241703242],[-0.037596631795168,-0.026955833658576,-0.078754037618637],[-0.014321967959404,0.025097897276282,0.032809890806675]],[[0.0092837065458298,0.010119886137545,0.018432823941112],[0.038958065211773,0.041206877678633,-0.10804875195026],[0.019508169963956,0.017957160249352,0.045342091470957]],[[-0.10273546725512,-0.042500246316195,-0.075565755367279],[-0.032879378646612,0.0092442138120532,-0.036873213946819],[-0.053509458899498,-0.055895835161209,-0.0666763484478]],[[-0.088426135480404,-0.12945298850536,0.11492735147476],[-0.082151271402836,0.0014675077982247,-0.016291715204716],[0.058767974376678,0.032330561429262,0.036274340003729]],[[-0.025722729042172,-0.075495049357414,-0.02505868114531],[0.051469154655933,-0.0098864836618304,0.05954684689641],[-0.038053635507822,-0.0060335006564856,-0.09229514747858]],[[-0.0058023855090141,-0.046360339969397,-0.04872227832675],[-0.0014090192271397,-0.045017078518867,0.00037657641223632],[0.047201953828335,-0.027803860604763,-0.030974894762039]],[[0.043081630021334,0.014380702748895,0.024373302236199],[0.035641267895699,-0.019381737336516,-0.045312851667404],[-0.0058116791769862,0.023847382515669,0.09941366314888]],[[-0.010872733779252,0.055917654186487,0.011839034967124],[-0.024428818374872,0.023530337959528,-0.00103212101385],[-0.017863983288407,-0.02699176594615,0.091214247047901]],[[0.040989261120558,-0.048063952475786,0.040369257330894],[-0.017316153272986,0.034472808241844,0.02801563590765],[-0.06959917396307,0.035263478755951,0.012902140617371]],[[-0.06210657581687,-0.032986480742693,0.016255734488368],[0.014875758439302,-0.044503375887871,-0.017879301682115],[0.034094795584679,-0.018563903868198,-0.045481137931347]],[[0.0016086013056338,0.035719640552998,0.0031670280732214],[-0.061761256307364,-0.079310148954391,-0.018685234710574],[-0.059774335473776,0.088027074933052,0.056165259331465]],[[-0.015029510483146,-0.017102414742112,0.076126798987389],[-0.063812837004662,0.01005791593343,-0.027033546939492],[-0.011895057745278,0.052744302898645,0.016992416232824]],[[0.059178851544857,-0.042075730860233,-0.064595863223076],[-0.066136099398136,0.023606333881617,0.067711234092712],[-0.038218475878239,0.036204896867275,0.0063730315305293]],[[-0.012812159955502,-0.018127979710698,0.040849719196558],[0.02711502276361,0.019382299855351,0.048575587570667],[-0.042761355638504,-0.029273591935635,0.044657308608294]],[[0.031462449580431,0.067092001438141,-0.046935234218836],[-0.015750830993056,0.023272167891264,-0.033001888543367],[-0.04022504389286,-0.083140507340431,-0.014210625551641]],[[-0.027015460655093,0.035740707069635,0.0028999617788941],[-0.0090302107855678,0.0022511640563607,0.035949971526861],[0.026736469939351,0.017125276848674,-0.054310347884893]],[[0.0001530207664473,0.031863611191511,-0.038622193038464],[0.0057647102512419,0.087192229926586,-0.041047617793083],[-0.036947507411242,-0.0089636938646436,0.0057281362824142]]],[[[-0.070121914148331,-0.051142733544111,0.041315630078316],[0.012033235281706,0.017809981480241,0.029872693121433],[0.0046818619593978,-0.052347306162119,0.023254217579961]],[[-0.075439766049385,-0.00045622463221662,-0.0847187936306],[-0.0045663020573556,0.062952063977718,-0.022086177021265],[0.11366365849972,0.039655838161707,-0.083692774176598]],[[-0.028474407270551,-0.0038747270591557,-0.0053013609722257],[-0.029616048559546,0.054437268525362,-0.023478042334318],[0.0069880555383861,0.032585769891739,-0.10073157399893]],[[0.047616004943848,0.071112461388111,-0.0046076290309429],[0.072898410260677,0.013195591978729,0.051780879497528],[-0.019399151206017,0.052716244012117,0.058678146451712]],[[0.018768262118101,0.017823783680797,0.0082379430532455],[0.0091256657615304,0.053380187600851,0.024633336812258],[-0.015724735334516,0.063570819795132,-0.014199580065906]],[[0.0039949528872967,-0.018620550632477,0.10938260704279],[-0.00061424938030541,0.033630359917879,0.077966265380383],[0.10037994384766,-0.056721266359091,0.034912813454866]],[[0.036724865436554,-0.10131807625294,-0.074001021683216],[-0.10604840517044,-0.043585542589426,0.031966868788004],[-0.081350795924664,-0.029019257053733,0.014852496795356]],[[-0.021087778732181,-0.011849883012474,0.01832015812397],[0.063736349344254,0.024079069495201,-0.02250849083066],[-0.11268971115351,-0.046601239591837,0.015626892447472]],[[-0.045450817793608,0.024436673149467,-0.037854969501495],[0.0080007463693619,0.030147586017847,0.0054444377310574],[-0.019097171723843,0.033340409398079,-0.022218177095056]],[[-0.046163845807314,0.13092869520187,0.050052493810654],[0.04974552989006,0.11780689656734,0.053001333028078],[0.20363599061966,0.16823118925095,0.073234722018242]],[[-0.03962380066514,-0.011576125398278,-0.018378501757979],[-0.045293070375919,0.009965275414288,0.056375302374363],[0.0082824919372797,0.055080261081457,0.024066288024187]],[[0.061464708298445,0.069437526166439,0.0071301641874015],[0.055945217609406,0.00052309036254883,0.026344833895564],[0.05333898961544,0.028021218255162,-0.083032950758934]],[[-0.00072687992360443,-0.022038256749511,-0.066634692251682],[0.018124947324395,-0.047139532864094,-0.029196489602327],[-0.06857930123806,-0.054364450275898,-0.053870178759098]],[[-0.10297137498856,0.006873672362417,-0.030934784561396],[0.012047328986228,-0.070388548076153,0.022301139310002],[0.090768665075302,0.049881972372532,0.016257101669908]],[[0.11234927177429,0.13576443493366,-0.059420350939035],[0.018382934853435,0.045071799308062,0.011664714664221],[0.046729248017073,0.062093671411276,0.038015503436327]],[[0.01190276350826,0.021606512367725,0.014540986157954],[-0.026963537558913,0.03240380436182,-0.023793363943696],[0.0020274915732443,-0.090668700635433,-0.034569978713989]],[[-0.031497452408075,0.020574266090989,-0.029541220515966],[-0.0084991296753287,-0.030285345390439,0.023080013692379],[-0.022826310247183,0.031356893479824,0.048704355955124]],[[-0.067156590521336,-0.036638617515564,-0.028987128287554],[-0.10061914473772,-0.0017495723441243,-0.00018574122805148],[-0.10333972424269,-0.007367686368525,0.070408038794994]],[[0.045650117099285,-0.024434518069029,-0.039260067045689],[0.11066068708897,-0.084852159023285,-0.043566044420004],[-0.072429426014423,0.01717060431838,0.052323874086142]],[[-0.0024879374541342,-0.036881789565086,-0.024439679458737],[0.024729093536735,0.032878469675779,0.080029428005219],[0.015229577198625,0.12466678768396,-0.032510355114937]],[[-0.017459591850638,0.064407058060169,0.004685272462666],[0.0083118993788958,0.036805637180805,0.017399318516254],[0.052163150161505,0.027587017044425,0.0051428945735097]],[[0.062621615827084,0.081290081143379,0.040152609348297],[0.048113390803337,0.079771943390369,0.10111679881811],[-0.0039112106896937,0.079052373766899,0.10571280121803]],[[-0.091020293533802,0.020418336614966,0.096788063645363],[-0.00025203690165654,-0.058213673532009,0.013040499761701],[-0.12613685429096,0.011529930867255,-0.0081278523430228]],[[-0.06957520544529,-0.10287150740623,0.014159422367811],[0.032640095800161,0.068645127117634,0.03091524541378],[0.095529302954674,0.11924580484629,0.10797853767872]],[[0.066868424415588,0.040375206619501,0.042575240135193],[-0.03484582901001,0.069089949131012,-0.056488242000341],[0.0053488505072892,0.048259798437357,0.085961662232876]],[[-0.041891153901815,-0.012397268787026,0.087009139358997],[0.02452783100307,0.017381809651852,0.0034718664828688],[-0.016681924462318,0.077695772051811,0.13436461985111]],[[-0.029294492676854,0.019547270610929,0.031779181212187],[-0.0042689749971032,0.061614628881216,-0.0032005331013352],[-0.048389732837677,-0.0037987914402038,0.0046052499674261]],[[-0.021895479410887,-0.069876365363598,0.047810886055231],[-0.075392194092274,0.078419350087643,0.018632885068655],[0.12166853994131,0.030147805809975,-0.033621083945036]],[[-0.015204353258014,0.0071005681529641,-0.0071459277532995],[-0.030637318268418,-0.045324981212616,0.031687956303358],[-0.015339652076364,-0.045759782195091,-0.016769027337432]],[[-0.023979797959328,0.069535799324512,0.0038215664681047],[0.11253038793802,0.058664280921221,-0.00055397709365934],[0.1251455694437,-0.038282204419374,0.019446164369583]],[[-0.019273163750768,0.088450133800507,0.050295807421207],[0.040957044810057,0.13120894134045,-0.030520774424076],[0.037947773933411,0.097209230065346,-0.057406980544329]],[[-0.03490823507309,-0.016084767878056,0.02296251617372],[0.025134215131402,0.048285111784935,0.087073385715485],[-0.037927899509668,-0.0047974912449718,0.033702701330185]],[[-0.027738001197577,0.058564819395542,0.057281628251076],[-0.033114109188318,0.076059192419052,-0.0092323757708073],[0.039402294903994,0.054097227752209,0.06389569491148]],[[0.039304681122303,0.035423591732979,-0.016204787418246],[0.093646235764027,0.10097356885672,-0.021221918985248],[-0.023578936234117,0.07014150172472,0.03937416896224]],[[-0.040629874914885,-0.028927581384778,-0.047223757952452],[0.018345503136516,0.010942928493023,-0.06492742151022],[0.12257155030966,0.087944231927395,-0.045984499156475]],[[-0.073409035801888,-0.13542951643467,0.041959993541241],[-0.0012504790211096,-0.062467947602272,-0.030847322195768],[0.017173023894429,-0.057754009962082,-0.018852995708585]],[[0.018158949911594,-0.030373465269804,-0.052151061594486],[0.013985525816679,-0.098631955683231,-0.088998131453991],[0.030607970431447,-0.022521801292896,0.034419935196638]],[[-0.063801944255829,0.059336949139833,-0.027858169749379],[0.10174444317818,0.032653968781233,0.060879595577717],[0.079484164714813,0.10694543272257,-0.028903298079967]],[[0.030323775485158,0.072083756327629,-0.070544362068176],[0.13733918964863,0.0177410710603,-0.10143291950226],[0.0018572881817818,-0.020562382414937,-0.096246272325516]],[[-0.014342505484819,0.029166832566261,-0.072893492877483],[0.018662141636014,0.0002741476346273,0.04126912727952],[-0.075700879096985,0.059503376483917,0.074491254985332]],[[0.052323058247566,-0.021047379821539,0.002559207379818],[-0.0052615664899349,0.019669935107231,0.028827745467424],[0.024377560243011,-0.044382221996784,0.030925750732422]],[[-0.015844805166125,0.0085987318307161,0.027649343013763],[0.052105598151684,-0.057767283171415,-0.013588532805443],[0.0079498616978526,-0.034350123256445,-0.018974242731929]],[[-0.0044833337888122,0.046383541077375,0.12683308124542],[0.055448852479458,0.048414759337902,0.035487271845341],[0.050692323595285,0.13831348717213,0.07908458262682]],[[-0.031309448182583,0.013619237579405,0.012559260241687],[-0.082065306603909,0.0043614790774882,-0.038831252604723],[-0.03322371840477,-0.042224004864693,-0.025505902245641]],[[-0.095674686133862,0.0086986450478435,0.038339849561453],[0.0014560457784683,0.033201526850462,0.031867042183876],[0.040062461048365,0.039571959525347,-0.039363697171211]],[[0.0017803389346227,-0.030987665057182,0.064864374697208],[0.071402311325073,-0.0019900109618902,0.013697441667318],[0.082834891974926,0.019395772367716,-0.0078998496755958]],[[0.012758530676365,0.042845748364925,0.054373200982809],[0.045222274959087,0.0031184761319309,-0.024793103337288],[0.025760153308511,-0.0038945476990193,-0.052204128354788]],[[0.042879763990641,-0.03508584946394,0.011144488118589],[-0.021497683599591,0.087145291268826,-0.0020786360837519],[0.052161622792482,0.021714905276895,-0.030474402010441]],[[-0.048855543136597,0.049559708684683,0.0071536567993462],[0.04298347607255,0.042423892766237,-0.014694381505251],[-0.0042459084652364,0.04771551117301,0.093603603541851]],[[0.016420565545559,0.013047105632722,-0.062168590724468],[-0.039601314812899,-0.030043909326196,-0.037146542221308],[-0.075309164822102,0.015822570770979,-0.018724927678704]],[[0.0092740710824728,-0.082324951887131,0.016869453713298],[-0.097979880869389,0.0099299000576138,-0.021817579865456],[-0.025420481339097,-0.037735465914011,-0.033359490334988]],[[-0.038870237767696,-0.0057032601907849,0.12050718814135],[0.043609786778688,-0.018319871276617,0.10497879981995],[0.089861549437046,0.062165778130293,0.0046913661062717]],[[0.1340584307909,0.038011852651834,0.052944220602512],[0.10226538777351,0.063011199235916,0.032894350588322],[0.077722169458866,0.0085469074547291,0.030493399128318]],[[0.009366113692522,0.0014524990692735,-0.040720053017139],[0.062640942633152,0.049465958029032,0.013248529285192],[0.016222750768065,0.06260272860527,-0.052304193377495]],[[-0.038996651768684,-0.033889923244715,-9.785911970539e-05],[0.034683160483837,0.049119930714369,-0.066566072404385],[0.011807365342975,-0.023058170452714,0.048359248787165]],[[0.016234893351793,0.059002120047808,0.029819810763001],[0.0029244560282677,-0.019662974402308,0.040760420262814],[-0.041287362575531,0.095769636332989,-0.0231096688658]],[[-0.089617408812046,-0.095035299658775,0.097214952111244],[-0.073269627988338,-0.077467851340771,-0.0336739346385],[-0.074243508279324,0.072154901921749,0.041811130940914]],[[-0.034780759364367,0.052068382501602,0.10733332484961],[0.035639118403196,0.058900184929371,-0.0363410115242],[0.015717331320047,-0.017791260033846,0.13766558468342]],[[0.056201782077551,0.09324049949646,0.051377661526203],[-0.10002137720585,0.086850993335247,0.06068179756403],[-0.091993235051632,-0.027310306206346,0.065067924559116]],[[0.021331492811441,0.047444716095924,-0.06841404736042],[0.018054634332657,-0.005279534496367,0.054392982274294],[-0.033375278115273,-0.01414892822504,0.090851537883282]],[[-0.034968830645084,-0.022738063707948,0.049265000969172],[-0.046304620802402,0.012018814682961,0.040818832814693],[-0.048448856920004,-0.01129606552422,0.023444477468729]],[[0.0024864634033293,-0.004704118706286,-0.0047207069583237],[-0.0089941387996078,-0.013723501935601,0.019287895411253],[-0.0033304796088487,0.0081239528954029,0.0011996610555798]],[[0.017795158550143,-0.0065531278960407,0.018693916499615],[0.01759865693748,0.029507396742702,-0.011947339400649],[-0.027834532782435,-0.045195173472166,-0.020469777286053]],[[-0.0026857298798859,0.0066196247935295,0.028832199051976],[-0.038511384278536,0.05682947486639,-0.041125308722258],[-0.019352290779352,-0.010689885355532,-0.039903171360493]],[[0.10491245239973,0.006842898670584,0.059957504272461],[0.076607413589954,0.022945553064346,-0.036202292889357],[0.010086412541568,-0.18309473991394,0.010502777062356]],[[-0.0038219450507313,-0.014891317114234,-0.062831647694111],[-0.001567741157487,-0.026279784739017,0.043432950973511],[0.05426749587059,-0.0106913279742,-0.012976989150047]],[[-0.00083029799861833,0.024157771840692,-0.033209912478924],[0.030248064547777,0.070683218538761,0.073435433208942],[0.047247473150492,0.066486716270447,0.068195171654224]],[[0.01905763708055,0.011105546727777,-0.022666089236736],[0.011767532676458,0.049643035978079,0.021034877747297],[-0.0078341402113438,-0.01345931366086,0.072849407792091]],[[-0.028793774545193,-0.023722149431705,0.038883171975613],[-0.065608225762844,-0.0019410725217313,0.066147536039352],[-0.043348345905542,0.038751654326916,-0.03826767578721]],[[-0.041061464697123,-0.020081209018826,0.031808152794838],[0.033112164586782,0.079988442361355,0.029672218486667],[0.033947248011827,-0.05698050186038,-0.0061845174059272]],[[-0.0030118359718472,0.0035032203886658,0.0030489140190184],[0.0044735749252141,0.057179089635611,0.033329296857119],[0.06246530264616,-0.035012967884541,-0.0081319911405444]],[[0.00090382195776328,0.013232469558716,0.033106040209532],[0.084749676287174,0.0097926231101155,0.070728205144405],[-0.033890470862389,-0.018315242603421,0.038754630833864]],[[0.053165450692177,0.055575035512447,-8.8580593001097e-05],[-0.00034559678169899,0.0075145047158003,0.022609323263168],[0.010977730154991,0.024659793823957,-0.080875635147095]],[[0.011094382964075,0.054925341159105,0.030953081324697],[-0.032136920839548,0.043930072337389,-0.017048375681043],[-0.023617293685675,0.13683180510998,-0.056878231465816]],[[0.0073216129094362,0.056455694139004,0.012774421833456],[-0.036728423088789,-0.0072277020663023,0.02626346051693],[-0.073197938501835,0.079969868063927,-0.063188463449478]],[[0.055057354271412,0.007915198802948,-0.017498860135674],[0.034015480428934,0.045216962695122,-0.02935715764761],[-0.0004050579154864,0.11798184365034,0.066005796194077]],[[-0.036635894328356,0.042190231382847,-0.04790910705924],[0.0023057933431119,-0.016139041632414,-0.018262917175889],[-0.021096242591739,-0.029325885698199,0.054910730570555]],[[0.0071893255226314,-0.029694601893425,0.045780677348375],[-0.0075250430963933,0.15633825957775,0.051661550998688],[-0.057276181876659,0.10518560558558,0.06326774507761]],[[0.0072524240240455,0.046534180641174,-0.047059342265129],[0.13767594099045,-0.048296701163054,-0.031878758221865],[0.00415561767295,0.079171121120453,0.058963496237993]],[[-0.081390850245953,-0.066905148327351,0.0088257482275367],[-0.005828011315316,-0.0034830584190786,-0.049765761941671],[0.026081919670105,0.027861185371876,-0.037554949522018]],[[0.049918957054615,-0.004697653464973,0.064892940223217],[0.072612665593624,-0.012261255644262,0.035378612577915],[0.0095020914450288,-0.029413187876344,0.01177747361362]],[[-0.077996514737606,0.061319626867771,-0.032328307628632],[-0.051138877868652,-0.038565088063478,-0.029165435582399],[-0.031782474368811,-0.011951628141105,-0.038238238543272]],[[-0.0057860179804265,-0.073576748371124,-0.024947943165898],[-0.027397535741329,-0.024025935679674,0.033618066459894],[-0.065632522106171,0.071745783090591,0.049723617732525]],[[-0.02253620699048,0.01582252793014,0.028714912012219],[0.015549069270492,0.025221928954124,0.032594498246908],[-0.053344614803791,0.034130707383156,-0.0028516149614006]],[[-0.00080628501018509,0.052899703383446,-0.011948587372899],[0.14478723704815,0.074079155921936,0.039064571261406],[0.15991787612438,0.03420002758503,-0.032827813178301]],[[0.073250383138657,0.0052370592020452,-0.058494448661804],[0.083529554307461,0.081645920872688,0.047812283039093],[0.036669719964266,0.033087559044361,0.029461599886417]],[[-0.040525633841753,0.029591798782349,-0.050577562302351],[0.030611647292972,0.030426563695073,0.078285455703735],[-0.030439503490925,-0.076318994164467,0.05870945006609]],[[0.11701542884111,0.049517303705215,0.034886196255684],[0.15261587500572,0.10796631872654,-0.057085029780865],[0.030685499310493,0.053032547235489,0.011713275685906]],[[0.0070836315862834,0.07084009796381,-0.082297131419182],[0.092181675136089,-0.037096504122019,-0.030347066000104],[-0.010961683467031,0.013350625522435,-0.043095298111439]],[[0.021091120317578,0.036782644689083,-0.023707002401352],[0.028217185288668,0.044646080583334,-0.026823554188013],[0.044242911040783,0.079524256289005,-0.017911579459906]],[[0.0053560901433229,0.075156964361668,-0.024648541584611],[0.047153897583485,0.05137126147747,0.12122624367476],[-0.042945004999638,0.037699591368437,0.078755863010883]],[[-0.00056349713122472,-0.019562972709537,-0.018951008096337],[0.0088539831340313,-0.10201570391655,-0.0088472757488489],[0.040027879178524,-0.025329858064651,-0.014636750333011]],[[-0.0062362235039473,0.015851244330406,-0.026741301640868],[-0.042782202363014,-0.052323721349239,-0.0015741613460705],[-0.085128426551819,0.043338917195797,0.093562819063663]],[[0.017526226118207,0.065342508256435,0.078156255185604],[-0.055618204176426,0.065790690481663,0.018106730654836],[-0.028954470530152,0.08562583476305,0.051268022507429]],[[-0.024550395086408,-0.04472328722477,0.029397271573544],[-0.010798077099025,-0.043190363794565,0.15742227435112],[-0.0060521140694618,0.054039601236582,0.11955399811268]],[[0.010393967851996,-0.020435377955437,-0.013035436160862],[0.037979867309332,0.048315234482288,-0.02934293821454],[0.018156150355935,0.059958681464195,-0.075653523206711]],[[-0.007718846667558,-0.013774278573692,0.095467776060104],[-0.038093607872725,0.0096783023327589,0.08292692899704],[0.018692107871175,-0.0043074642308056,0.20284326374531]],[[0.0025275994557887,0.11858673393726,0.017353802919388],[0.018084704875946,0.072635754942894,0.10816552489996],[-0.063747830688953,-0.012592602521181,0.13586367666721]],[[0.047895614057779,-0.077592544257641,0.012178326956928],[0.036419559270144,0.0072328993119299,0.021421644836664],[-0.10315180569887,0.022820055484772,0.042682640254498]],[[-0.029053620994091,0.045130368322134,0.021806938573718],[0.048733714967966,-0.089019611477852,-0.013040883466601],[0.08064741641283,0.099431030452251,0.0085312407463789]],[[0.028335124254227,-0.031283989548683,0.013930379413068],[0.0057089594192803,-0.079094529151917,0.022494832053781],[-0.017900090664625,-0.025930164381862,0.086694374680519]],[[-0.065405286848545,0.084246568381786,-0.023638477548957],[0.018009567633271,0.085699796676636,-0.02422053553164],[0.054149441421032,0.097521476447582,0.049434017390013]],[[0.081964887678623,0.067416667938232,-0.011758069507778],[-0.036267708986998,0.029372410848737,0.039142083376646],[0.065800294280052,0.13831180334091,-0.048449501395226]],[[-0.062363684177399,-0.041197512298822,0.025775833055377],[-0.03672756627202,-0.010650080628693,-0.060942567884922],[0.011093788780272,0.020149320363998,-0.0059982100501657]],[[-0.040426183491945,0.043102152645588,0.026689475402236],[0.12419594079256,0.027977637946606,-0.039703249931335],[0.05466777458787,0.068852439522743,-0.0048867706209421]],[[-0.061727769672871,0.025357361882925,0.01388650201261],[0.023707611486316,0.015349525026977,0.01247288659215],[0.070507563650608,0.048019085079432,0.0040816199034452]],[[0.02774890512228,0.01168657746166,-0.091351337730885],[0.044472612440586,0.02928064763546,-0.0066288760863245],[-0.030676949769258,0.0090756807476282,0.1643093675375]],[[-0.078880026936531,0.01159805431962,-0.0067268768325448],[-0.02017280086875,-0.0033213458955288,0.035260550677776],[0.011224886402488,0.035367839038372,-0.0085928607732058]],[[-0.0059251124039292,-0.039301175624132,-0.041869074106216],[-0.068922653794289,0.00078578473767266,0.042651865631342],[0.02920420281589,-0.020604012534022,-0.023244943469763]],[[0.071025133132935,0.028180485591292,-0.0064517082646489],[0.096540041267872,0.065567843616009,-0.072062574326992],[0.02551507204771,-0.036479968577623,-0.050884537398815]],[[-0.019306475296617,-0.02883886732161,0.030593665316701],[-0.061936628073454,-0.029778409749269,0.039374876767397],[0.07826554775238,0.0070978007279336,-0.0025020418688655]],[[-0.013359318487346,0.028760591521859,-0.054489642381668],[0.0054736221209168,0.011465486139059,0.028682975098491],[-0.066986851394176,-0.032104801386595,0.033760488033295]],[[-0.062379214912653,0.062153544276953,-0.020985711365938],[0.011434933170676,0.0053476467728615,-0.023226670920849],[-0.0062053590081632,0.060408383607864,-0.04409159719944]],[[0.026645751670003,0.010000147856772,-0.059237644076347],[0.013157521374524,0.0086697908118367,-0.04465040564537],[-0.053577963262796,-0.040132913738489,0.0055750561878085]],[[0.057511959224939,0.011070561595261,0.04967101290822],[0.036873862147331,-0.043874815106392,0.035236220806837],[-0.028058128431439,-0.052161309868097,0.019847262650728]],[[-0.052737355232239,-0.021955646574497,0.013821922242641],[-0.0011331181740388,-0.048634435981512,-0.028307335451245],[-0.062341898679733,0.038549285382032,0.085363931953907]],[[-0.024709329009056,-0.0040758359245956,0.012391006574035],[0.048118639737368,0.063453175127506,0.090151116251945],[0.055523637682199,0.023506691679358,0.13349588215351]],[[0.018758628517389,0.025769015774131,0.009269904345274],[0.10763382166624,0.092945069074631,0.0061715831980109],[-0.051730662584305,-0.030621021986008,0.069471187889576]],[[-0.093777813017368,-0.039933994412422,0.055876772850752],[-0.035745818167925,0.075733512639999,-0.018837420269847],[0.054961211979389,-0.047574531286955,-0.036351423710585]],[[-0.023451058194041,-0.062176514416933,-0.056140676140785],[-0.021797204390168,0.053550489246845,-0.033368933945894],[-0.075378447771072,0.021973557770252,-0.071753412485123]],[[0.036309991031885,-0.0026229876093566,-0.047483284026384],[0.014552844688296,-0.095407024025917,-0.021839391440153],[0.039095632731915,0.011597554199398,0.077264107763767]],[[0.0029800918418914,0.09646513313055,0.0016956774052233],[0.080881752073765,0.12364538013935,-0.010293367318809],[0.080939345061779,-0.024704968556762,0.02963531948626]],[[0.072023302316666,0.060847379267216,-0.069941349327564],[0.08979793637991,-0.068315520882607,-0.063444569706917],[-0.054863557219505,0.039511516690254,-0.068137980997562]],[[0.12042056769133,0.015228787437081,-0.10692435503006],[0.024740986526012,-0.10364743322134,-0.046433299779892],[-0.08156930655241,-0.18248035013676,-0.10036260634661]],[[-0.0091302804648876,-0.013666644692421,0.048876259475946],[-0.0092175099998713,0.022848919034004,-0.076435953378677],[0.04619474709034,0.025534700602293,0.07307555526495]],[[-0.015962125733495,-0.00055610726121813,-0.0038106641732156],[0.015301393344998,0.0443349853158,-0.04454268887639],[0.020472280681133,0.095036648213863,0.016311526298523]],[[-0.027984673157334,-0.017250552773476,0.054062761366367],[0.14792208373547,0.065364710986614,0.057422641664743],[0.039500918239355,0.11534959822893,0.058811672031879]],[[-0.033399950712919,-0.018638890236616,-0.016999825835228],[-0.016182338818908,0.075470700860023,-0.028623104095459],[0.018847273662686,0.0099305277690291,-0.031703807413578]]],[[[0.056898016482592,-0.042768053710461,-0.024548795074224],[0.0025926977396011,0.018423905596137,0.0014594091335312],[0.0065468489192426,-0.054620485752821,-0.0090633518993855]],[[-0.04272036626935,0.038360584527254,0.010685020126402],[-0.011100596748292,0.055614486336708,-0.0056569282896817],[-0.058763984590769,-0.029126022011042,0.017863618209958]],[[-0.057334166020155,-0.0067480402067304,0.057586621493101],[0.0030804157722741,0.018310954794288,-0.093288064002991],[-0.047856509685516,-0.060678251087666,0.037305127829313]],[[-0.0093315094709396,0.031127562746406,0.022201301530004],[-0.003992578946054,-0.0016085797687992,-0.02491700462997],[-0.05312842130661,0.0026011897716671,-0.018613563850522]],[[-0.044063292443752,0.0050293011590838,-0.04175441339612],[0.10886362195015,0.022967861965299,-0.084779381752014],[-0.0075555238872766,0.022532165050507,-0.0047950581647456]],[[0.066635124385357,0.007407623808831,0.006816788110882],[0.020854827016592,-0.0055009587667882,0.045524019747972],[-0.062434922903776,-0.026788555085659,-0.057027608156204]],[[-0.035291101783514,-0.042639575898647,-0.058956064283848],[0.027808770537376,0.017521895468235,-0.03804649040103],[-0.022484315559268,0.019739601761103,-0.024684434756637]],[[0.03562854975462,-0.014968879520893,-0.0045878137461841],[-0.057234767824411,-0.040664870291948,-0.02395548671484],[0.06546077132225,-0.018734809011221,0.0081951422616839]],[[0.063145950436592,0.00098223437089473,-0.043943241238594],[0.051347378641367,0.011690553277731,-0.05136588960886],[-0.041457075625658,-0.081033147871494,0.075695350766182]],[[0.017767483368516,-0.066127873957157,0.01800693012774],[0.043228913098574,0.10761546343565,0.02756579965353],[0.062179610133171,-0.018166691064835,-0.035614002496004]],[[-0.001073497813195,-0.055121459066868,-0.017080150544643],[0.055330783128738,0.075361475348473,0.011522331275046],[0.039526559412479,-0.029336342588067,-0.039796989411116]],[[0.00055147142848,0.0098879029974341,0.050800390541553],[0.010914523154497,0.018015583977103,0.015996001660824],[-0.0051318230107427,-0.0452043376863,-0.0017055372009054]],[[-0.011063466779888,-0.005371124483645,-0.0076319891959429],[-0.07297495752573,0.016018958762288,-0.050517555326223],[-0.025438057258725,-0.05970049649477,-0.044142581522465]],[[-0.030731055885553,0.034754332154989,0.010367440059781],[-0.017046304419637,-0.022632412612438,-0.047723736613989],[0.056061495095491,-0.0042249979451299,-0.020744636654854]],[[-0.025337886065245,-0.0020345677621663,0.024593325331807],[-0.035201005637646,0.014102187938988,-0.018536724150181],[0.05358611792326,0.035970594733953,0.0533407330513]],[[0.023530276492238,0.037074446678162,0.077740669250488],[-0.025172611698508,-0.0040012001991272,-0.013710896484554],[0.026756839826703,-0.0014689979143441,0.037900619208813]],[[-0.0054867342114449,-0.054666925221682,0.040536191314459],[0.027880258858204,-0.014494843780994,-0.010252760723233],[0.029940703883767,-0.03317129984498,-0.017759663984179]],[[-0.030689883977175,0.073907628655434,-0.0064608035609126],[-0.033175192773342,-0.049787402153015,0.03062405064702],[0.0088346768170595,0.014398634433746,-0.083462230861187]],[[-0.046323176473379,-0.0092469472438097,0.0034731556661427],[-0.012072489596903,-0.065999329090118,-0.025027168914676],[-0.01312799192965,0.064225509762764,-0.017931658774614]],[[0.011272232048213,0.019107619300485,-0.054296482354403],[-0.024752575904131,0.031687349081039,0.038632351905107],[-0.0052164713852108,0.06489173322916,0.020893309265375]],[[-0.089158222079277,0.033346340060234,0.025799803435802],[0.078681796789169,0.034312829375267,0.043614149093628],[0.045960083603859,0.044982004910707,0.048372864723206]],[[0.017055781558156,0.020217157900333,-0.048835717141628],[0.058303281664848,0.060096256434917,-0.10857584327459],[0.029861724004149,0.028151009231806,-0.019672375172377]],[[0.080548532307148,-0.030592607334256,-0.01387987844646],[0.015055299736559,0.047271952033043,-0.11383184045553],[0.045141540467739,0.049002822488546,-0.024249494075775]],[[-0.039151504635811,-0.022500770166516,-0.033550843596458],[-0.044291503727436,0.020821807906032,-0.050002943724394],[-0.048373114317656,-0.0096994508057833,-0.023471836000681]],[[0.00029188743792474,0.026614027097821,0.057810731232166],[-0.0010771900415421,-0.11109451949596,0.031999539583921],[0.0040686051361263,0.024048820137978,0.048900563269854]],[[-0.017757145687938,-0.048142269253731,0.016505543142557],[0.0021066900808364,0.036212213337421,0.017662413418293],[-0.047870397567749,-0.014783290214837,-0.028545094653964]],[[-0.024116411805153,0.073799334466457,-0.040785703808069],[0.017569620162249,0.083470873534679,-0.0086466781795025],[0.062055181711912,0.016016066074371,0.063625730574131]],[[0.009582506492734,0.072558559477329,0.079501569271088],[-0.03287872299552,-0.058829884976149,0.0021755723282695],[0.022421030327678,-0.07204645127058,-0.042079698294401]],[[0.026225870475173,-0.024018790572882,0.027877410873771],[-0.0015891104703769,-0.0047451718710363,0.064309149980545],[0.019994840025902,0.015927195549011,0.017478186637163]],[[0.091567672789097,-0.040583617985249,0.010187741369009],[-0.04604247584939,0.00090382195776328,-0.0046382625587285],[0.015590918250382,-0.053687866777182,-0.0079065291211009]],[[-0.064084261655807,-0.036582384258509,-0.0022888586390764],[0.070931687951088,0.064151436090469,0.0097292494028807],[0.024380851536989,0.023130992427468,-0.03656243160367]],[[0.027234194800258,0.0060294200666249,-0.087194740772247],[-0.064813055098057,0.033631581813097,0.049812104552984],[-0.041346792131662,0.017830548807979,-0.047103021293879]],[[-0.04797613248229,0.092951647937298,0.0042519685812294],[-0.024490658193827,-0.05451687052846,0.014917300082743],[0.075374476611614,-0.023250872269273,0.054021988064051]],[[-0.049356341362,-0.030148668214679,0.017713030800223],[-0.02356624789536,0.019748467952013,0.032350119203329],[0.036504194140434,0.02937725186348,0.03686311841011]],[[0.043636221438646,-0.075654529035091,0.019411081448197],[0.018644073978066,0.032570518553257,-0.079670704901218],[-0.026954593136907,0.047546297311783,0.080766201019287]],[[-0.027936052531004,0.014854462817311,0.0099453255534172],[-0.047527715563774,-0.0099039999768138,-0.010739321820438],[-0.085291281342506,-0.001681883004494,-0.015126516111195]],[[-0.025241566821933,-0.0077193398028612,-0.035306118428707],[0.018392281606793,0.069583281874657,-0.0013738456182182],[0.0040841661393642,-0.041062161326408,-0.02457158640027]],[[0.016640082001686,0.030338104814291,0.03162707388401],[0.0099979471415281,0.0052815964445472,0.027720501646399],[-0.01075123436749,-0.027516804635525,-0.0623361133039]],[[0.034456335008144,0.020729405805469,0.024078879505396],[0.0014138505794108,0.092710494995117,-0.035517808049917],[0.084276251494884,0.024051953107119,-0.032690968364477]],[[-0.047449316829443,0.017237916588783,-0.066535897552967],[-0.0032081841491163,0.063986957073212,7.0954876719043e-05],[0.021188896149397,-0.052451066672802,-0.033933252096176]],[[-0.07866045832634,-0.0044240546412766,-0.0096402717754245],[0.023020105436444,-0.049940932542086,-0.046950813382864],[0.00079141824971884,-0.035154510289431,0.019208712503314]],[[-0.10089357197285,0.034478459507227,-0.024084398522973],[-0.0025045187212527,-0.0027619958855212,-0.086406990885735],[-0.05126915499568,-0.01090176962316,0.037921901792288]],[[-0.060233477503061,-0.00078576145460829,-0.01173647865653],[-0.055095411837101,0.030940465629101,-0.089422427117825],[-0.056116830557585,0.021436855196953,-0.081883251667023]],[[0.059703640639782,0.017195712774992,0.0067465789616108],[-0.0018379486864433,-0.040759522467852,-0.028791071847081],[0.026030568405986,-0.0074508753605187,0.0085199428722262]],[[0.02555344440043,-0.033042319118977,0.067223459482193],[-0.045017041265965,-0.0090410150587559,0.032450530678034],[0.021357320249081,-0.043826665729284,0.019231259822845]],[[0.071066491305828,0.060937877744436,-0.078569278120995],[-0.040731403976679,-0.1055501177907,0.01696141064167],[-0.035345830023289,0.059387482702732,0.043478470295668]],[[-0.08267816901207,-0.016028665006161,-0.0097811548039317],[-0.028217844665051,-0.016608435660601,-0.091805756092072],[-0.03053180128336,0.0027402061969042,0.0049060950987041]],[[-0.0074592777527869,-0.021413862705231,-0.013836390338838],[-0.0052052028477192,-0.028326144441962,0.06478950381279],[0.061161629855633,0.033618237823248,-0.0029167775064707]],[[0.026596922427416,0.022597858682275,-0.0042769103311002],[-0.028997642919421,-0.010940825566649,-0.088848143815994],[-0.0088994046673179,-0.029373120516539,0.027204621583223]],[[-0.017206242308021,-0.032149262726307,0.06628730148077],[-0.010823709890246,0.036958821117878,0.013609633781016],[-0.025671219453216,-0.030456552281976,-0.055022750049829]],[[0.069316811859608,0.021533088758588,-0.0074752797372639],[0.015943100675941,-0.068531937897205,0.029505804181099],[0.057793732732534,0.014188333414495,-0.043445780873299]],[[-0.0093657355755568,-0.014542267657816,0.11662575602531],[0.026913780719042,-0.032302808016539,-0.087230414152145],[0.04485410451889,0.054956022650003,-0.0092181339859962]],[[-0.066549181938171,-0.001399164670147,-0.008387541398406],[0.047874879091978,-0.073881588876247,0.037910979241133],[0.023085456341505,0.030650107190013,0.067286916077137]],[[0.034035794436932,-0.025098299607635,0.034261409193277],[-0.089309513568878,0.010393789969385,0.03393866494298],[0.023658631369472,-0.050722606480122,-0.021630166098475]],[[-0.062588438391685,0.0011738133616745,-0.059326760470867],[0.053480539470911,0.041527796536684,-0.084649734199047],[0.013606215827167,-0.059357441961765,0.027677053585649]],[[0.02610819414258,-0.067372590303421,-0.022763334214687],[0.02487407065928,0.046971008181572,0.031575713306665],[-0.0088009256869555,-0.024179423227906,0.024230945855379]],[[-0.039873577654362,-0.057961627840996,0.018077746033669],[-0.026702815666795,-0.052431911230087,-0.0032527069561183],[0.05900801718235,-0.025173528119922,0.00074882950866595]],[[-0.027198363095522,0.024829659610987,-0.013599757105112],[-0.0090725012123585,-0.043906021863222,-0.02047455497086],[-0.015782289206982,0.036668062210083,-0.04638908430934]],[[0.005492074880749,0.0091311922296882,0.0091050276532769],[0.052858401089907,-0.036737497895956,-0.06630028039217],[0.038351252675056,-0.027783026918769,0.030353661626577]],[[0.024430632591248,-0.013838396407664,-0.0054788398556411],[0.037239447236061,-0.14381837844849,-0.02596434392035],[-0.061290588229895,0.005836836528033,-0.029905807226896]],[[-0.015466917306185,0.048883620649576,0.019703423604369],[0.0093470849096775,-0.06618869304657,0.026447730138898],[-0.051682703197002,0.0047663198783994,-0.042294178158045]],[[-0.036773949861526,0.076088070869446,0.030356531962752],[-0.021735768765211,0.017975743860006,-0.10143319517374],[3.4187665733043e-05,-0.055431079119444,0.023775435984135]],[[0.020411711186171,0.10088792443275,0.027741905301809],[-0.047540750354528,0.045719284564257,-0.084435805678368],[-0.00010076305625262,0.10578688979149,-0.028026739135385]],[[0.078309766948223,-0.036916546523571,-0.060937128961086],[-0.076657809317112,0.0021454149391502,0.037263255566359],[0.0086353793740273,-0.0055366242304444,-0.017577383667231]],[[0.01540008187294,0.0026281534228474,-0.026185985654593],[-0.016362486407161,0.05417089164257,0.015727883204818],[0.052872940897942,0.017917215824127,-0.029206158593297]],[[0.012830056250095,-0.07617723941803,-0.037503488361835],[0.0091976467519999,-8.6469313828275e-05,0.017172571271658],[-0.055310908704996,-0.073653116822243,0.017697365954518]],[[0.05010012164712,-0.041567448526621,-0.0309465713799],[0.049438778311014,-0.023907102644444,-0.01525410450995],[-0.014193341135979,-0.028528375551105,0.04178162291646]],[[0.043067924678326,-0.0097111407667398,0.0082278521731496],[0.049566555768251,0.033285804092884,0.052341852337122],[0.030739083886147,-0.098637729883194,-0.0091256583109498]],[[0.0309481266886,-0.045547898858786,0.023813873529434],[0.0022878423333168,-0.018669277429581,-0.0071966112591326],[-0.0082542821764946,-0.028340596705675,0.068238846957684]],[[-0.00011590597569011,0.069727629423141,-0.059364404529333],[-0.0077386759221554,0.0075898235663772,-0.028512144461274],[-0.002638652920723,0.033719200640917,-0.076063744723797]],[[0.0025968486443162,-0.033895429223776,0.0073779164813459],[0.020057402551174,-0.033693160861731,-0.031079065054655],[-0.00081435102038085,-0.036868218332529,-0.032759636640549]],[[0.035275280475616,0.0010122203966603,0.0055375350639224],[-0.0028099613264203,-0.021127505227923,0.041312277317047],[-0.028759459033608,-0.018356183543801,-0.079468488693237]],[[-0.019250495359302,-0.017003376036882,-0.051693022251129],[-0.01050273142755,0.07611283659935,-0.079990066587925],[0.03535183519125,0.042388193309307,0.016678225249052]],[[-0.011742857284844,0.02417771704495,0.020891876891255],[0.013690405525267,-0.032949142158031,-0.014310827478766],[0.03472663462162,0.052476238459349,0.074852518737316]],[[-0.0027749126311392,0.036159589886665,0.012283796444535],[-0.016121841967106,0.0303621198982,0.058048471808434],[0.00972821097821,0.022294122725725,0.047145817428827]],[[-0.041092999279499,-0.0067312172614038,-0.058354519307613],[-0.037570413202047,0.019847445189953,0.029859045520425],[0.036720011383295,0.04819693416357,0.046096596866846]],[[0.052996024489403,0.02976905927062,-0.031652968376875],[0.01470729149878,-0.0053511708974838,-0.020908650010824],[-0.0021737224888057,0.055752072483301,0.071023017168045]],[[-0.024147985503078,-0.035712581127882,-0.055665872991085],[0.035983208566904,-0.0057970164343715,-0.045737408101559],[0.042488243430853,0.031894635409117,0.012122268788517]],[[-0.015241250395775,-0.071203738451004,0.0047723264433444],[-0.047884985804558,0.029943019151688,0.079185403883457],[0.045583177357912,-0.052761279046535,0.022942114621401]],[[-0.067842438817024,-0.048353873193264,0.026021176949143],[-0.01458256226033,0.07194734364748,-0.018363043665886],[0.039885237812996,-0.0012436260003597,-0.039490964263678]],[[-0.0556905195117,-0.04317007958889,0.0072451285086572],[0.034761670976877,0.010150556452572,0.04992326721549],[-0.023635659366846,0.015527227893472,-0.036659266799688]],[[-0.048237834125757,0.00095624546520412,-0.030008312314749],[-0.037759307771921,-0.0093646375462413,-0.034340832382441],[-0.064373813569546,0.0054807639680803,0.018575126305223]],[[-0.0091238766908646,-0.019018335267901,-0.0033507263287902],[0.066819034516811,-0.067603453993797,0.082340061664581],[-0.051472924649715,-0.018600877374411,0.0079852789640427]],[[-0.0055658291094005,-0.022554026916623,0.030961889773607],[0.036352097988129,0.01805698685348,-0.043246306478977],[-0.073728993535042,0.014772855676711,-0.025551412254572]],[[0.045920550823212,0.0048461104743183,0.010882733389735],[0.045103121548891,0.054219055920839,-0.02597445435822],[0.027805633842945,0.0014177062548697,-0.047489821910858]],[[-0.00032685304176994,-0.057190649211407,0.0027721114456654],[-0.022161157801747,-0.031926479190588,-0.027323063462973],[-0.034831792116165,-0.046278808265924,-0.035918518900871]],[[-0.0070668910630047,0.016595846042037,0.028817020356655],[0.037888266146183,-0.078460194170475,0.013870011083782],[0.034037712961435,0.0032078719232231,0.027306836098433]],[[-0.016034917905927,0.067407533526421,-0.02586424537003],[-0.0046493001282215,-0.012915844097733,-0.01551026571542],[-0.026577232405543,0.00010897902393481,-0.06534256786108]],[[0.013477711938322,0.0037719439715147,0.0077729541808367],[-0.0411147326231,-0.062147572636604,-0.0038829678669572],[-0.10913101583719,-0.00010944879613817,-0.036067627370358]],[[0.028946937993169,-0.070887178182602,-0.076279193162918],[-0.061916343867779,0.034915801137686,0.031021744012833],[-0.03773470968008,-0.055645227432251,-0.0060198912397027]],[[-0.037685729563236,0.062686733901501,0.018772341310978],[0.058766264468431,-0.034586865454912,0.022445060312748],[0.013636107556522,-0.029499430209398,-0.020790301263332]],[[-0.012589211575687,-0.011289189569652,0.043934844434261],[0.10013253986835,-0.003831097157672,-0.057292148470879],[-0.12801484763622,0.013335020281374,-0.022611036896706]],[[0.053575184196234,0.033734615892172,-0.028939068317413],[-0.015046400018036,-0.015079722739756,-0.029848609119654],[-0.017562141641974,0.021373748779297,0.027122851461172]],[[-0.032481752336025,-0.016401303932071,0.016844484955072],[-0.027287712320685,0.088309161365032,0.032070025801659],[0.039634309709072,0.02931191213429,-0.011762818321586]],[[-0.047021068632603,0.0036098207347095,0.027823327109218],[0.039732210338116,0.010028251446784,0.014907159842551],[-0.04802929982543,-0.045267388224602,0.021349279209971]],[[0.015548818744719,0.099355071783066,0.045086719095707],[0.043618761003017,0.0008553322404623,0.012224514037371],[-0.087736889719963,0.048533994704485,-0.037392348051071]],[[-0.04088244959712,0.017328672111034,-0.049287080764771],[-0.032334331423044,-0.0081386975944042,0.0024838952813298],[0.0087521011009812,0.0015758865047246,-0.078839235007763]],[[-0.026387095451355,0.054393786936998,0.038759082555771],[0.034772973507643,0.018216360360384,-0.06744597107172],[0.055378083139658,0.015627784654498,-0.0045515140518546]],[[0.018122868612409,0.034500781446695,0.030287971720099],[-0.061545979231596,0.027777381241322,0.00064381584525108],[0.0058466317132115,0.0056265955790877,0.055577129125595]],[[-0.0048604030162096,-0.02861731313169,0.003616523463279],[-0.0044477633200586,0.025393765419722,0.0052760890685022],[0.024739095941186,0.046505682170391,0.020845107734203]],[[-0.055458437651396,-0.041100785136223,0.021059921011329],[0.000469069898827,0.0020100211258978,-0.081690542399883],[0.066767416894436,-0.093002669513226,0.038816384971142]],[[0.0017732311971486,-0.005684819072485,-0.081628501415253],[-0.0085467286407948,0.012356426566839,-0.07185060530901],[0.054797355085611,-0.016755077987909,0.014778927899897]],[[0.014384362846613,-0.027629567310214,-0.0052523338235915],[0.055155601352453,0.023534424602985,0.0011629436630756],[0.042275995016098,0.025581194087863,0.027946878224611]],[[0.0093621490523219,-0.034107860177755,0.033483196049929],[0.018395794555545,-0.041218113154173,-0.035365823656321],[-0.028254393488169,-0.020861471071839,0.03161520883441]],[[-0.018377341330051,-0.0046178842894733,0.05304541811347],[-0.076715551316738,0.011803093366325,-0.033746175467968],[-0.0044928407296538,0.047843139618635,-0.019531533122063]],[[-0.0076705501414835,0.049892473965883,0.051736529916525],[0.023381091654301,-0.020800458267331,0.044799912720919],[-0.068475693464279,-0.038413528352976,0.030286647379398]],[[0.0087304059416056,-0.047998942434788,0.051088098436594],[-0.07264818251133,-0.047575302422047,-0.020947244018316],[0.079787291586399,-0.076618187129498,0.0053006731905043]],[[0.027113668620586,0.038303252309561,-0.071639768779278],[0.010264274664223,-0.058432646095753,0.024657603353262],[-0.01073885243386,-0.041072823107243,0.010269809514284]],[[-0.024810388684273,-0.0047108205035329,0.036597911268473],[-0.070378951728344,0.030062086880207,-0.0089148804545403],[0.036496698856354,0.0083727557212114,-0.033003933727741]],[[-0.031231690198183,-0.026475679129362,-0.032441504299641],[-0.0002410454035271,-0.018138825893402,-0.061873696744442],[-0.047260127961636,-0.02740285359323,-0.0098353819921613]],[[0.010188933461905,-0.0024627002421767,0.044910728931427],[-0.012643716298044,0.036167621612549,0.10028544068336],[-0.013888499699533,-0.0053780605085194,0.080444067716599]],[[0.022203268483281,-0.025483781471848,0.0093720396980643],[-0.042330488562584,0.032120261341333,0.0089902197942138],[-0.068616777658463,0.047683898359537,-0.0049930335953832]],[[-0.045786798000336,0.028624188154936,-0.009629993699491],[-0.033621169626713,-0.0015686125261709,0.0042097275145352],[0.044269561767578,0.048831969499588,-0.0070548136718571]],[[0.011181068606675,-0.033412855118513,0.023719992488623],[0.030986895784736,-0.0036115443799645,-0.072532072663307],[-0.015987664461136,-0.017201835289598,-0.075049996376038]],[[-0.066531822085381,-0.016870303079486,-0.018065745010972],[0.04245588555932,-0.074032559990883,0.073021650314331],[-0.005500353872776,0.028377691283822,0.014759081415832]],[[0.075279347598553,0.0028004026971757,-0.018511680886149],[0.019694922491908,0.036965098232031,-0.034955576062202],[-0.0067470613867044,-0.020953701809049,0.021955218166113]],[[0.021068055182695,-0.090752072632313,-0.038079131394625],[-0.018552655354142,-0.0072894496843219,-0.0071710185147822],[0.019157413393259,-0.016645170748234,0.042805686593056]],[[-0.010456804186106,-0.022921867668629,0.078784182667732],[0.018163003027439,0.083786137402058,-0.045520562678576],[0.079581916332245,-0.085883051156998,0.010677274316549]],[[0.035660240799189,0.067267872393131,0.020137809216976],[0.014043165370822,-0.010145008563995,0.012731324881315],[0.0083693973720074,0.023720525205135,-0.0088642770424485]],[[0.0050398353487253,0.0037947227247059,0.034795485436916],[0.024286041036248,-0.043753352016211,-0.015765901654959],[0.0063949497416615,0.082570098340511,0.0062260357663035]],[[-0.018144156783819,-0.037889305502176,-0.017124151811004],[0.020312942564487,-0.041362870484591,0.0035839988850057],[-0.06372969597578,-0.038809604942799,0.036130707710981]],[[0.025401581078768,-0.026936385780573,-0.0012493681861088],[0.029902547597885,-0.0048482259735465,-0.077818274497986],[0.013359311036766,-0.031395148485899,0.0707793161273]],[[0.042396456003189,0.05070998519659,-0.002528601558879],[-0.042652625590563,0.05914893001318,-0.037173178046942],[-0.00033289461862296,-0.061483941972256,-0.015406265854836]],[[-0.0088182101026177,0.055942445993423,-0.046740550547838],[-0.059939425438643,-0.062020007520914,-0.033893194049597],[-0.0020875826012343,-0.012474033050239,-0.063922896981239]],[[0.047042511403561,-0.018160136416554,-0.005350605584681],[-0.027936173602939,-0.038254201412201,-0.0063389334827662],[-0.074007757008076,0.024375833570957,-0.019411697983742]],[[-0.040043909102678,0.024469146504998,-0.011016303673387],[-0.055296145379543,-0.031783521175385,0.013050408102572],[-0.0048648095689714,0.03798395767808,-0.0055803093127906]],[[-0.10588488727808,0.054717138409615,0.062689073383808],[-0.039619542658329,0.0181251950562,-0.005089748185128],[0.034050855785608,0.017372258007526,-0.041542019695044]],[[-0.045846994966269,-0.05378582701087,0.01597373560071],[-0.027837516739964,0.02780338563025,-0.080300860106945],[-0.049384817481041,0.018033891916275,-0.052304401993752]]],[[[0.04951323568821,-0.0077508874237537,0.019593022763729],[0.039099238812923,0.0090532982721925,0.039837568998337],[0.0041611501947045,0.028619077056646,-0.073254100978374]],[[0.011618753895164,0.015211356803775,0.021747522056103],[-0.058263417333364,-0.0083809541538358,-0.023253435268998],[-0.023954669013619,-0.035855147987604,0.019297828897834]],[[0.00043345629819669,0.023333201184869,0.017089674249291],[0.064719170331955,-0.031479500234127,-0.0016179849626496],[-0.013996648602188,-0.010287386365235,0.023280100896955]],[[-0.02482427470386,-0.021991806104779,0.023128714412451],[0.042945649474859,0.01255305763334,0.042030911892653],[-0.007778026163578,-0.06428986042738,-0.042225927114487]],[[-0.026746597141027,-0.027261212468147,-0.018138123676181],[0.054770160466433,0.040611989796162,-0.051076199859381],[-0.041092723608017,-0.093742810189724,0.041768003255129]],[[0.0062625403515995,0.075338736176491,0.0094577483832836],[-0.0019091912545264,-0.042834259569645,-0.022704686969519],[-0.054731041193008,0.015453251078725,0.069069802761078]],[[0.03971304371953,0.049824237823486,-0.094844721257687],[-0.034533314406872,-0.003827617270872,-0.037258941680193],[0.03209675103426,-0.014048578217626,0.012340575456619]],[[0.037573594599962,-0.02113845013082,0.0081004332751036],[0.0088699860498309,-0.025775598362088,-0.013755003921688],[-0.040218587964773,0.086831882596016,0.048528619110584]],[[0.0044912174344063,-0.04853406175971,-0.062644474208355],[0.010945243760943,0.032347418367863,0.018418988212943],[0.024271050468087,0.056976597756147,0.0018060459988192]],[[0.096776656806469,-0.055164687335491,0.061757303774357],[0.02198414504528,0.033965576440096,-0.044732809066772],[-0.023406147956848,0.066036626696587,0.055136207491159]],[[0.021993147209287,-0.00035069553996436,-0.013620334677398],[0.0039738034829497,0.052358888089657,0.022753320634365],[-0.0029707397334278,0.029166497290134,-0.019721254706383]],[[-0.010341570712626,0.00685292808339,0.025130925700068],[-0.020797992125154,0.059895887970924,0.06763718277216],[-0.034063447266817,-0.011063044890761,0.042645189911127]],[[-0.0046960548497736,-0.095470741391182,0.075652860105038],[-0.05355079472065,-0.019886782392859,0.018018528819084],[0.048130556941032,0.041093938052654,0.047867212444544]],[[-0.0076212789863348,0.033149100840092,0.00063658342696726],[0.029707498848438,-0.046839263290167,0.015678096562624],[0.0016228412277997,-0.052085980772972,0.070072494447231]],[[0.0015241681830958,0.0053247255273163,0.0012075004633516],[0.0078719276934862,0.0023393738083541,0.045664988458157],[0.070437334477901,0.1058177947998,0.0074525601230562]],[[0.0046209571883082,0.018043093383312,0.015546989627182],[-0.041639897972345,-0.048984661698341,0.012434530071914],[0.02079801261425,-0.0016314889071509,0.014670143835247]],[[-0.03000214882195,-0.028937535360456,-0.067611761391163],[-0.0008016821811907,0.01171287894249,-0.013673612847924],[0.011655826121569,0.067147172987461,0.082987055182457]],[[-0.0057936180382967,4.1907376726158e-05,-0.038613669574261],[-0.015328174456954,-0.032366905361414,-0.017494788393378],[0.023746397346258,0.021312169730663,0.029427977278829]],[[0.00622663134709,-0.032889358699322,-0.01381763163954],[0.087527215480804,0.032929122447968,0.050357904285192],[-0.098394483327866,0.059687484055758,0.026525683701038]],[[0.01438922714442,-0.03022894077003,-0.016085330396891],[-0.024144057184458,0.07649452984333,-0.019945727661252],[0.0069845230318606,0.015683941543102,0.080632500350475]],[[0.10818859189749,-0.01104521099478,0.020555023103952],[-0.016549773514271,-0.031273528933525,0.0033224348444492],[-0.0019333572126925,-0.036394730210304,0.032999828457832]],[[0.007338943425566,0.044481057673693,0.028152041137218],[0.097530253231525,0.012899931520224,0.012402458116412],[0.018626809120178,0.047866389155388,-0.035320445895195]],[[0.074379988014698,-0.047747492790222,0.02232750877738],[-0.1044092848897,0.01856922544539,0.065108865499496],[0.015538170933723,-0.089892521500587,0.029617324471474]],[[-0.0054397657513618,-0.030644977465272,-0.0010775944683701],[0.070790164172649,-0.029722118750215,0.013297205790877],[-0.030317077413201,-0.10561366379261,0.040075231343508]],[[0.0017915372736752,-0.048672240227461,0.055812984704971],[0.040761947631836,-0.080653935670853,0.001489614835009],[-0.0041866237297654,0.069341316819191,0.030478563159704]],[[0.0026653760578483,0.010894525796175,-0.029946979135275],[0.001338915200904,-0.023156533017755,-0.018459808081388],[-0.0026976088993251,0.0060861529782414,-0.027319300919771]],[[0.014845360070467,0.044823821634054,-0.028884509578347],[0.017003459855914,0.0019023306667805,-0.011221622116864],[0.012470122426748,-0.011243951506913,-0.0043508624657989]],[[-0.038634367287159,0.015513668768108,0.0017107503954321],[0.02219021692872,-0.054717510938644,0.040460966527462],[0.046976268291473,0.025345548987389,-0.067095465958118]],[[-0.040651172399521,0.02641568146646,-0.034117124974728],[0.043898317962885,-0.039437402039766,0.013206302188337],[-0.0074033653363585,-0.001884397584945,-0.075376823544502]],[[-0.0086195087060332,-0.018810946494341,-0.085921503603458],[-0.0033361604437232,0.067041039466858,0.0085399700328708],[0.056730702519417,0.090005926787853,0.040829066187143]],[[0.0013894329313189,0.0074404259212315,-0.0031979181803763],[0.045199260115623,0.046674396842718,0.018428478389978],[0.026741839945316,-0.033399350941181,-0.072714559733868]],[[0.022574516013265,-0.019272422417998,-0.012909171171486],[-0.048745714128017,0.01078986749053,0.036128968000412],[-0.059957962483168,-0.037694580852985,0.087874241173267]],[[-0.066612787544727,0.00067883433075622,0.12378097325563],[0.063819959759712,0.040413875132799,-0.047100301831961],[-0.010110381990671,0.02226173505187,0.012466954067349]],[[-0.033113062381744,0.051814276725054,0.0043810200877488],[0.022274957969785,0.049263965338469,-0.005678434856236],[-0.0048393462784588,-0.0006693554460071,-0.032309971749783]],[[0.043802063912153,-0.093702860176563,0.0064792674966156],[-0.05239662528038,0.027572020888329,-0.046841606497765],[0.060507070273161,-0.065866842865944,-0.01419270131737]],[[-0.037224866449833,0.021018197759986,0.061708625406027],[-0.044011823832989,0.028882451355457,-0.0027535781264305],[0.0039940313436091,0.0069541437551379,0.061680126935244]],[[-0.0052117123268545,0.023443071171641,-0.1071061193943],[-0.06462537497282,0.062867939472198,0.0016923557268456],[-0.012259960174561,-0.037338867783546,-0.047941770404577]],[[-0.032761596143246,-0.0057937707751989,-0.051469136029482],[0.0012412791838869,-0.088997088372707,-0.035719525068998],[-0.026197751984,0.03753187507391,0.037864152342081]],[[-0.032769065350294,-0.0088599594309926,0.066376380622387],[0.011570254340768,0.0092707294970751,0.075997859239578],[0.027129145339131,-0.068328894674778,-0.029748678207397]],[[-0.059682723134756,-0.063315235078335,-0.00018913707754109],[0.064245983958244,0.07085619866848,-0.089151531457901],[0.021749082952738,0.018138451501727,0.04530356824398]],[[0.022675717249513,-0.12116784602404,-0.017764369025826],[0.13188301026821,-0.0012623425573111,-0.044193182140589],[-0.025024337694049,-0.063216470181942,0.040325541049242]],[[-0.022905573248863,-0.055458884686232,0.00069288472877815],[0.0025509216357023,0.005847379565239,0.0091677391901612],[-0.031684879213572,0.0033844991121441,-0.087218843400478]],[[-0.029555583372712,-0.002556006424129,-0.01912665553391],[0.011770894750953,0.11112577468157,-0.075959846377373],[-0.03662795946002,-0.067387312650681,0.02253182977438]],[[-0.014317101798952,0.030706284567714,0.031947541981936],[0.042723994702101,0.0086936643347144,-0.0053350371308625],[0.0025398924481124,0.033147536218166,-0.0045298226177692]],[[-0.053948529064655,0.041002459824085,-0.048417184501886],[-0.020115753635764,0.050427615642548,0.010453086346388],[-0.057605378329754,-0.062305945903063,-0.017812879756093]],[[0.039916589856148,0.024999063462019,0.010946495458484],[-3.7926882214379e-05,0.063573196530342,-0.014832748100162],[-0.058123156428337,0.054115202277899,-0.041010838001966]],[[-0.040737874805927,0.054124571382999,0.012634061276913],[0.017385259270668,0.046273928135633,0.034686215221882],[-0.027650801464915,0.028868786990643,-0.035872686654329]],[[-0.014534729532897,0.056545756757259,0.0080654146149755],[0.052319888025522,-0.025513963773847,0.00032612023642287],[-0.0028111801948398,0.042980507016182,-0.010116143152118]],[[-0.01251230482012,-0.0058103548362851,0.02472896873951],[0.085154555737972,-0.016819206997752,0.010291424579918],[-0.020251639187336,0.01731588318944,0.012912327423692]],[[-0.00036852803896181,-0.085079707205296,0.0071313064545393],[-0.044205781072378,0.064869150519371,-0.0049361158162355],[0.070994086563587,-0.0043101985938847,0.03540850430727]],[[0.02346383780241,-0.074495524168015,0.040139432996511],[0.054801341146231,-0.031833332031965,0.068611994385719],[-0.0061021633446217,-0.026475349441171,0.090059205889702]],[[-0.063334584236145,-0.032704714685678,0.031927458941936],[0.028976831585169,0.024027485400438,0.010942676104605],[-0.019318776205182,-0.0011254758574069,0.09179425984621]],[[-0.017992684617639,0.047706127166748,0.004500696901232],[0.043779615312815,0.054025657474995,0.015060410834849],[-0.063133537769318,-0.04615955799818,0.0010692602954805]],[[-0.029257830232382,0.028474595397711,0.025246638804674],[-0.0096788750961423,-0.0013831106480211,0.061322409659624],[0.021625522524118,0.01624896004796,-0.01805268228054]],[[0.0092890514060855,0.068222172558308,-0.00050136056961492],[0.037447396665812,-0.041212916374207,-0.029635014012456],[0.062283597886562,0.012873478233814,-0.072294652462006]],[[-0.019017970189452,-0.029236972332001,-0.048238564282656],[0.02142246440053,0.076518766582012,-0.026869745925069],[0.098622187972069,0.032566957175732,-0.039741601794958]],[[-0.062250096350908,0.0094119431450963,-0.0043900529854],[0.025160674005747,-0.050240594893694,0.031444419175386],[-0.024370927363634,-0.029291022568941,0.028733698651195]],[[-0.01339615508914,0.050754234194756,0.0026826173998415],[-0.012365468777716,0.038364998996258,-0.088228292763233],[-0.043575067073107,-0.097075529396534,-0.0077465232461691]],[[0.027575805783272,0.023739896714687,0.032071128487587],[0.014196856878698,0.024919619783759,0.048927828669548],[-0.044734623283148,-0.040903519839048,-0.047636855393648]],[[0.050724547356367,0.018376084044576,0.05530671030283],[-0.026174429804087,0.0029336053412408,-0.0020403086673468],[0.028211284428835,0.034807972609997,0.011985273100436]],[[-0.091911271214485,-0.013434255495667,0.011794243007898],[-0.03464762121439,0.079291380941868,-0.041846666485071],[-0.01764384098351,-0.042091533541679,0.064726464450359]],[[-0.024845477193594,0.12155282497406,-0.034713450819254],[0.014326672069728,0.0093259438872337,0.0074821305461228],[0.018853904679418,0.038426969200373,0.017622157931328]],[[0.0081134811043739,-0.022728556767106,0.036892380565405],[-0.040288235992193,-0.044349599629641,-0.00031345704337582],[0.049411959946156,-0.010223756544292,0.029522115364671]],[[0.0019796506967396,-0.040477775037289,0.048849631100893],[0.02064629457891,-0.028254156932235,-0.010293070226908],[-0.003300502197817,-0.041534006595612,-0.00056558393407613]],[[0.029645862057805,0.031982716172934,-0.041100218892097],[0.01004583388567,0.12356846779585,-0.048337176442146],[0.021669376641512,-0.043654698878527,0.019277973100543]],[[0.031797137111425,-0.0099500603973866,0.026953252032399],[0.038386791944504,-0.049102108925581,-0.037556041032076],[0.012208783067763,-0.029915194958448,-0.0035500600934029]],[[0.0045191063545644,0.067110382020473,-0.03570806607604],[0.054368264973164,0.0022342279553413,-0.061405371874571],[0.025080252438784,-0.044398628175259,-0.04024500399828]],[[0.0087941084057093,-0.041131507605314,-0.0079135894775391],[-0.052889484912157,0.030902996659279,0.010656374506652],[-0.022650683298707,0.015977632254362,-0.032329082489014]],[[-0.0010840807808563,-0.023756550624967,0.066054858267307],[0.015578963793814,-0.037706557661295,-0.022386493161321],[0.0029515372589231,0.089119806885719,0.01852054707706]],[[0.042948123067617,0.021806705743074,0.059302177280188],[0.048730503767729,-0.082432083785534,0.050659824162722],[0.016160262748599,-0.00043341159471311,0.0042037814855576]],[[-0.015251064673066,0.017602847889066,0.073633067309856],[0.049287736415863,-0.051437370479107,-0.01039906963706],[0.021991331130266,0.0090238777920604,0.10059487819672]],[[-0.00044230264029466,-0.06794236600399,0.0061924667097628],[-0.015847323462367,0.0618040189147,-0.020407192409039],[0.030556596815586,-0.036788299679756,-0.066211618483067]],[[-0.021679615601897,-0.028042752295732,0.0231499876827],[-0.018365843221545,0.017211435362697,-0.042475312948227],[0.028552532196045,0.0034151358995587,0.031642481684685]],[[-0.11536165326834,0.089228421449661,0.0088981604203582],[0.045196264982224,-0.059512443840504,0.032847806811333],[0.0384681224823,0.032489109784365,-0.049124877899885]],[[0.041291546076536,0.096735641360283,0.0011841285740957],[0.017432237043977,-0.055818017572165,-0.05948855355382],[0.028579795733094,0.049780491739511,-0.096024855971336]],[[0.0013795708073303,0.058222480118275,-0.048437613993883],[0.02753602527082,-0.050827898085117,0.048694219440222],[-0.0032602092251182,-0.030403459444642,0.019166853278875]],[[0.028864368796349,0.054025262594223,0.0011991637293249],[0.011181886307895,-0.016904398798943,0.066126123070717],[-0.0067156255245209,1.7154565284727e-05,-0.0068227956071496]],[[0.043956778943539,0.023242814466357,0.056065462529659],[-0.030542591586709,-0.01111928652972,0.022226205095649],[0.078497275710106,-0.070200212299824,0.033969666808844]],[[0.00021773131447844,-0.070547193288803,0.024593053385615],[-0.035630725324154,0.07184287160635,-0.064608216285706],[-0.040624119341373,-0.013523384928703,0.037486594170332]],[[-0.042200081050396,0.095669716596603,0.00099539663642645],[0.059643756598234,-0.076272800564766,-0.058063618838787],[0.071582682430744,0.00068337889388204,0.064290933310986]],[[-0.0094478856772184,-0.01442274171859,0.00098199408967048],[-0.061642214655876,0.033758752048016,-0.028874875977635],[0.065481223165989,-0.066807381808758,0.011407790705562]],[[-0.033415678888559,-0.050663277506828,0.013837480917573],[-0.02658461779356,-0.010296455584466,-0.023146571591496],[0.11066274344921,-0.0017140309792012,0.011734249070287]],[[-0.048374474048615,-0.07243973761797,0.0018360908143222],[-0.017276119440794,-0.022004205733538,-0.022802758961916],[0.01161406096071,-0.034819148480892,0.016385877504945]],[[-0.02202957868576,-0.041721157729626,0.048709023743868],[0.060665745288134,-0.022217519581318,-0.068644292652607],[0.023183226585388,0.060375109314919,-0.033550769090652]],[[0.0089454054832458,0.064201965928078,-0.059248998761177],[0.015652228146791,0.037295922636986,0.10556393116713],[-0.020624358206987,0.023798828944564,-0.022751240059733]],[[-0.080797784030437,-0.0034189019352198,0.046443395316601],[-0.0056348787620664,0.032335966825485,-0.075346231460571],[0.025883117690682,-0.011001252569258,-0.027375834062696]],[[0.047804746776819,0.0010631394106895,-0.024229740723968],[-0.0016414823476225,0.0014011781895533,-0.037867601960897],[0.037714891135693,0.011410020291805,0.0032075780909508]],[[-0.01870078034699,-0.026446023955941,0.04098866507411],[-0.044373225420713,0.024399733170867,0.020045671612024],[0.049242150038481,-0.037614554166794,0.021386615931988]],[[-0.0064397645182908,0.0037122203502804,-0.052490878850222],[-0.087795913219452,0.023657072335482,-0.017179254442453],[-0.003251489950344,-0.039840582758188,-0.016451627016068]],[[-0.073688246309757,-0.010780050419271,-0.001997573999688],[0.020767385140061,-0.048748660832644,0.042257487773895],[-0.029940323904157,-0.01236123777926,-0.010572410188615]],[[-0.0012424681335688,-0.056359875947237,0.04559675976634],[0.010020450688899,0.016772840172052,-0.034384578466415],[0.012557005509734,0.0071201855316758,-0.076832324266434]],[[-0.015675684437156,-0.0038563413545489,-0.11822994798422],[0.071571618318558,0.053397815674543,-0.004490771330893],[-0.0034222798421979,-0.011589541099966,-0.075444363057613]],[[-0.015254027210176,-0.019810173660517,0.035633537918329],[0.053943745791912,-0.016892898827791,-0.10263600200415],[0.004818195477128,0.021009458228946,0.0085103120654821]],[[-0.030493220314384,-0.011650513857603,0.016249883919954],[-0.0085156736895442,0.037527408450842,-0.0026724427007139],[0.022837046533823,0.022904789075255,0.022282319143414]],[[-0.020908994600177,-0.095772311091423,-0.010731497779489],[0.06228357180953,-0.013616087846458,0.0080902241170406],[0.04026023671031,0.024460526183248,-0.012122156098485]],[[-0.024046916514635,-0.054071333259344,0.032125554978848],[-0.0060718744061887,0.05080184713006,-0.020442986860871],[-0.070230238139629,0.056554730981588,0.006357513833791]],[[0.074338488280773,0.068627096712589,0.019852370023727],[-0.033491119742393,-0.07890947163105,0.00034560670610517],[0.01206841878593,0.024744890630245,-0.04038343206048]],[[0.038022797554731,-0.0012779739918187,0.072577834129333],[0.0017368290573359,-0.011346715502441,-0.087313450872898],[0.026368450373411,0.079100199043751,0.04192328825593]],[[0.067623451352119,-0.054232750087976,0.022484164685011],[-0.023464480414987,0.003728112205863,-0.0070840176194906],[0.066956616938114,-0.033136706799269,-0.019750421866775]],[[0.056140411645174,0.025209264829755,-0.0018255261238664],[0.0058893230743706,-0.0015875296667218,0.023071115836501],[0.0064482260495424,0.031643409281969,-0.063678301870823]],[[-0.020039821043611,0.041655786335468,-0.049840867519379],[-0.031341411173344,-0.09691908955574,0.042455472052097],[0.0055196760222316,0.054378844797611,0.012069682590663]],[[-0.053728882223368,0.017490167170763,-0.034550823271275],[0.098367840051651,0.068133160471916,-0.031679254025221],[0.037956070154905,0.055974595248699,-0.056751530617476]],[[-0.088782504200935,0.022050661966205,0.017792334780097],[-0.020850891247392,0.013998922891915,0.11192810535431],[0.018037177622318,-0.0061012115329504,0.053107377141714]],[[0.026131611317396,-0.0096804220229387,-0.0078134462237358],[-0.00096263206796721,-0.045267283916473,-0.019193032756448],[-0.025999123230577,-0.049958795309067,-0.057079378515482]],[[0.046536460518837,-0.027906117960811,-0.022317228838801],[-0.025335863232613,0.047326870262623,0.066789582371712],[-0.019117031246424,-0.11142641305923,-0.023829424753785]],[[-0.055420979857445,0.035129994153976,0.056720472872257],[0.021736668422818,-0.014154964126647,0.070006646215916],[0.051431611180305,0.019533252343535,0.021675126627088]],[[0.049241483211517,0.0051509030163288,0.039443749934435],[-0.038470312952995,-0.028186952695251,-0.00034455183777027],[0.0012805213918909,-0.016703125089407,-0.032529644668102]],[[0.0055460790172219,-0.026606682687998,0.014440715312958],[-0.0055798920802772,-0.019598631188273,0.012273796834052],[-0.024307742714882,0.047222021967173,0.067285612225533]],[[-0.029828177765012,-0.048309803009033,-0.072886072099209],[0.036369323730469,-0.021788062527776,0.056291684508324],[-0.0026751216500998,-0.046515043824911,-0.012506385333836]],[[-0.094130970537663,-0.023720094934106,0.012423722073436],[-0.025859586894512,-0.067784860730171,-0.067161194980145],[0.06266462802887,0.013778489083052,-0.0084879379719496]],[[-0.035400204360485,-0.00026137760141864,0.11259318888187],[-0.0065051331184804,0.00044497588532977,0.060818959027529],[-0.0060812598094344,0.0072777466848493,0.052507173269987]],[[0.047932472079992,0.0056213685311377,0.014381131157279],[-0.027562474831939,-0.003213758347556,0.03405224904418],[0.048074379563332,-0.0030426648445427,-0.022355617955327]],[[0.048718106001616,0.11279164254665,0.040154464542866],[0.0081642232835293,-0.038526371121407,-0.03082081489265],[0.038707163184881,-0.026459349319339,-0.018774742260575]],[[-0.010874616913497,-0.01107679028064,-0.028847875073552],[-0.011881901882589,-0.0062678907997906,-0.020424475893378],[-0.037171620875597,-0.028269706293941,-0.0040217088535428]],[[0.052500165998936,0.0061068795621395,0.054670143872499],[-0.066699542105198,0.035613510757685,-0.052609760314226],[0.0035425659734756,0.018738409504294,-0.0055469325743616]],[[-0.0010107920970768,-0.049578469246626,0.011818335391581],[-0.038897786289454,-0.020818512886763,0.11325731128454],[0.03614903986454,-0.051886264234781,-0.042229190468788]],[[0.014166961424053,-0.016858076676726,-0.059883624315262],[0.022631766274571,0.051457487046719,0.010150503367186],[-0.0054962299764156,-0.041650034487247,0.012664188630879]],[[-0.021843550726771,-0.040521930903196,-0.043274834752083],[0.014727779664099,-0.017268868163228,-0.033759623765945],[0.021384064108133,0.047819331288338,0.0011260143946856]],[[-0.017639750614762,0.0060928473249078,-0.0081543773412704],[0.045862626284361,0.018554145470262,0.04400185123086],[-0.010952725075185,-0.0035378360189497,-0.055771321058273]],[[-0.10831847786903,-0.0059168543666601,0.054040394723415],[0.0034105982631445,0.041778363287449,-0.0097097204998136],[-0.059115331619978,0.0045215655118227,0.0035917244385928]],[[-0.032458916306496,-0.015189151279628,0.036394774913788],[-0.034937996417284,-0.027989890426397,0.011171398684382],[-0.044696468859911,0.012653863988817,-0.075567618012428]],[[-0.0047626066952944,0.019354837015271,0.019979247823358],[-0.046373970806599,0.02905142866075,0.023298379033804],[0.014212836511433,-0.0093191880732775,0.055789098143578]],[[-0.0005920595722273,-0.073863252997398,-0.030742041766644],[0.090386673808098,-0.023760765790939,0.031270183622837],[0.00033014989458025,-0.0036860704421997,0.029966419562697]],[[0.0010974279139191,0.018178667873144,-0.029929416254163],[-0.063124902546406,0.049292635172606,-0.053818318992853],[-0.011303162202239,-0.065087050199509,0.027902005240321]],[[0.059193033725023,0.032597281038761,0.014214691706002],[-0.027989432215691,0.07006610929966,-0.070749834179878],[0.0015119750751182,-0.020852733403444,-0.0038607409223914]],[[-0.016610071063042,-0.040702842175961,0.019823322072625],[0.046382434666157,0.009231629781425,0.015864733606577],[0.10051576048136,-0.087440505623817,-0.031105544418097]],[[0.016651500016451,0.021392978727818,-0.002857064595446],[-0.061955630779266,0.057381652295589,-0.012932745739818],[0.0086131449788809,-0.029361803084612,0.023783331736922]],[[0.022137379273772,-0.0050039445050061,0.0025638877414167],[0.018915252760053,-0.00039210234535858,-0.03526333719492],[0.02949776686728,-0.083159402012825,0.018879132345319]]],[[[-0.13505145907402,-0.061853498220444,-0.021995348855853],[-0.071943044662476,0.31331714987755,-0.0035776838194579],[-0.055995088070631,0.23126468062401,-0.12967577576637]],[[0.096033319830894,0.18245609104633,-0.06981710344553],[0.1180262491107,-0.15154847502708,-0.25445640087128],[0.066947035491467,-0.17929843068123,-0.021522620692849]],[[-0.10917739570141,-0.10422506183386,0.10427862405777],[-0.066748730838299,-0.040722128003836,0.25279241800308],[-0.022878935560584,-0.088061101734638,0.10504914820194]],[[0.0043807332403958,0.065863989293575,0.0069004273973405],[0.073191210627556,0.069487571716309,-0.10009033232927],[-0.018862029537559,0.032578468322754,-0.074130706489086]],[[-0.018379474058747,0.14972631633282,0.13971973955631],[0.049344375729561,-0.020214537158608,-0.092829272150993],[-0.035493537783623,-0.11651831120253,-0.010368121787906]],[[0.082956217229366,0.072080805897713,-0.016989670693874],[0.041278604418039,0.082442335784435,0.16115665435791],[0.025001397356391,0.0088876206427813,-0.095755472779274]],[[0.00083120685303584,-0.10470939427614,0.15494342148304],[0.0059559033252299,-0.075073421001434,0.10677194595337],[-0.12575142085552,-0.11235026270151,0.028891514986753]],[[0.019647058099508,0.024513894692063,0.033930011093616],[-0.0054617268033326,0.0089967465028167,0.089935339987278],[0.018044387921691,-0.021622329950333,0.012322279624641]],[[0.083057835698128,0.041523534804583,-0.077371396124363],[-0.0094286883249879,-0.063206516206264,0.070843264460564],[-0.020806541666389,0.038197714835405,-0.042667374014854]],[[0.22807383537292,0.025554144755006,0.062767133116722],[0.21173022687435,-0.15340223908424,0.17185352742672],[0.16004617512226,-0.021844049915671,0.20386399328709]],[[-0.19564516842365,0.11972714960575,0.090737000107765],[0.0053616594523191,0.1698182374239,0.025789257138968],[-0.10665947198868,0.045845061540604,-0.083054043352604]],[[0.0067377118393779,-0.08787440508604,0.013537926599383],[-0.04905366525054,-0.016267120838165,0.07200562953949],[-0.06536203622818,-0.014255006797612,-0.039354618638754]],[[-0.080596134066582,-0.010000227950513,0.0033195964060724],[0.070814810693264,0.17365293204784,-0.021470312029123],[0.066810674965382,0.051156211644411,-0.10174611210823]],[[-0.00084190961206332,0.040826693177223,-0.047432769089937],[-0.067864000797272,0.15480862557888,-0.080845855176449],[-0.11377460509539,0.25589773058891,-0.039490092545748]],[[-0.044697441160679,0.24670659005642,0.12576699256897],[0.03012297488749,0.35000464320183,0.14729210734367],[0.029709115624428,0.059893760830164,0.16144314408302]],[[0.019330779090524,-0.033733520656824,0.026192696765065],[0.022442290559411,0.13293555378914,-0.023072130978107],[0.013843216001987,-0.055391762405634,-0.11518148332834]],[[-0.053735114634037,-0.10565342009068,-0.18950209021568],[-0.032948277890682,-0.052284140139818,-0.05938533693552],[0.046716533601284,0.081546448171139,0.19939942657948]],[[-0.0081995241343975,0.069762744009495,0.18317650258541],[-0.13930328190327,0.14820818603039,-0.06705965846777],[-0.053101718425751,0.048491708934307,-0.16128243505955]],[[-0.03786351159215,-0.0050077382475138,-0.21875873208046],[0.03871338814497,-0.1843719035387,0.033857308328152],[0.01379132270813,-0.056579817086458,0.18076723814011]],[[-0.11513539403677,-0.048546385020018,0.014155887998641],[-0.07550061494112,0.055821537971497,0.091850839555264],[-0.082523003220558,0.17983603477478,0.1720040589571]],[[-0.059352487325668,0.026224041357636,-0.050265207886696],[0.11381823569536,-0.14388400316238,-0.050320222973824],[0.080034777522087,-0.16560083627701,-0.19818158447742]],[[0.14748792350292,0.1595299243927,0.096832424402237],[0.09156745672226,-0.055105391889811,-0.051312565803528],[0.0066640661098063,-0.069714762270451,-0.11191108077765]],[[-0.187245875597,0.15037497878075,-0.10220291465521],[-0.076000578701496,0.014069929718971,-0.14594446122646],[0.096522405743599,0.1593509465456,0.071123793721199]],[[-0.078090190887451,-0.052892606705427,-0.059250265359879],[-0.044642604887486,0.13270734250546,0.14712609350681],[-0.0051312418654561,-0.037966754287481,-0.013451227918267]],[[0.063300140202045,-0.073736399412155,0.020368482917547],[-0.036812722682953,0.099272258579731,0.051674261689186],[-0.003017132403329,-0.0025612094905227,-0.057590488344431]],[[-0.1673593968153,0.035722553730011,-0.0086647355929017],[-0.16562017798424,-0.13822251558304,-0.12441232055426],[0.051063358783722,0.018200475722551,0.005107703153044]],[[-0.18554873764515,-0.037758808583021,0.15279942750931],[0.13886973261833,0.066452704370022,-0.009069511666894],[0.090635351836681,-0.10401287674904,-0.082100130617619]],[[-0.057935394346714,0.034304205328226,0.0035905095282942],[-0.052716430276632,-0.13583055138588,0.038119416683912],[0.047529876232147,-0.020653354004025,0.13979786634445]],[[0.086324691772461,0.038572456687689,0.12062281370163],[0.075482852756977,0.038954958319664,-0.034458588808775],[-0.047854192554951,-0.056342136114836,-0.16645683348179]],[[-0.061951361596584,-0.13563108444214,0.042083222419024],[-0.10848286002874,-0.061149902641773,0.14818607270718],[-0.11524884402752,0.07175824791193,0.31238141655922]],[[-0.028658874332905,-0.10763349384069,-0.13879542052746],[0.040058325976133,-0.074370138347149,-0.02152606472373],[0.086004659533501,-0.051295921206474,0.12347476184368]],[[-0.09358412027359,-0.1327935308218,0.090128600597382],[-0.12990221381187,0.083144411444664,-0.13810709118843],[0.1755013614893,-0.042495187371969,0.084654718637466]],[[-0.030473792925477,0.01685880497098,0.0012132162228227],[0.087745577096939,0.031156474724412,-0.037583991885185],[0.026070455089211,-0.068549819290638,-0.029842363670468]],[[-0.021214844658971,-0.056426320225,-0.035074103623629],[-0.0034505375660956,-0.05174981802702,-0.023491038009524],[0.088418491184711,0.07798333466053,0.10989226400852]],[[-0.11656646430492,-0.085986696183681,-0.04636437818408],[-0.068460658192635,0.038596153259277,0.068442784249783],[-0.1011114269495,-0.073097817599773,0.29102182388306]],[[-0.021636605262756,-0.014146357774734,-0.11629486083984],[-0.083538480103016,0.0029566395096481,-0.15396818518639],[-0.12289497256279,-0.085852205753326,-0.16791652143002]],[[0.12759065628052,-0.045047603547573,0.030771730467677],[-0.25457635521889,-0.32017669081688,0.02083090133965],[-0.11497943103313,-0.18606117367744,-0.17500483989716]],[[-0.0031422902829945,-0.065123371779919,-0.076865874230862],[0.04151377081871,-0.1538669615984,0.088128969073296],[0.0028107243124396,-0.051432754844427,0.1373804807663]],[[0.069558329880238,0.013745262287557,-0.024120600894094],[0.040420148521662,-0.021141540259123,0.089019313454628],[-0.069641076028347,-0.0032285747583956,-0.0071364375762641]],[[0.14131544530392,0.036850359290838,0.0044535207562149],[0.044436190277338,-0.08777979016304,-0.16124507784843],[0.051601804792881,0.012691465206444,-0.069145746529102]],[[-0.10788944363594,-0.11806135624647,-0.038369733840227],[-0.028217410668731,-0.020732445642352,0.026413338258862],[0.024511314928532,0.17523793876171,0.280906021595]],[[-0.0054386453703046,0.11397466808558,0.066374868154526],[-0.047125712037086,0.14038215577602,-0.068531781435013],[-0.10856177657843,0.057650063186884,0.017899848520756]],[[-0.056625716388226,0.010097909718752,0.075742535293102],[0.069245979189873,0.11387404054403,0.070101723074913],[-0.08233767747879,-0.064131215214729,0.037747144699097]],[[0.30700835585594,-0.0017858213977888,-0.022488258779049],[0.10171569138765,-0.011368568986654,0.018943391740322],[-0.0021850066259503,-0.15162381529808,-0.080787889659405]],[[-0.016674946993589,0.01707717962563,-0.12423718720675],[0.18765237927437,0.01635099761188,-0.12517616152763],[0.2181851118803,0.069162644445896,-0.045079331845045]],[[-0.092397131025791,-0.22417372465134,-0.3222561776638],[0.080721296370029,0.018597396090627,0.16085889935493],[0.07753299176693,0.28583061695099,0.11146355420351]],[[0.10563840717077,-0.049903839826584,0.045561909675598],[0.1009726151824,-0.11365949362516,-0.093968063592911],[0.11117377132177,-0.062109269201756,0.015558741986752]],[[-0.012026579119265,0.11049422621727,0.038992021232843],[0.018997102975845,0.049576640129089,0.060456391423941],[0.050126425921917,-0.011346254497766,0.094439789652824]],[[0.10348209738731,-0.016563076525927,0.050940908491611],[0.085441008210182,-0.27163252234459,-0.089128114283085],[-0.04203125089407,-0.0068647442385554,-0.055413838475943]],[[-0.020274380221963,0.030774628743529,-0.0087497271597385],[0.022024480625987,-0.082163631916046,-0.10680671781301],[-0.023637901991606,0.11527829617262,-0.0076951389200985]],[[0.036568190902472,0.078029371798038,-0.27193972468376],[-0.0057772006839514,-0.11794458329678,-0.1738293170929],[0.031102878972888,-0.13857066631317,0.097050234675407]],[[-0.066007845103741,0.0085103893652558,0.076977014541626],[-0.048616133630276,0.090600363910198,-0.046648539602757],[0.047364696860313,-0.174690797925,0.038732022047043]],[[0.10112973302603,-0.007408703211695,0.1872257143259],[0.038167081773281,-0.0059228320606053,-0.077603362500668],[-0.15392495691776,0.080791018903255,-0.1980152130127]],[[-0.016077829524875,0.048660393804312,0.20703460276127],[-0.052309278398752,-0.32838836312294,0.19944058358669],[-0.058844156563282,-0.10794366896152,0.049889840185642]],[[-0.092264346778393,-0.013379534706473,0.012898236513138],[-0.12624743580818,-0.25952395796776,0.046560350805521],[0.037144862115383,-0.070616669952869,0.062162321060896]],[[0.061687219887972,0.14228244125843,-0.12591677904129],[0.17218571901321,0.30360674858093,-0.023534452542663],[-0.035454459488392,0.0360335893929,-0.31517949700356]],[[-0.10881274938583,-0.11709152162075,-0.037417326122522],[0.11717230826616,0.20305360853672,0.078221656382084],[-0.0066027282737195,-0.057564184069633,0.01183020696044]],[[-0.017671307548881,0.098494566977024,-0.1254319101572],[-0.043266747146845,-0.11922957748175,0.10961827635765],[-0.097987323999405,-0.17990610003471,0.1684872508049]],[[-0.0048576374538243,0.023645391687751,-0.09881442040205],[0.034398630261421,-0.046055383980274,0.0050322902388871],[0.023250119760633,-0.13637498021126,0.19445233047009]],[[0.055558256804943,-0.074241809546947,0.049438212066889],[0.0064656124450266,-0.034533508121967,0.0038536489009857],[0.014474135823548,-0.02440432831645,-0.0074369646608829]],[[0.01403946056962,0.03857759386301,-0.050969928503036],[-0.016557643190026,-0.1127395555377,-0.12466102093458],[-0.091847755014896,-0.033143930137157,-0.20419591665268]],[[0.060716211795807,0.023965839296579,-0.1432987600565],[0.25106087327003,-0.13898251950741,-0.18863195180893],[-0.11810354143381,-0.27388635277748,0.023401513695717]],[[0.0007572338799946,-0.012885320931673,-0.029048342257738],[0.1171650364995,0.046651549637318,0.10136930644512],[0.0086487596854568,-0.0026025385595858,-0.026286313310266]],[[-0.047315582633018,-0.10516633093357,-0.02300032787025],[0.080395989120007,-0.071637891232967,0.022514663636684],[0.030746191740036,-0.0055757220834494,0.04395716637373]],[[-0.022805167362094,-0.0080272313207388,0.052100576460361],[-0.047904945909977,0.042680934071541,-0.072569467127323],[-0.07467645406723,-0.0015027623157948,-0.011159438639879]],[[0.17306187748909,-0.015192453749478,0.22791662812233],[0.11540301889181,-0.13251586258411,-0.028739005327225],[0.13168984651566,-0.3982210457325,-0.21279260516167]],[[0.2035259604454,0.021274141967297,-0.095166102051735],[0.096972465515137,-0.051452554762363,-0.038831140846014],[-0.05336694046855,-0.13104729354382,0.019399968907237]],[[-0.012286866083741,-0.0047502275556326,-0.077400490641594],[-0.035041570663452,-0.031975917518139,-0.12940059602261],[-0.065747827291489,-0.15962572395802,0.05237603187561]],[[0.022997558116913,-0.22073230147362,-0.087646067142487],[0.21779477596283,0.047581378370523,-0.1290245950222],[0.24332165718079,0.093230120837688,-0.095532305538654]],[[0.051739037036896,0.060943957418203,-0.00088742171647027],[0.021149070933461,0.0045509953051805,-0.026349576190114],[0.0042573232203722,0.021736780181527,-0.23399123549461]],[[-0.093166813254356,-0.008857699111104,-0.066783525049686],[-0.010854491963983,-0.030737075954676,-0.024318661540747],[0.076000526547432,0.022795438766479,0.22615228593349]],[[-0.14425438642502,0.0057066851295531,0.11885081231594],[-0.16755193471909,0.13920660316944,0.057548902928829],[-0.10344228893518,0.035092558711767,0.0078859338536859]],[[0.09548944234848,-0.06927628070116,-0.15435445308685],[-0.031048247590661,0.049631599336863,-0.19556522369385],[0.009168054908514,0.062750421464443,0.10120745003223]],[[-0.034280765801668,0.03475945815444,0.15985664725304],[0.018073540180922,-0.060701284557581,-0.01019130833447],[-0.11769650131464,-0.037753120064735,0.047970976680517]],[[-0.046661481261253,0.050820775330067,-0.036796968430281],[0.0041267536580563,-0.053602647036314,0.0085672261193395],[-0.077317826449871,-0.045857384800911,-0.024455262348056]],[[0.13837057352066,-0.093142785131931,-0.033910807222128],[-0.076871193945408,-0.35517612099648,0.13670833408833],[0.021847851574421,-0.078783258795738,0.14838491380215]],[[0.044367250055075,-0.099871262907982,-0.29059439897537],[0.0058141658082604,0.01195140182972,-0.014940129593015],[0.26167151331902,0.29867985844612,-0.080667592585087]],[[-0.0330217666924,-0.028336962684989,-0.07176061719656],[0.15259972214699,-0.0058886301703751,-0.12436217814684],[0.13856220245361,0.020068570971489,-0.15089170634747]],[[0.083903469145298,0.0034514556173235,0.1964617818594],[0.07343690097332,-0.02513125911355,0.0010851516854018],[-0.12483115494251,-0.090379670262337,0.019733592867851]],[[0.04372850805521,-0.12479017674923,-0.13637733459473],[0.030400028452277,0.00060785096138716,0.043451808393002],[-0.014430317096412,0.12268147617579,0.086146205663681]],[[0.14679203927517,-0.040046360343695,-0.054029852151871],[-0.033785685896873,-0.14548581838608,-0.12812674045563],[-0.14538981020451,-0.10497018694878,-0.077616512775421]],[[-0.021655037999153,0.11811403185129,-0.038235757499933],[-0.048804391175508,0.097488984465599,-0.10570022463799],[0.050213199108839,0.019478637725115,-0.048530835658312]],[[-0.15300460159779,0.053491625934839,0.0068109650164843],[0.082940444350243,0.067716337740421,-0.017408521845937],[0.07870414853096,-0.16779737174511,0.069176226854324]],[[-0.014079784043133,0.050578597933054,0.13398849964142],[0.061594489961863,0.15020713210106,0.14287295937538],[-0.10520362854004,-0.23188409209251,-0.076175138354301]],[[0.072253964841366,0.073882505297661,-0.078524403274059],[-0.097502298653126,-0.0083825029432774,0.14887385070324],[-0.20835572481155,-0.14799609780312,0.28687262535095]],[[-0.030016824603081,-0.045816630125046,-0.037619423121214],[0.062963113188744,-0.08412804454565,0.086062163114548],[0.024527486413717,-0.029219588264823,0.095715664327145]],[[-0.039677418768406,-0.038575146347284,-0.039920207113028],[0.0037623799871653,0.093258030712605,-0.19268009066582],[0.025913277640939,0.1106526479125,-0.0058783562853932]],[[-0.075102679431438,-0.022049501538277,-0.060758370906115],[0.4090191423893,-0.24205327033997,0.17754721641541],[0.028048744425178,-0.17482599616051,0.048371963202953]],[[-0.17438764870167,0.027492294088006,0.17017649114132],[0.042193155735731,-0.022773729637265,0.079043664038181],[0.028986144810915,0.056898158043623,-0.076318964362144]],[[-0.008821134455502,-0.067113183438778,0.058968357741833],[-0.13577142357826,0.035404957830906,0.16080118715763],[-0.05090719461441,-0.10980468988419,0.19845393300056]],[[0.031585112214088,0.093212150037289,-0.15210108458996],[-0.022910309955478,0.036510925740004,-0.029377307742834],[0.020676024258137,0.1792800873518,0.091569639742374]],[[0.093995288014412,0.076874524354935,0.094696149230003],[-0.11071618646383,-0.0054558031260967,0.1258769184351],[-0.19977390766144,0.19143517315388,0.047016426920891]],[[-0.030552847310901,0.10938064008951,0.074790291488171],[0.16160874068737,-0.057103130966425,-0.11583466827869],[0.14356656372547,-0.19246205687523,-0.30437836050987]],[[0.0060186013579369,-0.10726870596409,-0.13880285620689],[0.081278309226036,0.03925072774291,0.16573786735535],[0.2975589632988,-0.054764978587627,0.01410732511431]],[[0.061314690858126,0.00071543484227732,-0.01075735874474],[-0.013292417861521,0.088342472910881,-0.26859751343727],[-0.048420108854771,0.017082570120692,-0.1777648627758]],[[-0.088318102061749,-0.17149414122105,0.13144373893738],[-0.061767589300871,0.19604919850826,0.10153523087502],[-0.14058302342892,-0.26127538084984,0.19499288499355]],[[0.033098760992289,0.11087917536497,0.031750295311213],[-0.071640163660049,0.093253806233406,-0.16459654271603],[-0.0091775683686137,0.095258705317974,-0.26033619046211]],[[0.024553099647164,-0.0061216074973345,-0.10223191231489],[-0.12062216550112,-0.31312453746796,-0.2540919482708],[0.063056565821171,-0.16964618861675,-0.12926156818867]],[[-0.35048735141754,-0.092579670250416,0.18217714130878],[-0.0086916480213404,-0.032167371362448,0.081209473311901],[-0.072968535125256,0.13148517906666,-0.18177415430546]],[[0.14948654174805,0.036740683019161,-0.020910276100039],[-0.13511411845684,-0.04718704521656,-0.0081888642162085],[0.028024958446622,-0.011951279826462,-0.068557351827621]],[[-0.1313824057579,-0.080529451370239,-0.073142826557159],[-0.045690577477217,0.051096215844154,0.10068772733212],[-0.073991239070892,-0.010021151043475,0.3343548476696]],[[0.05370594188571,0.090323083102703,-0.10061652213335],[0.041867051273584,-0.026334663853049,-0.013696413487196],[0.11831823736429,0.031754553318024,0.023779103532434]],[[-0.0419034473598,0.021814227104187,-0.061679188162088],[0.030600475147367,-0.074427425861359,0.063502080738544],[0.022049356251955,-0.23407617211342,0.11772625148296]],[[-0.086948364973068,-0.11685582995415,-0.10887333750725],[-0.066953122615814,0.036616802215576,0.049236267805099],[0.040328193455935,0.13675689697266,0.11178237944841]],[[-0.15349997580051,0.091483995318413,-0.11325178295374],[0.024559821933508,0.080796167254448,0.0581434071064],[0.057334341108799,-0.14643108844757,0.027785412967205]],[[-0.03195733204484,0.05278354883194,-0.069131508469582],[-0.067425832152367,0.0024562042672187,-0.022914400324225],[0.13590060174465,-0.15564808249474,0.13737328350544]],[[-0.054029636085033,-0.061202678829432,0.031935375183821],[-0.038190934807062,0.042842168360949,0.024901444092393],[-0.036735352128744,-0.0021971915848553,0.025718696415424]],[[0.08283307403326,-0.0017073815688491,-0.087753146886826],[0.15157870948315,-0.037818424403667,-0.088659182190895],[-0.021021947264671,-0.028300952166319,0.032200988382101]],[[0.042373824864626,-0.036268394440413,-0.012005331926048],[-0.11588348448277,-0.04158652946353,-0.020625038072467],[-0.050880677998066,0.038772951811552,0.0048254220746458]],[[-0.015953959897161,0.083477944135666,0.020649636164308],[0.050518229603767,0.024796502664685,-0.070402450859547],[0.016935121268034,0.043747335672379,-0.13450893759727]],[[0.011314140632749,-0.060542400926352,0.029628248885274],[-0.028017887845635,-0.10856004804373,0.039509277790785],[-0.031046781688929,0.012812200002372,0.083671182394028]],[[-0.01259262021631,0.0321488045156,-0.12383025884628],[0.042856644839048,-0.012307689525187,0.041600983589888],[0.076651602983475,-0.010985053144395,-0.15577980875969]],[[-0.17374731600285,0.03739807009697,-0.16184942424297],[0.083186231553555,0.038009196519852,0.035540472716093],[0.11010640114546,-0.0342339836061,0.077895008027554]],[[0.01933111064136,0.12121675163507,-0.031167494133115],[0.074423357844353,0.015052896924317,-0.14723342657089],[0.017358180135489,0.0020877313800156,-0.15152771770954]],[[-0.22280187904835,0.059350669384003,0.060776211321354],[0.026081738993526,-0.048107989132404,-0.067494317889214],[0.022244269028306,0.065215870738029,0.031970456242561]],[[-0.086984008550644,0.25623780488968,0.10045632719994],[-0.08431152254343,0.2457212805748,-0.0028485697694123],[0.0024227637331933,0.043406773358583,0.03102045878768]],[[0.17439194023609,-0.049817357212305,0.071598425507545],[0.05727207288146,-0.16273005306721,0.016630582511425],[-0.15028707683086,-0.18934035301208,-0.10358294844627]],[[-0.011418017558753,0.063557885587215,0.013219910673797],[-0.010455200448632,0.077394746243954,0.057680208235979],[-0.10801037400961,-0.051730740815401,-0.12159930169582]],[[-0.049818631261587,0.0072233797982335,-0.028897015377879],[0.032478969544172,0.056643832474947,0.045925091952085],[-0.0082521196454763,-0.056000985205173,-0.010546990670264]],[[0.094335958361626,-0.24099966883659,-0.0070115732960403],[0.1756402105093,-0.33403366804123,0.05920572578907],[0.028256025165319,-0.14099864661694,0.12482024729252]],[[0.089621745049953,0.051447663456202,-0.14912088215351],[0.082985587418079,-0.24623069167137,-0.19011427462101],[0.068737253546715,-0.20625913143158,0.23551212251186]],[[0.014788350090384,-0.088337779045105,-0.14310272037983],[0.045253530144691,-0.11453077197075,-0.30851078033447],[-0.091342285275459,-0.18930447101593,-0.17534336447716]],[[-0.00086037564324215,-0.0092590404674411,-0.056295298039913],[0.10662277042866,-0.026069371029735,-0.040980037301779],[0.10297928005457,0.10517686605453,-0.050494022667408]],[[0.073147289454937,0.0017719698371366,-0.036278273910284],[0.047127485275269,-0.16402718424797,0.14643511176109],[-0.14759038388729,-0.086257591843605,0.060746651142836]],[[-0.01168629899621,-0.098670415580273,-0.10838412493467],[-0.020471109077334,0.068447761237621,0.0030932289082557],[-0.071741446852684,0.067145295441151,-0.0069595025852323]],[[-0.054604649543762,-0.066676124930382,-0.10327333211899],[-0.028300940990448,0.014595797285438,-0.0058590429835021],[0.031547792255878,0.11809275299311,0.22978699207306]],[[0.036604654043913,0.20183591544628,-0.1007966324687],[-0.0080222627148032,-0.10303889214993,-0.33228647708893],[0.043409090489149,0.010889055207372,0.19835188984871]],[[-0.11567565053701,0.118577003479,-0.058762203902006],[0.091751262545586,-0.055601809173822,-0.054357260465622],[-0.086935691535473,-0.039792880415916,0.093218453228474]]],[[[0.063755601644516,0.0073065659962595,-0.017887065187097],[-0.077104233205318,-0.029318975284696,0.069779358804226],[-0.011168333701789,-0.0848438590765,-0.012305717915297]],[[0.024302264675498,0.009858381934464,0.012952646240592],[-0.045155994594097,-0.044676285237074,0.029296066612005],[0.069203205406666,-0.0039247469976544,0.10268131643534]],[[-0.030797751620412,0.0041965148411691,0.035972710698843],[0.0071845683269203,-0.0078222518786788,0.082474552094936],[0.033782914280891,0.030804708600044,0.017461812123656]],[[0.025741636753082,0.063680060207844,0.04503833130002],[0.061990421265364,-0.010105444118381,0.016271285712719],[0.072731725871563,0.030870035290718,-0.022037444636226]],[[-0.062876023352146,-0.087990559637547,-0.06329195946455],[-0.036490365862846,-0.052459251135588,0.067849725484848],[0.052204195410013,-0.027890123426914,0.049244839698076]],[[-0.0055727860890329,-0.0064086527563632,0.026508308947086],[0.014762384817004,0.030273457989097,-0.022947587072849],[0.024287540465593,-0.038007669150829,0.037962406873703]],[[0.01191555801779,-0.050214495509863,0.04966864362359],[-0.015498142689466,0.020866475999355,-0.027197413146496],[-0.043001711368561,0.033252038061619,-0.0065103522501886]],[[0.080882422626019,-0.011699841357768,-0.030443638563156],[0.030868154019117,0.083959355950356,-0.00067822961136699],[0.10939657688141,-0.048127748072147,0.0021602481137961]],[[-0.045634582638741,-0.069731973111629,0.012851492501795],[0.016363751143217,0.012800658121705,0.035845372825861],[0.049227301031351,0.029968544840813,0.0039832280017436]],[[0.037527855485678,0.061189103871584,0.057277947664261],[-0.035671778023243,0.0078422017395496,0.027493316680193],[0.045919351279736,0.053227052092552,0.011060045100749]],[[0.026349375024438,0.064529128372669,0.006326615344733],[0.0024826861917973,0.0062412284314632,-0.010291061364114],[0.008128016255796,0.031238421797752,0.032569389790297]],[[-0.0063425777480006,0.00992461014539,0.0029938803054392],[0.021303664892912,-0.025787152349949,-0.036098726093769],[-0.017143040895462,0.046612959355116,0.048348367214203]],[[0.022412609308958,0.055558800697327,-0.0055162715725601],[0.032788719981909,0.032264892011881,-0.0622184202075],[-0.012530205771327,-0.027395360171795,-0.034166976809502]],[[0.060912031680346,-0.062484130263329,-0.0024986900389194],[0.061719462275505,0.094236247241497,-0.0033366407733411],[-0.056291323155165,-0.053457297384739,-0.0051852720789611]],[[0.081926554441452,0.038414310663939,0.040502246469259],[-0.0095345946028829,0.041206389665604,0.084722131490707],[0.083464965224266,0.012994274497032,0.063301295042038]],[[-0.0029296628199518,0.053542926907539,-0.038163889199495],[0.010306821204722,-0.0055051008239388,-0.0083967661485076],[0.032370235770941,-0.0017923165578395,-0.023512778803706]],[[0.010433557443321,0.10870840400457,0.0092242667451501],[0.035668917000294,0.12840573489666,-0.030283825471997],[0.006100329104811,0.071633838117123,0.015135891735554]],[[0.027366964146495,-0.039250619709492,-0.011422714218497],[-0.012651044875383,0.016904234886169,0.0060285390354693],[0.051022235304117,-0.018436992540956,-0.017682526260614]],[[0.029265521094203,-0.038466095924377,0.035845529288054],[0.010724405758083,0.025494636967778,0.046666495501995],[-0.018530352041125,0.039176844060421,0.041608519852161]],[[0.059148393571377,-0.066991373896599,0.030411647632718],[-0.0096611678600311,-0.09765737503767,-0.015408025123179],[0.040242675691843,0.081673622131348,0.0040898760780692]],[[0.016575952991843,-0.02883811108768,0.050944820046425],[-0.017700366675854,0.029469994828105,-0.036845795810223],[0.0023284219205379,-0.048670429736376,0.049583666026592]],[[-0.039457265287638,0.039409130811691,-0.035485617816448],[-0.015076931566,0.04378318041563,0.0044966731220484],[-0.0064224041998386,-0.067867375910282,0.053574625402689]],[[-0.02819680981338,0.061356827616692,0.0038211683277041],[0.057547621428967,-0.019211260601878,0.022717090323567],[0.017726304009557,0.016571145504713,0.066610641777515]],[[-0.0020469438750297,-0.052304439246655,0.01834848895669],[0.025677410885692,-0.018517119809985,0.083218969404697],[-0.040852796286345,0.015381617471576,0.023013593629003]],[[-0.0038098830264062,0.061486843973398,-0.015506404452026],[0.062319096177816,0.048018623143435,0.039628989994526],[0.012945577502251,-0.011135823093355,0.096556901931763]],[[-0.015553713776171,-0.0063081937842071,0.023648239672184],[-0.017423395067453,0.0273392572999,-0.073965333402157],[0.001734257908538,-0.024804957211018,-0.029671378433704]],[[-0.02428787946701,-0.030812392011285,0.011680148541927],[0.00062215514481068,0.0096815507858992,-0.013816180638969],[0.0066091883927584,0.039644323289394,0.023704431951046]],[[-0.057106282562017,-0.015620035119355,0.062888205051422],[-0.042716264724731,0.012991849333048,0.044427901506424],[-0.027463596314192,0.056667432188988,0.032877281308174]],[[0.005651606246829,-0.036751557141542,0.073469407856464],[0.0092227393761277,0.04714173078537,0.018166808411479],[-0.016867304220796,-0.0054652262479067,0.031255848705769]],[[0.014312291517854,0.03300653770566,-0.0032156978268176],[-0.063564889132977,-0.0037736918311566,-0.01399489492178],[0.051216699182987,-0.0030536705162376,0.037511840462685]],[[-0.034739531576633,0.062869980931282,0.046502556651831],[-0.010886908508837,0.083696573972702,-0.03870502114296],[-0.0030241578351706,-0.035733718425035,0.030133409425616]],[[0.048634298145771,-0.040878247469664,-0.082440994679928],[0.023189678788185,-0.0050812559202313,-0.024932987987995],[-0.0068028625100851,-0.0074438648298383,-0.079064577817917]],[[-0.011836814694107,-0.018361577764153,-0.0066346996463835],[-0.085257306694984,0.044422708451748,0.052338104695082],[0.022459724918008,0.055134352296591,-0.11893352866173]],[[-0.010141091421247,-0.0029904756229371,-0.0064262514933944],[0.079799085855484,0.02806406468153,-0.016994269564748],[-0.015757231041789,0.030939266085625,0.010185513645411]],[[-0.013753944076598,0.021907908841968,-0.013636882416904],[-0.048015095293522,-0.02514910325408,-0.027363508939743],[-0.022960659116507,-0.024268455803394,0.026584314182401]],[[0.044428635388613,0.043819691985846,0.023725852370262],[0.071185179054737,-0.02996694855392,0.004944363143295],[-0.044359140098095,0.034360598772764,0.0098706055432558]],[[0.033056423068047,-0.059262786060572,0.034405760467052],[0.040607038885355,-0.062212649732828,0.024771239608526],[0.0046061025932431,-0.028121234849095,-0.043870102614164]],[[0.069118916988373,0.050922427326441,0.0015953517286107],[-0.11927129328251,-0.018109126016498,0.040191400796175],[0.050959598273039,0.0069789807312191,-0.029839657247066]],[[-0.014552489854395,-0.00065034395083785,0.0029847950208932],[0.014175157062709,0.046406388282776,-0.038401018828154],[0.072700947523117,0.01215298846364,0.0047673252411187]],[[0.011795652098954,0.05470048263669,0.047767236828804],[0.0042721219360828,0.03471303358674,-0.025920240208507],[-0.0034966494422406,0.038030620664358,-0.01155115570873]],[[0.052929230034351,-0.046141892671585,0.0042641377076507],[-0.045081328600645,-0.0054684649221599,0.011176905594766],[0.020697502419353,0.044302050024271,0.11854299157858]],[[-0.0039415787905455,-0.062809310853481,-0.016302449628711],[-0.0073011568747461,0.0090874498710036,-0.04981666430831],[-0.015794171020389,-0.04286752268672,0.036281500011683]],[[0.0092243487015367,0.037094123661518,-0.022857666015625],[0.00096134404884651,0.043746992945671,-0.012069473043084],[-0.0082297883927822,0.024852035567164,0.0088683245703578]],[[-0.0082106357440352,0.026739664375782,0.080794930458069],[0.013451050035655,0.06231677159667,0.039901435375214],[0.070832319557667,0.045862819999456,0.075572982430458]],[[0.076489940285683,-0.022565489634871,-0.028116529807448],[0.069757461547852,0.011583127081394,-0.020608643069863],[0.065959401428699,0.0019660503603518,-0.064305312931538]],[[-0.021330170333385,0.023121329024434,0.054702136665583],[0.029367255046964,0.027117786929011,-0.05393723025918],[0.013887169770896,-0.024867357686162,0.05829543992877]],[[0.062564484775066,-0.055702343583107,-0.0042320159263909],[-0.012494521215558,0.0027073249220848,0.034535776823759],[-0.010776705108583,-0.022975293919444,0.067509733140469]],[[-0.023187393322587,0.057755198329687,-0.063659399747849],[-0.038037646561861,0.031108567491174,0.054434146732092],[0.010513270273805,-0.018170347437263,0.0054231504909694]],[[-0.015902580693364,-0.086003862321377,0.015991255640984],[0.031905803829432,0.008971038274467,-0.012885205447674],[0.015989817678928,0.031676881015301,0.023058502003551]],[[0.021502172574401,0.06515059620142,-0.042709093540907],[-0.009151398204267,0.013053468428552,0.026499221101403],[-0.037461824715137,-0.073517099022865,0.057567313313484]],[[0.0086842933669686,-0.013562907464802,0.048456102609634],[0.0071884510107338,0.038608204573393,-0.018691826611757],[0.034223057329655,0.028888886794448,0.0038294224068522]],[[0.023025499656796,-0.01568235643208,0.02814513631165],[-0.029572069644928,0.070972874760628,0.0023426567204297],[-0.064898148179054,0.020847203209996,0.013553543016315]],[[-0.016319647431374,0.00074108148692176,-0.041664611548185],[0.011734415777028,0.028588535264134,-0.062680751085281],[0.044987335801125,0.073558747768402,0.0394929908216]],[[0.00051210151286796,-0.024134378880262,0.04112871363759],[0.012166914530098,-0.017136031761765,0.00088823988335207],[0.045876868069172,0.094946876168251,-0.066496819257736]],[[-0.0052251308225095,-0.024447003379464,-0.013724368996918],[0.043006867170334,-0.0020859432406723,-0.0044196886010468],[0.057167701423168,0.03340708091855,-0.010811602696776]],[[0.056637536734343,-0.0039491844363511,-0.045331552624702],[-0.05849002301693,-0.0064025362953544,0.076419048011303],[0.025132156908512,-0.072200074791908,0.022177364677191]],[[-0.046285308897495,0.017639089375734,0.058326557278633],[0.00030628009699285,0.011685704812407,-0.017575547099113],[-0.021954003721476,-0.076395839452744,0.010375063866377]],[[-0.022209445014596,-0.0060140280984342,-0.013252041302621],[0.043911952525377,-0.06152880191803,0.027935337275267],[0.061531100422144,-0.025108003988862,-0.0030995046254247]],[[-0.062212783843279,0.0087722633033991,0.028607586398721],[0.069545723497868,0.062195401638746,0.055846307426691],[0.033781338483095,0.011794907972217,0.014619532972574]],[[0.028219487518072,0.054543245583773,-0.062218181788921],[0.1003555431962,-0.010365761816502,0.03424084186554],[0.059499926865101,0.069884687662125,0.0095983231440187]],[[-0.063114203512669,0.043639954179525,0.032359018921852],[0.038382522761822,0.034478601068258,0.052910394966602],[0.04423213750124,-0.013776117935777,-0.020639298483729]],[[-0.016222327947617,0.028666632249951,0.047020778059959],[-0.022790370509028,0.03374295309186,-0.11743357777596],[-0.038746692240238,0.0020550861954689,0.0072856429032981]],[[0.00093628698959947,0.016699500381947,0.03831747546792],[-0.018813721835613,0.039132427424192,0.042620420455933],[-0.0029978486709297,0.0054302904754877,-0.028884222730994]],[[0.040845919400454,0.06573486328125,-0.085440889000893],[0.0065271784551442,0.0002540239947848,0.044143095612526],[-0.011468929238617,-0.0083459774032235,-0.0074286819435656]],[[0.012582925148308,-0.01043089479208,-0.0027516190893948],[0.0026730990502983,0.03428839892149,-0.034108553081751],[0.03269300237298,0.013244581408799,-0.0050329654477537]],[[0.026690579950809,0.022186717018485,0.041571531444788],[0.045566029846668,-0.024540076032281,-0.04120920971036],[0.052368298172951,-0.042719233781099,0.042842578142881]],[[-0.0020171706564724,0.060113571584225,0.00079749489668757],[0.049634296447039,-0.043679602444172,-0.01299973577261],[-0.019476296380162,-0.020408861339092,0.11728095263243]],[[0.1263885051012,0.027365352958441,0.0034877804573625],[-0.0087661147117615,-0.01630525290966,0.042601104825735],[0.03898810967803,0.0081945266574621,-0.026363072916865]],[[0.025857467204332,0.043258111923933,-0.045187741518021],[0.018326312303543,0.028562430292368,0.048396039754152],[0.14009176194668,-0.026268107816577,-0.040314946323633]],[[0.027300950139761,0.016201788559556,0.014383780770004],[0.041980743408203,0.046453688293695,-0.0043287687003613],[0.0099531412124634,-0.10148269683123,-0.0721390619874]],[[0.0070858993567526,-0.019980251789093,0.00078704231418669],[-0.087046958506107,-0.0048397579230368,-0.019923146814108],[0.038944210857153,0.082931868731976,0.021460052579641]],[[0.024469543248415,0.0011208300711587,-0.0058346604928374],[0.040550783276558,0.10464797914028,0.0042585171759129],[-0.012160890735686,-0.029416896402836,0.014708083122969]],[[0.069956786930561,0.10047189891338,-0.023850059136748],[-0.024035971611738,0.014544356614351,-0.004677414894104],[0.019234078004956,0.067082226276398,0.0126369651407]],[[0.05070536211133,-0.030714578926563,0.054443910717964],[0.0010781673481688,-0.0028157362248749,0.019756600260735],[0.015526678413153,-0.057033024728298,-0.021813193336129]],[[-0.0097149331122637,-0.024579621851444,-0.062407791614532],[-0.014483329840004,-0.035686027258635,-0.075028024613857],[-0.02508556842804,0.029701303690672,0.02948784083128]],[[0.06202145665884,0.057459603995085,-0.038009352982044],[0.040477816015482,0.031124047935009,0.014611060731113],[-0.0015962600009516,0.0045376480557024,-0.018597247079015]],[[-0.0065644523128867,-0.050725027918816,-8.096445526462e-05],[0.047316864132881,0.0066706952638924,0.079170800745487],[0.0095517095178366,0.018133278936148,-0.0088886367157102]],[[-0.0035094348713756,0.011540644802153,-0.037345547229052],[0.048601131886244,0.038143906742334,0.040904514491558],[0.015489772893488,-0.049204874783754,0.062557056546211]],[[0.0097116939723492,0.084383368492126,-0.056155372411013],[0.035087261348963,0.092969417572021,-0.01260847132653],[-0.052722312510014,-0.046384375542402,0.015404406003654]],[[0.0031462081242353,-0.049138400703669,-0.025880498811603],[-0.02635838277638,0.080385185778141,-0.067274689674377],[0.026280779391527,0.083776734769344,0.035417560487986]],[[0.022632824257016,0.046725135296583,0.027322955429554],[0.052902586758137,-0.088588431477547,0.027813322842121],[-0.0023642962332815,0.0048339725472033,0.04674306884408]],[[-0.015218133106828,-0.067303657531738,-0.070083044469357],[-0.057125747203827,0.059652283787727,-0.045707635581493],[-0.0035186724271625,-0.038154300302267,-0.015473403036594]],[[-0.008288724347949,0.037546772509813,0.022820642217994],[-0.055343259125948,-0.024346869438887,0.086026825010777],[0.083824135363102,0.0004896882455796,-0.027786083519459]],[[0.039825912564993,0.063283354043961,0.043877724558115],[-0.072459578514099,-0.049690842628479,0.025245575234294],[0.044305946677923,-0.026685498654842,-0.10955069959164]],[[0.046454325318336,0.037885576486588,0.014686532318592],[-0.037373889237642,-0.014021188952029,0.057024173438549],[0.020051063969731,-0.0063251690007746,0.035333961248398]],[[0.047360729426146,0.10326919704676,0.026627684012055],[0.068805485963821,0.026631528511643,-0.079583562910557],[-0.012114360928535,0.05319981649518,-0.020918780937791]],[[-0.016164584085345,-0.019826972857118,0.0022299296688288],[0.024497983977199,0.041373450309038,0.014315469190478],[0.064295940101147,-0.0037380286958069,0.0044367704540491]],[[0.0024975046981126,0.011089324951172,0.010899382643402],[0.059063579887152,0.045114424079657,-0.030304454267025],[-0.021291481330991,-0.033063162118196,0.00649094581604]],[[0.036458447575569,0.016209121793509,-0.030089136213064],[0.053809404373169,0.036367680877447,0.061031308025122],[-0.018054950982332,-0.025119420140982,-0.034285988658667]],[[0.0048667145892978,0.0068361354060471,0.011055478826165],[-0.013633416965604,0.054928660392761,0.040809255093336],[0.0034957865718752,-0.092040151357651,-0.0030702713411301]],[[0.02152507007122,0.06030061468482,0.048223275691271],[0.022770758718252,0.02271382138133,0.00098694034386426],[0.068784683942795,0.060502283275127,-0.040354631841183]],[[-0.091410271823406,0.062415238469839,0.074522346258163],[0.0372707657516,-0.054074168205261,-0.057693056762218],[0.094808809459209,0.033035926520824,-0.041837714612484]],[[-0.00319205946289,0.041395422071218,0.042550880461931],[0.020122099667788,-0.025103978812695,-0.059037450700998],[0.024698788300157,-0.013298030942678,-0.073008097708225]],[[-0.011039844714105,0.08676864951849,0.0044874241575599],[0.025999808683991,0.053969889879227,-0.029181243851781],[-0.0012887050397694,-0.022631367668509,0.030585430562496]],[[0.041790798306465,-0.011649493128061,0.014677957631648],[0.047420907765627,0.0175178386271,0.042212419211864],[-0.010491009801626,-0.0042051384225488,-0.039750110358]],[[0.011564344167709,0.07663257420063,-0.037468135356903],[-0.092239178717136,0.10359343141317,0.078659936785698],[-0.050473537296057,0.034214664250612,-0.024260135367513]],[[0.018083093687892,0.011056496761739,-0.024216106161475],[-0.01416662055999,-0.09791674464941,0.00087927671847865],[-0.0023455999325961,-0.023409025743604,0.0022012440022081]],[[0.1153180450201,0.0184963978827,-0.0084332572296262],[0.019071647897363,0.063389621675014,-0.02070395834744],[0.084822364151478,0.079559795558453,0.016827184706926]],[[0.039117358624935,-0.082419849932194,-0.039392933249474],[0.054914399981499,-0.046036593616009,0.080050215125084],[0.033836584538221,-0.067553482949734,0.033895969390869]],[[-0.026748802512884,-0.0068591269664466,0.00084377313032746],[0.02576557174325,0.02814350835979,0.098474815487862],[0.086402662098408,-0.0072657205164433,-0.016438568010926]],[[-0.05621836706996,-0.068412773311138,0.11133312433958],[0.01394646987319,-0.038891054689884,0.0029373241122812],[-0.050208263099194,0.038363397121429,0.005997434258461]],[[0.018801042810082,0.0042283562943339,-0.0046956199221313],[0.050274025648832,0.010267772711813,0.075013123452663],[0.0064682592637837,0.047539077699184,0.11270140856504]],[[0.012855229899287,0.019190507009625,-0.022591535001993],[-0.0076545006595552,-0.014356278814375,0.027615439146757],[-0.0096106361597776,0.016879817470908,0.048592790961266]],[[0.014243942685425,0.005538288038224,0.016097879037261],[0.011603621765971,-0.0062986039556563,-0.050516866147518],[0.093784049153328,-0.0057914396747947,-0.023875292390585]],[[-0.0048021185211837,-0.014772329479456,0.024163268506527],[0.058149568736553,-0.081347964704037,0.016665916889906],[0.014952527359128,0.047151412814856,-0.043931093066931]],[[-0.014477764256299,-0.016078390181065,0.021844072267413],[0.11535949259996,0.026920298114419,-0.00097349437419325],[0.036017894744873,0.064835220575333,-0.040396846830845]],[[0.034088887274265,-0.049484271556139,0.00088868214515969],[0.033101689070463,-0.054576706141233,0.0035975594073534],[-0.022434994578362,0.089543759822845,8.4763623817707e-06]],[[-0.049642205238342,0.012552225962281,0.012519730255008],[-0.057254571467638,-0.13929575681686,0.0096524385735393],[-0.048879057168961,0.020951373502612,0.0024462451692671]],[[0.032671567052603,0.031520128250122,0.020593147724867],[-0.074670389294624,-0.082072183489799,0.017332132905722],[0.03914550319314,0.00010423355706735,0.044754710048437]],[[-0.0030601597391069,0.040821235626936,0.011429667472839],[-0.036396104842424,0.047455005347729,-0.00092125998344272],[0.0050874794833362,-0.012844691053033,-0.078334905207157]],[[-0.048717599362135,-0.090624094009399,-0.049444578588009],[0.026909008622169,0.013714230619371,-0.016515761613846],[0.00084095820784569,0.043394088745117,-0.0095435157418251]],[[0.10106905549765,-0.028777247294784,-0.038017399609089],[-0.01793834194541,-0.025939539074898,-0.022619180381298],[-0.069866918027401,0.008667292073369,0.02250213176012]],[[0.019392732530832,-0.043789558112621,0.075311467051506],[0.019272290170193,0.044084791094065,0.017236398532987],[0.030784144997597,0.054810013622046,0.036847982555628]],[[-0.029270892962813,0.056808158755302,-0.064262330532074],[0.046701747924089,0.006798573769629,0.03148128464818],[-0.046806141734123,-0.047490671277046,0.052969425916672]],[[-0.0086692543700337,0.041096951812506,0.029441181570292],[-0.0435681194067,0.049988184124231,0.010772203095257],[0.0033622388727963,-0.012115215882659,0.081619843840599]],[[0.035259187221527,0.07499922811985,0.0037800977006555],[0.045387774705887,0.022185562178493,-0.0077955117449164],[0.046195600181818,0.016161475330591,0.031621981412172]],[[0.0068176137283444,-0.072888471186161,-0.068578831851482],[0.021116247400641,-0.022988000884652,-0.0054355203174055],[0.024636587128043,0.061251055449247,0.0059974193572998]],[[0.052052304148674,-0.016121838241816,0.058995757251978],[-0.0023775638546795,-0.0099074793979526,-0.089613251388073],[-0.038298234343529,-0.091131500899792,0.008745432831347]],[[-0.060055650770664,-0.045561831444502,0.023302949965],[0.014857528731227,0.043596506118774,-0.016389222815633],[-0.072683691978455,0.029325956478715,-0.011460562236607]],[[-0.074290484189987,-0.04662824422121,0.015448329038918],[0.013587915338576,0.037735689431429,-0.017971828579903],[0.00975551456213,-0.025615442544222,-0.016756827011704]],[[-0.034595396369696,-0.021924676373601,-0.009581764228642],[0.0039200983010232,-0.038755808025599,0.090151131153107],[-0.030943337827921,-0.0012994767166674,-0.041328262537718]],[[-0.0063178897835314,0.0099554490298033,-0.066643394529819],[-0.00080201827222481,0.052992392331362,0.025242170318961],[-0.0041803997009993,0.047077987343073,-0.1365557461977]],[[-0.084963291883469,-0.028476875275373,0.036635495722294],[-0.035133097320795,-0.018969690427184,-0.028219182044268],[-0.0054316055029631,-0.023189257830381,-0.039612364023924]],[[0.10362167656422,0.073059678077698,0.0094373039901257],[0.0049294247291982,0.063092783093452,0.043834637850523],[0.036670506000519,-0.023345533758402,-0.069234102964401]],[[0.013483487069607,-0.018777618184686,0.0032169152982533],[0.014626304619014,0.02387273311615,0.038875427097082],[0.030599934980273,0.041377253830433,0.046439681202173]],[[-0.0068956795148551,0.0098673803731799,0.026524625718594],[0.0026686117053032,0.016921447589993,0.0020194668322802],[-0.037735041230917,-0.071266524493694,-0.022170720621943]],[[-0.01159721147269,-0.026844177395105,0.0091073932126164],[-0.0046806531026959,0.017662905156612,0.038180097937584],[0.027627099305391,-0.013678015209734,-0.0014650238445029]],[[-0.056814949959517,0.024812204763293,-0.062383498996496],[0.036205239593983,0.022152172401547,0.095824912190437],[-0.020771650597453,-0.020690424367785,0.044138044118881]]],[[[-0.081664033234119,0.029148103669286,-0.038063004612923],[-0.015164811164141,0.051833592355251,-0.016313433647156],[0.036149866878986,-0.0061149871908128,0.0056091267615557]],[[-0.017246624454856,-0.013234309852123,0.013175391592085],[0.022582797333598,-0.050397600978613,-0.017580414190888],[0.029310634359717,-0.0035489040892571,-0.0030249720439315]],[[-0.087869934737682,0.058938268572092,0.038253340870142],[0.043354343622923,0.025910241529346,-0.064008094370365],[-0.01874472387135,-0.016889967024326,0.0064838537946343]],[[0.032805178314447,-0.062076240777969,0.0092377718538046],[0.034399505704641,-0.064450211822987,0.046719029545784],[0.033348482102156,0.014580423943698,-0.037388611584902]],[[-0.027200439944863,-0.018233850598335,0.048429988324642],[0.010846633464098,0.043698381632566,0.053846508264542],[-0.08683355152607,-0.045672070235014,-0.053282052278519]],[[-0.022133266553283,0.042753361165524,0.061689540743828],[-0.010451722890139,-0.015523427166045,0.014606328681111],[-0.023138824850321,-0.022451056167483,0.0092118615284562]],[[-0.0072453962638974,0.067828074097633,-0.01228903234005],[0.02364394813776,0.0052762245759368,-0.017452068626881],[-0.0093634640797973,0.0035931582096964,-0.048949502408504]],[[0.0047483518719673,0.013908440247178,0.024964101612568],[-0.060627311468124,-0.033154856413603,0.0039069885388017],[-0.047193389385939,-0.01917615160346,0.0079924538731575]],[[0.011727464385331,0.031478468328714,-0.076882392168045],[0.0081195328384638,0.0010647125309333,0.063980311155319],[-0.085700370371342,0.03002973087132,0.034058608114719]],[[-0.015303808264434,0.0038225932512432,-0.040128204971552],[0.039984725415707,-0.10957482457161,-0.042150259017944],[0.0094741135835648,0.017414102330804,0.015858924016356]],[[-0.0041235634125769,0.056441135704517,0.014432191848755],[0.04627200961113,0.073809191584587,-0.031438700854778],[-0.0022929315455258,-0.029524507001042,-0.072141326963902]],[[-0.032725021243095,-0.027209132909775,0.032565720379353],[-0.011780934408307,0.054549656808376,0.011376984417439],[0.022877734154463,-0.014118700288236,-0.03156504034996]],[[-0.031921617686749,-0.055786021053791,0.0097726052626967],[0.027627058327198,-0.016622727736831,0.034085564315319],[-0.042632482945919,-0.042310118675232,-0.02411306463182]],[[0.028979996219277,-0.037245269864798,0.042763110250235],[-0.0036038749385625,0.056597080081701,-0.014557876624167],[0.021912273019552,0.0032885631080717,-0.041976861655712]],[[-0.034072428941727,-0.08532103151083,-0.15740858018398],[0.016223438084126,-0.027400704100728,0.057198416441679],[0.028834972530603,-0.041593354195356,0.0068140476942062]],[[0.0087894387543201,-0.008458036929369,0.017484677955508],[0.014940467663109,-0.086582615971565,-0.014495018869638],[-0.027986090630293,-0.051150139421225,-0.040599156171083]],[[-0.045918561518192,-0.00094209355302155,-0.068312577903271],[0.025056432932615,0.043948572129011,-0.08112046122551],[-0.029044549912214,0.014444352127612,-0.010606769472361]],[[-0.011603989638388,-0.008362652733922,0.025280511006713],[-0.029305534437299,-0.046114336699247,-0.10655158013105],[-0.012455456890166,-0.022312747314572,0.0075474944896996]],[[0.0012614669976756,0.046494763344526,-0.036805402487516],[0.0047096945345402,0.0052544111385942,0.0082336645573378],[0.03130629658699,-0.062427714467049,0.0085848197340965]],[[0.010038717649877,0.04052359610796,-0.050944171845913],[-0.0043754228390753,0.013197076506913,-0.043389372527599],[0.024964326992631,0.076243102550507,-0.0075133610516787]],[[-0.025529654696584,-0.0078386757522821,0.030869547277689],[-0.086750291287899,-0.034212496131659,-0.032207019627094],[-0.04643652588129,-0.038978174328804,-0.0026525410357863]],[[-0.021621601656079,-0.00067529425723478,0.024257929995656],[-0.064165905117989,-0.10304375737906,0.051154226064682],[0.03379887342453,-0.024886282160878,0.0052215177565813]],[[-0.012391197495162,-0.043234322220087,0.012567305937409],[0.021833688020706,0.035674396902323,0.051515202969313],[-0.029876589775085,-0.019884636625648,-0.025524009019136]],[[-0.019227599725127,-0.060570418834686,-0.032930608838797],[-0.023523068055511,0.021649092435837,0.014332401566207],[0.030447835102677,-0.041648592799902,0.047690961509943]],[[-0.042830906808376,0.021653406322002,-0.0065428735688329],[0.0058630486018956,0.0011600774014369,-0.035851016640663],[-0.028700115159154,-0.0096506346017122,0.05988672748208]],[[0.014969180338085,0.061329983174801,0.056015681475401],[-0.011453789658844,-0.049183033406734,-0.0047530136071146],[0.015655975788832,0.010422025807202,-0.0082183480262756]],[[0.006966152228415,0.012105750851333,0.058375515043736],[-0.0050217574462295,-0.081334672868252,0.045259889215231],[-0.056088250130415,0.024941086769104,-0.051480278372765]],[[-0.034435756504536,0.018291493877769,-0.03496877849102],[-0.041949916630983,0.028875581920147,0.050706744194031],[-0.011430440470576,0.013815495185554,0.024274187162519]],[[-0.040048006922007,0.007281456142664,0.010440522804856],[0.038541954010725,0.075503058731556,0.023591056466103],[0.0010467024985701,-0.068626038730145,-0.091740503907204]],[[0.0049276514910161,0.0091755287721753,0.0024309917353094],[0.0042183301411569,-0.051269758492708,-0.07994732260704],[0.0038925523404032,0.002533390885219,0.056290168315172]],[[0.0021499753929675,-0.065026067197323,-0.021148193627596],[-0.018987709656358,-0.020314989611506,0.05479796230793],[8.8286775280721e-05,0.0097718928009272,-0.034497823566198]],[[0.002183391712606,-0.045618131756783,-0.056780628859997],[-0.036211039870977,-0.047838527709246,0.03897113353014],[0.012304625473917,-0.0080803148448467,0.067950829863548]],[[-0.045584715902805,-0.053470488637686,0.058262258768082],[-0.014521069824696,0.02699226886034,0.02426627650857],[0.0078293448314071,-0.026716738939285,-0.023915069177747]],[[0.021541565656662,-0.091547794640064,-0.036099210381508],[-0.017058108001947,-0.031660694628954,-0.027129156515002],[0.0089068990200758,0.060526069253683,-0.054893001914024]],[[0.058159962296486,0.032628748565912,-0.059224877506495],[-0.002600132022053,-0.012224926613271,-0.020191734656692],[0.033069334924221,0.040341354906559,0.018052309751511]],[[-0.057158757001162,0.024628810584545,-0.013591061346233],[-0.018097842112184,0.050239965319633,-0.029258908703923],[-0.049293514341116,-0.018872397020459,-0.0084403986111283]],[[-0.055613838136196,-0.093341656029224,-0.024809719994664],[0.016411082819104,0.020035749301314,0.014947032555938],[0.033394064754248,0.067594431340694,0.016914986073971]],[[0.054069563746452,-0.030808258801699,-0.0043003638274968],[-0.027281271293759,0.0042474791407585,-0.0092300549149513],[0.050775110721588,-0.040948834270239,0.021595245227218]],[[0.037641499191523,-0.037062648683786,0.02346552349627],[0.059821534901857,-0.086206771433353,0.00017041036335286],[0.044501066207886,-0.062686868011951,0.055916823446751]],[[0.039942055940628,-0.01830674149096,-0.0083444388583302],[0.048025753349066,-6.7726519773714e-05,-0.053793404251337],[-0.048904180526733,-0.010488086380064,-0.038139425218105]],[[-0.028093218803406,0.0076463376171887,0.053446184843779],[0.014651877805591,-0.047060329467058,-0.013315442018211],[-0.0045064617879689,-0.007278707344085,0.001872799359262]],[[-0.026067355647683,-0.034794416278601,-0.032221760600805],[-0.012673820368946,0.0083186831325293,-0.012860419228673],[-0.097629457712173,0.028377970680594,0.047720741480589]],[[-0.047736719250679,-0.010093818418682,0.026531441137195],[-0.058073896914721,0.0097093498334289,-0.013913787901402],[0.0019995651673526,0.027746826410294,0.011349367909133]],[[-0.037887930870056,-0.019747197628021,0.045752454549074],[-0.033931326121092,0.0041820253245533,-0.030886789783835],[0.021212851628661,-0.031629104167223,0.01840222068131]],[[-0.041230365633965,-0.032501559704542,-0.024021469056606],[0.028010096400976,-0.066187508404255,-0.021282160654664],[0.051034830510616,0.11517467349768,-0.02512789145112]],[[-0.045575905591249,-0.022513812407851,0.029595905914903],[0.019086623564363,-0.063627228140831,-0.0044010295532644],[-0.037943832576275,0.0028970132116228,0.047112789005041]],[[-0.022387634962797,0.021526552736759,0.004884185269475],[0.060447201132774,-0.03074455074966,-0.047691207379103],[0.0085400193929672,0.01886903680861,0.047894168645144]],[[-0.021143624559045,-0.023240262642503,0.030932247638702],[0.050337720662355,0.063225828111172,-0.023267844691873],[-0.016378855332732,0.0041513037867844,-0.0052722254768014]],[[-0.086450211703777,-0.062682762742043,0.045374050736427],[0.076333567500114,-0.004740790463984,0.01811452768743],[-0.030978262424469,-0.018080508336425,0.0051989485509694]],[[-0.025743728503585,0.0040443069301546,0.049229610711336],[0.025216674432158,-0.037620607763529,-0.067705042660236],[-0.012934130616486,-0.02934785746038,0.080869354307652]],[[0.020640879869461,-0.052171763032675,-0.032364025712013],[0.090042494237423,0.026086248457432,-0.012910129502416],[-0.018066799268126,-0.049370270222425,-0.036002729088068]],[[-0.075375452637672,0.032235790044069,0.03602335229516],[0.059070084244013,0.0029776860028505,-0.014063893817365],[0.0024585053324699,-0.031618122011423,-0.020811574533582]],[[-0.05511712282896,0.0027431044727564,-0.013019667007029],[-0.086772426962852,-0.028970843181014,0.10657061636448],[0.0055816774256527,0.051424216479063,-0.028316646814346]],[[-0.014310010708869,0.0037476327270269,-0.02644738741219],[0.013225240632892,-0.0098448703065515,0.0093801328912377],[0.0092995734885335,-0.027685610577464,-0.0097841834649444]],[[-0.057223089039326,-0.052220828831196,0.0063319411128759],[0.076725609600544,0.026551285758615,-0.058043286204338],[0.017908664420247,0.031641647219658,-0.024941932410002]],[[-0.006775644607842,-0.01270888838917,-0.00051021628314629],[-0.076895587146282,0.0024417508393526,0.0084726884961128],[-0.015824638307095,-0.056985348463058,0.025551028549671]],[[-0.040508177131414,-0.0064235012978315,-0.093529045581818],[-0.022737946361303,0.022374646738172,-0.018602501600981],[0.081731393933296,-0.033354070037603,-0.040593817830086]],[[-0.04764935746789,0.059136208146811,-0.0061106183566153],[-0.035825081169605,-0.06746282428503,-0.039360597729683],[0.067889250814915,-0.0059663262218237,-0.0023294561542571]],[[0.028852082788944,-0.058102667331696,-0.052010618150234],[0.058160573244095,0.017058754339814,0.01440136693418],[0.0057242829352617,0.02900105714798,-0.03259876742959]],[[-0.0034158951602876,0.022904369980097,-0.067259937524796],[0.023593299090862,-0.00097530806669965,-0.013507986441255],[-0.039076056331396,-0.038748789578676,0.0054469602182508]],[[-0.01225714571774,-0.0106520075351,-0.057786803692579],[-0.046145841479301,-0.10245050489902,-0.075661554932594],[0.059438709169626,0.028104938566685,-0.020243303850293]],[[0.039481945335865,-0.0045673414133489,0.010882624424994],[-0.021169200539589,0.0013730892678723,-0.015868594869971],[0.023038508370519,-0.035840637981892,-0.044909063726664]],[[0.015625398606062,-0.01692576892674,-0.021369755268097],[0.022103127092123,0.038633320480585,0.00068806123454124],[0.0043027210049331,0.0069479336962104,-0.063406318426132]],[[0.065416812896729,0.046303987503052,0.023065023124218],[-0.059679672122002,-0.10424905270338,0.064574807882309],[-0.034623797982931,-0.031180648133159,0.029452446848154]],[[0.038460046052933,-0.031928312033415,0.0019185085548088],[0.049738049507141,0.056388024240732,-0.086380913853645],[-0.042689200490713,-0.010244739241898,-0.012647856026888]],[[-0.0051701432093978,-0.068398095667362,-0.01576816663146],[0.098028764128685,-0.01841189712286,0.020197715610266],[-0.017700890079141,-0.020292019471526,-0.0054095881059766]],[[-0.018458737060428,0.059792537242174,0.067411534488201],[-0.03519069775939,-0.025727419182658,0.0011907942825928],[0.0069598280824721,-0.038936853408813,0.0052006295882165]],[[0.0039567155763507,-0.023614937439561,-0.022616481408477],[0.031661007553339,-0.004778332542628,-0.068176127970219],[-0.0025469155516475,0.018507014960051,0.028756638988853]],[[0.0014832692686468,-0.032109219580889,0.016949744895101],[-0.05015442147851,0.010807286947966,-0.024903954938054],[0.057720977813005,-0.051477298140526,-0.13031405210495]],[[-0.053515303879976,-0.015296353958547,-0.038120333105326],[-0.0064781396649778,0.07078605890274,0.044253673404455],[-0.019597148522735,0.00074654584750533,0.013263260014355]],[[0.00448716012761,0.017673106864095,0.014983652159572],[0.032583594322205,-0.011373764835298,0.040110815316439],[0.0063705695793033,-0.074230208992958,-0.010979934595525]],[[-0.080467775464058,-0.0047928215935826,0.0043477010913193],[-0.073449671268463,-0.010097888298333,0.084012188017368],[-0.051194202154875,0.091113857924938,-0.016083609312773]],[[0.018571894615889,-0.014514355920255,0.014376106671989],[0.0044124289415777,-0.076875694096088,0.0048174862749875],[-0.011891872622073,-0.00068836973514408,0.057370588183403]],[[-0.0051630949601531,0.022198712453246,0.020450130105019],[-0.047135449945927,0.024610288441181,-0.084057107567787],[-0.056873925030231,0.024569632485509,0.047986194491386]],[[-0.00077384925680235,0.034452922642231,0.0012302515096962],[-7.6366297435015e-05,-0.0061676860786974,0.010327601805329],[-0.0092882653698325,-0.023125011473894,-0.0054446216672659]],[[0.064499825239182,0.02357511036098,0.0096241161227226],[0.039272092282772,-0.00059589784359559,-0.018302749842405],[-0.030568897724152,-0.0010096663609147,-0.042469948530197]],[[-0.0099306460469961,-0.045964773744345,-0.0098800398409367],[-0.026286790147424,-0.025994727388024,0.003842982230708],[0.023333676159382,-0.032544314861298,0.0060391402803361]],[[-0.024778662249446,-0.045019302517176,0.058678094297647],[0.035899963229895,0.012298909015954,-0.014068716205657],[-0.021472152322531,-0.015100885182619,0.014164104126394]],[[0.0083118611946702,0.0121686514467,0.055163271725178],[-0.050950966775417,0.014023464173079,-0.034021884202957],[-0.069125764071941,0.023583522066474,-0.05673111602664]],[[0.0059555969201028,0.048867736011744,0.0035858300980181],[-0.001509158173576,-0.10107969492674,-0.045188426971436],[0.041799381375313,0.0018348973244429,-0.0097858626395464]],[[0.01386995986104,-0.075852759182453,-0.033323921263218],[0.0057027926668525,0.0090147070586681,-0.018236124888062],[-0.0022506017703563,-0.0037828246131539,-0.027784528210759]],[[0.036588456481695,0.043012075126171,-0.049588829278946],[-4.9802823923528e-05,0.028134467080235,0.0044323718175292],[-0.0094625279307365,0.03985982015729,-0.056985050439835]],[[-0.016976056620479,-0.036232829093933,-0.049927871674299],[0.012664826586843,-0.07864536345005,0.0094256615266204],[-0.0057279784232378,0.059627141803503,0.034371972084045]],[[-0.01418424397707,-0.052564978599548,-0.015643203631043],[0.13241748511791,0.03475383669138,0.0056339139118791],[-0.053915876895189,0.0063011413440108,-0.021126544103026]],[[-0.040690593421459,-0.0089913960546255,0.024872437119484],[0.0074050058610737,0.022459080442786,-0.0044491412118077],[-0.017378440126777,0.0032761306501925,-0.023261800408363]],[[0.02203725092113,-0.049718540161848,-0.028653658926487],[-0.016892677173018,0.018472630530596,-0.032836481928825],[-0.010965219698846,0.023673918098211,0.074998937547207]],[[0.028159357607365,0.016834154725075,-0.050459381192923],[0.012117786332965,-0.038533732295036,-0.02346121892333],[-0.093859732151031,0.04531205072999,0.034143190830946]],[[0.06308402121067,-0.053060822188854,0.010647438466549],[0.050504788756371,-0.035660527646542,-0.014924148097634],[0.021711563691497,0.0088234702125192,-0.066256955265999]],[[0.064909562468529,0.0081567438319325,0.059188768267632],[0.017756232991815,0.020103255286813,-0.020466374233365],[0.040758773684502,-0.0086556980386376,-0.079633310437202]],[[0.069463826715946,0.025029577314854,-0.023516528308392],[-2.6105288270628e-05,0.017396342009306,-0.087396956980228],[0.061892338097095,0.0095724500715733,-0.063327178359032]],[[-0.041554849594831,0.055968757718801,-0.039046302437782],[0.009496983140707,0.0023617453407496,-0.067026071250439],[0.027639616280794,0.042574189603329,0.040585197508335]],[[0.031610030680895,-0.072139054536819,0.065187409520149],[-0.064653344452381,-0.023410717025399,0.041571080684662],[-0.0011816823389381,-0.0077771060168743,-0.061849176883698]],[[-0.068097300827503,0.035089761018753,-0.033771272748709],[0.060547590255737,-0.046220533549786,0.04840736836195],[-0.048350177705288,-0.024183904752135,-0.044843681156635]],[[0.01763672195375,-0.091126568615437,-0.0022612675093114],[-0.0087622972205281,0.040472917258739,0.010574169456959],[0.015672007575631,0.014057761058211,-0.010724969208241]],[[-0.016076561063528,0.027923282235861,-0.047394454479218],[0.072104103863239,0.016935415565968,-0.018429972231388],[-0.013393942266703,0.040288735181093,-0.070038072764874]],[[-0.026680393144488,-0.014974831603467,-0.050214476883411],[0.0073118833824992,-0.021961970254779,-0.048999931663275],[0.012455482035875,0.0049038366414607,0.056614238768816]],[[0.029227152466774,-0.071688592433929,0.0202402677387],[-0.080713778734207,-0.050686899572611,-0.039701964706182],[0.0079356711357832,-0.027579756453633,0.025170776993036]],[[0.032633494585752,-0.008448707871139,-0.078140400350094],[0.060353871434927,0.036231435835361,-0.039823323488235],[-0.060213837772608,0.034667905420065,-0.060561049729586]],[[-0.072867907583714,-0.026260495185852,-0.016043655574322],[0.029085317626595,-0.00013270630734041,0.0099212164059281],[-0.046133417636156,-0.031993545591831,-0.051524881273508]],[[0.036774199455976,0.020574389025569,-0.048806667327881],[-0.024116087704897,-0.0074920668266714,-0.04190780594945],[0.025017961859703,-0.01829413883388,-0.044962614774704]],[[-0.061258535832167,-0.0073143360204995,0.042567778378725],[0.0091389296576381,-0.014185895211995,-0.00064064160687849],[0.019810128957033,-0.012905074283481,0.082100510597229]],[[-0.017926506698132,0.024447267875075,-0.042195081710815],[-0.073256887495518,-0.019670663401484,-0.0070676286704838],[-0.02863983809948,0.043708343058825,0.075934879481792]],[[0.036976885050535,-0.036237005144358,-0.033931020647287],[0.013967315666378,0.0030657933093607,0.049497753381729],[-0.035361405462027,-0.0055662984959781,-0.064882278442383]],[[-0.041067887097597,-0.055135935544968,0.02796570956707],[-0.038242403417826,-0.083520360291004,0.019905619323254],[-0.024550378322601,-0.046009935438633,0.072268165647984]],[[0.0031636669300497,-0.0085417032241821,-0.0060307132080197],[0.058739051222801,-0.034978993237019,-0.06181426346302],[0.0085159679874778,-0.094732955098152,0.05093477666378]],[[-0.04576925560832,0.080382123589516,-0.045961327850819],[0.025939255952835,-0.038895137608051,-0.0029310458339751],[-0.02390000782907,-0.0084747225046158,0.02844375744462]],[[-0.033964909613132,0.024002179503441,-0.01283419597894],[0.026918141171336,0.043217334896326,0.037324447184801],[-0.090455710887909,-0.030264334753156,-0.041182622313499]],[[-0.0062091695144773,0.074913963675499,-0.028855066746473],[-0.0093445004895329,-0.021787691861391,0.058130744844675],[0.023805949836969,-0.070082619786263,-0.054750844836235]],[[-0.061285197734833,0.010475834831595,0.0022798900026828],[-0.032173056155443,-0.034746494144201,0.063573822379112],[0.023138554766774,-0.11712403595448,0.11151760816574]],[[0.081919319927692,0.072987720370293,0.059503521770239],[0.01618605107069,0.076018020510674,0.098390884697437],[0.096153736114502,0.0012288731522858,0.067619308829308]],[[0.0045742085203528,0.041181527078152,0.045786194503307],[-0.059384573251009,-0.043870572000742,-0.12887467443943],[-0.04412803798914,-0.027482440695167,-0.058367799967527]],[[-0.025746708735824,-0.0089389169588685,-0.0030966338235885],[0.019166896119714,-0.021760316565633,-0.044898379594088],[0.054359514266253,-0.011931928806007,0.040188413113356]],[[-0.059160865843296,0.0035182670690119,0.0140341501683],[0.0025157399941236,-0.062400326132774,-0.0030516011174768],[-0.0039575174450874,0.022356875240803,-0.038743626326323]],[[0.02349366247654,0.087471842765808,-0.039997242391109],[0.022252289578319,0.055687438696623,0.09542939811945],[0.064614064991474,-0.012501661665738,0.099824622273445]],[[0.037337254732847,-0.037275843322277,0.0039217988960445],[-0.032303743064404,-0.01117081195116,-0.025730095803738],[-0.0040208953432739,0.057220228016376,-0.024135265499353]],[[0.044453799724579,-0.034406412392855,-0.015600706450641],[-0.02585207670927,0.0065503702498972,-0.04535561427474],[0.012576225213706,0.012876234017313,-0.023617194965482]],[[-0.004509499296546,-0.083309732377529,0.043601538985968],[-0.026512900367379,0.035773240029812,-0.070388168096542],[-0.012570763006806,0.021611206233501,0.034664776176214]],[[0.056097235530615,-0.028213456273079,-0.056558392941952],[-0.014945399016142,0.076749786734581,0.0080945435911417],[0.019744362682104,0.0030012482311577,-0.017475983127952]],[[0.014211711473763,0.0054984674789011,0.034014370292425],[-0.062294565141201,0.063723750412464,0.00070297298952937],[0.018144696950912,-0.018459431827068,-0.019567904993892]],[[0.019781902432442,0.040061704814434,-0.030586514621973],[0.038476429879665,-0.08332784473896,-0.06968941539526],[0.10394251346588,0.0687071159482,0.011272720992565]],[[0.020895002409816,-0.0034341919235885,0.027999974787235],[0.034113451838493,-0.068911947309971,0.012678308412433],[-0.043725237250328,0.070996046066284,-0.022455908358097]],[[-0.017395947128534,-0.066870644688606,0.0076358821243048],[0.041997842490673,0.018199138343334,-0.013980615884066],[-0.031403157860041,-0.0056148627772927,0.048167940229177]],[[-0.039016213268042,-0.079562164843082,-0.00634202407673],[-0.078395485877991,-0.059295900166035,0.097353510558605],[0.057390838861465,-0.0026958386879414,0.043664261698723]],[[-0.049393724650145,-0.043040852993727,0.054150607436895],[-0.017486672848463,-0.027598883956671,0.046529598534107],[-0.0011749861296266,-0.094168089330196,0.017543785274029]],[[-0.01263040304184,-0.050466977059841,-0.055613379925489],[0.0092558963224292,0.1033019721508,0.018787020817399],[-0.031369309872389,0.065557233989239,-0.010503625497222]],[[-0.025028932839632,0.0027470411732793,-0.014195579104125],[0.096502892673016,0.054638639092445,0.0085445325821638],[0.010990352369845,-0.030252749100327,-0.033138494938612]],[[0.022816464304924,-0.027596732601523,0.045059658586979],[0.0038031463045627,-0.0095413364470005,-0.062328599393368],[0.025277068838477,0.01713733933866,-0.040655940771103]],[[0.074154354631901,-0.026937747374177,-0.030381051823497],[-0.0091029955074191,0.047456331551075,0.010905829258263],[-0.018812341615558,-0.0004148721054662,-0.053955428302288]]],[[[0.055219363421202,0.073099426925182,-0.041057046502829],[-0.0088736163452268,-0.070730045437813,0.046872321516275],[-0.0082434518262744,0.055196475237608,0.0056800455786288]],[[0.033765099942684,-0.0012508607469499,0.0083214361220598],[-0.044585071504116,-0.13535934686661,0.051958180963993],[0.013863511383533,0.034077774733305,-0.060669016093016]],[[0.13816352188587,0.11977888643742,0.049952626228333],[0.0013553195167333,-0.042697470635176,0.027045035734773],[-0.051210984587669,0.0057634422555566,-0.033013734966516]],[[0.049015522003174,-0.074435949325562,-0.048489153385162],[0.058315578848124,0.0097997868433595,-0.032232865691185],[0.029456678777933,-0.098118342459202,0.010052448138595]],[[0.011527054011822,-0.044567789882421,-0.016491811722517],[-0.028016241267323,0.031852468848228,-0.055919162929058],[0.031425520777702,-0.033820532262325,-0.051943525671959]],[[-0.05402647703886,0.036134589463472,0.013039043173194],[0.017509933561087,-0.011587569490075,0.081127978861332],[-0.038755670189857,-0.00026129087200388,-0.068737529218197]],[[-0.023546716198325,-0.01899179816246,-0.0070386328734457],[-0.014744070358574,-0.024483347311616,-0.036889728158712],[0.0059337476268411,0.054036024957895,0.064585752785206]],[[0.031947664916515,-0.05863531306386,-0.0088970465585589],[-0.023372605443001,-0.01984204351902,0.0012809177860618],[-0.020410872995853,0.046053010970354,-0.030559677630663]],[[-0.011684190481901,-0.019348179921508,0.060258358716965],[0.030936075374484,-0.046802971512079,0.046327125281096],[-0.078895419836044,0.045507118105888,0.015524453483522]],[[-0.0096635520458221,-0.02525051496923,0.01797634921968],[-0.0029171132482588,-0.0069170664064586,-0.0053861034102738],[-0.0051934057846665,-0.034037668257952,0.064121060073376]],[[-0.037814538925886,0.011648779734969,-0.012780614197254],[-0.030697582289577,-0.036055635660887,-0.021107884123921],[-0.0059737954288721,0.032832499593496,0.027758032083511]],[[0.082867562770844,-0.033652875572443,0.058433383703232],[-0.027698252350092,0.10716103762388,-0.027286451309919],[0.035414587706327,-0.026701932772994,0.024907518178225]],[[0.019017094746232,-0.059205256402493,0.033900491893291],[0.039383322000504,0.029111100360751,-0.022132663056254],[0.019642636179924,0.03332931175828,-0.0057884207926691]],[[0.0020321286283433,-0.028331751003861,-0.067961275577545],[0.11632201820612,0.095667779445648,-0.083320237696171],[-0.085160307586193,0.082436099648476,0.026096539571881]],[[0.00024791908799671,-0.035672683268785,0.036660771816969],[0.097298681735992,-0.012348107993603,-0.010775653645396],[0.040711905807257,-0.083482541143894,0.036419559270144]],[[0.0025429881643504,-0.025285290554166,0.04684703797102],[-0.039529476314783,-0.10879760235548,0.061792943626642],[-0.03283266723156,-0.019107950851321,-0.0024318865034729]],[[-0.0090628573670983,-0.045268554240465,0.00054181698942557],[-0.019800612702966,-0.027519935742021,-0.03664506226778],[0.016267016530037,0.015669967979193,-0.012160004116595]],[[-0.066749155521393,-0.053187295794487,0.030733155086637],[0.0091768596321344,0.075612045824528,-0.0027382688131183],[-0.0010416557779536,0.025265172123909,0.014122867956758]],[[-0.0085674012079835,0.024612624198198,-0.0051304693333805],[0.032720092684031,-0.0074653229676187,0.054483179003],[-0.00399129698053,-0.094996266067028,-0.02868059463799]],[[-0.0047309505753219,0.0070121875032783,0.010031281970441],[-0.0078114559873939,-0.0046822531148791,0.0068461741320789],[0.016713922843337,-0.071528859436512,-0.020717306062579]],[[0.05894073843956,-0.019262786954641,-0.020500816404819],[-0.033747978508472,0.053387135267258,0.055425573140383],[-0.025437079370022,0.0012519774027169,0.026041701436043]],[[0.073340512812138,0.046445470303297,-0.011674471199512],[-0.00071627693250775,-0.043475430458784,0.024749994277954],[0.029679307714105,0.009373533539474,0.0016021382762119]],[[0.053190127015114,0.0048412336036563,0.05224895849824],[-0.02617590688169,-0.0063105281442404,-0.013329884037375],[0.007677995134145,-0.057352479547262,0.024827221408486]],[[-0.0053087519481778,0.041857738047838,-0.032938998192549],[-0.016646118834615,-0.027264324948192,0.074292436242104],[0.037423476576805,0.040616199374199,-0.0049605588428676]],[[0.044063456356525,0.08183091878891,0.074464894831181],[-0.049707908183336,0.012979040853679,-0.028210889548063],[-0.0096544260159135,0.032149121165276,0.0021706318948418]],[[0.016221355646849,-0.088132582604885,0.07668873667717],[-0.009861215017736,-0.014175633899868,0.04040963947773],[-0.053485181182623,0.024138946086168,0.011376422829926]],[[-0.026353634893894,-0.026761962100863,-0.0068808360956609],[0.04829678311944,0.010069874115288,-0.029270607978106],[0.039014834910631,0.0072755864821374,0.013773815706372]],[[-0.021702392026782,-0.025788625702262,0.0036575780250132],[-0.078400008380413,-0.033972635865211,-0.020600872114301],[-0.0078001753427088,0.015273256227374,-0.0086219720542431]],[[-0.065723270177841,0.042278774082661,0.01704403012991],[0.020449869334698,0.03803676366806,-0.0051430091261864],[0.027039529755712,0.019687578082085,-0.0026665769983083]],[[0.057520370930433,0.00057620246661827,0.0022072014398873],[-0.011219148524106,0.035441871732473,0.0001041946670739],[0.063855849206448,0.0064921607263386,0.038282662630081]],[[0.0025325799360871,0.017507685348392,0.019790479913354],[-0.042640347033739,-0.06015419960022,-0.010041230358183],[0.049989480525255,0.0053696790710092,-0.036635007709265]],[[-0.055716007947922,-0.012970180250704,-0.0098015619441867],[0.04675555229187,-0.0070752766914666,0.0017707218648866],[0.054966486990452,-0.044299513101578,0.10057539492846]],[[-0.006858398206532,-0.05655324831605,-0.019306579604745],[-0.0040326938033104,-0.038520704954863,0.028058774769306],[-0.026514682918787,-0.0015165940858424,-0.044825281947851]],[[-0.033263057470322,-0.032010659575462,-0.016067495569587],[-0.014485569670796,0.0067473561502993,0.06093430891633],[-0.026299640536308,0.03410317003727,0.044998817145824]],[[-0.00030579970916733,-0.066770054399967,-0.0027722106315196],[-0.079679556190968,0.057389441877604,0.004011332988739],[0.01607957482338,0.0048809880390763,-0.021607253700495]],[[-0.015819188207388,0.016055386513472,-0.015561122447252],[0.026138616725802,0.016673626378179,-0.0058842715807259],[-0.044999670237303,-0.052909381687641,-0.03102694824338]],[[0.047327253967524,-0.0040789148770273,0.03665929287672],[0.0018686013063416,-0.042643934488297,0.077911242842674],[-0.012151203118265,0.0072434809990227,0.076314650475979]],[[0.052125032991171,0.0075366850942373,-0.068180255591869],[0.037282809615135,0.036102220416069,-0.0016110931755975],[0.012465038336813,0.0067091342061758,0.041777670383453]],[[0.033234138041735,-0.028672222048044,0.021563151851296],[0.092578835785389,-0.069579631090164,0.068670548498631],[-0.018001578748226,0.049917258322239,0.039935402572155]],[[-0.0024108665529639,-0.019978858530521,0.0053502377122641],[0.023851748555899,0.03988978639245,-0.0066656647250056],[-0.022831434383988,0.016638454049826,0.0099839642643929]],[[0.015180935151875,-0.058596353977919,-0.01026020757854],[0.028202902525663,-0.014522056095302,-0.022759424522519],[0.062425848096609,0.068046897649765,-0.05905444920063]],[[0.015167933888733,0.065763838589191,-0.047229401767254],[0.014635430648923,0.038514666259289,-0.028030533343554],[-0.097879752516747,-0.038102649152279,0.0011612626258284]],[[0.024291375651956,-0.040685016661882,0.061921343207359],[0.020387856289744,0.075973264873028,0.0060084848664701],[0.016760677099228,0.08029130846262,0.038402136415243]],[[-0.046932972967625,-0.0093456199392676,-0.03140764310956],[-0.059535529464483,0.043483316898346,-0.024585178121924],[-0.020971395075321,-0.016922431066632,-0.056252382695675]],[[0.047456789761782,-0.046345215290785,0.016217298805714],[0.04731597751379,0.017421239987016,0.012297628447413],[-0.017231814563274,-0.026105599477887,-0.049138829112053]],[[-0.034270320087671,-0.061622723937035,-0.01850919239223],[0.081275194883347,-0.068590365350246,-0.020412629470229],[0.026396812871099,-0.066280424594879,-0.0078998059034348]],[[-0.042767006903887,0.11717199534178,0.0072184335440397],[-0.042022526264191,-0.016617603600025,-0.030605839565396],[-0.039192419499159,-0.012284223921597,-0.073827244341373]],[[-0.027411680668592,-0.04717068374157,-0.05373465269804],[0.05747340247035,-0.010046254843473,-0.048490971326828],[-0.033153302967548,-0.0067602940835059,-0.030989605933428]],[[-0.032269481569529,-0.070908829569817,-0.017590910196304],[0.013081312179565,-0.027277117595077,-0.0060660894960165],[-0.012090191245079,0.062958180904388,0.034145582467318]],[[0.025557681918144,-0.033818867057562,0.014415211975574],[-0.11313363909721,0.023943088948727,0.017414279282093],[-0.0077690319158137,-0.014963016845286,0.082095049321651]],[[0.031582161784172,0.020620491355658,-0.034567818045616],[0.065288603305817,0.062246464192867,0.037045493721962],[0.014479340985417,0.048111889511347,0.038647472858429]],[[0.031727414578199,-0.0055963043123484,-0.017964869737625],[-0.0472655557096,0.025757271796465,-0.041093032807112],[-0.021404961124063,0.034009482711554,0.040161829441786]],[[0.046476151794195,-0.045951522886753,0.028720427304506],[-0.10748576372862,0.081085167825222,0.039229799062014],[0.049214530736208,0.010820052586496,0.00037721518310718]],[[-0.018952541053295,0.055200137197971,0.010530599392951],[-0.016575153917074,-0.0050337444990873,0.0036374470219016],[-0.025566449388862,0.024547886103392,-0.033088926225901]],[[0.081642873585224,-0.042093802243471,0.016643133014441],[0.0079717300832272,0.052918404340744,0.023521104827523],[0.036556202918291,0.0060144704766572,0.0098619665950537]],[[-0.018985925242305,-0.01870553009212,0.029871298000216],[0.037166312336922,0.063406094908714,0.042360085994005],[0.0106479562819,0.058039270341396,0.0003946884535253]],[[0.025130078196526,-0.030264833942056,-0.0091338716447353],[-0.0064401258714497,0.043183501809835,-0.032193429768085],[0.019261788576841,0.0089892763644457,-0.045027825981379]],[[-0.013609807938337,-0.036200188100338,-0.050470396876335],[-0.0495845079422,0.015628987923265,-0.072400450706482],[-0.050669178366661,-0.0028128947596997,-0.020402535796165]],[[-0.067087292671204,-0.008070464245975,0.0070739234797657],[0.039009284228086,0.017507094889879,-0.021433975547552],[0.040213648229837,0.025500996038318,-0.053193848580122]],[[0.05769969522953,0.026584688574076,0.01968039944768],[-0.048178672790527,0.0083205634728074,-0.028964068740606],[-0.03027243539691,0.010528837330639,0.012289926409721]],[[-0.011396024376154,-0.01120947021991,0.017636304721236],[-0.083072453737259,-0.0265486035496,-0.039657901972532],[0.017691515386105,0.0080732963979244,0.047154434025288]],[[-0.069152168929577,0.0067328573204577,0.045809142291546],[0.045724358409643,-0.0088798999786377,-0.012833969667554],[0.067762598395348,0.026674358174205,0.053463168442249]],[[-0.019526315853,0.061212908476591,-0.042958363890648],[0.04698121920228,0.099346660077572,-0.034447800368071],[0.025612197816372,0.053279299288988,-0.0080309193581343]],[[-0.010003519244492,0.074761956930161,0.027048835530877],[0.046849843114614,-0.054379288107157,-0.0074062729254365],[0.019705720245838,-0.0014819398056716,-0.0027641304768622]],[[0.053104918450117,0.0084138512611389,0.027959177270532],[0.029076239094138,-0.037688955664635,0.0029419604688883],[-0.030136123299599,-0.055724151432514,0.0060497224330902]],[[0.082036845386028,0.032055385410786,0.037408251315355],[-0.040575716644526,0.054569263011217,0.015845952555537],[0.03874234482646,-0.02401452884078,0.074556708335876]],[[-0.038214221596718,-0.060690116137266,-0.022077510133386],[-0.035430267453194,-0.027633743360639,-0.03328713029623],[-0.04735765978694,-0.0058565265499055,0.046256355941296]],[[0.044282235205173,0.03262098133564,-0.0017377402400598],[-0.012948770076036,0.013618319295347,0.0096635604277253],[0.040089927613735,0.0038790430407971,-0.0032971352338791]],[[-0.037387676537037,-0.021044010296464,0.0029947892762721],[-0.017684547230601,-0.044649057090282,-0.020217757672071],[-0.046255368739367,-0.030275709927082,0.0061377291567624]],[[0.069952100515366,-0.012239108793437,-0.014413774944842],[0.0058674141764641,0.035240054130554,0.035612866282463],[0.0094105266034603,-0.013119176961482,-0.041122857481241]],[[0.024008970707655,0.0014019462978467,-0.078028090298176],[0.021121950820088,0.046342123299837,0.019974179565907],[0.01106125395745,-0.016503475606441,0.077155932784081]],[[0.023320080712438,-0.055513013154268,-0.014592243358493],[-0.0078199673444033,-0.034002754837275,0.026662286370993],[0.042625457048416,-0.013025640510023,0.029872357845306]],[[0.0099925864487886,-0.027253478765488,-0.0080913053825498],[0.0095823919400573,-0.065706975758076,0.082111500203609],[0.015476402826607,-0.040541287511587,0.015035371296108]],[[-0.051451053470373,0.012470239773393,-0.028194934129715],[0.046359281986952,0.036939680576324,0.044752832502127],[0.024515395984054,-0.056825693696737,-0.0022676549851894]],[[0.063387177884579,-0.0088952230289578,-0.05702531337738],[-0.0067718625068665,-0.034938585013151,0.055258702486753],[-0.0031500107143074,0.012480129487813,0.077850095927715]],[[0.032654270529747,0.035972476005554,0.0089872628450394],[0.040018655359745,0.028358269482851,-0.034969795495272],[0.0088436668738723,0.013916160911322,0.045278001576662]],[[-0.044738311320543,0.027521522715688,-0.016313163563609],[0.05676605924964,0.030185347422957,0.0036116051487625],[-0.011959133669734,-0.026271251961589,-0.0088129267096519]],[[0.029307832941413,0.044707838445902,0.055246692150831],[-0.002891709562391,-0.01201836951077,0.0079721240326762],[0.050409883260727,0.0083283465355635,-0.039278287440538]],[[0.01248259935528,-0.020922353491187,0.017212638631463],[0.044601824134588,-0.04482676461339,-0.017941473051906],[-0.010209524072707,-0.0077317585237324,0.001185524277389]],[[-0.0022090920247138,-0.049878511577845,0.03650838509202],[-0.0068897223100066,0.0013605926651508,-0.0044067590497434],[-0.030532127246261,0.025675423443317,-0.0052073365077376]],[[-0.0090876454487443,-0.088656760752201,-0.056514643132687],[0.048747628927231,-0.010026639327407,0.051450874656439],[0.019032694399357,0.015729550272226,0.0089838327839971]],[[-0.059493951499462,0.056853421032429,0.0030756138730794],[0.012551127932966,-0.063519582152367,0.01822093129158],[-0.020102554932237,0.063765950500965,-0.084313213825226]],[[-0.028349744156003,0.053878106176853,0.037330579012632],[-0.048166152089834,0.02517762593925,-0.083081729710102],[0.049350164830685,0.08240482211113,-0.029303409159184]],[[0.024931082502007,-0.018087146803737,0.046795688569546],[0.063833139836788,0.0038760742172599,0.010688253678381],[0.022416258230805,0.018484368920326,-0.13210210204124]],[[-0.0058857253752649,0.068656340241432,0.082285515964031],[-0.050643030554056,0.043404925614595,-0.030224474146962],[-0.0074723595753312,0.060944862663746,0.036571610718966]],[[0.035606775432825,-0.054755579680204,-0.02637579664588],[-0.023727966472507,-0.0081469342112541,-0.053432799875736],[-0.044200446456671,-0.036316841840744,-0.011775362305343]],[[0.042455643415451,0.014361157082021,0.02567489631474],[-0.035904183983803,0.020648876205087,0.057373501360416],[0.016223419457674,0.012936653569341,-0.032237693667412]],[[0.038360137492418,-0.06649774312973,0.034257605671883],[0.064263395965099,-0.0077339126728475,-0.037772465497255],[-0.032168786972761,-0.045587755739689,0.093058861792088]],[[0.068835310637951,-0.0521453730762,-0.029075380414724],[-0.024509023874998,-0.014175765216351,-0.011731701903045],[0.030342122539878,0.052361443638802,-0.027111634612083]],[[-0.014205007813871,-0.077137880027294,0.024717243388295],[0.0051490478217602,0.027195356786251,-0.0061177648603916],[0.021230643615127,0.033090528100729,-0.053041860461235]],[[0.023888204246759,-0.082833364605904,-0.01453878171742],[-0.015615625306964,-0.047688812017441,0.091072387993336],[-0.017120353877544,-0.0099710468202829,-0.026111416518688]],[[-0.015857251361012,0.098330795764923,-0.011026654392481],[0.010397296398878,-0.037742935121059,-0.044874768704176],[0.068333201110363,0.033204160630703,0.0070530436933041]],[[-0.0047232215292752,-0.0015640675555915,-0.041348803788424],[0.079801999032497,-0.068562611937523,-0.0515326410532],[0.032985493540764,-0.10748006403446,0.025260422378778]],[[0.026196327060461,0.038118924945593,0.010362016968429],[-0.047223579138517,0.06691886484623,0.019782843068242],[-0.053825069218874,-0.025414500385523,-0.00047428556717932]],[[-0.011663380078971,0.00054467294830829,-0.0015351214678958],[-0.02448682487011,-0.042233757674694,-0.024020506069064],[0.0043699368834496,-0.015050764195621,0.050562750548124]],[[0.073858849704266,-0.03509633243084,0.079790115356445],[0.013679601252079,-0.058149438351393,-0.066545456647873],[0.048013668507338,-0.035752467811108,-0.0068098320625722]],[[0.061296988278627,-0.0023609541822225,-0.015031664632261],[-0.015979574993253,-4.8920515837381e-05,0.059751573950052],[0.024283524602652,0.000275637867162,-0.026874639093876]],[[-0.037170853465796,0.045393150299788,0.039637986570597],[0.026010930538177,0.10495608299971,0.030673814937472],[-0.0049921767786145,-0.012381999753416,0.023521665483713]],[[-0.020722324028611,-0.035462200641632,0.040272984653711],[0.020791443064809,-0.016641415655613,0.042945064604282],[-0.047031138092279,-0.021549208089709,-0.033931497484446]],[[-0.021142994984984,-0.071419902145863,-0.085561960935593],[0.0079853441566229,0.035194706171751,-0.0097424015402794],[0.032195154577494,-0.031539440155029,-0.041930813342333]],[[0.012606622651219,0.0038561678957194,-0.043780617415905],[0.0010443204082549,-0.014757456257939,-0.035451214760542],[-0.04557267203927,0.02973279543221,0.06559431552887]],[[-0.0089634889736772,0.029780453070998,0.072025485336781],[0.010633223690093,-0.021249024197459,-0.07365071028471],[0.10272545367479,0.006151516456157,0.00077563052764162]],[[0.061206821352243,-0.01630262658,0.1083211004734],[-0.018124939873815,0.073978267610073,0.0040688738226891],[0.0058730430901051,0.0095232874155045,-0.051442883908749]],[[0.023257352411747,-0.066497698426247,-0.011015393771231],[-0.063024923205376,0.00083705224096775,-0.031913794577122],[0.040095157921314,-0.036495629698038,0.014357612468302]],[[-0.011723645962775,-0.049043636769056,-0.0043416465632617],[0.047448955476284,-0.079924032092094,-0.037304989993572],[-0.0065981685183942,0.0021829439792782,-0.060109306126833]],[[-0.017594493925571,-0.00043309072498232,-0.0098086185753345],[0.010421230457723,-0.031404618173838,-0.04790959879756],[-0.007882583886385,0.033403873443604,0.02199181355536]],[[-0.067577578127384,-0.028650252148509,0.019225044175982],[0.062405060976744,-0.0078118927776814,-0.031107645481825],[-0.01885893009603,-0.027193266898394,0.032387897372246]],[[0.034403204917908,0.021117588505149,0.02746619656682],[-0.02646741271019,0.012153814546764,-0.013149590231478],[-0.040900532156229,-0.009225188754499,-0.0042157061398029]],[[0.01162813603878,0.039390597492456,-0.02092394977808],[-0.03441084176302,0.049281027168036,-0.015177052468061],[-0.040959548205137,0.042945776134729,-0.024861274287105]],[[-0.051615878939629,0.06417990475893,-0.0060731475241482],[0.054393734782934,-0.033618498593569,-0.0006598771433346],[-0.1345561593771,0.0030221391934901,-5.4678275773767e-05]],[[-0.020527489483356,0.00058711873134598,0.036862030625343],[0.076775655150414,0.0058037405833602,0.086803957819939],[0.04638934135437,0.043564639985561,0.055076256394386]],[[0.012654691934586,-0.020049549639225,0.020064603537321],[-0.01868942566216,-0.042285550385714,-0.006837063934654],[0.0086731025949121,-0.0071433535777032,-0.029401075094938]],[[0.020566212013364,-0.0062597203068435,0.061529509723186],[0.041662599891424,-0.022969152778387,-0.010544409044087],[-0.00017562776338309,0.03428104147315,-0.01583256945014]],[[0.027763428166509,-0.046360190957785,-0.014155116863549],[-0.035478144884109,0.030482020229101,-0.039640095084906],[0.020776068791747,-0.072789765894413,0.020490245893598]],[[-0.0025908902753145,-0.014109984971583,0.075425170361996],[0.025781465694308,-0.015472322702408,0.053948994725943],[0.081021137535572,-0.020988363772631,-0.015276691876352]],[[-0.057656731456518,-0.039368599653244,-0.041040569543839],[0.017758544534445,-0.04563957080245,-0.13690094649792],[0.0029528103768826,0.014895451255143,-0.012069331482053]],[[0.029539795592427,-0.0042678276076913,0.023676818236709],[-0.037600979208946,0.012455985881388,-0.040675953030586],[-0.018081733956933,0.0061443308368325,-0.02499738521874]],[[0.042748242616653,0.0016168222064152,-0.038989454507828],[0.022387526929379,-0.03632977604866,0.012177005410194],[-0.010515342466533,-0.0096298260614276,-0.00071004685014486]],[[0.022168012335896,-0.017736138775945,-0.067200601100922],[-0.020129337906837,0.032940100878477,-0.076480872929096],[0.029633281752467,0.0097705079242587,-0.024437718093395]],[[0.0038806865923107,0.013769787736237,-0.0089877033606172],[-0.086084075272083,0.059993788599968,0.012897599488497],[0.0037966712843627,-0.023916181176901,0.014670444652438]],[[-0.0073035326786339,0.038268439471722,0.012678700499237],[0.070689730346203,0.0028419033624232,-0.031377699226141],[0.017895612865686,-0.0011908168671653,0.01541315484792]],[[-0.046548336744308,-0.0011487315641716,-0.028721263632178],[0.044395677745342,0.02000623755157,-0.013883219100535],[0.015641584992409,-0.0092691071331501,-0.11237763613462]],[[-0.028343867510557,0.076037839055061,0.066245630383492],[-0.010019661858678,0.033271335065365,0.0029063392430544],[-0.050325628370047,0.032286487519741,0.055753163993359]],[[-0.020646240562201,0.014533450827003,0.051988489925861],[-0.016715008765459,0.035119451582432,-0.011531870812178],[0.052051287144423,0.020043028518558,-0.016116384416819]],[[-0.010839239694178,-0.020129857584834,0.00088045926531777],[0.00045673607382923,-0.035963859409094,0.055471155792475],[0.023297660052776,-0.090109430253506,-0.014620519243181]],[[0.013777968473732,-0.062607131898403,-0.03326953202486],[0.024278627708554,0.049023106694221,0.079200781881809],[-0.021266693249345,0.071042470633984,0.02514810115099]],[[0.046376515179873,0.011232001706958,0.019923185929656],[-0.05011435598135,0.0066494438797235,-0.032912455499172],[-0.015976004302502,-0.0031979449559003,-0.022398576140404]],[[0.042342752218246,-0.009408675134182,0.029782498255372],[0.046805668622255,-0.044339910149574,0.0028101727366447],[-0.0095872776582837,-0.017904959619045,0.03590177744627]]],[[[-0.059128236025572,-0.048207797110081,0.013254031538963],[-0.027108745649457,-0.038712032139301,-0.0025968414265662],[-0.011792394332588,-0.014356241561472,0.020529551431537]],[[0.019316686317325,0.067762240767479,0.011218557134271],[-0.07159348577261,0.03827790170908,-0.090884186327457],[-0.022078545764089,0.051567073911428,-0.017482763156295]],[[-0.021678438410163,-0.0022771838121116,0.03112667798996],[-0.069434709846973,-0.035815197974443,0.002315362682566],[0.066142298281193,-0.000898435653653,-0.090305536985397]],[[-0.065006114542484,-0.081664599478245,-0.012497213669121],[-0.017793998122215,-0.00099334202241153,0.038156107068062],[-0.0078405672684312,0.0030825042631477,0.0038764283526689]],[[-0.018720149993896,0.010818614624441,-0.00067954824771732],[0.028694754466414,-0.036027852445841,0.048311654478312],[-0.030340686440468,-0.0047804927453399,0.03869866207242]],[[0.074066296219826,0.0041326014325023,-0.03875270113349],[-0.054022554308176,-0.031524714082479,-0.021695142611861],[0.017635690048337,-0.012764220125973,0.035817492753267]],[[0.050324007868767,-0.030274767428637,0.025461815297604],[0.065459653735161,-0.02548791654408,-0.042452290654182],[0.0025713907089084,0.018309094011784,0.00042697807657532]],[[-0.0045868647284806,-0.054083157330751,-0.017861416563392],[0.020419873297215,0.018404820933938,-0.018569078296423],[-0.06961864233017,-0.029924334958196,-0.025615451857448]],[[0.041239809244871,0.068289086222649,-0.013166774995625],[-0.056003127247095,-0.013119021430612,0.024693638086319],[0.016513764858246,0.01319466996938,-0.10258397459984]],[[-0.037000551819801,-0.013559781014919,0.050334323197603],[-0.10676664859056,-0.069109953939915,-0.03455526009202],[0.075369000434875,-0.063116401433945,-0.066447831690311]],[[0.00177555764094,0.012017766013741,-0.03309091553092],[0.056329339742661,0.089984439313412,0.00025483869831078],[-0.02292793430388,-0.072089314460754,-0.047497909516096]],[[-0.070664957165718,0.034155651926994,0.0069745606742799],[0.11938559263945,0.0068303090520203,-0.053669974207878],[-0.044931825250387,-0.015988182276487,0.0014429631410167]],[[0.053282104432583,-0.0079737463966012,-0.04181345179677],[0.019407199695706,0.032442674040794,-0.018721766769886],[-0.0065044690854847,-0.049507822841406,0.035305835306644]],[[0.043663244694471,-0.018935175612569,0.019484847784042],[0.032133847475052,0.035562690347433,-0.10487058758736],[0.057491432875395,0.012041617184877,0.0079492777585983]],[[0.015033894218504,-0.045367147773504,0.010922335088253],[0.007689687423408,0.027095640078187,0.079676665365696],[-0.14385142922401,-0.01876681111753,0.062776401638985]],[[0.027346663177013,0.0097897509112954,0.025308528915048],[-0.015231858938932,0.041196819394827,0.012161773629487],[0.027717966586351,-0.04870492592454,0.028766063973308]],[[-0.027908366173506,-0.079442635178566,0.010743477381766],[0.023592686280608,0.05051851272583,-0.013879732228816],[0.0076326970010996,-0.0074378964491189,-0.015910906717181]],[[-0.0092113083228469,-0.00040579488268122,-0.021907595917583],[0.0050494247116148,0.020456973463297,0.039666879922152],[-0.022215506061912,0.053381491452456,-0.012409971095622]],[[-0.044680379331112,-0.016891939565539,0.021481411531568],[-0.012690549716353,-0.0032794596627355,-0.024466963484883],[0.023551501333714,0.018624307587743,-0.086783476173878]],[[-0.048349443823099,-0.0010022034402937,-0.015772214159369],[0.064160391688347,0.024507017806172,-0.067800454795361],[0.0076437555253506,0.026952257379889,-0.020907483994961]],[[-0.0098996693268418,-0.066927164793015,0.0011589889181778],[-0.011309095658362,-0.071333289146423,0.011539286933839],[-0.039018139243126,0.016042632982135,-0.023432739078999]],[[-0.017121642827988,-0.068144157528877,-0.075631409883499],[-0.015411227941513,-0.014686650596559,-0.024567754939198],[-0.045992959290743,-0.0015388590982184,-0.091313496232033]],[[0.022906394675374,-0.010371306911111,-0.06643108278513],[-0.070585608482361,-0.048429008573294,0.044924736022949],[0.041872099041939,0.0088864751160145,-0.034972261637449]],[[-0.012631546705961,-0.06823468953371,-0.042642902582884],[-0.0034106594976038,0.063128851354122,-0.0088274674490094],[0.019433725625277,-0.027304030954838,-0.054864693433046]],[[-0.057313822209835,-0.017176028341055,0.023918567225337],[-0.011450449004769,-0.02890632301569,0.046713758260012],[0.01395302079618,-0.044514559209347,0.01591862924397]],[[0.043553456664085,-0.044287350028753,-0.017121907323599],[0.033736728131771,-0.040161550045013,0.024365453049541],[-0.0036068379413337,0.0344034768641,-0.026033483445644]],[[-0.054943982511759,0.032816287130117,-0.018102336674929],[-0.068124800920486,0.028727253898978,-0.024329654872417],[-0.053560357540846,-0.038334473967552,0.035420507192612]],[[0.020335050299764,0.0043371594510972,-0.037787150591612],[-0.040494550019503,0.0030165624339134,-0.018050001934171],[0.010694609954953,-0.05199633166194,-0.012797883711755]],[[0.032894566655159,-0.0099034011363983,-0.10718471556902],[0.0252764839679,0.052922997623682,-0.027317525818944],[0.039534855633974,-0.05613474547863,0.012149310670793]],[[-0.046247221529484,-0.038792494684458,0.01407505851239],[-0.055834449827671,0.043640911579132,-0.045919612050056],[-0.0083375796675682,-0.038798999041319,0.0067760772071779]],[[-0.032095570117235,0.031829502433538,0.033702116459608],[-0.077076703310013,0.028079725801945,-0.050729315727949],[-0.0074515799060464,-0.052135091274977,-0.0097570056095719]],[[-0.047599717974663,-0.028456155210733,0.0042543835006654],[-0.0030959073919803,-0.020283745601773,0.045809730887413],[-0.041838750243187,0.029418947175145,0.015498927794397]],[[-0.026219850406051,0.020412972196937,-0.071781933307648],[-0.084155112504959,0.019993722438812,0.022009154781699],[-0.014689594507217,0.0058945473283529,-0.036709275096655]],[[0.023916577920318,0.080793917179108,0.007035770919174],[-0.0033346652053297,0.032131891697645,0.0045434175990522],[-0.10720670223236,-0.0046017584390938,-0.029588893055916]],[[-0.039236012846231,-0.0011680385796353,0.076396949589252],[-0.048283878713846,-0.019784275442362,-0.066496670246124],[0.0091490177437663,0.063488394021988,-0.0042468868196011]],[[-0.0086646573618054,-0.020658439025283,-0.068510010838509],[-0.0022059660404921,-0.022095574066043,0.0020388083066791],[-0.020994065329432,0.084560886025429,0.012545382604003]],[[0.078417874872684,-0.005586517509073,-0.0030708524864167],[-0.018541174009442,-0.013278413563967,0.053594771772623],[0.0041014356538653,0.039635799825191,0.032110456377268]],[[-0.03448474034667,-0.0031144155655056,0.040589570999146],[-0.044459342956543,-0.054788444191217,-0.016540940850973],[-0.038024429231882,0.00083934550639242,0.053134329617023]],[[0.070067830383778,0.0609325543046,0.022675739601254],[-0.0093357907608151,-0.0049201394431293,-0.0047461027279496],[0.0043654078617692,-0.010515997186303,-0.016244176775217]],[[-0.036250684410334,0.027449101209641,-0.0052017099224031],[-0.027311652898788,-0.094923377037048,-0.0029041185043752],[-0.043239463120699,-0.013210081495345,0.026516821235418]],[[0.04450161755085,0.030371500179172,0.0079778470098972],[0.057897217571735,-0.035084392875433,-0.0069101052358747],[0.0047470335848629,0.0215436629951,0.033358015120029]],[[0.0030228241812438,0.039419565349817,-0.0030466520693153],[-0.026914538815618,-0.013948186300695,0.023618565872312],[-0.038106475025415,-0.018334235996008,0.0064495666883886]],[[-0.054543733596802,-0.055695593357086,0.063937693834305],[-0.021459050476551,-0.00033294927561656,-0.02465601451695],[0.086326360702515,-0.091962844133377,-0.028291095048189]],[[0.034636557102203,0.0068240878172219,-0.030004406347871],[0.014537760056555,-0.013416611589491,-0.014511595480144],[-0.052446313202381,-0.015563605353236,-0.019379889592528]],[[-0.022336212918162,0.011370646767318,0.046718254685402],[-0.062446482479572,-0.034287225455046,-0.012681411579251],[-0.030209664255381,0.0038169377949089,-0.015292592346668]],[[-0.036088850349188,-0.011810746043921,-0.04718691110611],[-0.018015364184976,-0.10659312456846,0.057222384959459],[-0.066978372633457,-0.028567275032401,0.038565181195736]],[[0.028756715357304,0.038590498268604,0.059212487190962],[-0.023104999214411,-0.0062360754236579,-0.034045267850161],[-0.014677973464131,-0.075461074709892,-0.01714139804244]],[[0.02927727997303,0.016134293749928,-0.022132586687803],[0.022141924127936,0.022043894976377,-0.028206966817379],[0.016618724912405,0.046758480370045,-0.041244465857744]],[[0.05943788215518,-0.079315334558487,-0.038747973740101],[-0.030672343447804,0.029847886413336,0.0210772883147],[0.0023363784421235,-0.064440496265888,0.00048328915727325]],[[0.052600935101509,0.0026420617941767,-0.010981734842062],[-0.046684466302395,-0.044045932590961,-0.020687833428383],[-0.047695141285658,0.033460669219494,0.046521078795195]],[[-0.030845638364553,0.017498008906841,0.0025415285490453],[-0.032046709209681,-0.0028651414904743,0.033734865486622],[-0.03465474396944,0.040505360811949,-0.046330075711012]],[[-0.041673541069031,0.014583544805646,0.073528274893761],[0.016018107533455,-0.012441919185221,-0.030457651242614],[-0.024861145764589,-0.019919661805034,-0.05577277392149]],[[-0.041571367532015,0.021098934113979,-0.079257801175117],[0.0059740203432739,-0.0077345250174403,-0.023741899058223],[-0.036890685558319,0.037630248814821,-0.0016971158329397]],[[0.036367405205965,-0.022255202755332,-0.023317685350776],[-0.10589332133532,-0.038579829037189,-0.030986003577709],[-0.010175955481827,0.11328118294477,-0.032883759588003]],[[0.0034324971493334,-0.046169340610504,0.049646489322186],[-0.036019511520863,0.032814964652061,0.027032501995564],[-0.080223947763443,0.02255048789084,-0.038849983364344]],[[-0.063206352293491,-0.0234848074615,0.017741562798619],[-0.013826197944582,0.046630103141069,-0.061347972601652],[-0.053372006863356,0.015329685993493,0.043456677347422]],[[0.020409651100636,-0.041094616055489,-0.014540245756507],[-0.037500645965338,0.0018167443340644,-0.026317426934838],[0.0094335786998272,-0.02698814868927,0.0092887077480555]],[[-0.09293770045042,-0.049872510135174,0.019257847219706],[-0.004264741204679,0.056604154407978,-0.042940348386765],[0.076746910810471,0.062826663255692,-0.11075031757355]],[[-0.026856815442443,-0.018839931115508,0.02232957072556],[-0.025347918272018,0.043269861489534,0.012811311520636],[0.025877768173814,-0.045801166445017,0.018568903207779]],[[-0.028011914342642,0.027631934732199,0.0088777160272002],[-0.019186725839972,-0.10061917454004,-0.041607338935137],[0.034312874078751,-0.025634115561843,-0.045687258243561]],[[-0.042090725153685,-0.059066165238619,0.034229885786772],[0.014518793672323,-0.0076709357090294,0.016674229875207],[-0.014904029667377,0.048471972346306,0.021185860037804]],[[0.0024836603552103,-0.042786076664925,0.036547932773829],[0.061276365071535,-0.0058546527288854,-0.035438232123852],[0.00069384480593726,-0.050019048154354,-0.085388734936714]],[[0.027256639674306,0.032012350857258,0.016231223940849],[-0.0063871899619699,0.02782940864563,0.0039545744657516],[0.042461164295673,-0.016945963725448,0.0047593787312508]],[[-0.076756343245506,-0.036746297031641,0.051623355597258],[-0.037176657468081,-0.0056934957392514,-0.13246580958366],[-0.0047433511354029,0.083016730844975,-0.10905905812979]],[[-0.066018722951412,0.0095622213557363,0.003796654054895],[0.0055254762992263,0.029467871412635,0.011053200811148],[0.0089741935953498,0.01173457223922,0.049998942762613]],[[-0.05746578797698,0.012740716338158,0.042108800262213],[-0.022245761007071,0.044267781078815,0.0061660846695304],[-0.031062306836247,-0.060029361397028,0.0081136245280504]],[[-0.028511140495539,0.023331085219979,-0.039009131491184],[-0.027451187372208,0.00047127297148108,-0.014187373220921],[-0.056652493774891,0.10774116963148,-0.046341557055712]],[[-0.076118908822536,-0.036868534982204,-0.026540422812104],[-0.070484392344952,-0.035284452140331,0.055767647922039],[-0.045384861528873,-0.012588324956596,-0.029759647324681]],[[-0.061832934617996,-0.015210415236652,-0.0065370202064514],[-0.030379176139832,-0.025430152192712,0.00027160119498149],[-0.06921711564064,0.068289041519165,-0.00070947903441265]],[[-0.015639577060938,-0.041096400469542,0.055180300027132],[-0.073605641722679,0.015238421037793,-0.06605426967144],[-0.040135655552149,0.00082955654943362,0.067881874740124]],[[0.0066598411649466,0.053769171237946,0.040544737130404],[0.0047918143682182,0.020863385871053,-0.036881346255541],[-0.039976004511118,0.077628418803215,0.045251093804836]],[[0.0083298059180379,-0.040858287364244,0.065561316907406],[0.057887148112059,-0.021050559356809,-0.051883168518543],[-0.00072498648660257,0.089456252753735,-0.080045759677887]],[[0.012153533287346,0.029974931851029,0.032523639500141],[-0.074504375457764,0.080410994589329,0.051943272352219],[0.0667579844594,-0.016370447352529,0.063701942563057]],[[0.036463961005211,-0.035966612398624,0.0092923482879996],[0.022139154374599,0.060028072446585,-0.074576452374458],[-0.078221008181572,-0.01704298146069,0.0039918385446072]],[[-0.02971369959414,0.043025799095631,-0.040206823498011],[-0.041931983083487,-0.0075345844961703,0.0041929702274501],[-0.02438529022038,0.076863467693329,-0.027932420372963]],[[-0.10515586286783,0.020199224352837,-0.0036670560948551],[-0.024310007691383,-0.0054305545054376,-0.050193086266518],[-0.00020632856467273,0.013101632706821,0.080257833003998]],[[-0.0013022925704718,-0.041550114750862,0.035612490028143],[-0.033146131783724,-0.0101014720276,0.0033658402971923],[-0.024572357535362,-0.0095334304496646,0.017745250836015]],[[0.026512771844864,-0.039558425545692,0.0033380554523319],[-0.018012365326285,-0.049177307635546,0.065192967653275],[-0.014039557427168,-0.068768344819546,-0.002900306135416]],[[-0.03763971477747,-0.048656303435564,-0.031871110200882],[0.052994463592768,-0.032116234302521,-0.002052100840956],[-0.021884990856051,0.066947676241398,-0.0074887434020638]],[[0.028503447771072,-0.028664238750935,0.020232170820236],[0.019192267209291,-0.064571164548397,0.02619850449264],[0.016773585230112,-0.0376329831779,-0.0024234037846327]],[[0.019860725849867,-0.035166464745998,0.041226726025343],[0.056328147649765,-0.023224806413054,0.030964808538556],[0.033789474517107,-0.023843517526984,-0.0049877492710948]],[[0.013762205839157,-0.029386268928647,0.045579552650452],[0.0058017908595502,0.0056288447231054,-0.018216596916318],[0.0040143937803805,0.054752241820097,-0.019447054713964]],[[0.014416418038309,0.064772896468639,-0.03686061501503],[-0.023066587746143,-0.06022647023201,-0.012918933294713],[0.049805041402578,-0.058114606887102,-0.0096868984401226]],[[-0.02122419886291,0.0035522333346307,0.063159167766571],[-0.011247598566115,-0.021602308377624,-0.04673133790493],[-0.017523046582937,0.016775157302618,-0.014738839119673]],[[0.028976801782846,0.0083537604659796,0.046792212873697],[-0.034929145127535,-0.028563631698489,0.0010259817354381],[0.083103820681572,-0.020891437307,0.036650251597166]],[[-0.01903361082077,-0.10210696607828,0.051144175231457],[-0.016104813665152,0.081859283149242,-0.041590567678213],[-0.0079325791448355,0.017849730327725,-0.04833297431469]],[[-0.0018901386065409,0.081182278692722,0.016303267329931],[0.00088875432265922,-0.046257890760899,0.031245581805706],[0.019165828824043,-0.012547236867249,-0.048279110342264]],[[0.00068010785616934,-0.0071517010219395,-0.056531976908445],[-0.028602600097656,-0.035299032926559,-0.052023630589247],[-0.038669288158417,0.026799485087395,0.027722848579288]],[[0.00051565520698205,0.049138970673084,0.045654840767384],[-8.4988052549306e-05,-0.03221932426095,-0.044377140700817],[0.0078207040205598,-0.060613892972469,0.071119494736195]],[[0.026693997904658,-0.0028566969558597,-0.020430134609342],[-0.025981767103076,-0.015390012413263,-0.014302181079984],[-0.073516897857189,-0.0085449311882257,0.075129203498363]],[[-0.077293112874031,-0.0054359729401767,-0.0037216152995825],[-0.031268376857042,0.0031215890776366,0.032462231814861],[-0.044290538877249,-0.063705451786518,0.023515280336142]],[[0.016226917505264,-0.0054226550273597,-0.022533047944307],[0.0031780896242708,-0.057042602449656,0.06052989512682],[-0.020377580076456,0.0091997208073735,0.0480069629848]],[[-0.016360998153687,-0.01087439339608,-0.066829092800617],[0.014470604248345,0.060254354029894,-0.033925719559193],[-0.049859054386616,-0.031918603926897,-0.040195439010859]],[[0.012164819054306,-0.041733860969543,0.011874256655574],[-0.03420290723443,-0.032098010182381,-0.022439152002335],[-0.0095794387161732,-0.0044815558940172,-0.021166911348701]],[[-0.028046844527125,0.042945332825184,0.044553183019161],[0.027816779911518,-0.036293886601925,-0.021306997165084],[-0.051070779561996,0.005734505597502,0.030072396621108]],[[-0.061241425573826,-0.027695138007402,-0.060712307691574],[0.03800293803215,0.01366420276463,0.05590146407485],[-0.056525506079197,-0.032742157578468,-0.045001402497292]],[[0.0073130908422172,0.033625233918428,-0.0088435700163245],[0.0083413161337376,-0.090896956622601,-0.025662835687399],[-0.019420463591814,-0.029197130352259,-0.0059910011477768]],[[-0.00019122633966617,-0.027244780212641,-0.031710974872112],[-0.025755845010281,0.008537576533854,0.056046642363071],[-0.028760833665729,0.05110714957118,-0.008115173317492]],[[0.011945471167564,-0.026326214894652,0.019500244408846],[-0.07568134367466,-0.019523750990629,0.046366982161999],[0.043181519955397,-0.025360433384776,0.01464671548456]],[[0.050421137362719,0.026622842997313,-0.0122593883425],[-0.071964249014854,-0.1154316291213,-0.0097964210435748],[0.014823940582573,0.025056269019842,-0.0068797944113612]],[[-0.028944721445441,-0.011354026384652,-0.057530667632818],[0.042912423610687,0.084765054285526,0.02231059782207],[-0.06362260133028,-0.037607941776514,-0.081670746207237]],[[-0.10173954069614,-0.038939602673054,-0.0071486136876047],[-0.119668610394,-0.047134891152382,-0.011043336242437],[-0.0385697260499,-0.014391155913472,0.00032860517967492]],[[-0.073881834745407,-0.018871657550335,-0.0065772938542068],[-0.0013244290603325,-0.03260312974453,0.011845887638628],[-0.068891033530235,0.030020399019122,-0.009734034538269]],[[-0.013133957982063,0.053333915770054,0.041912842541933],[-0.021002186462283,0.013147862628102,-0.0021829751785845],[-0.0051735513843596,0.030183542519808,-0.037003088742495]],[[0.028887527063489,-0.038198854774237,-0.035992525517941],[-0.035243656486273,-0.048097670078278,-0.033755496144295],[0.051279854029417,-0.011635625734925,0.035720240324736]],[[0.025636900216341,-0.054578103125095,0.0051751933060586],[0.040873184800148,-0.0035386472009122,-0.021154442802072],[-0.011485904455185,-0.029312932863832,-0.020931931212544]],[[0.015661757439375,-0.0033233514986932,-0.049279872328043],[-0.0072337198071182,0.042755763977766,-0.048257749527693],[-0.013668871484697,0.049110140651464,0.016643300652504]],[[-0.015597384423018,-0.037548374384642,0.060858022421598],[0.01270701084286,0.006284817121923,-0.030433291569352],[-0.052141986787319,0.012694071978331,-0.059090204536915]],[[-0.052072037011385,-0.035353805869818,-0.0029793612193316],[-0.03574001789093,0.0029926761053503,0.00086172774899751],[-0.018330920487642,0.025569258257747,-0.021428655833006]],[[0.03639118745923,0.036839716136456,-0.0098240459337831],[0.00094394426560029,-0.055773504078388,0.067316144704819],[-0.041382294148207,0.0056909723207355,0.046522419899702]],[[0.034882012754679,-0.040355123579502,-0.056919977068901],[0.025598213076591,0.014199282974005,0.038973368704319],[0.014859301969409,-0.05713402107358,-0.042292363941669]],[[-0.024174589663744,-0.060077369213104,-0.018842790275812],[0.044841442257166,0.056932151317596,0.045681431889534],[-0.042085006833076,0.040059342980385,-0.0040728808380663]],[[-0.0049002072773874,-0.035660732537508,-0.062864571809769],[0.061104908585548,-0.006836386397481,-0.033760510385036],[-0.019173074513674,0.021745905280113,0.053560800850391]],[[-0.094222173094749,0.0019278296967968,-0.0056282738223672],[-0.016520591452718,-0.0010252305073664,-0.022020904347301],[-0.014333890751004,0.00025537586770952,-0.027232555672526]],[[0.0053741335868835,-0.07923786342144,0.0024312811437994],[0.043971944600344,-0.038286227732897,0.049575742334127],[-0.0068503092043102,-0.03175139054656,-0.031009294092655]],[[-0.03128295764327,-0.074541911482811,0.026908382773399],[0.021792074665427,0.063164383172989,-0.0047027375549078],[0.049752749502659,-0.0289883967489,0.0014188430504873]],[[-0.0014589562779292,-0.0060677658766508,0.0082236556336284],[-0.02517893537879,0.026394905522466,-0.057863831520081],[0.032356072217226,-0.020473720505834,-0.03001569211483]],[[-0.0263153295964,0.017967322841287,0.025936340913177],[0.048362635076046,0.045385509729385,0.011141917668283],[-0.041650537401438,-0.053853038698435,0.0034669481683522]],[[-0.001765004475601,-0.0031750006601214,0.026455329731107],[-0.066436223685741,0.044327709823847,0.011162548325956],[-0.014853609725833,-0.036388020962477,0.045712478458881]],[[-0.014237904921174,0.0074822879396379,-0.030228294432163],[0.020371224731207,-0.13036759197712,0.011227569542825],[0.075488150119781,-0.01200130302459,-0.028025094419718]],[[-0.034768886864185,0.061402909457684,0.055127561092377],[-0.13020756840706,0.0099177490919828,-0.043153595179319],[-0.012521297670901,0.087824620306492,-0.052639458328485]],[[-0.060441259294748,-0.0046355798840523,-0.0024588836822659],[-0.03430062904954,-0.030811712145805,0.048199463635683],[-0.01255489140749,-0.036393355578184,-0.060456544160843]],[[0.02396360039711,0.0066116526722908,-0.032279316335917],[-0.0010994874173775,0.014487691223621,-0.027467472478747],[-0.080945037305355,-0.025166509672999,0.047024089843035]],[[0.0076973498798907,0.015257535502315,-0.054177049547434],[-0.01713353022933,-0.002028722083196,0.014314766041934],[-0.025972004979849,0.0024174835998565,0.022619493305683]],[[-0.010020585730672,0.0041194758377969,0.037131417542696],[0.021845739334822,0.053022172302008,-0.073899112641811],[0.063828095793724,-0.032754227519035,-0.0082823177799582]],[[0.022359957918525,0.00077203067485243,0.0036243447102606],[0.041108395904303,0.01047345995903,-0.0095594022423029],[-0.0094038583338261,-0.061189640313387,0.062816731631756]],[[-0.10051520913839,-0.013949315063655,-0.039056666195393],[0.023728791624308,-0.0073879789561033,0.000871108379215],[0.024589793756604,0.074154876172543,0.036286916583776]],[[-0.024005828425288,0.056732907891273,-0.0011249140370637],[0.013317224569619,-0.0032730035018176,-0.047669168561697],[0.024720938876271,-0.036343056708574,0.046193171292543]]],[[[0.0039304941892624,-0.020892878994346,0.0049441079609096],[0.049695380032063,0.031471628695726,0.054789889603853],[-0.032260052859783,0.027092067524791,0.056207202374935]],[[0.0061104246415198,-0.0014083462301642,0.00089065503561869],[0.021471047773957,-0.011022424325347,0.04021904245019],[-0.0083362692967057,0.090749844908714,0.0011330054840073]],[[0.033932086080313,0.059012714773417,-0.081203676760197],[0.074110858142376,0.034255512058735,0.09196649491787],[0.10692655295134,-0.04692293331027,0.042445082217455]],[[0.0023532288614661,0.0075184246525168,0.014039979316294],[-0.00079521629959345,0.0062511549331248,-0.025728853419423],[0.091726645827293,0.055556379258633,-0.044321522116661]],[[0.0053256922401488,-0.0016515660099685,0.054708264768124],[0.014298177324235,-0.039532747119665,-0.022671611979604],[-0.0097741950303316,-0.0095345769077539,0.055486723780632]],[[0.055802006274462,-0.0015342705883086,-0.024706985801458],[-0.013533532619476,0.0093438727781177,-0.016495322808623],[0.012815433554351,0.031189782544971,0.058174561709166]],[[-0.00091052305651829,0.017198337242007,-0.023606652393937],[-1.4135989658826e-05,0.03495330363512,-0.020782213658094],[0.0014880737289786,0.028208933770657,0.057120621204376]],[[-0.024240463972092,-0.032419040799141,-0.011153106577694],[-0.028037337586284,-0.024429142475128,0.0092481151223183],[-0.017345316708088,0.02306267246604,0.043136455118656]],[[0.021458547562361,0.013928223401308,0.03788798302412],[-0.069267727434635,-0.070736467838287,0.019069598987699],[0.024659944698215,0.059853196144104,-0.042741853743792]],[[-0.017755649983883,0.14791817963123,-0.039279110729694],[-0.051761131733656,-0.00045412621693686,-0.079758994281292],[0.062456667423248,0.10594851523638,0.098441369831562]],[[0.043983563780785,-0.06967730820179,0.016889963299036],[4.0618186176289e-05,-0.046775046736002,0.077212028205395],[0.015164405107498,-0.062154069542885,0.08864787966013]],[[0.074410475790501,0.048551607877016,-0.026002578437328],[0.057647120207548,-0.039789311587811,-0.044231940060854],[-0.06784176081419,0.043010488152504,0.04866236448288]],[[0.018293300643563,0.0047702873125672,0.078832484781742],[0.037340689450502,0.013473838567734,-0.014094940386713],[-0.016883846372366,0.057866133749485,0.03329212218523]],[[-0.028247671201825,0.020388096570969,0.059634763747454],[-0.025323441252112,-0.0084052374586463,0.060236189514399],[-0.0243910998106,0.051889814436436,-0.033886313438416]],[[0.095740795135498,-0.0053934748284519,0.037953227758408],[-0.017649818211794,0.14877034723759,0.10558712482452],[0.072564788162708,0.018452130258083,0.095517814159393]],[[-0.051120176911354,-0.012881032191217,-0.029747016727924],[0.02375522069633,0.0014548826729879,-0.024823691695929],[-0.073944993317127,-0.058659870177507,-0.045757062733173]],[[0.010145647451282,0.047452364116907,-0.036952555179596],[-0.060503110289574,0.040642682462931,0.039594396948814],[-0.025662010535598,0.025513017550111,-0.04315559566021]],[[0.03196719661355,0.039516534656286,-0.08340248465538],[-0.08333071321249,-0.049004573374987,0.024463394656777],[-0.04480454698205,-0.027309922501445,0.034103728830814]],[[0.053833708167076,-0.0028235269710422,-0.009233889169991],[0.044604852795601,-0.022778591141105,-0.0010653571225703],[-0.08044845610857,0.039592493325472,0.033085763454437]],[[-0.024448785930872,-0.0096047092229128,-0.016294285655022],[-0.0088196368888021,0.049926411360502,-0.010226801969111],[-0.0049166614189744,0.012353114783764,0.016586082056165]],[[-0.025648890063167,-0.072075486183167,-0.021006163209677],[-0.022733900696039,-0.02224906347692,-0.011815182864666],[-0.026211932301521,-0.011334918439388,0.04985174536705]],[[0.028032863512635,-0.066684454679489,0.058394834399223],[0.071580842137337,0.067600935697556,0.011315519921482],[0.12250098586082,0.10770496726036,0.089348442852497]],[[0.089067004621029,-0.038221251219511,-0.048642616719007],[-0.029085321351886,0.096565015614033,0.016609208658338],[0.033172778785229,-0.054267231374979,0.056263443082571]],[[-0.046224605292082,-0.032174345105886,-0.0029616542160511],[0.020307617262006,-0.062281236052513,-0.0024335351772606],[-0.086407229304314,-0.026072703301907,-0.020608264952898]],[[-0.042962461709976,0.013159007765353,0.0061573558486998],[0.03060626424849,0.07284464687109,-0.0028537588659674],[0.025294413790107,0.056630544364452,0.083436861634254]],[[0.10909655690193,0.0046459967270494,0.058914076536894],[0.010364095680416,0.046505998820066,-0.015352388843894],[0.025128398090601,0.015508865937591,-0.049804218113422]],[[0.030443297699094,-0.006659637670964,-0.0081621902063489],[0.047539610415697,-0.0047266450710595,0.064505353569984],[-0.052894070744514,0.095692813396454,0.029834685847163]],[[0.042597763240337,-0.064721435308456,0.0057250969111919],[-0.042849533259869,-0.0083367954939604,0.065965607762337],[0.040197297930717,-0.040816929191351,-0.01940786652267]],[[-0.020085075870156,0.056728649884462,0.015969647094607],[-0.032036509364843,0.070605367422104,-0.0051282118074596],[0.018711801618338,0.064191110432148,0.11943358927965]],[[0.097577378153801,0.016188435256481,-0.03718576580286],[0.0026151076890528,0.011353484354913,0.024827713146806],[0.04646410793066,0.076180808246136,0.065103940665722]],[[0.033032353967428,0.0014945878647268,-0.038152035325766],[-0.074858486652374,0.01144500169903,0.036141771823168],[0.082977563142776,-0.041840337216854,-0.0074915871955454]],[[-0.055924210697412,-0.040010906755924,0.029844405129552],[-0.014241655357182,-0.025696845725179,-0.059110719710588],[0.0047413660213351,-0.017513303086162,-0.0081963893026114]],[[0.045998673886061,-0.0045341718941927,0.037401758134365],[0.070370092988014,0.0061307083815336,-0.055518060922623],[0.07692889124155,0.076530858874321,-0.0054802861995995]],[[-0.057127635926008,-0.031066348776221,-0.046818293631077],[0.06825464963913,-0.011708160862327,0.031332444399595],[-0.054655879735947,0.10614345222712,-0.028786901384592]],[[0.050945371389389,0.016785645857453,-0.022135850042105],[0.034661386162043,-0.0093312487006187,0.06477427482605],[0.066657155752182,-0.029483359307051,-0.080489039421082]],[[0.037859056144953,-0.0038411803543568,0.031073614954948],[-0.057261999696493,-0.011567239649594,-0.01344732940197],[0.03644447401166,-0.033725220710039,-0.01652941852808]],[[0.0064675863832235,-0.047959569841623,-0.020571779459715],[-0.034203380346298,0.0072863809764385,-0.11760015040636],[0.058380346745253,-0.031301945447922,0.016632348299026]],[[0.0032630192581564,0.065639689564705,-0.0019132706802338],[0.042034715414047,-0.069068774580956,-0.01728961057961],[0.034442324191332,0.046457666903734,0.042623765766621]],[[0.048903811722994,0.10938039422035,0.043509274721146],[0.008291001431644,-0.010451151058078,0.020234052091837],[0.0069580865092576,0.049209836870432,-0.049023471772671]],[[-0.045455366373062,0.011527013033628,-0.011339926160872],[-0.041695918887854,-0.020996199920774,-0.017483074218035],[0.014039703644812,0.010267131961882,-0.016224633902311]],[[-0.028111023828387,-0.11502197384834,0.016066543757915],[-0.03949411213398,0.037772785872221,-0.02442186512053],[0.020687287673354,-0.038921773433685,-0.022808661684394]],[[0.019795147702098,0.022213712334633,0.011805823072791],[-0.0021552632097155,-0.0016251446213573,0.028963718563318],[0.041208162903786,0.019588969647884,0.030805857852101]],[[-0.015258378349245,0.058162786066532,0.089114479720592],[-0.012113117612898,0.073186174035072,-0.020563034340739],[-0.0080753043293953,0.028863061219454,-0.013735946267843]],[[0.081405632197857,0.06464709341526,-0.024054858833551],[0.044119585305452,-0.04681533947587,-0.026821510866284],[0.038972191512585,0.051749553531408,0.024774603545666]],[[0.048379603773355,0.067451022565365,-0.030244961380959],[-0.024956803768873,0.028392855077982,-0.003885290119797],[-0.021808257326484,0.018909329548478,0.057814203202724]],[[0.073404438793659,-0.028255339711905,0.031559512019157],[0.007215263787657,-0.042637638747692,-0.0097272461280227],[0.069380946457386,-0.016935436055064,0.043368052691221]],[[0.031779162585735,0.04105456918478,0.017857125028968],[0.016049977391958,-0.018041994422674,0.082840666174889],[0.060316912829876,0.00096181320259348,-0.031736735254526]],[[-0.023828096687794,0.051813513040543,0.064335286617279],[0.061077788472176,-0.019607665017247,0.036665327847004],[0.10589721798897,-0.012127170339227,-0.0039986553601921]],[[0.03868068382144,-0.099657714366913,0.059232641011477],[-0.0323681011796,0.060336053371429,0.027128174901009],[-0.051253985613585,-0.051348760724068,0.035432100296021]],[[0.028400493785739,-0.063735648989677,-0.026666762307286],[0.01789659820497,-0.00051974406233057,-0.062125310301781],[0.023049972951412,-0.051372405141592,-0.026794197037816]],[[-0.048601485788822,-0.0073368777520955,-0.0059963162057102],[-0.083205096423626,0.052979495376348,-0.11884217709303],[0.0081543251872063,0.032700669020414,0.039261598140001]],[[0.067546151578426,-0.0016301551368088,0.089116804301739],[-0.031027015298605,-0.048499763011932,-0.060900811105967],[0.055917907506227,-0.020096372812986,0.052563320845366]],[[-0.0093878284096718,0.040787998586893,0.041154097765684],[-0.013651668094099,-0.011120761744678,-0.093877136707306],[0.03789385035634,0.034782461822033,-0.051138337701559]],[[0.0063661993481219,0.029380051419139,0.041374564170837],[-0.10762883722782,0.069215580821037,0.0022820201702416],[0.12674356997013,-0.054997060447931,0.063958205282688]],[[0.0301931835711,-0.0016480636550114,0.065963409841061],[-0.017065584659576,0.047187127172947,0.046911265701056],[0.027549924328923,0.043189715594053,0.042210783809423]],[[-0.053490325808525,-0.044869188219309,5.3138042858336e-05],[-0.0095963412895799,-0.011685226112604,0.04346015676856],[0.0017655626870692,-0.04208767414093,-0.024535425007343]],[[0.074752300977707,0.005473499186337,0.035407211631536],[0.042717941105366,-0.021032445132732,-0.065291963517666],[-0.05137412250042,0.037524506449699,-0.039205204695463]],[[0.054081935435534,0.03268089145422,-0.024459164589643],[-0.015232101082802,0.0084545342251658,0.019182607531548],[-0.00061513297259808,-0.021989392116666,0.063384242355824]],[[0.039142433553934,0.060747761279345,0.05271852016449],[-0.018806489184499,0.015798447653651,0.059858132153749],[0.010281270369887,-0.13658374547958,0.010048241354525]],[[-0.0055977571755648,0.029646983370185,-0.067272379994392],[0.022510517388582,0.037231523543596,-0.026697160676122],[-0.029926495626569,-0.081233568489552,0.008486601524055]],[[-0.050087302923203,-0.022731713950634,0.042785245925188],[-0.013227771967649,0.034244582056999,0.037834268063307],[0.046423319727182,0.043865848332644,0.018897732719779]],[[0.030667688697577,-0.057077795267105,0.033966064453125],[-0.01084841042757,0.029091700911522,0.00070296070771292],[-0.012172748334706,0.031178910285234,-0.034223020076752]],[[0.00053761986782774,0.0049640680663288,0.0018485734472051],[-0.041982688009739,-0.02478058449924,-0.088522270321846],[0.0039902650751173,-0.017239661887288,0.045943103730679]],[[0.058628760278225,0.027539225295186,0.031976297497749],[0.079555861651897,0.018281158059835,-0.0076366243883967],[0.048007916659117,-0.018872141838074,-0.043409071862698]],[[0.082985877990723,0.016044959425926,-0.023677268996835],[0.0076120672747493,0.0038280207663774,-0.0094182761386037],[-0.012818747200072,0.0057225762866437,-0.054667003452778]],[[0.030901979655027,0.030576195567846,0.065633580088615],[0.065393358469009,-0.041218236088753,-0.017961358651519],[-0.017305729910731,0.040903504937887,0.016418339684606]],[[0.073186092078686,0.061417710036039,0.014438559301198],[-0.025283861905336,-0.00080869678640738,0.0054300790652633],[0.049465022981167,-0.040825821459293,0.039708871394396]],[[-0.019610391929746,0.061274796724319,0.036012537777424],[0.0023813208099455,-0.00026091380277649,-0.019098173826933],[0.035460095852613,0.060840267688036,0.012534892186522]],[[-0.053054682910442,0.10340736061335,0.0055724820122123],[0.050282090902328,-0.043389245867729,0.034205362200737],[0.033988881856203,-0.037014778703451,-0.0016297266120091]],[[0.01009089499712,0.055166721343994,-0.014350637793541],[0.0029345066286623,-0.023275349289179,0.070272177457809],[7.3532472015359e-05,-0.0022508623078465,0.02586255967617]],[[0.0014548865146935,0.010026558302343,-0.013135101646185],[-0.03054610081017,0.043609261512756,-0.11035580188036],[-6.0870377637912e-05,-0.013932475820184,0.054135572165251]],[[0.084138303995132,0.066100113093853,0.03974923864007],[-0.031974572688341,0.052372202277184,0.051522679626942],[0.053255651146173,-0.013473760336637,0.0099789584055543]],[[0.09411508589983,-0.05366437882185,-0.032162006944418],[-0.080037802457809,0.042602203786373,0.037604998797178],[0.070681765675545,-0.051266256719828,0.0307611618191]],[[-0.0045433640480042,-0.086990870535374,0.012520289048553],[0.02538063749671,-0.007931737229228,-0.016987519338727],[0.083390317857265,-0.035102341324091,-0.069870263338089]],[[-0.0010453083086759,0.01289467420429,-0.054074764251709],[0.085773609578609,-0.10249147564173,0.044888097792864],[-0.04242530465126,-0.02336654625833,0.05604962259531]],[[-0.0056840046308935,-0.0019853226840496,-0.068021059036255],[0.023118436336517,-0.065893590450287,0.012254744768143],[-0.0020425007678568,0.020527312532067,-0.038719601929188]],[[0.03056469745934,0.029986936599016,-0.065860740840435],[0.078546650707722,0.064934261143208,0.049515292048454],[-0.048567142337561,-0.047803487628698,-0.041595917195082]],[[0.016214966773987,0.046095725148916,-0.033206827938557],[-0.0015465231845155,-0.095566876232624,-0.0026580300182104],[0.014470294117928,0.043115045875311,-0.034319296479225]],[[0.0097316820174456,0.0095417611300945,-0.021944832056761],[-0.079999916255474,0.076753169298172,0.024728883057833],[0.045167103409767,0.047294989228249,0.020077800378203]],[[-0.037744045257568,-0.0051826653070748,0.010103732347488],[-0.052366364747286,0.00085816002683714,0.028519803658128],[-0.00093011651188135,-0.029651263728738,0.006047903560102]],[[0.04494372010231,-0.0020093305502087,0.0010891802376136],[0.024222975596786,0.067320518195629,0.017587795853615],[0.014633321203291,0.0054759257473052,0.0063449526205659]],[[-0.085158728063107,-0.0032688458450139,0.010802370496094],[0.030199674889445,0.062275350093842,-0.02729819715023],[-0.034320197999477,-0.11555322259665,0.0038582403212786]],[[0.039931174367666,0.049447782337666,-0.010813622735441],[0.011572157032788,-0.013267178088427,-0.015546935610473],[-0.029544029384851,0.039248127490282,-0.021284759044647]],[[-0.015799758955836,0.056657698005438,-0.069101206958294],[-0.010585165582597,0.066680043935776,0.0475949421525],[0.053394634276628,-0.073142841458321,0.0056594982743263]],[[-0.012841222807765,0.019897568970919,0.0073845307342708],[-0.013674122281373,-0.011307415552437,-0.050470285117626],[-0.014649617485702,-0.056027207523584,-0.064347565174103]],[[0.0028566101100296,-0.0075808395631611,0.07735675573349],[0.040209636092186,-0.042161114513874,-0.018774189054966],[-0.0061847404576838,-0.081775739789009,-0.025094948709011]],[[-0.019097901880741,-0.054718792438507,-0.021610660478473],[-0.048895910382271,-0.0051969843916595,0.0063252206891775],[-0.052764814347029,0.035617548972368,0.049470636993647]],[[-0.0086827557533979,-0.0094500007107854,-0.038245677947998],[0.039175096899271,-0.039316400885582,-0.019479734823108],[0.071706861257553,0.053073558956385,-9.8655591500574e-06]],[[0.048987302929163,-0.052932638674974,0.018204674124718],[0.11288509517908,-0.017207559198141,0.050956577062607],[-0.019183741882443,-0.14168719947338,0.038213051855564]],[[-0.038558300584555,0.036432448774576,-0.0046250126324594],[0.050866644829512,0.0050409459508955,0.032622177153826],[-0.038619048893452,-0.015106317587197,-0.012949088588357]],[[-0.016305739060044,-0.0047566834837198,0.025048658251762],[0.044762875884771,0.007701066788286,0.0014207722852007],[0.089140802621841,0.01943675801158,0.0074860146269202]],[[-0.016156772151589,-0.0047222184948623,-0.039770238101482],[0.027898460626602,-0.079243242740631,0.072571605443954],[-0.094997763633728,-0.10029077529907,-0.030386323109269]],[[-0.016281306743622,0.0015349888708442,-0.025711663067341],[0.062135118991137,-0.0098100556060672,-0.023723034188151],[-0.0055015441030264,0.029445867985487,0.064315438270569]],[[0.06638740748167,0.025879301130772,0.05822704359889],[0.027618272230029,-0.030284937471151,-0.013767243362963],[-0.010153785347939,0.0003685737028718,0.029379768297076]],[[-0.043100733309984,0.018078219145536,0.023172816261649],[0.024263169616461,0.087346449494362,0.042391639202833],[0.038176495581865,-0.08209066092968,-0.030979020521045]],[[-0.019603399559855,-0.045940186828375,-0.059728670865297],[-0.005172707606107,-0.039528258144855,-0.010408429428935],[-0.022068094462156,-0.00089630100410432,0.031510911881924]],[[-0.0083271758630872,0.00094622391043231,-0.014274060726166],[0.064891807734966,-0.03009925968945,-0.094266816973686],[0.046454697847366,0.035395443439484,0.041123203933239]],[[0.036809220910072,0.043352451175451,0.0051019517704844],[-0.03544731810689,0.010375336743891,-0.049107201397419],[0.043761041015387,0.0083312634378672,0.0049973037093878]],[[-0.0050436141900718,0.06492718309164,0.03086899407208],[-0.012194976210594,0.098243936896324,0.01256313174963],[0.01850013807416,0.09476512670517,-0.00029139686375856]],[[-0.014086366631091,-0.010469162836671,0.034863982349634],[-0.001481169834733,0.017716780304909,0.0026327115483582],[-0.028158923611045,-0.05036173760891,-0.0064996955916286]],[[0.026305504143238,-0.028282197192311,0.06340729445219],[-0.0048811137676239,-0.02450823225081,-0.037396773695946],[-0.040910266339779,-0.11565604060888,0.052200678735971]],[[-0.013356550596654,-0.044263422489166,0.007367895450443],[0.037169560790062,-0.021689152345061,-0.018379736691713],[0.052000645548105,0.011113984510303,-0.021421821787953]],[[-0.017882768064737,-0.0051280306652188,-0.034830179065466],[-0.0024290131404996,0.043512627482414,0.047253295779228],[0.077524624764919,0.0027489496860653,0.013839130289853]],[[-0.0098629454150796,0.052411209791899,-0.046196606010199],[0.0019452385604382,-0.031229881569743,-0.01779112778604],[-0.019825061783195,-0.060404658317566,0.031422860920429]],[[-0.024197110906243,0.094698332250118,-0.014847313985229],[0.014975749887526,-0.037426393479109,-0.0128722647205],[0.013259091414511,-0.0031106015667319,0.013359183445573]],[[-0.0053234226070344,0.03078687004745,0.058918338268995],[0.011357512325048,0.049828972667456,-0.047809835523367],[0.031212721019983,-0.012437895871699,-0.040696978569031]],[[0.042908266186714,-0.074426382780075,0.049876678735018],[0.087499931454659,0.0058058346621692,0.050439145416021],[-0.014641799032688,-0.031816158443689,-0.030475456267595]],[[-0.072244234383106,0.012236176989973,0.068457208573818],[-0.042749620974064,-0.084697715938091,-0.0074939643964171],[-0.11747413873672,0.0079464474692941,0.051769480109215]],[[0.023131685331464,-0.10974998027086,0.038443762809038],[-0.018425626680255,0.099680654704571,0.035711832344532],[-0.037212751805782,-0.0078531336039305,0.0056418520398438]],[[-0.0043889046646655,5.867553409189e-05,0.050334297120571],[0.023108225315809,0.036740604788065,0.042600464075804],[0.0043027498759329,-0.0011849468573928,-0.010457749478519]],[[0.027769340202212,0.026485020294785,-0.074041977524757],[-0.017639938741922,0.016072228550911,-0.018940439447761],[0.0087247639894485,-0.026224249973893,0.06895487010479]],[[-0.077324353158474,-0.075737044215202,-0.037253960967064],[-0.013327619992197,0.055421590805054,-0.029070658609271],[-0.028300201520324,0.013933555223048,-0.053542032837868]],[[-0.025271886959672,-0.048048358410597,-0.0094256363809109],[0.014610187150538,-0.011900634504855,-0.010463719256222],[-0.0016112520825118,-0.035026252269745,0.033490221947432]],[[-0.045174490660429,-0.034641951322556,0.034599203616381],[0.01121590193361,0.019486943259835,-0.07579043507576],[-0.022615713998675,-0.11106708645821,0.036655254662037]],[[-0.0093106906861067,-0.017641613259912,0.077798403799534],[0.054261680692434,-0.050992231816053,0.032251179218292],[0.020873118191957,0.021970305591822,-0.022596767172217]],[[0.034771129488945,0.002688268898055,0.05001999810338],[-0.012164803221822,0.026535075157881,-0.041217420250177],[-0.0026261466555297,0.07490961253643,0.056205376982689]],[[0.078395836055279,0.05437920987606,0.0007663729484193],[-0.025013128295541,-0.013617519289255,0.08815535902977],[-0.0022727705072612,0.10923489928246,0.0091219376772642]],[[0.051324971020222,-0.031640276312828,-0.021305644884706],[0.012593284249306,0.034893877804279,-0.00096067652339116],[0.055876955389977,0.0019940899219364,-0.0012791262706742]],[[-0.011808379553258,0.065231956541538,-0.016425540670753],[0.10101694613695,0.0099040828645229,-0.011027094908059],[-0.083314448595047,0.043162800371647,-0.027246363461018]],[[-0.04905104264617,-0.027300609275699,0.0053345034830272],[0.00075432489393279,-0.077863797545433,-0.076234355568886],[-0.026462847366929,0.0085599152371287,0.031220106408]],[[0.024580171331763,0.031246216967702,0.033552512526512],[-0.025000631809235,-0.03590239956975,-0.019244190305471],[-0.032388541847467,0.018145693466067,-0.019760239869356]],[[0.037786640226841,-0.043811418116093,-0.0033341725356877],[-0.01972158998251,0.024362348020077,-0.038883242756128],[0.043868131935596,0.023083481937647,-0.00089996476890519]],[[0.011403117328882,-0.0096969669684768,0.036822397261858],[-0.027419509366155,-0.057769827544689,-0.017834722995758],[0.041206065565348,0.072379745543003,-0.12740714848042]],[[0.023430690169334,-0.061557535082102,-0.0078249769285321],[0.027177644893527,0.042461983859539,0.047430731356144],[0.01806902140379,-0.069830901920795,0.00019980104116257]],[[0.043088410049677,-0.032407935708761,-0.023801509290934],[0.00050204060971737,-0.043805237859488,0.050285622477531],[-0.034461867064238,0.035034999251366,0.079717524349689]],[[-0.028608350083232,0.025984590873122,0.017235780134797],[-0.0092835044488311,0.053626388311386,0.043528746813536],[0.089833632111549,0.002038886770606,-0.03806534036994]],[[-0.0022082533687353,0.0043428628705442,0.0145428404212],[-0.034263581037521,-0.013305216096342,0.016488986089826],[0.073068268597126,-0.061340846121311,0.037356793880463]],[[0.0034110373817384,0.0075236307457089,-0.06187728792429],[0.054003681987524,-0.031702794134617,-0.024780550971627],[0.011195523664355,-0.02405851893127,0.074838690459728]]],[[[0.066935867071152,0.099917717278004,0.12758509814739],[0.060902815312147,0.090430416166782,0.048755962401628],[0.011039361357689,0.075020886957645,0.0034028962254524]],[[0.05270828679204,0.015826966613531,-0.0043735611252487],[-0.0017326881643385,0.0044346586801112,0.054422702640295],[0.014512113295496,0.0057586790062487,0.019367845728993]],[[-0.010342109017074,-0.043303247541189,-0.095375634729862],[0.024151895195246,-0.0098569756373763,0.0079243406653404],[-0.056883424520493,0.021077865734696,0.035792861133814]],[[0.074904471635818,-0.012457380071282,0.057182855904102],[-0.026596507057548,-0.018370622768998,-0.078313358128071],[0.039597809314728,-0.0069960015825927,-0.045256089419127]],[[-0.040551874786615,0.014873185195029,-0.003804981475696],[0.036499604582787,-0.068954929709435,0.047208249568939],[0.0093578416854143,-0.058241076767445,0.02324585057795]],[[-0.018535343930125,0.053591463714838,-0.049488063901663],[0.0080325156450272,-0.020126072689891,0.03756407648325],[-0.020990539342165,-0.064131051301956,0.060573671013117]],[[0.054388545453548,0.033092498779297,0.048153538256884],[0.092465445399284,-0.024630339816213,-0.13637487590313],[0.077807188034058,0.020194640383124,-0.012552637606859]],[[0.037299931049347,0.028478186577559,-0.082493476569653],[-0.015827791765332,-0.089635297656059,-0.017206681892276],[0.13150398433208,0.051617819815874,-0.15627218782902]],[[-0.036436848342419,0.016582921147346,-0.04453969374299],[-0.01952008344233,-0.043332532048225,0.041642393916845],[0.07508897036314,0.093347728252411,0.13169299066067]],[[0.15905065834522,0.084024660289288,0.1066203340888],[0.19875872135162,-0.01199659332633,0.04252628237009],[0.16934306919575,-0.014841292984784,0.10577341914177]],[[0.056073352694511,-0.021117137745023,0.047722220420837],[-0.006875938270241,0.060974206775427,-0.055774290114641],[0.040432821959257,-0.047746386379004,0.17597386240959]],[[0.042402517050505,0.0089354962110519,0.008214196190238],[0.081554099917412,0.026317212730646,0.01197013258934],[-0.026523469015956,0.080372855067253,0.11762209236622]],[[-0.093795090913773,-0.046630408614874,0.00047165085561574],[0.012739941477776,-0.0095879780128598,-0.018136169761419],[0.11905678361654,0.096457988023758,0.022605046629906]],[[-0.033328462392092,0.0028122127987444,0.11862008273602],[-0.0076187686063349,0.097349472343922,0.073699474334717],[0.048595901578665,-0.023988656699657,0.15388613939285]],[[0.16073291003704,0.17670406401157,0.0078673688694835],[0.27613067626953,0.15454025566578,0.18840892612934],[-0.035351138561964,0.18120577931404,0.25690299272537]],[[-0.033055383712053,-0.046692628413439,-0.043520599603653],[-0.080969169735909,-0.077263467013836,-0.13760477304459],[-0.084130108356476,-0.055232305079699,-0.025674657896161]],[[0.077203616499901,0.099045477807522,0.039878837764263],[-0.0058806906454265,0.020385673269629,0.0090532582253218],[-0.055643253028393,-0.047054134309292,-0.076342582702637]],[[-0.084354817867279,-0.086529433727264,-0.04559213668108],[-0.10316507518291,-0.014587729237974,-0.005331005435437],[-0.0031838954892009,0.020330734550953,0.034262198954821]],[[-0.070652022957802,-0.005056784953922,-0.069034330546856],[0.05165471881628,0.0091069033369422,0.006130488589406],[0.028207173570991,0.023497657850385,0.068416714668274]],[[0.088685043156147,0.012847462669015,0.0059686424210668],[0.043497428297997,-0.028517950326204,-0.067903205752373],[-0.012463653460145,-0.067322142422199,-0.010779816657305]],[[-0.02243035659194,0.012935614213347,-0.022198842838407],[-0.0049539525061846,-0.019854234531522,0.11969960480928],[0.014328519813716,0.10834861546755,0.14684329926968]],[[0.090893596410751,0.06175472214818,0.038477391004562],[0.011556607671082,0.1201184540987,0.03264881670475],[0.15297302603722,0.1364571005106,0.063241027295589]],[[0.017465595155954,-1.1261206964264e-05,-0.060007054358721],[-0.03843816369772,-0.019114600494504,0.030555030331016],[-0.041731305420399,0.13865441083908,-0.032792396843433]],[[-0.017936168238521,-0.042389005422592,-0.041060529649258],[-0.043170176446438,-0.03199103474617,-0.062420431524515],[0.12058324366808,0.097158461809158,0.035049602389336]],[[0.11720571666956,0.14801247417927,-0.0033869994804263],[0.028944777324796,0.018983824178576,0.059927377849817],[0.054309293627739,0.067872315645218,0.015202070586383]],[[-0.0059884577058256,-0.015427242033184,-0.030769659206271],[0.021683296188712,-0.064314670860767,0.069120906293392],[0.088218569755554,-0.030733415856957,-0.067873030900955]],[[0.035787999629974,-0.025770971551538,-0.062686547636986],[-0.012030196376145,0.0016970759024844,-0.054267734289169],[0.035818923264742,0.079862415790558,0.10796692967415]],[[-0.0082068610936403,0.023512398824096,0.011356210336089],[0.055951487272978,-0.028327928856015,0.030489316210151],[-0.041703574359417,0.076331838965416,0.093246825039387]],[[0.084863014519215,0.093301199376583,-0.0084112351760268],[0.12371949106455,-0.055613983422518,0.097625426948071],[-0.043885067105293,0.076046444475651,0.096885748207569]],[[-0.049299448728561,0.01259280461818,0.0055507924407721],[-0.028711812570691,-0.041510321199894,-0.034574594348669],[0.039993796497583,0.009927867911756,-0.073528192937374]],[[0.095554359257221,0.062337063252926,-0.031643446534872],[0.059490241110325,-0.01764053851366,-0.0093083279207349],[-0.031663808971643,-0.014909106306732,-0.044720411300659]],[[-0.015938291326165,0.053282257169485,-0.073320135474205],[0.049174595624208,0.05011285468936,-0.053188350051641],[-0.13041883707047,0.094885259866714,-0.059605326503515]],[[0.00056743231834844,-0.098302751779556,0.040215246379375],[0.077978946268559,0.012602237053216,-0.098283007740974],[0.023534843698144,0.13639710843563,-0.010452413000166]],[[0.064171679317951,-0.01467945985496,-0.019706774502993],[0.033418636769056,-0.013071659952402,0.0051281815394759],[0.0048050442710519,-0.015418382361531,0.0057976180687547]],[[0.072790838778019,-0.01937960088253,-0.079623512923717],[-0.031803719699383,0.021364636719227,0.023032927885652],[-0.069475345313549,-0.057867012917995,-0.012348081916571]],[[0.008100182749331,-0.012945901602507,-0.045198582112789],[-0.014815772883594,0.0043499255552888,-0.047381397336721],[0.0037353113293648,0.01126329600811,0.013756732456386]],[[0.029068384319544,-0.010555037297308,-0.050199247896671],[0.069194912910461,-0.017813626676798,0.0039093582890928],[-0.022970594465733,0.067090764641762,-0.038870181888342]],[[0.020792463794351,0.047807395458221,-0.046773623675108],[0.009112536907196,-0.081614755094051,-0.12472146004438],[-0.012871590442955,0.0089397262781858,0.028848432004452]],[[0.14762318134308,0.069607309997082,0.063787072896957],[0.07039500027895,-0.0093987705186009,0.010687796398997],[0.10883096605539,-0.039602003991604,-0.02497349306941]],[[-0.034537062048912,-0.017276581376791,-0.01863563619554],[0.079111106693745,0.017337406054139,-0.081533350050449],[0.0061052464880049,0.0032723471522331,0.078266598284245]],[[-0.061485882848501,0.045334115624428,0.015963846817613],[0.16872756183147,0.0069680958986282,-0.033598121255636],[-0.034708317369223,-0.08913742005825,0.072500377893448]],[[0.043569602072239,-0.038983389735222,-0.0068116295151412],[0.00037116068415344,-0.019636845216155,0.024821173399687],[-0.0072261923924088,-0.023990787565708,0.011369997635484]],[[-0.049270089715719,-0.051083292812109,0.03281632438302],[0.10710652917624,0.0042102942243218,0.073788851499557],[0.01819477789104,-0.07250889390707,-0.024051876738667]],[[0.052607864141464,0.0077415001578629,0.040162149816751],[0.076811008155346,-0.020008834078908,0.062697604298592],[0.03150549530983,0.034601788967848,0.13792870938778]],[[-0.0040502552874386,0.021152384579182,0.036279808729887],[0.032982207834721,-0.013396227732301,-0.074484340846539],[0.0051992018707097,0.0072810826823115,-0.01955814473331]],[[0.078288681805134,0.070563718676567,-0.023198112845421],[0.11430954933167,-0.026385279372334,-0.016435153782368],[-0.07077880948782,-0.020844921469688,0.088183671236038]],[[-0.012756342068315,0.01304067671299,-0.066368035972118],[-0.06933581084013,-0.042548753321171,0.028820475563407],[0.091031856834888,0.047907151281834,0.035871624946594]],[[-0.0042853443883359,0.085858277976513,0.058121737092733],[-0.032360732555389,0.13491760194302,0.047398079186678],[-0.01333930529654,0.095912173390388,0.032500490546227]],[[0.017323471605778,-0.026383211836219,0.15005260705948],[-0.003448681673035,0.0048040626570582,0.079834960401058],[0.065903373062611,0.017839467152953,-0.02698840200901]],[[0.03980203345418,0.079682178795338,-0.013884826563299],[-0.020408255979419,0.040568821132183,0.13287925720215],[0.10088036954403,-0.020774319767952,0.020367572084069]],[[0.031201768666506,0.087566450238228,-0.0067686317488551],[-0.062600858509541,-0.087814494967461,-0.038196638226509],[0.031637422740459,0.038292821496725,-0.080452419817448]],[[0.059249084442854,-0.0015539606101811,0.047227188944817],[-0.062448102980852,0.050341084599495,0.0079529117792845],[0.11859885603189,0.067135639488697,0.11484006047249]],[[-0.0082698445767164,-0.0057973186485469,0.061299309134483],[0.0020485005807132,0.03594196587801,0.028308151289821],[0.031394761055708,-0.0042732688598335,-0.0044839060865343]],[[-0.013675496913493,-0.009396793320775,0.025708369910717],[0.063306763768196,-0.022834846749902,-7.0077490818221e-05],[0.12717232108116,0.072676569223404,-0.0046884180046618]],[[-0.0034059062600136,0.039149064570665,0.021817971020937],[0.0051996386609972,0.052449218928814,0.022218992933631],[0.018720220774412,0.075004599988461,-0.0062385010533035]],[[0.012580331414938,0.034428082406521,-0.017244670540094],[0.0075872885063291,0.025070616975427,0.051206409931183],[0.024568997323513,-0.017370147630572,0.023349409922957]],[[-0.071850545704365,-0.028198977932334,0.020349705591798],[0.033507045358419,-0.019695147871971,-0.012291419319808],[0.080466605722904,-0.050959594547749,0.052318975329399]],[[0.06181912124157,0.00060705322539434,-0.11638495326042],[0.047782421112061,0.040400516241789,-0.11479570716619],[0.012921368703246,-0.039153598248959,-0.053526174277067]],[[0.037204898893833,0.061784751713276,0.0029579394031316],[0.027326179668307,0.13289014995098,0.06831406056881],[0.070161230862141,0.14365068078041,0.15977703034878]],[[0.00081617577234283,0.14831854403019,-0.088074706494808],[0.011811707168818,0.029457213357091,0.00043881236342713],[0.01566956192255,0.017396412789822,0.065837368369102]],[[-0.015858810395002,0.06372793763876,-0.020069425925612],[-0.016119543462992,0.11868931353092,0.093883328139782],[-0.093366667628288,-0.045938227325678,-0.019675435498357]],[[-0.05268919095397,-0.023834889754653,-0.016673916950822],[-0.013187658973038,0.029423786327243,0.01186634413898],[0.003565871855244,-0.035091355443001,0.063673838973045]],[[-0.033268298953772,0.0073365359567106,-0.052641659975052],[-0.0067622032947838,-0.066839016973972,-0.073234125971794],[0.0050645447336137,-0.033477313816547,-0.036713872104883]],[[0.035981070250273,-0.042783409357071,-0.0085136163979769],[0.092855423688889,-0.052888635545969,0.079370491206646],[-0.016464589163661,-0.025370115414262,0.023960683494806]],[[-0.061780262738466,0.015077687799931,0.063770458102226],[0.031447965651751,-0.027095634490252,0.03721521794796],[-0.043448597192764,0.057566899806261,-0.011273566633463]],[[0.065781489014626,-0.0095532154664397,-0.028217790648341],[-0.0033951334189624,0.00039467547321692,-0.015481256879866],[-0.049816749989986,0.024872485548258,0.013024481013417]],[[0.072796918451786,0.13760857284069,0.074640303850174],[0.12154724448919,0.059741601347923,0.042957045137882],[0.019850052893162,0.0078643225133419,0.082750998437405]],[[0.096634104847908,0.065055780112743,-0.04084550589323],[-0.0090291975066066,-0.062392260879278,-0.048076570034027],[-0.026864135637879,-0.049828242510557,-0.013856808654964]],[[-0.032173912972212,-0.03931563347578,0.01845327205956],[7.0281632361002e-05,0.0089245028793812,-0.011601668782532],[-0.035144198685884,-0.071500979363918,0.086103729903698]],[[-0.038277838379145,0.036956135183573,0.044558141380548],[0.033230695873499,0.048104576766491,-0.0061298119835556],[0.05171562731266,0.062922216951847,-0.044728685170412]],[[0.0032050288282335,0.023522552102804,-0.034026801586151],[-0.012203271500766,0.10437474399805,0.013298157602549],[0.0926294028759,0.12755000591278,0.026036731898785]],[[0.079942181706429,-0.037292432039976,-0.036856546998024],[0.031374763697386,-0.034114256501198,0.016872346401215],[0.0021560105960816,0.08751367777586,0.20253865420818]],[[-0.011352769099176,0.0053752958774567,-0.097395732998848],[-5.0962491513928e-05,0.021703479811549,0.014868297614157],[-0.010832746513188,-0.014871513471007,0.043870162218809]],[[0.037895008921623,0.030302595347166,0.016345029696822],[0.12295654416084,0.055615600198507,0.09448454529047],[-0.027443176135421,0.030204208567739,0.080613344907761]],[[-0.042606979608536,0.027780609205365,-0.069988958537579],[-0.00041688472265378,-0.0062856888398528,-0.032627165317535],[0.068466663360596,0.0020687284413725,0.041719194501638]],[[-0.009955920279026,-0.0035641524009407,-0.044996842741966],[0.024648752063513,-0.065018512308598,-0.030544461682439],[0.059440594166517,-0.031190980225801,-0.12092640250921]],[[-0.080147460103035,-0.053707167506218,0.081780523061752],[-0.030652765184641,-0.0030254879966378,0.011673266068101],[0.0117616225034,-0.027040420100093,-0.011333549395204]],[[0.02915701828897,0.012534197419882,0.11190701276064],[0.038067869842052,0.045532289892435,-0.0066676717251539],[-0.010633517988026,0.073692977428436,0.044595796614885]],[[0.088711366057396,-0.036408524960279,-0.028051093220711],[-0.057658936828375,-0.020667525008321,-0.061082549393177],[0.095543965697289,-0.022677766159177,0.036048032343388]],[[-0.01384689565748,0.085459649562836,0.090052470564842],[0.013915361836553,-0.059967696666718,-0.044823087751865],[-0.00084786053048447,0.019144810736179,0.074834443628788]],[[0.02160931378603,-0.001951671903953,0.075691893696785],[0.0076105077750981,0.058909807354212,0.018272776156664],[-0.031641833484173,-0.021424070000648,-0.044479258358479]],[[-0.0058657312765718,-0.054195456206799,-0.036556154489517],[-0.026650626212358,-0.051328767091036,-0.067618384957314],[0.0270856898278,0.016604371368885,0.091856151819229]],[[-0.051278579980135,-0.013571186922491,0.071976043283939],[-0.023920828476548,-0.019050639122725,-0.033545538783073],[0.075986966490746,0.074357643723488,-0.0345194414258]],[[-0.11049917340279,0.048411581665277,-0.062082298099995],[-0.0019475368317217,-0.040749747306108,-0.076385021209717],[0.11690565943718,0.040506366640329,-0.024663569405675]],[[-0.035951808094978,0.0074516697786748,0.072649508714676],[0.015207350254059,-0.17103719711304,-0.075016595423222],[-0.01472117099911,0.019783420488238,-0.060127969831228]],[[0.065119564533234,0.011865354143083,0.10279509425163],[0.07319151610136,-0.028565715998411,0.033022411167622],[0.052554842084646,0.03408170118928,0.05741723626852]],[[0.0036481257993728,0.069783292710781,0.067321315407753],[0.062129806727171,0.062206406146288,0.063530407845974],[-0.047546740621328,0.0074294623918831,0.045240893959999]],[[0.069669939577579,0.0097890561446548,0.045874454081059],[0.035725098103285,0.11704125255346,0.070033244788647],[-0.055576425045729,0.045995343476534,0.048522870987654]],[[-0.0073212464340031,0.03504604101181,0.058786645531654],[-0.042561996728182,-0.011970230378211,-0.049874097108841],[0.072031557559967,-0.022621441632509,-0.011841487139463]],[[-0.045099183917046,0.062479358166456,0.060836713761091],[0.15648813545704,0.097292967140675,0.11567970365286],[0.044522143900394,0.04689560085535,-0.0039157113060355]],[[0.15024012327194,0.050191756337881,-0.043421976268291],[0.064382120966911,0.11007446795702,-0.019344506785274],[0.099576644599438,-0.029936434701085,0.2288900911808]],[[0.013477492146194,0.076370358467102,-0.045177891850471],[0.044572096318007,0.066935457289219,-0.0020113482605666],[0.03047788143158,-0.033659655600786,-0.0098282312974334]],[[-0.0093090320006013,0.015697073191404,0.039628237485886],[-0.034365616738796,0.048032455146313,0.0023324047215283],[0.020614866167307,0.014200002886355,-0.042597554624081]],[[0.051875047385693,0.011827128939331,-0.067492909729481],[0.037555817514658,0.10638178139925,0.077995896339417],[0.04594362154603,-0.0021089566871524,0.030905513092875]],[[-0.014281715266407,0.0034047272056341,0.077367059886456],[0.008666536770761,0.052362814545631,0.051097597926855],[-0.015977555885911,-0.09367972612381,-0.0074758278205991]],[[0.058140691369772,0.086539842188358,-0.033185057342052],[0.040247060358524,-0.12054324895144,0.0051698083989322],[0.038726590573788,0.021243074908853,-0.082162521779537]],[[0.014370284043252,0.012270543724298,0.093292914330959],[0.064945980906487,-0.025076918303967,-0.032198525965214],[0.093224361538887,0.02248296327889,0.014602866955101]],[[0.061400476843119,0.079382501542568,0.066455081105232],[0.18550896644592,0.098772354424,-0.0091063464060426],[0.063621282577515,0.018801048398018,-0.10438023507595]],[[-0.045761879533529,-0.009591837413609,-0.027434395626187],[-0.031882029026747,-0.02178131043911,-0.046677000820637],[0.13239197432995,0.086190775036812,0.019318895414472]],[[0.064120694994926,0.10735257714987,0.021107459440827],[0.012934827245772,-0.073891386389732,-0.07969968020916],[0.041962664574385,-0.10988830029964,-0.056648183614016]],[[-0.1098659709096,-0.010407875292003,-0.13647335767746],[0.048334416002035,-0.031771667301655,-0.039057150483131],[0.080595538020134,0.067131876945496,0.02710260078311]],[[0.089476868510246,0.011076522991061,0.045769803225994],[0.10588378459215,0.10403694957495,0.060797825455666],[-0.0016229946631938,0.071384713053703,-0.028559692203999]],[[0.039415493607521,-0.0060544745065272,-0.037581536918879],[-0.0068133031018078,0.013710572384298,0.017520304769278],[0.069679722189903,-0.039257861673832,0.14563553035259]],[[0.010627763345838,0.027239218354225,-0.010768320411444],[-0.031193232163787,-0.060012988746166,0.034826587885618],[0.056693986058235,-0.065228834748268,-0.082449808716774]],[[0.045378010720015,0.056364130228758,0.022910008206964],[0.0065266517922282,0.076165720820427,0.033848453313112],[0.13233554363251,-0.00015110496315174,0.048849545419216]],[[0.085039421916008,-0.0020464544650167,-0.013509444892406],[0.049556314945221,0.0013730174396187,0.016749732196331],[0.0010371309472248,-0.0057442770339549,-0.065649338066578]],[[-0.02440501563251,0.046208072453737,-0.020622350275517],[0.080047070980072,0.032606814056635,-0.016596276313066],[0.071394465863705,-0.05005943402648,0.010019709356129]],[[-0.11150614917278,-0.051082640886307,0.03071310557425],[0.078105114400387,-0.035570446401834,-0.017780594527721],[0.0060323355719447,0.067355923354626,0.13620333373547]],[[0.004394952673465,0.048582345247269,-0.059287823736668],[0.10574670881033,0.048469066619873,-0.032964572310448],[0.09722001850605,-0.016002871096134,0.053298957645893]],[[-0.15333707630634,-0.063975803554058,-0.03249092400074],[0.019882159307599,0.070820495486259,0.0243462882936],[0.16343674063683,0.018491936847568,0.026995416730642]],[[0.024833992123604,0.12539736926556,-0.044462069869041],[0.075836449861526,0.03334391489625,-0.065742574632168],[-0.12024103105068,-0.051732569932938,0.045862305909395]],[[0.077703833580017,-0.059417467564344,0.053559809923172],[0.05508478730917,0.054174084216356,-0.10628005862236],[-0.092219814658165,0.0027720564976335,0.10718777030706]],[[0.10982196033001,-0.019526468589902,-0.040474213659763],[0.058527011424303,-0.0054077305831015,-0.04203025624156],[0.027464170008898,0.0068409321829677,-0.0098765837028623]],[[-0.096899405121803,-0.14499740302563,0.047342985868454],[-0.039827775210142,0.015736144036055,-0.038807518780231],[0.020613770931959,0.12026756256819,-0.023662256076932]],[[-0.02600653655827,0.016288422048092,0.00028172045131214],[0.041646737605333,0.052628196775913,-0.097775310277939],[0.0005726701929234,-0.069424793124199,0.075661644339561]],[[0.036885526031256,0.0098543297499418,0.035424161702394],[0.080276995897293,-0.058167338371277,0.02504257299006],[0.099189504981041,0.10452882945538,0.12401951104403]],[[-0.017748333513737,-0.016907604411244,0.073417194187641],[0.069757595658302,0.089201413094997,0.12444038689137],[0.11005860567093,0.13340497016907,0.064788244664669]],[[-0.017380712553859,0.055506967008114,-0.087493382394314],[-0.10445930808783,0.0052116685546935,-0.031103435903788],[0.027356522157788,0.051104348152876,0.069344565272331]],[[-0.014486214146018,-0.055874109268188,-0.018266646191478],[0.030788354575634,-0.040019828826189,0.0055868253111839],[0.025946291163564,0.0076245316304266,0.099015444517136]],[[-0.10136662423611,-0.06208087131381,0.029052181169391],[0.018154349178076,-0.098165161907673,-0.022488456219435],[0.0399214848876,-0.035590946674347,-0.076287686824799]],[[-0.013316042721272,0.079130813479424,-0.00071122421650216],[0.015338766388595,0.024849770590663,-0.049685295671225],[0.12444720417261,0.031829666346312,-0.042275194078684]],[[-0.06339955329895,0.068262696266174,-0.10791253298521],[0.074971817433834,0.10419809818268,-0.0056090764701366],[0.062373798340559,-0.040858015418053,0.0046185841783881]],[[-0.046555899083614,-0.010492407716811,0.042588468641043],[0.030440852046013,-0.038917876780033,0.010018127970397],[-0.011886320076883,-0.040576480329037,0.061285723000765]],[[0.022931510582566,0.029347201809287,-0.078753925859928],[0.031620249152184,-0.013630121015012,-0.014851826243103],[0.01089655701071,-0.03492172062397,-0.050358593463898]],[[-0.022242210805416,-0.038159381598234,-0.039420455694199],[0.061933152377605,0.094430506229401,0.021218992769718],[0.029634658247232,-0.0010660799453035,0.03840458765626]],[[0.079938039183617,-0.042299583554268,0.052236698567867],[0.041342504322529,-0.014110316522419,0.0036161781754345],[0.069753177464008,0.058675292879343,-0.038904245942831]],[[0.027339726686478,0.051392827183008,-0.043293077498674],[-0.044184371829033,0.037399794906378,-0.002992000663653],[0.14205388724804,0.009625650011003,-0.057214919477701]],[[-0.033167324960232,-0.057245541363955,-0.080104842782021],[0.0015967185609043,-0.012978059239686,-0.051433835178614],[-0.013432210311294,0.01926726847887,0.020131712779403]]],[[[-0.01316118426621,-0.035156551748514,0.026613004505634],[0.062209784984589,-0.026288459077477,0.047690309584141],[-0.041568581014872,0.046034093946218,-0.064453154802322]],[[-0.041660506278276,-0.04885009303689,-0.089504443109035],[-0.019821917638183,0.010222639888525,0.064647302031517],[-0.0012841472635046,0.015143775381148,-0.055434983223677]],[[0.030028067529202,-0.004836761392653,-0.012607510201633],[-0.027691151946783,-0.058822184801102,-0.0042810505256057],[-0.060267861932516,-0.013575254008174,0.012804872356355]],[[-0.0032391031272709,0.035730179399252,-0.078056588768959],[-0.02913267724216,0.012146920897067,0.019562218338251],[0.0077744987793267,-0.028534559533,-0.035671602934599]],[[0.014612142927945,-0.039396572858095,-0.045474622398615],[-0.080262809991837,0.052112836390734,-0.03857284039259],[0.025247847661376,0.027541760355234,-0.08210826665163]],[[0.018690614029765,0.025911571457982,-0.015717722475529],[-0.005136891733855,0.054959982633591,-0.033823277801275],[0.053732790052891,0.024555029347539,-0.015443681739271]],[[-0.039832971990108,0.010721658356488,0.049763701856136],[-0.026454955339432,0.052591852843761,-0.030213402584195],[-0.037793233990669,-0.0075645558536053,0.024950113147497]],[[0.061959989368916,0.011433888226748,-0.0082741770893335],[0.00026896712370217,0.003253708826378,0.035772547125816],[0.0061549008823931,0.009261847473681,-0.096737004816532]],[[0.086623303592205,0.065008766949177,0.030083876103163],[0.01699579320848,0.062983341515064,0.03402591496706],[-0.044263888150454,-0.013262370601296,-0.035090371966362]],[[-0.025006091222167,-0.018053662031889,-0.0026604372542351],[0.04926636070013,-0.0035992648918182,0.044312588870525],[-0.0089684277772903,-0.019637923687696,-0.026221452280879]],[[0.050027120858431,-0.077969133853912,0.0097847618162632],[-0.075769156217575,0.0047575039789081,-0.04117165133357],[0.018893362954259,0.0224440228194,-0.018605343997478]],[[0.0046388655900955,0.0015588857932016,0.055371724069118],[0.10600325465202,0.057666625827551,0.040217410773039],[0.016426626592875,-0.020723583176732,0.017648046836257]],[[0.012246210128069,0.026534775272012,0.013628725893795],[-0.013858230784535,0.051520846784115,0.021221259608865],[0.013365629129112,-0.044788099825382,-0.0098780887201428]],[[-0.029172424226999,-0.011977177113295,-0.018137706443667],[-0.036896865814924,0.056573871523142,-0.071426667273045],[0.063907310366631,0.0059265419840813,-0.025019573047757]],[[0.017763800919056,-0.066255114972591,-0.079239867627621],[-0.0078125679865479,0.058561664074659,0.1013920083642],[0.069680541753769,-0.016217404976487,0.071429312229156]],[[-0.015498582273722,-0.099791698157787,-0.047478459775448],[0.01420050766319,0.041946180164814,0.02418565005064],[-0.026138227432966,0.019605230540037,-0.018130328506231]],[[0.042066317051649,0.055444989353418,-0.0013022199273109],[-0.014874703250825,-0.068584382534027,0.016172163188457],[-0.040601726621389,-0.052311547100544,-0.0094718392938375]],[[-0.02767201513052,-0.02035142108798,0.039023663848639],[0.059970833361149,-0.064587466418743,-0.0074733234941959],[0.066478326916695,-0.046030662953854,-0.050350446254015]],[[0.023995961993933,-0.055332038551569,-0.025754084810615],[-0.0035700737498701,-0.023150630295277,0.021986681967974],[-0.010516588576138,-0.030551198869944,0.056755978614092]],[[0.029421139508486,-0.015924200415611,0.025397321209311],[-0.0055747078731656,0.0027850652113557,0.068371616303921],[-0.017390565946698,-0.056617259979248,-0.080719493329525]],[[-0.085198223590851,-0.066241182386875,0.0240857899189],[-0.070429369807243,0.0062140231020749,-0.04812653362751],[-0.0090996101498604,-0.047148980200291,0.025007231160998]],[[-0.016630606725812,0.0088863708078861,-0.032783396542072],[0.061406992375851,0.097994491457939,0.055656760931015],[-0.05029983073473,0.058657936751842,-0.017522186040878]],[[0.018638441339135,-0.091408543288708,0.029534418135881],[0.014210985042155,0.058551598340273,0.090930253267288],[0.0057006757706404,-0.051751803606749,-0.054217528551817]],[[0.024023121222854,-0.073111943900585,0.035260491073132],[-0.040188513696194,-0.030385620892048,-0.015291478484869],[0.018464479595423,-0.043250903487206,0.017150454223156]],[[0.044336620718241,-0.065181255340576,0.023104526102543],[0.045778620988131,0.014534303918481,-0.064260609447956],[0.029090827330947,0.046200376003981,0.057049762457609]],[[0.071221984922886,-0.032621052116156,-0.013172594830394],[0.033139329403639,0.034262303262949,-0.006834473926574],[-0.042858969420195,-0.0060037225484848,-0.072851419448853]],[[0.0079398080706596,-0.029982455074787,0.0059032919816673],[0.043305870145559,-0.02508096024394,-0.023634159937501],[-0.019135769456625,0.00024202815257013,-0.016940103843808]],[[0.0024019835982472,0.089168228209019,0.034195404499769],[0.012457633391023,-0.0187067091465,-0.044253528118134],[-0.077333383262157,-0.01777938939631,0.015004522167146]],[[0.0042257755994797,0.039038710296154,0.036947503685951],[0.012189846485853,-0.021226938813925,-0.025164552032948],[-0.10040126740932,0.022042291238904,-0.007451226003468]],[[-0.035021785646677,-0.014179320074618,-0.042171467095613],[0.0020020711235702,-0.0081323608756065,0.052228175103664],[0.028133053332567,0.0095872888341546,0.028295766562223]],[[-0.046977359801531,-0.04581668227911,0.051855124533176],[0.0063098832033575,-0.049983400851488,0.0020703843329102],[0.0057472139596939,-0.0078913643956184,0.0079070515930653]],[[0.018324756994843,0.048029575496912,0.039901625365019],[-0.057601980865002,-0.036401402205229,-0.049556076526642],[-0.0021220198832452,0.038827773183584,-0.095414765179157]],[[0.025070618838072,0.043251696974039,0.024398481473327],[0.046371322125196,0.0078655406832695,0.0012934684054926],[0.062370732426643,0.045624177902937,-0.041259489953518]],[[0.019760176539421,-0.039139427244663,-0.038874614983797],[-0.030875068157911,0.006370437797159,0.0061171813867986],[0.053318932652473,0.028242537751794,0.031365182250738]],[[-0.02832699380815,-0.024263489991426,-0.022946666926146],[0.019542707130313,0.037026222795248,0.039071004837751],[-0.087986275553703,0.0014166216133162,-0.028585005551577]],[[-0.060114752501249,0.011072964407504,-0.010501639917493],[0.038967706263065,-0.038772225379944,-0.038874976336956],[0.034652289003134,0.061094660311937,-0.0060644475743175]],[[-0.0038110625464469,-0.04108189791441,-0.047114811837673],[0.027906073257327,-0.085689581930637,-0.019785650074482],[0.008175672031939,0.011349188163877,-0.040250886231661]],[[-0.091511532664299,0.022445084527135,-0.024821544066072],[-0.060024209320545,-0.10404310375452,0.012283679097891],[0.019113250076771,0.0088874325156212,-0.014488434419036]],[[-0.00010954117169604,-0.025576457381248,0.033262077718973],[0.057649340480566,0.025634447112679,0.037673756480217],[-0.04168264195323,0.017783138900995,0.0026789752300829]],[[-0.073739089071751,0.033589124679565,-0.056193698197603],[0.013080012053251,-0.040009673684835,-0.013939107768238],[0.019106360152364,-0.024247333407402,-0.030450666323304]],[[0.029025318101048,0.043665438890457,-0.0005627057980746],[-0.044390089809895,0.0015847943723202,-0.029436897486448],[0.07213406264782,0.0015668519772589,0.047127015888691]],[[-0.0089935967698693,0.026660026982427,7.403374183923e-05],[0.0036312497686595,0.0012647478142753,0.058912049978971],[-0.017008112743497,0.028122609481215,-0.0066924653947353]],[[-0.043749377131462,-0.0031834512483329,0.000820217654109],[0.028140742331743,-0.019753575325012,-0.021520715206861],[0.0036362803075463,0.046696461737156,-0.046557180583477]],[[-0.024397019296885,-0.010318580083549,0.025595918297768],[0.025441205129027,-0.081755042076111,-0.013843533582985],[0.011716870591044,-0.040416572242975,-0.038302049040794]],[[-0.022639775648713,0.050213299691677,-0.022532146424055],[-0.020380819216371,-0.034417726099491,-0.044304497539997],[0.044883895665407,0.044262267649174,0.062542088329792]],[[-0.11190885305405,-0.035319697111845,-0.068066708743572],[-0.020913794636726,0.0072956695221364,-0.028627391904593],[-0.027112809941173,-0.011873258277774,-0.036805115640163]],[[-0.054523281753063,0.024452460929751,-0.046460662037134],[-0.04045781493187,0.0053734136745334,-0.036546904593706],[-0.011384355835617,0.026508556678891,-0.001179680461064]],[[0.050563488155603,-0.0086000906303525,0.094448044896126],[-0.0043200976215303,-0.039898455142975,0.020705467090011],[0.041479177772999,0.054087206721306,-0.065502636134624]],[[-0.067145861685276,0.034016724675894,0.035283230245113],[-0.014282423071563,-0.12885269522667,0.027486184611917],[0.021328799426556,0.033599961549044,-0.014296418987215]],[[-0.042121630162001,-0.022926867008209,-0.026143658906221],[0.0064308969303966,-0.017438912764192,0.058514688163996],[0.0099687026813626,0.023700242862105,-0.0068309917114675]],[[-0.020090395584702,0.070467628538609,-0.062884464859962],[-0.033006895333529,-0.081913307309151,-0.023187501356006],[0.067761495709419,0.028010845184326,0.031339280307293]],[[-0.018356977030635,0.0041736490093172,0.04180384427309],[0.010055715218186,-0.013187971897423,-0.0042810286395252],[0.051232557743788,0.0079974243417382,0.031755328178406]],[[-0.013835639692843,-0.059448163956404,-0.074989102780819],[-0.043205361813307,-0.018398387357593,-7.0079026045278e-05],[-0.018978478386998,-0.010895977728069,0.0060920733958483]],[[-0.03937304764986,-0.036515843123198,-0.0019486609380692],[-0.064437352120876,0.022886697202921,-0.033623836934566],[0.012389790266752,-0.00075921753887087,0.085608407855034]],[[0.014792691916227,0.031418513506651,-0.0037712163757533],[-0.047933209687471,-0.028632679954171,-0.071231983602047],[-0.059523433446884,0.019700299948454,-0.019478186964989]],[[-0.010990053415298,0.0050310003571212,0.096847824752331],[0.023114601150155,-0.038863305002451,-0.090236470103264],[0.08337864279747,-0.036666855216026,-0.012059459462762]],[[-0.051418028771877,0.062111496925354,-0.01078731380403],[0.034811224788427,-0.0010693816002458,0.00044390890980139],[-0.026045629754663,-0.0086194239556789,-0.048149839043617]],[[0.03632003068924,0.033895261585712,-0.048313103616238],[-0.020011451095343,-0.0015876868274063,0.10156443715096],[-0.049787700176239,-0.026140984147787,-0.012118588201702]],[[-0.0030816067010164,-0.015606077387929,-0.034715764224529],[-0.0060978904366493,-0.0053218947723508,0.010776625946164],[-0.0035155189689249,-0.023946223780513,0.055611491203308]],[[0.010908715426922,0.02812878601253,0.022975645959377],[-0.045015946030617,0.013614129275084,-0.045526370406151],[0.032030180096626,0.0027964462060481,-0.0084114633500576]],[[0.0071945814415812,-0.011787717230618,0.11476849019527],[-0.092031724750996,-0.047276388853788,0.051074020564556],[-0.13114656507969,-0.030300309881568,0.042881298810244]],[[0.021625299006701,0.024097580462694,-0.0217050537467],[-0.03586309030652,-0.072139859199524,0.002017910592258],[-0.018260538578033,0.005865003913641,-0.0039452216587961]],[[0.0080026797950268,-0.018667576834559,0.060790967196226],[0.015764389187098,-0.0043872380629182,-0.020188787952065],[0.016234459355474,-0.0096873072907329,2.1200357878115e-05]],[[0.066321693360806,-0.0046406658366323,0.0029245899058878],[-0.079446792602539,-0.022792994976044,-0.078003443777561],[-0.0055450829677284,-0.044056452810764,0.0020711221732199]],[[-0.0097222961485386,-0.072695016860962,-0.013765443116426],[0.0043188971467316,0.0063597201369703,0.025398129597306],[0.010680764913559,0.059084098786116,0.062662422657013]],[[0.014679088257253,0.01199200283736,0.06148212775588],[0.034743778407574,-0.094088636338711,-0.052205175161362],[-0.027957074344158,0.052405998110771,-0.032080449163914]],[[-0.027552084997296,0.055069763213396,0.042343251407146],[0.070244051516056,-0.079889014363289,0.02452028542757],[-0.011289171874523,0.014945824630558,0.048532016575336]],[[0.016796408221126,0.011369902640581,0.008491893298924],[-0.08882836997509,-0.012001398950815,0.053430244326591],[0.011649122461677,0.031781107187271,-0.016993651166558]],[[-0.019403357058764,0.026549091562629,0.0099875265732408],[0.038932766765356,-0.071987077593803,0.015049962326884],[-0.06366291642189,0.06157960370183,0.065915480256081]],[[-0.018028920516372,0.040314015001059,-0.01522121950984],[0.00076299259671941,-0.056780304759741,0.073651887476444],[0.0094953654333949,0.093603655695915,0.034134760499001]],[[0.0080373408272862,-0.055264219641685,-0.023554529994726],[0.022573608905077,0.042186524719,-0.0098167574033141],[-0.0075851352885365,-0.10533655434847,0.066317640244961]],[[0.034038510173559,0.0019868859089911,-0.008690245449543],[-0.099913828074932,-0.00084948324365541,0.02590143494308],[-0.00062988715944812,0.018760062754154,-0.002385517116636]],[[0.013059358112514,-0.0095631815493107,0.0061262962408364],[0.068454146385193,0.065778464078903,-0.060897685587406],[-0.05468101426959,0.026766713708639,-0.0054539041593671]],[[0.0024904799647629,-0.0056779314763844,-0.069258876144886],[0.03296385332942,-0.0022283252328634,-0.047134809195995],[-0.038829352706671,0.048584494739771,0.0073568522930145]],[[-0.090360209345818,0.019774215295911,0.023189980536699],[0.0015299004735425,-0.012223523110151,0.0077707064338028],[0.052187014371157,0.031893961131573,0.00031233747722581]],[[0.019714798778296,-0.043262526392937,-0.015526277013123],[-0.029277948662639,0.084778346121311,-0.034296881407499],[-0.016106085851789,-0.054688405245543,0.0018485977780074]],[[-0.0057827066630125,-0.017637757584453,0.02177756652236],[0.01637770421803,0.028821567073464,-0.029642097651958],[-0.028287587687373,-0.061688087880611,-0.027689965441823]],[[-0.0053929137066007,0.079585283994675,-0.014664767310023],[-0.040056146681309,-0.0021760307718068,-0.042354479432106],[-0.014718918129802,-0.037207305431366,-0.072198666632175]],[[-0.014048284851015,0.028795525431633,0.059128038585186],[0.0018663333030418,0.061150014400482,-0.024847768247128],[-0.038708735257387,-0.059972070157528,0.0071134194731712]],[[0.018239881843328,0.069528639316559,0.031930755823851],[0.065312385559082,0.039422165602446,-0.057717349380255],[0.045902829617262,0.012965681962669,0.076996244490147]],[[0.087267309427261,-0.028740445151925,0.0082671474665403],[-0.099160000681877,0.030511034652591,0.016961796209216],[-0.028566541150212,-0.028371579945087,-0.050062328577042]],[[-0.063614875078201,0.010649178177118,-0.010719686746597],[-0.012323088943958,-0.065327130258083,0.034406937658787],[0.046090718358755,0.019849263131618,0.010945099405944]],[[-0.0016553290188313,-0.087106838822365,0.037030905485153],[0.012934887781739,0.0046366560272872,-0.044135294854641],[-0.044440805912018,0.019531374797225,0.023601088672876]],[[-0.051818557083607,-0.03774743527174,-0.019599782302976],[0.014939312823117,-0.089091561734676,-0.0044693709351122],[0.0052268486469984,0.02447559311986,-0.061919149011374]],[[-0.10220562666655,-0.019411467015743,0.0017864663386717],[0.0075251734815538,-0.03969943523407,0.01321058254689],[-0.019315388053656,0.0052029355429113,0.032342132180929]],[[-0.02556817419827,0.010049901902676,-0.035037215799093],[5.6390101235593e-05,-0.011683950200677,-0.015227466821671],[0.0094633130356669,0.025237197056413,-0.045113239437342]],[[-0.00018086325144395,-0.004699919372797,0.036070376634598],[-0.037765055894852,-0.048747219145298,-0.023797018453479],[0.020538832992315,0.033386833965778,0.013456714339554]],[[-0.068019203841686,0.013170355930924,-0.0086341565474868],[0.015437192283571,0.026090560480952,0.027189640328288],[0.00084186386084184,-0.010717087425292,-0.024077855050564]],[[0.033012170344591,0.030335938557982,-0.017936823889613],[-0.0099428156390786,0.020733494311571,-0.042040672153234],[-0.066592410206795,-0.026498358696699,-0.015998424962163]],[[0.070119053125381,0.020688943564892,0.0016671696212143],[0.016583636403084,-0.03851705417037,-0.057319283485413],[-0.031734433025122,0.063309550285339,0.061261031776667]],[[0.031140411272645,-0.04794455319643,-0.018089082092047],[0.0031152607407421,-0.044754713773727,0.015177819877863],[-0.097573556005955,-0.080704882740974,-0.026096757501364]],[[-0.0067963558249176,0.030967440456152,-0.023885678499937],[-0.018961817026138,-0.0047184969298542,-0.046089801937342],[0.0018059409921989,0.016002248972654,-0.035579092800617]],[[-0.040782447904348,-0.028563644737005,-0.018140794709325],[-0.0037819114513695,0.057067427784204,-0.032691232860088],[-0.030445534735918,-0.032845955342054,-0.0085246190428734]],[[0.055260695517063,0.098779007792473,0.039815172553062],[0.044841431081295,-0.049062445759773,-0.033464811742306],[-0.011258789338171,0.037489783018827,0.01106567773968]],[[-0.0075952825136483,-0.012797029688954,-0.0073973597027361],[-0.071963958442211,-0.02733901143074,0.0030784178525209],[0.014876236207783,0.018797129392624,-0.0057682865299284]],[[0.067763410508633,-0.046477735042572,0.072611838579178],[0.044927354902029,0.087127268314362,-0.015546562150121],[0.00099964765831828,-0.058330494910479,-0.070461802184582]],[[0.014172628521919,0.0090585155412555,-0.044119145721197],[0.040319669991732,-0.073069646954536,-0.033357672393322],[0.017174314707518,0.059712462127209,0.041717611253262]],[[0.09146273881197,-0.010258400812745,-0.059492867439985],[0.020986795425415,0.12857562303543,0.010289344005287],[-0.0086077647283673,0.014792507514358,0.0011376137845218]],[[0.10479466617107,0.030389945954084,-0.0005744420341216],[-0.037104338407516,-0.07830585539341,-0.0047469502314925],[-0.037537265568972,-0.040111005306244,0.0043334164656699]],[[-0.0046927356161177,-0.05519412830472,-0.064704097807407],[0.035493150353432,0.020917294546962,0.0085287047550082],[0.016064329072833,-0.0028447122313082,-0.048674613237381]],[[-0.019055511802435,0.027805728837848,-0.057168107479811],[-0.066864371299744,-0.093839831650257,-0.085769161581993],[-0.054158143699169,-0.056560322642326,-0.035481419414282]],[[-0.0059461914934218,0.094382874667645,-0.11585783213377],[0.030875297263265,0.067548997700214,-0.0057355486787856],[0.053632728755474,-0.010696342214942,0.020321832969785]],[[0.0016951787983999,-0.014491045847535,0.016125680878758],[-0.066259570419788,0.01806304231286,-0.045230809599161],[0.066060371696949,-0.068390280008316,0.050688896328211]],[[0.0093227829784155,-0.015273370780051,0.022820416837931],[0.0092936856672168,0.018761517480016,0.079538032412529],[-0.050468556582928,-0.012559401802719,-0.064315356314182]],[[0.027835134416819,-0.011605164036155,0.00033890415215865],[-0.086052604019642,0.0092158894985914,-0.013912933878601],[-0.076348230242729,-0.04267980530858,0.020752865821123]],[[0.037078030407429,-0.0061922324821353,0.041906211525202],[0.044208403676748,-4.3517593439901e-05,0.066914662718773],[0.0017798379994929,-0.0032833856530488,-0.022345634177327]],[[0.080194912850857,-0.055295921862125,-0.023432105779648],[-0.027875620871782,0.062308877706528,-0.06538300216198],[-0.031668160110712,-0.079810038208961,-0.004682844504714]],[[-0.084987908601761,-0.057776287198067,-0.018106553703547],[-0.026627389714122,0.0042697181925178,-0.0066247778013349],[0.0086616827175021,0.0030930794309825,0.021803278476]],[[-0.0043119634501636,0.021049750968814,-0.055566638708115],[0.0065782871097326,-0.0060903914272785,-0.0053427056409419],[-0.053600493818521,-0.05482991784811,0.0067049022763968]],[[-0.048375159502029,-0.057600311934948,-0.044826090335846],[0.0093506034463644,-0.032057266682386,-0.04422115162015],[-0.094715416431427,0.019793145358562,0.040590144693851]],[[0.026425052434206,0.041675947606564,0.025077378377318],[0.0066578802652657,0.04647321999073,0.00056212081108242],[0.040052074939013,-0.061862826347351,-0.016848104074597]],[[-0.015561953186989,0.0092634744942188,0.0029967937152833],[-0.010005014017224,0.030358381569386,0.010738342069089],[-0.00094778428319842,0.10142760723829,-0.039874482899904]],[[-0.07273293286562,-0.038657806813717,0.046613022685051],[0.085915312170982,0.0030613243579865,0.022426534444094],[-0.020183948799968,-0.060105346143246,-0.017163181677461]],[[-0.060144297778606,0.047949466854334,-0.081205330789089],[0.085060834884644,-0.051845975220203,-0.0057622878812253],[-0.026404283940792,0.058546084910631,-0.071379631757736]],[[-0.023764073848724,0.037265956401825,0.038743078708649],[-0.035587094724178,-0.0086492756381631,-0.015699518844485],[-0.057056669145823,0.007839604280889,-0.010811328887939]],[[0.077285163104534,0.063974015414715,0.11336753517389],[-0.012961483560503,-0.015738610178232,-0.020499875769019],[0.058168791234493,-0.0036057329270989,0.078478254377842]],[[0.040196552872658,0.053281988948584,-0.025147074833512],[-0.086882650852203,-0.025841269642115,-0.053274091333151],[0.025279574096203,0.0156409740448,0.0018445497844368]],[[-0.011776538565755,-0.035122521221638,-0.01017436105758],[0.0055188364349306,-0.017738996073604,-0.0034487703815103],[0.032878492027521,-0.018589803948998,0.024556137621403]],[[0.053016431629658,0.073076687753201,-0.036128908395767],[0.032971054315567,-0.087162606418133,-0.0093722697347403],[-0.099549263715744,0.024529570713639,-0.023271040990949]],[[-0.056306395679712,-0.015683406963944,-0.021966932341456],[0.042683608829975,-0.0536671243608,0.0044959797523916],[-0.079683184623718,0.052298836410046,-0.062457699328661]],[[-0.080953061580658,-0.0053175059147179,-0.038144379854202],[-0.051922485232353,-0.004263115581125,-0.036935523152351],[0.022289179265499,0.02363526634872,0.017747802659869]],[[0.010315328836441,0.0012278776848689,-0.014448545873165],[0.039213709533215,0.024483663961291,-0.034264475107193],[0.040975622832775,0.091941691935062,-0.04129233956337]],[[-0.041353393346071,0.02771401964128,0.013796135783195],[0.041471648961306,-0.05059739202261,0.043782070279121],[-0.068300649523735,0.019260613247752,-0.02202320471406]],[[-0.061591394245625,-0.03506438434124,-0.0061806631274521],[0.010983869433403,-0.071130774915218,-0.04862878844142],[-0.0051463046111166,-0.1072603315115,0.037667505443096]],[[-0.019092770293355,0.024177433922887,-0.072100572288036],[0.010411909781396,0.065994463860989,0.0025208131410182],[0.044247049838305,0.030792253091931,0.034082029014826]],[[0.015432210639119,-0.03774169832468,0.05960151925683],[0.076729506254196,0.0040094549767673,0.019367191940546],[-0.010700992308557,-0.0055632605217397,0.011888112872839]],[[-0.045087318867445,-0.0048552453517914,-0.036219503730536],[-0.00092507869703695,0.008042817004025,-0.024567380547523],[-0.025428401306272,0.061765506863594,-0.024842677637935]],[[-0.033873550593853,0.036091797053814,-0.034477863460779],[-0.058794036507607,0.005823674146086,-0.013487170450389],[-0.02141223102808,0.016928436234593,0.030759649351239]]],[[[-0.067574590444565,0.0062186610884964,0.070467233657837],[0.0022326363250613,-0.049893666058779,-0.025267591699958],[0.052052695304155,-0.041718356311321,-0.010588114149868]],[[-0.021002724766731,-0.064602293074131,0.019264278933406],[-0.0081871841102839,-0.054216671735048,0.054002929478884],[-0.0093404920771718,0.04528733715415,0.051772717386484]],[[-0.012488561682403,-0.083559542894363,-0.080910690128803],[0.076992593705654,-0.066138722002506,-0.083966635167599],[0.025181462988257,-0.010843141935766,0.019576411694288]],[[-0.02010378241539,0.046929586678743,0.03187608346343],[0.0041515189222991,0.030345667153597,0.0065718274563551],[0.06758651137352,-0.012567478232086,0.031795863062143]],[[0.021955594420433,-0.0083709200844169,-0.014659065753222],[0.035178858786821,-0.00040944857755676,-0.080438278615475],[-0.027054287493229,0.07819752395153,-0.075833417475224]],[[0.070494681596756,6.7212604335509e-05,0.036604423075914],[-0.0011755359591916,0.033625543117523,-0.026653930544853],[0.068163745105267,-0.038207083940506,0.0843425989151]],[[-0.029624003916979,0.02135431393981,0.042856123298407],[-0.14249268174171,0.0018912475788966,-0.031839810311794],[-0.027661953121424,0.0011864281259477,0.092791862785816]],[[0.0033022670540959,-0.041144147515297,-0.0037803465966135],[-0.046397868543863,0.027558453381062,0.09449977427721],[-0.056431140750647,-0.023623695597053,-0.0080216927453876]],[[-0.062883503735065,-0.083607867360115,0.024056356400251],[0.056163627654314,0.025971155613661,0.00087636354146525],[0.0054469052702188,0.054687857627869,-0.012242441996932]],[[0.059437602758408,0.02978253364563,0.026728888973594],[0.04610450565815,0.080937907099724,0.03729560598731],[0.034527510404587,0.051688447594643,0.047199692577124]],[[-0.043671183288097,-0.028172273188829,-0.082582049071789],[-0.01588880084455,-0.087778300046921,0.03424371778965],[-0.025995979085565,-0.0035826503299177,-0.064462691545486]],[[-0.0096866078674793,0.0057679577730596,0.13976392149925],[0.034795939922333,0.10871525853872,-0.016984775662422],[0.061670310795307,-0.054020721465349,0.045612882822752]],[[0.071426317095757,-0.036891482770443,0.012490981258452],[-0.046346835792065,-0.15819673240185,0.023690594360232],[0.094185866415501,0.010960825718939,-0.042170472443104]],[[0.03533237054944,0.00020020882948302,-0.033679414540529],[-0.038408242166042,-0.0023698168806732,0.059255015105009],[-0.036132134497166,0.10460935533047,0.12563793361187]],[[0.058283697813749,0.021043859422207,0.0085380934178829],[0.055150710046291,0.044390987604856,-0.073086842894554],[0.088960349559784,0.17772287130356,-0.0032563384156674]],[[0.0035184996668249,0.042954966425896,-0.061007473617792],[0.069376654922962,0.071627244353294,0.063646569848061],[-0.014637715183198,-0.061076149344444,0.12105398625135]],[[0.0534179918468,0.016239620745182,0.045087076723576],[0.040750738233328,0.08803254365921,-0.044314961880445],[-0.040686227381229,0.1044584363699,0.027545534074306]],[[0.0083877351135015,0.010562828741968,0.015389704145491],[-0.089473523199558,-0.072721391916275,-0.047217004001141],[-0.041646040976048,-0.023797929286957,0.021507807075977]],[[-0.013500396162271,0.033750299364328,-0.09724298119545],[0.043265324085951,0.029078103601933,0.060784827917814],[0.10490077733994,0.0050157243385911,0.046086855232716]],[[0.020382227376103,0.069844953715801,-0.12440906465054],[0.043697513639927,-0.0055982675403357,0.010611587204039],[0.029755217954516,0.017326526343822,-0.017607886344194]],[[-0.053925961256027,0.025939121842384,0.13090826570988],[0.0016653527272865,-0.047246500849724,0.11315423250198],[-0.040360305458307,-0.058876678347588,0.034893412142992]],[[-0.012109820730984,-0.017301639541984,0.012258801609278],[0.035397984087467,0.0072796051390469,0.059377018362284],[0.041941843926907,0.062598899006844,0.040301691740751]],[[-0.026055315509439,0.034867469221354,0.0057518114335835],[0.015319433063269,-0.061938863247633,0.035988219082355],[0.0051509202457964,0.0072091873735189,-0.080140054225922]],[[-0.082145981490612,0.044096320867538,-0.027621081098914],[-0.0025838965084404,-0.073946766555309,0.061788149178028],[0.034082066267729,0.069863095879555,-0.078052386641502]],[[0.17837589979172,-0.015091832727194,0.045760009437799],[-0.02635051868856,-0.010361501015723,-0.074476338922977],[-0.010602607391775,0.077958188951015,0.051187053322792]],[[0.040009748190641,-0.054058682173491,0.012438878417015],[-0.046058624982834,-0.028753783553839,0.058710385113955],[0.041652385145426,0.035774391144514,0.076238453388214]],[[-0.059581115841866,-0.060852687805891,-0.053128484636545],[0.0064970818348229,0.099078364670277,0.017096288502216],[0.039422620087862,-0.055096056312323,-0.076870135962963]],[[-0.028567247092724,0.045250043272972,0.069592244923115],[-0.0077379108406603,0.017945826053619,0.028274681419134],[0.02277810126543,-0.016973093152046,-0.1244825348258]],[[-0.034588553011417,0.0052916198037565,-0.028691196814179],[-0.04980681091547,0.04785917699337,-0.068970695137978],[0.024738110601902,0.055496193468571,-0.030862685292959]],[[-0.018334176391363,0.079270906746387,0.043313346803188],[0.019614398479462,-0.065676540136337,0.025252237915993],[-0.044991195201874,-0.041645374149084,0.016134764999151]],[[-0.037668082863092,-0.012113558128476,-0.068375825881958],[0.014320391230285,-0.020019069314003,0.0051150028593838],[0.070887327194214,0.040209289640188,0.050448387861252]],[[0.10604314506054,0.0086715556681156,-0.054078672081232],[0.029256647452712,-0.014245431870222,-0.053242474794388],[0.021143510937691,0.021896442398429,-0.0093697095289826]],[[-0.045764464884996,-0.033462982624769,-0.023206945508718],[0.00074494566069916,-0.04365448653698,-0.056082230061293],[0.01031990814954,0.023326780647039,0.0034931320697069]],[[0.081927709281445,0.072642460465431,0.12015993148088],[-0.053374085575342,0.040754571557045,-0.0031348490156233],[0.12168802320957,0.085034005343914,0.01976733841002]],[[0.037869647145271,-0.02392603456974,0.017828177660704],[0.027283744886518,0.0037552511785179,0.016495073214173],[0.019989972934127,0.049940437078476,-0.034166019409895]],[[0.049913566559553,0.058094304054976,0.094489872455597],[-0.04712126776576,0.059075735509396,0.014818986877799],[0.056669771671295,-0.034906998276711,0.092560485005379]],[[-0.074692144989967,0.062958158552647,-0.023635828867555],[-0.083302989602089,0.035284996032715,-0.018754014745355],[0.092765644192696,-0.03885567933321,0.017418198287487]],[[0.003403750481084,0.034402664750814,-0.020192284137011],[0.081491835415363,0.049432493746281,0.039011515676975],[-0.0063781593926251,0.021776590496302,-0.014488431625068]],[[0.0070613166317344,-0.0038237692788243,0.056118987500668],[-0.034564252942801,0.075380228459835,-0.068347938358784],[0.078104257583618,0.066421397030354,0.027566308155656]],[[-0.048252355307341,-0.041954230517149,-0.082390919327736],[0.011976639740169,-0.015850607305765,-0.026266584172845],[0.045638717710972,0.059422474354506,-0.028911460191011]],[[0.028516367077827,-0.0051110647618771,-0.028683425858617],[-0.027909489348531,0.025166505947709,-0.010179400444031],[0.085929900407791,-0.0074543603695929,0.017123565077782]],[[-0.021181203424931,-0.039154253900051,-0.019812971353531],[0.041047815233469,-0.049632385373116,-0.024681845679879],[0.082996651530266,0.012566938996315,-0.033848382532597]],[[0.022453969344497,0.0052910265512764,-0.018853755667806],[-0.063075125217438,0.0038126453291625,0.020805019885302],[0.019919130951166,0.04915377125144,0.040753845125437]],[[-0.076219864189625,-0.040190361440182,-0.033851690590382],[0.010733894072473,0.04822788015008,0.023080237209797],[0.060589704662561,-0.031616222113371,-0.0090587269514799]],[[0.046486102044582,-0.021858604624867,0.0025296772364527],[-0.028513226658106,-0.035393588244915,-0.01720686070621],[-0.027058152481914,0.081260792911053,0.12479276955128]],[[0.084206975996494,0.007810584269464,-0.068808071315289],[0.070667989552021,0.10384891927242,-0.026876233518124],[0.039348796010017,-0.024013932794333,-0.0039480654522777]],[[-0.033633690327406,0.038525588810444,0.071174502372742],[0.02868227660656,-0.049267567694187,-0.014616949483752],[0.027948105707765,-0.0012101242318749,0.0099197570234537]],[[0.079858429729939,0.058586820960045,0.040682073682547],[0.033171206712723,0.053854916244745,-0.072931759059429],[0.034844562411308,-0.087010346353054,0.013100812211633]],[[0.027404738590121,0.024129286408424,0.033976171165705],[0.02201459556818,-0.02010558731854,0.05971771851182],[0.0070499265566468,-0.015599552541971,0.0096246572211385]],[[0.021077888086438,-0.030559157952666,-0.0046204868704081],[0.016022564843297,0.0054873721674085,0.02805245295167],[-0.0014664580812678,0.096918918192387,0.10818928480148]],[[-0.035605642944574,-0.044626988470554,-0.021941566839814],[0.024292107671499,-0.043014254420996,-0.048772793263197],[-0.04512682184577,0.024010555818677,-0.07996704429388]],[[0.04329614341259,0.024720100685954,0.14472553133965],[0.069746270775795,-0.01423182617873,0.013316831551492],[0.043316707015038,0.014755471609533,0.0013431564439088]],[[0.044032957404852,0.027448093518615,0.15812461078167],[0.07612518966198,-0.010114091448486,-0.096776098012924],[0.0032649205531925,0.11670257151127,0.064702346920967]],[[-0.027188986539841,-0.05454858392477,-0.074839010834694],[0.019443916156888,0.012392952106893,0.11579398810863],[-0.091044619679451,0.022924166172743,0.032583102583885]],[[-0.04027196392417,0.017801400274038,0.03641726821661],[0.036528382450342,-0.0021429669577628,0.015146696940064],[0.047045860439539,0.021310662850738,0.014370841905475]],[[0.070049777626991,-0.011889205314219,-0.10525672137737],[0.040564853698015,0.00012459067511372,-0.0070626283995807],[0.010126146487892,-0.0032631631474942,0.025627870112658]],[[0.05251993983984,0.051451977342367,-0.067690558731556],[0.0046868436038494,-0.039627321064472,0.02416324056685],[-0.054642748087645,0.013492740690708,-0.10220286995173]],[[-0.029914973303676,-0.005393011495471,0.03461092710495],[0.048203643411398,0.01231309119612,-0.034836143255234],[-0.043953351676464,0.0083648152649403,0.00060425169067457]],[[0.035730611532927,0.062559895217419,-0.017456462606788],[0.011470448225737,0.0027319551445544,0.043175559490919],[0.048177056014538,0.046670239418745,-0.027911819517612]],[[0.033534280955791,0.021635137498379,0.015798965469003],[0.019611662253737,-0.041926309466362,-0.025343131273985],[-0.0020955316722393,-0.036409460008144,0.081970848143101]],[[0.031075075268745,-0.018274242058396,-0.055804777890444],[-0.0058330888859928,0.034392960369587,-0.021756706759334],[-0.0043874620459974,0.053665172308683,0.010262210853398]],[[0.0046855355612934,-0.074361905455589,0.032532069832087],[-0.094600640237331,-0.073800854384899,-0.0037635879125446],[-0.0043220310471952,-0.09670951962471,-0.018399052321911]],[[0.071397714316845,0.00053714495152235,0.096050225198269],[0.073406554758549,0.024106191471219,0.084487363696098],[-0.0058317948132753,0.071845561265945,0.046111799776554]],[[0.062893383204937,0.034573838114738,-0.060882072895765],[0.030972676351666,-0.028792409226298,0.047160357236862],[-0.022070404142141,0.029216550290585,0.013460206799209]],[[0.051986116915941,0.060384575277567,0.063133232295513],[-0.031768202781677,-0.042404439300299,-0.00045297649921849],[0.029790939763188,0.05999206751585,-0.080198056995869]],[[0.065502353012562,-0.0017688805237412,-0.092109724879265],[0.016487497836351,0.056411270052195,0.051072753965855],[0.012930670753121,-0.0096494741737843,0.089544966816902]],[[0.028653871268034,-0.0073822257108986,-0.046601813286543],[-0.025527728721499,-0.019016290083528,-0.051516611129045],[0.045273505151272,0.017100978642702,0.0029125916771591]],[[0.014486747793853,0.074362844228745,0.033005371689796],[0.019768584519625,0.044474102556705,-0.045503079891205],[0.0792051628232,-0.059521548449993,0.11905860900879]],[[0.063530869781971,0.0027330722659826,0.071267835795879],[-0.077299676835537,-0.0077645475976169,0.054801426827908],[-0.019083950668573,0.04186611995101,-0.020284105092287]],[[0.033550854772329,-0.048013374209404,0.070415072143078],[0.054778959602118,-0.013738750480115,-0.013660022057593],[0.037437371909618,-0.04098392277956,0.053721409291029]],[[-0.06086515262723,-0.032698329538107,0.029108829796314],[0.039620321244001,-0.0059753321111202,0.043774276971817],[0.036303851753473,0.024518553167582,-0.0021098393481225]],[[0.014151711016893,0.058753479272127,-0.059873078018427],[-0.02286178059876,-0.04004468396306,0.056230373680592],[-0.0001760480372468,-0.015103987418115,-0.011463863775134]],[[0.034833703190088,0.082645520567894,0.098281599581242],[0.11090762168169,0.011390985921025,0.1480173766613],[0.057373896241188,0.0074431747198105,0.0425128005445]],[[0.13267236948013,-0.040750473737717,0.042395710945129],[0.015219915658236,0.037270125001669,0.033835202455521],[0.043652944266796,-0.0098645547404885,0.029693823307753]],[[0.017732977867126,0.018749555572867,-0.0012598119210452],[-0.092037878930569,-0.011654595844448,0.084096431732178],[-0.014678562059999,0.010976665653288,0.022698873654008]],[[-0.044248294085264,0.050715308636427,-0.022243211045861],[-0.014633431099355,-0.013999572955072,0.0095173139125109],[-0.053298678249121,0.038113474845886,0.012517793104053]],[[0.019572649151087,0.053457424044609,0.051506776362658],[-0.030554896220565,-0.020756430923939,-0.071708254516125],[-0.021679472178221,-0.011878131888807,-0.024508019909263]],[[-0.0049288654699922,0.021683743223548,-0.010847979225218],[0.054863844066858,0.056620217859745,-0.0004406311782077],[-0.041985861957073,-0.0048608989454806,0.09149906784296]],[[0.019038153812289,-0.065433762967587,-0.032612282782793],[0.098874390125275,0.052528526633978,-0.0035733946133405],[-0.075889803469181,0.055533610284328,-0.033574875444174]],[[0.060526672750711,0.002339615020901,0.050896245986223],[0.0046992502175272,0.058808863162994,-0.066113762557507],[-0.036046214401722,0.0019877292215824,0.04594649374485]],[[0.013550600036979,0.070046342909336,-0.023003613576293],[-0.015924278646708,0.03052931278944,0.013553530909121],[0.038817796856165,-0.0047677052207291,-0.043041460216045]],[[-0.14387370646,-0.098572745919228,-0.068137213587761],[-0.047640033066273,-0.041986953467131,-0.0029766538646072],[0.033052273094654,0.017730128020048,0.020714702084661]],[[0.06923071295023,-0.035560447722673,0.077361568808556],[0.13460627198219,-0.035475485026836,-0.003816063515842],[0.10622127354145,0.054081570357084,-0.024955051019788]],[[0.039033774286509,-0.045711047947407,-0.016789820045233],[0.063042640686035,0.10607808083296,-0.098540961742401],[0.0012805786682293,0.037380691617727,0.083442829549313]],[[0.10159372538328,0.094524800777435,-0.013142631389201],[-0.060857318341732,0.065730579197407,0.14991670846939],[0.026022624224424,0.033473398536444,0.03962866589427]],[[0.074381865561008,-0.011510427109897,-0.082361735403538],[0.016896039247513,0.050579067319632,-0.003266129642725],[0.014537787996233,0.07427329570055,-0.024725157767534]],[[0.032622929662466,-0.015686072409153,0.013852935284376],[0.017110893502831,0.00019669096218422,-0.0091992830857635],[0.0056929448619485,-0.053370237350464,0.023643197491765]],[[0.0028055442962795,-0.035931546241045,0.00014405626279768],[-0.0064290966838598,-0.014485938474536,0.015183252282441],[-0.060301393270493,0.0096589038148522,0.034825451672077]],[[0.07282742112875,0.076702885329723,0.017247887328267],[-0.018526721745729,-0.014466384425759,0.081857368350029],[0.065907537937164,-0.0083618694916368,0.10551726818085]],[[-0.0088706938549876,-0.020769482478499,0.0098671326413751],[0.094920478761196,-0.00017622680752538,0.058400996029377],[0.0015897573903203,-0.031933035701513,0.058705762028694]],[[-0.025343013927341,0.0044664577580988,0.14561951160431],[0.037076152861118,0.044880468398333,0.06290802359581],[0.015488988719881,0.030599776655436,0.067339979112148]],[[0.071326337754726,0.053008303046227,0.014838047325611],[-0.030356010422111,0.0021695184987038,0.054062850773335],[0.0017890135059133,0.0019681546837091,0.041001863777637]],[[-0.10657991468906,-0.011871713213623,-0.025802299380302],[-0.039231434464455,-0.011498842388391,-0.033398445695639],[-0.015370918437839,0.041038256138563,-0.024407487362623]],[[0.11110310256481,0.049456864595413,-0.0017048359150067],[0.00031094410223886,-0.03347634524107,-0.067839115858078],[-0.035119608044624,0.037553008645773,0.024964576587081]],[[0.041548423469067,0.030435923486948,-0.0022934242151678],[0.0078335450962186,0.066741272807121,0.0017619687132537],[0.093540400266647,-0.0043297032825649,0.034868855029345]],[[0.019318146631122,0.037660766392946,-0.024634040892124],[-0.052573431283236,0.036414086818695,0.013085103593767],[0.022585934028029,-0.01267419103533,-0.020851995795965]],[[0.074088051915169,0.010156728327274,0.070636689662933],[-0.029386406764388,0.081864774227142,0.065235055983067],[0.024742275476456,0.079645983874798,-0.051927037537098]],[[0.12368783354759,0.0129907252267,-0.002559976419434],[0.046980902552605,0.00034550789860077,-0.021132949739695],[0.023687848821282,0.070736788213253,0.087713420391083]],[[0.011592119932175,0.03399033844471,0.0576979406178],[0.022292198613286,-0.017745107412338,-0.054884903132915],[-0.072507999837399,0.021092647686601,0.02708975225687]],[[-0.055028539150953,-0.066056631505489,0.1016613766551],[-0.058383140712976,0.044977746903896,-0.05400363728404],[0.064244352281094,-0.10037009418011,0.031361021101475]],[[0.05673012137413,0.092419937252998,-0.063999682664871],[-0.0111611969769,-0.093020908534527,-0.015853308141232],[0.018173523247242,-0.02188603579998,0.034429840743542]],[[-0.030926115810871,0.010657655075192,0.046409245580435],[0.15426753461361,0.054743491113186,-0.049980022013187],[0.039942666888237,0.1095954105258,0.024165032431483]],[[0.02011689171195,-0.043581247329712,0.020724084228277],[0.015351783484221,-0.05170388892293,0.024705866351724],[-0.00070049735950306,0.025768846273422,-0.017495650798082]],[[0.030548693612218,0.028088437393308,-0.023797962814569],[0.062518112361431,-0.082984752953053,0.041056614369154],[0.028146453201771,-0.047877907752991,0.0081619396805763]],[[0.08442759513855,0.095289804041386,0.073508001863956],[0.043470237404108,0.069630540907383,0.01147613953799],[0.07244735211134,0.065967030823231,0.017056528478861]],[[-0.13483348488808,-0.057536274194717,0.034777514636517],[0.00014653912512586,0.030995815992355,-0.012740591540933],[0.080544620752335,0.030389279127121,0.030768873170018]],[[0.00015660155622754,0.039595399051905,-0.04741770401597],[0.091928750276566,-0.025531377643347,-0.0024471313226968],[0.042981244623661,0.085036292672157,-0.032820783555508]],[[-0.062357120215893,0.035925172269344,0.097117587924004],[-0.0482760630548,0.039741303771734,-0.027106190100312],[0.052546046674252,-0.045822158455849,0.018099458888173]],[[-0.043354537338018,0.071866750717163,-0.042824257165194],[0.039366170763969,0.022459227591753,-0.031948748975992],[0.013273759745061,-0.047870766371489,0.080540798604488]],[[0.056346643716097,0.055297147482634,0.04117077216506],[0.013151724822819,-0.018391193822026,0.00084610446356237],[0.0088600972667336,-0.023766353726387,-0.037546087056398]],[[0.028135752305388,0.066061481833458,-0.060889314860106],[-0.034500367939472,-0.028623208403587,0.012182881124318],[-0.034234777092934,-0.017640493810177,0.025520067662001]],[[0.059365645051003,0.048147585242987,-0.042170342057943],[-0.013135397806764,0.0012090504169464,0.048583559691906],[0.10120966285467,-0.024512603878975,0.046007551252842]],[[-0.010349972173572,-0.043612629175186,-0.025920793414116],[0.031229352578521,0.067863166332245,0.010623154230416],[-0.017311764881015,-0.0074921646155417,0.039183065295219]],[[0.016001742333174,0.016428653150797,-0.0062157302163541],[0.021994875743985,-0.02640880830586,-0.061216983944178],[0.043458629399538,-0.022834334522486,-0.047931797802448]],[[0.060363598167896,-0.045846030116081,-0.053370930254459],[-0.013034729287028,0.016430934891105,0.017170734703541],[0.097765229642391,-0.086694613099098,-0.13044981658459]],[[0.025261897593737,0.066825598478317,-0.0036672467831522],[0.11573404818773,-0.011707893572748,0.040832284837961],[0.063528478145599,0.0058689955621958,0.010259971022606]],[[-0.062656819820404,0.11232464015484,0.043520096689463],[0.023699298501015,0.085672445595264,0.070227026939392],[0.026058631017804,0.052959568798542,0.055835235863924]],[[0.001470988499932,-0.0020947207231075,0.040229309350252],[0.024448744952679,0.095278106629848,-0.04990166425705],[-0.074053145945072,-0.002103325445205,-0.049799844622612]],[[0.051753882318735,-0.059172328561544,-0.053978264331818],[0.071737378835678,0.076725505292416,0.045432452112436],[0.0048970407806337,-0.011574567295611,-0.045575328171253]],[[-0.027200262993574,-0.02972824499011,-0.051590632647276],[-0.090272903442383,-0.05115806683898,-0.028909351676702],[0.059266611933708,0.073508806526661,-0.082555644214153]],[[-0.053960334509611,-0.0041004153899848,0.0061304285191],[0.03823309391737,0.0074773570522666,-0.037035964429379],[-0.08428880572319,-0.0013865776127204,0.092498540878296]],[[-0.0022333669476211,0.018605161458254,0.025973303243518],[0.058889161795378,0.0014946531737223,-0.053053949028254],[0.039870303124189,0.065085105597973,0.019743207842112]],[[0.098795793950558,-0.076891995966434,-0.038729041814804],[-0.030212612822652,0.077524490654469,0.019364731386304],[-0.038176234811544,-0.019520856440067,0.020442012697458]],[[-0.0097155971452594,0.0076962122693658,-0.054022252559662],[0.02695233002305,-0.12325175851583,-0.034900210797787],[-0.036689065396786,-0.0040787509642541,-0.10061265528202]],[[0.033135872334242,0.010177287273109,0.02466719225049],[0.028815131634474,0.11639466881752,0.090268112719059],[-0.04855215921998,0.030721725896001,0.063727609813213]],[[-0.016342159360647,0.00078748923260719,-0.03967822343111],[-0.0045387772843242,-0.038727879524231,-0.061700247228146],[-0.042862579226494,0.051148224622011,-0.010097559541464]],[[0.02469745464623,0.015062768943608,0.055994883179665],[0.079571418464184,-0.00088819698430598,-0.000355427415343],[0.046711076050997,0.06016505882144,-0.013097126968205]],[[0.0074563813395798,0.041413523256779,0.014575010165572],[0.11471004784107,0.05899066850543,-0.039526771754026],[0.0023100920952857,0.11673191189766,-0.016749277710915]]],[[[-0.074223309755325,0.045414388179779,0.063563659787178],[0.028082124888897,-0.062944829463959,0.0089608281850815],[0.045210085809231,-0.005451453384012,0.058367118239403]],[[0.03238283097744,-0.02857811935246,-0.040861140936613],[-0.087498962879181,-0.0066730384714901,0.018643073737621],[-0.014154463075101,-0.051867380738258,-0.0045981067232788]],[[-0.022838609293103,0.044358570128679,0.053069308400154],[0.00070616882294416,0.08295925706625,-0.042006753385067],[0.018000407144427,-0.0011971150524914,0.038072288036346]],[[-0.049376014620066,0.070456989109516,-0.013053939677775],[-0.019853055477142,0.023720629513264,-0.015819862484932],[-0.017926450818777,0.042018037289381,-0.0014215335249901]],[[0.030571658164263,0.028403710573912,0.0065458593890071],[0.0026935692876577,-0.008357779122889,-0.018236812204123],[0.065892681479454,0.027546236291528,-0.027517974376678]],[[0.057800035923719,0.089477188885212,0.046301014721394],[0.027722770348191,0.034307651221752,-0.02341440692544],[0.037941168993711,0.037124827504158,0.033041760325432]],[[0.0048126303590834,-0.063453257083893,-0.023108899593353],[-0.058828879147768,-0.061196655035019,-0.023451834917068],[0.083248123526573,0.025427859276533,-0.049255933612585]],[[0.078548237681389,0.07258240878582,-0.01930152066052],[-0.033655356615782,-0.039562053978443,-0.030295014381409],[-0.08085048943758,-0.011086785234511,-0.030298534780741]],[[0.029197122901678,0.064389072358608,0.056501563638449],[0.020962523296475,-0.015523557551205,0.061042547225952],[0.034246619790792,0.002675621304661,0.053185429424047]],[[0.02619656175375,0.079726710915565,0.018264418467879],[0.0049499128945172,0.154133066535,0.12098932266235],[0.087510362267494,0.003843767568469,0.069988019764423]],[[-0.024435004219413,0.019388953223825,0.040055278688669],[-0.099945515394211,-0.010913177393377,0.011640710756183],[0.049560137093067,0.11548592150211,-0.013754869811237]],[[-0.019750185310841,0.0089530516415834,0.012622770853341],[-0.027047213166952,0.056609485298395,0.098653174936771],[0.018053369596601,0.061787612736225,-0.044665850698948]],[[0.030515210703015,-0.073941022157669,0.0031571940053254],[-0.010058658197522,0.032975558191538,0.0049809855408967],[0.036035213619471,0.022209245711565,0.0035483639221638]],[[0.031525421887636,0.014488129876554,-0.043504856526852],[-0.07078542560339,0.041921187192202,0.046214379370213],[0.14363542199135,-0.02507590688765,0.06571438908577]],[[-0.053682148456573,0.027603294700384,0.044257052242756],[0.16145469248295,-0.0092197712510824,-0.029452657327056],[0.038244009017944,0.13980379700661,0.0062535400502384]],[[-0.0082625858485699,0.031959772109985,-0.0069533474743366],[-0.078450992703438,0.031344018876553,-0.035388354212046],[-0.01384052913636,-0.010119246318936,-0.033882807940245]],[[-0.0010768790962175,0.041951134800911,0.011816957965493],[0.063241757452488,0.17997562885284,-0.042370349168777],[-0.05553400143981,-0.026875307783484,0.010051202960312]],[[0.030661353841424,0.01139216311276,-0.03389636054635],[-0.048483349382877,0.024469399824739,-0.0042497180402279],[0.028675137087703,-0.015633935108781,-0.0075329821556807]],[[-0.047589361667633,0.041631054133177,-0.045712132006884],[-0.040619276463985,0.014085080474615,0.085034646093845],[0.072700798511505,0.011522858403623,0.012341059744358]],[[0.051388837397099,0.034331880509853,0.013152055442333],[-0.05007641017437,0.028557937592268,-0.066498763859272],[0.030308451503515,0.00048173777759075,0.043329160660505]],[[-0.034217406064272,0.0063542388379574,0.011536286212504],[0.034208532422781,0.11026852577925,-0.021410845220089],[0.063928753137589,0.041370991617441,0.003365341341123]],[[0.051014341413975,-0.020545264706016,-0.037276539951563],[0.022655980661511,-0.012039112858474,0.10195432603359],[-0.024992123246193,0.081974424421787,0.16208153963089]],[[-0.047145929187536,-0.010581926442683,-0.051506381481886],[-0.048894762992859,-0.024460991844535,-0.018380301073194],[-0.097365751862526,-0.025491217151284,-0.041901908814907]],[[-0.021232148632407,0.057810068130493,-0.0035159063991159],[-0.059134192764759,0.09350547939539,0.022469254210591],[-0.018489088863134,0.021776681765914,-0.024825975298882]],[[-0.090685591101646,0.010641118511558,-0.026717107743025],[0.022899243980646,0.06592408567667,0.024145843461156],[0.0011900564422831,-0.073378503322601,-0.03100118227303]],[[-0.054261334240437,-0.043399512767792,0.024530248716474],[-0.087264209985733,0.036609038710594,-0.11443967372179],[-0.1173981577158,-0.073447227478027,-0.049642696976662]],[[-0.042759735137224,-0.029599403962493,0.032212916761637],[0.012228114530444,-0.003419506829232,0.026011228561401],[0.11879542469978,0.0077224201522768,-0.049084853380919]],[[0.020362421870232,0.065620891749859,0.073227748274803],[0.039751999080181,0.086951918900013,0.0017386527033523],[-0.0049991272389889,-0.10537447035313,-0.0034657779615372]],[[0.048318229615688,-0.00087046879343688,-0.0028481320478022],[0.085027135908604,0.082227386534214,0.011438448913395],[0.0044453209266067,-0.036857798695564,0.02699470706284]],[[-0.10456471145153,-0.0029416023753583,0.0042943819426],[0.056456733494997,-0.022007690742612,0.0019197694491595],[0.00069117196835577,0.045900702476501,0.019910719245672]],[[-0.078475333750248,0.03057368285954,0.044506397098303],[-0.02959474734962,0.11618042737246,0.051745977252722],[0.070485562086105,0.059192217886448,0.046109206974506]],[[-0.0002029230381595,0.0055871088989079,-0.002562791807577],[0.079422913491726,-0.10321751981974,0.19364129006863],[-0.035186108201742,-0.062467962503433,0.0031665870919824]],[[-0.022399028763175,0.022062480449677,0.016913069412112],[0.017110301181674,0.020872129127383,-0.024281334131956],[0.032641038298607,0.022201735526323,0.040450870990753]],[[0.060688778758049,-0.086151942610741,0.031283982098103],[0.018401842564344,-0.008936352096498,0.032769560813904],[0.032148823142052,0.02714523486793,0.0092184646055102]],[[-0.056146372109652,0.02524895593524,0.082617238163948],[-0.022991737350821,-0.059678941965103,0.074918709695339],[0.063860110938549,0.11448545008898,-0.012739755213261]],[[0.0007090464932844,-0.0482008010149,0.008555231615901],[0.055046625435352,0.035402726382017,0.014917145483196],[-0.0085153831169009,-0.049983073025942,0.058037921786308]],[[-0.067688077688217,-0.065077289938927,-0.069470897316933],[0.051210153847933,-0.14412443339825,-0.04778053611517],[-0.1000546887517,-0.026656957343221,-0.13558055460453]],[[-0.003530465066433,-0.062167003750801,-0.03099687024951],[-0.12511251866817,0.0010815397836268,-0.0019535510800779],[-0.02093917503953,-0.0068476162850857,0.12505653500557]],[[-0.0041106273420155,0.014203423634171,0.063454426825047],[-0.040385618805885,-0.00028911759727634,-0.006855427287519],[0.075320012867451,-0.00035118131199852,0.0085260849446058]],[[0.036516107618809,0.082521565258503,0.071159318089485],[0.00484853470698,0.01692415587604,0.027605522423983],[0.082293160259724,0.0038114059716463,0.0067682876251638]],[[0.086890615522861,0.046564839780331,-0.015984961763024],[0.0046905404888093,-0.0031471538823098,-0.0091342544183135],[-0.079026065766811,0.092683970928192,-0.015177384950221]],[[0.031415972858667,-0.050207175314426,0.030193304643035],[0.040232073515654,-0.02946474775672,0.0029667967464775],[-9.1095294919796e-05,-0.04518336802721,-0.011430522426963]],[[0.071140006184578,-0.02446161955595,-0.028747590258718],[-0.0044375793077052,0.052761536091566,0.016262864693999],[0.023596430197358,0.045519609004259,-0.010038462467492]],[[0.007516956422478,-0.033734913915396,0.043674327433109],[0.00077105296077207,0.024100119248033,-0.034790679812431],[-0.0046851704828441,0.01957069709897,0.070669494569302]],[[-0.027508223429322,0.030502442270517,0.049973011016846],[-0.062048308551311,-0.019444761797786,-0.019891854375601],[-0.074480332434177,0.081448249518871,0.074899934232235]],[[0.086212739348412,-0.097317360341549,0.00061265600379556],[0.0028862105682492,0.025626342743635,-0.036674216389656],[0.064254522323608,0.063442908227444,-0.003586643608287]],[[-0.091599225997925,-0.017376195639372,0.050277087837458],[0.0021679864730686,0.050753567367792,0.011404747143388],[0.029168279841542,0.017440807074308,0.015119665302336]],[[0.045742750167847,-0.034008707851171,0.080500707030296],[0.041785895824432,0.080033272504807,0.014197235926986],[0.018541799858212,0.017044091597199,0.057582281529903]],[[-0.034843612462282,-0.0047806692309678,0.013688963837922],[-0.038101673126221,0.075073726475239,-0.033165197819471],[-0.0168660543859,-0.016743583604693,-0.012846637517214]],[[-0.016861481592059,0.033597346395254,0.11064118891954],[-0.058346260339022,0.0075496528297663,-0.083945833146572],[-0.18318963050842,0.0013072678120807,0.051727745682001]],[[0.03291293233633,0.031360447406769,0.016323562711477],[-0.027126092463732,-0.00036657229065895,-0.0019390864763409],[-0.036491584032774,0.071089714765549,-0.04609751701355]],[[0.01196529623121,-0.024842066690326,0.11456099897623],[-0.035571381449699,0.039103522896767,0.038570046424866],[-0.0073618781752884,-0.002430142601952,-0.003654905827716]],[[0.023803949356079,-0.049433913081884,0.054693534970284],[0.042942799627781,-0.008599023334682,-0.059965688735247],[0.12899196147919,-0.045999631285667,0.10051187127829]],[[0.054074931889772,0.053412977606058,-0.015560915693641],[0.048679683357477,0.013805597089231,-0.014455962926149],[-0.066903509199619,0.069820776581764,0.0073711341246963]],[[-0.037605263292789,0.075788870453835,0.075223073363304],[0.0046831802465022,0.014665110968053,-0.05290650203824],[0.10272677987814,-0.02071394957602,0.0013795614941046]],[[0.087687104940414,-0.097038395702839,-0.020755967125297],[-0.071729399263859,0.016887893900275,0.055768415331841],[0.069985307753086,0.0022960223723203,-0.016521021723747]],[[-0.0080001791939139,0.022906372323632,-0.0026597008109093],[-0.012347548268735,-0.013283143751323,0.04739186912775],[-0.012880012392998,0.021085010841489,-0.023353070020676]],[[0.048890396952629,0.10532423108816,0.016045292839408],[-0.043305158615112,0.010030675679445,-0.04653076082468],[-0.036999348551035,-0.00060173438396305,0.0051099904812872]],[[-0.0085944598540664,0.067097954452038,0.032203607261181],[-0.037608969956636,-0.028413262218237,0.11683400720358],[0.057609774172306,0.089228175580502,0.038847960531712]],[[-0.0055876597762108,0.055277276784182,0.0019401032477617],[0.011257565580308,0.033402178436518,-0.069590851664543],[0.064254842698574,0.11469182372093,0.066907726228237]],[[-0.052316635847092,0.04638871923089,0.0047155604697764],[0.027054764330387,0.0063170013017952,0.02386736497283],[0.045349035412073,0.092806205153465,-0.0063778883777559]],[[0.049792986363173,0.0092390477657318,-0.099399521946907],[0.0080485269427299,0.019684171304107,0.05987660586834],[0.026418307796121,0.012324786745012,-0.029933610931039]],[[-0.080818705260754,-0.073487550020218,0.029925556853414],[-0.025874178856611,0.036079037934542,-0.06706765294075],[0.10325894504786,-0.026383627206087,-0.0332674048841]],[[0.083117879927158,0.12783752381802,0.063556462526321],[0.019840052351356,-0.0080965021625161,-0.025261431932449],[-0.012264390476048,-0.064370691776276,-0.019043866544962]],[[0.038203153759241,-0.046309780329466,-0.013363034464419],[-0.050597183406353,0.028538467362523,-0.032367821782827],[-0.0044897077605128,-0.00069873698521405,-0.0033435260411352]],[[-0.043959777802229,0.081582650542259,-0.024375073611736],[-0.07630230486393,0.014288782142103,-0.055112991482019],[-0.023360712453723,0.012543139047921,0.038040310144424]],[[0.093691267073154,-0.0018328543519601,-0.011011010967195],[0.010113090276718,0.082124903798103,0.049048200249672],[0.04780150577426,0.12996426224709,0.030599495396018]],[[0.014008637517691,0.046025596559048,0.043072681874037],[0.002483895746991,-0.03977819904685,-0.03651974350214],[0.028476927429438,0.022173078730702,0.03325879573822]],[[-0.055054821074009,-0.017841985449195,0.035304725170135],[-0.04225455224514,-0.010897059924901,0.045922070741653],[-0.032090228050947,0.12181641161442,-0.020501751452684]],[[0.01770556718111,0.057640865445137,0.066118709743023],[0.071610845625401,-0.027912186458707,0.048453878611326],[0.077523551881313,0.011572696268559,0.0034059737809002]],[[0.013119883835316,-0.030890740454197,0.017084611579776],[0.033403694629669,0.024811964482069,0.016376918181777],[0.043948378413916,0.01541670691222,0.052049830555916]],[[0.028299363330007,-0.012853119522333,-0.0080982958897948],[0.066675238311291,-0.012374199926853,0.024479301646352],[0.049425274133682,0.046009324491024,-0.043797191232443]],[[0.050887670367956,0.015961183235049,0.090453281998634],[0.0012566997902468,0.0063340403139591,-0.081852205097675],[-0.011643283069134,-0.056604698300362,-0.0092217093333602]],[[0.047126941382885,0.070247709751129,0.024698536843061],[-0.029936512932181,0.024471903219819,0.024340925738215],[0.027820626273751,0.04551100730896,0.039516132324934]],[[0.0012559056049213,-0.0062456666491926,0.043068308383226],[-0.037547890096903,-0.046588782221079,-0.012846075929701],[-0.0098985629156232,-0.093063592910767,-0.05280564725399]],[[0.17943270504475,0.052088394761086,0.086038686335087],[-0.062953725457191,-0.034331634640694,-0.075852148234844],[-0.0026134017389268,0.077434226870537,0.10132916271687]],[[0.060714215040207,-0.031246712431312,-0.025738570839167],[-0.057998154312372,0.0012673314195126,0.048869404941797],[-0.0085076000541449,-0.1260284781456,-0.016670783981681]],[[0.057666357606649,-0.032493099570274,-0.048705384135246],[0.024564730003476,0.10236499458551,0.025167120620608],[0.020107777789235,0.126579195261,0.044957730919123]],[[0.039910804480314,-0.025067366659641,0.075217500329018],[-0.065074428915977,0.093775875866413,0.02783627435565],[0.003184090834111,0.042229760438204,-0.039155349135399]],[[0.043901819735765,-0.060965035110712,0.098416790366173],[0.026934057474136,-0.0099390121176839,0.013528101146221],[-0.049644120037556,-0.030877824872732,-0.0052362326532602]],[[0.036987587809563,0.060306254774332,0.0091850003227592],[0.060291562229395,0.003745834575966,0.038059175014496],[0.085422180593014,-0.043985951691866,0.010974107310176]],[[-0.058317121118307,-0.068812891840935,-0.002450477797538],[0.02200379781425,-0.062096975743771,0.12554141879082],[-0.029673432931304,0.015811642631888,0.030857965350151]],[[-0.011779201216996,0.00042280985508114,0.012503665871918],[0.075952805578709,-0.045258611440659,0.067981906235218],[-0.039793413132429,-0.023853547871113,0.079919449985027]],[[0.028971893712878,0.027307111769915,0.079760685563087],[0.011155479587615,0.086858294904232,-0.010070711374283],[-0.018182560801506,0.006687683518976,0.090461805462837]],[[0.037638656795025,0.056655533611774,-0.0013541624648497],[-0.010511936619878,0.078860126435757,-0.012007219716907],[-0.046155996620655,-0.13445495069027,-0.027982845902443]],[[0.021662641316652,0.013910052366555,-0.014536932110786],[0.071874059736729,-0.10773284733295,0.062148183584213],[0.05110864713788,0.01413855701685,-0.015450623817742]],[[0.034032516181469,-0.024487851187587,-0.046062618494034],[0.056119978427887,0.029268857091665,0.078699797391891],[-0.0072030290029943,0.024176666513085,0.0072068884037435]],[[0.016907047480345,0.0026188620831817,-0.010992308147252],[0.080552935600281,-0.081640794873238,0.02535386942327],[0.15600410103798,0.088013298809528,-0.039735287427902]],[[-0.01684745028615,0.0017718023154885,-0.0074938922189176],[0.016494804993272,-0.012933847494423,0.094273447990417],[0.021489564329386,0.06748104095459,0.044926188886166]],[[0.031466953456402,0.0029479104559869,-0.0092314332723618],[-0.054860949516296,-0.040055930614471,-0.03521703928709],[0.0099140331149101,0.019051473587751,0.050778403878212]],[[0.074024990200996,0.0032975198701024,-0.053654100745916],[0.083957642316818,0.097076676785946,0.02568874694407],[0.060397140681744,-0.012174010276794,0.033218119293451]],[[0.0036817761138082,0.054910864681005,-0.009392274543643],[-0.014402694068849,-0.013981264084578,-0.089714013040066],[0.018803829327226,0.06506484746933,0.0027928894851357]],[[0.016095027327538,-0.0059708640910685,-0.0072920378297567],[-0.060857426375151,-0.096051953732967,0.021350998431444],[-0.039151940494776,-0.04056216776371,0.036095436662436]],[[-0.021826567128301,-0.025357089936733,-0.055364057421684],[0.087679468095303,0.0053102360107005,-0.058811891824007],[0.073385514318943,0.020064817741513,0.0097367130219936]],[[-0.010796681977808,0.14862713217735,0.031194465234876],[-0.011800073087215,0.065279632806778,0.079771868884563],[-0.027118058875203,-0.022755168378353,0.099545501172543]],[[-0.034780945628881,0.035664767026901,-0.053363665938377],[-0.047588847577572,0.021421238780022,-0.03739470615983],[-0.00014723812637385,0.1660537570715,0.03077263943851]],[[0.0017890244489536,-0.015696616843343,0.033666931092739],[-0.044232223182917,0.079051025211811,0.027144847437739],[-0.037101466208696,-0.019238481298089,-0.0034046466462314]],[[0.00086177774937823,0.099634654819965,0.095133818686008],[0.018266920000315,-0.043565254658461,0.10136535763741],[0.02576239220798,0.055995635688305,0.05678429082036]],[[0.0040323939174414,0.061306465417147,-0.00085421046242118],[0.030555451288819,-0.031800668686628,-0.037695810198784],[0.019340617582202,0.049917459487915,0.043351951986551]],[[-0.016930529847741,-0.037385184317827,0.017472608014941],[0.015957674011588,0.020762167870998,0.030434811487794],[0.029039833694696,-0.0069260764867067,0.017117025330663]],[[-0.0085502071306109,-0.018932806327939,0.065231069922447],[0.044717855751514,-0.016110867261887,0.045651093125343],[-0.017380174249411,0.010227983817458,-0.0006158854230307]],[[0.039000160992146,0.089834675192833,0.01725228689611],[0.028959982097149,0.055194061249495,-0.02952447347343],[0.039853494614363,0.10525587946177,0.059091117233038]],[[0.011739647015929,0.0078139267861843,0.036349546164274],[-0.016748243942857,-0.094940111041069,0.014229604974389],[0.04781049862504,0.065837971866131,-0.044836688786745]],[[0.033544521778822,0.044633567333221,0.029076857492328],[0.05239400267601,-0.05356040969491,0.083875022828579],[-0.008785773999989,-0.017027415335178,0.0075841592624784]],[[0.0061016352847219,-0.034727353602648,0.025035744532943],[0.06103204190731,0.031641162931919,-0.016841061413288],[-0.0070698661729693,0.028790652751923,0.079777851700783]],[[0.0045068096369505,-0.03946328908205,0.0094790393486619],[0.0090028923004866,0.034055314958096,-0.0088261784985662],[-0.035479284822941,0.018543122336268,-0.0029927277937531]],[[0.16089054942131,0.076067864894867,0.082162044942379],[0.062010560184717,-0.014380514621735,0.10941660404205],[-0.003917430061847,0.011712808161974,0.015576871111989]],[[0.057589665055275,-0.019587403163314,-0.042921777814627],[-0.024648230522871,0.074543535709381,-0.025624398142099],[0.032953679561615,-0.025125430896878,0.010014087893069]],[[-0.023721938952804,-0.041343376040459,0.02119205519557],[-0.11477793008089,-0.12816524505615,-0.099441573023796],[0.052057825028896,-0.10450576245785,0.038301773369312]],[[-0.022069089114666,0.096678905189037,0.030651113018394],[-0.047214459627867,-0.1165563762188,0.05685817450285],[0.023019405081868,0.024500727653503,-0.11451332271099]],[[-0.035183630883694,-0.01138473674655,-0.062652625143528],[0.11558122932911,0.027398627251387,-0.0025208641309291],[-0.078446932137012,-0.039822604507208,-0.035125818103552]],[[0.045276861637831,-0.0090571967884898,0.13740433752537],[-0.011227073147893,0.018772091716528,-0.018377590924501],[0.012638292275369,0.04159939661622,-0.062407739460468]],[[-0.074315898120403,-0.049149114638567,0.0019396035932004],[-0.040234722197056,-0.01963316090405,-0.064074702560902],[0.1003330051899,-0.0067366883158684,0.11628644913435]],[[0.050672620534897,0.043325301259756,-0.00051601644372568],[0.019615639001131,-0.044801704585552,0.047521132975817],[0.015256121754646,0.016761207953095,-0.12778005003929]],[[-0.12338501960039,-0.051991548389196,-0.067227505147457],[0.0083194505423307,-0.090941615402699,-0.040400303900242],[-0.077887281775475,0.0028256638906896,0.0099099101498723]],[[0.095208220183849,0.030638316646218,0.030552860349417],[-0.008832149207592,0.084488213062286,0.074029803276062],[0.014884389936924,0.042940597981215,0.064402990043163]],[[0.063323028385639,-0.025826796889305,-0.06814844161272],[-0.041710127145052,0.078207835555077,0.094080679118633],[0.07748406380415,0.01459248457104,0.062740638852119]],[[0.10542575269938,-0.055166207253933,-0.04804652929306],[0.059193875640631,0.054629646241665,0.089678786695004],[-0.0083467373624444,0.048288654536009,-0.025689471513033]],[[0.028579382225871,-0.077768251299858,-0.020116062834859],[-0.0061810109764338,-2.6297528165742e-05,0.035781513899565],[-0.014108764007688,0.069866865873337,0.10561784356833]],[[-0.014236385002732,-0.033355247229338,-0.12400561571121],[-0.023769760504365,-0.088444069027901,-0.022314878180623],[0.072102636098862,0.0010716022225097,-0.0070584518834949]],[[-0.059212446212769,-0.091480821371078,0.046279303729534],[-0.10390716791153,-0.016738912090659,-0.030861143022776],[0.093934036791325,0.0088550699874759,-0.025416124612093]],[[-0.0292081348598,-0.13082908093929,-0.0051620076410472],[0.061112608760595,0.039600186049938,0.078628666698933],[-0.017034400254488,0.11953338980675,0.023926513269544]],[[0.07037390768528,-0.030622817575932,-0.012392838485539],[-0.0061427317559719,0.037124510854483,0.013415041379631],[-0.014177352190018,0.022365363314748,-0.028628919273615]],[[0.033335879445076,0.035474590957165,-0.026756472885609],[-0.039770860224962,-0.043606523424387,0.021236354485154],[-0.00098800333216786,0.074116393923759,-0.029439330101013]],[[-0.022813832387328,-0.037648927420378,0.0071444595232606],[0.060963336378336,0.0089228972792625,0.059544570744038],[0.071957260370255,0.03383607044816,0.052885070443153]],[[-0.0040453099645674,-0.045474670827389,0.059216167777777],[-0.010455819778144,-0.0221605617553,-0.034922655671835],[0.023303236812353,0.080322183668613,0.0044671823270619]],[[-0.0099048977717757,0.13634550571442,0.090631008148193],[0.066997274756432,-0.0071569993160665,-0.032764434814453],[0.057401888072491,0.064880460500717,0.16119965910912]],[[0.047454204410315,0.017237780615687,0.016082352027297],[-0.042372316122055,0.051427777856588,0.031294543296099],[0.058261193335056,0.023671867325902,0.013438386842608]]],[[[-0.057718172669411,-0.13566854596138,-0.022625101730227],[0.013819760642946,-0.047669589519501,-0.063216239213943],[-0.027291445061564,-0.054988138377666,-0.022813173010945]],[[-0.0066275857388973,-0.069945402443409,0.031843185424805],[0.012800849042833,-0.0061577041633427,0.0069323154166341],[0.0013606753200293,-0.024933490902185,0.021782292053103]],[[0.078098744153976,-0.0093986270949244,-0.021335247904062],[-0.0017599536804482,-0.008542787283659,0.020872490480542],[0.018671182915568,-0.038821551948786,-0.046962339431047]],[[0.03382633253932,-0.036954782903194,-0.068019293248653],[0.036134202033281,-0.031499870121479,0.032150998711586],[-0.059808943420649,-0.018101273104548,-0.055303137749434]],[[0.045038484036922,0.045731723308563,0.049785327166319],[-0.070896774530411,-0.042194757610559,0.06706990301609],[-0.0032063552644104,-0.0060636000707746,-0.02564980648458]],[[0.073222771286964,0.03888488188386,-0.0039801490493119],[-0.0028611989691854,0.040977228432894,-0.046594947576523],[-0.010687535628676,-0.028655974194407,-0.025194697082043]],[[-0.073811285197735,0.042512815445662,0.10094618797302],[-0.015258426778018,0.14344142377377,0.10960963368416],[-0.0640899091959,0.023518934845924,-0.024986166507006]],[[0.010164393112063,0.010567309334874,-0.031963169574738],[-0.029040601104498,-0.009756718762219,-0.13756760954857],[0.048827473074198,0.054141946136951,-0.078662775456905]],[[0.058179080486298,-0.10482329875231,-0.055916208773851],[-0.017307041212916,0.012098477222025,0.00089264108100906],[-0.015041640028358,-0.1331787109375,0.03234638646245]],[[-0.061171669512987,-0.10508944094181,-0.032637432217598],[0.061997424811125,-0.1827659457922,-0.07491160184145],[0.027186309918761,-0.12776035070419,0.057819582521915]],[[0.038871843367815,0.020028341561556,0.016771180555224],[-0.12571823596954,0.02706933580339,-0.026587683707476],[-0.02692966721952,-0.014939859509468,-0.093255490064621]],[[0.075936518609524,-0.019313305616379,-0.038957837969065],[0.049993693828583,-0.08585112541914,0.086337931454182],[-0.031681973487139,-0.042290557175875,-0.060222204774618]],[[-0.020906986668706,-0.0098089277744293,-0.031471505761147],[0.043706025928259,0.019832035526633,-0.089978419244289],[-0.033066395670176,-0.042355950921774,0.046375554054976]],[[-0.01620183326304,0.088473856449127,-0.051756009459496],[0.0032046800479293,0.10929492861032,-0.0073728621937335],[0.017769776284695,-0.050140712410212,-0.097319535911083]],[[0.0099476799368858,0.17543688416481,-0.17287664115429],[-0.095751896500587,-0.042064532637596,0.020965944975615],[-0.068725869059563,0.051120776683092,0.040990676730871]],[[0.072559647262096,-0.08772137761116,0.012795967981219],[-0.014035853557289,-0.0010418330784887,-0.035233452916145],[0.016375441104174,0.050818160176277,0.01325249671936]],[[-0.035003159195185,-0.020840771496296,-0.088707730174065],[0.024310370907187,-0.057562321424484,-0.030206114053726],[-0.029868418350816,0.047547664493322,-0.051446035504341]],[[0.020647510886192,0.07666601985693,0.017870390787721],[-0.056572742760181,0.041985929012299,-0.0089922705665231],[-0.0028109685517848,-0.091670177876949,0.034888934344053]],[[0.0019693186040968,-0.026185559108853,0.058891173452139],[0.015348449349403,0.042583964765072,0.038579512387514],[-0.0065558268688619,0.033669073134661,0.0055076321586967]],[[-0.06154727563262,0.048350866883993,-0.041594509035349],[-0.087503664195538,0.044876303523779,0.061247035861015],[-0.034324914216995,-0.033410754054785,0.023350037634373]],[[-0.0673793181777,-0.01454811077565,-0.11448162049055],[-0.0037672494072467,-0.073884263634682,-0.036414157599211],[-0.012255760841072,-0.025978988036513,0.020955268293619]],[[-0.028027534484863,-0.03957387432456,-0.030794754624367],[-0.20411649346352,-0.051132187247276,-0.087849453091621],[-0.11161584407091,-0.08060359954834,-0.02810918726027]],[[0.1395325511694,-0.051798462867737,-0.07901469618082],[-0.054109092801809,-0.059539150446653,0.0019712219946086],[-0.021703688427806,-0.027505215257406,-0.069120764732361]],[[-0.06755918264389,-0.074906505644321,0.0022010731045157],[-0.0042437170632184,-0.068984441459179,0.055156897753477],[0.029918497428298,0.01784317009151,-0.092940583825111]],[[-0.10263434797525,0.053631749004126,0.021267959848046],[-0.080714665353298,-0.1321827173233,-0.063786409795284],[-0.042915113270283,-0.014120501466095,0.12794421613216]],[[0.027899477630854,0.024433333426714,-0.091885752975941],[-0.051413301378489,-0.019730078056455,-0.0760198533535],[0.062669828534126,-0.04637810215354,-0.041107133030891]],[[0.036509610712528,-0.11172916740179,-0.078390531241894],[-0.093765310943127,-0.056996501982212,0.070403553545475],[-0.088002368807793,0.056735914200544,0.053454607725143]],[[0.039396226406097,-0.1090224981308,0.027006482705474],[0.032605729997158,-0.060627225786448,-0.046914719045162],[0.042366102337837,-0.010376668535173,0.029492640867829]],[[-0.014624427072704,-0.062250822782516,-0.055634465068579],[0.0056518251076341,0.074559569358826,-0.08209103345871],[0.020070957019925,-0.021040642634034,-0.058754548430443]],[[-0.055047784000635,0.084565870463848,0.02678587846458],[-0.023209417238832,-0.0022901627235115,-0.073517106473446],[0.028905099257827,0.010685441084206,-0.068099364638329]],[[-0.027398630976677,-0.035709720104933,-0.016905698925257],[-0.06340167671442,-0.080819889903069,-0.015022903680801],[0.021217487752438,0.027968438342214,0.010920010507107]],[[-0.034702561795712,-0.0040386081673205,-0.086101584136486],[-0.012643282301724,-0.015803743153811,-0.01098519936204],[-0.070878483355045,-0.029952619224787,-0.03384705632925]],[[0.0052068009972572,-0.02698215469718,0.002938921796158],[0.031049536541104,-0.049033012241125,-0.057324901223183],[-0.019007679075003,-0.0037604095414281,-0.026460887864232]],[[-0.024448929354548,0.085719719529152,0.029121110215783],[0.01532235275954,0.01478158030659,-0.027476793155074],[0.035902615636587,0.090167015790939,-0.02818650752306]],[[-0.049184527248144,-0.068695232272148,0.046584524214268],[-0.00911636184901,-0.11027161031961,-0.035012695938349],[3.4246677387273e-06,-0.012653109617531,-0.044474199414253]],[[0.040567442774773,-0.041101559996605,-0.0056926985271275],[-0.066766157746315,0.039596237242222,-0.0060930158942938],[-0.044795524328947,0.063775658607483,0.05212851241231]],[[0.027622090652585,0.024147614836693,0.01911199092865],[0.064718328416348,-0.09250894933939,0.012446968816221],[0.03664768487215,-0.029363149777055,-0.0788484364748]],[[-0.057624600827694,-0.0033645716030151,0.0069627924822271],[0.073313735425472,-0.01360419485718,-0.062576249241829],[0.017138991504908,0.015884924679995,-0.043095916509628]],[[0.017743790522218,-0.0098508410155773,0.041997145861387],[0.0033424359280616,0.029752863571048,0.040228042751551],[0.010715617798269,-0.061208892613649,0.0107511440292]],[[0.052320927381516,0.020457373932004,0.017961839213967],[0.0025264299474657,-0.053024489432573,0.036546155810356],[0.031858243048191,0.0078765209764242,-0.012795098125935]],[[0.039611648768187,0.074655771255493,0.037614796310663],[-0.022073742002249,0.043549943715334,0.052892558276653],[0.023293390870094,-0.011081804521382,-0.064222775399685]],[[-0.047747790813446,-0.024368993937969,0.037343889474869],[-0.059303488582373,-0.0056899408809841,0.061266008764505],[-0.055103033781052,0.050701677799225,0.0089505268260837]],[[-0.04741932079196,0.022091239690781,-0.1327610462904],[0.016382690519094,-0.050341337919235,0.074260681867599],[-0.026259269565344,0.046830505132675,-0.044348526746035]],[[-0.011043759062886,0.015049079433084,0.034745845943689],[0.013472490943968,0.008303364738822,-0.087667688727379],[0.0016712747747079,0.0057061430998147,0.056760508567095]],[[0.041928499937057,-0.042759019881487,-0.022715779021382],[0.050335023552179,-0.020990954712033,0.012825866229832],[0.072026453912258,-0.035351414233446,0.01515304017812]],[[0.041941922158003,-0.024249732494354,-0.074849829077721],[-0.075765140354633,-0.082485273480415,-0.016160180792212],[-0.048215322196484,0.12072721123695,-0.042349427938461]],[[0.01782139390707,0.017632940784097,0.0038045551627874],[-0.06722716987133,-0.022638956084847,0.013904778286815],[0.050567902624607,-0.025599598884583,-0.11997535079718]],[[-0.039024867117405,0.057917781174183,-0.032882913947105],[0.069304540753365,0.02386979945004,-0.060240443795919],[-0.028830928727984,-0.036420427262783,0.032156955450773]],[[-0.14217060804367,-0.071936093270779,-0.016394201666117],[-0.013444796204567,-0.0030203424394131,-0.013574343174696],[-0.062632530927658,-0.0082653984427452,-0.033449653536081]],[[-0.028396174311638,0.0061392644420266,-0.050070989876986],[-0.021462131291628,-0.051703572273254,-0.075976505875587],[-0.0021309505682439,0.029355840757489,0.013477078638971]],[[-0.0027421386912465,-0.018807578831911,-0.0199832059443],[-0.017296859994531,0.011612306348979,0.041214041411877],[0.034086115658283,-0.092173703014851,0.00015507012722082]],[[-0.0069787045940757,-0.034240797162056,-0.070873096585274],[-0.069511316716671,-0.017818134278059,0.11987543851137],[-0.13168609142303,-0.059361409395933,0.013990459032357]],[[0.022868938744068,0.01276127807796,0.0035024932585657],[-0.064942896366119,-0.039214856922626,-0.042928520590067],[-0.045387655496597,-0.0061660860665143,-0.019121766090393]],[[-0.019124038517475,0.021537996828556,-0.11413614451885],[0.050639148801565,-0.091249287128448,0.0064424970187247],[0.031556952744722,0.051308784633875,-0.090999156236649]],[[-0.063973121345043,0.057823617011309,0.00052609544945881],[0.038150731474161,0.0057180877774954,-0.06624536216259],[-0.0070596341975033,0.045976366847754,0.077830247581005]],[[-0.037467177957296,-0.039436034858227,0.0047668078914285],[-0.03672257065773,-0.091118551790714,0.026839420199394],[0.012917165644467,0.054839842021465,0.014109483920038]],[[-0.061579816043377,-0.13927459716797,-0.021677983924747],[-0.017774978652596,0.01263865083456,-0.045969184488058],[0.10704977810383,0.0032387042883784,-0.032204985618591]],[[-0.075006388127804,-0.07863937318325,0.0027802139520645],[-0.1076187863946,0.022037914022803,-0.043442744761705],[0.020791592076421,0.033834557980299,-0.026980450376868]],[[0.040758967399597,0.10546299815178,0.018161626532674],[0.052606794983149,-0.033454369753599,0.031636957079172],[-0.02942243590951,0.034715209156275,-0.058857955038548]],[[0.014111223630607,0.0052494299598038,-0.069416359066963],[-0.13936872780323,0.052768837660551,-0.0050552962347865],[0.051529131829739,-0.10325007885695,-0.075522698462009]],[[-5.6798184232321e-05,0.02372220531106,-0.084017403423786],[-0.065847769379616,-0.04993275180459,0.006037499755621],[0.061651855707169,-0.029376996681094,-0.038881558924913]],[[-0.010710095986724,-0.0079398658126593,-0.0042569302022457],[0.045646514743567,0.033313982188702,0.035187166184187],[0.065824300050735,0.00019684838480316,-0.025823740288615]],[[-0.047741457819939,0.025768484920263,0.017554515972733],[0.03317953273654,0.010358341038227,0.044527132064104],[-0.0082807298749685,0.043018586933613,0.014025817625225]],[[-0.03197194263339,-0.04637124016881,0.00089334952645004],[-0.00051913835341111,-0.084727384150028,0.098909944295883],[-0.066607266664505,0.082904316484928,-0.0019978338386863]],[[0.0153968045488,0.048613794147968,0.034428328275681],[0.048458930104971,-0.086500510573387,0.029163232073188],[-0.062340147793293,0.029665239155293,0.084613390266895]],[[-0.049299959093332,0.014134420081973,-0.026412859559059],[0.027661656960845,-0.037650093436241,0.021405721083283],[-0.045948211103678,-0.014196308329701,-0.012553717009723]],[[-0.1275762617588,0.0064596547745168,-0.0207693669945],[-0.081252507865429,-0.0056036510504782,-0.034896925091743],[-0.058097060769796,-0.088370628654957,-0.0014446718851104]],[[0.029660888016224,-0.060557164251804,0.0044469246640801],[-0.018772983923554,-0.062548466026783,0.024120341986418],[-0.0067777559161186,-0.057730529457331,-0.016547279432416]],[[-0.011699350550771,0.061615694314241,-0.0055860760621727],[-0.010043682530522,0.011618117801845,0.03307818248868],[0.024284588173032,-0.067310340702534,-0.0061936662532389]],[[0.012913351878524,-0.10288499295712,-0.034751079976559],[-0.093441322445869,0.059639036655426,0.0125812292099],[-0.00025166035629809,-0.12037616223097,0.0053119175136089]],[[0.0098944352939725,0.003574863774702,0.005300214048475],[-0.041992194950581,-0.04856039956212,0.098821572959423],[-0.070058196783066,0.036233384162188,-0.0029197996482253]],[[-0.069211952388287,-0.12040109187365,0.01386877708137],[0.0041770758107305,-0.029503347352147,-0.0050436165183783],[0.050579484552145,0.068822123110294,-0.11226139217615]],[[0.026981566101313,0.064304709434509,-0.042793154716492],[0.080990090966225,-0.0031362932641059,0.0042588147334754],[0.026464335620403,0.018890868872404,-0.035489846020937]],[[-0.08970432728529,0.0022545664105564,0.062371321022511],[-0.0096477400511503,-0.035781316459179,-0.078330017626286],[0.0472611784935,-0.0065538166090846,-0.064450263977051]],[[-0.10102438926697,-0.077236622571945,-0.057492300868034],[-0.093316525220871,0.001506759901531,0.019493348896503],[-0.049174480140209,-0.017198123037815,-0.086400911211967]],[[-0.013989398255944,-0.034358154982328,0.043903578072786],[-0.039871551096439,-0.028396051377058,-0.033980883657932],[-0.042155750095844,-0.0095927584916353,0.011639904230833]],[[-0.016081696376204,-0.021672191098332,0.062257245182991],[-0.04942998662591,-0.037292890250683,0.061961438506842],[-0.050043985247612,-0.015892338007689,-0.076039277017117]],[[-0.0012535841669887,-0.049912381917238,-0.088874995708466],[0.080481246113777,-0.010280040092766,-0.12301964312792],[-0.05345568805933,-0.09187638014555,0.0066217896528542]],[[-0.16313900053501,0.05742110311985,0.053484316915274],[-0.026464527472854,-0.022673428058624,-0.00092520675389096],[-0.068268194794655,-0.030173556879163,-0.043648969382048]],[[0.027045162394643,0.036458887159824,-0.13092312216759],[-0.030588822439313,0.066736064851284,0.027779234573245],[-0.0026656168047339,0.0063032512553036,0.00010819519229699]],[[0.008458910509944,0.038572177290916,-0.043739229440689],[-0.0463653691113,-0.077347345650196,-0.065913192927837],[-0.017431044951081,-0.071100428700447,-0.0054337219335139]],[[-0.050762597471476,0.076534301042557,0.043326254934072],[-0.0814004316926,-0.056850079447031,-0.016032919287682],[-0.021576812490821,0.047010719776154,-0.046961504966021]],[[-0.021360957995057,-0.10154257714748,-0.034603603184223],[-0.037140320986509,0.049488753080368,-0.043071415275335],[-0.072562053799629,-0.05719331651926,0.04593113437295]],[[0.011873703449965,-0.011728112585843,-0.049011241644621],[0.021368144080043,-0.039115786552429,-0.0096933552995324],[0.037585135549307,-0.0194147285074,0.0071427584625781]],[[-0.0080006811767817,-0.054775517433882,0.021323690190911],[0.046049732714891,-0.009730638936162,0.033222991973162],[-0.018464602530003,0.048563979566097,0.044236373156309]],[[0.03077488951385,0.048245910555124,0.044053595513105],[-0.0050518903881311,0.036856029182673,0.11041393131018],[-0.028956651687622,-0.016747543588281,-0.030802866443992]],[[0.017487166449428,0.032426614314318,-0.018192425370216],[-0.074756272137165,0.093337006866932,0.047600951045752],[0.0035691699013114,-0.03945729136467,-0.023446267470717]],[[0.0079061314463615,-0.0068282126449049,0.063477508723736],[-0.0060426751151681,0.028520369902253,-0.040869619697332],[0.0017550009069964,-0.027506722137332,-0.13442094624043]],[[0.011099802330136,0.069686852395535,-0.10365665704012],[0.0076965363696218,0.018285602331161,0.01658033952117],[0.016314242035151,0.035524930804968,-0.012075359001756]],[[-0.036500781774521,-0.023409008979797,0.02953789010644],[0.047867406159639,0.0092373248189688,-0.029518820345402],[-0.047648422420025,-0.043077483773232,0.057241592556238]],[[-0.082944951951504,-0.078774847090244,-0.1243758648634],[-0.0039476752281189,-0.0022811247035861,0.022514345124364],[0.0014924238203093,0.057620037347078,0.012519103474915]],[[0.026063710451126,-0.02009610645473,-0.093687273561954],[0.015009911730886,-0.0094947805628181,-0.0283696167171],[0.028044603765011,-0.032519791275263,0.033342115581036]],[[0.028268033638597,0.034355513751507,-0.040484189987183],[0.05370019748807,-0.11761580407619,0.065870366990566],[-0.025177801027894,-0.06287132948637,-0.091241359710693]],[[-0.018458109349012,-0.046118620783091,-0.044177804142237],[-0.060008160769939,0.011972987093031,0.011699134483933],[-0.036981999874115,0.00047678267583251,0.033388942480087]],[[-0.10808002203703,0.098286055028439,-0.026908835396171],[0.05667856708169,-0.07745798677206,-0.10883653908968],[0.10256673395634,-0.16574370861053,0.031054550781846]],[[-0.029556652531028,-0.052585836499929,0.037353731691837],[-0.10851591080427,-0.069099344313145,-0.07365208119154],[0.06918241083622,-0.0099564762786031,0.050590075552464]],[[-0.014858635142446,-0.0024021614808589,-0.045864552259445],[0.12279384583235,0.0040763043798506,-0.010203029029071],[-0.023764943704009,-0.076142244040966,-0.066177502274513]],[[-0.10346785187721,0.015175920911133,-0.027361661195755],[0.051718678325415,0.11041636019945,-0.028449239209294],[-0.06120590865612,-0.10548440366983,0.057072661817074]],[[-0.032238099724054,-0.045725513249636,0.018974222242832],[0.10295510292053,0.10407840460539,-0.029994899407029],[0.024880880489945,-0.034548573195934,-0.011841647326946]],[[-0.016171323135495,0.024676136672497,-0.052065886557102],[-0.054113879799843,-0.04402206838131,-0.043902259320021],[-0.01923718675971,0.0013658290263265,-0.0066050603054464]],[[-0.019934993237257,0.083186566829681,0.024261696264148],[-0.022038478404284,0.085402436554432,0.021256813779473],[-0.0097724050283432,0.033185109496117,-0.037698317319155]],[[-0.10676766186953,-0.078135944902897,-0.081358894705772],[-0.029798505827785,-0.2003575116396,-0.018980864435434],[-0.10926774144173,-0.033773962408304,7.438515604008e-05]],[[-0.011543633416295,-0.0053374692797661,-0.071303181350231],[0.095232702791691,-0.030850764364004,-0.0058370814658701],[-0.060909442603588,0.088174596428871,-0.021911304444075]],[[0.0071862684562802,0.0087743522599339,-0.088987685739994],[0.04934474080801,-0.035765636712313,-0.057206857949495],[0.05442837998271,0.0038656084798276,-0.060876064002514]],[[0.020295850932598,0.066729299724102,-0.045094057917595],[-0.12058812379837,-0.082832463085651,0.005107868462801],[-0.013047877699137,-0.014895534142852,-0.042443212121725]],[[-0.011018265038729,0.026833223178983,-0.071451626718044],[-0.054950311779976,0.012691549956799,0.041604869067669],[0.010675000026822,-0.078477017581463,-0.036494307219982]],[[-0.073100566864014,-0.013715767301619,-0.088402569293976],[0.041930858045816,0.025748973712325,-0.061666011810303],[0.0079981135204434,-0.012246936559677,0.04408897459507]],[[-0.0088936537504196,-0.08774197101593,0.061490502208471],[0.096862427890301,-0.03480276465416,-0.11977491527796],[-0.038138400763273,-0.11396246403456,-0.040753204375505]],[[0.057989723980427,0.044933084398508,0.038554325699806],[0.0077046044170856,0.027292191982269,-0.097599104046822],[-0.049800232052803,-0.014293470419943,-0.012810602784157]],[[0.0034628729335964,0.032096281647682,-0.028575003147125],[0.039521962404251,0.080635368824005,-0.083083942532539],[0.04035384580493,0.02911239862442,-0.041578624397516]],[[-0.033980246633291,0.032354813069105,-0.054973218590021],[0.005741024389863,-0.037426128983498,0.044430244714022],[-0.0061258408240974,-0.038532048463821,0.060794208198786]],[[-0.00034313977812417,-0.0053490158170462,-0.05467725917697],[0.017711082473397,0.029014797881246,0.00044262196752243],[-0.032488558441401,0.0042962706647813,-0.0054061687551439]],[[-0.0038181783165783,-0.025595135986805,0.016798557713628],[0.1385635882616,0.032302223145962,-0.046019800007343],[0.040205061435699,-0.00274264276959,0.017029281705618]],[[0.041210353374481,-0.078993074595928,-0.032421365380287],[0.084173902869225,0.044298227876425,-0.030789684504271],[-0.092011965811253,-0.0012117172591388,-0.020943563431501]],[[-0.060655571520329,0.05757924541831,-0.086768910288811],[0.020903956145048,-0.034095097333193,0.0047742440365255],[0.07660385966301,0.042539242655039,0.018300639465451]],[[0.033337637782097,0.032822709530592,-0.032458133995533],[0.051080171018839,0.050173494964838,0.01413531973958],[-0.055260881781578,0.026352122426033,0.026382215321064]],[[0.009429756551981,-0.064337097108364,0.036745477467775],[-0.044955395162106,-0.0026940628886223,0.060397379100323],[0.016511043533683,-0.035353377461433,-0.035172928124666]],[[0.019118605181575,-0.026013258844614,0.029165459796786],[0.0037529065739363,-0.0025839125737548,-0.037385307252407],[-0.062119197100401,-0.059137392789125,0.01747359149158]],[[0.0012163127539679,-0.13551537692547,-0.023561367765069],[0.077806569635868,0.024654928594828,0.056883163750172],[0.026520224288106,-0.018346687778831,-0.036154929548502]],[[0.080153502523899,0.12150517106056,0.083230763673782],[0.072815261781216,0.10534555464983,0.071203760802746],[0.027894288301468,0.093764252960682,0.02754208445549]],[[-0.01872480660677,-0.014540396630764,0.023864662274718],[0.040501721203327,0.033484689891338,0.027452938258648],[-0.047090899199247,-0.053973063826561,-0.0082653546705842]],[[-0.083954304456711,0.00018354985513724,-0.051793478429317],[-0.046385854482651,-0.050796225667,0.021554257720709],[-0.043419439345598,-0.041450593620539,0.016116358339787]],[[0.055394183844328,0.0072694504633546,-0.026741422712803],[0.0057056085206568,-0.058606900274754,-0.064196698367596],[-0.033633526414633,0.035505328327417,-0.078438453376293]],[[0.042399760335684,0.068415559828281,-0.020816463977098],[-0.051356870681047,0.023112570866942,-0.046775173395872],[0.020524207502604,-0.027739159762859,-0.022116091102362]],[[0.021026883274317,0.0047891256399453,0.062416754662991],[0.010428650304675,0.015731979161501,0.014490511268377],[-0.011654458008707,-0.024244165048003,-0.0056533366441727]],[[0.022552916780114,-0.079742304980755,-0.056621819734573],[0.012315928004682,-0.043486494570971,-0.028651382774115],[0.026646165177226,-0.035392507910728,-0.048759896308184]],[[-0.034280017018318,-0.0065207541920245,0.0084143569692969],[0.10542675107718,-0.051306385546923,-0.013989589177072],[-0.077400825917721,0.038803648203611,0.07134173065424]],[[0.051117748022079,0.075048431754112,0.055294223129749],[-0.0099085923284292,0.017432494089007,0.064399935305119],[0.019642177969217,0.003486217232421,-0.014701494015753]]],[[[0.096351869404316,-0.017598273232579,-0.016378007829189],[-0.025826627388597,0.005697226151824,-0.059849295765162],[-0.00017663909238763,-0.10530519485474,0.078758701682091]],[[0.00038826302625239,-0.03445840626955,0.016281172633171],[-0.013507381081581,0.02773411385715,-0.03647081181407],[0.023918252438307,0.021121928468347,0.039921637624502]],[[0.04147170856595,-0.032023120671511,-0.044655498117208],[0.0067269974388182,0.0022581850644201,-0.01849796436727],[-0.020683653652668,0.059689290821552,-0.055974684655666]],[[-0.066657684743404,0.04095259308815,-0.059524066746235],[0.053707882761955,-0.023204393684864,-0.022709814831614],[0.050982173532248,-0.01711343973875,0.03473648801446]],[[-0.0025264862924814,-0.043121885508299,-0.018392177298665],[0.029943527653813,0.049507327377796,-0.060527425259352],[0.0059605771675706,-0.011130319908261,-0.057256497442722]],[[0.0071927267126739,-0.077659331262112,0.11917020380497],[-0.077610157430172,0.07327339053154,0.053923755884171],[0.011713012121618,0.036687731742859,-2.39982327912e-05]],[[0.026008808985353,0.061649218201637,0.0050050443969667],[0.054772984236479,-0.022051652893424,-0.021342093124986],[-0.040778059512377,-0.020705133676529,-0.045832060277462]],[[0.02570229396224,-0.027542665600777,-0.026790957897902],[-0.044422872364521,0.023259878158569,-0.047313597053289],[0.037409443408251,0.030209444463253,0.018631527200341]],[[0.052938804030418,-0.039940554648638,-0.043778710067272],[-0.12156384438276,-0.021334808319807,0.0089895967394114],[0.088173434138298,0.039415512233973,0.048265628516674]],[[0.1740829795599,0.12917445600033,-0.061357375234365],[-0.049066368490458,-0.041799161583185,0.12040036171675],[0.09057380259037,0.013239150866866,0.055860944092274]],[[0.041603926569223,-0.0073044877499342,0.072608038783073],[0.069342568516731,-0.041535623371601,-0.028207112103701],[0.023247485980392,0.03665854036808,0.003886261023581]],[[0.080781064927578,0.046557825058699,-0.018988655880094],[0.0098511446267366,0.009960975497961,0.023845311254263],[0.015531177632511,0.022059667855501,0.00085988402133808]],[[-0.012272226624191,-0.044656660407782,-0.04737389087677],[0.041005879640579,0.055680010467768,0.02564650028944],[-0.013872470706701,0.065863311290741,-0.021661076694727]],[[0.096861034631729,0.034223675727844,0.002997012808919],[0.041312623769045,-0.013682967983186,-0.021862326189876],[0.021998370066285,0.076482467353344,-0.034531086683273]],[[0.021313650533557,-0.078953921794891,0.023843917995691],[0.12690114974976,0.2042852640152,-0.077635727822781],[-0.058279376477003,0.11592754721642,0.087647326290607]],[[-0.073158651590347,-0.027724292129278,-0.020298784598708],[-0.0038314871490002,-0.015379870310426,-0.058582559227943],[0.0083866128697991,-0.08857849240303,0.006738587282598]],[[0.0050115631893277,-0.04291695356369,0.02850846759975],[-0.014450306072831,-0.014377481304109,-0.031566310673952],[-0.046122726052999,-0.057525958865881,-0.062831752002239]],[[0.011738885194063,0.04567938670516,0.024636890739202],[0.012690590694547,0.018455006182194,0.049199029803276],[-0.015582873485982,0.005239637568593,0.00048986962065101]],[[-0.043998006731272,0.029478281736374,-0.036235176026821],[0.016096647828817,0.0053506437689066,0.058246586471796],[0.029562225565314,-0.029513681307435,-0.055792089551687]],[[0.055932197719812,0.004318896215409,0.013248150236905],[0.020407656207681,-0.0041832108981907,-0.041465695947409],[0.0049257543869317,-0.034024626016617,0.079327560961246]],[[0.0036288648843765,-0.034944176673889,-0.0031307230237871],[0.036036241799593,-0.045193985104561,0.031708344817162],[-0.047888170927763,-0.047554414719343,0.079346857964993]],[[0.083472169935703,0.0644850730896,0.083666779100895],[0.11945806443691,0.071070142090321,0.033095993101597],[0.049702774733305,0.037141043692827,0.10891651362181]],[[-0.011806134134531,0.030972616747022,0.036152392625809],[0.029318375512958,-0.018046567216516,-0.085915118455887],[-0.0010094705503434,-0.05763316527009,-0.011308904737234]],[[-0.014995175413787,-0.08565504103899,0.034432116895914],[0.010884811170399,-0.035503406077623,-0.031512945890427],[0.048941552639008,0.056655749678612,0.060216464102268]],[[0.081597119569778,-0.014811938628554,0.085824176669121],[0.09635403752327,3.9090809877962e-06,0.0033783076796681],[0.047185834497213,0.048021346330643,-0.018256822600961]],[[0.014201796613634,0.0306625533849,0.061305705457926],[-0.066743366420269,0.024141265079379,-0.023463126271963],[-0.042012646794319,-0.03985508158803,0.017276614904404]],[[-0.046382732689381,0.018741864711046,0.011566144414246],[0.024627903476357,-0.02094797603786,0.025692040100694],[0.058524496853352,0.029456499963999,0.13314799964428]],[[0.0041374657303095,0.084444053471088,-0.046137120574713],[0.038438584655523,-0.033856227993965,-0.021044552326202],[0.090594358742237,2.2473228455056e-05,0.007777709979564]],[[0.028547229245305,-0.049731161445379,-0.065864659845829],[0.065997503697872,-0.027517423033714,-0.013133436441422],[0.089823499321938,0.0073892027139664,0.026816006749868]],[[-0.031627599149942,-0.04577811434865,-0.040733303874731],[0.0087396344169974,0.021252386271954,0.029904212802649],[0.062996484339237,0.0064294273033738,-0.010656191967428]],[[0.03189130499959,0.0012326777214184,-0.029030477628112],[0.0043901284225285,0.0027223823126405,0.05876550078392],[0.019935896620154,0.018636303022504,0.043522119522095]],[[0.01631055958569,-0.034206632524729,0.01511003356427],[-0.058871630579233,0.01998514868319,-0.033715385943651],[0.0091877104714513,0.00054799986537546,0.05033740401268]],[[-0.019793109968305,-0.014373557642102,-0.016057094559073],[-0.027155477553606,-0.038984000682831,-0.003418373176828],[-0.0099243158474565,0.018857017159462,0.075954221189022]],[[-0.00045579150901176,0.03173104301095,0.11290327459574],[0.012837593443692,-0.0044933259487152,0.072813138365746],[0.0082552554085851,-0.038223203271627,-0.076474912464619]],[[0.0019265352748334,-0.056560676544905,0.050157520920038],[0.044163845479488,0.035957686603069,-0.014340641908348],[-0.024951992556453,0.062151748687029,0.10783960670233]],[[-0.048109881579876,-0.015757270157337,0.0033782827667892],[-0.030469572171569,-0.047820322215557,0.00010529446444707],[0.0068045402877033,-0.059387359768152,-0.022864148020744]],[[-0.050329715013504,0.0446144528687,-0.014673964120448],[-0.022168569266796,-0.0011500745313242,0.021820452064276],[-0.011694706976414,-0.007151051890105,-0.059498354792595]],[[0.04948466271162,-0.048324830830097,0.097301624715328],[-0.034394480288029,-0.043577443808317,-0.0092152571305633],[0.029637943953276,0.037838246673346,-0.019235549494624]],[[-0.015803206712008,0.022613873705268,0.017229998484254],[0.0071617863141,0.050856985151768,0.049713902175426],[0.067800156772137,0.035563811659813,-0.020436694845557]],[[0.019040806218982,0.0014387186383829,-0.036568783223629],[0.064700774848461,-0.071980215609074,0.017158089205623],[0.1188517510891,0.082539156079292,-0.015059486031532]],[[0.037979878485203,0.032892920076847,0.031779922544956],[0.050954550504684,-0.03471390530467,0.038141369819641],[-0.063942566514015,-0.0093933194875717,0.03389385342598]],[[-0.033691521733999,-0.00040996802272275,-0.022005777806044],[-0.059577878564596,-0.00099575868807733,0.0074652014300227],[-0.016623638570309,0.082687802612782,0.017706306651235]],[[0.046524737030268,0.0064358995296061,0.0016761752776802],[-0.014070683158934,0.11755949258804,0.078273020684719],[0.009079466573894,-0.024181231856346,0.01555613707751]],[[0.040112636983395,-0.0047923224046826,-0.024722108617425],[0.026216927915812,0.0087879784405231,0.019452197477221],[0.030131367966533,0.049625534564257,0.027887342497706]],[[0.03902431204915,-0.01005080062896,-0.010755883529782],[0.002601039595902,-0.013427860103548,0.032558854669333],[0.031672298908234,-0.016213037073612,0.018351938575506]],[[-0.0093140648677945,-0.027969866991043,0.055585622787476],[-0.041328646242619,-0.026629272848368,-0.023801816627383],[-0.0006833805819042,0.023043552413583,0.0077665536664426]],[[0.024339148774743,0.0076178195886314,0.011624374426901],[0.081478141248226,-0.028156721964478,0.049510169774294],[0.087339453399181,0.018303519114852,-0.023295860737562]],[[0.003954054787755,-0.0053237779065967,-0.056195084005594],[0.024797223508358,0.071381784975529,0.0002561436558608],[0.046071376651525,0.054039180278778,0.029704429209232]],[[-0.014666094444692,0.037975735962391,0.017309170216322],[-0.032565504312515,-0.062149293720722,0.025677025318146],[0.0024308015126735,0.095751032233238,-0.09307437390089]],[[-0.086889564990997,0.0024564808700234,0.010402764193714],[-0.033049929887056,-0.062727354466915,-0.00054253230337054],[-0.0033735739998519,-0.03542360290885,-0.043065689504147]],[[-0.027960127219558,-0.068604953587055,0.011188199743629],[-0.054706498980522,-0.15350230038166,0.082403227686882],[-0.031777430325747,0.028086092323065,-0.047034632414579]],[[-0.057818870991468,0.044967133551836,0.056064765900373],[-0.019884500652552,-0.015780817717314,0.026696527376771],[-0.038245499134064,-0.033381268382072,0.045967001467943]],[[0.044537056237459,-0.041514623910189,0.013609991408885],[0.056531578302383,0.11200733482838,-0.021518301218748],[-0.024437095969915,0.021672351285815,0.048181869089603]],[[0.038683850318193,-0.012540768831968,-0.11268406361341],[0.021011719480157,0.011793293990195,-0.0083464859053493],[0.10527888685465,0.0041911723092198,0.097530648112297]],[[0.023628104478121,-0.016323147341609,-0.011223874986172],[0.032366000115871,-0.026384240016341,0.0098478449508548],[0.032720629125834,0.041633348912001,0.034861788153648]],[[-0.025015607476234,0.017405357211828,-0.00016873306594789],[0.054390914738178,-0.0033800201490521,-0.074005797505379],[-0.019093248993158,0.0030188970267773,0.00028022867627442]],[[0.037521660327911,-0.069506607949734,0.0035841523203999],[0.018083518370986,-0.032055929303169,0.01671039685607],[-0.0012556577567011,0.0067263031378388,-0.01136555057019]],[[-0.075450882315636,-0.00041057914495468,0.013723460957408],[0.029748579487205,0.08086784183979,-0.043628357350826],[0.020641623064876,0.10513806343079,-0.096211977303028]],[[-0.020467672497034,-0.0038190358318388,0.010955430567265],[0.0051453057676554,-0.033226873725653,0.040607418864965],[0.12249276787043,0.050581131130457,-0.015374256297946]],[[0.04907988011837,0.052912216633558,0.081729382276535],[-0.056889783591032,0.031949397176504,0.039316717535257],[-0.0066915149800479,-0.0028262722771615,-0.033099167048931]],[[0.051849626004696,0.014787536114454,0.012732453644276],[-0.020888073369861,0.016975298523903,0.028955260291696],[-0.10238865017891,-0.016980398446321,0.026883162558079]],[[-0.0018589515239,0.035029958933592,0.019655773416162],[-0.012118675746024,0.069904379546642,-0.019334141165018],[-0.0016494691371918,0.064017876982689,0.0045980317518115]],[[0.023350350558758,-0.0030922153964639,0.029801236465573],[-0.001813878538087,-0.017505828291178,0.036668475717306],[-0.013262744061649,0.023688877001405,-0.028437366709113]],[[0.041481859982014,0.073726274073124,-0.014012604020536],[-0.095587767660618,-0.0049801371060312,0.0020731578115374],[0.0031158574856818,0.024563238024712,-0.050338204950094]],[[0.0086427349597216,-0.076021805405617,0.054353315383196],[0.035307727754116,-0.046063303947449,0.045871436595917],[0.031360123306513,-0.027196187525988,-0.032777950167656]],[[0.046478636562824,0.010941089130938,-0.0060043749399483],[0.0034387630876154,-0.014516143128276,-0.072611562907696],[0.0063956510275602,-0.03148439899087,0.002643215470016]],[[0.024836083874106,0.071727193892002,-0.013202875852585],[0.062290456146002,0.11196494847536,0.084012299776077],[-0.031387954950333,-0.088053166866302,0.076649643480778]],[[0.031608011573553,-0.030704854056239,-0.01456415001303],[0.063074640929699,0.0061453059315681,-0.034251194447279],[-0.032262925058603,0.029975924640894,-0.03752563893795]],[[0.028319058939815,-0.01818922534585,0.10801450908184],[0.0091816009953618,0.066734045743942,-0.036210712045431],[-0.020589517429471,-0.053193405270576,-0.00085886643500999]],[[0.027214663103223,0.015093765221536,0.021080182865262],[0.016021240502596,0.064822167158127,0.042823415249586],[-0.009257473051548,0.0016347707714885,0.050351180136204]],[[-0.068456277251244,-0.018566478043795,0.020871268585324],[0.0020732975099236,-0.04970121383667,0.012420707382262],[-0.0096738133579493,0.063009686768055,-0.027642348781228]],[[0.018996758386493,-0.038337647914886,0.00279506505467],[-0.015990966930985,-0.023145988583565,0.026030907407403],[-0.015293858014047,0.081036880612373,0.061617538332939]],[[0.022667737677693,0.058591596782207,0.0027151305694133],[0.11225145310163,-0.019455034285784,0.030405635014176],[0.04818082228303,-0.0042145852930844,0.045315723866224]],[[0.10212127864361,-0.013688586652279,-0.01728137023747],[-0.037750523537397,-0.0094540044665337,0.044041384011507],[0.00031947405659594,-0.037517432123423,-0.0036293037701398]],[[-0.029930112883449,0.0087160086259246,0.028909578919411],[-0.052186459302902,-0.062586456537247,-0.0082478169351816],[0.03032374382019,0.032512344419956,0.045193206518888]],[[0.060971904546022,0.011942654848099,0.059601534157991],[0.029469480738044,-0.035705164074898,-0.059731993824244],[0.028281876817346,0.035574574023485,-0.01623909547925]],[[0.00084694364340976,-0.053938008844852,-0.01970305852592],[-0.049705792218447,0.033724587410688,-0.06165174394846],[-0.04858236759901,-0.035850219428539,-0.049757808446884]],[[0.044170055538416,-0.009161832742393,0.041728168725967],[-0.015207589603961,0.037843782454729,0.017054958269],[0.0073331207968295,0.025912528857589,-0.04980792850256]],[[0.079790756106377,0.068992160260677,0.0090901870280504],[0.015521223656833,0.0081819286569953,-0.0015273933531716],[0.018260344862938,0.057412564754486,-0.039370130747557]],[[0.0040773781947792,-0.070975951850414,0.03554593026638],[-0.064526803791523,0.043092384934425,-0.022363098338246],[0.084791608154774,-0.012984682805836,0.0025271568447351]],[[-0.047326937317848,0.033598110079765,-0.033859450370073],[-0.0060275779105723,0.04706247150898,-0.035647124052048],[0.0061927386559546,0.011828632093966,-0.037289034575224]],[[0.04189096391201,-0.022628301754594,0.050719752907753],[0.039645191282034,0.0071584107354283,-0.024251572787762],[0.01702176220715,0.026489309966564,0.021765163168311]],[[-0.069593869149685,0.00095053733093664,-0.0060409852303565],[0.062647894024849,-0.048349648714066,0.029206179082394],[0.0034074911382049,-0.0094915768131614,0.043876215815544]],[[-0.077771499752998,-0.028211863711476,-0.012488751672208],[-0.010813800618052,-0.010351883247495,-0.058884508907795],[0.021822711452842,-0.022732071578503,-0.027562567964196]],[[-0.064445734024048,-0.0013221537228674,0.049019038677216],[0.022865979000926,-0.082943245768547,-0.011570631526411],[0.060482650995255,0.013269561342895,0.062284514307976]],[[-0.063842311501503,0.00093525310512632,0.072586990892887],[-0.067359946668148,-0.071284860372543,-0.015001508407295],[0.045026112347841,0.018903292715549,-0.083964005112648]],[[0.0014139079721645,-0.030193831771612,0.059710297733545],[0.029636377468705,0.024441266432405,-0.049159158021212],[-0.038634326308966,-0.0057368171401322,0.064270958304405]],[[0.030060134828091,0.033861216157675,0.022822193801403],[0.016533290967345,0.07567972689867,0.13973167538643],[0.075341701507568,0.12771011888981,-0.0044198082759976]],[[-0.0061566946096718,0.004067303147167,0.089441709220409],[0.012602041475475,-0.018154751509428,-0.038903471082449],[-0.022985763847828,-0.043030582368374,0.10667546093464]],[[0.023539550602436,0.0097221927717328,-0.025537544861436],[0.01738141477108,0.075663596391678,0.029862027615309],[0.081893093883991,0.025496352463961,0.027581717818975]],[[-0.017666529864073,0.034330509603024,0.058963343501091],[0.016792526468635,0.023235207423568,0.059341639280319],[0.027282612398267,0.04182618111372,0.039763361215591]],[[0.0069919573143125,-0.075956888496876,0.030970960855484],[-0.0076058288104832,0.020556667819619,-0.04893396794796],[0.041599988937378,-0.016109062358737,0.019408732652664]],[[-0.030386967584491,0.033778630197048,-0.010380611754954],[0.044638343155384,-0.042354010045528,-0.040699433535337],[0.012859661132097,-0.017914116382599,0.044471342116594]],[[0.029892573133111,-0.038816768676043,-0.023988001048565],[0.016191186383367,-0.030887767672539,0.092592805624008],[0.034297481179237,0.027077807113528,-0.016322148963809]],[[0.026236856356263,0.056534014642239,0.0080199725925922],[0.068150535225868,0.029651056975126,-0.013783606700599],[0.042069349437952,0.05879708006978,-0.06849792599678]],[[0.067982703447342,-0.0019564998801798,-0.0027333912439644],[0.013865823857486,0.0099089154973626,-0.058199793100357],[-0.033099737018347,0.064650654792786,0.0060008317232132]],[[-0.031896948814392,-0.046594027429819,0.058201711624861],[0.0072376546449959,0.0031538044568151,-0.087689012289047],[-0.027698906138539,0.0016685847658664,0.062446154654026]],[[0.040576606988907,0.025586826726794,-0.10157906264067],[0.018338393419981,-0.024390665814281,-0.090519331395626],[-0.0043943896889687,-0.0036036667879671,0.026489505544305]],[[0.033491719514132,0.050095837563276,0.10286317765713],[-0.024425961077213,0.015945971012115,0.028149852529168],[-0.045153956860304,0.041455395519733,-0.048073824495077]],[[0.032058585435152,0.018793269991875,0.021423667669296],[0.028959048911929,-0.1421323120594,0.04646197706461],[0.011972052045166,0.040501434355974,-0.033968381583691]],[[-0.019665408879519,-0.031098678708076,-0.0093171019107103],[0.058768004179001,-0.022022029384971,-0.036749977618456],[-0.042169656604528,0.020793840289116,-0.02279881760478]],[[0.0050535323098302,0.024608114734292,0.068420439958572],[0.075781129300594,0.076165586709976,-0.04186600446701],[0.075439170002937,0.068264789879322,-0.0067655700258911]],[[0.0079400986433029,0.034515712410212,0.019489653408527],[0.051481936126947,-0.114850461483,-0.025250473991036],[0.010446481406689,0.061550296843052,0.052402462810278]],[[-0.065808705985546,-0.082202449440956,-0.045484814792871],[-0.0094839846715331,-0.00025007931981236,-0.0018622422358021],[0.099950857460499,-0.00029135000659153,-0.055829141288996]],[[0.088192082941532,0.016633700579405,0.0022021655458957],[0.023021938279271,-0.015584057196975,0.0019345168257132],[-0.041714772582054,0.030344184488058,-0.054459877312183]],[[-0.050474997609854,0.03453903645277,-0.010074739344418],[-0.075955651700497,0.014333299361169,-0.038738049566746],[-0.050130095332861,-0.035589285194874,0.0994763225317]],[[-0.048083264380693,0.025514870882034,-0.032499842345715],[-0.016254920512438,-0.042274568229914,-0.044779919087887],[0.10004561394453,-0.011450132355094,0.0089878970757127]],[[0.084449119865894,0.016618190333247,-0.0093838414177299],[0.03042820468545,-0.050432085990906,-0.028624640777707],[-0.043015126138926,-0.042017851024866,-0.021864155307412]],[[-0.0057036569342017,0.021256394684315,-0.041943147778511],[-0.093837298452854,-0.049924451857805,-0.032115940004587],[0.037036132067442,-0.043556526303291,0.042827177792788]],[[0.033208508044481,-0.029654992744327,0.0046039423905313],[0.08693989366293,-0.036675006151199,-5.0421247578925e-05],[-0.010084011591971,0.10258793085814,-0.037132561206818]],[[0.058380886912346,0.041250068694353,-0.047033283859491],[-0.026714134961367,-0.0081903664395213,0.013839833438396],[-0.10706089437008,0.024358056485653,0.070557683706284]],[[-0.015997568145394,-0.039677806198597,-0.073519267141819],[-0.10740932822227,-0.022820357233286,-0.046357303857803],[-0.033301286399364,0.02576725371182,0.054574377834797]],[[-0.024101419374347,-0.0011661745375022,0.0038235883694142],[-0.070871442556381,-0.054010462015867,-0.035329136997461],[0.0065621305257082,-0.017762865871191,-0.10286036133766]],[[-0.092754565179348,-0.0071881981566548,0.010801976546645],[-0.0098591726273298,-0.050834622234106,0.045328237116337],[-0.020587826147676,0.054201275110245,-0.074418179690838]],[[-0.047124035656452,-0.065387435257435,-0.075569055974483],[0.049623753875494,-0.014051182195544,0.064439795911312],[-0.0028522603679448,-0.010993436910212,-0.020029487088323]],[[0.065643139183521,-0.036626912653446,-0.018159609287977],[0.050163272768259,0.060924202203751,-0.0083304913714528],[0.031311620026827,0.076844103634357,0.059848878532648]],[[0.038986369967461,0.059345815330744,0.043921902775764],[-6.6158581830678e-06,0.0035953044425696,-0.016105024144053],[0.043298535048962,0.068402647972107,0.010765174403787]],[[0.042177271097898,-0.087470777332783,-0.047198679298162],[0.056032285094261,0.066517487168312,0.021051907911897],[-0.049958758056164,0.033313475549221,0.060208756476641]],[[0.033644050359726,-0.023281404748559,0.036420349031687],[-0.056165646761656,0.028786355629563,-0.031242463737726],[0.055234655737877,0.040641017258167,0.10646748542786]],[[0.016544992104173,-0.0069500911049545,-0.06103465333581],[-0.037115443497896,-0.028145896270871,0.0037844518665224],[0.01129602920264,0.032369088381529,-0.0044991965405643]],[[-0.039011724293232,-0.0076628969982266,0.014704473316669],[0.10288270562887,-0.023946860805154,-0.040618266910315],[0.047186888754368,-0.04183916375041,-0.0072501660324633]],[[0.0054902350530028,0.022219002246857,0.014601234346628],[0.057648479938507,-0.010393270291388,0.045646600425243],[0.0645871758461,0.025193771347404,-0.00264119845815]],[[-0.0047142077237368,-0.024753184989095,-0.0049383002333343],[0.04256896674633,0.016210669651628,-0.047625448554754],[0.012124146334827,-0.01753911934793,-0.0050167627632618]],[[-0.025876305997372,-0.0067233419977129,-0.038320817053318],[-0.034367669373751,-0.033291421830654,-0.072539322078228],[-0.047636289149523,-0.045178201049566,-0.0015951583627611]],[[-0.0049563711509109,0.008846789598465,0.017498694360256],[-0.006431058049202,-0.020441740751266,0.035812668502331],[-0.081886388361454,0.02201671153307,0.10082125663757]],[[-0.020291101187468,0.012599593959749,-0.035801496356726],[0.0018764929845929,-0.0047986241988838,-0.043636385351419],[0.02344367466867,0.084226943552494,0.12534363567829]],[[-0.028307279571891,0.073761701583862,0.046872928738594],[-0.038830313831568,0.03413412719965,0.02649294398725],[0.0072788107208908,-0.031652465462685,0.032496213912964]],[[0.012184052728117,-0.024670267477632,-0.037506870925426],[-0.019420277327299,0.00068219809327275,0.057006850838661],[-0.0027630056720227,0.0083987917751074,0.055808495730162]]],[[[-0.017155412584543,-0.039049569517374,-0.079889379441738],[0.00060619221767411,-0.028322052210569,0.017103541642427],[0.023438194766641,-0.039930433034897,-0.04207294434309]],[[-0.0030155051499605,-0.0077568017877638,0.0035951340105385],[-0.024514498189092,-0.007796498015523,0.049031876027584],[-0.015722000971437,0.0058032227680087,0.020280942320824]],[[0.006480498239398,0.063512079417706,-0.044167034327984],[0.0021600476466119,0.038434904068708,-0.014748321846128],[-0.034401852637529,0.011529849842191,-0.066064022481441]],[[0.0044519286602736,-0.027747673913836,-0.0310780685395],[0.037737112492323,0.052841950207949,0.039559178054333],[0.00015715707559139,0.04092601314187,0.14229895174503]],[[-0.021330328658223,-0.033975098282099,0.024789366871119],[-0.060604475438595,-0.00071432156255469,-0.12406372278929],[0.022002618759871,0.039187885820866,0.080286681652069]],[[0.025371072813869,0.031674195080996,0.07561544328928],[0.0511728040874,-0.079844854772091,0.049693267792463],[-0.015517900697887,-0.012031725607812,-0.059402666985989]],[[0.051599938422441,-0.026510844007134,-0.054334554821253],[-0.062215529382229,-0.0092481710016727,-0.043457020074129],[-0.10580713301897,-0.14477722346783,-0.015101345255971]],[[0.015630826354027,-0.086166478693485,-0.0026288935914636],[-0.034653790295124,0.010267679579556,-0.028152862563729],[0.075097598135471,0.12220936268568,-0.022440068423748]],[[0.053357467055321,0.028143620118499,-0.036374963819981],[0.039071712642908,0.059633180499077,0.017275648191571],[0.039692390710115,-0.077216871082783,-0.064973995089531]],[[-0.00078061554813758,0.11257964372635,0.041088122874498],[0.020582901313901,0.013945853337646,0.064124405384064],[0.022963497787714,0.094722382724285,0.087333366274834]],[[-0.053743675351143,0.0077642509713769,-0.0061622844077647],[-0.075867176055908,0.020088216289878,0.023090027272701],[-0.0026703416369855,0.03763085231185,0.04510934650898]],[[0.05974855273962,0.010093428194523,0.0051982216536999],[0.013967441394925,0.012978953309357,0.0021605712827295],[0.046065963804722,0.038619536906481,0.064954459667206]],[[-0.00094821490347385,0.039649285376072,-0.026642756536603],[0.10034057497978,-0.063027866184711,-0.046426095068455],[0.055335227400064,0.002245681360364,0.037550207227468]],[[0.0098799876868725,0.052772246301174,0.03573477268219],[0.01000206079334,-0.035473853349686,-0.025735205039382],[0.030666138976812,0.10935823619366,0.050606992095709]],[[0.11667764931917,0.12214010953903,0.046485256403685],[-0.0325070284307,0.071864724159241,-0.0039365333504975],[0.0078596854582429,0.053324487060308,0.055188935250044]],[[-0.024392714723945,-0.058270532637835,-0.037159882485867],[0.028526468202472,0.019961588084698,0.018255522474647],[0.0086156306788325,-0.0226228851825,-0.052197385579348]],[[0.010932606644928,0.09218292683363,0.03168935328722],[0.01392221916467,-0.048454485833645,-0.018521474674344],[0.026900116354227,0.015103874728084,0.04661213979125]],[[-0.052457012236118,-0.025078533217311,-0.0021947172936052],[-0.073417492210865,-0.0075800763443112,-0.027714852243662],[-0.074635587632656,-0.027039263397455,0.034702438861132]],[[0.052119072526693,-0.011251585558057,0.021218687295914],[-0.029250165447593,-0.051816429942846,0.029852572828531],[0.039914965629578,0.0072904191911221,-0.002057631034404]],[[0.011037505231798,-0.028531886637211,-0.035917419940233],[0.059601847082376,-0.11548516899347,-0.002145632635802],[-0.017049072310328,0.066675715148449,-0.13886947929859]],[[0.030394770205021,0.057264719158411,0.040808562189341],[0.047053258866072,0.040478002279997,-0.013889447785914],[0.077434666454792,0.079302847385406,0.0067605911754072]],[[0.029378585517406,0.036908697336912,0.073346726596355],[0.03390758857131,-0.045205548405647,-0.0021059506107122],[0.095614962279797,0.0041641597636044,0.078326433897018]],[[0.0064762732945383,-0.031671550124884,-0.0060555599629879],[0.011145377531648,0.045524593442678,-0.052128273993731],[0.013888058252633,-0.049172528088093,0.049284033477306]],[[-0.0046928850933909,0.015768771991134,-0.083081498742104],[-0.037988763302565,-0.016599273309112,0.075814977288246],[-0.0079302052035928,-0.0036609708331525,0.015095963142812]],[[0.014143595471978,-0.0083632152527571,0.060781553387642],[0.023978468030691,-0.013464469462633,-0.046797454357147],[0.090861991047859,0.015903316438198,-0.026697820052505]],[[0.0054244785569608,0.030362939462066,-0.0041775363497436],[-0.084284350275993,0.062007326632738,-0.009265124797821],[0.0026510555762798,0.019287494942546,0.031015554443002]],[[-0.041000619530678,-0.10980116575956,-0.057392954826355],[-0.032559607177973,0.06908118724823,0.03789147734642],[0.033665738999844,0.019993133842945,-0.015372700057924]],[[-0.0082298684865236,0.015936018899083,0.040157366544008],[-0.069911725819111,-0.043835908174515,0.026911480352283],[-0.048365660011768,0.01407179236412,-0.037480253726244]],[[-0.0082124108448625,-0.059843495488167,0.06740353256464],[-0.012908791191876,0.0061633177101612,-0.017162587493658],[-0.012410147115588,-0.025470316410065,0.013611945323646]],[[0.0023985768202692,0.027312703430653,0.030813934281468],[-0.036459110677242,-0.027889186516404,-0.0072792037390172],[0.052162453532219,-0.09624756872654,0.11406920105219]],[[-0.009910480119288,0.016150111332536,0.0084853656589985],[-0.037670206278563,0.021993782371283,0.0094558214768767],[0.10697457939386,0.030216202139854,-0.038100071251392]],[[-0.061986602842808,0.026729293167591,-0.027497114613652],[-0.027315517887473,-0.0013269636547193,-0.060954701155424],[0.028779719024897,0.0055491286329925,0.011072999797761]],[[0.023508090525866,0.0578871704638,0.045543558895588],[-0.034321453422308,0.023661147803068,0.019912900403142],[0.029608817771077,0.075467310845852,-0.055115070194006]],[[0.035559106618166,0.11422775685787,-0.021304909139872],[-0.068274773657322,-0.066860891878605,0.045270871371031],[-0.020824987441301,0.08470257371664,0.1690522134304]],[[-0.01027107052505,-0.04312614351511,0.051851995289326],[0.021131005138159,-0.04534075409174,0.015639713034034],[0.027268568053842,-0.043808173388243,0.010590293444693]],[[0.097628720104694,0.018043804913759,0.030479125678539],[0.02551131695509,0.026986485347152,0.042556840926409],[-0.022620717063546,-0.036314260214567,-0.0030921385623515]],[[0.019684553146362,0.048657990992069,-0.019220013171434],[-0.0022000395692885,0.0044994689524174,-0.019401498138905],[-0.038656961172819,-0.027782090008259,-0.024383883923292]],[[-0.090134009718895,-0.017198078334332,0.0068557192571461],[0.026791242882609,-0.030636118724942,-0.10093807429075],[-0.0047467821277678,-0.072431772947311,-0.029020868241787]],[[0.035040810704231,0.010473532602191,0.041531607508659],[0.025241214782,-0.018025910481811,-0.038524821400642],[0.024966597557068,-0.14386071264744,-0.01540962792933]],[[-0.04771513864398,-0.081242360174656,0.035528499633074],[0.014264605008066,-0.057785730808973,0.022326912730932],[-0.027260672301054,0.031795240938663,0.029220292344689]],[[0.016985731199384,-0.038912571966648,-0.00061043107416481],[-0.045522268861532,-0.0095176072791219,0.05060762912035],[-0.085532426834106,-0.061503361910582,-0.023721920326352]],[[-0.052956119179726,0.018062118440866,0.022847948595881],[-0.031538128852844,-0.014784347265959,-0.027051821351051],[0.01675072312355,-0.10698083043098,0.0048985350877047]],[[-0.047204401344061,0.044429380446672,0.066610179841518],[-0.057932578027248,0.040158335119486,0.022447204217315],[0.014378249645233,0.079922869801521,0.058888476341963]],[[-0.013311224989593,0.0049221813678741,0.0056409859098494],[0.0094150304794312,0.025280011817813,0.054453115910292],[-0.0055658216588199,0.073656022548676,0.017367137596011]],[[-0.032198093831539,0.025817329064012,-0.061718296259642],[0.0044352654367685,-0.0026609376072884,-0.019747575744987],[0.0046018604189157,-0.015009758993983,-0.011310727335513]],[[0.0028658185619861,0.00090721517335624,-0.034883972257376],[0.069722250103951,0.03910181298852,-0.06406082212925],[-0.027294371277094,-0.0082367556169629,0.034041278064251]],[[0.0039895661175251,-0.047821573913097,0.02457121014595],[0.10010194033384,0.079119578003883,0.051160279661417],[-0.064587011933327,0.061838265508413,-0.034926939755678]],[[0.061063431203365,0.0087439715862274,-0.037450972944498],[0.012662730179727,0.043945711106062,0.015567527152598],[0.054580423980951,0.026624390855432,0.043261513113976]],[[-0.054485391825438,0.011471935547888,0.011357268318534],[0.042365867644548,0.083789490163326,-0.039014160633087],[0.067216880619526,-0.026455596089363,0.041090209037066]],[[0.045175511389971,0.033274214714766,-0.031638488173485],[-0.027541805058718,0.023162644356489,-0.012082007713616],[-0.071193620562553,0.059998039156199,0.019016448408365]],[[-0.025059472769499,-0.037562444806099,-0.052760325372219],[0.016766307875514,-0.028396025300026,-0.00043102382915094],[0.017301378771663,-0.0023582801222801,0.010874792933464]],[[-0.0022772795055062,-0.025078058242798,0.051529213786125],[-0.00274204229936,-0.0052140047773719,-0.0015372824855149],[0.019477736204863,0.088138811290264,0.059647966176271]],[[0.059407234191895,0.011828106828034,0.052262209355831],[-0.074625417590141,0.042124770581722,0.033995863050222],[0.0025464456994087,0.035518422722816,-0.037813309580088]],[[-0.063307002186775,-0.0078294603154063,-0.035220459103584],[-0.029414301738143,0.047198794782162,-0.032313104718924],[0.0080073494464159,0.05546386167407,0.020356580615044]],[[0.05577839910984,0.010761683806777,-0.047669548541307],[0.062961228191853,0.041223146021366,0.0087538985535502],[0.025781309232116,0.004755852278322,0.014854498207569]],[[0.02578205242753,0.023519780486822,-0.054529450833797],[0.0081781903281808,0.058097906410694,0.015679301694036],[0.10434881597757,-0.01362757012248,0.043120644986629]],[[-0.066628031432629,-0.01053624600172,0.00030928815249354],[-0.035332284867764,-0.029924815520644,0.028737377375364],[-0.032088991254568,0.070614352822304,-0.031024962663651]],[[-0.026136100292206,0.0065201590768993,0.019476532936096],[0.030279763042927,-0.035399682819843,-0.06281765550375],[0.05277293920517,0.017686389386654,-0.018187258392572]],[[0.018267503008246,-0.07584448158741,0.020718162879348],[0.046906441450119,0.095514588057995,0.040669538080692],[0.035328194499016,-0.023415226489305,0.04328902438283]],[[0.049105018377304,0.037439592182636,-0.031512662768364],[0.023084152489901,0.045733265578747,0.018367847427726],[0.020291106775403,0.021927233785391,-0.0042766914702952]],[[-0.024311870336533,0.0037369984202087,0.058798063546419],[0.030477633699775,0.071851916611195,0.030313491821289],[0.023695563897491,0.022192366421223,-0.030016029253602]],[[0.067047215998173,-0.063491612672806,-0.027484010905027],[-0.016906198114157,-0.050510369241238,0.00097792909946293],[0.049272544682026,-0.032353162765503,-0.01359863486141]],[[-0.002598223509267,0.024302149191499,0.021475752815604],[-0.020435431972146,0.026520432904363,0.056038744747639],[0.081847481429577,-0.068218067288399,-0.071197360754013]],[[0.060358762741089,-0.028879785910249,-0.057183902710676],[0.060835372656584,-0.038012187927961,-0.0046749557368457],[0.0043366812169552,0.0261250436306,0.027338724583387]],[[0.066666088998318,0.039627239108086,0.07302712649107],[-0.062306273728609,0.009237902238965,0.026288785040379],[-0.05956058204174,0.056983690708876,0.025146981701255]],[[-0.0093141850084066,-0.052438456565142,0.047044515609741],[0.051755636930466,-0.0028120230417699,-0.0034056298900396],[-0.0032015123870224,0.039664141833782,0.057340282946825]],[[-0.051171727478504,0.039834011346102,0.016609014943242],[0.020543312653899,-0.0050071580335498,0.022700889036059],[0.057809855788946,0.09941790252924,-0.024810472503304]],[[-0.0054396404884756,0.048306938260794,0.064129114151001],[-0.0023557462263852,0.032491248100996,0.014943411573768],[0.074181281030178,0.055932078510523,-0.005873444955796]],[[-0.020837524905801,0.052056364715099,0.028598334640265],[-0.0312425121665,0.020272184163332,-0.028932264074683],[-0.02665058337152,-0.015132050029933,-0.047287330031395]],[[0.047250729054213,-0.0014143921434879,-0.014047469943762],[0.044669259339571,0.0028193416073918,0.077354855835438],[-0.018294995650649,-0.026205172762275,-0.040208738297224]],[[-0.0098792472854257,-0.035150215029716,0.056769076734781],[-0.067778304219246,-0.028198283165693,-0.032982628792524],[0.032404594123363,0.068242534995079,0.063363842666149]],[[0.00063317239983007,-0.043647225946188,-0.033532805740833],[0.037945386022329,-0.085478529334068,-0.0032766186632216],[-0.01282615121454,0.024241283535957,0.00084860477363691]],[[0.0077371774241328,0.010127152316272,-0.0078521119430661],[0.025273732841015,-0.062202591449022,0.0089939646422863],[0.090244971215725,0.00060798006597906,0.070591270923615]],[[0.03337162733078,0.0075141210108995,0.032294031232595],[0.016037596389651,0.057440146803856,-0.077985972166061],[0.086106702685356,0.032477274537086,0.0064088739454746]],[[0.067260891199112,0.051610335707664,0.015444223769009],[-0.035117618739605,-0.026726488023996,-0.06162341311574],[-0.018167829141021,0.018423493951559,0.021741323173046]],[[0.073404721915722,-0.056254461407661,-0.027179703116417],[0.031606804579496,-0.071166470646858,-0.059742469340563],[-0.023456340655684,-0.085753366351128,-0.063056610524654]],[[0.037865817546844,0.031786058098078,-0.022255865857005],[0.022365726530552,-0.060312688350677,-0.056932739913464],[-0.03743165358901,-0.0040763197466731,-0.0021437604445964]],[[0.089288115501404,0.075851745903492,-0.059468273073435],[-0.03378351777792,0.036863211542368,0.0080219218507409],[0.036455810070038,0.011668309569359,0.041564412415028]],[[-0.015789914876223,-0.039779145270586,0.032562728971243],[0.057608418166637,-0.048618514090776,0.00023407580738422],[0.051315400749445,-0.077744707465172,0.029083214700222]],[[-0.041951049119234,-0.010197738185525,0.028826408088207],[0.058824639767408,-0.043247263878584,0.061929393559694],[0.0045962361618876,-0.0082794697955251,-0.014941101893783]],[[-0.042853001505136,0.03785477951169,0.084808342158794],[0.014882675372064,-0.011472372338176,-0.017035957425833],[0.038533356040716,0.006932906806469,-0.0050592496991158]],[[-0.036249779164791,-0.037682875990868,-0.015629367902875],[-0.048165682703257,0.052635047584772,-0.0098015600815415],[-0.054964922368526,0.023683482781053,-0.0054182042367756]],[[-0.030803721398115,-0.072906672954559,0.0734783411026],[0.049350790679455,0.050921346992254,-0.014792857691646],[-0.0073720212094486,0.043319545686245,0.030231511220336]],[[-0.046932395547628,-0.0011094646761194,-0.065490372478962],[-0.017315464094281,-0.010334118269384,0.02913885936141],[0.043031249195337,0.0058525619097054,-0.022833775728941]],[[-0.023460410535336,0.021214496344328,0.064580358564854],[-0.036035247147083,0.035345066338778,0.010994656011462],[0.084980458021164,0.039353549480438,0.043643247336149]],[[0.019063472747803,0.09225244820118,0.063284918665886],[0.034032482653856,0.0039660609327257,0.0054568974301219],[-0.045060768723488,0.035922463983297,0.018399169668555]],[[0.043314497917891,0.056756746023893,0.046581111848354],[-0.033460956066847,-0.065628387033939,-0.024323843419552],[0.048392970114946,0.054223962128162,-0.045161794871092]],[[-0.03037946857512,-0.029542045667768,0.01164048910141],[0.070708222687244,0.10128484666348,0.012826031073928],[-0.037188038229942,0.036449149250984,-0.035785395652056]],[[-0.0083440775051713,0.020648656412959,0.023155910894275],[-0.023597221821547,-0.0048336782492697,0.00096084672259167],[-0.056363511830568,-0.064832657575607,0.017181217670441]],[[-0.0016207444714382,0.011018012650311,0.0081392135471106],[-0.044420465826988,0.020961342379451,0.059621877968311],[0.024847088381648,0.041088089346886,0.048272404819727]],[[0.045911632478237,-0.024498580023646,-0.0066458703950047],[0.028563747182488,-0.0051575568504632,0.031702324748039],[-0.053500320762396,0.041304882615805,0.026365622878075]],[[-0.033351480960846,-0.064366459846497,0.033020675182343],[0.054692465811968,0.072526127099991,0.0096272267401218],[-0.025055885314941,-0.047688614577055,0.026613898575306]],[[-0.067088834941387,-0.069227531552315,0.054420601576567],[0.039205629378557,0.007814560085535,0.036877870559692],[-0.012523697689176,0.010695855133235,-0.047070696949959]],[[-0.031825061887503,0.0047382391057909,0.050668220967054],[0.041434720158577,0.0022849056404084,0.037953913211823],[0.023073595017195,0.018732495605946,0.016832437366247]],[[-0.03079011105001,-0.028944261372089,0.0020754465367645],[0.019337905570865,0.044371474534273,0.02094748057425],[0.011809010989964,-0.035281527787447,0.034302569925785]],[[-0.048652775585651,0.00086233176989481,0.044326692819595],[-0.033137068152428,0.038880720734596,0.02406351454556],[-0.041697233915329,0.0024368886370212,-0.046933718025684]],[[-0.026281157508492,0.086210571229458,-0.0181042868644],[0.0073611899279058,0.017129134386778,0.0089046927168965],[0.021891998127103,0.098938226699829,0.038668550550938]],[[0.068222030997276,-0.029996573925018,0.095229022204876],[0.050495158880949,0.017797857522964,0.050535943359137],[0.046724405139685,0.13861982524395,0.11273099482059]],[[0.0053794225677848,-0.019347673282027,0.034987721592188],[-0.034287661314011,-0.0022804774343967,0.016569741070271],[0.032229240983725,0.012403866276145,-0.013012177310884]],[[0.0051392475143075,-0.051913626492023,-0.044167824089527],[0.061705093830824,0.063476748764515,-0.016559513285756],[-0.027665257453918,-0.036645881831646,-0.035952351987362]],[[-0.087706595659256,0.053415693342686,-0.016902420669794],[0.0011706510558724,-0.1148069947958,-0.039428614079952],[-0.053163383156061,0.046611815690994,0.086324892938137]],[[0.077535793185234,0.033109050244093,-0.02386218868196],[0.10184700042009,-0.014235155656934,0.10227160900831],[0.047347940504551,0.012474376708269,0.094886012375355]],[[-0.034299843013287,0.017038337886333,-0.03033128939569],[-0.010840667411685,0.054471474140882,-0.032305382192135],[-0.0029624789021909,-0.013475554063916,-0.011434941552579]],[[-0.040802218019962,-0.022777382284403,-0.007812867872417],[0.0022469223476946,0.0083527946844697,0.017348494380713],[-0.022892221808434,0.020895157009363,-0.012196013703942]],[[-0.11388414353132,0.010873236693442,0.068353042006493],[0.087792553007603,0.0086946645751595,0.098175279796124],[0.02215120010078,-0.028381161391735,0.049398124217987]],[[-0.0082034235820174,0.081999324262142,0.076149351894855],[-0.062803357839584,-0.0012284524273127,-0.0053421417251229],[0.069241754710674,0.040844578295946,-0.016364730894566]],[[0.025019895285368,0.065557539463043,-0.040137596428394],[0.063808985054493,0.043413959443569,-0.010766239836812],[-0.020791189745069,-0.046177115291357,0.063995614647865]],[[-0.052403796464205,-0.017097802832723,-0.011229719035327],[0.0031804288737476,-0.014816503971815,0.07274653762579],[0.0036627950612456,0.030899848788977,-0.031408336013556]],[[-0.061439387500286,0.058472078293562,0.004315975587815],[0.021646909415722,-0.045114170759916,-0.087924018502235],[-0.0037528811953962,-0.0028146291151643,0.0487145408988]],[[-0.01114347577095,0.0355652756989,0.015205027535558],[0.069283314049244,0.016525603830814,0.007718603592366],[0.010611272417009,-0.1017349883914,-0.049715138971806]],[[-0.052095506340265,-0.01804731413722,-0.019840683788061],[-0.042522232979536,-0.017604721710086,0.03996305167675],[0.032650776207447,0.023348705843091,-0.0496456772089]],[[-0.036217510700226,0.00065146735869348,0.037539836019278],[-0.028661793097854,-0.0040786880999804,0.10355949401855],[0.057331446558237,0.049696229398251,-0.025911618024111]],[[0.019825119525194,0.044307392090559,0.0045872731134295],[0.033221997320652,0.11551845818758,-0.01984366774559],[0.13656580448151,-0.030140658840537,-0.0037468003574759]],[[0.011149799451232,0.01695672608912,-0.01168708037585],[0.016498988494277,0.0097045199945569,0.010116660967469],[0.018184971064329,-0.035264600068331,-0.025405729189515]],[[-0.063268475234509,0.041009806096554,0.038897305727005],[-0.013692734763026,0.016855841502547,-0.074921794235706],[-0.0054181371815503,0.003527105320245,0.009733010083437]],[[0.030660951510072,-0.015474930405617,0.082077763974667],[-0.032176416367292,0.094230063259602,-0.030762724578381],[0.044823464006186,0.058221809566021,-0.019552571699023]],[[-0.045995302498341,-0.025982907041907,-0.015371673740447],[0.026230307295918,0.026057492941618,0.013065681792796],[0.0084191532805562,-0.055633898824453,0.0063875778578222]],[[-0.0059846993535757,0.0034467191435397,0.021904513239861],[0.072607681155205,0.041324935853481,-0.03318152949214],[-0.0047537344507873,-0.0033039664849639,0.0089323772117496]],[[0.0474135838449,-0.00937495008111,0.051889892667532],[-0.054634016007185,0.068706847727299,0.0016265913145617],[0.033131916075945,-0.016353990882635,-0.043309096246958]],[[-0.00093259010463953,-0.034408826380968,-0.044054411351681],[-0.036594793200493,-0.026648972183466,-0.052090480923653],[-0.054595444351435,-0.030726429075003,-0.0032354474533349]],[[-0.032021682709455,-0.0013205150607973,-0.068302065134048],[-0.040721647441387,-0.025110013782978,-0.040664989501238],[-0.026627246290445,0.015869932249188,0.033446252346039]],[[-0.019406074658036,-0.02123667486012,0.0045951441861689],[0.040163323283195,0.0069231386296451,-0.014233805239201],[0.041848253458738,0.016687581315637,0.061693456023932]],[[-0.070461392402649,-0.010229821316898,0.11395313590765],[0.03506475687027,-0.023379445075989,-0.0054579642601311],[0.034750442951918,0.0065112980082631,0.047361209988594]],[[-0.037180162966251,0.034810859709978,0.0032443152740598],[0.021472778171301,-0.025605389848351,-0.079599410295486],[-0.0073223561048508,-0.060016114264727,-0.024965658783913]],[[-0.028667576611042,-0.11324288696051,0.070169374346733],[0.028311528265476,0.014641829766333,0.060963861644268],[0.027225065976381,0.065678328275681,0.053931873291731]],[[0.055302709341049,0.027435133233666,0.033513285219669],[-0.0093479445204139,0.04830464348197,0.0188551209867],[0.036589022725821,0.029724890366197,0.0081478077918291]],[[-0.13875687122345,-0.048542015254498,0.031513258814812],[0.0034204570110887,0.035220444202423,-0.008582416921854],[0.0683189406991,0.07464475184679,-0.092021718621254]],[[0.001862384728156,-0.0083133317530155,0.025449730455875],[-0.0020047773141414,0.060985740274191,-0.0091158794239163],[0.025816470384598,-0.018616199493408,0.032792303711176]]],[[[0.0876090452075,0.020112633705139,0.075948692858219],[0.055861297994852,0.091439127922058,0.013518366031349],[-0.0127930091694,-0.035983573645353,-0.0046369414776564]],[[0.0098356641829014,-0.024177839979529,0.037695437669754],[0.09667780995369,-0.010177304968238,0.015216995030642],[0.064557269215584,0.04143800213933,0.027505334466696]],[[0.022476982325315,-0.072615712881088,0.042694635689259],[0.036555491387844,0.014396337792277,-0.035026300698519],[-0.0051938039250672,-0.038036301732063,-0.011760673485696]],[[0.098802573978901,0.0028359589632601,0.012411337345839],[-0.019920248538256,-0.029604658484459,-0.10100851207972],[-0.0092075979337096,-0.022284191101789,-0.041575945913792]],[[-0.0042833024635911,0.051554184406996,0.00055869086645544],[-0.036490730941296,0.064541876316071,-0.06683386862278],[-0.073195606470108,-0.032367780804634,0.085837781429291]],[[0.0049888151697814,0.077941671013832,-0.022607708349824],[-0.012870670296252,-0.0039666472002864,0.010378703474998],[-0.0087603516876698,0.053510088473558,0.0065909610129893]],[[0.066910579800606,-0.0098069803789258,0.057268988341093],[0.019643208011985,0.014297648333013,-0.059019096195698],[0.0029134233482182,0.019141741096973,0.043813191354275]],[[-0.050347171723843,0.1099873483181,0.0074709295295179],[0.0073680998757482,-0.019897658377886,0.028029667213559],[0.00078194966772571,0.018869072198868,0.0081951273605227]],[[0.017764946445823,0.019727621227503,0.021563677117229],[-0.021692888811231,-0.0077839624136686,-0.027655143290758],[0.035785581916571,0.051012583076954,0.00074876827420667]],[[-0.076635085046291,0.07855086773634,0.099688865244389],[0.061977911740541,0.076168462634087,0.079413808882236],[0.020927950739861,0.052140288054943,-0.00019813161634374]],[[0.035258334130049,0.011027685366571,0.063413999974728],[0.0010697669349611,0.058438505977392,-0.080842822790146],[0.03056700900197,-0.034017816185951,0.018402291461825]],[[0.018377980217338,0.017306070774794,0.0045580840669572],[0.03551322221756,0.0043220487423241,-0.022649668157101],[0.0094914650544524,0.04490765184164,0.0270662792027]],[[0.032117314636707,0.018305452540517,0.02851315587759],[0.018502486869693,-0.014605264179409,0.092653460800648],[-0.035077344626188,-0.048891134560108,0.01744968816638]],[[0.018691582605243,-0.058281507343054,0.0021661582868546],[-0.018054783344269,-0.074432484805584,0.017722060903907],[-0.0090100532397628,0.051993943750858,0.0045959283597767]],[[0.0010939500061795,0.083460316061974,0.0076122423633933],[0.084435604512691,0.18115204572678,0.21605412662029],[0.11240377277136,0.03789259120822,0.16031417250633]],[[0.04124990850687,-0.083770781755447,-0.018379043787718],[-0.062238708138466,-0.04305611923337,-0.081531465053558],[-0.033671069890261,-0.068960651755333,-0.043238095939159]],[[-0.042956557124853,-0.0047699315473437,0.013322622515261],[0.049662932753563,-0.0056735211983323,0.022328287363052],[-0.012514933012426,-0.036263152956963,-0.077238775789738]],[[-0.065140038728714,0.005117173306644,-0.016625050455332],[-0.05513709038496,-0.051952738314867,-0.021805511787534],[0.013918975368142,0.011961821466684,-0.08102111518383]],[[-0.038141209632158,0.0015781295951456,0.040576983243227],[0.054193560034037,0.060231231153011,-0.00778823858127],[0.055134512484074,0.021246336400509,0.031155029311776]],[[0.0011103559518233,0.052689239382744,0.093066290020943],[0.012839572504163,0.014175901189446,0.032354831695557],[0.047351248562336,0.019814141094685,0.096026338636875]],[[0.077642425894737,-0.034500680863857,0.01735976152122],[0.054320074617863,0.0163654088974,-0.069684624671936],[-0.011805096641183,0.042780712246895,1.4106826711213e-05]],[[0.022905360907316,-0.021251810714602,0.0070683783851564],[0.037128321826458,0.063044555485249,0.012071910314262],[0.13026635348797,0.095663614571095,0.03853215649724]],[[0.036128833889961,0.019581954926252,-0.076271191239357],[-0.0062894364818931,-0.051372472196817,-0.042374324053526],[0.037774961441755,0.023769035935402,0.020252902060747]],[[0.021973110735416,-0.041554115712643,-0.066546365618706],[0.040651328861713,-0.052115961909294,-0.0070504327304661],[8.7753200205043e-05,-0.012068725191057,0.015016168355942]],[[-0.0053765247575939,0.0085009085014462,-0.0044135372154415],[0.064243443310261,0.051410213112831,0.049995295703411],[0.01822772808373,-0.0049136071465909,0.011644354090095]],[[-0.10100115835667,-0.033537909388542,0.069251626729965],[0.023323515430093,0.046868253499269,-0.023365307599306],[0.0011551483767107,0.026342056691647,0.0035822775680572]],[[0.041616205126047,0.1117238253355,-0.046700168401003],[0.051785632967949,-0.0087766451761127,-0.053718067705631],[-0.13627658784389,-0.0084521742537618,-0.010772837325931]],[[0.02415519580245,-0.098055809736252,0.13760495185852],[0.020797185599804,-0.040016211569309,-0.0053986539132893],[0.044783640652895,0.046318922191858,0.047331836074591]],[[-0.024074453860521,-0.0090556675568223,-0.037553668022156],[0.036290124058723,-0.048425674438477,0.036912776529789],[0.034116182476282,0.012479616329074,0.020763577893376]],[[-0.0021655031014234,0.017262695357203,0.096934266388416],[0.030881015583873,0.06043654307723,0.03660199791193],[0.084554500877857,-0.0038715465925634,-0.062942273914814]],[[0.05645639821887,0.006022522225976,0.02764187194407],[0.090447463095188,0.0032892627641559,0.028970958665013],[-0.11137975007296,0.029664957895875,0.044685382395983]],[[0.0061135990545154,0.011272503063083,0.045072484761477],[0.037645999342203,-0.041667435318232,0.074598863720894],[0.087435945868492,0.041462678462267,0.0012276213383302]],[[0.08756348490715,-0.091405808925629,-0.040370348840952],[0.013282187283039,-0.083898536860943,-0.014298069290817],[-0.087533727288246,0.042012169957161,0.04143600165844]],[[0.0038626801688224,0.11903815716505,0.060448464006186],[0.05437857657671,-0.029096309095621,0.064289018511772],[-0.061393138021231,-0.0046489150263369,-0.055161774158478]],[[0.050421442836523,0.015614420175552,-0.089369624853134],[0.0050125219859183,-0.020502215251327,0.044575158506632],[0.010591195896268,-0.0042023221030831,-0.069273352622986]],[[-0.046171743422747,-0.030217871069908,-0.037393722683191],[-0.090876400470734,-0.032317701727152,-0.0084303002804518],[-0.044280521571636,0.020242797210813,0.014649019576609]],[[-0.014724167995155,-0.027475336566567,-0.02347251214087],[-0.0095219230279326,-0.014838705770671,-0.033120274543762],[0.016404779627919,-0.071547031402588,-0.021258449181914]],[[0.015978578478098,0.040862653404474,0.066005066037178],[-0.0053737605921924,-0.058223143219948,-0.021545747295022],[-0.034300398081541,-0.079688221216202,0.038263324648142]],[[-0.018698619678617,0.055872622877359,0.036016065627337],[0.08232019841671,0.072901710867882,-0.034716833382845],[-0.0027988124638796,0.091603294014931,-0.1214739382267]],[[-0.0012617260217667,-0.040765408426523,0.0070362184196711],[0.012862289324403,0.022479938343167,0.049003913998604],[0.022006390616298,0.0054203583858907,0.063753515481949]],[[0.073127590119839,-0.048136968165636,0.034455381333828],[0.017989186570048,0.010547953657806,-0.021650180220604],[-0.040055125951767,0.029814740642905,0.031934674829245]],[[-0.0091663366183639,0.058938644826412,0.026537263765931],[0.018093749880791,0.017342876642942,0.057712476700544],[0.037807162851095,0.038920808583498,0.022246733307838]],[[0.070139355957508,-0.0028459494933486,-0.018519550561905],[0.089938335120678,0.05253866314888,0.01185070630163],[0.048517398536205,-0.015419715084136,-0.049932170659304]],[[0.012091838754714,0.084962248802185,0.045829899609089],[-0.042644213885069,0.012218466028571,0.023069614544511],[-0.0052842870354652,0.0068939118646085,0.078497633337975]],[[-0.0047461837530136,0.052608866244555,-0.032716792076826],[-0.051007900387049,-0.0072175776585937,0.062489598989487],[0.017424112185836,0.044530998915434,0.035319723188877]],[[0.018497828394175,0.060281902551651,0.064686477184296],[0.010776189155877,0.019294625148177,-0.033516105264425],[-0.017859145998955,0.087906576693058,0.046873334795237]],[[0.012844535522163,0.065014645457268,0.059577342122793],[0.062357969582081,-0.00064666051184759,-0.072054654359818],[0.034817323088646,-0.037990920245647,0.088239200413227]],[[-0.031449306756258,0.023794956505299,-0.058566249907017],[0.026997638866305,-0.014755632728338,-0.0091170938685536],[0.049007914960384,0.054101042449474,-0.040052242577076]],[[0.055437050759792,-0.0066088698804379,-0.023933008313179],[-0.036231204867363,-0.033916484564543,0.036248043179512],[0.061961725354195,0.018009917810559,0.017632525414228]],[[-0.11088558286428,-0.0028580680955201,-0.060987617820501],[-0.003205134999007,-0.058235362172127,0.020044168457389],[0.033049806952477,0.10432284325361,-0.026447994634509]],[[-0.0049423445016146,-0.060605198144913,-0.071169592440128],[0.044515296816826,-0.079398296773434,-0.067835234105587],[0.018776571378112,-0.09262627363205,0.040391765534878]],[[0.024582816287875,0.016123481094837,0.07701675593853],[0.017613897100091,-0.014408495277166,0.0041581983678043],[0.062144048511982,0.025744684040546,0.024273686110973]],[[-0.060602616518736,0.02375927567482,0.0024699626956135],[0.03067853488028,0.053087569773197,0.013046141713858],[-0.07928416877985,-0.00408317707479,-0.048623915761709]],[[0.045069351792336,0.0048043616116047,0.081239633262157],[-0.047308899462223,-0.032915413379669,-0.00084643583977595],[-0.027842471376061,-0.001877625589259,0.013392665423453]],[[0.074352487921715,0.04279613122344,-0.018622998148203],[0.0096130659803748,0.048800993710756,0.041134357452393],[-0.0088898409157991,-0.055940505117178,-0.015592624433339]],[[-0.10490042716265,-0.0098825637251139,0.024186935275793],[0.12679736316204,-0.038347661495209,0.030837327241898],[0.049454782158136,0.061032209545374,0.058170057833195]],[[-0.047231983393431,0.017247557640076,-0.053821675479412],[-0.10055057704449,-0.026208719238639,-0.038997370749712],[-0.020078619942069,-0.030224796384573,0.017482196912169]],[[0.041358560323715,-0.042916372418404,-0.031060820445418],[-0.023006938397884,-0.059466723352671,-0.032450638711452],[0.041892196983099,-0.06541683524847,-0.0057473117485642]],[[0.064221598207951,0.049577224999666,0.076723337173462],[-0.044013008475304,0.087853372097015,0.027327880263329],[0.089558012783527,-0.02254481613636,0.044260244816542]],[[0.015747016295791,-0.030086612328887,0.01811926625669],[-0.0044783502817154,0.034336503595114,-0.045578710734844],[-0.024158731102943,0.12351837009192,0.0042074173688889]],[[0.012473502196372,0.057467166334391,0.065638422966003],[-0.11121585965157,0.010233985260129,-0.017185766249895],[-0.033048424869776,-0.0037763195578009,0.017904087901115]],[[-0.016126481816173,0.0053224684670568,0.040123544633389],[0.06150183826685,0.0062049487605691,-0.033032488077879],[-0.067011594772339,0.02695775963366,0.0016908129910007]],[[-0.010640957392752,-0.022895915433764,-0.011162209324539],[-0.020303267985582,0.083559155464172,-0.012347184121609],[0.074005305767059,0.072167880833149,0.020810274407268]],[[-0.020244929939508,-0.022078022360802,0.027857311069965],[-0.041376166045666,0.029166270047426,-0.00093126931460574],[-0.02299558185041,0.001360071124509,0.0083658555522561]],[[-0.061357945203781,-0.036542382091284,-0.057397942990065],[-0.005814257543534,-0.0058958791196346,0.01941404864192],[0.076874136924744,0.063528746366501,0.071971692144871]],[[-0.0090244710445404,0.060828551650047,0.029090939089656],[0.061528854072094,-0.010472270660102,-0.0080746402963996],[-0.018322564661503,0.0071602207608521,0.0077510080300272]],[[0.11428311467171,0.10262589156628,0.059359714388847],[-0.031452983617783,0.11515727639198,0.020347686484456],[0.06246292963624,0.053895886987448,0.0083438446745276]],[[-0.016917109489441,0.09244504570961,-0.012723314575851],[0.12183323502541,0.017545873299241,-0.0047363680787385],[0.025903144851327,-0.010054907761514,-0.03380236402154]],[[0.035603117197752,-0.061800841242075,0.0032956574577838],[-0.039374828338623,0.010655977763236,0.04196959361434],[0.077362067997456,-0.033271443098783,0.021174721419811]],[[-0.035886317491531,0.043243039399385,0.040125895291567],[0.027372168377042,0.063795275986195,0.070588476955891],[-0.0058693909086287,0.021085226908326,0.053555253893137]],[[0.028676088899374,0.010624282062054,0.051964703947306],[-0.015504033304751,0.055182468146086,0.027990622445941],[-0.0041233068332076,0.0089704217389226,0.051413681358099]],[[-0.013508316129446,-0.0039965873584151,0.050538443028927],[0.014090827666223,0.0064764367416501,0.078572623431683],[-0.022245278581977,0.012400465086102,0.072377920150757]],[[0.081661827862263,-0.038010384887457,0.039584081619978],[0.013946211896837,0.10182426869869,-0.017591040581465],[-0.0060798279009759,-0.062268171459436,-0.021245645359159]],[[0.032007191330194,-0.032599497586489,-0.04400248080492],[0.064838364720345,0.049219630658627,0.04889615252614],[-0.078395493328571,-0.0062787337228656,-0.061876092106104]],[[0.027885340154171,0.011292599141598,-0.071617752313614],[0.004765719641,-0.026839660480618,-0.046147890388966],[0.03211173415184,0.031055284664035,0.014352777972817]],[[-0.065392166376114,0.023744681850076,0.022271333262324],[0.075266808271408,-0.021852687001228,-0.041929189115763],[0.011334326118231,0.012313272804022,-0.047501213848591]],[[-0.079164780676365,-0.050512615591288,-0.0039200037717819],[-0.017947306856513,-0.0066540804691613,-0.021064057946205],[-0.035873614251614,-0.027067283168435,-0.024187352508307]],[[0.046328164637089,0.026766924187541,-0.0055843843147159],[0.068647429347038,-0.05708597227931,-0.022492554038763],[0.031305659562349,0.052133459597826,0.0074332044459879]],[[0.037564158439636,0.020741239190102,0.008576575666666],[-0.022133173421025,0.061551339924335,0.042990267276764],[0.070067957043648,0.071976758539677,0.036674521863461]],[[-0.031452409923077,0.024090310558677,0.023020608350635],[-0.039216749370098,0.039869539439678,-0.035936310887337],[0.044294707477093,0.010109703056514,-0.010395222343504]],[[0.051835641264915,-8.0671772593632e-05,-0.014541470445693],[-0.0040271999314427,0.063328258693218,0.023485217243433],[0.059277944266796,0.039266031235456,0.13781447708607]],[[-0.012254684232175,0.018214140087366,0.023094518110156],[0.024410212412477,-0.037393633276224,0.0037712855264544],[-0.031314853578806,0.0064477198757231,0.00052161671919748]],[[0.015249085612595,0.068171292543411,0.033155962824821],[-0.058095909655094,-0.010244661010802,0.050804853439331],[0.063724726438522,0.037692826241255,0.021254485473037]],[[0.016158929094672,-0.018111858516932,0.0023812218569219],[-0.010909581556916,-0.0091290278360248,0.029770832508802],[0.0035381268244237,-0.042605545371771,0.022522892802954]],[[0.0060262032784522,-0.0074660168029368,-0.040212772786617],[-0.028297027572989,-0.022698134183884,0.021851578727365],[0.094498068094254,-0.042386464774609,-0.094870783388615]],[[0.030359134078026,-0.043949082493782,0.048737298697233],[-0.018157007172704,0.017535945400596,0.033502519130707],[-0.01489754486829,0.084545008838177,0.006641932297498]],[[-0.053595080971718,0.064287520945072,0.047264896333218],[0.042773444205523,0.040459804236889,0.016515724360943],[0.048577781766653,0.017813097685575,0.029680594801903]],[[0.10129138082266,0.020088206976652,0.096942685544491],[0.041335843503475,-0.040683019906282,0.076333679258823],[0.051313046365976,0.028654290363193,0.035501077771187]],[[0.029391122981906,0.015048516914248,0.022532878443599],[0.039381828159094,0.029185453429818,-0.064642459154129],[0.043530475348234,-0.063537783920765,0.028042644262314]],[[-0.0015549761010334,0.016984865069389,-8.5635067080148e-05],[0.046025782823563,0.002351988106966,0.013743579387665],[0.025309421122074,0.049674298614264,-0.018301784992218]],[[0.055549431592226,0.11698198318481,-0.049479175359011],[0.034710437059402,0.04125888645649,-0.00015102862380445],[0.085464410483837,0.017432762309909,0.077167749404907]],[[0.0018704639514908,0.020478604361415,0.025017511099577],[-0.022776806727052,-0.0084795765578747,0.011577521450818],[-0.04028894007206,0.031511437147856,-0.019535494968295]],[[0.015116331167519,-0.041616071015596,0.067062437534332],[-0.057640705257654,0.039726596325636,-0.017735555768013],[-0.10329569131136,-0.0031137021724135,-0.037621676921844]],[[-0.061567585915327,0.012570235878229,0.014288183301687],[-0.017763242125511,0.045249160379171,0.056118655949831],[0.026792032644153,-0.025784052908421,0.035206075757742]],[[-0.074542716145515,0.014965781010687,0.0057440842501819],[-0.050359677523375,-0.1084643304348,0.039678767323494],[0.075944758951664,-0.020345291122794,0.059716090559959]],[[-0.025095300748944,0.023344207555056,0.066150493919849],[0.095970444381237,0.094831474125385,0.043484326452017],[0.053711708635092,-0.038555916398764,-0.01779911108315]],[[-0.062261376529932,0.0055422983132303,0.01922077126801],[0.023307790979743,0.11273072659969,-0.052510544657707],[0.0035993957426399,0.051963251084089,-0.030855663120747]],[[0.019909396767616,0.080317065119743,0.05316324159503],[-0.067008294165134,0.023060601204634,0.056039500981569],[-0.011545683257282,-0.036504883319139,-0.017463998869061]],[[0.010850701481104,0.032084058970213,-0.029468076303601],[0.018163507804275,0.054786883294582,0.093132749199867],[-0.058203980326653,-0.091276533901691,-0.0031186928972602]],[[-0.030451277270913,-0.0095088137313724,0.026995470747352],[-0.014894763939083,0.014487533830106,0.071742199361324],[-0.042372670024633,0.020038764923811,-0.045607171952724]],[[0.048862345516682,-0.017449364066124,0.014223674312234],[0.12807562947273,-0.035704649984837,-0.033560078591108],[0.032060161232948,-0.0099770557135344,-0.043067917227745]],[[-0.014333868399262,0.034401956945658,0.030622486025095],[0.016809392720461,0.014552413485944,0.10282973945141],[0.10013041645288,-0.06776512414217,-0.040348768234253]],[[-0.0044622053392231,0.0057902187108994,0.0055014532990754],[0.061006065458059,0.10353278368711,0.0184919051826],[-0.035461336374283,0.0032396430615336,0.061797857284546]],[[-0.11795743554831,-0.069410189986229,-0.048223406076431],[0.014427181333303,-0.039658434689045,0.013473059982061],[-0.047753632068634,-0.046511370688677,-0.041270829737186]],[[-0.038351856172085,0.071652986109257,-0.0080760326236486],[0.024855287745595,-0.033857300877571,0.011275121942163],[0.012305754236877,0.041249539703131,-0.0017520680557936]],[[0.063956178724766,0.07693162560463,0.065735161304474],[0.10500451177359,0.028211589902639,-0.013537488877773],[0.075129330158234,0.08498503267765,0.013033942319453]],[[0.012577175162733,-0.0081247668713331,0.012260195799172],[-0.016824783757329,0.083317786455154,-0.023192755877972],[0.12044890224934,0.050260134041309,0.030773978680372]],[[0.0012651204597205,-0.0055945138446987,0.00091413944028318],[0.016459975391626,0.034388273954391,0.0021832513157278],[-0.053315345197916,0.03392031416297,-0.079004526138306]],[[0.031727515161037,0.044645067304373,0.1010762527585],[-0.023392612114549,0.0076761967502534,-0.059379853308201],[0.056319769471884,-0.059772957116365,0.0901138484478]],[[-0.029658449813724,-0.1293850839138,-0.0011600849684328],[0.010734166949987,-0.012258200906217,0.02557778917253],[0.076654382050037,0.11044086515903,0.061370011419058]],[[-0.03878416121006,0.046794261783361,0.0093679819256067],[0.041893996298313,0.047537013888359,0.0075231189839542],[-0.028935387730598,-0.012830254621804,-0.092823646962643]],[[-0.0057632019743323,0.011869926936924,-0.063629403710365],[-0.042165044695139,0.000934116425924,0.03248555213213],[-0.060037799179554,0.020680921152234,0.053396470844746]],[[-0.020652951672673,0.055381812155247,0.0053045037202537],[0.0061657642945647,-0.039194669574499,0.057325169444084],[-0.059939421713352,-0.075172066688538,0.048384081572294]],[[0.010981788858771,-0.088865958154202,-0.0070782778784633],[-0.065182015299797,0.055545102804899,-0.084226161241531],[-0.04426771774888,-0.044941708445549,0.063947521150112]],[[-0.023366633802652,0.066145949065685,-0.04380775988102],[-0.062189899384975,0.024459253996611,-0.027146266773343],[0.041345104575157,0.086398929357529,0.012269960716367]],[[-0.012608747929335,0.028035901486874,-0.026636764407158],[0.041105762124062,-0.05174720287323,-0.033737380057573],[0.028001261875033,0.067690350115299,0.038070626556873]],[[0.048503112047911,0.029603123664856,0.010588869452477],[0.041853461414576,-0.002013960853219,0.012116137892008],[0.07788098603487,0.084546968340874,0.058336395770311]],[[-0.034223858267069,0.046691291034222,0.014483473263681],[0.025243900716305,-0.084562785923481,-0.052333541214466],[-0.0061711170710623,0.038772534579039,0.031622063368559]],[[-0.047451138496399,0.051594030112028,-0.096425570547581],[0.045092072337866,0.047437999397516,-0.030453709885478],[0.0014174119569361,0.062716320157051,0.02463473379612]],[[-0.039150279015303,0.038451474159956,0.0096953548491001],[0.025534115731716,-0.034964755177498,-0.038451552391052],[-0.026126703247428,0.0049420357681811,-0.04258194938302]],[[-0.064423233270645,0.02648126333952,-0.02991403453052],[0.056993950158358,0.12768903374672,-0.036069553345442],[0.016277985647321,-0.019280815497041,0.049968633800745]],[[0.091446362435818,0.034600611776114,0.079953528940678],[0.030598983168602,0.039623886346817,0.037261549383402],[0.033124540001154,-0.04151152074337,-0.10332948714495]],[[0.014079939574003,-0.048648405820131,-0.083842299878597],[0.0093907844275236,0.088506586849689,-0.032857894897461],[-0.032093469053507,-0.035236898809671,0.017726395279169]],[[-0.02644021064043,-0.036340057849884,-0.044855244457722],[0.058850977569818,0.059694156050682,-0.055635176599026],[-0.0034017404541373,0.063502952456474,0.050162222236395]],[[0.008057146333158,0.023582501336932,-0.066236570477486],[0.0082195429131389,-0.0067678717896342,0.058048274368048],[0.037110939621925,0.064432606101036,-0.031159089878201]],[[0.098524942994118,0.091874830424786,0.01811102591455],[0.0020479841623455,0.0076338863000274,0.017113152891397],[0.021289624273777,0.020133616402745,-0.017144957557321]],[[0.081708654761314,-0.036538783460855,0.040679819881916],[0.078786663711071,0.058577556163073,0.036218997091055],[0.060128062963486,0.0064929304644465,0.022273432463408]],[[0.052322972565889,-0.082310691475868,0.071950294077396],[0.054187200963497,0.059132065623999,-0.024107104167342],[-0.051340457051992,0.045860070735216,0.0099987555295229]]],[[[0.03783243149519,0.040745168924332,-0.04308258742094],[0.087657786905766,0.033786859363317,0.056429084390402],[-0.026791559532285,0.023029608651996,0.035815469920635]],[[0.028626726940274,0.02924220636487,-0.044761963188648],[0.061807349324226,-0.0058860522694886,0.022782936692238],[0.023214070126414,0.041097451001406,0.031939163804054]],[[0.02406794950366,0.015285092405975,0.0053350003436208],[0.0012057361891493,0.072540752589703,0.021128633990884],[0.0079738656058908,0.038435947149992,-0.058574359863997]],[[-0.015771433711052,0.046051949262619,0.082791827619076],[0.033058367669582,-0.061933238059282,-0.022213825955987],[0.020948905497789,0.0096554243937135,0.014531508088112]],[[0.061079110950232,-0.030755624175072,-0.089243918657303],[0.061584308743477,-0.10373771935701,-0.051531076431274],[-0.061582449823618,0.010339161381125,0.024018427357078]],[[0.013285748660564,0.050848621875048,0.058162428438663],[0.06141796335578,-0.12326067686081,0.029076475650072],[0.10289412736893,-0.058831933885813,0.00015599917969666]],[[-0.017710581421852,0.054080177098513,0.0094199487939477],[-0.016349244862795,0.027579866349697,-0.044781766831875],[-0.059834327548742,0.017506310716271,-0.025927320122719]],[[0.073677644133568,-0.025772172957659,-0.058233551681042],[-0.038043804466724,0.023197904229164,-0.064983829855919],[-0.046916496008635,0.018301665782928,0.078363567590714]],[[-0.047426287084818,0.026140350848436,0.076019763946533],[0.022718697786331,0.01415666565299,-0.020934829488397],[-0.0051687392406166,0.037839740514755,-0.055073499679565]],[[-0.0036807027645409,0.040130715817213,0.047975238412619],[0.072765059769154,0.11076269298792,0.074783578515053],[0.02206576988101,-0.12097659707069,0.046024344861507]],[[0.048396032303572,-0.0096528138965368,0.033481359481812],[0.083976246416569,-0.029620034620166,0.0023984911385924],[0.027458576485515,-0.010956802405417,0.0031487348023802]],[[-0.044464871287346,0.011894940398633,0.02154360152781],[0.027133170515299,0.023249354213476,-0.037374015897512],[0.018504854291677,0.030773613601923,0.014188368804753]],[[0.030244562774897,0.068960547447205,-0.03050921112299],[0.0017755650915205,-0.026069149374962,0.031537760049105],[-0.040401946753263,0.044705953449011,0.021522587165236]],[[0.043248485773802,0.022208960726857,-0.057232692837715],[-0.04497604817152,0.048104144632816,-0.055404022336006],[-0.015971949324012,-0.035786386579275,0.014821711927652]],[[0.013508901000023,0.080602198839188,0.071968160569668],[0.13078378140926,0.098618067800999,-0.036698833107948],[-0.036905266344547,0.077001199126244,0.099711440503597]],[[-0.062213379889727,-0.069388225674629,-0.023017998784781],[-0.014087794348598,-0.041044354438782,-0.053829085081816],[-0.01245130226016,-0.073330171406269,-0.035775549709797]],[[0.023875743150711,-0.02518592774868,0.014658007770777],[0.014628172852099,0.0037791391368955,0.045828260481358],[-0.022408470511436,-0.043724372982979,-0.044986050575972]],[[-0.025631856173277,0.068387657403946,-0.052674662321806],[-0.012294079177082,-0.091234922409058,-0.06667822599411],[0.04022254049778,0.0099402721971273,-0.056404773145914]],[[-0.014809078536928,0.043320223689079,0.018734812736511],[0.010356723330915,0.039246588945389,0.096026964485645],[-0.01211413834244,0.072141468524933,-0.020826475694776]],[[0.082003347575665,-0.00096911174478009,0.099347345530987],[0.013333388604224,0.047014731913805,0.011115501634777],[-0.0063186907209456,0.003153528785333,0.048366792500019]],[[0.0014282037736848,0.0033436107914895,0.014527607709169],[0.008004697971046,-0.089471131563187,-0.075234591960907],[0.046302851289511,0.028778979554772,-0.080882132053375]],[[0.074371196329594,-0.018837112933397,0.060541883111],[0.037211533635855,-0.0043920455500484,0.038251623511314],[-0.007999250665307,0.037003114819527,0.047253217548132]],[[-0.078701600432396,-0.0098548820242286,-0.024037670344114],[0.10875856876373,-0.018431361764669,-0.050577338784933],[-0.06699612736702,0.011171652004123,0.075307801365852]],[[0.012496736831963,0.016853922978044,0.092459328472614],[0.015259285457432,-0.0018613012507558,-0.030214069411159],[0.039622269570827,-0.044846717268229,-0.028325520455837]],[[-0.0024811178445816,-0.021581742912531,0.02110430598259],[-0.017200915142894,-0.013430186547339,0.079833246767521],[0.034558244049549,0.024188594892621,-0.00059841311303899]],[[-0.050038360059261,0.023777389898896,0.043611362576485],[0.027457965537906,-0.043415617197752,-0.01323913410306],[0.018956415355206,-0.038348510861397,0.021869417279959]],[[0.018621331080794,0.013324079103768,0.065216071903706],[-0.06312407553196,0.036092586815357,-0.013635385781527],[-0.048737827688456,-0.0071218335069716,0.030781658366323]],[[0.0013530984288082,0.071310475468636,0.020098283886909],[0.018448432907462,-0.056638665497303,0.054490804672241],[0.037693168967962,0.075099922716618,0.007573664188385]],[[-0.013495303690434,0.049068924039602,0.034463468939066],[-0.026353111490607,0.0013020085170865,0.060481496155262],[-0.019100025296211,0.03047251701355,0.034262966364622]],[[0.040917672216892,-0.008821508847177,0.078412212431431],[0.011761327274144,-0.040348131209612,-0.049470532685518],[0.0074963215738535,-0.03869204968214,-0.035148624330759]],[[0.0024866496678442,0.037354160100222,-0.033874485641718],[0.031507909297943,-0.011995328590274,-0.017683677375317],[-0.013436336070299,0.0015821285778657,0.058286137878895]],[[0.010618944652379,0.024241499602795,-0.0014025274431333],[0.034240625798702,-0.063062883913517,-0.019396072253585],[0.04392359405756,0.079890504479408,0.075916148722172]],[[-0.040471397340298,-0.0020393554586917,-0.063737086951733],[-0.066789649426937,-0.028674846515059,-0.021816115826368],[0.012793772853911,0.074016436934471,-0.047923378646374]],[[0.0059580132365227,-0.051745638251305,-0.0057820011861622],[-0.055079270154238,-0.011727392673492,-0.025972791016102],[0.010047013871372,0.023859392851591,0.035602360963821]],[[0.010022698901594,-0.041870679706335,-0.090413838624954],[0.01961169578135,-0.029305836185813,-0.01457267254591],[0.016749845817685,0.014565865509212,0.083049528300762]],[[-0.03787798807025,-0.057695705443621,-0.030162155628204],[-0.064212426543236,-0.054926920682192,-0.071713514626026],[-0.0059934579767287,0.039060276001692,0.037373706698418]],[[-0.073002561926842,0.0094703212380409,0.026942793279886],[0.076842397451401,-0.023270800709724,0.032234508544207],[-0.066198475658894,-0.0032966672442853,-0.0084138521924615]],[[-0.028449127450585,-0.037900373339653,0.040056731551886],[-0.046840701252222,0.0055457856506109,-0.040610168129206],[-0.027861375361681,0.016477754339576,0.032363135367632]],[[0.10210577398539,0.03619072586298,-0.00937429536134],[-0.0028414272237569,0.010726626962423,0.035616654902697],[-0.042592160403728,-0.012318064458668,0.015249078162014]],[[0.025556752458215,-0.01858483441174,-0.020996805280447],[-0.057268813252449,0.049459058791399,0.044859636574984],[-0.0026520625688136,-0.00019200416863896,0.0035894948523492]],[[-0.020080048590899,-0.0090620229020715,0.020332684740424],[-0.0067337970249355,0.0062398365698755,-0.0045378310605884],[0.026100447401404,0.021035922691226,0.04655098170042]],[[0.048360090702772,0.018888266757131,-0.066229723393917],[0.02148630656302,0.0054176482371986,0.039717454463243],[0.081807106733322,-0.062814235687256,-0.055248681455851]],[[0.070600777864456,-0.02911045588553,-0.043802458792925],[0.031671304255724,-0.022969592362642,-0.019321888685226],[0.00034203170798719,-0.033750399947166,-0.017994938418269]],[[0.012266960926354,-0.04753926768899,0.012337937019765],[-0.016133790835738,-0.059804268181324,0.0066611850634217],[0.048762325197458,0.038654930889606,0.016193686053157]],[[-0.040588121861219,-0.019764829427004,0.026597497984767],[0.084528341889381,0.019089445471764,0.059361930936575],[0.014242545701563,0.0037004442419857,0.039868164807558]],[[0.076303072273731,0.086815662682056,0.023093977943063],[0.062716029584408,0.010927442461252,0.01887102983892],[-0.052003540098667,0.001046753488481,0.027061954140663]],[[0.067775137722492,0.040474057197571,0.071921810507774],[-0.0067493333481252,-0.085497841238976,-0.0011358415940776],[-0.0010226984741166,0.0018806357402354,0.052825964987278]],[[-0.014183244667947,-0.014515817165375,0.070146545767784],[-0.026701137423515,0.042416017502546,0.040503975003958],[-0.0018014673842117,-0.0031854163389653,0.068564422428608]],[[0.0029625638853759,0.04906115308404,-0.016427623108029],[-0.0059902654029429,-0.0038790258113295,0.066309377551079],[0.014764813706279,0.018404297530651,0.019233541563153]],[[-0.0027511431835592,0.054907072335482,-0.016315443441272],[0.014268714003265,-0.048412512987852,0.05406604334712],[-0.025641165673733,0.028950896114111,-0.015683144330978]],[[-0.055892072618008,-0.0036556418053806,-0.028870908543468],[0.073039583861828,-0.015368769876659,0.012905635870993],[-0.0065450449474156,-0.03801317512989,-0.085985705256462]],[[0.046218518167734,0.019517390057445,0.016370128840208],[0.010685824789107,-0.12386903911829,-0.043213479220867],[0.038375180214643,0.087473817169666,-0.031244749203324]],[[-0.065702997148037,-0.05120861902833,0.013899870216846],[-0.10009993612766,0.0024115147534758,0.061449352651834],[-0.014013991691172,-0.043437719345093,0.039365477859974]],[[0.005389261059463,-0.024956928566098,-0.032061263918877],[0.088937923312187,-0.049515806138515,-0.037033621221781],[-0.0060293627902865,0.026709901168942,-0.0011793578742072]],[[-0.02737906947732,0.059778112918139,-0.029222058132291],[-0.055391646921635,-0.010873018763959,-0.010420177131891],[0.037886086851358,0.05393959954381,-0.014833330176771]],[[0.008072498254478,0.019224537536502,-0.025980845093727],[0.0081560546532273,0.033807404339314,0.050180099904537],[0.016689650714397,-0.047228954732418,0.033552549779415]],[[-0.048191864043474,-0.064464516937733,-0.063967198133469],[0.093518666923046,-0.052684627473354,0.0059543941169977],[-0.051549557596445,-0.021624634042382,-0.025223020464182]],[[-0.015636784955859,-0.030215431004763,-0.067691028118134],[-0.028736082836986,0.043601375073195,-0.021559214219451],[0.013792393729091,-0.03042527101934,-0.013852081261575]],[[0.019740795716643,0.050857674330473,-0.028023486956954],[-0.025935690850019,0.044411193579435,0.04334307089448],[-0.031263917684555,0.084150843322277,-0.013326813466847]],[[-0.018310282379389,0.0026624999009073,0.081881061196327],[-0.033042781054974,0.0070949145592749,0.0007419326575473],[0.024634441360831,0.0058308481238782,0.027897326275706]],[[0.012516788206995,-0.0074227228760719,-0.042568907141685],[-0.051273100078106,0.047303058207035,0.034497432410717],[-0.053081471472979,0.026304610073566,0.021434552967548]],[[0.011491239070892,0.017531450837851,-0.015762960538268],[-0.045528318732977,-0.025756487622857,-0.013869591057301],[-0.020551396533847,-0.065801322460175,0.054572310298681]],[[0.016108883544803,-0.083759605884552,0.0067658014595509],[-0.049628999084234,0.031353499740362,0.029179636389017],[0.017765885218978,0.054786939173937,0.054141622036695]],[[-0.029189467430115,-0.012749998830259,0.043817088007927],[0.055242124944925,0.013601239770651,-0.094773784279823],[0.033242352306843,0.013306704349816,-0.099022887647152]],[[0.030925078317523,0.039470665156841,-0.019525786861777],[0.021963894367218,0.041777156293392,0.0078676110133529],[0.11654328554869,-0.043785888701677,0.046439025551081]],[[-0.021061897277832,0.047693386673927,0.052169863134623],[-0.0091007146984339,-0.093695871531963,-0.01104139816016],[-0.099459566175938,-0.062495484948158,-0.061781220138073]],[[0.10314159095287,0.029294988140464,0.036984577775002],[0.051249995827675,0.03281144797802,0.014499667100608],[0.018448321148753,0.0023666771594435,-0.034620054066181]],[[0.075222350656986,-0.061837144196033,0.018098305910826],[0.024901855736971,0.043068181723356,0.071517810225487],[0.072748899459839,0.009320018813014,0.034029841423035]],[[-0.036076635122299,-0.021288117393851,-0.028484519571066],[0.024909136816859,-0.0084680998697877,-0.062230613082647],[0.02954057790339,0.031959306448698,0.034816808998585]],[[-0.054518815129995,0.047926526516676,0.051356595009565],[0.043662745505571,-0.014207760803401,-0.019538747146726],[-0.00027349314768799,0.033551204949617,0.049809876829386]],[[0.040705312043428,-0.0024985573254526,-0.057384856045246],[-0.02345884591341,-0.0089584123343229,0.01230906881392],[-0.015351464040577,-0.0021833607461303,-0.0034342312719673]],[[0.018735826015472,-0.015094265341759,-0.016247319057584],[0.074343174695969,-0.01298941206187,-0.036662738770247],[-0.0056041600182652,0.068653039634228,0.0026426874101162]],[[-0.03291293233633,-0.01117542013526,0.025201391428709],[0.060825008898973,-0.046731598675251,-0.032448772341013],[-0.065796412527561,-0.029318215325475,0.026554750278592]],[[0.017050428315997,0.059530191123486,-0.011121137067676],[0.099094316363335,-0.013867187313735,0.0027684608940035],[-0.0098637910559773,-0.03077775798738,0.049675386399031]],[[-0.11376938223839,-0.05121598765254,-0.0036950160283595],[-0.028365183621645,0.0031655658967793,-0.019790414720774],[0.063210286200047,-0.019084678962827,-0.036443009972572]],[[-0.014529199339449,0.036640081554651,-0.037295587360859],[0.014974513091147,0.0090355258435011,0.076122216880322],[0.0047538443468511,-0.029819028452039,-0.023789884522557]],[[-0.032581854611635,-0.063510775566101,-0.051510993391275],[0.007373159751296,0.010024715214968,-0.028100471943617],[0.016558919101954,-0.037249684333801,0.0070576849393547]],[[0.0057345940731466,-0.02687231451273,0.088110268115997],[0.044949844479561,0.10727240145206,-0.017645398154855],[0.06330181658268,0.059909582138062,0.04489778354764]],[[0.058642771095037,0.03049680031836,-0.025680977851152],[0.011967382393777,0.0013947715051472,-0.00010773298708955],[0.023029254749417,0.078584164381027,-0.028032029047608]],[[0.0076873213984072,-0.073841094970703,-0.010223224759102],[-0.051234282553196,0.095102444291115,0.074010901153088],[-0.0032587703317404,0.057581670582294,-0.029587861150503]],[[-0.048835527151823,-0.067636489868164,-0.041719488799572],[0.045177914202213,0.063925594091415,0.090738214552402],[-0.0155711453408,0.075354889035225,0.0026658955030143]],[[0.095290370285511,-0.06371745467186,0.050711147487164],[-0.010250461287796,-0.025891957804561,-0.082871653139591],[-0.023386400192976,-0.0049089859239757,0.062192033976316]],[[0.038317386060953,0.079012334346771,0.013587724417448],[-0.048082802444696,-0.032868202775717,-0.035396408289671],[-0.01014871802181,0.0070378328673542,0.016602614894509]],[[0.038393698632717,-0.011847523972392,-0.002305865753442],[-0.02133490331471,0.0058844652958214,0.029389647766948],[-0.001818646909669,0.0052113481797278,-0.00015916764095891]],[[-0.008381774649024,-0.020017564296722,0.0080601032823324],[0.079060047864914,0.027854468673468,-0.029536003246903],[-0.044917326420546,-0.014416529797018,-0.004656087141484]],[[0.037872273474932,0.058050710707903,-0.11269419640303],[0.04805489256978,0.0016380342422053,0.055735524743795],[-0.028927022591233,-0.044477891176939,-0.05516292154789]],[[0.079871624708176,-0.035332288593054,-0.020476069301367],[0.012149296700954,-0.004940849263221,-0.015633264556527],[0.0082508437335491,-0.00095552823040634,-0.026524238288403]],[[0.014676813036203,0.0053693852387369,0.038047578185797],[0.084672003984451,0.041355475783348,0.031523678451777],[0.041387688368559,0.0072438754141331,0.011261157691479]],[[0.038991637527943,0.018149930983782,0.044118009507656],[-0.017030203714967,-0.030225379392505,0.0059022726491094],[-0.072423934936523,0.017026802524924,0.021426796913147]],[[0.010410338640213,0.0096135223284364,0.025194166228175],[-0.039390258491039,0.018730191513896,-0.091371230781078],[-0.026392595842481,0.0080477632582188,0.080002762377262]],[[0.062903143465519,0.081729248166084,-0.10185544937849],[0.054082334041595,-0.02804902754724,-0.0082201790064573],[-0.050728037953377,-0.041800979524851,-0.0051057981327176]],[[-0.04517762735486,0.040067527443171,0.015980092808604],[-0.052862323820591,0.02437249943614,0.078965649008751],[-0.0011750013800338,-0.031836580485106,0.063297234475613]],[[-0.043441731482744,-0.021500529721379,0.019032133743167],[-0.034471280872822,-0.037378557026386,0.024478547275066],[-0.056445628404617,0.025575552135706,0.00025943238870241]],[[0.0045153284445405,-0.04255610704422,-0.045889101922512],[-0.026812048628926,0.12658427655697,-0.019734393805265],[-0.087862245738506,0.00181333522778,0.055061858147383]],[[0.029991801828146,-0.0380504950881,0.037063498049974],[0.020776223391294,-0.047768536955118,-0.010037804022431],[0.063515737652779,-0.02567445486784,0.026995969936252]],[[3.071784885833e-05,0.037964127957821,0.030003944411874],[0.0063336533494294,0.036867577582598,-0.018300889059901],[0.021759809926152,0.016427453607321,-0.035830780863762]],[[0.039799559861422,-0.092472426593304,0.025246135890484],[0.017207514494658,-0.030477469787002,0.020815065130591],[0.022327000275254,-0.022251769900322,-0.038259007036686]],[[-0.044273592531681,0.083920836448669,-0.073749862611294],[0.030140358954668,0.06702184677124,0.02761104516685],[0.014703151769936,-0.0088534420356154,-0.022569622844458]],[[-0.098911508917809,0.023989235982299,-0.020099090412259],[0.031943637877703,0.046087943017483,-0.054850932210684],[-0.075656965374947,0.0047250092029572,0.0012482579331845]],[[0.04270963743329,0.037091668695211,0.0042890533804893],[-0.024030826985836,0.044026650488377,-0.04767319560051],[0.027308592572808,0.0061532538384199,0.044792529195547]],[[-0.012988216243684,0.0069637964479625,-0.059320166707039],[-0.025851372629404,-0.015590677037835,0.064600773155689],[-0.011749882251024,0.083439625799656,-0.071205019950867]],[[-0.027926156297326,0.03464075922966,-0.0034601574297994],[0.039701219648123,0.022828118875623,0.0019752359949052],[0.065950728952885,-0.00039341926458292,-0.004884191788733]],[[0.018589666113257,-0.0008010555175133,-0.050324004143476],[0.011363247409463,0.016660781577229,-0.033381748944521],[0.038492348045111,0.012413900345564,0.00067547039361671]],[[0.012510068714619,-0.042714782059193,-0.048654239624739],[-0.0022564777173102,0.04367882758379,-0.015341191552579],[-0.037354949861765,-0.026369910687208,-0.01151661016047]],[[0.038525231182575,0.014069016091526,0.074318781495094],[-0.059811692684889,0.050177119672298,0.01570668630302],[0.042949210852385,0.0057245581410825,-0.015599257312715]],[[0.0028578951023519,0.014017175883055,0.028853818774223],[0.058536916971207,0.0059148757718503,0.01565452478826],[-0.023958005011082,0.036022171378136,0.085173465311527]],[[-0.047405980527401,0.028345163911581,0.0055027180351317],[0.029974577948451,0.015921905636787,-0.0027990348171443],[-0.031509790569544,0.086382940411568,-0.011960672214627]],[[0.085173308849335,-0.054338563233614,0.0566650852561],[-0.0079647107049823,0.10639332234859,0.019313545897603],[-0.00065586995333433,-0.081045597791672,0.024166038259864]],[[0.021519612520933,0.078648321330547,0.0053469203412533],[-0.015341736376286,0.015069278888404,0.063595436513424],[-0.022207351401448,0.01452496740967,-0.064142599701881]],[[-0.014996930956841,0.061996690928936,-0.019268410280347],[0.0021149236708879,-0.013851954601705,0.00084382382920012],[-0.027834363281727,0.021545730531216,0.025718778371811]],[[-0.044460065662861,0.035497505217791,0.034675661474466],[-0.015946730971336,-0.012755444273353,-0.026012381538749],[0.077313534915447,-0.095861010253429,0.032864704728127]],[[0.082713581621647,-0.026447396725416,-0.01337562687695],[-0.048487614840269,-0.011584986932576,-0.051878616213799],[0.014229384250939,0.035131029784679,0.015621154569089]],[[0.0011284404899925,0.060835480690002,0.003569258376956],[-0.025112882256508,0.0086013311520219,0.017157521098852],[0.0044746003113687,0.0014522430719808,-0.015483590774238]],[[-0.024335414171219,-0.090600103139877,-0.045366801321507],[-0.026424881070852,-0.0051658004522324,0.023902654647827],[0.036822766065598,0.055937740951777,0.013162774965167]],[[0.01178371347487,0.0093152141198516,-0.022112084552646],[-0.013146403245628,0.10196749120951,-0.026306999847293],[-0.005801270250231,-0.0041764448396862,0.046314720064402]],[[-0.01404988206923,-0.016975911334157,-0.042231421917677],[0.036469504237175,0.019442748278379,0.0061372225172818],[0.020259529352188,0.00082337443018332,0.017816288396716]],[[-0.038614232093096,0.053809799253941,0.027107730507851],[0.035730041563511,0.043084073811769,0.021945951506495],[0.059139706194401,0.011019185185432,0.010263590142131]],[[0.080675311386585,0.014239174313843,-0.0045899664983153],[-0.026148565113544,0.040734183043242,-0.035474922508001],[0.0074122389778495,0.057653080672026,0.038347724825144]],[[-0.11368283629417,-0.042431309819221,-0.053594395518303],[-0.068023107945919,0.036348592489958,0.12330941855907],[-0.0020922450348735,0.050330720841885,-0.01840977743268]],[[-0.054038800299168,-0.055562503635883,0.017734184861183],[-0.040770884603262,0.032636523246765,0.035890746861696],[-0.023883670568466,0.029818804934621,-0.052654813975096]],[[0.030184568837285,0.027628542855382,0.036927577108145],[0.033745519816875,0.076456040143967,0.0025212769396603],[0.046948101371527,-0.058096785098314,-0.0032964798156172]],[[-0.060534060001373,-0.0026181091088802,0.055218163877726],[-0.023806577548385,0.029619498178363,-0.00020679229055531],[0.016431799158454,0.033366158604622,-0.016122112050653]],[[0.010316351428628,-0.047175426036119,-0.07309353351593],[0.005723784212023,0.037710189819336,-0.053011365234852],[-0.023183301091194,-0.044425528496504,0.028621543198824]],[[0.0039084716700017,-0.0067946910858154,0.012042128480971],[0.017964370548725,-0.0731306001544,-0.012865968979895],[-0.028863910585642,0.071172699332237,0.058622598648071]],[[0.044918097555637,-0.024206597357988,-0.06803834438324],[-0.019186992198229,-0.028698042035103,0.020307997241616],[-0.0037039923481643,0.0084378188475966,-0.066664636135101]],[[0.060862842947245,-0.0055614872835577,-0.019185099750757],[-0.0043719573877752,0.05047120153904,-0.07372459769249],[0.030070440843701,0.015084380283952,0.059618066996336]],[[0.034220173954964,0.064338997006416,0.065461419522762],[0.061833791434765,0.044606395065784,0.010879366658628],[0.055314693599939,0.020030526444316,0.027653181925416]],[[0.067316561937332,-0.019685817882419,-0.13201232254505],[0.036142151802778,0.0029010395519435,0.0076837912201881],[0.030114442110062,0.064247824251652,0.043124102056026]]],[[[0.11080975085497,0.063911132514477,-0.021722540259361],[-0.01123367715627,-0.038155779242516,0.081098802387714],[-0.063335977494717,-0.014218942262232,-0.046693161129951]],[[0.055819906294346,-0.066346764564514,0.11133363097906],[-0.0060545317828655,0.082822404801846,-0.032450415194035],[-0.13258017599583,-0.046078823506832,-0.023967472836375]],[[0.065362602472305,0.022622849792242,0.043411463499069],[0.019083080813289,-0.054189313203096,-0.15059754252434],[0.045601326972246,0.035589642822742,0.0055745388381183]],[[0.055017467588186,0.051756419241428,0.087203562259674],[0.017354963347316,0.10019920766354,0.016238246113062],[-0.055493950843811,-0.06440058350563,-0.045485708862543]],[[-0.050078604370356,0.08480479568243,-0.062872141599655],[-0.016844790428877,0.089599780738354,0.089949175715446],[0.036076474934816,-0.047845665365458,0.07248068600893]],[[-0.011307742446661,-0.0082190362736583,0.066969811916351],[0.16766917705536,0.027149725705385,0.030670493841171],[0.017205512151122,0.072911508381367,0.022828442975879]],[[0.11842932552099,-0.062290873378515,0.091825321316719],[0.019384760409594,-0.0010038844775409,-0.046050291508436],[-0.12896603345871,0.032232586294413,-0.033326182514429]],[[-0.036690074950457,-0.010297352448106,-0.03538753464818],[-0.090575091540813,-0.08688435703516,0.084017246961594],[-0.062674701213837,-0.03090513125062,0.038074143230915]],[[-0.02458456531167,0.0034049756359309,0.14472317695618],[0.024304429069161,-0.10318877547979,0.010381205938756],[-0.072636269032955,0.11243262887001,-0.024866085499525]],[[0.17729516327381,0.015563174150884,0.13083417713642],[0.068400040268898,0.036201640963554,0.047660652548075],[-0.11490470170975,-0.046996001154184,0.060199588537216]],[[0.066040404140949,0.033938843756914,0.10183238983154],[0.029994668439031,0.096085265278816,0.0009207462426275],[-0.089476197957993,-0.12673290073872,-0.077765956521034]],[[0.003853184171021,0.090485416352749,0.1229882389307],[-0.018207371234894,0.070588417351246,0.0076238750480115],[0.028333654627204,-0.050212614238262,0.047477919608355]],[[-0.0056389109231532,-0.049010679125786,-0.024585457518697],[0.099552512168884,-0.088658362627029,0.078989207744598],[-0.018950628116727,0.038437366485596,-0.060691699385643]],[[0.093305133283138,0.060354512184858,0.1203920841217],[-0.063585862517357,0.042443074285984,-0.027821555733681],[-0.03108205460012,-0.0097326254472136,-0.031360819935799]],[[0.071982808411121,0.23066672682762,0.18554998934269],[0.023250410333276,-0.019217414781451,0.089958764612675],[0.08299246430397,0.012956005521119,0.014725184999406]],[[0.073384694755077,0.037430457770824,-0.062516435980797],[-0.14701786637306,-0.10243979841471,0.0073773581534624],[-0.0094705140218139,-0.017455553635955,-0.048893135040998]],[[-0.018132762983441,0.083689995110035,0.013663043268025],[-0.066732496023178,0.040814753621817,-0.036771334707737],[0.081510111689568,0.045041278004646,-0.034693114459515]],[[0.082547828555107,0.042601350694895,-0.059516381472349],[-0.0021301645319909,0.015846867114305,0.11730416864157],[-0.17284248769283,-0.067813962697983,-0.04298447817564]],[[0.068864852190018,-0.13819773495197,0.026341315358877],[0.096376277506351,0.076133832335472,-0.016947502270341],[-0.0032904034014791,0.090938627719879,-0.038173485547304]],[[-0.087191633880138,0.045623749494553,0.081142343580723],[0.11990325152874,0.070662178099155,-0.0066702710464597],[0.055369131267071,0.12095303833485,0.052394635975361]],[[-0.1296159029007,-0.067523628473282,0.10727049410343],[0.022394513711333,-0.072981424629688,-0.057943031191826],[-0.043133750557899,0.026142289862037,0.079316668212414]],[[0.075527645647526,0.037788785994053,0.15071104466915],[0.13081762194633,0.059300556778908,0.093579970300198],[0.083926819264889,0.033566761761904,-0.022796599194407]],[[-0.21708615124226,0.035409767180681,-0.048938155174255],[0.017565963789821,0.051041506230831,-0.084252513945103],[-0.034592822194099,-0.042314276099205,-0.056628324091434]],[[-0.013844819739461,0.079993188381195,0.10994167625904],[0.022368470206857,0.020946903154254,0.050719916820526],[-0.080950193107128,-0.14790308475494,0.083126060664654]],[[-0.0066648223437369,0.043986812233925,0.029000908136368],[0.046295735985041,0.048058345913887,-0.019491005688906],[0.022218186408281,-0.0090394103899598,-0.038730695843697]],[[0.071188144385815,0.051275432109833,0.012309210374951],[-0.15818573534489,0.059785436838865,0.012650393880904],[-0.2325354963541,0.024333277717233,-0.18494184315205]],[[0.13395692408085,0.071773663163185,0.052243277430534],[-0.026241907849908,0.010369748808444,0.064378902316093],[-0.061250139027834,0.031245464459062,-0.025240892544389]],[[0.12602858245373,-0.084346637129784,-0.040577217936516],[-0.088918536901474,0.066192619502544,0.024953501299024],[0.034039985388517,0.13352806866169,-0.081782482564449]],[[0.023576008155942,0.061425786465406,-0.0055454070679843],[-0.072686851024628,0.15153555572033,-0.035518918186426],[-0.019523011520505,-0.057499468326569,0.011547490023077]],[[-0.10194561630487,0.04220824688673,0.11836416274309],[0.037226971238852,-0.047345716506243,-0.0074215149506927],[-0.036995783448219,-0.013330877758563,0.072603546082973]],[[0.0033402889966965,-0.033558283001184,-0.033245295286179],[0.0060569373890758,-0.0036265843082219,-0.051706779748201],[0.026938632130623,0.0416105017066,-0.084772750735283]],[[0.05600954964757,-0.028235195204616,0.10087654739618],[0.052003391087055,-0.10967350751162,-0.0058954912237823],[-0.0022610186133534,-0.0056321257725358,0.041522275656462]],[[0.11425422877073,-0.037703242152929,0.1207891702652],[-0.016613774001598,-0.0019054145086557,0.05316749215126],[-0.086101032793522,-0.09465092420578,0.015610333532095]],[[0.073265053331852,0.00064061972079799,0.039838787168264],[-0.029323980212212,0.0052117723971605,0.081833630800247],[-0.088226929306984,-0.033301468938589,0.14403024315834]],[[-0.062979906797409,0.037428148090839,0.093968778848648],[0.084441281855106,0.03670521453023,-0.00062411878025159],[0.042604170739651,0.089207671582699,0.00055782462004572]],[[0.043556608259678,0.039004139602184,0.0030904964078218],[-0.04095670953393,-0.016120979562402,-0.0084325047209859],[0.067957736551762,0.037121899425983,-0.030370932072401]],[[-0.011388756334782,-0.022535314783454,-0.02773654460907],[-0.020910499617457,-0.072447501122952,-0.037735037505627],[-0.081049598753452,-0.088296368718147,-0.035221382975578]],[[0.12257318198681,0.033169258385897,0.013140612281859],[0.1523213237524,0.020120790228248,-0.018986398354173],[0.097921304404736,0.0035451340954751,-0.033052138984203]],[[0.094338797032833,0.11035633087158,0.059585247188807],[-0.021736158058047,-0.082643806934357,-0.029163485392928],[-0.080587476491928,-0.015151657164097,0.091273695230484]],[[0.060317344963551,-0.023392152041197,0.040410239249468],[-0.017253175377846,-0.033906914293766,0.045481413602829],[-0.057171929627657,-0.02029505930841,-0.03698106855154]],[[0.015116980299354,0.030975185334682,0.1660153567791],[0.048652295023203,0.022834565490484,0.068870112299919],[-0.074091382324696,-0.05006455630064,-0.057666990906]],[[0.046849749982357,0.07136157900095,-0.092134222388268],[0.033363744616508,0.076825201511383,0.06149186193943],[-0.0019500781781971,0.0062075704336166,-0.026078417897224]],[[0.21310490369797,-0.0059349378570914,-0.0050240494310856],[0.035485334694386,0.076987974345684,-0.031048895791173],[0.045510221272707,0.12015759944916,0.049931671470404]],[[0.053499899804592,-0.10024879127741,0.0386624597013],[-0.069900363683701,0.015114534646273,0.081180110573769],[-0.065043672919273,0.028189975768328,-0.0088747572153807]],[[0.082067087292671,-0.026149356737733,-0.067980274558067],[0.083955161273479,0.05933578684926,-0.0084817130118608],[0.053939644247293,-0.0085284681990743,0.057738397270441]],[[0.074071876704693,-0.084177061915398,0.073704890906811],[0.063566468656063,-0.031691197305918,-0.040624726563692],[0.084967710077763,-0.059858519583941,0.046927977353334]],[[0.095596335828304,0.045039728283882,0.064465433359146],[0.007659493945539,-0.034676723182201,0.04362465813756],[-0.04302179068327,-0.062562793493271,-0.018340671434999]],[[0.082377761602402,-0.03565626963973,0.058126471936703],[0.048204746097326,0.04306598752737,0.076416000723839],[-0.0022856504656374,0.015356854535639,0.070069119334221]],[[0.077663287520409,0.033696059137583,0.011368495412171],[0.019603867083788,0.083066552877426,0.058633025735617],[-0.067223362624645,-0.021980497986078,0.064312271773815]],[[-0.067900955677032,-0.044749159365892,-0.078469321131706],[-0.014369292184711,0.0514135658741,0.10860395431519],[-0.025546925142407,-0.073757149279118,0.062349215149879]],[[0.14695692062378,0.056935582309961,-0.11200612783432],[-0.066232338547707,0.13083602488041,0.073597028851509],[0.00029808262479492,-0.089814752340317,0.064850337803364]],[[-0.023585554212332,0.069375723600388,0.10787368565798],[0.01433570496738,-0.068137146532536,0.12152164429426],[-0.047638148069382,0.049442242830992,-0.043835714459419]],[[-0.060273330658674,0.026733946055174,-0.025316994637251],[0.023047927767038,-0.0066092838533223,-0.0077295480296016],[-0.0099472813308239,-0.10135464370251,0.023821100592613]],[[-0.094149246811867,0.090255431830883,-0.014569110237062],[-0.12621742486954,-0.023977292701602,0.023273481056094],[-0.067013032734394,-0.020918248221278,0.011452870443463]],[[0.22036488354206,0.1187860891223,-0.039805110543966],[0.039105661213398,-0.0038699605502188,-0.020776730030775],[-0.03680631890893,0.039773285388947,-0.021788880228996]],[[-0.14494794607162,0.017361456528306,0.034327905625105],[0.05915292724967,-0.029225960373878,-0.056377772241831],[-0.064923197031021,-0.16130620241165,0.0030506972689182]],[[-0.035618487745523,0.016524631530046,-0.060999117791653],[0.0076875989325345,-0.036616034805775,0.11896675080061],[0.032389860600233,-0.021284086629748,-0.056213274598122]],[[-0.1485149115324,0.012270437553525,0.065199442207813],[0.09586501121521,-0.14694285392761,0.059867322444916],[-0.10470420867205,-0.079157635569572,-0.013146894983947]],[[-0.23143449425697,-0.12510353326797,0.013556980527937],[-0.11950534582138,-0.085517182946205,0.07285438477993],[-0.11946372687817,0.010545595549047,0.14400671422482]],[[0.044979400932789,0.063032291829586,0.1224654763937],[-0.034977626055479,-0.070836752653122,-0.034800868481398],[-0.10351576656103,-0.011865646578372,-0.044867817312479]],[[0.040432590991259,-0.00037754609365948,0.028859121724963],[-0.015499438159168,0.12479949742556,0.0041678128764033],[0.031266406178474,-0.018794998526573,0.016134895384312]],[[0.040340200066566,0.0080178994685411,-0.038530521094799],[0.00683379964903,0.023966383188963,0.087499924004078],[0.054966010153294,-0.047074217349291,0.07217488437891]],[[0.062227379530668,0.035824928432703,0.11935663223267],[-0.074329636991024,-0.080385200679302,0.0021775728091598],[-0.042262054979801,-0.030681762844324,-0.057187486439943]],[[-0.0077253263443708,-0.098447784781456,-0.025641629472375],[-0.027412643656135,-0.058384377509356,0.042742252349854],[0.097180806100368,-0.067977838218212,0.02070178091526]],[[-0.023547003045678,0.0065694092772901,-0.093259714543819],[-0.019778529182076,0.0051419408991933,-0.042965032160282],[-0.0025707180611789,0.097054250538349,0.011912787333131]],[[-0.070573695003986,-0.0037771097850055,0.085135474801064],[0.060879070311785,-0.0030989211518317,-0.026510974392295],[-0.1819134503603,0.098533205688,-0.026250977069139]],[[-0.0023948799353093,0.0067205298691988,0.056620057672262],[0.012004545889795,0.0098949363455176,0.040453635156155],[0.053381819278002,-0.061787832528353,0.0044125053100288]],[[0.065821766853333,0.019421752542257,0.030070463195443],[0.098964273929596,0.077153362333775,0.0064848526380956],[-0.070620320737362,0.027071351185441,-0.06575645506382]],[[-0.065312512218952,0.015955742448568,-0.01419254206121],[0.052561301738024,-0.078800424933434,0.042737267911434],[-0.025271134451032,-0.021190043538809,-0.061482537537813]],[[-0.011109985411167,0.091195046901703,-0.015612804330885],[-0.094891868531704,0.089431472122669,0.069515556097031],[-0.073629267513752,-0.028248302638531,-0.092123426496983]],[[0.11575930565596,0.31443724036217,-0.1174955740571],[-0.00011723447096301,0.010145088657737,-0.1033750474453],[0.017496835440397,0.036633878946304,-0.21414588391781]],[[0.02061615511775,0.045750416815281,0.00089797825785354],[-0.11468026787043,-0.045077081769705,0.11091290414333],[0.071761675179005,0.047623243182898,0.022477757185698]],[[0.070480234920979,-0.048680324107409,-0.021662056446075],[-0.006478211376816,0.010307874530554,0.031850885599852],[0.03047576546669,0.01873424090445,0.0059172618202865]],[[-0.10360529273748,-0.014595960266888,0.10184508562088],[-0.0033987837377936,-0.0028761243447661,-0.12382270395756],[0.058743067085743,-0.0038736867718399,0.13667224347591]],[[-0.054936822503805,-0.038025356829166,-0.010145029053092],[-0.01106283813715,-0.11765584349632,-0.047645080834627],[-0.091485239565372,0.054965205490589,0.12131791561842]],[[-0.089023523032665,-0.054815962910652,0.0471396073699],[-0.093055844306946,0.05984428152442,-0.057952370494604],[-0.016150640323758,-0.098930887877941,0.034625004976988]],[[0.086639188230038,-0.025026930496097,0.015043944120407],[0.090249314904213,0.043152704834938,0.078929722309113],[-0.035366546362638,0.045375969260931,-0.0031163489911705]],[[-0.016873123124242,-0.0029693217948079,-0.050081513822079],[0.11792639642954,0.0032955713104457,-0.026891738176346],[-0.002768152859062,-0.14672388136387,0.051193915307522]],[[-0.01843580044806,0.022261947393417,0.029539758339524],[-0.021279575303197,0.054720129817724,0.029475040733814],[-0.0098694609478116,0.021367562934756,0.041374895721674]],[[0.037774037569761,-0.063326552510262,0.045723512768745],[-0.1068888604641,-0.041653860360384,-0.087749972939491],[0.017408758401871,0.0032029785215855,-0.0030513373203576]],[[-0.12456825375557,-0.041268236935139,-0.061439901590347],[0.11270749568939,0.026336815208197,0.055611755698919],[0.017085988074541,0.040583170950413,0.077505074441433]],[[-0.020630633458495,-0.0072349389083683,0.02211662940681],[-0.03352515399456,-0.005994878243655,-0.0032407145481557],[-0.034926768392324,-0.057436656206846,0.0072632594965398]],[[0.094182103872299,-0.0014778771437705,-0.094414673745632],[-0.028858289122581,0.055247694253922,0.032178826630116],[0.059696488082409,-0.075946606695652,0.075431443750858]],[[0.018348712474108,0.020847348496318,-0.019966561347246],[0.0018140906468034,-0.11266479641199,-0.010421920567751],[-0.043258614838123,0.0485182069242,-0.086999289691448]],[[-0.083065703511238,0.12358390539885,-0.013788328506052],[0.040246941149235,-0.022057237103581,0.01404838077724],[-0.099881403148174,-0.038434728980064,0.014355801045895]],[[0.033272724598646,-0.063913606107235,0.041388675570488],[-0.0084850918501616,-0.013006895780563,0.039656162261963],[-0.084398955106735,0.0015487929340452,0.042859748005867]],[[0.030067153275013,-0.052593257278204,-0.0069762100465596],[0.047497969120741,0.032628260552883,-0.034394584596157],[-0.015598187223077,0.088516190648079,0.13698409497738]],[[-0.037602018564939,-0.052126925438643,-0.018222099170089],[-0.066966772079468,0.129429936409,0.025673625990748],[-0.027240108698606,-0.0052196127362549,0.14594279229641]],[[0.056979861110449,0.053056664764881,0.010046591050923],[-0.13412429392338,0.026429932564497,0.10994584113359],[-0.07466559112072,-0.0042478861287236,0.029818627983332]],[[-0.14039745926857,0.12060172855854,-0.12048347294331],[-0.032760724425316,-0.017359476536512,-0.016056442633271],[-0.033221304416656,0.0047768880613148,0.059151515364647]],[[-0.083605624735355,0.21793162822723,0.049495466053486],[-0.01421707123518,-0.0082553708925843,0.080169104039669],[0.05213363096118,0.028367346152663,0.015824947506189]],[[0.035648364573717,0.030368959531188,-0.046594440937042],[0.0051923561841249,0.055577121675014,-0.0090990429744124],[0.05866552144289,0.11329808831215,0.050192784518003]],[[0.025738904252648,-0.022622345015407,-0.0034096266608685],[-0.012962841428816,0.033290844410658,0.015403585508466],[-0.04466700181365,-0.0039235735312104,0.10941793769598]],[[-0.030550369992852,-0.079881072044373,0.11212222278118],[0.075895614922047,-0.057844299823046,-0.018532982096076],[0.016722206026316,0.047079298645258,0.0099329482764006]],[[0.023517921566963,-0.0028754232916981,-0.068255558609962],[-0.031796276569366,-0.010045908391476,0.23396623134613],[-0.0091902995482087,-0.039632432162762,0.011352288536727]],[[-0.023724040016532,0.13322533667088,0.049266364425421],[-0.043107114732265,0.059272490441799,-0.036490488797426],[-0.066864162683487,-0.11977063119411,0.055589132010937]],[[0.050099093466997,0.011517318896949,-0.03611583262682],[-0.038811899721622,0.0026952954940498,0.042857829481363],[0.097089327871799,-0.0098902983590961,0.046579226851463]],[[-0.03734452649951,-0.17081233859062,-0.099015653133392],[0.072008743882179,0.056853584945202,0.13445414602757],[0.022452427074313,-0.024316156283021,0.084161318838596]],[[0.068532958626747,0.078271716833115,0.0052829952910542],[0.092326030135155,0.032876022160053,0.10680463165045],[0.026856793090701,0.024436123669147,0.05223523825407]],[[-0.051736786961555,-0.04420593008399,0.008144972845912],[0.00021138753800187,0.04922865703702,0.02402994595468],[-0.11306666582823,-0.0690683349967,0.091780565679073]],[[-0.0044901459477842,-0.0039323549717665,-0.069722637534142],[0.086730122566223,0.051027201116085,0.051683615893126],[-0.058920089155436,0.064634710550308,0.058188859373331]],[[0.017085812985897,0.16562230885029,0.045276287943125],[0.020319182425737,0.050053287297487,0.037440992891788],[-0.0075220447033644,-0.04529432579875,-0.053818013519049]],[[0.010165335610509,0.067994169890881,0.037577144801617],[-0.0042964154854417,0.062808118760586,-0.00194876792375],[0.0089524267241359,-0.026501452550292,0.055194512009621]],[[0.039249923080206,0.1270315349102,0.11408427357674],[-0.076501116156578,0.016124133020639,0.021742206066847],[-0.038605477660894,-0.0034769158810377,-0.0084047866985202]],[[-0.066219203174114,-0.056252781301737,-0.047180909663439],[0.059254352003336,-0.061098989099264,0.071318052709103],[0.058212276548147,-0.042150158435106,0.082066178321838]],[[0.0071178521029651,-0.060551673173904,0.075756326317787],[-0.05224534124136,0.0053021730855107,-0.0015136932488531],[0.044913053512573,0.14117041230202,0.050237692892551]],[[0.033938929438591,-0.083973124623299,0.036752115935087],[-0.030189264565706,0.044703554362059,0.026626510545611],[-0.047962792217731,0.014230906032026,0.10439401865005]],[[0.0063436273485422,-0.13192796707153,-0.046416636556387],[0.0054948795586824,0.093415878713131,-0.024398086592555],[0.028166526928544,0.046987034380436,-0.016414184123278]],[[0.04480778798461,0.0066547598689795,0.00088619149755687],[0.11954433470964,-0.18741402029991,-0.1292469650507],[0.011760371737182,0.20460557937622,0.0057785077951849]],[[0.066646672785282,0.059289496392012,-0.050043251365423],[-0.10370983183384,0.053993903100491,0.084408298134804],[-0.0038276072591543,-0.12632922828197,0.047908160835505]],[[-0.017439242452383,-0.044705431908369,-0.02499950863421],[-0.059066288173199,-0.044199917465448,0.018937706947327],[0.099016390740871,0.041805878281593,-0.0062574869953096]],[[0.055035963654518,-0.10985779762268,0.051084950566292],[-0.09283784031868,-0.0036838112864643,0.097768992185593],[0.015756754204631,0.023647457361221,-0.018146693706512]],[[0.022645570337772,0.1274074614048,0.052684746682644],[0.0075910002924502,-0.055044855922461,0.10234871506691],[-0.017770117148757,-0.026527056470513,-0.040471944957972]],[[0.0053549562580884,0.042796544730663,0.088630042970181],[-0.15564131736755,-0.012499746866524,-0.018909331411123],[0.10931549966335,-0.069736771285534,-0.017528196796775]],[[-0.076453559100628,-0.040700163692236,0.017035162076354],[0.044157292693853,-0.0034764292649925,0.089655354619026],[-0.017744427546859,0.035633467137814,0.09834311902523]],[[0.076729699969292,0.051860369741917,0.036418594419956],[0.010450027883053,0.067355871200562,0.050853490829468],[-0.12428788840771,-0.063902884721756,0.010752519592643]],[[-0.11375138163567,-0.00047936799819581,0.048822849988937],[0.06505523622036,0.010682822205126,0.04327192530036],[-0.050432324409485,0.094610422849655,0.11354847997427]],[[-0.16099059581757,-0.11054306477308,-0.029374508187175],[0.062588483095169,-0.068935327231884,-0.017301306128502],[0.060391455888748,0.005295735783875,0.026148732751608]],[[0.019599528983235,0.080882996320724,-0.04685403034091],[-0.017990496009588,0.013144881464541,0.0014111215714365],[-0.021525725722313,0.043224729597569,-0.017868498340249]],[[-0.015551626682281,-0.10691852122545,-0.050362609326839],[-0.036187600344419,-0.089316807687283,-0.1343690007925],[0.00024477756232955,0.035371419042349,-0.13223521411419]],[[-0.11899027973413,0.085853978991508,0.14552317559719],[-0.013064975850284,0.0031089098192751,-0.015596591867507],[0.063767902553082,-0.11238071322441,0.051113422960043]],[[-0.06200348213315,0.19007343053818,-0.21084994077682],[-0.0056672790087759,-0.07604455947876,0.22977527976036],[0.068578779697418,-0.0081428019329906,-0.015538708306849]],[[0.018051052466035,-0.040512356907129,-0.0097658112645149],[-0.15378640592098,0.054945223033428,0.023795261979103],[-0.057169623672962,-0.017788462340832,-0.041205953806639]],[[-0.011229364201427,0.01675889827311,0.0023456211201847],[-0.084760531783104,-0.070357404649258,-0.010383796878159],[0.024854846298695,0.014693148434162,-0.025380039587617]],[[0.060339670628309,-0.034035090357065,0.013497765175998],[0.030012907460332,0.067369498312473,0.019712697714567],[-0.0082408273592591,0.022882875055075,-0.02778891287744]],[[-0.073657795786858,0.050222113728523,0.021503109484911],[0.014404442161322,-0.079796239733696,0.067507095634937],[-0.050568401813507,0.0054499646648765,-0.011063599959016]],[[0.071218088269234,-0.045504819601774,0.10651911795139],[0.07356283813715,-0.0028129823040217,0.0060285963118076],[0.0055956677533686,-0.062412988394499,0.062771186232567]],[[0.099442929029465,-0.019973723217845,0.072144322097301],[0.012458395212889,0.049398470669985,-0.034678734838963],[-0.094366326928139,0.031562723219395,0.0423294454813]]],[[[-0.079627975821495,0.022044960409403,0.0096978154033422],[-0.064949698746204,0.1173143312335,0.095932260155678],[0.00048172334209085,0.071943737566471,-0.015784380957484]],[[-0.023168092593551,-0.01543926820159,-0.025969937443733],[-0.083784818649292,0.10984066128731,-0.075956404209137],[-0.022468434646726,-0.040119454264641,-0.00061438197735697]],[[0.034637551754713,0.026019766926765,-0.081405580043793],[-0.032547798007727,0.046723429113626,-0.09046645462513],[0.026061419397593,0.10552041977644,-0.01870172470808]],[[-0.060348223894835,-0.11270310729742,0.027847355231643],[0.027593275532126,0.07051719725132,-0.054833222180605],[-0.062386229634285,0.029387321323156,0.046049922704697]],[[0.045343283563852,0.013766993768513,0.021142669022083],[0.064109183847904,-0.013603094033897,0.032646611332893],[-0.019115144386888,0.030064569786191,-0.034102465957403]],[[0.062047496438026,0.012007084675133,0.12961366772652],[0.12725804746151,0.054657578468323,-0.041538920253515],[-0.033090770244598,-0.037987802177668,0.001853730995208]],[[-0.06295020878315,-0.061615440994501,-0.023814935237169],[0.049581117928028,0.040912460535765,-0.10367498546839],[0.068315893411636,0.029939420521259,0.15134565532207]],[[-0.014542255550623,0.006085223518312,0.046176802366972],[-0.012582931667566,0.029637107625604,0.081841871142387],[0.11641930043697,-0.043230265378952,-0.09174295514822]],[[-0.089790351688862,-0.11128826439381,0.035981941968203],[0.13441832363605,0.13591821491718,-0.10815286636353],[-0.04934848845005,0.0025586935225874,0.022182198241353]],[[-0.01558290142566,0.068076364696026,0.02243510633707],[0.015934707596898,-0.024909812957048,-0.063352681696415],[-0.062106318771839,0.007478600833565,-0.079100102186203]],[[0.13225004076958,0.1028510555625,0.057177640497684],[-0.045367870479822,-0.036424465477467,0.081058397889137],[-0.11774501204491,-0.0071413777768612,-0.034790705889463]],[[0.065017051994801,-0.020386645570397,0.057586882263422],[0.099804803729057,-0.03718651458621,0.050085157155991],[-0.07598115503788,0.11230102926493,-0.041272815316916]],[[-0.049825079739094,0.02010652422905,0.093067921698093],[-0.063698530197144,0.0025587272830307,0.047165974974632],[0.096151791512966,-0.039338406175375,0.046436913311481]],[[-0.0071524516679347,0.028968296945095,-0.090115316212177],[0.0072901649400592,0.080370754003525,-0.058858118951321],[0.12930575013161,-0.085044853389263,-0.12981037795544]],[[0.10137995332479,0.062075041234493,-0.014941516332328],[0.041471619158983,0.01755160652101,0.046502966433764],[-0.042433835566044,-0.011978979222476,0.0028008434455842]],[[-0.01588162779808,-0.06256228685379,-0.030006432905793],[-0.045238476246595,0.18459017574787,-0.066878333687782],[-0.011583391577005,-0.034552782773972,-0.030208243057132]],[[-0.0025496962480247,-0.017456214874983,-0.080853804945946],[0.081521697342396,0.067474938929081,0.052181035280228],[0.073233045637608,0.01891597174108,0.084786251187325]],[[-0.0074245296418667,-0.0096260802820325,0.063783906400204],[0.038285732269287,-0.065575666725636,-0.055393200367689],[-0.026235844939947,-0.11496165394783,0.071336954832077]],[[0.011790028773248,-0.010823084972799,0.081074677407742],[-0.060654252767563,0.17731547355652,-0.025230843573809],[0.036570064723492,-0.04207680746913,-0.013161210343242]],[[-0.061453804373741,-0.011240424588323,0.099412404000759],[0.015045956708491,-0.032666675746441,0.059925869107246],[0.058273948729038,0.088671185076237,0.040468011051416]],[[-0.067994929850101,-0.0202546864748,0.068640567362309],[-0.010998979210854,-0.071687035262585,-0.17070963978767],[0.10590355098248,-0.005125354975462,-0.060255892574787]],[[-0.15916165709496,-0.063514746725559,0.035577766597271],[-0.017124906182289,-0.019489912316203,0.071000277996063],[-0.011708090081811,0.042982254177332,0.0768758431077]],[[0.13294531404972,0.028369935229421,0.041797455400229],[-0.17177098989487,0.033665236085653,0.02151938714087],[0.12679105997086,-0.13375625014305,0.0086131803691387]],[[-0.072560347616673,0.14969955384731,-0.083035431802273],[-0.062374107539654,-0.14831759035587,0.0030138685833663],[0.11642365157604,-0.031352948397398,-0.055188104510307]],[[0.064474031329155,0.032983560115099,-0.038996234536171],[0.020597670227289,0.054181538522243,0.026212029159069],[0.046203784644604,0.018892137333751,0.00029132040799595]],[[0.10481064021587,-0.15925306081772,-0.010875798761845],[0.084563665091991,-0.071401879191399,-0.013904211111367],[0.019836712628603,-0.14711208641529,0.010134645737708]],[[-0.12423332035542,0.089679852128029,0.16714373230934],[0.012477163225412,0.025941822677851,-0.061385463923216],[-0.05394796282053,0.0077232383191586,-0.11306135356426]],[[-0.059626560658216,-0.031346444040537,-0.090036302804947],[-0.088251180946827,-0.011080239899457,0.077618032693863],[-0.050555676221848,-0.0015202544163913,-0.085839912295341]],[[0.14452125132084,0.0090690432116389,-0.14581644535065],[0.041597437113523,-0.10400541126728,-0.1041407585144],[0.039450004696846,-0.097081817686558,-0.032190103083849]],[[-0.1743036955595,-0.059369172900915,0.037917219102383],[-0.050357319414616,-0.00099457206670195,0.016003005206585],[0.027771476656199,0.031831678003073,-0.018407324329019]],[[-0.1329974681139,0.092273995280266,-0.097472444176674],[-0.018193462863564,0.0068429508246481,-0.096897877752781],[0.29204487800598,-0.081878557801247,-0.088894352316856]],[[0.025792419910431,0.043557338416576,0.014483182691038],[-0.058172281831503,0.16049638390541,-0.074715822935104],[0.077463559806347,0.066643096506596,-0.0023599171545357]],[[-0.093390181660652,-0.014388394542038,0.016747226938605],[-0.042705029249191,0.04631644114852,-0.083126656711102],[0.028972003608942,-0.08409583568573,0.0094867758452892]],[[-0.069508463144302,-0.091083467006683,0.034241814166307],[-0.068097829818726,-0.015382381156087,0.073277249932289],[0.032784983515739,0.022407071664929,0.069080837070942]],[[-0.11761076748371,0.066892050206661,-0.016498859971762],[-0.031011048704386,-0.036819338798523,-0.11593583226204],[0.030308673158288,0.1574659794569,0.20463016629219]],[[-0.034611895680428,-0.057331576943398,-0.052332475781441],[0.11249728500843,-0.042422004044056,-0.084573045372963],[-0.055544212460518,0.072790339589119,0.03653747215867]],[[0.024238171055913,-0.024409139528871,0.074431605637074],[-0.085696324706078,-0.036327019333839,0.0077517083846033],[0.053558759391308,0.035530038177967,0.043094661086798]],[[-0.017409902065992,-0.14066770672798,-0.055461920797825],[-0.015426499769092,0.023825256153941,0.12062610685825],[0.011457443237305,-0.03665304929018,0.039985865354538]],[[0.022932404652238,0.092464201152325,0.017731843516231],[0.014310874044895,0.01684052683413,-0.24315994977951],[0.047695495188236,-0.16517390310764,0.22195166349411]],[[-0.041071005165577,0.0096505153924227,0.018740721046925],[-0.11822032183409,-0.03923512622714,0.14378933608532],[0.099796682596207,0.011100061237812,0.057630676776171]],[[0.24277696013451,0.068671800196171,0.01025983504951],[-0.019760875031352,-0.018767641857266,-0.02647751942277],[-0.011722126975656,0.030427493155003,0.042115461081266]],[[0.097104594111443,-0.0072955405339599,-0.069268986582756],[-0.073878571391106,-0.055332835763693,0.037475448101759],[-0.027191933244467,0.038295857608318,-0.098213769495487]],[[-0.0059935073368251,0.015075096860528,0.072290323674679],[0.059714775532484,0.0047293244861066,0.074347414076328],[-0.01608113758266,-0.054454937577248,0.26641008257866]],[[0.19402776658535,-0.14500145614147,0.12214639782906],[0.0249700602144,0.01254424918443,0.09379681199789],[-0.043376546353102,0.053256534039974,0.071621909737587]],[[-0.055387567728758,-0.050605826079845,0.08033511787653],[0.10722566395998,0.073252774775028,0.071604162454605],[-0.08415549248457,-0.067267194390297,0.084367036819458]],[[-0.12316814810038,-0.01124994084239,0.039317108690739],[0.023367060348392,0.077556483447552,0.06620667129755],[0.15988026559353,-0.038401294499636,-0.015000183135271]],[[0.014223941601813,0.20758448541164,0.0021301887463778],[0.1294027119875,0.04512394964695,-0.0013522026129067],[0.023936459794641,0.043822389096022,-0.040140483528376]],[[0.058889158070087,-0.023304928094149,0.018157094717026],[0.00042583138565533,0.037955261766911,0.093218825757504],[0.10432333499193,-0.021395597606897,0.083799496293068]],[[0.16310730576515,-0.069277502596378,-0.059273567050695],[0.049755576997995,-0.067076794803143,0.026577243581414],[-0.1233024969697,-0.029543833807111,0.0495880022645]],[[0.067307472229004,-0.050157304853201,0.039014458656311],[0.1999299377203,-0.088482961058617,-0.075235433876514],[-0.17822515964508,-0.039289522916079,0.005466946400702]],[[0.0229871571064,-0.062578029930592,0.030857542529702],[0.03666527569294,0.1108221039176,0.063707925379276],[-0.031224166974425,-0.11320759356022,-0.097396329045296]],[[0.13069891929626,-0.07027380913496,-0.1100624576211],[-0.11803208291531,0.056819934397936,0.020997965708375],[0.0088817244395614,-0.22446022927761,-0.015432541258633]],[[0.0083793886005878,-0.023841999471188,-0.10301508009434],[-0.052281092852354,-0.15531416237354,-0.09622997790575],[0.039021547883749,-0.023734347894788,-0.014993576332927]],[[-0.044788707047701,0.10816189646721,0.05784871801734],[0.059068221598864,-0.15329696238041,-0.0016914765583351],[-0.11044547706842,0.017585482448339,-0.036631368100643]],[[0.054127138108015,-0.10715744644403,0.040899354964495],[-0.084588795900345,0.12007166445255,0.040052283555269],[-0.023764612153172,0.059934411197901,-0.22570046782494]],[[0.095598913729191,0.022407682612538,-0.067517422139645],[-0.024924915283918,-0.034887295216322,-0.0090917786583304],[0.047152753919363,-0.1125995516777,-0.25957515835762]],[[0.0069180843420327,0.091052286326885,0.023801704868674],[-0.053304314613342,0.099668703973293,0.050284016877413],[-0.047449268400669,0.092119768261909,0.028758836910129]],[[-0.011248040944338,0.0033282947260886,0.12388085573912],[0.059328813105822,-0.024838315322995,-0.10789852589369],[0.011355216614902,0.059951715171337,0.093654662370682]],[[-0.17803147435188,-0.061657436192036,0.11034938693047],[0.02558028139174,0.013482029549778,0.088450543582439],[0.094716623425484,0.016203634440899,-0.016738777980208]],[[0.068750686943531,-0.11636812239885,0.11109352111816],[-0.19018147885799,0.17850574851036,-0.072208531200886],[-0.0061680767685175,-0.11634261906147,0.018375281244516]],[[-0.01680600643158,-0.067210957407951,-0.049308843910694],[-0.12515060603619,-0.11551310122013,0.010942962951958],[0.22668823599815,0.085350945591927,-0.032526157796383]],[[-0.12672194838524,0.033285785466433,-0.032055899500847],[0.12232378870249,-0.19118554890156,-0.12087035924196],[-0.0043658153153956,0.079674169421196,-0.024963514879346]],[[-0.10176361352205,0.052975300699472,-0.077179662883282],[0.070791326463223,-0.016406403854489,0.12938399612904],[0.069962427020073,0.055698275566101,-0.0086162211373448]],[[0.028299359604716,0.020575448870659,-0.15672940015793],[0.030997391790152,0.091341555118561,-0.010758486576378],[-0.03853702917695,0.012043195776641,-0.020936606451869]],[[-0.030030809342861,0.034969888627529,-0.053357806056738],[0.11130690574646,-0.032670963555574,0.018918823450804],[0.050099510699511,0.11874142289162,0.029045570641756]],[[0.046435084193945,0.045659188181162,-0.13329549133778],[0.095905087888241,0.052965153008699,-0.081674754619598],[-0.029029067605734,-0.074504688382149,-0.0014813682064414]],[[-0.01097197830677,0.043976698070765,-0.073934637010098],[0.088440127670765,-0.022119933739305,0.03103606775403],[0.032374948263168,0.086941614747047,0.033003140240908]],[[0.020350845530629,0.010483974590898,0.00090536952484399],[-0.010746416635811,0.019297355785966,0.14338891208172],[-0.1162299066782,0.13851940631866,0.018656061962247]],[[-0.042072989046574,-0.038728978484869,0.071002915501595],[-0.061847716569901,-0.026571020483971,-0.044100135564804],[-0.098540768027306,-0.027430780231953,0.017935140058398]],[[0.0060703116469085,0.052579917013645,0.045157082378864],[0.012904672883451,0.13239571452141,0.014113621786237],[-0.18899340927601,-0.20839166641235,-0.0092775337398052]],[[-0.0044485577382147,0.072178490459919,0.014207441359758],[0.024994494393468,0.063047751784325,0.010381234809756],[0.04024314135313,-0.046128936111927,-0.052086982876062]],[[-0.03886317461729,-0.1293630450964,0.11596287041903],[0.031673341989517,0.003180353436619,-0.024130636826158],[-0.036232721060514,-0.13158915936947,0.038084477186203]],[[-0.025976922363043,0.041572961956263,0.0069657657295465],[-0.012089614756405,0.021677019074559,0.15516881644726],[0.013523277826607,0.037279903888702,0.021827720105648]],[[0.023410327732563,-0.029248354956508,0.050860967487097],[-0.11189050227404,0.041158586740494,0.10097776353359],[0.0061641889624298,0.043674021959305,-0.068749241530895]],[[-0.011882029473782,-0.11137939244509,-0.070973694324493],[0.065237149596214,0.12369421869516,-0.085872732102871],[0.12907990813255,0.079772979021072,-0.035065229982138]],[[-0.084076419472694,-0.0065811108797789,-0.051519419997931],[-0.062247324734926,0.11697219312191,0.12954267859459],[0.014160647988319,-0.11631911993027,0.087574787437916]],[[0.10145246982574,-0.11796110123396,-0.023797834292054],[-0.074939496815205,0.041684571653605,0.016851099207997],[-0.013693619519472,0.0055505223572254,0.092789009213448]],[[0.080429345369339,-0.0763765797019,-0.030541192740202],[-0.046736728399992,0.032350685447454,0.091453224420547],[-0.028952715918422,0.032997138798237,-0.043061468750238]],[[-0.033110313117504,-0.095091961324215,0.095114029943943],[-0.09274385124445,0.026101130992174,-0.20788438618183],[0.17239040136337,0.025196559727192,0.1430184841156]],[[-0.022766511887312,-0.019945399835706,0.027428943663836],[-0.092436254024506,-0.081933416426182,0.028202369809151],[0.036071993410587,0.039507325738668,0.051029786467552]],[[0.076964527368546,-0.048870034515858,0.061424147337675],[0.064600251615047,-0.0086598424240947,-0.062802486121655],[-0.014736957848072,0.0041266735643148,-0.062404740601778]],[[0.028701515868306,-0.014092123135924,0.048356924206018],[-0.039247874170542,-0.19094900786877,0.057642124593258],[0.046140640974045,-0.050346530973911,0.053134992718697]],[[-0.10038308054209,0.021053683012724,0.068512938916683],[-0.050816025584936,-0.0016762994928285,0.014880599454045],[0.04367146641016,0.036946337670088,-0.021828265860677]],[[-0.024737855419517,0.050511293113232,0.10589274764061],[0.020903524011374,0.05101965367794,0.057181306183338],[-0.12614238262177,0.035083465278149,0.0008628002833575]],[[0.10103329271078,-0.14372985064983,-0.13694520294666],[-0.094935491681099,-0.092442087829113,0.1048160046339],[0.060126483440399,0.045532058924437,0.010162287391722]],[[-0.057041008025408,-0.15664620697498,-0.13465616106987],[0.00045205585774966,-0.022538043558598,-0.062360890209675],[0.032002005726099,0.062120288610458,0.080154649913311]],[[-0.16689023375511,0.07009569555521,-0.082434475421906],[0.14186123013496,-0.044038485735655,0.062782965600491],[0.033778604120016,0.025120360776782,0.022750830277801]],[[0.053026281297207,0.065588667988777,-0.062720321118832],[0.18350993096828,-0.052713975310326,0.058046817779541],[-0.17524157464504,-0.10443340241909,0.017909968271852]],[[-0.030248001217842,-0.046866826713085,-0.041547562927008],[0.10290956497192,0.15222819149494,-0.030804876238108],[0.040976863354445,-0.12493317574263,0.15280224382877]],[[0.047384589910507,0.045523647218943,-0.052041854709387],[0.019235927611589,0.095681220293045,-0.00036195205757394],[0.14855241775513,0.076773956418037,0.046530600637197]],[[-0.080965593457222,-0.068393655121326,-0.0090131377801299],[-0.035963490605354,0.015293835662305,0.075674906373024],[0.035031996667385,-0.063184060156345,0.067142099142075]],[[-0.030402116477489,-0.029634622856975,0.0007717547705397],[-0.032248485833406,-0.058897845447063,-0.076673284173012],[-0.010833906941116,-0.068637162446976,0.015669079497457]],[[-0.096602544188499,-0.043932680040598,-0.073760658502579],[-0.092968888580799,0.020885780453682,-0.0188058745116],[-0.027910260483623,-0.0034099142067134,-0.10416723042727]],[[-0.10214877873659,0.0061289966106415,-0.023053087294102],[-0.081248506903648,0.030060959979892,0.092132374644279],[0.0063913087360561,0.020172536373138,0.012063018977642]],[[-0.068278253078461,-0.11400356888771,0.079387053847313],[0.070527873933315,0.21360132098198,-0.097014300525188],[-0.19594441354275,0.032253745943308,0.17495326697826]],[[0.016149302944541,-0.077604331076145,-0.0066997236572206],[-0.087487675249577,0.093410111963749,0.13270618021488],[0.028578236699104,0.036734458059072,-0.064299888908863]],[[0.11016619950533,-0.052814401686192,0.037040788680315],[0.044721856713295,-0.092873327434063,-0.0054902737028897],[-0.13100881874561,0.093265809118748,0.049085009843111]],[[-0.11859545856714,-0.083928808569908,-0.041788212954998],[0.0002542365109548,0.012166623026133,0.045473895967007],[0.067204490303993,0.10231599211693,0.15983445942402]],[[-0.070633076131344,-0.021227363497019,0.010505037382245],[-0.033766955137253,-0.063582248985767,0.24539548158646],[0.073464572429657,-0.047842405736446,0.0030912880320102]],[[0.12493895739317,-0.026533840224147,-0.064082026481628],[-0.018650339916348,-0.20778378844261,0.19248120486736],[0.013369568623602,0.068699672818184,-0.058821957558393]],[[-0.097108334302902,-0.015804262831807,-0.011517672799528],[-0.098299793899059,0.1228374093771,-0.11441579461098],[0.001151803531684,0.014176668599248,0.078805096447468]],[[-0.017744470387697,0.01013811212033,0.083674699068069],[-0.066437624394894,0.16832971572876,-0.022083563730121],[-0.018802704289556,-0.027307590469718,0.0088762026280165]],[[-0.031119924038649,-0.022050224244595,0.01519916113466],[-0.028651567175984,-0.12385784089565,-0.054455004632473],[-0.012048305012286,0.062758445739746,-0.028391493484378]],[[0.0031280603725463,0.062742382287979,0.012631681747735],[0.02743817307055,-0.0085568390786648,0.051489904522896],[-0.053595758974552,-0.025390837341547,-0.076237298548222]],[[-0.0097412196919322,0.036771290004253,0.020685696974397],[-0.071791298687458,0.038457177579403,0.0090989088639617],[-0.010476459749043,0.012997756712139,-0.10181963443756]],[[-0.058027509599924,0.072653979063034,-0.061618290841579],[-0.046877443790436,0.040680330246687,0.0091693848371506],[0.10235495120287,0.0043246080167592,0.051409110426903]],[[-0.0091516701504588,0.1353926807642,-0.004129352979362],[0.010110621340573,-0.017046973109245,-0.13327006995678],[0.010747049935162,0.0024495960678905,-0.10340487211943]],[[0.050139296799898,-0.068689592182636,-0.032939933240414],[-0.025673136115074,0.12959714233875,0.062189843505621],[0.024538934230804,0.023876814171672,-0.1034222766757]],[[0.032145846635103,-0.14737898111343,0.099570669233799],[-0.07566674053669,0.16045217216015,-0.16558116674423],[0.04398163408041,-0.0057681505568326,-0.027569700032473]],[[-0.049233186990023,0.048969950526953,-0.0013520017964765],[-0.010421013459563,-0.14127476513386,0.087675303220749],[0.085071578621864,-0.0546939894557,0.046646170318127]],[[-0.025653230026364,0.26865521073341,-0.069031111896038],[0.097369886934757,0.013236659578979,0.099547021090984],[0.019133219495416,-0.11569484323263,-0.0039045484736562]],[[0.061561562120914,0.0072273006662726,-0.029706159606576],[0.074277177453041,-0.0034449929371476,-0.021840926259756],[-0.055847082287073,-0.0078783594071865,0.011785868555307]],[[0.044781979173422,-0.04239135608077,-0.056968115270138],[0.0040102377533913,0.052191521972418,-0.040521413087845],[0.1604181677103,0.0068746577017009,-0.040759135037661]],[[-0.034853260964155,0.15448759496212,-0.029270766302943],[0.10523111373186,-0.10341089218855,0.075499027967453],[0.025491405278444,0.049667838960886,0.050259809941053]],[[-0.046915993094444,0.02990155108273,0.0091282166540623],[-0.041546225547791,0.018309494480491,0.072520978748798],[0.013912217691541,0.14191211760044,-0.099719852209091]],[[-0.052324675023556,0.066905952990055,-0.10694577544928],[-0.046851467341185,0.0090057207271457,0.103629514575],[0.062590025365353,-0.0090830558910966,-0.043040677905083]],[[0.09092989563942,-0.026904668658972,-0.074890695512295],[-0.086787268519402,0.10883618146181,-0.050507944077253],[-0.09003696590662,-0.0048930747434497,0.072434529662132]],[[0.10651300102472,0.093058466911316,0.064602933824062],[0.013427307829261,-0.065496623516083,-0.080414861440659],[-0.0092733316123486,0.088216960430145,0.095916055142879]],[[-0.029179835692048,0.0073244599625468,0.11369653046131],[0.055822048336267,0.022988207638264,-0.026185182854533],[0.08562558144331,0.011466579511762,0.10169051587582]],[[-0.042456939816475,-0.051285054534674,0.077761754393578],[-0.013943360187113,-0.047605510801077,0.0055505577474833],[0.035798221826553,-0.053167570382357,-0.006143145263195]],[[-0.029567804187536,-0.0076977401040494,-0.13988883793354],[-0.028665447607636,-0.10818838328123,0.0081591485068202],[0.043675046414137,0.027275003492832,0.072333820164204]],[[0.020243236795068,-0.07245260477066,-0.049164559692144],[-0.096630819141865,-0.10398709774017,0.018295077607036],[-0.060223575681448,0.015602711588144,0.077650740742683]],[[-0.03313884139061,0.018599091097713,-0.019157830625772],[0.080728679895401,-0.049269340932369,-0.031557276844978],[0.065938837826252,0.0042869769968092,-0.12193051725626]],[[-0.083889931440353,0.036229517310858,-0.096716694533825],[0.11831624060869,0.0073894988745451,-0.017944347113371],[0.032835219055414,-0.03256094828248,0.08283082395792]],[[0.074738122522831,-0.039761748164892,0.058266747742891],[-0.015213473699987,-0.024102814495564,-0.093289643526077],[0.08108888566494,-0.011172002181411,0.041643179953098]],[[-0.050637196749449,0.014431240037084,-0.007157466839999],[-0.035237956792116,0.022383939474821,0.039376445114613],[0.019363228231668,0.073272831737995,0.097360715270042]],[[0.056369166821241,0.039873827248812,-0.023856606334448],[-0.064408630132675,0.014049148187041,-0.0032384335063398],[0.0574448145926,-0.040511760860682,-0.027790056541562]],[[-0.018886156380177,0.12751547992229,-0.13234253227711],[0.19809260964394,-0.0054913638159633,0.030223425477743],[-0.040898181498051,-0.050110962241888,-0.015730520710349]]],[[[0.0033487263135612,-0.01280355732888,-0.1736930757761],[0.090245202183723,-0.096852973103523,0.012949613854289],[-0.1160953938961,-0.053188771009445,0.12585727870464]],[[0.023936102166772,0.10500981658697,-0.12301304191351],[0.10970034450293,-0.097365215420723,-0.026697417721152],[0.037349279969931,0.005345837213099,-0.057943657040596]],[[0.028416560962796,-0.011329366825521,0.092267014086246],[0.013815083540976,0.24711403250694,-0.19443762302399],[0.011579945683479,-0.044047795236111,0.069768130779266]],[[0.017995465546846,0.014963823370636,-0.012679984793067],[-0.080537974834442,0.084746681153774,-0.042092721909285],[0.11650707572699,-0.026336090639234,0.081582181155682]],[[-0.15614023804665,0.12888488173485,0.056644961237907],[0.078473471105099,0.028193587437272,0.05446582660079],[-0.059516742825508,0.037262544035912,-0.15543955564499]],[[0.0095377238467336,0.11904244124889,-0.040304232388735],[-0.071883022785187,-0.0073816650547087,-0.017900366336107],[0.13277953863144,0.056387633085251,0.088336452841759]],[[-0.010879475623369,-0.018533179536462,0.076354987919331],[-0.027182703837752,0.083490706980228,0.052296031266451],[-0.085773900151253,0.058658495545387,0.035836469382048]],[[-0.030127415433526,0.099545352160931,-0.13104167580605],[0.086676210165024,0.063416294753551,-0.069977022707462],[-0.054112877696753,-0.0085591375827789,0.057018503546715]],[[0.074072100222111,0.019822143018246,0.023659765720367],[-0.063993848860264,-0.14854730665684,-0.026532599702477],[0.069877162575722,0.01608132570982,0.15491469204426]],[[0.10496327280998,0.040243413299322,0.093493044376373],[0.01587819121778,0.086659334599972,0.11660244315863],[0.0020947768352926,0.050629112869501,0.11574563384056]],[[0.05365464836359,0.049941260367632,0.099392935633659],[0.065452009439468,-0.018763789907098,0.071137495338917],[-0.043714426457882,-0.11164940148592,-0.056937444955111]],[[0.13660095632076,0.018750213086605,-0.033015660941601],[-0.024355778470635,-0.063502952456474,0.043534215539694],[0.053841460496187,0.092184379696846,-0.011384427547455]],[[0.036969043314457,-0.045088678598404,-0.085068121552467],[0.057729054242373,0.026510192081332,-0.015897130593657],[-0.0052692098543048,0.020420650020242,0.14763858914375]],[[-0.038668606430292,-0.0038850263226777,0.08233992010355],[0.08927857875824,0.018222635611892,0.13816739618778],[-0.060448002070189,0.089180827140808,0.068905770778656]],[[0.16374059021473,0.027060804888606,0.24683332443237],[0.10991042852402,0.14323152601719,0.060029655694962],[0.18243484199047,0.14845059812069,0.068007722496986]],[[-0.073153354227543,-0.0050487197004259,-0.014929940924048],[0.030792433768511,0.052934743463993,0.05827634036541],[0.10087998956442,0.01953318528831,0.0274149607867]],[[0.03395938873291,-0.028691679239273,0.042704727500677],[-0.011781143955886,-0.0038591707125306,-0.031683638691902],[0.0093869864940643,0.03557538241148,0.087912730872631]],[[0.046833537518978,0.045462962239981,-0.083015114068985],[-0.00126005965285,0.022765923291445,-0.044279210269451],[-0.10307487845421,-0.00077465933281928,-0.098079055547714]],[[0.033426575362682,0.0044187493622303,0.031431075185537],[-0.0090744029730558,-0.095513820648193,-0.12091893702745],[-0.083313845098019,-0.10896602272987,-0.077592343091965]],[[0.037675969302654,0.088789686560631,-0.038487389683723],[-0.0097223659977317,-0.024137636646628,-0.02979277446866],[0.066184341907501,0.1189871430397,0.067859455943108]],[[0.00334477215074,-0.004583234898746,-0.08640805631876],[0.081880412995815,0.023388288915157,-0.040404606610537],[-0.056780744343996,-0.022489469498396,-0.080460220575333]],[[0.024933155626059,0.13112516701221,0.0094349384307861],[0.023816553875804,0.042379427701235,-0.086307510733604],[0.10596097260714,0.027356836944818,-0.0052401660941541]],[[-0.12514923512936,-0.037400685250759,0.094033397734165],[0.12846967577934,-0.018223455175757,-0.029581720009446],[-0.091839917004108,0.047994095832109,-0.04329639300704]],[[-0.015000686049461,-0.012620157562196,0.10681702941656],[0.018575601279736,-0.096748471260071,-0.029771717265248],[0.019460819661617,-0.1416938751936,0.032315097749233]],[[0.065272144973278,-0.012121428735554,0.0066725509241223],[0.031467452645302,0.03325804695487,0.01900383643806],[-0.045254468917847,0.025819787755609,0.0096788620576262]],[[-0.087077245116234,-0.0078927418217063,0.018895594403148],[0.057603519409895,0.096589155495167,0.015742341056466],[0.084686644375324,0.050278674811125,-0.10269396007061]],[[0.10327187925577,0.1143356487155,0.0059065059758723],[-0.052714690566063,0.02134345844388,0.053513143211603],[-0.18458659946918,0.022707061842084,-0.071822233498096]],[[0.081064000725746,0.072714485228062,-0.073071263730526],[0.0010769837535918,-0.026849869638681,-0.097018085420132],[-0.034143310040236,-0.022100817412138,-0.070177055895329]],[[0.065029606223106,0.04446342214942,0.11152556538582],[-0.023802664130926,-0.023859748616815,0.03519543632865],[0.026238879188895,-0.010938826017082,-0.036366902291775]],[[0.010581273585558,0.15797905623913,0.0077158170752227],[0.05814141407609,0.042630240321159,-0.051568910479546],[0.089912369847298,0.090419046580791,0.012143238447607]],[[0.010373009368777,-0.06758575886488,-0.036790382117033],[0.067251183092594,0.055402353405952,-0.052823267877102],[0.0045982873998582,0.027925813570619,-0.077136605978012]],[[-0.0082800211384892,0.061956346035004,0.022806268185377],[-0.080270551145077,-0.031623285263777,-0.021547731012106],[-0.07709514349699,0.010811945423484,-0.044458463788033]],[[-0.0081608481705189,0.041136641055346,0.0088875247165561],[-0.0010453583672643,-0.0098241353407502,-0.0021336548961699],[-0.051819987595081,-0.082452520728111,-0.029711293056607]],[[-0.14401319622993,-0.054627887904644,-0.039222400635481],[-0.0012492887908593,0.0030519508291036,-0.017100412398577],[0.079804442822933,0.049797091633081,-0.068389877676964]],[[-0.0067530926316977,0.004974527284503,-0.018235208466649],[0.13293364644051,-0.034251846373081,0.083844684064388],[-0.043883040547371,0.052399922162294,0.022515658289194]],[[-0.10339841991663,-0.053226038813591,-0.0090839918702841],[-0.065095260739326,-0.10584887862206,0.03201711550355],[0.098658859729767,-0.10069553554058,-0.11156722903252]],[[-0.11958092451096,-0.063013389706612,0.16240558028221],[-0.095121398568153,0.017822483554482,0.038073502480984],[0.086078315973282,0.11418190598488,0.03474323824048]],[[0.049421217292547,0.011388112790883,-0.031218165531754],[-0.14653132855892,-0.10353557765484,0.20500104129314],[-0.10098285973072,0.044171456247568,-0.061071220785379]],[[0.04146246612072,0.0037553245201707,-0.067578814923763],[-0.0041244267486036,-0.058716230094433,-0.085127651691437],[-0.0066060642711818,0.032806318253279,-0.0007037243922241]],[[0.026753285899758,0.010729621164501,-0.17158555984497],[0.34984022378922,-0.06449880450964,0.005034243222326],[0.066769987344742,0.046729661524296,0.07882434129715]],[[-0.03209176287055,-0.022888438776135,0.027122016996145],[0.059590253978968,0.043956395238638,0.060337603092194],[-0.14651501178741,-0.043531686067581,0.1052778288722]],[[-0.11979845166206,-0.0018075334373862,0.0087174605578184],[0.15558536350727,-0.10941781848669,0.0088895540684462],[-0.055665761232376,-0.021211344748735,-0.0029314889106899]],[[0.015236726030707,0.0026620600838214,0.027605628594756],[-0.036059740930796,0.043025512248278,0.23475132882595],[0.12913620471954,0.11866203695536,0.020709423348308]],[[-0.012760100886226,-0.10727042704821,0.018773647025228],[-0.020137973129749,0.11613208055496,-0.038150317966938],[-0.014087106101215,0.027838964015245,-0.035493988543749]],[[-0.022284077480435,0.017483454197645,0.013367997482419],[-0.069531239569187,0.039723318070173,0.030808482319117],[0.0018190041882917,-0.040941592305899,-0.049328256398439]],[[-0.081712618470192,0.0013506329851225,-0.23470579087734],[0.081209301948547,-0.10380105674267,0.035656403750181],[0.033432316035032,-0.043917812407017,0.0051594171673059]],[[0.010166890919209,-0.048714987933636,0.027926487848163],[-0.016651039943099,0.044040977954865,0.077774733304977],[-0.056111577898264,0.004765379242599,0.01507736556232]],[[0.10757488757372,-0.081093139946461,-0.0041315122507513],[-0.079196579754353,0.087227270007133,-0.082537263631821],[0.021477403119206,-0.027432419359684,-0.06219781562686]],[[0.065546579658985,-0.012390563264489,-0.071549892425537],[-0.057364784181118,0.029484426602721,0.12765607237816],[-0.08772362023592,-0.012655196711421,-0.04047379642725]],[[0.002120929537341,-0.075552269816399,-0.0062363953329623],[-0.054136026650667,0.011489152908325,-0.16414603590965],[0.020378652960062,-0.12340916693211,-0.013652101159096]],[[-0.041530095040798,0.0055707925930619,-0.039549052715302],[-0.016916463151574,-0.038280177861452,0.023242922499776],[-0.033716470003128,-0.050721675157547,-0.058667074888945]],[[0.03565976023674,0.072377689182758,0.093451023101807],[-0.03263470903039,-0.0399249792099,0.044718146324158],[-0.05644466727972,0.018250152468681,-0.0098351882770658]],[[0.16995534300804,0.27164068818092,0.31273022294044],[0.083090528845787,-0.12616363167763,-0.023518526926637],[-0.035302091389894,0.06545452773571,0.17210359871387]],[[-0.076106809079647,0.022832570597529,0.071036674082279],[-0.090150728821754,-0.067340150475502,0.090112037956715],[0.10641296952963,0.028492406010628,-0.084574423730373]],[[0.083269238471985,-0.053417876362801,-0.090349517762661],[-0.074525229632854,0.14735712110996,-0.054932691156864],[-0.0049578133039176,0.17207615077496,-0.042678080499172]],[[0.02299877256155,-0.018855299800634,-0.11737833172083],[-0.063545010983944,-0.002651073038578,-0.043327253311872],[-0.0060338950715959,0.016411192715168,-0.00070768973091617]],[[0.14809373021126,0.097474865615368,0.030301235616207],[-0.0093524558469653,0.067835055291653,-0.014400217682123],[-0.1711635440588,0.024422472342849,-0.010373036377132]],[[-0.0015012070070952,-0.033680468797684,-0.096376515924931],[0.049235306680202,0.10204889625311,0.076417826116085],[-0.01170184276998,-0.1093301102519,-0.054219707846642]],[[0.046688500791788,0.060153987258673,0.12454717606306],[-0.0010692559881136,-0.1312400251627,-0.034771040081978],[0.017528243362904,0.043206557631493,-0.01916210912168]],[[0.020499618723989,0.081908576190472,-0.040465913712978],[-0.098768837749958,-0.13007122278214,-0.033513110131025],[0.042283430695534,-0.040993873029947,0.092619225382805]],[[-0.026644486933947,-0.085041522979736,-0.066650159657001],[-0.045558106154203,-0.062539875507355,0.10429282486439],[0.047163777053356,0.067956820130348,-0.017524650320411]],[[0.10029311478138,-0.064441740512848,-0.024339886382222],[0.086769364774227,-0.12991631031036,0.049436986446381],[-0.024050889536738,-0.068024136126041,-0.011316733434796]],[[0.067019879817963,-0.11979100108147,0.012064339593053],[0.002565951552242,-0.046668585389853,0.0086555918678641],[0.02674606628716,0.0087694060057402,0.058821968734264]],[[0.020687630400062,0.12416311353445,-0.15651096403599],[0.065147913992405,0.0075395815074444,0.17148149013519],[-0.12371701002121,0.020400457084179,0.13724198937416]],[[-0.040712706744671,-0.025842659175396,0.0062432596459985],[0.035848949104548,-0.073526084423065,-0.04217941313982],[0.064811229705811,0.14938648045063,0.019374618306756]],[[-0.047834925353527,-0.11233253031969,-0.077142111957073],[0.072902321815491,-0.036097522825003,-0.027724979445338],[0.060784291476011,0.060451291501522,0.036115378141403]],[[0.14268082380295,0.070096179842949,0.052853461354971],[0.060566104948521,0.058200117200613,-0.052742023020983],[-0.035111874341965,0.024200627580285,-0.05756725743413]],[[-0.098195724189281,-0.086929365992546,-0.10081322491169],[-0.0040777106769383,-0.17352749407291,0.069942444562912],[0.12512877583504,-0.10920926183462,0.18120974302292]],[[0.021319037303329,-0.023552699014544,-0.022855754941702],[-0.043027151376009,0.060435075312853,-0.056808058172464],[-0.096469856798649,-0.0035631009377539,0.08177162706852]],[[0.014359108172357,0.034319501370192,0.065121501684189],[-0.0082626426592469,0.0065875449217856,0.052117235958576],[-0.013395549729466,-0.055778011679649,0.11002641916275]],[[0.030381759628654,0.032641269266605,-0.13526719808578],[-0.020707020536065,-0.22110606729984,-0.096534550189972],[-0.16074272990227,-0.0019820439629257,-0.018416296690702]],[[0.10184344649315,0.13720156252384,0.14355197548866],[0.085565991699696,-0.092114336788654,0.041726656258106],[0.031555712223053,-0.030635977163911,-0.019617261365056]],[[0.062316957861185,0.018244726583362,0.00088422041153535],[0.079640358686447,-0.0047733783721924,0.038458213210106],[-0.020996859297156,0.020343896001577,0.037176609039307]],[[-0.068998657166958,-0.033643417060375,0.042814198881388],[0.11891417950392,0.058044575154781,-0.081041283905506],[0.059978809207678,-0.14562802016735,0.0043925046920776]],[[-0.057379353791475,0.017635243013501,0.10959845036268],[-0.017491532489657,-0.048584420233965,0.19691576063633],[-0.007803094573319,-0.03584761172533,-0.024724060669541]],[[-0.032623525708914,-0.047153610736132,0.00022430729586631],[0.05733285099268,0.22212041914463,0.15124550461769],[-0.17152278125286,-0.082797817885876,-0.043307520449162]],[[-0.0041947928257287,-0.11223189532757,-0.24551898241043],[0.10005227476358,0.073791429400444,0.213966101408],[-0.43962776660919,-0.027867754921317,0.073498271405697]],[[-0.080822475254536,-0.056586876511574,-0.026699943467975],[-0.0046334145590663,-0.079266726970673,-0.038638863712549],[-0.026039419695735,0.05698299780488,0.015766225755215]],[[-0.087156012654305,-0.17584259808064,0.051601432263851],[0.087068066000938,-0.019026555120945,-0.047215070575476],[0.15939810872078,0.015962347388268,-0.07125435769558]],[[-0.051264312118292,0.010975639335811,0.01341912522912],[-0.047789081931114,0.021505046635866,-0.074246563017368],[0.0011164144380018,0.046589035540819,-0.0035448658745736]],[[-0.10659705102444,0.052692741155624,0.08529756963253],[-0.015315872617066,-0.016857799142599,-0.0085116177797318],[-0.063838243484497,-0.059342034161091,0.17786592245102]],[[0.034160900861025,0.068686559796333,-0.20889723300934],[0.023750806227326,-0.013764549046755,0.055179808288813],[-0.010024638846517,0.017158566042781,0.00093804491916671]],[[0.015210662037134,0.088931545615196,-0.15979917347431],[0.029795745387673,-0.074731029570103,0.088381305336952],[0.10167708992958,-0.038575023412704,0.058955200016499]],[[-0.049506209790707,0.13237741589546,0.039410099387169],[-0.098110161721706,-0.053084954619408,-0.045992195606232],[0.010521850548685,-0.074454911053181,-0.0068283542059362]],[[0.078568644821644,-0.0011410199804232,-0.018479781225324],[0.0018391872290522,0.067276127636433,0.050960447639227],[0.065373577177525,0.054450694471598,-0.0041807875968516]],[[-0.063529327511787,0.062978304922581,-0.13141848146915],[-0.0025228299200535,0.066849701106548,-0.075715340673923],[0.051886785775423,0.043305695056915,-0.028081076219678]],[[0.00016560751828365,-0.060979127883911,-0.015947833657265],[0.088754162192345,-0.062996976077557,0.13824334740639],[-0.097788989543915,0.020495692268014,-0.018310816958547]],[[-0.0016913852887228,-0.0016310598002747,0.046252343803644],[0.044158343225718,-0.025926496833563,0.019984014332294],[-0.089750595390797,-0.12692905962467,-0.0065399333834648]],[[-0.013810625299811,0.055215589702129,0.025982819497585],[0.07279571890831,-0.054130770266056,-0.1032428368926],[-0.041123747825623,-0.065328672528267,-0.003000212367624]],[[0.070775300264359,-0.11487583070993,0.21190895140171],[-0.12275256216526,0.037559922784567,0.13172277808189],[0.005529054440558,-0.02586299367249,0.15196451544762]],[[-0.00020540259720292,-0.03214243799448,0.0066717439331114],[0.029338631778955,-0.0059339953586459,-0.079684197902679],[0.032930061221123,0.087910547852516,0.010275613516569]],[[-0.13083961606026,-0.009491833858192,-0.088115580379963],[-0.038165021687746,-0.021076817065477,-0.18890047073364],[-0.10679209977388,-0.102305598557,-0.080762021243572]],[[-0.10607566684484,0.051919355988503,0.17765818536282],[0.095899127423763,-0.17116956412792,-0.12186865508556],[0.13193130493164,-0.10139644145966,-0.01514845341444]],[[-0.0873968526721,-0.10558661818504,0.026896955445409],[0.030645031481981,0.067147277295589,0.080867625772953],[0.05121086165309,-0.052914060652256,0.118542060256]],[[-0.00093767896760255,-0.13762898743153,0.029830429702997],[-0.062276795506477,0.09022694081068,-0.055590990930796],[0.11048135906458,0.032920561730862,-0.032092958688736]],[[0.02546246163547,0.027372131124139,0.0051932311616838],[-0.13732178509235,-0.015128779225051,0.12273215502501],[-0.050135981291533,-0.090209931135178,0.037594139575958]],[[0.054662100970745,0.15023165941238,-0.10409308969975],[-0.025188788771629,-0.080015607178211,0.014085525646806],[0.27809450030327,-0.14926213026047,-0.11519907414913]],[[-0.1843004822731,-0.077944211661816,-0.055568132549524],[-0.044900067150593,0.0072862235829234,-0.0056847808882594],[0.017792200669646,0.11586332321167,-0.058482922613621]],[[-0.0027408797759563,0.022176124155521,0.015282709151506],[0.01339597068727,-0.0003221693332307,-0.025454534217715],[0.21314139664173,0.047468192875385,0.043713372200727]],[[0.029138762503862,0.096781983971596,0.097882978618145],[-0.029737299308181,-0.042082827538252,-0.078914396464825],[0.03013750910759,0.1027615442872,-0.010950578376651]],[[0.025175083428621,-0.080913953483105,-0.0045877606607974],[0.044911935925484,0.022186368703842,-0.093390263617039],[-0.031427580863237,0.071213163435459,-0.036883015185595]],[[-0.047164995223284,0.043138168752193,0.0029397399630398],[-0.014283153228462,0.093190610408783,0.048648748546839],[0.021111056208611,0.084870986640453,0.025792948901653]],[[0.1183195412159,-0.010429235175252,0.022703843191266],[-0.020437804982066,0.043873898684978,-0.02725413441658],[-0.031575597822666,-0.089404672384262,-0.14727644622326]],[[-0.05119938775897,0.015376371331513,-0.077428303658962],[-0.11483712494373,-0.011845237575471,-0.080425120890141],[0.013774486258626,-0.048561505973339,0.025311073288321]],[[-0.064543165266514,-0.16244733333588,-0.23875930905342],[0.15887816250324,-0.032418224960566,-0.023615641519427],[0.06867565959692,0.067832827568054,-0.04838851839304]],[[-0.0025647184811532,-0.12397331744432,-0.15572902560234],[0.0054220790043473,0.068996943533421,-0.076245203614235],[-0.12021019309759,-0.026224827393889,-0.058649424463511]],[[0.031700123101473,0.031217413023114,0.058066628873348],[-0.023531187325716,-0.019567184150219,-0.13710778951645],[-0.0036300842184573,-0.0029939019586891,0.1113608777523]],[[-0.14051267504692,-0.070772960782051,-0.23149482905865],[-0.024411603808403,0.059768006205559,-0.10232296586037],[-0.20935790240765,-0.010514013469219,-0.0061192126013339]],[[0.050132572650909,-0.045928407460451,-0.16588349640369],[0.063779219985008,-0.0079914014786482,0.015836985781789],[0.037595178931952,-0.0053003071807325,-0.0082127675414085]],[[0.033303331583738,0.0043170945718884,0.071668766438961],[-0.019092634320259,-0.0045089502818882,-0.056005302816629],[-0.061279218643904,0.043906070291996,-0.0069831763394177]],[[-0.023358453065157,-0.035232655704021,0.001373790553771],[0.015576890669763,-0.0043866923078895,0.017809232696891],[0.026912620291114,-0.023550800979137,0.0045789103023708]],[[0.080871567130089,-0.049899965524673,0.059372425079346],[-0.1590823829174,-0.15036597847939,-0.12593621015549],[-0.012788190506399,-0.0039021987468004,0.040318243205547]],[[-0.015296646393836,0.053982481360435,-0.050077028572559],[0.029303779825568,-0.02060317620635,-0.16589027643204],[-0.035997122526169,0.0040212394669652,0.017239190638065]],[[-0.010796592570841,0.016100540757179,0.0052539245225489],[-0.0034862488973886,-0.026766002178192,-0.04464840516448],[-0.020027492195368,-0.0058939843438566,0.033006642013788]],[[0.0044875368475914,0.14500516653061,-0.0035069005098194],[0.035149853676558,0.1733066290617,-0.081006847321987],[-0.020079381763935,0.076077617704868,-0.054110758006573]],[[-0.10201895982027,-0.019775623455644,-0.013879734091461],[-0.012945882044733,-0.010688940994442,-0.083733752369881],[0.059258628636599,-0.13538394868374,-0.048467930406332]],[[-0.022495836019516,0.15376137197018,0.13841092586517],[-0.25544357299805,0.011049406602979,0.029680915176868],[-0.072260513901711,0.05105908960104,0.077557533979416]],[[0.048363845795393,-0.044721700251102,-0.081534847617149],[0.0097294868901372,-0.061157487332821,0.10402081161737],[0.0012471413938329,0.072006776928902,-0.12754347920418]],[[0.029406163841486,-0.039364885538816,-0.044685363769531],[0.0098530454561114,0.038444492965937,0.018724562600255],[0.098099455237389,-0.029057489708066,0.07891259342432]],[[-0.041651844978333,-0.12378772348166,0.038863211870193],[-0.097496628761292,-0.032204676419497,-0.061964619904757],[-0.030331464484334,0.04044184461236,-0.058893773704767]],[[0.0072398665361106,0.15227437019348,0.029998868703842],[0.10640345513821,0.083593219518661,0.042618155479431],[0.13326096534729,0.04888129234314,-0.083386078476906]],[[-0.012208276428282,0.050049483776093,0.05882403999567],[-0.041961714625359,-0.11605300754309,-0.088824674487114],[0.062098521739244,-0.099500954151154,-0.084584183990955]],[[-0.10958809405565,-0.063201859593391,-0.17384764552116],[-0.023520771414042,0.0088332807645202,-0.1185464411974],[0.061875641345978,-0.014205822721124,0.048673156648874]],[[0.082098744809628,0.050008703023195,-0.011424378491938],[-0.082953490316868,-0.03887277841568,-0.044558480381966],[0.011041946709156,0.052198953926563,0.018912736326456]],[[-0.022219561040401,0.017554791644216,-0.08659802377224],[-0.016617845743895,0.11340768635273,-0.053608108311892],[-0.011292971670628,-0.03418106213212,-0.016930606216192]],[[0.13582901656628,-0.04901222884655,0.087157666683197],[0.04021118953824,0.11764090508223,0.046056553721428],[-0.028985243290663,0.027982100844383,0.053415425121784]],[[0.078156001865864,-0.042908880859613,0.027920225635171],[0.14092072844505,0.051206693053246,0.12543205916882],[0.044467654079199,-0.043040685355663,-0.06277784705162]],[[0.068173684179783,-0.062726922333241,-0.016579268500209],[-0.0026063621044159,-0.0090772258117795,0.03366856649518],[-0.083210133016109,-0.066308058798313,-0.13266508281231]]],[[[-0.021581387147307,-0.096280239522457,0.037393745034933],[0.031113240867853,-0.093301594257355,-0.056118331849575],[-0.016781745478511,-0.072528563439846,-0.036025293171406]],[[-0.003694495651871,0.0063552907668054,-0.018152022734284],[-0.036953620612621,-0.060681950300932,0.015859715640545],[-0.048305511474609,0.047739535570145,-0.13540165126324]],[[0.10728965699673,-0.061163235455751,0.063463933765888],[-0.087548039853573,0.019506210461259,-0.11061751097441],[-0.027666058391333,0.024243550375104,-0.041393779218197]],[[0.03677275031805,-0.01183757930994,-0.054222475737333],[0.059795256704092,-0.048067558556795,0.03500148281455],[-0.02858935110271,0.033227581530809,-0.039836633950472]],[[0.045449674129486,-0.0062662377022207,0.13984145224094],[-0.062599465250969,0.045569781213999,0.041802078485489],[-0.0022871317341924,0.034973826259375,0.0014315138105303]],[[0.0087705655023456,0.10165932029486,0.037615772336721],[0.0092725697904825,0.0080340504646301,0.11698696017265],[0.03094806522131,0.068972386419773,0.021037390455604]],[[0.051227461546659,-0.077450625598431,-0.089338041841984],[-0.022042937576771,0.06716301292181,-0.040012154728174],[-0.083741530776024,0.046105366200209,-0.0293631516397]],[[-0.040275700390339,0.039366971701384,0.0050713615491986],[-0.0077767549082637,0.050357386469841,-0.078234434127808],[-0.043693535029888,-0.068828292191029,0.026217037811875]],[[0.04621247574687,0.073664732277393,0.028284452855587],[-0.0876719430089,-0.037605833262205,-0.097231268882751],[-0.0096272304654121,-0.0043129925616086,-0.016428086906672]],[[-0.01697894744575,0.17248979210854,0.090182967483997],[0.12716610729694,0.16602185368538,0.14887262880802],[0.028349434956908,0.058735866099596,-0.091228380799294]],[[-0.070221327245235,0.041776668280363,-0.0095415292307734],[0.094790801405907,0.094976648688316,0.064199291169643],[0.081790298223495,0.013490845449269,-0.094084054231644]],[[-0.0073469816707075,-0.066965095698833,0.038473285734653],[0.012704127468169,0.012642911635339,0.02290596626699],[0.043505050241947,-0.062979497015476,-0.071048304438591]],[[0.048892609775066,-0.016496863216162,0.063226595520973],[0.040019650012255,0.089148752391338,0.033114392310381],[0.004738959018141,0.008302791044116,0.023000368848443]],[[-0.024160873144865,-0.024795766919851,-0.02939386293292],[0.036359488964081,0.017499804496765,0.05471808090806],[0.05280551686883,-0.039799071848392,-0.068534977734089]],[[0.057074323296547,0.063186764717102,0.088090799748898],[-0.0027233017608523,0.15416963398457,-0.082631073892117],[0.053995821624994,0.043874427676201,0.11964795738459]],[[0.030456379055977,0.029154401272535,-0.0039738523773849],[-0.027002077549696,0.0041924337856472,0.010588033124804],[-0.088463455438614,0.01893856562674,0.029161028563976]],[[-0.022005401551723,0.063485287129879,0.032683335244656],[0.074285581707954,-0.0013914585579187,-0.022006331011653],[0.012466476298869,-0.026930391788483,0.037701312452555]],[[-0.094789244234562,0.018999906256795,0.0097545366734266],[-0.036828402429819,0.11672507971525,-0.02214627340436],[-0.087873339653015,-0.023730149492621,-0.023196240887046]],[[0.049840103834867,0.076196625828743,-0.0039233611896634],[-0.016299160197377,-0.0018047528574243,0.051670279353857],[0.068763099610806,-0.016244700178504,-0.069532327353954]],[[0.029109019786119,-0.054025631397963,-0.034534603357315],[0.0091800959780812,0.03243987634778,0.091106228530407],[0.09561001509428,-0.030298398807645,-0.041773919016123]],[[-0.031357705593109,-0.070675723254681,-0.0611214004457],[0.0035701643209904,0.03700140863657,0.0046249693259597],[0.030099162831903,-0.0042355130426586,0.030742032453418]],[[0.021894261240959,0.02540192566812,0.052789527922869],[0.0728819668293,0.032148696482182,0.075397484004498],[0.066002652049065,0.029564058408141,0.0055900816805661]],[[-0.0049057840369642,-0.038789059966803,-0.029446106404066],[0.038123950362206,0.010690862312913,-0.017010832205415],[0.01478885486722,-0.015018926002085,-0.0065804398618639]],[[0.04604722186923,-0.056548461318016,0.034168545156717],[0.11174319684505,0.036718897521496,0.11036488413811],[-0.055172879248857,0.027502782642841,-0.051341764628887]],[[-0.10039032995701,0.051357306540012,0.026798795908689],[0.046807654201984,0.030039023607969,0.067181691527367],[-0.038602259010077,-0.093746475875378,-0.0089070992544293]],[[0.042300153523684,0.030553476884961,0.042378295212984],[-0.068202808499336,-0.0033993881661445,-0.0030355495400727],[0.030972203239799,0.015343501232564,-0.063249215483665]],[[0.0062145008705556,0.035544943064451,0.087418369948864],[-0.035279061645269,0.074438646435738,0.086656868457794],[0.11508578062057,-0.001198326353915,-0.035977475345135]],[[-0.048807933926582,0.054132789373398,0.06556136906147],[0.045332886278629,-0.055772017687559,-0.026494337245822],[-0.0031112709548324,-0.016585184261203,-0.052812311798334]],[[-0.0078549766913056,-0.024854553863406,0.010709569789469],[0.028559975326061,0.10385971516371,-0.0017061929684132],[0.046140503138304,0.075882792472839,0.045004561543465]],[[0.067617014050484,-0.004877938888967,0.073579706251621],[0.042467299848795,0.021530300378799,-0.04694351926446],[-0.049690656363964,-0.13232144713402,0.047706328332424]],[[0.002171749714762,0.048500031232834,-0.042287472635508],[0.10699821263552,0.020235491916537,-0.027808178216219],[0.11982871592045,-0.033519137650728,-0.04837703704834]],[[0.00073985976632684,-0.011446564458311,-0.021884497255087],[-0.012957091443241,-0.028350794687867,0.028696862980723],[0.060866959393024,-0.021509205922484,0.0037725521251559]],[[0.16151168942451,0.012187417596579,0.027924120426178],[0.12021621316671,-0.020311750471592,0.054940164089203],[0.030015608295798,0.028173066675663,0.064090117812157]],[[0.0077909543178976,-0.034275062382221,-0.01555754058063],[0.022837368771434,0.018242245540023,0.060864191502333],[0.038835309445858,0.1306975632906,0.05390190333128]],[[0.036362461745739,0.032279171049595,0.086622580885887],[0.039043493568897,-0.026801334694028,-0.030676696449518],[0.039453461766243,0.065354630351067,-0.0071401679888368]],[[-0.052326936274767,0.038605719804764,-0.013160847127438],[-0.056409183889627,0.038095902651548,0.057709686458111],[-0.020024953410029,-0.034510891884565,0.016105536371469]],[[0.048159137368202,-0.079954095184803,-0.0046360963024199],[-0.089152097702026,-0.050558846443892,-0.080005757510662],[-0.20763570070267,-0.049356743693352,-0.1483641564846]],[[0.054340288043022,0.067773103713989,0.0084033431485295],[-0.0044122426770627,0.090671211481094,0.06076393276453],[0.042198501527309,0.07309751957655,0.11541962623596]],[[0.027431361377239,0.010464116930962,-0.0098607987165451],[0.028203953057528,0.031093711033463,-0.064134195446968],[-0.023693723604083,0.0021337694488466,-0.040908567607403]],[[-0.014841764234006,0.0083697848021984,-0.018188700079918],[0.07755172252655,0.010993420146406,0.024782216176391],[0.0073745511472225,0.021392952650785,-0.011061578057706]],[[0.073193147778511,-0.012890124693513,0.00075415807077661],[0.014941639266908,-0.054779384285212,0.035889524966478],[-0.062183484435081,0.074502825737,0.061511944979429]],[[-0.055755279958248,0.054035544395447,0.00074007839430124],[-0.088178835809231,0.035818215459585,-0.0028363328892738],[0.043198890984058,-0.038157016038895,0.0038923672400415]],[[0.015163389034569,0.022449905052781,0.050371043384075],[0.00098666967824101,-0.012365087866783,0.028196014463902],[0.017631189897656,0.17544074356556,-0.0116470111534]],[[0.023819081485271,0.034430120140314,0.019473033025861],[-0.0173299908638,-0.010340193286538,0.016326138749719],[0.031436715275049,0.0032475520856678,-0.045710720121861]],[[-0.00029857718618587,0.12074895203114,-0.067715503275394],[-0.033737618476152,0.030946295708418,0.021493896842003],[0.027878846973181,0.0012645688839257,0.064889915287495]],[[0.0012416682438925,-0.011534169316292,0.038688432425261],[-0.0023053248878568,-0.04609502106905,0.072059445083141],[0.11245579272509,0.093184396624565,0.055534746497869]],[[-0.0086225559934974,0.034032925963402,-0.042654123157263],[-0.042295463383198,-0.072820134460926,0.0069564427249134],[-0.0020070418249816,0.01620889082551,-0.016840139403939]],[[0.014583187177777,0.063822224736214,0.060033068060875],[-0.022997723892331,0.024959035217762,-0.03004821203649],[0.046982746571302,-0.090945698320866,0.064790569245815]],[[-0.080366678535938,-0.025438820943236,-0.07706206291914],[-0.12260925024748,-0.10965845733881,0.012260400690138],[0.073900200426579,-0.04603898152709,-0.002424965146929]],[[0.073442414402962,0.023578664287925,-0.10160858929157],[-0.050398461520672,-0.022463612258434,-0.033349048346281],[-0.074235178530216,0.035152390599251,-0.10090344399214]],[[0.098919086158276,-0.00013401654723566,-0.0036787663120776],[-0.0072245388291776,0.068384796380997,-0.050800729542971],[0.010076217353344,-0.0002414946211502,0.022526428103447]],[[0.0067262118682265,-0.096502766013145,0.018605636432767],[-0.010350844822824,0.15980026125908,-0.062611222267151],[0.0016383659094572,0.090707078576088,-0.045772325247526]],[[-0.072397299110889,-0.039715107530355,0.0022648978047073],[-0.066457882523537,0.014090036973357,0.029802672564983],[-0.010356683284044,0.041150264441967,0.0066861067898571]],[[0.0055126687511802,-0.08947342634201,0.022640159353614],[0.006720457226038,0.031426794826984,0.0087704844772816],[-0.094909742474556,-0.0092285433784127,0.0089232819154859]],[[-0.052574779838324,-0.0091239521279931,-0.047524727880955],[0.018745193257928,0.0030031392816454,-0.032814860343933],[0.019522819668055,-0.03296259790659,0.079919815063477]],[[-0.025031371042132,-0.011317476630211,0.041139740496874],[0.011245578527451,-0.054600834846497,-0.027488442137837],[0.11941228061914,0.0014791096327826,0.041985187679529]],[[-0.060044944286346,0.010993990115821,0.027354193851352],[-0.038628336042166,0.077576830983162,0.033134888857603],[0.00037660528323613,0.019856816157699,-0.057788249105215]],[[-0.013421548530459,0.0082395626232028,-0.0043345801532269],[-0.005444691516459,-0.026918414980173,-0.014871682971716],[-0.0055895242840052,-0.04414939135313,0.029861975461245]],[[0.087307222187519,0.05566318333149,0.010843858122826],[0.0088968724012375,0.043993052095175,-0.02126213349402],[0.018325485289097,-0.015490791760385,0.06550233066082]],[[-0.0082678096368909,0.0022685155272484,0.014172102324665],[0.017805349081755,-0.009691534563899,0.070889748632908],[0.031203987076879,0.026372795924544,-0.016513200476766]],[[0.087133429944515,0.04798012599349,-0.0034133875742555],[0.021353077143431,0.018553489819169,0.065983802080154],[-0.051667898893356,-0.02293829806149,0.079432718455791]],[[-0.079024650156498,0.010071013122797,-0.065384320914745],[-0.0017459066584706,0.037160079926252,-0.057888071984053],[0.024605950340629,-0.016675939783454,0.027654072269797]],[[-0.0095488438382745,-0.0056997230276465,0.0057575488463044],[-0.019383955746889,0.052779875695705,0.018432259559631],[-0.035945426672697,0.022702431306243,-0.02118600718677]],[[-0.037309102714062,0.01058504730463,-0.031550586223602],[0.025203751400113,-0.059275951236486,-0.060533512383699],[-0.04814663156867,0.019256271421909,0.03132514283061]],[[-0.034813653677702,-0.0058182682842016,0.031131824478507],[-0.016460528597236,-0.056130304932594,-0.084510900080204],[-0.033535037189722,-0.051401928067207,0.026820814236999]],[[0.020199904218316,0.098653562366962,0.020417662337422],[0.018312774598598,0.0017937800148502,0.036728274077177],[0.052635829895735,0.037060879170895,-0.032746110111475]],[[-0.014958299696445,0.054642986506224,0.0096873100847006],[0.048081573098898,0.0085360016673803,0.057422481477261],[0.045634992420673,0.00042058125836775,-0.039996907114983]],[[0.051636800169945,-0.014546706341207,0.091761916875839],[-0.025737402960658,-0.0094020068645477,-0.085893705487251],[0.066781707108021,-0.060643617063761,-0.032605577260256]],[[-0.054856445640326,0.040553107857704,-0.067901030182838],[-0.05699809640646,0.0018097796710208,-0.01961680687964],[0.014827873557806,-0.019868722185493,-0.0051585412584245]],[[0.037166152149439,0.028095033019781,0.082296535372734],[-0.04975563287735,0.090201929211617,0.0099213300272822],[0.041529480367899,-0.023123370483518,0.066925562918186]],[[0.0033767148852348,-0.084846720099449,0.081328935921192],[-0.030311772599816,-0.0059862653724849,-0.0073320968076587],[0.018983770161867,0.031884200870991,-0.055614922195673]],[[-0.0089040566235781,0.023544296622276,0.078670278191566],[0.035094417631626,0.079492256045341,0.082704484462738],[0.0071420245803893,0.040741123259068,-0.055907268077135]],[[0.034575790166855,0.027194894850254,-0.013665426522493],[0.14682483673096,0.02402700856328,-0.0056591629981995],[-0.033949974924326,0.06477003544569,0.015574086457491]],[[-0.025680705904961,0.013635198585689,0.08191329985857],[0.026900188997388,0.085546232759953,-0.019115637987852],[0.062376454472542,0.043286710977554,0.045830506831408]],[[0.019606988877058,-0.038966678082943,0.079139575362206],[-0.03838961943984,0.042610675096512,-0.040156550705433],[-0.039463832974434,-0.029879059642553,-0.0019461552146822]],[[0.091998510062695,0.0036791693419218,0.066389992833138],[-0.018755586817861,-0.0099519044160843,-0.032902728766203],[0.023236954584718,0.040314953774214,0.058486353605986]],[[0.034928254783154,0.0055625452660024,-0.096246175467968],[-0.097184337675571,-0.031588349491358,0.038164038211107],[-0.036068249493837,-0.043062966316938,0.085766166448593]],[[0.028628980740905,-0.043189786374569,-0.036983326077461],[0.025073440745473,0.082903608679771,0.016289964318275],[0.161894723773,-0.051876664161682,0.074623167514801]],[[-0.007374454755336,-0.0012829850893468,-0.0026635949034244],[0.01903435587883,-0.018669337034225,0.096806064248085],[-0.090352967381477,0.10727293044329,0.13434942066669]],[[0.027072042226791,-0.091273926198483,-0.090554818511009],[-0.015048632398248,0.0076014338992536,0.016984783113003],[0.0035841683857143,-0.09058728069067,-0.025638829916716]],[[-0.070506796240807,0.032136149704456,-0.031265657395124],[0.02401396073401,0.0047366498038173,0.012993403710425],[0.0055391816422343,0.083530910313129,0.11412401497364]],[[-0.030766759067774,-0.0068363007158041,0.0459870621562],[0.051423020660877,-0.0026268993970007,0.10092704743147],[0.021537849679589,0.04850335046649,0.041819237172604]],[[0.067433901131153,-0.021790282800794,0.035822477191687],[0.052612245082855,0.028813406825066,-0.027319988235831],[0.017580881714821,0.023618565872312,0.0033276849426329]],[[-0.0027614179998636,0.042890563607216,0.03001351095736],[0.001757264486514,0.040116928517818,0.045134250074625],[0.0013784634647891,-0.02547107078135,0.058866407722235]],[[-0.014439830556512,0.051381383091211,-0.0071456455625594],[0.082480907440186,0.009609691798687,0.029342504218221],[0.083107426762581,0.047270320355892,0.074531875550747]],[[-0.080755941569805,-0.01775317825377,-0.0193060208112],[0.040837783366442,0.016936404630542,0.074418127536774],[0.026966301724315,-0.06051317974925,-0.0015271693700925]],[[0.025533381849527,0.080903314054012,0.089531198143959],[-0.030965669080615,0.00075892312452197,-0.033203084021807],[0.059432178735733,0.11073509603739,0.012064295820892]],[[0.10542324185371,0.0048861070536077,-0.038218025118113],[0.066738873720169,0.038307379931211,0.14558535814285],[-0.0037842441815883,0.032205186784267,0.013028060086071]],[[0.010045064613223,-0.0029867803677917,0.051441866904497],[-0.01968913897872,0.036626663058996,0.028903054073453],[-0.054180543869734,0.046942628920078,0.054379228502512]],[[0.024043630808592,-0.054981648921967,-0.039519239217043],[-0.065640866756439,-0.0076636835001409,-0.014909466728568],[0.013590270653367,0.053645990788937,0.09216733276844]],[[-0.030032340437174,-0.054843064397573,0.047549448907375],[0.11762701719999,0.13780610263348,0.099289514124393],[0.012168475426733,-0.00027406541630626,-0.026164032518864]],[[-0.016927344724536,-0.030681451782584,0.083971865475178],[-0.0091526685282588,-0.0070678270421922,-0.15861645340919],[-0.0069058467634022,-0.022538248449564,0.06736733019352]],[[-0.021195482462645,0.014356013387442,-0.060536574572325],[0.01496909186244,-0.0041388417594135,-0.014892294071615],[0.00779819348827,-0.0036451043561101,-0.064695872366428]],[[0.074767217040062,0.10020642727613,0.11276169121265],[-0.092879466712475,-0.038218580186367,0.0028146288823336],[0.02204411663115,0.12671700119972,-0.010174113325775]],[[0.037578288465738,0.024114403873682,0.017829846590757],[-0.025892382487655,-0.02901260368526,0.081754080951214],[0.08900960534811,-0.02086640894413,0.11240417510271]],[[0.021764392033219,0.061920378357172,0.095494337379932],[-0.015257113613188,0.063628442585468,-0.099705740809441],[-0.0081367148086429,-0.002357340650633,-0.035575438290834]],[[-0.035912580788136,0.086865201592445,0.018572380766273],[0.037348829209805,0.012802413664758,-0.026658441871405],[0.11426805704832,0.052012290805578,0.0047644251026213]],[[-0.01878210157156,-0.032270215451717,0.05478360503912],[-0.0086062466725707,0.0094845974817872,0.08699955791235],[0.042465105652809,0.058734573423862,-0.021854355931282]],[[0.006354889832437,-0.075474746525288,0.039487756788731],[-0.017172127962112,-0.041391089558601,0.018153246492147],[0.029700001701713,-0.026011127978563,-0.081371277570724]],[[0.016649229452014,0.0085065644234419,0.063760936260223],[-0.042039252817631,-0.035260621458292,0.050795521587133],[0.016128091141582,0.031313039362431,0.044109828770161]],[[-0.10665448009968,-0.058613922446966,0.051973536610603],[0.00027120669255964,-0.043892689049244,0.045577134937048],[-0.017862148582935,-0.035964574664831,0.01189583633095]],[[-0.0079196654260159,0.1132920384407,-0.017633451148868],[0.061616573482752,0.081207886338234,0.13323935866356],[0.038705348968506,0.0073424661532044,0.090778641402721]],[[-0.033857271075249,-0.038055136799812,0.12856939435005],[0.059863895177841,0.048077486455441,-0.0073617566376925],[0.089046403765678,0.051266152411699,-0.084027700126171]],[[0.0067785093560815,0.040253803133965,0.0056596123613417],[-0.0030216290615499,0.050344105809927,-0.029122224077582],[-0.0024157422594726,0.032527014613152,-0.017973082140088]],[[0.054476086050272,0.010899091139436,-0.0038585448637605],[-0.037160027772188,-0.065420791506767,0.049575258046389],[-0.060216911137104,-0.0047271721996367,0.0080293631181121]],[[-0.04056990519166,-0.053043946623802,0.052659451961517],[-0.046818178147078,-0.062890499830246,-0.033894635736942],[0.026372760534286,0.058313343673944,-0.03686423972249]],[[0.040395241230726,0.077169694006443,0.052612133324146],[-0.0092912195250392,-0.052229855209589,0.076619803905487],[0.019642945379019,0.0090209441259503,0.1633717417717]],[[-0.052908711135387,-0.042211271822453,0.059895556420088],[-0.033525519073009,0.044646274298429,0.065353184938431],[0.068127006292343,0.037011254578829,-0.024768752977252]],[[0.047162756323814,0.095973737537861,-0.054880734533072],[-0.0092188008129597,-0.039498090744019,-0.035550862550735],[-0.015675725415349,-0.069888330996037,-0.059888705611229]],[[0.06354233622551,0.012035398744047,0.076985739171505],[0.06883367151022,-0.026243237778544,8.7116262875497e-05],[-0.12578968703747,-0.018119022250175,-0.066216535866261]],[[-0.067901886999607,0.019881952553988,-0.037100475281477],[0.038009557873011,0.0076782428659499,-0.015467190183699],[0.054688386619091,-0.0068913288414478,0.019208244979382]],[[0.041171822696924,-0.010292830877006,0.013082757592201],[-0.033462319523096,-0.061389267444611,0.062577649950981],[0.11288526654243,0.024345558136702,0.028060270473361]],[[0.010432530194521,0.028968119993806,0.021849203854799],[-0.018672287464142,-0.06826788187027,0.016102772206068],[-0.023842880502343,-0.043349150568247,-0.020680747926235]],[[0.07346972823143,-0.012631587684155,0.0069323973730206],[0.043175790458918,-0.01761619374156,-0.075026370584965],[-0.062010735273361,0.075266428291798,-0.014387880451977]],[[0.099188111722469,0.038861367851496,-0.021907590329647],[-0.084067836403847,0.00081761350156739,-0.062329806387424],[-0.034984588623047,-0.013449130579829,-0.082651764154434]],[[-0.013771893456578,0.011348132044077,-0.029352203011513],[0.038834381848574,0.0024504966568202,0.17533011734486],[0.050160001963377,0.02664084173739,-0.044296611100435]],[[-0.075522296130657,-0.03519894182682,0.10069876164198],[-0.025886261835694,0.044437147676945,0.046494744718075],[0.051272910088301,0.042290899902582,0.073768496513367]],[[0.068424537777901,-0.0087943049147725,0.056582819670439],[-0.029994526877999,0.026628833264112,0.030605498701334],[-0.036253061145544,-0.028129683807492,0.029191259294748]],[[-0.017129462212324,0.028801795095205,0.0078431637957692],[0.028294006362557,0.010034211911261,0.01208882406354],[-0.059777893126011,0.057520605623722,0.056492086499929]],[[-0.092122070491314,0.012283805757761,-0.054822113364935],[-0.10485302656889,-0.041799310594797,0.00035472816671245],[-0.065701045095921,-0.0070180161856115,-0.078296057879925]],[[0.035401314496994,0.020900106057525,0.05096722021699],[0.013712810352445,-0.018767973408103,-0.034542758017778],[-0.026381500065327,0.031403087079525,0.041465096175671]],[[-0.030230024829507,0.026980590075254,0.091198585927486],[0.065443627536297,0.019542077556252,-0.01596319489181],[0.034902837127447,0.021512437611818,-0.052462793886662]],[[0.032653320580721,-0.018164670094848,0.034172154963017],[0.013935869559646,-0.0086893467232585,0.054740853607655],[-0.0028734277002513,0.023181719705462,-0.060656506568193]],[[0.026965258643031,-0.037113886326551,-0.0198212582618],[-0.056008245795965,-0.16634711623192,-0.017070412635803],[-0.14098328351974,-0.016807056963444,-0.011533756740391]],[[0.058226387947798,0.025889061391354,0.032084964215755],[0.031760226935148,-0.01365381013602,0.055879581719637],[0.10550671070814,0.0063213156536222,0.060259532183409]],[[-0.030649907886982,-0.010407124646008,-0.021902896463871],[0.029860036447644,-0.016627183184028,-0.0044710854999721],[0.015716951340437,0.013168768025935,0.016290057450533]],[[-0.066131219267845,0.056823544204235,0.00095066428184509],[0.080267958343029,0.036951016634703,0.069071829319],[-0.015557011589408,-0.047052621841431,0.17049038410187]],[[-0.016812019050121,0.054817765951157,-0.098237358033657],[0.084825254976749,-0.027476305142045,0.10132230818272],[-0.036935672163963,-0.038820020854473,0.0048173316754401]]],[[[0.04053757339716,-0.074876487255096,-0.092747949063778],[-0.20559325814247,-0.0043224534019828,-0.04988332092762],[-0.1480168402195,-0.049252901226282,0.004592000041157]],[[-0.025881443172693,-0.0054094609804451,-0.13760873675346],[-0.10655851662159,0.20695795118809,-0.04682819917798],[-0.052079278975725,-0.139250472188,-0.065913766622543]],[[-0.080024041235447,-0.0049026687629521,0.061220422387123],[-0.075232930481434,0.037164881825447,0.027975125238299],[-0.032551631331444,0.054055627435446,-0.10880859196186]],[[0.051774561405182,0.058069154620171,0.062309898436069],[0.025389457121491,-0.0016706872265786,0.032845668494701],[-0.026860184967518,0.0062946630641818,0.028120901435614]],[[0.03775604441762,-0.10088851302862,0.058311030268669],[-0.04657469689846,-0.042655296623707,-0.011837410740554],[-0.0078947590664029,0.058335851877928,-0.026888616383076]],[[0.049535665661097,-0.059529710561037,0.049828864634037],[0.068935699760914,0.038730967789888,-0.13416947424412],[0.019466539844871,0.075377985835075,-0.059244953095913]],[[-0.014612674713135,-0.10953048616648,-0.0069953454658389],[-0.014992943033576,-0.075788170099258,0.10447074472904],[0.049751501530409,0.053835291415453,-0.042825970798731]],[[0.11247269809246,-0.048627141863108,0.062520049512386],[-0.030412020161748,-0.099762767553329,0.12920971214771],[-0.088549964129925,-0.064658090472221,-0.11421700567007]],[[-0.12241725623608,0.04525837674737,-0.06086603179574],[0.012629860080779,0.13942265510559,-0.11238905787468],[-0.12147659063339,-0.065858833491802,-0.10694051533937]],[[-0.057046458125114,0.21359813213348,0.10967037826777],[-0.045716341584921,0.0041234875097871,-0.006608696654439],[0.044930469244719,0.072690412402153,-0.017013393342495]],[[0.075969159603119,-0.064879849553108,-0.0018625525990501],[-0.076805219054222,-0.071265019476414,0.033449657261372],[-0.020766893401742,0.039078716188669,-0.0013482368085533]],[[0.020461088046432,-0.12839497625828,-0.066746726632118],[0.027714973315597,-0.061458945274353,0.016858618706465],[-0.031314801424742,0.045136839151382,-0.01057689730078]],[[-0.16562910377979,-0.094273954629898,-0.12482786923647],[-0.032873544842005,0.036606457084417,0.034497775137424],[-0.034005921334028,0.035299826413393,0.04584151878953]],[[0.0020643430761993,0.092834189534187,-0.17715492844582],[0.017909996211529,0.099184654653072,-0.032527200877666],[-0.062078129500151,0.021877516061068,-0.062862947583199]],[[0.26059910655022,0.098393432796001,-0.13015133142471],[0.040379043668509,0.053173627704382,-0.042545937001705],[-0.12838399410248,-0.069187045097351,-0.032487083226442]],[[-0.047996535897255,-0.05127551779151,-0.041754085570574],[-0.017280986532569,0.17080770432949,-0.022637847810984],[-0.01525117829442,-0.058828745037317,-0.0067776376381516]],[[-0.024282271042466,0.019555684179068,0.035050336271524],[0.019993644207716,-0.046144850552082,-0.067807547748089],[0.00026617798721418,0.018751909956336,0.058094158768654]],[[-0.022900145500898,-0.068921394646168,0.0084585295990109],[0.014754239469767,0.047867685556412,-0.047527324408293],[0.041666891425848,-0.033464826643467,0.052010133862495]],[[-0.051099389791489,-0.062763273715973,0.12432873994112],[-0.026888810098171,0.023703265935183,-0.11865875124931],[0.035065304487944,0.029509071260691,-0.041983727365732]],[[-0.1553507745266,-0.094354011118412,0.073998287320137],[-0.094492197036743,-0.078676797449589,-0.057831879705191],[0.078174583613873,0.031056540086865,-0.034241523593664]],[[-0.13309964537621,-0.15918186306953,-0.077266171574593],[0.044323030859232,-0.065336264669895,-0.059106022119522],[0.018377054482698,0.014434205368161,-0.051726087927818]],[[0.051321536302567,-0.0081374859437346,0.12178907543421],[-0.010867793112993,0.08406613022089,0.12941454350948],[0.027422288432717,-0.047161299735308,0.079384915530682]],[[0.027120910584927,-0.093287147581577,-0.062277585268021],[0.010055462829769,-0.0079945093020797,0.053733680397272],[0.07678409665823,0.025842137634754,-0.044366769492626]],[[0.0098844803869724,0.17973329126835,0.046216148883104],[0.069721788167953,0.035075027495623,-0.028195731341839],[0.072540834546089,-0.0068012112751603,-0.037419382482767]],[[-0.047213584184647,-0.045793086290359,-0.0054903062991798],[0.035040192306042,0.09620339423418,0.0075490237213671],[-0.036962524056435,-0.056514021009207,-0.030051007866859]],[[0.066859260201454,-0.074922919273376,0.055060118436813],[0.035620428621769,0.10509884357452,0.035383801907301],[0.029336262494326,-0.014572851359844,-0.032912779599428]],[[-0.078218057751656,-0.058516800403595,0.00014794604794588],[0.069430261850357,-0.028041256591678,0.017158763483167],[-0.078982062637806,-0.072976924479008,0.13172221183777]],[[-0.011898937635124,-0.050233483314514,0.19259905815125],[-0.075240939855576,0.033272784203291,-0.19179397821426],[0.045747328549623,-0.017592942342162,0.045817218720913]],[[0.069568298757076,0.14440216124058,-0.018708633258939],[0.039784926921129,-0.082572385668755,-0.19236680865288],[0.094405360519886,0.089851856231689,0.00042491563363001]],[[-0.089756421744823,0.091182686388493,0.014971277676523],[-0.13194862008095,0.05229239910841,-0.096455700695515],[0.08723034709692,0.054417759180069,0.034199293702841]],[[-0.10604666918516,-0.041573029011488,0.0049170278944075],[0.11847169697285,0.041896902024746,0.060583539307117],[-0.037895876914263,0.099295876920223,-0.0354576818645]],[[-0.013218932785094,-0.15149784088135,-0.016996456310153],[-0.05148858949542,-0.058963783085346,9.342264092993e-06],[-0.090783983469009,-0.0049437955021858,-0.0078220432624221]],[[0.085552796721458,-0.086708106100559,-0.10002271085978],[-0.032433174550533,0.058210499584675,0.098675236105919],[0.057404089719057,0.081855185329914,-0.0052128066308796]],[[-0.019673159345984,-0.03950484842062,-0.13885600864887],[0.060769710689783,0.011689504608512,0.08390548825264],[0.032939206808805,-0.12358506023884,-0.11669190227985]],[[-0.21047528088093,-0.029551444575191,-0.022024508565664],[-0.011174735613167,0.12922629714012,0.017639219760895],[0.001201452803798,0.0048544928431511,0.0093437656760216]],[[0.0018015309469774,-0.16570927202702,-0.11931011080742],[0.042158983647823,-0.011836017481983,-0.10193918645382],[-0.057793848216534,-0.01773564144969,0.0100366352126]],[[0.065717548131943,0.0072300774045289,-0.0082422075793147],[-0.12936656177044,-0.069048099219799,-0.015572481788695],[0.058780189603567,-0.0179681815207,-0.0074627809226513]],[[0.065997317433357,-0.11894381046295,-0.14439086616039],[0.031086651608348,0.083207294344902,0.077656932175159],[0.031179113313556,-0.071104161441326,-0.093772888183594]],[[0.039011970162392,0.13521179556847,0.040292728692293],[0.030627138912678,0.019759675487876,-0.072868838906288],[0.09650731086731,-0.029811345040798,0.1537718474865]],[[0.078822948038578,-0.072945304214954,-0.023038364946842],[-0.0494529530406,-0.015168574638665,-0.029622839763761],[0.020479263737798,-0.092358268797398,-0.0048906747251749]],[[0.16103899478912,-0.011405039578676,-0.022815754637122],[-0.001403626636602,-0.035177461802959,0.066205017268658],[-0.0069407192058861,0.017887935042381,0.013257367536426]],[[0.050607409328222,-0.036299236118793,-0.077108293771744],[-0.0048743123188615,0.022848427295685,-0.020540459081531],[-0.064112313091755,-0.014098518528044,0.04873388633132]],[[-0.10450039803982,-0.18318705260754,-0.026879185810685],[0.017949508503079,-0.084029264748096,0.033646583557129],[0.056741990149021,-0.067961543798447,0.027983240783215]],[[0.084204703569412,-0.019610293209553,-0.031439136713743],[0.018026042729616,0.016296872869134,0.013311667367816],[-0.095133282244205,0.017249887809157,0.023612331598997]],[[0.05570126324892,-0.15014824271202,0.063581682741642],[-0.10276408493519,0.10675920546055,0.075897410511971],[-0.08131692558527,-0.036635220050812,0.046747319400311]],[[0.023918131366372,-0.033596828579903,-0.051876675337553],[0.14326721429825,-0.042070887982845,0.024539437144995],[0.055789489299059,-0.070164360105991,-0.010257661342621]],[[-0.076099410653114,0.12393685430288,-0.012147966772318],[0.088117085397243,-0.010364742018282,-0.045306462794542],[0.083955019712448,0.030157368630171,-0.012507502920926]],[[0.014199964702129,-0.16745625436306,-0.048338051885366],[-0.1715117841959,0.0250831451267,-0.012385954149067],[-0.024029273539782,-0.023600643500686,0.023707747459412]],[[0.02020975202322,-0.028585206717253,-0.17741818726063],[0.062915541231632,0.11038108170033,-0.025908898562193],[0.064084462821484,-0.072579547762871,-0.023280195891857]],[[0.0032018115743995,-0.10211370885372,0.00065224117133766],[0.030400559306145,0.042136613279581,0.046296171844006],[-0.02384596504271,-0.10344649851322,-0.025035068392754]],[[-0.051635198295116,-0.068008713424206,0.082177355885506],[0.070055991411209,0.031761631369591,-0.043367121368647],[-0.021984059363604,-0.040823835879564,-0.023136921226978]],[[0.018170557916164,-0.043504770845175,-0.18347591161728],[-0.035804972052574,0.085799381136894,0.069253541529179],[0.0043280543759465,-0.041539300233126,0.012845183722675]],[[0.014544452540576,0.039078567177057,-0.017124189063907],[-0.13232731819153,-0.039591018110514,-0.034096721559763],[-0.074208751320839,0.006766798440367,0.0088431686162949]],[[-0.22555604577065,0.095465011894703,0.048135444521904],[-0.11242187023163,-0.0030521163716912,0.019203074276447],[0.0062989983707666,-0.042654942721128,-0.078729130327702]],[[0.0020634955726564,-0.14694936573505,-0.022854302078485],[0.0058727916330099,0.030648227781057,0.00078753265552223],[0.050765536725521,0.04269678145647,0.057870339602232]],[[-0.044194996356964,0.028499627485871,-0.099739797413349],[0.067231543362141,-0.031920436769724,-0.0026520492974669],[-0.022328276187181,0.024781653657556,-0.0415502153337]],[[0.029278447851539,0.13887105882168,0.0044924155808985],[-0.067958474159241,-0.018503298982978,0.0098997447639704],[-0.10363989323378,-0.054882135242224,0.074129514396191]],[[-0.066240981221199,-0.057243067771196,0.083386540412903],[-0.029398990795016,-0.020027546212077,0.013118862174451],[-0.04853443056345,0.10067198425531,0.084269896149635]],[[-0.08112595230341,-0.10762689262629,0.031036579981446],[-0.013689048588276,-0.075882792472839,0.034091543406248],[-0.042756624519825,-0.11055362969637,0.020162053406239]],[[0.033716402947903,-0.069331347942352,0.11142285168171],[-0.047778911888599,-0.0071239131502807,0.078482910990715],[0.005353485699743,-0.06362010538578,0.0087889349088073]],[[-0.14293575286865,-0.0090827895328403,-0.034807145595551],[0.023219421505928,-0.090737625956535,-0.046227976679802],[0.028754772618413,0.052321873605251,0.015272285789251]],[[-0.10684341937304,-0.03552171215415,0.0044550192542374],[0.12015467882156,0.15393052995205,0.03143372386694],[-0.0030403409618884,0.059615731239319,0.0044053052552044]],[[-0.17404378950596,-0.13136483728886,-0.010701507329941],[-0.091201156377792,-0.095194064080715,-0.095276303589344],[-0.043994776904583,0.070062853395939,-0.10274673998356]],[[0.1589077860117,0.070836812257767,-0.092049792408943],[-0.13880544900894,-0.1271878182888,0.009103137999773],[0.03640778362751,0.10974416136742,-0.020993603393435]],[[-0.0093043241649866,-0.065776824951172,-0.070913106203079],[0.083128161728382,-0.024658605456352,-0.070892333984375],[-0.044878177344799,0.048600774258375,0.10880807042122]],[[-0.077877447009087,-0.19064043462276,-0.23623192310333],[0.060642689466476,-0.016022101044655,-0.063892662525177],[-0.019034860655665,0.044607508927584,0.081210948526859]],[[-0.076746806502342,0.037904884666204,-0.017046254128218],[0.0099611515179276,0.051398865878582,0.03931824862957],[-0.10693580657244,0.0063329176045954,-0.069474525749683]],[[0.0083016902208328,0.00023248238721862,-0.078785985708237],[-0.036282781511545,0.02421092055738,0.037416573613882],[-0.076412588357925,0.079049482941628,0.010878180153668]],[[-0.095420688390732,-0.056788004934788,-0.033885978162289],[0.031215716153383,-0.075569435954094,-0.062992967665195],[-0.068081751465797,-0.027496479451656,0.064236715435982]],[[0.028811482712626,0.0049708765000105,-0.052863422781229],[-0.08333745598793,0.0072740716859698,-0.11478520929813],[0.029190393164754,-0.15348201990128,0.049246530979872]],[[0.021765841171145,-0.019871033728123,-0.060701828449965],[-0.033398263156414,-0.026795079931617,-0.0079324198886752],[-0.061912253499031,0.004881442990154,0.027756771072745]],[[0.13657522201538,-0.027179695665836,0.20812432467937],[-0.015187007375062,-0.06143394857645,0.011980388313532],[-0.10307571291924,-0.029487211257219,-0.014043034054339]],[[-0.112040810287,-0.092341385781765,-0.0017296334262937],[0.0128129189834,-0.02721369639039,-0.003123824717477],[-0.081341087818146,-0.02239608950913,-0.047503512352705]],[[-0.070361211895943,-0.087626196444035,0.11366907507181],[-0.040765572339296,0.064953573048115,0.091323636472225],[-0.0074617192149162,-0.11882234364748,0.08171258866787]],[[-0.0269840862602,-0.090646207332611,0.06058631837368],[-0.023637915030122,0.0073368987068534,-0.1062635704875],[0.016483709216118,0.035452973097563,0.08610001206398]],[[0.011580874212086,-0.12020242214203,0.076185546815395],[-0.058259297162294,-0.059823650866747,0.088231176137924],[0.019623396918178,-0.011848640628159,0.0061371591873467]],[[0.017892861738801,0.076021865010262,0.032687913626432],[-0.035390555858612,-0.14533448219299,-0.0018180841580033],[-0.063072495162487,0.00952132884413,-0.0168751552701]],[[-0.13265126943588,-0.078984051942825,-0.048037085682154],[-0.12596343457699,-0.11456413567066,-0.004400497302413],[0.11033812910318,-0.035131853073835,-0.1358028948307]],[[-0.029766926541924,-0.23272426426411,-0.023314503952861],[0.01105133164674,0.039580702781677,0.07247705757618],[-0.042696669697762,0.0012063464382663,-0.056522354483604]],[[0.0048015071079135,-0.15041430294514,0.0027333344332874],[-0.077690564095974,-0.023968636989594,0.015677006915212],[0.013642033562064,-0.04022528231144,0.0085495188832283]],[[0.010473976843059,-0.11057106405497,0.019706230610609],[0.10138098150492,-0.050386287271976,-0.071689821779728],[0.021284550428391,-0.036124214529991,0.034651413559914]],[[0.26909148693085,-0.0026480834931135,-0.025691665709019],[-0.2037750184536,-0.25724920630455,-0.024820985272527],[0.14115503430367,0.0015326656866819,0.048770990222692]],[[-0.052784100174904,-0.075469747185707,0.044515393674374],[-0.042510807514191,-0.057836107909679,-0.027016507461667],[0.032020699232817,-0.0095768980681896,0.019745027646422]],[[-0.062136519700289,-0.081505291163921,0.051783051341772],[-0.060769077390432,-0.032001439481974,0.12085641175508],[0.036444652825594,0.0033579529263079,0.026431182399392]],[[0.062282975763083,-0.099201120436192,-0.078490726649761],[0.11895728111267,-0.07793977111578,-0.059988100081682],[0.010801510885358,-0.045193005353212,0.040161106735468]],[[-0.0829758644104,0.068912327289581,0.11042392998934],[-0.16351772844791,0.059091504663229,0.069347254931927],[-0.034953512251377,0.058386355638504,-0.020057912915945]],[[-0.032992299646139,-0.11795741319656,-0.21366773545742],[0.11841264367104,0.13460147380829,0.018697133287787],[0.020906567573547,0.050289265811443,-0.026695685461164]],[[-0.11707484722137,0.052717566490173,-0.044614538550377],[0.068322904407978,0.068938732147217,0.0038680981379002],[0.064363338053226,-0.040468975901604,0.00943947955966]],[[-0.081491470336914,-0.0022813461255282,-0.077845223248005],[-0.032496992498636,0.046694152057171,-0.057753637433052],[0.092193648219109,-0.0050219143740833,-0.12608915567398]],[[-0.21413326263428,-0.11734896153212,0.019567407667637],[0.032753929495811,-0.030204316601157,-0.012541667558253],[-0.046675518155098,0.034046743065119,0.037596587091684]],[[0.010343156754971,0.012242691591382,0.050233401358128],[0.034232195466757,-0.01970511674881,0.063094645738602],[0.053405184298754,-0.03209313005209,0.067328229546547]],[[0.055635169148445,-0.12110235542059,-0.095028899610043],[0.045447807759047,-0.031124031171203,0.02635613642633],[0.058789931237698,-0.0079822316765785,0.0054296287707984]],[[-0.1714346408844,-0.039119869470596,-0.10213342308998],[0.022609738633037,0.01586982421577,-0.016652146354318],[-0.015647472813725,0.037380885332823,0.024500023573637]],[[-0.00068940239725634,-0.077157095074654,0.017239522188902],[-0.097449734807014,-0.037025231868029,-0.054203134030104],[-0.076872944831848,-0.055454395711422,0.068695351481438]],[[-0.18611221015453,-0.056709539145231,0.11149962246418],[-0.053892530500889,0.18511784076691,0.10323718190193],[0.013225179165602,-0.11683266609907,-0.031061893329024]],[[-0.00067055044928566,0.0031426651403308,-0.075120180845261],[-0.013132715597749,-0.16071437299252,0.16628442704678],[0.048216093331575,-0.015570511110127,0.037220567464828]],[[0.061599936336279,-0.064806945621967,-0.011535038240254],[0.10935615003109,0.0073936805129051,-0.045901317149401],[-0.002662492915988,0.00524468626827,0.0094759054481983]],[[-0.058227326720953,-0.0051190429367125,-0.0577760823071],[-0.071870014071465,-0.11712918430567,-0.05690361186862],[0.05475640296936,-0.028330750763416,-0.040443498641253]],[[-0.13087067008018,-0.10035023838282,-0.0085756052285433],[-0.042592030018568,-0.11254615336657,0.030540795996785],[0.022068569436669,0.008706197142601,0.025144718587399]],[[0.10640727728605,-0.042811002582312,-0.079729564487934],[-0.078136958181858,-0.085734233260155,0.049266919493675],[0.067716844379902,-0.035477329045534,0.12509386241436]],[[-0.17032104730606,0.08288910984993,-0.091301217675209],[-0.054557148367167,0.020653521642089,0.053875226527452],[-0.059346608817577,0.049345172941685,0.028139963746071]],[[0.010122968815267,0.015002354979515,-0.023806441575289],[-0.0288514085114,0.00092254567425698,0.042050700634718],[-0.012369186617434,-0.058106038719416,0.07403202354908]],[[-0.12909299135208,-0.077844388782978,0.17345662415028],[0.039703659713268,-0.031302705407143,0.085751116275787],[-0.0089291539043188,0.023420272395015,0.013472449965775]],[[-0.092946194112301,-0.079254865646362,-0.047895882278681],[0.063626922667027,-0.045670323073864,0.034889664500952],[0.093180507421494,0.045646823942661,-0.037262246012688]],[[-0.040106676518917,-0.056558143347502,0.0055374503135681],[-0.015856120735407,0.1753291785717,-0.10870087891817],[-0.017462231218815,0.075372822582722,0.00042176587157883]],[[-0.13851055502892,0.03839997202158,-0.1008071526885],[0.074042111635208,0.076988458633423,-0.045816078782082],[0.045472837984562,-0.083746559917927,-0.040197726339102]],[[0.018932918086648,0.12042888253927,-0.16778233647346],[0.10162477195263,-0.14969457685947,0.32546806335449],[-0.07204233109951,-0.021966541185975,0.063178956508636]],[[-0.055085998028517,-0.041411858052015,-0.033259514719248],[-0.033829770982265,0.036716941744089,-0.039945092052221],[0.036058321595192,0.018838351592422,-0.025211375206709]],[[0.020079234614968,-0.06902951002121,0.01085452362895],[-0.012836932204664,0.13677003979683,-0.1053569316864],[0.0080764135345817,-0.049915492534637,0.12154304981232]],[[-0.10545775294304,0.10342440009117,0.047021504491568],[0.001731832511723,0.010048050433397,-0.032132856547832],[-0.0030109554063529,0.017960093915462,0.031769901514053]],[[-0.082254096865654,0.42167532444,0.036428231745958],[0.074201062321663,0.094958677887917,-0.061353679746389],[-0.032946567982435,0.0028108742553741,-0.0094535537064075]],[[0.041360128670931,-0.098890550434589,0.01186500210315],[-0.047413047403097,0.026504503563046,-0.12825334072113],[0.081303223967552,0.031364861875772,-0.099396251142025]],[[-0.0067333513870835,-0.12285921722651,-0.055842455476522],[-0.063268110156059,0.0019474017899483,-0.033550187945366],[0.043591268360615,-0.020509539172053,-0.014248358085752]],[[0.04816485196352,0.10620921850204,0.063079245388508],[-0.014343470335007,-0.0608398206532,0.027127495035529],[0.065728694200516,0.040735434740782,-0.018030341714621]],[[-0.12745481729507,-0.065546661615372,-0.012729265727103],[0.027923127636313,0.082337908446789,0.092910245060921],[-0.13921840488911,0.080396682024002,0.030277792364359]],[[0.011551880277693,0.036798842251301,-0.047404948621988],[0.079282410442829,-0.019069984555244,-0.029854530468583],[-0.087132558226585,-0.059860978275537,-0.031834665685892]],[[0.0011233604745939,-0.05242009088397,-0.039124142378569],[-0.01333091314882,0.024035293608904,-0.079841926693916],[-0.050650019198656,-0.013174165040255,-0.02779745683074]],[[-0.12557455897331,-0.07579480856657,-0.013007840141654],[0.0042688599787652,-0.088981628417969,-0.066834092140198],[-0.12810063362122,-0.0088650062680244,0.017781248316169]],[[-0.003194878809154,-0.08283394575119,0.064649365842342],[-0.049610141664743,-0.026998568326235,-0.13478189706802],[0.059068270027637,-0.015103885903955,-0.042781293392181]],[[-0.15145348012447,0.055726617574692,0.17101956903934],[0.055279489606619,0.088772267103195,0.044731888920069],[-0.025647347792983,0.005462393630296,0.039788313210011]],[[-0.12014802545309,-0.012463080696762,0.11936270445585],[0.016959141939878,0.18846409022808,0.083096288144588],[0.021424112841487,-0.058819830417633,0.00032051131711341]],[[-0.081395626068115,0.039412476122379,-0.045212645083666],[-0.086037650704384,0.0014352920698002,0.12336327135563],[-0.075135283172131,0.026546221226454,0.046191573143005]],[[-0.042901657521725,-0.00075252493843436,0.070950001478195],[-0.017511950805783,-0.077265843749046,-0.014565787278116],[-0.092832662165165,-0.073355071246624,-0.0013112085871398]],[[-0.027219759300351,0.03288259357214,0.0037448795046657],[-0.0054955589585006,-0.16272136569023,-0.020977426320314],[-0.017237052321434,-0.015085191465914,-0.0013921423815191]],[[0.079063139855862,-0.0047326018102467,0.021426919847727],[-0.10612167418003,-0.056677013635635,0.076880782842636],[0.048164922744036,-0.035606045275927,0.039610918611288]],[[-0.11863221228123,0.18284206092358,0.11084674298763],[-0.078333891928196,-0.095055490732193,-0.11802659183741],[0.022819377481937,0.01613412797451,-0.096944987773895]],[[0.031115029007196,0.040793742984533,-0.14082817733288],[-0.058302775025368,-0.0061136311851442,0.079227656126022],[-0.031357064843178,-0.053081754595041,0.072761110961437]],[[-0.078353188931942,0.052629139274359,-0.09448779374361],[0.084398657083511,0.014522263780236,-0.02616760134697],[0.073560655117035,-0.058416824787855,-0.0008512717904523]]],[[[-0.039286278188229,0.06399492174387,0.0014072526246309],[-0.047679495066404,-0.017185058444738,0.028611402958632],[0.032421879470348,0.081716455519199,-0.0094272438436747]],[[-0.0094123855233192,0.037373322993517,-0.00017775486048777],[0.04984775185585,0.023258557543159,-0.025378171354532],[-0.082696557044983,-0.011226668953896,0.00092481047613546]],[[0.020960042253137,-0.019232032820582,0.017239313572645],[-0.00071391015080735,0.02052466198802,-0.007722572889179],[-0.019442772492766,-0.01260712556541,0.082946076989174]],[[-0.022073272615671,0.038086365908384,0.08095246553421],[-0.067903757095337,-0.017292801290751,0.0091695906594396],[0.0044502951204777,-0.020410493016243,0.089828580617905]],[[-0.0330452285707,-0.045591343194246,-0.03559796884656],[-0.012323538772762,0.044421937316656,0.098562151193619],[-0.0051908232271671,0.037636570632458,-0.015279815532267]],[[0.047630067914724,0.030917786061764,-0.014539941214025],[0.012284933589399,0.07648828625679,0.0026099930983037],[-0.042748093605042,0.0075554633513093,-0.0033267745748162]],[[0.084799684584141,0.026803284883499,0.050146289169788],[-0.057379696518183,-0.083135828375816,-0.080324396491051],[0.017339231446385,0.010697354562581,-0.053212344646454]],[[0.084188528358936,0.098646812140942,0.054219879209995],[0.10350538045168,0.031779129058123,0.023223472759128],[-0.00040441847522743,-0.082876861095428,-0.016345648095012]],[[0.02760579623282,0.024920338764787,-0.049481358379126],[0.049649819731712,-0.024146122857928,0.012684876099229],[-0.04248807951808,0.016842579469085,0.004797593690455]],[[-0.057767737656832,0.021436516195536,0.0061640203930438],[0.036915302276611,-0.086126297712326,0.037121407687664],[-0.016980990767479,-0.019310491159558,-0.0099907256662846]],[[-0.00065044010989368,0.039840333163738,0.027794186025858],[0.03014612942934,0.028198532760143,0.10782603174448],[-0.011060611344874,0.0023763161152601,0.029573850333691]],[[0.015255964361131,0.064884468913078,-0.036527410149574],[-0.073599986732006,-0.0087927868589759,0.052242897450924],[0.0097077628597617,0.029182555153966,0.040801107883453]],[[0.050802480429411,0.039998538792133,-0.0037252327892929],[-0.018511751666665,0.0089727705344558,0.07613680511713],[0.033900085836649,-0.17110387980938,-0.020254258066416]],[[0.05874241143465,0.048503749072552,-0.021191522479057],[0.046929404139519,0.10314460843801,0.0016639090608805],[-0.079143136739731,-0.043027050793171,0.030720664188266]],[[0.023137122392654,0.0038045577239245,0.052634660154581],[-0.011905654333532,-0.022039096802473,2.030745963566e-05],[-0.068741276860237,-0.078379593789577,0.02533888630569]],[[0.0087676011025906,0.0055729490704834,0.0051745707169175],[-0.005111247766763,0.037797190248966,0.02157162129879],[0.0045833210460842,-0.05591544136405,0.045307360589504]],[[-0.029904140159488,-0.026422707363963,0.04203262552619],[0.022314500063658,0.04093411564827,-0.043959725648165],[0.12393738329411,0.023000026121736,-0.084932237863541]],[[0.05494974181056,0.036496270447969,0.065783597528934],[0.023724347352982,0.047140803188086,0.018406599760056],[0.034677263349295,0.081368431448936,0.030601056292653]],[[0.027581941336393,0.016437260434031,0.051948342472315],[0.033332701772451,0.079473651945591,0.067092001438141],[0.029632752761245,-0.0069551514461637,-0.012783480808139]],[[0.040125124156475,0.0042610615491867,-0.013883035629988],[0.01615734398365,-0.013216727413237,-0.028369251638651],[0.030541352927685,-0.044685453176498,-0.016785068437457]],[[-0.009632489643991,0.00056447321549058,-0.016831047832966],[-0.092930614948273,-0.0068564028479159,0.0054062786512077],[0.0053481673821807,0.034454569220543,-0.047446977347136]],[[-4.9583031795919e-05,0.015545401722193,-0.04421541467309],[0.02829379029572,0.073387585580349,0.10843832790852],[0.0091142933815718,0.0026393875014037,0.031916845589876]],[[-0.081010036170483,-0.0023935402277857,-0.0034858039580286],[0.016946446150541,-0.065276123583317,-0.023943556472659],[-0.034372445195913,0.027162190526724,0.017050508409739]],[[-0.025408936664462,0.013156277127564,0.080565020442009],[0.020058456808329,0.043292857706547,0.055405978113413],[-0.13158544898033,0.02070969901979,0.016025569289923]],[[-0.078106038272381,-0.06813545525074,0.010998768731952],[0.024613618850708,0.019662233069539,0.0035264927428216],[0.046202398836613,-0.00031849584775046,0.049403220415115]],[[0.048452295362949,0.014084439724684,-0.015958385542035],[-0.023838823661208,0.015373229980469,0.063907884061337],[0.027775857597589,0.028945159167051,-0.017994010820985]],[[-0.001443573157303,-0.040603443980217,0.035199657082558],[-0.059398710727692,0.013247033581138,-0.016317332163453],[-0.017256973311305,0.086436383426189,0.031635258346796]],[[0.066573560237885,0.05027773603797,0.0080067152157426],[-0.0025423613842577,-0.041858602315187,-0.024812821298838],[-0.026345115154982,0.017461022362113,-0.077030368149281]],[[0.075155392289162,0.036629501730204,0.0666478946805],[0.056252241134644,0.076107278466225,-0.0053000245243311],[-0.029103448614478,-0.028970507904887,0.021937042474747]],[[0.060653146356344,0.039082229137421,-0.0056969430297613],[0.0066472045145929,0.017158132046461,-0.056319821625948],[-0.024865185841918,-0.022919183596969,-0.0072263916954398]],[[-0.044201172888279,-0.010422811843455,0.029612101614475],[0.0098495874553919,0.034877993166447,0.011725188232958],[0.048884071409702,-0.006213394459337,0.019892385229468]],[[-0.0083915768191218,-0.0023833331651986,-0.019215378910303],[0.03548276796937,0.031540539115667,0.014506543055177],[-0.05198809504509,-0.011453588493168,0.014502560719848]],[[0.01158204022795,0.03633550927043,-0.081827782094479],[0.077797658741474,0.12320445477962,-0.042287360876799],[0.041388958692551,0.13491730391979,-0.070330947637558]],[[-0.026016484946012,-0.015796884894371,0.086225904524326],[-0.010166363790631,0.070016495883465,-0.0072348029352725],[0.029276635497808,0.065829381346703,0.064279027283192]],[[0.0035441902000457,0.064878933131695,0.060837876051664],[-0.0096430340781808,0.0093071218580008,-0.079601086676121],[-0.0014893633779138,-0.089688926935196,0.075987823307514]],[[-0.059356447309256,-0.0089440746232867,0.0062563857063651],[-0.012157946825027,-0.023231361061335,-0.034744910895824],[-0.015733091160655,-0.037948451936245,0.0056817480362952]],[[-0.012676374986768,-0.017450237646699,0.0057555758394301],[0.024886339902878,0.0047117713838816,0.021665472537279],[-0.10430186241865,-0.028450660407543,0.019241323694587]],[[0.031398307532072,0.01942284218967,0.0051722507923841],[-0.013048237189651,0.062518678605556,0.047655034810305],[-0.0031142793595791,0.0011625422630459,-0.0013949095737189]],[[-0.00021196763555054,-0.013203070499003,0.017089404165745],[0.01275085285306,0.040700066834688,0.053628098219633],[-0.0050220238044858,-0.051393669098616,-0.009045984596014]],[[0.023438423871994,0.073779597878456,-0.048901058733463],[0.071461588144302,0.0031340699642897,0.0068148290738463],[0.02955013141036,-0.0056240865960717,-0.016280692070723]],[[0.0067605725489557,0.013136008754373,-0.024324590340257],[0.073244124650955,0.028682179749012,0.011673362925649],[0.053623538464308,0.034295450896025,0.028770910575986]],[[-0.0074388012290001,0.032864436507225,0.017115091904998],[0.001594158471562,0.0210399646312,0.012235509231687],[0.016812054440379,0.05481294170022,0.061730735003948]],[[-0.0073608011007309,-0.071556009352207,-0.0070151244290173],[0.01005822326988,-0.0062706111930311,-0.011882519349456],[0.037328161299229,-0.015825649723411,0.0076286443509161]],[[0.025330912321806,-0.026789179071784,0.0006637264159508],[-0.013084742240608,0.012375678867102,0.029613669961691],[-0.04514529556036,-0.019071742892265,0.010218207724392]],[[0.066181048750877,0.024017050862312,-0.0054853744804859],[-0.0017265239730477,-0.045270439237356,0.013521888293326],[0.0090829720720649,0.1035552918911,0.064592361450195]],[[0.027614334598184,0.016240125522017,-0.062805101275444],[-0.037094060331583,-0.027279609814286,0.0079096164554358],[-0.041704013943672,0.11793277412653,0.015655446797609]],[[0.020918047055602,-0.012903328053653,-0.021183742210269],[-0.042109355330467,0.014234589412808,0.01849814131856],[-0.023945493623614,0.023655997589231,0.045587554574013]],[[0.059194173663855,0.023412145674229,-0.041132535785437],[-0.0070836022496223,-0.041050128638744,0.055408671498299],[-0.015499097295105,-0.013902861624956,-0.043664328753948]],[[0.018019121140242,0.034791491925716,-0.01060242857784],[-0.011225056834519,0.046176433563232,0.032691936939955],[0.058114469051361,0.013881065882742,0.010195255279541]],[[0.0068074022419751,-0.010042271576822,-0.061048585921526],[-0.070986732840538,-0.07635260373354,0.0054822028614581],[0.014895662665367,0.054481957107782,0.010372397489846]],[[0.013648757711053,0.017574733123183,0.011846884153783],[0.0096418866887689,0.047117933630943,0.058728147298098],[0.076259844005108,0.0060591725632548,-0.020151346921921]],[[0.14204071462154,-0.078694142401218,0.1059847548604],[0.075119331479073,0.062842674553394,0.0025532022118568],[0.051205229014158,-0.052253779023886,-0.050311777740717]],[[-0.023960331454873,0.021036166697741,0.011945858597755],[0.0090464856475592,-0.018304198980331,0.038991302251816],[0.052392117679119,0.009376073256135,-0.024220690131187]],[[0.020882304757833,-0.070526592433453,0.0018660174682736],[0.064000405371189,0.038654681295156,0.0082436734810472],[0.041389547288418,0.072043403983116,0.043532181531191]],[[0.029124161228538,-0.021278509870172,0.0042611672542989],[0.036554675549269,-0.018152371048927,-0.033548999577761],[-0.023054350167513,0.075379349291325,0.018979886546731]],[[0.035509824752808,-0.036051101982594,0.014782759360969],[-0.009275808930397,0.038221821188927,0.0062120645307004],[-0.046427145600319,-0.059164650738239,0.05732437223196]],[[-0.055066466331482,-0.072813600301743,-0.036549422889948],[0.056471165269613,0.073857270181179,-0.016362927854061],[0.015424353070557,0.03733703866601,0.066103987395763]],[[0.031352747231722,-0.0078504271805286,0.044812805950642],[-0.019086027517915,-0.028251169249415,0.029160665348172],[0.022169597446918,0.032627612352371,0.015028627589345]],[[0.0094680767506361,0.011038933880627,-0.0027662890497595],[0.0070856777019799,0.0060618002898991,0.00075122766429558],[0.020089831203222,0.033045377582312,0.023317005485296]],[[-0.022486999630928,0.057943537831306,0.035860132426023],[0.056013453751802,0.032695896923542,0.010058860294521],[0.030541744083166,-3.8010628486518e-05,-0.027912547811866]],[[0.027527960017323,0.044989809393883,-0.0026914170011878],[0.0052478010766208,0.012457234784961,0.023569425567985],[0.026912327855825,-0.029312985017896,0.0078433379530907]],[[0.04127661511302,0.015458378009498,-0.016735648736358],[0.013799510896206,0.054686110466719,0.0089768636971712],[0.034060426056385,0.003069806843996,-0.025780867785215]],[[0.0057852333411574,0.036409247666597,0.028839619830251],[-0.056225545704365,-0.0022704878356308,0.00096586742438376],[0.01324668712914,0.050742875784636,0.046349540352821]],[[-0.0081778727471828,0.03726651519537,-0.076546721160412],[0.028455954045057,-0.065373726189137,0.04668140783906],[0.061306457966566,0.11141527444124,-0.041098728775978]],[[0.025513436645269,0.0024071156512946,-0.057956136763096],[-0.017728397622705,-0.04163596406579,0.0086724925786257],[-0.0037354102823883,0.0048665087670088,0.036482583731413]],[[0.040899261832237,-0.017533527687192,0.02811879850924],[-0.028466278687119,-0.014632406644523,-0.041959591209888],[0.050485171377659,-0.036294542253017,0.01655925437808]],[[-0.051408879458904,0.023198608309031,-0.017701724544168],[-0.0043118572793901,0.023254249244928,0.014222038909793],[0.06270569562912,0.0012005371972919,0.019494654610753]],[[0.032217383384705,0.027436861768365,0.055214144289494],[0.0081788180395961,-0.0011783614754677,-0.012926077470183],[0.039858561009169,0.046395033597946,0.058859117329121]],[[0.022331161424518,-0.0135741783306,-0.033056683838367],[-0.053991977125406,-0.033158157020807,0.0049065803177655],[0.0050331624224782,0.081776157021523,0.049340955913067]],[[-0.0042615737766027,-0.035375278443098,0.019593976438046],[0.018405394628644,-0.0085321124643087,0.021085334941745],[-0.015293938107789,-0.054172299802303,-0.052559562027454]],[[0.0054064989089966,-0.031539421528578,0.0343605466187],[0.0058118244633079,0.0038794153369963,-0.046835739165545],[0.0010769648943096,-0.038297783583403,0.024767655879259]],[[-0.02112945728004,0.022755835205317,0.049723960459232],[0.015985505655408,0.052549194544554,0.010394972749054],[0.019706750288606,-0.061487957835197,0.0010259172413498]],[[0.044487953186035,0.054365508258343,0.045704632997513],[0.01405671145767,0.0034609951544553,-0.0087648294866085],[-0.0092467088252306,-0.041414834558964,-0.0050972974859178]],[[-0.040253344923258,0.015791650861502,0.013250036165118],[0.0062429518438876,0.00051965593593195,0.058270491659641],[0.049108527600765,0.028009371832013,0.084131762385368]],[[-0.0058188326656818,-0.0096810311079025,0.032005112618208],[-0.040930151939392,-0.054617054760456,-0.005182926543057],[0.019560754299164,0.044016323983669,0.020996976643801]],[[0.063818082213402,-0.018466053530574,-0.0027142481412739],[0.003176715457812,-0.043050192296505,-0.077362023293972],[0.096567720174789,0.047345347702503,0.019207255914807]],[[0.050920583307743,0.029726047068834,0.02278065122664],[0.037505637854338,-0.017346644774079,0.048400908708572],[-0.023478452116251,-0.021222829818726,-0.037341747432947]],[[-0.075822733342648,-0.031541470438242,-0.044204622507095],[0.037487648427486,0.029105583205819,0.061493530869484],[0.018562758341432,0.046391934156418,0.083367429673672]],[[0.13926184177399,0.05250483378768,0.044426668435335],[0.047345269471407,-0.031059216707945,-0.0096121691167355],[0.051967479288578,0.020736739039421,-0.0011069228639826]],[[-0.010114219971001,0.034043550491333,0.0094664981588721],[-0.068474881350994,0.017350804060698,-0.024796839803457],[0.0071606044657528,0.033393949270248,0.06244158372283]],[[-0.0076730651780963,0.007348258048296,0.029751501977444],[0.032372176647186,-0.027582468464971,0.029622433707118],[-0.00077447283547372,0.021040380001068,0.013226610608399]],[[-0.0017417386407033,0.012475149706006,0.016814481467009],[0.024891054257751,0.072307057678699,0.033338282257318],[0.057542033493519,-0.00084371189586818,0.018494894728065]],[[0.10696952790022,-0.011566900648177,-0.0075696557760239],[-0.03043020144105,0.028847612440586,-0.0068889050744474],[-0.054469402879477,-0.0045303883962333,0.025815417990088]],[[-0.046689305454493,0.040439028292894,0.0076484610326588],[0.067265942692757,0.074492387473583,-0.026328245177865],[0.043639529496431,0.027113711461425,-0.0209283772856]],[[0.11602830886841,-0.010203441604972,0.067667700350285],[0.0640634521842,-0.044873401522636,0.00091455108486116],[0.0015738630900159,-0.024015437811613,0.044485244899988]],[[0.062544576823711,-0.04408248141408,-0.042182173579931],[0.0024748858995736,0.019206881523132,0.023915275931358],[-0.011974049732089,0.0095483716577291,0.014999997802079]],[[-0.046586725860834,0.028395192697644,0.078163683414459],[0.027881272137165,-0.041047532111406,-0.11497031152248],[0.011671433225274,-0.030078211799264,0.10577335953712]],[[0.022820388898253,0.023890970274806,-0.030698321759701],[-0.039572779089212,0.023229360580444,-0.067625291645527],[0.046955026686192,0.013070573098958,0.017558803781867]],[[0.014835799112916,0.0012115137651563,0.037361342459917],[-0.02652583271265,0.030756611377001,0.073666900396347],[0.029337828978896,-0.047582224011421,-0.080211691558361]],[[0.0030643988866359,0.00040948350215331,0.010309853591025],[-0.023629810661077,-0.0055476324632764,0.097582936286926],[0.064841710031033,-0.089393630623817,-0.093418300151825]],[[0.008556037209928,-0.036142710596323,0.018726693466306],[0.034277059137821,-0.039198774844408,0.079444415867329],[-0.069707460701466,-0.053920026868582,0.088982492685318]],[[-0.0042917048558593,0.04929906129837,0.01172009203583],[0.054045353084803,-0.030398413538933,-0.044208042323589],[-0.0067223641090095,0.041535884141922,-0.015125694684684]],[[0.0083947042003274,0.025674268603325,0.04611699283123],[0.00016823882469907,0.039590798318386,0.0091348923742771],[0.043129272758961,-0.069161027669907,-0.013301651924849]],[[0.0037529007531703,0.031751703470945,0.011015221476555],[0.0071506169624627,0.013070559129119,0.046145863831043],[-0.041623413562775,0.037285167723894,-0.0059810103848577]],[[0.048155080527067,0.030102012678981,0.017867062240839],[-0.0068790246732533,0.010509504005313,-0.012026067823172],[-0.030015718191862,-0.03275628015399,0.027573162689805]],[[-0.052469212561846,-0.03260912001133,-0.06397508084774],[-0.016540026292205,0.017260156571865,0.013494892045856],[0.078079462051392,0.091484554111958,-0.022886058315635]],[[0.009355466812849,0.0049623348750174,-0.014305481687188],[0.053547952324152,-0.076574623584747,-0.019428566098213],[0.025642968714237,-0.022514440119267,-0.030940851196647]],[[0.015913868322968,-0.023624490946531,-0.008347156457603],[-0.065120413899422,0.0097819222137332,-0.041565652936697],[-0.0039742798544466,0.052472181618214,0.016499636694789]],[[0.057002048939466,0.0030086315236986,-0.036949504166842],[0.024958008900285,0.092558108270168,0.045435640960932],[0.047498904168606,-0.021394286304712,0.011772148311138]],[[0.069321371614933,-0.021689442917705,0.068288460373878],[-0.011421374045312,-0.0061484458856285,-0.032859202474356],[-0.072600305080414,0.085194922983646,0.051047593355179]],[[0.010571893304586,0.023982360959053,-0.0039615887217224],[-0.053709954023361,0.02202320843935,0.0018487786874175],[-0.10841883718967,-0.036060404032469,-0.016385655850172]],[[0.014777745120227,-0.043309032917023,0.0016114464960992],[-0.061599530279636,0.072077348828316,0.014638791792095],[-0.059251859784126,0.087896212935448,0.017065722495317]],[[-0.026169681921601,0.099750675261021,-0.011173511855304],[0.058565206825733,0.00062458880711347,0.064834579825401],[-0.062392976135015,-0.008838040754199,0.049699448049068]],[[0.016085553914309,-0.067993126809597,0.030920820310712],[0.0359226167202,-0.064737886190414,0.017431588843465],[0.014670196920633,0.075061157345772,0.0067435037344694]],[[0.0091156484559178,-0.022806296125054,0.019931906834245],[-0.052621059119701,-0.089011982083321,0.0016247007297352],[-0.010220783762634,0.018047472462058,0.038989320397377]],[[0.029372934252024,-0.0055611357092857,-0.024875730276108],[0.016438977792859,-0.050013191998005,0.018963465467095],[0.061644244939089,0.011488074436784,0.091319605708122]],[[0.010185103863478,0.01322971098125,0.1078760176897],[0.025321554392576,-0.06143943965435,-0.038952488452196],[-0.050479184836149,-0.022454582154751,-0.16199301183224]],[[0.026424199342728,-0.034265749156475,0.030963892117143],[-0.042700588703156,-0.055922612547874,0.068189233541489],[-0.030880060046911,0.016123689711094,0.1064422801137]],[[-0.025875750929117,0.00030125686316751,0.030413795262575],[-0.016897112131119,-0.037790309637785,0.00446124561131],[-0.012566084042192,-0.025626264512539,0.01888082921505]],[[-0.0064965444616973,0.039234712719917,-0.028418989852071],[-0.039439518004656,-0.0022969394922256,0.033832438290119],[0.03859993442893,0.013736451044679,-0.01542838383466]],[[-0.020055696368217,0.031686156988144,0.0085387155413628],[0.013931428082287,-0.013428687117994,0.01324662938714],[-0.026526533067226,-0.081332758069038,-0.0031586911063641]],[[0.01261459197849,-0.088501751422882,-0.046513512730598],[-0.050254017114639,-0.005896074231714,0.10236345976591],[-0.056533060967922,-0.015589855611324,-0.012468478642404]],[[-0.029449546709657,0.046712823212147,0.054298892617226],[-0.1257299631834,0.0069403517991304,0.047407072037458],[0.014335684478283,0.013408130034804,0.060937229543924]],[[-0.0068510263226926,0.0020512875635177,-0.0027568743098527],[0.0086014326661825,-0.0055636516772211,-0.030469376593828],[-0.050345331430435,-0.060793347656727,-0.040722962468863]],[[0.0024674327578396,0.0052357148379087,0.018736770376563],[-0.020816694945097,-0.01864524371922,-0.0025880108587444],[0.0048602363094687,-0.00010323100286769,-0.019497400149703]],[[0.056731328368187,-0.019342828541994,-0.0019889965187758],[-0.034352075308561,-0.0057848626747727,0.038842063397169],[0.024670464918017,-0.0060256286524236,0.013416537083685]],[[-0.061627149581909,-0.015975970774889,-0.0050836405716836],[0.05935862287879,0.028044391423464,-0.033465124666691],[0.016020363196731,0.03443543612957,0.036819983273745]],[[-0.024529118090868,-0.10081083327532,0.011364581994712],[0.0061070444062352,0.0098960660398006,-0.016375914216042],[0.024125693365932,0.024931473657489,0.073191337287426]],[[0.040907453745604,0.059349827468395,0.038112476468086],[0.0094570396468043,0.052941609174013,0.051732853055],[-0.019294328987598,0.001109428354539,0.019375128671527]],[[-0.015825817361474,0.03673767670989,0.019869161769748],[0.011594506911933,-0.094554089009762,0.0029582707211375],[-0.0082898456603289,0.069455735385418,-0.0070738815702498]],[[0.01361674349755,0.092281445860863,0.061467602849007],[0.0058279898948967,-0.007916240952909,0.03572303801775],[-0.0645991563797,-0.023900838568807,0.003611555788666]],[[-0.0094133624807,0.028918223455548,-0.0072067240253091],[0.035771422088146,-0.0096733709797263,-0.018961954861879],[0.0077521521598101,-0.027024209499359,-0.020234473049641]],[[-0.02131836488843,0.049063052982092,-0.018574427813292],[-0.046957708895206,-0.035792853683233,0.01025455724448],[0.040216606110334,-0.017396952956915,0.01241809502244]],[[-0.027671812102199,0.076831430196762,0.0057090912014246],[0.023832302540541,-0.029678964987397,-0.0067133828997612],[-0.010263986885548,0.018062759190798,0.02962832339108]],[[-0.015704741701484,0.032335203140974,0.018724812194705],[0.019772455096245,0.008125314489007,0.010588454082608],[0.010552135296166,0.017010541632771,0.018637858331203]],[[0.11273343116045,0.1022167429328,0.07359354943037],[0.0041815200820565,-0.019259681925178,-0.006876943167299],[-0.060056746006012,-0.083460472524166,0.043457590043545]],[[0.035894848406315,-0.040455278009176,0.019268371164799],[0.096611350774765,-0.065130673348904,0.01008856203407],[-0.052673183381557,0.0063107809983194,-0.054176889359951]],[[-0.0080113196745515,-0.03332494571805,0.065882384777069],[-0.054309628903866,0.047930918633938,0.016172027215362],[0.0074553638696671,-0.021808248013258,0.028061978518963]]],[[[-0.15670122206211,0.030900150537491,-0.040337152779102],[0.2441094070673,-0.048549059778452,0.0076766032725573],[0.044894058257341,-0.028132883831859,0.03414536267519]],[[-0.019145160913467,-0.031499560922384,-0.013712678104639],[-0.0054576154798269,0.0026910435408354,0.030222432687879],[-0.0065915384329855,0.098198689520359,0.066454872488976]],[[0.020856672897935,0.063238456845284,0.057829778641462],[-0.015139286406338,-0.033796515315771,0.039235003292561],[-0.0022473714780062,-0.054864335805178,0.074300155043602]],[[-0.05498206987977,-0.016899732872844,0.085465803742409],[0.0002675311116036,0.04061446338892,0.07129131257534],[0.10748674720526,0.011656359769404,-0.051866345107555]],[[0.014199246652424,0.030235858634114,-0.0025198983494192],[-0.050845213234425,0.016726525500417,-0.017158607020974],[-0.0026631425134838,-0.0095113012939692,-0.0029606493189931]],[[0.081204630434513,0.054048966616392,-0.015228981152177],[0.033135179430246,0.076504811644554,-0.02034823782742],[0.03210249915719,0.08504793047905,0.09332612156868]],[[-0.029607467353344,-0.017887575551867,-0.083277672529221],[-0.018944362178445,0.0072304722853005,0.14741645753384],[0.0087314806878567,0.0099991578608751,0.040064681321383]],[[0.0022160215303302,-0.021132487803698,0.040962606668472],[-0.02823487855494,0.080419078469276,0.037750512361526],[0.039511043578386,-0.041656233370304,0.0061231134459376]],[[0.018260899931192,-0.10301608592272,-0.023560181260109],[-0.078421249985695,0.017001707106829,0.071624472737312],[-0.041013792157173,0.022848406806588,-0.039389986544847]],[[0.12612390518188,0.014756040647626,-0.068379200994968],[-0.018607186153531,0.013292054645717,0.16123706102371],[-0.024058934301138,0.15928703546524,-0.017841504886746]],[[-0.017487701028585,0.0630062520504,0.096373900771141],[0.064918391406536,-0.046687878668308,0.10321944952011],[0.11985825747252,0.038362752646208,0.041358269751072]],[[0.071199640631676,0.017844140529633,0.036361217498779],[-0.093260675668716,0.0071940869092941,0.055536206811666],[-0.098117403686047,0.14945732057095,0.062230508774519]],[[0.020900251343846,-0.023098785430193,0.026894913986325],[-0.0068991673178971,-0.0098383380100131,-0.061241321265697],[-0.012912602163851,-0.019485037773848,-0.0041615078225732]],[[0.027254987508059,0.043620951473713,0.050590414553881],[-0.040247399359941,-0.05017389729619,0.057961784303188],[0.056783657521009,-0.06212405115366,0.025235049426556]],[[0.10671991109848,0.022562203928828,0.12939301133156],[0.081973724067211,-0.04471181333065,0.014123455621302],[0.15584455430508,0.01396937482059,0.07207678258419]],[[0.01673417724669,-0.043245736509562,-0.047093905508518],[0.10089013725519,0.040748510509729,-0.030486989766359],[-0.031218782067299,-0.047421846538782,-0.073985122144222]],[[0.010958498343825,0.065961606800556,0.020180765539408],[0.028326142579317,0.0062078167684376,0.046636771410704],[0.11058285087347,0.040134705603123,-0.062582522630692]],[[0.037869825959206,-0.042929239571095,0.042091093957424],[0.051337461918592,0.020160162821412,-0.04200454428792],[-0.015668177977204,-5.3483963711187e-05,0.12580332159996]],[[0.033780355006456,0.025631034746766,0.00046102370833978],[-0.022190015763044,-0.041515957564116,0.089987590909004],[0.076286725699902,-0.018701693043113,-0.039366833865643]],[[-0.10857792198658,-0.13375899195671,-0.082549937069416],[-0.037585459649563,-0.03742902353406,0.064296685159206],[0.028449013829231,-0.081413969397545,0.014887610450387]],[[-0.011258265934885,0.0361642614007,0.0029893084429204],[-0.039149880409241,-0.1249166727066,-0.011286754161119],[-0.0075024468824267,0.12394178658724,-0.097146973013878]],[[-0.033958472311497,0.062800399959087,-0.051134470850229],[0.062971368432045,0.010852894745767,-0.0043211877346039],[0.12956246733665,0.032991636544466,0.0015233568847179]],[[0.0029650225769728,0.025877503678203,0.054210476577282],[0.025381222367287,-0.017562502995133,0.082612290978432],[0.020046457648277,0.17224285006523,-0.085671916604042]],[[0.028966140002012,0.057481650263071,0.13569484651089],[-0.07697706669569,0.060595773160458,0.071534067392349],[-0.014806448481977,0.093051917850971,-0.033124461770058]],[[0.0053486949764192,-0.039249684661627,0.029579374939203],[0.021874090656638,-0.081948220729828,-0.039630863815546],[-0.014990071766078,0.045734774321318,0.11238681524992]],[[0.0094099389389157,-0.047201309353113,-0.010726731270552],[-0.0042614014819264,-0.038040049374104,-0.0033408869057894],[0.015273675322533,0.067030541598797,-0.086670748889446]],[[0.017220882698894,0.095288783311844,-0.057831656187773],[0.057628933340311,0.022265896201134,-0.032397285103798],[0.011246290057898,-0.027851287275553,-0.052473641932011]],[[-0.054702524095774,-0.003785943146795,-0.031746692955494],[0.0088699227198958,0.068934768438339,0.081782586872578],[0.038023121654987,0.053349237889051,-0.059111472219229]],[[0.035895437002182,-0.091710403561592,0.0079995542764664],[0.043632481247187,-0.063069052994251,0.10507044196129],[0.08989092707634,0.013096396811306,0.085438840091228]],[[0.012166623026133,-0.061929002404213,-0.043248623609543],[0.05865416675806,0.027156138792634,-0.056429106742144],[0.048145990818739,-0.015777049586177,-0.0038220346905291]],[[-0.0052257599309087,0.0067399106919765,-0.025196287781],[-0.0083038071170449,-0.079549543559551,0.061430189758539],[-0.058848336338997,0.02429960668087,-0.03531090170145]],[[-0.096974521875381,-0.027642322704196,-0.082416117191315],[-0.095204427838326,-0.15975618362427,0.0014309185789898],[0.029798986390233,-0.013530502095819,-0.015870712697506]],[[0.14316914975643,-0.050972998142242,-0.036945220082998],[-0.037275783717632,0.020021511241794,0.069848977029324],[0.092320770025253,0.026395753026009,-0.0104860374704]],[[-0.049622900784016,0.023817837238312,-0.0065015968866646],[-0.025363467633724,0.033810313791037,-0.09166032075882],[-0.041136592626572,-0.02741333283484,-0.017056671902537]],[[0.01511687412858,-0.075112998485565,0.05557169392705],[-0.06681140512228,-0.013601461425424,-0.015555965714157],[0.087488584220409,-0.080965772271156,0.099360428750515]],[[0.060275457799435,-0.015119900926948,-0.079446688294411],[-0.02366591989994,0.035396583378315,-0.017395187169313],[-0.043998699635267,0.023498363792896,0.0070986300706863]],[[0.0075938515365124,0.072670690715313,0.026065073907375],[0.067831754684448,-0.064620420336723,-0.01386580709368],[-0.076275520026684,-0.022321572527289,-0.022497808560729]],[[0.022764666005969,-0.038480944931507,0.03797435760498],[-0.051605280488729,-0.0038848316762596,0.0046854084357619],[-0.026518039405346,0.067155472934246,0.0011531955096871]],[[0.0033447644673288,-0.021461095660925,0.022248422726989],[0.032931886613369,0.026191869750619,-0.061999130994081],[0.032917212694883,-0.013613002374768,-0.020725326612592]],[[-0.037906523793936,0.025843542069197,-0.048705734312534],[-0.066044844686985,-0.017566904425621,0.0036504250019789],[0.09812655299902,-0.030373157933354,-0.016656715422869]],[[0.039112303406,-0.00020997795218136,-0.046688448637724],[-0.026335410773754,-0.053363714367151,0.039132926613092],[0.018607623875141,0.025192610919476,0.016288466751575]],[[0.030132681131363,-0.015357963740826,0.060811717063189],[-0.00082081754226238,0.013233495876193,0.0074024223722517],[-0.020739488303661,-0.040171716362238,-0.045739341527224]],[[0.017935872077942,0.10821849107742,0.061822444200516],[0.037654131650925,0.12110725045204,-0.096151128411293],[0.0014027467695996,0.01800468377769,0.1477120667696]],[[0.016714690253139,-0.036250688135624,-0.027442030608654],[-0.094959668815136,0.036753106862307,-0.022955946624279],[0.086500309407711,0.054277043789625,0.035577923059464]],[[0.18376345932484,-0.0031087207607925,0.014855920337141],[0.067369595170021,0.070137165486813,0.013303061015904],[-0.013767003081739,0.049921948462725,-0.04975538700819]],[[-0.098019503057003,0.014523860067129,-0.06625721603632],[0.070838272571564,-0.011280212551355,0.0014809449203312],[0.11657439917326,0.099792703986168,0.018602058291435]],[[-0.045553762465715,0.092021681368351,0.071384392678738],[0.04725294187665,0.039995580911636,0.017485108226538],[0.091642044484615,-0.03237172961235,-0.0018677066545933]],[[0.074715435504913,-0.0185103751719,-0.0744499117136],[0.022259237244725,0.014145421795547,0.053878575563431],[-0.034773696213961,0.023895202204585,-0.089185878634453]],[[-0.09563722461462,0.024886678904295,0.0098921293392777],[-0.047402009367943,0.023075250908732,-0.035114899277687],[-0.05136639252305,0.036056559532881,0.023287773132324]],[[-0.020470380783081,0.080754183232784,-0.054049398750067],[0.083388015627861,-0.038425765931606,0.078470334410667],[0.027754195034504,0.036933954805136,0.035205844789743]],[[0.014870300889015,-0.0025508292019367,-0.015637751668692],[0.041466146707535,0.075171679258347,0.077523663640022],[0.058452654629946,0.054622564464808,0.094281293451786]],[[0.01172265317291,-0.0019043681677431,0.030052913352847],[-0.050912819802761,0.096474416553974,0.12759664654732],[-0.061851676553488,-0.086469009518623,-0.012304077856243]],[[-0.044414184987545,0.012354227714241,-0.026400480419397],[-0.04146346077323,-0.090071775019169,-0.046862527728081],[0.046819757670164,0.023049419745803,-0.021593427285552]],[[0.0047937063500285,-0.013556856662035,-0.0029400223866105],[0.067760549485683,-0.013324841856956,-0.016086295247078],[-0.055626586079597,-0.01917508803308,0.062656007707119]],[[0.097903288900852,0.077029854059219,-0.076202429831028],[-0.032835397869349,0.011404440738261,-0.0026083658449352],[0.023966658860445,0.024737568572164,0.017143957316875]],[[-0.064274877309799,0.020023442804813,-0.022552955895662],[0.018843868747354,-0.011115199886262,-0.010699733160436],[-0.014964397065341,0.018127638846636,-0.031373292207718]],[[-0.086401380598545,-0.080321185290813,6.8667330197059e-05],[0.0037351627834141,0.068193219602108,-0.0089009162038565],[0.037854790687561,0.035114634782076,0.10196436941624]],[[0.0009395987726748,-0.022040735930204,0.011247732676566],[0.035508789122105,-0.11552010476589,-0.006285591982305],[0.074518874287605,-0.024185737594962,-0.038730643689632]],[[0.023923074826598,-0.019190784543753,0.003658051835373],[0.021468982100487,0.028373198583722,-0.053934745490551],[0.049110744148493,0.0086125489324331,0.025478383526206]],[[-0.040602222084999,-0.0031653309706599,0.012388065457344],[-0.018655421212316,-0.027377299964428,0.0025897265877575],[-0.012860557064414,0.0085282810032368,-0.049539133906364]],[[-0.021348290145397,0.0024049156345427,0.073744095861912],[0.091172955930233,-0.0018020776333287,0.059198249131441],[-0.0034689302556217,0.034658178687096,-0.03366082906723]],[[-0.0077366032637656,-0.041856557130814,0.103146918118],[0.003521678969264,-0.025733176618814,-0.017193773761392],[0.003199613885954,-0.10771146416664,0.011502075009048]],[[0.039735741913319,-0.010270729660988,0.034659177064896],[0.02800091356039,0.01127156894654,0.00327511690557],[-0.05129086971283,-0.0078070661984384,-0.081358887255192]],[[0.15933620929718,-0.18277804553509,0.071483582258224],[0.025737587362528,0.017374824732542,-0.045860964804888],[0.020219977945089,0.22254271805286,-0.017118902876973]],[[0.0131577514112,-0.0056936494074762,-0.029530238360167],[0.090151742100716,0.10979673266411,0.063142076134682],[0.063316695392132,-0.044762574136257,0.085841335356236]],[[0.013742760755122,0.075196601450443,-0.014798986725509],[-0.010707300156355,-0.03403889760375,-0.013659975491464],[0.0014786346582696,0.019154595211148,0.0062684090808034]],[[-0.018648225814104,-0.035321097820997,0.027929456904531],[0.039397213608027,0.021683435887098,-0.0091548711061478],[0.034430410712957,0.052949596196413,0.057140462100506]],[[0.074333712458611,-0.0050271977670491,-0.045135293155909],[0.010843861848116,-0.10297072678804,0.024669343605638],[0.060265928506851,0.085649944841862,0.0050543136894703]],[[0.076668873429298,0.024518065154552,-0.12229866534472],[0.022396793588996,0.037491302937269,0.013879280537367],[0.027294700965285,-0.040850467979908,0.051000311970711]],[[0.051373332738876,0.028934791684151,-0.054516084492207],[-0.0073045608587563,-0.039515670388937,-0.02110999263823],[-0.047401025891304,0.057118773460388,-0.029504798352718]],[[-0.015475302934647,0.022257560864091,-0.06479999423027],[0.09562236815691,0.02489759773016,-0.044308342039585],[0.050683286041021,-0.012828559614718,0.063989326357841]],[[-0.04297785833478,0.076970085501671,0.11313956230879],[0.016718879342079,-0.053214590996504,0.048284482210875],[0.13252872228622,0.097065217792988,-0.094839796423912]],[[-0.0085264109075069,0.025251155719161,-0.0048625217750669],[0.093038015067577,0.030594209209085,-0.049375265836716],[0.0032208589836955,0.11717005819082,0.040601186454296]],[[0.03039313107729,0.00034222978865728,-0.034549739211798],[-0.085865698754787,-0.011761922389269,-0.009622860699892],[0.088186018168926,-0.015655968338251,-0.0057919304817915]],[[-0.003539405297488,0.0013880335027352,0.0048970049247146],[0.072081357240677,-0.0065105576068163,-0.017128869891167],[-0.021345453336835,-0.027757817879319,-0.11575552821159]],[[0.04905304312706,0.037289526313543,0.084232039749622],[-0.032398723065853,-0.03204383701086,-0.016682475805283],[0.035400547087193,0.079804725944996,-0.0074955867603421]],[[-0.050311800092459,-0.070773892104626,0.10324354469776],[0.014673097990453,-0.029916051775217,-0.037061017006636],[0.12222448736429,-0.0089458264410496,-0.029136894270778]],[[-0.01876942999661,-0.052174903452396,-0.015989007428288],[-0.00084723747568205,-0.058983374387026,-0.087966024875641],[0.052270941436291,0.015355656854808,-0.040920194238424]],[[-0.023825529962778,0.010470485314727,0.014588422141969],[0.099003903567791,0.0645497366786,0.0015699330251664],[0.0081030931323767,-0.0048297098837793,0.008356612175703]],[[0.028475724160671,0.076295897364616,-0.062575735151768],[-1.7254111298826e-05,-0.0043239509686828,0.052099481225014],[-0.063316561281681,0.015568928793073,-0.026863755658269]],[[-0.019124491140246,0.057296562939882,-0.037805996835232],[0.050243001431227,0.0023293578997254,-0.0046618483029306],[0.057984221726656,-0.00082358455983922,-0.051107484847307]],[[-0.10726244002581,0.030640378594398,0.0016026885714382],[0.0082862367853522,0.024906514212489,-0.019153302535415],[-0.038708359003067,-0.045007318258286,0.057741541415453]],[[0.033159300684929,-0.11469749361277,-0.041866570711136],[-0.060387261211872,0.044536832720041,0.043314479291439],[-0.0082117523998022,-0.11785808205605,-0.019744476303458]],[[-0.02846959605813,0.046481244266033,0.016877936199307],[-0.081485614180565,0.021380890160799,0.0074771479703486],[0.012140138074756,-0.057829666882753,-0.094640672206879]],[[0.075739167630672,0.075510777533054,0.034746468067169],[-0.0074845869094133,-0.027277382090688,0.020285148173571],[-0.016869256272912,0.02292238175869,-0.051966942846775]],[[-0.10064206272364,-0.062082719057798,-0.073863446712494],[-0.042654670774937,-0.043548848479986,-0.016447735950351],[-0.067470699548721,-0.030321694910526,-0.00955771189183]],[[-0.096127942204475,-0.013119761832058,-0.069074340164661],[-4.2779000068549e-05,-0.065301053225994,-0.070182748138905],[-0.00075630709761754,0.009889543056488,-0.045183274894953]],[[0.0054857726208866,0.047085482627153,0.040439888834953],[-0.053210224956274,-0.01635118573904,-0.024706980213523],[0.050195448100567,0.0053193685598671,-0.057300187647343]],[[-0.045778065919876,-0.041047133505344,0.011894439347088],[0.1172261312604,-0.020438808947802,0.022013586014509],[-0.067055456340313,0.057488810271025,0.049514759331942]],[[0.01758786290884,-0.099873594939709,0.0061649163253605],[0.0021542839240283,-0.013533997349441,0.12823466956615],[0.031120229512453,-0.0030433761421591,-0.0338493026793]],[[0.088840886950493,0.049197442829609,0.071888297796249],[0.003360593225807,-0.042119618505239,0.11274366080761],[-0.099658288061619,0.10614682734013,-0.010581352747977]],[[-0.089962251484394,0.021870318800211,-0.01133028883487],[-0.023637840524316,0.1472677141428,0.072739735245705],[-0.042520321905613,0.055899403989315,-0.067071713507175]],[[0.039729993790388,-0.043753523379564,-0.048230558633804],[-0.0042704748921096,-0.015636790543795,0.036671776324511],[0.10682582855225,-0.060807958245277,0.050535403192043]],[[0.052317481487989,0.049910828471184,0.042643394321203],[0.023025592789054,0.0066765937954187,0.10925459116697],[0.045611634850502,-0.04396853223443,0.0040765195153654]],[[0.028709651902318,0.094163045287132,0.022493958473206],[-0.040895044803619,-0.017822971567512,0.024474298581481],[0.011372819542885,-0.053063590079546,-0.059171959757805]],[[0.051372103393078,0.016601195558906,-0.064192906022072],[0.01078743301332,0.031888086348772,0.05877248570323],[0.056155171245337,0.086858607828617,-0.08934973180294]],[[0.034341730177402,0.22283612191677,0.062107812613249],[-0.0051131802611053,0.065294206142426,-0.048839412629604],[-0.098662100732327,0.089435823261738,0.046297993510962]],[[-0.010103880427778,-0.020835509523749,0.071737006306648],[0.03938377276063,0.0057634292170405,0.0036405886057764],[0.082476437091827,0.04324784129858,-0.02952378988266]],[[-0.020623246207833,-0.0015043605817482,-0.025259546935558],[0.048465773463249,0.00065767753403634,0.098352164030075],[0.044816054403782,-0.065819330513477,0.050342723727226]],[[0.0037227878347039,0.045179665088654,-0.048994854092598],[0.016270285472274,-0.00155950919725,0.053718402981758],[0.038028348237276,-0.056142397224903,-0.0034858672879636]],[[0.075400166213512,0.040345571935177,0.084039054811001],[0.049495350569487,-0.099587269127369,-0.011685943230987],[-0.030507002025843,-0.030863806605339,0.10956632345915]],[[-0.031585611402988,0.017813466489315,-0.013552037999034],[-0.083750218153,0.10422721505165,-0.10107319056988],[0.0013509913114831,0.073454290628433,-0.064836949110031]],[[0.063263781368732,-0.029647989198565,-0.044041518121958],[0.036040060222149,0.03828240185976,0.061684880405664],[0.021027905866504,0.0023024897091091,0.057291701436043]],[[0.11338762938976,-0.07740656286478,0.0024986693169922],[-0.046964589506388,-0.07401467114687,-0.022502914071083],[-0.0068460893817246,0.076645269989967,-0.051495783030987]],[[0.057382851839066,0.04646398127079,-0.033968351781368],[0.072172060608864,-0.088724330067635,-0.011111847124994],[0.048719521611929,-0.036061588674784,0.019250735640526]],[[0.0014934111386538,0.053807023912668,0.091483741998672],[0.020796034485102,0.095763951539993,-0.038782250136137],[0.032664928585291,0.13119134306908,0.063952699303627]],[[-0.051533654332161,0.020024420693517,-0.031587287783623],[0.064849026501179,-0.015423014760017,0.011613426730037],[0.078063562512398,0.0095290588214993,0.084435500204563]],[[0.10679729282856,-0.053622670471668,0.04829853028059],[0.034423377364874,0.030437430366874,-0.01746428757906],[0.018203534185886,0.049575868993998,-0.093296773731709]],[[0.074756748974323,0.10095182061195,-0.073559425771236],[-0.010142005980015,-0.053474061191082,0.088677100837231],[0.060540456324816,-0.051709350198507,0.016464129090309]],[[-0.012321350164711,0.0090735321864486,0.036853201687336],[-0.05230125784874,0.011503492482007,0.063932113349438],[0.032180711627007,-0.060363989323378,0.038763020187616]],[[-0.071275256574154,-0.11731514334679,0.016787227243185],[0.0033921613357961,0.036322217434645,0.0099216559901834],[0.027099125087261,0.0062230681069195,0.017000770196319]],[[-0.082298293709755,-0.11261891573668,-0.016958741471171],[-0.066671408712864,-0.060516331344843,-0.037084814161062],[0.012010123580694,0.0018810880137607,-0.014738152734935]],[[0.015227388590574,-0.062049187719822,-0.096420027315617],[-0.012563774362206,0.0011573983356357,0.081170037388802],[0.10308668762445,0.025934882462025,-0.063288800418377]],[[-0.0062350872904062,0.0029804897494614,-0.045387834310532],[0.025349348783493,-0.0033155872952193,0.016138462349772],[-0.07209425419569,-0.074512399733067,-0.035063471645117]],[[-0.088254161179066,0.08235315233469,0.10202302783728],[0.086119785904884,0.008710409514606,-0.052560307085514],[0.033279918134212,0.081988461315632,0.033587455749512]],[[-0.061500869691372,0.14128719270229,-0.042353615164757],[0.065659642219543,0.0091605102643371,-0.0089770834892988],[0.030190883204341,-0.048201009631157,0.037198271602392]],[[-0.093016602098942,-0.049893956631422,-0.031650077551603],[0.07612968981266,0.0048087118193507,-0.059112887829542],[0.027084849774837,-0.030931640416384,-0.025603966787457]],[[0.028238642960787,-0.038451757282019,-0.064316131174564],[-0.091127544641495,0.09242207556963,-0.0027321416418999],[0.071577668190002,-0.023904319852591,-0.016340604051948]],[[-0.036358825862408,-0.024882996454835,0.10386341810226],[0.015803918242455,-0.031619716435671,0.053385648876429],[0.061090495437384,-0.087943971157074,0.0424824655056]],[[-0.030826093629003,-0.05309797078371,-0.028304262086749],[-0.0010361655149609,-0.1136077567935,0.0078092385083437],[-0.018681446090341,-0.039650943130255,0.053558468818665]],[[0.068700313568115,-0.054033447057009,-0.10110557079315],[-0.023303115740418,-0.069813601672649,-0.0045131808146834],[0.01438628602773,0.071756131947041,0.027274923399091]],[[-0.026529535651207,0.045646987855434,0.0067899939604104],[0.014542933553457,0.048792455345392,-0.073889948427677],[0.020475603640079,0.034342933446169,-0.012930106371641]],[[-0.013935239054263,0.021171486005187,-0.049404092133045],[-0.033875335007906,-0.053017482161522,-0.00036221172194928],[-0.000739541137591,-0.0074933469295502,0.064726941287518]],[[0.15533256530762,-0.039491914212704,-0.063414923846722],[0.0069342097267509,0.028797218576074,-0.066104710102081],[0.095252469182014,-0.028494972735643,0.02557579614222]],[[-0.031289543956518,0.095313869416714,-0.044826056808233],[0.091975957155228,-0.024249378591776,0.016240870580077],[0.02221992239356,0.074016138911247,-0.022005498409271]],[[0.084597259759903,-0.067145049571991,0.024924144148827],[0.035327404737473,-0.050859153270721,-0.037704847753048],[0.041178122162819,-0.012832257896662,0.066675059497356]],[[-0.0035265565384179,0.038386482745409,0.027230773121119],[-0.045566659420729,-0.029700698330998,0.054253857582808],[-0.0033246893435717,0.045175988227129,-0.14810630679131]],[[-0.015313455834985,0.015016719698906,-0.041152141988277],[0.08811666816473,-0.00011838844511658,-0.017458517104387],[-0.0027407680172473,-0.065598301589489,0.016906656324863]]],[[[0.0015435731038451,-0.059398617595434,0.00059618928935379],[-0.06894875317812,0.0090990383177996,0.054797112941742],[0.039796587079763,-0.0088471882045269,0.021186353638768]],[[-0.033087059855461,-0.085669964551926,0.080463476479053],[0.026037398725748,-0.0040475963614881,-0.00449059298262],[-0.060137551277876,-0.061676520854235,0.0070179095491767]],[[-0.025899831205606,-0.058112323284149,-0.011845467612147],[-0.035861730575562,-0.0082377260550857,-0.017220944166183],[0.0510498508811,-0.058848645538092,0.06063649430871]],[[0.15103100240231,-0.047414157539606,0.047022968530655],[0.056061491370201,0.073527343571186,0.08870530128479],[0.052313063293695,0.026642683893442,-0.1032555103302]],[[-0.0090812081471086,-0.00032814082805999,-0.081846080720425],[0.042041629552841,0.020595390349627,0.11088410764933],[0.058647207915783,0.038021165877581,-0.038097381591797]],[[0.0033185735810548,0.047981917858124,0.050663214176893],[-0.041991848498583,-0.034017331898212,-0.00051462347619236],[0.076335661113262,-0.076140038669109,-0.0071329916827381]],[[-0.01185461692512,-0.012928598560393,-0.0059281857684255],[-0.078757755458355,-0.06473545730114,-0.012383668683469],[0.0017825770191848,-0.013217932544649,-0.049126841127872]],[[0.015332226641476,0.023650055751204,-0.034377843141556],[-0.042841024696827,-0.088832244277,0.067744493484497],[0.051813039928675,0.058508340269327,0.11323451250792]],[[-0.027067488059402,0.087334260344505,0.065999656915665],[0.089062087237835,-0.058289535343647,-0.034962512552738],[0.081806905567646,0.095704972743988,-0.042939379811287]],[[0.011805660091341,0.084066592156887,0.10006127506495],[0.15630081295967,0.18512113392353,0.083675235509872],[0.030275898054242,0.024673890322447,-0.067043490707874]],[[0.027462549507618,0.012769411318004,0.00069189089117572],[0.022964352741838,0.09577152878046,0.082020848989487],[-0.029327511787415,-0.045233409851789,0.0023491634055972]],[[0.032202273607254,0.0082371355965734,-0.017472557723522],[0.014718080870807,-0.038489263504744,0.0754733979702],[0.061634659767151,0.012175383046269,-0.057401057332754]],[[0.043379817157984,0.017392171546817,-0.01061721239239],[0.0032612045761198,-0.020558182150126,-0.0018942471360788],[-0.026763955131173,0.027141816914082,-0.043034009635448]],[[0.019173024222255,0.096994213759899,-0.001320147071965],[0.018472133204341,0.075928822159767,-0.0096902642399073],[-0.081527873873711,0.044619996100664,0.025090524926782]],[[0.016320839524269,0.042058922350407,-0.055772069841623],[0.068371333181858,0.073300406336784,0.080021739006042],[0.067924559116364,0.097472563385963,0.052780915051699]],[[-0.072529844939709,0.0022137982305139,0.055817760527134],[-0.10925275087357,-0.095806911587715,-0.069178715348244],[-0.055431790649891,-0.059778612107038,-0.083483628928661]],[[0.061462193727493,0.09934863448143,0.0061957682482898],[-0.02736509218812,-0.039868637919426,0.14077280461788],[0.032012373209,0.037667896598577,0.0032318744342774]],[[0.0092709688469768,0.022021261975169,0.017937624827027],[-0.0082487054169178,-0.038434211164713,0.078513599932194],[0.019916882738471,-0.021991260349751,0.082234792411327]],[[0.067849479615688,-0.074941739439964,0.012131819501519],[0.0073729502037168,0.018560297787189,-0.046282254159451],[0.014390480704606,0.048886608332396,0.024712001904845]],[[-0.011138549074531,0.097710534930229,0.10932984948158],[0.030594177544117,-0.013750057667494,0.022860553115606],[0.10094965994358,0.078580766916275,0.0037332933861762]],[[-0.022209050133824,-0.0812973305583,0.099281035363674],[-0.0078016459010541,0.023889107629657,-0.0309176184237],[0.030593222007155,-0.10460351407528,0.0165472086519]],[[0.075471766293049,0.038399621844292,0.083302669227123],[0.052843410521746,0.078901097178459,0.071830213069916],[0.064658366143703,-0.020829416811466,-0.026918986812234]],[[0.022963020950556,-0.046527288854122,-0.066749915480614],[-0.046726178377867,-0.01430357247591,0.060365591198206],[0.0080081643536687,-0.017871638759971,0.031054774299264]],[[0.01666853018105,0.049663528800011,-0.0090247401967645],[-0.0053486633114517,0.083785966038704,0.050345975905657],[-0.1293950676918,-0.037400797009468,-0.082993879914284]],[[0.09714625030756,0.038970693945885,-0.079696953296661],[0.048842255026102,0.11581814289093,0.053966872394085],[-0.0058153248392045,0.052237831056118,0.084080725908279]],[[0.0048172725364566,-0.016454257071018,0.10861726850271],[0.0047773667611182,-0.051054537296295,-0.0070923124440014],[-0.057769205421209,0.00079881760757416,0.10281848162413]],[[0.0001227323373314,-0.021372247487307,0.058807909488678],[0.075000531971455,-0.068091556429863,0.051227547228336],[0.0059965015389025,-0.002526645315811,0.042702626436949]],[[0.087960697710514,-0.085161961615086,0.069238230586052],[-0.069528259336948,-0.036073353141546,-0.0061580343171954],[-0.063365578651428,-0.089435249567032,-0.012259493581951]],[[0.0093618808314204,0.036523651331663,0.036378335207701],[0.031603500247002,0.053905453532934,-0.031650859862566],[0.055521231144667,0.08571433275938,-0.026545103639364]],[[0.025980766862631,-0.040069002658129,0.083199121057987],[-0.008613171055913,0.045108892023563,0.012191860936582],[0.052837427705526,-0.20546342432499,0.058928918093443]],[[-0.0068672155030072,0.041485991328955,-0.037967167794704],[-0.036705881357193,0.041166123002768,0.029336361214519],[0.12144772708416,0.0069250594824553,-0.062654659152031]],[[0.0023780174087733,-0.020748192444444,0.02448758482933],[-0.037373043596745,0.026181302964687,0.0085036186501384],[0.074364557862282,0.070010907948017,-0.015385089442134]],[[-0.010596884414554,0.016814775764942,0.09427648037672],[-0.019266465678811,0.027688520029187,0.039079938083887],[0.035638473927975,0.066157765686512,0.028552452102304]],[[-0.039764311164618,0.11170116066933,-0.0076059498824179],[0.066948220133781,-0.044502906501293,0.02801745198667],[0.034697443246841,-0.024058703333139,-0.029287623241544]],[[-0.052523590624332,0.010988496243954,-0.0091160722076893],[0.013638272881508,-0.02772375755012,0.028538823127747],[-0.043482754379511,0.053585018962622,0.023007264360785]],[[-0.067219741642475,-0.004105341155082,0.024831129238009],[-0.077243976294994,-0.023560190573335,0.035354714840651],[0.0088916337117553,-0.037654172629118,-0.026189995929599]],[[-0.011603179387748,-0.043161548674107,-0.017033711075783],[-0.019887525588274,0.010203615762293,-0.0015591942938045],[-0.037727735936642,-0.019264586269855,0.016468081623316]],[[0.010142886079848,-0.068988166749477,-0.011088970117271],[-0.012763595208526,0.051517616957426,0.024662129580975],[0.0092840613797307,-0.021869646385312,-0.055196139961481]],[[0.11257693916559,-0.041254840791225,-0.10462202131748],[0.088104344904423,0.040947262197733,0.013598985038698],[-0.01176782976836,-0.0041500278748572,-0.047021899372339]],[[-0.051671054214239,0.026069527491927,0.047434892505407],[0.025046076625586,-0.026373978704214,-0.011411914601922],[0.0047614886425436,0.10321958363056,-0.025951767340302]],[[0.015109070576727,0.0099154934287071,0.00078728049993515],[-0.025513168424368,0.0022994871251285,0.088568732142448],[0.03279610350728,0.047535434365273,-0.10244611650705]],[[-0.0071418392471969,0.093532904982567,0.033370111137629],[-0.011851979419589,-0.009206005372107,0.028781149536371],[0.0029764757491648,0.037049815058708,-0.039926838129759]],[[-0.010474594309926,0.010039025917649,0.0020187466870993],[0.018166311085224,0.10000392049551,0.058111287653446],[0.067408107221127,-0.034287191927433,-0.047740578651428]],[[0.044399991631508,0.045342184603214,0.050390884280205],[0.038122233003378,0.07257879525423,-0.019241100177169],[-0.0041407658718526,-0.027692418545485,-0.0083969896659255]],[[0.076564490795135,-0.030626155436039,0.094047449529171],[-0.046819493174553,0.039536826312542,-0.006443998310715],[0.015649177134037,-0.017223559319973,0.041520360857248]],[[0.012415641918778,0.068331681191921,0.0397744551301],[0.021974010393023,-0.056309759616852,0.050078850239515],[0.066084824502468,0.02791814878583,0.083907671272755]],[[-0.014722124673426,-0.032707922160625,0.063888199627399],[0.054344598203897,-0.022113481536508,-0.12462382018566],[0.0033645967487246,-0.047133713960648,-0.008841366507113]],[[0.084475368261337,-0.01647512614727,-0.0098323598504066],[0.021867206320167,0.0062965624965727,-0.010401856154203],[-0.0051548634655774,0.018121927976608,-0.068281553685665]],[[0.15567269921303,-0.041139233857393,0.062050394713879],[-0.13342972099781,0.13001801073551,-0.021952390670776],[0.093122079968452,-0.043090183287859,0.070539973676205]],[[0.032009303569794,-0.025205209851265,-0.0079739764332771],[-0.074143327772617,0.080786176025867,-0.0082115223631263],[-0.052236769348383,-0.015503543429077,-0.055292151868343]],[[-0.027154752984643,-0.021973030641675,-0.087862640619278],[-0.0057233017869294,0.037323269993067,-0.024022616446018],[-0.055939376354218,-0.0053166095167398,-0.031982023268938]],[[0.024400871247053,0.11606077104807,0.095977619290352],[0.0076122540049255,0.074051089584827,-0.0085325771942735],[0.020785484462976,-0.0097997514531016,0.0052856248803437]],[[-0.011246197856963,0.0051416354253888,-0.059776846319437],[-0.023517338559031,0.10601001232862,0.058864329010248],[0.016193171963096,0.032036546617746,-0.041706521064043]],[[-0.07174426317215,0.078446887433529,-0.026015747338533],[0.095914445817471,-0.010773025453091,-0.03871102258563],[1.8030659703072e-05,-0.035376343876123,-0.016295218840241]],[[0.071166276931763,0.0033855768851936,0.077805079519749],[0.05578563734889,-0.095821596682072,0.039678126573563],[0.048411354422569,0.053738787770271,-0.025858853012323]],[[-0.064711533486843,0.059567458927631,-0.031267151236534],[0.094112902879715,-0.01739165186882,-0.011872636154294],[0.027498204261065,0.03598640859127,0.042744964361191]],[[0.0840053409338,0.024733647704124,-0.044284380972385],[-0.030843423679471,0.063668876886368,0.026617389172316],[0.0045334747992456,-0.014768624678254,-0.015634408220649]],[[-0.020590133965015,0.01171719096601,-0.029706923291087],[0.085098549723625,0.068339437246323,-0.0017598874401301],[0.0045823841355741,-0.05534989759326,-0.020679356530309]],[[0.0020194137468934,0.015886578708887,0.0056619653478265],[0.031401868909597,-0.037037469446659,0.073936462402344],[0.14102406799793,0.051052745431662,0.048892915248871]],[[-0.005799500271678,-0.032402008771896,0.033438075333834],[-0.11758301407099,0.075636088848114,-0.054541625082493],[-0.023684227839112,0.051355198025703,0.047923751175404]],[[0.014004291035235,0.028783436864614,0.083827279508114],[-0.095642350614071,0.034381609410048,-0.074157983064651],[-0.091638438403606,0.019195139408112,0.06685845553875]],[[-0.046768266707659,-0.077463082969189,-0.01329283323139],[0.0085145551711321,0.071473799645901,0.035784192383289],[-0.081019081175327,-0.018369885161519,-0.0609135851264]],[[0.02129927650094,-0.011521426029503,0.0041806902736425],[0.017957028001547,-0.014953018166125,-0.014818517491221],[0.014147691428661,-0.0020794768352062,-0.0066702105104923]],[[-0.035214863717556,0.046308491379023,-0.046518173068762],[0.027355954051018,-0.051143873482943,0.053766261786222],[0.014905705116689,0.067507706582546,-0.10279864817858]],[[-0.018625738099217,0.056157153099775,-0.051178425550461],[-0.080101132392883,-0.027253102511168,-0.065012760460377],[-0.070290960371494,-0.0065833842381835,0.02988432534039]],[[0.068910665810108,-0.038115460425615,-0.11743997782469],[-0.084219843149185,0.062790669500828,0.0072545525617898],[0.017853675410151,0.04243279248476,-0.12150377780199]],[[-0.017534151673317,0.1765360981226,0.042074952274561],[0.078029528260231,0.09825786948204,0.00047691832878627],[0.046678807586432,-0.015915269032121,-0.056902293115854]],[[-0.031113618984818,0.013255476951599,-0.046519499272108],[0.1366263628006,0.012501547113061,0.098055422306061],[-0.028630578890443,0.12666983902454,-0.065700612962246]],[[-0.0185232963413,-0.015744630247355,-0.035427451133728],[-0.021517058834434,0.014072308316827,0.0060572284273803],[-0.0077714407816529,0.029628053307533,-0.047546606510878]],[[-0.0120949735865,0.055124830454588,0.021183382719755],[-0.037211272865534,-0.0010335296392441,0.04914116114378],[0.055154547095299,0.0024356609210372,0.001492447918281]],[[-0.046991627663374,0.010379222221673,-0.0099124582484365],[0.0078736776486039,0.011634968221188,0.032897610217333],[0.043459955602884,0.005315697286278,-0.00011156848631799]],[[-0.047094244509935,0.052816353738308,0.052901890128851],[0.026655774563551,-0.031836301088333,0.024450408294797],[0.067776933312416,0.059298917651176,0.048371866345406]],[[0.013857963494956,-0.037870947271585,0.048871457576752],[-0.060304265469313,-0.057099658995867,-0.024660181254148],[0.073535926640034,-0.032719664275646,-0.023952541872859]],[[0.016574833542109,-0.051828872412443,0.057660527527332],[0.092122919857502,0.0093033984303474,-0.031539879739285],[-0.018598012626171,0.03400994092226,0.0051201730966568]],[[0.0049221953377128,-0.04392958804965,0.0093343947082758],[0.031823202967644,-0.02925992757082,-0.0049494481645525],[0.1203394010663,0.026722071692348,-0.03406448662281]],[[0.011414790526032,0.066912360489368,0.014709162525833],[-0.027611497789621,-0.029524615034461,0.03022276610136],[-0.1099813580513,0.038640443235636,0.038422375917435]],[[0.063852675259113,0.040319096297026,0.019752753898501],[-0.021532762795687,0.079789236187935,0.00948032643646],[0.035101842135191,0.093663789331913,-0.063867591321468]],[[0.071371860802174,0.043878771364689,0.07082561403513],[0.09797615557909,-0.05861958861351,-0.047834970057011],[0.077676147222519,-0.012902985326946,0.014873431995511]],[[0.047823932021856,-0.012283904477954,0.10637982934713],[-0.017936620861292,0.02250799909234,-0.018215237185359],[-0.046320859342813,0.068860538303852,0.092209346592426]],[[0.0060154786333442,-0.017509819939733,0.028860351070762],[0.0067334799095988,-0.034122638404369,-0.11699309200048],[0.049949366599321,-0.0056272624060512,-0.018308792263269]],[[0.027140073478222,0.031036188825965,-0.0030326505657285],[-0.026049755513668,0.057057932019234,0.0095318993553519],[0.027002299204469,0.084681823849678,0.087805636227131]],[[-0.017998835071921,0.0092642633244395,0.035107795149088],[0.058336518704891,-0.029010683298111,0.039113767445087],[-0.093289159238338,0.032499726861715,0.00308434269391]],[[0.033385265618563,-0.034435275942087,-0.047143649309874],[0.062399975955486,-0.042345944792032,0.098563343286514],[0.029625296592712,0.008192746900022,-0.054364867508411]],[[-0.021860687062144,0.030836507678032,0.046924713999033],[0.019108101725578,0.025183135643601,0.014088431373239],[0.053775202482939,0.043421655893326,0.0066584963351488]],[[0.070779576897621,-0.050807438790798,-0.0016654861392453],[-0.016419028863311,0.079583287239075,0.014938208274543],[-0.028250196948647,-0.019834168255329,-0.020250260829926]],[[0.089653491973877,-0.011909882538021,0.019638219848275],[0.0053176288492978,0.030827613547444,-0.055607203394175],[0.14089697599411,-0.037334464490414,-0.014531908556819]],[[0.036313138902187,0.017066854983568,-0.028452020138502],[-0.028666457161307,0.0022915212903172,0.027845973148942],[0.071442469954491,0.054587926715612,0.062609933316708]],[[-0.020465714856982,-0.0096042202785611,0.025127172470093],[0.089051358401775,-0.010766636580229,-0.0099739590659738],[0.060692146420479,-0.070692971348763,0.079021297395229]],[[0.1137875020504,-0.008045170456171,-0.083678811788559],[0.03946914896369,-0.047969549894333,0.045921854674816],[0.054603990167379,0.026840439066291,-0.010794250294566]],[[-0.11610989272594,0.033053368330002,-0.13345377147198],[-0.018704188987613,0.061459116637707,0.080146387219429],[-0.0078460583463311,0.021464152261615,0.079019345343113]],[[-0.029685340821743,0.0050953715108335,0.03013688698411],[-0.076095312833786,0.1455786973238,0.11623760312796],[0.026815706863999,0.032726369798183,-0.028601540252566]],[[0.087662123143673,0.042445279657841,-0.010851149447262],[-0.028685806319118,0.01733261346817,0.057728473097086],[-0.063689067959785,0.049007747322321,-0.0038197024259716]],[[-0.051153741776943,0.035547453910112,-0.064839698374271],[0.067236170172691,-0.028252897784114,-0.041896231472492],[-0.023034477606416,0.090597093105316,-0.0019421399338171]],[[0.017518563196063,-0.013105861842632,0.025301763787866],[0.11937727034092,0.038714822381735,0.076327756047249],[0.010031785815954,0.0035583765711635,0.022944508120418]],[[0.0057367696426809,-0.031718362122774,0.017421612516046],[-0.029942562803626,0.051283068954945,0.0069749550893903],[0.070601001381874,-0.0022711914498359,0.030585791915655]],[[0.038869939744473,0.0790651217103,-0.077190987765789],[-0.0074929436668754,-0.011767510324717,-0.0090774660930037],[-0.031456306576729,-0.011463955044746,-0.034127227962017]],[[-0.012199081480503,0.071875274181366,0.051292788237333],[0.052460629492998,0.037357497960329,0.10267198830843],[-0.054931070655584,-0.0033429858740419,-0.042881220579147]],[[0.012237712740898,0.022724943235517,-0.04981691390276],[-0.0012440927093849,0.014758692122996,0.10892013460398],[0.1218414157629,0.067061007022858,0.059374932199717]],[[0.0047109262086451,-0.030897978693247,0.094006694853306],[0.012642167508602,-0.0055154231376946,0.10024052858353],[-0.035939529538155,-0.01524977106601,0.015631003305316]],[[-0.017818560823798,0.0092437947168946,-0.051096759736538],[0.058357354253531,0.077075116336346,0.0082472842186689],[0.061147820204496,0.01539964415133,0.0092152636498213]],[[0.0018452138174325,-0.091951914131641,-0.064400896430016],[0.019723834469914,0.0087831160053611,0.058164685964584],[0.026724833995104,-0.075477927923203,0.039011787623167]],[[0.085733190178871,0.073980040848255,0.0055710352025926],[-0.017535526305437,0.049631934612989,0.0029500077944249],[0.093765497207642,-0.0083819767460227,0.0092397127300501]],[[-0.096180655062199,0.061804980039597,-0.0052479207515717],[0.025701524689794,-0.089443735778332,0.028344066813588],[-0.013617003336549,0.026174504309893,-0.079925276339054]],[[-0.012105927802622,0.048830412328243,0.0071508274413645],[-0.013007364235818,0.0099248951300979,-0.026475897058845],[-0.029427755624056,0.0045245853252709,-0.077955737709999]],[[-0.046446226537228,0.038692601025105,-0.048474740236998],[0.038603853434324,0.02509942278266,0.064083524048328],[0.018876241520047,0.077723354101181,0.046662088483572]],[[0.061751786619425,0.050253994762897,-0.034791383892298],[-0.056823827326298,0.009724791161716,0.053468272089958],[0.019435934722424,0.076284773647785,0.0025305123999715]],[[0.017135920003057,0.076954789459705,-0.00068267394090071],[-0.0013255454832688,0.057151410728693,0.045049548149109],[0.12928895652294,-0.031580992043018,0.015808869153261]],[[0.01399155613035,0.023135716095567,0.023281736299396],[-0.017274199053645,0.042130883783102,0.0008205235353671],[-0.0090382266789675,0.043422434478998,-0.054177407175303]],[[0.078704059123993,-0.16649577021599,-0.001838107011281],[-0.09797640889883,0.027445131912827,-0.040178317576647],[0.026610717177391,-0.037713728845119,0.054479897022247]],[[0.063121303915977,-0.037234142422676,0.14064559340477],[-0.024163680151105,-0.11546051502228,-0.099447309970856],[0.10158316791058,-0.030127482488751,0.058739323168993]],[[0.060167126357555,-0.015266990289092,0.00110700330697],[-0.0017482406692579,0.014285616576672,-0.062641888856888],[0.028365716338158,-0.016948780044913,-0.034462984651327]],[[-0.020151240751147,0.07294300198555,0.015849061310291],[0.048527352511883,0.078670158982277,0.073340572416782],[-0.031998991966248,0.088977642357349,-0.035866271704435]],[[-0.0079489722847939,-0.0048575452528894,-0.11214293539524],[0.033588025718927,-0.075608968734741,-0.066437773406506],[0.035500530153513,-0.004064894746989,-0.11137716472149]],[[0.075097821652889,-0.078056216239929,0.041386567056179],[-0.066246628761292,-0.044324267655611,-0.10785321891308],[0.093932248651981,-0.062359265983105,0.078380592167377]],[[-0.0094438269734383,-0.026138007640839,-0.09387219697237],[-0.018327709287405,0.045419100672007,0.05775523558259],[-0.030928462743759,-0.041498061269522,-0.085397027432919]],[[0.00078451388981193,0.11952083557844,0.064220033586025],[-0.019650150090456,0.0097401440143585,0.013909644447267],[1.1125664059364e-05,0.036091540008783,-0.021536741405725]],[[0.024787874892354,0.020940998569131,-0.01300277095288],[-0.04816573113203,0.099442780017853,-0.03818029537797],[0.10032214224339,0.098126113414764,0.060763366520405]],[[-0.023840874433517,0.0024513753596693,0.047193516045809],[0.082278952002525,0.036405809223652,0.072114683687687],[0.025432765483856,0.025286080315709,0.0064128604717553]],[[0.0019691453780979,-0.048834480345249,-0.04061821475625],[-0.0023058622609824,0.081584095954895,0.044254843145609],[-0.053054191172123,0.0011630074586719,-0.022177716717124]],[[-0.063800148665905,-0.082148618996143,-0.041493359953165],[0.051569472998381,0.013159221969545,-0.039630394428968],[0.01437141187489,0.0036564969923347,0.022497314959764]],[[-0.073104076087475,0.033937457948923,-0.051650352776051],[-0.027619926258922,0.033791478723288,-0.060909323394299],[-0.092630580067635,-0.034580539911985,-0.071448028087616]],[[0.061237685382366,0.064952023327351,0.054221265017986],[0.094186596572399,-0.010076910257339,0.015267457813025],[0.064471445977688,0.060857735574245,0.043449614197016]],[[0.01612701267004,0.010769128799438,0.057970918715],[-0.017757480964065,0.046506498008966,-0.056560657918453],[0.0098090656101704,0.019080029800534,0.037093434482813]],[[-0.025254603475332,-0.038352616131306,0.019759660586715],[0.043563056737185,-0.027158629149199,0.11723099648952],[0.039577312767506,0.036364015191793,-0.077569060027599]],[[-0.041412219405174,0.0027944578323513,0.0073917806148529],[0.02515959367156,0.067136503756046,0.031622841954231],[0.034255672246218,0.10129474103451,-0.051296275109053]],[[-0.050862871110439,-0.02021499723196,0.017466120421886],[0.018670175224543,-0.012710619717836,-0.011172940023243],[-0.024611465632915,0.018975993618369,0.046992167830467]],[[-0.00272375671193,0.085635378956795,-0.0028171669691801],[0.11183398216963,0.036527372896671,0.0099456859752536],[0.011965529993176,0.06594579666853,0.10743437707424]],[[0.051756270229816,0.022721130400896,0.078757777810097],[0.032734353095293,0.034016322344542,-0.003421587869525],[-0.0089939003810287,-0.061109911650419,-0.056413449347019]]],[[[-0.0028293051291257,-0.016467802226543,0.040265575051308],[0.038243506103754,0.067708283662796,0.067253969609737],[-0.048303410410881,-0.03238195925951,-0.07051494717598]],[[-0.041928987950087,-0.024037435650826,0.024382209405303],[0.026325354352593,0.016458382830024,0.0058297645300627],[0.026182994246483,0.039817322045565,-0.037061009556055]],[[0.034174978733063,-0.048966448754072,0.023597517982125],[-0.014920664951205,-0.022209547460079,-0.063274972140789],[-0.022817492485046,-0.040963184088469,0.029221035540104]],[[-0.074095956981182,0.02606575191021,-0.048726290464401],[-0.078213669359684,-0.090958990156651,-0.0025254434440285],[0.003515456803143,-0.04657219350338,0.07242888212204]],[[-0.00012474265531637,-0.090617217123508,0.018411511555314],[-0.0176474545151,-0.060103792697191,-0.018692370504141],[0.030577078461647,0.018611986190081,0.03915936127305]],[[0.00719951139763,-0.022023923695087,-0.041373234242201],[0.089940510690212,-0.071032457053661,0.0025185307022184],[-0.024145886301994,-0.062644742429256,0.055390603840351]],[[0.006306835450232,0.015205846168101,-0.005024494137615],[0.023231692612171,-0.0025795213878155,-0.0026797244790941],[0.022981017827988,0.022999400272965,0.020476412028074]],[[-0.067249186336994,-0.015374002046883,-0.050464253872633],[0.095960065722466,0.039211802184582,-0.012606754899025],[-0.030440635979176,0.0038822842761874,-0.063442178070545]],[[-0.017613869160414,-0.050854485481977,-0.029047377407551],[0.0017688246443868,-0.019658587872982,0.035445343703032],[0.0069004190154374,0.031429655849934,-0.098485343158245]],[[-0.072403483092785,-0.0034459426533431,-0.051857944577932],[0.063110888004303,0.030305335298181,-0.022549122571945],[-0.0060267602093518,-0.0052229156717658,0.050056841224432]],[[0.002341783605516,-0.0059901070781052,0.049931984394789],[-0.049500804394484,0.028799520805478,0.014853190630674],[-0.014938766136765,0.04501985013485,-0.070622079074383]],[[-0.0092035848647356,0.0010636924998835,-0.049161810427904],[0.015340372920036,0.024321138858795,0.056780088692904],[-0.0082948338240385,-0.079107470810413,-0.017271963879466]],[[-0.05015205219388,-0.038717545568943,0.13908231258392],[0.066906027495861,-0.045143183320761,0.050129298120737],[-0.042748551815748,-0.029961561784148,-0.0260005351156]],[[0.046159498393536,-0.051363188773394,-0.028874974697828],[0.042442176491022,-0.025022905319929,0.01019106246531],[-0.057543989270926,0.0056668608449399,0.025488598272204]],[[-0.021262668073177,0.0060636014677584,0.027205154299736],[0.024123687297106,-0.0054751695133746,-0.0013217412633821],[0.0085184592753649,0.005114228464663,0.0089579811319709]],[[-0.069400496780872,0.067387066781521,0.013913929462433],[0.0064876088872552,-0.043518263846636,0.034242369234562],[-0.01810671761632,-0.055569957941771,0.062375474721193]],[[-0.052893545478582,0.070764951407909,-0.0060218055732548],[0.021197689697146,-0.052205260843039,0.019520265981555],[-0.063803821802139,0.012924585491419,0.035872638225555]],[[-0.045475386083126,0.10188493877649,-0.036917064338923],[-0.022437673062086,0.039754204452038,0.012561712414026],[0.046376205980778,0.092053063213825,-0.046621818095446]],[[-0.020213818177581,0.056809727102518,0.0019786404445767],[0.098249025642872,0.073566325008869,-0.021374195814133],[-0.051321376115084,-0.020895456895232,-0.042634196579456]],[[0.033809259533882,-0.0036909244954586,-0.016869014129043],[-0.077484354376793,0.085409767925739,0.03327664360404],[-0.052524905651808,0.013024921528995,-0.013365073129535]],[[-0.016164053231478,0.015651719644666,-0.06446447968483],[0.016108151525259,0.02923546358943,0.050738055258989],[0.026522614061832,-0.042561933398247,-0.060704600065947]],[[0.012893469072878,-0.0022032444830984,0.054129358381033],[0.062196578830481,0.071658529341221,0.048564817756414],[0.035025354474783,-0.046857386827469,-0.025247190147638]],[[0.024209735915065,0.0445845015347,-0.0086937770247459],[-0.011089198291302,0.07206068187952,0.037997435778379],[-0.0082966350018978,-0.016789386048913,0.0085815899074078]],[[-0.007506703492254,-0.014489029534161,-0.01646638289094],[-0.011375442147255,-0.081157386302948,-0.050444830209017],[0.11855170875788,-0.071437738835812,-0.085240080952644]],[[-0.0050757694989443,-0.073664426803589,-0.025419527664781],[-0.012263990007341,-0.025506895035505,-0.0018120444146916],[0.063394822180271,0.047657679766417,-0.086119703948498]],[[-0.0058798831887543,0.026576751843095,-0.019880972802639],[-0.027615701779723,0.044822741299868,0.037930231541395],[-0.076793789863586,0.042181894183159,0.041996374726295]],[[0.037190172821283,-0.0098292091861367,-0.013330871239305],[0.028475740924478,0.055199224501848,-0.0010168357985094],[-0.0091643473133445,-0.01588542945683,0.013291251845658]],[[0.025618012994528,0.037940848618746,0.076871104538441],[0.034120716154575,-0.043562415987253,-0.05921258404851],[-0.050765663385391,0.032562602311373,0.032497551292181]],[[-0.038521256297827,-0.04713873192668,0.012644804082811],[-0.062551662325859,-0.064348585903645,0.024461714550853],[-0.0077632390893996,-0.041047520935535,0.12221977114677]],[[0.072402492165565,0.056455217301846,0.011294295080006],[-0.0053606419824064,0.0087072374299169,-0.064665392041206],[0.098896704614162,-0.065198123455048,0.028400253504515]],[[0.0032656935509294,0.078924968838692,0.06799091398716],[-0.018757652491331,0.0052436841651797,-0.019226506352425],[-0.0013391249813139,0.090059317648411,0.0023493887856603]],[[0.010269286110997,0.020629808306694,0.035607300698757],[0.088334023952484,-0.02524091117084,-0.032436423003674],[-0.034319512546062,-0.0026951804757118,-0.0045454404316843]],[[0.00054215284762904,-0.036332324147224,-0.015191491693258],[0.00059891206910834,-0.065333463251591,-0.015979755669832],[0.030472822487354,-0.066096715629101,0.031294632703066]],[[-0.027093589305878,-0.0090428162366152,-0.013986099511385],[-0.011914717033505,-0.06069353595376,0.023224584758282],[0.0062573770992458,-0.010280531831086,-0.0077193104662001]],[[-0.06435988843441,-0.035262994468212,0.043104320764542],[0.010624280199409,0.067533925175667,-0.027108883485198],[-0.013114316388965,0.030427873134613,0.0050095361657441]],[[-0.052311196923256,-0.013793110847473,0.023485958576202],[0.0024847832974046,0.01188812404871,0.0058319163508713],[0.086544662714005,0.0095153097063303,-0.014526304788888]],[[0.0090032406151295,-0.011187300086021,0.015938455238938],[-0.00091976142721251,0.06597100943327,0.01860237121582],[0.027873396873474,-0.019058944657445,0.045504488050938]],[[0.043347988277674,0.049801241606474,0.015250504016876],[0.0044573219493032,-0.0021091825328767,-0.06139349937439],[0.011995707638562,-0.030949642881751,0.02238243073225]],[[0.052694696933031,0.008296781219542,-0.013153545558453],[-0.021440122276545,0.078147232532501,0.032575562596321],[0.031612429767847,-0.030357789248228,-0.049013793468475]],[[-0.063332043588161,-0.02168888784945,-0.047274056822062],[0.0027491734363139,0.019447911530733,0.027596084401011],[-0.08093336224556,-0.0014685516944155,-0.02181288599968]],[[-0.082368791103363,0.0085804210975766,0.0083121247589588],[0.036136232316494,0.036351408809423,0.038197863847017],[0.016147395595908,-0.034898597747087,-0.039760269224644]],[[0.03055153042078,-0.077808521687984,0.022677859291434],[-0.05167642608285,-0.049176700413227,0.065897069871426],[0.02884779125452,-0.042481485754251,0.010170234367251]],[[0.050411120057106,-0.033889185637236,0.08437392115593],[-0.016061825677752,0.037726398557425,0.060208562761545],[0.07171968370676,-0.025376301258802,-0.026831828057766]],[[0.014456689357758,-0.069430314004421,0.027048634365201],[0.00083976343739778,-0.001583781093359,0.019632952287793],[0.01017917227,-0.040251307189465,-0.0018689935095608]],[[-0.0073284832760692,-0.035088136792183,0.032526552677155],[-0.029128044843674,0.10485802590847,-0.01973688788712],[0.015802351757884,0.068071149289608,-0.063482493162155]],[[-0.031492438167334,-0.039000514894724,0.0011715132277459],[-0.0026370440609753,0.019487150013447,0.0091177318245173],[0.02668740041554,0.03433682769537,0.068809255957603]],[[-0.073894284665585,-0.070052601397038,0.040398068726063],[-0.036270156502724,0.044870909303427,0.011399447917938],[0.041199926286936,-0.014586388133466,0.025333985686302]],[[0.011463309638202,-0.043564058840275,-0.053963407874107],[0.016184739768505,0.013170445337892,-0.056614384055138],[-0.04170474037528,0.0088933585211635,0.021280616521835]],[[0.038899526000023,-0.018822623416781,-0.010168138891459],[0.037453666329384,0.036252088844776,-0.037780608981848],[0.02768312394619,0.010749346576631,-0.030524870380759]],[[0.0058207903057337,-0.05634281039238,0.035874135792255],[0.030296102166176,0.002386869629845,-0.017309809103608],[-0.10508336871862,-0.044179126620293,-0.023454254493117]],[[0.017283337190747,-0.016160884872079,0.042485266923904],[0.028403490781784,-0.014086088165641,-0.0015174355357885],[-0.0082600060850382,0.023183174431324,-0.014134651981294]],[[-0.030956227332354,-0.020240277051926,0.015650564804673],[0.022704781964421,-0.0086632808670402,-0.043797951191664],[0.0017908628797159,0.034740407019854,0.030587205663323]],[[-0.052554152905941,-0.01995643042028,-0.05695653706789],[0.0074680913239717,-0.023868380114436,5.2737210353371e-05],[-0.045855931937695,0.0094203054904938,-0.019332753494382]],[[0.0061926040798426,-0.036072663962841,0.019946396350861],[0.018693752586842,-0.074287794530392,0.036942455917597],[0.053746726363897,0.040337458252907,0.016549974679947]],[[0.021534355357289,-0.051921300590038,0.02558652125299],[-0.043959118425846,0.024152686819434,0.04997381195426],[-0.016577012836933,-0.038187727332115,-0.013605574145913]],[[0.039205450564623,0.054652575403452,-0.003217785153538],[-0.028733359649777,-0.0044834055006504,0.02225012332201],[0.081377074122429,-0.094141691923141,0.038019217550755]],[[-0.0077507849782705,-0.017355922609568,-0.015551647171378],[0.064960770308971,0.042668469250202,0.015409824438393],[-0.019518041983247,0.033946398645639,-0.041344083845615]],[[0.032413169741631,0.0126559343189,-0.081856697797775],[0.034619923681021,-0.022734770551324,-0.026829989627004],[-0.078317083418369,-0.0070482697337866,-0.021781442686915]],[[-0.028595751151443,-0.0055480040609837,-0.020098173990846],[-0.018127206712961,0.014672743156552,0.087160207331181],[-0.0039590145461261,0.06056959554553,0.084211647510529]],[[0.034535463899374,0.068787626922131,0.067925550043583],[-0.020431682467461,0.053056173026562,0.073820918798447],[-0.077214971184731,-0.030920024961233,0.019997237250209]],[[0.047595009207726,-0.016907995566726,-0.032870247960091],[0.028840294107795,-0.027176765725017,0.03329411894083],[-0.0036114815156907,0.017985992133617,0.027317313477397]],[[0.022200409322977,-0.033695012331009,-0.068464763462543],[-0.0089070545509458,0.041287176311016,-0.021899992600083],[0.0024985007476062,0.015952864661813,-0.070332616567612]],[[0.060008760541677,0.038788247853518,-0.033793721348047],[-0.053359754383564,-0.0098868291825056,0.057567186653614],[0.010212781839073,0.05599332973361,-0.052487038075924]],[[-0.032952632755041,-0.012595281936228,0.039009731262922],[0.03737623244524,-0.051925722509623,0.018908306956291],[-0.013762977905571,0.040055558085442,-0.066601380705833]],[[-0.0174292139709,-0.075105756521225,0.03554193302989],[0.012512560933828,-0.050863411277533,-0.0010852447012439],[-0.010575471445918,0.026407845318317,0.060604114085436]],[[0.044932633638382,0.0013616640353575,-0.046569094061852],[0.061475481837988,0.020256675779819,0.012351267971098],[0.020362202078104,0.0027060604188591,-0.070723369717598]],[[0.0013034306466579,0.063142977654934,0.074760876595974],[0.013778932392597,0.018654748797417,-0.027597898617387],[0.056725606322289,-0.0094983773306012,0.10337415337563]],[[0.035711832344532,-0.039038859307766,0.013327590189874],[0.10156030207872,-0.038375467061996,0.0029364596121013],[-0.034915838390589,-0.015494419261813,-0.022850405424833]],[[-0.043083351105452,0.033422961831093,0.04052147269249],[0.045468911528587,0.010542491450906,0.014426842331886],[0.0292695350945,0.040567692369223,0.036786217242479]],[[0.029015740379691,-0.035825829952955,0.031115612015128],[0.010646023787558,0.033366832882166,-0.0021502666641027],[-0.013137464411557,0.080183111131191,0.013297077268362]],[[0.063410095870495,0.030950853601098,-0.075876034796238],[-0.045206543058157,-0.035367406904697,-0.051735412329435],[0.023063527420163,0.010705260559916,0.0086518209427595]],[[0.018709501251578,0.037836886942387,0.02898264490068],[0.077286772429943,-0.0085048386827111,-0.052674386650324],[-0.035081893205643,0.012002881616354,0.018665937706828]],[[-0.054548732936382,0.010828129015863,-0.021591763943434],[-0.053671196103096,-0.047467537224293,0.047345906496048],[0.027715094387531,-0.01804593205452,-0.023556228727102]],[[0.057269271463156,0.025513930246234,-0.016816385090351],[-0.023359341546893,-0.027757234871387,-0.048841144889593],[-0.020435120910406,-0.048265688121319,-0.010894405655563]],[[0.019277079030871,-0.045407686382532,-0.036263432353735],[-0.012849957682192,0.0085662137717009,0.035003807395697],[0.0042036352679133,-0.031769573688507,-0.022022662684321]],[[0.04899488016963,0.018412655219436,-0.053212810307741],[-0.0047375741414726,-0.052335824817419,-0.053271435201168],[-0.039351630955935,0.036905758082867,0.023937107995152]],[[0.058234583586454,-0.033881265670061,0.0053159231320024],[-0.087060980498791,0.04804926738143,0.033105690032244],[0.024804674088955,0.015591924078763,-0.055645488202572]],[[0.0045710620470345,0.0077332998625934,-0.020801348611712],[-0.0051335752941668,0.012668427079916,0.055174477398396],[-0.071671769022942,-0.029070066288114,0.0054474859498441]],[[0.051984656602144,0.01138262078166,-0.024766569957137],[-0.018330140039325,-0.1017956957221,0.016143105924129],[-0.048165071755648,0.033044572919607,-0.011963977478445]],[[0.023458957672119,0.032808478921652,0.036105632781982],[0.012639488093555,0.021422158926725,0.038511782884598],[-0.027543609961867,0.012821887619793,-0.0080905146896839]],[[0.09435810893774,-0.054307609796524,-0.0046763946302235],[0.055566117167473,-0.024733083322644,-0.0099827451631427],[0.07448972016573,0.020559474825859,0.03415596857667]],[[-0.033054929226637,0.015418838709593,0.051305960863829],[-0.0082524204626679,0.041009265929461,-0.02366098947823],[0.12071969360113,0.097593322396278,-0.074491068720818]],[[0.085518471896648,0.057580456137657,0.037624727934599],[0.02895556949079,-0.0023941432591528,-0.04345840588212],[0.037256926298141,-0.026348136365414,-0.014460482634604]],[[-0.047943487763405,-0.032708998769522,-0.003393788356334],[0.030833002179861,-0.04795366153121,0.015390857122838],[0.0045813517645001,0.025971725583076,-0.020911043509841]],[[-0.026069385930896,0.016765497624874,0.037539690732956],[-0.016628297045827,-0.016316410154104,-0.070772029459476],[0.0087467217817903,-0.041362285614014,0.024909809231758]],[[-0.0029938595835119,0.092191964387894,-0.055133897811174],[0.0090052681043744,-6.799295078963e-05,-0.043378673493862],[-0.031768027693033,-0.081052005290985,-0.05585965514183]],[[0.044024109840393,-0.029526023194194,-0.04334556683898],[0.017729723826051,0.014158199541271,-0.056522894650698],[-0.0020190658979118,0.016830330714583,0.03550211712718]],[[-0.030699275434017,-0.048009965568781,0.031220432370901],[0.084339156746864,0.010548982769251,-0.042189057916403],[-0.0068076611496508,-0.0059309396892786,0.033865079283714]],[[-0.027806673198938,-0.035860698670149,0.01553650572896],[0.057501226663589,0.023127194494009,0.025686644017696],[0.027904147282243,-0.020682068541646,-0.0041112708859146]],[[-0.01511207036674,0.035788007080555,-0.045057263225317],[-0.020125051960349,0.081492140889168,0.11585836112499],[0.066450580954552,-0.057104557752609,-0.096970058977604]],[[-0.045555207878351,0.018834574148059,0.0184729937464],[-0.020453302189708,0.058953430503607,-0.050058051943779],[-0.011983185075223,0.060557570308447,-0.0053233886137605]],[[0.0083299791440368,0.030117783695459,0.016266383230686],[-0.034107930958271,-0.051640767604113,-0.040910698473454],[0.03180168941617,-0.04700393602252,-0.0031464213971049]],[[-0.037309948354959,-0.0027665786910802,0.043193984776735],[0.018917011097074,-0.00036326984991319,0.027231130748987],[0.082609921693802,0.0035220596473664,0.083546675741673]],[[0.064160399138927,-0.051201682537794,-0.022984916344285],[-0.056513793766499,-0.051396533846855,0.00025439518503845],[0.096680596470833,-0.0083202514797449,-0.027349676936865]],[[-0.052651517093182,0.01514788530767,0.039029445499182],[0.046658180654049,-0.052134245634079,0.043786603957415],[-0.058889947831631,0.028091376647353,0.051715664565563]],[[-0.037839937955141,-0.027614813297987,8.0967285612132e-05],[0.055247876793146,-0.002251282799989,-0.036370046436787],[0.0075394669547677,0.035234600305557,-0.026587741449475]],[[-0.075279794633389,-0.0087374364957213,-0.039652366191149],[-0.033642962574959,-0.0291514005512,0.071529917418957],[-0.068937256932259,0.03323507681489,-0.020313384011388]],[[0.012615320272744,-0.026001561433077,-0.01961556635797],[-0.062030963599682,0.10109575092793,0.010464984923601],[-0.075589880347252,0.085770152509212,-0.03025858104229]],[[0.0089927222579718,0.03866283223033,-0.063671045005322],[0.037098594009876,-0.11090215295553,-0.034516144543886],[-0.034188695251942,0.023211611434817,-0.026866374537349]],[[0.096791237592697,0.03963129222393,0.069460354745388],[-0.075009129941463,-0.021124180406332,0.0018373110797256],[-0.010022099129856,0.023052463307977,-0.016910402104259]],[[-0.0037877035792917,0.00023079074162524,-0.048116762191057],[-0.029282668605447,0.050832577049732,0.057045806199312],[-0.050471607595682,-0.009811851195991,0.044852696359158]],[[-0.0094136418774724,-0.015323041006923,-0.01137978117913],[-0.00087643694132566,-0.0069759460166097,-0.0047017652541399],[-0.00045933414367028,-0.05185255035758,-0.027461361140013]],[[0.02730212919414,-0.033706057816744,-0.017341276630759],[0.021933704614639,0.026764292269945,-0.0097269024699926],[0.0084759276360273,-0.01922207698226,-0.031102361157537]],[[0.054100662469864,-0.0074015469290316,-0.085137635469437],[-0.014144009910524,0.09066092222929,0.045481834560633],[-0.021168382838368,0.047537751495838,0.016119739040732]],[[0.048949621617794,0.0099548827856779,-0.048821572214365],[0.045581184327602,-0.0033842409029603,0.018397184088826],[0.021420838311315,-0.052848841995001,-0.016949359327555]],[[0.013326155021787,0.04401983320713,0.036020323634148],[0.020298367366195,0.060481313616037,0.033500704914331],[0.071000792086124,-0.0053880452178419,0.07150012254715]],[[-0.0083779133856297,0.087038397789001,-0.078376598656178],[0.015690855681896,0.10065641999245,0.002652358263731],[-0.030696516856551,-0.032916735857725,-0.018069580197334]],[[0.0095951743423939,-0.024026716127992,-0.031600873917341],[-0.050988577306271,0.040472462773323,-0.074074178934097],[-0.012318765744567,-0.024035414680839,-0.070060774683952]],[[-0.035065215080976,-0.075482733547688,0.098990812897682],[0.028636883944273,0.0073454738594592,0.0017082140548155],[0.058240097016096,0.0013948685955256,0.051009438931942]],[[-0.043024480342865,-0.088562652468681,-0.01964458823204],[0.0063988780602813,-0.04704012721777,-0.059224408119917],[0.088325835764408,-0.024035308510065,0.0019002164481208]],[[0.033344320952892,-0.047748580574989,0.035771161317825],[0.017127709463239,0.059723407030106,0.048060402274132],[0.020410345867276,-0.017332943156362,0.0329430103302]],[[-0.075887024402618,-0.047330167144537,-0.023313058540225],[-0.057598564773798,0.0089418003335595,-0.015383642166853],[0.0096747167408466,-0.01490982901305,-0.012321988120675]],[[-0.016884434968233,-0.012196814641356,-0.014347619377077],[-0.02317600697279,0.041997130960226,0.035206630825996],[0.050191588699818,0.0033407304435968,0.0038320370949805]],[[-0.026133785024285,0.0034385458566248,-0.080407947301865],[-0.014032207429409,0.08515727519989,-0.033393811434507],[0.041629374027252,-0.0084201358258724,-0.0058593056164682]],[[-0.024168347939849,-0.0058302897959948,0.042849931865931],[0.034511968493462,-0.035643018782139,0.058092828840017],[0.025332599878311,0.022353485226631,-0.027908023446798]],[[0.015792416408658,0.052056450396776,0.029475670307875],[-0.0092407390475273,0.031545054167509,0.016405610367656],[0.015769589692354,0.014746381901205,-0.097369477152824]],[[0.085830740630627,0.023585157468915,0.021953497081995],[-0.036529086530209,-0.0084952916949987,-0.0025436542928219],[0.057996407151222,-0.039606519043446,-0.025265116244555]],[[-0.018071131780744,0.015276771038771,0.025722293183208],[0.019453613087535,0.060638390481472,-0.039875172078609],[-0.029377790167928,-0.06108396500349,0.027614494785666]],[[0.024498466402292,0.027194458991289,0.020179767161608],[0.025254746899009,-0.059542156755924,0.0097196931019425],[0.013740576803684,0.037444520741701,0.015105783008039]],[[0.087139256298542,-0.084190391004086,0.004611125215888],[-0.11240962147713,-0.0011721217306331,0.02938680909574],[0.0055251992307603,-0.032168053090572,-0.00056184153072536]],[[-0.014991680160165,-0.0082973223179579,0.030332231894135],[-0.0022254982031882,-0.074972055852413,-0.02248109318316],[-0.050146248191595,0.076226525008678,0.052110031247139]],[[0.051307670772076,0.10255418717861,0.014939275570214],[0.030455505475402,0.016038842499256,0.0076775294728577],[0.0016221951227635,0.029306577518582,-0.0006720571545884]],[[0.056717038154602,-0.014645170420408,-0.0028827241621912],[-0.046411827206612,-0.094093143939972,-0.080087721347809],[0.01432376075536,0.026290897279978,-0.015425987541676]],[[-0.056508392095566,0.0022327078040689,-0.0029818110633641],[-0.0049646687693894,-0.012027909979224,-0.0062630278989673],[0.065019115805626,-0.0642114803195,-0.0065996665507555]],[[0.017743121832609,0.065793268382549,-0.002383831422776],[-0.064602807164192,-0.0042405989952385,0.017420602962375],[0.011660918593407,-0.0058213919401169,-0.0082156229764223]],[[-0.047724571079016,-0.011967424303293,0.053655870258808],[0.019456258043647,-0.0093075269833207,0.0083278575912118],[0.087472945451736,0.0034372974187136,0.010552055202425]],[[-0.033932954072952,0.023860778659582,-0.051948063075542],[0.021318225190043,0.034995459020138,-0.015610661357641],[0.097451873123646,0.050799157470465,0.044598046690226]],[[0.028879255056381,0.010856868699193,0.028164738789201],[-0.0096364105120301,-0.039173301309347,0.0088561633601785],[-0.037407599389553,-0.061848413199186,-0.06230142340064]]],[[[0.025675652548671,-0.018025061115623,0.019596992060542],[0.013811184093356,-0.0020063070114702,0.022366931661963],[-0.025525527074933,-0.010667124763131,-0.027253856882453]],[[-0.11466187238693,-0.010156914591789,-0.05251944065094],[-0.085176274180412,0.0898362621665,-0.043058969080448],[0.022003084421158,-0.03912340477109,0.0095160435885191]],[[-0.015699246898293,-0.023572873324156,0.096716202795506],[-0.054007831960917,0.0027924012392759,0.035854946821928],[-0.051565811038017,0.001463265856728,0.0023539792746305]],[[-0.019867049530149,-0.0075987656600773,0.006218200083822],[0.0627626106143,-0.038941204547882,0.017653223127127],[0.010189739055932,0.013684500008821,-0.048288136720657]],[[0.0085270926356316,-0.056827168911695,-0.022942904382944],[-0.011707043275237,-0.034492984414101,0.031133189797401],[0.01531445980072,0.012007407844067,0.057530600577593]],[[-0.033359613269567,0.031795188784599,0.076043762266636],[0.0083087785169482,-0.053325645625591,-0.0075548957102001],[0.1027300581336,0.04603511467576,-0.079253397881985]],[[-0.014979097992182,0.018101587891579,0.011628122068942],[0.040803477168083,-0.022619619965553,0.027106048539281],[-0.017343303188682,-0.014514432288706,0.058741703629494]],[[-0.0032849304843694,-0.010198378935456,0.041811604052782],[-0.0057856487110257,0.0035993866622448,-0.019923461601138],[-0.051287166774273,0.028497535735369,-0.014337942004204]],[[0.0057224952615798,0.0061219818890095,-0.058098185807467],[0.060624253004789,-0.0089559452608228,-0.020790612325072],[0.035355281084776,-0.069303311407566,0.076877929270267]],[[0.03311014175415,-0.051896139979362,0.061693642288446],[-0.041694160550833,-0.02889452688396,0.04649706184864],[-0.016881128773093,-0.0082436120137572,0.059526301920414]],[[-0.031166069209576,0.055603768676519,0.0074932817369699],[-0.046098176389933,0.026263477280736,0.061384350061417],[0.023000059649348,-0.0097245639190078,0.045452728867531]],[[-0.037618786096573,-0.037088681012392,-0.025458348914981],[-0.031959623098373,0.059233170002699,0.062866561114788],[0.091617599129677,0.09126790612936,-0.044084761291742]],[[-0.0029596802778542,0.043664913624525,0.081102028489113],[-0.010498743504286,0.082154624164104,-0.030259130522609],[0.04571682959795,-0.060600820928812,0.011127480305731]],[[-0.044340692460537,-0.061726555228233,-0.041429955512285],[0.0061845043674111,-0.041490294039249,-0.0022326954640448],[-0.10130789130926,-0.017957884818316,0.0072612441144884]],[[0.0047042993828654,0.068258576095104,0.018021937459707],[0.0092674782499671,-0.072767324745655,-0.045330084860325],[-0.047837421298027,0.027475083246827,-0.057884350419044]],[[-0.048985127359629,0.088737890124321,0.014448123984039],[0.017035769298673,-0.084468886256218,-0.0053434479050338],[0.080289609730244,0.012252666987479,-0.033851392567158]],[[-0.017100889235735,-0.041576758027077,-0.03480114787817],[-0.045135527849197,0.01267874520272,0.007909276522696],[-0.0060286582447588,0.020227920264006,-0.0077991927973926]],[[-0.039389956742525,-0.026004401966929,-0.014175069518387],[0.012689192779362,-0.023636348545551,-0.0072302189655602],[0.059409406036139,0.07205706089735,0.056661751121283]],[[-0.0083543173968792,-0.061691656708717,-0.005993518512696],[0.021139854565263,-0.075336210429668,-0.028507364913821],[-0.01012769062072,0.027269853278995,-0.035016510635614]],[[-0.053888186812401,0.025401905179024,0.015457364730537],[-0.055113423615694,-0.035152144730091,0.02043960057199],[-0.059322476387024,-0.051099583506584,0.00075470429146662]],[[0.00093658914556727,-0.058248739689589,-0.019817799329758],[0.0345803424716,0.0095496792346239,-0.0071179368533194],[0.068346567451954,0.0098379729315639,-0.025119118392467]],[[0.024546265602112,-0.039714600890875,0.051029648631811],[-0.05567042529583,0.052996933460236,-0.053232200443745],[-0.044764816761017,-0.038868650794029,0.0092584118247032]],[[-0.11558113247156,0.018437635153532,0.061720822006464],[0.0068364362232387,-0.017956715077162,-0.023793742060661],[0.017470011487603,0.0065003978088498,-0.011443383991718]],[[-0.011636287905276,-0.0033534872345626,-0.071583807468414],[0.01657448336482,-0.010541711933911,-0.029682599008083],[-0.040870621800423,0.010753476060927,-0.019942536950111]],[[-0.012152737937868,-0.056271523237228,0.096808806061745],[0.032083496451378,0.040650445967913,-0.028078468516469],[-0.028769578784704,-0.010920817032456,-0.0017283174674958]],[[-0.053540706634521,-0.036449950188398,-0.0038748080842197],[0.14713509380817,0.048506841063499,0.059443704783916],[0.035771980881691,-0.014525001868606,0.079191766679287]],[[0.095182336866856,0.028939191251993,-0.036064077168703],[0.0053874161094427,0.0016636460786685,0.055436030030251],[0.028146592900157,-0.031776003539562,0.040766254067421]],[[0.03474335372448,-0.017775865271688,0.084332622587681],[0.067706070840359,-0.0092139467597008,0.0099776415154338],[-0.032422430813313,-0.025015378370881,-0.0073949689976871]],[[-0.0086272461339831,-0.027476444840431,0.029589427635074],[-0.052996296435595,0.076135940849781,-0.00032395715243183],[0.063592076301575,0.017229186370969,0.033942326903343]],[[0.0021828694734722,-0.010998170822859,0.068175114691257],[-0.1096918284893,-0.010561159811914,-0.029288118705153],[0.044603191316128,0.021186668425798,0.058665618300438]],[[-0.051463857293129,0.074559353291988,-0.050025068223476],[-0.024636985734105,-0.02948010712862,-0.027408899739385],[0.051215667277575,-0.006921399384737,0.062767423689365]],[[-0.046015612781048,-0.0091404411941767,0.027217131108046],[-0.035824377089739,-0.020979167893529,0.036034755408764],[-0.023581456393003,0.0040963739156723,-0.051332578063011]],[[0.050427187234163,-0.020344553515315,-0.031898707151413],[0.009333997964859,-0.07393429428339,0.0075824288651347],[0.082708366215229,-0.0033789980225265,-0.047468382865191]],[[-0.030607409775257,-0.061796855181456,0.08871391415596],[0.052613630890846,0.045556455850601,0.061564605683088],[-0.037164684385061,-0.023026902228594,-0.020790297538042]],[[-0.01137868873775,-0.011175418272614,-0.0155318826437],[0.049673855304718,0.0098514631390572,0.014829409308732],[0.042975056916475,-0.097699768841267,0.051741790026426]],[[0.010810408741236,0.036311056464911,-0.01444221008569],[0.054955463856459,0.013855460099876,-0.047339476644993],[0.055015340447426,0.014216607436538,-0.035137508064508]],[[0.039789538830519,0.0022114021703601,0.032794155180454],[0.050716985017061,-0.0030194327700883,0.011249105446041],[-0.013552501797676,-0.037311267107725,0.046233635395765]],[[-0.024834120646119,-0.029596939682961,0.03948924317956],[-0.01982219517231,-0.027455793693662,-0.012462141923606],[0.0040538525208831,0.0076233767904341,0.084565721452236]],[[-0.027233380824327,-0.067467235028744,0.0084922052919865],[-0.0049574160948396,-0.031024269759655,0.055535387247801],[0.021290728822351,0.018013045191765,-0.0097861643880606]],[[-0.02488336712122,0.067033365368843,0.029565017670393],[0.011277917772532,-0.010736029595137,-0.038601789623499],[0.0056512490846217,0.0049951262772083,-0.032854110002518]],[[0.016444079577923,0.01318100001663,0.055879805237055],[0.014078355394304,0.01357978861779,-0.045952998101711],[-0.029919110238552,0.042951364070177,-0.0349599160254]],[[0.042403813451529,-0.017886590212584,-0.0051067741587758],[-0.01936804689467,-0.051718067377806,0.024048324674368],[-0.02039816044271,-0.06904586404562,-0.026606446132064]],[[0.020853688940406,0.010378907434642,0.020986618474126],[-0.01409998908639,0.048192761838436,-0.032970704138279],[-0.050758425146341,-0.011252581141889,-0.015300448983908]],[[0.070125758647919,0.051509216427803,0.049642603844404],[-0.0039375177584589,-0.04568051174283,-0.095246963202953],[-0.021029191091657,0.022115498781204,0.018374847248197]],[[0.011880831792951,0.052704140543938,-0.024371499195695],[0.091303147375584,-0.016802661120892,0.0075653726235032],[-0.018768625333905,-0.027412429451942,-0.01869229786098]],[[-0.0066660642623901,0.014529405161738,-0.075165033340454],[0.072335943579674,0.038612950593233,-0.035964615643024],[-0.049941211938858,0.04351195320487,-0.011277008801699]],[[-0.02254750020802,0.023881781846285,0.02032857388258],[-0.038298178464174,0.002844033529982,0.062187306582928],[0.019268695265055,1.2605682059075e-05,0.037038870155811]],[[0.02270283177495,0.032024938613176,0.028702156618237],[-0.02235116250813,0.073014758527279,-0.027269521728158],[0.025789111852646,-0.02958357334137,-0.015146315097809]],[[0.017835015431046,-0.016329793259501,-0.013890973292291],[-0.024994626641273,0.048641949892044,-0.0036337389610708],[-0.020287284627557,0.071764558553696,0.0033787984866649]],[[-0.035892404615879,0.013255292549729,-0.011190447025001],[-0.018605299293995,0.052766904234886,0.032291181385517],[-0.033250153064728,0.01223882380873,0.0049992855638266]],[[-0.01666865684092,-0.056775119155645,-0.03021358884871],[-0.034385062754154,0.020041750743985,0.033367931842804],[0.035571947693825,0.027146574109793,0.045646611601114]],[[0.029062114655972,0.047344151884317,-0.024635517969728],[-0.063163496553898,0.052603233605623,0.055809106677771],[-0.039330832660198,-0.025654520839453,-0.024879144504666]],[[0.0061193290166557,0.038519769906998,-0.033551130443811],[0.14999105036259,-0.00094254472060129,-0.00563540821895],[0.037796162068844,-0.10540044307709,-0.078102007508278]],[[0.05656224489212,0.023230092599988,0.023040775209665],[0.035914245992899,-0.058013278990984,0.05343184620142],[-0.021081754937768,-0.0022449570242316,-0.050707865506411]],[[-0.015307178720832,0.023476717993617,-0.0010062268702313],[0.044462025165558,0.0082212258130312,-0.067085310816765],[0.010572434403002,0.020894037559628,-0.037758577615023]],[[-0.0037633508909494,0.019820626825094,0.037877049297094],[0.041145827621222,0.015664782375097,-0.030173743143678],[0.020792635157704,-0.05792497843504,0.021482825279236]],[[-0.012074487283826,0.013229708187282,0.015274103730917],[-0.019849427044392,0.047576904296875,0.0046361372806132],[-0.012576621957123,0.025681411847472,-0.0025861740577966]],[[0.0080162025988102,0.0031777992844582,0.030122451484203],[0.019445287063718,-0.04212499409914,0.0086694993078709],[-0.00076037418330088,-0.012248134240508,-0.0012369803152978]],[[-0.0077961962670088,0.021337395533919,-0.021823331713676],[-0.093616485595703,-0.03963290527463,-0.0083607053384185],[-0.048905421048403,0.043530963361263,0.065684638917446]],[[0.011007061228156,-0.014582433737814,0.035487540066242],[-0.029139798134565,-0.010632787831128,0.034226384013891],[0.026820847764611,0.003006876911968,-0.029112687334418]],[[0.0065120924264193,0.032566051930189,0.036890391260386],[-0.0074171307496727,-0.0580546669662,0.0014720066683367],[0.055539004504681,0.05613699182868,0.01820127479732]],[[-0.024548435583711,-0.01612694747746,0.026657292619348],[-0.011127090081573,-0.0057826987467706,-0.014030309394002],[-0.025709718465805,-0.015005804598331,0.015334751456976]],[[0.054615300148726,0.01353189535439,0.069714397192001],[0.032294381409883,-0.011586453765631,0.011181071400642],[-0.011769912205637,-0.0035627859178931,0.048638112843037]],[[-0.012312087230384,-0.025690261274576,-0.025910425931215],[-0.0625009983778,-0.039606790989637,0.019906338304281],[-0.021796632558107,0.032665316015482,0.016473095864058]],[[-0.038633078336716,0.01542329788208,0.065479122102261],[0.032777797430754,-0.06048995628953,-0.021592559292912],[0.02738544344902,0.051782328635454,-0.017563324421644]],[[-0.0017174906097353,-0.015177486464381,0.0484091155231],[-0.0024959021247923,-0.0078741833567619,0.017917186021805],[-0.0018402240239084,-0.053915418684483,-0.02731297723949]],[[-0.068343341350555,0.11356719583273,-0.045522086322308],[-0.064437195658684,0.04144348949194,-0.024012763053179],[0.032652091234922,0.018233561888337,-0.036969851702452]],[[-0.013467274606228,-0.0096935573965311,-0.00026165565941483],[-0.021046949550509,-0.049623247236013,-0.03602696955204],[0.014261414296925,0.12293386459351,-0.0011526833986863]],[[-0.0087539553642273,0.012887434102595,0.0080262618139386],[0.024967432022095,0.0051964628510177,0.016659695655107],[0.026172244921327,-0.013045805506408,0.034166414290667]],[[0.013863109983504,-0.00057688431115821,-0.059915721416473],[-0.1027228012681,-0.030659953132272,0.011192634701729],[0.043403133749962,0.0069731073454022,-0.010449833236635]],[[0.039288785308599,0.02077348344028,0.059441797435284],[0.030093193054199,-0.027394047006965,-0.0016693895449862],[0.02263081818819,-0.070219047367573,-0.031495913863182]],[[0.065739192068577,0.018148878589272,0.012911659665406],[-0.010650843381882,-0.07952768355608,0.071936435997486],[0.074929028749466,-0.082938276231289,-0.020395141094923]],[[0.021360693499446,0.064451523125172,-0.015151568688452],[0.0038132227491587,-0.012771406210959,0.0023913700133562],[-0.11498906463385,0.022072291001678,-0.030194640159607]],[[-0.054008208215237,-0.0067191836424172,0.053921200335026],[-0.0004240776761435,0.0021771572064608,0.061754241585732],[0.036197025328875,-0.024880073964596,0.050542514771223]],[[-2.3020344087854e-05,-0.016617676243186,-0.020227583125234],[0.036786288022995,0.054488334804773,0.0087467525154352],[0.00066945288563147,-0.041858676820993,0.025752484798431]],[[0.080488182604313,0.051197428256273,-0.022699689492583],[0.010483399033546,-0.040225565433502,0.085132867097855],[0.0030971376691014,-0.023070350289345,0.032936535775661]],[[0.099210165441036,-0.010638752952218,0.067812070250511],[-0.0092765809968114,-0.014998029917479,0.06273428350687],[-0.029001142829657,0.036887276917696,-0.014506669715047]],[[0.032437194138765,0.075244337320328,0.048096086829901],[0.033110540360212,0.02867205068469,-0.052308913320303],[0.076290145516396,-0.050195634365082,0.0085302982479334]],[[-0.012980106286705,-0.0014875568449497,-0.011166086420417],[0.019994612783194,0.030249807983637,0.024703424423933],[0.054426316171885,0.029393099248409,-0.024267641827464]],[[-0.025926720350981,0.065868802368641,-0.031353373080492],[0.0011127290781587,0.0076917973347008,0.0077341008000076],[0.070266462862492,-0.0088014462962747,-0.042844630777836]],[[0.011814657598734,-0.022533975541592,0.070845246315002],[-0.032026238739491,0.024734115228057,-0.011405001394451],[-0.0067585781216621,0.048336584120989,-0.064288206398487]],[[0.011587666347623,0.022255811840296,-0.020901378244162],[0.022047100588679,-0.0046669291332364,0.0015777737135068],[-0.017584362998605,0.00097238924354315,-0.0038867630064487]],[[0.036326110363007,-0.064783796668053,0.006174182984978],[-0.049344442784786,0.021788431331515,-0.023430548608303],[-0.040059473365545,0.090821959078312,0.020987534895539]],[[0.054307948797941,0.031761109828949,0.050648648291826],[0.022556319832802,-0.056177634745836,-0.093329273164272],[-0.047051575034857,-0.0063949320465326,0.044473581016064]],[[-0.029021902009845,0.011628211475909,0.028461802750826],[0.0080152461305261,0.13329745829105,-0.024516858160496],[-0.0028393405955285,-0.031831208616495,0.015619122423232]],[[0.0053008734248579,0.0074951006099582,-0.017257226631045],[0.0017039621016011,0.023771330714226,0.06339156627655],[0.016899641603231,0.012102652341127,0.010226734913886]],[[-0.042217127978802,0.089497424662113,-0.019362716004252],[-0.0034598219208419,0.11012468487024,-0.042179513722658],[-0.012813762761652,0.035744126886129,0.028065998107195]],[[0.08003356307745,-0.01454047113657,0.10876280069351],[-0.047713592648506,0.03607701510191,0.036679167300463],[-0.013436853885651,0.047842957079411,-0.026924194768071]],[[0.079908855259418,0.053386658430099,-0.03350281342864],[0.019967621192336,-0.064939722418785,-0.01206436008215],[0.037592802196741,-0.01915630698204,-0.056738205254078]],[[0.088597759604454,0.040195595473051,-0.081518642604351],[-0.052196022123098,0.055593632161617,-0.040640827268362],[-0.062054596841335,0.01958442106843,0.051734711974859]],[[0.057415131479502,-0.047005772590637,0.028356578201056],[-0.054306730628014,0.051655992865562,0.030433747917414],[0.044393818825483,0.010160684585571,-0.021400133147836]],[[-0.017973024398088,-0.010079212486744,0.049858447164297],[0.018425835296512,0.019228341057897,0.059104934334755],[0.033865045756102,0.023119742050767,-0.024367116391659]],[[0.0067914496175945,0.045607317239046,-0.0045549143105745],[-0.041114911437035,0.010960548184812,0.017956761643291],[0.060312543064356,0.018199902027845,0.0083989463746548]],[[0.006430427543819,0.019394492730498,0.0026042410172522],[-0.036763072013855,0.016830090433359,-0.0079498076811433],[0.00016161326493602,0.048350211232901,-0.00025876349536702]],[[0.0060701565816998,0.063070580363274,-0.026390738785267],[-0.00053546775598079,-0.0080531444400549,0.030087048187852],[0.05027537420392,0.049398269504309,-0.037966813892126]],[[-0.033485125750303,0.0033575145062059,0.020429765805602],[0.051430907100439,0.040951106697321,0.024769386276603],[0.017221305519342,-0.014560564421117,0.079955868422985]],[[0.030261676758528,-0.03508235886693,0.01571611315012],[-0.0056208707392216,-0.005634035449475,-0.014054533094168],[-0.043322645127773,-0.018184645101428,-0.023737149313092]],[[0.053969100117683,-0.076772823929787,0.017391964793205],[0.048776742070913,-0.020723719149828,0.051454395055771],[-0.068377241492271,-0.04242630302906,0.022393714636564]],[[-0.061593353748322,-0.012772678397596,0.032807912677526],[0.084693737328053,-0.027906145900488,0.050977006554604],[-0.0081868851557374,0.018316350877285,-0.06793524324894]],[[-0.041038785129786,0.0013990413863212,0.030153296887875],[0.0071711102500558,-0.011832426302135,0.034851770848036],[0.090945199131966,-0.081754438579082,-0.039819028228521]],[[0.074413292109966,-0.0018663905793801,0.045615620911121],[0.048569917678833,-0.062270551919937,0.025446247309446],[-0.035753518342972,0.006925041321665,0.060944613069296]],[[0.017762409523129,0.014054307714105,0.039638340473175],[-0.055229976773262,0.0048497822135687,0.056484434753656],[-0.025727242231369,-0.09230774641037,-0.014846722595394]],[[-0.024856189265847,-0.077146597206593,0.029782421886921],[-0.031355038285255,0.019861133769155,-0.078592427074909],[-0.10328007489443,0.068421892821789,-0.043880254030228]],[[0.03560746461153,0.039067890495062,-0.044047154486179],[-0.0015579811297357,-0.053066622465849,-0.034065645188093],[-0.012996034696698,-0.013429094105959,-0.023558342829347]],[[0.0081830341368914,0.042539831250906,-0.024164546281099],[-0.039728980511427,0.033639512956142,-0.014741064980626],[0.0080724824219942,0.045704253017902,0.0036972663365304]],[[0.058310333639383,-0.027165530249476,-0.057038947939873],[-0.016225326806307,0.013726241886616,0.025524294003844],[0.034488875418901,-0.0067849205806851,0.030545556917787]],[[0.028999933972955,-0.010004599578679,-0.049730569124222],[-0.035818908363581,0.0099715897813439,0.027387281879783],[-0.077460467815399,0.036114364862442,-0.024484420195222]],[[0.079852864146233,0.037165772169828,0.021453727036715],[-0.049566730856895,0.0064508910290897,0.0082750394940376],[6.81197270751e-05,0.033603828400373,0.071090213954449]],[[-0.015906693413854,-0.046510457992554,0.047605514526367],[0.039497695863247,0.051529433578253,0.0059004002250731],[0.011438534595072,-0.10646062344313,-0.01070265006274]],[[-0.10202863812447,-0.094682551920414,-0.0012508982326835],[-0.064783461391926,-0.071591652929783,-0.074310414493084],[-0.044623553752899,0.020469987764955,-0.089833915233612]],[[-0.0064769755117595,0.093583881855011,0.027348252013326],[0.031535260379314,0.017465729266405,-0.001497300574556],[0.0094709843397141,0.0013070072745904,0.017307294532657]],[[0.048710219562054,0.028635649010539,-0.0097899790853262],[0.008252240717411,-0.0062726489268243,-0.03474660217762],[0.016934683546424,0.0077117206528783,0.099079675972462]],[[-0.027396304532886,0.010400748811662,0.069980017840862],[0.027276610955596,0.068946599960327,-0.014932711608708],[-0.017384942620993,-0.018006360158324,-0.038138132542372]],[[-0.085753954946995,0.056511085480452,-0.017759749665856],[-0.019345004111528,0.005383565556258,-0.04603011906147],[-0.066729247570038,-0.054061140865088,-0.046302691102028]],[[0.04253638535738,-0.047227963805199,0.0084930555894971],[-0.052358545362949,-0.084717638790607,0.078188307583332],[-0.03387239202857,0.073314636945724,0.073542430996895]],[[0.0038611048366874,-0.029191328212619,-0.059353210031986],[0.025847876444459,0.018031725659966,-0.010519850999117],[0.015432826243341,-0.025720417499542,-0.059629652649164]],[[0.08517824113369,-0.02131980471313,-0.0049929670058191],[-0.00035818148171529,-0.02995633892715,-0.037162467837334],[-0.040624398738146,-0.018297864124179,-0.0029788825195283]],[[-0.059530738741159,-0.019730731844902,0.028336504474282],[-0.020925672724843,-0.043913461267948,0.037745051085949],[-0.017078576609492,0.055045824497938,-0.046385645866394]],[[0.042594023048878,0.03515262901783,-0.073110207915306],[-0.023717802017927,0.053421746939421,-0.0091659687459469],[0.020105915144086,-0.061986692249775,-0.024384163320065]],[[0.051059707999229,0.0088525181636214,-0.018035724759102],[-0.0086069824174047,0.028950661420822,0.058496408164501],[0.02918179705739,0.052836664021015,0.026588207110763]],[[-0.0046141049824655,-0.025363568216562,0.026154734194279],[0.0087588960304856,-0.0030317357741296,0.035027626901865],[-0.046990640461445,-0.0011027292348444,-0.00032817298779264]],[[-0.068321622908115,0.04405228048563,0.015209145843983],[-0.027546033263206,-0.051926385611296,-0.0030061081051826],[0.019040256738663,-0.013011227361858,-0.071873657405376]],[[0.014134583994746,0.0768151730299,-0.09020671993494],[-0.007936860434711,0.030454257503152,-0.066040061414242],[0.031876154243946,0.0040970733389258,0.021285666152835]],[[-0.010466556996107,-0.050210036337376,-0.044048368930817],[0.021011762320995,0.047833371907473,0.021629955619574],[-0.067091807723045,-0.054526958614588,0.011832841672003]],[[0.0024275986943394,-0.042404778301716,0.044714171439409],[-0.047814015299082,-0.031173691153526,-0.022585837170482],[-0.017329355701804,-0.032255757600069,0.057087976485491]],[[0.0022802038583905,0.033824305981398,-0.030451495200396],[-0.025103379040956,0.0179387871176,0.034047052264214],[-0.047870948910713,-0.022382197901607,0.0042410721071064]],[[0.013698525726795,0.0038203950971365,0.0047511770389974],[0.022994875907898,0.065254800021648,0.0097526973113418],[-0.052073135972023,-0.055471576750278,0.019366815686226]],[[-0.056401569396257,-0.055441647768021,0.029721714556217],[-0.033022630959749,0.065609842538834,0.030824527144432],[-0.0066610872745514,-0.0082532679662108,0.0076545285992324]]],[[[0.021325308829546,-0.0035272701643407,0.010446207597852],[-0.014766236767173,0.075119510293007,-0.03509708121419],[0.075144082307816,-0.00054909090977162,-0.0059802196919918]],[[-0.055906236171722,0.067925907671452,-0.0036759180948138],[-0.06264740973711,0.07289332151413,0.01513010635972],[0.0018929642392322,-0.022401317954063,-0.093741521239281]],[[-0.031384278088808,-0.0020831325091422,0.0059699742123485],[0.011615303345025,0.0024780572857708,-0.023036507889628],[0.055341716855764,-0.0070269876159728,-0.065455384552479]],[[0.024589158594608,-0.066650070250034,-0.036206636577845],[-0.049005929380655,0.0013466652017087,0.0097628310322762],[-0.0097420355305076,-0.013854827731848,-0.057995963841677]],[[-0.079156577587128,-0.034603375941515,-0.017612246796489],[0.034165687859058,0.005191792268306,0.085669457912445],[0.0098755182698369,0.019741332158446,-6.5963293309323e-05]],[[0.051532592624426,0.00079747952986509,-0.025660119950771],[-0.043764989823103,0.017016209661961,0.0082182511687279],[0.043425042182207,0.030744658783078,0.028753163293004]],[[0.075102858245373,-0.0033780366647989,0.02088463678956],[-0.0064733596518636,0.0011702242773026,-0.026182247325778],[0.023379588499665,-0.039549760520458,-0.050318237394094]],[[0.055322766304016,-0.068009249866009,9.1400266683195e-05],[-0.045547585934401,-0.00039823332917877,0.023908188566566],[0.052306436002254,0.020612202584743,0.041460383683443]],[[-0.0022831202950329,-0.0010641084518284,-0.0480080768466],[0.0030394131317735,-0.065239578485489,-0.0083887735381722],[0.02639208547771,-0.019843762740493,-0.092928484082222]],[[0.089642591774464,0.068572200834751,0.078947953879833],[-0.14308197796345,0.0096624745056033,-0.014273878186941],[0.01874434016645,0.050404030829668,0.15448099374771]],[[-0.021279232576489,0.020431887358427,-0.016109788790345],[-0.062275860458612,-0.12031888216734,0.067547991871834],[0.02825128287077,0.033296354115009,-0.01203705649823]],[[0.034535642713308,-0.023036826401949,0.052751921117306],[0.03023705072701,0.020960321649909,0.049340017139912],[-0.095196105539799,-0.032947760075331,0.03396562859416]],[[0.016400804743171,0.048933111131191,0.067538306117058],[-0.075243510305882,-0.049180652946234,-0.017668394371867],[0.028996916487813,0.038683228194714,0.029255658388138]],[[0.018204484134912,-0.0091443406417966,-0.042134989053011],[0.017712386325002,-0.03863824531436,0.0014691099058837],[-0.024332065135241,0.023785822093487,0.052800610661507]],[[0.12464793026447,0.13723403215408,0.022652411833405],[0.012527388520539,0.064162202179432,0.078002721071243],[0.05689550563693,-0.027882216498256,0.058414075523615]],[[-0.051257275044918,-0.023818079382181,-0.035831294953823],[-0.03516348451376,-0.025957811623812,0.0026159253902733],[-0.077746361494064,-0.0095194354653358,-0.072360999882221]],[[0.025300418958068,-0.028934735804796,0.019905347377062],[0.046358846127987,0.0201161429286,-0.00041803074418567],[0.0047299885191023,-0.033606365323067,-0.038486640900373]],[[-0.013822041451931,-0.056685902178288,-0.025593308731914],[0.021200004965067,0.0086408033967018,-0.0043679992668331],[-0.0056168003939092,-0.0034287360031158,0.032484114170074]],[[0.079085744917393,0.027213571593165,0.0014079019892961],[-0.04786691069603,0.012561703100801,0.0060034608468413],[-0.004451013635844,-0.062429938465357,-0.0035737501457334]],[[0.015940664336085,0.031359106302261,0.028627578169107],[0.011341759935021,-0.020592141896486,-0.097860485315323],[-0.088521063327789,0.025260496884584,0.011221111752093]],[[-0.083432637155056,-0.066430814564228,-0.0069081517867744],[0.041771192103624,-0.035090066492558,0.043837752193213],[0.068759858608246,-0.0091536538675427,0.034550741314888]],[[0.059620536863804,0.068637333810329,0.084812216460705],[-0.0025038300082088,0.086652971804142,-0.015803115442395],[0.05531869456172,0.052590891718864,0.11027068644762]],[[0.001179029699415,0.045389201492071,0.12780882418156],[-0.064448222517967,-0.0071973139420152,-0.0013111900771037],[0.028214486315846,0.014798820950091,0.066842511296272]],[[0.052797883749008,-0.033333085477352,-0.004250496160239],[-0.0091171925887465,0.07903878390789,-0.014151867479086],[0.035219721496105,-0.023971287533641,0.015492802485824]],[[0.042910873889923,0.021857472136617,-0.048941664397717],[-0.070191718637943,0.0091637130826712,-0.0011517493985593],[0.023203019052744,0.048897825181484,0.026321386918426]],[[0.077386982738972,-0.0085624381899834,0.063555903732777],[0.022644147276878,-0.021093051880598,-0.011147948913276],[0.054564852267504,-0.044291507452726,0.040858253836632]],[[-0.025703461840749,-0.01059150416404,-0.0026741628535092],[0.065718203783035,0.050716951489449,0.020539795979857],[-0.0035558908712119,-0.02182581461966,-0.017582135275006]],[[0.035508491098881,-0.055952537804842,0.0020499411039054],[-0.044564258307219,-0.01914494857192,0.038556143641472],[-0.018041567876935,0.043188109993935,0.028436655178666]],[[-0.026748748496175,-0.011353044770658,-0.017797600477934],[0.0065509811975062,-0.042103655636311,0.010872174054384],[0.0745949447155,-0.018830915912986,0.031347181648016]],[[0.015009762719274,-0.061956509947777,0.044033020734787],[-0.048405677080154,-0.014670652337372,0.07231929153204],[0.073813326656818,0.040296051651239,0.079702287912369]],[[0.044862095266581,-0.018918054178357,-0.05748251453042],[0.020037304610014,-0.003111224854365,-0.0039866254664958],[-0.022525010630488,0.0069683496840298,-0.02640575170517]],[[-0.019399542361498,0.011172614060342,0.050677429884672],[-0.0033503426238894,0.01275660097599,0.039776917546988],[-0.026601383462548,-0.057895865291357,0.031601041555405]],[[0.035610072314739,0.017095442861319,-0.0071579678915441],[-0.068299278616905,0.046981610357761,0.023992611095309],[0.011973071843386,0.054397620260715,0.018829967826605]],[[0.035595402121544,0.0030167796649039,-0.058427978307009],[0.047769527882338,-0.056211452931166,0.0081157861277461],[0.029484327882528,-0.032247185707092,0.0053225103765726]],[[0.014989730902016,-0.00057500251568854,-0.042348951101303],[-0.0021143555641174,0.04490989819169,0.030568294227123],[-0.0070884888991714,0.001542245503515,-0.026407979428768]],[[-0.028226839378476,0.0031618769280612,-0.030387654900551],[0.030529594048858,0.0075473845936358,-0.069353193044662],[-0.036652091890574,-0.035086132586002,0.013673076406121]],[[-0.039544783532619,-0.022874632850289,-0.036136422306299],[0.017702490091324,-0.0059052729047835,0.045294191688299],[0.040885299444199,0.05582581833005,-0.087081059813499]],[[-0.053140059113503,0.034735102206469,-0.046801514923573],[-0.024997701868415,0.027959458529949,-0.00090033950982615],[-0.0060675404965878,-0.055516708642244,0.0057875490747392]],[[0.024792855605483,0.043301813304424,0.0059143397957087],[0.032938659191132,0.028184434399009,-0.045672379434109],[-0.030849443748593,0.0027193264104426,0.020893204957247]],[[-0.042239122092724,0.069507174193859,-0.014339977875352],[-0.015243827365339,0.026693381369114,-0.0061032236553729],[-0.022372126579285,0.036365337669849,-0.035313908010721]],[[0.0050885495729744,0.0063409442082047,0.019479218870401],[0.0050454190932214,0.057410750538111,-0.01698325201869],[-0.010357785969973,0.005856963340193,-0.035336326807737]],[[0.021729458123446,0.019624680280685,0.0040877521969378],[-0.014346241950989,-0.036370988935232,0.0052709146402776],[0.03119077719748,-0.0046567167155445,-0.019298300147057]],[[-0.038724139332771,0.021022757515311,0.092928260564804],[-0.064131297171116,0.010077059268951,0.040635701268911],[0.053962592035532,0.058978263288736,-0.017840500921011]],[[-0.059383176267147,-0.00030647899257019,-0.079532451927662],[-0.0042882757261395,0.08820591121912,-0.0076508852653205],[-0.056175619363785,-0.036041080951691,-0.051078248769045]],[[-0.074541307985783,0.03334628418088,-0.019311051815748],[-0.12370249629021,0.067892700433731,0.027607515454292],[-0.014755081385374,0.035456586629152,0.03191214799881]],[[0.093474544584751,0.061537276953459,0.034511867910624],[0.0047431555576622,0.032288987189531,0.041285492479801],[0.027712121605873,-0.014685380272567,0.019604500383139]],[[0.055454328656197,-0.084144301712513,-0.048283569514751],[-0.0019055511802435,0.039062429219484,-0.012325371615589],[0.041993539780378,0.036513827741146,0.027871726080775]],[[0.14825843274593,-0.0015166349476203,0.039901901036501],[-0.045185029506683,-0.0062480634078383,-0.031740888953209],[0.025089643895626,-0.015640866011381,0.081404879689217]],[[-0.062735952436924,-0.050571918487549,0.079916849732399],[-0.065327644348145,-0.021845856681466,0.0036429741885513],[0.056318793445826,-0.037761110812426,0.025227934122086]],[[0.0086186584085226,0.046478025615215,-0.0096900556236506],[0.025738481432199,-0.020942736417055,0.031981740146875],[-0.059267021715641,0.0033750410657376,-0.01589073985815]],[[-0.030800877138972,0.033758245408535,-0.028841340914369],[0.025380924344063,-0.072375118732452,-0.028692673891783],[-0.12751890718937,0.050471987575293,-0.060952994972467]],[[-0.1069189235568,-0.051135774701834,0.003186030080542],[-0.037572868168354,0.047233149409294,-0.019790843129158],[-0.0041276053525507,0.016901658847928,0.022805469110608]],[[-0.058572296053171,0.043778412044048,-0.047558661550283],[-0.083240531384945,0.010430167429149,-0.003696751082316],[-0.033253144472837,-0.017422020435333,-0.046392727643251]],[[0.088846102356911,0.036413639783859,-0.034579426050186],[-0.041526690125465,0.01017152890563,0.051443677395582],[0.013647258281708,-0.0017637022538111,0.020387213677168]],[[0.077964432537556,0.061832036823034,0.044881694018841],[-0.012795057147741,-0.0022428149823099,-0.029079904779792],[0.0053597562946379,-0.027846908196807,-0.013735153712332]],[[0.0096841342747211,-0.029940726235509,-0.01030030939728],[0.015337197110057,0.056341949850321,-0.0057754782028496],[0.066114239394665,-0.04169550538063,0.03547577559948]],[[0.00010960940562654,-0.050611820071936,-0.053861174732447],[-0.057354815304279,0.042077321559191,-0.016698164865375],[-0.017909133806825,-0.045885872095823,0.040299780666828]],[[0.11498960852623,0.002517752815038,-0.010035420767963],[0.0026660629082471,0.020597102120519,-0.021662715822458],[-0.0073507684282959,-0.031628090888262,-0.0039910762570798]],[[-0.010177487507463,0.063577800989151,0.060233201831579],[-0.00022717392130289,0.047516725957394,0.047136038541794],[-0.000490109086968,0.0089777549728751,0.024687035009265]],[[-0.029645457863808,0.0046884948387742,0.038358710706234],[0.093058831989765,0.027189621701837,0.041762296110392],[0.02974009886384,-0.035431336611509,0.020955165848136]],[[-0.055477678775787,0.066196739673615,0.032334625720978],[0.010883999057114,-0.0029604609590024,-0.029863033443689],[-0.024084923788905,-0.043799877166748,0.033755950629711]],[[-0.038786511868238,-0.070244379341602,-0.00068743439624086],[-0.094596773386002,-0.058979295194149,-0.037123076617718],[0.023443160578609,0.047462869435549,0.061528742313385]],[[0.01559398882091,0.018192503601313,0.058822914958],[0.010280041955411,-0.014212299138308,-0.032094068825245],[-0.044819336384535,-0.080394685268402,0.0085146464407444]],[[0.018770676106215,-0.016930339857936,0.046417135745287],[-0.0095345424488187,0.047019261866808,0.035333439707756],[-0.0011440032394603,-0.0054536899551749,-0.03651126101613]],[[-0.062916986644268,0.034489400684834,-0.019728066399693],[-0.033395513892174,0.054776556789875,0.060112338513136],[-0.083684213459492,0.075840026140213,-0.056087221950293]],[[-0.070442222058773,-0.0084437420591712,-0.018447609618306],[-0.040024466812611,-0.12193014472723,-0.013673434965312],[-0.057970531284809,-0.012832719832659,-0.063535943627357]],[[0.070272162556648,0.09455481171608,0.019454371184111],[-0.050013657659292,-0.12765315175056,0.067472085356712],[0.036965951323509,-0.0050749406218529,0.026473481208086]],[[0.013473759405315,0.036719892174006,0.0044700158759952],[0.076373226940632,0.045392125844955,-0.039918705821037],[0.02058576233685,0.035948429256678,-0.010772639885545]],[[-0.016631348058581,0.059123642742634,-0.057420123368502],[0.013343313708901,0.023089792579412,0.062098063528538],[-0.015812464058399,-0.087785229086876,-0.047096069902182]],[[0.017086058855057,-0.049426145851612,0.03761637583375],[-0.064536362886429,-0.0083570824936032,0.068955011665821],[-0.0036059957928956,-0.035197801887989,-0.018032340332866]],[[-0.043114587664604,0.091719597578049,-0.0067004607990384],[0.010287463665009,-0.059371221810579,-0.025947460904717],[-0.022081930190325,0.0030923248268664,0.013182266615331]],[[0.078978359699249,-0.0050059724599123,0.021292483434081],[0.01038035005331,0.033762086182833,0.0019126618281007],[0.045278295874596,-0.014615779742599,0.012616939842701]],[[-0.001333064516075,0.060944329947233,-0.002752075670287],[-0.0077332803048193,-0.023204766213894,-0.019115868955851],[0.030467754229903,0.0040939771570265,0.11538200825453]],[[-0.016295026987791,0.0046160859055817,0.023150408640504],[-0.043387461453676,0.0044101383537054,-0.022298956289887],[-0.0027168025262654,0.11453226208687,0.0095233209431171]],[[-0.0059065287932754,-0.037618070840836,0.03334242478013],[0.027627173811197,0.00065453216666356,-0.021252492442727],[0.021897988393903,-0.016956513747573,0.00097939337138087]],[[-0.031846731901169,0.00046414890675806,-0.028866481035948],[-0.05755528062582,0.0070217745378613,0.058016560971737],[-0.0022747237235308,0.045935075730085,-0.02239310182631]],[[0.0016413467237726,-0.0031181136146188,0.089434646070004],[0.086406126618385,0.024123365059495,-0.068792805075645],[0.078304372727871,0.0074573326855898,0.0021305654663593]],[[0.07306569814682,-0.029888624325395,0.033787906169891],[0.027298200875521,0.013665950857103,0.049145139753819],[-0.061033524572849,0.061968460679054,0.028195956721902]],[[0.0047054262831807,-0.0025791148655117,0.015259060077369],[0.035267602652311,0.033513348549604,0.014476736076176],[-0.063438601791859,0.10033087432384,0.0086261797696352]],[[-0.0009605911327526,-0.02567557618022,-0.0074818395078182],[-0.097001820802689,0.015345141291618,0.044303718954325],[-0.020353367552161,0.01114003546536,-0.013615006580949]],[[0.016902314499021,0.022695563733578,-0.033788487315178],[-0.078371614217758,-0.035726346075535,-0.0035302489995956],[0.018367411568761,-0.030120268464088,-0.033032905310392]],[[-0.033697422593832,0.066644467413425,-0.0050093666650355],[-0.067130371928215,-0.062505498528481,-0.001278133597225],[0.011864187195897,-0.0062266220338643,-0.0060876337811351]],[[-0.05356964841485,0.084304638206959,0.0042549013160169],[0.02356437407434,-0.032274805009365,0.056856203824282],[0.047483090311289,-0.011271328665316,0.049878530204296]],[[-0.045411694794893,-0.00880734808743,0.064978301525116],[0.029695419594646,-0.042606435716152,-0.043466735631227],[0.00044408265966922,-0.00587457139045,-0.044010698795319]],[[-0.013838400132954,-0.01053711026907,-0.053633101284504],[0.0064990664832294,-0.01171063259244,0.0077075408771634],[-0.076609253883362,0.03567511215806,-0.0090941842645407]],[[-0.044396832585335,0.091922007501125,0.015779964625835],[-0.036969691514969,-0.015321832150221,0.018769767135382],[0.065338864922523,-0.0296037402004,0.044792547821999]],[[-0.079303868114948,0.010904247872531,0.048836048692465],[0.1041100397706,-0.016399558633566,-0.01984554156661],[0.020458552986383,-0.039154246449471,-0.01815639808774]],[[0.011232261545956,0.074762426316738,0.017826391384006],[0.013505796901882,0.078412108123302,-0.0072411000728607],[0.014246339909732,-0.012429005466402,0.083266548812389]],[[0.04330250248313,-0.095845088362694,-0.039495542645454],[0.0046441308222711,-0.015531505458057,0.055200602859259],[-0.070995107293129,-0.075956679880619,0.016373736783862]],[[0.061715878546238,0.046229131519794,-0.044707059860229],[-0.019728878512979,-0.00096673483494669,-0.03029396943748],[0.060527924448252,-0.010992118157446,0.0032010183203965]],[[-0.029053242877126,-0.061111569404602,-0.029918355867267],[0.081907629966736,-0.036051586270332,0.052242550998926],[-0.042135693132877,-0.070153027772903,0.076161794364452]],[[0.02708781324327,0.0064856382086873,-0.031341273337603],[-0.021139547228813,0.090268932282925,0.14382423460484],[0.0053890869021416,-0.043851681053638,0.0087387124076486]],[[0.035679075866938,-0.024756444618106,-0.023730916902423],[-0.024437922984362,-0.10642771422863,0.09472730755806],[0.01466550398618,-0.001630726037547,-0.027461480349302]],[[0.022107148543,0.034599989652634,-0.014860571362078],[-0.015265395864844,-0.03248555958271,0.011726326309144],[0.090617336332798,0.052433744072914,-0.0069254767149687]],[[-0.020267264917493,-0.030110729858279,0.03201450034976],[0.0063834660686553,0.0037576998583972,0.0097090005874634],[-0.020133759826422,0.072742320597172,0.039512798190117]],[[0.068994916975498,0.039886690676212,0.041530966758728],[0.05911323800683,-0.018048044294119,-0.0034335157833993],[0.024925880134106,0.082786247134209,-0.038391228765249]],[[0.11165915429592,0.056631419807673,-0.028982188552618],[0.015606919303536,-0.048925668001175,0.050178445875645],[-0.06672228127718,0.012742903083563,0.065794393420219]],[[-0.032500386238098,0.0021234408486634,0.1048496067524],[-0.012221745215356,-0.028317216783762,0.012680752202868],[-0.0024908406194299,0.0066896686330438,0.020281197503209]],[[0.015646681189537,-0.095101349055767,0.069890819489956],[-0.028300290927291,-0.045996457338333,0.044044483453035],[0.026062753051519,-0.0074266698211432,0.014615635387599]],[[-0.088728487491608,-0.019689671695232,-0.0057614292018116],[0.053615044802427,-0.045757308602333,0.069967120885849],[-0.0028990507125854,0.09067290276289,-0.074868753552437]],[[-0.04892847314477,-0.019092222675681,-0.0027415286749601],[0.0060173994861543,-0.011985663324594,0.039069935679436],[-0.053708493709564,0.057292938232422,0.019179373979568]],[[0.030373508110642,0.05656061694026,0.063176967203617],[0.026441249996424,-0.018641941249371,0.023856144398451],[0.08248744904995,0.086669132113457,0.041789434850216]],[[-0.093605063855648,0.008034810423851,-0.0096606211736798],[-0.003517453558743,-0.017068447545171,0.088313437998295],[0.0036238941829652,0.081279374659061,0.013887081295252]],[[0.061233550310135,-0.024857128039002,-0.029191602021456],[0.001587190432474,0.015021450817585,0.046217184513807],[0.06804421544075,-0.070698492228985,0.058483827859163]],[[0.055502917617559,0.098245657980442,-0.00071276852395386],[0.0081803044304252,-0.016886774450541,-0.044949240982533],[-0.023814568296075,0.066834218800068,0.048014927655458]],[[0.072302348911762,0.019920390099287,0.022513756528497],[-0.052909187972546,-0.037353508174419,-0.043413776904345],[-0.020593235269189,0.00028197950450704,-0.0065958662889898]],[[-0.017892170697451,0.015333346091211,0.07667414098978],[0.085518196225166,-0.018576955422759,0.049544055014849],[-0.066760331392288,-0.04856539145112,0.030524458736181]],[[0.010758721269667,0.040911894291639,-0.050010167062283],[-0.05588099732995,-0.037618417292833,-0.041638895869255],[0.011665076948702,-0.02018347196281,-0.036964852362871]],[[-0.010602763853967,-0.022840762510896,0.05115820094943],[-0.0119035737589,0.052479408681393,-0.029700081795454],[0.03716479241848,0.036725286394358,-0.019731136038899]],[[0.032938610762358,-0.04773661121726,-0.02167410030961],[-0.013791549019516,-0.029316479340196,0.037155441939831],[0.037785686552525,-0.0089121367782354,0.027667514979839]],[[0.025856485590339,-0.020979521796107,0.071348577737808],[-0.033189509063959,-0.050908155739307,-0.035237316042185],[0.030112471431494,-0.0011936835944653,-0.013897582888603]],[[-0.039440371096134,0.065162070095539,0.042749881744385],[-0.041104268282652,9.2658650828525e-05,-0.10679456591606],[0.031582441180944,0.0177883207798,-0.0089126331731677]],[[0.006275097373873,0.03208589553833,0.030482519418001],[-0.07147092372179,-0.025725275278091,0.11121786385775],[-0.060293044894934,0.0085162417963147,-0.039109118282795]],[[-0.023929877206683,-0.008672459051013,0.00057343154912814],[0.0070307278074324,-0.01400151476264,0.064652398228645],[-0.045293003320694,-0.045280016958714,0.01583650149405]],[[-0.01947365142405,-0.0090160053223372,-0.016997795552015],[0.020350836217403,-0.06954338401556,-0.0027144711930305],[-0.072251342236996,0.045283995568752,0.02751200273633]],[[0.0015264166286215,0.064583942294121,0.0020888624712825],[-0.039773486554623,0.038872107863426,-0.05222687125206],[0.0046124774962664,0.043968930840492,-0.01796492561698]],[[-0.023885402828455,0.013001769781113,-0.038226038217545],[0.055771581828594,-0.024821965023875,-0.0068261558189988],[0.048120159655809,0.040880914777517,0.018005330115557]],[[-0.037683758884668,0.034786723554134,0.0023179370909929],[-0.037515353411436,0.016501881182194,-0.083020471036434],[-0.0052983947098255,0.0068914219737053,-0.029120499268174]],[[0.03154169023037,0.055725656449795,0.046068288385868],[-0.038077961653471,0.074404887855053,-0.047385845333338],[-0.034318998456001,-0.033722292631865,-0.0064207008108497]],[[-0.023064289242029,-0.037946507334709,-0.039665356278419],[-0.0036539987195283,-0.024911055341363,0.04896255210042],[-0.032228201627731,-0.032489132136106,-0.042252663522959]],[[0.021266415715218,0.014765365049243,-0.014364004135132],[-0.024721143767238,0.082303449511528,-0.030131176114082],[0.054595071822405,0.045559167861938,0.032585136592388]],[[0.05371068790555,0.032515536993742,-0.0082207713276148],[0.0003272688772995,-0.010254802182317,0.009920765645802],[-0.004693987313658,0.020240887999535,-0.037305820733309]],[[-0.026275778189301,-0.0096089271828532,0.003040786832571],[-0.022528016939759,-0.031027602031827,0.032490499317646],[-0.016382023692131,0.015853030607104,0.062220510095358]],[[-0.032496657222509,-0.0082682380452752,-0.054075349122286],[0.053238991647959,0.017449419945478,0.055073413997889],[0.011652562767267,-0.010374960489571,-0.090821832418442]],[[-0.00095141521887854,0.04190731793642,0.02570291608572],[0.04074265435338,0.0012738517252728,-0.059976276010275],[-0.013608082197607,0.019369054585695,0.013742620125413]],[[-0.0080228457227349,0.040056068450212,0.024345893412828],[-0.014593767933547,-0.0067473943345249,-0.0071947919204831],[0.071719855070114,0.068406261503696,-0.052702981978655]],[[-0.014510697685182,-0.027204234153032,0.019472967833281],[0.039660397917032,0.014208525419235,-0.011836904101074],[0.002872487064451,0.03297171369195,-0.016148081049323]],[[0.045486029237509,-0.030556451529264,-0.031662233173847],[-0.073610194027424,-0.074016809463501,0.08201440423727],[0.043876722455025,-0.058095786720514,0.020955951884389]]],[[[-0.0097699472680688,-0.0092074051499367,-0.023044604808092],[0.12243758141994,-0.035317394882441,0.018513850867748],[-0.010946994647384,-0.033184427767992,-0.0006856310646981]],[[0.012563231401145,-0.031452443450689,0.081861853599548],[0.032237108796835,-0.033383648842573,-0.047681726515293],[-0.10892190784216,0.021747805178165,0.0067246402613819]],[[0.10623306035995,0.083547040820122,0.029244573786855],[-0.01074009668082,-0.051916461437941,-0.051806528121233],[0.014756642282009,0.054696261882782,0.060811635106802]],[[0.015641929581761,0.019873347133398,0.069556079804897],[0.058682102710009,0.10917634516954,0.035943847149611],[-0.027167372405529,0.056424267590046,-0.030586138367653]],[[-0.021553710103035,0.0048436881043017,-0.15283207595348],[-0.01606703363359,0.055603936314583,0.021864280104637],[-0.047519095242023,-0.072461128234863,0.030836556106806]],[[0.082003764808178,0.084408365190029,0.057920597493649],[0.016281994059682,0.10812971740961,0.044576451182365],[0.050796866416931,-0.014832951128483,0.034998897463083]],[[0.063813760876656,0.040584936738014,0.067847020924091],[0.034005288034678,0.0026040689554065,0.011170617304742],[-0.068468160927296,0.046250034123659,0.027605267241597]],[[-0.032612275332212,0.024645214900374,0.076592214405537],[0.068021111190319,0.012014996260405,0.058723632246256],[-0.010868517681956,-0.032644156366587,0.11747210472822]],[[-0.046268783509731,-0.010289620608091,0.051884777843952],[0.049648631364107,0.042193848639727,0.00094811047893018],[-0.015951935201883,-0.021177381277084,0.025268567726016]],[[0.056509327143431,0.037575483322144,0.0079406332224607],[0.13644061982632,0.17827753722668,0.12216778099537],[-0.022631920874119,-0.20258645713329,-0.0025650400202721]],[[-0.04218465834856,0.0096861822530627,0.04390686750412],[0.02142777480185,0.011963818222284,0.083205953240395],[-0.050553560256958,0.042840108275414,-0.061928685754538]],[[0.076637238264084,0.0111468071118,0.074374906718731],[0.020611414685845,0.1124120131135,0.04795940220356],[0.074496395885944,0.027525521814823,-0.0021696684416384]],[[-0.042555637657642,-0.034349761903286,-0.048331648111343],[-0.050116930156946,0.0034823683090508,0.051280125975609],[-0.049629975110292,-0.019481463357806,-0.055387232452631]],[[0.043063141405582,-0.0076076560653746,-0.083209730684757],[0.036898355931044,-0.011595603078604,-0.085771657526493],[0.026975154876709,-0.01155433896929,0.025132685899734]],[[0.083572685718536,-0.033200949430466,0.11700680851936],[0.19239588081837,0.075350232422352,-0.021301070228219],[0.043470930308104,0.15607006847858,0.09900189936161]],[[-0.04272635653615,0.0529570505023,0.002594941528514],[0.012061165645719,0.030399827286601,0.034959316253662],[-0.015349486842752,0.012697626836598,-0.056818813085556]],[[0.039952486753464,-0.085499636828899,-0.0014669151278213],[-0.055168572813272,0.034119695425034,0.052764661610126],[-0.048583324998617,-0.027426259592175,0.062492914497852]],[[0.093140132725239,0.11397229135036,0.041499760001898],[-0.0098015302792192,-0.055183541029692,-0.051905062049627],[-0.015710916370153,-0.034177158027887,-0.1162992566824]],[[0.018233237788081,0.074070908129215,-0.002258074702695],[-0.1025964319706,0.0039596371352673,-0.02713936008513],[0.037750624120235,-0.062392447143793,-0.032904520630836]],[[0.041836645454168,-0.052363608032465,-0.053671821951866],[0.0040437839925289,0.0081782164052129,0.048100851476192],[-0.034127719700336,0.041345309466124,0.092345826327801]],[[0.061478450894356,-0.018742691725492,-0.004944653250277],[-0.00046515214489773,-0.015041563659906,0.053694874048233],[0.037132497876883,0.070428386330605,-0.019600560888648]],[[0.055354923009872,0.034674491733313,0.022732624784112],[0.092492461204529,0.053740970790386,0.098499789834023],[0.063213005661964,-0.024261724203825,0.00033159591839649]],[[-0.052298784255981,-0.016888074576855,0.013418830931187],[-0.023663150146604,0.014395759440958,-0.013292512856424],[0.040834859013557,-0.04137497395277,-0.082746811211109]],[[0.017226748168468,-0.03600425645709,-0.026120649650693],[0.11217392235994,0.037943419069052,0.016650455072522],[-0.14366744458675,0.006828386336565,-0.12125483900309]],[[0.01412492711097,-0.0071337232366204,-0.097709774971008],[0.035247944295406,0.035604331642389,0.032795403152704],[-0.042416382580996,0.15354500710964,-0.024303369224072]],[[-0.031515996903181,-0.073335193097591,0.011225884780288],[0.026886211708188,0.043363496661186,0.030061071738601],[-0.040165387094021,-0.014057088643312,-0.04340161755681]],[[0.051131002604961,0.015575840137899,0.027986051514745],[0.0211844407022,0.082767598330975,0.047845438122749],[0.10487396270037,-0.0083204694092274,0.034697920084]],[[-6.9816145696677e-05,0.056090004742146,0.053170520812273],[0.014110776595771,-0.010219973511994,-0.023155845701694],[0.015220724977553,-0.056554492563009,-0.037396807223558]],[[0.056888479739428,0.0011127876350656,0.075501188635826],[0.062427591532469,0.044179432094097,0.027349557727575],[0.058374457061291,0.0093191247433424,-0.069539174437523]],[[0.046554490923882,0.057167284190655,0.089021660387516],[-0.028335267677903,0.077206119894981,-0.043346088379622],[-0.0047838478349149,0.0098593095317483,-0.056371338665485]],[[0.0012668746057898,0.044415231794119,0.09893050044775],[0.0013994716573507,0.017926251515746,-0.067738063633442],[0.083381094038486,0.01945742405951,0.049445271492004]],[[-0.0093256961554289,-0.030198598280549,0.047788057476282],[-0.044725853949785,-0.075679235160351,-0.023063264787197],[0.071126736700535,0.04383909329772,0.071001939475536]],[[0.035639751702547,0.058972060680389,0.1401234716177],[0.076799310743809,0.024400683119893,0.0067392759956419],[-0.048015311360359,-0.098223939538002,-0.057075172662735]],[[0.092971108853817,0.025496896356344,-0.0044291196390986],[0.0099509507417679,0.031059006229043,0.083301156759262],[0.031455416232347,-0.014921020716429,0.052470408380032]],[[-0.020351072773337,0.011071055196226,0.030383430421352],[0.029903585091233,-0.060607198625803,-0.004439331125468],[0.0079379389062524,0.02360463514924,0.068482495844364]],[[-0.031947877258062,0.092508137226105,-0.0077335275709629],[-0.090670339763165,-0.062079947441816,-0.038085259497166],[0.059044934809208,0.0026343583595008,-0.069049179553986]],[[0.00032223260495812,-0.027586596086621,-0.0097754495218396],[-0.03669635206461,-0.05866850912571,-0.031919401139021],[0.03579318150878,-0.066261485219002,-0.081503078341484]],[[0.066996730864048,0.046660333871841,0.077823854982853],[0.031586710363626,0.073505647480488,0.021617088466883],[0.050504382699728,-0.00056171440519392,-0.019185815006495]],[[-0.015642195940018,0.070169232785702,0.053554136306047],[0.038786854594946,0.10515066236258,0.033794172108173],[0.026244727894664,-0.054861716926098,0.021985625848174]],[[0.033534120768309,-0.034934632480145,-0.037394005805254],[0.047187983989716,-0.042692877352238,0.019702207297087],[0.030931312590837,-0.036558702588081,-0.032074343413115]],[[0.025468271225691,-0.01194731798023,0.040798056870699],[-0.045176140964031,-0.041415330022573,0.01446180883795],[-0.012793770991266,0.038354407995939,-0.060034289956093]],[[-0.023338921368122,-0.012260516174138,0.0066264136694372],[-0.042107477784157,-0.021584512665868,-0.022141145542264],[0.024462709203362,0.074506759643555,0.046335585415363]],[[0.014056688174605,0.076232112944126,-0.017397040501237],[0.026657532900572,0.0012054381659254,0.052854254841805],[0.015930201858282,0.0080388421192765,0.098042085766792]],[[0.080106295645237,0.025382934138179,-0.028418252244592],[-0.035382304340601,0.080388210713863,0.0013192559126765],[0.12848921120167,0.013013725169003,-0.0600426197052]],[[0.088499583303928,0.024774771183729,0.098836019635201],[0.028036432340741,0.061876703053713,0.01619353890419],[0.084405533969402,-0.025604419410229,0.056855939328671]],[[0.019391052424908,0.03090195544064,-0.0022367117926478],[-0.03320337086916,0.015938570722938,-0.046403281390667],[-0.020551130175591,0.10593830049038,0.020376436412334]],[[0.02826833166182,0.0065411240793765,0.076620750129223],[-0.0042809494771063,-0.02017449401319,-0.094094529747963],[0.1250302195549,-0.081648752093315,0.012481240555644]],[[0.10512764751911,-0.0092694517225027,0.037419807165861],[-0.0091954628005624,0.020958481356502,-0.0088529186323285],[-0.088605962693691,-0.047948215156794,0.041648268699646]],[[0.040302764624357,-0.016443340107799,-0.048651918768883],[0.040402341634035,0.09875975549221,0.057266231626272],[-0.059344239532948,0.017890650779009,-0.021494392305613]],[[-0.00078912725439295,-0.0078080263920128,0.028544850647449],[0.040862698107958,-0.044188022613525,0.050347600132227],[0.028498735278845,0.059787251055241,0.0022493081633002]],[[-0.027015510946512,0.060615569353104,0.0047581004910171],[0.0023042794782668,-0.0955670773983,-0.030492015182972],[0.0057156030088663,0.017541132867336,0.056655220687389]],[[0.066587530076504,-0.092910833656788,0.12432460486889],[0.012122232466936,0.10338445007801,-0.019969437271357],[-0.05551315844059,-0.093348555266857,0.053870551288128]],[[-0.06595553457737,-0.080350339412689,-0.074993871152401],[-0.029515499249101,-0.0078551741316915,-0.011133178137243],[-0.016247009858489,0.0065304562449455,-0.041855219751596]],[[0.0040965238586068,0.024950355291367,-0.033254887908697],[0.06757740676403,0.041264336556196,0.11504866927862],[-0.12294639647007,-0.068474858999252,-0.057171788066626]],[[0.0038338874001056,0.044400423765182,-0.068750217556953],[0.00035265844780952,0.021183751523495,0.053575433790684],[0.055193655192852,-0.0081403916701674,0.062045376747847]],[[0.018683787435293,-0.027327517047524,-0.043375976383686],[0.032344195991755,-0.0870630890131,0.0059214979410172],[0.01384793408215,-0.036614660173655,-0.00079968350473791]],[[0.028559351339936,0.003445208305493,-0.057201966643333],[-0.012642838992178,0.02162853628397,-0.05560090765357],[0.040161114186049,-0.0063946438021958,0.041096318513155]],[[0.00081935647176579,0.013218631967902,-0.018055573105812],[0.041557896882296,0.051939014345407,0.0066007971763611],[-0.031838182359934,-0.099852934479713,-0.01679996214807]],[[-0.041910134255886,0.052429020404816,0.026083279401064],[0.046961475163698,0.064077481627464,0.011582247912884],[0.055385272949934,0.087915614247322,0.050926957279444]],[[0.038655068725348,-0.074639089405537,0.024615280330181],[-0.047981061041355,0.061811562627554,0.011483838781714],[0.0043932292610407,-0.0053614592179656,-0.025697875767946]],[[0.044270224869251,0.10110934078693,-0.026013541966677],[0.046434748917818,0.014780952595174,0.047943413257599],[-0.047511879354715,0.006714629009366,0.028446024283767]],[[-0.052509840577841,-0.013553908094764,-0.028874738141894],[0.020894560962915,0.01497383788228,0.13575723767281],[-0.02326057292521,-0.070778451859951,-0.13673247396946]],[[-0.050705321133137,-0.0041177207604051,0.097780831158161],[-0.025088449940085,-0.065967626869678,0.012870714999735],[-0.027934478595853,0.050614386796951,-0.0053840982727706]],[[0.00057838996872306,-0.0021757597569376,0.015766790136695],[0.0091889537870884,0.060578528791666,-0.044723443686962],[0.057706937193871,-0.097553409636021,0.024331238120794]],[[0.035449087619781,-0.011450281366706,0.073678940534592],[0.016606595367193,-0.085582591593266,0.023432549089193],[0.016411304473877,0.077223211526871,0.038850340992212]],[[0.067819073796272,-0.037270553410053,-0.087174735963345],[-0.028737638145685,0.0057426742278039,0.091869078576565],[0.074017710983753,-0.043941255658865,-0.057141475379467]],[[0.14290755987167,-0.027146108448505,0.076281651854515],[0.11907387524843,0.070199579000473,0.071620538830757],[-0.056718613952398,-0.037975311279297,-0.0055760084651411]],[[0.01467030774802,0.037872601300478,0.0020130921620876],[-0.030425190925598,0.039629850536585,0.012049471959472],[0.002504057250917,0.017393354326487,0.02526437304914]],[[0.021747460588813,-0.049355514347553,0.018118195235729],[0.064114324748516,-0.004962120205164,0.0019082464277744],[0.052584212273359,-0.018916016444564,0.040652491152287]],[[0.057250902056694,0.097748897969723,0.035941109061241],[-0.089582733809948,0.089225918054581,0.044635802507401],[-0.013591650873423,-0.032398097217083,-0.01278253365308]],[[0.071142219007015,-0.047142636030912,-0.0074288444593549],[0.035975314676762,0.0062785809859633,0.12065955996513],[0.011949482373893,0.024310998618603,-0.017002930864692]],[[-0.093076445162296,-0.025943664833903,0.10773149877787],[0.024193163961172,0.00022089826234151,0.032608386129141],[0.096764273941517,-0.057402200996876,0.0080940779298544]],[[0.025112446397543,-0.027072576805949,0.011394721455872],[0.070546761155128,0.047484617680311,0.03533985465765],[-0.0042761443182826,0.031940650194883,-0.079551227390766]],[[-0.089784689247608,0.015053236857057,0.048726696521044],[-0.046484991908073,0.030744316056371,0.010130955837667],[0.068823903799057,0.0036316160112619,0.071370162069798]],[[-0.036148473620415,0.043456990271807,-0.065233930945396],[-0.062776662409306,-0.018944138661027,-0.039559416472912],[-0.0092013971880078,-0.044450897723436,-0.082139775156975]],[[-0.017750365659595,0.057398714125156,0.14524431526661],[-0.0014746217057109,0.067086488008499,-0.063549689948559],[0.0048441123217344,0.082505084574223,-0.041964933276176]],[[0.10021214187145,0.083485640585423,0.10202657431364],[0.070713438093662,-0.079669378697872,0.063400730490685],[0.035745654255152,-0.065677776932716,0.021436594426632]],[[0.010315590538085,-0.00056298356503248,0.073742859065533],[0.034981720149517,0.075406789779663,0.086295582354069],[-0.037138178944588,0.0081291757524014,0.062802657485008]],[[-0.032857216894627,0.038677826523781,0.066207960247993],[0.012023376300931,-0.0002139185089618,0.017748590558767],[-0.039670810103416,0.042378086596727,0.11782260239124]],[[-0.041892863810062,-0.034200664609671,-0.057899333536625],[-0.08957626670599,-0.04405028000474,0.072927050292492],[-0.041346520185471,-0.06925306469202,-0.0033720575738698]],[[-0.0028696784283966,-0.0087340353056788,-0.050209544599056],[0.054035969078541,0.034993316978216,0.085101746022701],[-0.021949423477054,0.044515393674374,0.0064197303727269]],[[0.015306561253965,0.18689627945423,0.079111151397228],[0.049049522727728,-0.029060784727335,0.044386867433786],[-0.10084433108568,-0.037956658750772,0.051443196833134]],[[0.045013539493084,0.00020953496277798,0.059849888086319],[0.060748264193535,-0.071671299636364,0.012643787078559],[-0.062079019844532,-0.036377068608999,-0.050017856061459]],[[0.032703928649426,-0.014726442284882,-0.010094631463289],[-0.015041639097035,0.010118315927684,0.035775825381279],[-0.049049805849791,-0.098922498524189,0.096673555672169]],[[0.074984520673752,-0.07185186445713,-0.033319875597954],[-0.057654172182083,0.068296492099762,0.013051641173661],[0.025342881679535,0.057343818247318,-0.00092554197181016]],[[-0.00056490942370147,-0.039462644606829,-0.030394705012441],[-0.072591617703438,-0.014340875670314,0.025992717593908],[-0.087947882711887,0.029297698289156,0.0098174074664712]],[[0.022317837923765,-0.019105188548565,0.021304193884134],[0.045140687376261,0.076914690434933,0.015857251361012],[0.025658937171102,-0.030390283092856,0.006985945161432]],[[-0.046795908361673,-0.038767408579588,-0.019695609807968],[0.0245804451406,0.088742069900036,0.027604239061475],[-0.034143857657909,0.0602040104568,-0.062445092946291]],[[0.0054733790457249,0.043821603059769,0.048423655331135],[-0.039462815970182,-0.0030514702666551,-0.012842085212469],[-0.017193784937263,0.03351978957653,-0.029842387884855]],[[0.024325190111995,0.032636377960443,0.13956472277641],[0.063368201255798,-0.025533109903336,0.056912656873465],[0.0015003201551735,0.007916072383523,0.067309089004993]],[[-0.032857850193977,0.037094011902809,0.091860607266426],[0.046817474067211,-0.050940584391356,0.11348167806864],[0.0044592954218388,0.027407851070166,-0.032494716346264]],[[-0.0055850385688245,0.047507617622614,-0.0025843882467598],[-0.036847736686468,0.028494041413069,-0.061605233699083],[0.019683273509145,0.044244725257158,0.017702685669065]],[[-0.03793054074049,0.032599359750748,-0.10805136710405],[-0.019063210114837,-0.098274327814579,0.018711004406214],[0.0050875567831099,0.036267336457968,-0.059459116309881]],[[-0.02860607765615,-0.04494459554553,-0.01801960542798],[0.065162502229214,-0.026764379814267,0.05160515755415],[0.013262314721942,0.096818417310715,0.067487992346287]],[[0.013332329690456,-0.0010302525479347,0.054551143199205],[0.0021656656172127,0.013733295723796,-0.036805644631386],[-0.00034722208511084,0.079064406454563,-0.0025566399563104]],[[-0.082465223968029,0.056960392743349,-0.011540214531124],[-0.011601306498051,0.0041083535179496,-0.061353113502264],[0.040662553161383,0.026756033301353,0.019621407613158]],[[0.039193671196699,0.0071331234648824,-0.07746134698391],[-0.05027711391449,-0.02877464145422,0.071680493652821],[-0.092636965215206,-0.038753319531679,0.0064899367280304]],[[0.016608882695436,-0.019005266949534,-0.061082776635885],[0.11446197330952,0.10362789779902,0.034385796636343],[0.043907310813665,0.0083894925191998,0.010274001397192]],[[-0.071396097540855,0.046369656920433,0.0052930722013116],[0.13384173810482,0.070396244525909,-0.0095777725800872],[-0.07121966779232,-0.049034938216209,-0.059748068451881]],[[0.012884445488453,0.045328821986914,0.0023043085820973],[0.0049893315881491,-0.0014979565748945,0.023153010755777],[-0.038107663393021,0.042955365031958,-0.065471395850182]],[[-0.032508086413145,0.04290633648634,-0.0043155658058822],[0.0055190795101225,0.017859352752566,0.070422865450382],[0.011383982375264,-0.027021842077374,0.012952473945916]],[[-0.035764250904322,0.00027895951643586,0.10074972361326],[0.059111475944519,0.029597107321024,0.065405748784542],[0.082765899598598,0.013362097553909,0.092072419822216]],[[0.062727138400078,0.044162951409817,-0.043018531054258],[0.086912721395493,-0.022145973518491,0.057059444487095],[-0.019964473322034,0.035992205142975,-0.0045107426121831]],[[-0.028840590268373,-0.030636012554169,0.055881854146719],[-0.012437026016414,0.00059600040549412,-0.021591687574983],[-0.03006387129426,0.060730151832104,0.026135995984077]],[[-0.051770266145468,-0.034082967787981,0.019790709018707],[-0.0058443541638553,0.008739959448576,0.038852736353874],[0.068874053657055,0.021827546879649,-0.035668049007654]],[[-0.06739829480648,0.0015972753753886,-0.010370125994086],[0.0570711158216,0.06089137122035,-0.0097004882991314],[0.030779959633946,0.069069489836693,0.13014706969261]],[[-0.060584407299757,0.040838681161404,-0.031187992542982],[0.0018312280299142,-0.022862147539854,0.0079486928880215],[0.099284313619137,0.0372549071908,0.0031999663915485]],[[0.054773043841124,-0.065350860357285,0.041844706982374],[0.03509833291173,-0.043360121548176,-0.031197838485241],[0.010540259070694,-0.022358074784279,0.044065900146961]],[[0.030303673818707,-0.0089403307065368,-0.0039990618824959],[-0.0028184810653329,-0.078673616051674,0.0043214308097959],[0.090213268995285,0.00092500459868461,-0.054183758795261]],[[-0.0062131443992257,0.1311943680048,0.082541540265083],[-0.078389458358288,-0.053255740553141,0.0069479532539845],[-0.0048851021565497,-0.03735001757741,-0.060509033501148]],[[-0.12390443682671,-0.040119636803865,-0.009516098536551],[0.075778134167194,-0.018717208877206,-0.010034635663033],[0.019222220405936,-0.0057400921359658,-0.021799417212605]],[[-0.092264480888844,-0.015893405303359,-0.0093044592067599],[0.046640984714031,-0.083079144358635,0.1036176905036],[-0.020746521651745,0.014172176830471,-0.01888551749289]],[[0.08144074678421,0.00017360295169055,0.080641135573387],[0.0056126900017262,0.027069810777903,0.029652250930667],[-0.088527426123619,-0.035120017826557,0.063713103532791]],[[0.0073268073610961,0.017045376822352,-0.0018208977999166],[-0.049159590154886,-0.068373814225197,0.010780302807689],[0.076202243566513,0.04067862033844,-0.049211520701647]],[[-0.063177160918713,-0.052180700004101,-0.12442773580551],[0.032846260815859,0.015889143571258,0.014865793287754],[-0.091537110507488,-0.055116824805737,-0.05711779743433]],[[0.0044470471329987,0.0064375679939985,0.015994573011994],[0.012753888964653,0.092062450945377,0.096151307225227],[0.040605876594782,-0.079933345317841,-0.0047992700710893]],[[0.038721386343241,0.08462580293417,-0.023122368380427],[-0.025848556309938,0.024162827059627,-0.010834815911949],[0.070244759321213,0.0016857569571584,0.066324017941952]],[[0.022568419575691,0.023668043315411,0.051997780799866],[0.019410260021687,0.066216640174389,0.015071214176714],[0.035048101097345,0.030071415007114,-0.13915434479713]],[[0.093993864953518,0.00092184788081795,-0.071544900536537],[-0.11949875205755,0.057095848023891,0.012926190160215],[0.028601605445147,0.012852910906076,-0.012425466440618]],[[-0.090558521449566,-0.085324935615063,-0.043101914227009],[-0.040335141122341,-0.010794288478792,-0.057221736758947],[0.018862564116716,0.016016418114305,-0.055105157196522]],[[-0.051935162395239,-0.061645582318306,0.086628533899784],[0.029806649312377,0.078429363667965,0.053250573575497],[-0.037256501615047,-0.06999746710062,-0.01817706041038]],[[-0.052620530128479,-0.030455840751529,-0.036122292280197],[-0.019455462694168,0.058672178536654,-0.063868083059788],[-0.0013989906292409,0.033600505441427,0.0076758763752878]],[[-0.035755477845669,0.011011038906872,0.00058565632207319],[0.0093235485255718,-0.026647033169866,0.079197019338608],[0.028943946585059,-0.03973538056016,0.041584987193346]],[[-0.031684298068285,-0.034351494163275,-0.011060348711908],[-0.029324723407626,-0.041181296110153,-0.070287510752678],[-0.016257207840681,0.074043907225132,-0.0054305498488247]],[[0.026467489078641,-0.018281972035766,0.0081624928861856],[0.011482466012239,-0.022666132077575,-0.012285266071558],[0.00063707528170198,-0.013816162012517,-0.089869625866413]],[[-0.0017264985945076,0.055164538323879,0.052791528403759],[0.092676974833012,0.081078708171844,0.01014456152916],[-0.032205726951361,-0.019349403679371,0.073719993233681]],[[0.035633362829685,-0.0064120166935027,0.088139660656452],[-0.018130507320166,0.025800954550505,0.074274696409702],[0.0025510666891932,-0.086695462465286,0.12087946385145]],[[-0.0030139535665512,0.06740490347147,0.024435512721539],[-0.0066831200383604,0.076482139527798,0.0063225426711142],[-0.020815024152398,-0.049881912767887,0.0022496921010315]]],[[[0.036699689924717,0.054532360285521,-0.034286189824343],[-0.041086740791798,-0.0054544261656702,0.041316099464893],[-0.018135346472263,-0.0036098265554756,0.047652263194323]],[[-0.002373315859586,0.031883548945189,0.011782980524004],[0.022760111838579,0.031893938779831,7.8790668339934e-05],[-0.063215680420399,0.0033904374577105,0.0041323816403747]],[[0.0083702886477113,-0.012307562865317,0.065615713596344],[-0.037056677043438,0.095724433660507,0.077402174472809],[0.043582897633314,0.0053402525372803,0.025894125923514]],[[0.021252851933241,-0.0055860225111246,0.018655333667994],[-0.02101144567132,-0.030608860775828,-0.0031932021956891],[0.025368601083755,0.014194855466485,0.02828860655427]],[[-0.10940577089787,-0.030458644032478,0.029382638633251],[0.045614581555128,-0.0066744219511747,-0.080626793205738],[0.0081326616927981,0.042639743536711,0.046035580337048]],[[0.014111805707216,-0.076653033494949,0.0041086263954639],[0.034893330186605,0.072589583694935,0.0090466290712357],[-0.0056771445088089,0.060321066528559,0.0058900746516883]],[[0.019251087680459,-0.046274431049824,0.014353486709297],[-0.026657612994313,0.036630786955357,0.023517083376646],[-0.0020108902826905,0.043905220925808,-0.035925447940826]],[[0.019076861441135,-0.023773169144988,0.028035838156939],[-0.043233834207058,-0.028714107349515,0.0088085411116481],[-0.032901883125305,-0.028119567781687,-0.031216468662024]],[[0.012713599950075,0.014147479087114,0.067157253623009],[0.0024217928294092,0.086590237915516,-0.042601846158504],[0.05051938816905,0.04029593616724,0.044601865112782]],[[0.0802361369133,-0.049530260264874,0.065084509551525],[0.083264455199242,0.081011675298214,0.05450089648366],[0.061563387513161,0.10148152709007,0.10658967494965]],[[0.052466128021479,0.010555384680629,-0.0026278835721314],[-0.0069299140013754,-0.012526890262961,0.057493928819895],[0.076780915260315,-0.025205593556166,0.019166324287653]],[[0.091650381684303,-0.024000780656934,0.056632068008184],[0.021652333438396,-0.044424206018448,-0.018722476437688],[-0.011014427058399,-0.022529255598783,0.035122249275446]],[[-0.025525886565447,-0.085528045892715,-0.038606148213148],[0.016409227624536,0.061913754791021,0.070013873279095],[0.035505905747414,-0.026742586866021,0.050083354115486]],[[0.087686076760292,0.031298663467169,0.036745518445969],[0.014395802281797,0.0047284588217735,0.050836857408285],[0.029016576707363,-0.0061502107419074,0.034547701478004]],[[-0.018421461805701,-0.029520086944103,0.18087008595467],[0.12323515117168,-0.060576569288969,0.032685671001673],[-0.054919324815273,0.18198923766613,0.013351750560105]],[[-0.016933903098106,0.00069739570608363,0.0037137826438993],[-0.047734644263983,0.011191723868251,0.0023340578190982],[-0.079528965055943,0.025107057765126,-0.1066352725029]],[[0.023230124264956,0.013760722242296,0.026022247970104],[0.020254209637642,0.009785539470613,0.054800797253847],[0.00065155728952959,0.084462657570839,0.05507779493928]],[[-0.035800997167826,0.058776002377272,0.0044403076171875],[0.057904381304979,-0.021645493805408,0.023687239736319],[0.033107370138168,-0.026863303035498,0.049507200717926]],[[0.058397013694048,-0.04814238473773,-0.019014690071344],[-0.0056760311126709,0.058226089924574,0.05625668913126],[0.033617477864027,-0.030248329043388,0.080781139433384]],[[-0.018237136304379,-0.039083499461412,0.061302021145821],[0.042761031538248,0.05236804485321,0.038032192736864],[-0.011320658028126,0.057268545031548,0.12094563990831]],[[0.010442312806845,-0.021466301754117,-0.080459110438824],[-0.068039014935493,-0.042360279709101,0.072432771325111],[-0.042359758168459,-0.00048520730342716,-0.062946446239948]],[[0.024314977228642,0.11864513903856,0.031517945230007],[-0.0052696326747537,0.008414788171649,0.076641917228699],[0.014707600697875,0.066205941140652,0.020279133692384]],[[-0.0034564840607345,0.029738271608949,0.081957325339317],[0.013468072749674,0.016264772042632,0.051543578505516],[0.026636118069291,0.018101964145899,-0.0050343791954219]],[[-0.029185336083174,-0.076440259814262,-0.015324861742556],[-0.042975109070539,0.0063479891978204,-0.0038556426297873],[-0.015437606722116,-0.0035893472377211,0.065173171460629]],[[0.077133007347584,0.047046352177858,0.029148105531931],[0.033425491303205,0.059101935476065,0.02969510294497],[0.0065049203112721,0.038368552923203,0.024141808971763]],[[0.0040516429580748,-0.024070354178548,-0.050024509429932],[-0.028552502393723,0.00014803383965045,0.016032030805945],[0.019139159470797,-0.082214251160622,-0.014529171399772]],[[0.053113009780645,-0.071212984621525,-0.037688925862312],[0.04604721814394,0.044051110744476,-0.045354131609201],[-0.022894756868482,0.065794639289379,0.019178224727511]],[[0.011741520836949,-0.003271444234997,-0.062990814447403],[-0.0034140455536544,-0.018414460122585,0.0030312424059957],[-0.02646966651082,0.075051948428154,0.044281907379627]],[[0.0042574731633067,0.072038196027279,0.075931765139103],[0.0065490277484059,0.034993246197701,-0.0063320114277303],[0.087648905813694,0.03374757245183,0.03821025043726]],[[0.064693495631218,0.030065294355154,0.025374032557011],[0.094864897429943,-0.049886450171471,-0.046360474079847],[0.087512694299221,-0.084395930171013,0.0029240320436656]],[[0.011573252268136,-0.031175760552287,0.03378414735198],[0.02748080343008,-0.02962270565331,-0.039725791662931],[0.072201371192932,-0.0011824328685179,0.037736881524324]],[[0.046884138137102,0.012086809612811,-0.029755244031549],[-0.054649166762829,-0.015621837228537,0.02529651671648],[0.11499629169703,0.063898757100105,-0.0078865233808756]],[[0.0466503277421,-0.031642481684685,0.080809563398361],[-0.033081442117691,0.026041718199849,0.0182173717767],[0.043748468160629,0.00727115618065,0.070685043931007]],[[0.071251407265663,-0.073519580066204,0.10186465084553],[-0.026013402268291,0.066885069012642,0.035436980426311],[0.039137002080679,-0.039204332977533,0.1055865213275]],[[-9.256589692086e-05,0.073989823460579,0.047350022941828],[0.0013038652250543,0.014437914825976,0.017113354057074],[-0.041922427713871,-0.11414088308811,0.028967082500458]],[[-0.0083320448175073,-0.020859364420176,0.039239346981049],[-0.0040336884558201,0.0092585999518633,-0.00013727718032897],[-0.061721757054329,-0.031828906387091,-0.032893218100071]],[[-0.016488928347826,0.0022479300387204,0.01925428584218],[-0.011908790096641,-0.021998638287187,0.050246272236109],[0.055623520165682,-0.018639763817191,-0.046526342630386]],[[0.0087379449978471,0.076512150466442,0.018098721280694],[0.047274328768253,0.026279218494892,-0.015180022455752],[0.060126151889563,0.07325503975153,-0.0020822689402848]],[[0.078583285212517,0.030961994081736,0.038723051548004],[-0.0094461357221007,0.018739923834801,-0.082778863608837],[0.054821375757456,-0.035021051764488,0.025589935481548]],[[0.026704665273428,0.067249096930027,0.030040388926864],[-0.029603578150272,0.0079411789774895,0.062185000628233],[0.058180525898933,-0.10521356761456,-0.020576303824782]],[[-0.063254602253437,-0.024619970470667,0.031604085117579],[-0.034934043884277,-0.032096844166517,-0.0081225698813796],[0.062175668776035,0.011355173774064,0.035058990120888]],[[0.037939332425594,0.015346269123256,0.015695782378316],[0.025634603574872,0.009139203466475,0.055444117635489],[-0.042265515774488,-0.030588151887059,-0.0038860726635903]],[[-0.0089428331702948,0.0095976358279586,-0.021835550665855],[0.057706084102392,-0.029403923079371,0.029747720807791],[0.041709590703249,-0.002386165317148,0.020333940163255]],[[0.07601135969162,-0.0029967706650496,-0.017293287441134],[0.026252007111907,-0.066753566265106,0.0048861731775105],[0.016740778461099,0.05492564663291,-0.029660318046808]],[[0.033141952008009,0.050950028002262,0.03869017213583],[0.069402083754539,-0.033744230866432,0.0045494246296585],[-0.024341007694602,0.055139053612947,-0.010824902914464]],[[0.10230573266745,0.071887068450451,-0.014613325707614],[0.082105912268162,-0.06366066634655,-0.042776398360729],[-0.024396058171988,0.029199361801147,-0.030922196805477]],[[0.011914320290089,-0.0054141143336892,-0.019812779501081],[-0.0027418315876275,0.0052002500742674,-0.012886467389762],[-0.031746935099363,0.034485325217247,0.017169253900647]],[[0.012589608319104,-0.053451359272003,0.12161356955767],[-0.035024408251047,0.1362929046154,-0.036491293460131],[-0.070149943232536,0.073461621999741,-0.045456454157829]],[[0.018439432606101,-0.047660924494267,0.034157294780016],[0.054587170481682,0.0040020458400249,-0.068676844239235],[0.019380392506719,0.09549717605114,0.014209993183613]],[[-0.042278058826923,-0.12213759869337,-0.062079634517431],[-0.042884569615126,0.042862832546234,0.024941189214587],[0.016914885491133,0.00063288636738434,-0.053235732018948]],[[-0.077305592596531,0.040446862578392,-0.015678549185395],[0.019395584240556,-0.044784247875214,0.046877343207598],[-0.025675812736154,0.020498733967543,0.041110884398222]],[[0.028331918641925,-0.057053454220295,0.036485057324171],[0.038378346711397,-0.032558355480433,0.037972275167704],[-0.073723688721657,0.028042133897543,0.035817693918943]],[[0.09877186268568,0.029152017086744,0.099183544516563],[-0.0092677054926753,0.0032682823948562,-0.049993708729744],[0.020893946290016,0.0037050305400044,-0.0040259924717247]],[[-0.0021952511742711,0.03311762586236,-0.04255024343729],[0.033062793314457,0.029644111171365,0.065517976880074],[-0.020792096853256,0.049313485622406,-0.0087897880002856]],[[0.014766797423363,0.022041229531169,-0.025446239858866],[0.022931085899472,0.0080325026065111,0.045550689101219],[0.025857642292976,0.032320350408554,0.039038367569447]],[[-0.0040664928965271,0.044011197984219,0.050916682928801],[-0.066425278782845,-0.0091525334864855,-0.037717796862125],[0.068253770470619,0.014275554567575,0.031642135232687]],[[0.033801805227995,-0.071356423199177,0.019821567460895],[-0.011604224331677,-0.024344369769096,-0.088610164821148],[-0.010413065552711,0.077255308628082,0.0082497820258141]],[[0.032684978097677,0.068713515996933,0.043927200138569],[0.14540766179562,0.013356234878302,-0.042261872440577],[0.023746199905872,0.0076853116042912,-0.097992964088917]],[[0.028565863147378,0.024536196142435,0.061091888695955],[0.0026162120047957,-0.030703760683537,0.058049958199263],[0.058133576065302,0.047747518867254,-0.0052714995108545]],[[0.08076473325491,0.012222800403833,-0.010929146781564],[-0.034054737538099,-0.0085616940632463,0.04088731855154],[-0.004363692831248,-0.012389312498271,-0.002670127665624]],[[-0.00095633149612695,0.0044074221514165,-0.026133548468351],[0.050884392112494,0.095469906926155,0.037931747734547],[-0.026444083079696,0.031083129346371,0.036449130624533]],[[0.059730734676123,-0.015529711730778,0.023200433701277],[0.035971749573946,-0.030607903376222,-0.015796810388565],[-0.0072037940844893,0.018530765548348,-0.010444579645991]],[[0.1055863648653,-0.029778080061078,-0.0036021783016622],[-0.0019392399117351,-0.019050888717175,0.011403072625399],[-0.0094171920791268,-0.075019113719463,0.0088629657402635]],[[-0.001589082297869,0.12466506659985,0.007092131767422],[0.095961332321167,-0.008282870054245,0.09815090149641],[-0.017065575346351,0.01889730617404,0.039971135556698]],[[0.058799121528864,-0.04197770357132,0.046206682920456],[0.064503207802773,0.022901069372892,0.00092039362061769],[0.0064885402098298,-0.031282361596823,0.032279055565596]],[[0.0032529961317778,0.073387913405895,-0.0012795428046957],[0.051355581730604,0.022311192005873,0.027420775964856],[0.033068574965,0.053398296236992,-0.052068181335926]],[[0.057956799864769,-0.034525100141764,-0.034411191940308],[0.13374483585358,0.10701586306095,0.023741321638227],[0.031371921300888,0.10579562932253,0.070256367325783]],[[0.10511521995068,0.064792022109032,-0.020261971279979],[0.045792475342751,0.056060370057821,0.037707939743996],[0.004534546751529,0.0064850905910134,0.053435929119587]],[[-0.01629738137126,0.0045600826852024,0.0090578198432922],[0.042082369327545,0.0026916554197669,0.07408856600523],[0.0029953413177282,0.086576148867607,-0.076628655195236]],[[0.040097065269947,0.082661621272564,-0.019947091117501],[-0.040325742214918,0.022808358073235,-0.012370022013783],[0.039463207125664,0.10765878111124,0.0068618790246546]],[[-0.059878669679165,-0.027325632050633,-0.055235631763935],[0.02991046756506,-0.047040343284607,0.091410860419273],[-0.0084899226203561,0.036815796047449,-0.074332810938358]],[[0.03171231597662,0.015899304300547,-0.041171755641699],[0.091022491455078,-0.015124505385756,0.02456060051918],[0.05143728479743,0.015232772566378,0.0067208711989224]],[[-0.030396586284041,-0.030672118067741,0.025963548570871],[0.056116685271263,-0.025292720645666,-0.015034484677017],[0.01824283786118,-0.0092894593253732,0.051774840801954]],[[-0.04056853055954,0.055498085916042,-0.010698488913476],[0.036906186491251,-0.0018378021195531,0.094502449035645],[0.053701817989349,-0.037653055042028,0.077807262539864]],[[0.093547992408276,0.0078784795477986,-0.047828085720539],[0.013986852951348,-0.02715458534658,-0.0017472873441875],[0.062437772750854,-0.0099144037812948,0.017423722893]],[[-0.0033164494670928,-0.02629291638732,-0.015711814165115],[-0.020980121567845,0.025169191882014,-0.044335957616568],[0.099592037498951,-0.022117210552096,-0.070795230567455]],[[-0.007426988799125,0.0095802061259747,-0.01322621665895],[-0.040123507380486,-0.011634044349194,-0.049661792814732],[-0.0018002968281507,0.0039668921381235,0.078806638717651]],[[0.050817601382732,0.0086677446961403,0.066263549029827],[0.052296593785286,-0.009515231475234,-0.078825257718563],[0.026436012238264,-0.012730830349028,-0.069593496620655]],[[0.0015969059895724,0.017248632386327,0.071883521974087],[-0.018607437610626,-0.0726528018713,0.0061068260110915],[-0.060268215835094,0.06377238035202,-0.032655101269484]],[[0.079166650772095,-0.044480539858341,-0.0035883355885744],[0.096189469099045,-0.022797036916018,-0.031162925064564],[0.023749250918627,0.029290681704879,0.017320320010185]],[[0.0051967967301607,-0.028217626735568,0.00043346954043955],[0.027726816013455,0.091593950986862,0.027407562360168],[0.07260300219059,0.0032851411961019,-0.031967293471098]],[[-0.095930330455303,-0.052941933274269,-0.042452719062567],[-0.035537976771593,-0.018338391557336,-0.011928882449865],[0.022205686196685,-0.050771038979292,0.061355762183666]],[[0.023021068423986,-0.011904472485185,-0.016884444281459],[0.021132400259376,-0.0015092430403456,0.10911373794079],[0.0187012180686,-0.063948705792427,0.028296548873186]],[[-0.044052865356207,0.13331723213196,0.057588640600443],[0.027104137465358,0.026116332039237,-0.019852442666888],[-0.025968274101615,0.024565659463406,-0.04179185256362]],[[0.045831751078367,0.040190540254116,-0.04139119386673],[-0.033191084861755,0.010301289148629,0.026764024049044],[0.011961619369686,-0.086298272013664,-0.0010172934271395]],[[0.065964460372925,0.045827604830265,0.0028679582756013],[0.048238966614008,0.069287553429604,0.011019043624401],[0.0058958209119737,-0.0095009859651327,-0.061535991728306]],[[0.019389839842916,-0.089785300195217,-0.018049186095595],[-0.059220228344202,-0.071398325264454,0.034399297088385],[-0.062757939100266,0.042716220021248,-0.018978597596288]],[[0.055533587932587,0.041980765759945,0.087831348180771],[0.010148932226002,-0.0033997213467956,-0.015038479119539],[-0.10480634123087,-0.033163785934448,-0.0073982737958431]],[[-0.0082122562453151,0.021320957690477,-0.015555038116872],[-0.022673472762108,0.0080006020143628,0.063186921179295],[-0.047532252967358,-0.0058149807155132,0.092473961412907]],[[-0.00046284293057397,0.07026481628418,0.05119789019227],[-0.047913912683725,0.034870997071266,0.0048665888607502],[0.045914456248283,0.00011952404020121,-0.032439645379782]],[[0.017062526196241,-0.0059887249954045,0.050001606345177],[-0.0050162076950073,0.060590405017138,-0.005954525899142],[0.071187071502209,0.0069296532310545,0.0082368217408657]],[[-0.033871933817863,-0.0013775716070086,0.0071329083293676],[0.011317227035761,0.012855688109994,-0.023044127970934],[0.028189154341817,-0.042465724050999,-0.053254373371601]],[[-0.021101368591189,0.036926325410604,-0.016078986227512],[0.075907222926617,-0.019572950899601,-0.01713184453547],[-0.031672824174166,0.021534631028771,0.02503059618175]],[[0.026003086939454,-0.011759824119508,0.0055119725875556],[-0.0054131122305989,-0.026760280132294,0.014114493504167],[0.067743606865406,0.034263368695974,0.049537513405085]],[[-0.01378951407969,0.025887977331877,0.01635393127799],[0.01280730497092,0.018041409552097,0.053408436477184],[0.033771298825741,0.0091171739622951,-0.058097936213017]],[[0.029534550383687,-0.023534003645182,-0.0012064826441929],[-0.06584570556879,-0.017679300159216,0.059863518923521],[-0.085793651640415,-0.0087025761604309,0.034334044903517]],[[0.0029700694140047,-0.0024828023742884,0.020855199545622],[-0.015089249238372,0.01088504306972,0.029032709077001],[-0.0016552763991058,0.0387480892241,-0.03351641818881]],[[0.057842440903187,-0.023862482979894,0.039598114788532],[0.055567305535078,-0.071404404938221,0.010872233659029],[-0.02158347517252,0.077057473361492,0.04279638454318]],[[-0.023227026686072,0.0079227536916733,0.041095107793808],[0.0073203393258154,-0.056471649557352,-0.019532738253474],[0.068491756916046,-0.056197166442871,-0.0084202736616135]],[[-0.051965303719044,0.023516952991486,-0.027749601751566],[-0.0081797568127513,0.074984773993492,0.049735020846128],[-0.026341110467911,-0.0043333377689123,-0.0035031738225371]],[[-0.031399112194777,-0.030829455703497,-0.005046964623034],[0.0041639250703156,0.029758235439658,0.036775834858418],[-0.022415271028876,0.093029074370861,0.027662508189678]],[[0.062898136675358,0.048824969679117,0.093636527657509],[0.11950202286243,0.010328130796552,0.028337981551886],[0.033639051020145,0.016401819884777,-0.058090753853321]],[[0.02390469238162,0.0010800722520798,0.0068912785500288],[0.053021613508463,-0.027277022600174,-0.0046602315269411],[0.055225353688002,0.0016516002360731,-0.020280960947275]],[[0.0049775005318224,-0.030834205448627,-0.050261564552784],[-0.045003298670053,-0.0009587193490006,0.067055560648441],[-0.05985789373517,0.055791903287172,-0.0075704641640186]],[[-0.0029385455418378,0.0029597899410874,0.039032474160194],[-0.0078411726281047,-3.1254388886737e-05,-0.05801123008132],[0.041731625795364,-0.024930518120527,0.084078393876553]],[[-0.014718502759933,-0.069114685058594,-0.047632064670324],[0.040450382977724,0.017519595101476,0.025922434404492],[-0.017236752435565,-0.030124163255095,0.05521098151803]],[[0.080245487391949,0.017632368952036,0.049471564590931],[0.02111822925508,-0.020523576065898,-0.052056182175875],[0.081701539456844,-0.0059446785598993,-0.070596151053905]],[[0.092645891010761,0.047615963965654,0.040435988456011],[0.024599861353636,0.035877972841263,0.015100456774235],[0.0084381178021431,-0.023562358692288,0.055405467748642]],[[0.049001611769199,-0.0094080837443471,-0.011019136756659],[-0.044585455209017,-0.016621667891741,-0.042473152279854],[-0.00079938513226807,0.0124437129125,-0.029601996764541]],[[-0.029143178835511,0.024762984365225,-0.06903875619173],[-0.048978239297867,-0.015036223456264,0.075682163238525],[0.045025650411844,0.033902693539858,-0.073814019560814]],[[0.046860378235579,-0.042736064642668,0.0027990064118057],[0.0089451624080539,0.077880762517452,-0.033279970288277],[-0.058188930153847,-0.045498043298721,0.049193318933249]],[[0.030891194939613,0.0065360241569579,0.043479770421982],[0.004517437890172,-0.016913359984756,0.0057566519826651],[0.045175027102232,0.017135197296739,0.06254355609417]],[[-0.02103628963232,-0.021899485960603,-0.015803828835487],[-0.036902189254761,0.044549200683832,0.016835344955325],[0.041391968727112,-0.018145611509681,-0.045686189085245]],[[-0.036510452628136,0.027221631258726,0.079364530742168],[-0.0050999191589653,-0.056443579494953,0.028374580666423],[0.060068413615227,-0.022797659039497,-0.029009096324444]],[[-0.013277631253004,0.074172735214233,0.034940466284752],[0.046910796314478,0.036302052438259,-0.0055891750380397],[-0.046654958277941,-0.0045642368495464,0.0046944655478001]],[[-0.0051318304613233,-0.0024367396254092,0.061958331614733],[0.026556264609098,0.0089652566239238,0.076054066419601],[0.072172179818153,0.0027893022634089,0.037402488291264]],[[0.078173361718655,0.039506286382675,0.039236631244421],[-0.0390087030828,0.0085280844941735,0.077261582016945],[0.035107836127281,0.0011534988880157,0.055831968784332]],[[-0.020246310159564,-0.071372136473656,0.077044539153576],[-0.036829516291618,0.0028102623764426,-0.04683430865407],[0.0086949001997709,-0.024851243942976,-0.038135681301355]],[[0.025881931185722,-0.072287745773792,0.10648524016142],[-0.030539019033313,-0.0014454441843554,0.029882699251175],[0.092560313642025,-0.010304472409189,0.066754594445229]],[[-0.04569847881794,-0.020897341892123,-0.015780914574862],[0.040950737893581,0.055380322039127,-0.029657546430826],[0.02442342042923,-0.0090249478816986,-0.018973883241415]],[[0.06240813434124,-0.013161981478333,0.036186583340168],[-0.034909516572952,-0.042160015553236,-0.087389044463634],[0.028239903971553,-0.002558100502938,0.056054022163153]],[[0.064651533961296,-0.011913993395865,-0.021187547594309],[0.053868945688009,0.05771266669035,0.05592267587781],[0.042132534086704,0.012003858573735,0.05743807181716]],[[0.037342712283134,-0.020022738724947,-0.020064394921064],[0.042635820806026,-0.054607726633549,-0.010407759808004],[0.0060449047014117,-0.059483651071787,0.052667137235403]],[[-0.056325167417526,0.01870815269649,0.049784034490585],[0.0047141825780272,0.08162347972393,0.036958664655685],[-0.021115086972713,0.0063894055783749,0.018458507955074]],[[0.025876613333821,-0.072761677205563,-0.030737878754735],[-0.0075545469298959,-0.030122108757496,0.0030762378592044],[0.026132639497519,0.025098832324147,0.10056401789188]],[[0.043998185545206,0.012339035049081,0.028515886515379],[0.010042384266853,0.0036836084909737,-0.051695108413696],[0.085927896201611,-0.012753464281559,-0.020739575847983]],[[0.016652828082442,-0.02722704410553,0.030846409499645],[0.031924325972795,-0.048351973295212,-0.0011617789277807],[-0.019328707829118,0.001276028691791,0.012891051359475]],[[-0.019019063562155,0.01088419277221,-0.046131275594234],[-0.0027661421336234,-0.058695286512375,0.034320574253798],[0.046252839267254,0.045609954744577,-0.021195445209742]]],[[[0.1142855361104,0.028701491653919,-0.00061288743745536],[0.022605683654547,0.0018306010169908,0.10215523093939],[0.030008979141712,-0.018429597839713,-0.031587142497301]],[[0.046760406345129,-0.0016155545599759,0.02959113009274],[-0.0048614949919283,-0.0050055179744959,-0.059866227209568],[0.040785163640976,-0.0055627934634686,-0.087818704545498]],[[-0.048962701112032,-0.011232210323215,0.062468964606524],[0.051232319325209,0.061881650239229,0.04435919970274],[0.016965944319963,-0.089979253709316,0.012457237578928]],[[0.030269831418991,0.0013587648281828,-0.050674505531788],[0.073268085718155,-0.059532430022955,-0.011508456431329],[0.074517197906971,0.046993847936392,-0.02523242123425]],[[-0.070231787860394,-0.0061242072843015,-0.091094262897968],[-0.035835258662701,-0.0048892460763454,0.013998947106302],[0.011430250480771,0.0013110345462337,0.069050006568432]],[[-0.014343633316457,-0.0030236535239965,-0.0096966288983822],[-0.00017368180851918,0.00095819093985483,-0.041727833449841],[-0.050606530159712,-0.062787748873234,0.042426988482475]],[[-0.010578967630863,0.03655955940485,-0.030022485181689],[0.011318502016366,-0.014344855211675,-0.00064975395798683],[-4.2140203731833e-05,-0.049798011779785,-0.018543800339103]],[[0.035542473196983,0.04339724034071,-0.010545677505434],[0.01554974168539,0.059231556952,0.030686032027006],[-0.0042248489335179,0.013630609959364,0.052043415606022]],[[0.0057027051225305,-0.010603923350573,-0.087468303740025],[-0.005116555839777,-0.023358944803476,0.018431484699249],[-0.046179156750441,0.067706905305386,0.030048133805394]],[[0.048418924212456,-0.02010440826416,0.0036401108372957],[0.0021811889018863,-0.099492095410824,-0.080307595431805],[0.044469118118286,0.0024535113479942,0.019526779651642]],[[-0.00019786818302236,-0.033627931028605,-0.028573928400874],[0.071376606822014,0.059687327593565,-0.06474880874157],[0.030526893213391,0.0090412963181734,-0.026324898004532]],[[-0.019436784088612,0.050214298069477,-0.043583493679762],[0.02402675524354,0.0017331080744043,-0.053060423582792],[-0.0034607802517712,-0.052468713372946,0.089372150599957]],[[-0.077844806015491,-0.1070212572813,-0.044389884918928],[-0.034338176250458,0.094675324857235,-0.034629926085472],[0.0085251154378057,0.080895274877548,0.01584605500102]],[[-0.027928423136473,-0.035645626485348,-0.046763461083174],[-0.032772794365883,-0.10083946585655,0.057197719812393],[0.075468458235264,0.02301218919456,0.0026114727370441]],[[0.0080592101439834,-0.033656638115644,-0.0019357103155926],[0.003921558149159,0.0065448028035462,0.017139533534646],[0.0075995549559593,-0.011516290716827,-0.0033876970410347]],[[0.046914231032133,0.042544234544039,-0.033366858959198],[0.015102683566511,0.03453241288662,0.029498238116503],[-0.0030806271824986,0.039918843656778,0.027457257732749]],[[0.0092778839170933,0.089716896414757,-0.029105449095368],[-0.019829230383039,-0.039798431098461,0.0090058380737901],[-0.039223864674568,-0.018025094643235,-0.02603155374527]],[[0.022448858246207,0.013281070627272,-0.081765383481979],[0.016795111820102,-0.0092721879482269,-0.067769072949886],[0.022191237658262,0.078849695622921,-0.060765270143747]],[[0.16744069755077,0.0066020376980305,0.010052210651338],[0.00057264405768365,-0.089296624064445,0.023652782663703],[0.016447087749839,-0.041901163756847,0.01048038713634]],[[-0.015101104974747,-0.048968676477671,-0.069465883076191],[0.0025210455060005,0.031227899715304,0.023313600569963],[0.011181364767253,0.021858531981707,0.0516765601933]],[[0.049204956740141,-0.019222658127546,0.054715689271688],[0.0022850832901895,-0.0026067290455103,0.10607746243477],[-0.00069408892886713,-0.0011542630381882,0.012851246632636]],[[-0.049393739551306,-0.013241364620626,0.03631491586566],[-0.039128385484219,-0.050950884819031,0.031909495592117],[0.0022719879634678,0.00070700672222301,0.017462780699134]],[[-0.049694072455168,-0.016081314533949,-0.025771588087082],[-0.022688532248139,0.01807302609086,0.044715356081724],[0.046505004167557,0.061973199248314,-0.024204134941101]],[[0.017019042745233,-0.064536347985268,0.034313380718231],[0.012560011819005,-0.034139957278967,-0.043469406664371],[0.02444377169013,-0.03627435863018,0.05864180997014]],[[0.032014653086662,-0.0068273143842816,-0.020365795120597],[0.017379200085998,0.00098885491024703,-0.0043205213733017],[0.10188090056181,0.042462635785341,-0.031007489189506]],[[-0.092779293656349,0.020638449117541,0.029890904203057],[-0.051771719008684,-0.037055585533381,0.13972035050392],[0.0040042623877525,0.074306346476078,-0.023451130837202]],[[-0.02530955709517,0.069456852972507,-0.088510408997536],[-0.032819904386997,-0.041505549103022,0.076071761548519],[-0.0300756637007,-0.015037446282804,0.010624998249114]],[[0.068573236465454,-0.032774813473225,0.040940329432487],[0.048601824790239,-0.052656900137663,-0.017317829653621],[-0.033013299107552,-0.031479366123676,0.061219457536936]],[[0.026606833562255,0.01271836925298,-0.019103366881609],[0.035189840942621,-0.022038942202926,0.064848527312279],[0.0087949419394135,-0.0097730737179518,0.0026034200564027]],[[0.054581079632044,-0.0141392191872,0.018753539770842],[0.048224031925201,0.018926132470369,0.0070237377658486],[-0.036815073341131,0.051065649837255,0.012482677586377]],[[-0.035439737141132,-0.013807444833219,-0.061264924705029],[-0.0010116491466761,-0.042417954653502,-0.032310917973518],[-0.0073252865113318,0.013037997297943,-0.071835599839687]],[[0.058991365134716,-0.052422638982534,-0.067350491881371],[0.046553064137697,-0.085859909653664,0.064466886222363],[-0.060753043740988,0.031156715005636,-0.03032248467207]],[[-0.032909631729126,0.048539571464062,-0.067213028669357],[-0.0061222044751048,-0.0032933969050646,0.092195697128773],[0.0050443094223738,0.046779744327068,0.088090568780899]],[[0.0014943772694096,-0.054219592362642,-0.043533068150282],[0.021844925358891,-0.01751253567636,-0.047107391059399],[0.11275099217892,0.026670770719647,-0.029946692287922]],[[0.017040876671672,-0.055379912257195,-0.05796030163765],[-0.030503749847412,0.021790666505694,0.015554792247713],[0.043430626392365,-0.031303964555264,-0.047343593090773]],[[-0.049664154648781,-0.094985336065292,0.0038618941325694],[0.12027584761381,-0.098456203937531,0.0748435780406],[0.038153558969498,-0.040485516190529,0.073562525212765]],[[-0.07876367866993,0.050658084452152,0.00062262336723506],[0.0023233769461513,-0.0014754994772375,-0.0019131205044687],[0.021975183859468,-0.044034224003553,-0.088094554841518]],[[-0.021701755002141,0.04617277905345,0.036670122295618],[0.0017089571338147,-0.13790912926197,0.023905569687486],[0.08348985761404,-0.052754011005163,0.006173406727612]],[[0.033565782010555,0.027308760210872,-0.018220316618681],[0.0079518090933561,-0.062037631869316,0.027454309165478],[0.012699943035841,0.045436821877956,-0.09058840572834]],[[0.07120094448328,-0.031862791627645,-0.031422235071659],[-0.03349394723773,0.016834642738104,-0.028271779417992],[0.013367720879614,-0.077633060514927,0.098894156515598]],[[0.025137431919575,0.035966336727142,0.051306378096342],[-0.0014456058852375,0.010517980903387,0.010755022056401],[-0.020940694957972,-0.075194157660007,-0.044734235852957]],[[0.028963314369321,-0.03324980288744,0.0054668923839927],[0.05094762891531,-0.073615454137325,-0.059987332671881],[-0.067618742585182,-0.087569333612919,-0.046433627605438]],[[-0.026508521288633,0.028644660487771,0.004470104817301],[0.037432886660099,0.037036769092083,0.00069820194039494],[0.024933373555541,-0.088158346712589,0.034685142338276]],[[-0.047214411199093,-0.017147397622466,-0.021303681656718],[-0.050915528088808,-0.011753611266613,0.04741145670414],[-0.053051024675369,0.0059440503828228,-0.021579802036285]],[[0.016776904463768,0.048819050192833,0.0049501801840961],[-0.072350904345512,-0.052717257291079,0.013698272407055],[-0.0071235755458474,0.011578681878746,-0.016891587525606]],[[-0.016527712345123,-0.012757386080921,-0.031628631055355],[-0.060163035988808,0.077342972159386,-0.039668165147305],[0.0082309385761619,0.020386615768075,-0.038746237754822]],[[0.043592933565378,-0.039357334375381,-0.0044745444320142],[0.044268306344748,-0.046133600175381,-0.1157401651144],[0.0001824510836741,0.013603025116026,-0.0038979712408036]],[[-0.0013164621777833,0.055131852626801,0.020503811538219],[0.028044879436493,-0.10982492566109,0.050457045435905],[0.056698609143496,0.040819521993399,-0.00295539945364]],[[-0.084277592599392,0.049064934253693,-0.062260303646326],[0.0071658915840089,-0.035539526492357,-0.012129532173276],[0.07302287966013,0.027593059465289,-0.021281873807311]],[[0.0069824489764869,-0.022052401676774,-0.036600638180971],[0.0020534463692456,0.0032742011826485,-0.0080339210107923],[0.1002651900053,0.030794888734818,0.015261646360159]],[[0.0084367441013455,-0.024402162060142,-0.0091270254924893],[-0.0051032858900726,0.10825584828854,0.010152991861105],[-0.0098703121766448,0.027276415377855,0.051048655062914]],[[-0.095289796590805,0.029989184811711,0.063431024551392],[-0.081718795001507,-0.016047190874815,0.0085666831582785],[-4.0862549212761e-05,-0.05481793358922,0.001945017836988]],[[-0.068165794014931,0.029917949810624,-0.010071113705635],[0.11622644215822,-0.05550979077816,0.037501659244299],[0.047979209572077,0.023786582052708,0.057831805199385]],[[-0.019011221826077,0.0071706585586071,0.019183691591024],[-0.014112528413534,-0.011094931513071,0.0071788653731346],[0.028017757460475,0.089005500078201,-0.051879964768887]],[[-0.027967685833573,0.033464279025793,0.012035371735692],[0.0062297587282956,0.00096164079150185,0.098773382604122],[-0.016987221315503,-0.02418290451169,-0.010963750071824]],[[-0.026590064167976,0.01078059989959,0.025917226448655],[0.021658139303327,0.066015027463436,-0.032418213784695],[-0.053892005234957,0.0032023859675974,-0.032087009400129]],[[-0.0013697114773095,-0.041484989225864,0.0079065356403589],[0.028766142204404,-0.091252081096172,0.017505217343569],[-0.014387977309525,-0.022415181621909,-0.055503539741039]],[[-0.1368352919817,0.034492984414101,-0.045936640352011],[-0.065662182867527,-0.079312779009342,0.02514423802495],[0.039988953620195,-0.015180218964815,-0.015527401119471]],[[0.03674278780818,-0.00087987532606348,0.058147516101599],[0.016201198101044,0.00088091968791559,0.007163168862462],[-0.030575381591916,-0.0049568372778594,0.06264041364193]],[[-0.057859595865011,0.0029870723374188,0.069008126854897],[-0.0133854476735,-0.053222727030516,-0.015233105048537],[0.024566266685724,0.019496334716678,0.091727770864964]],[[0.033452849835157,-0.082591399550438,0.035909812897444],[-0.085218027234077,0.016188237816095,-0.04351307079196],[0.019412940368056,-0.095843516290188,0.094730406999588]],[[-0.076299428939819,0.017159210518003,-0.083813913166523],[-0.026709703728557,-0.050329122692347,-0.047245211899281],[-0.0081399902701378,0.056204061955214,-0.14250002801418]],[[0.060961943119764,0.021273234859109,-0.007825524546206],[-0.06957695633173,-0.017503185197711,-0.032345928251743],[-0.02081417478621,-0.013252434320748,-0.037393756210804]],[[0.0429149530828,0.023708339780569,-0.038136053830385],[-0.0056033520959318,0.063402019441128,0.032857432961464],[-0.010499618947506,-0.028270347043872,0.063413023948669]],[[0.0059808460064232,-0.0091561805456877,-0.068499974906445],[-0.040486108511686,0.013754206709564,0.036071687936783],[0.008907750248909,-0.026721389964223,-0.050314474850893]],[[0.048945505172014,-0.034082256257534,-0.02846797183156],[0.010217225179076,-0.0035638448316604,0.020426699891686],[0.021220158785582,0.039550922811031,0.046493951231241]],[[0.032536193728447,-0.051471583545208,-0.0032025999389589],[-0.016546186059713,-0.077357575297356,-0.013044877909124],[-0.0070313424803317,-0.036090094596148,-0.068254828453064]],[[-0.013215372338891,-0.049611143767834,0.016741307452321],[-0.026841159909964,-0.00056107807904482,-0.0289307218045],[-0.044247549027205,-0.015891849994659,0.057147067040205]],[[0.058748796582222,0.03935445100069,0.078953266143799],[0.10059320926666,0.032499801367521,0.042045932263136],[-0.0043171416036785,0.0038138488307595,-0.0059170261956751]],[[0.012007649987936,-0.042782168835402,0.0013820048188791],[0.050547741353512,-0.051699712872505,-0.013766935095191],[0.017420675605536,0.022520713508129,0.0080789988860488]],[[0.019186515361071,0.041279781609774,0.020430976524949],[-0.059596367180347,0.058063998818398,-0.00061251182341948],[0.0036423089914024,0.042511329054832,-0.016610259190202]],[[0.020457366481423,0.002057405654341,-0.061104029417038],[-0.018532505258918,0.07249141484499,-0.012862187810242],[-0.012106684036553,-0.024053307250142,0.0096146557480097]],[[-0.018372621387243,0.064604289829731,0.034012842923403],[-0.004559681750834,-0.056099578738213,-0.032215315848589],[0.021908190101385,0.032347079366446,-0.021176842972636]],[[0.01429227553308,0.094826057553291,-0.062599346041679],[0.016260815784335,-0.053079396486282,0.028685748577118],[-0.050926081836224,-0.074753649532795,0.019903648644686]],[[0.031754363328218,0.074094623327255,0.0082364333793521],[0.017592400312424,-0.077973663806915,0.039312832057476],[0.028339818120003,0.00021753071632702,-0.0441924482584]],[[-0.0079381233081222,-0.01548467669636,-0.012486143037677],[-0.0043389271013439,0.00024930349900387,-0.028649384155869],[0.035138294100761,0.042126018553972,-0.019846100360155]],[[-0.038561463356018,-0.057033762335777,0.004772609565407],[-0.0031451648101211,-0.032225370407104,-0.036879677325487],[0.027094811201096,-0.049897473305464,-0.070741795003414]],[[-0.001048136735335,-0.0072230827063322,-0.013609661720693],[0.0077320728451014,-0.081526376307011,-0.019376456737518],[-0.012430299073458,0.044843006879091,0.046099614351988]],[[0.001541146542877,0.032027348875999,0.034979309886694],[-0.075169056653976,0.022298276424408,0.028037186712027],[0.098979473114014,0.040997304022312,0.0055060624144971]],[[0.029997790232301,-0.045782994478941,-0.025931973010302],[0.020103089511395,0.1446967124939,-0.035157423466444],[-0.027613552287221,-0.014925817959011,0.057481314986944]],[[-0.10174432396889,-0.034224852919579,-0.022314134985209],[-0.013527050614357,-0.16276599466801,0.033898394554853],[-0.031391821801662,-0.059351913630962,0.050096586346626]],[[0.046576093882322,-0.0085035199299455,-0.042498007416725],[0.0046615405008197,-0.012982920743525,0.024998700246215],[0.010301078669727,-0.05405181646347,0.027001112699509]],[[0.061956483870745,-0.077898874878883,-0.088332280516624],[0.017499022185802,0.033567436039448,0.047797806560993],[0.039802744984627,-0.13077685236931,0.035378616303205]],[[0.031185448169708,0.10716123878956,-0.029421268031001],[0.047792311757803,-0.078385107219219,0.027591414749622],[-0.0069598192349076,-0.048675931990147,-0.084969148039818]],[[0.010003007017076,0.037866394966841,-0.010740312747657],[0.043023109436035,-0.04235702753067,0.032224174588919],[-0.031702648848295,-0.024888956919312,0.014844159595668]],[[0.014839171431959,-0.024061053991318,0.025783846154809],[-0.056091442704201,0.023007750511169,0.06677184253931],[-0.050178244709969,0.056477844715118,0.050039280205965]],[[-0.01396254170686,0.042529053986073,-0.0049945446662605],[0.040286462754011,-0.0093788504600525,0.01036187633872],[-0.098009437322617,-0.00095355836674571,0.026846894994378]],[[-0.059679571539164,0.020642010495067,0.015711547806859],[-0.055200081318617,0.078792922198772,-0.012269599363208],[0.0012134823482484,0.062420353293419,-0.055327948182821]],[[0.061753563582897,-0.052181638777256,0.09432353079319],[-0.02710984274745,0.068215392529964,0.0013983981916681],[0.03815234452486,0.006953845731914,-0.026558671146631]],[[0.01227858196944,0.038921352475882,0.06259048730135],[-0.0022136350162327,0.017636252567172,0.077465891838074],[0.0028413119725883,0.061127845197916,-0.015687024220824]],[[0.020904300734401,-0.037599958479404,-0.045911893248558],[-0.031492542475462,0.080695912241936,-0.0053860233165324],[0.035041872411966,0.0015572435222566,0.039262976497412]],[[-0.015267635695636,0.007162157446146,-0.079641066491604],[0.015075916424394,0.060919865965843,-0.12647970020771],[0.035386528819799,-0.0026264572516084,0.00015583887579851]],[[0.014789217151701,-0.029286263510585,0.095930501818657],[-0.040448032319546,0.083359614014626,-0.051527004688978],[-0.031500399112701,-0.0034921222832054,-0.032814666628838]],[[0.040569562464952,-0.046063363552094,-0.053367380052805],[0.0032564206048846,-0.065146565437317,-0.041615337133408],[2.5093091608142e-05,-0.065090350806713,-0.030395651236176]],[[0.039678484201431,-0.073820546269417,-0.025415135547519],[0.0097313029691577,-0.0072046164423227,0.0052466248162091],[0.034627079963684,0.0097238160669804,-0.025352388620377]],[[-0.026453826576471,-0.057734444737434,0.066549606621265],[-0.029563805088401,0.025526637211442,-0.0068712709471583],[0.022499293088913,0.011653123423457,-0.023498008027673]],[[-0.051716238260269,-0.044508080929518,0.02273141220212],[0.051075212657452,0.05155573412776,0.022868106141686],[-0.016144897788763,0.084511443972588,-0.057992786169052]],[[0.069024324417114,0.0021386032458395,0.05790613219142],[-0.029903002083302,0.0055176713503897,0.04855377599597],[-0.056109193712473,-0.034303672611713,0.034862976521254]],[[-0.00076256808824837,0.056000903248787,-0.072835892438889],[-0.0082860393449664,0.051663000136614,-0.049697726964951],[0.042603254318237,0.020870212465525,-0.022087570279837]],[[-0.031040178611875,-0.017319334670901,-0.0066655310802162],[-0.034686982631683,-0.038552213460207,0.048273049294949],[0.012868052348495,-0.013381115160882,-0.037140507251024]],[[-0.0032313535921276,0.034970823675394,0.034768953919411],[-0.011350585147738,0.038823679089546,-0.057349305599928],[-0.012526297941804,0.037361606955528,0.017261523753405]],[[0.019799748435616,-0.084935858845711,0.026348227635026],[0.0073310369625688,-0.11716337502003,-0.017104988917708],[0.017775852233171,-0.067962624132633,-0.047283742576838]],[[0.04336441680789,0.015527771785855,0.028579048812389],[0.026695121079683,0.060284145176411,-0.046506930142641],[-0.087860345840454,-0.015240238048136,0.044021584093571]],[[0.023301605135202,0.013278407976031,0.094073191285133],[-0.028267504647374,0.033906027674675,-0.082542590796947],[-0.067455507814884,0.0098101478070021,0.023444876074791]],[[-0.029194377362728,-0.0067496215924621,-0.0016641578404233],[-0.079650074243546,0.01004889421165,0.030570013448596],[0.02602138184011,-0.00056879472685978,-0.043167091906071]],[[-0.018170204013586,0.039891440421343,-0.099145092070103],[-0.052739176899195,-0.010174474678934,0.027898726984859],[0.016873186454177,0.056564070284367,0.0084930341690779]],[[-0.063308753073215,-0.084271781146526,-0.019853422418237],[-0.019615126773715,0.021845007315278,0.057742718607187],[-0.0021366181317717,-0.054350432008505,-0.018553195521235]],[[0.029319396242499,0.026504969224334,0.00043636668124236],[0.02980649471283,-0.051076710224152,0.02239328250289],[-0.046290699392557,0.013814916834235,0.033149298280478]],[[0.025775030255318,0.055561549961567,-0.0010398150188848],[0.033761102706194,-0.072783336043358,0.095858477056026],[0.014907408505678,-0.0076673221774399,-0.064642138779163]],[[-0.032738331705332,0.022979829460382,-0.024818725883961],[0.023258963599801,-0.026083886623383,0.040184065699577],[-0.075761772692204,-0.0076803485862911,-0.020404659211636]],[[-0.033304061740637,0.043738599866629,0.068649485707283],[0.024208351969719,0.035645470023155,-0.029879292473197],[-0.002707751467824,0.0145915877074,0.024237232282758]],[[0.063278779387474,0.045381780713797,0.011585624888539],[0.044060830026865,-0.028659280389547,0.012367169372737],[-0.015375383198261,0.01367971021682,-0.024819258600473]],[[0.038128100335598,0.013564989902079,0.0028799183201045],[0.010275333188474,-0.028021700680256,0.0051934262737632],[-0.045985288918018,-0.020572487264872,0.041453987360001]],[[-0.029558379203081,0.021154625341296,-0.022507566958666],[-0.046781729906797,-0.081560663878918,0.062744460999966],[0.091497763991356,-0.053623303771019,-0.015237642452121]],[[0.041765861213207,0.061277471482754,-0.019865090027452],[-0.044778153300285,0.020797200500965,-0.005746603012085],[-0.040151283144951,-0.090035542845726,0.010604926384985]],[[0.037754505872726,0.013746101409197,0.011252532713115],[0.032041970640421,0.065442197024822,0.033757649362087],[0.023653717711568,-0.039076447486877,0.027202688157558]],[[0.0035996497608721,-0.021351780742407,-0.031063210219145],[0.043344557285309,-0.031394638121128,-0.051257275044918],[-0.034115217626095,-0.025411298498511,-0.053112253546715]],[[-0.035531532019377,-0.013289269059896,0.101866774261],[-0.089166507124901,-0.047409731894732,-0.0039089168421924],[0.0044640395790339,-0.069553054869175,0.033169336616993]],[[0.062871485948563,0.044879775494337,0.021069785580039],[-0.049205452203751,-0.0510821826756,0.051602836698294],[-0.033008094877005,0.031772293150425,-0.074576713144779]],[[-0.10626370459795,0.22080127894878,0.05706188082695],[0.015907187014818,0.016895167529583,0.085478186607361],[-0.015487616881728,0.076721906661987,-0.0080422861501575]],[[-0.018150467425585,0.067953765392303,-0.022930141538382],[-0.032837897539139,-0.081842988729477,0.089997611939907],[0.013840345665812,0.010815257206559,-0.01924804225564]],[[-0.030779680237174,-0.024525566026568,0.067933097481728],[-0.05883152782917,0.0011306293308735,-0.099969327449799],[-0.063454709947109,-0.047838471829891,-0.024024954065681]],[[-0.053624287247658,0.092202477157116,0.041968233883381],[0.01688714325428,0.031883060932159,-0.11692644655704],[0.030850732699037,-0.038200452923775,0.0039386190474033]],[[-0.013146935962141,-0.035185646265745,-0.027773747220635],[-0.043809626251459,0.0053423568606377,-0.021569484844804],[-0.026534520089626,0.0052142501808703,-0.039933271706104]],[[-0.016733884811401,0.057736236602068,0.0086793312802911],[0.020981026813388,-0.067644789814949,0.039731666445732],[0.012442802079022,-0.00027711552684195,0.088088817894459]],[[0.065388731658459,0.027854401618242,-0.09457989782095],[0.01989034563303,0.044916808605194,-0.00086567382095382],[0.017300438135862,-0.0012731539318338,0.056783873587847]],[[-0.030317012220621,-0.017758181318641,0.052496816962957],[-0.026047250255942,0.011901739984751,-0.037571780383587],[-0.058519784361124,-0.021462548524141,-0.0013113898457959]],[[-0.00052457326091826,0.035157795995474,0.083307363092899],[-0.036204937845469,-0.078114107251167,0.033514279872179],[0.059292312711477,0.015447304584086,0.014744460582733]]],[[[-0.071937210857868,0.034346330910921,0.096587032079697],[0.0061580752953887,0.0289535112679,-0.0081189032644033],[-0.017297804355621,-0.033433746546507,-0.0061709559522569]],[[0.041468389332294,0.0023044866975397,0.030699323862791],[-0.043663207441568,-0.039853125810623,0.01213809568435],[-0.055045999586582,-0.0077340332791209,0.053274530917406]],[[-0.037607870995998,0.066193334758282,0.0029961890541017],[-0.039205707609653,-0.024255817756057,-0.0092900423333049],[0.0083477692678571,0.058002103120089,0.0015646724496037]],[[-0.035990476608276,0.016821516677737,0.016349209472537],[-0.020205350592732,0.032456077635288,-0.044421501457691],[0.032142773270607,-0.064702376723289,0.01812226139009]],[[0.0046797259710729,-0.026559730991721,0.0049816826358438],[0.010889394208789,-0.023900428786874,0.0023489643353969],[0.019404578953981,0.031173694878817,0.01051083765924]],[[-0.071557357907295,0.0033264358062297,0.022559594362974],[-0.016792831942439,-0.10445860028267,-0.059298608452082],[-0.032438419759274,0.096657939255238,0.032405238598585]],[[-0.052089858800173,0.016422715038061,0.028336932882667],[0.025402992963791,0.0068849241361022,0.034823056310415],[0.0037255727220327,0.095213755965233,-0.06440906971693]],[[-0.0056768166832626,0.043930009007454,0.016215603798628],[0.013283902779222,-0.014573627151549,-0.01395782828331],[0.010428892448545,0.044097319245338,-0.011769714765251]],[[0.020802728831768,0.071419984102249,0.010606114752591],[-0.0066814944148064,-0.0013331476366147,-0.031600717455149],[-0.058266662061214,0.0085868202149868,0.051576629281044]],[[0.020465554669499,0.054787665605545,-0.029315749183297],[-0.00024479560670443,-0.041565552353859,-0.030429556965828],[0.029142022132874,-0.017546385526657,-0.019435178488493]],[[0.087368749082088,-0.023218624293804,-0.0028146898839623],[-0.089661210775375,0.01960252225399,0.016208615154028],[-0.004753818269819,-0.066307730972767,-0.023254364728928]],[[-0.024751357734203,0.0084036765620112,-0.0020672020036727],[-0.0062650009058416,0.028625939041376,-0.066928595304489],[0.044489674270153,-0.046431828290224,0.0037919990718365]],[[-0.0034707612358034,0.020440323278308,0.0086541958153248],[-0.0089053260162473,0.086841106414795,-0.035549309104681],[-0.099639348685741,1.6937821783358e-05,-0.032199438661337]],[[0.060678448528051,-0.03037741407752,-0.0079403575509787],[-0.044537030160427,-0.056254550814629,0.032150752842426],[-0.014338151551783,-0.0083040045574307,0.012889284640551]],[[0.083338491618633,0.026999047026038,-0.00023946259170771],[-0.027605714276433,0.019092304632068,0.027397161349654],[-0.072182603180408,-0.0080148540437222,-0.023313745856285]],[[0.0031966469250619,-0.034697409719229,0.025091970339417],[0.044754523783922,0.10293912887573,-0.016960445791483],[0.0025444475468248,0.034426439553499,-0.020804597064853]],[[0.004701335914433,-0.079886600375175,-0.036971069872379],[0.033016014844179,0.013344083912671,-0.0029894961044192],[0.010863203555346,0.060008730739355,0.065291702747345]],[[0.037047136574984,0.047210078686476,-0.062968835234642],[-0.013413079082966,0.021640637889504,0.032453279942274],[-0.029024580493569,0.019135618582368,0.015280431136489]],[[-0.017992291599512,0.0099818063899875,0.050330046564341],[0.0082685649394989,-0.026727553457022,-0.049255330115557],[0.029680863022804,-0.074995249509811,0.050927270203829]],[[-0.014079501852393,0.024999372661114,0.041889734566212],[-0.017226614058018,-0.061501372605562,0.020900744944811],[0.020569149404764,-0.014814348891377,-0.032269984483719]],[[0.029466316103935,0.058100435882807,-0.055000804364681],[-0.061067447066307,0.056669298559427,-0.022933294996619],[0.034125305712223,-0.091800406575203,0.017253004014492]],[[-0.051331136375666,0.011120705865324,0.038011945784092],[-0.048825960606337,-0.042495116591454,-0.038934912532568],[0.079752914607525,-0.019379835575819,-0.01618617400527]],[[-0.0025212168693542,-0.041393898427486,0.062807872891426],[0.0087818149477243,0.047151070088148,-0.021267747506499],[-0.04867697134614,-0.026150982826948,0.050885170698166]],[[0.0099053429439664,0.065868377685547,0.0033153498079628],[0.06151931360364,0.085909567773342,-0.04961745813489],[0.0081820199266076,0.04466525092721,-0.089173875749111]],[[0.012227294035256,-0.019669717177749,0.028144109994173],[0.019501650705934,-0.032819285988808,-0.076849482953548],[-0.027364056557417,-0.032650224864483,0.067792199552059]],[[0.026148380711675,-0.037139896303415,-0.031365875154734],[0.0054041175171733,0.01539381314069,0.048730436712503],[-0.015308622270823,-0.036867883056402,0.053106777369976]],[[-0.0030432366766036,-0.043229192495346,0.049257919192314],[-0.018532462418079,0.037355620414019,-0.016344930976629],[-0.041210770606995,-0.023441882804036,0.028413489460945]],[[0.047935657203197,0.024639984592795,0.026450827717781],[-0.050965763628483,-0.013429696671665,0.025380114093423],[0.021942349150777,-0.027395645156503,-0.0018675900064409]],[[0.029260020703077,-0.038849167525768,-0.013134875334799],[-0.014775281772017,-0.031276304274797,-0.015431021340191],[0.012790274806321,0.046334881335497,0.056542333215475]],[[-0.045297410339117,0.028245383873582,0.038214422762394],[0.033516146242619,-0.068712577223778,-0.027364948764443],[0.028407609090209,-0.061444897204638,0.011855158023536]],[[-0.0024843642022461,-0.003729481017217,-0.093045465648174],[-0.032214254140854,0.0394237190485,0.019079986959696],[-0.010651472955942,-0.00079626135993749,-0.038563702255487]],[[0.03788734972477,-0.084076233208179,-0.030569782480597],[0.054513949900866,0.013721195980906,-0.078956693410873],[0.01856323890388,-0.033229853957891,0.034876961261034]],[[0.011369998566806,0.039433244615793,0.076092295348644],[-0.019230868667364,-0.010030193254352,-0.075177364051342],[0.0040960642509162,-0.011963993310928,-0.10040512681007]],[[0.03746797144413,0.021380245685577,0.044883955270052],[0.025566374883056,-0.045580215752125,-0.016375185921788],[-0.069688595831394,0.018270259723067,0.03197130933404]],[[0.0083837360143661,-0.019320236518979,0.013424541801214],[-0.0081771546974778,0.10559156537056,-0.025263410061598],[-0.024223821237683,-0.0019034672295675,-0.034475952386856]],[[0.029116233810782,-0.070125870406628,0.077639140188694],[0.008028544485569,0.067021399736404,-0.022027149796486],[0.027094442397356,0.014169021509588,-0.015458202920854]],[[-0.054398536682129,-0.056911539286375,-0.088927745819092],[-0.024514485150576,-0.023443913087249,-0.012158953584731],[0.020165078341961,0.083940915763378,0.031070154160261]],[[-0.0069628939963877,-0.013590758666396,0.057049371302128],[0.050292402505875,-0.041145391762257,-0.052979853004217],[0.0634800568223,-0.033417366445065,0.01640235632658]],[[-0.029551653191447,0.069321364164352,-0.020489923655987],[0.0072411415167153,-0.0030375211499631,0.011598600074649],[-0.014140817336738,-0.047052450478077,0.0083384932950139]],[[0.038674090057611,-0.0070085753686726,0.063981540501118],[0.030122485011816,0.0082861194387078,-0.039532154798508],[0.0016167474677786,-0.044133648276329,0.053687803447247]],[[0.0097649842500687,0.01813106611371,0.02432619035244],[0.042034700512886,-0.04564892500639,0.0071214404888451],[0.015368645079434,0.029012164101005,-0.062414839863777]],[[0.01200274284929,0.042616166174412,-0.011416668072343],[0.024246895685792,-0.018557881936431,0.016974268481135],[0.01690992154181,-0.050090685486794,0.0043951435945928]],[[0.024221763014793,0.024208430200815,-0.033268664032221],[0.04655396938324,-0.0031681964173913,0.0048821684904397],[-0.014326492324471,0.021443149074912,0.019384937360883]],[[0.062451373785734,0.015548660419881,-0.040716182440519],[0.098049119114876,-0.046453718096018,0.065906725823879],[-0.029201298952103,-0.010778780095279,-0.05854781717062]],[[0.055743467062712,0.046469185501337,0.023404395207763],[-0.013609727844596,-0.0033574306871742,0.060566041618586],[-0.10208719968796,-0.0035426439717412,-0.053763117641211]],[[-0.088361628353596,0.020681794732809,0.028523264452815],[-0.046721715480089,0.022818759083748,0.0055116503499448],[-0.005134854465723,0.10008893162012,-0.022103313356638]],[[0.025412397459149,0.057278994470835,-0.0042545557953417],[-0.041474521160126,0.024806471541524,0.022147659212351],[-0.050650015473366,0.0079532265663147,-0.0057106562890112]],[[0.048587433993816,0.0060876710340381,-0.02678456902504],[-0.00082076754188165,0.042386345565319,-0.0091995606198907],[-0.026073306798935,0.0012535038404167,-0.044217731803656]],[[-0.045258086174726,0.0013244986766949,2.9690516385017e-05],[0.051576744765043,-0.017777808010578,0.077660612761974],[-0.05973419547081,-0.016942968592048,-0.022401897236705]],[[0.024287972599268,-0.03367954492569,0.0084813209250569],[-0.0046606464311481,0.054474886506796,-0.060378380119801],[0.068151921033859,0.048008415848017,0.01427857670933]],[[-0.017450286075473,0.0088504021987319,0.034056562930346],[-0.0023896968923509,-0.10086154937744,0.049167018383741],[0.12692421674728,-0.027854772284627,-0.01336111407727]],[[-0.001314302906394,0.015771947801113,-0.0018105488270521],[-0.05353769287467,0.048278369009495,-0.029534008353949],[-0.032830387353897,0.058591227978468,0.045325879007578]],[[-0.073446966707706,-0.015698118135333,-0.031056106090546],[-0.0074802474118769,0.064410053193569,-0.025835823267698],[0.016454145312309,0.017284072935581,0.022695276886225]],[[-0.030226528644562,0.082194946706295,-0.021180795505643],[-0.0083366883918643,0.0197758898139,0.020028265193105],[-0.014280204661191,0.080621182918549,0.028805932030082]],[[0.040183965116739,0.069973744452,0.0060446006245911],[-0.014561343938112,0.041190758347511,-0.044566795229912],[-0.0083498582243919,-0.029965057969093,-0.066316395998001]],[[-0.015152554027736,0.014167372137308,0.0062296842224896],[0.022325618192554,0.031446114182472,-0.034277684986591],[-0.02125983312726,0.053199086338282,-0.022925917059183]],[[-0.020317928865552,-0.019958948716521,0.042041752487421],[-0.032633721828461,-0.052154801785946,0.068931512534618],[0.036615435034037,0.056069388985634,-0.0337781496346]],[[0.0025579605717212,-0.055841151624918,0.02997519262135],[0.03057861700654,-0.026690874248743,0.053376466035843],[-0.0095590092241764,-0.045021057128906,-0.028611151501536]],[[-0.042204387485981,-0.053195014595985,-0.058137722313404],[-0.047297958284616,0.037193458527327,0.0071949912235141],[0.095094226300716,-0.052871894091368,0.058845013380051]],[[0.0039802440442145,0.042686775326729,-0.0076391720212996],[-0.020654989406466,-0.057454630732536,0.054022520780563],[0.012075452134013,-0.0084429467096925,0.030928710475564]],[[-0.044563014060259,-0.062827043235302,0.015662824735045],[0.035030610859394,-0.00030919356504455,-0.0060318992473185],[0.040449976921082,-0.0093992883339524,0.0048471163026989]],[[0.011801538988948,0.049521535634995,0.039807606488466],[-0.0011609306093305,0.082666508853436,0.052015341818333],[0.023961117491126,-0.10674628615379,-0.020492089912295]],[[-0.027313787490129,-0.010660262778401,-0.0067683449015021],[0.022767193615437,0.047299332916737,-0.032580003142357],[0.016879413276911,-0.057573929429054,0.016443790867925]],[[-0.013046259991825,-0.058390479534864,-0.0036107080522925],[-0.0037868230137974,-0.027197044342756,0.023253871127963],[-0.0096150850877166,0.038319110870361,-0.028088580816984]],[[0.014802248217165,-0.080165557563305,0.014536446891725],[-0.053480315953493,0.036028109490871,0.015711748972535],[-0.02467093616724,0.076989710330963,-0.030977388843894]],[[0.03996941447258,-0.037030957639217,-0.019967099651694],[-0.0056789615191519,0.016979498788714,-0.014909151941538],[0.025595381855965,0.025266394019127,-0.0052987416274846]],[[0.008329595439136,-0.035895325243473,0.088632576167583],[0.037736680358648,-0.0031592126470059,-0.0077571305446327],[-0.0038948238361627,-0.035594403743744,0.047883596271276]],[[0.043133497238159,-0.021049221977592,-0.034387089312077],[0.023816237226129,-0.073141932487488,0.038122329860926],[0.0024017510004342,0.017642937600613,0.0047524035908282]],[[0.0043973647989333,-0.0044383308850229,0.028430225327611],[0.073070533573627,0.0061312802135944,-0.059447597712278],[-0.013327518478036,-0.04450785368681,-0.00035563713754527]],[[0.025924123823643,-0.044174443930387,0.016081437468529],[-0.055876843631268,0.087573237717152,0.046164106577635],[-0.015041065402329,0.015178580768406,-0.02292999625206]],[[0.036321293562651,0.0010719004785642,-0.076676733791828],[-0.0061664679087698,0.0066511328332126,0.062017675489187],[-0.042396977543831,0.024192595854402,0.062080144882202]],[[-0.00038636240060441,0.014504768885672,0.0039836498908699],[0.025856913998723,0.062929809093475,-0.032442819327116],[-0.019726237282157,-0.024286346510053,0.044232841581106]],[[-0.0093180136755109,-0.048558104783297,-0.022242935374379],[-0.013843852095306,-0.054836682975292,0.0038890081923455],[-0.0038126278668642,0.025422915816307,-0.010294769890606]],[[0.037931013852358,0.023229420185089,-0.083382308483124],[-0.06955736130476,0.058326862752438,0.030124930664897],[0.012405027635396,-0.074113294482231,0.056095942854881]],[[0.0057770693674684,-0.046872977167368,0.025916768237948],[-0.042628351598978,0.03259751200676,0.043342515826225],[-0.018693406134844,0.034084308892488,0.04429379850626]],[[0.044116280972958,-0.0019698443356901,0.0078830206766725],[-0.057833597064018,0.045614264905453,0.028266428038478],[-0.04079170525074,-0.035346407443285,0.0014620076399297]],[[0.035386554896832,-0.0091826813295484,-0.0016695002559572],[-0.0052548903040588,-0.012948175892234,-0.021753160282969],[0.039450086653233,-0.027079824358225,-0.074194110929966]],[[0.032929982990026,0.019843695685267,-0.049976781010628],[0.027596320956945,0.023678729310632,0.039991978555918],[-0.10977201908827,0.022407164797187,-0.048597812652588]],[[0.10933516174555,0.028576593846083,0.027593303471804],[-0.059426259249449,0.13403476774693,-0.043050784617662],[-0.036965128034353,0.028547611087561,-0.062797196209431]],[[-0.0094497734680772,-0.020383257418871,0.067301675677299],[0.02602638117969,-0.0072456491179764,-0.018604397773743],[-0.043943114578724,0.048468306660652,0.017901740968227]],[[0.041165497153997,0.0024600187316537,0.081460818648338],[0.0050286743789911,0.025689575821161,0.032544232904911],[-0.012483513914049,0.051128745079041,-0.094983719289303]],[[-0.0023195233661681,0.065518163144588,0.040145121514797],[-0.080403745174408,-0.0087417429313064,0.027074055746198],[0.013049268163741,-0.016533974558115,-0.015131233260036]],[[-0.030294019728899,-0.041539236903191,-0.020722255110741],[-0.07652223110199,0.056255929172039,0.042149722576141],[-0.0020086274016649,-0.00044707220513374,-0.013531133532524]],[[0.075543940067291,-0.096420854330063,-0.0075914291664958],[-0.013187970034778,-0.0099665587767959,0.030638691037893],[-0.020709587261081,0.01469181291759,0.033147376030684]],[[0.030468340963125,-0.020256089046597,0.0071945022791624],[-0.038105290383101,-0.0040857112035155,0.028928892686963],[0.053130637854338,0.018260324373841,-0.061336480081081]],[[-0.057296846061945,0.018355865031481,-0.043592389672995],[0.011393439024687,-0.017564492300153,0.077380038797855],[0.060993108898401,-0.02350377291441,0.010896625928581]],[[0.033228952437639,0.025758353993297,-0.018210764974356],[-0.0059656002558768,-0.0065110232681036,-0.05076066032052],[-0.018714964389801,0.016903068870306,0.018820080906153]],[[0.044865742325783,0.011359123513103,-0.02473883703351],[0.068426266312599,-0.0039563244208694,0.0042348308488727],[0.00047372234985232,-0.015583570115268,-0.01317617110908]],[[0.00060429325094447,0.056352112442255,-0.024338629096746],[-0.051737613976002,0.037902776151896,0.057591311633587],[0.0892643481493,-0.0085075302049518,-0.12820853292942]],[[-0.022689988836646,0.01149417553097,0.01959153264761],[0.0077130966819823,0.081623390316963,0.017562188208103],[-0.014628912322223,-0.0017017258796841,-0.0078898118808866]],[[-0.063247099518776,0.0011780764907598,0.0079694939777255],[-0.016925554722548,-0.011408706195652,0.049930073320866],[-0.029040545225143,-0.015070982277393,-0.0088919140398502]],[[-0.019040795043111,-0.0058318399824202,-0.032065939158201],[-0.027246743440628,0.014794554561377,0.0096755521371961],[-0.034833561629057,-0.049667872488499,0.02646161057055]],[[0.11650759726763,-0.084312506020069,-0.013430645689368],[-0.014921656809747,0.05479957908392,-0.04135550558567],[-0.029981384053826,-0.0086568128317595,0.0040902132168412]],[[-0.050921943038702,0.073000982403755,-0.0034877785947174],[-0.023463869467378,-0.0037233985494822,0.031816557049751],[-0.002007920993492,0.0096557904034853,-0.030635388568044]],[[0.080456994473934,0.037124991416931,-0.012265835888684],[0.018866159021854,0.054735481739044,-0.050715412944555],[-0.018485838547349,-0.062814339995384,-0.013416671194136]],[[-0.030667150393128,0.0012634379090741,0.044794641435146],[-0.032431628555059,-0.015512513928115,0.077118061482906],[-0.080615125596523,0.028298562392592,0.052502743899822]],[[0.043595060706139,-0.0064425924792886,-0.01426502969116],[0.0013763278257102,0.03149951249361,-0.076330631971359],[-0.025354456156492,0.016830669716001,0.055516757071018]],[[0.01382964104414,-0.064787313342094,-0.03186123073101],[-0.039491400122643,0.035075668245554,-0.0028158067725599],[0.0054675717838109,-0.0020633358508348,0.049144003540277]],[[0.021828897297382,0.049807421863079,-0.016958344727755],[0.02686926163733,0.039066310971975,0.037327900528908],[0.00082068232586607,-0.035088639706373,-0.065724954009056]],[[0.0032451199367642,0.0050348481163383,-0.061666838824749],[-0.0042003570124507,-0.056269180029631,0.033871065825224],[0.049900788813829,0.035518478602171,0.032037310302258]],[[-0.015519741922617,-0.079030059278011,0.00961097702384],[-0.018736161291599,0.048043087124825,-0.018890842795372],[0.0062023005448282,0.058378100395203,-0.040762305259705]],[[0.010913883335888,-0.068235605955124,0.0085469568148255],[-0.018574848771095,-0.0048952791839838,-0.013615014031529],[0.023011727258563,-0.0088334670290351,0.07130915671587]],[[-0.082855083048344,0.0030037385877222,0.023755140602589],[0.019222188740969,-0.013786539435387,0.025148913264275],[-0.005413266364485,0.089254289865494,-0.066068969666958]],[[-0.077137924730778,-0.0298753362149,0.062189158052206],[0.0063846949487925,-0.0014886527787894,0.022848377004266],[-0.00083879195153713,-0.020625304430723,0.021082667633891]],[[-0.01570412889123,0.002482183277607,-0.0024095391854644],[0.069720260798931,-0.084090299904346,0.070081874728203],[0.0038714257534593,-0.020502347499132,0.064144939184189]],[[0.016052713617682,-0.050087243318558,0.039153557270765],[0.032468359917402,0.014382842928171,-0.049183283001184],[-0.068116024136543,0.025239028036594,0.032849133014679]],[[0.069644220173359,-0.013186394236982,-0.011256237514317],[-0.011732683517039,-0.0078375842422247,0.0048724971711636],[0.012943449430168,-0.062493469566107,-0.023358557373285]],[[0.020798180252314,-0.007678085938096,0.038258820772171],[0.073564648628235,0.078048124909401,-0.064538396894932],[-0.032497018575668,-0.042913340032101,-0.030193405225873]],[[0.047174487262964,-0.054737683385611,9.6808420494199e-05],[-0.054322276264429,0.044416170567274,-0.00018131540855393],[0.031332176178694,0.0086068753153086,-0.025621715933084]],[[0.073429211974144,0.071979738771915,0.053149435669184],[0.062829568982124,0.0031070737168193,0.079656310379505],[0.049378532916307,0.13183291256428,0.012667156755924]],[[-0.056238695979118,-0.12679928541183,-0.039523489773273],[-0.027434229850769,-0.013809486292303,0.027267212048173],[-0.068684585392475,-0.02844868786633,-0.073642887175083]],[[0.0025194245390594,0.0023275779094547,-0.024528170004487],[-0.018163407221437,0.015486981719732,-0.045476172119379],[0.027840392664075,0.059927918016911,-0.04232594743371]],[[0.012602034024894,-0.0051723928190768,0.032983034849167],[-0.11134818196297,0.038504883646965,-0.019283706322312],[0.054477602243423,-0.0030994284898043,-0.00069306208752096]],[[-0.019427012652159,0.05293146148324,0.040132537484169],[0.053759444504976,0.015707535669208,0.023441530764103],[-0.027895253151655,0.055200178176165,0.033261142671108]],[[-0.0014036521315575,0.015583739615977,0.030915152281523],[-0.015075645409524,0.022649515420198,-0.093034528195858],[-0.029464850202203,-0.032611027359962,0.041189383715391]],[[0.024276541545987,-0.02383491769433,-0.0014676959253848],[-0.034970883280039,-0.0025170044973493,0.014783605933189],[-0.050689939409494,0.047620266675949,0.020627351477742]],[[0.014025125652552,0.021219968795776,0.031157221645117],[-0.0087004033848643,0.0531468950212,0.05664911866188],[-0.027671489864588,-0.023095255717635,0.05614461004734]],[[0.10279330611229,0.040745679289103,-0.00063868972938508],[0.072490572929382,-0.076761610805988,0.090966910123825],[-0.074318736791611,-0.0025918679311872,-0.038888368755579]],[[-0.094093635678291,0.016087299212813,0.0013268054462969],[-0.061552692204714,0.069827906787395,0.075831934809685],[-0.018090566620231,0.0655238032341,-0.011530932970345]],[[0.027628658339381,0.0072781043127179,-0.055435951799154],[0.016764597967267,0.023052537813783,-0.045518971979618],[0.0456796400249,-0.027774970978498,-0.028011634945869]],[[-0.0285117123276,0.032094072550535,0.036953222006559],[0.010488064028323,-0.06849031150341,0.062566131353378],[-0.027805082499981,0.054171673953533,0.021612051874399]],[[-0.011957099661231,0.00019956030882895,-0.048592373728752],[0.093808531761169,0.010788249783218,0.038471639156342],[-0.02854722365737,-0.071911551058292,0.018566202372313]],[[-0.013292128220201,-0.089951664209366,0.015561711043119],[-0.064777173101902,0.04181432723999,0.052322816103697],[0.042380824685097,-0.016944451257586,0.04970770329237]],[[-0.026425333693624,-0.0034948787651956,-0.0040493416599929],[0.031611807644367,-0.0048629832454026,-0.029228994622827],[0.044122532010078,0.037775386124849,-0.08369866758585]],[[-0.025748418644071,0.057645719498396,-0.010316222906113],[-0.064494445919991,-0.013964549638331,-0.011379666626453],[-0.021665520966053,0.060000766068697,0.028895771130919]],[[-0.035787504166365,0.063128881156445,0.014124906621873],[-0.016533901914954,0.035474345088005,0.011130160652101],[-0.011875128373504,-0.062794879078865,0.010924187488854]],[[0.044433828443289,-0.033752050250769,0.0011005650740117],[0.027979172766209,-0.014579894952476,-0.0051161707378924],[0.013505591079593,0.070472933351994,-0.0069481837563217]],[[0.031957305967808,0.02829178608954,-0.034604404121637],[-0.020308740437031,-0.029683258384466,-0.057819992303848],[-0.027295023202896,-0.049460738897324,-0.0045066946186125]]],[[[-0.0072801169008017,-0.076321244239807,-0.036809358745813],[-0.026213949546218,0.048138074576855,0.039523165673018],[0.0043324008584023,0.035917446017265,0.045861952006817]],[[0.0048789074644446,-0.048957053571939,0.05341637507081],[0.047009501606226,-0.045721307396889,0.021035304293036],[0.012873681262136,-0.0019309188937768,-0.033360544592142]],[[-0.04479618370533,0.079062886536121,0.034855268895626],[-0.0094000585377216,-0.039611779153347,-0.075989194214344],[-0.025467958301306,0.10088157653809,-0.00032354582799599]],[[0.054445631802082,0.097497634589672,0.039723210036755],[0.0050796954892576,0.029798248782754,0.0064996373839676],[0.068920813500881,-0.029285997152328,0.0041730366647243]],[[0.035182505846024,-0.064849525690079,0.033930506557226],[0.054155949503183,-0.017246080562472,0.067672036588192],[0.0019029278773814,0.050108000636101,-0.060441687703133]],[[0.043727729469538,-0.025103384628892,-0.012719185091555],[-0.0028590040747076,0.0072983242571354,0.0084638381376863],[0.031335305422544,0.015622395090759,0.0053861336782575]],[[0.051416270434856,-0.0176792871207,0.017695471644402],[0.054225407540798,0.069059692323208,-0.059156849980354],[-0.029458608478308,-0.019462272524834,-0.03480676189065]],[[0.094295039772987,0.029732828959823,0.00055104168131948],[0.086109653115273,0.0047430102713406,-0.0063762543722987],[-0.021904584020376,-0.011965196579695,-0.016520015895367]],[[-0.078849218785763,-0.00015000498387963,0.062627516686916],[0.005770624615252,0.080004550516605,0.011168486438692],[0.057406771928072,0.006231308914721,0.024065148085356]],[[0.013110917061567,-0.032085888087749,-0.034038949757814],[-0.022698555141687,-0.0076846899464726,0.10914066433907],[0.11887574195862,-0.019273519515991,0.085646077990532]],[[0.090197019279003,0.016107091680169,0.067098528146744],[0.016355844214559,-0.016221037134528,0.019919047132134],[-0.079121433198452,0.023520119488239,0.040690049529076]],[[0.043375123292208,-0.0034490525722504,0.011077217757702],[0.014282532967627,0.056653331965208,-0.030854104086757],[0.041477784514427,0.002389423083514,0.046064432710409]],[[0.02482021227479,-0.064456924796104,0.043328057974577],[0.073847927153111,-0.00042908106115647,-0.051540050655603],[-0.057755101472139,0.046346396207809,0.084677025675774]],[[0.048872973769903,-0.0087523404508829,-0.041624005883932],[-0.088347807526588,0.046034757047892,-0.0069772065617144],[-0.035460706800222,-0.0089123845100403,-0.0044034756720066]],[[0.049532104283571,0.091999500989914,0.0056429095566273],[0.061861164867878,0.068108633160591,-0.074575275182724],[-0.014418291859329,0.13413038849831,-0.0046627572737634]],[[0.03829487785697,-0.024789232760668,0.025144031271338],[-0.03821923956275,-0.0046316082589328,0.0078510995954275],[-0.053282260894775,0.047920420765877,-0.026427062228322]],[[0.013150780461729,-0.058738447725773,0.020550630986691],[0.0438500829041,-0.060990553349257,0.028459385037422],[0.040005624294281,-0.011554152704775,0.047633368521929]],[[0.023757740855217,0.036858323961496,0.017480995506048],[0.004746769554913,-0.0074407709762454,0.0038324368651956],[-0.080360472202301,0.034668061882257,0.046154502779245]],[[-0.057084660977125,0.013558872044086,0.028718316927552],[-0.047343067824841,0.020553832873702,0.033475272357464],[-0.053985357284546,0.030655546113849,-0.0062717739492655]],[[0.0095712123438716,-0.018556192517281,0.019391322508454],[-0.01816769503057,-0.03567111864686,-0.078773140907288],[-0.032793633639812,0.013588221743703,0.029040809720755]],[[-0.036229867488146,0.01922120526433,-0.006353504024446],[-0.03912765160203,-0.056272719055414,0.016522468999028],[0.026751780882478,-0.0098262475803494,0.02362172305584]],[[-0.0055016409605742,-0.01181120891124,0.014483612962067],[-0.0027884407900274,0.016668170690536,-0.047769613564014],[0.075887270271778,0.11265514791012,0.079006589949131]],[[0.027289004996419,0.038790762424469,-0.032933160662651],[-0.0029568851459771,-0.001147115486674,-0.0078784031793475],[-0.051402386277914,-0.044999327510595,-0.012048571370542]],[[-0.084911569952965,-7.3980787419714e-05,-0.059000510722399],[-0.026457777246833,-0.027781965211034,-0.016176123172045],[-0.025030547752976,-0.00716971186921,-0.012584029696882]],[[-0.024229440838099,0.039304483681917,0.020497949793935],[0.076261594891548,0.032088447362185,0.038085173815489],[-0.0078141186386347,-0.088559105992317,0.0074870879761875]],[[0.027763668447733,0.024114809930325,0.029097136110067],[0.013744878582656,-0.015624513849616,0.074582479894161],[0.022462200373411,-0.029396908357739,0.071000024676323]],[[0.016160313040018,0.040912579745054,0.0091875875368714],[0.077283158898354,0.040755927562714,-0.002849898301065],[0.0015261461958289,0.035663139075041,-0.0037143342196941]],[[-0.090061895549297,-0.0054732332937419,0.035750400274992],[0.068239219486713,-0.028320364654064,-0.023678032681346],[0.068818591535091,-0.01052921358496,0.071392416954041]],[[0.018281515687704,-0.076303087174892,0.035980895161629],[0.017353694885969,0.031099498271942,-0.013224381022155],[-0.009934545494616,0.02653513289988,0.06557834148407]],[[0.0070035322569311,-0.0010961496736854,0.035069454461336],[-0.064528785645962,-0.0096347099170089,0.039146021008492],[-0.018172413110733,0.027584262192249,0.028646469116211]],[[-0.037059862166643,0.036694128066301,-0.0059440936893225],[0.021340485662222,0.02545859105885,0.081654943525791],[0.015189741738141,0.0025399646256119,0.030200932174921]],[[0.076559729874134,0.013033520430326,-0.017396360635757],[-0.016698367893696,-0.0073135080747306,-0.033657841384411],[-0.044429268687963,-0.049620267003775,0.023518478497863]],[[0.048620723187923,-0.035713046789169,0.073340907692909],[0.048462931066751,-0.022700127214193,-0.015498653054237],[-0.0017278015147895,0.0092759020626545,-0.10805341601372]],[[-0.064298696815968,0.012501103803515,0.069172240793705],[0.013137856498361,-0.024274975061417,0.0070204385556281],[0.05754366889596,-0.00032414495944977,0.016136402264237]],[[0.0041562272235751,-0.12691590189934,0.014019063673913],[0.058819357305765,-0.010416430421174,0.071356445550919],[-0.04705036431551,-0.036818787455559,0.026554886251688]],[[0.045145854353905,-0.0080705611035228,0.090940721333027],[-0.023026928305626,0.071602053940296,-0.028151491656899],[-0.094701603055,0.020637240260839,-0.011181022040546]],[[-0.022967083379626,0.016017751768231,0.031801171600819],[0.066824018955231,0.066519699990749,0.017360582947731],[0.040579285472631,0.0058611733838916,-0.010243840515614]],[[0.085662826895714,0.054446127265692,-0.052145719528198],[-0.049150459468365,0.054314706474543,0.039330925792456],[0.086495645344257,-0.064091682434082,-0.007640462834388]],[[-0.015956981107593,0.035158980637789,-0.0096083069220185],[0.035013407468796,0.088342055678368,0.054720848798752],[0.10070346295834,0.061300400644541,-0.024346474558115]],[[-0.086047604680061,-0.020255729556084,0.02246999181807],[-0.0039254743605852,-0.0536969602108,0.050726871937513],[0.012215185910463,0.048347063362598,-0.055008750408888]],[[-0.0021188899409026,-0.0053185899741948,0.037493582814932],[0.025585282593966,-0.029615320265293,0.0087793618440628],[-0.0080382926389575,-0.0048957732506096,0.075308054685593]],[[-0.0085727320984006,-0.044011943042278,0.044309515506029],[0.040779490023851,0.042452242225409,-0.022605355829],[-0.035206709057093,-0.0098084127530456,-0.01654384098947]],[[0.028330435976386,-0.042683683335781,0.028377721086144],[-0.06454386562109,0.012339512817562,0.010929346084595],[-0.051430534571409,0.0068147373385727,-0.033781513571739]],[[0.028080876916647,0.027110645547509,-0.021790506318212],[-0.013445883989334,0.02673115581274,-0.050142619758844],[0.03607864305377,0.0063864239491522,0.020935630425811]],[[-0.027723209932446,0.066209234297276,-0.047201331704855],[-0.047390002757311,-0.049956135451794,-0.0022109975107014],[-0.0092483647167683,0.0048027648590505,0.052447326481342]],[[-0.0071382415480912,0.034511029720306,-0.0067266640253365],[-0.0040078228339553,0.0057093231007457,0.11013753712177],[0.019864562898874,0.079160645604134,0.092351831495762]],[[-0.068812601268291,0.044740453362465,0.013392105698586],[0.045556802302599,0.04107041656971,-0.011808592826128],[0.087216652929783,0.0068889427930117,-0.0069947610609233]],[[0.014474181458354,0.011634051799774,0.0079815657809377],[0.017735546454787,0.029657965525985,0.0038518507499248],[0.035309936851263,-0.033589962869883,0.086361430585384]],[[0.0046124313957989,0.01426381058991,0.10832019895315],[-0.027878841385245,0.048306416720152,0.028117133304477],[0.050470232963562,-0.089034117758274,-0.049089621752501]],[[0.041294027119875,0.0075178844854236,-0.034830175340176],[-0.025580437853932,0.014390639029443,-0.0064333812333643],[0.0035792572889477,0.028956716880202,-0.0016424738569185]],[[-0.0086246225982904,-0.057139810174704,0.031514454632998],[0.05806203559041,0.039697725325823,0.015575806610286],[-0.047421351075172,0.088403955101967,-0.051547214388847]],[[0.16988652944565,0.095420233905315,0.010195838287473],[0.039688803255558,0.058918789029121,0.031053921207786],[-0.015166318044066,-0.050207778811455,-0.0094626620411873]],[[0.073064297437668,0.037836659699678,0.047906149178743],[0.021287836134434,0.053939238190651,0.0049118408933282],[-0.04210638999939,0.0037817459087819,0.003857170464471]],[[0.038544129580259,-0.048744723200798,0.046954672783613],[0.045162577182055,-0.027252314612269,-0.016187030822039],[0.027050754055381,0.019875781610608,0.020151762291789]],[[0.041528213769197,0.028594851493835,-0.039774909615517],[0.0051538357511163,0.083170585334301,-0.037444166839123],[0.0012995741562918,0.054257910698652,0.019276697188616]],[[0.042085010558367,-0.019842222332954,0.015995608642697],[-0.036997567862272,0.02095777541399,0.018405385315418],[-0.008690427057445,-0.0017340279882774,-0.05410435423255]],[[0.012422914616764,-0.05824701115489,-0.015441396273673],[-0.044736366719007,0.009087854065001,0.020587557926774],[0.012459499761462,0.082507736980915,-0.11539675295353]],[[-0.057404104620218,0.0079722627997398,0.0132005661726],[0.038258146494627,0.030271710827947,-0.030339641496539],[0.057405535131693,0.065830007195473,0.067186258733273]],[[0.0018591169500723,0.069313675165176,-0.049301721155643],[0.020580548793077,0.031729705631733,0.083504818379879],[0.0032623817678541,0.10188364982605,-0.048864588141441]],[[-0.02414383739233,0.0096886297687888,-0.018498891964555],[-0.0099022770300508,0.013601643033326,0.033470671623945],[0.018326487392187,-0.06799279153347,0.061279036104679]],[[0.031752292066813,0.063002981245518,0.0028228340670466],[0.022938689216971,0.077127918601036,0.0051969420164824],[-0.023736350238323,0.015464646741748,-0.00083917210577056]],[[-0.041040148586035,-0.037215918302536,-0.061844240874052],[0.0083539113402367,-0.0092325992882252,0.074051715433598],[0.047883749008179,-0.046714551746845,0.058429162949324]],[[0.020289966836572,-0.033583134412766,-0.039581898599863],[-0.01277367118746,0.053470581769943,-0.010772445239127],[0.011348563246429,-0.076286979019642,0.036541361361742]],[[0.0035704497713596,0.099103517830372,-0.0034068403765559],[0.012158456258476,0.021792886778712,0.023904440924525],[-0.0080314269289374,0.063480697572231,0.083934739232063]],[[-0.0089780250564218,-0.047943685203791,0.00069299625465646],[-0.03778538107872,-0.043395739048719,0.018671007826924],[0.010726748034358,-0.0061865081079304,-0.089567564427853]],[[-0.035858269780874,-0.021026752889156,0.010066103190184],[0.0018899919232354,0.066387459635735,0.012895658612251],[-0.010370370931923,0.0029138745740056,-0.050723742693663]],[[0.0098834149539471,-0.0066873067989945,0.032002996653318],[0.010009580291808,0.031411569565535,0.0070969122461975],[0.010652403347194,0.055852320045233,0.0063528064638376]],[[0.02068000100553,0.075942203402519,0.082787357270718],[0.023580767214298,0.040353447198868,0.017153581604362],[0.0089155687019229,0.03955714777112,-0.043745398521423]],[[0.020456442609429,0.0082569848746061,0.070327408611774],[0.037432625889778,0.058121327310801,0.0056748636998236],[-0.020900849252939,-0.04210364818573,0.033909104764462]],[[0.086744897067547,0.013138998299837,-0.0042476137168705],[-0.049826789647341,0.080920159816742,-0.0046090553514659],[-0.014753062278032,-0.015093458816409,-0.00078272906830534]],[[0.075272671878338,0.0087597798556089,0.019928470253944],[-0.025550864636898,0.048746962100267,0.0034283499699086],[0.036055341362953,0.014461426995695,0.071198105812073]],[[0.023074992001057,-0.0025129192508757,-0.0088084135204554],[0.024928415194154,0.011397461406887,-0.0098859099671245],[0.0040580960921943,0.075980603694916,0.045065373182297]],[[0.0099598616361618,0.038982696831226,0.0058335522189736],[0.02410351857543,0.041527073830366,0.031885284930468],[-0.021985990926623,-0.0098623922094703,-0.022184805944562]],[[0.050507001578808,-0.004337492864579,0.034569576382637],[-0.030425205826759,-0.049524553120136,0.04133902862668],[0.043057702481747,0.030172949656844,0.01392840128392]],[[0.041512116789818,-0.0088552292436361,0.036440763622522],[0.020013997331262,0.0032627887558192,0.037985377013683],[0.014403538778424,0.023887379094958,0.067768804728985]],[[0.054598111659288,0.014811045490205,0.023815020918846],[-0.025871306657791,-0.014054211787879,0.039339408278465],[-0.0058779651299119,0.0098806815221906,-0.06350602209568]],[[0.024801604449749,-0.024258024990559,0.021418577060103],[0.0028422751929611,0.014617830514908,0.068435408174992],[-0.027020435780287,-0.013087986968458,-0.0073766163550317]],[[-0.025455769151449,0.020191479474306,-0.030749209225178],[-0.0092321205884218,-0.034395646303892,-0.034714464098215],[0.056149497628212,-0.059711012989283,0.065623074769974]],[[0.026850111782551,0.0055944309569895,0.0060184332542121],[-0.020027663558722,0.050584435462952,0.030432440340519],[0.088299207389355,0.023754173889756,-0.033539917320013]],[[-0.01773476973176,0.012637891806662,-0.012089816853404],[-0.03804000467062,0.0084612313657999,0.0084816925227642],[-0.018480719998479,-0.0042059733532369,0.0074606989510357]],[[-0.009207989089191,-0.046624969691038,0.025728279724717],[0.06246892362833,-0.064659386873245,0.012311015278101],[-0.014055743813515,0.047202721238136,0.058979541063309]],[[0.0063392426818609,-0.0095665110275149,-0.017005676403642],[-0.062292959541082,-0.046631958335638,-0.027932051569223],[-0.021401701495051,0.045544505119324,0.00081859744386747]],[[-0.041530720889568,-0.035510323941708,-0.030603557825089],[0.066330604255199,-0.10321614891291,-0.01931706815958],[0.005807819776237,0.094834238290787,0.071203008294106]],[[0.028535893186927,-0.013271111994982,0.030872335657477],[0.015042017214,-0.021673118695617,0.036475244909525],[0.020739801228046,0.020409954711795,-0.052400313317776]],[[-0.038139745593071,-0.025809777900577,0.034144755452871],[-0.018734518438578,0.039533779025078,0.078802064061165],[0.079751528799534,0.059981144964695,-0.067457772791386]],[[0.025359448045492,0.024462340399623,-0.048812426626682],[0.014521258883178,0.010420220904052,-0.011319874785841],[0.042483873665333,0.01754760555923,-0.025651479139924]],[[0.0072468924336135,-0.053091157227755,0.0010089074494317],[0.044540278613567,0.0010989478323609,0.056627258658409],[-0.013246666640043,0.011044326238334,0.015134719200432]],[[0.016633635386825,-0.014812178909779,-0.024499304592609],[-0.0097703086212277,-0.01152334548533,-0.0010236168745905],[-0.061473578214645,0.066175974905491,-0.013518618419766]],[[-0.022033913061023,0.056993573904037,-0.041732855141163],[-0.047947593033314,0.034774694591761,0.088643431663513],[-0.013458852656186,0.050649993121624,0.055484995245934]],[[0.02866923995316,-0.040174245834351,-0.0253990534693],[-0.00066640396835282,0.0054910946637392,0.0050630597397685],[-0.019628062844276,0.014646400697529,0.082581996917725]],[[0.030400216579437,-0.010864121839404,0.013947491534054],[0.11210091412067,0.034817703068256,0.049939136952162],[-0.04061821475625,0.078793846070766,0.044359110295773]],[[-0.031242255121469,0.013569119386375,0.064527936279774],[-0.071116849780083,0.0098401103168726,-0.012976800091565],[-0.015447152778506,0.051583047956228,-0.0096091460436583]],[[-0.00090796872973442,0.01554668135941,0.032415602356195],[0.03243338316679,0.035139590501785,-0.010664799250662],[-0.021144729107618,0.015449524857104,-0.0036562830209732]],[[-0.066997215151787,-0.048681251704693,0.020519364625216],[0.048985164612532,0.11613408476114,-0.0062299547716975],[-0.001010357751511,0.044689361006021,0.027888687327504]],[[-0.0075043262913823,0.021535307168961,-0.025678444653749],[-0.02299683727324,-0.041659567505121,0.039152041077614],[-0.032099518924952,0.024281211197376,-0.0085797095671296]],[[-0.0053481543436646,0.035415001213551,0.060258641839027],[-0.071151845157146,0.032534256577492,0.066755793988705],[-0.024054560810328,-0.024639992043376,-0.12923865020275]],[[-0.075600571930408,0.026884252205491,0.0065657193772495],[-0.011719792149961,-0.042108297348022,0.041518554091454],[-0.022478869184852,0.017533672973514,0.031070422381163]],[[-0.0020937244407833,0.13092838227749,-0.03409668058157],[0.077725820243359,-0.046444538980722,-0.02031222358346],[-0.067469894886017,0.016728917136788,0.01016719546169]],[[-0.034948237240314,-0.02502229437232,0.0029888574499637],[-0.011946414597332,0.027760323137045,-0.022597266361117],[0.053470183163881,0.059089291840792,0.050815179944038]],[[0.045826800167561,0.028665026649833,-0.0095101268962026],[-0.0063773267902434,-0.020919444039464,-0.034533258527517],[-0.046696495264769,-0.029869636520743,0.0094929002225399]],[[-0.045085910707712,0.028707977384329,0.020687578245997],[-0.00085274345474318,-0.0047154161147773,-0.0063713830895722],[0.023089004680514,0.027919257059693,-0.0042982716113329]],[[0.03738721087575,0.049550637602806,0.05448592454195],[0.045092117041349,-0.025181312114,-0.013207267038524],[0.071995042264462,-0.0079379249364138,0.061185210943222]],[[-0.036570623517036,-0.02012257091701,-0.017310963943601],[0.0566644705832,0.0064366958104074,0.061919789761305],[-0.0046017309650779,0.1058290079236,0.0029124885331839]],[[0.065751478075981,0.026517288759351,-0.02180665358901],[0.0086769927293062,-0.034349221736193,-0.01328288950026],[0.017762823030353,0.074005208909512,0.014053210616112]],[[0.056319665163755,-0.039212554693222,-0.050620470196009],[-0.042548187077045,-0.012913541868329,0.055675718933344],[0.005923860706389,0.086073189973831,-0.012583957053721]],[[-0.013480726629496,0.029420031234622,0.011183776892722],[-0.028657395392656,-0.032358925789595,0.025126380845904],[0.0091023091226816,0.0066368640400469,0.047808639705181]],[[0.0035985987633467,0.0018472025403753,-0.015393428504467],[0.0042152940295637,-0.0028107916004956,0.018049873411655],[0.010624187067151,0.0075386092066765,-0.068950563669205]],[[0.0033257843460888,0.029947502538562,-0.033781256526709],[-0.082322530448437,0.041252434253693,0.018165176734328],[-0.027494309470057,0.029203588142991,-0.004502210766077]],[[0.033153131604195,0.058820009231567,0.080667205154896],[0.05665934830904,-0.047005198895931,-0.082716837525368],[0.052436772733927,-0.03733079880476,0.029926683753729]],[[-0.021407064050436,0.020888155326247,-0.0094821788370609],[0.014497560448945,-0.046140391379595,-0.031550191342831],[0.023241333663464,0.052308052778244,-0.055223438888788]],[[0.026513634249568,0.053847260773182,-0.071344159543514],[-0.038853246718645,0.038404352962971,-0.050413366407156],[-0.0081017082557082,0.019829964265227,0.024827964603901]],[[0.025749132037163,-0.049819082021713,0.028591498732567],[0.060033287853003,0.0063468208536506,-0.0017083543352783],[-0.10363007336855,0.055939361453056,-0.022440128028393]],[[0.017036547884345,-0.045045386999846,-0.0073001687414944],[-0.023794233798981,-0.048438929021358,0.018112480640411],[0.069118216633797,-0.035417474806309,0.015056150965393]],[[-0.036357536911964,0.011861691251397,0.034792128950357],[-0.001014526351355,-0.02798873744905,0.070063889026642],[0.036316998302937,0.015524698421359,-0.015604632906616]],[[0.044459454715252,0.027561893686652,-0.026677830144763],[0.022206980735064,-0.0093446038663387,-0.037464238703251],[-0.019945211708546,0.016790423542261,-0.016615988686681]],[[0.054819822311401,-0.020175540819764,-0.020501613616943],[0.036136206239462,0.039055906236172,0.018284315243363],[0.0021635612938553,0.028877031058073,0.062519051134586]],[[-0.028485281392932,0.055583849549294,-0.025641417130828],[0.0039230459369719,0.065327979624271,0.041089594364166],[0.027241693809628,0.086760558187962,-0.012119838036597]],[[0.0608971118927,0.057209357619286,-0.0025890939868987],[0.038478743284941,0.075194038450718,-0.040884029120207],[-0.0071501592174172,-0.020903458818793,-0.056844711303711]],[[-0.056510373950005,0.040499974042177,0.0044533079490066],[-0.024958785623312,0.033040698617697,-0.03341818600893],[0.024572249501944,-0.0052448292262852,0.022108837962151]],[[0.021743059158325,-0.027457663789392,-0.016587490215898],[0.052905809134245,-0.087322294712067,-0.050347339361906],[-0.079278774559498,-0.073752574622631,-0.034191194921732]],[[0.0081298798322678,-0.024281101301312,-0.016101622954011],[-0.080865234136581,-0.0035918389912695,0.011134741827846],[-0.097906157374382,-0.034900184720755,-0.04714135453105]],[[-0.038262344896793,0.0081609841436148,-0.012706654146314],[0.090945981442928,-0.0064516202546656,0.050968747586012],[0.046789091080427,0.010753910057247,-0.076388083398342]],[[-0.0065280217677355,-0.1138511300087,0.028321035206318],[-0.010845813900232,0.024967227131128,-0.01185748912394],[0.020990753546357,0.085621289908886,-0.006973635405302]],[[-0.03074511513114,0.069369569420815,0.035730451345444],[0.023855602368712,-0.022609120234847,-0.0038104741834104],[0.014776601456106,0.018497284501791,-0.019938519224524]],[[0.019817249849439,-0.03340981900692,0.067414954304695],[0.010795392096043,-0.0055975397117436,0.052264872938395],[-0.058070968836546,0.046983048319817,0.085224829614162]],[[-0.017138730734587,0.013700191862881,-0.034745741635561],[-0.028804011642933,-0.047727968543768,0.01722926646471],[0.076076716184616,0.068553067743778,0.007775875274092]],[[0.062505699694157,-0.074965998530388,-0.0083359591662884],[0.040510836988688,-0.03074206598103,0.028954355046153],[0.13290129601955,0.040880192071199,0.044926695525646]],[[0.0097636729478836,0.0035132803022861,0.03324156627059],[-0.0046597076579928,0.031736861914396,-0.021930212154984],[0.0056739184074104,0.011925550177693,0.062661997973919]]],[[[0.017236586660147,-0.050664469599724,-0.0037881031166762],[0.028263369575143,-0.042011894285679,0.012008067220449],[-0.023759972304106,0.0099809747189283,-0.059657368808985]],[[0.027655785903335,0.035801704972982,-0.016859479248524],[0.054237429052591,0.027907000854611,-0.061401203274727],[-0.061975888907909,0.040357660502195,0.019472805783153]],[[-0.068352751433849,0.078103683888912,0.037712801247835],[0.061350762844086,-0.10014076530933,0.028884986415505],[0.0514259301126,0.046460747718811,-0.025798499584198]],[[-0.010679359547794,0.05480994284153,-0.093926839530468],[0.0082266069948673,0.00083815836114809,0.024703379720449],[-0.032709952443838,0.02797613106668,0.049582749605179]],[[-0.070465765893459,-0.058400738984346,-0.013904860243201],[-0.00048075398080982,-0.029403574764729,0.054436553269625],[0.058717630803585,-0.015982592478395,-0.0098227029666305]],[[0.019754508510232,-0.066495843231678,0.033643756061792],[-0.01823390647769,0.045166283845901,0.0027601947076619],[0.045344609767199,0.039345975965261,0.028436271473765]],[[0.0022693399805576,0.015759024769068,0.075204990804195],[0.03619271889329,-0.0025663119740784,0.00013474235311151],[0.10058061033487,-0.11613611131907,-0.066744208335876]],[[0.0030382801778615,0.01915299333632,-0.019770048558712],[-0.083247825503349,0.0060368520207703,0.0039751850999892],[0.016452301293612,-0.0081820860505104,0.045291006565094]],[[-0.050057679414749,-0.0045399935916066,0.015040015801787],[-0.0079489825293422,-0.031846344470978,0.043129701167345],[-0.046428039669991,0.032932598143816,-0.025691138580441]],[[-0.048120111227036,-0.024895768612623,-0.069899991154671],[-0.093806654214859,-0.014486122876406,0.049702629446983],[-0.041933573782444,0.0042366553097963,-0.011772893369198]],[[-0.078559957444668,0.035067953169346,0.0051497318781912],[0.068777874112129,0.024667091667652,-0.032407276332378],[0.021110855042934,-0.037978019565344,-0.092100791633129]],[[-0.020017912611365,0.037021979689598,-0.1161173209548],[0.037001457065344,0.0071267429739237,0.029373571276665],[-0.00010239967377856,0.030042462050915,-0.012810023501515]],[[-0.0836216583848,0.078686505556107,0.018599547445774],[-0.0018309052102268,0.013336174190044,-0.047246441245079],[0.015491454862058,0.041892554610968,0.0018671804573387]],[[-0.010743961669505,-0.00511071132496,0.017188081517816],[0.062152434140444,0.0049037402495742,0.036246929317713],[-0.090563222765923,-0.017811328172684,-0.0063637639395893]],[[0.066182903945446,0.1258252710104,-0.061184905469418],[-0.0055460082367063,0.05315599963069,-0.073797293007374],[0.079131491482258,0.077924512326717,-0.098740383982658]],[[-0.0051165753975511,-0.0091187730431557,0.038405194878578],[0.048264123499393,0.010960564948618,0.027458690106869],[-0.042027302086353,0.020183278247714,-0.001076094689779]],[[0.016215542331338,0.038445476442575,-0.025824317708611],[-0.044966466724873,-0.087033554911613,0.0534284748137],[0.047172386199236,-0.11249341070652,0.045580673962831]],[[0.035899572074413,-0.051068600267172,0.050757899880409],[-0.030272474512458,0.073660477995872,0.017102858051658],[0.025016538798809,-0.036948263645172,0.050151102244854]],[[0.045724987983704,-0.058720543980598,0.048118140548468],[0.010587476193905,-0.07392880320549,-0.018242510035634],[-0.0054631247185171,-0.0036166941281408,0.036431901156902]],[[-0.054653991013765,0.072401590645313,0.030261499807239],[0.023177776485682,-0.069992549717426,-0.042443178594112],[-0.025172311812639,0.009670028463006,0.030031593516469]],[[0.069217376410961,0.0029665967449546,-0.011441650800407],[0.10040342062712,-0.080632857978344,-0.050224520266056],[0.052651304751635,-0.1090789064765,-0.028673343360424]],[[0.031302109360695,-0.017353920266032,-0.039536226540804],[0.001390821300447,-0.039739388972521,0.015525522641838],[0.065272219479084,-0.034614909440279,0.0073511456139386]],[[-0.041634645313025,-0.031743574887514,0.031505137681961],[-0.024246141314507,0.071416549384594,0.026912976056337],[-0.045518588274717,0.060620706528425,-0.0024798596277833]],[[-0.011721367947757,-0.0093774143606424,0.03024916164577],[0.11450351774693,0.031436238437891,0.063101910054684],[-0.035723358392715,-0.081802502274513,0.050218008458614]],[[-0.21084502339363,-0.08507988601923,0.033051867038012],[0.15109235048294,-0.073958322405815,-0.016392927616835],[0.052817888557911,0.10458998382092,-0.088701546192169]],[[0.03666115924716,0.032231602817774,0.026250097900629],[0.11611444503069,-0.052130024880171,-0.10015428811312],[-0.045658946037292,-0.047077227383852,-0.02499470859766]],[[0.0086627183482051,0.02655222825706,0.020611835643649],[-0.079974576830864,-0.037501249462366,-0.015225485898554],[-0.063546225428581,0.01014194265008,-0.047118287533522]],[[0.085846103727818,0.00031471901456825,-0.018863780423999],[0.096894763410091,-0.075262844562531,-0.045228492468596],[0.0049285213463008,-0.033164020627737,0.06853686273098]],[[0.053733646869659,0.068932063877583,-0.026464998722076],[-0.066409237682819,-0.014473496004939,0.097183994948864],[-0.10859774053097,0.08005503565073,0.0060832854360342]],[[0.044132310897112,0.019237525761127,0.024978518486023],[-0.0057352785952389,-0.090843692421913,0.0069580879062414],[-0.023989703506231,-0.0041161049157381,-0.002360659185797]],[[0.041335832327604,0.063554897904396,-0.026779348030686],[-0.0040221777744591,0.0072762905620039,-0.00095577986212447],[-0.073108367621899,-0.033910363912582,-0.03318627923727]],[[-0.031361967325211,-0.030703354626894,0.041254818439484],[-0.036407932639122,-0.032020099461079,0.047798190265894],[0.0017763607902452,0.0010761101730168,0.05091804265976]],[[-0.031579073518515,0.029553137719631,0.049107547849417],[0.054776441305876,-0.0088172666728497,0.0024642706848681],[-0.034961231052876,0.032287564128637,0.028203561902046]],[[-0.066706798970699,-0.11794406175613,-0.046863470226526],[-0.028363926336169,0.03636123239994,-0.024151159450412],[-0.098863698542118,0.0062672719359398,0.0098748626187444]],[[-0.054943658411503,-0.066825650632381,-0.015456832014024],[-0.049075461924076,-0.013471339829266,-0.020766673609614],[0.0059951776638627,0.077420145273209,0.037765443325043]],[[-0.012980850413442,-0.014439838938415,-0.0038808197714388],[0.022815521806479,-0.044647868722677,-0.011127063073218],[0.017766986042261,0.01907098479569,0.0047562401741743]],[[-0.013138264417648,-0.0019177919020876,-0.024307927116752],[0.025370750576258,0.0044230776838958,-0.01581228338182],[0.0013536521000788,0.041557196527719,-0.069363012909889]],[[-0.086174055933952,-0.024282027035952,0.057610623538494],[-0.075446277856827,-0.01024604216218,-0.017843559384346],[0.013466652482748,-0.06732801347971,0.10093325376511]],[[0.0028261707630008,0.011885520070791,0.033159710466862],[-0.0020726262591779,0.075439743697643,0.036558635532856],[-0.11935333907604,0.053008407354355,-0.052926976233721]],[[-0.014955170452595,0.064624793827534,0.0068008797243237],[0.0024479632265866,0.040126256644726,-0.0014270307729021],[0.0081346202641726,-0.025940895080566,0.01324057765305]],[[0.045117311179638,0.035000059753656,0.043316155672073],[0.02019239962101,0.02339736558497,-0.032575998455286],[0.091718234121799,-0.058374058455229,0.0059464019723237]],[[-0.020917328074574,0.031950931996107,0.0066706640645862],[-0.057992346584797,-0.0079079382121563,-0.040297355502844],[-0.054118737578392,-0.033302180469036,0.024039819836617]],[[-0.0072672585956752,-0.037117056548595,0.010150128975511],[0.035312905907631,-0.0043639312498271,-0.019219441339374],[-0.054656080901623,0.05433527007699,-0.032564371824265]],[[0.065658457577229,0.020663131028414,-0.07941485196352],[0.043047454208136,0.0043158577755094,0.042149804532528],[-0.062018748372793,-0.032232284545898,-0.012770218774676]],[[-0.021966451779008,0.030040519312024,0.073264345526695],[-0.07052893191576,0.045855335891247,0.044305842369795],[0.033299174159765,-0.026773445308208,-0.040583707392216]],[[0.024759588763118,-0.082402065396309,-0.044010829180479],[0.012472930364311,0.0034344538580626,-0.074675604701042],[-0.029339950531721,0.0072695231065154,0.012240418232977]],[[-0.011592078953981,-0.041729532182217,-0.035840835422277],[-0.024482170119882,0.099909350275993,0.053965322673321],[0.0027680643834174,0.0085670407861471,-0.02711808308959]],[[-0.10788123309612,0.10894943773746,-0.038540955632925],[0.038380011916161,-0.062967821955681,0.062136255204678],[-0.050442978739738,0.10397385060787,0.019709823653102]],[[0.060140788555145,-0.040963839739561,-0.02670937217772],[-0.0010227174498141,0.048101097345352,0.060342203825712],[-0.062570661306381,-0.087174125015736,0.043267324566841]],[[0.016685843467712,-0.011386281810701,-0.050953261554241],[-0.035340987145901,-0.015992389991879,-0.015605123713613],[-0.03319650515914,0.022615853697062,0.040583282709122]],[[0.0019498647889122,0.002033245516941,0.042340353131294],[-0.056384112685919,0.1277157664299,-0.015359358862042],[-0.049100376665592,-0.045858539640903,0.023116113618016]],[[0.017127178609371,-0.002967563457787,-0.01561425998807],[0.029232740402222,0.026822369545698,-0.035226836800575],[-0.026800015941262,0.01008712220937,-0.054720118641853]],[[-0.034773584455252,-0.016167039051652,-0.014507630839944],[0.039821181446314,0.002242561429739,0.040416583418846],[-0.013118235394359,-0.035108096897602,0.0026439507491887]],[[-0.029442623257637,0.013543010689318,-0.024873580783606],[-0.0089486986398697,0.022761946544051,0.061925493180752],[-0.043593864887953,-0.012596245855093,0.0028493029531091]],[[-0.027419436722994,0.026973681524396,-0.0093197710812092],[0.083339750766754,0.01340863481164,0.032095719128847],[-0.13010221719742,-0.013637194409966,0.027246432378888]],[[-0.067791439592838,-0.043079696595669,-0.049051620066166],[-0.01880569010973,0.020904667675495,0.026210799813271],[-0.03231293708086,0.015500769950449,-0.02946175262332]],[[0.043735690414906,0.019902482628822,-0.060144327580929],[0.06364306807518,-0.051943831145763,0.011422348208725],[-0.049272775650024,0.027342425659299,0.048240732401609]],[[-0.0054899486713111,0.019281370565295,-0.017825620248914],[-0.024538857862353,-0.0016384669579566,-0.058753207325935],[0.03423173725605,2.9575201551779e-05,-0.048494379967451]],[[0.004866742528975,0.045883931219578,-0.049176186323166],[-0.034716296941042,-0.097642920911312,0.015794314444065],[0.05122135579586,-0.078383602201939,0.060729820281267]],[[0.0035330217797309,0.047635160386562,0.050819456577301],[-0.055614367127419,0.007071697153151,-0.016849046573043],[0.073715284466743,-0.071766719222069,0.0031503692734987]],[[-0.066611424088478,-0.01298850402236,0.043425336480141],[0.013291190378368,0.069048501551151,0.032163146883249],[0.099869512021542,-0.044204887002707,0.035796578973532]],[[0.0084555838257074,-0.001187464222312,0.011215090751648],[-0.037934742867947,-0.062728531658649,0.063764192163944],[-0.07551583647728,0.01514688692987,-0.040283977985382]],[[-0.027327440679073,0.0087253209203482,0.0047513209283352],[-0.021245732903481,-0.047898601740599,-0.0097931008785963],[0.079130373895168,-0.0067437919788063,-0.010873066261411]],[[-0.031864799559116,-0.076407931745052,-0.05885262414813],[-0.022492414340377,0.023447021842003,-0.059853255748749],[0.11863862723112,0.013704978860915,-0.07226425409317]],[[-0.020857142284513,-0.014518485404551,-0.019747335463762],[-0.043866485357285,-0.066220715641975,-0.0059806713834405],[0.025344191119075,0.086540378630161,0.048271227627993]],[[-0.0034384678583592,-0.054895028471947,0.031305942684412],[0.010804399847984,0.014316012151539,-0.042935289442539],[0.018562689423561,0.034380842000246,-0.10477221757174]],[[-0.011758898384869,0.00421222159639,-0.051693987101316],[0.042062353342772,0.052146948873997,0.01407088059932],[0.0031756544485688,-0.031719893217087,0.030798010528088]],[[-0.010813661850989,0.0095739727839828,0.013629836030304],[-0.0044013583101332,-0.02653213776648,0.028004873543978],[-0.087520956993103,-0.031363759189844,0.030380997806787]],[[-0.02450936473906,-0.067889854311943,-0.012330253608525],[-0.011610805056989,0.13122268021107,-0.0039098272100091],[0.012391266413033,0.037668313831091,-0.0097115952521563]],[[-0.089370176196098,-0.032542955130339,-0.0065277409739792],[0.0015180471818894,-0.029752099886537,-0.014628562144935],[-0.034036889672279,0.06005983799696,0.029155686497688]],[[0.076102584600449,0.011120732873678,-0.0089025860652328],[-0.031106630340219,0.03847448527813,-0.06886238604784],[-0.0030669725965708,0.02961602434516,0.086122877895832]],[[-0.044565122574568,0.07773818820715,0.019370347261429],[-0.017322942614555,-0.042800843715668,-0.024404957890511],[-0.015516032464802,0.0062101967632771,0.058828126639128]],[[0.039104141294956,0.08619399368763,0.076013244688511],[-0.094439275562763,0.023106010630727,0.011653964407742],[-0.0084082316607237,0.0033735940232873,-0.056410659104586]],[[-0.091426454484463,0.059616237878799,-0.024717286229134],[-0.0034853408578783,-0.038645926862955,0.012121766805649],[-0.00127628876362,0.084293253719807,0.030808828771114]],[[-0.0185422077775,0.0011542147258297,-0.010258602909744],[0.072786681354046,-0.11779808998108,-0.060507528483868],[0.051525983959436,0.015846725553274,0.0080474568530917]],[[-0.046645376831293,0.018859894946218,0.01234192866832],[-0.013095014728606,-0.044386960566044,-0.02515640296042],[0.11892628669739,-0.044498480856419,0.05540182441473]],[[-0.0059901382774115,-0.017755381762981,-0.059302102774382],[-0.037278097122908,-0.0097190709784627,0.024955157190561],[-0.0039036220405251,-0.036325313150883,-0.010849173180759]],[[-0.054812625050545,0.019753430038691,-0.027336049824953],[0.0078030843287706,0.04852232336998,-0.10497877001762],[0.031666949391365,0.0078582670539618,-0.012356574647129]],[[-0.019480872899294,0.0012827022001147,-0.053585421293974],[-0.066281162202358,0.017680888995528,0.04373674467206],[0.0025727637112141,0.046569798141718,0.018858266994357]],[[0.0039680483750999,-0.023161688819528,-0.012053689919412],[0.07372435182333,-0.012662368826568,-0.00078752171248198],[0.024254923686385,0.022851869463921,0.028661986812949]],[[0.045594524592161,0.018634829670191,0.024561276659369],[0.040922936052084,-0.041815914213657,0.050909049808979],[-0.015301279723644,0.022974604740739,0.0041696899570525]],[[-0.066227778792381,0.02753802575171,-0.0088323373347521],[0.028759693726897,0.035463392734528,0.030461329966784],[-0.012774074450135,-0.0033820590469986,0.0081637836992741]],[[-0.007262110710144,0.065128996968269,-0.0098703457042575],[-0.025639148429036,-0.092186234891415,0.0069286990910769],[0.015664018690586,-0.11106223613024,0.026174044236541]],[[-0.017482902854681,-0.021577823907137,0.033165261149406],[0.011579303070903,0.025886544957757,-0.0091952299699187],[0.031589444726706,0.038741379976273,0.0018975363345817]],[[-0.01850152015686,-0.0068201175890863,0.036258164793253],[-0.049187552183867,-0.025325389578938,-0.057147160172462],[-0.031008800491691,-0.041999761015177,0.040882904082537]],[[-0.061372812837362,-0.081910081207752,-0.034823451191187],[0.0012088418006897,-0.019163431599736,0.0068075200542808],[0.062415227293968,-0.11463429033756,0.057126991450787]],[[-0.060259729623795,0.017316935583949,-0.067596040666103],[0.085085541009903,0.022532496601343,-0.038573667407036],[-0.048845864832401,0.0514668636024,-0.028659801930189]],[[-0.0076484084129333,0.0096747670322657,-0.028083795681596],[-0.076243698596954,0.026021892204881,-0.014026252552867],[-0.045975029468536,0.022172834724188,-0.011266378685832]],[[-0.027801856398582,-0.0017953696660697,0.021109990775585],[0.0099784163758159,0.002636295510456,0.037132430821657],[0.016604723408818,0.046302497386932,0.014646537601948]],[[0.0030590333044529,0.043095208704472,-0.0053320755250752],[0.050256330519915,-0.044050358235836,-0.1088894829154],[0.013841491192579,-0.077852658927441,0.038893476128578]],[[-0.067554816603661,-0.015295795165002,-0.023574458435178],[-0.07096654176712,0.015906695276499,0.071794144809246],[0.060378428548574,0.043622959405184,-0.039912611246109]],[[-0.009548032656312,-0.037351135164499,0.034664295613766],[-0.015406548976898,-0.0057367091067135,-0.021721467375755],[-0.051577411592007,-0.0062028826214373,-0.039376236498356]],[[0.035631380975246,-0.031260952353477,0.014870353974402],[-0.0016771337250248,0.045687183737755,-0.051201798021793],[-0.036493390798569,-0.054993066936731,0.011423503980041]],[[0.047365918755531,-0.081040605902672,-0.020699540153146],[-0.057864282280207,-0.031553201377392,-0.028080662712455],[-0.0023414550814778,0.036363545805216,-0.028521807864308]],[[-0.070066340267658,0.016246844083071,0.080989547073841],[-0.03178682923317,-0.043809324502945,0.046643823385239],[-0.061817497014999,0.018201494589448,0.0025971760042012]],[[-0.023937156423926,0.0094107026234269,-0.018717968836427],[-0.0018643712392077,0.051012739539146,-0.031386595219374],[-0.019083937630057,-0.06861823797226,0.097557418048382]],[[0.030215615406632,-0.06804583221674,0.0032163979485631],[0.10230495780706,-0.10349365323782,-0.019222332164645],[-0.080213837325573,0.030351040884852,-0.024073163047433]],[[-0.061427257955074,0.018650533631444,0.038090761750937],[0.0065754824317992,0.046978142112494,0.069518908858299],[0.031634368002415,0.025222698226571,-0.0049376087263227]],[[0.075565204024315,0.012936469167471,0.034805662930012],[-0.037119645625353,0.072480194270611,0.043436866253614],[0.085682168602943,0.047723196446896,-0.063798978924751]],[[0.010245637968183,0.07534222304821,-0.0025183497928083],[0.044476199895144,-0.0099352039396763,0.0026363218203187],[0.0071674659848213,-0.059758726507425,0.0082253077998757]],[[-0.030856179073453,0.084799274802208,0.025718754157424],[0.023899609223008,0.038157433271408,-0.022854680195451],[-0.019288904964924,-0.082159347832203,-0.072536632418633]],[[-0.011572625488043,-0.03872349485755,0.032945990562439],[-0.077442869544029,-0.041060511022806,0.0097222169861197],[0.0026272549293935,-0.02794436737895,0.047627024352551]],[[-0.01475540548563,-0.013325987383723,-0.051344428211451],[-0.04852208122611,0.017573118209839,0.030348373576999],[0.05661927908659,-0.025041749700904,0.021090583875775]],[[-0.029069872573018,0.005169206764549,-0.0081829531118274],[-0.015085084363818,-0.04999890550971,-0.0012546259677038],[-0.038398519158363,-0.0066363206133246,0.016330575570464]],[[0.034199878573418,0.021795798093081,-0.0204569529742],[-0.059448882937431,-0.021068308502436,-0.054299242794514],[0.03593485802412,-0.042082145810127,-0.0077500427141786]],[[-0.001672730431892,0.015657817944884,-0.072586059570312],[-0.10541825741529,0.04078434407711,-0.0010457448661327],[0.046904843300581,-0.010797940194607,-0.013727655634284]],[[0.017142811790109,0.004108237568289,0.013731319457293],[0.02181014791131,-0.089411146938801,0.034591499716043],[0.045243378728628,-0.059724811464548,-0.029378402978182]],[[-0.088361836969852,-0.025536525994539,-0.025916157290339],[0.038558304309845,-0.12460567802191,0.03003459982574],[0.067582607269287,0.070017725229263,-0.040611527860165]],[[-0.011958694085479,-0.08277802914381,0.016239942982793],[-0.026493178680539,0.029889160767198,0.01988779194653],[0.030601792037487,0.023022633045912,0.01871420070529]],[[-0.00829450879246,0.028769930824637,0.0093070538714528],[0.042809184640646,-0.085893355309963,0.028978496789932],[-0.0370211340487,-0.02067044377327,-0.041537649929523]],[[0.001292965374887,-0.036565601825714,0.0021692914888263],[-0.079116560518742,0.061316788196564,-0.0099081257358193],[0.01208392996341,-0.031894478946924,0.029464956372976]],[[-0.045252896845341,0.043853677809238,-0.017302334308624],[-0.050788719207048,-0.03420041128993,0.025852618739009],[-0.011271093972027,-0.078786090016365,0.021367544308305]],[[-0.052012950181961,0.017402982339263,-0.015057541429996],[-0.066098421812057,-0.03790332749486,0.0095400158315897],[-0.025538805872202,0.0033396563958377,0.029329121112823]],[[0.034716591238976,0.0536143258214,-0.014298405498266],[0.039483364671469,-0.020414005964994,0.028287248685956],[0.0093563627451658,-0.019964449107647,-0.02164245955646]],[[0.09353893995285,-0.086577564477921,0.0040242141112685],[-0.0039925058372319,-0.013053219765425,0.036751423031092],[0.067793399095535,-0.04943124204874,-0.0059194159694016]],[[-0.043508529663086,-0.039333514869213,-0.016649000346661],[0.019944287836552,0.032876532524824,0.087999403476715],[0.030604287981987,-0.086453713476658,-0.060757469385862]],[[0.04859658703208,0.0019014780409634,-0.060777489095926],[-0.049311846494675,-0.063973240554333,0.056960184127092],[-0.013729605823755,0.0011619809083641,0.025953015312552]],[[-0.018432611599565,-0.025469198822975,-0.0087248152121902],[0.016527259722352,-0.059229984879494,0.02190868370235],[-0.041729308664799,0.055650122463703,0.043851427733898]],[[-0.076938256621361,0.042175900191069,0.015231993049383],[-0.017104782164097,-0.003817624412477,0.017667431384325],[-0.064205855131149,0.076195374131203,-0.029156731441617]],[[-0.071206539869308,0.0033826760482043,0.023497298359871],[0.037681728601456,-0.014182318001986,-0.070854529738426],[0.037417437881231,0.0098059894517064,-0.0019170857267454]],[[0.010349387302995,0.06423332542181,0.082588747143745],[0.028594115749002,-0.01526540145278,-0.060858145356178],[-0.070905111730099,0.0035293153487146,0.0062774550169706]],[[-0.053387805819511,0.018989983946085,-0.022392766550183],[-0.0013461186317727,0.080707289278507,-0.091031089425087],[-0.034915365278721,0.04791683703661,-0.014475488103926]],[[-0.033872306346893,0.034206882119179,-0.02277690730989],[-0.072814129292965,-0.098754584789276,-0.032112155109644],[0.1119097545743,-0.0082616163417697,0.060257010161877]],[[0.003294030437246,0.0026722848415375,0.0095465984195471],[0.021122999489307,0.0035160800907761,0.004647824447602],[0.074882984161377,-0.034134805202484,-0.0021294075995684]],[[0.05839766934514,0.0097407177090645,-0.058606404811144],[0.077783964574337,0.04980082064867,0.062821581959724],[-0.064321249723434,0.011302131228149,-0.0077893091365695]],[[-0.029987026005983,0.013890512287617,-0.018557351082563],[-0.02918285317719,0.043335106223822,0.027750998735428],[-0.05878433957696,0.017540553584695,0.0072688646614552]],[[0.048282612115145,-0.047350764274597,0.056636292487383],[0.020410584285855,-0.060923203825951,-0.0026871031150222],[-0.022590525448322,-0.04144936054945,-0.011363733559847]],[[0.042897503823042,0.0069237682037055,0.028945881873369],[-0.088695973157883,0.063306123018265,0.0073161222971976],[0.079397618770599,0.026488216593862,-0.029501304030418]]],[[[-0.0042007719166577,0.098751455545425,-0.051750782877207],[-0.066344022750854,-0.012258687056601,0.017041189596057],[-0.022502947598696,0.019244100898504,-0.090599156916142]],[[0.0072463969700038,-0.064774811267853,0.13750745356083],[0.054741319268942,0.060710337013006,0.0075608175247908],[-0.078256994485855,-0.04036957025528,0.040591958910227]],[[0.025098852813244,0.015799567103386,0.040959633886814],[0.02791341766715,0.043220516294241,-0.0082232309505343],[-0.065707921981812,0.11222479492426,0.0085683884099126]],[[0.099059328436852,-0.075793772935867,-0.07510207593441],[0.041430033743382,-0.028186662122607,-0.015125614590943],[0.046259306371212,0.012638218700886,0.0065559041686356]],[[-0.065537385642529,0.013607541099191,-0.024963919073343],[-0.012043131515384,-0.037590149790049,0.106878682971],[0.01555735245347,0.0036891240160912,0.013358233496547]],[[0.054810591042042,-0.012057855725288,-0.0058791129849851],[0.053679205477238,-0.040975973010063,0.022288214415312],[-0.050146441906691,0.027803471311927,-0.0055955382995307]],[[-0.071615234017372,-0.030839620158076,-0.037538565695286],[0.050231397151947,-0.048486422747374,0.03577271476388],[0.05912659689784,-0.043421939015388,0.001911781495437]],[[-0.064616993069649,0.061211265623569,0.041479714214802],[-0.0085820639505982,-0.029436366632581,-0.063825167715549],[0.053080894052982,-0.026330109685659,-0.011055069044232]],[[0.013097588904202,0.073360808193684,0.016125775873661],[0.0063745817169547,-0.046911615878344,-0.00037216188502498],[0.0041295262053609,-0.0049867648631334,0.056040447205305]],[[0.051183711737394,-0.0002314161247341,0.066620245575905],[0.17686052620411,-0.017387129366398,0.1704383790493],[0.15081153810024,-0.077088467776775,0.13948130607605]],[[0.037889592349529,0.0024236161261797,-0.010923714376986],[-0.062941111624241,-0.043417245149612,-0.10527011752129],[0.033573288470507,-0.046910382807255,0.046996921300888]],[[-0.0086651034653187,0.027855908498168,-0.0055068894289434],[0.079914957284927,-0.0084552075713873,0.087233319878578],[0.033631831407547,0.029807440936565,0.084280796349049]],[[-0.056724682450294,-0.039287600666285,0.029904782772064],[-0.020315187051892,0.094494692981243,-0.14116494357586],[-0.027246296405792,0.032907661050558,0.0073527987115085]],[[0.066766910254955,0.021003529429436,-0.01667339913547],[-0.030778804793954,0.05326883494854,-0.042386241257191],[0.022559577599168,-0.035685058683157,0.011144582182169]],[[0.034041814506054,0.047507390379906,0.14748555421829],[-0.01172108668834,-0.030916873365641,0.046945258975029],[-0.025962453335524,0.13442194461823,0.056239746510983]],[[0.050154585391283,0.02566902898252,0.038736447691917],[-0.032600227743387,-0.007786727976054,0.0045920261181891],[0.00024362094700336,0.096881441771984,-0.13110460340977]],[[0.0048063490539789,0.01146771851927,-0.0079398490488529],[0.12605951726437,-0.066763788461685,0.082432307302952],[-0.035698000341654,-0.026057340204716,0.15421803295612]],[[0.0061489162035286,0.0078016156330705,-0.03307244554162],[-0.0032052309252322,-0.017437996342778,-0.06690888851881],[-0.016797710210085,0.0034838174469769,-0.027816534042358]],[[0.0018749969312921,-0.054794564843178,-0.089568309485912],[-0.068074740469456,0.029881032183766,-0.014112386852503],[0.038896717131138,0.016820009797812,-0.04121969640255]],[[0.014774953015149,0.03161845356226,-0.040422663092613],[-0.038645762950182,0.031050842255354,0.018932962790132],[-0.0037661707028747,-0.023244878277183,0.081152677536011]],[[0.12866999208927,0.063753247261047,0.00018831895431504],[-0.024777388200164,-0.058002848178148,0.045741267502308],[-0.080701164901257,0.031095465645194,-0.0090459948405623]],[[0.089807763695717,0.026684556156397,0.085531130433083],[-0.01189623773098,0.12661597132683,0.047026984393597],[0.054742451757193,0.028572065755725,0.048036877065897]],[[0.068301290273666,0.041928507387638,0.04857711493969],[-0.00061996339354664,-0.014056405052543,0.010564314201474],[-0.034558359533548,0.081735454499722,0.005062963347882]],[[-0.0052399928681552,0.050692766904831,0.028824025765061],[0.017974056303501,0.0070285177789629,0.041824512183666],[0.21766749024391,0.10476396977901,0.067384965717793]],[[-0.045758552849293,-0.026424350216985,0.030497385188937],[0.070909254252911,0.065703347325325,0.038590777665377],[0.035007633268833,0.037742495536804,0.11930214613676]],[[0.0077947331592441,-0.056134756654501,-0.027358939871192],[0.058654483407736,-0.11977753043175,0.050936881452799],[-0.13013482093811,-0.18987876176834,0.05426999181509]],[[-0.050323724746704,-0.084435656666756,0.027571249753237],[-0.01340399403125,-0.094296388328075,-0.036504160612822],[0.019572705030441,0.071051187813282,0.090849958360195]],[[0.04194863140583,0.0077670640312135,0.08356873691082],[0.028840824961662,-0.0042347311973572,-0.030032090842724],[0.010300093330443,-0.054534301161766,0.0070092319510877]],[[-0.033510189503431,-0.13190619647503,0.027448421344161],[0.0080228680744767,0.050452142953873,0.024848433211446],[0.058229696005583,0.078600071370602,0.029747264459729]],[[0.04529831558466,0.044432885944843,0.046985913068056],[0.031004261225462,-0.010970695875585,-0.0069187199696898],[0.098054848611355,0.031143460422754,-0.053687360137701]],[[-0.072844505310059,-0.035536214709282,0.029550252482295],[0.026048440486193,0.062455520033836,0.0055584870278835],[0.009326159954071,0.051805339753628,0.085502803325653]],[[-0.060752734541893,0.064784929156303,-0.005006670486182],[-0.13501092791557,-0.0021976586431265,-0.011595756746829],[-0.056834165006876,-0.029445702210069,-0.06138339266181]],[[-0.01283311471343,-0.056095268577337,0.0021740007214248],[0.0099846040830016,0.012470280751586,0.034754175692797],[0.029209710657597,0.038710344582796,0.05485375598073]],[[-0.041096832603216,-0.06466469168663,-0.0019752997905016],[0.040707726031542,0.02083795517683,0.074832938611507],[-0.053946759551764,0.078323714435101,0.023270778357983]],[[-0.0039980472065508,-0.028554279357195,-0.0068108569830656],[0.071567632257938,-0.02272248454392,-0.0093540977686644],[0.061172042042017,0.0074741858989,-0.015833100304008]],[[-0.028381725773215,-0.016832385212183,-0.0020022538956255],[-0.018532147631049,0.012884480878711,0.032033365219831],[-0.045141063630581,-0.049327455461025,0.015179618261755]],[[-0.097783677279949,0.067629635334015,-0.026562379673123],[-0.11242663115263,-0.0096784057095647,-0.082085639238358],[-0.13169428706169,0.12310896813869,-0.044062580913305]],[[-0.022437751293182,0.016705717891455,-0.01449718978256],[0.020893093198538,-0.04494796320796,-0.039560183882713],[0.084626786410809,0.12779334187508,-0.0040602888911963]],[[0.033961459994316,-0.0049564433284104,-0.076622568070889],[-0.048198692500591,-0.0037444951012731,0.017459440976381],[-0.045569878071547,0.018062300980091,-0.096792407333851]],[[0.006200997158885,0.090914316475391,-0.0059454441070557],[0.035502124577761,0.00083802081644535,-0.045692972838879],[-0.00032330278190784,-0.078898385167122,0.06149747222662]],[[0.016600659117103,0.034190785139799,0.01076630782336],[0.011805595830083,-0.075238607823849,-0.011768731288612],[-0.01805280521512,-0.10450504720211,0.093894571065903]],[[0.0058532245457172,-0.028536222875118,0.034856930375099],[0.027462976053357,0.014514082111418,0.020859535783529],[-0.0060054152272642,-0.0062826983630657,0.045196913182735]],[[0.063604697585106,-0.017665976658463,-0.033984895795584],[0.032960049808025,-0.068774908781052,0.066899053752422],[0.027354290708899,-0.045908913016319,0.0042363200336695]],[[0.080348253250122,-0.040206588804722,-0.0051900134421885],[0.035889178514481,-0.019708562642336,0.044411446899176],[0.090515322983265,-0.040198065340519,-0.086975991725922]],[[0.071258001029491,-0.022042641416192,-0.025840071961284],[-0.072166532278061,-0.020609263330698,0.016314640641212],[0.034712877124548,0.021361239254475,0.01234055031091]],[[0.043884675949812,0.071170821785927,0.0022267072927207],[0.080815933644772,0.043907288461924,-0.09024603664875],[0.040203463286161,-0.0081457868218422,-0.028918750584126]],[[-0.11356524378061,-0.01192370429635,0.0026567904278636],[-0.027308678254485,-0.03678909316659,-0.0021032630465925],[-0.0025549207348377,-0.031146973371506,0.029887463897467]],[[0.0032785949297249,-0.021650245413184,0.079211123287678],[-0.00541922589764,0.09902711212635,-0.010657478123903],[-0.018227990716696,0.022333165630698,0.0048931566998363]],[[0.014941984787583,0.05809748545289,-4.0276037907461e-05],[0.12436221539974,0.04715371876955,0.085465937852859],[0.04120571538806,-0.064082585275173,0.081883177161217]],[[0.044608246535063,0.039996139705181,-0.0060896212235093],[0.019807117059827,-0.026785871013999,-0.049513593316078],[-0.034943748265505,0.006851838901639,0.059348821640015]],[[0.023905133828521,0.014210597611964,0.04649967327714],[-0.02148194424808,-0.064746335148811,0.0068179173395038],[-0.064247317612171,-0.0036325277760625,0.0084764556959271]],[[0.043976034969091,-0.015423609875143,-0.055551134049892],[0.071366772055626,-0.006038561463356,0.081685416400433],[-0.024109851568937,0.030966000631452,0.085818514227867]],[[0.11334794014692,0.0059966114349663,0.010717099532485],[0.056938011199236,-0.046670645475388,0.015014724805951],[0.070918641984463,-0.027235252782702,-0.0035132789053023]],[[-0.040507774800062,-0.023689912632108,-0.057756848633289],[-0.029489016160369,-0.026551144197583,0.069478586316109],[-0.053268652409315,0.0036386076826602,-0.053945507854223]],[[0.016935389488935,-0.097972214221954,0.069327734410763],[0.056811239570379,-0.010275361128151,-0.034773170948029],[0.025277120992541,0.087547227740288,-0.072682924568653]],[[0.030103834345937,0.029520895332098,-0.019326236099005],[-0.079041749238968,0.06008106097579,-0.034343119710684],[0.016798984259367,0.017224416136742,0.0096171414479613]],[[-0.022917702794075,0.015951437875628,-0.048680819571018],[-0.027625778689981,-0.1527978181839,0.0085758091881871],[-0.04519522562623,-0.037385940551758,0.031939499080181]],[[0.098867408931255,-0.043749570846558,0.0917744114995],[-0.013585194014013,-0.069932073354721,0.038918223232031],[-0.0059776874259114,-0.061850097030401,-0.0462343133986]],[[-0.036257807165384,-0.041644807904959,-0.066490083932877],[0.032971058040857,0.0047635394148529,0.024796245619655],[-0.014190062880516,0.0078187622129917,0.026847410947084]],[[0.039937730878592,0.0065610948950052,-0.016819648444653],[-0.053493604063988,-0.05733485892415,0.0067604039795697],[0.0042041335254908,0.02567988820374,-0.027024554088712]],[[-0.10293104499578,0.033874273300171,0.0027110087685287],[0.077049724757671,-0.0077696610242128,0.024674298241735],[0.099735386669636,0.0046651880256832,0.0023314915597439]],[[-0.0108642578125,-0.093827575445175,-0.018012203276157],[0.025536259636283,-0.042011022567749,0.05000539124012],[0.048520900309086,0.086872927844524,-0.038134913891554]],[[0.019916793331504,-0.065641351044178,-0.034524820744991],[0.12520425021648,-0.045383788645267,0.046787612140179],[-0.079819202423096,-0.045089427381754,0.045930210500956]],[[0.074901379644871,0.10552310943604,0.055343855172396],[-0.033101581037045,-0.097206689417362,-0.0050670127384365],[-0.019326603040099,0.061114728450775,-0.026373567059636]],[[-0.085029795765877,-0.050668820738792,0.13050866127014],[0.19613417983055,-0.046355456113815,-0.029714437201619],[-0.01825575158,0.009913582354784,0.11039517819881]],[[-0.026811616495252,0.0080044949427247,-0.040181014686823],[0.0045505119487643,0.054558526724577,-0.03290593251586],[0.12725672125816,-0.034656789153814,-0.080245718359947]],[[0.024689942598343,0.022871473804116,0.057341977953911],[0.086746074259281,0.036736216396093,0.12174557894468],[0.032724246382713,0.075284905731678,0.069974891841412]],[[0.020489789545536,-0.063813574612141,0.0016168366419151],[0.0019070091657341,-0.029224207624793,-0.042061567306519],[0.058293264359236,-0.030369022861123,0.044012114405632]],[[0.0040647713467479,-0.061935737729073,0.031536411494017],[0.036275338381529,-0.061762139201164,0.0022199973464012],[-0.041812364012003,-0.0062141469679773,-0.02739486657083]],[[0.083817087113857,0.024634763598442,-3.0297091143439e-05],[0.0046723964624107,0.0010807231301442,-0.016528686508536],[0.087431401014328,-0.02940141223371,-0.026805886998773]],[[0.0071679903194308,-0.11538201570511,0.00078428705455735],[-0.091760143637657,0.012143968604505,0.039646357297897],[-0.017543442547321,-0.020007152110338,-0.011524122208357]],[[-0.025642285123467,0.024023409932852,0.086396850645542],[0.085632093250751,-0.020590787753463,-0.039261750876904],[0.084664165973663,0.0026177195832133,0.07828263938427]],[[0.012170470319688,-0.051354631781578,-0.039806913584471],[0.029495738446712,0.080988377332687,0.030699595808983],[-0.038672804832458,0.10581137239933,0.015798162668943]],[[-0.050186429172754,-0.068431027233601,-0.0022071632556617],[0.054616693407297,-0.072333492338657,0.053093433380127],[0.031461775302887,-0.056779984384775,0.059857927262783]],[[-0.076882481575012,-0.048888012766838,-0.11213967204094],[-0.053370229899883,0.012762912549078,0.037991922348738],[0.043040875345469,-0.01219667494297,-0.035330768674612]],[[0.013133126311004,0.046919781714678,-0.074680410325527],[-0.019857697188854,-0.067112505435944,-0.003423742717132],[0.16040904819965,0.0093601336702704,0.065398618578911]],[[0.064338549971581,0.045875422656536,-0.0017896101344377],[0.042101189494133,-0.022063951939344,0.055703587830067],[0.052099671214819,-0.10562705993652,0.027311593294144]],[[-0.0087801469489932,0.046461194753647,-0.0017969278851524],[-0.026689156889915,-0.06703445315361,0.037708710879087],[0.069210402667522,-0.030195444822311,-0.0025723422877491]],[[-0.003359179245308,0.01270987931639,0.10440032184124],[-0.008347611874342,-0.038518495857716,-0.022915590554476],[-0.040739357471466,-0.027444979175925,0.0040078950114548]],[[-0.085067570209503,0.073854103684425,-0.054314568638802],[0.027487279847264,0.0096524711698294,0.011903397738934],[0.039732448756695,-0.088722601532936,-0.0076955440454185]],[[0.010653100907803,0.054616048932076,-0.015549435280263],[-0.0027695207390934,-0.0027435885276645,0.040872234851122],[0.0080717913806438,0.018177619203925,0.021149991080165]],[[-0.014112683013082,-0.012726854532957,-0.0067549427039921],[-0.081810116767883,-0.042474463582039,0.07243837416172],[-0.028218837454915,0.019301379099488,0.046373333781958]],[[-0.031049529090524,-0.034934438765049,-0.011938078328967],[-0.037707593291998,-0.036411192268133,0.056517690420151],[-0.0082673765718937,-0.039214324206114,0.043861355632544]],[[-0.08440700173378,-0.005656820256263,0.03233378008008],[0.031820174306631,0.034666422754526,-0.08383996039629],[0.1511657088995,0.076916165649891,0.10769862681627]],[[0.090909607708454,-0.023207169026136,0.10722485929728],[0.071087673306465,0.034286376088858,-0.012539024464786],[0.024431947618723,-0.080172531306744,-0.015340886078775]],[[0.0044427113607526,0.0037244914565235,0.013256976380944],[-0.085098586976528,0.033271424472332,-0.097641132771969],[0.11704199761152,-0.011395527981222,0.037364598363638]],[[-0.087748609483242,-0.03379400074482,0.025302996858954],[0.017749832943082,0.03681692481041,0.018051594495773],[0.04777279868722,-0.048755884170532,-0.0073480131104589]],[[-0.016818979755044,0.030449211597443,0.038979839533567],[0.01638912782073,0.073166333138943,0.029288221150637],[-0.0022028444800526,-0.0049243723042309,-0.05828720703721]],[[-0.024768797680736,0.021283432841301,0.020397357642651],[0.021708138287067,0.040541592985392,-0.068933382630348],[-0.011337926611304,-0.0043057901784778,0.02778341434896]],[[0.11965814232826,-0.02283826097846,0.098179794847965],[-0.027931399643421,-0.043252535164356,-0.043585244566202],[0.023242343217134,0.012741341255605,-0.0053432118147612]],[[-0.050528567284346,-0.017552433535457,-0.0066732079721987],[-0.023364501073956,-0.098870366811752,0.042942903935909],[-0.073292978107929,0.081196017563343,0.026182921603322]],[[0.068927437067032,-0.021858192980289,-0.075409784913063],[-0.048273116350174,0.018311677500606,0.029652805998921],[-0.041881192475557,-0.076193362474442,0.035436004400253]],[[-0.02423826046288,-0.013103208504617,0.0517623052001],[-0.087383396923542,0.040453612804413,0.024297799915075],[0.049349274486303,0.020233104005456,-0.011487229727209]],[[0.030009746551514,-0.044275801628828,-0.036940447986126],[-0.10994067788124,0.033607576042414,0.042326923459768],[-0.078801423311234,-0.041541993618011,0.093233771622181]],[[0.0074984151870012,0.07226599752903,0.0042552729137242],[-0.014894620515406,0.039073776453733,-0.0085411407053471],[-0.0039982730522752,0.054352980107069,-0.14412231743336]],[[-0.016817511990666,-0.022615732625127,0.027807708829641],[0.0038451279979199,-0.059194188565016,-0.020955756306648],[0.1087232530117,-0.025134611874819,0.088768966495991]],[[-0.084291495382786,-0.035424239933491,-0.037803132086992],[0.081099435687065,0.075705528259277,-0.050280176103115],[0.0041155591607094,-0.036302406340837,0.0025829100050032]],[[0.030772132799029,0.075208149850368,-0.012797117233276],[0.014032401144505,0.075784176588058,0.046606600284576],[0.01786039210856,-0.022410338744521,0.084388166666031]],[[-0.010168175213039,0.11931007355452,0.0032676204573363],[-0.0082089761272073,0.035772513598204,0.0143509125337],[-0.043209087103605,0.055284608155489,-0.034632228314877]],[[0.0049395076930523,-0.054958246648312,0.016663085669279],[0.013795794919133,-0.048660598695278,-0.019453043118119],[0.032706957310438,-0.086833856999874,0.13563330471516]],[[-0.062027141451836,-0.0063990433700383,-0.003527786815539],[-0.094180524349213,-0.070026323199272,-0.01208012830466],[-0.11202709376812,0.048541154712439,-0.034267194569111]],[[0.0022896283771843,-0.061470229178667,0.055681560188532],[-0.046651154756546,0.033997744321823,0.091645814478397],[-0.061516493558884,-0.086353778839111,-0.033583171665668]],[[-0.010017152875662,-0.025731286033988,-0.034546550363302],[-0.028060788288713,-0.093971006572247,0.0066477595828474],[-0.031505521386862,0.037162035703659,0.1091173812747]],[[-0.026858845725656,-0.06822295486927,-0.027152853086591],[0.055607996881008,-0.063264362514019,0.059224687516689],[-0.012563616968691,-0.044788613915443,-0.015790602192283]],[[0.14125780761242,-0.040959928184748,0.048964854329824],[-0.0016184493433684,-0.018866954371333,0.067708216607571],[0.023758048191667,0.015607859939337,0.016353894025087]],[[0.0087977619841695,0.0060158534906805,0.02335280738771],[-0.097021691501141,5.7192344684154e-05,0.041718445718288],[-0.018000641837716,0.02568731829524,-0.018675278872252]],[[-0.099059164524078,-0.018476214259863,0.042822141200304],[0.0358951613307,-0.021741485223174,0.02597907371819],[-0.062078531831503,0.053075607866049,-0.10038335621357]],[[-0.12286040186882,-0.01421183347702,0.046964406967163],[-0.032338488847017,-0.073537647724152,0.067657351493835],[-0.073298633098602,0.0099159898236394,-0.036546558141708]],[[-0.0058424533344805,0.033961858600378,-0.036775480955839],[0.0055990321561694,0.11799604445696,0.034183297306299],[-0.079265303909779,-0.050123162567616,-0.059824552386999]],[[-0.032202862203121,0.071860201656818,-0.0056310100480914],[0.018863832578063,-0.011397909373045,-0.10625328123569],[0.026392128318548,-0.0015376097289845,-0.04485235363245]],[[-0.054143354296684,0.017471624538302,-0.052047044038773],[0.092504508793354,0.022672906517982,-0.055889341980219],[-0.0041404641233385,0.041553143411875,-0.012581628747284]],[[0.046519234776497,0.068878188729286,-0.047218538820744],[-0.0072679491713643,-0.077844463288784,0.0019808853976429],[0.018156008794904,0.0005617206916213,0.023350214585662]],[[0.015831971541047,-0.0010341942543164,0.024356408044696],[0.0020384991075844,0.017375558614731,-0.021499574184418],[0.074996881186962,-0.10475446283817,-0.015214898623526]],[[-0.0034869604278356,-0.016327757388353,0.070893011987209],[-0.032270260155201,0.044216394424438,0.013377362862229],[0.023632150143385,-0.046723466366529,0.038913935422897]],[[-0.027287520468235,0.010597578249872,-0.0040497775189579],[-0.019731333479285,0.023233560845256,0.024627488106489],[-0.030831590294838,0.10517361015081,-0.022193377837539]],[[0.066824279725552,-0.033736191689968,-0.00085374357877299],[-0.021169282495975,-0.042949132621288,-0.034064389765263],[-0.029291532933712,0.023590827360749,0.064440503716469]],[[0.02752080745995,0.0091725271195173,-0.01190516538918],[0.011483118869364,0.057616997510195,0.023140212520957],[-0.00017870843294077,0.049864865839481,0.032997358590364]],[[0.13764229416847,0.076620794832706,-0.030550977215171],[-0.025988342240453,0.052571803331375,0.083246193826199],[0.038582991808653,0.012760985642672,-0.015359507873654]],[[-0.016250342130661,0.0010275036329404,-0.030568841844797],[-0.0039863553829491,-0.0011298552853987,0.017735658213496],[-0.0018518106080592,-0.06708750128746,0.049495700746775]],[[0.020366292446852,-0.15300439298153,0.032119154930115],[0.11062397807837,-0.017546044662595,-0.03344314917922],[-0.0051982845179737,-0.056437395513058,-0.010968873277307]],[[0.066021651029587,-0.0057690166868269,0.031129514798522],[0.076505213975906,0.048311069607735,0.11958959698677],[-0.021959528326988,-0.037858333438635,0.039466887712479]],[[-0.007552289403975,0.061174761503935,0.10138726979494],[0.044679753482342,0.042582843452692,-0.018855137750506],[0.070015430450439,0.02538719214499,-0.0069175749085844]],[[0.035928834229708,-0.0028779173735529,-0.017040058970451],[-0.057620577514172,0.020324803888798,0.071491457521915],[-0.046740118414164,-0.077942356467247,0.10696962475777]],[[-0.023977663367987,0.024381266906857,0.0098014418035746],[-0.098699003458023,-0.06367389112711,-0.12825599312782],[-0.12772341072559,0.011907055974007,-0.048185937106609]],[[-0.043881766498089,-0.012788363732398,-0.05250546336174],[0.0076327277347445,0.010085821151733,0.031549159437418],[-0.020249396562576,0.013572631403804,0.059100579470396]],[[0.028976624831557,0.085428699851036,0.042178709059954],[-0.016450004652143,0.012365995906293,-0.062523670494556],[-0.031027097254992,-0.10342475771904,-0.074922010302544]],[[0.087890394032001,-0.01520340424031,-0.012953844852746],[-0.043080624192953,0.055574793368578,0.080652639269829],[0.067279919981956,0.054234128445387,0.027347054332495]],[[-0.013494207523763,0.034913256764412,-0.070463962852955],[-0.063269302248955,-0.0082045206800103,-0.094717673957348],[-0.067316815257072,0.03360503911972,-0.032790191471577]]],[[[0.010028187185526,0.079746589064598,-0.054126854985952],[-0.032270140945911,-0.091583840548992,0.070979103446007],[0.011273561045527,-0.036386720836163,-0.026900073513389]],[[0.024276116862893,-0.067928731441498,0.058309312909842],[-0.05691359937191,-0.022571410983801,-0.021286267787218],[0.011271815747023,0.043964806944132,-0.028506750240922]],[[-0.069249153137207,0.050052005797625,0.036001484841108],[0.021861962974072,0.060378223657608,-0.11045566946268],[-0.010397034697235,0.018230928108096,0.0019397502765059]],[[0.0025020530447364,-0.012079730629921,0.080918878316879],[0.097848951816559,0.095400966703892,0.044178172945976],[-0.0032266152556986,0.027277586981654,0.056866899132729]],[[-0.013321650214493,-0.032001290470362,-0.014463397674263],[0.13482956588268,-0.077358581125736,0.088445104658604],[0.095214910805225,-0.053678404539824,-0.02826052904129]],[[-0.019728019833565,0.00063284760108218,0.095411457121372],[0.057653732597828,-0.0061968513764441,-0.047231625765562],[-0.0051311529241502,0.070533320307732,-0.02612067386508]],[[-0.066354066133499,-0.022600837051868,-0.0019409158267081],[0.01387139968574,-0.096935413777828,0.0018364392453805],[0.040190495550632,-0.05295380577445,0.0077691348269582]],[[-0.026145614683628,0.017024982720613,-0.048735521733761],[0.070951133966446,0.061591491103172,0.0041967863216996],[-0.067171782255173,0.044825721532106,0.044340580701828]],[[-0.035882275551558,0.022933792322874,-0.15448074042797],[0.016902804374695,-0.034873243421316,-0.0061755897477269],[-0.07428764551878,0.077073775231838,-0.049417588859797]],[[0.12620145082474,-0.083148673176765,0.10927765071392],[0.2549761235714,0.077426001429558,-0.00016928803233895],[-0.060084234923124,0.052769169211388,0.11845502257347]],[[-0.032440766692162,-0.0043996176682413,0.091931536793709],[-0.0012583198258653,-0.030577542260289,0.05972620472312],[0.025090338662267,-0.012434250675142,0.024407606571913]],[[0.032575305551291,0.051698323339224,-0.041363541036844],[0.010460303165019,-0.068897858262062,0.0073231812566519],[0.029710976406932,0.065104439854622,0.06507982313633]],[[0.11785251647234,0.045456692576408,-0.025530131533742],[0.045264258980751,-0.055263038724661,0.15311811864376],[0.0031202374957502,0.030778413638473,-0.03450296446681]],[[0.021013576537371,0.0065918825566769,0.021859232336283],[0.01642582565546,0.02330120652914,-0.015969986096025],[-0.11765857040882,0.03696109354496,0.10418062657118]],[[-0.039931774139404,0.15107588469982,0.12734423577785],[0.22971206903458,-0.021682977676392,0.18893563747406],[0.19758419692516,0.094479352235794,0.0071635874919593]],[[0.0099256560206413,0.023819031193852,0.034048099070787],[0.0053870202973485,-0.068090535700321,-0.015101249329746],[0.07963302731514,0.01174518559128,-0.089776441454887]],[[0.0063166599720716,-0.0046253819018602,0.052109003067017],[-0.022412544116378,0.03161558508873,0.070470854640007],[-0.074920743703842,0.13325060904026,0.10279111564159]],[[0.1139727756381,0.036175325512886,-0.098283089697361],[0.006187045481056,-0.032589554786682,0.045420844107866],[-0.00771010434255,-0.075696744024754,-0.034387763589621]],[[0.073767349123955,0.0011071944609284,0.026526488363743],[-0.14318765699863,-0.016097389161587,0.055041894316673],[0.043605145066977,0.011923772282898,0.079803176224232]],[[-0.010004528798163,0.047425664961338,0.067801408469677],[0.086869187653065,0.0063217054121196,-0.046466428786516],[0.00097896275110543,0.031105786561966,0.0015125130303204]],[[-0.042820811271667,-0.060946382582188,0.057049360126257],[0.024812256917357,-0.009251487441361,-0.053627297282219],[-0.016027616336942,0.038634121417999,0.035946656018496]],[[0.090412020683289,0.058097336441278,0.063810750842094],[0.059750694781542,-0.022320380434394,0.0663782954216],[0.0469058342278,0.024911887943745,0.12616428732872]],[[0.015091736800969,-0.064079329371452,-0.0006133031565696],[0.0052396920509636,-0.11256646364927,0.046097792685032],[-0.052622884511948,0.088942959904671,-0.1000589877367]],[[0.0088086407631636,-0.0041071455925703,-0.0017290764953941],[0.097404792904854,0.0018344817217439,0.075781792402267],[0.052747055888176,-0.00513058854267,0.06716188788414]],[[0.10308374464512,0.075775183737278,-0.097304917871952],[-0.02250119112432,0.045348584651947,0.015873411670327],[-0.001491402159445,-0.04561684653163,0.053669933229685]],[[-0.022086828947067,0.046081718057394,0.016617130488157],[-0.092801563441753,0.0085469093173742,0.021793782711029],[-0.052671413868666,-0.011183543130755,0.092122264206409]],[[-0.061700914055109,-0.034426145255566,-0.034569673240185],[-0.037763264030218,0.02769985422492,0.030111402273178],[0.054964009672403,0.089586056768894,0.011582555249333]],[[0.096551895141602,0.058513529598713,0.013373637571931],[-0.066763110458851,-0.060449101030827,0.060904372483492],[-0.07560658454895,-0.044462282210588,0.023597991093993]],[[0.012269051745534,0.058733217418194,-0.0013316181721166],[0.041988652199507,0.036109894514084,0.0091466438025236],[0.076432429254055,-0.1166894286871,-0.0025605105329305]],[[-0.048049066215754,-0.059368528425694,0.061369106173515],[-0.0013424190692604,0.096312239766121,-0.022302804514766],[-0.029899729415774,0.080193102359772,-0.02930766902864]],[[-0.022105813026428,-0.032591331750154,0.046760126948357],[-0.066942445933819,0.079436928033829,0.041490726172924],[-0.028718341141939,-0.018007837235928,0.059079334139824]],[[0.008060771971941,-0.067956134676933,0.03674241527915],[0.0067248377017677,-0.012751615606248,-0.045368786901236],[-0.027135385200381,0.095279678702354,0.10062870383263]],[[-0.0090261213481426,-0.029070667922497,0.081165432929993],[0.063789777457714,0.0085642673075199,0.0304971113801],[-0.063113406300545,-0.018873376771808,-0.046771109104156]],[[-0.058518040925264,-0.039020147174597,0.096366554498672],[0.033556692302227,-0.0097707817330956,0.083488665521145],[-0.010055578313768,0.052550055086613,0.11363982409239]],[[-0.040233418345451,-0.057663656771183,0.026760317385197],[0.0061401906423271,-0.058132022619247,0.084497503936291],[0.060692451894283,0.069356508553028,0.16429421305656]],[[0.12780478596687,0.022424023598433,0.068617336452007],[0.010547826066613,-0.001945374533534,-0.030098225921392],[0.050638344138861,-0.025862440466881,0.034789822995663]],[[0.038233146071434,0.024418979883194,-0.014383281581104],[-0.076143182814121,-0.0059202001430094,-0.074954196810722],[-0.030929220840335,-0.050208292901516,-0.033966094255447]],[[0.058374494314194,-0.037960696965456,0.069762699306011],[-0.04736764729023,0.038275718688965,-0.012342777103186],[0.039048723876476,0.032062519341707,0.082596451044083]],[[0.067165270447731,0.064719140529633,-0.0053360951133072],[0.038496762514114,0.019724963232875,0.09719717502594],[0.00092539796605706,-0.021523423492908,-0.0078165959566832]],[[0.0044764219783247,-0.044989813119173,0.086546763777733],[0.053533524274826,-0.02121439576149,0.031186170876026],[0.072016268968582,0.0021841272246093,0.02126949839294]],[[0.012008417397738,0.080732509493828,0.056599598377943],[0.042462598532438,-0.06309512257576,0.059919957071543],[-0.092955127358437,0.089507453143597,0.034627553075552]],[[0.0023879285436124,-0.078162513673306,0.019192442297935],[0.0380834415555,-0.052500709891319,0.052830744534731],[-0.1145266443491,0.022134641185403,-0.075329817831516]],[[0.0052486285567284,-0.055363081395626,-0.0053516034968197],[0.01458853110671,-0.047120418399572,-0.013838577084243],[-0.089051820337772,-0.0069248876534402,-0.0023266344796866]],[[-0.042929254472256,-0.0051284735091031,0.014565019868314],[0.042109437286854,0.014732329174876,0.05585853010416],[0.030132237821817,-0.033140759915113,0.083415046334267]],[[0.018851207569242,-0.13909895718098,0.014027847908437],[0.1028283983469,0.041945993900299,0.035234596580267],[-0.042447410523891,0.063375532627106,0.027114292606711]],[[0.020656883716583,0.0091121885925531,0.05650170892477],[0.082181632518768,0.11758071929216,-0.057906437665224],[0.01034804712981,0.05377583578229,0.039255362004042]],[[0.0048277825117111,-0.067122757434845,0.076676771044731],[0.0079692043364048,-0.031318292021751,-0.085751332342625],[0.052349470555782,0.054878521710634,0.040651001036167]],[[0.066840380430222,0.078411146998405,0.013734159059823],[0.0053847623057663,-0.022880110889673,0.054726678878069],[0.018401840701699,0.019836638122797,0.020154042169452]],[[0.03388698771596,-0.047094296664,0.012584410607815],[-0.027832927182317,0.086662858724594,0.0080541288480163],[0.0079955495893955,0.0081479158252478,-0.053547997027636]],[[0.040750864893198,-0.051680609583855,-0.010130426846445],[0.040813941508532,0.0054752682335675,-0.0061644562520087],[-0.047871649265289,-0.028817214071751,-0.028760047629476]],[[0.094071745872498,0.03246271237731,-0.066808573901653],[-0.059684660285711,0.045258149504662,0.06562565267086],[0.0039209644310176,-0.12043784558773,0.019198372960091]],[[-0.080284170806408,-0.0043513383716345,0.078188449144363],[0.076730288565159,-0.012246358208358,0.057714283466339],[-0.024517087265849,0.055972151458263,0.093934327363968]],[[0.070285826921463,0.079443916678429,-0.071656785905361],[-0.02498577721417,-0.0085751358419657,0.028755024075508],[0.063975617289543,-0.071141541004181,-0.017778707668185]],[[-0.0509241707623,-0.0094384914264083,0.048537734895945],[-0.0042559672147036,-0.070192903280258,0.029410788789392],[0.0058160987682641,0.026719614863396,0.027266971766949]],[[0.041783321648836,-0.042356200516224,0.072360426187515],[-0.053826998919249,0.045520100742579,-0.012632864527404],[0.060479514300823,-0.026243440806866,0.052937217056751]],[[0.027045665308833,0.043079469352961,-0.020803729072213],[0.065127305686474,-0.088916257023811,-0.019870428368449],[0.0016419052844867,0.0045514698140323,0.025749869644642]],[[0.0037445847410709,-0.05330191925168,-0.18786789476871],[-0.036588929593563,0.064126998186111,0.063460186123848],[-0.1240651383996,-0.02213136292994,-0.024304395541549]],[[-0.023307699710131,-0.030539143830538,0.03549487143755],[-0.019955959171057,-0.0017378374468535,0.020869169384241],[0.043826788663864,0.04091164842248,0.027858186513186]],[[0.094542890787125,-0.01783381216228,-0.018439035862684],[-0.013100530952215,0.058405127376318,0.038380302488804],[0.0045219655148685,0.063806243240833,0.064295291900635]],[[0.019512813538313,-0.015318332239985,-0.059055671095848],[-0.013207408599555,0.0065249311737716,-0.059543814510107],[0.018511053174734,-0.085637919604778,-0.078320644795895]],[[0.11130797863007,0.013203546404839,0.09992902725935],[0.06182548776269,0.083052180707455,0.013236680068076],[0.032308574765921,0.023921802639961,0.06203968077898]],[[-0.029247246682644,-0.014746701344848,0.067373670637608],[0.042000744491816,-0.063146844506264,0.02466089092195],[-0.025665275752544,-0.10698651522398,0.027459086850286]],[[0.039869662374258,-0.062387116253376,0.0042670373804867],[-0.040536478161812,-0.0040553542785347,-0.088005259633064],[-0.087103635072708,0.023151598870754,-0.086547784507275]],[[0.048011563718319,-0.035461071878672,0.087292164564133],[0.020830035209656,-0.04944908618927,-0.072191961109638],[0.12877242267132,0.025227382779121,-0.040344223380089]],[[-0.013233010657132,0.031197318807244,0.0095628798007965],[0.048492096364498,-0.097378209233284,0.023045899346471],[-0.03257629275322,0.0081033874303102,-0.053634937852621]],[[0.039961505681276,-0.028994861990213,0.096450790762901],[-0.0020931472536176,0.050544146448374,0.017291890457273],[0.066278845071793,-0.01717896014452,0.024428710341454]],[[0.0091401245445013,0.017524221912026,-0.034309551119804],[0.064782835543156,0.044610321521759,1.536897252663e-05],[0.018758825957775,0.077188029885292,0.020652275532484]],[[-0.040759198367596,-0.0097655029967427,-0.054239954799414],[0.049030713737011,-0.012641225010157,-0.03035644069314],[-0.027941716834903,0.10461975634098,0.0033764559775591]],[[0.010024079121649,0.059679102152586,0.055531822144985],[0.056000348180532,0.053870800882578,0.0076584685593843],[0.058642670512199,0.095608361065388,0.054049130529165]],[[0.051924109458923,0.06643832474947,-0.00069101143162698],[-0.0017891202587634,0.0030988019425422,0.10381953418255],[0.031084606423974,0.057070460170507,0.039640106260777]],[[-0.030131120234728,0.050452798604965,-0.022243296727538],[0.074996404349804,0.0066765933297575,0.044225230813026],[0.055369473993778,0.022885030135512,0.032194886356592]],[[0.013960465788841,0.10024008899927,-0.0063091423362494],[-0.05741498991847,0.056128207594156,0.067773096263409],[0.076850593090057,0.0098074981942773,-0.028819274157286]],[[0.0083912126719952,0.01376714091748,0.009843691252172],[0.055100243538618,0.031573932617903,-0.0037957360036671],[-0.0093302149325609,0.029567588120699,-0.047710694372654]],[[-0.049466654658318,0.011220449581742,0.040645372122526],[0.01462585106492,0.041874878108501,0.016295066103339],[-0.035790581256151,0.054906230419874,0.13244783878326]],[[-0.10258171707392,-0.0056363213807344,0.0079536642879248],[-0.036364164203405,-0.05813404917717,-0.012377473525703],[-0.031739294528961,-0.018328635022044,0.049564760178328]],[[0.013447589240968,0.084970593452454,-0.018103091046214],[0.040018998086452,-0.0048514986410737,-0.021840523928404],[-0.080619998276234,-0.084184587001801,0.0037931257393211]],[[0.04885733500123,-0.059024509042501,0.015642069280148],[0.016150815412402,0.0024969363585114,-0.060328029096127],[0.014673427678645,-0.041098948568106,-0.02707789465785]],[[0.10172326117754,0.00088710931595415,0.12207280099392],[0.035096820443869,0.059923503547907,0.11920431256294],[-0.013111852109432,-0.0098160821944475,0.061601553112268]],[[-0.071491606533527,-0.00028745629242621,0.0077316225506365],[-0.01191604975611,-0.05994900688529,-0.041903145611286],[0.088658303022385,0.021486489102244,0.032091233879328]],[[-0.09166544675827,-0.025973316282034,0.043755225837231],[0.014432807452977,-0.0039503141306341,-0.0092943347990513],[0.035500720143318,-0.038167506456375,0.015632849186659]],[[0.022568618878722,-0.00021804530115332,0.011089754290879],[-0.00081837084144354,0.074569500982761,0.012085795402527],[0.11675125360489,0.088195145130157,0.020688874647021]],[[-0.043638959527016,-0.085704997181892,-0.018713930621743],[0.011478531174362,-0.049190264195204,0.092105738818645],[0.070085018873215,-0.036006018519402,-0.030547792091966]],[[-0.014690770767629,0.050726540386677,-0.077889733016491],[-0.040936291217804,-0.07369839400053,0.029866760596633],[0.061591871082783,0.005982069298625,0.0062806257046759]],[[0.077886119484901,-0.039429519325495,0.050089687108994],[0.083584018051624,0.01702881231904,-0.0048670065589249],[-0.060828190296888,0.03365383297205,0.040347829461098]],[[0.018948536366224,-0.056924406439066,0.012258712202311],[0.044845961034298,0.028885213658214,-0.096013516187668],[0.015953257679939,-0.010847604833543,-0.048140943050385]],[[0.015614015050232,0.055015679448843,-0.0051706018857658],[-0.001056375564076,0.081354662775993,-0.087922833859921],[0.063961580395699,-0.054772358387709,0.044481601566076]],[[0.11200827360153,-0.017957011237741,0.011435762047768],[0.053891219198704,0.14883872866631,-0.0460459664464],[0.097908176481724,0.030360599979758,-0.0038479783106595]],[[0.078893795609474,-0.07137680798769,0.12236421555281],[0.085645340383053,0.087777063250542,-0.02055680565536],[0.0067798122763634,0.050880968570709,0.025253960862756]],[[0.057573452591896,0.091713294386864,-0.080841325223446],[0.0085467407479882,-0.082170747220516,0.11120448261499],[0.062866427004337,0.054559987038374,0.0058367322199047]],[[0.0016353155951947,0.1078807413578,-0.033381994813681],[0.017880043014884,-0.0079685263335705,0.056214120239019],[0.017857741564512,0.039474569261074,-0.040642116218805]],[[-0.013861147686839,0.047159276902676,-0.00044458548654802],[0.030152030289173,-0.074272096157074,0.12015602737665],[-0.017708625644445,-0.021397214382887,0.069699786603451]],[[0.010815171524882,0.042522206902504,-0.00087931699818],[0.079688042402267,-0.0045720492489636,-0.0068233422935009],[0.0012041268637404,0.010454608127475,-0.073880448937416]],[[0.031244680285454,-0.031417958438396,-0.06895574182272],[0.034874964505434,-0.0049566137604415,-0.028221694752574],[-0.034662712365389,-0.040453989058733,0.095352970063686]],[[0.12111361324787,-0.097863361239433,-0.010807142592967],[0.010322417132556,-0.0062947943806648,0.078761428594589],[0.042790103703737,0.037835117429495,0.069334760308266]],[[0.019563423469663,0.11304653435946,0.031747799366713],[-0.044383216649294,-0.025252433493733,0.11282778531313],[0.01622610911727,0.095877833664417,-0.090892046689987]],[[0.030631626024842,-0.023754408583045,-0.13457077741623],[-0.0042366250418127,0.021784655749798,0.12254805862904],[0.03276751190424,-0.045869711786509,0.017722116783261]],[[-0.015158585272729,0.054435316473246,0.040117263793945],[0.086002014577389,0.10830225050449,0.031037839129567],[-0.026233391836286,-0.023374170064926,-0.014502270147204]],[[0.050474114716053,-0.055550336837769,-0.041886731982231],[0.0091747464612126,0.10364577919245,0.084745638072491],[0.02538282610476,0.012989467941225,-0.021584739908576]],[[-0.0029447127599269,-0.031011287122965,-0.054346367716789],[-9.2990710982122e-05,-0.057341124862432,0.052774723619223],[0.035921644419432,-0.092019878327847,0.036725021898746]],[[0.049346141517162,-0.061476349830627,-0.077949620783329],[0.0037840830627829,0.024641823023558,-0.014125074259937],[-0.080944553017616,-0.028960183262825,-0.015158154070377]],[[0.050243675708771,0.024877581745386,-0.046760383993387],[0.058485429733992,0.05104910954833,-0.0080117555335164],[-0.031385783106089,-0.026298088952899,-0.018196880817413]],[[0.0067677213810384,0.11011116951704,0.15020644664764],[0.059622257947922,0.038662657141685,0.0092782406136394],[0.065972790122032,0.052235014736652,-0.015628473833203]],[[-0.039069417864084,-0.073211662471294,-0.030402524396777],[0.051530413329601,-0.012218764983118,0.003705769777298],[0.029299676418304,0.059523519128561,0.10190618783236]],[[0.012930542230606,-0.030450008809566,-0.0085933115333319],[0.016872780397534,-0.051632571965456,0.0555619597435],[0.003738020779565,-0.11645625531673,-0.018164608627558]],[[-0.12041103094816,0.050816860049963,-0.064851015806198],[0.082275666296482,-0.0053487988188863,0.059653259813786],[0.04394817724824,0.0068027670495212,-0.030873233452439]],[[-0.0048899287357926,0.0083601530641317,-0.085939787328243],[-0.119694262743,0.047239221632481,0.012090926989913],[0.026359589770436,0.04359919950366,0.093537360429764]],[[0.043215245008469,-0.016152992844582,-0.093857392668724],[0.024859674274921,0.050295770168304,0.079988911747932],[0.1248984336853,-0.020526761189103,0.0020863707177341]],[[-0.0028853348921984,-0.050564374774694,0.0058164307847619],[-0.094110354781151,-0.12578974664211,-0.059484604746103],[0.011478776112199,0.088769234716892,-0.039260141551495]],[[0.0078671807423234,-0.079201817512512,0.077341601252556],[-0.050405107438564,0.0090663693845272,-0.22226956486702],[0.045951589941978,0.041794124990702,-0.060134042054415]],[[0.095481805503368,0.11632756888866,-0.00016337992565241],[-0.095320798456669,0.00037492028786801,0.06560592353344],[0.050350192934275,-0.036265179514885,-0.084783315658569]],[[0.070501334965229,-0.0026646775659174,-0.11987338960171],[0.012848310172558,-0.0037528758402914,-0.023451041430235],[-0.023829495534301,0.12199251353741,0.0079421633854508]],[[0.00059291702928022,0.01442135963589,-0.08547942340374],[0.014615680091083,-0.03766555711627,-0.06104663386941],[0.048606265336275,0.0025308034382761,-0.070258885622025]],[[-0.054646030068398,0.0093037905171514,-0.035199832171202],[-0.019291156902909,-0.01181349158287,0.0046746386215091],[-0.070347286760807,0.0011783668305725,-0.0085618942975998]],[[-0.039968609809875,0.066427312791348,0.014179907739162],[-0.062393620610237,0.0108891017735,0.0028643326368183],[0.036695498973131,-0.049801126122475,-0.10305099189281]],[[-0.040358994156122,-0.063841722905636,-0.048811841756105],[-0.042430602014065,-0.0063349781557918,0.11588940769434],[0.010289746336639,-0.031245552003384,0.039725106209517]],[[-0.0086124669760466,0.012537924572825,0.082967810332775],[-0.0098788691684604,0.044047631323338,0.15976329147816],[0.047149103134871,-0.051199715584517,0.051015261560678]],[[-0.065026052296162,0.035735931247473,-0.0075380392372608],[-0.016222367063165,0.10305450856686,0.06780032813549],[0.067429453134537,0.02449344471097,0.057463221251965]],[[0.0093310410156846,-0.029016107320786,-0.048854969441891],[0.12364746630192,0.043152824044228,0.0085972445085645],[0.023942202329636,0.038833755999804,-0.0025578723289073]],[[-0.0024633195716888,0.031952288001776,-0.053944025188684],[-0.065926186740398,-0.034025263041258,0.0027024149894714],[-0.035642616450787,-0.035808861255646,-0.034905731678009]],[[-0.067142739892006,-0.040514126420021,-0.07967933267355],[-0.025953583419323,-0.028758471831679,-0.14657063782215],[-0.014989480376244,-0.092918291687965,-0.0010393514530733]],[[-0.015964401885867,0.090359307825565,0.056318372488022],[-0.1309050321579,0.053874041885138,-0.026731576770544],[-0.049349971115589,-0.036687787622213,-0.0073824990540743]],[[0.012051602825522,0.0010270869825035,-0.086269117891788],[-0.00060544582083821,-0.034386482089758,0.052666768431664],[0.13594552874565,0.10724127292633,-0.0040867906063795]],[[-0.0081463567912579,-0.038855291903019,-0.028487205505371],[0.0071671423502266,-0.03278049454093,-0.038962066173553],[-0.052711848169565,-0.091506093740463,0.024977069348097]],[[0.036329686641693,-0.0052050855010748,-0.030309548601508],[-0.028431491926312,-0.029704999178648,-0.094459906220436],[0.0068761552684009,-0.025264590978622,-0.08767444640398]],[[0.10193013399839,-0.01530824881047,-0.0047390488907695],[0.0077605317346752,-0.0072878524661064,0.042681336402893],[0.05179613083601,-0.080557361245155,0.001167205395177]],[[-0.07182852178812,-0.0021598539315164,0.025488004088402],[-0.00255689304322,0.080852769315243,-0.02325345762074],[0.022100578993559,0.022340139374137,0.022521395236254]],[[0.013941525481641,0.02228326536715,0.041068706661463],[0.0016820140881464,0.064217045903206,0.037810016423464],[0.022477563470602,0.081991821527481,0.032095223665237]],[[0.031399752944708,-0.018902091309428,0.067846931517124],[-0.0071128965355456,-0.054776128381491,-0.10159848630428],[-0.00067265267716721,0.075164474546909,-0.0017139716073871]]],[[[-0.049830585718155,-0.0055772508494556,-0.051913823932409],[-0.016718789935112,-0.015969255939126,0.0046027461066842],[-0.060296777635813,0.0052702873945236,0.016473550349474]],[[0.018365312367678,0.038600977510214,0.015441638417542],[0.03369938954711,-0.024058436974883,-0.035967480391264],[0.0082101318985224,0.020592968910933,0.024851910769939]],[[-0.013603909872472,0.054415695369244,0.014313201420009],[0.052671883255243,-0.022162256762385,-0.032213699072599],[-0.065263576805592,0.038555279374123,0.034885216504335]],[[-0.038508962839842,0.026817945763469,-0.049836501479149],[-0.040487729012966,0.050170838832855,0.026964066550136],[-0.0023518127854913,0.043678782880306,0.039025455713272]],[[0.027198772877455,-0.051602024585009,-0.013019520789385],[0.05188375711441,-0.018113067373633,-0.022121101617813],[0.041184153407812,0.027652896940708,-0.012358383275568]],[[0.01813075132668,-0.0054531353525817,-0.022202229127288],[0.035114161670208,-0.042354118078947,-0.090358085930347],[0.040610834956169,0.031396169215441,0.019123738631606]],[[0.0015438804402947,-0.055803932249546,0.0024786298163235],[-0.048764269798994,-0.0068486761301756,0.0033032759092748],[0.09829193353653,0.053215641528368,0.040563888847828]],[[0.052489496767521,-0.035635981708765,0.014738763682544],[-0.003669070545584,0.012877888046205,-0.0031086853705347],[-0.058686625212431,0.0038928193971515,0.076725386083126]],[[0.018116312101483,0.037467729300261,0.10375865548849],[0.019056370481849,-0.053369745612144,0.0041397749446332],[0.0533716827631,0.0041094343177974,0.077248461544514]],[[-0.027031337842345,-0.074914991855621,0.078097335994244],[0.0015571339754388,0.030606865882874,0.0047364751808345],[0.019359095022082,0.0079666096717119,0.088518522679806]],[[-0.0045903003774583,0.068454667925835,-0.010137987323105],[0.029037361964583,-0.028274398297071,-0.031365115195513],[-0.0047770347446203,-0.066780395805836,0.035093165934086]],[[-0.044281497597694,-0.0070621487684548,0.09999331086874],[0.022987142205238,0.0092126335948706,-0.0091416472569108],[-0.045803550630808,-0.028037201613188,0.0077666263096035]],[[-0.064438164234161,-0.017938535660505,-0.0045593804679811],[-0.057525917887688,0.0094913868233562,0.016639521345496],[0.050639137625694,0.10903024673462,-0.078304827213287]],[[-0.017913479357958,-0.0086128003895283,0.04570721834898],[-0.076540850102901,0.052804477512836,-0.070507243275642],[0.089016199111938,0.057088810950518,0.031078504398465]],[[-0.053565215319395,0.014821206219494,-0.0038968201261014],[0.077422671020031,0.016253458335996,-0.018139097839594],[-0.070920117199421,-0.053016573190689,0.0077610816806555]],[[-0.029448328539729,0.012411433272064,0.0029116496443748],[-0.043638303875923,-0.039487145841122,0.038713403046131],[-0.040245577692986,0.065855406224728,0.080753326416016]],[[0.0051155164837837,0.0037698994856328,-0.0052139135077596],[0.0093495929613709,-0.015389882959425,-0.054436609148979],[0.029139950871468,-0.02792595885694,0.021695915609598]],[[-0.0088119301944971,0.045130375772715,-0.030933683738112],[-0.008094934746623,0.030149839818478,-0.04849436506629],[-0.039664480835199,0.091160580515862,0.052163686603308]],[[0.10480499267578,0.011428757570684,0.0063604135066271],[0.10583482682705,-0.042980246245861,-0.035235546529293],[0.036669809371233,0.034090492874384,0.0067320824600756]],[[-0.025565719231963,0.060653679072857,0.013299155049026],[0.019044037908316,0.067628219723701,-0.036825384944677],[-0.0084872310981154,0.023573404178023,-0.039214804768562]],[[0.022063832730055,-0.039195097982883,-0.040243066847324],[0.043137606233358,0.040874741971493,0.0144546283409],[-0.0026722885668278,-0.040469892323017,-0.051256883889437]],[[0.0056095607578754,-0.033556893467903,0.0062910369597375],[0.029965925961733,-0.030646182596684,-0.064506255090237],[0.013509445823729,0.038399633020163,0.0019476655870676]],[[-0.039016518741846,0.043434362858534,0.025564348325133],[0.0041785473003983,-0.025712767615914,-0.01375628542155],[0.091578885912895,-0.0091194296255708,-0.06265364587307]],[[-0.022576753050089,-0.011569887399673,0.077481269836426],[-0.002828870434314,0.009393279440701,0.017406633123755],[0.014023497700691,-0.035743668675423,0.018883755430579]],[[0.044726736843586,-0.0076413205824792,-0.019914299249649],[-0.017115710303187,0.018059024587274,-0.015708750113845],[0.062487978488207,-0.014008999802172,0.027289947494864]],[[-0.024315776303411,0.02157536521554,0.0014811570290476],[-0.023387715220451,0.054509580135345,-0.030101429671049],[0.033480707556009,-0.025352701544762,-0.055069249123335]],[[-0.029232500120997,-0.07249242067337,-0.019543355330825],[0.058553367853165,-0.035585924983025,-0.036239244043827],[0.054835882037878,-0.05390901491046,0.059502512216568]],[[-0.046528108417988,-0.025194512680173,0.02181944809854],[0.030331322923303,-0.044683434069157,0.025225374847651],[-0.089815765619278,0.015627268701792,-0.0010452301939949]],[[0.036771845072508,0.0058793998323381,-0.0012558569433168],[-0.1082571670413,-0.020271962508559,0.031444393098354],[-0.048840366303921,-0.021054858341813,-0.040038708597422]],[[0.017643904313445,0.029038608074188,0.0092472676187754],[0.046334572136402,-0.091761998832226,-0.024747801944613],[-0.023609971627593,-0.024899415671825,0.072601869702339]],[[0.040052857249975,0.039340183138847,0.0067103481851518],[-0.012421830557287,-0.042676243931055,-0.018498763442039],[-0.026690447703004,0.035965409129858,-0.040345918387175]],[[-0.017358055338264,0.0051490217447281,-0.010649798437953],[0.045939415693283,0.039559043943882,0.075713001191616],[0.032243650406599,-0.072273425757885,-0.042538337409496]],[[0.021938171237707,-0.056806165724993,0.0087479148060083],[0.0032941084355116,-0.021259509027004,-0.039598140865564],[-0.023813443258405,0.01370973046869,0.021173184737563]],[[0.075668707489967,0.022626928985119,-0.020646685734391],[0.029727518558502,0.020546387881041,0.013782560825348],[0.029420517385006,-0.0009341100230813,0.003452023724094]],[[0.0067106643691659,-0.032161589711905,0.034900732338428],[-0.014991208910942,-0.050572339445353,-0.016593081876636],[0.01861497014761,0.02264166623354,0.055881820619106]],[[-0.020832953974605,-0.063484832644463,0.0016338336281478],[0.032230161130428,0.0018538191216066,0.046183705329895],[-0.05058316513896,-0.023742102086544,0.017220983281732]],[[-0.054600592702627,-0.025425955653191,0.027087902650237],[-0.079778261482716,0.0088592451065779,-0.036575980484486],[0.029052389785647,-0.047408971935511,-0.041879262775183]],[[0.0091273738071322,0.037771347910166,-0.032574750483036],[0.026037819683552,-0.054845213890076,-0.085330739617348],[-0.014282790012658,0.0075632804073393,0.037521801888943]],[[-0.0099138738587499,0.061323348432779,0.03511930629611],[-0.034690022468567,-0.02015445753932,0.060450725257397],[0.0038535678759217,0.015015472657979,0.0099193509668112]],[[-0.020430147647858,-0.0073005435988307,-0.065486125648022],[-0.014840927906334,0.029866904020309,-0.012506152503192],[0.037086520344019,-0.029439466074109,-0.013177633285522]],[[0.044348895549774,-0.084764592349529,0.020352901890874],[0.056844647973776,0.071580938994884,0.011767384596169],[0.043863918632269,-0.055904597043991,0.066675491631031]],[[0.011753164231777,0.02583085373044,-0.04888391494751],[-0.017793921753764,0.017904518172145,0.051694341003895],[-0.05163948610425,0.0069384546950459,-0.016832515597343]],[[0.0052350126206875,0.097977489233017,-0.077703349292278],[0.019363829866052,0.021174371242523,0.042653251439333],[-0.020602822303772,0.05563110858202,-0.013449138961732]],[[0.091265432536602,-0.018243322148919,0.030317516997457],[0.066343486309052,-0.056913871318102,-0.01042312849313],[-0.046068776398897,-0.020837819203734,0.030999107286334]],[[-0.052092846482992,0.043250810354948,-0.049486614763737],[-0.02163945324719,-0.065421484410763,0.011302691884339],[-0.1040715649724,0.0093808444216847,-0.019428785890341]],[[0.023208443075418,-0.0007368655060418,0.0086928531527519],[-0.0095355724915862,0.020805446431041,0.030629592016339],[0.028779974207282,0.065740935504436,0.040948051959276]],[[-0.0059563433751464,-0.01057655736804,0.017009494826198],[-0.029484618455172,0.040876779705286,-0.0036031864583492],[-0.002740734256804,-0.001363029005006,0.028188707306981]],[[0.097012758255005,0.034348089247942,0.036806240677834],[0.026208670809865,0.013744234107435,-0.041589993983507],[-0.038646686822176,0.0071536297909915,-0.0031814293470234]],[[-0.0011866160202771,-0.020167602226138,-0.068874254822731],[-0.061457727104425,-0.0049634133465588,-0.054922297596931],[0.04255086556077,-0.00021495959663298,0.01727220416069]],[[0.019313352182508,-0.040238194167614,0.0096388822421432],[0.0047192466445267,0.0083222016692162,0.022181387990713],[0.033692196011543,-0.017509128898382,-0.072616539895535]],[[-0.013449793681502,-0.055557411164045,0.043723959475756],[-0.021776165813208,0.0091457795351744,-0.044302556663752],[0.033882014453411,0.007728866301477,0.059707742184401]],[[-0.053103882819414,-0.047594644129276,0.001301946118474],[0.084374271333218,-0.045381132513285,-0.036114685237408],[-0.023151315748692,-0.0034903967753053,-0.075223170220852]],[[0.09313940256834,0.0095151998102665,-0.018792128190398],[-0.012388426810503,0.0098978830501437,0.039092734456062],[0.035090517252684,-0.013964978046715,0.04875810444355]],[[-0.010329811833799,-0.046681471168995,-0.010569715872407],[0.021829647943377,0.090572133660316,0.014866484329104],[-0.031892016530037,-0.032920807600021,0.048888314515352]],[[0.013236196711659,0.087731085717678,0.045341912657022],[0.052349474281073,0.016086349263787,0.018724601715803],[-0.023206040263176,0.058962401002645,-0.0018401067936793]],[[0.079277358949184,-0.03643960878253,0.0012086186325178],[-0.046202052384615,-0.015467590652406,0.009700276888907],[0.023363681510091,-0.035262703895569,-0.014665259048343]],[[0.0063620740547776,-0.0073087066411972,0.050414592027664],[-0.04165692999959,0.043168634176254,-0.019871501252055],[0.066876232624054,-0.038955133408308,-0.010021396912634]],[[0.045858331024647,0.06697578728199,-0.040842209011316],[0.053056359291077,-0.075388498604298,-0.084852062165737],[-0.024814764037728,-0.026824647560716,0.072740145027637]],[[-0.0098019931465387,0.029679635539651,0.037350680679083],[0.0047172228805721,-0.047630559653044,0.061075273901224],[0.025172492489219,0.059572726488113,0.00058757048100233]],[[-0.015132676810026,-0.032781776040792,-0.013598024845123],[0.042705241590738,-0.010102554224432,0.037648193538189],[-0.0031791883520782,0.052825793623924,-0.0020081053953618]],[[0.083744570612907,-0.097613930702209,-0.027710247784853],[-0.0087049612775445,-0.028342192992568,-0.044457301497459],[0.017204781994224,-0.049024805426598,0.086492471396923]],[[0.07229820638895,-0.039045386016369,0.0051636397838593],[0.062121480703354,-0.038514148443937,0.020750423893332],[0.0082248440012336,-0.0089543098583817,-0.021827846765518]],[[-0.044924572110176,-0.048431668430567,0.041366651654243],[0.034294005483389,-0.016607761383057,-0.063693016767502],[-0.12618464231491,0.019391046836972,-0.031247584149241]],[[0.083386972546577,0.0021789497695863,0.020597731694579],[0.007962953299284,0.05769282579422,-0.027451913803816],[-0.035090796649456,0.043354529887438,-0.033049963414669]],[[0.012737201526761,-0.034807991236448,0.032519854605198],[-0.013531382195652,-0.018809402361512,0.018455367535353],[-0.00114125397522,-0.011405841447413,-0.078861191868782]],[[-0.034341786056757,0.046183198690414,0.038287751376629],[0.016603847965598,0.017560431733727,-0.012265818193555],[-0.0071907453238964,-0.039524786174297,0.0065829530358315]],[[-0.015684241428971,-0.02688773907721,0.02297137863934],[0.057629685848951,0.027105694636703,-0.048014309257269],[-0.020655836910009,0.06591372191906,-0.016454255208373]],[[-0.0012358574895188,0.043669883161783,0.0058165891095996],[0.0025869249366224,0.10122922062874,0.025466810911894],[-0.023769838735461,-0.062911421060562,-0.033565375953913]],[[-0.014111100696027,0.010350224561989,0.047929015010595],[-0.071650177240372,0.0039438442327082,-0.0084670782089233],[0.032980524003506,0.02131094224751,-0.0028107189573348]],[[0.064183063805103,-0.021142959594727,-0.046147674322128],[-0.0517199896276,-0.026678824797273,0.089016780257225],[0.068761944770813,0.0073047652840614,-0.050144322216511]],[[-0.055331781506538,-0.01157202757895,0.018322996795177],[0.019611204043031,0.015723060816526,-0.030461523681879],[-0.0049221166409552,0.038478258997202,-0.0046402737498283]],[[0.0795713737607,0.034415286034346,0.0026919145602733],[0.0039182850159705,-0.045796304941177,-0.044530112296343],[-0.029608206823468,-0.014647481031716,0.015685079619288]],[[0.065146960318089,-0.026540292426944,0.018811332061887],[-0.0048801158554852,-0.027255883440375,-0.026206729933619],[-0.013034191913903,-0.08599878847599,-0.040463116019964]],[[0.049525044858456,0.022587414830923,-0.025900941342115],[-0.05815551429987,0.028883341699839,-0.062024313956499],[-0.060727868229151,0.013496593572199,0.037619117647409]],[[0.014890766702592,0.082139864563942,-0.028351062908769],[0.011009403504431,0.0025906483642757,0.026356503367424],[0.061722561717033,0.066258527338505,-0.056113611906767]],[[0.025676980614662,0.018107431009412,0.016173109412193],[-0.016231762245297,0.10420198738575,0.036077290773392],[0.028049314394593,0.023874998092651,-0.032665569335222]],[[-0.023387836292386,-0.044362604618073,-0.053823333233595],[-0.013261070474982,0.012848764657974,-0.044008817523718],[-0.0030573655385524,-0.095891557633877,-0.011585076339543]],[[0.059698559343815,-0.02105338871479,0.10026862472296],[0.0093830246478319,0.041007276624441,-0.028773749247193],[-0.019177157431841,-0.028389347717166,0.020339578390121]],[[0.018974041566253,0.011045928113163,0.0092472769320011],[0.042082704603672,0.031863611191511,0.063803359866142],[0.027947911992669,-0.054422367364168,-0.011358298361301]],[[0.066973313689232,0.017037911340594,0.0079137496650219],[-0.0044151246547699,-0.071182452142239,0.062979944050312],[0.068757817149162,-0.074919663369656,-0.017710693180561]],[[-0.056391324847937,-0.037417773157358,0.0024550419766456],[0.062565959990025,0.027492703869939,-0.022064743563533],[-0.049552533775568,0.03864910453558,-0.025891562923789]],[[-0.031699374318123,0.07844191044569,-0.0476233959198],[-0.0013211935292929,0.040333371609449,-0.030734706670046],[-0.042901273816824,-0.035229381173849,0.053703680634499]],[[-0.083384715020657,-0.0067167757079005,0.023792957887053],[-0.01888807117939,0.013098695315421,0.016459973528981],[0.0079508349299431,-0.0013911207206547,-0.021651167422533]],[[-0.019851725548506,0.0040624714456499,-0.023697165772319],[0.03047563880682,-0.041476532816887,0.019931484013796],[0.03851506114006,-0.03896364942193,0.098938703536987]],[[-0.062560223042965,-0.038488261401653,0.057783205062151],[-0.030670460313559,-0.018097786232829,-0.070414371788502],[0.054436810314655,-0.020452074706554,0.021801522001624]],[[-0.048589564859867,-0.035148974508047,-0.023197496309876],[0.0038220342248678,-0.022629143670201,-0.012998000718653],[0.033047735691071,-0.015052455477417,0.036748182028532]],[[0.0041062389500439,-0.020136853680015,0.034922026097775],[0.026423310860991,-0.0068372990936041,0.0402229167521],[0.053596761077642,0.031051240861416,0.0055453558452427]],[[-0.030575841665268,-0.076278515160084,-0.050855860114098],[-0.036693308502436,0.069777585566044,0.01403078995645],[-0.028123511001468,0.024884583428502,-0.011863744817674]],[[-0.01534833945334,-0.02009355276823,-0.0093681681901217],[0.10177507996559,0.021588038653135,-0.033097703009844],[-0.02583809569478,0.063165687024593,-0.010575709864497]],[[-0.016813466325402,-0.012630353681743,-0.044032908976078],[0.017432434484363,-0.0078722732141614,-0.013051178306341],[-0.040543925017118,0.0036512285005301,-0.035252742469311]],[[-0.029888961464167,-0.026413867250085,-0.022636074572802],[0.03050853125751,-0.0047871205024421,-0.051971446722746],[0.015185142867267,-0.024705912917852,0.0070588118396699]],[[-0.002202077768743,0.066106930375099,-0.025747736915946],[-0.061598584055901,-0.037327118217945,-0.018461540341377],[0.019225629046559,0.015617742203176,-0.0062788408249617]],[[-0.059479627758265,0.0067575089633465,0.042536146938801],[0.0011852415045723,-0.051229577511549,0.044907737523317],[0.0037945618387312,0.033624261617661,-0.057960465550423]],[[0.024802232161164,0.054704796522856,-0.0083886003121734],[-0.097025722265244,0.047322060912848,0.00020111181947868],[-0.043728087097406,0.076597988605499,-0.030174927785993]],[[-0.0034156802576035,-0.0004357524740044,0.054247580468655],[-0.051007691770792,0.0050896280445158,0.080717511475086],[0.047534249722958,-0.059665665030479,0.03089414909482]],[[0.0011412862222642,0.0073807234875858,0.052042596042156],[0.063375294208527,-0.051431115716696,0.037204951047897],[-0.029747728258371,-0.0055147483944893,0.035691440105438]],[[-0.0092101851478219,-0.0039833351038396,0.019562197849154],[0.034149769693613,0.0032504743430763,-0.048591539263725],[-0.019352177157998,-0.036031287163496,0.0078378329053521]],[[0.0029326383955777,-0.035269398242235,0.095643281936646],[0.0073165982030332,0.054531123489141,0.020864825695753],[-0.0024969163350761,-0.027326881885529,0.032601356506348]],[[0.012098556384444,0.076412945985794,0.0095022981986403],[0.046018958091736,0.041616432368755,-0.02027421630919],[-0.054051011800766,0.13221870362759,0.030676083639264]],[[-0.044227883219719,0.0041825487278402,0.0033082393929362],[0.10097546130419,-0.0090587781742215,0.0039084013551474],[0.020595924928784,0.028308067470789,-0.032781761139631]],[[-0.0056804060004652,-0.013835788704455,0.092063248157501],[-0.032449539750814,0.011091128922999,-0.0010030919220299],[0.040700510144234,-0.070791184902191,-0.078447885811329]],[[-0.083332099020481,0.029452191665769,0.041709933429956],[-0.025856632739305,0.041949387639761,0.038752999156713],[-0.064452543854713,-0.043045341968536,-0.023545501753688]],[[-0.052298244088888,-0.045392893254757,0.0048067667521536],[-0.013614114373922,0.013722465373576,0.010795794427395],[0.063990585505962,-0.075328931212425,0.011885618790984]],[[-0.022029638290405,-0.018158135935664,0.0024373349733651],[0.021569412201643,0.044402651488781,-0.018354833126068],[-0.016815857961774,-0.021656759083271,0.0077423946931958]],[[0.031842615455389,-0.0076630152761936,0.015602354891598],[0.018078757449985,0.001463717664592,-0.007304148748517],[0.056742813438177,0.0057441801764071,-0.054980728775263]],[[0.046610083431005,0.019316555932164,0.016984645277262],[-0.01931113563478,0.0043981135822833,-0.022919248789549],[0.002318030456081,-0.094170443713665,-0.070024773478508]],[[-0.04665482416749,-0.04106268659234,-0.011011368595064],[-0.009710505604744,0.010743831284344,0.067588709294796],[0.027694344520569,-0.1035600528121,0.00022026468650438]],[[-0.03782968968153,-0.0078641222789884,-0.065880969166756],[-0.019131556153297,0.008903288282454,0.045305743813515],[0.032115627080202,0.085530020296574,-0.0073173665441573]],[[-0.033482141792774,0.015475532971323,-0.013480280525982],[0.012460705824196,0.021223839372396,-0.073975548148155],[-0.02886950597167,0.013064358383417,-0.072982534766197]],[[-0.056792099028826,-0.0065689450129867,-0.0099833998829126],[-0.073169268667698,0.0029273289255798,-0.010886329226196],[-0.00083116791211069,0.017673261463642,-0.087352491915226]],[[-0.050149448215961,-0.035053223371506,0.029905490577221],[0.050530329346657,0.048991739749908,0.024174906313419],[0.01420643273741,0.03436428681016,0.045260049402714]],[[-0.0099822096526623,-0.058482475578785,0.025050278753042],[-0.016021355986595,0.017556576058269,0.033687371760607],[0.020114218816161,0.0092120869085193,-0.092733569443226]],[[-0.0014584439340979,0.040279407054186,0.0082647195085883],[0.0094268983229995,0.0086701773107052,-0.0014663038309664],[-0.0028743664734066,0.0037849899381399,0.059934422373772]],[[0.01221717800945,-0.0015534545527771,-0.033867795020342],[0.01235886849463,0.054872650653124,0.0022198441438377],[-0.03016690351069,0.015799494460225,-0.018981739878654]],[[0.10857282578945,0.0092848893254995,0.025101587176323],[-0.036615930497646,-0.053275465965271,-0.049413293600082],[-0.013928364962339,-0.039760045707226,-0.049001343548298]],[[-0.017504436895251,-0.017070453613997,-0.010212568566203],[0.0058071748353541,-0.0019147439161316,0.027274806052446],[0.048037860542536,-0.0049873278476298,-0.030988009646535]],[[0.056144677102566,-0.013262435793877,-0.10496678203344],[-0.011615416035056,-0.015974694862962,-0.014207855798304],[0.075862869620323,0.028804844245315,0.055565040558577]],[[0.0022221710532904,-0.12207214534283,0.027087232097983],[0.018635338172317,-0.023953540250659,-0.094348579645157],[-0.021073035895824,-0.039601478725672,-0.0069974926300347]],[[0.0060236309655011,-0.047321978956461,0.011597379110754],[-0.026650944724679,-0.028087066486478,-0.044331442564726],[0.024987054988742,0.042187612503767,-0.003834345843643]],[[0.062501892447472,0.037899110466242,0.025266699492931],[-0.031201124191284,-0.038855880498886,-0.0066883559338748],[-0.00075291376560926,0.030620222911239,-0.050081558525562]],[[-0.017383622005582,-0.050093498080969,-0.068507216870785],[-0.070181101560593,0.011907495558262,-0.051854502409697],[0.029676700010896,0.020645331591368,0.05893712490797]],[[-0.011887109838426,0.036838788539171,0.034520298242569],[0.037209987640381,0.062652193009853,0.028979375958443],[-0.021223751828074,-0.055931620299816,0.027109054848552]],[[0.022875655442476,0.0096616139635444,0.0063517289236188],[-0.059200525283813,-0.0097098127007484,0.0055009298957884],[-0.010272931307554,0.015912104398012,-0.046269755810499]],[[-0.0017428566934541,0.00034798408159986,-0.042648505419493],[-0.015131778083742,-0.071784995496273,0.00061294704210013],[-0.026546867564321,-0.0024583030026406,-0.02901266515255]],[[0.10430680215359,-0.046413969248533,-0.11719932407141],[0.022459331899881,0.051913194358349,0.09145325422287],[-0.0049000573344529,0.052681643515825,-0.036698471754789]],[[0.021342817693949,-0.042328611016273,0.050363093614578],[-0.063632145524025,0.045027881860733,0.054673846811056],[0.0049233818426728,0.00059742305893451,0.062769457697868]],[[-0.0084591750055552,0.0030120564624667,0.059434831142426],[-0.035834103822708,0.045873209834099,-0.072610557079315],[0.03684600815177,-0.0086799943819642,-0.00066031567985192]],[[0.073003247380257,-0.011473516002297,0.051543597131968],[0.061624839901924,0.010195051319897,-0.017465673387051],[0.050461463630199,0.023901533335447,-0.049028586596251]]],[[[0.036448765546083,0.089706838130951,0.10326347500086],[-0.034747313708067,0.05812956020236,0.055355351418257],[0.032339725643396,-0.10134171694517,0.10731466859579]],[[-0.01910500600934,-0.081390775740147,-0.05912484228611],[-0.056996997445822,-0.016832821071148,-0.01269244402647],[0.086093716323376,0.043367315083742,0.033045213669538]],[[-0.054956886917353,-0.0062316283583641,-0.093928501009941],[-0.044643420726061,0.072620861232281,-0.014968074858189],[0.021475987508893,0.067351259291172,-0.021114895120263]],[[-0.017467057332397,0.0016291292849928,0.018988233059645],[-0.0067528979852796,-0.010049753822386,-0.036974113434553],[0.0045298039913177,0.0050809527747333,-0.084310345351696]],[[0.14158509671688,-0.045790757983923,-0.029232604429126],[0.082492224872112,-0.050839055329561,0.029802540317178],[0.032296810299158,0.01113008800894,0.054276704788208]],[[0.11311466246843,0.014574927277863,-0.024315664544702],[-0.058636527508497,-0.039156287908554,-0.0014289307873696],[0.019199665635824,-0.053833648562431,0.027619875967503]],[[-0.06778322905302,-0.023753900080919,0.054016143083572],[-0.015862990170717,-0.010015791282058,0.069292791187763],[0.053448602557182,0.066369511187077,0.090072065591812]],[[-0.065702751278877,-0.092625953257084,-0.0092215333133936],[0.060190930962563,-0.06744472682476,-0.023502910509706],[-0.11370654404163,-0.016184683889151,0.038255888968706]],[[0.004640756174922,0.028428906574845,-0.0093791345134377],[0.0062986551783979,-0.035781845450401,-0.020630380138755],[-0.020889945328236,0.10723078250885,0.072049133479595]],[[0.072244167327881,-0.14182199537754,0.12634335458279],[0.20392516255379,0.0084858480840921,0.10371799767017],[0.028793023899198,-0.041493289172649,0.081687361001968]],[[0.0320875197649,-0.016611507162452,-0.020910015329719],[-0.048022221773863,-0.08011881262064,-0.026342397555709],[0.11516135185957,-0.0093142837285995,-0.056796822696924]],[[0.07474908977747,-0.034837260842323,-0.02380745857954],[0.0056920265778899,0.017980819568038,0.072550900280476],[0.10280518978834,0.017556073144078,0.027646204456687]],[[-0.064304746687412,-0.06661581993103,-0.059910986572504],[-0.038277246057987,0.0040845335461199,0.087731145322323],[0.034701451659203,0.015758765861392,0.040605757385492]],[[-0.02026366814971,0.032305926084518,0.10156539827585],[-0.0042450535111129,0.0095668593421578,0.028311287984252],[-0.021144796162844,-0.053919184952974,0.028252279385924]],[[-0.036461126059294,0.085369668900967,-0.031594134867191],[0.13864091038704,0.18769079446793,0.23496536910534],[0.12365387380123,-1.9195467757527e-06,0.13641571998596]],[[0.0092591363936663,-0.073244154453278,-0.041230939328671],[-0.074502654373646,-0.11272979527712,-0.092621378600597],[-0.030394671484828,-0.052864529192448,-0.10308729112148]],[[-0.0034493829589337,-0.0043545546941459,0.054994311183691],[0.12917022407055,-0.0055761788971722,-0.020914820954204],[-0.04110224545002,-0.029520666226745,-0.059102132916451]],[[-0.001458203420043,-0.048358857631683,-0.018457047641277],[0.023780489340425,-0.02000000141561,-0.046109542250633],[0.013368533924222,-0.092986091971397,0.046058382838964]],[[-0.057216513901949,-0.026515262201428,-0.0054577337577939],[-0.0043206717818975,0.16490119695663,-0.012397528626025],[-0.028710564598441,-0.017324367538095,0.0082411076873541]],[[0.042908538132906,-0.018720548599958,0.16183550655842],[-0.063170872628689,-0.0022855941206217,0.017511051148176],[-0.007359363604337,-0.026598431169987,-0.083746813237667]],[[0.029289461672306,-0.066407881677151,-0.059172473847866],[-0.011908220127225,0.065778106451035,0.022752974182367],[0.022192306816578,-0.039957925677299,0.024906488135457]],[[-0.029330492019653,0.14977213740349,-0.013724849559367],[0.029295088723302,0.016704220324755,0.063528269529343],[0.041778363287449,0.13298434019089,0.046757910400629]],[[-0.021233178675175,0.053973793983459,-0.072710856795311],[-0.01276434212923,-0.043695200234652,-0.10374619811773],[0.0010639536194503,0.029908543452621,0.041309826076031]],[[0.042829837650061,-0.0670086145401,-0.040846064686775],[-0.076164327561855,0.0079979673027992,-0.067288942635059],[0.13991896808147,0.055936019867659,0.027181340381503]],[[0.097549103200436,0.028655113652349,0.060381762683392],[0.0054073096252978,0.05963134393096,0.11134142428637],[0.10109701007605,-0.0025862993206829,0.043024685233831]],[[0.0093392394483089,-0.0075831077992916,-0.031871967017651],[0.025260899215937,-0.017921600490808,-0.070460557937622],[0.0069827204570174,0.028091069310904,-0.013110538944602]],[[0.057659849524498,0.0429324246943,-0.038265965878963],[0.084887616336346,-0.066021166741848,-0.050810385495424],[0.085636921226978,0.064909517765045,0.052819699048996]],[[-0.077977865934372,0.055819541215897,-0.12240801751614],[0.028975343331695,0.060493178665638,-0.034474350512028],[0.053766839206219,0.023770013824105,0.037105161696672]],[[0.060459122061729,0.091432213783264,-0.017717681825161],[0.057810090482235,0.010405171662569,0.063735648989677],[0.019047617912292,-0.041626494377851,0.066161438822746]],[[-0.056698940694332,0.056557714939117,0.0138925537467],[0.0016740951687098,-0.048406329005957,-0.019789403304458],[0.082668036222458,0.095150411128998,0.091838277876377]],[[-0.010263728909194,0.077780924737453,0.058957494795322],[-0.014841469936073,0.12500889599323,0.045879028737545],[-0.14527072012424,0.020216463133693,-0.011040948331356]],[[-0.026920039206743,0.00024827910237946,0.011374910362065],[-0.012266236357391,-0.045175455510616,-0.038066923618317],[0.034406892955303,-0.00046304860734381,0.022156300023198]],[[-0.050386801362038,0.03144483268261,-0.063434667885303],[0.11619850993156,0.014270740561187,-0.022827817127109],[-0.026433480903506,-0.015457903966308,0.057682033628225]],[[0.06592221558094,0.05507529899478,-0.010760201141238],[0.036246605217457,0.0070302705280483,0.01152160204947],[-0.016722658649087,0.034687481820583,0.083081379532814]],[[0.092137165367603,0.051413338631392,-0.037388049066067],[-0.0099041741341352,0.023882219567895,0.041912384331226],[-0.019456194713712,0.04511134326458,0.053583983331919]],[[-0.067078419029713,-0.036182079464197,-0.030428308993578],[0.019528010860085,-0.046384777873755,-0.092678345739841],[0.15052042901516,-0.013067271560431,0.039507891982794]],[[-0.038613107055426,-0.04735179618001,-0.026121946051717],[-0.0098553309217095,0.052797473967075,0.0071969265118241],[-0.0073922444134951,-0.0033867130987346,-0.03075492195785]],[[0.01167176105082,0.011266423389316,0.025689547881484],[0.079597741365433,0.014552432112396,-0.010825312696397],[-0.064295686781406,0.056586690247059,-0.042315579950809]],[[-0.053095154464245,0.085950843989849,-0.0010200833203271],[0.070141173899174,0.063672684133053,0.094792619347572],[0.076834380626678,0.028731063008308,0.084321692585945]],[[0.08180195838213,-0.05673861131072,-0.14312954246998],[0.071872435510159,0.050951365381479,0.036544535309076],[0.052406124770641,0.087259232997894,0.033090978860855]],[[0.014581771567464,0.034348845481873,-0.014601177535951],[0.022298267111182,0.046197932213545,0.02157324180007],[0.048774443566799,-0.015104115009308,0.011156656779349]],[[0.020890133455396,0.021908275783062,-0.038362342864275],[0.010969458147883,-0.015169464983046,0.056580729782581],[0.06076118350029,0.042827602475882,-0.086311027407646]],[[0.031845927238464,-0.077723599970341,0.028521241620183],[0.12278699874878,0.084433391690254,0.058930307626724],[0.053601052612066,-0.057438794523478,-0.041767708957195]],[[-0.10894437134266,-0.0097590303048491,-0.016152400523424],[-0.037314180284739,-0.021665841341019,0.037619352340698],[0.030219161882997,-0.051033563911915,0.036579925566912]],[[-0.0086669707670808,-0.051597200334072,-0.015287547372282],[0.0093984324485064,-0.042940024286509,0.010396764613688],[0.081239067018032,-0.02997107245028,-0.044190388172865]],[[0.039301440119743,0.033539187163115,0.047706563025713],[0.04987259209156,0.089120380580425,-0.0422951169312],[0.049233503639698,0.096453286707401,-0.077276781201363]],[[0.087394490838051,-0.080940127372742,-0.057087458670139],[0.0082078706473112,-0.0050033475272357,0.02586373500526],[-0.052654135972261,0.11813236027956,-0.00024995993589982]],[[-0.007489949464798,-0.010138131678104,0.052098605781794],[0.044124718755484,0.033867437392473,0.081488937139511],[0.0077410107478499,0.12316304445267,-0.064813651144505]],[[0.046898681670427,0.022722512483597,-0.031586609780788],[0.0021001026034355,0.066467069089413,-0.049415227025747],[0.069851525127888,-0.038889076560736,-0.017090629786253]],[[-0.036748677492142,0.026521233841777,0.032701585441828],[-0.059682969003916,-0.029297638684511,0.025077126920223],[0.029723742976785,-0.0096988864243031,-0.0026868293061852]],[[-0.049687899649143,0.031457576900721,-0.045723620802164],[-0.035188369452953,0.0030095488764346,-0.043455746024847],[-0.062764599919319,-0.071723625063896,-0.079202100634575]],[[0.051805846393108,0.041290186345577,-0.016308683902025],[-0.0055591608397663,-0.015380547381938,0.035904861986637],[0.080896615982056,0.01691821962595,0.081409111618996]],[[-0.036799322813749,-0.034893363714218,0.023759437724948],[0.0004484053933993,0.079226598143578,0.027827169746161],[-0.03184986114502,-0.094663940370083,-0.0031838067807257]],[[0.032360386103392,0.093851342797279,0.058815740048885],[0.0077219819650054,-0.025216154754162,0.060924589633942],[0.065863654017448,0.021523114293814,0.13251949846745]],[[0.031259339302778,0.05890129879117,0.080652050673962],[0.073760107159615,0.063054665923119,-0.0039317607879639],[-0.04018085077405,-0.0053595877252519,-0.038780961185694]],[[0.038765966892242,-0.056437343358994,0.031756997108459],[0.04427657276392,0.075677499175072,-0.017713371664286],[-0.066188409924507,0.076429910957813,0.018172781914473]],[[0.027804864570498,0.036699149757624,-0.011295570060611],[0.070621348917484,-0.059268813580275,0.037474296987057],[0.027973169460893,-0.01824557594955,-0.081818349659443]],[[0.085319794714451,-0.047193393111229,0.010005068033934],[0.068632900714874,0.0059597645886242,-0.046165000647306],[-0.045704487711191,-0.062516279518604,0.0028779164422303]],[[0.055185824632645,-0.00054871989414096,0.042644180357456],[-0.005047807469964,0.097099967300892,0.040450263768435],[0.0052043967880309,0.048179470002651,0.11812052130699]],[[0.023994566872716,-0.0016551107401028,0.10030011087656],[0.0028791797813028,0.083147652447224,-0.051156684756279],[-0.002991515211761,0.080207213759422,0.049814004451036]],[[-0.080935068428516,0.016492284834385,-0.011382359080017],[-0.05152940377593,-0.045187126845121,0.028166761621833],[0.064026117324829,-0.078888386487961,-0.026054376736283]],[[0.0086829215288162,-0.028723297640681,-0.052101403474808],[0.030162958428264,-0.070250675082207,-0.091233752667904],[-0.032461490482092,-0.0968848913908,0.043064549565315]],[[0.034659449011087,-0.0095362467691302,0.021489487960935],[0.082586504518986,0.02083944901824,-0.0098187979310751],[0.01851611956954,0.033553272485733,0.020383026450872]],[[-0.016187530010939,-0.02330295369029,0.011218846775591],[-0.016495732590556,0.057695247232914,-0.03089777380228],[0.022895565256476,0.018560644239187,-0.024785570800304]],[[-0.10445503145456,-0.047432508319616,0.020942470058799],[-0.029515266418457,0.0029056156054139,0.065756194293499],[-0.010469201020896,0.029376028105617,0.029150549322367]],[[0.010557746514678,-0.022750839591026,0.015265484340489],[-0.021755756810308,0.0080095147714019,-0.021937960758805],[0.001315335277468,-0.083647362887859,-0.014604425057769]],[[0.043363060802221,0.067419968545437,0.12077823281288],[-0.062373708933592,0.044902056455612,0.076521515846252],[0.055333767086267,0.028699167072773,0.051139589399099]],[[0.011982520110905,0.00074522953946143,0.099730513989925],[0.066410265862942,-0.0095728682354093,0.060509242117405],[0.010580257512629,0.0072231255471706,-0.096718832850456]],[[-0.0085097998380661,-0.064648389816284,-0.010146525688469],[-0.074904412031174,0.0021838555112481,0.086833260953426],[-0.026786429807544,0.030493294820189,0.040028538554907]],[[0.0072587030008435,0.077097572386265,0.016714032739401],[0.12959478795528,0.00017388247943018,-0.014272782020271],[0.081270232796669,0.013058205135167,-0.011817095801234]],[[0.014712942764163,0.027806341648102,-0.0032267596106976],[0.02339974232018,0.099290534853935,0.020305011421442],[0.066316813230515,0.031318705528975,0.066811457276344]],[[0.078446507453918,0.10198450833559,0.0760817527771],[0.11835721135139,0.065229430794716,-0.045069463551044],[-0.074316114187241,-0.018751474097371,0.074148841202259]],[[-0.016444867476821,0.067365013062954,0.021842435002327],[-0.022091418504715,0.026915393769741,0.018447836861014],[0.021211422979832,0.010479966178536,0.073939628899097]],[[0.13676328957081,0.05715623870492,0.0095076598227024],[-0.0072675733827055,0.11836722493172,0.043334443122149],[-0.055499266833067,0.087025925517082,0.03522714227438]],[[0.010748976841569,-0.0074864798225462,0.016367692500353],[-0.045751571655273,-0.030873822048306,0.013103496283293],[-0.049106374382973,-0.0029033699538559,0.013795658946037]],[[-0.044416032731533,0.061648350208998,-0.023352835327387],[-0.062322143465281,-0.022863605991006,-0.036215674132109],[-0.098781645298004,0.027070233598351,0.06547138094902]],[[-0.071668155491352,-0.016469597816467,-0.028121415525675],[-0.022039067000151,-0.014207026921213,-0.009335464797914],[-0.050806600600481,0.0024900019634515,0.076068364083767]],[[-0.06318761408329,-0.069446109235287,0.036493603140116],[0.17221869528294,0.040676359087229,0.029917092993855],[-0.091313347220421,0.021813962608576,0.065259464085102]],[[0.079090245068073,-0.044188566505909,-0.014307107776403],[0.022509882226586,-0.10101803392172,0.086206510663033],[-0.050229959189892,0.037620060145855,0.029993982985616]],[[0.051818784326315,-0.017066847532988,0.0086737964302301],[0.016835145652294,-0.014084885828197,0.054238568991423],[-0.026090601459146,-0.070637904107571,-0.048193141818047]],[[0.10548493266106,-0.019680511206388,0.027121858671308],[-0.025523627176881,-0.032519493252039,-0.061021126806736],[0.018767684698105,0.025398945435882,-0.080603681504726]],[[0.082214176654816,-0.048915922641754,-0.034923851490021],[-0.058361448347569,0.037200465798378,0.087851285934448],[0.039288360625505,-0.028803151100874,-0.014176715165377]],[[0.040930908173323,0.050116609781981,0.029975032433867],[-0.017730120569468,-0.001284753670916,0.0086152404546738],[0.01813162304461,0.080859519541264,-0.0082370927557349]],[[-0.021772621199489,-0.028067840263247,-0.052324134856462],[0.060394920408726,-0.022680407389998,-0.0023068364243954],[-0.034568671137094,0.042054940015078,0.068467862904072]],[[-0.0010875157313421,-0.0038363533094525,0.0035961756948382],[0.056504532694817,-0.086769305169582,-0.075521752238274],[0.047291342169046,-0.018956942483783,-0.063921608030796]],[[0.0019771901424974,0.090991303324699,-0.014824405312538],[0.059642631560564,0.07213119417429,0.028104856610298],[0.057900108397007,0.028221480548382,0.037886213511229]],[[0.032047376036644,-0.023190557956696,-0.028560286387801],[0.097417026758194,-0.016246046870947,0.024985453113914],[0.0054792412556708,-0.092032603919506,0.018992677330971]],[[0.069749638438225,0.11189987510443,0.043966513127089],[0.058080434799194,0.089649580419064,0.061386790126562],[-0.013244582340121,0.01989434286952,-0.019017824903131]],[[0.068305514752865,-0.055264960974455,-0.022063363343477],[-0.016773929819465,-0.056978095322847,-0.059121988713741],[0.048710282891989,-0.064918264746666,0.035329032689333]],[[0.082826413214207,-0.025499578565359,0.061990555375814],[0.0049315402284265,0.0073029831983149,0.096680030226707],[0.10578476637602,0.036546740680933,0.0085926009342074]],[[0.048340275883675,0.069832138717175,0.05190497636795],[0.12254539132118,0.050082705914974,0.045268684625626],[0.059844549745321,-0.011667774058878,0.061002649366856]],[[0.012041022069752,0.0067874542437494,0.0079120052978396],[-0.017110696062446,-0.089546449482441,-0.013914681039751],[0.0091421185061336,-0.010912666097283,0.066968180239201]],[[-0.051707092672586,0.0049580372869968,-0.014322686940432],[-0.11805280297995,-0.068829961121082,0.010850569233298],[-0.1005587130785,-0.037121497094631,0.12489949166775]],[[0.039765294641256,0.012591367587447,-0.029382638633251],[0.062719598412514,0.072832383215427,0.047456651926041],[-0.085036583244801,0.074230037629604,-0.030036691576242]],[[-0.011969280429184,0.070185855031013,0.03688483312726],[0.0088318046182394,-0.00092245719861239,0.04593700915575],[-0.059503339231014,0.01990651525557,-0.053246010094881]],[[-0.084057703614235,-0.032279435545206,-0.013544041663408],[-0.010503323748708,0.0038907134439796,-0.083234816789627],[0.12555828690529,-0.054483823478222,0.039832193404436]],[[0.0056124040856957,-0.032538205385208,-0.045546654611826],[-0.0039822543039918,-0.070576503872871,0.15448591113091],[0.044722013175488,-0.02596589922905,-0.0057566906325519]],[[0.11504433304071,0.034437082707882,-0.0051572006195784],[-0.016923313960433,0.0029726936481893,0.13564024865627],[-0.025772113353014,-0.025684440508485,0.11908216029406]],[[-0.017694918438792,-0.020042086020112,-0.036099471151829],[0.014813127927482,-0.005852519068867,-0.050260979682207],[0.01117202732712,0.036283530294895,0.091366060078144]],[[-0.052354730665684,0.055469650775194,0.014423244632781],[-0.015396257862449,0.032313290983438,-0.046284474432468],[0.12051858752966,0.017099671065807,-0.010909006930888]],[[0.015192339196801,-0.081100836396217,-0.017721930518746],[-0.024523476138711,-0.0013925196835771,0.033177234232426],[0.05085775628686,0.040321100503206,-0.037408988922834]],[[0.095152445137501,0.072166241705418,0.03084366209805],[0.1072063818574,0.10173324495554,0.067467980086803],[0.05752195417881,0.072641894221306,0.0073404549621046]],[[0.12913276255131,-0.043331317603588,0.097095005214214],[-0.020782373845577,0.0030457458924502,-0.11047147214413],[0.023392755538225,0.049643620848656,-0.0093675469979644]],[[0.034535612910986,-0.099107198417187,-0.017777137458324],[0.035179872065783,0.0066242967732251,0.018278071656823],[0.074553444981575,0.069250613451004,0.0068390863016248]],[[0.011800241656601,0.027054361999035,-0.015270077623427],[0.13521924614906,0.079613603651524,0.046089634299278],[-0.0009402270661667,0.0037388510536402,0.089843854308128]],[[0.088189318776131,0.04402494803071,0.025182973593473],[-0.045895531773567,0.057267062366009,-0.0024711370933801],[-0.071468785405159,0.062231954187155,0.038272745907307]],[[-0.017512556165457,0.050585690885782,0.0021349620074034],[-0.032379489392042,-0.068838313221931,0.014998435042799],[-0.092693895101547,-0.0011526419548318,0.0062160496599972]],[[0.0071124453097582,-0.05819408223033,0.036722645163536],[-0.0051787053234875,-0.093196205794811,-0.0033078622072935],[0.077591024339199,-0.092943586409092,-0.08235627412796]],[[-0.037074215710163,0.042440671473742,-0.059877038002014],[-0.0094422809779644,0.069991640746593,0.033755764365196],[-0.0051527596078813,0.019434040412307,0.00013577709614765]],[[0.015992075204849,-0.07098001986742,-0.073271200060844],[0.040808666497469,0.068279780447483,-0.073311723768711],[0.036969922482967,0.057772655040026,0.1777351051569]],[[-0.023300541564822,0.014844180084765,0.091723814606667],[-0.024924783036113,0.086014084517956,0.018575912341475],[0.0075063118711114,-0.079643733799458,-0.11896778643131]],[[0.039574723690748,0.032818350940943,0.082648262381554],[0.055911891162395,-0.02862585708499,0.064667530357838],[-0.0078427968546748,0.0044423155486584,-0.065929584205151]],[[0.049752321094275,-0.017259351909161,0.038952719420195],[0.057016503065825,0.052545003592968,0.096381954848766],[-0.0084531717002392,0.051204819232225,-0.037707023322582]],[[-0.056031502783298,-0.038762386888266,-0.12613427639008],[-0.03777526691556,0.015752641484141,-0.061966728419065],[0.013504247181118,-0.046944912523031,0.084700770676136]],[[0.022523207589984,-0.064533673226833,-0.0033149409573525],[-0.032450780272484,-0.082632251083851,-0.067344725131989],[-0.010604783892632,-0.01396063528955,0.0058397236280143]],[[0.052827782928944,0.041963260620832,0.046544898301363],[0.10747837275267,0.033070258796215,-0.047150459140539],[0.046505343168974,0.030116312205791,0.14196920394897]],[[0.078860990703106,0.00027340502128936,0.016977462917566],[0.10940836369991,0.027060195803642,0.00061903765890747],[-9.0535562776495e-05,0.091920956969261,0.12357487529516]],[[-0.027131969109178,-0.0050663040019572,-0.0069953841157258],[-0.040603037923574,-0.034585740417242,-0.07512854039669],[-0.080263368785381,-0.033088993281126,0.04754301533103]],[[-0.018328938633204,-0.0085127269849181,-0.060127038508654],[0.022701449692249,0.036464083939791,-0.021357906982303],[0.039841525256634,0.090540617704391,0.025311006233096]],[[0.039760246872902,0.02282627299428,0.01795163191855],[0.044200632721186,0.030815713107586,-0.033998165279627],[-0.061735615134239,0.080503411591053,-0.0026024223770946]],[[-0.00067890580976382,0.025868069380522,0.0023683400359005],[0.010536788962781,-0.076815582811832,-0.0059207486920059],[0.16089209914207,0.11717481166124,0.063291423022747]],[[0.025148738175631,0.028788970783353,0.060765907168388],[0.070663280785084,0.0089986445382237,0.015319886617362],[0.0039661712944508,-0.019722575321794,0.023212375119328]],[[-0.029848663136363,0.077777191996574,-0.063071832060814],[0.030007135123014,-0.023768911138177,0.027020173147321],[0.0014575199456885,0.011973293498158,0.036788370460272]],[[0.031213890761137,-0.10585106909275,-0.024551862850785],[0.068608663976192,0.051551785320044,-0.049106370657682],[0.059066880494356,0.039431549608707,-0.016436628997326]],[[-0.0038928329013288,-0.14810498058796,-0.030413776636124],[0.022587118670344,-0.018552849069238,-0.07748369127512],[-0.0010515782050788,0.007795246783644,-0.010361806489527]],[[0.048867158591747,0.094468727707863,-0.0049072848632932],[0.013747274875641,0.032405190169811,-0.034114353358746],[0.006920444779098,0.086220614612103,-0.066928721964359]],[[0.088445693254471,-0.10244293510914,-0.046449579298496],[0.1552247852087,0.029287539422512,0.026334950700402],[0.015518370084465,0.12369704991579,0.099741421639919]],[[0.03668387979269,0.010437483899295,-0.015922412276268],[0.080497890710831,-0.034799665212631,-0.031521014869213],[-0.033709514886141,0.094607725739479,0.027884930372238]]],[[[0.048248015344143,0.092079348862171,0.017540901899338],[-0.022524295374751,-0.03165228664875,-0.043305035680532],[0.11113208532333,0.021195899695158,-0.035709902644157]],[[-0.0053944145329297,0.066832929849625,0.021400090306997],[-0.016432207077742,0.0081469733268023,0.025732031092048],[-0.046651590615511,0.018160661682487,-0.054330475628376]],[[-0.019290966913104,-0.0011591396760195,0.03942596912384],[-0.010770361870527,-0.032576475292444,-0.0073138251900673],[-0.053286883980036,-0.033441860228777,0.0019230985781178]],[[0.015654694288969,0.0024614541325718,0.066688872873783],[3.0369012165465e-05,0.028906442224979,-0.0035760053433478],[0.019350543618202,0.011070718057454,0.0079108709469438]],[[-0.046903166919947,-0.056337062269449,-0.1535982042551],[-0.00016661940026097,-0.025202115997672,0.072517715394497],[-0.043227393180132,-0.067310087382793,-0.052076518535614]],[[0.060038231313229,0.024357223883271,0.067055702209473],[0.0063361059874296,0.049584407359362,0.051678702235222],[0.026490671560168,0.03610010445118,0.0069826445542276]],[[0.089566834270954,0.020622907206416,0.011803719215095],[0.029043681919575,-0.0094039840623736,-0.0034506907686591],[-0.042189322412014,-0.025059195235372,0.020510910078883]],[[0.039832592010498,-0.057762071490288,-0.0431890450418],[-0.014552221633494,0.023725306615233,-0.029429774731398],[0.013570056296885,0.0053184665739536,0.088887631893158]],[[-0.037939179688692,0.033058881759644,0.046049751341343],[0.016131332144141,0.12997029721737,0.018767466768622],[-0.0069560846313834,0.0033886830788106,0.0055763465352356]],[[0.16076768934727,0.052525818347931,0.049256920814514],[0.077834941446781,0.00094337982591242,0.18396082520485],[0.074582204222679,-0.0064819687977433,0.10559441149235]],[[-0.0027185885701329,0.012142590247095,0.033049002289772],[-0.066185556352139,0.038384154438972,-0.015771457925439],[-6.6875785705633e-05,0.025863176211715,0.014747358858585]],[[0.013364273123443,0.027894644066691,0.023283127695322],[-0.0065043396316469,0.10099302232265,0.0026259562000632],[0.0084768701344728,0.062385700643063,0.044019650667906]],[[0.031981039792299,0.083138562738895,0.049677535891533],[0.015638895332813,-0.012451727874577,0.037602808326483],[-0.023379970341921,-0.018086398020387,-0.012933845631778]],[[-0.011962962336838,-0.11837188154459,0.0099222743883729],[0.061901398003101,0.014969238080084,-0.029685616493225],[0.025431865826249,0.05059901252389,0.13358570635319]],[[0.032831780612469,-0.0049050478264689,0.14192292094231],[0.087898172438145,-0.041824147105217,0.073126003146172],[0.023658880963922,0.12839952111244,0.013370004482567]],[[-0.021853288635612,0.045738220214844,0.040197104215622],[0.033270701766014,-0.0053571360185742,0.056836735457182],[-0.064459621906281,-0.061277698725462,-0.069751746952534]],[[-0.010037522763014,0.066362634301186,-0.047323223203421],[0.028042389079928,-0.042315799742937,0.02490465156734],[-0.057356514036655,0.091902405023575,0.0031378255225718]],[[0.061574041843414,0.063294447958469,-0.077073685824871],[0.036659497767687,-0.0039154589176178,-0.0229547675699],[-0.053490966558456,-0.085955783724785,-0.073524132370949]],[[-0.027828196063638,-0.023965165019035,0.017732931300998],[-0.014857212081552,-0.00099306518677622,0.039816178381443],[0.028218222782016,-0.099817402660847,0.089052692055702]],[[0.053790509700775,-0.022551590576768,0.019076893106103],[0.067689642310143,-0.0090353572741151,-0.090468935668468],[0.068446420133114,0.0052109966054559,0.14937601983547]],[[-0.072288639843464,-0.11741308867931,0.00084003229858354],[0.10268431901932,0.040418803691864,0.037998046725988],[0.0070796580985188,0.021690838038921,0.026495426893234]],[[0.075703807175159,-0.028632238507271,0.11827897280455],[0.12806722521782,0.084888800978661,-0.046819016337395],[-0.0010718458797783,0.056886915117502,0.10796989500523]],[[-0.02548936009407,0.041101843118668,-0.059580825269222],[0.059256922453642,-0.023934176191688,0.012118808925152],[0.01775137335062,0.05664911866188,-0.074339494109154]],[[0.075731515884399,0.056501049548388,0.1084393709898],[-0.0073734340257943,-0.014466790482402,-0.039168201386929],[-0.040244989097118,0.023260653018951,0.021491477265954]],[[0.096673771739006,0.057437539100647,0.00879583414644],[0.029202597215772,-0.036813125014305,0.02090878225863],[-0.011989730410278,0.024600530043244,0.072320565581322]],[[-0.05392887070775,0.02753771468997,-0.017638700082898],[0.011036803014576,-0.027782130986452,0.021483771502972],[-0.017541563138366,-0.035738684237003,0.025233576074243]],[[0.036084439605474,-0.0670360699296,0.055203814059496],[-0.040333885699511,0.067890129983425,0.045763362199068],[0.020623279735446,-0.042915150523186,0.10299418866634]],[[0.032208867371082,0.027168210595846,-0.0062731970101595],[0.015835251659155,0.016685554757714,0.12061973661184],[0.035436224192381,0.047860030084848,0.06400965154171]],[[-0.028775220736861,-0.052712082862854,0.013655337505043],[-0.071446269750595,0.068171039223671,-0.075764589011669],[0.074230365455151,0.06076318770647,0.0057770786806941]],[[-0.0023356983438134,0.025781845673919,0.010663241147995],[0.017313171178102,0.022646993398666,-0.056809224188328],[-0.043957579880953,-0.004937537945807,-0.033848840743303]],[[0.020896809175611,-0.045030821114779,0.030896652489901],[0.022815046831965,0.038719762116671,0.020246285945177],[0.053408320993185,0.009650600142777,0.052051022648811]],[[0.0020522910635918,-0.042218942195177,-0.045298282057047],[-0.051298514008522,-0.061604596674442,0.083704940974712],[0.041683446615934,-0.039796363562346,0.026667974889278]],[[0.0060149300843477,0.055783785879612,0.11251258850098],[-0.026729153469205,-0.085448212921619,0.02722492814064],[-0.0189208984375,0.035301759839058,0.073224544525146]],[[-0.071097381412983,0.0050457194447517,0.032512553036213],[-0.03501807525754,0.027074109762907,-0.0095440624281764],[0.063217401504517,0.086749039590359,0.027239950373769]],[[-0.10220979899168,-0.021313359960914,-0.021001143381],[0.063552752137184,-0.012989768758416,-0.017590988427401],[0.0012031972873956,-0.048072770237923,0.094802193343639]],[[0.018271816894412,-0.031938254833221,0.014388735406101],[0.0099580828100443,0.052572503685951,0.038574058562517],[0.0086573557928205,-0.014009366743267,0.021643372252584]],[[-0.023427495732903,-0.016104051843286,-0.022004256024957],[0.062151167541742,-0.061335600912571,-0.038171857595444],[-0.033787481486797,-0.045732170343399,-0.068125560879707]],[[0.036728713661432,-0.027291633188725,0.02797987870872],[-0.0094672041013837,0.0024735953193158,-0.010162523947656],[0.079680413007736,-0.0089016780257225,-0.053960680961609]],[[0.039902839809656,0.011618821881711,-0.0061856866814196],[-0.047017719596624,-0.023082939907908,-0.063891634345055],[0.029392015188932,-0.022798942402005,0.016179777681828]],[[0.11036434024572,-0.07202186435461,-0.0063066519796848],[0.012434018775821,0.045898646116257,0.033883523195982],[0.01883714646101,0.035237196832895,0.014844471588731]],[[-0.053293667733669,0.035336088389158,0.040683887898922],[-0.015446891076863,-0.015547391958535,-0.078115239739418],[-0.05279303714633,0.042955983430147,0.053141165524721]],[[0.020818827673793,0.02645174600184,-0.083511687815189],[-0.011544583365321,-0.075211450457573,0.053339589387178],[0.03152121976018,-0.030433597043157,-0.010129771195352]],[[0.06315441429615,-0.053021088242531,0.067097894847393],[0.0090138716623187,0.099322006106377,0.038486529141665],[0.021232238039374,-0.037235278636217,0.093759328126907]],[[0.031777944415808,0.069974094629288,0.06938897818327],[-0.07612070441246,0.044695530086756,-0.021932329982519],[0.0059056794270873,-0.013656651601195,0.041228108108044]],[[0.10433930158615,-0.0555713288486,0.01733087003231],[0.057938847690821,-0.036108899861574,-0.060350954532623],[0.0024138770531863,0.056686084717512,0.093801736831665]],[[0.055041335523129,0.084532208740711,-0.03337524458766],[0.037867367267609,0.065219841897488,0.067179746925831],[0.095165930688381,0.042561534792185,0.025734286755323]],[[0.04832299426198,0.020153468474746,0.075024351477623],[-0.069422200322151,0.041046544909477,0.0018862589495257],[0.070626959204674,-0.024750459939241,0.059555675834417]],[[0.053936187177896,-0.048765100538731,0.045681443065405],[-0.018521202728152,0.067731633782387,-0.049897003918886],[0.033448521047831,0.05971347540617,-0.081803977489471]],[[-0.070238538086414,-0.014055445790291,0.024873077869415],[-0.056639760732651,0.076076872646809,-0.063624449074268],[0.00072721327887848,0.054706621915102,-0.059049140661955]],[[-0.024860577657819,0.057966243475676,0.048066403716803],[0.08965140581131,0.026696309447289,0.076705478131771],[0.047101270407438,-0.080436825752258,0.035850413143635]],[[-0.086416780948639,-0.00747952144593,-0.086774460971355],[-0.025719972327352,-0.01607433333993,0.091626785695553],[0.012824825011194,-0.029548175632954,-0.03769064694643]],[[-0.0534448325634,-0.013336380943656,0.038711350411177],[0.062426097691059,0.075547933578491,0.037045329809189],[-0.023512465879321,0.0070393471978605,0.06645592302084]],[[0.03343503177166,0.0048183584585786,-0.02414240501821],[-0.023216651752591,0.00010461494093761,0.046115752309561],[0.007854008115828,-0.014722074382007,0.023044802248478]],[[-0.038558878004551,-0.0010872127022594,-0.010915425606072],[-0.02976524271071,0.017383668571711,0.014223080128431],[-0.11432407796383,0.0030178707093,-0.054100431501865]],[[-0.004677533172071,0.01767841540277,0.053959555923939],[0.069852650165558,0.012478052638471,-0.0065041589550674],[0.055841468274593,-0.036360397934914,-0.022469954565167]],[[0.047412995249033,0.060488678514957,0.04539668187499],[-0.016533212736249,0.0242212228477,-0.021916702389717],[0.016450269147754,0.013109359890223,-0.009821998886764]],[[0.016323735937476,0.11581158638,0.066165007650852],[0.041326582431793,-0.082426965236664,-0.061673976480961],[0.0025392903480679,-0.065911285579205,0.030817890539765]],[[-0.013064756989479,-0.0084615144878626,0.029897149652243],[0.01648185774684,-0.073206715285778,-0.010623062029481],[-0.085074104368687,-0.036638546735048,0.018459387123585]],[[0.019157541915774,0.032955948263407,0.10550359636545],[0.035784166306257,0.044012732803822,0.030264146625996],[0.079044736921787,0.022238643839955,0.098322011530399]],[[0.016977706924081,-0.020066725090146,0.081983834505081],[-0.026724066585302,-0.012944427318871,0.014486158266664],[0.092605724930763,0.0062257451936603,-0.0093924980610609]],[[-0.039386607706547,0.11099912971258,0.016947757452726],[0.095688156783581,0.14414711296558,-0.0055504124611616],[-0.014640708453953,-0.044700775295496,0.027440601959825]],[[-0.01793267019093,0.0052549876272678,-0.035538025200367],[-0.023005405440927,-0.062516018748283,0.072022087872028],[0.013831819407642,0.012436759658158,0.032397590577602]],[[0.019312810152769,0.070928104221821,0.1053131967783],[-0.023418398573995,-0.018155187368393,-0.053727872669697],[-0.0010545183904469,0.031227262690663,0.040954899042845]],[[0.041002683341503,0.034441348165274,0.019483363255858],[0.078135438263416,0.028349241241813,0.048564743250608],[0.10531199723482,0.022855462506413,0.066046342253685]],[[0.025895467028022,0.026403179392219,0.030146192759275],[-0.023532578721642,-0.033253684639931,-0.0029910153243691],[-0.034786000847816,0.053326297551394,0.034461073577404]],[[0.045740388333797,0.0017582981381565,0.057281818240881],[-0.045708812773228,0.0064903041347861,0.039735719561577],[0.050624445080757,0.045498847961426,0.088855601847172]],[[0.053543977439404,-0.066706590354443,0.037493988871574],[0.020013999193907,0.025182902812958,0.046434354037046],[0.032808966934681,0.04162085428834,0.038226861506701]],[[0.048594910651445,-0.010991560295224,0.026410557329655],[0.043862801045179,0.012553255073726,0.057899162173271],[0.029644709080458,-0.015807416290045,-0.01489950157702]],[[-0.041018553078175,0.011484808288515,0.055328708142042],[0.074342146515846,0.063200421631336,-0.039137650281191],[-0.001955496147275,0.06444151699543,-0.026692278683186]],[[0.068974323570728,0.071255445480347,-0.011918290518224],[0.032749474048615,0.043166905641556,-0.010896865278482],[0.075320161879063,0.065650038421154,0.012473773211241]],[[0.061932783573866,-0.018350785598159,0.0006335427169688],[0.027111042290926,-0.040267027914524,0.023158019408584],[-0.04509935900569,0.11787378042936,0.058655895292759]],[[0.03531351685524,-0.016993552446365,0.031987965106964],[-0.082104101777077,-0.010958555154502,0.083640806376934],[0.012068163603544,0.040367059409618,-0.0031492887064815]],[[0.051540330052376,0.0029526902362704,0.036294333636761],[0.09306176751852,-0.028443375602365,0.002217315370217],[0.00069784326478839,0.076232425868511,0.04661613330245]],[[0.018336292356253,-0.040474649518728,0.030406249687076],[0.042440813034773,-0.0035748402588069,-0.00066554202931002],[0.10005030035973,-0.043925624340773,0.043222032487392]],[[-0.016135588288307,-0.010614724829793,0.015247170813382],[-0.041630174964666,-0.015447302721441,-0.021733349189162],[-0.025584414601326,0.076150111854076,-0.038974277675152]],[[0.079732902348042,0.034604266285896,-0.0028925538063049],[-0.050085373222828,-0.0059921485371888,-0.054491240531206],[0.061639253050089,-0.02627370133996,0.03478679805994]],[[0.16010236740112,0.0070854434743524,0.056907750666142],[0.0024856305681169,0.012430896982551,-0.019142188131809],[0.051970273256302,-0.050556212663651,-0.022015165537596]],[[0.1434830725193,0.058985915035009,0.010669440962374],[0.031185336410999,0.047444578260183,0.00012356764636934],[0.0058204955421388,0.083728991448879,0.12935453653336]],[[-0.051093120127916,0.039977576583624,-0.0052455994300544],[-0.022910285741091,0.0081571470946074,-0.023675167933106],[-0.0021416980307549,-0.056493584066629,0.0048637385480106]],[[-0.021827111020684,-0.082316823303699,0.070474550127983],[0.013208333402872,-0.03166414052248,-0.026700707152486],[-0.038200069218874,0.0096501233056188,-0.028974279761314]],[[-0.040943160653114,0.10837870836258,0.0053944997489452],[0.076641336083412,-0.0020639065187424,0.092358075082302],[0.010091802105308,0.017446408048272,-0.060798387974501]],[[0.010712937451899,-0.0046050339005888,0.027943775057793],[0.092797726392746,0.030332360416651,-0.013235879130661],[-0.019279457628727,-0.062860123813152,0.10526560992002]],[[0.021489076316357,-0.0453971773386,-0.034614305943251],[0.055790159851313,-0.03372036665678,0.053769115358591],[0.030162343755364,-0.02183285728097,0.0046095405705273]],[[-0.057313937693834,-0.015062777325511,0.075491063296795],[0.030925843864679,0.046608209609985,-0.010502415709198],[-0.038814228028059,-0.023058626800776,0.04324197396636]],[[0.060999806970358,0.019926644861698,0.068277977406979],[0.025164898484945,0.041757982224226,0.074458211660385],[0.049991767853498,-0.020001133903861,0.065967410802841]],[[-0.0385372787714,0.046843104064465,0.016775622963905],[0.008980555459857,0.035728871822357,-0.034497000277042],[0.1326285302639,0.11119953542948,-0.0027234849985689]],[[0.080195493996143,-0.00826680008322,0.038767378777266],[0.014924969524145,0.10911945253611,-0.00089085299987346],[0.039825238287449,0.07827340066433,0.047707423567772]],[[-0.026617653667927,0.068464629352093,0.063579767942429],[-0.0087258080020547,0.046825218945742,0.098297514021397],[0.02100333198905,0.07383768260479,0.054245516657829]],[[-0.040118236094713,0.032445773482323,-0.061886124312878],[-0.0035717349965125,0.036625742912292,-0.034073144197464],[0.010461936704814,0.05722351744771,0.085043095052242]],[[0.029926635324955,-0.002554670907557,0.00069571915082633],[0.0062299235723913,-0.024766575545073,-0.016717109829187],[-0.034977674484253,-0.049303006380796,-0.071885898709297]],[[0.052084386348724,0.03602622076869,0.033588372170925],[0.011583362706006,-0.042934022843838,-0.013467255048454],[0.038349486887455,0.00031646151910536,0.016034096479416]],[[0.070372223854065,0.049480400979519,-0.020664507523179],[-0.029326705262065,-0.017349738627672,-0.032157849520445],[0.035960339009762,-0.058207370340824,-0.010143931955099]],[[0.0078427800908685,-0.013908305205405,-0.0071943663060665],[-0.0056063765659928,-0.014682425186038,0.019373714923859],[-0.098239742219448,0.051447153091431,-0.021458109840751]],[[0.046591185033321,-0.0047782547771931,0.0047849901020527],[0.04310005530715,0.030338672921062,0.012987315654755],[0.016639485955238,-0.089272350072861,0.08519421517849]],[[-0.0074688345193863,-0.047193322330713,-0.037596516311169],[0.027150316163898,-0.035311706364155,0.056720614433289],[-0.045980703085661,0.09985126554966,0.0017139562405646]],[[0.095608651638031,0.013527798466384,0.042967166751623],[-0.07756894826889,-0.0335793197155,0.016044119372964],[-0.020950654521585,-0.03998139500618,-0.024897394701838]],[[0.043078262358904,0.051506131887436,0.043714068830013],[-0.025671470910311,0.10983470082283,0.10084358602762],[0.14218428730965,0.043269295245409,0.0049573169089854]],[[0.019135987386107,0.02820666320622,0.0010293569648638],[0.06998798251152,-0.046426605433226,0.080579780042171],[0.041839919984341,0.019206276163459,0.030400531366467]],[[0.017673943191767,-0.0014129092451185,-0.012326765805483],[-0.069217145442963,-0.020181030035019,-0.028349177911878],[-0.011886538937688,-0.0058244056999683,0.033307056874037]],[[0.057847324758768,0.036850903183222,-0.075790144503117],[0.012251419015229,0.019639421254396,0.062310203909874],[0.010561062023044,0.027855139225721,0.065659955143929]],[[-0.017985656857491,0.029871312901378,-0.0076016522943974],[0.044706359505653,0.051168333739042,0.0046040299348533],[-0.034641731530428,0.01079682726413,0.045735917985439]],[[-0.0073919766582549,-0.077149718999863,0.074651658535004],[-0.089929647743702,-0.010289528407156,0.065415307879448],[0.048860397189856,0.040434401482344,0.07771160453558]],[[-0.023040726780891,-0.026365960016847,-0.022090850397944],[0.048634603619576,0.0025208406150341,0.019013844430447],[-0.049243971705437,0.033417396247387,-0.021592015400529]],[[0.013970552012324,-0.053576864302158,0.060336742550135],[-0.0382383428514,-0.020274646580219,-0.016226008534431],[0.0051651252433658,0.073885321617126,-0.0025263475254178]],[[-0.020387552678585,0.01768490858376,0.014589454047382],[-0.04634703323245,-0.016422541812062,0.0015791177283973],[0.024441698566079,0.021819241344929,-0.048617735505104]],[[0.021201476454735,0.037882961332798,0.057941760867834],[-0.053187668323517,0.034662421792746,0.091529347002506],[0.015452981926501,0.0041595529764891,0.064050279557705]],[[-0.011534607969224,0.028838001191616,0.0043834554962814],[0.021701438352466,0.013618650846183,0.062749654054642],[-0.0031122299842536,0.03173953294754,-0.026698336005211]],[[0.025118056684732,-0.087108597159386,-0.064665377140045],[-0.021281940862536,-0.014801376499236,-0.0013810723321512],[-0.057284835726023,-0.056718457490206,0.024619830772281]],[[0.0255654361099,0.053692582994699,0.0034920696634799],[0.0091341966763139,-0.00013692866195925,-0.019026162102818],[-0.035353254526854,-0.041308429092169,-0.019742392003536]],[[0.015266636386514,0.12503108382225,0.06367289274931],[-0.080573618412018,0.027263155207038,0.045258197933435],[0.026030769571662,-0.024395709857345,-0.12005518376827]],[[0.026267483830452,-0.027126085013151,-0.0082072662189603],[0.036298107355833,-0.016788929700851,-0.016632793471217],[-0.056920021772385,0.058121394366026,-0.011481576599181]],[[-0.04387316852808,-0.027913616970181,-0.05965031683445],[0.013300153426826,0.015166949480772,-0.01928124204278],[-0.0066869165748358,0.044616479426622,0.02537932805717]],[[-0.0067121321335435,0.010504845529795,-0.04993724822998],[0.0021468829363585,0.05781128257513,-0.039602857083082],[-0.0054353098385036,0.10109735280275,-0.037081018090248]],[[-0.08031465113163,0.048419617116451,-0.010371802374721],[-0.016604559496045,-0.073724813759327,0.045401386916637],[0.028095558285713,0.053225442767143,-0.11066429316998]],[[-0.014668005518615,-0.012129590846598,-0.00029335069120862],[0.0044786254875362,-0.085432730615139,0.028623040765524],[0.054299291223288,-0.036648876965046,-0.055864125490189]],[[0.052502259612083,-0.044265300035477,-0.0012844357406721],[0.013876020908356,-0.014039541594684,0.10208436101675],[-0.023190388455987,0.015389709733427,0.016727091744542]],[[-0.031296517699957,-0.0080256946384907,-0.019218327477574],[-0.046985205262899,0.02138121984899,0.036632779985666],[-0.012456696480513,0.095200285315514,0.010302549228072]],[[0.02109631896019,-0.03014955483377,-0.046299900859594],[0.027332488447428,-0.052884016185999,0.0025518767070025],[0.012546215206385,0.0093758637085557,0.046023465692997]],[[-0.042831312865019,-0.087141081690788,-0.028287172317505],[-0.094688929617405,0.01383669860661,-0.042223673313856],[-0.039652414619923,0.013144204393029,-0.027245905250311]],[[-0.065323702991009,-0.049939248710871,-0.016680588945746],[-0.0041130413301289,-0.08245774358511,-0.06374105066061],[0.010248511098325,-0.019885949790478,-0.091092579066753]],[[-0.023912524804473,-0.099229887127876,-0.00028138738707639],[0.0028010145761073,-0.094163902103901,-0.014866759069264],[-0.0094321519136429,-0.007283884100616,0.022847410291433]],[[-0.047072779387236,0.020598594099283,-0.0059950514696538],[-0.0036910448689014,0.016442039981484,0.022261654958129],[0.028827276080847,-0.024382285773754,0.021797521039844]],[[0.079846814274788,-0.041129268705845,-0.032599460333586],[-0.0014361805515364,-0.0060109421610832,0.036107368767262],[-0.0040586451068521,-0.0082165962085128,0.04398026689887]],[[-0.083461552858353,0.083469845354557,0.056600097566843],[0.019815677776933,0.034716039896011,0.063768818974495],[0.022642744705081,-0.018424578011036,-0.097552843391895]],[[0.051755376160145,0.023219918832183,0.0059102843515575],[0.096766032278538,0.0035170638002455,0.092986710369587],[-0.057782415300608,0.049849715083838,-0.0066029471345246]],[[-0.04155120626092,-0.07037491351366,0.042042702436447],[0.067432515323162,-0.037501808255911,-0.024606255814433],[0.038651145994663,-0.0098994327709079,-0.02159783616662]],[[-0.059093300253153,0.010571908205748,0.055441603064537],[0.020834516733885,0.0048676584847271,0.10231713950634],[-0.058271683752537,0.019799783825874,-0.064716055989265]],[[0.007163395639509,0.018024327233434,0.029442088678479],[-0.04484499245882,-0.051459532231092,0.063135005533695],[-0.023751402273774,-0.048683859407902,-0.022721169516444]]],[[[-0.05645328015089,0.036783467978239,0.047580026090145],[0.011348119936883,0.041359525173903,-0.01153864338994],[-0.052894786000252,-0.022409811615944,-0.025594133883715]],[[-0.04305524379015,0.052610673010349,-0.022087076678872],[-0.085732512176037,0.0015763734700158,-5.2063733164687e-05],[0.0085275564342737,0.0096339834854007,-0.017352178692818]],[[-0.0033803952392191,0.0040131430141628,-0.038732871413231],[0.021554462611675,0.01768540777266,-0.02023958414793],[0.057190772145987,-0.0030902484431863,0.015528874471784]],[[0.12880590558052,0.0037162038497627,0.026695307344198],[0.02522068284452,0.074191674590111,0.014148111455142],[0.012897613458335,0.052443955093622,0.089924998581409]],[[-0.060402378439903,0.015885177999735,-0.025545122101903],[0.0075133121572435,0.046203680336475,0.015168328769505],[-0.086166255176067,-0.035807173699141,-0.059012800455093]],[[0.088146731257439,0.013716119341552,0.031430929899216],[0.033861197531223,0.019756060093641,0.038412801921368],[0.00078417762415484,0.0019823887851089,-0.058879010379314]],[[0.0039983801543713,-0.037254091352224,0.0095259454101324],[-0.03419041633606,-0.058788564056158,-0.082887172698975],[-0.025024427101016,-0.034122504293919,-0.024425514042377]],[[0.033435076475143,0.0097211850807071,0.01740132458508],[-0.0026585559826344,-0.013831994496286,-0.020883733406663],[0.014493132941425,-0.0082378629595041,0.078031189739704]],[[0.011504582129419,0.082385718822479,-0.025893108919263],[-0.001777138793841,-0.08596296608448,-0.072410307824612],[0.041071094572544,0.013429553247988,-0.00054071960039437]],[[0.018697533756495,0.051453869789839,0.074712283909321],[0.074817419052124,0.032557636499405,0.068977825343609],[0.0027294135652483,-0.042102307081223,0.14822219312191]],[[-0.054694566875696,0.0083578517660499,-0.023297030478716],[0.02290909551084,0.061982408165932,0.0060742655768991],[-0.0061630569398403,0.0058093215338886,0.030386604368687]],[[-0.014279881492257,0.095477089285851,0.0090283323079348],[-0.021393705159426,0.055563621222973,0.06538899242878],[0.049290616065264,0.12932224571705,-0.034205254167318]],[[0.010627209208906,-0.008233311586082,-0.018218947574496],[-0.017284162342548,-0.02634634822607,-0.055304996669292],[0.01540853548795,0.0166015625,-0.093941450119019]],[[0.1086677312851,-0.059965092688799,-0.04004804417491],[0.014290068298578,0.013689848594368,0.063358418643475],[-0.01762567460537,-0.050378203392029,0.038798470050097]],[[-0.051002319902182,0.091227933764458,0.050340164452791],[0.18035209178925,-0.0028924841899425,-0.035404924303293],[0.046406246721745,0.11485679447651,-0.0084233321249485]],[[0.013450546190143,0.020372305065393,0.035177323967218],[0.020574072375894,0.020261563360691,-0.011489969678223],[0.080823831260204,-0.0071421675384045,0.031525313854218]],[[-0.062991783022881,0.026343956589699,0.019082807004452],[-0.017888175323606,0.047676656395197,0.0010466944659129],[0.0090421214699745,-0.056423757225275,0.022784732282162]],[[-0.049696713685989,-0.006044888868928,-0.015808843076229],[-0.030180359259248,0.085004352033138,0.093948349356651],[-0.010325881652534,-0.062682621181011,-0.028899108991027]],[[-0.021579073742032,-0.01680013909936,-0.0166693367064],[0.042189676314592,-0.01229371316731,-0.05750959739089],[-0.040146343410015,0.049514509737492,0.020647708326578]],[[0.086574502289295,0.050822176039219,0.030308835208416],[0.051082275807858,0.00054903997806832,-0.037020709365606],[0.005758136510849,-0.0064230496063828,0.045549493283033]],[[0.080044776201248,0.036522176116705,-0.05038857460022],[0.0037330482155085,0.10396310687065,0.0047110365703702],[-0.054523527622223,-0.018328880891204,0.0066955219954252]],[[0.00088044791482389,0.12916466593742,0.05060113966465],[0.032646223902702,0.043670400977135,0.06081035733223],[0.016856258735061,-0.051455110311508,0.060713406652212]],[[0.065437436103821,0.012506025843322,-0.035458989441395],[0.03464762493968,-0.013384738005698,0.05567754432559],[-0.058563854545355,0.0085743889212608,-0.052987471222878]],[[-0.074411422014236,-0.059999037533998,-0.054246224462986],[0.024956941604614,-0.038633845746517,-0.056618858128786],[-0.039434261620045,0.020754231140018,-0.048418246209621]],[[0.082432001829147,0.033294700086117,-0.073219411075115],[-0.026805708184838,0.01797965914011,0.11195877194405],[0.061220612376928,-0.014397920109332,-0.018493019044399]],[[0.029337493702769,0.072631195187569,0.0071818730793893],[-0.042901322245598,-0.0085008516907692,0.12884849309921],[0.020983567461371,-0.046681273728609,0.010316243395209]],[[-0.068070217967033,0.047932606190443,-0.039984125643969],[0.033014111220837,0.026323286816478,-0.01825357042253],[0.080684438347816,0.001407467876561,0.044779844582081]],[[-0.015169975347817,0.036786675453186,0.089182510972023],[0.046876288950443,0.010098132304847,0.063162125647068],[0.0082131922245026,0.043204121291637,-0.00021796322835144]],[[-0.031990356743336,-0.060303669422865,0.01281138882041],[-0.029508244246244,-0.10228640586138,-0.012737629003823],[-0.00093226745957509,0.060352187603712,0.0014619412831962]],[[-0.019463807344437,0.0054482836276293,-0.004737317096442],[-0.039879664778709,0.024779923260212,0.075992412865162],[0.0065924590453506,0.034900356084108,-0.001903276424855]],[[0.00069174158852547,-0.00070592411793768,0.0053077219054103],[0.033427059650421,0.036226622760296,0.020654570311308],[-0.044676188379526,0.082596331834793,-0.026784690096974]],[[0.076923087239265,0.039899799972773,0.052365437150002],[0.024414200335741,0.071888580918312,-0.00079397240187973],[0.078315019607544,0.074432887136936,-0.040067635476589]],[[-0.010164435952902,0.018544169142842,-0.020794095471501],[0.0032983056735247,-0.039419788867235,-0.055320974439383],[-0.016182834282517,-0.016524326056242,0.042400136590004]],[[0.0094046015292406,-0.039409078657627,-0.026632562279701],[0.04118687659502,0.11218889802694,-0.013234473764896],[0.025094129145145,0.021262610331178,-0.017052546143532]],[[-0.05051252618432,-0.061431150883436,0.055643260478973],[0.055845953524113,0.052120421081781,-0.0032132500782609],[0.0072685047052801,0.10783184319735,-0.069491848349571]],[[-0.097498148679733,-0.057778052985668,0.0044016758911312],[0.040752977132797,0.042079448699951,0.088264420628548],[-0.012707490473986,-0.016817543655634,0.00090778688900173]],[[-0.096364416182041,0.02636287920177,0.017769120633602],[0.028171826153994,0.063955426216125,-0.02649843133986],[-0.023441381752491,-0.038957733660936,-0.039336152374744]],[[0.015113002620637,-0.049508936703205,0.01502556540072],[0.015921300277114,0.00034289556788281,-0.02536522783339],[-0.021492118015885,0.050906356424093,0.049456488341093]],[[0.083625860512257,-0.011781334877014,0.0098536815494299],[-0.011644615791738,0.11980701237917,0.028302609920502],[-0.088380955159664,0.033219289034605,-0.10057407617569]],[[0.086632803082466,0.066847681999207,-0.0030847659800202],[0.10155882686377,0.014205185696483,0.0495625436306],[0.058665707707405,-0.0011616046540439,0.026017319411039]],[[0.014026686549187,0.0038193196523935,0.045257776975632],[0.074145890772343,-0.044528305530548,0.0044372407719493],[-0.04226066544652,0.058277636766434,0.012698406353593]],[[-0.024651357904077,-0.014293221756816,-0.049971472471952],[-0.015161351300776,-0.030993724241853,-0.0038128751330078],[-0.019463874399662,0.0011588494526222,0.0098275812342763]],[[0.066483676433563,0.014137914404273,-0.023250536993146],[-0.036245699971914,0.082871086895466,0.072294965386391],[-0.029250169172883,-0.077708162367344,0.035625703632832]],[[0.012897434644401,0.018036752939224,-0.047506600618362],[-0.032296668738127,-0.04155521094799,-0.022174749523401],[-0.00016508925182279,-0.053892690688372,0.076430052518845]],[[-0.042084664106369,0.052614618092775,0.023285126313567],[0.071063548326492,0.074063658714294,0.019451474770904],[-0.048560079187155,0.038106720894575,0.035411331802607]],[[-0.020729532465339,-0.033636648207903,0.0057573108933866],[0.022870194166899,0.0023880735971034,0.017209928482771],[0.021527329459786,0.10698830336332,0.028889711946249]],[[0.016094414517283,-0.017085436731577,0.056940045207739],[0.035602048039436,0.065444655716419,-0.031207541003823],[0.023821178823709,0.070379830896854,-0.020692406222224]],[[-0.055812180042267,-0.013398411683738,0.059564240276814],[0.13636569678783,0.020481511950493,-0.075194805860519],[0.032532956451178,-0.072043254971504,0.079032614827156]],[[0.0092234667390585,0.0098192254081368,-0.02025674469769],[0.041796397417784,0.041991878300905,0.050919894129038],[-0.019207151606679,0.030352583155036,-0.0074487524107099]],[[0.026102198287845,0.027219964191318,0.052122682332993],[-0.013872654177248,-0.06626258045435,0.054173566401005],[-0.030761387199163,-0.027812035754323,0.015788856893778]],[[0.0093808127567172,0.026823900640011,-0.031320098787546],[-0.0020761298947036,0.021198960021138,-0.0029366870876402],[0.050998318940401,-0.039923392236233,-0.080075025558472]],[[0.070924296975136,0.020536433905363,-0.067194744944572],[0.049421645700932,-0.028867769986391,0.074195846915245],[0.056009333580732,-0.0068312571384013,-0.04414052888751]],[[0.056373629719019,0.11912631988525,0.013367716223001],[0.028674203902483,0.044883169233799,0.064848273992538],[0.010275361128151,0.030952269211411,-0.035365957766771]],[[-0.006916104350239,0.050576128065586,-0.01366179343313],[0.041440829634666,0.030759220942855,0.042990144342184],[-0.039970111101866,0.070653699338436,0.026758482679725]],[[-0.045322846621275,0.02069135941565,0.066344261169434],[-0.078687086701393,0.042665332555771,0.020707121118903],[0.051093365997076,0.050007332116365,-0.045944388955832]],[[0.084728673100471,0.050543051213026,-0.060781799256802],[0.061987087130547,0.057724792510271,0.0034800125285983],[0.057535871863365,0.11296870559454,-0.0060057872906327]],[[-0.06837984919548,-0.0066115497611463,-0.064163602888584],[-0.021388132125139,-0.043818145990372,-0.02202045544982],[-0.021280655637383,-0.014310299418867,-0.023922933265567]],[[-0.025916548445821,-0.044752802699804,-0.036162190139294],[0.012871860526502,0.05783111974597,-0.02479213476181],[0.097971357405186,0.074959419667721,0.091792389750481]],[[0.001296122209169,0.040217038244009,0.0036831814795732],[-0.060570452362299,-0.0062195151112974,0.0046543725766242],[0.033794436603785,-0.018725097179413,0.10008075088263]],[[-0.03982737660408,0.03511480614543,0.051589407026768],[0.038026165217161,-0.036504164338112,-0.02436182461679],[-0.010191354900599,-0.032749626785517,0.041613228619099]],[[0.079212464392185,-0.034587223082781,0.03816244378686],[-0.012893714942038,-0.025964595377445,-0.031038032844663],[-0.033618602901697,-0.047734644263983,0.063145644962788]],[[0.010706526227295,-0.012210371904075,-0.038149069994688],[-0.018699500709772,4.3485102651175e-05,0.016318295150995],[-0.083697125315666,-0.059270042926073,-0.039203703403473]],[[0.01886398345232,0.027857467532158,-0.0019111076835543],[-0.027093410491943,0.062500886619091,0.05610366538167],[0.0025617338251323,-0.003975594881922,0.014221392571926]],[[-0.048750128597021,0.087553434073925,-0.022037031129003],[-0.040184985846281,-0.056498527526855,-0.033802032470703],[0.0031633097678423,-0.045787692070007,0.064745888113976]],[[0.034721348434687,0.020930461585522,-0.0020179182756692],[-0.025012787431479,-0.059235569089651,0.15915471315384],[0.0037476096767932,0.075112149119377,0.013402229174972]],[[0.061577767133713,0.0098857618868351,0.10811726748943],[-0.015209166333079,0.063759498298168,0.048429295420647],[-0.019770067185163,-0.0071978522464633,0.085595339536667]],[[0.030864274129272,-0.0078117754310369,0.020802894607186],[0.0083806477487087,0.018320424482226,-0.0097680445760489],[0.083391346037388,0.056126844137907,0.063099391758442]],[[-0.013754587620497,0.10193019360304,0.046312924474478],[0.034452844411135,0.06680478900671,-0.021567249670625],[-0.016408078372478,0.067940346896648,0.081751123070717]],[[-0.10347225517035,-0.0035722206812352,-0.010165114887059],[-0.010807627812028,-0.054091352969408,0.044575303792953],[-0.0032938276417553,-0.051496602594852,0.026339748874307]],[[0.0073065105825663,0.10341367125511,0.020141921937466],[0.056431725621223,0.070356108248234,0.044047895818949],[0.038860034197569,0.064213454723358,0.020216489210725]],[[0.043265357613564,0.016507035121322,0.0064523825421929],[-0.059412244707346,-0.025112513452768,0.044895503669977],[-0.084120228886604,0.077181741595268,0.0055823787115514]],[[0.014520019292831,0.098091498017311,-0.076429307460785],[-0.065068081021309,-0.02748809568584,0.01822548545897],[0.041502568870783,-0.00094156560953707,0.065921798348427]],[[-0.021742969751358,-0.0086895823478699,0.082953602075577],[-0.0051996042020619,-0.065751060843468,0.004225954413414],[-0.019293235614896,0.06115360185504,-0.038454614579678]],[[0.038851447403431,0.090980365872383,-0.073065750300884],[0.05808474496007,0.012568558566272,0.026565410196781],[0.053378246724606,0.074190959334373,-0.05273536965251]],[[0.027054898440838,0.02130214497447,0.00055204011732712],[0.076992131769657,0.041437432169914,0.020693432539701],[-0.0069645410403609,-0.018728112801909,0.023443397134542]],[[0.0117092365399,0.045675329864025,0.056691534817219],[0.080748550593853,0.063954561948776,-0.033342443406582],[-0.020589485764503,0.027699086815119,0.071623630821705]],[[0.048339627683163,0.038297869265079,-0.0043027275241911],[-0.090382225811481,-0.084478601813316,-0.028873912990093],[-0.038658507168293,0.014222172088921,-0.015017113648355]],[[-0.010527051053941,0.0293950997293,-0.026680205017328],[-0.015857275575399,0.13311450183392,0.07527032494545],[0.013498700223863,-0.046614270657301,-0.013340469449759]],[[0.036837108433247,-0.013892248272896,-0.0076992586255074],[0.053543489426374,0.063956633210182,0.046823062002659],[0.015988683328032,0.0099786585196853,0.084226980805397]],[[-0.037645135074854,-0.041196592152119,0.033626426011324],[0.0037033632397652,0.0094405859708786,-0.014356604777277],[-0.001407963805832,-0.028490297496319,-0.013510005548596]],[[0.043757788836956,-0.066043183207512,0.060414478182793],[0.012170626781881,0.046994883567095,0.12604646384716],[0.032246530056,-0.083167545497417,0.048064734786749]],[[0.091291397809982,-0.059290204197168,0.01177807431668],[0.01662864163518,-0.07441096752882,0.035779446363449],[-0.080258846282959,-0.093528747558594,0.0039165006019175]],[[-0.039213195443153,-0.0099970120936632,-0.0020474335178733],[0.009566618129611,0.021084927022457,0.11511191725731],[-0.060063797980547,0.10145608335733,-0.036169581115246]],[[0.0446587651968,0.0082133179530501,0.07278710603714],[-0.0015998090384528,0.013678256422281,0.055172927677631],[-0.041130881756544,0.030612828209996,0.01208530087024]],[[-0.0078999483957887,-0.012999286875129,0.035982895642519],[-0.021633729338646,0.084189862012863,0.11200404167175],[0.059429112821817,0.041680455207825,0.03309703618288]],[[0.14657413959503,-0.01086562871933,0.019143871963024],[-0.033481292426586,0.022819697856903,-0.0034632061142474],[0.037297297269106,-0.063630111515522,-0.069583892822266]],[[-0.012872664257884,-0.042025849223137,0.072711862623692],[-0.0073662181384861,0.0718744546175,0.025118054822087],[-0.016333803534508,-0.029284127056599,0.034697405993938]],[[0.022588672116399,0.041802611202002,0.070826813578606],[0.0072254464030266,0.08097056299448,0.075450964272022],[-0.025582689791918,-0.012888013385236,0.032643757760525]],[[-0.0032105033751577,0.12517453730106,-0.052956182509661],[-0.038721486926079,0.041981518268585,-0.001430848846212],[0.063499219715595,-0.029219700023532,0.088264912366867]],[[-0.015462687239051,-0.021514466032386,-0.09444671869278],[-0.032638866454363,0.029191665351391,-0.034894771873951],[-0.021619478240609,0.018861660733819,0.053704362362623]],[[0.001199091784656,0.064647004008293,0.016611265018582],[-0.018681783229113,0.025309016928077,0.069474041461945],[0.039618197828531,-0.006896466948092,0.031491007655859]],[[-0.015663584694266,0.019982937723398,-0.020725797861814],[0.094262130558491,0.065598152577877,0.044873751699924],[0.054488908499479,0.033137533813715,0.094113171100616]],[[-0.018133098259568,-0.019603250548244,0.059085950255394],[0.028200613334775,0.026191914454103,0.077575549483299],[-0.042155981063843,-0.00027670926647261,0.028679527342319]],[[0.0095044327899814,0.019278226420283,0.019446831196547],[0.060248866677284,0.11497462540865,0.032938107848167],[0.022156974300742,-0.0031321588903666,0.040860053151846]],[[0.067718788981438,0.005886628292501,-0.0097686555236578],[0.068506434559822,-0.01655431650579,0.021569076925516],[0.045429885387421,0.037522166967392,0.067343309521675]],[[-0.008325606584549,0.062867529690266,-0.0055939708836377],[0.0068574608303607,0.043214298784733,0.017726007848978],[0.042218200862408,0.062849201261997,-0.042802669107914]],[[0.04178499430418,0.030217992141843,0.042083472013474],[-0.0068156775087118,0.014786336570978,0.068347185850143],[0.037861444056034,0.012054588645697,0.056662805378437]],[[0.11454223841429,-0.038603115826845,0.033897452056408],[-0.016933463513851,-0.040203802287579,0.042919792234898],[0.026403602212667,0.10442665964365,0.025602981448174]],[[0.031729605048895,-0.010258932597935,-0.023966366425157],[0.054297566413879,-0.0062614404596388,0.03748431801796],[0.00081547437002882,0.041950967162848,0.053324177861214]],[[0.053260881453753,-0.013036259450018,-0.026465069502592],[-0.075408019125462,0.064313009381294,-0.019637586548924],[-0.036214306950569,-0.02930636331439,0.038021009415388]],[[-0.077236674726009,0.065524727106094,-0.050599884241819],[0.054929755628109,-0.015330445021391,0.058045636862516],[0.0047473637387156,-0.010167414322495,0.089345052838326]],[[0.031492792069912,-0.0024402658455074,-0.03910780325532],[0.025413427501917,0.034784581512213,0.030162956565619],[-0.056398928165436,0.093031212687492,-0.018087476491928]],[[-0.036951366811991,-0.0097347917035222,-0.078513234853745],[-0.015371356159449,-0.022397447377443,0.016567835584283],[0.06546475738287,0.040589336305857,0.0015531306853518]],[[-0.006604291498661,0.066795937716961,0.078085921704769],[-0.00028472606209107,0.012432895600796,-0.01060644723475],[0.03548426181078,-0.023851316422224,0.011778671294451]],[[-0.010617597959936,-0.06017728894949,-0.027002932503819],[0.037393298000097,0.1130229011178,0.061967898160219],[-0.020397143438458,0.0081688761711121,0.065150953829288]],[[-0.017613910138607,0.11527488380671,-0.027925580739975],[0.022139558568597,0.023202184587717,-0.012012626975775],[0.041742105036974,0.10635115206242,0.027862591668963]],[[0.08725518733263,0.0079983696341515,-0.020988827571273],[-0.016358902677894,-0.021203650161624,0.034593593329191],[0.086036257445812,0.00071196688804775,0.039177063852549]],[[-0.0023875467013568,0.073823764920235,0.074871718883514],[0.019321931526065,0.043401122093201,0.013792023062706],[0.022122481837869,0.07819489389658,0.022922117263079]],[[-0.043467596173286,0.074693582952023,0.016419446095824],[0.041041746735573,-0.10050527006388,0.041824121028185],[-0.005995377432555,-0.076730154454708,-0.027634356170893]],[[-0.0041847857646644,0.048423487693071,-0.070596121251583],[0.058160841464996,0.01783718727529,0.0035772318951786],[0.03177623078227,-0.028650008141994,-0.10179954767227]],[[0.048427078872919,0.016828207299113,-0.0026821428909898],[0.0083116963505745,0.003524508792907,-0.058367002755404],[-0.0076545863412321,-0.029925517737865,0.045737460255623]],[[-0.04799722880125,-0.0044273710809648,-0.076962791383266],[-0.029753791168332,0.012974197976291,0.04325882717967],[0.023041320964694,-0.0034811922814697,0.017194958403707]],[[0.031280051916838,0.044390182942152,0.056806400418282],[0.04848550260067,-0.0057529513724148,-0.05728130787611],[0.029723763465881,0.0027955344412476,-0.014301476068795]],[[0.044554557651281,0.077942930161953,-0.025385806336999],[0.025363704189658,-0.038943003863096,-0.031811900436878],[0.012773473747075,0.068321466445923,-0.018696341663599]],[[-0.038528684526682,-0.040598757565022,0.040337909013033],[-0.071422733366489,0.0037737356033176,0.024373326450586],[0.044977378100157,-0.034286487847567,0.039045579731464]],[[0.033460550010204,-0.055391624569893,0.024802885949612],[0.0066093723289669,0.020078139379621,0.023835904896259],[-0.056467585265636,-0.016536487266421,-0.093449704349041]],[[-0.065456204116344,0.077618263661861,0.012376384809613],[0.054922938346863,0.0054505714215338,0.038715749979019],[-0.010776657611132,0.059860844165087,0.0099968342110515]],[[-0.031542267650366,0.057093311101198,0.00093312014359981],[0.026489218696952,-0.029236733913422,0.0093695390969515],[-0.015334444120526,-0.014505423605442,0.051344312727451]],[[-0.052735920995474,0.029311779886484,0.011107563041151],[-0.027898028492928,-0.053809713572264,0.023136980831623],[-0.0061943088658154,0.13524122536182,0.05563897639513]],[[0.037115093320608,-0.0060848570428789,0.047354850918055],[0.013665987178683,-0.078346863389015,0.020587664097548],[0.001097219530493,-0.069066621363163,0.0068352585658431]],[[-0.079620242118835,0.063635304570198,0.014908116310835],[-0.0069970064796507,0.021947022527456,-0.064981713891029],[-0.041317619383335,-0.036163907498121,0.014673305675387]],[[-0.022129015997052,0.028267454355955,0.03194122761488],[0.035143367946148,0.033447440713644,0.033960592001677],[0.080364294350147,0.11214654147625,-0.038169786334038]],[[-0.027315996587276,-0.04507839679718,-0.00229054200463],[0.076496653258801,-0.0055500348098576,0.0011483702110127],[-0.018627999350429,-0.091807894408703,-0.0049813482910395]],[[-0.0005425593117252,0.0025140698999166,0.067658565938473],[-0.11700060963631,0.062397077679634,0.020178131759167],[0.075567007064819,0.018676390871406,-0.010912667959929]],[[-0.02873845025897,0.0074556483887136,0.034589491784573],[0.037338148802519,-0.03808332234621,0.042501077055931],[0.026504896581173,0.03708178550005,0.046016398817301]],[[-0.033078622072935,0.013637034222484,0.029568366706371],[0.11356677114964,0.01086668856442,0.034591104835272],[0.095804244279861,-0.051097061485052,-0.042950801551342]],[[0.087989538908005,-0.05433564633131,0.088644616305828],[0.035423513501883,-0.046136718243361,-0.055218670517206],[0.022532353177667,0.091567970812321,0.083378374576569]],[[-0.013420267030597,-0.059623580425978,0.00034462567418814],[-0.00022459552565124,0.10620556026697,-0.01005229074508],[-0.014574916101992,0.0070106475614011,0.025004142895341]]],[[[0.015860507264733,-0.039423860609531,0.027412744238973],[0.033588249236345,0.029234128072858,-0.0027371232863516],[-0.0031314338557422,-0.0029231433290988,-0.00082366884453222]],[[-0.018892120569944,0.028643812984228,-0.06353621929884],[-0.053983345627785,-0.017124716192484,-0.057631649076939],[-0.020202839747071,-0.0011826910777017,0.052680492401123]],[[0.017376977950335,0.0080624958500266,-0.044260382652283],[0.022845007479191,0.040030773729086,-0.03690193593502],[0.057162560522556,0.034891817718744,-0.04421953856945]],[[-0.014318741858006,0.0082467803731561,-0.036497067660093],[-0.018361713737249,0.045314844697714,-0.017884524539113],[0.078831151127815,0.026625627651811,0.065590180456638]],[[0.012245030142367,-0.036718975752592,0.026083644479513],[-0.037903480231762,0.0017782355425879,-0.11764853447676],[0.0070525612682104,0.019734811037779,-0.012516946531832]],[[0.035137724131346,0.045887071639299,-0.027450732886791],[0.039155181497335,-0.028419909998775,0.069040574133396],[0.095936931669712,0.019298205152154,0.042276348918676]],[[-0.073285661637783,-0.055940184742212,-0.016127366572618],[0.05970349162817,0.014557866379619,-0.050886794924736],[-0.024150423705578,0.042842384427786,0.011839686892927]],[[-0.02748236246407,0.067092828452587,0.011228336952627],[-0.013132687658072,0.058871757239103,-0.019349049776793],[0.091886378824711,-0.031194688752294,0.026146091520786]],[[-0.044913105666637,0.013970868662,0.01308451872319],[-0.096106149256229,0.0059405178762972,-0.0081148147583008],[-0.0050342585891485,0.12293366342783,0.020842898637056]],[[-0.026132732629776,0.055080771446228,-0.02060223557055],[0.080769717693329,-0.050506751984358,-0.0031626566778868],[0.13830949366093,-0.02286839671433,-0.0030817363876849]],[[-0.014554800465703,0.042313396930695,-0.055187955498695],[0.028224987909198,-0.055959854274988,0.016961278393865],[0.096498288214207,0.011260333471,-0.0048167435452342]],[[-0.021579409018159,0.019906675443053,0.044061217457056],[0.033784825354815,0.019775876775384,0.053313955664635],[0.0089935073629022,0.022945959120989,0.035248845815659]],[[-0.03278000280261,-0.020300885662436,0.077818356454372],[0.057822767645121,-0.039516795426607,0.022037651389837],[0.002996027469635,-0.06457107514143,-0.12804460525513]],[[0.02165642939508,0.047665070742369,0.070866011083126],[-0.004923352971673,0.087269864976406,-0.0055530103854835],[0.045702591538429,-0.083269529044628,0.046055525541306]],[[0.090248338878155,0.055467486381531,-0.059064731001854],[0.016266211867332,0.16364608705044,0.00048747050459497],[-0.07943095266819,0.013921516947448,0.061040855944157]],[[-0.035839579999447,-4.5096436224412e-05,-0.071003317832947],[-0.00098320574034005,-0.048946890980005,0.0098898960277438],[0.015904175117612,-0.067080318927765,-0.0098650334402919]],[[0.034771140664816,0.00027328112628311,-0.029804583638906],[0.0056494697928429,-0.059320818632841,-0.032507322728634],[0.0051438366062939,-0.0067906538024545,0.059306036680937]],[[-0.033498615026474,0.03330997005105,-0.0062206434085965],[0.024135069921613,-0.030431309714913,0.039587307721376],[-0.070003464818001,0.019296318292618,0.010354110971093]],[[-0.05517216771841,-0.022321062162519,0.044193305075169],[0.025701740756631,-0.051814690232277,0.062461461871862],[-0.037583347409964,0.025533048436046,-0.033838085830212]],[[0.081973575055599,-0.089810654520988,-0.00023609658819623],[-0.010310086421669,0.021483037620783,-0.03180754929781],[0.05183095857501,-0.059119127690792,0.067021176218987]],[[-0.039722513407469,-0.036454848945141,0.061872243881226],[0.12561486661434,-0.011286653578281,-0.021026907488704],[-0.028665971010923,0.06301811337471,-0.035456590354443]],[[0.13708010315895,-0.012939875014126,0.052305210381746],[0.092309206724167,0.017808964475989,0.044521819800138],[0.056718729436398,-0.018262557685375,0.023404998704791]],[[-0.037682179361582,-0.006645442917943,-0.086901225149632],[-0.0090533075854182,0.026092406362295,-0.024442860856652],[-0.050239220261574,-0.0094620482996106,-0.009851329959929]],[[-0.067596554756165,0.02724950760603,-0.031674992293119],[0.012216101400554,0.063041634857655,-0.074295945465565],[0.019152447581291,-0.011686085723341,-0.036079883575439]],[[-0.020042756572366,0.0018150471150875,-0.098559662699699],[0.0067976322025061,0.013594536110759,-0.0093336021527648],[-0.022112561389804,0.012937420979142,0.0024870466440916]],[[-0.059595432132483,-0.066231802105904,0.034077677875757],[-0.012398775666952,-0.011720993556082,-0.018290186300874],[-0.016088329255581,0.014558578841388,0.0014223611215129]],[[0.029648927971721,0.020397935062647,0.050688605755568],[0.042713709175587,0.076749056577682,-0.045625109225512],[0.015433599241078,0.003502031089738,0.008613558486104]],[[0.00019642876577564,-0.0094561083242297,0.035795267671347],[-0.0053168507292867,-0.016728695482016,0.046915888786316],[-0.0097980629652739,0.041790679097176,-0.058427821844816]],[[0.045944567769766,0.021716311573982,7.5803443905897e-05],[-0.023868905380368,0.01759922504425,0.023885577917099],[-0.057850867509842,-0.084026396274567,0.072353154420853]],[[0.01667589135468,-0.020203841850162,0.027341103181243],[0.041836999356747,-0.01771661452949,-0.06033043935895],[0.04663023352623,0.055850591510534,0.0034663891419768]],[[-0.011702492833138,0.0032998956739902,-0.029038285836577],[0.0077942656353116,0.051063928753138,0.050005652010441],[0.0072448435239494,0.058018691837788,0.05669928714633]],[[-0.011747102253139,0.022004587575793,-0.038610972464085],[0.003818255616352,0.012552283704281,0.034496653825045],[0.021373232826591,-0.081440269947052,0.036950886249542]],[[-0.0067305671982467,0.002835699589923,-0.019764674827456],[0.016098156571388,-0.053819950670004,0.033809527754784],[0.0013884655199945,0.062241572886705,0.025909502059221]],[[-0.017221005633473,-0.028524296358228,0.042919881641865],[0.061071146279573,0.061877693980932,0.076437242329121],[0.00095443351892754,0.065764881670475,-0.084968641400337]],[[0.098913125693798,0.027568187564611,-0.078755222260952],[0.0064527527429163,0.038558054715395,0.0014947854215279],[-0.0040790075436234,0.010185617953539,0.035724833607674]],[[0.049919530749321,-0.020187104120851,-0.022707674652338],[-0.018892135471106,-0.025602906942368,-0.040276981890202],[0.01294678915292,-0.048072263598442,0.061814654618502]],[[-0.0084554925560951,0.025148818269372,-0.03781782835722],[0.023482887074351,0.031346570700407,-0.049682632088661],[-0.025972483679652,0.04806774482131,-0.045462168753147]],[[0.042588718235493,0.050844915211201,-0.02169768512249],[-0.010051222518086,0.098537236452103,-0.029409345239401],[0.0016365892952308,0.018372293561697,0.01682923361659]],[[-0.0174331497401,0.086903020739555,-0.022120939567685],[0.043822143226862,-0.03197256103158,0.034769657999277],[-0.02412685751915,0.099313586950302,-0.039387878030539]],[[0.1335142403841,-0.037653621286154,-0.076034225523472],[0.042311001569033,0.0081298165023327,0.017082035541534],[0.066847443580627,0.104815736413,0.030721245333552]],[[0.018028235062957,0.014335911720991,-0.0038947002030909],[-0.07281332463026,0.0091711478307843,-0.04077360033989],[-0.032337967306376,0.0061766891740263,-0.018057925626636]],[[0.035671252757311,-0.031773649156094,-0.036708701401949],[-0.031888537108898,-0.035016436129808,-0.014771428890526],[0.073193028569221,-0.0038142495322973,-0.027913101017475]],[[-0.088621489703655,0.087318815290928,0.0016764220781624],[0.02237019687891,0.065251342952251,0.026220418512821],[0.0089717209339142,0.068442396819592,0.020463993772864]],[[0.024925302714109,-0.011616026982665,-0.001225926913321],[0.06184845417738,-0.012656115926802,-0.059690296649933],[0.037658471614122,-0.064724460244179,0.079208701848984]],[[0.065452016890049,0.063935048878193,-0.0058273230679333],[-0.014118870720267,0.0084992758929729,0.014913222752512],[-0.068954952061176,-0.027407944202423,-0.036085933446884]],[[-0.044168889522552,-0.056787583976984,0.10835219919682],[0.039014734327793,0.019410887733102,0.065966852009296],[-0.011777555570006,0.035384215414524,-0.01365212816745]],[[0.036583501845598,0.023094814270735,0.042515963315964],[0.037618327885866,-0.026921985670924,0.014451476745307],[0.034465543925762,0.078771077096462,0.040220085531473]],[[0.035286106169224,0.078505732119083,-0.042987626045942],[0.020505918189883,0.001774167874828,0.062672920525074],[0.072270065546036,0.01578463986516,0.0087405750527978]],[[0.017139546573162,0.022343778982759,0.0091120703145862],[0.062098059803247,-0.01661741361022,0.054242096841335],[0.021736517548561,-0.094043716788292,-0.051558557897806]],[[-0.060060672461987,-0.040366820991039,-0.011832240968943],[-0.0056997165083885,0.029846722260118,-0.022340958938003],[0.078486949205399,0.0048683630302548,-0.0048124506138265]],[[-0.0039386819116771,0.00010716042743297,-0.059895385056734],[-0.034085281193256,0.017674567177892,0.0062391711398959],[-0.011619563214481,-0.018906122073531,0.023541159927845]],[[0.013728593476117,0.00917789619416,0.0038213143125176],[0.073494762182236,-0.029779391363263,-0.022042904049158],[0.084838218986988,-0.027434922754765,-0.067958705127239]],[[0.013040122576058,0.10030364245176,0.021909989416599],[0.052984036505222,-0.020036285743117,0.028876030817628],[0.013166573829949,0.064603075385094,0.01199870929122]],[[-0.0092994142323732,-0.020461725071073,0.032878767699003],[0.032907370477915,0.0028579037170857,-0.0010493856389076],[-0.010071540251374,0.0068245031870902,0.044051665812731]],[[0.009605685248971,0.018458245322108,-0.03646769374609],[0.00061699165962636,-0.0045098778791726,-0.022724831476808],[0.010567197576165,0.031866211444139,0.031884860247374]],[[-0.01954722777009,0.006642029620707,0.037322532385588],[0.02211063914001,0.03156628459692,-0.0026771898847073],[0.02222497574985,0.12463065981865,0.015713086351752]],[[0.012539966031909,-0.026795938611031,-0.028831209987402],[0.003955957479775,0.058695830404758,-0.016496608033776],[0.022513153031468,-0.025696629658341,0.049886908382177]],[[-0.060785789042711,-0.051084861159325,0.047608483582735],[0.020560117438436,0.10930794477463,-0.010899823158979],[0.037571802735329,0.015942102298141,-0.019436722621322]],[[-0.022864298895001,0.0099409809336066,0.011317975819111],[0.0010871477425098,0.035238422453403,-0.045038901269436],[0.054442334920168,-0.02531698718667,0.075403720140457]],[[-0.0072870221920311,0.06671354919672,0.012454124167562],[0.043642956763506,0.0092777712270617,-0.0065828752703965],[0.035345699638128,0.019253741949797,-0.055014558136463]],[[0.0079316198825836,0.037428416311741,0.062767043709755],[-0.03224166482687,0.046614374965429,-0.0085074314847589],[-0.088062942028046,-0.019934700801969,0.045335162431002]],[[-0.027908090502024,-0.015813397243619,0.037021216005087],[0.028494294732809,-0.021865725517273,-0.070211179554462],[-0.00061304034898058,-0.0052731079049408,0.030945902690291]],[[-0.051537498831749,0.04749870672822,-0.0031525432132185],[0.016785874962807,-0.014929505065084,0.032697077840567],[0.029248462989926,0.042008187621832,0.08918471634388]],[[0.062181740999222,0.012395023368299,0.017152948305011],[0.023486841470003,0.028086952865124,-0.087252929806709],[0.008753864094615,0.018345629796386,-0.011788916774094]],[[-0.045283760875463,0.019322907552123,0.0055294809862971],[0.067195080220699,-0.015002024360001,0.053917687386274],[-0.044819358736277,-0.034936420619488,-0.043688133358955]],[[0.026097921654582,0.045086685568094,-0.0064237485639751],[-0.046108402311802,0.062097385525703,0.068519234657288],[-0.056436844170094,0.01403630245477,-0.011261699721217]],[[0.0881133005023,0.0047688982449472,0.10081523656845],[-0.002234571846202,-0.0340406447649,0.011219109408557],[0.037370342761278,0.014228009618819,0.08366372436285]],[[0.029105443507433,0.081127546727657,0.018275005742908],[0.03688208386302,0.021102989092469,0.048136133700609],[0.031470164656639,0.022082205861807,0.0038353283889592]],[[0.010714676231146,-0.029159067198634,-0.0066856266930699],[0.013501877896488,-0.0070370761677623,0.028111021965742],[0.025224247947335,-0.020278204232454,-0.01093521527946]],[[-0.022562617436051,0.025838378816843,0.048966821283102],[0.011691727675498,-0.047603454440832,0.020039610564709],[0.042150005698204,-0.019458496943116,0.094791412353516]],[[-0.04241094738245,0.032897468656301,0.035477098077536],[-0.0056596454232931,0.068471223115921,-0.026873854920268],[-0.017031194642186,0.011133381165564,0.0034192763268948]],[[0.029567779973149,-0.029641874134541,-0.019092708826065],[0.040080368518829,-0.0110027147457,0.024256374686956],[0.041400965303183,-0.002879994455725,0.054002445191145]],[[0.022073835134506,-0.034280221909285,-0.028444210067391],[0.003412971040234,0.033769395202398,0.061527028679848],[0.049960907548666,-0.085605822503567,0.06061901897192]],[[0.049183733761311,0.057043056935072,-0.057797729969025],[0.076712787151337,0.098471164703369,0.00024730220320635],[-0.020316982641816,0.00051356246694922,-0.0030307888519019]],[[-0.10430929064751,0.061497215181589,-0.023139074444771],[0.029681311920285,0.048573270440102,-0.082138635218143],[-0.052741065621376,0.028686655685306,0.00052037567365915]],[[0.00032117392402142,0.0097821764647961,-0.062733799219131],[-0.0059339739382267,0.054402105510235,-0.024353602901101],[-0.01153118815273,0.048143595457077,-0.014824251644313]],[[-0.012505256570876,-0.071290656924248,0.031772777438164],[-0.037571363151073,0.043738290667534,0.040836330503225],[-0.032873056828976,-0.046583879739046,-0.035442966967821]],[[-0.03132776543498,0.0082547701895237,-0.031205769628286],[0.032148882746696,-0.0032656420953572,0.048945531249046],[0.019845142960548,0.04643976315856,-0.0022348817437887]],[[-0.036036092787981,0.053301431238651,0.052425723522902],[0.026807120069861,0.0059930416755378,-0.019992403686047],[0.016459662467241,0.040915478020906,-0.0027855930384248]],[[-0.084238193929195,-0.035458672791719,-0.026451744139194],[0.042536295950413,0.036366380751133,0.0013955306494609],[-0.027238631621003,0.053284786641598,-0.059927232563496]],[[-0.0062752333469689,0.044844560325146,-0.0074362186715007],[0.044649820774794,0.015473387204111,0.014165258035064],[-0.059885919094086,0.0094046257436275,0.0085347006097436]],[[0.017167521640658,0.044173542410135,-0.016493275761604],[-0.0029768815729767,-0.0019339992431924,0.030604643747211],[-0.020071793347597,-0.044519927352667,0.041872631758451]],[[0.020136293023825,-0.055619176477194,0.020477069541812],[0.064551308751106,0.052242387086153,0.0067145344801247],[-0.043119620531797,0.057236559689045,0.062439206987619]],[[-0.051569901406765,0.03104261495173,-0.007927967235446],[0.0071155121549964,0.055940419435501,0.0216068867594],[0.038295298814774,0.041234090924263,0.031320132315159]],[[0.046138104051352,-0.012301134876907,0.083457343280315],[0.021832119673491,0.0054990872740746,-0.0035566822625697],[0.1164208650589,-0.064633935689926,-0.01354802865535]],[[0.038692086935043,-0.050187334418297,0.056241527199745],[0.038000602275133,-0.014480118639767,0.011940471827984],[-0.021176386624575,0.011857817880809,0.037253249436617]],[[-0.030865980312228,-0.023932907730341,0.014448581263423],[0.0067900982685387,-0.040671236813068,0.00023436824267264],[0.052591614425182,-0.049821894615889,0.0050766030326486]],[[0.046809539198875,-0.030326975509524,0.035101238638163],[-0.0018711901502684,-0.0051837139762938,0.058933559805155],[0.1286558508873,0.092470534145832,0.065023124217987]],[[0.085657618939877,0.034973099827766,0.097606763243675],[-0.0043180692009628,0.045679800212383,0.016652256250381],[0.018949331715703,-0.086579173803329,0.081869401037693]],[[-0.0027706264518201,0.040416933596134,-0.089692071080208],[0.082459427416325,-0.034414812922478,0.059057421982288],[-0.023534594103694,-0.01224237959832,0.011011753231287]],[[0.1096657961607,-0.011440224014223,0.035446189343929],[-0.067751131951809,0.010910489596426,-0.048520926386118],[-0.032013647258282,0.015553373843431,0.17122839391232]],[[0.01303406059742,0.044436521828175,0.028321227058768],[-0.0062459115870297,-0.034546848386526,0.073793575167656],[0.066126130521297,-0.0094514125958085,0.017436949536204]],[[-0.052442219108343,-0.0089691691100597,-0.005902249366045],[0.022159762680531,0.084718838334084,0.031298898160458],[-0.039700318127871,-0.010046915151179,-0.023954560980201]],[[0.044766221195459,0.047718103975058,-0.00053603306878358],[0.011440469883382,0.02585818618536,0.016856579110026],[0.016295729205012,0.027867970988154,0.031947340816259]],[[-0.033442407846451,0.019178923219442,0.0031359891872853],[0.035735458135605,0.018681436777115,-0.030654830858111],[0.065976195037365,0.024230061098933,0.045710064470768]],[[-0.0075011695735157,-0.068674400448799,0.0042908741161227],[0.0077339648269117,0.020038058981299,-0.099639423191547],[0.034683745354414,0.035448882728815,-0.0537627376616]],[[0.021719697862864,0.013718781992793,0.061056654900312],[-0.0027145645581186,0.037380497902632,-0.0021419050171971],[-0.011134549975395,0.044318679720163,-0.0025183737743646]],[[0.017503097653389,0.043984066694975,-0.018377697095275],[-0.031762924045324,0.070021316409111,-0.0035813075955957],[0.029267355799675,-0.058710284531116,0.0039436472579837]],[[-0.018744874745607,-0.00036305529647507,0.0023076164070517],[-0.0066905682906508,-0.0056101088412106,-0.0060530672781169],[-0.038071472197771,0.010031532496214,-0.013529634103179]],[[0.057974521070719,-0.050985250622034,-0.007069674320519],[0.060539428144693,-0.10022432357073,0.058578033000231],[-0.033769261091948,0.0015740509843454,0.087930500507355]],[[0.090622663497925,0.044819112867117,-0.035811044275761],[0.013112630695105,6.7292152380105e-05,0.014416318386793],[0.08485358953476,0.022006491199136,0.020411260426044]],[[0.00026857980992645,-0.055060800164938,-0.068830400705338],[0.046218503266573,0.047126121819019,-0.039060711860657],[0.072650745511055,-0.006835441570729,0.042014807462692]],[[0.026662968099117,-0.041035834699869,0.050669841468334],[-0.031160498037934,0.032390844076872,-0.021165629848838],[0.031350295990705,0.037764213979244,-0.030840134248137]],[[0.01720124669373,-0.033176314085722,0.021462209522724],[0.026201317086816,0.056052539497614,-0.030094167217612],[0.017967300489545,-0.0080244429409504,-0.04421941190958]],[[0.048556871712208,0.073634415864944,0.03469805046916],[-0.04599516838789,0.028627686202526,-0.029413940384984],[0.078848779201508,0.0015999296447262,0.039284586906433]],[[-0.04482401534915,-0.016588946804404,-0.010465195402503],[0.046914331614971,0.056849654763937,-0.028608988970518],[0.055349104106426,-0.049504514783621,-0.022013004869223]],[[-0.04204310849309,-0.0036631510592997,-0.040624782443047],[0.0044700806029141,0.060855686664581,-0.0025584870018065],[0.0059076366014779,0.0030895252712071,0.0063394661992788]],[[0.00025541815557517,0.022526169195771,-0.020642364397645],[-0.10921666026115,0.074134044349194,0.012736623175442],[-0.052442513406277,-0.022143123671412,0.033463265746832]],[[-0.010802674107254,0.044231329113245,0.065105721354485],[0.0036132759414613,-0.030984062701464,-0.026197096332908],[0.017935484647751,0.010610181838274,0.048950169235468]],[[-0.012894075363874,0.037063263356686,-0.038888812065125],[0.079749338328838,-0.058157969266176,-0.0024769695010036],[0.012248259969056,0.041708759963512,-0.0098890783265233]],[[-0.064475670456886,-0.024307308718562,0.008753027766943],[-0.088917225599289,0.051597163081169,0.051709089428186],[0.061055265367031,-0.044136695563793,-0.028987467288971]],[[-0.0063787493854761,0.021815301850438,0.061061754822731],[-0.034593597054482,-0.064042463898659,-0.001845390885137],[0.019411932677031,-0.027073817327619,-0.12883928418159]],[[0.058432430028915,0.057139161974192,-0.019087050110102],[-0.018291410058737,0.10646986961365,0.019494818523526],[0.0034804525785148,-0.032803289592266,0.039736524224281]],[[-0.0084338160231709,-0.091974228620529,0.044605262577534],[0.045181673020124,0.040534727275372,-0.070663541555405],[-0.035180509090424,0.016170222312212,-0.0026154508814216]],[[-0.050498481839895,-0.029736490920186,0.048807550221682],[-0.0012029986828566,-0.0073328972794116,0.041462000459433],[0.0075856251642108,0.021838821470737,0.017130589112639]],[[0.027198283001781,-0.0068433727137744,-0.031892854720354],[-0.034083932638168,0.0031420458108187,0.0033044756855816],[0.024046439677477,0.064227968454361,-0.032911002635956]],[[-0.012044753879309,0.092449083924294,-0.032207671552896],[0.05441178381443,-0.034670989960432,0.054720807820559],[0.025384698063135,0.013141606934369,0.02905747294426]],[[-0.027995111420751,0.057316653430462,0.0057513518258929],[0.032381318509579,0.028566913679242,0.0022620146628469],[0.003944500349462,0.024097755551338,0.0061165606603026]],[[0.01021155808121,0.0039178701117635,0.040614243596792],[0.038602408021688,0.052758041769266,0.035611867904663],[0.0026647290214896,0.033773589879274,-0.069493070244789]],[[-0.016039308160543,-0.078411348164082,-0.012408721260726],[3.7993231671862e-06,-0.046425256878138,-0.034583296626806],[0.024234475567937,-0.069843821227551,-0.0023626836482435]],[[-0.023117670789361,-0.0098773064091802,0.0050156260840595],[-0.035947039723396,-0.018118254840374,0.069383785128593],[0.025123251602054,0.072433568537235,-0.035317048430443]],[[0.016494192183018,0.019799817353487,0.059822119772434],[0.030441971495748,0.10146207362413,-0.031966902315617],[0.0041198581457138,-0.0025985897518694,0.0010585527634248]],[[-0.017158694565296,0.015524571761489,-0.030964454635978],[-0.013811512850225,0.052290592342615,0.094963163137436],[-0.069462478160858,0.036352656781673,0.019291169941425]],[[-0.038405902683735,-0.0095764808356762,-0.0045677027665079],[-0.0033613459672779,0.0086743701249361,0.027498878538609],[0.064147263765335,-0.067923851311207,-0.05520960688591]],[[-0.02642273157835,0.040723312646151,0.072387360036373],[0.028656356036663,0.011863447725773,0.040397088974714],[0.015255477279425,0.031965188682079,-0.016503304243088]],[[0.053542926907539,-0.071969337761402,-0.080750845372677],[0.030195545405149,-0.041921112686396,-0.0052974494174123],[-0.049820430576801,0.083629690110683,0.0089484099298716]],[[0.057488236576319,-0.017856189981103,0.051447033882141],[-0.0029381501954049,0.016549890860915,0.11345044523478],[0.084975466132164,0.0080831991508603,0.017829837277532]],[[0.033010367304087,0.046635221689939,-0.041545122861862],[0.088435150682926,-0.044329836964607,-0.033926580101252],[-0.041402447968721,0.074438333511353,-0.023640299215913]]],[[[0.05446120351553,0.017431506887078,-0.020808974280953],[-0.070833005011082,0.041494309902191,0.093900755047798],[0.061510130763054,0.056728266179562,-0.002362770261243]],[[0.038075190037489,-0.0048575177788734,0.018663488328457],[-0.063861891627312,0.0024514477699995,-0.00045377772767097],[-0.042650207877159,-0.0012617052998394,-0.055169060826302]],[[0.038472183048725,0.044880744069815,0.084883570671082],[0.0042750653810799,-0.016838828101754,0.070366725325584],[0.040709026157856,0.0027955314144492,-0.055313728749752]],[[0.0051371240988374,0.03937977924943,0.077879324555397],[0.012104885652661,0.064506240189075,0.12953533232212],[0.007358506321907,-0.0015446888282895,-0.019592666998506]],[[-0.012647510506213,-0.0046400325372815,-0.032027665525675],[0.010307406075299,0.014959899708629,0.018602916970849],[0.006505882833153,0.061338160187006,0.0070756222121418]],[[0.08557365834713,0.081039845943451,0.070738717913628],[0.11492288857698,0.026265202090144,0.073634810745716],[0.02572931163013,0.015875242650509,0.048983041197062]],[[0.063614569604397,0.030056666582823,0.058620765805244],[-0.063705146312714,-0.03432659059763,-0.026460032910109],[0.046720966696739,0.018857570365071,-0.012039275839925]],[[0.062372863292694,0.011845330707729,0.037693280726671],[0.011835535056889,-0.026211710646749,0.059284817427397],[0.0024155506398529,0.02404504828155,-0.002661423292011]],[[0.0073776273056865,-0.029295632615685,-0.010019634850323],[0.075692355632782,-0.003609916428104,0.043744519352913],[-0.041695918887854,0.00038450630381703,0.062218397855759]],[[0.085700266063213,0.030093856155872,0.06716950237751],[0.033104874193668,0.19283767044544,0.062116734683514],[-0.053709600120783,0.11644736677408,0.093162283301353]],[[0.025295959785581,0.0031657791696489,-0.021292790770531],[-0.0024160509929061,0.053229704499245,0.054010301828384],[0.014584682881832,-0.096447460353374,-0.05075291544199]],[[-0.020090166479349,0.034722734242678,-0.014794484712183],[-0.031346287578344,0.042067237198353,0.060084119439125],[-0.027312425896525,0.040168799459934,-0.026070639491081]],[[0.025210417807102,0.067332953214645,-0.024614771828055],[-0.012652487494051,-0.021407591179013,0.027213292196393],[-0.088473476469517,-0.021259421482682,0.043571457266808]],[[0.0081093553453684,0.058138359338045,0.020250732079148],[0.007072533480823,0.0096446722745895,-0.091106899082661],[-0.006687733810395,-0.0027253467123955,-0.01345743611455]],[[-0.019751060754061,0.15857814252377,0.078840747475624],[0.026877980679274,-0.050825677812099,0.043271407485008],[0.18146039545536,0.068721927702427,-0.081368483603001]],[[0.0056834304705262,0.015775725245476,-0.0025298085529357],[-0.0059668566100299,-0.10370619595051,0.04297437146306],[-0.012414476834238,-0.07153706997633,-0.035783011466265]],[[0.089181274175644,-0.0025061236228794,0.026157628744841],[0.0081910947337747,0.057673864066601,-0.011222334578633],[-0.026203399524093,0.069120183587074,0.052944973111153]],[[0.02338975854218,-0.065941594541073,0.084763318300247],[0.075935482978821,0.062086805701256,0.056974142789841],[-0.1069164276123,0.028404975309968,-0.014806999824941]],[[0.063105367124081,0.036396078765392,-0.0087952818721533],[0.093015819787979,0.034178666770458,-0.0061403964646161],[0.02494790777564,-0.025208661332726,0.06717012822628]],[[-0.012003368698061,0.040226723998785,0.028851056471467],[-0.052343972027302,-0.0044348444789648,-0.075542293488979],[0.033376324921846,0.10096449404955,0.021753203123808]],[[-0.082416400313377,0.026874791830778,0.039534740149975],[-0.021197743713856,-0.015127708204091,-0.030865928158164],[0.0066716521978378,0.0029927841387689,0.10222383588552]],[[0.025459583848715,0.0034047577064484,0.052444763481617],[0.090979643166065,0.062419861555099,0.037976551800966],[-0.0047183488495648,0.11303487420082,0.021874791011214]],[[-0.017037764191628,0.029528273269534,0.022156208753586],[0.097594767808914,-0.092902317643166,-0.0058916457928717],[0.033949136734009,-0.013439652509987,0.11546161770821]],[[0.024892836809158,-0.0053599211387336,0.054637674242258],[-0.041574627161026,0.027578772976995,0.041204269975424],[-0.036549732089043,0.071725957095623,0.068258613348007]],[[0.016525780782104,-0.06575920432806,-0.049618251621723],[-0.024389328435063,0.025411972776055,-0.020906122401357],[-0.01611259020865,-0.025121044367552,-0.040876053273678]],[[-0.031272113323212,-0.064375653862953,-0.037008013576269],[-0.017235044389963,0.017786281183362,-0.036054544150829],[0.085109524428844,-0.014673450961709,-0.0053303213790059]],[[-0.013430465012789,-0.04695937782526,-0.014123814180493],[0.056322984397411,0.021510541439056,-0.0066357920877635],[0.049683500081301,-0.017269207164645,-0.057045560330153]],[[0.045506563037634,0.075548931956291,-0.073018662631512],[0.013322989456356,0.084968447685242,0.033877193927765],[-0.029665360227227,0.06975531578064,-0.091343685984612]],[[-0.016534021124244,0.017882646992803,-0.0046945791691542],[0.020429767668247,0.047460619360209,0.12316483259201],[-0.0004659078840632,-0.031169563531876,-0.037093739956617]],[[-0.01426563039422,0.036673184484243,-0.055699296295643],[0.017471242696047,0.0073003908619285,0.086498290300369],[-0.025228768587112,-0.024079859256744,-0.084285564720631]],[[0.020749930292368,0.085975296795368,0.16793304681778],[0.01728905364871,-0.0028357463888824,0.030555211007595],[-0.02443534322083,0.091616488993168,0.047811090946198]],[[-0.042659059166908,-0.041376397013664,0.069783709943295],[-0.015814846381545,0.050805762410164,-0.11139080673456],[0.039628721773624,0.0020593714434654,-0.022229962050915]],[[0.10615699738264,0.085079848766327,0.11202307790518],[0.084490239620209,0.0963464230299,0.089010201394558],[0.00056368741206825,0.13184423744678,-0.10894278436899]],[[0.048705734312534,0.019778788089752,0.059655960649252],[0.0020441601518542,0.023008415475488,0.0045950557105243],[0.10796678811312,0.031013380736113,0.0072493553161621]],[[-0.054770398885012,0.11476212739944,0.061245996505022],[0.016452230513096,-0.050118062645197,0.019026113674045],[-0.00885353051126,0.016841728240252,-0.12662601470947]],[[0.040427897125483,0.040250554680824,0.065649509429932],[-0.013856863602996,-0.010682457126677,-0.013318504206836],[0.051398929208517,0.036298379302025,-0.013835403136909]],[[0.072921209037304,-0.021731149405241,-0.056828584522009],[-0.06423332542181,0.078553177416325,-0.021681549027562],[-0.10684686154127,-0.014966965653002,-0.046151887625456]],[[0.011100450530648,0.015607154928148,-0.0037714496720582],[0.085233151912689,-0.037351701408625,0.10000295937061],[-0.0200589094311,0.022754419595003,-0.0024978066794574]],[[0.059623416513205,-0.048106148838997,-0.0059033115394413],[0.13982531428337,0.0087697543203831,-0.016827832907438],[0.027275012806058,-0.009650113992393,-0.038676310330629]],[[-0.076135143637657,-0.020888760685921,0.040047239512205],[-0.043163429945707,0.077035151422024,0.099380597472191],[-0.070075020194054,-0.011363785713911,0.050775408744812]],[[-0.026953414082527,0.01579281128943,0.0070231826975942],[0.0019532619044185,-0.026825921609998,0.02010990306735],[-0.0011943409917876,0.068159572780132,-0.024623729288578]],[[-0.068091593682766,0.00049148919060826,0.024387268349528],[-0.028432453051209,-0.0038482525851578,-0.035162545740604],[0.049370188266039,-0.0020298906601965,-0.028819547966123]],[[0.052097521722317,0.087737634778023,0.066313907504082],[0.023252736777067,0.034781482070684,-0.0074460813775659],[0.046388130635023,0.066132314503193,0.094045780599117]],[[0.13749913871288,-0.039138324558735,0.017903763800859],[0.018852345645428,0.1130473613739,0.09949554502964],[0.012565670534968,0.038194801658392,0.030190074816346]],[[-0.025853887200356,0.032710541039705,0.015100504271686],[0.016155872493982,0.078897103667259,0.027908092364669],[0.025383085012436,0.0096914684399962,0.10742868483067]],[[-0.057476829737425,0.055216174572706,0.034363649785519],[0.09762204438448,0.010830998420715,-0.0015005370369181],[0.096693612635136,0.058278542011976,0.061294410377741]],[[-0.074687875807285,0.01956856995821,0.061946451663971],[0.029199814423919,0.024737035855651,-0.078022301197052],[0.011369535699487,-0.047313403338194,0.017655421048403]],[[0.13783675432205,-0.041616134345531,0.042909156531096],[0.095312386751175,0.026632321998477,0.064598232507706],[-0.063923701643944,0.02372402139008,0.0057406234554946]],[[-0.084316924214363,-0.028360806405544,-0.0050859181210399],[0.056061439216137,0.063567563891411,0.053619377315044],[0.022005338221788,0.034327726811171,0.0017425050027668]],[[0.0046831276267767,-0.010045227594674,-0.0050275507383049],[-0.070987842977047,0.015400785021484,0.059093896299601],[-0.02988619543612,-0.050869505852461,-0.13535250723362]],[[0.063474424183369,0.046585608273745,-0.04060310870409],[-0.028280975297093,0.06001303344965,0.086144685745239],[0.052220292389393,0.026116522029042,0.0261465087533]],[[0.0080166617408395,0.0085353869944811,0.08453668653965],[0.017528403550386,0.023795790970325,0.045103091746569],[-0.05242357775569,0.099860124289989,0.09165608137846]],[[0.0020026843994856,0.031010208651423,-0.044705618172884],[0.012115813791752,-0.022149501368403,-0.026253765448928],[0.02541783452034,-0.099136054515839,-0.08704024553299]],[[0.028756162151694,-0.016653798520565,-0.043345112353563],[0.024318484589458,0.065569452941418,0.037393022328615],[0.0058341068215668,0.038023598492146,-0.0069684907793999]],[[0.015878766775131,-0.038272030651569,0.027890846133232],[0.073927223682404,-0.014205884188414,0.054412253201008],[-0.030647812411189,-0.027864884585142,0.021417850628495]],[[0.0208425745368,0.084840402007103,0.010713628493249],[-0.04516338929534,0.030249305069447,0.039271518588066],[-0.019667446613312,0.039898931980133,-0.018444988876581]],[[0.013716227374971,0.0045272577553988,-0.0094858314841986],[-0.026901233941317,0.078797645866871,-0.043978467583656],[-0.023932341486216,-0.0187334921211,-0.015155266970396]],[[0.025013260543346,0.013255591504276,0.04300619289279],[-0.050726097077131,-0.097993396222591,-0.016735810786486],[0.019809590652585,0.011232673190534,0.052158776670694]],[[0.0098430942744017,0.16150751709938,0.11055153608322],[0.079902082681656,0.0056625911965966,0.06573311239481],[0.056654080748558,0.036829635500908,0.014839687384665]],[[0.0025350770447403,0.049321923404932,-0.044111806899309],[-0.040131997317076,0.052842315286398,0.01196981780231],[-0.045372221618891,-0.056134317070246,-0.018779687583447]],[[-0.017142117023468,-0.052716672420502,0.058844484388828],[-0.016459491103888,0.10734599083662,0.079038128256798],[-0.011664788238704,0.043808035552502,-0.018196482211351]],[[0.0035770495887846,-0.079478301107883,-0.024321241304278],[-0.048648755997419,0.0235605686903,0.0184012260288],[-0.024610944092274,-0.08532240986824,-0.018322790041566]],[[0.031523417681456,-0.016294004395604,0.041126303374767],[0.023723486810923,0.016455134376884,-0.078993298113346],[-0.031769640743732,-0.018862323835492,-0.03212470933795]],[[-0.018767509609461,0.035642873495817,0.01113850902766],[-0.0025251302868128,-0.0098058246076107,0.083240874111652],[0.058727588504553,-0.051761996001005,0.018252328038216]],[[-0.017587477341294,-0.0093162311241031,0.027377216145396],[-0.049091812223196,-0.0058842222206295,0.091579154133797],[0.025982988998294,-0.011945053935051,-0.055082179605961]],[[-0.0019015221623704,-0.015628991648555,0.080126605927944],[0.062035575509071,0.048305355012417,-0.051031682640314],[-0.050641469657421,0.094183959066868,0.041461326181889]],[[0.087624698877335,-0.0044828155077994,0.087632834911346],[0.096865229308605,0.024827117100358,-0.0052972720004618],[0.13766498863697,0.038082100450993,0.039455819875002]],[[0.030259098857641,0.066970020532608,0.047177866101265],[0.011981415562332,-0.041965555399656,0.03288683667779],[-0.057811137288809,-0.047197557985783,0.059970527887344]],[[0.030562633648515,-0.029948441311717,-0.022790189832449],[0.049093421548605,-0.063716419041157,0.062052190303802],[0.088613666594028,0.06343337148428,-0.0059347869828343]],[[-0.020764660090208,0.05291922390461,-0.034142550081015],[0.047585554420948,0.088227853178978,0.11511137336493],[0.011323429644108,0.013905346393585,-0.023136828094721]],[[0.051821313798428,0.029059315100312,-0.052311334758997],[0.09941328316927,0.026326581835747,-0.02869501709938],[0.059440992772579,0.051868628710508,0.022752407938242]],[[-0.0015295865014195,0.036205772310495,0.1071700155735],[0.012742058373988,0.074821144342422,0.15628279745579],[0.031359296292067,-0.014054199680686,-0.013751784339547]],[[-0.037507269531488,0.0034696885850281,0.11247742176056],[0.06602368503809,0.042461331933737,-0.02047579549253],[0.012291514314711,0.069480367004871,-0.035009101033211]],[[-0.029386082664132,0.067836441099644,0.11150205880404],[0.0010820415336639,-0.00084630079800263,0.033506795763969],[0.064251273870468,0.027901874855161,0.020533507689834]],[[0.0055630798451602,-0.032628990709782,-0.094542928040028],[-0.0050779888406396,-0.030354980379343,-0.012600563466549],[-0.025647005066276,0.033057197928429,-0.092847213149071]],[[0.1269873380661,-0.038282494992018,0.0065189744345844],[0.080810040235519,0.034727104008198,0.022018766030669],[0.044621147215366,0.048383466899395,0.0087879011407495]],[[0.044526427984238,0.045987118035555,-0.072997123003006],[0.03715193644166,0.0089495470747352,-0.026342839002609],[0.021093502640724,0.013392300345004,0.0089126583188772]],[[-0.040247358381748,0.014271270483732,-0.049916114658117],[0.04527385532856,0.06622501462698,-0.018628822639585],[0.1909806728363,-0.032930061221123,0.035502701997757]],[[0.028275137767196,-0.0011032684706151,0.078484892845154],[-0.046684984117746,0.049758683890104,0.091096751391888],[-0.020099468529224,0.032845795154572,-0.019595745950937]],[[-0.011952348984778,-0.046523585915565,0.037328749895096],[0.0088524036109447,0.0051982128061354,-0.027047863230109],[0.05012034252286,0.015273680910468,-0.03479951992631]],[[0.034604553133249,0.016367321833968,-0.02972955442965],[0.11797628551722,0.087267152965069,0.013168927282095],[0.079686567187309,0.069837786257267,-0.045693013817072]],[[-0.024941902607679,-0.014144789427519,0.01425881870091],[-0.04600815474987,0.015861440449953,-0.033870801329613],[0.074602074921131,0.0038316822610795,-0.045106910169125]],[[-0.048410668969154,0.030326331034303,0.010155762545764],[0.032733984291553,0.025369517505169,0.0090165510773659],[0.022745952010155,-0.034366775304079,0.0020815567113459]],[[0.032689247280359,0.089988254010677,0.072910338640213],[0.041011113673449,-0.017177108675241,0.051043517887592],[-0.12890502810478,-0.066333040595055,-0.0046727149747312]],[[-0.064883723855019,0.016230111941695,0.01927275210619],[0.0074501694180071,0.021529573947191,0.0035927947610617],[0.031186329200864,0.062363352626562,0.0062172999605536]],[[0.097139470279217,0.014010383747518,-0.033040288835764],[-0.087294593453407,0.047888021916151,0.039998639374971],[0.021800722926855,0.0097164725884795,0.03650688752532]],[[-0.045585494488478,-0.017862789332867,-0.045920953154564],[0.046113181859255,-0.029148636385798,-0.076290838420391],[0.030456490814686,-0.008568437770009,-0.064576037228107]],[[-0.034949228167534,0.021247278898954,0.082661978900433],[0.031804524362087,0.026238158345222,0.015690423548222],[-0.01052295230329,-0.012665372341871,0.039600543677807]],[[0.12013678252697,-0.015695219859481,-0.0788369551301],[0.032762326300144,0.064610339701176,0.054652743041515],[0.023032722994685,0.023093646392226,-0.094543561339378]],[[-0.0011812340235338,0.0020276270806789,-0.054806049913168],[-0.013699673116207,-0.020046023651958,0.023681692779064],[-0.031435705721378,-0.0024902555160224,-0.026606624945998]],[[-0.03965326026082,0.042390916496515,0.061433531343937],[-0.028537882491946,-0.023613544180989,0.038865849375725],[-0.034944046288729,-0.037310417741537,-0.016318306326866]],[[-0.030607951804996,-0.069904930889606,-0.037552956491709],[0.0074709756299853,-0.052655689418316,0.052260383963585],[0.027251673862338,0.024746412411332,0.080741673707962]],[[-0.01666315458715,-0.019327335059643,-0.022896964102983],[-0.057172570377588,0.062809303402901,0.042567893862724],[-0.064700111746788,-0.01465832721442,-0.0035942336544394]],[[0.027904130518436,-0.059923846274614,0.053303115069866],[0.065678000450134,0.014581982046366,-0.037509307265282],[0.11759228259325,0.078228771686554,0.031246954575181]],[[-0.003006920684129,0.046406500041485,0.013907201588154],[0.045822843909264,0.072868913412094,0.043561313301325],[0.022823967039585,-0.059126287698746,-0.015812898054719]],[[0.14619119465351,-0.034092500805855,-0.031055821105838],[0.040945094078779,0.11611552536488,0.059776805341244],[-0.021649176254869,-0.048928085714579,0.10156943649054]],[[0.10725185275078,-0.029708102345467,0.016970070078969],[0.036295734345913,0.0092803323641419,0.037004619836807],[0.061386983841658,0.052363608032465,0.027841066941619]],[[0.0042641987092793,0.003505903063342,0.03464587405324],[-0.011558069847524,0.05281025916338,0.045381639152765],[0.042888641357422,-0.0021045131143183,0.07429139316082]],[[-0.12447905540466,-0.066897086799145,0.026895558461547],[0.0012840233976021,-0.026422226801515,-0.0045904377475381],[0.039169449359179,0.010355971753597,-0.040915917605162]],[[0.0065153022296727,0.015730815008283,-0.001140899839811],[0.060573730617762,-0.043593920767307,0.077335350215435],[-0.040529698133469,0.03144795447588,0.02797806635499]],[[0.025026794523001,0.045899417251348,0.052568182349205],[-0.0033620153553784,-0.012299566529691,0.072536818683147],[0.02259592153132,-0.00040711348992772,0.046204417943954]],[[-0.077548779547215,0.054209161549807,0.11248358339071],[-0.094583764672279,0.0072848680429161,0.01836135238409],[0.019388046115637,0.059797652065754,0.12106873095036]],[[-0.027250116690993,0.047626208513975,0.012587175704539],[-0.064036726951599,0.039623580873013,-0.011007315479219],[-0.0068136085756123,-0.055475927889347,-0.064110934734344]],[[0.070922158658504,0.13002419471741,0.084292329847813],[0.011308084242046,0.031403321772814,-0.0044953688047826],[0.041706643998623,0.03929590806365,0.077507227659225]],[[0.054770275950432,0.037275712937117,0.059754885733128],[0.063213691115379,0.040793024003506,-0.055432830005884],[0.049309026449919,-0.064107738435268,0.04723871871829]],[[0.025083309039474,0.093331433832645,-0.0044369981624186],[-0.012040854431689,-0.012806409969926,0.072093337774277],[0.0028875567950308,0.14372816681862,0.096031673252583]],[[0.012913212180138,0.056234769523144,0.027128752321005],[0.071153044700623,0.13377487659454,0.10883451253176],[0.079725027084351,0.038170702755451,0.11225322633982]],[[-6.5511230786797e-05,0.0010525197722018,-0.016425535082817],[0.030129989609122,-0.020987233147025,-0.023435836657882],[0.0056032994762063,-0.13696596026421,0.018296668305993]],[[-0.015915460884571,-0.017924109473825,0.056386586278677],[-0.079825848340988,-0.03063078224659,-0.0091636646538973],[-0.053638279438019,-0.010940352454782,-0.034465122967958]],[[0.11287005245686,0.01618087477982,4.9564700930205e-06],[-0.0042286580428481,0.0040452727116644,0.072930321097374],[-0.0069517660886049,-0.056320585310459,-0.042396079748869]],[[-0.12683725357056,-0.099936999380589,-0.081703595817089],[0.050369489938021,-0.05752345174551,-0.084067218005657],[0.0018192384159192,0.09722726047039,-0.072404354810715]],[[0.010281730443239,-0.045781347900629,-0.11463621258736],[-0.01316789817065,0.0066475323401392,-0.049392577260733],[0.031516365706921,-0.0092350486665964,0.032122936099768]],[[-0.022488029673696,0.018501127138734,0.0050546326674521],[0.014244988560677,-0.03392007574439,0.009402128867805],[0.05647087097168,-0.0040161572396755,-0.071594759821892]],[[0.033741984516382,-0.017431249842048,-0.065672464668751],[-0.0099454373121262,0.036760997027159,0.016564341261983],[-0.063490070402622,-0.16386415064335,-0.013125223107636]],[[-0.0070512997917831,-0.022183276712894,0.052423320710659],[-0.049845743924379,0.074334494769573,-0.065287828445435],[-0.004482998047024,0.035342138260603,0.032833248376846]],[[-0.087936043739319,-0.009901219047606,0.05913932621479],[-0.011637496761978,0.092530891299248,-0.012922818772495],[0.0023259171284735,-0.083010032773018,-0.020030988380313]],[[-0.016428263857961,-0.093708105385303,0.019834706559777],[-0.024713218212128,-0.0059544770047069,-0.013471785001457],[-0.006544235162437,0.0057144099846482,0.034667402505875]],[[-0.045952558517456,-0.059015039354563,0.10067904740572],[0.0155776636675,-0.072056882083416,0.026028176769614],[0.083098940551281,-0.010172422043979,-0.017447983846068]],[[0.01507811807096,-0.019893243908882,-0.0099731516093016],[-0.03440422937274,-0.030188551172614,-0.077819518744946],[0.02137435041368,0.019138624891639,0.012703968212008]],[[0.050056964159012,-0.013092156499624,-0.081943050026894],[-0.11047227680683,-0.050268169492483,-0.066332459449768],[-0.030901627615094,-0.026418885216117,-0.015332128852606]],[[0.018253365531564,-0.0034909918904305,0.032418858259916],[0.043881744146347,-0.055746167898178,0.10191994905472],[0.027465688064694,-0.024409420788288,0.02902802452445]],[[0.020080305635929,0.042665366083384,0.0030721686780453],[0.059776708483696,-0.0042644264176488,0.020916124805808],[0.092515386641026,-0.054787240922451,-0.010807222686708]],[[-0.10391628742218,0.021761721000075,0.10323267430067],[0.05145400390029,0.020369296893477,-0.075904384255409],[-0.031075906008482,-0.02299383841455,-0.086787164211273]],[[0.084587626159191,-0.019883459433913,-0.063345327973366],[-0.059508249163628,-0.10329390317202,0.049018297344446],[-0.054652292281389,-0.028699982911348,0.030446289107203]],[[-0.013150635175407,0.0067447330802679,0.084158077836037],[0.023194618523121,0.019021043553948,0.026980632916093],[-0.014069846831262,0.01473106443882,-0.036273125559092]],[[-0.064420595765114,0.010591927915812,0.011097497306764],[0.11578096449375,0.11346956342459,-0.012776956893504],[0.032327860593796,-0.035624355077744,0.020113736391068]],[[-0.061992686241865,0.028661260381341,-0.0024061689618975],[0.050870884209871,0.051913660019636,0.031365368515253],[0.023543303832412,0.088527485728264,0.037333071231842]],[[0.069201178848743,-0.090469352900982,0.048242207616568],[-0.073839165270329,0.024273347109556,0.031646568328142],[0.099879890680313,-0.086847990751266,-0.023964434862137]]],[[[0.0081518925726414,-0.035138908773661,-0.053652439266443],[-0.013445024378598,0.10574360191822,0.030397387221456],[-0.013049977831542,0.0034820951987058,-0.056249499320984]],[[0.073655381798744,0.037980642169714,-0.04094897583127],[-0.024713074788451,-0.044395573437214,-0.017809748649597],[-0.084706507623196,0.0083421180024743,0.015533791854978]],[[-0.030394729226828,0.015940375626087,-0.031971707940102],[-0.010007021017373,-0.034122094511986,0.0391626060009],[-0.013296735472977,-0.027702895924449,0.018124885857105]],[[0.024572251364589,0.033264130353928,-0.049631338566542],[-0.025831514969468,0.018467161804438,-0.025405548512936],[0.017757721245289,-0.022142676636577,0.025914762169123]],[[0.010492898523808,-0.010097246617079,0.036816347390413],[0.045740135014057,-0.091167941689491,-0.010615274310112],[0.048967536538839,-0.029321871697903,-0.011709813028574]],[[0.0071503329090774,-0.011651775799692,-0.034397464245558],[0.044719215482473,-0.01358007825911,-0.0030726736877114],[0.078047782182693,0.032005205750465,0.025372736155987]],[[-0.0099662644788623,0.016484217718244,-0.00092892738757655],[0.089441709220409,-0.042041808366776,0.089291043579578],[-0.0066804317757487,0.026413518935442,-0.011872606351972]],[[-0.070518150925636,0.0084672719240189,0.071057043969631],[-0.07743326574564,-0.070255234837532,0.027923071756959],[-0.014258291572332,-0.011583256535232,-0.0014347238466144]],[[0.0022459076717496,0.017807079479098,0.011845113709569],[0.074792519211769,-0.017849158495665,-0.0495630428195],[0.027633275836706,0.03646432608366,-0.055803872644901]],[[0.017445573583245,-0.0043776305392385,0.082976266741753],[-0.0053125768899918,-0.026038385927677,-0.083688803017139],[0.041565611958504,-0.062407828867435,-0.035887457430363]],[[0.035223722457886,0.0017545120790601,-0.004333027638495],[-0.0083094704896212,0.035100117325783,0.040888257324696],[0.021422823891044,0.033214934170246,0.023335846140981]],[[0.104939840734,0.080333635210991,0.027200488373637],[-0.043513938784599,0.01004125084728,-0.045728161931038],[0.050043161958456,-0.037684593349695,-0.0057746204547584]],[[-0.0034057081211358,-0.013370716944337,-0.03871313855052],[-0.027473628520966,-0.074747890233994,-0.043530400842428],[-0.019461819902062,-0.075220033526421,0.030722603201866]],[[0.031353671103716,0.057625859975815,-0.0034572340082377],[0.0080277025699615,0.034991342574358,-0.021378614008427],[0.0051527363248169,-0.033417802304029,-0.0032796920277178]],[[-0.045366253703833,0.020789632573724,-0.0025613813195378],[0.032716333866119,0.063283376395702,-0.048086583614349],[0.03491984680295,-0.0096347061917186,-0.013117053546011]],[[-0.0097298854961991,-0.0063399104401469,0.026594063267112],[0.036944944411516,0.0089156217873096,-0.012419782578945],[0.0042230095714331,0.014352989383042,0.020384108647704]],[[0.023062627762556,-0.065792769193649,-0.004095483571291],[-0.051389779895544,-0.00047520824591629,-0.00047924957470968],[0.020266970619559,0.0037709518801421,0.0014006540877745]],[[-0.033810816705227,0.021508611738682,0.0521639585495],[0.033632267266512,-0.016288517042994,-0.038574665784836],[-0.023069936782122,-0.010864990763366,-0.0022070573177189]],[[0.043872389942408,-0.0011879320954904,-0.04799759760499],[0.025267917662859,0.04907638207078,-0.060584031045437],[-0.073935881257057,-0.0088659944012761,0.015739899128675]],[[-0.0086626028642058,0.0093973688781261,0.028659926727414],[-0.02236014418304,0.059296220541,-0.023002179339528],[0.068933412432671,-0.00042292635771446,-0.050416260957718]],[[-0.007806139998138,0.071377374231815,0.021431842818856],[-0.010666537098587,-0.019214581698179,0.057066142559052],[-0.024419959634542,-0.042372018098831,-0.00029581427224912]],[[-0.0087795024737716,-0.023011131212115,-0.034120935946703],[0.00010434974683449,0.021181214600801,-0.0080388151109219],[0.030666278675199,-0.035785298794508,0.04233068972826]],[[0.0067535289563239,-0.02486296184361,-0.0032583819702268],[-0.044349506497383,0.011300913058221,-0.027150366455317],[0.054498467594385,-0.015143099240959,-0.026900053024292]],[[0.0064307935535908,-0.011776517145336,-0.017126167193055],[0.031076710671186,0.026381343603134,-0.024390209466219],[-0.0053527695126832,0.0036161080934107,0.053872600197792]],[[-0.014245034195483,-0.10395155102015,-0.013497031293809],[0.069516465067863,0.034793373197317,-0.048441637307405],[0.027642074972391,-0.0035800491459668,-0.014222177676857]],[[-0.038534853607416,0.065931893885136,0.021480198949575],[-0.0046699643135071,0.033794965595007,-0.035400364547968],[-0.045649282634258,0.04443908110261,-0.014047257602215]],[[0.0081779286265373,-0.052463695406914,0.024822600185871],[-0.012771460227668,-0.050173934549093,-0.053344000130892],[-0.0279730707407,-0.088966064155102,-0.007435763720423]],[[0.021161377429962,-0.023766856640577,0.031768180429935],[0.070298932492733,-0.024052027612925,0.074520915746689],[0.039907742291689,0.011756459251046,0.025528909638524]],[[0.022198349237442,-0.037496980279684,0.028059864416718],[0.020588453859091,0.0032465958502144,-0.033047664910555],[-0.049979213625193,0.04016400501132,-0.024567412212491]],[[0.040574181824923,0.054163228720427,-0.035614006221294],[-0.020939882844687,0.058023359626532,0.040077317506075],[-0.021821122616529,-0.00028342628502287,0.02452078089118]],[[-0.056426703929901,-0.0019213005434722,0.037865046411753],[-0.017768090590835,-0.014255030080676,0.019014066085219],[-0.010651089251041,-0.0075836372561753,0.033456385135651]],[[-0.0025146927218884,-0.08045644313097,0.040278099477291],[0.041362162679434,-0.029076643288136,-0.022045640274882],[0.024605069309473,0.0024858803953975,0.005487744230777]],[[-0.10543793439865,-0.010008561424911,0.055174969136715],[-0.027645315974951,-0.0022864649072289,0.0032733890693635],[0.074541710317135,0.083152092993259,0.022749282419682]],[[0.033526547253132,0.011671281419694,-0.027659533545375],[0.022169470787048,0.014014847576618,0.0027458155527711],[-0.0037677146028727,-0.046051505953074,0.015746243298054]],[[0.040008589625359,0.066191382706165,-0.040195759385824],[-0.0066639594733715,-0.049067858606577,0.015255148522556],[-0.015343617647886,-0.014991578646004,0.0028386795893312]],[[0.061934448778629,0.050692364573479,0.04034973308444],[0.054359015077353,0.0002633661206346,-0.023514863103628],[-0.016944982111454,-0.03443755954504,-0.006907750852406]],[[0.068159975111485,-0.016329050064087,-0.0050317016430199],[0.010186473838985,0.017451258376241,0.041739709675312],[0.084915697574615,0.0033154296688735,-0.03251950070262]],[[0.0041879313066602,-0.064664021134377,-0.037656389176846],[-0.0027298347558826,0.014431439340115,0.026313256472349],[-0.013489640317857,0.0083858761936426,0.020438006147742]],[[0.066153988242149,0.025257574394345,-0.064204178750515],[-0.0016397734871134,-0.045684769749641,-0.05328530818224],[-0.076026275753975,-0.018880441784859,0.013776362873614]],[[0.01211363170296,0.026517476886511,0.027978694066405],[0.016733068972826,-0.065726034343243,-0.027012655511498],[-0.010036519728601,0.082845740020275,0.043355114758015]],[[-0.0026179798878729,0.036892686039209,0.022953955456614],[0.032363500446081,0.012271537445486,-0.0045064352452755],[-0.00049307942390442,-0.053274065256119,-0.060621872544289]],[[0.01745012961328,-0.017150992527604,0.040873717516661],[0.082797281444073,-0.0049121617339551,0.046640481799841],[-0.063494056463242,-0.017945896834135,0.02435258589685]],[[-0.019078535959125,-0.042023349553347,0.060196559876204],[-0.036760110408068,0.010618173517287,0.007673273794353],[-0.02046512439847,0.01152226049453,-0.0087593402713537]],[[0.01096579246223,0.035926520824432,0.012964249588549],[0.0086713694036007,-0.10112565755844,-0.045994363725185],[-0.030801609158516,0.062477845698595,-0.063474729657173]],[[0.066240690648556,-0.021537883207202,0.02209010347724],[0.038384042680264,-0.015185810625553,-0.017913289368153],[0.052749708294868,-0.060024172067642,0.022120270878077]],[[0.029504070058465,0.069392874836922,-0.07694797962904],[0.0081482147797942,0.020810451358557,-0.036281436681747],[0.014830131083727,0.0073189190588892,0.0046197059564292]],[[0.065711922943592,0.024108791723847,-0.019328502938151],[-0.059851065278053,-0.035565972328186,0.031920585781336],[0.076791472733021,-0.0092401895672083,0.027439337223768]],[[0.012491965666413,-0.035824779421091,-0.01598160341382],[-0.022407617419958,-0.048183519393206,-0.019934933632612],[-0.0086796432733536,0.093853853642941,0.047560062259436]],[[-0.0048439824022353,0.07672318816185,-0.021537594497204],[-0.035786155611277,-0.075031362473965,-0.058691047132015],[-0.010796775110066,0.00056282087462023,0.01765950769186]],[[0.038446687161922,-0.011640331707895,0.04145384952426],[0.036455325782299,-0.004330413416028,0.013127035461366],[-0.012221056036651,0.007014958653599,-0.058582227677107]],[[0.072382777929306,-0.085521072149277,-0.037868689745665],[-0.050142284482718,-0.021156910806894,-0.0051773656159639],[0.068754814565182,-0.060190238058567,0.034284390509129]],[[0.002792188199237,0.022458214312792,-0.050918430089951],[-0.06728532910347,0.026954762637615,0.056238248944283],[-0.0072101252153516,-0.026713021099567,0.021296015009284]],[[0.071615606546402,-0.060693304985762,0.0032905226107687],[-0.037366785109043,-0.039264723658562,0.034426707774401],[-0.02267843298614,-0.018662169575691,0.059750903397799]],[[-0.017268270254135,0.077572837471962,0.054453562945127],[-0.011358140967786,-0.0082416003569961,0.13517159223557],[-0.03322497010231,-0.040673937648535,0.026056775823236]],[[-0.06583072245121,-0.045743126422167,-0.00727892620489],[0.0058896224945784,0.0096424389630556,0.053547270596027],[-0.035770989954472,0.010510503314435,-0.072827234864235]],[[0.021323138847947,0.015256209298968,0.034055985510349],[0.0022606286220253,-0.020842339843512,0.048545930534601],[-0.10699716210365,-0.028257975354791,-0.064046926796436]],[[0.032903481274843,-0.054815240204334,0.0083301831036806],[-0.025163497775793,0.06159508228302,-0.014069073833525],[0.056200314313173,0.0037044784985483,-0.042794737964869]],[[-0.049468129873276,0.11142019182444,0.090766787528992],[0.00056331319501624,0.018956171348691,0.026403617113829],[-0.062002550810575,-0.013741823844612,-0.061148878186941]],[[0.04941763356328,0.036292046308517,0.0025055401492864],[0.038221102207899,-0.035209141671658,-0.042570184916258],[0.070000566542149,-0.0018293316243216,0.013606301508844]],[[0.041281130164862,0.049762696027756,-0.024167157709599],[0.034321159124374,-0.020830420777202,0.058433655649424],[0.031219817698002,-0.052461188286543,-0.042155802249908]],[[0.053795274347067,0.054101888090372,0.030182277783751],[-0.068574301898479,0.04129696264863,0.015406716614962],[0.094672113656998,-0.086704067885876,-0.10049464553595]],[[-0.016801049932837,0.031731929630041,0.041964773088694],[-0.040534306317568,-0.0096766194328666,-0.069044582545757],[0.020835494622588,0.059089962393045,-0.11259470134974]],[[-0.029064362868667,-0.087995544075966,0.02125708386302],[0.032590534538031,-0.029642639681697,0.063141077756882],[-0.039920881390572,0.025603462010622,-0.018958602100611]],[[0.016602491959929,0.01483479142189,0.0091141369193792],[-0.0035955195780843,0.054474465548992,-0.012984610162675],[-0.074958369135857,0.040287457406521,0.06331554800272]],[[-0.0041815657168627,0.085576459765434,0.022376012057066],[0.037821676582098,0.008592251688242,0.029277643188834],[0.005154172424227,-0.031186256557703,-0.0063304244540632]],[[0.02624954469502,-0.0021925764158368,0.033494926989079],[-0.033885288983583,0.013684860430658,-0.021005900576711],[0.047506704926491,-0.058258254081011,0.051349669694901]],[[0.016443556174636,0.046442173421383,-0.047173365950584],[0.017009889706969,-0.071696490049362,0.059284407645464],[0.045079376548529,-0.032776620239019,-0.0056085847318172]],[[0.035945415496826,-0.039520163089037,0.030766628682613],[0.011757990345359,0.010293236933649,-0.053998313844204],[-0.0037442767061293,0.00081795733422041,-0.026889450848103]],[[-0.014723849482834,-0.009800729341805,-0.0084983520209789],[0.049231979995966,0.074039742350578,0.048680432140827],[0.0036619489546865,0.020516125485301,-0.084426946938038]],[[-0.023288756608963,0.029441984370351,-0.0072126761078835],[0.064489647746086,0.048269558697939,0.016733074560761],[0.0037226600106806,-0.01053384039551,0.022675402462482]],[[0.0046430979855359,0.0022148326970637,0.024993376806378],[0.022990820929408,0.03772721067071,-0.044086009263992],[-0.029892977327108,0.1020937487483,-0.093375697731972]],[[-0.059286929666996,0.0092922002077103,-0.071567244827747],[-0.065381497144699,0.037728954106569,0.021924125030637],[-0.0002954580122605,-0.0032839775085449,0.033118739724159]],[[0.053261786699295,0.0035450009163469,0.042666759341955],[0.011997359804809,-0.031454186886549,0.030779449269176],[-0.025685543194413,0.044951565563679,0.028292214497924]],[[0.0009295228519477,-0.01290809828788,0.0025977292098105],[-0.03539302572608,0.027370104566216,-0.015612508170307],[0.012060563080013,0.0088851507753134,-0.02740978077054]],[[-0.011323495768011,0.0039595477283001,-0.006639625877142],[0.064786583185196,-0.0092967562377453,-0.040448822081089],[0.029804477468133,0.044039096683264,-0.057974878698587]],[[-0.0067656817846,0.01649622246623,-0.024823011830449],[0.011552103795111,0.015403782948852,-0.025023410096765],[-0.025216195732355,0.023043056949973,0.025106117129326]],[[-0.020923271775246,0.0038594654761255,0.025889467447996],[0.027372477576137,-0.016288911923766,-0.022000199183822],[0.015406034886837,-0.021880215033889,0.033166233450174]],[[0.026603253558278,0.017142623662949,0.05297389253974],[-0.084513403475285,-0.0075934715569019,-0.071056865155697],[0.047825686633587,0.013060818426311,0.013552812859416]],[[-0.057053919881582,0.024128578603268,0.052462100982666],[-0.07441234588623,0.010163838975132,-0.01497795060277],[0.020780198276043,0.066286221146584,-0.01756439357996]],[[-0.048947896808386,0.008232525549829,0.06679181009531],[0.0036737769842148,-0.0074792467057705,-0.025570387020707],[0.017136728391051,0.045042295008898,0.018679901957512]],[[-0.015741288661957,0.021789368242025,0.067524991929531],[-0.061331104487181,0.041155770421028,0.051208209246397],[-0.010767524130642,-0.084546469151974,0.04110100492835]],[[0.0084769772365689,0.028903510421515,0.025009429082274],[0.011495807208121,-0.10171814262867,0.020551254972816],[0.080152809619904,0.046058606356382,-0.054924745112658]],[[-0.01712791249156,0.039430987089872,-0.020799521356821],[0.03255457431078,-0.014910806901753,-0.030633524060249],[-0.0086577795445919,-0.019760707393289,0.089812465012074]],[[-0.016773406416178,-0.00026075553614646,0.031871654093266],[-0.011028030887246,0.0083368271589279,0.042597699910402],[-0.046839363873005,-0.03448660671711,0.065259329974651]],[[-0.054496940225363,-0.015824636444449,0.06740540266037],[0.0058089215308428,0.0074013550765812,-0.042013816535473],[-0.056183714419603,0.044369511306286,0.0022872546687722]],[[-0.0071608102880418,0.034423097968102,0.061240743845701],[0.0075849834829569,0.0051804129034281,-0.055898316204548],[-0.0003745807625819,0.073200955986977,0.021711133420467]],[[0.091940432786942,-0.0089951241388917,-0.00410629902035],[-0.03800943121314,-0.0087032672017813,0.030825695022941],[0.006136919837445,-0.032545883208513,0.083494149148464]],[[-0.016501722857356,-0.010710502043366,0.024938626214862],[-0.038030613213778,0.010945498943329,-0.019568752497435],[0.0047063557431102,0.039671842008829,-0.0082042366266251]],[[0.014643047936261,-0.12138765305281,-0.032428342849016],[0.045944780111313,-0.0056237257085741,0.0020760402549058],[0.020617369562387,0.038179725408554,-0.051060851663351]],[[0.019708769395947,0.038840159773827,-0.0082172080874443],[-0.075687177479267,0.028137851506472,0.076093673706055],[-0.017473669722676,0.061698585748672,-0.048696219921112]],[[0.0014502841513604,0.026078693568707,0.027797348797321],[0.047667223960161,0.030378922820091,-0.013752534985542],[0.038573324680328,-0.040348500013351,-0.050210051238537]],[[0.0018382688285783,0.0021985615603626,0.0065269656479359],[0.017513846978545,-0.0081443265080452,-0.040372096002102],[-0.077530533075333,-0.025308726355433,-0.032824233174324]],[[0.0089616943150759,-0.012481383047998,0.042651705443859],[-0.06589063256979,0.061093408614397,-0.039419129490852],[-0.057089790701866,0.042518150061369,-0.02815623767674]],[[-0.023593915626407,-0.010216491296887,-0.036740176379681],[-0.040167804807425,0.067171223461628,-0.040052533149719],[0.020088704302907,-0.044277545064688,-0.0096143307164311]],[[0.0047411266714334,-0.043377194553614,0.045388087630272],[0.026095194742084,-0.0013456813758239,-0.0066413255408406],[-0.030007278546691,0.051619723439217,-0.024355467408895]],[[0.064847342669964,0.010809469036758,0.0013365829363465],[-0.0091717662289739,-0.061015870422125,-0.018967933952808],[-0.03907909989357,0.058606069535017,-0.021643994376063]],[[0.010585880838335,-0.022337345406413,-0.028125775977969],[0.039746392518282,-0.01025927811861,0.080100044608116],[0.032953768968582,-0.0068125580437481,-0.011246295645833]],[[-0.036214884370565,0.00017167464829981,0.00062528322450817],[-0.032363455742598,0.00094047066522762,0.037754848599434],[0.093892313539982,-0.022198755294085,-0.00027502374723554]],[[0.028216153383255,-0.035791255533695,0.052030500024557],[0.0019179701339453,-0.080055668950081,-0.027712473645806],[0.017708357423544,0.022728914394975,0.0082798274233937]],[[-0.021015763282776,0.073199540376663,-0.051538232713938],[-0.084321767091751,-0.0017264703055844,-0.017828686162829],[0.038437899202108,0.049265645444393,-0.0040452280081809]],[[-0.053660333156586,0.060172688215971,-0.021455047652125],[0.018692441284657,0.049742832779884,0.025729620829225],[0.0014177998527884,0.0023951949551702,0.007590931840241]],[[-0.0023150378838181,0.031365673989058,-0.033034466207027],[0.039438374340534,-0.046200003474951,0.014089894481003],[0.0033293012529612,-0.0086966380476952,-0.04846590384841]],[[-0.0034681481774896,0.016256297007203,0.021364230662584],[0.038653407245874,0.038991566747427,-0.064042799174786],[-0.026805479079485,0.050654534250498,0.03629582002759]],[[0.045420926064253,0.0175292622298,0.034762136638165],[-0.035826727747917,0.013295951299369,-0.047267161309719],[0.0046872650273144,-0.033065933734179,0.0010509417625144]],[[-0.052644722163677,0.03106945566833,0.016940258443356],[0.021289639174938,0.060365840792656,0.0026394848246127],[-0.049905076622963,0.036583017557859,0.04519984126091]],[[-0.028406595811248,-0.0039184493944049,-0.017771566286683],[0.025891227647662,-0.0065641477704048,-0.0027079645078629],[0.051518496125937,-0.016136782243848,0.027311554178596]],[[0.046890180557966,0.028342187404633,-0.012259009294212],[-0.075203731656075,0.059986591339111,-0.022078108042479],[-0.013854601420462,0.021545452997088,-0.013187602162361]],[[0.00091369409346953,0.029761241748929,0.020828986540437],[0.033390317112207,0.049191769212484,-0.010017693974078],[-0.091222897171974,-0.024429338052869,-0.023201797157526]],[[0.015489933080971,-0.027273308485746,-0.0027184335049242],[-0.013328103348613,0.0067292079329491,0.049831237643957],[0.043219726532698,-0.0077858129516244,0.018532382324338]],[[-0.068895444273949,-0.029993645846844,-0.028927719220519],[-0.068389438092709,-0.083987042307854,0.0074985772371292],[-0.049109179526567,-0.014901774935424,-0.05650894343853]],[[0.022701494395733,-0.025902941823006,0.072742104530334],[-0.0061691775918007,0.078724265098572,0.047666996717453],[0.013755369000137,0.043776705861092,0.012895650230348]],[[-0.041784659028053,0.0089703453704715,0.043893303722143],[0.032902657985687,-0.031446438282728,0.046418152749538],[-0.024711785838008,0.0099514788016677,0.081993080675602]],[[0.030663887038827,-0.024836180731654,0.047494776546955],[0.095675922930241,0.00097799161449075,-0.063211649656296],[-0.014357946813107,-0.007681627292186,0.014310707338154]],[[-0.028574721887708,-0.098502673208714,-0.096465721726418],[-0.13074973225594,-0.024669012054801,-0.027255268767476],[-0.042992234230042,-0.056219194084406,0.0013271158095449]],[[-0.048449635505676,0.028248660266399,-0.068318702280521],[-0.0086948974058032,0.085023336112499,-0.025271888822317],[-0.01422035228461,0.042445089668036,0.023943366482854]],[[0.034856684505939,-0.0010843619238585,0.0049285884015262],[0.00018268813437317,-0.014846062287688,0.036150213330984],[-0.03897425532341,-0.032694637775421,0.002604668494314]],[[0.047265361994505,0.057656858116388,-0.048838637769222],[-0.014115868136287,-0.05051301792264,-0.017840912565589],[-0.038753688335419,-0.024272710084915,-0.010936675593257]],[[-0.026347406208515,-0.020657606422901,0.013995601795614],[0.00014342975919135,-0.014743643812835,-0.023304061964154],[-0.033733453601599,0.031723599880934,-0.050162978470325]],[[0.018926482647657,-0.040688123553991,0.031470309942961],[0.04099502786994,0.021667467430234,0.12417198717594],[0.055299010127783,-0.03320450335741,0.017318807542324]],[[-0.042959731072187,0.0070819794200361,0.038446545600891],[-0.047989629209042,0.0020093182101846,0.033297725021839],[0.013831266202033,-0.016325630247593,-0.051714953035116]],[[0.053263366222382,-0.035636588931084,-0.061322424560785],[0.0044841524213552,-0.0024618576280773,-0.049440193921328],[-0.072397984564304,-0.012232335284352,-0.067306585609913]],[[-0.012320338748395,-0.040169537067413,-0.092610463500023],[0.0073006339371204,0.027321729809046,0.033942639827728],[-0.023839710280299,0.084871254861355,0.055833108723164]],[[-0.014294741675258,-0.03462890163064,0.0026866206899285],[-0.0071310503408313,0.0026868528220803,0.016052175313234],[-0.0023584773298353,0.071357108652592,0.027152288705111]],[[-0.017767835408449,0.0019708655308932,0.061876405030489],[-0.0059264227747917,-0.019098097458482,0.01491882558912],[0.013125726021826,0.014449863694608,-0.0035857588518411]],[[-0.0064943335019052,0.025592748075724,-0.01344721019268],[-0.034119952470064,-0.017917258664966,-0.053748987615108],[0.11331880837679,-0.052146017551422,0.071161597967148]],[[-0.030290272086859,-0.054729457944632,-0.02039329893887],[-0.0073423478752375,-0.11018231511116,-0.048414390534163],[0.039024721831083,-0.072216615080833,0.017176089808345]],[[-0.041503414511681,0.014645965769887,0.007325226906687],[0.022246833890676,-0.083188317716122,0.045177049934864],[0.012912939302623,0.0014429796719924,0.023615745827556]],[[-0.066421315073967,-0.052280388772488,0.047056633979082],[-0.077459305524826,0.068368256092072,0.044409487396479],[0.029965225607157,-0.029333580285311,-0.099995627999306]]],[[[-0.10468257963657,0.033986125141382,-0.059455513954163],[-0.058072436600924,-0.08511059731245,0.0046227280981839],[-0.028216578066349,0.018782226368785,-0.014242773875594]],[[-0.011686293408275,-0.030795929953456,-0.030807191506028],[-0.036715462803841,0.015431435778737,0.0084689948707819],[-0.092254117131233,0.0060475040227175,-0.044446215033531]],[[0.010356570594013,0.021096533164382,-0.025912340730429],[0.051284603774548,0.033087570220232,-0.0022227244917303],[-0.027931520715356,-0.0042406069114804,-0.037656527012587]],[[-0.041486248373985,0.027051044628024,0.01026913151145],[0.083749875426292,0.0050272829830647,-0.04945507645607],[0.020146498456597,0.080429531633854,-0.001903131371364]],[[-0.0062055354937911,-0.066665656864643,0.022530624642968],[0.00032686145277694,0.0045975269749761,0.031915731728077],[-0.00035801494959742,0.029652900993824,-0.018356997519732]],[[0.029824070632458,-0.0099241314455867,-0.04428917914629],[-0.039830982685089,-0.02324528619647,0.022548783570528],[-0.024235242977738,0.0030186104122549,0.025809541344643]],[[0.046876009553671,0.075899161398411,-0.055421829223633],[0.070377267897129,-0.0031645612325519,-0.05218019336462],[-0.00068421853939071,-0.012655814178288,-0.013457380235195]],[[0.013310760259628,0.012735723517835,0.10443749278784],[-0.049559470266104,-0.046298034489155,0.10480640828609],[0.041729748249054,0.044050965458155,0.065262295305729]],[[-0.10423947870731,-0.049676485359669,-0.098363347351551],[0.057552229613066,0.091539181768894,0.096383512020111],[0.0065767602063715,0.0013963249512017,-0.010555158369243]],[[0.044090792536736,0.19801990687847,-0.0041520083323121],[-0.010475311428308,0.13048532605171,0.12042858451605],[0.060781419277191,0.28113403916359,0.082927674055099]],[[-0.079665407538414,0.075073100626469,0.028935985639691],[-0.041552752256393,0.043292559683323,0.095187351107597],[-0.077656857669353,0.047566529363394,0.1036621555686]],[[0.10432624816895,0.0092680212110281,0.041468273848295],[-0.0042384206317365,-0.034868486225605,0.026259031146765],[0.041291795670986,0.018787646666169,0.036497160792351]],[[0.018005959689617,0.035881765186787,0.036370683461428],[-0.079302631318569,0.025146532803774,0.089849285781384],[0.083227045834064,0.11058493703604,0.055542077869177]],[[0.040554080158472,0.03627322986722,0.012775511480868],[0.00037146045360714,0.025910099968314,-0.025925299152732],[-0.0033158410806209,0.046216040849686,0.043676380068064]],[[0.036344010382891,0.11162413656712,0.12838788330555],[0.04284055903554,0.020746812224388,0.012917779386044],[0.083548866212368,0.088643662631512,-0.08412267267704]],[[-0.02281691879034,-0.0019403116311878,-0.052494566887617],[-0.024034475907683,4.309717041906e-06,0.042364154011011],[0.060664359480143,-0.019528536126018,-0.034809798002243]],[[0.048340030014515,-0.074577987194061,0.04487206786871],[0.028128247708082,0.058586064726114,0.033819049596786],[-0.096213929355145,-0.0048218285664916,0.054748419672251]],[[0.02010185085237,-0.0055264523252845,-0.058725092560053],[-0.041662782430649,0.012317952699959,-0.040872246026993],[-0.012369607575238,0.029569018632174,0.026152610778809]],[[0.02963512763381,-0.011924492195249,-0.016789885237813],[0.046972740441561,0.060746986418962,-0.012201925739646],[0.068303987383842,0.011605151928961,0.019146082922816]],[[-0.037437926977873,-0.043299365788698,8.5657469753642e-05],[0.094758071005344,-0.018330259248614,0.011013554409146],[-0.012425941415131,0.082142218947411,-0.057950496673584]],[[-0.039593677967787,-0.070469684898853,-0.050954587757587],[0.02566304244101,0.0020176491234452,-0.021156610921025],[0.043359745293856,-0.081863649189472,-0.049834836274385]],[[0.1409100741148,0.090757556259632,0.090709820389748],[0.06348805129528,0.0025427741929889,0.028445415198803],[0.080354623496532,0.018641792237759,0.16603714227676]],[[0.012263873592019,-0.041040305048227,-0.035682015120983],[-0.056340351700783,-0.023541057482362,-0.012869496829808],[0.086518183350563,-0.0015242823865265,-0.040827099233866]],[[-0.016622599214315,0.052978746592999,0.14661774039268],[0.11450290679932,0.078662939369678,0.062975905835629],[0.12997509539127,0.10783898085356,0.041437022387981]],[[0.029168518260121,-0.0095138931646943,-0.098854638636112],[-0.047089822590351,-0.016707845032215,0.0023756737355143],[0.02003675326705,0.073458023369312,-0.10328271239996]],[[-0.03979430347681,0.036700751632452,0.0086600817739964],[-0.045472908765078,-0.033451162278652,-0.0020714832935482],[0.13446946442127,-0.0082398587837815,-0.0075982525013387]],[[-0.047815598547459,-0.056305322796106,0.03984984010458],[0.024338448420167,0.026070037856698,0.082003369927406],[-0.0025870825629681,0.016604039818048,0.096451997756958]],[[-0.057752475142479,-0.051660530269146,-0.037023637443781],[0.0013146953424439,-0.011662755161524,0.086930900812149],[-0.027376959100366,0.040802169591188,-0.029112929478288]],[[-0.047755923122168,-0.04264122620225,0.047487139701843],[-0.051481328904629,0.049383770674467,0.067919686436653],[-0.013010648079216,0.086119599640369,-0.02935796789825]],[[-0.023790366947651,0.004176348913461,0.055425878614187],[-0.022579468786716,-0.013311116956174,0.047067791223526],[0.025300377979875,0.045958038419485,0.0095007754862309]],[[-0.030656114220619,0.026124021038413,-0.047823846340179],[0.044488105922937,0.02333957888186,0.016535053029656],[0.1290924847126,0.06137428805232,5.1651451940415e-05]],[[0.01015679910779,0.023877996951342,-0.022341102361679],[0.040428135544062,-0.032131768763065,-0.0060368208214641],[0.013085321523249,0.021298313513398,0.030974492430687]],[[0.027883475646377,-0.003173244651407,0.0085526024922729],[-0.014014658518136,-0.035605706274509,0.10671608895063],[0.04220799356699,-0.022387903183699,-0.026046134531498]],[[0.0075429542921484,-0.0088228844106197,0.05754667147994],[-0.011991001665592,0.028512658551335,-0.001788321766071],[0.076965346932411,0.066609732806683,-0.017643904313445]],[[-0.0076612406410277,-0.0063583268783987,0.074575588107109],[0.019076898694038,0.038462243974209,0.090424709022045],[0.003472562180832,-0.0032880445942283,0.10587575286627]],[[-0.0027000578120351,-0.0052465898916125,-0.077777080237865],[-0.068893492221832,-0.0038411761634052,0.019607635214925],[-0.040435418486595,-0.0073274220339954,-0.047208797186613]],[[0.002013002987951,-0.035632785409689,-0.051926355808973],[-0.043203566223383,-0.12119653820992,-0.061339288949966],[0.016441244632006,-0.10172299295664,-0.1558201611042]],[[0.045864041894674,-0.049678653478622,-0.010392990894616],[-0.019003657624125,0.037025161087513,0.054369576275349],[0.0012338357046247,-0.044156100600958,0.084026657044888]],[[0.038785185664892,0.0025055033620447,0.041411481797695],[-0.010072105564177,0.023985274136066,0.0019967074040323],[0.09486473351717,-0.053267564624548,0.0040328111499548]],[[0.013823035173118,-0.083629436790943,-0.0038497822824866],[0.040339916944504,-0.010866092517972,-0.0004803697229363],[-0.023110076785088,0.0996258482337,0.047025471925735]],[[-0.031209427863359,-0.012719270773232,0.084260791540146],[0.033881682902575,-0.013634485192597,0.052889995276928],[0.011837265454233,0.0087475012987852,-0.036143563687801]],[[0.035889085382223,-0.053880386054516,-0.002161136129871],[-0.022061666473746,0.00019050762057304,0.049344461411238],[-0.11322686076164,0.043910373002291,0.016419509425759]],[[-0.0076230461709201,-0.0063466993160546,-0.063776411116123],[-0.044120028614998,0.034831821918488,-0.010716123506427],[-0.022412383928895,0.014344406314194,0.10396199673414]],[[0.054525058716536,-0.0036660309415311,0.0066065667197108],[-0.058302212506533,0.032513935118914,0.0087135517969728],[-0.0099813723936677,0.038902539759874,-0.023247284814715]],[[0.0063965041190386,-0.054102841764688,0.040334213525057],[0.021402908489108,0.0427261069417,-0.010581645183265],[0.006919655483216,0.051086522638798,-0.10547965764999]],[[0.037639647722244,0.10207547992468,0.025044612586498],[0.038431145250797,-0.043613031506538,0.088777877390385],[0.040372233837843,0.044937375932932,0.027166500687599]],[[-0.042575929313898,-0.02115642093122,0.030313964933157],[-0.03363811224699,-0.0038803271017969,0.098452337086201],[0.0040596993640065,-0.041520036756992,0.046969402581453]],[[0.014837308786809,0.028678918257356,0.036676868796349],[-0.0084881447255611,0.0054185148328543,-0.12708123028278],[0.031769800931215,-0.018337778747082,-0.009589004330337]],[[-0.040662985295057,-0.033545382320881,0.043389193713665],[-0.013475784100592,0.051425214856863,-0.099474593997002],[-0.01230585668236,-0.0062171369791031,-0.034157618880272]],[[0.030874121934175,-0.053619530051947,-0.010734405368567],[-0.0065862713381648,0.0036730745341629,-0.08219039440155],[0.071419790387154,-0.052525144070387,-0.10328325629234]],[[-0.01709714718163,0.013944941572845,-0.075433440506458],[-0.054128430783749,-0.037322364747524,0.11916606128216],[-0.02280724234879,0.034550417214632,0.063857056200504]],[[0.01074003148824,0.052068557590246,0.09799936413765],[0.017266660928726,0.0015673813177273,0.012250892817974],[0.017877286300063,0.11150722205639,0.028202019631863]],[[0.16092544794083,0.036616295576096,-0.002056305995211],[-0.010463546961546,0.061473414301872,-0.024375412613153],[-0.016032190993428,0.032135520130396,0.0080733960494399]],[[-0.00052832718938589,0.029084835201502,-0.071529097855091],[0.069470226764679,-0.028634414076805,0.065567560493946],[-0.0027732152957469,0.014552070759237,-0.059064205735922]],[[0.064528957009315,-0.018807666376233,0.02188060991466],[0.058771591633558,0.025643384084105,-0.082343630492687],[-0.0072024976834655,0.099683798849583,0.033053074032068]],[[0.054359450936317,0.047841183841228,0.021727195009589],[-0.046196933835745,-0.063891865313053,0.043153006583452],[0.02671323530376,-0.0099129965528846,-0.0070864581502974]],[[-0.073649786412716,0.025846214964986,-0.11191609501839],[0.016590656712651,-0.0098132798448205,0.041569259017706],[-0.020496929064393,0.035639513283968,0.060263335704803]],[[-0.075234025716782,-0.048418875783682,-0.054979536682367],[-0.048120450228453,0.018273865804076,-0.035316780209541],[0.0055149407126009,0.0061290003359318,-0.0080548888072371]],[[-0.025136848911643,0.056231059134007,0.088751927018166],[0.023023528978229,0.014485139399767,0.019898544996977],[-0.043682835996151,0.038136024028063,0.059575811028481]],[[0.010694467462599,0.00056858622701839,0.023066554218531],[0.0070874313823879,0.054599892348051,0.0062071830034256],[0.081920124590397,0.017908032983541,-0.0123868919909]],[[-0.049891270697117,-0.055505011230707,-0.00095767161110416],[0.096326150000095,-0.027281828224659,0.069888114929199],[-0.055236835032701,0.054106667637825,-0.041820332407951]],[[0.0084476247429848,-0.048360910266638,0.0026569615583867],[-0.024192988872528,-0.076628737151623,-0.010433689691126],[0.0024187506642193,0.01970268599689,-0.13904395699501]],[[-0.037928868085146,-0.0048256753943861,0.072843298316002],[0.050632819533348,0.01526667829603,0.038257889449596],[0.0030562763568014,0.010272776708007,-0.07128319144249]],[[-0.025738159194589,0.047643464058638,0.035353608429432],[0.046757813543081,0.018668126314878,-0.025289108976722],[-0.012957330793142,0.10770767182112,-0.0908048376441]],[[0.032277598977089,-0.012808430939913,0.020955216139555],[-0.029559874907136,0.028002366423607,-0.013129274360836],[0.0049482043832541,0.019173264503479,-0.11750574409962]],[[-0.040625784546137,-0.021175170317292,0.11032076925039],[0.013041832484305,0.03818416595459,-0.050908148288727],[0.046368397772312,-0.048779215663671,0.024432500824332]],[[-0.061147250235081,0.10172521322966,0.053747951984406],[0.043627426028252,0.062866792082787,0.1846989095211],[0.048446789383888,0.13773711025715,-0.037742078304291]],[[0.043033167719841,-0.083566784858704,0.01868068985641],[-0.063451416790485,0.00034950338886119,-0.050492607057095],[0.029295302927494,0.011975448578596,0.0074289361946285]],[[-0.033100787550211,0.053672701120377,0.047498095780611],[0.029596138745546,0.015885876491666,-0.01236145477742],[0.085862271487713,0.071645639836788,-0.029145861044526]],[[0.0050669461488724,-0.038789324462414,-0.021655425429344],[-0.06234297901392,0.0096608186140656,0.031351413577795],[-0.067217439413071,0.032960660755634,0.031764056533575]],[[-0.012958968058228,-0.074027948081493,-0.027878131717443],[0.041524041444063,-0.00052496342686936,0.031351931393147],[-0.074328735470772,0.050364006310701,0.058620244264603]],[[-0.045709826052189,0.047055128961802,0.034919761121273],[0.015099233016372,0.058901976794004,0.087833255529404],[0.13227111101151,0.099163427948952,-0.0053276517428458]],[[0.0054843914695084,-0.025276312604547,0.0057465266436338],[0.046900287270546,-0.030680943280458,-0.068752430379391],[-0.065096192061901,0.023535776883364,0.10467155277729]],[[0.0044053508900106,0.010147793218493,0.03563292697072],[0.029948435723782,0.0056248242035508,-0.0087313987314701],[0.074437566101551,0.069692276418209,-0.005510444752872]],[[0.0052028577774763,-0.014668044634163,0.090357378125191],[-0.066907398402691,-0.08616154640913,-0.058729410171509],[-0.00030110537772998,-0.01256468705833,0.063733391463757]],[[0.023558482527733,-0.0023114348296076,-0.039431374520063],[0.1017127558589,-0.013041485100985,-0.047144263982773],[0.0090579334646463,-0.023611161857843,-0.015702614560723]],[[-0.017305256798863,0.013444364070892,-0.068326726555824],[0.022145828232169,0.054592095315456,-0.068965971469879],[-0.0909363925457,-0.03010224737227,0.010169842280447]],[[0.036425139755011,0.023780150339007,0.021635111421347],[0.060002598911524,-0.027870086953044,-0.03766630217433],[0.035832345485687,0.022046746686101,-0.0018143790075555]],[[-0.078443676233292,0.0042830775491893,-0.02483431994915],[0.0069936783984303,0.01865360699594,0.068947322666645],[0.061351910233498,0.025743164122105,-0.0057595283724368]],[[-0.086002066731453,0.026746088638902,-0.084545522928238],[0.024735702201724,0.033879011869431,-0.02973317168653],[-0.089463867247105,-0.026677185669541,0.065358616411686]],[[0.031295657157898,0.016236325725913,-0.066229328513145],[0.0058996235020459,-0.0090060923248529,-0.0036673531867564],[-0.0092160599306226,0.048561453819275,-0.029295541346073]],[[-0.051555261015892,0.016934726387262,-0.037119798362255],[-0.022116826847196,-0.042274665087461,0.087846301496029],[-0.041342038661242,-0.04684466868639,0.012648295611143]],[[-0.10169048607349,-0.034894272685051,-0.016645532101393],[-0.047835260629654,-0.057198394089937,-0.018755055963993],[-0.04750494286418,0.042277812957764,0.013161350041628]],[[0.0050511611625552,-0.059673193842173,0.019553162157536],[0.07283129543066,0.028055181726813,0.027205796912313],[-0.013053120113909,-8.0512960266788e-05,0.039150945842266]],[[-0.067258916795254,0.047158200293779,-0.028537755832076],[0.063619315624237,0.046419441699982,0.05757425352931],[0.039000507444143,-0.016333427280188,-0.020680990070105]],[[-0.051328338682652,0.034228179603815,0.0089109512045979],[-0.035380329936743,-0.021060602739453,0.059610236436129],[0.03604106977582,0.096763625741005,-0.0051244213245809]],[[0.058694928884506,0.13772013783455,0.051180068403482],[-0.059429403394461,0.04751618206501,-0.003004053607583],[-0.028082370758057,0.024083532392979,0.088473588228226]],[[0.041388034820557,-0.11363130807877,0.068393208086491],[0.056031920015812,0.060231752693653,0.071889288723469],[0.091702863574028,0.13099844753742,0.063890650868416]],[[0.030240386724472,0.043434053659439,0.034431200474501],[0.038257751613855,0.054598860442638,0.027411509305239],[0.011535874567926,0.032359428703785,0.037421066313982]],[[0.010613241232932,0.047126930207014,-0.13290137052536],[-0.053606297820807,-0.020450703799725,-0.066805943846703],[-0.0058522853069007,0.042129769921303,0.028858629986644]],[[-0.0092592742294073,0.0044913217425346,0.025670303031802],[0.016929244622588,0.0078475913032889,0.099892020225525],[-0.04665158316493,0.15578906238079,0.10479668527842]],[[0.026843667030334,-0.020564440637827,-0.0081944093108177],[-0.046980317682028,0.024184858426452,-0.061654735356569],[-0.044576413929462,-0.071521043777466,-0.032000441104174]],[[0.0063245273195207,-0.089977905154228,-0.028793444857001],[0.044512581080198,-0.069447629153728,-0.032137725502253],[-0.093902565538883,-0.031533099710941,-0.019851822406054]],[[0.033198017627001,0.019977878779173,0.084618575870991],[0.0084343301132321,0.0082633718848228,0.033698558807373],[0.05111513286829,-0.033459510654211,0.017770104110241]],[[-0.0056580030359328,-0.02472660690546,0.031308136880398],[0.085918255150318,-0.023866949602962,0.041377451270819],[-0.00081879226490855,0.012279031798244,-0.048728223890066]],[[-0.040378578007221,0.09992091357708,-0.040226325392723],[-0.034365452826023,0.02759819291532,0.051455080509186],[-0.017016740515828,-0.03826379776001,0.060008496046066]],[[0.018344730138779,0.0057365102693439,0.14197312295437],[-0.014776760712266,0.0030317429918796,-0.015894783660769],[0.01682279445231,0.02321326546371,0.11141622811556]],[[-0.070893950760365,-0.012109734117985,-0.056344699114561],[0.030829118564725,0.057671412825584,-0.042484499514103],[0.015707511454821,0.090291224420071,0.12328563630581]],[[0.010569054633379,-0.027947701513767,0.088532350957394],[-0.11087228357792,-0.014891374856234,0.038423288613558],[0.0065810135565698,-0.10297553241253,-0.039028633385897]],[[-0.075393348932266,-0.00019011783297174,0.018190987408161],[-0.050819106400013,0.048695616424084,0.0095496186986566],[0.02000480890274,-0.001104551833123,0.027553243562579]],[[0.034511931240559,0.058663632720709,-0.032084390521049],[0.01571886613965,-0.039385426789522,0.033812366425991],[0.010700315237045,-0.06205715611577,0.059686947613955]],[[0.013385305181146,0.0041657099500299,0.057759914547205],[0.012465544044971,0.040030878037214,-0.030974579975009],[0.11409085988998,0.12517921626568,0.078636944293976]],[[-0.033118735998869,0.020590730011463,-0.0094599230214953],[-0.041652001440525,0.037288226187229,0.031026430428028],[0.035925950855017,0.0071573709137738,0.10470237582922]],[[-0.01241507474333,-0.0099415872246027,0.092798933386803],[-0.040927894413471,0.025020027533174,0.047235284000635],[0.03697208315134,0.074016541242599,0.043940048664808]],[[-0.026977034285665,0.076228462159634,-0.044278994202614],[0.020640276372433,0.061065059155226,-0.0050496640615165],[-0.030073571950197,0.060442589223385,-0.015562530606985]],[[-0.037307284772396,0.068152353167534,-0.072957165539265],[-0.010770442895591,-0.0097523657605052,-0.056729767471552],[0.049611002206802,-0.044122658669949,-0.010241474956274]],[[0.049400340765715,-0.0013700736453757,0.07887726277113],[0.052111592143774,0.020695276558399,0.061382461339235],[-0.10801677405834,-0.034896943718195,0.04634578153491]],[[-0.018477696925402,0.027504928410053,0.021909175440669],[0.040322206914425,0.021407613530755,-0.022221254184842],[-0.011349314823747,-0.020424470305443,0.024374336004257]],[[0.041855350136757,0.0055094547569752,0.085798777639866],[0.027529250830412,0.0043497649021447,-0.011560748331249],[-0.01628489792347,-0.038268323987722,0.025408145040274]],[[0.042124390602112,0.0088191423565149,0.058426704257727],[-0.014918990433216,0.064824759960175,0.094818487763405],[0.047607611864805,-0.090584337711334,-0.042966615408659]],[[-0.031607329845428,0.00068917212774977,-0.10431548207998],[0.039117675274611,0.038525424897671,0.065147437155247],[0.070154026150703,-0.074940271675587,0.032036166638136]],[[0.077309332787991,0.016929637640715,-0.022389888763428],[-0.02753970772028,0.041746079921722,-0.013545314781368],[0.033820807933807,-0.0090044159442186,-0.030162401497364]],[[-0.025613335892558,-0.015465660020709,0.0059728277847171],[-0.02163215726614,-0.054502472281456,0.031174579635262],[0.064820513129234,-0.041028279811144,-0.044579900801182]],[[-0.061867743730545,0.033914592117071,-0.038458473980427],[0.041441321372986,-0.078632593154907,0.023702971637249],[0.0049205995164812,-0.043211426585913,-0.11380776762962]],[[-0.055809747427702,-0.07619621604681,0.028941668570042],[0.064880944788456,-0.066145151853561,-0.049603324383497],[-0.016402959823608,-0.026772847399116,-0.0054047065787017]],[[-0.083283707499504,-0.053064599633217,0.062839441001415],[-0.020773099735379,-0.051350880414248,-0.024618225172162],[0.054573092609644,0.010970734991133,0.0769347473979]],[[0.0044955722987652,0.01492288056761,-0.03151910752058],[-0.045501228421926,-0.066249556839466,0.032586727291346],[0.0635070130229,-0.010041061788797,0.031264171004295]],[[0.0064149796962738,-0.049901373684406,0.00098231015726924],[-0.027585968375206,0.072734490036964,-0.0071432604454458],[0.087151631712914,0.041705634444952,0.11783171445131]],[[0.017774630337954,-0.082827217876911,0.0689891949296],[-0.028592890128493,-0.032573960721493,0.025607181712985],[-0.11557020246983,0.045914888381958,0.065599553287029]],[[-0.06377674639225,-0.057063218206167,-0.20887303352356],[-0.084045246243477,-0.050114590674639,-0.07090774923563],[-0.00057408615248278,-0.056376233696938,-0.092390507459641]],[[-0.048982862383127,0.002807050710544,-0.017294028773904],[0.0025448196101934,-0.09062647074461,-0.074961699545383],[0.029269367456436,-0.073567815124989,-0.027051528915763]],[[0.018636038526893,0.0077841891907156,0.063776083290577],[-0.026711232960224,-0.054154943674803,-0.01173039060086],[-0.038840685039759,0.0020823802333325,0.0019317122641951]],[[-0.0050945556722581,-0.094564110040665,0.0056754411198199],[0.020969733595848,0.012283183634281,0.09241683781147],[0.035009756684303,-0.012179810553789,0.023467611521482]],[[0.064979933202267,0.011008081026375,-0.041965741664171],[0.048817653208971,-0.020725313574076,-0.11333325505257],[-0.021761799231172,-0.078765198588371,-0.051408857107162]],[[0.0047456319443882,-0.002019613282755,0.037092935293913],[0.027512283995748,0.060619216412306,-0.045737896114588],[-0.049300152808428,0.036589670926332,0.066577255725861]],[[-0.035961527377367,-0.010435370728374,0.046106528490782],[0.038969196379185,-0.015302178449929,0.013335551135242],[0.071667179465294,0.042388338595629,0.022317154332995]],[[0.005273699760437,0.02162160910666,0.090271890163422],[0.022117160260677,0.0032612062059343,-0.017231374979019],[0.022548807784915,0.079240530729294,0.05054434761405]],[[0.045363213866949,-0.051629297435284,0.0057995184324682],[-0.11426953226328,0.038827419281006,-0.022836178541183],[0.07861266285181,0.054080136120319,-0.074573032557964]]],[[[0.06450566649437,0.051115721464157,0.070799671113491],[0.067266128957272,-0.019054131582379,-0.0026962638366967],[0.07650551199913,-0.044665992259979,0.052098471671343]],[[-0.015133257955313,0.066028110682964,-0.0025021261535585],[0.023657374083996,-0.025744533166289,0.0042285500094295],[0.0091919032856822,0.020659670233727,-0.019920403137803]],[[0.088687293231487,-0.083182588219643,-0.027118632569909],[-0.033125746995211,0.0026471656747162,-0.0091241747140884],[-0.0061884820461273,0.013073926791549,-0.026837501674891]],[[-0.0024168596137315,0.032017413526773,0.034464951604605],[-0.05656448751688,0.038968469947577,0.037090096622705],[0.00075194716919214,-0.0068177515640855,0.08272123336792]],[[0.02370429597795,-0.060880444943905,-0.026598742231727],[0.045453276485205,-0.047290224581957,-0.0027490635402501],[0.10171278566122,-0.035839688032866,-0.050947610288858]],[[0.030774028971791,0.0076143266633153,-0.007400413043797],[0.049915812909603,0.10080842673779,0.036602668464184],[-0.016716727986932,-0.043717235326767,-0.0028651219327003]],[[-0.053141802549362,-0.063061289489269,-0.012411765754223],[-0.013304263353348,-0.019501673057675,0.081928811967373],[-0.087343655526638,-0.0077181328088045,0.010475712828338]],[[0.037339635193348,-0.049355108290911,0.04015301540494],[0.074067391455173,-0.035339955240488,0.041493557393551],[-0.03442894667387,0.042946919798851,-0.054554168134928]],[[0.030696352943778,0.037259567528963,0.1266975402832],[-0.015021193772554,0.049343757331371,0.053945753723383],[0.04758108407259,-0.011457502841949,0.012590290047228]],[[-0.033375464379787,0.033863425254822,0.00085694040171802],[0.011920273303986,0.21760469675064,0.11007709801197],[-0.00014761812053621,0.019719174131751,-0.10041616111994]],[[-0.015824656933546,0.0079950150102377,0.07954603433609],[0.096617080271244,0.031628552824259,0.0064905215986073],[-0.056920725852251,0.065516203641891,0.037802372127771]],[[0.044442947953939,-0.00010246729652863,0.041163709014654],[0.0071297092363238,0.064193993806839,0.019203748553991],[-0.03504803031683,0.073074363172054,0.034304745495319]],[[0.030044432729483,0.017057588323951,0.038890708237886],[0.045300934463739,0.063262395560741,0.0066032009199262],[0.074348598718643,-0.052502784878016,-0.0037044030614197]],[[0.017991054803133,0.025588342919946,-0.03652086481452],[0.02987458743155,0.019835440441966,0.045394010841846],[0.0095618860796094,0.018971212208271,-0.015801364555955]],[[0.047650031745434,0.00047368483501486,0.074722446501255],[0.17469425499439,0.15286837518215,0.0005746753886342],[0.036061462014914,0.045257035642862,0.14763182401657]],[[-0.045709993690252,-0.071291424334049,0.03754098713398],[-0.049648143351078,0.015254053287208,-0.033835679292679],[-0.070208489894867,-0.053428076207638,-0.047868303954601]],[[0.061141617596149,0.023445628583431,0.018002038821578],[-0.0073778741061687,0.098288498818874,-0.048200212419033],[0.035777702927589,-0.044949326664209,0.079235851764679]],[[0.02198070473969,-0.001719867461361,0.085088647902012],[-0.046706896275282,-0.025846231728792,-0.010858992114663],[0.03073862940073,0.014592190273106,0.098209008574486]],[[0.021958786994219,-0.018931427970529,-0.015574402175844],[-0.025455391034484,-0.055797331035137,-0.010068568401039],[0.071965381503105,0.073957271873951,-0.055537551641464]],[[0.070410862565041,0.0028234582860023,0.027596050873399],[-0.039841048419476,0.083520255982876,0.073153294622898],[0.063967652618885,0.0070473928935826,0.070154681801796]],[[-0.036625988781452,-0.15550906956196,0.010664866305888],[0.035778257995844,0.041622538119555,0.096014425158501],[-0.018267646431923,0.066039495170116,-0.046152599155903]],[[-0.025751207023859,0.0097202621400356,0.051881775259972],[0.051816876977682,0.13714209198952,0.098253786563873],[0.0073287053965032,-0.011009651236236,0.028950797393918]],[[0.063781075179577,-0.026958890259266,0.035612542182207],[-0.022053489461541,0.032133486121893,0.028326222673059],[-0.052929654717445,0.011037353426218,-0.0098534813150764]],[[0.011341686360538,-0.032472964376211,0.010591587983072],[0.04507726803422,-0.045025814324617,0.011698072776198],[-0.067578472197056,-0.04352618008852,-0.048545248806477]],[[0.058289878070354,0.039967358112335,0.0037499058526009],[0.036631774157286,0.045681182295084,0.047457601875067],[0.033610105514526,0.029441092163324,-0.076805531978607]],[[-0.050436429679394,-0.070512786507607,0.042797766625881],[0.029824452474713,0.0057745520025492,0.020123204216361],[0.089634694159031,-0.14770233631134,-0.0050606592558324]],[[0.022480331361294,0.017146129161119,0.035959079861641],[0.01510469801724,0.00090288068167865,-0.049084287136793],[0.054037969559431,0.036572229117155,0.06966544687748]],[[0.085735246539116,-0.057516787201166,0.08981816470623],[0.040860742330551,-0.00055039807921275,0.013467214070261],[0.058185886591673,-0.042566999793053,-0.038698978722095]],[[-0.038990944623947,0.12614291906357,0.036861959844828],[0.10275084525347,0.024152914062142,0.053415145725012],[-0.049548495560884,0.094024978578091,-0.0018911715596914]],[[0.0039099706336856,0.032902907580137,0.071252480149269],[0.010240423493087,0.040751613676548,-0.065055891871452],[-0.0086924470961094,-0.031287603080273,-0.032588310539722]],[[-0.077803879976273,0.028032310307026,-0.020628675818443],[-0.0043111881241202,-0.02293068356812,0.058692757040262],[0.10381530970335,0.027893051505089,0.02923702262342]],[[0.037564136087894,-0.048779312521219,-0.075907476246357],[0.069417051970959,-0.01472195237875,-0.045166231691837],[0.017986435443163,0.040009438991547,0.00056339026195928]],[[-0.060983438044786,0.0022916060406715,-0.093764208257198],[0.048870783299208,0.09541192650795,-0.042563334107399],[0.041225969791412,0.017489025369287,-0.039467670023441]],[[0.065438203513622,0.01480305287987,0.0026832709554583],[0.012952635064721,0.0028361501172185,-0.0076221488416195],[0.043270211666822,-0.042173076421022,-0.059474296867847]],[[0.054776087403297,0.020871117711067,-0.0015003868611529],[0.071554131805897,0.021322976797819,-0.038871221244335],[-0.042717207223177,0.022848336026073,-0.034045804291964]],[[0.055702902376652,-0.01813449524343,-0.0049189850687981],[-0.039183285087347,0.0097376322373748,-0.0050069596618414],[0.0083535546436906,-0.046535477042198,0.056825842708349]],[[-0.038503564894199,-0.020508568733931,0.028060223907232],[0.03068065084517,0.027651289477944,-0.015565103851259],[0.03279821947217,0.044529318809509,0.051556054502726]],[[-0.0097687533125281,0.043275654315948,0.019725995138288],[-0.0037920505274087,-0.069276563823223,0.0055166790261865],[0.025395046919584,0.04358696937561,-0.030219975858927]],[[0.046052217483521,-0.0096503049135208,0.020633282139897],[0.048115491867065,0.011516359634697,0.0024572624824941],[0.08818955719471,-0.033795647323132,0.047594085335732]],[[-0.034829381853342,0.10060226917267,-0.093664817512035],[0.022325500845909,-0.03442008420825,-0.01817281730473],[0.024246832355857,0.072770193219185,-0.013694763183594]],[[0.032671876251698,-0.027556288987398,0.030099336057901],[-0.08276455104351,0.034696787595749,-0.027405405417085],[-0.0005133684608154,0.080730676651001,0.0024164416827261]],[[0.038103200495243,0.0047649736516178,0.032981287688017],[0.018894463777542,-0.023991459980607,0.055333144962788],[0.016749350354075,0.047220353037119,-0.075825810432434]],[[0.020849755033851,0.031387571245432,-0.0006031293887645],[0.079899750649929,0.023798989132047,0.037497788667679],[0.013002805411816,-0.0013472525170073,-0.0053286966867745]],[[-0.004565664101392,0.046820163726807,0.0073236837051809],[0.029497120529413,0.10449931770563,0.033898763358593],[0.0040292330086231,0.071035802364349,-0.019020423293114]],[[0.061939556151628,0.051629077643156,0.019165659323335],[-0.089651606976986,0.067687474191189,0.044938877224922],[0.031503386795521,0.068171158432961,0.015171849168837]],[[0.075849056243896,0.022551899775863,0.032162871211767],[0.058452740311623,0.027428895235062,-0.034148976206779],[0.034880846738815,0.017874082550406,0.065004460513592]],[[0.020466590300202,0.049892418086529,0.051337733864784],[0.036675948649645,-0.051075898110867,-0.0075329118408263],[0.020302765071392,0.044000133872032,0.017432602122426]],[[0.026304166764021,0.016726944595575,0.0054293372668326],[0.059806659817696,0.019010599702597,-0.012934708036482],[0.098391644656658,-0.019427880644798,0.062749780714512]],[[0.069534435868263,0.0074266544543207,0.054706618189812],[-0.0084122344851494,-0.078550323843956,-0.0041359849274158],[0.09481143206358,0.033995475620031,0.078666210174561]],[[0.011588747613132,0.030104329809546,0.018355675041676],[-0.033782090991735,0.035471994429827,-0.042278420180082],[0.0071918605826795,-0.14148736000061,-0.094448633491993]],[[-0.042847100645304,0.024991650134325,-0.046292871236801],[-0.024414800107479,-0.020927095785737,0.10099915415049],[-0.068767689168453,-0.0092290313914418,-0.019063334912062]],[[0.06111953034997,-0.10043762624264,0.03120730817318],[0.026879088953137,-0.024527668952942,0.044890351593494],[-0.063566938042641,-0.056614771485329,0.001703899120912]],[[-0.022498996928334,-0.0072030066512525,0.021481862291694],[0.029451977461576,0.0077481982298195,0.033303163945675],[-0.039649527519941,0.018099084496498,-0.053320720791817]],[[0.034593515098095,0.039457812905312,0.0099558215588331],[0.010442196391523,0.024232551455498,0.022661907598376],[-0.031628523021936,-0.016853949055076,-0.060319375246763]],[[0.055779922753572,0.039073418825865,-0.037001367658377],[0.045044839382172,0.029536433517933,-0.025799920782447],[-0.050482489168644,-0.047339703887701,-0.084854312241077]],[[-0.045524261891842,-0.034486126154661,0.033993132412434],[0.0098977852612734,-0.065869741141796,0.070128902792931],[0.011694278568029,-0.037059336900711,0.011579894460738]],[[-0.096550807356834,0.047266401350498,-0.036795262247324],[0.03500734642148,0.037815399467945,0.047533132135868],[-0.062554366886616,0.08590853959322,0.067742235958576]],[[0.041038196533918,0.0015806807205081,-0.022576028481126],[0.036294989287853,0.017131237313151,-0.030190905556083],[0.0019297710387036,0.011724375188351,-0.026845885440707]],[[0.025556704029441,0.039706096053123,0.059655800461769],[0.027890482917428,-0.0083539485931396,-0.021134402602911],[0.07230968773365,0.031503569334745,0.091294802725315]],[[0.076592661440372,0.01886441372335,-0.069688305258751],[-0.052117373794317,0.023603035137057,-0.0056145978160203],[0.021730199456215,0.022172324359417,0.023374022915959]],[[0.1077039539814,0.013226365670562,-0.10304586589336],[-0.0014700278406963,-0.039972983300686,0.05927687510848],[-0.12013585865498,-0.072274908423424,-0.026675486937165]],[[-0.048501312732697,0.0050988839939237,-0.0070292269811034],[0.013160259462893,0.031135130673647,-0.011881425045431],[0.014734832569957,0.033366806805134,0.042034272104502]],[[-0.042840912938118,-0.05333149060607,-0.017615413293242],[-0.025272682309151,0.10424185544252,-0.048342779278755],[0.064901396632195,-0.041544198989868,-0.0098032522946596]],[[-0.020510142669082,-0.027217619121075,0.0060774036683142],[0.06078302115202,-0.00646066153422,0.028856566175818],[-0.034203767776489,0.026168916374445,0.025536112487316]],[[0.0052226097323,-0.05830342322588,0.028848726302385],[-0.029608560726047,-0.030954729765654,-0.044821947813034],[0.012092671357095,0.035600390285254,-0.010083330795169]],[[-0.014050212688744,-0.009991847909987,-0.11173521727324],[0.045028850436211,-0.033175144344568,0.022717570886016],[0.027888145297766,-0.0016995123587549,-0.0077628418803215]],[[-0.016693523153663,0.084309011697769,-0.077531687915325],[0.064993277192116,0.046667423099279,0.026627380400896],[0.017299391329288,0.047832824289799,0.028719833120704]],[[0.042127531021833,0.0099471639841795,0.010168904438615],[0.031572561711073,0.030193027108908,0.021659508347511],[0.088615708053112,-0.016088483855128,0.06127131357789]],[[0.12562842667103,0.0072711743414402,-0.0079017886891961],[-0.015932869166136,0.024871358647943,0.024317914620042],[-0.035562884062529,-0.014574572443962,0.073906168341637]],[[0.077403910458088,0.056501518934965,0.045449186116457],[-0.068798787891865,-0.058896746486425,-0.04233468323946],[0.0162921436131,-0.0077874176204205,0.11656486988068]],[[0.038411147892475,-0.04389563575387,-0.059121627360582],[0.026212165132165,0.087117113173008,0.0088175851851702],[0.04638496786356,0.0030453894287348,0.039257775992155]],[[-0.0003719714586623,-0.027565343305469,0.035171989351511],[0.062394451349974,0.010026209056377,-0.022892637178302],[0.12578921020031,0.086104601621628,0.076255276799202]],[[-0.089798040688038,-0.026717515662313,-0.017950434237719],[0.11604253947735,0.0096756378188729,0.045125663280487],[-0.010440832003951,0.041173357516527,-0.014149849303067]],[[0.068901024758816,0.03422649949789,-0.066239468753338],[-0.040473867207766,-0.048016056418419,0.02752379886806],[-0.062243595719337,0.053832020610571,0.0027785177808255]],[[0.036652039736509,0.026122320443392,-0.022473769262433],[0.026941508054733,-0.036055780947208,0.059362407773733],[0.026266358792782,0.017929608002305,0.028710626065731]],[[0.017687603831291,0.0024739797227085,0.05438619852066],[-0.020671010017395,-0.018830176442862,0.099200986325741],[-0.028418380767107,-0.083910271525383,-0.080647304654121]],[[0.020343156531453,0.031444020569324,0.0804413408041],[0.062976665794849,0.0037580234929919,-0.035556193441153],[0.029459126293659,0.045702572911978,0.001186449197121]],[[0.0033974894322455,0.0043526715599,0.013422195799649],[-0.047364361584187,-0.043325632810593,0.084699191153049],[0.04737027361989,0.045032013207674,0.06464672088623]],[[-0.041109204292297,0.055357467383146,0.024139080196619],[0.07378127425909,0.011492081917822,0.027292063459754],[-0.074387542903423,0.017836317420006,0.029664039611816]],[[0.034943278878927,0.035668730735779,0.0090784812346101],[-0.026323787868023,-0.052299089729786,-0.014845875091851],[-0.090766750276089,-0.0099258162081242,0.0057535595260561]],[[0.045419178903103,0.0071223857812583,0.0054066358134151],[0.050536666065454,0.093724943697453,0.053332053124905],[0.073404788970947,-0.055556830018759,-0.010640441440046]],[[0.070608913898468,0.02469782717526,0.017569299787283],[-0.036980200558901,-0.025811705738306,-0.0043885949999094],[-0.075363710522652,-0.031629394739866,0.0085629867389798]],[[0.031046686694026,-0.0060764402151108,0.026207888498902],[0.066538773477077,0.0023265078198165,-0.041589226573706],[0.099094964563847,-0.045567266643047,-0.061843324452639]],[[0.015030290000141,0.031902711838484,-0.0066582532599568],[-0.040437057614326,0.018140727654099,0.034472916275263],[0.01897332444787,-0.028166227042675,-0.071858070790768]],[[0.036994338035583,-0.070457085967064,-0.032698336988688],[-0.0497728548944,0.053357347846031,-0.033842086791992],[0.045376904308796,0.0280558206141,-0.078271634876728]],[[-0.023704696446657,-0.020277291536331,0.01757581345737],[0.063500054180622,-0.047596506774426,0.044157356023788],[0.028629664331675,0.055261868983507,-0.022212598472834]],[[-0.061984408646822,0.025840090587735,-0.10289380699396],[0.02423794567585,0.03928679227829,0.042580880224705],[0.067471101880074,0.035960860550404,0.0095522040501237]],[[0.0083232382312417,0.01473081484437,0.030424699187279],[0.063400015234947,-0.013031641021371,0.036263059824705],[0.09253441542387,-0.011910198256373,0.021406639367342]],[[-0.0054179695434868,-0.0426160171628,0.022804399952292],[-0.035833306610584,-0.049120292067528,0.0049637942574918],[-0.044592123478651,0.019944736734033,0.0074527626857162]],[[0.039257198572159,0.026760410517454,0.040136609226465],[0.00048575983964838,0.077648781239986,-0.027288781479001],[-0.041373752057552,0.042451065033674,0.050680298358202]],[[-0.067064225673676,0.066539973020554,0.09829031676054],[0.053624249994755,-0.0044309976510704,0.032302271574736],[0.073557198047638,0.00028402803582139,-0.078011371195316]],[[0.019679283723235,0.043724343180656,0.047949776053429],[-0.027060387656093,-0.027248226106167,0.0035725748166442],[0.028596030548215,0.052218500524759,0.081783570349216]],[[0.03967459499836,-0.038646947592497,0.029578246176243],[0.052707996219397,0.028459707275033,0.075353860855103],[0.012489541433752,0.0060472502373159,-0.03795312717557]],[[0.074990890920162,-0.0032645484898239,-0.03888650611043],[0.026118148118258,0.044489569962025,-0.0012876858236268],[-0.061892256140709,-0.046820182353258,0.0074102925136685]],[[-0.005349104758352,0.058186329901218,0.043238956481218],[-0.045851431787014,0.010915283113718,-0.10540096461773],[-0.026780026033521,0.029539635404944,-0.00090412056306377]],[[-0.0051388987340033,0.0031479860190302,0.056985639035702],[-0.014132886193693,-0.059112284332514,0.0060102799907327],[-0.023064602166414,0.065572798252106,-0.064447104930878]],[[0.05971709266305,0.035839952528477,-0.014901496469975],[0.0057820598594844,-0.031822100281715,0.089378327131271],[-0.012981217354536,0.012899617664516,-0.08880739659071]],[[0.088776804506779,-0.027549179270864,0.029755743220448],[-0.0012507061474025,0.088550299406052,-0.00084296142449602],[0.040919356048107,-0.004050325602293,-0.079828985035419]],[[-0.02129259891808,0.076883122324944,0.033545784652233],[0.049912132322788,0.0037057739682496,0.052228335291147],[0.021054819226265,-0.0049027432687581,0.0019317292608321]],[[0.022338572889566,0.023214232176542,0.068261608481407],[-0.089236825704575,-0.0070790182799101,0.024474145844579],[-0.0096517959609628,-0.045781135559082,0.026459958404303]],[[-0.058004543185234,0.029759056866169,-0.092330016195774],[-0.024243369698524,-0.10499268770218,-0.024921473115683],[-0.025989625602961,0.012545146979392,0.015115554444492]],[[0.12300755083561,0.089379772543907,0.06431683152914],[0.09161401540041,0.035039827227592,0.044549848884344],[0.0095963086932898,0.061659038066864,-0.037229835987091]],[[0.005952755920589,0.08308557420969,-0.027197394520044],[-0.0041500949300826,-0.0029361853376031,0.019056022167206],[0.0075427149422467,-0.0092079620808363,0.039770949631929]],[[-0.027561379596591,-0.022258345037699,0.028658181428909],[-0.021064147353172,0.019774243235588,-0.10512055456638],[-0.052685055881739,0.040248680859804,-0.014975274913013]],[[0.099747732281685,0.087398320436478,-0.11122410744429],[0.030887767672539,-0.0022844807244837,-0.0039044937584549],[0.05903996527195,0.047497969120741,-0.079389952123165]],[[-0.058546233922243,0.039498295634985,0.02225592546165],[0.016235316172242,-0.055525720119476,-0.010298661887646],[0.044167548418045,-0.017164228484035,0.0053802584297955]],[[-0.032052051275969,-0.026894927024841,-0.0024298240896314],[-0.055542662739754,-0.019374340772629,0.0066622025333345],[0.088464818894863,0.063847988843918,-0.073203757405281]],[[0.020079653710127,-0.054035652428865,-0.06267948448658],[-0.0092732049524784,-0.0085368948057294,-0.008630495518446],[0.022767541930079,0.038516495376825,0.0091743376106024]],[[0.006238667294383,0.036662995815277,-0.018503582105041],[0.09467351436615,0.022111697122455,-0.040154568850994],[0.036528289318085,0.012273857370019,-0.0022047206293792]],[[-0.092591404914856,0.048887744545937,0.076105013489723],[0.057551208883524,-0.13937762379646,-0.096518658101559],[0.026711059734225,0.1178537234664,0.033898953348398]],[[0.0071738273836672,-0.040434911847115,0.025110805407166],[0.0056182760745287,0.00071265996666625,-0.015892032533884],[0.0040592476725578,0.0072356127202511,-0.04493460059166]],[[-0.037985518574715,0.07370638102293,-0.036738593131304],[0.13799127936363,0.037090830504894,-0.013905073516071],[0.030780097469687,-0.028519270941615,-0.045902106910944]],[[0.039269793778658,-0.0092733846977353,-0.032663241028786],[0.038570951670408,-0.040910758078098,-0.035730101168156],[0.010513334535062,0.025131091475487,-0.029619762673974]],[[-0.064811944961548,-0.0056572793982923,0.088841378688812],[0.021833067759871,-0.084204353392124,-0.011483335867524],[-0.062115367501974,0.075991317629814,-0.01614486426115]],[[0.018496116623282,0.047579534351826,-0.072993643581867],[0.038847349584103,-0.024932025000453,0.013078031130135],[-0.074281275272369,0.092464342713356,-0.037935879081488]],[[0.0067031248472631,0.026121282950044,-0.038055505603552],[0.015018554404378,-0.010531973093748,0.010580088943243],[0.015690436586738,-0.029423929750919,-0.047397743910551]],[[0.030636828392744,0.037262156605721,-0.04888229072094],[-0.033621564507484,0.0078479293733835,0.010634070262313],[0.074385531246662,-0.023478703573346,0.012194068171084]],[[0.033424973487854,0.010489059612155,0.015647558495402],[0.053602792322636,0.014814985916018,0.0014132433570921],[0.029360897839069,-0.059966959059238,-0.092184133827686]],[[-0.0152294524014,-0.05328980460763,-0.10169955343008],[0.049499556422234,-0.084657892584801,0.054029133170843],[0.032159436494112,0.016204141080379,-0.057474747300148]],[[-0.11663223057985,-0.024628128856421,-0.0682058557868],[-0.018265692517161,-0.0091783860698342,-0.052443981170654],[0.02888054586947,0.031149694696069,-0.0042232600972056]],[[-0.0074376608245075,-0.018430462107062,-0.061401695013046],[0.018447736278176,0.037118408828974,0.002202587435022],[0.026747839525342,-0.01872817799449,0.034197855740786]],[[0.0095324162393808,0.0010851613478735,-0.018320254981518],[0.00047556779463775,0.0054853647015989,0.0079774744808674],[0.02915539033711,0.019399289041758,0.012629023753107]],[[0.023352818563581,0.034328907728195,-0.092623889446259],[-0.011166223324835,-0.017152110114694,-0.022323293611407],[-0.047132924199104,-0.087214834988117,-0.050762992352247]],[[0.029526498168707,0.10181505233049,-0.042645886540413],[0.033574383705854,-0.036374643445015,-0.12814077734947],[0.051598034799099,0.05762891471386,0.065000116825104]],[[0.0078962091356516,-0.0073578068986535,0.045277129858732],[-0.090394362807274,0.0328927077353,-0.0026785468216985],[0.0083129266276956,0.065175607800484,0.0093460967764258]],[[0.098208747804165,0.11357647180557,0.081609912216663],[0.084031231701374,-0.043494839221239,0.031720981001854],[0.047009274363518,-0.035540159791708,0.069964237511158]],[[-0.091306753456593,0.01396521832794,0.068526268005371],[0.010264346376061,0.0011793315643445,0.016003569588065],[0.030022151768208,0.048688244074583,-0.0082964664325118]],[[-0.012797513045371,0.030182031914592,-0.0059170150198042],[-0.021348241716623,-0.047936342656612,0.010965653695166],[0.023035377264023,-0.015499891713262,-0.004256643820554]]],[[[-0.051703605800867,-0.045219849795103,-0.094814106822014],[0.030582444742322,0.039573766291142,0.014252029359341],[0.013041785918176,-0.016108402982354,0.017309786751866]],[[-0.058720298111439,-0.00051512545906007,0.010602700524032],[0.026012253016233,-0.0045130751095712,-0.084019847214222],[-0.02076481282711,0.034180529415607,0.0065752794034779]],[[-0.030485572293401,0.02566159516573,0.014780991710722],[0.053570400923491,-0.030138965696096,0.018785953521729],[0.029744278639555,0.089870400726795,-0.062278527766466]],[[-0.033367875963449,0.011624169535935,-0.12841849029064],[0.012504167854786,-0.025773426517844,-0.0070717548951507],[0.087637007236481,0.041906014084816,0.056962762027979]],[[0.091961190104485,0.06330768018961,-0.020473236218095],[0.00022654636995867,0.098773330450058,0.069702066481113],[-0.056286569684744,-0.070471428334713,0.049204386770725]],[[-0.080802820622921,-0.0025266280863434,0.048443797975779],[-0.0061767520383,-0.032644275575876,-0.014476593583822],[0.037331078201532,-0.071258239448071,-0.02889147400856]],[[-0.024168038740754,0.061962779611349,-0.0492820776999],[0.054314929991961,-0.012588870711625,0.045153893530369],[-0.084091171622276,-0.014147409237921,0.02150410041213]],[[-0.058119714260101,-0.024800952523947,0.025633836165071],[-0.016650089994073,0.039665419608355,-0.038261041045189],[-0.050133101642132,0.00942596886307,-0.077359899878502]],[[-0.005967041477561,0.035086277872324,-0.056209973990917],[-0.011697771959007,0.037909023463726,-0.0080111734569073],[0.078824490308762,-0.021769249811769,-0.056483808904886]],[[-0.0038811864797026,-0.090664736926556,0.041307225823402],[0.012956543825567,0.033281072974205,0.073584236204624],[0.038843769580126,0.0099836494773626,-0.02764106541872]],[[0.013114540837705,-0.011219915002584,-0.043480735272169],[-0.012133811600506,0.018458094447851,0.038183972239494],[0.058446645736694,-0.027238244190812,-0.0055613447912037]],[[0.014022571034729,0.017259906977415,0.013236304745078],[0.063684388995171,0.07600013166666,0.029753623530269],[0.053232546895742,0.091144554316998,-0.024187924340367]],[[0.083992451429367,0.03347160294652,0.0056111984886229],[-0.051034830510616,-0.0094156814739108,-0.038699638098478],[0.054239187389612,0.088348172605038,0.036117196083069]],[[0.010457006283104,-0.052183959633112,-0.018028121441603],[-0.018964473158121,-0.0033138657454401,-0.0408975481987],[-0.057008724659681,0.015320332720876,-0.020291434600949]],[[-0.013710452243686,0.055498465895653,0.069423571228981],[0.075992420315742,0.050058398395777,0.01770325191319],[0.12037831544876,0.15242670476437,0.070832893252373]],[[-0.049076892435551,0.043669495731592,-0.020809926092625],[-0.034879226237535,-0.0077625140547752,-0.017253883183002],[-0.015336737968028,0.030710771679878,-0.011612589471042]],[[0.073208048939705,0.0036177486181259,-0.062097888439894],[-0.0094568617641926,0.0093287015333772,-0.053403303027153],[-0.035746544599533,-0.020812977105379,-0.055265430361032]],[[0.043161440640688,0.0051275878213346,-0.025247078388929],[0.023494336754084,-0.0048655332066119,-0.010668219998479],[-0.015257766470313,0.052127420902252,0.028568029403687]],[[0.0089924810454249,-0.0068769757635891,0.027688380330801],[-0.028630502521992,-0.017159953713417,0.036462608724833],[0.044276241213083,-0.075895227491856,-0.037776425480843]],[[0.01683128811419,0.0039634299464524,0.079336650669575],[0.059401880949736,0.051860049366951,0.046156600117683],[0.068723939359188,0.021390212699771,0.043171998113394]],[[0.042906805872917,0.07861714810133,-0.12161211669445],[-0.021874219179153,0.0044780666939914,0.026136349886656],[-0.035832867026329,-0.083427555859089,0.014596421271563]],[[-0.015661967918277,-0.022567113861442,-0.0071557736955583],[0.071883223950863,0.095014065504074,0.0059677469544113],[0.02144979685545,0.052302997559309,-0.077934823930264]],[[-0.002255531726405,0.0068882890045643,0.030779985710979],[0.010609364137053,0.055480372160673,-0.0084942141547799],[0.047900639474392,0.036517236381769,-0.029217775911093]],[[0.029160130769014,-0.036142710596323,0.050555068999529],[0.0055592455901206,-0.024498580023646,-0.0087235243991017],[0.0043516089208424,0.033215004950762,0.06976118683815]],[[-0.037720654159784,0.017000816762447,0.070611797273159],[0.027309520170093,0.025332255288959,-0.021924365311861],[0.013145761564374,-0.020679719746113,-0.032311804592609]],[[0.057070109993219,-0.0080826515331864,-0.082671314477921],[0.011138824746013,-0.0045960764400661,-0.004642894025892],[0.10555930435658,0.0044247000478208,-0.012162074446678]],[[0.030618054792285,0.027793517336249,0.049742367118597],[0.0057666380889714,0.023787807673216,0.0050348560325801],[0.074313603341579,0.107361741364,0.034901846200228]],[[-0.06280904263258,0.045489337295294,0.0023576815146953],[0.025123035535216,0.024810586124659,0.0095146922394633],[0.045650608837605,-0.055133130401373,0.053610630333424]],[[-0.00034563755616546,0.010020677931607,-0.01988622546196],[-0.0086717493832111,-0.03592374920845,-0.0098378071561456],[-0.004965343978256,0.054032232612371,-0.03614330291748]],[[0.03557325899601,-0.026254775002599,-0.023912953212857],[0.050870094448328,-0.051871612668037,-0.0075109703466296],[-0.072978861629963,-0.10456270724535,-0.0954799503088]],[[0.0032583582215011,-0.028254520148039,0.0066949259489775],[0.039623036980629,-0.047610737383366,0.0086505562067032],[0.029444953426719,0.02081753872335,0.028102470561862]],[[-0.011525229550898,0.071030139923096,0.075269982218742],[-0.035598628222942,-0.0176498927176,-0.050433848053217],[0.054433710873127,0.023524085059762,0.0094264326617122]],[[0.022187458351254,0.010456154122949,0.0056267227046192],[0.10299698263407,0.041218739002943,-0.034739911556244],[0.12541118264198,0.026544392108917,0.019903359934688]],[[-0.047614861279726,-0.10742747783661,0.020105298608541],[-0.014213299378753,0.010772223584354,0.011575492098927],[0.032167822122574,0.0087487054988742,0.068031288683414]],[[-0.020889304578304,-0.029178824275732,0.023624056950212],[0.042314641177654,-0.008717299439013,-0.02084593474865],[0.018031667917967,0.04890812933445,0.04106854647398]],[[0.014409259893,0.044969376176596,0.036119442433119],[-0.011905933730304,-0.0094345854595304,-0.017855975776911],[-0.012510006316006,0.04312913492322,-0.010723371990025]],[[0.022479765117168,-0.038298435509205,-0.092305645346642],[0.0080169336870313,-0.027873774990439,-0.020726855844259],[0.07499623298645,0.030959591269493,-0.057667199522257]],[[-0.012855316512287,0.0098710935562849,0.014215894043446],[0.080023244023323,0.011884337291121,0.061726294457912],[0.081447720527649,-0.025819050148129,-0.0061145247891545]],[[-0.032887406647205,-0.077979072928429,0.014949448406696],[-0.035294536501169,0.042693957686424,-0.033124160021544],[-0.013811720535159,-0.042845129966736,0.050943836569786]],[[0.0037358461413532,0.045730225741863,0.022851061075926],[-0.0043734982609749,0.030395360663533,0.067402981221676],[-0.045412685722113,0.024971568956971,0.00013390215463005]],[[0.031632345169783,0.017827967181802,0.064931802451611],[-0.0057445480488241,0.010191712528467,-0.0033860406838357],[0.05330328643322,0.022676914930344,-0.017485128715634]],[[-0.0083777457475662,0.039777163416147,-0.034115731716156],[-0.057505816221237,-0.013608779758215,-7.3596238507889e-06],[-0.026646746322513,-0.02915452606976,-0.014784988947213]],[[0.0087178144603968,-0.037889994680882,0.013885616324842],[-0.028947237879038,0.059824008494616,0.074792832136154],[0.0075179487466812,0.013677353039384,0.065401785075665]],[[0.038938947021961,-0.048375826328993,-0.021686531603336],[-0.0059258425608277,-0.05866189673543,0.068852156400681],[0.10791467875242,-0.059714287519455,0.029632639139891]],[[0.11595057696104,-0.016016228124499,0.025667492300272],[0.0071073584258556,0.059646606445312,-0.012924244627357],[-0.046699810773134,0.057186089456081,-0.073008224368095]],[[0.0086356624960899,0.066508583724499,0.015001157298684],[-0.0047825905494392,-0.068782262504101,-0.086174808442593],[0.016328472644091,0.0032252790406346,0.043411821126938]],[[-0.021841691806912,-0.0043054223060608,0.068883463740349],[0.0075712040998042,0.0076779606752098,0.012016511522233],[0.016232723370194,0.016184732317924,0.012364905327559]],[[0.091410033404827,-0.0048409500159323,0.069880664348602],[-0.013832240365446,0.07416494935751,0.012548280879855],[0.022716237232089,0.025426376610994,-0.018466522917151]],[[0.024087874218822,0.001792712835595,0.064729057252407],[0.027140008285642,0.0064871069043875,0.090297140181065],[-0.055185876786709,-0.025404362007976,-0.026441380381584]],[[0.00036391286994331,-0.028770377859473,0.038221068680286],[0.055930826812983,-0.015756083652377,-0.090388908982277],[-0.016260523349047,-0.013626271858811,0.036856286227703]],[[0.067003197968006,0.0061430986970663,-0.025093166157603],[-0.031247835606337,0.0093773677945137,-0.037289123982191],[0.060967978090048,-0.014338377863169,0.004811474122107]],[[0.035506445914507,-0.025349341332912,0.06175435334444],[0.024219306185842,0.060740452259779,-0.0014783988008276],[-0.11590632051229,0.015247093513608,0.010606158524752]],[[0.027769120410085,0.023426784202456,0.021967649459839],[-0.015500416979194,-0.067076481878757,-0.027382805943489],[-0.060724269598722,0.023634133860469,0.0081872195005417]],[[-0.0013067672261968,0.030413633212447,-0.010937783867121],[0.036667197942734,0.024558985605836,0.061675652861595],[0.036251131445169,0.082924671471119,0.0072394968010485]],[[-0.0014453649055213,-0.03502618521452,-0.021822782233357],[-0.017510903999209,-0.014320748858154,0.013842730782926],[0.055101934820414,0.082374446094036,-0.0066174422390759]],[[-0.018308898434043,0.064939223229885,0.032747492194176],[-0.027103304862976,-0.0056748664937913,-0.028602065518498],[0.036155920475721,-0.10078792273998,-0.010664002038538]],[[8.1961807154585e-05,-0.015104467049241,-0.009141274727881],[0.094575941562653,0.0017549536423758,0.12931883335114],[0.0077310688793659,-0.04668016731739,0.02115068025887]],[[0.0010240597184747,-0.045371636748314,0.0048273066058755],[0.026951661333442,0.030399158596992,-0.073775187134743],[-0.024167757481337,0.01111460197717,-0.052977208048105]],[[0.027840655297041,0.050829969346523,0.06125945225358],[0.024167643859982,-0.09529073536396,0.000661700963974],[0.067670717835426,-0.00085908576147631,-0.041762623935938]],[[-0.035683859139681,0.026162575930357,-0.039287872612476],[0.0070306714624166,0.03170071542263,0.037743449211121],[0.069760091602802,-0.035173177719116,-0.042315751314163]],[[0.00052399781998247,0.016648599877954,0.061030559241772],[-0.015506049618125,0.051566787064075,0.076489619910717],[-0.046660494059324,0.0271479729563,-0.018926486372948]],[[-0.090113289654255,-0.043288670480251,0.0041707083582878],[-0.0089825252071023,-0.039288926869631,-0.0010687905596569],[-0.0009921359596774,0.012728284113109,-0.1016042008996]],[[-0.027346312999725,0.0081750191748142,0.016939111053944],[0.014672030694783,0.043115671724081,0.024751307442784],[-0.04760343208909,0.042983442544937,0.006592352874577]],[[-0.011379103176296,0.0068619586527348,-0.036982219666243],[0.055015824735165,-0.017060447484255,0.032814253121614],[-0.030070118606091,-0.019104700535536,-0.0066282725892961]],[[-0.018437575548887,-0.0034922969061881,0.041571371257305],[-0.050619587302208,-0.020767772570252,-0.031476754695177],[0.082017533481121,0.044921055436134,-0.0079615106806159]],[[-0.01830929517746,0.034859009087086,0.030872542411089],[-0.049515414983034,-0.0095276702195406,0.074442729353905],[-0.0081054950132966,0.010021020658314,0.0098354071378708]],[[0.098426200449467,-0.051135987043381,-0.035534627735615],[0.12770572304726,0.068481668829918,-0.078721612691879],[0.047985583543777,0.0025236553046852,0.06045038998127]],[[0.035224139690399,0.027377026155591,-0.01140452362597],[0.10017088800669,-0.023852702230215,0.0022856956347823],[0.061975937336683,0.06402413547039,-0.0027156136929989]],[[0.0040886281058192,-0.0023984860163182,-0.001759021426551],[-0.076660089194775,0.067198552191257,0.029393514618278],[0.058941628783941,0.039442516863346,0.014428515918553]],[[0.025872591882944,0.018037647008896,-0.019060906022787],[-0.00847187358886,0.044766522943974,-0.017950525507331],[0.0497787296772,-0.014323079958558,0.020692674443126]],[[-0.055597648024559,0.063769727945328,-0.045106090605259],[0.044491522014141,0.018430693075061,0.041023574769497],[0.048035860061646,0.014197404496372,-0.013057671487331]],[[0.059487838298082,0.051753804087639,0.023114467039704],[0.099472522735596,-0.0023032636381686,-0.010144968517125],[0.0017657289281487,-0.0033194699790329,0.066637441515923]],[[0.033325050026178,-0.01380327437073,0.027657579630613],[0.044119492173195,0.051819119602442,0.032969769090414],[0.018910666927695,0.053251910954714,-0.016880130395293]],[[0.03985333815217,-0.0074743591248989,0.073876589536667],[-0.011849106289446,0.039311327040195,0.018684366717935],[0.0072019239887595,-0.075857326388359,-0.054745625704527]],[[-0.056209467351437,0.08464452624321,0.020261719822884],[0.035047825425863,0.0050123799592257,0.076078824698925],[0.040163323283195,0.030806915834546,0.060814846307039]],[[0.07789458334446,0.024899303913116,-0.022707434371114],[0.031689114868641,-0.027158023789525,-0.070637971162796],[0.035105053335428,0.00034247591975145,0.01753400452435]],[[-0.071631357073784,0.057295523583889,-0.013047923333943],[-0.024492762982845,0.0094629805535078,0.019933350384235],[0.08526761084795,-0.054561670869589,-0.041392151266336]],[[-0.063441999256611,0.070606514811516,-0.038448452949524],[-0.027830958366394,0.055721271783113,0.03921215608716],[-0.012727428227663,0.0063256681896746,0.043646540492773]],[[-0.027851179242134,0.058879822492599,0.024407740682364],[0.037800442427397,-0.014059991575778,0.031020952388644],[-0.085387095808983,-0.089716382324696,-0.090456917881966]],[[0.019680527970195,-0.041853792965412,0.020243210718036],[-0.019869215786457,0.057125736027956,-0.014721725136042],[0.042190078645945,0.027706546708941,-0.030390514060855]],[[0.065810896456242,-0.046192359179258,-0.016916567459702],[0.025497131049633,0.013267288915813,0.0076604704372585],[0.045302238315344,0.03826716914773,0.0010844086064026]],[[-0.013252101838589,-0.074488759040833,0.040816389024258],[0.05176081135869,0.051372416317463,-0.026022644713521],[-0.081266716122627,-0.07862750440836,-0.06117082759738]],[[-0.049411702901125,-0.04927770793438,0.079888731241226],[0.040479950606823,0.022967260330915,-0.016563838347793],[0.012747946195304,-0.0078231953084469,-0.033538740128279]],[[-0.023020856082439,-0.0089049786329269,0.074670366942883],[0.0077280513942242,-0.022047841921449,-0.039504308253527],[-0.057755168527365,0.035568758845329,-0.011982386931777]],[[0.011953448876739,-0.035367831587791,-0.025466255843639],[0.0038491236045957,-0.020884655416012,0.040961939841509],[0.014503976330161,-0.029105706140399,0.046340677887201]],[[0.031852930784225,0.043446004390717,0.016278609633446],[0.05629151314497,-0.022660288959742,0.072837375104427],[-0.044394731521606,0.070971764624119,0.0066268923692405]],[[-0.056042816489935,-0.010375861078501,-0.048416931182146],[-0.058040253818035,-0.030523758381605,-0.026245525106788],[0.0019109591376036,-0.023734780028462,-0.055243965238333]],[[0.041225451976061,0.036654282361269,-0.035462379455566],[-0.023661110550165,-0.014105300419033,0.012856278568506],[0.026641633361578,0.026820035651326,-0.039146237075329]],[[0.015445328317583,-0.0045604156330228,0.031629007309675],[-0.011277483776212,-0.051131378859282,-0.046062637120485],[-0.034720990806818,0.0071725524030626,0.08719315379858]],[[0.063828058540821,0.021424174308777,0.026098260655999],[0.038219846785069,0.05488308146596,0.023689584806561],[-0.08586622774601,0.059920966625214,0.0079469792544842]],[[0.0048755090683699,0.085541620850563,0.047462332993746],[0.057894378900528,0.0018602672498673,0.00021546892821789],[0.0091304173693061,-0.080937065184116,0.032434862107038]],[[0.010523208416998,-0.018174076452851,0.055252533406019],[-0.10208661109209,-0.0018684584647417,0.025274507701397],[-0.01373983360827,-0.012444120831788,0.016873262822628]],[[0.018168963491917,0.030667776241899,0.024991549551487],[0.05911036580801,0.03291903808713,0.017946301028132],[0.013301026076078,-0.045039389282465,0.002516723703593]],[[0.024311916902661,-0.014568804763258,0.031730893999338],[-0.0081598265096545,-0.0050387997180223,0.014604433439672],[0.058178182691336,-0.0046895197592676,-0.051056463271379]],[[0.0011662890901789,0.10434298962355,0.042574811726809],[-0.0038163380231708,-0.029610583558679,0.041773106902838],[0.030444396659732,0.0073144109919667,-0.0153400702402]],[[0.0070106280036271,-0.010845903307199,0.00038614543154836],[0.01215501036495,0.059717606753111,0.016152096912265],[-0.092320144176483,-0.03479777276516,-0.021358624100685]],[[-0.020748969167471,-0.054746482521296,0.029055688530207],[-0.08590842038393,-0.0018783083651215,-0.074945084750652],[0.0540511906147,-0.010033940896392,0.019034640863538]],[[-0.025666343048215,-0.0085365688428283,-0.0097995437681675],[0.064419969916344,-0.025185694918036,0.014779441058636],[0.040406484156847,-0.0018661402864382,0.010715262033045]],[[-0.033965889364481,0.002347192261368,-0.017773885279894],[-0.013709832914174,-0.0025221405085176,0.012983621098101],[0.0054060802794993,-0.047951430082321,-0.022888723760843]],[[0.10505900532007,0.010571194812655,0.06061153113842],[-0.065082408487797,0.042421877384186,0.034394323825836],[0.061033196747303,-0.01428996399045,-0.022603401914239]],[[-0.013252689503133,0.023903112858534,-0.026089251041412],[-0.07153395563364,0.085228309035301,0.020109672099352],[0.027319420129061,0.051931746304035,-0.024354072287679]],[[-0.03706032037735,0.065970078110695,0.025872813537717],[0.050509747117758,0.029514631256461,0.024241024628282],[-0.050997626036406,0.0024487837217748,-0.019127186387777]],[[0.034595750272274,0.024464527145028,-0.0043057384900749],[-0.032309763133526,0.023132558912039,0.035377368330956],[0.014617419801652,0.058728486299515,0.017230950295925]],[[-0.019447639584541,0.031633894890547,0.01805717498064],[0.029303260147572,-0.065180122852325,-0.097613573074341],[0.034483063966036,0.022923609241843,0.035762805491686]],[[0.056931409984827,-0.053458712995052,-0.01489815954119],[-0.026629591360688,-0.0019575718324631,0.046848833560944],[0.017288729548454,-0.0063348161056638,0.082767903804779]],[[0.023123916238546,0.026347607374191,-0.009768127463758],[-0.02544585429132,0.040153224021196,-0.0008795668836683],[0.024820243939757,0.053783722221851,0.027706209570169]],[[-0.027382738888264,0.094742529094219,0.052610293030739],[0.046732541173697,0.057896088808775,0.031397089362144],[0.075849339365959,0.066815108060837,0.02923297137022]],[[0.010570853948593,-0.079619944095612,-0.056455411016941],[-0.02058962546289,-0.051541030406952,-0.016365218907595],[-0.053577870130539,-0.003560078330338,0.011392486281693]],[[0.015451136045158,-0.022097490727901,0.04234579205513],[-0.007143069524318,-0.0057944166474044,-0.043527863919735],[-0.024686299264431,-0.025307916104794,0.015023251995444]],[[-0.047354627400637,0.079463519155979,0.055415078997612],[-0.038958415389061,-0.012301463633776,0.07034970074892],[-0.047992572188377,-0.011185389012098,0.03726789727807]],[[-0.050660453736782,-0.030365537852049,-0.031861808151007],[0.054701346904039,0.033668529242277,0.062937490642071],[-0.038570791482925,0.011698151938617,-0.023787250742316]],[[-0.0017973537323996,-0.06276860833168,0.069251142442226],[-0.039435349404812,0.0037232574541122,0.028408296406269],[0.015265950933099,-0.043271332979202,0.026609305292368]],[[0.062692329287529,0.019560031592846,-0.030835846439004],[-0.0054674656130373,0.0049623646773398,-0.02677015773952],[0.010356413200498,0.053326442837715,0.12064342945814]],[[-0.036902762949467,-0.044449515640736,-0.04824248701334],[0.073748558759689,-0.052687045186758,-0.025694632902741],[0.039812587201595,-0.010598491877317,-0.086113139986992]],[[0.056781280785799,0.073685400187969,-0.049085944890976],[-0.013779596425593,0.03726664185524,-0.014844173565507],[0.020640507340431,-0.047881659120321,0.026289392262697]],[[-0.064218491315842,-0.055104143917561,0.017060650512576],[0.04683380946517,-0.064113661646843,-0.0033424787689],[0.042282320559025,0.0012589521938935,0.032994445413351]],[[0.023604158312082,0.075551241636276,-0.0051932581700385],[-0.10030849277973,0.01694212667644,-0.025187712162733],[0.015809213742614,0.057041089981794,0.052821703255177]],[[0.00012243006494828,-0.043470468372107,-0.019533390179276],[0.05426311865449,-0.0086357500404119,0.009414529427886],[0.048992782831192,0.069664478302002,-0.041025433689356]],[[0.0034346897155046,-0.044282428920269,-0.021153178066015],[0.11926476657391,0.050073008984327,-0.023530330508947],[0.035935182124376,-0.035922709852457,-0.01084631960839]],[[-0.017733262851834,0.073200903832912,-0.07077544182539],[0.013150129467249,-0.062197476625443,-0.025681778788567],[0.031433697789907,-0.028141379356384,-0.020468233153224]],[[0.050250012427568,0.034676808863878,-0.072882980108261],[-0.033638089895248,0.012380897067487,0.037869285792112],[0.023878298699856,-0.00095931621035561,-0.010353159159422]],[[0.024429270997643,-0.02928956784308,-0.01061961427331],[0.031106108799577,0.098350957036018,-0.082691989839077],[0.00076378649100661,-0.017479641363025,0.01884389296174]],[[-0.011514264158905,-0.0050119138322771,0.031430389732122],[0.061730209738016,0.093387015163898,0.024383470416069],[-0.030307875946164,-0.020143395289779,-0.010744405910373]],[[0.033201180398464,-0.018275642767549,-0.052647292613983],[0.038708731532097,-0.014957386069,5.146336479811e-05],[-0.044100288301706,-0.065910533070564,0.11104051023722]],[[0.070750840008259,-0.058065302670002,-0.021197613328695],[0.020447647199035,0.015454748645425,0.073547542095184],[0.010132562369108,0.044134993106127,-0.012506542727351]],[[-0.065774165093899,0.041627403348684,-0.0075572682544589],[0.022400766611099,0.021686526015401,-0.064642705023289],[0.099939472973347,0.022197967395186,0.018924593925476]],[[0.074201703071594,-0.015355507843196,-0.02104146592319],[-0.049391694366932,0.012623941525817,0.039670117199421],[-0.0392478518188,0.0071052853018045,-0.022758552804589]],[[-0.025699909776449,0.063866473734379,-0.0088099865242839],[-0.008136929012835,-0.059757269918919,-0.018633060157299],[-0.032539952546358,0.020308293402195,-0.0083263777196407]]],[[[0.024210667237639,-0.070022217929363,-0.031860176473856],[0.011895778588951,-0.10008545219898,-0.014225081540644],[0.003494014730677,-0.028867390006781,-0.04413141682744]],[[0.012476735748351,0.04390399903059,0.030520789325237],[0.036392778158188,-0.029753539711237,-0.021383380517364],[0.020446352660656,-0.0085576586425304,-0.015959283336997]],[[0.0048046344891191,-0.026085937395692,-0.025383191183209],[0.0041891094297171,0.053194597363472,-0.0073502571322024],[-0.050732489675283,0.01389451790601,-0.018832750618458]],[[0.084583550691605,-0.020395630970597,0.022189432755113],[-0.0016672476194799,0.032993756234646,-0.041460666805506],[-0.037795834243298,0.036086689680815,-0.025237312540412]],[[-0.011900984682143,-0.11109762638807,0.031928423792124],[-0.034537363797426,-0.061468496918678,0.036089904606342],[-0.0057009714655578,0.009903946891427,-0.016571685671806]],[[0.0018169881077483,0.016160352155566,-0.061118636280298],[0.043796371668577,-0.09765612334013,-0.0052469950169325],[-0.049021571874619,-0.0049035656265914,-0.016586611047387]],[[-0.049275025725365,-0.033117797225714,0.031671050935984],[-0.032754860818386,-0.033188175410032,-0.04278701171279],[0.0048034763894975,-0.015855092555285,-0.023834051564336]],[[-0.00540782045573,-0.011593578383327,-0.037997078150511],[-0.057425770908594,-0.054386120289564,-0.020569643005729],[0.014988492242992,0.0023629653733224,0.05384198948741]],[[-0.029984140768647,-0.065387777984142,-0.017752597108483],[-0.030255606397986,-0.0016569690778852,-0.031540714204311],[-0.075248464941978,-0.047397147864103,-0.0031563595402986]],[[-0.050272542983294,0.0062835002318025,-0.10762549936771],[-0.095536775887012,0.02885409258306,-0.19557772576809],[-0.059177502989769,0.013220515102148,-0.098249882459641]],[[0.013789415359497,0.044247191399336,-0.056037489324808],[-0.032117046415806,-0.0052086412906647,-0.016533568501472],[-0.0037112801801413,-0.034322801977396,0.046963911503553]],[[0.010501180775464,0.026746524497867,-0.026870271191001],[-0.024120194837451,-0.0089995032176375,0.046116147190332],[0.018326669931412,0.027734197676182,-0.0069082714617252]],[[0.021811809390783,0.0077078528702259,-0.011139109730721],[-0.085131518542767,-0.041822053492069,0.050485823303461],[-0.0860346108675,0.071861788630486,0.067579098045826]],[[-0.027085782960057,0.066601447761059,0.011944661848247],[-0.0015744388801977,0.025016354396939,-0.13159115612507],[-0.043365012854338,-0.047334417700768,-0.064502641558647]],[[0.033427935093641,0.029024664312601,-0.062150627374649],[0.088658720254898,-0.12390252947807,-0.11720714718103],[-0.025048160925508,0.036102704703808,-0.086322233080864]],[[-0.01029069442302,-0.084517404437065,-0.0093558169901371],[-0.023223653435707,0.051515560597181,0.046211499720812],[-0.0075276610441506,-0.020227711647749,0.030601751059294]],[[-0.009230843745172,0.035791106522083,-0.016679167747498],[0.034506998956203,0.054342396557331,0.038939770311117],[-0.039933316409588,-0.021746069192886,0.094507843255997]],[[-0.029121482744813,0.0078852027654648,0.011439177207649],[-0.012688570655882,-0.017241481691599,0.055752746760845],[-0.034737005829811,0.0088917296379805,0.021143171936274]],[[0.077635265886784,-0.036967944353819,0.11569338291883],[-0.03424920514226,0.020748941227794,-0.028528146445751],[-0.0013721869327128,0.0092643350362778,-0.011959380470216]],[[-0.040977098047733,-0.023411056026816,-0.098006375133991],[-0.02926030009985,-0.01141612790525,-0.06222527474165],[0.034865148365498,-0.0085150161758065,0.022318689152598]],[[-0.018164457753301,0.0088308649137616,0.032419107854366],[-0.0020968157332391,-0.044981230050325,0.034831900149584],[-0.0044034048914909,-0.097488656640053,-0.076539047062397]],[[0.0091009894385934,-0.0045016137883067,-0.042773872613907],[0.0025497847236693,-0.051962055265903,0.010633180849254],[-0.0092180175706744,-0.066949933767319,-0.0025714540388435]],[[0.033669650554657,-0.072432845830917,-0.0047107031568885],[0.037120528519154,-0.0014819978969172,-0.087829530239105],[-0.031395465135574,-0.054767891764641,-0.040224734693766]],[[-0.0043939389288425,0.029409194365144,0.040592510253191],[0.020374376326799,-0.0020126681774855,-0.053609397262335],[0.0262615326792,-0.042782451957464,-0.048085059970617]],[[0.0013253645738587,-0.043564643710852,-0.016085466369987],[-0.0061461171135306,0.0084569351747632,0.037431132048368],[-0.0035857427865267,-0.061473518610001,0.029437478631735]],[[0.029686834663153,-0.083417952060699,0.0053549101576209],[0.048551365733147,-0.04167690128088,-0.060056306421757],[0.018704542890191,-0.024778574705124,0.019526647403836]],[[-0.064315773546696,-0.0023543157149106,0.087582983076572],[-0.020058445632458,-0.035507872700691,0.0032541970722377],[-0.056861020624638,-0.06731778383255,-0.01622106321156]],[[-0.022478742524981,-0.045147374272346,-0.013693325221539],[0.02203082665801,-0.0044547575525939,0.005494371522218],[0.098191373050213,-0.020351162180305,-0.003789963433519]],[[-0.016034604981542,-0.0025994430761784,-0.023300010710955],[-0.04695937037468,-0.045051623135805,-0.10109407454729],[-0.050693340599537,0.028783440589905,-0.019350586459041]],[[-0.021809162572026,0.0033730347640812,0.087397642433643],[-0.097775034606457,0.0072082136757672,0.0027103954926133],[-0.022507201880217,-0.021932179108262,-0.02832037769258]],[[-0.069784305989742,-0.011333211325109,0.02850354462862],[-0.089649856090546,-0.080582275986671,0.026775877922773],[0.014880674891174,0.0034293807111681,0.020889921113849]],[[0.018611932173371,-0.064663268625736,-0.039989523589611],[-0.022452255710959,-0.019214939326048,0.052004367113113],[0.04330476000905,0.087910287082195,0.062527745962143]],[[0.0089114243164659,-0.0054588024504483,0.014140975661576],[-0.022844856604934,0.064762338995934,0.075588829815388],[0.048480935394764,-0.016256222501397,0.02990778721869]],[[-0.064980246126652,-0.087068118155003,-0.052939236164093],[0.066268973052502,0.11422628164291,-0.0085882525891066],[0.068305388092995,0.016714995726943,-0.00011962011194555]],[[0.036635376513004,-0.025621427223086,0.014086433686316],[-0.057695377618074,-0.042530883103609,-0.026601612567902],[-0.041135735809803,-0.068183764815331,0.025720097124577]],[[0.034982796758413,0.00074224453419447,0.013692935928702],[-0.012728613801301,0.055788815021515,-0.0086771147325635],[0.00045086990576237,0.012347850948572,0.01600836776197]],[[-0.0046233413740993,0.018299149349332,0.01427192799747],[0.030591867864132,-0.054500345140696,0.006271265912801],[0.022169165313244,-0.011044931598008,-0.0031776346731931]],[[0.0028187688440084,-0.10826289653778,-0.06374691426754],[-0.074914768338203,-0.022461516782641,-0.019243959337473],[0.046324368566275,0.006318710744381,-0.059121452271938]],[[0.036645203828812,0.018650664016604,-0.0090598845854402],[-0.017955295741558,-0.081078581511974,0.059804372489452],[-0.049058575183153,0.046875707805157,0.061256170272827]],[[-0.0035221162252128,0.020778631791472,0.039987951517105],[-0.0041774590499699,0.018619500100613,-0.0056204083375633],[-0.052674762904644,-0.013553234748542,-0.015790486708283]],[[-0.0034152574371547,0.071001075208187,0.014821195043623],[0.040518246591091,-0.029148539528251,-0.043757494539022],[0.03620732948184,0.046347443014383,-0.046571768820286]],[[0.027325555682182,0.02773036248982,0.06060554459691],[0.010193568654358,-0.028823891654611,-0.07934645563364],[-0.00027181880432181,-0.013003433123231,0.045090351253748]],[[-0.049809597432613,0.03585284948349,-0.038294587284327],[-0.099444545805454,0.055825021117926,-0.046782568097115],[-0.058101177215576,-0.052946388721466,0.035754479467869]],[[0.04568887501955,0.021392399445176,-0.017052620649338],[0.012127852998674,-0.071009032428265,-0.0059162592515349],[-0.04658554494381,0.032384384423494,-0.06722329556942]],[[0.02629966661334,0.03500022739172,-0.016368543729186],[-0.028096284717321,-0.12220469862223,0.045104805380106],[-0.043796122074127,-0.060508407652378,0.038752295076847]],[[-0.069248467683792,0.0066663613542914,-0.059622328728437],[0.058250565081835,0.048413526266813,-0.074476793408394],[0.039304126054049,-0.025503372773528,-0.030617391690612]],[[-0.0071941362693906,-0.050489295274019,-0.057831645011902],[0.045444294810295,0.0052400310523808,-0.052075188606977],[-0.0067174336872995,0.0075490060262382,0.022212790325284]],[[0.046811819076538,-0.09295766800642,0.038920182734728],[-0.044925812631845,0.021723847836256,-0.061164665967226],[0.0067081935703754,-0.035907004028559,0.083255842328072]],[[0.082209855318069,0.0077581508085132,-0.023188462480903],[-0.0043814405798912,0.009714706800878,-0.0080075589939952],[-0.044580090790987,0.035029631108046,-0.051211584359407]],[[-0.023912658914924,-0.0092007517814636,-0.066456183791161],[-0.024930067360401,0.015662036836147,0.043005019426346],[0.015487751923501,-0.047915332019329,-0.059384502470493]],[[-0.032107122242451,-0.076743714511395,0.087747804820538],[0.025217203423381,0.016072485595942,0.064160406589508],[-0.061573825776577,-0.049995359033346,-0.049069210886955]],[[-0.020098648965359,0.048015214502811,0.01562284771353],[-0.047435265034437,-0.023067077621818,-0.0012408284237608],[-0.0099176513031125,-0.083864003419876,0.036546245217323]],[[-0.025296460837126,0.038757260888815,-0.008015020750463],[-0.018766276538372,-0.039058286696672,-0.0045917946845293],[0.026753224432468,0.036680147051811,0.038957253098488]],[[-0.0058511956594884,-0.018013317137957,-0.0082961190491915],[0.028808150440454,-0.027708379551768,-0.037655808031559],[-0.023765662685037,0.014532674103975,-0.044107213616371]],[[-0.010223599150777,-0.028615364804864,0.020632207393646],[-0.0077263494022191,0.083967424929142,0.05868436768651],[-0.0023209985811263,-0.042378284037113,0.0068913968279958]],[[-0.044039901345968,0.058735590428114,-0.034938465803862],[0.023923633620143,0.036891974508762,-0.0091287065297365],[-0.01607097312808,0.035241704434156,-0.055351585149765]],[[-0.0044707437045872,0.010659472085536,-0.0094789573922753],[0.016557959839702,-0.054514050483704,-0.017929002642632],[-0.02487107925117,-0.046650376170874,0.044470526278019]],[[-0.00106108316686,0.016505284234881,-0.014472748152912],[-0.071821369230747,0.020589884370565,-0.0062522916123271],[-0.0069216596893966,-0.00021854758961126,0.010843095369637]],[[0.09533815830946,0.010074051097035,-0.018964717164636],[0.06160894036293,0.013588534668088,0.044069949537516],[0.06211207062006,-0.038915023207664,0.042934481054544]],[[-0.014509028755128,0.016053762286901,0.014308037236333],[0.036573566496372,-0.061340250074863,0.042467322200537],[0.065935030579567,-0.065091833472252,-0.056656893342733]],[[-0.044976122677326,-0.0056183049455285,-0.065034210681915],[-0.043402913957834,-0.0065716281533241,0.015005334280431],[0.014540750533342,0.046724479645491,-0.041997451335192]],[[-0.014501729048789,-0.018206976354122,0.029311252757907],[-0.019879195839167,-0.0075173699297011,-0.040808297693729],[0.048431061208248,-0.056535001844168,-0.034582406282425]],[[-0.033737692981958,0.0065459706820548,0.013855435885489],[-0.0030258724000305,-0.0068602534011006,-0.025355361402035],[0.0012822997523472,0.0037393269594759,0.038765709847212]],[[-0.018772181123495,-0.070131585001945,-0.063218280673027],[-0.072222180664539,-0.027986936271191,-0.054052956402302],[0.024178793653846,0.056425329297781,0.022646442055702]],[[0.041520059108734,-0.028292760252953,-0.0007285475730896],[-0.03100723773241,0.0047348388470709,0.064204886555672],[-0.005316455848515,0.018263379111886,0.026362983509898]],[[-0.01931993663311,0.014865551143885,-0.024950351566076],[0.05975004658103,-0.077910333871841,0.07721135020256],[-0.0029405050445348,0.024070264771581,0.03741991892457]],[[-0.065796606242657,-0.0034397165291011,-0.0054154680110514],[0.0079603297635913,-0.08477658778429,-0.045345846563578],[0.011721970513463,-0.025712011381984,-0.072692476212978]],[[0.0087412316352129,-0.0600196570158,-0.0057773040607572],[0.0042634764686227,-0.0057680220343173,0.048495832830667],[0.0063176644034684,-0.025791883468628,0.032396491616964]],[[-0.045120157301426,0.030353404581547,-0.041440088301897],[0.013998604379594,-0.075076304376125,0.081645287573338],[-0.0089867692440748,-0.013384553603828,-0.0020004652906209]],[[-0.010544681921601,-0.0097196362912655,-0.046354092657566],[-0.00028915039729327,0.042834646999836,-0.019027836620808],[0.033652473241091,-0.11126863956451,0.0091943768784404]],[[-0.099587976932526,0.0023516877554357,0.023406876251101],[0.033554092049599,0.052348796278238,0.0092944847419858],[-0.01791244931519,-0.051412887871265,-0.049973886460066]],[[-0.044266175478697,-0.00024874706286937,0.052060376852751],[0.028561277315021,-0.085978873074055,0.013764389790595],[0.019693916663527,0.05475702136755,-0.0051372451707721]],[[-0.011141555383801,0.030313394963741,-0.00029976014047861],[0.018848149105906,0.018338264897466,-0.012469263747334],[0.0089849960058928,-0.026394259184599,0.056892391294241]],[[-0.037643078714609,0.0066122822463512,0.028003640472889],[-0.01918108202517,0.00027806969592348,0.0036613892298192],[-0.052905328571796,-0.043852385133505,0.072171844542027]],[[0.03682055324316,0.067394874989986,-0.0098764039576054],[-0.047182995826006,0.050702769309282,-0.051339063793421],[0.025906397029757,-0.045269578695297,0.03022038936615]],[[-0.05611677467823,-0.06424967944622,-0.032619711011648],[-0.015283301472664,0.070095591247082,-0.026361560449004],[0.011459077708423,-0.027109708636999,-0.078186608850956]],[[0.0048212371766567,-0.028650848194957,-0.0074039045721292],[0.054442103952169,-0.012299933470786,-0.048179626464844],[0.011203365400434,-0.0070740031078458,0.036869131028652]],[[0.021550785750151,-0.0094713270664215,-0.030221112072468],[-0.033944670110941,-0.014907221309841,-0.071891538798809],[0.00021831830963492,-0.032395850867033,0.022944875061512]],[[-0.12451320141554,0.05602103099227,0.02909461595118],[-0.020956816151738,-0.018684674054384,-0.0093092434108257],[-0.020909249782562,-0.065324433147907,-0.06308301538229]],[[0.016245774924755,0.0043402691371739,-0.021011436358094],[-0.018039224669337,0.049069449305534,-0.0029271349776536],[0.046363767236471,-0.019296996295452,-0.016400061547756]],[[0.0062242015264928,0.010977815836668,0.014505648985505],[0.0011661193566397,-0.057705406099558,-0.013631721958518],[-0.0091103231534362,-0.020324859768152,0.0035816784948111]],[[-0.017091181129217,-0.023190764710307,0.069445535540581],[-0.12964680790901,-0.03812138363719,-0.071026332676411],[-0.063063271343708,-0.021848438307643,0.010655528865755]],[[-0.0067878901027143,-0.062356241047382,-0.0069526769220829],[-0.044297117739916,0.0180898681283,0.046791903674603],[0.018775334581733,-0.052642043679953,-0.075264677405357]],[[-0.066506907343864,-0.085989564657211,0.01861685141921],[0.0036570183001459,0.0028561791405082,0.049400474876165],[-0.049789659678936,-0.061308041214943,-0.033103931695223]],[[-0.036555401980877,-0.026150286197662,-0.019502969458699],[-0.0061064725741744,-0.068834774196148,0.032983087003231],[-0.017310695722699,-0.0028569467831403,0.012319249100983]],[[0.034290410578251,-0.02814869210124,-0.0047999653033912],[-0.037027377635241,0.018532743677497,0.021042995154858],[0.036775842308998,0.0046957270242274,-0.012963351793587]],[[-0.029432110488415,-0.056654185056686,0.002460679737851],[-0.05539033934474,0.070078112185001,-0.025861226022243],[0.052389170974493,0.064798794686794,0.016814820468426]],[[0.0050458637997508,0.0013392437249422,-0.050250418484211],[-0.056819070130587,-0.00097102124709636,-0.024128371849656],[0.0032596632372588,0.039938967674971,-0.012941164895892]],[[-0.025209313258529,-0.0092810960486531,0.025535872206092],[0.051224187016487,0.062771081924438,-0.018486849963665],[0.011104639619589,-0.058997455984354,-0.0032009906135499]],[[-0.050424881279469,0.022442325949669,-0.039794564247131],[-0.055312316864729,-0.036303859204054,-0.0070190629921854],[-0.023438217118382,-0.043482061475515,-0.010933950543404]],[[-0.061952691525221,-0.008224313147366,-0.042336411774158],[-0.054412115365267,-0.015423180535436,0.011628518812358],[-0.0185153670609,-0.066298499703407,-0.017681866884232]],[[0.059165775775909,0.020949454978108,-0.0059801894240081],[-0.044984340667725,-0.038125071674585,-0.016274871304631],[0.055578216910362,-0.091470874845982,-0.045954506844282]],[[-0.031840704381466,0.0030181447509676,0.029219496995211],[-0.0044402349740267,0.03160497173667,-0.014777923002839],[0.001952211256139,0.019138801842928,-0.052618525922298]],[[0.0099028963595629,-0.014302191324532,-0.0081005170941353],[0.0039251642301679,0.018256489187479,-0.053790871053934],[-0.040341600775719,-0.03741741925478,0.012104550376534]],[[-0.0055272178724408,-0.014396646991372,-0.047472223639488],[0.0068478030152619,-0.041244845837355,-0.089164905250072],[-0.024435605853796,-0.066810794174671,-0.038224030286074]],[[-0.0020911716856062,0.086049288511276,0.0039117326959968],[-0.055800627917051,-0.062842935323715,0.066671006381512],[-0.030520455911756,-0.038657322525978,0.056754238903522]],[[-0.002568929689005,-0.01985196210444,-0.084088921546936],[0.09574231505394,0.014478071592748,-0.06993854790926],[-0.0088449735194445,-0.0051832809112966,0.021795677021146]],[[0.037204284220934,-0.028474554419518,-0.070660904049873],[-0.067472979426384,-0.057079803198576,-0.10241028666496],[0.00092840084107593,-0.052224431186914,0.017493942752481]],[[-0.0077264783903956,0.0057921395637095,-0.037450812757015],[-0.010153688490391,0.0075791566632688,0.020989403128624],[-0.015537829138339,0.011473825201392,-0.044075328856707]],[[-0.030708860605955,-0.052571266889572,0.0046057817526162],[0.02135998941958,-0.0013331231893972,-0.085565149784088],[0.063226833939552,-0.00055737094953656,0.10273482650518]],[[-0.051660556346178,0.074421927332878,0.0068328538909554],[-0.063319146633148,-0.018874427303672,-0.066586345434189],[0.057127926498652,-0.0036287715192884,-0.058808464556932]],[[-0.0027415179647505,-0.00079982954775915,0.011859193444252],[-0.045346315950155,-0.010157464072108,0.043241836130619],[-0.05288790166378,-0.0078663928434253,0.03486217930913]],[[-0.0039493725635111,-0.0093239517882466,0.065136030316353],[-0.026396874338388,0.011487700976431,0.10947261750698],[0.029670985415578,-0.019302360713482,-0.034123975783587]],[[0.0037619781214744,-0.039514865726233,-0.021876804530621],[-0.056244190782309,0.020191721618176,-0.0066602104343474],[0.021285628899932,0.0014581080758944,0.04533052816987]],[[-0.054169736802578,-0.042403910309076,0.040501952171326],[-0.087172314524651,0.011634490452707,0.04039004817605],[-0.055939141660929,-0.044415418058634,0.057044412940741]],[[0.0025012060068548,0.046282075345516,0.0097712725400925],[-0.018420988693833,-0.069676019251347,0.021157080307603],[0.029755152761936,0.0078737325966358,0.021072149276733]],[[-0.034921050071716,0.044176049530506,-0.082023337483406],[0.013730278238654,-0.026865009218454,0.035306975245476],[-0.027998687699437,-0.072640597820282,-0.045731037855148]],[[0.091234497725964,-0.015982888638973,0.0087760630995035],[-0.060800865292549,-0.037830445915461,-0.0025633084587753],[-0.0011107588652521,0.029636954888701,-0.021486604586244]],[[-0.034830566495657,-0.052045438438654,-0.0075654755346477],[-0.087434962391853,0.09080957621336,-0.080877915024757],[0.027552053332329,0.01914195343852,-0.02324123121798]],[[-0.020993063226342,-0.075386442244053,-0.0099527146667242],[-0.035736873745918,-0.045924488455057,0.071470677852631],[0.037775158882141,-0.01704054325819,0.011367678642273]],[[-0.026225408539176,0.10993164777756,0.031403124332428],[-0.024615418165922,-0.017425352707505,-0.041119042783976],[-0.0011250225361437,-0.049127269536257,0.011558565311134]],[[-0.012128467671573,0.047525674104691,-0.017819507047534],[0.050384648144245,0.053613800555468,-0.072258129715919],[-0.062959931790829,0.014062927104533,-0.046622548252344]],[[0.066803067922592,-0.10953259468079,-0.037006113678217],[0.042393788695335,-0.033657271414995,0.025164129212499],[-0.0013147494755685,-0.026217272505164,-0.016806257888675]],[[0.027325937524438,-0.061703510582447,0.0047146994620562],[-0.012248550541699,-0.0034310598857701,0.045194692909718],[0.053135443478823,0.014764806255698,0.0047450298443437]],[[0.011294449679554,-0.044116139411926,-0.042921539396048],[0.041038177907467,0.0048507018946111,0.040198359638453],[0.003727616276592,0.018758151680231,-0.011033407412469]],[[0.070707492530346,-0.0086146742105484,-0.023410584777594],[-0.029424341395497,-0.04940128698945,0.076568394899368],[-0.058579724282026,0.0016861319309101,-0.0005531165516004]],[[-0.036063704639673,0.028248189017177,-0.020127963274717],[0.032981142401695,-0.063215985894203,-0.048777911812067],[-0.0050270352512598,0.018758129328489,-0.021379642188549]],[[0.00048223810154013,-0.019483728334308,-0.067931190133095],[0.028063595294952,-0.065152190625668,0.0016790659865364],[-0.03429352492094,-0.0022301310673356,-0.042018461972475]],[[0.041650518774986,-0.0082284435629845,0.055028758943081],[-0.014028520323336,-0.00064146955264732,-0.016059415414929],[-0.028413593769073,0.015666905790567,0.078801319003105]],[[-0.045272901654243,0.079323641955853,0.019251216202974],[-0.020305557176471,0.07589241117239,0.050363630056381],[0.035744469612837,0.0075563653372228,0.022911829873919]],[[-0.056870743632317,-0.045212537050247,0.060553465038538],[0.068012252449989,-0.04895207285881,0.0063045169226825],[-0.017568802461028,0.0084588788449764,0.051920734345913]],[[0.022533014416695,-0.015490029007196,-0.013792016543448],[-0.034950882196426,-0.012267177924514,0.0032408027909696],[-0.054427828639746,0.012569719925523,0.057257145643234]],[[0.051178053021431,-0.047448247671127,-0.043944399803877],[-0.062423136085272,0.12490792572498,-0.017900565639138],[-0.019679898396134,0.062711916863918,0.019257241860032]],[[-0.023596445098519,0.024590553715825,0.052767459303141],[0.039994966238737,-0.0058784815482795,-0.032817129045725],[-0.038197748363018,0.012746131047606,-0.021342791616917]],[[0.014444557018578,0.075563222169876,-0.015832867473364],[0.037113655358553,-0.013265061192214,-0.0019602444954216],[0.022303065285087,-0.0091112162917852,-0.0039897346869111]],[[0.012236513197422,-0.07065586745739,-0.074518844485283],[0.046608924865723,-0.03180818259716,0.031533405184746],[-0.032447785139084,0.0086174961179495,-0.060837958008051]],[[0.090698733925819,0.0044470941647887,-0.020483754575253],[-0.010836214758456,-0.044786401093006,-0.018649280071259],[0.0041482797823846,-0.026636932045221,-0.074988678097725]],[[-0.080092832446098,-0.044349011033773,-0.087082780897617],[0.01988809928298,0.058700907975435,0.016793418675661],[0.053448896855116,-0.021479833871126,0.016037182882428]]],[[[-0.063337199389935,0.047685872763395,-0.010980398394167],[-0.027672389522195,0.037328615784645,0.0037975513841957],[0.02348099462688,0.10125939548016,-0.042730201035738]],[[0.0050241593271494,0.022199084982276,-0.042708281427622],[-0.014588733203709,-0.022968707606196,-0.050412863492966],[0.009712977334857,0.017659965902567,0.029616599902511]],[[0.027894860133529,-0.0085423355922103,-0.0042083137668669],[-0.018184537068009,0.014625994488597,-0.025710424408317],[-0.020577745512128,0.058703187853098,-0.025851016864181]],[[0.018155181780457,0.015207270160317,0.010873535647988],[0.024655686691403,0.0054512233473361,-0.034266602247953],[0.041250385344028,-0.0036526652984321,0.015466353856027]],[[0.035827618092299,-0.034489437937737,-0.041055992245674],[-0.024639802053571,-0.022243352606893,0.012113858014345],[0.032266791909933,-0.00056290067732334,-0.003299409057945]],[[0.028337739408016,0.061122700572014,0.033576045185328],[-0.049979452043772,-0.02817546389997,-0.018297815695405],[-0.026264104992151,0.0063389833085239,0.024039689451456]],[[-0.013060175813735,0.0012560898903757,-0.033826220780611],[-0.062961086630821,-0.0059529235586524,0.049782998859882],[0.037961971014738,0.072488635778427,-0.043581459671259]],[[0.025598987936974,-0.072797976434231,0.01639068312943],[0.0040039750747383,-0.01997746899724,0.039611354470253],[-0.022645926102996,0.03333168849349,0.0038948021829128]],[[-0.049489382654428,0.013165581040084,0.069501288235188],[0.012427616864443,0.067280866205692,-0.027210675179958],[-0.0070578674785793,-0.0026729311794043,-0.063882619142532]],[[0.008943147957325,-0.0081186927855015,0.010034792125225],[0.025757603347301,-0.053482659161091,0.055663093924522],[-0.031501017510891,-0.0064666024409235,-0.020245529711246]],[[0.0042625293135643,0.016914173960686,0.072881698608398],[-0.0082239033654332,-0.031999092549086,-0.012068014591932],[0.00019211547623854,0.020646248012781,0.028061807155609]],[[0.013854430057108,-0.0056263539008796,0.0052445949986577],[0.025506157428026,-0.01758923754096,0.058356579393148],[-0.014120844192803,-0.07360353320837,-0.0078356759622693]],[[0.020789906382561,0.0083513613790274,-0.025670809671283],[0.044367641210556,0.036463014781475,0.0060619381256402],[-0.014650943689048,-0.022082690149546,-0.072460003197193]],[[-0.016160203143954,0.019023258239031,-0.06888896971941],[-0.019318310543895,0.016444586217403,0.014573398977518],[0.032623011618853,-0.041632279753685,0.009407714009285]],[[0.03654595091939,-0.027862748131156,-0.0044005191884935],[0.039572037756443,-0.018884070217609,-0.026932947337627],[0.055548645555973,0.017846452072263,-0.033450052142143]],[[-0.037754260003567,0.038675300776958,-0.014420055784285],[0.0065807262435555,0.012713719159365,0.012081304565072],[-0.020741941407323,0.047066643834114,0.048828680068254]],[[0.11749906092882,-0.016561068594456,0.043718192726374],[0.029171701520681,0.033992040902376,0.03095549158752],[0.035257667303085,-0.029688216745853,-0.0067027197219431]],[[-0.022551042959094,-0.010821764357388,0.020363267511129],[0.015039859339595,0.097848705947399,0.031256474554539],[0.0067888721823692,-0.052778918296099,0.014035292901099]],[[0.016603615134954,-0.01755372621119,-0.015275817364454],[-0.085384912788868,0.014432691968977,0.063515096902847],[0.0027629791293293,0.029057040810585,0.030922755599022]],[[-0.0060192476958036,0.02521201223135,-0.052759028971195],[0.032380390912294,0.027783619239926,0.017731662839651],[0.042294003069401,0.02418109588325,-0.010471614077687]],[[0.0001861820492195,-0.0041920701041818,-0.011423663236201],[0.014943491667509,0.043936930596828,-0.038236919790506],[-0.073413342237473,-0.01651069894433,0.050326395779848]],[[-0.023042624816298,0.017552005127072,-0.0013919634511694],[0.04142664372921,0.078795060515404,0.063871219754219],[-0.02631825953722,-0.001802712562494,-0.049347039312124]],[[0.053598936647177,0.12526385486126,-0.023185081779957],[0.083512216806412,0.053188901394606,0.019729867577553],[-0.034889858216047,0.019367782399058,-0.00577871222049]],[[-0.0097185950726271,-0.065709799528122,-0.064047083258629],[0.044132303446531,-0.024387722834945,-0.036560881882906],[0.027415238320827,0.10620194673538,0.033724743872881]],[[0.0183628462255,0.0068178027868271,0.024893015623093],[0.04016249999404,0.01812100969255,-0.073812924325466],[-0.01642638258636,0.032304540276527,-0.0076608243398368]],[[-0.019891051575541,0.028080821037292,0.033314369618893],[0.0071534039452672,-0.088153973221779,-0.059277191758156],[0.03121854737401,0.017345577478409,0.018114134669304]],[[0.016944976523519,0.013388820923865,-0.026083063334227],[0.025658998638391,-0.015315955504775,-0.022981464862823],[-0.015824100002646,-0.050917360931635,-0.044917199760675]],[[0.058562375605106,-0.090671293437481,-0.054184809327126],[0.057458117604256,0.058049570769072,0.0014207663480192],[0.031465243548155,0.0071527450345457,-0.066167570650578]],[[-0.0067429929040372,-0.015619427897036,-0.034139294177294],[0.01729135401547,-0.018202988430858,-0.011140644550323],[0.017987105995417,0.11329279839993,-0.017312394455075]],[[0.068530522286892,-0.017137913033366,-0.068931937217712],[0.0019778001587838,-0.0047094346955419,-0.026204574853182],[-0.09016777575016,0.035892110317945,-0.0031405419576913]],[[0.058812685310841,-0.083070158958435,-0.042097400873899],[0.042604688555002,-0.0030825063586235,0.047509618103504],[-0.062501423060894,-0.023603180423379,-0.017624571919441]],[[0.061860658228397,-0.027742112055421,-0.049781579524279],[-0.048891305923462,-0.011518877930939,-0.0043755676597357],[0.10465085506439,0.0015983139164746,-0.031792320311069]],[[0.083688080310822,0.022881718352437,-0.075352415442467],[-0.014366323128343,0.081397578120232,-0.036387417465448],[-0.012025557458401,-0.008923253044486,-0.0022536623291671]],[[0.026847055181861,0.015138261020184,0.026423696428537],[0.049082811921835,-0.021870946511626,-0.09399189054966],[0.020218789577484,0.035233672708273,0.082371905446053]],[[-0.012931935489178,-0.037248142063618,-0.065575055778027],[-0.051143549382687,0.04806786775589,-0.016230147331953],[0.026406720280647,-0.01733823120594,0.011900714598596]],[[0.0029018763452768,0.06631538271904,-0.083783276379108],[-0.048715583980083,0.036272883415222,0.025964394211769],[0.057743664830923,-0.025110548362136,-0.032832216471434]],[[0.093089424073696,-0.0087397117167711,-0.033785920590162],[-0.07397548109293,0.028917234390974,0.075408689677715],[0.037230964750051,-0.023663725703955,-0.060407295823097]],[[-0.025736659765244,0.022311372682452,0.034383930265903],[-0.029830429702997,0.028937002643943,0.074523635208607],[0.019556825980544,0.023331437259912,0.036842089146376]],[[-0.06598274409771,-0.0043609673157334,-0.03434931859374],[-0.055653169751167,0.010159744881094,-0.01425748039037],[0.077323131263256,0.04296201094985,-0.01219592615962]],[[0.066693514585495,-0.0031015009153634,0.011735199019313],[0.09663387387991,0.023914877325296,0.00042501749703661],[-0.048867397010326,-0.0021046283654869,0.041950281709433]],[[0.097734518349171,0.09074079990387,-0.067606091499329],[0.0077961185015738,-0.0039156745187938,-0.072315782308578],[0.050348062068224,-0.050282631069422,-0.024503292515874]],[[0.022352714091539,0.055628668516874,-0.0052787321619689],[-0.00080419040750712,-0.06425005197525,-0.053966823965311],[0.033196184784174,-0.089791730046272,0.094668731093407]],[[-0.026034526526928,-0.027437208220363,0.055960610508919],[0.031385745853186,-0.011276031844318,0.018476905301213],[0.043874826282263,0.036732662469149,0.038893382996321]],[[0.033261995762587,0.0022973732557148,0.0014209458604455],[0.043724119663239,-0.013459227047861,-0.019321637228131],[0.03250028192997,0.030004722997546,0.012859213165939]],[[-0.034555990248919,0.0051423120312393,-0.003576209070161],[0.018235130235553,0.033744819462299,0.0063192513771355],[0.064526230096817,-0.07097364962101,-0.0053845336660743]],[[0.034800264984369,0.015139875933528,0.021649368107319],[-0.046173922717571,0.047321557998657,-0.050135459750891],[-0.038654662668705,0.025672415271401,0.005139566026628]],[[0.055967252701521,-0.051491137593985,-0.003204180393368],[-0.0055827014148235,-0.024857766926289,0.06548985093832],[0.036046791821718,0.0044653872027993,-0.039204992353916]],[[-0.014174239709973,0.0040471572428942,0.012409817427397],[0.045454308390617,0.063428469002247,0.0052188425324857],[-0.086095727980137,-0.044721718877554,0.063371106982231]],[[-0.018773786723614,0.005430328194052,0.025307090952992],[0.027751771733165,0.02111622877419,-0.049616374075413],[0.035943441092968,-0.027283290401101,0.036458935588598]],[[0.047289665788412,0.091991387307644,-0.098453596234322],[0.019094191491604,-0.02135743573308,0.037090543657541],[0.055992670357227,-0.06117856502533,-0.095090121030807]],[[0.052327115088701,-0.05815514922142,-0.0086813988164067],[-0.060379263013601,0.055369853973389,-0.018237564712763],[0.043834991753101,0.024498332291842,0.066681198775768]],[[-0.035418264567852,0.074256971478462,-0.04545683786273],[0.019832961261272,-0.0074693276546896,-0.027613816782832],[0.0076513555832207,-0.023813880980015,0.057209365069866]],[[0.029831321910024,-0.020596576854587,-0.021134862676263],[-0.031616326421499,0.047713212668896,-0.0082963733002543],[0.026845194399357,0.034344907850027,-0.014569039456546]],[[-0.022685589268804,-0.025508537888527,-0.019023323431611],[0.027374280616641,-0.0053152651526034,-0.040647514164448],[-0.034570511430502,-0.018093150109053,0.070408523082733]],[[0.066613428294659,-0.050073515623808,0.036558035761118],[0.038019724190235,-0.046557225286961,-0.00049354153452441],[-0.061225261539221,0.076993919909,-0.049831096082926]],[[0.0098963035270572,-0.027158312499523,0.054973267018795],[-0.013498486019671,0.018256656825542,-0.10977701842785],[0.15662524104118,-0.048037886619568,0.033315479755402]],[[0.026028515771031,0.031366858631372,-0.0028270157054067],[0.014158483594656,0.032903589308262,-0.017808170989156],[0.016108918935061,0.055390302091837,-0.046153720468283]],[[0.037526171654463,-0.0014582365984097,-0.024922726675868],[0.035475496202707,0.01428468991071,0.016142820939422],[0.042400367558002,-0.0096124820411205,-0.021706864237785]],[[-0.071241229772568,0.043446131050587,0.05284757912159],[-0.069032914936543,0.03176175057888,0.052718833088875],[0.02468472905457,0.015868367627263,-0.059501592069864]],[[-0.027045089751482,0.031250230967999,-0.013604101724923],[0.1202404499054,0.053938705474138,0.024928290396929],[0.057261269539595,-0.083380207419395,-0.042340289801359]],[[-0.064885333180428,0.051046501845121,0.025110768154263],[-0.016927165910602,0.025903014466166,0.010522427968681],[-0.0070469076745212,0.02578648366034,-0.036987628787756]],[[0.020410813391209,-0.025785719975829,-0.020460529252887],[-0.054608158767223,-0.05578837916255,-0.069804042577744],[-0.050006538629532,0.0092206606641412,-0.020664123818278]],[[0.02812098711729,0.032472785562277,0.083149522542953],[0.0059146056883037,0.012856776826084,-0.002292521065101],[-0.018553029745817,0.016809370368719,0.051030203700066]],[[-0.024142935872078,0.0071090674027801,0.056238085031509],[0.012262286618352,-0.0023350024130195,-0.016003176569939],[0.038057807832956,0.013392373919487,0.028379337862134]],[[-0.010736372321844,-0.024282639846206,-0.020179770886898],[0.10512988269329,0.068830914795399,0.017144795507193],[0.005350308958441,0.01462137978524,-0.032126646488905]],[[0.025541838258505,0.069098435342312,-0.023268632590771],[-0.091626174747944,0.076774045825005,0.010840914212167],[0.040561683475971,0.021083751693368,0.11298489570618]],[[-0.033804010599852,0.0045442525297403,0.039160329848528],[-0.036020249128342,-0.034443978220224,-0.068428426980972],[0.0017556935781613,0.020939772948623,0.042571179568768]],[[0.035883154720068,-0.014814639464021,-0.015073975548148],[-0.018079023808241,-0.0060044364072382,-0.0011761867208406],[0.033940859138966,0.047483399510384,-0.017323266714811]],[[0.0034574321471155,0.015288161113858,0.040035761892796],[-0.02079308591783,-0.028669893741608,0.028949799016118],[-0.0074895336292684,-0.027302959933877,0.037920612841845]],[[-0.010448582470417,0.0045332959853113,0.01295761205256],[-0.048465833067894,0.0019354044925421,0.021224008873105],[0.024911275133491,0.0005523370928131,-0.026885943487287]],[[0.0057228249497712,-0.041889034211636,0.019413977861404],[-0.016042683273554,-0.033321812748909,0.028762873262167],[-0.022031106054783,-0.025101240724325,-0.057848855853081]],[[-0.0040167197585106,-0.034921318292618,0.019911278039217],[0.023778496310115,0.02521158196032,0.014827557839453],[-0.074793435633183,0.054081726819277,-0.052192911505699]],[[-0.0054578990675509,0.028344025835395,0.04243553429842],[-0.0083882380276918,-0.074756763875484,0.066322162747383],[-0.037004265934229,-0.0040104575455189,-0.01411097496748]],[[-0.036849867552519,-0.059623342007399,-0.069722302258015],[-0.017243837937713,0.012823976576328,-0.046376585960388],[-0.049129955470562,0.062225334346294,0.018304094672203]],[[0.018117049708962,0.0011283596977592,0.093934662640095],[0.05439155548811,-0.015457040630281,-0.020249649882317],[-0.05085763335228,-0.03097914531827,-0.025661610066891]],[[-0.011256451718509,0.016072208061814,-0.024767227470875],[-0.010824018158019,0.012579394504428,-0.036659762263298],[-0.026382895186543,-0.0082406615838408,0.025181306526065]],[[0.016920853406191,-0.026495769619942,-0.017222266644239],[-0.031814571470022,0.014285054057837,-0.043915268033743],[-0.024802163243294,0.047225754708052,-0.012466125190258]],[[-0.0089473845437169,0.061423745006323,0.029087347909808],[-0.00035394821316004,0.0072112991474569,-0.024376634508371],[0.025245767086744,-0.023013575002551,0.05272213742137]],[[0.016906863078475,-0.034968566149473,0.012519429437816],[-0.028577825054526,0.0012411051429808,-0.035088416188955],[0.014799485914409,-0.0015307980356738,-0.01476523000747]],[[0.035083506256342,0.043603163212538,-0.0065765511244535],[0.0051825921982527,0.026131542399526,-0.029794534668326],[0.028389345854521,-0.0469144359231,0.023378595709801]],[[-0.034937180578709,-0.027185158804059,0.072795882821083],[0.046755168586969,0.0030278023332357,0.016939125955105],[0.024503557011485,0.019242720678449,0.010469378903508]],[[0.056716162711382,0.018012624233961,0.082414954900742],[-0.0082098431885242,-0.064844980835915,0.01434491854161],[-0.11619890481234,-0.032622333616018,0.034464538097382]],[[0.013461350463331,-0.0020727401133627,0.031125197187066],[-0.029658451676369,-0.055531863123178,0.023582831025124],[-0.0053229322656989,0.0095983855426311,0.025611953809857]],[[0.060384288430214,0.051946263760328,-0.02741608582437],[0.005619945935905,-0.047956325113773,0.014789242297411],[-0.0050836787559092,-0.071612678468227,0.031573090702295]],[[-0.014203937724233,-0.032253462821245,-0.052915040403605],[0.015369131229818,-0.12287357449532,0.073779121041298],[-0.010174418799579,0.012128198519349,0.033218532800674]],[[-0.068181283771992,0.010597038082778,0.042358051985502],[0.0026844111271203,0.0222078692168,-0.055897258222103],[0.019750641658902,0.043275196105242,0.034980043768883]],[[-0.02299852669239,0.023206431418657,-0.034027222543955],[-0.035755779594183,-0.031483110040426,0.034309063106775],[-0.019477065652609,0.077475257217884,-0.0025791672524065]],[[0.023085514083505,0.02789787016809,-0.088436834514141],[-0.032903671264648,0.030129704624414,-0.014665892347693],[0.034200429916382,0.033615048974752,0.027528900653124]],[[0.093164414167404,-0.01422054041177,-0.073670618236065],[-0.021729907020926,0.0026974251959473,0.025510115548968],[0.039243083447218,-0.059152752161026,0.029382104054093]],[[-0.016760786995292,0.025116706266999,-0.068068288266659],[0.061485100537539,0.012983315624297,-0.016884936019778],[0.040158145129681,0.020190173760056,0.020226810127497]],[[-0.015537746250629,-0.023849487304688,-0.023585010319948],[-0.010370532050729,0.0811737626791,0.033574476838112],[0.033511310815811,-0.014613559469581,0.023937413468957]],[[0.019964270293713,0.03312711417675,-0.04344005510211],[-0.018134657293558,0.02589894272387,-0.018286161124706],[-0.061492417007685,0.028788261115551,0.071902841329575]],[[-0.022433144971728,0.0024621533229947,-0.0089274626225233],[-0.048898201435804,0.012823042459786,0.0015696873888373],[-0.02388540096581,-0.066878348588943,0.018897350877523]],[[-0.052172813564539,0.0431142821908,-0.0013792183017358],[0.033809885382652,-0.034806989133358,-0.050307434052229],[0.03143410012126,-0.06030286476016,-0.0072256997227669]],[[0.014388255774975,0.0069123129360378,-0.025868389755487],[-0.047250404953957,0.056477449834347,-0.089767813682556],[-0.0044071711599827,0.073046214878559,-0.046885821968317]],[[0.017850091680884,0.0038908643182367,-0.00049112760461867],[0.063455328345299,0.015237425453961,0.026101322844625],[0.026425676420331,0.097393587231636,0.01169450301677]],[[0.005747580435127,-0.00083140737842768,-0.049034025520086],[0.050767738372087,-0.013237657025456,-0.030322227627039],[0.075446747243404,0.019375268369913,-0.011921928264201]],[[0.033538889139891,-0.077072441577911,0.061917383223772],[-0.067869424819946,-0.032682683318853,-0.017619229853153],[0.11113929748535,-0.0059311822988093,-0.026692217215896]],[[-0.033927898854017,-0.054908260703087,0.012458402663469],[0.019311849027872,0.051157388836145,-0.020151322707534],[0.00047611145419069,0.015810802578926,-0.013715215027332]],[[-0.033794421702623,-0.034627985209227,0.047844916582108],[-0.0032431448344141,-0.0016960430657491,-0.010924011468887],[-0.018445188179612,0.0012502011377364,0.0082893893122673]],[[0.012637329287827,0.040293302386999,0.068133123219013],[-0.083443142473698,-0.035556685179472,0.023075245320797],[0.053516380488873,0.077534280717373,0.022148877382278]],[[-0.011141537688673,-0.044560648500919,0.032534189522266],[0.018254129216075,-0.059824794530869,0.006093205884099],[-0.027716401964426,-0.014041653834283,0.032663125544786]],[[-0.020683649927378,-0.0072895274497569,0.046711005270481],[-0.037158582359552,-0.0022189223673195,-0.01855849660933],[-0.053175639361143,-0.072024188935757,-0.0081369429826736]],[[-0.013752032071352,-0.017277160659432,-0.057539504021406],[0.013260601088405,0.011340602301061,-0.028707640245557],[-0.047342162579298,-0.10203373432159,0.011651743203402]],[[0.014055769890547,0.0636220946908,-0.033712528645992],[-0.0099684521555901,0.069709308445454,-0.021517645567656],[-0.049077831208706,0.01960851252079,-0.010527717880905]],[[-0.0056487787514925,-0.0033546765334904,0.0021025952883065],[-0.036367084830999,-0.045063473284245,-0.058506313711405],[0.025559293106198,-0.026817766949534,-0.0021697673946619]],[[-0.040020853281021,0.021441729739308,0.067136101424694],[0.0058080251328647,-0.019352538511157,0.0069407895207405],[-0.040115624666214,0.073734790086746,-0.0020421114750206]],[[-0.0044467253610492,-0.069892935454845,0.056361377239227],[0.052643362432718,-0.023447062820196,0.026033781468868],[0.018157629296184,-0.051009833812714,0.02435015514493]],[[-0.0079677263274789,-0.0085481917485595,-0.0084963319823146],[0.016569411382079,0.041748385876417,-0.012435355223715],[-0.073237642645836,0.050957895815372,-0.079116933047771]],[[-0.093235321342945,-0.039002925157547,-0.056578643620014],[-0.034851673990488,-0.03598727285862,-0.0044371322728693],[-0.027773067355156,-0.020825941115618,-0.064954712986946]],[[0.040672685950994,0.022741161286831,0.083750210702419],[0.01055171713233,-0.027322355657816,0.032349869608879],[0.0094477888196707,0.06378286331892,0.024560632184148]],[[-0.054992284625769,-0.024187356233597,-0.025632819160819],[-0.066844947636127,0.053566813468933,-0.047916144132614],[-0.041767813265324,-0.02954144962132,-0.061077158898115]],[[0.021982673555613,0.059137307107449,-0.050396591424942],[0.023051438853145,0.0045776651240885,-0.040383156388998],[0.073584727942944,-0.028808059170842,-0.029152439907193]],[[0.016038624569774,-0.055866599082947,-0.01736007630825],[0.017474690452218,-0.034858867526054,-0.010632208548486],[0.043156560510397,-0.039195884019136,0.019727017730474]],[[0.0037824406754225,0.035438790917397,-0.014372036792338],[0.012436101213098,0.035306125879288,-0.038963943719864],[0.016237325966358,-0.0088629825040698,-0.018237425014377]],[[-0.052347436547279,-0.059100352227688,-0.058919228613377],[0.059733334928751,-0.0019506458193064,-0.026399021968246],[-0.13958412408829,-0.10187647491693,0.032129719853401]],[[0.03653009980917,0.015751861035824,-0.0032057918142527],[0.0079336045309901,-0.042484920471907,0.046630177646875],[0.024804383516312,0.065920159220695,-0.0004121158272028]],[[0.057133536785841,0.0087493630126119,-0.013356560841203],[0.040117219090462,-0.050356298685074,0.032086815685034],[0.00017862842651084,0.014473191462457,0.012712644413114]],[[0.008007843978703,-0.016394821926951,-0.009756850078702],[-0.061403304338455,-0.0150589896366,0.017880776897073],[-0.052780278027058,0.01007392257452,-0.038859508931637]],[[0.027477713301778,-0.058800481259823,-0.00062744820024818],[-0.027076004073024,0.027284819632769,0.059654727578163],[-0.0062332847155631,-0.036968629807234,-0.0080858860164881]],[[0.022585531696677,-0.029177324846387,-0.018359687179327],[0.052077814936638,0.061221946030855,0.036480918526649],[-0.021771965548396,-0.028956990689039,-0.079122073948383]],[[-0.081647776067257,0.025221602991223,0.07589465379715],[0.066618487238884,0.016077376902103,0.057680245488882],[-0.018194530159235,-0.042888067662716,0.010769007727504]],[[-0.024763790890574,0.032829198986292,0.024945382028818],[-0.07871949672699,-0.0055537335574627,-0.055055491626263],[-0.062474813312292,0.03971154987812,-0.01548083126545]],[[0.060699712485075,-0.029264204204082,-0.086580544710159],[-0.081634290516376,-0.053186342120171,-0.018153194338083],[0.011904716491699,-0.00748683931306,-0.061674937605858]],[[0.025236027315259,0.030857425183058,0.01136838644743],[0.00031714455690235,-0.016271166503429,-0.068807080388069],[0.015088433399796,-0.0064127575606108,0.036993116140366]],[[-0.011491696350276,-0.031172079965472,0.061251677572727],[-0.055976219475269,0.010641075670719,0.026034088805318],[-0.0061568589881063,0.047220639884472,0.00068329687928781]],[[-0.039267830550671,0.0030633858405054,0.01570282317698],[0.024757251143456,0.041245277971029,-0.11461697518826],[0.028181014582515,-0.023090155795217,0.022036097943783]],[[0.025612086057663,-0.036403011530638,-0.0086993593722582],[0.066969729959965,-0.034848034381866,-0.036452703177929],[0.000701351207681,-0.023911390453577,-0.091385751962662]]],[[[0.0009808698669076,0.051248382776976,0.009571404196322],[0.03333081677556,-0.050069395452738,-0.082311198115349],[0.0088501013815403,0.016842385753989,-0.015939069911838]],[[0.03113061375916,-0.0594652146101,0.092256337404251],[0.016344428062439,0.09825374931097,-0.0021928548812866],[-0.013913906179368,0.060210302472115,0.037095919251442]],[[0.065776415169239,0.0099939927458763,-0.037931598722935],[-0.0032525104470551,-0.0071465130895376,-0.13321028649807],[-0.0075169457122684,-0.028621602803469,-0.024533143267035]],[[0.034371886402369,0.0024273390881717,-0.075036831200123],[0.025699459016323,-0.0014619500143453,-0.12769982218742],[-0.0072123012505472,0.050897609442472,0.034484948962927]],[[0.04234653711319,-0.0088064316660166,-0.13413545489311],[-0.023613676428795,-0.017429079860449,-0.023835198953748],[0.020096158608794,-0.055613752454519,-0.065214551985264]],[[-0.03966760635376,0.042652059346437,0.060526296496391],[-0.017836337909102,0.050686709582806,0.11195462197065],[0.10819315165281,0.056454114615917,-0.011878114193678]],[[0.068816237151623,-0.071441739797592,0.086834885179996],[-0.028829254209995,0.013416651636362,-0.07703472673893],[-0.013800304383039,-0.0028872827533633,-0.031951483339071]],[[0.052274029701948,0.012516816146672,-0.080952741205692],[-0.012844019569457,-0.05322140827775,0.030678890645504],[0.019934995099902,-0.033211704343557,-0.0093533452600241]],[[-0.039741743355989,-0.00082816352369264,-0.050894614309072],[0.021515153348446,-0.0024370341561735,0.05757911875844],[0.060527022927999,0.064428463578224,0.044272243976593]],[[0.097737587988377,0.17331747710705,0.085441865026951],[0.14960508048534,-0.0071981232613325,0.047329179942608],[0.16506837308407,0.018928406760097,0.21103085577488]],[[-0.048751123249531,-0.0085511719807982,0.069625049829483],[-0.062390055507421,0.036919198930264,-0.054869901388884],[0.0088796010240912,-0.0042096800170839,0.013097173534334]],[[0.016338173300028,0.049955498427153,0.031154295429587],[0.027706135064363,-0.063051261007786,0.022675665095448],[0.06113450974226,0.046907439827919,0.035583041608334]],[[0.006771526299417,0.028294546529651,-0.013543813489377],[0.0746725872159,0.014664866961539,0.05517153441906],[-0.066380821168423,0.046914216130972,0.0142907705158]],[[0.0172438044101,-0.0056041670031846,0.072487629950047],[-0.079850822687149,0.048018980771303,-0.022679006680846],[-0.029729658737779,0.0025241943076253,-0.047369204461575]],[[0.038575623184443,0.11210789531469,0.17646864056587],[0.12002884596586,-0.038118731230497,0.092287003993988],[0.017059721052647,0.12643291056156,0.17109528183937]],[[-0.062134142965078,-0.042900998145342,0.035622604191303],[-0.043416380882263,-0.048908110707998,-0.063795261085033],[-0.024175442755222,-0.0033338277135044,-0.052905216813087]],[[0.023872874677181,0.024919847026467,0.057436808943748],[-0.0084665473550558,0.017961487174034,0.028607258573174],[-0.018559772521257,-0.037437703460455,0.023384310305119]],[[-0.058829732239246,0.038483150303364,-0.021494906395674],[-0.064078375697136,0.04656421020627,-0.082502655684948],[-0.045580983161926,-0.094573616981506,-0.0069785644300282]],[[-0.077270500361919,-0.010821588337421,0.054924320429564],[-0.0091440686956048,0.032221905887127,-0.014614779502153],[-0.0092082396149635,-0.056862991303205,-0.0080681061372161]],[[0.035061523318291,0.022019427269697,0.081083200871944],[-0.012612465769053,0.053299870342016,0.038934078067541],[-0.069009855389595,-0.015057675540447,0.075131610035896]],[[0.042388491332531,0.02485011331737,-0.015161372721195],[0.050705086439848,0.036244340240955,-0.013130893930793],[0.11650779098272,0.092738673090935,0.041768260300159]],[[0.070657216012478,0.10210004448891,-0.029690621420741],[0.054490681737661,0.0052885548211634,0.014809381216764],[0.056442804634571,0.14961291849613,0.06743647903204]],[[-0.062387954443693,0.015820296481252,-0.111262768507],[-0.044324439018965,0.03148140385747,0.024967046454549],[0.15046201646328,0.022054048255086,-0.096709728240967]],[[-0.064107596874237,-0.013708280399442,-0.055055990815163],[-0.010936009697616,0.026267671957612,-0.052061457186937],[0.038580760359764,0.00029941654065624,0.0017876395722851]],[[-0.021702621132135,-0.018118280917406,0.03423423692584],[0.023562356829643,0.045203655958176,0.022176081314683],[0.066484294831753,0.016278753057122,-0.040514040738344]],[[0.023568589240313,0.064141966402531,-0.020435156300664],[-0.071570247411728,0.043034784495831,0.011643062345684],[0.083721689879894,0.042706280946732,0.0099068256095052]],[[-0.027920762076974,0.06835924834013,-0.0088787544518709],[-0.063059523701668,-0.019909676164389,0.046694815158844],[0.024744961410761,0.045486375689507,0.08543399721384]],[[0.10385778546333,0.094850830733776,0.017900880426168],[-0.039672397077084,-0.058718930929899,0.13761010766029],[0.042025305330753,0.02206176891923,0.091751277446747]],[[-0.0098679317161441,-0.0045448769815266,-0.016860201954842],[0.078049048781395,-0.033392678946257,0.023904988542199],[0.10448691993952,0.048171859234571,0.016894798725843]],[[0.12506411969662,0.04060210287571,0.030408345162868],[0.023417137563229,0.0060581397265196,-0.049902219325304],[-0.019010942429304,-0.041494455188513,-0.034513834863901]],[[0.028587257489562,-0.064520686864853,-0.012344286777079],[-0.077962167561054,-0.0026539405807853,-0.04138295724988],[0.051131006330252,-0.022040452808142,0.034388817846775]],[[-0.052169863134623,-0.014214024879038,0.026250395923853],[-0.046103686094284,-0.023564809933305,-0.071139700710773],[0.0031285267323256,-0.032430160790682,0.023329969495535]],[[0.021002320572734,0.03171045333147,0.1334375590086],[0.016734594479203,-0.035769563168287,0.051921520382166],[0.06611754745245,0.03256656229496,-0.0038243103772402]],[[-0.017217431217432,-0.009625568985939,0.049988381564617],[0.0071019697934389,-0.054650958627462,0.077642120420933],[0.096725195646286,-0.0096017541363835,0.10743570327759]],[[0.044969670474529,-0.099706925451756,-0.00427320972085],[0.0058734877966344,-0.024088174104691,0.013412890955806],[0.09391950070858,0.014747276902199,-0.038793820887804]],[[0.036396615207195,0.015996262431145,-0.015158217400312],[-0.082129783928394,0.0497767329216,0.059609606862068],[0.054504737257957,0.0071338950656354,-0.052127528935671]],[[-0.078500375151634,0.020556412637234,0.032118387520313],[-0.0070456517860293,0.023680264130235,0.027164390310645],[-0.048154927790165,-0.039658445864916,-0.032195076346397]],[[0.082116544246674,0.040302518755198,0.060328759253025],[-0.045502252876759,0.053218223154545,-0.073685094714165],[0.0010974236065522,-0.067152597010136,0.021278854459524]],[[0.026074385270476,-0.00083974952576682,-0.0090231755748391],[0.063081376254559,-0.0082385428249836,-0.031456403434277],[0.015289255417883,0.046150714159012,-0.017168834805489]],[[-0.023210678249598,-0.12229047715664,-0.025625741109252],[-0.0025738927070051,0.053046230226755,0.029728382825851],[0.0065366523340344,-0.02571882866323,0.051259387284517]],[[-0.11782521754503,0.016505643725395,0.05332612618804],[0.036446418613195,-0.084282986819744,0.040359620004892],[-0.03701550886035,-0.0095739848911762,0.032160114496946]],[[0.021931447088718,-0.051781553775072,0.028808137401938],[-0.063731759786606,-0.015761053189635,-0.039266087114811],[0.0049512824043632,0.047039799392223,-0.044636726379395]],[[0.048224911093712,-0.030210435390472,0.028708349913359],[-0.0021922164596617,-0.025735108181834,0.0098859425634146],[0.04242393001914,-0.074879102408886,0.034341905266047]],[[-0.0071899397298694,-0.053091660141945,0.027705665677786],[0.028703490272164,0.012375310994685,0.026063958182931],[0.030646797269583,0.057462871074677,-0.037804491817951]],[[0.089179188013077,0.04584401473403,0.0035010515712202],[0.10335357487202,-0.049792289733887,-0.058522094041109],[-0.045802515000105,-0.015492369420826,0.042348995804787]],[[0.048758942633867,-0.047677233815193,-0.067264080047607],[0.058526381850243,0.011843129061162,0.031000165268779],[-0.020925756543875,0.10689701139927,0.0046202004887164]],[[-0.00055887427879497,0.014997665770352,0.021674809977412],[0.040796544402838,0.04962981492281,0.05064644664526],[0.059521794319153,0.011146002449095,0.048636399209499]],[[-0.1096508204937,0.069344662129879,0.049954988062382],[0.046101037412882,0.10483498126268,-0.022152151912451],[0.069045260548592,-0.029558772221208,-0.0064047006890178]],[[-0.07203359156847,0.0029901922680438,-0.098020441830158],[-0.026795113459229,0.054340668022633,0.053051803261042],[-0.013091239146888,0.094630286097527,-0.054208673536777]],[[-0.0095239272341132,-0.1026646643877,0.030151002109051],[-0.048427671194077,-0.023868838325143,-0.013648449443281],[-0.020652061328292,0.034848056733608,0.01534322462976]],[[-0.041564509272575,0.021323889493942,0.061319574713707],[0.021428452804685,0.03984534367919,-0.047171957790852],[0.0078224008902907,0.044071733951569,0.019334891811013]],[[0.076987236738205,0.1130483970046,-0.067457094788551],[-0.08107703179121,0.0028403552714735,-0.021699639037251],[-0.012335228733718,0.057767860591412,0.12618371844292]],[[0.085553228855133,0.057339187711477,0.00039070696220733],[-0.042922720313072,-0.022055447101593,0.022598225623369],[0.006361797451973,-0.0043166866526008,0.019493073225021]],[[0.022730154916644,0.052923355251551,0.058425821363926],[-0.027745174244046,-0.049867678433657,-0.028011647984385],[-0.067203119397163,0.014717643149197,-0.0067634866572917]],[[0.020052311941981,0.079420857131481,0.017267230898142],[0.07639666646719,0.0026268081273884,0.033903487026691],[-0.059349026530981,0.0072207078337669,0.11028449237347]],[[-0.020842419937253,0.026860089972615,0.019148979336023],[0.0077641448006034,0.041143529117107,0.031352411955595],[0.073560401797295,0.045961737632751,-0.096514299511909]],[[-0.037364654242992,0.10191197693348,0.026470450684428],[0.038720767945051,-0.023456864058971,0.038833729922771],[0.071104042232037,-0.053249467164278,-0.023219861090183]],[[-0.00032355851726606,-0.072515875101089,-0.016486732289195],[0.023867638781667,-0.075794816017151,-0.02137092128396],[-0.018371822312474,0.019512265920639,0.021212175488472]],[[0.053911320865154,0.066747643053532,0.012173453345895],[0.053830552846193,0.077382206916809,-0.05789365246892],[0.071010954678059,0.13454005122185,0.011718267574906]],[[0.0060139265842736,0.053272549062967,0.0531738512218],[0.0054106842726469,0.029905062168837,-0.01173472777009],[0.10520075261593,0.05304791405797,0.034360185265541]],[[-0.043176263570786,0.036690931767225,0.014833207242191],[0.019218100234866,0.13665407896042,0.067623935639858],[0.0098864547908306,0.018595030531287,0.056182023137808]],[[-0.091485433280468,0.05711954087019,-0.15855364501476],[0.05622536316514,-0.019953900948167,-0.028623938560486],[0.03296172618866,0.0033917857799679,-0.0069912988692522]],[[0.050169125199318,0.07054691016674,0.025868115946651],[-0.023836594074965,0.045578099787235,-0.051265981048346],[0.062821790575981,0.074818439781666,-0.052382670342922]],[[0.093620114028454,-0.029645701870322,-0.04661076143384],[0.016467664390802,0.011039226315916,0.034799933433533],[0.00062884739600122,0.020685026422143,-0.066390313208103]],[[0.07130391150713,0.053629599511623,-0.028179612010717],[0.015394506044686,-0.047357313334942,0.072926826775074],[0.049172904342413,-0.072025701403618,0.076804131269455]],[[-0.0067791217006743,-0.035192079842091,0.072537794709206],[-0.065642297267914,-0.011252866126597,-0.031953476369381],[0.057435996830463,0.027680957689881,0.024343671277165]],[[0.034874834120274,0.027688715606928,0.070523545145988],[-0.023770088329911,0.050916872918606,0.018326997756958],[0.00022828695364296,0.044049046933651,0.077908582985401]],[[0.096188716590405,-0.011226611211896,0.13672098517418],[0.022304456681013,-0.02932939492166,-0.010163559578359],[0.085614636540413,-0.088931143283844,-0.014799913391471]],[[0.018426682800055,0.072554759681225,0.064792774617672],[0.033559903502464,0.014415421523154,0.077519588172436],[0.041221179068089,0.020093604922295,0.035296697169542]],[[0.041545774787664,0.088222585618496,-0.055102124810219],[0.062933869659901,0.030049048364162,0.061828080564737],[0.082035176455975,-0.038071062415838,-0.010145434178412]],[[0.014567059464753,0.0051082498393953,-0.054815046489239],[-0.01428709179163,-0.016374165192246,0.020889971405268],[-0.012044254690409,0.032197646796703,0.012500423938036]],[[0.056653864681721,-0.01968789100647,0.0012476136907935],[-0.14523650705814,0.037171609699726,-0.026762798428535],[0.036052856594324,0.07351691275835,0.0028217684011906]],[[0.040753908455372,0.075037106871605,0.062442675232887],[0.039853747934103,0.012590326368809,-0.0049511436372995],[0.010108545422554,0.10365738719702,0.032912865281105]],[[-0.015745274722576,0.032297700643539,-0.049257520586252],[0.030097134411335,-0.026576846837997,0.048857767134905],[0.034694224596024,-0.0036227060481906,0.06572237610817]],[[0.049942366778851,0.028497848659754,0.010911817662418],[0.0070204841904342,0.11326574534178,0.019161319360137],[0.066564500331879,-0.035514015704393,-0.027893071994185]],[[0.059387244284153,0.096867419779301,0.011823518201709],[-0.028286626562476,0.041083600372076,-0.097255706787109],[0.061595521867275,0.0024300706572831,-0.013969992287457]],[[0.089097030460835,0.066237196326256,-0.0025812287349254],[0.07288172096014,-0.0090535851195455,0.049887720495462],[-0.046861134469509,-0.038447786122561,-0.005985667463392]],[[0.014412215910852,0.04137671738863,-0.014835867099464],[0.029727758839726,0.049383416771889,0.012078207917511],[0.024356676265597,0.004465701058507,0.12327744811773]],[[0.060259886085987,0.075025133788586,0.040382731705904],[0.0094779646024108,-0.030792616307735,0.018646761775017],[0.082423910498619,-0.026177685707808,-0.010139358229935]],[[0.032201819121838,-0.015457432717085,0.020470099523664],[-0.039473254233599,0.006888153962791,0.055760432034731],[0.065590441226959,0.040781661868095,0.089387655258179]],[[-0.0015903636813164,0.035352393984795,-0.0055668819695711],[0.0098312832415104,-0.043527450412512,0.012294639833272],[0.027579113841057,0.074112102389336,-0.036619879305363]],[[-0.028271993622184,0.0020450144074857,0.036321058869362],[0.020789001137018,0.023716477677226,0.03499972447753],[0.031647510826588,-0.088845930993557,0.089522399008274]],[[-0.0074996748007834,0.072920434176922,-0.049624051898718],[0.03002811037004,-0.037110317498446,-0.05720091983676],[0.046129554510117,-0.024248912930489,-0.016382658854127]],[[0.038458541035652,0.048663455992937,0.0037959390319884],[-0.087544977664948,0.13713201880455,-0.060883332043886],[0.043157272040844,-0.028497911989689,-0.051406018435955]],[[0.043332494795322,0.053427744656801,0.036634538322687],[0.0098600657656789,-0.012858032248914,-0.040845084935427],[0.039500877261162,0.033985089510679,0.066021472215652]],[[-0.051717139780521,-0.055027615278959,0.068232871592045],[0.02623206935823,0.017151433974504,0.061903771013021],[0.030319195240736,-0.041697151958942,-0.00072251621168107]],[[0.044395223259926,-0.1138100028038,0.024046208709478],[-0.029122196137905,-0.053969703614712,-0.016606146469712],[0.015007130801678,0.01427336037159,0.055944193154573]],[[0.0020880659576505,0.0085388030856848,0.046589363366365],[0.034880593419075,0.10707543045282,0.062079876661301],[-0.031652312725782,0.12930552661419,-0.0047614658251405]],[[-0.073945961892605,0.020588709041476,-0.036038991063833],[-0.0390067063272,-0.017505664378405,0.060221791267395],[-0.00027381940162741,-0.0011444363044575,0.0095929633826017]],[[0.018946330994368,0.040129866451025,0.033804345875978],[-0.0008222195901908,-0.030591202899814,-0.006407022010535],[0.020910812541842,0.0044871447607875,0.012454191222787]],[[0.099617473781109,-0.0054455772042274,0.042438086122274],[0.060889940708876,-0.0057640466839075,-0.0075632864609361],[0.0001538473443361,-0.064869835972786,-0.0002545406750869]],[[-0.053031507879496,0.051350820809603,-0.06019826605916],[0.032510716468096,-0.016438193619251,-0.063921391963959],[-0.023153165355325,0.09017588943243,-0.014352097176015]],[[-0.014362949877977,0.00087420758791268,0.054954137653112],[0.0060842796228826,0.015584132634103,0.020132679492235],[0.0091353794559836,-0.069073803722858,0.055068049579859]],[[0.026906296610832,0.045604076236486,-0.03523226827383],[0.044325839728117,0.046210631728172,0.039361286908388],[0.01337951887399,-0.022229136899114,0.012227292172611]],[[0.006425105035305,0.048962347209454,-0.054601542651653],[-0.001123427413404,-0.015698017552495,0.035540591925383],[0.043385174125433,0.014450730755925,0.052492942661047]],[[0.098782360553741,0.036743324249983,0.011085773818195],[0.072710484266281,-0.041622679680586,0.055640742182732],[0.017601326107979,-0.03968359157443,0.019501246511936]],[[0.01615097373724,0.031209532171488,-0.014553013257682],[0.028571259230375,0.098562777042389,-0.026182889938354],[0.045485064387321,0.053906582295895,0.018819097429514]],[[0.043589234352112,0.07985658198595,-0.039325024932623],[0.069419033825397,0.018521266058087,-0.065201364457607],[0.011495571583509,0.0031294103246182,0.0068971239961684]],[[-0.038050316274166,0.034814693033695,-0.068757109344006],[-0.04607767611742,-0.011777933686972,0.022693557664752],[0.081349797546864,-0.014358970336616,-0.0086689786985517]],[[0.080309897661209,0.11175770312548,-0.053666800260544],[0.092838987708092,0.013248636387289,-0.073034316301346],[-0.010574860498309,0.016829455271363,-0.014762829057872]],[[0.017704229801893,0.0083565358072519,0.027869593352079],[0.015599257312715,-0.00723712798208,-0.031930856406689],[-0.017307221889496,0.047356031835079,-0.051001440733671]],[[0.046984314918518,-0.025539856404066,0.031496033072472],[0.015954250469804,-0.080317594110966,0.046761427074671],[0.013537260703743,-0.0060369991697371,0.030624475330114]],[[0.010440074838698,0.016391258686781,-0.057877130806446],[0.0071897888556123,0.058511286973953,0.080138549208641],[-0.027660328894854,0.00026491036987863,-0.026312511414289]],[[0.010529086925089,-0.0084265302866697,0.073167361319065],[0.058488819748163,0.034123715013266,-0.025346783921123],[0.017808761447668,0.016838824376464,0.0496541634202]],[[-0.0534353479743,0.0043783644214272,0.093087784945965],[0.027985390275717,0.020272377878428,-0.040265578776598],[-0.033303048461676,0.0253198556602,0.0025429481174797]],[[-0.0020507981535047,-0.037699837237597,0.050918456166983],[-0.0054544755257666,0.0031747941393405,0.055950999259949],[-0.04213796928525,0.010877480730414,-0.043457608669996]],[[-0.049546677619219,0.0086875110864639,0.048332314938307],[-0.025515958666801,0.043166507035494,0.0011850913288072],[0.094799421727657,0.033490881323814,-0.057824805378914]],[[-0.065982572734356,0.086231879889965,0.0091839106753469],[0.031192196533084,0.0026135402731597,-0.011770691722631],[-0.10144474357367,-0.033996161073446,0.053090117871761]],[[0.072938874363899,-0.023367438465357,0.092756323516369],[-0.01091097202152,0.070589438080788,-0.013764372095466],[0.0088526047766209,-0.045485809445381,0.0085718203336]],[[-0.090177401900291,0.10798484832048,-0.01389563921839],[-0.0063910847529769,0.056620836257935,-0.036119520664215],[0.059908699244261,0.045035354793072,-0.10308068245649]],[[0.017350994050503,0.053823493421078,-0.030815890058875],[0.014367030002177,-0.040995698422194,-0.09577415138483],[0.028844468295574,0.021107714623213,0.065004907548428]],[[0.0086342608556151,-0.036383487284184,-0.043280690908432],[0.01787893101573,-0.0090557783842087,-0.019191069528461],[0.061751883476973,0.016321050003171,0.024408785626292]],[[0.012101657688618,0.031301256269217,-0.055369582027197],[0.053414050489664,-0.026379877701402,-0.047880835831165],[0.034498903900385,0.037850305438042,0.027252178639174]],[[-0.069003500044346,-0.068982310593128,0.073787681758404],[-0.10505864024162,0.046366646885872,0.11699898540974],[0.034605205059052,-0.0046850936487317,-0.077743537724018]],[[0.0096886651590466,0.023424519225955,-0.027564452961087],[-0.038142822682858,0.011064406484365,-0.0057050017639995],[0.038659367710352,0.019927989691496,0.032228961586952]],[[-0.013578395359218,-0.028265861794353,0.083892680704594],[0.014555376023054,-0.063398197293282,0.05300722271204],[0.037582963705063,0.062472894787788,-0.024437963962555]],[[-0.029166834428906,0.012790613807738,0.073469765484333],[0.049288541078568,-0.020483506843448,0.001360320369713],[0.027871202677488,0.092229343950748,0.017745027318597]],[[0.007199683226645,0.073227621614933,-0.055920850485563],[0.08222958445549,-0.026108233258128,-0.069905750453472],[-0.040723595768213,0.10139591991901,0.022739375010133]],[[0.0011778849875554,0.090077221393585,-0.050883468240499],[-0.019300237298012,-0.083347521722317,-0.069810524582863],[-0.044799860566854,-0.0036135483533144,0.013483833521605]],[[-0.079512819647789,-0.093959875404835,3.5982389817946e-05],[-0.052953511476517,-0.039934169501066,-0.0097819566726685],[0.018552523106337,-0.012100083753467,0.020407404750586]],[[-0.035420838743448,-0.10906288772821,0.072679929435253],[-0.023261528462172,-0.043164577335119,-0.0073613720014691],[-0.081537172198296,-0.012862365692854,-0.055466789752245]],[[-0.011310998350382,0.036487072706223,-0.073397122323513],[0.037070080637932,-0.0435238070786,0.052627395838499],[0.042824991047382,0.030332371592522,-0.061239428818226]],[[0.079190589487553,0.028383819386363,0.03462378680706],[-0.033174756914377,0.013620723038912,-0.047711689025164],[-0.020060596987605,0.016939330846071,-0.045666143298149]],[[0.041016854345798,-0.0211585983634,-0.058426149189472],[-0.032692596316338,-0.051209345459938,0.045726038515568],[0.01114787068218,-0.013925214298069,-0.031394105404615]],[[0.0031902047339827,-0.01159000210464,0.0090985549613833],[-0.048614643514156,-0.0030184814240783,0.073170021176338],[0.055466309189796,-0.0088806124404073,0.024552648887038]],[[-0.041789978742599,-0.065990775823593,-0.020628772675991],[0.021941902115941,-0.06014334782958,0.055101256817579],[0.036905627697706,-0.0034529594704509,-0.0077388384379447]],[[0.029628524556756,-0.018744697794318,0.078487768769264],[-0.024449652060866,0.042756237089634,0.1116226837039],[-0.031190490350127,0.037586841732264,0.086550176143646]],[[-0.010952013544738,-0.087044410407543,-0.0082916403189301],[-0.095060206949711,-0.018609099090099,-0.014810355380177],[0.056530419737101,0.047702983021736,-0.011658960953355]]],[[[-0.033859301358461,0.036661013960838,0.084299698472023],[-0.021586950868368,0.042700957506895,-0.092624872922897],[0.017282597720623,-0.030532473698258,-0.03094320371747]],[[-0.010478870943189,-0.011363322846591,-0.0095458161085844],[0.071434758603573,-0.057937383651733,0.020486986264586],[-0.037645787000656,-0.03234713897109,0.039952870458364]],[[0.011451651342213,-0.054863195866346,-0.017863752320409],[-0.011199651286006,0.023699332028627,0.060115694999695],[-0.066846236586571,0.017826449126005,-0.0058150789700449]],[[0.019770205020905,-0.013034361414611,-0.026719374582171],[0.037760563194752,-0.019152844324708,-0.064307518303394],[0.027011232450604,0.024081246927381,-0.025905823335052]],[[0.02701766602695,-0.0099445022642612,-0.032392811030149],[0.0079490644857287,-0.050577156245708,0.076959721744061],[0.0068525113165379,0.0060151042416692,-0.048468884080648]],[[0.019808925688267,-0.062096551060677,-0.081529870629311],[-0.031828440725803,0.071957804262638,0.044779896736145],[0.0079255122691393,0.024149749428034,-0.036393392831087]],[[-0.00033295789035037,0.0068346438929439,0.0063710282556713],[0.0069918585941195,-0.055105771869421,0.02199263125658],[-0.048236172646284,0.08185688406229,-0.10113145411015]],[[-0.043827056884766,0.04960860311985,-0.027591869235039],[-0.04009622335434,-0.027503816410899,0.059849102050066],[-0.079169854521751,0.011856047436595,0.026876751333475]],[[-0.01823571883142,0.023155612871051,-0.029345648363233],[-0.05509002879262,-0.044933412224054,-0.032616402953863],[-0.063157603144646,-0.048608999699354,0.097309432923794]],[[-0.033201906830072,-0.15882234275341,0.010206514969468],[-0.037681370973587,-0.093061089515686,0.11897554248571],[0.04143238440156,0.071859173476696,-0.086812481284142]],[[-0.040510199964046,0.011390994302928,0.066598981618881],[-0.068217657506466,-0.064248263835907,0.17957045137882],[-0.066537268459797,0.038355104625225,-0.13461595773697]],[[0.0079031502828002,-0.024740004912019,0.045608907938004],[0.020704172551632,0.0034568873234093,0.016924353316426],[-0.069934174418449,0.085679270327091,-0.02054644562304]],[[-0.068585895001888,0.012677590362728,0.0073795751668513],[-0.065189592540264,-0.019366540014744,-0.030460141599178],[-0.024082202464342,0.068737879395485,0.14316715300083]],[[-0.0082496646791697,-0.034981943666935,0.0054802768863738],[0.01380748488009,0.0028993468731642,-0.011605656705797],[-0.051358863711357,0.0035574801731855,0.031836424022913]],[[0.0503143183887,-0.017726311460137,-0.15592251718044],[-0.0095816105604172,0.15271474421024,0.028970645740628],[0.041579823940992,0.034151885658503,0.093518562614918]],[[-0.0094888508319855,-0.067417323589325,0.017793172970414],[-0.08150452375412,0.031851854175329,-0.045344538986683],[-0.0083078490570188,-0.03232492133975,0.035719294101]],[[-0.086232982575893,-0.063699536025524,0.021998327225447],[-0.032593127340078,0.046706855297089,-0.04147644713521],[-0.0040688286535442,-0.046889543533325,0.10809486359358]],[[0.013611674308777,-0.032518368214369,-0.0080594252794981],[-0.085516162216663,0.19896714389324,0.093549728393555],[-0.035448983311653,-0.020700352266431,0.013325454667211]],[[-0.0098610958084464,-0.044393628835678,0.063632994890213],[0.035744123160839,-0.11852230876684,0.046388700604439],[0.03320762142539,-0.094406969845295,0.033731650561094]],[[-0.017570560798049,-0.049422446638346,0.012051069177687],[-0.089250758290291,0.024376586079597,0.048146110028028],[-0.015625268220901,0.0098126986995339,0.010608744807541]],[[-0.085832290351391,0.011826115660369,0.037413999438286],[-0.0068437308073044,-0.044816717505455,-0.094181001186371],[0.058658313006163,-0.074302315711975,-0.067641511559486]],[[-0.1159128472209,-0.024155035614967,-0.10500288754702],[0.0065546706318855,-0.06180827319622,-0.025421716272831],[0.030414737761021,-0.0007338909781538,0.052468046545982]],[[0.027996068820357,0.042241547256708,-0.019981704652309],[-0.070931047201157,-0.036442261189222,-0.10190238058567],[-0.0020293751731515,-0.0081238877028227,-0.01927138864994]],[[-0.039325501769781,-0.04414664208889,-0.030347863212228],[0.02127986587584,-0.045469857752323,-0.0068632471375167],[0.016751920804381,0.059312827885151,-0.065985977649689]],[[-0.0014457746874541,-0.11109599471092,-0.09651854634285],[-0.13383738696575,-0.10173060745001,-0.20296177268028],[-0.1806698590517,-0.071867778897285,-0.067010022699833]],[[-0.020740488544106,0.090311087667942,0.053435105830431],[0.018727298825979,0.042669769376516,-0.037436198443174],[0.03025403432548,-0.004953982308507,0.04148980602622]],[[0.057688027620316,-0.04826345294714,-0.081003271043301],[0.0072753424756229,-0.0025563379749656,0.066667973995209],[0.12339430302382,-0.011144105345011,0.040296718478203]],[[0.026424264535308,0.0020707768853754,0.0054675973951817],[-0.035588175058365,-0.042400974780321,-0.021529017016292],[0.032919280230999,0.028801726177335,0.024054890498519]],[[0.01927911862731,-0.021274954080582,0.0039825798012316],[-0.016338353976607,-0.056298684328794,-0.015447245910764],[-0.0033804641570896,0.054194953292608,-0.07193510979414]],[[0.03854987770319,0.091851226985455,0.041804105043411],[-0.062305312603712,-0.013660804368556,0.06927166134119],[-0.08382485806942,-0.064690247178078,-0.010514272376895]],[[-0.083526469767094,0.010930391959846,0.0060516032390296],[-0.0080620683729649,-0.10141909867525,0.04775569960475],[0.13321700692177,0.011673004366457,-0.029241295531392]],[[-0.013389155268669,0.078423842787743,-0.057884655892849],[0.020228391513228,0.056793075054884,-0.091328114271164],[0.032761443406343,0.011721616610885,0.038441248238087]],[[0.05696153268218,-0.08185838162899,-0.038825616240501],[-0.049696825444698,-0.046197928488255,-0.025908617302775],[0.060805760324001,-0.020513229072094,0.03555266559124]],[[0.036369923502207,-0.034832645207644,-0.076237305998802],[0.087904423475266,-0.0010574950138107,-0.069855369627476],[-0.076456479728222,0.038061734288931,-0.06137078255415]],[[-0.059939362108707,0.0073487590998411,-0.048419259488583],[-0.065545499324799,-0.062278043478727,-0.018813813105226],[-0.066063597798347,0.049635335803032,0.011506690643728]],[[0.016161335632205,0.0080386167392135,0.011842083185911],[-0.078246355056763,0.064785912632942,-0.052330996841192],[-0.045067526400089,0.070642225444317,-0.021023321896791]],[[0.0029241908341646,-0.0045827394351363,0.050152026116848],[0.0040694889612496,0.020973173901439,0.11168751865625],[0.049089659005404,-0.092430591583252,-0.12832859158516]],[[0.0023032801691443,-0.021368598565459,-0.019998662173748],[0.062981933355331,0.036208160221577,-0.12871140241623],[0.0085999453440309,-0.087733693420887,0.037182681262493]],[[0.036721352487803,0.018438439816236,-0.0224827863276],[0.011578840203583,0.060955606400967,0.042469706386328],[0.0015183032955974,0.045801542699337,-0.0019311954965815]],[[-0.027665786445141,0.074258923530579,-0.089218750596046],[0.026456568390131,-0.017874365672469,0.043521296232939],[0.047763545066118,0.017779542133212,-0.071711704134941]],[[-0.034678116440773,0.045750468969345,-0.061251509934664],[0.023156363517046,0.02121371217072,0.12079627811909],[0.028611585497856,-0.052714098244905,-0.03173104673624]],[[0.0065058493055403,-0.019831778481603,0.0074671865440905],[0.013981859199703,0.01190546900034,-0.03508347645402],[0.018656158819795,0.059516556560993,0.024957917630672]],[[0.060885906219482,-0.046999409794807,-0.050692245364189],[0.025838313624263,-0.025992158800364,-0.088813602924347],[-0.0018812986090779,0.033917330205441,-0.0064451131038368]],[[0.030884884297848,0.0035131247714162,0.042959079146385],[0.024182165041566,0.067065075039864,-0.10127431899309],[-0.0076921638101339,0.086356088519096,0.025955969467759]],[[0.04583877697587,0.05065606534481,-0.001568402745761],[0.12888161838055,0.030178807675838,-0.040766261518002],[-0.11670494824648,-0.081686921417713,0.088516630232334]],[[0.05192731693387,-0.08240719139576,-0.090980917215347],[0.045858785510063,0.0087651237845421,0.10810565203428],[0.0077322190627456,0.074192702770233,0.0093859834596515]],[[0.091414712369442,0.092859953641891,0.032816249877214],[0.025903912261128,-0.053333584219217,0.042883101850748],[0.042753245681524,-0.053302455693483,0.0049830307252705]],[[0.083821438252926,-0.16357620060444,0.023151095956564],[-0.16941244900227,0.019863244146109,-0.16340273618698],[0.013276423327625,-0.035437069833279,0.079938843846321]],[[-0.036407481878996,-0.051708452403545,0.11543021351099],[-0.099992737174034,0.11802320927382,-0.076208844780922],[-0.080358877778053,-0.050091911107302,-0.059331197291613]],[[0.010822325013578,0.021903917193413,-0.068075388669968],[0.044122874736786,-0.037163261324167,0.0036738405469805],[0.041185412555933,-0.038599424064159,-0.10432403534651]],[[-0.011478303931653,0.0073256865143776,-0.056287635117769],[-0.013050730340183,-0.0090168081223965,0.021611304953694],[0.034008830785751,-0.016666878014803,0.065151192247868]],[[0.023206362500787,-0.05716921761632,0.030974874272943],[0.051652081310749,-0.013407662510872,-0.047673847526312],[0.026933507993817,0.010199385695159,0.021218586713076]],[[-0.018357796594501,0.033082481473684,0.071707889437675],[0.021671114489436,0.057150222361088,-0.037599168717861],[-0.0096598286181688,0.055961575359106,0.019931079819798]],[[-0.0018812108319253,0.014952803961933,0.067539259791374],[0.050260312855244,-0.12228744477034,-0.070446595549583],[-0.047873884439468,-0.016905011609197,-0.014786256477237]],[[-0.088432818651199,-0.04735491424799,-0.030082812532783],[-0.016827085986733,0.016512816771865,-0.057392116636038],[-0.014588023535907,-0.013362274505198,0.011191995814443]],[[0.023593200370669,0.044494796544313,-0.084024101495743],[0.0015797772211954,0.039064571261406,0.064172402024269],[-0.031370688229799,0.05471433699131,-0.035931028425694]],[[-0.029500670731068,-0.099183186888695,0.067380137741566],[0.0074729574844241,-0.029574751853943,-0.053491648286581],[-0.093294568359852,0.0081032998859882,-0.013103984296322]],[[-0.028457492589951,0.030898904427886,0.10019431263208],[0.029433693736792,-0.062781490385532,-0.039127122610807],[0.0037065274082124,-0.017908904701471,-0.00091633817646652]],[[0.038818199187517,-0.0036052863579243,-0.03529979288578],[0.070941090583801,-0.027275666594505,0.11375501006842],[0.057179767638445,0.028144551441073,-0.14274248480797]],[[-0.070610463619232,0.084589779376984,-0.032345172017813],[-0.024881780147552,0.015693804249167,-0.071022979915142],[0.0077778068371117,-0.03013838082552,0.086254917085171]],[[0.010484642349184,0.038962036371231,-0.03014225512743],[-0.0049139996990561,-0.013110339641571,0.15413641929626],[-0.0065480680204928,0.14469191431999,-0.068083681166172]],[[0.030041085556149,-0.040719099342823,0.040913805365562],[-0.024785852059722,0.061894215643406,-0.0093380808830261],[0.0046605886891484,-0.025289313867688,-0.062163274735212]],[[-0.0072239995934069,-0.019501442089677,0.00038474897155538],[0.019577672705054,-0.12163942307234,0.034509126096964],[0.042721588164568,0.036731466650963,-0.15791024267673]],[[-0.059469066560268,-0.021280866116285,-0.15436960756779],[0.033259470015764,-0.015792557969689,-0.062424652278423],[0.040558651089668,-0.064193293452263,0.051813818514347]],[[0.057049844413996,-0.0083328848704696,-0.051151130348444],[0.04905566945672,0.0054797362536192,-0.090132713317871],[0.056645590811968,0.0043853176757693,-0.056943591684103]],[[-0.048211801797152,0.0049925511702895,0.079847052693367],[0.066934749484062,0.018636897206306,-0.034528002142906],[0.0098184086382389,0.024125769734383,0.050670802593231]],[[0.016242302954197,-0.053201999515295,-0.0027288780547678],[0.080290980637074,-0.033732399344444,-0.014993448741734],[-0.043262392282486,-0.0096848104149103,0.019466729834676]],[[0.037934999912977,0.057131942361593,0.061996337026358],[0.026163075119257,0.077400632202625,-0.089242994785309],[-0.045976914465427,0.055105414241552,0.12956790626049]],[[-0.039452716708183,0.087969519197941,0.0033206876832992],[0.066842779517174,-0.028674703091383,-0.021978927776217],[0.1199968084693,0.0083413468673825,-0.066201187670231]],[[-0.008147613145411,-0.028815409168601,-0.033234816044569],[-0.02671230956912,0.023197334259748,-0.052938092499971],[-0.0054278858006001,0.064021892845631,-0.034517072141171]],[[0.042148970067501,-0.037810269743204,-0.062827557325363],[-0.020863305777311,-0.043959453701973,-0.045682150870562],[-0.014068500138819,-0.034244637936354,-0.028564747422934]],[[-0.025638855993748,0.067947752773762,0.020766049623489],[0.030399167910218,-0.11578803509474,0.16376386582851],[-0.045616090297699,0.019803604111075,-0.034918773919344]],[[-0.046519551426172,-0.041752133518457,-0.030035704374313],[-0.012978211976588,-0.053438607603312,0.069926753640175],[0.035428371280432,-0.12332326173782,-0.00057021726388484]],[[-0.033018000423908,-0.037951182574034,-0.0055129583925009],[0.0076518505811691,-0.027864759787917,-0.037919763475657],[0.025267466902733,0.028560265898705,-0.013688686303794]],[[0.050379496067762,-0.0014145390596241,0.020432053133845],[-0.029736258089542,0.06038661301136,-0.09526052325964],[0.0040439958684146,0.030616700649261,-0.017055718228221]],[[0.014429627917707,0.036849144846201,0.0086744492873549],[-0.018864661455154,0.00052191352006048,0.042254410684109],[0.038836102932692,-0.1200150474906,-0.023050770163536]],[[0.027852479368448,0.0094027547165751,-0.034710817039013],[0.048755459487438,0.02888423576951,0.00092979235341772],[0.092575222253799,0.084171667695045,0.013111037202179]],[[0.014706423506141,-0.054632697254419,-0.0011575620155782],[-0.083325751125813,-0.037928875535727,-0.032172217965126],[-0.045737203210592,-0.020102720707655,0.086288645863533]],[[-0.094562560319901,0.022452926263213,0.059726014733315],[0.038261797279119,-0.038764089345932,0.097701698541641],[-0.033963430672884,0.023578664287925,-0.045041900128126]],[[9.906459308695e-05,-0.0058938036672771,-0.034375578165054],[-0.044587608426809,-0.075461804866791,0.052492048591375],[0.033071536570787,-0.024125818163157,-0.013594322837889]],[[0.039684176445007,0.0043364600278437,0.019231844693422],[0.041620809584856,0.060729574412107,-0.019829113036394],[0.025624865666032,0.07007547467947,0.0035398611798882]],[[-0.06457294523716,0.019623221829534,-0.010920115746558],[0.020447384566069,-0.034749247133732,-0.028780037537217],[0.029025642201304,0.03589928150177,-0.03658377751708]],[[-0.083972617983818,0.070787370204926,-0.10127804428339],[0.063082464039326,-0.10112342983484,-0.039244469255209],[-0.052896473556757,-0.023338530212641,-0.10304626822472]],[[-0.047875318676233,-0.010211680084467,0.090376868844032],[0.023688919842243,0.051581420004368,0.095187731087208],[-0.024008356034756,-0.034902762621641,-0.0082426173612475]],[[0.03081901371479,0.032016988843679,0.068363696336746],[0.047936733812094,0.060565274208784,0.016087505966425],[-0.1126958206296,-0.018929412588477,0.038838695734739]],[[0.00650579854846,0.010625249706209,-0.097447052598],[0.00070351629983634,-0.013811097480357,0.053683716803789],[0.055659472942352,-0.065892994403839,-0.0050200154073536]],[[0.013459710404277,-0.031733702868223,-0.11536132544279],[0.017116514965892,0.088115341961384,0.021433904767036],[-0.060623396188021,0.11446776241064,-0.033668287098408]],[[-0.068811431527138,-0.002766064601019,0.036976139992476],[0.010614164173603,-0.05319356918335,0.06996164470911],[-0.054541800171137,0.094314947724342,0.024196095764637]],[[0.0072749936953187,0.00099731748923659,-0.063520155847073],[-0.023358447477221,0.015846638008952,0.1517158895731],[-0.071302525699139,0.029397409409285,0.072915829718113]],[[-0.017991367727518,-0.019528031349182,0.034525509923697],[-0.066513292491436,0.11244102567434,-0.015882454812527],[-0.099936991930008,-0.030917201191187,0.069799587130547]],[[-0.012140076607466,0.068934500217438,-0.068157516419888],[0.083329752087593,-0.1027871593833,-0.025306893512607],[0.045764345675707,-0.01281161326915,0.085163570940495]],[[0.014447669498622,0.0050033279694617,0.029046041890979],[-0.005835032556206,0.01098602078855,0.082295425236225],[-0.053046278655529,0.063852421939373,0.026083858683705]],[[0.041113961488008,0.0066557480022311,-0.0052111367695034],[0.018537851050496,-0.055821537971497,-0.016645943745971],[0.090986497700214,0.027955943718553,-0.036879759281874]],[[0.0034162930678576,-0.030659085139632,0.025478171184659],[0.033046748489141,-0.022031584754586,-0.068415507674217],[0.058568421751261,-0.034586068242788,-0.032630536705256]],[[-0.015131120570004,-0.059534005820751,-0.11764866113663],[-0.046991318464279,0.0055624339729548,-0.076541088521481],[0.0096818497404456,-0.033399742096663,0.122946575284]],[[-0.06938948482275,0.019243784248829,-0.063446171581745],[-0.069439500570297,0.025347918272018,0.0045689628459513],[-0.056581731885672,0.050614900887012,-0.033240087330341]],[[-0.036496721208096,0.016614953055978,0.015220804139972],[-0.084767758846283,0.052465457469225,0.11440594494343],[-0.080701269209385,-0.012327319011092,-0.077269315719604]],[[-0.040264546871185,-0.019935257732868,-0.03347722068429],[0.019762611016631,-0.086966641247272,0.020190201699734],[-0.0060028024017811,0.013722779229283,-0.048145461827517]],[[-0.083625860512257,0.024121688678861,0.087897688150406],[0.02610869705677,-0.099990494549274,-0.059409119188786],[0.094287931919098,0.028895948082209,-0.045651745051146]],[[-0.11911629885435,-0.034222573041916,-0.00521454308182],[0.076433278620243,0.029172712936997,-0.077734664082527],[0.068262159824371,-0.038733333349228,-0.012062145397067]],[[-0.028109448030591,-0.027658101171255,-0.0021550732199103],[-0.077655516564846,-0.036244038492441,0.077604472637177],[-0.012356746010482,-0.064253188669682,-0.017774721607566]],[[-0.085556596517563,-0.046183384954929,0.025355983525515],[0.014021405018866,-0.031229954212904,-0.067052833735943],[-0.025235453620553,0.038450181484222,0.063237600028515]],[[0.032029066234827,-0.016157284379005,-0.0037577929906547],[-0.005897899158299,-0.009221869520843,0.0085878176614642],[0.062097109854221,-0.020557953044772,-0.10358454287052]],[[0.023395832628012,0.051018178462982,-0.020895812660456],[0.060736529529095,0.03809878975153,-0.018950846046209],[0.091177016496658,-0.044128946959972,0.029528638347983]],[[-0.02670638076961,-0.1637227088213,-0.038685478270054],[-0.0087736453860998,0.13476428389549,-0.019462218508124],[-0.011649527586997,0.037555828690529,0.010637318715453]],[[-0.052751075476408,-0.011519635096192,-0.0017540858825669],[-0.019469005987048,0.0035894270986319,-0.029482590034604],[0.008886213414371,0.068143486976624,0.061792049556971]],[[-0.027352053672075,0.076193690299988,0.0035608059260994],[-0.028561716899276,-0.045143693685532,0.20992384850979],[0.07313884049654,0.057664211839437,-0.084918826818466]],[[-0.028198348358274,0.027514837682247,0.01842974498868],[-0.010938977822661,-0.03915923833847,-0.0066683101467788],[-0.002537352964282,-0.053998611867428,-0.024026731029153]],[[-0.014896439388394,-0.042169101536274,0.0028235698118806],[-0.060004539787769,-0.086839631199837,-0.098238252103329],[-0.022911550477147,-0.091298066079617,-0.029564041644335]],[[0.0094808964058757,-0.043407294899225,0.023984901607037],[0.018237827345729,-0.021181022748351,-0.040734589099884],[0.040389344096184,0.0028806226328015,-0.0013980846852064]],[[-0.011309202760458,-0.014449606649578,-0.021254414692521],[-0.043474555015564,-0.011107956059277,0.007108477409929],[0.0033752117305994,0.012935223989189,-0.036579210311174]],[[0.0035526899155229,-0.062372088432312,-0.0927629545331],[-0.045736838132143,-0.020033905282617,0.030019553378224],[0.025186961516738,0.014852047897875,0.0061375615186989]],[[0.043514188379049,-0.014804049395025,-0.098218619823456],[-0.026281736791134,0.050650075078011,-0.075047455728054],[0.069352060556412,-0.032567027956247,0.016591621562839]],[[0.0018844505539164,0.024830309674144,0.015432587824762],[0.040578421205282,-0.025797786191106,-0.075579255819321],[-0.015832874923944,-0.0018422983121127,0.016668548807502]],[[-0.0045612496323884,-0.032207369804382,0.054921541363001],[-0.070188216865063,-0.084451459348202,-0.029486311599612],[-0.025132980197668,-0.066424906253815,-0.0091793276369572]],[[0.041361879557371,0.074023224413395,-0.012814899906516],[0.065923683345318,-0.052811354398727,0.051973473280668],[0.0018216654425487,0.011424275115132,-0.049298357218504]],[[-0.052748844027519,-0.05420296639204,0.02335362508893],[-0.1302404999733,0.02067138813436,-0.042556498199701],[-0.045671287924051,-0.05461635440588,-0.057519633322954]],[[0.0097746290266514,-0.11006835103035,0.071985453367233],[0.022932918742299,-0.18126380443573,-0.079860404133797],[0.0020176728721708,0.030179230496287,-0.029332214966416]],[[-0.0011510823387653,0.020584339275956,-0.016451703384519],[0.0077310781925917,-0.045399643480778,-0.00058623461518437],[-0.047228567302227,-0.036543074995279,0.037209093570709]],[[0.083588436245918,0.0072085703723133,0.063025012612343],[0.04988757148385,-0.11121365427971,0.1403774023056],[0.030272180214524,-0.0052555538713932,-0.010904964059591]],[[-0.026893144473433,0.050298880785704,0.056697256863117],[-0.020520204678178,0.0011221856111661,0.014077057130635],[-0.072897389531136,-0.036271814256907,0.026330335065722]],[[-0.04675791785121,-0.018261946737766,-0.096083447337151],[-0.037400972098112,-0.044452164322138,-0.085711240768433],[-0.012823458760977,0.0037261638790369,-0.016066696494818]],[[0.017133248969913,-0.057920757681131,-0.068381331861019],[-0.024568194523454,-0.035001989454031,-0.13330416381359],[0.059673570096493,0.048826266080141,0.025014074519277]],[[-0.022799571976066,0.015386868268251,0.019340706989169],[-0.01214150711894,-0.0082689179107547,0.081658147275448],[-0.0027248549740762,-0.0035827562678605,-0.038720816373825]],[[0.10802606493235,0.028070215135813,0.030940609052777],[0.004803420510143,0.02238492667675,-0.087791241705418],[-0.057255420833826,-0.003275471739471,0.046573080122471]],[[-0.045193903148174,-0.011009738780558,-0.011923484504223],[-0.019972190260887,-0.042611103504896,0.024852141737938],[0.021376179531217,0.032801151275635,0.040584482252598]],[[-0.011997713707387,-0.025522435083985,-0.031087018549442],[-0.029749855399132,0.01796649582684,0.083155199885368],[-0.03089202195406,-0.042701933532953,0.071428284049034]],[[-0.035317543894053,-0.06008343026042,0.0065879169851542],[-0.02648076787591,0.0076553830876946,-0.0016718079568818],[-0.056363381445408,0.053773690015078,-0.023293783888221]]],[[[-0.039891015738249,-0.017263293266296,0.076491415500641],[-0.014841720461845,-0.0026519841048867,0.018619054928422],[0.046160645782948,0.032172650098801,-0.049776758998632]],[[-0.020050736144185,-0.021160529926419,-0.037804558873177],[-0.02887555398047,0.093693427741528,-0.075896605849266],[-0.034791480749846,0.040996920317411,-0.018654629588127]],[[-0.13719756901264,0.040549967437983,0.31142130494118],[-0.062507964670658,-0.11024752259254,-0.065347567200661],[0.011295939795673,-0.1285365074873,-0.13907527923584]],[[0.015463178046048,-0.032942712306976,0.016855826601386],[0.00020777188183274,-0.094965413212776,0.03997340798378],[0.036824479699135,-0.033371157944202,-0.019843529909849]],[[-0.0012943090405315,0.022936161607504,-0.053741287440062],[0.024580603465438,-0.017522785812616,0.071980476379395],[0.017437333241105,0.041659075766802,0.015355854295194]],[[0.0062223155982792,0.029566332697868,0.08275793492794],[0.082341827452183,0.011866971850395,0.019611390307546],[0.024238627403975,0.062809191644192,0.055467583239079]],[[-0.039251375943422,-0.084131389856339,0.11922088265419],[-0.052323676645756,-0.085152693092823,-0.033284086734056],[-0.060259763151407,0.02099365927279,-0.06867391616106]],[[-0.022095058113337,0.0095873391255736,-0.048038564622402],[-0.022111667320132,-0.039352707564831,0.043141175061464],[0.025802100077271,0.058107513934374,0.056317929178476]],[[-0.029577732086182,0.037579640746117,0.024043325334787],[-0.0072365310043097,-0.032803516834974,0.040682703256607],[0.025482453405857,-0.073970377445221,0.0050798440352082]],[[0.11778146773577,0.02297998778522,0.047797046601772],[0.049534793943167,-0.016876585781574,-0.053052172064781],[-0.090075708925724,0.0070899841375649,-0.0031979556661099]],[[0.031597148627043,-0.005831724498421,0.074709691107273],[0.07836639881134,0.091712161898613,0.10139443725348],[0.018796930089593,0.054602358490229,-0.0039816447533667]],[[-0.020270550623536,0.023727271705866,0.078116878867149],[0.04553497582674,-0.021846229210496,0.04932214319706],[-0.014055959880352,0.03491560742259,-0.019613767042756]],[[0.010528767481446,0.028587702661753,0.029742879793048],[0.053488403558731,0.077032960951328,-0.027405504137278],[0.03078019618988,0.036451235413551,0.047786522656679]],[[-0.056841433048248,0.079736590385437,0.097206391394138],[0.041411440819502,-0.079559706151485,0.09521484375],[-0.01030638627708,-0.036899302154779,0.015632817521691]],[[0.057518839836121,-0.014273770153522,-0.033143367618322],[0.041342832148075,-0.031986009329557,0.12126912176609],[0.063761591911316,-0.016224915161729,-0.069985821843147]],[[-0.07220197468996,-0.05397105962038,0.021712569519877],[0.1160671338439,-0.073593251407146,0.008089492097497],[-0.0041778874583542,0.011306576430798,-0.073605731129646]],[[0.040998183190823,-0.11725956946611,-0.16237980127335],[0.12558761239052,0.037635874003172,0.026913847774267],[0.030826417729259,0.05559303611517,-0.0030266279354692]],[[-0.027096668258309,-0.085514239966869,-0.054904751479626],[-0.053553882986307,-0.045743402093649,-0.033176507800817],[0.016952320933342,0.10398649424314,0.0043265339918435]],[[-0.038477148860693,-0.03328549861908,-0.13519835472107],[0.018162725493312,-0.040557455271482,-0.074614740908146],[0.19554594159126,0.061380289494991,-0.019738499075174]],[[-0.052100650966167,0.024221289902925,-0.021232752129436],[-0.012246570549905,-0.060151036828756,-0.034674655646086],[-0.015068406239152,0.083794496953487,0.061617091298103]],[[-0.027596583589911,0.018179327249527,0.13857583701611],[0.066740199923515,-0.015199011191726,0.036772951483727],[0.009268943220377,0.018666600808501,-0.055639822036028]],[[0.082970201969147,0.037540212273598,0.085768990218639],[-0.0045952661894262,0.11581087112427,0.11088920384645],[0.050463832914829,-0.026825146749616,0.061126682907343]],[[0.0099132647737861,-0.088997647166252,-0.13452945649624],[-0.012901600450277,-0.087617017328739,0.040435776114464],[-0.077354095876217,0.00014255418500397,-0.018563034012914]],[[0.0070442967116833,0.032154124230146,-0.098489373922348],[0.071274936199188,0.029572485014796,0.071420803666115],[-0.02004493586719,-0.014797776006162,-0.040179014205933]],[[-0.0051636304706335,-0.08200640976429,-0.037402521818876],[-0.023820212110877,-0.0059815961867571,-0.0067986552603543],[-0.021862555295229,0.022509079426527,-0.047370806336403]],[[0.1916619092226,0.099536553025246,0.038706988096237],[0.062888421118259,0.079404287040234,0.053551990538836],[-0.11395705491304,0.016381440684199,0.07795200496912]],[[0.012659178115427,-0.056559421122074,0.12913437187672],[-0.0021208899561316,-0.084731258451939,-0.066395625472069],[-0.015122591517866,0.046543437987566,-0.091739572584629]],[[0.042674653232098,-0.072459042072296,-0.055980529636145],[-0.0042013567872345,0.036892183125019,-0.0016214131610468],[0.027076561003923,-0.11623461544514,0.0039658616296947]],[[-0.01401287689805,-0.043590907007456,0.018786689266562],[-0.069940894842148,0.045219965279102,-0.035218995064497],[0.0846958309412,0.01878735050559,0.1196007207036]],[[0.030708791688085,-0.058609567582607,0.029933968558908],[0.09160140901804,-0.063494168221951,0.015256288461387],[0.069739155471325,0.0070036137476563,0.0428696423769]],[[-0.013291074894369,0.042614378035069,0.01396656781435],[0.046518474817276,-0.0097462376579642,-0.016731245443225],[-0.25713402032852,0.0057838391512632,-0.0072977868840098]],[[-0.071552589535713,0.041058525443077,0.0091739017516375],[0.12297331541777,-0.023169420659542,0.0010362057946622],[-0.058072172105312,0.1597948372364,-0.098615176975727]],[[-0.0069678211584687,0.037288095802069,0.03701451420784],[-0.0011044880375266,0.027245238423347,-0.028454717248678],[-0.099796466529369,-0.003580673597753,-0.015662545338273]],[[0.019132990390062,0.073110602796078,-0.11692886054516],[-0.065110921859741,0.068809747695923,0.015609089285135],[-0.061723824590445,0.0069225337356329,0.044839508831501]],[[-0.023137288168073,0.076310746371746,-0.048423383384943],[-0.022519676014781,-0.051509004086256,0.0089663462713361],[0.012154206633568,0.01872237958014,-0.11588445305824]],[[0.080417118966579,-0.047641012817621,0.022924216464162],[0.06994403898716,0.034439507871866,-0.027015751227736],[-0.079846955835819,-0.1121187582612,0.04819443449378]],[[-0.037129398435354,-0.13223458826542,-0.044961716979742],[0.0031433145049959,0.0075839571654797,-0.02075326628983],[0.015712291002274,0.018215576186776,-0.065241418778896]],[[-0.047221057116985,0.067601799964905,0.0055421181023121],[0.010186155326664,0.023938918486238,-0.08496530354023],[-0.096602648496628,0.035736635327339,-0.034567635506392]],[[-0.13121983408928,-0.13189916312695,-0.044277042150497],[0.087512344121933,0.052024252712727,-0.032584942877293],[0.066095814108849,0.056090675294399,0.028713960200548]],[[-0.033231437206268,0.15341863036156,-0.10669829696417],[-0.098350629210472,-0.042835146188736,0.11604182422161],[-0.089256227016449,-0.095980748534203,-0.0038666564505547]],[[0.14356544613838,0.1440632045269,0.17011371254921],[0.1274308860302,0.078864216804504,0.20448078215122],[-0.0013644394930452,0.1080139875412,-0.083631977438927]],[[0.11803782731295,0.16453030705452,0.17256450653076],[0.013841076754034,0.1124707236886,0.14755968749523],[0.011849493719637,-0.16449044644833,0.022806232795119]],[[0.07423473149538,0.033086929470301,-0.037531472742558],[-0.028959197923541,-0.010898966342211,0.042864549905062],[-0.044545657932758,-0.008644818328321,0.078060284256935]],[[0.10000346601009,0.028909971937537,0.010295357555151],[0.10448636114597,0.0600949190557,0.04006177932024],[-0.029655598104,-0.048260379582644,0.20252066850662]],[[0.064876049757004,-0.10887644439936,0.031595662236214],[-0.057130206376314,-0.0077455323189497,0.017271917313337],[0.2294520586729,-0.091602258384228,-0.062594883143902]],[[0.018926085904241,-0.0051210820674896,0.054373670369387],[-0.11689714342356,-0.03697707131505,0.0087633980438113],[0.089673295617104,-0.058310240507126,-0.020387975499034]],[[-0.0074946819804609,0.14288608729839,0.065904140472412],[-0.069380551576614,-0.070122763514519,0.20813223719597],[-0.062844812870026,-0.06854236125946,-0.17613607645035]],[[-0.116838991642,0.10665362328291,0.028992375358939],[0.024747628718615,0.021506970748305,-0.059594105929136],[-0.067878291010857,0.0630804002285,-0.012268007732928]],[[0.069055423140526,-0.066074937582016,0.074785463511944],[0.034246936440468,-0.01821087859571,-0.059845950454473],[-0.012071672827005,0.0077001876197755,-0.0036910769995302]],[[-0.035899009555578,-0.10935133695602,-0.076637864112854],[-0.00066098436946049,0.02911869622767,0.0093109952285886],[0.05443723872304,-0.091835767030716,0.021382663398981]],[[0.14603547751904,0.071186125278473,-0.07265780121088],[0.068647906184196,0.17337177693844,-0.023310331627727],[-0.079935036599636,-0.083908222615719,-0.053167037665844]],[[0.0076791420578957,0.10337565094233,0.052891090512276],[-0.0074978289194405,-0.029517574235797,0.035199154168367],[0.018189951777458,-0.0021448160987347,0.0067845284938812]],[[-0.075121030211449,-0.11975955218077,-0.056347317993641],[-0.011467695236206,-0.092578776180744,-0.02485772781074],[-0.068058080971241,-0.069635838270187,-0.002748767612502]],[[0.03380448743701,0.10889170318842,-0.047853849828243],[0.024558082222939,0.038934163749218,0.027190558612347],[0.052669633179903,-0.09574955701828,-0.012385975569487]],[[-0.016466965898871,-0.024349143728614,-0.061654169112444],[0.043669436126947,0.043046332895756,0.019559528678656],[0.047033526003361,0.020245894789696,-0.021443700417876]],[[-0.0080829877406359,0.1203630194068,0.31460720300674],[0.2343660145998,-0.031625926494598,0.25607714056969],[0.13718523085117,0.10831231623888,0.083799593150616]],[[0.037817720323801,-0.034460712224245,0.059682685881853],[-0.010802939534187,0.0087122023105621,0.034833174198866],[0.038119360804558,0.053358312696218,-0.067338682711124]],[[-0.15450820326805,-0.088063083589077,0.242939427495],[-0.06460103392601,-0.3228397667408,-0.2868744134903],[0.025152198970318,-0.011419251561165,-0.046895325183868]],[[-0.44590100646019,0.0038395079318434,-0.0048213973641396],[0.15116485953331,-0.17898048460484,0.0031187967397273],[-0.020010910928249,0.42762413620949,-0.30180016160011]],[[0.10250184684992,-0.010576658882201,0.0049961474724114],[-0.042640928179026,0.13415324687958,-0.022756287828088],[-0.072818741202354,0.0092065064236522,0.050540454685688]],[[-0.17753832042217,-0.039510983973742,0.051017202436924],[-0.048786487430334,-0.054232768714428,0.042589839547873],[0.12348607182503,0.083724834024906,-0.011993474327028]],[[0.10456398874521,-0.0018760091625154,-0.020706655457616],[0.043195873498917,0.016541358083487,0.13859716057777],[-0.0019346749177203,-0.089521504938602,0.10915169119835]],[[0.038247331976891,0.05642931163311,0.29537543654442],[0.034485120326281,-0.16691467165947,-0.017304675653577],[-0.17468971014023,0.13418261706829,-0.041213318705559]],[[-0.005595984403044,0.023772947490215,-0.009752307087183],[0.0044110924936831,0.058633569628,-0.051505133509636],[0.042308069765568,0.10714392364025,0.023267697542906]],[[0.0005945474258624,0.057876165956259,0.085638470947742],[0.12032728642225,-0.15063571929932,-0.077657535672188],[-0.13186091184616,0.20455612242222,-0.040956348180771]],[[-0.080766208469868,-0.0088192662224174,0.13193370401859],[-0.03697494789958,-0.0066343247890472,-0.039897263050079],[0.054156847298145,-0.11764704436064,0.0091056115925312]],[[0.016799386590719,0.01387345045805,-0.087875828146935],[0.082614578306675,0.038838416337967,-0.019451957195997],[0.021806459873915,0.020783046260476,0.073540389537811]],[[-0.10735829174519,-0.033659163862467,-0.071365930140018],[0.032032366842031,0.093187846243382,-0.0023063377011567],[0.0093770353123546,0.10593304783106,0.023088967427611]],[[0.025391126051545,-0.065631575882435,0.056995078921318],[0.0087084537371993,0.028180265799165,-0.089281633496284],[0.0072662835009396,-0.019249401986599,0.039067134261131]],[[0.066730879247189,-0.031444303691387,-0.076922379434109],[0.039268590509892,0.057176645845175,0.0071124122478068],[-0.021196370944381,0.047710064798594,0.019857183098793]],[[-0.096593990921974,-0.16844765841961,-0.12514658272266],[-0.053514577448368,-0.066022105515003,-0.21995936334133],[-0.063142813742161,-0.036051411181688,-0.063744455575943]],[[0.018515938892961,0.01944193802774,0.089420072734356],[-0.072061538696289,-0.029259815812111,0.0098652243614197],[-0.01711343601346,-0.0043185437098145,-0.038656506687403]],[[0.16577500104904,0.17951321601868,0.055295318365097],[0.047014366835356,0.19304789602757,0.24656638503075],[0.073472879827023,0.093965768814087,0.14332170784473]],[[0.084503181278706,-0.037210538983345,-0.030914509668946],[0.020829221233726,0.10400757938623,0.03265742957592],[-0.067361287772655,-0.056881088763475,-0.095773696899414]],[[-0.11366635560989,-0.13642747700214,-0.018376784399152],[0.028498547151685,-0.019961338490248,-0.10989420861006],[-0.0086981458589435,0.13861554861069,0.057550393044949]],[[0.061073318123817,-0.1021735817194,-0.11382768303156],[0.074123777449131,0.074307590723038,-0.038964886218309],[-0.056989215314388,0.025373270735145,0.0070840390399098]],[[-0.071817092597485,0.010493617504835,0.057494770735502],[-0.021970922127366,0.03003161214292,0.052860986441374],[-0.049844160676003,0.070993639528751,0.015317664481699]],[[0.0036739660426974,0.032488949596882,0.029696026816964],[0.078708596527576,0.077959485352039,-0.0075868731364608],[0.013027758337557,0.02714004740119,0.075274392962456]],[[-0.04451297596097,0.039321683347225,-0.041369836777449],[-0.059903487563133,0.0045828321017325,-0.037001021206379],[-0.043365482240915,0.052741382271051,-0.0034192625898868]],[[-0.036041136831045,0.047111328691244,-0.0253840778023],[-0.0024651971179992,-0.029169492423534,-0.0042335856705904],[-0.060218967497349,-0.019157722592354,-0.057732801884413]],[[0.17534416913986,-0.060091305524111,0.11865876615047],[-0.10694024711847,0.12427006661892,0.14963449537754],[-0.12219235301018,-0.028524620458484,0.046735789626837]],[[-0.06560979783535,-0.01810217089951,0.0019496432505548],[-0.020823506638408,0.071703307330608,-0.067210145294666],[-0.049774281680584,0.016145566478372,0.17341282963753]],[[0.093596212565899,0.09303617477417,-0.045042499899864],[0.0040320567786694,0.13254937529564,0.083885796368122],[0.04003294184804,-0.048043482005596,0.10087725520134]],[[-0.020401289686561,-0.027780376374722,0.093036733567715],[-0.012356796301901,0.051144644618034,-0.039765685796738],[0.11476142704487,0.019098093733191,-0.0056849201209843]],[[-0.068904384970665,-0.031216878443956,-0.11876012384892],[0.026374310255051,-0.0073271011933684,0.060526639223099],[-0.006730433087796,-0.060989499092102,0.016663987189531]],[[0.057428732514381,0.11641180515289,-0.034143939614296],[0.014600179158151,-0.028524344787002,0.054567039012909],[0.0064965724013746,-0.097460269927979,0.016718151047826]],[[0.073013544082642,-0.12220255285501,-0.035960286855698],[0.028723990544677,0.013831175863743,-0.062566570937634],[0.046578854322433,-0.018712371587753,0.045455500483513]],[[-8.0537727626506e-05,0.035674802958965,0.0068058473989367],[0.03857633844018,0.057991433888674,-0.047751903533936],[0.050700563937426,0.040803603827953,0.079252570867538]],[[0.041991539299488,-0.086738340556622,-0.046143524348736],[-0.012017626315355,-0.0036728011909872,-0.070511497557163],[-0.012686608359218,0.083961449563503,0.077089533209801]],[[-0.0813824608922,-0.080436162650585,-0.055855244398117],[0.14138959348202,-0.032541546970606,0.0028535486198962],[0.032831735908985,0.089133195579052,0.004063842818141]],[[0.086150482296944,0.019448174163699,-0.018486224114895],[-0.12592181563377,-0.019319120794535,0.040760416537523],[-0.10538069903851,-0.043088655918837,-0.0088192177936435]],[[-0.0056168725714087,0.066718205809593,0.12582528591156],[-0.030134152621031,0.0070255505852401,0.11425644159317],[-0.015302301384509,-0.070611216127872,-0.0036235558800399]],[[-0.10930556058884,-0.023199316114187,-0.00013309140922502],[-0.19550177454948,-0.14874698221684,-0.014695256017148],[-0.014951194636524,-0.15208043158054,-0.16300091147423]],[[-0.076938331127167,0.036484196782112,-0.14765390753746],[-0.11026144772768,0.019001552835107,-0.01982668787241],[0.027264295145869,-0.054041404277086,-0.042121410369873]],[[0.004878219217062,-0.066775642335415,0.02010577917099],[0.048618130385876,-0.0021771593019366,0.030119962990284],[-0.019828017801046,-0.0068194549530745,0.14409480988979]],[[0.044041432440281,-0.020764417946339,-0.10051264613867],[-0.048555109649897,0.061583507806063,-0.038050726056099],[-0.002096222480759,0.018626738339663,-0.018032791092992]],[[-0.029861811548471,-0.050662901252508,0.022939708083868],[0.055597521364689,-0.12974488735199,0.072789117693901],[0.032985486090183,-0.05696788802743,0.013560890220106]],[[-0.17197024822235,0.080565638840199,-0.097837515175343],[0.13423511385918,0.020037079229951,0.026138568297029],[-0.094019345939159,-0.13189066946507,0.29243421554565]],[[0.042516820132732,0.18332590162754,0.12115932255983],[0.071202613413334,-0.0044338265433908,0.13388177752495],[0.10436353087425,-0.068841867148876,0.016717843711376]],[[-0.0044047315604985,0.041583966463804,0.10850441455841],[0.06041930988431,-0.048566497862339,0.11097978800535],[-0.0051540825515985,0.029220316559076,-0.015929019078612]],[[0.099997505545616,0.055746473371983,0.03306420892477],[-0.12967927753925,0.050819590687752,0.069669365882874],[-0.061193075031042,-0.01418289821595,0.031275145709515]],[[0.034844528883696,0.0050126947462559,0.11337838321924],[0.098502665758133,0.041036602109671,0.10918442904949],[0.00086612824816257,0.080257706344128,0.049781195819378]],[[0.044140983372927,-0.026182536035776,-0.013630971312523],[0.12532858550549,-0.042350459843874,-0.081051543354988],[-0.055423874408007,-0.0027690518181771,-0.054569497704506]],[[0.082438915967941,0.057105556130409,-0.089277386665344],[-0.0033726471010596,0.099236935377121,0.046880859881639],[0.013124009594321,-0.057259514927864,-0.029190303757787]],[[-0.043487753719091,0.028019012883306,-0.0821243673563],[0.098640151321888,-0.11335758119822,0.013096380978823],[0.083465032279491,-0.0019148176070303,0.03279983997345]],[[0.020897777751088,0.0010815683053806,0.022930527105927],[-0.03444866463542,-0.027448851615191,-0.10620809346437],[-0.0061918459832668,-0.071688868105412,-0.0087544489651918]],[[0.057364903390408,0.10506355762482,-0.058369152247906],[-0.034506298601627,0.027525920420885,0.036979459226131],[0.10246137529612,-0.043299917131662,0.049549084156752]],[[0.01144343521446,-0.059716902673244,-0.062609285116196],[-0.0024897765833884,0.0045194481499493,-0.014499256387353],[-0.066819414496422,-0.0043891365639865,-0.074819587171078]],[[-0.078880108892918,-0.019072001799941,0.017880994826555],[-0.056633088737726,-0.088734097778797,-0.033143758773804],[-0.033469278365374,-0.016413345932961,-0.055347688496113]],[[0.012172278948128,-0.031458456069231,-0.020362054929137],[0.013963347300887,-0.00095055834390223,0.035873033106327],[0.027261005714536,0.076314352452755,0.03509870916605]],[[0.0023144013248384,-0.0082912966609001,0.058043759316206],[-0.0020411503501236,-0.043034180998802,-0.019693356007338],[0.04754238948226,0.00071216636570171,-0.054952319711447]],[[-0.032761741429567,-0.03917695581913,0.12445772439241],[-0.097270093858242,0.02199617959559,0.011135171167552],[-0.0042487685568631,-0.063455209136009,0.071230955421925]],[[-0.0031097615137696,0.029795177280903,-0.043422590941191],[-0.091176100075245,-0.029522472992539,0.02881439961493],[0.012531430460513,-0.062512934207916,-0.074994795024395]],[[0.0093403533101082,0.038148909807205,-0.013092915527523],[-0.012260599061847,-0.034589253365993,-0.0068272911012173],[-0.054792448878288,-0.1223676726222,-0.011179632507265]],[[-0.042087368667126,-0.0063441945239902,-0.042796351015568],[0.019290501251817,0.057050921022892,0.040044482797384],[-0.0050610494799912,-0.093463040888309,-0.04170960187912]],[[-0.018254548311234,-0.053335517644882,-0.056675862520933],[-0.015351047739387,-0.029229117557406,0.085435040295124],[-0.082311026751995,-0.030897689983249,0.035469487309456]],[[0.074326820671558,-0.019851898774505,-0.09981819242239],[0.045116670429707,-0.081511162221432,-0.024883549660444],[-0.1370460242033,-0.011221648193896,0.0066219726577401]],[[0.035065952688456,0.048771288245916,-0.0044427895918489],[-0.068298861384392,-0.084645316004753,-0.011651349253953],[-0.047618672251701,-0.058649353682995,-0.091766521334648]],[[-0.079541675746441,0.023505507037044,-0.033715426921844],[-0.02657712996006,-0.01988897100091,0.067246489226818],[0.014629199169576,-0.0033000975381583,-0.04920806735754]],[[-0.057724677026272,0.033914119005203,0.10516664385796],[0.034572139382362,-0.016105173155665,-0.0055442187003791],[-0.062419410794973,-0.0070271254517138,-0.023338332772255]],[[0.0290732011199,0.046847585588694,-0.054521329700947],[0.10331193357706,0.043739300221205,0.040643867105246],[0.091892436146736,-0.090144984424114,-0.031746909022331]],[[-0.031104441732168,-0.15587939321995,-0.061523638665676],[-0.16988098621368,0.040398266166449,0.079546585679054],[-0.018156554549932,-0.18163387477398,0.0059207458980381]],[[-0.018364356830716,-0.024503098800778,0.071086347103119],[0.014427070505917,0.04574291780591,-0.081781886518002],[-0.035264980047941,0.040360312908888,0.058169823139906]],[[-0.091918781399727,0.11089842021465,-0.034644789993763],[-0.086303159594536,0.061985645443201,-0.03428116813302],[0.057194102555513,0.035552151501179,0.0164854247123]],[[-0.045801993459463,0.07230419665575,0.049150377511978],[0.018966842442751,0.17973785102367,-0.0051519884727895],[-0.05793222039938,-0.1329056173563,0.061393223702908]],[[-0.0063530523329973,-0.060474388301373,-0.074285537004471],[-0.021500419825315,0.012102585285902,0.053161516785622],[0.033780358731747,0.012144742533565,0.01468279119581]],[[0.0028424565680325,0.095421612262726,0.10915421694517],[-0.067144818603992,0.02284412458539,0.13881081342697],[-0.017326943576336,0.010368243791163,-0.0034044852945954]],[[0.0022352989763021,-0.0023015982005745,0.0026149577461183],[-0.065096974372864,0.046547576785088,0.031977646052837],[-0.069938413798809,-0.062467612326145,0.026246216148138]]],[[[-0.11554457992315,-0.02822550944984,-0.022109244018793],[-0.025139903649688,-0.0056089130230248,0.086915321648121],[0.036757778376341,0.0076642199419439,0.073934748768806]],[[-0.046598147600889,0.024773426353931,0.09120050817728],[0.067068561911583,-0.01998601667583,0.03327602148056],[-0.022291706874967,0.030180167406797,0.054138291627169]],[[0.017047071829438,0.12141032516956,-0.02992712892592],[-0.10460335761309,0.030446214601398,-0.075591839849949],[-0.14707879722118,0.025105606764555,-0.053148686885834]],[[0.050938494503498,0.015611309558153,-0.048712652176619],[-0.00017116224626079,0.037817277014256,0.023323483765125],[0.019254880025983,0.0057630902156234,0.031343333423138]],[[-0.01129721943289,-0.00010587465658318,-0.053887490183115],[0.0087906867265701,0.0022754995152354,-0.12459269165993],[-0.051573861390352,-0.086843676865101,0.087041944265366]],[[-0.066032469272614,0.050716813653708,-0.037696953862906],[0.015044308267534,-0.075536631047726,0.018458718433976],[-0.0044639157131314,0.057356644421816,0.035096608102322]],[[-0.041703220456839,0.074283577501774,-0.021506885066628],[0.00043317838571966,0.0072251847013831,0.027688296511769],[0.012450554408133,-0.054704371839762,0.012067743577063]],[[0.054015181958675,0.0066042826510966,0.040572993457317],[-0.013747270219028,0.017027389258146,-0.028844969347119],[0.039795253425837,-0.020605141296983,0.014000406488776]],[[-0.029321677982807,-0.075332306325436,-0.026259783655405],[0.0076437941752374,-0.029753234237432,0.024661401286721],[0.080500960350037,-0.0082724392414093,-0.036405008286238]],[[-0.097139477729797,-0.085896819829941,0.024778984487057],[0.078588962554932,0.038715180009604,0.077902756631374],[-0.0006083992193453,-0.091966181993484,0.006492470856756]],[[-0.065135397017002,0.0081198066473007,-0.062565162777901],[0.054523639380932,0.054063376039267,0.016821948811412],[-0.02741895057261,0.0090328948572278,-0.039697576314211]],[[0.18294697999954,-0.0041926596313715,-0.058652434498072],[-0.047209747135639,0.21820805966854,0.11274652183056],[0.19520330429077,0.044284876435995,-0.0085771642625332]],[[-0.040380414575338,-0.013030651956797,-0.025122463703156],[-0.12136637419462,-0.024618830531836,-0.022209838032722],[-0.013263190165162,-0.034826055169106,-0.029176587238908]],[[0.0423179641366,0.0094780344516039,0.039618954062462],[0.016959361732006,-0.027453197166324,0.047902088612318],[-0.00086583365919068,-0.02112422324717,0.076251164078712]],[[0.042149111628532,0.062024779617786,-0.053053092211485],[0.028256457298994,0.052611567080021,-0.024892067536712],[-0.015888096764684,-0.016361521556973,-0.055759284645319]],[[0.030257161706686,-0.0218157581985,-0.01598934456706],[0.045743305236101,-0.047378968447447,0.063299849629402],[0.065141178667545,-0.056285466998816,0.036904841661453]],[[0.013308019377291,0.012020732276142,0.12446325272322],[0.045315902680159,-0.016841676086187,0.066256009042263],[0.14631228148937,-0.027779795229435,0.074047781527042]],[[0.062641076743603,-0.0024659275077283,-0.15006305277348],[0.1035243049264,-0.15486769378185,-0.15264515578747],[-0.011114495806396,-0.02456140331924,-0.090709134936333]],[[-0.048455689102411,-0.021407034248114,-0.039164006710052],[-0.013992749154568,-0.047263782471418,-0.013224929571152],[-0.033897310495377,0.048392172902822,0.018862156197429]],[[-0.057407688349485,-0.014821298420429,0.068162523210049],[0.056721072643995,0.13531890511513,-0.036390911787748],[0.1249003559351,0.021982282400131,0.098102256655693]],[[0.018333323299885,0.035419594496489,0.009598383679986],[0.072117947041988,0.18215824663639,0.092488013207912],[0.03302925825119,-0.0054949470795691,0.0040004546754062]],[[0.0079527115449309,0.020022086799145,0.054657209664583],[0.060591787099838,-0.01184600405395,0.065816231071949],[-0.092962451279163,-0.10590169578791,0.019338700920343]],[[0.11032718420029,0.0070122443139553,0.0075315972790122],[0.075087487697601,-0.0016919164918363,0.020421685650945],[0.058288000524044,0.047097660601139,0.0193613730371]],[[0.080468125641346,-0.016096130013466,-0.052934393286705],[-0.081600092351437,0.0087008848786354,-0.039718940854073],[0.049065008759499,-0.010300694964826,-0.029540924355388]],[[0.020861500874162,0.0026209696661681,-0.026226634159684],[0.075981944799423,0.050854332745075,0.029575126245618],[0.045185651630163,-0.037557851523161,0.077242501080036]],[[-0.039016257971525,-0.11722438782454,-0.12547296285629],[-0.080133080482483,-0.0028947298415005,0.10539662092924],[-0.038694843649864,0.010092432610691,0.0051804101094604]],[[-0.057937137782574,0.0020536596421152,0.059739783406258],[0.14539758861065,-0.010396961122751,-0.027013504877687],[0.020286686718464,-0.037376910448074,0.0053470935672522]],[[-0.035481069236994,-0.032692119479179,0.13590787351131],[-0.042270679026842,0.096538625657558,0.028174627572298],[-0.0010983807733282,-0.047125265002251,0.019151730462909]],[[-0.018764581531286,0.028731571510434,-0.073929585516453],[-0.096255250275135,-0.045453082770109,-0.053721398115158],[0.057399541139603,-0.0070229317061603,0.017716575413942]],[[0.050618644803762,-0.07300777733326,0.00013030426634941],[0.16618487238884,0.067690394818783,-0.0060914480127394],[0.091629564762115,-0.018095439299941,0.049226596951485]],[[0.035362530499697,0.0014322476927191,-0.013396091759205],[-4.135544077144e-05,0.06556248664856,-0.015418966300786],[-0.12905059754848,0.087834015488625,-0.052245229482651]],[[-0.0051070563495159,-0.025586605072021,0.068090185523033],[-0.11359525471926,0.10164552927017,0.027592157945037],[0.079798176884651,-0.091761447489262,-0.0069970209151506]],[[-0.0079920394346118,-0.046723004430532,0.028794312849641],[0.098675951361656,0.10651209950447,0.037953700870275],[-0.085636548697948,0.024778001010418,0.05446495115757]],[[0.084484741091728,0.061356902122498,0.12979857623577],[0.18863606452942,0.021854843944311,0.029829729348421],[0.025040658190846,0.048632889986038,-0.020311374217272]],[[-0.00082914478844032,0.038344655185938,-0.0014542348217219],[0.0086400900036097,-0.028520775958896,0.14688347280025],[-0.021995451301336,0.037796396762133,0.082050271332264]],[[0.026023982092738,0.017211444675922,0.053530987352133],[0.02052503451705,0.038782175630331,-0.074092254042625],[-0.0029684889595956,0.013705505058169,0.039660684764385]],[[0.090446494519711,0.18018804490566,-0.0065083024092019],[0.075979560613632,-0.037397172302008,0.061481673270464],[-0.0096397027373314,0.13883119821548,-0.043274253606796]],[[0.083613954484463,-0.019294952973723,-0.051802914589643],[0.078186593949795,0.16505761444569,0.18959179520607],[-0.013355171307921,-0.10384473949671,0.0096865631639957]],[[-0.036959648132324,-0.013629909604788,-0.0097824214026332],[0.074505247175694,0.014857914298773,-0.010574360378087],[-0.03291754424572,0.12005598843098,0.17698472738266]],[[-0.016513025388122,0.018209081143141,0.13751189410686],[-0.03523763641715,-0.037647239863873,0.0082790022715926],[-0.030390212312341,-0.0089210793375969,-0.040381975471973]],[[0.017620496451855,-0.0058927526697516,0.039577517658472],[-0.053642936050892,-0.023815330117941,-0.041425328701735],[-0.066535905003548,0.0057424106635153,0.027006290853024]],[[-0.0076411995105445,-0.049326617270708,-0.0089665781706572],[-0.0071047088131309,0.014599233865738,-0.030213309451938],[-0.0032219383865595,-0.086868800222874,-0.069393508136272]],[[-0.073644012212753,-0.026398003101349,0.068734437227249],[0.098979622125626,-0.0036981219891459,0.018786408007145],[-0.019733859226108,0.026979962363839,0.060478053987026]],[[0.0080716433003545,-0.033619295805693,-0.0053425813093781],[-0.084649227559566,0.10139781981707,-0.058247596025467],[-0.066636353731155,0.017850115895271,-0.045613087713718]],[[-0.048268895596266,-0.11440116167068,-0.030950240790844],[-0.0034954138100147,0.097314424812794,-0.0022954968735576],[0.012703710235655,0.05677767470479,0.019893921911716]],[[0.075697042047977,0.10545956343412,-0.0018679003696889],[-0.05941017717123,0.023966312408447,0.015896756201982],[-0.011431001126766,0.067989632487297,-0.013998381793499]],[[-0.0018029637867585,-0.095128118991852,-0.014217386953533],[0.025582218542695,-0.070966936647892,0.001670689554885],[0.0059099970385432,0.10990280658007,-0.025160470977426]],[[-0.13033667206764,0.064553998410702,0.026391297578812],[0.061328776180744,-0.063617631793022,0.052961725741625],[0.11856551468372,-0.034742653369904,-0.032873407006264]],[[0.017653804272413,0.16579793393612,0.016716906800866],[0.01097087841481,0.0079065430909395,0.0039230175316334],[-0.043017137795687,-0.097142018377781,0.16327972710133]],[[0.017109874635935,0.015509148128331,0.05729852616787],[-0.041936811059713,0.072638034820557,-0.06109357252717],[-0.01274542696774,-0.028920354321599,0.11469405144453]],[[0.0065631037577987,0.047395169734955,-0.071031779050827],[-0.024105044081807,-0.1383581161499,-0.14062114059925],[0.00019385121413507,-0.0030000344850123,-0.072560131549835]],[[-0.0052461284212768,0.089719265699387,-0.0043489243835211],[0.03216789662838,0.034180227667093,0.024483490735292],[0.0095676705241203,-0.0082508381456137,0.05731188133359]],[[0.17760817706585,0.043782979249954,0.079999372363091],[-0.012056674808264,0.14498998224735,0.20666921138763],[0.048833921551704,-0.082200594246387,-0.1700088083744]],[[-0.018852466717362,-0.036912191659212,0.053277879953384],[0.033786941319704,0.024722164496779,0.046250347048044],[0.07529840618372,-0.030486756935716,0.048384610563517]],[[-0.050711017102003,0.079847872257233,-0.033842500299215],[0.07609535753727,0.021267034113407,0.010152800008655],[0.083043374121189,-0.067095130681992,0.059028640389442]],[[0.059137336909771,-0.032604817301035,0.010126812383533],[-0.068912662565708,-0.0016124885296449,0.04063755273819],[-0.016392659395933,0.049375984817743,-0.059611920267344]],[[-0.15579022467136,0.044266700744629,-0.08658704161644],[-0.012783541344106,-0.061352394521236,-0.025977097451687],[-0.018740577623248,0.040269404649734,-0.067261874675751]],[[0.018299490213394,0.026646096259356,-0.058653563261032],[0.072573490440845,0.058348029851913,0.05833861976862],[-0.040431667119265,-0.056865867227316,0.047696068882942]],[[-0.027756998315454,0.033665489405394,0.01493017282337],[0.049527548253536,-0.040792983025312,0.040459755808115],[0.0034801450092345,0.0073913377709687,0.13469880819321]],[[-0.0022409178782254,-0.014427320100367,-0.017137175425887],[-0.047266650944948,-0.063053652644157,0.0010486003011465],[0.0033931350335479,0.17320336401463,0.016907474026084]],[[-0.018486810848117,-0.080832362174988,0.042616549879313],[0.0065907230600715,0.05010598897934,-0.051357224583626],[-0.043534051626921,0.0045732967555523,-0.035865489393473]],[[0.034973904490471,0.082846611738205,0.073374353349209],[0.11090114712715,-0.069226212799549,-0.087864063680172],[-0.071860581636429,-0.034744001924992,-0.014398676343262]],[[0.011162370443344,-0.055557768791914,0.032582081854343],[0.050984773784876,-0.0050805355422199,0.03457073867321],[-0.089148007333279,0.077680587768555,0.12185268104076]],[[0.017960671335459,-0.012565545737743,0.030744297429919],[0.038357317447662,-0.039324659854174,0.018218409270048],[0.016439598053694,0.078584022819996,-0.050878446549177]],[[-0.016398375853896,-0.047825641930103,0.10179918259382],[0.06279493868351,0.10224175453186,-0.026649825274944],[-0.072187907993793,0.064095892012119,0.15248937904835]],[[0.042886141687632,0.050513304769993,-0.038758087903261],[0.0079013584181666,0.0049106050282717,-0.0024741173256189],[-0.062542930245399,-0.034578118473291,-4.0506933146389e-05]],[[-0.0279296413064,0.077261470258236,0.093778669834137],[-0.017289882525802,0.018452217802405,0.058214742690325],[0.015763347968459,0.021548967808485,0.024288762360811]],[[0.018051436170936,0.091553822159767,-0.017246179282665],[-0.0057376795448363,-0.0051323994994164,0.041140250861645],[0.076639145612717,0.0044245827011764,0.060099918395281]],[[-0.071826979517937,-0.097936511039734,-0.1241787225008],[0.0056112222373486,-0.060770735144615,-0.06361386179924],[0.038636162877083,-0.022474654018879,-0.12108450382948]],[[-0.044950433075428,-0.058796141296625,0.090665444731712],[0.011016661301255,0.070215292274952,0.084413059055805],[0.099165804684162,0.057576883584261,-0.028308236971498]],[[-0.033563308417797,-0.046748884022236,-0.0065597235225141],[-0.058798883110285,-0.10040432214737,-0.024270806461573],[-0.076299510896206,0.014244937337935,0.0067189508117735]],[[-0.04902220889926,0.10132864117622,0.10552018880844],[0.082283370196819,0.01569121517241,-0.028603460639715],[0.070443488657475,0.067609168589115,0.042078755795956]],[[0.049483470618725,0.0068038394674659,0.017797386273742],[-0.030190795660019,0.08350133895874,-0.014146376401186],[-0.035064950585365,-0.06176270544529,-0.012644967064261]],[[-0.025475386530161,-0.0084426430985332,0.0099717741832137],[0.071365602314472,-0.010190308094025,-0.095162622630596],[-0.074163720011711,-0.021123681217432,0.12289333343506]],[[-0.056579988449812,-0.0040850131772459,0.026700131595135],[-0.013444383628666,-0.039359778165817,0.077988915145397],[0.045951306819916,-0.056896477937698,0.064705811440945]],[[-0.031619377434254,0.0352454893291,-0.092086642980576],[0.035623330622911,-0.088457718491554,0.09710505604744],[-0.027611345052719,0.045020155608654,0.020260870456696]],[[-0.048555742949247,0.10963912308216,0.019585413858294],[0.070226341485977,-0.022973326966166,-0.054627627134323],[0.092371232807636,-0.031451378017664,-0.021267961710691]],[[-0.050751965492964,0.0060715302824974,0.021080620586872],[0.0006968445959501,0.1334583312273,0.088265292346478],[0.037641454488039,0.094951204955578,0.059988230466843]],[[0.074302949011326,0.065562628209591,-0.055193640291691],[-0.05368834733963,-0.12371327728033,-0.065599136054516],[-0.032313674688339,-0.0022499857004732,-0.015291116200387]],[[-0.01904085278511,0.039328567683697,-0.1186940819025],[-0.041281726211309,-0.082205481827259,0.061440829187632],[-0.0066650337539613,-0.1084071919322,-0.076419211924076]],[[0.053183726966381,0.12736754119396,-0.032865785062313],[-0.030142745003104,0.059906974434853,0.098882459104061],[0.055785749107599,0.015287925489247,0.0095349932089448]],[[-0.01673518307507,0.009501994587481,0.066273257136345],[-0.085884287953377,0.01925191655755,-0.019131481647491],[-0.049174621701241,-0.0019253458594903,0.021444626152515]],[[-0.0067347441799939,-0.033123519271612,0.12039814144373],[0.0055914488621056,0.04980256780982,-0.042465109378099],[-0.070024743676186,-0.026251940056682,0.04098866134882]],[[-0.0010971974115819,-0.027777954936028,-0.0082011660560966],[0.0085915680974722,0.10763150453568,0.018358433619142],[0.0070526390336454,-0.029541464522481,-0.0066454424522817]],[[0.078477539122105,0.083445772528648,0.063405640423298],[-0.024018255993724,-0.079134173691273,0.11520610749722],[-0.022618172690272,0.064289651811123,-0.015126447193325]],[[0.0050803637132049,-0.049095869064331,-0.011913065798581],[0.093612246215343,0.064425237476826,0.01667576096952],[-0.0015520517481491,0.010828917846084,0.035293579101562]],[[-0.00052804255392402,0.0070652165450156,0.032095354050398],[-0.013483695685863,0.086492396891117,-0.032333377748728],[-0.065444648265839,-0.05242645740509,0.032990165054798]],[[-0.052619028836489,-0.1081797555089,0.03779549151659],[-0.0047652218490839,0.13195464015007,-0.042161270976067],[0.1056145876646,-0.059828832745552,0.0057641291059554]],[[-0.018589830026031,-0.074031166732311,0.073116227984428],[-0.0049083270132542,0.091162107884884,-0.055014174431562],[0.0077225123532116,-0.080113962292671,-0.02042743191123]],[[-0.074302099645138,-0.059701267629862,0.03095069155097],[0.01780547760427,-0.036193206906319,0.10622829198837],[-0.054363362491131,0.0054421969689429,0.044043745845556]],[[0.083306565880775,0.081904254853725,0.075653158128262],[-0.08135075122118,0.094922862946987,-0.066090397536755],[-0.028292298316956,-0.019399952143431,0.082006722688675]],[[-0.014469204470515,-0.0096657499670982,0.05003334581852],[-0.048581276088953,0.035135462880135,-0.053113892674446],[-0.036721955984831,-0.01394622027874,0.059855069965124]],[[0.0023730390239507,-0.081702694296837,-0.0060135219246149],[0.027816042304039,0.030128855258226,-0.077214293181896],[0.030164683237672,-0.016240375116467,-0.08134138584137]],[[0.056819632649422,-0.021822458133101,0.036593042314053],[-0.089179620146751,0.00051677966257557,0.040837526321411],[-0.093181729316711,0.057020019739866,-0.0012718323851004]],[[-0.013323880732059,0.0031969228293747,0.022715205326676],[-0.036721024662256,0.12134443968534,0.047756537795067],[0.022966295480728,-0.06515246629715,0.070392727851868]],[[0.11194576323032,0.091203242540359,-0.073330588638783],[-0.016918700188398,0.02507034316659,-0.0066776536405087],[0.054057251662016,0.17010693252087,-0.059530068188906]],[[0.041167762130499,0.15654250979424,0.095580108463764],[0.17244786024094,-0.011474837549031,-0.010405112057924],[-0.01070564892143,-0.014992813579738,0.11894573271275]],[[-0.0135403778404,-0.045442216098309,0.057576395571232],[-0.01294303778559,0.045172140002251,-0.01351230032742],[0.061421781778336,0.063859023153782,0.054279822856188]],[[0.057402446866035,-0.040295120328665,-0.092379324138165],[-0.028602914884686,0.074900537729263,-0.040211334824562],[-0.091339573264122,-0.042860858142376,-0.019914988428354]],[[0.080499894917011,0.04406426474452,-0.050190430134535],[0.0026169379707426,-0.041840884834528,-0.0017284239875153],[0.0022765232715756,0.03873698413372,-0.043671760708094]],[[-0.03244961053133,0.051942318677902,0.037477716803551],[-0.077848426997662,-0.096916489303112,-0.047834061086178],[-0.0072740926407278,0.034052722156048,-0.039167553186417]],[[0.081868790090084,-0.0088181979954243,0.017354855313897],[0.02893534116447,0.074401549994946,0.098314791917801],[0.09540344029665,0.031985655426979,0.18669363856316]],[[0.0057269888930023,0.0028389398939908,0.00032110823667608],[0.011073121801019,0.03960756957531,-0.013852164149284],[-0.030519839376211,0.05799575150013,0.064109563827515]],[[0.039051402360201,-0.0027533120010048,-0.019662834703922],[0.00021356677461881,-0.081264726817608,0.048631768673658],[-0.036982800811529,-0.074331887066364,-0.029258972033858]],[[0.032392252236605,-0.041194148361683,0.027097066864371],[0.0012616282328963,0.056261863559484,0.050148971378803],[0.15247836709023,0.035372946411371,0.021967388689518]],[[0.027124939486384,-0.087316825985909,0.099822506308556],[0.017855504527688,-0.041544459760189,0.036232691258192],[0.06649362295866,0.024601252749562,0.0044975015334785]],[[-0.097894407808781,-0.0048936409875751,0.0080934204161167],[-0.018931331112981,-0.033358599990606,0.024745492264628],[-0.019615441560745,0.048050027340651,0.030138939619064]],[[0.077899575233459,0.036008793860674,0.027682835236192],[-0.10516303777695,0.076090388000011,0.056279119104147],[-0.00015637242177036,0.08514729142189,0.032123550772667]],[[0.041415974497795,0.062636159360409,0.062120821326971],[0.064890496432781,-0.016104934737086,0.11953562498093],[0.023699022829533,0.052789516746998,0.098861962556839]],[[0.024870559573174,-0.0031925872899592,-0.010753049515188],[-0.018225455656648,0.057470723986626,-0.022263193503022],[-0.053312994539738,0.027163928374648,0.034028641879559]],[[-0.007495941594243,-0.025942215695977,0.012031210586429],[0.019203279167414,-0.018843699246645,0.029566856101155],[0.019739223644137,-0.012610672973096,0.0061401166021824]],[[-0.024274069815874,-0.080002419650555,0.01333536952734],[-0.0048314612358809,0.065476275980473,-0.076631277799606],[0.07298681885004,-0.037529535591602,0.10053220391273]],[[-0.092794857919216,0.074041962623596,0.072733961045742],[-0.018762433901429,-0.027602665126324,0.099337987601757],[-0.044625759124756,-0.055786903947592,-0.082716107368469]],[[0.026152620092034,-0.014392986893654,-0.025469876825809],[0.015961565077305,0.0062078647315502,0.0096390396356583],[0.007975684478879,-0.026288107037544,-0.021760424599051]],[[-0.041839692741632,0.21433125436306,0.0032730426173657],[-0.090076223015785,-0.071923933923244,-0.028351057320833],[0.0020537725649774,0.16693535447121,0.0086800567805767]],[[-0.032135602086782,0.042662054300308,0.014377935789526],[-0.15109123289585,-0.018431473523378,0.079784452915192],[0.017300652340055,0.034764405339956,0.0040427092462778]],[[-0.0048821405507624,0.04059336706996,0.016681488603354],[-0.01734422519803,-0.013056720606983,-0.069712743163109],[0.0087993685156107,0.0099274972453713,0.054286811500788]],[[-0.025452805683017,0.010663802735507,0.06509055942297],[-0.0053738816641271,0.013977334834635,-0.018394973129034],[-0.075535252690315,-0.03336800634861,0.078129723668098]],[[-0.045361943542957,-0.038880463689566,-0.02834277972579],[0.073816522955894,0.013988547027111,-0.03097166493535],[0.026692485436797,-0.031426209956408,-0.026929223909974]],[[-0.03544719144702,0.0054484885185957,0.0058828918263316],[-0.072817906737328,0.068644843995571,-0.01687927544117],[-0.048108477145433,0.01178589835763,-0.035742286592722]],[[-0.021104963496327,-0.091735757887363,-0.010780698619783],[-0.058797545731068,0.063262067735195,0.17487654089928],[0.036491636186838,-0.047280613332987,-0.046331826597452]],[[0.015273039229214,-0.0024934546090662,0.11466882377863],[-0.036839492619038,0.018293354660273,0.02529758028686],[0.16058239340782,0.23920622467995,-0.018299570307136]],[[-0.012734701856971,0.074451610445976,0.052179589867592],[-0.038162223994732,-0.042115937918425,0.033822126686573],[-0.016793290153146,-0.032660495489836,-0.11879612505436]],[[-0.042660299688578,-0.04952771961689,-0.071229182183743],[0.029908845201135,0.022106377407908,-0.069790221750736],[0.073379181325436,0.067156083881855,-0.044982545077801]],[[0.0006284232949838,-0.034546080976725,0.016106728464365],[-0.029070587828755,-0.037322495132685,0.055074792355299],[0.037122137844563,-0.030974132940173,-0.082971803843975]],[[-0.030677346512675,0.040934201329947,0.10336402058601],[0.032891698181629,0.065532073378563,0.025054717436433],[0.017885627225041,0.03456487134099,0.017925817519426]],[[-0.068611524999142,-0.00046867024502717,0.1248002499342],[0.1605588644743,-0.0089836800470948,-0.011345325037837],[-0.0040155882015824,0.028834735974669,0.083612993359566]],[[-0.084543235599995,0.037775214761496,0.020163180306554],[0.023769097402692,0.078883640468121,-0.068758204579353],[-0.081748425960541,0.022649601101875,-0.0052187866531312]]],[[[0.09584816545248,-0.019270278513432,0.058349024504423],[-0.013971209526062,-0.0010465632658452,0.023389793932438],[-0.07035493850708,0.040577922016382,-0.031108193099499]],[[-0.06624212116003,-0.032375916838646,-0.021819163113832],[-0.020375283434987,-0.055139902979136,0.022391917183995],[0.059006202965975,0.041811596602201,0.076709128916264]],[[-0.043643366545439,0.042869858443737,0.033344317227602],[0.061074394732714,0.0064497073180974,-0.063503764569759],[0.025725344195962,-0.063052251935005,0.0070407693274319]],[[0.057527452707291,-0.041176605969667,-0.015740923583508],[-0.058302972465754,0.013451546430588,0.011125401593745],[0.03328225389123,0.023887932300568,-0.031208449974656]],[[-0.057625956833363,-0.01924255117774,0.07268363237381],[0.10218385607004,-0.029026683419943,0.015747740864754],[0.03792217373848,0.0088518401607871,0.020435243844986]],[[-0.0023417344782501,0.057219658046961,-0.030753806233406],[0.056207466870546,-0.036420810967684,0.026693720370531],[0.033085752278566,0.029780382290483,0.074667416512966]],[[-0.01948169246316,0.060312129557133,-0.0049194921739399],[0.0051537500694394,0.003488132962957,-0.0036446780432016],[-0.0026306752115488,0.0077497405000031,-0.0084360809996724]],[[-0.06300750374794,-0.023458853363991,-0.0009006557520479],[-0.015327804721892,0.080029539763927,-0.00065796833951026],[-0.0049760574474931,0.017717558890581,0.020179064944386]],[[0.078851096332073,-0.045530673116446,0.063734278082848],[0.019200729206204,0.060081299394369,-0.0015334903728217],[0.029306801036,-0.044893890619278,0.039078213274479]],[[-0.042489089071751,-0.013015920296311,0.036727663129568],[-0.051753003150225,0.047150772064924,0.026044949889183],[0.020672924816608,0.03729959204793,0.053718347102404]],[[0.017375839874148,-0.0001523106766399,0.043308351188898],[-0.030787231400609,-0.046768222004175,0.059005923569202],[0.0012514508562163,-0.009074991568923,-0.019063392654061]],[[-0.019129134714603,0.06493816524744,-0.063355170190334],[0.026524988934398,0.041526593267918,0.017810944467783],[0.04228575900197,-0.0083134714514017,0.020049510523677]],[[0.0088462010025978,0.036532733589411,-0.0036401064135134],[-0.073147006332874,0.002857725135982,-0.029025675728917],[-0.015719579532743,0.028642281889915,0.006240988150239]],[[-0.043943099677563,0.037899304181337,0.036782968789339],[-0.0019698403775692,-0.01119499001652,0.031964775174856],[0.024423724040389,0.03954179957509,-0.053249578922987]],[[0.06808290630579,0.014587294310331,-0.018816808238626],[-0.04179161041975,0.095744706690311,-0.01481067109853],[-0.043216805905104,0.066189542412758,-0.0058467728085816]],[[-0.050263293087482,-0.011722200550139,0.057363148778677],[-0.0015749523881823,0.028589189052582,0.037708029150963],[0.0053979367949069,0.0088360384106636,-0.033285815268755]],[[-0.002371430164203,-0.0084550948813558,-0.070985175669193],[0.050311587750912,-0.012952611781657,-0.054459996521473],[-0.01754754036665,-0.0054239551536739,0.060677781701088]],[[0.0055177076719701,0.001149270683527,0.020029805600643],[0.0043845633044839,-0.0039906171150506,-0.021527463570237],[-0.045193333178759,-0.012840246781707,-0.048096515238285]],[[0.025092791765928,-0.04412928968668,0.02560543641448],[0.0078547028824687,0.045220471918583,-0.022555837407708],[0.0075712036341429,0.016271501779556,0.0034681919496506]],[[0.0027240673080087,0.0038505028933287,0.0040322253480554],[0.037620641291142,0.014056650921702,-0.03002942353487],[0.026612123474479,0.061958603560925,0.013389113359153]],[[-0.030429782345891,-0.024336978793144,0.020027779042721],[-0.05363954603672,-0.0061292606405914,-0.034349624067545],[0.0232362318784,-0.046514995396137,0.061387896537781]],[[0.074553243815899,0.092238828539848,-0.014799489639699],[-0.076579436659813,0.028110580518842,-0.053200531750917],[-0.011685699224472,-0.060966499149799,0.027859818190336]],[[-0.06955797970295,0.11467018723488,-0.048206117004156],[0.049067046493292,0.048039250075817,0.027256064116955],[-0.068709842860699,0.042396709322929,0.01420312654227]],[[-0.0077485111542046,-0.05245478078723,0.022948201745749],[0.025465561076999,-0.033357750624418,-0.057816233485937],[0.065105684101582,0.016240023076534,0.019239496439695]],[[0.01192884426564,-0.043507926166058,0.04584102705121],[-0.00082463549915701,0.027052221819758,0.022260807454586],[-0.033865451812744,-0.0026089989114553,0.0488455966115]],[[0.026891561225057,0.0088661415502429,0.10708899796009],[0.010793146677315,-0.053617853671312,0.041403148323298],[0.0055166049860418,-0.038215685635805,0.063332051038742]],[[0.097226209938526,0.0316909737885,-0.080748848617077],[-0.059255827218294,0.020033841952682,-0.0052160108461976],[0.0076269139535725,0.021044563502073,-0.08281385153532]],[[-0.014304520562291,-0.074317067861557,-0.0027673246804625],[0.0057345302775502,0.039180893450975,-0.043600346893072],[0.072721354663372,0.066405616700649,-0.032211910933256]],[[-0.017339911311865,-0.030259853228927,0.029410498216748],[-0.034186262637377,0.043017506599426,-0.00241828430444],[0.10488233715296,0.02025018632412,0.0066767083480954]],[[-0.015101380646229,-0.063563011586666,0.0043971408158541],[-0.029743304476142,0.032053746283054,-0.022576939314604],[0.0046945447102189,0.049351293593645,-0.046585753560066]],[[0.043148428201675,0.018180264160037,0.0053175739012659],[0.033175501972437,-0.042859401553869,-0.043780438601971],[-0.031795017421246,0.032912988215685,-0.01031354162842]],[[-0.029365999624133,0.025448711588979,-0.077467158436775],[0.048008143901825,-0.0028798878192902,-0.025416236370802],[-0.0039080204442143,0.0035429548006505,-0.0033367895521224]],[[-0.019119577482343,0.002734707435593,-0.0044678584672511],[-0.0055922199971974,0.033262580633163,-0.050133492797613],[0.016878871247172,0.025221226736903,-0.031585060060024]],[[0.044875584542751,0.0005782179068774,-0.0025052973069251],[0.033284842967987,-0.064076021313667,0.013949838466942],[0.0079513322561979,-0.0081859091296792,-0.036307711154222]],[[-0.021195521578193,-0.030999217182398,0.01463358104229],[0.030433394014835,0.028976334258914,0.013600241392851],[0.01739688962698,-0.035251598805189,-0.091401189565659]],[[0.0037951108533889,0.010407897643745,-0.0039185821078718],[0.0026880374643952,-0.02441499568522,0.033108912408352],[0.037910211831331,-0.023831767961383,-0.036374174058437]],[[-0.011527166701853,-0.034650485962629,0.025796031579375],[-0.033513832837343,0.010622984729707,0.041356850415468],[0.027432002127171,-0.039936419576406,-0.05414717271924]],[[0.071075551211834,0.028056049719453,0.010094432160258],[0.042583450675011,-0.058231499046087,0.018019987270236],[0.007132101804018,0.0065078367479146,0.0017007532296702]],[[-0.036573775112629,-0.036794494837523,-0.02661595121026],[0.063111297786236,-0.023746429011226,0.032543200999498],[0.0015970052918419,0.010276198387146,0.07915710657835]],[[-0.015282064676285,-0.024661127477884,0.0088979983702302],[-0.019791496917605,0.046698305755854,-0.023003581911325],[-0.026829171925783,-0.027304485440254,-0.035439785569906]],[[0.027367470785975,0.021208567544818,0.038518399000168],[0.0018380015389994,-0.015104761347175,0.069804541766644],[0.011202780529857,-0.0052242400124669,-0.011493388563395]],[[-0.003906917758286,0.052746836096048,-0.073630675673485],[-0.029301326721907,-0.05011411011219,0.061800684779882],[-0.036039743572474,-0.029981020838022,-0.02885395847261]],[[0.078708209097385,-0.024151621386409,0.00021218249457888],[0.0068885502405465,0.0043787509202957,-0.087216384708881],[-0.0089514954015613,-0.11374611407518,0.081416100263596]],[[-0.011511697433889,-0.0059085935354233,0.046477142721415],[-0.071615815162659,-0.058241322636604,-0.039387777447701],[0.033496294170618,-0.044369008392096,0.0033851666375995]],[[0.002078898716718,0.014046613126993,-0.0065730074420571],[0.021862229332328,-0.056106273084879,0.054955348372459],[0.035476177930832,0.022003525868058,0.0010869773104787]],[[0.033486913889647,0.0035534249618649,0.032341662794352],[-0.078393347561359,-0.022189140319824,-0.073870860040188],[0.041768293827772,0.023800373077393,0.0081444652751088]],[[0.038746703416109,-0.0029636505059898,-0.036759860813618],[0.032455272972584,0.041426334530115,-0.013232341967523],[-0.0063892183825374,0.00063517462695017,0.019996048882604]],[[0.008611798286438,-0.037753202021122,-0.0032105185091496],[0.067524887621403,0.036214996129274,0.011431084945798],[0.042628806084394,0.0235729906708,-0.00056056131143123]],[[0.043953202664852,0.011601495556533,0.05863643437624],[-0.075837694108486,-0.06117707490921,0.013077110052109],[-0.021749302744865,0.050463307648897,0.0047782533802092]],[[0.011675274930894,0.030565373599529,-0.040193144232035],[-0.0032174391672015,-0.0099391108378768,0.076918080449104],[0.050720728933811,0.020683091133833,0.014190792106092]],[[-0.0052574421279132,0.012516146525741,0.017908340319991],[0.0017435785848647,0.050682533532381,0.039769876748323],[0.038303226232529,-0.030188167467713,0.0015896173426881]],[[-0.073621973395348,0.030525267124176,0.016405722126365],[-0.021047485992312,0.04542875662446,0.037733878940344],[0.046256102621555,-0.014170641079545,0.031668577343225]],[[0.066638045012951,-0.032313369214535,0.043136984109879],[0.027263816446066,0.048138614743948,-0.035479068756104],[-0.049122478812933,-0.0076590799726546,-0.029055984690785]],[[-0.010230817832053,-0.0046034995466471,0.02868789061904],[0.0035169909242541,0.017581446096301,0.02362815104425],[0.016023673117161,-0.0082327630370855,-0.054694566875696]],[[0.12521277368069,-0.02419657446444,-0.050461001694202],[0.026911066845059,0.075575076043606,-0.042985767126083],[0.079251833260059,-0.018112050369382,-0.01065241638571]],[[-0.02202133834362,0.059041813015938,-0.0082573173567653],[-0.035421781241894,-0.044955991208553,-0.03939051181078],[-0.028642617166042,0.010257386602461,0.057793758809566]],[[0.016833296045661,0.06192410364747,0.033861815929413],[-0.037521034479141,0.0029248024802655,-0.052824925631285],[0.0048638149164617,-0.0080776968970895,0.022244581952691]],[[0.025202656164765,0.059764251112938,0.057181380689144],[0.043626070022583,0.011949342675507,-0.035959232598543],[-0.026522064581513,-0.06203930824995,0.038813006132841]],[[0.095593251287937,0.024452824145555,-0.081302672624588],[-0.012458347715437,-0.012172879651189,0.0044871373102069],[0.031304337084293,-0.038420662283897,-0.0092816986143589]],[[-0.0097549250349402,-0.032901044934988,-0.05120787024498],[-0.030853807926178,-0.001184402150102,-0.052215192466974],[-0.023464303463697,0.0082115326076746,0.093042507767677]],[[0.042797990143299,0.0094321426004171,0.0044122696854174],[-0.0051757730543613,-0.0010591528844088,0.0047634947113693],[-0.019363008439541,-0.1064278408885,0.024785308167338]],[[0.022436952218413,0.055882982909679,-0.022590696811676],[-0.094458945095539,0.03088958747685,-0.015136661008],[0.025148417800665,-0.017985431477427,0.00096546782879159]],[[0.039228335022926,0.013486008159816,0.022587385028601],[0.014981089159846,0.014346106909215,0.0080473376438022],[0.021001288667321,-0.0062855938449502,-0.010507861152291]],[[-0.10202329605818,-0.035444963723421,0.019841536879539],[0.061469282954931,0.015642510727048,-0.061584614217281],[0.040138676762581,0.0077625932171941,-0.00075761583866552]],[[-0.087312936782837,-0.056349903345108,0.057123735547066],[-0.018256397917867,0.05311243981123,0.031144179403782],[0.0092203812673688,-0.067524209618568,0.058129861950874]],[[-0.054741628468037,-0.012022401206195,0.10930635780096],[0.018346257507801,-0.0085814837366343,0.0084903929382563],[0.070800676941872,0.064246580004692,-0.0025183516554534]],[[-0.0032693627290428,-0.033395182341337,0.01827359944582],[0.0097199054434896,-0.016183659434319,-0.0062512322328985],[0.034058097749949,-0.054529841989279,0.06080774217844]],[[0.0057288226671517,0.029020866379142,-0.092707045376301],[-0.011175881139934,-0.060735505074263,-0.023342514410615],[0.041988600045443,0.027152227237821,0.0056720809079707]],[[0.025544291362166,-0.035637672990561,0.04430216550827],[0.046533729881048,0.015845600515604,-0.01120360288769],[0.010143743827939,0.034318864345551,0.062006082385778]],[[0.010370483621955,-0.037447713315487,-0.028867615386844],[-0.015733754262328,0.041492879390717,-0.10253741592169],[-0.030302418395877,-0.12620298564434,0.038314383476973]],[[0.064554035663605,-0.017534431070089,0.0042031202465296],[0.05247799679637,0.014029021374881,0.022048285230994],[-0.0064818649552763,0.085357084870338,-0.024498580023646]],[[0.0020751589909196,0.011386728845537,-0.054707437753677],[0.050612058490515,0.052536178380251,-0.084192357957363],[-0.019694281741977,0.015498643741012,0.019912831485271]],[[0.035349208861589,0.063985161483288,0.018577430397272],[-0.05351373180747,0.034040912985802,-0.047395512461662],[0.013614368624985,0.0473238453269,0.051155082881451]],[[-0.01931125856936,0.019867839291692,0.021922312676907],[-0.019950261339545,0.0063679642044008,0.0038031639996916],[0.015153218992054,0.022848812863231,-0.045798800885677]],[[0.073363088071346,-0.036866948008537,0.053927455097437],[-0.068224623799324,-0.041038691997528,0.011216031387448],[-0.016435509547591,-0.046655524522066,0.018837567418814]],[[-0.0020750334952027,0.012640761211514,-0.033198334276676],[-0.027345983311534,-0.026054985821247,-0.024612927809358],[-0.10272517800331,0.00082409934839234,-0.039765652269125]],[[-0.073082350194454,-0.018955767154694,0.007674434222281],[0.046519622206688,0.044245928525925,0.01746410690248],[0.045087844133377,-0.010263163596392,-0.0075765997171402]],[[-0.0024409187026322,-0.017687272280455,0.050658039748669],[0.017417851835489,-0.055378347635269,-0.06353971362114],[0.041671868413687,0.045556876808405,-0.028783382847905]],[[0.0633914321661,-0.013651384972036,0.036284204572439],[0.062357969582081,0.011283847503364,-0.034431092441082],[-0.0096391178667545,0.048659298568964,-0.012180835939944]],[[0.029149200767279,-0.032562002539635,0.019468696787953],[-0.0096005294471979,0.01182740740478,-0.0082266451790929],[-0.013092434033751,0.0044595380313694,-0.052395757287741]],[[-0.0071690687909722,0.037628810852766,0.038698375225067],[-0.039666950702667,-0.0095016481354833,-0.010356596671045],[0.049087788909674,-0.017846101894975,0.026907732710242]],[[0.072497241199017,0.078158766031265,0.067425422370434],[-0.0021595654543489,0.017219558358192,-0.093978717923164],[-0.014485663734376,-0.07740556448698,0.044680193066597]],[[-0.09048818051815,0.020758191123605,-0.042002089321613],[0.035022873431444,0.019590727984905,-0.051012735813856],[-0.004525737836957,0.0021022299770266,0.0087833423167467]],[[0.026386747136712,-0.0081537207588553,-0.017111547291279],[0.029596097767353,-0.020352341234684,0.013602619059384],[-0.014725822024047,0.035286545753479,-0.0016424638452008]],[[-0.061599757522345,0.0012700479710475,0.033219840377569],[0.068532451987267,-0.027817262336612,-0.063212141394615],[0.00049388513434678,0.0013655601069331,-0.028328344225883]],[[0.0055626281537116,0.0068912492133677,-0.071230500936508],[-0.053300030529499,0.056756399571896,-0.02125839330256],[0.007601173594594,0.098684690892696,-0.023904792964458]],[[-0.030640767887235,-0.017666079103947,-0.043072041124105],[-0.025675317272544,-0.07937291264534,0.036926202476025],[0.039587441831827,0.12152912467718,0.014934353530407]],[[-0.040396079421043,-0.012291983701289,0.08845179527998],[0.039470225572586,0.020685289055109,-0.067972771823406],[-0.0063027669675648,0.0062795770354569,0.0058142975904047]],[[0.024517530575395,-0.010360908694565,0.072581708431244],[-0.017544895410538,-0.035097181797028,0.0087398141622543],[-0.0040565677918494,-0.032433688640594,0.019694227725267]],[[-0.0088951960206032,-0.04445743560791,-0.023463448509574],[-0.059320762753487,-0.027430323883891,-0.0092162908986211],[0.059561356902122,0.012594028376043,-0.034907266497612]],[[-0.049709476530552,-0.0038084795232862,-0.045503087341785],[0.062488414347172,-0.023668302223086,3.2099269446917e-06],[0.024381913244724,0.017154186964035,0.027023162692785]],[[-0.021207395941019,0.041034277528524,-0.019866041839123],[0.04397502169013,-0.029153894633055,-0.055130425840616],[-0.038389340043068,-0.015095699578524,0.029507387429476]],[[-0.0067214909940958,0.017338031902909,0.0096114166080952],[0.098537191748619,-0.00012147478992119,-0.04466737434268],[0.01842886954546,-0.053966786712408,-0.015939138829708]],[[-0.026510851457715,0.0022477228194475,-0.015651861205697],[0.059525243937969,-0.014132468961179,0.018982138484716],[-0.0064132711850107,0.050116948783398,-0.074039541184902]],[[0.0068998285569251,0.031140644103289,-0.070988073945045],[-0.065246038138866,-0.013020385988057,0.036466848105192],[0.087798677384853,0.033393457531929,-0.0094328531995416]],[[-0.035410199314356,0.007576213683933,0.044651549309492],[0.021027266979218,-0.015773633494973,0.044695984572172],[-0.041869550943375,-0.036057397723198,0.022090474143624]],[[-0.04848824813962,0.034079689532518,0.015686731785536],[-0.10806655883789,-0.021914672106504,0.020510014146566],[-0.019530482590199,-0.0079954471439123,0.02899806573987]],[[0.099284216761589,0.036418125033379,-0.027751097455621],[0.02591840736568,0.037276666611433,0.035457883030176],[0.05920223519206,0.034656472504139,-0.16263008117676]],[[-0.016683358699083,-0.019716087728739,0.034930791705847],[-0.00077050272375345,-0.016669884324074,-0.030367560684681],[0.015071171335876,-0.016696125268936,-0.0080281971022487]],[[0.090438641607761,-0.034469712525606,-0.013959445059299],[0.055903125554323,0.039491217583418,-0.018283409997821],[-0.02380833402276,-0.0083106020465493,-0.050996344536543]],[[0.016233706846833,-0.081155069172382,-0.022423071786761],[0.013303001411259,-0.040653791278601,-0.012732965871692],[0.03302787989378,-0.051280427724123,-0.0052046743221581]],[[0.033494152128696,0.041783660650253,0.0050753741525114],[0.031443543732166,0.10143776983023,-0.021861907094717],[-0.014590863138437,0.012781149707735,0.0016744496533647]],[[0.026382494717836,0.035298436880112,-0.020490009337664],[0.038142565637827,-0.070207975804806,0.044160503894091],[-0.063729301095009,0.012116598896682,-0.058841783553362]],[[0.045862577855587,-0.059622388333082,-0.018168710172176],[0.043676294386387,0.00040744294528849,0.031563259661198],[0.06548035889864,-0.01938652805984,-0.05742210149765]],[[0.034904133528471,-0.038741029798985,0.060457084327936],[-0.047697186470032,-0.063849046826363,0.0097218500450253],[0.016577994450927,0.086174733936787,0.01916891336441]],[[0.014366946183145,0.0039166365750134,0.038697842508554],[0.026763336732984,-0.03093427978456,0.019541209563613],[-0.031026350334287,0.013590478338301,-0.017296539619565]],[[0.035560198128223,0.054640758782625,0.014378242194653],[0.0094452407211065,0.051478769630194,-0.035460148006678],[-0.018242690712214,0.0075091817416251,0.011581835336983]],[[-0.034588009119034,-0.00134543760214,-0.009858843870461],[0.022256381809711,-0.036317467689514,0.060605350881815],[-0.016277592629194,0.024259202182293,0.083664208650589]],[[0.037085775285959,-0.034813549369574,0.094572879374027],[-0.02117914147675,-0.02031166665256,-0.014713786542416],[-0.024832533672452,0.053694508969784,-0.036745876073837]],[[-0.12261678278446,-0.084132388234138,-0.076010659337044],[-0.07172404974699,-0.06812722235918,-0.0041990289464593],[-0.070468425750732,-0.036793179810047,-0.031027898192406]],[[0.061433427035809,0.060962747782469,0.022997969761491],[0.02044365182519,0.073860712349415,0.02880054153502],[0.032441560178995,0.0038103358820081,0.0068509210832417]],[[-0.0041792690753937,-0.061358999460936,-0.02720120921731],[-0.00030856786179356,0.0029941766988486,-0.029593439772725],[-0.009982374496758,0.0012505908962339,0.032814919948578]],[[-0.096526861190796,-0.010869150981307,0.0049245376139879],[-0.033567816019058,-0.038793228566647,-0.040149185806513],[-0.056509140878916,0.0018843669677153,0.0031616834457964]],[[-0.030343046411872,-0.081039421260357,-0.062096226960421],[0.041480675339699,-0.029129512608051,0.006053056102246],[-0.037148635834455,-0.092048063874245,-0.063854075968266]],[[0.044028040021658,-0.016218574717641,-0.018830629065633],[0.015176076442003,-0.014959515072405,0.0088044032454491],[0.067744836211205,-0.022263081744313,-0.014543426223099]],[[0.045767724514008,0.025653891265392,-0.055230252444744],[-0.042721550911665,-0.023626757785678,0.083892531692982],[0.057630818337202,0.059854838997126,0.035589218139648]],[[-0.03316842392087,-0.00097842875402421,0.028766982257366],[-0.07065499573946,0.047525178641081,-0.028882758691907],[0.0048205908387899,0.0014992710202932,-0.0087930355221033]],[[0.075476974248886,0.042976524680853,0.014745918102562],[-0.052234139293432,0.097452990710735,-0.062656849622726],[-0.048246454447508,-0.083700150251389,0.022662699222565]],[[0.0053325518965721,0.034832902252674,0.051479123532772],[-0.0078167645260692,0.047868438065052,-0.030895857140422],[-0.013298996724188,0.027262907475233,0.05328430980444]],[[-0.010964614339173,-0.056265786290169,-0.020555568858981],[0.037145979702473,-0.04665233194828,0.019397053867579],[-0.10395221412182,-0.015253256075084,0.047951757907867]],[[-0.036406397819519,-0.028345702216029,0.00030782949761488],[-0.036180749535561,-0.04358771070838,0.032270304858685],[-0.032523699104786,-0.023556970059872,0.030112778767943]],[[-0.035900369286537,0.00019176365458407,-0.051588509231806],[0.0047985319979489,-0.0097486916929483,-0.049079019576311],[0.046973001211882,0.11324198544025,-0.011201714165509]],[[0.022218249738216,-0.059860374778509,0.056963048875332],[0.017541641369462,-0.0074456972070038,-0.10926280170679],[0.052928049117327,-0.0015616660239175,0.014935125596821]],[[0.0017942627891898,0.023274771869183,0.047705810517073],[0.030960980802774,-0.031657267361879,0.012315004132688],[0.0011315209558234,0.038458693772554,0.063041903078556]],[[0.035716328769922,-0.087763167917728,0.037192039191723],[-0.042015835642815,-0.0060144728049636,-0.05309971794486],[0.044278215616941,0.09479796141386,-0.024434056133032]],[[-0.034408517181873,-0.078933238983154,-0.012882867828012],[0.031416457146406,-0.030463978648186,-0.002972963033244],[0.081640772521496,-0.0093021271750331,-0.021074594929814]],[[-0.026709586381912,0.0080822994932532,0.061714429408312],[0.0034367688931525,0.036487206816673,0.01740176230669],[-0.026306470856071,-0.0020206733606756,-0.0013965023681521]],[[-0.031207282096148,0.040567498654127,-0.012783851474524],[0.04929256811738,0.058113288134336,0.00061941624153405],[0.019059067592025,-0.020735546946526,-0.0079642534255981]]],[[[-0.053103059530258,0.048953451216221,0.033803276717663],[-0.053701415657997,0.038071688264608,0.022431595250964],[0.033093813806772,-0.0029609394259751,-0.0026404818054289]],[[-0.07932985574007,0.030833149328828,0.0046344306319952],[-0.048658777028322,-0.028958650305867,0.041754543781281],[-0.0096868500113487,-0.075985491275787,-0.05286118388176]],[[0.012941380962729,-0.027951350435615,0.0029557489324361],[-0.032784897834063,-0.019331343472004,0.043158479034901],[0.054700825363398,0.0036544096656144,-0.011221922934055]],[[0.0070952866226435,-0.096749603748322,0.030821500346065],[-0.026046615093946,0.024892885237932,-0.035300925374031],[-0.021290203556418,-0.03581640124321,0.039020899683237]],[[-0.0023894722107798,-0.063047498464584,0.0053023062646389],[0.056785851716995,0.020530367270112,0.085938066244125],[-0.00064089684747159,0.001457306323573,0.07061292976141]],[[0.016613936051726,0.0080206068232656,0.0034123233053833],[0.087643653154373,0.019357921555638,-0.0078120795078576],[-0.018546437844634,-0.013972793705761,0.0032482696697116]],[[0.035328805446625,-0.026038408279419,-0.053012251853943],[-0.04169549420476,-0.044724997133017,-0.058281231671572],[-0.01111757196486,-0.018854111433029,0.036007534712553]],[[0.063400082290173,-0.060931246727705,0.045755036175251],[0.040737170726061,-0.066112920641899,0.046426266431808],[0.015775172039866,-0.026952872052789,-0.07705444842577]],[[-0.022117335349321,-0.058502554893494,-0.082372188568115],[0.10039493441582,0.060801673680544,0.071409687399864],[0.083252809941769,0.058021180331707,0.043324779719114]],[[0.063267260789871,0.056180998682976,-0.02264072932303],[-0.055053073912859,-0.00041837000753731,0.030594551935792],[0.037556115537882,0.14606690406799,0.017352549359202]],[[0.0046408348716795,-0.05223997309804,-0.0066094947978854],[-0.047283068299294,-0.072453886270523,-0.084534287452698],[-0.069591380655766,-0.021169804036617,0.063951440155506]],[[0.078644186258316,-0.049054924398661,0.015664529055357],[-0.041233398020267,-0.023859094828367,-0.061256516724825],[0.00088288536062464,-0.015371843241155,0.061819650232792]],[[0.073092930018902,-0.064888067543507,0.038856830447912],[0.012445048429072,-0.020988650619984,0.024930857121944],[-0.037897277623415,-0.014991221949458,0.068545326590538]],[[0.025734988972545,0.02021773532033,0.049545187503099],[0.010666820220649,-0.0012269644066691,-0.020601630210876],[-0.031199580058455,0.081056699156761,-0.027933157980442]],[[0.2060893625021,-0.014402194879949,-0.012783917598426],[0.14396159350872,0.080034181475639,0.053708847612143],[0.19681191444397,0.18378041684628,-0.069026827812195]],[[0.0038130395114422,-0.057983431965113,-0.009958409704268],[-0.03093227930367,-0.01976471953094,-0.03975846990943],[-0.05857202783227,0.012282574549317,-0.056565511971712]],[[-0.0012842897558585,-0.051115747541189,0.099315941333771],[0.0056944964453578,0.041956473141909,-0.087161511182785],[-0.036991599947214,-0.021060636267066,0.039808299392462]],[[0.079366274178028,-0.028830286115408,0.019775342196226],[-0.042935851961374,-0.035482868552208,0.011807599104941],[0.050654664635658,0.0094078695401549,-0.02199624478817]],[[-0.020373625680804,-0.042318992316723,-0.045138020068407],[0.015639510005713,-0.096873827278614,0.1413514316082],[-0.02483862452209,-0.036921963095665,0.0023734651040286]],[[-0.016595017164946,0.012603240087628,-0.10759401321411],[0.080715261399746,0.037129856646061,0.012503404170275],[0.028691943734884,0.067642576992512,-0.038856390863657]],[[-0.015608312562108,-0.031235290691257,0.053605653345585],[0.017938312143087,-0.11416254192591,0.093326523900032],[0.032717984169722,-0.015156535431743,-0.018433934077621]],[[0.042232312262058,0.035149436444044,0.047091100364923],[0.0068118958733976,0.11165929585695,0.074178382754326],[0.044021841138601,0.10017520934343,0.026641013100743]],[[-0.021210934966803,-0.031587813049555,-0.01935519091785],[0.0024538540747017,0.037779543548822,0.031888365745544],[-0.073373273015022,0.00033826063736342,0.020653871819377]],[[-0.082950845360756,0.004270413890481,-0.028587747365236],[-0.024705180898309,-0.033213660120964,0.064638569951057],[-0.038927230983973,-0.0064657689072192,0.0024507204070687]],[[0.12760998308659,-0.015929879620671,-0.021354949101806],[0.071701727807522,0.019584750756621,0.0096429092809558],[0.00048843305557966,0.036062005907297,0.034041754901409]],[[-0.042533107101917,0.0090434700250626,-0.011808815412223],[0.01346489880234,-0.038501001894474,0.0049553038552403],[0.038392536342144,-0.074461348354816,-0.021327709779143]],[[-0.078612513840199,0.005906832870096,-0.022420313209295],[0.042483400553465,0.0013647936284542,0.049334425479174],[0.0081284651532769,-0.027331832796335,0.08403117954731]],[[-0.016935450956225,0.062098067253828,-0.015261380933225],[-0.099548690021038,0.056606207042933,0.0435930788517],[0.043931465595961,-0.0079095037654042,0.021566113457084]],[[-0.016625683754683,0.0047543789260089,-0.017111517488956],[0.017341224476695,-0.071513578295708,0.050017237663269],[0.011386686004698,0.1461575627327,0.01579743809998]],[[-0.017282899469137,-0.0038593681529164,0.02168776281178],[-0.050228223204613,0.006951701361686,0.036461513489485],[-0.0055411998182535,-0.10482208430767,0.0028440130408853]],[[0.022911828011274,0.043450508266687,-0.049587104469538],[-0.070217870175838,0.031421709805727,-0.010502456687391],[0.070356085896492,0.010890107601881,0.0040105152875185]],[[-0.0011167500633746,-0.11063215136528,-0.0065652173943818],[0.03598690032959,0.032101988792419,-0.039737176150084],[-0.047138176858425,-0.017184233292937,-0.034817174077034]],[[-0.013585150241852,-0.042982809245586,0.049380030483007],[-0.013814486563206,0.039269708096981,0.015014114789665],[0.018149003386497,0.10201425105333,0.062226675450802]],[[-0.090939223766327,0.035583805292845,-0.011440013535321],[-0.0059717986732721,0.01443668268621,0.051964525133371],[0.034108802676201,0.034386537969112,-0.052431251853704]],[[0.0072845532558858,-0.038800995796919,0.0056091989390552],[0.0067896596156061,0.048399981111288,0.032259151339531],[-0.0013037702301517,-0.021210240200162,0.061359621584415]],[[-0.047138959169388,0.010048786178231,-0.025706427171826],[0.0021400640252978,0.020199198275805,-0.0045837629586458],[-0.042970441281796,0.068937160074711,0.0039019850082695]],[[-0.0067085698246956,0.0077331438660622,0.033843651413918],[-0.06064298003912,0.061440695077181,-0.02682245709002],[-0.04688972234726,-0.019134715199471,-0.044484347105026]],[[-0.011392222717404,-0.066130138933659,0.03961480781436],[0.086168192327023,0.0026886910200119,-0.039802007377148],[0.061709515750408,-0.016762970015407,-0.0057886340655386]],[[0.017378877848387,0.063471861183643,-0.035122465342283],[0.035741917788982,-0.075739860534668,-0.016720183193684],[-0.012212188914418,0.085753656923771,0.056873295456171]],[[-0.037272535264492,0.0037685609422624,0.076298631727695],[0.028876708820462,0.0002334671880817,-0.059123259037733],[0.031336329877377,0.00059767760103568,0.073389463126659]],[[0.037176053971052,-0.025161100551486,0.047428097575903],[0.041761662811041,0.029035694897175,-0.041286319494247],[-0.016832744702697,-0.048279721289873,0.039509557187557]],[[-0.016971668228507,0.029106896370649,0.043281484395266],[-0.021994108334184,0.00182507163845,-0.0071395062841475],[-0.11639044433832,0.039624180644751,0.083979740738869]],[[-0.02531861141324,0.14055663347244,0.0083432914689183],[0.078496605157852,-0.012817978858948,-0.066425673663616],[0.024529650807381,-0.047540511935949,0.025667380541563]],[[0.014088153839111,0.042310159653425,0.073529146611691],[-0.017416877672076,-0.020260421559215,-0.016044847667217],[-0.0634406208992,0.10089913010597,-0.0077025210484862]],[[-0.046997040510178,-0.073089525103569,0.071677133440971],[0.0031322620343417,0.07245222479105,-0.038597706705332],[-0.064818255603313,0.032013524323702,-0.015364371240139]],[[0.031139373779297,-0.022650985047221,-0.0072993906214833],[-0.017116596922278,-0.014925230294466,0.010184140875936],[0.10752283781767,0.097160249948502,0.041763044893742]],[[0.008753465488553,0.053308840841055,0.018256828188896],[0.045901782810688,0.041848313063383,0.035921137779951],[0.0023867376148701,0.025731885805726,0.024544714018703]],[[0.041491404175758,0.022980432957411,-0.043166037648916],[0.012835555709898,-0.02833803743124,0.021084874868393],[0.018415872007608,0.093939088284969,-0.079381331801414]],[[-9.8049837106373e-05,-0.0232870914042,0.081444643437862],[0.0089871156960726,0.042003840208054,-0.0043901489116251],[-0.089341826736927,0.10524615645409,-0.070231564342976]],[[-0.028096040710807,-0.02933207526803,0.0046718292869627],[-0.013313698582351,-0.0845827460289,-0.038935888558626],[-0.049478098750114,-0.10149672627449,-0.066362418234348]],[[0.024093249812722,0.047456450760365,0.036378726363182],[-0.069568023085594,-0.050144337117672,0.097483299672604],[0.012771287932992,-0.028617171570659,0.04987658187747]],[[-0.036282874643803,-0.056361600756645,0.057684227824211],[-0.053332332521677,-0.00089451362146065,-0.048087388277054],[0.0036615517456084,0.1139328405261,0.019581960514188]],[[0.053109880536795,0.07134210318327,-0.059889063239098],[-0.0098810661584139,0.055591870099306,0.099707379937172],[0.0066438922658563,-0.018497224897146,-0.061238322407007]],[[-0.0031451247632504,0.036066196858883,-0.097179114818573],[-0.019463863223791,-0.0012341486290097,0.037537045776844],[0.044445056468248,0.026692716404796,0.056480541825294]],[[0.0085896477103233,-0.0020391677971929,0.031285151839256],[0.039351787418127,-0.058212276548147,0.013236735016108],[0.026102105155587,0.0053428988903761,0.035632479935884]],[[-0.036186017096043,0.023175410926342,-0.031357668340206],[0.083679474890232,0.016605950891972,0.011825179681182],[0.020010732114315,-0.044415194541216,0.02750008739531]],[[0.048744916915894,0.016715539619327,-0.015468768775463],[-0.051718428730965,-0.031595949083567,-0.046515706926584],[-0.032961409538984,0.030365919694304,0.084692537784576]],[[0.039596006274223,0.0050999140366912,0.055033147335052],[0.026532987132668,0.013374249450862,0.016586277633905],[0.033176809549332,0.016262322664261,0.012833294458687]],[[0.033801313489676,-0.08917772769928,0.038283292204142],[-0.0063837175257504,-0.043537341058254,0.088248461484909],[0.1179598197341,0.03564714640379,-0.024592923000455]],[[0.011636726558208,0.076971545815468,-0.15060722827911],[0.052267476916313,-0.094907820224762,0.061293922364712],[-0.050197288393974,0.068265818059444,0.048208262771368]],[[0.092951156198978,-0.068436495959759,0.0065566902048886],[0.056588038802147,0.045900501310825,0.050892844796181],[-0.073463551700115,0.054135847836733,0.029327338561416]],[[0.025431349873543,0.010215847752988,0.046933941543102],[-0.01136767026037,0.04124116897583,0.050648085772991],[0.007652014028281,0.014213795773685,-0.027230365201831]],[[0.0027817499358207,0.018517106771469,0.0037403602618724],[-0.015705890953541,-0.010719077661633,0.023675763979554],[0.050402458757162,-0.025056170299649,0.035817448049784]],[[0.035777386277914,-0.0096126021817327,-0.049425255507231],[0.08780325204134,-0.044133972376585,-0.028973797336221],[0.053048558533192,-0.035578042268753,0.053324267268181]],[[0.032403439283371,0.041338451206684,-0.026003519073129],[0.013453954830766,0.023284351453185,-0.0080645177513361],[0.022596351802349,-0.047636371105909,-0.095701962709427]],[[-0.031085718423128,-0.013023898005486,-0.027623824775219],[0.017970995977521,-0.015640418976545,-0.048055894672871],[0.0038731684908271,0.053944248706102,-0.02497486770153]],[[0.019436832517385,0.038187172263861,0.044395189732313],[0.03366107493639,0.039034694433212,-0.0615518912673],[0.10126408189535,0.03885018453002,0.04641030356288]],[[0.046875894069672,-0.017201786860824,-0.020487267524004],[0.060841802507639,0.062942206859589,-0.040961015969515],[-0.01582907140255,0.058146372437477,0.0059728384949267]],[[-0.023218227550387,0.06715402007103,0.021606612950563],[-0.024660494178534,-0.014812025241554,-0.0097900843247771],[-0.06016343459487,-0.019031452015042,-0.017356099560857]],[[0.024160970002413,0.00092805037274957,0.013556307181716],[0.027028309181333,0.052357736974955,0.042028333991766],[-0.035701412707567,0.018583260476589,0.029860923066735]],[[-0.035186126828194,0.039600934833288,-0.058682270348072],[0.028010562062263,-0.0019979840144515,0.056279644370079],[-0.029734712094069,-0.029330778867006,0.030389338731766]],[[-0.0015733948675916,-0.033063013106585,-0.038938380777836],[-0.019213870167732,-0.08445118367672,0.032021671533585],[0.023206643760204,0.091503150761127,0.012221002019942]],[[0.018607195466757,-0.052353914827108,0.068361610174179],[0.014469106681645,0.043251235038042,-0.031269188970327],[-0.075410708785057,-0.025986883789301,0.11988085508347]],[[0.064562648534775,0.037213742733002,0.0066441111266613],[-0.019818190485239,-0.032745935022831,-0.0816500633955],[0.045417368412018,0.020554594695568,-0.028227487578988]],[[0.023795777931809,-0.076646767556667,0.027340237051249],[0.052131205797195,-0.045605786144733,0.036714423447847],[-0.026658521965146,0.052469067275524,0.024487351998687]],[[-0.049396757036448,0.001434798585251,0.018748603761196],[0.059883341193199,-0.04522367566824,0.067693926393986],[0.030061222612858,-0.071675084531307,-0.010462760925293]],[[-0.00043484717025422,0.082137987017632,0.01934920810163],[0.0090037118643522,0.046778056770563,-0.038720097392797],[-0.028638487681746,0.024068484082818,0.026791268959641]],[[0.12308728694916,-0.0069416291080415,0.063337124884129],[-0.012434284202754,-0.023166278377175,0.018725259229541],[0.0065223467536271,-0.059869691729546,0.012169335968792]],[[0.0093081574887037,-0.018567431718111,-0.069063887000084],[-0.0031297549139708,0.051477324217558,-0.0017574278172106],[0.07429575920105,-0.019015258178115,0.022830659523606]],[[-0.013231705874205,-0.042293161153793,0.016494134441018],[0.077662117779255,-0.032210823148489,0.046080429106951],[-0.0094303907826543,-0.048432372510433,0.014313187450171]],[[0.051078036427498,0.02704450674355,0.00072464445838705],[0.0054188277572393,0.039441529661417,-0.016028348356485],[-0.08000922203064,0.0086152367293835,-0.0053105046972632]],[[-0.027648204937577,-0.013996778987348,0.030243938788772],[0.0089465659111738,-0.078521020710468,-0.02379185706377],[-0.0049834195524454,0.010638338513672,0.032671753317118]],[[0.02943748421967,-0.025418423116207,-0.014771445654333],[0.024804007261992,-0.076428614556789,0.020194882526994],[0.013003513216972,-0.12031662464142,-0.015853721648455]],[[-0.030056687071919,-0.079140685498714,-0.04465851187706],[0.040863536298275,0.030353846028447,0.03418916836381],[0.065076269209385,-0.0022727285977453,-0.033901534974575]],[[-0.045355930924416,0.033908266574144,0.024572605267167],[-0.031888585537672,0.0027909767813981,0.015830898657441],[-0.047115135937929,-0.027581039816141,-0.037569984793663]],[[0.030328268185258,0.089021146297455,0.083887852728367],[-0.09019223600626,-0.082442231476307,-0.046651072800159],[0.031838670372963,-0.010829242877662,-0.012083154171705]],[[-0.061798062175512,0.042720187455416,-0.034152332693338],[-0.092332176864147,-0.0083409184589982,0.012392053380609],[-0.027026653289795,9.3534239567816e-05,0.042262203991413]],[[0.0097421258687973,-0.033637300133705,0.037819091230631],[0.00037894549313933,-0.032840747386217,0.07324592769146],[0.11277753859758,0.05075366422534,0.020982563495636]],[[0.031919404864311,0.0040008719079196,0.00027145340573043],[0.0062152305617929,0.054952304810286,0.067522898316383],[0.062954887747765,0.078303687274456,0.059302732348442]],[[0.027927462011576,0.055820751935244,-0.045370798557997],[0.044264070689678,0.0012313598999754,0.10875670611858],[-0.10685868561268,0.036312077194452,0.033920306712389]],[[-0.044303860515356,0.059514295309782,0.017438629642129],[-0.0060022114776075,-0.020074998959899,0.029065325856209],[0.046232845634222,0.061092376708984,0.09999630600214]],[[0.0096646649762988,0.1076539978385,0.059837207198143],[-0.02989523857832,0.066956378519535,0.025943836197257],[-0.021228486672044,-0.0062720659188926,-0.016702860593796]],[[-0.0087558440864086,-0.060530561953783,0.014061030000448],[-0.0088906874880195,0.10767647624016,-0.0017666830681264],[-0.034755747765303,0.030330713838339,0.040545884519815]],[[-0.01462727971375,-0.041132099926472,0.058180842548609],[0.014451205730438,0.006993165705353,0.021039709448814],[0.038742821663618,0.010251796804368,0.02583903260529]],[[-0.025319522246718,0.033701416105032,0.017177993431687],[0.0056113484315574,0.076127856969833,0.046674188226461],[-0.049407418817282,0.062374532222748,-0.03084502927959]],[[0.033014737069607,0.060881108045578,-0.060535795986652],[-0.040121421217918,0.00076202611671761,0.029456958174706],[-0.030911315232515,-0.019029865041375,-0.060906130820513]],[[-0.015569609589875,0.026592597365379,0.066687315702438],[0.023831808939576,0.040882218629122,-0.0085722915828228],[-0.032844617962837,0.10983108729124,0.091691836714745]],[[0.00056887982646003,-0.045673087239265,0.029688913375139],[0.048218749463558,0.041745070368052,0.0052102054469287],[0.061838455498219,-0.020167769864202,-0.026845913380384]],[[-0.080228090286255,0.0014805842656642,0.0063822120428085],[-0.10321328043938,-0.080135099589825,-0.00037418183637783],[0.0054252268746495,0.062468733638525,0.091288991272449]],[[-0.00079660135088488,0.020645083859563,0.00093396275769919],[0.0033892898354679,-0.046438686549664,0.02223895303905],[0.01036131568253,-0.042082902044058,-0.021051647141576]],[[-0.01572641916573,0.048056446015835,-0.067025072872639],[0.061091970652342,-0.058713011443615,-0.0079752532765269],[0.028737101703882,-0.063490800559521,0.02003207243979]],[[0.0057285716757178,0.016304682940245,-0.017151491716504],[0.04658279940486,0.030509863048792,-0.011582594364882],[0.074998185038567,0.062546730041504,-0.069936946034431]],[[-0.033516656607389,-0.069389931857586,0.0078577511012554],[0.023818103596568,0.0028237695805728,0.048950303345919],[0.015471654012799,0.036386389285326,-0.009423041716218]],[[0.024382973089814,-0.049813196063042,0.03741542622447],[-0.0094831231981516,-0.00020627689082175,0.030668282881379],[-0.011470981873572,-0.0035242757294327,-0.039549667388201]],[[-0.020803036168218,0.0061508626677096,-0.038953874260187],[-0.0058471146039665,0.010732864029706,0.013916971161962],[0.036767303943634,0.065534122288227,-0.037774112075567]],[[-0.033075526356697,0.018031820654869,-0.017565047368407],[-0.0028744149021804,0.037997782230377,-0.028370421379805],[-0.013433234766126,0.052464377135038,0.033017434179783]],[[0.018801990896463,0.050344735383987,-0.021458951756358],[0.010191737674177,-0.0419055595994,0.00055436353432015],[0.027651991695166,-0.031503025442362,-0.048623219132423]],[[-0.076255209743977,-0.031434886157513,0.009846462868154],[0.065599642693996,-0.0089893788099289,-0.048129316419363],[0.028853816911578,-0.043558053672314,0.042659357190132]],[[0.035777635872364,-0.01423210836947,0.014013504609466],[0.073408730328083,-0.10776236653328,-0.071110814809799],[-0.031012758612633,0.049896325916052,0.062644377350807]],[[-0.063399285078049,-0.012688809074461,0.043086960911751],[0.1002140045166,-0.047048315405846,0.062320057302713],[-0.009529541246593,-0.052539151161909,-0.01842524856329]],[[0.10320469737053,-0.0063949874602258,-0.057709418237209],[-0.025916982442141,-0.016070820391178,0.018973551690578],[-0.057600192725658,0.032208550721407,0.018580766394734]],[[-0.0082019818946719,-0.058577433228493,-0.072307229042053],[0.0058279018849134,0.026548681780696,-0.078163601458073],[-0.087553411722183,-0.020442578941584,0.062849491834641]],[[-0.029531840234995,-0.010694836266339,-0.026165399700403],[-0.061340872198343,-0.032171495258808,-0.033792227506638],[0.060065697878599,-0.018330642953515,0.0081842066720128]],[[-0.0144810853526,-0.0030723107047379,0.052021604031324],[-0.032685145735741,-0.0094446130096912,0.0057222447358072],[0.10245973616838,-0.066054910421371,-0.042745020240545]],[[0.047942157834768,-0.0046672448515892,0.015439701266587],[0.0040210243314505,0.0049058850854635,0.085474461317062],[0.058914139866829,-0.048484601080418,0.015780489891768]],[[-0.04934423789382,0.016753783449531,0.075562261044979],[0.0044119479134679,-0.026120042428374,0.012869388796389],[-0.017630077898502,0.033662360161543,-0.018353939056396]],[[0.045567654073238,-0.0052169440314174,0.082348838448524],[-0.057182975113392,0.041323740035295,0.055454719811678],[0.077765479683876,-0.0066608120687306,0.056047853082418]],[[0.088865108788013,-0.063619740307331,0.054368119686842],[0.048103775829077,0.007925177924335,-0.0281987413764],[0.019346598535776,0.06313269585371,-0.011101606301963]],[[-0.025395521894097,-0.021984046325088,0.040248949080706],[0.006691203918308,-0.037199068814516,0.00026020564837381],[-0.076219901442528,-0.011568878777325,0.025221027433872]],[[-0.022861439734697,-0.042754985392094,-0.08310628682375],[-0.019584883004427,-0.0023131917696446,-0.071076549589634],[0.035241987556219,-0.064557358622551,-0.077425189316273]],[[-0.030424071475863,0.069378152489662,-0.044171430170536],[0.024370472878218,-0.041710939258337,0.021170757710934],[0.031475320458412,0.0045691821724176,-0.027220509946346]],[[0.0087170787155628,0.0031090588308871,0.0015887048793957],[0.016324061900377,-0.015778155997396,0.0026062368415296],[0.046067103743553,0.059670515358448,0.029029479250312]],[[-0.089347399771214,-0.025984467938542,-0.030604712665081],[-0.058240547776222,-0.027141626924276,0.011990977451205],[0.030878569930792,-0.047489747405052,0.023337867110968]],[[0.05400001630187,0.072801485657692,-0.011803789995611],[0.0671606361866,-0.055287875235081,-0.049219720065594],[-0.0083600962534547,-0.038483951240778,-0.047002747654915]],[[-0.076451063156128,0.024354074150324,0.045575693249702],[0.04302679374814,-0.0084479143843055,-0.012240375392139],[-0.030047351494431,0.076748870313168,-0.0027514200191945]],[[0.023448320105672,0.076590478420258,0.039335619658232],[-0.022098269313574,-0.032136492431164,0.030427983030677],[0.14007724821568,0.021597081795335,-0.047273065894842]],[[0.04085236042738,0.059662904590368,0.025782180950046],[-0.046628132462502,0.012898619286716,0.070159219205379],[0.048376586288214,0.091731227934361,-0.024527419358492]],[[-0.028058158233762,-0.01300906483084,0.010261441580951],[0.024200089275837,-0.056018151342869,-0.026703648269176],[-0.034903828054667,0.047373805195093,0.040600184351206]]],[[[-0.037626851350069,0.017017226666212,-0.040434967726469],[0.03244524076581,-0.053626038134098,0.03023068420589],[0.013135516084731,0.0083479229360819,0.077827744185925]],[[-0.092514261603355,0.066424697637558,-0.026225419715047],[-0.024245845153928,-0.029914986342192,0.0037480092141777],[-0.0341911688447,-0.024688262492418,0.03636697307229]],[[0.024100180715322,-0.003277818672359,-0.024223210290074],[-0.053348280489445,-0.0056404541246593,0.004307609051466],[-0.031450163573027,-0.027370693162084,-0.030979914590716]],[[-0.016830515116453,-0.013307150453329,0.018713101744652],[-0.037243243306875,-0.027666395530105,-0.0065417420119047],[-0.012266621924937,-0.023074757307768,0.017941758036613]],[[0.031091766431928,-0.015027009882033,-0.019308369606733],[0.036981746554375,-0.031246760860085,-0.033527739346027],[-0.021187582984567,0.024286461994052,-0.038537472486496]],[[-0.03710800036788,0.0072649950161576,-0.08024226129055],[-0.00096593127818778,-0.043558474630117,-0.035187743604183],[-0.031812842935324,-0.077524371445179,0.0094605814665556]],[[0.0066734571009874,0.013745717704296,0.054039523005486],[0.062292132526636,0.0021809062454849,-0.0039099608547986],[-0.051238693296909,0.067268647253513,0.015648629516363]],[[0.0087322453036904,-0.026697164401412,-0.0031972622964531],[-0.039125997573137,-0.0095919268205762,-0.031096974387765],[-0.01673242636025,0.014505415223539,-0.041097771376371]],[[-0.059871412813663,-0.036098722368479,-0.029783060774207],[0.047001179307699,0.026588754728436,-0.063726492226124],[-0.10537005960941,-0.035934533923864,0.0539955124259]],[[0.019160965457559,-0.026196215301752,0.036359343677759],[-0.053316719830036,-0.078740142285824,0.025713434442878],[-0.027937574312091,-0.059794515371323,-0.057926125824451]],[[-0.10112205147743,-0.019358115270734,0.0097100781276822],[-0.011207043193281,-0.018793471157551,0.0077162692323327],[0.0021244050003588,0.071070685982704,-0.016690138727427]],[[0.041040387004614,-0.011392000131309,0.016209289431572],[0.016166161745787,-0.018880983814597,0.018643779680133],[0.033688977360725,0.041952330619097,0.022376891225576]],[[-0.0031912610866129,0.096147462725639,0.0057877418585122],[0.013247952796519,-0.012439675629139,-0.012728744186461],[0.039622269570827,-0.035502009093761,-0.013209524564445]],[[0.030573660507798,-0.078004144132137,-0.023639671504498],[-0.01103681512177,-0.010027414187789,-0.0581577681005],[-0.013035787269473,-0.0057873926125467,-0.042049132287502]],[[0.064390167593956,-0.011940628290176,0.023279985412955],[0.085538774728775,-0.038201618939638,0.051032077521086],[0.037879299372435,0.058821532875299,0.019634431228042]],[[-0.032853174954653,0.055891297757626,0.053561124950647],[0.041510857641697,0.084856688976288,-0.018840126693249],[0.015768386423588,0.042789995670319,0.02630696259439]],[[0.10445113480091,-0.0044195931404829,-0.0093208150938153],[-0.036385338753462,-0.0062874937430024,-0.037744726985693],[0.082260869443417,-0.014443447813392,-0.020222507417202]],[[-0.06096163764596,0.018385166302323,0.05393099412322],[0.020311122760177,0.0016048868419603,-0.028002804145217],[-0.057093963027,-0.014852438122034,0.091350808739662]],[[-0.0086801573634148,-0.016622949391603,-0.04257446154952],[-0.014333908446133,-0.030796661973,0.065242059528828],[0.010783503763378,-0.032891154289246,0.0093647390604019]],[[0.019362764433026,-0.018733544275165,-0.026678666472435],[-0.087010718882084,-0.046539258211851,0.0058937021531165],[0.0016794403782114,-0.0063382587395608,-0.01302395388484]],[[0.027440525591373,-0.03597467020154,-0.017812831327319],[-0.01048200391233,-0.010524176992476,-0.0079310238361359],[0.024522490799427,0.015409158542752,-0.020352279767394]],[[0.067471645772457,0.016173247247934,0.026495369151235],[0.019682455807924,0.0046252100728452,-0.068377621471882],[0.020562417805195,0.05325248464942,0.0037029921077192]],[[0.046022608876228,-0.11207177489996,0.01973288692534],[-0.044377628713846,-0.078135684132576,-0.01787431538105],[0.011866419576108,0.017283705994487,0.041235871613026]],[[-0.039564281702042,0.011405633762479,0.032591357827187],[-0.014533766545355,-0.018310496583581,0.07169634103775],[0.02049226872623,0.021998647600412,-0.0095082493498921]],[[-0.027175046503544,-0.010924283415079,0.026828782632947],[0.047059308737516,-0.011456762440503,0.055202834308147],[-0.027031792327762,0.032662287354469,-0.01040555536747]],[[0.057307746261358,-0.025527020916343,0.045471340417862],[-0.014498917385936,0.0030243813525885,-0.025020260363817],[-0.033807497471571,-0.06525219976902,0.0088702216744423]],[[0.0068448875099421,0.076350927352905,-0.021334970369935],[0.034930624067783,-0.017628943547606,0.022918561473489],[0.0012114770943299,0.034933231770992,-0.063884735107422]],[[-0.038979351520538,-0.076913431286812,-0.025456264615059],[-0.031440444290638,-0.037864208221436,0.0092577897012234],[-0.10551285743713,-0.06409964710474,0.024420358240604]],[[0.0059201181866229,-0.10695722699165,-0.064097091555595],[-0.0010053170844913,0.034651271998882,-0.027206873521209],[-0.013306520879269,0.0094205737113953,0.062611311674118]],[[-0.11611984670162,-0.04266470298171,0.026029840111732],[-0.072833932936192,-0.0017844657413661,0.018126232549548],[0.033083993941545,-0.066491708159447,-0.00249472563155]],[[-0.056579396128654,0.025701040402055,-0.026512676849961],[0.059066604822874,0.041102271527052,0.031426645815372],[-0.015854045748711,-0.0054712472483516,-0.02838165871799]],[[0.010767537169158,-0.0026994878426194,-0.0033033906947821],[0.012635961174965,0.012067123316228,0.032309200614691],[0.0027122828178108,0.0096950121223927,-0.090819329023361]],[[0.10885988920927,0.032001826912165,0.0086995027959347],[-0.026687910780311,-0.01125149987638,0.053372200578451],[0.0043582799844444,-0.022743267938495,-0.042446654289961]],[[0.035628657788038,0.023550787940621,-0.036024414002895],[0.0022389367222786,0.020789822563529,-0.023009475320578],[-0.0011687765363604,0.030496582388878,-0.049273863434792]],[[-0.023038886487484,0.019457263872027,0.00095712044276297],[0.089834228157997,-0.05293994769454,-0.0233553647995],[-0.030179541558027,0.0050224787555635,-0.025335749611259]],[[-0.057219672948122,-0.019698414951563,-0.0084383217617869],[-0.053524155169725,0.007642472628504,-0.0025993003509939],[0.043453015387058,-0.034361504018307,0.049846589565277]],[[0.0045248605310917,0.0088658165186644,0.090911485254765],[-0.039782483130693,-0.010677292943001,0.028602296486497],[-0.0055536977015436,-0.1196913048625,0.0013004050124437]],[[-0.0059759644791484,0.047402914613485,-0.0082590160891414],[-0.026347775012255,0.03288472443819,-0.063298411667347],[0.062289703637362,-0.041720069944859,0.040002420544624]],[[-0.02050293982029,0.0040051136165857,0.035854898393154],[0.029738057404757,0.014221452176571,-0.066129319369793],[0.091506861150265,-0.08216417580843,0.02472660318017]],[[-0.1118229329586,-0.014118946157396,0.030323112383485],[-0.046544600278139,0.0012328382581472,0.0032619063276798],[-0.019946211948991,0.06071862578392,-0.0056469487026334]],[[-0.066626906394958,0.081414364278316,-0.022051239386201],[0.021625965833664,0.058644380420446,-0.016094628721476],[-0.052954994142056,0.028733221814036,-0.034937083721161]],[[0.042477376759052,-0.081716299057007,-0.044736947864294],[0.040374338626862,0.0063406648114324,-0.014052994549274],[-0.051360059529543,-0.080834172666073,0.015105913393199]],[[-0.0055729267187417,0.023083062842488,-0.031693533062935],[-0.040209777653217,0.039935790002346,0.07264406979084],[0.059872094541788,-0.042070984840393,0.049609158188105]],[[-0.049179907888174,-0.018571671098471,0.024520771577954],[0.022856073454022,0.019113883376122,0.023966347798705],[0.012745236977935,-0.0050224843434989,-0.036245930939913]],[[0.055738173425198,0.0034878749866039,-0.036012589931488],[-0.016213607043028,0.036641873419285,-0.01605923101306],[-0.04368232190609,0.003837660420686,-0.056013308465481]],[[-0.055364452302456,0.020881524309516,-0.037714134901762],[-0.036740109324455,0.0013383846962824,0.051419112831354],[0.018254943192005,-0.0207573864609,0.034547902643681]],[[0.067153841257095,-0.025343801826239,-0.041263606399298],[0.050723895430565,0.019264727830887,-0.028439741581678],[-0.015457884408534,0.033876307308674,-0.020815316587687]],[[0.032742585986853,-0.067111782729626,0.021547621116042],[-0.014196667820215,-0.024921391159296,-0.036490920931101],[-0.0048493281938136,-0.0097205815836787,-0.062119718641043]],[[0.055175479501486,0.05726333707571,0.011350059881806],[-0.023291647434235,-0.027167525142431,-0.047759339213371],[0.011191874742508,-0.0053570396266878,-0.0038008478004485]],[[0.010139595717192,0.013418613933027,-0.012191453948617],[-0.02424662001431,0.03141338378191,-0.06542082130909],[-0.019309591501951,-0.014714800752699,-0.078176200389862]],[[-0.028049459680915,0.022297678515315,-0.059931918978691],[0.01619135029614,-0.047644779086113,-0.034375954419374],[-0.021232778206468,-0.0073278797790408,0.032315794378519]],[[-0.029722191393375,0.0040431781671941,-0.03064956702292],[-0.058801356703043,-0.017934402450919,-0.045211866497993],[0.063629239797592,-0.0017365217208862,0.05702331289649]],[[-0.012539490126073,-0.055246610194445,0.028038147836924],[-0.024505810812116,-0.001673084218055,-0.02191411703825],[-0.041235342621803,-7.5970237958245e-06,-0.016989890486002]],[[0.020312059670687,0.023075399920344,-0.039639130234718],[0.0076704253442585,0.018395703285933,-0.026094926521182],[-0.02707520313561,0.043828550726175,0.036284618079662]],[[0.031292729079723,-0.00014011908206157,-0.0036482196301222],[-0.03680595010519,0.012597467750311,0.042902681976557],[-0.087369225919247,0.034675307571888,-0.052729345858097]],[[0.010401987470686,0.054658625274897,0.011291351169348],[0.039494011551142,-0.024987144395709,0.010707488283515],[0.029366798698902,0.029612956568599,-0.063886396586895]],[[0.055930450558662,0.08564767986536,-0.0065625505521894],[0.024150026962161,-0.057587169110775,0.023112390190363],[-0.017484053969383,-0.033257480710745,-0.0012252008309588]],[[0.044543944299221,0.018021853640676,-0.046210683882236],[-0.06953752040863,0.017696464434266,-0.0082325674593449],[-0.047702729701996,-0.037880871444941,-0.027449835091829]],[[-0.041297722607851,0.0071807098574936,0.069502905011177],[-0.034472763538361,-0.071684159338474,-0.027299659326673],[-0.10530448704958,-0.093385621905327,0.037167776376009]],[[0.032723907381296,0.013886950910091,-0.097560897469521],[0.049136973917484,-0.031150177121162,-5.4060728871264e-05],[0.020408062264323,-0.046599768102169,0.013308282010257]],[[0.027357835322618,0.034104976803064,-0.052864417433739],[0.030334811657667,0.027361804619431,0.0049555343575776],[0.015645856037736,-0.0045330533757806,-0.021051473915577]],[[0.00071759364800528,0.05738203972578,-0.013241303153336],[-0.00035637291148305,-0.065047882497311,-0.0088133681565523],[0.02280811034143,0.046982705593109,0.054019823670387]],[[0.067172393202782,-0.014004210010171,-0.025625355541706],[0.062993317842484,-0.033027291297913,0.0027468174230307],[-0.037621766328812,-0.083666540682316,-0.0240194555372]],[[0.013610145077109,0.026775579899549,-0.054336149245501],[0.035586930811405,0.015889447182417,-0.088540650904179],[-0.027284178882837,-0.023476883769035,-0.0027358594816178]],[[-0.049292165786028,0.056334137916565,0.0080399811267853],[-0.035194467753172,0.039301514625549,0.022323569282889],[0.029324630275369,-0.0024403769057244,-0.012661386281252]],[[0.0024104572366923,-0.018567398190498,-0.035211961716413],[0.050063230097294,0.032180231064558,-0.025682294741273],[-0.0074597410857677,-0.0092858206480742,-0.037285037338734]],[[0.00080246391007677,-0.049739941954613,0.032936986535788],[0.072987742722034,0.0034168448764831,0.027238950133324],[-0.098735801875591,-0.005905631929636,-0.023359794169664]],[[0.029116598889232,-0.083855517208576,-0.045901287347078],[0.096810728311539,-0.0047006323002279,0.054961875081062],[-0.029013726860285,-0.030081421136856,-0.014094362035394]],[[5.9363352193031e-05,-0.04895118996501,-0.021937439218163],[-0.0083560170605779,-0.038226950913668,0.082860097289085],[-0.090846881270409,-0.045819915831089,-0.080450490117073]],[[-0.014186835847795,0.0067116389982402,0.068102359771729],[-0.027292378246784,0.031218940392137,0.0053974133916199],[-0.050169460475445,-0.10591166466475,0.0085960626602173]],[[0.010250213555992,-0.040946524590254,-0.078140832483768],[-0.033022623509169,-0.012538628652692,0.0065280427224934],[-0.040296345949173,-0.051098879426718,-0.00030148000223562]],[[0.082199282944202,0.073804914951324,0.048306249082088],[-0.029257593676448,-0.0042020557448268,0.041036386042833],[-0.025121280923486,0.0020869136787951,8.2297767221462e-05]],[[0.041623551398516,-0.039869729429483,-0.062550984323025],[-0.033798977732658,0.047304004430771,-0.12443029880524],[0.02619044855237,0.040680967271328,0.03433145955205]],[[0.03589715436101,-0.030480306595564,-0.049245852977037],[0.0165253020823,0.01181351672858,-0.046906318515539],[-0.053321972489357,0.03790033236146,0.019481539726257]],[[-0.028248531743884,-0.055150371044874,0.039996482431889],[-0.025234147906303,0.040887054055929,0.0037905098870397],[-0.046154376119375,0.036414325237274,0.039479415863752]],[[0.019567109644413,0.020030289888382,0.016980070620775],[-0.0088289128616452,-0.034612439572811,-0.063045799732208],[0.10034219175577,0.010664277710021,0.0070115244016051]],[[0.05604537948966,-0.0081524318084121,-0.011309335008264],[-0.018258215859532,0.011321262456477,0.058553650975227],[-0.032136008143425,0.060473058372736,-0.042185932397842]],[[0.0055700493976474,0.038685094565153,-0.023144142702222],[0.076061010360718,0.0019716823007911,0.025108601897955],[0.019813265651464,0.018032742664218,0.052479717880487]],[[-0.026462774723768,-0.054683666676283,0.031129745766521],[-0.017173275351524,-0.061045281589031,-0.052269134670496],[-0.0053257304243743,0.016348456963897,0.00062184402486309]],[[-0.0085833799093962,-0.0054343403317034,-0.054754484444857],[0.035778108984232,0.024222984910011,0.010333546437323],[0.0063101053237915,-0.010528927668929,0.025117751210928]],[[0.0038116849027574,-0.078907653689384,-0.045559231191874],[-0.051353260874748,-0.021068980917335,-0.022640764713287],[-0.026711381971836,-0.040882337838411,-0.03502432256937]],[[0.022916322574019,0.0060348836705089,0.012678832747042],[-0.0017746454104781,0.019839901477098,0.026736158877611],[0.018897196277976,0.066870734095573,0.015917250886559]],[[0.021281322464347,0.010741968639195,0.00038837504689582],[-0.076021984219551,0.00047808585804887,0.034123238176107],[-0.024075709283352,0.062639117240906,-0.001241548336111]],[[-0.0047698044218123,0.0070827873423696,-0.025900339707732],[-0.045831385999918,-0.042371891438961,0.032442260533571],[0.0073430300690234,0.0025798273272812,-0.0066006695851684]],[[0.037166371941566,-0.056522540748119,0.081087782979012],[-0.035638172179461,-0.014894668012857,-0.0026042032986879],[0.052040100097656,-0.013661042787135,0.01692602597177]],[[0.092053048312664,-0.052141234278679,-0.033017665147781],[-0.0049586836248636,0.012770016677678,-0.027954995632172],[-0.069127969443798,0.044804807752371,0.001014748821035]],[[-0.058203186839819,-0.0074233789928257,-0.016523839905858],[0.10847748070955,0.030738247558475,0.029676577076316],[0.034590635448694,0.020846055820584,-0.027029981836677]],[[-0.022149374708533,-0.043720539659262,0.046076443046331],[-0.017478154972196,-0.010967652313411,-0.036385841667652],[-0.0064771962352097,-0.0037515296135098,0.034622684121132]],[[-0.0054331282153726,-0.047460984438658,-0.01021274458617],[-0.012961734086275,0.055289156734943,0.068675175309181],[-0.080085135996342,0.039586011320353,0.016193768009543]],[[-0.024990050122142,0.08314710855484,0.022673701867461],[0.016608893871307,0.027685977518559,-0.042008802294731],[0.049141369760036,0.059982027858496,0.017160097137094]],[[-0.026806192472577,-0.011039730161428,-0.087771251797676],[0.064601220190525,0.055990662425756,-0.064675353467464],[0.010160545818508,-0.0069838273338974,-0.10343249887228]],[[0.021771483123302,0.014554161578417,-0.011067538522184],[0.030907588079572,0.05174532532692,0.015210785903037],[0.029690956696868,0.054703246802092,0.025216218084097]],[[-0.060102038085461,0.10656523704529,-0.024744056165218],[-0.042687680572271,0.033103253692389,-0.03064151480794],[-0.074823074042797,-0.039029248058796,0.021519964560866]],[[-0.0019025728106499,0.0059710335917771,0.035406917333603],[0.034011892974377,-0.016959249973297,0.016435626894236],[-0.017759686335921,8.065046131378e-06,0.047529969364405]],[[-0.079721421003342,0.033536672592163,0.012939563952386],[-0.02065272629261,0.02899501286447,0.089223697781563],[-0.0014338161563501,-0.00056041654897854,-0.018282512202859]],[[-0.029052844271064,-0.033140037208796,0.033168245106936],[-0.042482893913984,0.013213992118835,0.059685584157705],[0.049749650061131,0.030399532988667,-0.015121422708035]],[[-0.018280757591128,0.013853656128049,-0.041934568434954],[0.06882718205452,0.045804228633642,0.056565742939711],[-0.0018906920449808,0.050334557890892,-0.081366822123528]],[[-0.074825778603554,0.019369553774595,0.087453417479992],[0.016675647348166,0.057203650474548,0.024295821785927],[-0.0423026047647,-0.0013997162459418,-0.03775929659605]],[[0.025530347600579,-0.011928622610867,-0.0084429243579507],[-0.032908175140619,0.018558159470558,-0.0098222531378269],[-0.04666580632329,0.0087835965678096,0.052861087024212]],[[-0.0080898832529783,-0.0033163577318192,-0.043811917304993],[0.014892570674419,-0.0047182543203235,-0.080728225409985],[-0.012263781391084,-0.066986747086048,-0.017602765932679]],[[0.024716567248106,-0.031278248876333,0.050104781985283],[0.10280633717775,-0.0044236369431019,-0.0011447966098785],[0.096380613744259,0.038307998329401,-0.011431644670665]],[[0.0098007889464498,-0.0041323988698423,0.066024988889694],[0.021531255915761,0.082725003361702,0.0043243914842606],[0.023197866976261,-0.00026784781948663,0.068100288510323]],[[-0.035488706082106,0.036170765757561,0.011106973513961],[0.061294235289097,0.10067705065012,-0.053054455667734],[-0.0098733399063349,-0.064997680485249,-0.025220099836588]],[[0.058427475392818,-0.003531763330102,0.0023825061507523],[0.0073972088284791,-0.076668545603752,0.029588868841529],[0.020781835541129,0.020699145272374,-0.022654715925455]],[[-0.032844394445419,0.067032873630524,-0.021968208253384],[0.017472580075264,-0.044709738343954,0.088835500180721],[-0.01105388905853,-0.023886231705546,-0.045838069170713]],[[0.036199625581503,-0.041233405470848,0.044160511344671],[-0.0032829414121807,-0.021384362131357,-0.063703164458275],[0.022691080346704,-0.095634639263153,-0.020232520997524]],[[-0.018961321562529,0.0099201239645481,0.052292801439762],[0.0076602133922279,-0.025491338223219,-0.022270189598203],[-0.061759185045958,-0.035149455070496,0.010334898717701]],[[-0.014877145178616,-0.0081673674285412,0.067805908620358],[-0.03549699485302,-0.010732882656157,0.0011145112803206],[-0.036800563335419,-0.025899657979608,0.034095950424671]],[[-0.0073628318496048,0.026387086138129,0.048022910952568],[-0.10509386658669,-0.039558526128531,0.040078692138195],[0.00013862593914382,0.017720693722367,0.013864057138562]],[[-0.0062551028095186,-0.031265247613192,-0.028117815032601],[-0.034029074013233,0.077533721923828,-0.069649241864681],[-0.016483152285218,-0.042688332498074,0.031519178301096]],[[-0.024777146056294,0.044106349349022,0.07087404280901],[-0.011291595175862,0.0533212646842,-0.0052670272998512],[-0.0028597160708159,0.0054470030590892,0.084932394325733]],[[-0.014204643666744,0.0084964977577329,0.025189118459821],[0.022192286327481,0.033915545791388,0.021246336400509],[-0.0050809211097658,-0.036428835242987,0.041042819619179]],[[-0.048173069953918,0.0043899961747229,-0.032715566456318],[0.0016254095826298,-0.0038134229835123,0.0015227345284075],[0.031428318470716,-0.018052652478218,-0.042325474321842]],[[-0.05211016535759,-0.082240760326385,-0.044908750802279],[-0.011133266612887,-0.017248459160328,0.030881576240063],[-0.0040539419278502,0.02552155777812,0.0033848653547466]],[[0.00085349311120808,0.010914826765656,0.031413890421391],[-0.02450998686254,0.013777899555862,-0.023801404982805],[0.020811274647713,0.052068922668695,0.0018558539450169]],[[-0.038690637797117,-0.0035971230827272,0.029794724658132],[0.048476595431566,0.072561524808407,0.050263781100512],[0.035188663750887,-0.10489685088396,-0.084197849035263]],[[0.061337310820818,0.016921076923609,-0.024727860465646],[-0.0076545015908778,0.031850647181273,0.053733702749014],[-0.062594689428806,-0.15113174915314,0.068149395287037]],[[-0.0086004482582211,0.028650976717472,0.049201488494873],[-0.022581096738577,0.044273842126131,-0.031905245035887],[-0.0015538884326816,0.00011984904267592,-0.027806809172034]],[[-0.066099040210247,-0.0025395359843969,-0.0091047026216984],[-0.046716026961803,-0.048980657011271,0.017008487135172],[0.0053882678039372,-0.047445226460695,0.10635507851839]],[[0.051502253860235,-0.058142255991697,-0.041259694844484],[-0.0196244828403,0.0059014465659857,-0.02065622061491],[-0.035991225391626,0.070346914231777,-0.078158736228943]],[[0.014606481418014,0.064617343246937,0.00058334821369499],[-0.0086301164701581,0.0015546854119748,0.073050923645496],[0.026336712762713,0.0012351435143501,0.021698445081711]],[[0.037257350981236,0.026078967377543,-0.033641163259745],[0.01937192119658,0.04097830504179,-0.0095112966373563],[0.018310645595193,-0.045397311449051,-0.061047412455082]],[[0.062963508069515,-0.011222724802792,-0.014385063201189],[0.0021205609664321,0.020578429102898,-0.085470087826252],[0.025849603116512,-0.0074887815862894,0.059531826525927]],[[-0.04399186745286,0.010295076295733,0.02094260416925],[0.041489623486996,0.0013366644270718,-0.0042923847213387],[-0.068913370370865,-0.020962793380022,0.044548857957125]],[[0.028588997200131,0.020423952490091,-0.044806260615587],[-0.015486254356802,0.038863208144903,0.066137507557869],[0.0093508698046207,-0.014896630309522,0.017012001946568]],[[0.025776879861951,0.098200902342796,-0.013514197431505],[0.038706686347723,-0.0069999233819544,0.011638227850199],[-0.039111413061619,0.019603747874498,0.069850645959377]],[[-0.087013907730579,0.035987976938486,-0.018068371340632],[0.026488455012441,-0.096187010407448,-0.0014834343455732],[0.018475335091352,0.038106817752123,-0.011662531644106]],[[0.034590803086758,-0.028825279325247,-0.061230938881636],[-0.017364988103509,0.036594707518816,0.043948035687208],[0.07250452786684,-0.016122125089169,0.014646273106337]]],[[[0.010558092966676,0.025184171274304,-0.019212242215872],[9.4281094789039e-05,-0.026640366762877,0.081230640411377],[0.065468855202198,-0.024178050458431,0.0094652352854609]],[[0.035894032567739,0.024574015289545,-0.0096877031028271],[0.043476339429617,-0.022372120991349,-0.047037113457918],[0.028746513649821,-0.052913773804903,0.011225450783968]],[[0.095568098127842,0.012679536826909,0.01682005636394],[0.072635002434254,-0.002958697732538,-0.026205306872725],[0.0050848936662078,-0.011094642803073,-0.11726205796003]],[[0.0097022270783782,0.037852089852095,0.0010592314647511],[0.035542041063309,0.13105426728725,0.087052799761295],[0.084287032485008,-0.025395944714546,0.028835400938988]],[[-0.04290945827961,0.049370650202036,0.0044889613054693],[-0.034786712378263,-0.063201330602169,0.038152579218149],[-0.016183672472835,-0.030788568779826,-0.067502841353416]],[[0.0023633160162717,0.026972129940987,0.062795370817184],[0.0080872429534793,-0.074048183858395,0.012970670126379],[0.0078114327043295,-0.0062998910434544,0.055291447788477]],[[0.024171223863959,0.017604256048799,0.052698574960232],[-0.066209718585014,0.0019157943315804,0.031506735831499],[-0.08721961826086,0.040524382144213,0.015618234872818]],[[0.018130714073777,-0.084989309310913,-0.065127246081829],[0.079461127519608,0.1107355132699,0.010656083002687],[0.0098180677741766,0.043587896972895,-0.016927806660533]],[[-0.040824349969625,0.017556481063366,-0.032434061169624],[-0.0018311067251489,-0.0017798724584281,0.0026605997700244],[-0.024793706834316,0.019725145772099,0.042816504836082]],[[0.0097948014736176,0.034623548388481,0.019538385793567],[-0.014949693344533,0.068279065191746,-0.019984792917967],[0.061532579362392,-0.048623628914356,0.093443535268307]],[[-0.049670677632093,0.05655375868082,0.058646965771914],[-0.0080104321241379,0.010385161265731,0.058067087084055],[0.038678105920553,-0.028849268332124,0.014761091209948]],[[0.015271878801286,0.038256943225861,0.052984423935413],[-0.0042266384698451,-0.037439171224833,-0.056920740753412],[-0.015095070004463,-0.013108091428876,-0.0029148443136364]],[[0.033164598047733,-0.0080635948106647,0.01659550331533],[0.015532159246504,0.023968925699592,0.0021725576370955],[0.024271884933114,0.12997286021709,0.014658053405583]],[[0.039879243820906,0.077240012586117,-0.042074576020241],[0.021575033664703,-0.018041240051389,0.029148643836379],[0.065901808440685,0.03614517301321,0.023785974830389]],[[0.013628390617669,0.047913264483213,0.024233749136329],[0.085471086204052,0.021759875118732,-0.017264112830162],[0.01688171736896,0.15430684387684,-0.006369021255523]],[[0.032694566994905,-0.027576928958297,-0.0058024502359331],[-0.050138726830482,-0.052517861127853,0.032504390925169],[-0.011400756426156,-0.010973496362567,0.033883661031723]],[[0.022646497935057,-0.041010145097971,-0.023633955046535],[0.075342357158661,-0.063425704836845,-0.021802790462971],[-0.028624802827835,-0.031536851078272,0.0051374225877225]],[[0.065057903528214,0.075133785605431,-0.012907771393657],[-0.019521340727806,0.056841775774956,-0.017976524308324],[0.061383184045553,-0.064219266176224,-0.021055813878775]],[[-0.020349729806185,0.018658390268683,0.0091652749106288],[-0.014189884066582,0.014425526373088,0.022756509482861],[-0.051360137760639,0.019081080332398,0.098483525216579]],[[0.070361450314522,0.11034762859344,0.062446542084217],[-0.060163252055645,0.054663460701704,-0.071733482182026],[0.032479833811522,0.026441996917129,-0.02698633633554]],[[-0.02394176274538,-0.034707944840193,-0.031266309320927],[0.037399858236313,-0.0038259634748101,0.066262364387512],[-0.0064361556433141,-0.069861613214016,-0.023287149146199]],[[0.010626967996359,0.020959734916687,0.066055431962013],[-0.0059254029765725,-0.023193014785647,0.01449997164309],[0.033064533025026,0.029466910287738,-0.0038727428764105]],[[0.053956001996994,-0.037580046802759,-0.037005200982094],[-0.00095994159346446,-0.10742598026991,0.052412241697311],[-0.062886454164982,0.0072016124613583,-0.040823254734278]],[[0.00080850668018684,-0.0050581651739776,0.013328244909644],[-0.052018105983734,0.026088835671544,0.023712633177638],[0.013118383474648,-0.0032271142117679,0.0091144060716033]],[[-0.0094341207295656,0.045860685408115,-0.046567052602768],[-0.045586515218019,-0.040057808160782,0.0070761949755251],[0.028250003233552,-0.05046172067523,0.057653591036797]],[[-0.064109541475773,0.039459399878979,0.057219553738832],[0.011984931305051,0.011668735183775,-0.0075802877545357],[0.00828917324543,-0.053034462034702,0.0012490017106757]],[[0.0466128885746,0.010720794089139,0.051377557218075],[0.014392302371562,0.015675839036703,0.0098397405818105],[0.028907997533679,-0.064106866717339,0.0080871339887381]],[[0.063908465206623,0.057253506034613,0.055010627955198],[-0.018461378291249,0.0054183434695005,0.0059064286760986],[0.04233030974865,-0.086728572845459,0.049067948013544]],[[0.027703074738383,0.061730939894915,-0.020103316754103],[0.042578332126141,0.019519774243236,-0.061719171702862],[0.055180579423904,0.096901759505272,-0.032127909362316]],[[-0.016282921656966,0.039627406746149,0.044359717518091],[-0.041003968566656,0.013082839548588,-0.025302067399025],[0.037145636975765,0.068339213728905,-0.05492715165019]],[[-0.0026626999024302,0.011584874242544,0.095221571624279],[0.069220811128616,-0.0085665425285697,0.028085758909583],[0.026211556047201,-0.011263078078628,0.037787083536386]],[[0.046749111264944,-0.0013458105968311,0.0068816966377199],[-0.023368615657091,0.046073343604803,-0.085799604654312],[0.037697602063417,0.0077209607698023,0.0088562071323395]],[[0.013509667478502,-0.007811572868377,0.032152537256479],[0.075808569788933,-0.0096875932067633,-0.045933950692415],[-0.0042222780175507,0.010137691162527,-0.017951458692551]],[[0.018691621720791,-0.039782967418432,-0.076559320092201],[0.038046844303608,0.049707911908627,0.00880759768188],[0.07673729211092,-0.0037910649552941,-0.02766253426671]],[[0.043294835835695,0.035021930932999,-0.0099568217992783],[-0.0050296620465815,0.012410473078489,-0.039466470479965],[-0.0063083032146096,-0.022888014093041,-0.0015234558377415]],[[-0.075286641716957,-0.025890367105603,0.029858471825719],[-0.042987998574972,0.017777789384127,0.07313909381628],[-0.069330155849457,-0.0053106946870685,-0.077634230256081]],[[-0.025961531326175,0.025415549054742,-0.019471289590001],[-0.086804270744324,0.067766293883324,0.11527836322784],[0.023886835202575,-0.11004466563463,0.050847195088863]],[[-0.018818728625774,0.035022459924221,0.041318811476231],[-0.076435461640358,-0.028664650395513,-0.050529845058918],[0.038508791476488,-0.039633855223656,0.019613837823272]],[[0.024689964950085,0.042782962322235,0.050758540630341],[-0.081369176506996,0.05327246338129,0.10358632355928],[-0.028383154422045,0.07316555082798,0.019869785755873]],[[0.02643384411931,0.023071754723787,-0.0026554875075817],[-0.082883916795254,-0.016256716102362,0.04328678175807],[0.022696800529957,0.028355769813061,0.034861735999584]],[[-0.0044797011651099,0.035129018127918,-0.0093490807339549],[-0.0053221313282847,0.05927823856473,0.063155613839626],[0.018922092393041,-0.0023122469428927,-0.046518664807081]],[[0.073412515223026,0.059156283736229,-0.01097821071744],[0.025990726426244,-0.013145153410733,-0.0070007327012718],[-0.036752864718437,0.041266560554504,0.024747358635068]],[[0.005871397908777,0.054104916751385,-0.062620043754578],[0.053087789565325,0.11471430212259,-0.035866595804691],[0.031727019697428,0.038012240082026,0.059634387493134]],[[-0.038247633725405,-0.075007997453213,-0.033445358276367],[0.02361592464149,-0.031125005334616,0.06460702419281],[-0.018283825367689,0.0046632750891149,0.022454276680946]],[[-0.0086000859737396,0.014266992919147,-0.041553486138582],[0.072194583714008,0.042755633592606,-0.095637649297714],[-0.046335153281689,0.030528115108609,7.3153416451532e-05]],[[0.055697228759527,-0.007529582362622,0.068735234439373],[-0.064108192920685,0.001280014635995,0.04955580458045],[0.00071090762503445,0.033252339810133,0.017078522592783]],[[0.065645806491375,0.030298741534352,0.04172133281827],[-0.0094562843441963,-0.0010516924085096,0.022127978503704],[-0.03904764354229,0.029654834419489,0.030598022043705]],[[0.039325248450041,0.0065885484218597,-0.0049262498505414],[-0.036123659461737,0.052361276000738,0.0020941474940628],[0.055351071059704,0.036330278962851,-0.087149314582348]],[[0.00075885665137321,-0.022827701643109,-0.032644480466843],[-0.01763017475605,0.060704197734594,0.02116683870554],[0.046290077269077,0.021242460235953,-0.047702051699162]],[[0.0037320328410715,0.069923624396324,-0.040044482797384],[0.043508790433407,0.0066893100738525,0.001280038850382],[-0.019986018538475,-0.0064387200400233,0.038584742695093]],[[0.037058509886265,-0.019211526960135,0.017378155142069],[0.0022768697235733,-0.021958667784929,-0.03602297976613],[-0.026290852576494,-0.018661828711629,-0.033022128045559]],[[0.042965140193701,-0.058816712349653,-0.072883412241936],[0.049864530563354,0.039324268698692,-0.061062641441822],[-0.017203073948622,0.025963071733713,0.052573774009943]],[[-0.0078081167303026,0.069452092051506,0.011358550749719],[0.037227593362331,0.008381056599319,0.05469298735261],[-0.017709577456117,-0.074175305664539,-0.0033878311514854]],[[0.012426140718162,-0.047337625175714,-0.036681715399027],[0.06212155148387,0.01660044491291,0.025363286957145],[-0.061172399669886,0.078025795519352,0.031460165977478]],[[-0.031850509345531,0.0059106801636517,0.0038100625388324],[-0.050474513322115,0.020435834303498,-0.019676063209772],[0.013420228846371,-0.017525378614664,0.035398423671722]],[[0.04017236456275,0.12500222027302,-0.031298000365496],[0.0019847862422466,-0.00048113538650796,-0.029681300744414],[-0.003676735330373,-0.008269683457911,0.011263201013207]],[[0.0075611718930304,-0.038920655846596,-0.019409695640206],[-0.024510541930795,0.013922953046858,-0.035286363214254],[-0.014751678332686,0.073771491646767,-0.036837164312601]],[[0.043065637350082,-0.057914908975363,-0.030487608164549],[0.033499673008919,-0.042311996221542,-0.0017893791664392],[-0.070519208908081,0.083303287625313,-0.056929491460323]],[[-0.076737701892853,0.0098572792485356,-0.056196495890617],[-0.048395115882158,-0.039288893342018,0.083215527236462],[-0.0070339189842343,0.083465255796909,0.041121669113636]],[[-0.07526446133852,0.0043880823068321,0.0013883461942896],[-0.037584755569696,-0.02676066569984,0.038507629185915],[-0.031991336494684,0.071084529161453,-0.018317809328437]],[[-0.019474003463984,0.010726992040873,0.0023402646183968],[0.062194652855396,0.088580615818501,0.045575872063637],[-0.006166793871671,0.032205622643232,-0.028940670192242]],[[0.014149911701679,-0.029226563870907,0.001077221124433],[-0.04911495000124,-0.035011097788811,0.017689917236567],[-0.0058764587156475,0.062715277075768,-0.00072749174432829]],[[0.028003940358758,0.019094144925475,-0.015342436730862],[-0.040717869997025,-0.0019048976246268,-0.052838031202555],[-0.024588210508227,-0.032839622348547,0.065704450011253]],[[0.008920663036406,-0.036215677857399,0.062059618532658],[0.0069710635580122,0.0013095242902637,-0.023960433900356],[-0.056304164230824,0.038182724267244,0.05861796066165]],[[0.010597594082355,-0.015543587505817,0.083952888846397],[-0.048013534396887,-0.035996034741402,0.0035646543838084],[0.0020169240888208,0.0034637975040823,-0.02104184217751]],[[0.0075400732457638,0.021508570760489,-0.01292167045176],[0.057699874043465,-0.042869754135609,0.026681220158935],[0.012753058224916,-0.010784443467855,-0.034959860146046]],[[0.10274784266949,0.049409825354815,0.022533424198627],[0.052276212722063,0.045761272311211,-0.010678530670702],[0.026669956743717,-0.0046049398370087,0.068546503782272]],[[0.0089026102796197,-0.0072845076210797,0.06640238314867],[0.044526517391205,0.032045166939497,-0.042611047625542],[0.021436855196953,-0.055492755025625,0.01745174638927]],[[0.022690638899803,0.083260908722878,0.016056302934885],[0.056689973920584,0.024213325232267,-0.0051079634577036],[-0.013111561536789,0.019319493323565,0.019048282876611]],[[0.0067267860285938,0.0028216803912073,-0.011004245840013],[0.026605926454067,0.058083917945623,-0.041903629899025],[0.030272021889687,0.019031958654523,-0.027511646971107]],[[-0.050856478512287,-0.017167175188661,0.017385464161634],[0.036845084279776,0.059856668114662,0.060736246407032],[-0.049804281443357,0.072179786860943,-0.095815755426884]],[[0.063727714121342,0.038957089185715,-0.040547300130129],[0.0048929094336927,-0.0044595622457564,-0.024023747071624],[-0.020212411880493,0.10327913612127,-0.015739249065518]],[[0.048649746924639,-0.0064521771855652,0.026935271918774],[-0.018972016870975,-0.015546982176602,0.048413060605526],[-0.028727611526847,-0.07598702609539,-0.028919849544764]],[[-0.085540421307087,-0.013191197067499,-0.011536992155015],[0.0078155416995287,0.045068841427565,0.049541734158993],[-0.017829824239016,-0.031909085810184,-0.0023611411452293]],[[0.055865634232759,0.019133703783154,0.019215511158109],[-0.12085420638323,0.053697943687439,0.048408485949039],[0.034812033176422,-0.01789665594697,-0.034596167504787]],[[-0.0013894614530727,0.058978646993637,-0.0075762388296425],[0.066908590495586,-0.036501061171293,0.00086248846491799],[-0.043253164738417,0.021441232413054,-0.013248728588223]],[[0.042768619954586,-0.076094590127468,0.0080235535278916],[-0.061961729079485,-0.0045846221037209,0.060662098228931],[-0.04672147333622,-0.022905293852091,-0.01027830503881]],[[0.049906600266695,-0.052319873124361,0.0084982626140118],[0.018122656270862,0.055864974856377,0.04389525949955],[-0.0076877032406628,0.034208349883556,-0.0042500603012741]],[[-0.090223751962185,0.026707950979471,-0.055759515613317],[0.057905048131943,-0.095006160438061,0.027375055477023],[0.029391031712294,0.009817854501307,-0.0032859279308468]],[[-0.016141250729561,0.028441207483411,0.052735764533281],[0.00097097177058458,-0.0081154545769095,-0.010524703189731],[0.066614851355553,0.048624366521835,0.013477085158229]],[[-0.034816406667233,0.0083173448219895,0.011817707680166],[0.0033251054119319,0.036532606929541,-0.034975916147232],[0.011250270530581,0.057313956320286,0.019774561747909]],[[0.040721002966166,0.0065559418871999,-0.05066304281354],[-0.079380318522453,0.013058538548648,0.022339405491948],[-0.046099811792374,-0.0022228283341974,-0.039796855300665]],[[-0.012005642987788,0.0012438339181244,-0.079453431069851],[0.1036731377244,0.042055279016495,0.06653019040823],[-0.064903795719147,0.043170284479856,0.0069441609084606]],[[-0.023633675649762,0.088543549180031,0.035171184688807],[0.03919405862689,-0.036366622895002,0.019688693806529],[-0.075608767569065,0.0031369584612548,0.029703259468079]],[[0.057425770908594,-0.055078413337469,0.023045787587762],[-0.0097166048362851,-0.00627101957798,-0.037429895251989],[-0.045948062092066,-0.061008382588625,0.026620216667652]],[[-0.06295720487833,0.011622126214206,-0.024958148598671],[-0.013183746486902,0.079487547278404,0.010449196211994],[0.0037386328913271,-0.065750516951084,-0.022490475326777]],[[0.022162886336446,-0.057871170341969,-0.087666399776936],[-0.066809475421906,0.090408854186535,0.042728614062071],[-0.073894031345844,-0.019723258912563,-0.016141142696142]],[[0.027043705806136,-0.037548918277025,0.034818913787603],[0.088410258293152,-0.061043869704008,0.01527330186218],[-0.039459034800529,-0.0011828917777166,-0.048155967146158]],[[0.0069808582775295,0.045963175594807,0.099386528134346],[-0.048291698098183,0.034175213426352,0.068188264966011],[-0.0083385743200779,0.088620461523533,0.027701020240784]],[[0.05241447687149,0.032977398484945,0.051590640097857],[0.016269342973828,-0.074873670935631,0.027305997908115],[-0.013537775725126,-0.054749768227339,0.061803288757801]],[[0.041511513292789,0.019626915454865,0.023712987080216],[0.075728490948677,0.012754701077938,-0.0090258326381445],[0.0027370979078114,0.0242461822927,0.018632486462593]],[[0.022691942751408,0.016483413055539,-0.023969799280167],[-0.037530284374952,0.024595819413662,0.01146553363651],[0.057226184755564,0.0085483454167843,0.0023037409409881]],[[-0.018805241212249,0.014320685528219,0.064068228006363],[0.010912203229964,-0.038497880101204,0.089351579546928],[-0.05484701320529,-0.042697545140982,-0.027521228417754]],[[-0.010251143015921,0.038610268384218,0.054388422518969],[0.057249210774899,0.020961936563253,0.035219423472881],[0.11135932803154,-0.02745164744556,0.036852091550827]],[[-0.014313250780106,-0.058603204786777,0.023190025240183],[0.029190100729465,-0.014626141637564,-0.014503626152873],[0.014896470122039,0.034696657210588,-0.034090451896191]],[[-0.010962562635541,-0.020440695807338,0.015973461791873],[0.032254122197628,-0.0003918326983694,-0.01742429099977],[-0.0030549773946404,-0.035995874553919,-0.047470230609179]],[[0.0562286041677,-0.0032306625507772,-0.019101422280073],[0.069647297263145,-0.020348781719804,-0.00037926970981061],[0.078725703060627,0.030501114204526,-0.00028676318470389]],[[0.063471883535385,-0.03906287252903,-0.037470873445272],[0.012563050724566,0.015293889679015,0.03471190854907],[-0.025808252394199,0.10506157577038,0.08753465116024]],[[-0.013806394301355,-0.01229456346482,0.037827339023352],[-0.035890523344278,-0.049300670623779,-0.068805307149887],[-0.052394285798073,0.052361991256475,0.025339584797621]],[[0.046207387000322,0.0097403237596154,-0.016430614516139],[-0.010481630451977,-0.027925577014685,-0.055824957787991],[-0.063988760113716,0.046851441264153,0.02396466769278]],[[-0.020255723968148,0.040329404175282,-0.0082565853372216],[-0.035356145352125,0.0031714970245957,0.032064270228148],[0.022964397445321,-0.0086797038093209,0.050604991614819]],[[0.054468486458063,0.018990948796272,-0.01049530133605],[0.034771531820297,-0.029279250651598,0.022741777822375],[0.052994009107351,0.070142231881618,-0.0022376880515367]],[[0.060993488878012,-0.061146073043346,0.0034945574589074],[0.022466287016869,-0.06169655919075,-0.049990389496088],[-0.007804071996361,-0.036036491394043,0.0033031564671546]],[[0.043560322374105,0.018510928377509,-0.0077225877903402],[0.011079298332334,-0.034395787864923,0.0413135625422],[0.028588432818651,0.049827441573143,-0.0083948196843266]],[[-0.085163839161396,0.058136012405157,-0.01001291628927],[0.009269175119698,-0.0035331840626895,-0.072901122272015],[0.041927400976419,0.021276473999023,0.015100483782589]],[[0.034544669091702,0.072866447269917,0.013364867307246],[0.019075116142631,0.041073366999626,-0.06213865429163],[0.023163484409451,-0.019217554479837,0.029681496322155]],[[0.03233302757144,-0.020081732422113,-0.0055169854313135],[-0.025259366258979,-0.026368319988251,0.03577496483922],[0.0060306116938591,0.048737812787294,-0.038156233727932]],[[0.013035054318607,-0.051043458282948,0.066476695239544],[0.005683658644557,-0.069108247756958,0.0019290423952043],[0.037736728787422,0.0065414598211646,-0.0029640572611243]],[[0.029857486486435,0.024388514459133,-0.054449308663607],[0.031987246125937,0.01808568648994,-0.00014768983237445],[0.01939188875258,-0.005602743010968,0.0092971175909042]],[[0.021167159080505,-0.004694745875895,0.045013006776571],[-0.048194747418165,-0.051162090152502,0.035443115979433],[0.01130888145417,-0.018840994685888,0.030987976118922]],[[-0.031530402600765,-0.03724979609251,0.055524699389935],[-0.0026284058112651,0.0073165721260011,-0.038847204297781],[-0.031506922096014,0.015775982290506,0.080275148153305]],[[-0.046942856162786,0.040278673171997,-0.087700143456459],[-0.0312290918082,-0.066820278763771,0.010268334299326],[0.029462000355124,0.029764231294394,0.010283286683261]],[[0.069789096713066,-0.042708836495876,0.017016585916281],[-0.034086801111698,0.017730737105012,0.045487925410271],[-0.043747004121542,0.024863217025995,0.0011391572188586]],[[-0.075638525187969,-0.026694357395172,0.0078206155449152],[0.011308465152979,-0.012768260203302,0.016462793573737],[0.074436888098717,0.021216167137027,-0.02369112148881]],[[0.0010204641148448,0.038099598139524,-0.056372828781605],[-0.015625528991222,0.028980895876884,0.037967249751091],[-0.059915997087955,0.067798182368279,0.00064398848917335]],[[0.031477801501751,0.073348723351955,0.023793270811439],[0.088689155876637,-0.016789775341749,0.13560523092747],[0.036632478237152,-0.023474652320147,0.029319914057851]],[[-0.042257566004992,-0.010740236379206,0.021423256024718],[-0.0062481784261763,0.075053006410599,0.021383080631495],[-0.017362348735332,0.053814936429262,-0.039794635027647]],[[0.12393000721931,-0.0011104758596048,0.044948343187571],[0.0081676701083779,0.0082130124792457,-0.018753595650196],[0.034599684178829,0.086729645729065,0.042207419872284]],[[0.004377462901175,-0.044500753283501,0.011084559373558],[-0.050894729793072,-0.023560620844364,0.0099870711565018],[0.016849547624588,-0.060980040580034,-0.034193269908428]],[[0.046097133308649,-0.073094077408314,-0.0040422137826681],[-0.049394614994526,0.014660357497633,-0.030627043917775],[0.028988920152187,-0.049383107572794,-0.01491972245276]],[[0.036755196750164,-0.061663243919611,0.031060041859746],[-0.062536828219891,-0.072876811027527,0.044777799397707],[-0.04074626788497,-0.013397268950939,0.005251657217741]],[[-0.019362706691027,0.0078764632344246,-0.016782380640507],[0.043512009084225,-0.025008574128151,-0.075490608811378],[0.012145410291851,-0.043957810848951,-0.010687743313611]],[[0.019019119441509,-0.032655261456966,-0.013092421926558],[-0.063224755227566,-0.037934836000204,0.033113360404968],[-0.020411482080817,0.019556578248739,-0.032653871923685]],[[-0.046775408089161,0.045785043388605,-0.012021234259009],[0.017660582438111,-0.021756619215012,0.067136600613594],[0.0072305323556066,0.035573795437813,-0.026309655979276]],[[0.056667283177376,0.00062419351888821,0.013121720403433],[0.07880824059248,0.014603991992772,0.013342603109777],[-0.012441060505807,0.021758252754807,0.044698294252157]],[[0.039156422019005,0.058658178895712,-0.017795525491238],[-0.10740678757429,-0.020276643335819,0.026814704760909],[-0.018934965133667,0.0053167049773037,0.06395860016346]],[[0.0041358112357557,-0.075702965259552,-0.037944812327623],[-0.046948336064816,0.02436064556241,-0.049236580729485],[0.035244159400463,0.054568234831095,0.018494129180908]],[[0.069199956953526,0.031953394412994,0.015726946294308],[-0.029681460931897,0.05924429744482,0.081037618219852],[-0.00051899254322052,0.069604203104973,0.037318259477615]]],[[[0.0046688024885952,0.054338429123163,0.059540454298258],[-0.049405306577682,0.020165462046862,0.018576569855213],[0.030422473326325,-0.021300027146935,0.065511204302311]],[[0.0013038625475019,0.0018075918778777,-0.022259855642915],[-0.0079255299642682,-0.020250201225281,-0.004146930295974],[0.067269042134285,0.014823057688773,-0.0067855096422136]],[[0.010262921452522,-0.018788671121001,-0.027714129537344],[0.03612145036459,-0.0098683452233672,-0.053187228739262],[0.070787310600281,-0.064620085060596,-0.029730472713709]],[[-0.013349242508411,0.061671204864979,0.0531414039433],[0.047364011406898,-0.044305112212896,0.034551057964563],[0.066533118486404,-0.070879608392715,0.0173772983253]],[[-0.024239299818873,-0.0044449847191572,0.040075909346342],[0.068900771439075,-0.020569086074829,0.031329613178968],[-0.022605542093515,0.024102428928018,0.033505700528622]],[[0.023332392796874,0.051171965897083,0.067429982125759],[-0.038960788398981,0.071350045502186,-0.07448685914278],[-0.029960563406348,0.10022807121277,-0.020628627389669]],[[-0.0036820073146373,0.039671406149864,-0.086833342909813],[-0.075454756617546,0.052160773426294,0.08385457098484],[-0.0029590872582048,0.061177033931017,0.074969954788685]],[[0.03964825719595,0.010620678775012,-0.063889667391777],[0.10684751719236,0.039326354861259,0.029247455298901],[0.038725692778826,0.071093171834946,-0.0058876476250589]],[[0.065852083265781,-0.065667070448399,-0.052566897124052],[0.036734249442816,-0.018282348290086,0.021825931966305],[-0.0042714420706034,0.016929717734456,0.027235316112638]],[[-0.017130188643932,0.080132991075516,-0.041347604244947],[-0.0097527792677283,0.00099754391703755,-0.043938763439655],[0.047557681798935,-0.0073137553408742,0.13214761018753]],[[0.057234644889832,-0.067204512655735,-0.050419639796019],[0.074252583086491,-0.05742696300149,-0.12435200810432],[-0.015643717721105,0.0091636516153812,0.025835525244474]],[[0.23937593400478,0.075619101524353,0.0959118232131],[0.15458539128304,0.040140472352505,0.12149216234684],[-0.041147712618113,0.099982239305973,0.030692465603352]],[[-0.023866035044193,0.018307745456696,-0.10223953425884],[0.011003691703081,0.03013021312654,0.020156959071755],[-0.016384869813919,0.044632144272327,-0.021609487012029]],[[-0.030195446684957,-0.034572839736938,0.024669380858541],[-0.057195201516151,-0.028224617242813,-0.015572302974761],[-0.020869944244623,-0.09336369484663,0.10962972044945]],[[-0.031104456633329,-0.015199224464595,0.039078772068024],[0.16067589819431,0.042395211756229,-0.047955594956875],[0.017299417406321,0.022190095856786,0.075344443321228]],[[-0.0053818537853658,-0.057215392589569,0.020199961960316],[-0.10103999078274,-0.038406223058701,-0.019596764817834],[0.007863461971283,0.037698596715927,-0.043689746409655]],[[-0.044457819312811,0.10036670416594,-0.050165560096502],[0.09631535410881,0.013616585172713,0.040458265691996],[0.036886863410473,-0.011835334822536,-0.056003339588642]],[[0.061813272535801,0.0067773154005408,-0.033156115561724],[-0.12133432924747,-0.017037216573954,0.0045115379616618],[0.026078080758452,0.0068231630139053,-0.011696819216013]],[[-0.042113747447729,-0.021397287026048,-0.034485321491957],[-0.059723228216171,-0.0057349386624992,-0.025443429127336],[0.063340060412884,-0.081732034683228,-0.073130026459694]],[[0.091659992933273,0.075965262949467,0.079713016748428],[0.044441256672144,0.012673120945692,0.10286719352007],[0.050786960870028,-0.017154252156615,0.070417895913124]],[[0.09942314773798,-0.042751137167215,0.20067024230957],[0.015564006753266,0.065625667572021,-0.035489927977324],[0.028906788676977,0.031873740255833,-0.1032272875309]],[[0.051408383995295,0.023263830691576,0.054281074553728],[-0.00091062451247126,0.028800826519728,0.010885432362556],[-0.0086131291463971,0.045579891651869,0.079566493630409]],[[0.011597844772041,0.13746011257172,0.0048093455843627],[0.021022222936153,-0.029970107600093,0.059602476656437],[0.082140766084194,-0.012804018333554,0.086813189089298]],[[-0.047967385500669,0.012493588030338,-0.038466244935989],[-0.040577568113804,-0.050427418202162,-0.0018987011862919],[0.054845552891493,0.019945861771703,0.019333686679602]],[[-0.01348739489913,0.017126053571701,0.025664772838354],[0.017114052549005,0.032772656530142,-0.013499063439667],[-0.016979927197099,0.018712425604463,0.069507271051407]],[[-0.11328848451376,-0.028127778321505,0.04200404509902],[-0.063738726079464,0.022824378684163,0.022759256884456],[0.020657151937485,-0.1207682415843,-0.043749906122684]],[[-0.090445034205914,-0.0043640867806971,-0.071919582784176],[-0.052229065448046,0.013029357418418,-0.042381849139929],[0.0048343995586038,-0.016634276136756,0.044935520738363]],[[-0.0011194997932762,0.0065607572905719,-0.041540767997503],[0.028603360056877,-0.0083629302680492,-0.00070326321292669],[-0.057228729128838,0.048043306916952,0.14737538993359]],[[-0.046430107206106,-0.044919155538082,-0.075733304023743],[0.0015084414044395,0.052438616752625,0.0072555281221867],[0.02849524654448,0.041898377239704,-0.0042942268773913]],[[0.083210922777653,0.09097258746624,-0.022921197116375],[-0.016332311555743,-0.0084616458043456,-0.010076167061925],[0.055045455694199,-0.0099052265286446,0.018407890573144]],[[-0.016603671014309,0.013163886964321,-0.018378490582108],[-0.0064229597337544,-0.024750236421824,0.026779236271977],[-0.013064989820123,0.022753657773137,0.056153524667025]],[[0.00096382369520143,0.017484720796347,0.02642198652029],[0.069438897073269,0.070715799927711,-0.05245777964592],[-0.023872680962086,-0.014531626366079,0.077959664165974]],[[-0.029174029827118,-0.0040320944972336,-0.042389333248138],[-0.0072259418666363,-0.13174217939377,-0.0091740963980556],[-0.0025851703248918,0.072616092860699,0.019272040575743]],[[0.060489073395729,0.12352622300386,0.061075303703547],[0.025843990966678,0.028240744024515,0.027179574593902],[0.026617240160704,0.042850710451603,0.057682488113642]],[[0.038576409220695,-0.099879518151283,-0.045410048216581],[0.033924430608749,0.031570371240377,0.054003968834877],[0.018897483125329,0.029516102746129,-0.031127424910665]],[[0.054910819977522,-0.095323495566845,0.043890614062548],[-0.0049795634113252,0.052345104515553,-0.0062719085253775],[-0.054054409265518,0.027753751724958,0.041423209011555]],[[0.052277579903603,-0.048887703567743,0.021978404372931],[-0.11129193753004,-0.041855342686176,0.027642574161291],[0.062969505786896,0.0003620146017056,-0.016675082966685]],[[0.077597483992577,-0.030367292463779,0.07398709654808],[0.066441223025322,-0.0056082312949002,-0.047389954328537],[-0.010323511436582,0.02134470269084,0.055798642337322]],[[0.024177951738238,-0.018370153382421,-0.0020042802207172],[-0.00011826018453576,-0.050240695476532,0.034325379878283],[0.041770599782467,0.0021556662395597,0.051821559667587]],[[-0.092904046177864,-0.090392902493477,0.030026169493794],[0.027564618736506,-0.069050021469593,0.0051806652918458],[0.067540109157562,0.051031898707151,-0.020061219111085]],[[0.014111777767539,0.014406808651984,-0.026770148426294],[-0.0038543322589248,0.020997907966375,-0.087159119546413],[-0.0083604846149683,0.012291706167161,-0.077836528420448]],[[-0.025065165013075,-0.0039145555347204,0.078358381986618],[-0.028277453035116,0.012674514204264,-0.0099935522302985],[0.03640877828002,-0.080048583447933,-0.071090869605541]],[[0.049091063439846,-0.055769138038158,0.051240440458059],[-0.065569348633289,0.050343729555607,0.0053862989880145],[-0.0053081405349076,-0.085295878350735,0.00063272117404267]],[[-0.029659435153008,0.0096000880002975,0.036391720175743],[0.032285828143358,0.071303278207779,-0.013539589010179],[-0.061741106212139,0.041898436844349,0.032808624207973]],[[0.0042193136177957,0.046271894127131,-0.020147955045104],[0.07675451785326,0.0702123939991,-0.040563423186541],[-0.05419734492898,0.036160513758659,-0.024048650637269]],[[0.069701716303825,0.061725284904242,0.02478895150125],[0.054958708584309,0.063119150698185,0.089253969490528],[0.017410280182958,0.051987878978252,-0.04440027102828]],[[-0.029536122456193,-0.0059188916347921,-0.018544429913163],[-0.03341905772686,-0.030488649383187,-0.031145989894867],[0.0094827460125089,-0.043512672185898,0.087361685931683]],[[0.051985170692205,-0.019679514691234,0.0040765660814941],[0.0089540770277381,-0.036136690527201,0.017253287136555],[0.028524480760098,0.049253091216087,0.022974586114287]],[[0.077966459095478,-0.032776635140181,-0.018304970115423],[-0.032338194549084,-0.0006821570568718,-0.047804307192564],[0.0050165420398116,0.10673571377993,-0.055244892835617]],[[0.018059032037854,-0.099757485091686,-0.030944336205721],[0.027096981182694,-0.032156568020582,-0.036612045019865],[-0.1741532087326,0.045209862291813,-0.055782295763493]],[[-0.072309643030167,0.085320070385933,-0.0033817319199443],[0.040783770382404,-0.0073335496708751,-0.022298539057374],[0.0029108969029039,0.0070064822211862,-0.03264357894659]],[[0.043639078736305,-0.099667273461819,0.023992527276278],[-0.0066116992384195,0.031796898692846,0.038364551961422],[-0.049329899251461,0.080247618257999,0.00085771863814443]],[[0.086630694568157,0.0053779575973749,0.078673042356968],[0.024857407435775,0.017552837729454,-0.045415867120028],[0.021688373759389,0.062743037939072,-0.008326007053256]],[[0.009687271900475,0.066440165042877,0.017656581476331],[0.095106244087219,-0.012420036830008,0.093698471784592],[-0.023896023631096,0.09098295122385,-0.011936976574361]],[[0.060279663652182,-0.067827843129635,0.045582227408886],[0.044661104679108,-0.059424579143524,0.0014134627999738],[0.014858081005514,-0.021053925156593,-0.0068830470554531]],[[0.07204695045948,-0.0067856209352612,-0.063566602766514],[-0.073645673692226,0.0064467121846974,-0.013723068870604],[-0.0065736621618271,0.007888657040894,-0.0056932349689305]],[[-0.076914891600609,0.038899663835764,-0.041611317545176],[0.037101987749338,0.036343820393085,0.0011030043242499],[-0.05155398696661,0.044797901064157,0.015428939834237]],[[0.087709486484528,-0.029558202251792,0.038133926689625],[0.055019218474627,0.021724704653025,0.0091392248868942],[-0.10100718587637,0.15156216919422,-0.031132198870182]],[[0.054003488272429,0.01073294878006,-0.052793797105551],[0.020032314583659,0.03625538572669,0.043623302131891],[-0.017468614503741,-0.0078616980463266,-0.0023679262958467]],[[-0.079075008630753,0.0069609060883522,-0.0097768222913146],[-0.019610753282905,-0.044396039098501,0.11077085882425],[0.10321027040482,0.023335572332144,0.054137703031301]],[[0.014672449789941,-0.040613684803247,-0.027917481958866],[0.084823973476887,-0.027748616412282,0.034941282123327],[0.013455156236887,-0.010915802791715,-0.076091729104519]],[[-0.032465800642967,-0.040417272597551,0.01701271161437],[-0.07603669911623,-0.0065585202537477,-0.01924573816359],[-0.066821955144405,0.055139284580946,-0.037382647395134]],[[-0.038862787187099,-0.022006032988429,0.12047720700502],[0.031793992966413,0.016809169203043,0.00658203009516],[0.016564225777984,0.066099025309086,0.013828508555889]],[[-0.062492102384567,0.026101039722562,0.045827262103558],[0.015990005806088,-0.030187154188752,0.045191861689091],[-0.018935173749924,0.075693659484386,-0.025031063705683]],[[-0.077357605099678,0.031238062307239,0.042547456920147],[-0.059531092643738,-0.047147389501333,0.034668557345867],[0.0041526076383889,-0.012648995965719,0.0098084351047873]],[[-0.062635466456413,0.059197083115578,-0.081149101257324],[-0.067062392830849,0.011976305395365,-0.00092529866378754],[0.064676314592361,0.021416587755084,0.01563305594027]],[[0.054147634655237,0.047630287706852,-0.050391882658005],[-0.030526865273714,0.086437962949276,-0.0071733663789928],[0.086277008056641,0.066983282566071,0.010020490735769]],[[0.055783458054066,-0.02926929295063,0.10379898548126],[-0.12340766936541,0.018978182226419,0.01013639755547],[-0.0019024088978767,-0.031337272375822,0.015400779433548]],[[-0.064566396176815,-0.015638500452042,-0.04962220415473],[-0.069147415459156,0.015561208128929,0.075317583978176],[-0.027321249246597,-0.056051947176456,-0.11901649087667]],[[-0.0042983451858163,0.026035126298666,0.056156169623137],[-0.051197804510593,-0.018838616088033,0.075510561466217],[0.014683520421386,0.012096844613552,0.085397936403751]],[[0.019968472421169,0.043988734483719,-0.02041501738131],[-0.0029932491015643,0.0085350209847093,0.0211743991822],[-0.014574026688933,-0.021270154044032,0.10010740906]],[[0.054808255285025,0.066049993038177,0.050011496990919],[0.14682574570179,0.012007029727101,0.085201896727085],[0.04263823851943,0.080427341163158,0.085618153214455]],[[0.018803521990776,-0.0018732320750132,0.019746966660023],[-0.051105044782162,0.027923554182053,0.061609964817762],[-0.011059280484915,0.1073629334569,0.036095146089792]],[[0.00058347202138975,0.098411098122597,0.019423289224505],[0.054919954389334,0.039888825267553,0.038163404911757],[0.05206873267889,-0.066851228475571,-0.033879827708006]],[[0.043394297361374,-0.0015968405641615,0.072080790996552],[-0.033697102218866,0.076017990708351,-0.07056150585413],[-0.084905922412872,-0.085940465331078,0.032609362155199]],[[-0.026656072586775,0.10319066047668,-0.032296780496836],[-0.017052141949534,0.028104772791266,0.015493215993047],[0.036962632089853,-0.041106879711151,0.019765667617321]],[[-0.012028253637254,-0.080542579293251,0.014884639531374],[-0.087125986814499,0.037984814494848,-0.093014240264893],[-0.049896221607924,-0.065819337964058,-0.027389846742153]],[[-0.03074362501502,0.028287140652537,-0.026919566094875],[0.019051607698202,-0.032326236367226,0.028358895331621],[0.0039257206954062,0.10611601173878,0.063596025109291]],[[-0.0038171850610524,0.0093149915337563,-0.0022349020000547],[-0.0077480794861913,-0.069379709661007,-0.063406676054001],[-0.084119543433189,0.0072905928827822,0.018482247367501]],[[0.068572096526623,-0.033702023327351,0.066919684410095],[-0.037870567291975,0.062672078609467,0.05296128988266],[-0.0039240103214979,0.0037188939750195,-0.045970670878887]],[[0.17030440270901,0.0584412291646,0.10088569670916],[0.066652148962021,0.11309505999088,0.096472881734371],[-0.024745762348175,0.12722037732601,0.0017121403943747]],[[0.02103365957737,0.018237046897411,0.091679766774178],[-0.031407959759235,-0.071696631610394,0.015443195588887],[0.11756061762571,-0.00090243923477829,-0.047457616776228]],[[0.0052904118783772,0.09308136254549,0.04376882687211],[0.064840227365494,-0.011192673817277,-0.031462151557207],[-0.0050212685018778,0.038502752780914,0.034511111676693]],[[-0.029224881902337,-0.03075523301959,0.019553225487471],[0.075351320207119,0.0093809273093939,0.0065202889963984],[0.0075452853925526,0.0023678042925894,0.053699351847172]],[[0.005045703612268,0.05731800198555,-0.0034055928699672],[0.047348026186228,0.055512178689241,-0.036361787468195],[0.034207224845886,-0.043198369443417,-0.0013978435890749]],[[0.090820498764515,0.066179156303406,-0.039943605661392],[-0.0041358885355294,-0.061706844717264,-0.024469846859574],[0.078710339963436,0.073090732097626,-0.056564509868622]],[[0.0013947688275948,-0.020220408216119,-0.016252011060715],[-0.012094762176275,0.012236013077199,-0.027824675664306],[-0.050578903406858,-0.054696097970009,-0.038130335509777]],[[0.093100570142269,0.023518579080701,0.057088512927294],[0.041394554078579,0.027985095977783,-0.0060067321173847],[0.007871369831264,0.068202689290047,0.025027258321643]],[[0.0027605779469013,0.019459739327431,0.030961098149419],[0.017154524102807,0.011986309662461,0.058114416897297],[-0.0073680216446519,-0.016579648479819,0.045918148010969]],[[-0.056807149201632,0.076622903347015,0.043629016727209],[-0.024447955191135,-0.063127651810646,-0.0074677080847323],[-0.027230389416218,0.0084157334640622,-0.037240799516439]],[[0.0130984634161,-0.039087746292353,0.0034710720647126],[0.058416850864887,0.034587882459164,0.07201736420393],[0.034361831843853,0.023667752742767,0.062074109911919]],[[0.052461851388216,0.052359599620104,-0.011217403225601],[-0.037317983806133,0.02509948797524,-0.0065415757708251],[0.0061224638484418,-0.057886436581612,0.0046924334019423]],[[-0.039573457092047,-0.024869618937373,-0.010953322052956],[-0.029286796227098,-0.064709790050983,0.0348338522017],[-0.085265569388866,0.059961251914501,-0.017338613048196]],[[-0.025319812819362,0.082035891711712,-0.023373456671834],[0.049240980297327,0.030076405033469,-0.050765700638294],[0.038556523621082,0.036323558539152,0.062991231679916]],[[0.029322579503059,0.071417167782784,-0.073527857661247],[-0.046032559126616,0.098548218607903,0.052081357687712],[-0.0088519090786576,-0.03951396048069,0.051657415926456]],[[0.097806304693222,0.053569812327623,0.03460531681776],[-0.0041386187076569,0.050492469221354,0.00088601431343704],[-0.01444495934993,-0.019667560234666,0.043220542371273]],[[0.093892127275467,-0.047829985618591,0.012982815504074],[-0.0045084003359079,0.053698662668467,0.11071443557739],[0.005167864728719,0.019639227539301,0.043490033596754]],[[-0.030100122094154,-0.047692939639091,0.059847570955753],[0.061199527233839,-0.0020832261070609,0.053454454988241],[-0.0081410938873887,-0.010877856053412,0.0071840290911496]],[[0.049211233854294,0.064367510378361,-0.043135888874531],[-0.015129460953176,-0.030199198052287,-0.040120556950569],[-0.031562577933073,0.10449959337711,0.013030136935413]],[[-0.039224114269018,-0.1259344369173,0.0042106853798032],[-0.070756897330284,-0.030262673273683,-0.016553672030568],[0.028556613251567,-0.0028756561223418,-0.055120285600424]],[[-0.031822767108679,-0.017813390120864,-0.063647411763668],[-0.022395644336939,-0.072792626917362,0.038036778569221],[0.0033062237780541,0.031197596341372,-0.019244043156505]],[[0.11753027141094,0.051252149045467,-0.021462766453624],[0.087447017431259,0.060131128877401,0.011991707608104],[0.046000361442566,0.063951052725315,0.038218133151531]],[[-0.01765207387507,0.024929638952017,-0.016452189534903],[0.092552319169044,0.018722116947174,0.058608412742615],[-0.054204422980547,0.039857804775238,-0.050948545336723]],[[0.050822932273149,-0.066004700958729,-0.034926660358906],[0.016721466556191,-0.014451315626502,-0.031897224485874],[-0.03155816718936,-0.054497826844454,-0.076165124773979]],[[0.096637666225433,-0.033419258892536,0.033987656235695],[-0.078892059624195,0.1757205426693,0.050707258284092],[-0.048581816256046,-0.054638154804707,-0.064525127410889]],[[0.03789135441184,0.031896363943815,0.048573393374681],[0.0095652444288135,-0.015867406502366,-0.0036868965253234],[-0.004787742625922,0.014822055585682,0.021495895460248]],[[-0.063377648591995,0.0064202779904008,0.013698295690119],[0.0020918771624565,-0.072116695344448,-0.046334277838469],[-0.044997680932283,-0.0067333695478737,0.027224229648709]],[[0.070803970098495,-0.018717966973782,0.069788843393326],[0.080711342394352,0.0039345161058009,-0.030657613649964],[-0.051218997687101,-0.011660831980407,0.071022048592567]],[[-0.037226479500532,0.053883988410234,0.086576782166958],[0.073212191462517,0.054238397628069,0.080681942403316],[0.061717160046101,0.075537443161011,0.01600893959403]],[[-0.017494466155767,-0.096961930394173,0.012695838697255],[0.1307040899992,-0.056419104337692,0.023413609713316],[0.078068718314171,0.04354502633214,0.00058899843133986]],[[0.0015571764670312,-0.0087536759674549,0.0027156076394022],[0.015107075683773,-0.010172677226365,0.03987118974328],[-0.098972804844379,0.0057911793701351,0.0041986159048975]],[[0.039323151111603,0.083726711571217,-0.0090542621910572],[0.043919015675783,-0.074656642973423,0.0033524122554809],[-0.083192616701126,-0.0158920455724,0.031150531023741]],[[0.029493413865566,0.034559719264507,0.084989972412586],[0.04346390068531,-0.065287955105305,-0.0093376096338034],[-0.031705837696791,0.023086233064532,-0.0010999152436852]],[[-0.10772879421711,0.045872397720814,-0.027424789965153],[-0.027068192139268,-0.0077906809747219,-0.0073867407627404],[-0.054106798022985,0.034074939787388,0.0007002690108493]],[[0.18979544937611,0.038573645055294,-0.059233620762825],[-0.0031810901127756,0.069480128586292,-0.036680374294519],[0.10930164158344,-0.01277568936348,-0.017666604369879]],[[0.011869243346155,-0.0082201873883605,-0.047398518770933],[0.065644808113575,0.021972937509418,-0.015380252152681],[0.021046079695225,0.0038206127937883,0.053051099181175]],[[0.041464895009995,0.019039668142796,0.074170924723148],[0.027493538334966,-0.034348484128714,0.071113087236881],[0.049880504608154,0.026966849341989,-0.045098703354597]],[[0.016849398612976,0.026466771960258,0.0081419395282865],[0.0016431057592854,0.041002657264471,0.0052466061897576],[0.042210444808006,0.031459659337997,-0.010787754319608]],[[0.1172066628933,-0.018025567755103,-6.218421185622e-05],[0.10927536338568,0.023791119456291,0.051631011068821],[0.053486578166485,-0.047448039054871,-0.017281446605921]],[[0.078499376773834,-0.054850071668625,0.020557822659612],[0.10091255605221,-0.039614755660295,-0.0081785945221782],[0.012310391291976,0.030721267685294,0.0040883412584662]],[[0.025133494287729,-0.023232070729136,0.076816968619823],[-0.019692156463861,0.021979903802276,-0.049103759229183],[0.040472518652678,-0.067863412201405,0.053652327507734]],[[-0.030944395810366,0.055257432162762,0.0041471333242953],[0.0028363217134029,0.086842253804207,0.0036122782621533],[-0.030544355511665,-0.03137144818902,0.099747285246849]],[[0.045429464429617,-0.0064572361297905,0.0036051624920219],[0.007452430203557,0.1110741943121,0.029079558327794],[-0.061180137097836,-0.040984753519297,0.036271546036005]],[[-0.044932477176189,-0.0040664132684469,0.036303166300058],[0.013461473397911,0.011122922413051,0.0041437637992203],[0.098373718559742,0.075460225343704,-0.027900397777557]],[[0.039357800036669,0.037783179432154,0.0022543065715581],[0.046309471130371,0.11599764972925,-0.013734341599047],[-0.092143550515175,0.054874334484339,0.13038395345211]],[[0.02054032124579,-0.072530321776867,0.012570914812386],[0.034003958106041,-0.080658122897148,-0.10818616300821],[0.10158886015415,0.099420771002769,-0.0023786523379385]],[[0.0035215988755226,0.035203527659178,0.047139171510935],[0.037712585180998,-0.014039892703295,0.037038039416075],[0.13050790131092,0.10254089534283,0.027495635673404]],[[0.013960615731776,-0.028239581733942,-0.029628224670887],[-0.0168851390481,0.014536828733981,0.021982988342643],[-0.019621131941676,-0.0504370033741,0.044037021696568]]],[[[-0.016834853217006,0.019443174824119,0.013751013204455],[0.037929520010948,0.038894310593605,0.0030323318205774],[-0.051665041595697,0.0028289700858295,-0.066443122923374]],[[0.020579691976309,0.051853217184544,0.057547502219677],[0.020001139491796,-0.0079059209674597,0.054154843091965],[-0.028675286099315,-0.019649133086205,-0.027097571641207]],[[-0.0035687545314431,0.0047310516238213,0.13126391172409],[-0.018101131543517,-0.072842314839363,-0.046129692345858],[-0.035004410892725,-0.029391327872872,0.046179573982954]],[[-0.0049529746174812,0.014877916313708,0.0062864483334124],[-0.010031961835921,-0.0047833765856922,0.036204699426889],[0.0307851806283,-0.022652408108115,-0.067951835691929]],[[-0.018616719171405,-0.045042708516121,0.040301229804754],[-0.039184626191854,-0.048556908965111,0.023065313696861],[0.017636040225625,0.04721774533391,-0.026703543961048]],[[0.033486690372229,0.028830310329795,0.00487572979182],[-0.024613428860903,0.0036816496867687,0.038316786289215],[-0.053345788270235,0.014093953184783,0.004390805028379]],[[0.011378203518689,-0.042239438742399,-0.03858207911253],[0.0055973222479224,0.006623163819313,0.038945507258177],[-0.063166856765747,0.031949508935213,0.047498252242804]],[[0.023977313190699,0.0059770974330604,0.00073364702984691],[0.0041475789621472,0.045261606574059,0.036591865122318],[-0.054900068789721,0.013989678584039,-0.012898150831461]],[[-0.05076614767313,-0.055752288550138,0.052847888320684],[0.02797525934875,0.007220181170851,-0.0035613877698779],[0.026274597272277,0.042045701295137,-0.077259711921215]],[[0.00099374214187264,0.01471777074039,-0.041379489004612],[0.0034855203703046,0.0032397161703557,0.0030588782392442],[-0.0073850555345416,0.0068729519844055,0.0048120194114745]],[[0.022038100287318,0.08976273983717,-0.0076980539597571],[0.0029199167620391,-0.014815513975918,0.0097239390015602],[-0.016632772982121,-0.10436636209488,-0.0068127228878438]],[[0.044533167034388,0.017225420102477,0.017598675563931],[0.030514642596245,-0.064796462655067,-0.037294562906027],[-0.031774539500475,0.022895481437445,0.044569987803698]],[[-0.013194153085351,-0.037101503461599,-0.0071021737530828],[0.02667005173862,-0.050540737807751,0.014610959216952],[-0.00091928674373776,0.046609934419394,-0.01561834756285]],[[-0.012696613557637,0.068275481462479,-0.023675689473748],[0.04140729829669,-0.034587562084198,-0.011915666982532],[0.019745651632547,-0.0042193131521344,0.019129393622279]],[[0.048014402389526,-0.029226494953036,-0.024913975968957],[-0.034215196967125,0.071124002337456,-0.046456407755613],[0.068168751895428,0.037543591111898,-0.010055294260383]],[[-0.010337044484913,0.0083663370460272,-0.0077590476721525],[0.042173307389021,0.047240570187569,0.030442632734776],[-0.022289033979177,0.050118196755648,0.057947255671024]],[[0.0030258207116276,0.040964361280203,0.022393759340048],[0.068370521068573,-0.037694171071053,-0.034176230430603],[0.024900820106268,0.0012219068594277,-0.043404586613178]],[[0.036399245262146,0.028955612331629,-0.019400456920266],[0.016635892912745,-0.045108016580343,-0.048928320407867],[0.013249807991087,0.054058812558651,0.010848491452634]],[[0.076510906219482,0.010457206517458,-0.00091008056188002],[-0.0074476692825556,-0.011496811173856,0.014172052033246],[0.016679063439369,-0.023656347766519,0.034202255308628]],[[-0.01471905503422,-0.0032913531176746,0.013154182583094],[0.087062075734138,0.044164415448904,-0.0022917941678315],[0.0079387743026018,-0.025313176214695,-0.03145495429635]],[[-0.0030201396439224,0.018349399790168,-0.043494462966919],[0.015532358549535,0.018041083589196,-0.066681489348412],[0.0594895593822,0.020443212240934,0.022975616157055]],[[0.055404640734196,-0.029763340950012,0.013055829331279],[-0.011227006092668,0.021409094333649,0.044907931238413],[-0.019593989476562,0.028515473008156,0.012365290895104]],[[-0.051265358924866,-0.033509824424982,0.017178332433105],[-0.0073158568702638,0.022517742589116,0.037910062819719],[0.030189907178283,-0.017003901302814,-0.0019625066779554]],[[-0.010184658691287,0.053199101239443,0.1165042668581],[-0.034508276730776,-0.00077496934682131,0.043402779847383],[-0.084453672170639,0.016527308151126,-0.057185813784599]],[[0.036403190344572,-0.010519186966121,0.081097863614559],[-0.022693574428558,-0.058617226779461,0.022925199940801],[0.049497075378895,-0.04287975654006,0.043744448572397]],[[0.067844338715076,-0.0082362927496433,0.044160082936287],[-0.019874524325132,0.02504694648087,0.077708207070827],[0.013358425348997,0.011713685467839,-0.064555279910564]],[[-0.018632214516401,-0.023106029257178,-0.03212670609355],[-0.013103665784001,0.076343588531017,0.034361336380243],[-0.015169237740338,0.073685333132744,0.024320153519511]],[[-0.0047389045357704,-0.029421992599964,0.14311900734901],[-0.011705541983247,0.0080937733873725,-0.011924305930734],[-0.021232785657048,-0.039674874395132,0.0051583773456514]],[[0.024330891668797,-0.052329767495394,0.0228052418679],[-0.05355941131711,0.027471218258142,0.010376211255789],[-0.051201652735472,-0.085481755435467,0.11514675617218]],[[0.074524268507957,-0.027361281216145,-0.018922025337815],[0.013499799184501,-0.061428099870682,-0.075428135693073],[0.00080120732309297,0.06336072832346,-0.012133219279349]],[[0.0011797986226156,-0.024452026933432,0.093301460146904],[0.0033212376292795,0.002724023303017,0.059955276548862],[-0.020038181915879,0.0095506059005857,-0.029574856162071]],[[0.052709918469191,0.0092645501717925,-0.037775825709105],[-0.032196741551161,0.031876742839813,0.066983833909035],[-0.026892222464085,0.044322207570076,0.055970203131437]],[[-0.019751185551286,-0.021811572834849,0.052790768444538],[0.010547838173807,-0.0049097775481641,-0.016732836142182],[0.0092082368209958,0.03053692728281,-0.078739918768406]],[[0.051536291837692,-0.050661716610193,0.030349718406796],[0.0067273937165737,-0.0079725841060281,-0.044769175350666],[0.05986800417304,0.0091815199702978,-0.029729777947068]],[[-0.032681282609701,-0.044559765607119,0.0035021328367293],[0.014542745426297,0.037692606449127,0.010911709628999],[0.031396478414536,-0.028763614594936,0.049931101500988]],[[0.025427531450987,-0.0019375893753022,0.013510808348656],[-0.091229073703289,-0.035432953387499,-0.013674918562174],[0.039584636688232,0.0039471285417676,0.074027262628078]],[[0.0035094604827464,0.069196805357933,-0.010886770673096],[0.029567943885922,-0.021588139235973,0.0020388250704855],[-0.025647934526205,-0.045535024255514,0.047450821846724]],[[0.029862156137824,-0.068188406527042,0.024111956357956],[0.0052539343014359,-0.0046611921861768,0.01500575710088],[0.01386412512511,-0.04094872623682,0.031620308756828]],[[-0.030956944450736,0.043505571782589,-0.017993861809373],[0.08503170311451,-0.058403015136719,0.018678080290556],[-0.020517783239484,-0.073569156229496,0.013791390694678]],[[-0.021220853552222,0.088165491819382,-0.0026482092216611],[0.049165811389685,0.059200398623943,-0.038576848804951],[0.026193244382739,0.092528559267521,-0.013177801854908]],[[0.0046791937202215,-0.0076655247248709,-0.0085905529558659],[-0.016455229371786,0.021216450259089,0.066899962723255],[0.016415128484368,0.023970367386937,-0.015020918101072]],[[-0.039832420647144,0.11375357955694,-0.0032855414319783],[0.013386021368206,0.0616061873734,-0.01039254013449],[-0.02293231151998,-0.037139013409615,-0.047261718660593]],[[0.034324657171965,0.029518337920308,-0.011733083054423],[0.015104996040463,-0.076096877455711,0.027586679905653],[0.060093682259321,0.015845129266381,-0.017169998958707]],[[0.061637409031391,0.010354249738157,-0.053018338978291],[-0.033683784306049,0.046150181442499,-0.0074086794629693],[-0.0047838212922215,0.013707228936255,-0.038302794098854]],[[0.021009303629398,-0.040585931390524,0.026896640658379],[0.0097893960773945,0.0039690742269158,0.024588741362095],[-0.0051556783728302,-0.078497990965843,-0.0021027997136116]],[[-0.062917329370975,-0.033620733767748,0.079211160540581],[0.01452258694917,0.013062125071883,-0.023129677399993],[-0.027844730764627,-0.0090218000113964,0.040447991341352]],[[-0.0051631894893944,-0.042419124394655,-0.029228774830699],[0.016744535416365,0.014023620635271,0.025227911770344],[-0.027534218505025,-0.026973972097039,0.051814544945955]],[[0.059915773570538,-0.031115537509322,0.0049973437562585],[-0.050051596015692,-0.015062446705997,-0.011006386950612],[0.02207063138485,-0.010861675255001,0.0046069887466729]],[[0.019169377163053,-0.063844569027424,-0.027832623571157],[0.011434556916356,-0.037858594208956,-0.078178383409977],[-0.081630818545818,-0.0047068586573005,-0.014762783423066]],[[-0.013846195302904,0.018193647265434,0.0071208239533007],[0.034867662936449,0.05270641297102,0.073429599404335],[-0.0037099663168192,0.0017573612276465,-0.046222217381001]],[[0.042203973978758,-0.045090395957232,0.0057095144875348],[0.043606352061033,0.010494406335056,-0.10062229633331],[-0.033878862857819,0.013646569103003,0.048534978181124]],[[0.020155195146799,-0.038779251277447,-0.0013921743957326],[0.06012050062418,0.013072817586362,0.032343465834856],[0.040204204618931,0.0056570693850517,0.012053941376507]],[[0.064368180930614,-0.001759763690643,0.023861292749643],[0.045151945203543,0.058319505304098,-0.06480661034584],[0.041413806378841,-0.051436573266983,-0.038748886436224]],[[-0.019470997154713,0.022818660363555,0.071128480136395],[-0.10698832571507,0.089060299098492,0.032411269843578],[-0.047601945698261,0.073494218289852,-0.069526195526123]],[[0.0061246622353792,-0.0013956893235445,0.057177610695362],[0.04430166631937,-0.038443893194199,0.024141313508153],[0.0033214145805687,0.07069169729948,0.021017350256443]],[[-0.033885821700096,0.0056635877117515,0.0043596173636615],[-0.0065262159332633,0.023221202194691,0.032311528921127],[0.038699693977833,0.012919785454869,-0.0094570852816105]],[[0.014055827632546,0.033317089080811,-0.03367381170392],[-0.015419406816363,0.0081108566373587,0.038365844637156],[0.038399182260036,-0.018036998808384,-0.026984121650457]],[[0.055862732231617,0.0055880635045469,-0.024742696434259],[0.014895132742822,-0.044250413775444,0.01139912661165],[0.014585298486054,-0.040319286286831,-0.011751209385693]],[[-0.03955926373601,0.01691566221416,0.027432842180133],[-0.016382964327931,-0.020116915926337,0.037096608430147],[0.066874377429485,0.0070662396028638,-0.050114162266254]],[[0.0079046925529838,0.10685691982508,0.0029823810327798],[0.0010564067633823,0.075740307569504,-0.058691024780273],[-0.024324802681804,0.049198858439922,0.0015622797654942]],[[0.054355911910534,0.05163349211216,-0.038143020123243],[0.028340730816126,0.057058803737164,0.0046393289230764],[-0.0079825995489955,0.0094339177012444,-0.046390868723392]],[[0.0094391601160169,-0.036596275866032,-0.031784556806087],[0.033822424709797,-0.04216767847538,0.0071752090007067],[-0.017701655626297,-0.0093962028622627,0.034121036529541]],[[-0.056557476520538,0.03000782802701,-0.054397858679295],[0.015407090075314,-0.039521880447865,-0.026469184085727],[0.0092568108811975,-0.017776992172003,-0.016947358846664]],[[-0.0089434310793877,0.026047140359879,0.027601327747107],[0.014590975828469,0.074208341538906,-0.056807395070791],[0.018210710957646,-0.00014291099796537,-0.031133512035012]],[[-0.0096263280138373,0.0025224923156202,-0.0045126560144126],[0.047709736973047,0.012146113440394,0.027045641094446],[0.021813472732902,0.078981406986713,-0.03992872685194]],[[-0.023862145841122,-0.0071233976632357,0.071055948734283],[-0.068577989935875,0.014941977337003,-0.08129271119833],[0.048486806452274,0.044616144150496,-0.044607106596231]],[[0.016442429274321,-0.0028971673455089,0.074761435389519],[0.072776086628437,-0.054554898291826,0.018709944561124],[0.056331150233746,0.023062804713845,0.0034558144398034]],[[0.065802283585072,0.050227474421263,0.015924634411931],[0.059440318495035,0.045193698257208,0.003048297483474],[0.045995857566595,-0.049269195646048,-0.027666792273521]],[[0.0054895272478461,0.028409237042069,-0.07619546353817],[-0.022826729342341,0.044965393841267,-0.036177381873131],[-0.063952833414078,-0.003514138283208,-0.023754073306918]],[[0.10452658683062,0.014316729269922,0.010097517631948],[-0.0089453775435686,-0.028812726959586,0.026323460042477],[0.11600124835968,-0.053874149918556,0.022593976929784]],[[0.025249691680074,0.0074596181511879,-0.0017476063221693],[0.0028758912812918,0.075834274291992,0.019964380189776],[-0.01967716217041,0.012301100417972,-0.010070341639221]],[[0.036480642855167,-0.057038627564907,0.055608958005905],[-0.018182033672929,0.015570922754705,0.048290181905031],[-0.03386988863349,0.04217304289341,-0.074710376560688]],[[0.066806569695473,-0.02875055372715,0.048675734549761],[0.077365912497044,-0.053908180445433,0.0089898547157645],[-0.0052310554310679,0.017637867480516,0.0026137717068195]],[[0.051461353898048,-0.059717025607824,0.027048729360104],[-0.01415894459933,0.033602811396122,0.064684957265854],[-0.016446808353066,-0.038336042314768,-0.064054518938065]],[[0.046055290848017,0.028280152007937,-0.010938011109829],[-0.019409786909819,0.020293645560741,-0.0011778631014749],[0.0079361395910382,0.03791930153966,0.054619733244181]],[[0.10378844290972,-0.020515091717243,-0.023099232465029],[0.061797507107258,0.011097953654826,-0.013983611017466],[0.034043218940496,0.059392862021923,-0.020510068163276]],[[0.0044236988760531,-0.0014120145933703,0.029401050880551],[0.057269562035799,-0.036125771701336,-0.099133871495724],[-0.00043286313302815,0.043262932449579,0.00847502425313]],[[0.04047093167901,0.090806998312473,0.062459569424391],[0.050673924386501,-0.064909413456917,0.035190001130104],[-0.060126394033432,0.0086035300046206,-0.032657828181982]],[[-0.0076516079716384,0.049589674919844,-0.030166363343596],[-0.023827781900764,-0.013798750936985,0.075242683291435],[0.014776647090912,0.0047992956824601,-0.017280608415604]],[[-0.031753174960613,-0.021929802373052,-0.070636413991451],[-0.017513755708933,-0.075375638902187,-0.045737523585558],[0.032613314688206,0.10396657884121,-0.05374514311552]],[[0.073708936572075,-0.05785308778286,-0.047507744282484],[0.050774324685335,0.01637939363718,0.033165816217661],[-0.047295499593019,0.095407456159592,0.061710242182016]],[[-0.0098844887688756,-0.010051713325083,-0.021376516669989],[0.0013108341954648,0.0037549016997218,-0.05281838029623],[0.024119174107909,-0.011448020115495,0.038529254496098]],[[0.039561912417412,0.0029023056849837,-0.05564834177494],[0.015475475229323,-0.058339219540358,-0.047518383711576],[-0.037148363888264,0.025529334321618,0.0038755398709327]],[[0.013243118301034,-0.069212421774864,0.00052701239474118],[0.043207578361034,-0.022955575957894,0.072886094450951],[0.095941416919231,0.023543840274215,-0.026346005499363]],[[-0.0062593198381364,0.06041057035327,0.045744556933641],[-0.045144356787205,0.020641587674618,0.030454197898507],[0.033178307116032,0.017519133165479,-0.038493368774652]],[[-0.014687172137201,-0.10553527623415,-0.045994225889444],[0.039945062249899,-0.055051986128092,-0.018562575802207],[0.022656664252281,0.074518777430058,0.076402232050896]],[[0.023824887350202,-0.037442613393068,-0.042587108910084],[0.050785299390554,0.026136610656977,-0.078925520181656],[0.0021903978195041,-0.0029263983014971,-0.010166808962822]],[[0.05655936524272,-0.041747596114874,0.069730691611767],[-0.0034706180449575,0.0030763209797442,-0.043028082698584],[0.0031632108148187,0.059584498405457,-0.0022685257717967]],[[0.091861844062805,-0.035044614225626,0.018272442743182],[0.071942955255508,-0.011908660642803,-0.017262171953917],[-0.051700625568628,0.028439601883292,-0.00012734222400468]],[[-0.041023556143045,-0.010575700551271,-0.046036571264267],[-0.033380836248398,0.064676888287067,0.0088634388521314],[0.075505144894123,-0.02361873164773,0.046837255358696]],[[-0.0087809385731816,0.01349975168705,-0.037065722048283],[0.04357735440135,-0.021449603140354,0.021037088707089],[0.010618667118251,0.033547639846802,0.050727363675833]],[[-0.059731367975473,-0.0040307599119842,0.01557919755578],[-0.086704447865486,-0.021053999662399,0.044186767190695],[-0.033031810075045,0.014736587181687,0.024025714024901]],[[0.060304056853056,0.071360275149345,-0.00025261781411245],[0.010140326805413,0.010468975640833,0.031425390392542],[0.060080420225859,-0.023785427212715,-0.0037991013377905]],[[-0.033115025609732,0.0080936094745994,0.03946428000927],[0.083857722580433,0.031577866524458,-0.029829204082489],[-0.047874711453915,0.079500861465931,-0.0047550508752465]],[[0.060862690210342,-0.050434093922377,-0.038043506443501],[-0.05685630813241,-0.0017388617852703,-0.010393901728094],[0.037582580000162,0.066855765879154,0.0082481084391475]],[[-0.010299555957317,0.040483415126801,0.031298574060202],[-0.034474726766348,-0.032353464514017,0.036918327212334],[-0.068480126559734,-0.06388782709837,-0.0051063704304397]],[[0.023871153593063,0.0055588260293007,-0.075452342629433],[-0.095741763710976,0.01866190880537,0.018911609426141],[0.062152251601219,0.059133626520634,-0.029784938320518]],[[-0.039177887141705,0.087323859333992,-0.044246982783079],[-0.019534749910235,-0.016693266108632,0.014644163660705],[-0.015195510350168,-0.024292143061757,-0.070409022271633]],[[0.038665633648634,-0.018488073721528,0.03324706107378],[-0.040174040943384,0.022801322862506,-0.0068769729696214],[0.054399214684963,0.011500402353704,-0.021001491695642]],[[0.017835406586528,0.017327049747109,-0.064677596092224],[-0.044879648834467,-0.0099753867834806,0.017809337005019],[-0.0099959559738636,-0.029775330796838,-0.0085372943431139]],[[-0.050200905650854,-0.037835162132978,0.026531150564551],[0.068048425018787,0.046151544898748,0.014714377000928],[-0.042610444128513,-0.013925003819168,0.018340557813644]],[[0.024085909128189,-0.014388364739716,0.043489947915077],[-0.010712902992964,-0.03078848682344,0.00085465417942032],[-0.020075805485249,0.0037710356991738,0.026374984532595]],[[-0.014104773290455,-0.00072126334998757,0.019805241376162],[-0.012353640981019,-0.05945361033082,0.033694215118885],[0.0020331339910626,-0.045108020305634,0.029149023815989]],[[0.045206390321255,-0.027325268834829,0.041727993637323],[-0.00466318288818,0.043876547366381,0.034583006054163],[0.0067330901511014,-0.043516922742128,-0.013387336395681]],[[0.079776965081692,0.083990216255188,-0.04153498634696],[0.012183592654765,-0.028285969048738,0.031836777925491],[0.025353740900755,-0.00052307010628283,-0.076957665383816]],[[0.068901970982552,0.061117850244045,0.027393447235227],[0.024433471262455,0.0064433705992997,0.011231688782573],[-0.0073000793345273,0.0034534092992544,0.099079772830009]],[[-0.014784888364375,-0.0018772250041366,0.020954921841621],[0.015790041536093,-0.0061652581207454,-0.043990816920996],[0.040839493274689,0.012933250516653,0.04157854989171]],[[0.019020456820726,-0.0061112917028368,0.009080589748919],[-0.047235175967216,-0.047835420817137,-0.00025461535551585],[0.083571821451187,0.024865804240108,-0.024194575846195]],[[-0.07051595300436,0.00070941518060863,-0.054084490984678],[0.035618174821138,-0.024541137740016,-0.0040078954771161],[0.048560250550508,0.015714999288321,-0.013946327380836]],[[0.0085739251226187,-0.077846378087997,-0.054303649812937],[-0.057445783168077,-0.10125323385,-0.018828948959708],[-0.1049290522933,-0.02677252329886,-0.0049195722676814]],[[0.0085746552795172,0.038926221430302,-0.012859283015132],[0.0081946272403002,0.079258844256401,0.015147227793932],[0.030885165557265,0.1059058830142,-0.03586994856596]],[[-0.044485606253147,-0.013043683953583,0.00662832101807],[-0.00063621992012486,0.01380056142807,0.043799500912428],[0.00072025379631668,-0.0030532754026353,0.04765697568655]],[[0.022515675053,-0.058183945715427,-0.004537629429251],[0.071727439761162,0.078335404396057,0.040864393115044],[-0.025201495736837,0.032909270375967,-0.034833200275898]],[[0.023607464507222,-0.0099736638367176,0.033141475170851],[0.070648618042469,-0.025048537179828,-0.047504767775536],[0.0223921649158,0.015769217163324,-0.058608077466488]],[[0.07154555618763,0.037249870598316,0.017080659046769],[-0.025181485339999,0.0677550137043,-0.076335161924362],[-0.042814813554287,-0.057853668928146,0.0073416866362095]],[[0.012989047914743,0.020061533898115,-0.00315345171839],[-0.083604492247105,0.02256777882576,0.021753285080194],[0.050541721284389,-0.054495193064213,0.028400290757418]],[[-0.048962961882353,0.055677823722363,-0.086259722709656],[0.040511522442102,0.036255583167076,0.023140139877796],[0.02319348976016,-0.01541228685528,0.012029625475407]],[[0.014882537536323,-0.024365367367864,0.041385173797607],[-0.02388097718358,0.0363415107131,0.0033068803604692],[-0.039019592106342,0.054889928549528,0.022322475910187]],[[0.071659222245216,0.021530915051699,-0.024028673768044],[0.11525039374828,0.036848224699497,-0.06676346808672],[-0.010772510431707,-0.0082633076235652,-0.0085317101329565]],[[-0.10902503877878,0.026373555883765,-0.021898685023189],[-0.012098670005798,-0.12243574112654,0.046773392707109],[-0.091747649013996,0.0071695172227919,0.036398220807314]],[[0.087235294282436,0.0023625208996236,0.010122485458851],[-0.012015517801046,0.00099337741266936,-0.0029625971801579],[-0.0061322492547333,-0.0081054475158453,0.012147982604802]],[[-0.025618592277169,0.050601579248905,0.0038077232893556],[-0.014819899573922,-0.00080932839773595,0.048438489437103],[0.014680730178952,-0.018128039315343,0.0033380822278559]],[[0.075087897479534,-0.027870673686266,0.0066079874522984],[0.034486602991819,-0.0047939508222044,-0.071013063192368],[-0.022415861487389,-0.0076913852244616,0.03941748291254]],[[0.0018779750680551,-0.07737060636282,0.043165922164917],[0.042118784040213,0.0029005240648985,-0.040788505226374],[-0.0076324078254402,-0.055370733141899,0.019065961241722]],[[-0.042848255485296,-0.0016056536696851,0.013443818315864],[-0.042584698647261,-0.006912840064615,-0.074695147573948],[-0.010976262390614,0.029736749827862,-0.048599667847157]],[[0.043846603482962,0.035401966422796,0.034103415906429],[0.057081334292889,0.035102386027575,-0.049412611871958],[-0.011552097275853,-0.016577325761318,-0.020611448213458]],[[0.010447644628584,0.014720131643116,0.0007615492795594],[0.0024958930443972,-0.0065438007004559,-0.019617674872279],[-0.024587040767074,0.040119539946318,0.031494341790676]],[[0.053445588797331,0.019175978377461,-0.062713578343391],[0.0055414023809135,-0.0011659353040159,0.044068980962038],[0.084677323698997,0.034754924476147,-0.070986546576023]]],[[[0.44487643241882,-0.030555183067918,-0.064993992447853],[0.18047267198563,-0.21180108189583,-0.075902193784714],[-0.087735824286938,-0.09682235121727,-0.2347460091114]],[[0.14604948461056,-0.097931660711765,0.1566503494978],[-0.11117800325155,-0.080843314528465,-0.014616474509239],[-0.0035792503040284,0.28151142597198,-0.061645448207855]],[[-0.05399214848876,0.021108957007527,0.013359255157411],[-0.080257952213287,0.048485547304153,-0.016710737720132],[-0.096176080405712,-0.027789181098342,0.12824165821075]],[[0.060949500650167,-0.079198502004147,0.07470490783453],[0.021655566990376,-0.053513292223215,0.14560809731483],[0.079036682844162,0.0082726255059242,-0.041680071502924]],[[0.0022204900160432,0.12381722778082,-0.06406058371067],[-0.035439535975456,-0.059172488749027,0.15190188586712],[0.049485340714455,-0.10957716405392,-0.039775229990482]],[[0.062857411801815,-0.068352304399014,0.014573174528778],[-0.045440386980772,-0.078461676836014,0.045885749161243],[-0.002181407995522,-0.019697681069374,-0.11544243991375]],[[-0.069960877299309,0.089881919324398,-0.047363009303808],[-0.013932415284216,-0.026378080248833,0.050093226134777],[0.0086134234443307,-0.04842734336853,-0.015654772520065]],[[-0.11137511581182,0.024332275614142,0.058333691209555],[0.026223797351122,0.0027370397001505,0.045450881123543],[-0.056023523211479,-0.085567466914654,0.07210698723793]],[[-0.15091469883919,0.20897161960602,-0.16099762916565],[0.079920373857021,0.12887085974216,0.045282896608114],[-0.055701225996017,-0.0041382969357073,-0.16783326864243]],[[-0.11200777441263,-0.075781099498272,-0.043128203600645],[-0.033494606614113,0.122643917799,0.10720944404602],[0.0099327117204666,-0.048192787915468,-0.042216178029776]],[[-0.0259257722646,-0.088610038161278,-0.11703822761774],[0.017102671787143,-0.062337413430214,-0.090024940669537],[0.0081895524635911,-0.015682237222791,0.1447848379612]],[[-0.054277218878269,0.27936866879463,-0.0182562507689],[0.024985894560814,0.022097820416093,0.061685971915722],[0.22652991116047,-0.097825445234776,0.10183218866587]],[[-0.21297390758991,0.014223424717784,-0.065100952982903],[-0.14528828859329,0.21468634903431,-0.13528154790401],[-0.095563501119614,-0.016736268997192,0.020414074882865]],[[-0.043255373835564,0.0062816836871207,0.10083471983671],[-0.0077337166294456,-0.090172715485096,-0.13030324876308],[0.043435879051685,0.29798078536987,-0.16540494561195]],[[-0.029214756563306,-0.05045099183917,-0.033917419612408],[0.19212445616722,-0.012572448700666,-0.023050762712955],[0.018025601282716,0.083871230483055,-0.075209528207779]],[[-0.11865144222975,-0.049558062106371,-0.0085637997835875],[0.08078471571207,-0.11906690895557,-0.078735761344433],[-0.040349207818508,0.1645593047142,-0.041827291250229]],[[0.032705027610064,-0.12617518007755,-0.11487306654453],[0.037776589393616,-0.046576958149672,0.043752286583185],[0.082166507840157,-0.078519254922867,-0.030217360705137]],[[0.069199532270432,-0.03926545381546,0.13310560584068],[0.3269644677639,-0.15867665410042,-0.078055873513222],[-0.035863075405359,0.089319966733456,-0.090794518589973]],[[-0.039159256964922,-0.016662528738379,0.10943657159805],[0.034566398710012,-0.20725578069687,0.18548355996609],[-0.12419337779284,0.088145732879639,-0.12164691835642]],[[-0.14166663587093,0.034895021468401,-0.027301233261824],[-0.017013760283589,-0.0099251521751285,0.15719924867153],[-0.15945808589458,0.031606554985046,0.088015995919704]],[[-0.099353656172752,0.007672259118408,-0.0077449264936149],[-0.061394967138767,-0.089102283120155,0.17563040554523],[0.040093943476677,-0.016038276255131,-0.042301960289478]],[[-0.015282429754734,-0.12527358531952,0.050058118999004],[0.034467939287424,-0.028484804555774,0.11754933744669],[0.056461963802576,0.014127161353827,0.0086477752774954]],[[0.12197785824537,0.00098555418662727,0.036913651973009],[0.1681846678257,0.10439663380384,-0.10521862655878],[-0.12472346425056,0.058476068079472,-0.039318718016148]],[[0.09708920866251,-0.24638624489307,0.021663254126906],[0.1881852298975,0.10574070364237,0.02104701474309],[0.041310042142868,0.056603208184242,0.086059764027596]],[[-0.088079817593098,0.12171576172113,0.081042028963566],[0.080169163644314,-0.041849218308926,-0.047958310693502],[0.096377365291119,-0.088909767568111,-0.08165019005537]],[[0.0074999630451202,0.12957759201527,0.0073113148100674],[0.14965865015984,-0.15939621627331,0.0045548309572041],[-0.039774689823389,-0.0028872180264443,-0.04380277171731]],[[0.0030392576009035,-0.20826703310013,0.029790008440614],[-0.013518613763154,-0.017599172890186,0.050911404192448],[-0.037105221301317,-0.062607802450657,0.010964803397655]],[[0.11458487808704,-0.011470725759864,0.019719803705812],[-0.042161002755165,-0.1678529381752,0.089648261666298],[-0.056909523904324,-0.042785637080669,0.17811983823776]],[[-0.1557187885046,-0.058765724301338,-0.058595303446054],[0.19331362843513,0.11165664345026,0.0083774635568261],[-0.12099592387676,0.30524948239326,-0.21539314091206]],[[0.034430723637342,-0.045221403241158,0.073354095220566],[-0.13905382156372,0.03339647129178,0.15359653532505],[-0.032186277210712,0.042532183229923,0.051011595875025]],[[-0.060260370373726,-0.054603181779385,-0.03405587375164],[-0.13967651128769,0.03286599740386,0.0094461068511009],[-0.12752515077591,0.084617279469967,0.058247331529856]],[[0.057073958218098,0.0096502136439085,-0.084827080368996],[0.015221402049065,-0.22051776945591,-0.11772492527962],[-0.0034163617528975,0.0011620856821537,0.063305571675301]],[[-0.056908085942268,0.033863797783852,-0.017365721985698],[-0.051866114139557,-0.11371848732233,0.078437328338623],[0.035846795886755,-0.020247053354979,-0.022261431440711]],[[-0.045663051307201,0.012677224352956,0.085482202470303],[-0.031503189355135,0.015447122044861,-0.10001616925001],[0.17338034510612,0.014396632090211,-0.045317515730858]],[[-0.038732290267944,-0.086494363844395,0.0039281458593905],[-0.19707487523556,0.094681851565838,-0.1244143769145],[-0.030184090137482,-0.11187771707773,-0.036938313394785]],[[-0.1152133718133,-0.029946455731988,0.034233681857586],[-0.010774455964565,-0.15408632159233,0.038403153419495],[0.16683708131313,-0.054611850529909,-0.073753006756306]],[[-0.12946912646294,0.084083192050457,-0.01974262855947],[0.13387086987495,0.063401222229004,-0.036144558340311],[-0.12836821377277,-0.16360571980476,-0.016500098630786]],[[-0.048043128103018,0.10944796353579,-0.050232511013746],[-0.079049728810787,-0.10210225731134,-0.046496223658323],[0.10455016046762,0.14986404776573,0.1184080094099]],[[-0.056933756917715,-0.055185999721289,-0.072928741574287],[-0.051274839788675,-0.08573030680418,-0.016034279018641],[-0.046993549913168,-0.094514176249504,-0.2680656015873]],[[-0.018142506480217,-0.13082407414913,-0.2191152125597],[0.086535841226578,0.061447396874428,-0.040843047201633],[-0.0027543001342565,-0.056056931614876,0.12701639533043]],[[-0.014563218690455,-0.073013730347157,-0.021328162401915],[0.073613688349724,0.03928891941905,-0.081769913434982],[-0.14471824467182,-0.10222177952528,-0.039211835712194]],[[-0.027452183887362,-0.086834259331226,0.1061729863286],[0.03768926858902,0.035752937197685,-0.087146736681461],[0.11083226650953,0.026864141225815,-0.060644287616014]],[[0.13815438747406,-0.1394954174757,0.26553538441658],[-0.034711562097073,0.00163883715868,-0.00083834351971745],[-0.017937360331416,0.01158032938838,-0.12910367548466]],[[0.031360480934381,0.096097201108932,-0.10880418121815],[0.1606587767601,-0.05394696444273,-0.021507384255528],[-0.046385105699301,-0.059312451630831,-0.14354492723942]],[[-0.1082775965333,-0.17100262641907,0.1143164485693],[-0.07326490432024,-0.14757078886032,-0.12659621238708],[0.084037624299526,-0.028081053867936,0.024011569097638]],[[0.004284200258553,-0.014179093763232,0.086999267339706],[-0.001412388519384,0.086009673774242,-0.15320217609406],[0.034103754907846,0.034850742667913,-0.020415367558599]],[[0.040501452982426,-0.10682397335768,0.046753313392401],[-0.13065813481808,0.17799241840839,-0.13595741987228],[-0.13378649950027,0.079086668789387,0.015049539506435]],[[-0.13470926880836,0.022093964740634,-0.12403441220522],[-0.041861228644848,-0.11081769317389,0.091546677052975],[-0.15279701352119,0.019307361915708,-0.11677630245686]],[[-0.13534718751907,0.17511335015297,0.048984263092279],[-0.01879801414907,-0.021586999297142,-0.1006598174572],[0.20100571215153,-0.043446190655231,-0.10687524080276]],[[-0.010870664380491,-0.092645764350891,-0.00061727175489068],[-0.092465989291668,-0.054690178483725,-0.04120247811079],[0.14059230685234,-0.20794703066349,-0.089748844504356]],[[-0.084166444838047,-0.0088646067306399,0.051238529384136],[-0.10067188739777,-0.10823086649179,0.0035322727635503],[-0.030880652368069,-0.022713467478752,0.11050551384687]],[[-0.039828505367041,0.0055239661596715,0.0075000734068453],[-0.019030071794987,0.19562055170536,-0.19680406153202],[0.074946753680706,0.057069391012192,0.010297825559974]],[[0.068902045488358,0.14736178517342,-0.03048556111753],[0.082450419664383,-0.24444687366486,-0.055028233677149],[-0.088172741234303,-0.011289107613266,0.034294866025448]],[[0.087933227419853,0.07231979817152,-0.12481022626162],[-0.031165786087513,0.12083990871906,0.0011486995499581],[0.046493820846081,-0.056707117706537,0.049952778965235]],[[0.065522894263268,0.13591141998768,0.21055851876736],[-0.040540885180235,-0.19565579295158,0.055033221840858],[-0.067758493125439,0.029581677168608,0.090998083353043]],[[-0.037878826260567,-0.029235588386655,0.04723547399044],[-0.023902714252472,-0.0022538444027305,-0.0019826411735266],[-0.12715335190296,-0.075250819325447,-0.0038411465939134]],[[0.14889600872993,0.0050448104739189,0.038770917803049],[0.077943131327629,-0.051821868866682,-0.034329663962126],[-0.10130961239338,-0.057703509926796,0.07970666885376]],[[0.022768208757043,0.0043674679473042,-0.15227262675762],[-0.16280245780945,0.014531440101564,-0.019092001020908],[-0.066519103944302,0.097062759101391,-0.11673532426357]],[[0.02801177278161,-0.021580815315247,-0.066082134842873],[-0.04921293258667,-0.020786710083485,-0.10595381259918],[-0.053353846073151,-0.18424092233181,-0.0632039681077]],[[-0.15370741486549,-0.061730720102787,-0.047710951417685],[0.10896790772676,-0.058268580585718,0.14826583862305],[0.012882855720818,-0.056137971580029,0.032107517123222]],[[-0.084508962929249,0.034687712788582,-0.028342867270112],[-0.20012924075127,-0.0082623437047005,-0.0016717031830922],[0.18293955922127,-0.10867696255445,-0.070107653737068]],[[-0.22587542235851,-0.062379129230976,0.045969862490892],[-0.19252844154835,-0.018516510725021,0.062357541173697],[0.15809771418571,0.2835196852684,0.047861523926258]],[[0.041555434465408,-0.094270445406437,-0.12080597877502],[-0.20607569813728,0.028204586356878,-0.039478395134211],[0.0066148741170764,-0.12728270888329,-0.024796117097139]],[[0.047208547592163,0.22848480939865,0.19211272895336],[-0.028733432292938,0.01448337174952,-0.022318098694086],[-0.053652830421925,-0.096582464873791,0.17781035602093]],[[0.12130972743034,0.00019140185031574,-0.083228103816509],[0.049510322511196,0.0285818669945,-0.031039249151945],[-0.08125277608633,-0.017565678805113,-0.153390660882]],[[-0.02220250107348,-0.070709347724915,0.14059814810753],[-0.1388398706913,-0.1811064183712,-0.10787718743086],[-0.046457976102829,-0.059876259416342,-0.040090706199408]],[[-0.04492349922657,0.02805183827877,0.06914684176445],[-0.096421137452126,0.074259839951992,-0.062864221632481],[0.002010612282902,0.11519300192595,0.046825062483549]],[[-0.026908321306109,-0.099222883582115,0.080903999507427],[-0.067179523408413,-0.065640613436699,-0.080891758203506],[-0.067615330219269,-0.069243140518665,0.014454387128353]],[[0.11388835310936,-0.092632219195366,-0.079970642924309],[-0.066366471350193,-0.12780007719994,-0.015095195733011],[-0.19655545055866,-0.15782137215137,-0.048617605119944]],[[-0.061503026634455,-0.099338561296463,0.011840471066535],[0.12819008529186,-0.12499529868364,0.019150633364916],[-0.041472401469946,-0.042882461100817,-0.1874697804451]],[[-0.06052628532052,-0.1622958034277,0.082630671560764],[-0.04165755212307,-0.05509302392602,-0.060869421809912],[-0.070895299315453,-0.00084283947944641,-0.025174951180816]],[[0.076161213219166,-0.19245973229408,0.018991457298398],[-0.024713886901736,0.09351558983326,0.012925032526255],[0.14512468874454,-0.013356338255107,0.11586906015873]],[[-0.093182943761349,-0.14314031600952,0.040997818112373],[0.11184061318636,-0.013028427027166,-0.10887854546309],[-0.058730680495501,-0.092979595065117,0.13871270418167]],[[0.15307419002056,-0.12826330959797,0.055081136524677],[0.0065433890558779,-0.035246904939413,0.023982023820281],[-0.081816099584103,-0.10180949419737,0.11561521142721]],[[0.0040397145785391,0.16270691156387,-0.050919603556395],[0.031977690756321,-0.05926726013422,0.13923472166061],[-0.080488480627537,-0.14578552544117,-0.0713275000453]],[[0.048905048519373,0.16806897521019,0.13072782754898],[-0.084393285214901,-0.027072243392467,-0.098272167146206],[-0.10350050777197,0.088944911956787,0.19447007775307]],[[0.047645594924688,0.04760530591011,0.030623584985733],[0.097799085080624,0.033930007368326,-0.02787128649652],[-0.033984217792749,-0.04214671626687,0.018924543634057]],[[-0.048496246337891,-0.069430485367775,0.02255548723042],[-0.021478470414877,-0.041607648134232,0.049277264624834],[-0.017210438847542,-0.011307250708342,0.19391749799252]],[[-0.081158712506294,-0.080334737896919,-0.13253398239613],[-0.1578286588192,-0.0084826080128551,0.011187235824764],[-0.0048408890143037,-0.058567855507135,-0.098578035831451]],[[-0.11666424572468,0.025014778599143,-0.022376077249646],[0.035016912966967,-0.051331967115402,0.10483790189028],[-0.028180219233036,-0.16092093288898,0.11457081884146]],[[-0.055124327540398,0.026623021811247,-0.099451184272766],[0.077760301530361,-0.054761946201324,0.021183328703046],[0.0078968303278089,0.013892804272473,0.023957317695022]],[[0.19838178157806,-0.073496572673321,-0.016508959233761],[0.07753050327301,-0.0032159972470254,-0.10785185545683],[0.15932807326317,-0.25820374488831,0.028598444536328]],[[0.19156818091869,-0.15071022510529,-0.027682930231094],[-0.1296711564064,0.14550982415676,0.0050882762297988],[-0.02401321940124,0.076094955205917,0.0063187931664288]],[[-0.028124487027526,0.031049491837621,-0.098101206123829],[-0.046379182487726,-0.027113514021039,0.072736531496048],[0.11296074837446,-0.035059906542301,0.039130337536335]],[[-0.069732628762722,0.030684191733599,0.073461264371872],[-0.056530565023422,-0.1163937151432,-0.10455298423767],[-0.013095039874315,0.098875761032104,-0.012267940677702]],[[-0.14012284576893,0.014275026507676,0.10529258102179],[-0.026833431795239,0.061925452202559,-0.059012893587351],[-0.071495525538921,0.0031682648696005,0.031844522804022]],[[0.021864507347345,0.010604565963149,0.016352655366063],[-0.047937959432602,-0.025290375575423,0.0062126568518579],[0.1608754247427,-0.083945520222187,-0.0090466747060418]],[[0.080973416566849,0.23274867236614,0.0026838399935514],[-0.15437391400337,-0.02076586894691,0.049726989120245],[0.14375260472298,-0.042281091213226,-0.026219896972179]],[[0.058101143687963,-0.10547591000795,-0.08200515806675],[-0.022274630144238,-0.0025657445657998,-0.076246328651905],[0.042338311672211,0.092179141938686,-0.049485821276903]],[[0.060727007687092,0.13541515171528,-0.060425516217947],[-0.0037335944361985,-0.10239814966917,-0.06231165677309],[0.0095942178741097,0.071009956300259,-0.12847118079662]],[[-0.040417101234198,0.084985412657261,-0.11752563714981],[-0.040094614028931,0.14537708461285,-0.040854196995497],[0.016123499721289,-0.06946961581707,0.032061479985714]],[[0.065244153141975,0.079412862658501,-0.088532194495201],[0.19274446368217,0.043084647506475,-0.13273747265339],[0.1722270399332,-0.14591892063618,-0.051051754504442]],[[0.16488656401634,-0.05308734998107,0.064438492059708],[-0.32700479030609,-0.053618185222149,-0.093689225614071],[0.10854464024305,-0.064582325518131,-0.027598857879639]],[[-0.037714265286922,0.022031463682652,-0.020207189023495],[-0.081546820700169,0.024119267240167,0.095966152846813],[-0.11607411503792,-0.015655864030123,-0.019002299755812]],[[0.022940216585994,-0.0080578941851854,-0.017883781343699],[-0.075265072286129,-0.16921345889568,0.076082102954388],[-0.0078973658382893,0.21103087067604,-0.10783316195011]],[[-0.1342945098877,0.0092443255707622,0.0094481464475393],[-0.074689790606499,-0.12557825446129,-0.12187474220991],[-0.041876710951328,-0.029301010072231,0.19171884655952]],[[-0.0075640860013664,-0.093267396092415,-0.048902083188295],[-0.0044611995108426,0.045058786869049,0.041712217032909],[0.15443463623524,-0.081929229199886,-0.045757714658976]],[[0.037179708480835,-1.5611694834661e-06,-0.055005215108395],[-0.044424518942833,-0.062011353671551,-0.010934367775917],[0.034288857132196,-0.11578141152859,-0.088725350797176]],[[-0.00062006968073547,-0.09804505109787,-0.19354191422462],[-0.13419845700264,-0.021516861394048,-0.018832787871361],[-0.087312936782837,-0.062751673161983,-0.010248591192067]],[[-0.078799799084663,-0.10378858447075,0.084803976118565],[0.016998143866658,-0.1389806419611,0.017613455653191],[0.12634599208832,-0.1281728297472,0.014078926295042]],[[-0.073329918086529,0.029626417905092,0.095770351588726],[-0.065276585519314,-0.06933556497097,0.071642003953457],[-0.08073166757822,0.09113921970129,0.006680456455797]],[[0.27749294042587,-0.058109380304813,0.17056265473366],[0.064982250332832,-0.032396368682384,0.034918751567602],[-0.051345620304346,0.016388731077313,0.041952535510063]],[[-0.056898314505816,-0.022583002224565,0.025559110566974],[-0.15004177391529,-0.018229573965073,0.021868182346225],[-0.017105609178543,-0.030796017497778,0.16505415737629]],[[0.080800391733646,0.087088920176029,-0.14943820238113],[-0.076753132045269,0.038084235042334,-0.082580551505089],[-0.060172140598297,-0.025110749527812,-0.013362895697355]],[[0.089646749198437,0.088341593742371,-0.01141544431448],[0.056205254048109,-0.012005798518658,-0.097510926425457],[-0.046819929033518,0.073473080992699,-0.056101240217686]],[[0.075232960283756,-0.06842827051878,-0.012586147524416],[-0.026822209358215,0.079904787242413,-0.1187708824873],[-0.029154494404793,-0.13127398490906,-0.0022311545908451]],[[0.024636719375849,-0.021783445030451,0.13165095448494],[0.0025644220877439,0.018752066418529,0.43451595306396],[-0.052317168563604,-0.16735465824604,-0.22883819043636]],[[0.026938796043396,0.018521605059505,-0.071884781122208],[-0.014774195849895,-0.033865615725517,0.029668770730495],[-0.0028891789261252,-0.0605793222785,-0.11122113466263]],[[-0.024883925914764,0.11858810484409,-0.020080657675862],[0.0339285582304,-0.25333720445633,0.11126268655062],[0.1162920370698,0.20792666077614,-0.058238044381142]],[[-0.041643273085356,-0.028835678473115,0.01269714999944],[-0.026845457032323,0.22386357188225,-0.0097575020045042],[0.044659234583378,0.055938512086868,0.023035848513246]],[[-0.014477388933301,0.048740975558758,0.04959873482585],[0.022583480924368,0.46070206165314,-0.083169408142567],[0.028883945196867,0.043205086141825,-0.0025706270243973]],[[-0.012492330744863,0.10689816623926,-0.15956281125546],[-0.0084365485236049,-0.050161618739367,-0.002924378728494],[-0.022798765450716,0.00092940992908552,0.0021375168580562]],[[0.081785656511784,0.012265962548554,0.068359777331352],[0.039826158434153,-0.0082068750634789,0.028784492984414],[0.090455360710621,0.025404104962945,-0.026112582534552]],[[-0.020585171878338,-0.004231174942106,-0.027117235586047],[-0.11568205058575,0.22148181498051,-0.0073091313242912],[-0.020704030990601,-0.06711807847023,0.037103086709976]],[[0.034520402550697,-0.044864688068628,0.027129432186484],[0.088390730321407,-0.052483517676592,-0.057368256151676],[0.0057544345036149,0.063225448131561,0.099238611757755]],[[0.10873744636774,-0.13784685730934,0.03900545835495],[0.044120702892542,-0.070424534380436,-0.027514062821865],[-0.076118633151054,0.11854480952024,-0.027729468420148]],[[-0.15774022042751,-0.084319934248924,0.055848363786936],[0.038508821278811,-0.054516516625881,-0.090296246111393],[-0.091201357543468,-0.016361739486456,-0.11388984322548]],[[-0.15459389984608,0.087928459048271,0.17626301944256],[-0.12359886616468,-0.078664846718311,-0.08063743263483],[-0.044511545449495,-0.040383294224739,0.00047432395513169]],[[0.022532761096954,0.0007218872779049,0.017901588231325],[0.077864304184914,0.0081685036420822,-0.060338199138641],[-0.11488721519709,-0.059216257184744,0.020423172041774]],[[-0.040707875043154,0.25883540511131,0.08364150673151],[-0.092842541635036,0.045473527163267,0.06513936817646],[-0.10659858584404,-0.0094870207831264,0.036773409694433]],[[0.12127708643675,-0.081548653542995,-0.11434914171696],[-0.034275364130735,0.048679977655411,-0.18557126820087],[-0.089464217424393,0.11751870065928,0.27223062515259]],[[-0.018077136948705,-0.120052523911,-0.021708905696869],[-0.050387807190418,-0.053701292723417,-0.20668759942055],[-0.12822343409061,-0.07264968752861,0.058456029742956]],[[-0.097844555974007,-0.023024816066027,-0.0056008473038673],[-0.07793752104044,0.074229776859283,-0.10275826603174],[-0.0040131360292435,-0.13472640514374,-0.035460315644741]],[[-0.10559256374836,-0.054262313991785,0.039501529186964],[0.06771844625473,0.039359107613564,-0.01460918597877],[-0.025844048708677,-0.043331928551197,-0.0050300364382565]],[[-0.10551784187555,0.077203154563904,0.084357149899006],[-0.12560094892979,-0.17301112413406,0.14659178256989],[0.073482371866703,-0.091878905892372,0.009264575317502]],[[-0.19068750739098,0.046587556600571,-0.11557260900736],[0.0038978464435786,0.080751836299896,-0.079549804329872],[-0.09492926299572,-0.08046505600214,-0.12382599711418]],[[0.094120793044567,-0.31672519445419,-0.0064481301233172],[-0.010289586149156,0.052583914250135,0.24343878030777],[-0.031466960906982,-0.054383482784033,0.14926491677761]],[[-0.10732091963291,-0.041110176593065,0.036756996065378],[0.016045168042183,0.31499162316322,-0.0922616943717],[0.089651353657246,-0.12444853037596,0.0384676232934]]],[[[-0.03635036200285,0.025605998933315,-0.034675091505051],[-0.02184552885592,-0.016160724684596,0.037657529115677],[-0.028313424438238,-0.018991721794009,0.039229441434145]],[[0.010663548484445,-0.022446816787124,-0.088130466639996],[-0.068907260894775,-0.019581628963351,0.0074683078564703],[0.091828033328056,0.014926664531231,0.055606659501791]],[[-0.051719531416893,-0.063541650772095,-0.0061606131494045],[-0.049391213804483,-0.0031770777422935,0.0093299448490143],[-0.0076143494807184,0.0055417697876692,0.0015569599345326]],[[0.021100632846355,-0.10656919330359,0.0057087717577815],[-0.068355165421963,0.036325205117464,-0.058314990252256],[0.048986006528139,0.012628898024559,0.025361409410834]],[[-0.047880463302135,-0.07491572201252,0.084207840263844],[-0.0011912336340174,-0.073287792503834,-0.04031353071332],[-0.024982418864965,-0.063083663582802,-0.032422501593828]],[[-0.038793876767159,-0.015629015862942,-0.028909245505929],[-0.055387515574694,0.015117971226573,-0.061388481408358],[0.068820491433144,0.0065205493010581,0.099616549909115]],[[0.014873292297125,0.013565964065492,0.043296098709106],[0.050442587584257,-0.052818741649389,-0.010214342735708],[0.099796332418919,-0.054584342986345,-0.039951875805855]],[[-0.017945433035493,-0.093646101653576,0.056744307279587],[0.071534551680088,0.053726490586996,0.063298016786575],[-0.0028569202404469,-0.0025146980769932,-0.14334113895893]],[[-0.06429760158062,-0.12071039527655,-0.14868466556072],[0.016989735886455,0.015412139706314,0.063900910317898],[0.023508323356509,0.03851481154561,0.0585369579494]],[[0.22314289212227,0.052912298589945,0.015282444655895],[-0.07102407515049,-0.09854169934988,-0.026498565450311],[0.032421361654997,0.21798475086689,0.22605983912945]],[[0.018523780629039,0.023593770340085,0.0060325497761369],[-0.1114711984992,-0.099998861551285,0.036760989576578],[0.029572257772088,0.016766170039773,0.13659021258354]],[[0.014001328498125,-0.091381438076496,0.029651813209057],[0.036297369748354,0.0244773440063,-0.011006295681],[0.0059108026325703,-0.029755158349872,0.14884930849075]],[[-0.03991212323308,0.0036082973238081,-0.045607723295689],[0.0069567365571856,0.031092567369342,-0.0038078892976046],[0.0014107109745964,0.01840978115797,0.07547190785408]],[[0.01997053809464,0.056274335831404,0.025352977216244],[0.06111378967762,0.043767232447863,-0.018878486007452],[0.12498421221972,0.031984016299248,0.0027942080050707]],[[0.22428756952286,0.080423004925251,0.086018599569798],[0.16781289875507,0.069994188845158,0.07983123511076],[0.11046277731657,0.10801118612289,0.019386192783713]],[[-0.026879318058491,-0.041566152125597,-0.043757010251284],[-0.11549276858568,-0.11714427173138,-0.039322588592768],[0.0020782728679478,-0.043023440986872,-0.049383673816919]],[[0.042596761137247,0.04115342721343,0.053169179707766],[-0.012208379805088,-0.037975426763296,0.014741328544915],[-0.043060299009085,-0.038462515920401,-0.018921237438917]],[[0.0061437729746103,-0.069401323795319,-0.08061645925045],[0.019164709374309,-0.010369109921157,0.00053749134531245],[0.010361647233367,0.045749578624964,0.056594256311655]],[[0.084320068359375,-0.029611680656672,-0.021005053073168],[-0.014500289224088,-0.033089488744736,-0.012537638656795],[0.00305583816953,-0.017165282741189,-0.020105665549636]],[[0.01366763561964,-0.056228742003441,0.037845801562071],[0.025552768260241,-0.0072120414115489,0.012637394480407],[-0.06845548003912,-0.0097456919029355,-0.028750814497471]],[[-0.004851303063333,0.05845757201314,0.081537589430809],[0.038567151874304,-0.0025100151542574,0.011979015544057],[-0.046856351196766,0.069318398833275,-0.061021484434605]],[[0.039629593491554,0.025864163413644,0.13651552796364],[0.032181143760681,0.025391591712832,0.027401983737946],[0.089699998497963,0.086987644433975,0.066884115338326]],[[-0.017823405563831,-0.019930874928832,0.0062879878096282],[0.050346784293652,-0.032147713005543,-0.023013213649392],[-0.044132236391306,-0.0026315671857446,-0.061052426695824]],[[0.0092275394126773,-0.0310627091676,-0.012157767079771],[0.078809186816216,-0.066578902304173,0.017162906005979],[0.074459806084633,0.047029957175255,0.03567473217845]],[[0.056566137820482,0.046094998717308,0.013416088186204],[0.0089223608374596,-0.003282533492893,-0.0043059070594609],[0.073014132678509,0.091613285243511,0.020301291719079]],[[0.04341547191143,0.029026959091425,-0.031857460737228],[-0.088831074535847,-0.0096037592738867,-0.031850218772888],[0.096634440124035,0.018431585282087,0.04287039488554]],[[-0.082598499953747,0.026377720758319,-0.00023973897623364],[-0.0072829076088965,0.089449569582939,0.0073936656117439],[0.017351593822241,-0.0089240847155452,0.073097467422485]],[[0.0812733694911,0.026455864310265,-0.010840622708201],[-0.0045055174268782,0.094462417066097,0.01716229878366],[0.14132535457611,0.0030129845254123,0.089179590344429]],[[0.11186485737562,0.02533108741045,-0.00091075804084539],[0.027316829189658,0.080941319465637,0.010689848102629],[-0.04638671875,0.081036865711212,-0.025887712836266]],[[0.026276625692844,-0.019622124731541,0.038556188344955],[0.0009523689514026,-0.01520124450326,-0.064401231706142],[0.054853372275829,0.032701961696148,0.053536169230938]],[[0.079940550029278,0.010126378387213,0.058332107961178],[0.018662372604012,0.011352642439306,0.021279895678163],[0.020324742421508,-0.059729240834713,0.024759678170085]],[[0.073306985199451,-0.015147660858929,0.08101200312376],[0.052986957132816,0.087868764996529,0.0395746268332],[-0.024526938796043,0.078088909387589,-0.031598567962646]],[[0.0008828000864014,-0.016245014965534,0.0088416654616594],[0.0059814383275807,0.037486754357815,8.1280079029966e-05],[0.072288550436497,0.032920997589827,-0.046347618103027]],[[0.0017587613547221,0.01565589569509,0.086747720837593],[-0.05679640173912,0.028551934286952,0.049357462674379],[0.077019341289997,0.089830920100212,0.028092969208956]],[[0.075653642416,-0.019683133810759,0.049963854253292],[0.056164879351854,-0.0071382103487849,0.010831912048161],[0.059747137129307,-0.11727494001389,-0.055842824280262]],[[-0.014973819255829,-0.06481446325779,0.051097884774208],[-0.07504104077816,-0.064156360924244,-0.041985001415014],[-0.046810507774353,0.048833835870028,0.01638893596828]],[[-0.02820329554379,0.05135453119874,-0.054811727255583],[0.0469606295228,-0.0023610456846654,-0.14505998790264],[0.030638894066215,0.061777491122484,-0.019458452239633]],[[0.020740933716297,-0.022158853709698,0.0057452255859971],[-0.0035496896598488,-0.018389808014035,-0.063445270061493],[-0.019368782639503,-0.061062540858984,-0.029700988903642]],[[0.058062806725502,-0.025924269109964,-0.0060538030229509],[0.0028832645621151,0.075375691056252,-0.027596002444625],[0.079632431268692,-0.011338231153786,0.056510925292969]],[[-0.022449776530266,-0.015222793444991,-0.018783150240779],[0.04419556632638,-0.014786757528782,0.079937100410461],[0.022978711873293,0.020785979926586,0.063937693834305]],[[-0.034896865487099,-0.0058153942227364,-0.011862484738231],[0.083089217543602,-0.036747310310602,0.02767525985837],[-0.044388208538294,-0.033802136778831,0.047834847122431]],[[0.043920800089836,0.0094745792448521,0.040899407118559],[-0.0025780142750591,-0.054678466171026,-0.018757525831461],[-0.033175311982632,0.014325957745314,0.025241205468774]],[[0.10449042916298,0.053351819515228,-0.015986138954759],[0.0071632759645581,0.0021602481137961,0.076297342777252],[-0.028885515406728,0.024996126070619,0.10958158969879]],[[0.041887536644936,0.0040893154218793,0.016973340883851],[-0.036309596151114,0.037212211638689,0.013774141669273],[0.022024728357792,0.13595080375671,0.0059834769926965]],[[0.070271693170071,-0.059657640755177,0.0016396306455135],[0.034492991864681,0.00088282977230847,0.029625592753291],[-0.052846912294626,-0.011238170787692,-0.0051774531602859]],[[0.078895896673203,0.04091477021575,-0.031563378870487],[-0.0040783733129501,-0.020312020555139,0.06473870575428],[0.068816520273685,0.03194547817111,0.023182494565845]],[[0.050856113433838,-0.0183194745332,0.01146065723151],[-0.0083273081108928,0.096775338053703,-0.00054210377857089],[-0.030679067596793,-0.019474046304822,0.067248150706291]],[[0.053392753005028,-0.043064430356026,0.046129994094372],[0.020460473373532,-0.020466549322009,-0.051170516759157],[-0.013202347792685,0.05913856998086,-0.0035934725310653]],[[0.08519983291626,-0.013463348150253,0.10273159295321],[-0.022175192832947,0.051069784909487,0.03797760233283],[-0.061287727206945,0.066648922860622,-0.033591501414776]],[[-0.13553376495838,-0.0035977899096906,0.073513373732567],[-0.012798333540559,0.048699602484703,-0.062398459762335],[-0.00068824569461867,0.030095670372248,-0.070360630750656]],[[0.013896231539547,0.0052450872026384,0.080543294548988],[-0.054889649152756,-0.069260038435459,-0.012133072130382],[-0.05278692394495,-0.041445452719927,0.014552894979715]],[[-0.0084912441670895,0.04140729829669,0.015039685182273],[-0.022248281165957,-0.07827389985323,0.032346867024899],[0.11670856922865,-0.00051879382226616,0.13187159597874]],[[0.037101179361343,-0.039453200995922,0.030580790713429],[-0.039549574255943,-0.0088941976428032,-0.089633256196976],[-0.039189018309116,0.029320811852813,0.048906154930592]],[[0.059716772288084,-0.012493967078626,-0.04108414798975],[0.071722283959389,-0.031208837404847,0.020447332412004],[0.11746728420258,0.1017582193017,0.0029601566493511]],[[0.10085773468018,-0.013501931913197,0.083900474011898],[0.097420535981655,0.018276661634445,-0.018590375781059],[-0.0029757553711534,-0.021046567708254,-0.0090807965025306]],[[0.047087091952562,0.035649731755257,-0.049283865839243],[-0.056077994406223,-0.012585326097906,0.076805830001831],[-0.084300182759762,0.025986686348915,0.017022347077727]],[[-0.0041447402909398,-0.017783423885703,-0.057067669928074],[0.0077556828036904,-0.0057842982932925,0.030726511031389],[0.016675636172295,-0.019686538726091,-0.028032725676894]],[[0.11494761705399,-0.0673548579216,0.065536424517632],[0.007675202563405,-0.037239167839289,0.0011190713848919],[-0.032297674566507,-0.083690255880356,-0.0019001364707947]],[[0.066747181117535,-0.019805520772934,-0.021940445527434],[-0.016523787751794,0.0044403099454939,0.030455539003015],[0.09798040241003,0.072028800845146,0.070624597370625]],[[0.055047582834959,0.10199659317732,-0.070796124637127],[0.0099004562944174,0.089133486151695,0.0097414627671242],[0.097112134099007,-0.032247874885798,0.074516862630844]],[[0.028776288032532,-0.031721528619528,-0.026734111830592],[-0.016643051058054,-0.1420738697052,0.03132551908493],[-0.0092760566622019,0.0040518390014768,0.036365635693073]],[[-0.022048320621252,-0.031532451510429,0.020162982866168],[0.02455042488873,-0.01596979983151,0.0015411562053487],[0.017005113884807,0.051611952483654,0.037632059305906]],[[0.057800505310297,-0.019185183569789,0.04886806756258],[0.00093069404829293,-0.013598078861833,-0.0093591315671802],[-0.02201241441071,0.11048977077007,0.032800231128931]],[[-0.020957281813025,0.068585403263569,-0.021241029724479],[-0.030912481248379,-0.078116968274117,0.086446076631546],[0.0068545476533473,-0.075499258935452,-0.028250653296709]],[[0.021770486608148,-0.038530822843313,0.054140899330378],[-0.02247354388237,-0.016183186322451,0.04404728487134],[-0.004935794044286,-0.039259973913431,0.010866652242839]],[[-0.0080498475581408,-0.031239405274391,0.0063969818875194],[0.069009706377983,0.012748756445944,-0.08171459287405],[0.10304962843657,-0.052410624921322,-0.020566856488585]],[[-0.029379609972239,0.048992421478033,-0.12481509149075],[0.089895777404308,0.077381059527397,-0.0071880277246237],[0.06220368295908,0.1087316647172,0.11877007037401]],[[0.0023551299236715,0.030744675546885,-0.0066860681399703],[0.060977559536695,-0.030564490705729,0.0052243233658373],[-0.038421373814344,-0.0065599251538515,-0.0092146806418896]],[[0.11102858185768,0.022501232102513,0.042076446115971],[-0.026236459612846,0.021149838343263,0.074768304824829],[0.0038906566333026,0.001043293857947,-0.082446284592152]],[[0.079724989831448,-0.096744231879711,-0.0077706212177873],[0.095568761229515,0.07776889950037,-0.022518230602145],[-0.088942408561707,0.01396235730499,0.018873915076256]],[[0.031285148113966,0.013636508025229,-0.044284883886576],[-0.044117126613855,0.031721577048302,0.018008524551988],[0.04686389118433,0.025431057438254,0.0055031487718225]],[[0.0165682323277,0.01149960141629,0.0052692024037242],[0.10325483977795,0.02279712818563,0.0046140123158693],[0.002497521461919,0.11511623859406,0.05943501740694]],[[0.016047619283199,0.02852776274085,0.034484073519707],[-0.0091552063822746,-0.010478614829481,0.0088679809123278],[0.045878026634455,-0.012317295186222,0.11543057858944]],[[0.1440504193306,0.029156068339944,0.020909685641527],[0.0081879198551178,0.019300470128655,0.073799215257168],[0.050001714378595,-0.029713492840528,0.10734424740076]],[[0.037148956209421,-0.040214598178864,-0.010210079140961],[-0.055074665695429,-0.061925958842039,-0.10814557224512],[-0.059340167790651,0.074352167546749,-0.029756700620055]],[[0.043754927814007,-0.087204143404961,0.0054066320881248],[-0.0091588329523802,-0.067886985838413,0.079629346728325],[0.073438905179501,0.00071371998637915,0.027083575725555]],[[-0.054680317640305,-0.021895909681916,0.020800683647394],[-0.033438645303249,0.077592231333256,-0.020236767828465],[-0.036010805517435,-0.052729174494743,-0.00042877526720986]],[[0.1005816757679,0.036609340459108,0.090947076678276],[0.017044641077518,0.025928806513548,0.023500101640821],[-0.062567934393883,-0.027762468904257,-0.012210167944431]],[[0.062072902917862,0.013265250250697,-0.077644929289818],[-0.010430102236569,-0.017191398888826,-0.028161182999611],[0.011745155788958,0.03083679638803,-0.088925145566463]],[[-0.011168762110174,-0.014689500443637,-0.05773102119565],[0.015223561786115,-0.0051976530812681,-0.065324105322361],[-0.098159067332745,-0.0057065486907959,-0.024617504328489]],[[-0.018475919961929,-0.0023946333676577,0.063110344111919],[-0.030658999457955,-0.019246501848102,-0.057549208402634],[0.0093662310391665,0.009422161616385,-0.013601855374873]],[[-0.043929785490036,0.055115360766649,-0.013413113541901],[-0.052466314285994,-0.039384834468365,-0.045043434947729],[0.065069772303104,-0.077550023794174,0.038435325026512]],[[-0.043147463351488,-0.0040448666550219,-0.063421443104744],[-0.018832651898265,-0.019630856812,-0.050898134708405],[0.043284207582474,-0.0064178523607552,-0.060060225427151]],[[0.10086117684841,0.00075800099875778,-0.00943339522928],[0.11703143268824,0.041849851608276,-0.046031415462494],[0.044418096542358,0.10467696934938,0.071980021893978]],[[-0.043742619454861,-0.053220558911562,0.0059279333800077],[-0.018488805741072,0.031518239527941,-0.097046136856079],[-0.021777475252748,0.017867395654321,-0.01452300325036]],[[0.042750209569931,-0.015742531046271,0.060068514198065],[-0.0021388556342572,0.080051191151142,-0.014740715734661],[0.060899917036295,0.036387916654348,-0.025783643126488]],[[-0.019621914252639,-0.031872894614935,-0.0047323927283287],[0.030404342338443,-0.10557476431131,-0.013415439985693],[-0.052629064768553,-0.0179802197963,0.049093771725893]],[[0.11439094692469,0.013489847071469,0.084661327302456],[-0.020514938980341,-0.01025109179318,0.084768570959568],[0.025426303967834,0.08520682156086,-0.001979119842872]],[[-0.00046052914694883,-0.030443921685219,0.016896564513445],[-0.066595181822777,0.049705967307091,0.0094848889857531],[-0.039180319756269,0.017177144065499,0.066233366727829]],[[0.091937474906445,0.040770590305328,0.042908508330584],[0.020848233252764,0.045217741280794,-0.049812771379948],[-0.00089725997531787,0.0021860715933144,-0.01701264642179]],[[-0.044820372015238,0.067077770829201,-0.027252299711108],[0.042319595813751,-0.0097295762971044,0.062685370445251],[0.069811917841434,0.097092255949974,0.085045151412487]],[[0.051003284752369,-0.053936086595058,0.0010334596736357],[-0.030516315251589,0.057876095175743,0.10583082586527],[0.030492309480906,-0.067692883312702,-0.062686987221241]],[[-0.020289802923799,0.028144452720881,-0.059241931885481],[-0.011085709556937,-0.052194129675627,0.037526782602072],[-0.0063285604119301,-0.10371946543455,-0.040030226111412]],[[0.098080076277256,-0.0025013675913215,0.11343914270401],[0.056026007980108,0.033460479229689,-0.016655525192618],[0.022020604461432,-0.10842244327068,-0.073876030743122]],[[-0.0047090770676732,-0.024760279804468,0.020185574889183],[-0.0042889965698123,0.030869686976075,0.036732129752636],[0.013381669297814,0.043156199157238,-0.1064246147871]],[[-0.036206465214491,0.061544205993414,0.0098881060257554],[-0.059886552393436,-0.060845099389553,0.059931267052889],[0.070920243859291,-0.0045102788135409,-0.077741615474224]],[[-0.00016194069758058,0.072495460510254,0.084044091403484],[-0.010770987719297,-0.060810353606939,-0.060748219490051],[-0.034864950925112,0.081665270030499,0.022463317960501]],[[0.064141489565372,0.099048972129822,-0.0099747814238071],[0.10498886555433,0.06180103495717,0.037134420126677],[-0.052889414131641,-0.017015524208546,0.01011424139142]],[[-0.014640947803855,0.0092729302123189,-0.025715865194798],[-0.04554495215416,-0.023085989058018,0.084765315055847],[-0.033538676798344,-0.054638728499413,0.058770921081305]],[[0.018799731507897,-0.036602046340704,0.011678228154778],[-0.077234216034412,-0.040829267352819,0.031468957662582],[0.0039145774208009,0.011538965627551,-0.0075110029429197]],[[-0.015391804277897,0.017347451299429,0.03176324814558],[0.065593384206295,0.038259703665972,-0.020832223817706],[0.0099866017699242,-0.05964994058013,0.057121608406305]],[[0.030870834365487,0.11995529383421,0.16019213199615],[-0.034309100359678,0.01656005717814,-0.0669199898839],[0.014326973818243,0.12448278814554,0.020702879875898]],[[-0.065422005951405,-0.0082781175151467,-0.02012974023819],[0.0040330085903406,-0.022372577339411,0.079209618270397],[-0.03356434777379,-0.038547284901142,0.0093499775975943]],[[0.054124910384417,-0.016092699021101,0.10880345106125],[-0.047969914972782,-0.088273733854294,0.034798953682184],[0.0096727684140205,-0.049849737435579,-0.036984100937843]],[[0.0023607898037881,0.036930914968252,0.060803607106209],[0.070141889154911,-0.0051184194162488,-0.021573800593615],[0.015895297750831,0.043434415012598,-0.068974956870079]],[[-0.0066393972374499,0.0079600410535932,-0.016360683366656],[-0.010200926102698,0.10960225015879,0.077442325651646],[0.0059273038059473,-0.20003613829613,-0.0097884004935622]],[[-0.030836671590805,-0.01490434166044,-0.058215759694576],[0.079599753022194,-0.052746947854757,-0.020485928282142],[-0.027676725760102,0.025180140510201,-0.037599287927151]],[[0.013771401718259,0.019050581380725,-0.043877180665731],[-0.0040713464841247,0.013367082923651,-0.010149199515581],[0.035001698881388,-0.0032952853944153,0.031532749533653]],[[0.015971072018147,0.10015822201967,0.035308539867401],[0.0022993579041213,-0.024931464344263,-0.022158117964864],[0.033416226506233,-0.089225351810455,0.077644214034081]],[[-0.067676462233067,-0.054438352584839,-0.014040815643966],[0.081148572266102,0.045880813151598,-0.0014813748421147],[0.064292348921299,-0.054019503295422,-0.0063403900712729]],[[0.08514366298914,-0.05031630396843,-0.070682905614376],[0.0010920552304015,-0.020632931962609,-0.025538690388203],[-0.090509198606014,0.062025342136621,0.087717980146408]],[[-0.044672083109617,0.092040337622166,-0.016831018030643],[-0.01791875064373,0.036980528384447,-0.00015421236457769],[-0.079222954809666,-0.017774898558855,0.038070343434811]],[[0.063669390976429,-0.07760039716959,-0.036073207855225],[0.0079859932884574,-0.026215644553304,-0.031836297363043],[0.00083564664237201,0.049785617738962,0.0013668743195012]],[[-0.10383712500334,-0.023603914305568,-0.042775090783834],[0.069406263530254,0.0016164117259905,0.090604156255722],[-0.023994931951165,-0.0082583846524358,0.03283628448844]],[[-0.027760948985815,0.010676626116037,-0.078485615551472],[0.029893195256591,0.014405651018023,0.044715967029333],[-0.023387234658003,-0.041362650692463,-0.011011353693902]],[[-0.00082981860032305,0.069079451262951,-0.023031331598759],[0.035361815243959,0.017780734226108,0.018149476498365],[0.031602695584297,0.05909176170826,0.1688187867403]],[[0.080423839390278,0.046043463051319,-0.01473831012845],[0.06395298242569,0.0687325745821,-0.013447324745357],[-0.0053257970139384,0.13467560708523,0.01693207398057]],[[-0.0070348619483411,-0.051807932555676,-0.0073952162638307],[-0.023081528022885,0.020913027226925,0.0096280043944716],[0.064804218709469,0.094796128571033,0.020031981170177]],[[-0.071923077106476,0.0092065893113613,0.089423678815365],[0.016793735325336,0.055433072149754,-0.075742371380329],[0.068304888904095,-0.061311226338148,0.097389236092567]],[[-0.038671411573887,-0.053621686995029,-0.0043370947241783],[0.023099634796381,-0.040065482258797,-0.0029222774319351],[-0.028145149350166,-0.033460758626461,-0.020905993878841]],[[-0.022408790886402,-0.0077285687439144,-0.056477915495634],[-0.025511322543025,-0.04786778241396,-0.017556050792336],[0.088088884949684,0.020622383803129,-0.077000789344311]],[[0.055233415216208,0.0091673377901316,-0.015236243605614],[-0.013729406520724,0.019417271018028,0.042744383215904],[0.0021124097984284,-0.11384025961161,0.018255557864904]],[[0.050018519163132,0.0013048058608547,0.099805608391762],[-0.024514326825738,-0.030976761132479,-0.075912691652775],[0.04444545507431,0.027403339743614,0.0087516568601131]],[[-0.049171797931194,-0.028914343565702,-0.0277532748878],[0.071630001068115,0.0050449441187084,-0.067444801330566],[-0.072879448533058,-0.0066115520894527,-0.12744282186031]],[[0.067307196557522,0.079876229166985,0.0057911034673452],[0.028067098930478,0.0031189876608551,0.045756131410599],[-0.014447053894401,0.052942719310522,0.073012508451939]],[[-0.051961909979582,-0.043114487081766,-0.039791356772184],[-0.065597735345364,0.016781536862254,-0.050140388309956],[0.059833791106939,-0.010532440617681,0.017483331263065]],[[-0.005813502240926,-0.046250823885202,-0.051442611962557],[-0.031560514122248,0.040399685502052,-0.05511712282896],[0.089049153029919,0.063933305442333,0.0091244094073772]],[[-0.05802645906806,0.016468670219183,-0.1198301538825],[-0.017750127241015,-0.03827677667141,-0.015346490778029],[0.015075599774718,0.03429701924324,0.03656218573451]]],[[[0.065541952848434,-0.028490167111158,0.0071338550187647],[-0.02593463100493,-0.092500612139702,-0.062735557556152],[-0.067776784300804,-0.034422378987074,-0.03616513684392]],[[0.00058449030620977,-0.10103166103363,0.049086809158325],[-0.0016187448054552,0.043079130351543,0.069175608456135],[-0.026141412556171,0.086043901741505,0.033629324287176]],[[0.018101507797837,0.027181036770344,-0.057870656251907],[0.075476244091988,0.052048482000828,-0.032881837338209],[0.0078569799661636,-0.012782788835466,-0.0082041546702385]],[[0.035307187587023,-0.024345083162189,-0.022462075576186],[0.040788274258375,-0.13371770083904,0.015840038657188],[-0.023981377482414,0.055166468024254,0.025656847283244]],[[0.065133906900883,-0.02437655813992,-0.043922375887632],[-0.045271277427673,-0.026140483096242,-0.007033409550786],[0.058105383068323,-0.10260901600122,0.036248989403248]],[[-0.056910827755928,0.038596976548433,-0.035275641828775],[0.036106888204813,-0.10120912641287,-0.11408780515194],[0.0094608357176185,0.083489395678043,0.095733046531677]],[[0.039492964744568,-0.041297975927591,-0.088918142020702],[-0.090899012982845,-0.0074527207762003,-0.033636581152678],[0.040138930082321,-0.10210008919239,0.047393050044775]],[[-0.052478343248367,0.0011461375979707,-0.01602890342474],[-0.019096141681075,-0.027785122394562,0.099913083016872],[0.051213007420301,0.062866270542145,0.073759905993938]],[[-0.10311556607485,0.013364509679377,-0.025355264544487],[0.018072871491313,0.025482283905149,-0.050040904432535],[-0.070180244743824,0.010502230376005,-0.02467948384583]],[[-0.066828429698944,-0.086932890117168,0.030676323920488],[-0.091611631214619,-0.0094213942065835,-0.013380295597017],[-0.051274824887514,-0.072688587009907,-0.099687792360783]],[[0.014772532507777,-0.021282119676471,-0.013957994990051],[0.032758697867393,-0.04650067538023,0.034586776047945],[0.07524773478508,0.0045176665298641,0.025500174611807]],[[-0.080472618341446,0.0079155946150422,0.04837179929018],[-0.028417168185115,-0.0088660949841142,-0.033831663429737],[-0.00077326345490292,0.031147906556726,0.024893535301089]],[[0.0067866034805775,0.001329354592599,0.00077942601637915],[-0.0054146307520568,0.14452503621578,0.027094330638647],[-0.019270930439234,0.018993167206645,0.054671801626682]],[[-0.01781446300447,-0.07783655077219,0.034019976854324],[0.06476266682148,0.017183493822813,0.031701162457466],[-0.044982131570578,0.073822349309921,-0.051082499325275]],[[-0.08997854590416,-0.056629702448845,-0.0092124789953232],[0.10188801586628,0.0036502261646092,-0.024355325847864],[0.019229382276535,-0.030921444296837,-0.056525152176619]],[[0.023999132215977,-0.019624255597591,-0.030887696892023],[-0.094682738184929,0.082114659249783,-0.080543003976345],[0.037298493087292,0.06068279966712,-0.055497214198112]],[[-0.019780907779932,0.037968117743731,-0.0032208901830018],[-0.055338494479656,-0.085773214697838,0.073617607355118],[-0.051984544843435,0.034092612564564,0.047875665128231]],[[0.0085447635501623,-0.015896536409855,0.019872648641467],[0.0085864746943116,-0.042417146265507,-0.075704142451286],[0.039081774652004,-0.02876060642302,-0.050621476024389]],[[0.0048584090545774,0.029367286711931,0.089779607951641],[-0.012166849337518,-0.089451804757118,0.077336564660072],[-0.035233397036791,-0.0052338521927595,-0.050265960395336]],[[-0.0073059187270701,0.049050122499466,-0.019630325958133],[-0.10446711629629,-0.0036458852700889,-0.010903121903539],[-0.038893014192581,-0.040101103484631,0.051170229911804]],[[-0.039221696555614,-0.0096784289926291,0.025173826143146],[0.028230043128133,-0.041782308369875,-0.010739432647824],[-0.026029951870441,-0.0075283069163561,0.074295245110989]],[[-0.077156856656075,-0.068324126303196,-0.04821003600955],[-0.015300882980227,-0.035545289516449,-0.058439578860998],[0.029388844966888,0.066514827311039,0.097056917846203]],[[0.025439959019423,0.039089478552341,-0.11870267987251],[-0.054457876831293,0.047737449407578,0.022797886282206],[-0.079580932855606,-0.049321163445711,-0.090206056833267]],[[0.077695980668068,-0.041290793567896,-0.016224928200245],[-0.053139876574278,-0.0085939923301339,-0.064123243093491],[-0.051348827779293,-0.13709469139576,0.00017801686772145]],[[-0.042015846818686,-0.021516716107726,-0.0082547720521688],[-0.065382912755013,-0.010283431969583,-0.039573151618242],[-0.0017999873962253,-0.0082517936825752,-0.076511777937412]],[[-0.013219663873315,0.11567974835634,0.010146512649953],[0.094549402594566,0.00050578650552779,0.084574617445469],[0.025556974112988,0.037292972207069,0.074977673590183]],[[0.086866743862629,-0.047471806406975,0.052237059921026],[-0.035358466207981,-0.1542913466692,0.045794371515512],[-0.015699353069067,-0.012168286368251,0.015726817771792]],[[0.014564060606062,-0.05421594902873,0.018948815762997],[0.012444366700947,-0.14953181147575,-0.05929297208786],[0.019045803695917,-0.06988750398159,-0.029350869357586]],[[-0.052264407277107,-0.010796122252941,-0.055124145001173],[0.0065166517160833,0.040277790278196,-0.041494984179735],[0.010667025111616,0.11255368590355,-0.12851369380951]],[[0.052624799311161,-0.077574029564857,0.021624773740768],[-0.08702514320612,-0.074913188815117,-0.0025176734197885],[-0.046467795968056,-0.006519690155983,-0.074915885925293]],[[0.0097404355183244,0.0050136432982981,0.02699282951653],[-0.099863313138485,-0.0085797589272261,-0.025617659091949],[0.041313041001558,-0.054356720298529,0.084706157445908]],[[-0.025424443185329,0.08242155611515,-0.046007506549358],[0.0033167528454214,-0.028328090906143,-0.0032444456592202],[-0.0063541550189257,0.035512000322342,0.067445777356625]],[[-0.020377431064844,-0.030249930918217,0.0069461902603507],[-0.012564601376653,-0.01335259154439,-0.021980207413435],[0.06591272354126,-0.006034342572093,-0.062103074043989]],[[-0.041976280510426,-0.078760214149952,-0.03117641992867],[0.11057567596436,0.035858552902937,-0.019588638097048],[-0.021198771893978,-0.043531265109777,0.046829145401716]],[[0.00064179883338511,0.015973525121808,-0.013330915011466],[-0.038480587303638,0.083802364766598,-0.036207649856806],[-0.0030377618968487,0.084445014595985,0.028616523370147]],[[-0.022182919085026,-0.020851340144873,-0.074720531702042],[-0.15183535218239,-0.021650621667504,-0.021216610446572],[0.053751543164253,-0.076579183340073,0.0090794721618295]],[[-0.027828447520733,0.0077695236541331,-0.001005393685773],[0.04218889400363,0.073775500059128,-0.0033754114992917],[-0.12266343832016,0.052689582109451,-0.020956924185157]],[[-0.060635887086391,-0.047322750091553,-0.0042771850712597],[-0.036094941198826,-0.10778609663248,0.048415835946798],[-0.048551458865404,-0.14171023666859,0.014034149236977]],[[0.073998957872391,0.042302176356316,0.059586729854345],[0.0522241294384,0.095070190727711,0.0040630102157593],[0.071062594652176,0.05732399597764,-0.030538912862539]],[[-0.01076508872211,0.024552091956139,-0.011999097652733],[-0.053119596093893,-0.038208149373531,-0.0040265433490276],[-0.031674906611443,-0.068308308720589,-0.001770467730239]],[[-0.01273840200156,0.061818119138479,-0.031201153993607],[0.0081905722618103,0.059970214962959,0.050160724669695],[0.05583743751049,-0.038754507899284,0.052233643829823]],[[0.05714375525713,0.028492335230112,0.08903294801712],[0.027796627953649,-0.012117494828999,0.019292194396257],[0.034772243350744,-0.040658861398697,-0.067450955510139]],[[-0.0052244835533202,-0.056854013353586,0.057797741144896],[-0.075305707752705,-0.055427581071854,-0.036581590771675],[-0.027899054810405,0.0071479757316411,-0.071146942675114]],[[0.055437542498112,0.0080174766480923,-0.0027479212731123],[0.0021688004489988,0.02555244602263,-0.024357384070754],[0.04855040460825,0.019139306619763,0.018974917009473]],[[0.022381417453289,0.043070022016764,0.012880318798125],[0.054173059761524,-0.0015359311364591,0.01807464659214],[-0.040771275758743,0.046786315739155,-0.013841119594872]],[[-0.037806313484907,-0.064238391816616,-0.0070688463747501],[0.043175138533115,0.019007848575711,-0.071500949561596],[-0.00014071827172302,-0.064532749354839,0.011354338377714]],[[0.02973772585392,-0.022744599729776,0.0079333037137985],[0.0092359576374292,-0.042178492993116,-0.049686353653669],[-0.070896312594414,-0.049660909920931,-0.042461860924959]],[[-0.0019069202244282,0.0057037388905883,0.10344696044922],[0.058039367198944,-0.023098366335034,-0.023445062339306],[0.071533150970936,0.011929158121347,-0.031380448490381]],[[-0.1332832723856,-0.045507539063692,-0.019177919253707],[-0.0084857642650604,-0.030990583822131,-0.076337046921253],[0.038580872118473,-0.054100297391415,-0.036146961152554]],[[0.0096390042454004,0.009199577383697,0.0012923672329634],[-0.063984088599682,-0.024434469640255,-0.027101406827569],[0.10624326020479,-0.016291052103043,0.084007441997528]],[[-0.049918349832296,0.006990369874984,-0.00042755494359881],[-0.025338811799884,-0.03084871917963,0.018931007012725],[-0.022084088996053,0.006544956471771,-0.010672487318516]],[[-0.031747281551361,-0.045669890940189,-0.029310911893845],[-0.056231990456581,-0.0046944413334131,0.075907565653324],[0.037829000502825,0.077212430536747,0.03037584386766]],[[-0.041938461363316,-0.022699672728777,0.0035214999224991],[-0.049944695085287,-0.027414305135608,-0.024370562285185],[-0.013040193356574,-0.0079750679433346,0.05097022280097]],[[-0.076402574777603,-0.017222257331014,-0.032359179109335],[-0.025326393544674,-0.038681589066982,0.0095089832320809],[-0.12404544651508,-0.059617627412081,0.070216223597527]],[[-0.049350127577782,0.082634337246418,-0.010680080391467],[0.072223737835884,-0.19001454114914,-0.0037650649901479],[-0.057769317179918,0.0422078743577,-0.051522526890039]],[[-0.054258227348328,-0.038050927221775,-0.048796739429235],[-0.033439643681049,0.045615147799253,0.022748684510589],[0.057333968579769,0.0039294227026403,-9.0126588474959e-05]],[[0.068757101893425,-0.020076399669051,0.045394577085972],[-0.047957353293896,-0.11702592670918,0.038621857762337],[-0.031731132417917,-0.03533623740077,0.030535655096173]],[[0.015372195281088,-0.018156351521611,-0.025542983785272],[-0.075915046036243,-0.016107635572553,-0.006707944907248],[-0.010449322871864,0.0080132521688938,0.078970424830914]],[[0.022386340424418,-0.08118661493063,-0.05683197453618],[-0.0032996933441609,0.026469156146049,0.022015277296305],[0.088766932487488,-0.045722533017397,0.057729948312044]],[[-0.050703652203083,-0.004538634326309,0.026149118319154],[-0.060762479901314,0.0040935566648841,0.032065201550722],[-0.054227158427238,-0.036451674997807,0.037008382380009]],[[0.0058579798787832,0.038920059800148,0.036976203322411],[-0.096626199781895,0.040842648595572,0.0031902063637972],[0.073210142552853,0.011174088343978,0.038870807737112]],[[0.084024615585804,-0.0065226177684963,0.045459680259228],[0.035937204957008,-0.018566491082311,0.028164707124233],[-0.10499657690525,-0.071422167122364,-0.083520084619522]],[[0.049793034791946,0.03531876206398,-0.017926977947354],[-0.005762305110693,0.092944912612438,0.011995007283986],[-0.053512815386057,-0.046198036521673,0.037858001887798]],[[-0.052951596677303,0.067817240953445,-0.012272167019546],[0.057790454477072,-0.096463732421398,0.023294724524021],[0.012783587910235,0.030994703993201,-0.0024223926011473]],[[0.058392189443111,0.029885711148381,0.0028427909128368],[-0.01081619784236,-0.055680833756924,-0.028574282303452],[0.047846172004938,-0.031891316175461,0.0045261578634381]],[[0.037794556468725,0.02600334957242,0.026127852499485],[-0.051680400967598,0.0025514725130051,0.037938747555017],[-0.015451246872544,-0.060159150511026,-0.03367904946208]],[[-0.02641493268311,-0.063901789486408,-0.01599776186049],[-0.035567555576563,-0.044543609023094,-0.079358480870724],[-0.038258355110884,0.016048138961196,-0.0010520257055759]],[[-0.066435657441616,-0.0045957192778587,0.025015261024237],[0.080949977040291,-0.0028542017098516,-0.049852132797241],[0.022131664678454,0.033683087676764,0.013205790892243]],[[-0.028262889012694,-0.052942980080843,-0.036737442016602],[0.033807218074799,0.0099760321900249,-0.01225212495774],[-0.043550286442041,-0.026089895516634,-0.034401319921017]],[[0.032238028943539,-0.051334407180548,0.025986673310399],[-0.0068047316744924,-0.045965243130922,-0.030689690262079],[-0.01939301379025,0.046433042734861,0.028041677549481]],[[0.043950915336609,0.036291401833296,-0.010373220779002],[-0.03895727917552,0.015869488939643,-0.022624777629972],[0.0065400651656091,0.050586182624102,0.017839949578047]],[[-0.036431580781937,-0.047736439853907,-0.028379388153553],[0.0024930275976658,-0.017701122909784,0.0095869265496731],[0.074390135705471,-0.1590588837862,0.034970920532942]],[[0.0016894497675821,0.032072648406029,0.065173961222172],[0.025999611243606,0.011320427060127,0.0068743922747672],[-0.034207116812468,-0.0070094289258122,0.034897714853287]],[[-0.005065490026027,-0.063176460564137,-0.059666596353054],[-0.022388491779566,-0.078329391777515,0.019101826474071],[-0.043369196355343,-0.071631096303463,0.013648404739797]],[[-0.013095343485475,0.068003445863724,-0.0040340921841562],[0.038057148456573,-0.094282880425453,0.042567055672407],[-0.086179785430431,0.026547472923994,-0.021585263311863]],[[-0.012396953999996,-0.016967622563243,-0.012575127184391],[-0.018212774768472,-0.097201555967331,-0.0538823120296],[-0.033010058104992,-0.12335520237684,-0.099671125411987]],[[-0.0068882475607097,0.024396872147918,-0.085045009851456],[0.066344082355499,0.01987380720675,0.044004689902067],[0.0079577136784792,0.045189131051302,-0.010643623769283]],[[-0.014759437181056,0.10867286473513,0.048976320773363],[0.0025341694708914,-0.034850541502237,0.022235551849008],[0.029214533045888,0.014598520472646,0.074557438492775]],[[-0.0067915478721261,-0.029347771778703,-0.023324355483055],[-0.019935805350542,-0.026649149134755,0.019426370039582],[-0.031218603253365,0.10562712699175,-0.029375014826655]],[[-0.055902261286974,0.093998126685619,0.026482444256544],[-0.039129510521889,0.027775140479207,-0.0013750717043877],[-0.053887259215117,0.053825125098228,-0.035051319748163]],[[-0.03938515111804,-0.0091744950041175,-0.075859114527702],[0.016613917425275,0.0018394233193249,-0.054808709770441],[-0.0012882468290627,-0.023653130978346,-0.0021012567449361]],[[-0.00038258524728008,0.035109609365463,0.01240848749876],[-0.012018942274153,-0.068105638027191,-0.040359281003475],[0.022082613781095,-0.0033749721478671,-0.053059663623571]],[[-0.036252047866583,0.015797052532434,-0.021928604692221],[0.050683822482824,-0.063335441052914,-0.046335324645042],[0.039761260151863,0.080365128815174,0.0071981381624937]],[[-0.083109445869923,-0.0092170182615519,-0.044683448970318],[-0.01849228516221,0.035401601344347,0.046235699206591],[0.00042044656584039,-0.10403111577034,0.074870459735394]],[[-0.047843903303146,-0.0080795073881745,0.0039207236841321],[0.055979423224926,-0.035845961421728,-0.043486785143614],[-0.010150791145861,0.038899123668671,0.002129026921466]],[[0.014942203648388,-0.079455107450485,0.035035952925682],[-0.080131247639656,-0.11356677114964,-0.0068421545438468],[0.016640853136778,-0.0091202361509204,-0.027250438928604]],[[0.035797696560621,0.079999975860119,-0.058312427252531],[-0.061081014573574,0.029767321422696,-0.01126619707793],[0.024248838424683,-0.024295657873154,-0.057887617498636]],[[-0.024957461282611,-0.014037203043699,-0.017996029928327],[-0.058178883045912,-0.046780630946159,-0.0079595968127251],[0.052438989281654,-0.031155629083514,0.0083666415885091]],[[0.0075498134829104,-0.034226663410664,-0.046298258006573],[-0.06915957480669,0.073969759047031,-0.007590863853693],[0.023280320689082,0.1161447763443,0.054462213069201]],[[-0.12075860053301,0.0019416097784415,-0.010642881505191],[-0.032049138098955,0.027246015146375,0.012962989509106],[-0.047637436538935,0.019346473738551,-0.020100908353925]],[[-0.014992409385741,0.0042493385262787,0.056500058621168],[0.054748088121414,0.039499498903751,-0.086565278470516],[0.0083953347057104,-0.032709408551455,-0.05241047218442]],[[-0.033582206815481,0.039526883512735,0.029683651402593],[0.068845450878143,0.0031815816182643,0.089334279298782],[0.069592863321304,-0.0029071003664285,0.017201060429215]],[[-0.017401689663529,-0.021996302530169,0.036719277501106],[-0.13087558746338,0.090602122247219,-0.022455068305135],[-0.056883942335844,-0.00040804166928865,0.017686992883682]],[[-0.012591789476573,0.03531077131629,-0.00067655934253708],[0.046708211302757,0.015133550390601,-0.017606502398849],[-0.067800961434841,-0.007651137188077,-0.046965897083282]],[[-0.00085448886966333,-0.003429775359109,-0.034278590232134],[-0.10921628773212,-0.098438672721386,-0.08778104186058],[-0.068117447197437,-0.027159785851836,0.056064676493406]],[[-0.012807106599212,0.026588119566441,0.027333514764905],[-0.062788844108582,-0.064211122691631,0.023627487942576],[-0.025940367951989,-0.0011969794286415,0.0092228706926107]],[[0.0029508699662983,0.025233076885343,0.021174820140004],[-0.077689692378044,0.028025766834617,-0.023556862026453],[0.014308114536107,0.0016146656125784,0.0076046311296523]],[[0.0057634627446532,-0.011617068201303,-0.058850318193436],[-0.0199269130826,-0.10206889361143,-0.051538798958063],[0.075049810111523,0.057161204516888,-0.0087934201583266]],[[0.061813414096832,-0.014105993323028,0.02930436655879],[-0.020501185208559,-0.07656841725111,0.014809778891504],[-0.12620739638805,0.022424377501011,0.012434417381883]],[[-0.02783022634685,-0.076814755797386,-0.051380559802055],[-0.01263662148267,-0.0088157653808594,-0.025680735707283],[0.039906680583954,0.073932938277721,-0.041287861764431]],[[0.041343353688717,-0.025264460593462,0.045592278242111],[0.021785732358694,0.014764610677958,-0.042886007577181],[-0.05699323490262,-0.038790829479694,0.050165642052889]],[[-0.067383259534836,-0.17400659620762,-0.059169553220272],[0.083761818706989,-0.00054704881040379,-0.060161124914885],[-0.042339757084846,0.036639265716076,0.01891341432929]],[[-0.06924769282341,-0.018096981570125,-0.045063734054565],[-0.0096735237166286,0.038480747491121,0.023496335372329],[0.046406883746386,0.02239004150033,0.01340941991657]],[[0.0062538809143007,0.064286597073078,0.032264657318592],[-0.0030341593082994,0.067575417459011,-0.019807193428278],[-0.012832739390433,0.0087048662826419,0.10817034542561]],[[-0.026652628555894,-0.089785911142826,-0.044395841658115],[-0.11076331138611,0.0021213735453784,-0.01057758834213],[-0.0086315320804715,0.0031699067912996,0.0016652420163155]],[[-0.012794456444681,0.046918820589781,-0.018460806459188],[-0.024167308583856,-0.0037493836134672,0.056065060198307],[0.054228406399488,0.063428446650505,-0.10596894472837]],[[0.061630517244339,-0.056481409817934,0.018416875973344],[0.0091685727238655,-0.027850046753883,0.13896791636944],[0.037492621690035,-0.068224519491196,0.026705730706453]],[[0.014168432913721,0.0087423855438828,-0.001053805812262],[0.0077926833182573,0.094337567687035,-0.059669222682714],[-0.012300807051361,-0.04236887767911,-0.038616713136435]],[[-0.065021201968193,-0.017173936590552,-0.057532295584679],[-0.0024599230382591,-0.057062115520239,0.043202854692936],[-0.038643959909678,0.042755164206028,-0.0088381348177791]],[[-0.026219271123409,-0.023386867716908,-0.038202658295631],[0.040700253099203,-0.026770032942295,-0.041779115796089],[-0.081223614513874,-0.039824698120356,-0.0028513353317976]],[[0.010261011309922,0.013713371008635,0.0378806181252],[0.030386349186301,0.057496059685946,0.031258180737495],[0.031995996832848,-0.00073380436515436,0.035968575626612]],[[0.043101754039526,0.014053172431886,0.012320979498327],[-0.02946125715971,0.046911980956793,0.095541439950466],[0.12666240334511,-0.0034123074728996,-0.0046890745870769]],[[0.033279683440924,-0.014496698975563,0.028934257104993],[-0.019068617373705,-0.07208251953125,0.026697669178247],[-0.045313436537981,-0.0059265941381454,0.011325010098517]],[[0.0087153185158968,-0.037464898079634,-0.0045084995217621],[-0.029570378363132,0.031171539798379,-0.046305276453495],[0.020279774442315,-0.028123626485467,-0.035771746188402]],[[0.035337679088116,-0.027394047006965,0.022566832602024],[-0.041138708591461,0.047867227345705,-0.085111938416958],[0.054043602198362,0.049892071634531,-0.0046161198988557]],[[-0.0093441754579544,0.053319729864597,0.079036578536034],[0.0023194735404104,0.010730119422078,0.00062981463270262],[-0.014498731121421,0.078777223825455,0.0066104629077017]],[[-0.0632229372859,0.0043316963128746,0.0038438620977104],[0.013888056389987,0.092554897069931,-0.017900343984365],[0.032560087740421,0.077542319893837,-0.077482834458351]],[[-0.025797344744205,-0.016225036233664,0.023207308724523],[-0.052377533167601,-0.012324327602983,0.012508110143244],[-0.053017165511847,0.051941901445389,-0.017942938953638]],[[-0.015174350701272,0.076129831373692,-0.05136339366436],[0.0049095209687948,0.01710882037878,-0.041994255036116],[-0.05875975638628,-0.062320489436388,-0.025029452517629]],[[-0.099518574774265,0.099966138601303,0.017005488276482],[0.04126151278615,0.019670734182,0.013486666604877],[-0.051748786121607,-0.046016164124012,0.03250827267766]],[[-0.044667262583971,-0.01391973439604,0.048139773309231],[-0.016734538599849,-0.054185904562473,0.023341020569205],[-0.025653399527073,0.065211206674576,0.037046443670988]],[[-0.0030144695192575,-0.062052622437477,0.080657914280891],[0.043662410229445,0.012704716064036,-0.074867531657219],[0.026517197489738,-0.033704780042171,0.12029629945755]],[[-0.040152534842491,0.022231429815292,-0.031633816659451],[-0.031519077718258,0.03105135075748,-0.0049686888232827],[0.06989948451519,0.053957641124725,0.065767884254456]],[[-0.045462027192116,0.023044664412737,0.049197696149349],[-0.025759376585484,0.013622115366161,0.013799211941659],[0.030015543103218,0.028632644563913,-0.012990947812796]],[[-0.01876743324101,-0.0010651395423338,-0.0067333495244384],[0.038964807987213,-0.050242617726326,0.041912999004126],[0.013827032409608,-0.0075051728636026,0.003978444263339]],[[0.049421858042479,0.049213882535696,0.012825455516577],[-0.044095639139414,0.020596707239747,0.067233726382256],[0.026511535048485,0.089775487780571,0.069530740380287]],[[-0.027986396104097,-0.071676999330521,-0.033096991479397],[-0.0044237249530852,-0.063545107841492,0.12229762971401],[-0.028194803744555,-0.025260515511036,-0.0084821293130517]],[[-0.0069398474879563,0.051979649811983,-0.025449389591813],[0.017912764102221,0.057548146694899,0.076151490211487],[0.0081679616123438,0.032770838588476,0.11564268916845]]],[[[0.042427223175764,0.054726988077164,0.010330703109503],[0.052650358527899,0.00032936752540991,-0.030968969687819],[-0.007814759388566,0.04209204390645,0.0016492580762133]],[[-0.042921498417854,-0.065094634890556,0.028363412246108],[0.042951237410307,-0.025912387296557,0.0054003936238587],[0.0809455960989,0.06565223634243,-0.032668251544237]],[[-0.019144477322698,-0.0041530630551279,0.0049671758897603],[0.015758769586682,-0.028181849047542,-0.071324825286865],[-0.013814131729305,-0.050691340118647,0.039066411554813]],[[0.005288069602102,-0.044647917151451,-0.030545804649591],[-0.085410676896572,0.040674179792404,0.013045475818217],[0.04094784706831,0.047101590782404,-0.052961613982916]],[[-0.040943000465631,-0.022853400558233,-0.01439162902534],[-0.032046694308519,0.003162331180647,0.016302919015288],[0.032974533736706,-0.047242216765881,-0.030087368562818]],[[0.016586296260357,-0.013571485877037,0.067427724599838],[0.024481749162078,0.029885862022638,-0.067522376775742],[0.079088769853115,-0.010848827660084,0.057429384440184]],[[-0.0024413473438472,0.0061501613818109,-0.038794748485088],[-0.029399544000626,-0.027460720390081,-0.043810307979584],[-0.0040901857428253,-0.13151986896992,0.065733417868614]],[[0.00023243823670782,-0.026788691058755,-0.016787439584732],[-0.023939011618495,-0.065321728587151,-0.010518472641706],[-0.03735201433301,0.016665076836944,-0.0044248295016587]],[[0.033024948090315,0.021741481497884,-0.089931756258011],[0.049730531871319,0.08929630368948,0.037065379321575],[-0.00032265417394228,0.032383225858212,0.029874114319682]],[[0.07873447239399,-0.045251935720444,0.049070850014687],[0.059415727853775,-0.11016035079956,0.067896880209446],[0.12025332450867,0.14675687253475,0.080217503011227]],[[0.0025432186666876,-0.015086026862264,-0.0070627531968057],[0.0015562494518235,-0.055629767477512,-0.048672042787075],[0.045569844543934,-0.031310491263866,0.0078084794804454]],[[0.025112127885222,0.042545780539513,0.009833044372499],[0.012891383841634,0.028959395363927,0.0004099529760424],[0.04844143986702,-0.0021412454079837,0.057084456086159]],[[-0.02819268591702,-0.025635907426476,0.03333655372262],[0.080367058515549,-0.010696626268327,-0.074812427163124],[0.05029734224081,0.039213664829731,0.031177539378405]],[[-0.039993643760681,0.048860367387533,0.075355492532253],[-0.013514909893274,0.0063140699639916,-0.056143272668123],[0.0014755734009668,-0.036194082349539,0.030445255339146]],[[0.13452668488026,0.11091186106205,0.050805680453777],[-0.041690345853567,0.10079329460859,0.17188832163811],[0.088147290050983,-0.031552068889141,0.1223244741559]],[[-0.01764421351254,-0.039411410689354,-0.023773986846209],[-0.084859021008015,-0.015980480238795,-0.018524454906583],[-0.04639020934701,-0.032533571124077,-0.018323292955756]],[[-0.034577697515488,0.013422733172774,-0.0051850196905434],[0.012113717384636,-0.023383419960737,-0.015408578328788],[0.068428918719292,-0.054440174251795,0.05690174549818]],[[-0.048897743225098,-0.01019867323339,-0.038479525595903],[0.027210012078285,0.025207340717316,-0.0054526352323592],[-0.030793262645602,0.017621818929911,0.025401700288057]],[[-0.015782456845045,-0.028876589611173,0.024412997066975],[0.031906384974718,0.01272424031049,0.020134147256613],[-0.0060443743132055,-0.06268484890461,0.083068452775478]],[[-0.03644448146224,0.067610174417496,0.044437263160944],[0.033538110554218,-0.0034435179550201,0.041032344102859],[0.093633234500885,-0.0071059404872358,-0.0073636770248413]],[[-0.050224438309669,-0.028136420994997,-0.032684218138456],[-0.094597987830639,-0.026167849078774,0.02241531945765],[0.02593701146543,-0.010077107697725,-0.045784056186676]],[[0.085269667208195,-0.0059608658775687,0.039933603256941],[0.040598403662443,-0.0063834171742201,0.038313586264849],[0.068789690732956,0.12546299397945,0.025938944891095]],[[-0.03330610319972,-0.0024436910171062,0.041312966495752],[-0.06779783219099,-0.012255080975592,-0.034497834742069],[0.048463709652424,0.053186353296041,-0.034424025565386]],[[-0.028656186535954,-0.01587918587029,-0.051916502416134],[0.027737410739064,-0.02698053047061,0.030719228088856],[-0.040490441024303,-0.0014334815787151,-0.0094637535512447]],[[-0.011051347479224,0.012190835550427,0.045157622545958],[0.025594707578421,-0.023476392030716,0.051660191267729],[0.031878679990768,0.02987209148705,0.02281316369772]],[[0.032679833471775,0.026304069906473,-0.006076630204916],[-0.045720174908638,0.019452556967735,0.015034793876112],[-0.009085001423955,0.0064401444979012,-0.061662822961807]],[[-0.024300402030349,-0.018378637731075,-0.027615310624242],[0.017454942688346,-0.043329514563084,0.015169535763562],[-0.085933081805706,-0.018876302987337,0.035653047263622]],[[-0.030170561745763,-0.020901415497065,-0.0011504312278703],[-0.062913365662098,-0.014737133868039,0.0027113789692521],[-0.025646144524217,-0.028995899483562,0.075248070061207]],[[-0.035132367163897,0.021978050470352,-0.037907164543867],[0.053200162947178,-0.063894465565681,-0.0044467565603554],[-0.04917861148715,0.057425860315561,0.070752993226051]],[[-0.00097759545315057,0.032267387956381,0.0040569836273789],[0.0015583490021527,-0.0014838296920061,0.00058025179896504],[0.083578288555145,-0.012739116325974,-0.030416974797845]],[[0.01590920239687,0.025607910007238,0.014835861511528],[-0.05412682518363,0.037558637559414,0.034753128886223],[-0.0090878084301949,-0.018352588638663,-0.026204161345959]],[[0.044252444058657,0.0050862836651504,0.04894945025444],[3.9987637137529e-05,0.00092209520516917,-0.037703011184931],[0.05985439196229,-0.044736374169588,-0.041916225105524]],[[-0.031494580209255,0.033223483711481,-0.0038725966587663],[-0.050282042473555,0.045189216732979,-0.0074385572224855],[0.054784201085567,-0.031550370156765,0.040243048220873]],[[-0.030111497268081,0.035209115594625,0.024390323087573],[0.086031623184681,-0.032405525445938,0.083710834383965],[-0.0035769895184785,-0.0066452324390411,0.07142485678196]],[[-0.013296568766236,0.015735231339931,-0.022421587258577],[-0.053139936178923,0.086087711155415,0.034813448786736],[-0.006133243907243,-0.025012040510774,-0.0072967414744198]],[[-0.0092712081968784,0.049681808799505,0.010648064315319],[-0.03561395034194,-0.0078017814084888,-0.018856717273593],[0.058752398937941,0.037775337696075,0.071535244584084]],[[-0.040439296513796,-0.033782497048378,-0.036388751119375],[-0.062164064496756,-0.038082771003246,-0.021589824929833],[-0.037366472184658,-0.04271774739027,-0.024392718449235]],[[-0.040720447897911,-0.0053690946660936,-0.096289798617363],[0.033100068569183,-0.062740780413151,0.0099244769662619],[-0.012530928477645,-0.00089158531045541,0.059973314404488]],[[-0.065869942307472,-0.0095775136724114,0.03439550101757],[0.061209738254547,-0.038810785859823,0.010076066479087],[0.013749602250755,0.10675232857466,0.0021604634821415]],[[0.010653629899025,0.054770916700363,0.063276633620262],[0.018028581514955,0.055718835443258,0.022057147696614],[0.039364077150822,-0.0078387865796685,0.077154457569122]],[[0.025931736454368,-0.035376619547606,-0.00022440814063884],[0.004375564865768,-0.024542234838009,-0.0092422813177109],[-0.03819789737463,-0.077302657067776,0.054719552397728]],[[0.047492228448391,0.020952818915248,0.019894519820809],[-0.0098590888082981,-0.10648359358311,0.058936506509781],[-0.019188934937119,0.03715093806386,-0.027449678629637]],[[0.027512678876519,-0.013822434470057,0.028786674141884],[-0.0069242850877345,0.029788844287395,-0.014762351289392],[0.00731733860448,-0.032843846827745,0.020641971379519]],[[0.0039859372191131,0.038608435541391,0.066553048789501],[0.060077417641878,-0.076464720070362,0.02977498061955],[-0.021868696436286,0.045778959989548,-0.0075766062363982]],[[0.0071027409285307,0.09488981962204,-0.010649565607309],[0.058425910770893,-0.03435106575489,-0.030188845470548],[0.04520296305418,-0.045821692794561,-0.011337471194565]],[[0.031329900026321,0.02703276835382,0.019859921187162],[0.012112484313548,0.041311834007502,-0.022158000618219],[0.040846236050129,0.040751699358225,-0.021869389340281]],[[-0.034481652081013,-0.071839153766632,-0.051841206848621],[0.085452772676945,-0.0052373446524143,0.11998012661934],[0.032132774591446,-0.0050561926327646,-0.033758252859116]],[[-0.050209183245897,0.013050930574536,0.078730426728725],[-0.015315363183618,0.027742030099034,0.054157871752977],[-0.020559124648571,0.066764548420906,0.048121392726898]],[[0.050868585705757,0.015103700570762,0.1258901655674],[0.071831524372101,0.0013271268690005,-0.012573930434883],[0.050707001239061,-0.00040424260077998,0.062035989016294]],[[-0.013782490044832,-0.017278611660004,0.051954571157694],[-0.0075947246514261,-0.062350582331419,0.035767134279013],[0.0022482925560325,-0.048183705657721,0.028965352103114]],[[-0.038741677999496,-0.033750474452972,0.0079776113852859],[0.012873062863946,0.02629267424345,-0.047315951436758],[0.0094046099111438,-0.014143953099847,0.061324153095484]],[[0.0091379508376122,-0.04168101772666,-0.010149535723031],[-0.020010134205222,0.019687876105309,0.014442658051848],[0.0057591199874878,0.019336737692356,0.055376768112183]],[[-0.040086973458529,0.077890262007713,0.027849093079567],[0.0096073877066374,-0.001000058487989,0.022701196372509],[-0.036358810961246,0.0069668581709266,-0.046007201075554]],[[0.0097220409661531,0.0043700765818357,-0.033205695450306],[-0.0046429033391178,-0.029728231951594,-0.0080522214993834],[0.0191570520401,0.02528409846127,-0.019853206351399]],[[0.0066883475519717,0.049961924552917,-0.0046608746051788],[-0.0028884627390653,-0.008426015265286,-0.021140847355127],[0.062904991209507,0.075347766280174,0.017776262015104]],[[0.042718004435301,-0.0085013546049595,0.0084947887808084],[0.019695239141583,0.024647260084748,-0.033070020377636],[-0.025495572015643,0.012097530066967,-0.0015230400022119]],[[0.036959894001484,0.0020352581050247,-0.0073527917265892],[0.023038914427161,0.0005181948072277,0.061647955328226],[0.015817701816559,-0.061684720218182,0.069351695477962]],[[0.036049094051123,0.045056615024805,0.0048578456044197],[-0.051122594624758,0.021748658269644,0.0058388882316649],[0.025134991854429,-0.0093168159946799,0.023533036932349]],[[0.054837424308062,0.025653142482042,-0.062681198120117],[0.00074623740511015,0.087331011891365,-0.0065199588425457],[0.029111888259649,0.025430403649807,0.013352160342038]],[[0.041753295809031,0.0090851113200188,0.07140451669693],[-0.018149638548493,-0.017251869663596,-0.074057690799236],[-0.031339090317488,0.0067436131648719,0.073956191539764]],[[0.01273378636688,0.03570606186986,0.027285357937217],[-0.033757247030735,-0.0075143575668335,-0.059618096798658],[-0.02560617774725,-0.029910488054156,0.080677941441536]],[[-0.012276678346097,-0.0094297947362065,-0.01586552336812],[-0.056357461959124,-0.052394598722458,-0.046590089797974],[0.053590770810843,-0.0094236861914396,0.0056488001719117]],[[0.02763737551868,-0.02385863289237,-0.0045956228859723],[0.02279644459486,0.052255738526583,0.033642828464508],[0.0024885931052268,0.060873944312334,-0.040219131857157]],[[0.069684036076069,0.07890010625124,-0.084816560149193],[0.021387964487076,-0.057421460747719,-0.045169226825237],[-0.041994724422693,-0.054071594029665,0.0038852246943861]],[[0.014589057303965,0.01072486769408,-0.074101492762566],[-0.0050477203913033,0.0057152938097715,-0.032884921878576],[-0.041304491460323,0.023311588913202,0.0072981715202332]],[[-0.012057074345648,-0.020931292325258,0.0068264650180936],[0.013186925090849,0.030743898823857,-0.059378422796726],[-0.0032530301250517,-0.06070313975215,-0.014456215314567]],[[-0.025297276675701,0.10912853479385,-0.004613749217242],[0.022774923592806,0.033337257802486,-0.010488694533706],[0.0038464930839837,-0.049586158245802,-0.036859534680843]],[[-0.0036434538196772,0.052168037742376,0.009157850407064],[0.0089218830689788,0.033563461154699,0.049416538327932],[0.014179334975779,-0.017626075074077,0.036461852490902]],[[0.040009319782257,0.012371385470033,-0.0053980178199708],[-0.018768170848489,-0.0064067281782627,0.050214450806379],[0.0039080446586013,-0.026947036385536,0.019383750855923]],[[-0.020397368818521,0.00088399718515575,-0.028389284387231],[0.054372027516365,0.033898934721947,0.03421600908041],[0.038951747119427,0.00067956297425553,0.061228644102812]],[[-0.004118945915252,0.063987880945206,0.0015084118349478],[-0.043498132377863,-0.06879611313343,0.0054177702404559],[-0.016416804865003,-0.014164381660521,0.0293896086514]],[[0.023741303011775,0.0013925385428593,-0.055645100772381],[-0.012698855251074,0.099985726177692,0.037036634981632],[0.034029439091682,-0.067938268184662,0.069129653275013]],[[0.067345418035984,-0.024628778919578,0.017226343974471],[0.0054332255385816,-0.019948676228523,0.045669876039028],[0.032342195510864,0.020029082894325,0.099537938833237]],[[0.042004685848951,0.025176165625453,0.038474932312965],[0.021673219278455,0.020903317257762,0.030724281445146],[-0.08897715061903,0.023185176774859,0.064942494034767]],[[-0.065825283527374,-0.0057576606050134,0.018502114340663],[0.01063288282603,-0.037643536925316,-0.0016252740751952],[0.046107463538647,-0.0016041218768805,0.067375980317593]],[[-0.032207891345024,-0.011233177036047,-0.0051206760108471],[0.034097675234079,-0.13701257109642,-0.01258903183043],[0.063465587794781,0.034925296902657,0.024991292506456]],[[0.039135862141848,0.016411766409874,-0.017179047688842],[-0.06932444870472,0.019796598702669,0.014996459707618],[-0.0025262518320233,-0.0078107472509146,-0.030144680291414]],[[0.018208384513855,0.10090487450361,0.049595098942518],[0.018055971711874,0.051740515977144,-0.018145680427551],[0.0036703390069306,0.0057561555877328,0.01329414639622]],[[0.049586579203606,-0.023246590048075,0.060724634677172],[0.018793633207679,-0.0057183895260096,0.041463866829872],[0.052820365875959,0.0064492472447455,-0.032389525324106]],[[-0.047708753496408,0.042131964117289,-0.03703835606575],[-0.055938526988029,0.0085183912888169,-0.034147832542658],[-0.0051798517815769,-0.032497987151146,0.041892942041159]],[[0.017266260460019,-0.021017383784056,0.091816529631615],[0.00012699112994596,0.0035878894850612,0.027757061645389],[-0.021806849166751,0.050186689943075,0.0034295078366995]],[[-0.021152069792151,-0.018933232873678,-0.018846752122045],[0.012242322787642,0.038489229977131,0.051737554371357],[-0.05623972043395,-0.023145562037826,-0.0099882893264294]],[[-0.035564325749874,-0.0058987443335354,0.01695447973907],[-0.034189254045486,0.066938228905201,-0.02623437717557],[-0.042741950601339,0.0099021065980196,0.017798082903028]],[[0.05012783780694,0.093214720487595,-0.017714697867632],[0.057336237281561,-0.047232463955879,-0.038274470716715],[0.06774664670229,-0.033085126429796,-0.0200603492558]],[[-0.032218761742115,-0.00057475105859339,-0.020353069528937],[0.047082215547562,-0.018536668270826,0.039463110268116],[-0.0012041929876432,0.061693705618382,0.0079509941861033]],[[-0.010264611802995,0.055942546576262,0.067134886980057],[-0.038605120033026,0.077063381671906,-0.071105562150478],[-0.013789129443467,-0.0068491259589791,0.00016294064698741]],[[-0.013852649368346,-0.040476869791746,0.0091317547485232],[-0.033334285020828,-0.024632230401039,0.021190691739321],[0.075617752969265,0.031342357397079,0.040700122714043]],[[0.028357518836856,0.064433336257935,0.017189621925354],[0.014822515659034,-0.0020112211350352,-0.013862214051187],[0.06187841668725,0.044159281998873,0.023876082152128]],[[0.0037770895287395,-0.02131861820817,0.0053560580126941],[0.010059997439384,0.00052093045087531,-0.022581353783607],[-0.040196981281042,0.01329608168453,0.096860103309155]],[[-0.01835160702467,0.013934662565589,-0.058295279741287],[0.013197002932429,-0.063390210270882,0.028996115550399],[-0.0094319973140955,0.036017660051584,0.0087918667122722]],[[-0.034807607531548,0.072838805615902,-0.038789186626673],[-0.04513019323349,-0.037454601377249,0.0066147153265774],[0.039288397878408,-0.051710933446884,0.0060659605078399]],[[-0.036272823810577,0.025471000000834,0.031605735421181],[0.044751927256584,0.026656448841095,0.053818985819817],[0.025382470339537,-0.01672987639904,-0.0094399712979794]],[[0.018979446962476,0.013681898824871,-0.021350769326091],[0.003640609793365,-0.060808129608631,0.018623661249876],[0.019905840978026,-0.0034662378020585,0.024456508457661]],[[0.031318955123425,-0.007806234061718,0.04935596883297],[0.039569579064846,0.02189003303647,0.0041775912977755],[-0.031003957614303,0.011527821421623,-0.021319473162293]],[[-0.0016107516130432,-0.092881485819817,-0.02189009450376],[-0.025312080979347,-0.00093255954561755,-0.039363157004118],[-0.017750583589077,0.0031989584676921,-0.0085671534761786]],[[-0.053779289126396,-0.028569884598255,-0.053253009915352],[0.059226956218481,0.033113207668066,0.028472702950239],[-0.0027513483073562,-0.0046465755440295,-0.028218895196915]],[[-0.050867032259703,0.022561633959413,-0.031994182616472],[0.062465388327837,-0.0068994825705886,-0.0061220149509609],[-0.0022263007704169,0.042021263390779,0.007842043414712]],[[0.011926559731364,-0.01865235902369,-0.00040853413520381],[-0.004831759724766,0.04866998270154,-0.0010488971602172],[0.022054916247725,0.020302897319198,-0.031136456876993]],[[0.005912683904171,0.041450086981058,0.0016357242129743],[-0.004636412486434,-0.039927206933498,-0.018535638228059],[0.036619774997234,0.05704066157341,-0.0071004615165293]],[[-0.033658064901829,-0.062515266239643,-0.071873240172863],[-0.095992915332317,-0.021978570148349,-0.077009916305542],[0.041161578148603,0.0025249707978219,-0.021212913095951]],[[0.00059516413602978,-0.035422746092081,-0.0068244454450905],[-0.0013450122205541,-0.052688982337713,-0.042825721204281],[-0.012305980548263,0.032044790685177,-0.0083827171474695]],[[0.0057325926609337,0.027972957119346,0.019372781738639],[0.021375976502895,-0.014421876519918,0.063681393861771],[0.05860424041748,-0.015853054821491,0.057499211281538]],[[-0.018739707767963,-0.019304683431983,-0.018142368644476],[0.056171093136072,0.086209639906883,-0.017137037590146],[-0.0085312984883785,0.045678112655878,0.017429079860449]],[[0.017368715256453,0.011096334084868,0.042007498443127],[0.041401717811823,0.057777881622314,-0.0020943740382791],[0.012863265350461,0.015032831579447,-0.011113029904664]],[[-0.063719168305397,0.013138702139258,0.026900365948677],[-0.052507936954498,0.001326899509877,0.00081830675480887],[0.01621562615037,-0.049011778086424,0.036675877869129]],[[-0.041168041527271,0.051949456334114,0.025319604203105],[-0.013183444738388,0.064010575413704,0.01506716106087],[-0.040579050779343,-0.0074606677517295,-0.0012184178922325]],[[0.041724026203156,0.081474103033543,0.057063572108746],[0.053346339613199,0.024958522990346,-0.0046552293933928],[0.027738047763705,0.036993600428104,-0.058829680085182]],[[0.010974918492138,0.026753153651953,0.053221207112074],[0.027219701558352,-0.10531838238239,-0.018859030678868],[-0.020520845428109,0.033103283494711,0.048670306801796]],[[0.035211343318224,-0.017742656171322,0.034004479646683],[-0.0006635460886173,0.034308966249228,-0.028717186301947],[0.015817103907466,-0.016757816076279,0.03296946361661]],[[0.011382430791855,-0.032132685184479,-0.030467335134745],[0.019805051386356,0.02710647508502,-0.050788760185242],[0.018989853560925,0.028833020478487,0.029040077701211]],[[0.030412765219808,0.0042585534974933,-0.071955896914005],[-0.0073369340971112,-0.022487850859761,0.022109653800726],[-0.034670818597078,0.046221423894167,0.025160742923617]],[[-0.013245885260403,0.026832090690732,0.079500071704388],[-0.037253752350807,0.00075351865962148,-0.019633257761598],[-0.012440768070519,-0.020885506644845,-0.027707166969776]],[[-0.057827491313219,-0.059029329568148,0.01172648370266],[-0.033681459724903,0.099591322243214,0.012684895657003],[-0.074109971523285,0.025909557938576,-0.041450187563896]],[[-0.047444112598896,-0.053811471909285,0.058236364275217],[0.035384386777878,0.017704447731376,0.036952428519726],[-0.028358979150653,-0.071974419057369,-0.001537267351523]],[[-0.037179157137871,-0.0053682429715991,-0.049372132867575],[-0.010665613226593,0.041096597909927,-0.043627928942442],[0.013639194890857,0.028129622340202,-0.019314620643854]],[[0.00084345013601705,0.005350733641535,0.053679510951042],[-0.0256079249084,-0.004879314918071,-0.0052781933918595],[0.014845127239823,0.037017349153757,0.0087107568979263]],[[0.0079100849106908,0.025496423244476,0.023113546893001],[-0.012570675462484,-0.00069395219907165,0.051540568470955],[-0.0063111293129623,0.088399223983288,-0.011872903443873]],[[0.0085918279364705,0.039903786033392,0.0027959025464952],[-0.040176462382078,0.041287783533335,0.0014225254999474],[-0.021700652316213,0.023784341290593,0.071658909320831]],[[0.049062933772802,0.0033882390707731,-0.049199752509594],[-0.025502298027277,0.019109334796667,-0.031995251774788],[-0.052408944815397,-0.034837562590837,0.031631004065275]],[[0.025131614878774,0.0056485934183002,0.020721588283777],[0.021606016904116,-0.016622127965093,-0.037301998585463],[-0.068150967359543,0.0063487170264125,-0.011229619383812]],[[0.0043238927610219,-0.0079184742644429,-0.03904726728797],[0.024291893467307,-0.0016641832189634,-0.032786980271339],[-0.024174157530069,0.026650471612811,-0.056250482797623]],[[0.027878871187568,0.026446223258972,0.0030389805324376],[-0.0090763038024306,0.060543607920408,0.019482847303152],[-0.019058736041188,0.028061389923096,-0.017369845882058]],[[0.0015192670980468,0.053259335458279,0.028431268408895],[0.0092298798263073,-0.0019255942897871,-0.046120293438435],[0.035497836768627,0.0084681715816259,0.088903822004795]],[[0.036232452839613,-0.021137220785022,-0.050997532904148],[0.0038495361804962,-0.01424599904567,-0.0013231060001999],[0.011958464980125,0.019594760611653,-0.019751572981477]],[[0.019492166116834,0.00013760340516455,-0.0059132627211511],[0.0021289747674018,-0.0017597666010261,-0.054857600480318],[-0.0070179370231926,0.057936549186707,0.030842855572701]],[[0.012565353885293,0.0079034538939595,-0.031053053215146],[-0.034569647163153,-0.051806099712849,0.0045127379707992],[0.00031575973844156,-0.0073171518743038,-0.076096162199974]],[[0.033473994582891,0.021629940718412,0.047809116542339],[0.020464720204473,-0.023301724344492,0.0072125964798033],[0.045614872127771,0.022667391225696,-0.079024665057659]],[[-0.029994117096066,0.0021656460594386,-0.071078419685364],[-0.03128170594573,0.022519636899233,-0.062740698456764],[0.0023532740306109,0.00053369416855276,0.034080591052771]]],[[[0.048157501965761,0.013241618871689,-0.039161808788776],[0.073683694005013,0.094327375292778,0.051208171993494],[0.055373165756464,0.05417562276125,-0.0036316085606813]],[[0.034984566271305,-0.034728188067675,-0.026120025664568],[0.036551501601934,0.0066726561635733,0.038207750767469],[0.035397924482822,0.050757274031639,-0.047470439225435]],[[-0.039782039821148,0.081402882933617,0.050263822078705],[-0.0001958936045412,-0.053895052522421,0.022966980934143],[0.02232464030385,0.062222477048635,-0.026636229828]],[[-0.009791161864996,0.029171377420425,-0.039173595607281],[0.0029248776845634,0.013830120675266,0.024304900318384],[0.0084892399609089,-0.012928359210491,0.096042297780514]],[[-0.0018780532991514,-0.01389567553997,-0.022993257269263],[-0.013512163423002,0.043025113642216,0.15343667566776],[0.02442973293364,0.064425393939018,-0.050299540162086]],[[0.096357151865959,0.039335258305073,-0.028080206364393],[0.024956613779068,-0.026946997269988,0.030866183340549],[0.010854732245207,0.058271799236536,0.0055139400064945]],[[0.04339886829257,-0.01953493617475,0.0051689855754375],[-0.0081793470308185,0.01064458116889,0.08062806725502],[-0.07855961471796,0.033940672874451,0.06100856885314]],[[0.026092952117324,0.030287256464362,-0.044912032783031],[-0.055737361311913,0.027497500181198,0.020858263596892],[-0.040943689644337,0.060056120157242,0.018537405878305]],[[0.014383340254426,-0.055771581828594,0.043875526636839],[0.036329951137304,0.055089354515076,-0.013919191434979],[0.034237802028656,0.026203226298094,0.080224402248859]],[[0.092301189899445,-0.00450847344473,0.035730350762606],[0.068926021456718,0.062006514519453,-0.031508978456259],[-0.032613798975945,-0.0039309305138886,-0.11133700609207]],[[0.035197000950575,-0.058576665818691,0.033822003751993],[0.028932377696037,0.011891902424395,0.0033740513026714],[0.062726609408855,0.028173934668303,0.038615137338638]],[[0.087017267942429,0.0020300857722759,0.067706562578678],[0.038422144949436,-0.011734585277736,0.14515028893948],[0.047684472054243,0.045968115329742,-0.0036001317203045]],[[0.062850147485733,-0.056447766721249,0.017861312255263],[-0.041570506989956,0.0065360032021999,0.014670321717858],[-0.025369185954332,0.021026097238064,-0.022900573909283]],[[-0.029201045632362,-0.0094484593719244,0.041864942759275],[0.16795261204243,-0.0096676116809249,0.041298992931843],[0.075619712471962,0.030794765800238,-0.030053606256843]],[[0.049618922173977,0.13987427949905,0.069793224334717],[0.034394927322865,0.092739291489124,0.13440480828285],[0.08193614333868,-0.039263837039471,0.0038496535271406]],[[-0.0085328267887235,-0.0092664733529091,-0.049891579896212],[0.002727473154664,0.017811950296164,-0.072441034018993],[0.043440796434879,-0.082646578550339,0.0030186991207302]],[[-0.025640999898314,-0.0071062175557017,-0.026998637244105],[0.1042520776391,-0.046612072736025,0.033204361796379],[0.087275795638561,0.0029690223746002,0.025001030415297]],[[-0.0062129213474691,-0.029392812401056,0.074216909706593],[-0.044993706047535,0.0045827659778297,-0.084377758204937],[0.047703057527542,-0.006007922347635,0.023792028427124]],[[0.066116645932198,-0.048579823225737,0.086118094623089],[0.042763274163008,0.094176135957241,0.035396214574575],[-0.031996853649616,0.079284764826298,-0.02511477842927]],[[-0.00094286701641977,0.058261401951313,-0.029928466305137],[-0.038616705685854,0.034379076212645,-0.0060540423728526],[0.072398208081722,0.052922483533621,0.037443101406097]],[[0.037982039153576,0.019524548202753,0.06073285639286],[-0.029335329309106,0.013489210046828,0.0074060498736799],[-0.063260324299335,-0.018646769225597,0.04785655811429]],[[0.0091718714684248,-0.017388204112649,0.044808659702539],[-0.020803723484278,0.033178761601448,0.042225670069456],[0.0097508076578379,0.020377764478326,-0.020332965999842]],[[0.08744877576828,0.029297152534127,0.052661016583443],[0.0089696906507015,-0.033462218940258,-0.0089308610185981],[-0.011072950437665,0.078616127371788,0.093158230185509]],[[0.083966933190823,0.030769152566791,-0.0052589904516935],[0.040262918919325,-0.091334842145443,0.0032685624901205],[0.059355866163969,-0.042000766843557,-0.0021288401912898]],[[0.0086218025535345,-0.043380927294493,0.11190740019083],[-0.03609612211585,-0.053199633955956,0.032821342349052],[0.10823688656092,-0.12566283345222,0.037297528237104]],[[-0.041158959269524,0.036155838519335,0.013626371510327],[0.0079435603693128,-0.034233964979649,-0.021369488909841],[0.022617697715759,-0.012520182877779,0.022397499531507]],[[0.019092766568065,-0.022768296301365,-0.050234083086252],[0.095267295837402,-0.01565096154809,0.0052400678396225],[-0.086388923227787,-0.031102919951081,-0.022484822198749]],[[-0.059935364872217,-0.009386295452714,0.0046374932862818],[-0.037594810128212,0.045843780040741,-0.017366837710142],[0.023652374744415,-0.038062363862991,0.047149147838354]],[[0.032016605138779,-0.011682477779686,0.0059069436974823],[0.089411593973637,-0.053386148065329,0.044644024223089],[0.016183882951736,0.003396978136152,0.025612249970436]],[[-0.098937682807446,0.076382771134377,-0.0040793777443469],[0.0427276045084,-0.073030650615692,0.0034801329020411],[0.083886176347733,0.045273281633854,0.0064125899225473]],[[0.040044777095318,0.030850056558847,-0.047388073056936],[0.013454403728247,-0.041732229292393,0.041425257921219],[-0.0049760029651225,0.052189163863659,0.025885241106153]],[[-0.046945471316576,0.03430412709713,0.0095125865191221],[-0.0085008405148983,0.040951441973448,0.033022500574589],[0.022830402478576,-0.097978286445141,-0.065957449376583]],[[0.01400685403496,-0.045254811644554,-0.060548078268766],[0.020595286041498,0.050140965729952,0.052964925765991],[0.029440812766552,0.060216039419174,0.057655349373817]],[[-0.014666523784399,-0.02721287496388,0.086759708821774],[0.00010288846533513,-0.059764251112938,0.027215432375669],[0.0014306934317574,0.010902214795351,-0.018439600244164]],[[0.0079401088878512,0.042561668902636,-0.025851847603917],[0.0081018470227718,0.038398794829845,0.045738495886326],[-0.027600871399045,-0.0068194083869457,-0.02280306071043]],[[0.034199189394712,-0.032766524702311,0.068231366574764],[0.031378865242004,-0.010147002525628,0.033108096569777],[-0.0073745572008193,0.0025381306186318,-0.0048965029418468]],[[-0.016722779721022,-0.0096474615857005,0.0089427381753922],[0.052870787680149,0.001116689061746,-0.037652380764484],[-0.027615817263722,-0.013281815685332,0.048849020153284]],[[0.041142258793116,-0.0011067022569478,0.0057990592904389],[-0.0086051840335131,0.033411916345358,0.072700992226601],[0.034098125994205,0.045058593153954,0.036923781037331]],[[0.051254205405712,0.012804311700165,0.00085016060620546],[-0.015284283086658,0.035799328237772,-0.025109943002462],[0.042702309787273,-0.043341759592295,0.034904833883047]],[[0.029485451057553,-0.0051186955533922,-0.0094684641808271],[0.046345312148333,0.039572793990374,-0.014499751850963],[0.026739992201328,0.011510440148413,0.0080572599545121]],[[0.047879301011562,-0.031070645898581,-0.029884422197938],[0.00038736866554245,0.043156247586012,0.048361860215664],[-0.056303177028894,-0.028448591008782,-0.028142957016826]],[[0.0022952470462769,0.025771396234632,0.052808120846748],[0.0039803748950362,0.00061002536676824,0.048729091882706],[0.016586817800999,0.075702734291553,-0.016428573057055]],[[0.028449084609747,0.017546089366078,0.0533014126122],[0.092717230319977,-0.025960391387343,0.0043426980264485],[0.012993721291423,0.059809047728777,-0.018659494817257]],[[-0.043948128819466,0.11673999577761,0.056141998618841],[-0.02060704678297,-0.0085413297638297,0.038593057543039],[0.031431771814823,-0.009857676923275,0.010602838359773]],[[0.039943523705006,-0.035612672567368,0.0071535753086209],[-0.020540911704302,-0.048298556357622,0.041416328400373],[0.025326335802674,0.043352637439966,0.005261043086648]],[[0.021411975845695,0.12018050253391,-0.029498869553208],[0.090956881642342,0.049271699041128,-0.032865472137928],[0.10812968015671,-0.052258793264627,0.056674782186747]],[[-0.0090055409818888,0.0058420398272574,0.027000393718481],[0.065901972353458,0.013623856008053,0.012644427828491],[0.047992363572121,-0.003675437765196,-0.0055247968994081]],[[0.027005104348063,-0.018160350620747,-0.01219786144793],[0.13562925159931,-0.032689098268747,0.15774205327034],[-0.010743524879217,0.062118586152792,-0.041641272604465]],[[0.004408361390233,0.066134408116341,-0.031819589436054],[0.047456759959459,-0.041410222649574,0.050921130925417],[-0.014599452726543,-0.017755903303623,0.052292946726084]],[[0.0093125132843852,-0.0073458962142467,-0.037857994437218],[0.0037390883080661,0.0028488754760474,-0.026886330917478],[-0.066076852381229,0.037577539682388,-0.027721980586648]],[[0.02462169714272,-0.058072175830603,-0.11318930238485],[-0.0063649136573076,-0.014428962022066,-0.030829295516014],[0.013376395218074,-0.025323435664177,-0.012901473790407]],[[0.058878142386675,0.0093733109533787,0.01251866389066],[0.025398373603821,0.028771940618753,0.0075313108973205],[0.051449149847031,0.049984030425549,-0.020524444058537]],[[-0.005562954582274,0.0078703751787543,-0.04555930942297],[0.055489752441645,-0.0056351567618549,0.057876836508512],[0.059277556836605,0.043266288936138,-0.048951350152493]],[[-0.00048308627447113,0.018959164619446,-0.035070441663265],[0.088555566966534,0.026317790150642,0.010382493026555],[0.039098642766476,0.035220172256231,-0.039384629577398]],[[0.022518750280142,-0.01010824367404,-0.018776468932629],[-0.03006910905242,0.076151341199875,-0.036065801978111],[0.0077234990894794,0.0039795963093638,-0.0029247833881527]],[[0.009646219201386,0.046133100986481,0.011053363792598],[-0.032509792596102,0.056580722332001,-0.018638154491782],[-0.091152518987656,0.04864251986146,-0.061718493700027]],[[0.081677846610546,-0.00027525069890544,0.0086795557290316],[-0.038861434906721,0.028140055015683,0.010795430280268],[-0.026007173582911,-0.033641207963228,0.049422632902861]],[[-0.011445007286966,0.031935602426529,0.044268254190683],[-0.018875606358051,-0.0022682156413794,0.04730112478137],[0.04005254432559,0.012852722778916,0.028224505484104]],[[0.032572101801634,0.015289712697268,0.013426621444523],[-0.0093450890854001,0.010616415180266,0.052665814757347],[-0.028155380859971,0.0011547459289432,0.11298768222332]],[[0.031223326921463,0.018518915399909,0.017882896587253],[-0.034989822655916,0.05573108792305,0.05147935077548],[0.010287689045072,0.020281149074435,-0.065281055867672]],[[-0.02786330319941,-0.10620103031397,-0.017586976289749],[-0.065433979034424,-0.0085900127887726,0.021824324503541],[0.077119052410126,0.0010975210461766,-0.032788958400488]],[[-0.044667959213257,0.012830870226026,0.022234486415982],[-0.007428471930325,-0.0032749995589256,-0.069698147475719],[-0.012010906822979,0.027091486379504,0.012770012021065]],[[0.018943602219224,0.0245764516294,0.0010486348764971],[0.076429851353168,0.041323337703943,-0.014319838955998],[0.010712035000324,0.0071095004677773,-0.055399488657713]],[[0.0064745103009045,0.022463534027338,0.0084660649299622],[0.045142564922571,0.053661677986383,0.0074761686846614],[0.12231935560703,-0.024072388187051,-0.045137140899897]],[[0.025511641055346,-0.014822779223323,0.074837692081928],[0.011524508707225,0.05467276647687,0.056658364832401],[0.021432092413306,-0.057740263640881,0.053290158510208]],[[0.021083738654852,0.071766957640648,0.050965912640095],[0.0045763305388391,0.028071483597159,-0.046703781932592],[-0.032522905617952,-0.014864455908537,-0.019493505358696]],[[-0.058964986354113,-0.036014564335346,0.048417378216982],[-0.0090161357074976,0.0464085675776,0.051901195198298],[-0.052692662924528,0.061179902404547,0.073277465999126]],[[0.080110140144825,-0.014274746179581,-0.0089275743812323],[0.033256910741329,0.014010967686772,0.057286117225885],[0.061520799994469,0.045795671641827,-0.015781255438924]],[[0.052474826574326,-0.022587243467569,-0.0087983310222626],[-0.056078653782606,-0.040018554776907,-0.01156715862453],[0.035964034497738,-0.045910354703665,0.030625406652689]],[[0.004249470308423,0.015691433101892,0.034443281590939],[-0.021101282909513,0.015268919058144,0.050869461148977],[-0.0034438730217516,0.043663404881954,0.038120713084936]],[[-0.025236565619707,-0.028445046395063,0.0038534319028258],[0.014461959712207,-0.015609471127391,0.02262575738132],[0.071832656860352,-0.020303105935454,-0.0066836243495345]],[[0.0086566526442766,-0.039763547480106,0.039454251527786],[0.068090081214905,0.077623479068279,0.015411478467286],[-0.020841771736741,-0.037537466734648,0.050565116107464]],[[-0.017868895083666,0.033146515488625,0.043450586497784],[-0.017122521996498,0.087591625750065,-0.054979048669338],[0.086231432855129,0.013294911012053,-0.018185617402196]],[[0.038945384323597,-0.041190262883902,0.029286660254002],[-0.012726915068924,0.0073775346390903,0.025857381522655],[-0.055636525154114,0.048391755670309,-0.00096803135238588]],[[0.019402263686061,0.037535861134529,-0.013629299588501],[-0.028892487287521,-0.053107488900423,0.060966167598963],[0.0092997243627906,0.048197757452726,-0.046381752938032]],[[-0.099496617913246,-0.052276156842709,-0.010984478518367],[-0.011908026412129,-0.011738295666873,0.017303815111518],[-0.035153668373823,0.0010831776307896,0.016594627872109]],[[0.03930926695466,-0.0079532228410244,0.0077881007455289],[-0.059856235980988,0.048772528767586,-0.029318125918508],[-0.029818911105394,0.099253632128239,0.051547683775425]],[[-0.021021861582994,0.03232054412365,-0.067195571959019],[0.050014860928059,-0.094825714826584,-0.009346891194582],[0.0052522760815918,0.0023041772656143,0.047393638640642]],[[-0.0012991168769076,-0.018637595698237,0.063850797712803],[0.0064106658101082,-0.033842969685793,0.031439032405615],[-0.00010742554877652,-0.075522616505623,0.04572881013155]],[[-0.036878392100334,-0.096829295158386,-0.014018785208464],[0.026050761342049,-0.034521885216236,-0.03755509853363],[-0.013879453763366,-0.00817253254354,-0.015262151136994]],[[-0.045306269079447,-0.015480655245483,0.001512084971182],[0.0043936343863606,-0.031968060880899,0.02906820550561],[-0.00043558175093494,0.063626021146774,-0.013393944129348]],[[0.092611260712147,0.013112850487232,-0.095702238380909],[-0.0015582444611937,0.032864730805159,0.0083585334941745],[-0.079457938671112,0.001431095181033,-0.0044349832460284]],[[-0.021081233397126,0.10869704931974,-0.00019997534400318],[-0.029918327927589,0.04148904979229,0.021961273625493],[0.067422024905682,-0.018996626138687,0.034634683281183]],[[0.1286063939333,0.00050488353008404,0.0024175974540412],[-0.0018542414763942,0.022476555779576,-0.05001188442111],[-0.068382553756237,0.098924227058887,0.042220994830132]],[[-0.019847832620144,0.0093235140666366,0.039739914238453],[-0.035786557942629,-0.015216616913676,-0.03435917571187],[0.031361360102892,0.05638438090682,0.029634522274137]],[[0.021244352683425,-0.0063498257659376,-0.057794541120529],[0.0060149976052344,0.075990818440914,-0.083471417427063],[0.039124462753534,-0.014594736509025,-0.011912686750293]],[[0.02729700319469,0.04102049767971,-0.027576424181461],[0.020673908293247,0.0016948590055108,-0.017523359507322],[0.087038703262806,-0.0068880263715982,0.039159398525953]],[[-0.010747543536127,0.051260564476252,0.067857995629311],[0.088694788515568,0.044446732848883,0.056896656751633],[0.046979937702417,-0.0026420361828059,0.0058513726107776]],[[0.081594526767731,-0.03043107688427,-0.0082426881417632],[0.06245468556881,-0.028547715395689,-0.039663508534431],[0.037827417254448,0.044485948979855,-0.088133983314037]],[[-0.028600919991732,-0.0147710070014,0.038881160318851],[0.049372676759958,0.039696764200926,-0.024706672877073],[0.073201783001423,0.086366534233093,0.052945926785469]],[[0.020855585113168,0.058778118342161,-0.03664918243885],[0.002397753065452,0.010123328305781,0.10782690346241],[0.028861051425338,-0.0058770324103534,-0.0062587661668658]],[[0.062862709164619,0.049275506287813,0.0028222624678165],[-0.016847202554345,-0.0039261523634195,-0.038544725626707],[-0.014109274372458,-0.0053756753914058,0.034076277166605]],[[0.02210739441216,-0.091891936957836,0.079294629395008],[0.017445188015699,-0.022519273683429,0.036575306206942],[0.025744721293449,-0.015876704826951,0.070346601307392]],[[-0.061914138495922,0.0070089004002512,0.060763590037823],[-0.015217322856188,0.042590759694576,0.045099154114723],[0.022730108350515,0.051356729120016,-0.0073526776395738]],[[0.011842239648104,0.07801266014576,-0.034748502075672],[0.075190134346485,0.011361827142537,0.014788726344705],[0.0034633697941899,-0.089940331876278,-0.018928233534098]],[[-0.052573457360268,0.033645521849394,0.11508291214705],[0.029914347454906,0.0064778430387378,0.071230687201023],[0.059394121170044,0.12742221355438,0.089616604149342]],[[0.036630161106586,0.043584655970335,0.093479134142399],[0.1335134357214,-0.066872857511044,0.035199873149395],[-0.044561825692654,-0.074878767132759,0.028077445924282]],[[-0.045619897544384,-0.12927098572254,0.03907685726881],[-0.031226433813572,0.046886689960957,0.099149711430073],[-0.01243906840682,0.0094169192016125,-0.013909429311752]],[[-0.0019460219191387,0.011058490723372,0.018678473308682],[0.0089647704735398,-0.0097288154065609,-0.032302591949701],[0.040246464312077,-0.021732907742262,0.042468257248402]],[[-0.066789180040359,-0.067551977932453,-0.029158111661673],[-0.10962089151144,0.030647035688162,0.080895848572254],[-0.0037480108439922,-0.013708668760955,0.043037079274654]],[[-0.076972015202045,0.036037895828485,0.025678595528007],[0.016184125095606,0.087682314217091,0.040441188961267],[-0.011933879926801,0.05706724897027,0.050627876073122]],[[-0.013663088902831,0.099816754460335,0.076551429927349],[-0.03174714744091,0.037205342203379,-0.0042483322322369],[0.060253225266933,0.0076255211606622,0.047713343054056]],[[-0.011718194931746,-0.0073546916246414,0.056468598544598],[-0.024551268666983,-0.0019987158011645,0.020745310932398],[-0.027840221300721,0.0095723150297999,-0.036214862018824]],[[-0.039718899875879,-0.037224732339382,4.8583326133667e-05],[-0.025268152356148,0.054550509899855,-0.022390834987164],[-0.053541887551546,0.096240751445293,0.067152984440327]],[[-0.01387476362288,0.088108524680138,0.1134035140276],[0.048217114061117,-0.0661331564188,0.0071810651570559],[0.027700386941433,-0.011178805492818,0.07884856313467]],[[-0.032657496631145,0.0073934220708907,0.021110754460096],[0.077255040407181,-0.0030852390918881,0.019979605451226],[0.0018554532434791,-0.065722793340683,0.009104928933084]],[[-0.031402986496687,0.022006651386619,-0.04818994551897],[0.032411299645901,0.054513238370419,0.031822502613068],[-0.077935442328453,-0.027065744623542,0.022999793291092]],[[-0.052764613181353,-0.024325858801603,-0.048599507659674],[-0.020395088940859,-0.056209683418274,0.052769504487514],[-0.00028631734312512,0.08158552646637,-0.0041690017096698]],[[0.02845099568367,0.020811706781387,-0.026168145239353],[0.029049584642053,0.090345717966557,0.066192574799061],[-0.020270485430956,0.08450348675251,-0.00096399686299264]],[[0.029899556189775,-0.017403811216354,-0.054201368242502],[0.020635157823563,0.064690388739109,0.059274964034557],[0.0013304532039911,-0.076595805585384,-0.042721439152956]],[[-0.005296029150486,-0.020477641373873,0.059498880058527],[0.033450473099947,0.02891812287271,-0.01195197366178],[0.060012616217136,-0.044406395405531,-0.076813377439976]],[[-0.023621939122677,-0.033539537340403,-0.016731955111027],[0.026466960087419,0.051819104701281,0.040284182876348],[0.03480825945735,0.058852471411228,-0.065929971635342]],[[-0.0071124969981611,0.034819971770048,-0.0434824898839],[-0.049579288810492,-0.022462444379926,0.055038206279278],[0.048754975199699,-0.058251775801182,-0.045174613595009]],[[-0.02898414991796,0.0097627267241478,-0.07813261449337],[-0.014921013265848,-0.03009938262403,0.01349769718945],[-0.032133057713509,-0.051783539354801,0.11286985129118]],[[-0.02034460939467,-0.094656810164452,0.023670125752687],[0.0525723695755,-0.058830007910728,0.038410063832998],[0.010603294707835,0.043396547436714,-0.016750939190388]],[[0.063067503273487,0.024726275354624,-0.010977336205542],[0.0019358098506927,0.0026184299495071,0.034936871379614],[0.023824011906981,0.080513089895248,0.032598208636045]],[[-0.032093621790409,0.034316878765821,0.021477928385139],[0.064499743282795,0.022367553785443,-0.030859611928463],[-0.021265821531415,0.031048599630594,0.011896938085556]],[[-0.0025101727806032,0.0080326767638326,0.014749109745026],[0.0027514970861375,0.023918712511659,0.063268251717091],[0.0074519142508507,-0.072806753218174,0.057820178568363]],[[-0.018061842769384,0.088293291628361,0.014526199549437],[0.033822312951088,-0.036290690302849,0.019977068528533],[-0.0055961487814784,-0.040487237274647,-0.033038403838873]],[[-0.042374394834042,-0.039094753563404,-0.022607024759054],[0.00072702480247244,-0.021767633035779,0.013823474757373],[-0.038166642189026,-0.036501783877611,-0.0014785152161494]],[[0.069633223116398,0.025728061795235,0.055517327040434],[0.10624977201223,0.0097586829215288,0.020527875050902],[0.051320791244507,0.066136829555035,0.021146561950445]],[[-0.00047625674051233,0.062683992087841,0.06921524554491],[0.031645532697439,-0.017178950831294,0.0045557306148112],[-0.11273376643658,0.084100037813187,0.0096485391259193]],[[-0.041473366320133,0.024280488491058,-5.9419580793474e-05],[0.060077149420977,-0.018272563815117,0.0045016547665],[-0.013431699946523,0.022953161969781,0.082372188568115]],[[0.026679223403335,0.044507209211588,-0.061167262494564],[0.004757110029459,0.043471269309521,4.1175408114213e-05],[0.040558997541666,-0.048969388008118,0.022751946002245]],[[-0.042803291231394,-0.012728442437947,0.0082461182028055],[0.0043945498764515,-0.065664432942867,0.0039426535367966],[0.073769636452198,0.083767287433147,-0.066174149513245]],[[0.08943585306406,0.0055273049511015,0.051734689623117],[-0.00090039474889636,0.053922273218632,0.011158026754856],[0.026568230241537,0.051319364458323,0.1042540743947]],[[-0.028724849224091,0.037032213062048,-0.026797622442245],[0.064715966582298,-0.0082452669739723,-0.017315972596407],[0.083015643060207,0.078740283846855,0.035189628601074]],[[0.017114324495196,0.0065512917935848,0.0024790677707642],[0.080631732940674,-0.003002613550052,-0.022832751274109],[-0.037441164255142,-0.035203505307436,-0.021409878507257]]],[[[0.034743025898933,-0.024333907291293,-0.069538041949272],[0.035429324954748,0.064118817448616,-0.046480808407068],[-0.026853134855628,0.0080139031633735,0.030252262949944]],[[0.01440941914916,-0.080557651817799,-0.012417434714735],[0.012098487466574,-0.022367553785443,-0.074291743338108],[0.014452552422881,-0.031663540750742,-0.023669956251979]],[[0.0016913026338443,-0.026033747941256,0.087380111217499],[0.053418569266796,-0.035081807523966,-0.016633262857795],[-0.013863502070308,0.019846996292472,0.015214117243886]],[[0.017422787845135,0.048446502536535,-0.012157199904323],[-0.037349686026573,-0.025604952126741,0.0063923080451787],[-0.01787506788969,0.0060452804900706,-0.028640069067478]],[[0.0068657607771456,0.0086387768387794,-0.015891442075372],[-0.027887109667063,-0.045754548162222,0.034651968628168],[0.043035984039307,0.014075981453061,0.0098718469962478]],[[0.069829739630222,0.046191919595003,0.061650767922401],[-0.026027271524072,0.074190080165863,0.022925760596991],[0.03684664145112,0.03112131357193,0.075520910322666]],[[0.037334818392992,0.040831256657839,-0.010824990458786],[-0.00034441263414919,-0.054733570665121,-0.050876047462225],[-0.00016703191795386,0.039906747639179,0.063663110136986]],[[-0.027608264237642,0.013078795745969,-0.0043190876021981],[-0.04629460722208,-0.02156319282949,0.043947540223598],[0.013579337857664,0.012446592561901,-0.033150546252728]],[[0.084555901587009,-0.05818172544241,0.074592962861061],[0.065425239503384,0.015633512288332,0.087451189756393],[0.10290127247572,-0.014039463363588,0.0065859192982316]],[[0.02744254283607,0.10126924514771,0.12155628204346],[0.02320565842092,-0.020090214908123,0.061755027621984],[0.051283463835716,0.164361089468,0.083438098430634]],[[0.040492404252291,0.035706758499146,0.044145457446575],[0.0034129221457988,-0.018618175759912,0.070960119366646],[-0.078702569007874,-0.025313602760434,0.013744359835982]],[[0.032072938978672,0.051482629030943,0.06928314268589],[-0.01450689136982,-0.046602077782154,0.033313259482384],[0.075964920222759,-0.052500579506159,0.036440495401621]],[[-0.035305131226778,-0.01604600250721,-0.032886981964111],[-0.010405411943793,-0.053998257964849,0.041501894593239],[0.014319585636258,0.050383273512125,0.031950742006302]],[[-0.048920426517725,-0.06366129219532,-0.009212645702064],[-0.032091084867716,-0.0193074606359,-0.049449302256107],[0.03644336014986,0.052140489220619,-0.061393812298775]],[[0.15257214009762,0.08575128018856,-0.027807995676994],[-0.080239973962307,0.026385286822915,0.038536634296179],[0.018352130427957,-0.007190422154963,0.057797782123089]],[[0.015766315162182,0.019772559404373,0.02988856844604],[-0.012879940681159,0.10525447875261,-0.0054989368654788],[-0.03556440025568,-0.0316366776824,0.011474003084004]],[[-0.037452518939972,-0.086385950446129,0.04077211394906],[0.075251497328281,0.027686325833201,-0.053217586129904],[-0.0042686588130891,0.034691147506237,0.037369217723608]],[[-0.031463213264942,0.018858732655644,0.008765515871346],[0.11476417630911,-0.059520471841097,-0.033817853778601],[-0.0061889099888504,-0.0075963139533997,0.075202614068985]],[[-0.028097502887249,-0.031150374561548,0.048590376973152],[0.046806655824184,-0.05286368355155,0.037339765578508],[-0.076600551605225,0.076905772089958,0.063312441110611]],[[0.067630656063557,0.014185667037964,-0.055827297270298],[-0.066408321261406,-0.000916613265872,0.018421424552798],[0.055214151740074,-0.056461472064257,-0.043240673840046]],[[-0.029577761888504,0.010616864077747,-0.031417973339558],[-0.019230490550399,0.043265089392662,-0.045902345329523],[0.037968333810568,0.060291271656752,-0.024664785712957]],[[0.050761796534061,0.044486235827208,0.063471168279648],[0.036557406187057,-0.0066760582849383,-0.0037122152280062],[-0.0068085305392742,0.092153429985046,0.033698547631502]],[[0.0056823524646461,-0.018893796950579,-0.03851181268692],[-0.028937542811036,-0.013146573677659,-0.015864465385675],[-0.002980632474646,0.0012755705974996,-0.024181991815567]],[[0.1073475331068,0.031567454338074,-0.088823519647121],[-0.0041473219171166,-0.010830266401172,0.067459754645824],[-0.031596045941114,-0.014984221197665,-0.028783161193132]],[[0.014338847249746,-0.0084048891440034,0.052937220782042],[-0.070536449551582,-0.049351498484612,-0.043611481785774],[0.029188627377152,0.011434552259743,0.019480332732201]],[[-0.027980184182525,-0.0071761799044907,0.016446318477392],[-0.056985203176737,0.0038754984270781,-0.092712186276913],[0.096272267401218,-0.047608334571123,-0.042911771684885]],[[0.08545196056366,-0.041566364467144,-0.01503215637058],[0.017458559945226,0.02674319036305,-0.0087332902476192],[0.01768596470356,0.010771035216749,0.063437908887863]],[[0.029017044231296,0.043946381658316,0.0042267609387636],[-0.00018404162256047,0.052026271820068,0.021635847166181],[-0.032987389713526,-0.028939925134182,0.053747083991766]],[[0.063662558794022,0.042602796107531,-0.011280799284577],[0.03869317471981,0.0044130650348961,0.049157746136189],[0.013839744962752,0.0063425237312913,0.061943091452122]],[[0.056675858795643,-0.024718686938286,-0.032509852200747],[-0.0061913295648992,0.037027657032013,-0.015738725662231],[-0.011733089573681,-0.11628400534391,0.05755728110671]],[[-0.014647865667939,-0.0023704096674919,0.025198679417372],[0.071082085371017,0.061339404433966,0.025996848940849],[0.025065330788493,-0.0012416045647115,-0.0095817409455776]],[[-0.038704767823219,-0.0020608860068023,0.01124963350594],[-0.035475872457027,-0.030215233564377,-0.0065162987448275],[0.023121915757656,-0.040799986571074,-0.00044810326653533]],[[0.0053984532132745,0.010119120590389,-0.028871389105916],[0.0051370658911765,-0.026517454534769,0.024222491309047],[0.042873181402683,0.033301144838333,-0.033140528947115]],[[0.042274713516235,0.063675940036774,-0.012111438438296],[0.026808233931661,0.0056044170632958,0.071326017379761],[-0.052477214485407,-0.075014740228653,-0.017769772559404]],[[-0.011039257049561,0.027549292892218,-0.077300123870373],[0.047956932336092,0.02961684204638,-0.015286725945771],[0.063412718474865,-0.0057626576162875,0.026457691565156]],[[0.052027773112059,0.017978677526116,-0.068384148180485],[0.042534682899714,-0.072345107793808,0.079091295599937],[0.014701848849654,-0.013850164599717,0.076503276824951]],[[-0.011036716401577,-0.039043515920639,0.005680195055902],[-0.063451126217842,-0.015689605847001,0.0007693016086705],[0.021595364436507,-0.088305212557316,0.049743421375751]],[[-0.030116133391857,-0.031507860869169,-0.11462776362896],[0.021458182483912,-0.047759398818016,-0.14196215569973],[0.082753993570805,-0.016752578318119,0.053836327046156]],[[-0.061188563704491,0.024426702409983,0.05662190541625],[0.021097801625729,0.0066168950870633,-0.068953737616539],[-0.016372065991163,0.038566391915083,0.062629915773869]],[[-0.016385558992624,-0.044614389538765,0.013431173749268],[0.022293344140053,0.10162391513586,0.04720064625144],[0.006491981446743,0.059600837528706,0.035163469612598]],[[-0.0013023330830038,-0.0097934836521745,-0.093343131244183],[-0.044320907443762,0.020760901272297,-0.0056921788491309],[-0.0024824272841215,0.037421960383654,0.018174756318331]],[[0.036386381834745,-0.0034686324652284,0.11099854111671],[-0.004694311413914,0.016369031742215,-0.042500592768192],[0.038383908569813,-0.066726259887218,0.047650266438723]],[[-0.03065313026309,0.0032363510690629,0.053589906543493],[0.12090811878443,0.013458077795804,-0.027767015621066],[0.090656571090221,0.022250663489103,-0.028098883107305]],[[-0.0068024951033294,0.12598462402821,-0.022339712828398],[0.07360778003931,0.010430488735437,0.015683868899941],[-0.019470054656267,0.018457408994436,0.0036007682792842]],[[0.0030266323592514,-0.014543862082064,0.074860155582428],[-0.01632646471262,-0.049815326929092,-0.0096654184162617],[0.048257503658533,0.073110595345497,-0.049540933221579]],[[0.1365027576685,0.037891712039709,0.039555996656418],[0.040721841156483,-0.044589292258024,0.0052249985747039],[0.0053916252218187,0.024442097172141,-0.045029647648335]],[[0.08129295706749,0.018489034846425,-0.0058350572362542],[-0.0025436684954911,-0.010823156684637,0.041897971183062],[-0.029804451391101,0.03136932849884,-0.0084606390446424]],[[0.042137876152992,0.038070008158684,0.042100325226784],[0.0085617154836655,0.017345290631056,0.023776836693287],[-0.0017520857509226,0.043908961117268,0.016818281263113]],[[0.044997498393059,0.046569015830755,0.073640860617161],[0.066212892532349,-0.019925307482481,0.0072659514844418],[-0.023918898776174,0.049740768969059,0.044016230851412]],[[0.0097141182050109,0.034125976264477,-0.019522918388247],[0.011049770750105,-0.023963006213307,-0.0014820394571871],[0.0033831114415079,0.06330306828022,0.045837704092264]],[[0.011176133528352,-0.017490534111857,0.0016480395570397],[0.018165277317166,-0.073363393545151,-0.015033538453281],[-0.049395192414522,-0.011619139462709,-0.018962115049362]],[[-0.029160808771849,0.027873488143086,-0.02215351164341],[0.072437174618244,0.027899095788598,-0.054563838988543],[-0.014357272535563,-0.00026964861899614,-0.0054134619422257]],[[-0.016362268477678,0.10879267752171,0.015240925364196],[-0.048277892172337,-0.06303171813488,0.0069176708348095],[0.089555338025093,-0.029092019423842,0.024482870474458]],[[0.026776237413287,-0.058222755789757,-0.0031413736287504],[-0.026523858308792,0.073740154504776,0.028346361592412],[0.052480150014162,0.0062199174426496,0.026403747498989]],[[0.081328049302101,0.026906626299024,-0.013265890069306],[-0.0096900276839733,-0.027563475072384,0.0068808537907898],[0.023666765540838,-0.040998216718435,0.0059427795931697]],[[-0.051859598606825,0.0030542155727744,0.044164247810841],[0.035234156996012,0.041739724576473,-0.0073709241114557],[0.0098489448428154,0.049850758165121,0.028472378849983]],[[0.045025553554296,-0.015152204781771,0.020114539191127],[0.075319893658161,0.038470461964607,-0.045111566781998],[-0.0054888860322535,0.016000187024474,0.004680909216404]],[[0.072020635008812,0.017894791439176,-0.00010531893349253],[-0.041284739971161,0.083280697464943,0.048233643174171],[-0.0016074620652944,0.010438197292387,0.045519296079874]],[[-0.03712359815836,-0.049008019268513,0.037566933780909],[0.039436254650354,0.054678373038769,0.027387171983719],[0.014302331022918,0.096327424049377,0.027959704399109]],[[-0.063246823847294,-0.041318271309137,0.014822220429778],[0.027202246710658,0.052121691405773,0.064205922186375],[0.06294447183609,0.019454317167401,0.0035630748607218]],[[0.05046983063221,0.026588041335344,0.0093901138752699],[-0.022037617862225,0.0094589591026306,0.095280341804028],[0.011268805712461,0.022537425160408,-0.026376629248261]],[[0.022028410807252,-0.026300026103854,-0.017327200621367],[0.0083652287721634,-0.039737861603498,-0.019925938919187],[-0.01803645119071,-0.06096912920475,0.062155596911907]],[[-0.0030580924358219,-0.018188759684563,0.00097185833146796],[0.036864090710878,0.016031945124269,0.034846637398005],[-0.061924383044243,0.021674171090126,0.026453567668796]],[[0.0040173004381359,-0.02072637155652,-0.03367717191577],[-0.0033647965174168,0.017404856160283,-0.11216906458139],[-0.044727340340614,-0.016487471759319,-0.047593861818314]],[[-0.038547642529011,-0.051086854189634,0.012111015617847],[0.025309974327683,-0.021767571568489,-0.060154359787703],[0.033614058047533,-0.074789561331272,-0.030321354046464]],[[-0.03643075376749,0.026110328733921,-0.0089076133444905],[0.030222337692976,0.040605671703815,-0.052694872021675],[-0.075536794960499,0.038324452936649,-0.016313148662448]],[[-0.020460842177272,0.0090282373130322,0.060280349105597],[-0.027055995538831,-0.011121616698802,0.13497216999531],[-0.00019575368787628,-0.012818409129977,0.068598233163357]],[[-0.060745339840651,0.017440298572183,-0.072542086243629],[-0.018492644652724,-0.031020689755678,0.023894220590591],[-0.001449869479984,0.042648117989302,-0.11293206363916]],[[0.061795517802238,0.0013532992452383,-0.035023462027311],[0.05839654430747,-0.022552408277988,0.037016943097115],[0.01448268070817,-0.019239157438278,0.026593321934342]],[[-0.039531629532576,0.0063463049009442,-0.00091323530068621],[0.029265768826008,0.034961111843586,0.025028951466084],[0.024662606418133,0.017607156187296,-0.056780517101288]],[[0.0044007184915245,-0.010875541716814,-0.066489174962044],[0.0086223557591438,-0.0082692373543978,-0.013039238750935],[-0.048251379281282,0.027362383902073,0.0038472085725516]],[[0.067526288330555,-0.030780654400587,-0.066877901554108],[0.0068584498949349,-0.029670333489776,0.034553233534098],[-0.061072032898664,-0.083320751786232,0.0056807608343661]],[[0.096682816743851,0.039913021028042,-0.029880482703447],[-0.008585955016315,0.032737646251917,0.025868644937873],[0.0038585013244301,0.066144473850727,0.12315610796213]],[[0.045328605920076,0.061153806746006,-0.019532402977347],[0.0063720564357936,0.018320666626096,0.035227499902248],[-0.047097720205784,-0.01503637060523,0.043602846562862]],[[-0.072192624211311,0.0018862644210458,0.022033868357539],[-0.035152364522219,0.017284838482738,0.040398199111223],[0.032234661281109,-0.0032246643677354,-0.02862991578877]],[[0.0053534619510174,0.046951591968536,-0.043842524290085],[0.1483069807291,-0.010515619069338,0.091107279062271],[-0.01666235178709,0.065771229565144,-0.015394470654428]],[[0.0080745378509164,-0.028058405965567,0.010646312497556],[0.030225308611989,-0.051162969321012,-0.092118978500366],[-0.041822478175163,0.0010033544385806,0.0047220508567989]],[[-0.024866811931133,0.019632427021861,0.0043259640224278],[0.066664405167103,0.028627790510654,-0.044625263661146],[0.044409953057766,-0.074974834918976,-0.064709179103374]],[[0.005460299551487,0.094958588480949,0.038537092506886],[0.019368726760149,0.056188505142927,0.057912915945053],[-0.014921597205102,0.040486708283424,-0.0032902981620282]],[[0.012104088440537,0.016366750001907,-0.044122334569693],[-0.018932554870844,-0.056578174233437,0.081175394356251],[-0.026030180975795,-0.0030084063764662,0.010526631958783]],[[-0.014988743700087,-0.0024988269433379,-0.042220909148455],[-0.0097759710624814,-0.020340450108051,0.07465399056673],[-0.11455143988132,-0.0071415477432311,-0.024927582591772]],[[-0.023820741102099,-0.023595606908202,-0.03413762897253],[-0.0040862797759473,-0.019336199387908,0.0065107410773635],[0.024231310933828,0.04206807911396,0.0051090652123094]],[[-0.020661406219006,-0.058329783380032,0.10560143738985],[0.009000794030726,-0.08038479834795,-0.010332953184843],[-0.032055072486401,-0.064247570931911,-0.035001661628485]],[[0.019633861258626,0.028337370604277,-0.031487211585045],[0.016095662489533,0.061105482280254,0.01345772575587],[0.044550485908985,-0.036352932453156,0.021225390955806]],[[-0.0095535693690181,0.093147985637188,-0.04716494306922],[-0.010535467416048,0.055967897176743,0.00040634805918671],[0.056524801999331,0.060135256499052,0.0070192134007812]],[[-0.038047719746828,0.039520986378193,0.047637641429901],[0.062717959284782,-0.010255671106279,0.038146767765284],[-0.042265828698874,0.0429079644382,-0.034505266696215]],[[-0.062899008393288,0.0022818152792752,-0.022614642977715],[-0.0042081195861101,0.035686824470758,-0.036800008267164],[0.041062619537115,0.062781438231468,0.060931652784348]],[[0.029939776286483,0.086594603955746,-0.016662530601025],[-0.0059567405842245,-0.068379901349545,-0.0022349138744175],[-0.041653227061033,0.067736081779003,-0.0078705018386245]],[[0.081891983747482,-0.022244175896049,0.046202640980482],[0.017891462892294,0.020142739638686,0.018780473619699],[-0.02616036683321,-0.041318215429783,-0.016697458922863]],[[-0.02154179289937,-0.046283509582281,0.02983128093183],[0.02052310667932,-0.073305450379848,0.079954102635384],[0.03619783744216,0.064987733960152,0.027507023885846]],[[-0.041827905923128,0.024774419143796,0.054706513881683],[0.035426929593086,0.035463016480207,0.008387116715312],[-0.0071836477145553,0.11329121887684,0.052303582429886]],[[-0.027755254879594,0.010098396800458,-0.018957175314426],[0.063626676797867,-0.014211311005056,-0.0338817499578],[0.045602146536112,0.017345504835248,-0.028038265183568]],[[0.025915790349245,-0.046936176717281,0.047727767378092],[-0.014519675634801,-0.010977374389768,0.082758106291294],[-0.0034734988585114,0.047007236629725,-0.045128468424082]],[[-0.029755149036646,0.1087963283062,0.013605699874461],[-0.1006358936429,-0.040584545582533,0.017373252660036],[0.06935378909111,-0.011817941442132,0.12230890244246]],[[-0.089153304696083,0.029142398387194,0.0073168631643057],[0.023360410705209,0.024860866367817,0.080839991569519],[-0.032993152737617,-0.0051970561034977,0.021070461720228]],[[-0.057188801467419,-0.0086299031972885,0.017427193000913],[0.0040836217813194,0.0073876515962183,0.015794953331351],[0.052299588918686,0.0091424332931638,0.025131836533546]],[[-0.051680732518435,0.042306002229452,-0.052311167120934],[-0.03061300329864,0.035356633365154,0.023472592234612],[-0.0055472226813436,0.0069804936647415,0.0091672595590353]],[[0.010289185680449,0.045891024172306,0.053469952195883],[-0.035721998661757,-0.0030733016319573,0.0040511903353035],[0.062307685613632,0.071145035326481,-0.042183298617601]],[[0.050069965422153,-0.0002606546622701,-0.017480801790953],[-0.054353639483452,-0.036654252558947,-0.037601839751005],[0.028416518121958,-0.037834327667952,0.0046970136463642]],[[0.011528071016073,-0.0022511491551995,0.0057936683297157],[-0.082484297454357,-0.072469502687454,0.062809213995934],[0.00022965417883825,-0.048941005021334,0.065415747463703]],[[0.067682757973671,-0.050599228590727,0.0066108023747802],[0.0075183943845332,0.064746394753456,0.008000542409718],[-0.018684141337872,0.0051585803739727,0.056653250008821]],[[0.042659409344196,0.06641311198473,-0.026954440400004],[-0.010656395927072,-0.0067628370597959,0.1112437620759],[0.066453993320465,-0.038727551698685,0.074420399963856]],[[-0.021388711407781,-0.01039038784802,0.058262810111046],[-0.0068844957277179,-0.073709927499294,-0.0010824570199475],[0.0024026241153479,-0.025707697495818,0.047284726053476]],[[-0.091397754848003,0.050689071416855,-0.048264030367136],[0.067379556596279,-0.050544638186693,-0.010394346900284],[-0.035327699035406,-0.053612001240253,0.026065088808537]],[[-0.02234080247581,0.038144834339619,0.074702635407448],[0.033999383449554,0.034446235746145,-0.0018240737263113],[0.010374794714153,0.082458086311817,-0.029879217967391]],[[0.074267618358135,0.04781100153923,0.075135461986065],[0.039468340575695,0.029248733073473,-0.0098104290664196],[-0.018878879025578,0.032870311290026,-0.085043422877789]],[[0.084347441792488,0.0064913649111986,0.10037326067686],[-0.069803632795811,0.017245532944798,-0.056338638067245],[0.023790756240487,-0.012487265281379,0.021255785599351]],[[0.021913690492511,-0.013926174491644,-0.095918200910091],[-0.022195406258106,-0.022947154939175,0.096507735550404],[-8.5663734353147e-05,-0.035480782389641,0.03523775935173]],[[0.043783687055111,0.011380831710994,-0.047465045005083],[0.018887717276812,0.0067274821922183,0.040100865066051],[-0.045049615204334,-0.0063423840329051,-0.012583333067596]],[[0.023051898926497,0.029054509475827,-0.058136329054832],[-0.013626107946038,-0.019936069846153,-0.025843428447843],[-0.044520523399115,0.0509566180408,-0.010997088626027]],[[-0.0019437363371253,0.032194204628468,-0.098081171512604],[0.03046234510839,-0.05541330948472,0.0065788691863418],[0.034752056002617,-0.019509548321366,-0.0026877708733082]],[[-0.020894045010209,0.0031181236263365,0.051392436027527],[0.10297183692455,0.040978655219078,-0.074961334466934],[0.036013722419739,-0.014607716351748,-0.022769311442971]],[[0.073926404118538,0.0083748903125525,-0.035588249564171],[0.026177834719419,-0.035932913422585,0.051656357944012],[0.044678766280413,-0.019561352208257,-0.00079905992606655]],[[-0.03773595020175,-0.017901321873069,0.01623952947557],[0.02005310729146,-0.012823233380914,0.0023081025574356],[-0.036507684737444,0.014888681471348,0.076546803116798]],[[-0.011740496382117,0.058495622128248,-0.00021282630041242],[0.0035329763777554,0.053961627185345,-0.044782247394323],[0.017215207219124,-0.035792913287878,-0.040986891835928]],[[0.060820117592812,0.10829480737448,-0.073800638318062],[-0.047138527035713,0.046960890293121,-0.014799706637859],[0.015828980132937,-0.04076799377799,0.069715030491352]],[[0.0081443898379803,-0.046923823654652,0.030167600139976],[-0.064296253025532,0.053228538483381,0.049346845597029],[-0.034010261297226,0.011675616726279,0.067468605935574]],[[-0.014674306847155,0.016329461708665,-0.023401392623782],[-0.012031607329845,0.020647719502449,0.080073691904545],[0.035469058901072,-0.029352055862546,0.098161265254021]],[[0.10170861333609,0.045440554618835,-0.019695203751326],[-0.060556430369616,0.0037253492046148,-0.0012296247296035],[-0.059782132506371,-0.059020388871431,0.029465787112713]],[[0.028695913031697,0.03406572714448,-0.020132156088948],[0.072188779711723,-0.044404949992895,0.04048229008913],[-0.052256938070059,0.021944902837276,-0.053179405629635]],[[-0.023907450959086,0.084519684314728,0.014422707259655],[-0.048503663390875,0.025689899921417,0.0080632204189897],[0.089634098112583,0.057385951280594,0.064938478171825]],[[-0.017831441015005,0.0089339399710298,0.0062154713086784],[0.035055078566074,0.03641002997756,-0.015922525897622],[0.041287031024694,-0.08500000089407,0.022340206429362]],[[0.050714295357466,0.065863534808159,0.029538843780756],[-0.01865091919899,-0.050703506916761,-0.0035917167551816],[0.012127542868257,-0.0064045712351799,-0.0068277548998594]],[[0.027307813987136,-0.069909781217575,-0.00056072819279507],[0.0083041787147522,0.018566835671663,-0.055060546845198],[-0.048669088631868,-0.011990658007562,-0.094903714954853]],[[-0.0065162456594408,0.0030761919915676,0.031899768859148],[0.022740732878447,0.022718794643879,-0.032038137316704],[-0.026546003296971,0.071208223700523,-0.037399280816317]],[[-0.049091968685389,0.077348694205284,0.012396804057062],[0.009901724755764,0.012712908908725,-0.017572142183781],[0.017924442887306,0.021129688248038,0.026487337425351]],[[0.013610473833978,-0.010540786199272,0.03635136038065],[0.011582318693399,0.076715186238289,0.054144397377968],[0.017738414928317,-0.012241974473,-0.027794606983662]],[[0.033143289387226,0.0060898186638951,-0.063639752566814],[0.047210447490215,0.0526855699718,0.112170599401],[-0.062014807015657,-0.025292035192251,0.032035935670137]]],[[[0.039845164865255,-0.069314762949944,0.014737024903297],[-0.064379766583443,-0.025825038552284,0.078594669699669],[-0.025092465803027,-0.020162366330624,0.038225226104259]],[[-0.062426809221506,-0.021109558641911,-0.02039541862905],[0.062199577689171,-0.032588206231594,-0.049798034131527],[0.018082588911057,-0.049605932086706,-0.052339740097523]],[[-0.026287550106645,0.0058479066938162,0.071086153388023],[-0.012205051258206,0.081741623580456,0.022581214085221],[-0.038629021495581,0.014754747971892,0.045362241566181]],[[0.0022609911393374,0.033589947968721,-0.033039592206478],[-0.001304336823523,0.0046037184074521,0.0061270585283637],[-0.062951602041721,-0.020950801670551,0.046685233712196]],[[-0.061900496482849,0.032363265752792,-0.099194310605526],[0.00099682633299381,0.026164967566729,-0.041821487247944],[0.028443904593587,-0.12493265420198,-0.012276242487133]],[[-0.040705177932978,0.044590875506401,-0.015161341056228],[-0.0193792860955,0.013342888094485,-0.018221713602543],[0.0706722214818,-0.048164609819651,-0.056710612028837]],[[0.0089467857033014,-0.0080381296575069,-0.11183556169271],[-0.061489757150412,0.099459171295166,0.046527288854122],[0.016103908419609,0.033866941928864,0.024905491620302]],[[-0.068201638758183,0.025021696463227,-0.036722652614117],[0.042445186525583,-0.10073912888765,-0.071643576025963],[-0.11253825575113,0.028658600524068,-0.017934020608664]],[[-0.013803546316922,0.07821387052536,0.021908959373832],[-0.083977967500687,0.075286671519279,-0.13126486539841],[0.0066905175335705,-0.05357975512743,-0.010802823118865]],[[-0.01549684535712,0.0033751826267689,0.079871155321598],[0.20005871355534,0.12266484647989,0.064095608890057],[0.10260304808617,-0.026113145053387,0.096500739455223]],[[0.02879892103374,-0.019419476389885,4.1562430851627e-05],[0.010921713896096,0.022621612995863,0.0021906855981797],[0.031730189919472,0.067218460142612,-0.010097648017108]],[[-0.017449723556638,0.047195952385664,0.049815457314253],[0.013140155002475,0.009575366973877,-0.00058480614097789],[-0.019232086837292,-0.04326955229044,-0.03467857465148]],[[0.040171932429075,-0.027959823608398,-0.029103433713317],[-0.0030509291682392,-0.07601822912693,-0.024199191480875],[-0.032370373606682,-0.026198590174317,0.086998030543327]],[[0.038985431194305,0.014045748859644,-0.05297813937068],[0.038166020065546,-0.00022097933106124,0.064243257045746],[-0.045710328966379,-0.080050028860569,-0.037582445889711]],[[0.0098520871251822,0.073372915387154,0.075320191681385],[-0.014622997492552,0.077718764543533,0.026371970772743],[0.10043881088495,0.013565894216299,0.059026550501585]],[[-0.048173312097788,-0.0066312332637608,-0.034906316548586],[-0.004546158015728,-0.026624470949173,-0.006162344943732],[0.017333136871457,-0.094843678176403,0.01384278293699]],[[-0.06849716603756,-0.034969732165337,-0.0098817618563771],[0.013210934586823,0.0070346896536648,0.01578813046217],[0.049513306468725,0.011539737693965,-0.01560693513602]],[[-0.00056329631479457,0.023613911122084,0.0012396918609738],[-0.024100279435515,-0.042714666575193,-0.016558099538088],[0.049824047833681,0.00098108826205134,0.028373077511787]],[[-0.018853422254324,-0.033501032739878,-0.014792522415519],[0.021077146753669,0.039026938378811,0.071090497076511],[0.038644034415483,-0.079676933586597,-3.9242469938472e-05]],[[0.048721466213465,0.020572958514094,-0.026503395289183],[0.034065410494804,0.039714615792036,0.0029034574981779],[0.0040047238580883,0.12068498879671,0.073465451598167]],[[-0.10793723911047,0.034458771348,0.084278747439384],[0.033361293375492,0.020980227738619,-0.065156899392605],[-0.059089582413435,-0.032841339707375,0.0010922808432952]],[[0.082742393016815,0.011661267839372,0.024944078177214],[0.04026647284627,0.092131353914738,-0.011906730011106],[-0.033472832292318,0.043869562447071,0.086971499025822]],[[0.014781442470849,0.00046479125740007,-0.087070174515247],[0.016159230843186,0.062724754214287,-0.022552525624633],[0.0079117184504867,0.053176399320364,0.024500412866473]],[[-0.060125935822725,-0.10067480802536,-0.059626325964928],[0.026063928380609,0.02723784185946,0.066858030855656],[0.075000427663326,0.026860499754548,0.0054575493559241]],[[-0.0074628200381994,0.055349450558424,0.0056267376057804],[-0.025463752448559,-0.025286804884672,0.079390741884708],[-0.031270775943995,-0.032712865620852,-0.014247318729758]],[[-0.033394232392311,-0.028914520516992,0.054779857397079],[0.021022057160735,0.045618783682585,-0.044816594570875],[-0.013153967447579,0.0018420215928927,0.051947947591543]],[[0.06947323679924,0.04195773974061,0.00040073980926536],[-0.045819722115993,-0.045533820986748,-0.027385924011469],[0.029550714418292,0.028782229870558,-0.051594145596027]],[[-0.038540009409189,0.06824216991663,0.080516993999481],[-0.050613157451153,0.023089528083801,-0.07891122251749],[0.013088687323034,0.051348328590393,-0.058060992509127]],[[0.001955994637683,0.012234403751791,0.03526346385479],[0.063401974737644,0.035901788622141,0.020043516531587],[0.038256596773863,-0.036807116121054,0.058952748775482]],[[-0.043347921222448,0.019180908799171,0.14059013128281],[0.012240692973137,0.1023922637105,0.050558142364025],[0.040989276021719,0.052922699600458,-0.071951419115067]],[[-0.016612531617284,0.031090563163161,0.0058591426350176],[0.022424655035138,0.059518788009882,0.018946101889014],[-0.0025900404434651,0.13453789055347,0.066856630146503]],[[-0.035436142235994,0.050195638090372,-0.0033345301635563],[-0.023027716204524,-0.0010588066652417,0.059710040688515],[0.069528646767139,-0.0050155413337052,0.066246122121811]],[[0.010795995593071,-0.0075881909579039,-0.010462818667293],[-0.0068780328147113,0.069324843585491,0.0045551848597825],[-0.10053078085184,-0.004240594804287,0.03574650362134]],[[0.0050852196291089,0.0302769895643,-0.015759659931064],[-0.017556367442012,0.024952214211226,-0.024095855653286],[0.026069106534123,0.032201074063778,0.11091986298561]],[[-0.014483214356005,-0.030680034309626,-0.010268171317875],[0.023521531373262,-0.033751767128706,-0.1857436299324],[-0.13252452015877,-0.0049324673600495,-0.026983229443431]],[[-0.077685639262199,-0.014495816081762,0.068200439214706],[-0.043291423469782,-0.0019669390749186,0.013804573565722],[0.065398827195168,-0.099457405507565,-0.042754482477903]],[[0.03404189273715,0.045204300433397,0.020375972613692],[0.066924996674061,0.033206984400749,0.038574811071157],[0.047325693070889,0.033107306808233,0.080482669174671]],[[0.038751598447561,0.05226432159543,-0.00022047902166378],[-0.020493384450674,0.061989065259695,0.046936869621277],[0.064387671649456,0.087616197764874,0.0028308520559222]],[[-0.047581233084202,0.13341493904591,-0.099841348826885],[-0.035069271922112,0.050227284431458,-0.083779968321323],[-0.044752519577742,-0.025612693279982,0.054858334362507]],[[-0.0028636467177421,0.016835816204548,-0.054592676460743],[0.032631326466799,0.037617012858391,-0.028583446517587],[0.0099310101941228,0.011843726038933,0.022624662145972]],[[0.065119750797749,-0.026584694162011,-0.047990549355745],[-0.0069991042837501,-0.022339507937431,0.066629834473133],[-0.0045547401532531,-0.030237669125199,0.00023051556490827]],[[0.0017841297667474,-0.074177972972393,-0.13780207931995],[0.060307014733553,-0.0070236562751234,0.01090354565531],[0.010728226043284,-0.12963366508484,0.018840836361051]],[[0.021575849503279,-0.033266134560108,-0.013071488589048],[-0.014927137643099,0.029445311054587,0.11768814176321],[0.027112321928144,0.10339494049549,0.048721700906754]],[[0.055504716932774,-0.0037025425117463,0.068923644721508],[0.021118767559528,0.0012621924979612,0.070354096591473],[0.04255099222064,-0.036538813263178,0.035951714962721]],[[-0.012016689404845,0.032497651875019,-0.053021248430014],[0.059552412480116,-0.0098552899435163,0.019522111862898],[0.016214612871408,0.013590910471976,-0.088949158787727]],[[0.03293963521719,-0.081153765320778,0.075596630573273],[-0.019722443073988,-0.0051698978058994,-0.024573797360063],[0.035222087055445,-0.0047200536355376,0.0077144340611994]],[[-0.013664534315467,0.039515007287264,-0.0074239070527256],[0.0422468110919,0.0087584313005209,0.008114306256175],[-0.050217546522617,-0.00019940898346249,0.048734162002802]],[[0.077930830419064,-0.036888942122459,0.16295884549618],[-0.0099465232342482,0.076623819768429,-0.043426811695099],[0.030216718092561,0.027201084420085,0.043401647359133]],[[0.04016936570406,0.0802386328578,-0.012629744596779],[-0.13622260093689,0.10251767188311,0.014837158843875],[0.067800968885422,-0.051859177649021,-0.02454131655395]],[[0.01510270126164,-0.020881740376353,-0.067227996885777],[-0.013931958936155,-0.0035427261609584,0.066192217171192],[-0.055769648402929,-0.055389646440744,-0.019537458196282]],[[0.015781918540597,0.024314073845744,-0.029571417719126],[0.0033235831651837,0.042789805680513,0.0077440300956368],[0.073138058185577,-0.094486854970455,-0.10621803253889]],[[0.02466357126832,-0.0090425908565521,0.067266061902046],[0.053315576165915,-0.054277133196592,-0.029240824282169],[0.025051318109035,0.011469609104097,-0.031942591071129]],[[-0.03263358771801,-0.05227941647172,-0.024103151634336],[-0.04887356236577,0.019354872405529,0.035475950688124],[-0.036111410707235,-0.0092247668653727,-0.02335012331605]],[[-0.031803477555513,0.055594343692064,0.084391087293625],[0.041759118437767,0.056429266929626,0.00034682999830693],[0.0028357794508338,0.059772737324238,0.069281928241253]],[[-0.11740326881409,0.0056300624273717,0.027732491493225],[0.071939527988434,0.13900664448738,0.0067947660572827],[0.041979022324085,0.00086922361515462,-0.027863016352057]],[[-0.056528758257627,0.050175633281469,0.012279766611755],[0.059998359531164,-0.039295721799135,0.013804757036269],[-0.018194960430264,0.065946184098721,0.0092271482571959]],[[-0.12456410378218,-0.038312375545502,-0.0071210679598153],[-0.093492582440376,-0.066925957798958,0.09977214038372],[-0.051337402313948,0.041947692632675,0.00038899501669221]],[[-0.045983601361513,-0.0077690370380878,0.022865235805511],[0.0048181624151766,-0.0027710550930351,0.046645689755678],[0.0075365002267063,0.054576318711042,0.049509380012751]],[[0.017672704532743,0.0079615646973252,-0.027951957657933],[-0.0097848419100046,0.026256581768394,0.015561764128506],[-0.0060411687009037,0.037977278232574,-0.050201136618853]],[[-0.066163904964924,0.055419538170099,0.097987167537212],[0.011575461365283,0.0055100717581809,0.11010424792767],[0.02245706319809,0.038406930863857,0.020983710885048]],[[0.0034450537059456,-0.023444063961506,0.0056850044056773],[-0.049207646399736,0.015223090536892,0.028869124129415],[-0.045967370271683,-0.11902882903814,-0.018783884122968]],[[0.011771530844271,0.03427492082119,0.042082589119673],[0.023474993184209,-0.039638493210077,0.048126373440027],[-0.10246720165014,0.064824976027012,0.047970838844776]],[[-0.0057658711448312,0.025351256132126,0.042761582881212],[0.072522759437561,0.014130063354969,0.065169453620911],[-0.011826260015368,-0.036960028111935,0.050849042832851]],[[-0.05573321133852,0.083782255649567,-0.0038144530262798],[-0.0047948975116014,0.042923528701067,-0.018409384414554],[0.014706771820784,0.17977906763554,0.07648891210556]],[[-0.0068639707751572,0.050734702497721,0.005275160074234],[0.059607330709696,-0.041120238602161,-0.035216387361288],[0.058127030730247,0.012768032960594,0.17559820413589]],[[0.014592820778489,0.093632578849792,-0.029356731101871],[0.017897086217999,0.027846934273839,0.11682898551226],[0.029812337830663,0.0083373794332147,0.031625617295504]],[[-0.12231850624084,0.049270570278168,-0.039335381239653],[-0.005402666516602,0.052447531372309,0.060401372611523],[-0.013749262318015,0.077362954616547,-0.014427956193686]],[[0.047334805130959,-0.025161111727357,0.014964868314564],[-0.042130272835493,0.095917336642742,0.053957652300596],[0.062027011066675,-0.079262353479862,0.11350157856941]],[[0.031070871278644,-0.033634547144175,0.0027129631489515],[-0.022750400006771,0.041679605841637,0.043948970735073],[-0.010825253091753,-0.0067411898635328,0.071283906698227]],[[0.04862204939127,-0.038706500083208,0.083852395415306],[-0.086277768015862,0.15215420722961,0.0075780409388244],[0.12242361903191,-0.015068859793246,-0.0090857781469822]],[[-0.077745623886585,-0.043443933129311,0.031017182394862],[-0.069453224539757,0.038501854985952,0.033244255930185],[-0.02029006741941,0.002330890391022,-0.052849050611258]],[[0.082344114780426,0.079086244106293,0.03963565453887],[0.052432622760534,-0.083997920155525,-0.036708269268274],[-0.072992756962776,0.062257997691631,-0.018974244594574]],[[0.029754573479295,-0.0070851966738701,0.07058909535408],[0.046959795057774,0.034385222941637,0.092746965587139],[0.02282858081162,-0.028704037889838,-0.15029317140579]],[[-0.030563861131668,-0.020157068967819,0.02460684068501],[0.01809149235487,0.013948354870081,0.057562850415707],[0.017869971692562,0.090182431042194,0.048490900546312]],[[0.071694679558277,-0.0031705021392554,0.056665364652872],[-0.031430408358574,-0.00028672357439063,-0.039546824991703],[0.098018124699593,0.0076219732873142,0.018376316875219]],[[-0.049384821206331,0.05364853143692,0.12754939496517],[0.051442284137011,0.076532423496246,-0.044715989381075],[-0.00091217469889671,0.037322737276554,0.068139523267746]],[[0.10335417836905,0.11111713945866,0.030042191967368],[-0.046223934739828,-0.014271249063313,0.023561665788293],[0.0046057831496,-0.00010906682291534,0.14134831726551]],[[0.0084764389321208,-0.014885001815856,0.014398871921003],[-0.11511863768101,-0.059189610183239,0.065327391028404],[0.049926664680243,0.022274406626821,0.035117596387863]],[[0.063531838357449,-0.0063326340168715,-0.027867877855897],[0.065366357564926,-0.018997628241777,0.053452309221029],[0.0084068011492491,0.0040006604976952,0.02157873660326]],[[-0.027809750288725,-0.03210062533617,0.019674422219396],[-0.095359154045582,0.13443860411644,0.0465645827353],[-0.00066297070588917,0.059578165411949,0.032351776957512]],[[0.029171200469136,-0.026779025793076,0.037385389208794],[0.10464857518673,-0.015875896438956,-0.0017507382435724],[0.0073762354440987,-0.038716435432434,0.040114898234606]],[[0.057694103568792,0.018493628129363,-0.047452241182327],[-0.0045772362500429,0.0088018449023366,-0.077215872704983],[-0.085374467074871,0.0054542957805097,-0.015655053779483]],[[0.015326206572354,0.022258536890149,0.028864743188024],[0.07705008238554,0.10789889842272,0.028592500835657],[-0.022284273058176,-0.049160365015268,-0.03433919698]],[[0.0012198145268485,0.032327488064766,-0.052378118038177],[0.0087720425799489,0.013722030445933,-0.048272926360369],[-0.032604057341814,-0.0033342908136547,0.015753414481878]],[[0.0014614019310102,-0.013347282074392,-0.011412591673434],[0.046017605811357,0.042050838470459,0.044361334294081],[-0.0075326729565859,0.048070389777422,-0.046772569417953]],[[0.12101431936026,0.071564830839634,-0.044402129948139],[-0.033837649971247,0.068497970700264,-0.03934621065855],[0.018692385405302,0.070155896246433,-0.048147827386856]],[[0.057999312877655,-0.070321321487427,-0.019085295498371],[-0.015921765938401,-0.0656967908144,-0.047689169645309],[0.04174517467618,-0.060952052474022,0.034558285027742]],[[-0.0096203768625855,0.089445509016514,0.00275425799191],[0.011233592405915,0.12988233566284,0.054115738719702],[-0.020673470571637,0.12356743216515,-0.0035287914797664]],[[-0.0063019716180861,0.031837128102779,-0.015469276346266],[-0.01110633648932,-0.012269048020244,-0.023698220029473],[0.014493792317808,0.074113391339779,-0.0080710304901004]],[[-0.015437590889633,-0.02058888040483,-0.020811215043068],[-0.074068389832973,0.047515939921141,0.048102222383022],[-0.00488451262936,0.0093963453546166,0.017075458541512]],[[-0.00593854021281,-0.11919197440147,0.018283605575562],[0.027780732139945,-0.016772728413343,0.067583940923214],[-0.050915509462357,0.059794470667839,0.041335072368383]],[[0.018286349251866,0.011518176645041,0.072185054421425],[-0.039955705404282,-0.03364210948348,0.0020436190534383],[0.074465289711952,-0.043406188488007,0.00062701525166631]],[[-0.070135749876499,-0.029787248000503,0.036192674189806],[-0.04029506072402,0.0049370187334716,0.0037566202227026],[-0.10030380636454,-0.038791887462139,0.054200801998377]],[[0.010325888171792,0.031377404928207,-0.079123750329018],[-0.033237058669329,0.04012306407094,-0.018583433702588],[-0.040140327066183,0.022593967616558,0.096168152987957]],[[0.046520311385393,-0.0223871730268,0.11344357579947],[0.014179258607328,0.0069489143788815,-0.069245785474777],[-0.0035649922210723,0.017643453553319,0.036026943475008]],[[0.024037256836891,-0.031094405800104,0.14136078953743],[0.069646470248699,-0.074196070432663,-0.021736489608884],[-0.043615706264973,0.096542999148369,0.036044467240572]],[[0.018294487148523,-0.049749586731195,0.00037184401298873],[0.080108240246773,0.034402046352625,0.10969934612513],[0.0047076554037631,0.019579086452723,0.034315306693316]],[[0.0018839023541659,0.062240995466709,0.031470388174057],[0.026523619890213,0.037594985216856,0.06845423579216],[-0.01903716661036,0.016634687781334,0.025614766404033]],[[-0.0051807602867484,-0.029953714460135,-0.013366861268878],[-0.0042152386158705,0.081982664763927,-0.010440277867019],[-0.032054211944342,-0.0014408027054742,-0.048634227365255]],[[-0.083506897091866,-0.060558117926121,0.068147607147694],[-0.052121117711067,0.12361400574446,0.017291745170951],[0.0024943379685283,-0.03126959875226,-0.025436354801059]],[[-0.017736477777362,-0.074095696210861,-0.019913142547011],[-0.058890357613564,-0.066732853651047,0.065451078116894],[0.019824927672744,0.045626282691956,-0.032680451869965]],[[-0.004686625674367,-0.047110434621572,0.012530266307294],[0.099527858197689,0.17664724588394,0.10448477417231],[0.01238976046443,0.057893075048923,0.083437144756317]],[[0.10060938447714,0.037210162729025,0.02712301723659],[-0.002896930789575,0.08452744781971,-0.0055600507184863],[0.025057757273316,0.10315569490194,0.036633871495724]],[[-0.019342118874192,-0.09045048803091,0.0030909453053027],[0.0067012342624366,-0.033613827079535,0.021763443946838],[-0.049053475260735,0.048081245273352,0.043677877634764]],[[0.065493501722813,-0.071872271597385,-0.01805710606277],[0.047425244003534,-0.039178162813187,0.0099984863772988],[0.059733912348747,-0.027070930227637,0.067029476165771]],[[-0.051810894161463,-0.0052050584927201,0.061843130737543],[-0.036160554736853,-0.018056722357869,-0.052108004689217],[0.034932870417833,-0.06391841173172,-0.032586831599474]],[[0.086093477904797,0.074527896940708,-0.087288960814476],[-0.013594397343695,-0.080391079187393,0.014127090573311],[-0.019569197669625,-0.019008303061128,0.029197344556451]],[[0.017917672172189,-0.14034278690815,-0.046590324491262],[-0.043207418173552,-0.013525245711207,0.034094881266356],[-0.046010326594114,-0.028193177655339,-0.032124947756529]],[[-0.041229501366615,-0.0095067722722888,0.070674985647202],[0.0049894894473255,-0.0055426969192922,0.059760980308056],[0.0081839514896274,0.023462429642677,0.036154419183731]],[[-0.057192325592041,0.014873131178319,-0.0029971059411764],[0.048181358724833,0.016784133389592,0.03604943305254],[-0.050955038517714,0.052189234644175,-0.016403898596764]],[[-0.045656111091375,0.0087543940171599,0.032322488725185],[-0.009207340888679,-0.0071896491572261,0.025056226179004],[0.04308320954442,-0.068768478929996,0.0029430675785989]],[[0.018154628574848,-0.033452115952969,0.040179893374443],[0.014252665452659,-0.0047989790327847,0.030467830598354],[-0.011799742467701,-0.0140380281955,-0.025478409603238]],[[0.050490077584982,0.07513190805912,0.029170423746109],[-0.01018107123673,-0.015250540338457,-0.092263728380203],[-0.034571930766106,0.083268903195858,0.048463370651007]],[[0.052286624908447,0.025260709226131,-0.082259513437748],[-0.0069214254617691,-0.0086217438802123,-0.067750357091427],[0.022707581520081,0.047816421836615,-0.073320433497429]],[[-0.010267602279782,0.0063064834102988,-0.0028194924816489],[-0.0019118164200336,-0.02181226760149,0.077190227806568],[0.0013563196407631,0.020877689123154,0.048236902803183]],[[0.012600660324097,-0.055130317807198,-0.069117665290833],[-0.02900199405849,-0.025632593780756,-0.05083716288209],[0.024183543398976,-0.06282926350832,0.058579031378031]],[[0.050971947610378,0.10850519686937,0.073413029313087],[0.014623905532062,-0.015594734810293,0.12287903577089],[0.052843153476715,0.051475081592798,0.031207587569952]],[[0.069962672889233,0.16996414959431,0.027229068800807],[-0.034586627036333,-0.025653025135398,0.0057902289554477],[-0.0020662487950176,-0.0049813142977655,0.12908405065536]],[[0.0059232213534415,-0.11783728003502,0.019628839567304],[-0.044205065816641,-0.0070078521966934,-0.058577686548233],[0.10937562584877,-0.082147791981697,-0.037694867700338]],[[0.024527272209525,-0.060307040810585,0.00082810182357207],[-0.037066835910082,-0.06057620421052,-0.021706158295274],[-0.066470548510551,0.070717200636864,0.012693714350462]],[[-0.0083330776542425,0.030634008347988,-0.01568403840065],[0.045181158930063,0.045339979231358,-0.095398366451263],[0.12818390130997,0.079830452799797,0.092920728027821]],[[0.023248217999935,-0.0094775790348649,0.0098705403506756],[-0.022626740857959,-0.025740483775735,-0.014502918347716],[0.047926805913448,0.052231635898352,0.037991020828485]],[[0.0092549724504352,-0.08560998737812,-0.013574540615082],[0.075639471411705,0.041131660342216,0.017022490501404],[-0.034653820097446,-0.074711568653584,0.016547894105315]],[[0.0091902874410152,0.014332122169435,-0.0034508595708758],[0.056993249803782,-0.0092393374070525,0.062077466398478],[0.0072060469537973,0.090686999261379,-0.020473210141063]],[[-0.048998575657606,-0.014269848354161,0.053660601377487],[0.0086545301601291,0.054470207542181,0.073669381439686],[0.01233917940408,-0.064863570034504,-0.013879044912755]],[[0.013937671668828,-0.067527398467064,-0.01915873400867],[-0.043216422200203,0.079236321151257,-0.063949413597584],[-0.015711748972535,0.013376586139202,-0.03944081440568]],[[0.0805848762393,0.028827667236328,0.02739885263145],[0.030356410890818,0.048847485333681,-0.092774584889412],[-0.015482514165342,0.084149219095707,0.063941091299057]],[[0.063398033380508,0.0017878323560581,0.019761893898249],[-0.0569963529706,-0.024710908532143,0.013444106094539],[-0.054585490375757,0.026590591296554,-0.072780355811119]]],[[[0.046952724456787,-0.065253525972366,0.0055258683860302],[0.024475893005729,-0.076627567410469,0.072756268084049],[0.020182343199849,0.010099928826094,-0.0090640410780907]],[[-0.054444242268801,-0.065014488995075,-0.05891851708293],[0.057170789688826,-0.0051961792632937,-0.018165916204453],[0.032107744365931,0.029537321999669,-0.11322569847107]],[[0.03827503696084,0.037962958216667,0.007187114097178],[0.041291657835245,0.033941995352507,-0.040446512401104],[0.029186448082328,0.0079616783186793,0.019575154408813]],[[-0.00046852917876095,-0.0013819285668433,0.027490429580212],[0.046211924403906,0.013176786713302,0.074007049202919],[0.032646097242832,-0.053578540682793,-0.019101765006781]],[[-0.020537104457617,0.048955403268337,0.028149884194136],[-0.045886557549238,0.040315177291632,0.013407492078841],[-0.048056952655315,-0.03380611538887,0.10872193425894]],[[-0.044025529175997,-0.073234371840954,-0.00088166876230389],[0.085146307945251,-0.0022438496816903,0.012819123454392],[0.0031640531960875,-0.052614137530327,-0.027534157037735]],[[0.053742419928312,-0.06547673791647,0.035468772053719],[0.041548244655132,-0.025262454524636,-0.049741927534342],[0.050650659948587,0.01026208512485,0.077540256083012]],[[0.048881262540817,-0.033750530332327,0.0076983072794974],[-0.010179269127548,0.043152786791325,0.074286498129368],[0.021466910839081,0.0035292743705213,-0.031436633318663]],[[-0.074278935790062,0.0068149575963616,-0.010315360501409],[0.047909639775753,0.020429091528058,-0.013882788829505],[-0.010645192116499,0.044140428304672,0.0013378285802901]],[[-0.059788312762976,0.031043505296111,0.0025263605639338],[-0.02323304861784,0.043119262903929,-0.045030832290649],[0.082351997494698,0.029585095122457,0.057874083518982]],[[0.015022097155452,0.022944044321775,0.0420185290277],[0.040894098579884,-0.029261577874422,-0.032768677920103],[-0.051109123975039,-0.0056886025704443,0.091893717646599]],[[-0.042577512562275,-0.0073119113221765,-0.084314160048962],[0.022893907502294,0.034044213593006,0.021640572696924],[0.041168604046106,-0.039107915014029,-0.014468413777649]],[[0.023051250725985,0.012038417160511,-0.023309269919991],[0.027726029977202,-0.015333279967308,-0.025743290781975],[0.066379807889462,0.11697635054588,-0.02394131757319]],[[0.024907246232033,0.017132731154561,0.0090448493137956],[0.031865641474724,0.010707863606513,-0.028992157429457],[0.021218856796622,-0.025434577837586,-0.026718689128757]],[[-0.087872728705406,0.096599839627743,0.084033079445362],[-0.07255981862545,-0.024297965690494,0.045555934309959],[0.00027747818967327,-0.0047118836082518,0.052727978676558]],[[-0.042135093361139,0.018777629360557,0.059256192296743],[-0.0081822061911225,-0.060284428298473,0.054763168096542],[-0.057283110916615,-0.02341016381979,-0.014691134914756]],[[-0.0062680407427251,-0.050666268914938,0.047223042696714],[0.046531163156033,0.062598161399364,-0.032537307590246],[0.074978075921535,0.039034124463797,0.050848394632339]],[[-0.0042003290727735,-0.0012883163290098,0.031962655484676],[-0.011677105911076,-0.0082935811951756,-0.037834390997887],[0.027167784050107,0.013188580982387,0.034400805830956]],[[0.058248177170753,0.00016903114737943,-0.03802852705121],[0.04005191475153,0.04152562096715,-0.016482589766383],[0.017302725464106,0.057216580957174,0.040159955620766]],[[-0.028425253927708,0.0085528120398521,-0.00082627707161009],[0.092465065419674,0.040336575359106,0.010193322785199],[0.019509246572852,0.11045514047146,-0.059919565916061]],[[-0.061726428568363,0.030540971085429,-0.050655722618103],[-0.082040190696716,0.075108915567398,0.0048301545903087],[-0.078926466405392,0.023357896134257,0.0095726083964109]],[[0.047378931194544,0.010931494645774,0.0093304924666882],[-0.061724882572889,0.017475670203567,0.033201340585947],[-0.058755483478308,-0.037409406155348,0.061754748225212]],[[-0.083544887602329,-0.014136580750346,-0.019452061504126],[0.053551521152258,0.076699711382389,-0.0029540471732616],[-0.054413694888353,0.025628665462136,0.017697466537356]],[[-0.006682166364044,-0.041384428739548,-0.059701580554247],[0.020277122035623,-0.07942172139883,-0.12078703939915],[0.045414000749588,-0.05950939655304,-0.099524840712547]],[[0.021624639630318,-0.064440302550793,-0.0059404191561043],[-0.036788213998079,0.022127959877253,0.058595940470695],[0.023502558469772,0.021936930716038,-0.0084094032645226]],[[0.019501889124513,-0.022073861211538,0.028677452355623],[-0.0059800092130899,0.043606653809547,0.020080205053091],[0.0014263370539993,0.024672234430909,0.0422631688416]],[[-0.056405417621136,-0.0046028411015868,0.021874871104956],[0.026387449353933,0.028677973896265,0.057006627321243],[0.018058544024825,-0.036637175828218,-0.032679814845324]],[[0.064241856336594,0.073490709066391,0.048962570726871],[-0.0239566732198,-0.051703322678804,0.032855179160833],[-0.0029788818210363,0.02778753452003,-0.0052775260992348]],[[-0.033435516059399,0.0035629461053759,0.02827730961144],[-0.049805890768766,-0.070291429758072,-0.0026980761904269],[0.043417621403933,-0.059753559529781,-0.035450633615255]],[[-0.016158213838935,0.073525197803974,0.0027411782648414],[0.011933952569962,-0.024380018934608,0.018341867253184],[-0.040707211941481,0.0055547491647303,0.041071526706219]],[[0.019609458744526,0.070971570909023,0.024143556132913],[-0.03610922768712,0.051334522664547,0.01437424775213],[-0.064331509172916,0.045782368630171,-0.034605246037245]],[[0.01786613278091,0.045008271932602,0.071635775268078],[-0.052330020815134,-0.015800910070539,0.071213252842426],[-0.040345329791307,-0.012892363592982,0.032832391560078]],[[-0.0033120336011052,0.12445987761021,0.059968162328005],[-0.031998202204704,-0.035965137183666,0.053977645933628],[-0.021109268069267,0.063795678317547,0.042648613452911]],[[0.022705657407641,0.012297303415835,-0.023468839004636],[-0.0062881084159017,0.088944964110851,0.10308210551739],[0.016358520835638,0.004440841730684,0.0032374854199588]],[[0.070049546658993,0.03320200368762,-0.019441079348326],[-0.040490724146366,0.047642055898905,0.019031755626202],[-0.015031206421554,-0.046805735677481,-0.066536203026772]],[[-0.031503587961197,-0.022447427734733,-0.010118550620973],[0.021383050829172,-0.0042945602908731,0.069735370576382],[0.054800074547529,-0.065824054181576,0.018140651285648]],[[-0.0040630204603076,-0.017256449908018,-0.03447699919343],[0.022660955786705,-0.04229386523366,0.013493468984962],[-0.0038424495141953,-0.0040508355014026,0.03393991291523]],[[0.032889667898417,-0.0039971875958145,0.0232012886554],[0.028282821178436,-0.010394375771284,0.087039232254028],[0.082461044192314,0.022626338526607,-0.0040877237915993]],[[0.019556717947125,0.015121038071811,0.027543967589736],[0.035855252295732,0.0080627184361219,0.04120970889926],[-0.0076242052018642,-0.018149210140109,0.036359488964081]],[[0.066536463797092,0.044967498630285,0.0056458953768015],[0.03250715509057,0.044239152222872,0.041072160005569],[-0.049783196300268,0.004951152484864,0.069646716117859]],[[-0.010953164659441,0.05153176560998,-0.044519495218992],[-0.0065078306943178,0.019337229430676,-0.048184458166361],[0.032283585518599,0.027218388393521,-0.058295287191868]],[[-0.0083361966535449,0.02292669378221,-0.001641197828576],[0.079909555613995,-0.0069504459388554,-0.018369097262621],[0.043927099555731,0.0028008427470922,0.034837070852518]],[[0.064452193677425,-0.0099084684625268,0.039434976875782],[-0.042222902178764,-0.043437425047159,-0.022688111290336],[0.042625319212675,0.12131936848164,-0.011229835450649]],[[-0.021068193018436,-0.039334125816822,0.002108610002324],[0.090055525302887,0.047268141061068,-0.00039553709211759],[-0.079151384532452,0.016305819153786,0.08590792119503]],[[-0.078354872763157,0.0010713500669226,0.035583090037107],[0.033766321837902,-0.017026657238603,0.053110096603632],[0.10496290028095,-0.047098249197006,0.010484679602087]],[[0.0067582628689706,0.033272359520197,-0.034586429595947],[0.071587383747101,-0.0052326139993966,0.025178963318467],[0.031451411545277,-0.0088438708335161,-0.092384763062]],[[0.01068212185055,-0.053608249872923,0.076623447239399],[-0.025707434862852,0.073877647519112,-0.0060767084360123],[-0.047245290130377,0.077954448759556,0.014642121270299]],[[-0.012798963114619,0.053549714386463,-0.014729918912053],[0.022826347500086,0.0063636051490903,0.02457957342267],[0.023932075127959,0.0046399608254433,0.027877392247319]],[[0.043170861899853,0.026540728285909,-0.0057756882160902],[-0.018354285508394,0.033061239868402,0.053776726126671],[0.021135300397873,-0.022062107920647,0.0016882891068235]],[[0.01067659445107,-0.011475569568574,0.035092677921057],[0.0015442166477442,-0.093337744474411,0.032379291951656],[-0.01831179112196,0.01444560661912,-0.11558915674686]],[[0.065587259829044,-0.068069793283939,-0.05772477760911],[-0.01234857738018,0.067762330174446,0.022713556885719],[0.0088395774364471,0.0088583314791322,0.075107917189598]],[[-0.078030712902546,-0.029795674607158,0.072441399097443],[0.019052924588323,-0.021893596276641,0.0088703334331512],[0.022083230316639,0.0075661023147404,0.0032724884804338]],[[0.037248782813549,0.083834029734135,-0.0089079914614558],[0.1036484092474,0.015257618390024,0.007921420969069],[0.0535555370152,-0.030165754258633,-0.026354653760791]],[[-0.040505733340979,-0.00046776063391007,0.065414533019066],[0.021575983613729,-0.084182634949684,-0.038368374109268],[0.040221653878689,0.085472002625465,0.084326729178429]],[[0.018725425004959,0.029950316995382,0.041913092136383],[0.027746088802814,0.0062216185033321,0.015946686267853],[0.033706322312355,-0.061879049986601,-0.062758959829807]],[[0.017318055033684,0.069832265377045,0.0071569681167603],[-0.027093399316072,-0.015931401401758,-0.025673821568489],[0.013891090638936,0.0015675332397223,0.051771190017462]],[[0.028403539210558,-0.0049684043042362,-0.049554370343685],[0.011587211862206,-0.043048284947872,0.04938755184412],[0.023354085162282,-0.0090870494022965,0.018051400780678]],[[0.0055672870948911,0.021612323820591,0.020145181566477],[-0.062940143048763,0.041323035955429,-0.018098315224051],[0.033359479159117,-0.0087849916890264,0.054376564919949]],[[0.00020286027574912,0.037444204092026,0.04057452455163],[-0.053668111562729,-0.038241475820541,-0.011768126860261],[-0.03151722624898,0.078113257884979,0.064491406083107]],[[-0.032330468297005,-0.034624416381121,-0.0010846151271835],[-0.0071240849792957,-0.015599066391587,-0.055110834538937],[-0.063246533274651,0.017726758494973,0.022028421983123]],[[-0.035202357918024,-0.0051876036450267,0.0061847399920225],[-0.036041848361492,0.01321691647172,-0.039066508412361],[0.049670577049255,0.035602781921625,0.029277916997671]],[[0.10574566572905,0.041057284921408,-0.0031861555762589],[0.019052773714066,0.052753318101168,-0.076075196266174],[0.02715359069407,-0.057147435843945,-0.03231867402792]],[[0.034896869212389,0.002560100518167,0.0016043841606006],[-0.038512475788593,0.068233825266361,-0.0208436883986],[0.006773620378226,0.036851193755865,0.0015117307193577]],[[-0.064190626144409,0.065971449017525,0.052547805011272],[0.051384501159191,0.016380654647946,-0.066785633563995],[-0.015477412380278,-0.026733813807368,-0.013311914168298]],[[-0.055905170738697,-0.013254786841571,-0.0046019689179957],[-0.029548736289144,0.027196425944567,0.023919213563204],[-0.0098737869411707,0.0044306679628789,0.10015947371721]],[[-0.024538978934288,-0.014838563278317,0.019502533599734],[0.029211014509201,0.017470037564635,0.05620900541544],[-0.021740335971117,-0.029828695580363,-0.0054526096209884]],[[0.035260982811451,0.047711543738842,-0.10122707486153],[0.086715921759605,-0.0007092782179825,0.09078560769558],[-0.039612736552954,0.0015741579700261,-0.05548357591033]],[[-0.0064694629982114,0.0075391340069473,-0.0041905678808689],[0.025015966966748,0.0086870901286602,0.04710927605629],[0.025074621662498,-0.016365898773074,0.028307208791375]],[[0.012361879460514,-0.017875231802464,-0.0259192828089],[0.0093436650931835,-0.0061943959444761,0.033172573894262],[0.00035214534727857,0.039559088647366,0.011832996271551]],[[0.0027068452909589,-0.0016111155273393,0.039186730980873],[0.023124601691961,0.041830241680145,0.027784774079919],[0.013305012136698,0.0059980237856507,-0.010159245692194]],[[-0.0099440282210708,0.0081337569281459,0.059983018785715],[0.0059100571088493,0.00060445861890912,-0.060742117464542],[0.020465712994337,-0.0037391912192106,-0.011133630760014]],[[0.037266366183758,0.036138709634542,0.026927780359983],[0.034901421517134,-0.026846813037992,0.03734078258276],[-0.065819218754768,-0.0027113815303892,0.020086193457246]],[[0.044233728200197,-0.011342532001436,-0.017659343779087],[0.0011531340423971,0.0012822551652789,0.060608483850956],[-0.00092959869652987,0.079561926424503,-0.033386413007975]],[[-0.025088207796216,0.095534212887287,-0.02532703615725],[0.01786214672029,0.018573628738523,0.034850392490625],[0.010096371173859,0.0080158561468124,0.064708039164543]],[[-0.023272870108485,-0.028335073962808,-0.056633017957211],[0.028803655877709,0.040129486471415,0.0023890177253634],[0.055498614907265,-0.017360184341669,0.0075253914110363]],[[0.072683416306973,-0.02106031216681,-0.088330037891865],[0.047340959310532,-0.01632815413177,-0.018615460023284],[0.043154556304216,-0.016445923596621,-0.027229411527514]],[[0.0091710491105914,0.044030964374542,0.041196033358574],[0.058972660452127,-0.0072081158868968,0.046983785927296],[0.0041297529824078,0.011498638428748,-0.0054930462501943]],[[0.047815833240747,0.041446756571531,0.046779304742813],[0.014433902688324,0.004347862675786,-0.0090697044506669],[0.067641660571098,0.0054855481721461,0.029867863282561]],[[0.042041704058647,0.029796054586768,-0.020122325047851],[0.038047675043344,0.0041273212991655,0.039848014712334],[-0.062058046460152,0.017103660851717,0.072362706065178]],[[0.069579251110554,0.044976782053709,-0.030229175463319],[0.0112658245489,-0.1041759327054,0.093733370304108],[0.032557047903538,-0.0023942866828293,0.018589509651065]],[[-0.024909203872085,0.012218462303281,0.010746140964329],[0.012228493578732,-0.044374939054251,0.066221602261066],[0.025176890194416,-0.016892049461603,0.012367601506412]],[[-0.021236754953861,-0.016561323776841,0.030676789581776],[-0.014186440967023,0.075212001800537,-0.028385493904352],[-0.032945577055216,0.014338125474751,0.03964227437973]],[[0.020040871575475,-0.1099451482296,0.043935295194387],[-0.011299316771328,0.02533782273531,0.024215491488576],[-0.013867490924895,0.054331533610821,0.026086524128914]],[[-0.0085634207352996,0.0032500820234418,-0.032985381782055],[0.072061017155647,0.023354049772024,0.011232960037887],[-0.024230210110545,-0.035190686583519,-0.022240472957492]],[[-0.045213095843792,0.027322415262461,0.055074460804462],[0.067810326814651,0.049577433615923,-0.010849259793758],[0.049876812845469,0.021254720166326,-0.028658932074904]],[[0.064775712788105,-0.010637652128935,0.043153401464224],[-0.03401967138052,0.014410752803087,-0.059301480650902],[0.021490713581443,0.0091139283031225,-0.021126236766577]],[[-0.048125054687262,-0.075518243014812,0.0092111472040415],[0.1001297980547,-0.023683946579695,0.02463087439537],[0.12139722704887,-0.077263049781322,0.042222518473864]],[[0.069231197237968,-0.047163274139166,-0.052496574819088],[-0.037665702402592,0.023809814825654,-0.055965326726437],[-0.014947080053389,-0.052232213318348,0.065124802291393]],[[0.014975320547819,0.10882934182882,0.050362326204777],[-0.053969271481037,-0.00088808196596801,0.022582760080695],[0.084568202495575,0.055069785565138,-0.091901905834675]],[[0.052634257823229,-0.036341290920973,0.0029091502074152],[-0.021797215566039,0.030126169323921,0.018908876925707],[0.053812678903341,-0.020089821889997,-0.082790844142437]],[[-0.041803106665611,0.038350988179445,0.013199941255152],[0.0057894913479686,0.070353344082832,0.032125514000654],[0.078068345785141,-0.028565576300025,-0.03710601106286]],[[0.021112011745572,0.010805334895849,-0.050417479127645],[0.061181586235762,-0.011455051600933,-0.033490050584078],[0.043683454394341,0.018468091264367,-0.041267104446888]],[[-0.0027463608421385,0.01067253574729,0.0005295078153722],[-0.016541784629226,0.018502339720726,-0.0069045312702656],[-0.081523612141609,0.072838306427002,-0.037445779889822]],[[-0.034410268068314,0.06965959072113,0.050150372087955],[0.011063740588725,0.011852282099426,0.042627591639757],[0.063173063099384,0.066077813506126,0.078817993402481]],[[-0.011528175324202,0.017904562875628,-0.021264124661684],[-0.01078028883785,-0.0515440069139,-0.0071168867871165],[-0.005675433203578,0.057162143290043,0.0066693569533527]],[[0.065171286463737,-8.6711130279582e-05,-0.036046821624041],[-0.004772711545229,0.013921735808253,-0.0057651815004647],[-0.0063412366434932,-0.03799394890666,-0.0071308291517198]],[[-0.010967131704092,0.060860067605972,0.066477872431278],[0.051453556865454,0.0020588333718479,0.0079501047730446],[0.019632501527667,-0.0086681386455894,-0.019926214590669]],[[-0.03354075923562,0.0016174254706129,0.04173855856061],[-0.00053191080223769,0.05139684304595,0.032109867781401],[0.019127255305648,0.048300210386515,0.040516875684261]],[[0.048852656036615,0.018777940422297,-0.068299762904644],[-0.0013411401305348,0.016539441421628,0.0046210391446948],[-0.06635469943285,-0.032153982669115,0.018858913332224]],[[-0.049416910856962,0.045661266893148,0.097345411777496],[0.012636640109122,0.049201976507902,0.055362481623888],[0.018724964931607,0.069990299642086,0.038551978766918]],[[-0.012037119828165,-0.042948976159096,0.031999722123146],[0.0073357089422643,-0.0001495756150689,0.034132435917854],[-0.0074756611138582,0.027282815426588,-0.03544033691287]],[[-0.043199554085732,0.036873914301395,0.075392827391624],[-0.027424670755863,0.0029199891723692,0.004289903678],[0.03735639154911,0.020313328132033,0.022344820201397]],[[0.0054720318876207,-0.014465181156993,-0.003221069695428],[0.033998873084784,-0.004952774848789,-0.012801884673536],[-0.00069962319685146,0.013896028511226,0.032883808016777]],[[0.048102997243404,0.0086898822337389,-0.009754803031683],[-0.086029537022114,0.048876605927944,0.010313801467419],[-0.029860701411963,-0.011370706371963,0.0028206189163029]],[[-0.035317536443472,-0.011578385718167,-0.00032068576547317],[-0.044937003403902,-0.029738448560238,-0.0088361399248242],[0.050471417605877,0.027140690013766,-0.018126184120774]],[[0.0070869885385036,-0.029466081410646,-0.021623319014907],[0.019984394311905,0.0019986550323665,-0.0064190654084086],[0.031613610684872,-0.035168681293726,-0.034749552607536]],[[0.017100870609283,0.030644966289401,-0.092696987092495],[0.016457483172417,-0.0060674580745399,0.070247329771519],[0.0035481788218021,0.01131936814636,-0.0029253428801894]],[[0.037400908768177,0.029015488922596,-0.0077625173144042],[0.015665832906961,-0.068270690739155,0.0095441844314337],[-0.010035881772637,0.012769065797329,4.273316153558e-05]],[[0.023967860266566,-0.092101968824863,-0.046879570931196],[-0.041332561522722,0.010465344414115,0.013680251315236],[-0.022199776023626,-0.0065139280632138,-0.020225701853633]],[[0.10436450690031,0.029992742463946,0.014364323578775],[-0.037124920636415,-0.011412709951401,-0.059661451727152],[0.035732835531235,-0.011107945814729,-0.016548689454794]],[[0.0043431771919131,0.025914466008544,0.007443833630532],[0.031994387507439,-0.03051783144474,-0.074181489646435],[-0.034026354551315,0.010500321164727,-0.010061368346214]],[[-0.03729198500514,0.078084766864777,-3.760730396607e-05],[0.033920414745808,0.006554005201906,-0.0096287345513701],[-0.015888974070549,0.014595004729927,0.023841850459576]],[[0.026248794049025,-0.075911611318588,0.0026700245216489],[-0.051417622715235,0.056437861174345,-0.0080429324880242],[0.072659701108932,-0.0046038380824029,-0.012697477824986]],[[-0.12493401765823,-0.030063144862652,0.015234745107591],[-0.0024404253344983,0.065685875713825,-0.0042114621028304],[0.055547829717398,-0.030139844864607,0.010878961533308]],[[-0.010100747458637,0.0090377470478415,-0.0060226358473301],[-0.019618790596724,0.024078451097012,0.040746178478003],[-0.033332228660583,0.023436784744263,0.058796357363462]],[[0.060506094247103,-0.025509852916002,0.0743657797575],[-0.018645796924829,-0.027220390737057,0.062934547662735],[-0.032235618680716,0.018643438816071,0.030075741931796]],[[0.024118082597852,0.014897438697517,0.027764180675149],[-0.036773163825274,0.016366029158235,-0.035309318453074],[0.0047527980059385,0.045774187892675,0.044647570699453]],[[-0.041238579899073,0.020472520962358,-0.013316557742655],[0.034748896956444,0.018508186563849,0.020625287666917],[0.027361590415239,0.080817483365536,-0.0072082160040736]],[[-0.014444197528064,0.030876288190484,-0.03655806183815],[-0.076908282935619,0.012129568494856,0.048765834420919],[-0.0073710726574063,-0.040630374103785,0.020675973966718]],[[0.02136355638504,-0.028362065553665,-0.043190322816372],[-0.016554357483983,0.022642670199275,-0.0051654670387506],[0.070722013711929,0.017281252890825,-0.021467544138432]],[[0.013376148417592,0.017148436978459,0.040959391742945],[0.015784695744514,0.019961992278695,-0.069352142512798],[0.0033774222247303,0.083264999091625,0.012449922971427]],[[0.012227899394929,-0.010804802179337,0.044630188494921],[-0.032160099595785,-0.035862069576979,-0.036019578576088],[0.0059240362606943,0.011805387213826,0.010639005340636]],[[0.042719960212708,0.034760598093271,-0.067690193653107],[-0.068981789052486,-0.045253489166498,-0.049235679209232],[0.029030172154307,0.020812086760998,-0.017463365569711]],[[-0.065185338258743,0.062089405953884,0.081835933029652],[0.047001156955957,0.0089899748563766,0.033107683062553],[-0.00075554224895313,0.067060649394989,0.0058524431660771]],[[-0.0187275018543,-0.026592094451189,0.027542186900973],[0.04464178532362,0.012653573416173,-0.07695896178484],[-0.022002037614584,-0.0065065324306488,-0.012488364242017]],[[0.11695247888565,0.075918294489384,-0.076782919466496],[0.020399652421474,0.090708009898663,0.0064035910181701],[0.013437015935779,0.077914446592331,0.033510193228722]],[[-0.021533938124776,-0.040379963815212,0.15139579772949],[0.0068997773341835,0.019254330545664,-0.030154818668962],[-0.050210148096085,0.072829313576221,0.061169315129519]],[[0.0012499961303547,0.0038408304098994,0.062096256762743],[0.013472028076649,0.048025798052549,-0.036304593086243],[0.025608265772462,0.069379813969135,0.017187483608723]]],[[[0.025551160797477,-0.028509782627225,-0.016684120520949],[0.098539851605892,0.0932597219944,-0.02677652798593],[-0.031311295926571,0.12409836798906,0.025936841964722]],[[0.0076856436207891,0.049573890864849,-0.008470568805933],[0.036302883177996,-0.040389202535152,-0.039595354348421],[-0.035251118242741,0.040456186980009,-0.012011219747365]],[[0.077612206339836,-0.0030393579509109,0.059384886175394],[0.080706752836704,0.0035721573513001,0.058906700462103],[0.036609221249819,-0.062735006213188,0.034696698188782]],[[-0.025123065337539,0.084944330155849,0.021326296031475],[-0.006178988609463,-0.010221261531115,0.057460587471724],[-0.0086719356477261,-0.0097556943073869,0.044710580259562]],[[-0.021972674876451,-0.046292886137962,0.068013146519661],[-0.013392884284258,-0.029805138707161,-0.027528490871191],[-0.0019391478272155,0.080604203045368,-0.014058295637369]],[[-0.02114736661315,0.047288447618484,-0.019707815721631],[0.087483786046505,0.049624614417553,0.052358873188496],[0.034323647618294,0.038123320788145,-0.0727269500494]],[[0.068750880658627,-0.034922689199448,0.088133089244366],[0.034679088741541,0.040630154311657,-0.0083680711686611],[0.046032104641199,-0.023942489176989,0.038736719638109]],[[0.035178143531084,0.10759299248457,-0.027571445330977],[0.033117178827524,-0.038215577602386,0.11657348275185],[0.017795899882913,0.067626163363457,0.0048922370187938]],[[0.037983279675245,-0.048709951341152,0.062558516860008],[0.064490124583244,-0.0090306382626295,0.069573767483234],[0.12098005414009,0.043761897832155,0.065426722168922]],[[0.081689111888409,0.19948282837868,0.10380211472511],[-0.042319353669882,0.098924241960049,0.040490821003914],[0.085504226386547,0.17901185154915,0.12626454234123]],[[0.077811911702156,0.021968971937895,-0.077907100319862],[-0.026318173855543,-0.0019417802104726,-0.010599207133055],[-0.0026971360202879,0.019094670191407,0.10490822046995]],[[-0.0087389871478081,0.0028437913861126,0.070037856698036],[0.064090251922607,0.074289225041866,0.0034521180205047],[0.0042890491895378,-0.034281972795725,0.094501309096813]],[[0.044350255280733,-0.00058323499979451,0.064218461513519],[0.0043315785005689,0.032536968588829,-0.067052811384201],[-0.035880520939827,-0.0048016998916864,0.049898590892553]],[[0.012693739496171,-0.0075967176817358,-0.010565666481853],[0.024972228333354,-0.02273391187191,0.069287300109863],[-0.034476388245821,-0.0023053216282278,0.026697788387537]],[[0.055154550820589,0.031155928969383,0.24517591297626],[-0.0086495876312256,-0.025799132883549,0.021209470927715],[0.047246009111404,0.079553470015526,0.092514216899872]],[[-0.028829917311668,0.06712794303894,-0.15144275128841],[-0.015453436411917,0.015583048574626,-0.00035844626836479],[-0.070645734667778,0.019282029941678,-0.0022126568946987]],[[-0.021307984367013,-0.045015096664429,-0.090573601424694],[-0.044914674013853,-0.073045656085014,-0.029550621286035],[-0.041083943098783,-0.013836288824677,0.054598186165094]],[[0.11290959268808,-0.050510849803686,-0.012360522523522],[-0.0068069691769779,0.03421363979578,-0.022841207683086],[-0.007646543905139,0.086658127605915,-0.023041633889079]],[[0.07359667122364,-0.077265009284019,-0.017170641571283],[-0.039747379720211,0.083770185709,0.026834938675165],[-0.043165005743504,-0.045612562447786,0.0049806674942374]],[[0.039373409003019,0.042527910321951,0.0078153796494007],[-0.007512966170907,-0.0048967278562486,0.050332009792328],[-0.0089401099830866,0.014332209713757,0.093813665211201]],[[-0.0024678737390786,0.034930985420942,-0.030913034453988],[0.032311674207449,-0.0072637987323105,0.11594665050507],[-0.047351814806461,0.098949894309044,0.026324743404984]],[[0.037188977003098,0.022633956745267,0.023410135880113],[0.074964001774788,0.12273877859116,-0.022968588396907],[0.076267823576927,0.10451313108206,-0.003020687494427]],[[-0.041514471173286,-0.028200289234519,0.086861796677113],[-0.03184675052762,-0.013257022947073,0.0090121058747172],[-0.045874610543251,-0.030349003151059,0.057199634611607]],[[-0.013768199831247,-0.029147151857615,0.086894161999226],[-0.053865920752287,-0.052022431045771,-0.034537687897682],[-0.063442900776863,-0.047764755785465,0.026520932093263]],[[0.089586585760117,0.0026259915903211,0.080184981226921],[0.029406975954771,-0.00035556210787036,-0.03657728433609],[0.13080036640167,0.12155672907829,0.11005821079016]],[[0.0067487000487745,0.023485116660595,0.0036618805024773],[0.033374600112438,-0.022933311760426,-0.012010633945465],[0.013104312121868,0.0063947774469852,-0.062844559550285]],[[0.076896272599697,0.0037886158097535,0.045274496078491],[-0.0001656345120864,0.032195456326008,-0.047619629651308],[0.026209121569991,-0.050922241061926,0.016515329480171]],[[-0.04086085781455,-0.014773216098547,-0.02879367955029],[-0.025034746155143,0.067503847181797,-0.033947169780731],[0.038726072758436,0.026492120698094,0.063431449234486]],[[0.020311342552304,-0.019717564806342,0.14019265770912],[-0.06951168179512,0.034787375479937,0.05332974717021],[-0.01217239163816,0.037187952548265,0.0089614884927869]],[[0.10596477240324,-0.0022667506709695,-0.049800045788288],[0.0070945834740996,0.06782802939415,0.13918805122375],[-0.019096054136753,0.094478063285351,0.045678794384003]],[[0.071625202894211,0.047752279788256,0.023891642689705],[-0.009185129776597,-0.076130658388138,-0.00097691733390093],[0.10663355141878,-0.049538299441338,0.068535335361958]],[[-0.085620753467083,0.02403960749507,0.022663194686174],[0.070727542042732,-0.014391515403986,0.091053687036037],[0.017134534195065,-0.020222775638103,-0.0012648798292503]],[[0.022152623161674,0.1051747277379,0.01762400008738],[-0.0079792225733399,0.024894261732697,0.065071724355221],[0.095271445810795,0.035827029496431,-0.0026248006615788]],[[0.091270513832569,-0.0036501509603113,0.089440047740936],[-0.0027012645732611,0.022109331563115,-0.0043866154737771],[0.062063317745924,0.054571628570557,0.058571733534336]],[[0.0031936662271619,0.081965930759907,-0.037039216607809],[0.032716829329729,0.071489244699478,0.033985026180744],[0.066817939281464,0.018330061808228,-0.025927107781172]],[[0.05644866079092,0.0047201570123434,-8.1809266703203e-05],[-0.011710531078279,-0.01320032030344,-0.049811445176601],[-0.015523863956332,-0.020797139033675,0.040710683912039]],[[0.014788592234254,0.001291177701205,-0.040044024586678],[-0.0073293298482895,-0.020153935998678,0.018475398421288],[-0.014549891464412,0.035283323377371,-0.025638751685619]],[[0.057518761605024,0.054568149149418,-0.0078687407076359],[0.02811536565423,-0.04589119553566,0.097152672708035],[0.065322078764439,-0.027627538889647,0.031093586236238]],[[-0.0073076928965747,-0.047413807362318,-0.026363553479314],[-0.075707845389843,0.0064814337529242,-0.15756577253342],[-0.02438891492784,-0.0210155043751,0.027627792209387]],[[0.01034370996058,0.057004868984222,0.067118175327778],[0.03843567147851,-0.0087717976421118,0.021904937922955],[-0.010346461087465,0.071474507451057,-0.0098589351400733]],[[-0.058378774672747,-0.049006476998329,-0.073770381510258],[-0.097330957651138,0.026565438136458,0.025432964786887],[-0.11920972168446,-0.00025740900309756,-0.032327804714441]],[[0.018564969301224,0.0082870721817017,-0.017276937142015],[-0.097227059304714,-0.017722439020872,0.087997406721115],[-0.067054100334644,0.01191574614495,-0.017382986843586]],[[-0.0031515636947006,0.045489657670259,0.14974151551723],[0.022258054465055,0.023833844810724,0.056977540254593],[0.037480585277081,-0.045442424714565,0.068768985569477]],[[0.0045753661543131,-0.012145824730396,-0.046543393284082],[0.029395679011941,-0.048234429210424,-0.069395169615746],[-0.0069048418663442,0.046469181776047,-0.0081929229199886]],[[-0.042543072253466,-0.0027076213154942,-0.053539954125881],[0.0030336445197463,0.031492099165916,0.017619313672185],[0.040299832820892,0.1808355897665,0.033633504062891]],[[0.0065624229609966,0.05177479237318,-0.0028308229520917],[0.04539417475462,0.025405464693904,0.098925530910492],[0.061305671930313,0.049318999052048,0.027942759916186]],[[0.083513386547565,0.016247829422355,0.048355467617512],[0.054553810507059,0.066501796245575,0.067419528961182],[-0.0033660947810858,0.021876759827137,-0.050810735672712]],[[0.015026681125164,-0.020235011354089,0.033919464796782],[-0.048451866954565,0.063411578536034,-0.0087925558909774],[0.04571421071887,0.025966772809625,0.037694912403822]],[[-0.017248228192329,0.096462354063988,-0.045762557536364],[-0.021052051335573,0.0058468668721616,0.031052859500051],[-0.037088729441166,0.019934136420488,0.077532753348351]],[[-0.0036291182041168,0.037409838289022,0.03366382047534],[0.00440518790856,0.0090305646881461,-0.0079123182222247],[0.051562372595072,0.048742119222879,0.013815914280713]],[[-0.065100751817226,0.0062090661376715,-0.034862708300352],[-0.00024493437376805,0.002778987865895,0.014611265622079],[-0.081306956708431,-0.049513459205627,-0.012765358202159]],[[8.5851686890237e-05,0.038384061306715,0.020271128043532],[-0.037569779902697,0.068349197506905,0.045834694057703],[-0.017695052549243,-0.058203767985106,-0.030117711052299]],[[-0.014202245511115,-0.044676080346107,-0.0094911744818091],[-0.031874991953373,-0.077918827533722,0.033625312149525],[0.019758416339755,0.027026947587729,0.056116443127394]],[[-0.037697780877352,-0.020094024017453,-0.02009604871273],[0.019981373101473,0.077758215367794,0.06836973130703],[-0.036649759858847,0.0059531452134252,0.0066001061350107]],[[0.041395649313927,0.031909350305796,0.034308150410652],[-0.095489904284477,-0.02732670865953,-0.019850324839354],[-0.0084528746083379,0.0017899498343468,0.013923234306276]],[[-0.050594035536051,-0.0052294083870947,0.086107887327671],[0.0088255694136024,0.043482165783644,0.012114455923438],[0.02623001486063,0.030161740258336,0.08790297806263]],[[0.10311895608902,0.065377101302147,0.054005738347769],[0.026225930079818,0.01374850794673,-0.069869004189968],[0.055779211223125,0.018161593005061,0.10918378829956]],[[0.022975582629442,0.015311609953642,0.023244809359312],[-0.012912889011204,0.047656688839197,0.050434961915016],[-0.017568474635482,0.047326114028692,-0.078860580921173]],[[-0.098348945379257,0.007055688649416,0.064305260777473],[0.01872705668211,-0.0087854508310556,-0.027156729251146],[0.022202188149095,-0.039148487150669,0.036199051886797]],[[0.0092546744272113,-0.0014369989512488,0.043631564825773],[0.026622446253896,0.0029684791807085,0.0094525367021561],[-0.018343240022659,-0.018387915566564,0.030462151393294]],[[0.00066539837280288,0.065909415483475,0.040065754204988],[0.0395736284554,0.051985878497362,0.057508405297995],[-0.03306969255209,0.018819874152541,0.026613086462021]],[[-0.035482950508595,0.096452474594116,-0.046351056545973],[-0.0046238945797086,-0.066551551222801,-0.023359963670373],[0.01974043995142,-0.050078064203262,0.061373442411423]],[[-0.053357526659966,0.011659526266158,0.040143333375454],[-0.029503295198083,0.031151747331023,0.010245095938444],[-0.010255021974444,-0.0041122990660369,0.054060768336058]],[[0.027012478560209,-0.0254124738276,-0.042095601558685],[-0.055854070931673,0.030354347079992,-0.020878871902823],[0.015106687322259,-0.028367424383759,0.027593465521932]],[[0.018740171566606,-0.054119236767292,-0.00052623014198616],[-0.017727434635162,-0.079831995069981,-0.074032515287399],[0.059474151581526,-0.033159039914608,-0.051070615649223]],[[-0.00091253075515851,0.094804026186466,0.018469918519258],[0.0007747354102321,-0.033745843917131,0.017074504867196],[-0.10453806817532,0.086857244372368,-0.010163132101297]],[[-0.044343825429678,-0.0082785291597247,-0.032864551991224],[0.071819715201855,-0.00065530173014849,-0.0076240468770266],[0.052540943026543,0.071658551692963,0.020970925688744]],[[-0.015293918550014,-0.0048299483023584,-0.009055133908987],[0.082918025553226,-0.00096238742116839,0.033165112137794],[0.12015590816736,-0.0090686902403831,-0.082020148634911]],[[0.015848137438297,0.028773093596101,-0.071114540100098],[-0.056333217769861,0.014490460976958,0.083378523588181],[-0.050786703824997,0.035886310040951,-0.025456698611379]],[[0.020906925201416,-0.05200932174921,0.078172087669373],[0.016235342249274,0.12206276506186,-0.031774040311575],[-0.02883637137711,-0.010378769598901,-0.025221800431609]],[[-0.0086474316194654,-0.01937491632998,-0.09018087387085],[-0.042331755161285,-0.036374967545271,0.02913798764348],[0.034744653850794,-0.060689747333527,-0.034678526222706]],[[0.055530235171318,-0.001076525892131,-0.050639554858208],[0.026303803548217,0.081808403134346,-0.034922622144222],[-0.0013097453629598,0.046964541077614,0.0756845921278]],[[-0.0025068081449717,-0.030460925772786,-0.025047702714801],[-0.0095964539796114,0.047010567039251,0.02198108099401],[0.011641670018435,0.015923315659165,0.11375952512026]],[[0.0050763958133757,0.015208886004984,-0.0026110303588212],[-0.026264492422342,0.015756089240313,0.070584908127785],[0.1036089733243,0.0030560612212867,-0.0062796678394079]],[[0.025790369138122,0.030177913606167,-0.0066166445612907],[-0.019780322909355,-0.010411910712719,-0.037275228649378],[-0.028645174577832,-0.036150150001049,-0.0070743914693594]],[[0.029261749237776,0.0019423132762313,0.036318857222795],[0.011569751426578,0.051290761679411,0.039993844926357],[0.016150437295437,-0.075453974306583,-0.083925850689411]],[[-0.05159904435277,0.03851081430912,0.018595695495605],[0.072111211717129,-0.029552828520536,0.012229595333338],[0.046674937009811,-0.018217923119664,0.036415938287973]],[[0.023485202342272,0.11256667226553,-0.059091571718454],[0.030829887837172,0.071498945355415,0.033046212047338],[0.10281256586313,0.033062115311623,0.01940587349236]],[[-0.014983612112701,0.026352312415838,0.054766923189163],[0.050767537206411,0.00041215415694751,0.076393969357014],[0.083248883485794,0.029921943321824,-0.0070962808094919]],[[0.032625094056129,0.0049998057074845,-0.055801659822464],[0.0045578135177493,-0.024611195549369,0.10560894012451],[-0.079871334135532,0.047840945422649,0.017451787367463]],[[0.010404199361801,0.03509183973074,-0.015421012416482],[0.052381750196218,-0.022525718435645,-0.043915536254644],[0.029732475057244,-0.045688845217228,0.019797585904598]],[[0.050177607685328,0.029766637831926,-0.057541828602552],[0.018109129741788,-0.069094128906727,0.029771247878671],[0.012958912178874,0.00037261290708557,-0.037097550928593]],[[-0.027346672490239,-0.038893148303032,-0.0070751300081611],[0.00024571813992225,-0.064260207116604,-0.061581213027239],[0.0970663651824,0.0092235971242189,-0.0057462304830551]],[[-0.054029792547226,-0.0063049891032279,-0.0028330013155937],[-0.0059698661789298,0.016706224530935,0.069776073098183],[0.050981678068638,0.084924392402172,-0.039352923631668]],[[-0.012230828404427,0.11053483188152,0.041631333529949],[-0.0044600372202694,0.092108145356178,-0.0048394021578133],[0.026513155549765,0.031613308936357,0.074725821614265]],[[-0.11041049659252,-0.016811951994896,0.058109555393457],[-0.061783470213413,-0.095921777188778,-0.041595790535212],[-0.025166561827064,-0.048175252974033,-0.04942811653018]],[[0.040104269981384,0.029769217595458,0.13739286363125],[-0.029430344700813,-0.029049562290311,-0.050388529896736],[0.0030163964256644,0.064072839915752,-0.0134735153988]],[[0.037774048745632,0.024679433554411,0.020055990666151],[0.0022389143705368,-0.025942452251911,0.02629572711885],[-0.046723201870918,0.04943323135376,0.048053838312626]],[[-0.020267318934202,-0.081754103302956,0.040281217545271],[-0.020643020048738,0.0083488440141082,0.029660293832421],[-0.0085544120520353,-0.0072837830521166,0.002314668148756]],[[0.047552816569805,-0.055993527173996,0.038370713591576],[-0.0090632727369666,0.020580714568496,-0.063540562987328],[-0.047495625913143,0.040244869887829,-0.022515207529068]],[[0.073889508843422,0.053422845900059,0.023304488509893],[0.00053221039706841,0.023946434259415,-0.0053815273568034],[0.010968467220664,-0.0051303817890584,-0.034473590552807]],[[-0.0072123394347727,0.019010907039046,0.019642805680633],[0.041330981999636,-0.027333155274391,-0.022251224145293],[0.01971310377121,0.010231323540211,-6.4638748881407e-05]],[[-0.039025079458952,-0.028504593297839,0.054168939590454],[-0.027407804504037,0.012022250331938,0.062776178121567],[0.051068607717752,-0.051850311458111,0.047558967024088]],[[-0.010182270780206,0.10410559922457,0.076000966131687],[-0.058347620069981,-0.09215484559536,0.0028986542019993],[0.10059022158384,0.0077183982357383,-0.046109318733215]],[[-0.010773551650345,0.0047927089035511,0.001675363862887],[0.088175907731056,0.050584878772497,-0.0013583773979917],[-0.033146716654301,0.0028148340061307,0.10609544813633]],[[0.065932668745518,0.097321584820747,0.090784266591072],[0.0091570047661662,0.051624089479446,-0.028054213151336],[0.083129286766052,0.12095404416323,-0.0067201759666204]],[[-0.025841373950243,0.0041198856197298,-0.011962742544711],[0.026391671970487,-0.029357396066189,-0.09749811142683],[-0.031313724815845,0.091172270476818,-0.018383115530014]],[[-0.094037987291813,0.06920026242733,0.097693271934986],[-0.070214562118053,0.054126884788275,-0.059317752718925],[0.058661486953497,0.047193679958582,-0.056705817580223]],[[0.069008581340313,-0.052569422870874,0.01755596883595],[-0.055084075778723,-0.006172985304147,0.092423535883427],[0.028097901493311,0.021344682201743,0.0066596283577383]],[[0.034649338573217,0.014149713329971,0.083029188215733],[-0.02588502690196,0.01612514257431,0.038392409682274],[-0.083981864154339,-0.014772437512875,0.045823615044355]],[[0.084500625729561,-0.022295784205198,0.026364414021373],[0.045283131301403,-0.065633796155453,0.084549896419048],[-0.0083194524049759,-0.063942492008209,-0.012925465591252]],[[0.042032934725285,0.10611760616302,0.12190102040768],[0.065777778625488,0.10984795540571,0.042529311031103],[0.03874185308814,0.036944780498743,0.050867326557636]],[[-0.068167962133884,0.075055688619614,0.028276974335313],[-0.030491461977363,-0.012119057588279,0.058895897120237],[0.078390933573246,0.00096540432423353,-0.014979337342083]],[[0.033529303967953,0.074281968176365,0.05914968624711],[-0.02647839486599,0.0034413498360664,-0.091879487037659],[0.069249875843525,-0.02749964222312,0.054375249892473]],[[-0.068824119865894,0.028367543593049,0.012259459123015],[0.016849189996719,-0.067949458956718,0.086418367922306],[-0.025976836681366,-0.032935779541731,-0.058073736727238]],[[0.092222683131695,0.010635077953339,0.046481974422932],[0.11385475844145,-0.00046337221283466,0.051129683852196],[0.01410455442965,-0.036783091723919,0.010132976807654]],[[-0.018683582544327,0.038170162588358,0.07379525154829],[0.039541728794575,0.047565650194883,0.075416065752506],[-0.051434177905321,0.023449910804629,0.057324230670929]],[[-0.0023160597775131,0.034322641789913,0.035719159990549],[-0.060575988143682,0.010462570935488,-0.015984378755093],[0.019273962825537,0.073761314153671,0.10161289572716]],[[0.066223062574863,0.10390815883875,0.013792153447866],[0.034998197108507,0.0043189343996346,-0.0017785283271223],[-0.031079243868589,0.063105344772339,-0.00085950986249372]],[[-0.0032618981786072,-0.017270432785153,-0.04265957698226],[-0.0078731216490269,0.061445169150829,0.014577279798687],[-0.075148321688175,-0.027011351659894,0.042648781090975]],[[-0.054506413638592,-0.041287049651146,-0.015543666668236],[0.070767767727375,0.1020872220397,-0.072307236492634],[-0.014032031409442,0.046644102782011,-0.10277196019888]],[[0.060755465179682,-0.011480946093798,0.0023537890519947],[-0.039338711649179,-0.021151853725314,0.022679580375552],[0.017743403092027,-0.064255483448505,0.034031040966511]],[[-0.011603064835072,-0.037616688758135,0.11690527945757],[-0.038371257483959,0.027943201363087,-0.054308846592903],[-0.018732726573944,-0.022906899452209,0.018123619258404]],[[-0.087696604430676,0.016540123149753,0.010469325818121],[-0.00069936260115355,0.049903701990843,0.093499414622784],[-0.10115536302328,-0.0074642174877226,0.01388787291944]],[[-0.064002864062786,0.013212105259299,-0.060218770056963],[0.05556383356452,0.003393815131858,0.019431257620454],[-0.025261530652642,-0.0087749008089304,0.017361374571919]],[[-0.021801514551044,-0.0081443218514323,-0.064567029476166],[-0.09389889985323,-0.047271214425564,-0.017569767311215],[0.03220608830452,-0.045827552676201,-0.060615751892328]],[[-0.088839985430241,-0.084837712347507,0.010117272846401],[0.037393927574158,0.042765650898218,-0.015363147482276],[0.015147288329899,0.059020429849625,0.014300451613963]],[[-0.038448601961136,0.021441537886858,0.00433429190889],[-0.033563673496246,0.041960459202528,0.010717369616032],[0.13745704293251,0.035278741270304,0.038302801549435]],[[0.063095428049564,-0.013451178558171,0.018858673051],[0.009839897044003,0.0075405659154058,-0.081513293087482],[-0.043688230216503,-0.044335935264826,0.13967943191528]],[[-0.069166272878647,-0.031587034463882,0.017122991383076],[-0.10490019619465,-0.068589679896832,0.048392690718174],[-0.07051183283329,0.0099405637010932,-0.010742826387286]],[[0.087831914424896,-0.027976147830486,0.099502891302109],[-0.018432382494211,-0.0012751546455547,-0.0072828573174775],[-0.084797248244286,-0.020116616040468,-0.085365384817123]],[[0.018400492146611,-0.01285021007061,0.017762804403901],[-0.015676964074373,0.013744447380304,0.019955307245255],[0.034822341054678,0.044869966804981,0.021275209262967]],[[-0.077487878501415,0.11283046752214,0.07838598638773],[-0.065884135663509,0.00066610268549994,-0.013724634423852],[0.083280965685844,-0.036089822649956,-0.049265783280134]],[[0.010591237805784,-0.084395758807659,0.0090497005730867],[0.051608975976706,0.023525599390268,-0.00053602637490258],[-0.088556654751301,0.053818248212337,0.019815655425191]],[[-0.016578869894147,0.035249155014753,0.050312589854002],[-0.067108429968357,0.018289063125849,-0.0010822095209733],[-0.10115891695023,-0.00051221088506281,0.078645057976246]],[[-0.035711072385311,-0.047742139548063,0.047738451510668],[0.016215829178691,0.012300453148782,0.065259255468845],[-0.028147015720606,-0.01100296061486,0.085651136934757]],[[0.0080726752057672,0.10524585098028,0.10766088962555],[-0.077032305300236,0.037690911442041,0.005759431514889],[0.011696414090693,0.054358679801226,-0.0050140582025051]],[[0.0039377952925861,-0.030896004289389,-0.02037388086319],[0.014884326606989,-0.082524076104164,-0.0084943752735853],[-0.049145914614201,-0.057559445500374,0.010139224119484]]],[[[-0.020769899711013,0.02128397859633,0.049158036708832],[0.0094744814559817,-0.017185030505061,0.019643636420369],[-0.01134212128818,0.029430883005261,0.061552226543427]],[[0.025698039680719,0.014630204997957,0.0069799306802452],[-0.048574090003967,0.032761823385954,0.04731186106801],[0.02785087749362,0.068218715488911,0.04566951841116]],[[-0.046634428203106,0.046228643506765,0.0039882445707917],[0.041838880628347,-0.014392575249076,0.0072280489839613],[-0.020387955009937,0.017229663208127,0.037044368684292]],[[-0.0042571951635182,0.019308334216475,-0.0087131541222334],[-0.074414640665054,-0.053174521774054,-0.017189309000969],[-0.01259315572679,-0.12838079035282,0.018357129767537]],[[-0.01877729780972,0.07839085906744,-0.012306250631809],[0.024239571765065,0.010897876694798,0.073507249355316],[-0.0070984452031553,0.059224102646112,0.021814411506057]],[[-0.012179453857243,0.0083203725516796,0.0219158064574],[0.039133053272963,0.0022387716453522,0.05552277341485],[0.014146878384054,-0.063591755926609,0.018621686846018]],[[0.010784815996885,-0.00018850494234357,0.033226426690817],[0.076302662491798,-0.056049421429634,-0.047184471040964],[0.026712961494923,0.00095601414795965,-0.0038609260227531]],[[-0.031255412846804,-0.030265336856246,0.00068162695970386],[0.13876493275166,0.062397837638855,0.013905406929553],[-0.064342997968197,0.071832552552223,-0.013150402344763]],[[0.0091422870755196,-0.062695644795895,0.035171836614609],[0.061940610408783,-0.037912581115961,-0.07083498686552],[0.068049512803555,0.066856265068054,0.10702796280384]],[[-0.035928960889578,0.014956766739488,0.12026299536228],[0.1164318472147,0.11289699375629,0.08254923671484],[0.082250021398067,-0.033445592969656,-0.033622551709414]],[[-0.013944900594652,-0.048479564487934,0.0052385181188583],[-0.045124895870686,0.054625567048788,0.016319591552019],[-0.014846419915557,0.056926697492599,0.019767643883824]],[[0.056416716426611,-0.019868597388268,0.065954506397247],[-0.051028102636337,-0.032179195433855,-0.010628477670252],[0.062902219593525,0.028519734740257,0.13633136451244]],[[0.10024503618479,-0.024994432926178,0.014228977262974],[-0.0090816235169768,0.02212842181325,-0.01704997010529],[-0.017376031726599,0.012844464741647,0.0020309679675847]],[[0.1299057751894,0.070970945060253,-0.094605460762978],[-0.056659560650587,-0.0063438504002988,-0.036375131458044],[0.017234826460481,-0.010501964949071,0.00022232336050365]],[[0.044072762131691,0.0038331926334649,0.060293424874544],[0.091164082288742,0.043525997549295,0.040245749056339],[0.078964032232761,0.10409694910049,0.054385684430599]],[[0.0021241642534733,0.0025102291256189,-0.031992733478546],[-0.047333519905806,-0.010116575285792,-0.11332856118679],[-0.01449909619987,-0.075829744338989,-0.091464854776859]],[[-0.018850108608603,-0.065749675035477,0.065065830945969],[0.11935900896788,-0.029304966330528,0.061264686286449],[-0.09260132163763,-0.040019240230322,-0.089543186128139]],[[0.018955621868372,0.0056166625581682,-0.038382891565561],[-0.011255589313805,-0.087497025728226,-0.078024789690971],[0.031549513339996,0.050611451268196,-0.078716307878494]],[[0.013616406358778,-0.078154429793358,0.047063991427422],[0.068229921162128,-0.10438884049654,0.063161104917526],[-0.014727826230228,-0.038577791303396,0.013568761758506]],[[0.0049944859929383,0.035384360700846,0.05112374201417],[-0.0085841817781329,0.017088258638978,0.077565871179104],[0.063261412084103,-0.010456698946655,0.030362209305167]],[[0.072640806436539,-0.00072639092104509,0.077930197119713],[-0.024719100445509,0.095663890242577,-0.032098900526762],[0.10281022638083,0.023522648960352,-0.018915528431535]],[[0.094784334301949,-0.0015059921424836,-0.044784609228373],[0.091236919164658,0.073664411902428,0.11182548850775],[0.014804453589022,0.075882814824581,0.0070526641793549]],[[0.076918244361877,-0.0071747852489352,0.017230207100511],[0.00055972678819671,0.037266917526722,-0.06742350012064],[-0.032110199332237,-0.031264755874872,0.044790934771299]],[[-0.028467597439885,-0.027417752891779,-0.090850822627544],[-0.061730999499559,0.049450241029263,0.001776734367013],[0.071421705186367,-0.048939824104309,0.019589828327298]],[[0.083950079977512,0.047452956438065,0.054033417254686],[0.075219035148621,-0.025894094258547,0.054202120751143],[0.030751056969166,0.014581831172109,0.022515807300806]],[[-0.10452075302601,0.040973421186209,0.035880658775568],[0.029558317735791,0.12147265672684,-0.01847567781806],[-0.042567800730467,-0.10731898248196,-0.038495149463415]],[[0.022306868806481,-0.038045819848776,-0.034264612942934],[0.0073560611344874,-0.037828326225281,0.0015899310819805],[-0.047753926366568,0.076940774917603,-0.0044822576455772]],[[-0.037116650491953,0.060818899422884,-0.040598839521408],[0.087937489151955,-0.0063083600252867,-0.027734966948628],[0.037378765642643,0.025371037423611,-0.054134700447321]],[[-0.067075774073601,0.039482317864895,0.00039707278483547],[0.038226678967476,-0.041956797242165,0.1201388835907],[0.048148643225431,0.09466627240181,-0.0014461911050603]],[[-0.036717303097248,-0.0023351996205747,-0.034792296588421],[0.0088601019233465,0.02238736115396,0.064300626516342],[0.029605092480779,0.10364559292793,0.0047451737336814]],[[-0.023503987118602,0.035602398216724,-0.043756902217865],[0.057015020400286,0.048093494027853,-0.022502234205604],[-0.014946334064007,0.029671262949705,-0.026311181485653]],[[0.043179605156183,0.044898129999638,-0.015183033421636],[-0.028742603957653,0.062735661864281,-0.04832423850894],[0.081021174788475,-0.0098814656957984,-0.025077568367124]],[[0.026194972917438,-0.028439026325941,0.0070815528742969],[0.055804871022701,-0.014693676494062,-0.0040036384016275],[0.0028662122786045,0.075477831065655,-0.027784464880824]],[[0.010043303482234,0.063652008771896,0.024603558704257],[0.005327021703124,-0.045967329293489,-0.013175055384636],[0.05947844684124,-0.006513639818877,0.0021882280707359]],[[0.010876159183681,-0.035376653075218,0.03408058360219],[-0.018664354458451,0.077856361865997,-0.039646837860346],[-0.047611963003874,-0.058257270604372,0.076895162463188]],[[0.010436719283462,0.0649019703269,-0.013723775744438],[-0.020917357876897,-0.030773399397731,-0.035126842558384],[0.024176796898246,-0.0035758481826633,-0.034725323319435]],[[-0.01888987980783,-0.045690730214119,-0.024037025868893],[0.019747933372855,-0.025314269587398,0.018314903602004],[-0.020554227754474,-0.013918139971793,-0.038188777863979]],[[0.056964825838804,0.0031389745417982,0.084656372666359],[0.021642213687301,-0.02161643281579,-0.023244174197316],[0.043812844902277,-0.011403790675104,-0.03159910812974]],[[-0.013484519906342,-0.012752289883792,-0.012114077806473],[0.048501450568438,0.03582413867116,-0.0079135550186038],[0.085941419005394,0.052522469311953,-0.018245903775096]],[[0.04058812558651,-0.015294286422431,0.029453698545694],[-0.10913523286581,0.025858139619231,0.01743495836854],[0.0071200001984835,0.031660512089729,0.015300770290196]],[[-0.041517518460751,0.046455606818199,0.042099338024855],[0.011131684295833,-0.0064780418761075,-0.0085772508755326],[0.067218534648418,-0.052835576236248,-0.014594731852412]],[[-0.023875759914517,-0.034904547035694,0.012214073911309],[-0.0061456998810172,0.072212338447571,-0.028834380209446],[-0.018635014072061,-0.032942973077297,0.0079899178817868]],[[-0.023245012387633,0.013825666159391,0.0060281418263912],[0.022058976814151,0.033621471375227,0.077463671565056],[-0.011186194606125,-0.014767345041037,0.039447586983442]],[[0.012036306783557,0.080112494528294,0.019995883107185],[0.021244248375297,0.01663438975811,-0.018291659653187],[0.031562928110361,0.0087152374908328,0.012093427591026]],[[-0.0068914978764951,0.040718510746956,0.024022726342082],[-0.039170004427433,-0.015768595039845,-0.0034266654402018],[0.084096372127533,0.032942980527878,0.10843808948994]],[[0.046209421008825,0.045914340764284,0.022926511242986],[0.034679364413023,0.0084127942100167,-0.0092117674648762],[0.066740766167641,-0.065783448517323,0.011594212614]],[[0.078072749078274,0.053169749677181,0.027482196688652],[0.095962777733803,-0.069214552640915,-0.0062425518408418],[0.024174593389034,0.067302294075489,0.027940755710006]],[[-0.029943872243166,-0.085814237594604,-0.047982599586248],[0.089474640786648,0.14870901405811,-0.028179241344333],[0.0089234784245491,0.053916454315186,0.035091497004032]],[[0.06111166998744,0.00033438988612033,0.04744965583086],[0.10533554852009,-0.086233213543892,-0.0050306543707848],[0.078624926507473,0.008875492028892,0.013929973356426]],[[-0.068635672330856,-0.0027046604081988,-0.01299870479852],[0.017550487071276,0.053561974316835,0.050042517483234],[0.0042407750152051,0.029338588938117,-0.0072651854716241]],[[0.036963112652302,0.022871877998114,-0.02575477026403],[-0.011166836135089,-0.04404503852129,-0.0019659476820379],[0.01579612493515,-0.0085442569106817,-0.046912472695112]],[[-0.0098292166367173,0.021801516413689,-0.023736618459225],[0.051266688853502,-0.073333121836185,0.060258165001869],[0.099227696657181,0.0049017993733287,-0.047884620726109]],[[0.031626049429178,-0.0081348400563002,-0.011755001731217],[-0.028162565082312,0.045151498168707,-0.04065091535449],[0.0071887485682964,-0.06354246288538,-0.0078595476225019]],[[0.034373499453068,0.0055533275008202,-0.039498955011368],[0.030261335894465,-0.019270753487945,0.0019747179467231],[0.068518258631229,-0.013612886890769,-0.028252393007278]],[[0.03081925958395,0.13389229774475,-0.01877268217504],[0.096363730728626,-0.024795161560178,-0.031985186040401],[-0.020521435886621,0.011835128068924,0.090746119618416]],[[-0.02369792945683,-0.019319094717503,0.059705391526222],[0.039545755833387,-0.035184983164072,0.0018856298411265],[0.0230568125844,0.033527217805386,0.038555052131414]],[[0.046175517141819,-0.03040080703795,0.054463461041451],[0.021169908344746,0.029000014066696,0.031189456582069],[-0.060539327561855,-0.0098178358748555,-0.050706222653389]],[[-0.0016108679119498,-0.06089872866869,0.067275613546371],[0.020287146791816,-0.035219237208366,-0.013879058882594],[-0.0092871189117432,-0.09894060343504,-0.022133287042379]],[[0.011279420927167,0.070573784410954,0.027205185964704],[0.033122051507235,-0.06202931329608,-0.023453531786799],[0.061321455985308,-0.036667123436928,0.038740403950214]],[[0.040662486106157,-0.037736546248198,-0.024886500090361],[0.038046523928642,-0.015808187425137,0.0096896458417177],[0.0030812339391559,-0.063380748033524,0.02982303313911]],[[-0.025127859786153,-0.033305551856756,-0.005378648173064],[0.017524907365441,0.061519671231508,-0.0033814175985754],[-0.048901583999395,-0.00056927773403004,0.015164622105658]],[[0.028396220877767,-0.040811151266098,-0.1284768730402],[-0.099204786121845,0.0088842660188675,0.010269476100802],[-0.017639612779021,0.031829122453928,-0.086073890328407]],[[0.061786528676748,-0.050910517573357,0.0083893854171038],[-0.01840647123754,0.027772981673479,-0.018092205747962],[0.039977394044399,-0.039393465965986,-0.068377025425434]],[[-0.016353152692318,0.012434183619916,0.011687776073813],[0.056441221386194,0.041937924921513,-0.0064318319782615],[0.048088062554598,0.016555193811655,0.028285775333643]],[[-0.063644528388977,-0.034286879003048,0.017990319058299],[-0.057567209005356,-0.075224429368973,0.083749167621136],[0.051854331046343,0.020831555128098,-0.014830100350082]],[[-0.037479028105736,0.044405948370695,-0.056248638778925],[0.019803015515208,0.018973091617227,-0.026035767048597],[0.10698699206114,-0.029874049127102,0.0021690626163036]],[[-0.026311725378036,-0.029885686933994,0.0038947300054133],[-0.006682709325105,-0.062987670302391,-0.032639939337969],[0.048681620508432,0.081008158624172,-0.013796123676002]],[[-0.053483240306377,-0.018231069669127,0.045373260974884],[0.12292551994324,0.010280014947057,-0.028708735480905],[-0.050348315387964,0.042399935424328,0.029935013502836]],[[0.0072872214950621,-0.0074334195815027,0.057170428335667],[-0.044296585023403,0.013946454972029,0.021426633000374],[-0.0078427884727716,0.033990006893873,0.035818353295326]],[[0.085329666733742,-0.0094817047938704,0.0099710905924439],[-0.0034226104617119,-0.022937016561627,0.024563979357481],[0.053251314908266,0.074727207422256,0.020749067887664]],[[-0.04642740264535,-0.01760526932776,-0.07173203676939],[0.017399856820703,0.026972653344274,-0.013368467800319],[-0.041800200939178,-0.0033582637552172,-0.033626019954681]],[[0.071194119751453,0.10385923832655,0.047893833369017],[-0.10387627035379,0.0044567193835974,-0.001244725426659],[-0.02369605191052,-0.014428534545004,-0.025438321754336]],[[0.037879981100559,-0.00087282876484096,0.017437502741814],[0.070734806358814,0.092288807034492,0.022244434803724],[-0.015265286900103,0.018650704994798,-0.014985607936978]],[[-0.049875218421221,-0.056746728718281,0.059639923274517],[0.041492458432913,0.050047632306814,0.05079597607255],[-0.018755124881864,0.018916225060821,-0.0087481364607811]],[[-0.038547199219465,0.11931025236845,-0.062451425939798],[-0.014312925748527,-0.0050581633113325,0.0082769254222512],[0.021083476021886,-0.034834612160921,-0.00014473234477919]],[[0.010604428127408,-0.042412407696247,0.042661432176828],[0.040124792605639,-0.026990223675966,-0.019015680998564],[-0.05531644448638,0.071215860545635,0.033241130411625]],[[-0.045862805098295,-0.099402442574501,0.050111092627048],[-0.018609987571836,0.0030873310752213,0.025289772078395],[0.030865792185068,-0.0073108882643282,-0.065836310386658]],[[0.019694333896041,-0.072902798652649,0.05243955552578],[0.020334720611572,0.015545209869742,-0.062267120927572],[-0.073715105652809,-0.0016084540402517,-0.00029684047331102]],[[-0.079026110470295,0.0085332756862044,0.046998668462038],[-0.019790204241872,0.015091332606971,-0.089823476970196],[-0.0022288986947387,0.0038157324306667,0.033292502164841]],[[-0.024540076032281,0.0060187573544681,0.028317565098405],[-0.00045474665239453,-0.029027447104454,-0.065667726099491],[-0.0043743522837758,-0.038392160087824,0.0088538136333227]],[[-0.048841882497072,0.029598094522953,-0.00040450220694765],[0.0011703540803865,-0.041575379669666,-0.068931415677071],[0.019736392423511,-0.044481080025434,0.017923902720213]],[[-0.044658716768026,0.065039582550526,0.062697350978851],[-0.046739418059587,-0.066546984016895,-0.042168781161308],[0.0012887546326965,0.0046443156898022,-0.073817864060402]],[[-0.058350648730993,-0.040250018239021,0.098324373364449],[0.01595968939364,0.058214761316776,-0.050231575965881],[-0.0077393408864737,-0.072855062782764,-0.020953495055437]],[[-0.01713065803051,0.013688606210053,-0.013528319075704],[-0.014637379907072,0.021140165627003,0.00033656688174233],[-0.084823943674564,-0.00172509776894,0.071758411824703]],[[-0.060386214405298,-0.038964401930571,0.010414435528219],[0.020784068852663,0.024927457794547,0.017772382125258],[-0.01989645883441,-0.058712232857943,0.0033888663165271]],[[0.054513014853001,0.010255485773087,-0.0014662232715636],[0.024136137217283,-0.014104823581874,-0.0030312777962536],[-0.037833206355572,-0.015359384007752,0.09116131067276]],[[-0.0067530022934079,0.013684061355889,-0.011590062640607],[-0.017079351469874,0.027578053995967,-0.0099259978160262],[-0.02046943642199,-0.022621816024184,-0.027166625484824]],[[-0.023825498297811,0.046718444675207,0.059761386364698],[0.033941369503736,0.058404952287674,0.024253075942397],[-0.069940537214279,-0.051727745682001,-0.041711408644915]],[[0.00079305429244414,-0.026258397847414,0.024120055139065],[0.015516713261604,0.0029990540351719,-0.0061206636019051],[-0.037453424185514,0.03115901350975,0.002091403119266]],[[-0.0086185792461038,0.0058234622702003,0.023103281855583],[0.074182212352753,-0.014794674701989,0.081091120839119],[0.069943137466908,0.01538292504847,-0.057550653815269]],[[0.021879008039832,0.014809180982411,-0.061716839671135],[-0.046272538602352,0.056716233491898,0.033801697194576],[0.058006953448057,-0.0094294650480151,0.12205804139376]],[[-0.051161549985409,0.036405950784683,0.0052543533965945],[0.010014468804002,0.018950890749693,0.026762848719954],[0.06701834499836,0.081228084862232,-0.0095133623108268]],[[-0.061847854405642,-0.086016349494457,-0.029248988255858],[-0.020186431705952,-0.072859182953835,0.02050020173192],[0.0042209471575916,-0.02999741025269,-0.056046456098557]],[[0.025858910754323,-0.021976802498102,0.0081640621647239],[-0.01289751008153,-0.0010210372274742,0.040292106568813],[0.012979761697352,0.0060890293680131,0.13582131266594]],[[-0.042013339698315,0.054895512759686,0.046663969755173],[-0.0085895098745823,-0.01589328981936,-0.05005594342947],[0.0035941642709076,0.079270489513874,0.01105154119432]],[[-0.0045274612493813,-0.058328632265329,0.076066829264164],[0.021302429959178,0.066183440387249,0.046539682894945],[-0.00027966126799583,-0.0030097023118287,0.028998313471675]],[[-0.095716878771782,-0.074986159801483,-0.024821577593684],[-0.018012685701251,0.020714813843369,-0.00024395230866503],[0.096588507294655,-0.096443146467209,-0.083900302648544]],[[-0.038032963871956,-0.0094419820234179,-0.050532445311546],[0.096099033951759,0.027311958372593,0.027851354330778],[0.070490770041943,0.038884446024895,0.022150602191687]],[[-0.044383257627487,0.087106212973595,-0.0053952438756824],[0.041996028274298,0.04620311036706,0.037234868854284],[-0.0034950387198478,0.063349813222885,-0.047221962362528]],[[0.017191411927342,0.082524843513966,0.044125281274319],[-0.067618742585182,-0.062609367072582,-0.043226484209299],[0.012303790077567,0.13818322122097,-0.039553176611662]],[[-0.044081229716539,0.076820090413094,0.055327601730824],[-0.035137925297022,-0.0083452379330993,0.058971855789423],[0.038633957505226,-0.11503128707409,0.056089121848345]],[[-0.040524307638407,0.021045943722129,0.013801386579871],[0.13836000859737,0.092056542634964,-0.020947311073542],[0.024197338148952,0.017302008345723,-0.022179977968335]],[[0.061222769320011,-0.021956335753202,-0.0058833374641836],[0.036858066916466,-0.036687087267637,0.0496038608253],[0.0021041776053607,-0.023433562368155,-0.050362274050713]],[[0.092453002929688,0.035746909677982,0.0092160338535905],[0.026721961796284,-0.038768820464611,0.016194324940443],[0.021401174366474,0.07053516805172,0.029680073261261]],[[0.036813132464886,-0.015087065286934,0.021584756672382],[0.039481975138187,0.0099511770531535,0.070555239915848],[0.043981708586216,0.037334203720093,0.022396620362997]],[[0.011203892529011,-0.018379911780357,-0.014209407381713],[0.14255557954311,0.079578027129173,-0.036585763096809],[0.05196863040328,0.0075014792382717,0.057478148490191]],[[-0.044359426945448,0.060953870415688,-0.0043607028201222],[-0.068276338279247,0.030827620998025,-0.012084495276213],[0.054386366158724,0.088130958378315,0.0045421407558024]],[[0.020233057439327,-0.060045056045055,-0.022062689065933],[-0.005412626080215,0.13268618285656,-0.10529011487961],[0.037082962691784,-0.013256802223623,0.0310381911695]],[[-0.021999834105372,0.090912029147148,-0.045609556138515],[0.033405542373657,-0.067595243453979,0.097844108939171],[-0.01473324559629,-0.040742360055447,-0.018878115341067]],[[0.023187888786197,0.024900063872337,-0.041521981358528],[-0.077605575323105,-0.10452184081078,-0.065166756510735],[-0.012914340943098,0.11888051778078,0.03005107305944]],[[-0.0030504071619362,0.021732252091169,0.0062092454172671],[0.025275193154812,-0.016246562823653,-0.056765954941511],[-0.0010933574521914,0.037399280816317,-0.037621226161718]],[[0.033840965479612,0.015076419338584,-0.015297813341022],[-0.010272219777107,-0.031444638967514,-0.0046069640666246],[0.0059920535422862,0.07510320097208,-0.020942727103829]],[[-4.1468578274362e-05,-0.02984187938273,-0.037672068923712],[-0.071182332932949,0.10226672887802,0.13634923100471],[-0.022700183093548,-0.032444920390844,0.08016748726368]],[[-0.082327291369438,0.050132524222136,-0.010017427615821],[-0.016072010621428,0.04896953701973,0.042278371751308],[0.054382644593716,-0.017005551606417,0.054566171020269]],[[-0.015918059274554,0.068456403911114,-0.039299614727497],[0.017063181847334,0.087411634624004,0.010346154682338],[0.061059113591909,-0.0050901602953672,0.026851426810026]],[[-0.0086285611614585,0.047474805265665,-0.070719622075558],[0.031797725707293,0.028835678473115,0.088206849992275],[-0.0071843825280666,0.029682969674468,0.058251701295376]],[[-0.014779995195568,0.041369151324034,-0.022205026820302],[0.033361196517944,0.056106258183718,0.031896617263556],[0.017060231417418,0.02233643271029,0.034752108156681]],[[-0.039191488176584,0.059535287320614,-0.088646098971367],[0.0079240519553423,-0.011984894052148,-0.039086788892746],[-0.031081294640899,0.0095681408420205,-0.01676288805902]],[[-0.027696970850229,0.013284768909216,-0.10285428911448],[-0.014699037186801,-0.050040364265442,0.013621521182358],[0.0052558379247785,-0.079856023192406,-0.028990043327212]],[[-0.00054336327593774,0.041073065251112,0.0219546854496],[-0.050741359591484,0.0038300885353237,-0.064552627503872],[-0.036993470042944,0.052936270833015,0.051387779414654]],[[-0.0095376949757338,-0.0073675005696714,0.085597723722458],[0.041763499379158,0.07818079739809,-0.033357482403517],[0.12680733203888,0.059251978993416,0.030279973521829]],[[-0.047330498695374,0.029283504933119,-0.03415072709322],[0.017987614497542,0.041783433407545,0.082982011139393],[0.0062402421608567,0.0064897858537734,-0.062324471771717]],[[0.0054187593050301,-0.009870046749711,-0.01245953887701],[0.13085553050041,0.042526245117188,0.032800074666739],[-0.030232196673751,-0.02094697766006,-0.056210346519947]],[[0.017044074833393,-0.025663390755653,-0.026130750775337],[-0.032664623111486,0.012609251774848,0.069142058491707],[0.10827272385359,0.062692329287529,-0.00065568351419643]],[[0.021486325189471,-0.015380994416773,0.008023776113987],[0.015654481947422,0.035395260900259,0.031979639083147],[-0.016585778445005,-0.025214130058885,0.07582250982523]],[[0.0095882909372449,0.020884564146399,-0.053686667233706],[0.034024614840746,0.013224630616605,0.0034357677213848],[0.00041900758515112,0.070506677031517,0.05673186853528]],[[0.027309173718095,0.13211907446384,0.010205892845988],[0.043725475668907,-0.017544083297253,0.057582724839449],[0.084069922566414,0.0033464189618826,0.082921639084816]],[[-0.00077654951019213,0.031654465943575,0.02494871430099],[0.07606665790081,-0.042521938681602,-0.0060714203864336],[-0.0098413359373808,0.053302522748709,-0.024485932663083]]],[[[-0.019147681072354,0.0073910765349865,-0.046153109520674],[0.008191304281354,0.080369830131531,-0.027873232960701],[0.068398512899876,-0.0071888552047312,-0.038494940847158]],[[0.058346811681986,-0.0011310525005683,0.0078685376793146],[0.010516642592847,0.023166859522462,-0.027212837710977],[0.088396027684212,-0.032038770616055,0.068303257226944]],[[-0.0082093002274632,-0.023012744262815,0.044389095157385],[-0.068698197603226,0.010290814563632,-0.034290697425604],[-0.06103702262044,-0.006096251308918,0.0508943349123]],[[0.011507590301335,0.050567787140608,-0.0036875358782709],[-0.037775456905365,0.050331972539425,0.028538847342134],[0.065439656376839,0.11707666516304,0.064143925905228]],[[-0.018952252343297,0.033506613224745,-0.0676474198699],[0.11810124665499,-0.008476996794343,-0.021071400493383],[-0.047953903675079,-0.0004703238082584,-0.048133637756109]],[[0.048980217427015,0.027828682214022,-0.037857063114643],[-0.016489464789629,-0.035917684435844,0.056666024029255],[0.091586723923683,0.056912910193205,0.051010612398386]],[[-0.019195832312107,-0.055686023086309,-0.060824584215879],[-0.0071019437164068,-0.012698063626885,0.011347256600857],[0.0041774180717766,-0.033351227641106,0.066620327532291]],[[-0.009176155552268,0.033832628279924,0.053760699927807],[0.0061816782690585,0.014211246743798,0.0028784438036382],[-0.017506998032331,0.060571517795324,0.064984776079655]],[[-0.039533063769341,-0.060677282512188,0.0046960469335318],[0.030558910220861,-0.019255405291915,0.0011730779660866],[0.06143319606781,0.0091568985953927,0.043046843260527]],[[0.077401921153069,0.0074302712455392,0.11659645289183],[0.010825645178556,0.01393000036478,0.11267814040184],[0.10966853052378,0.10947524756193,0.060460936278105]],[[-0.041041564196348,0.020459700375795,-0.039669331163168],[-0.047888167202473,-0.0072053433395922,0.020820826292038],[0.023288160562515,-0.011527743190527,0.080124698579311]],[[-0.042534820735455,-0.037636667490005,0.016336388885975],[0.046097084879875,-0.0046572838909924,-0.075409591197968],[0.017835929989815,0.081634849309921,0.017277531325817]],[[-0.013242333196104,0.022976692765951,0.015481797046959],[-0.003676084568724,-0.0084653114899993,-0.00082506856415421],[-0.010206612758338,0.12134626507759,0.030068643391132]],[[0.035774346441031,-0.043806336820126,0.08417633920908],[-0.026732921600342,-0.032085698097944,0.039805799722672],[0.0164974052459,0.052479345351458,0.12088920176029]],[[0.13113370537758,0.067833855748177,0.16484785079956],[0.03270947933197,0.12795999646187,0.105429507792],[0.12616258859634,0.077008299529552,0.12012211233377]],[[-0.070214740931988,-0.019256982952356,-0.036154236644506],[-0.11737728863955,-0.05484926700592,-0.078691110014915],[0.027979698032141,-0.021766558289528,-0.037641048431396]],[[0.00091174693079665,-0.022562596946955,0.090803951025009],[0.012231887318194,-0.047075636684895,-0.036729980260134],[0.0028804130852222,-0.019933633506298,0.022377386689186]],[[0.05627803131938,-0.14740437269211,-0.04925088211894],[-0.0035349742975086,-0.15056920051575,-0.081134058535099],[-0.077300503849983,0.025425584986806,0.035412665456533]],[[0.016743656247854,-0.041809394955635,-0.020676977932453],[0.057883147150278,-0.058701418340206,0.019479190930724],[-0.004995625000447,-0.026005320250988,-0.04825908318162]],[[-0.0052827331237495,0.040411703288555,0.041542056947947],[0.08696973323822,0.06174087151885,0.02334263548255],[-0.013842854648829,-0.051667414605618,-0.057914916425943]],[[0.0081805912777781,-0.0054206936620176,-0.056892968714237],[-0.021932998672128,0.017878115177155,-0.0043250783346593],[0.044918522238731,0.033877443522215,-0.013235490769148]],[[0.033696636557579,0.029607150703669,-0.0049686511047184],[0.049167465418577,0.0044163204729557,-0.024865332990885],[0.051201093941927,0.02258856780827,0.031019754707813]],[[0.023827988654375,0.084811687469482,-0.058029375970364],[-0.027892395853996,0.053019817918539,-0.010829232633114],[0.026030337437987,0.0023173741064966,0.054675191640854]],[[0.063827514648438,-0.044833172112703,0.029401941224933],[0.015592339448631,0.047058563679457,0.048499956727028],[0.066909708082676,-0.07709114253521,0.063151009380817]],[[0.020164350047708,-0.00072139012627304,0.053555756807327],[0.024896170943975,0.023327484726906,-0.077206283807755],[0.078406356275082,0.011153183877468,-0.045006554573774]],[[0.047546926885843,-0.081400901079178,0.023076880723238],[-0.022955879569054,0.089964970946312,0.013026238419116],[0.032990377396345,0.025180861353874,0.021521668881178]],[[0.033028662204742,0.072027593851089,0.063091821968555],[0.10089534521103,0.047329805791378,-0.059179849922657],[-0.010682929307222,0.073162026703358,0.0056411949917674]],[[-0.012880680151284,0.0010556599590927,0.023878687992692],[-0.02908350713551,-0.024197487160563,0.02301237359643],[0.051484506577253,-0.078549355268478,0.015545272268355]],[[0.074985213577747,0.096061542630196,-0.012868208810687],[0.019009303301573,0.053562730550766,-0.028463480994105],[0.063657648861408,0.078236818313599,0.04259780049324]],[[0.06463535130024,0.0069440822117031,-0.0019891122356057],[0.024757329374552,0.023283721879125,-0.016294276341796],[-0.019517397508025,-0.014981403015554,0.014952289871871]],[[0.016846833750606,-0.011783474124968,0.025631094351411],[0.052891682833433,-0.055501841008663,-0.0028768773190677],[0.071419015526772,0.028191410005093,0.040427900850773]],[[0.01659632474184,-0.029056815430522,-0.014903540723026],[-0.046233780682087,-0.001041520270519,-0.017098300158978],[-0.012843084521592,-0.026288731023669,-0.019158869981766]],[[-0.05429046228528,-0.048428490757942,-0.0079733310267329],[0.052816327661276,0.010578131303191,-0.064453229308128],[0.044281959533691,-0.070797108113766,-0.011579103767872]],[[0.019204456359148,-0.0026001760270447,0.038268469274044],[-0.0449393466115,-0.082061290740967,0.0022307788021863],[0.046710580587387,-0.034167036414146,0.012657007202506]],[[0.053656235337257,0.048512913286686,-0.011477373540401],[0.083710350096226,-0.034767054021358,0.040473435074091],[0.082087606191635,0.0030352440662682,0.042023245245218]],[[-0.062595888972282,0.030578901991248,-0.051346085965633],[0.038748666644096,-0.052100356668234,-0.055345203727484],[0.060156375169754,0.043055526912212,0.054531577974558]],[[-0.01915080845356,0.00089276273502037,-0.0048162541352212],[0.04284431412816,-0.034472171217203,-0.025147510692477],[0.019965372979641,0.020086120814085,0.035653702914715]],[[0.027572611346841,-0.036300964653492,0.058036379516125],[0.042022902518511,-0.042627297341824,-0.020122578367591],[-0.024997455999255,-0.030573653057218,0.090338535606861]],[[0.018907777965069,0.021044159308076,0.07248904556036],[-0.049948144704103,-0.0042320266366005,-0.055904977023602],[0.041545730084181,-0.024424202740192,0.041249465197325]],[[-0.040659692138433,-0.020665047690272,-0.049654718488455],[-0.017819315195084,0.047582764178514,-0.0036636528093368],[-0.010001278482378,0.055942911654711,-0.0029714542906731]],[[-0.028468796983361,-0.11272466927767,-0.058922220021486],[0.011234389618039,-0.035360757261515,0.055071268230677],[-0.032039392739534,-0.032570507377386,0.023377625271678]],[[0.045613031834364,0.044974338263273,-0.011780122295022],[-0.026241274550557,0.062605775892735,-0.093931593000889],[0.014738372527063,-0.06166011095047,-0.038957621902227]],[[0.00010172871407121,-0.020652854815125,-0.0066180001012981],[0.04940689727664,0.01849103718996,-0.035383578389883],[0.085339784622192,0.042145766317844,-0.057478003203869]],[[-0.0065680583938956,0.0058178943581879,-0.029736271128058],[0.048394974321127,-0.010335085913539,0.023352677002549],[0.036905352026224,-0.0037126434035599,0.025741342455149]],[[-0.044171873480082,-0.017036069184542,0.058256562799215],[0.027010573074222,0.11169875413179,0.038632117211819],[0.039859566837549,0.014811303466558,-0.091444060206413]],[[0.040394548326731,0.060814745724201,-0.063233777880669],[0.07283279299736,0.068313889205456,-0.0046949875541031],[-0.047578383237123,-0.052560281008482,0.034885346889496]],[[0.006191800814122,0.034676656126976,0.019070245325565],[0.0075350981205702,-0.0030196805018932,-0.0331020206213],[0.033704973757267,0.056454628705978,0.053771965205669]],[[0.022833770141006,-0.057200323790312,-0.0413375236094],[-0.015857661142945,0.077585391700268,0.026154536753893],[0.051021467894316,0.078385479748249,0.026381874457002]],[[0.014408804476261,-0.027446649968624,0.023323375731707],[0.026207413524389,-0.0092320069670677,0.039060853421688],[-0.0059816455468535,0.10788887739182,0.02919964492321]],[[0.018724074587226,0.0035082064568996,-0.0013977473136038],[-0.0098142838105559,-0.019965499639511,0.06614638119936],[-0.031430408358574,-0.012718349695206,-0.016160452738404]],[[-0.0040414757095277,0.00030304200481623,-0.064225472509861],[0.018553785979748,-0.040092557668686,-0.0080029824748635],[-0.02183436229825,-0.056892037391663,0.02398164011538]],[[-0.042140707373619,-0.055193156003952,-0.018911754712462],[-0.0026410433929414,0.055181562900543,-0.066182270646095],[0.042759548872709,-0.043741352856159,0.064897947013378]],[[0.070890173316002,-0.059040874242783,-0.0054897274821997],[-0.022647282108665,0.028591586276889,0.029174715280533],[0.1054579615593,0.027646407485008,-0.046299144625664]],[[-0.016906810924411,-0.040553759783506,0.045859903097153],[0.03171032294631,0.035384736955166,-0.017630675807595],[0.054276045411825,-0.075042083859444,0.016739521175623]],[[0.033760275691748,0.033187661319971,0.050828978419304],[-0.045602142810822,0.03771885856986,0.030051479116082],[-0.0060196961276233,0.03506663441658,-0.015072647482157]],[[-6.9841589720454e-05,-0.019760547205806,0.020473511889577],[0.0007499466300942,0.035562839359045,0.010599522851408],[0.031949527561665,0.10488683730364,0.044604104012251]],[[-0.0025925959926099,-0.022994663566351,-0.0093094808980823],[-0.001798449200578,0.059555612504482,0.013258224353194],[-0.0038673500530422,0.057225465774536,0.06350090354681]],[[0.033853992819786,0.071146287024021,0.024267863482237],[0.031901314854622,-0.047532249242067,-0.0028720386326313],[-0.011472973041236,-0.083162985742092,0.0093588484451175]],[[0.0082294549793005,0.053833015263081,0.014236139133573],[0.055685333907604,0.016661304980516,0.038879845291376],[0.0034616605844349,0.061523679643869,0.039166875183582]],[[-0.017219476401806,-0.094006977975368,0.026545220986009],[-0.028202706947923,-0.032111063599586,-0.02007563970983],[0.066399797797203,-0.039987929165363,-0.091713160276413]],[[0.0021538594737649,0.0094952648505569,0.018478263169527],[0.028483010828495,-0.0044770631939173,0.063676245510578],[0.026840642094612,0.049299485981464,-0.004044224973768]],[[0.029096992686391,0.0020445338450372,-0.00024345911515411],[0.001156720565632,-0.073583394289017,-0.039483323693275],[-0.01827853731811,0.027123738080263,0.042032718658447]],[[-0.0066223246976733,-0.049612753093243,-0.0021113900002092],[0.061820890754461,-0.041282918304205,0.059490106999874],[0.029206352308393,-0.039098128676414,0.071874968707561]],[[-0.016740160062909,-0.0083746192976832,-0.031857453286648],[0.092136159539223,-0.076616317033768,0.040256608277559],[-0.079743050038815,0.027526473626494,-0.06681726872921]],[[-0.0086866607889533,-0.0037909867241979,-0.017663661390543],[0.059422187507153,0.044483818113804,0.055943612009287],[-0.0078130466863513,-0.034907963126898,-0.002442377852276]],[[-0.044877525418997,0.0024421997368336,-0.029781691730022],[-0.022738996893167,-0.058801747858524,-0.021147094666958],[-0.046331644058228,0.045598521828651,-0.038603737950325]],[[0.00099776801653206,0.053768280893564,0.053655453026295],[0.11974674463272,-0.01021905336529,0.080090947449207],[0.075802564620972,0.090604744851589,0.0093423100188375]],[[0.039433393627405,0.0095253633335233,0.0087928669527173],[0.053850207477808,0.067931853234768,0.0034859932493418],[0.094831936061382,-0.02524128742516,-0.013077429495752]],[[-0.055775187909603,-0.021538833156228,-0.042061179876328],[-0.075113371014595,0.023327136412263,0.043468941003084],[-0.079624928534031,0.0086809210479259,-0.02143183350563]],[[0.028581785038114,0.027946777641773,0.032685328274965],[0.037738751620054,0.052104126662016,-0.02685547247529],[0.052515018731356,-0.029285497963428,0.0094234747812152]],[[0.001845215796493,0.010718321427703,0.053892016410828],[0.032014593482018,-0.086046688258648,-0.013299181126058],[0.0054347352124751,-0.010682177729905,0.018299587070942]],[[0.0037674221675843,0.10049963742495,0.034301359206438],[0.11135967820883,0.078698448836803,0.023657333105803],[0.061334501951933,0.017264679074287,0.12909479439259]],[[0.017663368955255,0.044228408485651,-0.037600837647915],[0.054656781256199,0.03314995765686,-0.011951783671975],[0.033701278269291,0.057979933917522,0.049040984362364]],[[0.022593051195145,0.015485555864871,0.035751793533564],[0.0070847095921636,-0.015588958747685,0.093133039772511],[-0.014637465588748,0.086290039122105,0.061516031622887]],[[-0.011624679900706,-0.021611470729113,0.014438929967582],[-0.059023518115282,0.0046902257017791,0.0061222841031849],[0.016736621037126,0.0044045117683709,-0.0006391640054062]],[[0.067148238420486,-0.030135164037347,-0.035499073565006],[0.028480630367994,-0.047437377274036,-0.00065990991424769],[0.031933076679707,-0.04657419025898,-0.0042125880718231]],[[0.037239633500576,-0.089904941618443,0.046362601220608],[0.0039165155030787,0.0058044265024364,0.04451484978199],[0.0083322757855058,0.01076936442405,0.0063298782333732]],[[-0.013390308246017,-0.049768388271332,-0.046710144728422],[-0.045824959874153,0.0034532106947154,0.019153438508511],[-0.024112790822983,0.097031824290752,0.012868314981461]],[[0.014538230374455,-0.025233944877982,0.021674187853932],[-0.053601797670126,-0.019239615648985,0.073313303291798],[0.020239926874638,0.039137076586485,-0.089034654200077]],[[-0.011615221388638,-0.0044704359024763,-0.08789537101984],[0.0063551883213222,0.018510267138481,0.021289747208357],[-0.010528842918575,0.042400676757097,0.054952651262283]],[[-0.0027942794840783,-0.0036623182240874,-0.050232298672199],[0.02683375030756,0.021695682778955,0.06306429952383],[0.079153180122375,0.019688973203301,0.011075831018388]],[[0.067581661045551,-0.04948253184557,0.0030871937051415],[-0.013158123008907,-0.0067685437388718,-0.012187726795673],[0.040395196527243,0.035972073674202,-0.0060451906174421]],[[0.023527033627033,0.063597358763218,0.048571668565273],[0.039739523082972,0.10070732235909,0.048086147755384],[0.057007547467947,0.015881543979049,0.013510143384337]],[[0.051716607064009,-0.0035205245949328,-0.054815627634525],[-0.023644952103496,-0.0073499819263816,0.078552454710007],[0.013811287470162,-0.028875198215246,0.033667422831059]],[[-0.046135935932398,0.052548408508301,0.0078571243211627],[-0.051027957350016,-0.014955055899918,-0.055867210030556],[0.033940687775612,-0.038570921868086,-0.0054631652310491]],[[0.064948849380016,0.042264871299267,-0.016219137236476],[0.0021212913561612,-0.037178460508585,0.052067451179028],[-0.025678090751171,-0.071654513478279,-0.037529360502958]],[[-0.0024030315689743,-0.026383066549897,-0.040423221886158],[0.0071574533358216,-0.047789629548788,-0.026747971773148],[0.0086973030120134,-0.012777667492628,-0.034657165408134]],[[0.042530372738838,0.11330679059029,0.079572632908821],[-0.049703475087881,0.036180332303047,-0.023158950731158],[-0.031922791153193,0.016491904854774,0.043088849633932]],[[-0.060937989503145,-0.055091559886932,-0.042216509580612],[-0.017317255958915,0.015385946258903,-0.043802212923765],[-0.066658511757851,-0.050746150314808,-0.047538638114929]],[[-0.066267542541027,-0.073044382035732,0.092823542654514],[0.083672672510147,0.087627574801445,-0.050471059978008],[-0.025063302367926,-0.029927037656307,0.02484243735671]],[[0.029840616509318,-0.00018197800091002,0.0297397878021],[0.042427349835634,0.031637988984585,-0.087045595049858],[-0.0039091524668038,-0.0055970028042793,0.033271480351686]],[[-0.032203126698732,0.015881100669503,0.05332401022315],[0.019559781998396,0.030667008832097,-0.059453744441271],[-0.011242242529988,0.06823044270277,0.044716604053974]],[[-0.016668282449245,-0.030892748385668,0.025505509227514],[-0.019776571542025,0.0701634734869,0.02419014275074],[-0.026128608733416,0.0077984184026718,0.0093153435736895]],[[-0.07561132311821,-0.031324658542871,0.063979849219322],[0.069546967744827,0.024681350216269,-0.015180177986622],[-0.035277049988508,-0.09375161677599,0.053903713822365]],[[0.044055346399546,-0.0349146053195,-0.03340870141983],[0.045285206288099,-0.016964880749583,0.0045371516607702],[-0.026013310998678,-0.00081136962398887,-0.0050169103778899]],[[-0.016493331640959,0.029746500775218,-0.0075879646465182],[0.074526578187943,0.030667459592223,-0.0017086488660425],[0.037515364587307,-0.039228811860085,-0.049855966120958]],[[0.060972981154919,0.022390408441424,-0.020302023738623],[0.049753349274397,0.0057247835211456,0.030850386247039],[0.052704475820065,0.048811841756105,0.0089052421972156]],[[-0.039329815655947,0.021643092855811,0.12945322692394],[-0.011781275272369,0.10051049292088,0.0046421303413808],[0.057375714182854,-0.00091581698507071,-0.088787607848644]],[[0.077608495950699,0.046281442046165,0.018065862357616],[0.019520664587617,-0.052854754030704,-0.027622863650322],[0.062999971210957,0.012819547206163,-0.025694074109197]],[[0.047981854528189,0.018928235396743,-0.033065680414438],[-0.017231440171599,0.057628590613604,-0.040335815399885],[0.095690324902534,0.0031765748281032,-0.00015693469322287]],[[-0.030070399865508,-0.1367621421814,0.028271187096834],[0.032293371856213,0.0020711277611554,-0.076664604246616],[0.010848545469344,0.0081644505262375,0.035515453666449]],[[0.12883932888508,0.0092815458774567,0.025170622393489],[0.078846327960491,0.030868448317051,-0.035889629274607],[0.094689257442951,-0.030017260462046,0.0028130933642387]],[[-0.019681174308062,0.088666185736656,-0.027550291270018],[-0.048863787204027,0.0089828614145517,0.007317163515836],[-0.078791774809361,0.055681794881821,0.033816408365965]],[[0.035486586391926,0.039661541581154,0.015403461642563],[-0.021216493099928,-0.038216032087803,-0.050767283886671],[-0.045485652983189,-0.079254955053329,0.062944546341896]],[[0.072499513626099,0.099328249692917,0.079352825880051],[0.039144910871983,0.038341552019119,-0.075510390102863],[-0.011851049028337,0.081960067152977,-0.050307862460613]],[[0.0307432487607,0.042440615594387,0.059115193784237],[0.035875111818314,-0.046077243983746,0.045935116708279],[0.04248795285821,0.027112890034914,0.086177073419094]],[[-0.025204911828041,-0.029512960463762,0.036638040095568],[0.018543101847172,0.062887504696846,0.093832522630692],[-0.10539611428976,0.035048466175795,-0.049159526824951]],[[0.031154323369265,-0.044169995933771,-0.023242704570293],[-0.022869488224387,-0.030511736869812,0.019630789756775],[-0.047770194709301,-0.075262196362019,0.047639437019825]],[[0.086283266544342,0.10038074105978,-0.0046240380033851],[0.089107654988766,0.011864421889186,0.026955684646964],[-0.012821025215089,0.021105224266648,-0.053463906049728]],[[-0.05870058760047,-0.034678086638451,-0.039308656007051],[-0.039387799799442,0.062638990581036,0.04953820630908],[-0.04823512583971,0.039758995175362,0.022278144955635]],[[0.011126373894513,-0.028052251785994,0.030607799068093],[-0.028660617768764,0.073936089873314,-0.029708569869399],[0.030042294412851,-0.058326575905085,-0.076562687754631]],[[0.0058912490494549,-0.028247445821762,-0.015482542105019],[0.021300606429577,-0.011043019592762,-0.056706167757511],[0.0010580633534119,0.0055862450972199,-0.0011067835148424]],[[-0.022428799420595,0.037659782916307,-0.016134656965733],[-0.0098964823409915,0.0043936059810221,0.016136212274432],[-0.067742437124252,0.0019481962081045,-0.0040476256981492]],[[-0.051241230219603,-0.021466836333275,-0.041736524552107],[0.060011859983206,-0.022972423583269,0.078333586454391],[-0.056468836963177,0.039834968745708,0.028284776955843]],[[0.0442806892097,-0.010450921952724,0.011373177170753],[0.021164091303945,0.037597000598907,0.025358503684402],[0.062568038702011,-0.0098776277154684,0.025897847488523]],[[0.058971647173166,0.083848111331463,0.03081321157515],[-0.022144183516502,-0.047942280769348,-0.012169017456472],[-0.09974929690361,-0.044699810445309,0.04307396709919]],[[0.0020092048216611,-0.025914650410414,0.0097869047895074],[-0.022649446502328,0.024497387930751,0.031137153506279],[0.051173616200686,0.09822753071785,0.073263503611088]],[[0.024106731638312,-0.021459423005581,0.005859075114131],[0.036276835948229,-0.037694215774536,-0.0086237564682961],[0.051941324025393,-0.053485114127398,-0.015557292848825]],[[0.028528535738587,-0.037334259599447,0.0059325406327844],[-0.0011352058500051,0.058342859148979,-0.094295606017113],[0.037461437284946,-0.048434905707836,-0.018879350274801]],[[-0.11045153439045,-0.019600121304393,0.020593900233507],[0.045126397162676,-0.060184080153704,-0.036407254636288],[-0.10994929820299,0.0037269208114594,0.022860186174512]],[[0.087438091635704,-0.015363584272563,-0.013073945418],[-0.019322354346514,-0.029580805450678,0.024062080308795],[0.029994772747159,-0.077224060893059,0.032110165804625]],[[-0.0047999601811171,0.013071185909212,0.028308281674981],[0.098536223173141,0.011829920113087,0.031492225825787],[0.035697892308235,-0.0080947624519467,-0.025839813053608]],[[-0.022279884666204,0.0063948039896786,0.056280057877302],[0.11861395835876,-0.0826221331954,-0.0048887631855905],[0.039767324924469,-0.021838599815965,0.052873112261295]],[[-0.0089424606412649,-0.0076848231256008,0.019179403781891],[0.020569376647472,0.048522938042879,0.015273462049663],[-0.01801797747612,-0.0024391822516918,-0.016724454239011]],[[-0.0057487050071359,0.071954309940338,0.04608054459095],[0.044447924941778,-0.069249369204044,-0.059078495949507],[0.10352016985416,0.044468939304352,0.097965143620968]],[[0.011926670558751,0.0051035461947322,0.040910951793194],[0.046965006738901,0.021794252097607,0.023710636422038],[0.090512953698635,0.054075915366411,0.035215388983488]],[[-0.069189369678497,0.040168177336454,-0.042914658784866],[-0.049863781780005,0.031776782125235,0.071475669741631],[0.10929914563894,-0.047420900315046,0.013087008148432]],[[-0.065367922186852,0.0015909483190626,-0.042063184082508],[0.054525472223759,-0.062643311917782,0.053300347179174],[-0.047173872590065,-0.029817182570696,0.056981902569532]]],[[[-0.0049487887881696,0.014203753322363,0.001067690202035],[0.030121169984341,-0.010589660145342,0.010233918204904],[-0.050929516553879,0.041664488613605,-0.031729590147734]],[[0.058946505188942,-0.013469003140926,0.027989242225885],[0.011000181548297,0.017359003424644,-0.0045720296911895],[0.029341999441385,-0.043258167803288,0.0073764272965491]],[[-0.011791464872658,0.022436931729317,-0.031327918171883],[-0.036958999931812,0.021629696711898,-0.047504231333733],[-0.0091416239738464,0.079195365309715,0.045757006853819]],[[-0.016609128564596,0.014836424961686,0.041276458650827],[0.039389289915562,0.018677912652493,-0.011205097660422],[0.00079357216600329,0.018751073628664,0.067121796309948]],[[0.0301429387182,-0.020456720143557,0.033025525510311],[0.0036577589344233,0.0065264822915196,0.0016997170168906],[-0.0061204247176647,-0.011440454050899,-0.057001203298569]],[[0.071809530258179,0.0059360936284065,-0.015188636258245],[0.02871229313314,-0.0099834492430091,0.062217988073826],[-0.050351329147816,-0.032774399966002,-0.04670163244009]],[[0.039503894746304,-0.010606861673295,0.0039905603043735],[-0.021878225728869,-0.031335666775703,-0.12420728802681],[-0.038376208394766,-0.0068890103138983,0.054828435182571]],[[0.029091354459524,0.028504585847259,-0.041446447372437],[-0.029573477804661,0.0038063784595579,0.092648409307003],[0.041729848831892,-0.020984921604395,0.01711499504745]],[[-0.066754721105099,0.0390949472785,-0.01388699002564],[-0.00080099806655198,-0.017607910558581,-0.024185560643673],[0.0089976619929075,0.060937449336052,-0.03564165532589]],[[-0.0051830634474754,-0.0061816503293812,0.0041141822002828],[0.10490653663874,-0.055911723524332,0.033610142767429],[0.10600686818361,-0.12025660276413,0.037994690239429]],[[-0.0021857593674213,-0.056459285318851,0.016328755766153],[0.032079502940178,-0.086434490978718,0.074687883257866],[0.049611136317253,0.056226942688227,-0.002120062476024]],[[-0.082691766321659,0.04673670604825,0.037670336663723],[-0.0097831897437572,-0.070588871836662,0.057248882949352],[-0.042459852993488,0.039111584424973,-0.0023382513318211]],[[0.010773756541312,0.01794196292758,-0.0087309805676341],[0.0028771113138646,0.030660687014461,-0.0085006849840283],[-0.020579271018505,-0.025304742157459,-0.12217934429646]],[[0.038115285336971,0.02302061393857,-0.053887370973825],[-0.045946519821882,-0.0044650570489466,-0.040487114340067],[0.080872148275375,0.029143055900931,0.04122656211257]],[[0.034541949629784,0.047303952276707,0.01430462859571],[-0.044348008930683,0.010279454290867,0.010879620909691],[-0.038857214152813,0.04594636708498,0.045752249658108]],[[-0.043870773166418,0.032019130885601,-0.037935826927423],[0.036445625126362,0.015330792404711,-0.041218213737011],[0.008073290809989,-0.0034629236906767,0.018871745094657]],[[-0.044885668903589,0.0015520316082984,0.013487230055034],[0.036866202950478,-0.058895338326693,-0.081490777432919],[0.024298364296556,-0.04239172115922,0.042696230113506]],[[-0.013580424711108,0.037990938872099,0.050863329321146],[0.02690252661705,0.061414908617735,-0.045420855283737],[-0.010321422480047,-0.039626535028219,0.0081679318100214]],[[0.010570405982435,-0.023955278098583,0.0025271053891629],[0.092566646635532,-0.041708461940289,0.0094573032110929],[0.025721844285727,0.0015565195353702,-0.040887873619795]],[[0.048553120344877,0.045050296932459,-0.024961134418845],[-0.057577203959227,0.072728917002678,0.034502610564232],[0.05918026342988,0.010715243406594,-0.056971985846758]],[[0.015389611944556,-0.018417980521917,-0.0035108129959553],[0.0071983244270086,-0.018258202821016,0.0027590657118708],[-0.092874750494957,0.010520556941628,-0.055362895131111]],[[0.077554173767567,-0.023481097072363,0.046858105808496],[0.11393322050571,-0.0045444709248841,-0.048180233687162],[-0.030837126076221,0.027927109971642,0.055739358067513]],[[-0.066370844841003,0.03539377078414,-0.03446152061224],[0.0085893841460347,0.08859408646822,0.032623097300529],[0.04928395152092,-0.063242584466934,-0.014899148605764]],[[5.9176516515436e-05,-0.037321798503399,0.043621737509966],[-0.0287298373878,0.044078134000301,-0.044760558754206],[0.097979702055454,0.040489692240953,-0.015654193237424]],[[-0.023141846060753,0.014932330697775,0.031410951167345],[-0.010508216917515,-0.0020424434915185,-0.0089049600064754],[0.048159215599298,0.036670781672001,0.018937654793262]],[[0.014220009557903,-0.032101605087519,0.0088690165430307],[-0.022212587296963,-0.0077970568090677,0.065955646336079],[-0.0054695750586689,0.024483377113938,-0.011618572287261]],[[-0.052697822451591,0.039976269006729,0.070595949888229],[-0.00192890339531,0.041956592351198,0.082587212324142],[-0.041841041296721,0.033066306263208,-0.0069009005092084]],[[0.031179310753942,0.010722678154707,-0.049381658434868],[-0.020553257316351,-0.0095459120348096,-0.006161087192595],[-0.0090376464650035,0.018858714029193,0.076006226241589]],[[-0.038530565798283,0.0176957603544,-0.0043422724120319],[-0.032937753945589,-0.0017306980444118,-0.041744451969862],[0.046118319034576,0.018327051773667,-0.041889727115631]],[[-0.043390013277531,0.049431227147579,0.037431269884109],[0.054186180233955,0.025923848152161,-0.035407572984695],[0.024914160370827,-0.024494806304574,0.011776500381529]],[[0.03604856133461,0.010005593299866,0.058103669434786],[0.0054546929895878,0.028947031125426,0.009885118342936],[-0.032924607396126,0.015430133789778,-0.048771321773529]],[[0.026682451367378,-0.018183689564466,0.011745562776923],[0.019544618204236,0.04760804772377,0.014941511675715],[0.0095016025006771,0.041351202875376,0.0062285820022225]],[[-0.011668855324388,0.0028438505250961,-0.048205245286226],[-0.027183748781681,-0.0072778495959938,0.0029880893416703],[-0.016783514991403,0.025557992979884,0.029279729351401]],[[-0.022576130926609,0.0094167552888393,0.023324534296989],[0.022901697084308,0.048339087516069,-0.029100643470883],[-0.034081913530827,0.065361179411411,-0.0087622096762061]],[[-0.046360224485397,-0.0022519796621054,0.0049112848937511],[-0.011207362636924,0.03835504129529,-0.077272824943066],[0.0014287665253505,-0.019654555246234,-0.021748393774033]],[[-0.059191796928644,-0.0076486207544804,0.029171304777265],[0.016163490712643,0.013755620457232,0.027346186339855],[0.014238573610783,0.034366227686405,-0.02551799453795]],[[0.024124206975102,-0.024416489526629,0.0069692488759756],[-0.027697462588549,-0.051533974707127,0.035472486168146],[-0.0037388382479548,0.049325365573168,-0.017130309715867]],[[-0.01089246571064,0.10501722246408,-0.00085294403834268],[0.042647749185562,0.024800287559628,0.00066686974605545],[0.063598319888115,0.0026594237424433,0.0046882918104529]],[[0.029839990660548,0.0074606528505683,0.002781828166917],[-0.065667487680912,0.027069896459579,-0.010726547800004],[0.047919280827045,0.0012142325285822,-0.014379003085196]],[[0.037200037389994,-0.043645676225424,0.01090466696769],[0.023273970931768,-0.037405431270599,-0.016435073688626],[0.0075080203823745,0.054241091012955,0.040077310055494]],[[-0.029422983527184,-0.0057345735840499,0.024595364928246],[0.025962729007006,0.01646164804697,-0.017862774431705],[-0.040519598871469,-0.021048767492175,0.030768686905503]],[[0.033213220536709,-0.053712863475084,-0.030338341370225],[-0.0023157384712249,-0.02840518578887,0.038959570229053],[0.0081860376521945,0.051202025264502,0.045597352087498]],[[0.038522474467754,-0.028827069327235,-0.0095775239169598],[0.010102714411914,-0.021741397678852,0.058536965399981],[-0.0026554625947028,0.0189756359905,0.081212125718594]],[[-0.010002184659243,-0.062139969319105,-0.025782603770494],[-0.031344778835773,0.0793387144804,0.059470020234585],[0.030229864642024,0.010935863479972,0.018511608242989]],[[0.0042596277780831,-0.028193147853017,-0.0075276466086507],[0.07239905744791,0.011018657125533,-0.030632575973868],[0.08825596421957,-3.3463860745542e-05,0.07094232738018]],[[0.0051627666689456,-0.00071333604864776,0.036985941231251],[-0.014623454771936,0.076097741723061,0.024499775841832],[-0.0066374405287206,0.030726071447134,-0.0032132745254785]],[[-0.016004638746381,0.0093966852873564,-0.10605563223362],[-0.012767706997693,0.041585471481085,0.02663610316813],[0.0064232349395752,0.079189479351044,-0.02470456622541]],[[-0.081725046038628,0.062995657324791,-0.072283886373043],[0.10964960604906,0.043568897992373,0.0090264063328505],[0.058059740811586,0.0031252140179276,-0.052619311958551]],[[0.024074129760265,-0.025575149804354,-0.02205403894186],[-0.01385841332376,0.012117736972868,0.025355326011777],[0.03244860842824,0.0025756217073649,0.019398571923375]],[[-0.041404075920582,-0.0095041627064347,0.037842754274607],[-0.011471331119537,-0.0522076562047,0.027694681659341],[-0.056734263896942,-0.048102669417858,0.015507069416344]],[[-0.0011532853823155,-0.02240863442421,-0.024069849401712],[0.030365398153663,-0.0046465420164168,-0.019923634827137],[0.0041041537187994,0.00097092654323205,0.015137092210352]],[[-0.079410210251808,0.013813965953887,0.01523628551513],[-0.044528365135193,0.0158775690943,0.00083307479508221],[0.029148602858186,-0.0016214651986957,-0.037508253008127]],[[0.03035020455718,0.0018415425438434,-0.048484347760677],[0.037961803376675,0.030125711113214,-0.02136168256402],[-0.033821411430836,-0.020492490381002,0.0043427441269159]],[[0.0056797550059855,0.034745529294014,0.018805511295795],[-0.020250996574759,0.03491185605526,0.029298478737473],[-0.029357638210058,0.01612195558846,0.073620781302452]],[[0.075812265276909,0.072263643145561,-0.031740415841341],[0.067790105938911,0.019345050677657,0.029042953625321],[0.01508923061192,0.022138511762023,0.088335506618023]],[[0.044612567871809,0.055838298052549,-0.0093288645148277],[0.0619249753654,-0.020027937367558,0.0034092480782419],[-0.0077037950977683,0.0074115972965956,-0.0066847247071564]],[[-0.054241787642241,0.069099329411983,0.046026729047298],[0.071148738265038,0.052832644432783,0.079055562615395],[-0.055877584964037,0.011578077450395,-0.036281246691942]],[[-0.015649491921067,-0.030577000230551,-0.026973817497492],[0.047844558954239,0.06581050157547,0.038223695009947],[-0.06589463353157,-0.044553380459547,-0.042607132345438]],[[-0.029168585315347,0.0060404487885535,0.0039768163114786],[-0.020239412784576,0.043674502521753,-0.0091014141216874],[-0.075949937105179,-0.020818529650569,0.017154760658741]],[[0.045921392738819,0.019303688779473,-0.058038003742695],[0.057033527642488,0.046221725642681,0.026785483583808],[-0.053054768592119,0.023334691300988,0.0042216507717967]],[[0.0037281636614352,0.069137401878834,0.010985240340233],[-0.034171707928181,0.015354393981397,-0.019337885081768],[-0.0057595483958721,0.016781384125352,-0.014932327903807]],[[0.048580888658762,0.026794536039233,-0.011117410846055],[0.013278324157,0.031957399100065,0.059187561273575],[0.045583199709654,0.039475128054619,0.078360803425312]],[[-0.012196475639939,0.028140779584646,-0.036371257156134],[0.054689776152372,-0.0025928316172212,0.037494394928217],[0.038194190710783,-0.013196214102209,0.014490161091089]],[[-0.02610071003437,-0.016470598056912,0.067472197115421],[0.0089441798627377,0.031301468610764,-0.018767999485135],[0.017529360949993,0.0037825466133654,0.038469102233648]],[[-0.01095122192055,0.040893901139498,0.02547056414187],[0.0028923240024596,-0.079199850559235,0.0067737773060799],[0.024571780115366,-0.036410052329302,0.053274840116501]],[[0.00014316468150355,0.012547790072858,-0.0074207400903106],[-0.021122643724084,-0.0064493962563574,0.056254453957081],[0.018206179141998,-0.022848634049296,0.029215175658464]],[[0.010697605088353,0.046357333660126,-0.028278915211558],[0.00045821504318155,-0.016653526574373,-0.039886876940727],[-0.020372649654746,-0.014999764040112,0.067777305841446]],[[0.055916018784046,0.061462707817554,0.049647055566311],[-0.037888709455729,0.0091546094045043,0.087680019438267],[0.018446754664183,0.027626244351268,-0.010347065515816]],[[-0.010766298510134,0.0055205398239195,-0.012835755012929],[0.051098357886076,-0.028926318511367,0.021457375958562],[0.016926927492023,-0.0072863567620516,-0.027382118627429]],[[0.027982596307993,-0.058671955019236,0.014326081611216],[0.027011087164283,0.0020252449903637,-0.010609698481858],[0.015142597258091,-0.030424455180764,0.0086410939693451]],[[-0.04479518532753,0.030996484681964,0.021869901567698],[-0.031504075974226,-0.011660225689411,-0.0014290697872639],[0.03489725664258,-0.043909132480621,-0.024434261023998]],[[0.035254344344139,-0.055682577192783,-0.0077631925232708],[0.038621135056019,-0.010713393799961,0.03514764085412],[-0.02578611113131,-0.0013562797103077,0.06746780872345]],[[0.03313159942627,-0.028713589534163,0.018396059051156],[0.021997587755322,-0.019122242927551,-0.0020020937081426],[0.046121966093779,0.00059351744130254,-0.042129594832659]],[[-0.00050976040074602,-0.037419464439154,-0.02506372705102],[-0.010686962865293,0.07042770087719,0.041755042970181],[-0.051243122667074,0.030363349243999,0.028496626764536]],[[-0.0153818000108,-0.021361658349633,0.0073020635172725],[0.039067808538675,0.046059746295214,0.038231335580349],[-0.013930178247392,-0.021400637924671,-0.023658884689212]],[[-0.03910206258297,-0.066819295287132,-0.01876918412745],[-0.0055321771651506,-0.001937965513207,0.021169189363718],[-0.013051876798272,-0.0052635283209383,0.056817691773176]],[[0.048862401396036,0.035209465771914,0.0026885475963354],[-0.012871464714408,-0.081611260771751,0.018778625875711],[-0.034904897212982,0.0031473864801228,0.039258435368538]],[[0.0086937062442303,0.066958673298359,-0.021051837131381],[-0.028227290138602,0.13007202744484,0.051816713064909],[-0.043401293456554,0.047754358500242,0.0001674514496699]],[[0.065551117062569,-0.01263612229377,0.054130990058184],[0.035524230450392,-0.02582979388535,-0.06185233220458],[0.067004293203354,-0.057249583303928,0.02458774112165]],[[-0.0041320719756186,-0.020061179995537,0.045776214450598],[-0.084075063467026,0.091920837759972,-0.038737140595913],[0.034875977784395,0.012977821752429,0.016978288069367]],[[-0.0075088534504175,0.01326378621161,-0.0030453184153885],[0.015189897269011,0.060817290097475,0.065791375935078],[-0.016052972525358,-0.01052023191005,-0.024682067334652]],[[-0.010385745204985,-0.01978275552392,0.0040525859221816],[0.022331666201353,-0.014101094566286,-0.01985271833837],[0.034667246043682,-0.04595935344696,0.037721406668425]],[[0.0763029307127,0.039723500609398,-0.017292087897658],[-0.039593115448952,0.12213147431612,0.0034390152432024],[-0.010803026147187,0.066382497549057,-0.032133873552084]],[[0.066098652780056,-0.017682619392872,0.015676019713283],[0.0024768305011094,-0.01316144503653,0.015788465738297],[-0.048858016729355,0.045271433889866,-0.031014433130622]],[[0.018404917791486,-0.00069659197470173,0.06395947933197],[-0.023879220709205,0.045242503285408,0.0048573911190033],[0.0086310356855392,0.021204588934779,-0.026766983792186]],[[-0.00087440881179646,0.046460118144751,0.019838823005557],[0.014498945325613,-0.029122870415449,-0.063997380435467],[-0.0055368547327816,0.051634319126606,0.015517184510827]],[[-0.052680715918541,0.013836877420545,-0.01417261082679],[-0.052388120442629,0.011143281124532,0.0070051704533398],[-0.01902506314218,0.020030174404383,-0.064295887947083]],[[-0.0025026013609022,-0.052974544465542,-0.051075030118227],[-0.016052970662713,-0.056464843451977,-0.045103307813406],[0.045990288257599,0.029530767351389,-0.01240059453994]],[[-0.01844760030508,0.027908364310861,0.097474843263626],[0.031453624367714,0.068001858890057,0.042872726917267],[-0.032987985759974,-0.0087027307599783,-0.029010277241468]],[[-0.0070937979035079,-0.022285964339972,-0.023379009217024],[-0.010578412562609,-0.048684399574995,0.060763966292143],[0.054019194096327,0.027674803510308,0.033585738390684]],[[0.047414597123861,0.0074012284167111,-0.085273005068302],[-0.082318313419819,0.13814325630665,0.016273017972708],[-0.045539144426584,0.10445126891136,0.00062522327061743]],[[0.033551082015038,0.0082712294533849,-0.03672307357192],[-0.0021446095779538,-0.055097758769989,-0.0064208721742034],[-0.020082343369722,-0.0035027074627578,0.014476316049695]],[[0.023400507867336,0.0085065942257643,0.0031846966594458],[-0.031724952161312,0.039464872330427,-0.01960613578558],[0.00071162119274959,-0.025254659354687,0.035554017871618]],[[0.04039653018117,0.056504771113396,-0.020735248923302],[-0.0069245775230229,0.0566186606884,-0.03967772051692],[-0.0059503591619432,-0.0061776228249073,0.054429966956377]],[[0.02974590472877,0.013653624802828,0.032569702714682],[-0.052502896636724,0.058165200054646,0.059521943330765],[0.02837653644383,-0.04240046069026,-0.006653530523181]],[[-0.012140233069658,-0.0023986243177205,-0.042210143059492],[-0.0040761041454971,0.032565850764513,-0.023440083488822],[0.044980112463236,0.022786512970924,-0.02310337126255]],[[0.01072664745152,0.040100485086441,0.020687682554126],[-0.050812404602766,0.024510379880667,-0.020364284515381],[0.009447175078094,-0.011258192360401,-0.021821487694979]],[[0.043568890541792,0.021165253594518,-0.035266913473606],[0.017652962356806,-0.010293051600456,0.074806600809097],[0.022494826465845,0.0018655747408047,-0.039431612938643]],[[-0.029055630788207,0.0076036183163524,0.00091359665384516],[0.029185608029366,0.059576686471701,-0.02016344293952],[-0.0055853854864836,0.00051048578461632,0.025780798867345]],[[0.039646651595831,0.061488628387451,0.038201823830605],[0.017101479694247,0.040905334055424,-0.065986551344395],[-0.019651919603348,-0.06339330971241,-0.022877471521497]],[[-0.00891880877316,0.037200804799795,-0.0042990325018764],[-0.025693023577332,-0.043997280299664,-0.015490269288421],[0.069658607244492,0.027205735445023,0.012860638089478]],[[0.051593363285065,0.070611357688904,-0.041788510978222],[-0.0040946435183287,0.047928366810083,0.041156444698572],[-0.043034747242928,-0.015189943835139,0.04180471599102]],[[0.0053276531398296,0.007313116453588,0.067984662950039],[0.014184290543199,0.062556356191635,0.069498129189014],[0.02541002817452,0.087508544325829,-0.024727832525969]],[[-0.075868636369705,0.018911110237241,-0.005818868521601],[0.034417845308781,0.032011169940233,-0.018455721437931],[-0.020647762343287,-0.019499896094203,0.00027731803129427]],[[0.022423436865211,-0.067872874438763,0.041216652840376],[0.009434387087822,0.078131213784218,-0.0093560228124261],[0.09130822122097,-0.048052497208118,-0.0013026935048401]],[[-0.020426023751497,0.018178576603532,0.055372435599566],[0.072125837206841,-0.051740977913141,0.030365906655788],[0.033608935773373,0.0020544468425214,-0.0019284919835627]],[[-0.02357479184866,0.014924156479537,-0.048496786504984],[-0.00030799224623479,-0.058951888233423,0.018972244113684],[-0.015602312982082,0.012423945590854,0.018619431182742]],[[0.018524752929807,0.043213374912739,0.026395790278912],[0.02234809845686,-0.0084489472210407,0.033055476844311],[-0.013472539372742,-0.0078941974788904,0.016548318788409]],[[-0.069090329110622,0.033412829041481,0.031529426574707],[-0.008668732829392,0.0097026862204075,0.079471439123154],[-0.0092710107564926,0.054333418607712,0.0028676120564342]],[[-0.017096273601055,-0.036139693111181,-0.00061580445617437],[0.071196705102921,0.012996738776565,-0.0077571463771164],[0.0046584578230977,-0.022054933011532,-0.030100837349892]],[[-0.011928870342672,-0.013613557443023,0.0042882631532848],[-0.030761107802391,-0.022223513573408,-0.03239556774497],[-0.0022743809968233,0.051939703524113,-0.043798509985209]],[[-0.015395160764456,-0.044544450938702,0.022260958328843],[-0.029909258708358,-0.025248635560274,0.030117748305202],[-0.015606047585607,0.031149571761489,0.039213173091412]],[[-0.04026848077774,0.035605609416962,0.032623879611492],[0.0011203101603314,-0.010997504927218,-0.030193673446774],[0.10818162560463,0.08671223372221,-0.011287324130535]],[[0.0474668815732,0.010172382928431,-0.01321049593389],[-0.039010751992464,0.011894900351763,-0.0066925254650414],[-0.012334262020886,0.0055069737136364,0.051666557788849]],[[0.010604585520923,-0.0062179449014366,0.036006197333336],[0.0018219738267362,-0.025215204805136,-0.042345441877842],[0.04581043869257,-0.082022316753864,0.080902725458145]],[[-0.014145788736641,0.0017059316160157,-0.039227124303579],[0.02158054895699,-0.028745282441378,0.070119701325893],[0.050041999667883,-0.010332447476685,-0.059504583477974]],[[-0.018726216629148,-0.0074346479959786,0.035094618797302],[0.046522915363312,-0.0019124521641061,-0.0060109044425189],[-0.035979017615318,-0.039327993988991,-0.025236498564482]],[[0.0080849751830101,0.045500986278057,0.018422892317176],[0.055522296577692,-0.017856661230326,0.024041930213571],[-0.023594446480274,0.027328921481967,0.055378101766109]],[[0.025137692689896,0.047027409076691,0.057897102087736],[-0.03222792968154,0.0029033634345978,0.019997028633952],[0.05637276545167,0.059401270002127,-0.069223426282406]],[[0.034037005156279,-0.052427496761084,0.03314046934247],[0.013392762281001,0.053839914500713,4.9677910283208e-05],[0.022203005850315,0.016691694036126,-0.017159942537546]],[[-0.025191353634,-0.018852451816201,-0.010668118484318],[0.0028385801706463,-0.018101146444678,-0.048185609281063],[0.039072167128325,0.0047666477039456,0.041089478880167]],[[0.051895849406719,0.039129965007305,0.020297072827816],[0.0075880759395659,-0.0099463984370232,-0.085041888058186],[0.0011698517482728,0.0019489807309583,0.029047882184386]],[[0.0041278470307589,0.02644301764667,-0.039603069424629],[-0.034891631454229,-0.066626854240894,0.029987514019012],[-0.065939247608185,-0.037134636193514,0.026662226766348]],[[0.00022260984405875,0.065678603947163,0.044809699058533],[-0.028341069817543,0.005509851500392,-0.0068377479910851],[-0.0072559919208288,0.015230257995427,0.015940561890602]],[[-0.0034957467578351,-0.016140025109053,0.0075758011080325],[-0.057614333927631,0.051545757800341,0.02705399133265],[0.024025205522776,-0.023764556273818,0.01782906241715]],[[0.015152575448155,-0.03831883892417,-0.056571461260319],[0.044304013252258,0.036629404872656,0.054462809115648],[-0.049321532249451,0.020863393321633,-0.036763232201338]],[[-0.018245870247483,0.013062692247331,-0.061167776584625],[0.038810160011053,0.0041614705696702,0.031835950911045],[0.10168439894915,-0.0786027982831,-0.035618592053652]],[[0.0077049192041159,0.0066392617300153,-0.017426693812013],[0.013047876767814,0.010626446455717,-0.022788407281041],[0.011169444769621,0.033541038632393,-0.052445832639933]]],[[[-0.017256002873182,0.096309833228588,-0.048048857599497],[0.091499492526054,-0.064622841775417,0.017963940277696],[0.066876322031021,0.0054135778918862,0.029770197346807]],[[0.015553934499621,-0.031609710305929,-0.019958371296525],[-0.040024477988482,-0.059462487697601,0.094478391110897],[-0.11156925559044,-0.040633235126734,-0.012267803773284]],[[0.072419494390488,-0.024093532934785,-0.036895472556353],[0.0036449253093451,0.0066091371700168,0.065210856497288],[0.045912064611912,0.062228441238403,-0.057446364313364]],[[-0.0097027197480202,0.07479003816843,-0.076900713145733],[0.060481004416943,-0.023305194452405,-0.0074016079306602],[-0.0020281525794417,0.11385057121515,0.049749381840229]],[[0.070896543562412,-0.045549623668194,-0.0092933652922511],[0.009906142950058,-0.049761213362217,0.018532194197178],[0.030995737761259,0.045472182333469,-0.019731212407351]],[[0.035858761519194,0.011780927889049,0.040007714182138],[0.018644411116838,0.02088819257915,0.038118984550238],[0.06105962023139,0.076323226094246,0.11423084139824]],[[0.05100667104125,0.037635035812855,0.047896862030029],[0.0074248355813324,0.053971324115992,0.018396077677608],[0.041077069938183,0.0054044323042035,-0.068449810147285]],[[0.022342311218381,0.1510755866766,0.032059218734503],[-0.048054698854685,0.045277290046215,-0.016703950241208],[-0.021451655775309,-0.049050252884626,0.04787640273571]],[[-0.0093093141913414,-0.081243224442005,0.041946969926357],[-0.01370270550251,0.077229350805283,0.03163094446063],[0.030969494953752,-0.0065531199797988,0.086258836090565]],[[0.011815431527793,0.13385328650475,0.015367824584246],[0.024475274607539,0.12430562078953,0.056818526238203],[0.14881259202957,-0.057627171278,0.079968273639679]],[[-0.029678178951144,-0.0058201365172863,-0.0043971785344183],[0.031962629407644,0.04189370572567,0.05048543587327],[-0.062117204070091,-0.028964696452022,0.025555111467838]],[[0.033173054456711,0.052154712378979,0.054952371865511],[-0.015581922605634,0.081108823418617,-0.085425227880478],[0.023577634245157,0.02363395690918,0.036658573895693]],[[-0.061199542135,0.0012867052573711,0.10804200172424],[0.026643881574273,0.017024572938681,0.058248210698366],[0.0034032142721117,0.037063825875521,0.035168249160051]],[[-0.0021143089979887,0.073988705873489,-0.099973432719707],[0.0057922517880797,-0.0099605713039637,-0.0039425198920071],[0.0030988322105259,0.091816440224648,-0.077606476843357]],[[0.1642939299345,0.034356772899628,0.19508674740791],[0.1742871850729,0.025725902989507,0.0030163859482855],[0.12335488945246,0.074371933937073,0.15669931471348]],[[-0.055023893713951,0.029754349961877,-0.070005014538765],[-0.071010418236256,0.0012213917216286,0.0315644107759],[0.0024851944763213,-0.049847953021526,0.028932785615325]],[[0.015878070145845,-0.083333902060986,-0.023499103263021],[-0.01766555942595,-0.073852434754372,-0.060347966849804],[0.061078019440174,0.0028145676478744,-0.03812650591135]],[[0.040857959538698,0.026980388909578,-0.0027496367692947],[0.048290275037289,-0.044105965644121,-0.040987182408571],[-0.030134435743093,0.053486671298742,0.014039809815586]],[[-0.047754358500242,0.031724832952023,0.011530266143382],[-0.0026026694104075,-0.038468349725008,0.017973959445953],[0.017394265159965,0.011503344401717,-0.044980335980654]],[[0.02007875405252,0.071399413049221,0.0026065914425999],[0.0096216397359967,0.024532185867429,0.060429185628891],[0.020554061979055,-0.0061014662496746,0.089978724718094]],[[-0.041255120187998,0.091334514319897,-0.0093554789200425],[0.1123149767518,0.018077798187733,-0.046455021947622],[-0.071465514600277,-0.00033211742993444,0.018705768510699]],[[0.0048379027284682,0.078319899737835,0.015742976218462],[0.07479639351368,-0.021237766370177,-0.0093668922781944],[0.055505074560642,0.091033905744553,0.091807723045349]],[[-0.073979713022709,0.048417128622532,-0.059078492224216],[0.033279929310083,-0.015276689082384,0.028255851939321],[-0.021108981221914,-0.07154293358326,-0.017184570431709]],[[0.10333745926619,-0.0044712843373418,0.033926960080862],[-0.0022218350786716,-0.027744211256504,0.0069445082917809],[-0.0058734016492963,-0.021724939346313,-0.025274079293013]],[[-0.07972551882267,-0.0067265462130308,0.030108150094748],[-0.009904557839036,0.010212235152721,0.014888636767864],[0.034283295273781,0.048159092664719,0.032234642654657]],[[0.017620047554374,-0.014765351079404,-0.056231312453747],[-0.0067428844049573,-0.011457012034953,-0.037206277251244],[-0.012362913228571,-0.010658350773156,-0.078967742621899]],[[0.056172013282776,-0.05669030547142,0.043299455195665],[0.026707435026765,0.015766579657793,0.013065008446574],[0.016793990507722,0.069158524274826,0.045818012207747]],[[-0.05246389657259,0.048057787120342,-0.085058033466339],[0.018922856077552,-0.0039632050320506,-0.030863041058183],[-0.037606339901686,-0.024819731712341,-0.015576367266476]],[[0.00017489086894784,0.053768668323755,0.037780307233334],[0.031590696424246,-0.0093819098547101,0.059816665947437],[0.076615191996098,0.06660071760416,0.002969607245177]],[[0.011033112183213,-0.037992667406797,0.038938324898481],[-0.08757971227169,0.038627672940493,0.031781997531652],[-0.048321463167667,0.0071128532290459,0.046692326664925]],[[0.0036960295401514,-0.063727609813213,0.022880187258124],[0.078667961061001,-0.037273366004229,0.0055149612016976],[0.028747482225299,0.047616500407457,-0.0027149466332048]],[[-0.040486857295036,-0.038639679551125,-0.0617152787745],[-0.0087942611426115,-0.024936851114035,0.00054412015015259],[0.032428156584501,-0.12213408946991,0.037022262811661]],[[0.11124360561371,-0.028379609808326,-0.0088078202679753],[0.067691221833229,0.092606216669083,0.011660786345601],[-0.032615333795547,-0.014577670022845,0.051976688206196]],[[0.022046534344554,-0.080491222441196,-0.0049637551419437],[-0.0023830628488213,-0.02966739423573,-0.075617030262947],[0.056511417031288,0.030586935579777,0.052716806530952]],[[-0.0001375183055643,0.015397934243083,0.026866195723414],[0.0068298154510558,-0.0010039553744718,-0.071048378944397],[-0.043626744300127,0.035962793976068,0.034232720732689]],[[0.027036176994443,0.051435105502605,-0.0011765918461606],[-0.019442234188318,0.010877521708608,0.003163504647091],[0.028724975883961,0.040769841521978,0.014536281116307]],[[-0.028217615559697,0.061236593872309,-0.052160117775202],[-0.04312951117754,-0.036952394992113,-0.036440320312977],[-0.072033703327179,-0.078496180474758,-0.03333018347621]],[[0.017448101192713,0.06363969296217,-0.045157603919506],[0.049079336225986,0.077469155192375,0.013193412683904],[-0.022602282464504,-0.009478023275733,0.029224993661046]],[[0.026248881593347,0.052935983985662,0.032766919583082],[0.0070617976598442,-0.027982177212834,-0.0067231156863272],[0.027924114838243,-0.069236159324646,-0.03173903003335]],[[-0.0085790427401662,-0.037847448140383,0.012299470603466],[-0.047006316483021,0.015233689919114,0.018032643944025],[0.0011087612947449,-0.014292717911303,-0.020198680460453]],[[-0.10591938346624,-0.025331737473607,-0.022629072889686],[0.0074660400860012,-0.0073320455849171,-0.011005951091647],[0.002875093370676,0.004570537712425,-0.021798651665449]],[[0.0081426650285721,0.013164310716093,-0.026668140664697],[0.010411625728011,0.039931517094374,0.0079838568344712],[-0.066733919084072,0.024068165570498,0.020639285445213]],[[-0.0088939080014825,0.029966808855534,0.035867307335138],[-0.022605380043387,0.0012261786032468,0.038202900439501],[-0.019603118300438,0.016924662515521,-0.014485792256892]],[[-0.078969046473503,0.015300891362131,0.0034205631818622],[-0.072663880884647,0.091655783355236,0.033393613994122],[0.028962409123778,0.029193677008152,-0.011354402638972]],[[0.014147733338177,0.065358430147171,0.02569342404604],[-0.012030747719109,0.049115918576717,-0.014460485428572],[0.0062266644090414,-0.034218370914459,0.081235624849796]],[[-0.096447639167309,0.061185717582703,-0.023937501013279],[0.10735433548689,0.060963321477175,-0.011211855337024],[-0.0067004943266511,0.084270037710667,0.063274718821049]],[[0.077196769416332,-0.014316794462502,-0.054381106048822],[-0.032727908343077,0.036468274891376,-0.07686659693718],[0.064487352967262,-0.023403629660606,0.11070209741592]],[[0.027769409120083,-0.036350298672915,0.021038431674242],[-0.059521529823542,0.05292534455657,0.018859375268221],[0.058380484580994,0.019944604486227,-0.051537092775106]],[[-0.042039152234793,-0.025340709835291,-0.021067939698696],[-0.063726112246513,-0.065903857350349,-0.014135894365609],[0.0031715375371277,0.071556709706783,0.043402444571257]],[[-0.084991127252579,0.059500504285097,-0.016821656376123],[-0.0026680978480726,-0.050999160856009,0.014202267862856],[-0.074580304324627,0.058125358074903,-0.05386495962739]],[[-0.084752269089222,0.082256123423576,-0.081877291202545],[-0.0063777612522244,-0.060630645602942,0.063813239336014],[-0.0031765880994499,0.029976481571794,0.024717526510358]],[[-0.029732959344983,-0.035899683833122,-0.037426762282848],[-0.047293856739998,-0.022431746125221,-0.023346312344074],[0.057020213454962,0.018833046779037,0.067592352628708]],[[0.017133725807071,0.012149688787758,0.032264303416014],[-0.0053881495259702,0.076465889811516,-0.028759704902768],[0.0045121484436095,-0.059809487313032,0.026879148557782]],[[0.015843769535422,-0.10803236067295,0.042699243873358],[0.010077006183565,0.03304972499609,0.0050404090434313],[-0.016533810645342,0.052114374935627,-0.047750137746334]],[[0.038887280970812,0.11836834251881,0.031669277697802],[0.014716603793204,0.001380582805723,0.034428238868713],[0.074563734233379,0.035943560302258,0.040145676583052]],[[-0.071499928832054,0.075731888413429,0.020998438820243],[-0.027801116928458,0.021250115707517,-0.03716317564249],[0.060632355511189,-0.01100261695683,0.0068368259817362]],[[-0.037447687238455,0.077134720981121,0.068848915398121],[0.003123571863398,0.013047534972429,-0.014274011366069],[0.00024600993492641,0.0075479946099222,0.056910201907158]],[[-0.019280573353171,0.021152663975954,-0.040623564273119],[-0.019002651795745,0.026295119896531,-0.0070020044222474],[-0.0038769361563027,-0.031351678073406,-0.034464199095964]],[[0.031236791983247,0.018273714929819,0.059329181909561],[0.038960695266724,0.097338855266571,0.036672405898571],[0.019288571551442,0.003651846665889,0.0078743491321802]],[[-0.035030752420425,-0.065237067639828,-0.084905974566936],[-0.051305435597897,-0.033911805599928,0.030838320031762],[0.049049772322178,-0.046601515263319,-0.018671942874789]],[[0.0036101290024817,0.053091306239367,0.067951276898384],[-0.032971318811178,-0.022369710728526,0.045942138880491],[-0.01020628772676,0.12510196864605,-0.032329726964235]],[[-0.0065184659324586,-0.01781490445137,-0.047632321715355],[-0.097917556762695,0.0014040831010789,-0.044130850583315],[-0.014083645306528,-0.058258693665266,0.05847354978323]],[[0.010096591897309,0.037535700947046,-0.0019020563922822],[-0.018695848062634,-0.03321398422122,-0.0016482641221955],[0.012706554494798,-0.0021466936450452,0.012458181940019]],[[-0.0089269494637847,-0.021732708439231,0.018835186958313],[-0.031452070921659,-0.0049017616547644,-0.017834678292274],[0.028642328456044,0.074217945337296,0.052975971251726]],[[0.10058142244816,0.017559302970767,0.03284577652812],[0.029644776135683,0.018640922382474,-0.027228001505136],[0.074618436396122,0.0092107877135277,0.031777329742908]],[[-0.055065236985683,0.0037008451763541,0.0081814518198371],[0.039754264056683,0.0094235353171825,0.034867826849222],[0.028545562177896,0.082879036664963,-0.018307542428374]],[[-0.045574046671391,-0.017333898693323,0.059527643024921],[-0.0084499884396791,-0.034943319857121,0.010797363705933],[-0.041263695806265,0.07166188955307,0.040812864899635]],[[0.020825723186135,0.0083654718473554,-0.031580727547407],[-0.014839298091829,0.068403959274292,0.010638711974025],[0.016667375341058,-0.012880342081189,0.004995396360755]],[[-0.0049422848969698,0.0040513351559639,-0.013254778459668],[-0.04105693474412,-0.0022149905562401,-0.043176926672459],[-0.041044607758522,0.019341805949807,0.049633830785751]],[[-0.0041732215322554,0.040423028171062,0.066496394574642],[0.026090638712049,0.054877869784832,-0.054827056825161],[0.071780331432819,0.055859040468931,-0.036014791578054]],[[-0.05114308744669,0.0019080867059529,-0.0027928533963859],[0.033774949610233,-0.060860693454742,0.01399908028543],[-0.050929933786392,-0.016246495768428,-0.04266456887126]],[[0.089309878647327,-0.015283382497728,-0.01089228503406],[-0.0023063104599714,-0.02636219188571,0.070522658526897],[0.014562097378075,0.033952198922634,-0.027701562270522]],[[-0.029409600421786,0.017427429556847,0.067450158298016],[0.072989739477634,0.040983851999044,-0.0012448210036382],[0.11318935453892,0.026188204064965,-0.05615246668458]],[[-0.023944526910782,0.10226061940193,-0.009905070066452],[0.010417967103422,-0.0061758253723383,-0.015505625866354],[0.16223001480103,-0.030422771349549,-0.0070624486543238]],[[0.043857596814632,0.018746417015791,-0.024704985320568],[0.04189046099782,-0.041793059557676,-0.052921481430531],[-0.029588971287012,0.038478437811136,-0.15747009217739]],[[0.049455132335424,0.057431161403656,0.062764838337898],[0.044148255139589,0.045099101960659,0.087435446679592],[-0.011056963354349,0.027927376329899,-0.062637515366077]],[[0.081798143684864,-0.069777019321918,0.029512444511056],[0.040291864424944,0.052491657435894,0.024332692846656],[0.0293541662395,0.061261065304279,-0.036102142184973]],[[-0.0074139256030321,0.0071283425204456,0.015703976154327],[-0.054057445377111,0.037151861935854,-0.015658149495721],[0.15391078591347,-0.016643315553665,0.028125433251262]],[[0.02494677528739,-0.0083692111074924,-0.029920114204288],[-0.028932984918356,-0.050908792763948,0.047446429729462],[0.00020641385344788,0.029699774459004,0.071667440235615]],[[0.046567942947149,-0.028143413364887,-0.029322538524866],[-0.10226771980524,-0.024671236053109,-0.028696289286017],[-0.032604988664389,-0.09657047688961,0.01106902398169]],[[-0.038364112377167,0.075507700443268,-0.010254902765155],[0.053950384259224,-0.0040703974664211,-0.017536520957947],[0.062273193150759,0.065058320760727,-0.0038955784402788]],[[0.02591192163527,0.058788124471903,0.02418477460742],[0.0084849940612912,-0.011826561763883,-0.010118859820068],[-0.055603712797165,-0.01905800588429,-0.028191907331347]],[[0.043782077729702,-0.086651317775249,-0.019055243581533],[0.03062548674643,0.024487983435392,0.067299321293831],[0.053381867706776,0.020857082679868,0.039082027971745]],[[0.010670428164303,0.063146978616714,-0.0067739370279014],[-0.067665964365005,0.022578464820981,0.077034682035446],[-0.072995401918888,-0.019187590107322,0.0051358067430556]],[[-0.02611867710948,-0.04004804417491,0.028636142611504],[-0.0051462049596012,-0.038236439228058,0.056773733347654],[-0.077851697802544,-0.06941482424736,-0.029899269342422]],[[-0.019953859969974,-0.030911970883608,-0.03686212003231],[-0.010958570986986,-0.083936929702759,-0.029846984893084],[-0.013582736253738,-0.0064234300516546,-0.043504036962986]],[[-0.014991020783782,-0.020007088780403,0.040443170815706],[0.018734183162451,0.03302688151598,0.080180324614048],[-0.020818958058953,0.0031320373527706,0.05074966698885]],[[-0.012250103987753,0.070223413407803,0.051655415445566],[0.03286574780941,0.038587279617786,0.051988806575537],[0.0013535373145714,0.011025622487068,-0.015269178897142]],[[-0.083672516047955,0.0097362538799644,-0.0071592023596168],[0.061333190649748,0.049074094742537,-0.0037850893568248],[-0.083562426269054,0.072407998144627,-0.023724200204015]],[[0.018819637596607,-0.029799442738295,0.064372293651104],[-0.026726985350251,0.030726831406355,0.0070326332934201],[-0.06218733265996,-0.060256730765104,0.081432424485683]],[[0.011881081387401,0.048569671809673,0.14378109574318],[0.046374708414078,-0.022494629025459,0.0055882791057229],[-0.051352839916945,0.003681777510792,-0.011158530600369]],[[0.070266090333462,-0.029349828138947,-0.0044934493489563],[-0.011657825671136,0.10688319057226,0.0013178270310163],[-0.00063633266836405,0.034893196076155,0.0061828731559217]],[[0.051531214267015,-0.002630363451317,0.030749417841434],[0.072901152074337,-0.0021611666306853,-0.024943893775344],[-0.043737750500441,0.012418416328728,-0.027085199952126]],[[0.034495733678341,0.051965270191431,0.029609423130751],[0.039451111108065,0.022994089871645,0.024270365014672],[0.054252989590168,0.01661641150713,-0.066461376845837]],[[0.012379797175527,0.0078398631885648,0.0082754110917449],[-0.0041742357425392,0.043141826987267,0.058043796569109],[-0.046931080520153,0.015594203956425,0.05053860321641]],[[-0.012774417176843,-0.045285873115063,0.13877803087234],[-0.029121547937393,-0.10243701189756,-0.043606001883745],[0.049692332744598,-0.0088015710934997,0.0026096033398062]],[[0.08771625161171,0.073017224669456,0.016629911959171],[-0.053740344941616,-0.0207623783499,-0.008138514123857],[-0.034907683730125,0.047012358903885,0.07637295126915]],[[-0.035385053604841,0.05838156491518,-0.020369442179799],[-0.043285440653563,0.034661322832108,-0.017453107982874],[0.1224337220192,0.032683685421944,-0.0019955327734351]],[[0.0016089091077447,0.010862512513995,-0.068739794194698],[-0.0010947202099487,-0.008088992908597,0.052828885614872],[0.024463821202517,-0.047160483896732,0.0021997992880642]],[[-0.08355288207531,0.046233974397182,-0.0095380702987313],[-0.022804526612163,-0.038483019918203,-0.026598500087857],[-0.066272161900997,-0.021608013659716,-0.043632924556732]],[[0.0071352287195623,0.070101737976074,0.069499768316746],[0.019462265074253,-0.092964984476566,0.037616390734911],[-0.082897841930389,0.0074410513043404,-0.028890704736114]],[[-0.007889986038208,0.010863242670894,0.062967002391815],[0.0010411441326141,0.0027144784107804,0.017367796972394],[0.052030697464943,0.070965602993965,-0.014961950480938]],[[0.027550395578146,0.020532328635454,0.0015543268527836],[0.059966545552015,0.058329995721579,-0.0025263703428209],[-0.01590927504003,-0.056534606963396,-0.048350464552641]],[[0.045840099453926,-0.022047039121389,0.041860621422529],[0.001934633939527,0.0083275828510523,0.012517485767603],[-0.030728651210666,0.038618911057711,0.012963546440005]],[[0.065610729157925,-0.051186963915825,0.023982500657439],[-0.060726340860128,-0.074790470302105,-0.012952827848494],[-0.0082914959639311,-0.0091428374871612,0.0068539162166417]],[[0.022842027246952,0.050828438252211,-0.025542756542563],[-0.0053410097025335,0.039245832711458,0.00076225568773225],[0.10002643615007,0.057605519890785,0.08639819175005]],[[0.030449824407697,-0.040042899549007,0.082089446485043],[-0.040595732629299,-0.048083953559399,-0.048773422837257],[0.049266181886196,-0.028302241116762,0.057905368506908]],[[0.052237585186958,0.0038996564690024,-0.058644093573093],[0.010161880403757,0.0071573667228222,-0.038072511553764],[0.003256217809394,-0.026817517355084,0.010548240505159]],[[-0.017914174124599,0.088153921067715,-0.13362976908684],[-0.068780846893787,0.021423643454909,0.03048418648541],[0.0070321764796972,0.088476486504078,0.033625733107328]],[[-0.0044397851452231,0.084832012653351,0.007267246954143],[-0.043231025338173,-0.0059673441573977,0.020764267072082],[-0.083834134042263,-0.020533677190542,-0.022085918113589]],[[-0.00024028394545894,0.078531555831432,-0.052144277840853],[-0.060388263314962,0.002326536225155,-0.073469586670399],[0.013734631240368,0.032776858657598,0.014356263913214]],[[0.032446801662445,-0.091785758733749,0.016004847362638],[-0.036288131028414,-0.076328590512276,-0.032650638371706],[-0.029269417747855,-0.034828443080187,0.046227887272835]],[[-0.014300727285445,-0.053065180778503,0.051250070333481],[-0.010496458038688,-0.044065818190575,0.038041125983],[0.032876152545214,0.00016503698134329,0.012183860875666]],[[-0.032355178147554,0.035967048257589,0.013269455172122],[-0.0079581690952182,0.024009171873331,0.031119855120778],[-0.057751342654228,0.08400834351778,-0.098636984825134]],[[0.026203334331512,-0.015886090695858,0.051229223608971],[0.05793446674943,-0.062912181019783,0.0058524329215288],[0.017369866371155,0.030727548524737,0.011641731485724]],[[-0.026043441146612,0.013935265131295,-0.035520389676094],[-0.016790676862001,-0.051828637719154,-0.01621444709599],[0.048727300018072,-0.03632915392518,0.016472032293677]],[[0.015438697300851,0.026765711605549,-0.01304417103529],[0.02847746014595,-0.0021192010026425,-0.025285812094808],[0.0041360598988831,0.03826018422842,0.032332308590412]],[[0.046202123165131,0.0077067026868463,0.00082781491801143],[0.11284492909908,0.060477629303932,0.049173090606928],[-0.045238737016916,-0.014305321499705,-0.0055279810912907]],[[0.049820326268673,0.029727347195148,-0.036105874925852],[0.030020864680409,-0.026693243533373,0.029043894261122],[-0.022860275581479,0.0045188004150987,-0.0016914885491133]],[[-0.076794847846031,-0.0059954975731671,-0.028953017666936],[-0.0595827922225,-0.081290729343891,-0.0085510611534119],[-0.029823731631041,-0.022532099857926,-0.01283620391041]],[[0.015184609219432,-0.014777890406549,0.037176366895437],[0.022003270685673,-0.087907530367374,0.018173348158598],[-0.05829594284296,0.0020987563766539,0.0054672625847161]],[[0.028119720518589,-0.0078231254592538,0.007237340323627],[-0.02956142835319,-0.018470473587513,-0.051690351217985],[0.0020778919570148,0.053073804825544,0.015246512368321]],[[-0.036363750696182,0.052179209887981,0.034225851297379],[-0.057520661503077,-0.031840093433857,0.026397541165352],[-0.047920260578394,-0.0043308353051543,-0.08148243278265]],[[0.047929540276527,0.022144628688693,0.010651181451976],[0.017111191526055,-0.019010774791241,0.016653101891279],[-0.035943098366261,0.03658564388752,-0.0101069342345]],[[0.039872318506241,0.080054461956024,-0.045403644442558],[-0.057389263063669,0.040572211146355,0.069491513073444],[-0.024665225297213,-0.053089946508408,0.050783205777407]],[[0.0053562493994832,0.034268498420715,0.021216141059995],[0.021719040349126,0.052872333675623,0.025763601064682],[0.058060627430677,-0.0083226645365357,0.065049529075623]],[[-0.023145407438278,0.00089920498430729,-0.036440964788198],[0.064409032464027,0.051521141082048,0.094134092330933],[-0.031207526102662,0.014078874140978,0.046061262488365]],[[-0.019077191129327,0.014137219637632,-0.020334370434284],[-0.051521982997656,-0.019686754792929,0.043794214725494],[0.027520848438144,-0.025832502171397,0.10467766970396]]],[[[-0.054385010153055,0.043335266411304,0.0049684164114296],[0.025582309812307,-0.021471556276083,-0.028043845668435],[0.040000218898058,-0.0095106977969408,0.054361097514629]],[[-0.042435206472874,0.018847147002816,0.052557498216629],[-0.016557902097702,0.038000468164682,-0.033681221306324],[0.041648026555777,-0.017513630911708,-0.038852572441101]],[[0.03456811234355,0.038637854158878,-0.030026311054826],[-0.018222786486149,0.015509194694459,0.018728710711002],[-0.034711442887783,0.038336455821991,0.0065313316881657]],[[-0.005031774751842,-0.032242480665445,-0.038460567593575],[-0.022221881896257,-0.0038439747877419,-0.043816577643156],[-0.057460345327854,0.11550936102867,-0.088165581226349]],[[-0.095461420714855,-0.038936126977205,8.7772728875279e-05],[-0.011538428254426,0.027863748371601,-0.039765536785126],[-0.042041152715683,0.027378814294934,0.048912733793259]],[[0.009022400714457,0.033214502036572,0.060724969953299],[0.0015981405740604,-0.049211721867323,0.062468118965626],[-0.052723653614521,-0.032197035849094,-0.0097331497818232]],[[0.019170321524143,0.027779979631305,-0.019211946055293],[-0.0074404240585864,0.026060603559017,-0.014091401360929],[-0.018701214343309,-0.075936406850815,0.023199135437608]],[[0.01199827156961,-0.002188459970057,0.0050465962849557],[0.061377588659525,0.019397180527449,0.0059396484866738],[0.02579458989203,0.0056749396026134,-0.061842527240515]],[[0.04481715336442,-0.056237455457449,-0.0095072109252214],[0.029466472566128,-0.0099221616983414,0.01062461361289],[0.0040167369879782,-0.026483619585633,0.058593895286322]],[[0.097216248512268,-0.027491860091686,-0.016935450956225],[0.060178086161613,-0.0062126368284225,-0.081107720732689],[-0.0077319839037955,-0.030568255111575,0.076424330472946]],[[-0.0347621999681,0.057964257895947,-0.086994200944901],[-0.015792071819305,0.0054101594723761,-0.090614847838879],[0.07367068529129,-0.0098675321787596,0.021246906369925]],[[-0.011934502981603,-0.019360283389688,0.011499349959195],[0.050266038626432,-0.038973953574896,-0.011967204511166],[0.010912994854152,-0.072092115879059,-0.033391367644072]],[[-0.061671182513237,-0.0096933031454682,0.033287193626165],[0.0022371206432581,-0.004174099303782,0.03650439530611],[-0.067312829196453,0.084570474922657,-0.044714950025082]],[[0.031159525737166,0.031526308506727,0.021599659696221],[0.0224425252527,0.044112373143435,0.041941907256842],[-0.031830217689276,-0.065326906740665,-0.012930251657963]],[[-0.031113332137465,0.021703770384192,0.0058604367077351],[0.10935506224632,0.016361143440008,0.026140226051211],[0.026149783283472,-0.026683377102017,0.037390150129795]],[[-0.018860395997763,-0.048744425177574,0.058861456811428],[0.035345736891031,0.04083114489913,0.015806192532182],[0.036941688507795,0.033614974468946,-0.0066791502758861]],[[0.086199752986431,0.018221013247967,-0.014716100879014],[-0.054056838154793,-0.047913778573275,-0.077623136341572],[0.086405634880066,-0.018094884231687,-0.017400156706572]],[[-0.019993664696813,-0.00043727553565986,-0.057972561568022],[-0.07759615778923,0.0034606058616191,0.0057421433739364],[0.0064630080014467,-0.011242318898439,-0.085194043815136]],[[-0.094884745776653,-0.065133519470692,0.0029910523444414],[0.043475240468979,0.10786557197571,0.058781694620848],[0.077097401022911,0.056664172559977,-0.0024844880681485]],[[-0.037556242197752,-0.088014461100101,-0.058965977281332],[0.058040488511324,0.0097879823297262,-0.014102835208178],[-0.032345738261938,0.025232844054699,-0.0060507408343256]],[[0.057385958731174,-0.092438258230686,0.032936774194241],[-0.0027204067446291,-0.023794632405043,0.0085514429956675],[-0.027666984125972,0.051710281521082,0.0022999884095043]],[[-0.023227943107486,0.02388603053987,-0.016690064221621],[0.059758812189102,0.020544888451695,-0.031433913856745],[-0.033575490117073,-0.019634794443846,0.03988803550601]],[[-0.0058938460424542,0.026419060304761,0.0048591806553304],[-0.051789734512568,0.018542721867561,-0.0084283379837871],[0.011312237940729,-0.008426571264863,0.085759915411472]],[[0.029462825506926,-0.02015782520175,-0.039361428469419],[-0.07104753702879,0.027285745367408,-0.068312235176563],[0.012200192548335,-0.031672112643719,0.0072280219756067]],[[0.05426999181509,-0.0011789242271334,-0.0076483795419335],[0.033187478780746,-0.0077071120031178,-0.0057699764147401],[-0.031644143164158,0.0062880483455956,0.058873817324638]],[[-0.049307219684124,0.013226497918367,-0.0097165517508984],[0.080840080976486,0.011643735691905,-0.025037739425898],[0.052379596978426,0.12860827147961,0.080035746097565]],[[-0.039584547281265,-0.046673879027367,0.016993569210172],[0.019950227811933,0.026599679142237,-0.0034609511494637],[0.0088185220956802,-0.050086792558432,7.9566227213945e-05]],[[0.037174411118031,-0.00051305536180735,-0.014535763300955],[0.063897132873535,-0.00021481365547515,-0.029236387461424],[0.0064270393922925,-0.0019216220825911,-0.024262085556984]],[[-0.064448438584805,0.080021135509014,-0.011202670633793],[0.017148585990071,0.014926022849977,-0.041894439607859],[-0.0050512501038611,0.03967547789216,0.012937400490046]],[[-0.047172360122204,-0.017601935192943,0.0017659029690549],[-0.02314175106585,0.0034276563674212,-0.024696502834558],[-0.027989121153951,0.0078484574332833,0.044453639537096]],[[-0.015645185485482,-0.031547956168652,-0.018831299617887],[-0.026082152500749,0.081643760204315,0.088223792612553],[0.017123512923717,0.032188422977924,-0.0014918724773452]],[[0.071661338210106,-0.11205784976482,-0.020682375878096],[0.0069075240753591,0.081653207540512,-0.059782166033983],[-0.0052475552074611,0.041351441293955,-0.035971812903881]],[[0.010066637769341,-0.071237243711948,0.0066872201859951],[-0.063438266515732,0.0014125014422461,0.011741440743208],[-0.10226384550333,-0.061238311231136,0.045059219002724]],[[0.0090378625318408,0.061737023293972,0.022522753104568],[0.021887291222811,-0.030640371143818,0.0055969888344407],[-0.041143011301756,-0.015928829088807,-0.0088221319019794]],[[0.036172777414322,-0.026529079303145,-0.031262781471014],[6.00533458055e-05,-0.0087429154664278,-0.038513168692589],[-0.029435846954584,0.03860342502594,-0.017045652493834]],[[-0.011266474612057,0.026074409484863,-0.02804490737617],[0.051865484565496,-0.062520399689674,0.0072238151915371],[0.056090552359819,0.064933441579342,0.028793254867196]],[[0.051214694976807,-0.068908594548702,-0.060834944248199],[-0.01563891209662,-0.02528689801693,0.031327940523624],[0.015353510156274,-0.044204719364643,0.036615040153265]],[[-0.011067785322666,-0.04699832201004,-0.0023463282268494],[-0.046396981924772,-0.03405137732625,-0.031207274645567],[0.034261994063854,-0.081330358982086,0.03189929202199]],[[0.0084725078195333,-0.027194809168577,-0.0099663473665714],[0.025639858096838,-0.0080968486145139,0.012783722952008],[0.0041274847462773,0.047116212546825,-0.0091905277222395]],[[-0.011403112672269,-0.030076058581471,0.0020423040259629],[-0.035712365061045,0.015116234309971,-0.014893467538059],[0.014018878340721,-0.063579097390175,0.040968082845211]],[[0.05651631206274,0.031438022851944,0.034061305224895],[0.061416763812304,0.053664617240429,-0.045001331716776],[-0.034383594989777,-0.040497861802578,-0.037150003015995]],[[0.024496948346496,0.091163873672485,-0.057032469660044],[0.017238074913621,0.035857282578945,-0.0770233720541],[0.07864885777235,0.001216788077727,0.036111228168011]],[[-0.0071332682855427,-0.14328156411648,0.079026393592358],[0.062845394015312,0.053964976221323,0.0077754980884492],[-0.011176820844412,-0.018451565876603,-0.04620198905468]],[[-0.0082992976531386,0.055458575487137,-0.0085493242368102],[0.015259454026818,0.042794216424227,0.07367318123579],[-0.013697493821383,-0.12116947770119,0.016435474157333]],[[0.0011019926751032,-0.022387959063053,-0.03722995147109],[0.069854691624641,-0.00038623515865766,0.01819296553731],[0.044031523168087,-0.045612465590239,0.028828844428062]],[[0.0041765309870243,0.021572077646852,0.0074471118859947],[0.021122600883245,-0.031434446573257,-0.017713151872158],[0.044615015387535,0.015922833234072,-0.010316338390112]],[[0.066824555397034,0.057566929608583,-0.034551423043013],[-0.0071302019059658,-0.047333687543869,0.051096823066473],[0.023924147710204,-0.00948566198349,-0.1081750690937]],[[0.01687647216022,0.0045838025398552,0.045989342033863],[-0.012771962210536,-0.040910661220551,0.06981635838747],[-0.061721164733171,0.04887692630291,0.015767036005855]],[[0.0027060857973993,0.058974556624889,-0.078752614557743],[0.056445520371199,-0.047421261668205,0.036728013306856],[-0.088292792439461,0.068242378532887,0.0010684229200706]],[[-0.10354441404343,0.018522685393691,-0.061271362006664],[0.030218003317714,0.010276027955115,-0.0060352017171681],[0.045365355908871,-0.013606443069875,0.03004751726985]],[[0.0082242833450437,-0.042403291910887,0.021023917943239],[0.054266173392534,-0.026673886924982,-0.048606146126986],[-0.051372110843658,0.0056819031015038,0.035175304859877]],[[-0.032607886940241,0.0018987741786987,-0.0039783036336303],[0.018670570105314,-0.062054771929979,0.053569972515106],[-0.034165296703577,-0.043086405843496,0.038398060947657]],[[-0.055882435292006,0.0061682555824518,-0.00064265338005498],[0.067932493984699,0.062035236507654,0.077782019972801],[-0.063395850360394,-0.035202112048864,-0.076199091970921]],[[-0.043436948210001,0.04664633795619,0.071603246033192],[-0.029717713594437,-0.015021274797618,-0.0025395650882274],[-0.0066194660030305,0.040653888136148,0.031858809292316]],[[0.0026050098240376,0.025476064532995,0.039377935230732],[-0.056568656116724,0.057849131524563,0.0076241092756391],[-0.043770235031843,-0.061484411358833,0.070241563022137]],[[0.041320376098156,0.068295374512672,-0.023267645388842],[0.081353105604649,0.050961285829544,0.0070124790072441],[-0.028267113491893,-0.018754681572318,-0.0065485071390867]],[[-0.019112180918455,0.017469197511673,-0.067768543958664],[-0.00044840353075415,-0.051405400037766,-0.014325626194477],[0.014413145370781,-0.040760111063719,-0.011712228879333]],[[0.044905375689268,0.061384178698063,0.0052099460735917],[-0.042711887508631,-0.038355085998774,0.042748030275106],[0.013456532731652,-0.033533822745085,-0.00062519637867808]],[[-0.036864593625069,-0.032953403890133,0.054848250001669],[-0.084763824939728,-0.0666548833251,-0.055309977382421],[-0.036338642239571,0.039485316723585,-0.01573446020484]],[[0.010457098484039,-0.0484051220119,0.0022827421780676],[-0.0022199221421033,0.026776731014252,0.037518560886383],[-0.014991544187069,-0.10998102277517,0.073021367192268]],[[1.6368150681956e-05,-0.022426191717386,-0.018655242398381],[-0.016813334077597,0.028375944122672,0.034008521586657],[0.040090978145599,-0.086489379405975,0.026332035660744]],[[-0.074644610285759,0.012165226042271,-0.064305648207664],[0.016024231910706,-0.00089242937974632,0.035383284091949],[0.026917433366179,-0.028762485831976,0.073032259941101]],[[0.052945129573345,-0.012606566771865,0.029419587925076],[-0.036610942333937,-0.0439736507833,0.018898451700807],[-0.0049660038203001,0.01172792725265,0.067936405539513]],[[0.091763354837894,-0.049894962459803,-0.0085744401440024],[-0.0011178887216374,0.018585877493024,-0.014903160743415],[0.072358973324299,-0.017143463715911,0.0086493063718081]],[[0.0053922673687339,0.052256394177675,0.038113497197628],[0.030408045276999,-0.031282257288694,0.023876110091805],[-0.027066728100181,-0.025996565818787,-0.032743863761425]],[[-0.003254069481045,0.039458453655243,0.076581455767155],[0.039375532418489,0.0024471646174788,-0.0021304006222636],[-0.0097616827115417,-0.012203260324895,-0.013531238771975]],[[0.029761765152216,0.0063935900107026,0.052784841507673],[0.053613036870956,-0.025064419955015,-0.014360771514475],[-0.015794968232512,0.016246356070042,-0.013600572012365]],[[-0.0089341150596738,0.028803046792746,0.024278139695525],[-0.0337591804564,0.034394856542349,-0.0054151951335371],[-0.0042439033277333,-0.055886849761009,0.025825751945376]],[[0.089494809508324,0.046646103262901,0.0030025171581656],[0.098945841193199,-0.0016264810692519,-0.023077920079231],[-0.036408185958862,-0.0058464561589062,0.032827138900757]],[[0.049781069159508,0.0010388566879556,-0.053033407777548],[0.073813512921333,-0.032150309532881,0.05476588010788],[-0.042495355010033,0.063508257269859,-0.056537061929703]],[[-0.045508179813623,-0.014938432723284,-0.045252475887537],[0.023325297981501,-0.024369662627578,0.018184408545494],[0.06256639957428,0.042746186256409,-0.014309838414192]],[[-0.082318738102913,0.022194655612111,0.020667254924774],[-0.037216801196337,0.030694359913468,-0.0048026307485998],[0.037104275077581,0.0019545413088053,-0.0048487884923816]],[[0.1029018163681,-0.053474240005016,0.029901418834925],[0.050534781068563,0.089875914156437,0.0062105124816298],[0.05663762614131,0.032744128257036,0.068420976400375]],[[-0.025874296203256,0.039973352104425,-0.054322503507137],[0.091948673129082,-0.0082612112164497,0.075008034706116],[-0.046927783638239,0.032255511730909,-0.044828783720732]],[[0.046008426696062,0.020178848877549,-0.011003932915628],[0.0049930452369153,-0.088495142757893,0.0091212773695588],[-0.037932004779577,-0.021404376253486,-0.044405713677406]],[[-0.0043044993653893,0.048476930707693,0.030781267210841],[0.048622708767653,0.045833256095648,-0.08622332662344],[-0.014126690104604,0.028527189046144,0.0040572541765869]],[[-0.098480701446533,0.048334013670683,0.0096551245078444],[0.058070994913578,0.01268757879734,0.04518648982048],[-0.087487123906612,0.016835261136293,-0.030079241842031]],[[-0.022132752463222,0.022965749725699,-0.069476015865803],[-0.010379884392023,0.006213225889951,-0.022989297285676],[0.045460768043995,-0.015533136203885,-0.090226471424103]],[[0.09648310393095,0.034682001918554,0.043042112141848],[-0.059957910329103,-0.057244498282671,0.011555616743863],[0.019393293187022,0.043484017252922,-0.020151849836111]],[[0.012065295130014,-0.035029694437981,-0.043459597975016],[0.041181679815054,-0.0089093893766403,0.017382523044944],[-0.051139421761036,-0.046159211546183,0.0044020102359354]],[[-0.00049903802573681,-0.027049286291003,0.056015130132437],[0.034206222742796,0.040121920406818,-0.0072991051711142],[-0.035089943557978,-0.065073870122433,0.052308063954115]],[[-0.051957875490189,0.062601752579212,-0.035670306533575],[-0.011589447036386,-0.049203302711248,0.026810560375452],[-0.012760152108967,-0.0070843365974724,-0.022563820704818]],[[0.11076310276985,-0.0026832781732082,0.02332866191864],[-0.054105769842863,0.040371187031269,-0.0097462451085448],[0.095935150980949,0.026673052459955,-0.0086906673386693]],[[0.014218519441783,0.071974292397499,0.032485444098711],[-0.1030143275857,-0.072859257459641,0.0068078655749559],[0.015328942798078,0.0066513591445982,-0.08829802274704]],[[0.034158784896135,-0.090133532881737,-0.0013688276521862],[0.017849145457149,-0.045840628445148,0.019139343872666],[0.020918946713209,0.01146908570081,0.021462146192789]],[[0.0095941601321101,0.018869558349252,0.028851060196757],[-0.0028535088058561,-0.014256400056183,0.0034339264966547],[-0.031636666506529,0.039913196116686,0.026833375915885]],[[-0.040244780480862,-0.075653709471226,-0.036994010210037],[-0.034539055079222,-0.008302254602313,-0.0096117351204157],[0.0091961668804288,0.055447995662689,-0.07031511515379]],[[0.032314609736204,-0.074044570326805,-0.032362207770348],[-0.078442960977554,0.070999957621098,0.018599020317197],[0.064717121422291,0.080191977322102,-0.029669500887394]],[[-0.00093144318088889,0.0097618205472827,-0.010183210484684],[-0.022909706458449,0.014551179483533,0.0029636807739735],[0.016763161867857,0.06010602042079,-0.019649906083941]],[[-0.0022644633427262,0.0049868407659233,0.032451223582029],[-0.0086011374369264,0.0097454013302922,-0.028475692495704],[-0.014476278796792,0.016578339040279,-0.034368805587292]],[[-0.0087160700932145,-0.084928043186665,-0.034274529665709],[-0.023452475667,-0.093775935471058,-0.00052331812912598],[-0.0094922380521894,0.033399015665054,-0.0010213830973953]],[[0.042237710207701,-0.039881762117147,-0.0031541539356112],[0.039621356874704,2.1778032532893e-06,-0.058935850858688],[0.0087281502783298,0.010846943594515,-0.041086833924055]],[[0.0057981964200735,0.0094750337302685,0.062663495540619],[-0.023342652246356,0.019521355628967,-0.016602395102382],[-0.030920408666134,-0.02465265057981,-0.04051049426198]],[[0.046749018132687,0.0013598458608612,0.018246758729219],[-0.0013634806964546,-0.036420725286007,-0.1078389659524],[-0.044961713254452,0.01197346393019,-0.034692723304033]],[[0.0027232558932155,-0.021689184010029,-0.0082811415195465],[0.032675020396709,0.086109288036823,-0.025883851572871],[0.020763717591763,-0.0313640832901,0.0807034522295]],[[-0.014370846562088,-0.010312659665942,0.060874901711941],[0.035328648984432,-0.015590762719512,0.10159666091204],[-0.093315362930298,0.016552839428186,-0.010683497413993]],[[0.016419818624854,0.015905637294054,-0.052343096584082],[0.049204424023628,0.060020074248314,-0.050981178879738],[0.039685804396868,-0.014635117724538,0.010923479683697]],[[0.072262272238731,-0.062806665897369,0.02193214930594],[-0.030355079099536,0.012440172955394,-0.028153846040368],[0.016294302418828,-0.038440980017185,0.10212639719248]],[[0.013515036553144,0.074225649237633,0.0057610007934272],[0.013923803344369,0.067532807588577,0.021304294466972],[0.0032631759531796,0.081298336386681,0.084516644477844]],[[0.10191881656647,0.0057977428659797,-0.064060427248478],[-0.0007844265201129,0.0071052773855627,-0.0078280894085765],[0.0066159749403596,-0.068183556199074,-0.022772101685405]],[[0.080670803785324,0.0017110394546762,0.017043888568878],[-0.037231378257275,0.016957893967628,-0.034193344414234],[0.054242569953203,0.013432009145617,-0.035732727497816]],[[0.029014425352216,0.0044119539670646,0.02662848867476],[0.030526041984558,0.04176539182663,0.037584081292152],[0.0054159760475159,-0.01175609882921,0.010597638785839]],[[-0.0012951532844454,-0.020486351102591,0.060040533542633],[-0.0067767384462059,-0.019221503287554,-0.056522358208895],[-0.0041526341810822,0.0071546291001141,-0.038223717361689]],[[-0.015095925889909,0.032174944877625,-0.040389586240053],[0.034728683531284,0.041859574615955,0.0087406421080232],[0.0073920707218349,-0.027852464467287,0.025837861001492]],[[0.063721545040607,-0.01838232204318,0.039019957184792],[-0.049982439726591,0.00677449721843,-0.00044184824218974],[0.018169531598687,0.016999263316393,-0.0018933396786451]],[[0.024870919063687,0.015406173653901,0.0088794641196728],[0.053995948284864,0.059614654630423,0.059449601918459],[0.04505604878068,0.021267151460052,-0.048796016722918]],[[0.020920103415847,-0.018753297626972,-0.065355263650417],[0.0088556567206979,0.013973793946207,0.04576488956809],[-0.0012663275701925,0.016002347692847,0.053684778511524]],[[-0.0098151974380016,-0.045051123946905,-0.030921233817935],[-0.015145222656429,-0.012848247773945,0.092818215489388],[0.013884503394365,-0.041946593672037,0.034755740314722]],[[-0.062200967222452,0.045503865927458,-0.090045884251595],[0.089827261865139,-0.045277956873178,0.017552323639393],[-0.057046372443438,0.031008575111628,0.0024377522058785]],[[-0.037742897868156,-0.039214849472046,-0.013244778849185],[0.0061737368814647,-0.022406788542867,-0.00161531730555],[-0.036576692014933,-0.080679677426815,0.0081618493422866]],[[-0.010422086343169,0.062343500554562,0.050600435584784],[0.02398008108139,-0.013222486712039,0.05188288167119],[0.028643682599068,0.031944509595633,-0.016202522441745]],[[0.0064629288390279,-0.0067854761146009,0.011933263391256],[-0.046450257301331,0.073536738753319,-0.059367842972279],[0.013172548264265,0.037867788225412,-0.025392403826118]],[[0.036210354417562,0.030123868957162,-0.061502758413553],[-0.0710174664855,0.018400307744741,0.048162009567022],[-0.0062259789556265,0.0021883624140173,0.020198347046971]],[[0.039596680551767,-0.01507998816669,0.025236617773771],[-0.056976497173309,-0.047647692263126,-0.024977639317513],[-0.016621842980385,-0.017866468057036,-0.019156141206622]],[[0.0030013113282621,0.056199315935373,0.068081803619862],[0.014758827164769,-0.0084983697161078,-0.031086167320609],[-0.0033073660451919,-0.089679256081581,-0.0001251321809832]],[[0.021359086036682,-0.026071401312947,0.0699078515172],[0.050818979740143,-0.012150352820754,0.0078108413144946],[0.010899625718594,0.0023814646992832,-0.015315669588745]],[[0.034562937915325,0.018820175901055,-0.0058823022991419],[0.050338704138994,0.089307963848114,-0.0049544773064554],[-0.03616077452898,-0.0010280814021826,3.9015791116981e-05]],[[0.0039476337842643,0.017062796279788,0.024917466565967],[0.029908441007137,-0.029686598107219,0.014461420476437],[-0.065545655786991,-0.058801393955946,-0.013197219930589]],[[-0.063146859407425,0.010254899971187,0.023880332708359],[0.071473002433777,0.014863630756736,0.052563518285751],[-0.10366830229759,0.0085004912689328,0.0045883115381002]],[[-0.035442903637886,0.032278951257467,0.034746047109365],[-0.00067263032542542,-0.042524341493845,-0.013745222240686],[0.0045414012856781,-0.073503814637661,-0.00032685336191207]],[[-0.018562700599432,-0.016053577885032,0.021692277863622],[-0.026274295523763,-0.12373038381338,-0.020508335903287],[0.050298098474741,0.028748851269484,0.0036187595687807]],[[0.098544679582119,-0.10656801611185,0.011318258941174],[-0.026063796132803,-0.025978401303291,-0.03102876804769],[-0.0072678080759943,-0.016447480767965,0.035374343395233]],[[0.071968421339989,-0.0012855289969593,-0.011787766590714],[0.0061041391454637,0.039447784423828,-0.019773626700044],[-0.02819636836648,-0.020173070952296,-0.020827064290643]],[[0.013518362306058,-0.010591836646199,0.023933783173561],[-0.074627168476582,-0.027571899816394,-0.024695113301277],[-0.027151513844728,0.080763585865498,0.021361827850342]],[[-0.015809908509254,1.7969752661884e-05,-0.048724673688412],[0.036674689501524,0.027524448931217,-0.0019455133005977],[0.12207003682852,-0.022380029782653,0.0078973639756441]],[[0.063883982598782,-0.044880405068398,0.040329452604055],[0.0097671858966351,-0.0088308630511165,0.034487847238779],[0.027159910649061,-0.048987191170454,0.058368414640427]],[[-0.04337290674448,-0.012701597996056,-0.041823532432318],[0.072929985821247,0.0073301969096065,0.029806103557348],[0.072215102612972,0.034593310207129,-0.039146602153778]],[[-0.0056425803340971,-0.01023921277374,-0.064494274556637],[-0.083262167870998,0.0206961017102,0.011318258009851],[-0.0033378954976797,-0.0066530229523778,-0.023118840530515]]],[[[0.019999608397484,-0.0020893774926662,0.036705654114485],[0.035906810313463,-0.023368500173092,-0.052349857985973],[-0.041028220206499,-0.059496749192476,0.038436092436314]],[[0.017447164282203,-0.0012877543922514,0.012036450207233],[-0.077078603208065,-0.080419734120369,-0.021753100678325],[0.03250128030777,0.022541914135218,0.019052870571613]],[[0.0062448712997139,0.054686721414328,-0.012635191902518],[0.022741809487343,-0.060051221400499,-0.020830972120166],[0.025437530130148,-0.0062308046035469,0.025173112750053]],[[0.024074586108327,0.059990230947733,0.032017856836319],[0.014516090042889,-0.0096605280414224,-0.0074291336350143],[0.0094109261408448,0.0067291697487235,0.0027432045899332]],[[0.012255136854947,0.0046994732692838,0.022304221987724],[0.033813774585724,-0.04049738496542,0.022846836596727],[-0.022131223231554,-0.030583428218961,-0.020633006468415]],[[-0.012187853455544,0.01035431586206,0.10118325054646],[-0.018183805048466,0.0070865782909095,0.028641007840633],[0.0026094294153154,0.042613878846169,0.076515451073647]],[[0.0279501657933,-0.0027032038196921,0.0061992350965738],[-0.022545019164681,-0.01552302017808,-0.015311654657125],[0.016858723014593,-0.0056453831493855,-0.063737764954567]],[[-0.057065829634666,-0.026235496625304,0.076924785971642],[0.016727512702346,0.060591001063585,0.11522053927183],[-0.053336098790169,-0.06430771201849,0.044854816049337]],[[0.0372633934021,-0.04511784017086,0.058374933898449],[0.086583442986012,0.031909942626953,0.026608740910888],[-0.11449538916349,-0.033181626349688,-0.072042733430862]],[[0.10825686901808,-0.078802995383739,0.12955012917519],[0.047570556402206,0.15218937397003,-0.052936587482691],[-0.05024716258049,0.06364718824625,0.060587082058191]],[[0.050474300980568,-0.027071917429566,0.02368913218379],[-0.001138097490184,0.062004122883081,0.022970113903284],[-0.013221560046077,-0.084495931863785,0.0035035484470427]],[[0.0035369542893022,-0.0067006922326982,-0.040331117808819],[0.026902025565505,0.078448630869389,0.045632112771273],[0.042704947292805,0.0021506664343178,-0.038382042199373]],[[0.079218305647373,-0.012716567143798,0.035610411316156],[-0.089928150177002,0.085172034800053,0.0035484305117279],[-0.026678355410695,-0.032544944435358,-0.086558826267719]],[[-0.017667263746262,-0.065416678786278,0.0088516334071755],[0.047662947326899,0.088243313133717,-0.023441947996616],[0.045208625495434,0.042131695896387,-0.013320936821401]],[[-0.034041330218315,0.13423708081245,0.12476834654808],[0.16979099810123,-0.10290077328682,0.1082184240222],[0.11891354620457,0.12859424948692,-0.091425716876984]],[[-0.020215254276991,0.013827470131218,-0.025825023651123],[0.005588511005044,-0.097010545432568,-0.018149426206946],[-0.04836093261838,-0.0063637653365731,-0.062314007431269]],[[0.017015656456351,0.00032850404386409,0.071043960750103],[-0.043711241334677,0.10022647678852,0.034200843423605],[-0.02860595099628,0.079680852591991,0.026243893429637]],[[0.061816599220037,-0.06299515068531,-0.0014211247907951],[0.018904265016317,-0.025960708037019,0.038578104227781],[-0.014659429900348,0.047940991818905,-0.050488516688347]],[[0.042647518217564,-0.00095926347421482,0.011462925001979],[-0.043140880763531,0.043156053870916,0.015304365195334],[-0.0030394664499909,-0.0029722673352808,0.027303744107485]],[[-0.045043163001537,0.013291712850332,0.02623426169157],[0.06452302634716,0.066129766404629,-0.01722820289433],[0.016932452097535,-0.011525500565767,0.064267359673977]],[[0.065659686923027,0.01824077218771,0.037122208625078],[-0.1245754212141,0.033106427639723,-0.0089489994570613],[0.083338864147663,-0.051358990371227,-0.041924551129341]],[[0.060402873903513,0.13926108181477,0.062388900667429],[0.049066826701164,-0.017533203586936,0.11936627328396],[0.077145919203758,0.058254163712263,0.077692307531834]],[[-0.057036861777306,-0.0092771174386144,0.0076170768588781],[-0.029721820726991,0.051899272948503,0.024146016687155],[-0.025364089757204,0.013146911747754,0.016428342089057]],[[-0.004867859184742,-0.043765120208263,0.01096012070775],[-0.020497629418969,0.036018069833517,0.036269523203373],[0.014379158616066,0.0042579947039485,-0.024839637801051]],[[0.018930958583951,-0.019185770303011,-0.0136583968997],[0.057882618159056,0.0070149935781956,0.063337258994579],[-0.050571981817484,0.040451537817717,0.0031740006525069]],[[0.0084839146584272,0.031284797936678,0.038465738296509],[-0.023371297866106,0.0040451404638588,-0.013030610047281],[-0.0078153358772397,0.043797578662634,-0.040234304964542]],[[0.0033405246213078,0.012619903311133,-0.040538512170315],[0.0035160556435585,0.076676018536091,0.027816850692034],[0.017507687211037,0.012565727345645,0.020282480865717]],[[0.062972202897072,0.095606610178947,-0.0033147563226521],[-0.049512472003698,-0.0045939586125314,0.0084829358384013],[-0.02664234675467,0.03457909822464,-0.049066763371229]],[[-0.11599759757519,-0.018156547099352,0.024733765050769],[0.0283292401582,0.061224151402712,0.035468738526106],[0.057348277419806,-0.044009335339069,0.086691185832024]],[[-0.047674130648375,-0.02219120413065,-0.020007954910398],[-0.016508581116796,-0.05595962330699,0.073143981397152],[0.0069594820961356,0.042845219373703,-0.030087172985077]],[[0.080430328845978,0.040738217532635,0.044649954885244],[-0.035897742956877,-0.011522421613336,0.027158107608557],[-0.030608667060733,0.063102751970291,0.014857133850455]],[[-0.020277012139559,-0.010239140130579,0.040313381701708],[0.0079939868301153,-0.0098064728081226,0.014820857904851],[0.032758694142103,-0.075376071035862,-0.0021082686726004]],[[0.024459963664412,-0.060585293918848,0.066722698509693],[-0.10033185780048,0.030511854216456,0.034894239157438],[-0.0132772969082,0.054042667150497,0.013264116831124]],[[-0.045655019581318,0.010820341296494,0.015124276280403],[0.070003882050514,0.12593433260918,0.028058243915439],[0.0095916977152228,0.040662154555321,-0.039421178400517]],[[-0.013941747136414,0.096539191901684,0.035340189933777],[-0.012667442671955,0.022796578705311,0.0087722949683666],[0.022362722083926,0.064877219498158,-0.029164936393499]],[[-0.020099893212318,-0.0096423448994756,0.0025944802910089],[0.0031490605324507,-0.013853708282113,0.048743352293968],[-0.035177975893021,-0.0073624281212687,0.027628317475319]],[[-0.040061175823212,-0.015335214324296,0.049481071531773],[0.022362761199474,0.038477253168821,-0.017654536291957],[-0.039421774446964,-0.013834500685334,0.085101805627346]],[[0.0024329610168934,0.047866750508547,-0.0083569381386042],[-0.0049690413288772,-0.019138468429446,0.068214908242226],[-0.040127318352461,-0.040009554475546,0.048679392784834]],[[-0.057691834867001,0.036251932382584,0.0086536817252636],[0.1010344773531,0.043987050652504,0.049784138798714],[0.066359624266624,-0.015781147405505,0.068889819085598]],[[0.033633898943663,-0.038300968706608,0.013606721535325],[-0.0088385082781315,0.110870487988,0.031196545809507],[-0.0039717331528664,-0.012765442021191,0.033278800547123]],[[-0.014126469381154,-0.0097342878580093,0.072851821780205],[-0.044839091598988,0.049276523292065,0.038216650485992],[-0.0025423609185964,0.0050254273228347,-0.11255551874638]],[[-0.046554587781429,-0.027926556766033,0.030076503753662],[-0.010360774584115,0.0032648777123541,-0.010461148805916],[0.016463177278638,-0.022585909813643,0.058806616812944]],[[0.0033626621589065,0.022181639447808,0.035665910691023],[-0.026700131595135,-0.046517334878445,0.038122002035379],[0.084201566874981,0.034552238881588,-0.0054947272874415]],[[-0.0089652827009559,0.039317052811384,0.067943021655083],[0.10964367538691,-0.0014467157889158,-0.0018315318739042],[-0.0014856554334983,0.050793036818504,0.0085013611242175]],[[0.065073773264885,-0.018093768507242,0.0016696923412383],[-0.012583289295435,-0.028847355395555,0.033272925764322],[0.00036136459675618,-0.047904185950756,0.034351404756308]],[[0.020217999815941,0.013444723561406,-0.0092021115124226],[-0.0011227041250095,0.080871172249317,0.10357150435448],[0.044354766607285,0.040530662983656,-0.075744703412056]],[[0.074457176029682,0.0089787822216749,0.045849874615669],[0.048700731247663,0.036315474659204,-0.0020186144392937],[0.0012313890038058,-0.045447040349245,0.078964836895466]],[[0.050249826163054,0.072246499359608,0.079478204250336],[-0.010836573317647,-0.024360610172153,-0.03866807743907],[-0.034518092870712,0.045456651598215,-0.008951012045145]],[[0.046282775700092,0.0016659937100485,0.0031849252991378],[-0.044835969805717,-0.063360467553139,0.013623623177409],[0.037772178649902,0.08903743326664,0.020373057574034]],[[0.05765014141798,-0.051000833511353,-0.0052868532948196],[0.018772499635816,-0.12424347549677,0.043248295783997],[-0.034014642238617,-0.10159096866846,-0.0034519096370786]],[[0.053238991647959,-0.032917119562626,-0.024206649512053],[-0.0055810548365116,0.021429423242807,0.0053014447912574],[0.0039137760177255,0.030684476718307,0.0081512480974197]],[[-0.038198564201593,-0.013889851979911,-0.066197291016579],[0.011507115326822,-0.0039810435846448,0.032819256186485],[-0.0014093837235123,0.011466837488115,0.038852620869875]],[[-0.014865127392113,-0.041181713342667,0.010704801417887],[-0.0493851788342,-0.016036279499531,0.057955864816904],[0.046299960464239,0.0008305199444294,-0.063113257288933]],[[-0.00091333448654041,0.062889203429222,-0.019282791763544],[0.049490980803967,-0.039809472858906,0.0057883304543793],[-0.018445186316967,-0.0013415450230241,0.0063712405972183]],[[0.016627641394734,-0.013935469090939,0.048838745802641],[0.04825459048152,-0.021176701411605,0.0070705022662878],[-0.036373991519213,-0.015211914665997,-0.029700430110097]],[[0.028620604425669,-0.0009863271843642,-0.030648410320282],[-0.075550302863121,0.0074962307699025,-0.061174087226391],[-0.038198217749596,0.037569783627987,-0.0084926504641771]],[[0.083053685724735,0.028397960588336,0.02230772189796],[-0.087255902588367,-0.050847936421633,0.043081752955914],[0.0058298287913203,-0.10972634702921,-0.0084186838939786]],[[0.027969237416983,0.019186729565263,-0.043840453028679],[0.010559005662799,0.050447888672352,-0.035763096064329],[0.019435536116362,-0.0085721081122756,-0.0046742237173021]],[[-0.00036589923547581,0.069489516317844,0.048749253153801],[-0.0035228761844337,-0.010512508451939,0.071925386786461],[0.049874901771545,0.064286559820175,0.029249239712954]],[[-0.078164868056774,-0.024918366223574,-0.028758257627487],[0.0099567621946335,0.10467537492514,0.031127890571952],[-0.034073870629072,-0.036762807518244,0.051395073533058]],[[0.010762223042548,0.0060450728051364,0.025368833914399],[0.045167803764343,-0.069940574467182,0.046532437205315],[-0.010838314890862,-0.0036253626458347,0.018193900585175]],[[0.012196516618133,0.011316256597638,0.049408387392759],[0.0012109811650589,-0.037259642034769,0.039673637598753],[-0.035912852734327,-0.10601877421141,-0.087757714092731]],[[-0.053702671080828,0.0047139315865934,-0.024396810680628],[-0.014102916233242,-0.050228800624609,0.03359679505229],[-0.029249582439661,0.021418562158942,0.014017039909959]],[[-0.0082314545288682,-0.0011044192360714,-0.016852969303727],[0.073016129434109,0.07382732629776,-0.050142519176006],[0.086722299456596,0.021493567153811,-0.038471151143312]],[[-0.030334154143929,0.081957437098026,0.083441697061062],[0.010105261579156,-0.028756519779563,-0.011544548906386],[0.018733913078904,0.033875919878483,-0.012718250975013]],[[0.022451726719737,-0.018814224749804,0.013526665978134],[0.017772229388356,-0.036746621131897,0.0063940598629415],[-0.018853122368455,-0.055598068982363,0.057551246136427]],[[0.062070608139038,-0.050202406942844,0.021846741437912],[0.011453914456069,-0.024967884644866,-0.043291434645653],[-0.028378194198012,0.049913488328457,0.023246483877301]],[[0.011311234906316,0.031371790915728,0.011689274571836],[0.053031507879496,0.080962799489498,0.0086051858961582],[0.019698468968272,-0.026330737397075,0.026170300319791]],[[-0.0286362208426,0.030289581045508,-0.032313995063305],[0.020945526659489,-0.01041972823441,0.032688435167074],[0.056400194764137,-0.044272631406784,-0.04006264731288]],[[0.06133371964097,0.051435276865959,-0.010738110169768],[0.018144723027945,-0.056976553052664,0.11557245999575],[-0.052303094416857,0.010069054551423,-0.0042184991762042]],[[-0.03423373401165,0.042741488665342,0.026710035279393],[0.0087370555847883,0.0060459091328084,0.019258147105575],[0.12678228318691,-0.030329260975122,-0.042174950242043]],[[-0.063731759786606,0.060719963163137,0.022206733003259],[-0.031682047992945,0.055430997163057,0.040914755314589],[0.068806603550911,0.092011168599129,0.0062046572566032]],[[-0.035351671278477,0.026049973443151,-0.0048150117509067],[-0.055131632834673,0.044801861047745,0.035952765494585],[-0.013534168712795,0.042688138782978,-0.021619917824864]],[[-0.031230958178639,-0.043438892811537,-0.00098420958966017],[-0.0005214627017267,0.031120097264647,-0.0032739255111665],[-0.043812274932861,-0.035519286990166,0.00099766091443598]],[[-0.029427377507091,-0.010920820757747,-0.015541950240731],[0.050221759825945,0.022506237030029,0.096209861338139],[0.058192074298859,0.11034279316664,0.11302129179239]],[[0.09270766377449,0.032853219658136,-0.0020002347882837],[-0.039682310074568,0.022395309060812,-0.01533489767462],[0.068975545465946,0.0017691546818241,0.01637002453208]],[[0.035301595926285,-0.011845205910504,0.03365083783865],[0.026186738163233,-0.013378775678575,-0.072773709893227],[0.035118028521538,0.046725142747164,0.05237789824605]],[[0.050889108330011,-0.046836625784636,-0.023708900436759],[0.031141677871346,-0.0061605549417436,0.0068475175648928],[0.022130453959107,-0.027098869904876,0.049759909510612]],[[-0.015906166285276,-0.040879338979721,-0.0273776371032],[-0.063447549939156,-0.0033428925089538,0.087936200201511],[-0.019228281453252,-0.038643483072519,0.059063907712698]],[[-0.011970272287726,-0.11837937682867,0.055179599672556],[0.031185416504741,-0.043835032731295,0.025837594643235],[0.012522773817182,-0.08496031165123,0.039439003914595]],[[0.035762291401625,0.0017422056989744,-0.053024414926767],[0.076302230358124,0.032154865562916,-0.046716894954443],[0.035260852426291,-0.087326541543007,-0.054468080401421]],[[0.010442855767906,0.016227517277002,0.056172892451286],[0.0012902024900541,-0.025739669799805,-0.014478697441518],[0.0042066583409905,0.031047476455569,-0.043652456253767]],[[-0.089107058942318,0.069636978209019,0.094704031944275],[-0.018015177920461,-0.082487717270851,0.043392367660999],[0.029062774032354,2.8748163458658e-05,0.0306680444628]],[[0.047450520098209,-0.063659973442554,0.054244928061962],[-0.0042281686328351,-0.0074881063774228,0.084643147885799],[-0.083117239177227,0.073531940579414,0.0094831101596355]],[[0.068750470876694,0.059896692633629,0.026408147066832],[-0.021325847133994,0.035408768802881,-0.058718491345644],[0.034894429147243,0.07146405428648,-0.014928235672414]],[[0.017204636707902,0.0032926599960774,-0.090042792260647],[0.022172542288899,-0.013636669144034,0.018348209559917],[0.029174540191889,-0.054349824786186,-0.0112758083269]],[[-0.00060439109802246,-0.0016751966904849,0.0067859757691622],[-0.0038211008068174,0.028095228597522,-0.015556864440441],[-0.0069749634712934,-0.012806721962988,-0.022767534479499]],[[0.071089215576649,0.021355194970965,0.050537940114737],[-0.023939156904817,0.087733879685402,-0.0042351339943707],[0.023220378905535,-0.03205731138587,0.078408867120743]],[[0.03290344029665,-0.02350215241313,-0.062145490199327],[-0.00037764839362353,0.0045493110083044,0.01995275914669],[-0.0076777506619692,0.046264261007309,-0.051837157458067]],[[0.048480376601219,0.073733411729336,0.033567789942026],[0.042546954005957,-0.026015587151051,0.012248986400664],[-0.023704402148724,-0.022140784189105,0.012406435795128]],[[-0.055750161409378,-0.01137965079397,-0.055280111730099],[-0.014403825625777,0.045503959059715,0.031210212036967],[0.021766550838947,-0.035947259515524,-0.0077718468382955]],[[0.0091416072100401,-0.0041190171614289,-0.0086511382833123],[0.010296767577529,0.0057048001326621,0.019858432933688],[0.045472245663404,0.07417705655098,-0.012079781852663]],[[-0.023580487817526,-0.044000837951899,0.061497248709202],[0.0017903594998643,0.027144202962518,-0.026194583624601],[0.041478376835585,-0.020354690030217,0.027443800121546]],[[-0.053219333291054,-0.038250461220741,0.049076590687037],[0.050116825848818,-0.0014730462571606,0.12527500092983],[0.10508895665407,0.012458387762308,0.012383251450956]],[[-0.044314708560705,-0.009827652014792,-0.03228797018528],[-0.053220007568598,0.040314119309187,0.070538461208344],[-0.046113722026348,-0.018038898706436,-0.0035169848706573]],[[0.049581002444029,-0.002161267446354,0.035978838801384],[0.027268562465906,-0.062050778418779,-0.025230502709746],[-0.0010857013985515,0.0060288957320154,0.018596576526761]],[[0.016112513840199,-0.034798711538315,0.092066712677479],[0.018122686073184,0.085940204560757,0.062472354620695],[0.077963627874851,0.019773080945015,0.021884569898248]],[[0.037807870656252,-0.052369616925716,0.012382708489895],[0.028304319828749,0.026617269963026,-0.054961528629065],[0.027197021991014,0.048319447785616,0.045511778444052]],[[0.040467578917742,-0.007360955234617,-0.0083182342350483],[0.040110051631927,-0.019974302500486,0.079203993082047],[-0.05291298404336,0.046735014766455,-0.0061324741691351]],[[0.0066929156892002,0.026910815387964,0.018815385177732],[0.039637736976147,0.028750516474247,0.014850656501949],[0.019815808162093,-0.0001063539966708,0.025653989985585]],[[0.0039413082413375,0.0031783494632691,-0.025884045287967],[-0.047244794666767,0.1383949816227,0.069739386439323],[-0.021141288802028,-0.059108503162861,0.056974202394485]],[[-0.016226556152105,0.0028068132232875,0.12296622246504],[-0.014906411059201,0.010687464848161,0.026782501488924],[-0.054732259362936,0.033153135329485,0.083945214748383]],[[-0.038796536624432,-0.05328706279397,0.0052492530085146],[0.017114104703069,-0.044733498245478,0.011722065508366],[0.020850224420428,-0.051946848630905,-0.013207672163844]],[[0.03857584670186,-0.021161245182157,0.0082967961207032],[-0.0015155354049057,-0.027384230867028,0.029712012037635],[0.020517986267805,-0.0066368854604661,0.030872222036123]],[[-0.034956019371748,-0.03304636105895,0.0033142068423331],[-0.079226993024349,-0.04638160020113,-0.0072762267664075],[-0.01948201097548,-0.024610657244921,0.017491461709142]],[[-0.029757983982563,0.033106289803982,0.048346698284149],[0.0202955044806,0.036720842123032,0.048675041645765],[0.0075477249920368,0.048007402569056,0.01223483402282]],[[0.053193878382444,0.03279522806406,-0.072459183633327],[-0.029482698068023,0.070105269551277,0.053398791700602],[0.11117662489414,-0.0081247240304947,0.041585132479668]],[[0.012046255171299,0.024277033284307,0.015179663896561],[0.010977129451931,0.0063170744106174,0.054691713303328],[-0.0083565916866064,0.056883368641138,-0.057769734412432]],[[-0.0050695603713393,0.050816353410482,0.0040814261883497],[-0.061852302402258,-0.031304437667131,-0.019528204575181],[-0.035323813557625,-0.009105684235692,-0.045389786362648]],[[0.064383111894131,-0.0014166873879731,-0.013842360116541],[-0.057221829891205,0.094790168106556,0.0066977455280721],[0.019961204379797,-0.084515325725079,0.047366186976433]],[[0.03451731428504,-0.00011893296323251,-0.018860209733248],[0.058728206902742,-0.045167606323957,-0.053960788995028],[-0.018492147326469,0.022225122898817,0.020634261891246]],[[-0.042834911495447,0.0047863950021565,-0.068799450993538],[0.0074352310039103,-0.0074804229661822,-0.018250579014421],[-0.016434671357274,-0.066020406782627,0.031678035855293]],[[-0.069753959774971,-0.0056777698919177,-0.0095541141927242],[0.027494559064507,0.0037093942519277,0.043380066752434],[-0.044135570526123,-0.055023975670338,-0.053307015448809]],[[0.053494311869144,0.01495583448559,-0.041264574974775],[-0.099715553224087,-0.00018089258810505,-0.0086353002116084],[0.065192982554436,-0.048875410109758,-0.016268074512482]],[[-0.041954021900892,-0.027540801092982,0.056675795465708],[-0.016941426321864,0.023225059732795,-0.067598596215248],[0.030739858746529,-0.030921321362257,0.035810802131891]],[[0.012644357047975,-0.072077050805092,0.037083778530359],[0.051279287785292,0.063098080456257,0.0018403073772788],[0.018137270584702,0.024598998948932,0.015510863624513]],[[-0.00070792791666463,-0.033394180238247,-0.0064955516718328],[0.050996944308281,0.070421330630779,0.065850175917149],[-0.021576078608632,0.035755638033152,0.010980016551912]],[[-0.025661204010248,-0.055219948291779,0.028835577890277],[0.04227402061224,0.0020406586118042,0.034971989691257],[-0.0035108253359795,0.029943943023682,-0.028504885733128]],[[-0.075588226318359,-0.0042886873707175,-0.023608401417732],[0.029531583189964,-0.0051499274559319,-0.021208675578237],[-0.019030064344406,0.043292447924614,-0.090340457856655]],[[0.014016992412508,0.023453839123249,0.043981552124023],[-0.026451589539647,-0.062760338187218,-0.012301508337259],[-0.024962596595287,0.0062728528864682,0.0083398530259728]],[[-0.0075516006909311,0.060679376125336,0.080985121428967],[-0.056024622172117,0.00011326356616337,0.043575324118137],[-0.034054335206747,-0.024243239313364,0.027603821828961]],[[-0.0072834426537156,-0.0064107403159142,-0.091676086187363],[-0.0073458198457956,0.046790439635515,-0.032921873033047],[0.041600707918406,-0.05749798566103,-0.020854497328401]],[[0.0020193012896925,0.0040140389464796,0.095998033881187],[-0.020663056522608,-0.014627761207521,-0.027481095865369],[0.004911171272397,0.035800110548735,0.039430044591427]],[[-0.072057016193867,-0.0037853044923395,-0.017711199820042],[0.052109993994236,-0.043487653136253,-0.010186006315053],[0.012522088363767,-0.032986413687468,0.047047268599272]],[[-0.025349238887429,0.046513982117176,-0.000100411773019],[0.054840933531523,0.04666880890727,0.054077211767435],[0.0012757475487888,-0.015602624043822,-0.038818787783384]],[[-0.022096002474427,0.085591405630112,0.017075093463063],[-0.0196478869766,0.0070797810330987,-0.03419465944171],[0.029563147574663,-0.051217414438725,-0.0015841610729694]],[[0.043705195188522,0.021358022466302,0.04731535166502],[0.034706957638264,0.051912277936935,0.0033626181539148],[-0.058329544961452,0.035090126097202,-0.01922444999218]],[[0.067129477858543,0.0286845266819,-0.039911441504955],[0.03126398473978,0.040263000875711,-0.012543509714305],[-0.012640316039324,0.014984267763793,-0.0035137084778398]]],[[[-0.083686180412769,-0.081306479871273,-0.018296847119927],[-0.028957856819034,0.073954343795776,0.056166063994169],[-0.10514181107283,-0.0042373389005661,0.059655353426933]],[[-0.016087079420686,-0.0083573320880532,0.033302441239357],[-0.10677080601454,0.044383373111486,-0.090153500437737],[-0.054316412657499,0.073649823665619,-0.045038908720016]],[[-0.034131720662117,-0.0070977052673697,-0.080931454896927],[-0.017934493720531,-0.011868276633322,0.084408305585384],[-0.0087806265801191,-0.03120756149292,-0.0067658969201148]],[[-0.0005326644750312,-0.053141184151173,0.077799566090107],[-0.019848007708788,-0.0064843101426959,-0.054431810975075],[-0.00040728834574111,-0.059527277946472,0.024602219462395]],[[0.059682093560696,-0.023996727541089,0.029876720160246],[0.0075385281816125,0.029463097453117,0.079447411000729],[0.023615602403879,0.053541328758001,-0.062382761389017]],[[0.047310549765825,0.070143587887287,-0.028826139867306],[0.094263426959515,-0.011166810058057,0.06776524335146],[0.018461702391505,0.12136508524418,-0.01050543691963]],[[-0.026918964460492,0.076525643467903,0.023607689887285],[-0.045809339731932,-0.025747291743755,-0.053959637880325],[0.015186454169452,0.0068233390338719,-0.062623120844364]],[[-0.039750661700964,-0.032272797077894,0.090448595583439],[0.025784652680159,-0.030683483928442,0.05534029379487],[-0.018337560817599,0.043627008795738,-0.023091834038496]],[[-0.0076970900408924,0.10106365382671,0.11837403476238],[0.020769063383341,-0.045750021934509,0.017278915271163],[-0.083662092685699,0.063583143055439,-0.026734134182334]],[[0.10488045215607,0.05888768658042,-0.03474035859108],[-0.051689997315407,0.13827680051327,0.073211558163166],[-0.041382651776075,0.082992993295193,-0.059256237000227]],[[-0.0130456071347,0.014993144199252,0.10212904214859],[-0.028924722224474,0.038580771535635,-0.044804785400629],[0.095094688236713,0.0019312767544761,-0.022593965753913]],[[-0.053396735340357,-0.0749292075634,0.13257502019405],[-0.028529455885291,0.010092730633914,0.04764848947525],[0.012358943931758,-0.040289841592312,0.027164543047547]],[[0.0055030616931617,-0.001295912428759,-0.11370910704136],[0.0047839838080108,0.0033765251282603,0.023840006440878],[0.07433508336544,-0.014247549697757,0.0039130495861173]],[[-0.010359324514866,0.081277973949909,0.034232873469591],[0.0014431407907978,-0.05040480941534,-0.0025870609097183],[0.012172714807093,0.02850148640573,-0.00820208247751]],[[0.0041990038007498,-0.039637073874474,0.14247980713844],[0.1614431142807,-0.075573161244392,-0.021039804443717],[0.088020913302898,0.13418404757977,0.01106365211308]],[[0.014331748709083,0.0081622675061226,0.0037129253614694],[-0.057298492640257,-0.079424768686295,-0.022188078612089],[0.041098244488239,-0.036669932305813,-0.10149553418159]],[[0.01638968475163,0.011008324101567,-0.060930557549],[0.076910071074963,0.13321180641651,0.015848396345973],[-0.072972469031811,-0.03230507671833,0.048866596072912]],[[0.012561243958771,0.047571152448654,0.010980900377035],[-0.11996617168188,0.0074035641737282,-0.060243964195251],[-0.12506356835365,0.0012669068528339,0.082348071038723]],[[-0.011609782464802,0.015586278401315,-0.040734525769949],[-0.063224270939827,-0.022854525595903,0.13280156254768],[-0.0036530874203891,-0.0070166951045394,-0.045553274452686]],[[0.074735939502716,-0.0039563369937241,0.077617704868317],[0.053774558007717,-0.023021724075079,0.046306096017361],[0.11138948053122,0.043231543153524,0.099666580557823]],[[0.042663741856813,0.038039345294237,-0.018818665295839],[-0.066696353256702,0.040939394384623,0.058584194630384],[0.038648743182421,0.01474086008966,-0.030784912407398]],[[-0.098362050950527,0.032769531011581,-0.014340133406222],[0.083424836397171,0.070233575999737,0.07293339818716],[0.039120141416788,-0.01755359582603,0.04643177241087]],[[-0.14474511146545,0.069094464182854,0.0058205714449286],[-0.083619602024555,-0.010694283992052,-0.0090348180383444],[-0.011717049404979,-0.01737691834569,-0.0062004686333239]],[[0.027165547013283,0.050580866634846,0.087970606982708],[0.027217904105783,0.071132160723209,0.063768975436687],[-0.077915273606777,0.050890035927296,-0.038473077118397]],[[0.049292977899313,0.020929357036948,0.059171363711357],[-0.023523973301053,-0.011974591761827,-0.0057284231297672],[-0.066128186881542,0.027569767087698,0.10939485579729]],[[-0.027886766940355,0.01005553919822,-0.095507517457008],[-0.017241729423404,0.0024887495674193,-0.014780346304178],[-0.02833860181272,0.065614931285381,-0.0057260626927018]],[[-0.085007905960083,0.074138976633549,0.1340748667717],[-0.018023194745183,0.023375736549497,-0.013809212483466],[-0.022692315280437,-0.0010909641860053,0.047428216785192]],[[0.1087114289403,-0.078798413276672,0.01519997511059],[0.00065138802165166,0.021685056388378,-0.074081927537918],[0.068935729563236,-0.0035630515776575,-0.067472048103809]],[[0.06806518137455,-0.061356365680695,0.033575695008039],[0.045066513121128,0.09313540905714,0.00072018447099254],[0.0046220659278333,0.029261698946357,0.079475678503513]],[[0.032730348408222,0.060663171112537,0.083741717040539],[0.010623048990965,0.12365693598986,-0.025909511372447],[0.062811218202114,0.0082771088927984,0.10125626623631]],[[0.10089057683945,0.080236621201038,-0.019223960116506],[-0.068397402763367,0.00024046085309237,0.020764572545886],[0.026048064231873,-0.0048171659000218,0.0260080229491]],[[0.033238593488932,0.074940584599972,0.056272987276316],[0.013732842169702,0.085931055247784,-0.014246816746891],[0.0032861272338778,-0.01444039400667,-0.068314336240292]],[[0.020818788558245,0.0096894539892673,0.084477908909321],[0.090356178581715,0.08573542535305,-0.071260422468185],[-0.033340353518724,0.064297243952751,0.0047353808768094]],[[-0.094794504344463,0.043108597397804,-0.053605895489454],[0.041084669530392,-0.022417291998863,0.099204383790493],[0.075339548289776,-0.0086907921358943,-0.062193866819143]],[[-0.066721826791763,0.045015059411526,0.10493964701891],[-0.046688165515661,-0.058456014841795,-0.0315807685256],[-0.010136228986084,0.01491657551378,0.034152630716562]],[[0.0055191502906382,-0.041780635714531,-0.023822084069252],[-0.12785430252552,-0.051793679594994,-0.023571230471134],[-0.00012877080007456,-0.0098462393507361,0.0092827556654811]],[[0.019656497985125,0.025836564600468,-0.011347421444952],[-0.028614228591323,-0.069003760814667,0.058058325201273],[-0.032071929425001,-0.019235327839851,-0.075487390160561]],[[0.027219090610743,-0.028383087366819,0.0082238428294659],[0.057652365416288,-0.033890783786774,0.1365087479353],[0.032576404511929,-0.0027188493404537,0.017214551568031]],[[0.0079680429771543,-0.036570221185684,0.044215951114893],[0.025448048487306,-0.014256966300309,-0.10299448668957],[0.05218168348074,-0.0078751919791102,0.18240670859814]],[[0.031007949262857,0.10418961942196,-0.0014306200901046],[0.017578409984708,-0.022418659180403,0.018149632960558],[0.042521599680185,-0.013993996195495,0.035175237804651]],[[-0.035960398614407,0.047898694872856,0.023253571242094],[-0.062585078179836,-0.047759737819433,0.035040952265263],[0.080196000635624,0.054399412125349,-0.046610850840807]],[[-0.034841742366552,0.045890692621469,0.015842489898205],[0.0063758576288819,0.014476086013019,0.052529439330101],[0.016563216224313,0.10136180371046,0.018692156299949]],[[-0.0017449330771342,0.06401215493679,-0.022260894998908],[0.071218274533749,-0.040231589227915,-0.029487794265151],[-0.024876082316041,0.087703250348568,0.027815464884043]],[[-0.007354433182627,0.044332280755043,-0.0028194095939398],[-0.086774557828903,0.10846588760614,0.04644837602973],[0.049452971667051,0.050817478448153,-0.0015900990692899]],[[-0.019687704741955,0.020760539919138,0.060411479324102],[-0.032869599759579,0.11396907269955,-0.11109111458063],[0.073280975222588,-0.029174782335758,-0.03799032792449]],[[-0.0017794916639104,-0.018151115626097,0.038222048431635],[0.026947665959597,0.040688812732697,0.054105818271637],[0.038323953747749,0.033143807202578,-0.09256037324667]],[[0.030339436605573,0.025234578177333,0.046396169811487],[0.012347923591733,0.013600734062493,0.066159524023533],[0.031084476038814,0.091822490096092,-0.0070592043921351]],[[0.054764829576015,-0.042967393994331,-0.038584504276514],[0.014751548878849,0.05790189281106,0.065827585756779],[0.034667391330004,0.027884317561984,0.036645885556936]],[[0.044545620679855,-0.10585606843233,0.10116873681545],[-0.098184570670128,-0.0075609460473061,0.10184474289417],[0.011038329452276,0.11229132860899,0.033571541309357]],[[0.010759395547211,0.024069380015135,-0.034922566264868],[-0.073278039693832,0.017152672633529,0.017293332144618],[-0.013293380849063,0.042684122920036,-0.052765585482121]],[[0.029064910486341,0.067370861768723,-0.10726086050272],[0.063961580395699,-0.016996834427118,0.084785327315331],[-0.028809417039156,-0.027190234512091,-0.010077936574817]],[[-0.068034157156944,0.081212870776653,0.11475961655378],[0.046324074268341,-0.031851828098297,0.068622216582298],[-0.053469695150852,0.067732326686382,0.012943685986102]],[[-0.029330253601074,-0.034400701522827,-0.049055352807045],[0.073392868041992,0.065260879695415,-0.030444631353021],[0.053511817008257,0.070785984396935,-0.015150804072618]],[[0.05696377530694,0.06764855235815,0.010472474619746],[0.018411543220282,-0.031969428062439,0.10115782916546],[-0.054432652890682,-0.0020341887138784,-0.010496173985302]],[[0.045077491551638,0.0061062024906278,0.038181319832802],[0.031997717916965,-0.1013188585639,-0.050197176635265],[0.16727282106876,0.15672759711742,0.034556806087494]],[[0.031272888183594,-0.0064396685920656,0.018764892593026],[0.020114600658417,-0.018141100183129,0.051284722983837],[-0.0072836992330849,-0.0037057141307741,0.035233169794083]],[[-0.010640910826623,0.11592620611191,0.0039597367867827],[-0.026387272402644,0.055396683514118,0.013684687204659],[0.0070194504223764,-0.0068545467220247,0.0049344501458108]],[[0.1360502243042,-0.019574562087655,0.043664708733559],[-0.039904031902552,-0.056599009782076,-0.097028642892838],[0.059753224253654,-0.072410546243191,0.14529749751091]],[[-0.032920569181442,0.049021784216166,0.053801763802767],[0.085997074842453,0.014540485106409,0.051241986453533],[0.022188100963831,0.041378404945135,-0.062898419797421]],[[0.073519200086594,0.05940043926239,-0.012600394897163],[-0.039205711334944,0.10913770645857,0.079060472548008],[0.082322411239147,0.022799009457231,-0.058316048234701]],[[0.075726307928562,0.035595435649157,0.068305969238281],[0.067874766886234,-0.00667509669438,0.016365326941013],[-0.035212062299252,0.085575766861439,0.10869704186916]],[[-0.067941799759865,-0.024953901767731,0.034585434943438],[0.0048277694731951,-0.015328497625887,0.054007068276405],[-0.068928897380829,0.032075043767691,0.015751268714666]],[[0.047789126634598,-0.024713544175029,-0.0072157513350248],[-0.076227620244026,0.13684356212616,0.025281358510256],[-0.075579352676868,-0.03954528644681,-0.018619947135448]],[[0.052856378257275,-0.047029390931129,0.057243656367064],[-0.055777408182621,0.046894118189812,0.045425493270159],[0.096265278756618,-0.028513947501779,0.025258008390665]],[[-0.044669523835182,0.041640348732471,-0.0052191554568708],[0.035914972424507,-0.037057369947433,0.0013111135922372],[0.082138374447823,0.0070170015096664,0.0821413397789]],[[-0.15236154198647,0.067858673632145,-0.076469123363495],[-0.043350581079721,-0.031999636441469,-0.021805766969919],[-0.0052156061865389,-0.069520562887192,0.077868968248367]],[[-0.0400026217103,-0.0046785348095,-0.1085269972682],[0.05284395813942,0.045935194939375,0.023548249155283],[0.010602343827486,-0.016568990424275,0.028070073574781]],[[-0.0037753907963634,0.013879205100238,0.014855019748211],[0.050876028835773,0.072898328304291,0.014889372512698],[0.036461248993874,0.059644367545843,0.015560234896839]],[[-0.0090085715055466,0.020418932661414,-0.034166354686022],[-0.088185980916023,0.028271814808249,0.024474093690515],[0.06837509572506,0.028997333720326,0.046437881886959]],[[0.039935383945704,0.051939446479082,0.056323863565922],[0.063008464872837,0.038495544344187,-0.014948649331927],[-0.034606225788593,-0.040351141244173,-0.023813296109438]],[[-0.017052283510566,0.05556558072567,-0.10694350302219],[0.063153982162476,0.044194620102644,-0.02811337262392],[0.039908230304718,-0.029933461919427,-0.051501646637917]],[[-0.0055250660516322,0.043061576783657,0.026229409500957],[-0.037798400968313,-0.039727602154016,0.081820748746395],[0.074746049940586,0.047222174704075,0.021105874329805]],[[-0.024001114070415,0.052056454122066,0.060916967689991],[0.11202162504196,0.10214821994305,-0.0079011972993612],[0.0031858759466559,0.0050841909833252,0.038454491645098]],[[-0.035926207900047,0.054629366844893,0.049598015844822],[-0.067742869257927,-0.020054306834936,0.045588880777359],[-0.062285777181387,-0.037090245634317,-0.042477056384087]],[[0.05186104029417,0.029996484518051,0.0089969960972667],[0.06834352016449,0.024337412789464,-0.039924576878548],[-0.028550654649734,-0.037327688187361,0.024555975571275]],[[0.071225479245186,-0.0026376300957054,0.015578113496304],[0.021383017301559,-0.021758992224932,-0.024400366470218],[0.020865917205811,0.00035042376839556,-0.0059417467564344]],[[0.039249207824469,0.027323653921485,-0.017337890341878],[0.068262219429016,0.12439980357885,0.021725943312049],[0.036580938845873,0.075559839606285,-0.074537798762321]],[[0.016615357249975,-0.081767961382866,0.041098535060883],[0.037025589495897,0.018768416717649,0.047353226691484],[0.0055343955755234,0.021230818703771,0.052836280316114]],[[-0.033187869936228,0.041722971946001,-0.0047658467665315],[0.080420471727848,0.12981995940208,0.003716082777828],[-0.090881980955601,-0.061967898160219,0.096337288618088]],[[0.016316270455718,0.064206011593342,-0.042032763361931],[0.018627779558301,0.045221403241158,0.13088923692703],[-0.053900890052319,-0.037023909389973,-0.036014597862959]],[[-0.0043361806310713,-0.022043721750379,-0.025788296014071],[0.022300001233816,-0.008727596141398,-0.038588516414165],[-0.019198656082153,-0.023296745494008,-0.0078901089727879]],[[-0.14484275877476,0.028566004708409,0.0124122928828],[-0.034745860844851,0.07158836722374,0.068886861205101],[0.0032525055576116,-0.010415487922728,0.042213171720505]],[[-0.071241162717342,-0.0090280212461948,0.011756243184209],[0.061827354133129,0.016162246465683,0.047226253896952],[-0.046762350946665,-0.0049481745809317,0.034354027360678]],[[0.078025422990322,0.019344946369529,0.063033930957317],[0.070785172283649,-0.0053147356957197,0.054680969566107],[-0.014051894657314,-0.064921915531158,0.075503215193748]],[[0.10105779021978,-0.0015668321866542,-0.057731937617064],[-0.019883746281266,0.062923312187195,0.025655886158347],[0.059699237346649,0.04493735358119,0.020367102697492]],[[0.028048891574144,0.070471920073032,-0.058152835816145],[0.089696019887924,-0.010113873519003,0.079917252063751],[-0.058225899934769,0.038112472742796,0.0057181562297046]],[[-0.039119645953178,0.015722861513495,0.02672465518117],[0.033482160419226,-0.026306945830584,-0.096706598997116],[0.014961996115744,-0.0236184168607,0.074341595172882]],[[0.05681225284934,-0.028781618922949,-0.083542704582214],[0.065756984055042,0.045940678566694,-0.018885826691985],[-0.0061934539116919,-0.047974839806557,0.023748684674501]],[[0.10253388434649,0.0095498189330101,-0.0098764859139919],[0.1077688485384,-0.074418656527996,0.085244044661522],[0.024949489161372,0.070150159299374,0.032160855829716]],[[0.12234603613615,0.023284744471312,0.034277282655239],[0.019539834931493,-0.013864286243916,-0.0053011481650174],[0.0035918243229389,0.09047457575798,0.0090211257338524]],[[0.0081985769793391,0.094495706260204,-0.021762130782008],[0.03398822247982,0.070557855069637,0.0928710475564],[-0.045198686420918,-0.084231689572334,-0.029777308925986]],[[0.073741652071476,0.025562396273017,0.016200235113502],[-0.15224835276604,0.020740579813719,0.022112770006061],[-0.066674493253231,0.10892672836781,-0.01215164642781]],[[-0.17050315439701,-0.0073447404429317,0.033750716596842],[0.025012727826834,-0.073843717575073,0.040630377829075],[0.059742543846369,-0.034478489309549,0.042571648955345]],[[-0.019887916743755,-0.085256159305573,0.063206769526005],[0.026706581935287,-0.018669877201319,0.095036424696445],[0.061745759099722,0.084001921117306,0.010506584309042]],[[-0.066829994320869,-0.0021879919804633,0.11101020872593],[-0.046705055981874,0.027191516011953,-0.023077365010977],[0.047962605953217,0.023698905482888,-0.010426060296595]],[[0.0040284926071763,0.0082855261862278,0.032045386731625],[0.14329047501087,-0.017126031219959,-0.014472872950137],[0.038590528070927,0.018273871392012,-0.062462214380503]],[[-5.3572963224724e-05,0.029532469809055,-0.058510702103376],[-0.0039173630066216,-0.11323139071465,-0.017191538587213],[-0.024412812665105,0.023547565564513,0.039171252399683]],[[0.0022485954686999,0.014846406877041,0.024443367496133],[-0.014037292450666,0.047681488096714,0.05424852669239],[-0.00089859456056729,0.06738469004631,0.037982743233442]],[[-0.009802183136344,-0.12746047973633,0.13792861998081],[0.077721364796162,0.021055728197098,0.075921759009361],[0.0041913520544767,0.046444434672594,-0.020594945177436]],[[-0.0036996218841523,0.088491789996624,-0.062920711934566],[-0.021449118852615,-0.017232345417142,-0.056147173047066],[0.011498387902975,0.0062843733467162,-0.013628823682666]],[[0.064479440450668,0.022497871890664,0.019760342314839],[0.043854378163815,-0.020099449902773,0.010955294594169],[0.053510509431362,-0.096281692385674,-0.030842818319798]],[[0.018069105222821,-0.043454892933369,0.073610506951809],[0.0063156890682876,0.08225479722023,0.026705712080002],[-0.0049897199496627,0.01530241034925,-0.0955915376544]],[[-0.038545280694962,0.057625662535429,0.04862654581666],[-0.088061690330505,0.038548067212105,-0.04375509172678],[-0.026565099135041,0.029518073424697,0.0019952617585659]],[[0.026733538135886,-0.051517605781555,-0.046490833163261],[-0.0022115251049399,0.048273365944624,-0.011611285619438],[0.0077106095850468,0.10687529295683,0.030496025457978]],[[0.061544865369797,-0.0047635999508202,0.061092186719179],[0.039894949644804,0.0090658748522401,0.10585881024599],[0.018592802807689,0.010129993781447,0.059659272432327]],[[-0.045615658164024,0.041596222668886,-0.10934992879629],[0.035101048648357,0.0057241986505687,0.060934834182262],[0.048178803175688,-0.13240949809551,0.071877412497997]],[[0.067835412919521,-0.0034459158778191,0.04469446465373],[0.020969744771719,0.078817464411259,0.10189236700535],[-0.032720759510994,0.068985305726528,0.060630843043327]],[[0.048917081207037,-0.054054565727711,0.048698354512453],[0.005612778943032,0.07222992181778,-0.010685129091144],[0.022744966670871,0.10515961050987,0.063200175762177]],[[0.0071114031597972,-0.089419662952423,-0.063628457486629],[-0.034299790859222,-0.0509980507195,0.072423040866852],[0.0017223214963451,-0.055353440344334,-0.073787175118923]],[[-0.0011635585688055,0.032415740191936,-0.0095985047519207],[0.037481620907784,-0.049905814230442,0.0099093057215214],[-0.090882904827595,-0.012033100239933,-0.007049195934087]],[[0.071373902261257,-0.10546875745058,0.045561872422695],[-0.0399972461164,0.013159153982997,-0.10321029275656],[2.7327592761139e-05,0.059758454561234,0.020784145221114]],[[0.037736807018518,0.14351154863834,-0.0046209506690502],[0.021788096055388,-0.039814945310354,-0.032980088144541],[-0.014131767675281,0.066118516027927,0.023003097623587]],[[0.024981634691358,-0.0021130335517228,-0.0032284874469042],[-0.030295612290502,-0.074711531400681,0.059764258563519],[-0.02762090973556,-0.020457919687033,-0.036296613514423]],[[-0.029597353190184,0.04473352432251,0.02948384359479],[0.036295551806688,-0.13394320011139,0.084886446595192],[-0.0066855256445706,-0.024397045373917,0.0407669916749]],[[-0.12868593633175,0.054628916084766,0.003780770348385],[-0.032475620508194,0.13600102066994,0.0053565977141261],[0.0024569449014962,0.013370181433856,-0.011244856752455]],[[-0.049872003495693,0.015875354409218,-0.0084640756249428],[0.094987913966179,0.070633508265018,-0.080819092690945],[0.02427820302546,0.019072325900197,0.018983604386449]],[[0.02371215261519,0.057750806212425,0.027591483667493],[-0.0082083875313401,0.11112206429243,0.051512237638235],[0.026159822940826,0.023779843002558,0.021576967090368]],[[-0.0029971613548696,-0.021479703485966,0.012069575488567],[0.1202537342906,-0.0096090622246265,0.071639157831669],[-0.00089636939810589,0.030565800145268,-0.042024221271276]],[[0.041752062737942,0.016741709783673,-0.08288685977459],[-0.034528430551291,-0.01476966124028,0.024180268868804],[0.0049777529202402,0.028366886079311,-0.010251333937049]],[[0.0070539256557822,-0.075540997087955,-0.017414931207895],[-0.045390762388706,-0.072857372462749,-0.019162125885487],[-0.012090019881725,0.065427906811237,-0.029426921159029]],[[0.034527529031038,-0.033936642110348,0.055521257221699],[0.046638213098049,-0.0077926074154675,0.028542382642627],[-0.048124682158232,-0.02920906804502,0.025221632793546]],[[0.013686551712453,0.049807000905275,-0.014093107543886],[0.047654204070568,-0.021658051759005,0.035592403262854],[0.11946666240692,0.016005571931601,-0.00022897114104126]],[[0.023127293214202,0.033876843750477,0.033770587295294],[-0.0017032517353073,0.015866728499532,-0.019990555942059],[-0.047547146677971,0.0090026399120688,-0.012132177129388]],[[0.058353241533041,-0.079152591526508,-0.075946643948555],[-0.074358493089676,-0.10514537990093,-0.011504783295095],[-0.083372265100479,0.081031300127506,0.026302913203835]],[[0.098057642579079,-0.078794397413731,0.073850132524967],[0.060740046203136,-0.046555582433939,-0.015340940095484],[-0.083713240921497,0.0087286019697785,0.017761487513781]],[[0.041398894041777,-0.0052869827486575,0.046005051583052],[0.05920148268342,-0.0087799625471234,0.049800302833319],[0.042322494089603,-0.092753082513809,-0.010998252779245]],[[-0.065904304385185,0.13540966808796,0.0066156312823296],[0.0082308957353234,0.012841303832829,0.05962198600173],[-0.023812646046281,0.01861728541553,0.0045806746929884]],[[-0.011250818148255,-0.035504542291164,-0.012771078385413],[0.076330251991749,-0.075775012373924,-0.026786031201482],[-0.017435124143958,-0.031610105186701,0.024309208616614]]],[[[0.022048123180866,0.012402643449605,-0.030009606853127],[0.039130672812462,0.0086447317153215,0.060161158442497],[-0.020174983888865,0.019993742927909,-0.041859060525894]],[[-0.027266271412373,-0.077047616243362,-0.067742265760899],[0.019558964297175,0.0014189325738698,0.026508666574955],[0.011947992257774,0.015093678608537,-0.016808120533824]],[[0.020045390352607,-0.02438198402524,0.013028969988227],[0.0092582078650594,-0.032704833894968,0.003188218222931],[0.015863507986069,0.013858865015209,0.019041687250137]],[[0.044356256723404,-0.029697228223085,-0.047577895224094],[-0.014486775733531,0.015535796992481,0.02310842461884],[-0.0056176604703069,0.061069749295712,0.0023226537741721]],[[0.070222459733486,-0.019794659689069,-0.0075913462787867],[-0.023409148678184,0.034082889556885,0.0033916167449206],[-0.0063342098146677,0.015354353003204,-0.0029399984050542]],[[-0.090344451367855,-0.0084284953773022,-0.072584614157677],[-0.020001420751214,0.030313435941935,0.0046369414776564],[-0.072254806756973,0.069413423538208,-0.022573191672564]],[[0.011174858547747,-0.075646720826626,0.07371386885643],[-0.07799120247364,0.045367497950792,-0.035576596856117],[0.037692319601774,-0.01769046112895,-0.019965056329966]],[[-0.062107682228088,-0.087736420333385,0.046170331537724],[0.090325534343719,0.0059623448178172,0.0012439179699868],[-0.042931750416756,-0.0057768630795181,-0.0023259045556188]],[[-0.023733975365758,-0.05488309264183,-0.030086431652308],[0.013661759905517,0.026884263381362,-0.0060888542793691],[-0.025482850149274,-0.051348399370909,-0.031534638255835]],[[-0.052858334034681,-0.010829301550984,-0.021596811711788],[0.033470515161753,-0.015829799696803,0.00095734902424738],[-0.05066853761673,0.020275954157114,0.032169204205275]],[[-0.023077663034201,-0.051577687263489,0.030271431431174],[-0.027565132826567,-0.063131541013718,-0.024087499827147],[0.0077777374535799,-0.062709413468838,0.06070463731885]],[[0.080918729305267,0.046315498650074,0.028206529095769],[0.028400298207998,-0.056211706250906,-0.0029965825378895],[-0.056973900645971,-0.017491122707725,0.067754283547401]],[[0.05310732126236,0.02235116623342,0.015567498281598],[-0.00075740838656202,-0.068457365036011,-0.047526936978102],[-0.022799886763096,-0.068693615496159,-0.068249322474003]],[[-0.09795480966568,0.037743277847767,-0.021884966641665],[0.057099688798189,-0.041885804384947,-0.035562720149755],[-0.074390932917595,-0.008061514236033,-0.0078937504440546]],[[0.020231653004885,0.0097756832838058,-0.10850342363119],[-0.043440997600555,-0.018983697518706,0.049027089029551],[0.02493754774332,0.081912912428379,-0.01918407343328]],[[0.062592215836048,0.0041371216066182,0.016471633687615],[0.043760281056166,0.0071056112647057,-0.046118017286062],[-0.032707735896111,0.021149061620235,-0.05974142998457]],[[-0.0098284166306257,-0.018851006403565,-0.027958622202277],[0.017157008871436,-0.035779047757387,-0.039430759847164],[0.023590605705976,-0.010340905748308,0.027158118784428]],[[-0.021699933335185,-0.031388159841299,-0.015037306584418],[0.034977860748768,-0.046138823032379,0.026796577498317],[-0.015608510002494,-0.0033220492769033,-0.047348216176033]],[[-0.05354381352663,0.0052796611562371,0.01347119640559],[0.044673707336187,-0.038319528102875,-0.0028783341404051],[0.05816537886858,0.039318386465311,0.013480159454048]],[[-0.0057092988863587,-0.071372710168362,0.0067727626301348],[0.014711201190948,-0.040149256587029,0.080377213656902],[0.081555254757404,-0.010014312341809,0.017896097153425]],[[-0.046874914318323,0.0013710695784539,0.11102847754955],[-0.0038091873284429,-0.027985502034426,-0.011535609140992],[0.066055089235306,0.031411603093147,0.017035709694028]],[[-0.0057446244172752,0.013852012343705,0.070299588143826],[0.065720550715923,-0.016056636348367,0.014661455526948],[-0.012445690110326,-0.019405012950301,0.0070911394432187]],[[-0.026756301522255,0.071322128176689,0.040322408080101],[0.035886134952307,-0.0073722461238503,-3.5644738090923e-05],[-0.020760329440236,-0.052013393491507,-0.010256703011692]],[[0.064324371516705,0.013053598813713,0.048949580639601],[0.056771356612444,-0.0032358423341066,0.038351017981768],[-0.034422978758812,-0.069629848003387,-0.019968988373876]],[[-0.029553974047303,0.070503659546375,0.010249191895127],[0.03153408691287,0.057384874671698,-0.014048394747078],[0.0010529503924772,0.085711762309074,-0.063825264573097]],[[0.098865658044815,-0.0346908159554,-0.012843053787947],[-0.040078170597553,-0.017300240695477,-0.05996822938323],[-0.079204723238945,-0.050559122115374,0.050529323518276]],[[0.0099989511072636,-0.073637776076794,-0.018238024786115],[0.0064529897645116,-0.03691603243351,0.0172033701092],[-0.065732084214687,0.066423237323761,0.054601036012173]],[[-0.13619419932365,-0.047326806932688,0.03973114490509],[0.056386776268482,-0.055634807795286,-0.046946547925472],[-0.03034009039402,0.0074331639334559,-0.049245607107878]],[[0.00084152998169884,0.023583643138409,-0.058229252696037],[-0.0069775879383087,-0.0069871242158115,0.068409867584705],[0.0032715201377869,0.024094738066196,-0.035769183188677]],[[-0.048425581306219,0.066554076969624,0.031917508691549],[-0.046849798411131,-0.0011704469798133,0.044701125472784],[0.013519518077374,-0.023282587528229,0.0098458491265774]],[[0.033971961587667,0.06187778711319,0.021184213459492],[-0.039909802377224,0.046376831829548,0.032721154391766],[-0.087401404976845,-0.047088287770748,0.034111704677343]],[[0.038369733840227,0.068912699818611,0.0060606985352933],[0.011212411336601,-0.033988352864981,-0.07592111825943],[-0.023841362446547,0.035378895699978,-0.11172032356262]],[[-0.00078302231850103,-0.031092377379537,0.033576004207134],[0.075741477310658,0.027740817517042,-0.061633635312319],[-0.031220085918903,-0.06067056953907,-0.0043197381310165]],[[-0.097283855080605,0.009407670237124,0.046926412731409],[-0.042116101831198,0.0014734852593392,-0.037838630378246],[-0.044526226818562,-0.015346748754382,0.0016534369206056]],[[0.020576365292072,0.028833206743002,0.017713095992804],[0.035050060600042,0.021957932040095,-0.084922514855862],[0.067730456590652,0.02281985245645,-0.014711356721818]],[[-0.00057431776076555,-0.005017080809921,0.064760431647301],[0.012428968213499,-0.0090867346152663,-0.011790751479566],[-0.048323042690754,-0.032076217234135,0.092526458203793]],[[-0.011725882068276,0.037493042647839,0.034768600016832],[0.046934090554714,-0.036990597844124,0.006395760923624],[-0.05403334274888,-0.042604979127645,0.010468822903931]],[[0.031034084036946,-0.01943083293736,0.062619082629681],[0.075245469808578,-0.033628240227699,0.0088203493505716],[0.012825642712414,-0.049994602799416,-0.080511376261711]],[[-0.013524443842471,-0.012447902001441,-0.11119735240936],[-0.0062102731317282,0.0057286978699267,0.019075445830822],[-0.019308736547828,-0.071522548794746,0.021725811064243]],[[0.027902344241738,-0.020093748345971,0.037765081971884],[-0.062509424984455,-0.022779062390327,0.012621913105249],[-0.011465650983155,0.031137127429247,0.05775098875165]],[[-0.063604190945625,-0.043110556900501,-0.0027750993613154],[-0.012636058963835,-0.03862700983882,0.050772648304701],[0.031593300402164,0.05647524818778,0.016413843259215]],[[0.01162276044488,0.019675387069583,0.0034143701195717],[-0.0077364589087665,-0.030585834756494,-0.0094756055623293],[-0.008249007165432,0.019690584391356,-0.038021396845579]],[[0.042489182204008,-0.053297780454159,0.0049330610781908],[0.026367858052254,0.001366108073853,-0.014792085625231],[0.019583271816373,0.055400669574738,0.082604974508286]],[[0.090865947306156,0.026542315259576,-0.046692971140146],[-0.021880952641368,-0.029303923249245,0.0039126668125391],[-0.017859933897853,0.05317847058177,-0.0038035591132939]],[[0.046935487538576,-0.08494509011507,0.018970934674144],[-0.047400288283825,-0.024672271683812,0.066519893705845],[0.043879266828299,0.016612431034446,-0.015030576847494]],[[0.05146811529994,0.13758543133736,0.048282381147146],[-0.01933840662241,0.013298392295837,-0.0025719180703163],[-0.052363235503435,-0.068953543901443,-0.026734175160527]],[[-0.0045996503904462,-0.055650930851698,0.045018546283245],[0.088209472596645,-0.0037561792414635,-0.015434862114489],[0.042828254401684,0.12678201496601,-0.016302360221744]],[[-0.097637578845024,0.043233625590801,-0.11042521893978],[-0.069582134485245,-0.043266154825687,0.041060037910938],[-0.031504198908806,0.023421069607139,-0.00077712873462588]],[[-0.061962649226189,0.045742370188236,0.035690315067768],[-0.010372783988714,0.016022779047489,0.0029728952795267],[0.031967576593161,0.0031126050744206,-0.065936714410782]],[[0.024068119004369,0.024561477825046,0.060474678874016],[0.081004813313484,-0.030159177258611,0.022675151005387],[-0.042302839457989,0.013881251215935,-0.043199054896832]],[[-0.029024662449956,-0.06141946092248,-0.049613934010267],[-0.012161664664745,0.026244804263115,0.037172354757786],[0.025829592719674,0.080200396478176,0.023847430944443]],[[-0.081039980053902,0.040928207337856,-0.050649162381887],[-0.0042793285101652,-0.061048079282045,-0.011852600611746],[0.063277751207352,0.00086768373148516,0.064660802483559]],[[-0.035991478711367,0.013119262643158,-0.011025986634195],[0.033087827265263,0.033485095947981,-0.05015491694212],[0.028266225010157,-0.0087769543752074,-0.050907034426928]],[[-0.018677342683077,-0.052782353013754,0.009123744443059],[-0.0038315856363624,-0.018211351707578,-0.062255747616291],[-0.014158632606268,-0.0028389974031597,0.025078626349568]],[[0.04234592244029,-0.014569696038961,-0.008496817201376],[-0.0047361589968204,0.045903455466032,0.061223212629557],[0.0042042233981192,-0.015775801613927,-0.036653362214565]],[[0.066481813788414,-0.028909411281347,-0.0099543975666165],[0.031417716294527,-0.0081094168126583,0.057706192135811],[0.030721008777618,-0.032497011125088,0.088943630456924]],[[-0.013042672537267,0.027073806151748,0.0015866111498326],[-0.042803790420294,-0.087977916002274,-0.00056959094945341],[0.011990875005722,-0.039287310093641,0.042997948825359]],[[-0.012479025870562,0.050420682877302,-0.023012284189463],[-0.052685502916574,0.017747864127159,-0.029836213216186],[0.061571165919304,-0.0042162393219769,0.072955951094627]],[[0.049758698791265,0.019755819812417,0.032793767750263],[-0.045647334307432,-0.030478917062283,-0.020949425175786],[0.026618044823408,-0.093435823917389,0.024940572679043]],[[0.047505501657724,0.056773643940687,-0.023900810629129],[-0.032496251165867,-0.037822287529707,0.058007307350636],[-0.0054997587576509,0.09045933932066,-0.09386170655489]],[[0.0098214307799935,-0.060345090925694,0.035754133015871],[0.014053885824978,0.010191817767918,-0.058412116020918],[0.035111900418997,0.044457573443651,0.031194632872939]],[[-0.0034271071199328,-0.019675293937325,0.023458059877157],[0.042711541056633,0.021054977551103,0.0043839230202138],[0.023577570915222,-0.046121101826429,-0.0021653883159161]],[[-0.016365930438042,0.056597638875246,-0.14266809821129],[-0.028357483446598,0.03781920298934,0.0077267275191844],[-0.037573825567961,-0.11224173754454,-0.012792016379535]],[[0.029114169999957,-0.058266114443541,0.089215241372585],[0.009645382873714,-0.011666486039758,-0.027788195759058],[-0.088624455034733,0.051956851035357,-0.070588067173958]],[[0.07583986967802,0.034913130104542,-0.019931230694056],[-0.040639825165272,-0.052895482629538,0.1152778044343],[-0.048134878277779,0.021472603082657,-0.025240493938327]],[[0.04278764128685,0.0075475946068764,0.011250503361225],[-0.020905131474137,0.02136586792767,0.0022743558511138],[0.10295521467924,-0.033313143998384,-9.2027439677622e-06]],[[-0.06884378939867,0.042289827018976,-0.0097071044147015],[0.080355867743492,0.054854661226273,0.035377152264118],[-0.0032095981296152,0.001411983044818,0.02814014442265]],[[0.03916172683239,-0.053683791309595,0.014039448462427],[0.010131597518921,0.019586062058806,0.0019471104023978],[-0.025448404252529,0.025552209466696,-0.057191263884306]],[[-0.015070845372975,-0.032956704497337,-0.0060813552699983],[0.099007539451122,0.058116804808378,0.02678938023746],[0.044997930526733,-0.021622525528073,0.013434102758765]],[[0.014827060513198,0.005927340593189,0.029015243053436],[-0.020920725539327,0.0077245854772627,0.015843005850911],[0.059406388550997,0.049840606749058,-0.037451680749655]],[[-0.031948208808899,0.017358753830194,-0.067898720502853],[0.022001013159752,-0.033494990319014,-0.011051363311708],[-0.069452151656151,-0.024695621803403,-0.01688289642334]],[[-0.043645475059748,-0.05239774659276,0.032753493636847],[-0.030680468305945,-0.03256531059742,-0.017814172431827],[0.018655367195606,-0.026270469650626,0.010387886315584]],[[0.04067051410675,-0.070128321647644,0.043659508228302],[0.011122207157314,-0.068444095551968,0.039406482130289],[0.021011615172029,0.0060506695881486,-0.030320160090923]],[[0.057950045913458,-0.0087281037122011,-0.0094260964542627],[-0.055160205811262,0.0051068565808237,0.061786457896233],[-0.0077160140499473,-0.055223286151886,-0.022405281662941]],[[-0.047042097896338,-0.013469804078341,0.01477772090584],[0.049347639083862,0.043226357549429,0.0057368064299226],[-0.075606286525726,0.0045141791924834,-0.0018449997296557]],[[0.019701750949025,-0.061054695397615,0.0030261173378676],[-0.01525117456913,-0.03098938241601,-0.019806072115898],[8.342441287823e-05,0.017701648175716,-0.010659324005246]],[[0.013246458023787,-0.063361503183842,-0.082900181412697],[0.058800674974918,0.028185183182359,0.014190408401191],[-0.044213108718395,0.0089916195720434,-0.048527758568525]],[[0.010179770179093,-0.01406332384795,-0.031583070755005],[-0.011393903754652,-0.020233914256096,-0.0013911840505898],[-0.0030680485069752,-0.014316221699119,-0.025448147207499]],[[0.0543143004179,-0.023831531405449,-0.053284008055925],[-0.00062941655050963,0.042206417769194,-0.008463584817946],[-0.030570765957236,0.022469459101558,-0.011476316489279]],[[0.075758084654808,-0.073286414146423,0.021604929119349],[-0.017585385590792,-0.0092539116740227,0.046822350472212],[0.055771376937628,-0.0051335352472961,-0.06177893280983]],[[-0.0038992972113192,-0.0060620554722846,-0.010841816663742],[-0.068613365292549,0.062958061695099,0.010898528620601],[-0.056326292455196,-0.017078151926398,-0.032948598265648]],[[-0.016746215522289,0.013944095000625,0.011030188761652],[0.036511592566967,0.014885920099914,-0.036761347204447],[0.048484414815903,0.017944863066077,0.02475112490356]],[[0.04834920540452,0.0480434037745,0.030710814520717],[0.048726689070463,0.03100829012692,0.027720332145691],[0.11226773262024,-0.019806858152151,-0.025207502767444]],[[0.033893056213856,-0.041496858000755,0.065659575164318],[-0.035582665354013,0.0030161200556904,-0.011546432971954],[-0.05637850612402,-0.014012282714248,-0.015934212133288]],[[0.043336134403944,-0.00049063737969846,0.0029170094057918],[0.044356182217598,-0.041212394833565,0.00579529767856],[0.018793234601617,0.012679817155004,-0.06900692731142]],[[-0.0039282385259867,-0.03434506803751,-0.017175266519189],[-0.0048807114362717,0.042542673647404,-0.021485691890121],[0.0042864456772804,0.038979038596153,0.029996851459146]],[[-0.056692749261856,-0.0077790855430067,0.055277355015278],[-0.011843981221318,0.0034778022672981,-0.032323405146599],[-0.01398794259876,0.053923118859529,-0.08028382062912]],[[0.015731476247311,-0.047043267637491,-0.05219104513526],[0.0036549204960465,0.04965602606535,-0.074733577668667],[0.11020865291357,-0.022837240248919,-0.010674986056983]],[[-0.0038089316803962,-0.069792248308659,0.039564114063978],[0.033351179212332,0.00080688891466707,-0.040877904742956],[-0.012172975577414,-0.051784694194794,-0.002178787952289]],[[-0.13351100683212,0.0020746944937855,0.020197279751301],[-0.028632901608944,-0.0035163862630725,0.087085634469986],[0.056155413389206,-0.010983596555889,0.10758055746555]],[[0.0090750055387616,0.022463215515018,-0.013001747429371],[0.0081250881776214,-0.02049452252686,0.056278198957443],[0.0073239812627435,-0.03763721883297,0.017627622932196]],[[0.018504606559873,0.016899982467294,0.057695504277945],[0.0142877176404,0.019278571009636,0.025639982894063],[0.001520273508504,-0.029492536559701,0.018546283245087]],[[-0.0074497982859612,0.03832359239459,-0.084914341568947],[0.039539493620396,-0.029948452487588,0.043895982205868],[0.021352365612984,0.034186583012342,-0.049090385437012]],[[0.026942484080791,0.025783171877265,-0.064880713820457],[-0.0099305836483836,-0.030560476705432,0.058627258986235],[0.053204152733088,0.068537473678589,-0.011934479698539]],[[0.04403830319643,-0.041255529969931,-0.034019820392132],[0.0010041039204225,0.013132885098457,-0.027267163619399],[0.089935846626759,0.027537712827325,0.019005777314305]],[[-0.012301190756261,-0.050514448434114,0.040236618369818],[0.040436819195747,-0.029778363183141,-0.058333732187748],[0.044048547744751,0.02602488361299,-0.021844629198313]],[[0.056225907057524,-0.0094074793159962,0.00096220761770383],[-0.037131786346436,-0.075198709964752,0.023096803575754],[-0.0079502016305923,-0.0035246075130999,0.021073918789625]],[[0.051177721470594,0.043497789651155,-0.060128662735224],[-0.024768250063062,0.003136036451906,-0.020298805087805],[0.022129798308015,0.033274441957474,0.0038517820648849]],[[0.0060270419344306,-0.03043220564723,0.014391515403986],[0.025886109098792,-0.056792549788952,-0.0051365620456636],[0.062280341982841,-0.013938762247562,0.043182484805584]],[[-0.0530686378479,-0.0060858465731144,0.018572971224785],[0.04115928336978,0.020594010129571,0.038061480969191],[0.030877381563187,0.037931200116873,-0.054992061108351]],[[-0.0087735643610358,0.034940205514431,-0.032598681747913],[-0.04252216219902,0.061619475483894,0.010867414996028],[-0.013153342530131,0.010351108387113,-0.050777286291122]],[[0.0027963870670646,0.043066296726465,-0.012739739380777],[0.051596034318209,0.078211240470409,0.020084926858544],[-0.026016836985946,-0.03765207529068,-0.070147529244423]],[[-0.018106220290065,-0.072928592562675,0.075688160955906],[0.021279402077198,0.01535951346159,-0.025549486279488],[-0.07887452095747,0.054293878376484,0.040412355214357]],[[0.020805738866329,0.022169040516019,0.0031492118723691],[0.032263442873955,0.0002873983758036,0.051105622202158],[-0.013915438205004,-0.023656234145164,-0.0083534345030785]],[[-0.0013486108509824,-0.10592892020941,-0.012729017063975],[-0.050754562020302,0.051872614771128,-0.021448029205203],[0.098660580813885,0.028976213186979,0.017855161800981]],[[0.0074753616936505,0.025912398472428,0.010527661070228],[-0.033687308430672,-0.036881342530251,0.035108048468828],[-0.016050027683377,0.065765388309956,-0.06071312725544]],[[0.015617529861629,-0.075719952583313,-0.038746669888496],[-0.085449025034904,0.036713600158691,0.0024364164564759],[-0.0048812297172844,-0.029922686517239,0.012491648085415]],[[-0.02595110796392,0.001457066857256,0.04987333714962],[0.11319553107023,-0.031249547377229,0.010790704749525],[0.036469846963882,-0.07505851238966,-0.04675555601716]],[[0.042669709771872,0.0008560522692278,-0.042723201215267],[0.051072668284178,-0.014517073519528,-0.025674354285002],[-0.0086040934547782,0.037219304591417,-0.063341364264488]],[[-0.077965594828129,-0.0026908256113529,-0.040898572653532],[-0.081040240824223,-0.030202452093363,-0.079201072454453],[-0.024701450020075,-0.024505030363798,-0.020648257806897]],[[0.085228733718395,0.033613860607147,-0.06008218601346],[0.018578223884106,0.0525460280478,0.020085122436285],[0.036757256835699,0.12551133334637,-0.0083686402067542]],[[0.0015537904109806,0.038803394883871,-0.093132607638836],[-0.0083779841661453,0.0015353100607172,-0.0032837311737239],[0.013124187476933,0.069583177566528,0.0016739012207836]],[[0.010199524462223,-0.025306656956673,0.0285839214921],[0.023688225075603,-0.010395760647953,-0.0077412938699126],[-0.044991694390774,-0.024296587333083,0.026846075430512]],[[-0.072120077908039,0.039252139627934,-0.029186753556132],[-0.017460893839598,-0.038899965584278,-0.029246056452394],[-0.06282452493906,-0.080702424049377,-0.079307742416859]],[[0.028283024206758,-0.05408713594079,-0.031794652342796],[0.016137743368745,0.038746293634176,-0.060055483132601],[-0.058534637093544,0.014882645569742,0.047905404120684]],[[0.0009585966472514,-0.017288852483034,0.0013440010370687],[-0.0083217192441225,-0.01297437492758,0.010682153515518],[-0.010449143126607,-0.037538848817348,0.041825175285339]],[[0.036334291100502,-0.0095656728371978,-0.012539279647171],[-0.026992494240403,0.05415478348732,0.05193355306983],[-0.03412701562047,-0.029329063370824,0.031446930021048]],[[0.073906749486923,-0.093651935458183,0.0097621334716678],[0.026049856096506,-0.084682703018188,0.046656172722578],[0.069059535861015,0.04012468084693,0.051608223468065]],[[-0.022148985415697,0.001290988526307,-0.046957708895206],[-0.039444282650948,0.005299277137965,0.0098599642515182],[-0.015428851358593,0.010652526281774,-0.064455576241016]],[[0.0017435667105019,-0.029059452936053,0.017965229228139],[-0.0045703914947808,0.021297937259078,0.016708629205823],[-0.062456991523504,0.045058529824018,-0.016569271683693]],[[0.010063920170069,0.010901048779488,-0.0024115820415318],[-0.017511187121272,0.053198300302029,-0.00069889018777758],[-0.018607137724757,-0.007462062407285,0.02554901689291]],[[0.041040297597647,0.034466236829758,-0.058510791510344],[0.045208476483822,-0.017304630950093,0.043245978653431],[-0.025447262451053,-0.054802503436804,-0.060061063617468]],[[-0.094849430024624,0.045909695327282,-0.030417162925005],[-0.077022440731525,0.054982587695122,0.015271977521479],[-0.0002526284661144,-0.015004159882665,0.02038592658937]],[[0.092590026557446,-0.010383098386228,-0.023305788636208],[-0.028815060853958,0.044001314789057,-0.092018991708755],[0.005743894726038,0.0013172724284232,-0.016902003437281]],[[0.072902388870716,0.031264219433069,-0.012858444824815],[0.035359036177397,0.059973239898682,-0.059950936585665],[0.073686398565769,-0.021474497392774,0.039175733923912]],[[0.0099815251305699,-0.0018488942878321,0.03963490948081],[-0.0011673308908939,-0.018929619342089,-0.0028541588690132],[0.005691175814718,-0.10132157802582,0.0054811518639326]],[[0.055833145976067,-0.025358963757753,0.043332871049643],[-0.015430707484484,-0.013063529506326,0.013858613558114],[0.016759498044848,-0.062728106975555,-0.027546616271138]],[[0.0021040407009423,-0.01417700573802,0.0054054949432611],[-0.085657328367233,0.03222981095314,0.0090220626443624],[-0.0018862066790462,0.018588449805975,0.049728527665138]]],[[[0.069540113210678,-0.042398732155561,-0.037401124835014],[-0.12716697156429,0.041280396282673,0.032163523137569],[-0.084965154528618,0.096684873104095,-0.12751999497414]],[[0.049308765679598,0.18783049285412,-0.11417511105537],[-0.126220241189,0.031170804053545,-0.10670600831509],[-0.11971233785152,0.093375451862812,-0.12195946276188]],[[-0.091890200972557,0.14492954313755,0.065649643540382],[-0.065677233040333,-0.036190390586853,0.1272851973772],[0.10443391650915,-0.12288016080856,0.048313025385141]],[[0.045052729547024,-0.16971398890018,0.069870799779892],[-0.076812967658043,0.045116316527128,-0.016750354319811],[0.024455722421408,-0.047273725271225,-0.021822767332196]],[[-0.018920386210084,0.00055863993475214,-0.14093750715256],[0.011720351874828,0.027736533433199,0.0035248347558081],[-0.042500387877226,-0.024791684001684,0.013591136783361]],[[0.10597661882639,0.06535217165947,-0.023111404851079],[0.14631301164627,-0.024560309946537,-0.07328449934721],[-0.049257125705481,-0.10627222061157,-0.15016171336174]],[[-0.075374275445938,-0.0092696370556951,0.017720453441143],[-0.039022970944643,0.06100907176733,0.052075881510973],[0.095113396644592,0.043046168982983,-0.053539574146271]],[[0.024863827973604,0.14930705726147,0.026646437123418],[0.098097585141659,-0.020131338387728,0.063733614981174],[0.018060125410557,0.066504813730717,0.0084222005680203]],[[0.13676105439663,0.12661902606487,-0.011383716017008],[-0.11443087458611,0.016622461378574,-0.033862102776766],[0.10346156358719,0.069617196917534,0.030004002153873]],[[-0.008642696775496,-0.011145871132612,-0.014302601106465],[-0.0063484697602689,0.0073373871855438,-0.037939216941595],[-0.01088032592088,-0.0017399485222995,-0.054935462772846]],[[-0.054418817162514,0.11986887454987,0.073193244636059],[0.054987099021673,0.042180918157101,0.10141719132662],[-0.073032759130001,0.065578483045101,-0.042037788778543]],[[-0.0026651043444872,0.10553505271673,-0.096215806901455],[-0.0068720299750566,0.12432710826397,0.021228374913335],[0.090072639286518,-0.16197161376476,0.048778284341097]],[[0.024515816941857,-0.18120862543583,-0.089662991464138],[-0.0065001863986254,0.014494316652417,-0.026868753135204],[0.0012955918209627,-0.11273651570082,0.056443087756634]],[[-0.019928364083171,-0.018445225432515,0.13815312087536],[-0.080343097448349,-0.075653590261936,-0.042070414870977],[0.049146559089422,0.050127845257521,-0.028790609911084]],[[-0.013819740153849,-0.037329901009798,-0.081360690295696],[0.054588869214058,-0.018987098708749,-0.072458356618881],[-0.051300838589668,0.032859090715647,-0.015529020689428]],[[0.092036455869675,-0.024672724306583,-0.0057311351411045],[-0.067616030573845,0.019929137080908,0.00075700029265136],[0.0053992778994143,-0.013239242136478,0.074285916984081]],[[0.024169441312551,-0.046938423067331,0.032577332109213],[0.12558896839619,-0.10369198769331,-0.053821589797735],[-0.068270139396191,0.10461882501841,0.027535658329725]],[[0.017101941630244,-0.018140127882361,-0.014048954471946],[0.04273784533143,0.019175190478563,-0.10056456178427],[0.090641461312771,-0.0080219460651278,0.027764176949859]],[[0.065167136490345,-0.025908367708325,-0.045193698257208],[-0.05568914860487,-0.10599203407764,0.062056325376034],[-0.032757330685854,0.053276807069778,-0.33419761061668]],[[0.0067038112320006,-0.053708989173174,-0.012632461264729],[-0.012422796338797,-0.083842121064663,-0.0059415749274194],[-0.00071315281093121,0.0043635154142976,-0.078898809850216]],[[-0.1405450552702,0.04738387465477,0.018423603847623],[0.21768766641617,-0.091027863323689,-0.0072355414740741],[0.017630212008953,-0.086138933897018,-0.027268441393971]],[[0.070070751011372,0.013146950863302,-0.20663803815842],[0.066754043102264,-0.15704883635044,-0.094021916389465],[-0.002669986570254,-0.091296970844269,-0.083727598190308]],[[0.10603682696819,0.038257423788309,0.065941631793976],[0.0095657492056489,-0.031211219727993,0.19327671825886],[-0.12735618650913,0.11320750415325,0.033091630786657]],[[-0.092429839074612,0.024223361164331,0.0330542139709],[-0.024096217006445,0.073296748101711,0.075833946466446],[-0.099874816834927,0.0087250052019954,0.07846787571907]],[[-0.068233482539654,-0.057054359465837,0.063496768474579],[0.1605050265789,0.053054247051477,-0.0079126926138997],[0.097137607634068,0.074730306863785,-0.089682929217815]],[[-0.070569172501564,-0.0066464259289205,-0.0056018307805061],[0.0094066942110658,0.054605949670076,-0.05961837247014],[-0.072841994464397,0.074485391378403,-0.046132139861584]],[[0.0073785353451967,-0.039611861109734,-0.0062266448512673],[0.10916619002819,0.099394604563713,0.048255238682032],[0.023198338225484,0.049270417541265,0.020392699167132]],[[0.071557641029358,-0.10722897946835,-0.065465301275253],[0.15404681861401,0.0051026907749474,-0.15955533087254],[-0.014465028420091,0.036127474159002,-0.039994962513447]],[[-0.019282124936581,-0.01792231015861,0.050145145505667],[0.03444055467844,-0.044553216546774,-0.030799798667431],[-0.0061624054796994,-0.17948970198631,-0.062958478927612]],[[0.069161221385002,0.051172383129597,0.12916657328606],[0.1102400124073,0.0064739403314888,-0.015787918120623],[0.071536593139172,-0.033282205462456,0.11691129207611]],[[0.037456277757883,-0.053469821810722,-0.063435971736908],[-0.047317385673523,-0.0013333478709683,0.12643425166607],[0.0063627287745476,-0.060109883546829,0.092921391129494]],[[0.034548010677099,-0.014747242443264,0.12123058736324],[0.026814270764589,0.10153508931398,-0.027621332556009],[-0.0087248478084803,0.071808986365795,-0.045098718255758]],[[-0.034021276980639,0.031361751258373,-0.12255535274744],[0.15754702687263,0.032238084822893,-0.031012216582894],[0.033997301012278,0.035692658275366,-0.14475704729557]],[[-0.0053600147366524,0.043929234147072,-0.038042362779379],[-0.0582868270576,0.042449183762074,-0.061286959797144],[0.059650283306837,0.072105519473553,0.070604503154755]],[[-0.011271792463958,0.06990385055542,0.085749268531799],[-0.093581348657608,0.15455071628094,-0.032347489148378],[-0.097905725240707,-0.15563942492008,0.013763359747827]],[[0.026082124561071,0.032002627849579,-0.06084781140089],[-0.0092260269448161,-0.050876833498478,0.10611885040998],[0.040050771087408,-0.059901881963015,0.02706803008914]],[[-0.0081239072605968,-0.0043307170271873,-0.024640129879117],[0.084487333893776,0.086943827569485,0.064681246876717],[-0.10594303160906,-0.038300301879644,-0.03849471360445]],[[-0.045971501618624,0.039271451532841,-0.00031753891380504],[0.076851017773151,-0.048217553645372,-0.08213509619236],[0.041490707546473,-0.10134753584862,0.27749028801918]],[[0.079155303537846,-0.076014593243599,0.04898614436388],[-0.022271538153291,0.0099369920790195,-0.00041000393684953],[0.024216346442699,0.1527297347784,-0.013007854111493]],[[0.031681928783655,0.10839693248272,-0.013689487241209],[-0.032205611467361,-0.12725654244423,0.060226563364267],[0.076462291181087,0.034183584153652,0.05379405990243]],[[0.063502863049507,-0.0009139651665464,-0.062053970992565],[0.10108010470867,0.085289269685745,0.015316559001803],[0.0027045647148043,-0.0061808209866285,0.014057490043342]],[[-0.04082802310586,-0.043112326413393,0.044064156711102],[-0.14490114152431,-0.0063720312900841,-0.071052558720112],[-0.081629395484924,-0.0034010903909802,-0.010296267457306]],[[-0.047911815345287,-0.12464345246553,0.0878791436553],[0.013889614492655,0.073849752545357,-0.094552710652351],[0.01320253033191,-0.12370322644711,0.064140550792217]],[[0.076867006719112,-0.010544929653406,-0.03856685757637],[0.12864604592323,-0.14655548334122,0.034089330583811],[0.11487564444542,0.14174938201904,-0.074756905436516]],[[0.066950231790543,0.0048055313527584,0.031388565897942],[0.11679840087891,0.13504363596439,-0.026970056816936],[-0.11895577609539,0.025070304051042,0.075232729315758]],[[0.22758102416992,-0.13783524930477,0.044457700103521],[-0.08003856241703,0.18857568502426,-0.076234817504883],[0.031239142641425,0.1295600682497,0.060582712292671]],[[0.061773851513863,-0.06461101770401,-0.042623247951269],[-0.00185837817844,0.10170961916447,0.0078097847290337],[0.11110212653875,-0.053909689188004,0.026449551805854]],[[0.066148795187473,0.034103561192751,-0.062088709324598],[0.095900163054466,0.0093326177448034,-0.10265575349331],[0.065634503960609,0.0083551146090031,-0.051562014967203]],[[0.055761873722076,0.031999509781599,0.06644444167614],[0.046880036592484,-0.095269776880741,0.013698382303119],[-0.01734614931047,-0.040061242878437,-0.020879372954369]],[[-0.031072713434696,0.0046809744089842,-0.066070534288883],[0.11204258352518,-0.032137710601091,-0.070696376264095],[0.095085114240646,-0.090490415692329,0.027420898899436]],[[0.019085610285401,-0.027778016403317,-0.051385048776865],[0.038944013416767,-0.068322144448757,0.02199456654489],[0.030742848291993,-0.0097998715937138,0.070657722651958]],[[-0.15497310459614,-0.034661773592234,0.047516018152237],[-0.05917850881815,-0.12864911556244,-0.064188346266747],[-0.16099229454994,-0.089550241827965,-0.1535404920578]],[[-0.03117354400456,0.072639629244804,0.043708328157663],[0.067148059606552,0.068629153072834,0.039893165230751],[0.11242660135031,-0.015761993825436,-0.044388387352228]],[[-0.060075029730797,-0.042966820299625,0.12985220551491],[0.045741677284241,0.0036281158681959,0.082629539072514],[-0.079297378659248,0.1181341484189,0.25146862864494]],[[-0.051863517612219,0.046622071415186,-0.011577439494431],[0.19085717201233,-0.018172049894929,0.15408271551132],[-0.042572721838951,-0.050438288599253,0.084400162100792]],[[0.046719126403332,0.022971116006374,0.023652961477637],[0.089715369045734,-0.049562584608793,0.058637350797653],[0.062628738582134,-0.22297820448875,-0.08910133689642]],[[0.00092377659166232,0.038374483585358,-0.11195217072964],[-0.010692112147808,-0.044474747031927,-0.093694724142551],[-0.058465301990509,-0.016334190964699,-0.012812309898436]],[[0.0052297166548669,0.058979514986277,0.0023422981612384],[0.0344921015203,-0.013583146966994,-0.044017542153597],[0.21421647071838,-0.018842993304133,-0.093780092895031]],[[0.024157024919987,0.094965063035488,-0.17560149729252],[-0.066683731973171,0.078853040933609,0.035360775887966],[0.084346890449524,-0.018635842949152,0.010316669940948]],[[0.1062256321311,-0.050760116428137,0.0024343479890376],[0.0748151242733,-0.033589582890272,0.050601132214069],[-0.082377322018147,0.10383121669292,-0.049227844923735]],[[0.04306210950017,-0.042215060442686,-0.0040568588301539],[-0.066925078630447,-0.0041516204364598,0.078368119895458],[-0.018739057704806,-0.13416823744774,0.029854882508516]],[[-0.059547007083893,-0.067734129726887,0.025275327265263],[-0.010651499032974,0.10390690714121,-0.069120571017265],[-0.01366666611284,-0.085520669817924,-0.045368127524853]],[[0.15051978826523,0.10069915652275,-0.025707542896271],[-0.0061964457854629,0.10464090108871,0.12692548334599],[-0.015229804441333,-0.034808702766895,0.039601299911737]],[[0.016230007633567,0.024843562394381,0.074978068470955],[-0.014650099910796,-0.0093832276761532,-0.054158821702003],[-0.06639152765274,-0.08878268301487,0.00027753436006606]],[[0.18668080866337,0.017885452136397,-0.052309341728687],[-0.039038635790348,0.084619410336018,0.11302997916937],[-0.039162557572126,-0.078872494399548,-0.072613894939423]],[[-0.058669310063124,0.012142310850322,0.084291778504848],[0.094092346727848,-0.047059170901775,0.069157391786575],[0.094267450273037,0.042624447494745,-0.023136992007494]],[[-0.087782144546509,0.17078596353531,-0.014230785891414],[-0.01271578297019,-0.088597804307938,-0.089005261659622],[0.00041037090704776,-0.0018294418696314,-0.19395899772644]],[[0.092490956187248,-0.0071277101524174,-0.0034461615141481],[0.12964197993279,0.053034823387861,-0.067429751157761],[-0.014099571853876,0.17146913707256,-0.0078929746523499]],[[0.071067005395889,-0.0027553404215723,0.031642906367779],[-0.090628050267696,-0.038562208414078,0.0045310147106647],[0.032696198672056,0.039427943527699,-0.031844180077314]],[[0.032121997326612,-0.020726135000587,0.037579476833344],[-0.10483849048615,-0.061620734632015,0.096134014427662],[-0.17472839355469,0.11914925277233,-0.099094666540623]],[[-0.011346165090799,-0.078232765197754,0.11282663792372],[0.0072872857563198,0.08584202080965,-0.10290607064962],[0.053120393306017,0.019231211394072,-0.015485873445868]],[[0.085155412554741,-0.085115917026997,0.082442104816437],[0.0041139218956232,-0.0041919960640371,0.020054943859577],[0.072689361870289,-0.041338421404362,-0.024084025993943]],[[0.18316951394081,0.084268547594547,-0.079530201852322],[-0.035232163965702,0.064215295016766,-0.03835005313158],[-0.02094741165638,-0.067594803869724,0.039328176528215]],[[-0.045321904122829,0.065728269517422,-0.039508491754532],[0.028935309499502,0.034931533038616,-0.032844197005033],[-0.13006108999252,-0.15657091140747,0.067690573632717]],[[0.019477732479572,0.018186762928963,0.064359195530415],[-0.060911498963833,-0.0071779093705118,0.051739852875471],[-0.050913609564304,0.075392559170723,-0.0042405962012708]],[[-0.21963718533516,0.0088835889473557,0.078873164951801],[0.13102515041828,0.013765173964202,-0.077850878238678],[-0.095047757029533,0.021022016182542,0.068449385464191]],[[0.065753594040871,-0.15719214081764,0.019733609631658],[0.014929589815438,-0.099048539996147,-0.0015623604413122],[0.063273094594479,-0.034617234021425,-0.098922044038773]],[[-0.087612293660641,-0.01928592287004,0.13460929691792],[-0.014129167422652,-0.042390491813421,0.06984630972147],[0.044751383364201,-0.087522573769093,0.042664654552937]],[[0.017662487924099,-0.05657222121954,-0.13835544884205],[0.1086044460535,0.01329258363694,0.0095281982794404],[0.026415657252073,-0.079140953719616,-0.047809269279242]],[[-0.085269495844841,-0.011861697770655,0.020893851295114],[0.12226525694132,-0.047894787043333,-0.090851381421089],[0.026459580287337,0.02865756675601,0.043090857565403]],[[0.057381961494684,0.0010566890705377,0.15785297751427],[-0.051470812410116,-0.098379626870155,0.048445198684931],[0.080427594482899,0.022672342136502,0.0017968997126445]],[[0.091316819190979,0.099265031516552,0.044993434101343],[-0.021731803193688,0.037675883620977,0.18870867788792],[0.046696279197931,-0.01414451841265,0.021777413785458]],[[0.13157910108566,0.022468227893114,0.04118075966835],[0.1531013995409,-0.11275658756495,0.20407319068909],[-0.016050543636084,0.088550463318825,-0.081143200397491]],[[0.010722002014518,-0.0090412106364965,0.044406712055206],[0.068700596690178,0.1579155921936,0.095118790864944],[0.01991268992424,0.084202565252781,0.10398225486279]],[[0.0026314028073102,-0.14941205084324,-0.040401220321655],[-0.04403905570507,0.067096523940563,-0.069212727248669],[0.16164845228195,-0.18539847433567,0.18802307546139]],[[0.043354146182537,-0.0070274821482599,0.058555763214827],[0.00076632405398414,-0.011027169413865,0.025313263759017],[-0.11596318334341,-0.027838215231895,-0.062415983527899]],[[-0.082504875957966,0.018973093479872,-0.10747332125902],[0.039125170558691,-0.021367045119405,-0.096763916313648],[0.13332936167717,0.13008616864681,-0.19839629530907]],[[0.0062210424803197,0.11921516805887,0.0077651990577579],[0.037626814097166,-0.036837231367826,-0.032067708671093],[0.081366308033466,-0.10826475173235,-0.070763036608696]],[[0.065208300948143,-0.10742867738008,-0.11021207273006],[0.083605408668518,0.02323424257338,0.0025330642238259],[0.10293961316347,-0.043999455869198,0.019772270694375]],[[0.050583880394697,0.16616405546665,-0.1078297495842],[-0.082360453903675,-0.10449966788292,-0.033387646079063],[0.049784533679485,-0.040922980755568,-0.089554376900196]],[[-0.0061014583334327,-0.013591608032584,-0.11357622593641],[-0.018478460609913,0.16494020819664,-0.060542143881321],[-0.053998619318008,0.025189006701112,0.063609205186367]],[[0.022806543856859,-0.0036815239582211,-0.003167214570567],[-0.18886886537075,-0.094459027051926,-0.025377221405506],[0.018763601779938,0.12218487262726,-0.094010964035988]],[[0.062943935394287,0.016147635877132,-0.023174457252026],[0.013473127968609,0.0063645648770034,0.06366765499115],[0.1765343695879,-0.058696016669273,-0.024216087535024]],[[0.029896738007665,-0.046682465821505,0.047300349920988],[0.028935555368662,-0.077309332787991,0.082717634737492],[-0.0092746270820498,-0.022878602147102,0.022650089114904]],[[-0.019974024966359,0.08530093729496,-0.043747901916504],[-0.058132071048021,-0.1353502869606,0.072562396526337],[-0.052493363618851,0.11245610564947,-0.12296427041292]],[[-0.049193058162928,-0.00871058460325,-0.042222805321217],[0.0086982687935233,-0.097791500389576,0.069438822567463],[0.092556804418564,0.11410439014435,-0.024119060486555]],[[-0.037303902208805,-0.11111400276423,-0.037132907658815],[-0.013581149280071,0.09343933314085,0.092361688613892],[-0.065309882164001,-0.027675220742822,-0.042549081146717]],[[-0.026481637731194,0.14484871923923,-0.032909773290157],[0.032259672880173,0.15162807703018,0.0545957647264],[0.056901827454567,0.060140997171402,-0.029165675863624]],[[0.085078284144402,0.05825263261795,0.059265207499266],[-0.17800863087177,0.07984758913517,0.10803765803576],[0.26982086896896,0.0080496035516262,0.024287352338433]],[[-0.074000336229801,0.027387311682105,0.0082106702029705],[0.02211632207036,-0.020860904827714,-0.013552647083998],[0.025748763233423,-0.11642441153526,0.012497696094215]],[[0.098957419395447,0.046166248619556,-0.083837911486626],[0.074659235775471,0.13785715401173,-0.12887474894524],[0.07097601890564,-0.010663474909961,0.023657411336899]],[[-0.049757950007915,0.064101561903954,-0.0091621289029717],[-0.096238531172276,0.063732944428921,0.057601690292358],[0.060085147619247,-0.04534849151969,-0.065449722111225]],[[-0.03725453093648,0.055984936654568,0.030681122094393],[0.026622861623764,0.011901854537427,0.041596371680498],[0.10410298407078,-0.10503944009542,0.01799338683486]],[[-0.036767229437828,-0.11281299591064,0.050220649689436],[0.023196659982204,-0.059680625796318,0.044758465141058],[0.011718710884452,-0.046949412673712,-0.072486251592636]],[[-0.020904308184981,0.13079881668091,0.1127747297287],[-0.117017544806,-0.049472209066153,0.013540646061301],[-0.23084689676762,-0.082831434905529,-0.067607276141644]],[[0.087571732699871,0.09859935939312,-0.063863702118397],[0.0025131371803582,-0.060157749801874,0.0071176318451762],[-0.039577431976795,0.062689691781998,-0.041148379445076]],[[0.074991174042225,-0.053277857601643,-0.040312122553587],[0.011633570306003,0.10150589048862,-0.043096106499434],[-0.027521183714271,-0.051577132195234,-0.13224470615387]],[[-0.08578035235405,-0.04124354198575,-0.035496313124895],[-0.10653612017632,-0.0085746608674526,-0.08250105381012],[-0.023866284638643,0.144387409091,-0.014621958136559]],[[0.0038626729510725,-0.020165396854281,-0.048010118305683],[0.023683847859502,-0.015010601840913,0.19626741111279],[-0.027309402823448,0.032552756369114,-0.14537696540356]],[[0.023760765790939,0.030765570700169,-0.061683841049671],[-0.06289941817522,0.059259667992592,0.036346107721329],[0.0052330829203129,0.06282564252615,-0.022688126191497]],[[0.029364729300141,-0.020221361890435,0.052620258182287],[0.039192236959934,0.1642374843359,-0.043307065963745],[-0.057852879166603,-0.0058329645544291,-0.017379453405738]],[[0.092268578708172,-0.061425149440765,-0.022967215627432],[0.092739030718803,-0.062294699251652,0.068303219974041],[0.074140183627605,0.062407419085503,-0.099648177623749]],[[-0.049980994313955,0.17765484750271,0.17821592092514],[-0.023315943777561,-0.16140355169773,0.16487097740173],[-0.056016448885202,0.10630950331688,0.04892960190773]],[[-0.0020745978690684,-0.020155258476734,0.0058146771043539],[-0.079405546188354,0.09628688544035,-0.025503462180495],[-0.033550746738911,-0.060577493160963,0.013527319766581]],[[-0.036437656730413,0.008713292889297,0.065577320754528],[-0.11094776540995,-0.058542486280203,0.057818572968245],[0.029359711334109,-0.039374656975269,0.09717869758606]],[[-0.072292625904083,0.014487673528492,-0.067081071436405],[0.099334731698036,-0.012027165852487,-0.043376427143812],[-0.0030284218955785,-0.053084954619408,0.028694001957774]],[[0.031702749431133,0.059735674411058,0.05817786231637],[0.062840782105923,-0.013984865508974,-0.043305426836014],[-0.012981628067791,0.036358263343573,0.0076949940994382]],[[0.052827045321465,0.055902041494846,0.058835487812757],[-0.02107129432261,0.028281601145864,0.13103283941746],[-0.064520291984081,-0.09307637065649,-0.005900755058974]],[[-0.00014527021266986,-0.10097125172615,0.054552350193262],[-0.10233234614134,0.030165065079927,0.14333179593086],[0.11403354257345,0.01954709738493,0.091225132346153]],[[-0.047014258801937,0.086732394993305,0.08986634016037],[-0.11068736761808,-0.022118888795376,0.019262036308646],[-0.12371974438429,0.042267382144928,-0.057566910982132]],[[0.023344483226538,0.060942221432924,-0.014901397749782],[-0.010220501571894,-0.10037245601416,-0.15504248440266],[-0.049321658909321,-0.061550863087177,0.014949964359403]],[[-0.10511948168278,-0.076985001564026,0.051987264305353],[0.029995320364833,0.12676644325256,0.032050091773272],[-0.028478832915425,-0.12199231237173,0.043876972049475]],[[0.019168738275766,0.0033066812902689,0.053560953587294],[0.060246113687754,0.14041928946972,-0.043155714869499],[-0.077656522393227,-0.055559113621712,0.030521061271429]],[[0.050455991178751,-0.0085323806852102,0.016180656850338],[-0.020178861916065,0.053293220698833,-0.086674839258194],[-0.0021169655956328,-0.043100919574499,-0.0048908479511738]],[[0.08943223208189,-0.0012796017108485,0.072541795670986],[0.075943470001221,-0.0055315271019936,0.053427871316671],[-0.081587314605713,0.10686665028334,0.015396786853671]],[[-0.0038178013637662,-0.036540858447552,0.14271420240402],[-0.1285215318203,-0.12407467514277,0.061161551624537],[0.089538834989071,-0.0019737931434065,0.02402750402689]],[[0.076257012784481,0.059222240000963,-0.051975354552269],[0.0899942740798,0.051066059619188,-0.13266333937645],[-0.011374820955098,-0.0577089227736,-0.073753118515015]],[[-0.033795963972807,0.022532721981406,0.063770741224289],[-0.0094694644212723,0.0513323135674,-0.028121588751674],[0.0091972900554538,0.010787042789161,-0.022907927632332]]],[[[0.071214474737644,-0.033876698464155,-0.0018880848074332],[-0.0024374464992434,0.0012867304030806,-0.026323650032282],[0.03657903522253,-0.048864375799894,-0.046497959643602]],[[0.01824845187366,0.05730128288269,-0.043501615524292],[-0.046301260590553,-0.028390759602189,0.013738908804953],[0.014160996302962,-0.0081217857077718,0.089265696704388]],[[0.030363092198968,-0.045247085392475,-0.033699616789818],[0.04496781155467,-0.064711302518845,-0.074893765151501],[0.0058538056910038,-0.030527366325259,-0.043977875262499]],[[-0.008835450746119,-0.049482636153698,0.015142451971769],[0.11099319159985,0.030873415991664,-0.09246651083231],[-0.017029382288456,0.08929032087326,-0.011697590351105]],[[0.0042221443727612,-0.028967909514904,0.045728459954262],[0.03864699229598,0.074691720306873,-0.14891098439693],[-0.050681602209806,-0.085479080677032,-0.076337359845638]],[[0.002358446130529,0.0030894142109901,0.0076655964367092],[-0.0071836006827652,0.10382305085659,0.039032723754644],[0.028245957568288,-0.060279347002506,0.068505920469761]],[[-0.0053958636708558,-0.050508804619312,-0.070177733898163],[-0.011583245359361,0.031896445900202,-0.10406906157732],[0.14809677004814,0.1151096150279,0.0024362492840737]],[[0.058742366731167,0.0006667654379271,0.078015834093094],[-0.021037876605988,-0.0053673689253628,-0.023431915789843],[-0.073036439716816,-0.093897521495819,-0.072239369153976]],[[-0.011614453978837,0.078118592500687,0.073993593454361],[-0.065879695117474,-0.020407715812325,0.061958488076925],[-0.077956646680832,-0.023331198841333,-0.10022220015526]],[[0.0068025668151677,-0.030647419393063,0.031831908971071],[0.053889840841293,0.0082137323915958,0.018247161060572],[0.064507223665714,0.04072368517518,0.021212797611952]],[[0.011199507862329,0.0055910493247211,0.0040933736599982],[0.04473639279604,0.0052764127030969,-0.077728815376759],[0.034397352486849,0.014708631671965,0.052749007940292]],[[-0.021710937842727,0.0069097117520869,0.035595327615738],[-0.056603811681271,-0.0083734486252069,-0.021807227283716],[0.077082701027393,0.0023234901018441,-0.014636127278209]],[[-0.049816977232695,-0.08516688644886,0.097530692815781],[-0.095311187207699,0.044573154300451,-0.043325677514076],[-0.07094956189394,0.12418955564499,0.070304326713085]],[[0.11415863782167,0.021962080150843,0.029276799410582],[-0.046786267310381,0.0044786301441491,-0.014975153841078],[-0.027302604168653,-0.096852488815784,-0.08168687671423]],[[0.0081972265616059,0.11004135012627,-0.0023094501812011],[-0.016987014561892,0.0091792941093445,0.12492645531893],[-0.017114955931902,0.017285903915763,-0.074951112270355]],[[-0.010070446878672,-0.0056330324150622,-0.008097942918539],[-0.016073662787676,-0.048318292945623,-0.0089821005240083],[-0.024909442290664,-0.045859221369028,-0.10951597988605]],[[-0.092863760888577,0.054002810269594,0.12165034562349],[0.057728953659534,0.04740422591567,0.1432046443224],[0.0081745255738497,-0.086774505674839,-0.076109327375889]],[[-0.014466172084212,0.23324659466743,0.04232444241643],[-0.2154900431633,0.12733970582485,0.035793300718069],[-0.023888705298305,-0.013625429943204,0.027754481881857]],[[-0.049097210168839,0.0014350637793541,0.023413496091962],[-0.021649057045579,-0.054778210818768,0.12194617837667],[0.0815799087286,-0.018508497625589,0.0040650009177625]],[[0.025084793567657,-0.025908527895808,-0.08683954924345],[0.0854257568717,-0.038981601595879,0.010536466725171],[0.031762100756168,0.12039613723755,-0.048815172165632]],[[-0.02581749483943,0.0079050250351429,-0.10373090952635],[0.048604566603899,-0.05465280637145,-0.0035437382757664],[0.09655374288559,0.020814480260015,-0.059238158166409]],[[-0.048606891185045,-0.027677392587066,0.1160651743412],[0.12369804829359,0.020816281437874,0.075676880776882],[0.041050605475903,-0.011984400451183,-0.075205974280834]],[[-0.0017671177629381,-0.055355776101351,-0.0021950879599899],[0.0054416116327047,0.018783159554005,0.0057182111777365],[0.04112645611167,0.0045497603714466,-0.0064176940359175]],[[-0.034845542162657,0.016420520842075,0.00277193589136],[-0.034731969237328,-0.0023378271143883,0.020762205123901],[0.0568623021245,0.10909666121006,0.060001280158758]],[[-0.02428206987679,-0.10315998643637,-0.029495161026716],[-0.23795744776726,0.025144848972559,-0.0091119827702641],[-0.010465148836374,-0.14060242474079,-0.094215050339699]],[[0.038184314966202,-0.024176742881536,-0.010363424196839],[-0.068485669791698,-0.011927873827517,0.040353942662477],[-0.026466591283679,0.062378812581301,-0.028662156313658]],[[-0.03833419084549,-0.01680195517838,-0.0022187018766999],[-0.072060577571392,-0.011892904527485,-0.046701956540346],[0.11665253341198,-0.040653608739376,-0.013844716362655]],[[0.034628149122,-0.11389025300741,0.015207369811833],[0.024230858311057,-0.011275168508291,-0.072972670197487],[0.11325799673796,0.039652206003666,0.044841162860394]],[[0.0064948620274663,0.072547823190689,0.03874758630991],[0.016076754778624,0.098513387143612,-0.064577624201775],[-0.095363967120647,0.071527674794197,0.086060896515846]],[[0.022010177373886,0.02749658934772,0.10193753987551],[0.087974652647972,-0.035919737070799,0.032488115131855],[-0.086584590375423,-0.093376360833645,0.0054712248966098]],[[0.033130828291178,0.033174153417349,0.0038569828029722],[0.1869056224823,-0.096324391663074,-0.053317174315453],[0.069915384054184,0.12180027365685,-0.033540222793818]],[[0.025454014539719,-0.1179711446166,-0.011262904852629],[-0.041462149471045,-0.12529717385769,-0.016716463491321],[0.059529591351748,0.014873563311994,0.054545152932405]],[[-0.022553626447916,-0.082511782646179,0.12899538874626],[0.020330419763923,-0.062383625656366,-0.031176725402474],[0.04164894297719,0.073523819446564,-0.065347984433174]],[[-0.035613313317299,-0.12170924991369,-0.1114883646369],[0.064583458006382,0.096231944859028,-0.12959264218807],[0.22069251537323,0.083053193986416,-0.033517524600029]],[[0.0043300464749336,-0.056784611195326,-0.0076998281292617],[-0.016536209732294,0.045977033674717,0.03210362419486],[0.1168991997838,0.043380007147789,0.027133638039231]],[[-0.080477930605412,-0.071069441735744,-0.026324912905693],[-0.14898227155209,-0.012708190828562,0.019701153039932],[-0.18253120779991,-0.068897068500519,0.019877132028341]],[[0.02729700319469,-0.016237825155258,-0.077836744487286],[0.020263306796551,-0.070303589105606,-0.070585802197456],[-0.022633001208305,-0.064830675721169,0.050246313214302]],[[-0.050897352397442,0.076946817338467,0.012777445837855],[0.054036967456341,0.01692907512188,-0.035976950079203],[-0.053205318748951,0.020836124196649,-0.020353022962809]],[[0.16762536764145,-0.020772429183125,0.049842208623886],[0.0074605699628592,-0.10477660596371,0.019280571490526],[-0.0023975337389857,0.089015662670135,-0.06275349855423]],[[-0.0090893404558301,0.065058879554272,0.07527732104063],[0.0043288161978126,-0.11977057158947,-0.068790584802628],[0.058714993298054,0.047099571675062,-0.071974687278271]],[[-0.08299095928669,-0.072353437542915,0.0312285926193],[0.008089111186564,-0.1684871762991,-0.061669748276472],[-0.05033091455698,-0.027233680710196,-0.041116401553154]],[[-0.01867432333529,0.037750355899334,-0.022518986836076],[-0.031430266797543,0.056979764252901,-0.034208949655294],[-0.1538088619709,-0.088887356221676,0.011013112962246]],[[0.058290507644415,-0.055494628846645,-0.15797020494938],[0.065236873924732,0.19552610814571,-0.0070211384445429],[0.13599425554276,0.044919196516275,0.016734765842557]],[[0.065639689564705,-0.054313957691193,-0.069174081087112],[0.02724277600646,0.090492591261864,-0.24186466634274],[-0.032323766499758,0.035596441477537,0.11244361102581]],[[0.1049807369709,0.013196242973208,0.089965529739857],[-0.065238825976849,0.064643487334251,0.012530547566712],[-0.094940304756165,0.0046209469437599,0.089889213442802]],[[0.018254483118653,-0.091205798089504,-0.072350211441517],[0.023515146225691,0.0096019115298986,0.011968531645834],[0.073573805391788,0.14357267320156,-0.032204575836658]],[[-0.024462653324008,0.12719719111919,-0.071577705442905],[0.038790505379438,0.012654421851039,-0.051870692521334],[0.097387194633484,0.039498411118984,-0.17585830390453]],[[0.067909501492977,-0.031167997047305,0.075952060520649],[0.00090126763097942,0.061519078910351,0.016370296478271],[0.0012022942537442,-0.033555030822754,0.016588846221566]],[[0.0068741156719625,-0.13011659681797,-0.018623946234584],[0.016874354332685,0.076163522899151,-0.041319284588099],[-0.0083782970905304,-0.027010098099709,0.044055353850126]],[[-0.064089380204678,-0.067006677389145,0.11079148948193],[-0.087621837854385,0.1080409064889,0.047219280153513],[0.0076891835778952,0.018692230805755,-0.020813809707761]],[[0.020819414407015,0.06393027305603,-0.098398670554161],[-0.0038114893250167,-0.035314537584782,-0.092721611261368],[0.0087744519114494,-0.0033160212915391,0.083537548780441]],[[0.033308662474155,0.023879704996943,0.037477899342775],[-0.0096976887434721,-0.074588268995285,0.055468086153269],[-0.021508127450943,-0.1183929219842,0.11586707830429]],[[-0.046459704637527,-0.0021671438589692,-0.10156350582838],[0.10883510857821,0.090289749205112,0.047913499176502],[0.035820484161377,-0.007163786329329,0.10286783427]],[[-0.050207551568747,-0.045610558241606,0.012640755623579],[-0.026100262999535,0.0088375462219119,0.028111824765801],[-0.013054093346,0.04268491640687,-0.088956944644451]],[[-0.084101274609566,0.0079995011910796,-0.0036360905505717],[-0.11221811175346,-0.063686393201351,-0.0099248960614204],[-0.082932628691196,-0.048681180924177,-0.012024819850922]],[[-0.014336788095534,0.039742965251207,0.018998434767127],[0.034439042210579,-0.018783727660775,-0.046002805233002],[0.01116260048002,-0.067418284714222,-0.02506734803319]],[[-0.062177445739508,0.062589153647423,-0.0034112504217774],[0.048116154968739,-0.057742115110159,0.034234400838614],[0.12123394757509,-0.072295561432838,0.092127725481987]],[[-0.021709401160479,-0.038462225347757,0.0068607805296779],[0.0044926083646715,0.0026918561197817,-0.10682930797338],[0.0057370467111468,0.07864585518837,0.10391849279404]],[[-0.00076865282608196,0.0023435254115611,0.036651000380516],[0.010520956479013,-0.059973407536745,0.076229274272919],[0.12399106472731,0.021984124556184,-0.20237788558006]],[[-0.023851785808802,-0.0044324304908514,-0.082662425935268],[-0.093455567955971,0.0040461127646267,0.013705126941204],[0.063820414245129,0.13518561422825,0.0094852764159441]],[[0.10859999805689,-0.038612812757492,0.13414956629276],[0.031375296413898,0.17678968608379,-0.037060789763927],[-0.11442704498768,0.069341085851192,0.042002733796835]],[[0.00079395750071853,-0.016787456348538,0.035892438143492],[-0.018271988257766,0.038192573934793,0.0078117162920535],[0.0084939273074269,-0.048532344400883,-0.001393121201545]],[[-0.027194665744901,-0.091067440807819,-0.010829458013177],[-0.073666304349899,-0.11207050830126,-0.14656981825829],[-0.0049601001664996,-0.012687995098531,0.05924130231142]],[[0.012436961755157,0.13604597747326,0.11295588314533],[-0.030375596135855,-0.068008132278919,0.033631581813097],[-0.033495079725981,-0.081687644124031,-0.063147634267807]],[[-0.035633474588394,-0.030365107581019,0.0071124909445643],[0.12948229908943,0.016217531636357,-0.2413113117218],[-0.059574812650681,0.12661796808243,-0.016957357525826]],[[0.10846747457981,0.064637295901775,-0.053958918899298],[-0.070082239806652,-0.12063961476088,0.032136008143425],[0.10837441682816,0.0022125171963125,-0.14727589488029]],[[0.15476754307747,0.040534090250731,-0.038419187068939],[0.0067449859343469,0.066941037774086,-0.0034789890050888],[-0.040086358785629,0.024206982925534,-0.040772970765829]],[[-0.0084450077265501,0.13757050037384,0.0070975287817419],[0.035241011530161,0.058149829506874,0.037029102444649],[0.050198920071125,-0.0020824717357755,0.03460206836462]],[[-0.025610579177737,0.0065715862438083,0.014442558400333],[-0.091113984584808,-0.0097583997994661,-0.022037457674742],[0.043163418769836,0.031866736710072,0.058998614549637]],[[0.08988943696022,0.15115627646446,0.17402078211308],[0.0013913215370849,-0.033966474235058,0.035786148160696],[-0.036850169301033,-0.030312554910779,-0.067728504538536]],[[0.035509191453457,-0.026250028982759,-0.026027025654912],[-0.049854908138514,0.060773994773626,0.066219076514244],[0.079007811844349,0.039075516164303,0.007155173458159]],[[-0.032333709299564,-0.044839210808277,0.018667224794626],[0.047437231987715,0.053306013345718,0.042279440909624],[-0.13359275460243,0.12315107882023,-0.0081218266859651]],[[-0.20651224255562,-0.047111231833696,-0.0066980374976993],[-0.15202808380127,-0.19863802194595,-0.043814055621624],[0.077356532216072,-0.055794045329094,-0.15280641615391]],[[-0.039671201258898,-0.0086706280708313,-0.025207966566086],[0.062954977154732,-0.078024335205555,-0.027589607983828],[0.11698362231255,-0.009237383492291,-0.095550961792469]],[[0.12289720028639,0.13979467749596,-0.072619408369064],[-0.057769972831011,0.20481190085411,0.018589589744806],[-0.037299443036318,-0.05593865737319,-0.029222773388028]],[[0.011495075188577,0.0038659465499222,0.040125459432602],[0.039015702903271,0.046224404126406,-0.060968913137913],[0.061596553772688,-0.027495447546244,-0.0014240599703044]],[[-0.055490743368864,-0.0494314879179,0.044760659337044],[-0.037135671824217,0.10322688519955,-0.021034983918071],[0.13363265991211,0.023035580292344,-0.0093539608642459]],[[0.067623637616634,0.15630801022053,0.046913683414459],[-0.066103622317314,-0.089291140437126,0.0061748004518449],[0.036725450307131,-0.054055631160736,-0.10098936408758]],[[-0.074221715331078,-0.090550377964973,0.079659819602966],[-0.061591029167175,-0.017737576738,0.027099875733256],[-0.015996988862753,0.007157479878515,0.023280838504434]],[[0.048264019191265,-0.024479968473315,0.080485977232456],[-0.023975858464837,-0.015530040487647,-0.15161882340908],[0.031617313623428,-0.028431728482246,-0.017241390421987]],[[0.028633709996939,-0.058974333107471,-0.081093601882458],[-0.002226873068139,0.084810450673103,-0.10520876199007],[0.00072828726842999,-0.032808229327202,-0.059734050184488]],[[-0.06206526979804,-0.022524317726493,0.054510410875082],[0.1033021658659,0.025910142809153,-0.0089547680690885],[-0.080539241433144,0.07262559980154,-0.036857392638922]],[[0.0041539487428963,-0.11638033390045,-0.023250326514244],[0.079329758882523,-0.024401601403952,0.055784806609154],[-0.050314445048571,0.045342959463596,-0.085097931325436]],[[-0.048465508967638,0.0075216181576252,0.051243044435978],[-0.019688051193953,0.019109815359116,-0.040115989744663],[0.024366000667214,-0.028136927634478,-0.12864822149277]],[[0.012228353880346,0.12297426909208,-0.0650549903512],[0.0086132474243641,0.02559812925756,0.023660767823458],[-0.010982383973897,-0.060990087687969,-0.082336708903313]],[[0.02147526293993,-0.11948361992836,0.048773888498545],[0.037891004234552,-0.030473677441478,0.077431164681911],[-0.051337983459234,-0.069696351885796,0.034462355077267]],[[0.090485014021397,-0.061843283474445,-0.10761716961861],[0.024374132975936,0.066334970295429,0.020369408652186],[0.021616443991661,0.039542503654957,-0.036743506789207]],[[0.022922279313207,-0.040191687643528,0.11634088307619],[-0.058516338467598,0.089104868471622,0.014498963020742],[-0.022038221359253,-0.064743027091026,0.010682373307645]],[[0.0068956008180976,0.070613346993923,-0.013350101187825],[-0.11309845000505,0.076256237924099,0.14152617752552],[-0.050878155976534,-0.032543808221817,-0.046310499310493]],[[0.088860988616943,0.010628988966346,-0.024155505001545],[-0.046129755675793,-0.016108270734549,0.074254721403122],[0.060107920318842,0.061119716614485,-0.0089469663798809]],[[-0.070634573698044,0.031571049243212,-0.1101016625762],[0.037364613264799,-0.052443608641624,-0.054776385426521],[0.15802130103111,0.1693652421236,-0.059154164046049]],[[0.024609124287963,0.037277687340975,0.0025794489774853],[-0.035986173897982,0.013450681231916,-0.082778058946133],[9.0307679784019e-05,0.11405884474516,0.0078432215377688]],[[-0.022313322871923,0.0026368096005172,0.053895097225904],[-0.032319627702236,-0.12103933095932,-0.017576694488525],[0.022052232176065,0.051609065383673,-0.0013516793260351]],[[0.068734481930733,-0.12683013081551,-0.12649041414261],[0.16948662698269,-0.0014544236473739,-0.14260511100292],[0.31518313288689,0.16046153008938,0.076638467609882]],[[-0.025097474455833,0.00034885466448031,0.0051215318962932],[-0.046320650726557,-0.058541350066662,0.066081203520298],[0.066273108124733,0.030519831925631,0.068797200918198]],[[0.027175694704056,-0.023187637329102,0.086112678050995],[0.0065058334730566,-0.0076920241117477,0.060656815767288],[0.073565654456615,-0.0050868806429207,-0.015700370073318]],[[0.055739816278219,-0.039987321943045,-0.04218528419733],[0.025574309751391,0.10373884439468,0.071393355727196],[-0.12645623087883,-0.01251027174294,0.01291636377573]],[[-0.030224401503801,-0.10510911792517,-0.076181620359421],[0.0097970049828291,0.086087256669998,-0.010593689978123],[-0.04924988374114,0.039516437798738,0.12234790623188]],[[-0.048838071525097,-0.072202026844025,0.0035081254318357],[-0.004353332798928,-0.034509461373091,0.00037265990977176],[-0.058011703193188,-0.011867474764585,0.0083210058510303]],[[0.006403548642993,0.0035162644926459,0.036094680428505],[0.023581106215715,-0.0068882559426129,-0.020918034017086],[0.052034538239241,0.070129476487637,0.063255235552788]],[[-0.015769474208355,-0.0058319144882262,-0.063685588538647],[0.026659173890948,-0.072715491056442,-0.032484814524651],[0.030323913320899,-0.00069891498424113,-0.018995827063918]],[[-0.024739395827055,-0.016437344253063,0.043227519840002],[0.042945180088282,-0.059044595807791,0.019983723759651],[0.053829055279493,0.050745248794556,0.096737541258335]],[[0.0084980484098196,0.099930219352245,0.028272097930312],[0.10255022346973,-0.12429439276457,-0.049960486590862],[0.049787405878305,-0.044714730232954,-0.030407706275582]],[[-0.10461737215519,0.027681855484843,0.021824227645993],[-0.11053673923016,0.11549346894026,0.033788025379181],[-0.12771928310394,0.050901349633932,0.16066448390484]],[[-0.12417203933001,0.060781508684158,-0.035662285983562],[-0.024490274488926,0.0034636431373656,-0.036367479711771],[0.067508354783058,0.017252586781979,0.096115715801716]],[[-0.089459523558617,-0.014837032184005,-0.042949732393026],[-0.046591762453318,0.041019842028618,0.092530362308025],[0.10045731067657,0.03182478249073,0.0051218564622104]],[[-0.028713315725327,0.06776736676693,-0.059698056429625],[-0.0253478102386,-0.079556964337826,0.012875566259027],[0.13065409660339,-0.0045089009217918,0.15916892886162]],[[0.15604230761528,-0.08334256708622,0.12215070426464],[-0.029927603900433,-0.015601449646056,-0.039198860526085],[-0.044744811952114,0.074502639472485,0.021800357848406]],[[-0.039059896022081,0.0057872785255313,-0.011318106204271],[0.015124638564885,0.025554347783327,0.026434501633048],[0.11723395437002,0.025985633954406,-0.054962676018476]],[[-0.0081351324915886,-0.043315663933754,0.034523017704487],[-0.031748544424772,0.040843978524208,-0.017782725393772],[0.031738135963678,-0.0018821246922016,-0.0068241329863667]],[[0.0070535121485591,0.033850248903036,-0.068083442747593],[-0.014932587742805,-0.0061426861211658,-0.0016223071143031],[-0.010455707088113,-0.021010847762227,0.022968931123614]],[[0.03641939535737,0.070888362824917,0.12152792513371],[-0.019125483930111,-0.043603356927633,0.00075586885213852],[-0.092783384025097,0.095539107918739,0.11693631857634]],[[-0.031901095062494,0.061023347079754,-0.13611052930355],[0.0407928340137,-0.090310946106911,-0.0037985881790519],[0.058329232037067,-0.026658350601792,0.14270389080048]],[[0.03181679174304,0.012939381413162,-0.031579684466124],[-0.0026975446380675,-0.021695900708437,-0.036072868853807],[-0.0041198125109076,0.01336226798594,0.025471482425928]],[[0.048982568085194,-0.015250468626618,-0.11732192337513],[0.13800562918186,-0.068657785654068,0.039586745202541],[0.012499401345849,0.078425817191601,0.0056334976106882]],[[-0.01669798605144,-0.067625470459461,-0.013792637735605],[0.12979905307293,-0.15052036941051,0.0058739483356476],[0.056638710200787,-0.08826257288456,-0.049932308495045]],[[0.0092264031991363,0.095912396907806,0.058151926845312],[-0.041314639151096,0.023546604439616,0.050194665789604],[-0.00045288581168279,-0.042083572596312,0.10912156105042]],[[0.065255932509899,-0.0087323803454638,-0.044716168195009],[-0.027757208794355,-0.0854452252388,-0.059306707233191],[0.024317242205143,0.045642599463463,0.0016474311705679]],[[0.060228049755096,-0.067267619073391,0.045198548585176],[-0.003135145874694,-0.0043236082419753,0.0024239954072982],[-0.0060002575628459,0.12208381295204,-0.021976439282298]],[[-0.11942287534475,-0.1723531037569,-0.081789962947369],[0.064206920564175,-0.050042055547237,-0.0127486390993],[-0.014021418988705,-0.051537677645683,0.0064033712260425]],[[0.090697154402733,-0.040450714528561,0.099134005606174],[0.021280076354742,-0.10682336986065,0.10240641236305],[-0.030867803841829,-0.010859970003366,0.015853423625231]],[[0.014051613397896,0.012734086252749,0.0026480141095817],[0.079085253179073,0.0056323329918087,0.012073040939867],[0.11090082675219,-0.037617329508066,0.045110084116459]],[[0.056787483394146,-0.099856644868851,-0.088079191744328],[-0.15240259468555,0.089560382068157,-0.11163932830095],[0.08052221685648,0.14078582823277,0.098455339670181]],[[-0.0045115584507585,-0.087420247495174,0.011891642585397],[-0.092777416110039,-0.027634767815471,-0.023067472502589],[-0.017159685492516,-0.026950228959322,0.074727959930897]],[[0.049879107624292,-0.075011469423771,-0.049763839691877],[-0.012388319708407,0.002534740138799,-0.043021991848946],[-0.046757809817791,-0.065287873148918,0.019376736134291]],[[-0.027087356895208,-0.1242313683033,0.0065302290022373],[0.042930513620377,-0.057382222265005,-0.001736473874189],[0.090684145689011,0.098202392458916,-0.0064023663289845]],[[-0.10228403657675,0.029186133295298,0.12920314073563],[0.016458559781313,-0.0062486086972058,-0.098149925470352],[-0.010840977542102,-0.10695504397154,-0.080374777317047]],[[0.01990020647645,-0.049407601356506,0.082411155104637],[0.0025558674242347,0.042256336659193,0.077705644071102],[0.032064601778984,0.088997766375542,-0.056221716105938]]],[[[-0.046635571867228,0.0094342129305005,0.062905885279179],[0.062370851635933,0.013075563125312,-0.065053157508373],[0.034488670527935,0.045602947473526,0.041170299053192]],[[0.0071045286022127,-0.018391506746411,0.030943859368563],[-0.010961919091642,0.019804190844297,-0.0053996723145247],[0.061646021902561,0.11973984539509,0.04158316925168]],[[0.022212594747543,0.010561033152044,-0.01119184307754],[0.013966410420835,0.060385145246983,-0.0025781500153244],[-0.022905414924026,0.037632841616869,0.001461632666178]],[[0.0061943386681378,0.0055219531059265,0.022403808310628],[0.04479881003499,0.0028915088623762,-0.022701025009155],[0.036105711013079,0.0328703597188,0.054919499903917]],[[-0.048405490815639,0.042034842073917,0.0080620674416423],[0.058535046875477,-0.059167373925447,-0.0010894914157689],[0.042659796774387,0.035917524248362,-0.072084948420525]],[[0.067696504294872,-0.0077398642897606,0.058302652090788],[0.0068869064562023,0.02334863692522,0.048925545066595],[0.0091030336916447,-0.006071703042835,0.0089608374983072]],[[0.057134471833706,-0.065060637891293,0.00093556224601343],[-0.075718306005001,0.037478510290384,0.0082125551998615],[-0.080150336027145,0.05905706807971,-0.03576872870326]],[[0.0011914952192456,0.00081951450556517,0.041183531284332],[-0.021191269159317,0.013047722168267,-0.080052845180035],[0.057706978172064,0.050153329968452,0.043909132480621]],[[0.012978659011424,0.084953352808952,0.023559870198369],[0.10019760578871,-0.0041028219275177,-0.0054060802794993],[0.021464647725224,0.043106440454721,0.063196487724781]],[[-0.010878124274313,0.049276411533356,0.088006854057312],[0.014682122506201,0.062319573014975,-0.0090040881186724],[0.02650229819119,-0.017353428527713,0.11398500949144]],[[0.086416840553284,0.047819882631302,0.016263797879219],[0.03280621394515,0.042241416871548,0.0014093639329076],[0.025091733783484,-0.053119018673897,-0.028236223384738]],[[-0.064323052763939,0.066411130130291,0.0031710336916149],[-0.012825452722609,-0.00097855203785002,0.029168514534831],[-0.0095718111842871,-0.025923300534487,0.056863263249397]],[[-0.06071512401104,0.028177445754409,0.012046188116074],[0.042158056050539,-0.014624526724219,-0.04272835329175],[0.037284910678864,0.048536229878664,-0.049467377364635]],[[0.055511709302664,0.0075945667922497,-0.010610428638756],[0.081144489347935,-0.014561800286174,0.092706002295017],[0.031025297939777,0.061504025012255,0.027514729648829]],[[-0.10635171085596,0.06442729383707,0.12412741035223],[-0.010596144944429,-0.0072846882976592,0.021888075396419],[0.072559170424938,0.026170341297984,0.073206827044487]],[[-0.073197640478611,0.050971869379282,-0.0015579372411594],[-0.037580460309982,-0.0037801139988005,-0.03486143797636],[0.017062751576304,-0.060098569840193,-0.0062999557703733]],[[-0.087744653224945,-0.038112070411444,0.071126036345959],[0.0058238976635039,0.025198446586728,-0.052267022430897],[0.024920428171754,0.11548996716738,0.061486560851336]],[[-0.013215325772762,0.011376809328794,-0.01421679276973],[0.00050809519598261,0.04909560084343,-0.0048374747857451],[-0.047287333756685,-0.011990780942142,-0.054209910333157]],[[-0.012976777739823,0.056890331208706,-0.0025034204591066],[0.016319762915373,-0.037664800882339,0.0092306612059474],[0.00084087770665064,-0.066938139498234,-0.039602685719728]],[[0.053532287478447,-0.0095117250457406,0.0025522145442665],[0.013613238930702,0.089275009930134,0.050044741481543],[-0.0021801555994898,0.044241357594728,0.0059648123569787]],[[-0.0023819564376026,-0.024781482294202,-0.0088468138128519],[0.036470770835876,0.020595239475369,0.029161844402552],[0.007811804767698,-0.10891642421484,-0.082723066210747]],[[-0.082800701260567,0.060111977159977,0.011757023632526],[0.014586413279176,-0.026635767892003,-0.045167602598667],[0.05847704783082,0.0030438443645835,-0.042138941586018]],[[-0.057285562157631,-0.0061493800021708,0.0032946625724435],[-0.026674825698137,0.0040778703987598,-0.035494886338711],[0.021405281499028,0.001685852301307,0.016735270619392]],[[0.085458919405937,-0.094348907470703,-0.044034145772457],[-0.035882197320461,0.015131122432649,-0.072771310806274],[-0.056972168385983,-0.03523313254118,-0.013599457219243]],[[0.055328894406557,-0.040815494954586,0.054450210183859],[-0.0066123981960118,-0.043670140206814,0.053447172045708],[-0.00086958933388814,0.026310555636883,0.10117570310831]],[[0.01383632235229,-0.014386829920113,0.03267902508378],[0.00049217185005546,0.062277402728796,-0.020309621468186],[0.087502345442772,-0.0093073016032577,0.016814632341266]],[[0.064702853560448,0.053711481392384,0.0084338206797838],[0.057203721255064,-0.038166232407093,-0.0041379164904356],[-0.0026107162702829,0.0070115737617016,0.078023970127106]],[[0.035535998642445,0.0063587338663638,0.026532664895058],[0.021596886217594,0.035382963716984,-0.040236119180918],[-0.027642758563161,0.01305013243109,0.023331079632044]],[[0.006869051605463,-0.016885004937649,0.0089899217709899],[0.087435893714428,0.0078017814084888,0.027185063809156],[0.032030198723078,-0.017431050539017,0.012841835618019]],[[-0.014465908519924,0.011723917908967,-0.035763785243034],[0.062445681542158,-0.029159957543015,0.0021267307456583],[-0.0005690956604667,-0.0065231937915087,-0.034064587205648]],[[-0.027271382510662,0.022753974422812,0.05442114546895],[0.0048561100848019,0.008429060690105,0.010989336296916],[0.059403028339148,-0.049564301967621,-0.0058121932670474]],[[-0.034526139497757,-0.018508791923523,0.01217070966959],[-0.029525460675359,-0.019961463287473,-0.024778252467513],[-0.01440233271569,-0.083849154412746,0.052957441657782]],[[-0.05391513183713,-0.023441985249519,-0.018567951396108],[0.029628889635205,0.0044409637339413,-0.01363827381283],[0.045612748712301,0.027533592656255,0.021797738969326]],[[0.019786596298218,-0.072656907141209,0.025902550667524],[0.0087479520589113,0.032874807715416,-0.024383341893554],[0.032930728048086,0.016868872568011,0.031427603214979]],[[0.084406159818172,0.060267403721809,0.10408841818571],[0.021529499441385,-0.014664920978248,0.00070127646904439],[0.047575391829014,-0.041167605668306,0.065899431705475]],[[0.056115806102753,0.003204544307664,-0.048880532383919],[0.0057690828107297,-0.046601556241512,0.012726709246635],[-0.0023514891508967,0.013849790208042,-0.0021531817037612]],[[-0.0048982575535774,0.044862344861031,-0.022205732762814],[0.013702945783734,-0.1199031919241,0.032618012279272],[-0.084108166396618,0.057975392788649,-0.078960321843624]],[[0.025601783767343,-0.0044788853265345,-0.045353978872299],[0.031780909746885,-0.023895893245935,0.0015750128077343],[-0.0018484040629119,-0.014694115146995,0.013213300146163]],[[0.016798548400402,0.053204197436571,-0.049218684434891],[0.018384516239166,-0.0043707629665732,-0.0038112171459943],[0.02574953995645,-0.048442907631397,0.046502228826284]],[[0.031933173537254,0.068285465240479,-0.013671595603228],[-0.018330741673708,0.048357538878918,0.060905329883099],[0.069494046270847,-0.0085871564224362,-0.026788201183081]],[[-0.070328965783119,-0.038506232202053,-0.0077574015595019],[0.0021275598555803,-0.049407880753279,-0.0094206994399428],[-0.047863896936178,-0.028101466596127,-0.011439076624811]],[[0.0011227923678234,-0.025191653519869,0.0047564841806889],[-0.023418894037604,0.032068334519863,0.011038654483855],[0.043976500630379,0.0062144682742655,0.012953306548297]],[[0.046159267425537,-0.0049278968945146,0.083921179175377],[0.031160825863481,0.11851926892996,-0.017850745469332],[0.10033539682627,-0.015349413268268,-0.010944804176688]],[[0.060881603509188,-0.072064399719238,0.040192402899265],[0.08420230448246,0.0036494876258075,0.024349657818675],[-0.002328073605895,0.027580711990595,-0.035612419247627]],[[-0.019619837403297,-0.049262404441833,-0.050500575453043],[0.039563626050949,0.025676127523184,-0.0064291683956981],[0.033125720918179,-0.0052418103441596,-0.0070260860957205]],[[0.044543500989676,0.14211221039295,0.0081034582108259],[0.022769086062908,0.047757193446159,0.041573047637939],[0.019331825897098,0.003641921794042,-0.018405629321933]],[[0.0040513067506254,-0.018340587615967,-0.013466413132846],[0.048535749316216,-0.013022712431848,0.078068673610687],[0.063178233802319,0.0632553845644,0.0853675827384]],[[0.044096451252699,0.01329243555665,-0.031256701797247],[-0.016494629904628,0.037152070552111,-0.027948807924986],[-0.056965928524733,0.0166348926723,-0.068246155977249]],[[-0.043715603649616,0.079281598329544,0.0041808891110122],[0.0073787402361631,-0.068325497210026,-0.00053363491315395],[0.026083169505,-0.028595155104995,-0.042641170322895]],[[0.078774310648441,0.071191027760506,-0.065174981951714],[0.097463198006153,-0.031763587146997,0.056302681565285],[-0.055165719240904,0.021502124145627,-0.045853465795517]],[[0.00015873400843702,-0.069397069513798,0.010660672560334],[0.047559883445501,0.024775329977274,0.051256407052279],[-0.016875816509128,0.046655550599098,-0.087981157004833]],[[0.10220903903246,-0.0029649001080543,0.021047445014119],[0.021921426057816,-0.040742468088865,-0.07377764582634],[-0.041157886385918,-0.0013640613760799,0.025802094489336]],[[0.024721249938011,0.0020007460843772,0.014075440354645],[-0.024881767109036,-0.023620622232556,-0.028492337092757],[0.088161885738373,-0.066998496651649,-0.019914228469133]],[[0.015326827764511,-0.081360451877117,0.014243648387492],[0.043203376233578,-0.016430908814073,-0.010708261281252],[-0.047806598246098,0.0047571077011526,-0.09771066904068]],[[-0.054843377321959,-0.00094413658371195,-0.032912246882915],[0.049452845007181,-0.012202343903482,-0.036573816090822],[0.075947441160679,-0.018149333074689,0.037123896181583]],[[-0.0059242290444672,-0.047494143247604,-0.03905626386404],[0.0087074302136898,0.02294416539371,0.0053859758190811],[0.015801899135113,0.0070599690079689,-0.0024844685103744]],[[0.052190326154232,-0.057778667658567,0.038464542478323],[-0.00046000449219719,0.086077392101288,-0.025581328198314],[-0.023684035986662,0.0023418467026204,0.048041354864836]],[[-0.033169832080603,-0.020067378878593,0.0080624194815755],[0.0062891794368625,0.072963982820511,0.046774111688137],[0.021463591605425,-0.052776835858822,-0.0090121179819107]],[[-0.026091352105141,0.049449723213911,-0.016294060274959],[0.034465711563826,-0.025309570133686,0.061309073120356],[-0.00019579693616834,0.10167819261551,0.054898664355278]],[[-0.054971843957901,-0.010097865946591,-0.075570479035378],[-0.10481446236372,-0.032584097236395,0.044317495077848],[0.02871285378933,-0.063549295067787,-0.053064599633217]],[[0.0058035668917,0.025527466088533,-0.0057587251067162],[0.0093852505087852,-0.0038138905074447,-0.049590729176998],[-0.001025722711347,0.0160804502666,0.04906153306365]],[[0.043040357530117,0.0082412669435143,-0.090582959353924],[-0.024684049189091,-0.014305260032415,-0.069589592516422],[0.0030120508745313,0.017363192513585,-0.016620708629489]],[[0.01209672447294,0.022622711956501,-0.037370942533016],[0.058376379311085,0.0041088699363172,-0.0041712885722518],[0.010912486352026,-0.021873995661736,-0.03839448839426]],[[0.034265957772732,0.0255809109658,0.05102052539587],[0.049586340785027,-0.048256270587444,0.026481883600354],[0.01440894138068,-0.027982046827674,-0.0024815865326673]],[[-0.081933885812759,-0.0096799973398447,0.032217182219028],[-0.052114270627499,0.03200026601553,0.035204991698265],[-0.051577426493168,0.14418503642082,0.075414508581161]],[[0.031299091875553,0.023718958720565,-0.06951355189085],[0.024781310930848,0.014812834560871,-0.0095959827303886],[0.067080907523632,0.02249900996685,-0.0094791483134031]],[[0.072952724993229,0.021464247256517,0.047999031841755],[0.082739248871803,-0.032572366297245,0.032258410006762],[0.011495712213218,-0.001800735713914,-0.017920549958944]],[[0.060375485569239,0.023573093116283,0.081759750843048],[0.058182146400213,0.055337201803923,0.032359007745981],[0.058084387332201,0.030381988734007,-0.020077496767044]],[[0.027626430615783,-0.045880824327469,0.0044967466965318],[0.030885586515069,0.011358133517206,0.046601571142673],[0.037810303270817,0.014873336069286,0.087168119847775]],[[0.020279053598642,-0.015625819563866,-0.021040871739388],[0.11538594961166,0.12729868292809,-0.1120019108057],[-3.3814201742643e-05,-0.047219961881638,-0.044414360076189]],[[-0.018333064392209,0.10849376767874,-0.056687477976084],[0.020506577566266,0.0022949201520532,-0.02719296887517],[0.022745463997126,-0.0067166513763368,-0.014593287371099]],[[-0.032630141824484,0.055363226681948,0.038662064820528],[0.011393152177334,0.022049488499761,-0.054608628153801],[0.04844493791461,0.023860843852162,-0.0033089085482061]],[[0.028552679345012,0.039401169866323,-0.062494065612555],[-0.01651912741363,0.0051158205606043,-0.00067491229856387],[0.021891156211495,0.10526303201914,0.054573483765125]],[[0.006331195589155,-0.015652092173696,-0.0076107983477414],[0.032134976238012,0.053310360759497,0.0044337115250528],[0.0041820504702628,-0.02001959644258,0.061513833701611]],[[0.012919461354613,0.0093971230089664,0.032782737165689],[-0.0062181572429836,-0.0019806921482086,-0.1364610940218],[0.054531410336494,0.0030056345276535,0.056849252432585]],[[-0.041151288896799,-0.023919016122818,0.055256817489862],[0.031989742070436,0.032126560807228,-0.090413093566895],[-0.006682067643851,-0.1277666836977,0.010923382826149]],[[-0.0062918760813773,-0.054776057600975,0.032830026000738],[0.022422028705478,-0.031424190849066,-0.043554663658142],[0.053615048527718,0.042739037424326,-0.11127328127623]],[[0.085492603480816,0.061832331120968,0.045725375413895],[0.014035243541002,-0.056979823857546,0.084333635866642],[0.043889798223972,0.034354984760284,0.026949996128678]],[[0.075790569186211,0.018732713535428,-0.03798658773303],[-0.018990954384208,-0.037867799401283,-0.014977139420807],[-0.008686893619597,0.086008980870247,-0.0088361017405987]],[[-0.098334982991219,-0.072771869599819,-0.049858409911394],[0.0075963423587382,0.016480224207044,0.014567416161299],[-0.02584320306778,0.000706463935785,-0.034164413809776]],[[0.031795267015696,-0.046064611524343,-0.04615668207407],[0.040484495460987,-0.04145161062479,0.041736047714949],[0.0078569576144218,0.063170433044434,0.027010671794415]],[[0.0361682549119,-0.03498151153326,-0.027096113190055],[0.053550031036139,-0.077901259064674,0.06905797123909],[-0.016067143529654,0.029570590704679,-0.099847450852394]],[[-0.047027330845594,0.057114467024803,0.12371238321066],[0.02681839466095,0.020585609599948,-0.026895379647613],[0.021958228200674,0.043920457363129,0.041872873902321]],[[0.01537433732301,-0.0048969495110214,0.068624086678028],[-0.0066518671810627,0.022802511230111,-0.0060147121548653],[-0.0016809047665447,-0.00056249316548929,0.060119677335024]],[[-0.018136192113161,-0.060375992208719,0.05887895077467],[-0.01875969208777,0.075715027749538,0.00061382888816297],[0.0040525360964239,-0.0090001719072461,-0.04844842851162]],[[-0.1041052043438,-0.037891585379839,-0.06483332067728],[0.027417000383139,-0.037160150706768,0.039563316851854],[0.042229622602463,-0.051615890115499,0.065170764923096]],[[0.044773034751415,0.01410660892725,0.059481680393219],[0.006942882668227,-0.011821635998785,0.043828897178173],[0.084754854440689,-0.00097854377236217,-0.0091200694441795]],[[-0.01608176715672,0.011163512244821,-0.014664556831121],[0.06961727142334,-0.0097067942842841,0.050820160657167],[0.045207019895315,-0.030541392043233,-0.0064558032900095]],[[0.048272721469402,0.00920320302248,-0.0062560741789639],[0.071705311536789,-0.023504380136728,0.024046054109931],[0.031368743628263,0.036547858268023,-0.093747198581696]],[[-0.022190101444721,0.076319187879562,-0.0071273748762906],[-0.02362883836031,0.012785131111741,-0.049233566969633],[0.030283724889159,0.023171408101916,-0.010743024758995]],[[-0.012993133626878,0.12076865881681,0.080335043370724],[0.0015595930162817,0.045876055955887,-0.033231385052204],[-0.042251605540514,0.0038753317203373,-0.0081420494243503]],[[0.099455058574677,0.028534140437841,0.028834898024797],[-0.03483858704567,0.017971405759454,0.014093308709562],[0.031604375690222,-0.029708668589592,0.030637802556157]],[[0.013064266182482,-0.008612971752882,0.044068086892366],[0.022698583081365,-0.0056236907839775,0.0084485895931721],[0.021422110497952,-0.026627281680703,-0.032175734639168]],[[-0.069340422749519,0.031532358378172,-0.0074085663072765],[0.033666923642159,-0.03320125117898,0.077270224690437],[0.071199141442776,-0.0080295382067561,0.031717281788588]],[[-0.0057438155636191,0.046891126781702,-0.031982090324163],[0.02513981051743,0.088110685348511,-0.018302448093891],[-0.013219362124801,-0.0026472075842321,-0.023079728707671]],[[0.03753249719739,0.048553999513388,-0.028820240870118],[0.099419198930264,0.043411336839199,-0.017232893034816],[-0.0037895718123764,0.058176402002573,0.085335820913315]],[[0.086075618863106,-0.051026165485382,0.046262834221125],[-0.0092211812734604,-0.05533454567194,-0.071837455034256],[0.06640500575304,0.036084040999413,0.038214199244976]],[[0.03697981312871,-0.012975125573575,-0.0010071033611894],[-0.0037855189293623,-0.013602846302092,0.0074865818023682],[-0.0029325648210943,-0.015573016367853,-0.022012438625097]],[[0.081031367182732,-0.05703105032444,-0.0065703182481229],[-0.040697824209929,-0.0084703024476767,-0.0050229490734637],[-0.051135163754225,0.030088342726231,-0.050115931779146]],[[-0.07429413497448,0.043277326971292,-0.002279739594087],[0.02943853661418,-0.035512953996658,-0.012298907153308],[-0.018938334658742,-0.010536295361817,0.0091986423358321]],[[0.087733708322048,0.1019182652235,-0.0060457405634224],[-0.030140476301312,-0.012857394292951,0.03197268024087],[-0.064111150801182,0.084405139088631,-0.0029058000072837]],[[0.014346012845635,-0.0017462247051299,0.025486933067441],[0.064159110188484,0.036414686590433,0.043735723942518],[0.038493830710649,0.065431624650955,0.069326214492321]],[[-0.0083100702613592,-0.0037981404457241,-0.014721189625561],[0.01158086489886,0.075500547885895,0.00038258158019744],[-0.015785936266184,0.025697078555822,-0.10436319559813]],[[-0.0015776447253302,0.049441903829575,-0.013609451241791],[0.039862100034952,0.059932935982943,-0.006405130494386],[0.025186575949192,0.0075505576096475,0.0013219594256952]],[[0.078527621924877,-0.035166211426258,0.012153243646026],[0.053844261914492,-0.06111716106534,0.049975141882896],[0.0044200397096574,0.042004611343145,0.035798132419586]],[[0.026151860132813,-0.024604808539152,-0.034036189317703],[0.14453095197678,-0.0077049164101481,-0.018346861004829],[-0.027549328282475,0.0079599674791098,0.031968548893929]],[[0.028502179309726,-0.0020648026838899,0.052738007158041],[0.071059033274651,0.019777273759246,0.043786380439997],[-0.02330144867301,0.021497007459402,0.01255380641669]],[[-0.03666615113616,-0.0075284754857421,-0.032218519598246],[-0.082114897668362,0.064178831875324,0.028699439018965],[-0.065176941454411,-0.016602927818894,-0.00034452779800631]],[[0.040641661733389,0.030935451388359,-0.06589862704277],[0.053195357322693,0.017820347100496,0.039999715983868],[0.015296476893127,0.024092176929116,-0.0023081270046532]],[[-0.028460208326578,0.084214881062508,0.0019552772864699],[0.023388711735606,-0.029687779024243,0.046193141490221],[0.026680840179324,0.026114765554667,-0.033142946660519]],[[0.017770746722817,0.037110432982445,0.057076476514339],[-0.010219623334706,-0.067483082413673,-0.050546709448099],[0.042317774146795,-0.023710438981652,-0.0006740806857124]],[[0.10541065782309,-0.019259802997112,-0.037697352468967],[0.05767160654068,0.032903764396906,0.040618091821671],[0.010234052315354,-0.013079768046737,-0.0037853876128793]],[[0.055204145610332,-0.001484825508669,-0.0097197312861681],[0.034238003194332,-0.036274485290051,0.10208751261234],[-0.014092759229243,0.02898077853024,0.072318069636822]],[[-0.029813403263688,0.041196491569281,-0.055148050189018],[-0.00560546759516,-0.012686554342508,-0.010337164625525],[-0.09827795624733,-0.0092496471479535,0.017981566488743]],[[-0.0174779612571,0.014301686547697,-0.07574350386858],[0.0003547172236722,0.014889293350279,0.014921775087714],[-0.019426666200161,-0.050657168030739,-0.033374227583408]],[[-0.047209404408932,0.0047123730182648,-0.0073790005408227],[0.045794278383255,0.011084370315075,0.022640757262707],[-0.022071966901422,-0.077667683362961,0.039763607084751]],[[0.055479526519775,0.02045969851315,-0.047333341091871],[-0.03419641405344,0.034003738313913,0.055566597729921],[-0.013723626732826,-0.011151446029544,0.061006009578705]],[[0.00066447118297219,-0.013401463627815,0.094470724463463],[0.006226375233382,0.013361212797463,-0.007594077847898],[0.0088211195543408,-0.0195556525141,-0.017600324004889]],[[0.030004777014256,-0.01042795740068,0.038716848939657],[0.014355031773448,0.034370519220829,-0.051040884107351],[0.085030741989613,-0.010964860208333,0.027535427361727]],[[0.0076116705313325,-0.029436938464642,0.025217236950994],[-0.10580766946077,-0.012221658602357,-0.00031170528382063],[0.0010455679148436,0.0227081310004,-0.088363021612167]],[[-0.033179126679897,0.0032143390271813,0.018242450430989],[0.051717214286327,-0.0053370166569948,-0.0087338946759701],[-0.032972071319818,0.065802060067654,-0.012347680516541]],[[0.037712272256613,-0.035706739872694,0.0014971292112023],[-0.017612734809518,0.044863365590572,-0.05585889518261],[-0.030484855175018,-0.031173713505268,0.043543588370085]],[[0.11070168018341,0.026423126459122,0.026667214930058],[-0.022668791934848,-0.042369935661554,-0.12348337471485],[0.00032197858672589,0.028471153229475,0.034395430237055]],[[0.057607807219028,0.01555557269603,-0.00025815240223892],[0.049532346427441,-0.053563293069601,0.012847520411015],[-0.06204279884696,0.021600589156151,-0.065154783427715]],[[0.038892276585102,0.046236954629421,-0.048199839890003],[0.01233493629843,-0.014743767678738,0.056567657738924],[-0.0090231280773878,-0.012815977446735,-0.025972172617912]],[[0.025145808234811,0.012798546813428,-0.077649168670177],[0.027583207935095,0.024910647422075,-0.020297599956393],[0.012750581838191,0.014976544305682,0.12306371331215]],[[0.047081552445889,0.038962390273809,0.014586846344173],[0.027711410075426,-0.035261567682028,-0.0060472167097032],[0.091538786888123,0.024462129920721,0.057705208659172]],[[-0.019476447254419,-0.025882758200169,0.015457582660019],[0.072898477315903,-0.0044711227528751,-0.039897043257952],[0.049084577709436,0.021358776837587,-0.025569729506969]]],[[[-0.079789146780968,-0.068834744393826,-0.015735622495413],[-0.077996790409088,0.047688014805317,-0.038334757089615],[0.030627189204097,-0.0011948809260502,0.0024345794226974]],[[-0.038534414023161,0.034555427730083,-0.013329333625734],[0.081520549952984,-0.027546167373657,-0.0059833186678588],[0.039626598358154,-0.021384052932262,0.045732412487268]],[[-0.0026791316922754,0.017713416367769,0.056139640510082],[0.029723860323429,-0.0067355087958276,-0.00065547175472602],[0.033639170229435,0.018024982884526,0.04389213770628]],[[-0.0011554767843336,0.021415578201413,0.014111549593508],[-0.035945639014244,0.046872530132532,-0.059434294700623],[0.024284735321999,0.0022776443511248,0.024137167260051]],[[0.05727319046855,0.039286077022552,-0.076574802398682],[-0.078461214900017,-0.011450166814029,0.051815908402205],[0.029132457450032,-0.036458503454924,0.039560917764902]],[[0.10271424800158,0.0097012501209974,0.062400359660387],[0.066154561936855,0.023791342973709,0.034433040767908],[0.045194759964943,-0.0065631940960884,0.019276756793261]],[[0.052330575883389,-0.054111238569021,0.015462043695152],[0.047588191926479,-0.0057635195553303,0.049688961356878],[0.060677140951157,0.031092824414372,-0.039626616984606]],[[0.016993658617139,0.097904063761234,0.018631661310792],[-0.0075162756256759,-0.054276514798403,0.055977914482355],[0.036144454032183,-0.0045218653976917,0.0010968251153827]],[[-0.048073947429657,0.031110908836126,-0.015142537653446],[-0.0050371740944684,0.0056356214918196,0.052334945648909],[-0.025490533560514,0.060178861021996,0.077201195061207]],[[-0.0062859049066901,0.034075558185577,-0.018775967881083],[0.072254121303558,-0.02960080653429,0.042464073747396],[0.12056674808264,0.097115568816662,-0.01143242418766]],[[0.0054978653788567,0.002492290455848,-0.034377131611109],[0.027354832738638,-0.0071361945010722,-0.0029488459695131],[0.023342806845903,0.027938703075051,0.070053398609161]],[[-0.031642381101847,0.0040593445301056,0.067359007894993],[-0.0048156725242734,-0.011918026022613,-0.0018970771925524],[0.004564197268337,-0.030697325244546,0.044329740107059]],[[-0.073156207799911,0.1027557477355,0.071832433342934],[0.015794118866324,-0.0053439666517079,-0.017515512183309],[-0.06163739785552,-0.057954102754593,0.087921738624573]],[[-0.018367638811469,0.11694657802582,0.0040227919816971],[0.02613046951592,-0.024504398927093,-0.0041422392241657],[0.0067624701187015,-0.034501582384109,0.020620856434107]],[[0.058887545019388,-0.0050246738828719,0.051352195441723],[-0.042474038898945,0.092462107539177,0.06138564646244],[0.006944720633328,-0.013606064021587,0.00035969523014501]],[[0.022988369688392,-0.0065379058942199,-0.00082757807103917],[-0.068175688385963,0.051194906234741,-0.05406916514039],[-0.025488534942269,0.059710994362831,-0.055518947541714]],[[-0.0070613850839436,-0.013001720421016,0.0071699591353536],[-0.076175391674042,0.017179636284709,-0.020591087639332],[0.060895331203938,0.0023781233467162,0.06246741861105]],[[0.010866035707295,-0.068903408944607,0.0047381133772433],[0.031565722078085,0.012126559391618,0.02899356558919],[-0.010415837168694,0.015051078982651,-0.027969753369689]],[[0.011714154854417,0.080035850405693,0.034383330494165],[0.013004975393414,0.013266418129206,0.061889220029116],[1.3603659681394e-05,-0.034999009221792,-0.029208291321993]],[[-0.035317968577147,-0.082361876964569,0.006868174765259],[0.021978370845318,-0.0018315310589969,0.035299960523844],[-0.057515505701303,0.049798794090748,0.0081999897956848]],[[-0.054638393223286,0.015731558203697,-0.023290036246181],[-0.0016448000678793,-0.045637350529432,0.034294944256544],[0.02806824631989,-0.04796975851059,0.043204385787249]],[[-0.04492512345314,-0.066577196121216,-0.067628264427185],[0.034576714038849,0.069230534136295,0.056448869407177],[0.030725149437785,-0.024241151288152,0.052804365754128]],[[-0.048665732145309,0.010081307031214,-0.0067643113434315],[-0.011208552867174,0.10580015927553,-0.007239100523293],[0.088177934288979,-0.050285413861275,-0.090886056423187]],[[0.036761630326509,0.014610687270761,-0.038092125207186],[0.008928612805903,-0.046386636793613,-0.032747779041529],[-0.0023645309265703,-0.0048734969459474,-0.037660870701075]],[[0.074504137039185,0.050574898719788,0.027349097654223],[-0.042185887694359,-0.0029311135876924,-0.06799304485321],[0.010498125106096,0.078370928764343,-0.0017206912161782]],[[0.012047468684614,-0.072079263627529,-0.021766144782305],[0.035839255899191,0.015331005677581,0.045307230204344],[0.048081543296576,-0.019536321982741,-0.0081627862527966]],[[-0.016003504395485,-0.027406252920628,0.026170898228884],[0.040818601846695,-0.0097203617915511,0.032010469585657],[0.022433239966631,0.0090139461681247,-0.021224699914455]],[[0.012662775814533,0.033742025494576,-0.0019568374846131],[-0.1160516217351,0.050070263445377,0.042870905250311],[0.029644085094333,0.055056214332581,0.013070345856249]],[[0.03977369889617,-0.070020973682404,0.033632639795542],[-0.031272161751986,0.013260468840599,-0.0010450389236212],[0.10406053066254,0.088380366563797,0.050834722816944]],[[0.042456340044737,0.012979118153453,-0.015984050929546],[-0.065271183848381,-0.021049864590168,0.0052291471511126],[-0.067369945347309,-0.047767542302608,0.058857765048742]],[[-0.023817099630833,0.016057251021266,0.055675935000181],[-0.018648626282811,-0.0083887903019786,0.11383999884129],[0.044103521853685,-0.022504569962621,-0.0091303512454033]],[[0.027811562642455,-0.014034409075975,0.0040504075586796],[0.025615461170673,-0.043844122439623,0.025217637419701],[-0.031803619116545,0.062924414873123,-0.034487169235945]],[[-0.0015122247859836,-0.027876410633326,-0.040697421878576],[-0.032668881118298,0.06113563105464,-0.0043980590999126],[0.011206689290702,0.017083121463656,0.0036161979660392]],[[0.040359895676374,0.010363162495196,-0.01279691234231],[0.022869199514389,-0.0077008055523038,0.043045844882727],[-0.033004034310579,0.028708571568131,-0.058826301246881]],[[-0.0189104154706,-0.012675086036325,-0.002149160252884],[-0.06031708419323,0.0067775803618133,-0.021018007770181],[0.023246221244335,-0.031747851520777,-0.029519924893975]],[[-0.0056315986439586,0.04517975077033,-0.012258536182344],[-0.060003209859133,-0.035340897738934,-0.10275782644749],[0.085815757513046,-0.037714499980211,0.039012130349874]],[[-0.012999603524804,-0.010779719799757,0.02036252245307],[-0.0041174595244229,-0.0070128352381289,0.0051545123569667],[-0.073161959648132,0.040114875882864,0.025749342516065]],[[0.032033156603575,0.02391105890274,-0.043744325637817],[0.030704509466887,-0.044256761670113,-0.017356896772981],[0.040782626718283,-0.031414281576872,-0.04855152592063]],[[-0.030151212587953,0.039863288402557,-0.030190149322152],[0.024129539728165,0.042834270745516,0.027888534590602],[0.033698983490467,0.010405838489532,0.013413401320577]],[[0.038657959550619,-0.053652510046959,-0.0046302084811032],[-0.033318303525448,0.034806754440069,0.010311717167497],[0.0092045664787292,-0.069680757820606,0.043555613607168]],[[0.022282749414444,0.086877889931202,-0.072191007435322],[0.037688970565796,-0.044717717915773,0.0081557286903262],[0.041300728917122,0.013339099474251,0.0091554569080472]],[[-0.034993905574083,0.022148806601763,0.037190958857536],[0.016197552904487,0.044723730534315,0.04016649723053],[-0.022849274799228,0.021356903016567,0.026989551261067]],[[0.0085080405697227,-0.02208037301898,-0.021725006401539],[0.013805600814521,-0.068589895963669,-0.0034676324576139],[0.0096596525982022,0.003454799996689,-0.0071692611090839]],[[0.02488892711699,0.042597349733114,-0.020100183784962],[-0.032476544380188,0.13965971767902,0.10690575093031],[0.051746852695942,0.054944079369307,-0.023155864328146]],[[0.010269472375512,0.072249449789524,0.021743480116129],[-0.062494296580553,-0.0033954593818635,-0.042528759688139],[0.04190532118082,-0.038028985261917,-0.036761295050383]],[[0.030915148556232,-0.0068683694116771,0.03267389908433],[0.0052505424246192,-0.028688868507743,-0.011512530036271],[0.022374080494046,-0.021044200286269,-0.0086825666949153]],[[0.11138684302568,-0.03946029022336,-0.035788826644421],[-0.034059107303619,0.0078016547486186,0.028622722253203],[0.0062020570039749,-0.012292773462832,-0.019124295562506]],[[0.090649873018265,0.072147414088249,0.044169697910547],[0.014331398531795,0.08409221470356,0.0098867770284414],[-0.03314246982336,-0.03568958491087,-0.0039631677791476]],[[0.086347818374634,0.024384854361415,0.10680168122053],[0.01522868219763,0.0060268552042544,0.0072115091606975],[0.0084844008088112,-0.001140872715041,-0.010983845219016]],[[0.034297935664654,-0.041568133980036,0.002841696375981],[0.025559645146132,-0.054533526301384,0.0073721534572542],[-0.023862099274993,-0.056399241089821,-0.0064526149071753]],[[0.017050186172128,-0.029481541365385,-0.072711743414402],[-0.0047908397391438,-0.044754222035408,-0.056615062057972],[-0.01326088886708,0.042785231024027,0.072506658732891]],[[0.012036646716297,-0.018710052594543,-0.020355932414532],[0.032925620675087,0.022472631186247,0.022388752549887],[0.007390751503408,0.082806400954723,0.035848286002874]],[[0.042944487184286,0.023070018738508,0.051937345415354],[0.014053747989237,0.036620616912842,-0.068046346306801],[0.023433176800609,0.035556435585022,-0.00080417736899108]],[[0.0075278929434717,0.0016198767116293,0.01329786144197],[0.014940883032978,0.010152211412787,0.015509207732975],[0.01484680455178,-0.044362735003233,0.03864524513483]],[[-0.025886364281178,0.014540862292051,-0.037819780409336],[0.00032422575168312,0.013775584287941,-0.015600165352225],[-0.065432623028755,-0.0012790269684047,-0.0087328115478158]],[[-0.093945391476154,-0.004218443762511,0.098769202828407],[0.061781138181686,0.0022528993431479,0.0031694513745606],[0.033961329609156,-0.016239084303379,0.062295891344547]],[[-0.036417528986931,0.033341716974974,0.047387514263391],[0.054440464824438,-0.023804763332009,0.016474595293403],[-0.064855001866817,0.019272973760962,0.037627704441547]],[[-0.032960820943117,0.013357249088585,0.013362581841648],[-0.038321517407894,-0.021662535145879,0.0683958157897],[0.073910892009735,0.033927094191313,0.016250448301435]],[[-0.034790273755789,0.016501838341355,-0.053668860346079],[-0.014287064783275,-0.010475570335984,0.022186379879713],[0.045600481331348,0.049006808549166,0.0069374754093587]],[[0.036846842616796,-0.01741910725832,-0.071764007210732],[-0.036136027425528,0.070849679410458,-0.021106304600835],[-0.0044751432724297,-0.051955260336399,-0.021371621638536]],[[-0.018314426764846,0.0036052600480616,0.002578318817541],[0.0632593780756,0.034255530685186,0.020344162359834],[-0.053971730172634,0.044177588075399,0.040394656360149]],[[-0.020321968942881,0.11332474648952,0.018034372478724],[0.089517638087273,0.011046227999032,-0.065265841782093],[0.026340246200562,-0.031449265778065,0.00080197642091662]],[[-0.061980966478586,-0.0014794151065871,-0.0047165919095278],[0.049743015319109,-0.095919832587242,-0.0037244965787977],[0.0026357970200479,0.042787082493305,-0.015290229581296]],[[0.013672640547156,-0.048776049166918,-0.018361631780863],[0.0017968902830034,-0.073565073311329,0.10821777582169],[-0.027928151190281,0.021303810179234,-0.018981223925948]],[[0.059117060154676,-0.027461428195238,0.072683081030846],[-0.039202857762575,-0.065235920250416,-0.011111846193671],[-0.017724689096212,-0.04333807528019,-0.0048643532209098]],[[0.042075768113136,0.0071987933479249,0.036418315023184],[0.0061324695125222,0.029112376272678,0.097262986004353],[-0.019683694466949,0.072949968278408,0.024685030803084]],[[0.0073748654685915,0.01796711795032,0.089302249252796],[-0.079230129718781,0.074255563318729,0.0020557772368193],[0.090346477925777,0.012590598315001,0.017729165032506]],[[-0.022631911560893,0.072057507932186,-0.016024073585868],[0.028614893555641,0.028765998780727,0.0080687087029219],[0.070975042879581,0.05578363314271,0.010567677207291]],[[0.024350443854928,0.019221866503358,0.025220714509487],[-0.026321530342102,0.048191614449024,-0.017522778362036],[-0.034874081611633,0.0066536902450025,-0.059943970292807]],[[0.050186280161142,0.011699190363288,0.00029563033604063],[0.01920460537076,0.05312567949295,-0.070061631500721],[0.03138866648078,-0.021491210907698,0.042630638927221]],[[-0.04623968526721,-0.012515303678811,0.0048835943453014],[0.002017940627411,0.031495042145252,-0.050010539591312],[0.044694859534502,0.025393599644303,0.017099421471357]],[[0.054298501461744,0.022546153515577,0.020379671826959],[0.0089553147554398,0.029971005395055,0.098034344613552],[-0.038336478173733,0.025411082431674,0.024450335651636]],[[0.024138303473592,0.040506143122911,-0.059879053384066],[0.021273214370012,-0.0016391230747104,-0.061729460954666],[0.0048410347662866,-0.029082158580422,0.045290071517229]],[[-0.0080436300486326,0.02235453017056,-0.018929116427898],[0.0096953548491001,-0.030949296429753,-0.017803331837058],[-0.027051199227571,0.043311182409525,0.020723294466734]],[[-0.0087633682414889,-0.094156600534916,-0.0082693276926875],[-0.032872710376978,-0.05437047034502,0.039682738482952],[0.065154477953911,-0.045241851359606,0.026836374774575]],[[-0.01059281360358,-0.039839141070843,-0.061825919896364],[-0.046796500682831,-0.048590801656246,-0.018784463405609],[0.023295572027564,0.029124481603503,-0.066242352128029]],[[0.0038917839992791,0.044544480741024,0.030391735956073],[0.040024001151323,-0.0098596513271332,0.016647530719638],[0.015018991194665,0.031608425080776,-0.013007147237659]],[[-0.022413214668632,-0.021687220782042,-0.072153568267822],[0.10686513036489,-0.029322691261768,0.042703777551651],[-0.012493040412664,0.046223118901253,-0.021832903847098]],[[0.044718869030476,0.012385661713779,0.051253937184811],[0.020500445738435,-0.0071788015775383,-0.0070262718945742],[-0.064456135034561,0.073191270232201,0.0059606917202473]],[[-0.093013018369675,0.037852972745895,0.034218668937683],[-0.055933993309736,-0.0099742719903588,-0.058063756674528],[0.042571701109409,0.0083558904007077,0.0074710627086461]],[[0.0074110277928412,0.04335805028677,0.0077611478045583],[-0.0001885540841613,-0.00020263410988264,0.045514471828938],[0.01233363058418,-0.038720361888409,0.039209585636854]],[[0.017598757520318,-0.010320419445634,0.03206828981638],[-0.01142938900739,0.05404856801033,-0.056202437728643],[-0.049647141247988,0.033799193799496,0.022836031392217]],[[-0.0016978427302092,-0.020893841981888,0.036454614251852],[0.049764577299356,0.023105522617698,0.021891118958592],[-0.033427037298679,0.03184961900115,-0.016839442774653]],[[-0.027813632041216,0.05585977435112,-0.020664531737566],[-0.063859879970551,-0.020518740639091,0.0066228955984116],[0.039126709103584,-0.016757894307375,-0.019805794581771]],[[0.017907528206706,-0.011495357379317,0.069134011864662],[0.019977228716016,-0.032502319663763,0.047065209597349],[0.063392356038094,-0.061686273664236,-0.031389579176903]],[[0.025238078087568,0.023930970579386,-0.028996530920267],[0.043275367468596,0.016348728910089,0.047640576958656],[0.00069477368379012,0.0041350359097123,0.013848099857569]],[[0.038921520113945,0.089464664459229,0.067638054490089],[0.052620898932219,-0.014943620190024,-0.034771747887135],[0.010011731646955,0.074936419725418,-0.0097207333892584]],[[-0.069371074438095,0.15013167262077,-0.010177243500948],[0.059955224394798,0.06490096449852,-0.027148207649589],[0.013306772336364,-0.026692552492023,-0.061358381062746]],[[0.038369406014681,0.014109455049038,-0.047667264938354],[-0.0010792283574119,-0.0053275995887816,-0.024430871009827],[0.079012908041477,0.025454381480813,0.025994893163443]],[[0.019878719002008,0.049730531871319,0.058168780058622],[0.031715538352728,0.030310882255435,0.0010540450457484],[0.042161785066128,0.018736332654953,0.047221824526787]],[[0.08482438325882,0.020251236855984,-0.021046672016382],[0.047337640076876,-0.020352005958557,-0.017923723906279],[0.011651441454887,-0.015342908911407,0.0068665375001729]],[[-0.01472990680486,-0.0017039531376213,-0.047574959695339],[0.015844747424126,-0.049331340938807,0.044268772006035],[0.057043083012104,0.0019183667609468,0.013573672622442]],[[-0.0035916196648031,0.073701798915863,-0.066901795566082],[-0.040515404194593,0.010979535989463,0.0027515180408955],[-0.019167304039001,-0.012736291624606,0.048081737011671]],[[0.022968309000134,0.023711053654552,0.0057050888426602],[0.036142662167549,0.064324177801609,-0.043671004474163],[0.05182146281004,0.029159713536501,0.061863481998444]],[[-0.027774754911661,-0.0070133088156581,0.028582692146301],[-0.0079856812953949,0.026087956503034,0.011221333406866],[-0.0060584703460336,-0.037370778620243,-0.046914517879486]],[[0.057013671845198,0.023520931601524,-0.0070039355196059],[0.032202634960413,-0.098105154931545,-0.036761164665222],[-0.048609297722578,-0.015639994293451,-0.043714374303818]],[[-0.0069981329143047,-0.024568086490035,-0.012672633863986],[0.023606082424521,0.033874198794365,-0.036577135324478],[-0.055716253817081,0.081816345453262,-0.063915275037289]],[[0.044194351881742,-0.039508350193501,0.025559827685356],[0.005621715914458,0.004636004101485,0.077959202229977],[0.011282037012279,0.032861534506083,-0.013147069141269]],[[0.017737301066518,-0.019033242017031,-0.093853898346424],[0.032074764370918,-0.041886445134878,0.032498493790627],[0.013724319636822,0.043692719191313,0.022817311808467]],[[-0.0040754927322268,-0.056141369044781,-0.017004540190101],[-0.02824597992003,0.0099526960402727,0.017703516408801],[0.001425864174962,-0.0019758970011026,0.023123851045966]],[[-0.014351793564856,-0.051666032522917,0.026706198230386],[-0.034116446971893,0.0097707277163863,-0.05436821654439],[0.02342601493001,0.023785872384906,0.038697652518749]],[[-0.031667854636908,0.040038548409939,0.11933515220881],[-0.034991022199392,0.039404228329659,0.01264010835439],[0.042012985795736,-0.027732597663999,0.0028822261374444]],[[0.0059569012373686,-0.023815987631679,0.049008771777153],[-0.071801520884037,0.046168308705091,0.03434082493186],[-0.030856711789966,-0.058854080736637,0.071219138801098]],[[0.021664736792445,0.074994303286076,0.072241671383381],[-0.016059210523963,-0.015991125255823,0.098188042640686],[-0.058884877711535,0.0055077862925828,-0.0074232714250684]],[[0.056633740663528,0.032222889363766,0.021754609420896],[-0.0050439303740859,-0.018117159605026,-0.032271161675453],[0.034140076488256,0.067603804171085,0.0017177152913064]],[[0.043332166969776,0.076329208910465,0.03489076718688],[-0.028039077296853,0.046960301697254,-0.047364056110382],[-0.054706811904907,0.013766673393548,0.044600661844015]],[[-0.029486291110516,0.090817034244537,0.098834462463856],[-0.042478203773499,-0.026886478066444,0.0020199376158416],[0.05482267215848,-0.0092542767524719,-0.055832888931036]],[[-0.0054574706591666,0.065160632133484,-0.027957672253251],[-0.035654213279486,-0.025898704305291,-0.0037041027098894],[0.029718184843659,-0.032871048897505,0.023483961820602]],[[0.025107599794865,-0.029648983851075,0.006427951157093],[-0.062786251306534,-0.0099657885730267,0.052604284137487],[0.055638302117586,0.024510238319635,-0.0056669395416975]],[[0.0052376044914126,0.051856610924006,-0.019284345209599],[0.063956871628761,-0.066269114613533,0.017477029934525],[0.0070749069564044,0.031133029609919,-0.047330178320408]],[[-0.019012631848454,-0.029929811134934,0.0053155147470534],[-0.0045528551563621,-0.03268076479435,0.069256126880646],[0.039186183363199,0.0071260132826865,-0.068166851997375]],[[0.011418175883591,-0.011283138766885,0.077567718923092],[-0.0054197795689106,0.069367408752441,0.045716028660536],[-0.036396991461515,-0.029786322265863,0.070107743144035]],[[0.01835111528635,-0.0040388312190771,0.02628243342042],[-0.0091973971575499,0.030070358887315,-0.03236448019743],[-0.0042502358555794,-0.053146410733461,0.0092171132564545]],[[0.019290966913104,0.0083927102386951,-0.066087126731873],[-0.028208814561367,0.019657814875245,0.029168153181672],[-0.074289619922638,0.012768334709108,0.022674351930618]],[[-0.015979578718543,-0.006591931451112,0.029439015313983],[0.029414460062981,-0.029685275629163,0.0732696428895],[0.065411753952503,0.014428932219744,-0.0078155444934964]],[[0.013130916282535,0.0078549440950155,0.047322887927294],[0.019024698063731,0.027275394648314,0.02423052303493],[0.026358788833022,-0.031365588307381,0.016965495422482]],[[-0.05493475869298,0.024754932150245,0.067165710031986],[0.047941513359547,0.018458649516106,0.033558577299118],[0.087785124778748,-0.042234871536493,0.0020705088973045]],[[0.00063066312577575,0.010755373165011,-0.016478281468153],[-0.072217337787151,0.087591230869293,0.020180121064186],[-0.0013802677858621,-0.030253177508712,0.085776761174202]],[[0.042716026306152,-0.016525041311979,-0.010753081180155],[-0.0055429870262742,-0.0020590259227902,-0.010023792274296],[0.050956442952156,-0.021335508674383,-0.0080094961449504]],[[-0.059196282178164,-0.012184374965727,-0.050103168934584],[0.027606481686234,-0.0084471683949232,0.05306988582015],[-0.0027786199934781,-0.0020223231986165,0.026309991255403]],[[-0.011509115807712,-0.029206803068519,-0.0091529972851276],[0.030711626634002,0.04294016957283,-0.012191656976938],[0.026728855445981,0.016057400032878,-0.013212515041232]],[[0.091801188886166,0.038436315953732,0.019762540236115],[-0.057460147887468,0.031401418149471,-0.057597544044256],[-0.016048368066549,0.026249885559082,-0.0400245860219]],[[-0.048870343714952,-0.028982585296035,0.017055343836546],[-0.021516904234886,0.04031889513135,-0.025511920452118],[0.046602312475443,0.024650599807501,0.022696033120155]],[[0.0032145588193089,-0.058183543384075,0.001283144345507],[-0.034290432929993,0.030403729528189,0.0087184654548764],[-0.032594829797745,-0.093636356294155,0.03057005815208]],[[0.037256423383951,-0.010788679122925,0.052274808287621],[-0.036079425364733,-0.059039935469627,0.0060243532061577],[0.06280355155468,-0.05678466334939,0.015285453759134]],[[0.037108328193426,0.010875159874558,-0.0044840718619525],[0.0072771920822561,-0.019259260967374,0.020974304527044],[-0.0041816947050393,0.02817009948194,-0.069970443844795]],[[-0.017224702984095,-0.0088662998750806,-0.00064153294079006],[0.063774667680264,0.042332943528891,-0.0066359518095851],[-0.023432184010744,0.018505852669477,-0.0094340359792113]],[[-0.0047728610225022,0.064206570386887,0.0026519002858549],[-0.052004847675562,-0.016600454226136,-0.051139965653419],[-0.067665256559849,0.014730979688466,-0.050325769931078]]],[[[0.054198380559683,0.0027226875536144,-0.054856222122908],[-0.058691538870335,0.085835464298725,0.042656634002924],[-0.016533493995667,0.086963228881359,-0.010481244884431]],[[-0.031411565840244,-0.025615133345127,0.05445272102952],[0.010353752411902,-0.0074317585676908,-0.056326005607843],[-0.045656640082598,0.026273015886545,-0.059683058410883]],[[0.092676997184753,-0.027137404307723,-0.054220125079155],[0.017777981236577,-0.011697207577527,0.0052288486622274],[0.0265230871737,0.0099850567057729,-0.0099886422976851]],[[0.051821459084749,0.019589690491557,0.10990153253078],[-0.011909743770957,0.011480531655252,0.086779825389385],[0.069194629788399,0.082443498075008,-0.023151153698564]],[[0.016750559210777,0.0098458491265774,0.010709195397794],[-0.025564419105649,-0.0099570797756314,-0.0014113649958745],[0.0067983823828399,-0.015471720136702,-0.081577382981777]],[[0.091244123876095,0.050093896687031,0.032897066324949],[0.081482402980328,0.029636025428772,0.026144383475184],[0.069255903363228,-0.017680613324046,0.13497702777386]],[[-0.02041370049119,0.057951014488935,-0.088951840996742],[0.03932486474514,-0.038271803408861,0.034852456301451],[-0.053506929427385,0.053367268294096,-0.035073574632406]],[[-0.098170831799507,-0.014781291596591,-0.010790601372719],[0.031935222446918,-0.020255893468857,0.1019859239459],[-0.07463650405407,-0.006764646153897,0.010671499185264]],[[0.066579088568687,0.031184922903776,-0.032931040972471],[0.037714529782534,0.0032603584695607,0.00058563560014591],[0.046050284057856,0.027983672916889,0.0022817417047918]],[[0.013845395296812,0.013410773128271,-0.033564522862434],[-0.054786391556263,0.052018336951733,0.087061516940594],[-0.058325316756964,0.028566714376211,-0.052664663642645]],[[0.022721445187926,-0.07815770804882,0.055402003228664],[0.051604766398668,0.061293214559555,0.03560721129179],[-0.060002326965332,0.10795547068119,0.0023389770649374]],[[0.038082279264927,-0.084698095917702,0.049881741404533],[0.032595951110125,0.0015601454069838,0.041902374476194],[0.06086552888155,0.026867156848311,0.041613686829805]],[[0.017246788367629,-0.086146108806133,0.048536445945501],[-0.0096335029229522,0.022968776524067,-0.061743143945932],[-0.016286415979266,0.009705176576972,0.022901616990566]],[[-0.036769550293684,0.070626959204674,0.081611536443233],[0.010307805612683,0.052067577838898,-0.065287791192532],[-0.058887273073196,-0.016063021495938,0.05192669481039]],[[0.045178223401308,-0.021348869428039,0.078885994851589],[-0.071805894374847,0.012269504368305,0.062856905162334],[0.13660858571529,0.0040709930472076,-0.027252795174718]],[[-0.0055296667851508,0.010904924944043,0.013668538071215],[0.030334614217281,-0.0046155890449882,-0.033063415437937],[-0.091046661138535,-0.066335931420326,0.039206378161907]],[[0.0066448138095438,0.061997339129448,-0.047126241028309],[0.094181805849075,-0.022286640480161,0.051384307444096],[0.016200359910727,0.038167968392372,0.052705302834511]],[[0.09222649782896,-0.010184878483415,0.060654986649752],[-0.04341908171773,0.011277914047241,0.09863093495369],[-0.088692083954811,-0.032768923789263,-0.004648907110095]],[[0.169527977705,-0.074237793684006,0.021156268194318],[-0.038822375237942,-0.038877904415131,-0.046618863940239],[0.047058306634426,0.0058467332273722,0.051318895071745]],[[-0.040082138031721,0.090462066233158,-0.048300877213478],[-0.052119340747595,-0.063340499997139,0.029442999511957],[0.04848800227046,0.069915324449539,-0.033523473888636]],[[0.0024684981908649,0.01136364415288,-0.018342697992921],[0.062859058380127,-0.0040350505150855,0.031253524124622],[0.0031279202084988,0.043168228119612,-0.042067684233189]],[[-0.067797414958477,0.049454748630524,0.044160094112158],[0.06276448816061,0.051032029092312,0.0082978066056967],[0.02067718282342,-0.013947119005024,0.033262964338064]],[[0.06085330247879,-0.035484235733747,-0.036581732332706],[-0.057498723268509,0.059528984129429,-0.019659934565425],[0.044848307967186,0.012416562996805,0.0087093245238066]],[[0.058462515473366,0.10994122177362,0.024702535942197],[-0.0083770966157317,-0.056028090417385,0.058898102492094],[-0.061541967093945,-0.039346262812614,-0.057073894888163]],[[0.078394800424576,-0.070909306406975,-0.06337832659483],[0.083394385874271,-0.012040466070175,-0.059837482869625],[-0.057730566710234,0.0075561827979982,-0.071743316948414]],[[-0.037125404924154,-0.06165774166584,0.020531242713332],[0.086812533438206,-0.01654333434999,-0.071043647825718],[-0.00059743237216026,-0.014723218046129,0.017159992828965]],[[0.076875202357769,0.064811378717422,0.049818512052298],[-0.032918438315392,0.053535331040621,-0.039073206484318],[0.080974072217941,0.044362857937813,0.016405716538429]],[[0.073456034064293,-0.043302789330482,0.042591281235218],[-0.0038299961015582,0.073515929281712,0.03322022035718],[0.061834052205086,0.0043039913289249,0.032246362417936]],[[-0.0040030074305832,0.058222178369761,0.063114397227764],[0.011335191316903,0.094019964337349,-0.031956914812326],[-0.071043245494366,0.051777482032776,0.062185868620872]],[[0.015945769846439,0.007149220444262,0.15296685695648],[-0.014711138792336,0.078377656638622,-0.039824802428484],[-0.036409847438335,-0.10187637805939,-0.070400908589363]],[[-0.0011481976835057,0.12132683396339,-0.018956113606691],[-0.030831083655357,-0.026973932981491,0.054383531212807],[0.0096646472811699,-0.06088962033391,-0.01894611120224]],[[0.0037506902590394,0.012371329590678,0.0087938383221626],[-0.050701100379229,-0.0033106997143477,-0.049860052764416],[-0.0042901393026114,0.015134764835238,0.089741542935371]],[[0.083325773477554,-0.0632708594203,0.010895914398134],[0.0017515060026199,-0.012346629984677,0.044688977301121],[-0.01652529463172,0.062981359660625,-0.0355394333601]],[[-0.095272898674011,-0.033780731260777,0.0083533460274339],[0.061616122722626,0.016036376357079,-0.033171217888594],[0.02678026817739,0.044585075229406,0.060212995857]],[[-0.00099130172748119,0.096625201404095,-0.020443946123123],[0.076166734099388,0.075230434536934,-0.038660749793053],[0.024472616612911,-0.065170116722584,0.020598312839866]],[[0.048660859465599,-0.0025521037168801,0.030066540464759],[0.028814746066928,0.024998351931572,0.051300473511219],[0.026903804391623,0.042113248258829,0.02173663303256]],[[-0.069336771965027,0.0024111436214298,0.041338823735714],[-0.09914880245924,0.0062678568065166,0.058031424880028],[-0.045856926590204,0.026213565841317,0.035666082054377]],[[-0.0021955291740596,0.026436785236001,-0.0056927716359496],[0.039802521467209,0.0095120258629322,-0.06563550978899],[0.01329152379185,-0.030692836269736,-0.010774353519082]],[[0.00037038495065644,0.039708014577627,0.056663364171982],[0.057042010128498,0.05384698137641,-0.063338778913021],[0.021720526739955,-0.014337136410177,-0.015063221566379]],[[-0.084281012415886,0.117436401546,0.089901246130466],[0.048846919089556,0.041478365659714,0.047117073088884],[0.087516501545906,-0.024890413507819,-0.033197939395905]],[[0.064386427402496,0.089679025113583,-0.0056144595146179],[-0.041161745786667,0.0242356993258,-0.0066594704985619],[0.078679859638214,0.0074521605856717,0.069987699389458]],[[0.020161509513855,0.0058007291518152,0.0089971590787172],[0.02344181202352,-0.024127079173923,0.021337438374758],[0.040325570851564,0.0093261059373617,0.0027091393712908]],[[-0.022581517696381,0.061937116086483,0.0023958988022059],[0.023220343515277,0.071107774972916,-0.051898296922445],[0.12257475405931,0.029269333928823,0.014903350733221]],[[-0.012302624993026,0.027868900448084,0.10836596041918],[-0.004004190210253,-0.027010453864932,-0.010270559228957],[0.011344616301358,0.091128833591938,0.0067755500786006]],[[0.057482331991196,0.01939819380641,0.094343714416027],[0.01993122883141,0.03310289233923,-0.009056992828846],[-0.023909928277135,0.018511470407248,0.023795984685421]],[[-0.032697606831789,-0.027704572305083,0.060819528996944],[-0.037352856248617,0.024278100579977,0.087925642728806],[0.17256273329258,0.019689148291945,0.090920083224773]],[[0.062581785023212,0.070986993610859,0.042362481355667],[0.012513278983533,-0.037086240947247,-0.025931023061275],[-0.07153682410717,0.069985784590244,0.047727834433317]],[[0.052869286388159,-0.086168400943279,0.029734449461102],[-0.00051502569112927,-0.014199759811163,-0.090693265199661],[-0.025493539869785,-0.022754658013582,-0.0026999779511243]],[[-0.017782783135772,-0.035344641655684,0.12191607058048],[0.025787692517042,0.088745839893818,-0.064610362052917],[0.06520190089941,0.037655606865883,0.065935641527176]],[[0.042173072695732,0.044932082295418,0.040961887687445],[0.040529396384954,0.05799113586545,0.034218013286591],[0.054343465715647,-0.13901157677174,0.0070770899765193]],[[-0.079765625298023,-0.039165880531073,-0.021209696307778],[-0.049159355461597,0.039147611707449,0.025447584688663],[0.027512956410646,0.036697998642921,-0.013207255862653]],[[0.056553155183792,0.041823077946901,0.00018893284141086],[0.017090573906898,0.029078474268317,0.06140661239624],[-0.091809466481209,0.017292166128755,0.07327064871788]],[[-0.052779942750931,-0.068495117127895,-0.0031343677546829],[0.038221940398216,-0.016948696225882,0.032156586647034],[-0.07271134108305,-0.055757127702236,0.062528446316719]],[[0.01746890693903,0.10757619142532,-0.035716276615858],[0.027273619547486,0.0018347972072661,0.060088980942965],[-0.025624547153711,-0.058821454644203,-0.084777630865574]],[[0.033878114074469,-0.078138180077076,0.10414578765631],[0.0051409597508609,0.032655861228704,0.013618065044284],[0.011724538169801,0.10543198138475,-0.0017221478046849]],[[-0.075295940041542,-0.0025974656455219,-0.024326808750629],[0.0039856848306954,0.0087192514911294,0.10125572234392],[-0.025365974754095,0.021605804562569,-0.00039954687235877]],[[0.045829955488443,-0.0014536216622218,0.060246858745813],[0.0048171263188124,-0.038619145750999,-0.0226980894804],[-0.0019161456730217,-0.0033316004555672,-0.00067158957244828]],[[0.011991423554718,0.040310427546501,0.098380528390408],[0.035653155297041,0.011538729071617,-0.0014503430575132],[0.033658053725958,0.062052614986897,-0.085098221898079]],[[0.045201648026705,-0.026616772636771,0.062354177236557],[0.10877301543951,-0.021056873723865,0.02418446354568],[0.044076140969992,0.073477990925312,-0.017321491613984]],[[0.071420170366764,0.049708135426044,-0.009680749848485],[0.043760031461716,0.011132937856019,0.074596576392651],[0.067639477550983,0.067614175379276,0.063185229897499]],[[-0.031008409336209,0.083990208804607,0.044696714729071],[0.044052165001631,-0.041671954095364,0.10350327938795],[-0.022313004359603,0.0053346119821072,-0.067186519503593]],[[-0.048856522887945,-0.022982785478234,0.036004554480314],[0.0098750963807106,-0.040739011019468,0.10001868009567],[-0.00066948280436918,-0.012680211104453,-0.012835311703384]],[[0.021080866456032,0.02495489642024,0.10813532024622],[-0.016836434602737,-0.019560873508453,0.080676056444645],[0.090935677289963,0.031258698552847,-0.056398760527372]],[[0.06366253644228,0.016945136711001,-0.015530344098806],[0.12129244953394,0.045292273163795,0.070353753864765],[0.072182953357697,-0.010084670037031,0.025906521826982]],[[0.055111646652222,0.016624109819531,-0.068408891558647],[0.051488436758518,-0.048445574939251,-0.060414426028728],[0.0147501565516,0.040462624281645,0.031251050531864]],[[-0.00019382644677535,-0.058863781392574,-0.039895974099636],[0.036902140825987,0.013774215243757,0.0093385959044099],[0.11411356180906,-0.043617408722639,-0.11582816392183]],[[-0.042595878243446,-0.054198704659939,0.0025944742374122],[0.037255104631186,0.041695013642311,0.040940247476101],[0.12393413484097,0.092824347317219,0.0088475504890084]],[[0.033526107668877,0.027857691049576,0.0077731120400131],[0.067371964454651,0.022024432197213,0.067837089300156],[0.084872663021088,-0.00084321451140568,0.046468961983919]],[[0.083244912326336,0.031919792294502,0.016667230054736],[0.030103025957942,0.041761007159948,0.024157518520951],[0.036748442798853,0.037375703454018,0.081122562289238]],[[0.082232959568501,0.0049849241040647,0.080384194850922],[-1.0452336027811e-05,0.060534931719303,-0.061009913682938],[0.11034998297691,0.025806425139308,-0.057407706975937]],[[0.058913256973028,0.013632217422128,-0.069835267961025],[-0.03575412556529,-0.018393758684397,0.10537406802177],[0.032899759709835,0.034752108156681,-0.089430809020996]],[[0.038947179913521,0.091381296515465,-0.01805566623807],[0.053869679570198,0.022985016927123,0.05783661454916],[0.048632152378559,0.11175645142794,-0.01212667580694]],[[0.026285348460078,0.045028537511826,0.023557981476188],[-0.0061317505314946,0.053385660052299,0.062119919806719],[0.0089090643450618,0.011589474976063,0.066863723099232]],[[-0.03824558109045,-0.0059497440233827,0.036656673997641],[0.00090934516629204,-0.062293794006109,-0.084554985165596],[0.031517121940851,-0.081747196614742,0.035916067659855]],[[0.020818011835217,0.07162918150425,0.031949751079082],[0.016458371654153,-0.022961700335145,-0.039226308465004],[-0.0045884782448411,-0.0067185387015343,-0.029532691463828]],[[-0.010312485508621,0.014251213520765,0.052866712212563],[0.067989453673363,-0.030055984854698,0.020569061860442],[-0.045424427837133,-0.059868544340134,0.019308811053634]],[[0.066371753811836,0.0077868672087789,-0.0079806800931692],[0.068040087819099,0.015584781765938,0.041446845978498],[0.013845809735358,0.07915335893631,0.064634412527084]],[[0.045977242290974,-0.016664544120431,0.018000448122621],[-0.0099820261821151,-0.024215560406446,-0.026381971314549],[0.053527686744928,0.085619941353798,0.05956694111228]],[[0.010496584698558,-0.013625125400722,0.079948365688324],[-0.024240352213383,0.039398830384016,0.020524084568024],[0.039506118744612,-0.020940154790878,-0.030403096228838]],[[-0.042462516576052,1.3679894436791e-05,0.0001400375913363],[0.023091647773981,0.013222282752395,0.013621558435261],[-0.029165528714657,0.0046975631266832,-0.022677863016725]],[[-0.021491250023246,0.043290033936501,0.068161964416504],[0.012790049426258,0.057255160063505,0.030709244310856],[0.037023469805717,0.017783768475056,0.030802758410573]],[[0.050823580473661,0.087519511580467,0.08714983612299],[0.023374078795314,0.0015690908767283,0.07736910879612],[-0.047350011765957,-0.028779778629541,0.05191533267498]],[[0.0018238226184621,-0.0055251209996641,-0.036371275782585],[0.066006734967232,0.0060982396826148,0.12473449110985],[0.052124440670013,0.032885428518057,0.030283013358712]],[[0.077431902289391,0.033288192003965,0.026817115023732],[-0.025511864572763,0.045848656445742,0.0027851895429194],[0.029146816581488,-0.024674743413925,-0.074327677488327]],[[0.053868871182203,-0.04811479523778,0.1115156263113],[0.01951683498919,0.077449858188629,-0.027071150019765],[-0.073971197009087,-0.024597087875009,0.097718261182308]],[[-0.048574592918158,-0.01711711101234,-0.0039508058689535],[-0.013138120993972,-0.0042004459537566,-0.0037409104406834],[-0.03930851817131,0.018029071390629,0.03148403018713]],[[0.025486472994089,0.046409491449594,0.010637156665325],[-0.043328527361155,0.022870207205415,0.035898227244616],[0.074084669351578,0.076448366045952,-0.047617714852095]],[[-0.0085378447547555,-0.06156363338232,0.0091695757582784],[-0.034090403467417,0.035406202077866,0.022876756265759],[0.014151321724057,0.061211071908474,-0.032858300954103]],[[0.026007262989879,-0.11867320537567,-0.020671188831329],[0.046167384833097,0.047404482960701,0.04168826341629],[-0.025227159261703,0.0073640923947096,0.053874474018812]],[[0.066283352673054,-0.02976948954165,0.028170347213745],[0.092244528234005,0.079232916235924,0.063595861196518],[-0.047054339200258,0.10956602543592,0.011637241579592]],[[0.0021261943038553,0.070636533200741,0.019333908334374],[0.031259819865227,-0.039533752948046,-0.044659484177828],[-0.076985873281956,-0.087268345057964,-0.00054221937898546]],[[0.051260516047478,-0.020329158753157,0.0071146902628243],[0.020483028143644,0.064505510032177,0.069876775145531],[-0.0095155546441674,0.089600034058094,0.050185766071081]],[[0.026894174516201,0.019915988668799,0.0074690394103527],[0.0078706322237849,0.055973067879677,0.091029182076454],[0.050577215850353,-0.038231216371059,0.0089431703090668]],[[-0.031590793281794,-0.12197861075401,0.11305987089872],[0.030401324853301,0.044135693460703,0.038549803197384],[0.11054620146751,0.0043681589886546,-0.011202399618924]],[[0.0035330094397068,-0.019095912575722,-0.037258233875036],[0.0048774112947285,-0.0059461602941155,-0.035729337483644],[0.065963670611382,-0.062766648828983,-0.01866452023387]],[[0.03380174934864,0.039597667753696,-0.054265096783638],[0.045566167682409,0.035971641540527,0.034234296530485],[-0.020224837586284,-0.0009391576750204,0.025334719568491]],[[0.035561602562666,-0.026932695880532,-0.020758971571922],[-0.033159952610731,0.030151372775435,-0.011493385769427],[0.025154387578368,0.0035538920201361,-0.096399948000908]],[[-0.036975521594286,-0.013670871034265,0.071815766394138],[0.01518574450165,-0.020007696002722,0.059236474335194],[0.028151925653219,0.13743507862091,-0.041865091770887]],[[0.046784996986389,-0.030210798606277,0.090737245976925],[-0.0061796545051038,0.032718427479267,0.057579342275858],[0.018684543669224,-0.022511042654514,0.038680650293827]],[[-0.035796105861664,-0.041189126670361,0.040071118623018],[0.051368799060583,0.078070759773254,-0.017106831073761],[0.065125361084938,0.036402761936188,0.031348884105682]],[[-0.047444451600313,0.010059929452837,-0.04528059437871],[0.0081820897758007,-0.0098255006596446,0.027505643665791],[-0.056585155427456,0.037745829671621,0.044960077852011]],[[0.050865925848484,0.07876905053854,0.033588986843824],[0.06161605194211,-0.020810535177588,0.028239266946912],[0.068588145077229,0.017279073596001,-0.034301996231079]],[[-0.04857536777854,0.031133225187659,0.03515524789691],[-0.07482048869133,-0.027050176635385,-0.072496332228184],[-0.017986383289099,-0.053080223500729,0.048651214689016]],[[-0.01137597952038,0.026947194710374,0.042588137090206],[-0.054504491388798,0.067832544445992,0.03069063834846],[0.03619847074151,-0.0089594917371869,-0.036977022886276]],[[-0.045695837587118,0.0062609626911581,0.049053702503443],[0.021698823198676,-0.011750807985663,0.0010806375648826],[-0.019060607999563,0.0080978767946362,-0.052179340273142]],[[0.029379073530436,0.046340942382812,-0.026818977668881],[-0.059165813028812,0.029709197580814,-0.046662706881762],[-0.0075829271227121,-0.047972921282053,0.078967206180096]],[[-0.01195774320513,0.053104791790247,-0.0027395049110055],[-0.012928298674524,-0.010052437894046,0.063070833683014],[0.02620417997241,-0.0027339630760252,-0.030703887343407]],[[0.064654141664505,0.025194237008691,-0.007134654559195],[0.018282305449247,-0.10666483640671,0.0040889964438975],[0.035001166164875,0.020251965150237,0.061539094895124]],[[0.060204990208149,-0.10820106416941,0.015385454520583],[-0.045782003551722,-0.097923047840595,-0.080020524561405],[0.022812297567725,-0.061440274119377,0.037990275770426]],[[0.031383220106363,-0.062912084162235,0.031685542315245],[0.004208697937429,0.031003125011921,0.046325176954269],[-0.0024032248184085,-0.039492320269346,0.024709917604923]],[[0.045072823762894,-0.11484593153,0.0075376490131021],[-0.022748481482267,0.050514686852694,-0.0071708862669766],[0.014928604476154,0.024455089122057,-0.064713582396507]],[[0.054996002465487,0.048185057938099,0.087230011820793],[0.038627061992884,0.07466945797205,0.015538052655756],[0.10981073230505,-0.0047586928121746,0.084887221455574]],[[0.053253691643476,-0.024293037131429,0.077137857675552],[-0.0039772549644113,-0.00012989981041756,0.013419611379504],[-0.021133780479431,0.0025656644720584,0.12751853466034]],[[0.01612563431263,0.046690497547388,0.035238239914179],[-0.12603314220905,-0.036720253527164,-0.080052271485329],[0.027597552165389,-0.034192565828562,0.050110448151827]],[[0.052172124385834,0.10988559573889,-0.051821433007717],[-0.053066950291395,0.019810885190964,0.086096048355103],[-0.024443877860904,0.07881486415863,-0.02849061973393]],[[0.040893241763115,0.039134867489338,0.10287323594093],[0.012350684963167,-0.026379806920886,0.040491953492165],[0.0017002319218591,0.0087904883548617,-0.016471527516842]],[[0.02904749289155,-0.041834384202957,0.08316196501255],[-0.047448143362999,0.051715977489948,0.04524864256382],[0.055407807230949,0.011183558031917,0.016812354326248]],[[-0.060590546578169,-0.024313915520906,0.082547731697559],[0.097830027341843,-0.022527178749442,-0.037381835281849],[0.022519785910845,-0.06003250554204,-0.035942673683167]],[[0.013961768709123,0.0024279232602566,0.018869845196605],[-0.014081742614508,0.052601918578148,-0.089010052382946],[-0.027423141524196,-0.03620433434844,0.0086300941184163]],[[-0.028199285268784,-0.019595818594098,0.016715472564101],[0.011242381297052,0.007072486449033,-0.010170666500926],[-0.039197027683258,-0.047069117426872,0.047440763562918]],[[-0.031598825007677,0.022994641214609,-0.0076378937810659],[-0.0037060480099171,0.043912835419178,-0.0061922906897962],[-0.045389767736197,-0.069048829376698,-0.011736506596208]],[[0.014569271355867,-0.046352922916412,0.048709318041801],[-0.011367618106306,-0.0040048528462648,0.064286537468433],[0.093973100185394,-0.059358939528465,-0.041402973234653]],[[-0.050912048667669,0.10052590817213,-0.016638528555632],[-0.0028638213407248,-0.038908090442419,-0.029898351058364],[-0.014097615145147,-0.037677068263292,-0.0026696994900703]],[[-0.075637072324753,0.022881330922246,0.030102286487818],[-0.020626226440072,-0.045291241258383,0.015874482691288],[0.060188800096512,0.064451441168785,0.024161310866475]],[[0.096231907606125,0.040844064205885,0.044069018214941],[0.0027193839196116,0.022937189787626,0.031917039304972],[0.0019896849989891,0.097112059593201,-0.041438139975071]],[[-7.2633854870219e-05,0.082681760191917,-0.012617978267372],[-0.014738539233804,0.027556339278817,0.0032573698554188],[-0.015005686320364,-0.0061905109323561,0.0032095620408654]],[[-0.014668651856482,0.025785798206925,-0.017613919451833],[-0.081336475908756,0.050980664789677,0.048722628504038],[-0.020562764257193,0.053552538156509,0.027339611202478]],[[-0.0051893391646445,-0.0080761481076479,0.047698363661766],[0.056481476873159,-0.00862882938236,-0.019729157909751],[-0.057712770998478,-0.040125627070665,-0.045852266252041]]],[[[0.043622337281704,-0.016605379059911,0.044899333268404],[-0.044124860316515,0.029729368165135,-0.0010737158590928],[0.016005923971534,-0.024063467979431,0.055158875882626]],[[0.020865667611361,0.026988182216883,-0.032602325081825],[-0.063958711922169,-0.11160229146481,0.051072776317596],[0.034699063748121,-0.045746318995953,0.012287539429963]],[[0.078840039670467,0.023765757679939,-0.012996698729694],[-0.015883287414908,-0.0021833274513483,0.0036979315336794],[0.041560169309378,-0.012083433568478,-0.1030183583498]],[[-0.010344055481255,0.071644634008408,0.059183362871408],[0.008375084027648,-0.012852978892624,-0.0359254963696],[-0.011469333432615,-0.0050328779034317,0.042733762413263]],[[0.052018314599991,0.054508790373802,-0.021141700446606],[0.0051122196018696,-0.012160023674369,-0.042222544550896],[-0.0029292050749063,0.075152724981308,0.040677640587091]],[[-0.019322033971548,-0.0056031327694654,0.017814354971051],[-0.0078941294923425,0.078419908881187,0.050711024552584],[0.054836191236973,0.090451642870903,0.037777539342642]],[[0.083660207688808,-0.012470384128392,-0.069476954638958],[-0.015043468214571,0.021411292254925,-0.010724629275501],[-0.021010207012296,0.031988244503736,-0.015505599789321]],[[-0.078245528042316,-0.0034704338759184,0.010246640071273],[0.039855018258095,-0.057585056871176,-0.022432932630181],[0.010331327095628,0.029184909537435,0.031134562566876]],[[0.005525978282094,0.033029038459063,0.024257121607661],[-0.036922339349985,-0.028621843084693,0.016484124585986],[0.039530329406261,-0.015104554593563,0.0087767550721765]],[[0.029466675594449,0.060860097408295,0.041168320924044],[0.070370800793171,-0.0071398485451937,-0.010874880477786],[0.074734099209309,0.11709739267826,0.0062001231126487]],[[-0.030399911105633,-0.016795519739389,0.046530928462744],[0.050242878496647,-0.12649545073509,0.034520547837019],[0.094568215310574,-0.074070498347282,0.00073899404378608]],[[0.044540293514729,-0.02633317001164,0.070675656199455],[-0.071843154728413,0.017448160797358,0.027854666113853],[0.070266179740429,-0.0099086314439774,0.07042970508337]],[[-0.041903372853994,0.056664265692234,0.062796801328659],[0.010356434620917,-0.071841716766357,0.026720831170678],[-0.072489470243454,0.024524979293346,-0.03086900152266]],[[-0.033130154013634,0.0096575394272804,0.023193217813969],[0.027164060622454,0.046266589313745,-0.056440338492393],[-0.067852407693863,-0.00089228583965451,0.08871603757143]],[[0.070137374103069,0.0057930611073971,-0.082477658987045],[0.0093417139723897,0.1498039662838,0.028580937534571],[0.0544029250741,0.051277529448271,0.053170081228018]],[[0.0052817049436271,-0.067857287824154,-0.0022831228561699],[-0.0019581883680075,-0.016504338011146,-0.051355894654989],[0.037732478231192,-0.057894308120012,-0.033422436565161]],[[-0.041563604027033,0.016434228047729,0.070036962628365],[0.0095969848334789,-0.039375711232424,-0.0039281281642616],[-0.017134850844741,0.025724213570356,-0.016725229099393]],[[-0.11944147199392,0.026100523769855,-0.01532790157944],[0.016171611845493,-0.09195614606142,0.030240586027503],[0.025332866236567,0.029514614492655,0.040385037660599]],[[0.020461101084948,0.024464352056384,0.039656236767769],[0.0194599814713,-0.052477400749922,0.061444528400898],[-0.0021588036324829,0.095170348882675,0.04186911508441]],[[-0.062270481139421,0.066513791680336,0.034376602619886],[0.0064404523000121,0.015345839783549,0.015466338954866],[0.052618991583586,0.037257570773363,-0.045079506933689]],[[-0.044400699436665,-0.059811379760504,0.031621899455786],[0.0340715944767,0.04369442909956,-0.012287532910705],[0.01557981222868,6.9608904595952e-05,-0.03677386790514]],[[0.078439451754093,0.022280223667622,0.073384135961533],[0.092481523752213,-0.038049347698689,0.027985332533717],[-0.021732764318585,0.066909305751324,0.12048126757145]],[[-0.053164977580309,-0.004560511559248,0.066958978772163],[0.0076506738550961,-0.013976694084704,0.021350495517254],[0.014884940348566,0.016299389302731,0.099208436906338]],[[0.0069521903060377,-0.036445282399654,-0.025084836408496],[0.026452524587512,-0.024317711591721,-0.0726078748703],[0.028364364057779,0.037051416933537,-0.011428428813815]],[[0.02099528722465,1.1984320735792e-05,-0.016395227983594],[-0.034003812819719,0.029933527112007,-0.033355951309204],[0.019034767523408,0.057098671793938,0.057632964104414]],[[0.0045259026810527,0.011211939156055,0.034268353134394],[-0.091298028826714,-0.069145143032074,-0.0097125601023436],[0.032613486051559,0.087663307785988,-0.026020558550954]],[[0.026654416695237,0.0016161067178473,-0.052830867469311],[-0.011701927520335,0.054681640118361,0.026822201907635],[0.07702112197876,-0.014650659635663,-0.035504434257746]],[[-0.0063765924423933,0.082536481320858,0.05723612010479],[0.033246949315071,-0.020259097218513,0.0030859373509884],[0.034180406481028,0.10684132575989,-0.067604750394821]],[[0.015948586165905,-0.0033227931708097,0.0012901488225907],[-0.027659758925438,-0.0024373845662922,0.02762645483017],[0.022233350202441,0.068546339869499,0.015252611599863]],[[0.02960616350174,0.057563878595829,0.020299592986703],[-0.098149813711643,0.017042906954885,0.07773482054472],[-0.002774253487587,-0.027554454281926,0.0078666741028428]],[[0.022181522101164,0.059681978076696,-0.03030202537775],[0.011020065285265,-0.023917648941278,-0.085802435874939],[-0.073507502675056,0.062321811914444,0.010874659754336]],[[0.022613061591983,0.031417280435562,0.039495643228292],[0.053078524768353,-0.014107236638665,0.048077780753374],[0.018283933401108,-0.034482397139072,-0.02117389626801]],[[-0.0037332088686526,-0.06480947136879,-0.1088884100318],[0.046619359403849,-0.010476195253432,0.061286848038435],[0.046831384301186,0.11556933820248,-0.0098448200151324]],[[-0.018217198550701,0.012703811749816,-0.033601824194193],[0.013646013103426,0.029299510642886,-0.074968062341213],[0.054138533771038,0.09301220625639,0.024860244244337]],[[0.027773415669799,0.019622204825282,0.019889835268259],[-0.096272081136703,-0.057557344436646,0.026203699409962],[0.025427803397179,0.050706848502159,0.019899357110262]],[[-0.094372615218163,-0.088030025362968,-0.029021382331848],[0.10226003825665,-0.0039034534711391,-0.0023603974841535],[-0.057465877383947,-0.06093467772007,0.020332170650363]],[[-0.048199962824583,0.046860869973898,0.0053243199363351],[0.021178150549531,-0.067742437124252,-0.045205321162939],[0.032807700335979,0.038006048649549,-0.036259971559048]],[[-0.024075381457806,-0.038809891790152,0.0045857210643589],[-0.023897202685475,0.01467367541045,0.037707347422838],[-0.073557429015636,-0.057717230170965,0.019200230017304]],[[-0.020918423309922,0.024657312780619,-0.0038056364282966],[0.028320994228125,-0.02878431789577,0.035708945244551],[0.034979060292244,0.052600435912609,-0.0040472717955709]],[[-0.014202281832695,0.008540190756321,0.0076176319271326],[-0.025219922885299,-0.0051116556860507,0.033600311726332],[0.030646169558167,0.024498926475644,0.051711313426495]],[[-0.0043538776226342,-0.032425358891487,0.077860057353973],[0.051419746130705,0.013344914652407,0.05102539435029],[0.013598075136542,0.03792766481638,-0.023517861962318]],[[-0.026333538815379,0.034009832888842,-0.048990949988365],[-0.04884796962142,-0.056233357638121,0.0068062366917729],[0.0056016426533461,0.018219828605652,0.055202938616276]],[[0.061098366975784,-0.041118290275335,0.0043101604096591],[-0.099057622253895,0.02646435238421,0.088768847286701],[0.035598658025265,-0.027929728850722,-0.026856794953346]],[[-0.058468829840422,-0.019637681543827,0.09357363730669],[-0.097187347710133,-0.020169224590063,0.012259130366147],[-0.023161552846432,0.016682356595993,-0.026631349697709]],[[-0.0052531640976667,-0.052047662436962,0.0085534267127514],[-0.079372115433216,0.015687078237534,0.03224753588438],[-0.030214609578252,0.0093900943174958,0.042285699397326]],[[0.027498032897711,0.01527953427285,0.10760107636452],[-0.034006260335445,0.036138072609901,0.081408008933067],[0.0075339139439166,-0.0033682123757899,0.021329129114747]],[[0.0088930390775204,-0.014108133502305,-0.021432979032397],[0.017779622226954,-0.019199615344405,-0.05629450827837],[0.053334310650826,0.082307673990726,-0.0067630424164236]],[[0.0025593102909625,0.13777965307236,0.011362384073436],[0.10072018951178,-0.0013263183645904,0.020910151302814],[0.10068830102682,-0.011096478439867,0.12398462742567]],[[0.020861454308033,-0.029194923117757,0.019019136205316],[0.024374069646001,-0.085006676614285,-0.023980418220162],[0.084085404872894,0.0065118251368403,0.022317042574286]],[[-0.031528946012259,0.035836011171341,-0.033740136772394],[-0.025722661986947,0.062433287501335,-0.054397840052843],[0.045933045446873,0.00038803470670246,0.052557580173016]],[[-0.049155224114656,0.097120925784111,0.013109531253576],[-0.017223184928298,-0.032439909875393,0.045549470931292],[0.012247471138835,-0.015708295628428,-0.05751371383667]],[[0.016117321327329,-0.070439890027046,-0.052745748311281],[-0.0074798590503633,-0.057149682193995,-0.076140373945236],[0.12285377085209,0.019447213038802,0.039823528379202]],[[0.043253984302282,0.063972927629948,0.0012077613500878],[-0.019235076382756,-0.033186461776495,-0.012797364033759],[0.023508535698056,0.0034987670369446,0.052766181528568]],[[0.031001111492515,0.02397994697094,-0.0011656043352559],[-0.0059569915756583,0.056338291615248,-0.019275266677141],[0.071775667369366,-0.0036568841896951,0.040459845215082]],[[0.038420252501965,0.054376926273108,0.0063252537511289],[0.023122418671846,0.018036002293229,0.028618112206459],[0.0085925040766597,-0.014327260665596,0.055583503097296]],[[0.062800280749798,-0.017958050593734,0.0070711844600737],[0.081080369651318,0.01904989592731,0.015699036419392],[-0.049488913267851,0.028377709910274,-0.078571155667305]],[[-0.018626799806952,0.0099943252280354,-0.027287231758237],[-0.073069877922535,0.014489491470158,-0.0075498078949749],[-0.02885520644486,0.079905822873116,-0.070855684578419]],[[-0.0056123253889382,0.0081758610904217,-0.028210813179612],[-0.057223472744226,0.055611029267311,0.006350192707032],[0.017388189211488,-0.01156916283071,0.05583168938756]],[[0.022472960874438,-0.012041173875332,0.070749819278717],[-0.011958738788962,-0.0045600016601384,-0.025930808857083],[-0.069120742380619,0.049224123358727,0.071681380271912]],[[-0.046805620193481,0.022299675270915,-0.020299132913351],[-0.018154166638851,0.0092094875872135,0.12734419107437],[0.050311297178268,0.0059177908115089,0.069644436240196]],[[-0.0053333546966314,-0.048990361392498,0.0082647195085883],[-0.048191033303738,0.061779595911503,-0.014750801026821],[-0.018879370763898,0.030273323878646,-0.031538095325232]],[[-0.0061465967446566,0.0055201277136803,-0.0067555080167949],[0.010638426057994,0.053270787000656,-0.041457697749138],[0.0056440122425556,0.068783961236477,0.014013528823853]],[[0.016859598457813,-0.00022046243248042,-0.10655618458986],[0.021151581779122,0.0018619054462761,0.085484139621258],[0.083001531660557,-0.041468154639006,0.0092211272567511]],[[0.083482034504414,-0.0053112087771297,0.072427190840244],[0.020365048199892,0.097745716571808,-0.033784348517656],[-0.033388111740351,0.019418342038989,0.019279483705759]],[[0.0040242960676551,-0.060065716505051,0.067509591579437],[0.011007134802639,0.0070221205241978,-0.045992136001587],[-0.11658629029989,-0.015902297571301,-0.06562528014183]],[[-0.010983189567924,-0.020908189937472,0.0050265351310372],[0.039341852068901,0.06189725920558,-0.041669465601444],[0.0071914019063115,0.056301523000002,6.3720952311996e-05]],[[-0.043532028794289,0.010439415462315,-0.037440836429596],[0.060594614595175,0.014512700028718,0.034116197377443],[0.048590324819088,0.032382108271122,0.035673908889294]],[[-0.035142980515957,0.04437355697155,-0.015448742546141],[0.009775148704648,0.035453770309687,0.0078840777277946],[0.05147597938776,0.035011246800423,0.060113377869129]],[[-0.00068108644336462,0.041064199060202,0.092777848243713],[0.010212034918368,0.10042666643858,0.017028547823429],[-0.049276255071163,-0.00055771198822185,-0.070534102618694]],[[0.00091742858057842,-0.021269848570228,0.03619721159339],[-0.01670997031033,0.054635293781757,-0.021565465256572],[-0.052727226167917,0.002075542928651,0.017106065526605]],[[-0.0033447828609496,-0.055437613278627,-0.0051336665637791],[0.029607433825731,0.020194778218865,0.058612365275621],[-0.0009403494768776,-0.031433541327715,-0.028131097555161]],[[0.062432106584311,0.019657228142023,0.016673378646374],[0.031883556395769,0.088052995502949,0.0279621463269],[-0.070817574858665,0.01105320174247,0.10182604938745]],[[0.043385468423367,-0.13793766498566,0.013483276590705],[-0.025321347638965,-0.039808131754398,0.049200899899006],[0.017442824319005,0.028790401294827,-0.047861546278]],[[0.031386516988277,0.089240476489067,0.035230241715908],[0.066088497638702,-0.010994158685207,-0.047777101397514],[0.018645929172635,0.086427241563797,0.022742221131921]],[[-0.035518180578947,-0.049213737249374,0.043492864817381],[0.072212502360344,0.06556448340416,0.025636255741119],[0.019508607685566,0.11975802481174,-0.023878287523985]],[[-0.053576271981001,-0.049977526068687,0.050946872681379],[0.0027262831572443,-0.00020729913376272,0.051878247410059],[-0.014428614638746,0.044456377625465,-0.0041605997830629]],[[0.013332867063582,0.011948090046644,-0.046181332319975],[0.019366532564163,0.014651939272881,-0.0035665174946189],[-0.053458031266928,-0.068524055182934,0.028982246294618]],[[0.053855266422033,0.00012161147606093,-0.037449557334185],[0.043832272291183,0.0041127107106149,0.05451175570488],[-0.031855039298534,-0.01589597761631,0.0032447776757181]],[[0.037965249270201,0.035093110054731,0.0059954528696835],[-0.065863117575645,0.036462418735027,0.038250368088484],[0.10211434960365,-0.0096629811450839,0.072166107594967]],[[0.014243158511817,0.014627819880843,-0.01683852635324],[-0.012929876334965,0.047371096909046,-0.059806022793055],[0.053059905767441,-0.080725736916065,0.020335661247373]],[[-0.045464493334293,0.066479094326496,0.029288897290826],[-0.034055795520544,0.01740238815546,0.017160939052701],[-0.034699652343988,0.057871405035257,0.018209468573332]],[[-0.018613720312715,-0.010846449993551,0.0064724856056273],[-0.036959864199162,-0.041741799563169,0.038784984499216],[-0.027975356206298,0.014110176824033,-0.052386872470379]],[[0.061291642487049,0.033732831478119,-0.068947799503803],[0.047296106815338,0.029065195471048,0.0077359126880765],[0.10082320868969,0.067413948476315,0.040517032146454]],[[0.083687528967857,0.024953404441476,0.002883676905185],[0.074518859386444,-0.027320574969053,0.058713190257549],[0.029801186174154,0.058468107134104,0.047402158379555]],[[0.027706598863006,-0.033673007041216,-0.03604869171977],[0.02940209954977,0.042539801448584,-0.019196815788746],[0.066294729709625,-0.0062792482785881,-0.058137495070696]],[[-0.0051119485870004,-0.026730600744486,0.0056742485612631],[0.045346613973379,-0.040279418230057,0.064106568694115],[0.040754921734333,0.11663177609444,-0.034917954355478]],[[-0.044461760669947,0.073926173150539,0.028423838317394],[0.0050577875226736,-0.067784667015076,0.0062559200450778],[0.0019185330020264,-0.010283288545907,-0.022503666579723]],[[0.086238883435726,0.046233013272285,-0.0038447410333902],[-0.0051175435073674,0.050936419516802,0.017211610451341],[0.057222336530685,0.042678710073233,0.11563414335251]],[[-0.049925126135349,-0.044831741601229,0.064290151000023],[-0.008167021907866,-0.055315680801868,0.098661869764328],[0.038128864020109,-0.031024003401399,-0.017536068335176]],[[0.060252629220486,0.037047807127237,-0.0016094734892249],[-0.013908447697759,0.015847865492105,-0.041408251971006],[0.074753023684025,0.0063747651875019,-0.018050810322165]],[[-0.015044775791466,0.017301833257079,-8.230798994191e-05],[0.070458874106407,0.044877275824547,0.046349659562111],[-0.007925346493721,0.014768710359931,0.038382526487112]],[[0.0090640252456069,0.10205580294132,-0.0073532555252314],[0.0051292711868882,0.011425727047026,0.070525251328945],[0.033110581338406,-0.035709861665964,-0.013329279609025]],[[0.050760872662067,-0.013845556415617,0.029251329600811],[-0.017049385234714,0.083676733076572,0.029470453038812],[-0.022239089012146,0.0016155343037099,-0.016633037477732]],[[0.03866670280695,-0.0048307133838534,0.013553529977798],[0.041990719735622,0.0004773206601385,-0.059141583740711],[-0.050785679370165,0.028785025700927,0.014935397543013]],[[-0.0074910740368068,-0.0036257703322917,-0.081348516047001],[0.042559918016195,-0.084493912756443,-0.051464702934027],[0.00036820120294578,-0.059721227735281,0.022378062829375]],[[0.00043712282786146,-0.0052380971610546,0.069583244621754],[0.079164013266563,-0.0095286881551147,-0.04963257163763],[0.022834371775389,0.078414559364319,0.027442056685686]],[[0.0037310218904167,0.032260626554489,0.04156843945384],[-0.019238209351897,0.027666108682752,-0.038128670305014],[-0.0092974230647087,-0.0053524747490883,0.15438663959503]],[[0.072041735053062,0.038294117897749,-0.036334726959467],[0.051768377423286,-0.0083228247240186,0.044724740087986],[-0.066206939518452,-0.019196337088943,-0.016640039160848]],[[-0.028385827317834,-0.029895482584834,-0.018223475664854],[-0.0057965600863099,-0.011243168264627,0.018586810678244],[0.011686697602272,0.0442795753479,0.0054040369577706]],[[0.035804487764835,0.020777864381671,-0.11640854924917],[0.0098664378747344,0.018343087285757,-0.065728612244129],[-0.012787399813533,0.077864050865173,-0.014049402438104]],[[0.022094560787082,-0.096121333539486,0.024253396317363],[-0.060245327651501,0.033489808440208,-0.015363571234047],[0.096182063221931,0.099003970623016,-0.017760027199984]],[[0.025465933606029,0.019859287887812,-0.041336990892887],[0.045661047101021,-0.0076842689886689,0.032153386622667],[-0.010024545714259,0.016272023320198,0.090314358472824]],[[-0.061287041753531,0.011832911521196,0.044260822236538],[-0.023741213604808,-0.034667514264584,0.025325547903776],[-0.023090610280633,0.018092971295118,-0.0031172442249954]],[[-0.026444772258401,-0.00076234742300585,-0.0054386993870139],[0.094308242201805,-0.11811989545822,0.0053799608722329],[-0.030242633074522,-0.028142469003797,0.0036056460812688]],[[0.085469476878643,0.01696708984673,0.012007834389806],[0.021624540910125,-0.017991608008742,0.00064176693558693],[0.053615037351847,-0.026939509436488,-0.044711280614138]],[[0.011295644566417,0.01349319703877,0.023747159168124],[0.0010492405854166,0.00054171920055524,0.09742010384798],[-0.016813945025206,-0.083508670330048,-0.048971891403198]],[[0.0088449167087674,-0.022701814770699,-0.027475772425532],[-0.022237425670028,0.057195764034986,0.030919961631298],[-0.026247553527355,0.0026102219708264,0.010162169113755]],[[0.00017499446403235,0.07469779253006,-0.019277947023511],[-0.055184621363878,-0.0046348599717021,-0.019075378775597],[0.055186934769154,0.063246093690395,0.029012259095907]],[[0.025311609730124,-0.02699482999742,-0.024754429236054],[0.011543372645974,-0.041206087917089,0.010119243524969],[-0.028564194217324,0.030446788296103,-0.02448751591146]],[[0.035607673227787,-0.046576719731092,0.001622848212719],[0.030848667025566,0.020000852644444,-0.0030416385270655],[0.018097553402185,-0.0047349189408123,-0.0038517746143043]],[[-0.022264329716563,0.062626153230667,-0.0074897049926221],[-0.05713303014636,0.015326719731092,0.042257059365511],[-0.011971969157457,0.00092482555191964,-0.048148177564144]],[[-0.0027378643862903,0.022290110588074,-0.026281256228685],[-0.024146975949407,-0.011546516790986,-0.032171532511711],[-0.046900417655706,0.022194318473339,-0.010303507559001]],[[0.066289193928242,0.021692143753171,-0.073281846940517],[0.0097838873043656,0.055973771959543,-0.0086357807740569],[0.015981392934918,-0.09874852001667,-0.052900955080986]],[[-0.0063809775747359,-0.048796843737364,-0.06657699495554],[0.035341493785381,0.042431257665157,0.016179069876671],[-0.022393669933081,0.0070521584711969,0.0016528585692868]],[[-0.010606597177684,0.011477641761303,-0.049518477171659],[0.05035300552845,0.08917497843504,-0.028840057551861],[-0.055101852864027,-0.061917454004288,0.067770473659039]],[[0.03408095240593,-0.07419491559267,-0.01880780979991],[-0.037304453551769,0.019294807687402,0.04563295096159],[-0.0026317583397031,0.010691636241972,0.052247270941734]],[[0.0015419541159645,-0.0075927875004709,0.026378901675344],[0.015393750742078,-0.042335156351328,0.056072358042002],[0.0211660284549,0.040301609784365,0.046118568629026]],[[0.029278382658958,0.077934607863426,-0.097964733839035],[0.041845627129078,0.030944244936109,0.01757668890059],[0.0017314350698143,0.11175815761089,0.0643160790205]],[[-0.069941319525242,0.068429484963417,-0.042539518326521],[0.016374504193664,-0.060444943606853,-0.026680789887905],[-0.021126631647348,0.067543812096119,0.090540394186974]],[[0.05473068356514,-0.038017153739929,-0.056156441569328],[0.031579211354256,-0.046002425253391,-0.036531627178192],[-0.034916486591101,-0.033007983118296,-0.036454502493143]],[[0.046803425997496,-0.057027656584978,0.043024774640799],[-0.038137633353472,-0.036239691078663,-0.044684331864119],[0.049849860370159,0.076379902660847,0.033655643463135]],[[0.056919999420643,-0.01755435205996,-0.0011736385058612],[0.018685266375542,0.019135493785143,0.064546637237072],[0.0056532695889473,0.002433932852,0.0084682535380125]],[[-0.058770913630724,0.00046340815606527,-0.061924036592245],[-0.055821068584919,-0.022349502891302,0.022039929404855],[0.023472141474485,-0.015370452776551,0.049310300499201]],[[-0.071451634168625,0.0096993772312999,0.038487166166306],[-0.0012247783597559,0.096273325383663,-0.037371717393398],[0.024727961048484,0.049619328230619,-0.0034365621395409]],[[-0.0028537539765239,0.043677553534508,-0.0032678446732461],[-0.045171067118645,-0.011266664601862,0.029613714665174],[0.032781485468149,-0.008292643353343,0.0012885967735201]],[[-0.0094516528770328,0.017673186957836,0.013948490843177],[-0.035204961895943,-0.031900174915791,-0.058468502014875],[-0.053812801837921,0.084593594074249,0.025752617046237]],[[0.075249247252941,0.020028052851558,0.057928092777729],[0.051676288247108,0.040693864226341,-0.0089598624035716],[0.076297506690025,-0.0049857031553984,0.010360613465309]],[[0.048797506839037,-0.01669254899025,-0.0021824087016284],[-0.060883581638336,-0.027290774509311,0.0082312105223536],[0.035916864871979,0.04159015789628,0.028626468032598]]],[[[-0.065765850245953,0.054865717887878,0.030541120097041],[0.026145802810788,-0.026574412360787,-0.080737896263599],[-0.021224204450846,-0.040574967861176,-0.073443382978439]],[[0.024449085816741,0.043055217713118,0.070810869336128],[0.033410504460335,-0.015136565081775,-0.048813354223967],[-0.079870373010635,-0.063398912549019,0.038516476750374]],[[-0.0096526890993118,0.074909724295139,-0.049906004220247],[0.015571274794638,0.025280991569161,0.049064584076405],[-0.024545691907406,-0.012762876227498,-0.004467929713428]],[[0.0052436171099544,0.0049756797961891,-0.0032023130916059],[0.036955170333385,0.068533957004547,0.035358887165785],[-0.0017494839848951,-0.030334215611219,-0.01300245244056]],[[0.0251160915941,-0.00060651585226879,-0.041789840906858],[-0.022258672863245,-0.006157950963825,0.078045271337032],[-0.045872177928686,-0.062727339565754,-0.074562475085258]],[[0.049290996044874,-0.038187045603991,0.045694891363382],[-0.05386008694768,-0.018128724768758,-0.059895128011703],[0.007293900474906,0.031190805137157,-0.039196636527777]],[[-0.033099245280027,-0.019758502021432,0.034441992640495],[0.046843439340591,0.10201642662287,-0.020459409803152],[0.013437078334391,-0.080268993973732,-0.02181931771338]],[[0.021949946880341,0.043640237301588,0.036821562796831],[-0.071655414998531,0.047315422445536,0.042912721633911],[0.086012482643127,-0.026714103296399,-0.011508464813232]],[[0.039745662361383,-0.0065382593311369,0.085709400475025],[-0.094574294984341,0.024439981207252,-0.077439107000828],[0.043164350092411,-0.025244338437915,0.00023533076455351]],[[-0.040208484977484,0.12883925437927,0.027279069647193],[0.16188684105873,0.018954459577799,0.24067537486553],[0.13665653765202,-0.11851770430803,0.062548607587814]],[[-0.047973081469536,0.063701435923576,-0.06131399050355],[-0.0068234852515161,0.044583026319742,-0.058142874389887],[-0.098893240094185,-0.037868019193411,0.022090138867497]],[[0.027627469971776,0.037512559443712,-0.031930644065142],[0.021105699241161,0.0053562852554023,0.022953936830163],[0.033910356462002,0.021157475188375,0.0063185095787048]],[[-0.022589875385165,-0.0067070857621729,0.02406538464129],[0.0076233786530793,0.026689713820815,0.0089636435732245],[-0.0042772660963237,0.018261214718223,-0.031208680942655]],[[0.035618528723717,0.016136460006237,-0.00030822248663753],[-0.013315129093826,0.0066686449572444,0.089885681867599],[0.013568172231317,0.015595452859998,0.062261786311865]],[[0.12402012199163,0.06193133443594,-0.019045609980822],[0.14294850826263,0.1234926879406,0.0043867300264537],[-0.016964036971331,0.14048610627651,0.097266368567944]],[[0.0011109728366137,-0.022224955260754,0.0067796185612679],[-0.028831817209721,0.0097448593005538,-0.0010499132331461],[-0.15017388761044,0.039908394217491,-0.016734128817916]],[[0.049886390566826,-0.051387630403042,0.026734827086329],[-0.080235369503498,0.037198022007942,0.013511410914361],[0.033692445605993,-0.011488954536617,0.10141116380692]],[[0.00021872454090044,0.0061409692279994,-0.053876757621765],[0.0076161157339811,0.019063774496317,-0.041768807917833],[-0.039524257183075,0.02496624737978,-0.041880536824465]],[[-0.062878653407097,-0.043248176574707,0.028545245528221],[-0.015182580798864,-0.075396165251732,0.022718869149685],[-0.0020686048083007,-0.027692742645741,0.038296278566122]],[[0.15133981406689,0.0023013860918581,0.041617717593908],[0.038812063634396,0.049908604472876,-0.027640325948596],[0.12568125128746,-0.061197675764561,0.15440280735493]],[[0.043797418475151,0.077815890312195,0.019907932728529],[0.017875226214528,-0.0090288352221251,0.057050857692957],[0.012672498822212,0.047687936574221,0.026887966319919]],[[0.14209482073784,-0.039795130491257,0.03623041883111],[0.043914202600718,0.050913333892822,0.076229929924011],[0.060668800026178,0.0089288856834173,0.038294162601233]],[[-0.015875544399023,0.016300147399306,-0.020922290161252],[0.028810050338507,-0.0042633260600269,0.0079227862879634],[0.070309013128281,0.038144201040268,0.03723980858922]],[[-0.017142185941339,0.012607268057764,-0.0097772534936666],[-0.018161486834288,0.034885630011559,0.0091135622933507],[-0.081277072429657,-0.024479100480676,-0.010332722216845]],[[0.021898780018091,-0.022890402004123,0.013978942297399],[0.015586168505251,0.013448755256832,0.053502656519413],[-0.067773766815662,0.012601786293089,0.064121372997761]],[[-0.019740948453546,-0.0085383476689458,-0.11781807243824],[0.046592615544796,0.037768255919218,0.015328332781792],[-0.024352828040719,-0.047822222113609,-0.039308190345764]],[[0.0031554780434817,0.014558209106326,-0.00040026882197708],[-0.029193272814155,0.04597419500351,0.05808499455452],[0.0091162547469139,0.060370981693268,0.042753402143717]],[[-0.054836098104715,-0.040816955268383,-0.017114594578743],[-0.012774378992617,-0.038754735141993,0.053791161626577],[-0.052736166864634,-0.051768314093351,0.047249246388674]],[[-0.077661633491516,-0.01111008040607,0.020878812298179],[0.11319328099489,-0.0028602906968445,-0.0090561304241419],[0.00013688544277102,0.098742730915546,-0.041235122829676]],[[-0.059903524816036,0.021562159061432,-0.08494883030653],[0.083131454885006,0.054436832666397,-0.0058336369693279],[-0.11085661500692,0.0024183015339077,-0.030263839289546]],[[-0.08635751157999,-0.054289974272251,-0.0016405275091529],[0.037260744720697,0.010258123278618,0.022184059023857],[0.05777545273304,0.077147930860519,-0.038655895739794]],[[0.035681452602148,-0.045831419527531,-0.052869208157063],[-0.052138179540634,-0.0016584488330409,0.054679203778505],[0.027571998536587,0.066269621253014,0.1231215596199]],[[-0.018507093191147,-0.033111657947302,0.0028384518809617],[0.014687485992908,0.034696418792009,0.082615330815315],[-0.00089886563364416,0.019940020516515,0.013010581955314]],[[-0.039174154400826,0.0064695323817432,0.052510567009449],[-0.041427824646235,-0.0063820462673903,-0.02619300596416],[0.094632692635059,0.0020157874096185,0.05102090165019]],[[-0.02515428327024,-0.06172177568078,0.053023193031549],[0.066394008696079,0.041442789137363,-0.042522870004177],[-0.048324156552553,-0.038445953279734,0.014153600670397]],[[0.078195385634899,-0.03387288749218,-0.041587002575397],[1.3211121768109e-05,-0.0030265594832599,0.0034019420854747],[-0.032478462904692,-0.049977499991655,-0.054782032966614]],[[-0.011769075877964,-0.039863541722298,0.013955445960164],[0.018070952966809,-0.063023380935192,-0.0073631522245705],[-0.031866069883108,-0.047199454158545,-0.041598279029131]],[[0.010126288048923,0.052692547440529,-0.032491363584995],[0.059512764215469,-0.0088263982906938,-0.037687238305807],[0.06026478484273,0.038604650646448,0.063113331794739]],[[0.0064641409553587,0.053038660436869,-0.039218161255121],[0.051753494888544,-0.00047814514255151,0.12671907246113],[-0.020313184708357,-0.016218706965446,-0.02050874941051]],[[0.025703642517328,-0.025191303342581,0.021474048495293],[-0.02438853867352,-0.048229955136776,0.030748954042792],[0.046386282891035,-0.017993254587054,0.017980236560106]],[[0.10578816384077,0.015972796827555,0.041846878826618],[0.0078179016709328,0.034629978239536,-0.068854577839375],[-0.030606113374233,0.083865292370319,-0.06279806047678]],[[-0.042201060801744,0.086252078413963,0.0087338611483574],[-0.051786821335554,0.043940719217062,-0.067728571593761],[-0.01948787085712,-0.022743469104171,-0.030625399202108]],[[0.088621228933334,0.11705689132214,0.0085541000589728],[0.076372288167477,0.080193758010864,0.034807756543159],[0.02719334885478,0.063273295760155,0.044706646353006]],[[-0.018536426126957,0.016621641814709,0.025015162304044],[0.027233427390456,-0.062649436295033,0.035882640630007],[0.066626094281673,0.10558331012726,0.011843299493194]],[[-0.042546048760414,0.045502081513405,0.0094807622954249],[0.12715911865234,-0.084043011069298,0.023911425843835],[-0.015548847615719,-0.030087314546108,0.00072804733645171]],[[0.071680590510368,0.012616055086255,0.024285959079862],[-0.018184615299106,0.0078200791031122,0.025290705263615],[0.043577130883932,0.078490868210793,-0.025744900107384]],[[-0.0074856365099549,0.074847377836704,-0.040471564978361],[0.0065270978957415,-0.016618188470602,-0.041514113545418],[0.023138012737036,-0.0095306346192956,0.041003983467817]],[[-0.012079656124115,0.030003190040588,-0.037461649626493],[0.036205653101206,0.0080588469281793,0.0071298307739198],[0.086030222475529,0.013334427028894,-0.020533751696348]],[[-0.046484101563692,0.013395421206951,0.034115098416805],[-0.045052144676447,0.050248950719833,-0.056807592511177],[0.029504545032978,0.034929506480694,-0.031157834455371]],[[-0.0094853332266212,0.0027653854340315,-0.010832699015737],[-0.029700690880418,0.031212655827403,-0.0062528378330171],[-0.062819853425026,-0.13950276374817,-0.021744545549154]],[[0.052493527531624,-0.021172551438212,0.021304393187165],[-0.040755480527878,-0.094836793839931,0.0085609406232834],[0.010725261643529,0.014418059960008,0.041916992515326]],[[-0.009629562497139,0.023896170780063,0.044889781624079],[-0.011308247223496,0.054445024579763,0.05188812687993],[-0.066158175468445,-0.11882722377777,-0.038826189935207]],[[0.030076902359724,0.010207329876721,-0.0021813497878611],[0.04803467169404,0.023719001561403,-0.016299372538924],[0.014415870420635,-0.024130145087838,0.025244196876884]],[[-0.028040502220392,0.062558196485043,0.019208105280995],[-0.040292728692293,0.069558560848236,-0.066050469875336],[-0.027730947360396,-0.0068289721384645,-0.0080811567604542]],[[-0.012590626254678,-0.022264724597335,0.018461534753442],[0.023975336924195,0.054700814187527,-0.013891525566578],[0.013420127332211,0.025038160383701,-0.039564568549395]],[[-0.011904517188668,0.071694642305374,0.031104238703847],[0.03289520740509,0.042022608220577,-0.018750976771116],[0.11734567582607,-0.046012457460165,-0.00489955348894]],[[-0.010697465389967,0.087367631494999,-0.016424249857664],[0.027425130829215,-0.086435213685036,0.10362772643566],[0.0049931793473661,0.0029729285743088,0.023500649258494]],[[-0.032914888113737,0.070384137332439,0.026247229427099],[-0.031428586691618,-0.025866413488984,0.035652074962854],[-0.024090729653835,-0.001086255419068,0.01876406930387]],[[-0.030980614945292,0.041241899132729,0.031360968947411],[0.061475779861212,0.029648922383785,-0.040178168565035],[-0.036871038377285,0.07478854060173,-0.013370428234339]],[[0.029034186154604,-0.019889013841748,0.01166249345988],[-0.0050022983923554,-0.054215617477894,0.026441400870681],[-0.041647516191006,0.038477405905724,-0.072219252586365]],[[0.024821935221553,0.030254380777478,0.0059993234463036],[0.022985586896539,0.087257623672485,0.042175281792879],[-0.033735491335392,-0.009161782450974,0.063303157687187]],[[-0.081063516438007,-0.0023759137839079,0.0043058018200099],[-0.023960823193192,0.031290423125029,0.034189186990261],[-0.017365776002407,-0.0037118832115084,-0.074822105467319]],[[-0.025322504341602,0.022773012518883,-0.026837868615985],[0.027979647740722,0.013375823386014,-0.0041301157325506],[0.097316384315491,0.0033431418705732,0.028161108493805]],[[0.10338692367077,0.024133358150721,0.053262025117874],[0.069199316203594,-0.04028394818306,-0.022353388369083],[0.058527018874884,0.058223899453878,-0.0030154802370816]],[[-0.017770970240235,-0.0027522891759872,0.054650358855724],[-0.060571551322937,-0.058206643909216,0.017830034717917],[0.056597985327244,0.042217738926411,0.041752055287361]],[[-0.030253482982516,0.011319908313453,-0.0047676935791969],[-0.0092397443950176,-0.025480315089226,-0.0036137483548373],[0.095098659396172,0.05375861749053,-0.027440203353763]],[[0.01666521653533,0.032288730144501,0.047984324395657],[0.077165246009827,0.12245475500822,0.022036839276552],[0.013731234706938,0.037582825869322,0.04195449873805]],[[-0.023789770901203,0.022199204191566,-0.0073458142578602],[-0.039929494261742,0.053128000348806,-0.044463358819485],[0.034299176186323,0.044823098927736,0.081887617707253]],[[-0.054649617522955,-0.0072430027648807,0.028800133615732],[-0.044643484055996,0.034414738416672,-0.020291227847338],[0.056099183857441,0.010489519685507,0.049581315368414]],[[0.032864473760128,0.066420614719391,0.0021368893794715],[-0.028104592114687,-0.097276203334332,-0.044067297130823],[0.01012668479234,0.042250037193298,0.032030530273914]],[[0.026063375174999,0.0046372055076063,-0.044419169425964],[0.0035901353694499,0.018956068903208,0.034765023738146],[-0.03363699093461,-0.023438585922122,-0.053038857877254]],[[-0.00063162704464048,-0.036901291459799,0.071198433637619],[-0.049837917089462,0.022719230502844,-0.051795724779367],[0.15023140609264,0.077075429260731,-0.088539093732834]],[[0.073035605251789,-0.064785353839397,-0.034467112272978],[-0.037114091217518,-0.0031314559746534,0.068530559539795],[-0.015190619975328,-0.048418439924717,0.031966909766197]],[[0.087106786668301,-0.0456647798419,-0.018505461513996],[0.041856311261654,-0.031448047608137,-0.016663389280438],[0.0267094373703,-0.071795895695686,-0.062215071171522]],[[-0.052270840853453,0.01861365698278,0.0054051796905696],[0.040109235793352,-0.027789166197181,0.064848437905312],[0.017823493108153,-0.0090927286073565,0.038787476718426]],[[-0.068615205585957,-0.021554926410317,-0.092679768800735],[-0.0058582886122167,-0.037710975855589,-0.05851698294282],[-0.064294949173927,-0.010102291591465,-0.037066642194986]],[[0.0065467143431306,0.083563767373562,0.061854686588049],[0.00049474398838356,0.016330368816853,-0.036299765110016],[0.064885027706623,0.013092101551592,0.012909450568259]],[[-0.036220315843821,0.029219854623079,0.027206398546696],[-0.067013435065746,0.012624779716134,0.094604425132275],[0.079228103160858,-0.016222471371293,0.034255880862474]],[[-0.026590587571263,0.023854510858655,0.046682994812727],[0.042088352143764,-0.048078317195177,0.043278016149998],[0.013561394996941,-0.043275516480207,0.0098982006311417]],[[-0.064912587404251,-0.076050989329815,-0.028359079733491],[-0.05231112241745,0.044493794441223,-0.036822482943535],[-0.042936258018017,-0.13634850084782,-0.030491929501295]],[[0.065247736871243,0.015803636983037,0.036868382245302],[0.071098737418652,0.055303446948528,-0.031171469017863],[0.0721575319767,-0.042636726051569,0.03004152700305]],[[0.032104451209307,0.002987900050357,-0.012810016982257],[-0.034527540206909,-0.050095193088055,-0.05721665173769],[-0.08177775144577,-0.022632624953985,0.009522583335638]],[[-0.022762777283788,0.002332026604563,-0.034226331859827],[0.047337654978037,0.0061859390698373,-0.036099649965763],[-0.068243876099586,-0.016223099082708,-0.0086048617959023]],[[-0.00011731364065781,0.056446246802807,0.031414683908224],[-0.08243815600872,-0.051950372755527,0.028312446549535],[0.042474672198296,-0.10041426867247,-0.12878535687923]],[[-0.059612799435854,0.010082745924592,0.065620630979538],[0.030566830188036,-0.0036177183501422,0.017189040780067],[-0.042154062539339,-0.06804621219635,0.0060686455108225]],[[-0.053612358868122,-0.085105545818806,0.046917919069529],[-0.039419829845428,-0.077947914600372,0.062523029744625],[-0.022655369713902,-0.012287880294025,-0.1264912635088]],[[0.037228740751743,0.061628367751837,0.045220378786325],[-0.072333768010139,-0.00037432371755131,0.079106606543064],[0.077925398945808,0.006256059743464,0.043436247855425]],[[-0.01902518607676,0.090544201433659,0.013094740919769],[0.0077592236921191,0.039550364017487,0.022096188738942],[0.0040158932097256,0.036052744835615,-0.029090095311403]],[[-0.0057367468252778,0.025034265592694,-0.018823809921741],[-0.014907139353454,-0.051586955785751,0.081409431993961],[-0.0059267533943057,0.068722397089005,0.018810883164406]],[[0.026703013107181,-0.068542033433914,0.020143091678619],[-0.043148949742317,0.059797458350658,0.012787098996341],[-0.010893383063376,0.030875336378813,0.01709377579391]],[[-0.018309555947781,0.013451364822686,0.0062463907524943],[-0.079227291047573,-0.024993760511279,-0.13751448690891],[0.11260331422091,-0.024966048076749,0.043854080140591]],[[0.00081666989717633,-0.047324310988188,0.06374803185463],[-0.079928889870644,0.0074875359423459,-0.056353341788054],[0.0047732256352901,-0.05224709585309,0.065278239548206]],[[-0.056383471935987,0.006790088955313,0.070658273994923],[-0.035512305796146,0.036082901060581,-0.0060645998455584],[-0.0041175037622452,0.0039761350490153,-0.036314237862825]],[[-0.0045596258714795,0.01852972432971,-0.016621621325612],[0.068520732223988,-0.023712430149317,-0.0090730199590325],[0.03699017316103,0.0047080987133086,0.00011351184366504]],[[0.039302114397287,0.044284045696259,0.029957471415401],[-0.0061162388883531,0.0053237644024193,-0.046784199774265],[0.051093988120556,-0.051584824919701,-0.0086868377402425]],[[0.023622812703252,0.046925511211157,0.073208786547184],[-0.059529077261686,0.044442370533943,-0.061673317104578],[-0.033488102257252,-0.11414945870638,0.042153220623732]],[[-0.018297448754311,-0.0031146465335041,-0.061915561556816],[-0.071467012166977,-0.00054743327200413,0.052597515285015],[0.084629274904728,0.036833927035332,0.060682937502861]],[[0.060420975089073,0.02345840074122,-0.035979799926281],[-0.021810978651047,0.05579549074173,0.021101927384734],[0.03823883458972,0.044417176395655,0.0058094370178878]],[[-0.07659537345171,0.056034993380308,0.053706042468548],[-0.01305352896452,0.064140431582928,-0.024261789396405],[-0.025749797001481,0.014985146000981,-0.012572148814797]],[[0.019403260201216,-0.017023112624884,-0.01148717943579],[-0.086607649922371,-0.062241967767477,0.10552028566599],[0.043842736631632,-0.00056320067960769,-0.016646355390549]],[[-0.055358435958624,-0.015792164951563,0.04053270816803],[-0.045382551848888,-0.058527741581202,-0.023855920881033],[-0.0071043586358428,0.056454084813595,-0.098606169223785]],[[0.12138540297747,0.023161727935076,0.04077447578311],[0.0085676265880466,0.022982001304626,0.030661184340715],[0.12065067887306,0.12655101716518,0.051960945129395]],[[0.076242476701736,0.020076971501112,0.0046239895746112],[0.007802112493664,-0.01596318744123,-0.01913414336741],[-0.044925674796104,0.011634144000709,0.024640807881951]],[[-0.0096515668556094,-0.078229494392872,-0.038827084004879],[-0.064792849123478,-0.018143942579627,-0.048067454248667],[-0.074443332850933,-0.016738759353757,-0.03322359919548]],[[0.071322612464428,-0.056794509291649,0.037454076111317],[0.0027744483668357,0.015923477709293,0.010606433264911],[0.084388144314289,-0.061670891940594,0.099761717021465]],[[-0.027188934385777,-0.067661017179489,0.037861965596676],[-0.032746665179729,-0.017614806070924,0.026320300996304],[0.041802853345871,0.065416514873505,-0.0090118851512671]],[[-0.026677103713155,0.041155900806189,0.0072188912890851],[-0.021431906148791,0.017931122332811,0.0014428196009248],[0.075356468558311,0.025510352104902,0.041174087673426]],[[0.008871303871274,-0.018484344705939,-0.0034487384837121],[-0.10077518224716,0.00977264624089,0.0074677346274257],[-0.018513917922974,-0.017566841095686,0.0094858892261982]],[[-0.038244057446718,-0.074915058910847,-0.044754654169083],[0.012001771479845,-0.027634110301733,0.031642470508814],[0.12429021298885,0.0021940022706985,-0.011159253306687]],[[-0.05232111364603,0.032350942492485,-0.0062403911724687],[-0.10969264805317,0.001271431799978,-0.0050957091152668],[0.0087490333244205,0.044152326881886,-0.055925354361534]],[[0.013448148965836,-0.0024843432474881,-0.046593930572271],[0.033159077167511,-0.0030923362355679,0.049848351627588],[-0.032954692840576,-0.00020408787531778,0.0066566127352417]],[[0.036411065608263,-0.062345694750547,0.049399606883526],[-0.03572941198945,-0.0017470811726525,-0.066930778324604],[0.028991233557463,-0.025202738121152,-0.023223593831062]],[[0.065398260951042,0.060680534690619,0.071507401764393],[0.0040931603871286,-0.0083711631596088,0.090758286416531],[-0.01121202390641,0.022433081641793,0.060913268476725]],[[-0.022643124684691,0.040280438959599,0.063084177672863],[0.025735128670931,-0.016921123489738,-0.029180886223912],[0.10570402443409,0.0020709340460598,-0.024814341217279]],[[-0.045107986778021,-0.0017589315539226,-0.044659540057182],[0.0074329245835543,0.010439594276249,0.092474170029163],[0.010614139959216,0.021493932232261,0.025604983791709]],[[-0.016708645969629,-0.00274348561652,-0.079273238778114],[0.01094978954643,0.055911768227816,-0.04109251126647],[-0.011852038092911,0.08148629963398,0.00023742690973449]],[[-0.06311721354723,0.011429724283516,0.044050093740225],[-0.078651763498783,0.020696708932519,0.02063699439168],[0.039901942014694,0.089426524937153,-0.00040742452256382]],[[0.053800836205482,0.051128871738911,0.015363806858659],[-0.025873817503452,0.066759221255779,-0.0031139780767262],[0.016963278874755,-0.057221207767725,-0.033966887742281]],[[-0.077773965895176,-0.038886792957783,-0.034136939793825],[-0.011256139725447,0.0029386263340712,-0.028051132336259],[0.0072017023339868,0.014367366209626,0.019776171073318]],[[-3.1994517485145e-05,-0.0099594108760357,-0.033123049885035],[0.027866819873452,0.0044767968356609,-0.037190586328506],[0.002332811942324,0.040348950773478,-0.025898721069098]],[[-0.013001563958824,-0.0025380461011082,0.012332731857896],[-0.05147847533226,0.00018637214088812,0.0080106491222978],[0.032378192991018,0.018405329436064,-0.060923606157303]],[[0.022408682852983,0.027176108211279,-0.0080312667414546],[-0.016738338395953,-0.030302874743938,0.0089801028370857],[0.062444768846035,0.02818619646132,0.033217448741198]],[[-0.011069783940911,-0.009647904895246,0.0074910819530487],[-0.03568073362112,-0.046620290726423,0.0041072489693761],[0.0091666262596846,-0.016549138352275,0.023012090474367]],[[-0.018225954845548,-0.012184147723019,0.04754863679409],[0.031373422592878,-0.050549637526274,-0.020965576171875],[0.019821422174573,0.011175631545484,-0.065588533878326]],[[0.0049090785905719,0.019338881596923,-0.11800356954336],[0.047613386064768,0.081952765583992,-0.070536702871323],[-0.014829024672508,-0.015104321762919,-0.018295867368579]],[[-0.037647560238838,0.0086475228890777,0.073808141052723],[0.033787723630667,-0.027447454631329,-0.020509639754891],[0.032937962561846,0.036066919565201,-0.012504636310041]],[[0.062750712037086,0.014445989392698,0.080070495605469],[0.00018699474458117,0.0069319079630077,0.083631001412868],[-0.06531947851181,-0.030275488272309,-0.064044900238514]],[[-0.054668847471476,-0.0021758184302598,0.077935338020325],[0.027448669075966,-0.014888198114932,-0.034335914999247],[-0.019241949543357,0.019996011629701,-0.027408752590418]]],[[[-0.21067917346954,-0.045900262892246,0.047499872744083],[0.021961186081171,0.032583862543106,0.035178322345018],[-0.0012890594080091,0.099987216293812,0.063208624720573]],[[0.051283553242683,-0.025403367355466,-0.021753238514066],[-0.033456552773714,-0.0038185263983905,0.052001759409904],[0.0071862326003611,-0.12498852610588,0.020789552479982]],[[-0.043079867959023,0.041210893541574,-0.028178738430142],[0.019546886906028,0.038888923823833,0.0067573115229607],[0.04896143078804,-0.042965844273567,0.019667165353894]],[[0.0015839138068259,0.076566390693188,-0.090586550533772],[0.047048799693584,0.085343696177006,-0.035039871931076],[0.0082587692886591,-0.0050770714879036,-0.017195079475641]],[[-0.044635146856308,-0.053920868784189,-0.0050332993268967],[-0.026461709290743,0.076757505536079,0.027566786855459],[0.034652154892683,-0.012678760103881,0.033661097288132]],[[0.0013467416865751,0.018213801085949,-0.031414683908224],[0.0033413418568671,0.057685632258654,-0.085447184741497],[-0.0076187970116735,0.032378114759922,0.070275701582432]],[[-0.00036842012195848,0.0040732584893703,-0.01278293132782],[0.029297057539225,-0.003301250282675,0.020408106967807],[-0.020209215581417,0.062415350228548,-0.045860558748245]],[[0.012310818769038,-0.059278395026922,-0.00070860848063603],[-0.056007452309132,0.070597507059574,-0.025501890107989],[-0.00018201471539214,-0.05340613052249,-0.026142001152039]],[[-0.053215581923723,-0.044897343963385,0.065112844109535],[0.051834776997566,0.077406153082848,-0.032700955867767],[-0.05419410020113,0.0072535243816674,-0.02111485786736]],[[0.0519301854074,0.0037988584954292,-0.024450346827507],[0.10829945653677,-0.047737874090672,-0.050340238958597],[-0.011913997121155,-0.0015079753939062,0.014819929376245]],[[0.03130341693759,0.015534922480583,-0.0087708337232471],[-0.019564447924495,0.013697193935513,0.020764879882336],[0.079278416931629,-0.032691400498152,-0.011324874125421]],[[0.008639220148325,0.033271722495556,-0.0069692949764431],[0.066952653229237,-0.026908732950687,-0.0034367693588138],[0.062170471996069,-0.022957364097238,0.030741510912776]],[[0.00099341850727797,0.037437349557877,0.0059087374247611],[0.07734888792038,-0.057918772101402,-0.068529114127159],[-0.020879965275526,0.13255326449871,0.07860029488802]],[[0.035166725516319,0.098220936954021,0.019505964592099],[-0.013214127160609,-0.015019910410047,0.035512305796146],[0.022334307432175,-0.011842236854136,0.058589454740286]],[[0.017485350370407,0.02505555190146,-0.038095351308584],[0.018625177443027,0.017641138285398,0.018290026113391],[-0.033102490007877,-0.016293108463287,0.0068413163535297]],[[0.013277652673423,0.044227853417397,0.022805422544479],[0.0129609182477,0.032581374049187,0.058813452720642],[-0.057412497699261,-0.10742880403996,-0.048542257398367]],[[0.0041367374360561,-0.042214509099722,0.053970903158188],[0.083204366266727,0.026878254488111,0.023257382214069],[-0.0079186577349901,-0.00228834990412,0.00072277901927009]],[[0.00046570069389418,-0.017058942466974,-0.0097212838009],[0.071577928960323,-0.021906822919846,-0.041235264390707],[0.007261274382472,0.0069817621260881,-0.00025584985269234]],[[-0.047196883708239,0.04656333476305,-0.026463385671377],[-0.030274156481028,0.093011401593685,-0.022963874042034],[0.030633384361863,-0.022531410679221,0.022302702069283]],[[0.11933736503124,-0.05358225107193,-0.039283018559217],[0.094642028212547,-0.035915907472372,-0.025801068171859],[0.038111135363579,0.072438895702362,-0.0024825336877257]],[[-0.016460612416267,-0.0013627201551571,0.0017194850370288],[-0.054573848843575,0.029407909139991,0.11503887176514],[0.038008473813534,0.041622243821621,0.014901061542332]],[[0.065407641232014,0.040934361517429,-0.011763914488256],[-0.078778132796288,-0.028092628344893,0.0040253917686641],[-0.06609208136797,0.012262185104191,-0.010752589441836]],[[-0.022827574983239,0.043122678995132,0.047978207468987],[0.057129207998514,0.019995769485831,0.11368314176798],[-0.023490665480494,0.037022475153208,0.02369019575417]],[[-0.073436729609966,-0.015000419691205,-0.013197698630393],[-0.037515081465244,0.078466556966305,0.0012813466601074],[-0.088919393718243,-0.01235201023519,-0.00097536901012063]],[[0.026430726051331,-0.016408426687121,0.00076790881576017],[-0.0098477508872747,0.046822637319565,0.073513686656952],[-0.049898721277714,-0.037674184888601,0.012853930704296]],[[-0.011794129386544,-0.0010284687159583,0.021087786182761],[-0.0052006761543453,0.015899894759059,0.079274989664555],[-0.010495448485017,0.015420304611325,0.037000816315413]],[[-0.037301268428564,0.00035465203109197,0.0023513070773333],[0.047321114689112,0.041184317320585,0.054274965077639],[-0.037280756980181,0.080083139240742,0.042814418673515]],[[-0.047179143875837,0.11737529188395,-0.02390705794096],[-0.0093446634709835,-0.025242373347282,0.029558209702373],[0.038075562566519,-0.0050462167710066,-0.037236917763948]],[[0.010201203636825,0.06198101863265,0.001246124622412],[-0.075429201126099,-0.080106198787689,0.075292594730854],[-0.0010311362566426,-0.028907429426908,-0.030262123793364]],[[0.029320728033781,-2.1925701730652e-05,-0.0090714991092682],[0.022199029102921,-0.059346616268158,0.05041291192174],[-0.023311741650105,-0.0030595869757235,0.039105579257011]],[[0.031069407239556,-0.018815679475665,0.037541594356298],[0.041827894747257,0.0049015074037015,-0.059752237051725],[0.015369067899883,-0.030589956790209,0.029422521591187]],[[-0.04301967844367,0.058015409857035,0.043774902820587],[0.066351629793644,0.028963839635253,0.0023440141230822],[0.093885704874992,0.038708429783583,0.0074045173823833]],[[-0.052475973963737,-0.012674276717007,-0.07182502001524],[-0.020429683849216,0.050161704421043,-0.010447443462908],[-0.012542543001473,0.041484620422125,0.086475305259228]],[[0.0072578103281558,0.0042353835888207,0.0098288133740425],[-0.050319649279118,0.010968187823892,0.0058799469843507],[0.01941617205739,0.017135180532932,0.0066161663271487]],[[0.060391090810299,0.026825727894902,-0.031948745250702],[0.071842327713966,0.0011061173863709,-0.0068931705318391],[-0.10616487264633,-0.078321650624275,0.081421218812466]],[[-0.011251089163125,0.039767157286406,-0.0084786014631391],[-0.025971507653594,0.092240877449512,-0.016549041494727],[-0.078814402222633,0.1178812906146,0.047472804784775]],[[-0.010900987312198,-0.024074014276266,-0.044034145772457],[-0.1135384067893,-0.00522899068892,0.054341685026884],[0.056964576244354,0.12964531779289,0.080127827823162]],[[-0.048123210668564,-0.01678866147995,-0.026556501165032],[-0.037180304527283,0.026064660400152,-0.054705392569304],[0.039262544363737,0.033222235739231,-0.012581542134285]],[[-0.018738215789199,0.036261893808842,-0.053374886512756],[-0.014872581698,0.010623143054545,0.019959377124906],[-0.022599909454584,0.028062120079994,-0.037341181188822]],[[0.043935339897871,0.022186366841197,0.017114384099841],[0.018272528424859,-0.033138141036034,0.0090261427685618],[0.0042988178320229,0.028481716290116,-0.032976090908051]],[[0.066356912255287,0.017632642760873,0.026953397318721],[0.0092041110619903,-0.045704148709774,-0.061467073857784],[-0.037502016872168,0.01843473315239,0.040429495275021]],[[0.010025090537965,-0.06364231556654,0.066351793706417],[0.013624203391373,0.0084700686857104,-0.005113132763654],[0.0086151724681258,-0.075767613947392,0.010852450504899]],[[-0.021503394469619,-0.05011185631156,-0.025569664314389],[-0.053189728409052,0.0036143192555755,-0.0013428669190034],[0.022226978093386,0.026576863601804,0.010372313670814]],[[-0.030455840751529,-0.0032221218571067,-0.063107848167419],[0.050169065594673,0.043484535068274,-0.085798546671867],[0.02212561480701,-0.0068636243231595,0.055055879056454]],[[-0.076125003397465,0.031703654676676,-0.012391738593578],[-0.0733522772789,0.051589071750641,-0.027353746816516],[-0.043786209076643,0.0091950111091137,0.027742994949222]],[[0.035151246935129,-0.030850652605295,-0.023310158401728],[0.0097340578213334,0.021517870947719,0.022076597437263],[-0.007925970479846,0.0061707999557257,0.042478304356337]],[[0.010924932546914,0.021628558635712,0.018869590014219],[0.033803295344114,-0.01122557092458,0.00067295844200999],[-0.035216614603996,0.036651130765676,-0.037859249860048]],[[0.016499256715178,0.020027384161949,-0.084841653704643],[-0.038960758596659,0.020697129890323,0.066457234323025],[-0.015877153724432,-0.10430685430765,-0.031648185104132]],[[-0.043173342943192,0.023074209690094,0.014499394223094],[0.0072842701338232,0.098319612443447,0.019260603934526],[0.0041022151708603,0.069551877677441,0.025408677756786]],[[-0.013773354701698,0.05229439586401,-0.034246668219566],[0.013492790982127,0.10092066973448,-0.065715081989765],[-0.092453770339489,-0.0013888739049435,-0.022862834855914]],[[-0.011055230163038,0.027230577543378,0.0063748639076948],[-0.0091589828953147,0.020826771855354,-0.016554035246372],[0.057634718716145,0.066415496170521,0.038425613194704]],[[0.017483612522483,-0.037796135991812,0.026114696636796],[-0.015241242013872,0.030757319182158,-0.03789871931076],[-0.02275769226253,-0.02203705906868,0.029239824041724]],[[-0.010044163092971,-0.034297451376915,0.026018645614386],[0.052396383136511,-0.028762316331267,0.11203830689192],[-0.037397433072329,0.0083771087229252,0.04492000862956]],[[0.0052739749662578,0.013327610678971,-0.075544431805611],[0.05303318798542,0.051899880170822,-0.0061516351997852],[0.064784921705723,-0.026218691840768,0.060565158724785]],[[-0.031446892768145,-0.011116803623736,0.03167188167572],[-0.016810212284327,0.057419564574957,0.040904216468334],[-0.020009059458971,-0.020551400259137,0.00068153033498675]],[[-0.085417903959751,0.022294905036688,0.047545567154884],[-0.011677392758429,0.12204378843307,0.035934936255217],[0.081048794090748,0.06491993367672,0.0039109326899052]],[[-0.0080344062298536,0.084767207503319,0.039469368755817],[0.011522217653692,-0.021115189418197,-0.009679364040494],[0.0060674212872982,-0.039274718612432,-0.031326625496149]],[[-0.041279539465904,0.0077299517579377,0.002387608634308],[0.032464854419231,0.04198232665658,0.027997290715575],[0.078982174396515,0.0089439051225781,0.037278808653355]],[[0.054493580013514,0.022011818364263,0.014439738355577],[-0.023655930534005,-0.024756716564298,0.0078566139563918],[0.066179774701595,-0.0099145993590355,-0.029791167005897]],[[0.033145356923342,0.038911614567041,0.053297787904739],[-0.0052772276103497,-0.065255515277386,-0.078660100698471],[-0.081389769911766,0.055171351879835,0.049056056886911]],[[0.023977570235729,-0.026456277817488,0.033362150192261],[0.040563441812992,0.071020044386387,0.015147123485804],[-0.12153332680464,0.033028475940228,0.049843087792397]],[[0.040509652346373,-0.017259953543544,0.013892687857151],[-0.018944922834635,-0.025846166536212,0.025242077186704],[-0.04258555918932,-0.037603545933962,-0.036548413336277]],[[-0.048310916870832,0.043355099856853,0.0039955438114703],[-0.016534771770239,0.025749614462256,-0.046642851084471],[0.031798548996449,0.014543687924743,0.053752407431602]],[[0.0088983215391636,0.0069829039275646,-0.018900752067566],[-0.03644872456789,0.030858788639307,0.020692493766546],[0.020973959937692,0.037320926785469,-0.040423352271318]],[[0.01790245808661,-0.0035732795950025,0.002169051906094],[-0.0064050983637571,0.0049398234114051,0.0031165978871286],[-0.040011938661337,0.04856026917696,0.07486654818058]],[[0.064378872513771,0.036317177116871,0.042053636163473],[-0.064067140221596,-0.018574636429548,-0.014387604780495],[0.052597213536501,-0.056459505110979,0.036154221743345]],[[-0.047494456171989,-0.010204697027802,-0.028897069394588],[0.041600178927183,-0.044079270213842,0.035279836505651],[0.0073893093504012,0.018282866105437,0.081886999309063]],[[0.027464281767607,-0.018944948911667,-0.026338163763285],[0.044990431517363,0.0060761175118387,0.031232142820954],[0.059785056859255,-0.026256630197167,-0.0018117432482541]],[[0.0049611735157669,-0.002045568311587,-0.010410916991532],[0.023801498115063,-0.013383595272899,0.036777395755053],[-0.038240544497967,0.060710180550814,0.023303987458348]],[[0.0087004359811544,-0.050592321902514,-0.024736613035202],[0.10325503349304,0.036965392529964,-0.0095984311774373],[-0.026781899854541,-0.0097014168277383,-0.012382116168737]],[[0.0068324389867485,-0.022389786317945,-0.0051841763779521],[0.0094464384019375,0.030258771032095,0.0073241563513875],[-0.059094272553921,-0.01729397661984,0.021403022110462]],[[0.013829372823238,0.027634562924504,0.038604509085417],[-0.018483735620975,-0.077747389674187,0.021962145343423],[0.015620303340256,0.096701413393021,0.018289811909199]],[[-0.0076630255207419,0.06435489654541,0.010372800752521],[0.032527681440115,-0.057760316878557,-0.017526760697365],[0.028345094993711,0.087838135659695,-0.0014131374191493]],[[-0.073658101260662,0.082411050796509,-0.037938959896564],[-0.032578986138105,0.041339408606291,0.027420273050666],[0.0077724009752274,-0.012175208888948,0.0059666442684829]],[[-0.077848568558693,-0.089612938463688,0.077815480530262],[-0.030841274186969,0.13402856886387,-0.038187634199858],[-0.064090333878994,0.076108291745186,0.073040142655373]],[[0.0094952704384923,-0.010925743728876,-0.023815114051104],[0.022339196875691,0.067783869802952,0.010971317999065],[0.06205041706562,0.016945047304034,-0.035866983234882]],[[0.073928885161877,-0.037780474871397,0.012362099252641],[0.016262406483293,-0.017307350412011,-0.012653280980885],[0.035488642752171,-0.0058808568865061,0.011825404129922]],[[-0.015405721962452,0.14540795981884,0.053639482706785],[0.063999205827713,0.047450970858335,-0.044625878334045],[0.0076584718190134,-0.089665465056896,-0.1277838498354]],[[0.0036758959759027,0.012948770076036,0.054730512201786],[-0.025190798565745,0.0031746029853821,-0.012254315428436],[-0.019152790307999,-0.001145260524936,-0.003951798658818]],[[0.031621962785721,-0.10385110974312,0.015440036542714],[0.033085398375988,-0.008406687527895,-0.054011046886444],[-0.037110690027475,0.048844985663891,0.018534049391747]],[[0.088893502950668,0.05011784657836,0.05408389121294],[0.038463085889816,0.012859182432294,-0.023675281554461],[-0.023832054808736,0.054232716560364,-0.052736282348633]],[[0.010555947199464,-0.0038191752973944,0.023369628936052],[-0.046596724539995,-0.0028605021070689,0.033756237477064],[-0.037557661533356,-0.0316032320261,0.020781898871064]],[[-0.05019798129797,0.064493544399738,0.094658121466637],[0.043538887053728,0.020619856193662,0.052493721246719],[0.031216433271766,0.023380288854241,0.011899348348379]],[[0.019389072433114,0.024214351549745,0.037428181618452],[0.020951934158802,0.012806067243218,-0.04807872325182],[0.060067139565945,-0.022262178361416,0.00081302097532898]],[[0.025677600875497,0.059773534536362,-0.0026292658876628],[-0.071587264537811,0.053190607577562,-0.066881328821182],[0.0045747440308332,-0.065970733761787,-0.035032283514738]],[[0.0019341418519616,0.059118378907442,0.011182786896825],[0.079614706337452,0.020543599501252,-0.082138322293758],[0.076677344739437,0.067192859947681,-0.022744726389647]],[[0.0047705797478557,0.048199594020844,0.041685998439789],[0.00048017074004747,0.0035931547172368,0.027905834838748],[-0.018280221149325,0.05066966637969,-0.013816083781421]],[[-0.032979100942612,0.021931177005172,0.015994280576706],[-0.021098202094436,-0.026732042431831,-0.039569661021233],[0.038753673434258,-0.0028859488666058,-0.00059309502830729]],[[-0.013245010748506,0.028046192601323,0.04799384996295],[0.02006078697741,-0.090316817164421,-0.018593247979879],[0.05320767685771,-0.054912257939577,0.073788687586784]],[[-0.01708634570241,0.04188821464777,-0.014862017706037],[0.0054919645190239,0.025213019922376,-0.0016575511544943],[-0.042875315994024,0.061203323304653,-0.030800467357039]],[[0.033740930259228,0.03304298222065,0.057974305003881],[0.013598328456283,0.008998523466289,-0.040122378617525],[-0.059004884213209,0.028986735269427,0.065521396696568]],[[-0.01932623423636,-0.024545483291149,0.049899008125067],[-0.060563985258341,0.065209068357944,0.040795259177685],[-0.072297640144825,0.067274384200573,0.050107218325138]],[[0.015567029826343,0.015108593739569,0.010932065546513],[0.07129929959774,-0.02032888494432,0.044618308544159],[-0.013714413158596,0.051656909286976,0.083679623901844]],[[-0.0080481311306357,0.027154270559549,-0.015892907977104],[-0.064981490373611,0.027785606682301,-0.058246601372957],[-0.013886674307287,-0.010634571313858,0.032475784420967]],[[0.005353239364922,0.045288279652596,-0.014123131521046],[0.064039893448353,-0.027321325615048,0.0007569087902084],[-0.053953502327204,-0.033190108835697,-0.017833972349763]],[[0.023747734725475,0.037223976105452,0.024841004982591],[-0.050396785140038,0.017285920679569,-0.0059647997841239],[-0.031175963580608,0.019551603123546,-0.035518649965525]],[[0.080422580242157,0.0080715455114841,0.0032736340072006],[0.0067880656570196,-0.039419386535883,-0.0093910545110703],[-0.030770480632782,-0.0079478891566396,0.032996598631144]],[[-0.01242227293551,-0.026700340211391,0.010295919142663],[0.05263015627861,0.011131357401609,0.035084422677755],[0.068704389035702,-0.0073601533658803,0.069915384054184]],[[-0.016162920743227,0.077590629458427,0.048191759735346],[-0.024685645475984,-0.012790629640222,-0.040172066539526],[-0.039434671401978,-0.025995828211308,0.0079940082505345]],[[-0.024679021909833,0.041449122130871,-0.0068010403774679],[-0.018746258690953,-0.0085986508056521,0.084105744957924],[-0.015408867038786,-0.0093270093202591,-0.014210670255125]],[[0.0012980459723622,0.0036940483842045,-0.03014787659049],[-0.028124574571848,-0.041886381804943,-0.093865379691124],[0.048054154962301,-0.014179167337716,-0.0082785459235311]],[[-0.039665751159191,0.030408913269639,0.02445319481194],[0.023411128669977,-0.031198291108012,0.012616471387446],[0.01771717146039,-0.045515120029449,0.00079947046469897]],[[0.05998370051384,-0.057278670370579,0.012087351642549],[0.096442617475986,-0.022753436118364,0.0076110600493848],[-0.070487320423126,-0.027074232697487,0.060794085264206]],[[-0.036870490759611,-0.093097664415836,0.0047170901671052],[0.024858424440026,0.057827744632959,-0.069826729595661],[0.010262535884976,-0.03796598315239,0.085771851241589]],[[-0.070645079016685,-0.075081489980221,0.014699883759022],[-0.043765615671873,-0.0075322729535401,0.0052774716168642],[0.032346069812775,0.036049883812666,0.097722411155701]],[[-0.0072208559140563,0.028842365369201,-0.059912327677011],[-0.0010226389858872,-0.030464679002762,0.052552085369825],[-0.0062342677265406,-0.092886298894882,-0.01096389722079]],[[0.023730596527457,-0.016855001449585,-0.042469222098589],[-0.072437956929207,0.053498685359955,-0.095552667975426],[0.010822053998709,0.047835864126682,-0.032805684953928]],[[-0.024122677743435,0.012172390706837,-0.055384695529938],[0.039842620491982,0.025796623900533,0.069327622652054],[0.057963024824858,0.015648426488042,-0.018234550952911]],[[0.023967456072569,0.012499346397817,-0.028900006785989],[0.038634363561869,0.057104371488094,-0.02326101064682],[0.0073194466531277,0.014237526804209,-0.015909729525447]],[[0.038921557366848,0.018310589715838,0.0079884100705385],[0.013685436919332,0.0053125154227018,0.080958619713783],[0.049763228744268,-0.027393819764256,0.11082498729229]],[[-0.027563998475671,-0.0053598643280566,-0.041626773774624],[-0.046655155718327,-0.081545442342758,0.025879738852382],[-0.083306364715099,-0.016574738547206,0.00045910940389149]],[[-0.016785506159067,-0.0040560672059655,-0.00073741551022977],[0.005993377417326,0.0093373320996761,0.057156648486853],[0.029254687950015,0.027738656848669,0.037730753421783]],[[-0.013794532977045,0.080290839076042,0.039947308599949],[0.046094868332148,0.011561373248696,0.029679438099265],[0.093267448246479,-0.054434631019831,0.029467944055796]],[[-0.0080550750717521,0.058021973818541,0.010748443193734],[-0.0398258715868,0.014374600723386,0.0010596435749903],[0.013616714626551,-0.0028794128447771,-0.037447649985552]],[[-0.015219169668853,-0.054520841687918,-0.013373427093029],[0.035542711615562,0.080066911876202,0.034740578383207],[0.023785509169102,0.011095327325165,-0.020716037601233]],[[-0.031623546034098,0.013902357779443,-0.0055397069081664],[-0.018448062241077,0.068298518657684,-0.050326623022556],[0.043131295591593,-0.025782149285078,0.060418456792831]],[[-0.004207662306726,0.0015962553443387,0.017529787495732],[-0.059590104967356,0.0024242997169495,-0.035441644489765],[-0.00087273749522865,0.084825970232487,-0.058058749884367]],[[0.077408514916897,0.020412497222424,-0.068067342042923],[0.022367695346475,0.041665554046631,-0.038608551025391],[0.012492335401475,0.10758108645678,0.016330152750015]],[[-0.014054448343813,0.0035402630455792,-0.01883733831346],[0.008448832668364,-0.060079913586378,-0.029113868251443],[-0.0095374528318644,0.090133339166641,0.0028950923588127]],[[0.03827965259552,-0.12790855765343,-0.002098178723827],[0.097989231348038,-0.11044079065323,-0.037125743925571],[0.049017868936062,-0.073154769837856,0.015363411977887]],[[-0.0035576487425715,0.045069489628077,0.010010818950832],[0.016944291070104,0.019104946404696,-0.061993043869734],[0.063442878425121,0.054109923541546,-0.092536777257919]],[[0.011811019852757,-0.009955370798707,0.048782248049974],[-0.034993268549442,-0.061756558716297,0.0059092487208545],[0.079487644135952,0.0094018410891294,-0.038930419832468]],[[0.0079891514033079,-0.040327779948711,-0.014615728519857],[-0.053723931312561,0.019660165533423,0.019167887046933],[0.049739271402359,0.03000838495791,0.032421160489321]],[[0.054409366101027,-0.051668353378773,0.041199006140232],[0.036673735827208,0.089065827429295,0.038686331361532],[0.04484586045146,0.0141940722242,0.029699685052037]],[[-0.059068240225315,-0.016282077878714,0.0014843126991764],[-0.03233078867197,0.017480814829469,0.0090967733412981],[-0.07045567035675,0.017803786322474,0.021998014301062]],[[-0.046558149158955,-0.058031927794218,0.068228654563427],[0.04283644631505,-0.035826794803143,0.07436615228653],[-0.01564459502697,0.05621886998415,-0.0096505489200354]],[[0.040402326732874,-0.010977777652442,0.025108009576797],[0.046698741614819,0.046496756374836,-0.0099796103313565],[-0.02418177947402,-0.0018850791966543,-0.079831071197987]],[[0.057462625205517,0.051693044602871,-0.023243121802807],[-0.016253439709544,-0.066099882125854,-0.014808624051511],[-0.088001012802124,0.036503367125988,0.082522705197334]]],[[[0.010223864577711,0.01809967122972,-0.075128771364689],[0.067240029573441,0.00061045156326145,0.018128508701921],[0.0025037131272256,-0.016910910606384,-0.066297076642513]],[[0.0072375545278192,0.057487197220325,-0.029896670952439],[0.0028142957016826,0.038240291178226,-0.006351653020829],[0.0042358725331724,0.060973558574915,-0.019061056897044]],[[-0.017839273437858,-0.026744063943624,-0.033475738018751],[0.056195911020041,-0.014816860668361,-0.0038086017593741],[-0.016851048916578,-0.02181982062757,-0.026602681726217]],[[-0.018492370843887,0.0095182433724403,0.085065491497517],[0.0051199644804001,0.016033954918385,-0.01009626686573],[-0.043365698307753,-0.058681074529886,-0.047106314450502]],[[0.029060505330563,-0.0036161076277494,0.031530424952507],[0.0096554895862937,0.092256158590317,-0.037860501557589],[0.037625275552273,-0.02601432800293,0.026291588321328]],[[-0.011628086678684,0.10801939666271,-0.068245559930801],[-0.037652093917131,0.028988663107157,-0.045977156609297],[0.0068882014602423,0.041111703962088,-0.035112552344799]],[[-0.022699348628521,0.010302487760782,0.06161055341363],[0.033721938729286,0.029311856254935,0.038298811763525],[0.026039971038699,-0.02864421531558,0.015369202941656]],[[0.042751800268888,0.02765585295856,-0.030352208763361],[0.048147320747375,0.060120265930891,-0.076544098556042],[-0.026356460526586,-0.035362020134926,-0.080843068659306]],[[0.0088794762268662,0.0064987745136023,0.041268523782492],[0.0042533967643976,-0.10471469908953,0.023220615461469],[-0.08040689677,0.0016648357268423,0.053716856986284]],[[0.01438694447279,-0.011585417203605,0.026128448545933],[-0.0063065467402339,0.046449720859528,-0.066699028015137],[-0.012044491246343,-0.0017672096146271,0.031637538224459]],[[-0.052820321172476,0.027221698313951,-0.035882700234652],[0.0016476397868246,0.0012646488612518,-0.017474504187703],[0.031879417598248,-0.01448193192482,-0.036304615437984]],[[-0.029633866623044,0.021311685442924,0.0034343705046922],[-0.021893359720707,-0.027622690424323,-0.0073089706711471],[-0.03203346580267,-0.037394598126411,0.11138271540403]],[[0.020222287625074,0.024186123162508,-0.020705951377749],[0.018575416877866,0.030186971649528,0.0015956804854795],[0.054038930684328,-0.051759537309408,-0.08967799693346]],[[0.034996554255486,-0.012856234796345,0.020662540569901],[0.044813092797995,-0.069661259651184,-0.0040294341742992],[0.040759149938822,-0.023855227977037,-0.013550847768784]],[[-0.00096930621657521,0.055529709905386,-0.035337820649147],[0.031508881598711,-0.0020597521215677,0.06079201027751],[0.027952531352639,-0.012289081700146,-0.042926579713821]],[[-0.032955802977085,-0.041149586439133,-0.0052960813045502],[0.026624804362655,-0.034182474017143,0.028952140361071],[0.019224517047405,0.045695450156927,-0.0098237777128816]],[[-0.046965517103672,-0.034191388636827,-0.069082908332348],[0.02904593385756,0.023561058565974,-0.03779911249876],[-0.00084314617561176,-0.054103005677462,0.035326674580574]],[[0.050127521157265,-0.011962887831032,-0.029020842164755],[-0.041285250335932,0.11639618128538,-0.035642839968204],[-0.022597897797823,0.02601283416152,0.044785019010305]],[[-0.024678947404027,0.050343155860901,0.0068029281683266],[-0.0066139381378889,-0.020108470693231,-0.072689197957516],[-0.033657729625702,-0.055262189358473,0.037865474820137]],[[0.030858060345054,-0.085641130805016,0.00044131872709841],[0.080216281116009,0.0068185478448868,-0.067431204020977],[-0.040825501084328,-0.020841412246227,0.016624365001917]],[[0.040686160326004,-0.0015308115398511,0.0026107302401215],[-0.0054273060522974,-0.039304997771978,0.059420924633741],[-0.043074656277895,0.0069994651712477,-0.0096717467531562]],[[0.023437444120646,-0.016896920278668,0.032289419323206],[-0.061520457267761,0.0021404577419162,-0.023842150345445],[0.070872887969017,-3.3338808862027e-05,-0.0042781722731888]],[[-0.043173920363188,0.012509769760072,-0.10002084821463],[-0.086080610752106,0.059545043855906,0.058718379586935],[-0.078636303544044,-0.040043316781521,-0.0086256312206388]],[[0.021194344386458,-0.031505048274994,-0.050944328308105],[0.021119395270944,0.08697722107172,0.032818861305714],[0.087446719408035,-0.1141205355525,-0.0052067101933062]],[[0.027693478390574,0.016647698357701,0.043349459767342],[-0.030322084203362,-0.047985289245844,-0.034438770264387],[0.032771829515696,-0.015060810372233,-0.009424950927496]],[[-0.025362093001604,0.060666866600513,-0.017936902120709],[0.0078522562980652,-0.0054302266798913,-0.038483608514071],[0.012090815231204,-0.10183629393578,-0.041730985045433]],[[0.02640607394278,-0.0031862994655967,0.051349729299545],[0.11042363941669,-0.033490993082523,-0.017751840874553],[-0.012015824206173,-0.033730242401361,0.0078473221510649]],[[0.0023613190278411,-0.0091755921021104,-0.10884623229504],[-0.061095263808966,-0.019429657608271,0.014695862308145],[0.037719760090113,0.01684227399528,-0.014627926051617]],[[0.029262138530612,0.081024706363678,-0.035532228648663],[0.065727517008781,0.043483305722475,0.03060869127512],[-0.039334744215012,-0.036606222391129,-0.0014156847028062]],[[0.04470606893301,0.016269093379378,0.00081854540621862],[-0.0093316994607449,0.050260540097952,0.043201610445976],[-0.056471962481737,-0.021190075203776,0.056977391242981]],[[0.030402775853872,0.041118886321783,0.02547125890851],[-0.034783154726028,0.003122387919575,-0.024514872580767],[0.022955680266023,0.025770420208573,0.011226180009544]],[[0.014015081338584,-0.041168197989464,-0.011704036034644],[0.037859942764044,0.021167479455471,0.028242066502571],[-0.02444913238287,0.036361318081617,0.015000376850367]],[[-0.038538865745068,0.023546328768134,0.007566552143544],[0.01130152028054,-0.04450823739171,0.024662114679813],[-0.0045635499991477,0.10764847695827,0.013925223611295]],[[-0.037923987954855,0.0066488310694695,0.046434819698334],[0.060710620135069,0.047235127538443,-0.0037052256520838],[0.045543793588877,-0.052999053150415,-0.062848135828972]],[[-0.010115026496351,-0.023829208686948,-0.06165998056531],[0.023571845144033,-0.0091155357658863,-0.028428139165044],[-0.0018403641879559,-0.025354254990816,0.046803172677755]],[[0.023421131074429,-0.0057069384492934,0.0059813805855811],[0.019683538004756,-0.018232051283121,0.033202458173037],[0.049833945930004,-0.00028266513254493,0.016925651580095]],[[-0.037009675055742,0.0051885265856981,-0.010956763289869],[0.0020264890044928,0.022726263850927,0.01885780133307],[0.014792589470744,0.021539609879255,0.061504196375608]],[[0.012055862694979,-0.092903204262257,-0.073665365576744],[0.0060951225459576,0.036838352680206,0.021418130025268],[0.02537608705461,-0.015449614264071,-0.047771960496902]],[[0.070578791201115,0.02681240811944,0.036771282553673],[0.062527284026146,0.096772387623787,0.041391380131245],[0.025647081434727,0.040876165032387,0.014836546033621]],[[0.034177739173174,0.061711855232716,0.024183247238398],[-0.026896940544248,0.039188705384731,0.047167211771011],[0.034706216305494,0.015746364369988,0.039755161851645]],[[0.00099058193154633,0.076020039618015,-0.012348277494311],[0.032424047589302,0.047579232603312,0.039337117224932],[0.008640892803669,-0.038341425359249,0.054467715322971]],[[0.0027796945068985,0.031269948929548,-0.032497465610504],[-0.016860065981746,-0.018439445644617,-0.035104185342789],[0.0045550498180091,-0.051577854901552,0.017695248126984]],[[0.01118025649339,0.053529240190983,-0.11129865795374],[-0.032665748149157,0.025621576234698,0.017578553408384],[0.04318755120039,-0.043087784200907,-0.030342269688845]],[[0.062792666256428,0.027041578665376,-0.067712314426899],[-0.012255975045264,0.038293119519949,-0.001988765783608],[-0.10166233032942,-0.038388609886169,-0.010225616395473]],[[0.033169206231833,0.071039862930775,0.0021432102657855],[0.025533318519592,-0.083229631185532,-0.060312114655972],[0.063176371157169,0.0034572388976812,-0.044284787029028]],[[-0.026023104786873,-0.067133150994778,-0.019535828381777],[0.061651397496462,-0.076841786503792,-0.018787188455462],[-0.063592426478863,-0.019664639607072,0.036935094743967]],[[0.070569977164268,0.081226967275143,0.014105481095612],[0.067285321652889,-0.075603753328323,0.048771150410175],[0.043024022132158,-0.03368566185236,-0.02685210108757]],[[-0.010866801254451,0.020576383918524,0.034380964934826],[0.010964381508529,-0.095171198248863,0.0075153545476496],[-0.089298978447914,0.035085335373878,-0.06474456936121]],[[0.079014703631401,0.021535748615861,-0.068238526582718],[-0.018360493704677,-0.0075102518312633,-0.068447664380074],[0.031746715307236,0.024070739746094,0.040957164019346]],[[-0.041699774563313,-0.012735759839416,0.0025588637217879],[0.0024982753675431,0.012823922559619,0.023077238351107],[-0.070249974727631,0.020751312375069,0.063972063362598]],[[-0.10272414982319,0.032956816256046,-0.037472128868103],[0.070897199213505,0.027047019451857,-0.045826230198145],[0.027537863701582,-0.023067075759172,-0.01202158536762]],[[-0.052988391369581,0.053947433829308,-0.020669251680374],[-0.056758899241686,-0.04546844959259,-0.040470387786627],[0.012793895788491,-0.026362676173449,-0.003714031772688]],[[0.0035595460794866,-0.014692638069391,0.0030509275384247],[0.037225499749184,0.0033414722420275,-0.040577147156],[0.025432448834181,-0.0049463100731373,0.0012826544698328]],[[-0.016455871984363,0.052227322012186,-0.0050333854742348],[0.0050238883122802,0.061499923467636,0.023259958252311],[0.040538277477026,0.10455176234245,-0.010804909281433]],[[-0.0054505998268723,-0.023576909676194,-0.048538122326136],[0.0088644502684474,-0.058804348111153,-0.01067175436765],[-0.10037904977798,-0.037470646202564,0.045968644320965]],[[-0.04621522501111,-0.065072901546955,0.077173158526421],[0.0084255253896117,-0.025315403938293,-0.013066069222987],[0.01335624884814,0.057497840374708,0.080203719437122]],[[-0.0074500516057014,-0.018157914280891,0.035615306347609],[-0.023696450516582,-0.0014120065607131,0.0077337599359453],[-0.056070446968079,0.07595856487751,0.017199374735355]],[[0.008908549323678,0.071420662105083,0.0066610225476325],[0.017857925966382,-0.064004234969616,0.0044397059828043],[-0.057752449065447,0.0050548063591123,-0.026316722854972]],[[0.044803503900766,-0.0060576610267162,-0.01424377784133],[0.088182471692562,-0.0086561366915703,0.017223374918103],[3.1015952117741e-07,0.033258028328419,0.030254356563091]],[[0.016749311238527,-0.0024845628067851,-0.085680171847343],[-0.013341456651688,0.036837048828602,0.012877244502306],[0.040191106498241,0.038753252476454,0.0039304210804403]],[[-0.034161940217018,-0.028027458116412,-0.020016342401505],[0.031448639929295,0.015473006293178,-0.054472260177135],[0.068294890224934,0.0033656805753708,-0.014080587774515]],[[0.010249603539705,0.096159189939499,-0.064384192228317],[0.0013037385651842,0.028571425005794,-0.031155979260802],[-0.013644008897245,-0.044419907033443,0.010651073418558]],[[0.037613496184349,0.047612119466066,0.039711154997349],[-0.040621299296618,0.036376506090164,-0.0010265189921483],[0.010861991904676,0.03167087584734,-0.030452478677034]],[[0.01134617626667,0.030959885567427,0.068091914057732],[-0.01128866057843,-0.014684092253447,-0.015882262960076],[-0.030388832092285,0.01979286968708,-0.026178281754255]],[[-0.039375748485327,-0.014524093829095,-0.036843508481979],[0.047362234443426,0.024506829679012,0.038251508027315],[-0.072333760559559,0.0048770839348435,0.03332532569766]],[[0.040336485952139,0.0019579294603318,0.0082526002079248],[0.020876262336969,-0.012871247716248,0.013458060100675],[-0.003191978437826,0.031026802957058,-0.025997063145041]],[[-0.0059221554547548,-0.058139193803072,0.025231208652258],[-0.032525390386581,0.0072516486980021,-0.015053475275636],[0.03407246991992,-0.090859189629555,-0.058183148503304]],[[0.060214057564735,0.0081047574058175,-0.023439118638635],[0.022218005731702,-0.0036677240859717,-0.048272956162691],[-0.054670393466949,0.036680985242128,0.039907671511173]],[[0.044968631118536,0.013951039873064,-0.069203250110149],[-0.050488796085119,-0.01452621165663,-0.014884193427861],[-0.07127783447504,0.010099312290549,0.041175711899996]],[[-0.044373206794262,-0.059235163033009,-0.050850570201874],[-0.015003815293312,0.081806518137455,-0.090035274624825],[-0.0042681833729148,0.12271928042173,0.084377460181713]],[[0.028007993474603,-0.044621221721172,-0.030609097331762],[0.015748407691717,-0.0025333960074931,-0.0023455701302737],[-0.025127548724413,0.027556661516428,-0.063637740910053]],[[0.001552902860567,0.12559361755848,0.01581204123795],[-0.0752317532897,-0.014519227668643,0.0015460094437003],[0.057249162346125,-0.018795857205987,-0.012652330100536]],[[0.014541061595082,-0.042165391147137,-0.058653358370066],[-0.046226400882006,0.077499479055405,0.072226785123348],[-0.013780433684587,-0.024863401427865,0.063950225710869]],[[-0.061258655041456,0.020736932754517,0.0517035163939],[-0.014254773966968,-0.026840714737773,-0.0011037528747693],[0.0032250769436359,-0.0063470155000687,-0.018620127812028]],[[0.0078028184361756,0.024105507880449,-0.0022460967302322],[0.064029686152935,-0.019333576783538,-0.042384061962366],[0.013045254163444,0.018314968794584,-0.04960111528635]],[[0.04172845184803,0.036097478121519,-0.021825173869729],[-0.038753472268581,-0.021334994584322,0.033189512789249],[-0.013257219456136,-0.0033010162878782,0.0061769057065248]],[[0.033805441111326,0.051637511700392,-0.01774687319994],[-0.03107488527894,-0.011931412853301,-0.0046546515077353],[-0.037937235087156,0.065689012408257,0.041774358600378]],[[-0.019698968157172,-0.0047026691026986,0.037286158651114],[-0.057140719145536,0.076438248157501,-0.04540353640914],[0.046464383602142,0.025542130693793,-0.050903916358948]],[[0.028828844428062,0.044502958655357,0.037391506135464],[0.053331486880779,-0.017659265547991,0.010792015120387],[0.00901148468256,-0.019125703722239,-0.0097400797531009]],[[0.029701640829444,-0.028547266498208,0.032772853970528],[0.02963169105351,-0.038906212896109,0.027217043563724],[0.038414500653744,-0.025564465671778,0.037946470081806]],[[0.043513100594282,0.040164243429899,0.016650592908263],[-0.022804399952292,-0.030024727806449,-0.036570828408003],[0.01040387712419,-0.039320793002844,-0.018661109730601]],[[0.060068104416132,0.1261116117239,-0.032984092831612],[-0.048177856951952,-0.026214361190796,0.078581169247627],[-0.027014153078198,-0.041679054498672,0.082384333014488]],[[-0.016061563044786,0.063765242695808,0.079933986067772],[-0.022690504789352,0.038886949419975,0.017279591411352],[0.016027996316552,0.016320398077369,0.069385387003422]],[[-0.008546925149858,-0.04392858967185,0.019235257059336],[-0.00012946830247529,0.024535201489925,0.0030036657117307],[-0.021221753209829,-0.085356794297695,-0.001344513730146]],[[-0.035274863243103,-0.0043895482085645,0.014653534628451],[-0.020026670768857,0.012096140533686,-0.019565245136619],[0.048180665820837,0.028219265863299,0.089197434484959]],[[-0.013519602827728,0.068633928894997,0.0090805366635323],[-0.0074465526267886,-0.0076720211654902,-0.00095802848227322],[-0.024391086772084,-0.032032575458288,0.028336588293314]],[[0.014258900657296,-0.061729911714792,-0.0025301354471594],[0.0047965166158974,0.001365605276078,-0.053427793085575],[0.030857607722282,-0.010187584906816,-0.033655568957329]],[[0.018658585846424,0.043065618723631,0.019088113680482],[-0.033156618475914,-0.046326570212841,0.01359935849905],[0.055990755558014,0.048469185829163,0.036410972476006]],[[0.049250148236752,0.012968167662621,-0.025511890649796],[-0.021005047485232,-0.0035133205819875,-0.0070173316635191],[0.03600799664855,0.090760305523872,-0.0096854753792286]],[[-0.025023845955729,0.013049750588834,-0.011500597000122],[0.0044116047210991,-0.025867365300655,0.042423941195011],[-0.0080000692978501,-0.013744557276368,0.051860280334949]],[[0.006179774645716,-0.004982671700418,-0.064959697425365],[0.011487020179629,-0.016683919355273,0.036015097051859],[-0.04435071349144,-0.042532734572887,0.020095657557249]],[[-0.0028445024508983,-0.049557570368052,-0.035395864397287],[-0.046705972403288,0.035072714090347,-0.072198465466499],[-0.018485568463802,0.0036527581978589,-0.048023052513599]],[[-0.030013857409358,0.084005005657673,0.039253443479538],[0.017519559711218,0.030581535771489,0.0097817732021213],[0.083640843629837,-0.062489658594131,0.028337325900793]],[[0.026052039116621,0.029253877699375,-0.022582229226828],[0.058914497494698,-0.036966938525438,0.016749626025558],[0.0095107927918434,0.0034378604032099,-0.034967593848705]],[[-0.035910595208406,-0.028609851375222,-0.01093231420964],[-0.031820762902498,-0.037500452250242,-0.030170472338796],[-0.0042408360168338,-0.017748123034835,-0.051877312362194]],[[0.045112226158381,-0.040591236203909,0.028922021389008],[0.042729627341032,0.032423447817564,0.038550104945898],[0.020221961662173,-0.053281966596842,0.049937181174755]],[[-0.013629920780659,-0.033159647136927,0.0042898994870484],[0.050440642982721,0.067927949130535,0.054331865161657],[-0.011179938912392,0.023819003254175,0.079723291099072]],[[0.010348578915,-0.010287594981492,0.017411617562175],[0.073676683008671,0.057339049875736,0.080076739192009],[0.030677538365126,-0.044831987470388,-0.05493637919426]],[[0.026898186653852,0.02839738316834,-0.05638875067234],[0.0054890871979296,-0.035012371838093,-0.062146909534931],[0.035111207515001,-0.02300563827157,-0.024768967181444]],[[-0.013409592211246,-0.011569598689675,0.052771985530853],[-0.078215926885605,-0.052611939609051,0.015617796219885],[-0.0037648784928024,-0.034222055226564,0.0065536750480533]],[[0.019646476954222,-0.048481810837984,0.0013503081863746],[0.017092185094953,-0.0061306795105338,-0.020709400996566],[0.030407376587391,0.04170161485672,0.021764799952507]],[[-0.021680977195501,-0.096591494977474,0.08299870043993],[0.024537615478039,0.032385196536779,-0.038276221603155],[-0.051447335630655,0.029421854764223,0.084098540246487]],[[0.009127396158874,0.034099858254194,-0.00051017774967477],[0.017034742981195,0.0076958076097071,-0.02579152956605],[-0.0012596292654052,0.06862723082304,-0.038606218993664]],[[0.055723812431097,-0.023304328322411,0.042803440243006],[-0.016116356477141,-0.02638760022819,0.036993820220232],[-0.048260495066643,0.060589365661144,-0.088274285197258]],[[-0.014609892852604,0.0090036559849977,0.058220494538546],[-0.022762469947338,0.05068214610219,-0.050587721168995],[0.060587506741285,0.043947350233793,-0.031166082248092]],[[-0.044731695204973,0.021505730226636,-0.022899258881807],[-0.038014099001884,-0.084414839744568,-0.047104522585869],[-0.063291631639004,0.033398170024157,-0.04832562059164]],[[0.021668672561646,-0.083171136677265,0.016531387344003],[0.020445490255952,-0.048612039536238,0.016214266419411],[0.051656503230333,-0.014277995564044,0.085937686264515]],[[-0.0077621443197131,0.016134597361088,0.030847981572151],[-0.085686914622784,-0.0051978644914925,0.010231290943921],[0.031467586755753,0.026886714622378,0.0019540227949619]],[[-0.030010581016541,0.01103884074837,-0.094203069806099],[-0.037296500056982,-0.077932238578796,-0.064870022237301],[-0.048576544970274,-0.078002639114857,-0.037008225917816]],[[-0.085057340562344,0.030233286321163,0.020174887031317],[-0.025543946772814,0.010426740162075,0.047239392995834],[-0.026668041944504,-0.00090779119636863,0.030338067561388]],[[0.04296425357461,0.029725605621934,-0.001149628427811],[-0.012375926598907,-0.032551277428865,0.083756558597088],[0.048403106629848,-0.046245079487562,0.022171009331942]],[[0.034532755613327,-0.090510189533234,-0.08460084348917],[0.011584846302867,0.019487276673317,-0.04678799957037],[-0.033542852848768,-0.032918006181717,-0.046719048172235]],[[-0.043481778353453,-0.031166970729828,0.056018307805061],[0.045263677835464,-0.06696604937315,0.11083345860243],[-0.060060322284698,0.023569077253342,0.05132557824254]],[[-0.051632039248943,0.038821276277304,0.025518203154206],[0.023583829402924,-0.048363473266363,-0.019231356680393],[0.00063062767731026,-0.038876131176949,0.048865761607885]],[[0.037533991038799,0.011453321203589,-0.024031165987253],[0.032733745872974,-0.020588623359799,0.023784337565303],[-0.0091427685692906,-0.042005188763142,-0.017697911709547]],[[-0.0065678060054779,-0.032130137085915,-0.044035173952579],[0.010783107019961,-0.0372747592628,-0.025550708174706],[-0.012227437458932,0.063681311905384,0.069725640118122]],[[-0.030478468164802,-0.03050808608532,-0.07900807261467],[-0.0074414922855794,0.075561746954918,0.067394807934761],[-0.029469979926944,-0.035441607236862,0.031315516680479]],[[0.051997903734446,-0.01383279915899,0.026746204122901],[-0.034378111362457,-0.020557042211294,-0.0088556669652462],[0.06703183054924,0.013284127227962,0.094409942626953]],[[-0.002311134012416,0.023523794487119,-0.010866489261389],[-0.020110612735152,-0.011639479547739,-0.027752235531807],[-0.020431494340301,0.029807051643729,0.0028327777981758]],[[0.077203638851643,-0.054237619042397,0.053850248456001],[0.015901610255241,0.019446033984423,0.03089214861393],[-0.016055116429925,0.007533744443208,0.012839888222516]],[[-0.0036384502891451,-0.013220397755504,-0.014169345609844],[-0.012930542230606,-0.055863104760647,-0.0091363666579127],[-0.019286355003715,-0.082305707037449,-0.044244032353163]],[[-0.0085777239874005,0.013247544877231,-0.056996028870344],[0.020029988139868,-0.0036607887595892,0.037225563079119],[0.0068826512433589,0.038036711513996,-0.0032745483331382]],[[-0.03549886494875,-0.036844234913588,0.058704756200314],[-0.12146209925413,0.047108847647905,0.0073156105354428],[0.061105757951736,-0.048119019716978,-0.017666012048721]],[[0.087835304439068,-0.055342711508274,-0.054956916719675],[0.0015148884849623,-0.014179157093167,-0.0086208619177341],[0.014488575980067,-0.035834416747093,-0.036021444946527]],[[0.05762942135334,0.072349935770035,0.044204171746969],[0.023827062919736,-0.10499506443739,-0.011827540583909],[-0.044971510767937,-0.01674029417336,0.030156357213855]],[[0.054580669850111,-0.0039937463589013,0.022605622187257],[-0.024096567183733,-0.0022075455635786,-0.011544045060873],[0.01409359369427,-0.0083973444998264,0.073268376290798]],[[-0.01910544000566,-0.012496157549322,-0.040498837828636],[-0.006313344463706,0.011332844384015,0.0086181312799454],[-0.014044341631234,-0.063903301954269,0.045283254235983]],[[-0.0022094920277596,-0.059408608824015,-0.0047724107280374],[-0.017494728788733,-0.032921943813562,-0.043343998491764],[-0.045972596853971,-0.035836450755596,0.036252669990063]]],[[[-0.11031186580658,0.033690184354782,-0.13034461438656],[-0.0023582335561514,-0.039405860006809,0.016061134636402],[-0.0040251323953271,0.057712767273188,0.018332799896598]],[[0.029959278181195,-0.024715770035982,0.015256891027093],[0.052798941731453,-0.0011882712133229,-0.0042105787433684],[0.015260062180459,-0.030779970809817,-0.00247295293957]],[[-0.025039022788405,-0.019882278516889,0.020964674651623],[-0.034561950713396,-0.038065180182457,0.022593641653657],[0.016068525612354,0.020374735817313,-0.031579736620188]],[[0.0020849795546383,0.0053734602406621,-0.025965550914407],[0.030880460515618,-0.028489515185356,0.077285043895245],[0.0081435451284051,-0.0097177196294069,0.067911252379417]],[[-0.091457426548004,0.030936622992158,0.0033691837452352],[0.031469374895096,0.0076702795922756,-0.026495188474655],[-0.1106446608901,-0.074920244514942,0.069383271038532]],[[0.075755938887596,-0.015288696624339,0.011242193169892],[-0.032566864043474,0.020181877538562,-0.024721221998334],[0.038918804377317,0.016135139390826,-0.023266984149814]],[[-0.035024147480726,-0.0027740190271288,-0.048118893057108],[-0.016548972576857,0.019281692802906,0.00079272146103904],[0.030787592753768,-0.036391038447618,-0.0092628709971905]],[[0.03072515130043,-0.0017624162137508,-0.01348352432251],[0.03530665487051,0.0031432134564966,0.06549084931612],[-0.004554342944175,0.025054901838303,-0.010660116560757]],[[-0.021202214062214,-0.017874825745821,0.027320915833116],[-0.024989247322083,0.036142785102129,-0.01676918938756],[-0.049155298620462,-0.055772420018911,0.0035350846592337]],[[0.045350324362516,0.11413627117872,0.088904239237309],[0.056387230753899,0.029489206150174,0.042554289102554],[-0.056738797575235,-0.076211914420128,-0.058512400835752]],[[0.041950117796659,0.0097265113145113,0.055408850312233],[-0.042501900345087,-0.021207498386502,0.13015052676201],[0.024681529030204,0.049334265291691,0.072476990520954]],[[0.034254271537066,0.072240799665451,-0.018279682844877],[-0.038189005106688,-0.053783733397722,-0.010419907048345],[0.062693446874619,0.075816415250301,0.058439578860998]],[[-0.12804999947548,-0.013398232869804,-0.010272743180394],[0.024369861930609,0.015075541101396,0.0022509032860398],[0.011410553939641,0.014237692579627,-0.053474739193916]],[[0.024266602471471,0.0046023847535253,-0.018905878067017],[-0.02199799567461,0.017078841105103,0.063339151442051],[0.047926407307386,0.065321482717991,-0.0029941361863166]],[[-0.062868200242519,0.0027647581882775,0.011277726851404],[-0.012505480088294,-0.0049927611835301,-0.032550435513258],[0.060761786997318,-0.01012744102627,0.024525543674827]],[[-0.05518165230751,-0.025897771120071,0.061576552689075],[0.029669409617782,0.028334544971585,-0.063197232782841],[-0.038955837488174,-0.0084339119493961,0.021689666435122]],[[0.02321607246995,0.049672201275826,-0.032692227512598],[0.016028558835387,-0.057393558323383,0.050585459917784],[0.032218784093857,0.066922046244144,0.053404301404953]],[[-0.073842599987984,-0.044475506991148,-0.01520327385515],[-0.027271108701825,0.0027337167412043,-0.031874734908342],[0.010240161791444,-0.013223849236965,-0.026964873075485]],[[-0.037403233349323,0.060689184814692,-0.0197783857584],[0.011159460991621,0.0035418949555606,-0.050156023353338],[0.006914580706507,0.0031134521123022,-0.064962603151798]],[[0.072449438273907,0.0086522167548537,0.029009748250246],[0.10796888172626,0.021951470524073,-0.051017835736275],[-0.005472045391798,0.0058705736882985,0.033238895237446]],[[-0.032175373286009,0.0073865787126124,0.048638943582773],[-0.0053509273566306,-0.015327388420701,-0.035039182752371],[-0.039956491440535,0.01271315664053,-0.034817073494196]],[[0.041365783661604,0.030041363090277,0.031162671744823],[0.040831550955772,-0.059292402118444,0.039295919239521],[-0.016552375629544,0.073886401951313,0.045349717140198]],[[0.050419308245182,-0.10038889199495,-0.029247336089611],[-0.029815640300512,-0.04201976954937,-0.066480927169323],[0.010162900201976,-0.0077566187828779,0.034198462963104]],[[0.021720211952925,0.049187038093805,-0.044857036322355],[-0.020888993516564,-0.024366587400436,-0.036045618355274],[-0.017261996865273,-0.013669364154339,0.096790120005608]],[[-0.010763168334961,0.044333036988974,-0.08307945728302],[-0.045284532010555,0.0045527163892984,0.11652249842882],[-0.045024000108242,-0.042632337659597,-0.021942427381873]],[[-0.043902765959501,-0.051959544420242,0.030587011948228],[0.01638176292181,-0.030142370611429,-0.0083578377962112],[-0.065467983484268,-0.026183865964413,0.00014142411237117]],[[0.022731134667993,0.0055518657900393,0.025403490290046],[-0.078392542898655,0.017126925289631,0.015155917964876],[0.0015181828057393,0.0085421064868569,0.012743259780109]],[[-0.022446900606155,0.062134988605976,-0.030319487676024],[0.11020497232676,0.015744470059872,0.01583711989224],[-0.0057964371517301,0.046307113021612,-0.082368329167366]],[[-0.02183261141181,0.068752534687519,-0.049272771924734],[-0.021035052835941,0.022195257246494,-0.031742669641972],[0.11288591474295,0.024180063977838,-0.03722108155489]],[[-0.0082668252289295,0.10601983219385,-0.040660981088877],[0.11242832243443,-0.023335626348853,-0.0070860297419131],[-0.08000036329031,-0.012781633064151,-0.0085281301289797]],[[0.039284959435463,0.0046378206461668,-0.022891376167536],[0.03735875338316,0.075685001909733,0.065086781978607],[-0.003949211910367,0.06500931084156,-0.020583551377058]],[[0.044470053166151,-0.025754235684872,0.010167797096074],[-0.012052036821842,0.068544872105122,-0.095866799354553],[0.064128078520298,0.0035783504135907,0.053203303366899]],[[0.02313119545579,0.031081585213542,0.0049602724611759],[0.019488792866468,-0.014761790633202,0.010753929615021],[-0.077273793518543,0.025545777752995,-0.045325756072998]],[[0.015562803484499,-0.034513205289841,0.089276693761349],[0.011118118651211,0.0077911927364767,-0.013263653963804],[-0.0016209988389164,0.01299412548542,-0.014182032085955]],[[0.083017192780972,0.056795734912157,-0.021983336657286],[-0.022062918171287,-0.0074346549808979,-0.036814242601395],[0.032334499061108,-0.036920133978128,-0.044475194066763]],[[-0.054964259266853,0.03408220410347,0.012390608899295],[0.032351739704609,0.044101431965828,0.0047116577625275],[0.027073681354523,0.0030446769669652,0.014244811609387]],[[-0.033478327095509,0.028185935690999,-0.035349644720554],[-0.062612153589725,0.084855571389198,0.065284490585327],[-0.0078691672533751,-0.042999040335417,0.0077076777815819]],[[-0.015767822042108,-0.046965535730124,-0.023048019036651],[-0.029586549848318,-0.070892736315727,0.1123913154006],[-0.023553021252155,0.01947707682848,-0.010676429606974]],[[-0.0011209122603759,-0.0086555425077677,0.10607049614191],[0.036623049527407,0.022954354062676,0.011619941331446],[0.054317612200975,-0.01198192872107,0.024017989635468]],[[-0.069237910211086,0.11681707948446,0.0064281094819307],[0.010489413514733,0.040755171328783,0.052145998924971],[-0.020067352801561,0.018466413021088,0.029956474900246]],[[0.013820424675941,0.015592339448631,-0.064060233533382],[0.0034963549114764,0.00046377358376049,0.02701966650784],[0.054498381912708,-0.024857934564352,0.02824467420578]],[[-0.01683085039258,-0.04388714581728,0.030164612457156],[0.0021872485522181,0.029044425114989,-0.011483741924167],[0.016024924814701,0.010299972258508,-0.020065708085895]],[[-0.07176299393177,-0.060419321060181,0.048717185854912],[-0.071430765092373,0.056866601109505,-0.038557417690754],[0.012783881276846,-0.0045708594843745,0.032078754156828]],[[0.064970664680004,-0.041308276355267,-0.0048871394246817],[0.010578019544482,0.0077507183887064,0.051266621798277],[0.036412365734577,-0.0057534091174603,0.024475200101733]],[[-0.016241043806076,0.031143601983786,-0.069270633161068],[0.030047599226236,0.058560401201248,-0.023989520967007],[-0.033382683992386,0.061355534940958,0.094507686793804]],[[-0.013854380697012,0.035899065434933,-0.088872008025646],[0.024042375385761,0.002548398450017,0.013217257335782],[0.035988815128803,-0.021422503516078,-0.050849452614784]],[[-0.053514324128628,-0.012497096322477,-0.030110506340861],[0.0084191653877497,-0.086458712816238,0.086480468511581],[0.0016295835375786,0.019225139170885,0.067368812859058]],[[-0.003570357337594,0.012642565183342,-0.030241159722209],[0.063157089054585,-0.0020460800733417,0.017259350046515],[0.024689208716154,-0.060450613498688,-0.082849264144897]],[[-0.12679603695869,0.0098113464191556,-0.046445902436972],[0.012400756590068,0.0041376547887921,0.021113052964211],[-0.0056683202274144,-0.0003814421070274,0.013241165317595]],[[0.036317341029644,-0.0028415941633284,0.075078018009663],[-0.070735573768616,-0.060524459928274,0.015020529739559],[-0.076958186924458,-0.058942172676325,0.011441524140537]],[[-0.010265627875924,-0.056004039943218,0.048780437558889],[-0.08142826706171,0.014870636165142,0.014494683593512],[0.02063224837184,-0.0032081946264952,-0.07036679983139]],[[0.023682488128543,-0.03938365727663,0.016676859930158],[-0.028904341161251,-0.030581742525101,-0.017744993790984],[-0.021541479974985,-0.035380657762289,-0.023586453869939]],[[0.079012826085091,0.01925758831203,0.072330646216869],[-0.039533913135529,0.053174752742052,0.066126056015491],[-0.033551711589098,0.035781506448984,-0.061426047235727]],[[-0.016215540468693,0.1134519726038,-0.0035623561125249],[-0.018412435427308,0.11261183768511,0.014148427173495],[0.01079024374485,0.015088596381247,-0.032864615321159]],[[-0.025149371474981,-0.060377437621355,0.041953511536121],[0.022759228944778,-0.045295313000679,0.05460737273097],[0.021152522414923,0.0077102612704039,-0.016792751848698]],[[0.015921758487821,-0.0069703930057585,0.01926869340241],[0.018188122659922,-0.0065477648749948,-0.059544336050749],[0.039642576128244,-0.005545487627387,0.013931921683252]],[[-0.076166607439518,-0.0021637375466526,-0.019493587315083],[-0.048559565097094,-0.0027923136949539,0.051155637949705],[0.02711658552289,-0.089076444506645,0.028900381177664]],[[-0.032864034175873,0.049048911780119,-0.025527153164148],[-0.041732855141163,0.019727932289243,0.0039748605340719],[-0.063997708261013,0.022242879495025,0.0095182582736015]],[[-0.038341872394085,-0.01597979478538,-0.023421492427588],[-0.050484251230955,-0.043493565171957,-0.054077550768852],[0.026403054594994,-0.041458263993263,0.060706902295351]],[[0.013732966966927,0.048470191657543,0.04019558429718],[-0.040004629641771,0.064495906233788,0.065520279109478],[-0.057236906141043,0.0089255599305034,-0.080629169940948]],[[0.00085845653666183,0.097455203533173,-0.07075434923172],[0.017493311315775,0.043433587998152,-0.016962004825473],[-0.043079219758511,0.0011424609692767,-0.0097886389121413]],[[-0.035311486572027,-0.050484247505665,0.040138345211744],[0.02907394990325,-0.026592005044222,0.049368035048246],[-0.0088311731815338,-0.028969937935472,-0.059185683727264]],[[0.06794597953558,-0.0099987806752324,0.038852490484715],[0.074081644415855,-0.014531038701534,-0.029228618368506],[0.01570394448936,-0.043603230267763,0.011808600276709]],[[0.072019495069981,-0.028243405744433,-0.031565222889185],[0.022098865360022,-0.033170118927956,-0.0010695251403376],[0.0038931809831411,0.013192464597523,0.046831279993057]],[[0.019601717591286,-0.045325331389904,0.023512015119195],[-0.051492262631655,-0.11698744446039,-0.095731303095818],[-0.0085873380303383,0.076232552528381,-0.028958672657609]],[[0.064717561006546,0.033684752881527,0.044002834707499],[0.023561976850033,0.012792229652405,0.048651177436113],[0.0073413252830505,-0.077404715120792,0.060934126377106]],[[-0.0267488732934,0.044758919626474,0.04479518160224],[-0.0068891956470907,-0.06551044434309,-0.013848768547177],[0.0042192717082798,-0.13833203911781,-0.063409931957722]],[[-0.0079893590882421,0.043991968035698,-0.020574994385242],[0.051497906446457,0.092066526412964,0.003885910147801],[-0.0057272328995168,-0.058842692524195,-0.039750371128321]],[[0.043757047504187,-0.053103469312191,-0.0051843235269189],[0.055398046970367,-0.072644867002964,-0.097384847700596],[-0.018593298271298,-0.065645948052406,-0.011892959475517]],[[-0.065181903541088,0.0041027264669538,0.023322012275457],[-0.029842799529433,0.016890441998839,-0.02825278416276],[-0.0065892096608877,-0.023192660883069,0.013032414019108]],[[-0.083795599639416,0.026790672913194,-0.0062419851310551],[0.0061019873246551,0.042010903358459,0.017930125817657],[-0.014263826422393,-0.001917117042467,-0.034016568213701]],[[0.013186182826757,-0.11882066726685,0.05004284158349],[0.0045270398259163,0.080939911305904,-0.080806642770767],[-0.096099548041821,-0.061029825359583,-0.010802756994963]],[[-0.031877875328064,-0.044435035437346,0.041796762496233],[0.025052964687347,-0.10217520594597,0.026189399883151],[0.071993373334408,-0.042773995548487,-0.035294387489557]],[[-0.031359136104584,-0.014890031889081,-0.022013865411282],[-0.024284457787871,-0.024665914475918,0.033026024699211],[-0.042811766266823,0.013189568184316,-0.026539795100689]],[[0.032645482569933,0.058136124163866,0.072019651532173],[0.0035011321306229,-0.0099745532497764,-0.055108342319727],[-0.091005817055702,0.049082614481449,-0.008836523629725]],[[0.02062495239079,0.11628855764866,0.060396645218134],[0.085258640348911,0.013541109859943,-0.065056413412094],[0.00048840692033991,-0.0017182250740007,0.018995789811015]],[[-0.020125981420279,-0.080361157655716,-0.064969375729561],[0.0052033304236829,0.055662646889687,0.048533052206039],[0.05637588351965,0.089607574045658,-0.004210349638015]],[[-0.0069646253250539,0.0023194986861199,-0.067693911492825],[-0.084576651453972,-0.040259975939989,-0.10993906855583],[0.043446786701679,-0.031717751175165,-0.024864172562957]],[[-0.0016984314424917,-0.031473077833652,-0.039400298148394],[0.09865266084671,-0.00094229227397591,0.073583610355854],[-0.015467303805053,-0.042246226221323,-0.036711137741804]],[[0.017002446576953,0.039653919637203,-0.010775624774396],[-0.011448536999524,0.05885611847043,0.0095089999958873],[-0.027022508904338,0.071834616363049,0.011209242045879]],[[-0.02139194868505,0.013556893914938,-0.047423172742128],[-0.0030012335628271,0.041670404374599,-0.0059246215969324],[0.025471659377217,0.05807588621974,0.038908004760742]],[[0.0056088175624609,0.053781289607286,0.085277281701565],[0.029921086505055,-0.024763913825154,-0.061280764639378],[-0.07444030046463,0.052935600280762,-0.032852232456207]],[[0.0032569384202361,0.025921978056431,-0.011483062058687],[-0.046708583831787,-0.00044624076690525,-0.059854745864868],[0.10949775576591,0.025035485625267,0.038942098617554]],[[0.019395973533392,-0.01214561611414,-0.04751131311059],[0.067591451108456,0.066404923796654,-0.033309496939182],[0.017184695228934,0.0025794683024287,0.03781146928668]],[[0.0017453996697441,0.014013377949595,0.028355207294226],[0.011398596689105,-0.022404313087463,-0.036201503127813],[0.034038215875626,0.044094044715166,0.019816625863314]],[[0.007576335221529,0.015429018065333,0.017574448138475],[-0.014310864731669,-0.070233955979347,-0.065517798066139],[0.069399334490299,0.001560575212352,0.049068715423346]],[[-0.028049876913428,0.017558025196195,-0.027197852730751],[0.0097210230305791,0.046731043606997,-0.054104372859001],[0.033920627087355,-0.0095626525580883,0.032428879290819]],[[0.010471993125975,-0.084910973906517,-0.054234612733126],[-0.012563642114401,0.0032685603946447,-0.015301584266126],[0.053806513547897,0.017201729118824,-0.051767658442259]],[[-0.0029133623465896,-0.057870209217072,0.010220110416412],[-0.079475194215775,0.044952668249607,-0.076065316796303],[-0.018859120085835,0.020282903686166,0.045890141278505]],[[0.0083267986774445,-0.067631386220455,-0.014464507810771],[-0.030038956552744,-0.0016890286933631,-0.0042595895938575],[0.074306912720203,-0.016048502177,-0.076073780655861]],[[-0.013458812609315,-0.024231774732471,0.0026332861743867],[-0.017733683809638,0.026575388386846,0.013351767323911],[-0.061892777681351,0.020675782114267,-0.063212253153324]],[[-0.049618225544691,0.013017138466239,-0.022592784836888],[-0.060951944440603,0.043021738529205,0.043261654675007],[-0.011894788593054,0.00088409218005836,0.0046932776458561]],[[0.049258451908827,-0.010702787898481,-0.024615049362183],[0.049982242286205,0.053999144583941,-0.045233175158501],[0.041540786623955,-0.00049102923367172,0.011790089309216]],[[0.0098176142200828,0.037253119051456,0.032671198248863],[0.047693371772766,-0.038256857544184,-0.053150359541178],[-0.070827007293701,0.042281061410904,-0.060199424624443]],[[-0.027990981936455,-0.03335052728653,-0.016661178320646],[0.059182953089476,-0.0018392559140921,0.018801709637046],[-0.073673352599144,-0.038603249937296,0.019447343423963]],[[-0.022020503878593,-0.0058720693923533,0.061222761869431],[0.010404954664409,0.012603827752173,0.062411546707153],[0.0098292576149106,-0.11503390222788,-0.0083969933912158]],[[-0.052233185619116,-0.024662677198648,0.0050370492972434],[0.052070748060942,0.040028758347034,-0.12627889215946],[0.024995807558298,0.04115791991353,0.034038748592138]],[[0.039430737495422,-0.073748327791691,-0.066346153616905],[0.016614159569144,-0.036293815821409,-0.07102558016777],[0.00055532826809213,0.019553013145924,0.011445282027125]],[[-0.019498379901052,0.06025019288063,0.0067443703301251],[0.074649803340435,-0.0080469641834497,-0.016040349379182],[0.01323798019439,-0.085398800671101,0.0019385654013604]],[[0.04871928319335,0.058062262833118,0.043550752103329],[0.00030059766140766,0.086043395102024,-0.02885671518743],[-0.03079916909337,-0.033054828643799,0.019923981279135]],[[0.036352325230837,-0.065527461469173,-0.045795775949955],[0.0007546188426204,0.047054316848516,0.11377435922623],[0.082277372479439,-0.043922025710344,0.065677501261234]],[[0.027514509856701,0.046328112483025,0.035528235137463],[0.02043497748673,0.023029970005155,0.061195030808449],[0.029874132946134,-0.048369482159615,0.0056932806037366]],[[0.016596985980868,-0.026557572185993,-0.079370237886906],[-0.016621805727482,-0.0092720380052924,0.005127124954015],[0.03616963326931,0.013895947486162,-0.025810269638896]],[[-0.022632736712694,-0.02144612185657,-0.048842441290617],[-0.02753527648747,0.024224933236837,0.076675340533257],[-0.043931677937508,-0.072012379765511,-6.8459608883131e-05]],[[-0.014899560250342,-0.050079200416803,-0.011690793558955],[-0.029814256355166,0.044093661010265,0.0086974734440446],[0.059522736817598,-0.0015225284732878,-0.017452269792557]],[[-0.0092341080307961,-0.061088774353266,-0.04240657389164],[0.042337968945503,0.023656720295548,0.026966998353601],[-0.017418893054128,-0.0047962181270123,-0.00033193247509189]],[[0.046620208770037,-0.010573735460639,0.0063782958313823],[0.08643513917923,-0.0017780110938475,0.036635585129261],[0.053605671972036,-0.077585004270077,-0.013495814055204]],[[0.024701869115233,0.057530853897333,-0.047148060053587],[0.068166926503181,0.057899050414562,-0.04863390699029],[-0.055824726819992,-0.034829929471016,-0.02257820405066]],[[-0.030101509764791,0.043291114270687,-0.086836718022823],[0.085861675441265,-0.025454916059971,0.11525808274746],[0.011369136162102,-0.025143943727016,-0.053461521863937]],[[-0.10371938347816,0.0052548074163496,-0.016035849228501],[-0.10216907411814,0.041912250220776,0.03469255939126],[0.049117092043161,-0.022380055859685,-0.012904369272292]],[[0.054018996655941,0.013022305443883,0.06374453753233],[0.057246148586273,-0.0010664319852367,0.018271919339895],[-0.049081463366747,0.023681655526161,0.022066727280617]],[[0.054371744394302,-0.020063607022166,-0.11294470727444],[-0.00095885957125574,0.020293476060033,-0.026142705231905],[0.070645608007908,-0.005050677806139,0.017548216506839]],[[-0.014378288760781,0.052246678620577,-0.022707890719175],[0.019627790898085,-0.028276829048991,-0.038162387907505],[-0.035732243210077,0.015679756179452,0.037393052130938]],[[0.011376801878214,-0.020048059523106,-0.013377049006522],[-0.072351366281509,-0.021995078772306,-0.051934346556664],[-0.026359140872955,0.027760684490204,-0.0097457356750965]],[[-0.016519885510206,-0.049773056060076,-0.0090253446251154],[0.0039865276776254,-0.012462084181607,-0.0054241288453341],[-0.067666612565517,-0.016957059502602,0.047374732792377]],[[0.031964205205441,0.0043875370174646,-0.054132614284754],[-0.032805792987347,-0.05706574395299,-0.047590836882591],[-0.058289028704166,-0.066715218126774,-0.051986306905746]],[[0.027627686038613,-0.072939425706863,-0.022035915404558],[0.018280375748873,0.018491636961699,-0.0031753592193127],[0.024227852001786,0.055076695978642,0.0053705242462456]],[[-0.038704544305801,0.082907557487488,0.025324609130621],[-0.093492522835732,-0.0060494816862047,0.0085694119334221],[0.0091199586167932,-0.02439590357244,-0.030940640717745]],[[-0.017984695732594,-0.010374220088124,0.067751280963421],[0.065730281174183,-0.016335537657142,-0.067144751548767],[0.020615248009562,-0.020478561520576,0.020935455337167]],[[-0.07268100976944,0.0090097403153777,0.07651874423027],[0.033297672867775,-0.031830739229918,-0.019706185907125],[-0.018456120043993,-0.0033455437514931,-0.0076951421797276]],[[-0.0028735313098878,-0.050347533077002,-0.059178106486797],[-0.064104348421097,0.051551125943661,0.013253043405712],[0.038179844617844,-0.092444084584713,-0.02080368436873]],[[0.0054101943969727,-0.020273026078939,0.070671029388905],[-0.072536140680313,0.0093816164880991,-0.10116747021675],[0.013176780194044,0.040276985615492,0.029215514659882]],[[0.011428060010076,0.037011254578829,-0.028816482052207],[0.041109099984169,-0.0050111985765398,-0.0245750695467],[-0.014354908838868,-0.015559585765004,-0.013273517601192]],[[0.018398018553853,-0.029436489567161,-0.064632222056389],[-0.028953317552805,-0.065120115876198,0.0077204876579344],[-0.020524229854345,-0.026277463883162,-0.017732918262482]],[[-0.073405854403973,0.026399549096823,0.043272353708744],[-0.015831012278795,0.025886287912726,0.025453323498368],[-0.044185917824507,-0.029745867475867,0.093882769346237]],[[-0.017059890553355,-0.080795310437679,-0.030359696596861],[0.0016069033881649,-0.00089667073916644,0.032474670559168],[0.0049506085924804,0.026092061772943,-0.024240979924798]],[[0.015854442492127,0.011609323322773,0.085199616849422],[-0.030887158587575,-0.070342257618904,0.061222326010466],[0.031125573441386,-0.016092255711555,0.070396572351456]],[[-0.0077559817582369,0.017793349921703,0.028298800811172],[-0.01027131266892,0.059087537229061,-0.031952992081642],[-0.0072487043216825,-0.049358807504177,-0.048769883811474]]],[[[0.02987072058022,0.010345553979278,-0.0664247199893],[0.0096600260585546,0.0095965061336756,0.005597485229373],[-0.057780750095844,-0.014722724445164,-0.035903047770262]],[[-0.10669206827879,-0.0093493685126305,0.065818831324577],[0.028952397406101,-0.025210371240973,-0.015089767053723],[-0.0036938854027539,-0.01435140799731,-0.062401153147221]],[[-0.013434169813991,-0.040901754051447,-0.019510447978973],[0.013190476223826,0.038285698741674,0.02810226380825],[0.0135498335585,0.02422764711082,0.043498825281858]],[[-0.044699631631374,0.044463545084,0.015224430710077],[0.009484033100307,0.060622423887253,0.051641743630171],[0.018116481602192,0.038384668529034,0.10459729284048]],[[-0.085397839546204,0.049567025154829,-0.081190645694733],[-0.018761280924082,0.056237112730742,-0.046185858547688],[-0.017652694135904,0.061634976416826,-0.016629606485367]],[[-0.055479202419519,-0.053189408034086,0.056254092603922],[0.012218618765473,-0.0012480572331697,-0.042681954801083],[0.066116496920586,0.07971429079771,0.012564278207719]],[[-0.045401431620121,-0.040842033922672,0.016480453312397],[0.013717040419579,0.029405750334263,-0.1097539588809],[2.4726858100621e-05,0.071345522999763,0.02736097201705]],[[0.010001931339502,0.013581947423518,0.0026739514432847],[0.0069519551470876,0.025675809010863,0.073609866201878],[-0.035750523209572,-0.018286075443029,0.093596257269382]],[[-0.066367127001286,-0.014411523006856,0.042052939534187],[0.0016369812656194,-0.0054219621233642,0.035545647144318],[-0.0025621016975492,-0.014826496131718,-0.043753582984209]],[[-0.1279304176569,0.0081736380234361,0.035684276372194],[0.058496925979853,-0.060533475130796,-0.012478981167078],[0.17766110599041,-0.018179947510362,0.019406918436289]],[[0.062100060284138,0.048328246921301,0.048768762499094],[0.012241952121258,0.0051865507848561,-0.015019259415567],[0.026874091476202,-0.045901976525784,-0.032138030976057]],[[-0.020336588844657,0.0074650752358139,0.00051257200539112],[0.035201389342546,0.051358282566071,0.039590559899807],[-0.023019231855869,-0.00068235263461247,-0.027625069022179]],[[0.025642165914178,0.059647392481565,-0.020776750519872],[-0.06408778578043,0.026430927217007,0.0074163028039038],[0.045707281678915,0.077788822352886,-0.086251758038998]],[[0.023249821737409,0.0099854860454798,-0.036546159535646],[0.034408796578646,0.042942982167006,0.046482618898153],[0.056004006415606,0.074606634676456,0.040652170777321]],[[0.097118519246578,0.12189563363791,0.0086681423708797],[-0.0527976565063,0.061272848397493,0.080393366515636],[-0.0092848194763064,0.054054122418165,0.082638144493103]],[[0.0022538923658431,0.016980785876513,-0.024754645302892],[0.046462293714285,0.055804401636124,0.012947289273143],[0.0068290219642222,-0.053042586892843,0.061330534517765]],[[-0.076815269887447,-0.011206368915737,0.0086159417405725],[0.084508217871189,0.024549320340157,0.032101359218359],[0.091231845319271,-0.064968258142471,0.053457245230675]],[[0.0013440070906654,-0.032258275896311,0.0041455263271928],[-0.012581213377416,-0.0021480172872543,-0.036060813814402],[-0.015023128129542,-0.035495653748512,-0.003207485191524]],[[0.028429314494133,-0.0072132595814764,0.0082587273791432],[0.036059956997633,-0.017270904034376,0.0051919789984822],[-0.011212943121791,0.021309657022357,0.016222486272454]],[[0.10826174169779,0.002224215073511,-0.00943498685956],[0.062436681240797,0.038020182400942,-0.057988177984953],[0.017331285402179,-0.022483583539724,-0.039179909974337]],[[0.041214544326067,-0.06636530905962,0.0065864641219378],[0.053970571607351,0.01023493334651,-0.053983818739653],[-0.02762484177947,0.033525224775076,-0.016108393669128]],[[-0.017634011805058,-0.016785446554422,-0.018717465922236],[-0.0061019686982036,0.035639118403196,0.058407254517078],[-0.010935532860458,-0.011707519181073,0.0033146208152175]],[[0.0048646531067789,0.034453526139259,-0.082381807267666],[-0.081614978611469,-0.037717070430517,0.010750822722912],[0.027706872671843,-0.089455462992191,0.03213319554925]],[[-0.042896542698145,0.025657054036856,-0.0013927571708336],[0.0030086608603597,0.028233777731657,0.0030909553170204],[0.016504591330886,-0.091034427285194,-0.024033639580011]],[[0.04620723053813,-0.04325495660305,0.00071287754690275],[0.031312756240368,0.025500919669867,-0.040340337902308],[-0.10020519047976,-0.013287452049553,0.006663148291409]],[[-0.033796608448029,0.01099931076169,0.052728969603777],[0.0044399886392057,-0.015785047784448,0.03286375105381],[-0.068472295999527,-0.025533912703395,-0.025220297276974]],[[0.042833503335714,0.011008081957698,0.028273710981011],[-0.026401599869132,-0.01060164347291,0.025106437504292],[-0.043387018144131,-0.022037867456675,-0.059170741587877]],[[0.085045777261257,0.039128694683313,0.038891565054655],[-0.045299604535103,0.024294065311551,0.039013247936964],[0.0068554235622287,0.048692841082811,0.01307868398726]],[[0.020592506974936,0.023188741877675,0.0062553863972425],[0.0050071449950337,0.011704667471349,-0.014322706498206],[0.048805739730597,-0.031608190387487,0.040056377649307]],[[0.068144373595715,-0.0050875791348517,-0.038930147886276],[0.0076883407309651,-0.022991746664047,0.0042654420249164],[-0.016353830695152,-0.012107859365642,0.034484140574932]],[[0.037999890744686,0.029660627245903,0.013478972017765],[0.013955122791231,0.0082373907789588,0.04379716143012],[0.0045598293654621,0.083676666021347,-0.076195903122425]],[[-0.011607406660914,0.052235711365938,0.0052296328358352],[0.073062017560005,0.02514374256134,-0.045303031802177],[-0.068661496043205,-0.010755762457848,0.054429702460766]],[[-0.085397951304913,0.010634794831276,-0.1081981882453],[-0.050854213535786,0.0096958912909031,-0.046386819332838],[-0.052445963025093,0.0033974514808506,0.095417708158493]],[[0.051331654191017,0.055953152477741,-0.050764124840498],[0.046785272657871,0.019445957615972,0.042690649628639],[0.038635063916445,0.059305526316166,-0.060306049883366]],[[-0.02773966267705,-0.030236499384046,-0.02385500445962],[-0.020172411575913,0.06887674331665,0.042202066630125],[0.030469881370664,0.0448326356709,-0.019593922421336]],[[-0.069482900202274,0.043475084006786,-0.011626192368567],[0.017514277249575,-0.033957302570343,0.012655978091061],[0.027255769819021,0.013500385917723,0.046778149902821]],[[-0.0013711345382035,0.010968101210892,0.023877019062638],[-0.0047601447440684,0.020508050918579,-0.010913045145571],[-0.074070803821087,0.064153656363487,-0.016824224963784]],[[0.051038656383753,0.059356037527323,-0.059533018618822],[0.014855760149658,0.023480951786041,-0.038778983056545],[-0.036100696772337,-0.0060322969220579,-0.091967687010765]],[[0.011690588667989,0.079624213278294,0.04237487539649],[-0.020393427461386,0.0088467607274652,0.0097232554107904],[-0.093480058014393,0.04904130846262,0.016959497705102]],[[-0.024660848081112,-0.046212617307901,0.012846389785409],[0.051695078611374,-0.015707587823272,0.017027836292982],[0.034934390336275,0.020179489627481,0.0011311516864225]],[[0.0097715770825744,-0.016537418588996,-0.013747040182352],[0.029727891087532,-0.0067288549616933,-0.010631861165166],[-0.026393905282021,0.0053160665556788,0.048628948628902]],[[-0.019764261320233,-0.048612803220749,-0.0070630959235132],[0.04129472002387,-0.056772362440825,6.9831694418099e-05],[0.022471260279417,-0.055870991200209,0.076233685016632]],[[0.094089351594448,0.031095495447516,0.062548987567425],[-0.057234119623899,0.048493932932615,0.03684589266777],[0.058815464377403,-0.014481849968433,0.0080000963062048]],[[-0.054636631160975,-0.016237767413259,0.089991338551044],[-0.02193264849484,-0.0089437058195472,0.014610539190471],[-0.069806501269341,-0.02070870064199,0.067992657423019]],[[-0.021446641534567,-0.006728520616889,0.03568397462368],[0.055420439690351,-0.03363399207592,0.037910297513008],[0.003859095973894,0.010621489025652,0.076873771846294]],[[0.09517752379179,-0.038140211254358,-0.030621457844973],[-0.02597894705832,-0.0028470268007368,0.045854341238737],[-0.048812061548233,0.0023976888041943,0.017038138583302]],[[0.049220237880945,-0.036620166152716,-0.033421032130718],[0.0228361915797,0.064725995063782,0.025089660659432],[-0.024152580648661,0.019549511373043,-0.03764533624053]],[[-0.098372630774975,0.041511736810207,0.012748515233397],[-0.13359892368317,0.0081456694751978,0.10294541716576],[0.018499596044421,-0.071605205535889,0.041469007730484]],[[0.013646202161908,0.068278923630714,-0.050923764705658],[-0.025336902588606,-0.052637297660112,0.0032117534428835],[0.03329885751009,0.015806641429663,0.0024925637990236]],[[0.0011670156382024,-3.9092833503673e-06,0.040665440261364],[-0.046118590980768,-0.001440889085643,0.041876193135977],[0.062374275177717,0.011668636463583,0.026245711371303]],[[-0.039538770914078,-0.019754083827138,0.010107104666531],[-0.065857991576195,-0.014113048091531,-0.073344580829144],[-0.024445677176118,-0.011332293972373,-0.034139886498451]],[[-0.017296131700277,-0.033789567649364,-9.4787435955368e-05],[-0.047552555799484,-0.023026479408145,-0.02510822750628],[-0.018131347373128,-0.00014771039423067,-0.074143595993519]],[[0.034851171076298,0.034123864024878,-0.015782473608851],[0.062716387212276,-0.013180797919631,0.049888446927071],[0.027588628232479,-0.0042600017040968,0.057996712625027]],[[-0.022359479218721,-0.0085491165518761,0.038396261632442],[0.059114009141922,-0.045585874468088,-0.00099101557862014],[-0.016327807679772,-0.11527591198683,0.0081399567425251]],[[0.044749718159437,-0.018099391832948,-0.036685489118099],[-0.091883108019829,0.031427633017302,-0.010554623790085],[0.033235460519791,-0.0063416073098779,0.053321771323681]],[[0.078341849148273,0.041008498519659,0.034388180822134],[0.018369104713202,-0.0266108289361,-0.046538677066565],[0.023528696969151,0.033514890819788,-0.028405239805579]],[[5.1163406169508e-05,0.039873320609331,0.020921701565385],[0.021955274045467,0.014077217318118,-0.017875300720334],[-0.037737723439932,0.054662894457579,-0.0027690646238625]],[[-0.08212685585022,0.003146446775645,-0.03596492856741],[0.013833899982274,-0.0022895140573382,-0.033324662595987],[0.058813624083996,0.0082332985475659,0.10237550735474]],[[0.02796071767807,-0.054317109286785,0.0056041195057333],[0.025765074416995,-0.028179161250591,-0.011929114349186],[-0.049497779458761,0.014236441813409,0.032388538122177]],[[0.01804686896503,0.0017870343290269,-0.038059752434492],[0.025128656998277,-0.019205341115594,-0.044497966766357],[-0.0090687973424792,0.035298455506563,0.014729003421962]],[[-0.0028473669663072,0.0011685377685353,0.026955481618643],[-0.021078711375594,0.062492337077856,0.019822232425213],[-0.051067315042019,-0.029810354113579,-0.012964433990419]],[[-0.0083616673946381,0.042675133794546,0.034522596746683],[0.00071467371890321,-0.016018552705646,-0.015081185847521],[-0.015719136223197,0.035866294056177,0.050319705158472]],[[-0.0074073327705264,0.019945967942476,0.0038488486316055],[0.02276099845767,0.040120169520378,0.020703196525574],[0.032166287302971,-0.031360618770123,0.0026682461611927]],[[-0.021949900314212,-0.051302220672369,0.022324100136757],[0.0078741302713752,0.0096517400816083,0.019564243033528],[-0.01407725084573,0.0066553456708789,0.0042004808783531]],[[-0.024260653182864,0.027868840843439,1.3330442016013e-05],[-0.0045581813901663,-0.012978861108422,-0.040079064667225],[-0.07969968020916,0.036125715821981,-0.003337029600516]],[[0.037657707929611,-0.042329799383879,-0.056637860834599],[-0.025828486308455,0.048147816210985,-0.0074194553308189],[-0.01474345754832,-0.010494790039957,0.0073050600476563]],[[-0.040910739451647,-0.065723448991776,0.043057251721621],[-0.025508861988783,-0.061748292297125,0.0015889976639301],[0.15154610574245,0.039214711636305,0.0049258377403021]],[[-0.037693306803703,0.00082678889157251,0.025596814230084],[-0.035660896450281,0.045074611902237,0.064967542886734],[-0.027773359790444,-0.0089018857106566,0.039396066218615]],[[0.077150106430054,-0.03070162422955,0.030058803036809],[-0.0090860351920128,-0.025487124919891,-0.0098371291533113],[0.031117698177695,0.053356327116489,-0.02764904499054]],[[0.0051118931733072,0.0016795650590211,-0.0016863273922354],[0.065414376556873,-0.0388253480196,0.05559554323554],[-0.020333593711257,-0.091595739126205,0.015734031796455]],[[-0.015359785407782,0.010389703325927,0.039499051868916],[-0.052371256053448,0.069699697196484,-0.05119888111949],[-0.0025438617449254,-0.051909957081079,0.022086145356297]],[[0.064323611557484,-0.02115561440587,0.011505332775414],[0.0064439787529409,-0.029037004336715,0.0021978598088026],[-0.067937567830086,0.0036081904545426,0.1213691085577]],[[0.094170421361923,1.1549042028491e-05,0.024467885494232],[-0.034096263349056,0.047538585960865,0.057030286639929],[0.021356485784054,-0.016920121386647,-0.022309735417366]],[[0.044563747942448,0.10210457444191,-0.010098680853844],[-1.4687506336486e-05,0.04253488779068,-0.036857757717371],[0.032108094543219,-0.0025107993278652,-0.016026351600885]],[[-0.051015604287386,0.019070204347372,-0.055742260068655],[0.048746954649687,0.088184647262096,0.019795769825578],[-0.016302365809679,-0.043181020766497,-0.0092732487246394]],[[0.010061297565699,-0.016998771578074,-0.068765431642532],[-0.055902190506458,0.078967116773129,-0.0025971389841288],[0.011861868202686,0.056233678013086,-0.0056999786756933]],[[0.0041241180151701,0.060322672128677,-0.039295237511396],[0.00099550560116768,0.020570181310177,-0.00034753984073177],[-0.03772259503603,-0.066132120788097,0.016368340700865]],[[0.0089973853901029,0.063516199588776,0.0062613426707685],[-0.031237715855241,0.013347068801522,0.026827190071344],[-0.0039249411784112,-0.034379366785288,0.079372651875019]],[[0.013676665723324,-0.035950422286987,0.0078905439004302],[0.012887340970337,-0.063978105783463,-0.031982433050871],[0.030358545482159,-0.029078593477607,0.019753457978368]],[[-0.0010488871484995,-0.022296873852611,-0.0011513462522998],[-0.025475731119514,-0.014652354642749,-0.048873078078032],[-0.06655965000391,-0.070490039885044,-0.0024456498213112]],[[0.096596084535122,0.048604488372803,-0.022963531315327],[0.067701689898968,-0.0061698006466031,0.040332168340683],[-0.0032831588760018,-0.031480599194765,-0.007907503284514]],[[0.020224323496222,0.039995241910219,-0.041504930704832],[0.050900511443615,0.038420252501965,-0.003523986088112],[0.078533604741096,0.060004137456417,0.0099629936739802]],[[0.080000884830952,0.01396472658962,-0.036637302488089],[0.04158453270793,0.0060289115644991,-0.082100920379162],[-0.0041760825552046,0.046800173819065,0.081192940473557]],[[-0.015537964180112,-0.062898904085159,-0.029686622321606],[0.071179166436195,-0.0012927170610055,-0.014295063912868],[0.02424355968833,0.046195831149817,-0.11702104657888]],[[0.029149046167731,-0.043061193078756,-0.023119278252125],[0.069076977670193,-0.020109493285418,0.087427817285061],[0.060196001082659,0.068886063992977,-0.04546345770359]],[[-0.026896201074123,-0.0051929336041212,-0.01660593226552],[0.046293571591377,0.020380163565278,0.026312038302422],[-0.016252314671874,0.041795432567596,-0.057503968477249]],[[-0.073803700506687,-0.0085942782461643,-0.018221272155643],[-0.034231938421726,-0.0049611856229603,-0.050170514732599],[-0.013481278903782,-0.021885255351663,0.077944859862328]],[[-0.071265339851379,-0.0015600241022184,-0.017022680491209],[-0.007169290445745,0.061308447271585,-0.026900324970484],[-0.027573470026255,0.042199570685625,0.028692388907075]],[[0.021069031208754,-0.020915526896715,0.090672507882118],[0.013934925198555,-0.0066828727722168,0.070746622979641],[0.018224164843559,-0.027155872434378,-0.058855894953012]],[[0.019664205610752,-0.050005998462439,0.028315186500549],[-0.005529357586056,0.005840954836458,0.040429886430502],[0.070981986820698,0.016419056802988,0.065812587738037]],[[0.011314976029098,-0.031402815133333,-0.037286553531885],[0.11572787165642,-0.060055240988731,0.071504399180412],[-0.021079177036881,0.047309380024672,-0.021269682794809]],[[0.024935230612755,0.025665260851383,0.036995466798544],[0.029574928805232,-0.0393947660923,0.041638009250164],[0.014017695561051,0.027731427922845,0.008198095485568]],[[0.015738099813461,-0.00070181058254093,0.015965525060892],[0.043431773781776,0.054112337529659,0.06008854880929],[-0.058055315166712,-0.059647105634212,0.035425700247288]],[[-0.0080733988434076,0.045446276664734,-0.044897623360157],[-0.0055149593390524,0.065818481147289,-0.0055488380603492],[-0.063543021678925,0.11300074309111,0.047401126474142]],[[0.023958651348948,0.033490184694529,-0.021582283079624],[0.066269241273403,-0.056606501340866,-0.079297780990601],[0.032106805592775,-0.052450258284807,0.11176221072674]],[[-0.047463919967413,-0.0049320547841489,-0.0016123350942507],[0.049122750759125,0.037324640899897,-0.019638491794467],[0.04195923358202,-0.038707185536623,0.024016695097089]],[[0.0069624045863748,-0.022116806358099,0.040865961462259],[-0.070554822683334,0.024955498054624,0.10922452807426],[-0.04700081050396,-0.028937252238393,-0.016330590471625]],[[0.048392254859209,0.055767379701138,-0.0053392858244479],[-0.018559779971838,-0.063855960965157,0.00074521632632241],[0.055402375757694,0.0050486433319747,0.015444270335138]],[[0.015202529728413,-0.039525039494038,-0.037397220730782],[0.015320107340813,0.049809172749519,0.016649343073368],[0.017189724370837,-0.0006370588671416,-0.037022046744823]],[[0.023069974035025,0.048081997781992,-0.0125627592206],[0.032650027424097,0.059289380908012,0.037851516157389],[-0.035049255937338,0.0083315558731556,0.0046968441456556]],[[0.022072527557611,0.043666772544384,-0.076911062002182],[-0.013107381761074,-0.07537891715765,0.012694136239588],[0.022903731092811,-0.022235436365008,-0.0010422689374536]],[[0.040087018162012,0.09032541513443,-0.028685973957181],[0.03396388143301,0.047846760600805,0.038957472890615],[0.011318878270686,0.0075698778964579,0.060816738754511]],[[0.051681037992239,0.012936585582793,-0.0068528363481164],[0.029569368809462,0.064348191022873,-0.06546875834465],[-0.038238495588303,0.046016406267881,0.036036413162947]],[[-0.015978304669261,0.006187301594764,0.014118948020041],[-0.032401274889708,-0.023949217051268,0.010509964078665],[0.0086193764582276,-0.028089758008718,-0.045829065144062]],[[0.064800299704075,0.027087369933724,0.016688214614987],[-0.038242544978857,-0.041826386004686,-0.026936929672956],[0.032706126570702,-0.041479483246803,-0.010071404278278]],[[0.013908513821661,0.060992605984211,0.064498960971832],[0.037655021995306,-0.05035762116313,0.046319626271725],[-0.057398535311222,0.051666289567947,-0.045558486133814]],[[0.037743840366602,-0.0047900443896651,-0.032413359731436],[0.037312287837267,0.035664301365614,0.04160488024354],[0.0047982283867896,-0.10859763622284,-0.039743687957525]],[[0.026836026459932,0.070666253566742,-0.018679428845644],[0.091704338788986,0.04552599042654,-0.017982086166739],[0.064539641141891,-0.13061162829399,0.018142845481634]],[[0.033752750605345,0.049966525286436,0.053041025996208],[0.015946596860886,-0.010142482817173,0.0050776395946741],[-0.019292008131742,-0.012840753421187,-0.025750685483217]],[[0.045032847672701,-0.035694763064384,-0.01180973649025],[0.0165427736938,-0.039874102920294,0.01048758905381],[0.03885804861784,-0.022975647822022,-0.037337560206652]],[[0.0058837905526161,0.016052534803748,-0.0014136395184323],[0.016116177663207,0.046423815190792,0.026838630437851],[-0.008553390391171,-0.04591541737318,-0.047376964241266]],[[0.025941414758563,0.0024230892304331,0.060930904000998],[0.047242671251297,-0.011312070302665,-0.060614120215178],[0.040574040263891,0.038717173039913,0.036532193422318]],[[-0.0070337816141546,0.01981408521533,-0.012643848545849],[-0.021892407909036,0.011084862053394,-0.041892789304256],[0.083169274032116,-0.019690940156579,0.002017950406298]],[[-0.024656403809786,0.042712934315205,-0.012259961105883],[0.042189724743366,0.022801192477345,0.019324209541082],[-0.030984098091722,0.013739881105721,-0.023267533630133]],[[-0.022333458065987,-0.02477614954114,-0.023519828915596],[-0.03733704611659,0.055418144911528,-0.0042641451582313],[-0.048918191343546,-0.016124738380313,-0.0165138784796]],[[0.004160841461271,-0.0036659082397819,-0.017899325117469],[0.04279026016593,0.014106506481767,-0.014593584463],[0.029982442036271,0.02883636765182,0.014700958505273]],[[-0.036641575396061,0.012613258324564,-0.019909689202905],[0.033475782722235,-0.014619783498347,-0.028792206197977],[0.0067916619591415,0.087347261607647,0.055575236678123]],[[-0.0099236555397511,0.087956182658672,-0.021833665668964],[0.025669502094388,0.087040841579437,0.042123146355152],[0.069142445921898,0.046879187226295,0.034534994512796]],[[0.03195122256875,-0.013285575434566,-0.029112769290805],[0.048549629747868,-0.060632027685642,-0.010612679645419],[0.015821659937501,0.07398410141468,0.05057168751955]],[[0.032357484102249,0.0073455283418298,0.018416674807668],[0.039131630212069,-0.020960435271263,-0.0035593097563833],[0.038367234170437,-0.0036673790309578,0.0059913462027907]],[[-0.03029902279377,0.012553663924336,-0.010991654358804],[0.041032589972019,0.0018862207653001,-0.0084920339286327],[0.024134248495102,0.031657189130783,0.052082747220993]],[[0.050018228590488,-0.0045697786845267,-0.015998389571905],[-0.0040105595253408,0.016332453116775,-0.028238104656339],[-0.0013615138595924,0.028004754334688,0.0047324472106993]],[[-0.0013855593279004,0.014855426736176,-0.0081729032099247],[0.012125397101045,-0.058378908783197,0.0062710675410926],[0.011948792263865,0.075000517070293,0.059755384922028]],[[-0.0063603669404984,0.040183309465647,-0.020360212773085],[-0.013542185537517,0.023230336606503,0.0066406228579581],[0.017035825178027,-0.015260482206941,0.028269039466977]],[[-0.076936639845371,0.086376845836639,0.026346931234002],[-0.0276695266366,-0.058305531740189,-0.030423808842897],[0.015720803290606,-0.014684431254864,-0.0054822908714414]],[[0.067040733993053,-0.0029089043382555,-0.015053897164762],[-0.027861284092069,0.052832890301943,0.058160696178675],[0.050361141562462,0.027021657675505,0.038842275738716]],[[0.020215770229697,0.08742269128561,-0.012899111956358],[0.025570625439286,-0.064535990357399,-0.032384961843491],[0.061185635626316,0.019804980605841,0.025227852165699]],[[0.0017364929663017,0.050332974642515,0.039119325578213],[0.015148965641856,-0.017865240573883,0.014367152936757],[-0.004054999910295,0.048013806343079,-0.062297698110342]]],[[[0.047701217234135,-0.048511873930693,-0.013371400535107],[-0.033878274261951,-0.062989376485348,-0.029686944559216],[-0.023763258010149,-0.035425025969744,0.021889228373766]],[[0.12485056370497,-0.051753580570221,0.039150644093752],[0.022173712030053,-0.017002955079079,0.050405126065016],[0.047151181846857,0.050338853150606,0.0071263671852648]],[[0.026742761954665,-0.08844992518425,0.00089580233907327],[-0.019770471379161,0.04791422560811,0.0047373389825225],[0.048940986394882,-0.033728182315826,-0.0090842004865408]],[[-0.019469866529107,-0.0095270993188024,0.033156644552946],[-0.010955181904137,-0.025730399414897,0.010942252352834],[-0.02304788120091,0.017043251544237,-0.0029302535112947]],[[-0.029532080516219,-0.041218113154173,-0.026518469676375],[0.033656153827906,-0.0026181316934526,0.018605399876833],[-0.039633516222239,-0.042564921081066,-0.022288028150797]],[[-0.043882861733437,-0.024052044376731,-0.0067569916136563],[-0.0035547164734453,-0.026420645415783,-0.031402368098497],[-0.061254393309355,0.055717073380947,-0.070516631007195]],[[0.0067334421910346,-0.06940621137619,-0.032651495188475],[-0.036140684038401,-0.048990115523338,0.0029963254928589],[0.039423137903214,-0.043837901204824,-0.030512223020196]],[[0.0044580758549273,-0.01135777682066,0.016234058886766],[-0.025760266929865,-0.0046213092282414,-0.016422312706709],[-0.036210767924786,0.0038847774267197,0.01068261358887]],[[0.031213061884046,0.015689883381128,-0.0036262315697968],[-0.0094940355047584,-0.093073137104511,0.026572177186608],[0.015824416652322,0.075662709772587,0.026480814442039]],[[-0.058288991451263,0.12731997668743,-0.029846807941794],[-0.057953104376793,-0.023093428462744,0.028155788779259],[-0.017838465049863,0.020592665299773,0.016392977908254]],[[-0.006941513158381,0.037796720862389,-0.012530743144453],[0.03302825242281,-0.046505760401487,-0.053904108703136],[-0.035952221602201,0.027388093993068,0.012059452943504]],[[-0.0052524260245264,0.062035381793976,0.033660374581814],[0.034484934061766,0.057678941637278,0.026534305885434],[0.0055373958311975,0.047834113240242,-0.0042384727858007]],[[-0.0054905833676457,-0.073951780796051,0.0051220688037574],[0.033072527498007,0.048939898610115,-0.023377439007163],[-0.023665005341172,-0.040859438478947,-0.011208430863917]],[[0.027414731681347,0.01166427321732,0.030917255207896],[0.03415571898222,0.019339652732015,0.0076891151256859],[-0.070875532925129,0.0083323735743761,0.001656768261455]],[[0.07507848739624,-0.0070530166849494,0.0018652548315004],[0.076402865350246,-0.0064922128804028,-0.054594554007053],[0.048249945044518,0.096257224678993,-0.017931023612618]],[[0.02759107016027,0.00040414731483907,-0.021271014586091],[-0.012081020511687,-0.027179211378098,-0.056225523352623],[-0.034821048378944,0.07839635014534,0.016518155112863]],[[0.06223863735795,0.00022035295842215,-0.0068832873366773],[-0.047512635588646,-0.0030713633168489,-0.041206035763025],[-0.080104023218155,0.061194762587547,-0.0369120426476]],[[0.018688907846808,0.052229899913073,0.019359743222594],[-0.043769899755716,0.067458413541317,0.022893374785781],[-0.0071074003353715,-0.033630400896072,0.0012801242992282]],[[-0.045271243900061,-0.010994421318173,0.00093191681662574],[-0.038464307785034,-0.087665267288685,0.0022956279572099],[-0.01915137656033,-0.014329944737256,0.043779138475657]],[[0.011438154615462,0.075170129537582,-0.033123977482319],[-0.026750616729259,0.049666624516249,0.0040227025747299],[0.039794586598873,-0.0015187803655863,-0.068165183067322]],[[-0.071512006223202,0.051141452044249,0.036223340779543],[-0.01076899189502,-0.031912975013256,0.0091581223532557],[0.080852709710598,-0.040842942893505,-0.081805191934109]],[[0.013102603144944,-0.073855049908161,-0.0047149206511676],[-0.014030198566616,-0.0032403075601906,-0.036397691816092],[0.061140656471252,-0.0095530012622476,-0.03464063629508]],[[-0.021170319989324,-0.064942046999931,-0.020212549716234],[0.0066336747258902,-0.013350420631468,-0.04860196262598],[-0.028966721147299,0.028743727132678,-0.016101924702525]],[[-0.050219010561705,-0.0095910280942917,-0.04735766723752],[-0.095859460532665,0.043357692658901,-0.020129714161158],[-0.080965980887413,0.0026377516333014,-0.013029626570642]],[[0.0072186887264252,-0.028598360717297,0.038048077374697],[-0.05284683033824,0.027576558291912,-0.00055323849665001],[0.0076071997173131,0.016427675262094,0.061916776001453]],[[-0.007181775290519,0.064066030085087,-0.039705436676741],[-0.047553718090057,0.00028456750442274,0.015763500705361],[0.036903500556946,0.002959328237921,-0.037252090871334]],[[-0.027279138565063,0.041304118931293,-0.037364903837442],[0.0050262282602489,0.017604438588023,-0.046138893812895],[0.050531554967165,-0.083497226238251,-0.0042912294156849]],[[-0.032525688409805,-0.069689348340034,0.010693517513573],[0.0088837528601289,0.061200562864542,-0.055007040500641],[-0.0036622104234993,-0.047199081629515,0.022613735869527]],[[0.0099231777712703,0.0074976831674576,-0.067284062504768],[0.097760587930679,-0.015215331688523,-0.049052160233259],[-0.03337137401104,-0.0048337075859308,-0.010401760227978]],[[-0.092676676809788,0.073177240788937,0.0087742656469345],[0.038553833961487,-0.041098896414042,0.0026737002190202],[-0.037117227911949,0.077475048601627,-0.033369451761246]],[[-0.031831126660109,-0.090301841497421,-0.02127411775291],[-0.057087663561106,-0.052925750613213,-0.038347452878952],[-0.054741643369198,0.030114199966192,-0.027200467884541]],[[-0.039024073630571,0.021127123385668,0.034737776964903],[0.039337433874607,-0.029597353190184,-0.081139966845512],[0.030333848670125,-0.10961573570967,-0.0065108207054436]],[[0.019276592880487,-0.0069764093495905,0.049428958445787],[-0.042091425508261,-0.012047227472067,0.03211523219943],[0.0356112010777,-0.035766258835793,-0.035709492862225]],[[-0.052338846027851,0.046255964785814,0.026375496760011],[0.010387781076133,-0.012485215440392,0.039944041520357],[-0.04504307359457,0.017598524689674,-0.076973177492619]],[[0.01013427041471,0.015684351325035,0.02009398303926],[0.013526753522456,0.020216230303049,-0.035117823630571],[-0.071893267333508,0.0032645580358803,0.01205534208566]],[[0.0082790739834309,-0.039647277444601,-0.056274589151144],[-0.0090272752568126,0.013873752206564,-0.027240097522736],[-0.081407345831394,0.043885692954063,-0.030904836952686]],[[-0.060801558196545,0.04084650054574,-0.029311107471585],[0.014511507935822,-0.11220493167639,0.01347108092159],[-0.03999887034297,0.060270953923464,-0.0085116857662797]],[[-0.089062109589577,-0.029208358377218,0.024897923693061],[0.0085470965132117,0.051920592784882,0.06874968111515],[0.041175950318575,0.019963344559073,-0.0045283688232303]],[[-0.019869586452842,0.0075927278958261,-0.030321110039949],[0.024644248187542,-0.0034215422347188,0.0015121499309316],[0.024247890338302,-0.0035456740297377,0.035124123096466]],[[-0.061339419335127,-0.068728342652321,0.024269977584481],[-0.061263799667358,-0.0070171635597944,0.016164062544703],[0.0023146497551352,0.039690569043159,0.014970565214753]],[[-0.045419070869684,-0.016968481242657,-0.064008474349976],[-0.0081678563728929,0.046092566102743,0.030755998566747],[-0.017418285831809,0.055102322250605,-0.10584710538387]],[[0.019110830500722,-0.020548660308123,-0.010850803926587],[0.014985974878073,-0.051607593894005,-0.074723742902279],[0.0055744266137481,-0.016363438218832,0.025452760979533]],[[-0.044165786355734,0.089451037347317,-0.019333351403475],[0.029092907905579,-0.0056602736003697,0.020330173894763],[0.019149165600538,-0.016596673056483,-0.073806501924992]],[[0.0091857574880123,-0.024923626333475,-0.00050351186655462],[0.026447959244251,0.066902451217175,-0.074215367436409],[-0.0031916340813041,0.10635302960873,-0.0074150483123958]],[[-0.0033477523829788,0.083093725144863,-0.024540536105633],[-0.034459721297026,0.03714345395565,-0.10023333132267],[-0.030177883803844,0.012872599065304,0.057535201311111]],[[-0.010893442668021,-0.07099474221468,-0.0058217141777277],[-0.046027809381485,-0.095444969832897,0.009713688865304],[0.059522341936827,-0.025357676669955,0.033713113516569]],[[0.071526877582073,-0.031604245305061,0.0067976247519255],[-0.051481883972883,0.00073240039637312,0.034847527742386],[-0.0044752694666386,0.0044536283239722,0.045718241482973]],[[0.016804868355393,0.024989623576403,0.0032951910980046],[0.0071890936233103,0.07660199701786,-0.077377252280712],[-0.053256776183844,0.025335695594549,0.039153717458248]],[[-0.042111974209547,0.049231197685003,0.032692179083824],[0.039247192442417,-0.074797622859478,0.016560385003686],[-0.027019660919905,-0.066371105611324,0.0048711886629462]],[[-0.028035113587976,0.023801231756806,0.029735241085291],[-0.050106734037399,0.027426868677139,-0.0094417380169034],[-0.030128175392747,-0.024334017187357,-0.039210140705109]],[[-0.0011520878178999,0.062499042600393,0.050969745963812],[0.027228157967329,0.014773013070226,0.009382120333612],[-0.012208759784698,0.072066336870193,-0.057476062327623]],[[-0.070935547351837,0.056916385889053,0.055718120187521],[-0.05046933144331,-0.014289642684162,0.030546298250556],[0.059084817767143,-0.071858234703541,-0.080111630260944]],[[-0.034258041530848,-0.045779649168253,-0.022098030894995],[0.0060066636651754,0.013566182926297,-0.032555054873228],[-0.043070375919342,0.03270773217082,0.022574121132493]],[[0.044901870191097,0.01775036752224,-0.065403982996941],[0.082135759294033,-0.12113255262375,0.035302329808474],[-0.027614988386631,0.015444223769009,-0.025104438886046]],[[0.013833799399436,-0.048185426741838,-0.018841011449695],[-0.027261001989245,-0.0045327385887504,0.045707538723946],[-0.001784248277545,-0.029656700789928,-0.040873069316149]],[[-0.088934801518917,-0.0042497562244534,0.0064745396375656],[-0.0088949389755726,0.042856391519308,0.058995094150305],[0.016494346782565,0.03702886775136,0.013506862334907]],[[0.071574211120605,-0.018538685515523,-0.033917170017958],[0.030947871506214,-0.076146364212036,-0.053508628159761],[-0.0034979495685548,0.026560263708234,0.061886679381132]],[[0.026367641985416,-0.010823572054505,-0.0048787603154778],[-0.044459573924541,0.023212671279907,-0.005738069768995],[-0.05084827914834,-0.0092044975608587,-0.002217119326815]],[[-0.024317352101207,0.052766356617212,-0.0073720486834645],[-0.021503813564777,0.013079255819321,-0.03503343462944],[-0.0068792253732681,0.013784621842206,0.052256811410189]],[[-0.034952435642481,0.013768201693892,0.0034892153926194],[-0.021979209035635,0.023621927946806,0.058745812624693],[0.032449055463076,-0.037704281508923,-0.020940415561199]],[[-0.046903941780329,0.0032568068709224,0.040876753628254],[0.044703800231218,-0.011100021190941,0.072755612432957],[-0.043590772897005,0.034611526876688,-0.015079740434885]],[[-0.065504357218742,0.047050505876541,-0.0054677245207131],[-0.036272618919611,0.01693551056087,0.016073876991868],[0.0040852068923414,-0.048674315214157,0.026730349287391]],[[0.0019054388394579,0.015318932943046,0.010551587678492],[-0.038814999163151,-0.037878718227148,-0.011133288033307],[0.012412966229022,0.10734708607197,0.023741198703647]],[[-0.035326462239027,0.023957321420312,-0.012705912813544],[0.030667133629322,0.094376042485237,0.02843695692718],[0.020234072580934,0.039285231381655,0.014422535896301]],[[0.044335037469864,-0.0051958472467959,-0.050667930394411],[0.016394400969148,0.0073833679780364,-0.0027035139501095],[-0.10186015814543,0.0039921016432345,0.016707453876734]],[[-0.10441771894693,-0.010382460430264,0.11718642711639],[-0.063701905310154,0.069290027022362,0.014135112054646],[-0.070733532309532,0.026863317936659,0.021988993510604]],[[0.049552083015442,0.055879194289446,-0.067335270345211],[0.074178673326969,-0.02683363109827,0.065055646002293],[-0.035553447902203,-0.033919595181942,0.073688417673111]],[[0.0046410239301622,-0.00087053305469453,0.082715593278408],[0.0094488151371479,-0.013251531869173,0.0048825475387275],[0.005351590923965,-0.0029583624564111,-0.02847658470273]],[[0.028797114267945,-0.018638690933585,-0.004780653398484],[-0.060953695327044,0.0055033536627889,-0.025486644357443],[-0.0054531265050173,0.046483069658279,0.036113630980253]],[[0.041330676525831,0.05119064450264,0.032399445772171],[-0.014790562912822,-0.065902322530746,-0.031751777976751],[-0.043145660310984,0.015984151512384,-0.098870597779751]],[[0.013187210075557,-0.016681186854839,-0.0012832339853048],[-0.060331232845783,0.049541268497705,-0.033909577876329],[0.078048661351204,-0.014473898336291,0.013637902215123]],[[-0.030131533741951,-0.059481643140316,-0.019821038469672],[0.034195277839899,0.076349519193172,0.051994785666466],[-0.018714440986514,0.0034696254879236,-0.020174272358418]],[[-0.077289775013924,0.048613734543324,0.04018322750926],[-0.0077806618064642,0.0064000566489995,0.0183967910707],[0.021647589281201,0.021524230018258,0.041273642331362]],[[0.052506849169731,-0.085831061005592,0.018247617408633],[0.035530500113964,0.010601215995848,-0.015266785398126],[0.079705573618412,-0.0067940950393677,0.047619853168726]],[[0.051886405795813,0.010770820081234,-0.072350889444351],[-0.054495353251696,-0.044652111828327,0.029685560613871],[0.01611171849072,-0.00027534720720723,0.012690565548837]],[[-0.046302016824484,0.010767871513963,0.054334510117769],[-0.022693557664752,0.094169199466705,-0.050178837031126],[0.00061941769672558,-0.0034007201902568,0.039260946214199]],[[0.011458171531558,0.0086415065452456,0.0084976525977254],[0.0015628827968612,-0.043098144233227,-0.039643738418818],[0.066187597811222,0.1254309117794,0.013747469522059]],[[-0.03196182847023,0.011843085289001,-0.091110371053219],[-0.066410452127457,-0.025505254045129,-0.030199555680156],[-0.059611953794956,0.0087583819404244,0.05685057118535]],[[-0.063958823680878,0.046610575169325,-0.014997391961515],[0.056749422103167,-0.018630219623446,-0.029016260057688],[0.11367531120777,0.019403483718634,0.050651893019676]],[[-0.016305804252625,0.029145058244467,0.029952017590404],[-0.051511883735657,0.028750143945217,0.088367715477943],[0.027241440489888,-0.11927220225334,0.070485681295395]],[[-0.033619377762079,0.020220506936312,-0.037138115614653],[-0.0157201718539,-0.013595184311271,0.013371475972235],[-0.01821505650878,-0.064419321715832,0.0123495971784]],[[-0.022512516006827,0.010823588818312,-0.019083734601736],[-0.045158874243498,-0.10600235313177,0.033255163580179],[-0.031574625521898,0.00047382031334564,0.0098475506529212]],[[0.028807528316975,-0.034653011709452,0.019580004736781],[0.0082363449037075,-0.048688020557165,-0.039250142872334],[-0.044726468622684,0.046691212803125,0.029341233894229]],[[0.014123474247754,0.038317508995533,0.054291997104883],[0.00051841605454683,-0.078173451125622,-0.044719565659761],[-0.059768605977297,0.030672952532768,0.016419706866145]],[[-0.06694183498621,-0.042688831686974,-0.019843703135848],[0.0096574630588293,-0.11354263871908,0.010870933532715],[0.033375900238752,0.018146812915802,-0.051019076257944]],[[0.09258858859539,5.7023309636861e-05,0.0057159448042512],[0.027756819501519,-0.042068105190992,-0.053857658058405],[-0.051247358322144,0.074218116700649,0.078914076089859]],[[-0.052040122449398,-0.053141180425882,0.043111186474562],[-0.013307601213455,0.041847702115774,-0.00080625817645341],[-0.0028139478527009,-0.055924247950315,-0.020398808643222]],[[0.0091224955394864,0.068237282335758,-0.060716673731804],[-0.054934810847044,0.0074582323431969,-0.03337113186717],[0.0096549652516842,0.022255964577198,0.0081493463367224]],[[-0.0067242668010294,0.00075404578819871,0.029227590188384],[-0.057548489421606,-0.014849902130663,-0.0060598384588957],[-0.032283443957567,-0.010866018012166,0.011807909235358]],[[0.039130553603172,-0.03132189065218,0.028970891609788],[-0.011128634214401,-0.065616831183434,0.050904925912619],[-0.024679373949766,0.02488986775279,-0.026828812435269]],[[-0.0097704855725169,-0.00054933590581641,-0.087971828877926],[0.0062199356034398,0.015437194146216,0.004355444572866],[0.056048087775707,0.020127978175879,-0.0077000483870506]],[[-0.02089405991137,-0.031078012660146,0.011493825353682],[-0.014062933623791,-0.020632738247514,0.010268925689161],[0.032152809202671,-0.015956157818437,-0.008201633580029]],[[0.018995370715857,-0.034522090107203,0.026581173762679],[0.031608171761036,0.044204093515873,-0.018842654302716],[-0.065275110304356,0.0054414351470768,0.022511340677738]],[[0.05773837864399,0.0072453985922039,0.066098377108574],[-0.045366365462542,0.041755776852369,-0.024290649220347],[0.0030216083396226,-0.0027599565219134,-0.018198551610112]],[[0.017940066754818,-0.040618732571602,0.025427792221308],[0.001458246842958,0.013485851697624,0.026440666988492],[-0.010417179204524,-0.018236443400383,-0.0073674954473972]],[[-0.044127900153399,0.00122055481188,0.0066002928651869],[-0.08142065256834,-0.036642279475927,-0.063802182674408],[-0.016047663986683,-0.014154908247292,0.0064282147213817]],[[0.032061100006104,0.0065379263833165,0.023170420899987],[0.0086783273145556,0.021744146943092,-0.010784265585244],[0.053013473749161,-0.008657262660563,0.037355568259954]],[[0.013201967813075,0.010020484216511,-0.037554793059826],[-0.040784504264593,0.0036487116012722,0.0073355343192816],[-0.0077223973348737,0.010253832675517,0.023509606719017]],[[0.031974345445633,-0.018006796017289,-0.046601846814156],[-0.033839583396912,0.019255688413978,-0.041304904967546],[0.066475830972195,0.010790975764394,-0.055202327668667]],[[0.0077303042635322,-0.0065057286992669,-0.024062911048532],[-0.019074803218246,0.0059225079603493,-0.035959661006927],[0.0047197542153299,-0.038592990487814,-0.029357923194766]],[[0.027613636106253,0.053285624831915,0.014518359676003],[0.0069172899238765,-0.070325314998627,-0.041531305760145],[0.04037619382143,0.0037970480043441,0.029204549267888]],[[-0.091269791126251,-0.066318482160568,-0.038434505462646],[0.058398548513651,0.0016676373779774,-0.0035548198502511],[-0.013909078203142,-0.024465177208185,-0.033797655254602]],[[0.01277294754982,-0.053611375391483,-0.0020888219587505],[-0.044558633118868,-0.026206903159618,0.052772127091885],[-0.10382790118456,-0.002490954939276,-0.026110986247659]],[[-0.053735215216875,0.018581682816148,0.013019353151321],[0.0086759375408292,-0.010788057930768,0.027928410097957],[-0.012441072613001,0.063600018620491,-0.075824469327927]],[[-0.014999353326857,0.049516655504704,-0.011935803107917],[-0.031998980790377,-0.0012237871997058,-0.055931750684977],[0.045062024146318,-0.063065335154533,-0.021086787804961]],[[0.0038283094763756,-0.014866040088236,0.063441038131714],[0.026475312188268,0.043458513915539,-0.078912608325481],[-0.061078544706106,-0.034082729369402,-0.035524733364582]],[[0.040852256119251,-0.0018711228622124,-0.078741438686848],[-0.026457287371159,0.045323774218559,0.0013801789609715],[0.023123132064939,0.0075053968466818,0.031781908124685]],[[-0.0079448260366917,0.056818228214979,-0.068489886820316],[0.017538720741868,-0.015751373022795,-0.025394912809134],[-0.0096386540681124,-0.023056777194142,-0.0077545079402626]],[[0.012375159189105,0.030074950307608,-0.013607314787805],[0.04683842509985,-0.02921424433589,-0.024054294452071],[-0.042449086904526,-0.0049018273130059,-0.067524716258049]],[[-0.022904515266418,-0.049310076981783,0.0084177888929844],[-0.082394734025002,0.014771884307265,-0.10856900364161],[0.08531729131937,-0.036079529672861,-0.093023024499416]],[[-0.030313650146127,-0.0061040371656418,0.045028880238533],[0.066592864692211,0.015301394276321,0.0079397205263376],[0.096839234232903,0.0052077998407185,0.0040160985663533]],[[-0.048347011208534,0.037953693419695,0.0093462485820055],[-0.0072651002556086,0.0041470658034086,-0.063369229435921],[-0.0068496889434755,-0.014558356255293,0.074161790311337]],[[-0.049953918904066,-0.06235059723258,0.033450495451689],[-0.017774956300855,-0.038358964025974,0.034412018954754],[0.035025049000978,0.054851498454809,-0.021840700879693]],[[-0.092347525060177,0.034993719309568,-0.014844380319118],[-0.038540467619896,-0.050668105483055,-0.026738760992885],[0.011240197345614,-0.041134007275105,0.012115432880819]],[[-0.068380422890186,0.0087220519781113,-0.014161468483508],[0.029586927965283,-0.02364713139832,-0.03859256953001],[-0.00108099472709,-0.053376570343971,-0.011864030733705]],[[-0.03794090077281,0.031682606786489,0.016724778339267],[-0.04844081401825,-0.027213901281357,0.020824598148465],[0.013342469930649,0.062354482710361,0.016847686842084]],[[-0.010942944325507,-0.0079131834208965,-0.029805228114128],[0.03013313934207,0.0062663150019944,-0.02519391104579],[0.016124939545989,0.011120110750198,-0.034223835915327]],[[0.067081809043884,-0.015007022768259,0.044314339756966],[-0.062603630125523,0.026214607059956,-0.02070490270853],[-0.00023452563618775,-0.017327649518847,0.0047002518549562]],[[-0.028392881155014,0.10106938332319,-0.062448021024466],[0.03851180896163,-0.0040661552920938,-0.0093553438782692],[0.037973452359438,-0.039504569023848,-0.020091636106372]],[[-0.030270520597696,0.012457970529795,0.028145240619779],[0.0092544993385673,0.064252220094204,0.05571972951293],[-0.0017339892219752,0.032288178801537,0.0033976470585912]],[[-0.076985664665699,-0.035218141973019,0.037497747689486],[0.040033124387264,0.00400335714221,0.0077418629080057],[0.012157180346549,-0.0091727394610643,0.024277931079268]],[[0.009263327345252,0.066550485789776,-0.0107261845842],[0.013069409877062,-0.021681295707822,0.054236572235823],[0.02027122862637,-0.0033752114977688,0.020992456004024]],[[-0.01120322663337,0.0082281325012445,0.0034692392218858],[0.016535481438041,0.027237106114626,-0.025928493589163],[0.036410093307495,-0.038900665938854,-0.026576241478324]],[[-0.018015226349235,-0.019086413085461,0.013028683140874],[-0.043896164745092,0.06712332367897,-0.018042324110866],[0.058023113757372,0.053084425628185,0.039187479764223]],[[-0.046774134039879,-0.03013832308352,0.017115496098995],[-0.039826057851315,-0.017615230754018,0.071667388081551],[-0.018684443086386,-0.021107291802764,0.093423441052437]],[[0.028099816292524,0.047185622155666,-0.019986618310213],[-0.0097179133445024,-0.018654033541679,0.030087469145656],[-0.063951902091503,-0.03661959990859,0.034689966589212]],[[0.019043728709221,0.0014552214415744,0.01708759739995],[0.099765449762344,-0.011388583108783,0.056466221809387],[-0.0056133442558348,-0.038331415504217,-0.031822890043259]],[[0.064733885228634,0.041710339486599,-0.0038508777506649],[0.057704716920853,-0.0048877522349358,-0.0023725405335426],[-0.026090746745467,-0.0064452337101102,-0.027345325797796]]],[[[-0.041626203805208,0.044670566916466,-0.074272662401199],[-0.0095100002363324,0.0054789949208498,0.090719684958458],[-0.0025240373797715,0.017921894788742,-0.028576390817761]],[[-0.05935226008296,0.073770135641098,0.016333542764187],[0.0056850290857255,-0.041823241859674,0.0064530977979302],[-0.02013804204762,0.001373570645228,0.024956148117781]],[[-0.022529380396008,0.0066719651222229,-0.032107971608639],[0.0024786817375571,0.044078126549721,-0.0022927636746317],[-0.023281769827008,-0.0063610728830099,-0.019037624821067]],[[-0.0071446457877755,0.026234112679958,0.014670791104436],[0.0093315243721008,-0.00095588894328102,0.059158563613892],[0.027068223804235,-0.026546472683549,-0.085872650146484]],[[-0.031922735273838,0.019102843478322,-0.014750770293176],[-0.031357407569885,-0.006427904125303,0.0090337097644806],[-0.0073774661868811,0.033148519694805,-0.0024422837886959]],[[0.011970770545304,-0.012916335836053,0.018465528264642],[-0.00042067578760907,-0.023975415155292,0.058188129216433],[-0.037870682775974,0.017842059955001,-0.034035857766867]],[[0.032702822238207,-0.046372443437576,0.016677211970091],[0.015991637483239,0.058542683720589,0.0071720532141626],[-0.062559515237808,-0.014388185925782,-0.024986546486616]],[[-0.0025208573788404,0.0010612870100886,0.0018727720016614],[-0.015019664540887,0.064961060881615,-0.026185471564531],[-0.01544784847647,0.020114464685321,0.039392251521349]],[[-0.020474053919315,-0.030718309804797,0.048005562275648],[0.049213979393244,0.033157605677843,-0.018555924296379],[-0.035381231456995,-0.011685902252793,-0.041927676647902]],[[0.056426160037518,0.018823105841875,-0.027898695319891],[0.013904315419495,0.045493863523006,0.027639744803309],[-0.049849949777126,-0.026100572198629,0.022273164242506]],[[0.021867357194424,0.048054549843073,-0.0064035556279123],[-0.01942577585578,-0.0088799903169274,0.0022046798840165],[-0.043379750102758,0.018771836534142,-0.042046505957842]],[[0.033712401986122,-0.024636425077915,0.032676357775927],[-0.014296100474894,-0.080975323915482,-0.010867732577026],[-0.036860521882772,0.033896215260029,0.034746170043945]],[[0.046235281974077,0.02491183578968,-0.011014516465366],[0.028625337406993,0.030271353200078,-0.057732198387384],[0.011890668421984,0.0020058616064489,-0.057998824864626]],[[-0.010840041562915,-0.036542259156704,-0.051151260733604],[-0.009438899345696,-0.025147438049316,-0.013036045245826],[0.01029809564352,0.048111889511347,-0.011879575438797]],[[-0.019194664433599,-0.028616454452276,-0.022181134670973],[0.0083220154047012,0.036914717406034,0.073466494679451],[0.036895703524351,-0.021405797451735,0.039921842515469]],[[0.015085395425558,-0.020115483552217,0.040382198989391],[0.060921311378479,0.10218296200037,0.01373400259763],[-0.038634557276964,-0.028401492163539,-0.096522837877274]],[[0.0082564167678356,0.033173359930515,0.025324011221528],[-0.047821927815676,0.0082442173734307,-0.038818944245577],[-0.01660486496985,0.045085746794939,-0.026783682405949]],[[0.039148464798927,0.016143534332514,-0.012349400669336],[-0.031119100749493,0.089717969298363,-0.018059965223074],[0.01369815133512,0.0063911094330251,-0.056306824088097]],[[0.011682044714689,0.040608882904053,-0.019082114100456],[-0.1289137750864,0.023591572418809,0.014894767664373],[0.011397137306631,-0.023644773289561,0.028132265433669]],[[0.023649780079722,0.0024808272719383,-0.0052551277913153],[-0.027962287887931,-0.024264404550195,-0.01199425663799],[-0.013433141633868,-0.017430393025279,0.0079185422509909]],[[0.0025701734703034,0.094897799193859,-0.022015806287527],[0.05385597422719,-0.024350883439183,-0.010412828996778],[0.010746536776423,0.042886398732662,-0.030974546447396]],[[0.0045670559629798,-0.06488149613142,-0.031721346080303],[-0.02238549105823,0.083706595003605,0.064821161329746],[-0.0081891687586904,0.046959184110165,0.011131498962641]],[[-0.041834179311991,0.0071803312748671,0.026079624891281],[0.033608205616474,0.0088338274508715,-0.011013003066182],[-0.051460545510054,-0.084011994302273,0.023559814319015]],[[0.023279950022697,0.11870461702347,-0.0021216107998043],[-0.031192678958178,0.026717413216829,0.022469127550721],[-0.043032843619585,-0.03295536339283,-0.036000143736601]],[[-0.015924420207739,-0.073479689657688,-0.0066977427341044],[0.00013205848517828,-0.0014631319791079,-0.043711174279451],[0.061464931815863,0.048985611647367,0.036096479743719]],[[0.011054488830268,-0.015041313134134,-0.050029307603836],[-0.065546415746212,-0.019316976889968,0.022265259176493],[-0.018112557008862,0.044781405478716,-0.036226361989975]],[[0.00068803667090833,0.01499214489013,-0.00042804938857444],[-0.09795867651701,0.0085237435996532,-0.027665220201015],[0.010867346078157,0.026907030493021,0.018624506890774]],[[0.028231870383024,0.002432179171592,0.0058207917027175],[0.01333113014698,-0.017856894060969,0.0095707764849067],[-0.063714690506458,0.0089457090944052,-0.036159671843052]],[[0.017005678266287,0.011287334375083,0.047654554247856],[-0.051001507788897,-0.044159073382616,0.0093251680955291],[0.019810544326901,0.017491195350885,-0.0097399326041341]],[[0.055981859564781,0.0060573555529118,-0.032075956463814],[0.016175519675016,0.0025076153688133,-0.0014759612968192],[0.012562345713377,0.019393956288695,-0.049955382943153]],[[0.048737358301878,-0.012020847760141,-0.023279903456569],[0.045457907021046,0.048684883862734,-0.039889562875032],[-0.078530535101891,-0.0030783291440457,0.052489474415779]],[[-0.046054858714342,-0.017488507553935,0.022341130301356],[0.045367661863565,-0.022969704121351,0.0015388185856864],[-0.034503862261772,0.049595054239035,-0.0061633177101612]],[[-0.033733230084181,0.029731228947639,0.043983269482851],[-0.029417300596833,0.067634999752045,0.018635304644704],[0.0086992988362908,-0.040529746562243,-0.015483900904655]],[[-0.010088328272104,-0.015937015414238,0.014348046854138],[0.00039973552338779,-0.013064707629383,0.056475829333067],[-0.04810744151473,-0.023633494973183,0.069734908640385]],[[-0.0066281100735068,0.005335287656635,0.0091773718595505],[-0.0060733300633729,-0.0083363894373178,-0.042119525372982],[-0.038137648254633,0.036245010793209,-0.010482728481293]],[[0.065185405313969,-0.0024718276690692,-0.011128298006952],[0.0034753601066768,-0.0087420651689172,0.00085029640467837],[0.0058326027356088,-0.022163173183799,-0.045330852270126]],[[-0.0060241241008043,-0.044562965631485,-0.028200140222907],[-0.017078008502722,0.0096498923376203,0.043924257159233],[0.056336008012295,0.013609102927148,0.064030662178993]],[[0.017476670444012,-0.016005290672183,0.083101205527782],[0.043271910399199,0.011338461190462,-0.047340743243694],[-0.023867424577475,-0.069077283143997,0.0096466261893511]],[[0.016435379162431,-0.089599385857582,-0.060192532837391],[0.022622870281339,0.057458382099867,0.0021624609362334],[-0.031600382179022,-0.036464605480433,0.067296296358109]],[[0.076083175837994,0.0032334420830011,0.0067774089984596],[0.03691303730011,-0.02746913395822,-0.083202727138996],[-0.029903765767813,0.0012517905561253,-0.048703793436289]],[[0.023220812901855,-0.059041868895292,0.046621784567833],[0.0099960472434759,-0.079969927668571,-0.051054295152426],[0.039175659418106,0.015139527618885,0.0046751345507801]],[[0.010203035548329,-0.011513091623783,-0.01511043868959],[-0.005414439830929,0.018978040665388,0.076320886611938],[0.0070234998129308,-0.015497693791986,-0.03245934471488]],[[0.043918743729591,0.043988082557917,0.028959544375539],[-0.021143531426787,-0.063849195837975,0.047617491334677],[0.012599126435816,-0.067083165049553,-0.023046413436532]],[[0.013056146912277,0.027109628543258,0.021216621622443],[-0.003715145168826,-0.07867656648159,0.013591826893389],[-0.0084445467218757,0.00022889327374287,-0.01644990593195]],[[0.10491520166397,0.035215340554714,-0.078369989991188],[0.037107940763235,-0.082429431378841,-0.033469598740339],[0.027747934684157,0.001854705507867,-0.028484698385]],[[-0.042799189686775,-0.0081146750599146,-0.06748054921627],[-0.024085974320769,0.051921423524618,0.040560200810432],[0.01028532255441,0.010201192460954,0.033738486468792]],[[0.01495479606092,0.020531473681331,-0.033720817416906],[-0.0065023396164179,0.0055764033459127,-0.016654297709465],[0.0026789212133735,-0.010744771920145,-0.039837311953306]],[[-0.011286083608866,0.070809848606586,0.068169996142387],[-0.0020756488665938,-0.048158917576075,-0.020956752821803],[-0.046179443597794,-0.01491073332727,-0.037218656390905]],[[-0.058319356292486,0.042156983166933,0.0083613004535437],[-0.068816810846329,-0.070752188563347,0.044682294130325],[0.046298515051603,0.021788878366351,0.0053358478471637]],[[-0.013330240733922,0.021217415109277,-0.013592350296676],[0.0042386478744447,0.051311295479536,0.055407032370567],[-0.087817907333374,-0.072582758963108,0.048251677304506]],[[0.0225500613451,-0.0047062104567885,0.027065772563219],[-0.025794938206673,-0.0072200428694487,0.01998882740736],[0.013155402615666,-0.022685375064611,-0.05778319388628]],[[-0.054560083895922,-0.019873172044754,-0.043746832758188],[0.018743986263871,0.023697916418314,0.049901388585567],[-0.0073251891881227,-0.036340586841106,0.044842600822449]],[[-0.04829216375947,0.058398731052876,0.0075458218343556],[0.011962386779487,-0.0093840416520834,-0.051386047154665],[0.053764589130878,-0.01591550372541,-0.019757686182857]],[[0.018320359289646,0.035812426358461,0.030363144353032],[-0.03110682964325,-0.037872388958931,0.011491966433823],[-0.10715456306934,0.0061358297243714,-0.024064861238003]],[[-0.021863853558898,0.031556405127048,-0.031204411759973],[0.027222057804465,-0.043274790048599,0.058306977152824],[0.044984612613916,0.0028836133424193,-0.080624647438526]],[[-0.020458240061998,-0.020573128014803,-0.036423530429602],[-0.01987674459815,0.0041626491583884,-0.0049467864446342],[-0.022475706413388,0.051723793148994,0.018872043117881]],[[-0.035865839570761,0.015728613361716,0.030711177736521],[0.084094934165478,0.034486189484596,-0.044183321297169],[-0.047441188246012,-0.036579858511686,0.028772555291653]],[[-0.011555672623217,-0.04999803006649,0.069433242082596],[-0.012204627506435,0.091460049152374,-0.0033911848440766],[0.0069112717173994,-0.046277768909931,-0.049397371709347]],[[-0.0087642539292574,-0.065259881317616,0.0045927888713777],[-0.069947525858879,-0.0014425503322855,0.045878022909164],[-0.032471299171448,0.064387306571007,-0.024332953616977]],[[0.0082672946155071,0.032384239137173,-0.06645780056715],[-0.01731600612402,0.013805255293846,0.0078192492946982],[-0.02764311991632,0.019826175644994,0.014209658838809]],[[0.0099681597203016,0.011644542217255,0.048185896128416],[-0.040577597916126,-0.057478595525026,-0.020300652831793],[0.020862724632025,-0.038275603204966,0.12702210247517]],[[0.026784468442202,0.036350753158331,-0.008214951492846],[0.032786048948765,-0.0041807834059,-0.048634726554155],[0.047502461820841,-0.059653867036104,-0.025866460055113]],[[-0.028640728443861,-0.0065602017566562,0.016538970172405],[0.024824559688568,-0.00064704578835517,-0.023671040311456],[0.05548744276166,-0.03870002925396,-0.029838232323527]],[[0.010487612336874,-0.03557625412941,0.0043894601985812],[0.0036887242458761,-0.021344274282455,-0.0085184127092361],[0.010459625162184,0.0098156407475471,-0.0022127670235932]],[[-0.078709743916988,0.013681157492101,0.01063421741128],[-0.073323979973793,0.0062141572125256,0.05168092250824],[0.0094421813264489,0.063923351466656,-0.03878640383482]],[[-0.091206625103951,-0.016493663191795,0.057196144014597],[0.068746715784073,-0.028782311826944,0.0092239547520876],[0.069921970367432,0.0092278560623527,-0.084488108754158]],[[-0.031188506633043,-0.038693591952324,-0.0025738971307874],[0.024703582748771,0.013331458903849,-0.047432858496904],[0.053905878216028,-0.0028483583591878,-0.040491007268429]],[[0.043724466115236,-0.084927812218666,0.006752944085747],[-0.0720484405756,0.0079169236123562,-0.035212330520153],[-0.0082826865836978,-0.0004704142047558,0.064071290194988]],[[0.022212661802769,-0.018649784848094,-0.014047998934984],[0.047049015760422,0.065688513219357,-0.066967114806175],[0.063657395541668,-0.013692617416382,-0.0080209150910378]],[[-0.0010044670198113,0.001390302204527,0.0072354055009782],[-0.063030712306499,-0.024959221482277,0.034621447324753],[0.080022379755974,-0.0033882101997733,-0.06274888664484]],[[0.050917252898216,-0.11650417000055,0.077226936817169],[-0.055526718497276,0.0043254303745925,-0.041156880557537],[0.023132162168622,-0.022092804312706,-0.028354376554489]],[[-0.0066889934241772,0.002988662570715,0.029918419197202],[-0.08911120146513,0.052499677985907,-0.080547332763672],[0.018660875037313,0.03108443506062,-0.01255660597235]],[[-0.048228215426207,0.039315227419138,-0.011471011675894],[0.049351643770933,0.01167693734169,-0.010490984655917],[-0.039384666830301,0.033125497400761,0.0062748128548265]],[[-0.084474802017212,0.0054451348260045,-0.06496237963438],[-0.0034572661388665,0.038665018975735,-0.0073533868417144],[0.021557580679655,0.059708692133427,0.05579860880971]],[[-0.0087799560278654,-0.056180883198977,0.00058920244919136],[-0.060427822172642,0.02258119545877,0.014120818115771],[-0.060859940946102,0.015897469595075,0.029441092163324]],[[0.037273999303579,0.014813447371125,-0.040943820029497],[-0.0059866281226277,-0.033274848014116,0.010494180954993],[-0.017001176252961,-0.017533622682095,-0.011778566055]],[[0.0052427891641855,-0.028759153559804,-0.015783257782459],[-0.02651553414762,-0.072957441210747,-0.015827808529139],[-0.024260787293315,0.044057369232178,0.072477459907532]],[[-0.021093495190144,0.036319825798273,-0.057992406189442],[-0.004202043171972,-0.026922227814794,0.031508021056652],[0.037658348679543,-0.054900173097849,-0.00058543065097183]],[[0.020067192614079,-0.027935512363911,0.044278416782618],[-0.021802313625813,0.007571576628834,0.036222949624062],[0.0050599901005626,-0.018420295789838,-0.024860609322786]],[[0.020708868280053,-0.0012708398280665,-0.017745785415173],[0.002130625769496,0.074387602508068,0.033180795609951],[-0.020350670441985,0.00080299598630518,-0.05094438418746]],[[-0.034198544919491,0.026674995198846,0.028623037040234],[0.039290264248848,-0.0082778846845031,0.023346623405814],[-0.062113258987665,-0.033340483903885,-0.041435044258833]],[[-0.0011218846775591,0.052091542631388,0.0042433477938175],[-0.06218259036541,0.00014905919670127,-0.044616613537073],[-0.045639988034964,0.030861394479871,0.033983267843723]],[[0.022069036960602,-0.015984209254384,0.048257984220982],[-0.029318146407604,0.00086789252236485,0.025452639907598],[-0.055404327809811,0.031441941857338,-0.05797466635704]],[[0.026531916111708,0.042441334575415,-0.0086952764540911],[-0.03561982139945,0.083855703473091,-0.010960885323584],[0.02734212577343,-0.040954440832138,-0.077342547476292]],[[-0.024998934939504,0.03230232000351,0.054952792823315],[-0.004349157679826,-0.014672716148198,-0.038211423903704],[0.035517998039722,0.026248849928379,-0.0063815731555223]],[[0.014086267910898,-0.03872587531805,0.048794697970152],[-0.0030546761117876,0.03571468219161,-0.047093611210585],[-0.028335755690932,0.019763192161918,-0.064539335668087]],[[-0.067135967314243,0.016326643526554,0.055145107209682],[0.042627036571503,-0.039674516767263,0.016535280272365],[-0.03875995054841,0.028987478464842,-0.056299325078726]],[[-0.011152138002217,0.0035418428014964,0.0017662275349721],[0.0304024964571,0.04620062187314,0.015614573843777],[0.0063563068397343,-0.084009371697903,-0.039468616247177]],[[-0.081529997289181,0.014888552948833,0.034979108721018],[0.046199180185795,-0.001489075133577,-0.11261091381311],[0.00031863429467194,-0.032829884439707,-0.0051999227143824]],[[-0.0090647442266345,-0.061901621520519,-0.061054788529873],[0.077253304421902,-0.049815692007542,-0.0087166102603078],[0.011812280863523,0.043951138854027,-0.0045851627364755]],[[-0.0050032394938171,-0.016527395695448,0.053403235971928],[0.019539689645171,-0.094402804970741,-0.02835476398468],[0.051337003707886,0.02174517326057,-0.046357322484255]],[[-0.031614687293768,-0.02183761075139,0.025963578373194],[-0.016470395028591,0.092658549547195,0.035016611218452],[-0.059211194515228,0.014023791998625,0.016920007765293]],[[0.023002183064818,0.046910721808672,0.0026723588816822],[-0.011469782330096,-0.012122351676226,-0.0013784230686724],[0.040492195636034,-0.12227340787649,0.028432013466954]],[[-0.023346282541752,0.016161182895303,-0.02653868496418],[-0.031033081933856,-0.059222001582384,0.059331987053156],[0.029128801077604,-0.033903062343597,0.081423088908195]],[[-0.031270314007998,0.026548063382506,0.014795697294176],[0.0067508132196963,-0.045637041330338,0.05710607022047],[-0.027861215174198,0.016969790682197,-0.021917914971709]],[[0.0048818551003933,-0.015307034365833,0.0010696910321712],[-0.032042294740677,-0.069047451019287,0.14140892028809],[0.085728421807289,-0.07427965849638,0.027586134150624]],[[0.033570256084204,-0.073585972189903,0.0030961877200752],[-0.05272575840354,-0.031718220561743,-0.072290174663067],[0.082587018609047,0.063744507730007,0.033622708171606]],[[-0.02978871576488,-0.011611080728471,-0.021772177889943],[-0.0014110147021711,-0.040666870772839,-0.017051106318831],[0.11158798635006,-0.02407050319016,0.0111158574]],[[-0.0029522671829909,0.069742925465107,-0.021269261837006],[-0.019580634310842,0.005652513820678,-0.022515006363392],[-0.00063419813523069,-0.020313888788223,0.044736541807652]],[[0.054765027016401,0.021039646118879,-0.076490543782711],[-0.064881011843681,0.028002491220832,0.071450792253017],[0.0039895977824926,0.033529412001371,-0.064783707261086]],[[0.073728561401367,0.0049785110168159,0.065587103366852],[-0.004950366448611,0.042536325752735,-0.020184099674225],[-0.063136503100395,-0.039814841002226,-0.035653810948133]],[[-0.10470303148031,-0.080791048705578,0.01191046461463],[0.025116860866547,0.048970676958561,0.045755505561829],[0.051278010010719,0.011637662537396,0.0038361528422683]],[[5.3665644372813e-07,-0.011150938458741,-0.033823113888502],[0.041097700595856,-0.0001259358250536,0.0080561703070998],[0.036230124533176,-0.047344658523798,0.019430760294199]],[[-0.069995723664761,0.074045151472092,0.0010897119063884],[-0.011858643963933,-0.068098641932011,0.11251194775105],[0.039087299257517,-0.052877955138683,0.062607750296593]],[[0.013049617409706,-0.08285566419363,-0.00045348194544204],[0.041564781218767,-0.072612568736076,0.004339998587966],[-0.0045170933008194,0.089779011905193,-0.025572091341019]],[[-0.060722962021828,-0.00038154251524247,0.078594565391541],[-0.039615362882614,-0.0095305684953928,-0.0049116844311357],[0.0076543963514268,0.011884352192283,-0.0035517786163837]],[[0.064611203968525,-0.0096747232601047,-0.03761824592948],[-0.062693201005459,0.012101330794394,0.005710281431675],[-0.028545385226607,0.0023021243978292,0.11535815894604]],[[0.025288978591561,-0.078780524432659,-0.012514148838818],[-0.028981760144234,0.0068389070220292,0.041208993643522],[0.045799411833286,-0.059546764940023,0.022870518267155]],[[0.064177148044109,-0.01519912853837,0.017194829881191],[0.041480667889118,-0.03954016789794,-0.023361744359136],[-0.05098557844758,0.012195822782815,-0.012578497640789]],[[0.017895631492138,0.070604711771011,-0.0035721666645259],[-0.0038280428852886,0.0025511581916362,0.055339053273201],[0.039050366729498,0.065778501331806,0.053528655320406]],[[-0.11293764412403,-0.042912069708109,-0.01462959125638],[0.042576193809509,-0.032097514718771,-0.11143513023853],[-0.087604612112045,-0.0025155500043184,-0.088729918003082]],[[-0.062921606004238,-0.082972444593906,0.065187178552151],[0.029228050261736,-0.078642144799232,0.036163724958897],[0.044159512966871,0.038668628782034,-0.024921022355556]],[[-0.059324972331524,-0.037929121404886,-0.0092122834175825],[-0.020238442346454,-0.012812745757401,-0.019480785354972],[0.072818078100681,0.0073139127343893,0.032101843506098]],[[0.041689462959766,0.053404584527016,-0.04636999592185],[0.052580196410418,0.028138620778918,0.027142092585564],[0.031237158924341,0.028176531195641,0.013421223498881]],[[0.039303492754698,-0.077914595603943,0.0087606562301517],[-0.020273681730032,0.058556210249662,-0.043720971792936],[0.023520164191723,-0.025150366127491,0.039711985737085]],[[-0.0242073033005,0.032316096127033,0.023564539849758],[-0.02468891069293,0.0070106186904013,-0.020447207614779],[0.046166632324457,-0.017011009156704,-0.048332955688238]],[[-0.0061940914019942,-0.0028730970807374,0.048870217055082],[-0.013560912571847,-0.018294336274266,-0.027662908658385],[0.0079401563853025,-0.04071257263422,-0.019082523882389]],[[0.014480287209153,-0.009713432751596,-0.019480397924781],[-0.0087845576927066,0.028260638937354,-0.014619131572545],[-0.064243592321873,-0.032875388860703,-0.019333031028509]],[[-0.014005733653903,-0.0058774654753506,-0.01163581199944],[-0.046393174678087,0.012561765499413,0.050575572997332],[0.025779662653804,-0.02459423057735,-0.062530890107155]],[[0.077773302793503,0.020859943702817,-0.037452835589647],[0.096522264182568,-0.038731694221497,-0.075548887252808],[0.059732738882303,0.00033937647822313,-0.038032166659832]],[[0.023363633081317,-0.013877691701055,-0.068706206977367],[0.022082965821028,-0.027584299445152,0.058432310819626],[-0.037323340773582,0.0038922601379454,0.0070531400851905]],[[-0.036577679216862,0.054015338420868,-0.0077917128801346],[-0.058600820600986,-0.0047932690940797,-0.018199404701591],[0.025068955495954,0.047219187021255,-0.0042056040838361]],[[-0.0052208891138434,0.0055833836086094,-0.016884565353394],[-0.026009351015091,-0.012202559970319,0.021887548267841],[-0.010412942618132,-0.028805483132601,0.026013819500804]],[[-0.030124494805932,0.038296591490507,-0.040590919554234],[0.0085396217182279,-0.05099081993103,-0.013511087745428],[-0.011472889222205,0.036390211433172,0.033669997006655]],[[-0.01609018817544,0.0061128078959882,-0.053604513406754],[0.12045562267303,-0.014281686395407,0.012124952860177],[0.026747066527605,-0.021851370111108,-0.057662054896355]],[[0.0021353056654334,-0.037897083908319,-0.011846255511045],[-0.0073788119480014,-0.063349567353725,0.022843392565846],[0.074510306119919,0.011926233768463,-0.0085195461288095]],[[-0.026452736929059,0.012417564168572,-0.0079657388851047],[-0.0064646862447262,0.00039171893149614,-0.02658242918551],[0.039423059672117,0.007790909614414,-0.074235394597054]],[[0.00094639736926183,-0.043288815766573,-0.011022693477571],[0.035807259380817,0.025200566276908,0.015225095674396],[-0.012173730880022,0.037861436605453,-0.018216624855995]]],[[[-0.017713656648993,0.011240758933127,-0.050999119877815],[-0.0068001691251993,-0.0082111395895481,0.075681105256081],[0.057716906070709,0.00029212021036074,0.044251065701246]],[[-0.072317995131016,0.052981983870268,0.045941855758429],[0.0026839389465749,0.033572971820831,-0.029325326904655],[0.0078085446730256,0.02080774307251,-0.0046744705177844]],[[0.019094161689281,0.0050005526281893,-0.008638777770102],[0.031216319650412,0.028849519789219,-0.058594025671482],[0.040371101349592,0.0030943392775953,-0.01523772906512]],[[-0.052307482808828,0.035088241100311,0.0042979014106095],[0.014420486986637,-0.0094117047265172,0.010193389840424],[-0.0098936008289456,0.013345872052014,-0.027303686365485]],[[-0.060560680925846,-0.023061221465468,0.067126393318176],[0.057329662144184,0.12263076752424,-0.034120451658964],[0.0059392051771283,0.0092994514852762,-0.031946144998074]],[[-0.049282480031252,0.013738193549216,-0.015508452430367],[-0.033505022525787,-0.018104931339622,0.047267101705074],[0.044639855623245,0.045449983328581,0.022857025265694]],[[-0.036743249744177,0.051253449171782,0.017378246411681],[0.031055079773068,-0.031542256474495,-0.0076216165907681],[-0.062261965125799,0.078075855970383,0.028965769335628]],[[0.040996760129929,0.024039519950747,0.046295944601297],[-0.031087519600987,0.01069369725883,-0.005181887652725],[0.046457283198833,-0.11258787661791,-0.02018291130662]],[[-0.049343347549438,-0.00032517482759431,-0.020674550905824],[0.038042306900024,-0.007222339976579,0.11179356276989],[0.025984287261963,-0.051246415823698,0.038614720106125]],[[0.050884954631329,-0.084054492413998,-0.0038730532396585],[0.01539197191596,-0.0161939766258,0.0066447490826249],[0.0017495655920357,0.0022680961992592,0.0025862632319331]],[[-0.0054172459058464,-0.025793788954616,-0.027871860191226],[-0.012276802212,0.049391839653254,0.032906964421272],[0.0068346010521054,-0.013869664631784,0.10032384097576]],[[-0.065572641789913,-0.026015602052212,0.049384169280529],[-0.0042957817204297,-0.056785382330418,0.028052061796188],[0.04127661883831,0.090710051357746,0.0025257896631956]],[[-0.0028138179332018,-0.077336817979813,-0.015955563634634],[-0.027176419273019,0.033768888562918,0.074962913990021],[0.028347335755825,-0.011328953318298,-0.033688575029373]],[[-0.0056029600091279,-0.026001648977399,-0.080480359494686],[0.02588471584022,0.030613344162703,0.038050848990679],[0.0035829974804074,-0.027457863092422,0.017947675660253]],[[0.047001138329506,0.11497640609741,0.055634126067162],[0.043920312076807,-0.041355676949024,0.044837664812803],[-0.084667652845383,0.03838512673974,0.016503941267729]],[[0.042511180043221,0.01642943918705,0.0029947096481919],[-0.024014696478844,-0.0020813620649278,0.088920831680298],[-0.058110345155001,0.0075398632325232,-0.049476526677608]],[[0.053443647921085,0.014253075234592,-0.031809814274311],[-0.020656786859035,-0.016703635454178,-0.037884786725044],[0.046795383095741,0.0024918438866735,0.076489135622978]],[[0.042322620749474,0.016760433092713,0.016613384708762],[0.018995402380824,0.038700789213181,-0.01157162245363],[0.021162878721952,0.041185677051544,-0.0086171980947256]],[[0.04707994684577,-0.067990474402905,0.032666891813278],[-0.024483056738973,0.032383788377047,-0.012820559553802],[0.024601416662335,0.00053820660104975,-0.042071335017681]],[[-0.02623226121068,-0.030146099627018,-0.022528758272529],[0.037803661078215,-0.011662316508591,0.010786228813231],[0.013918223790824,0.025837562978268,0.016327643766999]],[[0.058506488800049,-0.024852607399225,-0.0042968690395355],[0.012724056839943,0.061762917786837,-0.0051423450931907],[-0.014526899904013,0.043304640799761,-0.040860861539841]],[[-0.00056288245832548,-0.004511418286711,-0.00053505558753386],[0.028836265206337,0.10389626771212,0.044164229184389],[0.053945641964674,-0.033467151224613,-0.11716110259295]],[[0.036383289843798,-0.042843502014875,0.0052515147253871],[0.0035651759244502,0.0090899951756001,-0.00231843162328],[-0.022818515077233,0.036638557910919,-0.013356558047235]],[[0.027417205274105,0.053255755454302,-0.029753554612398],[-0.086050428450108,0.02998130954802,0.04796614125371],[-0.089109435677528,-0.10486674308777,0.020054830238223]],[[0.068137317895889,-0.048242930322886,-0.024316105991602],[0.02418757788837,-0.0086428709328175,0.032845731824636],[0.021286876872182,0.025107240304351,0.053573735058308]],[[0.042585507035255,-0.018964134156704,-0.034922163933516],[0.034010238945484,0.056763667613268,0.06561990827322],[0.060672610998154,-0.021449936553836,-0.063900239765644]],[[-0.048708237707615,0.02817514911294,-0.057738918811083],[-0.019299365580082,0.043902192264795,-0.048251427710056],[-0.015235723927617,0.033991992473602,-0.010358930565417]],[[0.030495872721076,-0.040278788655996,-0.043201979249716],[0.022103918716311,0.092071630060673,-0.085019543766975],[-0.026500193402171,0.0052233315072954,0.024054734036326]],[[-0.02933506667614,-0.033607270568609,-0.028393717482686],[0.011712077073753,0.044750042259693,0.00043578259646893],[-0.010621759109199,0.027252323925495,0.017161460593343]],[[0.040343578904867,0.016575889661908,-0.014661304652691],[-0.050640743225813,0.066590510308743,-0.017978440970182],[0.0050922147929668,-0.049933731555939,0.0043241358362138]],[[-0.024704875424504,0.0096890823915601,0.023573724552989],[-0.047572884708643,0.038060672581196,0.031070042401552],[-0.024390429258347,0.081627577543259,-0.05988160893321]],[[-0.01542550791055,0.0052912151440978,0.049770083278418],[0.0064446898177266,0.048262529075146,0.020472623407841],[0.029884336516261,-0.009256481193006,0.0098804580047727]],[[0.014049030840397,0.04302466288209,0.0089414501562715],[0.0055098626762629,-0.00089565780945122,-0.046144831925631],[0.018189383670688,-0.055509462952614,-0.054091610014439]],[[-0.11231011897326,0.063351042568684,-0.032073121517897],[-0.039331868290901,-0.055844664573669,0.13265408575535],[-0.020224126055837,0.077946625649929,0.0015227663097903]],[[-0.092276453971863,0.035044804215431,-0.027244988828897],[0.077266126871109,0.004795772023499,0.10864916443825],[-0.011659906245768,-0.023077178746462,-0.087542332708836]],[[0.020143223926425,0.051807451993227,0.059685494750738],[0.00037417956627905,-0.032870482653379,0.035933695733547],[-0.016506506130099,-0.050883427262306,0.017511049285531]],[[0.0066403266973794,0.025562610477209,-0.018216609954834],[0.0027627206873149,-0.048679985105991,0.0048852418549359],[-0.054541610181332,-0.059968199580908,0.031559433788061]],[[-0.033356286585331,0.01517058070749,-0.070561297237873],[0.040588822215796,0.03701663389802,0.053279183804989],[-0.027708126232028,-0.047853600233793,-0.010757822543383]],[[0.029782520607114,-0.026489455252886,0.052458204329014],[0.027580147609115,-0.024279240518808,0.062548317015171],[0.034483220428228,0.053728129714727,0.0031554910819978]],[[-0.045861966907978,0.037024829536676,-0.051453489810228],[-0.022313350811601,0.017652090638876,-0.012993266806006],[0.0080648064613342,0.074680827558041,0.069513164460659]],[[0.054821986705065,-0.03909819200635,-0.020423982292414],[0.022157328203321,0.0026214725803584,0.019996980205178],[0.051081854850054,0.0095490459352732,0.041633848100901]],[[0.017330875620246,0.0027424953877926,0.038470704108477],[0.015110111795366,-0.031836945563555,-0.037388358265162],[-0.052493996918201,-0.018222203478217,0.053877100348473]],[[0.033977244049311,0.014087677933276,0.037647169083357],[0.019855450838804,0.0076926280744374,-0.047092672437429],[0.0048865242861211,-0.016250086948276,-0.0018544271588326]],[[-0.015415298752487,0.01324223075062,-0.021712942048907],[-0.016290171071887,-0.006039752624929,0.037547554820776],[-0.023336051031947,0.034458685666323,0.029680399224162]],[[0.017957525327802,0.035562198609114,0.028584042564034],[0.023753421381116,-0.021434901282191,-0.032337840646505],[0.044899221509695,0.0047997543588281,-0.0025546418037266]],[[0.031784679740667,0.0062626507133245,0.031985696405172],[-0.052467510104179,-0.040458377450705,0.014061870053411],[-0.0057660103775561,0.010625793598592,0.068231947720051]],[[-0.011765920557082,0.047142181545496,0.037555724382401],[-0.05715811625123,0.0080807814374566,0.069153822958469],[-0.036774564534426,0.025139428675175,-0.026731772348285]],[[-0.013838348910213,0.015962718054652,-0.060778323560953],[0.095905721187592,-0.05862819775939,0.025729006156325],[0.013253872282803,0.062581062316895,0.031762845814228]],[[0.0055875335820019,-0.016776999458671,-0.018863782286644],[-0.00151396705769,-0.0055730314925313,0.043416809290648],[-0.00061817251844332,0.014352472499013,0.040630679577589]],[[-0.0029189814813435,-0.016684858128428,-0.019953800365329],[0.056342799216509,0.072501175105572,-0.039877098053694],[0.056706592440605,-0.058304443955421,-0.02736728079617]],[[0.012464210391045,-0.0094582485035062,-0.0072639966383576],[-0.051892891526222,0.057389814406633,-0.0417122207582],[0.0030309946741909,0.10935662686825,-0.030857188627124]],[[-0.075679324567318,0.023301754146814,-0.050600238144398],[0.047373000532389,-0.021894870325923,0.0620037317276],[-0.089673608541489,-0.023040309548378,0.048221025615931]],[[-0.035644173622131,-0.022892370820045,-0.01712366566062],[0.065285816788673,0.050587698817253,0.035473562777042],[-0.035579226911068,-0.0069594327360392,0.0029289482627064]],[[0.0080536352470517,0.0048771337606013,0.052778445184231],[-0.036574263125658,-0.030672263354063,0.048755306750536],[0.046608865261078,-0.017826169729233,-0.042839203029871]],[[0.046980187296867,0.0064367195591331,-0.023320805281401],[-0.033934619277716,-0.057176634669304,-0.047360591590405],[-0.027174768969417,0.042997185140848,0.065374098718166]],[[0.04042362421751,0.0055603794753551,-0.024058111011982],[0.0056674620136619,-0.051336009055376,0.046049360185862],[0.052950199693441,-0.007076954934746,0.050758194178343]],[[-0.078097268939018,-0.0063455086201429,0.062986701726913],[-0.009007653221488,0.039830096065998,-0.061401005834341],[-0.0095870075747371,0.0249004047364,0.033854849636555]],[[-0.018591672182083,0.046229284256697,-0.016668632626534],[-0.046726182103157,0.044195435941219,0.017727967351675],[0.064126014709473,0.037770051509142,0.032809257507324]],[[-0.035048726946115,0.045744847506285,0.00074503710493445],[0.044237297028303,0.040300186723471,0.011760559864342],[0.072993472218513,0.049303226172924,-0.047838244587183]],[[0.028719160705805,0.0039215534925461,0.035882785916328],[0.011328414082527,-0.065175205469131,0.019104454666376],[-0.0514553822577,0.0073042367585003,-0.0015017049154267]],[[-0.0087874159216881,0.095619954168797,0.010666898451746],[0.08403043448925,-0.028552766889334,-0.010777655988932],[-0.013034703209996,-0.0083762556314468,0.0070823593996465]],[[0.0016276463866234,0.024266453459859,-0.0016551447333768],[-0.017916660755873,-0.015730822458863,-0.019270541146398],[0.035613536834717,-0.09570799022913,-0.04329452291131]],[[0.0028242359403521,7.3703748057596e-05,0.065870508551598],[0.0097804851830006,0.028533419594169,-0.007239667698741],[0.05151005834341,0.034177619963884,0.011992014944553]],[[0.0086272852495313,-0.016894979402423,0.0028534221928567],[-0.080192245543003,-0.025585008785129,-0.020014185458422],[0.082137890160084,-0.013254729099572,0.044410392642021]],[[-0.0042300000786781,0.047119960188866,0.065790377557278],[-0.016166606917977,-0.027717757970095,-0.043756857514381],[0.011805731803179,-0.00014809051936027,0.026419753208756]],[[-0.0051399278454483,-0.063486613333225,0.010683231055737],[0.043041467666626,-0.0056088767014444,-0.00073272344889119],[0.025691008195281,0.038535427302122,0.05404956638813]],[[-0.059525329619646,-0.027447124943137,-0.024381518363953],[0.078260414302349,0.0070332852192223,0.01419591717422],[-0.038879990577698,0.0048942314460874,0.072982922196388]],[[-0.035142846405506,-0.028113083913922,0.0059959958307445],[0.075745411217213,0.048862721771002,-0.031899847090244],[0.041487541049719,-0.017290633171797,0.019020488485694]],[[0.040301505476236,-0.019043158739805,-0.037546839565039],[-0.029285598546267,0.01230205129832,0.026504436507821],[0.072417750954628,0.036389496177435,0.047747880220413]],[[0.019984893500805,-0.0078883366659284,-0.009812930598855],[-0.011586199514568,0.092933781445026,-0.02902065590024],[-0.00093297229614109,0.04801357164979,-0.033609971404076]],[[0.031196715310216,-0.015808822587132,0.041581064462662],[-0.011484165675938,-0.021349666640162,-0.016695700585842],[0.053750198334455,0.04837004840374,-0.031448666006327]],[[-0.043567568063736,0.028947088867426,0.075013041496277],[0.020334923639894,0.03836328536272,0.019905155524611],[-0.036494411528111,-0.026015244424343,-0.032057270407677]],[[0.062386211007833,0.044316150248051,-0.037340972572565],[-0.001860631396994,0.0054458663798869,0.0026051281020045],[0.017063096165657,0.044683691114187,-0.010964128188789]],[[-0.058241944760084,0.033621773123741,-0.020436719059944],[0.062429469078779,-0.010681656189263,-0.016308983787894],[0.014682475477457,-0.010853156447411,0.023291209712625]],[[-0.049867693334818,-0.010507869534194,0.038669843226671],[0.027816090732813,-0.03067734092474,0.029277170076966],[-0.015722919255495,0.047336392104626,0.0026548511814326]],[[0.048389784991741,-0.01732187718153,-0.02153561078012],[-0.031606424599886,0.017897825688124,-0.069616809487343],[0.015196580439806,0.065281853079796,0.00046903206384741]],[[-0.023790758103132,0.009318970143795,-0.012792107649148],[-0.011994454078376,0.03732667863369,0.008315802551806],[0.037982415407896,-0.018551912158728,-0.070356100797653]],[[0.0055548278614879,-0.00059836858417839,-0.027570180594921],[0.056956071406603,0.0088803377002478,-0.031019447371364],[0.050111550837755,-0.014055668376386,0.0059666479937732]],[[0.043128471821547,-0.00018405792070553,-0.017007790505886],[0.0029983446002007,0.047221839427948,0.0074887471273541],[-0.034244950860739,0.010017770342529,-0.038798499852419]],[[0.080234289169312,-0.10131247341633,-0.024959772825241],[0.039259184151888,0.015306668356061,0.017516501247883],[0.044066864997149,-0.018674859777093,0.0058258902281523]],[[0.033274494111538,-0.0017584587913007,-0.03223730251193],[0.009236847050488,0.008656594902277,-0.018040804192424],[0.025644099339843,0.0072201769798994,0.051547408103943]],[[-0.071068853139877,0.038778454065323,0.0034689160529524],[-0.05839866027236,-0.033212821930647,0.032215315848589],[0.027389973402023,-0.019583821296692,0.059230819344521]],[[-0.0035773429553956,-0.032281812280416,-0.0296795014292],[0.064201802015305,-0.021162642166018,0.071936875581741],[-0.039952415972948,0.071069374680519,0.0077792992815375]],[[0.087818183004856,0.0029394887387753,-0.037874538451433],[-0.031444765627384,0.027217974886298,0.017361875623465],[-0.00064526818459854,-0.004468331579119,0.0053806845098734]],[[-0.02155370824039,0.012310641817749,0.09270254522562],[-0.067017324268818,-0.046245984733105,0.010366738773882],[0.021505249664187,-0.072978273034096,0.10197484493256]],[[-0.023185018450022,-0.051725294440985,0.007005738094449],[0.022412037476897,0.047112252563238,-0.065479353070259],[-0.023893494158983,0.036851171404123,0.031511817127466]],[[-0.0041835773736238,-0.028028337284923,-0.051605504006147],[-0.040742430835962,-0.087227657437325,-0.0092740785330534],[0.044764786958694,0.11528407037258,0.007271274458617]],[[-0.0062115313485265,-0.0072471974417567,-0.019552238285542],[-0.054431285709143,-0.063223443925381,0.025016920641065],[0.070940524339676,0.058339606970549,-0.0068172509782016]],[[-0.018801802769303,-0.075107753276825,0.0059705786406994],[0.075886011123657,0.007418432738632,0.026787519454956],[0.020219558849931,-0.021124085411429,-0.028127504512668]],[[-0.029221331700683,0.013281692750752,-0.015228525735438],[-0.053369782865047,0.019290836527944,-0.0052428371272981],[-0.077438324689865,0.079685941338539,0.062377531081438]],[[0.046091269701719,-0.024062732234597,0.024623623117805],[-0.020622335374355,-0.031621772795916,0.030948292464018],[0.0049351644702256,0.035008139908314,-0.01609762199223]],[[-0.0048655937425792,0.073545105755329,-0.013206264935434],[-0.042637765407562,0.038383804261684,0.066199541091919],[0.0025510578416288,0.069145068526268,0.028378415852785]],[[0.094269320368767,-0.023472076281905,0.040779512375593],[-0.0050254901871085,-0.014844560064375,-0.022090895101428],[0.018816102296114,0.022311814129353,0.034810923039913]],[[-0.0056480648927391,0.0088855158537626,0.053114589303732],[0.0010828592348844,0.022110793739557,-0.068723641335964],[0.085817947983742,0.02112322486937,0.012131885625422]],[[0.020045125856996,0.048554658889771,-0.038092363625765],[-0.044935882091522,0.016208149492741,0.078464344143867],[0.026508925482631,-0.0006190039566718,-0.014240015298128]],[[0.05093751475215,-0.017345406115055,0.016054213047028],[-0.040311098098755,0.0087761925533414,0.053574740886688],[-0.010733270086348,0.047376498579979,-0.0025733734946698]],[[0.025051364675164,0.094427928328514,-0.053409159183502],[0.056958012282848,-0.03489950671792,0.020453995093703],[0.033951431512833,-0.040439821779728,-0.012627725489438]],[[0.022064233198762,0.014249920845032,-0.028934022411704],[0.0290188472718,0.00927709415555,-0.03309329226613],[0.068499907851219,0.048880752176046,-0.018206834793091]],[[0.02455467171967,0.0036928690969944,0.0018469122005627],[0.047999538481236,-0.018738701939583,0.082531906664371],[0.049410194158554,0.021240411326289,-0.075026959180832]],[[-0.017176922410727,-0.025586158037186,0.036296702921391],[-0.0037856851704419,0.046298816800117,0.023548787459731],[0.089021064341068,-0.072544924914837,-0.0097810821607709]],[[0.048153661191463,-0.062936574220657,-0.050226427614689],[0.052051987498999,0.020783320069313,-0.021989177912474],[0.025935588404536,-0.025809800252318,0.034553356468678]],[[0.013836083002388,-0.033065412193537,-0.013554114848375],[-0.033012360334396,-0.036481201648712,-0.02154078707099],[0.014368190430105,0.072426989674568,0.033917803317308]],[[0.0079361125826836,0.022988777607679,0.043030302971601],[0.029440296813846,-0.083248347043991,0.070282027125359],[-0.019665487110615,-0.016949880868196,-0.024253400042653]],[[-0.043966595083475,-0.037939183413982,0.067437447607517],[-0.042421668767929,0.060079872608185,-0.03832283616066],[0.030947860330343,-0.088375486433506,0.052095364779234]],[[0.031599096953869,-0.01333627011627,-0.031087506562471],[-0.030451592057943,0.013164697214961,0.094206288456917],[-0.048500917851925,0.031319838017225,-0.063053093850613]],[[-0.0046375272795558,-0.057399615645409,0.0020014992915094],[0.045350801199675,-0.0027181757614017,0.071092143654823],[-0.075081944465637,0.011432983912528,0.034459754824638]],[[-0.067517168819904,0.063207998871803,-0.0759107619524],[-0.041248273104429,-0.034470081329346,-0.017479382455349],[0.0037272768095136,0.054857343435287,0.0071924687363207]],[[-0.013254983350635,0.014103492721915,-0.017287878319621],[-0.0023870246950537,0.064602598547935,-0.013955521397293],[0.0034037062432617,-0.033862765878439,0.063728965818882]],[[0.073913000524044,-0.014831784181297,0.016644936054945],[-0.081672549247742,0.021118948236108,-0.070043317973614],[-0.016490304842591,0.02434641495347,0.07426156103611]],[[0.063161365687847,0.038088135421276,-0.015558796003461],[0.018158653751016,0.016320284456015,0.06112452968955],[-0.0064072040840983,0.10476816445589,0.032878093421459]],[[0.06345134973526,-0.050529930740595,-0.033812064677477],[-0.069201871752739,-0.076003737747669,0.029823886230588],[-0.004226051736623,-0.030315717682242,-0.013906340114772]],[[0.084500581026077,-0.014275891706347,-0.032655004411936],[-0.00024164792557713,-0.067235447466373,0.016792522743344],[0.036036495119333,-0.019924422726035,0.022340072318912]],[[-0.064425744116306,-0.00076254730811343,0.071608856320381],[-0.067800305783749,0.067256301641464,-0.008094017393887],[0.0057337409816682,-0.037228904664516,0.022776979953051]],[[0.058084923774004,0.020985597744584,-0.028141221031547],[0.046716038137674,0.01860729791224,-0.11109442263842],[0.04568687453866,0.068229183554649,0.0155612770468]],[[-0.030646620318294,-0.045160748064518,-0.042327728122473],[0.010126281529665,-0.035756390541792,0.079999849200249],[-0.0085778031498194,0.067221455276012,0.041956547647715]],[[0.026148607954383,0.031834032386541,-0.024284478276968],[-0.015355584211648,0.01576067134738,-0.029839774593711],[0.01513909175992,0.080307289958,-0.043364908546209]],[[0.04662149772048,-0.0083685964345932,-0.036406472325325],[-0.0035563523415476,-0.009613037109375,0.0087546622380614],[0.093283295631409,0.0050914944149554,0.080586217343807]],[[0.073522686958313,-0.0067552621476352,-0.018547715619206],[-0.025821650400758,0.035641353577375,0.013278660364449],[0.019719511270523,0.010157915763557,-0.045874364674091]],[[-0.045564748346806,0.026888182386756,0.024496451020241],[0.0062626134604216,-0.036501530557871,-0.023380849510431],[0.069813966751099,-0.0232815425843,0.018202390521765]],[[-0.028974426910281,-0.0058499705046415,-0.023948356509209],[-0.046377591788769,-0.15242375433445,0.026120491325855],[0.037888668477535,-0.067706398665905,-0.032757844775915]],[[-0.037138201296329,0.013437769375741,0.063824616372585],[-0.0961047783494,-0.020110877230763,-0.034209027886391],[-0.0071367206983268,-0.0066956607624888,0.024458549916744]],[[0.016825249418616,0.0063567464239895,-0.078160531818867],[0.039699848741293,0.025537945330143,-0.062615059316158],[0.0055515323765576,0.01145027577877,-0.042650159448385]],[[-0.037924617528915,-0.015502465888858,0.014548135921359],[-0.019455412402749,0.04260316863656,-0.0054654330015182],[0.048176642507315,-0.014169882051647,-0.025012684985995]],[[0.066700294613838,-0.015648383647203,0.083167195320129],[-0.025956429541111,0.0024575358256698,-0.060256782919168],[0.0047091129235923,0.050267241895199,-0.030529908835888]],[[0.035797100514174,0.023076191544533,0.016798598691821],[0.082725815474987,-0.081136412918568,-0.043150261044502],[0.094468668103218,0.0078309066593647,-0.0076203565113246]],[[0.0075695966370404,0.01064554322511,0.059947814792395],[-0.05003635212779,-0.01048778090626,0.059958942234516],[0.040950801223516,-0.08778889477253,-0.0081391436979175]],[[-0.0036403983831406,-0.024941427633166,-0.027408704161644],[0.038876410573721,-0.039023742079735,0.031594306230545],[0.045218870043755,-0.019371371716261,0.032663602381945]],[[-0.016173169016838,0.0016854641726241,0.076188586652279],[-0.026278095319867,-0.0082843024283648,0.034737434238195],[0.077691614627838,-0.096505150198936,0.0072979484684765]]],[[[-0.035088289529085,-0.013018161058426,0.019106702879071],[-0.03117585554719,-0.011172661557794,-0.014213765971363],[0.032366596162319,-0.028222443535924,-0.056317713111639]],[[0.045241974294186,0.027736196294427,-0.027062647044659],[0.0737399533391,-0.024834116920829,-0.034085523337126],[-0.041359815746546,0.029793746769428,-0.040615107864141]],[[-0.054514165967703,0.049403589218855,-0.039204578846693],[-0.050468575209379,0.06788644194603,-0.014962873421609],[-0.01666939817369,-0.030958099290729,-0.022066179662943]],[[0.009985470212996,0.018785091117024,-0.012572600506246],[0.0023453878238797,-0.057314161211252,-0.0034761985298246],[0.050116486847401,-0.0177255962044,-0.072259247303009]],[[-0.035532753914595,0.023828040808439,-0.028340285643935],[-0.016636623069644,-0.048218350857496,0.070408962666988],[-0.0077461232431233,-0.036294523626566,-0.0048569194041193]],[[-0.045200910419226,-0.051234625279903,-0.01805772818625],[-0.037275541573763,-0.033381432294846,0.034175284206867],[-0.14986452460289,-0.055638641119003,-0.056754384189844]],[[0.013730773702264,-0.034397963434458,0.0038756085559726],[-0.00067509867949411,0.027748815715313,0.008314985781908],[0.021963618695736,0.041194099932909,-0.034165151417255]],[[0.007848103530705,-0.019504936411977,0.019708812236786],[-0.025936072692275,0.16498664021492,-0.047640290111303],[-0.023122474551201,-0.01216443348676,0.003723873058334]],[[0.032562877982855,-8.6066123913042e-05,0.090709574520588],[-0.042683463543653,0.0098258517682552,-0.011791897937655],[-0.050196681171656,-0.0023321120534092,0.042078264057636]],[[-0.014895186759531,-0.11527704447508,0.053981602191925],[-0.097973398864269,-0.10427701473236,0.075582355260849],[0.011907139793038,0.01740743406117,-0.11000139266253]],[[-0.033040151000023,0.029017895460129,0.018292048946023],[0.015314012765884,-0.0074039418250322,-0.039639391005039],[0.0036122426390648,-0.014138382859528,-0.010633491910994]],[[-0.049988895654678,0.015055321156979,0.082667887210846],[-0.045707114040852,0.017953496426344,-0.10995941609144],[0.012677993625402,0.04359333217144,0.039873477071524]],[[-0.018548807129264,-0.01112282089889,-0.04430515691638],[-0.035221822559834,0.0094461366534233,-0.012961056083441],[0.055299989879131,0.054432436823845,0.052848268300295]],[[0.010366055183113,0.075948022305965,-0.025243537500501],[0.052064698189497,-0.016628880053759,-0.071904063224792],[0.048915714025497,-0.041141290217638,0.014175717718899]],[[-0.11962357163429,0.0011537437094375,-0.06070314347744],[0.016622910276055,0.066817283630371,-0.073493495583534],[-0.094775542616844,-0.010375333949924,0.0058708759024739]],[[0.0011370130814612,-0.0097166104242206,-0.047007601708174],[-0.0027309071738273,-0.0067247501574457,-0.055116534233093],[-0.0085174730047584,0.030817292630672,-0.029252102598548]],[[-0.019809067249298,-0.013683533295989,0.024177830666304],[-0.013274242170155,-0.021761532872915,0.021269140765071],[0.022999273613095,-0.01508445199579,-0.032983146607876]],[[-0.022529957816005,0.05927887186408,0.0091141005977988],[0.031019985675812,0.016820002347231,-0.0012831945205107],[0.035503029823303,-0.02493355050683,-0.014223537407815]],[[-0.017248371616006,-0.031373277306557,0.028082625940442],[-0.070092990994453,-0.010534188710153,-0.038438271731138],[-0.051433328539133,-0.015643259510398,-0.062683336436749]],[[0.0045757470652461,-0.00096396252047271,-0.024728652089834],[0.02602163515985,0.073394469916821,0.036685872823],[-0.054883405566216,0.014822866767645,-0.038457412272692]],[[0.0428586602211,-0.002915043849498,-0.072662480175495],[-0.018521156162024,-0.017361139878631,-0.010118798352778],[-0.014696161262691,-0.059820763766766,0.03914811834693]],[[0.015742741525173,-0.053233984857798,-0.095084682106972],[-0.012271848507226,-0.0061817518435419,-0.015690702944994],[-0.012281225062907,-0.016589846462011,0.042122427374125]],[[-0.053545143455267,-0.068702921271324,-0.047847501933575],[0.018609458580613,-0.077644839882851,-0.0008675692952238],[-0.011603904888034,-0.087819918990135,0.028386045247316]],[[-0.001515319221653,-0.012984806671739,-0.0049880556762218],[-0.021519176661968,-0.021998861804605,-0.025248909369111],[0.014985148794949,-0.041240368038416,0.034092526882887]],[[0.075942672789097,-0.041121859103441,-0.045272503048182],[-0.084633909165859,0.03190840035677,0.07431598752737],[0.0046169920824468,-0.028685200959444,0.029950853437185]],[[-0.029799949377775,0.042182862758636,0.0023966000881046],[0.025083875283599,0.039737768471241,0.034557070583105],[0.013424916192889,-0.064474813640118,0.025855729356408]],[[0.052025724202394,-0.044261939823627,-0.0046379999257624],[0.021954691037536,-0.0076769376173615,-0.13251325488091],[-0.019647408276796,-0.016245450824499,0.046155616641045]],[[0.0056028966791928,-0.020388571545482,0.040649320930243],[0.022473454475403,-0.048019748181105,0.017864057794213],[0.0079911733046174,-0.03612993657589,-0.084670498967171]],[[-0.071858391165733,0.047268353402615,-0.027930270880461],[0.02746769785881,-0.061618205159903,0.030561910942197],[-0.00034714682260528,0.011384571902454,-0.038513768464327]],[[-0.046460412442684,0.032091081142426,-0.045014157891273],[-0.017329484224319,-0.074303790926933,-0.024430198594928],[0.028196347877383,0.021510845050216,0.050189778208733]],[[-0.016565404832363,-0.023573758080602,0.027800228446722],[-0.060760840773582,-0.021144242957234,-0.054034296423197],[-0.08632855117321,-0.024289902299643,0.10113523900509]],[[-0.050821658223867,-0.040372341871262,-0.026317927986383],[0.0054162484593689,-0.07250103354454,-0.014726949855685],[-0.039469491690397,-0.0026042587123811,0.022611962631345]],[[-0.10111951082945,0.010431334376335,0.0044984212145209],[0.033173236995935,-0.00066793576115742,-0.050369136035442],[-0.011591079644859,0.061530161648989,0.0060275662690401]],[[-7.2511575126555e-05,0.03848035261035,-0.032119266688824],[0.03818840906024,0.031273044645786,-0.078650943934917],[-0.048959095031023,-0.0062532303854823,0.020173197612166]],[[0.028437770903111,-0.014899921603501,-0.021230982616544],[-0.090516425669193,0.060041036456823,0.030164102092385],[0.011997615918517,0.057526551187038,0.09002199023962]],[[0.082336880266666,0.036167751997709,-0.073076106607914],[-0.031865641474724,-0.025100994855165,-0.02434248290956],[0.027606820687652,0.030057970434427,-0.029410405084491]],[[-0.034578014165163,0.030277766287327,0.024159323424101],[0.011247825808823,0.0041417335160077,-0.011757689528167],[-0.022031113505363,0.005491494666785,0.044987414032221]],[[0.0027096760459244,0.013659321703017,-0.045521602034569],[-0.053754117339849,-0.035444252192974,-0.030787019059062],[0.027923982590437,-0.015909481793642,0.084047764539719]],[[-0.020783895626664,-0.059362977743149,0.010717837139964],[0.016263101249933,-0.010354136116803,0.041889354586601],[0.015666913241148,0.068630434572697,-0.016991954296827]],[[0.022413363680243,-0.034750696271658,0.036426305770874],[-0.057714141905308,-0.030978254973888,-0.055685341358185],[0.026544101536274,0.010295037180185,-0.019249258562922]],[[0.00036009072209708,0.013195740990341,-0.0061514815315604],[-0.0093453833833337,-0.0010387586662546,-0.0021781728137285],[-0.018033400177956,0.0041406047530472,0.014106318354607]],[[0.037829715758562,-0.0096659399569035,-0.0015223470982164],[-0.019330479204655,0.0095886252820492,-0.05121586099267],[0.0038532193284482,0.028549892827868,0.015092761255801]],[[-0.04616317898035,0.072276525199413,-0.056255828589201],[0.0017226571217179,-0.055486124008894,0.043342176824808],[0.0073470328934491,-0.039604019373655,0.024210769683123]],[[0.021828502416611,0.04975376650691,-0.04032976180315],[-0.064979560673237,0.0012209400301799,-0.058814872056246],[0.023690598085523,-0.0047149113379419,-0.0082752350717783]],[[0.049555741250515,-0.0078887669369578,-0.025456229224801],[-0.0014490236062557,-0.076832793653011,0.045223645865917],[-0.031290531158447,-0.036545865237713,0.024403549730778]],[[-0.10081604868174,-0.0046055251732469,-0.042773440480232],[0.0036010362673551,-0.05305864289403,0.059902928769588],[-0.053000804036856,0.012949379161,0.035608373582363]],[[-0.0022624437697232,-0.061649821698666,0.0062954719178379],[0.0094056706875563,0.024725303053856,-0.041304614394903],[-0.015444567427039,0.026285158470273,-0.017387997359037]],[[-0.0256636608392,-0.056306153535843,0.012394078075886],[0.053027607500553,0.020371194928885,0.068356327712536],[-0.0015504172770306,0.0058913649991155,-0.022291598841548]],[[0.013340213336051,-0.072855785489082,0.046422462910414],[-0.02622383274138,-0.069420523941517,0.052919372916222],[0.0847257822752,-0.081773690879345,-0.061710305511951]],[[0.0030364072881639,0.016822556033731,-0.038915496319532],[0.080712035298347,-0.074083514511585,0.036455899477005],[0.006654882337898,0.025110522285104,0.031256698071957]],[[-0.0089890975505114,-0.030555309727788,-0.058010693639517],[0.054059095680714,0.030648484826088,0.012412055395544],[0.010706780478358,-0.095751568675041,-0.072762288153172]],[[0.057575110346079,0.042810842394829,-0.054726276546717],[-0.019441610202193,0.0072164814919233,-0.086789444088936],[0.021992707625031,-0.017370095476508,0.011371388100088]],[[-0.0098583344370127,0.010231271386147,0.022381644695997],[-0.043981481343508,-0.0077869049273431,-0.036530070006847],[-0.027300577610731,0.0099439863115549,-0.020564014092088]],[[0.012859615497291,-0.066455274820328,-0.0072253891266882],[0.0022824646439403,-0.057363621890545,0.012382969260216],[-0.012183845974505,-0.030587384477258,0.005479690618813]],[[-0.082915164530277,0.026842311024666,0.014467800036073],[-0.04259705170989,0.020313061773777,0.018090445548296],[0.078117340803146,0.026673043146729,-0.043215569108725]],[[-0.013195391744375,-0.043343003839254,0.030969569459558],[-0.073694549500942,-0.011238482780755,0.058432955294847],[-0.028848906978965,0.0054214466363192,-0.050611428916454]],[[-0.0014924539718777,-0.01455812714994,-0.0013828023802489],[0.12193283438683,-0.022597558796406,-0.018944151699543],[0.032696928828955,-0.036709111183882,-0.014954592101276]],[[0.021443599835038,0.014836646616459,-0.017413578927517],[-0.064999811351299,-0.039010051637888,-0.021754620596766],[-0.047789365053177,0.010944278910756,0.007947419770062]],[[0.033147942274809,0.037441160529852,-0.081701934337616],[0.029603375121951,-0.010020839050412,0.0274369828403],[0.022356759756804,0.01675920933485,0.032795995473862]],[[0.024160111322999,-0.03308767452836,-0.042143784463406],[0.0049827434122562,-0.039321616292,0.062228441238403],[-0.01682167686522,-0.026200512424111,-0.12802688777447]],[[-0.0058393883518875,-0.062109664082527,-0.049135450273752],[-0.076460532844067,-0.020770590752363,-0.027528019621968],[0.044025395065546,-0.011987132951617,-0.07641912996769]],[[0.11993800848722,0.0051287715323269,-0.056394960731268],[0.0058591836132109,-0.019976668059826,0.014746399596334],[-0.0082762008532882,-0.073709353804588,0.03792617842555]],[[0.041110228747129,0.06682388484478,0.0091666653752327],[-0.0046009249053895,-0.064695715904236,-0.090317785739899],[-8.4421233623289e-05,-0.006748360581696,0.019155502319336]],[[-0.057339768856764,0.016990812495351,0.0076059112325311],[-0.0078347269445658,0.04385893791914,0.0087055061012506],[0.032286088913679,-0.0038166525773704,-0.042986121028662]],[[-0.067972205579281,-0.033081710338593,-0.070164829492569],[-0.064918883144855,0.019707227125764,0.017969543114305],[0.059917639940977,-0.022550851106644,-0.016378987580538]],[[0.077628500759602,-0.040925223380327,0.048724543303251],[0.045118063688278,-0.01744151301682,-0.029277944937348],[0.013657461851835,0.039634149521589,-0.0038048478309065]],[[0.017370939254761,-0.073660522699356,0.010024706833065],[-0.085064128041267,0.012553856708109,0.0062423101626337],[0.014525749720633,-0.054390873759985,-0.0067230393178761]],[[-0.038412529975176,-0.05175942927599,0.0021148903761059],[-0.015525485388935,0.032864782959223,-0.02304282784462],[-0.034678649157286,0.035502344369888,-0.035946052521467]],[[-0.070460483431816,0.041044108569622,-0.061401773244143],[0.045102849602699,-0.025351518765092,-0.021866209805012],[0.073368579149246,-0.06872271746397,-0.03129155933857]],[[-0.038235329091549,0.023586390540004,0.012660096399486],[-0.016236905008554,-0.006998754106462,-0.0020473087206483],[0.03854301944375,-0.039689972996712,0.0096959434449673]],[[0.024432860314846,0.01488720625639,0.019295388832688],[0.045357711613178,-0.061135061085224,0.036138091236353],[-0.048637997359037,0.028004035353661,-0.0098329996690154]],[[-0.018200907856226,-0.023951530456543,-0.096009932458401],[-0.048901159316301,0.067322038114071,-0.032995957881212],[-0.079391591250896,0.048415590077639,-0.081840097904205]],[[-0.031360451132059,0.065937668085098,-0.0046095540747046],[-0.043344404548407,0.065070286393166,-0.0077997171320021],[0.059050779789686,-0.0035011803265661,0.0043409750796854]],[[-0.057274449616671,0.0054024490527809,-0.040131740272045],[-0.001756334444508,-0.024003624916077,-0.019471015781164],[-0.056417357176542,-0.024975433945656,-0.00065497460309416]],[[-0.092385463416576,-0.031693533062935,-0.035155061632395],[-0.011081618256867,-0.033947996795177,-0.029162794351578],[0.029960513114929,-0.057918068021536,-0.0079291006550193]],[[-0.04578273370862,0.035180650651455,0.0059485631063581],[0.01411931309849,-0.044369265437126,-0.013867674395442],[-0.013248479925096,-0.067914061248302,-0.040923725813627]],[[-0.014748285524547,0.028651254251599,0.026470834389329],[-0.026200009509921,-0.02099577896297,-0.0057247583754361],[0.066067285835743,0.01448308583349,0.0126490322873]],[[0.022394724190235,0.017628338187933,0.038019649684429],[-0.036999020725489,-0.062811225652695,0.058842025697231],[-0.056502494961023,-0.057462401688099,-0.0063694105483592]],[[-0.034973103553057,0.028458258137107,0.0017305561341345],[0.035682834684849,-0.015570712275803,-0.0081247026100755],[-0.046203199774027,-0.0010049741249532,-0.02759669534862]],[[0.052189953625202,-0.033366344869137,0.00068667827872559],[0.021449269726872,0.02008511684835,-0.06801100820303],[0.032186660915613,-0.020117357373238,-0.030600644648075]],[[-0.068372637033463,0.011133842170238,-0.029870968312025],[-0.01010234747082,-0.018532587215304,0.027514277026057],[-0.056177232414484,-0.008019357919693,0.00096196646336466]],[[-0.0049047684296966,0.043400172144175,-0.049398396164179],[0.01372286863625,0.062417678534985,-0.012784525752068],[0.014347728341818,0.003425148781389,-0.0091538857668638]],[[-0.013614513911307,-0.061944600194693,-0.059762571007013],[-0.022981956601143,-0.011412463150918,0.02758982218802],[-0.016823627054691,-0.061057418584824,-0.0029143560677767]],[[-0.051758326590061,0.061687335371971,-0.055223546922207],[-0.035686030983925,0.0031325165182352,0.0064102620817721],[0.0056486004032195,-0.077966287732124,-0.12188985943794]],[[-0.016482906416059,-0.0023344215005636,-0.016063898801804],[0.029295044019818,0.042002730071545,0.0024026955943555],[0.01789110340178,0.036725103855133,-0.0087990220636129]],[[-0.028895162045956,-0.07659012824297,0.11044203490019],[-0.033536836504936,-0.0078444732353091,-0.0054391720332205],[-0.042739115655422,0.0075030545704067,0.0096397465094924]],[[-0.0035274783149362,0.0037008819635957,0.010026983916759],[-0.016810093075037,0.024705439805984,0.030065286904573],[0.0073608355596662,-0.068783104419708,-0.012587998993695]],[[-0.036953255534172,-0.028948657214642,0.0054459027014673],[-0.0059987735003233,0.0052711339667439,0.034086443483829],[-0.055051017552614,-0.02784463763237,-0.079673819243908]],[[-0.010976229794323,0.028217103332281,0.045467600226402],[-0.029950989410281,-0.046497788280249,-0.013549133203924],[0.03196794167161,-0.0099545251578093,0.035277251154184]],[[0.036320801824331,-0.035138320177794,0.010388457216322],[0.030425429344177,-0.054407000541687,0.0278598703444],[0.071613572537899,0.032779932022095,-0.0026288656517863]],[[-0.011445296928287,-0.082603566348553,-0.062712080776691],[0.018118849024177,0.047472175210714,-0.0041354899294674],[-0.049308300018311,0.029015572741628,0.016201263293624]],[[-0.083942554891109,-0.011099115945399,-0.078270077705383],[-0.064516566693783,0.011891010217369,0.0045778304338455],[0.025092313066125,-0.039077993482351,-0.080941624939442]],[[0.023202028125525,-0.0051062870770693,-0.09237851947546],[0.041030183434486,-0.070248492062092,-0.027137788012624],[0.015965715050697,0.016781421378255,-0.063448943197727]],[[0.029353130608797,-0.04729463160038,0.0071598840877414],[-0.0065728640183806,-0.03962891921401,0.0016047175740823],[-0.020293487235904,-0.012224382720888,0.038276273757219]],[[-0.054089456796646,0.027471978217363,0.010077838785946],[-0.0073369075544178,-0.076222218573093,-0.038425836712122],[-0.0086685167625546,0.015037796460092,0.075068168342113]],[[0.023160800337791,-0.094514340162277,-0.024402059614658],[-0.015171301551163,0.016550309956074,-0.021303117275238],[-0.018985483795404,-0.05762554705143,0.021402193233371]],[[-0.012047183699906,0.0041111521422863,-0.066088296473026],[-0.015638308599591,-0.010735590942204,-0.030854685232043],[0.015785336494446,0.0028758435510099,-0.049504842609167]],[[0.0084020672366023,-0.018340980634093,-0.0097812889143825],[0.018751980736852,0.0070406929589808,0.0065478715114295],[-0.0081987911835313,-0.03642624989152,-0.010563635267317]],[[0.018965294584632,-0.010925076901913,0.0039588049985468],[-0.06346482783556,-0.014161734841764,-0.097532317042351],[-0.0051126251928508,-0.0049887453205884,-0.011233134195209]],[[0.041116435080767,-0.019747775048018,-0.035808578133583],[0.062099248170853,-0.0071572083979845,-0.017537435516715],[-0.014737415127456,0.020948508754373,0.040082450956106]],[[-0.028043309226632,0.0042784614488482,-0.013162079267204],[0.08414389193058,0.02803741954267,-0.064346738159657],[-0.041035462170839,-0.016166133806109,0.016380988061428]],[[-0.06564312428236,-0.028905652463436,-0.023148143664002],[0.01918420009315,-0.0079582463949919,-0.010932862758636],[-0.05793846026063,-0.082628048956394,-0.0042069042101502]],[[0.033663176000118,-0.055601075291634,-0.027087684720755],[0.017117461189628,-0.015725463628769,-0.014451975934207],[0.036098632961512,-0.0041492753662169,0.0053835962899029]],[[-0.087864704430103,-0.055400528013706,-0.018139772117138],[-0.042953133583069,0.017244318500161,0.022197326645255],[0.031203489750624,-0.038716953247786,0.0021857626270503]],[[-0.010762432590127,-0.082550026476383,-0.074767731130123],[-0.024139495566487,-0.038322277367115,0.030684312805533],[0.005178521387279,0.0015531345270574,-0.02796334400773]],[[-0.026702901348472,-0.13190951943398,-0.050038132816553],[0.032800029963255,-0.045740250498056,0.026874827221036],[0.03167887404561,0.0174341481179,0.021516999229789]],[[0.0037621934898198,0.0588792078197,-0.005363336764276],[0.049450792372227,0.0015489734942093,-0.046305179595947],[-0.053801368921995,0.088809236884117,-0.052066594362259]],[[0.019373867660761,-0.02161356434226,0.02673520706594],[-0.0012114627752453,0.023527484387159,-0.047344762831926],[0.016619678586721,-0.073169998824596,0.023675158619881]],[[-0.095171734690666,-0.055240169167519,0.021856371313334],[-0.02752473577857,-0.017759939655662,0.058461282402277],[0.024044273421168,0.010267352685332,-0.044323742389679]],[[-0.010141817852855,0.022673573344946,-0.065686360001564],[0.054665330797434,-0.032584685832262,-0.0034394273534417],[0.012769867666066,-0.032551940530539,0.010883821174502]],[[-0.0078528737649322,0.008478513918817,0.04726604372263],[-0.035699915140867,-0.011851533316076,-0.0022659709211439],[0.0053412592969835,0.0031279125250876,-0.014220573939383]],[[-0.036904353648424,0.013177036307752,0.0056480919010937],[-0.035349365323782,-0.028518004342914,-0.014696592465043],[0.0031357121188194,-0.01410477142781,0.0015496007399634]],[[-0.07699666172266,-0.029995629563928,-0.029305312782526],[-0.018890472128987,-0.04309293627739,-0.015832332894206],[-0.025698591023684,0.018986599519849,-0.0067554847337306]],[[0.031433306634426,0.056000851094723,-0.063415452837944],[0.086119003593922,0.020229924470186,-0.061073403805494],[-0.029319651424885,0.038639333099127,0.021227452903986]],[[-0.037260856479406,0.058538157492876,0.010535279288888],[-0.047831270843744,0.056193243712187,-0.065730184316635],[-0.0120091708377,-0.079701714217663,0.064929887652397]],[[0.017392478883266,-0.010446401312947,-0.016248136758804],[0.036482576280832,0.014959707856178,0.0090250205248594],[0.027058526873589,-0.0044272290542722,0.055157028138638]],[[-0.015833154320717,-0.059183102101088,-0.0596614331007],[-0.013334025628865,-0.0090724118053913,0.040074449032545],[0.0084625715389848,-0.057715401053429,-0.011721225455403]],[[-0.052837729454041,-0.040894635021687,-0.0059026386588812],[0.012193945236504,-0.00052531540859491,0.015923865139484],[-0.029404511675239,-0.043444905430079,-0.02623269893229]],[[-0.0099430456757545,0.0082733985036612,-0.0093248328194022],[-0.077017322182655,-0.042684976011515,0.014829426072538],[-0.037110712379217,0.034580416977406,-0.0040111662819982]],[[0.0072321980260313,0.027028670534492,0.024071173742414],[0.0047584138810635,0.037182956933975,0.0066557354293764],[0.038133919239044,0.016338475048542,0.011561270803213]],[[-0.02433087863028,-0.029716175049543,0.0066113462671638],[-0.0052220020443201,0.032783772796392,-0.0048320381902158],[0.0039769560098648,0.022142296656966,-0.00058847456239164]],[[-0.069603212177753,-0.015469121746719,0.054021064192057],[-0.046161413192749,-0.011602724902332,-0.046043645590544],[-0.092885851860046,-0.022116808220744,-0.0048016994260252]],[[-0.04600453004241,-0.066187344491482,-0.015872353687882],[-0.075859375298023,0.010150787420571,0.050698202103376],[0.0014045649440959,0.014705804176629,0.037764277309179]],[[-0.041008308529854,-0.050929002463818,0.090315394103527],[-0.016635561361909,-0.031791217625141,0.0042767650447786],[-0.0054391585290432,-0.0057615418918431,0.0084795961156487]],[[0.00039220423786901,-0.058215353637934,-0.11874383687973],[0.056912183761597,-0.068444304168224,-0.05794195830822],[-0.014557383023202,-0.0090861897915602,-0.096731759607792]],[[-0.0059179584495723,-0.027045140042901,0.042598556727171],[-0.093123450875282,-0.056900504976511,0.087592601776123],[0.047634437680244,0.007038532756269,0.017822517082095]],[[0.073814131319523,0.029892884194851,-0.02839676477015],[0.0062539926730096,0.072063580155373,0.019286692142487],[-0.053768705576658,-0.027460049837828,-0.025705819949508]],[[0.073414705693722,-0.013067250140011,0.017253367230296],[0.022725319489837,-0.0095553854480386,-0.020224362611771],[-0.028805853798985,0.041274856775999,-0.054125692695379]]],[[[-0.10012127459049,0.01427735388279,0.026162270456553],[-0.031011277809739,0.04580244794488,0.0043504182249308],[0.063432984054089,0.008058987557888,0.018560035154223]],[[0.016765519976616,-0.013033461757004,-0.042825046926737],[0.0035486423876137,0.01699205301702,0.0093160700052977],[0.035470347851515,-0.025287361815572,-0.01735208556056]],[[-0.044603046029806,-0.010116375982761,-0.0070265475660563],[-0.038892690092325,0.047482240945101,0.045253209769726],[0.0041892062872648,0.012018982321024,-0.077021710574627]],[[0.052864819765091,-0.015519832260907,0.015836911275983],[-0.024683551862836,-0.01550420653075,-0.038099713623524],[-0.0047729727812111,-0.050593759864569,-0.0051572504453361]],[[0.0036972528323531,0.030426507815719,-0.040758203715086],[-0.014576138928533,0.038370452821255,0.050567146390676],[-0.075668156147003,-0.026164771988988,0.081982247531414]],[[0.013545777648687,0.025144347921014,0.0044804494827986],[0.0907137170434,-0.054722815752029,0.043420508503914],[0.035622112452984,0.053055960685015,0.039526101201773]],[[-0.028597109019756,0.12268202751875,0.010451523587108],[0.021840075030923,0.046849627047777,0.23979812860489],[-0.01820894703269,0.003669100580737,0.078726172447205]],[[0.017440691590309,-0.059225797653198,0.00066215934930369],[-0.036613248288631,-0.058864057064056,0.058699999004602],[0.022151250392199,-0.04357773438096,0.0957166031003]],[[-0.035125203430653,0.11642979830503,0.010040128603578],[-0.0037467307411134,-0.03205244615674,-0.015732580795884],[-0.040920659899712,0.040691956877708,0.017317248508334]],[[0.091191068291664,-0.034038744866848,0.12926234304905],[0.12048664689064,0.033092007040977,0.014464587904513],[-0.0055910237133503,0.10571722686291,0.14988276362419]],[[-0.022647986188531,-0.10713821649551,0.024138273671269],[0.064047187566757,-0.039513688534498,-0.004458527546376],[-0.057118099182844,-0.026763809844851,-0.028817906975746]],[[0.043023962527514,0.10050578415394,-0.016479546204209],[0.016601564362645,-0.048188958317041,0.0093425996601582],[-0.037934064865112,-0.016107197850943,0.016570303589106]],[[-0.027633560821414,0.092395834624767,-0.020990630611777],[0.044732920825481,0.053805362433195,0.030955664813519],[-0.037937503308058,-0.041048847138882,-0.099153228104115]],[[0.01898954436183,-0.0038726781494915,-0.096652090549469],[0.021873766556382,0.049199234694242,-0.067808151245117],[0.038600109517574,0.069332651793957,0.002434863941744]],[[-0.016994021832943,0.093622818589211,0.020727824419737],[0.11597531288862,0.041940305382013,0.086107164621353],[0.12134521454573,-0.01508922316134,0.092612750828266]],[[-0.00046151698916219,-0.0048838797956705,-0.04618563503027],[-0.032208699733019,-0.079557672142982,-0.033217411488295],[-0.028401825577021,-0.018039552494884,-0.01631454564631]],[[0.033476181328297,-0.046122077852488,-0.039740670472383],[0.027629725635052,-0.010416701436043,0.022567454725504],[0.055262118577957,0.026877254247665,-0.00043713633203879]],[[-0.064363159239292,0.029062895104289,0.084144875407219],[-0.095496416091919,0.0055094351992011,-0.12305790185928],[-0.098690934479237,-0.041435446590185,-0.078950025141239]],[[0.036646127700806,0.025981914252043,-0.00031176148331724],[-0.035432156175375,0.029103586450219,-0.14357206225395],[-0.040600400418043,-0.075350940227509,-0.048444166779518]],[[0.011787692084908,0.084916219115257,0.13577982783318],[0.056083709001541,0.025658473372459,0.10078783333302],[-0.043594442307949,0.04967700317502,-0.061107132583857]],[[-0.036998927593231,0.03667251765728,0.068719826638699],[-0.027870269492269,0.035536359995604,-0.042793370783329],[-0.068709939718246,-0.050549246370792,-0.033319178968668]],[[0.069537296891212,0.06378348171711,0.070115678012371],[0.049989696592093,0.0066255540587008,-0.037418853491545],[-0.0035947992000729,-0.021358823403716,0.11084489524364]],[[-0.046987075358629,0.050114780664444,-0.096942067146301],[0.040226466953754,-0.017530467361212,-0.088204003870487],[-0.04227339476347,-0.029530141502619,-0.038152419030666]],[[-0.014821114018559,-0.047554668039083,-0.0056625530123711],[-0.059751641005278,-0.062456343322992,-0.033479265868664],[0.11205665022135,-0.034298438578844,-0.0035242999438196]],[[0.074755072593689,0.0081976875662804,0.040166907012463],[0.070742629468441,-0.012172585353255,0.030401822179556],[0.037484019994736,0.088835701346397,-0.0093114618211985]],[[-0.010031273588538,-0.0023380278144032,-0.021232528612018],[-0.046729877591133,0.03091055713594,-0.026018336415291],[-0.0081102605909109,-0.062947675585747,0.053596764802933]],[[0.060189213603735,-0.0033316661138088,0.042095832526684],[-0.11756636202335,-0.011432137340307,-0.024741865694523],[0.0044053560122848,-0.01891491189599,0.0027180518954992]],[[-0.045796871185303,-0.0084869740530849,-0.061799809336662],[0.040953412652016,-0.11563371866941,-0.079040959477425],[0.028537973761559,-0.021128557622433,0.060089945793152]],[[-0.0066317496821284,-0.056967578828335,-0.019608629867435],[0.0082259690389037,-0.07059770822525,0.045185964554548],[0.0081432517617941,0.018207835033536,0.035132139921188]],[[-0.057778026908636,-0.025473980233073,0.0041156713850796],[0.014127247035503,-0.017154278233647,0.023940443992615],[0.022117739543319,0.017378833144903,0.015415681526065]],[[0.084313198924065,0.0057381326332688,-0.030753487721086],[-0.042184215039015,-0.042283818125725,-0.01146228890866],[-0.032239694148302,-0.065999366343021,0.049558341503143]],[[-0.058539509773254,-0.043249927461147,0.045704662799835],[-0.04432824999094,0.071202293038368,-0.060274343937635],[-0.05803420394659,-0.024356121197343,0.069695055484772]],[[0.065300449728966,-0.026808025315404,-0.01784922927618],[-0.038398310542107,-0.042833685874939,-0.042031057178974],[-0.098150297999382,-0.09634817391634,0.075100861489773]],[[0.049160577356815,0.022666696459055,-0.073142610490322],[-0.005562492646277,-0.023831671103835,0.062741935253143],[-0.058713093400002,-0.048158556222916,0.08170073479414]],[[-0.0029669979121536,0.090334326028824,-0.056780401617289],[0.079692862927914,-0.039057806134224,0.0014441715320572],[-0.0070898062549531,0.016068650409579,0.036767527461052]],[[-0.0084939068183303,0.0023706753272563,-0.01364203915],[-0.0085918568074703,-0.024583468213677,-0.075299367308617],[-0.0058246282860637,-0.092219673097134,-0.028621649369597]],[[-0.063664667308331,-0.040495399385691,-0.00014872633619234],[0.054323498159647,-0.031671062111855,-0.005741092376411],[-0.019812155514956,2.9022790840827e-05,0.0074886274524033]],[[0.05441815033555,-0.017519710585475,-0.02672434784472],[0.045614767819643,0.024025799706578,-0.035449545830488],[0.0073359664529562,-0.093468211591244,-0.079489141702652]],[[0.070660479366779,-0.021616345271468,-0.061844304203987],[0.023468773812056,-0.015340364538133,-0.020849075168371],[0.10493697226048,-0.016073010861874,0.024631982669234]],[[0.10704324394464,-0.016726905480027,-0.051259398460388],[0.038976177573204,-0.039934206753969,0.0079278880730271],[-0.0048469719476998,0.0075097745284438,0.0096968403086066]],[[0.027557728812099,0.018417876213789,0.012704702094197],[-0.092007994651794,-0.035138297826052,-0.062459331005812],[-0.084361843764782,-0.068308219313622,0.11688493192196]],[[0.036477789282799,-0.0052457051351666,0.094026789069176],[-0.010938303545117,0.011222617700696,-0.0021808953024447],[-0.0027770102024078,-0.028051279485226,0.065307140350342]],[[-6.525080971187e-05,-0.028965143486857,0.0036468552425504],[0.053353790193796,0.078468017280102,0.023765869438648],[0.058623626828194,0.052356839179993,0.00030434405198321]],[[0.016651818528771,0.038536224514246,0.070560716092587],[-0.079756535589695,-0.0062377597205341,0.030586432665586],[0.065891176462173,-0.015614548698068,-0.020005211234093]],[[0.049725376069546,-0.05111151188612,0.07288384437561],[0.16414570808411,-0.015494899824262,0.0081857610493898],[0.08497803658247,-0.061347804963589,-0.0045107956975698]],[[0.055182725191116,-0.04271912202239,0.076416164636612],[-0.018306653946638,0.021314786747098,0.070247232913971],[-0.071902453899384,0.0070327478460968,0.011239358223975]],[[0.018804276362062,0.07228346914053,0.065904870629311],[-0.030266370624304,0.047492042183876,-0.039218232035637],[-0.038472805172205,0.043274529278278,0.076782681047916]],[[-0.012520776130259,0.076895445585251,0.036524370312691],[0.053323701024055,0.034275185316801,-0.0062223263084888],[0.028811423107982,0.026688482612371,-0.039155762642622]],[[0.037338152527809,-0.032569169998169,0.013445807620883],[0.03979354351759,0.051962282508612,-0.007871394045651],[0.058614823967218,0.047701392322779,-0.043918825685978]],[[0.059556599706411,-0.0009752189507708,-0.071463026106358],[0.057530958205462,-0.021113419905305,-0.023762261494994],[0.034263703972101,0.039478912949562,0.10723246634007]],[[0.023639664053917,-0.025828706100583,-0.071330942213535],[0.0064410362392664,0.00024558784207329,0.0036827232688665],[-0.023316562175751,-0.064091131091118,-0.077126920223236]],[[0.077626064419746,0.065320707857609,-0.024032836779952],[-0.0064727901481092,-0.11137975007296,-0.048384122550488],[-0.025825431570411,0.084645368158817,0.0043022553436458]],[[0.041544821113348,-0.011618285439909,0.032822944223881],[0.036915488541126,-0.019697170704603,-0.053499441593885],[-0.049545638263226,0.039067815989256,-0.0088142985478044]],[[0.01402707118541,0.031504862010479,-0.014424383640289],[0.080868005752563,0.022962838411331,0.0059043164364994],[0.052570782601833,-0.043656896799803,-0.021962907165289]],[[0.050572589039803,-0.056769479066133,-0.05106408521533],[0.15611034631729,0.065697714686394,0.11023253202438],[-0.06018054485321,0.013261230662465,-0.014016539789736]],[[0.028946051374078,0.0032574550714344,-0.06455983966589],[0.050210010260344,-0.029336722567677,-0.015969621017575],[-0.067052491009235,-0.019960625097156,-0.042031645774841]],[[-0.031822398304939,-0.054917898029089,-0.02705573104322],[0.027027186006308,0.021748734638095,0.083769008517265],[0.067652672529221,-0.051879476755857,0.0319550819695]],[[0.035014312714338,0.0277717448771,-0.046439722180367],[0.057092476636171,0.014608142897487,-0.06779420375824],[0.00033497918047942,0.020968189463019,0.018155310302973]],[[-0.046670943498611,0.038890346884727,0.060519944876432],[0.061409506946802,0.056288175284863,0.021317232400179],[-0.016284292563796,0.027156991884112,0.03250839561224]],[[0.066820241510868,-0.048093926161528,0.052389614284039],[-0.023894023150206,-0.045649830251932,0.020272146910429],[0.10846104472876,-0.06090996414423,0.0042033647187054]],[[-0.034723676741123,0.043301891535521,0.014628944918513],[0.016858797520399,-0.093474343419075,0.068454086780548],[0.063299678266048,0.036807764321566,-0.023021513596177]],[[0.02130214124918,-0.014997615478933,-0.053621239960194],[-0.061362065374851,0.0021303333342075,-0.067483320832253],[-0.0034665334969759,-0.051474038511515,-0.028945043683052]],[[0.018455862998962,-0.0099458852782845,0.074252240359783],[0.051117420196533,0.020629569888115,-0.019673593342304],[-0.035196866840124,0.015056001953781,-0.019021509215236]],[[0.044296700507402,0.021115237846971,0.027496509253979],[0.033606003969908,0.099904075264931,0.13011141121387],[0.018624871969223,-0.059213269501925,-0.055649556219578]],[[0.0099803879857063,-0.028381731361151,-0.011860962957144],[0.00015439104754478,-0.086118571460247,0.0090048629790545],[0.13739009201527,0.052615772932768,0.0063092531636357]],[[0.027169205248356,0.057491958141327,0.0010004637297243],[-0.034840948879719,-0.031993634998798,-0.015459528192878],[-0.042510140687227,-0.052468452602625,-0.012722866609693]],[[0.078923478722572,0.034583788365126,-0.018255427479744],[0.022202620282769,-0.018391728401184,0.05389891564846],[-0.013801754452288,0.050688106566668,0.098692856729031]],[[0.042094826698303,-0.076747953891754,0.086811356246471],[0.13299569487572,-0.021049704402685,0.015483686700463],[0.026374066248536,-0.02983015216887,-0.0068095992319286]],[[0.058079916983843,0.05035400018096,-0.080652602016926],[0.065709114074707,-0.051171660423279,0.059972986578941],[-0.02933000959456,-0.02489529363811,-0.070214189589024]],[[0.10517241805792,-0.035917732864618,0.062332894653082],[-0.055219050496817,0.038670245558023,-0.066383510828018],[0.016123754903674,-0.0048106582835317,-0.017699969932437]],[[0.038002956658602,-0.034812297672033,0.011372877284884],[0.08419132232666,-0.024584695696831,0.09776421636343],[-0.028289178386331,-0.059281598776579,0.01474252063781]],[[-0.047232434153557,0.059462405741215,0.0022127071861178],[0.14550665020943,0.071021646261215,0.021150063723326],[-0.021381232887506,0.0033499619457871,0.012635866180062]],[[0.026638807728887,-0.045902796089649,0.04559126496315],[-0.034683804959059,-0.041258849203587,0.075941823422909],[-0.042322602123022,0.031083837151527,-0.11618681997061]],[[0.029299773275852,-0.025091364979744,-0.064287289977074],[-0.086621023714542,-0.0025621869135648,-0.03904228284955],[-0.01799562945962,-0.056454662233591,0.059579070657492]],[[-0.051571365445852,-0.03070236928761,-0.00024618170573376],[-0.059750910848379,-0.046933516860008,0.0090765049681067],[-0.049918659031391,-0.022087216377258,0.069650463759899]],[[0.030385587364435,0.033299937844276,0.041876405477524],[0.045371882617474,0.11405012011528,0.00064860150450841],[0.057713747024536,0.023968478664756,0.015888718888164]],[[0.0048092249780893,-0.063668839633465,-0.044864967465401],[0.041772421449423,0.0088429264724255,0.060480125248432],[-0.023213678970933,-0.01043969206512,-0.0056256637908518]],[[-0.026676569133997,0.039382196962833,0.065933600068092],[-0.0070318346843123,0.065018728375435,0.021328862756491],[-0.040638953447342,-0.047573503106833,0.032231792807579]],[[-0.01872094720602,0.033535771071911,-0.0072573786601424],[0.026759117841721,0.022313591092825,0.054633159190416],[0.0053933318704367,0.022896584123373,-0.027987482026219]],[[-0.012881308794022,-0.063481375575066,-0.031852304935455],[0.074666015803814,0.011569679714739,-0.035708844661713],[0.012529826723039,0.026683194562793,0.0070741181261837]],[[0.014484360814095,0.099147282540798,-0.030300470069051],[-0.016584256663918,0.050085976719856,0.078584559261799],[0.069539360702038,-0.011698760092258,-0.046072099357843]],[[0.058375060558319,-0.02772394567728,-0.060546774417162],[-0.029906380921602,-0.048357482999563,-0.027721824124455],[0.037289015948772,0.0057259323075414,-0.053632870316505]],[[-0.018730258569121,-0.004114291165024,-0.040642749518156],[0.046986728906631,0.076700769364834,0.070289216935635],[-0.10988948494196,-0.035046938806772,0.034674175083637]],[[-0.012749241665006,-0.095821604132652,-0.063145846128464],[0.067404605448246,0.078442580997944,0.088100396096706],[-0.015210723504424,0.0040762778371572,0.084144458174706]],[[0.011224781163037,-0.039527729153633,-0.022995440289378],[-0.053851075470448,-0.027869451791048,0.036662448197603],[0.031320925801992,0.088141776621342,-0.073730200529099]],[[0.059833902865648,0.025565419346094,-0.04686988145113],[-0.021659545600414,0.024594014510512,0.012527026236057],[0.049910582602024,0.08931752294302,0.076835706830025]],[[0.040542051196098,-0.019450152292848,0.045894756913185],[0.018820144236088,-0.076451435685158,-0.075922697782516],[0.0039406763389707,0.002863232512027,-0.023744689300656]],[[0.0039708558470011,0.095881506800652,-0.015585179440677],[0.088949419558048,0.057334631681442,-0.094754874706268],[-0.063468918204308,0.058738578110933,0.10450455546379]],[[-0.057099256664515,0.054924696683884,-0.05403258278966],[0.037219654768705,0.0017677776049823,-0.079330429434776],[0.065981522202492,0.036835290491581,0.034778971225023]],[[0.11045288294554,0.065569400787354,0.018202090635896],[0.021142866462469,0.004543692804873,-0.06192372366786],[0.072025619447231,0.059553980827332,0.076069220900536]],[[0.021485550329089,0.092086657881737,-0.033592890948057],[-0.0318335108459,0.11642891913652,0.029277555644512],[-0.055496584624052,0.052859988063574,-0.029880164191127]],[[-0.00026507157599553,0.030570756644011,0.00068805547198281],[-0.10630511492491,-0.00078439281787723,-0.013877657242119],[0.035740479826927,-0.019296398386359,-0.050060275942087]],[[-0.03111963532865,-0.0038325616624206,0.018566716462374],[-0.017257748171687,-0.055146425962448,-0.012385474517941],[-0.087614051997662,-0.002800258807838,-0.049293626099825]],[[-0.00038078674697317,-0.03036248870194,0.042413834482431],[-0.014269654639065,-0.028779525309801,0.0067833345383406],[0.037142619490623,-0.066710993647575,0.029786223545671]],[[-0.010999950580299,0.0097130062058568,0.002908615861088],[0.077090241014957,-0.028017731383443,-0.084283709526062],[-0.045261431485415,-0.040178149938583,0.0042430930770934]],[[-0.031367652118206,-0.03184026107192,-0.070593871176243],[0.076872542500496,-0.023402245715261,-0.047019019722939],[-0.0061037731356919,-0.054722439497709,0.0036929794587195]],[[-0.0085352938622236,-0.040061790496111,0.043848481029272],[0.077091559767723,-0.03777289763093,0.028839729726315],[0.044956285506487,0.027325440198183,-0.058221016079187]],[[0.0035169695038348,0.049224611371756,0.03551421687007],[0.039033029228449,-0.06677270680666,0.088067278265953],[0.021246334537864,-0.026086496189237,-0.053194910287857]],[[0.02590493299067,-0.018167039379478,0.031519934535027],[-0.047564599663019,0.030141673982143,-0.049392804503441],[-0.037755724042654,-0.031373076140881,0.011858776211739]],[[-0.0089974347501993,-0.03030158020556,-0.018136966973543],[-0.0051645347848535,-0.06818463653326,-0.053246662020683],[0.049727499485016,0.021824715659022,0.010490733198822]],[[-0.0062697930261493,0.0088987592607737,-0.11498200893402],[-0.0624297298491,0.045511722564697,0.080391481518745],[-0.060690201818943,-0.014079372398555,0.027363611385226]],[[0.059736389666796,0.0023310165852308,0.03929827734828],[0.0794388204813,-0.1267893910408,0.043306324630976],[0.032071370631456,0.01164392195642,0.1233622059226]],[[-0.00010094758181367,0.061634931713343,-0.15686826407909],[0.024639530107379,-0.015390087850392,0.030476745218039],[0.020160226151347,0.0068228328600526,0.032942619174719]],[[-0.01844260469079,0.021515259519219,-0.061978865414858],[-0.032061960548162,0.033530816435814,-0.045507378876209],[0.030751556158066,0.099317260086536,-0.058824796229601]],[[0.043071202933788,-0.099875696003437,-0.0076369931921363],[0.060776557773352,0.01143968757242,0.00018768405425362],[0.032767310738564,-0.015427196398377,-0.026206953451037]],[[0.10118128359318,-0.0015376000665128,-0.036283601075411],[0.027184806764126,-0.035001996904612,-0.053816832602024],[-0.014466479420662,0.017401272431016,-0.042199514806271]],[[0.0039415778592229,-0.055839221924543,-0.052780397236347],[0.02308145724237,0.13738441467285,0.103111512959],[-0.056144520640373,0.038745727390051,-0.066928580403328]],[[0.024938052520156,-0.041382163763046,-0.035472363233566],[0.16989003121853,0.059353530406952,-0.022597260773182],[0.094864390790462,0.0049333358183503,-0.017801448702812]],[[-0.049517638981342,-0.020549012348056,0.028811560943723],[0.059214759618044,0.0031249895691872,0.10940454155207],[-0.055414661765099,-0.00019067036919296,-0.023226670920849]],[[0.041863840073347,-0.0092521691694856,-0.092836454510689],[0.01263159699738,0.0698022544384,0.029931865632534],[0.011487580835819,0.03517659008503,0.043051052838564]],[[-0.043063972145319,0.068575851619244,0.04848749935627],[0.00098018499556929,0.018744325265288,-0.018245007842779],[-0.061709612607956,0.051885858178139,-0.083356805145741]],[[-0.054736968129873,0.062606461346149,0.059327848255634],[0.051891639828682,0.01933229342103,0.052144195884466],[-0.065045297145844,-0.039783954620361,-0.015206336975098]],[[0.045288477092981,0.014761808328331,0.045337349176407],[-0.0014044754207134,-0.060667395591736,-0.026451969519258],[0.048875596374273,0.039868663996458,0.024530058726668]],[[-0.034479334950447,-0.057436097413301,-0.054392911493778],[-0.059637308120728,-0.0065515669994056,0.013456480577588],[0.0073566907085478,0.0087806349620223,-0.059749498963356]],[[0.018301200121641,-0.034085649996996,0.033322248607874],[-0.023486226797104,0.10779083520174,0.0087906150147319],[0.0086863804608583,-0.049633327871561,0.020206317305565]],[[0.050552494823933,0.025383958593011,0.10340359061956],[-0.049729503691196,0.0015484030591324,0.045383341610432],[0.064031474292278,-0.10809999704361,0.019760206341743]],[[0.069893315434456,0.001355005777441,-0.045658309012651],[0.01585585065186,0.091489493846893,-0.016989121213555],[0.026818869635463,0.04293205961585,0.049476575106382]],[[0.013369633816183,0.043342396616936,0.052715092897415],[0.036978211253881,-0.012163286097348,-0.0092963920906186],[-0.10277207195759,0.011565320193768,0.12290753424168]],[[0.00017018475045916,-0.037866052240133,0.038817901164293],[0.020534679293633,0.036050073802471,0.016560547053814],[-0.057395774871111,-0.005907395388931,0.071688465774059]],[[0.0045243902131915,-0.10371894389391,-0.023494049906731],[-0.054627172648907,0.11824225634336,-0.016919450834394],[-0.10226494073868,0.088185109198093,-0.037495497614145]],[[-0.0063992384821177,-0.0252641197294,0.0028090726118535],[0.025176536291838,0.02003082819283,-0.040304906666279],[0.04480118304491,-0.035073440521955,0.033924553543329]],[[0.040275514125824,0.070625476539135,0.039631206542253],[0.0034577487967908,0.012251739390194,0.052146766334772],[-0.048801578581333,0.051804516464472,0.041124124079943]],[[-0.0094329342246056,-0.042525064200163,0.01724866963923],[0.10668624192476,0.064881652593613,-0.012559658847749],[0.043863736093044,0.11973401904106,0.076175689697266]],[[-0.067256562411785,0.0041882498189807,-0.068204715847969],[0.019569916650653,0.036304045468569,-0.033671852201223],[-0.014019083231688,0.0086291907355189,0.023985976353288]],[[-0.075909025967121,0.031548116356134,-0.035452753305435],[0.00033021613489836,0.0078458301723003,0.045767534524202],[0.02893852815032,-0.10395939648151,0.0055000502616167]],[[0.10259404033422,0.081011392176151,0.02797613106668],[-0.027438838034868,0.026188151910901,0.025306554511189],[-0.045094314962626,0.061540868133307,0.081944726407528]],[[-0.041222538799047,-0.0090392967686057,-0.028117101639509],[0.042980428785086,-0.016349002718925,-0.086057141423225],[0.11013171821833,0.12360157817602,-0.026221107691526]],[[0.037017624825239,-0.024711878970265,-0.010539777576923],[0.02558933570981,0.0001839504839154,0.0062236278317869],[0.10276176780462,0.059559725224972,0.068884879350662]]],[[[-0.022243363782763,-0.079293690621853,-0.022733751684427],[-0.0376111343503,-0.10751002281904,0.057054046541452],[-0.054287772625685,-0.071092545986176,0.03422749787569]],[[-0.04309669137001,-0.041020650416613,0.060250580310822],[0.00033780484227464,-0.022569702938199,0.051483541727066],[-0.046156469732523,-0.022553365677595,0.027493642643094]],[[-0.024884091690183,0.070855863392353,-0.085411801934242],[0.035259492695332,-0.039872944355011,-0.019297098740935],[-0.010725158266723,-0.058440785855055,-0.015414537861943]],[[0.048175442963839,-0.05648573115468,0.018048498779535],[0.096236139535904,-0.024157049134374,0.052880845963955],[0.037517435848713,0.10669089853764,0.0038281308952719]],[[0.00040328808245249,-0.044271111488342,-0.0087453238666058],[0.047256585210562,-0.024829691275954,0.072619311511517],[0.04250019416213,-0.026429809629917,0.0060500502586365]],[[-0.02230160869658,0.016204688698053,0.020504420623183],[0.10321471840143,0.019540689885616,0.044509384781122],[0.054071594029665,0.10798804461956,0.041740410029888]],[[-0.065681576728821,-0.0031806917395443,-0.048116665333509],[0.11271982640028,0.013582491315901,-0.020976854488254],[0.045556768774986,-0.07844777405262,-0.064052000641823]],[[0.0084251286461949,-0.015788100659847,0.025681100785732],[-0.019500805065036,-0.010290873236954,-0.014759609475732],[-0.069196872413158,0.069636754691601,0.028442187234759]],[[0.014641016721725,0.038951605558395,0.03469455987215],[-0.02662686444819,0.0064288573339581,0.056620731949806],[-0.0377994813025,-0.0085571901872754,-0.0092356223613024]],[[0.15959331393242,0.077393785119057,-0.039759073406458],[0.053588010370731,0.088198602199554,0.17317688465118],[0.044951379299164,0.044110778719187,0.089364528656006]],[[0.012194759212434,0.018670530989766,0.010467999614775],[0.10283260792494,0.019737590104342,0.10871972888708],[-0.039674818515778,-0.0037796492688358,0.07220608741045]],[[0.098933719098568,0.11820326000452,0.032939791679382],[0.024710062891245,0.02894351631403,0.028909150511026],[0.097390100359917,0.046728126704693,0.012979555875063]],[[-0.034039087593555,0.11271881312132,-0.023425038903952],[0.049667675048113,0.025437070056796,0.06933531910181],[-0.011894141323864,-0.017977211624384,-0.077425569295883]],[[-0.0097398366779089,-0.041044559329748,0.028955643996596],[-0.026284961029887,0.039021607488394,-0.049073543399572],[0.0077111190184951,0.048552013933659,0.038511756807566]],[[0.088142991065979,-0.071022488176823,0.076327614486217],[0.11364650726318,-0.071411572396755,-0.024724552407861],[0.089422106742859,0.14092978835106,-0.060871675610542]],[[-0.045669190585613,0.021592766046524,-0.0069357617758214],[-0.040233135223389,0.054646983742714,0.00085794157348573],[-0.044771552085876,-0.056093536317348,-0.085759542882442]],[[0.00063153478549793,-0.032511617988348,0.030116014182568],[0.019866853952408,0.063251748681068,0.045648217201233],[0.0027947470080107,0.085282243788242,0.0085176695138216]],[[0.047396656125784,-0.024540496990085,-0.024829246103764],[-0.075428426265717,-0.071481056511402,0.011645960621536],[0.0025417571887374,-0.061014167964458,0.0083426339551806]],[[-0.030243758112192,0.035703826695681,-0.0060934317298234],[0.009331738576293,-0.007524473592639,-0.016245357692242],[0.035512842237949,-0.10745442658663,0.032187696546316]],[[-0.02951212413609,-0.08737850189209,-0.023544253781438],[0.030900238081813,0.10481464862823,-0.02663036249578],[-0.0075613777153194,0.023868875578046,0.061844557523727]],[[-0.0055531365796924,-0.010581858456135,0.091007515788078],[0.076143048703671,-0.0022431784309447,0.031890090554953],[0.010366812348366,0.020812271162868,-0.065678507089615]],[[0.060083013027906,0.026061872020364,0.085041433572769],[0.079713948071003,0.072027571499348,0.13221569359303],[0.029332369565964,0.10936165601015,0.1746461391449]],[[-0.023367298766971,-0.021860223263502,0.00099378195591271],[0.020845903083682,-0.005705083720386,-0.058610342442989],[-0.066053330898285,-0.085400186479092,-0.036682866513729]],[[-0.024437569081783,0.029230250045657,-0.00019998202333227],[0.059237401932478,0.01208799239248,0.037675086408854],[-0.038400456309319,0.0062218168750405,-0.0054519260302186]],[[0.075720950961113,-0.010219657793641,-0.011023645289242],[0.068333551287651,0.024375714361668,0.06943403929472],[0.054844211786985,0.012111035175622,0.063474796712399]],[[-0.0049414993263781,0.011616991832852,-0.033161323517561],[-0.031088152900338,-0.093754418194294,-0.0034527138341218],[-0.080332249403,-0.091297298669815,-0.0022273189388216]],[[-0.013224781490862,0.032372117042542,0.061191938817501],[-0.083970412611961,0.025488406419754,0.053875800222158],[0.015786690637469,0.080007091164589,0.099375814199448]],[[0.0063724447973073,0.03697331994772,0.052302237600088],[0.0063324635848403,0.029096312820911,0.079800546169281],[0.021096095442772,0.00052347971359268,0.067588120698929]],[[-0.023329732939601,0.02909261547029,0.070533245801926],[0.010088997893035,0.091435879468918,3.9630060200579e-05],[0.10530444979668,0.0096836173906922,0.019682839512825]],[[0.059196926653385,-0.0060847136192024,0.054953783750534],[0.049690503627062,0.01390035264194,0.0033944074530154],[-0.01779717952013,0.085973724722862,0.010544935241342]],[[-0.007421079557389,0.039561297744513,-0.015320470556617],[0.0011422212701291,0.05053111538291,-0.035951882600784],[0.048005316406488,0.030842689797282,0.030807547271252]],[[-0.010649526491761,0.032314341515303,-0.015078364871442],[0.015352319926023,-0.05939494818449,-0.0046011507511139],[0.062376711517572,0.049371231347322,0.010542930103838]],[[0.0052877455018461,-0.027120349928737,0.078366905450821],[-0.017591301351786,0.073056578636169,0.12466329336166],[0.056619361042976,-0.0065911957062781,-0.014594353735447]],[[-0.030584041029215,0.056665040552616,0.059400830417871],[0.11507213115692,0.094043411314487,-0.0036533176898956],[0.13280758261681,0.037684347480536,0.14879527688026]],[[-0.046527501195669,-0.027420982718468,0.12285985052586],[0.066828593611717,-0.058710008859634,-0.0067488644272089],[0.0099737923592329,-0.036618493497372,0.073951885104179]],[[0.064577899873257,0.033488109707832,-0.016317034140229],[0.027643790468574,-0.033996716141701,0.071510083973408],[-0.09551889449358,0.015191534534097,-0.036538429558277]],[[-0.010041745379567,-0.059552174061537,0.0084990281611681],[-0.04658168181777,-0.091710530221462,-0.10151211172342],[-0.059809129685163,-0.071213074028492,-0.10745957493782]],[[0.083728350698948,-0.065317094326019,0.047022245824337],[-0.033247642219067,0.054569326341152,0.084469012916088],[-0.0097221275791526,0.011489150114357,0.0099548855796456]],[[0.018640542402864,0.029045827686787,-0.036568678915501],[0.050072800368071,0.058324825018644,-0.018416687846184],[0.034740600734949,0.048709008842707,-0.03804013133049]],[[-0.047235753387213,-0.032233614474535,-0.0025865230709314],[0.080326564610004,0.029904954135418,0.0014350113924593],[0.010528597980738,0.027717672288418,0.0079856207594275]],[[0.0068449769169092,0.086542576551437,0.075019352138042],[0.10692959278822,-0.083033412694931,-0.056884173303843],[-0.028776129707694,0.045888356864452,0.064414098858833]],[[-0.032680585980415,-0.0093953106552362,-0.0034948354586959],[0.0080905640497804,0.034055277705193,-0.10222825407982],[-0.02733795158565,0.060111191123724,-0.010306842625141]],[[-0.011165647767484,-0.017756424844265,-0.023282000795007],[-0.024558167904615,-0.0067506665363908,0.10215057432652],[-0.011307531967759,0.042184669524431,0.11461084336042]],[[-0.054819293320179,0.043220438063145,0.02665051817894],[-0.032973896712065,-0.079093895852566,0.034531120210886],[0.01628664880991,0.0022528758272529,0.0091144032776356]],[[0.026333071291447,-0.066024295985699,0.0053543937392533],[-0.073697932064533,0.061134710907936,0.036402489989996],[-0.052541915327311,0.069289989769459,0.054989159107208]],[[0.011329186148942,0.0030151028186083,-0.056342277675867],[0.02614438533783,0.021384147927165,-0.092053808271885],[-0.010559298098087,-0.054825033992529,0.084433853626251]],[[-0.021036818623543,-0.054175708442926,0.026401776820421],[0.022798905149102,0.097962275147438,-0.047248549759388],[0.02705080807209,0.028856016695499,0.0081119742244482]],[[0.098547428846359,-0.042308311909437,0.024443151429296],[0.069823257625103,0.12996761500835,-0.059681005775928],[-0.051398526877165,0.054883603006601,0.014372883364558]],[[-0.046350914984941,-0.02292687818408,0.11572149395943],[-0.021933538839221,0.054359048604965,-0.0126679148525],[0.018949721008539,-0.0014521138509735,-0.035627193748951]],[[-0.043593037873507,0.016774544492364,-0.025989586487412],[-0.056558337062597,-0.064590275287628,-0.0076654935255647],[-0.047893952578306,-0.019122445955873,-0.016381541267037]],[[0.043257564306259,0.03457897901535,0.013028022833169],[-0.050977863371372,0.023041965439916,0.072766616940498],[0.062908351421356,-0.020908482372761,-0.076309025287628]],[[0.025949891656637,-0.013346811756492,0.12808258831501],[-0.030530128628016,0.050436608493328,0.10799865424633],[-0.060813400894403,0.079877473413944,0.063242673873901]],[[0.059532694518566,0.024377109482884,0.015087403357029],[0.020430518314242,0.035136975347996,-0.0078383022919297],[-0.049336619675159,-0.056938730180264,-0.0012359292013571]],[[-0.024738602340221,0.03880675509572,0.023445375263691],[0.0070364894345403,0.035678438842297,0.033209886401892],[0.006989065092057,0.034381289035082,0.013996318913996]],[[0.1048724129796,-0.0078225350007415,0.05071359500289],[-0.0029778149910271,0.048502393066883,0.069007143378258],[0.063871920108795,-0.047385051846504,0.082911483943462]],[[0.023732852190733,-0.014942420646548,0.051685355603695],[0.029668595641851,0.071911707520485,0.036060728132725],[-0.014837427064776,-0.014775428920984,0.042540360242128]],[[-0.037906896322966,-0.091210469603539,-0.14600101113319],[0.057793974876404,-0.061942275613546,0.029787616804242],[-0.0026569999754429,-0.010448070243001,0.0046367249451578]],[[-0.055329952389002,0.01325046736747,0.028236053884029],[-0.00033321505179629,0.025957485660911,0.073552571237087],[0.014783095568419,0.0041288221254945,-0.010140794329345]],[[0.032752931118011,0.064585775136948,0.019822489470243],[0.10833287239075,0.018855258822441,0.016121570020914],[0.025798851624131,0.050125230103731,0.10187178105116]],[[-0.051577620208263,0.047836218029261,0.063625760376453],[0.040505759418011,-0.075878947973251,0.021242432296276],[0.040341552346945,-0.0058357450179756,-0.026884745806456]],[[0.078896500170231,-0.001188391703181,0.10320292413235],[0.034631051123142,0.095299035310745,-0.018149692565203],[-0.043457023799419,0.044003859162331,0.057409714907408]],[[0.07304885238409,0.010623320005834,-0.012957675382495],[-0.025340123102069,0.025528591126204,0.029761761426926],[-0.10540167987347,-0.012911255471408,0.00030878570396453]],[[0.021699819713831,-0.035106152296066,0.010986816138029],[-0.048877436667681,0.0076014092192054,-0.0502691231668],[0.0403221398592,-0.091438055038452,-0.028873011469841]],[[0.019134186208248,0.03530614823103,0.022469339892268],[0.005213753785938,-0.047648906707764,0.021802917122841],[0.042415082454681,-0.0044806329533458,-0.056856535375118]],[[-0.049745704978704,-0.015175170265138,0.0044747083447874],[-0.065446570515633,-0.042393259704113,-0.029992543160915],[-0.022187266498804,0.058326084166765,-0.016818482428789]],[[0.0057636043056846,0.012598543427885,-0.10273896157742],[-0.11606059223413,0.011490494012833,0.0074285985901952],[0.091880835592747,-0.018947366625071,0.014077539555728]],[[0.039196074008942,0.085552044212818,-0.038663361221552],[0.0078941881656647,0.088181652128696,0.03098476305604],[0.088810510933399,0.11565207690001,0.11176320910454]],[[0.057699911296368,0.043869618326426,-0.022789523005486],[0.042013321071863,0.04226553067565,0.011256836354733],[-0.13077722489834,0.016793683171272,0.012348811142147]],[[-0.025094734504819,0.08437018096447,0.080533988773823],[0.023856282234192,0.027413841336966,-0.083835728466511],[0.014314497821033,0.06563900411129,-0.00020621021394618]],[[0.055176641792059,0.024004217237234,0.033604383468628],[-0.028239926323295,0.09334097802639,0.097785852849483],[0.055598329752684,0.04523079842329,-0.00097064627334476]],[[0.032639399170876,-0.0052161058411002,-0.04997343942523],[-0.041310090571642,0.051429100334644,0.12907594442368],[-0.0034063530620188,0.090607292950153,0.0070304847322404]],[[0.006757655646652,-0.010907467454672,0.0095552299171686],[-0.010050038807094,-0.012396277859807,0.068751625716686],[0.093279406428337,0.042699355632067,-0.020033717155457]],[[0.066059358417988,-0.018724342808127,-0.00045192573452368],[0.043212790042162,-0.020899895578623,0.00077796669211239],[0.024175951257348,-0.015964210033417,-0.014610989950597]],[[0.033281587064266,0.020632924512029,-0.029392562806606],[0.016683630645275,-0.036776129156351,0.068190969526768],[0.081378899514675,-0.0088857924565673,0.059893853962421]],[[-0.07512404769659,-0.025029733777046,0.043544556945562],[-0.0095655769109726,-0.095406472682953,-0.027680048719049],[0.077510431408882,-0.041777040809393,0.036519523710012]],[[0.057217445224524,0.051758132874966,0.0225820094347],[-0.014192561618984,-0.08310803771019,-0.049745459109545],[0.071524150669575,-0.081175096333027,0.044965069741011]],[[0.029942350462079,0.04557653144002,0.024246836081147],[0.040037222206593,0.034702889621258,-0.0064974646084011],[-0.0018997561419383,-0.10713994503021,-0.060299891978502]],[[-0.015036556869745,0.039814542979002,-0.0060224458575249],[0.02822338975966,0.016083065420389,0.065898098051548],[0.014067350886762,0.028693530708551,0.0038691547233611]],[[0.054871581494808,0.12818053364754,-0.03716354817152],[-0.0058781234547496,-0.076835282146931,-0.0016443044878542],[0.034935802221298,0.0048696999438107,0.05905420333147]],[[-0.095180831849575,-0.039433691650629,0.067158080637455],[0.030179852619767,0.015811068937182,0.0036769311409444],[0.0037144345697016,0.024126036092639,-0.022511543706059]],[[-0.045570813119411,-0.024842934682965,0.0095269978046417],[-0.023278839886189,0.09521759301424,0.066264010965824],[0.062594100832939,-0.012792902067304,0.02643339894712]],[[-0.01210808288306,-0.085226275026798,-0.0349091142416],[0.042835142463446,-0.0033992291428149,0.11838416755199],[-0.068211622536182,-0.02137004584074,0.15601573884487]],[[-0.012183014303446,-0.11595077812672,0.032348521053791],[-0.050190635025501,-0.010240967385471,0.010758948512375],[-0.063059695065022,-0.040597200393677,-0.022133765742183]],[[0.019714897498488,0.076085194945335,0.056262794882059],[-0.03053517267108,0.095463149249554,-0.048101346939802],[-0.069342292845249,-0.077167689800262,0.010403657332063]],[[-0.020250711590052,0.0026292123366147,0.00082589132944122],[0.03082062676549,0.055386807769537,-0.039128549396992],[0.0036547775380313,0.014608973637223,0.038230732083321]],[[0.021276887506247,0.038981791585684,0.031748540699482],[-0.027637902647257,-0.0044794073328376,0.080208219587803],[0.061030000448227,-0.015537328086793,-0.050739884376526]],[[0.018146529793739,-0.0014878287911415,-0.0016217211959884],[0.0077966651879251,0.0022191936150193,0.055079482495785],[0.093973524868488,0.048690278083086,0.042554393410683]],[[-0.017714293673635,0.056468430906534,0.070694029331207],[0.14683474600315,0.064832672476768,0.095590099692345],[0.16963405907154,0.103096999228,0.080264121294022]],[[-0.059114035218954,0.15464609861374,0.013352024368942],[0.054420195519924,0.031704813241959,0.0025528776459396],[0.00020026808488183,0.06233599409461,-0.053596276789904]],[[0.020632836967707,0.036774486303329,0.0032143711578101],[-0.061052676290274,0.041288007050753,-0.0092602670192719],[0.014573724009097,0.084458738565445,0.084373660385609]],[[0.0050020371563733,-0.022494167089462,0.017177354544401],[0.042610995471478,0.014758495613933,0.088234961032867],[0.071351543068886,0.088127329945564,-0.037140544503927]],[[-0.058199856430292,-0.085936740040779,-0.013894986361265],[-0.034477759152651,-0.039499063044786,-0.032607328146696],[-0.050938133150339,-0.013671768829226,-0.065126180648804]],[[-0.02565716393292,-0.043841388076544,0.016246730461717],[-0.028857093304396,0.01885755173862,-0.04448315128684],[-0.0081064216792583,-0.029261810705066,0.024566922336817]],[[0.13365818560123,-0.076235793530941,-0.05620738863945],[-0.052384547889233,0.090569972991943,0.0085362056270242],[0.064137428998947,0.05504172295332,-0.0054234592244029]],[[0.016515223309398,0.036518979817629,0.041527893394232],[0.04066863283515,-0.050166878849268,0.062638022005558],[-0.0193473380059,0.097066946327686,0.033364623785019]],[[-0.032233543694019,-0.00687864003703,0.019366407766938],[-0.045388139784336,0.010162707418203,0.05602253973484],[-0.072523385286331,0.014169504866004,-0.16186328232288]],[[0.13882578909397,0.11478880792856,0.10372939705849],[-0.008650372736156,0.074544847011566,0.080879621207714],[0.021997390314937,-0.00080223183613271,-0.023925099521875]],[[0.016939513385296,-0.045955788344145,-0.070535577833652],[0.10771036893129,0.003738934872672,0.074594870209694],[0.036482810974121,0.10559342056513,0.13177084922791]],[[0.035428460687399,-0.026831606402993,0.0020215730182827],[0.012337285093963,-0.061207707971334,-0.03952868655324],[0.037496380507946,0.0081828534603119,-0.016627017408609]],[[0.027219133451581,0.06223725900054,0.065465621650219],[0.096636421978474,0.043936785310507,-0.044164407998323],[0.041391920298338,-0.088235259056091,-0.024538096040487]],[[0.0006409237976186,-0.032675076276064,-0.031410958617926],[0.0032109767198563,0.013626774773002,0.067016646265984],[-0.034749120473862,-0.031702071428299,-0.025622477754951]],[[-0.073965728282928,0.0092241065576673,-0.040951050817966],[0.080421075224876,0.046131245791912,0.054875884205103],[0.011418953537941,0.095520198345184,0.05042564868927]],[[0.011568441055715,-0.088777676224709,0.034208104014397],[-0.029032262042165,0.020876562222838,0.0075566126033664],[0.087856963276863,-6.3521845731884e-05,-0.012503376230597]],[[-0.020738556981087,-0.013740233145654,0.1164493560791],[-0.0017167006153613,0.017175283282995,0.031613484025002],[-0.029532309621572,0.035809103399515,0.02378716878593]],[[0.03277537599206,-0.029390448704362,0.020482804626226],[0.069130852818489,0.034143228083849,-0.018016958609223],[0.072950944304466,0.078777201473713,0.054142355918884]],[[-0.032971285283566,0.0051686908118427,0.016365941613913],[-0.044602788984776,0.011730049736798,0.058030750602484],[0.0091893440112472,0.033441569656134,0.0061875083483756]],[[0.026973174884915,0.077694050967693,-0.036751851439476],[-0.0014180715661496,0.10633258521557,0.034211505204439],[0.13567547500134,0.048952408134937,-0.034885928034782]],[[-0.03295661509037,-0.037606868892908,0.028031207621098],[0.04138321429491,0.059141665697098,0.029439998790622],[0.042438678443432,-0.02900580316782,0.052691198885441]],[[-0.047282919287682,-0.00076706189429387,0.06514698266983],[-0.080694958567619,-0.011284960433841,-0.029376061633229],[0.11612875014544,-0.11681632697582,-0.011320114135742]],[[0.011727043427527,0.09523319453001,0.040877424180508],[-0.014470212161541,-0.00050027371617034,0.078041441738605],[0.049813166260719,-0.14144313335419,-0.062816873192787]],[[0.0061498237773776,-0.047847509384155,-0.12331004440784],[-0.0094894943758845,0.060775212943554,-0.054936952888966],[-0.060543175786734,0.039238598197699,0.03649378195405]],[[-0.038293980062008,0.0077753933146596,-0.085956126451492],[0.032649420201778,0.038957420736551,0.027676457539201],[0.023375688120723,0.010131746530533,-0.044562511146069]],[[-0.10437218844891,-0.032713431864977,-0.074562512338161],[-0.022025296464562,-0.071100741624832,-0.01374152302742],[-0.040497310459614,0.058796063065529,0.051974948495626]],[[-0.0091234883293509,0.11652439087629,0.033867433667183],[-0.056810718029737,-0.069144286215305,-0.0033819982782006],[0.1171014085412,-0.046900566667318,-0.15837746858597]],[[-0.10768567025661,0.03618997707963,0.027445396408439],[-0.0081762708723545,0.0067742108367383,0.041029680520296],[-0.022751834243536,-0.038093216717243,0.0034554109442979]],[[0.022622669115663,-0.040674511343241,0.10744336247444],[0.031510062515736,0.09537398070097,0.060588750988245],[0.057762496173382,-0.031369015574455,0.072450935840607]],[[-0.059871677309275,-0.10358851402998,-0.058334019035101],[0.030359579250216,0.099076502025127,0.036744751036167],[0.10268341004848,0.08513106405735,0.012178661301732]],[[0.059212643653154,-0.022838391363621,-0.0028412844985723],[-0.0026773766148835,0.13101677596569,0.0041326461359859],[0.030561795458198,0.056391395628452,0.011087610386312]],[[0.012341019697487,-0.13786523044109,-0.088086344301701],[-0.034220766276121,0.029593072831631,0.0018207791727036],[0.038606010377407,0.016979563981295,-0.025330040603876]],[[-0.066069394350052,-0.053332824259996,-0.099371932446957],[-0.066316395998001,-0.1452594101429,-0.058545064181089],[0.081084869801998,0.0074087707325816,-0.080710269510746]],[[-0.048323504626751,0.001069066231139,-0.033582333475351],[-0.035713460296392,0.075632512569427,-0.071304567158222],[-0.057542469352484,-0.10462243109941,-0.07719475030899]],[[-0.030343120917678,0.006881408393383,0.0058867405168712],[0.0016016252338886,-0.013427122496068,0.025978982448578],[0.21143926680088,0.058404520153999,0.032180495560169]],[[0.023096054792404,0.038095355033875,0.025073405355215],[0.034184895455837,0.076259791851044,0.05999930202961],[0.0067038275301456,-0.045855075120926,0.028385946527123]],[[0.013015110045671,0.057533606886864,-0.093783527612686],[-0.004167472012341,-0.044629484415054,-0.12883800268173],[0.027082517743111,-0.092838302254677,-0.058085445314646]],[[0.055915430188179,-0.036704756319523,0.017576716840267],[0.056186269968748,0.033386904746294,-0.079035505652428],[0.063245460391045,0.01752545684576,0.053842972964048]],[[0.023001031950116,0.00095877418061718,0.046199522912502],[0.059176884591579,0.02347806841135,0.041440472006798],[0.050750836730003,0.001136030536145,-0.011564635671675]],[[-0.0082213776186109,0.024816267192364,0.089279346168041],[-0.059753026813269,0.066594704985619,0.014401046559215],[-0.012906382791698,-0.037795227020979,-0.0043293605558574]],[[-0.0057754847221076,-0.055412732064724,-0.0090350843966007],[-0.0989595875144,-0.015308509580791,0.0011566289467737],[-0.05377734079957,0.0033868390601128,0.013542864471674]]],[[[0.035395350307226,0.28529059886932,-0.10468468815088],[-0.06162266433239,-0.057728193700314,-0.028605649247766],[0.0288644451648,-0.12825144827366,0.08844268321991]],[[0.13905361294746,-0.028213301673532,-0.051999907940626],[-0.050873257219791,-0.19584508240223,-0.05247363075614],[0.06041244417429,0.0013487248215824,0.047993343323469]],[[-0.032645646482706,-0.091190233826637,0.20218016207218],[0.10976385325193,-0.11638113111258,0.13581769168377],[-0.0094158407300711,0.1174453496933,-0.074728518724442]],[[0.062930092215538,-0.028642222285271,0.14694193005562],[0.026410445570946,0.0137600004673,-0.019453985616565],[-0.014522281475365,-0.053207881748676,-0.032231006771326]],[[0.093548983335495,-0.11185196787119,0.045471232384443],[0.034615699201822,-0.026074282824993,0.021959245204926],[-0.0039771837182343,-0.1024996265769,0.080824509263039]],[[-0.027389509603381,-0.019376439973712,-0.0023626694455743],[0.092761553823948,0.11931241303682,0.052307970821857],[-0.0089949686080217,-0.0063444306142628,0.055185098201036]],[[-0.073869310319424,0.15124553442001,0.22264647483826],[-0.036841414868832,-0.031680017709732,0.12005648761988],[-0.013478321954608,-0.0053239041008055,-0.19555252790451]],[[-0.054671563208103,-0.051440212875605,-0.10629447549582],[0.062997095286846,-0.041919842362404,0.069284722208977],[-0.16346588730812,0.050326477736235,0.12297805398703]],[[0.14792917668819,0.023388024419546,0.080456934869289],[0.072185434401035,-0.035809598863125,-0.20468360185623],[-0.023098455742002,0.063038423657417,0.071260012686253]],[[-0.019447233527899,0.074526444077492,0.17152933776379],[-0.19555895030499,-0.18626715242863,-0.17443534731865],[0.0085527561604977,0.081835642457008,0.20663592219353]],[[-0.2110690921545,-0.10432153195143,-0.13429513573647],[-0.0085348207503557,-0.035261005163193,-0.05663388222456],[0.062074527144432,-0.074473574757576,0.13945931196213]],[[-0.13937573134899,-0.030013356357813,-0.039301011711359],[0.058855656534433,-0.034993939101696,-0.062901198863983],[0.07926157861948,-0.024093240499496,-0.033925864845514]],[[-0.096901439130306,-0.085046134889126,-0.072997808456421],[-0.093024842441082,-0.16994695365429,-0.098568513989449],[0.02360875159502,-0.03401242941618,0.1715923845768]],[[0.022275887429714,0.093383759260178,0.067426986992359],[-0.097466833889484,-0.0028206889983267,-0.05388581007719],[0.05547383800149,0.068333812057972,-0.1233961507678]],[[0.070400133728981,0.051065154373646,0.12586219608784],[0.059887934476137,0.014103718101978,0.087137721478939],[-0.11296217143536,-0.18676237761974,-0.20708374679089]],[[0.034294482320547,-0.050762858241796,-0.040293484926224],[-0.017629684880376,0.095742926001549,0.046809919178486],[0.0074064210057259,-0.00862976629287,-0.021679082885385]],[[-0.04089343547821,-0.020715247839689,-0.12225664407015],[0.094490617513657,0.093726605176926,-0.021591631695628],[0.090517230331898,-0.026037776842713,0.0097769862040877]],[[-0.15856456756592,0.058682851493359,-0.04489067569375],[-0.20737674832344,-0.052765648812056,-0.01085983030498],[-0.0073392488993704,0.012774096801877,-0.010198920965195]],[[-0.0029802387580276,-0.21633456647396,0.025863859802485],[0.024056151509285,-0.03685737401247,-0.031897559762001],[0.027651622891426,0.17237348854542,-0.21080996096134]],[[-0.12684807181358,-0.17116340994835,-0.099168568849564],[-0.071238622069359,-0.050664804875851,-0.11952748894691],[0.039015136659145,-0.010772868990898,0.11879502981901]],[[-0.14457152783871,-0.089559309184551,0.16962923109531],[-0.017163997516036,-0.015198143199086,0.051552146673203],[0.087017223238945,0.12288676202297,0.0017049383604899]],[[-0.029550170525908,0.2434259802103,0.095647409558296],[0.029535399749875,-0.11409446597099,0.10337550938129],[-0.10027530044317,-0.12609884142876,-0.11984552443027]],[[-0.036227289587259,0.20021314918995,-0.13456758856773],[-0.046372439712286,0.073684215545654,-0.24621018767357],[0.046432588249445,-0.16562387347221,0.06686893850565]],[[-0.039534598588943,-0.15575280785561,-0.0053484183736145],[-0.010276418179274,-0.016039436683059,-0.12571968138218],[0.024327490478754,-0.045469149947166,0.1119246929884]],[[-0.024835977703333,-0.026366936042905,0.13391953706741],[0.083385206758976,-0.13733646273613,-0.041053541004658],[-0.056487649679184,0.099321894347668,-0.011257525533438]],[[-0.079202853143215,-0.0078558372333646,-0.19898077845573],[0.018469352275133,0.065274968743324,0.15435463190079],[0.0020765759982169,-0.032089632004499,-0.18512231111526]],[[-0.12922069430351,-0.12650230526924,0.22466877102852],[-0.058118931949139,0.054927743971348,0.086681716144085],[-0.045796167105436,0.064346805214882,0.076186001300812]],[[0.036431580781937,-0.13873572647572,-0.16098818182945],[-0.041668750345707,0.032130036503077,0.07883283495903],[0.15678200125694,-0.052753150463104,0.026434324681759]],[[-0.085546985268593,-0.14944851398468,-0.077934198081493],[-0.15292510390282,0.010959728620946,0.030483346432447],[0.0025809947401285,0.017842391505837,-0.0028934094589204]],[[0.024824868887663,-0.27016878128052,-0.0027830675244331],[-0.09170063585043,-0.15789397060871,-0.0062997858040035],[-0.12229695171118,0.10541420429945,0.19853438436985]],[[0.030752038583159,-0.065380997955799,-0.013130320236087],[0.14191508293152,0.034059640020132,-0.14998792111874],[-0.099674746394157,-0.10044591128826,0.058341279625893]],[[0.001034289249219,0.097766295075417,-0.037399712949991],[0.013210968114436,-0.010438191704452,-0.012076261453331],[0.054184753447771,0.17031064629555,-0.13911391794682]],[[0.030264340341091,-0.065917938947678,0.024616360664368],[-0.051000408828259,0.0065859402529895,0.25443354249001],[-0.085953965783119,0.012530580163002,-0.045453805476427]],[[0.23150819540024,0.27538907527924,0.085818707942963],[-0.030241001397371,-0.061662420630455,0.15140596032143],[-0.078296169638634,-0.071329899132252,-0.24480319023132]],[[-0.023402269929647,-0.021811412647367,0.0085138194262981],[-0.050130039453506,-0.060789305716753,-0.058770760893822],[0.18654081225395,0.062382690608501,0.11431112140417]],[[0.042700599879026,0.063790440559387,-0.097162783145905],[-0.069768212735653,0.019835956394672,-0.097718961536884],[-0.081672593951225,0.058833155781031,-0.058409430086613]],[[0.054786369204521,0.077066160738468,0.15574963390827],[0.21740582585335,0.29501816630363,0.22887842357159],[0.086383506655693,0.060121919959784,0.080557353794575]],[[-0.022586608305573,-0.14482368528843,0.02781337313354],[-0.0092986943200231,0.11455512791872,0.13267041742802],[0.094746015965939,0.074182093143463,0.023446574807167]],[[0.012884945608675,-0.10275889933109,-0.095160566270351],[0.095602229237556,0.025717733427882,-0.1529128998518],[0.023659097030759,0.012636612169445,0.27824887633324]],[[0.057274028658867,-0.014483278617263,0.044752277433872],[0.10296770185232,-0.083793446421623,-0.019991865381598],[0.057850420475006,0.011797942221165,-0.067160457372665]],[[-0.0023527671582997,0.02569760940969,0.0033017776440829],[0.037771571427584,0.036520503461361,-0.010607422329485],[-0.089560382068157,0.26288485527039,0.14372366666794]],[[0.021374030038714,-0.0031080048065633,0.094036735594273],[9.392638457939e-05,0.14707696437836,0.071056038141251],[0.092675641179085,-0.083206363022327,-0.0063404440879822]],[[-0.046794377267361,0.066650927066803,-0.13680236041546],[-0.015413743443787,0.010114858858287,-0.1351470053196],[-0.020199814811349,0.12623719871044,0.090853914618492]],[[-0.046804610639811,0.080047957599163,0.22407634556293],[0.040176663547754,0.015727873891592,-0.19411358237267],[-0.073870852589607,0.13753429055214,-0.26884338259697]],[[0.13585563004017,-0.023204391822219,-0.14270375669003],[0.13006728887558,-0.17100757360458,-0.02886831946671],[-0.041950538754463,0.025547802448273,-0.16411045193672]],[[-0.042250357568264,-0.21869529783726,0.096087962388992],[0.063484065234661,-0.05815226957202,-0.084118694067001],[0.0089369900524616,0.037321146577597,0.022402321919799]],[[-0.11106627434492,-0.059633869677782,0.31428194046021],[-0.017123321071267,-0.17243999242783,0.059717107564211],[0.027568824589252,0.012636280618608,-0.0016915613086894]],[[0.062530510127544,-0.011498461477458,-0.11951833963394],[-0.046853844076395,-0.060772255063057,-0.065886527299881],[0.016206137835979,-0.11538138240576,-0.12034447491169]],[[0.19018533825874,0.2235352396965,0.16015757620335],[-0.0063988449983299,0.012349670752883,0.00092543999198824],[-0.059474520385265,-0.13657929003239,0.054703135043383]],[[-0.046263873577118,-0.060450010001659,-0.19426335394382],[0.073793232440948,0.089205220341682,-0.060995530337095],[-0.00020123818831053,-0.054760977625847,0.039633769541979]],[[0.086686909198761,0.11213050037622,-0.0080232620239258],[-0.03301315009594,0.10433861613274,0.1516527235508],[-0.035184793174267,0.056073118001223,0.0028726893942803]],[[0.01261149905622,0.20376627147198,0.19224266707897],[-0.045567814260721,-0.10728893429041,-0.010386674664915],[0.048804327845573,-0.04414127767086,-0.03944992646575]],[[0.094450064003468,-0.019380023702979,-0.19454053044319],[0.19304749369621,-0.028440948575735,0.079208850860596],[0.034983113408089,0.11559278517962,-0.093181483447552]],[[0.027592830359936,0.13738204538822,0.074594348669052],[0.075863502919674,-0.065690770745277,0.067845828831196],[-0.0031681568361819,-0.02897858992219,-0.057809196412563]],[[-0.093936435878277,-0.11066529154778,-0.11208053678274],[0.017536429688334,0.10536521673203,0.094770647585392],[0.10728484392166,0.01098061259836,0.09463682025671]],[[-0.0081434762105346,0.022077310830355,0.088590160012245],[0.13883781433105,-0.032074727118015,-0.21412813663483],[-0.061156831681728,0.14999157190323,0.095470264554024]],[[-0.13275584578514,-0.1222101226449,0.1048132404685],[0.053288020193577,0.02048565261066,-0.18828345835209],[-0.040521245449781,0.089809335768223,-0.074630416929722]],[[0.0011444279225543,0.013890056870878,0.2672019302845],[-0.061587106436491,0.062537327408791,0.052520889788866],[-0.071638405323029,-0.054250098764896,0.19934125244617]],[[-0.05219453945756,-0.14601726830006,-0.19981604814529],[0.052735384553671,0.001366380834952,0.041347548365593],[-0.061285972595215,0.034849613904953,0.013618461787701]],[[-0.099795036017895,0.073391638696194,-0.15292418003082],[-0.069852523505688,0.10645162314177,0.29393485188484],[-0.12431778758764,0.11866112053394,0.044157549738884]],[[0.063855066895485,-0.1080624461174,-0.24323265254498],[0.050307713449001,0.16724787652493,-0.0041736834682524],[0.024660088121891,-0.095829628407955,0.18640150129795]],[[-0.05941966176033,0.054035808891058,0.19757923483849],[-0.04789574444294,0.13407042622566,-0.07785277813673],[-0.010709870606661,-0.085932396352291,-0.057234216481447]],[[0.095509700477123,0.089057900011539,0.12287007272243],[0.047706492245197,0.10893055796623,0.12086265534163],[-0.034034799784422,0.036013823002577,0.13331116735935]],[[-0.12253171205521,-0.086104236543179,-0.055049777030945],[-0.11322622001171,-0.075396545231342,0.052840817719698],[0.026067044585943,0.028113100677729,0.1248574629426]],[[-0.026165142655373,-0.11384467035532,0.36081102490425],[0.030786860734224,-0.065593913197517,-0.060310944914818],[0.018950054422021,0.0043951920233667,-0.066951483488083]],[[0.024432308971882,-0.14363026618958,0.14385256171227],[0.061841662973166,-0.035635225474834,-0.085842296481133],[0.10592730343342,0.035264667123556,-0.077452965080738]],[[0.16855478286743,0.037150386720896,0.020875649526715],[0.056681998074055,-0.13873995840549,0.20639863610268],[-0.070209346711636,-0.13027749955654,-0.0027816989459097]],[[0.15007649362087,-0.05969362705946,-0.092298656702042],[-0.0051607973873615,0.027240928262472,0.20889569818974],[0.05951226875186,0.092793934047222,0.059385318309069]],[[0.002604252891615,0.046462908387184,-0.11210268735886],[0.044793497771025,-0.11971163004637,-0.17850545048714],[-0.11974816769361,0.065962679684162,0.27237439155579]],[[-0.073744915425777,-0.18555162847042,-0.078580468893051],[-0.09526564180851,-0.15419952571392,-0.18292514979839],[0.12473583966494,-0.11371982097626,-0.13111527264118]],[[-0.15447114408016,-0.031285397708416,-0.32815897464752],[-0.16632874310017,-0.23878805339336,-0.23322588205338],[-0.063661746680737,0.012733363546431,-0.072380900382996]],[[0.053085561841726,-0.15671096742153,0.019746299833059],[0.009793552570045,-0.033341102302074,0.15523533523083],[0.042733956128359,0.022113228216767,5.4079791880213e-06]],[[-0.032700166106224,-0.045346491038799,0.0051345438696444],[-0.018151953816414,0.090268082916737,0.060842681676149],[-0.06141608953476,-0.064754299819469,0.16539578139782]],[[-0.080242626368999,-0.026850700378418,0.055325992405415],[0.071837641298771,0.040874172002077,-0.072736240923405],[-0.00042429051245563,-0.086708933115005,0.02488930337131]],[[-0.027834855020046,-0.052871700376272,0.074246510863304],[-0.04370903596282,-0.14107736945152,-0.026017013937235],[-0.0082197636365891,0.11253128200769,0.032638888806105]],[[0.048362698405981,0.036766540259123,0.11832071840763],[-0.017803950235248,0.18122853338718,0.079129405319691],[-0.014268037863076,-0.14527994394302,-0.048684477806091]],[[-0.11279607564211,0.0072507406584918,0.22760029137135],[-0.04938305914402,-0.039315488189459,0.058629989624023],[-0.081871472299099,0.15332344174385,0.15457464754581]],[[-0.074353814125061,-0.26097705960274,-0.10012750327587],[-0.041764359921217,-0.048518277704716,0.035856693983078],[0.010293686762452,0.083730816841125,0.054711900651455]],[[0.013939443044364,0.25485363602638,0.17998532950878],[-0.00087962142424658,0.080972529947758,-0.040991753339767],[-0.10670489817858,-0.012166289612651,-0.096857815980911]],[[0.1361992508173,-0.0096927862614393,-0.25779411196709],[0.11611075699329,-0.03984272107482,0.083724193274975],[0.099713422358036,0.12133303284645,-0.058967687189579]],[[0.021351095288992,0.017198588699102,0.040905192494392],[0.019498215988278,0.040384899824858,0.01270360685885],[0.03866208344698,-0.034752763807774,0.027884090319276]],[[0.19388148188591,0.13470293581486,-0.40146115422249],[0.098229393362999,-0.14700721204281,-0.041240017861128],[0.16447471082211,-0.022491507232189,-0.078648962080479]],[[0.06521899998188,0.097992561757565,-0.23975946009159],[0.0057435659691691,-0.10490427166224,-0.082894340157509],[0.046656563878059,-0.16951790452003,-0.094143517315388]],[[-0.070997722446918,-0.095289513468742,-0.080015383660793],[0.19850915670395,0.017739318311214,0.029005337506533],[-0.028452526777983,0.10468073934317,-0.015877084806561]],[[0.17724324762821,0.018981689587235,-0.084922477602959],[0.060153499245644,0.098370231688023,-0.02689428254962],[-0.039980795234442,0.012220157310367,0.028373416513205]],[[-0.036214247345924,0.062240239232779,0.17132836580276],[-0.075097471475601,0.026201531291008,-0.16558046638966],[0.032693836838007,-0.019929893314838,-0.14212231338024]],[[0.10718869417906,-0.10444618016481,-0.11503843963146],[0.017678501084447,-0.010204206220806,0.0512485653162],[-0.07548413425684,0.022029511630535,-0.065492078661919]],[[-0.1105554997921,-0.28414988517761,-0.23394714295864],[-0.11425102502108,0.054237939417362,0.054454475641251],[0.013091490603983,-0.24553970992565,-0.085606716573238]],[[-0.099966935813427,-0.17974902689457,-0.33383786678314],[-0.11276943981647,-0.067257955670357,0.08302316069603],[0.075932450592518,0.15210744738579,0.15224358439445]],[[0.099484577775002,0.098714604973793,-0.15465733408928],[0.009263688698411,-0.015721090137959,-0.00036427599843591],[-0.049958564341068,0.043503817170858,0.069440566003323]],[[0.057022530585527,0.21635140478611,-0.06353884935379],[0.082892797887325,-0.20765413343906,-0.020715309306979],[-0.024155851453543,0.14729535579681,-0.00257364124991]],[[0.060615476220846,0.097999036312103,0.039629112929106],[0.077785037457943,0.047873210161924,0.095939792692661],[-0.0227365270257,0.06172164157033,0.10499302297831]],[[-0.0033427819143981,0.015078691765666,-0.013371348381042],[0.23566691577435,-0.078383930027485,-0.12889420986176],[-0.076794326305389,0.068424537777901,0.04675279930234]],[[-0.012665127404034,0.02676098421216,0.12446674704552],[-0.11878392845392,0.030756955966353,0.034993294626474],[-0.1325356066227,-0.045981176197529,-0.032275635749102]],[[-0.016957778483629,-0.021008476614952,0.078646190464497],[0.017680931836367,0.089120015501976,0.010937168262899],[-0.0020545097067952,0.012336964718997,-0.08999414741993]],[[0.01843205653131,-0.1387342363596,-0.16096799075603],[-0.070005103945732,-0.089004270732403,0.061073902994394],[-0.022025488317013,0.055572424083948,0.089460045099258]],[[-0.14168965816498,-0.082186326384544,-0.2916721701622],[0.11117192357779,0.089607365429401,-0.063356854021549],[-0.00074750499334186,0.079263664782047,-0.16692082583904]],[[-0.066817067563534,-0.036237996071577,0.097949899733067],[0.14080755412579,-0.051393877714872,0.12617623806],[-0.10218941420317,0.0065675070509315,0.14128606021404]],[[-0.153484582901,-0.17157223820686,0.15586353838444],[0.068540699779987,-0.13702183961868,-0.19335649907589],[-0.036620955914259,-0.018612599000335,-0.20475555956364]],[[0.021204521879554,0.061673108488321,0.058687169104815],[-0.067537233233452,0.067109972238541,0.18320567905903],[-0.012754806317389,-0.028433287516236,-0.16069428622723]],[[-0.1036049425602,0.034087970852852,0.17091052234173],[-0.087661892175674,0.040727682411671,-0.20935401320457],[-0.11213500052691,-0.10570131242275,0.2785253226757]],[[-0.045606020838022,-0.067142136394978,-0.16618821024895],[-0.087371200323105,-0.015119067393243,0.0046968841925263],[0.048242144286633,-0.01571480371058,-0.0028461317997426]],[[-0.0094140581786633,-0.16427326202393,0.0059434482827783],[0.0083471667021513,0.28669050335884,0.031861033290625],[0.064503982663155,-0.06352049857378,-0.016131134703755]],[[-0.1174708083272,0.04669962823391,-0.02781848795712],[-0.10690147429705,0.048783153295517,0.058865454047918],[0.048300206661224,0.017534924671054,-0.020816372707486]],[[-0.1636285930872,-0.14093154668808,-0.29642528295517],[0.014244453050196,0.065713062882423,0.098229520022869],[0.053143609315157,0.058466587215662,0.027740422636271]],[[-0.12013579159975,-0.085779629647732,-0.20572984218597],[-0.10176406055689,-0.0076376930810511,-0.0094760302454233],[0.078785762190819,0.12191028147936,0.12044373899698]],[[-0.06265340000391,-0.15677851438522,0.19118244946003],[-0.0090140085667372,0.03164654225111,-0.17551355063915],[0.042502243071795,-0.00049487146316096,0.13712318241596]],[[0.11637628823519,0.053938671946526,-0.087907314300537],[-0.019584497436881,-0.044515203684568,-0.011134604923427],[0.12533608078957,-0.16433437168598,-0.032714530825615]],[[-0.070728085935116,0.048484832048416,-0.023867106065154],[-0.035403415560722,-0.15448075532913,-0.0037827889900655],[-0.069111131131649,-0.0072429003193974,-0.064208723604679]],[[0.0139001281932,-0.095970332622528,-0.16457743942738],[-0.062881082296371,0.035918414592743,0.094474375247955],[0.038424216210842,0.030896233394742,0.055824518203735]],[[0.021371733397245,0.069437637925148,0.073532320559025],[-0.0076427273452282,-0.087728023529053,-0.087414368987083],[-0.013442819938064,-0.0096574947237968,-0.0074239233508706]],[[-0.027239268645644,-0.11456000804901,-0.046217873692513],[-0.07159348577261,0.054191812872887,-0.0052588460966945],[0.0055505912750959,0.084911108016968,-0.044211205095053]],[[-0.054544039070606,-0.076725624501705,-0.013178558088839],[0.053538519889116,-0.10395283997059,-0.029337372630835],[0.042417142540216,0.16206340491772,0.026573371142149]],[[0.0080177970230579,-0.048294104635715,-0.093757122755051],[0.055698923766613,0.052721444517374,0.080912448465824],[0.007839085534215,-0.024409281089902,-0.025919672101736]],[[0.018290577456355,0.12337429821491,-0.064602181315422],[-0.092395089566708,-0.12300457805395,-0.024051243439317],[-0.099969111382961,-0.026699408888817,0.11569301784039]],[[0.074882484972477,0.0588618516922,0.020054791122675],[0.037313289940357,-0.02516364492476,-0.25773775577545],[-0.14945858716965,-0.11926385760307,-0.082843765616417]],[[-0.014896952547133,0.23212081193924,0.0073062940500677],[-0.10553696006536,0.11358092725277,-0.17076924443245],[0.018792264163494,-0.10948183387518,0.0053752833046019]],[[0.032801374793053,0.047890171408653,0.2909454703331],[0.038968879729509,-0.031686794012785,-0.11930222809315],[0.054696552455425,0.014304112643003,0.015580202452838]],[[0.10451644659042,-0.080828800797462,-0.041197907179594],[-0.016097839921713,-0.17365422844887,-0.066505692899227],[0.052211806178093,-0.03131603077054,0.11245813965797]],[[0.11539335548878,0.17939332127571,0.022437825798988],[0.06887423992157,-0.051052127033472,0.095207385718822],[-0.026191195473075,-0.012054438702762,-0.013683577999473]],[[0.029714547097683,0.026367804035544,0.067101567983627],[-0.036313682794571,-0.029028099030256,0.19079819321632],[0.020643664523959,0.015871176496148,-0.24707944691181]],[[-0.0097059831023216,-0.11330863088369,-0.063737101852894],[0.065379723906517,-0.085852272808552,-0.10266577452421],[0.044605799019337,-0.0068106888793409,-0.053340010344982]],[[-0.094361260533333,-0.1955935806036,-0.1221896559],[-0.054263666272163,0.059922214597464,0.14886726438999],[0.046099901199341,-0.034386094659567,0.0028033268172294]],[[-0.097976088523865,-0.13412021100521,-0.043500419706106],[-0.08186512440443,0.0080418903380632,0.062374178320169],[0.013368682004511,0.080092661082745,0.16569758951664]],[[0.078104130923748,0.11158653348684,-0.15087769925594],[0.015403348021209,0.059782419353724,0.18323646485806],[0.018022926524282,-0.11020734161139,-0.012940734624863]],[[-0.032990913838148,0.10209579020739,0.23381496965885],[-0.028500035405159,-0.0033606130164117,-0.11387734115124],[-0.16541804373264,-0.14563462138176,0.12041437625885]],[[-0.035051818937063,-0.091653317213058,0.37819162011147],[-0.001214460702613,0.013790495693684,0.11381903290749],[-0.0054598031565547,-0.1422358751297,-0.0084968451410532]],[[-0.20529714226723,-0.101513274014,-0.014537368901074],[-0.0086977547034621,-0.12205958366394,-0.055215734988451],[-0.16483934223652,-0.046999104321003,-0.068303033709526]]],[[[-0.022877288982272,-0.086465664207935,-0.05757013335824],[-0.015968263149261,-0.060768399387598,0.044760160148144],[0.0036583687178791,0.00054325832752511,0.0038635046221316]],[[-0.044921945780516,-0.044252533465624,0.014756235294044],[-0.02805363945663,0.0045819710940123,0.0083221141248941],[0.045955192297697,-0.031407579779625,-0.039389751851559]],[[-0.035312365740538,0.0031111731659621,0.035289846360683],[0.025990905240178,-0.072717688977718,-0.035310503095388],[0.025754561647773,0.028845785185695,-0.023093344643712]],[[-0.031638380140066,0.018072575330734,0.062374237924814],[-0.018907474353909,0.0078262938186526,0.019377566874027],[0.0027068825438619,0.0456019975245,-0.027450630441308]],[[-0.00059417070588097,-0.0062314509414136,0.040685039013624],[-0.040233552455902,-0.015458217822015,-0.065865747630596],[-0.012800282798707,-0.022689756006002,-0.013480883091688]],[[-0.019563233479857,-0.063705362379551,0.060431990772486],[-0.023101828992367,0.029083346948028,-0.045152772217989],[-0.0028752072248608,-0.024770196527243,-0.025788195431232]],[[0.010579161345959,0.057843934744596,0.003320730291307],[-0.0002826284035109,0.032923083752394,-0.015352967195213],[-0.050250880420208,0.029899289831519,-0.086355738341808]],[[-0.036820262670517,0.023514965549111,0.0041730203665793],[0.021404450759292,0.026722038164735,-0.013836185447872],[0.057591639459133,0.090919218957424,-0.011137566529214]],[[0.061298210173845,0.035196594893932,0.024471407756209],[-0.059904966503382,0.041765078902245,-0.01819571107626],[-0.0069160647690296,-0.046430565416813,-0.011734419502318]],[[-0.042578056454659,0.013084476813674,0.0051437104120851],[0.030804662033916,-0.058514345437288,-0.020678270608187],[0.0079555045813322,0.080771908164024,-0.0021575470454991]],[[-0.015191305428743,-0.0057822493836284,-0.010189425200224],[-0.055957783013582,0.0074647995643318,0.008809975348413],[0.0037720710970461,-0.0034750606864691,0.031043270602822]],[[-0.044698644429445,0.074108310043812,-0.047628216445446],[0.029328083619475,-0.069759123027325,0.036663115024567],[0.03398298099637,-0.015288753435016,0.079626455903053]],[[-0.090585738420486,0.015364047139883,0.044223677366972],[0.041470646858215,-0.11528986692429,-0.033194188028574],[-0.0062256478704512,-0.013427461497486,0.011454125866294]],[[0.027952177450061,0.0074814683757722,-0.07136033475399],[0.011551664210856,-0.022708471864462,-0.011929349973798],[-0.075672693550587,-0.037891194224358,-0.036434382200241]],[[0.041539970785379,0.037522047758102,0.054844215512276],[0.05336843803525,0.050245895981789,-0.051056381314993],[0.0071558663621545,0.069041788578033,0.031663652509451]],[[-0.035341586917639,0.0014964194269851,-0.0082251681014895],[-0.023160863667727,-0.024069510400295,-0.033158212900162],[-0.04326282069087,0.095895908772945,-0.0044225039891899]],[[-0.014276632107794,0.050526764243841,0.055535886436701],[-0.019883321598172,0.073458015918732,-0.015222051180899],[-0.020206039771438,-0.06155776232481,0.051174405962229]],[[-0.006437152158469,0.053883463144302,-0.036069836467505],[0.073613092303276,-0.023366052657366,0.0095210988074541],[-0.052379451692104,0.057476721704006,-0.032933622598648]],[[-0.019855789840221,-0.017803957685828,-0.055661275982857],[-0.042767275124788,-0.021633068099618,0.02428257279098],[-0.08781561255455,0.0067699067294598,0.041540700942278]],[[-0.037441954016685,0.019861007109284,-0.096923805773258],[0.043359979987144,0.027059987187386,0.036001477390528],[0.037501271814108,-0.00071311823558062,0.056055121123791]],[[0.046793356537819,0.059760957956314,-0.032119534909725],[0.03279510140419,-0.0019292132928967,-0.029816383495927],[0.074835941195488,-0.03936393558979,0.03089052811265]],[[0.042371958494186,-0.079822033643723,-0.027806172147393],[-0.086820483207703,-0.086302317678928,-0.033068206161261],[0.079232506453991,0.064682967960835,-0.034618899226189]],[[-0.0098844561725855,0.041905231773853,-0.0033232606947422],[-0.093282215297222,-0.044488396495581,-0.0089180832728744],[-0.030550703406334,-0.0243183914572,0.019063485786319]],[[-0.0088601419702172,-0.011954750865698,-0.0085682002827525],[0.0020441724918783,-0.045327678322792,-0.0042852354235947],[-0.032897744327784,0.029324242845178,-0.023551143705845]],[[-0.024658987298608,-0.061087787151337,-0.02380314655602],[0.027662778273225,0.0046124733053148,0.062996238470078],[0.061959609389305,-0.011013749986887,0.032788630574942]],[[-0.05507992580533,0.0084275119006634,-0.028473237529397],[0.0070480653084815,0.034525457769632,-0.0022817684803158],[-0.03918881341815,0.020558912307024,0.033279784023762]],[[0.025921128690243,-0.036302700638771,-0.035330086946487],[0.016734981909394,0.045744322240353,0.084690064191818],[-0.024123324081302,-0.019709173589945,0.014101386070251]],[[0.052487302571535,-0.011041284538805,-0.047117259353399],[0.002149895997718,-0.041066508740187,-0.022009192034602],[0.081837698817253,0.039854899048805,0.10192326456308]],[[-0.020026385784149,-0.009016951546073,-0.019269302487373],[-0.01623972132802,0.059766046702862,0.10482379794121],[-0.11737719923258,-0.044284153729677,-0.0045658010058105]],[[0.0026976915542036,-0.041647396981716,0.022009767591953],[-0.03220697119832,-0.046487625688314,-0.021481208503246],[-0.035700682550669,0.026223465800285,0.018757151439786]],[[0.0057439636439085,-0.044022966176271,-0.020701358094811],[0.007142570335418,0.0049042077735066,-0.039177756756544],[0.04696199670434,0.02339868247509,0.040501292794943]],[[-0.016093496233225,-0.11208589375019,0.024849355220795],[0.010883396491408,-0.05577715113759,0.081647120416164],[-0.044135041534901,-0.0018179884646088,-0.076446436345577]],[[0.0075357523746789,-0.0074540455825627,-0.00053223693976179],[0.054137736558914,-0.025031609460711,-0.023963252082467],[-0.053153306245804,-0.022970775142312,0.018879493698478]],[[0.071118704974651,-0.032195150852203,-0.033753789961338],[-0.0088681755587459,0.060305695980787,0.049394991248846],[-0.035968899726868,0.0018533525289968,-0.050178978592157]],[[-0.056610953062773,-0.02651553414762,-0.088589429855347],[0.039828423410654,0.0032927703578025,-0.08893895894289],[-0.05332612618804,0.015805207192898,0.026389561593533]],[[0.050669126212597,0.074719801545143,0.010003089904785],[-0.050074122846127,0.0071884416975081,-0.060188353061676],[-0.03038421459496,0.003404036629945,0.0032192184589803]],[[0.015567075461149,0.014377028681338,0.00042378820944577],[-0.057785674929619,-0.086515717208385,9.3001122877467e-05],[-0.07874434441328,0.044722940772772,-0.019059531390667]],[[0.024867959320545,0.010788629762828,-0.011139678768814],[-0.072673879563808,0.041267041116953,0.066513620316982],[0.04976138100028,0.043280392885208,0.044288456439972]],[[-0.027197144925594,-0.05939270183444,0.043558970093727],[0.069407753646374,-0.01316474750638,-0.079254314303398],[0.0098129380494356,-0.010929089970887,0.042786110192537]],[[-0.018925651907921,-0.013513730838895,0.036301404237747],[0.022739671170712,0.015446834266186,-0.086891353130341],[-0.0024922390002757,0.018878707662225,0.061989463865757]],[[0.012001207098365,0.024326708167791,-0.040265519171953],[0.031207984313369,-0.022155934944749,0.036464270204306],[-0.00787612516433,-0.026325259357691,0.063066251575947]],[[-0.019442932680249,-0.053585827350616,-0.095164351165295],[0.0051264665089548,0.009146498516202,-0.0088390214368701],[0.03408008813858,0.011978236958385,0.033916313201189]],[[-0.0067872107028961,-0.012860900722444,0.024933790788054],[-0.01776354573667,-0.041334420442581,-0.031363558024168],[0.00036823286791332,0.023960886523128,-0.040413022041321]],[[0.0053779445588589,-0.0088110817596316,-0.039899624884129],[0.0026844928506762,-0.011220498010516,0.087951965630054],[-0.11024789512157,-0.018186999484897,0.022400803864002]],[[0.036032684147358,-0.080668203532696,0.012662660330534],[-0.042201448231936,0.019362777471542,-0.017229337245226],[0.037414811551571,-0.056857749819756,-0.028274031355977]],[[0.02188160829246,-0.01296581979841,0.04531105607748],[0.075456582009792,-0.028192281723022,0.00036813842598349],[0.0098007656633854,0.050963267683983,-0.055192388594151]],[[0.034615118056536,-0.0034233033657074,-0.028436938300729],[0.020581293851137,0.040455125272274,-0.055114772170782],[0.0038473638705909,0.027978839352727,-0.010351383127272]],[[0.0053029102273285,-0.032931506633759,0.034230809658766],[-0.074777625501156,-0.010430814698339,0.059037160128355],[-0.019819401204586,-0.064236164093018,-0.051358658820391]],[[0.054011572152376,-0.060285601764917,0.02100589685142],[-0.086947366595268,0.055576980113983,0.046987239271402],[-0.0025906329974532,0.0010631147306412,-0.012812823988497]],[[0.0067644352093339,0.035615961998701,0.0017361266072839],[0.028614005073905,0.012657498009503,-0.02366260252893],[0.030797505751252,0.010414376854897,0.011138093657792]],[[-0.024993741884828,0.014194633811712,0.020645258948207],[0.050080068409443,-0.062399420887232,0.099675111472607],[0.015120203606784,-0.030486984178424,0.013524038717151]],[[0.10147252678871,0.047292891889811,-0.025328643620014],[0.0072533707134426,0.053549963980913,0.067500218749046],[0.022346410900354,-0.0099952183663845,-0.089529119431973]],[[0.00031322534778155,-0.029573136940598,-0.012389921583235],[-0.021659810096025,0.026481604203582,0.038254983723164],[-0.0071783270686865,0.021287374198437,0.058196499943733]],[[-0.012498241849244,-0.056635089218616,0.051042210310698],[-0.074551358819008,-0.063592590391636,0.00042067680624314],[-0.01371839735657,0.034523528069258,-0.044246226549149]],[[0.00081516423961148,-0.010368123650551,-0.041879810392857],[0.041931182146072,0.02438890747726,0.005759862717241],[0.0042956899851561,-0.013144912198186,0.095868468284607]],[[0.00084061449160799,-0.0070158313028514,0.044554933905602],[-0.010951465927064,0.011243258602917,0.039613377302885],[-0.015660513192415,0.065663434565067,-0.023739753291011]],[[-0.010717343539,-0.03468443825841,0.050772916525602],[-0.030648779124022,-0.065076507627964,-0.038028206676245],[0.013613296672702,-0.020912144333124,0.025940245017409]],[[-0.05034701153636,0.026409199461341,-0.036882396787405],[0.11695562303066,-0.034287113696337,0.0023648785427213],[0.012690924108028,0.018825436010957,0.017353009432554]],[[-0.040668234229088,0.035522773861885,0.0021127017680556],[0.0058382586576045,-0.0044682966545224,-0.03780822083354],[0.01950853317976,-0.017199203372002,0.019185921177268]],[[-0.018131153658032,0.068072363734245,-0.031441476196051],[-0.040173187851906,0.030293729156256,0.0044967695139349],[0.01774419285357,-0.0018899205606431,0.0418766066432]],[[0.035418126732111,-0.030613638460636,-0.072293736040592],[0.050335917621851,-0.012167152948678,-0.018344055861235],[-0.048628050833941,-0.014939793385565,-0.00114980712533]],[[0.042033165693283,-0.021457271650434,-0.0016877958551049],[0.01501233689487,-0.031983181834221,-0.031215660274029],[0.027789492160082,-0.05306776240468,-0.0037230614107102]],[[0.052136488258839,-0.047004643827677,-0.0062980530783534],[0.073777541518211,0.047988086938858,0.045833643525839],[0.0024806966539472,0.0038241350557655,0.0117132877931]],[[0.042625769972801,-0.012627908959985,0.049286417663097],[0.060544844716787,-0.063545003533363,0.085687644779682],[-0.035542324185371,-0.017120804637671,0.034440688788891]],[[-0.032886356115341,-0.05063896253705,0.0111328586936],[0.039683524519205,-0.035721488296986,0.032596677541733],[-0.026577733457088,-0.019008724018931,-0.056165304034948]],[[0.011307569220662,0.056600857526064,-0.11500814557076],[0.014113934710622,-0.063648246228695,0.0029235589317977],[0.048968698829412,-0.02385239303112,0.10391719639301]],[[0.014199988916516,-0.030036075040698,-0.043883323669434],[-0.012322946451604,0.057323735207319,0.02376995421946],[-0.019485360011458,-0.001679957495071,0.018355831503868]],[[-0.052154377102852,-0.099660202860832,-0.017325054854155],[0.025554433465004,-0.018131408840418,0.022910114377737],[0.032386869192123,0.090938366949558,-0.017424035817385]],[[0.056523106992245,0.044632390141487,0.0010246915044263],[-0.073524497449398,-0.0018583422061056,0.061183411628008],[-0.089532785117626,0.050282433629036,-0.0059711462818086]],[[-0.016445484012365,0.040514335036278,0.075008906424046],[0.070474654436111,0.049348708242178,-0.041709240525961],[-0.03773582354188,0.051467910408974,0.0010202267440036]],[[-0.025785364210606,-0.10490676015615,-0.039669722318649],[-0.016588300466537,-0.00093155237846076,0.058974079787731],[-0.020405175164342,0.019373789429665,0.071166828274727]],[[-0.10412762314081,0.059711493551731,-0.0031406655907631],[0.053083956241608,0.02223034016788,-0.0094307186082006],[-0.061350155621767,0.0061751934699714,0.022543489933014]],[[0.0069976518861949,0.025453424081206,0.0051481858827174],[-0.015408026054502,-0.0064105708152056,-0.033879332244396],[-0.0019608868751675,-0.059661243110895,-0.11162469536066]],[[-0.011362426914275,-0.017945723608136,0.047517828643322],[-0.01805698312819,0.011441343463957,0.047174867242575],[0.040314693003893,-0.038620825856924,-0.049169030040503]],[[-0.0027712304145098,-0.02358734421432,0.025827474892139],[0.065656833350658,-0.035144370049238,0.049498561769724],[-0.020108534023166,-0.011066867038608,0.016111584380269]],[[0.01706600561738,0.014873113483191,-0.010634242556989],[0.044557891786098,-0.05625282227993,0.092267714440823],[0.085595794022083,0.042888399213552,-0.055911134928465]],[[0.014035882428288,0.0084749488160014,0.048449460417032],[0.02245044708252,0.017814246937633,0.026986313983798],[-0.049828164279461,0.02515422180295,-0.016560219228268]],[[-0.00027429009787738,0.020020890980959,0.012446597218513],[0.024229997768998,-0.0098680472001433,-0.053577210754156],[-0.002364790532738,-0.05750622972846,0.07158900052309]],[[0.028235593810678,0.10452546924353,0.021565582603216],[-0.019886648282409,0.057070963084698,0.031709294766188],[-0.011698413640261,-0.02876552939415,-0.058643009513617]],[[-0.01908859424293,-0.039175976067781,0.038414239883423],[0.026957297697663,-0.070710308849812,0.029735468327999],[0.027882751077414,0.096018262207508,0.0023915297351778]],[[0.081836268305779,0.026125870645046,-0.031772587448359],[0.057243283838034,0.044412739574909,-0.012149094603956],[0.0029887838754803,0.047434598207474,-0.00045375432819128]],[[-0.012829815037549,-0.054191168397665,0.046444244682789],[0.039189144968987,0.026027012616396,-0.0077478745952249],[-0.033267240971327,0.0097413333132863,0.016820954158902]],[[-0.021582372486591,-0.074309960007668,0.042480487376451],[0.030031150206923,-0.011680052615702,-0.028466476127505],[0.062907792627811,0.014588398858905,0.039385847747326]],[[-0.0094353603199124,0.07279446721077,0.11197540163994],[-0.071354947984219,0.022961657494307,-0.030550191178918],[0.018082452937961,0.058310899883509,0.055925574153662]],[[-0.054517976939678,-0.025409800931811,0.044979818165302],[-0.028594540432096,-0.016874816268682,-0.03122147358954],[-0.012838447466493,-0.00046241722884588,-0.0093544200062752]],[[0.019517403095961,0.025378877297044,0.043739754706621],[-0.0066572893410921,0.10003436356783,-0.014307253994048],[0.063354223966599,-0.008313394151628,-0.024573149159551]],[[-0.050046041607857,-0.039387349039316,-0.029915416613221],[0.0030226798262447,0.049195662140846,0.011142291128635],[-0.04909623414278,0.0013055501040071,0.031171210110188]],[[0.039763629436493,-0.090882353484631,0.019018495455384],[-0.017071064561605,-0.057776339352131,-0.015081495977938],[0.025151737034321,-0.042532835155725,-0.02188198082149]],[[-0.021601097658277,0.05671663209796,0.062889978289604],[-0.040764700621367,0.016571309417486,-0.011610724963248],[-0.0092172063887119,-0.002879437059164,-0.017440531402826]],[[-0.035849548876286,-0.0055493996478617,-0.069664597511292],[0.032662663608789,-0.044954963028431,-0.022499686107039],[-0.0014440957456827,-0.042031664401293,0.035026073455811]],[[0.015665827319026,0.016483591869473,0.03363623470068],[-0.0010212331544608,0.021976415067911,0.0068030250258744],[-0.026646994054317,-0.062767647206783,0.024207951501012]],[[0.07484508305788,0.038140919059515,-0.034758910536766],[-0.019499244168401,-0.018004044890404,-0.072341203689575],[9.5633629825898e-05,0.027675528079271,0.012429661117494]],[[0.015267686918378,-0.031519833952188,-0.0039265803061426],[-0.063944190740585,-0.038343146443367,-0.0077616414055228],[-0.0096795316785574,-0.090872623026371,0.016147021204233]],[[0.049524206668139,-0.0062139853835106,0.00082021852722391],[0.0059314859099686,0.081469289958477,0.040643244981766],[0.015326173044741,0.024443374946713,-0.12062150239944]],[[-0.034972388297319,-0.023275002837181,0.058456238359213],[0.0544598326087,-0.047328192740679,-0.072391904890537],[0.02837772667408,0.072247095406055,0.010102286934853]],[[-0.039704531431198,-0.044045768678188,-0.013497671112418],[0.0020621828734875,-0.0022292241919786,0.078426212072372],[0.064435496926308,-0.074601456522942,-0.043593712151051]],[[-0.056541424244642,0.041537705808878,-0.0027597802691162],[0.036321803927422,0.038156520575285,-0.079990960657597],[-0.025020455941558,-0.0077058700844646,0.0027819185052067]],[[0.051362328231335,-0.024032417684793,-0.011676865629852],[0.0091949477791786,0.051549416035414,0.041613105684519],[-0.055041197687387,0.10135285556316,0.038398839533329]],[[-0.024736201390624,-0.012042948044837,-0.0081545915454626],[-0.034335494041443,0.0034343039151281,0.024430643767118],[0.029571456834674,0.011824691668153,0.038486111909151]],[[-0.0016623920528218,0.010378535836935,0.073187075555325],[-0.018191182985902,0.006487887352705,-0.072167724370956],[0.023988692089915,-0.035541988909245,0.047663196921349]],[[-0.025281632319093,0.0088966637849808,0.0081026321277022],[0.043025337159634,-0.01833151653409,-0.033828761428595],[0.016342392191291,0.005484008230269,0.02628287486732]],[[0.059409096837044,0.076427891850471,0.058417808264494],[0.037058722227812,0.011124430224299,-0.044451829046011],[0.04506379365921,0.04700106754899,-0.02574348077178]],[[0.0039657750166953,-0.016491925343871,-0.0043826191686094],[0.09634243696928,0.0082753887400031,-0.044936135411263],[-0.022300567477942,0.019229726865888,0.011845358647406]],[[0.0012153895804659,0.061278726905584,-0.01603670977056],[-0.040661547333002,-0.049624565988779,0.034687642008066],[-0.00062924798112363,0.031413231045008,-0.047409810125828]],[[0.052092101424932,0.11269139498472,-0.035837225615978],[0.038542833179235,0.008364868350327,-0.030898282304406],[-0.0065412274561822,-0.056042782962322,-0.014089765027165]],[[0.047893360257149,-0.052968770265579,0.007660148665309],[-0.050722289830446,-0.0053949039429426,-0.0018420128617436],[-0.014343785122037,0.0081801861524582,-0.045085459947586]],[[-0.01406461559236,-0.097153753042221,0.026334304362535],[0.0014894163468853,0.11463288217783,0.049772556871176],[0.020856231451035,-0.049511667340994,0.056153111159801]],[[-0.035059966146946,0.0093078995123506,-0.11371762305498],[-0.010968336835504,-0.044362034648657,-0.013631942681968],[-0.053327508270741,0.019184352830052,-0.051699221134186]],[[0.071847468614578,0.024032516404986,0.0092024765908718],[-0.014084419235587,0.029180362820625,-0.003037764923647],[-0.0077604339458048,-0.014047614298761,0.088831342756748]],[[-0.061081651598215,-0.093320108950138,-0.0611785762012],[0.015281744301319,-0.04664870351553,-0.033846464008093],[0.047751780599356,-0.028839541599154,0.018736749887466]],[[0.064868122339249,0.017663035541773,0.039373345673084],[0.02558571845293,0.028071843087673,-0.016462242230773],[0.0070042326115072,0.061256319284439,0.054901652038097]],[[0.016679182648659,-0.084897793829441,-0.051099959760904],[-0.052251238375902,-0.024612832814455,0.032104838639498],[-0.045182719826698,0.025298962369561,-0.0089498488232493]],[[0.047005519270897,-0.046651672571898,0.011338845826685],[0.015084492973983,0.058415971696377,-0.018258949741721],[0.012167606502771,-0.055767510086298,-0.026164023205638]],[[-0.017017494887114,0.050785087049007,-0.0070571093820035],[0.024328213185072,-0.073291659355164,0.030290763825178],[0.010604019276798,-0.005981014110148,-0.084985285997391]],[[0.059995416551828,0.030371405184269,-0.057625904679298],[-0.049306433647871,-0.015928652137518,-0.0087803639471531],[-0.058693200349808,0.026606088504195,-0.0061359205283225]],[[0.039138667285442,0.092174969613552,0.031527396291494],[-0.051554962992668,0.0005816732882522,0.022313181310892],[0.024707924574614,-0.001231579342857,0.021945646032691]],[[-0.023807428777218,0.018717167899013,-0.051858801394701],[-0.022115644067526,0.068890497088432,0.044115766882896],[0.0086676543578506,-0.016010571271181,0.031314965337515]],[[-0.024926381185651,-0.0674067735672,-0.019899468868971],[0.060630310326815,-0.0046548042446375,-0.010182218626142],[0.055275980383158,-0.042104128748178,0.022926425561309]],[[0.02098767273128,0.052488870918751,0.054262313991785],[-0.01661679521203,0.0049517038278282,-0.017748070880771],[0.087693527340889,0.031235463917255,0.0051103243604302]],[[0.014458172023296,-0.00939866527915,-0.025521012023091],[-0.03900620341301,0.076720796525478,0.056736432015896],[-0.036886665970087,0.036527879536152,0.015792252495885]],[[-0.047202844172716,-0.086778782308102,0.026973260566592],[0.0038259872235358,-0.026175621896982,0.02131424471736],[-0.0050464225932956,0.045627150684595,0.0058544012717903]],[[0.08131954818964,0.0601588152349,-0.010333285667002],[0.02868789061904,-0.013966808095574,-0.058849323540926],[0.059611905366182,-0.087701059877872,-0.029425891116261]],[[-0.055999271571636,-0.018480349332094,0.0074593545868993],[-0.028748979791999,0.031007058918476,0.015095951966941],[0.024028539657593,-0.015363888815045,0.090605176985264]],[[-0.0013807317009196,-0.0083873057737947,0.0066292867995799],[0.019483048468828,-0.022071408107877,0.048795025795698],[-0.023152941837907,-0.086545139551163,-0.050766080617905]],[[-0.011654551140964,-0.0081242946907878,-0.02159752510488],[0.02339611761272,0.07210748642683,0.076376549899578],[0.023831924423575,0.084604315459728,0.030297541990876]],[[0.00034125294769183,-0.041531901806593,-0.035855360329151],[0.019356731325388,-0.081866666674614,0.026557484641671],[0.061056766659021,-0.039386287331581,-0.024793544784188]],[[-0.0037459176965058,0.010423978790641,0.0660699903965],[-0.019802927970886,0.067680068314075,-0.06239876896143],[-0.0086310291662812,-0.093377582728863,-0.031794901937246]],[[-0.010800128802657,-0.0093148425221443,-0.0028891726396978],[0.060022301971912,-0.062989056110382,0.054516896605492],[-0.054697439074516,0.012319587171078,-0.052497755736113]]],[[[-0.059772565960884,0.031914599239826,0.072841942310333],[-0.01504741795361,-0.060593549162149,-0.063779249787331],[-0.011987489648163,-0.0061238245107234,0.072616025805473]],[[-0.024819714948535,0.0075539541430771,-0.10572113096714],[-0.065857745707035,-0.043615650385618,-0.042404666543007],[0.054722767323256,0.073055170476437,-0.070295035839081]],[[0.05465167760849,-0.021088866516948,-0.0062233163043857],[-0.04846203327179,0.03658264875412,-0.018312865868211],[0.05490418151021,0.0045124203898013,0.0091917375102639]],[[0.030437855049968,-0.045589547604322,0.039777062833309],[0.003078673966229,0.017453169450164,0.031517636030912],[0.036036349833012,-0.012108043767512,0.02705342322588]],[[0.021521225571632,-0.018072880804539,0.011507079936564],[-0.0064545446075499,-0.032521672546864,-0.073411710560322],[-0.084406405687332,-0.038521498441696,-0.046057652682066]],[[0.086251772940159,0.039540428668261,0.052256587892771],[-0.077999196946621,0.051504552364349,-0.0022699069231749],[0.0043390705250204,-0.068619295954704,0.035614658147097]],[[-0.0051786862313747,-0.032884661108255,0.048542216420174],[-0.030236488208175,0.0018776609795168,-0.051831871271133],[-0.067113198339939,0.033346094191074,0.091755613684654]],[[0.058752786368132,0.031997632235289,-0.048765704035759],[0.0032301864121109,0.0016515891766176,0.079124838113785],[0.040471609681845,-0.047940984368324,0.025143822655082]],[[-0.1123191267252,0.042976900935173,-0.0066434638574719],[-0.032691612839699,0.040677219629288,-0.025056989863515],[-0.015041369944811,-0.010982160456479,-0.052735853940248]],[[0.070578157901764,0.08575613796711,0.091791465878487],[0.02928351983428,0.066006906330585,0.12552006542683],[0.19769029319286,-0.016192900016904,0.064455658197403]],[[-0.11520890146494,-0.072160750627518,-0.032779343426228],[0.052305072546005,-0.11377381533384,0.0093059660866857],[-0.045770090073347,0.032837558537722,0.0027192246634513]],[[-0.049549747258425,0.089085184037685,0.022704994305968],[-0.051353976130486,0.079825684428215,0.062846526503563],[0.0071406112983823,0.13390111923218,0.052734348922968]],[[0.03290268778801,-0.028889261186123,0.034789849072695],[0.052185200154781,-0.070652768015862,-0.089012831449509],[0.04808321595192,-0.027761083096266,0.035393975675106]],[[0.0085226213559508,0.030062034726143,0.035091619938612],[0.030342461541295,0.029766090214252,0.067185558378696],[0.025202495977283,0.03003228828311,0.043920826166868]],[[0.011415273882449,0.050415199249983,-0.0068875453434885],[0.057354390621185,0.070826426148415,0.019399417564273],[-0.028649251908064,0.13433831930161,0.043825436383486]],[[-0.021803021430969,0.030857771635056,-0.026378110051155],[-0.047871954739094,-0.10503409802914,-0.041396804153919],[0.0170136410743,-0.0083645703271031,-0.016867652535439]],[[-0.013605517335236,-0.066407807171345,-0.063213102519512],[0.028649907559156,0.033143941313028,0.094214536249638],[0.043383799493313,0.080063030123711,0.064225904643536]],[[0.0050231665372849,-0.077029369771481,0.018971726298332],[-0.066115096211433,0.015729788690805,-0.0020630350336432],[0.068861983716488,-0.12525519728661,-0.019287627190351]],[[-0.036576833575964,-0.10010827332735,-0.021448126062751],[0.011750714853406,0.0089921690523624,0.027437491342425],[0.033809389919043,0.017065390944481,-0.038156244903803]],[[0.11847122013569,0.015285214409232,-0.023906579241157],[0.016230538487434,0.047719061374664,-0.026271883398294],[0.086689747869968,0.069738671183586,0.059888005256653]],[[0.024913413450122,-0.016164731234312,0.025339664891362],[-0.032651040703058,0.063146829605103,0.0098413368687034],[-0.0082548456266522,-0.01742522418499,-0.022803289815784]],[[0.058920077979565,-0.0029063459951431,-0.015764253214002],[0.02156700566411,-0.011105592362583,0.027308192104101],[0.0023136888630688,-0.0030415842775255,0.050018060952425]],[[0.0030537925194949,0.0057155485264957,-0.076951287686825],[0.024369023740292,-0.10851905494928,-0.013829040341079],[-0.0096982689574361,-0.094264857470989,-0.00096137268701568]],[[0.0067592156119645,-0.034259509295225,-0.029881298542023],[0.06641536206007,-0.12334524095058,-0.11651480197906],[-0.045082505792379,0.038701672106981,-0.072753481566906]],[[-0.049532655626535,-0.057626415044069,0.060087028890848],[0.013853542506695,0.021646147593856,-0.015349881723523],[-0.024953024461865,-0.0096008647233248,0.031127853319049]],[[-0.031880177557468,-0.082555085420609,0.010132262483239],[-0.063617378473282,0.021362110972404,0.031473640352488],[-0.062566615641117,-0.12964935600758,-0.03915474191308]],[[0.029547700658441,-0.033754106611013,0.030207483097911],[0.020710175856948,-0.078148677945137,-0.029641890898347],[0.086787521839142,-0.014360819011927,-0.043384343385696]],[[-0.054574083536863,-0.063670508563519,0.062634155154228],[0.018190693110228,0.024846458807588,-0.043732188642025],[-0.02423857524991,-0.039517875760794,-0.031698130071163]],[[0.021868763491511,-0.13742816448212,0.0091478433459997],[-0.022745165973902,0.042475756257772,0.04304800927639],[0.03863363340497,0.011650741100311,0.044075645506382]],[[0.0099327936768532,0.014315229840577,0.071588315069675],[-0.061333194375038,0.0017363355727866,0.0052422042936087],[-0.033830761909485,0.037662498652935,0.031968627125025]],[[-0.012434024363756,0.062606498599052,0.0034917516168207],[-0.0099580707028508,-0.025070242583752,-0.030452633276582],[-0.016276735812426,0.089934334158897,0.02015389315784]],[[0.10772412270308,0.019368398934603,0.0015956584829837],[0.029442925006151,-0.058567099273205,-0.068002708256245],[-0.0208261590451,0.0043065780773759,-0.058815769851208]],[[-0.046529371291399,-0.040541216731071,0.023347314447165],[0.061510939151049,0.058845546096563,0.014524187892675],[-0.01796330884099,0.033329460769892,0.024075536057353]],[[0.013375330716372,0.0074894959107041,0.0040389765053988],[0.058374680578709,0.096359059214592,0.050762727856636],[0.060004025697708,-0.011836593970656,0.051710560917854]],[[0.013297870755196,-0.0061620729975402,-0.084500662982464],[0.057550724595785,-0.026457563042641,-0.086650438606739],[-0.046432249248028,0.0098843201994896,0.058338321745396]],[[0.0056280381977558,0.014596650376916,-0.010957442224026],[-0.02675549313426,-0.041757110506296,-0.050651304423809],[0.0072962236590683,-0.034478079527617,-0.05012546852231]],[[-0.00093215657398105,0.045179218053818,-0.049372646957636],[0.035218216478825,-0.0057316371239722,0.06214701756835],[0.012909180484712,-0.028326544910669,-0.053483940660954]],[[0.019632548093796,-0.046871066093445,-0.0050874897278845],[0.030363507568836,0.0048949695192277,0.051137648522854],[0.005369589664042,0.02160901017487,0.0071456618607044]],[[-0.050612639635801,0.058775786310434,-0.057443466037512],[0.035166513174772,0.052235774695873,-0.014461345039308],[0.11693514883518,0.022567188367248,0.07997577637434]],[[-0.011606489308178,-0.0096790883690119,-0.10624699294567],[0.059175118803978,-0.0070385574363172,0.019160576164722],[0.024718875065446,0.032517541199923,0.026666391640902]],[[-0.0029157300014049,-0.035625949501991,-0.02074671164155],[0.034269690513611,-0.1014616638422,0.00077873503323644],[-0.0087744351476431,0.04054843261838,-0.0056645264849067]],[[0.013515776023269,-0.0044976267963648,0.081892363727093],[-0.020176427438855,-0.017415603622794,0.039906360208988],[-0.027517264708877,-0.029252678155899,-0.019818179309368]],[[-0.0066888104192913,-0.032860465347767,0.0057781767100096],[-5.4385825933423e-05,0.0011311956914142,0.086518682539463],[-0.017440469935536,0.0057914480566978,-0.015849327668548]],[[-0.023164261132479,-0.067243196070194,-0.035125087946653],[-0.059009976685047,0.018369797617197,0.042625900357962],[-0.02029132284224,-0.0692538022995,0.060687527060509]],[[0.045162010937929,-0.002428017091006,-0.0468540340662],[-0.074182264506817,0.012615348212421,-0.0084524843841791],[-0.068921588361263,0.030820734798908,0.015565847046673]],[[0.033491246402264,0.040839206427336,0.0018044475000352],[-0.0047026909887791,-0.016255350783467,0.061525199562311],[0.061183899641037,0.057945165783167,0.052358504384756]],[[0.017851762473583,-0.033217806369066,0.03849345818162],[0.040780685842037,-0.065480843186378,-0.022388502955437],[0.020650221034884,0.061228256672621,0.025670086964965]],[[0.00026639952557161,-0.026709504425526,0.10786807537079],[-0.026806872338057,-0.065616726875305,0.084682308137417],[-0.019580138847232,0.011090638116002,0.018802147358656]],[[0.069017298519611,-0.005154034588486,0.056312069296837],[-0.013192203827202,0.044783528894186,0.020704004913568],[0.10858059674501,-0.01957606524229,0.055536292493343]],[[0.055829029530287,-0.0051866145804524,0.081894151866436],[0.017712697386742,0.025326306000352,-0.014373422600329],[-0.024520918726921,-0.008328516036272,0.045014549046755]],[[-0.04599292948842,-0.015500489622355,-0.049468666315079],[-0.056250054389238,0.015933059155941,-0.088695243000984],[0.088465459644794,-0.06062875688076,-0.020385127514601]],[[0.014420803636312,-0.04396440461278,0.033888466656208],[0.0052520683966577,0.0083426618948579,-0.07807819545269],[0.062540106475353,0.10462192445993,-0.090626768767834]],[[0.034665461629629,-0.05895359814167,-0.019530676305294],[0.082750082015991,0.026322722434998,0.033832486718893],[0.069848410785198,0.033264990895987,0.0023627963382751]],[[0.012930867262185,0.02799098007381,-0.074061639606953],[0.02051991596818,0.030556157231331,0.043478772044182],[-0.035685982555151,0.059310156852007,0.012482536956668]],[[-0.032486826181412,-0.066182121634483,0.0043257386423647],[-0.008997063152492,0.083196759223938,-0.033215120434761],[0.053445748984814,0.029508385807276,0.050298061221838]],[[0.059232722967863,0.093659497797489,0.040308341383934],[0.064303934574127,-0.067274980247021,0.0039586196653545],[0.10140713304281,-0.015493669547141,0.0027357717044652]],[[0.017914155498147,-0.0094880107790232,-0.0292216129601],[0.01250087749213,0.015688084065914,0.04219925776124],[-0.041262488812208,-0.00082126021152362,-0.0082993675023317]],[[-0.00012247759150341,0.038868501782417,-0.021428791806102],[-0.012606624513865,0.062615230679512,-0.02332491055131],[-0.010294241830707,-0.02346882969141,0.02122669480741]],[[-0.0075391978025436,-0.038703095167875,-0.0099307680502534],[0.023278037086129,0.062494497746229,-0.00090399658074602],[0.0068364725448191,0.073829218745232,0.011888799257576]],[[-0.0040578893385828,0.026759704574943,0.044461198151112],[0.0056937248446047,-0.06070576235652,0.099653750658035],[-0.01251330319792,0.024907272309065,0.086916372179985]],[[-0.036387510597706,0.042889755219221,-0.026525735855103],[-0.013313980773091,0.018248530104756,0.072872504591942],[-0.09058291465044,-0.02591566555202,-0.050964996218681]],[[-0.016057142987847,-0.066670477390289,-0.017395719885826],[-0.019252711907029,-0.028493661433458,-0.026863051578403],[-0.032045904546976,-0.068096555769444,0.019162969663739]],[[-0.039768807590008,0.020079057663679,0.046950682997704],[0.026713509112597,-0.0098964078351855,0.033830884844065],[0.033884458243847,-0.024125587195158,-0.023829253390431]],[[-0.0015271948650479,0.0046189082786441,-0.078982003033161],[0.10253139585257,-0.035836387425661,0.028561798855662],[-0.044486720114946,0.013198336586356,-0.026548417285085]],[[-0.042663931846619,0.028982982039452,0.011244950816035],[-0.052389901131392,-0.092325456440449,0.020150776952505],[0.016764851287007,0.041036158800125,-0.022674292325974]],[[-0.051850918680429,-0.0021327533759177,-0.019362479448318],[0.0096709541976452,0.055928159505129,-0.0077691343612969],[0.041557166725397,0.0030066233593971,0.034188896417618]],[[0.08674468845129,0.0536243095994,-0.067312344908714],[0.014859179034829,0.063022688031197,0.050604689866304],[0.01453825738281,0.029959769919515,0.017583023756742]],[[0.03473762050271,0.052613399922848,-0.0013961548684165],[-0.01344345882535,0.11980406939983,0.0042721433565021],[0.03836378455162,0.044340591877699,0.042807821184397]],[[0.046659976243973,-0.043996218591928,0.073253430426121],[0.001217931159772,0.030241280794144,-0.058060389012098],[0.060528617352247,0.044235866516829,-0.05409087985754]],[[0.0062812156975269,-0.044200014322996,-0.015181560069323],[-0.020576128736138,0.047321639955044,0.0089898118749261],[0.056608960032463,-0.029353089630604,0.064574114978313]],[[-0.085405685007572,-0.030436577275395,0.028502594679594],[-0.0018836376257241,0.075736969709396,0.03258740529418],[-0.029125595465302,0.062917359173298,-0.073871098458767]],[[0.037921711802483,0.06972137093544,0.020082924515009],[-0.041818473488092,0.021513903513551,-0.054842837154865],[0.019329821690917,0.014541413635015,0.01783736795187]],[[-0.04999903216958,0.04298559948802,0.034659069031477],[-0.074709847569466,0.019080827012658,-0.030276894569397],[0.034963298588991,0.001442851847969,-0.05054223164916]],[[0.048050884157419,0.017120633274317,-0.092048697173595],[0.0070528122596443,0.058315135538578,-0.0072495522908866],[-0.0027886177413166,0.045221213251352,0.0077730934135616]],[[0.10407869517803,0.06495326757431,-0.011599984951317],[-0.053924437612295,0.020545901730657,0.053788527846336],[0.080031029880047,-0.0024107603821903,0.00022407303913496]],[[0.050972133874893,-0.00097698241006583,-0.13309943675995],[0.10428535193205,0.014814121648669,-0.066118702292442],[-0.016813581809402,0.035819083452225,-0.0051385168917477]],[[0.040858756750822,0.021257322281599,0.04923902079463],[-0.045348480343819,0.0069888378493488,-0.055715702474117],[-0.095452651381493,0.037305194884539,0.015006304718554]],[[-0.0033943967428058,0.061806738376617,0.05399102345109],[0.012540061026812,-0.061808321624994,0.0074537117034197],[-0.029717165976763,-0.025064235553145,0.044523786753416]],[[0.073961526155472,0.0026787284296006,0.069065891206264],[-0.024007001891732,-0.015450041741133,-0.020289465785027],[-0.066758662462234,-0.081380121409893,0.0016338566783816]],[[-0.0098262671381235,0.018594911321998,0.028567316010594],[-0.041388783603907,-0.0095459530130029,-0.049680970609188],[-0.048719570040703,0.031591959297657,-0.0074189309962094]],[[0.031896438449621,-0.026189785450697,0.031219284981489],[0.098326876759529,0.014599731191993,0.017617991194129],[0.00064783700508997,0.010644634254277,0.034525234252214]],[[0.003800441743806,-0.027067733928561,-0.074508301913738],[0.022994142025709,-0.047679431736469,-0.043618317693472],[0.0011114680673927,-0.051287550479174,-0.035945314913988]],[[0.034787137061357,0.013156980276108,-0.033515278249979],[0.094030648469925,0.07307281345129,-0.033251632004976],[-0.024924084544182,0.11763441562653,0.055045157670975]],[[0.079732999205589,0.073207668960094,0.044564958661795],[0.029434695839882,0.044308375567198,0.022659158334136],[0.059675630182028,-0.027460973709822,-0.0025059641338885]],[[0.018797282129526,-0.022645842283964,-0.014662148430943],[-0.009392230771482,-0.060645293444395,0.012143084779382],[-0.001547914929688,0.015262678265572,-0.051744494587183]],[[0.035275250673294,0.031712848693132,-0.020286047831178],[0.070579499006271,0.032896064221859,-0.017467327415943],[0.0045307790860534,-0.076001636683941,-0.021099667996168]],[[-0.054416816681623,0.016129603609443,-0.073371641337872],[0.083994090557098,-0.037880785763264,0.060916066169739],[0.015384048223495,-0.080908924341202,-0.02651303447783]],[[-0.015746699646115,-0.0045986562035978,-0.010808282531798],[0.0093600573018193,0.066672429442406,-0.060510657727718],[-0.011467099189758,0.11688733845949,-0.039323784410954]],[[-0.063850581645966,0.083257384598255,0.031544800847769],[0.022724544629455,-0.072408750653267,-0.0098668914288282],[-0.0078319422900677,-0.035056404769421,-0.0091637251898646]],[[-0.082773342728615,-0.023790664970875,0.090156078338623],[-0.051570992916822,0.011793926358223,0.024447293952107],[-0.038660738617182,-0.0013204887509346,0.10191175341606]],[[0.048859421163797,0.05263202264905,-0.030693747103214],[-0.043071966618299,-0.0045060641132295,-0.02947417087853],[0.056895051151514,0.031731598079205,0.049220554530621]],[[0.05117642134428,0.053898073732853,0.034985519945621],[0.018186768516898,0.032749067991972,-0.046525537967682],[0.05715361982584,-0.028348473832011,0.087046273052692]],[[0.032111786305904,0.054901078343391,-0.024822823703289],[-0.0098946699872613,-0.030285386368632,-0.024508818984032],[-0.021470632404089,-0.0023581155110151,-0.0097049819305539]],[[0.011353432200849,0.064603507518768,-0.020852502435446],[0.049281388521194,0.083099067211151,0.028287243098021],[-0.045627564191818,0.010800316929817,0.079851023852825]],[[-0.025668086484075,0.049998834729195,0.012390974909067],[-0.039375349879265,0.030823783949018,0.042290739715099],[0.013416055589914,0.0031733615323901,0.050434049218893]],[[-0.094028130173683,-0.059968437999487,-0.0092245917767286],[-0.045545592904091,0.017513452097774,0.019562525674701],[-0.013308887369931,0.0043585374951363,-0.03731556609273]],[[-0.013861845247447,0.016649710014462,-0.043227978050709],[-0.066038936376572,0.0035876985639334,0.1073709577322],[-0.034586351364851,-0.045714009553194,0.099371835589409]],[[0.047225013375282,0.053887002170086,0.043303925544024],[0.024847323074937,0.0029615534003824,0.027476882562041],[0.0089931096881628,0.017342265695333,0.054243914783001]],[[-0.037638999521732,0.0075430502183735,-0.034476917237043],[-0.029427330940962,0.02770821005106,0.009521315805614],[0.018587056547403,-0.010141376405954,-0.028650790452957]],[[0.039966743439436,0.028063455596566,-0.035014946013689],[-0.024138266220689,0.020299550145864,0.04455067589879],[-0.026198061183095,-0.01095122564584,-0.017492964863777]],[[0.039133485406637,0.024060292169452,-0.10623367130756],[-0.031466022133827,-0.0066515547223389,-0.02298935316503],[-0.059300854802132,-0.034312076866627,-0.050297770649195]],[[0.0094971153885126,-0.079997360706329,-0.044543739408255],[-0.039977915585041,0.0066347583197057,-0.0091488352045417],[0.0051472098566592,0.10162914544344,0.016429601237178]],[[-0.084565997123718,0.082773268222809,0.0099700102582574],[-0.021191591396928,-0.047331839799881,-0.034072414040565],[-0.00093455740716308,0.031326353549957,-0.021641187369823]],[[-0.029465494677424,0.045360956341028,-0.022984890267253],[0.054922141134739,-0.027758859097958,0.066841036081314],[0.027734884992242,-0.036099936813116,0.035454016178846]],[[-0.050273831933737,0.046902932226658,0.011497624218464],[0.061249345541,-0.036787770688534,0.045038565993309],[0.043952308595181,0.09692095965147,-0.0072859604842961]],[[-0.017404837533832,-0.085056766867638,0.066579237580299],[0.061605177819729,-0.041060782968998,0.015186406672001],[0.0039895591326058,0.015996782109141,-0.013233936391771]],[[0.015493420884013,-0.0094092171639204,-0.11638125032187],[0.070683859288692,0.039592918008566,-0.013448637910187],[-0.024850277230144,0.017503593116999,0.087003916501999]],[[0.034281242638826,-0.018703494220972,0.021171253174543],[-0.04104471206665,0.028386134654284,0.020427033305168],[0.039933871477842,-0.052236422896385,-0.039197765290737]],[[-0.052146770060062,0.11040212213993,-0.033878024667501],[0.031782831996679,-0.032427132129669,0.0062194913625717],[0.022582786157727,-0.0033202120102942,0.1170356720686]],[[-0.046840280294418,-0.022713361307979,-0.01041934452951],[0.066369995474815,-0.047280736267567,-0.05545599013567],[-0.036532465368509,0.065018549561501,0.0047719273716211]],[[-0.06623836606741,0.040591910481453,0.01127206068486],[0.053570427000523,-0.026529099792242,0.012931717559695],[0.051296908408403,-0.025171002373099,-0.033017966896296]],[[-0.014955055899918,-0.057830661535263,0.022530779242516],[-0.11917145550251,0.010507312603295,0.10389129817486],[0.0014553511282429,0.010146935470402,-0.017650811001658]],[[0.0053788512013853,0.011944955214858,-0.030021905899048],[0.00054996350081638,0.05156160145998,-0.068799160420895],[0.053024873137474,-0.032043721526861,0.087611488997936]],[[0.030521536245942,0.022803327068686,-0.0056613935157657],[0.057695418596268,-0.0061695999465883,-0.010870156809688],[0.041440632194281,0.021796682849526,-0.06523858755827]],[[0.011946320533752,-0.059049990028143,-0.082994773983955],[-0.010870502330363,-0.059298284351826,0.0050446195527911],[0.012163790874183,-0.05009987577796,0.0072841462679207]],[[0.0045892731286585,-0.019317923113704,-0.06615636497736],[0.023270472884178,0.037926401942968,0.026646267622709],[-0.043826971203089,-0.024369375780225,-0.04913204908371]],[[0.052761394530535,0.032954156398773,0.040104523301125],[-0.043354522436857,-0.0085429223254323,0.06035665050149],[0.11849150061607,0.090475156903267,0.0025080966297537]],[[0.045421175658703,-0.047988165169954,0.064348571002483],[-0.018202373757958,0.030286341905594,-0.0032142642885447],[-0.051477126777172,0.018805982545018,0.064792051911354]],[[0.053988620638847,0.0073241665959358,-0.039967972785234],[0.059389494359493,0.022739259526134,-0.016272131353617],[0.060511976480484,0.036904390901327,-0.023366214707494]],[[0.034259710460901,-0.07954316586256,-0.03364272788167],[0.01664268411696,-0.064759440720081,-0.0062507232651114],[0.00065087142866105,-0.022644236683846,-0.040063690394163]],[[-0.019563298672438,-0.0042880396358669,0.060705605894327],[0.070225641131401,0.022589068859816,-0.048936955630779],[0.031886678189039,0.0056002493947744,-0.033526930958033]],[[0.042655721306801,-0.028805883601308,0.00080171768786386],[0.080062061548233,0.054321110248566,-0.012942410074174],[0.031098274514079,0.0066953618079424,0.049791138619184]],[[-0.0068261222913861,0.031475905328989,-4.6130335249472e-05],[-0.040106225758791,0.014837893657386,0.038987118750811],[0.028722278773785,-0.071706965565681,0.063476070761681]],[[-0.082099288702011,-0.016326272860169,0.020744917914271],[-0.043227605521679,0.011596336960793,0.041734378784895],[0.022056698799133,0.063916072249413,-0.035381115972996]],[[-0.01827491633594,0.083296373486519,0.0020414979662746],[0.09995823353529,-0.04060460999608,-0.03143285214901],[0.077541448175907,-0.044615797698498,-0.074607372283936]],[[0.037640582770109,-0.062592022120953,-0.037678871303797],[0.0096064833924174,0.032668583095074,-0.04827793315053],[-0.012443700805306,-0.059212513267994,0.018656488507986]],[[-0.012620491907001,-0.020499238744378,0.027488607913256],[0.00013879031757824,-0.092137008905411,-0.021941674873233],[0.097572974860668,-0.0021168161183596,0.021856753155589]],[[0.065260477364063,0.024632921442389,-0.033489011228085],[0.00087224115850404,0.053191535174847,0.01371094584465],[-0.0040889498777688,0.046965129673481,-0.014568195678294]]],[[[-0.019751511514187,0.029096776619554,0.028997547924519],[0.02360418625176,0.011771762743592,0.054586786776781],[0.045973408967257,0.0261020809412,-0.021442284807563]],[[-0.038881719112396,0.054128371179104,-0.012245803140104],[0.047852091491222,-0.012004976160824,-0.07402827590704],[0.030826106667519,-0.0038469100836664,-0.085174955427647]],[[0.011637212708592,0.013184139505029,-0.037323292344809],[0.0078732706606388,0.015362562611699,0.023421490564942],[0.021514639258385,-0.038607127964497,0.05702205747366]],[[0.015721233561635,-0.017334297299385,-0.016444146633148],[-0.0056619714014232,0.011260543949902,0.0530218295753],[-0.028524084016681,-0.042155429720879,0.081388391554356]],[[-0.0037819719873369,0.00047097710194066,0.016309114173055],[0.0018981342436746,-0.055751126259565,0.048169557005167],[-0.039159744977951,-0.019128801301122,0.0042300899513066]],[[0.027754805982113,0.051581960171461,0.033916532993317],[-0.01412055362016,0.074275881052017,-0.0061704684048891],[-0.018732059746981,0.076957195997238,0.011341292411089]],[[0.026880783960223,-0.0068839779123664,0.072123542428017],[0.034548062831163,0.011542647145689,0.017701845616102],[-0.10452819615602,-0.0012858815025538,4.013060242869e-05]],[[-0.010551705025136,0.020433163270354,0.057741235941648],[-0.01330885104835,0.0012568735983223,-0.00013388130173553],[-0.043505758047104,0.0078250449150801,-0.053178075700998]],[[0.040199790149927,-0.080372184514999,0.072644479572773],[0.043046906590462,0.020938685163856,0.072657503187656],[-0.030465772375464,-0.0019782464951277,0.010373307392001]],[[-0.012653946876526,0.0045759510248899,-0.067082494497299],[-0.023144485428929,0.024469850584865,-0.052191309630871],[-0.045773562043905,-0.051679197698832,0.055078059434891]],[[0.022610347718,0.012631939724088,-0.026777114719152],[0.032995201647282,-0.01473942771554,0.084643967449665],[0.027026740834117,0.0062347897328436,0.0057784980162978]],[[-0.0077185537666082,0.029273426160216,0.039401076734066],[-0.03639529645443,-0.063949838280678,-0.028658723458648],[0.025401895865798,-0.067228212952614,-0.031192814931273]],[[0.047472208738327,-0.071646839380264,-0.023125626146793],[0.0082350466400385,-0.0078000416979194,-0.015871366485953],[-0.03912291675806,0.035252992063761,0.050181977450848]],[[-0.022980598732829,0.038777947425842,0.0031598364003003],[0.046441782265902,0.083936005830765,0.017188966274261],[0.0052589811384678,0.029118616133928,-0.02354040928185]],[[-0.021894438192248,0.02686764113605,0.032869014889002],[0.098976261913776,0.0012994983699173,0.0055342558771372],[-0.089440993964672,0.029853418469429,-0.076214738190174]],[[-0.024232149124146,-0.026234839111567,-0.016329603269696],[0.10707393288612,-0.016506599262357,-0.0072786998935044],[0.028267737478018,0.067710138857365,0.0070546721108258]],[[0.062553785741329,-0.051885172724724,-0.045632228255272],[0.028200782835484,0.055435948073864,-0.077733293175697],[0.029242191463709,0.082889176905155,-0.054192885756493]],[[-0.010316430591047,0.0073390253819525,-0.025833256542683],[0.0069558573886752,0.022205790504813,0.0070676691830158],[0.042845785617828,-0.065054662525654,-0.0012296815402806]],[[-0.018087873235345,0.026783414185047,-0.02760093472898],[0.0031160928774625,0.011123916134238,0.092564970254898],[0.0080234706401825,-0.050747096538544,0.022178376093507]],[[-0.0088340789079666,-0.058122280985117,0.00083567266119644],[0.027560796588659,0.0058036646805704,-0.024208728224039],[0.070328965783119,-0.020828057080507,-0.0085508078336716]],[[-0.0057382308878005,0.0028600553050637,0.033727522939444],[-0.031461521983147,-0.054428204894066,0.0084990551695228],[-0.065384209156036,0.012242801487446,-0.023106705397367]],[[-0.033519152551889,0.1065789014101,-0.062510423362255],[0.066682428121567,-0.027835762128234,0.035782143473625],[-0.01291714143008,0.0082914158701897,-0.029288899153471]],[[-0.017528997734189,0.023470975458622,0.018065050244331],[0.053373094648123,-0.011727568693459,0.075756497681141],[0.047239251434803,0.010012344457209,0.011935606598854]],[[0.045056067407131,0.034166112542152,-0.0035374853760004],[0.043024681508541,-0.019918257370591,0.012964904308319],[-0.049200933426619,0.010254127904773,-0.052372775971889]],[[0.031503088772297,0.081726737320423,-0.021931938827038],[-0.013944081030786,0.032594595104456,-0.0010824912460521],[0.022740045562387,-0.042278006672859,0.007718144915998]],[[0.037455834448338,-0.035507895052433,0.01007582899183],[0.02225298807025,-0.029104571789503,-0.043869692832232],[-0.049275875091553,0.0064276019111276,-0.011942989192903]],[[0.022693201899529,0.016526855528355,-0.00072702625766397],[-0.011504133231938,-0.091322690248489,0.096854716539383],[0.0095548899844289,0.033808335661888,0.0057563227601349]],[[-0.055511478334665,0.0011158873094246,0.039279859513044],[0.084659151732922,0.01946372166276,0.074123285710812],[0.08868145942688,0.088094733655453,0.017230717465281]],[[0.024690803140402,0.018708731979132,-0.06153492629528],[-0.05065805464983,0.018234444782138,0.0083930436521769],[0.062294814735651,0.023208143189549,-0.047278385609388]],[[0.0025619622319937,0.08008798211813,0.044327590614557],[0.075869478285313,0.033030159771442,-0.021400153636932],[0.022603621706367,-0.027942441403866,-0.028257140889764]],[[0.049701392650604,0.042304512113333,-0.015691921114922],[-0.007723456248641,0.0048529822379351,-0.029572069644928],[0.024162862449884,-0.018677869811654,0.0030007739551365]],[[0.0079008499160409,0.054767180234194,-0.022051667794585],[0.026702612638474,0.071962907910347,0.047079164534807],[-0.057286772876978,0.032863065600395,-0.015663769096136]],[[-0.026617605239153,0.051686495542526,-0.017050091177225],[0.057003248482943,0.011596463620663,0.0092320805415511],[0.01757232286036,-0.034202732145786,0.01897313632071]],[[0.014417316764593,0.025321049615741,0.010329852811992],[-0.059100922197104,-0.014029329642653,-0.039401143789291],[0.0090227080509067,0.030964151024818,0.027937948703766]],[[-0.047431282699108,0.027194291353226,0.031191427260637],[0.0066145146265626,-0.0098665365949273,-0.016399677842855],[0.011071915738285,0.011625863611698,0.0096291825175285]],[[0.043075796216726,-0.078728429973125,0.15660700201988],[-0.010674481280148,-0.050305582582951,0.019569566473365],[0.00098691461607814,-0.026586253196001,0.0076537490822375]],[[0.0075009628199041,-0.029568454250693,-0.0020269399974495],[-0.044427372515202,0.025949358940125,0.0046628462150693],[0.017757615074515,-0.036436654627323,-0.039424940943718]],[[0.030972482636571,-0.031163251027465,0.037308614701033],[0.038037184625864,0.0097274407744408,-0.029041409492493],[-0.026365544646978,-0.044178489595652,0.012877899222076]],[[0.001315588131547,-0.045288551598787,0.014879113063216],[0.01061196718365,-0.063552096486092,-0.059331130236387],[0.037334822118282,0.04133103042841,0.0060680932365358]],[[-0.021236553788185,-0.023726193234324,0.072367712855339],[0.024767007678747,-0.078595586121082,0.0070129986852407],[-0.003073035273701,-0.010444931685925,-0.0013085785321891]],[[-0.018409168347716,0.0045264945365489,-0.0086823450401425],[-0.032543424516916,-0.064935006201267,0.019406022503972],[-0.058685090392828,0.0023544714786112,-0.022864956408739]],[[-0.018442360684276,-0.0034840430598706,0.015581448562443],[-0.0051942453719676,0.052956771105528,-0.046443272382021],[-0.036888767033815,0.09445509314537,0.059509679675102]],[[-0.042882923036814,-0.0028115543536842,0.049039416015148],[0.0035354471765459,0.014856558293104,0.044649597257376],[-0.0025074146687984,0.014076831750572,-0.029695257544518]],[[0.089252211153507,0.12017450481653,0.036359984427691],[-0.055789235979319,0.059102229773998,-0.034569542855024],[0.050387889146805,-0.03704795986414,-0.024255987256765]],[[0.0022150294389576,0.036570955067873,-0.045827090740204],[0.078211307525635,0.022588113322854,0.058703944087029],[0.00035345173091628,-0.018743097782135,-0.012437549419701]],[[0.042432889342308,0.0076249549165368,0.053615480661392],[-0.062023833394051,0.0020406141411513,-0.037377770990133],[0.038175970315933,0.043726220726967,0.10634543001652]],[[0.024953901767731,-0.0039060488343239,0.069953098893166],[0.045749351382256,0.054099000990391,-0.056108243763447],[-0.018395900726318,0.047146622091532,-0.01442557387054]],[[0.023242739960551,-0.056965075433254,-0.021864630281925],[-0.021217949688435,0.031211843714118,-0.031184425577521],[0.025016440078616,-0.018032735213637,0.03572678565979]],[[0.010095556266606,0.054288063198328,-0.042367517948151],[0.031878463923931,0.014596472494304,-0.039786871522665],[0.071681745350361,0.040083564817905,0.032249394804239]],[[0.0021989310625941,-0.013299581594765,0.024460908025503],[-0.02295570448041,-0.019827909767628,-0.085927344858646],[0.032105907797813,0.037191439419985,-0.010629306547344]],[[-0.076270937919617,-0.0021857835818082,-0.061380747705698],[0.017241423949599,-0.010772333480418,0.035564869642258],[0.047953180968761,-0.037263572216034,0.004023882560432]],[[-0.027471069246531,0.03194672241807,-0.073059901595116],[-0.022960236296058,-0.0062814350239933,0.041851013898849],[0.0048499251715839,0.013143305666745,0.07630529999733]],[[0.013168881647289,0.0081838946789503,-0.00027187241357751],[-0.031177997589111,0.029236992821097,-0.050361968576908],[0.00018030058708973,0.043175619095564,-0.059799443930387]],[[-0.029565926641226,0.043141771107912,0.024926600977778],[0.087774142622948,-0.058496233075857,-0.003791227703914],[-0.060108840465546,0.11533564329147,0.0087693324312568]],[[0.023799451068044,-0.012459167279303,0.024478301405907],[-0.017165886238217,0.047699972987175,-0.0036306448746473],[0.0065652076154947,-0.030059233307838,-0.0091389566659927]],[[0.015906814485788,0.037428587675095,-0.029743516817689],[0.041978389024734,0.0023466357961297,-0.0016101088840514],[0.0034940717741847,0.044880576431751,-0.042304653674364]],[[0.014952081255615,0.052546918392181,0.033576741814613],[0.0032762438058853,-0.02182587236166,0.03293465077877],[0.068051680922508,0.069523341953754,-0.018987691029906]],[[-0.021999007090926,-0.057495001703501,-0.025294175371528],[0.10652455687523,0.042453680187464,-0.018259650096297],[0.055763926357031,0.00049723801203072,0.072758004069328]],[[0.024979215115309,0.018861787393689,0.032316952943802],[-0.012151076458395,0.0056683449074626,0.052626956254244],[-0.028577540069818,-0.048703391104937,-0.049773659557104]],[[0.05943227186799,-0.0117465890944,-0.020076371729374],[0.066807605326176,0.059387501329184,0.013582262210548],[0.032402101904154,0.012243582867086,-0.040921080857515]],[[0.025366876274347,-0.0057444176636636,0.006537988781929],[0.05317086353898,-0.062110494822264,0.034682273864746],[0.0093623846769333,0.01894536241889,-0.0095940865576267]],[[0.0084492610767484,0.057074211537838,0.11743655800819],[0.021371500566602,-0.04120160266757,0.06190587952733],[-0.0034728930331767,0.030577763915062,-0.021190715953708]],[[-0.066755458712578,0.0062449770048261,-0.0087348958477378],[-0.019021661952138,0.07085458189249,-0.019210880622268],[0.037776805460453,0.13728910684586,-0.057149205356836]],[[-0.051288943737745,0.012959013693035,0.063883736729622],[0.0074582537636161,0.048382584005594,-0.020485982298851],[-0.0031941465567797,0.031317044049501,-0.087027683854103]],[[0.032704252749681,0.023181958124042,0.012739241123199],[-0.0076910490170121,-0.031633079051971,0.029323576018214],[0.015055015683174,-0.0023952454794198,-0.058577332645655]],[[-0.032609824091196,-0.07774742692709,-0.022818431258202],[0.0047624432481825,0.086356893181801,0.018000515177846],[-0.049830928444862,0.056972693651915,0.0061040795408189]],[[-0.042496018111706,0.0025807865895331,-0.033247277140617],[-0.01422259490937,0.010057986713946,-9.0327130237711e-06],[-0.017904391512275,0.062245678156614,-0.0038908873684704]],[[0.0084971208125353,0.036077171564102,0.074973106384277],[0.0054241879843175,0.04811218380928,-0.057752251625061],[-0.021146930754185,0.052076172083616,-0.015666807070374]],[[-0.020511645823717,0.051812142133713,0.003668338060379],[6.8659483076772e-06,-0.066614367067814,0.019657805562019],[0.048373132944107,0.0099248895421624,-0.018414594233036]],[[0.018756255507469,-0.038350716233253,0.043700475245714],[0.023851059377193,0.011299280449748,0.11007705330849],[-0.017391795292497,-0.0052755381911993,-0.12908424437046]],[[0.023446548730135,-0.017879212275147,0.016870766878128],[0.057840071618557,-0.0095389503985643,0.00083189166616648],[-0.018290949985385,-0.077696718275547,0.012401594780385]],[[0.0204335488379,-0.020832067355514,-0.005169692914933],[0.053894601762295,0.020202551037073,0.014358628541231],[-0.00067591946572065,-0.064118966460228,0.036569595336914]],[[-0.0005407051066868,0.040303342044353,-0.073110170662403],[0.0085957236588001,0.015390186570585,0.076835334300995],[-0.0084085455164313,0.024457776919007,0.036962058395147]],[[0.013516451232135,-0.018100248649716,0.034918058663607],[-0.052848543971777,0.016664087772369,0.085286758840084],[-0.069859929382801,0.10954120755196,0.017809771001339]],[[-0.044567316770554,-0.04632929712534,0.040285620838404],[-0.034267764538527,0.01546585559845,-0.071233682334423],[-0.025646090507507,-0.11978989839554,0.075082629919052]],[[0.023616272956133,-0.026785999536514,-0.0085207913070917],[-0.035223543643951,0.026090750470757,0.014328299090266],[-0.0097102792933583,-0.032865878194571,-0.015666147693992]],[[0.021525181829929,0.020484123378992,0.061691280454397],[0.01708584651351,0.030594266951084,0.052255179733038],[0.055822964757681,0.0086191007867455,0.0064745144918561]],[[-0.030473306775093,0.0051794028840959,-0.011425340548158],[-0.046656869351864,-0.083112880587578,0.073555931448936],[0.019337749108672,-0.022340305149555,0.019287122413516]],[[-0.020567554980516,-0.032672353088856,-0.018557569012046],[-0.013745476491749,0.027585100382566,0.031394854187965],[-0.068055093288422,-0.025396067649126,-0.056313425302505]],[[-0.030651325359941,-0.064239881932735,-0.018172033131123],[0.04699257388711,-0.017186813056469,0.0046869581565261],[0.023022722452879,0.038858484476805,-0.0079327402636409]],[[0.047730319201946,0.018028646707535,-0.02720857039094],[-0.046576246619225,-0.016003482043743,-0.0044602029956877],[0.054305076599121,0.043303154408932,-0.017560604959726]],[[0.095931723713875,-0.043212313205004,0.016056459397078],[-0.023880554363132,-0.015837650746107,0.073269404470921],[-0.019805999472737,-0.066287323832512,0.018556946888566]],[[0.040611352771521,0.00033682290813886,-0.048274304717779],[0.053121700882912,0.011850502341986,0.067901454865932],[-0.1269958615303,0.024452801793814,-0.012711746618152]],[[-0.0045565962791443,-0.020134886726737,0.0063326321542263],[0.010612840764225,0.067138195037842,-0.039933528751135],[-0.05707848444581,0.041880425065756,0.0034293523058295]],[[-0.01392834354192,-0.057511508464813,-0.015778891742229],[-0.037915639579296,-0.021448096260428,-0.025140449404716],[0.013563372194767,-0.026593709364533,0.046255104243755]],[[-0.031157694756985,-0.060824375599623,0.03068677149713],[0.024682072922587,-0.081558860838413,0.011478239670396],[-0.0722286850214,0.047309923917055,-0.0031556321773678]],[[-0.01664075255394,0.034380592405796,0.029998390004039],[9.1719150077552e-05,-0.022080237045884,-0.039611775428057],[0.057486392557621,-0.0174400806427,0.0051326327957213]],[[0.08831524848938,0.010102268308401,0.046771015971899],[-0.016278417780995,-0.014912738464773,0.0061642839573324],[0.015550401061773,0.014905664138496,-0.044072601944208]],[[0.0086987856775522,-0.042660966515541,-0.036335278302431],[-0.010855183005333,0.064872309565544,0.022466909140348],[-0.0037042130716145,0.053341828286648,-0.024038700386882]],[[0.075309745967388,-0.066435664892197,0.029330877587199],[0.014876691624522,-0.030587431043386,0.04881289601326],[-0.02316128462553,-0.01291386038065,0.03693937882781]],[[0.063928216695786,0.082575298845768,-0.056278634816408],[0.062828987836838,-0.012146746739745,-0.03694248944521],[-0.044330798089504,-0.0047433567233384,-0.0039878142997622]],[[-0.0026410357095301,0.018164835870266,0.077492587268353],[-0.0051780799403787,-0.0071386485360563,0.04966139793396],[-0.042440056800842,-0.018169689923525,-0.0086277313530445]],[[0.0048743709921837,0.035382710397243,0.037079092115164],[0.027634175494313,-0.032869979739189,0.032032236456871],[0.0063804057426751,0.062414385378361,-0.056975182145834]],[[0.0016110681463033,-0.035519108176231,0.0042832926847041],[0.061822395771742,0.036542285233736,-0.082249984145164],[-0.016956930980086,-0.06160818785429,-0.024006653577089]],[[-0.021585816517472,0.021404953673482,0.0069070057943463],[0.048131097108126,-0.025384338572621,-0.029372874647379],[-0.028060888871551,-0.0036648388486356,0.055795796215534]],[[-0.02591828070581,0.018073117360473,-0.080866895616055],[0.006288721691817,0.021954888477921,-0.024151561781764],[-0.002537606516853,0.072006411850452,0.0001190492985188]],[[0.009453933686018,-0.0036161388270557,0.0053517436608672],[0.0010350852971897,-0.06651958078146,0.0008398134377785],[-0.01482514757663,0.041972056031227,-0.0043615885078907]],[[-0.021547373384237,-0.0054977866820991,-0.025143587961793],[0.059460014104843,-0.049538303166628,-0.019392339512706],[0.034999679774046,0.022670088335872,-0.013657340779901]],[[-0.012302509509027,0.015022245235741,0.018007837235928],[0.081759884953499,0.011346681043506,-0.064730361104012],[0.01227055862546,0.023995634168386,0.0098166707903147]],[[-0.020819643512368,0.0028029514942318,-0.023033019155264],[0.087773695588112,0.010472233407199,-0.0047628078609705],[-0.01848210953176,0.012089360505342,0.0015748697333038]],[[0.03946029394865,0.021443773061037,-0.035344611853361],[-0.0077913152053952,-0.031134625896811,-0.044272728264332],[0.099239364266396,-0.027940979227424,0.069138303399086]],[[0.00078223942546174,0.0059385695494711,0.06220281496644],[0.039826743304729,0.10343482345343,-0.000655053765513],[-0.0011909485328943,-0.0065058977343142,-0.022925473749638]],[[0.043472472578287,0.084989614784718,-0.021395597606897],[0.042717311531305,-0.022844009101391,-0.017929514870048],[0.027737775817513,0.042612966150045,0.012758268043399]],[[0.015315448865294,0.068620756268501,-0.039460960775614],[-0.018968803808093,0.022210666909814,-0.082383394241333],[-0.033439096063375,-0.004275621380657,0.0033529808279127]],[[0.0149254957214,0.018410434946418,0.0015770819736645],[0.070109099149704,-0.0056578381918371,-0.037769112735987],[0.012482206337154,0.01622923091054,-0.055059175938368]],[[-0.037653431296349,0.012860496528447,0.011524613015354],[-0.0466611944139,0.062228366732597,0.071313604712486],[0.0091808084398508,-0.023394482210279,0.013031871058047]],[[0.033987578004599,0.063694894313812,0.004314539488405],[-0.0094812577590346,-0.015308286063373,-0.083017103374004],[0.040215287357569,0.010764728300273,-0.027261370792985]],[[0.049504902213812,0.0025012367404997,0.014871367253363],[-0.045809056609869,0.011808983981609,0.041468694806099],[-0.060764465481043,0.0035337372682989,-0.058336663991213]],[[0.0090048778802156,-0.041789092123508,0.02272323332727],[0.039249457418919,0.0070225428789854,-0.018283748999238],[0.014480722136796,0.025104885920882,0.09249959141016]],[[0.042484492063522,-0.10352467745543,-0.055115204304457],[-0.0016540833748877,-0.066166214644909,-0.043906535953283],[-0.06640537828207,0.014609233476222,-0.045488186180592]],[[0.026031542569399,0.067083679139614,0.036358788609505],[0.015101808123291,-0.10765443742275,0.070143505930901],[0.041337534785271,0.085147611796856,0.04631907120347]],[[0.017503565177321,0.0071514812298119,0.012025040574372],[0.026278231292963,0.040377706289291,0.012142147868872],[-0.037051312625408,-0.015351713635027,-0.012191864661872]],[[-0.040654357522726,0.071012422442436,-0.031435996294022],[0.018064549192786,0.025417057797313,0.036287683993578],[-0.035227946937084,-0.005798437166959,-0.052534382790327]],[[-0.078014098107815,0.024339497089386,-0.063435137271881],[-0.034390673041344,-0.039196040481329,-0.13921655714512],[-0.014160244725645,-0.025079280138016,-0.079095415771008]],[[-0.021929431706667,0.071035489439964,0.052244804799557],[-0.053905200213194,-0.019932296127081,0.037969388067722],[-0.02838516049087,0.02595061250031,-0.0098488880321383]],[[0.096021756529808,-0.036074053496122,-0.03412739187479],[-0.019718555733562,0.043233703821898,0.014757423661649],[0.035937156528234,0.039374031126499,0.038438729941845]],[[-0.0077792820520699,0.027819557115436,0.0029799488838762],[-0.0015130065148696,-0.051707278937101,-0.054884385317564],[0.033588618040085,-0.0025451979599893,0.030900048092008]],[[0.099978372454643,-0.031079748645425,0.009193055331707],[-0.012210565619171,-0.006590886041522,0.13331389427185],[-0.044031228870153,0.058104664087296,-0.03704422339797]],[[-0.060255613178015,-0.019612967967987,-0.012282562442124],[-0.017935300245881,0.009755402803421,0.031678754836321],[-0.021027397364378,0.012925047427416,0.08280648291111]],[[0.010110736824572,-0.040953289717436,0.0060326629318297],[-0.038557220250368,-0.056892275810242,0.042146470397711],[0.049257256090641,-0.004188000690192,0.037190336734056]],[[0.076942406594753,0.0056172050535679,0.062557019293308],[-0.013718191534281,-0.053098831325769,0.034939710050821],[-0.082204505801201,-0.030731815844774,-0.014022732153535]],[[0.11578723043203,-0.047487359493971,-0.030902430415154],[0.038297157734632,-0.039189584553242,-0.0067378543317318],[0.042992979288101,0.020613564178348,0.010120339691639]],[[0.041106782853603,0.035261664539576,-0.057267863303423],[0.03788772970438,-0.07229857891798,0.048522766679525],[0.053021293133497,0.036135096102953,0.015984211117029]],[[0.068313762545586,-0.0084267761558294,-0.0098454253748059],[-0.046996831893921,-0.0029272045940161,0.071384243667126],[-0.021093435585499,0.032565820962191,-0.011065686121583]],[[0.00026641646400094,0.022402198985219,-0.053607735782862],[0.0042585940100253,-0.055924005806446,0.064157418906689],[-0.07314795255661,-0.0024278853088617,-0.0053117084316909]],[[-0.023783696815372,-0.0058596609160304,-0.069577030837536],[-0.0058911815285683,0.018211724236608,-0.07483222335577],[0.035031966865063,0.044684413820505,-0.0076703284867108]],[[-0.073559664189816,-0.006840018555522,-0.016356036067009],[0.054993540048599,-0.07399196177721,-0.025532739236951],[0.017114223912358,0.018344147130847,-0.07313483953476]],[[0.031673863530159,-0.033495493233204,0.0031166195403785],[0.085128001868725,0.025813855230808,-0.0022781016305089],[-0.027692278847098,-0.012161849066615,0.051755800843239]]],[[[0.031707439571619,0.00011118514521513,0.086445204913616],[0.0054386691190302,-0.032471463084221,0.03654633462429],[-0.035692494362593,0.004812843631953,-0.0069152880460024]],[[0.026699882000685,0.052376363426447,0.12488637119532],[-0.0042579034343362,0.075082823634148,-0.029739625751972],[0.11578749120235,0.052134193480015,-0.025578491389751]],[[-0.01841676607728,-0.0021778629161417,0.021963600069284],[0.077620178461075,0.012674885801971,0.014168962836266],[0.0030438366811723,0.070851981639862,-0.0069468398578465]],[[0.043285071849823,0.065515913069248,0.12137527763844],[0.0060654929839075,0.07197380810976,-0.066720679402351],[-0.023529117926955,0.021681746467948,0.012971703894436]],[[0.0045410306192935,-0.0046906918287277,-0.004262313246727],[0.0985207259655,0.10917104035616,0.016112709417939],[-0.00092416437109932,-0.02091197296977,0.062813088297844]],[[-0.021753357723355,-0.01139507535845,-0.030257362872362],[0.031255163252354,0.011437880806625,-0.029714554548264],[0.0047522578388453,0.097655735909939,0.050880637019873]],[[0.088279478251934,0.0046962196938694,-0.027651770040393],[0.014967082999647,-0.028059454634786,0.0056004347279668],[-0.010486314073205,-0.069108061492443,0.037012595683336]],[[-0.0099082048982382,0.042024791240692,0.022435247898102],[-0.0076172081753612,0.028957780450583,0.071983747184277],[-0.013233889825642,-0.037878919392824,-0.032305411994457]],[[-0.018890457227826,-0.014814996160567,0.0073205139487982],[0.029648456722498,0.0047603445127606,0.015749406069517],[0.051749419420958,0.059104271233082,-0.042854178696871]],[[-0.077371142804623,0.0057873716577888,0.12157660722733],[0.1728231459856,0.056757248938084,0.027485258877277],[-0.027564585208893,0.094321325421333,-0.093178987503052]],[[0.048671547323465,0.084897212684155,0.035752255469561],[-0.0065992544405162,-0.030402256175876,-0.062942422926426],[-0.035520788282156,0.01927182264626,0.0080278310924768]],[[0.10071907937527,-0.011781931854784,0.0020399035420269],[0.029192660003901,0.047208871692419,0.044758450239897],[0.043365206569433,-0.0034140890929848,-0.034224446862936]],[[0.037554640322924,-0.0024100730661303,0.016396289691329],[0.035301636904478,0.0056206053122878,0.040945645421743],[-0.0082616442814469,0.050888814032078,-0.039104327559471]],[[0.079698421061039,6.0758648032788e-05,0.015383520163596],[0.081413149833679,0.038015130907297,-0.0049198437482119],[0.072344928979874,-0.012225630693138,0.07042882591486]],[[-0.048829261213541,0.063374690711498,0.028433302417397],[0.068000338971615,-0.0086420821025968,0.16272819042206],[0.099653899669647,-0.084309071302414,0.017255526036024]],[[-0.057261075824499,0.0081698438152671,-0.013373239897192],[-0.028412327170372,-0.0019912491552532,-0.030562104657292],[-0.035193908959627,-0.00075263262260705,-0.0011506584705785]],[[-0.034573294222355,0.015140706673265,-0.016524640843272],[0.067856356501579,0.03521440923214,-0.052542109042406],[0.0098597398027778,0.097776606678963,0.0080774864181876]],[[-0.048676140606403,-0.10571745038033,0.0066998871043324],[0.099883802235126,0.0016307096229866,-0.064718961715698],[-0.035425797104836,-0.0022882763296366,-0.0099858622997999]],[[0.0080249616876245,0.035007860511541,0.039276953786612],[-0.0017921210965142,0.056959751993418,-0.11708645522594],[-0.012777770869434,0.0087906178086996,0.044024087488651]],[[-0.010702115483582,0.097396120429039,0.038992818444967],[-0.00086293555796146,-0.026382099837065,0.076107665896416],[0.048208419233561,0.095749564468861,0.066964194178581]],[[0.07813835889101,-0.0096783917397261,0.089890085160732],[-0.014170416630805,-0.036813654005527,-0.015678681433201],[0.0062152077443898,-0.059467047452927,-0.016002038493752]],[[-0.037288926541805,-0.0031563516240567,0.062561139464378],[-0.0040479237213731,0.071882583200932,0.040368020534515],[-0.0095373308286071,0.0025034232530743,0.019599098712206]],[[0.029010387137532,0.036466542631388,-0.011277375742793],[0.029080783948302,0.019584624096751,0.080793358385563],[0.099721014499664,-0.0018951736856252,0.035404402762651]],[[0.022781420499086,0.071925103664398,0.0035268187057227],[0.012446586973965,-0.0076134162954986,0.072607055306435],[0.031120896339417,-0.083421878516674,-0.013947930186987]],[[0.01918488740921,0.018118632957339,0.062430266290903],[0.055023495107889,0.032631848007441,-0.0047103716060519],[-0.0063377427868545,0.023238534107804,-0.030276147648692]],[[0.023837434127927,-0.044254541397095,0.029721414670348],[0.015721386298537,0.059550799429417,0.0064446902833879],[-0.039319168776274,-0.018991611897945,0.013598666526377]],[[0.091612979769707,-0.0093454271554947,-0.045373883098364],[-0.063793830573559,0.080469131469727,-0.022096822038293],[-0.078133605420589,0.060064807534218,0.039416622370481]],[[0.10768032819033,0.036988295614719,0.11812213808298],[-0.0050349552184343,0.067224681377411,-0.043291341513395],[0.067932516336441,0.068966217339039,-0.030746581032872]],[[-0.056692209094763,0.084112033247948,0.042221061885357],[0.10625147074461,-0.038646701723337,0.028757061809301],[0.036066714674234,-0.039667043834925,-0.022218028083444]],[[0.019774599000812,0.03732480853796,-0.018115729093552],[-0.047130800783634,-0.090480089187622,0.052003908902407],[-0.0034448790829629,0.056172847747803,-0.03555129095912]],[[0.062137924134731,-0.027805639430881,0.033431299030781],[-0.014817993156612,-0.026654146611691,0.077027685940266],[0.027172094210982,0.064948320388794,0.0034891201648861]],[[-0.0068116649053991,-0.0046064467169344,0.030688136816025],[0.066043570637703,-0.015284752473235,0.099333517253399],[0.016083043068647,-0.043240629136562,0.0369758233428]],[[0.016049211844802,-0.0058181202039123,-0.0060858833603561],[-0.010778899304569,0.083838656544685,-0.068263694643974],[0.021905982866883,-0.11266487836838,-0.020783415064216]],[[-0.02113151550293,0.043187666684389,-0.0044500478543341],[0.062265288084745,-0.027277151122689,0.052447330206633],[-0.041335076093674,-0.039370246231556,0.037498496472836]],[[-0.032778017222881,0.088295727968216,0.042001593858004],[0.061478041112423,-0.017287390306592,0.067786857485771],[0.0018674596212804,-0.024994565173984,-0.071184307336807]],[[0.022911945357919,0.0059501021169126,-0.055975452065468],[0.020093029364944,0.014537026174366,0.00018480188737158],[-0.0040337783284485,0.012856660410762,-0.0095949005335569]],[[0.022080697119236,0.028005171567202,0.019217798486352],[0.061163149774075,0.027635062113404,0.0091387452557683],[0.0033100566361099,-0.016005210578442,0.033638663589954]],[[-0.0061391643248498,0.056626800447702,0.048215419054031],[0.061523422598839,0.014269800856709,0.031153038144112],[0.022064246237278,-0.014434454962611,0.0092119546607137]],[[0.040840219706297,-0.023242732509971,-0.00040957471355796],[0.065947361290455,-0.0069646118208766,0.01515883859247],[-0.038611385971308,-0.0098155457526445,-0.045537482947111]],[[0.029508696869016,-0.0044086370617151,0.0046957531012595],[-0.0018016793765128,0.049088969826698,-0.03131441026926],[0.034032955765724,0.024493936449289,0.024917662143707]],[[-0.0046625239774585,0.0072467010468245,-0.0088902059942484],[-0.047956649214029,-0.050872564315796,-0.013339108787477],[-0.013309083878994,-0.025100288912654,-0.014358222484589]],[[0.056502304971218,-0.034613072872162,0.0018084669718519],[-0.034777268767357,-0.017633259296417,0.012712642550468],[-0.01829594373703,0.025525353848934,-0.022120945155621]],[[0.068972028791904,0.012182313017547,-0.065260484814644],[0.037142626941204,-0.010302159935236,0.012275524437428],[-0.053000178188086,0.083478860557079,-0.0552615262568]],[[-0.0027760367374867,0.04398151487112,-0.033059667795897],[0.033079531043768,0.043711174279451,0.011599471792579],[0.0068231378681958,-0.010018275119364,0.033780675381422]],[[-0.016692467033863,0.02032819762826,0.051863085478544],[0.018913982436061,0.0074501512572169,-0.014508182182908],[0.022624313831329,0.073942176997662,-0.028293315321207]],[[0.00021555268904194,-0.012038489803672,0.036655679345131],[0.057025071233511,0.016786146908998,-0.038618296384811],[0.016411835327744,0.099261693656445,-0.032845351845026]],[[0.0038189026527107,0.066248349845409,0.012694407254457],[-0.031780552119017,-0.018570341169834,0.0010574824409559],[-0.0064391572959721,0.045810762792826,0.046911064535379]],[[0.023100798949599,-0.060406032949686,0.0023248780053109],[0.1090664640069,0.040271058678627,-0.00059567054267973],[-0.055354032665491,0.014173746109009,-0.020917886868119]],[[0.024133780971169,-0.027562733739614,-0.007233118172735],[-0.060010265558958,-0.018140910193324,0.026378439739347],[0.051310554146767,-0.023291569203138,0.069785907864571]],[[0.010724593885243,0.00095608702395111,0.0022631734609604],[-0.030477024614811,-0.013075948692858,0.0842519775033],[-0.070589601993561,0.040990199893713,-0.0064267632551491]],[[0.069439128041267,0.0044459886848927,-0.071916073560715],[0.0033600202295929,0.036265831440687,-0.074504882097244],[0.02434378489852,-0.082223393023014,-0.014411366544664]],[[0.085944086313248,0.046548347920179,-0.039360154420137],[0.0048579070717096,0.09086050093174,0.051741361618042],[-0.0053011141717434,0.035704381763935,-0.04638247936964]],[[0.014171811752021,0.046685878187418,-0.046447686851025],[0.025021540001035,-0.031452465802431,0.076964303851128],[0.057549133896828,-0.0096504669636488,-0.0080527635291219]],[[0.088272675871849,-0.035770133137703,0.030983405187726],[0.00072483153780922,0.010538458824158,0.01742353476584],[0.13319379091263,0.0050202482379973,0.00067193422000855]],[[0.0023067879956216,0.015274076722562,0.01662939414382],[0.025957088917494,0.016671309247613,0.021789900958538],[-0.080738849937916,-0.0014458898222074,-0.028058268129826]],[[-0.016943287104368,0.037990543991327,0.027313636615872],[-0.006521834526211,-0.00080619717482477,0.0058704558759928],[0.051878411322832,0.04452908039093,0.038589373230934]],[[-0.05990032479167,0.021169291809201,-0.04001285508275],[-0.021900588646531,0.10327874869108,0.064511254429817],[0.012023380026221,0.006022765301168,-0.014457087032497]],[[0.11537747830153,0.034737072885036,0.0043808296322823],[0.03320799022913,0.0069915531203151,0.017639439553022],[0.094056241214275,-0.068470507860184,-0.041231893002987]],[[0.046807032078505,-0.0078480644151568,0.066888280212879],[0.047349389642477,0.042680237442255,0.020663740113378],[0.049048371613026,0.016779888421297,0.010652132332325]],[[-0.01442739367485,-0.014546412974596,0.024346055462956],[-0.047201171517372,-0.028046894818544,-0.03126073628664],[-0.032171718776226,-0.010634836740792,0.030946543440223]],[[0.03861940652132,0.015469036065042,0.053997758775949],[-0.0052140625193715,0.015087012201548,-0.013111906126142],[0.016438599675894,0.035416893661022,0.035644434392452]],[[0.0078321322798729,0.037048369646072,0.030603354796767],[0.049768064171076,0.049407839775085,-0.0032026944682002],[-0.03003903105855,-0.065800972282887,-0.07757768034935]],[[0.03526845946908,0.0087390039116144,-0.021225633099675],[0.039186708629131,-0.04504831880331,0.015223219059408],[0.0015217270702124,-0.0047844713553786,-0.0022409784141928]],[[0.037698470056057,-0.0038552470505238,0.034858733415604],[0.042056832462549,0.035119589418173,-0.043503072112799],[-0.050597656518221,-0.0093170925974846,0.058476433157921]],[[0.017515989020467,0.0061291526071727,0.003542443504557],[-0.0023488102015108,0.034445967525244,-0.0085398089140654],[0.0049105933867395,0.060018673539162,-0.099438235163689]],[[-0.061177805066109,-0.053611531853676,-0.01687285117805],[-0.018180316314101,0.00056191824842244,0.065754607319832],[0.011642531491816,0.083089105784893,-0.054172068834305]],[[-0.021702835336328,0.045016892254353,-0.023339262232184],[0.081987820565701,-0.032425176352262,0.025243597105145],[0.038755524903536,-0.026265550404787,0.00063235766720027]],[[0.029526935890317,0.069750182330608,-0.024734880775213],[0.098192200064659,0.064597330987453,0.10166994482279],[-0.023664018139243,0.0013445524964482,-0.037583529949188]],[[0.069207608699799,-0.00065436994191259,-0.029304197058082],[-0.031894754618406,-0.034260384738445,0.030426952987909],[-0.067206628620625,0.033568739891052,0.057611327618361]],[[-0.016359880566597,-0.0010048318654299,0.0086017148569226],[0.019703190773726,0.01952101290226,0.072308875620365],[0.072171159088612,0.059778247028589,-0.035090915858746]],[[0.023182446137071,-0.004160086158663,-0.056493151932955],[-0.028702849522233,0.023651994764805,0.02858611382544],[-0.028737893328071,-0.034014102071524,-0.0096909664571285]],[[0.016551045700908,-0.033142428845167,0.017015466466546],[0.062773764133453,-0.0064240437932312,-0.0005785304820165],[0.042437199503183,-0.049848116934299,0.022318558767438]],[[-0.022267954424024,-0.031547732651234,0.017907531931996],[0.012063230387866,0.05200107768178,0.10215480625629],[0.075937762856483,0.0020937530789524,-0.010514314286411]],[[-0.025734048336744,-0.039422046393156,0.0028049950487912],[0.075612097978592,0.0054790717549622,0.070098988711834],[-0.0013509477721527,0.12518009543419,0.018034221604466]],[[0.032772075384855,0.020838357508183,-0.072030015289783],[0.0438785366714,-0.053246259689331,-0.087221637368202],[0.012515486218035,0.010357927531004,0.027675483375788]],[[0.030560242012143,0.01638425886631,0.096854649484158],[0.046161163598299,-0.0048277280293405,-0.054538942873478],[0.050296228379011,0.0099687557667494,0.012051580473781]],[[-0.0595946572721,-0.034650310873985,0.027423389256001],[0.0024594645947218,-0.026817055419087,0.026023156940937],[0.044257421046495,-0.01131081674248,0.0050008203834295]],[[-0.031247807666659,-0.046997152268887,0.014679652638733],[0.07632077485323,0.026478683575988,-0.012271501123905],[-0.049539584666491,-0.028319010511041,0.017859175801277]],[[-0.024182934314013,0.012953212484717,0.053397841751575],[-0.0063025150448084,-0.087215185165405,0.018591934815049],[0.010554648004472,-0.0051837558858097,-0.05926039814949]],[[-0.030410872772336,-0.079234510660172,-0.094829209148884],[0.0065839444287121,-0.0080945864319801,-0.017436739057302],[0.074461959302425,-0.0201470926404,0.0084349829703569]],[[-0.018358735367656,-0.029362745583057,0.024873450398445],[-0.034699618816376,0.020352525636554,-0.033979464322329],[-0.072085864841938,0.023211063817143,-0.0024160554166883]],[[0.039103079587221,0.066455662250519,-0.0022967336699367],[-0.09397504478693,0.021469540894032,0.11267950385809],[0.0019769847858697,-0.042485620826483,0.013657243922353]],[[0.036979801952839,0.054177023470402,0.011757801286876],[-0.028664983808994,0.0051111397333443,-0.025026239454746],[0.021140951663256,-0.013177635148168,0.092164941132069]],[[0.057738531380892,0.0036393424961716,0.023719733580947],[-0.018275434151292,-0.00047218226245604,0.063862517476082],[0.071060501039028,0.018092107027769,0.0013694408116862]],[[-0.06605464220047,0.04047767072916,-0.080914132297039],[0.038381326943636,0.0099263256415725,0.056870236992836],[0.025239825248718,-0.080496579408646,-0.019782496616244]],[[-0.0030058894772083,-0.073308013379574,-0.070999793708324],[-0.097323931753635,0.038050189614296,0.025937533006072],[-0.037463001906872,-0.054276864975691,0.050961218774319]],[[-0.042140707373619,0.01777084171772,0.0037544963415712],[-0.055006828159094,0.080330856144428,-0.053520482033491],[-0.088994473218918,-0.057127941399813,-0.044334497302771]],[[0.014603104442358,0.039565473794937,0.044319342821836],[-0.031543515622616,-0.0081205116584897,0.033802319318056],[-0.030290450900793,0.048825938254595,0.10441688448191]],[[0.0090255877003074,-0.017922108992934,-0.0089547345414758],[0.058375634253025,0.0078443493694067,-0.028027711436152],[0.036331340670586,-0.074265897274017,-0.083108827471733]],[[-0.0066643212921917,0.062618799507618,0.024987144395709],[-0.0014041436370462,-0.00058500381419435,0.087611645460129],[-0.01909695379436,-0.002184899058193,0.052089370787144]],[[-0.01275397837162,0.051892954856157,0.034394606947899],[0.026904122903943,-0.022401118651032,0.057801514863968],[0.024877516552806,0.053430028259754,-0.012317636981606]],[[-0.023335583508015,0.076213382184505,0.064219824969769],[0.0060694026760757,-0.037079710513353,-0.0057953204959631],[0.036498550325632,0.063058510422707,0.071060225367546]],[[0.0039623444899917,-0.067351303994656,-0.021202027797699],[-0.059188179671764,0.014873076230288,0.046169608831406],[-0.010530989617109,-0.012072771787643,0.040358651429415]],[[-0.014485851861537,0.034554250538349,-0.0075338953174651],[-0.0081010675057769,0.026100922375917,0.021864607930183],[-0.014757003635168,0.043677128851414,-0.055842485278845]],[[-0.038749434053898,0.020037250593305,-0.034249432384968],[-0.064414143562317,0.0022947813849896,0.036970786750317],[-0.022423233836889,-0.019356673583388,0.044046442955732]],[[0.090316452085972,-0.04967575147748,-0.06316414475441],[0.10929801315069,0.075466684997082,0.065084166824818],[0.010403735563159,0.037300065159798,0.022689696401358]],[[0.0023600154090673,-0.03088915348053,0.012826915830374],[0.028664043173194,0.0011954628862441,0.099675320088863],[-0.035757906734943,0.044187191873789,-0.06340453773737]],[[-0.031306836754084,-0.015588362701237,0.082573682069778],[0.02952179685235,0.021868897601962,0.0046260543167591],[0.07946801930666,-0.014691419899464,0.016760475933552]],[[-0.015166979283094,-0.010404855012894,0.083894200623035],[0.055694423615932,0.021708827465773,0.023853043094277],[0.00070377514930442,-0.0054888753220439,0.0064836428500712]],[[0.058906745165586,-0.038152139633894,-0.014286394231021],[-0.041916687041521,0.084753893315792,-0.065810114145279],[-0.01845894753933,0.029776996001601,0.074009649455547]],[[0.06116584315896,-0.01808724552393,-0.015530639328063],[0.0090593546628952,0.031070407480001,0.012684463523328],[-0.032867342233658,0.012833557091653,-0.020709099248052]],[[0.076836422085762,0.043655831366777,0.019143160432577],[0.029340386390686,-0.018114676699042,0.078923039138317],[0.04923527315259,-0.053698282688856,0.012582416646183]],[[0.056412626057863,-0.053816135972738,-0.05172910168767],[0.057940937578678,-0.010225056670606,0.025790117681026],[-0.015891008079052,0.030174024403095,-0.04302840679884]],[[-0.0089639974758029,-0.071763031184673,-0.048180565237999],[-0.035716887563467,-0.01653135754168,-0.018280349671841],[0.051484305411577,0.050938252359629,-0.059037789702415]],[[-0.040128938853741,-0.0024602396879345,-0.027950463816524],[0.033405736088753,-0.024491216987371,0.030714156106114],[-0.024413403123617,0.026975683867931,0.029256626963615]],[[0.060555562376976,-0.027504164725542,-0.034680414944887],[0.0096026882529259,0.035844184458256,-0.021523464471102],[-0.054026622325182,0.080245137214661,0.011215638369322]],[[-0.030014196410775,-0.01152902469039,0.0042710565030575],[-0.062672652304173,0.023291356861591,-0.020301947370172],[-0.0091155441477895,0.0011733560822904,-0.031521629542112]],[[-0.062188755720854,-0.008208273909986,0.0087520098313689],[0.056394454091787,-0.018230414018035,-0.021895941346884],[-0.03759552910924,-0.066766038537025,0.0063398648053408]],[[0.056695774197578,-0.036215338855982,0.057554982602596],[0.067845694720745,0.051995303481817,-0.062313970178366],[0.0090992003679276,0.022126737982035,-0.011076037772]],[[-0.050940029323101,-0.040248908102512,-0.0082248998805881],[0.046437624841928,0.0062711066566408,0.062505267560482],[-0.06205302849412,0.031707525253296,0.049964260309935]],[[-0.030585035681725,-0.027218103408813,0.02347594127059],[-0.00075660092988983,0.024946266785264,-0.017923396080732],[-0.034199185669422,0.061509657651186,-0.08321725577116]],[[-0.037408508360386,-0.024005997925997,0.013667217455804],[0.0605623498559,0.018737178295851,0.048875913023949],[0.008602986112237,-0.043042629957199,-0.035811699926853]],[[-0.03018699772656,-0.0035017242189497,0.034440562129021],[0.035838078707457,-0.054172549396753,-0.0072552035562694],[0.030003076419234,0.023924684152007,-0.04142751917243]],[[0.019183492287993,-0.029667479917407,0.01069531403482],[-0.076646871864796,-0.0044753537513316,-0.0075051155872643],[0.010850887745619,-0.014972937293351,0.027743063867092]],[[0.045458596199751,0.044755481183529,0.043375097215176],[0.038560576736927,0.038341261446476,-0.051083128899336],[0.0702049061656,0.087462395429611,0.010643871501088]],[[-0.044453401118517,-0.0021756032947451,-0.035678997635841],[-0.0093928258866072,-0.046541456133127,0.022314496338367],[-0.072297744452953,-0.048639267683029,-0.034550860524178]],[[0.025516772642732,-0.022226901724935,0.017053999006748],[0.041984297335148,-0.0029888874851167,0.049922943115234],[-0.0011814485769719,-0.0051475018262863,0.032409235835075]],[[-0.0098597435280681,0.060578256845474,-0.012438416481018],[0.098263755440712,-0.014888750389218,-0.050574719905853],[-0.0060462574474514,2.9832550353603e-05,0.016558995470405]],[[-0.03163943067193,-0.037454005330801,0.030771300196648],[-0.058510027825832,0.024032175540924,-0.017586570233107],[-0.010267844423652,0.11159794777632,-0.0090729556977749]],[[-0.040139466524124,-0.041164889931679,-0.0016893267165869],[-0.023039570078254,0.028280220925808,-0.061171647161245],[-0.064121447503567,-0.082770355045795,0.033671002835035]],[[0.028624080121517,0.069744817912579,-0.018170474097133],[0.0022506534587592,-0.033570609986782,0.003850962035358],[-0.063844628632069,-0.0037432021927088,-0.018595609813929]],[[0.065310001373291,0.05302008241415,-0.0013249891344458],[-0.022704700008035,0.0069683822803199,0.069122694432735],[0.047069795429707,-0.0041971770115197,-0.018317678943276]],[[-0.031476568430662,0.0042630918323994,0.021412434056401],[0.053754664957523,-0.0078114629723132,0.010318486019969],[0.027311462908983,-0.032118301838636,0.013396020978689]],[[0.010471057146788,0.071430414915085,-0.003628458827734],[0.037802066653967,0.050107222050428,-0.012718259356916],[0.036322455853224,-0.039190221577883,0.044982012361288]],[[0.046407628804445,-0.013117033988237,-0.0024473718367517],[0.084706880152225,0.060211434960365,-0.022529566660523],[0.074081853032112,-0.021837219595909,0.024322865530849]],[[-0.013803535141051,0.058048442006111,0.095926590263844],[0.0030509524513036,0.056402616202831,0.13316218554974],[-0.02114774659276,0.075831197202206,0.0013406074140221]],[[-0.0137999933213,0.0094421096146107,0.047448113560677],[-0.011224890127778,0.0088809635490179,0.015877367928624],[-0.016438446938992,0.041135665029287,-0.00046332780038938]],[[-0.0042133876122534,-0.019447684288025,0.010407170280814],[0.0048729092814028,0.0043933815322816,-0.064355798065662],[0.038683976978064,-0.042094599455595,0.014920583926141]]],[[[-0.009581015445292,0.028975296765566,0.022197561338544],[-0.022922001779079,-0.00089555070735514,0.089895069599152],[-0.0047755995765328,0.088018253445625,-0.016494169831276]],[[0.011969549581409,0.1165210083127,-0.053787268698215],[-0.0086366636678576,-0.014591170474887,0.023128654807806],[-0.0046764290891588,-0.0010955157922581,0.021051939576864]],[[-0.010644751600921,-0.034500759094954,0.035741314291954],[0.013716349378228,0.027220295742154,-0.019055061042309],[-0.013863754458725,-0.013427696190774,0.057648211717606]],[[0.04569985345006,0.0034966764505953,0.083088740706444],[0.010424067266285,-0.035899557173252,0.017973091453314],[-0.011788036674261,-0.0029148007743061,-0.0072798025794327]],[[-0.042508766055107,0.0065007796511054,0.02944921888411],[-0.11681167036295,0.0086824223399162,-0.021830677986145],[0.052108805626631,0.057987671345472,0.040036074817181]],[[0.018537331372499,0.045883473008871,0.087135672569275],[0.039047807455063,0.052616640925407,-0.0048037846572697],[-0.037530191242695,0.042440678924322,0.074096657335758]],[[-0.014737572520971,0.0084350435063243,0.058547370135784],[0.02275924384594,0.078374765813351,0.04247834533453],[0.14832165837288,-0.035121783614159,-0.059834230691195]],[[0.033703822642565,-0.021065002307296,-9.1503439762164e-05],[0.059812478721142,-0.033772245049477,0.067928783595562],[-0.003422130830586,-0.034793481230736,-0.020804014056921]],[[-0.051918532699347,0.080242842435837,0.024864863604307],[-0.063397325575352,0.04131979867816,0.029971463605762],[0.070982806384563,0.0010847959201783,0.091575287282467]],[[-0.019198335707188,0.1599172949791,-0.0051541225984693],[-0.017499219626188,0.059441853314638,0.043387275189161],[-0.0050329943187535,0.035584025084972,0.07311575114727]],[[0.066769428551197,0.042213290929794,0.013498778454959],[0.0076402551494539,-0.029111856594682,0.030096188187599],[-0.0017096191877499,0.03767254948616,0.09755253046751]],[[0.014716675505042,-0.024241810664535,-0.0082667507231236],[0.054575309157372,0.060121390968561,-0.0096713406965137],[-0.048535507172346,0.026237541809678,0.050445757806301]],[[0.050966683775187,0.031864523887634,-0.05240348353982],[0.021729430183768,0.019341606646776,-0.035113360732794],[0.061972446739674,0.017742400988936,0.010577859356999]],[[0.02329065836966,-0.040697153657675,0.06158959493041],[-0.077333375811577,0.03979305550456,-0.007626713719219],[0.063285782933235,0.016868114471436,-0.065093211829662]],[[0.09342797100544,-0.00080988416448236,-0.011311802081764],[0.085723839700222,0.13288977742195,0.046567648649216],[0.021779637783766,0.098974741995335,0.15081487596035]],[[-0.010262121446431,-0.074214614927769,0.0099668651819229],[-0.073561578989029,0.016052944585681,0.021268120035529],[-0.048066452145576,-0.0025726340245456,-0.079775966703892]],[[0.0025750750210136,-0.014957658946514,0.040680751204491],[0.033393517136574,0.04269515350461,0.064201518893242],[-0.035201203078032,0.0022723856382072,-0.0033174743875861]],[[-0.0062943687662482,0.021666299551725,-0.04397989064455],[-0.051115658134222,0.089915007352829,0.028235096484423],[-0.028999287635088,-0.040510401129723,-0.041019979864359]],[[-0.079010188579559,-0.020738303661346,0.070376247167587],[-0.020404832437634,-0.09609741717577,-0.013262304477394],[-0.0068119312636554,-0.018089221790433,0.024502541869879]],[[0.071341194212437,0.036625705659389,0.016325464472175],[0.0029239845462143,-0.076862283051014,-0.064124524593353],[0.10858000814915,-0.041308119893074,0.05608269199729]],[[0.027080783620477,0.050457868725061,-0.017304109409451],[0.091620936989784,0.038010057061911,-0.023642774671316],[-0.017038999125361,0.0016547847772017,0.078952372074127]],[[0.0090963253751397,-0.0073656062595546,0.047097455710173],[0.019051058217883,-0.026519667357206,0.030608724802732],[0.072626292705536,-0.11382516473532,-0.0013667026069015]],[[0.049742322415113,-0.064999729394913,0.050114419311285],[-0.13506111502647,-0.059861768037081,0.024052305147052],[-0.028698526322842,0.041321747004986,-0.058446954935789]],[[0.00064774765633047,-0.037843625992537,-0.00058611109852791],[-0.0030586863867939,0.0027929169591516,0.067824855446815],[-0.073969304561615,-0.013216413557529,-0.0095778284594417]],[[0.0066452189348638,0.034212756901979,0.035341303795576],[0.0080291051417589,-0.009990450926125,-0.025606321170926],[0.044021915644407,0.025291752070189,0.028270699083805]],[[0.036895047873259,0.01448714826256,0.0088091855868697],[0.017614444717765,-0.00054623029427603,-0.037423223257065],[0.031301181763411,0.032632388174534,-0.022496899589896]],[[0.065765835344791,0.054251033812761,-0.051509656012058],[0.021595580503345,0.0075143678113818,0.061884917318821],[0.019993191584945,0.016246154904366,0.033405013382435]],[[0.046806085854769,0.051850039511919,-0.003407992888242],[0.028875790536404,-0.08695112913847,0.004827078897506],[0.019506178796291,-0.0018103044712916,-0.0064176223240793]],[[0.0017966626910493,0.035152520984411,-0.016986457630992],[0.059904083609581,-0.037437494844198,0.041588362306356],[-0.063464589416981,0.0070618437603116,0.083126343786716]],[[0.011756723746657,0.016422213986516,0.0017701191827655],[-0.037897922098637,-0.03318240866065,0.06097324192524],[-0.029662514105439,0.028350535780191,0.0064701004885137]],[[0.01133802998811,-0.063947983086109,0.0291942730546],[0.049501266330481,-0.010512614622712,0.042529419064522],[0.10369270294905,-0.024832371622324,0.0018762740073726]],[[-0.027799554169178,-0.061704706400633,-0.010369511321187],[0.016314070671797,-0.061015550047159,0.00050064903916791],[0.014229349792004,0.060073256492615,-0.0052133528515697]],[[0.015024149790406,-0.03006536513567,0.02948871254921],[0.013626743108034,-0.051502645015717,-0.024284681305289],[0.08760441839695,0.052345830947161,-0.02949870750308]],[[-0.010861087590456,0.090657830238342,-0.0089483074843884],[0.053336601704359,0.0072734686546028,-0.012204920873046],[0.013970527797937,0.059496644884348,-0.027242684736848]],[[0.037222653627396,-0.069244749844074,0.043593797832727],[0.0014515992952511,0.11066525429487,0.055147811770439],[0.02877464145422,-0.020456833764911,0.021042125299573]],[[-0.028396304696798,-0.0015713889151812,-0.056117121130228],[0.01630499958992,-0.037719871848822,0.073496617376804],[-0.06231801584363,-0.001270490931347,-0.031766880303621]],[[-0.03938115760684,-0.055460318922997,0.0055914600379765],[-0.039062350988388,0.02463654242456,-0.048618085682392],[-0.022747842594981,0.023148505017161,-0.043959468603134]],[[0.016907386481762,0.013268073089421,0.023843070492148],[0.041651301085949,-0.0065235742367804,0.062284138053656],[-0.012650200165808,0.0047437655739486,0.029518688097596]],[[-0.001346506876871,0.00094213132979348,0.030323036015034],[0.049277819693089,-0.029020272195339,0.028824577108026],[0.019953472539783,0.076335735619068,-0.13566416501999]],[[-0.077643468976021,0.077948205173016,0.016032902523875],[0.0054869009181857,-0.00089723413111642,-0.073497861623764],[0.026643063873053,0.040278218686581,-0.020220533013344]],[[-0.0057236216962337,-0.023551912978292,0.01729629188776],[0.048386432230473,0.016215709969401,-0.023874690756202],[-0.045577678829432,0.0088451690971851,0.0392348729074]],[[-0.010748128406703,0.050498858094215,0.049194440245628],[0.043066121637821,0.040795180946589,-0.001213600859046],[-0.09172922372818,-0.0068922629579902,0.050310268998146]],[[-0.013070550747216,0.076352030038834,-0.00016532880545128],[0.011826591566205,0.060846406966448,0.031661938875914],[-0.045971542596817,0.0024500740692019,0.092419937252998]],[[0.0030622961930931,0.073692008852959,0.035198882222176],[-0.029314374551177,-0.04372438788414,-0.019250445067883],[-0.0023283956106752,0.049466617405415,0.030847381800413]],[[0.0760118663311,-0.026372602209449,0.063114628195763],[-0.049432385712862,0.054116893559694,-0.0063170231878757],[-0.063775762915611,0.029878601431847,0.01316133979708]],[[0.0097650578245521,-0.031048679724336,0.043275836855173],[0.018676551058888,-0.015407583676279,0.039371747523546],[0.030811542645097,0.072685703635216,0.026754159480333]],[[-0.03632140904665,0.03769551590085,-0.01332622487098],[0.011126972734928,0.0021634679287672,0.11455009877682],[0.022181708365679,-0.00038286179187708,0.041097018867731]],[[0.10040119290352,0.023054266348481,-0.016956921666861],[-0.04895805940032,0.020436516031623,0.054292466491461],[0.047264445573092,0.012635726481676,-0.018871502950788]],[[0.0092664510011673,0.030420692637563,-0.014323009178042],[-0.015077222138643,0.079646952450275,-0.0089531550183892],[-0.0095459073781967,0.01197549700737,0.077839940786362]],[[0.059329885989428,0.043653607368469,0.065198749303818],[-0.020935574546456,0.087480470538139,-0.013659435324371],[0.083236925303936,-0.028243647888303,0.025474628433585]],[[0.045611940324306,-0.017035119235516,-0.024704901501536],[-0.028169235214591,0.011087839491665,-0.11424250155687],[-0.012586171738803,0.091583512723446,0.081459388136864]],[[-0.010387796908617,0.023577205836773,-0.062966175377369],[0.011257329955697,0.056518875062466,0.01645533926785],[-0.012164080515504,-0.090803757309914,-0.039478320628405]],[[-0.036294389516115,0.045171983540058,0.0072182244621217],[-0.0018774901982397,-0.014294317923486,-0.026253892108798],[-0.013212610036135,0.028092639520764,0.035805016756058]],[[0.040845640003681,0.025916246697307,0.0018519178265706],[-0.04666568338871,0.02198670245707,0.042754095047712],[0.091835856437683,-0.028569463640451,0.071520201861858]],[[0.048434399068356,0.07055189460516,0.077361568808556],[-0.024117177352309,0.018457936123013,0.06157773733139],[-0.047720722854137,0.01806527748704,0.034106578677893]],[[-0.048942659050226,-0.08764224499464,-0.018975714221597],[0.01874765753746,-0.0072359060868621,0.061889681965113],[0.034229412674904,0.0029260842129588,-0.014325632713735]],[[-0.050456065684557,0.017366150394082,0.010500261560082],[-0.0084730489179492,0.042952943593264,-0.0014428813010454],[0.019334824755788,0.0085992030799389,0.019327664747834]],[[0.0494937710464,-0.017135290428996,0.10315561294556],[0.03099144808948,-0.0053982976824045,0.01759385317564],[0.075476266443729,0.087992079555988,-0.080170184373856]],[[-0.022482311353087,-0.0058873137459159,-0.00037726879236288],[0.10668006539345,-0.037553705275059,0.015390222892165],[0.063003018498421,-0.064438223838806,0.06943741440773]],[[0.031023927032948,0.0015249572461471,-0.0019641974940896],[0.054883748292923,-0.030530173331499,0.019542304798961],[-0.08087695389986,0.039032511413097,0.0050320401787758]],[[-0.014641265384853,-0.013672630302608,-0.014911143109202],[-0.0072678560391068,0.017633866518736,0.024283418431878],[-0.097141623497009,0.020357750356197,-0.031494405120611]],[[-0.019750380888581,-0.012075841426849,-0.026024952530861],[-0.057123780250549,0.0032651787623763,0.0051153972744942],[-0.068176463246346,-0.076024658977985,-0.033204056322575]],[[0.036012396216393,-0.027159404009581,0.09003870934248],[-0.050077516585588,0.015305403620005,-0.0045675430446863],[-0.0098142409697175,-0.017884653061628,0.018704768270254]],[[0.0037770613562316,-0.00039618939626962,0.064441204071045],[-0.023840568959713,-0.062439743429422,-0.0050212270580232],[0.023909831419587,-0.034589771181345,0.038842715322971]],[[-0.037578675895929,0.0052368575707078,-0.02719659730792],[0.002202681498602,-0.014464654028416,-0.0085099367424846],[0.012896671891212,0.0060623101890087,0.0022420815657824]],[[-0.034106757491827,-0.0038206591270864,0.016100663691759],[0.070594534277916,-0.033201657235622,-0.019563890993595],[-0.031735941767693,0.052071608603001,0.013304467312992]],[[0.069504827260971,-0.068848259747028,-0.01970505155623],[-0.032334819436073,-0.0049877148121595,-0.046707939356565],[0.034589342772961,0.025303529575467,0.0090922946110368]],[[0.029040783643723,0.024205390363932,-0.0025796678382903],[0.083387225866318,-6.8520232161973e-05,-0.015151926316321],[-0.0089468276128173,0.028925051912665,0.038695365190506]],[[-0.0017239924054593,-0.029417892917991,0.062184378504753],[-0.0024736400227994,0.094010747969151,0.013047693297267],[0.024675598368049,-0.022998359054327,-0.075172878801823]],[[-0.043399192392826,0.026613404974341,0.00093488249694929],[0.0083862505853176,0.0071590440347791,0.024171048775315],[0.0017262974288315,-0.013900341466069,0.066777601838112]],[[0.031695879995823,-0.010270869359374,0.032182987779379],[-0.026197049766779,-0.027394564822316,0.0037455493584275],[-0.011317325755954,0.028660139068961,-0.062161151319742]],[[0.045545294880867,-0.050369895994663,-0.078459680080414],[-0.026239603757858,0.0016686846502125,0.0114956041798],[0.060472663491964,0.041148819029331,0.023798644542694]],[[-0.0094595486298203,-0.031633526086807,0.079451322555542],[-0.076770655810833,0.034307528287172,0.04883337020874],[-0.069383129477501,0.0094869611784816,0.043055482208729]],[[-0.074882857501507,0.0057493853382766,-0.026823844760656],[0.044913787394762,-0.031260084360838,0.047404125332832],[0.031406711786985,0.024576498195529,-0.055225882679224]],[[-0.045766692608595,0.030808161944151,-0.022297728806734],[0.068284429609776,-0.03514151647687,-0.026467766612768],[-0.016965474933386,-0.019655298441648,0.086528338491917]],[[-0.10033601522446,0.024521220475435,0.022615795955062],[0.1075349599123,-0.082406289875507,-0.016190992668271],[0.014846890233457,0.0070416922681034,-0.064142882823944]],[[0.0066631752997637,-0.026438692584634,0.0037360892165452],[0.033513400703669,0.029913065955043,0.0096974289044738],[-0.045011334121227,0.075602896511555,0.016134304925799]],[[-0.024776555597782,0.019711215049028,0.020623967051506],[0.034762091934681,-0.013109724037349,-0.010376102291048],[0.045646835118532,0.045326165854931,-0.016447361558676]],[[0.0056265243329108,0.018975241109729,-0.012874192558229],[0.0187255628407,-0.021202247589827,0.053305391222239],[0.026757538318634,-0.04428144544363,-0.0076905796304345]],[[0.078101500868797,0.022103505209088,0.031179210171103],[0.018756359815598,0.079112961888313,0.02809988707304],[0.018482679501176,0.011926721781492,-0.01498759072274]],[[-0.0068651344627142,0.037876091897488,0.089476868510246],[-0.0070256739854813,0.052676614373922,-0.035230871289968],[0.095978088676929,0.0096726948395371,-0.034376427531242]],[[-0.036119606345892,0.011807000264525,0.028352919965982],[0.074390269815922,-0.090175591409206,0.053429495543242],[-0.0444480702281,0.015840051695704,-0.050447266548872]],[[-0.017858773469925,-0.075092755258083,-0.074449963867664],[0.028624163940549,-0.017113279551268,0.073936462402344],[-0.0099889673292637,-0.0082811694592237,0.018751529976726]],[[-0.0057719424366951,-0.0047112773172557,-0.075449854135513],[-0.069389492273331,0.00077520491322502,-0.032177958637476],[0.062646932899952,-0.00037585257086903,-0.020204829052091]],[[0.019525906071067,-0.034719619899988,0.073191314935684],[0.019251486286521,-0.026161024346948,0.046638291329145],[0.041844692081213,0.025244910269976,-0.022250175476074]],[[-0.022514875978231,-0.05887384340167,0.013387436047196],[-0.081649892032146,-0.11698151379824,-0.029010444879532],[-0.022029060870409,-0.041443280875683,0.026739906519651]],[[-0.010288185440004,0.1021229699254,0.023293137550354],[-0.077955685555935,0.026350414380431,-0.013267017900944],[-0.036879096180201,0.057226490229368,-0.023168319836259]],[[0.051169518381357,-0.053016506135464,0.089764781296253],[-0.0098361736163497,-0.009834036231041,-0.0085511785000563],[0.086539715528488,0.03294188156724,-0.050670336931944]],[[0.077672407031059,-0.066141285002232,0.059308290481567],[0.038157887756824,0.024306017905474,0.033911529928446],[-0.081748150289059,-0.012123253196478,0.094644896686077]],[[0.015699567273259,0.03420527279377,0.024288950487971],[0.00035770196700469,0.016338031738997,-0.0084460871294141],[-0.028927909210324,0.025324685499072,-0.0073010544292629]],[[0.05422580242157,0.10389414429665,0.055428639054298],[0.014578505419195,-0.0033762450329959,0.020705638453364],[0.041841078549623,-0.029654731974006,0.011190029792488]],[[0.038742747157812,0.085350558161736,0.01636097766459],[0.046173628419638,0.009048480540514,0.03741604462266],[-0.029667744413018,-0.015258017927408,0.084964215755463]],[[0.018388682976365,-0.08430439978838,0.049859780818224],[0.0051400195807219,0.063944637775421,-0.035538714379072],[0.021017970517278,0.0013633681228384,-0.10464022308588]],[[0.05410510674119,-0.016463357955217,0.0045890780165792],[-0.016962418332696,-0.020865054801106,0.024879952892661],[0.072272278368473,0.045849971473217,-0.056311685591936]],[[-0.034957084804773,-0.0012276879278943,-0.025705248117447],[0.055679176002741,0.083818264305592,-0.06328160315752],[0.0024395049549639,-0.015242434106767,0.065229304134846]],[[-0.085581555962563,-0.089781396090984,-0.04530305787921],[0.093359425663948,-0.012368974275887,0.04581218585372],[0.014261741191149,0.046930227428675,-0.010591777041554]],[[0.043356895446777,0.052303779870272,0.0010482216021046],[0.11404260993004,-0.012658877298236,0.059171229600906],[-0.047262713313103,-0.0030713258311152,-0.071209624409676]],[[0.0097203077748418,-0.0081974333152175,-0.023874772712588],[-0.023162772879004,0.011884461157024,-0.0023590079508722],[0.01134090218693,0.022389831021428,0.052346237003803]],[[0.0043412800878286,0.012075274251401,0.041184317320585],[-0.043711081147194,0.018210364505649,-0.022113224491477],[0.043061312288046,0.0056059639900923,0.018404822796583]],[[0.083594046533108,0.10344534367323,-0.0058612274006009],[0.009028940461576,-0.013869417831302,0.011424667201936],[0.047480802983046,-0.010901410132647,0.037411399185658]],[[-0.06778921186924,0.011438247747719,0.053331393748522],[-0.061297282576561,0.022807473316789,0.089237421751022],[0.059353448450565,-0.02683424577117,-0.020432461053133]],[[0.058010444045067,0.049185708165169,0.044880408793688],[0.067464388906956,-0.0027537394780666,0.09787617623806],[0.052488818764687,0.062536925077438,0.04180695861578]],[[-0.016509544104338,0.04040227457881,0.071825921535492],[0.056135486811399,0.030733251944184,0.041581556200981],[0.13281714916229,0.02685428597033,0.0039655310101807]],[[-0.0058075953274965,0.012593697756529,0.011612328700721],[-0.0097252121195197,-0.088324368000031,-0.026016725227237],[-0.049681454896927,0.017834678292274,-0.0070319664664567]],[[-0.058344703167677,0.060994192957878,0.02542170509696],[-0.0035846158862114,0.080534905195236,-0.050505150109529],[-0.0033620805479586,-0.041628580540419,0.0074633723124862]],[[0.0096122641116381,-0.031436391174793,0.069673106074333],[0.0057310927659273,0.00035960419336334,-0.0063203256577253],[-0.07957049459219,0.059676557779312,0.064485736191273]],[[0.04858448728919,0.084489107131958,-0.043955892324448],[-0.035221289843321,0.024837547913194,-0.047821078449488],[0.078727290034294,0.057933632284403,0.026544898748398]],[[0.019247462972999,-0.014076377265155,0.061267074197531],[0.0089286146685481,-0.029377540573478,0.063429020345211],[-0.040175266563892,-0.068313404917717,-0.0088035194203258]],[[0.092832371592522,-0.062187727540731,-0.043108906596899],[0.024530908092856,0.12874935567379,-0.040211733430624],[0.024195775389671,-0.018694086000323,0.07094819098711]],[[-0.075942657887936,-0.011879423633218,0.0060454392805696],[-0.040238045156002,0.027928223833442,0.0042485911399126],[-0.030756924301386,-0.062686257064342,0.020764062181115]],[[0.043348755687475,-0.040242683142424,-0.027427306398749],[0.034791421145201,-0.030027249827981,-0.042692523449659],[-0.04419406875968,0.071753084659576,0.016559036448598]],[[-0.032794028520584,-0.039147667586803,-0.13651297986507],[0.0046706884168088,0.0077300644479692,-0.0025466324295849],[-0.0048951026983559,0.061188410967588,-0.070479363203049]],[[-0.091857634484768,0.037419386208057,0.027526175603271],[0.0085226492956281,0.013904731720686,0.0085628433153033],[-0.052190270274878,-0.030419658869505,0.028222355991602]],[[0.023067669942975,-0.018859446048737,0.056645452976227],[0.03463014960289,-0.020517725497484,-0.039770383387804],[0.065694861114025,0.031765904277563,0.042046446353197]],[[-0.0097192181274295,-0.0020908962469548,-0.061035100370646],[0.0097156651318073,-0.088408634066582,-0.030375840142369],[0.022629015147686,-0.015716481953859,0.0048182238824666]],[[0.044290404766798,-0.083166211843491,-0.0044104689732194],[0.038567610085011,0.031544886529446,-0.07776453346014],[-0.079501032829285,-0.0063063013367355,-0.017575198784471]],[[0.0098354453220963,0.028101325035095,0.041805863380432],[-0.0021470568608493,0.00072826881660149,0.10339926183224],[0.0056252162903547,0.039945535361767,0.025210538879037]],[[-0.019938772544265,0.0094667132943869,-0.025731828063726],[-0.048414640128613,-0.0024755955673754,0.0058647799305618],[0.00021627843671013,-0.02221411652863,0.029220631346107]],[[-0.05094775930047,-0.025188634172082,0.022174816578627],[-0.023716874420643,-0.053786795586348,-0.010245920158923],[-0.043600499629974,-0.01692364551127,-0.022263007238507]],[[-0.029229868203402,-0.0049725901335478,-0.033601768314838],[-0.023274086415768,-0.029929224401712,0.00466817477718],[-0.0057743866927922,0.013437452726066,-0.052978627383709]],[[0.055619426071644,0.02820854075253,0.022911820560694],[0.0048707593232393,0.091542571783066,-0.0058498256839812],[-0.096406206488609,0.0032341801561415,0.01420409604907]],[[-0.0090552615001798,-0.014023952186108,0.015797276049852],[0.025730414316058,0.0098432619124651,-0.013795698061585],[0.002687665168196,-0.026293965056539,0.035899762064219]],[[0.012466882355511,-0.040189698338509,-0.0023823778610677],[-0.031788095831871,-0.026711050421,0.039090622216463],[-0.0018638119800016,0.056388806551695,-0.078871421515942]],[[-0.045327719300985,-0.035322945564985,0.015359977260232],[0.021356292068958,-0.046351172029972,0.027326205745339],[0.0063181887380779,0.020832037553191,-0.037336125969887]],[[0.031528748571873,0.041027378290892,0.023997856304049],[-0.016411542892456,-0.0091076400130987,0.00065945897949859],[-0.022824589163065,-0.058416701853275,0.022825932130218]],[[0.019531676545739,-0.0028625128325075,0.027661696076393],[-0.047674302011728,0.037415757775307,-0.019949287176132],[-0.057380050420761,-0.0089429831132293,0.025074919685721]],[[0.027470540255308,0.021140109747648,0.066340819001198],[-0.034072052687407,-0.017294092103839,0.033789128065109],[0.040345095098019,0.014476308599114,-0.04985248669982]],[[-0.028119072318077,0.0078348545357585,-0.0076825232245028],[-0.00701649999246,0.017008380964398,0.023923708125949],[-0.0027627381496131,-0.07151921838522,0.0010390465613455]]],[[[-0.14823178946972,-0.041257180273533,0.051509093493223],[0.068513706326485,0.0026249247603118,0.027510970830917],[0.071720004081726,-0.0068613430485129,0.088096141815186]],[[-0.061299595981836,-0.037508394569159,-0.012011002749205],[-0.059340588748455,0.045431405305862,0.024768732488155],[-0.10114167630672,0.011617818847299,-0.041760463267565]],[[0.041127264499664,0.024705046787858,-0.039731562137604],[0.089413776993752,-0.061016265302896,-0.055475804954767],[0.0054633906111121,0.087122924625874,0.0099282767623663]],[[0.034771271049976,-0.12276794016361,0.10743425786495],[0.0082210898399353,0.040241777896881,-0.069142878055573],[-0.0017640192527324,-0.0068196919746697,0.0024194803554565]],[[0.030916703864932,-0.066569522023201,0.11732315272093],[0.053813651204109,0.024406187236309,0.060425743460655],[-0.030079638585448,-0.069017961621284,-0.014594743959606]],[[0.039973266422749,-0.020059870555997,-0.096694566309452],[-0.0063565596938133,0.11707580834627,-0.018195981159806],[-0.024742046371102,0.050561591982841,-0.025074947625399]],[[0.045767243951559,0.0074973166920245,0.060075633227825],[-0.087292276322842,0.050734929740429,0.032421942800283],[-0.10203290730715,0.084721423685551,-0.058189585804939]],[[-0.00028476759325713,0.014294399879873,0.096750572323799],[0.015479553490877,0.069947861135006,-0.0078282123431563],[1.928536221385e-06,-0.013391667976975,-0.060049410909414]],[[0.0088835163041949,0.020471015945077,0.15954498946667],[-0.048702448606491,0.021223712712526,-0.017963413149118],[0.02785692922771,-0.12975753843784,0.052926648408175]],[[0.16580545902252,-0.033285852521658,0.047452971339226],[0.18548195064068,-0.13382560014725,-0.13535808026791],[0.055953491479158,-0.099527984857559,0.04094110429287]],[[0.054832573980093,0.068772047758102,0.16817171871662],[0.07557874917984,0.021878659725189,0.020339388400316],[-0.078031092882156,-0.10402402281761,-0.12592878937721]],[[0.099528104066849,-0.17331020534039,0.019373789429665],[-0.036561116576195,0.081186413764954,0.054215658456087],[0.018379434943199,0.020693771541119,-0.046078126877546]],[[-0.061317846179008,-0.038517504930496,-0.13779650628567],[-0.076583817601204,0.0019819696899503,0.054494436830282],[-0.026236055418849,0.02620810456574,0.061299312859774]],[[-0.0034993859007955,0.11724152415991,-0.036459535360336],[0.040793962776661,-0.01267849188298,0.0034377130214125],[-0.023703880608082,-0.079829394817352,-0.043194081634283]],[[-0.033041466027498,0.12159214168787,0.08949302136898],[-0.10561868548393,0.02483749575913,-0.015403511933982],[-0.1008510068059,-0.012363095767796,0.11107338219881]],[[-0.0047535374760628,-0.055942106992006,-0.0023836991749704],[-0.12191211432219,0.039815444499254,-0.09544275701046],[0.03313184902072,-0.34755611419678,-0.0080545842647552]],[[-0.13924124836922,-0.024287866428494,0.059900861233473],[-0.01211510039866,0.15321636199951,-0.086812101304531],[0.12657730281353,0.049469396471977,-0.0087015815079212]],[[0.014473441056907,0.1252454072237,0.12185905873775],[-0.1061597764492,-0.0040559796616435,0.052261855453253],[-0.2626366019249,-0.076241679489613,-0.057878792285919]],[[0.085005097091198,-0.016315823420882,-0.053144112229347],[-0.028317315503955,0.016442546620965,0.10209117084742],[-0.049580942839384,-0.026793455705047,-0.11136498302221]],[[-0.02811205945909,-0.058071549981833,-0.019555585458875],[0.033981174230576,0.075709462165833,0.00060141005087644],[0.13412255048752,0.11065129190683,-0.0040083723142743]],[[0.038087159395218,-0.12807609140873,-0.013507568277419],[-0.16133347153664,-0.084774665534496,0.12254803627729],[0.048012502491474,0.023388806730509,0.022507030516863]],[[0.00071222498081625,0.043434981256723,0.0025787570048124],[0.02414295822382,0.1510007828474,0.0029090717434883],[0.013175628148019,-0.087946675717831,-0.10653890669346]],[[-0.024925770238042,-0.0042164386250079,0.11451497673988],[0.099059849977493,-0.0024945437908173,0.042587898671627],[0.048357561230659,-0.090360701084137,-0.00077490857802331]],[[-0.036125857383013,0.021171055734158,0.025767676532269],[-0.011166641488671,0.096609279513359,0.068977311253548],[0.044089622795582,-0.1058040112257,-0.042393926531076]],[[-0.029010031372309,-0.11576912552118,-0.36846035718918],[0.036576814949512,-0.030215427279472,-0.29318523406982],[-0.32579219341278,-0.19211181998253,0.053797788918018]],[[-0.054930340498686,-0.0040601342916489,0.0011557334801182],[0.017775721848011,0.074421726167202,0.01222475245595],[0.035707272589207,-0.095163151621819,-0.16065362095833]],[[0.062696851789951,0.042590029537678,0.04407063126564],[-0.046525161713362,-0.03594084829092,0.067796885967255],[-0.12852440774441,-0.074566915631294,0.063014134764671]],[[0.031043788418174,0.053238190710545,0.018202140927315],[-0.0029831002466381,0.11334435641766,-0.078348010778427],[0.0077004828490317,-0.043033577501774,-0.080011025071144]],[[0.082477502524853,0.093499258160591,0.11255265027285],[0.077892497181892,-0.013523202389479,0.018363023176789],[-0.10812698304653,-0.058216482400894,0.014194623567164]],[[0.021934550255537,0.013424724340439,0.040907643735409],[-0.02629154920578,-0.05629774928093,0.089648626744747],[-0.14246314764023,0.030637886375189,0.14315770566463]],[[-0.075831018388271,0.065181098878384,0.069426760077477],[0.029487947002053,-0.051052868366241,-0.042848456650972],[-0.0061291954480112,-0.0041493894532323,-0.04011233523488]],[[-0.08300755918026,-0.076467975974083,-0.060794524848461],[0.0035628054756671,0.11154063045979,-0.16539171338081],[0.086402297019958,0.008772605098784,-0.1118024289608]],[[-0.021663824096322,0.01847156509757,0.017887432128191],[0.019287874922156,-0.010650955140591,-0.03022457100451],[-0.12341725081205,-0.060038391500711,0.063214644789696]],[[-0.12983159720898,-0.028681684285402,0.013967339880764],[0.090236529707909,-0.10952490568161,0.014593786559999],[0.0086744446307421,0.01281763240695,0.11905516684055]],[[-0.053609628230333,0.0023888535797596,0.0497264303267],[0.10404346138239,-0.013490565121174,-0.10093755275011],[0.097020447254181,0.10907215625048,-0.15907314419746]],[[0.024282736703753,-0.048632264137268,-0.093453541398048],[0.021544490009546,0.0072587751783431,-0.02270501293242],[-0.15510945022106,0.013333703391254,0.026435242965817]],[[0.019476318731904,0.0353126488626,-0.067444078624249],[-0.13952255249023,-0.15004029870033,0.021987244486809],[0.094106622040272,0.10541269183159,0.023363891988993]],[[0.086049064993858,-0.0097015872597694,0.069743908941746],[-0.047690462321043,-0.09090381115675,0.017116574570537],[0.044207353144884,-0.061579536646605,-0.033942721784115]],[[0.074856244027615,0.078307509422302,0.011567913927138],[0.017792243510485,-0.0092548998072743,-0.049638766795397],[-0.097220949828625,-0.22267653048038,0.11126279085875]],[[-0.0087709501385689,-0.070705994963646,0.0086065959185362],[-0.070726275444031,0.11213168501854,-0.033605370670557],[-0.019492786377668,0.072114177048206,-0.02428855933249]],[[-0.10282707214355,-0.019148716703057,-0.059794593602419],[0.085778616368771,-0.043606251478195,-0.088858067989349],[0.11264309287071,0.13063327968121,-0.18562713265419]],[[0.0014583998126909,-0.0062532718293369,0.040036167949438],[0.10163922607899,0.0051293089054525,-0.052366342395544],[-0.03437427431345,-0.025960614904761,0.037195306271315]],[[0.062954746186733,0.13116851449013,0.020407618954778],[-0.12021812051535,0.13141484558582,0.0089651830494404],[-0.13897705078125,0.013838144950569,-0.028081141412258]],[[-0.087284490466118,0.02021661773324,0.010899706743658],[-0.10834744572639,0.065406620502472,0.068471968173981],[-0.0093231238424778,-0.01287698559463,0.050735130906105]],[[-0.18283566832542,0.047309331595898,0.077379874885082],[-0.075096942484379,0.12554045021534,0.071927458047867],[-0.08601838350296,0.052614606916904,0.046203959733248]],[[-0.08529245108366,0.014106533490121,-0.079946957528591],[0.028347192332149,0.0086614890024066,-0.018674591556191],[0.21921546757221,0.078867420554161,-0.058696079999208]],[[0.015361010096967,-0.098294980823994,0.049177497625351],[0.094202183187008,-0.0064588012173772,-0.1352451890707],[0.063366420567036,-0.037475105375051,0.09237227588892]],[[0.11439220607281,-0.158551171422,0.096993520855904],[-0.13964022696018,0.10917020589113,-0.055778205394745],[0.02444775775075,0.0079462947323918,0.010422209277749]],[[0.00756895262748,0.05228266865015,0.093570992350578],[0.073151163756847,-0.065517470240593,0.0092770922929049],[-0.0012682589003816,-0.021573290228844,0.04745664075017]],[[-0.054386131465435,0.04720052704215,0.047445062547922],[0.038584098219872,-0.094716593623161,0.077570155262947],[0.091127797961235,-0.019084449857473,-0.0033504611346871]],[[-0.010648011229932,-0.097401551902294,-0.11367796361446],[0.015983520075679,0.045241430401802,0.015360076911747],[-0.0085868956521153,-0.10271363705397,-0.012730982154608]],[[-0.089068002998829,0.049428451806307,0.21033962070942],[0.022900095209479,0.16288538277149,-0.011523556895554],[-0.13930889964104,-0.13626980781555,-0.080586388707161]],[[-0.055380176752806,-0.026295365765691,-0.15425273776054],[-0.099609896540642,0.039825212210417,-0.026361281052232],[0.015871582552791,0.060230772942305,-0.045514367520809]],[[0.097485788166523,0.14017049968243,0.15064199268818],[0.0436607375741,-0.067055888473988,-0.050822231918573],[-0.087240651249886,-0.01814747788012,0.068906269967556]],[[0.034499265253544,0.030261427164078,0.035792905837297],[-0.04072330519557,0.074192322790623,-0.015705976635218],[-0.083955556154251,-0.063343398272991,0.071598634123802]],[[-0.062200672924519,-0.054628103971481,0.080588109791279],[-0.075635939836502,-0.034160986542702,-0.060932084918022],[-0.037903018295765,-0.017011769115925,-0.013672968372703]],[[-0.034792829304934,-0.015804449096322,0.073096662759781],[-0.079630695283413,0.018077766522765,-0.018349714577198],[-0.085568435490131,-0.0097305979579687,-0.0047970432788134]],[[0.022250700742006,-0.019305849447846,-0.019892746582627],[-0.052259527146816,0.075213387608528,-0.029715236276388],[-0.056383073329926,0.098954387009144,0.017597816884518]],[[-0.061363946646452,-0.22223776578903,-0.0050334469415247],[0.040428839623928,0.021966654807329,-2.7402897103457e-05],[0.0033606579527259,0.064129821956158,-0.023511247709394]],[[-0.005197437480092,0.12638510763645,-0.030976260080934],[-0.076986774802208,0.0029348633252084,-0.0065163159742951],[0.018950719386339,-0.065426133573055,0.15905517339706]],[[-0.040936727076769,0.080544129014015,-0.00096803647466004],[-0.13064582645893,-0.12577390670776,0.037616763263941],[-0.044777013361454,0.066009066998959,0.024779319763184]],[[-0.028578655794263,0.02286789752543,0.036435171961784],[0.076122164726257,-0.010415297932923,-0.050389997661114],[0.0056016454473138,-0.10501916706562,-0.074043832719326]],[[-0.045239582657814,-0.063691169023514,-0.06379334628582],[-0.041373543441296,-0.071568205952644,-0.076930172741413],[-0.011704008094966,0.06721319258213,0.020722867920995]],[[0.063586756587029,-0.081874929368496,-0.045704614371061],[0.067471258342266,0.057813487946987,0.031416408717632],[0.22583658993244,0.02464373037219,0.024320058524609]],[[-0.096206516027451,0.016513340175152,-0.12845243513584],[-0.019747899845243,-0.009438319131732,0.049750849604607],[0.021658496931195,0.093813188374043,0.12075562775135]],[[-0.019000396132469,0.032046459615231,-0.0056914230808616],[-0.037123195827007,-0.10770857334137,0.093059286475182],[-0.036278069019318,-0.097050577402115,0.054664716124535]],[[0.11550194770098,0.021917568519711,0.00091750989668071],[0.1077237278223,-0.028795797377825,0.018468532711267],[0.030461320653558,-0.039288830012083,-0.0588931851089]],[[-0.000264427770162,0.031774137169123,-0.057891480624676],[-0.10348239541054,0.15381240844727,-0.061186660081148],[0.082387112081051,-0.034459512680769,-0.14609840512276]],[[0.12272591888905,-0.0032629109919071,-0.012150624766946],[0.0068218726664782,-0.073144122958183,-0.082234002649784],[-0.14276140928268,-0.018084213137627,0.0081554492935538]],[[0.096505209803581,0.025940263643861,0.12116223573685],[-0.0149443782866,0.07303224503994,0.011144676245749],[0.054749377071857,-0.13533668220043,0.11989776790142]],[[-0.088884502649307,0.037951525300741,-0.10153921693563],[0.091718971729279,-0.011581200174987,-0.028126642107964],[0.1500590890646,0.084528870880604,0.00090243149315938]],[[-0.012420690618455,0.081727407872677,0.12276954203844],[0.033592153340578,0.0061320839449763,-0.023761926218867],[0.040290001779795,0.014239481650293,0.030862826853991]],[[0.035505570471287,-0.056393980979919,-0.012333530932665],[0.0078767649829388,-0.23468114435673,-0.020310072228312],[-0.021682100370526,-0.037297435104847,-0.001741174608469]],[[-0.039612825959921,-0.04999753087759,0.029970983043313],[-0.01843979395926,0.066418722271919,0.058721147477627],[-0.035738930106163,0.073816619813442,-0.15494959056377]],[[-0.031149458140135,0.0098809562623501,-0.11788721382618],[0.066098138689995,0.066234104335308,0.076257951557636],[0.1011201813817,0.0031088865362108,0.066052883863449]],[[0.05801972001791,-0.056013185530901,-0.058193542063236],[0.12446470558643,0.058457508683205,-0.095885798335075],[0.20583741366863,0.11003618687391,-0.078686460852623]],[[0.062194909900427,-0.0059562441892922,-0.15591199696064],[0.038512643426657,-0.0076373624615371,-0.099214807152748],[0.11309497058392,0.066388130187988,0.050180479884148]],[[0.10187789052725,0.021901180967689,0.036785699427128],[0.040985677391291,-0.037839464843273,0.043148126453161],[0.028628885746002,0.08479705452919,-0.11212068796158]],[[-0.10699435323477,-0.051754131913185,0.065328098833561],[0.049863673746586,-0.071016013622284,0.045167900621891],[-0.098601207137108,0.067619696259499,0.0010276178363711]],[[0.090174973011017,0.064862988889217,-0.0014568131882697],[-0.040673911571503,-0.039497751742601,-0.018319848924875],[0.010497451759875,0.01427811011672,-0.12665915489197]],[[-0.053246553987265,-0.015232861042023,-0.033597439527512],[0.010526038706303,-0.026539370417595,-0.058754317462444],[0.024445667862892,0.080750606954098,-0.094329655170441]],[[-0.004212205298245,0.1864557415247,0.088618226349354],[-0.015586988069117,-0.01131787057966,-0.0021259321365505],[-0.086281687021255,-0.003192390082404,-0.05723250284791]],[[-0.20640486478806,0.085096932947636,-0.001374228973873],[0.0600147806108,0.010455618612468,-0.091241590678692],[0.030523609369993,0.11489887535572,-0.14954209327698]],[[0.015241329558194,-0.00929204095155,0.065839782357216],[0.021695615723729,0.053472548723221,-0.036223016679287],[-0.084393858909607,0.061725616455078,0.045453280210495]],[[0.072172425687313,-0.01121969986707,-0.063484355807304],[0.056253984570503,-0.068665407598019,0.023935776203871],[0.022091846913099,-0.034257829189301,0.0033461819402874]],[[0.0086600994691253,-0.065544553101063,-0.151362657547],[0.053313553333282,0.026019120588899,0.14092412590981],[-0.069371119141579,0.034424334764481,0.082593619823456]],[[-0.076488986611366,0.051189012825489,-0.0783756300807],[0.055703613907099,-0.022608682513237,-0.0045889867469668],[-0.005896080750972,0.045384552329779,0.037914410233498]],[[0.0044078454375267,-0.038139130920172,-0.0156758017838],[0.15175928175449,-0.051518380641937,0.032221879810095],[-0.061792079359293,0.019244642928243,-0.072264976799488]],[[-0.0043146652169526,0.014077244326472,-0.17954039573669],[0.0042506661266088,0.022977419197559,-0.0017883379478008],[0.12524862587452,-0.12373001128435,-0.03257704153657]],[[0.034677807241678,0.016673980280757,0.011973664164543],[0.065950408577919,0.0071826693601906,-0.017705224454403],[-0.063525281846523,-0.067850992083549,0.014503100886941]],[[0.030942602083087,0.061797823756933,0.086530074477196],[0.016465228050947,0.01441946811974,0.042464330792427],[0.041609320789576,-0.036608222872019,-0.071320883929729]],[[-0.0072233923710883,-0.051796995103359,0.087130084633827],[-0.049313101917505,-0.0072590708732605,0.020493222400546],[-0.093903847038746,0.018456760793924,0.10109977424145]],[[0.042985040694475,0.065985567867756,-0.0320193618536],[-0.11844943463802,-0.13790979981422,0.062426298856735],[-0.10999833792448,0.034776091575623,0.067333951592445]],[[-0.077867470681667,-0.22215795516968,-0.0803282558918],[0.02530549839139,-0.017662378028035,0.02125614322722],[0.040572866797447,0.021805360913277,-0.039652485400438]],[[0.0067709488794208,0.050454054027796,0.064159251749516],[-0.067460738122463,0.045484878122807,-0.0096144462004304],[-0.11993871629238,0.18891082704067,-0.016522550955415]],[[-0.093551345169544,0.046446356922388,0.12387148290873],[0.0054465141147375,-0.026503328233957,-0.016938151791692],[-0.096286714076996,0.037858471274376,0.052161309868097]],[[0.068384870886803,0.03930352628231,-0.03725566342473],[0.10834774374962,-0.070111848413944,0.036235231906176],[0.06837721914053,0.078245006501675,-0.064553871750832]],[[-0.12402825802565,-0.037937480956316,0.060464184731245],[-0.069655165076256,0.090803846716881,0.062266133725643],[0.043449819087982,0.15301148593426,0.095769621431828]],[[0.067091755568981,0.066355004906654,0.0010331076337025],[0.0047348327934742,-0.010274325497448,-0.053502663969994],[-0.10098417103291,-0.10881899297237,-0.072093836963177]],[[0.079789072275162,0.058395501226187,-0.041731230914593],[0.013067110441625,-0.021221309900284,-0.082872197031975],[-0.028763247653842,-0.058624994009733,0.085219271481037]],[[-0.040546655654907,0.019510935992002,0.04033786803484],[-0.0043563526123762,-0.0015937248244882,0.067543253302574],[-0.044519070535898,0.035836886614561,-0.065989166498184]],[[0.063633687794209,0.025073386728764,-0.044045507907867],[0.042146850377321,0.12244818359613,-0.034508168697357],[0.076347097754478,0.054661642760038,0.03496565297246]],[[0.042070962488651,-0.052981503307819,0.075672283768654],[-0.028650548309088,-0.086969986557961,0.14510910212994],[0.084801241755486,-0.055898692458868,-0.045600265264511]],[[-0.10361765325069,-0.037694104015827,-0.050974927842617],[0.027225233614445,0.0052190069109201,0.11224072426558],[0.062599077820778,0.052218969911337,0.077027358114719]],[[-0.11063221096992,-0.078618422150612,0.002101186895743],[0.0091641489416361,-0.090107068419456,0.20071782171726],[-0.05064183473587,0.14354483783245,0.060105539858341]],[[-0.096126243472099,-0.063265420496464,0.013128341175616],[-0.021843897178769,-0.053416702896357,-0.088312543928623],[0.057046890258789,0.089128464460373,0.17224103212357]],[[0.030603820458055,0.043584898114204,0.023581713438034],[0.031704094260931,-0.027608646079898,0.031180277466774],[0.042417217046022,-0.0136339366436,0.020374555140734]],[[-0.049272857606411,-0.065800808370113,-0.091125272214413],[-0.03329112008214,0.095835596323013,-0.025908973067999],[0.12868294119835,0.061513222754002,0.0044492701999843]],[[-0.026492390781641,-0.080194607377052,-0.0069746375083923],[-0.073545731604099,0.094891011714935,0.14205455780029],[0.0051616257987916,0.023471148684621,0.084842875599861]],[[-0.022655338048935,0.0030747861601412,-0.027556059882045],[-0.015309018082917,0.062078487128019,-0.017855742946267],[0.01302766893059,0.041109036654234,-0.010897984728217]],[[0.045163210481405,0.012256242334843,-0.035221662372351],[-0.035286404192448,-0.15461042523384,0.040216781198978],[0.023731810972095,-0.010748715139925,0.005168229341507]],[[-0.047244686633348,-0.010102517902851,0.0025508489925414],[0.021297410130501,-0.073926448822021,-0.024837344884872],[0.064795359969139,0.057822324335575,0.065730229020119]],[[0.036378186196089,-0.090371452271938,0.09769257158041],[0.10529500246048,0.018767749890685,0.0088654831051826],[-0.0034476011060178,-0.010850640945137,-0.028005879372358]],[[-0.00066045939456671,0.0056888191029429,0.061069089919329],[-0.010901302099228,0.05719855800271,-0.067659862339497],[-0.011795923113823,-0.070158161222935,0.0077217859216034]],[[-0.03786489367485,0.0083087058737874,-0.088475190103054],[0.094211474061012,-0.0073903468437493,-0.051869098097086],[-0.0052754525095224,0.098433248698711,0.08828067779541]],[[0.050588361918926,0.10573527961969,-0.095290534198284],[-0.054395645856857,0.070578992366791,-0.018992884084582],[0.12370390444994,-0.089191488921642,-0.073759563267231]],[[0.067755401134491,-0.044523704797029,0.044476751238108],[-0.10313455760479,-0.013361567631364,0.095568537712097],[-0.0726632848382,0.058408968150616,0.11250138282776]],[[-0.047364227473736,0.0016804039478302,0.11309564858675],[-0.034018088132143,-0.092390298843384,-0.00090854213340208],[0.083867266774178,-0.0088849300518632,0.026062585413456]],[[-0.0067691025324166,-0.026551941409707,0.034854166209698],[-0.060098752379417,-0.0056261657737195,-0.078053317964077],[-0.09361644089222,0.11257707327604,0.091491810977459]],[[0.096609085798264,-0.17781065404415,-0.042158976197243],[-0.012947504408658,-0.052498996257782,-0.009845620021224],[0.057474318891764,0.022370951250196,-0.053733661770821]],[[0.094819091260433,-0.009663856588304,0.092109151184559],[-0.028094822540879,0.1039436981082,0.036019761115313],[-0.028206245973706,-0.049252387136221,-0.10383222252131]],[[0.026854507625103,0.050548683851957,0.039750307798386],[0.11365120857954,-0.041688669472933,0.092604741454124],[0.018757889047265,0.012374171987176,-0.09600942581892]],[[-0.10855569690466,0.030994204804301,-0.16187331080437],[-0.039465576410294,-0.18361876904964,0.020871672779322],[0.1631076335907,-0.015808036550879,0.064773865044117]],[[-0.1226242929697,0.069902487099171,-0.047995489090681],[-0.072424069046974,-0.15042820572853,0.21237124502659],[-0.14202542603016,-0.019355459138751,-0.010241966694593]],[[-0.046105075627565,0.067892841994762,-0.08031589537859],[0.0079923328012228,0.051086280494928,-0.041428554803133],[0.017403742298484,-0.10593765974045,0.040740098804235]],[[0.03835367411375,0.010857262648642,0.14241616427898],[-0.036476694047451,0.021395092830062,-0.030645160004497],[-0.050456311553717,0.035998534411192,-0.04265783727169]],[[-0.00022690033074468,0.18036133050919,-0.05756875872612],[0.019101923331618,-0.002334583317861,0.016285419464111],[-0.0086825471371412,-0.12572705745697,0.054280441254377]],[[0.033708453178406,0.019440613687038,-0.09446494281292],[0.11215826869011,-0.23182415962219,-0.034015469253063],[0.0087249102070928,-0.10034392029047,-0.053671553730965]]],[[[0.026183918118477,-0.071552872657776,-0.047853093594313],[0.087378166615963,0.04563869163394,-0.024311510846019],[-0.042430315166712,-0.0096910456195474,-0.04319516196847]],[[0.014337009750307,0.042406547814608,-0.009662127122283],[-0.024731351062655,-0.014291527681053,0.040800988674164],[0.038897328078747,-0.039831798523664,0.054626554250717]],[[0.042720749974251,-0.013214248232543,-0.018077675253153],[0.066690020263195,0.011844393797219,-0.053347337990999],[0.032695628702641,-0.02854784950614,-0.074187561869621]],[[0.016193171963096,0.05231861025095,0.0087078511714935],[0.026385746896267,-0.040973640978336,0.12554307281971],[-0.063363693654537,-0.03675114735961,0.045873675495386]],[[0.039783518761396,-0.020301902666688,0.018360095098615],[-0.010044460184872,0.019646150991321,-0.16501502692699],[0.01289942394942,0.042261373251677,-0.02614039927721]],[[-0.019509207457304,0.024937374517322,0.0068876105360687],[0.025908203795552,-0.012323059141636,0.088116742670536],[0.035018879920244,0.029474925249815,0.019715406000614]],[[0.067015260457993,0.030593443661928,0.04427694529295],[-0.12368180602789,0.01786645501852,0.010591180063784],[0.0012879131827503,0.059351768344641,0.078184403479099]],[[-0.010129068978131,0.076810218393803,-0.0078833494335413],[0.0024662318173796,0.010393220931292,0.034212317317724],[0.014148379676044,-0.041160255670547,0.046586655080318]],[[-0.033168181777,-0.088026039302349,0.036640338599682],[0.054685171693563,0.026793016120791,0.059160552918911],[-0.029438944533467,0.042586419731379,-0.063063308596611]],[[-0.015861246734858,0.21308454871178,0.052557166665792],[-0.049534674733877,0.060356914997101,-0.10771571844816],[0.11249855905771,0.069414235651493,0.080985762178898]],[[-0.034934692084789,-0.054071567952633,-0.034756820648909],[0.043043319135904,0.036918491125107,-0.016433274373412],[0.0048527759499848,-0.014698051847517,-0.059111800044775]],[[0.05265311524272,0.046888366341591,0.041481636464596],[-0.011468529701233,0.076243802905083,0.048175740987062],[0.018736843019724,-0.067903362214565,0.011199787259102]],[[0.051685750484467,-0.055129643529654,0.053923565894365],[0.035817872732878,-0.027289822697639,-0.0068716835230589],[0.057818863540888,-0.026071701198816,0.023665677756071]],[[0.056645255535841,0.08156893402338,0.024381613358855],[-0.0017803673399612,-0.036704033613205,-0.011503016576171],[0.069796800613403,0.09993676841259,-0.034198179841042]],[[0.18218752741814,0.16845637559891,0.12202285975218],[0.050862241536379,0.10973451286554,0.049445081502199],[-0.027453640475869,0.019074888899922,0.021037891507149]],[[0.0079365093261003,0.036759436130524,-0.035621047019958],[0.074831597507,0.063175849616528,0.062331676483154],[0.027521969750524,-0.066868722438812,0.013922804966569]],[[-0.0082476334646344,0.015147773548961,-0.05118390917778],[-0.086486920714378,-0.014632574282587,0.012446921318769],[0.011007378809154,-0.025030499324203,0.0054186074994504]],[[-0.097955144941807,-0.0130062000826,-0.045896798372269],[-0.037985671311617,0.075651161372662,-0.027201630175114],[-0.056361306458712,-0.0037098783068359,0.016340147703886]],[[-0.002196358749643,-0.0034788979683071,0.04124616459012],[-0.012385622598231,-0.013885768130422,0.015994230285287],[-0.13993212580681,-0.0033654554281384,-0.021126754581928]],[[0.049803674221039,-0.065021149814129,-0.015197589062154],[0.019091386348009,0.03579243272543,0.038601975888014],[0.065399564802647,-0.0086493352428079,-0.014078762382269]],[[0.0058183344081044,0.055475566536188,-0.03681056201458],[0.088009066879749,-0.040264736860991,-0.065177321434021],[-0.0044914032332599,-0.039747036993504,0.094749867916107]],[[0.052759382873774,0.074370145797729,0.086785197257996],[0.0018457148689777,0.074290052056313,0.054832756519318],[-0.035287603735924,-0.077652707695961,0.16839095950127]],[[-0.025435650721192,-0.010575033724308,0.02021006681025],[-0.015291877090931,0.0023658131249249,0.010284567251801],[-0.044656492769718,-0.086353242397308,0.097676359117031]],[[0.0013159364461899,-0.016971666365862,0.066985957324505],[0.062566585838795,0.023114895448089,0.019582888111472],[0.08926934748888,0.10309465229511,0.015186879783869]],[[-0.063365422189236,0.0033586332574487,0.041519615799189],[-0.086232498288155,0.00060334469890222,-0.047748181968927],[-0.014162407256663,0.072421319782734,0.057830471545458]],[[0.013778328895569,-0.017448492348194,0.030777789652348],[0.016318248584867,-0.039165932685137,0.054907761514187],[0.030597023665905,0.035357434302568,-0.049244400113821]],[[-0.036710627377033,-0.10861368477345,0.0051627084612846],[0.042850065976381,-0.0077778678387403,-0.011991464532912],[-0.019141038879752,0.040508158504963,-0.0156239438802]],[[0.064184218645096,0.0092639429494739,0.014001723378897],[0.039532389491796,0.052449088543653,-0.10477448254824],[0.0088855633512139,-0.05115781724453,-0.056113321334124]],[[0.040027976036072,0.051340121775866,0.05715411901474],[-0.057776737958193,0.098476015031338,0.16063657402992],[0.017994023859501,-0.063209153711796,0.037507325410843]],[[0.054513078182936,0.044943127781153,-0.038355212658644],[-0.04837941378355,-0.021614983677864,0.048556815832853],[0.017510360106826,-0.044376742094755,0.050199817866087]],[[0.01810809969902,0.053695321083069,0.037747863680124],[-0.0090540125966072,-0.073324024677277,-0.044641606509686],[0.023481337353587,0.024447282776237,-0.090114288032055]],[[-0.037119008600712,0.076192013919353,-0.05888519436121],[-0.0052887108176947,-0.033568929880857,-0.026276497170329],[-0.051475685089827,-0.018151104450226,-0.019619384780526]],[[0.044935546815395,0.058079969137907,-0.0073767309077084],[0.065646968781948,-0.0055513130500913,-0.046193100512028],[0.059689790010452,-0.047749556601048,0.074703969061375]],[[-0.088456101715565,0.076410561800003,0.050003558397293],[0.062877759337425,0.028838546946645,-0.074829757213593],[-0.035101290792227,-0.0086757643148303,-0.090760216116905]],[[0.0082725435495377,0.030599635094404,-0.039589263498783],[0.032812532037497,-0.027407487854362,0.044793959707022],[0.05678703635931,0.017520876601338,0.0029558970127255]],[[-0.023438472300768,0.022014165297151,0.018596032634377],[-0.025322852656245,0.032309751957655,-0.091753609478474],[0.0034949593245983,-0.084902666509151,0.035563472658396]],[[-0.017473729327321,-0.040804762393236,-0.014697180129588],[-0.064331755042076,-0.044615469872952,-0.053177192807198],[-0.070577226579189,-0.035731505602598,-0.019813323393464]],[[0.084867879748344,0.04362641274929,-0.099365197122097],[0.06211968138814,0.14568138122559,0.003123032161966],[0.066686250269413,0.0060929469764233,-0.010764704085886]],[[0.041925046592951,0.032116390764713,0.052081219851971],[0.054328043013811,0.02555757202208,-0.021415084600449],[-0.022326679900289,0.12359540909529,-0.040086086839437]],[[-0.057278715074062,-0.0063778460025787,-0.015243072062731],[-0.032902549952269,0.0030907364562154,0.070723429322243],[0.020550614222884,0.031467039138079,-0.053839933127165]],[[0.11154242604971,0.001810108544305,-0.060566954314709],[-0.0058892439119518,0.073079198598862,-0.021597763523459],[-0.1220711171627,0.00073733215685934,-0.047284260392189]],[[-0.027521941810846,-0.0048112547956407,-0.031346268951893],[-0.039532743394375,0.0052221058867872,0.00045929630869068],[-0.018867144361138,0.043584227561951,-0.027376959100366]],[[-0.03420938923955,-0.012800563126802,0.042902763932943],[-0.018814641982317,0.10087329894304,0.10719227045774],[0.054310128092766,0.038438078016043,-0.011693785898387]],[[0.024282483384013,0.049748308956623,0.049658965319395],[0.10887173563242,0.017586458474398,-0.044724576175213],[-0.0459377579391,-0.028819311410189,0.032946050167084]],[[-0.073672786355019,0.072113238275051,0.017810383811593],[-0.027881111949682,0.032223880290985,0.073777467012405],[0.045236010104418,-0.024252565577626,0.034774906933308]],[[-0.007790569216013,0.0090870074927807,0.051182359457016],[0.014051894657314,-0.04644738137722,-0.0061298585496843],[-0.033171221613884,-0.018195370212197,0.067073717713356]],[[-0.0013287748442963,0.049561746418476,-0.0053842435590923],[-0.03084752894938,0.0098365228623152,0.071029499173164],[0.043442379683256,0.0021024306770414,0.026941949501634]],[[-0.044280935078859,-0.013673719018698,0.00015287098358385],[0.042621184140444,0.040246676653624,0.0081350319087505],[0.020107097923756,0.054197385907173,0.057021751999855]],[[-0.022109495475888,-0.050732634961605,-0.042189639061689],[-0.044990934431553,-0.031387865543365,0.0080096693709493],[0.012456415221095,0.031180255115032,0.029695780947804]],[[-0.043817404657602,0.046237252652645,-0.023663511499763],[-0.033557418733835,-0.033611420542002,-0.044976703822613],[-0.030067667365074,0.073459379374981,-0.047712009400129]],[[0.04123093560338,-0.002295529935509,-0.048525806516409],[0.016568569466472,0.011451535858214,-0.086077697575092],[0.0052030556835234,0.0088612716645002,-0.029754184186459]],[[-0.0082614384591579,0.019915733486414,-0.030528705567122],[-0.028573324903846,0.051848996430635,-0.065768331289291],[0.0079307937994599,0.039852827787399,0.021384175866842]],[[-0.012286913581192,0.10087675601244,0.032837010920048],[0.0093523394316435,-0.0098687298595905,-0.052955769002438],[-0.073946565389633,-0.036851190030575,0.052539501339197]],[[-0.0002067349414574,-0.023774379864335,0.028258187696338],[-0.086626544594765,-0.0084068598225713,0.099575959146023],[0.067646883428097,0.014458208344877,0.040512643754482]],[[0.041841056197882,0.04027433693409,-0.0021954670082778],[-0.00076689466368407,0.022077305242419,-0.0093138879165053],[0.061443276703358,-0.045201744884253,0.030873324722052]],[[-0.074052192270756,0.03028678894043,0.0012630908749998],[-0.0061283176764846,-0.012057258747518,-0.046803496778011],[0.020252969115973,-0.040709938853979,0.016125075519085]],[[-0.081383056938648,-0.070553340017796,-0.0073273307643831],[-0.078093938529491,0.070116147398949,-0.0049168565310538],[-0.018675595521927,-0.062813758850098,0.020453367382288]],[[-0.036509640514851,0.024513045325875,-0.024318737909198],[0.03276053071022,-0.034701485186815,-0.02340922318399],[-0.02142002992332,-0.016539584845304,0.07751078158617]],[[0.0071441545151174,0.049923155456781,0.066018588840961],[-0.00010246395686409,-0.0056648934260011,-0.0023759915493429],[0.035741318017244,0.059285782277584,0.0272535700351]],[[-0.0016030661063269,-0.043439324945211,0.042222026735544],[0.037686970084906,0.010420046746731,0.008445231243968],[-0.092196360230446,0.051865294575691,-0.08533001691103]],[[0.042382378131151,0.10881023854017,0.0092055406421423],[0.028036758303642,0.030330389738083,-0.015180561691523],[-0.010625732131302,0.087347932159901,0.004099736455828]],[[0.048041913658381,0.01048256456852,-0.019434966146946],[0.0012188506079838,-0.05214760825038,-0.060658004134893],[-0.0077091478742659,0.042409051209688,0.00035380810732022]],[[-0.035345338284969,0.018730688840151,0.080309242010117],[-0.010886807925999,-0.04338888078928,0.016772342845798],[-0.060331702232361,0.036716476082802,-0.038059718906879]],[[-0.024432819336653,0.054292891174555,0.020107243210077],[0.03465747833252,0.040668576955795,-0.0030567143112421],[-0.11884674429893,-0.030349064618349,-0.093031331896782]],[[0.098393835127354,0.01247725263238,-0.017548514530063],[-0.019552025943995,0.052273392677307,-0.022483058273792],[0.054051853716373,-0.084406234323978,-0.013056536205113]],[[0.0007236527162604,-0.022441249340773,0.0082562696188688],[0.020331287756562,-0.051501292735338,0.039003632962704],[-0.04189208894968,0.042486388236284,0.035855740308762]],[[0.058615781366825,-0.083817712962627,0.02211089618504],[-0.0063517861999571,0.067253641784191,0.033986210823059],[-0.010095079429448,0.035630855709314,-0.0033994417171925]],[[-0.028017707169056,0.030435755848885,-0.045891687273979],[0.018774785101414,0.025155290961266,0.058404471725225],[-0.020733339712024,-0.051135957241058,-0.013166008517146]],[[-0.0095241470262408,0.12699663639069,-0.039588455110788],[-0.031979978084564,-0.035572811961174,0.010020906105638],[-0.022773003205657,-0.03971778228879,-0.069789700210094]],[[0.016421336680651,-0.046075757592916,-0.037440028041601],[-0.038517076522112,0.092444591224194,0.0012472014641389],[0.11056552827358,-0.025010790675879,-0.018596924841404]],[[-0.0073385369032621,-0.059266287833452,-0.0097207510843873],[0.045083798468113,0.025300549343228,-0.023211603984237],[0.038311026990414,-0.044538479298353,-0.078275322914124]],[[0.16429442167282,0.056813236325979,-0.01104857865721],[-0.025491323322058,0.070514351129532,-0.012020043097436],[-0.084098510444164,-0.018000999465585,-0.016304567456245]],[[0.072540961205959,0.023674055933952,0.049055516719818],[0.040611822158098,-0.032636005431414,-0.053764656186104],[0.060567867010832,0.020652033388615,0.021055486053228]],[[-0.063609451055527,0.033267829567194,-0.10379894822836],[-0.034846320748329,0.03785115852952,-0.031404931098223],[0.055976800620556,0.018875570967793,-0.031207742169499]],[[0.073681801557541,-0.00043006183113903,0.031747482717037],[-0.030452966690063,0.047534469515085,-0.054384924471378],[-0.0030866982415318,-0.036629434674978,0.0088136568665504]],[[-0.030657880008221,0.027700744569302,0.016514638438821],[-0.016643179580569,-0.05555446818471,-0.012448103167117],[0.052450779825449,0.040970992296934,0.068879790604115]],[[-0.05557644739747,-0.043745551258326,-0.061489727348089],[0.033151756972075,0.0030375148635358,0.088908448815346],[0.024526348337531,0.098766952753067,0.051052592694759]],[[-0.060317952185869,0.090809509158134,-0.020732263103127],[0.070499375462532,0.067016988992691,-0.036470927298069],[-0.0041276928968728,0.011427126824856,0.041434485465288]],[[-0.0077389171347022,0.0082008587196469,0.055459711700678],[0.046038556843996,-0.037590615451336,0.055145088583231],[0.036320105195045,0.013397394679487,0.020402519032359]],[[-0.014963777735829,-0.058346085250378,-0.013308466412127],[-0.024549765512347,0.013277044519782,-0.042952597141266],[0.057346846908331,-0.034612443298101,-0.014327252283692]],[[-0.024655815213919,-0.014422188512981,-0.039246927946806],[-0.036021620035172,0.024657970294356,0.050865110009909],[0.05422942340374,0.046402934938669,0.016453754156828]],[[0.021636627614498,0.048154138028622,0.047001082450151],[0.0054551777429879,0.00059496483299881,0.045223891735077],[0.0076040322892368,0.056502513587475,0.068266063928604]],[[-0.016387889161706,-0.010317617096007,0.0084535302594304],[0.043613161891699,-0.036593109369278,-0.054694771766663],[-0.018817864358425,-0.035207841545343,0.02046163380146]],[[0.017444062978029,0.009591968730092,0.013261471875012],[-0.033595155924559,0.020313110202551,0.018912607803941],[-0.031294774264097,-0.013156805187464,-0.069751277565956]],[[-0.079191215336323,0.099011242389679,0.0051625855267048],[0.071620970964432,-0.033241525292397,0.038930844515562],[-0.029136370867491,-0.012234153226018,0.042169399559498]],[[0.066334918141365,-0.0080248899757862,0.025513103231788],[0.023457575589418,-0.071451306343079,-0.035245534032583],[-0.014554697088897,0.022145323455334,-0.06704843044281]],[[0.041427131742239,0.065974660217762,0.012187171727419],[0.041577875614166,-0.042008858174086,-0.05134092271328],[-0.059700146317482,0.014701785519719,0.033030312508345]],[[0.07021264731884,0.024673199281096,0.034526955336332],[-0.0051499782130122,0.0052170623093843,0.025713546201587],[0.10478973388672,0.0053862589411438,0.092124126851559]],[[0.021747760474682,0.0023659642320126,-0.0092464834451675],[-0.022304579615593,0.049659606069326,0.032260343432426],[0.032163847237825,0.018620064482093,-0.020546942949295]],[[0.067741729319096,0.039630271494389,-0.019162654876709],[0.025372911244631,-0.037136800587177,-0.016444751992822],[0.013186678290367,-0.010529235005379,-0.019112983718514]],[[0.055050317198038,-0.011858338490129,0.024844914674759],[0.034346584230661,0.06971338391304,0.045774076133966],[-0.031178696081042,-0.020008089020848,-0.024456541985273]],[[-0.04749046638608,-0.10026580840349,0.017181430011988],[0.0039554764516652,0.0091724693775177,-0.070846378803253],[-0.035111788660288,-0.0034800071734935,0.037253748625517]],[[-0.021451061591506,0.0017679737647995,-0.013729310594499],[0.070548996329308,-0.0049907402135432,-0.051161199808121],[-0.049844637513161,0.034222327172756,-0.038929469883442]],[[0.070320889353752,0.069445051252842,-0.014244876801968],[-0.074561320245266,0.020796347409487,0.0075552971102297],[-0.033784285187721,0.094828359782696,0.0075265499763191]],[[-0.082166507840157,-0.086598075926304,0.01269187964499],[0.072214394807816,-0.050264373421669,0.10198275744915],[0.059209704399109,-0.12738683819771,0.048460595309734]],[[-0.035904310643673,-0.013727184385061,0.05826723203063],[0.05990020558238,0.083452269434929,0.012215973809361],[-0.061890173703432,0.006637308280915,-0.11888570338488]],[[-0.03411253541708,0.080584667623043,0.0016200984828174],[0.027588952332735,0.041715778410435,-0.01178764924407],[-0.00032464429386891,-0.043347518891096,0.019470786675811]],[[-0.048218879848719,0.084444962441921,-0.017989361658692],[0.063376717269421,0.033914029598236,-0.0085069993510842],[0.035765193402767,0.018004393205047,0.0048326719552279]],[[0.016142496839166,-0.011424257420003,-0.030938735231757],[-0.017615675926208,0.056290496140718,-0.078859217464924],[-0.01399570889771,0.06202756613493,-0.024010421708226]],[[-0.015662971884012,-0.057495392858982,-0.0064547476358712],[0.042560700327158,0.047711059451103,0.062336917966604],[0.012233949266374,-0.0085956519469619,-0.013057361356914]],[[0.025467593222857,0.0092342142015696,0.055245827883482],[0.028155926615,0.0084486091509461,0.10565455257893],[0.027833910658956,-0.008619662374258,-0.070674151182175]],[[-0.070897340774536,0.049639720469713,-0.062755778431892],[-0.028910672292113,0.068114534020424,0.053962055593729],[0.006988953333348,-0.012824080884457,0.10094857960939]],[[-0.0038398783653975,-0.0072381012141705,0.075059227645397],[0.085450977087021,-0.048422481864691,0.036955535411835],[0.080198012292385,0.030965650454164,-0.088138036429882]],[[0.029953548684716,0.027250980958343,-0.076081648468971],[0.10492871701717,-0.01584835536778,-0.00018840626580641],[0.053591471165419,0.069129511713982,0.034929480403662]],[[-0.002912453841418,-0.06099646538496,0.053892824798822],[-0.010423056781292,0.022613070905209,-0.051151182502508],[-0.078619278967381,-0.0023696019779891,0.0022396314889193]],[[0.014237682335079,-0.019431237131357,0.016747074201703],[0.020584629848599,0.05694518238306,0.037680402398109],[-0.0059791365638375,-0.011219730600715,-0.014051790349185]],[[0.013874351046979,-0.035963792353868,0.020116593688726],[0.011349494569004,0.012766861356795,0.11123817414045],[-0.071820646524429,0.15138919651508,0.038481999188662]],[[-0.085708558559418,-0.019025597721338,0.018080215901136],[0.065295577049255,0.0083912201225758,0.029847960919142],[-0.0025950153358281,-0.037994347512722,0.0011508448515087]],[[0.012373480014503,-0.035885918885469,-0.011460625566542],[-0.016748109832406,-0.058056443929672,0.014700883068144],[-0.077026836574078,-0.045975435525179,-0.041081812232733]],[[0.10235080122948,0.013622616417706,0.021733595058322],[0.020351681858301,0.055870316922665,-0.0032802233472466],[-0.11258835345507,0.060214497148991,0.019531337544322]],[[-0.045595739036798,0.0059488480910659,0.0016568987630308],[0.046833518892527,-0.014269256964326,-0.0022297364193946],[-0.0095576141029596,-0.039721995592117,0.034734327346087]],[[-0.0036217912565917,-0.053361602127552,-0.0068376129493117],[0.0028428882360458,-0.031308185309172,-0.025259107351303],[-0.019718676805496,-0.053423192352057,-0.097131878137589]],[[-0.033541515469551,0.0069207944907248,-0.0038760721217841],[0.042251374572515,-0.034596126526594,0.034665316343307],[-0.01956426911056,-0.021915690973401,-0.00010629194002831]],[[0.028036285191774,-0.072608046233654,-0.034996725618839],[0.0034638829529285,-0.001688469434157,-0.043518148362637],[-0.054598461836576,-0.012942027300596,-0.052275903522968]],[[-0.051998071372509,0.0038276365958154,0.054466839879751],[0.030011277645826,-0.015471273101866,-0.056486040353775],[0.052136812359095,0.026748947799206,0.046252507716417]],[[0.014741485007107,-0.06136305257678,-0.053334288299084],[-0.074664689600468,-0.068994387984276,0.026971703395247],[-0.033192459493876,0.028612613677979,0.10483650863171]],[[-0.075238466262817,0.081832759082317,0.037220697849989],[-0.015355620533228,-0.01998938433826,0.00011001327948179],[0.0030432338826358,0.03388961032033,0.085865303874016]],[[-0.05427610501647,0.077410079538822,0.062188778072596],[0.0073070186190307,0.027239473536611,-0.017049096524715],[0.016512887552381,0.025721194222569,0.066609174013138]],[[0.044872134923935,-0.019448170438409,0.070815689861774],[-0.053418509662151,0.0095061250030994,-0.063060589134693],[-0.025910777971148,0.046142052859068,-0.079049952328205]],[[0.04774833843112,0.054742656648159,0.00090713449753821],[-0.073371887207031,0.039862010627985,0.0044084526598454],[-0.057465966790915,-0.042296942323446,-0.040386766195297]],[[0.040404453873634,-0.053080391138792,0.049012713134289],[0.042371153831482,-0.060194101184607,0.028540078550577],[-0.011800900101662,0.054709315299988,-0.070317424833775]],[[-0.037687845528126,0.058724634349346,-0.00257467944175],[0.00037407464697026,0.0024987733922899,-0.056084852665663],[-0.0036699809134007,0.013944557867944,-0.094758361577988]],[[0.076614893972874,0.032123945653439,0.043642919510603],[0.0073665170930326,-0.005392390768975,-0.001198674319312],[0.025556409731507,0.061355877667665,-0.020385948941112]],[[0.093692898750305,-0.037092678248882,-0.0048068026080728],[-0.15440702438354,-0.047542873769999,0.040051519870758],[-0.028797930106521,-0.083902232348919,-0.0091729117557406]],[[-0.050560168921947,0.034628611057997,-0.0027313684113324],[0.032681718468666,-0.06372045725584,-0.041145984083414],[0.01277578715235,0.044327702373266,0.015756238251925]],[[0.048730503767729,-0.020701998844743,-0.031402323395014],[0.062856957316399,0.068442732095718,-0.032327514141798],[-0.029336683452129,0.064762994647026,0.09802220761776]],[[-0.017224263399839,-0.026282513514161,0.020611230283976],[-0.034271415323019,0.041731879115105,0.0202148091048],[0.016434248536825,0.076495110988617,-0.041553989052773]],[[0.057558003813028,-0.0030019911937416,-0.043121781200171],[0.034565974026918,0.02861662954092,0.0072030988521874],[0.071747206151485,-0.045884344726801,0.028328454121947]]],[[[-0.0082739796489477,-0.011542051099241,0.050255473703146],[0.074302405118942,-0.048043455928564,-0.028097515925765],[-0.025621676817536,-0.046017162501812,0.025256378576159]],[[-0.023780789226294,-0.0048665800131857,-0.024133261293173],[-0.049673724919558,-0.040833100676537,-0.044916741549969],[0.094925202429295,-0.083480842411518,-0.057758469134569]],[[0.083954028785229,0.030804947018623,0.06432031840086],[0.082422628998756,0.022255942225456,0.22981463372707],[0.055402617901564,0.013686869293451,0.19402420520782]],[[0.013341226615012,0.11909077316523,0.067492924630642],[-0.052413735538721,0.07011004537344,0.11167632043362],[-0.01284602843225,0.029230192303658,0.030136497691274]],[[0.066289089620113,0.048966940492392,0.0094902673736215],[-0.02464815042913,0.081828899681568,-0.061169691383839],[0.026194922626019,-0.024701956659555,0.017993727698922]],[[0.016756523400545,0.098859436810017,0.012779008597136],[0.045921120792627,0.013019788078964,0.082643270492554],[-0.026947377249599,0.081107057631016,0.061352275311947]],[[0.050555530935526,-0.011943906545639,-0.032314714044333],[-0.023983361199498,0.015735000371933,0.028305064886808],[-0.052556987851858,-0.046400282531977,0.012220050208271]],[[0.049665126949549,-0.012024296447635,0.066223882138729],[-0.081178657710552,-0.060911595821381,0.016345096752048],[-0.022414283826947,0.06049507856369,0.039075672626495]],[[0.025537023320794,0.10860009491444,0.07778437435627],[0.049651704728603,-0.011966561898589,-0.01068512070924],[0.014706317335367,-0.056589800864458,0.030310394242406]],[[0.019432919099927,0.072311602532864,-0.037907395511866],[0.013041720725596,-0.010470787063241,0.014428913593292],[0.16342413425446,0.053388677537441,0.04088382422924]],[[0.013105438090861,-0.04022928699851,-0.036115705966949],[0.11605831235647,-0.050377558916807,-0.0025892169214785],[0.045847807079554,-0.071140199899673,0.06859565526247]],[[0.037936598062515,0.03390234708786,-0.0049193757586181],[-0.010513032786548,-0.022862549871206,-0.03026263602078],[-0.002967881038785,0.04967874288559,0.049837458878756]],[[0.05177316069603,0.02692773938179,-0.072377972304821],[0.025753557682037,-0.06190212443471,-0.045112799853086],[-0.06218745559454,-0.074590362608433,0.041154492646456]],[[-0.046221468597651,-0.066874213516712,-0.029076859354973],[-0.14076547324657,0.064457155764103,0.0092017268761992],[0.025644965469837,0.079378947615623,0.036156840622425]],[[0.11036137491465,-0.031628601253033,0.12086101621389],[0.084387309849262,0.017628271132708,-0.0025169688742608],[0.042550656944513,0.029491623863578,0.18958775699139]],[[0.11204604059458,-0.06294833868742,0.010292165912688],[-0.08692292869091,0.064134955406189,0.064704187214375],[-0.00041312343091704,-0.073178082704544,-0.050470098853111]],[[0.012112271040678,0.048110261559486,0.14570181071758],[-0.045397400856018,0.018253548070788,-0.041395410895348],[-0.040185961872339,-0.079604923725128,-0.056060671806335]],[[0.081264808773994,-0.043723702430725,0.11715308576822],[-0.045028772205114,0.080472804605961,-0.052722591906786],[0.073953099548817,-0.029515927657485,0.049615133553743]],[[-0.018710866570473,0.063572354614735,0.020756227895617],[0.054243832826614,0.14855907857418,0.26832711696625],[0.018230898305774,0.18544968962669,0.21509182453156]],[[0.098378002643585,-0.012551511637866,0.094686761498451],[-0.058789063245058,0.073059059679508,0.13871459662914],[0.003241176251322,-0.0053936294279993,0.08696087449789]],[[-0.042590036988258,0.016861945390701,-0.070651493966579],[0.085480451583862,0.031784769147635,-0.0043794540688396],[0.050969552248716,-0.029839921742678,-0.062393225729465]],[[0.071988366544247,-0.010746740736067,0.032123662531376],[0.0028409897349775,0.067471362650394,0.047639813274145],[-0.0011835312470794,0.0097664287313819,0.037150096148252]],[[0.10295514762402,0.11475387960672,0.071497395634651],[0.086531966924667,0.092858143150806,-0.070701435208321],[0.034168194979429,-0.0055770357139409,-0.018904786556959]],[[-0.035366661846638,-0.081319317221642,0.039566900581121],[-0.039911486208439,-0.055301319807768,0.048684537410736],[-0.025269655510783,0.14618298411369,0.056569840759039]],[[0.050316926091909,-0.0044980673119426,0.0012043080059811],[0.016956808045506,0.051334291696548,0.049124285578728],[-0.051795314997435,0.038618311285973,-0.018128724768758]],[[-0.051556117832661,-0.023086303845048,-0.16146564483643],[-0.11562931537628,0.056076224893332,-0.054851312190294],[-0.048108637332916,-0.086463578045368,-0.03355523198843]],[[0.071927957236767,-0.07174127548933,-0.031809166073799],[-0.072562247514725,-0.046961065381765,0.035234346985817],[0.062668763101101,0.025148684158921,0.16887058317661]],[[-0.044677045196295,0.011531604453921,0.11269906163216],[-0.028381682932377,0.017122926190495,-0.025369346141815],[0.019092867150903,-0.018727570772171,-0.037074606865644]],[[-0.031781066209078,0.017376020550728,0.15979211032391],[0.029178274795413,0.039469763636589,-0.025880225002766],[0.077325902879238,0.13327947258949,0.017989287152886]],[[-0.050302803516388,0.017129942774773,0.069916971027851],[-0.094182014465332,-0.026987675577402,-0.063701152801514],[0.020842647179961,0.016419535502791,-0.02825053408742]],[[-0.018543515354395,-0.049944505095482,0.027128804475069],[-0.081198416650295,-0.046255230903625,-0.023734167218208],[0.040907721966505,-0.037119790911674,0.15011045336723]],[[0.19513280689716,-0.051605101674795,-0.033043250441551],[0.088517881929874,-0.0090929623693228,-0.066232949495316],[0.058519523590803,0.020941579714417,0.083655431866646]],[[-0.037200585007668,0.057122774422169,0.084245249629021],[-0.044050686061382,0.01557913608849,0.015684090554714],[0.034363158047199,0.063598237931728,0.013199822045863]],[[0.027176110073924,-0.088360190391541,-0.028933312743902],[-0.0021568853408098,-0.050022415816784,0.050898995250463],[0.056361634284258,-0.039254982024431,0.122712880373]],[[0.068427763879299,-0.090880125761032,0.10210210084915],[-0.023626992478967,0.11558113247156,-0.012581054121256],[-0.0061055738478899,-0.058931995183229,0.093705147504807]],[[-0.030498636886477,-0.015215000137687,-0.013795904815197],[-0.046085700392723,0.042105693370104,-0.017516225576401],[-0.12460831552744,-0.0076764244586229,0.028007989749312]],[[-0.056913569569588,-0.0053559178486466,-0.054777644574642],[0.22262901067734,-0.095882683992386,-0.016438949853182],[0.02526544034481,0.03706581145525,-0.022653635591269]],[[0.050364702939987,0.0064079943113029,-0.0035192056093365],[-0.01477789785713,-0.066270396113396,-0.013452973216772],[-0.0038201587740332,-0.051973707973957,0.030116094276309]],[[-0.089979529380798,-0.11556438356638,-0.039742849767208],[-0.17996613681316,0.028209699317813,0.035417649894953],[0.037692219018936,-0.060092430561781,0.0033509412314743]],[[0.092612467706203,0.13490135967731,-0.019026268273592],[-0.069892026484013,-0.0032841074280441,0.020710462704301],[0.0026657753624022,0.10164275765419,0.051702290773392]],[[-0.11859405040741,0.045077368617058,0.078657276928425],[0.18604044616222,-0.14597228169441,0.053279262036085],[0.01496833562851,0.033019281923771,0.062196910381317]],[[0.035863619297743,-0.012101834639907,0.092990800738335],[0.042816840112209,0.049982871860266,0.062396366149187],[0.11049881577492,-0.083460219204426,-0.069993324577808]],[[0.087115399539471,-0.12599246203899,0.051948517560959],[-0.03859880939126,0.01180122140795,0.049570221453905],[0.035113982856274,-0.019602349027991,-0.0089628919959068]],[[0.0017625537002459,-0.015406355261803,0.11315149068832],[-0.017021510750055,-0.027199055999517,-0.049999970942736],[-0.033975806087255,-0.0054004681296647,-0.017273981124163]],[[-0.083826139569283,0.0078260768204927,-0.04394468665123],[-0.044783931225538,-0.026707565411925,0.045073885470629],[-0.037027508020401,0.032665897160769,0.14516419172287]],[[0.002137390896678,0.099065214395523,0.060243226587772],[-0.034037105739117,-0.010701793245971,0.10376618057489],[0.00070237956242636,0.0498904325068,0.09838230907917]],[[0.022106878459454,0.028086896985769,-0.014069612137973],[0.018789598718286,-0.058718096464872,-0.0091506000608206],[0.086547531187534,0.021353924646974,-0.10515021532774]],[[-0.030185071751475,-0.082171641290188,0.10862802714109],[-0.060367088764906,0.18494513630867,-0.051328867673874],[0.047315526753664,-0.084858201444149,0.037926141172647]],[[0.031842201948166,0.030527621507645,0.087791562080383],[0.080981321632862,0.049744755029678,-0.070293381810188],[0.037327360361814,0.062850013375282,-0.0096822688356042]],[[0.041594080626965,-0.05343746393919,0.036200243979692],[0.0019541245419532,-0.026391183957458,0.049678076058626],[0.0058252061717212,-0.031610034406185,-0.037018187344074]],[[0.13507576286793,0.094762854278088,0.10897170752287],[0.048731815069914,-0.033209528774023,0.01575823687017],[-0.059621971100569,-0.041090477257967,-0.042654622346163]],[[0.095892481505871,-0.07482922822237,0.045372523367405],[0.027190862223506,0.11722578108311,0.0081637464463711],[-0.014663875102997,-0.020504457876086,-0.014674745500088]],[[-0.073737747967243,0.084834940731525,-0.046380940824747],[-0.065301716327667,-0.11468643695116,-0.018884321674705],[-0.0020516782533377,-0.0022573687601835,0.029127437621355]],[[0.15073718130589,0.11690871417522,0.057150740176439],[0.16955874860287,-0.076147012412548,-0.0095074726268649],[-0.013775632716715,0.10791057348251,-0.039710685610771]],[[0.1139682084322,0.029382457956672,-0.02494253590703],[-0.0062822597101331,0.025270935148001,-0.0094029074534774],[-0.013116588816047,-0.084414288401604,-0.057765610516071]],[[-0.18519511818886,0.03365096077323,0.045138832181692],[-0.023301508277655,0.037929352372885,0.073092833161354],[-8.2641330664046e-05,-0.055604681372643,-0.10627448558807]],[[0.05220390483737,-0.046824295073748,0.11081556230783],[0.042283266782761,-0.023387873545289,-0.0066255764104426],[0.054269719868898,-0.01291187107563,0.042106736451387]],[[-0.006375992204994,-0.030964380130172,-0.063960708677769],[0.054873678833246,-0.063202649354935,0.013598434627056],[-0.027580825611949,-0.023265933617949,-0.016663011163473]],[[-0.14714194834232,-0.066457852721214,0.017295645549893],[0.038634095340967,-0.069894455373287,0.016849007457495],[-0.0339585095644,-0.08453518897295,-0.13095608353615]],[[-0.15868696570396,0.099092103540897,-0.020592324435711],[0.070239707827568,-0.010290856473148,0.015031375922263],[-0.049998357892036,0.018402393907309,-0.072343610227108]],[[-0.08610488474369,0.017773954197764,0.011587277054787],[0.045790396630764,0.057095292955637,0.0056483140215278],[-0.045507423579693,0.055076837539673,-0.028840154409409]],[[0.096515722572803,0.031567014753819,-0.023657022044063],[0.0082849869504571,0.13137662410736,0.061989214271307],[0.023805618286133,0.074530825018883,-0.03767916560173]],[[-0.0055631380528212,-0.033997852355242,0.030461950227618],[0.077749885618687,-0.13591630756855,-0.079093404114246],[-0.026936894282699,-0.053342062979937,0.070275820791721]],[[-0.028235670179129,0.10036373883486,-0.023994565010071],[0.095112197101116,-0.096740171313286,0.0096791451796889],[-0.057294726371765,0.098246842622757,0.063075073063374]],[[0.12898005545139,-0.061098523437977,0.03085626102984],[0.062226317822933,-0.017558036372066,-0.030921451747417],[-0.041767299175262,0.0028928599786013,0.024143133312464]],[[0.044488165527582,0.055397626012564,-0.036222267895937],[0.092393554747105,0.018802030012012,0.018883224576712],[0.051299802958965,0.090961411595345,-0.08608703315258]],[[0.082501113414764,-0.01247214525938,0.051276389509439],[0.047519199550152,0.078884787857533,0.10397161543369],[-0.006924856454134,0.0065504410304129,0.040374837815762]],[[0.12020974606276,0.036875989288092,-0.040283184498549],[-0.081822670996189,-0.043733417987823,-0.022405249997973],[-0.066387206315994,-0.18500404059887,0.029530163854361]],[[0.023724326863885,-0.031995099037886,0.027937022969127],[-0.0057021002285182,-0.021387791261077,-0.055200207978487],[0.0016368285287172,-0.1539963632822,0.0037015138659626]],[[-0.02589020691812,0.016276834532619,-0.020936410874128],[-0.12587341666222,-0.063215650618076,0.0092927580699325],[-0.06187704578042,0.026910403743386,0.017658865079284]],[[0.042660094797611,-0.04556430876255,-0.069177336990833],[-0.13018560409546,-0.053010527044535,0.047211855649948],[-0.070227742195129,-0.016539612784982,0.054494023323059]],[[0.033726491034031,0.044797193259001,0.0084382081404328],[0.02943385578692,0.079733796417713,0.12090685963631],[-0.0080518405884504,0.11788392812014,-0.075413964688778]],[[-0.01551413256675,0.037166159600019,0.12609247863293],[0.026950119063258,-0.090392574667931,-0.017479194328189],[-0.026288034394383,0.097148142755032,0.035194411873817]],[[0.00029324681963772,-0.072987332940102,-0.0071907588280737],[-0.1006281748414,0.0013136147754267,0.0045740688219666],[0.077832862734795,-0.10247135162354,-0.021818865090609]],[[-0.009093246422708,0.044712122529745,0.091237269341946],[-0.0099252024665475,-0.020517852157354,-0.093285538256168],[0.015982830896974,-0.031478572636843,0.019503077492118]],[[0.12883226573467,-0.0019638743251562,0.01339184679091],[0.078980289399624,0.016761496663094,-0.063148751854897],[0.048693638294935,0.022370094433427,-0.057023592293262]],[[0.0061071310192347,-0.016025871038437,-0.028896452859044],[-0.093100517988205,0.058425724506378,-0.035199586302042],[0.11018177866936,0.0308529548347,0.031219946220517]],[[0.022671611979604,0.079288259148598,0.10434531420469],[0.097771570086479,0.0079561294987798,0.034827373921871],[0.041211400181055,0.027668435126543,0.024166414514184]],[[0.083856694400311,0.0096327047795057,0.038474123924971],[0.052840925753117,0.090811975300312,-0.040891010314226],[0.043219428509474,-0.0059926970861852,-0.1334506124258]],[[-0.042636226862669,-0.052961956709623,0.049750670790672],[-0.062792636454105,0.050055149942636,0.011156503111124],[-0.10225060582161,-0.0026705120690167,0.068402223289013]],[[0.101188570261,-0.019500821828842,0.065611623227596],[0.072755932807922,0.020980896428227,-0.008075064048171],[-0.03999213129282,0.1002726778388,0.073027998209]],[[0.015043244697154,0.034007396548986,0.07053954154253],[-0.0098572261631489,0.091141477227211,-0.036548938602209],[-0.077028058469296,-0.026541648432612,-0.060940023511648]],[[0.14247779548168,-0.085375249385834,0.077989034354687],[0.013669562526047,0.026548638939857,-0.014040648005903],[-0.03385628759861,0.095389775931835,0.055945128202438]],[[0.046194273978472,-0.012696056626737,0.1205735206604],[0.02033812366426,0.021626655012369,-0.022384312003851],[0.012570924125612,-0.033363319933414,0.061556372791529]],[[0.030247122049332,0.0063582346774638,0.0041020810604095],[0.023342240601778,-0.011098965071142,0.0540976151824],[-0.03953942283988,0.012180243618786,-0.030371453613043]],[[-0.012994582764804,0.11595436185598,-0.040667746216059],[-0.056853506714106,-0.069105103611946,-0.029631488025188],[-0.077241018414497,0.033152367919683,-0.062355317175388]],[[-0.020053155720234,0.095675088465214,-0.011951555497944],[-0.052787020802498,-0.055257126688957,0.13122954964638],[0.011554274708033,0.04006876796484,0.087933748960495]],[[-0.033865369856358,0.063532963395119,0.0043953657150269],[-0.0098376339301467,0.0076308296993375,0.18197277188301],[0.10064583271742,0.070478476583958,-0.066395878791809]],[[-0.10311509668827,0.030511721968651,0.024276938289404],[-0.0056116431951523,0.0082863988354802,-0.020872874185443],[0.052728611975908,0.035747040063143,-0.020781265571713]],[[0.059946589171886,0.029710261151195,-0.031081499531865],[-0.018199492245913,0.035998553037643,0.027126649394631],[0.061946146190166,-0.11579404771328,0.031418696045876]],[[-0.021963201463223,0.092281743884087,0.0035137005615979],[-0.02058982104063,-0.058547161519527,0.029811751097441],[-0.0054496433585882,0.029241556301713,0.1117132678628]],[[-0.0078285923227668,0.038000266999006,0.01971771940589],[0.0091509558260441,0.034636456519365,0.016945185139775],[-0.0012005273019895,-0.043949484825134,0.02723466604948]],[[-0.072695575654507,-0.02476110868156,0.044478364288807],[-0.059483505785465,0.10050758719444,-0.048340540379286],[-0.039615839719772,0.061521843075752,-0.19570772349834]],[[0.059753343462944,0.007873747497797,-0.043901693075895],[0.051772382110357,-0.14322006702423,-0.033936198800802],[-0.04068249091506,-0.12410441040993,-0.070908397436142]],[[0.062050249427557,0.028983039781451,-0.060383211821318],[-0.0065026227384806,0.0053103733807802,-0.052884660661221],[-0.048026766628027,0.023651923984289,-0.089752346277237]],[[0.049570761620998,0.091716766357422,0.01793154142797],[0.009099131450057,0.0041148597374558,0.055236421525478],[0.11939407140017,-0.041263461112976,0.043593287467957]],[[-0.061785232275724,-0.054142501205206,0.0097772153094411],[-0.032684106379747,0.23797816038132,-0.010354252532125],[-0.12484150379896,0.058723088353872,-0.00092835677787662]],[[0.024519817903638,0.10169868916273,0.061741817742586],[-0.0074620717205107,-0.0080132400617003,-0.10422249883413],[-0.032416366040707,-0.0725202485919,-0.099382542073727]],[[0.050336681306362,0.085980780422688,-0.016962951049209],[0.035508051514626,0.037824731320143,0.031378008425236],[0.055130049586296,0.034476853907108,0.094122029840946]],[[0.044788777828217,0.018614323809743,0.013957099989057],[-0.019873775541782,0.049905508756638,0.029748389497399],[-0.013040320947766,0.055374082177877,0.017211956903338]],[[-0.086810141801834,-0.03254335001111,-0.046928215771914],[-0.0012980872998014,-0.13385057449341,0.012941286899149],[0.12577812373638,0.019863344728947,0.00053600664250553]],[[-0.11888995021582,-0.047771543264389,0.037397991865873],[-0.017072005197406,0.0011936664814129,0.069535046815872],[-0.11968049407005,-0.069435372948647,-0.026093602180481]],[[0.033076588064432,0.032501325011253,0.0010442591737956],[0.052444510161877,-0.043693974614143,0.009599594399333],[0.043550178408623,-0.14118976891041,0.039192471653223]],[[-0.051537677645683,0.017903193831444,0.051718570291996],[0.045899629592896,0.023539535701275,-0.0098983952775598],[-0.10124941915274,-0.011090806685388,-0.037034999579191]],[[-0.025074305012822,0.038361914455891,0.049646239727736],[-0.011711411178112,-0.018212161958218,-0.0053850444965065],[-0.085211865603924,0.059566587209702,-0.040686748921871]],[[-0.099868409335613,0.087099775671959,0.035405732691288],[-0.077425427734852,0.029215879738331,0.010125648230314],[0.0081453202292323,-0.11522341519594,0.01338130235672]],[[-0.16726587712765,0.12726965546608,0.053505785763264],[-0.031511425971985,0.040360055863857,0.0015476733678952],[0.012576096691191,-0.00065809494117275,-0.13751305639744]],[[0.041766464710236,-0.066009417176247,-0.021263560280204],[-0.033212751150131,0.061641354113817,-0.055862750858068],[-0.03136507794261,-0.028911212459207,-0.051543567329645]],[[0.19867005944252,-0.063188135623932,-0.040124539285898],[-0.025936776772141,0.054585002362728,0.10214603692293],[-0.05105771869421,-0.036932915449142,-0.07158736884594]],[[-0.08230859786272,0.078338660299778,0.03303462266922],[0.017741741612554,-0.10904085636139,0.022035680711269],[0.033841982483864,0.026768002659082,-0.042494438588619]],[[0.018292479217052,0.030938597396016,0.00364163890481],[-0.053860239684582,-0.053122878074646,0.0012760687386617],[-0.067366547882557,0.015185819938779,0.070260480046272]],[[-0.061682112514973,-0.048049114644527,0.056478355079889],[0.14495991170406,-0.043718617409468,0.03515612706542],[-0.047659203410149,0.016217229887843,-0.053698197007179]],[[0.045425180345774,-0.029591994360089,-0.012850309722126],[-0.027129957452416,0.014458270743489,-0.047304831445217],[-0.017790731042624,0.023911254480481,0.096752643585205]],[[-0.028610063716769,0.061186760663986,0.031638041138649],[0.0099659888073802,-0.033742357045412,-0.018260572105646],[-0.018815267831087,-0.020711429417133,0.026623016223311]],[[-0.012861258350313,0.051974307745695,0.017883280292153],[-0.042207654565573,-0.032288670539856,0.041690554469824],[-0.035264678299427,0.090277060866356,-0.028389435261488]],[[-0.1327006816864,-0.12360209971666,-0.11422535032034],[0.004495922010392,-0.090857818722725,-0.080294869840145],[-0.12430231273174,-0.051918614655733,0.013003365136683]],[[-0.034508645534515,0.027442304417491,-0.012584679760039],[0.023894257843494,0.028924852609634,0.015948818996549],[-0.089486017823219,-0.17338153719902,-0.11205983161926]],[[-0.058796994388103,0.00549252377823,-0.10543911904097],[-0.02186163701117,0.074179403483868,-0.11602689325809],[0.023565171286464,0.037576820701361,0.0026056263595819]],[[0.085336685180664,-0.034597665071487,-0.052601236850023],[0.070870779454708,-0.004114193841815,-0.02654498629272],[-0.0091739445924759,-0.067394338548183,-0.0073551232926548]],[[0.034170728176832,0.049986783415079,-0.025585357099771],[0.0074332063086331,0.0729965493083,-0.0022756780963391],[-0.061562206596136,-0.0090137058869004,0.043208610266447]],[[0.019452705979347,-0.026467952877283,0.0098071880638599],[-0.070119850337505,-0.11670497059822,-0.10512110590935],[-0.046988535672426,-0.1048705726862,-0.079887181520462]],[[0.095887154340744,-0.027657674625516,-0.053081844002008],[0.01839642599225,0.014110659249127,-0.022955980151892],[0.050729598850012,0.0067209722474217,0.075491316616535]],[[0.076241798698902,0.062813729047775,0.11298959702253],[-0.061290342360735,-0.03462490811944,-0.14988125860691],[-0.02669370919466,-0.073582842946053,-0.050266306847334]],[[0.0053477701731026,0.10152534395456,0.024461766704917],[0.1709116101265,-0.07991161942482,0.028260082006454],[0.051991619169712,0.12368274480104,0.0066112075001001]],[[0.035648662596941,0.086653888225555,-0.066330552101135],[0.042282540351152,-0.038026794791222,0.0048565124161541],[0.058017943054438,0.08566952496767,0.089018374681473]],[[0.068362556397915,-0.040787693113089,0.005847763735801],[-0.0069321757182479,-0.080976270139217,-0.026127250865102],[0.074848651885986,-0.012718556448817,0.051840864121914]],[[-0.049659091979265,-0.0083973333239555,-0.00053582264808938],[-0.072016432881355,0.010920139029622,-0.0043314644135535],[0.10792374610901,-0.024076890200377,-0.036800660192966]],[[-0.042316321283579,-0.022298775613308,0.0020769448019564],[-0.029846183955669,0.16443803906441,-0.00057756167370826],[0.032458808273077,0.021665677428246,0.056560289114714]]],[[[-0.013573979027569,-0.012447374872863,-0.072468899190426],[0.0074253594502807,0.0077361171133816,-0.021727172657847],[-0.041926838457584,0.0015720912488177,0.00079994177212939]],[[0.025020828470588,-0.0029444107785821,-0.038225036114454],[-0.020892824977636,-0.06268072873354,-0.055958066135645],[0.013085673563182,0.02446229942143,0.019347686320543]],[[-0.01754973269999,0.0074668941088021,0.02349098585546],[-0.03761151432991,-0.087356604635715,0.016989143565297],[0.0020927623845637,0.025376116856933,-0.044011801481247]],[[0.0020359205082059,0.0049034208059311,0.036518782377243],[0.029214965179563,-0.039504677057266,0.019822841510177],[-0.037458676844835,-0.018282460048795,0.045369066298008]],[[0.040633328258991,-0.081940434873104,-0.037269081920385],[-0.016626380383968,0.070379994809628,0.0060944124124944],[0.037945494055748,0.043618150055408,0.043805938214064]],[[0.058936525136232,0.0087489392608404,0.012182614766061],[0.037667747586966,0.047955013811588,-0.0066293645650148],[-0.040708754211664,-0.059201542288065,0.0080555994063616]],[[0.090996228158474,0.044077429920435,-0.051389493048191],[-0.07452117651701,0.081358700990677,-0.033857706934214],[-0.06112752482295,0.0087138963863254,-0.042074173688889]],[[0.06556198745966,0.078775815665722,-0.094572566449642],[-0.016306649893522,0.0059569617733359,0.0010456477757543],[0.068880274891853,-0.030727418139577,0.0061060935258865]],[[0.034033816307783,0.0019058942561969,0.045048758387566],[0.053726844489574,0.066436842083931,-0.011653233319521],[-0.027290059253573,-0.067688189446926,-0.044815454632044]],[[-0.050323244184256,0.0044411378912628,0.016328385099769],[0.001428670831956,-0.015316192992032,0.045692473649979],[-0.064944617450237,0.057776119560003,-0.010249188169837]],[[0.047150932252407,-0.026320254430175,0.026061562821269],[-0.052292376756668,-0.028766555711627,0.0026588756591082],[0.040534298866987,-0.041737653315067,-0.019009228795767]],[[0.0099729113280773,0.031495645642281,0.028383061289787],[0.046965762972832,0.029364541172981,0.015784868970513],[-0.035583905875683,0.011657170951366,-0.050699692219496]],[[0.014923864044249,0.081374831497669,0.0033257845789194],[0.038449540734291,0.021558173000813,-0.021731838583946],[-0.01827485486865,0.067386150360107,-0.077596232295036]],[[-0.00045916246017441,0.029185386374593,-0.019633932039142],[-0.009488201700151,-0.055698338896036,0.023637156933546],[0.025302609428763,0.030608039349318,0.022394377738237]],[[0.050961375236511,0.0095820156857371,-0.05049529671669],[-0.00083945167716593,0.011795863509178,-0.020809255540371],[-0.027533549815416,-0.0096512334421277,0.02078939974308]],[[-0.0020501108374447,-0.042835161089897,-0.024389896541834],[-0.059043321758509,-0.06999172270298,0.058792285621166],[-0.038262695074081,0.02969584427774,0.054585486650467]],[[-0.031402036547661,-0.052025146782398,-0.013669447973371],[0.0080033661797643,0.014939340762794,-0.059210881590843],[-0.034497108310461,-0.0031715931836516,0.040942993015051]],[[-0.08325382322073,0.056902047246695,0.015979524701834],[-0.0037064750213176,-0.02315797097981,0.021236954256892],[0.0071175605989993,0.060199286788702,-0.041267152875662]],[[-0.0031410113442689,-0.033205378800631,-0.01529829017818],[0.042730163782835,-0.094408869743347,-0.011353401467204],[-0.05679764226079,0.0092624984681606,0.0066070426255465]],[[0.02857393398881,0.016445638611913,0.076326921582222],[-0.07161720842123,0.0054159262217581,0.010802009142935],[-0.028507079929113,-0.0090718669816852,0.10439509153366]],[[0.024410637095571,0.0008211939712055,0.036028817296028],[0.031464315950871,-0.005725288297981,-0.016432836651802],[0.017425367608666,-0.007880755700171,0.042653255164623]],[[-0.0012390738120303,0.056971024721861,-0.06545090675354],[-0.00093033845769241,-0.058708932250738,0.025028740987182],[0.031315173953772,0.0098618930205703,0.040971256792545]],[[0.0076147178187966,-0.079953700304031,-0.073277652263641],[-0.043149773031473,-0.018499575555325,-0.069288060069084],[0.038564957678318,0.0052269613370299,-0.011182620190084]],[[0.0021151013206691,-0.004182361997664,0.011322846636176],[-0.045799523591995,-0.078703194856644,0.013210731558502],[-0.0094083240255713,0.031548045575619,-0.01714089512825]],[[-0.0055114454589784,0.070225298404694,0.02859491109848],[0.030624099075794,0.054482582956553,0.014602417126298],[-0.067509293556213,-0.058372914791107,0.0082461778074503]],[[0.0028869139496237,-0.036008954048157,-0.058297444134951],[-0.015378802083433,-0.019876729696989,0.050095457583666],[0.017950618639588,0.027016788721085,0.069037102162838]],[[0.021676000207663,0.036208733916283,0.045263983309269],[0.038663148880005,0.014449024572968,-0.0014221359742805],[-0.037965554744005,-0.031244030222297,-0.041645400226116]],[[-0.039381023496389,-0.048563033342361,-0.01826480217278],[-0.0023893299512565,-0.030215207487345,0.049493443220854],[-0.030732875689864,0.022078290581703,0.060192935168743]],[[-0.0059254681691527,-0.00017300504259765,-0.020387636497617],[0.0076719080097973,-0.013704681769013,0.15663695335388],[-0.08233043551445,0.075543515384197,0.010911735706031]],[[0.0048188734799623,0.012061360292137,0.032184761017561],[-0.0013270067283884,-0.018363725394011,-0.049455318599939],[-0.045227963477373,-0.00038238224806264,0.047668717801571]],[[0.064762234687805,-0.016292968764901,-0.033928442746401],[0.0028805043548346,0.034281030297279,0.034247301518917],[0.0043476084247231,0.038894191384315,-0.093532875180244]],[[-0.0073104710318148,-0.045004151761532,-0.016341265290976],[0.025098793208599,-0.044761136174202,-0.015577700920403],[-0.02709523960948,-0.0067254994064569,-0.026654286310077]],[[0.041528131812811,0.021224498748779,-0.053374234586954],[0.016468599438667,0.014298962429166,0.012397623620927],[0.010355135425925,0.073163099586964,-0.10651429742575]],[[-0.0027205385267735,0.0045998855493963,0.0082954345270991],[-0.041003182530403,0.039110854268074,-0.005803728941828],[-0.0021276385523379,0.0033835517242551,0.014273632317781]],[[0.0073974542319775,-0.016969598829746,0.0112772481516],[0.014219826087356,0.04350471496582,0.027596453204751],[-0.0551917552948,0.06730242818594,-0.030483990907669]],[[0.038878343999386,0.060667306184769,-0.012288105674088],[0.020130440592766,-0.099729239940643,0.028218677267432],[-0.050091873854399,-0.00091189448721707,0.087293572723866]],[[0.019983593374491,0.028881477192044,-0.010308007709682],[-0.072966739535332,-0.012926639989018,-0.027606369927526],[0.047144424170256,0.0014030658639967,0.0020634445827454]],[[0.049471095204353,-0.010224708355963,-0.027476489543915],[-0.029947184026241,-0.030595498159528,0.055943466722965],[-0.084179989993572,-0.011815635487437,0.009206379763782]],[[-0.018027547746897,0.068461857736111,-0.034351479262114],[0.065112352371216,-0.031360741704702,-0.0061383168213069],[-0.0096947383135557,0.0979193598032,-0.069506637752056]],[[-0.0026595985982567,-0.038360480219126,0.013102163560688],[0.018219599500299,-0.031424663960934,0.069592580199242],[0.013024197891355,0.0076782642863691,0.016234466806054]],[[0.0008537860121578,-0.019765144214034,-0.034282058477402],[-0.031827308237553,-0.053659647703171,-0.059664268046618],[-0.021301284432411,0.038065541535616,-0.037038169801235]],[[0.026569740846753,-0.051927510648966,-0.0062003321945667],[-0.0096446741372347,-0.023016590625048,0.029615577310324],[-0.013610396534204,0.064625918865204,-0.0045100441202521]],[[0.048198778182268,-0.026926569640636,-0.029223915189505],[0.020000699907541,0.053570795804262,-0.041491117328405],[-0.0092927468940616,0.053631659597158,0.0032868543639779]],[[0.0065855178982019,0.069137312471867,0.044509578496218],[-0.012890480458736,-0.10679058730602,-0.0083727901801467],[0.045820992439985,-0.041444092988968,-0.011251982301474]],[[-0.03460755944252,0.0012851502979174,-0.0066745369695127],[0.022161366418004,0.056844934821129,0.05385497957468],[0.03581765666604,-0.039267782121897,-0.030258508399129]],[[-0.0048125283792615,-0.031108755618334,-0.0053297961130738],[0.095726564526558,-0.037977881729603,-0.019087512046099],[-0.012103298678994,-0.038492545485497,-0.017009804025292]],[[0.054636608809233,-0.043474428355694,0.013339112512767],[0.011321284808218,-0.0080140689387918,-0.039332468062639],[0.04195099323988,-0.052645925432444,0.044368170201778]],[[-0.033037882298231,0.022785723209381,0.0070670442655683],[0.00069613684900105,-0.056570276618004,-0.025488300248981],[0.0041320072486997,0.043189413845539,-0.048692706972361]],[[-0.0072533506900072,0.011772406287491,-0.042092580348253],[-0.038015630096197,-0.051391504704952,0.043665982782841],[0.0019692468922585,-0.077274486422539,-0.04858461022377]],[[-0.027406198903918,-0.029345599934459,0.0011942432029173],[-0.044906828552485,0.033920992165804,-0.0077823861502111],[0.017816826701164,0.059379205107689,-0.046908915042877]],[[-0.011281160637736,0.055681813508272,-0.038122184574604],[0.044508934020996,0.039974298328161,-0.039984717965126],[-0.017416879534721,0.030738823115826,0.039314772933722]],[[-0.027203369885683,-0.040315140038729,0.050906516611576],[-0.0094530144706368,0.041010618209839,0.062940001487732],[-0.034365642815828,-1.8899532733485e-05,0.052181005477905]],[[-0.017995718866587,-0.064849458634853,-0.0032978209201247],[0.020939216017723,0.033618044108152,-0.034023489803076],[-0.022780112922192,0.10644380748272,0.032776616513729]],[[-0.020076105371118,-0.013073140755296,0.038727756589651],[0.0007235380471684,-0.02942606434226,-0.024554841220379],[0.065737374126911,-0.0055448301136494,-0.00093967525754124]],[[-0.027799837291241,0.062810003757477,0.0070464452728629],[-0.033781949430704,-0.050221275538206,0.08429117500782],[-0.075827896595001,-0.03107376396656,-0.020114688202739]],[[0.012327937409282,-0.008694346062839,0.030240420252085],[0.010097397491336,-0.01488951779902,0.0065087950788438],[0.031642597168684,-0.026174683123827,0.10358510166407]],[[-0.01306629460305,0.015400846488774,0.017827108502388],[0.028520880267024,0.036619395017624,-0.093387067317963],[0.030529245734215,0.034549307078123,-0.04069022461772]],[[-0.041941188275814,0.090333223342896,-0.052787519991398],[0.043075803667307,-0.0076279886998236,0.066863380372524],[-0.016581637784839,0.01441678404808,-0.0081316856667399]],[[0.062662482261658,0.027662303298712,0.016410388052464],[-0.0040965313091874,-0.010591996833682,0.016944879665971],[0.046601045876741,-0.025490876287222,-0.11503351479769]],[[0.039175018668175,-0.014003617689013,-0.016362546011806],[-0.0018881981959566,-0.041728768497705,-0.039201971143484],[0.030102023854852,0.012201055884361,0.0099020414054394]],[[-0.068046890199184,-0.026933638378978,-0.038605455309153],[0.0026345655787736,-0.025390788912773,-0.049745060503483],[0.029683846980333,0.058974970132113,0.021829511970282]],[[-0.091034263372421,0.019847422838211,0.010894030332565],[0.0013805051567033,-0.061460677534342,0.037234142422676],[-0.01204673666507,0.070800840854645,-0.028471624478698]],[[0.0087032681331038,-0.0083212908357382,0.039327669888735],[0.076094336807728,0.03092460334301,-0.0073221661150455],[-0.03901894018054,0.023118741810322,-0.013629811815917]],[[0.073211394250393,0.026376061141491,0.0099949426949024],[0.005902954377234,-0.05622835084796,0.057780563831329],[-0.0070859221741557,-0.08943085372448,0.047606948763132]],[[-0.0043563204817474,-0.033597130328417,-0.024888016283512],[0.079604759812355,0.047204300761223,-0.050022523850203],[-0.083921305835247,0.0007616359507665,0.0088839288800955]],[[-0.083949364721775,-0.020967353135347,-0.0016447552479804],[-0.00067710544681177,0.020410234108567,-0.05182183906436],[-0.057280138134956,-0.010863876901567,-0.0042984778992832]],[[-0.022362990304828,0.053195960819721,-0.013235294260085],[-0.012164184823632,-0.015061616897583,0.033230040222406],[0.00022963217634242,0.026201784610748,-0.027526684105396]],[[0.0018579585012048,0.013031395152211,0.015010443516076],[0.01473421882838,-0.028133558109403,0.076841481029987],[-0.024258151650429,0.023677805438638,-0.044007051736116]],[[-0.015874698758125,-0.019676674157381,0.054310835897923],[-0.04557192325592,0.062158290296793,0.027733689174056],[-0.14481276273727,-0.010586451739073,0.015030156821012]],[[-0.040286891162395,0.075296364724636,0.059490442276001],[-0.0020381063222885,-0.0071086524985731,0.089800626039505],[0.012705314904451,-0.018645850941539,0.044367466121912]],[[0.023842765018344,0.03943982347846,0.059471633285284],[-0.026965998113155,-0.00298643251881,-0.025863608345389],[0.023228390142322,0.10870084166527,0.017061479389668]],[[0.080451816320419,0.03316280990839,0.023046214133501],[-0.013679805211723,0.036670587956905,-0.01139032561332],[-0.0055642756633461,0.042671330273151,0.046609163284302]],[[-0.011654605157673,-0.077059000730515,-0.0055346353910863],[-0.032666895538568,0.077063791453838,0.015313274227083],[-0.01765607111156,-0.025111891329288,0.00043589947745204]],[[0.052535690367222,-0.0042518195696175,0.041934691369534],[-0.053030405193567,0.038842588663101,0.094045422971249],[0.042874529957771,0.079452335834503,-0.064861230552197]],[[0.12520737946033,0.0018740118248388,-0.035765413194895],[0.015918923541903,-0.028698459267616,0.04636412858963],[-0.013254162855446,-0.059866547584534,0.02792888879776]],[[-0.0097514493390918,-0.024566505104303,0.038419894874096],[0.063087485730648,-0.043276641517878,0.026924848556519],[0.027177741751075,-0.035886656492949,-0.029134709388018]],[[-0.025586826726794,0.0040517630986869,-0.036819167435169],[0.0093090236186981,0.04323210939765,-0.034638755023479],[-0.020118603482842,0.017387084662914,-0.037394337356091]],[[0.023865958675742,0.013181514106691,0.053836096078157],[-0.022329876199365,0.024345276877284,-0.025208922103047],[0.042174037545919,-0.050510872155428,0.0011997659457847]],[[-0.0073575195856392,-0.020633857697248,0.0048207705840468],[-0.010702774859965,-0.019698210060596,0.021615022793412],[0.041773416101933,-0.0058896937407553,0.0033357329666615]],[[0.020522836595774,0.013613743707538,-0.010857179760933],[-0.017665401101112,-0.024482946842909,-0.029158288612962],[0.0012001428985968,-0.0062011205591261,0.018120961263776]],[[-0.038227640092373,0.01609599404037,-0.046881098300219],[-0.017967615276575,-0.020959228277206,0.021122952923179],[0.010642377659678,0.0038756644353271,0.069777235388756]],[[0.00080722162965685,0.073157154023647,0.024435725063086],[-0.047634769231081,0.014513115398586,0.096670940518379],[0.052492834627628,-0.013892355374992,0.039993546903133]],[[0.025880374014378,0.014539630152285,0.042001612484455],[-0.010037152096629,0.10141181200743,-0.028241511434317],[0.022346569225192,0.055461052805185,-0.010684528388083]],[[0.058309901505709,0.019484955817461,-0.019101494923234],[-0.029191449284554,-0.034534584730864,0.0029814038425684],[0.050038579851389,-0.0094914054498076,0.034278370440006]],[[-0.0089279441162944,-0.0084991902112961,-0.0879977196455],[0.035343606024981,-0.049318347126245,0.029573477804661],[-0.0013367336941883,-0.04814550280571,0.096253648400307]],[[-0.075086377561092,-0.020734880119562,0.0086274752393365],[0.0068206689320505,-0.0052269608713686,-0.014817855320871],[-0.034231752157211,-0.0086365882307291,0.062542736530304]],[[-0.092282108962536,0.0032751595135778,0.016805030405521],[-0.10294410586357,-0.038882002234459,0.053249873220921],[-0.026732405647635,-0.0060928757302463,0.068032920360565]],[[0.051014184951782,-0.0092080300673842,0.059516772627831],[-0.011489608325064,0.019748575985432,-0.0035418376792222],[-0.045753862708807,0.043473228812218,0.031990725547075]],[[-0.051685191690922,-0.042370423674583,0.010528972372413],[0.074911065399647,0.0191290974617,0.023974260315299],[0.027688158676028,0.03926669806242,0.011427067220211]],[[0.044117007404566,-0.0039024611469358,-0.025054272264242],[0.085886113345623,0.022122656926513,0.028572652488947],[0.01383039355278,0.0045427861623466,-0.015234048478305]],[[0.0072893761098385,-0.029400415718555,0.087338969111443],[-0.026317475363612,-0.011230370029807,-0.055238831788301],[0.071537420153618,0.044405836611986,-0.021201020106673]],[[-0.021479798480868,-0.031250528991222,0.0659459233284],[0.023930853232741,-0.061975758522749,0.054439540952444],[-0.023876762017608,0.0093911718577147,0.061276722699404]],[[0.046878963708878,-0.054029397666454,-0.0020246473141015],[-0.042772781103849,0.10404039174318,-0.022742051631212],[-0.023965893313289,0.034766677767038,-0.017478436231613]],[[-0.018193118274212,-0.050812732428312,0.016542334109545],[0.10132651776075,-0.043218024075031,-0.074551232159138],[0.0032481751404703,0.0081060277298093,0.0060633327811956]],[[0.061976253986359,-0.042929921299219,-0.029986467212439],[-0.020750485360622,0.0010920352069661,-0.043211229145527],[0.032934010028839,-0.02260572835803,-0.015930419787765]],[[-0.036609709262848,-0.027662701904774,-0.0023439098149538],[0.055353447794914,0.0011865264968947,-0.052924305200577],[-0.0035356129519641,-0.0049018040299416,-0.055307190865278]],[[0.018669065088034,0.047257766127586,0.041826844215393],[-0.035166386514902,0.040691509842873,0.046106219291687],[-0.048263128846884,0.049169667065144,-0.00011039838864235]],[[0.041775938123465,0.028283882886171,-0.024176891893148],[-0.023985182866454,0.001076411572285,-0.046507682651281],[-0.022422799840569,0.10477675497532,0.016842817887664]],[[0.016149528324604,0.062422905117273,-0.012724143452942],[0.063376672565937,-0.0075078988447785,0.01216752640903],[0.0010102686937898,0.023792898282409,0.036727782338858]],[[0.015357870608568,-0.026587888598442,0.029087455943227],[0.0075490535236895,0.072754621505737,-0.038682788610458],[-0.017373371869326,-0.010043041780591,0.047294553369284]],[[0.041711423546076,0.043486207723618,-0.092736415565014],[0.036987494677305,0.065660521388054,0.053968850523233],[-0.070903018116951,0.022918701171875,0.061256799846888]],[[-0.0046460679732263,0.039494775235653,0.028382614254951],[0.017583105713129,-0.057364549487829,0.056303489953279],[0.06508881598711,-0.036496501415968,0.017341027036309]],[[-0.037470906972885,-0.10521218925714,0.059000987559557],[0.0050994139164686,-0.013360518962145,-0.079574540257454],[-0.031242527067661,-0.02350239828229,0.03008347004652]],[[-0.0098116574808955,0.0082722688093781,0.064522907137871],[0.018801536411047,-0.023738110437989,-0.036903530359268],[-0.046732418239117,-0.028433784842491,-0.07249228656292]],[[0.030453754588962,0.056057769805193,0.027728220447898],[0.032724365592003,0.08935272693634,-0.044169757515192],[-0.044392440468073,0.061348304152489,0.027762550860643]],[[0.025858579203486,-0.021356146782637,-0.0074512539431453],[-0.027365712448955,0.010186115279794,0.025059744715691],[0.039366029202938,0.075405679643154,-0.025957614183426]],[[0.019272513687611,-0.033204641193151,0.051791660487652],[0.0021901899017394,0.058876499533653,0.022236902266741],[-0.022008653730154,-0.003173389704898,-0.041245851665735]],[[-0.026544082909822,0.014602766372263,-0.091325111687183],[-0.019279839470983,0.062440324574709,0.041849210858345],[0.0097093787044287,-0.0039924858137965,0.044439759105444]],[[-0.027655432000756,0.043208744376898,0.025998687371612],[0.0014003581600264,-0.017125511541963,0.0080641871318221],[-0.057734370231628,0.057366859167814,0.0013669187901542]],[[-0.075204879045486,-0.11307472735643,0.039000425487757],[0.068498075008392,-0.072519451379776,-0.028760764747858],[-0.016420666128397,0.0047199674881995,-0.026464249938726]],[[0.060937382280827,-0.041563872247934,0.020095018669963],[-0.0083045875653625,0.020026255398989,0.093173362314701],[0.003753588302061,0.043448802083731,0.0099896471947432]],[[-0.10761708021164,0.0058814170770347,-0.010157535783947],[0.019903874024749,-0.039494000375271,0.016040569171309],[-0.039498947560787,0.0053416946902871,-0.0020719761960208]],[[-0.014697888866067,0.01944893784821,-0.07225775718689],[0.0048415251076221,-0.0074263536371291,0.010661096312106],[0.039397045969963,-0.00075402780203149,-0.0095604518428445]],[[0.022019600495696,-0.015489049255848,0.015088384971023],[-0.014618351124227,-7.8513956395909e-05,-0.015002756379545],[-0.052705068141222,0.0090178297832608,0.019190602004528]],[[0.001784390071407,0.019231013953686,-0.020154023543],[-0.037838026881218,-0.02610301785171,0.031823858618736],[-0.01007129624486,-0.03653733804822,-0.01988197863102]],[[0.0049919122830033,0.0098794708028436,0.019003879278898],[0.0028956558089703,-0.036806039512157,-0.030308725312352],[0.041340060532093,0.0070030000060797,-0.0087676141411066]],[[-0.001072866958566,0.0043592723086476,-0.006590997800231],[-0.021273955702782,-0.025044510141015,-0.041820500046015],[-0.012754284776747,0.078878663480282,-0.042077820748091]],[[-0.009871824644506,0.058008972555399,-0.036509521305561],[0.073587253689766,-0.078829139471054,0.022624084725976],[0.023738211020827,0.0033268847037107,0.0090342266485095]],[[-0.013503034599125,-0.027558043599129,-0.072574339807034],[0.013035210780799,0.00073738332139328,0.044080600142479],[-0.020601820200682,0.034184712916613,-0.025446835905313]],[[0.0029169491026551,-0.056661054491997,0.036014843732119],[0.062869489192963,-0.04606956243515,-0.0022040845360607],[-0.085034884512424,-0.030768560245633,0.012046835385263]],[[-0.0015128151280805,-0.058050863444805,0.0014172183582559],[0.032876506447792,-0.039974316954613,0.0082163633778691],[0.027626425027847,-0.070792853832245,0.016047455370426]],[[0.048850577324629,0.017707670107484,-0.032955132424831],[-0.01640796661377,0.095196776092052,-0.0042118704877794],[0.018968937918544,-0.015116606839001,-0.020924923941493]],[[0.040553342550993,-0.046460948884487,-0.0027663342189044],[0.060254216194153,-0.034241888672113,0.035239327698946],[0.041505109518766,0.11550786346197,0.00019774114480242]],[[0.066167779266834,-0.047892320901155,0.053069327026606],[0.021715192124248,0.093377508223057,-0.10222782194614],[-0.03331222012639,-0.01434556953609,0.065290257334709]],[[0.013188730925322,0.0010124215623364,0.029578441753983],[-0.070638433098793,-0.033604510128498,-0.038228794932365],[-0.026095913723111,0.0067460155114532,-0.026292769238353]],[[-0.058472208678722,0.021197298541665,0.065524734556675],[-0.0092809638008475,0.049187403172255,0.037989422678947],[0.045274883508682,-0.0011309165274724,-0.082026749849319]],[[0.0016723317094147,0.028568718582392,-0.019212448969483],[-0.0024353410117328,-0.0084998458623886,-0.044688921421766],[0.12142565101385,0.0016455276636407,0.039839304983616]],[[-0.023521641269326,-0.00059529155259952,-0.014454324729741],[-0.031046912074089,0.046766873449087,0.039102774113417],[0.036018066108227,0.051435243338346,0.019236896187067]]],[[[-0.1582894474268,-0.17445307970047,0.027646349743009],[-0.023400742560625,-0.15348349511623,0.14587228000164],[0.12574678659439,0.086487084627151,0.19041322171688]],[[0.080867141485214,0.048592649400234,-0.21731387078762],[0.031706999987364,0.0027871232014149,-0.21587724983692],[0.019380986690521,-0.086357600986958,-0.070964895188808]],[[0.05335795879364,0.014908431097865,0.10836304724216],[-0.071045763790607,0.060286592692137,0.14256425201893],[-0.076507233083248,-0.1366755515337,-0.10226064920425]],[[0.0755969658494,0.016537014394999,-0.023193040862679],[-0.0082647828385234,-0.071128450334072,-0.06622452288866],[0.022126946598291,0.018929295241833,0.019359270110726]],[[-0.011241640895605,0.025702625513077,0.011892921291292],[-0.023728679865599,0.085847161710262,0.087569534778595],[0.13073447346687,0.14152510464191,0.11378607153893]],[[0.16585013270378,-0.14068800210953,0.11724687367678],[-0.084770388901234,-0.066316120326519,0.0035546012222767],[0.042835079133511,0.0031347211916,0.0042221294716001]],[[-0.023755485191941,0.013582919724286,-0.0052646542899311],[-0.1038206666708,-0.027569267898798,0.13515289127827],[0.1080934330821,-0.03974986448884,0.020469408482313]],[[-0.019144162535667,0.12481164187193,0.019823273643851],[0.075820177793503,0.013716660439968,-0.021628852933645],[0.06351426243782,0.010934050194919,0.014943922869861]],[[0.051838126033545,0.053368967026472,-0.089815124869347],[0.068470671772957,-0.052715115249157,-0.097673237323761],[0.033485636115074,0.05305889621377,-0.0075725787319243]],[[0.092828452587128,0.0034748218022287,0.064589247107506],[0.0012828927719966,-0.10248481482267,0.0043894732370973],[-0.053377103060484,0.0079588778316975,0.035912033170462]],[[0.10821778327227,-0.10213398188353,-0.014766670763493],[-0.032268598675728,-0.025377124547958,0.053560227155685],[0.1350481659174,-0.011080768890679,-0.071073964238167]],[[0.084701433777809,0.085736021399498,0.23393043875694],[-0.12516659498215,0.35661438107491,-0.38216865062714],[0.0012801598059013,-0.021407576277852,0.012875131331384]],[[0.1022566780448,-0.025064863264561,0.09337056428194],[0.019872985780239,-0.01776722446084,-0.056484386324883],[0.018804771825671,-0.074469193816185,-0.13633082807064]],[[0.034330308437347,-0.10894252359867,-0.034140471369028],[-0.014013252221048,-0.17266631126404,-0.092286862432957],[-0.011625912971795,-0.090165704488754,0.10882321000099]],[[-0.015739066526294,-0.12986582517624,-0.01309363078326],[-0.0049712159670889,-0.16905565559864,0.0064763464033604],[0.01464902702719,0.052788719534874,0.060129269957542]],[[0.01129321847111,0.082091964781284,-0.12156003713608],[0.15281477570534,0.0020807969849557,0.10252311825752],[-0.055424053221941,0.03113866597414,0.041943501681089]],[[-0.075840942561626,0.058785483241081,-0.14291816949844],[0.13690440356731,-0.011722058989108,-0.1823928207159],[-0.050105825066566,0.086859285831451,-0.075457200407982]],[[-0.028290646150708,-0.11477052420378,-0.1165461614728],[0.043159287422895,0.063500866293907,0.076177984476089],[0.20899507403374,0.071772672235966,-0.095686621963978]],[[-0.068672493100166,0.1298840790987,0.062854029238224],[-0.0028657738585025,-0.085963472723961,-0.041936028748751],[-0.018451016396284,0.016938703134656,-0.034409418702126]],[[0.096790447831154,0.068639352917671,0.052964046597481],[0.033371482044458,-0.0033798390068114,-0.049549110233784],[-0.10466788709164,0.011518912389874,0.036138813942671]],[[0.22877106070518,0.17053915560246,0.0061482507735491],[-0.060723271220922,0.072974972426891,-0.015734642744064],[-0.13653951883316,-0.12869435548782,-0.11510520428419]],[[-0.018952315673232,0.10391762852669,0.033855583518744],[0.19096474349499,-0.026156285777688,-0.17296688258648],[0.033234462141991,-0.07326116412878,-0.075217828154564]],[[0.13038669526577,-0.084258243441582,-0.07150612026453],[0.035711754113436,-0.094575323164463,-0.041079089045525],[0.14254094660282,0.068058915436268,-0.039893750101328]],[[-0.0022037888411433,-0.074811913073063,-0.11375959217548],[-0.054749418050051,0.094366393983364,-0.070404998958111],[-0.030362941324711,-0.17099992930889,0.069274365901947]],[[0.41096496582031,0.10179726779461,0.11310469359159],[-0.047791533172131,-0.10186596214771,0.41989058256149],[0.080430082976818,0.42386791110039,-0.14325594902039]],[[-0.089378356933594,0.02832992747426,-0.14299896359444],[-0.030373517423868,-0.12974768877029,-0.27077856659889],[-0.046912934631109,-0.065295435488224,-0.030662465840578]],[[-0.10051953047514,-0.10469628870487,-0.067347355186939],[0.082771174609661,-0.024542482569814,-0.018072048202157],[0.13510173559189,0.1679712086916,0.024009423330426]],[[0.12293831259012,0.036302428692579,0.0050494540482759],[0.01111825928092,-0.039925243705511,-0.10839699208736],[-0.13370452821255,-0.067392349243164,0.079062588512897]],[[-0.024762002751231,-0.026451176032424,-0.060023698955774],[0.025511704385281,-0.06044615060091,0.074552349746227],[0.066344775259495,0.11413443088531,0.14159244298935]],[[0.11881804466248,0.028891718015075,0.059803944081068],[0.036534391343594,-0.053868040442467,-0.097745515406132],[0.015229274518788,-0.051094107329845,0.017515957355499]],[[0.00049657886847854,-0.15772837400436,-0.12353990972042],[-0.13691584765911,-0.15243853628635,-0.21820579469204],[-0.16854649782181,-0.25786066055298,-0.15983812510967]],[[-0.24991077184677,0.064853452146053,0.015968712046742],[-0.13957314193249,-0.087818555533886,-0.033716175705194],[-0.0088769132271409,-0.098196916282177,-0.029271757230163]],[[0.11513517796993,0.072339795529842,-0.021287843585014],[0.030031729489565,-0.016843782737851,-0.097642056643963],[-0.031204737722874,-0.089190930128098,-0.018502468243241]],[[0.11182689666748,0.14591185748577,-0.054265096783638],[0.0018727323040366,-0.10274660587311,0.19689258933067],[-0.11570862680674,-0.10472253710032,0.010211231186986]],[[-0.01757650449872,-0.045030929148197,-0.054129015654325],[-0.065192997455597,-0.060523796826601,0.072260417044163],[-0.086531944572926,-0.043589383363724,0.19035741686821]],[[-0.11633615940809,0.11011266708374,-0.097721733152866],[0.026129623875022,0.094118349254131,0.12527292966843],[0.046184260398149,0.059896904975176,-0.18186868727207]],[[0.029116319492459,-0.10678651928902,0.18425169587135],[-0.19896532595158,0.29928070306778,0.025552786886692],[0.18383021652699,-0.047870885580778,-0.074852637946606]],[[-0.15672279894352,0.077773049473763,0.1499263048172],[0.016168298199773,-0.11807384341955,-0.1808096319437],[-0.092801235616207,-0.058428045362234,0.16402544081211]],[[-0.14145724475384,-0.021002404391766,-0.078234322369099],[-0.11687009036541,-0.25957506895065,0.2694034576416],[-0.29593628644943,0.16654333472252,0.16457799077034]],[[-0.05104972422123,0.033168286085129,0.14640213549137],[-0.13288821280003,-0.055649027228355,-0.091438218951225],[0.049413412809372,-0.18544714152813,-0.026892887428403]],[[0.045993741601706,-0.0017100182594731,-0.063111983239651],[-0.13094438612461,0.15585471689701,-0.14927841722965],[-0.015703838318586,-0.15200194716454,0.0015109032392502]],[[-0.068388447165489,-0.028323769569397,-0.039247013628483],[-0.064031131565571,0.030452102422714,-0.032675232738256],[0.15947970747948,-0.029021600261331,0.0071947621181607]],[[0.054569337517023,-0.14622877538204,0.065529495477676],[-0.0038291588425636,0.184300750494,0.01845209300518],[-0.0093206744641066,-0.027088837698102,-0.21065990626812]],[[-0.10468941926956,0.099660158157349,-0.090670429170132],[0.042654447257519,0.015607194043696,-0.10003273934126],[0.18711593747139,-0.036163467913866,-0.066896431148052]],[[0.052768997848034,0.059803012758493,-0.16165791451931],[0.14205116033554,-0.065474689006805,-0.1987379938364],[-0.056816227734089,-0.04694315418601,-0.097889952361584]],[[0.044334299862385,-0.075167454779148,-0.032235588878393],[-0.065367616713047,-0.010883217677474,-0.080749660730362],[-0.021772241219878,-0.083147868514061,0.060525521636009]],[[-0.047258511185646,-0.026164198294282,-0.11025387793779],[-0.063783258199692,-0.14511340856552,0.12975338101387],[-0.11925321817398,0.086542129516602,-0.054438881576061]],[[-0.1544982790947,0.10767491906881,0.13990294933319],[0.12020348012447,0.12737490236759,-0.050527662038803],[0.072834827005863,-0.10725473612547,-0.11560069024563]],[[0.11184467375278,0.063726603984833,0.022496372461319],[0.074943892657757,-0.022022571414709,0.12751513719559],[0.10159756988287,0.15901263058186,-0.082373805344105]],[[0.070787824690342,0.069117277860641,0.016433702781796],[-0.094865947961807,0.059447251260281,-0.09491752833128],[-0.07976221293211,-0.065210521221161,-0.010079566389322]],[[0.089797034859657,-0.037199918180704,0.0032822405919433],[0.12798352539539,-0.12994277477264,-0.048375766724348],[-0.07938626408577,-0.13526606559753,0.040502231568098]],[[-0.032147485762835,-0.10220941901207,-0.050272673368454],[-0.087059862911701,0.052017707377672,-0.13056594133377],[0.20401771366596,0.091168746352196,-0.12560914456844]],[[-0.19591854512691,0.000854185258504,0.095614023506641],[0.030140215530992,0.13976135849953,-0.0140286590904],[0.089850150048733,-0.070863537490368,-0.014047863893211]],[[0.11442814022303,0.016816759482026,-0.031096471473575],[0.0035735843703151,0.022054662927985,0.097125671803951],[0.17715512216091,0.013590490445495,-0.0323282815516]],[[-0.0047918395139277,0.13194119930267,0.097220972180367],[-0.076553381979465,-0.075108148157597,0.023894138634205],[-0.081333734095097,-0.012170451693237,-0.095264986157417]],[[0.10062939673662,-0.31449565291405,-0.0462288223207],[-0.065632246434689,-0.17659060657024,0.16619847714901],[-0.11365260928869,-0.1055346429348,-0.011567638255656]],[[-0.096445880830288,-0.14184795320034,-0.10318605601788],[-0.077257804572582,0.011635302565992,-0.058969233185053],[0.096453942358494,0.0052767675369978,-0.087948203086853]],[[-0.03229009360075,0.011233101598918,0.058968521654606],[-0.01147708017379,-0.097443021833897,-0.082568973302841],[0.02710535377264,-0.061752337962389,-0.21998102962971]],[[-0.070720002055168,0.084164448082447,-0.030318334698677],[-0.10656502097845,0.1329128742218,-0.12483455985785],[-0.033274546265602,0.09353756159544,-0.029766926541924]],[[0.063735075294971,0.076272539794445,-0.0083052618429065],[0.18808610737324,-0.0087554985657334,0.049804538488388],[-0.069257989525795,0.014299020171165,-0.081332333385944]],[[0.10971738398075,0.044139545410872,0.053527377545834],[-0.088546641170979,-0.0043839714489877,-0.00078966346336529],[-0.105000436306,-0.12430230528116,-0.19098369777203]],[[-0.10692977160215,-0.011070128530264,-0.0020618150010705],[0.059445913881063,-0.10131154209375,-0.076895609498024],[-0.16698735952377,-0.18236048519611,0.053160469979048]],[[-0.17627103626728,-0.12780460715294,-0.045305397361517],[-0.11974932998419,0.045321062207222,-0.037254851311445],[0.038298785686493,-0.052516020834446,-0.044707391411066]],[[-0.020117811858654,0.067256562411785,-0.10609375685453],[-0.061429906636477,0.092645175755024,-0.18958851695061],[0.17433173954487,-0.065580368041992,-0.058211043477058]],[[0.10617631673813,0.028613202273846,-0.045507483184338],[-0.14254257082939,-0.096680387854576,0.10011848062277],[0.1598336994648,-0.095211632549763,0.099297650158405]],[[0.0020997554529458,-0.16421969234943,0.16699704527855],[0.0049834786914289,0.097659178078175,0.1326446980238],[-0.050316125154495,-0.098173059523106,-0.14082179963589]],[[0.0852275416255,-0.074997298419476,0.027420526370406],[-0.036707419902086,-0.02067843079567,-0.037674680352211],[0.10333318263292,0.0004826896765735,-0.032734349370003]],[[-0.16887310147285,-0.10580863058567,-0.11597690731287],[0.05229764059186,-0.10736358910799,-0.31539642810822],[0.023771146312356,-0.15513496100903,-0.0051192478276789]],[[-0.11590226739645,-0.012720660306513,0.043857548385859],[-0.13408187031746,0.11880202591419,0.11175250262022],[0.20055155456066,0.019536046311259,0.031689643859863]],[[-0.10562275350094,-0.091046296060085,-0.12066270411015],[0.041865609586239,-0.19891476631165,0.041089162230492],[-0.19270159304142,-0.091764472424984,0.11075139045715]],[[-0.0048231012187898,-0.17605900764465,0.051199819892645],[0.12873809039593,-0.10422817617655,-0.12934944033623],[-0.21470257639885,-0.17250888049603,0.040185872465372]],[[0.24646928906441,0.21489037573338,-0.0081706177443266],[0.0074763661250472,0.086459368467331,0.039942439645529],[0.0082533396780491,0.014158508740366,0.021144725382328]],[[0.017001323401928,-0.37029081583023,0.14691753685474],[-0.2466771453619,0.019416691735387,0.094666361808777],[0.075772106647491,0.14616541564465,0.21898673474789]],[[0.011670770123601,0.027069810777903,0.03886578604579],[0.027089569717646,0.071192190051079,0.0097350860014558],[0.032219555228949,-0.11816295981407,0.015820171684027]],[[-0.22026105225086,-0.036148764193058,-0.16849310696125],[-0.087543286383152,-0.052944175899029,0.0017171422950923],[0.0041881669312716,0.05123283714056,-0.096273988485336]],[[-0.12276419997215,0.086531966924667,-0.090562075376511],[0.092595547437668,-0.1742780059576,0.015230284072459],[0.095426574349403,0.052124947309494,-0.078156352043152]],[[-0.16015923023224,0.077809497714043,-0.020379571244121],[-0.19597616791725,0.0077751758508384,-0.0083904275670648],[0.047978453338146,0.10139308124781,0.069939538836479]],[[-0.14453215897083,-0.096345439553261,0.02600116468966],[0.013913137838244,0.1123044937849,0.021375056356192],[0.025652214884758,0.10827904939651,0.020600771531463]],[[0.073422662913799,0.13833793997765,0.10954532027245],[0.069478213787079,0.056942190974951,0.038773469626904],[0.2286840826273,-0.043442830443382,-0.044971462339163]],[[-0.074411697685719,0.072874702513218,0.087930470705032],[0.043592289090157,-0.015652535483241,0.00044475562754087],[0.044578764587641,-0.14569182693958,0.046720415353775]],[[-0.16163021326065,0.060187373310328,-0.12655068933964],[-0.20207659900188,0.21307504177094,-0.093094080686569],[-0.072980061173439,-0.11447105556726,-0.061553750187159]],[[0.083489567041397,0.03115450963378,0.049503326416016],[0.09496646374464,0.0003171791031491,-0.050800494849682],[0.071402989327908,-0.042744196951389,0.0038795766886324]],[[0.24458822607994,0.27907535433769,-0.071616247296333],[0.30690962076187,0.082133330404758,0.017294684424996],[-0.042408477514982,-0.034565627574921,0.15581113100052]],[[-0.036525137722492,0.14450292289257,-0.07448847591877],[-0.13377812504768,-0.027987955138087,0.10235256701708],[0.09301446378231,0.068648055195808,-0.059756495058537]],[[-0.075894445180893,0.066851079463959,0.038007572293282],[0.11016065627337,-0.11561927199364,0.16235268115997],[-0.050190638750792,-0.0013009550748393,0.11638464778662]],[[0.13463272154331,-0.17079405486584,0.10387209802866],[-0.080995425581932,0.03037916123867,0.060236785560846],[0.012808759696782,0.099837593734264,0.0069540129043162]],[[0.0092642363160849,-0.043740998953581,-0.00509985210374],[0.11541604250669,-0.094674155116081,-0.027792647480965],[-0.13758826255798,0.087710991501808,-0.050058182328939]],[[0.021133005619049,0.044768616557121,-0.064791426062584],[-0.057302825152874,-0.015236355364323,0.11653736233711],[0.074641652405262,0.01721578836441,0.18083889782429]],[[-0.0025782864540815,0.092536047101021,-0.11793480813503],[0.046097204089165,-0.07864835858345,0.072370268404484],[-0.053847212344408,0.11568062007427,0.23461480438709]],[[0.048183292150497,-0.0083786845207214,-0.10851957648993],[0.17869699001312,-0.071100771427155,0.030651114881039],[0.098458550870419,-0.016624126583338,-0.029667384922504]],[[0.096949324011803,-0.041171666234732,-0.0063045551069081],[0.039102703332901,0.062816925346851,-0.22352631390095],[0.039357244968414,-0.1851642280817,0.0070103188045323]],[[-0.062618099153042,0.052613470703363,0.25941640138626],[-0.072921924293041,0.40544337034225,0.29265531897545],[0.0023705698549747,0.26765787601471,0.11960162967443]],[[0.07349656522274,-0.080746546387672,-0.086603209376335],[0.25108230113983,-0.029264461249113,-0.090651907026768],[-0.022471500560641,0.022065747529268,-0.18320186436176]],[[0.089070163667202,-0.036654006689787,0.027188682928681],[-0.16636447608471,0.00014703963825013,-0.14019969105721],[-0.054800000041723,0.033697191625834,-0.056426133960485]],[[0.05068052560091,0.050469353795052,-0.015963776037097],[0.048881053924561,-0.076608672738075,-0.063827805221081],[0.028367465361953,-0.034553315490484,0.022389201447368]],[[0.0048099639825523,-0.055126521736383,-0.18871121108532],[-0.015574274584651,0.069329395890236,-0.033499617129564],[-0.095482669770718,-0.030623013153672,-0.057344887405634]],[[-0.0039430479519069,0.036439672112465,0.035453956574202],[0.033009186387062,0.056580051779747,-0.035429455339909],[0.084080249071121,0.0066205835901201,-0.10208485275507]],[[-0.087905891239643,0.056246478110552,0.1330591738224],[-0.19323736429214,-0.21032822132111,-0.11850350350142],[0.035375293344259,-0.040344383567572,0.022524781525135]],[[-0.079544268548489,-0.13238427042961,-0.046873480081558],[-0.19802917540073,-0.079373478889465,0.0022902304772288],[-0.089655093848705,0.17936941981316,0.13185812532902]],[[-0.10469525307417,0.039780810475349,-0.049358163028955],[0.090813115239143,-0.080199979245663,0.065601468086243],[-0.021816095337272,0.013002019375563,-0.13924807310104]],[[0.036871038377285,-0.12820926308632,-0.0074936454184353],[-0.010689659044147,0.064305871725082,0.0027288103010505],[0.13973546028137,-0.096894204616547,0.066920347511768]],[[-0.13125610351562,0.12656764686108,-0.063725091516972],[-0.026851216331124,-0.080759152770042,-0.0046140803024173],[0.10877168178558,-0.098288178443909,0.0061155436560512]],[[0.099548757076263,0.0083360578864813,-0.011545723304152],[0.083595812320709,0.074063986539841,-0.08053195476532],[0.021153073757887,0.0057241604663432,-0.053497921675444]],[[0.13620449602604,-0.0058200350031257,0.14749179780483],[0.051752533763647,0.092065766453743,0.10220517218113],[-0.073545873165131,0.036019954830408,-0.15837758779526]],[[0.13626980781555,-0.062306310981512,0.023826230317354],[0.049626521766186,-0.077271498739719,0.10177020728588],[-0.15073291957378,-0.058438610285521,-0.059020269662142]],[[0.11513870209455,-0.066061295568943,-0.0026478036306798],[0.11311694979668,-0.087838999927044,-0.087397530674934],[-0.14208355545998,-0.080775506794453,-0.1097778826952]],[[0.11071994155645,-0.045027703046799,0.024642398580909],[-0.039093568921089,-0.025666603818536,-0.040975011885166],[-0.078132003545761,0.0070927003398538,0.0095653459429741]],[[0.030446901917458,0.11843115091324,0.0490044914186],[0.070761948823929,-0.0017464620759711,-0.11581843346357],[0.05123533308506,-0.14709195494652,-0.069415912032127]],[[-0.031057991087437,-0.10388493537903,-0.016180278733373],[-0.046286467462778,-0.16029374301434,0.018399553373456],[-0.10413385182619,-0.0020503257401288,-0.0055820746347308]],[[0.07724441587925,0.031598545610905,0.011312277056277],[0.029798146337271,-0.0026254917029291,-0.016944151371717],[-0.023715753108263,0.0098680723458529,-0.067504897713661]],[[0.10990799963474,0.014209835790098,-0.075603350996971],[0.0082713318988681,-0.20118115842342,-0.0052242698147893],[-0.083162300288677,-0.11394129693508,0.020107274875045]],[[0.02424380928278,0.11847496032715,-0.023264510557055],[0.010791818611324,-0.10630103200674,0.088585510849953],[-0.01951576769352,-0.0012333907652646,-3.7640467780875e-05]],[[-0.057592831552029,-0.15946757793427,0.061631698161364],[-0.097094349563122,0.020314697176218,0.0069882497191429],[0.078846588730812,-0.030716272071004,0.056029725819826]],[[-0.039294701069593,0.04217641428113,-0.0030226206872612],[0.022050201892853,-0.0072999196127057,0.0021256424952298],[-0.0039227670058608,-0.034911628812551,0.0019601311068982]],[[0.11788167059422,-0.10441987961531,0.004317260812968],[-0.12513728439808,0.083035476505756,-0.16641296446323],[0.1301608979702,0.01356534846127,-0.025235552340746]],[[0.08572293817997,0.21604208648205,0.11373890936375],[0.28975322842598,0.19190706312656,0.067944161593914],[0.11306166648865,0.046815298497677,0.11610939353704]],[[0.14149810373783,-0.017055971547961,0.088693179190159],[0.077409781515598,0.042935892939568,-0.13156563043594],[-0.063816040754318,-0.039892304688692,-0.067586086690426]],[[-0.031027561053634,-0.049298044294119,0.078364051878452],[-0.038977712392807,-0.089856505393982,-0.0073731085285544],[0.046463824808598,-0.038266062736511,0.08300993591547]],[[0.047352880239487,0.073701679706573,0.060166824609041],[-0.16025695204735,0.0055299429222941,0.032799869775772],[-0.1026996076107,-0.084089055657387,0.048471048474312]],[[0.15454308688641,-0.027394328266382,0.0094440970569849],[-0.1218890324235,-0.071290731430054,0.0032844175584614],[0.073285795748234,-0.063551291823387,0.026296066120267]],[[-0.068411596119404,0.0031892792321742,0.022571666166186],[-0.0016981430817395,-0.029041573405266,-0.067445203661919],[0.023422315716743,0.040770467370749,0.00080114573938772]],[[-0.12069058418274,-0.28749287128448,0.02678058296442],[-0.21213330328465,-0.10793600976467,0.015944894403219],[-0.26613366603851,-0.097245998680592,-0.16568453609943]],[[-0.065774783492088,-0.0088616432622075,0.0087575437501073],[-0.056149043142796,-0.11523018032312,0.040318123996258],[-0.085704505443573,-0.014997415244579,-0.037635546177626]],[[0.096447609364986,-0.29994109272957,-0.0062988521531224],[-0.22644558548927,0.034405265003443,0.023566946387291],[0.14893968403339,0.099587813019753,-0.017324093729258]],[[0.010528019629419,-0.023794071748853,0.13710080087185],[-0.1136529520154,-0.046741843223572,0.10241274535656],[-0.16996859014034,0.04544785246253,0.087913408875465]],[[0.012892797589302,0.10385344177485,0.042680233716965],[0.052279129624367,-0.075904577970505,-0.093068137764931],[-0.00080121273640543,0.029192557558417,-0.0034423733595759]],[[0.09510151296854,0.0057454002089798,-0.013897933997214],[-0.041976440697908,0.0053376168943942,0.060301795601845],[0.020297011360526,0.13146536052227,0.0019701728597283]],[[0.091669850051403,-0.10085322707891,0.20886912941933],[-0.11113733798265,0.085652515292168,0.33228522539139],[0.081110589206219,0.37055486440659,0.19718132913113]]],[[[-0.015248892828822,-0.016581004485488,-0.014720235951245],[-0.0015503915492445,-0.0073573016561568,0.029472012072802],[0.0095236906781793,-0.029398212209344,-0.025998355820775]],[[0.034245107322931,0.0086042089387774,0.010412351228297],[0.021148255094886,-0.016559541225433,0.009508615359664],[-0.086132451891899,0.033264633268118,0.034848179668188]],[[0.030139192938805,-0.022192247211933,0.012964216992259],[0.093830898404121,0.0080218371003866,0.030242530629039],[0.057352006435394,-0.021896306425333,0.096122577786446]],[[-0.022435108199716,-0.034528769552708,-0.024414097890258],[0.059723749756813,-0.011458562687039,0.036284767091274],[0.051559697836637,0.00076121027814224,-0.02342838421464]],[[0.024677040055394,0.017025802284479,-0.036411114037037],[-0.0063970498740673,-0.071232706308365,0.0097234910354018],[0.011760026216507,-0.068277657032013,-0.097316525876522]],[[-0.0048398142680526,0.091608062386513,0.03803438693285],[0.073303014039993,0.04860857501626,0.012058070860803],[0.0011569086927921,-0.016767943277955,0.057482946664095]],[[-0.020832849666476,0.046089090406895,0.013501174747944],[-0.011459415778518,-0.028372017666698,0.018500836566091],[-0.071173638105392,-0.013806545175612,-0.0076537309214473]],[[0.046994376927614,0.011763382703066,-0.015712337568402],[-0.023931281641126,0.0058795958757401,0.030349854379892],[-0.017662368714809,-0.051523890346289,-0.041697230190039]],[[-0.023844806477427,0.0043835085816681,0.0144919520244],[-0.0095318695530295,0.021479224786162,-0.038894318044186],[8.0208541476168e-05,0.012659476138651,-0.013188557699323]],[[0.059924483299255,0.13043794035912,-0.024422589689493],[0.048095967620611,0.020038720220327,0.19653460383415],[0.054925665259361,-0.0090480484068394,0.00065551395528018]],[[-0.053643956780434,-0.012147945351899,0.085067361593246],[-0.0092413676902652,0.065783903002739,0.019731378182769],[0.085032418370247,-0.035930700600147,0.032039541751146]],[[0.016681954264641,0.035960178822279,0.0090538961812854],[0.031385269016027,-0.085681192576885,0.045029729604721],[0.051981452852488,0.027206227183342,0.01155480183661]],[[0.042530834674835,0.0090377405285835,0.055110044777393],[-0.0028047708328813,-0.034740518778563,0.040168195962906],[0.059739295393229,-0.061696480959654,-0.027883231639862]],[[0.05669878423214,-0.033423744142056,0.089210525155067],[0.052399154752493,0.068197302520275,-0.049941252917051],[0.0040486054494977,-0.0087122200056911,0.021166697144508]],[[0.06305792927742,-0.0060260579921305,0.075874514877796],[0.083180569112301,-0.0090774418786168,0.035122346132994],[0.030942460522056,0.19756998121738,0.13449846208096]],[[-0.04829777777195,-0.016979120671749,-0.023693898692727],[-0.0077926996164024,-0.03783181682229,-0.036825943738222],[-0.075528167188168,0.04461457207799,-0.056052602827549]],[[0.026267264038324,-0.0020810181740671,0.026950482279062],[0.010406767949462,0.035851497203112,0.051186788827181],[-0.016775384545326,0.010915015824139,-0.011293566785753]],[[0.029396647587419,0.062633164227009,-0.029840651899576],[-0.04004493355751,0.04444782808423,0.081075146794319],[-0.093390427529812,-0.10506766289473,0.001553957699798]],[[-0.071100130677223,0.077503100037575,-0.047461688518524],[-0.063311755657196,-0.039518427103758,0.065866991877556],[0.00032737874425948,0.032792877405882,-0.054650813341141]],[[0.025867339223623,-0.040327899158001,-0.010394035838544],[0.065728306770325,-0.0014753715367988,0.13399662077427],[0.061239659786224,0.0419677272439,-0.0090764937922359]],[[0.0040789814665914,0.041694235056639,0.093081802129745],[-0.0035885372199118,-0.08725979924202,-0.033392559736967],[-0.042127911001444,0.040745198726654,0.017461150884628]],[[0.068961568176746,0.063040755689144,-0.033902622759342],[0.010190343484282,0.082169398665428,0.059937778860331],[0.10766010731459,0.057149600237608,-0.018051091581583]],[[0.034170761704445,0.052164673805237,0.003255620598793],[-0.031959969550371,-0.02711764164269,-0.029814060777426],[0.065924651920795,-0.044796299189329,0.014303393661976]],[[0.011644614860415,-0.066043980419636,0.091433860361576],[0.0040103374049067,-0.051106285303831,0.020931167528033],[-0.081020772457123,-0.024921879172325,0.046913184225559]],[[0.036628425121307,0.0611976608634,0.082153759896755],[0.0023451803717762,0.045901969075203,0.0074731889180839],[-0.063090942800045,0.012080122716725,0.031303849071264]],[[0.023797880858183,-0.083918318152428,0.0074031609110534],[0.071777112782001,0.038955844938755,0.031144872307777],[-0.027934120967984,-0.019251830875874,-0.04621073231101]],[[-0.040944620966911,-0.014711195603013,0.0046458449214697],[-0.02151651866734,0.011776391416788,0.047870703041553],[0.11002287268639,0.053324718028307,0.11893446743488]],[[-0.085145175457001,-0.037427704781294,-0.0039417580701411],[-0.024668546393514,-0.091658562421799,0.080875054001808],[0.033584598451853,0.058604806661606,-0.075943566858768]],[[-0.10195522010326,-0.038606483489275,0.029454376548529],[0.0015590816037729,0.031424392014742,0.075010672211647],[-0.035718116909266,0.018548851832747,0.0070216287858784]],[[0.010800140909851,0.031816188246012,0.042753744870424],[0.0004192347987555,0.076264597475529,-0.0069926818832755],[0.070859931409359,0.010064320638776,-0.011304098181427]],[[0.0023808286059648,-0.068117693066597,0.028757657855749],[0.057978600263596,0.080513492226601,0.066717252135277],[0.016655899584293,5.6572214816697e-05,0.039758909493685]],[[-0.0039140884764493,-0.062831118702888,0.036490444093943],[-0.077351070940495,-0.051131810992956,0.017918298020959],[-0.01757007278502,-0.026243658736348,0.020646534860134]],[[0.015333190560341,0.010818212293088,0.072704918682575],[0.016173666343093,-0.043303836137056,0.083727583289146],[-0.0051857749931514,0.071769401431084,-0.0043334350921214]],[[0.045395974069834,-0.022534601390362,-0.015379752963781],[-0.022993417456746,0.029688386246562,0.038192041218281],[0.068914361298084,0.0017302479827777,-0.023091537877917]],[[0.01494643650949,0.0057904627174139,0.0035313826519996],[-0.018515979871154,0.0067103705368936,-0.020772140473127],[0.009466708637774,-0.022480763494968,-0.034424211829901]],[[-0.011624297127128,0.034561943262815,-0.0061740488745272],[-0.023856787011027,-0.07483184337616,-0.0079077454283834],[-0.015983678400517,-0.03984073549509,-0.075068973004818]],[[0.069311037659645,-0.046470608562231,0.018441369757056],[-0.010008569806814,-0.020537266507745,-0.081138111650944],[-0.088526539504528,-0.021763106808066,-0.036766711622477]],[[0.052750688046217,-0.0085269771516323,0.0092566953971982],[-0.041500899940729,0.073317140340805,-0.046707548201084],[-0.0091103995218873,0.11883749067783,0.025403397157788]],[[0.03217176347971,0.031603656709194,0.026421805843711],[0.019023535773158,0.035948373377323,0.0094150751829147],[0.017367845401168,0.05182821303606,-0.13217444717884]],[[-0.024685183539987,0.034374736249447,0.066056452691555],[-0.041427474468946,0.0090187909081578,0.0089547168463469],[0.043198831379414,0.034685246646404,-0.10854081064463]],[[0.01444492302835,-0.0077521833591163,0.013410740531981],[0.0038378543686122,0.018117625266314,-0.033264853060246],[0.00083401933079585,0.0058667762205005,0.067001886665821]],[[-0.047795500606298,0.028580939397216,-0.015185687690973],[0.0043294448405504,0.036788634955883,0.015734631568193],[-0.033352289348841,0.037585567682981,0.015651738271117]],[[0.04675717651844,0.0041834926232696,-0.0087621556594968],[0.034915808588266,0.024708418175578,0.032956246286631],[0.038139186799526,0.032137334346771,-0.012403035536408]],[[0.037108216434717,0.012714182958007,0.049047093838453],[0.065259404480457,0.0041888752020895,0.049687597900629],[0.066112875938416,0.039317090064287,-0.049653399735689]],[[0.038773730397224,0.025170620530844,0.031636532396078],[0.037823174148798,0.076659359037876,0.0040697511285543],[-0.048312250524759,-0.015622072853148,-0.0049474169500172]],[[0.025655152276158,0.081739619374275,0.031578462570906],[-0.0539376065135,0.015683835372329,0.023617926985025],[0.096252799034119,-0.0046940287575126,-0.032478921115398]],[[0.043837260454893,0.037998404353857,0.053407277911901],[-0.031183529645205,-0.0065956949256361,0.015551837161183],[0.081219904124737,0.045583087950945,-0.013047835789621]],[[-0.015809224918485,0.024969942867756,0.046213466674089],[-0.01760127581656,0.01682741753757,0.031892657279968],[0.090567842125893,-0.0022650940809399,-0.043121490627527]],[[0.022457683458924,0.067970655858517,-0.023650234565139],[0.02864164672792,0.0079362327232957,-0.078273624181747],[0.12950499355793,0.095806926488876,-0.036419074982405]],[[0.034804061055183,0.031949438154697,0.0078201089054346],[-0.019734047353268,-0.0050717131234705,0.021099921315908],[0.050384774804115,-0.088312387466431,0.023815453052521]],[[0.0037182818632573,0.057444971054792,-0.010497520677745],[-0.032653633505106,0.072187371551991,0.0061554205603898],[0.0080618634819984,-0.020177504047751,-0.038370013237]],[[0.015560768544674,-0.042768660932779,0.0077774059027433],[0.054368443787098,-0.027666434645653,0.024079078808427],[-0.10427262634039,-0.046654332429171,-0.01222731359303]],[[0.011002507060766,0.057582147419453,-0.11269553750753],[0.062464784830809,-0.055603731423616,-0.065104767680168],[-0.05076827481389,0.019722830504179,-0.02069578319788]],[[0.050788301974535,0.049402594566345,0.031156454235315],[-0.04507065936923,0.086587458848953,0.087446480989456],[0.0034070829860866,-0.056328065693378,-0.041868571192026]],[[0.019983612000942,0.02904205955565,0.016455717384815],[-0.027817217633128,0.00028257639496587,-0.024978311732411],[0.010679959319532,-0.011258239857852,0.041118487715721]],[[0.040724042803049,-0.037109788507223,0.018739838153124],[-0.048236906528473,0.048547185957432,-0.038984745740891],[0.043192092329264,-0.028117353096604,-0.040601335465908]],[[-0.010224132798612,0.022825902327895,-0.040712624788284],[0.063759543001652,0.005588389467448,0.0084931561723351],[-0.030875599011779,-0.046220973134041,-0.035500969737768]],[[-0.056356381624937,-0.025492697954178,-0.0070332316681743],[0.0091824000701308,0.022406103089452,0.0040022484026849],[0.040007926523685,-0.054415136575699,0.059250980615616]],[[0.04942848533392,-0.0052822330035269,0.060899585485458],[0.086303219199181,-0.0076337857171893,-0.033810142427683],[0.038899950683117,-0.061278328299522,0.057880770415068]],[[-0.025731174275279,0.018961943686008,-0.055124592036009],[-0.034231342375278,-0.0096524516120553,-0.00055587862152606],[0.003063315525651,-0.011475381441414,-0.049868766218424]],[[0.054024029523134,-0.0049152984283864,0.0096496846526861],[-0.025609098374844,0.098652139306068,0.01738703623414],[-0.018887422978878,-0.038936860859394,-0.033701382577419]],[[-0.011851930059493,-0.046892657876015,0.033528309315443],[0.033616829663515,0.0059049734845757,0.026173312216997],[0.058423988521099,-0.02738787792623,-0.0066040861420333]],[[-0.053094711154699,0.0032678786665201,-0.067969523370266],[0.044725216925144,0.013272238895297,-0.038092661648989],[-0.063880808651447,-0.020234029740095,0.0063084932044148]],[[-0.03212109580636,0.095453135669231,0.016717199236155],[0.022459235042334,0.023525677621365,-0.0069440342485905],[0.045935600996017,0.0044645369052887,0.025918221101165]],[[0.012586576864123,0.078283779323101,0.007770165335387],[0.042282056063414,-0.015774948522449,-0.040197595953941],[0.065605320036411,-0.0061721717938781,0.061421275138855]],[[-0.022841081023216,-0.035519763827324,-0.092257969081402],[0.041970230638981,-0.0095055587589741,-0.016268409788609],[0.025209583342075,-0.043589197099209,-0.024164900183678]],[[0.055525500327349,0.0046278308145702,0.028887012973428],[0.024130020290613,0.020099781453609,0.076985985040665],[0.02971214056015,-0.048253640532494,0.014736372977495]],[[0.0022954989690334,0.0086456164717674,-0.038479417562485],[0.00064460927387699,-0.033689796924591,0.051541648805141],[0.052812974900007,0.037387225776911,-0.002847105730325]],[[0.0084323259070516,-0.03044475056231,0.038394287228584],[-0.012993043288589,0.047616817057133,0.014691676944494],[0.058926373720169,-0.058055218309164,0.00060251308605075]],[[0.044782750308514,0.08264197409153,-0.052039697766304],[0.048433508723974,0.018315700814128,0.10878521203995],[-0.035356681793928,0.0469502620399,0.011676502414048]],[[-0.009514351375401,0.036563340574503,-0.055746383965015],[-0.064035594463348,0.02739042788744,-0.022059518843889],[-0.023672265931964,-0.019066279754043,0.015524799004197]],[[-0.0015636110911146,-0.019621970131993,0.046903997659683],[-0.013068525120616,0.04946057498455,-0.011140206828713],[0.015960587188601,0.13575913012028,-0.10959117859602]],[[0.0030704294331372,0.07830748707056,0.022736482322216],[-0.010822250507772,0.035317908972502,0.059640266001225],[-0.071788117289543,-0.013502392917871,0.058232545852661]],[[-0.002163635334,-0.0079792523756623,-0.006492983084172],[0.09375074505806,0.035196039825678,0.069840483367443],[0.055468738079071,-0.0080544715747237,-0.048695728182793]],[[-0.0058429893106222,-0.021015735343099,0.088514231145382],[0.0094446344301105,0.021312974393368,-0.039567109197378],[-0.045296713709831,-0.010669889859855,-0.00059360067825764]],[[0.013984908349812,0.0064839031547308,0.010967295616865],[-0.0022340205032378,-0.033536557108164,-0.025356311351061],[0.010965905152261,-0.019442476332188,-0.01495401468128]],[[0.0099227549508214,0.10285665094852,-0.006307911593467],[-0.0098359091207385,0.002740002470091,0.012869431637228],[-0.012614331208169,0.0073551200330257,0.02147351205349]],[[0.039425317198038,-0.021472409367561,0.010009192861617],[-0.046229984611273,-0.027909860014915,-0.017920129001141],[0.062506228685379,0.040485143661499,0.032064814120531]],[[0.01485122833401,0.0085767488926649,0.050002217292786],[0.018119363114238,-0.035759933292866,0.072844937443733],[0.028327139094472,-0.069950334727764,0.063232228159904]],[[0.010330123826861,-0.034315902739763,0.04111248627305],[-0.049933284521103,0.043848905712366,0.037016727030277],[-0.066315941512585,-0.066806994378567,-0.047493349760771]],[[-0.0053018922917545,0.0053498460911214,0.02894388884306],[0.036587558686733,0.025673938915133,0.07816219329834],[-0.021986538544297,0.034683231264353,-0.0096091739833355]],[[-0.067306011915207,-0.035924587398767,0.024205170571804],[-0.10531831532717,-0.01588668115437,-0.02530231140554],[-0.059888232499361,-0.028096167370677,0.045459795743227]],[[-0.020439464598894,-0.034942086786032,-0.014585991390049],[-0.060423564165831,-0.13932326436043,0.016973646357656],[-0.033017355948687,0.013028125278652,-0.027538653463125]],[[-0.019652765244246,-0.011549231596291,-0.035626038908958],[-0.079004384577274,0.040783073753119,0.029217774048448],[-0.071865305304527,-0.04429454356432,-0.064971290528774]],[[0.013989527709782,-0.0029205933678895,0.052230600267649],[0.0066137178801,0.010681961663067,0.030727436766028],[-0.017569869756699,0.04883037507534,-0.005838121753186]],[[-0.023008521646261,-0.046857886016369,-0.021335747092962],[-0.032796669751406,0.050795022398233,-0.0035001302603632],[-0.078198425471783,-0.0069252089597285,-0.09101552516222]],[[0.082743160426617,-0.023110944777727,0.021934632211924],[-0.072155125439167,-0.017783815041184,0.00034537629107945],[-0.026153925806284,0.061314709484577,0.039736669510603]],[[0.024512097239494,-0.020410481840372,0.052314125001431],[-0.06071313098073,-0.00082798930816352,0.059932731091976],[0.087651804089546,-0.019950641319156,0.0061352872289717]],[[0.074799530208111,0.016087274998426,-0.042977269738913],[0.003259422024712,-0.0063806008547544,0.041497897356749],[-0.033793218433857,0.056907687336206,0.076682008802891]],[[0.014842464588583,-0.014840063638985,-0.045109059661627],[-0.0035694041289389,0.033247012645006,-0.0087268818169832],[-0.025489760562778,0.024408401921391,0.03629332408309]],[[0.037804123014212,-0.012996687553823,0.056345228105783],[-0.021314308047295,-0.025145461782813,-0.053951412439346],[-0.025000119581819,0.00023464972036891,-0.038960222154856]],[[0.046060815453529,-0.011654475703835,-0.066133618354797],[-0.013426839374006,0.02894520573318,-0.04391149058938],[-0.0093800257891417,0.028360398486257,-0.0063384789973497]],[[-0.038507491350174,0.026225589215755,0.016593892127275],[-0.008201302960515,0.042135830968618,-0.029243167489767],[0.037972342222929,0.055018275976181,0.0013758740387857]],[[0.036869712173939,-0.037940159440041,0.021877944469452],[0.041963089257479,-0.0040012486279011,-0.0062495302408934],[-0.040792025625706,-0.034899223595858,0.06818114221096]],[[-0.044606436043978,0.043926224112511,-0.086148537695408],[-0.01063297688961,-0.054470516741276,0.039308525621891],[-0.026364544406533,0.12826097011566,-0.056315265595913]],[[-0.038096163421869,-0.079048559069633,0.019650176167488],[-0.064399242401123,0.021910931915045,-0.021466448903084],[-0.070500150322914,-0.11131194233894,-0.036176178604364]],[[-0.04029830172658,0.054088346660137,0.039595805108547],[0.034169845283031,-0.0025039361789823,-0.040227714926004],[0.020483860746026,0.0035578669048846,0.0021044400054961]],[[0.033817291259766,0.0069295922294259,0.014535043388605],[-0.024137491360307,0.0023995994124562,-0.0083715450018644],[0.042248405516148,0.11669734865427,0.028111482039094]],[[0.049252398312092,-0.0025295671075583,0.040509905666113],[0.092640615999699,-0.022700412198901,-0.012729013338685],[0.012093658559024,0.047408763319254,-0.014062270522118]],[[-0.048583302646875,-0.010685527697206,0.058357931673527],[0.035640180110931,-0.085308089852333,-0.021638294681907],[-0.011098480783403,-0.07638643682003,0.02441187761724]],[[0.015818100422621,0.045549165457487,-0.020126648247242],[-0.034848146140575,-0.071287281811237,-0.036356963217258],[-0.013256065547466,-0.042428057640791,0.023067608475685]],[[0.0032141534611583,0.098198257386684,0.048337530344725],[0.083615012466908,-0.046746402978897,0.10539496690035],[-0.0064509259536862,0.091258220374584,0.13136138021946]],[[0.042672354727983,-0.020286045968533,0.096381634473801],[0.0015178943285719,-0.026861596852541,0.023958038538694],[0.037824351340532,-0.039928194135427,0.030569138005376]],[[-0.031919151544571,-0.024700924754143,0.0040942365303636],[0.03836889192462,-0.011444130912423,-0.070619277656078],[-0.010831046849489,0.092972569167614,-0.060312137007713]],[[0.011075804941356,-0.015380619093776,0.015823308378458],[-0.057030607014894,-0.011229684576392,-0.015819735825062],[-0.0061231683939695,0.085159651935101,0.016496673226357]],[[-0.061778396368027,0.0490409322083,-0.0062589053995907],[-0.055776864290237,0.035320673137903,-0.031194679439068],[-0.020272549241781,0.036654826253653,0.035613145679235]],[[0.04526386782527,-0.024083806201816,0.11417967826128],[-0.0052219103090465,-0.018790949136019,-0.068554759025574],[0.10322638601065,-0.052906036376953,-0.010046537965536]],[[-0.07077669352293,0.012016454711556,-0.093908570706844],[-0.00951355881989,0.0010064101079479,-0.019751887768507],[0.019456282258034,0.019678052514791,-0.017593428492546]],[[0.026709208264947,0.072396524250507,0.010419726371765],[-0.060278408229351,0.012626891024411,0.019740756601095],[0.10764896869659,0.041392229497433,0.092650376260281]],[[-0.01923805102706,0.077542960643768,-0.0080444263294339],[0.01292537804693,0.074586249887943,-0.012292618863285],[0.035682927817106,-0.019091762602329,-0.041295632719994]],[[0.097282752394676,-0.029045056551695,-0.12948167324066],[-0.067923478782177,-0.0080256862565875,-0.014262914657593],[-0.02097650244832,0.074717335402966,0.0096580479294062]],[[-0.029514396563172,-0.022041257470846,-0.019011929631233],[-0.043183021247387,-0.040618769824505,0.010938292369246],[-0.035602021962404,0.02875542268157,-0.068182431161404]],[[0.053228579461575,-0.040649123489857,-0.059914987534285],[-0.057192254811525,0.0043342779390514,0.0098778875544667],[-0.0094055766239762,0.043876845389605,0.043646581470966]],[[-0.084451153874397,0.0043905908241868,0.10221569985151],[-0.035488799214363,-0.0080788861960173,-0.012677618302405],[-0.0090065617114305,-0.068663835525513,-0.06441430747509]],[[-0.031849656254053,-0.013823146931827,-0.037418682128191],[0.0019166062120348,-0.0029666682239622,0.028336346149445],[0.020090103149414,0.01842207275331,-0.060381390154362]],[[-0.02096232585609,0.019928283989429,-0.0077993008308113],[-0.027852805331349,-0.022818451747298,0.067591339349747],[-0.00077178853098303,0.046417292207479,0.030465928837657]],[[-0.025176901370287,0.040998425334692,-0.044231716543436],[-0.0096284030005336,0.023695960640907,0.048192817717791],[0.012109075672925,0.1248886808753,-0.00026576372329146]],[[0.09143777936697,0.036860808730125,-0.019305290654302],[0.037944972515106,-0.0079655600711703,-0.013210901990533],[-0.018835773691535,0.0023943446576595,0.0082274051383138]],[[0.045467302203178,0.00035588716855273,0.034269236028194],[-0.081511996686459,-0.0077590188011527,2.7075242542196e-05],[1.192244781123e-05,0.041041675955057,0.08449874818325]],[[-0.047796286642551,0.024640554562211,-0.0073589151725173],[-0.0041596754454076,-0.062712624669075,-0.078913748264313],[0.034275934100151,0.037104543298483,-0.012444129213691]],[[0.022142520174384,0.065540730953217,0.064640633761883],[-0.052273310720921,0.025559028610587,0.074332736432552],[-0.080116681754589,-0.038600347936153,-0.062829412519932]],[[0.013376425020397,0.039444200694561,-0.016231283545494],[-0.012194322422147,-0.028835104778409,0.02461046166718],[0.013354275375605,0.061691947281361,-0.012486414052546]],[[-0.027715776115656,-0.0078289899975061,0.034382171928883],[-0.039191834628582,0.0010551229352131,-0.0036290951538831],[0.017205702140927,-0.015775544568896,0.0089767593890429]],[[0.085504911839962,-0.0040146489627659,0.055352184921503],[0.093694150447845,-0.062666662037373,-0.025719285011292],[0.031104892492294,-0.063097149133682,-0.062843918800354]],[[-0.038876634091139,-0.0075678508728743,0.012764094397426],[-0.051581911742687,0.087813839316368,-0.049295987933874],[0.042451173067093,0.01633875630796,0.0022939119953662]],[[-0.053162150084972,0.050337515771389,0.057271216064692],[0.022812934592366,0.059529006481171,0.041466943919659],[0.06681689620018,0.056305158883333,-0.05554560944438]],[[-0.020413203164935,0.010497354902327,0.10133871436119],[-0.0018844886217266,0.038267288357019,0.064075447618961],[-0.087870456278324,0.025899820029736,0.00012320726818871]],[[0.0082019735127687,0.051731962710619,0.015179881826043],[-0.0049918359145522,0.034789193421602,0.031100505962968],[0.017180364578962,0.043299585580826,-0.00082032551290467]]],[[[0.019976206123829,0.11166687309742,-0.015633152797818],[-0.035941991955042,0.041328310966492,0.048716031014919],[0.010391594842076,0.033176060765982,0.017470698803663]],[[-0.12389813363552,-0.061078108847141,0.034729387611151],[0.024077890440822,0.026982240378857,-0.0089123444631696],[-0.010293047875166,0.092108659446239,-0.0072081461548805]],[[0.069096282124519,0.011273163370788,0.13859789073467],[-0.020789200440049,0.049283292144537,0.017554214224219],[0.012181519530714,0.043716467916965,0.014430861920118]],[[-0.029798720031977,0.080865107476711,0.047595851123333],[0.10546727478504,-0.021956400945783,-0.011071732267737],[-0.019394790753722,-0.041083250194788,0.025540882721543]],[[0.037131085991859,0.034924473613501,0.09833101183176],[-0.005974417552352,-0.042050089687109,0.033913690596819],[-0.044793400913477,0.065052889287472,-0.0056034484878182]],[[0.037730924785137,0.11311231553555,-0.022370720282197],[0.050983589142561,0.038893032819033,-0.010307867079973],[0.035657186061144,0.066814534366131,0.040142089128494]],[[0.077084884047508,0.038927718997002,0.042519580572844],[-0.0013158875517547,-0.017766695469618,0.051612269133329],[0.099196650087833,0.056829802691936,-0.036335878074169]],[[-0.019565105438232,0.0047708679921925,0.028419787064195],[0.0022736813407391,0.057724017649889,-0.05762005969882],[0.045869201421738,0.037310227751732,-0.029151314869523]],[[0.018458496779203,-0.011554727330804,-0.025421900674701],[0.10505417734385,0.13886818289757,0.034008525311947],[-0.015329371206462,-0.024012677371502,-0.01814323477447]],[[0.08285491168499,-0.017500407993793,0.063363328576088],[-0.10261581838131,0.034635972231627,-0.013449349440634],[-0.081650152802467,-0.0120290806517,0.0028478244785219]],[[-0.044372119009495,0.052936919033527,0.063199408352375],[0.042812470346689,0.074389562010765,0.035699732601643],[-0.019199309870601,0.02994124405086,0.056004554033279]],[[0.049990188330412,0.012181954458356,0.082286305725574],[-0.0067422860302031,0.018086992204189,0.067088775336742],[0.12543614208698,0.093600459396839,-0.069042861461639]],[[-0.048613350838423,0.1144033074379,-0.033251877874136],[0.0017980674747378,-0.071303993463516,0.054437547922134],[0.056186016649008,0.0045643299818039,-0.044467825442553]],[[-0.090595699846745,0.10091277956963,0.053616832941771],[-0.030093556270003,-0.075662299990654,0.038096196949482],[0.013959714211524,0.022130588069558,-0.033942367881536]],[[0.052639450877905,-0.011759853921831,0.14617764949799],[0.10498276352882,0.047734431922436,0.065812833607197],[0.11752227693796,0.027306314557791,-0.015995098277926]],[[-0.015184969641268,0.029978681355715,0.016688212752342],[-0.0036694922018796,-0.048732418566942,0.017707448452711],[-0.045968860387802,-0.079004541039467,-0.0079460013657808]],[[-0.04037456586957,0.024490892887115,-0.017405545338988],[0.076361149549484,0.029387643560767,0.025646535679698],[-0.052371595054865,0.025175930932164,0.021112946793437]],[[0.095415003597736,0.0034237990621477,-0.01911816559732],[-0.00032795305014588,0.033969841897488,-0.061123598366976],[-0.092429794371128,-0.025592131540179,-0.059152022004128]],[[0.034722395241261,-0.059110779315233,0.0015308404108509],[-0.024635763838887,-0.011066297069192,-0.0027528186328709],[-0.018572783097625,-0.038192369043827,-0.015688823536038]],[[0.026137141510844,-0.0042397323995829,0.051741112023592],[-0.019456287845969,0.036555804312229,0.015756135806441],[0.073919519782066,0.051682971417904,0.13433542847633]],[[-0.051640208810568,0.08192278444767,0.0066031850874424],[0.064147621393204,0.11818769574165,0.031234765425324],[0.015290290117264,-0.013036209158599,-0.067299276590347]],[[-0.07060668617487,0.0026498890947551,0.017540751025081],[-0.021814115345478,0.06974121928215,0.062378030270338],[0.015385585837066,-0.006889384239912,0.011095252819359]],[[0.06537003070116,0.068278439342976,0.092516787350178],[0.056801650673151,0.063489958643913,-0.045460227876902],[-0.049422584474087,-0.042607940733433,0.0092664510011673]],[[-0.054545290768147,-0.013597312383354,0.028584305197001],[0.044345207512379,-0.014917699620128,-0.022581910714507],[-0.06476879119873,-0.058725170791149,-0.009653358720243]],[[0.022612597793341,0.0014177324483171,0.051287356764078],[-0.0001732340460876,0.028160836547613,0.075909614562988],[-0.015391263179481,0.041303969919682,-0.0064246249385178]],[[0.019553093239665,-0.059400252997875,-0.045636039227247],[0.027198417112231,0.0035910750739276,0.050033438950777],[-0.033992830663919,-0.026488203555346,-0.039625104516745]],[[0.018603233620524,-0.0010677070822567,0.055846560746431],[0.022327795624733,0.068952783942223,0.017132442444563],[0.042320154607296,-0.0096204746514559,0.080347873270512]],[[-0.025341702625155,-0.062560297548771,0.042650319635868],[-0.011848935857415,-0.05417700111866,-0.018173152580857],[-0.0018410433549434,-0.0057182935997844,-0.020636238157749]],[[0.040744490921497,0.0037253019399941,0.15421159565449],[0.038089971989393,0.058341193944216,-0.024435264989734],[0.077958285808563,0.026567814871669,-0.014540795236826]],[[0.025310738012195,0.034613523632288,0.034788321703672],[-0.051209919154644,-0.064134657382965,0.020135778933764],[-0.023404818028212,0.029740713536739,-0.031294468790293]],[[-0.037691760808229,0.042201545089483,0.013644555583596],[0.0036831949837506,0.00019521870126482,0.00026525097200647],[0.048612922430038,0.084314353764057,-0.067067503929138]],[[0.025459282100201,-0.00030199220054783,0.0099210338667035],[0.052194360643625,0.024239644408226,-0.017784098163247],[0.052072681486607,-0.00438844691962,0.043563660234213]],[[0.022787842899561,0.072824887931347,0.067058004438877],[0.0055250716395676,0.019156346097589,-0.012552537955344],[0.11680361628532,0.011744743213058,-0.0018252519657835]],[[0.021027697250247,-0.044839765876532,0.031540457159281],[-0.040532987564802,0.00046160141937435,0.079524338245392],[0.0096474615857005,0.010025214403868,0.043607797473669]],[[0.065934427082539,0.032242845743895,0.04993836209178],[-0.028029248118401,-0.10115756094456,-0.0011214058613405],[0.089872404932976,0.11844626814127,0.015392656438053]],[[0.0095283892005682,0.041312947869301,-0.013554917648435],[0.038924690335989,-0.0092326607555151,0.043329659849405],[-0.016677044332027,0.0098005374893546,-0.045528285205364]],[[0.035356942564249,-0.013061844743788,-0.06245032697916],[-0.017897918820381,0.013701336458325,0.028726123273373],[0.0040241722017527,-0.076566383242607,-0.0054975836537778]],[[0.011353510431945,0.027606310322881,0.02489117346704],[0.087459050118923,0.094534054398537,-0.025418376550078],[0.017192957922816,0.043065864592791,-0.010493332520127]],[[0.05198485031724,0.0067357239313424,-0.023956924676895],[-0.015290923416615,0.075147829949856,-0.014054340310395],[0.0081150699406862,-0.037987872958183,0.022409414872527]],[[-0.011551034636796,0.082983091473579,-0.0053991489112377],[0.082637868821621,-0.003434834536165,-0.0075494782067835],[0.010637752711773,0.062909238040447,-0.022836459800601]],[[-0.0064105475321412,0.044139072299004,0.070031113922596],[0.0094729596748948,-0.074039719998837,-0.0053250654600561],[0.03612969815731,0.031163403764367,-0.0024735450278968]],[[-0.024280058220029,0.039266411215067,0.049338955432177],[0.0074144108220935,-0.015808444470167,-0.07239942252636],[-0.091025665402412,0.043668609112501,0.020731458440423]],[[0.066671654582024,0.011159829795361,0.062613762915134],[0.073353938758373,0.015154174529016,0.06391903012991],[0.071367830038071,0.032321475446224,0.053394105285406]],[[0.021589495241642,0.0086389072239399,0.055026683956385],[-0.054257892072201,-0.03609549626708,-0.028184976428747],[-0.023824580013752,0.071143783628941,0.040762063115835]],[[-0.0012974232668057,-0.011227743700147,-0.042065769433975],[0.041567072272301,0.019114648923278,0.026180585846305],[-0.018142012879252,0.00080480158794671,0.060392864048481]],[[0.049540609121323,0.042793054133654,0.036956612020731],[0.0473388209939,0.098677299916744,0.010514199733734],[0.034032702445984,0.081014469265938,0.084954649209976]],[[-0.017573932185769,0.016664927825332,0.045544236898422],[0.01942340657115,0.078225187957287,-0.10109904408455],[0.045067228376865,0.0049909083172679,0.045222915709019]],[[0.059368070214987,-0.02965166606009,0.058163564652205],[0.046333901584148,0.060706030577421,-0.027917444705963],[0.013569599948823,0.0029600751586258,-0.0016138972714543]],[[0.051141571253538,0.051599863916636,0.012878579087555],[-0.0051807831041515,-0.014846915379167,0.005606294143945],[0.0030586353968829,-0.066750697791576,0.024580517783761]],[[0.038297526538372,0.033040475100279,-0.045844774693251],[0.048696581274271,0.030321527272463,-0.01456409227103],[0.029201192781329,-0.017426611855626,0.00013661613047589]],[[-0.02403243817389,0.061429567635059,-0.0016571467276663],[0.02769386395812,0.038508370518684,-0.020530570298433],[0.029010506346822,0.043797250837088,-0.031929798424244]],[[0.025083487853408,-0.015874998643994,0.015261994674802],[0.013001210056245,0.093962654471397,0.030862085521221],[-0.084159344434738,-0.089068874716759,0.0086185038089752]],[[0.047244939953089,-0.068243749439716,-0.017594780772924],[-0.00057705747894943,0.0086858132854104,-0.042880024760962],[0.029284818097949,-0.01492303609848,0.037493489682674]],[[0.04570509493351,-0.024445034563541,0.014913842082024],[0.037287291139364,0.026095312088728,0.021932920441031],[-0.058492094278336,0.023769984021783,0.020880715921521]],[[0.017539629712701,0.040510285645723,-0.066819041967392],[-0.038048949092627,0.049879737198353,0.023179596289992],[0.028487915173173,0.077218443155289,-0.034589551389217]],[[-0.031825296580791,-0.0079990094527602,0.00069375662133098],[-0.047398269176483,-0.00039624597411603,0.014475245960057],[0.026331311091781,-0.025629533454776,-0.02906234562397]],[[0.059668820351362,0.017428644001484,0.04055817052722],[-0.037593934684992,0.00036461430136114,0.066979579627514],[-0.022897841408849,-0.028592977672815,0.069122262299061]],[[0.072419576346874,0.043984346091747,-0.00091815053019673],[0.029121320694685,-0.0017136059468612,-0.02214720658958],[0.036383219063282,-0.0017557158134878,-0.043871331959963]],[[0.0031376362312585,-0.013444656506181,0.025736384093761],[-0.025001024827361,0.00076504849130288,-0.029954755678773],[0.073945142328739,-0.013097397051752,0.013780334033072]],[[-0.0009319621603936,0.0033104147296399,-0.00048645591596141],[-0.0058430228382349,0.021076634526253,-0.011545952409506],[0.0063788983970881,0.001110847457312,0.051175124943256]],[[-0.04026960209012,-0.060477338731289,-0.015372202731669],[0.0077202785760164,-0.0091421855613589,0.03042253293097],[0.011738360859454,0.030917190015316,0.042062096297741]],[[0.064479172229767,-0.0056463670916855,-0.11401437222958],[-0.090367347002029,-0.044086061418056,0.02034224383533],[0.013920833356678,0.0060980743728578,0.02253826521337]],[[-0.0061996332369745,-0.088985659182072,-0.0075101074762642],[-0.019967705011368,0.028872162103653,-0.052499111741781],[0.038793820887804,-0.0072074471972883,-0.024087378755212]],[[0.096704721450806,0.055681560188532,0.034009464085102],[0.072654128074646,0.045527558773756,-0.015336115844548],[0.0044090007431805,0.057829543948174,-0.008687543682754]],[[-0.022572265937924,-0.00034540865453891,-0.034088399261236],[-0.02408873103559,0.012161585502326,0.035286992788315],[0.045527275651693,-0.067606814205647,0.05335009843111]],[[0.00044193299254403,-0.022650526836514,-0.0064856335520744],[0.042710535228252,-0.018629025667906,0.058245651423931],[-0.005024763289839,-0.028936231508851,0.051382474601269]],[[-0.06852201372385,0.036527693271637,-0.044534724205732],[0.086371243000031,0.078372582793236,0.0055647087283432],[0.02022322639823,0.019698502495885,-0.032362468540668]],[[-0.0051016137003899,0.030564155429602,0.0040344255976379],[-0.015517175197601,0.078162871301174,0.022375470027328],[0.03131366148591,-0.005426527466625,0.01427286490798]],[[8.0813391832635e-05,0.013100474141538,0.040358301252127],[-0.054724376648664,-0.027984237298369,-0.013122707605362],[-0.029006058350205,0.043093491345644,0.019777536392212]],[[0.035022724419832,0.044882465153933,0.0035570662003011],[-0.012011249549687,0.032114207744598,0.029114073142409],[-0.016511114314198,0.054583307355642,0.024659937247634]],[[-0.027002057060599,0.0064358557574451,-0.028337884694338],[0.010625225491822,-0.036659896373749,-0.10243704169989],[0.0077266632579267,-0.016646262258291,-0.022539967671037]],[[0.053108565509319,0.042266838252544,0.023359829559922],[0.063633225858212,-0.02983470633626,0.0098377838730812],[0.096146449446678,0.042486853897572,0.045819345861673]],[[-0.029666982591152,0.13996057212353,0.089595481753349],[-0.024140840396285,-0.023216428235173,0.014918513596058],[0.020509215071797,0.0093031600117683,-0.066849678754807]],[[-0.04859060049057,-0.0051329215057194,0.038645304739475],[-0.028750447556376,0.047891493886709,-0.027851026505232],[0.00039552809903398,-0.019017467275262,-0.024141384288669]],[[0.047165561467409,0.061145938932896,0.050286345183849],[0.032338365912437,0.048722352832556,0.03319776058197],[0.050791870802641,0.071350015699863,-0.028828795999289]],[[0.030529176816344,0.040091998875141,-0.044925905764103],[0.0051816469058394,0.0031826635822654,-0.0093259820714593],[0.028884053230286,-0.015996800735593,0.031073844060302]],[[0.0086848391219974,-0.0010456688469276,0.058566935360432],[-0.028348742052913,0.011934914626181,0.004596003331244],[0.020634891465306,-0.0088746473193169,0.031766783446074]],[[-0.0069851232692599,0.010222447104752,0.044500663876534],[-0.021427243947983,-0.025121999904513,0.028070520609617],[0.034474246203899,0.003056404646486,0.017093481495976]],[[-0.039993040263653,-0.0082620475441217,-0.0065347384661436],[0.081672303378582,-0.021848831325769,0.047379374504089],[-0.013114949688315,-0.01716616936028,-0.016852455213666]],[[0.062002070248127,-0.047843839973211,0.065402001142502],[0.056308731436729,-0.045398853719234,0.057588145136833],[-0.028938489034772,-0.050700735300779,-0.066741712391376]],[[0.025239275768399,-0.016709661111236,0.043110582977533],[-0.0011743792565539,0.0253592338413,-0.0017102065030485],[0.016339134424925,0.014959206804633,0.0086070373654366]],[[-0.017333671450615,-0.038996025919914,-0.017544656991959],[-0.015431798063219,0.023435989394784,0.041703023016453],[-0.10346655547619,0.052171550691128,0.028278598561883]],[[-0.014996998012066,0.054841633886099,0.027954211458564],[-0.020511595532298,0.052809864282608,0.10033968091011],[-0.030687497928739,-0.045918013900518,-0.048033762723207]],[[-0.013751433230937,0.012620722874999,0.093238465487957],[-0.02202463708818,0.042257584631443,0.016276421025395],[-0.011855834163725,0.0016135371988639,0.013543245382607]],[[0.0049407929182053,-0.010164746083319,0.063425324857235],[0.057804226875305,0.01738073118031,0.059138417243958],[0.013629088178277,-0.017256509512663,0.0040927743539214]],[[0.086896233260632,-0.022436177358031,-0.043535873293877],[-0.045346982777119,-0.083812214434147,0.050974056124687],[-0.0069736833684146,-0.1130406036973,0.099375694990158]],[[-0.020245628431439,-0.0047909361310303,-0.084062546491623],[-0.01068717520684,-0.0031711251940578,0.070513643324375],[0.051683492958546,-0.067626141011715,0.028625592589378]],[[0.00046917333384044,0.0016460989136249,0.036684263497591],[0.041860859841108,0.0097994050011039,0.064686007797718],[-0.022942306473851,-0.04317519441247,-0.012923249043524]],[[0.056007444858551,0.058719992637634,-0.042614422738552],[0.019556146115065,-0.076958492398262,-0.031534016132355],[-0.076222509145737,0.033690385520458,-0.0026405113749206]],[[0.042749308049679,-0.023093167692423,0.034874349832535],[0.075683616101742,0.00056866742670536,0.06474407017231],[-0.019815290346742,0.030138099566102,0.020591134205461]],[[0.11593719571829,-0.030597606673837,-0.01684470847249],[0.027672462165356,-0.0061942129395902,0.030330702662468],[0.081253409385681,0.039079498499632,0.061629801988602]],[[0.016397653147578,0.035947944968939,0.018153795972466],[-0.0034728131722659,-0.0040442016907036,0.031955536454916],[-0.033410243690014,-0.016614865511656,0.01307822111994]],[[-0.029171654954553,-0.06474893540144,0.029133673757315],[0.017262848094106,-0.050573464483023,0.035534795373678],[-0.028846213594079,0.042339190840721,0.044295240193605]],[[-0.046748097985983,0.042794059962034,0.051080659031868],[-0.011721603572369,0.0049846507608891,-0.0018524419283494],[0.0056309099309146,-0.036325197666883,0.083755850791931]],[[-0.039190612733364,-0.019854221493006,0.053957279771566],[0.029115274548531,0.0067042759619653,-0.0025457721203566],[0.059502478688955,-0.024665858596563,0.051413998007774]],[[-0.0094612874090672,0.11644826829433,0.041779894381762],[0.069582872092724,0.047378271818161,-0.011035267263651],[-0.0091503076255322,0.046808868646622,0.050563920289278]],[[-0.051187735050917,0.039872668683529,-0.0043404111638665],[-0.055685110390186,0.072490930557251,0.098567418754101],[0.053291156888008,0.014721347019076,-0.015094959177077]],[[0.013891632668674,-0.017935967072845,0.042993012815714],[0.045360468327999,-0.00060999195557088,0.063213028013706],[-0.031320616602898,0.076662488281727,-0.016618706285954]],[[0.055886652320623,0.01362868770957,0.026014866307378],[0.034872516989708,0.00095234136097133,-0.0082673579454422],[0.0048660039901733,-0.067539237439632,-0.025271909311414]],[[0.0082995155826211,0.049699019640684,0.053940117359161],[-0.036601919680834,-0.040686819702387,0.021035386249423],[-0.0044988351874053,-0.068653225898743,0.047736462205648]],[[-0.0079217152670026,-0.011628163047135,-0.030428135767579],[0.079678505659103,0.046633277088404,-0.014785451814532],[0.010915199294686,0.061142899096012,0.028733065351844]],[[0.010615846142173,0.082801714539528,0.11534774303436],[0.058063123375177,0.095477268099785,0.022408673539758],[0.055311270058155,0.071187242865562,-0.010349791496992]],[[0.0067212516441941,0.069586180150509,0.0089795086532831],[-0.010661102831364,-0.021603610366583,0.09872280806303],[0.013175070285797,0.023645477369428,-0.0064728744328022]],[[0.024725688621402,-0.029596958309412,0.063822083175182],[-0.059751495718956,0.033846162259579,-0.042964145541191],[0.046968393027782,0.024055043235421,0.063847355544567]],[[0.025029910728335,0.013133464381099,0.017267508432269],[-0.058260213583708,0.0069331121630967,0.033885348588228],[0.032541461288929,-0.011493312194943,0.040733180940151]],[[-0.007610946893692,-0.062093909829855,0.013363212347031],[0.036233056336641,0.046848971396685,-0.16955655813217],[-0.00018012637156062,-0.0062937801703811,0.063900724053383]],[[0.039161525666714,-0.052046157419682,0.012104810215533],[0.029997268691659,0.045233391225338,0.0036296774633229],[-0.029763128608465,0.031115364283323,0.037820406258106]],[[-0.0002900303225033,0.036359399557114,-0.013029328547418],[0.049888089299202,0.0023780218325555,-0.043853234499693],[0.023777911439538,0.064101345837116,-0.0011770470300689]],[[-0.0074652186594903,-0.00030151728424244,-0.013886084780097],[-0.0020850396249443,-0.0090520232915878,-0.019891323521733],[0.059472937136889,0.038483500480652,0.059993296861649]],[[-0.023525655269623,0.09912832826376,-0.017352789640427],[-0.10004210472107,-0.07679995149374,0.0350726172328],[0.014442589133978,-0.054225128144026,0.082295909523964]],[[-0.006623113527894,0.035090833902359,-0.056340046226978],[0.035374630242586,-0.008119416423142,-0.049554146826267],[-0.024865437299013,0.047200080007315,0.035359270870686]],[[0.0036983308382332,-0.070898413658142,0.082833610475063],[0.097507148981094,0.090679496526718,0.00045198696898296],[0.061386067420244,0.017685279250145,0.04944983497262]],[[-0.044517450034618,0.032477598637342,-0.011525878682733],[0.05624632909894,0.010606166906655,-0.058997113257647],[0.047884028404951,-0.035933934152126,0.07300466299057]],[[0.056924771517515,0.032930500805378,-0.0076695694588125],[-0.029710341244936,-0.048078574240208,0.013506906107068],[0.031036278232932,-0.024227796122432,0.029740419238806]],[[0.047395747154951,0.054010387510061,0.029219724237919],[0.048116069287062,0.03703773394227,0.020847162231803],[0.063598982989788,0.077238507568836,0.017561309039593]],[[-0.031632788479328,0.030755758285522,0.051856275647879],[0.012586520984769,0.024470316246152,0.0033011781051755],[-0.0074646193534136,-0.11059749126434,-0.039617735892534]],[[0.023307556286454,0.0054554217495024,0.01735988073051],[0.073970712721348,0.0090420711785555,0.060581266880035],[-0.050457745790482,0.007719072047621,0.036519102752209]],[[0.010473307222128,-0.0036861582193524,0.047882299870253],[0.017600256949663,0.0076194889843464,0.026743503287435],[0.011931674554944,0.0048374878242612,0.033085159957409]],[[0.052431095391512,0.016409305855632,-0.0076795928180218],[0.017617607489228,0.0073932590894401,-0.036496851593256],[0.043593760579824,0.0052136946469545,-0.032227035611868]],[[-0.066629476845264,-0.046438470482826,-0.087051995098591],[-0.051928132772446,-0.062621355056763,0.016288390383124],[0.051574256271124,-0.023342791944742,-0.032698810100555]],[[-0.056715279817581,0.043204188346863,0.023778287693858],[-0.026200827211142,-0.012250507250428,0.013259001076221],[-0.036377396434546,-0.0051813321188092,-0.076449021697044]],[[0.045780993998051,0.02956585586071,-0.0011302682105452],[0.017718177288771,0.047056414186954,-0.028474576771259],[-0.01517818775028,-0.0084293382242322,0.027034837752581]],[[-0.053314730525017,-0.0014662246685475,0.019297312945127],[-0.059007856994867,-0.012609053403139,0.062385533004999],[-0.050965216010809,-0.012560759671032,-0.020441126078367]],[[-0.034928523004055,0.027211954817176,0.011860393919051],[-0.072894111275673,-0.020729780197144,-0.01103023160249],[0.014111655764282,-0.032773185521364,0.013419274240732]],[[-0.0092882178723812,-0.034095045179129,-0.0049292747862637],[0.0043923612684011,-0.0093730902299285,0.063005283474922],[0.074206627905369,0.037764273583889,-0.087904267013073]],[[0.028481157496572,0.012109731324017,0.04571183770895],[0.058026365935802,-0.035404074937105,0.021482182666659],[-0.033254764974117,-0.023733554407954,0.0064464886672795]],[[0.1248444840312,0.012547772377729,0.040641363710165],[-0.024687856435776,0.066543996334076,-0.050012614578009],[0.065939374268055,0.019047046080232,0.028826631605625]],[[0.025658873841166,-0.00982865691185,-0.021823808550835],[0.064697287976742,-0.07139790803194,0.086656592786312],[0.092294633388519,-0.02807548828423,0.018347086384892]]],[[[0.2278865724802,-0.027383910492063,-0.0059943958185613],[-0.037392105907202,-0.059263158589602,-0.030447542667389],[-0.16597674787045,-0.010702292434871,-0.012710993178189]],[[-0.0092521104961634,-0.050375491380692,-0.14810189604759],[0.028660861775279,-0.095113962888718,-0.031052751466632],[-0.0041048033162951,0.044752221554518,0.13538753986359]],[[0.04928994178772,0.014656182378531,0.082887776196003],[0.14619889855385,0.037060227245092,0.041372392326593],[0.013929183594882,0.017256313934922,-0.021993104368448]],[[-0.11812745034695,-0.060829516500235,0.036061577498913],[-0.057965122163296,0.025198502466083,-0.0087411301210523],[-0.10729692876339,-0.027056904509664,-0.055325910449028]],[[0.13382150232792,0.11930564045906,-0.11014652997255],[0.13252714276314,0.033093746751547,0.0034628172870725],[-0.018733877688646,0.03464026004076,-0.099315285682678]],[[0.0038383486680686,0.094329707324505,0.083077386021614],[0.084535583853722,0.061440236866474,-0.033657860010862],[-0.087518960237503,-0.034441523253918,-0.095608934760094]],[[-0.037323340773582,0.085457369685173,0.096911415457726],[-0.084353655576706,0.067477434873581,-0.067082710564137],[-0.034835178405046,0.055449299514294,-0.11072111874819]],[[0.11068826913834,0.0081938831135631,0.087186053395271],[-0.010540463030338,-0.031289253383875,0.0038900200743228],[0.0058841034770012,0.015288795344532,-0.015657320618629]],[[0.12953017652035,-0.019469803199172,-0.031949602067471],[-0.12479246407747,-0.098026491701603,0.056075688451529],[0.017132274806499,0.099387936294079,0.13855297863483]],[[0.020972169935703,-0.0099278427660465,-0.0038582046981901],[-0.04558676853776,0.026377769187093,0.0047337999567389],[-0.043552204966545,-0.087738811969757,-0.090449944138527]],[[-0.065011776983738,0.014193318784237,0.033661168068647],[0.13875417411327,0.16252237558365,-0.020611200481653],[0.040170632302761,0.014778362587094,-0.01143957208842]],[[0.1477607935667,0.20501184463501,-0.018677420914173],[-0.0089774988591671,-0.030697152018547,-0.01157905254513],[0.022981060668826,0.045290924608707,0.058072943240404]],[[-0.043838046491146,-0.12002634257078,0.18202096223831],[0.021912252530456,0.10834369808435,0.01033328473568],[0.086147420108318,0.0086233327165246,-0.10006988048553]],[[0.0065504116937518,0.055447921156883,0.14299157261848],[-0.072516456246376,-0.028275212273002,0.13036412000656],[0.14702081680298,0.016510888934135,-0.084682308137417]],[[0.075594641268253,-0.0089213363826275,0.0099968612194061],[-0.065820455551147,0.21278546750546,-0.013307670131326],[0.069139204919338,-0.073991097509861,-0.025630362331867]],[[0.10061814635992,-0.13943536579609,0.079969242215157],[0.018784029409289,0.042350511997938,-0.029517743736506],[-0.036043312400579,-0.086562618613243,-0.024523703381419]],[[0.15702131390572,0.024133874103427,-0.083437517285347],[-0.021407784894109,0.047677394002676,0.020011911168694],[0.065201967954636,-0.0078371595591307,0.081235960125923]],[[0.014740417711437,0.047345995903015,-0.004548029974103],[-0.028268296271563,-0.0045127687044442,0.064040325582027],[-0.058825977146626,-0.0037261531688273,-0.18345895409584]],[[0.036150004714727,-0.021737534552813,-0.10603241622448],[0.094896525144577,-0.043536555022001,-0.0058492589741945],[-0.13716016709805,-0.07047712802887,-0.0071121123619378]],[[0.18777456879616,-0.027774125337601,-0.020414905622602],[-0.051865920424461,0.090057373046875,-0.031147243455052],[-0.032231573015451,-0.050513692200184,-0.094862043857574]],[[0.059779211878777,-0.0088435495272279,0.081971928477287],[-0.010137191973627,-0.023995032534003,0.011795397847891],[-0.098690547049046,-0.081850931048393,0.12068185210228]],[[0.16312748193741,0.0088862171396613,-0.021511720493436],[-0.044756315648556,-0.020823026075959,0.011154409497976],[-0.035197358578444,-0.06008992344141,0.10194829851389]],[[-0.075641371309757,-0.0061114286072552,0.04401857405901],[-0.028606647625566,0.053873129189014,0.072092078626156],[0.01880457252264,0.030379181727767,0.039123151451349]],[[0.023093877360225,-0.12704615294933,-0.033131033182144],[0.0089772772043943,-0.016924833878875,-0.053980320692062],[-0.098503261804581,0.054581064730883,0.030040642246604]],[[0.060498841106892,0.042654179036617,0.014711302705109],[-0.083871133625507,0.039663139730692,0.12979012727737],[0.16470436751842,0.058658763766289,-0.077032998204231]],[[-0.060415416955948,-0.03283704072237,0.06807054579258],[-0.045344609767199,-0.011763857677579,0.046875614672899],[-0.043920315802097,-0.079035311937332,-0.13410648703575]],[[0.036376133561134,0.11365330964327,-0.0064673563465476],[0.064111560583115,0.017959443852305,-0.013201250694692],[0.0029124785214663,0.021528406068683,0.010602627880871]],[[0.10590002685785,0.05734746530652,-0.029292602092028],[0.071469858288765,-0.047342114150524,0.036578431725502],[0.0089781088754535,0.057208921760321,0.0082471584901214]],[[0.057186465710402,-0.057440780103207,-0.037343397736549],[0.0023608265910298,0.048188377171755,-0.032890632748604],[-0.12310695648193,-0.16186186671257,0.012735482305288]],[[-0.081245422363281,-0.1177160218358,-0.027364939451218],[0.17295695841312,0.19036892056465,0.033634703606367],[-0.067859262228012,-0.023891754448414,0.047789290547371]],[[0.1069825142622,-0.02219208702445,-0.075105078518391],[0.1236522346735,0.042778797447681,-0.063796654343605],[-0.069448903203011,-0.029179504141212,0.099364101886749]],[[0.080156058073044,0.0029300234746188,0.0052085565403104],[0.045342795550823,0.020743047818542,-0.075143203139305],[-0.064741387963295,-0.0005569759523496,0.049489051103592]],[[-0.0043187770061195,0.096501260995865,-0.02639021538198],[-0.10113356262445,-0.040759399533272,-0.022473517805338],[-0.045140463858843,-0.089888222515583,-0.03552145883441]],[[0.1187556758523,-0.062943622469902,0.034083358943462],[0.057797994464636,-0.042498629540205,-0.028255386278033],[0.05791686847806,0.026097696274519,-0.028907377272844]],[[0.12563399970531,-0.18441878259182,0.059139482676983],[-0.031290058046579,-0.039474081248045,0.0056176548823714],[0.046925824135542,0.14184898138046,0.032595973461866]],[[0.0087015023455024,-0.17528547346592,-0.075273647904396],[-0.1050980836153,0.026776656508446,0.036200817674398],[0.02198065072298,0.0888342410326,-0.06845398247242]],[[-0.034239765256643,-0.021213501691818,-0.032264307141304],[0.084398858249187,0.025474432855844,-0.031055064871907],[-0.12530237436295,0.01743945479393,-0.058413948863745]],[[0.024102604016662,0.054299078881741,-0.0046831001527607],[-0.02234067954123,-0.030184717848897,0.02735978551209],[-0.060381826013327,0.043960083276033,0.05252081900835]],[[-0.017123190686107,-0.072661772370338,0.060575194656849],[0.047408748418093,-0.11490330845118,0.16039946675301],[-0.011514184996486,-0.04008836299181,-0.023359065875411]],[[-0.09890541434288,-0.039828456938267,0.012705123983324],[-0.021906275302172,0.037289947271347,-0.019378140568733],[0.080574944615364,0.056775081902742,-0.005467792507261]],[[0.050029274076223,-0.010646238923073,0.071390397846699],[0.083683334290981,0.082460597157478,-0.14676782488823],[0.067621611058712,0.014010318554938,-0.04510598257184]],[[0.024003308266401,-0.023099508136511,-0.075662285089493],[0.059311576187611,-0.024134241044521,-0.029231270775199],[0.039059348404408,-0.14511905610561,0.070708326995373]],[[0.11820278316736,0.094496689736843,0.0040775467641652],[0.11163450032473,0.056650713086128,0.066761717200279],[0.05981295183301,-0.042270366102457,-0.068351365625858]],[[-0.037910334765911,0.03257654234767,0.10588570684195],[0.040840052068233,-0.018908811733127,0.098739862442017],[-0.061304036527872,-0.007642091717571,0.10218317061663]],[[0.047884725034237,0.17092056572437,0.020247852429748],[-0.11138258874416,-0.060140687972307,0.032955579459667],[0.075682133436203,-0.056647256016731,-0.024588430300355]],[[-0.0076100276783109,0.01193871255964,0.13133074343204],[0.09024378657341,0.11513148248196,0.14871096611023],[0.17979092895985,0.21628776192665,0.00125655264128]],[[-0.016544442623854,-0.08061370998621,0.078578002750874],[0.083642713725567,0.069659702479839,-0.055202458053827],[0.13714747130871,0.027441581711173,0.049103956669569]],[[0.10351536422968,0.017121359705925,0.08843107521534],[-0.084176279604435,0.041250355541706,-0.069591470062733],[0.13145704567432,-0.065566472709179,0.024013325572014]],[[0.032176833599806,0.027981735765934,-0.0011851004092023],[-0.025627724826336,-0.060034073889256,0.068868033587933],[0.0093552190810442,-0.14498807489872,-0.066586472094059]],[[0.091988243162632,-3.4989614505321e-05,0.097543567419052],[-0.099667638540268,0.035160109400749,-0.035367608070374],[0.087130941450596,0.015468342229724,0.055040370672941]],[[0.12280370295048,0.057669654488564,-0.073323503136635],[-0.063846595585346,-0.063407070934772,0.020089838653803],[-0.026553988456726,-0.10916084051132,0.10951551795006]],[[-0.044363982975483,0.053948778659105,-0.0099708857014775],[0.040318924933672,-0.15853615105152,-0.0067813256755471],[0.024315001443028,-0.0018267788691446,-0.011378369294107]],[[0.081951104104519,-0.00011921042460017,0.011034716852009],[0.081506378948689,0.09279141575098,0.024671372026205],[-0.0031845446210355,-0.08091439306736,-0.061814829707146]],[[-0.079148583114147,0.011186776682734,0.047760009765625],[0.065296337008476,0.054046384990215,0.072548814117908],[0.037079010158777,-0.058722369372845,-0.053044207394123]],[[0.040668591856956,-0.020544465631247,0.070539884269238],[-0.040104959160089,0.0087586594745517,0.13013197481632],[-0.057502668350935,-0.073175475001335,0.10314218699932]],[[0.10805829614401,-0.025779752060771,0.12712235748768],[-0.022463260218501,-0.063350506126881,0.021149251610041],[-0.066365830600262,0.038110643625259,-0.020729083567858]],[[-0.01854950375855,0.071658372879028,0.0053982860408723],[-0.0039563663303852,-0.020815949887037,0.071556396782398],[-0.11288610845804,-0.052476562559605,-0.032567903399467]],[[0.15163081884384,0.051356349140406,-0.04343805462122],[0.067341007292271,-0.08174753934145,-0.037433844059706],[0.079644180834293,-0.095555953681469,0.13015274703503]],[[0.070352457463741,0.039953008294106,0.11443318426609],[0.020889552310109,0.045589879155159,0.046211544424295],[-0.029968487098813,0.045572254806757,-0.054346553981304]],[[0.048494011163712,0.058295845985413,-0.027741735801101],[-0.0087959570810199,-0.0065095415338874,-0.039722602814436],[-0.095483638346195,0.01323785353452,-0.092041090130806]],[[-0.01790764555335,-0.025781581178308,0.094772361218929],[-0.038199998438358,0.015858577564359,0.15713308751583],[-0.041973866522312,-0.069599866867065,0.020691907033324]],[[-0.082664504647255,-0.0032065787818283,0.0050178044475615],[0.059784531593323,0.089909516274929,0.026635613292456],[0.097940877079964,0.057632520794868,-0.010485951788723]],[[-0.036176420748234,-0.026297148317099,0.0092105595394969],[0.022912146523595,0.065278768539429,-0.070313811302185],[0.044167313724756,0.06784912198782,0.010933419689536]],[[0.024110898375511,-0.033844456076622,-0.014469132758677],[-0.084425568580627,-0.033815581351519,0.06000966951251],[0.073101289570332,-0.011709744110703,0.18373915553093]],[[0.03168648853898,0.1479526758194,0.071531154215336],[-0.014789695851505,0.091719634830952,0.02607835829258],[0.069814428687096,-0.041058726608753,0.056446965783834]],[[-0.013351055793464,0.061589676886797,-0.056880936026573],[0.091901034116745,0.11591950803995,0.0022190038580447],[0.0064270091243088,-0.026672691106796,0.049950778484344]],[[0.12487821280956,0.13433235883713,0.048618242144585],[0.065826371312141,-0.045309979468584,0.14986385405064],[0.067278750240803,-0.10692992061377,0.01347163785249]],[[-0.00023641053121537,0.059876244515181,0.048533692955971],[0.038383986800909,0.06020624935627,-0.011186272837222],[0.01437558606267,-0.07178495824337,-0.084400609135628]],[[0.0010739081772044,-0.0026103782001883,-0.062240939587355],[-0.044437032192945,-0.013677178882062,-0.0039253141731024],[-0.02717075124383,0.0026755153667182,0.099478743970394]],[[0.082817524671555,0.088708765804768,0.015177422203124],[0.059363927692175,-0.084363885223866,0.036569755524397],[0.0028345929458737,0.089588560163975,-0.071507476270199]],[[0.054055567830801,0.030795276165009,-0.042264208197594],[-0.012846230529249,0.061953168362379,-0.0086011001840234],[-0.068854756653309,-0.036007586866617,-0.018441863358021]],[[-0.10430178791285,0.00054600753355771,0.1194162517786],[0.1839599609375,0.027253517881036,0.041237704455853],[0.0025345073081553,-0.01949398778379,-0.1168172955513]],[[0.0263457801193,-0.017236055806279,0.1018113642931],[0.024900520220399,0.02087939530611,0.045115128159523],[-0.011707962490618,0.087352395057678,0.015106783248484]],[[-0.03251276537776,-0.0091759916394949,0.0043831150978804],[0.094299457967281,-0.026809735223651,0.074658706784248],[-0.023234887048602,-0.076469324529171,0.013190596364439]],[[-0.12138307094574,0.015944682061672,0.025827309116721],[-0.020494509488344,-0.0074357455596328,0.025251418352127],[-0.042068727314472,-0.026801791042089,-0.024949256330729]],[[0.019284214824438,0.026164190843701,0.075400643050671],[0.062667019665241,0.012415756471455,0.060606993734837],[-0.03572615608573,-0.018117347732186,0.021183282136917]],[[0.034946084022522,-0.043891824781895,-0.053132079541683],[-0.010859437286854,0.055500827729702,0.015154213644564],[-0.0045646415092051,0.10261701047421,0.10353772342205]],[[0.038002692162991,0.01589398086071,0.091318346560001],[-0.01683815009892,0.054442331194878,0.11021716147661],[0.11046206206083,-0.0024053978268057,-0.010009104385972]],[[0.15526880323887,0.11500220000744,0.044808808714151],[-0.076853558421135,-0.035512521862984,-0.020477956160903],[-0.019625687971711,-0.14660762250423,-0.052336264401674]],[[-0.011921856552362,0.034840811043978,0.090832091867924],[-0.024069810286164,0.034205786883831,0.098714239895344],[0.012220146134496,-0.0439686588943,0.09291885048151]],[[0.16504117846489,-0.14016449451447,-0.031875807791948],[0.0049541373737156,0.024127388373017,0.058054085820913],[0.017515787854791,0.078336447477341,0.061425354331732]],[[-0.10851287841797,-0.058264277875423,0.098330445587635],[-0.013468652963638,0.19358626008034,-0.026004588231444],[-0.10733495652676,-0.0086453780531883,-0.019655471667647]],[[0.050481088459492,-0.10040632635355,0.012832937762141],[0.0065613803453743,0.042529966682196,0.14504390954971],[-0.0090474113821983,0.040392432361841,-0.015977028757334]],[[0.058880437165499,-0.012991110794246,-0.065044462680817],[0.082865580916405,0.093703992664814,-0.027399757876992],[-0.02786567248404,0.11882588267326,-0.11178884655237]],[[-0.0094120623543859,0.035027284175158,-0.0020576983224601],[0.049583479762077,0.062602944672108,0.043542973697186],[0.10558710247278,-0.10550268739462,0.075957141816616]],[[-0.10322871804237,-0.063531890511513,0.12422094494104],[0.034754488617182,-0.0030522802844644,0.1291079223156],[0.022243600338697,-0.010175654664636,0.077040173113346]],[[-0.038328524678946,0.10865384340286,-0.0048290761187673],[0.003756498452276,0.022939201444387,0.15540792047977],[-0.026088679209352,0.11152847111225,0.043945282697678]],[[0.12646888196468,0.069031909108162,-0.11971165984869],[0.094798624515533,0.13907116651535,0.076006934046745],[0.013772234320641,-0.1284456551075,0.034215804189444]],[[-0.027700433507562,-0.018646320328116,0.050247296690941],[0.078848868608475,-0.096755675971508,0.039907671511173],[0.1707329005003,-0.023809859529138,-0.067154124379158]],[[0.0087597314268351,0.10964155942202,-0.026043904945254],[-0.093135349452496,0.012868173420429,-0.045569092035294],[0.10878510028124,-0.052275519818068,-0.010127699933946]],[[0.019080828875303,-0.010963871143758,0.0093047134578228],[0.003700721077621,-0.028729630634189,-0.056031633168459],[0.06105500459671,0.14551939070225,0.0067109949886799]],[[-0.013519614003599,-0.0085588302463293,-0.079305276274681],[-0.14070230722427,0.0049248598515987,-0.11188396066427],[0.04819280654192,0.049374971538782,0.045522708445787]],[[-0.072763130068779,-0.14867326617241,0.013327568769455],[0.099456012248993,-0.0067441198043525,-0.064256966114044],[-0.086122669279575,0.052733454853296,-0.1161238104105]],[[0.10082750767469,-0.015160089358687,-0.072984002530575],[0.028965853154659,0.014490102417767,0.051708247512579],[-0.023899121209979,-0.11937348544598,-0.064227625727654]],[[0.089509226381779,0.065940171480179,-0.0012840457493439],[-0.081179767847061,-0.045239891856909,0.14545181393623],[0.12260199338198,0.030341427773237,-0.13425447046757]],[[0.018582984805107,-0.013559335842729,-0.13078708946705],[0.15221694111824,0.073069624602795,-0.043915700167418],[-0.029633963480592,0.11879625171423,-0.050454590469599]],[[-0.10440790653229,-0.01442214101553,0.092205315828323],[0.094678498804569,-0.01214277651161,-0.0079216146841645],[-0.074789188802242,-0.00735656125471,-0.0033531347289681]],[[-0.046342134475708,0.11366002261639,0.14613711833954],[0.11292515695095,0.021573023870587,0.043812725692987],[0.12416230142117,0.053438697010279,-0.074562199413776]],[[0.060394011437893,0.04561622813344,0.069024905562401],[-0.03857272490859,-0.016988566145301,0.0096234325319529],[-0.024065451696515,-0.016939910128713,0.059692811220884]],[[0.079251579940319,-0.038411021232605,0.059975735843182],[-0.10559865087271,0.081725649535656,0.022390354424715],[0.019882757216692,-0.021526876837015,-0.10878327488899]],[[0.07991885393858,-0.025305923074484,-0.10369542241096],[0.0099025052040815,-0.028721172362566,0.035460617393255],[0.12148547917604,-0.028053088113666,-0.011616080068052]],[[0.022533299401402,0.042619496583939,-0.053599491715431],[0.069725282490253,0.041966814547777,0.057183541357517],[0.061021901667118,0.056218769401312,-0.072574950754642]],[[0.1769185513258,0.053971949964762,0.050608325749636],[0.077546611428261,-0.035887759178877,-0.0045470222830772],[0.067866295576096,0.039752457290888,-0.010644109919667]],[[0.020658358931541,-0.0473871268332,-0.023870764300227],[0.10562715679407,0.0064543853513896,-0.093160897493362],[0.026324035599828,0.082676894962788,0.039776045829058]],[[-0.015164605341852,0.029946617782116,-0.00067500647855923],[-0.062423154711723,0.097574785351753,-0.032500319182873],[0.071672432124615,0.17348754405975,0.14060458540916]],[[0.035883642733097,0.061368394643068,0.054877433925867],[-0.11698304861784,0.04744840785861,0.012038758024573],[0.088720917701721,0.0417126044631,0.026922460645437]],[[0.044754005968571,0.019990906119347,-0.06713879853487],[-0.021819451823831,0.010023796930909,0.068009100854397],[-0.0034428960643709,0.068553566932678,-0.12290192395449]],[[0.015259860083461,0.084471009671688,0.018327491357923],[-0.003218068741262,0.0036551929078996,0.069662809371948],[0.05877985432744,0.1067222058773,0.030094604939222]],[[0.035554405301809,0.022574508562684,-0.049320634454489],[-0.079657465219498,-0.015075786039233,0.13142910599709],[0.013573084026575,0.029565986245871,0.12837214767933]],[[-0.032677084207535,-0.02261571586132,-0.026048058643937],[0.079322911798954,0.028011118993163,0.028291074559093],[0.013047602027655,0.10301364958286,0.021384071558714]],[[-1.4387883311429e-05,-0.042116954922676,0.0082287648692727],[0.002263791160658,0.020947586745024,-0.0049762399867177],[-0.048229724168777,0.0018242496298626,0.018692366778851]],[[0.053975991904736,-0.019996223971248,0.024951757863164],[-0.056700333952904,0.045877788215876,0.069831199944019],[0.054734196513891,-0.0024580368772149,-0.065683089196682]],[[-0.045644294470549,0.0016598255606368,0.052754383534193],[-0.12028770148754,-0.10514906793833,-0.065240070223808],[-0.036262948065996,0.07580279558897,0.19977813959122]],[[-0.0095044327899814,-0.062773026525974,0.006956284865737],[-0.029568281024694,-0.042823411524296,-0.029908129945397],[-0.032585967332125,-0.025035791099072,-0.029242627322674]],[[0.059656169265509,0.052920114248991,0.12826889753342],[0.014766117557883,-0.0064381589181721,0.019241098314524],[9.424114250578e-05,0.047904923558235,0.024243876338005]],[[-0.09287166595459,-0.048356153070927,-0.0046976590529084],[0.067279070615768,0.048053584992886,-0.065626852214336],[0.00050721201114357,0.055079903453588,0.035588640719652]],[[0.0032034241594374,0.03299355879426,0.053479488939047],[0.10659567266703,0.043087217956781,0.065686844289303],[0.049366772174835,0.019553363323212,0.030123187229037]],[[0.13476803898811,-0.01869136095047,0.076461426913738],[-0.016631262376904,0.0097209420055151,0.092041432857513],[-0.036145128309727,0.053515840321779,0.038738250732422]],[[0.094926476478577,-0.030574625357985,0.039087183773518],[0.010025064460933,0.0048822122626007,0.02874987013638],[-0.011227614246309,-0.013131915591657,0.046730026602745]],[[-0.13296942412853,0.081382662057877,-0.0068059293553233],[-0.14668244123459,0.056710235774517,0.049217272549868],[-0.061475228518248,-0.08576962351799,-0.048624042421579]],[[0.05648785084486,0.043012972921133,0.07358679920435],[0.071424938738346,0.0090752188116312,-0.12761534750462],[0.066209360957146,0.14466108381748,0.074977286159992]],[[0.16363595426083,-0.055807244032621,0.064394563436508],[-0.032609809190035,0.054740380495787,-0.021128823980689],[0.017068035900593,0.00046740140533075,-0.061532322317362]],[[-0.037037011235952,-0.031740665435791,-0.010335190221667],[0.06897059828043,0.056944873183966,0.013305090367794],[-0.016976691782475,0.016369232907891,0.070105522871017]],[[-0.080342829227448,-0.059469889849424,0.03219174221158],[-0.079451628029346,0.024277735501528,-0.062553554773331],[0.036520149558783,-0.072667665779591,-0.0097369654104114]],[[0.12725287675858,-0.086533211171627,0.0098703289404511],[-0.0070843528956175,-0.094861157238483,0.10721123963594],[-0.032029878348112,0.023100150749087,0.062288366258144]],[[0.01715525239706,-0.066700004041195,0.0015454165404662],[-0.037789050489664,0.088791556656361,0.041841831058264],[-0.12160281091928,-0.015563649125397,-0.023066440597177]],[[0.034870315343142,0.11697053909302,0.092559151351452],[0.15323121845722,0.040199752897024,-0.22688876092434],[-0.07951832562685,-0.014710553921759,-0.0356673784554]],[[0.061029348522425,-0.042337950319052,0.020367447286844],[0.053261775523424,0.090077258646488,0.00087006791727617],[0.052328754216433,0.12510885298252,0.0093610668554902]]],[[[-0.016862526535988,-0.012375409714878,0.015766942873597],[0.056546989828348,0.014406363479793,-0.04616230353713],[-0.0066133760847151,-0.032258357852697,0.022143026813865]],[[-0.038905821740627,-0.061680052429438,0.0032873328309506],[0.01884843967855,-0.037417363375425,0.0058864215388894],[-0.076591655611992,-0.028003783896565,0.020625682547688]],[[-0.055801741778851,0.017694424837828,0.069885045289993],[0.063655197620392,-0.0040671895258129,0.00043066538637504],[-0.027719413861632,0.057357735931873,0.020736984908581]],[[-0.016977405175567,-0.0088033517822623,-0.030992874875665],[-0.084400154650211,-0.090339921414852,0.07972340285778],[-0.03376692533493,0.049962185323238,0.035269070416689]],[[0.041732784360647,0.040834672749043,0.051482405513525],[-0.07770187407732,0.011114589869976,0.005879292730242],[-0.062301639467478,0.056975193321705,-0.0062315654940903]],[[0.040843818336725,-0.023609565570951,0.024530772119761],[-0.0062467665411532,0.052395686507225,0.016814006492496],[-0.072845987975597,0.022323548793793,-0.014841036871076]],[[-0.031283780932426,-0.010345572605729,0.023133020848036],[-0.010063498280942,-0.029714569449425,0.023976970463991],[-0.027586499229074,-0.015655484050512,0.04327642545104]],[[-0.045285828411579,-0.04888815805316,-0.025873696431518],[0.0090366508811712,-0.034361131489277,-0.047656625509262],[0.0088021559640765,-0.0076747117564082,-0.049020886421204]],[[0.020197981968522,-0.0231445543468,-0.012619888409972],[-0.036454699933529,-0.0033543799072504,-0.045903429389],[0.073227301239967,0.0096279634162784,-0.021340923383832]],[[0.03007347881794,-0.018406704068184,0.047895196825266],[-0.079477876424789,-0.03312349691987,-0.10248316824436],[-0.022791612893343,-0.0071752537041903,-0.034970682114363]],[[0.033229801803827,0.036641702055931,-0.10016895085573],[0.056839391589165,-0.00051287922542542,-0.0059871352277696],[0.071206480264664,-0.017558066174388,-0.018118020147085]],[[0.024730561301112,-0.034793756902218,0.047915007919073],[0.014165932312608,-0.042302452027798,-0.070559747517109],[0.035034224390984,0.010390328243375,-0.018298882991076]],[[-0.062539577484131,0.0072908638976514,-0.03093496337533],[0.00098074285779148,-0.0017558946274221,0.041822399944067],[-0.063524715602398,-0.028576027601957,0.0051662395708263]],[[0.025851668789983,-0.04034511372447,0.047186136245728],[-0.082880057394505,0.027350245043635,-0.00087535270722583],[-0.067311599850655,0.0026150764897466,0.0039792750030756]],[[-0.077045135200024,0.09175281971693,-0.04686226695776],[-0.052626095712185,-0.056787122040987,0.0060940058901906],[-0.0033942575100809,0.029011677950621,-0.08134413510561]],[[0.0094757676124573,-0.025353090837598,0.014079536311328],[0.04227377474308,0.052401673048735,0.066834412515163],[-0.015966296195984,-0.0071582598611712,-0.043851755559444]],[[-0.045266527682543,0.048871520906687,-0.067999131977558],[0.022219080477953,-0.011676979251206,-0.034834317862988],[-0.046551194041967,0.058907698839903,-0.013915133662522]],[[-0.015038262121379,0.031686522066593,0.028814062476158],[0.036351524293423,-0.035994485020638,-0.067034639418125],[0.011573887430131,0.033954665064812,0.055594101548195]],[[-0.052859101444483,0.019620848819613,-0.035224255174398],[0.045240420848131,0.010052134282887,0.041238378733397],[-0.0046799257397652,0.01233665086329,0.056795962154865]],[[0.055820945650339,-0.042194906622171,-0.023771442472935],[0.057963285595179,-0.020932201296091,-0.055664587765932],[0.025801178067923,-0.037374883890152,-0.0079609183594584]],[[0.022902285680175,0.024307595565915,-0.064147017896175],[-0.024923495948315,-0.029572932049632,-0.017277456820011],[-0.058024890720844,-0.017066176980734,0.04050387442112]],[[-0.074873253703117,-0.044818226248026,-0.033853728324175],[-0.056965664029121,0.047031249850988,-0.085651986300945],[-0.012669023126364,0.060010947287083,-0.065673388540745]],[[0.023789735510945,0.020759144797921,-0.01737205311656],[-0.037091325968504,-0.028638957068324,-0.0024183094501495],[0.048170898109674,0.063438318669796,0.021063048392534]],[[-0.0027404876891524,-0.019211441278458,-0.0022504564840347],[0.034092552959919,-0.015845207497478,0.023274771869183],[0.01886772364378,0.082509055733681,-0.069682277739048]],[[-0.02195280790329,0.050947956740856,-0.0057241814211011],[0.051808673888445,0.052650310099125,0.044686745852232],[0.03358006477356,-0.024374317377806,-0.016036672517657]],[[-0.0060050790198147,-0.040488041937351,0.010319056920707],[0.015900025144219,0.011914409697056,-0.0038858577609062],[-0.036930438131094,-0.011831848882139,0.026044311001897]],[[0.042936492711306,-0.00071744783781469,-0.038182910531759],[-0.027196248993278,-0.0056561050005257,0.035331804305315],[0.041468217968941,-0.044390544295311,0.039507269859314]],[[0.0051192473620176,0.036697268486023,-0.025697726756334],[-0.0022775623947382,-0.014028773643076,-0.057337895035744],[0.048542693257332,-0.031855411827564,0.0098670357838273]],[[-0.0052831498906016,-0.014536642469466,-0.0049959118478],[-0.0080316560342908,0.062034390866756,0.0070566078647971],[0.043127443641424,0.0027735605835915,0.061393011361361]],[[-0.010802765376866,0.023671282455325,-0.061136905103922],[-0.0085653522983193,0.077093258500099,0.014968873932958],[-0.079017400741577,-0.093223713338375,0.051144972443581]],[[-0.048600517213345,-0.030796943232417,-0.0018940167501569],[-0.05185978487134,-0.031891610473394,0.014454612508416],[0.048833817243576,-0.012617079541087,-0.059573519974947]],[[-0.017755640670657,0.0052290474995971,-0.030116874724627],[-0.020262949168682,0.021563459187746,-0.039590619504452],[-0.0019200545502827,-0.09772826731205,0.0019372522365302]],[[0.017582522705197,-0.079893387854099,-0.0014310126425698],[0.035634431988001,0.0033449765760452,0.033798865973949],[-0.046759463846684,0.033884573727846,0.029114980250597]],[[-0.0037059809546918,-0.049322228878736,-0.0094130467623472],[-0.027960777282715,0.0087480694055557,0.012300150468946],[-0.11018463969231,0.022578546777368,0.059526711702347]],[[0.054877817630768,-0.011192291043699,0.031971592456102],[-0.0008624533074908,0.0064841131679714,0.01919430308044],[0.021868526935577,-0.038990624248981,-0.043448474258184]],[[0.024513194337487,-0.0097124166786671,-0.025708217173815],[0.021871319040656,-0.024292314425111,-0.00010542436211836],[-0.026088869199157,-0.027144249528646,0.018459966406226]],[[0.033394698053598,-0.027380993589759,0.0060246237553656],[0.015417581424117,-0.059032630175352,-0.0041255364194512],[0.0038272677920759,0.0039848778396845,0.027458101511002]],[[0.039522293955088,0.046968415379524,0.0010868414537981],[-0.036951623857021,0.04174417257309,0.077444955706596],[-0.067682646214962,0.0015321779064834,0.012585826218128]],[[-0.02155071683228,-0.02880559489131,0.021468771621585],[-0.0181615203619,-0.041624523699284,-0.030263507738709],[-0.031074477359653,-0.021933909505606,0.0038163547869772]],[[0.02604485116899,-0.020185694098473,-0.021098591387272],[-0.0058652553707361,0.00047171488404274,0.012816583737731],[-0.0080079305917025,-0.029372675344348,-0.030019842088223]],[[-0.0069237262941897,-0.026376066729426,0.0054441755637527],[-0.057117611169815,0.048700906336308,-0.048669036477804],[-0.045295521616936,-0.03780060634017,-0.058889556676149]],[[-0.036619536578655,-0.061060115695,-0.057379353791475],[0.016910143196583,-0.025024501606822,0.024247378110886],[-0.017132041975856,0.010202011093497,-0.022364119067788]],[[-0.036437645554543,-0.014517008326948,-0.048287890851498],[-0.052223153412342,-0.0022223882842809,0.011845773085952],[0.039349805563688,0.012434463016689,0.040756326168776]],[[-0.0069118719547987,0.0067506968043745,-0.028721252456307],[-0.0073328423313797,0.02701585739851,-0.051464214920998],[0.0013338893186301,0.022964600473642,0.045587833970785]],[[0.014187584631145,-0.021847458556294,0.03074730373919],[0.046783570200205,0.021745627745986,-0.0099078789353371],[0.044940464198589,-0.0072820354253054,-0.010795737616718]],[[-0.029822718352079,0.028424115851521,-0.0032159418333322],[-0.035705853253603,-0.0054213469848037,0.037367258220911],[-0.02768762409687,-0.057857617735863,0.068652413785458]],[[0.012433271855116,-0.044922050088644,-0.061467178165913],[0.043005548417568,-0.024496281519532,-0.009624682366848],[0.015107330866158,-0.015438937582076,0.026197303086519]],[[0.025826195254922,-0.12781476974487,0.038086205720901],[0.018392991274595,-0.0054538259282708,0.00029915064806119],[0.017481591552496,0.078786924481392,-0.11848096549511]],[[-0.029853735119104,-0.0098588634282351,-0.095390193164349],[-0.052679106593132,-0.023875501006842,-0.00014764237857889],[-0.049758866429329,0.030016137287021,0.0027016813401133]],[[-0.024568522349,-0.076596200466156,0.0030637648887932],[-0.056774150580168,-0.033444967120886,0.03301552310586],[-0.0037374733947217,-0.035152167081833,0.016648840159178]],[[-0.0093527613207698,0.045571252703667,0.016503436490893],[-0.037137102335691,0.045307282358408,-0.018427141010761],[-0.018217606469989,0.065797001123428,0.020281156525016]],[[-0.096907332539558,-0.0035839478950948,0.045409243553877],[0.020465949550271,-0.044516436755657,0.045587565749884],[-0.043145030736923,-0.035595647990704,0.064329855144024]],[[-0.052770163863897,-0.033838998526335,0.069420628249645],[0.0213273614645,-0.014182846993208,-0.007155379280448],[-0.015940340235829,0.02698684297502,-0.037503555417061]],[[-0.071170337498188,-0.0023645374458283,-0.021004227921367],[-0.0095473425462842,0.069793991744518,0.027809623628855],[-0.048776067793369,0.029309930279851,-0.024721307680011]],[[0.015753986313939,-0.0019768623169512,-0.025568781420588],[0.018209995701909,-0.025718124583364,0.0051627471111715],[-0.037150632590055,0.022584559395909,0.0061380667611957]],[[-0.046769328415394,-0.01936305873096,0.0047480589710176],[-9.156035957858e-06,0.0071245566941798,-0.0021449602209032],[-0.022394344210625,-0.0058362754061818,-0.021373180672526]],[[-0.03035295009613,-0.017531428486109,-0.011242538690567],[-0.021323317661881,0.032696597278118,0.067345187067986],[0.077737800776958,-0.022711299359798,-0.035612970590591]],[[-0.041211798787117,0.057446554303169,-0.022246904671192],[0.029856525361538,-0.069688223302364,0.016831060871482],[-0.026430623605847,0.00060307566309348,-0.075740925967693]],[[-0.017675491049886,-0.060460645705462,-0.027000842615962],[0.02972717769444,-0.028059968724847,0.01948719471693],[-0.038787510246038,-0.039990365505219,-0.01856591925025]],[[-0.06847608089447,-0.059975408017635,-0.057656459510326],[-4.7256682591978e-05,-0.0049988562241197,-0.066946446895599],[-0.032539770007133,0.021856738254428,-0.0004546360578388]],[[-0.014980454929173,-0.004821680020541,-0.0045340699143708],[-0.029342452064157,0.035223107784986,-0.0099456012248993],[0.016973795369267,-0.059610530734062,0.053661689162254]],[[-0.056521952152252,0.028874257579446,0.016130030155182],[0.040326964110136,0.0017163034062833,0.0011919804383069],[0.02559026889503,0.018748743459582,-0.068137466907501]],[[0.019164558500051,-0.0039675617590547,-0.026215065270662],[0.0046681533567607,-0.061763737350702,0.015527659095824],[0.020722137764096,-0.010332511737943,-0.042860988527536]],[[-0.018128784373403,-0.042408369481564,0.049254599958658],[0.052489440888166,-0.13391536474228,0.036434929817915],[-0.10866519063711,-0.0073108323849738,0.021002264693379]],[[0.034103468060493,-0.043642744421959,0.0061017754487693],[0.1000569909811,0.031127724796534,-0.035918444395065],[-0.081198468804359,-0.022506868466735,0.097333818674088]],[[0.0068874591961503,0.0059515330940485,0.0014492920599878],[0.0053272596560419,0.018690552562475,0.011373998597264],[-0.10121363401413,-0.032895267009735,0.035384230315685]],[[-0.064056985080242,0.05406254902482,0.017064027488232],[-0.018112817779183,-0.0039226743392646,-0.017482036724687],[0.015208195894957,-0.0072959801182151,-0.0049298508092761]],[[0.018698675557971,0.03963490203023,-0.026636764407158],[0.010554912500083,0.016645461320877,-0.040082190185785],[-0.0627067014575,0.01538956258446,0.010766704566777]],[[0.04016724601388,-0.06404123455286,0.013266525231302],[-0.020403226837516,0.033879142254591,-0.040773943066597],[0.039801705628633,-0.082833714783192,0.0039664651267231]],[[0.024995222687721,-0.054695315659046,0.024469271302223],[-0.016266109421849,0.0045250961557031,0.06582798063755],[-0.017540847882628,0.046048749238253,0.004926968831569]],[[0.0084442207589746,0.055233411490917,-0.021039115265012],[0.068878136575222,-0.089014172554016,0.010476163588464],[-0.031617093831301,0.05550729110837,-0.022488502785563]],[[-0.030828222632408,0.0062682293355465,-0.015241117216647],[0.031090471893549,-0.039761107414961,0.023508228361607],[-0.037181451916695,0.0640664473176,-0.038461044430733]],[[0.022009957581758,-0.0035562056582421,-0.056517705321312],[-0.023561058565974,-0.093214564025402,-0.037198603153229],[-0.031016537919641,0.067735187709332,0.025898901745677]],[[0.0056913937442005,-0.025227889418602,-0.030328147113323],[0.02768137305975,0.0077895391732454,0.071913406252861],[-0.017322858795524,-0.025422787293792,0.00017258555453736]],[[-0.041763879358768,-0.00032218953128904,-0.0033785300329328],[0.029404664412141,-0.026016956195235,0.07055925577879],[0.0140828974545,0.042985625565052,-0.04463479667902]],[[-0.051051892340183,-0.018269222229719,-0.022451609373093],[-0.026434615254402,0.0074832737445831,0.070724360644817],[-0.027945797890425,-0.019076243042946,0.021707244217396]],[[0.020447488874197,0.038473349064589,-0.0061186803504825],[-0.004142071120441,0.0016497458564118,0.024600375443697],[-0.050100918859243,-0.01723750308156,-0.051809914410114]],[[0.0149269066751,0.0084300059825182,0.034124054014683],[0.066371463239193,0.0020015835762024,0.020092973485589],[0.072827011346817,-0.059925384819508,0.018602473661304]],[[-0.054114568978548,0.010690715163946,0.057140454649925],[-0.0095344968140125,0.0088517693802714,0.082608476281166],[0.058814689517021,-0.0087268128991127,0.033525202423334]],[[0.015308272093534,0.065063126385212,0.025444496423006],[-0.036906938999891,-0.016899352893233,0.026596551761031],[-0.038248993456364,0.025468496605754,0.073343761265278]],[[0.028173919767141,0.013646630570292,-0.049716845154762],[0.021195711567998,0.050462160259485,-0.06988188624382],[0.015877390280366,0.03791306912899,-0.0092989839613438]],[[-0.025841113179922,0.061945464462042,0.039167299866676],[-0.039589688181877,0.01499000005424,0.089227311313152],[-0.021108780056238,0.0095834610983729,-0.021825632080436]],[[-0.055716302245855,0.011279218830168,0.014486524276435],[0.076492287218571,-0.01334177237004,-0.027782872319221],[0.016053192317486,-0.0016120249638334,0.016519071534276]],[[-0.020866813138127,-0.051324978470802,-0.0012595183216035],[0.015632532536983,-0.00054521352285519,0.033102434128523],[-0.042429272085428,0.016986910253763,0.048194978386164]],[[0.017821732908487,-0.017232816666365,0.0091211749240756],[0.054988149553537,-0.042209658771753,0.024868780747056],[-0.0041815605945885,-0.050542961806059,-0.09360509365797]],[[-0.0014955651713535,0.011401614174247,-0.013690740801394],[-0.03099755756557,-0.013467913493514,-0.00045512255746871],[-0.022401308640838,-0.017830649390817,0.027331028133631]],[[-0.049883548170328,0.026179205626249,-0.029529908671975],[0.071741931140423,0.0092562474310398,-0.016162287443876],[0.014116401784122,-0.03719150274992,0.023892061784863]],[[-0.039326086640358,0.011915123090148,0.0064150793477893],[-0.0093177827075124,-0.046541400253773,0.015094308182597],[-0.0091360760852695,-0.0011841469677165,0.073669791221619]],[[-0.0056941392831504,0.059503428637981,0.0058274655602872],[0.019091513007879,0.012072541750968,-0.030460631474853],[-0.066091917455196,0.021453831344843,0.029291635379195]],[[-0.025269243866205,-0.057166483253241,0.0041176918894053],[0.010413001291454,0.018998011946678,-0.013546978123486],[-0.065237298607826,-0.051944505423307,-0.039211794734001]],[[-0.0623894110322,0.010152599774301,-0.03128420561552],[-0.061756238341331,-0.043312594294548,-0.019848780706525],[-0.059815034270287,0.039381068199873,-0.019820839166641]],[[-0.020657826215029,0.016856191679835,0.06534531712532],[-0.04594661295414,-0.049292888492346,-0.029014136642218],[-0.057114128023386,-0.065093442797661,0.038349498063326]],[[0.0049135419540107,0.0056356843560934,-0.020259412005544],[0.054654460400343,-0.010625709779561,0.0082163959741592],[-0.045563075691462,-0.018416808918118,0.0072690611705184]],[[-0.0019849501550198,-0.050396360456944,-0.052612021565437],[-0.035976622253656,-0.0063287252560258,-0.013997843489051],[-0.02289279922843,-0.019671626389027,0.012872613035142]],[[-0.016750428825617,-0.031476553529501,-0.054847780615091],[0.044914878904819,0.10473223030567,-0.094161473214626],[-0.0079084169119596,-0.069544948637486,-0.015311001800001]],[[-0.012064270675182,-0.038724683225155,-0.024554761126637],[0.015930194407701,-0.020230874419212,-0.016460325568914],[0.036689303815365,-0.039005756378174,0.019859986379743]],[[0.017137795686722,-0.0030862824060023,0.0059437397867441],[-0.01296800840646,0.048488520085812,-0.042800668627024],[0.06719446927309,-0.059182547032833,0.02966664545238]],[[-0.056744191795588,0.024847963824868,0.0040530203841627],[-0.065067477524281,-0.001753848977387,-0.063018716871738],[-0.011770746670663,-0.018916249275208,-0.03531064465642]],[[0.014514862559736,0.022933069616556,0.037357326596975],[0.033115394413471,-0.040560677647591,-0.037681996822357],[0.041803393512964,0.065892487764359,0.0091434838250279]],[[-0.0060336436145008,-0.026383420452476,-0.018982602283359],[-0.040413647890091,0.0052678124047816,0.060663904994726],[-0.019659992307425,-0.034809406846762,-0.021499855443835]],[[-0.025764709338546,-0.042211756110191,0.013401205651462],[-0.016365667805076,-0.002099882112816,0.040815964341164],[-0.036252856254578,0.076287873089314,-0.028427973389626]],[[-0.059285242110491,-0.011855395510793,-0.085887178778648],[-0.0075208563357592,0.074780382215977,-0.010185832157731],[-0.019125297665596,0.0031488144304603,0.051754329353571]],[[-0.084538489580154,0.0068114418536425,-0.010337751358747],[0.038047149777412,-0.031769938766956,-0.01998645812273],[-0.025055902078748,0.052125241607428,-0.0060873064212501]],[[-0.033204142004251,-0.027361648157239,0.010540687479079],[-0.080473065376282,0.026904799044132,-0.0013598704244941],[-0.061002388596535,0.057484287768602,0.026897275820374]],[[-0.02170274220407,-0.038729254156351,-0.029524859040976],[-0.021967705339193,-0.034746117889881,0.025781726464629],[-0.0015447523910552,0.025875631719828,0.037914454936981]],[[0.0044873347505927,-0.043417043983936,0.012953171506524],[0.045595165342093,0.090765304863453,0.020853752270341],[-0.085916914045811,-0.049140889197588,-0.020974164828658]],[[0.030868796631694,0.008116559125483,0.04270488768816],[-0.0078496355563402,0.01771217957139,-0.032477665692568],[0.014088658615947,0.0041773593984544,0.024953342974186]],[[0.020513214170933,-0.019903104752302,0.10638221353292],[-0.016167003661394,-0.016358191147447,0.0040099928155541],[0.019386526197195,-0.015874303877354,-0.058874901384115]],[[-0.057072460651398,-0.020010394975543,-0.026809992268682],[-0.0046792426146567,-0.0036926954053342,-0.020553721114993],[-0.044947687536478,-0.042272705584764,0.0090674227103591]],[[-0.069979585707188,0.020551448687911,0.052414752542973],[-0.020504456013441,-0.030595999211073,-0.056994508951902],[0.077729500830173,-0.015427808277309,-0.027311692014337]],[[-0.01704622246325,0.038202941417694,0.0096742007881403],[-0.028052443638444,0.01894124224782,0.0077639259397984],[-0.043351285159588,0.039911087602377,0.00018484544125386]],[[-0.035457041114569,0.034970831125975,-0.051278851926327],[-0.069426782429218,0.020719960331917,0.042702674865723],[0.067945033311844,0.023441936820745,0.014780153520405]],[[0.039367169141769,0.010822616517544,0.045870866626501],[-0.053445570170879,-0.05575018376112,0.055228672921658],[-0.044964086264372,0.034129377454519,-0.032986260950565]],[[0.00046273783664219,0.034615773707628,-0.044653818011284],[0.056868478655815,-0.013173308223486,0.083798997104168],[0.014873332343996,-0.080473989248276,0.041479658335447]],[[-0.013099512085319,0.018148623406887,-0.0093417810276151],[-0.0077079320326447,0.062204536050558,-0.026367435231805],[-0.028268551453948,-0.017925150692463,-0.018102448433638]],[[-0.021850312128663,-0.02929126098752,-0.002920045517385],[-0.02622159011662,0.003910846542567,-0.033748123794794],[0.012661357410252,0.015383156016469,-0.053440075367689]],[[-0.015375337563455,-0.056870777159929,0.066928140819073],[0.068979434669018,-0.070510305464268,-0.020823873579502],[-0.00073539605364203,-0.030057683587074,-0.038410250097513]],[[0.040633279830217,0.034865833818913,-0.020209027454257],[-0.031296297907829,0.028773672878742,0.0088684605434537],[-0.037259735167027,0.032381068915129,0.019120058044791]],[[-0.012990301474929,-0.0018060021102428,-0.0069336579181254],[0.039082013070583,0.044563509523869,-0.0026606284081936],[-0.052857425063848,-0.047866743057966,-0.026102313771844]],[[-0.038414590060711,-0.015762085095048,-0.022138774394989],[0.0021862017456442,0.085425198078156,-0.020787915214896],[0.046565659344196,0.026501059532166,-0.0088787861168385]],[[0.021853905171156,0.00010429031681269,0.037543494254351],[0.029930785298347,-0.07643349468708,-0.046834889799356],[-0.085219152271748,0.037801813334227,0.029704257845879]],[[-0.043567210435867,0.043921407312155,0.01025197468698],[-0.02712307497859,-0.062075477093458,0.037683587521315],[-0.088899776339531,0.017750326544046,-0.0074197938665748]],[[-0.018391044810414,0.068701170384884,-0.026660459116101],[0.0012388174654916,0.048320177942514,0.0080047864466906],[0.00085473980288953,0.016743207350373,-0.065096624195576]],[[-0.0014083272544667,0.029961420223117,0.0073296474292874],[-0.0052474923431873,-0.10253026336432,-0.031847182661295],[0.011546356603503,-0.0072296904399991,0.044126637279987]],[[0.0020281744655222,0.011428623460233,0.042731810361147],[-0.049649175256491,-0.0018186379456893,0.0047720363363624],[-0.025719227269292,-0.03159162029624,0.030773917213082]],[[0.025616161525249,-0.023794816806912,-0.042281337082386],[0.067723989486694,0.012665694579482,-0.043539207428694],[-0.0081609888002276,-0.030374655500054,-0.022230993956327]],[[-0.019879791885614,0.039585154503584,-0.036545924842358],[0.0242063626647,-0.08232270181179,-0.076753474771976],[0.011660701595247,0.053130716085434,-0.010011375881732]],[[-0.0019372384995222,0.0092487698420882,-0.012293943203986],[-0.0022344083990902,-0.085638545453548,0.0027888938784599],[0.0085318433120847,-0.0023065635468811,0.021671941503882]]],[[[-0.057671315968037,-0.019419092684984,0.047465912997723],[0.057132802903652,0.02981524169445,-0.030401481315494],[0.016598384827375,-0.0032282448373735,0.034885596483946]],[[0.01554367877543,-0.057934749871492,0.087068028748035],[-0.019128389656544,0.021397383883595,-0.022773927077651],[0.049311295151711,0.034126207232475,0.14701373875141]],[[0.052632674574852,0.036663085222244,-0.048027493059635],[0.025793492794037,0.0060927984304726,0.020136211067438],[0.069667406380177,0.019254399463534,-0.038300935178995]],[[-0.046714905649424,0.00092827872140333,0.025391101837158],[-0.096798829734325,0.02471299842,-0.022652773186564],[-0.010194661095738,0.062419362366199,-0.010507692582905]],[[-0.013224958442152,0.037416025996208,-0.024752933532],[-0.028652563691139,0.020416308194399,0.060988646000624],[0.0024485380854458,-0.071341648697853,-0.019451124593616]],[[-0.029946126043797,0.079647421836853,0.0058837058022618],[-0.02477128058672,0.071699060499668,-0.046166457235813],[-0.055832788348198,0.0039864536374807,0.011957728303969]],[[0.046022217720747,0.080240339040756,0.024705626070499],[-0.0049138218164444,-0.013281251303852,0.0044051478616893],[0.11946735531092,-0.0037298332899809,-0.057779237627983]],[[-0.0054523516446352,0.079923413693905,0.030882148072124],[0.041848253458738,-0.031817279756069,0.046119526028633],[0.069643393158913,0.047255348414183,0.055347502231598]],[[0.033320385962725,-0.0019252253696322,-0.11177431792021],[-0.028126858174801,0.04381525143981,0.054105155169964],[0.075605750083923,-0.044157058000565,0.09017588943243]],[[-0.0062365592457354,0.095401860773563,0.064005300402641],[-0.027751790359616,0.090097941458225,0.020255429670215],[-0.10299461334944,0.047490213066339,0.076160155236721]],[[0.051989685744047,-0.091751947999001,0.075287640094757],[0.022538639605045,0.074657745659351,0.030925652012229],[0.046813253313303,0.034395284950733,0.036388467997313]],[[-0.01019577588886,0.02643253467977,0.019929934293032],[-0.045428920537233,-0.050511695444584,-0.0052936035208404],[0.044925726950169,0.032871194183826,0.058310445398092]],[[0.032337915152311,-0.046077769249678,0.084252581000328],[-0.0045009753666818,-0.0045983116142452,0.0050273849628866],[0.015093171969056,0.048461440950632,0.020235080271959]],[[-0.02983089722693,-0.016140220686793,0.02351213619113],[0.014446447603405,0.026278836652637,0.041731659322977],[0.0068279835395515,0.05722364410758,-0.0048348088748753]],[[0.043474275618792,-0.024659037590027,-0.069047175347805],[0.22217455506325,0.17157438397408,0.046608380973339],[0.12446577847004,0.11514799296856,0.074024856090546]],[[-0.037889432162046,-0.081735767424107,-0.052248328924179],[-0.0018482182640582,-0.026485826820135,-0.066333472728729],[-0.039745382964611,-0.055403176695108,-0.048864733427763]],[[0.020508531481028,0.0083904797211289,-0.050695046782494],[0.052079916000366,0.087990991771221,-0.0072061130777001],[0.014344409108162,-0.012490268796682,-0.062879242002964]],[[-0.013432520441711,-0.041557263582945,-0.019098814576864],[-0.047103352844715,-0.070991538465023,-0.0028119953349233],[-0.060037441551685,-0.038330364972353,-0.019347567111254]],[[0.11887063086033,-0.03259950876236,-0.092603266239166],[0.044712033122778,-0.054328661412001,-0.017457952722907],[0.0022914076689631,0.021564656868577,0.020150875672698]],[[-0.030460262671113,0.060656055808067,0.14135311543941],[0.015976097434759,0.030385419726372,-0.017229456454515],[-0.011947994120419,-0.07045841217041,-0.017033157870173]],[[0.027463998645544,-0.032980088144541,0.012163539417088],[0.011915137059987,0.012214082293212,0.039533864706755],[0.052319843322039,0.0088519202545285,0.041534807533026]],[[0.011546623893082,-0.020579801872373,-0.047349318861961],[-0.0012198679614812,0.016420921310782,0.073181509971619],[0.03559947013855,0.010532412678003,0.13353238999844]],[[-0.022383397445083,-0.044410809874535,0.04445768892765],[0.021703265607357,0.057546284049749,0.049186881631613],[0.01213002204895,-0.020203057676554,-0.028503645211458]],[[-0.014950651675463,-0.036882005631924,0.0062512676231563],[0.039295930415392,0.0038242461159825,0.044162154197693],[0.046703465282917,0.03337836265564,-0.084994770586491]],[[0.093552134931087,0.022079003974795,-0.11289422214031],[-0.025323344394565,0.027667805552483,0.081194311380386],[0.0419537499547,-0.0019874211866409,-0.02707345597446]],[[-0.040194317698479,0.055527221411467,0.015148360282183],[0.0053414241410792,0.018492402508855,0.03896401450038],[0.062437798827887,0.041348539292812,0.047045968472958]],[[0.078234128654003,0.098398745059967,-0.011357557028532],[0.040114626288414,0.10467993468046,0.071091555058956],[-0.00039752191514708,0.035528343170881,0.018137441948056]],[[-0.011307328008115,-0.0036871596239507,0.087726056575775],[0.038260474801064,-0.0051593147218227,-0.015644390136003],[0.046057008206844,-0.043321456760168,0.055739428848028]],[[0.030785387381911,0.001806759275496,-0.042219139635563],[0.023632474243641,0.089864976704121,0.020117705687881],[-0.011737821623683,0.010755479335785,0.072985507547855]],[[0.081592224538326,0.012520461343229,0.027651412412524],[0.074086233973503,-0.042730856686831,1.4221159290173e-05],[0.14241282641888,0.051003120839596,0.11376161128283]],[[-0.010597645305097,0.029978353530169,0.05133318156004],[-0.028637988492846,-0.032246444374323,0.014439163729548],[0.10210797190666,-0.026006586849689,0.0038638089317828]],[[0.054995108395815,0.092220328748226,0.067297741770744],[-0.065463103353977,0.0081661501899362,0.035857528448105],[0.069078117609024,-0.0058359378017485,-0.027940114960074]],[[0.047687564045191,0.01052011270076,-0.051613125950098],[0.02986716479063,0.0015638110926375,0.0434888638556],[0.094412378966808,-0.028428666293621,0.037502005696297]],[[0.047638602554798,0.082399278879166,0.01947033777833],[0.052740424871445,-0.086549304425716,0.01756402105093],[0.00055580079788342,-0.069654032588005,-0.090589419007301]],[[0.047904919832945,-0.030871612951159,-0.01560596190393],[0.077590450644493,-0.0083317859098315,0.023600682616234],[0.011234239675105,-0.025424053892493,-0.00027348418370821]],[[-0.068398050963879,-0.0001654856314417,-0.0078705912455916],[0.011724239215255,0.056100867688656,-0.013238533399999],[0.025436457246542,0.08619100600481,-0.012410162016749]],[[-0.054126568138599,-0.034484412521124,-0.013786679133773],[-0.027917355298996,-0.030164396390319,0.0015318512450904],[-0.022949563339353,-0.034383755177259,-0.065152019262314]],[[0.082549884915352,0.0026675034314394,0.070399709045887],[-0.024678707122803,0.001762546482496,-0.011242406442761],[-0.097003899514675,-0.035029374063015,0.0047953887842596]],[[0.046047195792198,0.050860751420259,-0.066353932023048],[0.0564457885921,0.019453894346952,0.10126855969429],[0.025563111528754,0.079573556780815,0.009290280751884]],[[-0.030481560155749,-0.05899865180254,0.021149652078748],[-0.026415975764394,0.049317616969347,-0.038175780326128],[0.010246118530631,0.010651931166649,0.12588958442211]],[[0.11334381997585,-0.051617790013552,-0.027323378250003],[-0.048842586576939,0.012592430226505,0.016345210373402],[-0.011797697283328,-0.048736680299044,-0.028177246451378]],[[0.059229593724012,-0.0018261312507093,0.002744700293988],[0.052056666463614,0.034186206758022,0.022875305265188],[-0.0049204346723855,-0.027838075533509,0.067531518638134]],[[0.044960420578718,0.03983112424612,-0.026500564068556],[0.0073326234705746,0.065219379961491,-0.057777859270573],[-0.0092333722859621,-0.044877305626869,-0.018687279894948]],[[0.041319809854031,-0.017530350014567,-0.01718189753592],[-0.035638704895973,-0.014718047343194,0.020075269043446],[-0.036047950387001,0.0218136459589,0.0057106856256723]],[[-0.015973582863808,-0.044517762959003,0.04936408996582],[-0.0638727247715,0.022459549829364,0.078051514923573],[-0.023279793560505,-0.0015955908456817,0.010579423047602]],[[0.019819153472781,0.047274634242058,0.070453561842442],[0.16778609156609,0.076662413775921,-0.019103435799479],[0.08410157263279,-0.010806822218001,0.063636682927608]],[[0.008692404255271,-0.069725029170513,-0.0021547605283558],[-0.0042568235658109,-0.021127719432116,0.020606618374586],[0.023322692140937,0.018928015604615,0.064321979880333]],[[-0.042814861983061,0.00011186507617822,-0.00039766050758772],[0.032735593616962,0.055312976241112,-0.017123885452747],[-0.084817506372929,0.046864192932844,0.035791702568531]],[[0.051731865853071,-0.0021098023280501,0.1063539609313],[-0.0233119353652,-0.029389226809144,0.062367424368858],[-0.0018573770066723,-0.013832462951541,0.052297204732895]],[[0.032101295888424,-0.019233463332057,0.044434383511543],[0.015484810806811,0.058147061616182,-0.019775586202741],[-0.01280524674803,0.13907590508461,-0.017572851851583]],[[-0.046044867485762,0.0048325629904866,0.10652134567499],[-0.062591426074505,-0.03852304071188,-0.0014818414347246],[-0.11434515565634,-0.019021425396204,0.029235024005175]],[[-0.0091117024421692,0.048479598015547,0.049491487443447],[-0.05103825032711,-0.079447850584984,-0.056190330535173],[0.15183658897877,0.03734190762043,-0.022541334852576]],[[-0.050268616527319,0.031401835381985,-0.032600063830614],[-0.005668458994478,0.039707116782665,0.033399969339371],[0.033303912729025,0.0038494339678437,-0.11247628927231]],[[0.10918806493282,0.034359205514193,0.096701897680759],[0.010450948961079,0.012250838801265,-0.024255771189928],[0.045525319874287,0.0020413508173078,-0.031636793166399]],[[-0.027434641495347,0.021048942580819,0.093621961772442],[0.047731731086969,-0.058727666735649,0.018946835771203],[-0.050827138125896,-0.033190604299307,-0.0299809332937]],[[0.02479718439281,-0.065460681915283,0.015821598470211],[-0.026189133524895,-0.055844251066446,0.02405546233058],[0.080112874507904,-0.026358481496572,0.10809528082609]],[[-0.01579393260181,-0.019304128363729,-0.10800790786743],[-0.015660459175706,-0.013390440493822,0.051672626286745],[-0.053334664553404,0.018424088135362,-0.059304628521204]],[[0.08533226698637,-0.027404149994254,-0.04854378849268],[-0.029301926493645,0.01769357919693,-0.074178084731102],[-0.032210558652878,-0.038567066192627,-0.018909640610218]],[[0.084751762449741,0.042611390352249,0.033311754465103],[0.023194156587124,0.0010359425796196,0.085078582167625],[0.048515368252993,-0.0018582759657875,0.070150725543499]],[[-0.031062325462699,-0.025480845943093,0.013706029392779],[-0.011701440438628,0.01987093128264,-0.11731392890215],[-0.031402371823788,0.052994411438704,-0.0035171140916646]],[[0.062616169452667,-0.040067002177238,0.024983089417219],[0.021830441430211,0.074773393571377,0.041111502796412],[-0.05228166282177,0.060518346726894,-0.052792739123106]],[[-0.021496899425983,0.023116089403629,-0.011222696863115],[-0.055006071925163,-0.038604509085417,0.033852841705084],[-0.05476962774992,0.020551305264235,-0.023306101560593]],[[-0.038405459374189,-0.059131637215614,-0.0033471297938377],[0.025315642356873,-0.035252138972282,-0.024302253499627],[0.0033047036267817,-0.017251685261726,-0.029947957023978]],[[0.021974366158247,0.0090242149308324,0.018977005034685],[0.014403029344976,0.031180491670966,0.08871153742075],[0.069139264523983,-0.040393590927124,-0.047590468078852]],[[0.061759833246469,0.023957513272762,-0.036913968622684],[0.06574922055006,0.045990254729986,0.024916127324104],[0.049169637262821,-0.01477284822613,0.016062123700976]],[[0.040153864771128,0.019503742456436,-0.01977613568306],[-0.088233344256878,0.060381107032299,-0.049830731004477],[-0.034578386694193,-0.016729505732656,0.038252003490925]],[[0.080269984900951,-0.017321914434433,-0.01998008415103],[0.049269508570433,0.03787362575531,0.066543623805046],[0.12674504518509,0.097451493144035,0.064589470624924]],[[0.041133150458336,0.029566982761025,-0.014069049619138],[0.032280091196299,0.024134427309036,0.012103145010769],[-0.0068383957259357,0.075791478157043,0.065194144845009]],[[0.013864275999367,-0.019987909123302,0.060172840952873],[-0.062906913459301,-0.019381530582905,0.0011431159218773],[0.074780307710171,0.014125250279903,0.03656791895628]],[[0.064375847578049,0.046828404068947,0.080006875097752],[0.048422992229462,-0.044527865946293,0.091513313353062],[0.094435192644596,0.1147450953722,0.047279842197895]],[[-0.034443914890289,0.085215531289577,-0.00082531536463648],[0.03940661996603,0.020742893218994,-0.084925659000874],[0.0055137416347861,0.027227304875851,-0.0062405760399997]],[[0.1237271502614,0.089678302407265,0.024800008162856],[-0.013755199499428,0.026149773970246,0.011935289017856],[0.025030376389623,0.016172675415874,0.058346632868052]],[[0.049694802612066,-0.067304201424122,-0.045918673276901],[-0.025250909850001,-0.04947841539979,0.028163861483335],[0.019643208011985,-0.031224085018039,0.048560928553343]],[[0.074388526380062,-0.013071455061436,0.0014208714710549],[0.090486824512482,0.096673235297203,0.029042659327388],[0.044047635048628,0.065817885100842,-0.073567628860474]],[[-0.013913770206273,-0.016279608011246,0.032912787050009],[-0.01621576026082,-0.031913246959448,0.043708801269531],[0.00055620318744332,-0.055469267070293,0.0032684821635485]],[[-0.036417704075575,-0.024719793349504,0.035709153860807],[0.085979782044888,-0.14020060002804,0.0058421571739018],[0.024025740101933,-0.0072354506701231,-0.0048825247213244]],[[-0.016962325200438,0.038587562739849,0.0094177694991231],[0.034476574510336,7.7368371421471e-05,-0.026188204064965],[-0.043397858738899,0.060675978660583,-0.043018221855164]],[[0.080251820385456,0.024620098993182,0.052873533219099],[0.087826706469059,-0.021875074133277,0.012626525945961],[0.041183024644852,-0.062824532389641,0.077428326010704]],[[0.0048230341635644,-0.034587159752846,-0.019785143435001],[-0.024054227396846,0.05966355279088,-0.029608080163598],[0.047208566218615,0.027948813512921,-0.012435344047844]],[[-0.012031033635139,-0.06733775883913,0.026763504371047],[-0.076110929250717,-0.06821283698082,-0.016043910756707],[-0.021179230883718,0.01040174625814,0.0875079408288]],[[-0.018005877733231,0.048886496573687,-0.067831330001354],[-0.027393210679293,0.13048031926155,0.032473128288984],[0.045397080481052,0.010406908579171,0.055460531264544]],[[0.057733945548534,-0.01928505115211,0.020200908184052],[0.028258185833693,0.047618757933378,0.039576068520546],[0.075690731406212,0.00043800671119243,-0.038290649652481]],[[-0.035290982574224,0.016359508037567,-0.036597084254026],[0.069587424397469,-0.013631301932037,-0.014094462618232],[0.0015922439051792,0.030079007148743,0.034710392355919]],[[0.050679702311754,-0.026490565389395,0.040116094052792],[-0.038245793431997,0.0028820068109781,-0.030396865680814],[0.061744507402182,-0.0048430310562253,0.11351239681244]],[[-0.021745715290308,-0.0080228289589286,-0.020935580134392],[0.0022419639863074,-0.010473118163645,0.044470358639956],[-0.065170876681805,0.0042672073468566,-0.059806179255247]],[[-0.067784957587719,-0.044922389090061,0.03046709112823],[0.016528088599443,0.045220881700516,0.025949725881219],[0.010565990582108,-0.026897946372628,-0.015153971500695]],[[0.01645802333951,0.057984385639429,0.036597084254026],[0.065189994871616,0.044753164052963,0.035346612334251],[-0.081106320023537,0.028649814426899,-0.025011505931616]],[[0.15240493416786,-0.01189405657351,0.051492460072041],[0.14800083637238,-0.016508216038346,0.035264857113361],[0.087806776165962,0.00061666476540267,0.058183871209621]],[[-0.025788558647037,-0.025369891896844,0.036249838769436],[-0.023043500259519,-0.03810391575098,0.15366818010807],[-0.0083908494561911,-0.015795117244124,0.045599456876516]],[[-0.034484017640352,0.058273706585169,-0.064829088747501],[0.090234957635403,0.057506743818521,0.084583051502705],[0.058325883001089,0.011047477833927,-0.022532891482115]],[[-0.028975347056985,0.031298756599426,0.0096779186278582],[0.080203451216221,-0.074733793735504,0.022097539156675],[0.073112316429615,0.0060446667484939,0.018488319590688]],[[0.031321462243795,-0.038654912263155,0.058922991156578],[0.006439627148211,0.040740933269262,0.044964801520109],[-0.075606793165207,0.017225258052349,0.056380219757557]],[[-0.05814353749156,-0.066668689250946,-0.0072799460031092],[-0.043458644300699,-0.020714648067951,0.047207802534103],[-0.089839279651642,-0.067486390471458,-0.013179592788219]],[[0.045438036322594,-0.096395388245583,-0.018415359780192],[0.024141829460859,0.10737452656031,-0.020020367577672],[0.031434152275324,0.069919764995575,-0.074410438537598]],[[0.021855365484953,0.069635540246964,0.012819747440517],[0.033046558499336,-0.035681907087564,0.052923392504454],[-0.0086061218753457,-0.00059661868726835,0.030733868479729]],[[0.014697541482747,0.15070109069347,-0.0046623721718788],[0.033217623829842,-0.012371095828712,-0.013076750561595],[0.06720244884491,-0.030498700216413,0.015672521665692]],[[0.040645495057106,-0.01874877139926,0.081050731241703],[0.041775055229664,0.049507617950439,-0.006685156840831],[-0.040369909256697,0.044858403503895,-0.0056290337815881]],[[0.084943346679211,-0.013210953213274,0.0030546160414815],[0.034856792539358,0.039655402302742,-0.042731806635857],[0.0010160234523937,0.010420879349113,0.070511557161808]],[[-0.067564830183983,-0.10655358433723,0.012115315534174],[0.034557648003101,-0.069422155618668,-0.019994692876935],[0.056675154715776,0.020251160487533,-0.023632235825062]],[[0.0059189302846789,-0.0024558801669627,0.008299476467073],[-0.020780120044947,0.005640690214932,0.027592517435551],[-0.03694299980998,0.0065671931952238,0.011986626312137]],[[0.031160091981292,-0.016480164602399,-0.032434966415167],[0.0044170464389026,-0.082713104784489,-0.01671114936471],[0.11989137530327,-0.093816310167313,0.031872097402811]],[[0.076731696724892,0.05164710059762,-0.054319437593222],[0.083334267139435,0.078495278954506,-0.010467260144651],[0.030858557671309,0.03134460747242,-0.024399941787124]],[[0.016526985913515,0.041346177458763,0.04797550663352],[-0.0029235119000077,0.051049664616585,-0.029460154473782],[-0.00045165963820182,-0.0092299887910485,0.002820425434038]],[[0.011933218687773,-0.049605276435614,-0.056302115321159],[0.042596701532602,-0.024917559698224,0.10742850601673],[-0.017073405906558,-0.0059278174303472,-0.068982221186161]],[[0.023935621604323,0.11682736873627,0.040604200214148],[-0.028472511097789,0.07105553150177,0.093662440776825],[0.032194636762142,0.028433809056878,0.035796470940113]],[[0.017837705090642,-0.049662157893181,0.0047456496395171],[0.033428553491831,-0.019903350621462,0.12199261039495],[0.02668903209269,-0.027849474921823,-0.053818982094526]],[[-0.010591120459139,-0.039914831519127,-0.0054181646555662],[0.0034396960400045,0.053808938711882,0.1175709143281],[0.010371795855463,0.066141068935394,0.027783500030637]],[[0.0094342110678554,0.11363414674997,-0.082588136196136],[0.088284641504288,0.00098329875618219,-0.02623287960887],[-0.0034184823743999,0.022050518542528,-0.0018182973144576]],[[0.086209930479527,-0.070321395993233,0.061172846704721],[0.037647113204002,0.0420245192945,-0.0013832168187946],[0.056900948286057,0.029918018728495,0.036099210381508]],[[-0.062621548771858,-0.090630620718002,-0.023195596411824],[-0.032144159078598,0.037213649600744,-0.01568103954196],[0.00020537618547678,0.027277644723654,0.058012455701828]],[[-0.0045577338896692,-0.011664877645671,0.008226977661252],[0.052913215011358,0.065862096846104,0.0044497190974653],[-0.063902884721756,-0.09729541093111,0.014854564331472]],[[0.014683363959193,-0.018167845904827,-0.0085487077012658],[0.044957283884287,0.051757648587227,-0.012857334688306],[-0.053460918366909,-0.045035403221846,-0.0080135213211179]],[[0.065905712544918,-0.0078124296851456,-0.012074579484761],[0.02601109072566,-0.019439060240984,-0.031760361045599],[0.005413313396275,0.05138386040926,-0.072847925126553]],[[0.033553335815668,-0.10270515829325,0.046578332781792],[-0.060094449669123,-0.022503100335598,0.044180996716022],[0.041462615132332,0.014487247914076,0.073801554739475]],[[-0.0032417690381408,-0.054835364222527,-0.074517026543617],[0.0074580386281013,0.024592721834779,-0.017909128218889],[0.062139458954334,0.09157121181488,-0.096763953566551]],[[-0.057737678289413,0.025469347834587,-0.075560420751572],[-0.012612366117537,0.0022675485815853,-0.096404939889908],[-0.026901185512543,0.012134083546698,0.081462539732456]],[[0.027848903089762,0.013469867408276,0.052916817367077],[-0.00043398840352893,0.0032290015369654,0.1204022243619],[0.032685745507479,0.093618035316467,0.14332228899002]],[[0.045123059302568,-0.03599601238966,-0.0216742772609],[0.037388831377029,0.029168521985412,0.034947045147419],[0.018087770789862,0.012028873898089,-0.0043711694888771]],[[-0.021398831158876,-0.021462617442012,0.059437077492476],[0.039488051086664,0.0076148249208927,0.024340759962797],[-0.051692694425583,0.032732900232077,0.0074871247634292]],[[0.028076788410544,-0.074825420975685,0.042996026575565],[-0.036521546542645,-0.072140336036682,0.014075462706387],[0.015761563554406,-0.02033550105989,-0.032018803060055]],[[0.075254693627357,0.071395963430405,-0.0054066274315119],[0.019467709586024,-0.045885466039181,0.036916367709637],[0.079966358840466,0.047387395054102,-0.046572715044022]],[[0.032962869852781,0.026720317080617,0.0021898427512497],[0.11499091237783,-0.039126567542553,0.0095333596691489],[-0.013606716878712,-0.056684207171202,-0.042265150696039]],[[0.013812832534313,-0.032887347042561,0.026554387062788],[0.049787282943726,-0.031183732673526,-0.10485067218542],[-0.036586120724678,-0.023640995845199,-0.00087858166079968]],[[-0.01388634275645,0.073692210018635,0.004203419201076],[-0.046396158635616,0.092281125485897,0.0097982296720147],[-0.003317438531667,-0.047894962131977,0.035121332854033]],[[-0.01380966603756,-0.020668806508183,0.038402039557695],[0.00508793303743,0.031114445999265,0.12162155658007],[0.019261861220002,0.027652319520712,-0.025245254859328]],[[0.072532065212727,-0.046632789075375,-0.023358039557934],[0.062846072018147,0.08342008292675,0.019967790693045],[0.053228955715895,-0.0083664022386074,0.032613538205624]],[[0.029991462826729,0.055694453418255,0.00097503897268325],[0.055515870451927,0.018371172249317,0.0086381947621703],[0.022956212982535,0.12415095418692,0.014257816597819]],[[0.046739153563976,0.011720631271601,-0.012306132353842],[0.01868549361825,-0.060695499181747,0.016869831830263],[0.070742249488831,-0.0011135145323351,0.089758820831776]]],[[[0.048825681209564,0.055745031684637,0.057727627456188],[0.12270176410675,0.0081319278106093,0.027107099071145],[-0.048497568815947,0.054236955940723,-0.01453295443207]],[[0.0046182502992451,0.021366467699409,-0.013828535564244],[-0.066203281283379,0.086265549063683,-0.088004902005196],[-0.050312072038651,0.012798958458006,0.0044317021965981]],[[0.026875879615545,-0.077136404812336,-0.13664403557777],[0.011118982918561,0.062948279082775,-0.080959878861904],[0.097806520760059,0.010117925703526,0.0070255976170301]],[[0.047910820692778,0.019704824313521,-0.026411032304168],[-0.061514157801867,0.090665973722935,-0.02501704543829],[0.0078971926122904,-0.06248090043664,0.033710725605488]],[[-0.022435175254941,-0.0038182358257473,-0.012316304259002],[-0.073946751654148,0.018565863370895,0.079153291881084],[-0.036341361701488,0.033701870590448,0.0070827784948051]],[[0.016976358368993,0.089073844254017,0.053270507603884],[0.06561254709959,-0.055793106555939,0.10588501393795],[-0.023935955017805,0.076277375221252,0.16701643168926]],[[-0.1233536824584,-0.032968979328871,-0.035068221390247],[0.040900606662035,0.073365487158298,0.023021848872304],[0.038297411054373,-0.064827091991901,0.027168989181519]],[[-0.07443243265152,0.024288892745972,0.018126970157027],[0.087630107998848,0.047993525862694,-0.033346217125654],[0.07227548956871,0.021177349612117,-0.046656265854836]],[[-0.054613526910543,0.082335829734802,0.1217644661665],[0.046249471604824,0.02183323353529,-0.086725845932961],[-0.022216659039259,-0.068244718015194,0.022794334217906]],[[0.078116104006767,-0.11657623946667,0.040474023669958],[0.066697329282761,-0.035584453493357,0.035893075168133],[0.020513975992799,-0.028985485434532,0.038010586053133]],[[0.015173979103565,0.044265616685152,0.088375374674797],[0.098885096609592,0.021530974656343,-0.077185995876789],[-0.084324903786182,0.054174404591322,-0.023300673812628]],[[0.034147281199694,-0.080570057034492,-0.046185456216335],[-0.0097398879006505,0.01031315792352,-0.023092940449715],[0.015643250197172,0.010818180628121,-0.0010046376846731]],[[0.021080071106553,-0.12470075488091,-0.041115611791611],[-0.011735859327018,-0.067943185567856,0.099854409694672],[-0.027276596054435,0.027481773868203,0.050885546952486]],[[-0.023711279034615,0.023416224867105,0.0091789290308952],[0.067641079425812,-0.02182562276721,0.052603416144848],[-0.030537445098162,-0.088285483419895,0.021111713722348]],[[-0.047789290547371,-0.088097251951694,0.072301864624023],[0.059038758277893,0.0085552064701915,0.085659809410572],[-0.031723100692034,0.085945665836334,0.16655485332012]],[[0.0016477488679811,0.0090209525078535,0.0082003939896822],[0.026438167318702,0.0046510454267263,0.0016007658559829],[-0.017164636403322,-0.057836331427097,-0.021662382408977]],[[0.054290238767862,-0.0095328073948622,0.01447741407901],[-0.06069403514266,0.069531552493572,0.027614736929536],[0.085236579179764,0.023437939584255,-0.022820083424449]],[[-0.051362030208111,0.1351472735405,-0.03473724797368],[0.010769127868116,0.014898027293384,-0.034141298383474],[-0.083762660622597,0.033009886741638,-0.016683638095856]],[[0.031134145334363,0.026971224695444,-0.02609227783978],[0.0079313805326819,0.10564897209406,-0.0017429437721148],[0.0075926976278424,-0.078641705214977,-0.052175797522068]],[[0.016961792483926,-0.046676605939865,0.056629590690136],[0.10098100453615,0.040549650788307,0.0074214460328221],[-0.0085441078990698,0.062548615038395,0.038854755461216]],[[0.062110476195812,0.010663704015315,-0.029533643275499],[0.02259074151516,-0.025118689984083,-0.046837732195854],[-0.039634596556425,0.082975439727306,0.05315824970603]],[[0.086089164018631,0.073977313935757,-0.035954087972641],[0.07518420368433,0.016280330717564,-0.090117916464806],[-0.023913143202662,0.073117434978485,0.021185589954257]],[[0.035552341490984,-0.030353110283613,0.049233868718147],[0.048849623650312,0.045032545924187,0.045381747186184],[-0.035272844135761,-0.0043108258396387,-0.010616228915751]],[[-0.011389827355742,0.077534012496471,-0.033556826412678],[-0.042734362185001,-0.032926447689533,-0.042823109775782],[-0.077699191868305,-0.0032899528741837,0.018938828259706]],[[0.05916415527463,0.066524147987366,-0.081980668008327],[0.05805255100131,-0.016257205978036,0.047779697924852],[-0.052108533680439,0.034705001860857,-0.0078924726694822]],[[-0.028298303484917,-0.028946295380592,-0.02963406406343],[-0.075109511613846,0.098824627697468,0.010367181152105],[0.048419494181871,0.054247919470072,-0.0063614854589105]],[[0.001437027240172,0.090545699000359,0.058531932532787],[-0.089698918163776,0.080648720264435,-0.02082983776927],[0.065882883965969,0.044966448098421,-0.041857101023197]],[[-0.030987473204732,0.046252351254225,-0.033883430063725],[0.030863789841533,0.059830486774445,-0.030843557789922],[0.075196497142315,0.024258941411972,0.023872893303633]],[[0.10183674842119,0.078759625554085,0.063920214772224],[-0.068854451179504,-0.055195946246386,0.020080905407667],[0.064869575202465,-0.020179003477097,0.055513776838779]],[[0.025761747732759,0.067834056913853,0.064708039164543],[-0.010682214982808,-0.02974901907146,0.038005795329809],[-0.060003709048033,0.080588564276695,0.027800666168332]],[[-0.034336626529694,0.030431143939495,-0.025634160265326],[0.023155776783824,0.028703549876809,0.033753044903278],[-0.021236278116703,0.032386869192123,-0.025924488902092]],[[-0.031888779252768,0.011277053505182,0.051239542663097],[-0.06322755664587,0.075469985604286,0.00061629514675587],[0.026085602119565,0.09002273529768,-0.027733363211155]],[[0.01301244366914,-0.0016903602518141,0.06096787750721],[0.0085805971175432,0.0030855315271765,0.042223293334246],[-0.0069235716946423,0.051659259945154,0.01261071767658]],[[-0.043125204741955,-0.029442118480802,0.078920401632786],[0.073349602520466,0.015031898394227,0.052042797207832],[-0.01217199396342,-0.027151117101312,0.11866005510092]],[[-0.015016539953649,-0.0012926430208609,-0.065520741045475],[0.070550292730331,-0.014169073663652,0.023743456229568],[0.03707954660058,0.11552868783474,-0.043503701686859]],[[0.058139130473137,0.052798844873905,-0.0031015258282423],[0.10547267645597,0.027753032743931,-0.046336036175489],[0.02245320379734,-0.0033834190107882,0.02033425681293]],[[-0.0088347960263491,0.006864211987704,-0.0010890658013523],[-0.0032064518891275,-0.013920851051807,0.0016473745927215],[0.049137677997351,0.038513574749231,0.025547748431563]],[[-0.0069164116866887,-0.00040597136830911,-0.0012407071189955],[-0.048061344772577,0.0039198445156217,-0.018758928403258],[0.005530851893127,-0.028610218316317,0.018610248342156]],[[-0.035510525107384,0.043008666485548,-0.052386216819286],[0.013041453436017,-0.059837821871042,0.042767971754074],[-0.048583727329969,-0.10893350839615,0.056557320058346]],[[0.046500042080879,-0.084765575826168,-0.014268198981881],[-0.074767269194126,0.010813313536346,0.056819844990969],[-0.0017824349924922,-0.058422688394785,-0.010676443576813]],[[-0.073129832744598,-0.013904192484915,0.025573723018169],[-0.0032801942434162,0.00034522076020949,-0.060594890266657],[0.022890198975801,0.086139857769012,-0.024315487593412]],[[0.0027789568994194,0.014364524744451,-0.0051326844841242],[-0.041730213910341,0.064620986580849,0.033620692789555],[0.032429721206427,-0.076523467898369,0.019131634384394]],[[0.082082107663155,0.11371806263924,-0.0014423846732825],[0.034304160624743,-0.067284047603607,0.097605250775814],[0.081206329166889,0.03269736841321,-0.039686497300863]],[[-0.00053674436639994,0.060426227748394,0.0303869638592],[0.0021726344712079,0.01887889392674,0.053473010659218],[0.025549946352839,0.029711041599512,0.047125477343798]],[[0.020592536777258,0.032417844980955,0.046863634139299],[0.034568205475807,-0.010002246126533,0.026629710569978],[0.019404828548431,0.025700053200126,-0.034974779933691]],[[-0.03235686570406,0.02716544829309,0.038533862680197],[0.0010826459620148,-0.009219010360539,0.034909177571535],[0.086225114762783,-0.002704466227442,0.015362116508186]],[[-0.019183104857802,0.10032290965319,0.070112802088261],[-0.0098648183047771,-0.078978843986988,-0.019371883943677],[0.006748906802386,0.036658056080341,0.026561725884676]],[[0.0075939656235278,-0.058940306305885,0.034740895032883],[-0.014943433925509,0.067906156182289,-0.018453629687428],[0.082470312714577,0.065258666872978,-0.0027954317629337]],[[0.027796383947134,-0.055052611976862,0.014774115756154],[0.001137648941949,0.031669564545155,-0.0037446783389896],[-0.035436399281025,0.050586506724358,-0.020530823618174]],[[0.05457004904747,0.0078166360035539,0.00373102305457],[0.022631086409092,-0.010781543329358,0.024125279858708],[-0.011177338659763,0.045968800783157,0.014279044233263]],[[0.010541708208621,0.063620857894421,-0.033732570707798],[-0.00036013123462908,-0.019063465297222,0.054281167685986],[-0.015344214625657,-0.063683621585369,0.034686967730522]],[[0.089123293757439,0.10438624024391,0.05200644955039],[0.099303647875786,0.074510626494884,0.015849390998483],[-0.085773080587387,-0.021429711952806,-0.020255863666534]],[[0.048721753060818,0.0095247989520431,-0.015257718972862],[-0.061848971992731,-0.011215168982744,0.024289660155773],[0.013517225161195,0.0627526268363,-0.030110444873571]],[[-0.004497698508203,0.061387162655592,0.082603476941586],[-0.17898301780224,0.016520978882909,0.022286519408226],[0.070079557597637,0.044800948351622,0.0028714300133288]],[[0.088932782411575,0.04103160277009,-0.0033725309185684],[-0.066040560603142,-0.0079840794205666,-0.047104742377996],[0.045464094728231,-0.058413080871105,0.02069684676826]],[[0.031240034848452,0.014878956601024,-0.037812057882547],[0.063025534152985,-0.053411155939102,0.017998095601797],[-0.011730442754924,-0.10683877766132,0.054127365350723]],[[0.023326799273491,0.0088823456317186,-0.044266857206821],[0.090087153017521,0.026449525728822,0.1314764469862],[-0.026598969474435,-0.061029728502035,0.017379874363542]],[[0.035482801496983,-0.062755279242992,-0.034080628305674],[0.016186928376555,0.032388873398304,0.038237493485212],[0.056510489434004,0.031946707516909,-0.0045783245004714]],[[-0.04590268433094,0.056178729981184,0.017799755558372],[-0.034604921936989,0.039047829806805,0.036628272384405],[-0.0018168012611568,0.15159167349339,-0.030523728579283]],[[-0.003818477736786,0.098028883337975,0.076124511659145],[-0.034451603889465,0.0094861751422286,0.031698815524578],[0.063999988138676,-0.012335286475718,0.15946760773659]],[[-0.026174392551184,-0.044626478105783,0.0076969834044576],[0.016231684014201,0.043931216001511,0.016168413683772],[0.016374971717596,0.024738322943449,0.078031189739704]],[[0.037380047142506,0.010204197838902,-0.00077173032332212],[0.089482225477695,-0.047448024153709,0.020570557564497],[-0.064431771636009,-0.018315203487873,-0.047927275300026]],[[0.05296428129077,0.032641381025314,-0.0012726180721074],[0.0075333821587265,0.070458009839058,-0.026820119470358],[0.05063695833087,0.058676201850176,0.032775674015284]],[[-0.030141774564981,0.033243246376514,-0.020401382818818],[0.087010152637959,0.058220446109772,0.0016722474247217],[0.02219046652317,0.0092452941462398,0.070065625011921]],[[-0.027456706389785,-0.0082901660352945,0.021982001140714],[0.04673932492733,0.016670703887939,-0.032777477055788],[0.0027088620699942,0.0074782236479223,0.062668092548847]],[[-0.031786933541298,-0.015011938288808,-0.022696617990732],[0.032400622963905,-0.017128333449364,0.035940282046795],[-0.040092013776302,-0.059731088578701,0.055594291538]],[[0.037721086293459,0.02439665608108,0.068202637135983],[-0.041748948395252,0.17542065680027,0.047230746597052],[0.05691983550787,0.0052541652694345,0.083688989281654]],[[0.044880464673042,0.030286209657788,0.00716737145558],[-0.0102165248245,0.030112866312265,0.041598178446293],[0.053090531378984,0.037990279495716,0.0007633258937858]],[[-0.04306622594595,-0.021518405526876,0.04800933226943],[-0.029849195852876,-0.022266075015068,-0.0028277332894504],[-0.0024434942752123,-0.01483750436455,0.12080501765013]],[[0.064146928489208,0.035444010049105,0.028000025078654],[0.037503689527512,0.02244252152741,0.011660228483379],[0.014542742632329,0.027989394962788,0.0025377990677953]],[[-0.052815247327089,0.12212563306093,-0.066049985587597],[0.039439678192139,-0.027012184262276,0.033545758575201],[-0.0088798869401217,-0.023905910551548,-0.0022567368578166]],[[-0.02482651732862,0.046740870922804,0.0039786212146282],[-0.077392123639584,0.024447411298752,-0.071040488779545],[0.02538632415235,-0.011236041784286,0.080378070473671]],[[0.029269585385919,0.050398271530867,0.023606846109033],[0.088905468583107,0.074668779969215,-0.011657355353236],[0.055343125015497,0.065814793109894,0.03023879788816]],[[-0.1155416443944,0.041380140930414,-0.047044400125742],[-0.026208369061351,-0.051791962236166,0.094425342977047],[0.05729615688324,0.038433887064457,0.071505583822727]],[[-0.00067391007905826,0.031403657048941,-0.0099510606378317],[-0.0064662955701351,0.04830876365304,0.012043838389218],[0.046644315123558,0.028164708986878,0.020661789923906]],[[-0.056311015039682,0.078390054404736,0.089012965559959],[0.033926196396351,0.022548094391823,0.0024775685742497],[-0.0060448283329606,0.05314389243722,-0.0181929692626]],[[-0.017319783568382,-0.025812052190304,0.025934344157577],[0.029208738356829,-0.033169351518154,0.0021747217979282],[-0.03287934884429,-0.00058713048929349,0.0083555374294519]],[[0.036652948707342,0.043349765241146,0.058191530406475],[0.0028620040975511,0.0010811034590006,0.0077638197690248],[0.0062678386457264,-0.084797658026218,-0.0057535120286047]],[[0.024123480543494,-0.015516391955316,0.073993295431137],[0.069175697863102,-0.06711632758379,0.10459986329079],[0.025651302188635,0.051140982657671,0.036815755069256]],[[0.051421374082565,0.0059838332235813,0.13724574446678],[-0.033032141625881,0.021028216928244,0.026152843609452],[0.030406426638365,0.0063244136981666,0.027799595147371]],[[0.024471854791045,0.024170586839318,0.033648889511824],[0.099391356110573,0.062822453677654,-0.026349494233727],[0.01594172604382,0.037310250103474,0.014155081473291]],[[-0.0024772451724857,0.047272980213165,-0.023125451058149],[-0.033082030713558,-0.022148638963699,0.057318456470966],[-0.028637373819947,0.062043845653534,-0.018148431554437]],[[-0.031937349587679,-0.057877913117409,-0.012168098241091],[0.10138162225485,-0.016059622168541,-0.013436738401651],[-0.074942044913769,-0.024303540587425,-0.026150783523917]],[[0.007368397898972,0.039174985140562,0.0059503060765564],[0.020663937553763,0.022031648084521,0.033423107117414],[0.012955001555383,0.062715262174606,0.002235536230728]],[[0.076444201171398,-0.05034913122654,-0.01847293227911],[0.055516611784697,0.045849531888962,-0.016049744561315],[0.04187673702836,-0.057484194636345,0.056125178933144]],[[0.033318605273962,-0.023498490452766,-0.0097198681905866],[-0.069935455918312,0.046801742166281,0.028682988137007],[0.022568551823497,-0.017360618337989,-0.048189245164394]],[[0.031147485598922,-0.040906339883804,-0.031082753092051],[-0.00079486146569252,-0.047060959041119,0.024384420365095],[0.062774740159512,-0.029052022844553,-0.020055416971445]],[[-0.012766723521054,0.013668841682374,0.050443012267351],[0.044114857912064,0.011228214949369,-0.017334869131446],[-0.026545139029622,0.039555929601192,0.042894434183836]],[[-0.054381269961596,0.045752212405205,0.0040144431404769],[-0.027033550664783,0.067550867795944,0.00025105159147643],[-0.046458680182695,-0.030273472890258,0.027769146487117]],[[0.050026457756758,-0.018115187063813,0.10933577269316],[0.024077158421278,-0.020245647057891,-0.017824031412601],[-0.031494420021772,0.0061841835267842,0.07169684022665]],[[0.065669976174831,-0.031471822410822,0.1046455129981],[-0.013264724984765,-0.015260787680745,0.042762506753206],[-0.00069069431629032,-0.001902267569676,-0.066976182162762]],[[0.024381743744016,0.037140142172575,0.01511372346431],[-0.054580230265856,0.022163150832057,0.027581254020333],[-0.039127096533775,-0.06404672563076,0.015229420736432]],[[0.0091135520488024,0.0413010828197,-0.0005715690786019],[-0.041982937604189,-0.069879166781902,-0.020682351663709],[-0.02745333686471,-0.011852935887873,0.00077291805064306]],[[-0.029780732467771,-0.00018777536752168,-0.097243934869766],[0.0086440742015839,0.038276586681604,0.010691627860069],[-0.019440144300461,0.044164426624775,0.051339097321033]],[[-0.0023198220878839,0.0045074461959302,-0.029627036303282],[0.065506257116795,0.034133642911911,0.0052905469201505],[-0.084659226238728,0.083516575396061,-0.082589171826839]],[[0.089452281594276,0.026074541732669,0.038912106305361],[-0.057698022574186,0.077449917793274,0.029987731948495],[-0.005931053776294,0.035253290086985,-0.031066592782736]],[[-0.0023299565073103,-0.092040553689003,-0.028296237811446],[0.053894478827715,-0.05353207141161,-0.02093456313014],[0.088150002062321,-0.013739447109401,-0.040217146277428]],[[0.0046401433646679,0.069365590810776,0.0035116693470627],[-0.016435746103525,-0.0085989534854889,0.042144645005465],[0.086236506700516,-0.013560432009399,0.092564962804317]],[[0.031336646527052,-0.033650230616331,0.042086627334356],[-0.045436516404152,-0.01483500842005,0.053849991410971],[0.042911883443594,0.0090460050851107,0.075084879994392]],[[0.061084277927876,0.039425287395716,0.032422672957182],[0.078148476779461,0.079322598874569,0.05179375782609],[0.0043721697293222,0.034983091056347,-0.070900715887547]],[[0.016074756160378,0.054099198430777,-0.027602894231677],[-0.0147675704211,0.04796689376235,-0.088182903826237],[0.053205791860819,-0.043260142207146,-0.020755138248205]],[[-0.01463629398495,0.041756100952625,0.10148659348488],[0.032991528511047,0.061714664101601,0.0064952825196087],[0.093557618558407,0.010985580272973,-0.049784943461418]],[[0.094130121171474,-0.026996398344636,-0.053378310054541],[0.011595191434026,0.11400216072798,-0.035976223647594],[-0.023124769330025,-0.012416251003742,0.039790321141481]],[[0.012283025309443,-0.061609674245119,0.019625797867775],[0.11397622525692,0.056855872273445,0.050186447799206],[-0.035278279334307,0.068978101015091,0.042168166488409]],[[0.083315998315811,-0.010445467196405,0.0034750963095576],[-0.049841161817312,0.043530568480492,-0.0062257475219667],[0.02896630205214,0.051599163562059,0.044383846223354]],[[0.0080306315794587,0.061379212886095,0.0065479003824294],[0.042817588895559,-0.025813246145844,0.04919384047389],[-0.047566507011652,0.11886756122112,0.084852404892445]],[[0.02072973921895,0.087260268628597,-0.06148637086153],[-0.0063283490017056,0.13424524664879,-0.048586010932922],[0.015522074885666,0.033767215907574,-0.077959045767784]],[[-0.03729197755456,-0.027361802756786,0.039427790790796],[0.097011610865593,0.15850673615932,-0.0081667685881257],[0.065127596259117,-0.0073964623734355,-0.022741060703993]],[[-0.0025382547173649,0.032802756875753,0.025795951485634],[0.05638300254941,0.03340757638216,-0.044845785945654],[0.018314084038138,0.037249345332384,0.0056396513246]],[[0.042013898491859,0.079890482127666,-0.014546717517078],[-0.0596878901124,-0.018544923514128,-0.028483742848039],[0.0093202143907547,0.034718997776508,-0.0059633245691657]],[[-0.013740200549364,0.025578062981367,0.020239267498255],[0.014348177239299,-0.07021963596344,-0.011631404049695],[0.023451220244169,-0.030372025445104,0.024448527023196]],[[0.099366329610348,0.072978891432285,0.051486916840076],[0.058626063168049,0.091490723192692,0.031954810023308],[-0.0037000842858106,-0.0029200282879174,0.014297535642982]],[[-0.02743811160326,-0.015921061858535,0.027178756892681],[-0.033075131475925,-0.019664069637656,0.017827374860644],[-0.039243198931217,0.042060185223818,-0.034144595265388]],[[-0.041550602763891,-0.033712618052959,0.039983615279198],[-0.052274197340012,-0.056480020284653,-0.0063562556169927],[0.030237590894103,0.033942706882954,0.016549106687307]],[[-0.022855224087834,0.086207836866379,0.0087367258965969],[-0.032941058278084,-0.038863323628902,-0.025179162621498],[0.0048022521659732,-0.017538456246257,0.037139978259802]],[[-0.034488148987293,0.047709509730339,0.020846927538514],[-0.020927499979734,0.01102870516479,-0.031130198389292],[0.073927976191044,-0.037680987268686,-0.010082076303661]],[[0.031912229955196,0.031432677060366,0.038041844964027],[0.080343641340733,-0.017237333580852,0.043911766260862],[0.027996812015772,0.062007185071707,-0.025705056264997]],[[3.0152856197674e-05,0.019388824701309,0.027824755758047],[0.076088182628155,-0.042671475559473,0.11368547379971],[-0.011053588241339,-0.0082235215231776,0.0361935980618]],[[0.064827784895897,-0.029284758493304,-0.061139021068811],[0.034825563430786,-0.025703378021717,-0.032601583749056],[0.013191603124142,0.0882763043046,0.03212833404541]],[[-0.079108029603958,-0.028870889917016,0.012067859061062],[0.037670627236366,0.042675346136093,-0.016809102147818],[-0.040503434836864,-0.0020253406837583,0.019615644589067]],[[-0.047289442270994,-0.0042394162155688,0.027257638052106],[0.029360182583332,0.0038615476805717,0.019508408382535],[0.041107252240181,0.027559876441956,-0.0043896995484829]],[[-0.021703038364649,0.0098268100991845,0.01493573281914],[-0.0078393993899226,-0.065000616014004,0.065328508615494],[-0.027889229357243,0.050075203180313,0.046046916395426]],[[-0.0043384390883148,-0.030878724530339,-0.00058105634525418],[-0.059604790061712,0.0063115442171693,0.07263271510601],[0.09032529592514,-0.011249538511038,0.059623848646879]],[[0.056043408811092,0.021345211192966,-0.052328582853079],[-0.061142839491367,-0.015931079164147,0.039495915174484],[-0.010052193887532,-0.016927894204855,0.019995152950287]],[[0.075034230947495,0.024458153173327,0.044073261320591],[0.043787680566311,0.06713879108429,0.039512220770121],[-0.031898453831673,0.03585085645318,0.037107586860657]],[[-0.044820100069046,-0.094264976680279,0.044118620455265],[0.096479468047619,0.021804479882121,-0.044608999043703],[0.063841491937637,0.063917443156242,0.043637920171022]],[[0.11316311359406,-0.053565997630358,0.02086073346436],[-0.035106677561998,0.061361469328403,-0.026288919150829],[-0.020350052043796,0.069380596280098,-0.035100903362036]],[[-0.0019268479663879,-0.050957404077053,-0.0050935004837811],[-0.063913986086845,-0.083741813898087,-0.028108043596148],[-0.061167057603598,-0.017038151621819,0.019215434789658]]],[[[-0.030975038185716,0.050188798457384,0.02234579063952],[0.0035012217704207,0.022040339186788,-0.071177080273628],[-0.10074524581432,0.021309038624167,-0.031471010297537]],[[-0.035283777862787,-0.031633760780096,0.043625358492136],[-0.048566397279501,-0.039862267673016,0.013673838227987],[0.085583202540874,-0.0288329962641,-0.058613050729036]],[[-0.039065051823854,0.0012447495246306,0.034305483102798],[0.044330582022667,0.068911485373974,0.015323438681662],[-0.025135055184364,0.042284470051527,-0.042682688683271]],[[-0.014532929286361,0.030146656557918,-0.073006674647331],[-0.019076472148299,-0.060757722705603,-0.0036862634588033],[-0.017216686159372,-0.003112563630566,0.0069163260050118]],[[-0.078147858381271,0.047726113349199,0.0018312109168619],[0.0068810568191111,0.026857782155275,-0.0058736950159073],[0.033501025289297,-0.04095770791173,0.069768480956554]],[[0.0046611130237579,0.064198262989521,0.085443928837776],[0.054616261273623,-0.021541463211179,0.062702000141144],[0.029977735131979,-0.033813804388046,-0.013212746940553]],[[-0.017070066183805,-0.031148383393884,-0.061592534184456],[0.0033235736191273,0.042421493679285,0.0060958964750171],[-0.0068151131272316,-0.016113786026835,-0.056531246751547]],[[-0.038020189851522,-0.017893878743052,0.071970619261265],[-0.063833728432655,-0.01150431483984,-0.035802252590656],[0.00038758950540796,0.041912510991096,0.055750776082277]],[[0.023984113708138,0.053518556058407,0.028375487774611],[0.020972099155188,-0.069623179733753,0.058762241154909],[0.025224139913917,0.080832816660404,0.022651376202703]],[[-0.012144289910793,-0.0088278194889426,0.049906581640244],[0.11526470631361,0.08335567265749,0.053317628800869],[0.0087351119145751,-0.016764253377914,-0.065973430871964]],[[0.0026141942944378,-0.019191209226847,0.0023219641298056],[-0.0012901847949252,0.013075604103506,0.037355035543442],[0.024730019271374,0.0014440660597757,0.04638521745801]],[[0.015665095299482,0.060086186975241,0.068562366068363],[-0.01157374959439,-0.039609681814909,0.048945508897305],[0.033394787460566,0.035051740705967,0.014820051379502]],[[0.010227688588202,-0.051951996982098,0.026029791682959],[-0.013687518425286,0.01872418448329,0.0053499205969274],[0.027419246733189,-0.048245374113321,0.011288866400719]],[[0.033328529447317,0.04118387773633,0.050366122275591],[0.020995736122131,0.013827409595251,-0.02757234685123],[0.0076955859549344,0.07080315053463,0.036956150084734]],[[-0.036507740616798,0.024697029963136,-0.052243996411562],[0.067702114582062,0.1268879622221,0.048325661569834],[0.036521136760712,-0.044772747904062,0.090243801474571]],[[-0.004409602843225,-0.026698581874371,0.06441804766655],[-0.0052852854132652,-0.066853538155556,0.010365988127887],[-0.0072518433444202,-0.012297223322093,0.00029952498152852]],[[-0.017109733074903,-0.009373851120472,0.03766418620944],[0.027176199480891,-0.074398815631866,-0.01627679541707],[-0.0047686193138361,0.0664127394557,-0.0065295370295644]],[[0.035713281482458,0.05291585251689,0.01554951723665],[-0.020049514248967,-0.082420907914639,-0.0098017361015081],[-0.032185036689043,0.061900027096272,0.0054453886114061]],[[-0.027482969686389,0.021598674356937,0.0097955036908388],[-0.028583731502295,0.070961736142635,-0.0083246864378452],[-0.0050459410995245,0.036150779575109,0.03230594098568]],[[0.02092744410038,-0.01523245871067,-0.026928497478366],[0.047480821609497,0.063640363514423,0.046359952539206],[0.06463161110878,0.008550482802093,0.030886106193066]],[[0.0039618606679142,0.014672202989459,0.060381133109331],[0.034958735108376,0.024664431810379,-0.024509597569704],[-0.028209593147039,-0.01823291182518,0.082107536494732]],[[0.040970608592033,0.095952525734901,-0.080299451947212],[0.086686119437218,0.046754755079746,0.02354121953249],[-0.00053611671319231,0.057763110846281,0.11913712322712]],[[0.022792467847466,-0.005643923766911,0.022305645048618],[-0.016436595469713,-0.040983192622662,-0.015067944303155],[0.023734042420983,0.029950927942991,0.054028797894716]],[[0.0013458550674841,-0.043245952576399,0.07422111928463],[0.025829197838902,-0.026247242465615,-0.076627224683762],[0.12097952514887,0.0053322529420257,-0.026051381602883]],[[0.044230986386538,-0.012480248697102,-0.014522418379784],[0.04495944082737,0.0046324776485562,0.011079963296652],[0.020615266636014,-0.024567529559135,0.012011343613267]],[[-0.030798858031631,0.021646263077855,-0.050051104277372],[0.03577658906579,-0.029579821974039,0.021843310445547],[0.034322321414948,0.013797585852444,-0.024057472124696]],[[0.075754575431347,-0.033507969230413,-0.010866723954678],[0.040044527500868,-0.017789592966437,0.10495388507843],[-0.00024155394930858,0.029459454119205,-0.019384052604437]],[[-0.054402332752943,0.04317045211792,-0.035715825855732],[0.013852110132575,0.0034052194096148,-0.047866240143776],[-0.030785689130425,0.024489276111126,-0.03224490582943]],[[0.0018541204044595,0.02260534837842,0.0046746828593314],[0.058084074407816,0.019211629405618,0.031346078962088],[0.04149929061532,0.051955319941044,0.00056640256661922]],[[0.04531867057085,0.020190669223666,-0.043743684887886],[0.021688042208552,-0.042335461825132,0.043785035610199],[0.0082148928195238,0.098553396761417,0.069814711809158]],[[0.054938409477472,-0.011943397112191,-0.0478843934834],[0.082164436578751,0.012656291946769,0.0043739280663431],[-0.071553215384483,-0.027424059808254,0.0081509239971638]],[[0.044662032276392,-0.00050378876039758,0.039618771523237],[-0.0099861416965723,0.064601257443428,-0.040972962975502],[0.022587522864342,-0.08245000243187,0.07301027327776]],[[-0.052548360079527,-0.06946012377739,0.0086214262992144],[0.0063463593833148,-0.0083288392052054,-0.042464446276426],[-0.057694867253304,0.049048513174057,0.083839371800423]],[[0.064641326665878,0.002290913136676,0.045203987509012],[-0.092429056763649,0.051009301096201,-0.035416975617409],[0.0033879573456943,-0.11231314390898,0.027870792895555]],[[0.092043988406658,0.049802046269178,-0.0092081874608994],[-0.019813220947981,-0.022684892639518,0.030001511797309],[0.011008120141923,-0.0082235895097256,0.060251396149397]],[[-0.0062222010456026,-0.023372773081064,0.0417708940804],[-0.0050575132481754,0.041616979986429,-0.04199243709445],[-0.062090832740068,-0.010806445963681,0.057862259447575]],[[0.023874780163169,-0.012694472447038,-0.039231553673744],[0.044946324080229,-0.045136421918869,-0.029134152457118],[0.072362780570984,-0.075633622705936,0.0092698056250811]],[[0.018047438934445,-0.02281815931201,0.021797869354486],[0.08674781024456,-0.0040141488425434,-0.010305372066796],[-0.02772375382483,0.014764000661671,-0.045139618217945]],[[-0.027751334011555,0.050816424190998,-0.013682485558093],[0.070947900414467,0.042681477963924,0.053372640162706],[0.011754057370126,-0.02557523176074,0.013100034557283]],[[0.049175977706909,-0.046096041798592,0.00077861029421911],[0.053191538900137,-0.018248401582241,0.0017038086662069],[-0.0046178256161511,-0.012276428751647,0.044531267136335]],[[0.0083236088976264,0.017445601522923,0.099875651299953],[0.018519267439842,0.0082196090370417,0.044739987701178],[0.0067445207387209,-0.039882518351078,-0.010450655594468]],[[-0.039556410163641,0.0093726590275764,-0.028672881424427],[-0.02112247608602,-0.012839770875871,-0.010601732879877],[0.060361981391907,0.037276994436979,0.03624889627099]],[[0.0089006936177611,0.030079413205385,0.015741126611829],[0.064461097121239,0.045728594064713,0.094240464270115],[0.04733445122838,-0.058444138616323,0.0047703273594379]],[[0.010374481789768,0.054106023162603,-0.019497029483318],[-0.0094535546377301,-0.047809895128012,-0.020040094852448],[-0.015932377427816,0.021744590252638,0.020179880782962]],[[-0.034020453691483,0.067380778491497,0.011298291385174],[-0.0035911782179028,0.063990905880928,-0.014340695925057],[-0.034572169184685,0.051011625677347,0.0090259034186602]],[[0.035269387066364,0.028599062934518,0.0046769133768976],[0.033203907310963,0.036782957613468,-0.020936712622643],[0.01775174587965,0.012891160324216,0.019892601296306]],[[0.056252766400576,-0.007407546043396,-0.0078429970890284],[0.063456691801548,-0.025652773678303,-0.022697666659951],[0.011257958598435,0.015672292560339,0.057970702648163]],[[0.096116662025452,-0.032137252390385,0.054185643792152],[0.11299538612366,-0.005759424995631,0.074317574501038],[0.094601847231388,0.011844212189317,0.0039856540970504]],[[0.03965986892581,0.011858647689223,-0.010509578511119],[0.034941125661135,-0.011780182830989,0.059276506304741],[0.029742175713181,-0.018388200551271,-0.018462276086211]],[[-0.0091995587572455,0.047218639403582,-0.00026148508186452],[0.046869691461325,0.0041880235075951,0.055468130856752],[0.011005902662873,-0.038090724498034,0.019816290587187]],[[0.018924599513412,0.050705898553133,-0.014585251919925],[0.031569797545671,0.02307472191751,0.082127340137959],[-0.059334240853786,-0.0021850746124983,-0.078990422189236]],[[-0.0071271238848567,0.13632659614086,-0.036092471331358],[-0.068831585347652,-0.020992456004024,-0.01792836561799],[0.032546244561672,-0.011001403443515,-0.096035912632942]],[[0.023230722174048,-0.072958722710609,-0.02520539984107],[0.078645430505276,0.019034096971154,0.02503328025341],[0.01481468975544,0.013369534164667,0.033462092280388]],[[0.079967692494392,0.051301091909409,-0.066060028970242],[0.0081856576725841,-0.03167275339365,-0.0054922238923609],[0.066804490983486,0.057536456733942,0.095095105469227]],[[0.012341008521616,-0.04889814555645,0.01556814275682],[0.079922661185265,-0.021581800654531,-0.062322061508894],[-0.055426992475986,0.023291692137718,-0.053169257938862]],[[-0.00070603302447125,0.021424589678645,0.0026035339105874],[0.021281650289893,0.0029844006057829,-0.024840001016855],[-0.0058538233861327,-0.028308555483818,0.0024408216122538]],[[-0.01035270281136,0.0047218170948327,-0.017380913719535],[0.060959301888943,0.031003072857857,0.032280579209328],[-0.027855096384883,0.065010294318199,-0.039158094674349]],[[0.018152806907892,0.075228422880173,-0.042301651090384],[-0.015409357845783,-0.036922499537468,-0.014628593809903],[-0.012865345925093,0.035887751728296,-0.0086222942918539]],[[-0.064819619059563,0.040869921445847,-0.0085674785077572],[0.018851887434721,0.061360646039248,0.036701682955027],[-0.021979661658406,0.027849955484271,0.062592662870884]],[[0.053596816956997,0.022673923522234,0.055438492447138],[0.048038013279438,0.01754936017096,-0.020229153335094],[-0.073926135897636,0.02839863486588,-0.076984107494354]],[[-0.028922969475389,-0.027868142351508,-0.053046960383654],[-0.04761753231287,0.034218613058329,0.0098455520346761],[-0.064929090440273,-0.058367129415274,0.062288582324982]],[[0.040190037339926,0.037090267986059,-0.059183791279793],[-0.00027616860461421,-0.031367179006338,0.021157972514629],[0.0021870688069612,-0.010282102040946,0.026459181681275]],[[0.067076146602631,0.00079515122342855,-0.029587833210826],[0.0096422173082829,0.0017175627872348,0.0054250657558441],[0.043110348284245,-0.058940999209881,0.0049547613598406]],[[0.086049154400826,-0.025781873613596,-0.03023286908865],[0.049235064536333,0.045820701867342,0.027255183085799],[0.080008760094643,0.032017137855291,0.035455167293549]],[[-0.023028910160065,0.040299046784639,0.0059904921799898],[-0.037451066076756,0.060044758021832,0.0032563423737884],[-0.0049065286293626,0.043683908879757,-0.054893091320992]],[[0.056599844247103,-0.031509883701801,0.0099000791087747],[0.0088246380910277,0.044745735824108,0.023246951401234],[0.051421314477921,0.0037061169277877,-0.022568507120013]],[[0.091130457818508,0.030902964994311,-0.01432410441339],[-0.011010793969035,0.033737733960152,0.10110750049353],[0.088135629892349,0.018021954223514,0.035665512084961]],[[-0.019726363942027,0.0042690890841186,0.071361005306244],[0.022696716710925,3.3627926313784e-05,-0.0083737447857857],[0.012338644824922,-0.0013388170627877,0.0076621454209089]],[[-0.01043826341629,-0.014705818146467,-0.012612185440958],[0.010740593075752,0.027202090248466,0.033005688339472],[0.048623267561197,0.052072260528803,0.11282675713301]],[[-0.0089102685451508,0.064835853874683,-0.045208990573883],[0.020341826602817,0.00025843124603853,0.021951591596007],[0.09925352036953,-0.009323469363153,-0.0091589512303472]],[[-0.031686179339886,0.031694386154413,-0.052554987370968],[0.046979393810034,0.0049948026426136,0.02160843834281],[0.027764016762376,0.064927905797958,0.026464393362403]],[[0.092854455113411,-0.0069905403070152,-0.023959945887327],[0.018264722079039,-0.022748725488782,0.071250781416893],[0.026060353964567,-0.066130444407463,0.0077193668112159]],[[-0.11930327117443,-0.00076079345308244,-0.010914008133113],[0.013852368108928,0.046585522592068,-0.0043688737787306],[-0.03189929202199,-0.018821300938725,-0.062038626521826]],[[0.021899277344346,-0.0039011989720166,0.062830679118633],[-0.019564894959331,-0.022369401529431,0.030039897188544],[-0.057203706353903,-0.0058741280809045,0.017718805000186]],[[0.023137904703617,0.0057247611694038,0.0064748143777251],[0.025244541466236,0.060043804347515,0.045174587517977],[-0.023606635630131,-0.050735108554363,-0.068047635257244]],[[0.03214605525136,0.0029973697382957,0.011489330790937],[0.078266233205795,-0.016873341053724,0.030904533341527],[-0.01781745813787,0.089438304305077,0.018025619909167]],[[-0.056805521249771,-0.021900814026594,-0.013156056404114],[-0.043783832341433,-0.077612563967705,0.001144275534898],[-0.037014216184616,0.016415135934949,-0.0028359568677843]],[[-0.0034359444398433,0.034415900707245,0.041960299015045],[0.026042863726616,0.010165426880121,-0.020647592842579],[0.02859877422452,0.021451698616147,0.041153728961945]],[[-0.024930208921432,0.099217809736729,0.028016701340675],[-0.10169412940741,-0.036623507738113,-0.020612427964807],[-0.02754970267415,0.035931188613176,0.03588929027319]],[[-0.056255407631397,-0.01420540176332,-0.036935035139322],[-0.0045483936555684,0.011046922765672,-0.073395743966103],[-0.087151139974594,-0.056655067950487,-0.0026145116426051]],[[0.015810525044799,-0.011747967451811,0.014107310213149],[0.0088578443974257,0.032819427549839,0.015668397769332],[-0.018843440338969,0.052196696400642,0.033417381346226]],[[-0.0018294010078534,-0.0023155934177339,0.0091067692264915],[-0.0048625371418893,-0.02240732498467,0.010792266577482],[0.0097399316728115,0.015311942435801,-0.053513199090958]],[[0.010980478487909,-0.00079875404480845,-0.069187693297863],[-0.025487378239632,-0.047748684883118,0.012489732354879],[0.018844231963158,0.081205144524574,-0.04155246168375]],[[-0.013065552338958,0.051822658628225,0.022689070552588],[0.080545201897621,0.0020384625531733,0.059085130691528],[-0.013780049048364,0.022434199228883,0.051444951444864]],[[-0.044249162077904,-0.058201033622026,0.051353540271521],[-0.0045496728271246,-0.052397284656763,0.039205938577652],[-0.020831286907196,0.0013315276009962,-0.10554678738117]],[[0.053682763129473,-0.058110129088163,0.010550916194916],[-0.00015361845726147,-0.029960595071316,-0.02467256039381],[0.036478899419308,0.042120706290007,0.036171484738588]],[[-0.028980799019337,0.056608684360981,0.014313908293843],[-0.070511691272259,-0.01472763903439,-0.031271059066057],[0.017972914502025,-0.027476334944367,0.054132018238306]],[[-0.053029119968414,-0.019485458731651,0.091785073280334],[0.11750145256519,0.10374564677477,0.071405231952667],[-0.025501122698188,0.047336954623461,-0.072435609996319]],[[-0.0049211350269616,0.0048683122731745,0.02540036290884],[0.05315387994051,-0.0095423720777035,0.042010091245174],[0.019943153485656,-0.014910890720785,-0.025662411004305]],[[0.038296457380056,-0.026837877929211,0.022456670179963],[0.10072746872902,0.077942453324795,0.057452064007521],[0.038120895624161,0.018320739269257,0.0079707391560078]],[[0.0033894304651767,-0.0052987290546298,-0.038532420992851],[0.0030068596825004,0.033225543797016,0.0099860057234764],[0.012927643023431,0.045274671167135,-0.0060538724064827]],[[0.036820728331804,-0.025703605264425,-0.013145206496119],[-0.032423760741949,-0.021183213219047,0.0014268573140725],[0.067338272929192,0.02134719863534,0.04108927026391]],[[0.020478904247284,0.026647605001926,-0.047118853777647],[0.020991498604417,0.0078118382953107,0.045211616903543],[-0.068446479737759,-0.062237281352282,0.023086251690984]],[[-0.0076950150541961,0.023456072434783,-0.0063653974793851],[0.027530489489436,0.19690135121346,0.031464647501707],[-0.025130329653621,-0.078271761536598,0.023993711918592]],[[-0.0049374317750335,0.011893059127033,0.0042812023311853],[0.019563119858503,-0.042629912495613,-0.082898750901222],[-0.049968268722296,0.04774185270071,0.0058757429942489]],[[-0.059129483997822,-0.024753477424383,0.034326627850533],[-0.034202948212624,-0.062331307679415,0.051987063139677],[0.014203064143658,-0.0010557628702372,0.060970529913902]],[[-0.030062904581428,-0.033227600157261,0.039081614464521],[0.075840026140213,-0.045890528708696,0.019587580114603],[-0.073991157114506,-0.056849870830774,-0.044957563281059]],[[-0.063002802431583,0.05728842318058,0.012419207021594],[0.0020442714449018,0.01852279342711,0.096949264407158],[-0.0010522685479373,-0.0015478018904105,0.070182234048843]],[[0.020593946799636,0.0073064942844212,-0.037879012525082],[0.013914440758526,0.0017591966316104,-0.01646925508976],[-0.05660230666399,-0.019071644172072,-0.013744380325079]],[[0.0049450187943876,-0.04093711823225,0.0081749921664596],[-0.020326526835561,0.011501964181662,0.0067947879433632],[-0.0041031683795154,0.049895491451025,-0.081774897873402]],[[0.05616782233119,-0.055953331291676,-0.019006500020623],[0.041036255657673,-0.055139765143394,0.035234462469816],[0.071366250514984,-0.042845990508795,0.031868010759354]],[[0.063729979097843,0.057692311704159,-0.030915785580873],[0.047939263284206,0.051762130111456,-0.0019466551020741],[-0.047565419226885,0.07615789026022,-0.0053738504648209]],[[-0.043762840330601,0.019428562372923,0.0072235600091517],[0.046004451811314,0.041836902499199,-0.020224720239639],[0.045160569250584,-0.025673279538751,-0.014495529234409]],[[-0.0025056742597371,-0.10544798523188,0.056318465620279],[0.008769097737968,0.012362779118121,0.056895982474089],[0.037470817565918,0.02280786447227,-0.033441219478846]],[[-0.020764801651239,-0.03790632262826,0.063738249242306],[0.10036428272724,0.012590339407325,0.089805573225021],[-0.017399601638317,0.018312038853765,0.027655422687531]],[[0.03346798568964,0.053693886846304,0.0718939229846],[0.079233594238758,0.032033357769251,0.080705896019936],[0.049743007868528,0.093177288770676,0.0023914477787912]],[[0.034108720719814,0.010103337466717,-0.0049406341277063],[0.057541910558939,-0.067684575915337,0.046782616525888],[0.022836942225695,-0.0077814902178943,-0.074788354337215]],[[0.00036662086495198,0.029597660526633,-0.0068425256758928],[-0.0075835753232241,-0.033635322004557,-0.049523908644915],[0.00068113795714453,0.016396924853325,0.040790271013975]],[[-0.00055757677182555,-0.0021524045150727,-0.0012103354092687],[0.014569159597158,0.091547779738903,0.10618519037962],[0.067567072808743,0.026323832571507,-0.063070222735405]],[[0.00015255197649822,0.01962131075561,0.00067885528551415],[0.018502341583371,-0.097965858876705,-0.017263749614358],[-0.039198778569698,0.031816612929106,0.072437345981598]],[[0.0016940737841651,0.012685667723417,0.014419994316995],[0.015608225017786,-0.013464442454278,-0.0066057546064258],[-0.027119606733322,-0.0061097419820726,0.0022864402271807]],[[-0.051197413355112,0.015242733992636,-0.057233303785324],[0.026385985314846,-0.020479282364249,0.050144892185926],[-0.028178263455629,0.041473843157291,0.023223515599966]],[[-0.021115666255355,-0.055566471070051,-0.043276328593493],[0.079960063099861,-0.046207912266254,0.04483937472105],[-0.03679059073329,0.020745012909174,0.0034194951876998]],[[-0.017402371391654,-0.0027266950346529,-0.014493909664452],[0.041053369641304,-0.035784006118774,-0.096461929380894],[0.046995185315609,0.089184693992138,-0.063609093427658]],[[-0.0066713131964207,-0.013104359619319,0.021170886233449],[-0.044070180505514,0.029961625114083,-0.00041862452053465],[-0.035242300480604,0.038502782583237,0.017799152061343]],[[0.073855951428413,-0.070405133068562,0.02558421716094],[0.12227351218462,0.04588595405221,-0.048870053142309],[0.056453265249729,0.033438947051764,0.046629659831524]],[[0.054047916084528,0.09889954328537,-0.062527060508728],[-0.011614084243774,-0.010428165085614,-0.0049545648507774],[0.012442569248378,0.056038614362478,0.052918467670679]],[[0.025058180093765,0.048281706869602,0.043415784835815],[0.046096120029688,-0.030699206516147,-0.04522142931819],[0.036435127258301,0.033765695989132,-0.005229517351836]],[[-0.045370575040579,0.031096631661057,0.080569721758366],[0.069244295358658,0.055605784058571,0.040997974574566],[-0.017985291779041,0.052090927958488,0.037339970469475]],[[0.017738038673997,-0.12253708392382,0.018032858148217],[0.047844968736172,-0.02132385596633,-0.041106909513474],[-0.071988694369793,-0.027523817494512,-0.019334936514497]],[[0.024827215820551,0.013114628382027,0.031856838613749],[-0.0014567758189514,0.071154907345772,0.040449477732182],[0.076819136738777,0.019436040893197,-0.0040295948274434]],[[-0.054820030927658,0.023129638284445,-0.039975441992283],[-0.0073446887545288,0.052628666162491,0.032872300595045],[0.010998006910086,0.027448922395706,-0.028687365353107]],[[-0.013412706553936,0.047898918390274,-0.024945881217718],[0.036539666354656,0.01166227273643,-0.020208606496453],[-0.038600474596024,0.025428140535951,0.035455547273159]],[[0.006862792186439,0.024204112589359,-3.6762547097169e-05],[-0.030196998268366,-0.020066987723112,-0.03855038061738],[0.036066185683012,0.0034871380776167,0.015779577195644]],[[0.059580374509096,0.085859552025795,-0.059917792677879],[0.025105519220233,-0.060976609587669,0.010170912370086],[0.027153346687555,-0.050309345126152,0.025316754356027]],[[0.084974117577076,0.060716401785612,0.010477853938937],[0.083328828215599,-0.017828775569797,-0.022780802100897],[0.07365882396698,0.051356438547373,-0.032385688275099]],[[0.0077111101709306,0.098260276019573,-0.00965765863657],[0.033525884151459,-0.023808361962438,-0.087209217250347],[0.0037955995649099,-0.043563958257437,-0.016803970560431]],[[-0.021954737603664,0.064013659954071,0.044635437428951],[0.016885010525584,0.0029397490434349,0.042556531727314],[0.062380775809288,0.0054339524358511,0.028900207951665]]],[[[-0.068759523332119,0.00052884366596118,0.024371402338147],[0.064969874918461,-0.023752665147185,0.039703238755465],[0.057655360549688,0.026734033599496,-0.088559709489346]],[[-0.012402225285769,-0.035225044935942,-0.033080853521824],[0.019368460401893,0.055518254637718,-0.023197641596198],[-0.0061546312645078,-0.13630689680576,-0.015008500777185]],[[0.03750629350543,0.057035606354475,-0.037614114582539],[0.069913268089294,-0.075006119906902,0.080652646720409],[0.034877020865679,0.056796856224537,0.002213500905782]],[[-0.00041990194586106,0.085498861968517,0.031495545059443],[0.018598616123199,0.022393669933081,-0.031958773732185],[-0.051640931516886,-0.042521730065346,0.083683930337429]],[[-0.036817017942667,-0.058777846395969,-0.020256629213691],[0.032060611993074,-0.065560065209866,-0.066743791103363],[-0.015847321599722,-0.076207369565964,0.024384969845414]],[[-0.039339147508144,0.035268452018499,0.024433199316263],[0.025909930467606,0.078703969717026,0.052987162023783],[0.065455421805382,0.035570368170738,-0.063161469995975]],[[0.018036894500256,0.01967366412282,-0.056803870946169],[-0.007098610047251,0.0037703320849687,-0.067652106285095],[-0.0081690615043044,0.010196465067565,0.01842980645597]],[[-0.059707451611757,0.014004525728524,-0.013719478622079],[0.024608151987195,-0.062708385288715,0.067147970199585],[0.054671667516232,-0.045658744871616,-0.008675585500896]],[[0.0024537241552025,0.0077094989828765,-0.025225421413779],[0.010163222439587,0.0052878819406033,-0.033038344234228],[0.061051290482283,-0.038799047470093,-0.027242662385106]],[[0.14526697993279,-0.040386319160461,0.027360374107957],[0.078566938638687,0.0067629609256983,0.095173068344593],[-0.0029618709813803,0.022604670375586,0.050014000386]],[[0.054998178035021,-0.092050999403,0.019199535250664],[0.024881899356842,-0.014791457913816,-0.042982462793589],[-0.026479698717594,-0.011746081523597,0.019944906234741]],[[0.012688995338976,-0.079300053417683,-0.022643577307463],[0.084261059761047,0.063383333384991,-0.024648936465383],[-0.014201458543539,0.045801755040884,0.0015283832326531]],[[0.090594425797462,-0.089502118527889,-0.011417190544307],[0.029914008453488,-0.032699923962355,0.028293224051595],[0.029525563120842,-0.10816100984812,-0.059446539729834]],[[0.023592693731189,-0.00747025385499,0.034158915281296],[0.00016596860950813,0.069886058568954,0.061494071036577],[0.069699712097645,-0.08829353004694,0.021299757063389]],[[0.01802652888,0.065942317247391,0.044926375150681],[-0.018228238448501,0.10643597692251,0.10185123980045],[0.084430307149887,-0.015549179166555,0.035959050059319]],[[-0.0074898963794112,-0.038724206387997,-0.047691326588392],[-0.01331374514848,-0.04751018434763,-0.0862135887146],[0.016052324324846,-0.097162820398808,0.024549512192607]],[[0.025102097541094,-0.060941748321056,0.030959816649556],[-0.0060188192874193,-0.035623487085104,-0.0062303198501468],[-0.05198984593153,-0.045569151639938,0.025518521666527]],[[-0.01144430693239,-0.00020756601588801,0.038143243640661],[0.022728819400072,-0.075684636831284,-0.013526815921068],[0.031466349959373,-0.02250169031322,-0.0099734906107187]],[[0.051335040479898,0.0018061028094962,-0.031784277409315],[-0.014753117226064,-0.0096786832436919,-0.067280530929565],[0.0066073276102543,-0.064011827111244,0.056165661662817]],[[0.035777352750301,0.066456131637096,0.066432118415833],[0.028067670762539,-0.042554277926683,0.016059558838606],[0.067395515739918,0.025597391650081,-0.012238744646311]],[[-0.072268307209015,0.0272027682513,0.010523770004511],[0.00090056174667552,0.010345406830311,-0.019320255145431],[-0.12034117430449,-0.015276317484677,-0.05604724958539]],[[0.06122051179409,0.011715441942215,-0.025235051289201],[0.03914213553071,0.054617162793875,0.07076196372509],[0.052294913679361,-0.0067234453745186,0.059912897646427]],[[0.014673572033644,-0.0530607663095,0.0409763045609],[0.041484903544188,0.020542671903968,0.018087280914187],[0.060149028897285,0.0082262977957726,-0.020635729655623]],[[-0.0187380425632,-0.047711733728647,-0.031345650553703],[-0.0018823860445991,-0.028465431183577,0.016817217692733],[0.011577868834138,-0.0089097414165735,-0.10587010532618]],[[-0.014553396962583,0.0067260432988405,0.031180124729872],[0.024230195209384,0.036582518368959,0.032897219061852],[0.051753625273705,0.089253261685371,0.053594410419464]],[[0.0078620398417115,-0.071501769125462,0.015127188526094],[-0.03412688523531,0.017828362062573,-0.075702771544456],[-0.035912647843361,0.02319910377264,-0.049163654446602]],[[-0.042329415678978,0.075130388140678,-0.029994245618582],[-0.0029008819255978,0.011987975798547,-0.034073859453201],[0.021664323285222,-0.0022778681013733,-0.046942386776209]],[[0.065728470683098,0.030956771224737,0.040894892066717],[0.04079831391573,0.076450414955616,0.011871015653014],[-0.045851737260818,-0.0027800216339529,-0.022045375779271]],[[-0.0098978541791439,0.057845991104841,-0.014342760667205],[-0.088814608752728,-0.024993462488055,-0.027350218966603],[-0.016905337572098,0.0096035795286298,-0.076186850667]],[[0.006702374201268,-0.011660523712635,-0.093946516513824],[0.083817899227142,-0.015563203953207,0.01433583535254],[-0.041049376130104,-0.020381007343531,0.058276150375605]],[[0.029580367729068,0.024580283090472,-0.019328640773892],[-0.023317547515035,0.053594797849655,0.0062784058973193],[0.021068951115012,0.046491123735905,0.0013963304227218]],[[0.097800374031067,0.14151372015476,0.00028135676984675],[-0.038321197032928,-0.012454310432076,0.0003119355533272],[0.025445805862546,0.012107381597161,-0.01896958053112]],[[0.015557570382953,-0.0010784777114168,-0.041510477662086],[0.03581603243947,0.094894878566265,-0.12306804209948],[-0.022796293720603,0.034378953278065,0.074758343398571]],[[-0.054726377129555,-0.007117681670934,0.067784860730171],[0.036287818104029,-0.023109531030059,0.010693788528442],[-0.010311618447304,0.045171070843935,-0.075186513364315]],[[-0.047029931098223,-0.047207053750753,-0.020523121580482],[0.024564759805799,-0.00016663594578858,0.019980309531093],[-0.043041948229074,-0.021412964910269,0.0012314217165112]],[[-0.04674456268549,-0.062504179775715,0.01584642380476],[-0.046891652047634,-0.030538000166416,0.018465904518962],[-0.04050686955452,-0.027622351422906,-0.041644293814898]],[[0.0022377709392458,-0.039459265768528,0.0078293709084392],[0.013692818582058,0.072986923158169,0.048984710127115],[0.034600611776114,0.029304821044207,0.043360743671656]],[[0.083594880998135,0.0010198780801147,0.0054707727394998],[-0.049283761531115,-0.016550783067942,0.0084021156653762],[0.12907347083092,0.0019843787886202,-0.015882607549429]],[[0.028371101245284,0.0040547088719904,-0.0040548709221184],[0.063574902713299,0.018978927284479,0.037289422005415],[-0.02643558382988,0.086253292858601,-0.0037263140548021]],[[0.031479451805353,-0.021003345027566,-0.040827222168446],[0.055034432560205,-0.011546971276402,-0.020498292520642],[0.029035976156592,0.0029225361067802,-0.0037736329250038]],[[-0.009939894080162,0.0044297650456429,-0.012935158796608],[-0.018667684867978,0.026303185150027,0.029541026800871],[-0.019465867429972,0.051728021353483,0.01156516186893]],[[-0.043990682810545,0.012416488490999,0.012263126671314],[-0.0052491840906441,-0.0087250396609306,0.018916705623269],[0.012203255668283,-0.054818667471409,-0.038978569209576]],[[-0.053709596395493,0.096496872603893,-0.036105036735535],[0.014879052527249,-0.030745752155781,-0.065502375364304],[-0.0051634260453284,-0.052277222275734,-0.02021412551403]],[[-0.013110810890794,0.0092126168310642,0.0080190459266305],[-0.061220068484545,0.017089538276196,0.028343906626105],[0.0035594475921243,-0.0091806305572391,0.049916762858629]],[[0.018862456083298,-0.052930139005184,0.0029032381717116],[-0.048943728208542,0.022416960448027,0.076621741056442],[0.054428964853287,0.040408253669739,-0.045177649706602]],[[0.014622853137553,0.064958490431309,0.0064057931303978],[-0.036284990608692,0.058101486414671,0.008729818277061],[0.012787911109626,-0.056034728884697,-0.0092914346605539]],[[0.053008589893579,-0.020389098674059,-0.01447966042906],[-0.0075400788336992,0.001249521272257,0.040727637708187],[0.011784018017352,0.080588445067406,0.0038630608469248]],[[-0.074558511376381,0.0084161665290594,-0.0020874503534287],[0.052867788821459,0.029788425192237,0.047347750514746],[0.02633510529995,0.053620181977749,-0.0040252525359392]],[[-0.011202583089471,-0.022519458085299,-0.0094140684232116],[0.0010191889014095,-0.0045750536955893,0.059419568628073],[0.086770698428154,-0.01936025545001,-0.012627937830985]],[[-0.015147583559155,0.0028774086385965,0.034616935998201],[-0.09285830706358,0.023952275514603,-0.009537186473608],[0.013385605998337,0.033362686634064,0.019664417952299]],[[-0.010451948270202,-0.0783965960145,-0.0087309284135699],[-0.027658646926284,-0.032573759555817,-0.0015496755950153],[-0.025250351056457,-0.057416867464781,-0.062486555427313]],[[-0.034601788967848,0.02323698811233,0.072150945663452],[0.066909156739712,-0.042518079280853,-0.064942918717861],[0.0030819273088127,-0.020189862698317,-0.023240093141794]],[[0.021578336134553,0.035451851785183,0.0046983612701297],[0.069890685379505,0.073579169809818,-0.021910285577178],[0.015671176835895,0.048282619565725,-0.031782265752554]],[[0.0012417341349646,-0.031329154968262,0.087018728256226],[0.067626319825649,0.030707420781255,0.0049975086003542],[0.025659643113613,0.063286751508713,-0.017698371782899]],[[0.034690532833338,0.010566049255431,0.021265706047416],[-0.007231505587697,0.059889022260904,0.012008872814476],[0.049486208707094,0.016453316435218,0.020626084879041]],[[-0.034191969782114,-0.028114141896367,0.045757122337818],[0.040779884904623,0.0051385811530054,-0.033800926059484],[-0.0059651131741703,-0.041485246270895,-0.080324992537498]],[[-0.0063945935107768,-0.055164236575365,-0.074158050119877],[-0.045261558145285,0.0089964177459478,0.039170935750008],[-0.010994139127433,0.036456860601902,-0.055918533354998]],[[0.016043592244387,0.047384113073349,0.0923822671175],[-0.012695854529738,-0.030245896428823,-0.096757054328918],[-0.032096747308969,0.0080461585894227,-0.081392824649811]],[[0.01460187509656,-0.017672218382359,-0.0037702047266066],[-0.076225988566875,0.076637886464596,0.0095301447436213],[-0.0016341689042747,0.065041229128838,0.12572421133518]],[[0.023641478270292,0.0080565707758069,0.040359418839216],[-0.014747496694326,-0.032773688435555,-0.050207272171974],[-0.01985171250999,0.037116337567568,-0.0041774525307119]],[[0.0030906409956515,0.0019127883715555,-0.039009898900986],[-0.029495207592845,-0.04941863194108,-0.041357085108757],[-0.038762800395489,-0.036124922335148,0.066564440727234]],[[0.046574998646975,0.0042673079296947,-0.035021413117647],[0.038413256406784,-0.042337581515312,0.037890903651714],[0.036881539970636,-0.073130816221237,0.0050136889331043]],[[0.10487914830446,0.014313826337457,-0.013088207691908],[0.11038444191217,-0.025663970038295,-0.010278118774295],[0.034870751202106,-0.027942080050707,0.046865873038769]],[[0.0034354620147496,0.018331851810217,0.017508044838905],[-0.021294945850968,0.063384011387825,-0.051442708820105],[0.041963245719671,0.075802929699421,0.034358363598585]],[[-0.014557352289557,-0.067375861108303,-0.022775338962674],[-0.044141110032797,0.04175728186965,0.030731752514839],[0.0066482406109571,0.014202971942723,0.0023562647402287]],[[-0.078811399638653,0.021252265200019,-0.047488514333963],[-0.00015560266911052,0.061763420701027,0.016465155407786],[-0.01299383956939,0.030862495303154,0.043163370341063]],[[0.043194063007832,-0.00758903240785,0.021926943212748],[-0.0020141727291048,0.0098235169425607,0.0057565793395042],[-0.1028203740716,0.041003450751305,0.052412442862988]],[[0.0011013483162969,0.1025777682662,0.089934170246124],[-0.010771878063679,0.017492579296231,-0.056205451488495],[0.060425285249949,0.063670046627522,0.010792022570968]],[[0.016691679134965,0.018466670066118,0.032671190798283],[-0.031185664236546,-0.025961503386497,-0.015832781791687],[0.026739912107587,-0.024491770192981,0.013781300745904]],[[-0.00028068316169083,0.056210525333881,0.033767763525248],[0.044986631721258,0.070903547108173,0.065812438726425],[-0.027069402858615,0.013145765289664,0.0054739257320762]],[[0.022106872871518,-0.042914852499962,-0.021238956600428],[-0.0096886456012726,0.061544951051474,0.072347849607468],[0.047600354999304,-0.046568870544434,0.016403172165155]],[[0.015321373939514,0.028140379115939,-0.00010726151958806],[-0.011076134629548,-0.0073254597373307,0.02086092159152],[-0.026998145505786,-0.017329256981611,0.044957380741835]],[[-0.039008785039186,-0.062319129705429,0.049043282866478],[0.01522081438452,0.012464143335819,0.051737256348133],[-0.00014608142373618,-0.015434522181749,0.018977159634233]],[[0.043640196323395,-0.04302716627717,0.056584719568491],[0.088082812726498,-0.071390047669411,0.075126700103283],[0.020027911290526,0.087773412466049,0.040421109646559]],[[-0.028109420090914,0.047246642410755,-0.037845134735107],[0.01298885513097,-0.053185112774372,-0.071513876318932],[0.011401662603021,-0.037560924887657,0.062371641397476]],[[0.02621828764677,0.02970721013844,-0.0098521560430527],[0.047643013298512,0.05939956754446,0.04857761412859],[0.00746089220047,0.0019787030760199,-0.0037610300350934]],[[-0.062851749360561,0.021383421495557,0.069722875952721],[-0.020967971533537,0.046943355351686,0.055769935250282],[-0.033558946102858,-0.0073136752471328,0.044155087321997]],[[0.039965309202671,0.086189612746239,-0.0062597147189081],[-0.027329681441188,-0.043916624039412,0.04505180940032],[0.0050776186399162,-0.023722521960735,0.015620243735611]],[[0.069192871451378,-0.0059745758771896,0.0090330056846142],[0.078055493533611,-0.080470703542233,-0.055067740380764],[0.0017092803027481,-0.025605024769902,-0.014028074219823]],[[0.031705804169178,0.040303595364094,-0.00083083927165717],[-0.0032744677737355,-0.024921931326389,0.014947196468711],[-0.022859435528517,-0.073024168610573,0.0058450102806091]],[[0.036014441400766,-0.0044976323843002,0.033494129776955],[0.03627797961235,-0.021255163475871,-0.012027067132294],[-0.0011318165343255,-0.060405109077692,-0.0021697471383959]],[[0.023656871169806,-0.030227808281779,-0.074987262487411],[0.045730732381344,-0.045980855822563,-0.12248133867979],[0.00050340953748673,0.013008581474423,-0.0093409921973944]],[[0.015666838735342,-0.028063785284758,0.024462206289172],[-0.047177072614431,0.11937798559666,0.08034909516573],[-0.016113383695483,0.048396576195955,0.095536552369595]],[[0.070144027471542,-0.030156850814819,0.019433278590441],[0.055914346128702,0.019532542675734,-0.022251397371292],[0.042836099863052,-0.010410455986857,0.083869628608227]],[[-0.020514911040664,-0.0084892297163606,0.027239512652159],[-0.017827877774835,-0.030859177932143,0.065915189683437],[0.067602321505547,0.02369194291532,-0.013029897585511]],[[0.054183445870876,-0.016245791688561,0.023360645398498],[0.032745648175478,-0.0057758530601859,-0.0026672396343201],[-0.034801118075848,-0.0067252828739583,-0.031490389257669]],[[0.0014713073614985,-0.053202155977488,0.023737033829093],[0.060108449310064,0.021683890372515,0.045305423438549],[0.057555235922337,-0.021307397633791,-0.019367631524801]],[[-0.021049872040749,-0.0028530517593026,0.00083544297376648],[0.04623119905591,-0.02377443574369,0.013170286081731],[0.019365277141333,0.023550162091851,0.015293234027922]],[[-0.10237822681665,0.068643681704998,0.13292054831982],[-0.020128136500716,0.0028349992353469,-0.00016058285837062],[0.044556066393852,-0.013627723790705,-0.0055820420384407]],[[-0.0094181904569268,0.012468099594116,0.074494257569313],[0.0594582259655,-0.09380104392767,0.0095456661656499],[0.043730076402426,0.020965168252587,0.0174446310848]],[[-0.018625715747476,-0.095907382667065,0.037326965481043],[-0.018820522353053,0.10016949474812,-0.076169490814209],[0.047750871628523,-0.0062194555066526,0.063702568411827]],[[-0.0054326900281012,0.019434973597527,-0.010305748321116],[-0.049421574920416,0.062634073197842,0.021735260263085],[-0.0431789457798,0.11141812056303,9.6024277809192e-06]],[[0.019081085920334,-0.036336727440357,-0.0064451638609171],[-0.0078071989119053,0.023686699569225,0.089151538908482],[0.015782471746206,-0.03878915682435,-0.0093539655208588]],[[0.033589765429497,0.017803527414799,-0.058545753359795],[-0.052155330777168,0.058024052530527,0.010668808594346],[0.0077373213134706,-0.017332527786493,0.053911041468382]],[[-0.0087374513968825,0.090736456215382,-0.0078319674357772],[-0.011162051931024,-0.051127221435308,0.0029905452392995],[0.01977401599288,-0.059388872236013,0.0090247327461839]],[[-0.0075177424587309,-0.03752176463604,0.055002477020025],[0.024396497756243,0.095745772123337,0.015400871634483],[0.059929676353931,-0.018514018505812,0.020123790949583]],[[-0.0088396240025759,0.031631056219339,-0.014090289361775],[0.06868402659893,0.046190395951271,-0.041942428797483],[0.024265009909868,0.024582801386714,0.10293418169022]],[[0.046222399920225,0.025913728401065,0.015728382393718],[-0.060441367328167,0.047126580029726,0.0034794562961906],[-0.0050373231060803,0.019620729610324,-0.052753172814846]],[[-0.0060947192832828,0.029916319996119,-0.054120287299156],[0.0027577658183873,-0.052023150026798,-0.0038397777825594],[0.077580161392689,0.028436325490475,-0.023218609392643]],[[-0.043675992637873,0.01904408633709,-0.084102779626846],[-0.080982521176338,0.033525839447975,-0.01714844070375],[0.02253071218729,0.018753722310066,0.023363238200545]],[[-0.0050871283747256,0.020295478403568,0.027816673740745],[0.027889113873243,0.033260192722082,-0.038787759840488],[-0.049192011356354,0.026108933612704,-0.086187861859798]],[[0.045775149017572,0.025410477072001,0.049070883542299],[0.0073707830160856,0.086355417966843,0.035350829362869],[0.057792350649834,0.051277510821819,-0.02112789824605]],[[-0.00083543156506494,-0.039578773081303,-0.055420514196157],[0.07245559990406,-0.048691231757402,-0.026765152812004],[-0.060016471892595,0.034930992871523,0.00036549405194819]],[[-0.013315762393177,-0.12740461528301,-0.032436694949865],[0.0078325849026442,-0.014255543239415,-0.059760767966509],[-0.0068993652239442,0.061169791966677,0.044459845870733]],[[-0.001853788853623,-0.017544256523252,0.038248289376497],[0.0295798946172,0.087464042007923,0.033592790365219],[0.022482821717858,0.038896571844816,-0.022690126672387]],[[-0.035327956080437,-0.027792427688837,0.014184860512614],[0.0037041937466711,0.056632250547409,0.054726291447878],[0.039685152471066,-0.087883450090885,-0.070548959076405]],[[0.077728010714054,-0.010313833132386,0.01359633449465],[-0.0027248959522694,0.013230328448117,-0.0727703794837],[-0.051221329718828,0.043313577771187,0.021715499460697]],[[-0.017412412911654,0.073272585868835,-0.068120576441288],[0.055547278374434,-0.046012956649065,0.048461299389601],[-0.018357533961535,0.0042851320467889,0.066852502524853]],[[-0.038125298917294,-0.037578213959932,0.024560637772083],[-0.010615992359817,0.038670025765896,-0.020964169874787],[-0.048370346426964,-0.0029016358312219,-0.014264705590904]],[[-0.0047420291230083,-0.053432464599609,-0.021659307181835],[0.074761971831322,0.068971529603004,-0.041359569877386],[-0.04291508346796,0.020465508103371,-0.0039402893744409]],[[0.042225860059261,0.047105241566896,0.0056646997109056],[-0.0040579214692116,-0.02224955894053,0.037345375865698],[-0.00049510301323608,-0.095982857048512,-0.011014584451914]],[[-0.032811429351568,0.049012951552868,0.044772926717997],[0.006493806373328,-0.075425267219543,0.01221330743283],[-0.011247704736888,-0.053207647055387,-0.014640150591731]],[[-0.012187271378934,0.05896383523941,-0.03255133703351],[0.12088191509247,-0.0018385322764516,0.039434753358364],[0.0051833428442478,-0.046222496777773,-0.026452301070094]],[[-0.027968801558018,-0.053517203778028,-0.032650727778673],[0.020315397530794,0.014880598522723,0.015926515683532],[-0.0060247085057199,0.077994294464588,-0.00088448612950742]],[[-0.040717963129282,-0.039058923721313,-0.087805449962616],[0.0075608007609844,0.011294800788164,-0.086801879107952],[-0.034664466977119,-0.02330682054162,0.038426008075476]],[[-0.054600313305855,-0.040832936763763,0.030635746195912],[0.0860565751791,0.0087545141577721,0.0072633656673133],[0.035320691764355,0.047174315899611,0.017076959833503]],[[0.019444588571787,0.074444077908993,0.12120821326971],[-0.02244358882308,0.024075869470835,0.021897597238421],[0.069285698235035,-0.0067284754477441,0.019647045060992]],[[0.0030111782252789,0.036626435816288,-0.058787655085325],[0.0034724960569292,-0.026319919154048,0.048790607601404],[0.027412381023169,0.092871092259884,0.068633541464806]],[[0.0095892092213035,0.086972266435623,0.013433557003736],[0.016348775476217,-0.020489221438766,-0.013754290528595],[0.035219382494688,0.055078864097595,0.039163071662188]],[[0.022052055224776,-0.059648830443621,0.0062833866104484],[0.042402565479279,0.028802800923586,-0.0026428156998008],[-0.051277328282595,0.071788765490055,-0.010301845148206]],[[-0.12793658673763,-0.076352134346962,0.050599347800016],[0.077470935881138,-0.019297167658806,-0.010212912224233],[0.021223751828074,0.022496266290545,0.012711116112769]],[[-0.0041540414094925,0.054721113294363,-0.048632930964231],[0.027240766212344,0.051452990621328,0.10197605192661],[-0.052523016929626,-0.009787930175662,0.01040945481509]],[[-0.049611777067184,-0.035601079463959,-0.084049135446548],[0.070986464619637,0.0026753419078887,-0.048096798360348],[-0.011103364638984,-0.00050921190995723,-0.038893815129995]],[[0.04405664280057,-0.013119635172188,-0.047474857419729],[0.021733397617936,0.039298169314861,-0.020951682701707],[0.058526247739792,0.022511459887028,-0.0314623080194]],[[-0.11123894900084,0.036880973726511,-0.041303057223558],[-0.018653562292457,0.02374430373311,0.049761280417442],[0.081862956285477,0.0092640509828925,-0.0030991090461612]],[[0.016366055235267,0.024748904630542,-0.0011201282031834],[-0.030643803998828,0.041781064122915,0.017015039920807],[0.0087599046528339,0.047774389386177,0.051024489104748]],[[0.080309256911278,0.020927153527737,0.048560831695795],[0.055701393634081,-0.080143354833126,0.018816689029336],[0.019884441047907,0.02651247382164,-0.020779021084309]],[[-0.033155679702759,0.032258778810501,0.033875212073326],[0.032806377857924,-0.032755181193352,0.057321399450302],[0.031923733651638,0.069702669978142,-0.019541773945093]]],[[[-0.063253432512283,-0.030032450333238,0.013498117215931],[0.021176336333156,-0.09876411408186,0.010347422212362],[-0.027467723935843,0.023152567446232,0.020207012072206]],[[-0.032546348869801,-0.050272911787033,0.037140104919672],[0.006112671457231,-0.0011312050046399,-0.03143884241581],[-0.013730782084167,-0.069325774908066,-0.045323323458433]],[[-0.036966573446989,-0.0072794677689672,-0.06065484136343],[-0.0096014142036438,0.050431925803423,-0.035209413617849],[0.069190047681332,-0.074841566383839,-0.0024660236667842]],[[-0.024087570607662,-0.066492862999439,0.028369341045618],[-0.070918798446655,-0.10997688025236,-0.0082672303542495],[0.010592638514936,0.014601899310946,-0.05484639108181]],[[-0.022597074508667,-0.039112992584705,0.034262541681528],[0.0030210050754249,0.0054539972916245,0.0016475789016113],[-0.032166447490454,-0.014289012178779,-0.01978375762701]],[[-0.01272292342037,0.026942921802402,-0.12869669497013],[-0.024313012138009,0.019047051668167,-0.076041840016842],[0.044956311583519,0.003743625478819,0.070771366357803]],[[-0.10365334153175,-0.16876566410065,0.027640076354146],[-0.012608065269887,-0.048910461366177,-0.054278384894133],[0.045898199081421,0.033524174243212,-0.01521369535476]],[[0.064646743237972,0.040265940129757,-0.11878384649754],[0.019971625879407,-0.039877448230982,-0.0093126567080617],[-0.088449284434319,-0.01640098169446,0.042530078440905]],[[0.039436932653189,-0.034429110586643,0.0065988907590508],[0.011887645348907,0.054282233119011,-0.038221877068281],[-0.090701662003994,-0.018495954573154,-0.032059814780951]],[[0.037343692034483,-0.10249502211809,-0.037870053201914],[0.055561624467373,-0.032248586416245,-0.045187134295702],[0.038566753268242,0.05963297188282,0.057065296918154]],[[0.055621080100536,-0.069189876317978,0.07619846612215],[0.020657870918512,-0.036140717566013,0.021835660561919],[-0.055548373609781,-0.031931169331074,-0.062292326241732]],[[0.028603369370103,0.16559079289436,0.0029868427664042],[-0.034427456557751,0.084349289536476,-0.041378255933523],[-0.0036613733973354,-0.079126425087452,-0.0025783213786781]],[[-0.0045360783115029,-0.083672404289246,-0.0046272058971226],[0.031479198485613,-0.044176302850246,-0.016814989969134],[0.0015418657567352,0.038698673248291,-0.0036165784113109]],[[0.00010184635902988,0.0011324489023536,-0.0057697645388544],[-0.021148823201656,0.010009081102908,0.065274737775326],[-0.049256257712841,-0.056911654770374,-0.012338799424469]],[[0.016238942742348,0.069285824894905,0.16231481730938],[0.051672015339136,-0.10463114082813,0.0057876450009644],[-0.088526859879494,-0.0019350093789399,-0.098320007324219]],[[-0.052639629691839,-0.014539428986609,-0.055623967200518],[-0.0090125603601336,-0.18598155677319,0.0091927479952574],[-0.016373958438635,-0.02847745269537,-0.028811298310757]],[[-0.1198404058814,0.006810138002038,0.0035207746550441],[-0.10931199789047,-0.072720669209957,0.097986333072186],[-0.057643860578537,0.041901540011168,-0.072067558765411]],[[-0.06030559912324,0.021243235096335,0.0096044382080436],[-0.033612005412579,-0.08171059936285,0.04552735760808],[-0.034272205084562,-0.027120213955641,-0.078092537820339]],[[-0.13100364804268,0.065218113362789,-0.050213262438774],[0.051682084798813,0.0012011200888082,-0.087392650544643],[0.041775960475206,0.015796193853021,-0.031658064574003]],[[-0.082004740834236,0.021697463467717,-0.019505543634295],[-0.0015919590368867,-0.06138414144516,-0.034811440855265],[0.073779083788395,0.0024329607840627,-0.018552148714662]],[[-0.02186519280076,-0.066579893231392,0.028172362595797],[0.036561653017998,-0.00050524831749499,-0.064436450600624],[-0.0020360790658742,0.016254659742117,0.025665307417512]],[[-0.036686647683382,-0.036540813744068,-0.079819075763226],[-0.029604645445943,0.020730493590236,0.038156360387802],[-0.0001175057477667,0.0023487261496484,-0.021273907274008]],[[0.0080876378342509,-0.076202198863029,0.040919963270426],[-0.123615257442,-0.059629168361425,0.002330060582608],[-0.10007524490356,-0.065923810005188,-0.089418552815914]],[[-0.067867174744606,-0.086379088461399,-0.0049878302961588],[-0.067389629781246,-0.018960103392601,-0.00026503129629418],[-0.076459228992462,-0.030117563903332,-0.016788253560662]],[[4.6774807742622e-06,-0.014186869375408,-0.067181408405304],[-0.095175080001354,-0.046164650470018,0.013045924715698],[0.10760992765427,-0.12423317879438,-0.27499860525131]],[[0.0056445887312293,0.0041853780858219,-0.078991629183292],[-0.0039482610300183,0.01377294305712,-0.06899631768465],[-0.010916846804321,-0.028986480087042,-0.10007233172655]],[[-0.043535679578781,-0.025604514405131,-0.027045238763094],[0.020845804363489,-0.0609933398664,-0.018627157434821],[-0.034261185675859,0.11164665222168,-0.044596072286367]],[[0.0037099381443113,0.058884169906378,-0.071867421269417],[-0.020618878304958,-0.093131802976131,0.012245438992977],[-0.066551722586155,0.014668966643512,-0.042987775057554]],[[-0.013713443651795,-0.0027716576587409,-0.020407933741808],[-0.013397527858615,-0.0202208571136,-0.04721487313509],[-0.056823410093784,-0.083368994295597,-0.079083904623985]],[[-0.090098604559898,-0.0032302041072398,0.060003895312548],[-0.034721214324236,-0.020731339231133,0.0023941968102008],[-0.041063375771046,0.085257180035114,-0.0028183017857373]],[[-0.015776075422764,-0.029138488695025,-0.0024454791564494],[0.073573470115662,0.067384980618954,0.0011044392595068],[-0.10382664948702,0.065668649971485,0.018745636567473]],[[0.045183848589659,0.061681393533945,0.0093905227258801],[-0.089809603989124,-0.1272120475769,0.11233609169722],[0.020190404728055,-0.014104273170233,-0.024775141850114]],[[0.035153608769178,-0.028671422973275,0.055755946785212],[0.005193670745939,-0.032478354871273,-0.0874288007617],[0.010808516293764,0.013599053956568,-0.0090734753757715]],[[-0.035462651401758,-0.082570530474186,-0.0048312996514142],[0.019503364339471,0.029501250013709,-0.046721238642931],[0.021843887865543,0.029246812686324,0.012349803932011]],[[-0.016562974080443,-0.028682611882687,-0.032682079821825],[0.011681531555951,0.11305532604456,0.054849911481142],[-0.02164570055902,0.067957364022732,0.039261668920517]],[[-0.013501273468137,0.040818475186825,-0.005588096100837],[-0.023341048508883,0.11799664795399,-0.00086520693730563],[0.0043080812320113,-0.038162611424923,-0.0023014422040433]],[[0.015389549545944,-0.037187736481428,0.011504054069519],[-0.0046034781262279,-0.021146792918444,-0.0090629467740655],[-0.014708073809743,0.068568348884583,-0.023570558056235]],[[-0.074229300022125,0.030183713883162,0.020248286426067],[0.012819937430322,-0.0036187628284097,0.017888138070703],[0.082627005875111,0.0024012033827603,-0.035104118287563]],[[-0.0082442490383983,0.02033600397408,-0.013646122999489],[0.0067274910397828,-0.096031747758389,0.19415792822838],[0.086003758013248,0.060630980879068,-0.11962598562241]],[[0.0023871222510934,0.0078561687842011,-0.032397031784058],[0.0074963620863855,-0.016972109675407,-0.053381334990263],[-0.057726852595806,0.024865839630365,0.029372736811638]],[[-0.014303470030427,-0.037431236356497,0.038550827652216],[0.030869545415044,-0.0083230454474688,-0.0047853826545179],[-0.028481082990766,-0.0023366855457425,0.020676413550973]],[[0.0042386129498482,0.089662678539753,-0.0096949944272637],[0.034120060503483,-0.036619160324335,0.012355310842395],[0.016806904226542,-0.031774863600731,0.050855048000813]],[[-0.0032833644654602,-0.084976270794868,0.080415010452271],[-0.020639471709728,-0.010840015485883,-0.035549242049456],[0.016867559403181,0.076912447810173,-0.14433510601521]],[[0.011230023577809,0.045861229300499,-0.014658823609352],[-0.017333468422294,-0.081531725823879,0.031289413571358],[0.082174755632877,0.045488152652979,-0.064238838851452]],[[0.060545016080141,0.076042510569096,-0.014298355206847],[-0.090792015194893,-0.051249865442514,0.046159934252501],[-0.035583086311817,-0.016761193051934,0.0061008804477751]],[[0.058334205299616,-0.039648603647947,0.024796051904559],[0.10857926309109,-0.025184722617269,-0.10470174998045],[-0.0047130044549704,-0.018533697351813,-0.049808882176876]],[[0.0061119571328163,0.030114350840449,-0.0057982858270407],[-0.034705989062786,0.019052052870393,-0.058893736451864],[-0.026566006243229,-0.057725429534912,-0.057092260569334]],[[-0.082539275288582,-0.0019515262683854,-0.055074349045753],[0.020901456475258,0.010593930259347,-0.024913255125284],[0.0095263030380011,-0.084246046841145,0.013170772232115]],[[-0.066855244338512,0.044565446674824,-0.032424468547106],[0.012190887704492,-0.017453841865063,0.060777869075537],[-0.13273169100285,-0.033996727317572,-0.061322961002588]],[[-0.039727970957756,-0.016143074259162,-0.093894839286804],[-0.10718563199043,0.042638409882784,-0.074336834251881],[0.062116213142872,0.0097162919119,0.014094978570938]],[[0.022323569282889,0.039973694831133,-0.07043419033289],[0.034262400120497,0.0552750043571,-0.056451592594385],[0.012519866228104,0.006501957308501,0.0066857170313597]],[[1.3190970094001e-05,-0.039614535868168,-0.013002496212721],[-0.093030549585819,0.053183414041996,0.078777357935905],[-0.029592033475637,-0.051789812743664,-0.040449541062117]],[[-0.13960675895214,-0.020481243729591,-0.03513241186738],[0.054708186537027,-0.020326606929302,0.040151633322239],[0.016350872814655,-0.036499068140984,-0.012863731943071]],[[-0.050109799951315,-0.018354367464781,-0.023357803002],[-0.17375096678734,-0.018522946164012,-0.035339884459972],[0.011251798830926,-0.040152847766876,0.0014645452611148]],[[-0.082113899290562,0.065965577960014,0.018728218972683],[-0.011127101257443,0.0068269544281065,0.002632615622133],[-0.050354462116957,-0.038827251642942,-0.0015666420804337]],[[-0.044143576174974,0.024762826040387,0.022719517350197],[-0.053470201790333,-0.02838883548975,-0.010927653871477],[0.043371882289648,0.041345827281475,-0.025349605828524]],[[-0.014854724518955,0.026518277823925,-0.03418156504631],[-0.11886203289032,-0.024951446801424,0.03980577737093],[-0.016992151737213,0.09592442959547,0.063243336975574]],[[-0.087380334734917,-0.019882548600435,-0.04018484801054],[-0.10657184571028,0.029782366007566,-0.047847393900156],[0.072267234325409,-0.055331192910671,-0.030945172533393]],[[0.028514431789517,-0.083282090723515,0.10042441636324],[0.0077860541641712,0.023187717422843,-0.064745895564556],[-0.012627089396119,0.080558568239212,-0.028706219047308]],[[-0.0082655735313892,0.056089580059052,0.028991824015975],[0.015259894542396,-0.11995449662209,-0.128319054842],[-0.047648243606091,-0.067876577377319,0.01726146414876]],[[0.010591738857329,-0.003909241873771,0.060793984681368],[-0.030157264322042,0.04895456507802,-0.033188179135323],[-0.068402729928493,-0.072147883474827,-0.032530829310417]],[[-0.0025929347611964,-0.052668198943138,-0.016430519521236],[0.041537083685398,0.093972750008106,0.045815899968147],[-0.023031251505017,-0.057485613971949,0.028304986655712]],[[-0.063843615353107,-0.027253335341811,0.012262693606317],[-0.035308454185724,0.037783864885569,-0.053957339376211],[-0.056466888636351,-0.076096579432487,0.049584984779358]],[[0.027416028082371,-0.0077304923906922,0.027968658134341],[-0.0093432972207665,0.031245850026608,-0.099692150950432],[-0.0099664684385061,-0.038654550909996,-0.0014906785218045]],[[-0.071153275668621,0.00055289303418249,-0.022812072187662],[-0.033027831465006,0.0097821392118931,0.0024808901362121],[-0.029575562104583,0.02084831520915,-0.015285141766071]],[[-0.04720064625144,0.065380334854126,-0.064957864582539],[0.032604973763227,-0.017214462161064,-0.03542798012495],[-0.013121902011335,0.068640224635601,-0.074372008442879]],[[0.049027651548386,-0.008582946844399,-0.016478795558214],[-0.019627060741186,-0.079026341438293,0.0031412702519447],[-0.0086010890081525,-0.070473112165928,-0.053645484149456]],[[-0.029327400028706,-0.046784341335297,0.035300929099321],[0.03085477091372,-0.0081617441028357,0.030010260641575],[0.0747115239501,-0.071469590067863,0.074326820671558]],[[0.043023061007261,-0.089072585105896,0.003570105182007],[-0.047916289418936,-0.1303725540638,0.089042715728283],[-0.038390681147575,0.028033250942826,-0.023964136838913]],[[-0.038003776222467,0.061040818691254,-0.10844051837921],[0.068493880331516,-0.11297420412302,0.035157803446054],[0.016162438318133,0.0011118850670755,0.033864077180624]],[[-0.017617456614971,-0.025935154408216,-0.045579209923744],[-0.0020751305855811,0.05833126232028,-0.021827131509781],[0.011791311204433,-0.12031330168247,-0.090677782893181]],[[-0.03709127753973,-0.045826748013496,0.056042019277811],[-0.034592937678099,0.014097203500569,-0.0046347249299288],[-0.0034212709870189,0.0034565904643387,-0.010652549564838]],[[0.075272724032402,-0.081617161631584,-0.015201990492642],[0.082692578434944,-0.097512431442738,-0.052342399954796],[-0.0092280739918351,-0.095523454248905,-0.03110196813941]],[[-0.0050774975679815,0.037856642156839,-0.10652812570333],[-0.02200417779386,0.083715721964836,-0.023540962487459],[0.021557915955782,0.040701597929001,0.029495116323233]],[[-0.053455613553524,0.048816807568073,-0.061119344085455],[-0.0095670707523823,-0.13907666504383,-0.0016670576296747],[-0.0081042433157563,-0.013458644039929,0.033077351748943]],[[-0.0069944183342159,-0.002403125166893,-0.036871027201414],[0.045202448964119,-0.14983268082142,-0.11599616706371],[0.0009573552524671,0.046866349875927,-0.090099088847637]],[[0.0071386606432498,0.10242874920368,-0.10629573464394],[-0.060684602707624,-0.07076022028923,0.073185876011848],[-0.038037050515413,-0.044577028602362,-0.015360333025455]],[[0.0175318159163,0.002448434010148,-0.05214811116457],[-0.039225332438946,-0.032309662550688,-0.087304696440697],[-0.068275138735771,-0.023099655285478,0.031847313046455]],[[-0.012508084066212,-0.09026326239109,0.041283968836069],[0.023005101829767,0.0066709946841002,-0.041214238852262],[0.032387468963861,0.022328607738018,-0.020293973386288]],[[-0.038013953715563,0.023203294724226,-0.10395193099976],[0.05676668509841,-0.019315393641591,-0.078899696469307],[0.0026998140383512,0.02789962477982,-0.03255382925272]],[[0.029661845415831,-0.027249932289124,-0.038259156048298],[0.025386901572347,0.071144588291645,0.00032099051168188],[0.026468677446246,0.061695247888565,0.050952650606632]],[[-0.0018829901237041,-0.083263263106346,0.095767363905907],[-0.065415501594543,0.013606358319521,-0.026951065286994],[-0.11344296485186,0.042162299156189,-0.0072762463241816]],[[-0.0098511781543493,-0.085732214152813,0.00056647742167115],[-0.042079962790012,0.030568283051252,-0.0098618119955063],[-0.000620037317276,0.068158388137817,0.055054098367691]],[[0.074060022830963,0.0015911981463432,-0.0842095464468],[-0.045688834041357,0.0062558059580624,-0.031738545745611],[0.031340103596449,-0.0080660432577133,-0.013368457555771]],[[-0.044311925768852,0.048485945910215,-0.10156819224358],[0.060073722153902,-0.0067027662880719,-0.04525788500905],[-0.068195372819901,-0.0039429347962141,0.029444778338075]],[[-0.046097841113806,-0.081372104585171,-0.01057712174952],[0.095381192862988,-0.091923631727695,-0.010439752601087],[0.062829293310642,0.033214516937733,-0.045953366905451]],[[-0.012684673070908,0.062940143048763,-0.026752496138215],[-0.10036353766918,0.0094247106462717,-0.047636236995459],[0.023998955264688,0.03564415127039,-0.061305362731218]],[[-0.023474557325244,-0.039816979318857,-0.066241398453712],[-0.10785402357578,0.017646819353104,-0.054269250482321],[0.022236838936806,0.010669429786503,-0.05109991133213]],[[0.041622750461102,-0.00065952359000221,0.066163331270218],[-0.085142031311989,-0.057531740516424,-0.028502045199275],[-0.010031376034021,0.038828283548355,0.0073857330717146]],[[0.021015472710133,0.019479176029563,-0.099726229906082],[0.031205780804157,0.014161560684443,-0.057729437947273],[0.023257292807102,-0.046367548406124,0.039278589189053]],[[-0.051363233476877,0.0119244819507,0.082021676003933],[-0.010287020355463,0.024436606094241,-0.087603718042374],[0.024910302832723,-0.1259902715683,-0.053982742130756]],[[0.0015258155763149,-0.038238726556301,0.061304334551096],[0.063087329268456,0.077764831483364,-0.032075017690659],[-0.0078308144584298,0.018119351938367,0.0080045657232404]],[[-0.026287849992514,-0.12687817215919,0.079473815858364],[-0.016180045902729,0.057015396654606,-0.0042261648923159],[0.02261071279645,-0.014761941507459,0.017282545566559]],[[-0.01093902438879,0.0038118381053209,0.039786625653505],[0.0045259892940521,-0.014180578291416,-0.014449319802225],[-0.041410058736801,0.0078122988343239,0.091168530285358]],[[-0.012248603627086,0.00064122903859243,-0.043315023183823],[-0.054367609322071,-0.10482872277498,0.080449268221855],[-0.036017417907715,-0.012959292158484,0.0024407925084233]],[[-0.030124440789223,-0.083661943674088,0.085084952414036],[0.00051846011774614,-0.12234587967396,0.0050278482958674],[-0.074651025235653,-0.0041433614678681,-0.019328897818923]],[[0.09800935536623,-0.1158300191164,-0.011855388060212],[-0.013094365596771,0.0020577756222337,-0.027508135885],[-0.032157801091671,-0.0070722019299865,0.014746378175914]],[[-0.026467263698578,-0.016859756782651,0.061616379767656],[-0.09802632778883,0.0010688334004954,0.030258111655712],[-0.097122378647327,-0.041764691472054,0.053822234272957]],[[0.084017932415009,0.028403487056494,-0.054835423827171],[0.087009914219379,-0.011213658377528,-0.02261121943593],[-0.044553492218256,-0.10765767097473,-0.072845309972763]],[[0.0017225473420694,0.038902509957552,-0.0068396376445889],[-0.023016961291432,-0.0030366869177669,-0.054477993398905],[-0.027058443054557,-0.029856856912374,-0.0079457955434918]],[[-0.099892131984234,-0.072054736316204,-0.028624083846807],[-0.011607677675784,0.0075682224705815,-0.057024620473385],[0.057478968054056,-0.012675136327744,0.02181962877512]],[[-0.022141505032778,0.068101234734058,-0.053986821323633],[-0.078239969909191,-0.10577913373709,0.020000593736768],[0.04493361338973,0.0080990232527256,-0.071818582713604]],[[-0.012680780142546,-0.068510562181473,0.0046043172478676],[-0.0066326088272035,-0.066269487142563,-0.053317572921515],[0.025937214493752,-0.0012059697182849,-0.058208111673594]],[[-0.086716704070568,-0.040214236825705,0.019174601882696],[0.10261873155832,-0.063580513000488,-0.0083499252796173],[-0.049930479377508,0.033788505941629,0.0088332304731011]],[[-0.053948406130075,0.0017788138939068,-0.094710819423199],[0.0044682049192488,-0.012860951013863,0.085116662085056],[0.016976749524474,-0.037217207252979,0.036206245422363]],[[-0.080233693122864,0.010019670240581,-0.023467715829611],[-0.011782160028815,0.022337306290865,0.0057452684268355],[0.014943704009056,0.035651136189699,-0.028830947354436]],[[0.044702477753162,-0.080083854496479,-0.0020092241466045],[0.010437205433846,0.0009390467312187,-0.15602359175682],[-0.012334288097918,-0.013575287535787,0.092389859259129]],[[-0.1005873978138,0.020392261445522,0.068760104477406],[0.0074863000772893,-0.025710083544254,0.0036136524286121],[0.043730422854424,-0.030632253736258,0.027222529053688]],[[-0.10901467502117,0.085409075021744,-0.026762949302793],[0.036128368228674,-0.097799360752106,-0.036183457821608],[0.02574085816741,-0.043783091008663,-0.052735280245543]],[[-0.015236997045577,-0.017535891383886,-0.067253328859806],[0.0060329497791827,0.020157197490335,-0.0029656088445336],[-0.0058444105088711,-0.076736785471439,-0.0011600110447034]],[[0.020267695188522,-0.063211612403393,-0.021812628954649],[-0.019870806485415,-0.029487473890185,-0.037928000092506],[-0.0082272691652179,0.017689039930701,0.02089055813849]],[[-0.039211317896843,-0.091234609484673,0.023613344877958],[-0.046845555305481,-0.019964991137385,0.011643911711872],[-0.040045171976089,0.0027533972170204,-0.032535552978516]],[[-0.028384901583195,-0.015842664986849,-0.042546100914478],[-0.08791445940733,0.022167446091771,0.038464996963739],[-0.016784524545074,-0.025531316176057,0.0063273846171796]],[[-0.027471864596009,0.057349309325218,0.05967353656888],[0.070258595049381,0.086913019418716,0.072089351713657],[0.026894457638264,-0.028779368847609,-0.031052062287927]],[[-0.089673459529877,-0.14165687561035,0.044634871184826],[-0.01456424407661,-0.069628953933716,0.040055010467768],[-0.061793997883797,0.020951369777322,0.044735621660948]],[[-0.016704354435205,-0.0047128372825682,0.0005079492693767],[-0.042562671005726,0.0063944817520678,-0.035733494907618],[-0.031520634889603,0.014392572455108,-0.0046332743950188]],[[-0.069217674434185,0.0098975729197264,0.0016827173531055],[-0.055102363228798,-0.075485043227673,-0.04751468449831],[0.027765428647399,0.050745002925396,-0.035413678735495]],[[0.010944979265332,-0.017744747921824,-0.038954179733992],[0.015143248252571,0.080959536135197,-0.018708564341068],[0.054484061896801,-0.041218306869268,-0.054483387619257]],[[-0.051224883645773,0.009481206536293,-0.026312010362744],[-0.036915309727192,-0.061635319143534,0.0066380179487169],[0.048703618347645,0.019680565223098,-0.029859248548746]],[[0.00085334671894088,0.0447335280478,-0.025575466454029],[0.046948347240686,-0.0057689258828759,0.021439965814352],[-0.014159200713038,-0.018835185095668,0.021124335005879]],[[-0.029643956571817,0.050731766968966,0.066624104976654],[-0.096197962760925,-0.065562427043915,-0.062053423374891],[-0.011206501163542,-0.089102923870087,-0.063661575317383]],[[0.031549226492643,-0.062384821474552,0.027553556486964],[-0.040230702608824,0.12515266239643,-0.056648936122656],[0.045917741954327,0.030811131000519,-0.04908673837781]],[[-0.062801279127598,-0.034300532191992,-0.027187395840883],[0.057850249111652,-0.13784421980381,0.032594125717878],[0.003273289417848,0.024632101878524,-0.0077451705001295]],[[0.025902483612299,0.031526163220406,0.010702045634389],[0.011903677135706,-0.022170554846525,-0.064980030059814],[-0.049716472625732,-0.11881132423878,-0.1093612164259]],[[0.043251506984234,0.06688117235899,0.085936583578587],[-0.14377827942371,0.016131499782205,-0.04792769625783],[0.0077054835855961,-0.087720394134521,-0.089276254177094]],[[-0.099785156548023,0.10643750429153,-0.015613471157849],[-0.07359591126442,-0.037895701825619,0.024408662691712],[0.0091801732778549,0.01859431527555,-0.064443722367287]],[[-0.037943873554468,0.0062062493525445,0.026913562789559],[0.022274907678366,-0.021550072357059,-0.094374373555183],[0.00035041698720306,-0.024794792756438,-0.075499132275581]],[[0.091308951377869,0.072573453187943,-0.00099858397152275],[0.029921021312475,-0.012685941532254,-0.055057410150766],[-0.015871064737439,-0.018358509987593,0.0084313936531544]]],[[[0.099421128630638,0.029545821249485,-0.0055463528260589],[-0.082588113844395,-0.088857740163803,0.11534085869789],[0.00020787888206542,0.06116982921958,-0.048236917704344]],[[0.020087705925107,-0.029378181323409,-0.096550531685352],[0.014729076065123,0.015947092324495,0.076433502137661],[0.072276197373867,0.013943770900369,-0.037085641175508]],[[-0.0045890277251601,0.025244755670428,0.093280106782913],[-0.051403477787971,-0.067214451730251,0.049559365957975],[0.045071940869093,-0.069474950432777,0.038029748946428]],[[-0.039787661284208,0.0069989520125091,0.047444138675928],[-0.0083173559978604,0.0089435251429677,0.019882783293724],[-0.027833996340632,-0.075692348182201,0.043419539928436]],[[0.0056975306943059,0.0082560051232576,0.12230936437845],[-0.052222020924091,-0.0071277786046267,-0.074929878115654],[-0.011138911359012,-0.065986283123493,0.049217950552702]],[[0.15048104524612,-0.029027698561549,-0.02010247297585],[0.081162989139557,0.009350442327559,0.062268055975437],[0.15522952377796,0.15954899787903,0.17615124583244]],[[0.061750829219818,0.063588298857212,-0.030749723315239],[-0.041680779308081,-0.057647418230772,0.01213179435581],[-0.080186009407043,0.062471836805344,0.0052160588093102]],[[0.041043978184462,0.059166256338358,-0.022548923268914],[-0.040581278502941,-0.083696164190769,0.07758567482233],[0.013641433790326,0.026942485943437,-0.092943832278252]],[[-0.0052209259010851,0.033871803432703,-0.1027809008956],[-0.012585305608809,-0.089205399155617,0.00036465714219958],[0.006821206305176,0.037089727818966,0.024772513657808]],[[0.12272517383099,-0.0043943743221462,-0.01502991002053],[0.11790437251329,0.13473792374134,0.12904118001461],[0.074623994529247,0.062334675341845,0.043670199811459]],[[-0.13102608919144,0.078555807471275,0.022161869332194],[-0.18143354356289,-0.0054889349266887,0.049334932118654],[-0.022577375173569,0.10396185517311,0.0093080205842853]],[[0.20976243913174,-0.074189633131027,0.015087686479092],[0.069258354604244,-0.026311254128814,0.087907396256924],[0.14560170471668,-0.01209875382483,0.075711078941822]],[[-0.045355886220932,-0.02734374627471,0.049695517867804],[-0.073125913739204,0.034697860479355,0.054830867797136],[-0.022651053965092,0.013767934404314,0.11702032387257]],[[-0.038819462060928,0.016574153676629,-0.05695041641593],[0.012446100823581,0.01051411125809,0.045247804373503],[-0.0054732975549996,0.11902453005314,0.043885920196772]],[[0.079764068126678,0.039775297045708,0.083752505481243],[0.038361504673958,0.064279362559319,0.11043860763311],[-0.014182726852596,0.023148253560066,0.10341287404299]],[[0.023551303893328,-0.071170508861542,-0.0034736329689622],[-0.12535218894482,0.059168975800276,-0.0050787543877959],[0.0352478697896,-0.020435867831111,-0.15968002378941]],[[0.10780940204859,0.055539518594742,0.019661853089929],[-0.015060914680362,0.025686968117952,-0.029354203492403],[-0.014986965805292,-0.077622279524803,-0.052881751209497]],[[0.027502730488777,-0.17769408226013,-0.027112647891045],[-0.02620173804462,0.005194722674787,-0.20016026496887],[-0.059489611536264,-0.06750063598156,-0.031804155558348]],[[-0.027575058862567,-0.06379858404398,-0.062106356024742],[0.12847070395947,0.050454910844564,-0.11380819231272],[-0.0076259085908532,0.050474382936954,-0.18184727430344]],[[-0.044679116457701,0.026138776913285,0.01241460442543],[0.047716457396746,0.020426513627172,-0.048911686986685],[0.015942320227623,0.021388757973909,-0.075962543487549]],[[-0.047266688197851,-0.11095604300499,-0.0020697554573417],[0.01106808707118,-0.021430995315313,0.062294311821461],[-0.035059839487076,0.056328393518925,-0.10623452067375]],[[0.066554397344589,0.08535873144865,0.16559074819088],[0.10431352257729,0.064252711832523,0.027824956923723],[0.025189477950335,0.024289827793837,0.016602093353868]],[[0.065385483205318,-0.075918726623058,0.018766608089209],[0.036521386355162,0.020174680277705,0.021828642114997],[-0.020622052252293,-0.011294832453132,-0.060540214180946]],[[0.020342707633972,0.04411318898201,-0.03863575309515],[-0.088719308376312,0.056986380368471,-0.011756153777242],[-0.040245238691568,-0.041953399777412,0.13215532898903]],[[-0.0017257205909118,-0.054425664246082,-0.045691188424826],[0.024331837892532,-0.0098395850509405,-0.066951513290405],[0.0084647927433252,-0.045136403292418,-0.031744085252285]],[[-0.054198887199163,0.058308083564043,-0.04804714769125],[0.082525826990604,-0.067649818956852,0.048833064734936],[0.014441641047597,0.066454268991947,0.15512531995773]],[[-0.14044833183289,0.036503303796053,-0.019258622080088],[0.017127566039562,0.044512785971165,0.0059423693455756],[-0.064112365245819,-0.00081090023741126,0.027349025011063]],[[-0.0011872152099386,-0.088246285915375,0.10376137495041],[-0.059259310364723,-0.076583787798882,0.055781483650208],[-0.032942239195108,-0.065191008150578,0.070196434855461]],[[0.036936860531569,0.015151829458773,0.025647534057498],[-0.016990898177028,-0.044457651674747,0.074404813349247],[-0.020044224336743,0.00045865966239944,-0.0065528671257198]],[[0.027471199631691,-0.054393246769905,0.08106092363596],[0.045721706002951,0.14050260186195,0.030924649909139],[0.01180007122457,-0.11363656818867,-0.02757777646184]],[[0.016588805243373,-0.035059500485659,0.01826773583889],[0.11217559129,0.10602202266455,-0.024459762498736],[-0.13005575537682,-0.045734938234091,-0.14016079902649]],[[-0.026123696938157,-0.091794103384018,0.034043282270432],[-0.075075507164001,-0.029376519843936,-0.0027513743843883],[0.018991304561496,0.047955755144358,-0.068971455097198]],[[-0.048477254807949,-0.030766757205129,0.089148730039597],[0.13798035681248,0.012156097218394,-0.0077505763620138],[-0.026136146858335,-0.068692408502102,0.037339754402637]],[[-0.017224157229066,0.080746077001095,-0.052715845406055],[-0.036108464002609,-0.061092082411051,0.068262331187725],[-0.010485172271729,0.055863693356514,-0.1020397618413]],[[-0.0093278754502535,0.099301189184189,-0.019032748416066],[-0.013092984445393,0.063961751759052,0.044305864721537],[-0.041729744523764,-0.05655837059021,0.16726216673851]],[[0.0039616208523512,0.0014426182024181,-0.070950038731098],[-0.047688607126474,0.055193956941366,0.042720206081867],[0.05296790227294,-0.018080329522491,-0.074193343520164]],[[0.042580313980579,0.018527843058109,-0.033703599125147],[-0.072332501411438,-0.078989274799824,-0.038092158734798],[-0.036872152239084,-0.16369643807411,-0.12382365018129]],[[-0.0064041023142636,0.049542188644409,-0.066628821194172],[-0.02969023399055,-0.067557722330093,0.097177319228649],[-0.076528742909431,0.034929469227791,-0.20193801820278]],[[-0.0096744308248162,0.024930352345109,-0.17657229304314],[-0.018496122211218,-0.00085314642637968,-0.034527186304331],[-0.023057501763105,-0.17180433869362,0.016377525404096]],[[-0.07005537301302,-0.033240355551243,0.059609338641167],[-0.10614638775587,0.046929631382227,0.042779065668583],[-0.12183850258589,0.023819474503398,-0.013260638341308]],[[0.045942634344101,-0.044786676764488,0.054355327039957],[0.065476506948471,-4.7553949116264e-05,-0.058034870773554],[0.040023393929005,0.10475251078606,0.23223921656609]],[[-0.0067131286486983,0.081283457577229,0.080076582729816],[-0.12023189663887,0.076523005962372,0.029802549630404],[0.019418688490987,0.048029072582722,0.023509567603469]],[[0.003337214468047,0.073755487799644,0.0496486723423],[-0.018428033217788,0.054265551269054,-0.056180153042078],[0.040512051433325,0.083984203636646,0.16307954490185]],[[0.069338329136372,-0.033900659531355,0.053915590047836],[0.00052999862236902,-0.046711418777704,-0.086937882006168],[0.034446347504854,0.1233035326004,-0.049494095146656]],[[-0.022803705185652,-0.012767866253853,0.035096075385809],[-0.040804784744978,0.066002555191517,0.019246228039265],[0.051825020462275,0.15138411521912,-0.055661607533693]],[[0.015796052291989,0.041655231267214,0.046795662492514],[-0.02436476573348,0.062759235501289,0.046966746449471],[0.035145193338394,0.058007206767797,0.0096118384972215]],[[-0.24634866416454,-0.16545507311821,-0.13040962815285],[0.069818653166294,-0.032792180776596,-0.11187161505222],[0.055618654936552,0.10978587716818,0.058009311556816]],[[-0.048318393528461,0.015260210260749,-0.01354431733489],[0.056268844753504,0.024176485836506,0.079664878547192],[0.024626918137074,0.10712521523237,-0.06562814861536]],[[-0.090850330889225,-7.1221293183044e-06,0.074678868055344],[-0.0075088441371918,-0.050534248352051,-0.092716164886951],[-0.02814276330173,-0.088576450943947,0.050447300076485]],[[0.001065100543201,0.027212643995881,0.049868460744619],[-0.053465358912945,-0.014596085995436,-0.019025772809982],[-0.027206970378757,-0.039843495935202,-0.03291105479002]],[[-0.028094431385398,-0.073219552636147,-0.10632137954235],[0.013923571445048,-0.075644962489605,-0.016224380582571],[0.081526830792427,0.06753883510828,0.039234176278114]],[[0.03126621991396,0.044424671679735,0.058798391371965],[0.0044457786716521,0.032556779682636,-0.0053590899333358],[0.093151107430458,0.0056640543043613,0.072153329849243]],[[-0.0086559066548944,0.027854464948177,-0.017701681703329],[-0.017120720818639,-0.033549681305885,-0.011321040801704],[0.017551893368363,0.014813330955803,-0.16379624605179]],[[0.06658848375082,-0.048728954046965,0.096875362098217],[-0.056678883731365,-0.10686981678009,0.14026965200901],[-0.018326982855797,0.00072172615909949,0.037213500589132]],[[0.022256400436163,-0.072174832224846,-0.042861495167017],[-0.0061185536906123,-0.071827180683613,-0.047539103776217],[-0.098978348076344,0.023621549829841,-0.098872482776642]],[[0.26192101836205,0.13657134771347,0.045158591121435],[0.039347417652607,0.15389873087406,0.097794763743877],[0.034303121268749,0.1561379134655,-0.18765309453011]],[[-0.0014582241419703,0.068042606115341,0.11480853706598],[0.054781854152679,0.027949353680015,-0.0031816724222153],[-0.02893128991127,-0.010437875986099,0.0070929769426584]],[[-0.077074825763702,-0.089572794735432,-0.11815205216408],[0.0060575171373785,0.20120504498482,0.066555857658386],[-0.09599607437849,-0.13735491037369,-0.15466882288456]],[[-0.15086741745472,0.12234934419394,0.082443438470364],[-0.010477545671165,-0.17861877381802,0.0036730214487761],[-0.05318259447813,-0.16977380216122,0.051089063286781]],[[0.093973480165005,0.040690783411264,0.079647615551949],[-0.068376623094082,0.055910486727953,0.0067153470590711],[-0.076067835092545,0.01895372569561,-0.01142018660903]],[[0.0010835392167792,0.030796114355326,0.0081327967345715],[0.064199090003967,0.089778982102871,0.037679117172956],[0.0035305649507791,-0.041423227638006,-0.0038974948693067]],[[-0.15131314098835,0.016853172332048,0.0072450344450772],[-0.070139609277248,-0.012901687994599,-0.060052338987589],[0.07150936126709,-0.072032779455185,0.069335862994194]],[[-0.20780538022518,0.041942417621613,-0.0075328378006816],[0.05881105735898,0.016046056523919,-0.023624842986465],[0.051729969680309,-0.037148021161556,-0.014037722721696]],[[0.053536988794804,0.061834968626499,-0.066662386059761],[0.0815419703722,0.10092796385288,0.043016962707043],[-0.054896201938391,0.099452845752239,0.048200190067291]],[[0.085718005895615,7.0631700509693e-05,0.063565701246262],[0.10280759632587,0.014457201585174,-0.072688922286034],[0.010057489387691,0.064303793013096,0.02660096809268]],[[0.049361884593964,-0.028855023905635,-0.010050718672574],[-0.070726975798607,-0.13729596138,0.14848484098911],[0.021291932091117,0.052482329308987,-0.1231337711215]],[[0.023009298369288,-0.011207980103791,0.12345696985722],[0.023383120074868,-0.037551082670689,0.088535442948341],[0.1101248934865,-0.045255146920681,0.078327648341656]],[[0.093388833105564,0.015171431936324,-0.0073831495828927],[0.045437447726727,0.13531322777271,-0.02080300077796],[0.037947665899992,0.01672106795013,-0.17897810041904]],[[0.02095029130578,-0.030862979590893,0.018379179760814],[-0.035950310528278,-0.097895495593548,0.010391661897302],[-0.0012866643955931,0.0070153335109353,-0.0040796189568937]],[[0.025748772546649,0.048368245363235,-0.033956479281187],[0.033689204603434,0.018836556002498,-0.066967867314816],[0.13692738115788,-0.0082087805494666,-0.026355266571045]],[[-0.05864654108882,0.1616772711277,-0.10905427485704],[-0.014966458082199,0.040952801704407,-0.028864359483123],[0.012522109784186,-0.011928373016417,-0.033468455076218]],[[-0.061989787966013,-0.03109011426568,0.066880226135254],[0.071382522583008,0.052741557359695,-0.034071329981089],[0.078499481081963,0.054321199655533,0.012547770515084]],[[0.12550137937069,0.14874103665352,0.042743638157845],[0.13599932193756,-0.036636285483837,-0.038773380219936],[0.020907800644636,0.050117734819651,0.11104885488749]],[[0.010056194849312,-0.009656379930675,0.075144626200199],[-0.00290322676301,-0.15689633786678,-0.018640764057636],[-0.066085182130337,0.0069986102171242,-0.070383347570896]],[[-0.010575024411082,0.066824182868004,-0.052086926996708],[0.0205860119313,-0.014663039706647,0.11917937546968],[0.097452446818352,0.020598713308573,-0.047706853598356]],[[0.0031215446069837,0.030620040372014,-0.023279124870896],[0.044745605438948,-0.077869273722172,0.046635005623102],[0.0074784299358726,0.041922334581614,-0.038862749934196]],[[-0.05991917103529,0.097698569297791,0.0094098933041096],[-0.016881978139281,0.043261505663395,-0.013668584637344],[-0.011430840939283,-0.0056944796815515,0.0010390809038654]],[[-0.030121963471174,-0.053793791681528,-0.0020090918987989],[-0.052553050220013,0.011621381156147,0.064676620066166],[0.029732732102275,0.019512278959155,-0.10011269152164]],[[-0.11755015701056,-0.10065996646881,0.020560640841722],[0.046555008739233,-0.094725668430328,-0.069890178740025],[0.0038485652767122,0.015700899064541,-0.015422960743308]],[[-0.060321915894747,-0.050443865358829,-0.083821147680283],[-0.023532873019576,-0.046497728675604,-0.035714741796255],[-0.090093925595284,0.0012057174462825,0.026088127866387]],[[0.13870091736317,-0.064825445413589,0.021854402497411],[-0.089114643633366,0.019343363121152,-0.03168673813343],[0.040583167225122,-0.10371997207403,0.13286942243576]],[[0.019168194383383,0.10864628851414,0.00816735252738],[0.034662514925003,-0.018878661096096,-0.037193782627583],[0.059557307511568,-0.055803369730711,0.049433533102274]],[[-0.037683837115765,0.020893750712276,0.0044156764633954],[0.026498919352889,0.032513126730919,-0.018587427213788],[0.05114871263504,-0.10671602934599,-0.048754490911961]],[[0.095957778394222,-0.039153158664703,0.067307539284229],[0.02631438523531,0.014476574026048,0.10059247165918],[0.13062873482704,-0.023960890248418,-0.025682026520371]],[[0.033876162022352,0.013362453319132,0.0081755239516497],[-0.062914840877056,-0.056293480098248,0.11858949810266],[0.0444106310606,-0.019028941169381,0.064639419317245]],[[0.059350177645683,-0.008524932898581,-0.023193027824163],[0.086661711335182,0.015064395032823,-0.0011625335318968],[0.069455660879612,0.078143887221813,0.086287744343281]],[[0.07186771184206,-0.10647858679295,0.034179233014584],[-0.091101214289665,0.070578061044216,-0.044690988957882],[-0.094280332326889,0.0079056918621063,0.081024289131165]],[[-0.03577471151948,-0.027370316907763,0.10070912539959],[0.063610441982746,-0.0044937692582607,0.06734061986208],[0.032051675021648,0.0093997707590461,-0.018406035378575]],[[0.065687537193298,-0.064913652837276,-0.041262611746788],[0.026998393237591,0.022741505876184,-0.069120511412621],[0.067367143929005,0.0134447067976,0.078422099351883]],[[0.10784168541431,0.064235351979733,-0.00634511327371],[0.010645397007465,0.038587156683207,0.053377732634544],[0.038960672914982,0.093008875846863,0.061565421521664]],[[-0.035715349018574,0.065224505960941,-0.043348129838705],[-0.060226116329432,-0.021474262699485,0.057616453617811],[-0.028664145618677,0.040098085999489,0.11386050283909]],[[0.05594477802515,-0.023484889417887,-0.026674246415496],[-0.0026570339687169,-0.037181369960308,0.031407475471497],[-0.010767799802125,-0.048024494200945,-0.010573516599834]],[[-0.19899602234364,-0.016167646273971,-0.014529479667544],[0.11606865376234,-0.18998345732689,-0.13473115861416],[-0.056759472936392,0.061455100774765,-0.07532449811697]],[[-0.13704872131348,-0.14371187984943,-0.031185707077384],[-0.059018008410931,-0.15043593943119,-0.01111710164696],[-0.086855031549931,-0.10751095414162,-0.15419787168503]],[[0.078738138079643,0.034749232232571,0.13559098541737],[0.0042375870980322,-0.04940290004015,0.029113098978996],[-0.12045913934708,0.040331680327654,-0.090553984045982]],[[0.034771613776684,0.13846807181835,0.03746822476387],[0.076625324785709,0.012468723580241,0.12202572077513],[0.022997923195362,-0.019115285947919,0.087932422757149]],[[-0.038999054580927,-0.0047916593030095,-0.0063566439785063],[0.045858658850193,0.040450319647789,0.038297329097986],[0.034864157438278,0.051898878067732,0.14710393548012]],[[-0.0051282104104757,0.044615477323532,0.20942555367947],[0.21483473479748,-0.27562189102173,0.16217708587646],[0.1830780506134,0.039053563028574,-0.052933368831873]],[[-0.16310314834118,0.085008099675179,0.15099677443504],[0.13704973459244,0.056862697005272,0.029461670666933],[0.055283728986979,0.065224386751652,0.079063683748245]],[[0.065574213862419,0.067132152616978,0.060042332857847],[0.011226192116737,-0.01806603744626,0.038138695061207],[0.091170005500317,-0.010838430374861,0.0091817211359739]],[[-0.093333937227726,0.050101157277822,-0.036767046898603],[-0.036716531962156,-0.043566171079874,-0.046049986034632],[-0.038306269794703,-0.03680545091629,0.098544925451279]],[[0.082206904888153,0.043864533305168,0.0098783550783992],[0.03318190202117,0.050707507878542,0.14835058152676],[0.043290007859468,0.020553193986416,0.00091437343508005]],[[0.014409299008548,-0.014881093986332,0.12908992171288],[-0.011415666900575,-0.13735046982765,-0.036024987697601],[0.078228317201138,-0.05322439968586,0.029714114964008]],[[0.10469295084476,0.017590951174498,0.049366436898708],[-0.071928471326828,0.069601371884346,-0.096897855401039],[0.0024748672731221,0.0010316774714738,-0.22678601741791]],[[-0.031012592837214,0.047240678220987,0.043293870985508],[0.0049393293447793,-0.067144937813282,-0.042325675487518],[0.058693796396255,0.040281232446432,-0.016221841797233]],[[0.053532589226961,0.0015039735008031,-0.0031736302189529],[0.066744774580002,-0.018410151824355,-0.10470913350582],[-0.028555911034346,-0.10633415728807,-0.0008028480806388]],[[-0.082884110510349,-0.096386447548866,0.023040268570185],[0.060848452150822,-0.07038675993681,0.029754711315036],[-0.051427617669106,0.04522555693984,0.12229693681002]],[[0.13857957720757,0.032181050628424,0.070477187633514],[-0.086703911423683,-0.092426851391792,0.047587379813194],[-0.042243395000696,0.010791064240038,0.1212433129549]],[[0.058991815894842,0.025873826816678,-0.0067614791914821],[0.028255941346288,-0.013157662935555,0.015742722898722],[0.019264798611403,0.029838694259524,0.021226357668638]],[[0.0030181859619915,-0.0093638049438596,0.037686660885811],[0.022375553846359,0.032961864024401,-0.016787936910987],[0.022576374933124,0.038259625434875,-0.0042927213944495]],[[0.0034346748143435,-0.005160472355783,0.029497478157282],[-0.003805632237345,-0.024421421810985,-0.063895344734192],[-0.0060566486790776,0.043901316821575,0.025209369137883]],[[0.046975463628769,-0.083390615880489,-0.11204671859741],[0.032285589724779,0.023601073771715,-0.052681971341372],[-0.031069207936525,-0.011506607756019,0.0079905744642019]],[[0.015148717910051,-0.092679880559444,0.068373173475266],[-0.032981604337692,-0.02381725050509,0.02448458224535],[-0.00021085634944029,-0.091813549399376,0.015308989211917]],[[-0.061236705631018,-0.045899871736765,-0.027619214728475],[-0.031400129199028,-0.041248045861721,0.078279286623001],[-0.0077910530380905,-0.0055809388868511,-0.039449639618397]],[[-0.022470835596323,-0.010714565403759,-0.086096242070198],[-0.026789931580424,-0.015682095661759,-0.036278665065765],[0.049499154090881,0.041618514806032,0.099011927843094]],[[-0.23108424246311,0.00067078578285873,-0.01582750864327],[-0.26838889718056,-0.052596651017666,-0.022707279771566],[-0.16350044310093,-0.050984393805265,-0.016882359981537]],[[0.18892282247543,0.12352722138166,0.044795095920563],[0.042141605168581,-0.015112200751901,0.015970652922988],[-0.0028177695348859,0.055117256939411,0.086564160883427]],[[0.080242909491062,-0.030376246199012,-0.036767829209566],[0.010061437264085,-0.1251315176487,0.018581263720989],[-0.014606168493629,0.011146150529385,0.094859220087528]],[[-0.076718360185623,0.033293232321739,0.072445653378963],[-0.087135583162308,0.02396528981626,-0.00026848030393012],[0.019323395565152,-0.10018610209227,0.0027985058259219]],[[-0.00064723577816039,-0.13882780075073,-0.02679144218564],[0.080466650426388,0.052571721374989,0.073837578296661],[0.0097793806344271,-0.062070429325104,0.033995646983385]],[[-0.081538416445255,-0.076604902744293,0.099130913615227],[0.0082296933978796,-0.014740252867341,0.063392966985703],[0.07813935726881,0.033969733864069,0.043961245566607]],[[0.0090977540239692,0.044559746980667,-0.064692534506321],[0.010468555614352,-0.04783509299159,-0.13277217745781],[-0.05043264105916,-0.027265580371022,-0.1013380587101]],[[0.014907225966454,0.029101300984621,-0.019386164844036],[-0.11816585808992,-0.028166076168418,0.030886996537447],[-0.00094245903892443,-0.058240972459316,-0.031214473769069]],[[0.03727313876152,0.032279793173075,-0.23313197493553],[0.057741392403841,-0.017032701522112,0.068618506193161],[0.06517793238163,0.083741277456284,0.034907527267933]],[[0.038272108882666,0.055053178220987,-0.031390476971865],[-0.02677577920258,0.00010564857075224,-0.064794413745403],[0.078976109623909,-0.085018336772919,-0.027053406462073]],[[-0.024035381153226,-0.030143259093165,0.054632294923067],[-0.013107324950397,-0.07917682826519,0.06186068803072],[-0.051422420889139,-0.057992234826088,0.02899981290102]],[[0.025612348690629,0.068639859557152,0.095382176339626],[-0.042621750384569,0.032439414411783,0.061664082109928],[0.05411933735013,-0.033610261976719,0.040568348020315]],[[-0.14531303942204,0.12491199374199,-0.048586465418339],[0.056673888117075,0.03535158187151,-0.015300270169973],[0.054998643696308,-0.022641662508249,0.071480609476566]]],[[[0.018762089312077,0.048804495483637,-0.031271506100893],[0.032633882015944,0.0086367437615991,0.044639527797699],[-0.04816435649991,0.030338229611516,0.036106809973717]],[[0.059980101883411,-0.01863376237452,0.0009313698974438],[0.078654952347279,-0.04679411649704,0.029262810945511],[-0.019366648048162,0.065467514097691,-0.0626170784235]],[[-0.0223617143929,-0.035095002502203,0.0071712825447321],[0.017572252079844,0.088579170405865,-0.012162305414677],[0.077465705573559,0.01762636564672,-0.0046505802311003]],[[-0.021301034837961,0.015767524018884,0.025241866707802],[-0.068671107292175,0.015594546683133,-0.02346109598875],[0.07810215651989,-0.076577737927437,-0.066422969102859]],[[-0.020217746496201,0.02140080742538,-0.043702084571123],[0.024755675345659,-0.020297467708588,0.017189240083098],[-0.053346216678619,-0.015646290034056,0.013525488786399]],[[0.053019303828478,-0.010970743373036,-0.044106107205153],[-0.0063232905231416,-0.031088789924979,0.066612303256989],[0.041887957602739,-0.034621920436621,-0.047265831381083]],[[0.033577155321836,0.0036158442962915,0.026863796636462],[-0.043112196028233,0.038326323032379,-0.050458233803511],[-0.013309992849827,0.0034229997545481,-0.011606604792178]],[[-0.021679742261767,-0.0025900190230459,0.059300735592842],[0.012919488362968,-0.011465116403997,0.0046694590710104],[0.069066107273102,-0.081286542117596,-0.017114104703069]],[[-0.02531143464148,0.016414755955338,-0.011536953039467],[0.024159096181393,-0.0036255095619708,0.029086478054523],[-0.035133816301823,0.002539454260841,-0.0053404327481985]],[[0.062262132763863,-0.090927369892597,0.053157892078161],[0.0070579187013209,0.033026542514563,0.095950648188591],[0.10467129945755,-0.012459895573556,0.086332485079765]],[[-0.057515639811754,0.069161549210548,0.031994186341763],[-0.033404488116503,0.098254390060902,0.0097186248749495],[0.058564554899931,-0.0014587851474062,0.089597776532173]],[[-0.015280646272004,0.0029581461567432,0.010425598360598],[0.040233947336674,0.043504420667887,0.017758483067155],[0.049894966185093,0.10252204537392,0.01981863565743]],[[-0.051201958209276,0.038519058376551,-0.013986121863127],[0.024250749498606,-0.0056066648103297,0.018052980303764],[0.013455955311656,0.060104288160801,-0.027066700160503]],[[-0.042211148887873,0.022554682567716,0.025820715352893],[-0.014194756746292,-0.045448113232851,0.086094819009304],[0.077359773218632,-0.046559534966946,-0.017588082700968]],[[0.04743828997016,0.11288979649544,0.14824348688126],[-0.010444541461766,0.0790054500103,0.04821452870965],[-0.022345351055264,0.062367711216211,0.064197957515717]],[[-0.07491285353899,-0.019385313615203,0.040821712464094],[0.026002302765846,-0.0031018028967083,0.0042464737780392],[0.011930793523788,-0.021330192685127,-0.042741034179926]],[[0.013772507198155,-0.032737374305725,-0.03359080478549],[0.0025444310158491,0.0055433008819818,0.036578338593245],[-0.0053496304899454,0.063940770924091,0.04194176569581]],[[0.063168749213219,-0.0560099221766,0.043112337589264],[-0.07427579164505,0.06260173022747,-0.033395107835531],[0.0084536895155907,-0.021539619192481,0.019232032820582]],[[0.0069881682284176,-0.041630014777184,-0.029835814610124],[0.039663217961788,0.014461158774793,0.027719728648663],[0.01131915487349,0.028054460883141,0.017697619274259]],[[0.038516405969858,-0.03172155842185,-0.0016050762496889],[0.05339852720499,0.07375967502594,0.069104291498661],[-0.041521638631821,0.11964010447264,-0.020989997312427]],[[-0.06491893529892,0.038355391472578,0.015138282440603],[0.047774456441402,-0.065269835293293,0.086783178150654],[-0.027001202106476,-0.017562460154295,0.013212095946074]],[[-0.038129810243845,0.091070063412189,0.002697289455682],[0.032027650624514,-0.034818828105927,0.039292331784964],[0.012663363479078,0.1229111328721,-0.02927147783339]],[[-0.035624958574772,0.048389781266451,0.042114078998566],[0.10215740650892,-0.02914628572762,0.017618356272578],[-0.021634032949805,-0.0032634008675814,-0.031156716868281]],[[0.043649256229401,0.041703101247549,0.020496424287558],[-0.047670636326075,-0.078047312796116,-0.046611707657576],[0.011500732973218,-0.0098256273195148,-0.014497194439173]],[[-0.029657607898116,-0.027853891253471,0.054411754012108],[-0.022745041176677,-0.0025702014099807,-0.047139924019575],[0.019162349402905,0.026608085259795,-0.030207425355911]],[[0.0013219863176346,-0.037655971944332,0.036437969654799],[-0.047524385154247,-0.019308423623443,-0.018204934895039],[0.048553213477135,0.033608417958021,0.04573668166995]],[[0.0066628446802497,0.019069904461503,-0.0041434466838837],[0.040014155209064,0.046727053821087,-0.034871444106102],[0.065141133964062,-0.032782562077045,0.012871775776148]],[[-0.040025435388088,0.042582876980305,-0.037585958838463],[0.045413866639137,0.0029447413980961,0.085049539804459],[-0.044283896684647,0.050567273050547,-0.045915435999632]],[[0.071683898568153,-0.023527998477221,-0.01067041233182],[0.070812188088894,-0.01155156083405,0.042742792516947],[0.0069948127493262,-0.035979643464088,-0.024978062137961]],[[0.086570076644421,0.072747938334942,-0.035311978310347],[-0.032192341983318,0.0072964276187122,0.0014926725998521],[-0.0038007006514817,0.020265147089958,-0.027406744658947]],[[0.042601376771927,0.064148515462875,0.031907625496387],[-0.0063181268051267,0.037946701049805,-0.0034045742359012],[-0.024121459573507,0.021669283509254,-0.007387020625174]],[[-0.021433155983686,0.033030357211828,0.060274019837379],[-0.001796112046577,-0.029678197577596,-0.00026975088985637],[0.053736563771963,0.015681907534599,0.015251103788614]],[[0.023225853219628,0.074308499693871,-0.014470563270152],[0.012270090170205,-0.0052671688608825,0.092113494873047],[-0.008291145786643,-0.03085714392364,0.0094622997567058]],[[-0.016397411003709,0.0058924299664795,0.049555607140064],[-0.015023860149086,0.027253605425358,0.0054083252325654],[-0.013482601381838,-0.042203523218632,0.061905354261398]],[[0.036877427250147,-0.024106038734317,0.0027218086179346],[-0.089339464902878,-0.082381092011929,-0.0039920574054122],[0.042985439300537,-0.011540883220732,0.058474283665419]],[[0.014911665581167,0.054938063025475,0.029169622808695],[-0.018381077796221,0.019084017723799,-0.010400803759694],[0.027708856388927,-0.020565550774336,-0.046189691871405]],[[0.022294793277979,0.00098263006657362,0.035087786614895],[0.016599033027887,0.017103012651205,0.034299314022064],[0.0028742314316332,-0.01238000113517,0.017021927982569]],[[0.013551210984588,0.062243789434433,-0.026972204446793],[-0.017937429249287,-0.042885426431894,0.016919441521168],[0.10662208497524,0.0048111551441252,-0.017994346097112]],[[0.032677922397852,0.039010111242533,0.0275002066046],[0.01709059253335,0.06988837569952,0.02753690071404],[0.026752369478345,0.034328497946262,0.015865415334702]],[[0.0064073842950165,0.0090109994634986,0.020600695163012],[-0.014064131304622,0.069085985422134,-0.03750366717577],[0.037680268287659,0.035215087234974,0.046003956347704]],[[-0.048730902373791,0.049282971769571,-0.009343427605927],[-0.0080964667722583,0.042660437524319,0.023758573457599],[0.02720888145268,-0.045559566468,-0.034100092947483]],[[0.0040318742394447,0.022560169920325,0.052187882363796],[0.026710581034422,0.031692821532488,-0.0081160767003894],[-0.023563083261251,0.046895083039999,0.0092142624780536]],[[0.082527339458466,-0.045233655720949,0.063124373555183],[-0.04884161055088,0.039028823375702,0.047680031508207],[-0.003730527125299,0.0058514750562608,-0.015333981253207]],[[0.02546140179038,0.068452551960945,0.014851661399007],[0.0028545644599944,0.01214565243572,0.051869988441467],[0.050973795354366,-0.023431599140167,0.030621940270066]],[[-0.025618569925427,0.010542983189225,-0.0074972854927182],[-0.022687433287501,0.022523755207658,0.049886588007212],[0.083532139658928,0.027388790622354,0.0035188663750887]],[[0.033068124204874,0.077906578779221,-0.067737571895123],[-0.0020909602753818,0.0062640481628478,0.00059108907589689],[-0.042036306113005,-0.0040175500325859,-0.014871758408844]],[[0.020478447899222,-0.018827484920621,-0.057955414056778],[-0.0089308219030499,0.00096418964676559,0.074684135615826],[-0.0054044155403972,-0.064974881708622,0.022001408040524]],[[0.031506273895502,0.028411839157343,-0.051885608583689],[0.0069014388136566,-0.046812497079372,-0.077078856527805],[0.062499310821295,0.0031990199349821,-0.008242710493505]],[[-0.014007636345923,0.042371727526188,-0.029075419530272],[-0.095662049949169,-0.025244144722819,-0.00019224570132792],[-0.0038961260579526,0.033470872789621,0.044116385281086]],[[0.0076993177644908,0.041149813681841,0.040255557745695],[0.036184966564178,-0.034827306866646,0.014458758756518],[-0.075545430183411,0.0017167477635667,-0.016792291775346]],[[-0.032889645546675,-0.0086688864976168,-0.0067816372029483],[-0.02337221801281,0.032357163727283,0.027520714327693],[-0.0071720727719367,0.041549805551767,-0.070239283144474]],[[-0.019878903403878,-0.065202124416828,0.041559960693121],[-0.015045677311718,0.036533679813147,-0.0075610135681927],[-0.030529299750924,0.020321302115917,0.016633516177535]],[[0.0049097617156804,0.031140498816967,-0.038532737642527],[-0.074811331927776,-0.010861805640161,-0.0043680868111551],[0.068821810185909,-0.026864796876907,-0.016376091167331]],[[0.0194734595716,-0.0078283380717039,0.062147982418537],[-0.012201555073261,0.036816716194153,0.024024456739426],[0.016075097024441,0.0086205871775746,0.0032769360113889]],[[0.013682938180864,0.086361952126026,-0.011463104747236],[0.068774476647377,0.069928817451,-0.040632948279381],[-0.023923888802528,-0.0059201582334936,-0.00596261350438]],[[0.015228750184178,0.044257450848818,0.04022741317749],[-0.033496428281069,-0.001482691266574,0.0381885394454],[-0.011051255278289,0.0015463270246983,0.00087526015704498]],[[-0.066862925887108,0.014583100564778,0.029644776135683],[0.048048060387373,-0.0047747087664902,0.039450217038393],[-0.0073264669626951,-0.020297339186072,0.038145937025547]],[[0.0032955310307443,-0.012535336427391,0.031268090009689],[-0.025391824543476,0.081621862947941,0.031555324792862],[0.044505685567856,-0.094103515148163,0.044239550828934]],[[-0.027960384264588,0.081497088074684,-0.012328268028796],[0.051763612776995,-0.0071953982114792,0.0061573018319905],[-0.0026110543403774,0.032967653125525,0.012914491817355]],[[0.092068545520306,0.049612261354923,-0.12664957344532],[-0.0043279267847538,-0.047636691480875,0.057571198791265],[0.029251428321004,0.029518108814955,0.11764399707317]],[[0.11907013505697,0.038659889250994,0.076315142214298],[0.0097326673567295,0.006231477484107,-0.040691614151001],[-0.00045974570093676,0.027093168348074,-0.054330345243216]],[[0.041785005480051,-0.028863843530416,0.0086202034726739],[-0.025362221524119,-0.041780550032854,0.038315922021866],[0.036255519837141,-0.048644755035639,0.024434393271804]],[[0.040652550756931,0.073587380349636,0.040438137948513],[-0.017791489139199,0.014708401635289,-0.036325234919786],[0.0063273324631155,0.03808232024312,0.016728732734919]],[[-0.020570443943143,-0.030253410339355,0.044109728187323],[0.017870265990496,0.072692468762398,0.0016688191099092],[0.028857953846455,0.0087750107049942,0.020706737414002]],[[0.054804868996143,0.065518289804459,-1.3909775589127e-06],[0.045646864920855,-0.027846591547132,-0.0024033167865127],[-0.00169944728259,-0.0068121030926704,0.0071506486274302]],[[0.00053819653112441,0.0051622125320137,-0.013938523828983],[-0.026326900348067,0.031473264098167,-0.0060680340975523],[-0.015858074650168,0.015212891623378,0.016653889790177]],[[0.067807905375957,0.017125716432929,0.030109453946352],[0.014460874721408,-0.024918580427766,0.032824769616127],[0.01789003610611,-0.1119681969285,-0.0020884603727609]],[[0.0020960567053407,-0.01867295242846,0.022851118817925],[0.0048053432255983,0.023568296805024,0.029122449457645],[-0.00034990566200577,-0.0072133927606046,0.059664752334356]],[[0.059205431491137,0.024099055677652,-0.0061721499077976],[0.022248109802604,0.050935346633196,-0.047546185553074],[-0.021448636427522,0.044349800795317,-0.0505036637187]],[[0.027048600837588,0.012008896097541,0.020372806116939],[-0.019083535298705,0.010761921294034,-0.011344607919455],[0.016519660130143,0.0056781135499477,0.01441396586597]],[[-0.053667563945055,-0.032821651548147,0.11685851216316],[0.069887943565845,-0.075603522360325,-0.020965417847037],[0.0049401400610805,0.05378183349967,-0.010667072609067]],[[-0.018583683297038,0.012256565503776,0.028220489621162],[0.0021179046016186,-0.00093993375776336,0.065859958529472],[0.051739078015089,0.014245035126805,0.0018051232909784]],[[0.024862866848707,0.046857908368111,0.0042326501570642],[0.051528554409742,0.0054169888608158,-0.045806631445885],[-0.0047372314147651,-0.016220677644014,0.019919205456972]],[[-0.071061685681343,0.027243539690971,0.024922136217356],[-0.049246966838837,0.0096087362617254,0.04087321460247],[0.017599834129214,0.020822999998927,0.057864513248205]],[[0.020889777690172,0.020052019506693,-0.01294810231775],[2.3686501663178e-05,0.020958928391337,-0.04020594805479],[-0.011212632060051,-0.017167683690786,0.050875965505838]],[[0.045203622430563,-0.0012321538524702,-0.087586596608162],[-0.002549055730924,0.013971610926092,0.022474797442555],[0.038483045995235,0.028877420350909,0.041810587048531]],[[0.063655816018581,0.041643593460321,0.0054769958369434],[-0.0019775398541242,0.045228268951178,-0.0050603505223989],[-0.0028236994985491,-0.032789394259453,-0.013130355626345]],[[-0.016147779300809,0.052514929324389,0.061381198465824],[0.034960582852364,0.00023791719286237,0.052416775375605],[0.049503277987242,-0.017577612772584,0.046867366880178]],[[0.022426780313253,-0.021346827968955,0.0094815092161298],[0.044917657971382,-0.0011660340242088,0.0033574209082872],[-0.040606074035168,0.0099946344271302,-0.044931847602129]],[[0.035203237086535,-0.045377977192402,-0.058801304548979],[0.035889025777578,0.032631915062666,-0.013135649263859],[-0.012020518071949,0.012886445969343,-0.00083990173880011]],[[0.037545308470726,0.098343275487423,-0.016664875671268],[-0.034782215952873,-0.05859025940299,0.047372825443745],[-0.050230544060469,0.049473881721497,0.0040768766775727]],[[-0.017596812918782,-0.0088962055742741,-0.029953239485621],[-0.0042627970688045,0.094103425741196,0.017937943339348],[-0.084735848009586,0.068968489766121,0.049490537494421]],[[0.084880210459232,0.047692138701677,0.067886851727962],[0.055657792836428,0.038034595549107,0.045602265745401],[-0.038374498486519,0.0087940981611609,0.051503542810678]],[[0.05053411051631,0.014065099880099,-0.0011485922150314],[0.00058859016280621,0.035413920879364,-0.025927713140845],[-0.02406389452517,0.049614440649748,-0.051015447825193]],[[0.060254566371441,0.061720307916403,0.03022575750947],[0.024579392746091,0.021527327597141,0.047899667173624],[0.040621098130941,0.00093353918055072,0.0030417498201132]],[[-0.037802573293447,-0.034783259034157,-0.033052138984203],[0.095550864934921,0.0064335931092501,0.015499300323427],[0.028060749173164,0.057310909032822,0.0098467236384749]],[[-0.0064553297124803,0.029394578188658,0.053311742842197],[-0.080365300178528,-0.030934223905206,0.013502382673323],[0.081349454820156,-0.041756100952625,-0.0085861282423139]],[[0.049540128558874,0.038937397301197,-0.030406011268497],[-0.00071636028587818,0.0359374769032,0.0044208373874426],[-0.031108342111111,-0.040300194174051,-0.020757691934705]],[[0.052800964564085,-0.024573426693678,-0.04887842014432],[-0.059839859604836,-0.0080663254484534,0.0050175338983536],[0.016488328576088,0.054227251559496,-0.0078215142711997]],[[0.040177617222071,0.014797805808485,-0.039681497961283],[0.016276674345136,0.052683550864458,-0.0057339491322637],[0.02949839644134,0.021027045324445,-0.030959166586399]],[[-0.031402189284563,-0.050112809985876,-0.029144110158086],[0.0097344471141696,0.030957758426666,0.034679796546698],[0.09946109354496,-0.009628327563405,-0.026064563542604]],[[-0.03009900264442,0.051448982208967,0.027319708839059],[-0.036726024001837,0.021857790648937,0.012238514609635],[0.033764623105526,0.026336098089814,0.069346353411674]],[[0.016468344256282,0.077396273612976,0.035016797482967],[0.018071360886097,-0.041137032210827,0.0033104096073657],[0.0058745997957885,0.03300429880619,0.049366600811481]],[[0.014948088675737,0.10052827745676,0.0008813277236186],[-0.036463811993599,0.056073766201735,0.016033969819546],[-0.0055307485163212,-0.048244461417198,0.039165649563074]],[[0.020772624760866,0.053842835128307,-0.0085410261526704],[-0.032356824725866,-0.029159564524889,0.051552835851908],[0.0017555041704327,0.0026663418393582,0.035618115216494]],[[0.025076804682612,0.076671674847603,0.0084541933611035],[-0.018744939938188,0.0022200429812074,0.065343342721462],[0.0055618053302169,0.09001412242651,-0.016707137227058]],[[0.032396383583546,-0.060302384197712,0.026055090129375],[-0.017150545492768,0.0084500024095178,0.035091739147902],[0.0072119673714042,-0.020694943144917,-0.052386801689863]],[[0.023295033723116,0.026655742898583,-0.046458691358566],[0.015204290859401,0.070857860147953,-0.051824994385242],[0.0024331687018275,0.074215896427631,0.0074597457423806]],[[-0.043339613825083,0.0059819393791258,-0.039833929389715],[0.052713390439749,0.035978134721518,-0.050607424229383],[0.00035737294820137,0.07417106628418,0.032160099595785]],[[0.066537961363792,0.028279237449169,-0.067821763455868],[0.11382488161325,0.032914727926254,-0.029737785458565],[-0.041958089917898,-0.0085789887234569,0.0062752165831625]],[[-0.017657227814198,-0.033101554960012,-0.0091827418655157],[-0.060949772596359,0.052523713558912,0.017056485638022],[-0.054192963987589,0.023333858698606,-0.045467972755432]],[[0.0060708490200341,0.020406382158399,0.092228524386883],[0.05860547721386,0.12195421755314,-0.010202514007688],[0.01227902341634,-0.030052043497562,0.057966437190771]],[[-0.049391072243452,-0.022266134619713,0.034281007945538],[-0.0027447235770524,-0.00039794881013222,-0.064951658248901],[-0.01364194881171,0.037538573145866,0.094496637582779]],[[-0.024233782663941,-0.03619223088026,-0.048386476933956],[-0.018538530915976,-0.039510048925877,0.048548277467489],[0.02540036290884,0.051855653524399,-0.00062297395197675]],[[0.020259324461222,-0.079826839268208,0.096352502703667],[-0.044739935547113,-0.031724482774734,0.019161909818649],[0.033388871699572,0.05391214042902,0.075463660061359]],[[-0.060448531061411,-0.022353095933795,0.013774736784399],[0.0072512147016823,-0.026164153590798,-0.029107641428709],[0.026791859418154,-0.029168479144573,0.025090103968978]],[[-0.022637277841568,0.011120217852294,-0.016966987401247],[0.072588197886944,0.073058009147644,-0.004657156765461],[-0.066788926720619,0.018939893692732,-0.11954897642136]],[[0.037249304354191,-0.015812432393432,0.059057902544737],[0.088693127036095,-0.028021711856127,0.11631119251251],[0.063175119459629,-0.0053014969453216,0.012485789135098]],[[-0.049269255250692,-0.015193845145404,-0.034075226634741],[-0.01040584500879,0.010773427784443,0.02528509311378],[-0.023988898843527,0.042092997580767,-0.010241388343275]],[[-0.018165785819292,0.013540555723011,-0.0089934626594186],[0.11714173108339,-0.047973342239857,-0.026297954842448],[-0.043842133134604,0.010315063409507,-0.063776463270187]],[[0.0020989610347897,-0.056214328855276,0.023602176457644],[-0.023575708270073,-0.0051036258228123,-0.01726065762341],[0.027343299239874,0.010252927429974,-0.037166010588408]],[[0.036482080817223,0.033017735928297,-0.013102050870657],[0.0014748583780602,-0.017580397427082,0.037023108452559],[-0.045125536620617,0.062690429389477,0.0045684142969549]],[[0.0088403839617968,0.029384292662144,0.053814854472876],[-0.01660879701376,-0.033885691314936,-0.063946157693863],[-0.0032326804939657,0.039717115461826,-0.040046010166407]],[[0.04728726297617,0.0076769231818616,-0.011578984558582],[-0.064986445009708,-0.0062721194699407,0.029897397384048],[-0.0030038710683584,0.048180136829615,0.032121602445841]],[[-0.0033695646561682,-0.033222012221813,0.014645333401859],[0.040536373853683,-0.027271259576082,-0.020521948114038],[0.093506552278996,0.0087257828563452,-0.010329158045352]],[[0.015833634883165,0.016954652965069,0.083716720342636],[0.05993364751339,-0.027330426499248,-0.052016355097294],[0.06040546298027,0.067618198692799,-0.0065593370236456]],[[-0.001908821053803,-0.024000937119126,0.0086145354434848],[0.039849955588579,0.092817611992359,0.061413679271936],[0.056055389344692,-0.019485929980874,0.031400673091412]],[[0.012426672503352,0.0056875320151448,0.099654570221901],[-0.013387401588261,0.1047845184803,0.0020432488527149],[0.062725998461246,-0.06977628916502,0.047422625124454]],[[0.026148300617933,0.023926747962832,-0.009027037769556],[-0.015844793990254,-0.0002648405788932,-0.028969200327992],[0.044879298657179,-0.027412945404649,-0.053570579737425]],[[0.13262791931629,0.032775193452835,0.00063471088651568],[0.050953064113855,0.025445986539125,-0.0204115845263],[0.016679225489497,0.0056061460636556,-0.0089157866314054]],[[-0.0066896569915116,0.073832660913467,0.048217456787825],[-0.040117464959621,0.00035358982859179,-0.020813735201955],[0.019213823601604,-0.056538071483374,0.064603172242641]],[[0.02326444350183,-0.055062212049961,-0.019429322332144],[0.04542076587677,0.040084283798933,0.015408599749207],[0.028961874544621,0.0068904086947441,-0.019479233771563]],[[0.11456160247326,0.0071585508994758,-0.043309960514307],[-0.091720804572105,-0.042138963937759,-0.032616805285215],[-0.033758450299501,-0.050522398203611,0.011562084779143]],[[-0.01452159602195,-0.02014329098165,-0.0079424837604165],[0.0207932703197,-0.071005091071129,0.076200060546398],[-0.066467747092247,0.043361883610487,0.080926693975925]],[[-0.0054645230993629,0.026306342333555,-0.065995514392853],[0.0047769378870726,0.0055279843509197,0.037566591054201],[0.018004352226853,0.088784545660019,-0.035263679921627]],[[0.11142728477716,0.030377320945263,-0.032834872603416],[-0.017306664958596,0.029577860608697,-0.033322393894196],[-0.046933222562075,-0.013967540115118,-0.016214400529861]],[[-0.011342682875693,0.014597254805267,0.0057687601074576],[0.054610580205917,-0.035467397421598,-0.011464630253613],[0.028322966769338,-0.002040762687102,-0.074233904480934]],[[0.092332541942596,-0.021561117842793,-0.0028028606902808],[-0.0096046281978488,0.036689728498459,0.017411801964045],[-0.044702261686325,-0.010314792394638,-0.0094688516110182]]],[[[-0.041391354054213,-0.066228024661541,0.019602110609412],[0.0055509130470455,0.0012508935760707,-0.0066819121129811],[0.035909257829189,-0.079522341489792,0.088452354073524]],[[-0.067355379462242,-0.050240360200405,0.067114412784576],[0.02318762242794,0.086092747747898,0.043628256767988],[0.043277688324451,0.095364369452,0.0065211001783609]],[[0.026584168896079,-0.012562106363475,-0.039764449000359],[-0.044380873441696,-0.046315599232912,-0.022473128512502],[-0.10627941042185,0.058007445186377,-0.042083915323019]],[[0.01925952360034,-0.020350310951471,0.016585549339652],[0.038694970309734,0.010193510912359,-0.058006770908833],[-0.048315145075321,0.011225409805775,0.023991772904992]],[[-0.0035744393244386,-0.013834428973496,0.049764901399612],[0.02836231328547,0.051243420690298,0.055020969361067],[0.036460503935814,-0.068842716515064,-0.022208416834474]],[[0.023349782451987,0.068848289549351,0.1333197504282],[0.01028345618397,-0.023641038686037,0.071867629885674],[0.037045739591122,-0.011132432147861,0.045946054160595]],[[-0.018990274518728,-0.0034407377243042,-0.098931588232517],[0.071027286350727,-0.01844741217792,-0.08076648414135],[-0.088035352528095,-0.10392615944147,0.030815903097391]],[[0.0044408394023776,-0.055690005421638,0.049147818237543],[-0.0056408252567053,0.068972215056419,0.0030205762013793],[-0.018150953575969,0.024712642654777,-0.02968960814178]],[[-0.017228186130524,0.033869944512844,-0.070266909897327],[0.0086514018476009,0.0023972638882697,-0.023696508258581],[-0.020085282623768,-0.057297080755234,-0.04714147746563]],[[0.086827985942364,-0.0048754592426121,0.088123805820942],[-0.036498967558146,0.02203393727541,0.12612192332745],[0.047636479139328,0.012138906866312,-0.020316556096077]],[[0.0060501853004098,0.043228436261415,-0.015755983069539],[0.025075886398554,0.01107832044363,0.011854332871735],[-0.013661904260516,-0.0055992705747485,-0.02483862452209]],[[0.040378637611866,0.04347138851881,0.060558520257473],[-0.0018378614913672,0.12172140181065,-0.0023978026583791],[0.053764462471008,-0.010456018149853,0.042359076440334]],[[0.11191341280937,-0.036054968833923,0.024995731189847],[0.019337451085448,-0.00070251035504043,0.057752449065447],[0.060734890401363,-0.04416773840785,0.047805689275265]],[[-0.032911371439695,0.049116130918264,0.025978749617934],[-0.010783782228827,0.039162378758192,0.12207962572575],[0.042632237076759,-0.0087481485679746,0.019304234534502]],[[0.089398041367531,0.060305722057819,-0.012615835294127],[-0.011170330457389,0.11458294838667,-0.0010282762814313],[0.058424361050129,0.032390113919973,-0.027670312672853]],[[0.036466758698225,-0.064596094191074,0.014364547096193],[0.0024429068434983,-0.031655993312597,-0.007921046577394],[-0.012182195670903,0.021286204457283,-0.054383866488934]],[[-0.01748226583004,-0.035258390009403,0.014887295663357],[0.014219296164811,-0.048979736864567,-0.059421256184578],[-0.017970269545913,-0.01395903993398,0.0716787353158]],[[0.037314631044865,0.014011677354574,0.035580959171057],[-0.020426535978913,-0.011540447361767,-0.030779181048274],[0.013366487808526,-0.088757865130901,-0.028210002928972]],[[0.041497707366943,-0.017227189615369,0.030033182352781],[0.053797759115696,0.036980140954256,0.0012534609995782],[-0.050271108746529,0.0062225610017776,0.026698650792241]],[[-0.049567867070436,-0.083848759531975,0.0073481355793774],[0.035586189478636,-0.0047230133786798,-0.027510832995176],[0.054518755525351,-0.022184006869793,0.03738858923316]],[[0.026459608227015,-0.062202949076891,-0.054512456059456],[-0.036439877003431,0.036144889891148,0.030043933540583],[-0.066959343850613,0.013910899870098,-0.04103534296155]],[[0.03115570358932,-0.059425711631775,0.05356515571475],[0.06852825731039,0.0070949164219201,0.053497057408094],[0.087097026407719,-0.015887875109911,0.15041844546795]],[[-0.040808074176311,0.047424614429474,0.06199686974287],[0.070894278585911,0.047117091715336,-0.03254047781229],[0.050653588026762,-0.024021064862609,-0.024151315912604]],[[0.0063156331889331,0.0065545896068215,-0.09657396376133],[-0.040167912840843,-0.047834504395723,-0.037300541996956],[-0.0013470100238919,0.053395435214043,0.04051860049367]],[[0.033461503684521,0.041612055152655,-0.024470545351505],[0.039585936814547,0.055698402225971,-0.013553400523961],[0.025569338351488,-0.036183916032314,0.024960463866591]],[[-0.016291525214911,0.02117420360446,-0.011237032711506],[-0.026872087270021,0.02891162969172,0.040330301970243],[-0.013581284321845,-0.073806710541248,-0.035799659788609]],[[0.10147780925035,-0.0016557270428166,0.0065869181416929],[0.049049124121666,0.027991345152259,0.038086380809546],[0.013332123868167,0.023196196183562,0.055564917623997]],[[-0.070803746581078,-0.044054355472326,0.03245509788394],[-0.019311238080263,0.036301486194134,0.070427380502224],[0.0081608965992928,-0.012301149778068,-0.060535550117493]],[[0.019801674410701,-0.052683185786009,0.030183395370841],[-0.016624605283141,-0.023505456745625,-0.025617361068726],[0.10104186087847,-0.089048504829407,-0.05942877009511]],[[0.026310740038753,0.0024438083637506,-0.052335221320391],[0.011043344624341,-0.0070423744618893,-0.034459456801414],[0.051385745406151,0.02711995691061,-0.038867492228746]],[[-0.026838107034564,-0.0010345610789955,-0.00028442230541259],[0.020340478047729,0.04561198502779,0.00067522382596508],[-0.02256827428937,0.089261919260025,-0.004264079965651]],[[-0.032955344766378,0.050445716828108,-0.072621554136276],[-0.022608926519752,0.064125515520573,0.074282944202423],[0.028602752834558,-0.043989799916744,0.071617297828197]],[[-0.0643105879426,0.040144104510546,0.040930051356554],[-0.011146439239383,0.042189471423626,0.043341413140297],[-0.069072969257832,0.038971971720457,0.026806404814124]],[[-0.065442815423012,0.061590682715178,0.023117249831557],[0.0088176857680082,0.025329729542136,0.034409582614899],[-0.011935191228986,0.028071269392967,0.088076926767826]],[[0.032360006123781,0.0076279547065496,0.033681094646454],[-0.021277450025082,0.028895853087306,-0.054934944957495],[-0.093038648366928,-0.0012980175670236,0.011107455007732]],[[0.069712407886982,-0.022849764674902,-0.0051687983796],[0.018083278089762,0.04694988951087,-0.039330083876848],[0.056132905185223,-0.012831930071115,0.001341424882412]],[[-0.0457480289042,0.092934623360634,0.066528864204884],[-0.0089141298085451,0.005833144299686,-0.026008602231741],[-0.022274663671851,0.006644930690527,-0.097785241901875]],[[0.062433656305075,-0.051186975091696,-0.057504069060087],[0.024731835350394,-0.076872363686562,-0.017815398052335],[0.0091528855264187,0.021167309954762,0.011693813838065]],[[-0.046722959727049,0.023637942969799,0.038623370230198],[0.030085204169154,-0.015054821968079,-0.026907509192824],[0.041337952017784,-0.082659550011158,0.007069222163409]],[[-0.0042004962451756,0.010666751302779,0.050370961427689],[0.11418251693249,-0.046658918261528,0.04109562933445],[-0.045031972229481,-0.0010862238705158,0.03264107182622]],[[-0.01797890663147,-0.015778874978423,0.0023513601627201],[0.0037459523882717,0.047289200127125,-0.023449327796698],[0.017539259046316,0.004451219458133,-0.028446707874537]],[[-0.070216633379459,0.02328940294683,-0.042222704738379],[0.015221944078803,-0.039306778460741,-0.044965889304876],[0.0061697629280388,-0.055295847356319,-0.032687827944756]],[[0.021631253883243,-0.0026750522665679,-0.024625774472952],[0.0092718601226807,0.073628708720207,0.048576701432467],[0.02108558639884,-0.017463766038418,0.13114878535271]],[[0.027144497260451,-0.070621885359287,-0.0040958276949823],[-0.020793702453375,-0.0077521656639874,-0.018103525042534],[-0.032496966421604,-0.015945557504892,-0.0314030200243]],[[0.023703752085567,0.03359379991889,-0.086310155689716],[-0.093341946601868,0.036825869232416,-0.018028441816568],[-0.0073835463263094,0.020470289513469,-0.021274050697684]],[[0.045415226370096,0.008351475931704,-0.031992170959711],[0.0060895965434611,0.031548798084259,0.0024323158431798],[0.0024075056426227,0.055954147130251,-0.027279525995255]],[[0.061156149953604,0.020703639835119,0.0058720111846924],[0.0019602277316153,0.00015954137779772,0.027264265343547],[-0.010834399610758,0.019949119538069,-0.031474336981773]],[[-0.043442886322737,0.087033919990063,-0.039697960019112],[-0.025481319054961,0.020434662699699,-0.024289008229971],[0.05356464907527,0.0023201587609947,0.0095628146082163]],[[-0.041230920702219,0.026832325384021,0.075934030115604],[-0.085012927651405,0.085226081311703,-0.050045125186443],[0.074363350868225,0.044034536927938,0.09391662478447]],[[0.022901922464371,-0.050352245569229,-0.0037715022917837],[-0.028830381110311,-0.063489511609077,0.014310621656477],[0.043734148144722,-0.026456819847226,-0.00014811661094427]],[[0.015019038692117,0.0081815076991916,0.013578860089183],[-0.041203062981367,0.0083103040233254,-0.020716685801744],[0.12953600287437,-0.00081945385318249,0.062404468655586]],[[0.00067754881456494,0.031717866659164,0.022171536460519],[-0.070644691586494,-0.005718017462641,0.061323128640652],[-0.0073868161998689,0.030985422432423,0.0037308430764824]],[[-0.024088077247143,-0.020133040845394,-0.047602042555809],[0.015263229608536,-0.011449779383838,0.00073786848224699],[-0.0080063138157129,-0.031359694898129,0.018682854250073]],[[0.037832204252481,0.019532477483153,0.0074025643989444],[0.085018552839756,0.011500904336572,0.010638477280736],[-0.020534705370665,0.081194631755352,-0.0017718505114317]],[[-0.0098016140982509,-0.0018602038035169,0.028421593829989],[0.0091578783467412,0.019851179793477,-0.012333622202277],[0.11238645017147,0.029502814635634,0.0068198754452169]],[[0.043389827013016,0.01399218570441,0.065366990864277],[-0.0057641784660518,0.022023376077414,-0.016221389174461],[0.091423727571964,0.018364569172263,-0.055207546800375]],[[-0.023211352527142,-0.050687231123447,0.044377621263266],[-0.059389222413301,-0.0018569853855297,0.018879070878029],[-0.0091458102688193,0.051826722919941,-0.069060951471329]],[[0.050233788788319,-0.024508103728294,0.086677059531212],[-0.018516052514315,-0.0038964757695794,-0.054014191031456],[0.020160654559731,0.0216676723212,-0.024901889264584]],[[0.015238028019667,0.014892398379743,-0.013735779561102],[0.011408204212785,-0.071616902947426,-0.085524752736092],[-0.096374243497849,0.021072831004858,0.048304993659258]],[[0.029845679178834,0.044641647487879,0.031223548576236],[0.026291027665138,0.049075625836849,0.059082381427288],[-0.0013043453218415,-0.0015709376893938,0.052813455462456]],[[-0.048449158668518,0.0040791048668325,-0.040329050272703],[0.0052022477611899,0.043949455022812,0.05424427613616],[0.10598314553499,0.0026717178989202,0.014495052397251]],[[-0.098000481724739,-0.038265906274319,0.048652045428753],[-0.052184268832207,-0.0041598649695516,0.004400045145303],[-0.021801481023431,-0.008828854188323,-0.014355833642185]],[[0.039997261017561,0.055225770920515,0.087180316448212],[0.069834999740124,0.020443934947252,0.03249729424715],[0.0023617821279913,-0.0040257880464196,-0.044638238847256]],[[-0.0091639198362827,0.029819659888744,0.01521466113627],[-0.0018710199510679,-0.078852072358131,0.061795607209206],[0.039872411638498,-0.0041803433559835,0.053013768047094]],[[-0.026138344779611,0.1006542891264,0.06511102616787],[0.023194128647447,0.0063574956730008,-0.088961519300938],[0.015181782655418,0.02068792283535,0.055132828652859]],[[0.046615552157164,-0.028959451243281,-0.033638514578342],[0.005930463783443,-0.058527022600174,-0.10475327819586],[0.077902369201183,0.00069913442712277,0.01732038334012]],[[-0.019426940008998,0.097474373877048,-0.030332464724779],[0.05864342302084,0.14007359743118,0.052822027355433],[-0.052175719290972,0.080066561698914,0.059204079210758]],[[0.056220550090075,0.072117671370506,-0.01199490018189],[-0.034446138888597,0.096820622682571,-0.016918137669563],[0.077232986688614,0.024532031267881,0.014238769188523]],[[0.01151820179075,-0.038545355200768,-0.036768164485693],[-0.026385912671685,0.038755651563406,-0.085302144289017],[0.014192187227309,0.036674279719591,0.073309622704983]],[[-0.0036301291547716,0.038034863770008,0.030003445222974],[0.05593067035079,0.034411005675793,0.036498446017504],[0.018357325345278,-0.01597885042429,-0.025854015722871]],[[-0.0030816013459116,-0.0096418084576726,0.0084066679701209],[0.011299418285489,0.0033149998635054,0.0065075308084488],[0.00020036088244524,0.014922454021871,-0.0017168677877635]],[[-0.069290012121201,-0.06103103980422,0.07026993483305],[0.0064234910532832,0.046555146574974,-0.05001624673605],[0.059554249048233,-0.013082956895232,0.064880795776844]],[[0.062008757144213,-0.026368098333478,0.021557586267591],[0.066434398293495,0.041920956224203,0.061175465583801],[-0.045442249625921,0.074421018362045,0.060903359204531]],[[0.10093791037798,0.025470802560449,0.062042601406574],[-0.054838396608829,0.032116267830133,0.080706059932709],[-0.031486302614212,0.0053257355466485,0.079051025211811]],[[-0.047585241496563,0.01378570497036,-0.011820154264569],[0.0088374242186546,-0.0007638712413609,-0.029664557427168],[0.11459436267614,-0.013758879154921,0.0072124907746911]],[[0.030820231884718,0.055315114557743,0.042307414114475],[-0.017529604956508,0.015649259090424,0.056976560503244],[0.01470634713769,0.018747353926301,-0.051458869129419]],[[0.062734954059124,0.0066907424479723,0.036331929266453],[-0.063200682401657,-0.020761795341969,-0.00017014177865349],[0.10951688885689,-0.012694917619228,0.028099836781621]],[[-0.066120214760303,-0.0022700782865286,0.017730770632625],[0.038969505578279,0.032425541430712,0.082715041935444],[0.012248650193214,0.040965858846903,0.026221496984363]],[[0.028709171339869,-0.040982130914927,-0.031117722392082],[0.0055140489712358,-0.01193499751389,-0.045252237468958],[-0.0084139127284288,-0.036929316818714,0.029148506000638]],[[-0.067571252584457,0.020065056160092,-0.088795177638531],[0.010949598625302,0.037263721227646,0.023405358195305],[-0.045373026281595,0.060232106596231,-0.045543983578682]],[[0.085754863917828,0.065538607537746,0.065146431326866],[0.013872896321118,0.045745063573122,-0.021163567900658],[-0.00099872204009444,0.063117727637291,0.0095622036606073]],[[-0.001158008701168,-0.019006820395589,-0.0010247221216559],[0.012276324443519,-0.047565080225468,-0.034064669162035],[-0.035267390310764,-0.024024702608585,-0.0071733263321221]],[[-0.041741605848074,-0.024712134152651,0.03262697905302],[-0.0086916564032435,-0.022966599091887,-0.038272399455309],[-0.036193590611219,0.017532477155328,-0.012800528667867]],[[0.073953375220299,-0.018019588664174,0.034920807927847],[0.02817946113646,0.070642560720444,-0.026178536936641],[0.0048674885183573,0.0094388388097286,-0.011317679658532]],[[-0.0077882292680442,-0.028017792850733,0.043714769184589],[-0.017728319391608,0.030620228499174,0.049401596188545],[-0.042784117162228,-0.0069954246282578,0.12344283610582]],[[0.033426880836487,0.051216658204794,0.0063271834515035],[0.0028911519329995,-0.01181323081255,0.023012420162559],[-0.018505733460188,0.079659134149551,-0.0020513844210654]],[[0.022800410166383,-0.092258781194687,0.041263274848461],[-0.029967240989208,-0.025774508714676,0.053466804325581],[0.043224208056927,0.060814127326012,0.026843789964914]],[[-0.030020320788026,0.04935647174716,-0.004158983938396],[0.08422476798296,0.063705712556839,-0.030061479657888],[0.014420732855797,0.053902842104435,0.015833806246519]],[[-0.030254572629929,-0.014279239811003,-0.020017875358462],[-0.032210141420364,-0.035119708627462,-0.02570803835988],[0.015496224164963,-0.045604381710291,-0.061424110084772]],[[-0.04883936047554,-0.041377566754818,-0.054279051721096],[-0.0082050813362002,0.016727417707443,0.085523672401905],[0.058361496776342,0.031828675419092,0.0038009770214558]],[[0.010643226094544,0.019397201016545,0.071738302707672],[-0.020824648439884,0.034538153558969,0.021891249343753],[-0.021560514345765,0.061418082565069,0.060926176607609]],[[0.0013177556684241,0.053390994668007,0.018988212570548],[0.026515131816268,0.087306410074234,0.0060290382243693],[0.093328319489956,0.017941122874618,-0.01519095338881]],[[-0.0337207429111,-0.006094919051975,0.033497214317322],[-0.028882993385196,-0.031459014862776,-0.02991428412497],[0.016933221369982,-0.015439616516232,0.0065339687280357]],[[0.040916204452515,0.055022694170475,-0.061533689498901],[-0.011574381031096,-0.024573497474194,0.059790443629026],[-0.12738020718098,0.037109185010195,0.076614625751972]],[[-0.027730192989111,0.042633812874556,0.0045192413963377],[-0.058281876146793,0.026139391586185,0.026261670514941],[0.027961168438196,0.088351599872112,0.023731857538223]],[[-0.088229104876518,-0.059817120432854,0.042263995856047],[-0.035364516079426,-0.028738694265485,0.024738270789385],[0.064196266233921,0.026670342311263,0.01448957528919]],[[-0.074471563100815,0.08246411383152,0.0084073897451162],[0.082710295915604,-0.028719326481223,0.073240704834461],[0.024969611316919,-0.005450279917568,-0.014742953702807]],[[-0.005422449670732,-0.009227579459548,0.041526425629854],[0.035599134862423,0.056804034858942,0.02458069473505],[0.12215176969767,0.036282196640968,0.038483031094074]],[[0.022025741636753,-0.026832973584533,0.024656130000949],[0.013956884853542,0.017577802762389,0.068513214588165],[-0.018501738086343,-0.01075017824769,0.013136570341885]],[[-0.01863388158381,0.035321667790413,0.05315250903368],[-0.026666352525353,0.04710890352726,-0.0026927294675261],[-0.045388657599688,-0.05254115536809,0.0023695563431829]],[[-0.050388932228088,0.047397546470165,-0.040782533586025],[0.048857368528843,-0.023045348003507,0.021355634555221],[-0.030677864328027,0.086787529289722,-0.013150232844055]],[[0.0061861593276262,-0.014171618968248,0.036541182547808],[0.0040938588790596,0.085142597556114,-0.015844168141484],[0.051099680364132,-0.0031960427295417,-0.0034530069679022]],[[0.045792397111654,0.0056635797955096,0.0026654296088964],[0.094551399350166,0.053112719208002,0.010037961415946],[-0.050272736698389,0.04617565497756,0.0017614522948861]],[[0.049650352448225,0.026893619447947,0.026429459452629],[0.033868674188852,0.0060885897837579,0.0092134280130267],[0.0028742658905685,-0.019222944974899,0.016849720850587]],[[0.0056948233395815,0.02496499940753,0.0026235268451273],[0.031924143433571,0.064273849129677,0.020002812147141],[0.014904052950442,0.065130583941936,0.0281175468117]],[[-0.051327746361494,0.025640077888966,-0.056187313050032],[-0.038739521056414,0.063181586563587,0.02681146748364],[0.033517349511385,0.099794127047062,0.054299283772707]],[[0.037675321102142,0.080766715109348,-0.026952385902405],[0.0074708014726639,0.040099613368511,0.0083891311660409],[0.078223630785942,0.062214892357588,0.039616815745831]],[[0.030199216678739,0.06585006415844,-0.00082360371015966],[0.026867035776377,-0.021129488945007,0.018844062462449],[-0.017535474151373,-0.012121033854783,0.0055937371216714]],[[0.062126703560352,0.041902486234903,-0.015926701948047],[0.0019152330933139,-0.0041763805784285,0.095188662409782],[0.070851750671864,0.060708653181791,0.054675310850143]],[[0.016004610806704,0.0085391905158758,0.038649532943964],[-0.012224545702338,0.046129018068314,0.032288860529661],[-0.010296911001205,0.031747158616781,-0.057381831109524]],[[0.010184249840677,-0.041615422815084,-0.0089109661057591],[-0.06465395539999,0.0050227851606905,0.034219264984131],[-0.021401958540082,0.038987785577774,0.0092228502035141]],[[0.017650214955211,-0.0001985372218769,0.085512593388557],[0.0087123028934002,0.0050750938244164,0.04110200330615],[0.031697105616331,0.021953541785479,-0.041327629238367]],[[-0.074218034744263,-0.022966301068664,0.0075970557518303],[-0.02453457005322,0.12320701032877,-0.046614520251751],[0.063887841999531,0.066788591444492,-0.10939039289951]],[[0.00056409044191241,-0.034295096993446,-0.039339579641819],[0.012948214076459,0.078839063644409,-0.053271424025297],[0.0094484528526664,-0.035663064569235,-0.10337787866592]],[[0.07110521197319,-9.8416159744374e-05,-0.0052952072583139],[-0.045837726444006,-0.072978042066097,0.085002392530441],[-0.061710130423307,0.0047235367819667,-0.029976604506373]],[[0.025962401181459,0.0068362071178854,-0.018643468618393],[0.0062708309851587,0.010163242928684,-0.04581456631422],[-0.028058720752597,0.0037386200856417,0.020656058564782]],[[0.012792251072824,-0.062999740242958,0.062845565378666],[0.035998627543449,0.01611851900816,0.025607397779822],[0.058692343533039,0.05440429225564,-0.0084177013486624]],[[0.013524839654565,0.031971503049135,0.06391267478466],[-0.063964106142521,0.06176270917058,0.019005278125405],[0.014473620802164,-0.064460530877113,0.028039949014783]],[[-0.039928928017616,-0.0067493603564799,-0.035386174917221],[-0.0078559294342995,0.0029890816658735,-0.019163087010384],[0.07122541218996,0.0077854245901108,0.024133358150721]],[[-0.0378822311759,0.020662249997258,-0.083802938461304],[0.0013745480682701,-0.027146674692631,-0.0091767767444253],[-0.038330186158419,-0.018660921603441,-0.036112859845161]],[[-0.047728206962347,-0.096555829048157,-0.047315653413534],[0.023406326770782,0.046404469758272,-0.013283188454807],[0.042300999164581,0.060798097401857,-0.051613431423903]],[[0.049740824848413,-0.025939157232642,0.070367522537708],[0.044372368603945,-0.026828110218048,0.022880371659994],[0.067018710076809,0.07482885569334,0.0072278077714145]],[[-0.097013168036938,-0.038939204066992,0.054553750902414],[0.038199491798878,0.044648215174675,0.0029101537074894],[0.069081075489521,-0.002962086815387,-0.008365897461772]],[[-0.043207913637161,0.048130042850971,0.00038994732312858],[0.033912990242243,-0.034017775207758,0.029786165803671],[-0.032809067517519,0.066237211227417,0.0092482501640916]],[[0.0097993984818459,0.04593700543046,0.054881937801838],[-0.033296510577202,0.051069337874651,0.082628473639488],[0.0074645127169788,0.071109049022198,-0.0064876982942224]],[[-0.031057570129633,-0.0065001421608031,0.030101543292403],[0.013675822876394,0.049306783825159,-0.008151875808835],[-0.11972366273403,0.030134974047542,0.054868776351213]],[[0.0062008677050471,0.0037239100784063,-0.047606535255909],[0.083430044353008,0.074252367019653,0.054878707975149],[-0.020758146420121,0.063250698149204,0.032536722719669]],[[-0.059564806520939,-0.015273327939212,-0.0012330134632066],[-0.10748001933098,-0.030996242538095,0.019234623759985],[-0.027276329696178,0.048780702054501,0.0048195822164416]]],[[[-0.0045965532772243,0.10057773441076,0.043021697551012],[-0.0072145005688071,-0.0451087243855,0.027030225843191],[0.020855400711298,0.035707093775272,0.029869029298425]],[[-0.10875793546438,0.031605437397957,-0.073904782533646],[0.014412592165172,0.0064787259325385,-0.04550939053297],[0.07361002266407,-0.0073875207453966,0.011261488310993]],[[8.3649192674784e-06,-0.066561847925186,0.021339079365134],[-0.020715104416013,0.0098876236006618,0.011284652166069],[0.012067476287484,0.0270015001297,-0.031510461121798]],[[-0.0013091336004436,0.011325737461448,0.0085985353216529],[-0.00077627570135519,0.075546413660049,0.082434438169003],[-0.021419364959002,0.015830256044865,0.026872999966145]],[[0.023495243862271,0.034543197602034,-0.12992051243782],[0.030222969129682,-0.10035359114408,-0.060576915740967],[-0.041813667863607,0.0505007840693,0.026953220367432]],[[-0.034639988094568,0.11163537949324,0.01595525816083],[0.0068866107612848,-0.042147934436798,0.049721550196409],[0.018995756283402,0.024287648499012,0.015286254696548]],[[0.055381715297699,-0.019995838403702,-0.040538679808378],[0.023889156058431,0.016217835247517,-0.027340099215508],[-0.011716493405402,-0.049226496368647,-0.065422683954239]],[[-0.033952139317989,0.01251953933388,0.044064588844776],[0.023398499935865,-0.012061131186783,0.02165612205863],[0.031296096742153,-0.063295297324657,-0.026395762339234]],[[0.0022787149064243,0.014736630022526,0.01780641078949],[-0.052793100476265,-0.0015896274708211,-0.01931469142437],[0.022573627531528,-0.024158155545592,0.075716480612755]],[[-0.025144830346107,0.053357020020485,0.08388114720583],[0.034337349236012,0.13394366204739,-0.026076007634401],[0.074710972607136,0.019107634201646,0.040080513805151]],[[-0.028207443654537,-0.0057239849120378,0.015846805647016],[0.079682737588882,0.012554386630654,0.062280025333166],[-0.010174653492868,-0.07371324300766,-0.010803654789925]],[[0.034372039139271,0.06240663304925,0.010319923050702],[-0.030413864180446,-0.018632620573044,0.037164807319641],[0.070896834135056,0.022065494209528,0.0039210091345012]],[[0.058487020432949,-0.011055258102715,-0.068809658288956],[0.024878341704607,-0.041112460196018,0.075590312480927],[-0.072315484285355,0.0027355721686035,-0.017428543418646]],[[0.0075303888879716,0.055891990661621,-0.0035097151994705],[0.069849863648415,-0.029293140396476,0.02543668076396],[0.082592286169529,0.03376941382885,0.09907828271389]],[[0.018901811912656,0.13679544627666,0.077196918427944],[0.033505104482174,0.10573832690716,0.0091436943039298],[0.11114060878754,0.016534488648176,0.10747543722391]],[[-0.048939477652311,0.012386314570904,-0.070991314947605],[-0.080777503550053,-0.048095993697643,0.031410351395607],[0.033920232206583,-0.063991047441959,-0.047983154654503]],[[0.040909547358751,-0.00067965273046866,0.031259324401617],[-0.015072395093739,0.088838286697865,0.035445686429739],[-0.0085018491372466,0.0035892832092941,0.020407361909747]],[[-0.0017536694649607,0.045652229338884,0.0014951990451664],[-0.011229161173105,-0.079955190420151,0.025622876361012],[0.086054272949696,0.035343553870916,0.042429178953171]],[[-0.0048008011654019,0.02589362859726,0.0079101081937551],[0.0019903532229364,-0.016918275505304,0.083609044551849],[0.010930635966361,-0.0078603541478515,0.016146773472428]],[[0.046977300196886,-0.023079732432961,0.03729784861207],[-0.031705752015114,0.050686877220869,0.02968660928309],[0.036417186260223,0.033629428595304,0.056928802281618]],[[0.097097732126713,-0.021808994933963,-0.015280495397747],[0.0066706528887153,0.028019417077303,-0.082195848226547],[0.013291352428496,0.0058061932213604,-0.038263060152531]],[[-0.0094840582460165,-0.021447584033012,0.09064007550478],[0.053084079176188,0.010772385634482,0.060568828135729],[0.037746973335743,0.052987776696682,0.067205958068371]],[[-0.00013207050506026,0.041935101151466,-0.088182203471661],[-0.0075762895867229,0.041659463196993,-0.051552094519138],[-0.069624088704586,-0.058652117848396,0.060711294412613]],[[0.11219808459282,-0.026036193594337,-0.0004871437267866],[0.069232955574989,0.0060482937842607,0.028063816949725],[0.10988000035286,-0.044820290058851,0.014314642176032]],[[-0.0049855634570122,0.032961715012789,0.019604803994298],[-0.0084129413589835,-0.010430445894599,0.018152210861444],[0.058346476405859,-0.017035191878676,0.023761622607708]],[[-0.071895852684975,0.0035594454966486,0.036425553262234],[0.023217532783747,-0.016824200749397,-0.0092668067663908],[-0.014962148852646,-0.038087278604507,0.014714037999511]],[[0.10645112395287,0.034663815051317,-0.078458853065968],[-0.0065839462913573,0.036044422537088,0.012205495499074],[-0.00021313052275218,-0.034519698470831,0.0057671791873872]],[[-0.0064670387655497,0.0016086685936898,0.018373463302851],[0.057428132742643,-0.023305432870984,-0.008627207018435],[0.037160880863667,0.035239592194557,-0.030073782429099]],[[0.014501341618598,-0.00036574239493348,0.043453197926283],[-0.048859521746635,0.075541354715824,0.061860918998718],[0.031643863767385,-0.036488987505436,0.02825702726841]],[[-0.036919381469488,-0.027795609086752,-0.024633878841996],[0.041703086346388,0.0048608081415296,0.0121896173805],[0.01073688827455,-0.014689267612994,-0.013593989424407]],[[0.040007449686527,0.037396691739559,-0.012724844738841],[0.014520570635796,0.015612482093275,0.054872084408998],[0.040319990366697,0.066096402704716,0.0017475043423474]],[[0.037182688713074,-0.068643122911453,0.02793800458312],[-0.054499786347151,0.0072015020996332,-0.017778221517801],[0.016517248004675,-0.095111757516861,0.049913205206394]],[[-0.0067471233196557,-0.044147066771984,0.02053252980113],[-0.016706194728613,0.0088182939216495,0.040096659213305],[-0.094287469983101,0.035632565617561,0.10797627270222]],[[0.068827345967293,0.063842542469501,0.038352277129889],[-0.0032510624732822,0.061821851879358,-0.046481262892485],[0.028327260166407,-0.029423635452986,0.079473659396172]],[[0.056757971644402,0.0072034918703139,-0.0040706656873226],[0.084659688174725,0.0061485450714827,0.078370243310928],[0.058763675391674,0.0011325831292197,0.031401894986629]],[[-0.05151678621769,-0.067562833428383,-0.022317329421639],[-0.035077322274446,-0.099839180707932,-0.062695249915123],[0.024802340194583,0.02682070247829,0.031999137252569]],[[-0.048849228769541,-0.04325383156538,0.00073099200380966],[0.029356528073549,-0.0021172256674618,-0.024701548740268],[0.057759549468756,-0.0077520059421659,-0.027394261211157]],[[0.0056398250162601,0.070435613393784,-0.021420031785965],[-0.042969640344381,0.0011029141023755,-0.038885582238436],[0.019099859520793,-0.0014319294132292,-0.089180491864681]],[[0.035341549664736,0.097283102571964,-0.021405477076769],[0.018708391115069,0.11073112487793,-0.035427872091532],[0.04275057092309,-0.057413462549448,0.02056685090065]],[[0.072395443916321,-0.016987456008792,0.054574504494667],[0.0069661005400121,-0.065268635749817,0.072714649140835],[0.031574096530676,-0.02346576564014,0.053503435105085]],[[0.041035819798708,-0.0013535806210712,-0.031037531793118],[0.0052985767833889,0.037004426121712,0.037451963871717],[0.030155560001731,-0.056523650884628,-0.079241968691349]],[[0.048576217144728,0.0046478360891342,-0.0025780713185668],[0.063681967556477,-0.025561403483152,0.031443931162357],[-0.0027355102356523,-0.018101345747709,0.0018302341923118]],[[0.056445546448231,-0.0018554348498583,-0.015249725431204],[0.034582443535328,0.078104689717293,0.037915501743555],[0.091809511184692,-0.00040390575304627,-0.022416919469833]],[[-0.053564850240946,0.0036364740226418,0.016133224591613],[0.001468030968681,0.003463861066848,0.028071818873286],[0.0092523284256458,-0.039714671671391,-0.017607102170587]],[[-0.10824784636497,0.019361156970263,0.08618825674057],[-0.015771532431245,-0.0062012439593673,-0.022679213434458],[0.010541153140366,-0.044380344450474,-0.004999783821404]],[[-0.018284356221557,0.078073680400848,-0.04020419716835],[0.10164358466864,0.0047561773099005,0.076797671616077],[-0.024069767445326,0.051673050969839,0.036265417933464]],[[0.01898599602282,-0.034241899847984,0.056200385093689],[0.021911507472396,0.031878601759672,-0.049269217997789],[-0.0031703838612884,-0.050549559295177,0.055427983403206]],[[0.040134899318218,0.033285342156887,0.01091848872602],[0.090600669384003,0.094648793339729,0.018112262710929],[0.019038379192352,-0.036788415163755,0.028776593506336]],[[-0.022632870823145,-0.018557390198112,0.039681553840637],[-0.067934222519398,-0.036051962524652,0.010591825470328],[0.025694547221065,-0.044712446630001,0.044869631528854]],[[-0.017607243731618,0.040356505662203,-0.050042789429426],[0.0074572511948645,-0.0012813274515793,0.035515356808901],[-0.052143655717373,0.034544009715319,-0.034311547875404]],[[-0.025089535862207,-0.027326578274369,0.066053219139576],[0.052696112543344,-0.021558225154877,0.039034031331539],[0.042440086603165,-0.05712328851223,-0.049840182065964]],[[-0.0067572137340903,-0.00087628053734079,-0.041244525462389],[0.076305538415909,-0.0097352024167776,-0.006762454751879],[0.043609835207462,0.035882942378521,-0.018613999709487]],[[0.049055155366659,-0.0001674095983617,-0.027710821479559],[-0.0072980793192983,0.042611308395863,0.00029402843210846],[0.034039068967104,-0.024110088124871,-0.037900384515524]],[[0.11900874227285,0.026719447225332,-0.0011974646477029],[0.025114085525274,0.027224415913224,0.01873105764389],[0.10316415131092,0.014698513783514,-0.010555192828178]],[[0.06415743380785,0.01803339831531,-0.015587604604661],[0.077638201415539,0.019476974382997,0.036054413765669],[-0.041570872068405,-0.082758419215679,0.014073618687689]],[[-0.034856669604778,-0.020086508244276,0.062363658100367],[-0.013934651389718,0.0039683636277914,0.067369788885117],[0.037582591176033,-0.04475586861372,-0.022501530125737]],[[-0.065228573977947,-0.076988786458969,0.023272655904293],[0.044332638382912,-0.01747528091073,-0.024501187726855],[0.023533310741186,0.0060336804017425,0.029144715517759]],[[-0.0089525524526834,0.025829510763288,-0.027000982314348],[-0.005333062261343,0.030235949903727,0.093413963913918],[-0.054391212761402,0.088938117027283,-0.01460983697325]],[[-0.019454116001725,0.0094846040010452,0.083854183554649],[-0.022580113261938,-0.0083608338609338,-0.0066987727768719],[0.087845899164677,0.074134536087513,0.045545373111963]],[[-0.014786325395107,-0.0086741615086794,-0.014455104246736],[-0.10942488908768,0.028862856328487,0.062309883534908],[0.015878137201071,-0.017359847202897,-0.01199393812567]],[[-0.010769349522889,-0.0099493162706494,-0.03449322283268],[-0.070893459022045,-0.027832485735416,0.01224431488663],[-0.034038323909044,0.032180089503527,-0.062891058623791]],[[0.032390888780355,0.01598509401083,-0.018228465691209],[0.060599710792303,0.05077375844121,0.029101496562362],[-0.02657900378108,-0.028008697554469,0.030786158517003]],[[0.036560144275427,-0.0075678420253098,0.056107744574547],[-0.014413990080357,0.02914479188621,0.0225426889956],[-0.023739216849208,0.065190747380257,-0.015759944915771]],[[-0.033833649009466,0.034521207213402,0.05076190456748],[0.058026485145092,0.08026409894228,-0.01911311596632],[-0.0025594283360988,-0.038459144532681,-0.007285671774298]],[[0.012044180184603,0.0027510668151081,-0.00057265459327027],[0.054821502417326,-0.033269427716732,-0.0045256931334734],[0.095855996012688,0.0018853716319427,-0.00045103373122402]],[[-0.012677052989602,0.020093001425266,0.021428413689137],[-0.015609410591424,0.03976571187377,0.076599635183811],[0.01136589050293,-0.047278936952353,-0.011057877913117]],[[0.069427147507668,0.066856697201729,0.022222008556128],[0.011352830566466,-0.02420886233449,0.005581779871136],[0.044450916349888,0.047834638506174,0.020218409597874]],[[0.017146799713373,0.014299226924777,0.077162742614746],[0.06421422213316,0.037871919572353,-0.076367236673832],[-0.025214781984687,-0.016163690015674,0.054798163473606]],[[0.024752432480454,-0.053853332996368,0.0028276806697249],[0.054218634963036,-0.020832531154156,-0.024902911856771],[0.0095177805051208,-0.010155350901186,0.068987816572189]],[[0.06467179954052,0.039465583860874,0.024783940985799],[0.01270461641252,0.022521736100316,0.0068397452123463],[0.011179409921169,-0.017711337655783,-0.028776498511434]],[[0.054546058177948,-0.0098252519965172,0.018906008452177],[0.05888618901372,-0.011759141460061,0.047711223363876],[-0.04587696492672,-0.015779474750161,0.019317790865898]],[[0.028493050485849,0.091751098632812,0.085268050432205],[0.0074593359604478,0.024234468117356,0.040176201611757],[0.06853211671114,-0.059020947664976,0.090064637362957]],[[-0.024640450254083,0.064290300011635,0.0025714919902384],[0.04659878462553,-0.019008664414287,0.039576485753059],[0.095198780298233,0.064644806087017,0.043934296816587]],[[0.020050294697285,0.0748390853405,-0.079636804759502],[-0.0012933729449287,0.1218413412571,0.047268062829971],[-0.047336537390947,-0.050597090274096,0.050249442458153]],[[-0.075266987085342,-0.040307480841875,0.0056156856007874],[-0.067407548427582,0.016298478469253,0.024076241999865],[0.032636601477861,0.02718261256814,0.01047355029732]],[[-0.030374670401216,0.029163816943765,0.065002575516701],[0.0013437800807878,-0.0038406734820455,0.0016468858812004],[0.0001555191265652,0.0025675846263766,0.014271953143179]],[[-0.069041535258293,-0.042096994817257,0.0034961628261954],[-0.079866267740726,0.0016651201294735,-0.00021600925538223],[0.036749623715878,-0.02260772138834,-0.034434642642736]],[[0.0062475996091962,0.045535482466221,-0.014441070146859],[0.013371084816754,0.053638786077499,0.0096625201404095],[0.053176838904619,0.013935842551291,0.023145960643888]],[[0.040862865746021,-0.054267499595881,-0.058593850582838],[0.041180778294802,0.010621541179717,0.010241489857435],[0.023257987573743,0.0099154189229012,-0.03135571628809]],[[-0.00404744874686,0.040994204580784,0.043901063501835],[-0.099737524986267,-0.021342584863305,-0.027217281982303],[-0.03379887714982,-0.012093849480152,-0.014051029458642]],[[0.041392896324396,0.0062063583172858,-0.046474106609821],[0.029336303472519,-0.0070004179142416,-0.0080487793311477],[0.019507834687829,0.071679875254631,-0.049623169004917]],[[-0.036459725350142,-0.011275505647063,0.011215696111321],[0.021851625293493,-0.062935508787632,-0.023963183164597],[0.085424423217773,0.029161443933845,0.02247573249042]],[[0.030456202104688,0.010813482105732,0.00071452977135777],[0.078643344342709,-0.051545444875956,0.0074172439053655],[0.0014526853337884,0.069381937384605,0.031773567199707]],[[0.061997052282095,0.07222606241703,-0.0065187397412956],[0.075817860662937,0.06847121566534,-0.046721652150154],[-0.063376240432262,0.060281969606876,0.018202563747764]],[[-0.042073085904121,-0.030202755704522,-0.028352443128824],[-0.043499764055014,0.04888616129756,0.051811587065458],[0.06690226495266,0.070141278207302,0.027037646621466]],[[-0.017543705180287,-0.076675787568092,-0.042175263166428],[0.075217999517918,-0.036616090685129,-0.012573166750371],[0.071293517947197,-0.061897482722998,0.059348348528147]],[[0.0080958036705852,-0.021470019593835,-0.011898048222065],[0.045601688325405,0.061824135482311,-0.070760525763035],[0.044250283390284,-0.05090357363224,0.017899656668305]],[[0.14662034809589,0.011238613165915,0.049644347280264],[0.043239828199148,0.0081740105524659,0.021720953285694],[-0.00068058219039813,0.0005133492522873,0.050880443304777]],[[0.0092152822762728,0.060331217944622,0.021157959476113],[0.027227515354753,-0.012137201614678,0.020308228209615],[0.12092214077711,-0.015304990112782,-0.053085878491402]],[[0.010261572897434,0.015900202095509,0.022086201235652],[-0.049406871199608,0.1023004502058,-0.017751589417458],[0.084403477609158,0.053551349788904,-0.034472741186619]],[[-0.011101952753961,0.022259326651692,-0.044998005032539],[0.028950715437531,-0.019013838842511,0.024697819724679],[-0.00039866351289675,0.032680105417967,-0.019517730921507]],[[-0.053143590688705,-0.047182604670525,0.043865039944649],[0.0052865282632411,0.011624915525317,0.06626420468092],[0.089266769587994,-0.010762978345156,-0.035679902881384]],[[-0.017799712717533,0.069764189422131,-0.11396176367998],[-0.025392210111022,0.041975948959589,0.065057516098022],[-0.099521420896053,-0.054654277861118,-0.065121188759804]],[[-0.088464066386223,0.037659581750631,-0.043573301285505],[-0.011658790521324,0.1080859452486,-0.030182030051947],[-0.010169522836804,0.0091409161686897,0.0585762783885]],[[0.0092367241159081,-0.0099014565348625,-0.051736149936914],[0.041919011622667,0.0080485604703426,0.014269569888711],[0.01714887842536,0.038648527115583,0.049180570989847]],[[0.039194516837597,0.03034058958292,-0.099247269332409],[0.034464050084352,-0.036821074783802,0.063528157770634],[-0.027825096622109,0.032665729522705,-0.0051119863055646]],[[0.05091892555356,3.5334465792403e-05,0.025915028527379],[0.012833276763558,-0.031694337725639,-0.012674571946263],[0.053299512714148,-0.060133520513773,0.046540401875973]],[[-0.019753124564886,0.014771098271012,0.065107814967632],[-0.011217016726732,0.05613960698247,0.066284403204918],[0.07515424489975,-0.020545899868011,0.01740138977766]],[[0.024877728894353,0.057180784642696,-0.056502249091864],[-0.016246978193521,-0.010738408192992,0.026552917435765],[0.023837523534894,-0.0066197249107063,0.034601744264364]],[[0.0048164548352361,0.00033620733302087,0.033663775771856],[0.01945129968226,0.018328396603465,-0.021731561049819],[0.030035324394703,-0.02550945058465,-0.070774674415588]],[[-0.048594798892736,0.011733096092939,-0.031687743961811],[0.078745476901531,-0.005877623334527,0.020340306684375],[0.020142294466496,0.0092939054593444,0.031418357044458]],[[0.0034228635486215,0.04948078468442,-0.0012578758178279],[0.12064076215029,0.046751141548157,0.056805357336998],[0.0034916223958135,0.037815503776073,-0.006727134808898]],[[0.042942427098751,0.097151882946491,0.013221557252109],[0.05353781208396,0.030268462374806,0.064614839851856],[-0.026464436203241,-0.076149605214596,-0.040788121521473]],[[-0.029731603339314,-0.10405948758125,0.066512025892735],[0.00438994448632,-0.03366394713521,0.037605602294207],[0.059337262064219,-0.024302285164595,-0.0066893855109811]],[[-0.009883550927043,0.090525239706039,0.023818407207727],[0.070479951798916,-0.040405184030533,0.05569938570261],[-0.031211560592055,0.0094244424253702,-0.044604647904634]],[[0.064089357852936,0.0031132148578763,0.03107899799943],[-0.065405949950218,-0.08231695741415,-0.020262036472559],[0.048962239176035,0.018411988392472,0.0022807836066931]],[[-0.039712104946375,-0.039372902363539,-0.076103277504444],[0.019782884046435,-0.032084744423628,-0.013725012540817],[-0.0095462696626782,0.012928846292198,0.046905219554901]],[[-0.052741751074791,-0.0042070234194398,0.054301463067532],[-0.026472629979253,0.043586384505033,0.024799520149827],[-0.032150197774172,-0.012985413894057,0.067396685481071]],[[0.045503992587328,0.032717827707529,0.020228171721101],[0.035719782114029,0.0079993875697255,0.071636103093624],[0.046835266053677,-0.021822586655617,-0.041467279195786]],[[-0.0010305737378076,-0.0075049754232168,-0.034960720688105],[0.021509304642677,0.013701062649488,0.03782045468688],[0.010998584330082,0.0060434066690505,0.025896111503243]],[[-0.043472677469254,0.022111179307103,0.032557778060436],[-0.007250415161252,0.061342511326075,-0.016355508938432],[0.035772744566202,-0.048551362007856,-0.017037574201822]],[[0.043767053633928,-0.055946540087461,-0.0063593569211662],[-0.016416292637587,-0.037871137261391,0.042873241007328],[0.021477924659848,0.041627172380686,-0.030948352068663]],[[-0.017383679747581,-0.030679110437632,-0.059434726834297],[-0.0094460770487785,-0.029503989964724,-0.093885712325573],[-0.0087486542761326,0.022499745711684,-0.064304232597351]],[[-0.013184894807637,-0.082743041217327,-0.047874480485916],[0.0080407010391355,-0.0047132191248238,-0.041148573160172],[-0.00038846163079143,0.013309272937477,0.00104417395778]],[[0.098768018186092,-0.065633319318295,0.0056956210173666],[0.040579989552498,0.028139965608716,-0.058693524450064],[0.009990319609642,-0.029163243249059,-0.015629850327969]],[[0.016544282436371,0.1142754778266,-0.05354556068778],[-0.024104433134198,0.026509871706367,0.021299263462424],[0.040131986141205,-0.0063463863916695,0.038849741220474]],[[-0.045553237199783,0.00030035016243346,0.11465564370155],[0.051120091229677,0.023850452154875,-0.0017752946587279],[0.035659931600094,-0.0039898715913296,0.080186173319817]],[[0.049380954355001,-0.028513547033072,-0.016101028770208],[0.0075082625262439,0.00049534696154296,-0.020373275503516],[0.018883481621742,0.00014820740034338,0.035355359315872]],[[0.0056821391917765,-0.021977948024869,-0.036177273839712],[0.04646010696888,-0.066514015197754,0.096598722040653],[0.036721304059029,-0.13898505270481,0.014531982131302]],[[0.0068305945023894,-0.027341801673174,-0.012494690716267],[-0.045787613838911,-0.031507652252913,-0.089414477348328],[0.0043871500529349,0.0038291888777167,-0.074598073959351]],[[0.030846495181322,-0.037590011954308,0.050903979688883],[-0.018362857401371,0.032275095582008,-0.016647811979055],[0.041814394295216,0.028603978455067,0.041133783757687]],[[0.0086851846426725,-0.09096385538578,0.014971315860748],[0.018535010516644,-0.015239056199789,0.0047016525641084],[-0.007684223819524,0.029816841706634,0.0016939891502261]],[[0.016930928453803,-0.039324205368757,0.036863192915916],[0.051751479506493,-0.02187598310411,0.021587138995528],[0.0083444332703948,0.078304797410965,0.030269347131252]],[[0.026713617146015,-0.028543381020427,-0.025814149528742],[-0.019701080396771,0.018835738301277,-0.012834533117712],[-0.052724368870258,0.064648941159248,-0.01832683943212]],[[-0.014063281938434,-0.021589659154415,0.0032359599135816],[0.028815936297178,0.045635674148798,-0.036865498870611],[0.099946215748787,0.029328249394894,-0.023508135229349]],[[0.049387600272894,0.025951033458114,-0.064464785158634],[0.004178267903626,-0.02076331153512,-0.037104822695255],[-0.025846289470792,0.076783806085587,0.086481831967831]],[[-0.033825360238552,0.036008555442095,0.00056619086535648],[0.033131685107946,0.057398285716772,0.00066128897015005],[0.091410979628563,0.015686936676502,0.11186440289021]],[[0.022703163325787,0.048974476754665,0.01870291121304],[0.013120578601956,-0.016939835622907,-0.0052724620327353],[-0.027649125084281,0.0069015072658658,-0.028796901926398]]],[[[-0.012723950669169,0.10201866924763,0.0027726842090487],[-0.045272521674633,-0.051603335887194,-0.031426660716534],[0.065278373658657,-0.01487079821527,-0.019097097218037]],[[0.015455489978194,-0.0045159300789237,0.031191997230053],[0.038277644664049,0.012914860621095,-0.032326959073544],[-0.081090278923512,0.015086993575096,-0.026886014267802]],[[0.091688603162766,-0.10545537620783,-0.052718833088875],[0.051498614251614,0.065882742404938,-0.046711057424545],[0.024516535922885,0.0050006350502372,0.017382591962814]],[[-0.0014475142816082,0.072783224284649,-0.0017567764734849],[0.021935656666756,-0.044486854225397,-0.037169985473156],[-0.04488331079483,-0.051345571875572,-0.013194793835282]],[[0.065492413938046,0.016409665346146,0.10147669911385],[0.00010767098137876,-0.061974849551916,0.007365582510829],[-0.061929568648338,0.015806686133146,-0.04273521527648]],[[-0.055097997188568,0.039835225790739,-0.020006515085697],[-0.0051739965565503,0.053118553012609,-0.0067703286185861],[-0.015395017340779,-0.070464566349983,0.092659518122673]],[[0.0052652307786047,-0.025264954194427,0.038220133632421],[-0.083465129137039,0.05626380071044,0.06996288895607],[-0.036319226026535,-0.019337080419064,0.028111407533288]],[[0.086501561105251,-0.023768369108438,0.018060637637973],[-0.025318602100015,0.050957649946213,-0.066386230289936],[0.043196562677622,0.0088019790127873,-0.023082491010427]],[[0.012291057035327,0.0064330389723182,0.032238647341728],[-0.10400781780481,-0.045837678015232,0.012047537602484],[0.089716285467148,-0.10775107145309,0.050348162651062]],[[-0.042898841202259,0.093189589679241,-0.043606221675873],[-0.15425509214401,0.029585922136903,-0.031197689473629],[-0.017893945798278,-0.018213322386146,-0.0063616260886192]],[[0.0052545922808349,-0.017972193658352,-0.011657836847007],[0.092514418065548,-0.040977880358696,0.041079573333263],[-0.035270791500807,0.010487847030163,-0.049662508070469]],[[0.020239591598511,-0.0097549371421337,0.088534995913506],[-0.049546178430319,0.024090234190226,-0.011822101660073],[0.06549346446991,-0.0039127389900386,-0.01580073684454]],[[-0.077426016330719,-0.028810102492571,-0.098591528832912],[-0.025536246597767,-0.087496384978294,-0.014409942552447],[0.039602983742952,0.056989729404449,0.069012448191643]],[[-0.0579540617764,-0.032835181802511,-0.074091725051403],[0.024973966181278,0.068455681204796,0.062682546675205],[-0.017705217003822,-0.096903778612614,0.10971373319626]],[[-0.09376373142004,0.02750676125288,0.0070281918160617],[0.028080834075809,-0.20320647954941,-0.076226957142353],[0.076655991375446,-0.057958424091339,-0.17581260204315]],[[0.0040898192673922,-0.035115543752909,-0.000693021225743],[-0.016617808490992,-0.0024129261728376,-0.094353832304478],[-0.04856089875102,-0.14362196624279,-0.035428024828434]],[[-0.094949826598167,-0.051226817071438,0.10631614178419],[0.035617526620626,-0.12840984761715,0.019337030127645],[0.012809045612812,0.022309063002467,-0.048171333968639]],[[-0.039037577807903,0.080442547798157,0.057933531701565],[-0.046194266527891,-0.052306909114122,0.12739706039429],[0.077515736222267,-0.042805701494217,-0.01462003774941]],[[0.041806843131781,0.052317578345537,0.07196731865406],[-0.060422588139772,0.014382265508175,0.007525943685323],[-0.047778274863958,0.012606946751475,0.020588332787156]],[[-0.11818313598633,-0.043726019561291,-0.023126304149628],[-0.024409106001258,0.066049367189407,0.011767897754908],[0.067225635051727,-0.012848371639848,-0.031729318201542]],[[0.014298506081104,-0.052472200244665,-0.037859212607145],[0.020397309213877,0.035119589418173,-0.12434074282646],[0.069925613701344,-0.033891022205353,-0.018044155091047]],[[0.062343712896109,0.12390796095133,-0.043743744492531],[-0.0055218623019755,0.066778086125851,-0.041504617780447],[-0.00030699680792168,0.030341198667884,-0.00303501682356]],[[-0.073584593832493,-0.042664833366871,-0.033842880278826],[0.053700212389231,-0.016601795330644,0.0091002201661468],[-0.032980095595121,-0.0084952805191278,0.06803172826767]],[[0.024439802393317,-0.065783485770226,0.018290871754289],[-0.06360375136137,-0.0012438154080883,0.030210031196475],[-0.057156279683113,0.039605423808098,0.022789238020778]],[[0.07083523273468,-0.0713951587677,-0.26230499148369],[-0.1368645131588,0.054388605058193,0.012020229361951],[-0.15148048102856,-0.054103165864944,0.043859284371138]],[[-0.042022757232189,0.036179549992085,0.041802451014519],[0.031924724578857,-0.011523284949362,0.042205173522234],[0.04242317378521,-0.043480969965458,-0.039123427122831]],[[0.051943995058537,0.0038062920793891,-0.020493015646935],[0.084678709506989,-0.059718400239944,0.0070941387675703],[-0.021912785246968,0.011876354925334,-0.09310020506382]],[[-0.019586347043514,-0.0017848578281701,0.031064838171005],[0.11348709464073,-0.032133396714926,-0.10722477734089],[0.066364772617817,0.06888784468174,-0.05657297000289]],[[0.050302587449551,-0.06105263531208,-0.020420854911208],[-0.073826305568218,0.027077944949269,0.11871337145567],[-0.069972097873688,-0.10561262816191,0.013008315116167]],[[0.024414978921413,-0.031681850552559,0.071522131562233],[-0.033935159444809,0.077905923128128,0.061666641384363],[-0.18048161268234,-0.075681388378143,0.001215994823724]],[[-0.067031547427177,0.021620884537697,0.02213511057198],[-0.050763387233019,0.0022731679491699,-0.043085217475891],[0.024569023400545,-0.019443668425083,0.041290815919638]],[[-0.00099753413815051,-0.024369448423386,-0.057943683117628],[-0.12474747002125,0.07134822756052,-0.02633767016232],[0.07168798148632,-0.086833812296391,0.082011163234711]],[[-0.044932182878256,-0.084941156208515,-0.075004749000072],[0.0068084872327745,-0.016808750107884,0.066985428333282],[-0.054532561451197,0.11563542485237,0.092475108802319]],[[-0.0056007006205618,-0.10940239578485,-0.031217411160469],[-0.050658583641052,0.088904030621052,0.0076752277091146],[-0.029399055987597,0.092393681406975,0.10453822463751]],[[-0.0080188736319542,-0.040277555584908,-0.0040565798990428],[-0.045812647789717,0.042040228843689,-0.061374373733997],[0.067781470716,-0.015114910900593,0.0072865933179855]],[[-0.017384897917509,0.026960767805576,-0.033839888870716],[-0.044536743313074,0.065019004046917,-0.038597907871008],[0.026843292638659,-0.12028156965971,0.067062169313431]],[[-0.0098040690645576,-0.039812903851271,-0.03311113268137],[-0.017436033114791,-0.011588595807552,0.032492708414793],[0.0012610324192792,0.054710317403078,-0.030870262533426]],[[-0.015751346945763,0.042743690311909,0.037433698773384],[0.027240883558989,-0.06962326169014,-0.052391991019249],[-0.071556009352207,-0.013272849842906,0.0049868365749717]],[[0.038648668676615,0.05428658425808,0.015133847482502],[-0.0013315114192665,0.10386877506971,0.053734268993139],[-0.0074260262772441,-0.037495274096727,0.050887025892735]],[[0.029279278591275,-0.13207396864891,0.061794187873602],[0.021559685468674,0.034947596490383,-0.11314862966537],[0.097674831748009,0.066397286951542,0.034709613770247]],[[-0.05687814950943,-0.0050202258862555,-0.069824330508709],[-0.03763210773468,-0.068194046616554,-0.0031129328999668],[-0.0021813162602484,0.10120052844286,0.007356044370681]],[[-0.063308395445347,0.016863336786628,-0.037003826349974],[0.0026587257161736,-0.10312383621931,-0.039351969957352],[0.038153376430273,0.0040588127449155,-0.020430261269212]],[[-0.017384465783834,-0.0066539752297103,-0.016774205490947],[-0.009381958283484,-0.0046920324675739,0.10530332475901],[0.017944438382983,-0.058404132723808,-0.050468485802412]],[[-0.049175322055817,0.028681293129921,0.0059654107317328],[0.0025395464617759,-0.012153847143054,0.067792035639286],[-0.037692088633776,-0.042667265981436,0.046713873744011]],[[-0.067592263221741,0.077227927744389,0.013239100575447],[0.051282647997141,0.030052164569497,0.016451265662909],[0.018634488806129,-0.082359969615936,-0.035850908607244]],[[-0.022542046383023,-0.016969824209809,-0.055847264826298],[0.011469988152385,0.011593257077038,0.024729078635573],[-0.024672228842974,0.037304021418095,0.073146469891071]],[[-0.0078363167122006,-0.046286650002003,0.0080100800842047],[0.076808720827103,-0.035577997565269,-0.13920789957047],[0.031948324292898,0.098769515752792,0.039401840418577]],[[0.1343707293272,-0.084676161408424,0.025849718600512],[-0.046501494944096,0.07489612698555,-0.028579389676452],[0.056704003363848,-0.067649617791176,0.10406075417995]],[[-0.068182609975338,-0.0074514667503536,0.13959638774395],[0.014578780159354,-0.083709262311459,-0.06842578202486],[0.031335391104221,-0.050982624292374,0.080095246434212]],[[0.004675003234297,-0.019333403557539,-0.010821058414876],[0.068417474627495,0.010641130618751,-0.12729050219059],[0.047456119209528,0.031118953600526,-0.050570577383041]],[[-0.057545233517885,-0.020569426938891,-0.043848097324371],[-0.0020061498507857,-0.025278475135565,0.037769246846437],[0.0096711525693536,-0.04462705552578,-0.13115835189819]],[[-0.0073787430301309,0.081561923027039,0.038895044475794],[0.021538080647588,0.033017054200172,-0.07618560642004],[-0.058293022215366,0.014091489836574,0.0082832053303719]],[[0.10367979854345,-0.049415588378906,-0.066750593483448],[-0.046688824892044,0.15285557508469,-0.0087450295686722],[-0.047659303992987,-0.040446195751429,0.037924353033304]],[[-0.028469016775489,-0.017633926123381,0.10196723043919],[0.02037956379354,-0.045305635780096,-0.057042077183723],[-0.013023064471781,-0.038026463240385,0.038262981921434]],[[0.0021182685159147,0.014272631146014,0.043832745403051],[-0.072719551622868,0.14898462593555,0.068786442279816],[-0.028509773313999,-0.096458226442337,-0.0074283722788095]],[[-0.040697265416384,-0.002753839129582,-0.012709338217974],[-0.034587718546391,0.08295626193285,-0.066471271216869],[0.060296591371298,0.010224984027445,0.0011301117483526]],[[-0.031666476279497,-0.00069748982787132,0.03568858653307],[0.0064944913610816,-0.046166881918907,-0.029280345886946],[0.056581225246191,-8.1256555858999e-05,-0.032952766865492]],[[0.0092225950211287,0.012935915961862,-0.025396151468158],[-0.10196748375893,0.07826092094183,0.032562054693699],[-0.11158633977175,0.0098393121734262,0.083536021411419]],[[-0.038006495684385,-0.10670647770166,-0.034721687436104],[0.071738503873348,0.069891236722469,-0.1133856549859],[0.010509558953345,0.075675845146179,0.048289455473423]],[[-0.049782514572144,0.0039193821139634,0.095563992857933],[-0.027074877172709,-0.085010074079037,0.070052906870842],[-0.025674235075712,0.086977921426296,-0.053858634084463]],[[-0.054444123059511,0.11425586789846,-0.026251750066876],[0.010513758286834,0.023626167327166,0.015338521450758],[-0.01610204204917,-0.14151848852634,-0.039108492434025]],[[0.056987419724464,-0.016325814649463,-0.028390726074576],[-0.025591548532248,-0.018743878230453,-0.016739539802074],[-0.0072156628593802,-0.050196785479784,0.012685917317867]],[[-0.025733776390553,-0.045472525060177,-0.057904712855816],[-0.0064819459803402,-0.025801269337535,-0.049852829426527],[0.02166317217052,0.022710653021932,0.018793180584908]],[[0.083271868526936,0.031404707580805,0.021936375647783],[-0.037376090884209,-0.030948139727116,-0.068008311092854],[0.10287225991488,-0.047615453600883,0.02944858931005]],[[-0.07247718423605,-0.057582687586546,-0.007751353085041],[0.058643039315939,0.084124557673931,-0.02938349545002],[-0.06809463351965,-0.030931396409869,0.072080098092556]],[[0.0611931681633,0.10680111497641,-0.028969779610634],[-0.080201148986816,-0.10971782356501,-0.042773686349392],[0.012698596343398,-0.091616630554199,0.019271839410067]],[[0.044960934668779,0.048242758959532,-0.050511725246906],[-0.011392963118851,-0.065642990171909,0.074376039206982],[-0.041872549802065,-0.023659294471145,0.06379909068346]],[[-0.0080563854426146,0.045125652104616,-0.03503842651844],[-0.084639132022858,0.074810139834881,0.080687910318375],[0.055447984486818,-0.0014048900920898,-0.028046915307641]],[[0.0024007947649807,-0.03346123918891,-0.039772517979145],[0.082290172576904,-0.11074195057154,-0.055404372513294],[0.050092715770006,-0.0070064109750092,-0.059932567179203]],[[0.042098816484213,0.04080555960536,0.10561969876289],[0.044179540127516,-0.057136125862598,-0.025979161262512],[0.032027099281549,0.0087965782731771,-0.045496489852667]],[[-0.012120926752687,0.10084544867277,-0.0011949972249568],[0.06577867269516,-0.11919837445021,0.061069540679455],[0.066110402345657,0.097720324993134,0.011631395667791]],[[-0.054635919630527,0.05631585046649,0.0031639747321606],[-0.0073504992760718,0.000712716486305,-0.018009211868048],[-0.057943299412727,0.026152795180678,0.06531447917223]],[[-0.089970290660858,-0.039757627993822,0.10871198773384],[0.055323965847492,-0.094866618514061,-0.1724296361208],[-0.009414735250175,0.080816760659218,-0.046018123626709]],[[-0.098528705537319,-0.081067457795143,0.060222782194614],[0.075228534638882,-0.013160860165954,-0.056639842689037],[0.1291791498661,-0.0048529193736613,0.027840098366141]],[[-0.031141433864832,0.0062633170746267,-0.052801247686148],[-0.041416935622692,0.025898292660713,-0.037622753530741],[0.047904074192047,-0.016481539234519,-0.0094342827796936]],[[0.078457377851009,-0.046143773943186,-0.030990518629551],[0.043627697974443,-0.07026956230402,-0.10258171707392],[0.044461380690336,-0.0075509995222092,-0.025770710781217]],[[-0.028954664245248,3.101077163592e-05,-0.025977339595556],[-0.030342468991876,0.015558942221105,-0.021989328786731],[0.032225705683231,-0.017789544537663,-0.068182535469532]],[[0.10910815000534,0.052694145590067,-0.069601446390152],[-0.034709613770247,0.010534469969571,-0.027431694790721],[-0.0030573301482946,-0.057017054408789,-0.12221160531044]],[[0.029967255890369,-0.11248593777418,0.046333856880665],[-0.1170174703002,0.01915050111711,0.056574556976557],[0.027893554419279,0.070797547698021,0.026193294674158]],[[0.041858941316605,0.0041328906081617,-0.051292806863785],[0.0067553077824414,-0.0062480294145644,-0.039050661027431],[0.018053391948342,0.080648921430111,-0.098645873367786]],[[-0.070382811129093,0.041601181030273,-0.098651394248009],[-0.012307912111282,0.078188121318817,0.028828619047999],[0.045672137290239,-0.052106991410255,0.070652991533279]],[[0.0092837335541844,0.098025038838387,0.012854525819421],[-0.0034310473129153,-0.044795297086239,-0.0094698192551732],[-0.001674993429333,0.033421628177166,-0.0071823233738542]],[[-0.022359734401107,-0.017692232504487,-0.076247505843639],[0.071776106953621,0.025311062112451,0.032931935042143],[-0.075189098715782,0.11311938613653,-0.023797135800123]],[[0.01100299693644,0.0046286266297102,0.018857849761844],[0.038539282977581,-0.013368747197092,-0.056221026927233],[-0.0025102200452238,-0.016091840341687,-0.062264654785395]],[[0.038619574159384,0.012948437593877,0.060898151248693],[0.074342988431454,0.062020633369684,-0.018682427704334],[-0.022890003398061,-0.089689709246159,-0.024190410971642]],[[-0.045313879847527,-0.056565601378679,0.011390827596188],[0.016327686607838,-0.056367702782154,0.10529223829508],[0.0055495584383607,0.00047605350846425,0.059775520116091]],[[0.10719833523035,-0.030764613300562,-0.059096392244101],[-0.068820729851723,-0.0075193378143013,0.08710078895092],[0.033472221344709,-0.054237432777882,-0.046929698437452]],[[-0.011653709225357,-0.05469162389636,0.088267378509045],[-0.070879854261875,-0.021472910419106,0.066672928631306],[-0.061238575726748,-0.0062092449516058,-0.010939713567495]],[[-0.056351836770773,-0.059935539960861,-0.03641053289175],[-0.027624733746052,-0.019864844158292,0.12393093109131],[0.034927740693092,-0.020757455378771,0.013235388323665]],[[-0.025994116440415,-0.084920957684517,0.044988188892603],[0.016820011660457,-0.093618147075176,-0.0037631979212165],[0.068472169339657,0.069314919412136,0.0070597301237285]],[[0.101144105196,0.031469862908125,-0.0065591596066952],[-0.018822148442268,0.0186567902565,-0.060036078095436],[-0.066688366234303,0.11564518511295,0.01289021782577]],[[0.0047719571739435,-0.001655955100432,0.022542215883732],[-0.016707856208086,0.018565367907286,0.016921300441027],[-0.031286165118217,-0.022180408239365,-0.0055256388150156]],[[0.033993784338236,0.020826851949096,-0.094370521605015],[-0.013427706435323,0.018071761354804,-0.081682778894901],[-0.033267095685005,0.035571206361055,0.020457331091166]],[[0.037022419273853,0.01134414318949,-0.021108074113727],[-0.021770816296339,0.11671021580696,0.036698237061501],[0.071021907031536,0.093389719724655,0.076661080121994]],[[0.021469874307513,0.042252540588379,-0.045096091926098],[-0.035201702266932,-0.016318902373314,-0.0052361129783094],[-0.073665298521519,0.066677555441856,0.059119187295437]],[[-0.085100598633289,-0.0041086506098509,-0.045761782675982],[-0.048294998705387,-0.021934570744634,0.015939837321639],[-0.014103669673204,0.05715462192893,-0.038363128900528]],[[0.024606643244624,0.044674661010504,-0.0326840095222],[0.035718683153391,-0.025513011962175,-0.025294559076428],[0.020323121920228,0.010366670787334,-0.056514274328947]],[[-0.023038441315293,-0.027779392898083,-0.0082470523193479],[-0.057750102132559,0.048718485981226,0.013592977076769],[-0.022912159562111,0.10298278182745,-0.056010849773884]],[[0.046867556869984,-0.04067500680685,-0.0093809403479099],[0.11684944480658,0.015543382614851,-0.078209102153778],[-0.025014139711857,0.014511216431856,-0.063603594899178]],[[0.056113235652447,0.017208548262715,-0.065139502286911],[-0.012772844173014,0.04524102807045,-0.082008518278599],[0.081862740218639,-0.017881562933326,0.044096369296312]],[[-0.015312789939344,0.049180541187525,0.018266536295414],[-0.017432972788811,0.0067703216336668,0.0076394188217819],[0.048744011670351,0.052562091499567,-0.038377106189728]],[[0.085159115493298,-0.020976250991225,-0.034618187695742],[0.030958335846663,0.035447187721729,-0.019916467368603],[-0.012115834280849,-0.090790390968323,0.037078205496073]],[[-0.03834305331111,-0.02587684430182,-0.087175786495209],[0.095338717103004,-0.084369257092476,-0.081605434417725],[0.041112009435892,0.0026599788106978,0.021983141079545]],[[-0.060660868883133,0.0055321427062154,0.02833266556263],[-0.0041601001285017,0.022434236481786,-0.034184459596872],[0.027832936495543,0.00076770188752562,0.043170154094696]],[[0.015356442891061,-0.03284028545022,-0.030980460345745],[-0.098097786307335,-0.0025934134609997,0.021307183429599],[0.00052706559654325,0.029805766418576,0.017588075250387]],[[-0.12356348335743,-0.035288766026497,-0.023901904001832],[-0.0073866080492735,-0.072298876941204,0.022746806964278],[0.07446327060461,-0.030962143093348,0.081194080412388]],[[0.0043844454921782,0.039604358375072,-0.096181869506836],[0.069294348359108,-0.028215428814292,0.019625227898359],[0.013725435361266,0.097126714885235,-0.089988224208355]],[[0.0034353416413069,0.043735533952713,-0.050280906260014],[-0.038599077612162,-0.061880316585302,0.064453974366188],[0.05182945355773,-0.024682600051165,-0.037940938025713]],[[-0.0084771644324064,0.0013275353703648,0.0036387757863849],[-0.047479677945375,0.04201801866293,-0.0050807897932827],[-0.019412528723478,-0.056100346148014,0.062817566096783]],[[-0.030725508928299,-0.017055349424481,0.013220384716988],[-0.013528733514249,-0.020628562197089,0.015924207866192],[-0.0021997254807502,-0.041440073400736,0.046370074152946]],[[0.041052728891373,-0.00028240837855265,-0.038696650415659],[0.018475072458386,-0.04348498955369,0.007419154047966],[0.00074287271127105,-0.010204606689513,-0.0099697876721621]],[[-0.073744639754295,-0.076453790068626,0.07089152187109],[-0.019273519515991,-0.046972628682852,0.066481031477451],[-0.023152878507972,-0.062527626752853,-0.013255333527923]],[[-0.064104802906513,0.03455613180995,0.027549996972084],[-0.065270557999611,0.011285954155028,-0.027272202074528],[0.012601444497705,0.061487264931202,-0.00089087104424834]],[[0.060932852327824,0.0078617008402944,-0.029182793572545],[-0.074995711445808,0.048826813697815,0.030626745894551],[0.023791817948222,-0.02991596981883,-0.0046375347301364]],[[-0.088783577084541,-0.035964988172054,-0.048735126852989],[-0.053670261055231,0.018837591633201,0.013758980669081],[-0.022761093452573,0.1060404703021,0.10378501564264]],[[0.16113318502903,0.058907303959131,0.027529451996088],[0.017384767532349,0.11453211307526,-0.011450896970928],[0.078147783875465,0.079746082425117,-0.079952329397202]],[[0.03917058929801,-0.0040788240730762,0.020211152732372],[-0.070935197174549,-0.059934183955193,0.006786834448576],[0.1082873493433,-0.027768239378929,0.041979279369116]],[[0.029141509905457,0.037795998156071,-0.016038315370679],[-0.096883118152618,0.028021072968841,-0.056147146970034],[0.01282527577132,-0.016768954694271,0.038976766169071]],[[0.046717960387468,0.0367964617908,-0.011354480870068],[-0.024602038785815,0.079743690788746,-0.071963973343372],[-0.020614957436919,-0.079047843813896,-0.017813380807638]],[[-0.0394102409482,-0.042732331901789,-0.083283573389053],[-0.052109397947788,0.0056579988449812,-0.036734789609909],[-0.041431229561567,-0.010573505423963,-0.00018535187700763]],[[-0.0038941043894738,-0.030479934066534,-0.037286106497049],[-0.04091851785779,0.093035086989403,-0.14963401854038],[0.0071702729910612,-0.055482596158981,0.09939119964838]],[[0.0039253602735698,-0.010541822761297,0.092925921082497],[-0.014059883542359,-0.12338645011187,-0.04148256033659],[-0.024465035647154,-0.066556185483932,-0.052259832620621]],[[0.064796112477779,-0.04652563482523,0.0054602199234068],[0.025035003200173,-0.018626814708114,-0.026463389396667],[0.040569059550762,0.085240691900253,0.020496070384979]],[[-0.048723697662354,0.031268168240786,0.020882455632091],[-0.03482423722744,-0.056885078549385,0.057925079017878],[-0.020041525363922,0.030963309109211,-0.017558675259352]],[[0.038530137389898,0.042433843016624,-0.097003445029259],[-0.076854273676872,-0.045478597283363,-0.079936139285564],[0.05404119566083,-0.0088154906406999,-0.055376205593348]],[[-0.065597638487816,-0.050541337579489,0.022970223799348],[-0.076068855822086,-0.034665897488594,0.05854395404458],[0.0060301590710878,0.007282174192369,0.040355041623116]],[[0.0013748011551797,0.072476796805859,0.038844410330057],[0.055863372981548,-0.044941436499357,-0.073176547884941],[-0.017063753679395,0.059778396040201,0.022923877462745]],[[0.0336141474545,-0.094011694192886,-0.051052741706371],[-0.0043889204971492,-0.011803586035967,0.006976468488574],[0.026622841134667,0.030171642079949,0.07236871868372]]],[[[-0.0026922635734081,-0.01225181017071,0.011151162907481],[-0.066027730703354,-0.067999504506588,0.012374726124108],[-0.059649359434843,-0.033094167709351,0.055911626666784]],[[-0.02965428121388,-0.004404662642628,0.025925740599632],[0.030143335461617,0.021443925797939,0.012802622281015],[0.074700921773911,0.03924185782671,0.0017858997453004]],[[0.063459016382694,-0.043861921876669,0.03701938688755],[-0.037461213767529,-0.029096227139235,-0.04532229155302],[0.054213836789131,0.0012544273631647,-0.018448978662491]],[[-0.019980957731605,-0.046474479138851,0.050100848078728],[0.020845927298069,0.0082722138613462,0.0049898140132427],[0.027992527931929,0.032348230481148,-0.0039476328529418]],[[0.028304545208812,0.0048191980458796,0.021396057680249],[0.02806594222784,0.03397998213768,0.060756400227547],[-0.0096309753134847,-0.060096390545368,-0.023368965834379]],[[0.086314149200916,0.017550840973854,-0.014494215138257],[0.055289305746555,0.14755295217037,0.040443651378155],[0.00033268996048719,-0.022737329825759,0.021790064871311]],[[-0.066751189529896,-0.055149517953396,0.0013354475377128],[0.010197453200817,-0.010516063310206,0.0073106279596686],[-0.10323532670736,-0.063409470021725,0.036862220615149]],[[-0.012886256910861,0.0021056365221739,-0.040006022900343],[0.00083664525300264,0.066041633486748,0.053154610097408],[-0.021328685805202,-0.0076497839763761,0.015507080592215]],[[0.033596437424421,0.062453903257847,-0.0040249698795378],[0.0092212809249759,-0.0028790466021746,-0.034922044724226],[-0.0088869389146566,-0.01684907451272,-0.00072308629751205]],[[0.072435401380062,-0.00098765082657337,0.014463596045971],[0.16458125412464,0.11844545602798,0.044594749808311],[0.043490570038557,-0.042415250092745,0.13860842585564]],[[-0.052430436015129,-0.045975890010595,0.0062237624078989],[0.0057556391693652,-0.00080420600716025,0.10205382108688],[-0.076111823320389,-0.032956711947918,-0.062815733253956]],[[0.022727575153112,0.026051055639982,0.044328492134809],[0.052491538226604,-0.027631722390652,0.10093585401773],[-0.005432462785393,-0.0060249557718635,-0.017702737823129]],[[0.0893959030509,0.05044960975647,0.067643851041794],[-0.006070900708437,0.036792021244764,0.0038658033590764],[0.076682142913342,-0.0011086461599916,0.050522703677416]],[[0.044251222163439,-0.021200366318226,0.014622207731009],[0.0063648126088083,0.0078925024718046,0.05817723274231],[0.041558425873518,0.1014438867569,0.034166783094406]],[[-0.036771759390831,0.086857207119465,0.01985895819962],[0.081980183720589,0.17215976119041,-0.039260227233171],[0.066308952867985,0.15171247720718,-0.052824020385742]],[[0.025061096996069,-0.073837339878082,-0.038678612560034],[0.046317290514708,-0.063815027475357,-0.10919500142336],[0.019275527447462,-0.11326797306538,-0.024082373827696]],[[-0.012295462191105,0.0095670018345118,0.10321360826492],[-0.061832252889872,-0.069016866385937,0.029498571529984],[-0.01190884038806,0.0043832450173795,0.045238599181175]],[[-0.0026314901188016,-0.072878286242485,-0.030653029680252],[-0.063423462212086,0.013581636361778,-0.066045753657818],[-0.035804435610771,-0.10351979732513,-0.010293362662196]],[[-0.0044588898308575,0.056182146072388,0.05391214042902],[-0.018553357571363,0.018314249813557,0.027153989300132],[0.046658329665661,0.050098229199648,0.044149070978165]],[[0.080563403666019,-0.063937485218048,-0.08313263207674],[0.018901789560914,-0.059000920504332,-0.016721764579415],[0.064983151853085,0.035008125007153,0.018731391057372]],[[0.0089247301220894,0.0029185183811933,0.093676209449768],[0.061895091086626,0.094992436468601,-0.033425346016884],[0.1160252019763,0.005193236283958,0.061797939240932]],[[0.10689664632082,0.05581521987915,0.10545795410872],[0.16886733472347,0.10020735114813,0.014178501442075],[-0.0055685630068183,0.059205081313848,0.0084226652979851]],[[0.0029591808561236,-0.040028609335423,0.0020617519039661],[-0.020325791090727,-0.0035810591652989,0.0019380106823519],[0.044165685772896,0.013569481670856,0.0058908960781991]],[[-0.0060802870430052,-0.0023131852503866,0.0010420437902212],[0.066392444074154,-0.045386519283056,0.059012446552515],[0.0038577334489673,0.037591498345137,0.032959911972284]],[[0.045553810894489,0.040296476334333,-0.040836051106453],[0.038773242384195,0.079130761325359,0.06290116161108],[-0.018726095557213,0.027699479833245,0.032167546451092]],[[0.047016844153404,0.033030740916729,0.04974153637886],[0.0024020336568356,-0.031545557081699,0.1046350300312],[-0.045044649392366,0.011603594757617,0.070534765720367]],[[-0.0091818552464247,-0.040047168731689,0.013979061506689],[0.082719303667545,-0.076117299497128,0.067370869219303],[0.032237369567156,0.020381100475788,-0.016659548506141]],[[-0.038125433027744,-0.04034635424614,0.0038776465225965],[-0.064815655350685,-0.0060334359295666,-0.051742576062679],[-0.069881848990917,0.050073474645615,6.5026717493311e-05]],[[0.040798537433147,0.011140080168843,0.054443374276161],[-0.026591021567583,-0.013949975371361,-0.018463905900717],[-0.035615861415863,0.055996030569077,-0.094273589551449]],[[0.037963159382343,-0.021902024745941,0.0076418393291533],[0.027476631104946,-0.047103233635426,-0.030565649271011],[0.029713807627559,-0.05616345256567,0.002566578797996]],[[0.025871595367789,-0.022866370156407,0.023477535694838],[0.069461971521378,0.019917132332921,-0.0028817821294069],[0.057302813977003,0.033350300043821,-0.057348534464836]],[[-0.054277438670397,0.024882795289159,0.069594092667103],[0.10003270208836,0.02299840003252,-0.075201399624348],[0.045929700136185,-0.011751451529562,-0.0066765234805644]],[[0.072154119610786,0.048266854137182,0.029868299141526],[-0.032747834920883,0.029105050489306,-0.030256468802691],[0.0032769609242678,0.010018069297075,0.0074470774270594]],[[0.0054624816402793,0.052423551678658,0.054528053849936],[0.066195458173752,0.059221368283033,0.012075872160494],[0.0073984721675515,-0.015070226043463,0.058592781424522]],[[0.030073845759034,-0.024953598156571,0.027649354189634],[0.037491429597139,0.0065751359798014,-0.059213999658823],[0.080406524240971,0.052907668054104,-0.069054275751114]],[[-0.008158759213984,-0.019457165151834,-0.041311994194984],[-0.060888785868883,0.018552066758275,0.011628380045295],[-0.01603739336133,-0.025839045643806,-0.031397692859173]],[[-0.042967431247234,-0.067827634513378,-0.033226083964109],[-0.021414868533611,-0.038736622780561,-0.053848542273045],[-0.034435607492924,-0.042847711592913,-0.045833926647902]],[[0.053967971354723,0.022505292668939,0.03054304420948],[-0.018146300688386,0.051684759557247,-0.044094916433096],[-0.023996196687222,-0.026126379147172,-0.072395108640194]],[[0.03762311860919,-0.0442084223032,0.053263451904058],[7.5061761890538e-05,0.09362580627203,-0.029180569574237],[0.019503060728312,-0.04278614744544,-0.10579308867455]],[[-0.059884008020163,0.0017018142389134,-0.11839887499809],[-0.036624483764172,0.014297331683338,-0.025788236409426],[-0.02242149040103,-0.016770947724581,0.035315424203873]],[[0.00066560175037012,0.020700961351395,-0.046020530164242],[0.013774113729596,-0.078941389918327,-0.0025060302577913],[-0.04703463613987,-0.059535890817642,-0.00086605100659654]],[[0.0041232914663851,-0.038098495453596,0.010948431678116],[0.00010454720904818,0.043958354741335,0.022161342203617],[-0.0020318035967648,0.015094787813723,-0.076535955071449]],[[-0.018763897940516,0.0091753080487251,-0.040854934602976],[-0.043647769838572,0.027432322502136,0.053138721734285],[0.038019310683012,-0.03580953925848,0.0045306757092476]],[[-0.060353793203831,-0.035937607288361,-0.027370123192668],[0.0073663061484694,-0.025415783748031,0.039587810635567],[-0.026285847648978,-0.012659530155361,-0.013339981436729]],[[0.0096604079008102,-0.0099093159660697,0.015074430033565],[0.033981755375862,-0.040879361331463,-0.022171614691615],[0.043074116110802,-0.037829473614693,0.053789775818586]],[[0.025751568377018,0.037733089178801,0.012532905675471],[0.038032911717892,0.04955942183733,0.029819458723068],[0.025350274518132,-0.033517982810736,0.0020089810714126]],[[-0.064871743321419,-0.011047110892832,-0.031340893357992],[-0.006877907551825,-0.018103994429111,-0.0088653573766351],[-0.013260904699564,0.014297731220722,-0.013928595930338]],[[-0.054220322519541,0.023404514417052,0.053595688194036],[-0.012161237187684,0.028260571882129,0.016101138666272],[-0.029729671776295,0.05759933963418,0.042250573635101]],[[-0.02698034234345,-0.042008049786091,0.053390130400658],[0.056025385856628,0.023903887718916,0.029335265979171],[0.0018366379663348,-0.068877726793289,0.025833189487457]],[[-0.071238100528717,0.0086366515606642,0.037542272359133],[-0.0083432579413056,0.0050512361340225,0.050759624689817],[-0.047442395240068,-0.034453548491001,0.018208734691143]],[[0.018590964376926,-0.0074726860038936,0.011183068156242],[0.00031208075233735,-0.0218461509794,-0.012275363318622],[0.022344598546624,0.056339260190725,0.030900867655873]],[[-0.031472217291594,-0.026864804327488,-0.035799786448479],[-0.021314557641745,0.069037854671478,0.055640544742346],[0.0076170372776687,0.025075616315007,-0.021807426586747]],[[-0.03554979339242,-0.0031086197122931,-0.0036414270289242],[0.09327021241188,0.053930852562189,-0.065041951835155],[0.064949981868267,-0.050619602203369,0.0026687437202781]],[[-0.024303240701556,-0.041428655385971,0.0322210714221],[0.072935178875923,0.061425067484379,0.056313890963793],[-0.04376570507884,-0.057256191968918,0.037181660532951]],[[0.048842065036297,0.023830708116293,0.028137130662799],[-0.032277215272188,0.043110612779856,-0.025687167420983],[0.031675767153502,-0.03027374856174,0.058838363736868]],[[0.086187735199928,0.0041057621128857,0.054569203406572],[-0.0099101616069674,-0.0096183782443404,0.013433798216283],[0.012156337499619,0.038475442677736,-0.0041060876101255]],[[-0.06914983689785,0.027386492118239,-0.048264071345329],[0.00084279506700113,-0.047777067869902,-0.022580621764064],[-0.034273900091648,-0.057302489876747,-0.017275419086218]],[[-0.067115843296051,-0.079846009612083,-0.031743217259645],[0.023966245353222,0.078414127230644,0.047275386750698],[-0.02260173112154,-0.070253945887089,-0.018490307033062]],[[0.01994669996202,0.0093489792197943,-0.011405237019062],[0.014000130817294,-0.0085638901218772,0.0064273881725967],[0.078830070793629,0.0038408413529396,0.12013676762581]],[[-0.015829717740417,0.022874519228935,-0.02463299036026],[-0.0049324850551784,-0.055924125015736,-0.02950164116919],[0.035895016044378,0.027451533824205,-0.01791569404304]],[[-0.0049049118533731,0.056366469711065,0.015742089599371],[0.084425166249275,0.065186694264412,0.063007064163685],[-0.051892466843128,0.052829135209322,-0.016408368945122]],[[0.029839126393199,0.0027981444727629,-0.076877154409885],[-0.01956002227962,-0.061550155282021,0.028957262635231],[-0.017542915418744,-0.00073201500345021,0.019818322733045]],[[0.029872991144657,-0.027238432317972,-0.026601523160934],[0.012786420062184,-0.015603105537593,-0.07464987039566],[0.050966504961252,0.054076321423054,0.05252905189991]],[[0.09478909522295,0.065423302352428,-0.081289283931255],[0.058700118213892,0.008655970916152,-0.015083296224475],[0.024960013106465,0.0026397216133773,-0.022221593186259]],[[0.099877960979939,0.060643937438726,0.055618867278099],[-0.06828098744154,-0.026054743677378,0.030933922156692],[0.028800085186958,-0.052760496735573,0.028286349028349]],[[0.0063721612095833,-0.057529509067535,0.01443104352802],[0.011580117978156,-0.0015786645235494,-0.0019729293417186],[0.060300223529339,0.054943431168795,0.010558864101768]],[[-0.034660935401917,-0.022708730772138,0.085719414055347],[0.096118494868279,0.019264809787273,-0.016344036906958],[0.028613356873393,-0.030623694881797,0.052003480494022]],[[0.071520291268826,0.033788964152336,0.058392502367496],[0.0074863038025796,0.049454562366009,-0.059772215783596],[0.046518087387085,-0.031045148149133,-0.0076394435018301]],[[-0.010114310309291,-0.0022288889158517,0.079937756061554],[-0.0069158179685473,0.027266984805465,-0.01492714881897],[0.049834851175547,-0.01478533167392,-0.015291468240321]],[[0.075263150036335,0.039295788854361,0.035721283406019],[-0.0682587698102,0.0059929117560387,0.02259374782443],[0.10699611157179,-0.041128486394882,-0.018042650073767]],[[-0.081365950405598,-0.035269912332296,-0.0020462286192924],[-0.053570829331875,0.028573388233781,0.059518083930016],[0.019009890034795,0.078722283244133,-0.021521959453821]],[[-0.032967496663332,0.06107784807682,0.050163723528385],[-0.024591129273176,-0.083947956562042,0.047203347086906],[-0.023639975115657,0.014677947387099,0.008896803483367]],[[-0.0001517710625194,0.075102344155312,0.055480469018221],[0.006805531680584,0.041946619749069,-0.032044913619757],[-0.016680365428329,0.037163984030485,-0.075502872467041]],[[0.033458318561316,0.039292629808187,0.029407989233732],[0.034857124090195,0.040189415216446,-0.011977533809841],[0.047101598232985,0.011987300589681,0.094462126493454]],[[0.046534195542336,-0.010941981337965,-0.054752897471189],[-0.018805358558893,-0.039588246494532,-0.013297483325005],[-0.013336415402591,-0.0060729486867785,0.081717409193516]],[[0.022448536008596,0.047350965440273,-0.083132594823837],[-0.064793787896633,0.036962572485209,0.016808746382594],[0.0015741313109174,0.057445872575045,0.058598101139069]],[[-0.0074653383344412,-0.023317076265812,-0.010790520347655],[0.01125440467149,0.041433166712523,-0.0096008395776153],[-0.069986119866371,-0.06025168672204,0.0063714371062815]],[[-0.033558439463377,0.0471216365695,-0.0025591023731977],[0.0099188219755888,0.027312213554978,-0.032972373068333],[0.055492118000984,0.012960211373866,-0.00027680449420586]],[[-0.0076636369340122,-0.0072302431799471,-0.031863432377577],[0.088664151728153,-0.056390259414911,-0.022788159549236],[0.005713349673897,-0.0085105979815125,-0.002279506996274]],[[0.028091287240386,0.084304481744766,-0.0074956892058253],[0.014813251793385,0.0091752680018544,0.0035577139351517],[-0.01419716142118,0.035930786281824,-0.057817667722702]],[[0.035457786172628,0.0085847731679678,0.023321509361267],[0.083067908883095,0.067965619266033,-0.018872082233429],[-0.0055194059386849,-0.029262278228998,0.022324914112687]],[[-0.063204020261765,-0.069362618029118,-0.018807917833328],[0.0020730127580464,-0.00099845486693084,0.016370078548789],[-0.019238481298089,0.020170643925667,-0.049428414553404]],[[0.036774531006813,-0.06682238727808,0.045127023011446],[0.00042757071787491,0.03105242177844,0.057181358337402],[0.038516536355019,0.028862912207842,-0.001135463709943]],[[0.0099643282592297,0.08287787437439,0.053175553679466],[0.011518358252943,-0.0064616557210684,-0.019364040344954],[-0.034909296780825,0.094339892268181,0.077707894146442]],[[0.0025578150525689,-0.0089557142928243,0.0479522831738],[0.01027272362262,0.095286317169666,-0.027637535706162],[-0.030851891264319,0.016205064952374,-0.0038305087946355]],[[-0.018858887255192,0.098432131111622,0.018162686377764],[0.029869101941586,0.088277019560337,-0.013969304040074],[0.0179114472121,0.047340769320726,0.058609187602997]],[[0.0012423868756741,-0.021168939769268,0.018471026793122],[0.052512638270855,0.032859537750483,0.068269118666649],[0.054959490895271,0.029953798279166,0.015532243996859]],[[-0.054017677903175,0.074831888079643,0.12347960472107],[0.031080001965165,0.082895174622536,0.029508791863918],[0.016195090487599,0.033659636974335,0.05516404658556]],[[0.012675479985774,0.028009902685881,0.066899292171001],[0.055527947843075,-0.05167818441987,0.059119313955307],[0.0078499196097255,0.060836721211672,0.026207573711872]],[[0.01656392775476,-0.0158929862082,0.0094462670385838],[-0.048994578421116,0.0091975321993232,-0.010765593498945],[0.054147493094206,0.032600544393063,0.034933004528284]],[[-0.012752027250826,0.045092921704054,0.039902649819851],[0.042219869792461,0.065798602998257,0.066501572728157],[-0.027482954785228,0.035719778388739,-0.039266027510166]],[[-0.0030026671011001,-0.031221721321344,0.031875882297754],[-0.041608575731516,0.036561328917742,-0.058443266898394],[-0.091236017644405,-0.019997697323561,0.0098545458167791]],[[-0.019612150266767,-0.025699896737933,0.028592269867659],[0.031621348112822,-0.033832132816315,0.0099665708839893],[0.0051081026904285,-0.064492799341679,0.0071186725981534]],[[0.021749246865511,0.012091107666492,0.054374806582928],[0.011259750463068,-0.032947592437267,0.093471966683865],[-0.00035966982250102,0.039246652275324,0.068994112312794]],[[-0.017977567389607,0.036222282797098,0.018638867884874],[0.095197699964046,0.067119956016541,0.073933057487011],[0.075842805206776,0.013476721942425,-0.052245818078518]],[[-0.016963800415397,0.042427204549313,-0.018658513203263],[-0.030203418806195,0.0078212879598141,0.022533351555467],[-0.036355711519718,0.026071187108755,-0.031064737588167]],[[-0.0081169269979,-0.0077376770786941,0.10171169787645],[-0.021925270557404,0.046423841267824,0.019923472777009],[0.067284040153027,-0.01915947906673,0.056643407791853]],[[0.022793024778366,0.051697611808777,0.082488097250462],[0.055254027247429,0.0050674588419497,0.035566657781601],[0.033304590731859,0.056781142950058,0.046216264367104]],[[0.04213560372591,0.024971127510071,-0.020584307610989],[0.039627704769373,-0.0028687252197415,0.00070359359961003],[-0.022578183561563,-0.032798901200294,0.044813022017479]],[[0.016816819086671,-0.030115393921733,-0.030737452208996],[0.0040636053308845,0.03847399353981,-0.024847533553839],[-0.04739498719573,0.025423396378756,0.040581148117781]],[[-0.070325382053852,-0.067175522446632,0.0074031995609403],[-0.12173334509134,-0.013883486390114,0.057664964348078],[0.071539685130119,0.047327555716038,-0.018999069929123]],[[-0.055031307041645,0.072909593582153,-0.0064423154108226],[0.034096300601959,0.057447034865618,0.028421713039279],[-0.0078043774701655,0.068837970495224,0.012965711764991]],[[0.031931694597006,-0.053468581289053,-0.019603742286563],[0.068034671247005,0.0091179311275482,-0.0096038831397891],[0.0031838021241128,0.061819549649954,0.017457224428654]],[[-0.008606874383986,0.042299706488848,-0.0041699758730829],[0.044926159083843,0.024375850334764,-0.015140019357204],[-0.0061892787925899,-0.028566729277372,0.060333982110023]],[[0.093399129807949,-0.025661254301667,0.098759219050407],[-0.0027465620078146,-0.066950462758541,0.025431906804442],[0.022413728758693,0.020512839779258,0.076047591865063]],[[-0.049889113754034,0.050072405487299,0.00022920410265215],[-0.052360534667969,0.0014903232222423,-0.031186074018478],[0.083639830350876,0.011306310072541,0.026983596384525]],[[-0.0089223897084594,0.09173209965229,0.055182132869959],[-0.025491245090961,-0.0222337115556,0.0099670365452766],[-0.006693001370877,0.14968234300613,-0.0033313641324639]],[[-0.034775990992785,-0.046693719923496,-0.057085603475571],[0.076522178947926,0.037373594939709,-0.056731205433607],[0.02086535282433,0.10895704478025,0.0021808785386384]],[[0.035124070942402,0.085692748427391,-0.0096485242247581],[0.034133896231651,-0.021216373890638,0.0054358062334359],[0.025043979287148,-0.024593207985163,-0.024922143667936]],[[0.0242341440171,0.042127475142479,0.074872471392155],[-0.0069523327983916,-0.033119451254606,-0.032543402165174],[-0.040887929499149,-0.081646926701069,-0.010095833800733]],[[-0.042317233979702,-0.036712925881147,-0.033561132848263],[-0.048956032842398,0.054052028805017,0.00072249019285664],[-0.040621027350426,0.0079529900103807,0.017746515572071]],[[0.0059826034121215,0.06370410323143,0.038485925644636],[-0.06547237932682,-0.016662713140249,-0.0074624228291214],[0.042392779141665,-0.0046872068196535,0.031180709600449]],[[-0.03442744165659,-0.0059534143656492,-0.027403108775616],[0.0073124025948346,0.11487518250942,0.086234875023365],[0.010870122350752,-0.018572775647044,-0.067760400474072]],[[0.067603349685669,0.015892149880528,0.024805583059788],[0.082309737801552,-0.053571399301291,-0.059568621218204],[0.036068886518478,0.018774770200253,-0.076486445963383]],[[0.0091211292892694,-0.033165261149406,0.0080129746347666],[-0.036581471562386,0.010158058255911,0.0013696121750399],[0.053345378488302,0.063188813626766,-0.010935275815427]],[[0.029215164482594,0.010870850645006,0.10640232264996],[-0.037012360990047,0.042911116033792,-0.038908366113901],[0.064857065677643,0.010972264222801,0.022518511861563]],[[-0.06060404330492,-0.0039599877782166,0.030540322884917],[-0.026698788627982,0.036528844386339,0.097802758216858],[0.097678765654564,0.017341418191791,0.0069580655544996]],[[0.038318641483784,0.032722264528275,0.035928018391132],[0.02767700329423,0.075990229845047,0.07383120059967],[-0.018496237695217,0.030010467395186,0.010183886624873]],[[-0.02808734588325,-0.010214541107416,0.036753263324499],[-0.083370566368103,0.013237002305686,-0.057377211749554],[0.091398790478706,0.012322451919317,0.010936417616904]],[[0.031896837055683,-0.079510234296322,-0.096395805478096],[-0.047570165246725,-0.050993707031012,-0.021432768553495],[0.043229632079601,-0.046178299933672,-0.072142384946346]],[[-0.021146032959223,-0.004383509978652,-0.040843408554792],[-0.079871952533722,0.037006385624409,-0.034546349197626],[0.053821157664061,-0.038449570536613,0.014106696471572]],[[0.055103980004787,0.032496564090252,0.04678688198328],[0.1339251101017,0.036356523633003,0.035172928124666],[0.075817950069904,-0.023735405877233,0.01126816123724]],[[-0.11168075352907,-0.06168420612812,0.032126754522324],[-0.046932965517044,0.090755119919777,-0.00071026495425031],[0.031358048319817,-0.02308289706707,0.0083942795172334]],[[-0.013836853206158,-0.0055564283393323,-0.042038898915052],[0.025084942579269,-0.07802976667881,-0.14401905238628],[-0.074705839157104,-0.032392781227827,0.007283478975296]],[[0.021178131923079,-0.010708310641348,0.092826709151268],[0.046154752373695,0.050902716815472,0.094534695148468],[0.011449120007455,-0.0085754618048668,0.036900408565998]],[[0.05407252535224,0.0069591216742992,0.020662441849709],[0.040741723030806,0.0058730393648148,-0.078891836106777],[0.054641306400299,0.012731602415442,-0.032229345291853]],[[-0.020740563049912,0.081088364124298,0.05999967828393],[0.043334405869246,0.0014631357043982,0.060330759733915],[0.044049710035324,0.13216552138329,0.10729184746742]],[[0.030192481353879,-0.061014942824841,-0.046343293040991],[-0.080417610704899,0.027355875819921,0.020950622856617],[0.034448198974133,-0.053938198834658,-0.016000870615244]]],[[[0.033590234816074,-0.0093532865867019,-0.00034254183992743],[-0.012807186692953,-0.0014221681049094,0.043296821415424],[-0.046271096915007,0.052587509155273,-0.11442773044109]],[[-0.018826339393854,0.0073966854251921,0.056568529456854],[0.061000492423773,-0.0077955564484,0.029142243787646],[0.01519672293216,0.073530159890652,-0.041372999548912]],[[0.040148299187422,0.035965368151665,-0.056156385689974],[-0.029746022075415,0.029323702678084,-0.005851122085005],[0.0004228035104461,0.016632461920381,0.044958900660276]],[[-0.0049793128855526,0.019740892574191,0.12064152956009],[-0.021701281890273,0.036260101944208,-0.041395839303732],[0.017275787889957,-0.03920091688633,0.025212990120053]],[[-0.0031869809608907,-0.088755339384079,-0.044894151389599],[-0.026665292680264,0.019154341891408,-0.011058747768402],[0.12068739533424,0.024821251630783,-0.050819016993046]],[[-0.069182813167572,-0.0765375867486,-0.079546704888344],[0.039081152528524,0.078864686191082,-0.025511618703604],[-0.057487096637487,0.055238366127014,0.08482600748539]],[[0.072241522371769,0.077809207141399,-0.032764498144388],[0.0065455390140414,-0.077820755541325,0.014041602611542],[-0.015638435259461,0.026082340627909,-0.0035468402784318]],[[0.017545770853758,-0.012619521468878,0.014729090034962],[0.041881553828716,0.024611283093691,-0.029850158840418],[-0.048531025648117,0.026443529874086,0.046556279063225]],[[0.0027453261427581,0.04293005540967,0.064609870314598],[-0.0198297444731,0.02969298325479,-0.00034879153827205],[0.047852374613285,0.06376913189888,0.10541935265064]],[[0.022105427458882,-0.0057114823721349,0.029578683897853],[0.070963598787785,0.13477300107479,0.038404576480389],[-0.074141353368759,0.01975298859179,0.045227106660604]],[[0.076831191778183,0.0049977549351752,0.092303559184074],[0.017750080674887,-0.0091482624411583,-0.055891513824463],[-0.0055945692583919,0.036315746605396,-0.0046399189159274]],[[0.0018865428864956,0.067849352955818,0.06880110502243],[0.090580508112907,0.023174351081252,0.044603280723095],[0.1033333465457,-0.024342341348529,-0.00057308049872518]],[[0.047299060970545,-0.031075283885002,-0.0010378110455349],[-0.035679537802935,0.017030794173479,0.1006687656045],[0.026104161515832,-0.023767720907927,-0.049724567681551]],[[0.032549228519201,-0.058099146932364,-0.0066896043717861],[0.048762734979391,0.033177319914103,0.010221652686596],[-0.010297023691237,0.027574338018894,0.094553016126156]],[[-0.025630470365286,0.065203756093979,0.021072253584862],[0.053221892565489,0.0095782307907939,0.16404883563519],[0.2162714600563,0.065819166600704,0.020188318565488]],[[0.000977732706815,0.0052211503498256,-0.025456808507442],[-0.037935346364975,-0.02249151468277,-0.084805257618427],[-0.018355578184128,-0.096380725502968,-0.046403143554926]],[[-0.047202955931425,-0.010670986957848,-0.0033447416499257],[0.0071027618832886,-0.045336585491896,0.025480633601546],[-0.13270987570286,0.0021355575881898,0.013810398057103]],[[-0.012725593522191,-0.068840116262436,-0.012894190847874],[0.030296191573143,-0.049501966685057,-0.0090090809389949],[-0.097592994570732,0.030937448143959,0.052949748933315]],[[0.014720146544278,-0.10970298945904,-0.0072220526635647],[0.011496225371957,-0.0058135981671512,0.031972005963326],[0.0281390119344,-0.095789052546024,0.0081518357619643]],[[0.016010859981179,-0.016692524775863,-0.00099389534443617],[0.014231138862669,-0.022930633276701,0.03580654039979],[0.037673436105251,-0.024335838854313,0.031237058341503]],[[-0.038833398371935,0.058299206197262,-0.0084324078634381],[-0.043054077774286,0.072192214429379,-0.081431433558464],[0.013739679940045,0.065767072141171,0.032451823353767]],[[0.066070221364498,0.028953570872545,0.017855785787106],[-0.085970804095268,0.11125976592302,-0.0032577929086983],[0.066873736679554,-0.020798517391086,-0.041521348059177]],[[-0.084440067410469,-0.037773735821247,-0.053255945444107],[-0.01088388543576,0.070867858827114,-0.030907100066543],[0.1197996661067,0.051360830664635,0.061261177062988]],[[-0.014893068000674,0.041586257517338,-0.035441901534796],[-0.009673148393631,-0.012633731588721,0.012999091297388],[0.0099147958680987,0.027387954294682,-0.063212372362614]],[[0.074632167816162,0.079662196338177,-0.0044598877429962],[-0.018494641408324,0.014884631149471,0.069422863423824],[0.051793321967125,-0.038845889270306,-0.046253696084023]],[[-0.10777135193348,0.030412198975682,0.067798666656017],[0.10702284425497,0.061631135642529,-0.015163838863373],[0.032733112573624,-0.040937952697277,0.037591695785522]],[[0.080562151968479,0.075647041201591,-0.046004164963961],[0.046972692012787,-0.082835555076599,-0.014884613454342],[-0.013313481584191,0.016203969717026,0.012563745491207]],[[0.00063331262208521,-0.056683909147978,0.012403707951307],[0.1505433768034,0.086365334689617,0.05187314376235],[-0.0469243042171,0.047191798686981,0.050502847880125]],[[-0.15782658755779,0.065436705946922,-0.0024074921384454],[-0.019899994134903,-0.0015024360036477,0.024915713816881],[0.081884481012821,0.052754282951355,0.030495032668114]],[[-0.0083596557378769,-0.009700994938612,0.019813654944301],[0.057587251067162,0.0013165150303394,0.016473134979606],[0.062994800508022,0.038570422679186,-0.013375813141465]],[[-0.030139245092869,-0.020075445994735,-0.034363329410553],[0.056131266057491,-0.00092679786030203,0.04797350615263],[0.028699984773993,-0.026919066905975,-0.014732311479747]],[[0.031674936413765,0.069352872669697,-0.02202020958066],[-0.048034437000751,-0.025019926950336,0.03260475024581],[-0.020089542493224,0.024510852992535,-0.087898351252079]],[[-0.0083638112992048,0.017257573083043,0.027998231351376],[0.049058895558119,-0.068555779755116,0.10423167794943],[-0.0037718317471445,0.033864825963974,0.02046331577003]],[[0.040093351155519,0.0064557543955743,0.058408908545971],[0.0061173951253295,-0.0074407965876162,0.031994547694921],[-0.023023249581456,0.032887067645788,0.0013348374050111]],[[-0.019732980057597,0.032977920025587,0.054539278149605],[0.039612334221601,0.034595225006342,-0.068712167441845],[-0.025406384840608,-0.037959787994623,0.039966724812984]],[[0.030084392055869,0.012882918119431,-0.077486142516136],[-0.0083152232691646,-0.025846591219306,0.019216027110815],[-0.0077174338512123,0.028202058747411,-0.059532847255468]],[[0.0053660329431295,-0.027124051004648,-0.083226099610329],[0.020614642649889,-0.026951437816024,-0.082068793475628],[-0.10281984508038,-0.018293021246791,0.033900577574968]],[[-0.036028064787388,0.05159654468298,0.019214700907469],[-0.023393435403705,0.10008675605059,0.070430494844913],[-0.056982103735209,0.012036242522299,-0.014536977745593]],[[0.035026773810387,0.025911524891853,-0.010589034296572],[0.033647041767836,-0.053963076323271,0.082509361207485],[0.016293436288834,0.011006822809577,-0.053925883024931]],[[-0.097234211862087,0.0065109226852655,0.10763493925333],[-0.086368374526501,0.0027746595442295,-0.029970677569509],[-0.016249276697636,-0.014094796031713,0.069928079843521]],[[-0.029641339555383,-0.086147367954254,0.010449688881636],[-0.0054725352674723,-0.082850731909275,0.042150337249041],[0.017062768340111,0.0029230068903416,-0.069027796387672]],[[-0.053131949156523,-0.0020528777968138,-0.017954980954528],[0.042744379490614,-0.035207632929087,0.035982325673103],[-6.8482033384498e-05,0.037878472357988,0.013245558366179]],[[0.026753401383758,0.027750488370657,0.011740130372345],[0.062531366944313,0.033122673630714,0.020000213757157],[-0.012888262048364,0.036637246608734,-0.029739905148745]],[[-0.0035792607814074,-0.015554734505713,-0.019136644899845],[-0.05237253382802,0.039624348282814,0.037280887365341],[-0.016933109611273,0.082060128450394,-0.035824120044708]],[[-0.011425094678998,0.081730395555496,0.043092776089907],[-0.013265018351376,0.085565738379955,0.003063713433221],[0.045544695109129,0.056578628718853,-0.010272674262524]],[[0.0094385128468275,0.073523581027985,0.098294384777546],[0.072769962251186,0.089901179075241,0.026408633217216],[0.012761308811605,-0.030751207843423,-0.002834846265614]],[[0.033823255449533,0.054589055478573,0.041526958346367],[0.0090447952970862,0.068570174276829,0.018323833122849],[-0.012597880326211,0.03779100254178,0.022888209670782]],[[-0.043642576783895,0.048202466219664,0.0087571190670133],[0.012639058753848,-0.02659467048943,0.041819047182798],[-0.021732335910201,0.02152855694294,0.082147173583508]],[[-0.01335162203759,0.051062036305666,-0.0034273257479072],[-0.068632408976555,0.043972741812468,0.033187314867973],[0.010024322196841,0.012026239186525,0.036772135645151]],[[0.03930402547121,0.022585537284613,0.013634859584272],[-0.034593649208546,-0.03452418372035,0.034897655248642],[0.019828330725431,-0.00036566067137755,-0.032249867916107]],[[-0.059842638671398,0.019735956564546,0.071071058511734],[0.010127088055015,-0.043384119868279,-0.044589336961508],[0.099956713616848,0.028326861560345,-0.0033773076720536]],[[0.040911629796028,0.0042395684868097,-0.067848406732082],[-0.014524941332638,-0.0016044720541686,0.079376928508282],[-0.03670359775424,0.031842954456806,-0.046472728252411]],[[-0.11708447337151,0.0018593806307763,-0.0077214012853801],[0.03471639379859,0.014854264445603,0.085291624069214],[0.0070466874167323,-0.066337533295155,-0.014796518720686]],[[0.058596961200237,0.020598275586963,0.099209226667881],[0.066719986498356,-0.021418688818812,0.043285384774208],[0.053522430360317,-0.063617847859859,-0.047215431928635]],[[0.034833010286093,0.030606180429459,0.045175898820162],[-0.098782129585743,-0.033762138336897,0.041004005819559],[0.032150097191334,0.024063549935818,-0.060363333672285]],[[-0.064212888479233,6.5576779888943e-05,0.0046656941995025],[0.0323351547122,-0.029658086597919,-0.029180699959397],[0.02729732170701,0.0037179191131145,0.028599238023162]],[[0.047225408256054,-0.090992517769337,-0.052020195871592],[0.028787972405553,-0.0069402293302119,0.049553584307432],[-0.048470519483089,0.038272880017757,-0.028489865362644]],[[-0.0076759411022067,0.00010012507846113,0.0060155438259244],[-0.0087486347183585,-0.0085614863783121,-0.055016443133354],[-0.01996248960495,-0.07178883254528,0.010713101364672]],[[0.046864986419678,-0.016433412209153,0.033286217600107],[0.031328056007624,-0.014281370677054,0.045012716203928],[0.11182583123446,0.02375678345561,0.0060029751621187]],[[0.055748965591192,0.0075512328185141,-0.091918922960758],[0.016822695732117,-0.0094059072434902,0.023889072239399],[0.0039880722761154,0.035240951925516,-0.021303575485945]],[[0.028562717139721,-0.035474248230457,0.0073358342051506],[0.002432230161503,0.023140102624893,0.072577200829983],[0.028336042538285,0.058541398495436,0.020569605752826]],[[-0.019267316907644,0.046140469610691,0.019252218306065],[-0.00029958866070956,-0.016697751358151,-0.033998440951109],[0.024687310680747,0.030179573222995,-0.00075585138984025]],[[-0.050218097865582,0.0087190875783563,-0.032582879066467],[-0.039706133306026,0.065914526581764,-0.020827353000641],[-0.004637785255909,0.034435842186213,0.019403759390116]],[[0.066519029438496,-0.0030323327519,0.0063503589481115],[0.011474753729999,0.03852828219533,-0.013582944869995],[0.038492731750011,-0.0014851490268484,0.026361992582679]],[[-0.028606127947569,0.020924996584654,-0.0712845697999],[0.0038743307814002,0.0045277746394277,0.040051080286503],[0.090047538280487,0.073782667517662,-0.034269437193871]],[[0.028308417648077,-0.0080111566931009,0.13868688046932],[-0.0060553285293281,-0.054079405963421,-0.08794678747654],[0.047072965651751,-0.028634045273066,-0.015466708689928]],[[0.069593980908394,0.076124995946884,0.004252415150404],[0.042503569275141,0.096378810703754,-0.014717932790518],[0.085615560412407,0.054196547716856,0.021186532452703]],[[0.056700583547354,0.052359335124493,0.050652217119932],[0.11564738303423,-0.020846636965871,0.035633038729429],[0.044219329953194,0.038676042109728,0.036271505057812]],[[-0.025931334123015,-0.025409188121557,0.0092482399195433],[-0.051397185772657,-0.071022547781467,-0.014364191330969],[0.015216892585158,-0.013700750656426,0.028917005285621]],[[-0.019245021045208,0.018558634445071,-0.023173782974482],[-0.029336750507355,0.11688742041588,-0.020328959450126],[-0.013012901879847,0.046097483485937,-0.034231096506119]],[[-0.0492755882442,-0.037904892116785,-0.12169671803713],[-0.019169379025698,0.049540564417839,0.047754757106304],[0.032056819647551,-0.01888258382678,-0.072050735354424]],[[-0.023323496803641,0.00681311218068,0.034683223813772],[0.045857451856136,0.027641464024782,-0.06124858930707],[-0.012170194648206,0.049299638718367,-0.041410882025957]],[[0.011525431647897,-0.013626831583679,-0.0024950543884188],[0.026254588738084,0.10729899257421,0.059356357902288],[0.018869588151574,0.047335047274828,-0.024526834487915]],[[0.02461738884449,0.011000351980329,0.01936300098896],[0.065383523702621,0.020042276009917,0.006129814311862],[-0.016198676079512,0.061750434339046,-0.069729253649712]],[[-0.018380831927061,0.048402700573206,-0.056489165872335],[0.070290423929691,0.0037094347644597,-0.075517043471336],[-0.036503288894892,-0.029824733734131,-0.042077247053385]],[[0.0030348969157785,0.062995761632919,-0.021038601174951],[0.043944884091616,0.018349383026361,-0.022798109799623],[-0.067179337143898,0.071494199335575,-0.066954202950001]],[[0.027955794706941,-0.059720449149609,0.035085368901491],[-0.018718702718616,0.029994981363416,-0.01957038603723],[-0.034333128482103,0.022389037534595,0.0043041994795203]],[[0.025589130818844,0.035320911556482,0.01544229965657],[0.0048982687294483,0.10885892808437,-0.037343200296164],[0.10358388721943,-0.022905774414539,-0.017135405912995]],[[0.086807489395142,-0.029074924066663,0.065076731145382],[-1.0973669759551e-06,-0.0062142633832991,0.019414011389017],[-0.020792363211513,-0.037128910422325,0.048986949026585]],[[-0.12013481557369,-0.017308389768004,0.044287499040365],[0.019047876819968,0.016621550545096,0.054959006607533],[-0.01355317234993,-0.049814727157354,-0.032656904309988]],[[0.032731384038925,-0.013049203902483,0.029432605952024],[-0.049647659063339,-0.049507699906826,0.087729707360268],[-0.019820846617222,-0.035515613853931,0.0074632386676967]],[[0.031905807554722,-0.046471331268549,0.075924307107925],[0.040358059108257,-0.073245227336884,0.093323975801468],[-0.045943416655064,-0.081835225224495,-0.064113460481167]],[[0.046579632908106,0.073218524456024,-0.021953521296382],[-0.055423926562071,-0.019521556794643,0.069881111383438],[0.12377584725618,0.032779321074486,-0.054913479834795]],[[0.030347961932421,0.0056390659883618,-0.00071886769728735],[-0.0017753500724211,0.032482601702213,0.029501473531127],[-0.0012131371768191,0.066533610224724,-0.030392246320844]],[[-0.066589958965778,0.045110430568457,0.018259296193719],[-0.032335840165615,-0.044428281486034,0.046509623527527],[0.026979407295585,-0.029908096417785,-0.022267695516348]],[[-0.083719275891781,-0.066916219890118,0.035757217556238],[-0.059249453246593,-0.045057974755764,-0.019928542897105],[-0.022088784724474,0.015352634713054,-0.010667391121387]],[[-0.069066852331161,0.068315900862217,-0.064269348978996],[-0.04856001585722,0.067903824150562,-0.035895712673664],[0.012577337212861,-0.028503235429525,-0.10964392870665]],[[0.054686613380909,-0.069359712302685,0.036408945918083],[0.11564312875271,0.061606138944626,0.10858246684074],[0.052031502127647,-0.015724902972579,-0.014352661557496]],[[0.054225377738476,-0.021004347130656,-0.035858817398548],[-0.018041284754872,-0.084132663905621,0.043004259467125],[-0.0018793204799294,0.016909502446651,0.0026239096187055]],[[-0.055505104362965,0.043093960732222,-0.045111503452063],[0.0074510360136628,0.00097069714684039,0.046345505863428],[-0.0032193209044635,0.012203480117023,-0.0061011356301606]],[[-0.0060252682305872,0.053447790443897,-0.00057521829148754],[-0.013503544963896,0.019669095054269,-0.027695761993527],[0.025781890377402,0.031683325767517,-0.016826849430799]],[[-0.027206264436245,-0.0062768654897809,0.030615700408816],[-0.020838519558311,0.10155506432056,0.023208132013679],[0.0028900494799018,0.042460322380066,0.0054273121058941]],[[0.0058339429087937,-0.076260536909103,-0.0080687012523413],[0.0040937848389149,-0.018559500575066,0.030900401994586],[0.0043161334469914,0.016003238037229,-0.017058944329619]],[[-0.014647417701781,-0.014008897356689,0.012881005182862],[0.043665267527103,-0.0044978060759604,0.021610833704472],[0.022790329530835,-0.0063497205264866,-0.0025662702973932]],[[0.0091688968241215,-0.0043736342340708,0.0070065069012344],[-0.083414174616337,-0.050350684672594,0.016615690663457],[-0.06933755427599,0.10449314117432,0.056192599236965]],[[0.040408574044704,-0.06420487165451,0.033959534019232],[0.034928619861603,0.032091286033392,-0.0071686208248138],[0.040848437696695,0.1338238120079,0.045707903802395]],[[-0.036725759506226,0.0092676766216755,0.0057776104658842],[0.039523407816887,0.01446086820215,-0.0093646766617894],[0.04077247902751,0.087698452174664,0.022620873525739]],[[0.014150469563901,0.037130683660507,0.025668127462268],[-0.045415915548801,0.025100227445364,0.0023999812547117],[0.14711426198483,0.014985500834882,-0.024600852280855]],[[-0.031008379533887,-0.087415918707848,0.046792216598988],[0.0091842608526349,0.084747344255447,0.0033244458027184],[0.028610602021217,-0.083391644060612,0.077196680009365]],[[-0.0015084424521774,0.021670076996088,0.10086919367313],[0.042194101959467,-0.0053860428743064,0.0081134047359228],[0.042368289083242,-0.00098303321283311,0.035162542015314]],[[0.01348321326077,-0.013948849402368,-0.073444202542305],[0.0030041991267353,-0.05611889064312,-0.042660042643547],[0.093642078340054,-0.0040880856104195,0.030234925448895]],[[0.064588956534863,0.016394935548306,0.072907857596874],[0.03180717676878,-0.015855124220252,0.023999202996492],[0.02096183039248,-0.00058724556583911,-0.053363550454378]],[[0.032772839069366,-0.067912340164185,0.018832636997104],[-0.021909954026341,0.005894539412111,0.010273584164679],[0.13379779458046,0.037183299660683,0.023092402145267]],[[0.0055806315504014,0.047952193766832,-0.045480359345675],[0.030324021354318,-0.030322302132845,-0.046185880899429],[0.023068077862263,0.14898030459881,-0.078257612884045]],[[0.034311056137085,0.061568561941385,-0.014075151644647],[-0.03654195740819,-0.052470546215773,0.045908484607935],[-0.036820895969868,-0.0059369187802076,0.056908559054136]],[[0.058571241796017,-0.018155440688133,-0.028862362727523],[-0.025626854971051,0.015507796779275,0.03874833509326],[-0.037449527531862,0.077054463326931,-0.018961656838655]],[[-0.064263947308064,-0.016183322295547,-0.053220555186272],[-0.011165503412485,-0.041254293173552,-0.020175110548735],[0.086371682584286,0.074672535061836,0.02106779627502]],[[-0.0061524324119091,0.061530835926533,0.03242864459753],[0.036227058619261,0.038235682994127,-0.11046304553747],[0.030878836289048,0.02851889282465,-0.11657635122538]],[[0.058516852557659,0.0054602269083261,0.0058800540864468],[0.031251136213541,0.0458091981709,0.033003602176905],[0.11278827488422,0.032398995012045,-0.018868286162615]],[[-0.037443645298481,0.026979541406035,-0.047964878380299],[-0.071978650987148,-0.036137886345387,-0.012437390163541],[0.024250786751509,0.080134958028793,0.073852546513081]],[[-0.017389455810189,-0.035617534071207,-0.031616296619177],[-0.021428305655718,-0.045560956001282,0.072105437517166],[0.061015050858259,0.051024150103331,-0.072815552353859]],[[0.031807221472263,-0.0038425964303315,0.021201154217124],[-0.020608665421605,0.0014821940567344,-0.042741190642118],[-0.0014758158940822,0.038454975932837,0.030814081430435]],[[0.11971135437489,0.03275865316391,-0.047506231814623],[-0.022211980074644,0.059138707816601,-0.010799610987306],[-0.023974433541298,-0.049537479877472,0.019653769209981]],[[0.018697910010815,-0.037912059575319,0.095034502446651],[-0.063115485012531,-0.078414402902126,0.02851265668869],[-0.018221080303192,0.03283004462719,0.001448726747185]],[[-0.037028338760138,0.035941753536463,0.0066190315410495],[-0.008533351123333,0.032879684120417,0.011542920954525],[0.025477815419436,-0.013538032770157,0.050123453140259]],[[-0.0094689894467592,-0.083356305956841,-0.058066755533218],[-0.024127090349793,0.035575095564127,-0.092038527131081],[-0.031936697661877,-0.055833086371422,0.012392342090607]],[[0.051093533635139,0.043307017534971,0.039397735148668],[-0.059159889817238,0.018533254042268,0.036012105643749],[-0.0027346427086741,0.068249456584454,0.023862406611443]],[[-0.056322541087866,0.047382462769747,0.041363183408976],[-0.0098815727978945,0.028804821893573,0.019963832572103],[0.066790528595448,-0.027560219168663,-0.052593719214201]],[[-0.04826145991683,-0.0051157707348466,-0.028313482180238],[-0.014025962911546,0.021706558763981,0.025037076324224],[0.067409873008728,0.0023912477772683,0.021556116640568]],[[-0.048129502683878,-0.036020133644342,0.026034383103251],[-0.099333390593529,-0.045732114464045,-0.13962805271149],[-0.012244183570147,0.037509974092245,0.020619822666049]],[[-0.03238720074296,0.095504783093929,-0.024174857884645],[-0.019522512331605,0.062949411571026,-0.014006678014994],[0.0098382299765944,-0.033915352076292,-0.0018491303781047]],[[0.036958932876587,0.037109542638063,-0.020143248140812],[0.030227947980165,-0.017691707238555,0.017831394448876],[0.09148695319891,0.029323922470212,-0.054223272949457]],[[-0.019077854231,0.00048379343934357,0.032128501683474],[0.15304338932037,0.021314846351743,-0.028137568384409],[0.00056331872474402,-0.023102832958102,0.00025472196284682]],[[0.02777274698019,0.052846804261208,-0.00083010725211352],[-0.027494210749865,0.061425689607859,-0.034186396747828],[0.062199179083109,-0.0055904467590153,-0.068200536072254]],[[-0.010675045661628,0.03385616093874,0.04619212448597],[0.034550260752439,0.056869886815548,0.028953721746802],[0.037244137376547,-0.014021228067577,0.030105952173471]],[[0.029693311080337,0.03853989765048,0.065148174762726],[0.045412044972181,-0.027025520801544,0.032386496663094],[-0.051547430455685,-0.034401502460241,0.0032894504256546]],[[0.051329642534256,0.09567516297102,0.02308945544064],[-0.03676075860858,-0.089003801345825,0.060538124293089],[0.047397371381521,0.044163342565298,0.0049100727774203]],[[-0.019098546355963,0.025967333465815,0.021155053749681],[-0.014363299123943,-0.011444230563939,0.054191924631596],[-0.016579378396273,-0.047649640589952,-0.076799400150776]]],[[[0.0086835008114576,-0.028950493782759,0.067251555621624],[-0.0043968274258077,0.030181150883436,-0.015857610851526],[0.0036188773810863,-0.020638825371861,0.041747782379389]],[[-0.045117549598217,0.06349091976881,0.0018130952958018],[0.0080174095928669,0.043980829417706,-0.013054336421192],[0.023823181167245,-0.024034896865487,0.0074023688212037]],[[-0.022625595331192,0.059402763843536,-0.064106747508049],[-0.0031501583289355,-0.020521448925138,-0.016467059031129],[0.092069320380688,0.018724996596575,-0.042722262442112]],[[0.0016371490200981,0.014262348413467,0.048484221100807],[0.051526609808207,-0.0091310935094953,0.10893392562866],[0.044277094304562,-0.012258486822248,-0.018010530620813]],[[-0.011819400824606,0.024158541113138,-0.026860449463129],[-0.0026467402931303,0.023418026044965,0.017441924661398],[0.039318460971117,0.054346408694983,0.031825192272663]],[[0.02636262960732,0.023694245144725,0.043250299990177],[0.030591955408454,-0.0068230428732932,-0.019267359748483],[0.030873442068696,-0.029673544690013,-0.063964448869228]],[[0.057819176465273,0.078996010124683,-0.069392889738083],[0.020898010581732,0.047915082424879,0.025698976591229],[-0.028059778735042,0.01702805608511,-0.05649695917964]],[[0.036766242235899,-0.02281142026186,0.024543169885874],[0.04654710367322,-0.047486674040556,-0.048768565058708],[0.077246241271496,0.040989480912685,0.096250206232071]],[[-0.010405062697828,-0.001875807880424,0.016827085986733],[-0.014281652867794,-0.023296931758523,0.012314505875111],[0.059868544340134,0.045031782239676,-0.014284076169133]],[[-0.057391580194235,0.054055169224739,-0.039744898676872],[0.037660408765078,0.0069266748614609,0.0079758372157812],[0.11746022105217,-0.034584663808346,0.037476848810911]],[[-0.038491263985634,0.0032403466757387,-0.027571408078074],[-0.020811051130295,0.047108680009842,0.043747831135988],[-0.12865284085274,-0.086961418390274,-0.050368349999189]],[[-0.019306503236294,-0.03819128125906,-0.0096521815285087],[-0.053275670856237,-0.053663514554501,-0.0058823334984481],[-0.013949001207948,-0.076740495860577,0.067074500024319]],[[0.016776455566287,0.14531625807285,0.027142180129886],[-0.017728451639414,0.025877704843879,0.028006628155708],[0.031243169680238,-0.064669735729694,-0.043926313519478]],[[0.06286858022213,0.07045091688633,0.045783631503582],[-0.02055149897933,-0.035026423633099,-0.024321915581822],[-0.049405142664909,-0.03633501380682,0.037954110652208]],[[0.039614669978619,0.011242193169892,-0.064362309873104],[-0.071772731840611,0.095090880990028,-0.014973039738834],[-0.0060175764374435,0.018116829916835,0.018402934074402]],[[-0.0051396242342889,-0.05044662207365,-0.074382431805134],[-0.021524770185351,-0.028617464005947,0.019610792398453],[0.013653467409313,0.022466538473964,0.025694552809]],[[0.0070434217341244,-0.018693657591939,0.053289413452148],[0.002878702012822,0.03641652315855,-0.054233960807323],[0.0481539927423,-0.044777095317841,0.018375238403678]],[[-0.084876984357834,0.011164121329784,-0.023532984778285],[0.013158765621483,0.037981025874615,0.043988805264235],[0.035988204181194,0.012196979485452,-0.03988229110837]],[[0.052497491240501,0.00773253897205,-0.0098238196223974],[0.0088800890371203,0.041070312261581,0.030566900968552],[0.0091864019632339,0.042569871991873,-0.033323485404253]],[[-0.030367664992809,-0.071997746825218,-0.090209171175957],[0.068873465061188,-0.015303248539567,0.034577589482069],[-0.03042840026319,0.039171375334263,-0.061509855091572]],[[0.0071293096989393,-0.017400020733476,-0.040876679122448],[-0.010635824874043,0.0037892444524914,-0.014132747426629],[0.0068637826479971,-0.020563909783959,-0.059554506093264]],[[-0.0099285151809454,0.0051158792339265,0.093409784138203],[0.017469119280577,-0.08028556406498,-0.051895249634981],[0.010163219645619,-0.082011379301548,0.060142707079649]],[[0.06531485915184,-0.032099816948175,-0.012983714230359],[-0.03028223477304,-0.035829473286867,0.014122566208243],[0.050626568496227,0.0079344706609845,-0.066503815352917]],[[-0.018008137121797,-0.078040018677711,-0.011518625542521],[0.01661778241396,-0.060534659773111,1.8493228708394e-06],[-0.019376812502742,-0.0094849513843656,-0.037047483026981]],[[0.0079074297100306,0.030258430168033,-0.0071871778927743],[-0.022946337237954,0.0085420031100512,0.057445596903563],[-0.0054223272018135,0.01198541931808,-0.0074377371929586]],[[0.029230611398816,0.0057157729752362,-0.045486994087696],[0.10042779147625,0.0045308987610042,0.02764774300158],[0.076291002333164,-0.010907188989222,0.0016324445605278]],[[0.053541973233223,0.0046718590892851,0.0074495631270111],[0.022039227187634,-0.096969224512577,-0.07519519329071],[-0.014441955834627,-0.054390348494053,-0.038443636149168]],[[0.067281730473042,0.044433433562517,0.035224657505751],[-0.057438645511866,-0.056965358555317,-0.0477105230093],[-0.013680317439139,-0.081335507333279,-0.022403502836823]],[[0.018556609749794,0.026720058172941,-0.015106940641999],[-0.053508281707764,0.055709533393383,0.016939220950007],[-0.040200680494308,0.015045117586851,0.033281490206718]],[[0.036157086491585,-0.087464347481728,0.0078263618052006],[0.021596383303404,-0.052537206560373,-0.010032840073109],[0.017850644886494,0.025323277339339,-0.021053420379758]],[[-0.068002298474312,-0.029144937172532,0.023477371782064],[-0.010394003242254,0.043822526931763,0.0057049016468227],[-0.014956688508391,-0.022710546851158,-0.022717971354723]],[[-0.047336272895336,0.074292935431004,0.032799627631903],[0.06449194252491,0.0065630180761218,0.01582096517086],[-0.01992523483932,0.016065923497081,-0.025122333317995]],[[0.026414263993502,-0.016670968383551,-0.048951186239719],[0.069897584617138,-0.019005941227078,-0.0013335840776563],[-0.011517819948494,0.025869874283671,-0.1003336161375]],[[0.073659032583237,-0.040308892726898,0.053791128098965],[0.018615322187543,-0.028331959620118,-0.050110001116991],[-0.02343924343586,-0.041649587452412,-0.050368878990412]],[[-0.07246807962656,-0.041931144893169,0.044273961335421],[0.0083698593080044,-0.0017276555299759,0.011456223204732],[0.025950703769922,-0.0098255164921284,0.011299554258585]],[[-0.044512029737234,0.0014421071391553,0.023378774523735],[0.019364770501852,0.010843003168702,0.034065544605255],[0.010806648060679,-0.0065304543823004,0.085286937654018]],[[0.001268086140044,-0.038104746490717,-0.010965650901198],[-0.054694555699825,-0.009375830180943,0.013755715452135],[-0.031908925622702,0.098260052502155,0.01840010471642]],[[0.057867456227541,-0.019968204200268,-0.041663572192192],[0.026298036798835,0.017442923039198,0.038518086075783],[0.01349338889122,0.02042680606246,-0.032020680606365]],[[0.033987656235695,-0.056588027626276,0.00518698990345],[0.019416999071836,0.04038792848587,-0.078225679695606],[0.0039492887444794,-0.054120250046253,-0.0035997391678393]],[[-0.020107882097363,-0.001174122444354,0.025586303323507],[0.051030308008194,0.002084419131279,0.047455307096243],[0.045263674110174,-0.016407115384936,-0.035475287586451]],[[0.021112659946084,0.072983473539352,0.05847355350852],[0.012191499583423,-0.051409713923931,-0.0039339736104012],[0.052754167467356,-0.051291652023792,-0.03354762122035]],[[0.061678998172283,-0.035289447754622,0.014993051066995],[0.0010250745108351,-0.0028985680546612,-0.024285515770316],[0.015958089381456,0.006682557053864,-0.025697821751237]],[[0.061460319906473,0.0109325600788,0.011635019443929],[-0.026503683999181,0.018066240474582,-0.033320520073175],[0.045956406742334,0.0027712322771549,-0.014190183021128]],[[-0.066353611648083,-0.036432441323996,-0.02871210873127],[-0.082404963672161,-0.010444609448314,-0.063143238425255],[-0.049164716154337,0.051592614501715,0.061575710773468]],[[0.062058832496405,-0.0053626834414899,0.031423598527908],[-0.036521185189486,-0.03343116492033,-0.007966018281877],[0.029003709554672,-0.064893491566181,0.0094159264117479]],[[-0.052152063697577,-0.0042166970670223,0.032839931547642],[-0.086134441196918,0.028919426724315,0.025200990960002],[-0.073656313121319,0.010173562914133,-0.024273380637169]],[[0.043467704206705,0.041531834751368,-0.0062013589777052],[-0.031524445861578,-0.13969933986664,-0.0028531206771731],[0.010499890893698,-0.018950002267957,0.0044383741915226]],[[0.0044833575375378,0.024070862680674,-0.023190204054117],[0.025000441819429,-0.050016287714243,0.091872900724411],[-0.024259988218546,0.051724877208471,0.085198722779751]],[[-0.050678759813309,-0.041537076234818,-0.050036370754242],[0.059348233044147,-0.031938303261995,0.031607817858458],[0.019924463704228,0.038130655884743,0.027119612321258]],[[0.043098617345095,-0.0082450313493609,-0.0067789563909173],[-0.021967120468616,-0.016085250303149,0.048668589442968],[0.018739178776741,0.021004566922784,-0.025511983782053]],[[-0.094295561313629,0.02532134577632,0.0012564409989864],[0.06222689896822,-0.082270905375481,-0.064197696745396],[0.0038107126019895,0.039334151893854,-0.061366595327854]],[[0.013065658509731,0.02191299572587,0.028321109712124],[-0.001782950013876,0.00020227817003615,-0.062399111688137],[0.011202122084796,0.0036731022410095,-0.023926543071866]],[[0.011971097439528,0.046491734683514,0.14189517498016],[-0.015445911325514,0.021160962060094,-0.082882210612297],[-0.020614037290215,0.031830091029406,-0.0086084641516209]],[[0.089231751859188,-0.016378525644541,0.0016497536562383],[-0.043080069124699,0.066420458257198,0.022032957524061],[-0.074793942272663,0.043790251016617,-0.00071521627251059]],[[0.027131905779243,0.021166933700442,-0.01928929798305],[-0.045836824923754,-0.038273967802525,0.10843659937382],[0.024834483861923,-0.040129747241735,-0.0047805667854846]],[[-0.047849174588919,-0.035592962056398,-0.029570775106549],[0.0087551241740584,-0.070453718304634,-0.033050820231438],[0.033059608191252,0.012000458315015,0.03479951992631]],[[0.018363744020462,0.036614239215851,-0.007751124445349],[0.032294742763042,0.037920411676168,0.058016415685415],[-0.044837325811386,0.013369323685765,0.0190515127033]],[[0.056433439254761,0.034759406000376,-0.027063684538007],[-0.017708709463477,0.011331937275827,-0.0084240399301052],[-0.0043608024716377,-0.013400873169303,-0.0047613326460123]],[[-0.014563469216228,-0.07326927781105,0.05413943529129],[-0.011929401196539,0.0049566454254091,-0.022764191031456],[0.079945310950279,0.078244745731354,-0.010472130961716]],[[-0.069700442254543,-0.024769771844149,-0.019136754795909],[0.060973718762398,-0.029337411746383,0.035375770181417],[0.018769608810544,-0.10090761631727,0.037849940359592]],[[0.024729065597057,0.010678674094379,-0.13892412185669],[-0.064582452178001,-0.030944779515266,0.016882058233023],[0.017694359645247,-0.033662721514702,-0.025420190766454]],[[0.07310850918293,0.02997437492013,-0.020981376990676],[-0.054657321423292,-0.06016868725419,-0.055624723434448],[-0.024077197536826,0.034445058554411,0.054010033607483]],[[0.004161742515862,-0.010777969844639,-0.035125806927681],[0.050741255283356,-0.023436183109879,-0.031306102871895],[0.0053933393210173,-0.013229487463832,0.058431349694729]],[[0.0024578797165304,0.054606687277555,-0.0044302567839622],[-0.0030984431505203,0.027827369049191,0.023963624611497],[-0.040340907871723,0.0068840649910271,-0.016930835321546]],[[0.052577324211597,0.017313100397587,0.045418187975883],[-0.016140917316079,-0.014645482413471,-0.034546565264463],[0.016745919361711,0.010165381245315,-0.0086637306958437]],[[-0.019170969724655,0.041214097291231,-0.098215781152248],[0.035690542310476,0.070162519812584,-0.029032174497843],[0.0065228724852204,0.01409116294235,-0.11649129539728]],[[0.022455239668489,0.050081100314856,0.014670157805085],[0.086048476397991,0.010898668318987,0.038675677031279],[0.020266501232982,-0.0082967998459935,-0.0069684740155935]],[[0.028618793934584,0.025508007034659,0.014324076473713],[0.070492058992386,-0.048751246184111,0.078950360417366],[-0.035169132053852,0.033149808645248,-0.01307684648782]],[[-0.036440070718527,-0.003627791069448,-0.036924116313457],[0.01068649161607,0.0099858175963163,-0.040788810700178],[-0.035114847123623,-0.037392657250166,-0.037707585841417]],[[-0.043519448488951,-0.053872991353273,-0.041616648435593],[-0.015474998392165,-0.029340485110879,-0.025385085493326],[0.015281368978322,0.021699907258153,0.030024575069547]],[[-0.023651903495193,-0.049812741577625,-0.081454284489155],[-0.018177045509219,0.036481540650129,-0.042162764817476],[0.035328149795532,0.02363190241158,-0.027864785864949]],[[0.022885041311383,-0.03200251609087,0.035966094583273],[0.007441938854754,0.051536854356527,0.041408501565456],[0.038726519793272,0.01342293433845,-0.017290338873863]],[[-0.086793504655361,0.013750158250332,-0.029866164550185],[-0.039125930517912,-0.026838010177016,-0.0010730805806816],[0.043263383209705,-0.0064529762603343,-0.049656938761473]],[[-0.034930054098368,-0.031451690942049,-0.058031145483255],[-0.022135078907013,-0.032445978373289,-0.0062834015116096],[0.0968406945467,0.048918135464191,0.024591669440269]],[[0.04894408211112,0.019427131861448,0.031161703169346],[0.017600402235985,-0.0432408452034,-0.04063805565238],[-0.025903217494488,0.039070975035429,-0.0063289045356214]],[[-0.057455316185951,-0.014237446710467,0.03557351231575],[-0.028817195445299,0.099404625594616,-0.035117983818054],[0.087862633168697,0.035236533731222,0.12346046417952]],[[0.033007886260748,0.0093048820272088,-0.014911267906427],[-0.023998161777854,0.014359160326421,0.012956800870597],[-0.10619705170393,0.022572873160243,-0.010652818717062]],[[0.017658548429608,0.030051078647375,0.019587961956859],[-0.045200664550066,0.015522345900536,0.0050702067092061],[-0.027857448905706,0.0020375524181873,0.013965710997581]],[[-0.0018923316383734,0.02797700278461,0.017015773802996],[-0.029134185984731,-0.01449903473258,0.027168232947588],[0.029388969764113,0.035165131092072,-0.021087540313601]],[[-0.0069350148551166,-0.034951444715261,0.023113261908293],[-0.038915902376175,0.055224176496267,-0.028368916362524],[-0.014820636250079,-0.035196654498577,0.017175996676087]],[[-0.020456817001104,0.027451245114207,0.014988123439252],[0.064768046140671,0.027000540867448,-0.059444200247526],[0.067161820828915,0.027287600561976,0.040676634758711]],[[-0.023345816880465,-0.087464720010757,-0.021037174388766],[-0.01992654427886,0.0248501021415,0.010387101210654],[-0.035781845450401,-0.05058054625988,0.027894509956241]],[[-0.018816780298948,-0.023687748238444,0.037625480443239],[-0.1183662712574,-0.044424939900637,-0.0055453651584685],[0.042224213480949,-0.014837528578937,0.017673034220934]],[[-0.02427358366549,-0.0010640614200383,0.01491872407496],[-0.039831168949604,0.059503555297852,0.028371028602123],[0.0072922646068037,-0.013437724672258,0.022159961983562]],[[-0.021921932697296,0.068310752511024,0.056550957262516],[-0.024888822808862,-0.0011603966122493,-0.068840585649014],[0.032923571765423,-0.068151876330376,-0.048380587249994]],[[-0.03381984308362,-0.0081516709178686,-0.0481869392097],[0.032511059194803,0.023399030789733,-0.029315626248717],[0.073785021901131,0.0058778948150575,0.018968969583511]],[[-0.080448001623154,0.010198354721069,-0.0026996149681509],[0.013627943582833,-0.047232750803232,0.00026801065541804],[0.0051943273283541,-0.015048001892865,-0.038046184927225]],[[-0.09620738774538,0.015651000663638,0.025601666420698],[0.024741414934397,-0.0040262504480779,-0.01295022200793],[0.002256017876789,-0.040990833193064,-0.0074710277840495]],[[-0.017675124108791,0.027850575745106,0.010922945104539],[-0.032849535346031,-0.0077757649123669,-0.059232272207737],[0.035529885441065,0.069298811256886,0.003486319212243]],[[0.012310167774558,0.013988965190947,0.081797130405903],[-0.082072459161282,0.036950923502445,0.01199331972748],[-0.066166773438454,0.025156410411,-0.063124187290668]],[[0.0046722125262022,0.043833240866661,-0.011081047356129],[0.03972415626049,0.0603680126369,0.0035055114421993],[0.032040175050497,0.0068431608378887,-0.0051857284270227]],[[-0.042750436812639,0.015513950958848,0.0048191682435572],[-0.024146361276507,-0.018915105611086,-0.041179429739714],[-0.0090197585523129,0.059341516345739,0.018412120640278]],[[0.092989012598991,-0.029266759753227,-0.0087046334519982],[-0.041971504688263,-0.011492744088173,-0.024957098066807],[-0.0062748515047133,0.012759171426296,0.0090469429269433]],[[0.048226680606604,0.05044798925519,-0.024313941597939],[0.06207000464201,-0.059059012681246,0.041798770427704],[-0.0097761303186417,0.04112808778882,-0.027988653630018]],[[-0.030785236507654,-0.015663163736463,-0.025057317689061],[0.026826715096831,0.041951395571232,-0.0052358177490532],[0.0055700382217765,0.039352666586637,0.004513144493103]],[[0.0058663981035352,0.041749618947506,-0.069200590252876],[0.03351816162467,-0.04644313454628,-0.045769456773996],[0.059166662395,-0.044111374765635,0.050047744065523]],[[-0.0097748581320047,0.039636678993702,-0.034384116530418],[0.017285330221057,-0.077250219881535,0.0080606108531356],[0.037671621888876,0.01057366002351,0.08839412778616]],[[0.05413893610239,0.039262559264898,0.0094394367188215],[-0.021003125235438,-0.02511790022254,-0.029046438634396],[0.070413358509541,0.0048860888928175,-0.046805877238512]],[[0.0062420265749097,0.038102373480797,-0.024679830297828],[-0.083860948681831,-0.016454519703984,0.0591592900455],[-0.052570059895515,0.037160389125347,0.035322181880474]],[[0.024780029430985,0.050229534506798,-0.034947711974382],[0.058445461094379,-0.023851184174418,0.074975296854973],[-0.019474288448691,-0.083028718829155,0.10363763570786]],[[0.031820770353079,0.060599308460951,-0.047418784350157],[-0.060508817434311,0.051404472440481,-0.0046084858477116],[-0.023887047544122,-0.042949814349413,-0.025456573814154]],[[-0.069584578275681,-0.0035680446308106,0.016950475051999],[0.016422189772129,0.023673748597503,-0.040861643850803],[0.013014767318964,0.0026829200796783,-0.045698579400778]],[[0.012348677963018,0.014256327413023,-0.048636145889759],[0.016010718420148,0.056029498577118,0.0080890813842416],[0.039434395730495,-0.044371426105499,0.017882246524096]],[[0.032744366675615,-0.02584988810122,-0.037606570869684],[0.018610181286931,-0.010730352252722,0.027326608076692],[0.066138364374638,-0.015755446627736,-0.017071351408958]],[[-0.022695099934936,0.078686475753784,-0.01717721298337],[1.0798874427564e-05,-0.028783090412617,-0.01333415787667],[0.073677465319633,-0.032109301537275,-0.004173984285444]],[[-0.010864485986531,-0.0032265412155539,0.041078809648752],[-0.050959773361683,0.02243953756988,0.0092377485707402],[-0.048944555222988,0.056505210697651,-0.043557621538639]],[[0.038336995989084,-0.058021448552608,0.012809161096811],[0.0078875524923205,0.015169333666563,-0.08242816478014],[-0.03898561745882,0.0059502217918634,-0.023395461961627]],[[-0.029474575072527,0.03130692243576,0.015777064487338],[0.070648863911629,0.042060539126396,0.022377384826541],[-0.01045351382345,-0.11628223210573,0.019285704940557]],[[0.012171300128102,-0.04517175629735,-0.020977335050702],[-0.0097797000780702,-0.017948839813471,-0.015172733925283],[-0.017563769593835,0.0280333571136,0.025444207713008]],[[0.0475745908916,-0.068250231444836,-0.0040715578943491],[-0.087377093732357,-0.047825153917074,-0.0096050361171365],[0.011553407646716,-0.086373418569565,-0.10683915019035]],[[-0.030830482020974,-0.02361449226737,0.022134386003017],[0.058719303458929,0.10119713097811,-0.050722122192383],[0.035177774727345,0.042219124734402,-0.0081092910841107]],[[0.053205002099276,0.022623892873526,-0.020637998357415],[-0.061880115419626,-0.028617197647691,-0.016445610672235],[-0.019084708765149,0.043186977505684,0.0088670961558819]],[[-0.060441948473454,0.059997301548719,-0.04033025726676],[0.054745461791754,0.00097191869281232,-0.063732989132404],[0.014610633254051,0.015271433629096,-0.049788292497396]],[[-0.029571913182735,-0.09673685580492,-0.031229674816132],[-0.046917710453272,0.012460343539715,-0.043689262121916],[0.0073621147312224,0.048682171851397,-0.051279850304127]],[[0.0015301286475733,0.017936293035746,0.034113924950361],[0.046220440417528,-0.040552116930485,0.012499306350946],[-0.043114777654409,0.022810621187091,-0.032519184052944]],[[0.0091894483193755,-0.027595406398177,-0.051391642540693],[-0.062083348631859,-0.023758362978697,-0.020788440480828],[-0.062188860028982,-0.033262766897678,0.10686372965574]],[[0.02092002145946,0.030295170843601,-0.00049097934970632],[-0.043380383402109,-0.017235107719898,0.01237203553319],[-0.014102985151112,0.052664320915937,0.061485726386309]],[[-0.017065869644284,-0.021092535927892,-0.005243209656328],[-0.040610164403915,0.0064137503504753,0.077227227389812],[-0.0026817726902664,-0.0051712365821004,0.076605275273323]],[[-0.055395014584064,0.018114913254976,-0.018529422581196],[-0.01145152002573,0.0031224808190018,-0.040318846702576],[-0.020661383867264,0.017384152859449,-0.040704015642405]],[[-0.043085049837828,-0.039302885532379,0.010891936719418],[0.013370434753597,-0.061886612325907,0.0044986321590841],[0.0051096864044666,-0.037858452647924,0.010674091987312]],[[-0.054922390729189,-0.019988844171166,0.011658005416393],[-0.01465418189764,-0.022516895085573,0.01711787097156],[-0.0014445690903813,-0.045761365443468,0.035413105040789]],[[-0.015012544579804,-0.043717697262764,-0.0087812105193734],[-0.084826916456223,0.047116506844759,-0.011183936148882],[-0.060173436999321,-0.042812652885914,-0.082945041358471]],[[-0.054617419838905,-0.012902718037367,-0.014485604129732],[-0.070244885981083,0.031972475349903,0.06557259708643],[0.033499173820019,0.056813735514879,0.052921958267689]],[[0.06219220906496,-0.049687620252371,0.020155983045697],[0.034243512898684,-0.0056416550651193,0.025891901925206],[-0.013554118573666,0.035378009080887,0.022462463006377]],[[0.042396832257509,-0.041630618274212,0.021992431953549],[0.064968340098858,0.04751743376255,0.010732847265899],[0.088784240186214,0.0048850602470338,0.078200228512287]],[[-0.048683784902096,-0.0086226994171739,0.07916209846735],[0.016652252525091,-0.0015422306023538,-0.042137935757637],[0.018595537170768,0.017651477828622,0.0042811059392989]],[[-0.038779843598604,-0.058956254273653,-0.065206609666348],[0.061326421797276,-0.046420224010944,-0.025576634332538],[0.012550848536193,-0.00068644183920696,-0.016125537455082]],[[-0.031061436980963,-0.031594302505255,-0.0042395400814712],[-0.036521732807159,-0.0094236433506012,0.034648403525352],[0.01304043084383,0.026868406683207,0.034135520458221]]],[[[-0.057213194668293,-0.0052333646453917,0.0084908632561564],[-0.083498358726501,-0.024705799296498,0.047952208667994],[-0.011964369565248,0.0022919836919755,0.076800771057606]],[[0.043222546577454,-0.016780121251941,-0.029248265549541],[0.0032169905025512,0.049888160079718,-0.0574716553092],[-0.035999812185764,0.036573845893145,-0.060516200959682]],[[-0.075583986938,-0.048911161720753,0.08089093118906],[0.011325974017382,-0.054559737443924,-0.046286929398775],[0.072714686393738,-0.052639052271843,-0.06379733979702]],[[-0.029980074614286,-0.017908077687025,0.080069340765476],[-0.00089338514953852,0.025843244045973,0.00037040445022285],[-0.047001861035824,-0.045495577156544,-0.01525164488703]],[[-0.034095339477062,-0.080375000834465,0.0079316664487123],[0.063901141285896,0.11208499222994,0.062083467841148],[-0.012949366122484,-0.0397834405303,-0.033786572515965]],[[0.0077603976242244,0.012668290175498,-0.021611750125885],[-0.074196368455887,-0.048065789043903,-0.062554024159908],[-0.0056861429475248,-0.0074328812770545,-0.035356100648642]],[[-0.080180704593658,0.017812464386225,0.055025674402714],[-0.045939687639475,0.010779837146401,-0.028559712693095],[0.0033874283544719,0.041803877800703,-0.0076871663331985]],[[0.015639377757907,-0.060513101518154,0.047623112797737],[-0.069245189428329,0.013658829033375,0.017210425809026],[-0.045806366950274,-0.016616946086287,0.039141230285168]],[[0.035151906311512,-0.093634106218815,0.041741419583559],[-0.11360910534859,0.13222636282444,0.033534478396177],[0.045342728495598,0.047757066786289,0.060124017298222]],[[0.044624641537666,-0.074275866150856,-0.010138601996005],[-0.085053026676178,-0.083816401660442,-0.046029202640057],[-0.066879771649837,0.04579309746623,0.020909003913403]],[[-0.045991197228432,0.02781524322927,-0.024393523111939],[0.017480617389083,-0.026069881394506,-0.055753778666258],[-0.049336489289999,-0.026160465553403,0.032725106924772]],[[0.0015341729158536,0.041143711656332,0.030356215313077],[0.066750027239323,-0.030891200527549,0.014318113215268],[-0.045065645128489,0.025677120313048,-0.0045327637344599]],[[-0.010231208987534,-0.024860909208655,-0.037977736443281],[0.037144992500544,-0.051816064864397,0.050883449614048],[0.073884360492229,-0.015959341078997,-0.027761409059167]],[[0.0089210299775004,-0.030060337856412,0.044609118252993],[-0.023269847035408,-0.0013132981257513,0.016273831948638],[-0.029862204566598,-0.023844793438911,0.034148409962654]],[[0.088068939745426,0.079970866441727,0.13474015891552],[-0.18633532524109,-0.095601126551628,0.076358288526535],[0.0080897798761725,-0.10088764876127,0.036639176309109]],[[0.0096602011471987,0.0025546881370246,-0.017510745674372],[0.049746543169022,0.072768956422806,-0.0054172175005078],[0.058913726359606,-0.0046474961563945,0.01991999335587]],[[0.048537507653236,0.093060746788979,-0.057268053293228],[0.025618130341172,-0.020579375326633,0.0005779373459518],[-0.052436057478189,0.032966315746307,0.023924503475428]],[[0.020639181137085,0.063362658023834,-0.050098858773708],[-0.10294079035521,0.045014947652817,0.034492626786232],[0.027403991669416,0.0077051166445017,-0.043660748749971]],[[-0.0017466102726758,-0.020627612248063,-0.052354410290718],[-0.047292940318584,0.014800627715886,-0.041801195591688],[0.0044165863655508,-0.0023263462353498,0.098108179867268]],[[0.052028406411409,-0.018116939812899,-0.042412038892508],[0.054861932992935,-0.026865839958191,-0.057362869381905],[-0.012850292026997,0.0031355016399175,-0.031303383409977]],[[0.10077448189259,-0.086220815777779,0.067463360726833],[-0.004108551889658,0.079327598214149,0.053511250764132],[-0.04504794254899,0.025226432830095,-0.0036799046210945]],[[0.040177796036005,0.073043897747993,0.0049368450418115],[-0.02681284211576,-0.058007966727018,-0.046882655471563],[-0.063249334692955,0.014320236630738,-0.10374882817268]],[[-0.02222285605967,0.0086405007168651,0.032607909291983],[0.036281537264585,-0.016022240743041,0.002625891007483],[0.039827708154917,-0.01186993252486,-0.037798266857862]],[[-0.037383336573839,0.043028552085161,-0.040114536881447],[-0.027207743376493,-0.038462679833174,-0.026092177256942],[-0.0092119453474879,-0.11501013487577,-0.0090113990008831]],[[0.022318175062537,-0.020477328449488,0.11124684661627],[-0.046637855470181,0.039271581918001,-0.021789826452732],[-0.038996569812298,0.066673465073109,-0.019051529467106]],[[0.0099233221262693,0.0021339280065149,-0.023835513740778],[-0.038030739873648,0.07600474357605,-0.021759320050478],[-0.0047991033643484,0.095318242907524,-0.052238028496504]],[[-0.035516902804375,0.094340533018112,-0.05004520341754],[0.029661828652024,-0.07364272326231,0.03380049020052],[-0.025696454569697,0.053361028432846,-0.0027857355307788]],[[-0.0025835072156042,0.056796431541443,-0.047860473394394],[-0.015839518979192,0.090211361646652,-0.083964750170708],[0.037844575941563,-0.093581229448318,0.092770464718342]],[[0.055684484541416,0.012900944799185,0.021971620619297],[-0.03345538303256,0.0084739290177822,-0.018319621682167],[0.040622435510159,-0.048529833555222,-0.05402397736907]],[[-0.0071739973500371,0.055137719959021,-0.0027783587574959],[0.063602685928345,0.021312979981303,-0.072620414197445],[0.0071956203319132,0.030947709456086,-0.01751447468996]],[[0.0066295601427555,-0.013907099142671,0.004112163092941],[0.040407635271549,-0.012688199058175,-0.0071245678700507],[-0.081405982375145,0.0074403057806194,-0.015672706067562]],[[-0.026517231017351,0.011940693482757,0.035657770931721],[-0.027506304904819,0.076329775154591,-0.017957504838705],[-0.0068792109377682,0.077526651322842,-0.032094568014145]],[[-0.039548475295305,-0.072097472846508,0.025495676323771],[-0.037961725145578,-0.004762040451169,0.073647059500217],[-0.022060351446271,0.026769580319524,0.049981325864792]],[[-0.072630196809769,0.10496858507395,0.01913302950561],[-0.039138119667768,0.093353003263474,0.025327250361443],[-0.005674930755049,-0.00036482058931142,0.040898203849792]],[[0.03386988863349,-0.04596134275198,0.013880869373679],[0.058254174888134,-0.0066026579588652,-0.036292850971222],[0.041635025292635,-0.012330596335232,-0.06691337376833]],[[0.013964401558042,0.0057095303200185,-0.035055447369814],[0.003226111875847,0.059217598289251,-0.046186696738005],[-0.0065702507272363,0.048720918595791,-0.021414471790195]],[[-0.010686964727938,-0.0021655550226569,0.015235844999552],[-0.049566127359867,-0.027090670540929,0.016041589900851],[0.039470393210649,-0.031878724694252,-0.026926312595606]],[[0.010631701909006,-0.00071594351902604,-0.0095151606947184],[-0.0067353807389736,0.043099660426378,-0.043530996888876],[-0.0046378830447793,-0.041829161345959,0.029189120978117]],[[-0.059232033789158,0.020508844405413,-0.003689211094752],[-0.060689896345139,-0.026280920952559,-0.029605105519295],[-0.029194237664342,-0.016718728467822,0.050498589873314]],[[-0.043259385973215,0.023862656205893,0.059253562241793],[0.026962714269757,-0.035447288304567,-0.055201593786478],[0.0066762580536306,-0.0098616275936365,0.014123881235719]],[[0.048787519335747,0.025825234130025,0.0047542750835419],[0.043742828071117,-0.029422322288156,0.010374197736382],[-0.01413582265377,0.010987753979862,-0.091229468584061]],[[-0.014991108328104,-0.0054167225025594,0.043889470398426],[0.030226303264499,0.0017051468603313,-0.0095114512369037],[0.044028032571077,-0.041816741228104,0.037723280489445]],[[-0.06702721118927,0.052357960492373,0.0095078339800239],[0.0069971834309399,-0.062695272266865,0.0049332976341248],[-0.039965592324734,-0.074301034212112,-0.035139836370945]],[[-0.047741338610649,0.01265053357929,-0.023797206580639],[0.078202351927757,0.0010036187013611,-0.032548613846302],[-0.031271357089281,-0.058209255337715,0.0073908106423914]],[[-0.021186294034123,0.013457481749356,0.012891921214759],[-0.061918366700411,0.024268351495266,-0.020242793485522],[-0.00048310990678146,-0.028244493529201,-0.0032202394213527]],[[0.02222652733326,-0.036148928105831,0.037779219448566],[-0.051872361451387,-0.011668366380036,0.0048118378035724],[-0.0083243185654283,-0.023133121430874,0.032788973301649]],[[-0.025421336293221,0.015781415626407,-0.030071230605245],[-0.001837620511651,-0.0022897724993527,0.011505088768899],[0.067216023802757,-0.022520596161485,-0.013605742715299]],[[-0.020936738699675,0.10921163111925,-0.02290297485888],[0.046083770692348,0.03021751716733,-0.036819726228714],[-0.096373908221722,0.018448760733008,0.020846355706453]],[[0.055750567466021,-0.022053807973862,0.018049985170364],[0.036203637719154,-0.0097275041043758,0.0071727512404323],[-0.087981484830379,-0.023350723087788,0.086592197418213]],[[-0.065849930047989,0.034307543188334,-0.031436610966921],[-0.067983090877533,-0.056525800377131,-0.029853722080588],[0.035981580615044,-0.029164059087634,-0.10068393498659]],[[0.0082311388105154,-0.020472886040807,0.035263981670141],[-0.0065262573771179,0.018308408558369,0.030481962487102],[0.012451993301511,-0.006060027051717,-0.053793378174305]],[[-0.058053515851498,-0.024012139067054,0.06954362988472],[-0.058240745216608,-0.06034118309617,0.037793356925249],[0.0034859920851886,-0.041107721626759,-0.01944387704134]],[[-0.042408470064402,-0.036914244294167,-0.028713351115584],[0.05543527007103,0.0029603103175759,-0.0082370126619935],[-0.037780519574881,-0.040711838752031,0.027197498828173]],[[-0.0087594920769334,0.055586222559214,0.097108788788319],[0.011880923062563,0.06085367128253,0.017054183408618],[0.06386785954237,-0.039950124919415,-0.045333780348301]],[[0.028717825189233,-0.0231225322932,-0.017711175605655],[-0.052950866520405,0.0081659751012921,-0.047719966620207],[-0.01275351177901,-0.048075586557388,-0.006178439129144]],[[0.040431056171656,-0.016497073695064,0.026615308597684],[-0.047760430723429,-0.014482138678432,0.019510077312589],[0.024889875203371,0.016955384984612,-0.021323164924979]],[[0.04918597266078,-0.017194841057062,-0.010849449783564],[0.041330970823765,0.017820542678237,0.044015493243933],[-0.012323105707765,-0.1407577842474,-0.040979437530041]],[[0.0054082721471786,0.06122237816453,0.021328702569008],[0.071934305131435,0.03876019641757,-0.092750489711761],[-0.0041377707384527,0.0037355527747422,0.062951430678368]],[[-0.0050717107951641,-0.027380954474211,0.018411386758089],[-0.045108698308468,-0.033087242394686,0.041661120951176],[0.03247494623065,0.017562264576554,0.033032860606909]],[[0.056561153382063,-0.0083206854760647,0.03617811575532],[-0.040609858930111,-0.041804272681475,-0.058781143277884],[0.07160696387291,-0.017690118402243,0.015115926973522]],[[-0.0043873768299818,-0.01007136143744,-0.029321497306228],[0.031838092952967,-0.13146509230137,0.0017853423487395],[-0.090507082641125,0.030434099957347,-0.063913650810719]],[[0.025418095290661,0.00028300890699029,-0.015759525820613],[0.012665673159063,-0.018919713795185,0.01654501631856],[0.022744363173842,-0.047325573861599,-0.033976636826992]],[[-0.0615553855896,0.016786530613899,0.04951223731041],[0.060471799224615,-0.044905722141266,0.01180562004447],[0.0049936678260565,0.046411197632551,0.037066742777824]],[[-0.0011352912988514,0.027847774326801,-0.057168010622263],[-0.07505938410759,0.025439912453294,0.063085041940212],[0.052244089543819,0.021804111078382,-0.068184673786163]],[[-0.053040310740471,0.011812313459814,0.020512631163001],[-0.056268516927958,0.021423963829875,0.034580051898956],[0.0091541614383459,0.091343827545643,0.077264904975891]],[[-0.035444036126137,0.022467482835054,-0.0013356066774577],[0.041349232196808,-0.025675907731056,0.033299028873444],[0.035396739840508,-0.023904236033559,0.020231762900949]],[[-0.038128819316626,-0.030053677037358,0.029655480757356],[-0.015220320783556,0.074731349945068,-0.036748494952917],[-0.035355430096388,-0.019157286733389,0.044581696391106]],[[0.028311405330896,-0.0035691503435373,0.011263024993241],[-0.021704869344831,0.013797518797219,-0.027171723544598],[-0.0021670423448086,0.0051126428879797,-0.080932192504406]],[[0.037153605371714,0.059935633093119,-0.017286332324147],[0.028013171628118,0.032044351100922,0.010536008514464],[0.040872804820538,0.025899251922965,-0.016012232750654]],[[0.02028314396739,-0.0018139756284654,0.017820559442043],[0.03503205254674,-0.078896947205067,0.055517435073853],[0.032645866274834,-0.038887079805136,0.030178241431713]],[[0.059681110084057,0.023286519572139,-0.075636766850948],[-0.082809999585152,0.039634212851524,-0.019140891730785],[-0.026788601651788,-0.012541752308607,-0.0077990712597966]],[[-0.026260476559401,0.066417589783669,0.10260060429573],[0.053145404905081,-0.068677976727486,0.012535996735096],[-0.026825523003936,0.044532965868711,-0.017383078113198]],[[-0.017158785834908,-0.011841840110719,0.024943565949798],[-0.044759292155504,0.052484378218651,-0.0066724787466228],[0.038948360830545,-0.088909044861794,-0.02544697932899]],[[-0.050727624446154,0.030277034267783,0.012670041061938],[-0.037876892834902,-0.000931543239858,-0.01457925979048],[-0.049897003918886,0.0091210901737213,-0.033522933721542]],[[-0.081260867416859,-0.04294852912426,0.002747303340584],[-0.02096145786345,0.064508743584156,-0.071930043399334],[-0.045597661286592,-0.047288864850998,0.043324623256922]],[[-0.044965695589781,0.0080918045714498,0.0026347055099905],[0.012015594169497,0.015629323199391,-0.036249246448278],[0.057369850575924,-0.01504467241466,-0.020703975111246]],[[0.10700718313456,-0.020562158897519,-0.10345593839884],[-0.0052856439724565,-0.047660302370787,-0.035390976816416],[0.056143745779991,-0.019080948084593,-0.041268639266491]],[[-0.010528761893511,0.027723584324121,0.027163142338395],[0.079590626060963,0.077033624053001,-0.034490443766117],[0.054683718830347,0.04398287832737,-0.010967055335641]],[[-0.0072303228080273,0.082518972456455,0.027022048830986],[-0.050385687500238,0.071017563343048,0.099699348211288],[-0.054591421037912,-0.0070019769482315,0.099997043609619]],[[0.050273213535547,0.093279890716076,0.029687333852053],[0.013308618217707,-0.048485264182091,0.022813061252236],[-0.025300031527877,0.038105692714453,0.0094258515164256]],[[0.022337621077895,0.027842437848449,0.040835309773684],[-0.0055050309747458,-0.0050571621395648,0.031822938472033],[-0.0016430914402008,-0.030644126236439,0.033801577985287]],[[0.016061596572399,0.076244369149208,0.015645744279027],[0.093194454908371,0.0063787223771214,0.01455588825047],[-0.18208311498165,0.0092340083792806,0.018321305513382]],[[-0.0016795648261905,-0.032344624400139,0.0036015280056745],[0.036411680281162,-0.025339370593429,0.010069971904159],[-0.021819965913892,-0.0093589993193746,-0.054933581501245]],[[0.071136772632599,-0.015383331105113,0.033420730382204],[0.023638533428311,0.027573803439736,-0.016452630981803],[0.015082132071257,0.018853699788451,0.028352987021208]],[[0.10887724906206,-0.028823483735323,0.012907232157886],[-0.083308771252632,-0.026170020923018,-0.0020058117806911],[0.013094678521156,-0.045140754431486,-0.038112711161375]],[[-0.036146719008684,0.00086109386757016,-0.013499669730663],[0.022312164306641,-0.04524302482605,-0.078966870903969],[0.097339786589146,0.0043178764171898,0.0020523562561721]],[[0.035551778972149,-0.045361146330833,-0.0076909614726901],[-0.02558553032577,-0.0012282885145396,-0.037307515740395],[0.057891067117453,-0.065505124628544,0.031736597418785]],[[-0.038418624550104,-0.045274671167135,-0.038142971694469],[-0.059757005423307,-0.043295454233885,-0.031295176595449],[0.040021009743214,-0.058275289833546,0.029140528291464]],[[-0.023710507899523,0.024498794227839,-0.0081620728597045],[-0.0049648387357593,0.012228048406541,0.049029286950827],[-0.05436671897769,0.082419604063034,0.016784053295851]],[[0.00054709706455469,-0.082818306982517,0.051264848560095],[-0.011304654181004,0.012051811441779,-0.06985068321228],[0.063053205609322,-0.026745835319161,-0.018906157463789]],[[0.052324891090393,-0.080545462667942,0.016117755323648],[-0.052582230418921,-0.10522989183664,0.040698017925024],[-0.031917493790388,-0.040127746760845,0.02080874145031]],[[0.033154100179672,-0.0083681931719184,0.029150361195207],[-0.021845644339919,-0.012047678232193,0.056889295578003],[0.034637834876776,-0.0021908257622272,0.042288981378078]],[[-0.015443526208401,-0.015081122517586,0.017699956893921],[0.0041547487489879,-0.05309758707881,0.027882819995284],[0.0099336383864284,0.042597554624081,-0.0096298810094595]],[[-0.074175737798214,-0.011584972031415,-0.059202525764704],[-0.068936578929424,0.028116764500737,-0.095483474433422],[-0.080030187964439,-0.012671948410571,-0.068979352712631]],[[-0.038490358740091,0.03028903529048,-0.011857694946229],[-0.069453865289688,0.017345875501633,-0.064795218408108],[0.034469723701477,0.07500983774662,-0.056807968765497]],[[0.016340713948011,-0.054534792900085,0.0098664965480566],[0.03049230389297,-0.078459769487381,0.015974866226315],[-0.015544299036264,0.053943779319525,-0.070891104638577]],[[0.013318182900548,0.084949344396591,0.013300294056535],[0.05689961463213,-0.1012762337923,-0.046833585947752],[-0.040580309927464,0.011188580654562,-0.04949801787734]],[[-0.059596963226795,-0.0028061380144209,0.013000614009798],[0.035346522927284,-0.022419853135943,-0.0092954961583018],[-0.050477340817451,0.00039347345591523,0.027824038639665]],[[-0.0069447699934244,0.073891907930374,0.051179014146328],[0.047865029424429,-0.035165149718523,0.020586658269167],[0.065823704004288,0.012924768961966,-0.0052220323123038]],[[-0.02519042044878,-0.053214751183987,0.026242123916745],[-0.038673721253872,0.0040260278619826,0.0095602599903941],[-0.013638901524246,0.037758905440569,-0.043532956391573]],[[-0.012128275819123,-0.056602708995342,-0.075851611793041],[0.013697240501642,-0.0070345434360206,0.019408065825701],[-0.033108305186033,-0.08572581410408,-0.040192998945713]],[[0.0011437577195466,-0.11024462431669,-0.031484387814999],[-0.13921783864498,-0.029643699526787,0.032885488122702],[-0.02894676104188,0.054716151207685,-0.008241412229836]],[[0.097412720322609,0.062148474156857,-0.015755252912641],[-0.017957540228963,0.018664235249162,-0.0033633608836681],[0.05193655192852,-0.023599477484822,-0.0058894478715956]],[[0.025224287062883,-0.0036710007116199,-0.058523461222649],[0.052859038114548,-0.079816393554211,-0.030928026884794],[-0.044401593506336,0.048742156475782,-0.013702089898288]],[[-0.037235908210278,0.038611944764853,-0.017291009426117],[-0.096449121832848,-0.062271147966385,0.033778991550207],[0.0012335382634774,0.079944960772991,0.010199464857578]],[[0.04127649590373,-0.020017212256789,0.054362569004297],[0.048691924661398,-0.019766626879573,-0.002487656660378],[-0.059769731014967,-0.0055520138703287,0.09605185687542]],[[0.020216107368469,-0.0054379333741963,-0.091703087091446],[-0.051193475723267,0.024870732799172,0.056480344384909],[0.033561229705811,0.06066020205617,-0.16697572171688]],[[-0.046261288225651,-0.0036238231696188,-0.014377715997398],[0.07966709882021,-0.012117204256356,0.10041311383247],[0.042581275105476,0.032693289220333,-0.035845581442118]],[[-0.020110201090574,-0.01896021515131,-0.0069684544578195],[-0.072760015726089,0.0038723261095583,-0.064214557409286],[-0.0025197940412909,-0.03801741078496,0.08590417355299]],[[0.029707169160247,0.041831448674202,-0.019155289977789],[-0.0044461404904723,0.011755879968405,-0.024861825630069],[-0.029999380931258,-0.0018245229730383,0.028291748836637]],[[0.02323330566287,-0.0082353036850691,0.015169804915786],[-0.068958811461926,-0.14606182277203,0.0071340976282954],[0.02847402729094,0.022814255207777,0.0048489100299776]],[[0.014887140132487,-0.015087148174644,-0.0025492385029793],[-0.058384977281094,-0.013512287288904,-0.010555812157691],[-0.045725788921118,0.093353107571602,0.009040180593729]],[[-0.025046730414033,-0.053024847060442,0.10439912974834],[-0.0091151762753725,-0.12200576812029,0.0039069559425116],[-0.061283223330975,0.022417962551117,0.040755357593298]],[[-0.012965152971447,0.011181664653122,0.046913046389818],[-0.058096803724766,-0.017998015508056,-0.01904752291739],[-0.023453975096345,-0.084796704351902,-0.027748161926866]],[[0.037560787051916,0.0055293231271207,-0.031998857855797],[-0.003691008547321,0.011082641780376,0.067829549312592],[0.064336761832237,-0.1240573823452,-0.036262575536966]],[[0.015511528588831,-0.0096365688368678,-0.011553045362234],[-0.0060767116956413,0.019043298438191,-0.038783110678196],[-0.010480460710824,-0.0083484202623367,-0.041424125432968]],[[0.10968659818172,-0.0029410677962005,0.0052281869575381],[-0.083359085023403,0.055641941726208,0.012093088589609],[0.021044887602329,-0.0017488442827016,0.0026858993805945]],[[0.055764634162188,0.0060222167521715,-0.025448923930526],[-0.034547336399555,0.004568902309984,-0.0029518259689212],[0.020524291321635,0.090062521398067,-0.037727419286966]],[[-0.018661318346858,0.020391480997205,-0.02359570376575],[0.013184756040573,-0.00021335011115298,0.020056700333953],[-0.082485996186733,-0.048097722232342,0.097985588014126]],[[-0.033615540713072,-0.083864629268646,-0.0003767047310248],[0.068061806261539,-0.0018462621374056,-0.019747637212276],[-0.019743055105209,-0.027355022728443,-0.029899986460805]],[[0.022243259474635,-0.00059969106223434,0.00031730701448396],[0.0052401479333639,-0.0086545376107097,-0.007525154389441],[-0.017224218696356,0.0015315264463425,-0.023388512432575]],[[-0.0065378723666072,-0.020311178639531,-0.026212498545647],[-0.055873025208712,0.020604025572538,0.046162407845259],[-0.050843134522438,0.045767735689878,-0.015095922164619]],[[-0.0054544000886381,-0.061584275215864,0.0051735322922468],[-0.072466067969799,-0.090585581958294,-0.012187917716801],[-0.01980990730226,-0.045751888304949,0.032500475645065]],[[-0.05825025588274,0.019894005730748,0.029450973495841],[-0.02665594406426,0.0043358216062188,0.029293153434992],[0.0415517129004,0.01306174416095,0.0017146820900962]],[[0.0015909263165668,-0.0067170597612858,-0.029687313362956],[0.01067163888365,0.029110005125403,-0.029023064300418],[-0.046325530856848,-0.029110183939338,-0.004891199991107]],[[0.033485140651464,-0.084643393754959,0.048333320766687],[-0.03139316663146,0.029043739661574,-0.029664691537619],[0.038210287690163,-0.11310555785894,-0.067581199109554]],[[0.031213467940688,0.067431569099426,-0.023159720003605],[0.042249754071236,0.039863865822554,-0.024798333644867],[0.0020207078196108,-0.054771456867456,-0.044229444116354]],[[-0.00085436674999073,0.012966176494956,0.0026086706202477],[-0.047209639102221,0.031735438853502,-0.067034393548965],[0.033092670142651,0.040818884968758,-0.032635312527418]]],[[[-0.00019762184820138,-0.018851384520531,-0.0059764734469354],[-0.04021230712533,-0.084117352962494,-0.0026432813610882],[-0.013226986862719,0.014175250194967,-0.012041587382555]],[[0.014447329565883,-0.069954045116901,0.037705909460783],[-0.044879332184792,0.025889692828059,0.025112574920058],[0.008737844415009,-0.058853399008512,0.000581759668421]],[[0.055127304047346,0.03954803571105,-0.022607158869505],[0.040991142392159,-0.029642568901181,-0.069194927811623],[0.013220253400505,0.036374811083078,-0.041342936456203]],[[0.0028157213237137,0.0084334760904312,0.0059783174656332],[0.033962476998568,0.0064796525985003,0.013850556686521],[0.021181613206863,0.0050138211809099,-0.019142402336001]],[[0.029003523290157,0.0087618064135313,-0.048625502735376],[-0.04026110842824,-0.00015327006985899,0.010643795132637],[-0.0040475474670529,-0.007360081654042,-0.0071528749540448]],[[-0.016155946999788,0.0059895887970924,0.014837610535324],[0.065449967980385,0.0091848922893405,0.031433805823326],[-0.0040928609669209,0.0054626925848424,0.032464325428009]],[[-0.036315381526947,0.0032739436719567,0.013914750888944],[0.11510497331619,-0.071124635636806,-0.0053096991032362],[-0.0071693975478411,-0.01273753400892,-0.049889668822289]],[[0.020276503637433,-0.015616925433278,-0.042656715959311],[-0.012581254355609,-0.024345047771931,0.041425988078117],[-0.0288155246526,0.043608531355858,0.028852159157395]],[[0.041040726006031,-0.019684737548232,-0.036966945976019],[-0.071578532457352,0.019188081845641,-0.016906317323446],[-0.041472781449556,-0.036597590893507,-0.011293768882751]],[[0.062045570462942,0.00082443456631154,0.036687806248665],[0.032655015587807,-0.0045406245626509,-0.0288957785815],[0.0028932087589055,0.045170567929745,-0.018061548471451]],[[0.016460223123431,0.016726121306419,0.0007438471657224],[-0.054611016064882,0.0036457378882915,-0.010066863149405],[-0.065244667232037,0.025459978729486,0.036788903176785]],[[0.04549278318882,0.012590323574841,0.01147651579231],[-0.094991661608219,0.025927577167749,0.055395502597094],[0.0013971471926197,0.0061332946643233,-0.024160590022802]],[[0.024142678827047,0.0056401747278869,0.032245989888906],[0.019627863541245,-0.0063896565698087,0.042492978274822],[0.007518318016082,-0.036752752959728,-0.050014358013868]],[[0.008910627104342,0.017207462340593,-0.036248236894608],[-0.0096338139846921,0.071416772902012,-0.043264959007502],[0.023479150608182,0.003838496748358,-0.024148415774107]],[[-0.047148890793324,0.02333764359355,0.0086822621524334],[0.015219547785819,-0.024602808058262,-0.002299461979419],[-0.052177827805281,0.0051627494394779,0.056847985833883]],[[0.022823046892881,-0.023003095760942,-0.010078633204103],[0.055407296866179,0.026747923344374,0.069225907325745],[-0.044990360736847,-0.048807710409164,0.064070902764797]],[[-0.071093246340752,-0.024291748180985,0.049185611307621],[-0.011806828901172,-0.066945604979992,-0.011982048861682],[0.020703950896859,0.02041051350534,0.020173665136099]],[[0.04338001832366,-0.032197497785091,0.03340620175004],[-0.017987355589867,-0.079548895359039,0.015377120114863],[-0.029452549293637,-0.046472206711769,0.035563599318266]],[[-0.010556073859334,-0.016693158075213,0.0067746196873486],[-0.014567040838301,0.00072281569009647,0.052993874996901],[-0.021301424130797,-0.0080955326557159,0.026140920817852]],[[-0.051895711570978,-0.044594097882509,-0.060572907328606],[0.073223613202572,0.012898894958198,-0.04719028249383],[0.084884859621525,0.066328771412373,-0.043395511806011]],[[-0.0062997913919389,-0.0059309788048267,-0.027427811175585],[-0.0064986133947968,-0.013546236790717,0.047120060771704],[0.067627549171448,0.049277294427156,-0.046934053301811]],[[-0.028534431010485,-0.022524362429976,0.012305710464716],[0.053876373916864,0.0059761782176793,0.038115605711937],[0.01314377784729,0.0057018934749067,0.02403449639678]],[[-0.016271375119686,-0.085221149027348,-0.018956240266562],[0.072843626141548,-0.03847698867321,0.041918199509382],[-0.012369741685688,0.053207218647003,0.0010369033552706]],[[-0.080084048211575,0.011224831454456,0.028384923934937],[0.017577460035682,0.091812215745449,0.1140588670969],[-0.073277443647385,-0.043650191277266,-0.011850552633405]],[[0.021518804132938,-0.049515265971422,-0.061386939138174],[0.051572397351265,0.03806172311306,0.0066137993708253],[0.012113511562347,0.0090862028300762,0.052255686372519]],[[0.022873478010297,0.0069235940463841,-0.020899478346109],[-0.092360131442547,-0.057399071753025,0.033561997115612],[0.023359274491668,0.013785738497972,0.01588062942028]],[[-0.014302051626146,-0.00078778952592984,0.037511639297009],[0.017154177650809,-0.017117286100984,0.031451925635338],[0.005608290899545,0.094431675970554,-0.042981557548046]],[[0.038480624556541,-0.012599139474332,0.069273516535759],[0.029713854193687,-0.0072154453955591,-0.023711794987321],[-0.0064062913879752,-0.03222132474184,-0.018176542595029]],[[0.019741248339415,0.039041198790073,0.09900140017271],[-0.026298519223928,0.038436338305473,-0.10884764790535],[0.054261527955532,-0.037196483463049,-0.014714909717441]],[[-0.00011660500604194,-0.010030630044639,0.03773582354188],[0.035157024860382,0.030394082888961,-0.021866114810109],[0.035957474261522,-0.040072362869978,0.0097351670265198]],[[0.027424905449152,0.013533691875637,0.043901953846216],[-0.064672961831093,0.095005683600903,0.008580980822444],[0.054959878325462,0.046985693275928,0.036616902798414]],[[0.049839660525322,-0.071601688861847,0.00090048398124054],[-0.025770138949156,-0.029311051592231,-0.066256582736969],[0.025465590879321,0.058808747678995,0.046692904084921]],[[0.067629650235176,0.043271712958813,0.026116371154785],[-0.0015241449000314,0.016572814434767,0.078972190618515],[-0.0041540814563632,-0.0070431083440781,0.00032479804940522]],[[-0.061107333749533,0.008319104090333,-0.0060412203893065],[-0.0097593059763312,0.072954274713993,0.0063340184278786],[0.02086666226387,0.035652309656143,-0.089668452739716]],[[-0.1132175475359,-0.033642180263996,0.014092708937824],[-0.020061390474439,-0.034474853426218,0.047965552657843],[-0.0055976617150009,-0.00032887494307943,0.010330067016184]],[[-0.036467406898737,0.066527880728245,0.040521003305912],[-0.0011784188682213,0.019503442570567,-0.038805618882179],[-0.036959063261747,-0.014029022306204,0.011516614817083]],[[-0.0029988824389875,0.024197218939662,0.028574489057064],[0.020412972196937,-0.0018231309950352,-0.02701199427247],[-0.045364610850811,-0.047065805643797,-0.05355404317379]],[[0.019171208143234,-0.04066551476717,0.014259539544582],[0.014755676500499,0.057201869785786,0.014645395800471],[0.0098162367939949,0.0009955377317965,0.024871028959751]],[[-0.04922192171216,0.00055712077300996,-0.0054168589413166],[-0.10964075475931,0.01087109092623,0.029228609055281],[-0.038775771856308,-0.071502156555653,0.060220681130886]],[[0.023185510188341,-0.0084774950519204,-0.014225444756448],[-0.052669703960419,0.032261673361063,0.0077269393950701],[0.02206557802856,-0.034606888890266,-0.069279693067074]],[[-0.045403700321913,0.042731512337923,0.0030279026832432],[0.062815450131893,0.045818146318197,-0.018617475405335],[0.013636201620102,-0.01657603867352,-0.1019751355052]],[[-0.053102433681488,-0.030213678255677,0.032758004963398],[-0.028944177553058,-0.013422109186649,0.087131857872009],[-0.026030858978629,0.03547865524888,0.0011406735284254]],[[0.020201932638884,-0.020767675712705,-0.10081496834755],[-0.048989161849022,-0.00069076125510037,-0.00042015319922939],[0.0063393278978765,0.036913827061653,0.036630220711231]],[[0.0087337205186486,-0.065746657550335,0.032781213521957],[-0.0063787857070565,0.07436790317297,-0.018566720187664],[-0.009700489230454,0.026043647900224,0.048148132860661]],[[0.012211753986776,-0.026705056428909,0.01238252222538],[-0.020712396129966,-0.062396615743637,-0.031084671616554],[0.051532868295908,0.079979777336121,0.051044151186943]],[[0.010481035336852,-0.052282318472862,0.01401216071099],[0.053726717829704,-0.011636035516858,-0.020164636895061],[-0.033292453736067,0.015836721286178,0.054903697222471]],[[-0.077989906072617,-0.028061525896192,-0.0061355391517282],[-0.0050085806287825,0.023179220035672,0.0015196851454675],[0.11034305393696,-0.001830653171055,-0.039235685020685]],[[0.06372756510973,0.018007025122643,-0.010853363201022],[-0.094141989946365,0.013001385144889,0.040316235274076],[-0.034260075539351,0.0058778203092515,-0.0030540206935257]],[[-0.011477169580758,-0.014135545119643,-0.0083330785855651],[-0.051231920719147,0.059425219893456,-0.0039350357837975],[0.063150838017464,-0.033334761857986,0.015382366254926]],[[-0.028805918991566,-0.042595390230417,-0.036192007362843],[-0.0054293894208968,0.024030119180679,-0.021821588277817],[-0.0409100279212,0.050326876342297,0.035072322934866]],[[0.047339368611574,-0.031291536986828,0.026503264904022],[-0.018404556438327,0.039966851472855,-0.010035923682153],[0.052769761532545,-0.027561221271753,-0.026597417891026]],[[0.0048683411441743,0.02316334657371,0.049955479800701],[0.08079007267952,0.021108070388436,-0.005461931694299],[-0.022788727656007,0.022534057497978,-0.069118611514568]],[[0.070197917521,-0.012771324254572,0.016723431646824],[-0.013516663573682,0.040409374982119,0.03890648111701],[-0.049690384417772,-0.020675107836723,-0.011428269557655]],[[-0.06227333843708,-0.065010115504265,-0.030959159135818],[0.043421819806099,0.0090353740379214,-0.026284329593182],[0.008703283034265,0.0068006510846317,0.023156156763434]],[[0.051817592233419,0.031508091837168,0.011996481567621],[0.025076027959585,-0.039661251008511,-0.019580531865358],[0.048712339252234,-0.018178347498178,0.072502158582211]],[[-0.046771671622992,0.0087301721796393,-0.01045967079699],[-0.044416628777981,-0.0020042585674673,-0.022420041263103],[0.044195841997862,0.012594633735716,0.093608811497688]],[[0.011746450327337,-0.0028667813166976,0.020467147231102],[-0.050152346491814,0.097114883363247,0.027116425335407],[0.082895576953888,-0.013715957291424,-0.03906736895442]],[[0.0025172790046781,-0.012180506251752,-0.039909921586514],[0.0021483772434294,0.0089146802201867,-0.0015215835301206],[-0.02804478444159,0.037217952311039,0.036699246615171]],[[-0.01704591140151,-0.0077780238352716,-0.059951148927212],[0.0012945660855621,0.035109963268042,-0.0062459032051265],[0.0017367325490341,0.10536156594753,0.023284135386348]],[[0.0031001402530819,0.01599608361721,0.022930381819606],[0.02389770373702,0.048961650580168,-0.097632586956024],[0.022095380350947,-0.0072872899472713,-0.027852434664965]],[[-0.02776787802577,0.024895764887333,-0.052611757069826],[0.028609734028578,0.06377612054348,0.0033782303798944],[0.0015409409534186,0.0078951809555292,0.049332518130541]],[[-0.039762683212757,0.029489442706108,-0.0066654905676842],[0.060529407113791,0.0052179908379912,0.031696628779173],[-0.0088511304929852,-0.0001036982430378,-0.054107047617435]],[[0.0014755751471967,0.040368817746639,-0.052359625697136],[0.031485892832279,-0.10818332433701,0.052607391029596],[0.028388407081366,0.0041564484126866,-0.057019740343094]],[[0.0019529822748154,0.043429680168629,0.0059512807056308],[0.079351373016834,-0.0043050623498857,0.01669548265636],[0.010383121669292,0.096018373966217,0.017192985862494]],[[0.022755842655897,0.099306955933571,-0.058080840855837],[0.0079775415360928,-0.055306911468506,0.042979028075933],[-0.038823883980513,0.0069880257360637,0.10375318676233]],[[0.0046731913462281,-0.0025300655979663,0.017261089757085],[-0.0098030008375645,0.0024837385863066,-0.055563308298588],[0.066332601010799,-0.031709067523479,0.071030616760254]],[[0.073169268667698,0.054356779903173,-0.068169020116329],[-0.046039935201406,-0.05684432387352,-0.06299190223217],[0.013336739502847,-8.0885140050668e-05,0.029367998242378]],[[0.016313619911671,0.052435196936131,0.0019283527508378],[-0.062105245888233,-0.021460982039571,0.035971865057945],[-0.0061935535632074,0.036680404096842,0.015587283298373]],[[0.045969717204571,-0.026481226086617,0.042960114777088],[0.018166858702898,0.01532026566565,-0.092429615557194],[-0.043989449739456,0.097880139946938,-0.035502564162016]],[[0.014299310743809,-0.041869282722473,-0.01462622359395],[-0.014796811155975,0.0072409957647324,0.035857513546944],[-0.020047562196851,-0.0050130602903664,-0.0024377582594752]],[[-0.0093015283346176,0.027071513235569,-0.086781680583954],[0.023743480443954,0.0032118898816407,-0.049995765089989],[0.0085859531536698,-0.0016575254267082,0.049919828772545]],[[-0.026942832395434,-0.044993467628956,0.042091023176908],[-0.063037618994713,0.037700686603785,-0.020673520863056],[0.033709403127432,-0.074397824704647,-0.017183186486363]],[[0.018921641632915,-0.0045961434952915,-0.041800048202276],[0.028836525976658,-0.042679391801357,-0.019311437383294],[0.013997600413859,0.065965838730335,0.0063737579621375]],[[-0.020951909944415,-0.0049844030290842,0.038704957813025],[0.0030406569130719,0.0042550982907414,-0.05261081084609],[0.070449665188789,0.030633315443993,0.0026905150152743]],[[-0.044141914695501,-0.064088463783264,-0.014073440805078],[-0.071454659104347,-0.04356000572443,-0.017240626737475],[-0.013234913349152,0.020201791077852,-0.024961898103356]],[[0.074388414621353,-0.035641089081764,0.017388381063938],[0.0036221316549927,0.0050997738726437,-0.044788368046284],[-0.032584186643362,0.011265777051449,0.054439101368189]],[[0.048159174621105,0.026798186823726,-0.0038299902807921],[0.0088555114343762,-0.0094817569479346,0.0017307717353106],[-0.0082838051021099,-0.042913589626551,0.040593728423119]],[[-0.042223874479532,0.03163843229413,-0.095964774489403],[0.046679794788361,0.090840317308903,-0.013055739924312],[0.010051914490759,0.040646344423294,0.027504362165928]],[[0.018303321674466,-0.018904278054833,-0.012589951977134],[-0.0069229803048074,0.017769329249859,-0.036665350198746],[0.00079820153769106,0.05513983219862,-0.023852216079831]],[[0.02129240334034,-0.0039163418114185,-0.0043285395950079],[-0.011789581738412,0.005433036480099,-0.04135524481535],[-0.022524431347847,-0.067752808332443,-0.048365786671638]],[[-0.02272616699338,0.015088653191924,-0.0092067774385214],[0.006965693552047,-0.020131753757596,-0.039853252470493],[0.029736418277025,-0.019559303298593,0.0022975935135037]],[[-0.049831971526146,0.022410836070776,-0.027348579838872],[-0.036894578486681,0.055753272026777,0.065243974328041],[0.024200094863772,-0.01790382899344,0.0079879416152835]],[[0.032126650214195,0.020772328600287,-0.00013715829118155],[-0.010759755037725,-0.031996078789234,0.077297009527683],[-0.053860049694777,0.040526520460844,0.012511311098933]],[[0.013468961231411,-0.0031757897231728,0.066927582025528],[-0.030646655708551,0.014352732338011,-0.011309299618006],[0.0014917793450877,0.047731518745422,0.02052834816277]],[[0.010355232283473,-0.016047604382038,-0.026399182155728],[0.029923165217042,0.03547341376543,0.069793544709682],[-0.071591258049011,-0.027009164914489,0.00728162471205]],[[0.021540904417634,0.0040362365543842,-0.060673236846924],[0.016298815608025,0.0077648293226957,0.0085266577079892],[0.04883024469018,0.06417565792799,-0.044302970170975]],[[0.025210244581103,-0.016266040503979,0.019356396049261],[0.00054706144146621,0.021856216713786,-0.033164609223604],[-0.047677077353001,-0.022390145808458,0.021564494818449]],[[0.050318352878094,-0.086086012423038,0.024217730388045],[-0.0042433235794306,-0.03045173920691,-0.013373762369156],[0.03751964494586,0.086393773555756,-0.044897612184286]],[[0.015482901595533,-0.0058037298731506,-0.042807057499886],[0.049479547888041,0.0010162994731218,0.093103237450123],[0.01919069327414,0.01885623857379,-0.030053624883294]],[[0.036830436438322,0.057125698775053,-0.090884439647198],[0.045312870293856,-0.10199353098869,-0.018395524471998],[0.051755912601948,0.0068546310067177,-0.015066638588905]],[[-0.012319878675044,-0.020916189998388,0.030589167028666],[0.0010787800420076,-0.035983681678772,0.039983309805393],[0.015151215717196,0.007347175385803,0.022813672199845]],[[-0.01949237473309,-0.049888830631971,0.013522956520319],[0.031212072819471,-0.031846415251493,-0.027634374797344],[0.012859801761806,-0.048055406659842,0.018866261467338]],[[0.00098728796001524,0.0058728721924126,-0.080561511218548],[-0.014168040826917,-0.069742076098919,0.022532567381859],[-0.0185760371387,0.059015903621912,0.010658076032996]],[[0.017070529982448,-0.060946717858315,-0.017931170761585],[0.0091414442285895,-0.030945526435971,0.065332025289536],[-0.054105576127768,0.012104087509215,-0.028304120525718]],[[-0.0059197838418186,0.028209062293172,-0.010548890568316],[-0.057055216282606,-0.04554308205843,0.015495441854],[-0.034631155431271,0.025229658931494,0.071126729249954]],[[-0.05203865468502,0.036169372498989,-0.062928445637226],[-0.037998996675014,0.042133364826441,0.033108200877905],[0.0056067262776196,-0.0042368569411337,0.059665847569704]],[[0.10558747500181,-0.031028155237436,0.00070232432335615],[-0.066521942615509,0.023248353973031,0.0063822134397924],[0.0077903945930302,0.024619864299893,-0.043679442256689]],[[-0.068845465779305,0.0095632309094071,-0.0013634588103741],[0.043469980359077,0.026182092726231,0.026441587135196],[0.00017548895266373,-0.012835611589253,0.061022613197565]],[[0.039557036012411,-0.043427053838968,0.0068695447407663],[0.017330953851342,0.07809279859066,-0.046560827642679],[-0.012837638147175,-0.028993256390095,0.011215156875551]],[[0.090490758419037,-0.013387886807323,0.012293352745473],[-0.058000236749649,-0.0027571537066251,-0.0020846407860518],[-0.030251773074269,0.0094548352062702,0.042740628123283]],[[-0.034786246716976,0.025811411440372,0.034324042499065],[0.029574878513813,0.03542422875762,0.014026908203959],[0.0040576024912298,-0.013469270430505,-0.068935319781303]],[[-0.049330167472363,-5.5173335567815e-05,0.036076623946428],[-0.040773637592793,0.022907342761755,0.072253435850143],[-0.0003635892062448,0.01609936542809,0.0053091170266271]],[[-0.011254025623202,-0.052855513989925,-0.04280161857605],[0.091162726283073,0.023513140156865,0.044854454696178],[0.031628631055355,-0.0033215859439224,0.014168913476169]],[[0.013066365383565,-0.017152730375528,0.069543197751045],[0.054615054279566,-0.0030535000842065,0.03721684589982],[-0.01399293821305,-0.0044920695945621,0.035942327231169]],[[0.052471429109573,0.028541173785925,-0.046157214790583],[-0.03966037556529,-0.01560015976429,0.003690926823765],[0.013490146026015,-0.019068565219641,0.0051975250244141]],[[-0.019899031147361,-0.037513736635447,-0.028376888483763],[-0.090167582035065,-0.0002327340625925,0.051042895764112],[0.041510004550219,-0.024866677820683,0.040931593626738]],[[0.024333640933037,0.0989133939147,0.013634980656207],[0.072725832462311,0.060063652694225,0.036037240177393],[-0.0078795300796628,0.0075146593153477,-0.076888553798199]],[[-0.065372325479984,-0.044837027788162,0.0034585250541568],[0.039330624043941,-0.046123284846544,0.042746756225824],[0.032288979738951,-0.037010177969933,0.0094446251168847]],[[0.0090600727126002,0.0052919872105122,-0.015448271296918],[-0.068559773266315,0.0077824634499848,-0.021710854023695],[0.021589957177639,0.086134031414986,0.015797069296241]],[[-0.0096546998247504,-0.0099482703953981,0.0070898267440498],[-0.019020793959498,0.033967852592468,0.040060605853796],[-0.00823356769979,0.024378333240747,0.030094003304839]],[[-0.012377928942442,0.047312553972006,-0.025010960176587],[0.036951828747988,-0.043439876288176,-0.058582924306393],[0.003152783960104,-0.11918810009956,-0.06424143910408]],[[0.0082378843799233,0.028455244377255,-0.073524102568626],[-0.016808783635497,-0.040092710405588,-0.029977887868881],[0.0069282054901123,0.033329542726278,0.005194800440222]],[[-0.056156262755394,0.0013532455777749,0.012190280482173],[0.068953044712543,0.085669234395027,-0.038102608174086],[0.057179044932127,-0.041739612817764,0.022330291569233]],[[0.02245793864131,0.0088107492774725,0.00028369115898386],[0.020743854343891,-0.048275180160999,0.020173979923129],[0.019544281065464,0.08489315956831,0.064484044909477]],[[0.00010198950621998,0.054233115166426,0.0057334685698152],[0.0066522876732051,0.013384590856731,0.0064233145676553],[0.00033411357435398,-0.01445778645575,-0.017186285927892]],[[0.015503568574786,0.012497403658926,0.018167598173022],[-0.041833840310574,-0.029060192406178,0.097033865749836],[0.018116150051355,-0.01080428622663,-0.033279776573181]],[[-0.033371523022652,-0.051263198256493,-0.072273388504982],[0.010090043768287,0.0046313577331603,-0.0068352427333593],[-0.033079199492931,0.044363807886839,-0.042712569236755]],[[-0.019497148692608,-0.034906551241875,-0.036467887461185],[-0.037876892834902,0.033482816070318,0.0061717471107841],[-0.043925687670708,-0.0089605282992125,0.027332993224263]],[[-0.026998590677977,-0.078107856214046,0.034897986799479],[-0.037199016660452,0.036155246198177,0.051496230065823],[-0.0023443705867976,-0.061490762978792,-0.039038814604282]],[[0.015653302893043,-0.016095910221338,-0.0096347369253635],[0.017918987199664,-0.11226881295443,-0.092873379588127],[0.05929309874773,0.059290774166584,-0.0050579034723341]],[[0.04645287618041,-0.036102499812841,0.0059107909910381],[0.019653739407659,-0.066926710307598,-0.048282206058502],[-0.032224245369434,-0.023514047265053,0.031192092224956]],[[-0.013974823057652,0.026004794985056,-0.041556842625141],[0.024892678484321,0.045998707413673,-0.0014188444474712],[0.075549185276031,0.051585331559181,-0.016504583880305]],[[-0.014821536839008,-0.005192119628191,-0.00073797564255074],[-0.053838845342398,0.035182174295187,0.02147488668561],[-0.058447327464819,0.045062649995089,0.026651296764612]],[[0.0017841282533482,0.051176756620407,0.0086408462375402],[-0.016209114342928,-0.01286883559078,-0.021366002038121],[0.006932825781405,0.0063647851347923,0.02936602756381]],[[0.0051796203479171,0.027155390009284,0.0064283604733646],[-0.035545200109482,-0.019450729712844,-0.0084407674148679],[-0.069204300642014,0.060477763414383,0.017326325178146]],[[0.054808963090181,-0.093436822295189,-0.00082607922377065],[0.047285012900829,-0.076300248503685,-0.054874900728464],[0.013591947034001,0.070516429841518,-0.022582851350307]],[[-0.001808054628782,0.041944216936827,-0.021985230967402],[0.056283041834831,-0.025749921798706,-0.06370635330677],[-0.05149083212018,0.051927622407675,-0.012455551885068]],[[0.08966388553381,0.042742501944304,0.0024744255933911],[-0.038105923682451,0.023554746061563,-0.025115480646491],[0.060486767441034,0.0082289511337876,-0.010942914523184]]],[[[-0.00084783451166004,-0.041286062449217,-0.022698393091559],[-0.0038897774647921,0.034420430660248,0.036262933164835],[-0.0033680014312267,-0.018230158835649,0.0017727739177644]],[[-0.026361765339971,-0.084358185529709,-0.04144537076354],[-0.018462907522917,-0.0021517616696656,0.0252800360322],[-0.020318606868386,0.0038205704186112,-0.020548040047288]],[[0.018811238929629,-0.092913337051868,0.018068993464112],[0.0052500572055578,0.04142002388835,0.021595668047667],[0.074800357222557,0.049821078777313,-0.00034233680344187]],[[-0.058676600456238,0.0071747931651771,0.011228245683014],[0.041309490799904,0.020512843504548,0.051395960152149],[0.01637808419764,0.084607496857643,-0.019073858857155]],[[-0.00054871186148375,0.018569570034742,-0.049738693982363],[0.040496785193682,0.040153864771128,-0.061944399029016],[-0.0087233521044254,0.037618912756443,0.024476036429405]],[[-0.018771857023239,0.0041732061654329,0.097231328487396],[0.024617850780487,0.023294927552342,0.02651690132916],[0.074383348226547,-0.011959010735154,-0.006980465259403]],[[0.046623699367046,0.024817394092679,0.069826059043407],[-0.002233223291114,0.058201849460602,0.015395542606711],[0.053085096180439,-0.045611210167408,-0.056082904338837]],[[0.01031184848398,-0.024941487237811,-0.017695879563689],[0.0086012119427323,-0.012909937649965,0.026805421337485],[-0.033613733947277,0.0070763658732176,-0.029102554544806]],[[0.034655939787626,-0.022485136985779,-0.032330118119717],[0.032297667115927,-0.0058881146833301,0.021305883303285],[0.039417468011379,-0.066768504679203,-0.0067337024956942]],[[0.018235996365547,-0.02816616371274,0.011895425617695],[-0.042358178645372,-0.017105106264353,-0.016559563577175],[-0.051558017730713,0.00327183958143,-0.033671390265226]],[[-0.0064065433107316,-0.023332700133324,-0.072435334324837],[0.033564928919077,0.022416679188609,0.0037811163347214],[-0.011627824045718,0.0057899202220142,0.0049393866211176]],[[0.0060263429768384,0.018497424200177,0.078934989869595],[0.048762485384941,0.032233346253633,0.014394221827388],[0.024499991908669,0.0838657990098,0.012048787437379]],[[0.064242444932461,-0.069234825670719,-0.041802439838648],[-0.034849099814892,-0.012104088440537,-0.0020141426939517],[-0.0075641362927854,0.050912164151669,-0.07709101587534]],[[-0.0066085434518754,0.017392389476299,0.026552185416222],[-0.090853944420815,-0.0041648396290839,-0.019437411800027],[0.07115089148283,-0.025367790833116,0.0071260668337345]],[[0.0082288691774011,0.030103387311101,0.087642140686512],[0.0090169366449118,0.1103393509984,0.034735053777695],[0.027040056884289,0.057254202663898,0.083660744130611]],[[-0.049749929457903,-0.063107900321484,-0.021961042657495],[-0.013928926549852,-0.014453862793744,-0.050125628709793],[-0.0038673754315823,-0.054765593260527,-0.063308455049992]],[[0.015411540865898,-0.014668645337224,-0.02032464183867],[-0.033196985721588,0.013499721884727,0.086265228688717],[0.081516206264496,-0.0065769301727414,0.028989106416702]],[[-0.0071348249912262,0.02369680441916,0.0060791471041739],[-0.00068288255715743,-0.042168520390987,0.0092867203056812],[-0.032900769263506,-0.0087556019425392,-0.0085900109261274]],[[0.056835450232029,-0.039186984300613,-0.012241930700839],[0.0079115116968751,-0.068039499223232,-0.0034108404070139],[-0.022706756368279,-0.048433434218168,0.05871868878603]],[[0.086177326738834,-0.072204686701298,0.073194064199924],[0.050651177763939,0.069386929273605,0.063932821154594],[-0.043195031583309,0.013822749257088,0.081060402095318]],[[-0.0098781455308199,-0.013823229819536,0.032572194933891],[0.0085398033261299,-0.064088679850101,0.027232129126787],[0.002058404032141,-0.021416779607534,-0.087100699543953]],[[0.0026837305631489,-0.0172926094383,-0.012245149351656],[0.04177462682128,0.012843186035752,-0.017468141391873],[0.079745560884476,-0.012384888716042,0.026091996580362]],[[0.037043895572424,0.033667638897896,0.014961617067456],[-0.046801935881376,0.037118762731552,-0.030129974707961],[0.03546741604805,0.01314434222877,0.0024993054103106]],[[-0.063244059681892,-0.020092757418752,-0.028085060417652],[0.05699996650219,0.0078892586752772,-0.045711163431406],[0.068109765648842,-0.007056281901896,0.031273677945137]],[[-0.066320590674877,0.027697430923581,-0.069457702338696],[-0.073743142187595,0.094174958765507,-0.0075585395097733],[-0.0015413092914969,0.066071756184101,0.015410653315485]],[[0.034993663430214,-0.035285577178001,-0.030568312853575],[-0.031963508576155,0.039334174245596,0.08037543296814],[0.010875661857426,0.012699429877102,0.010597353801131]],[[-0.019723804667592,-0.035002779215574,0.12571613490582],[0.023269115015864,-0.00095859821885824,0.060153860598803],[0.089914746582508,0.020973663777113,0.035265151411295]],[[0.086238324642181,0.029170194640756,0.067262001335621],[-0.024375289678574,-0.0056521254591644,0.037824537605047],[-0.053703088313341,0.067394345998764,-0.03629345446825]],[[0.0069368942640722,0.017941307276487,0.11410774290562],[0.077818609774113,0.023472756147385,0.033606547862291],[0.025404427200556,0.024129223078489,0.04603647813201]],[[-0.048003315925598,0.058105431497097,-0.064890421926975],[0.055915545672178,0.023151548579335,0.035141244530678],[0.011281365528703,-0.016099879518151,0.038322746753693]],[[-0.042019117623568,0.038024347275496,0.013575223274529],[0.046768039464951,0.089993014931679,0.019866345450282],[0.020790752023458,0.015965135768056,-0.0078821163624525]],[[0.052969455718994,0.039741974323988,-0.0020235034171492],[0.026970459148288,0.017483929172158,-0.0046691833995283],[0.012597105465829,0.028356250375509,0.060469351708889]],[[0.0081331022083759,-0.063092619180679,0.043080262839794],[0.0018660475034267,0.019178947433829,-0.04791359603405],[-0.071757458150387,-0.04274120926857,-0.0052391244098544]],[[-0.034479923546314,0.049336735159159,-0.073792524635792],[0.040584459900856,0.039792828261852,0.03964039310813],[0.087140761315823,0.092849783599377,0.036166377365589]],[[-0.0064738127402961,-0.073060162365437,0.045161545276642],[0.019015999510884,0.079007044434547,-0.071053028106689],[-0.043834459036589,0.027766799554229,-0.0014939625980332]],[[0.02428100630641,-0.049874447286129,0.036104813218117],[0.012025725096464,0.068580642342567,0.00033532408997416],[0.0043901046738029,0.048261795192957,-0.0029972854536027]],[[-0.010108673945069,0.0059684081934392,-0.0051238988526165],[0.064049877226353,0.017652980983257,0.028865568339825],[-0.05184293910861,0.069035597145557,0.028723629191518]],[[0.092919535934925,0.045660279691219,0.086551487445831],[-0.03579743206501,0.05956469103694,-0.0014778835466132],[0.090716831386089,-0.0018953576218337,-0.01450228318572]],[[0.033461451530457,0.0089309047907591,0.011848650872707],[0.017455829307437,0.063523322343826,0.043337911367416],[-0.0040830201469362,-0.040515094995499,0.028448166325688]],[[0.029876323416829,-0.040383793413639,0.030696449801326],[0.060529641807079,0.025162091478705,0.015091572888196],[0.052717164158821,-0.017727091908455,-0.0049041174352169]],[[0.050407540053129,0.025318644940853,0.052900016307831],[-0.051239803433418,-0.01971697434783,0.02150990255177],[0.016837935894728,0.017365520820022,0.016925849020481]],[[0.0095725441351533,0.070921137928963,0.072181865572929],[0.0013244199799374,-0.051321763545275,0.046011138707399],[0.059787951409817,0.042789988219738,0.036811072379351]],[[0.021729158237576,0.054018646478653,-0.063776135444641],[0.020114405080676,-0.052821889519691,-0.0072614010423422],[-0.0059328079223633,-0.015889653936028,0.016803376376629]],[[-0.026197353377938,-0.046959262341261,-0.059658173471689],[0.025255586951971,0.0082618528977036,-0.0049567241221666],[-0.070707522332668,-0.043834052979946,0.0149533636868]],[[-0.027611594647169,0.036683674901724,-0.038776833564043],[0.04242392256856,0.02187211252749,0.035852558910847],[0.07661634683609,0.0091873779892921,0.023169476538897]],[[-0.028568554669619,-0.046021673828363,0.023803811520338],[-0.023469850420952,-0.029551632702351,-0.019105656072497],[0.037019930779934,-0.0043263332918286,-0.013919843360782]],[[0.008468016050756,0.069822035729885,0.018140252679586],[0.089676648378372,0.00054850796004757,0.039028353989124],[0.035860616713762,0.01485905982554,0.065106362104416]],[[0.057197164744139,0.065789237618446,-0.0072965892031789],[0.025861391797662,0.061989277601242,0.016492562368512],[0.014658959582448,-0.05845220759511,0.0024918993003666]],[[0.077985867857933,-0.037108104676008,0.072952926158905],[-0.027448700740933,0.01689363643527,-0.035493601113558],[0.069915808737278,-0.021820735186338,0.020424200221896]],[[0.027666389942169,0.0086360713467002,0.042005330324173],[0.0044015920720994,-0.011043616570532,0.010570744052529],[0.087641552090645,-0.0039557064883411,0.10989212989807]],[[0.05338141694665,0.0030807626899332,-0.090504921972752],[0.02944490686059,-0.067485608160496,-0.00039634431595914],[-0.03551783785224,-0.017739627510309,-0.038380898535252]],[[0.042909279465675,-0.018587224185467,0.035760063678026],[-0.019501183182001,-0.0022779922001064,0.0055950810201466],[0.048015739768744,0.058809082955122,0.028412830084562]],[[-0.042378649115562,0.022115085273981,-0.019335666671395],[0.050771743059158,0.054736975580454,0.0076914657838643],[0.0017321589402854,-0.04715272039175,-0.0075179287232459]],[[0.041468448936939,-0.0091463997960091,-0.015545484609902],[0.023220118135214,0.10142292827368,0.0041094138287008],[0.068565495312214,0.018903687596321,0.096079342067242]],[[0.057216592133045,-0.046017713844776,-0.018335802480578],[0.011454383842647,0.090372107923031,0.030308563262224],[0.0018859072588384,-0.020876744762063,0.04095046594739]],[[0.013953451998532,0.0055775945074856,-0.050131566822529],[-0.022303108125925,-0.029792338609695,0.0042563322931528],[0.029651550576091,0.045010279864073,0.028708731755614]],[[-0.0067432699725032,-0.039841745048761,0.14561754465103],[0.047132849693298,0.1615092009306,0.00028188107535243],[-0.10169559717178,-0.0089657139033079,0.069912165403366]],[[-0.016644118353724,-0.00090931501472369,0.016646472737193],[0.063070699572563,-0.030046511441469,-0.030592920258641],[-0.025782644748688,-0.018502378836274,-0.045764397829771]],[[0.02944609709084,0.025608265772462,0.03224691003561],[0.015416653826833,-0.003628886770457,0.0099418945610523],[0.045946095138788,-0.00030835252255201,-0.025577766820788]],[[-0.0064032804220915,0.027491318061948,-0.052990291267633],[-0.026671389117837,0.067986808717251,0.050188757479191],[0.063099697232246,0.0016221383120865,-0.0066416906192899]],[[-0.046506322920322,-0.0014838215429336,0.012911816127598],[0.058543305844069,-0.044453673064709,-0.026322720572352],[-0.0041921162046492,0.069609582424164,-0.028688473626971]],[[-0.093667604029179,-0.053978089243174,-0.022452650591731],[-0.060094457119703,0.039043311029673,-0.010292617604136],[-0.040094539523125,-0.020711652934551,-0.039390046149492]],[[0.096262685954571,0.020492801442742,-0.023194082081318],[0.06695731729269,0.085636481642723,0.029138660058379],[0.014747273176908,0.031826794147491,-0.0047902297228575]],[[0.049517475068569,0.031603783369064,0.055227130651474],[0.0023607700131834,0.00047442124923691,0.062910430133343],[-0.041753407567739,-0.026577599346638,-0.0041962102986872]],[[-0.062385082244873,0.07195982336998,0.0054049091413617],[0.0012406811583787,0.012815626338124,0.030625948682427],[0.0066835982725024,0.033228565007448,-0.033638067543507]],[[0.067345097661018,-0.048782363533974,0.046131569892168],[0.061264883726835,-0.0011819810606539,0.014795726165175],[-0.018547160550952,-0.066887050867081,0.018540028482676]],[[-0.02027240768075,0.073263213038445,0.0065707196481526],[0.0093662673607469,-0.063502639532089,-0.001728095812723],[0.023343201726675,-0.019500453025103,0.033682700246572]],[[0.098537087440491,-0.058544006198645,-0.0085599459707737],[0.019645962864161,-0.038271326571703,0.052606917917728],[-0.034925300627947,-0.037510246038437,-0.022196978330612]],[[0.0053661824204028,0.025466220453382,0.04952647164464],[-0.02616099268198,0.05708871036768,-0.06993392854929],[0.064792208373547,-0.0039804251864552,0.036302659660578]],[[0.077911123633385,0.015971815213561,0.079335369169712],[0.028370058164001,0.062865845859051,0.019778158515692],[0.046486958861351,-0.0018596504814923,0.018661934882402]],[[0.10226411372423,-0.0049136281013489,-0.01448786444962],[0.0051612569950521,0.0041067251004279,0.13214890658855],[0.0029055911581963,-0.042673744261265,0.024996707215905]],[[-0.0021271540317684,0.045683808624744,0.029677698388696],[0.073088511824608,-0.029870793223381,0.0025860359892249],[-0.014139098115265,0.011408570222557,-0.01632690988481]],[[0.03604282438755,0.046742998063564,0.056675989180803],[0.052672903984785,0.034210011363029,0.025535358116031],[0.036075212061405,0.049978278577328,0.0045213396660984]],[[0.031240092590451,-0.0038440206553787,0.023966101929545],[0.014987513422966,-0.06602618843317,0.067339144647121],[0.00085095362737775,0.038674123585224,-0.033644322305918]],[[0.050277888774872,-0.0013915165327489,0.052552212029696],[-0.059452924877405,-0.026251534000039,0.028477568179369],[0.018461812287569,3.4616503398865e-05,0.067835800349712]],[[0.029892221093178,0.031540207564831,0.027887003496289],[0.003251044312492,0.009045279584825,0.011213441379368],[0.065084882080555,0.072039559483528,-0.028072344139218]],[[-0.046375419944525,-0.011683317832649,0.005305603146553],[-0.061756864190102,-0.05706612020731,0.024203741922975],[-0.024232026189566,-0.044228587299585,-0.016079010441899]],[[0.052065461874008,0.108642347157,0.096724770963192],[0.018921351060271,0.090853348374367,-0.0082269981503487],[0.089449398219585,0.065673634409904,0.060873359441757]],[[-0.037561193108559,0.048232600092888,0.095649793744087],[-0.013828095048666,2.0231180315022e-05,-0.00040288077434525],[0.018552934750915,0.056365840137005,0.037277404218912]],[[0.028864966705441,0.017570456489921,0.066491395235062],[0.019180664792657,-0.0191889423877,0.0025416081771255],[0.0079148644581437,-0.019805448129773,-0.025144681334496]],[[-0.018699243664742,0.017627945169806,0.046041756868362],[0.005208850838244,0.025461534038186,0.067735955119133],[-0.010566411539912,-0.017001144587994,0.044010438024998]],[[0.062741070985794,0.021991994231939,-0.027645019814372],[0.013886108994484,0.042997576296329,-0.038447108119726],[0.0096765216439962,-0.053480945527554,-0.01545562595129]],[[-0.008052428252995,0.049182131886482,0.035431437194347],[0.011413448490202,0.04714684933424,-0.016922581940889],[0.029943164438009,0.11173275113106,0.017659660428762]],[[-0.022750226780772,0.11627854406834,-0.049763649702072],[0.028563119471073,0.023144662380219,0.063833214342594],[-0.074203372001648,0.063304223120213,0.056562021374702]],[[0.060921359807253,0.063570976257324,0.032815158367157],[0.062187016010284,-0.0024823879357427,0.013713100925088],[0.017605813220143,0.025421731173992,0.044888876378536]],[[-0.013687022961676,-0.036126270890236,0.006006047129631],[0.041081864386797,-0.013785543851554,0.06016032397747],[-0.038519211113453,0.009435810148716,-0.022434566169977]],[[0.0049251387827098,0.08772511780262,-0.029175514355302],[-0.051708813756704,0.0028559039346874,0.0027304203249514],[0.046574108302593,-0.023098092526197,0.015023642219603]],[[0.0058702984824777,0.024177821353078,0.056323204189539],[0.085025541484356,0.02865962870419,0.074678920209408],[0.075939662754536,0.013915489427745,0.045980729162693]],[[-0.05174146220088,0.025231750681996,-0.0094474945217371],[-0.025103183463216,-0.035809565335512,0.043747197836637],[-0.039177253842354,0.0026835137978196,-0.1006031408906]],[[-0.071029089391232,-0.031736075878143,0.041127700358629],[-0.020161289721727,-0.018762363120914,-0.038747046142817],[-0.025145435705781,-0.033880453556776,-0.01243363879621]],[[0.039837758988142,0.015150640159845,0.013314970768988],[0.039315216243267,0.074727408587933,0.017390083521605],[0.024398609995842,0.11914671212435,0.0005012244801037]],[[0.00086063961498439,0.04804116114974,-0.028863836079836],[0.010240373201668,0.10368309915066,0.0087925521656871],[0.019427245482802,0.055723126977682,0.01073504704982]],[[0.061411708593369,-0.03135759010911,0.024969339370728],[-0.01008777320385,0.038275361061096,0.029310809448361],[-0.024097856134176,0.10943921655416,0.043504204601049]],[[0.016234375536442,0.06930822879076,0.033336862921715],[0.089113190770149,0.040430556982756,0.046092081815004],[-0.012999108992517,0.10978350043297,0.082953400909901]],[[0.025390254333615,0.020843170583248,-0.012582654133439],[0.053626667708158,0.045868571847677,0.027868065983057],[-0.038900800049305,0.029600717127323,0.047650009393692]],[[-0.079541318118572,-0.02018884010613,-0.04768780618906],[-0.007992253638804,-0.045647192746401,0.0047485292889178],[-0.015708442777395,0.0055525018833578,-0.057042676955462]],[[0.024175176396966,-0.011329566128552,0.007225894369185],[0.01734621822834,0.033537171781063,-0.030186789110303],[-0.031389523297548,0.0071695228107274,-0.0074237850494683]],[[0.038429614156485,0.029368801042438,0.019797479733825],[0.0750368013978,0.022356446832418,0.030070278793573],[0.055015753954649,0.056688077747822,-0.0091562857851386]],[[-0.019050974398851,-0.01408414170146,0.067384876310825],[0.0024278946220875,0.011223619803786,0.037479519844055],[0.015321810729802,0.11899106949568,0.042755518108606]],[[0.01291008386761,-0.019373441115022,0.047126058489084],[0.026102939620614,0.095942810177803,-0.049367755651474],[-0.013112356886268,0.02200117893517,-0.021824214607477]],[[-0.047993451356888,0.034662764519453,-0.021965812891722],[-0.018187686800957,0.0033184804487973,0.043301120400429],[0.013197208754718,0.061695698648691,-0.0026707632932812]],[[0.070171497762203,0.074676312506199,0.036044850945473],[0.051646020263433,0.093170367181301,0.0710564032197],[0.0011604534229264,-0.0081073297187686,0.068922974169254]],[[-0.014295013621449,0.053418315947056,0.00090128876036033],[0.073568649590015,-0.0080623161047697,0.086101092398167],[0.022815035656095,0.021369609981775,0.0062283575534821]],[[0.056474316865206,-0.0159324798733,0.0054179187864065],[0.056629341095686,-0.057017188519239,0.012037070468068],[0.0051358323544264,-0.016472574323416,-0.020047845318913]],[[0.035920787602663,-0.035926345735788,-0.028639484196901],[0.049427758902311,0.048736363649368,0.10449286550283],[-0.016635870561004,-0.012060588225722,-0.057929825037718]],[[-0.023798424750566,-0.0011566033354029,0.062115661799908],[0.0111891515553,-0.012554825283587,-0.020912198349833],[0.023663578554988,-0.010567596182227,0.022842044010758]],[[-0.03636896982789,0.015274735167623,0.018122781068087],[0.040260136127472,-0.01983205601573,0.075832039117813],[0.034788783639669,0.12495896965265,0.039032157510519]],[[0.015650805085897,0.0046634543687105,-0.043584182858467],[0.084303714334965,0.050927795469761,-0.019943710416555],[0.012149610556662,0.029279625043273,-0.004814418964088]],[[-0.01021874230355,-0.081688672304153,0.034414485096931],[0.041441690176725,0.036932718008757,0.036277234554291],[0.087658494710922,0.034453433007002,0.043477855622768]],[[-0.061328813433647,-0.021460950374603,-0.0054653324186802],[-0.003345150500536,0.013264927081764,0.072025015950203],[-0.0047026011161506,0.03948724642396,0.034119453281164]],[[-0.0088230120018125,-0.07984184473753,-0.044148970395327],[-0.031070137396455,0.0048769321292639,-0.10423622280359],[-0.096712671220303,-0.0066783735528588,-0.01908734254539]],[[0.064835950732231,0.03688171505928,0.051571939140558],[-0.00070624251384288,-0.053965844213963,-0.015941042453051],[0.10949998348951,-0.010008877143264,0.035549566149712]],[[-0.048093970865011,-0.04598681256175,-0.0030907278414816],[-0.052133154124022,0.04561448469758,-0.033626485615969],[-0.028285663574934,-0.04135537520051,0.037014100700617]],[[-0.045752555131912,0.010760254226625,-0.095406800508499],[-0.046117804944515,-0.019318047910929,-0.038737710565329],[0.00048792906454764,-0.014157211408019,0.069574221968651]],[[-0.046897660940886,0.0043705152347684,-0.053612548857927],[0.0041991779580712,-0.05183070898056,-0.02369812130928],[-0.075856201350689,0.011204641312361,0.0023249979130924]],[[0.09031879901886,0.032347336411476,0.011738724075258],[0.031288061290979,-0.029015282168984,-0.0094420434907079],[-0.021605243906379,-0.018057035282254,0.028184339404106]],[[0.03282817825675,0.072209000587463,-0.010850241407752],[0.046486750245094,0.010539433918893,0.021866045892239],[-0.048642009496689,0.061457499861717,-0.0075861029326916]],[[-0.089849211275578,0.044257834553719,-0.024000449106097],[-0.12723955512047,-0.06807105243206,0.056701824069023],[0.03139341622591,-0.0055893948301673,-0.038865625858307]],[[-0.024357117712498,-0.068492382764816,0.073747836053371],[-0.0041647157631814,0.059360444545746,0.075518637895584],[0.033942181617022,-0.055218532681465,0.043449673801661]],[[-0.052910469472408,-0.01923793181777,-0.021000003442168],[-0.041501626372337,-0.10733055323362,-0.00039860705146566],[0.037889271974564,0.034414239227772,-0.030803512781858]],[[0.0626021027565,-0.048468418419361,-0.12241797894239],[-0.030936270952225,-0.024662086740136,-0.070936642587185],[0.0025232324842364,0.047988910228014,0.055515583604574]],[[0.0065446030348539,0.039056662470102,0.013292387127876],[-0.0084244823083282,0.030103178694844,-0.014338401146233],[0.040002211928368,-0.032549861818552,-0.035475663840771]],[[0.099055856466293,-0.011498970910907,0.10424298048019],[-0.0051562921144068,0.051134515553713,-0.01483135484159],[-0.044233426451683,-0.001510753063485,-0.052825815975666]],[[-0.075292900204659,-0.042859461158514,0.0045771393924952],[0.055014528334141,-0.061934553086758,0.064728230237961],[0.016756625846028,-0.023891789838672,-0.07362973690033]],[[0.06054088845849,0.032578464597464,0.0073863160796463],[-0.035664360970259,0.0051884236745536,0.018604032695293],[0.012114813551307,0.068551659584045,0.03253261372447]],[[-0.062609568238258,-0.052081696689129,-0.032773192971945],[0.048944447189569,-0.037268195301294,-0.037736717611551],[0.022992657497525,-0.056507721543312,0.0058397357352078]],[[0.016424713656306,-0.013196217827499,-0.020011888816953],[0.061250474303961,0.038814432919025,-0.059959750622511],[0.036448378115892,0.0026602565776557,-0.0057709678076208]],[[0.078217968344688,-0.00085667299572378,0.044655300676823],[-0.042682554572821,-0.038212362676859,-0.03519494086504],[-0.019699124619365,0.025832643732429,0.02136947773397]]],[[[-0.024794215336442,-0.017511313781142,0.012247938662767],[-0.028615538030863,0.010135552845895,-0.0096319112926722],[0.041435431689024,0.01984603330493,-0.052208788692951]],[[0.001787748769857,-0.025249924510717,-0.010298383422196],[0.012732090428472,0.021426521241665,-0.023480869829655],[-0.061569418758154,0.006378619465977,0.051287215203047]],[[0.085148259997368,-0.021546738222241,-0.028657872229815],[-0.09068601578474,0.060975272208452,0.0082459822297096],[-0.0044144918210804,0.047922171652317,-0.052839830517769]],[[-0.034299917519093,-0.0066332477144897,-0.044619802385569],[0.02477746270597,0.11568384617567,0.04154484719038],[0.027331154793501,0.045631244778633,0.089088298380375]],[[0.012510241940618,0.041125237941742,-0.011921561323106],[0.05272776260972,0.049424283206463,-0.024490371346474],[0.027230136096478,0.008582703769207,-0.022620655596256]],[[0.051642026752234,0.034071106463671,0.038656022399664],[0.038638681173325,-0.043626468628645,-0.00080437515862286],[0.00077665073331445,0.021835768595338,0.036984954029322]],[[0.018351290374994,0.01126077119261,0.039482001215219],[-0.032687347382307,0.019777351990342,-0.043976314365864],[0.011197944171727,-0.00035848451079801,0.0027191499248147]],[[-0.020101562142372,0.015359091572464,0.022247469052672],[-0.015406779013574,-0.073664300143719,0.057300720363855],[-0.074114128947258,0.023013019934297,0.029661672189832]],[[0.043250992894173,0.030397683382034,0.018993055447936],[-0.01275678165257,0.014029112644494,0.016038237139583],[0.10410882532597,0.027918381616473,0.030322575941682]],[[-0.0042859427630901,-0.00084263895405456,0.063011802732944],[-0.05084840208292,0.018528895452619,-0.048828318715096],[0.08364774286747,-0.010870564728975,0.11915849149227]],[[-0.03105479106307,0.056373089551926,0.054363392293453],[0.0040325005538762,0.066727943718433,0.065410986542702],[0.03304535523057,0.016416670754552,0.00052615551976487]],[[0.049253486096859,0.082491479814053,-0.015761943534017],[0.12737521529198,0.0994907990098,0.10287596285343],[0.05241034924984,0.12477560341358,0.15533308684826]],[[0.040233194828033,0.0082415826618671,-0.025458911433816],[-0.0063920626416802,0.0087641105055809,-0.034436695277691],[0.019761146977544,-0.012037785723805,-0.051756870001554]],[[0.012472987174988,0.028210438787937,-0.011496846564114],[0.040095049887896,-0.0070629213005304,-0.00063266680808738],[0.007759615778923,-0.061248134821653,-0.015948563814163]],[[0.053425636142492,0.061959985643625,-0.015443718060851],[0.13888362050056,0.032746627926826,0.015552677214146],[0.091814316809177,-0.00084052141755819,0.13852167129517]],[[-0.014960722997785,0.051389932632446,0.029176007956266],[-0.022756539285183,0.050486620515585,0.05957467854023],[0.020880816504359,0.037132807075977,0.055398665368557]],[[0.088610664010048,-0.0049333199858665,0.033177062869072],[-0.021966686472297,-0.0041338591836393,-0.015830526128411],[0.0063020400702953,0.02072467841208,0.033246226608753]],[[-0.030862828716636,-0.020235970616341,0.11679469048977],[0.062402326613665,-0.0356165766716,0.074791379272938],[0.060266729444265,0.095641359686852,0.082205213606358]],[[-0.021230844780803,0.026675030589104,0.037367295473814],[0.0003279730444774,0.093862615525723,0.056890852749348],[0.027957843616605,0.035250272601843,0.0045882021076977]],[[-0.011563670821488,0.061062403023243,0.036890581250191],[0.00082808628212661,0.017322300001979,0.019943747669458],[0.010888399556279,-0.037570640444756,0.032179445028305]],[[-0.067410156130791,-0.051897298544645,-0.028523815795779],[-0.026548538357019,-0.0077363946475089,-0.12651969492435],[-0.059436418116093,-0.021582797169685,-0.10832521319389]],[[-0.0011041263351217,0.035419628024101,0.10981111228466],[0.044215559959412,0.061038196086884,0.0060744513757527],[-0.044930811971426,-0.0097514418885112,0.054814238101244]],[[0.013847671449184,0.00771066499874,-0.035868417471647],[0.027646878734231,0.077318139374256,-0.0042721717618406],[0.019674858078361,0.010694812051952,0.029587369412184]],[[0.037524469196796,0.014957841485739,0.046757355332375],[-0.030590521171689,0.049158159643412,-0.063395813107491],[0.01837514154613,-0.0023980280384421,0.008694845251739]],[[0.068359538912773,0.028325347229838,0.025545280426741],[-0.010037484578788,0.13299024105072,0.049395140260458],[0.064056895673275,0.12434078752995,0.069347694516182]],[[0.055656209588051,-0.022261125966907,-0.0063089760951698],[0.024963835254312,-0.02207238599658,0.035784590989351],[0.096872970461845,0.016967110335827,0.14679887890816]],[[0.041231639683247,0.098244778811932,0.05492939054966],[0.0087348120287061,0.066804975271225,0.11431414633989],[-0.0028526652604342,-0.032734222710133,-0.018502930179238]],[[0.042847275733948,0.036707881838083,0.095309503376484],[-0.014185513369739,0.036282360553741,0.078893609344959],[0.051190186291933,0.033419404178858,-0.0027665123343468]],[[0.0051941005513072,0.017869086936116,0.05087111517787],[-0.0082818074151874,0.015337779186666,-0.025625709444284],[0.023807011544704,-0.027722893282771,0.0046660946682096]],[[-0.1020677909255,0.074326284229755,-0.04665333032608],[0.017713075503707,0.024323372170329,-0.049956522881985],[0.018454013392329,-0.027933891862631,-0.014982325024903]],[[-0.037131726741791,-0.053112041205168,0.030685162171721],[-0.037940587848425,0.077519357204437,0.037830885499716],[0.067421972751617,-0.021784303709865,-0.06483905762434]],[[0.034730967134237,-0.0014074329519644,-0.027862751856446],[-0.036370173096657,0.00049074599519372,0.02868889644742],[-0.044009801000357,0.025458984076977,0.050646007061005]],[[-0.042068276554346,-0.076027043163776,0.02251547947526],[-0.051681477576494,0.055212393403053,-0.0058276397176087],[0.022955358028412,-0.084659866988659,0.025978410616517]],[[0.025777630507946,0.025031672790647,-0.034629382193089],[0.089281588792801,-0.076724760234356,0.038551691919565],[-0.01646925508976,0.0047759506851435,-0.0040385746397078]],[[0.0082059586420655,-0.063046142458916,-0.00096359068993479],[0.01578208617866,-0.0065228203311563,-0.058750487864017],[-0.042551923543215,0.024009507149458,0.00049668131396174]],[[0.045468859374523,0.038299530744553,0.010261395946145],[0.077799156308174,0.011270130053163,0.022431258112192],[0.054230079054832,-0.0050966115668416,-0.012793079018593]],[[0.00682119326666,0.056882925331593,-0.053361512720585],[-0.00098683754913509,0.03819315508008,0.01741205714643],[0.089524060487747,0.067821569740772,0.071834176778793]],[[-0.042558796703815,0.014931371435523,0.063396170735359],[-0.045722089707851,-0.089527957141399,0.0095542734488845],[0.013826538808644,-0.0094563420861959,0.078765675425529]],[[0.042764086276293,-0.030417727306485,0.0042125987820327],[0.0017228215001523,0.095559075474739,0.0041576800867915],[-0.0057374974712729,-0.0040862285532057,-0.047889571636915]],[[0.025082955136895,0.030837155878544,0.016380472108722],[0.028551582247019,-0.029162438586354,-0.014051110483706],[0.022568885236979,0.071571379899979,0.081517785787582]],[[0.020834531635046,0.02341060526669,0.01626399345696],[-0.04324459657073,0.012075549922884,0.055603466928005],[-0.05014156550169,0.0060521648265421,-0.073739975690842]],[[0.0087871514260769,-0.034203045070171,-0.031355004757643],[0.012318570166826,0.043158300220966,0.0028159129433334],[0.08185838162899,0.029884468764067,-0.021478252485394]],[[0.06857331097126,0.081818118691444,0.10115251690149],[0.060529995709658,0.033885952085257,-0.028751036152244],[0.15882141888142,0.0062218895182014,0.048729348927736]],[[-0.02088363468647,-0.0049441382288933,0.017821313813329],[0.026060314849019,0.018428733572364,0.070329517126083],[0.03919779509306,-0.022651188075542,0.00078131922055036]],[[-0.01376876141876,0.028767112642527,0.046316578984261],[0.035379610955715,0.079416319727898,0.0041027604602277],[0.039063163101673,-0.0054066875018179,0.0080581679940224]],[[0.02421597391367,0.0086344555020332,0.042796529829502],[-0.083455115556717,0.015517682768404,0.023629395291209],[-0.049025259912014,-0.040039770305157,-0.025272216647863]],[[0.040343873202801,-0.068414896726608,0.078492522239685],[0.067667685449123,-0.045013181865215,0.05324974656105],[0.10543853789568,-0.0014885663986206,0.066262096166611]],[[0.045590572059155,-0.059724234044552,0.0041939471848309],[0.017879175022244,0.088183090090752,0.039152286946774],[-0.0080306502059102,0.021957192569971,0.098525665700436]],[[-0.088530533015728,-0.069495260715485,-0.074650153517723],[0.017693327739835,-0.037113834172487,-0.053944449871778],[-0.030077258124948,-0.019826846197248,-0.0044543440453708]],[[0.021353853866458,0.032991349697113,-0.012501223944128],[0.021105788648129,0.0040029743686318,0.026848297566175],[-0.082188978791237,0.00047209236072376,0.0073872967623174]],[[-0.045074496418238,-0.016288239508867,-0.10123670846224],[-0.054970379918814,-0.00015378194802906,-0.046788699924946],[-0.00014389958232641,-0.027124255895615,-0.034068185836077]],[[0.019739091396332,-0.013327338732779,0.050841882824898],[0.056658212095499,0.0053947535343468,0.071092672646046],[0.086178034543991,0.010879610665143,0.10795628279448]],[[0.048918224871159,0.001895755645819,-0.010654500685632],[-0.012000560760498,0.041120126843452,-0.019936736673117],[-0.0035282196477056,0.0099584646522999,-0.019815528765321]],[[0.10210175067186,0.097539253532887,0.06232400983572],[0.073256507515907,0.017805451527238,0.09275184571743],[0.12832346558571,0.088252037763596,0.0056665255688131]],[[0.02320602349937,0.039356026798487,0.011009828187525],[-0.02266595326364,0.11491909623146,0.082375690340996],[0.029006248340011,0.13592790067196,0.046193387359381]],[[0.0060502169653773,0.04585924744606,-0.015062194317579],[0.012692363932729,0.064023979008198,0.030199220404029],[0.029992429539561,0.020201213657856,0.034272842109203]],[[0.059833697974682,0.019622452557087,0.042122852057219],[-0.018969504162669,0.0069797085598111,0.045689206570387],[0.029389062896371,0.022529315203428,0.063207045197487]],[[0.016314517706633,-0.04262625426054,0.0040332516655326],[0.011426039040089,0.071176536381245,0.021474940702319],[-0.066953793168068,-0.0068474542349577,-0.06508719176054]],[[-0.038438603281975,0.072855517268181,0.030948106199503],[0.023158932104707,-0.023648774251342,0.025981668382883],[0.016313880681992,0.078201681375504,-0.0070993308909237]],[[-0.011319314129651,0.039238885045052,0.0061019090935588],[0.011182943359017,-0.014739711768925,0.14815731346607],[0.050664722919464,0.051180440932512,-0.023523814976215]],[[0.015681564807892,-0.037373516708612,0.034430727362633],[0.12063653022051,0.011080656200647,-0.072858162224293],[-0.012651708908379,0.080843463540077,0.00028354593086988]],[[-0.032593131065369,-0.020232930779457,-0.020778656005859],[-0.081069476902485,0.012061501853168,-0.011185888200998],[-0.0066493866033852,0.019373282790184,-0.040430493652821]],[[0.10488986968994,0.0073046269826591,0.043859079480171],[0.0082279900088906,0.055499561131001,0.033890951424837],[0.028502011671662,0.078759878873825,0.1047096773982]],[[-0.016282895579934,0.05060676112771,-0.042351379990578],[0.0012716657947749,0.032199468463659,0.032484710216522],[0.07571318000555,0.025365550071001,0.0070088487118483]],[[0.064707152545452,-0.0045712850987911,0.083830505609512],[0.051932357251644,-0.0028737518005073,-0.026731284335256],[0.05648273602128,0.049723688513041,0.020497834309936]],[[-0.028863908722997,0.02504407428205,0.044998299330473],[-0.0074494266882539,0.054721299558878,0.0076042623259127],[-0.010290624573827,0.058146096765995,0.056834954768419]],[[0.022555146366358,0.0050547928549349,0.039952307939529],[0.019908817484975,0.13780896365643,0.022359054535627],[0.056264244019985,0.012279557995498,0.00098433077801019]],[[0.078646697103977,-0.021139917895198,0.028856832534075],[0.034948110580444,0.084878444671631,0.014730287715793],[0.070828050374985,0.080202013254166,0.010067951865494]],[[0.11100192368031,0.0055954987183213,0.039244677871466],[0.01770887337625,0.0001255333336303,0.049934245646],[0.068606249988079,0.060142852365971,-0.026669654995203]],[[0.013536180369556,0.030295779928565,0.059695389121771],[0.0097006307914853,0.081726253032684,0.021452277898788],[0.087808266282082,0.03203459084034,0.0092379348352551]],[[0.055733218789101,-0.03399919718504,0.084702588617802],[0.060732189565897,0.02775951102376,0.082810074090958],[0.050503060221672,0.073349252343178,0.066284582018852]],[[-0.0062910527922213,0.0018702195957303,0.050783164799213],[0.0082478644326329,0.042453166097403,-0.0055498429574072],[-0.001843276899308,-4.4648819311988e-05,0.016486879438162]],[[0.029650811105967,0.04585999622941,0.079436868429184],[0.018062917515635,0.063931912183762,0.01945672929287],[0.11576725542545,0.055957682430744,0.11119379848242]],[[-0.040324341505766,-0.040633380413055,-0.0095795318484306],[0.11692501604557,0.0070509440265596,-0.0043371636420488],[-0.04161636158824,0.074088670313358,0.029877439141273]],[[0.061620946973562,0.041055619716644,-0.069314397871494],[0.019274074584246,0.037907637655735,0.057391796261072],[0.031030682846904,0.12108450382948,0.026816105470061]],[[0.058984022587538,-0.02786997705698,0.037530019879341],[-0.025204371660948,-0.087018616497517,-0.0057180421426892],[0.13158009946346,0.032914016395807,0.027866952121258]],[[-0.082916527986526,-0.05445895716548,0.057201460003853],[-0.080243580043316,0.076451525092125,0.00042206179932691],[0.027450889348984,-0.066551491618156,0.0064591062255204]],[[0.088116265833378,0.066221505403519,0.064474269747734],[0.042778972536325,0.08295876532793,0.033076707273722],[0.04908998683095,0.056403107941151,0.028883017599583]],[[-0.025757979601622,0.0039377482607961,0.072236314415932],[-0.021879972890019,0.019525280222297,0.031113220378757],[-0.023321274667978,0.15288428962231,0.023527510464191]],[[0.022371135652065,0.047220911830664,0.0074196686036885],[0.0042221718467772,-0.0091419853270054,0.06747292727232],[0.10537189990282,0.0077445106580853,0.059393126517534]],[[0.069387145340443,-0.011014054529369,0.045530568808317],[0.047337003052235,0.031706489622593,0.053314626216888],[-0.012927952222526,0.0080709811300039,-0.0011213525431231]],[[0.070140510797501,0.058715347200632,0.068136520683765],[-0.0054373084567487,-0.0087740700691938,0.064226269721985],[0.063908889889717,-0.02979788556695,-0.047954469919205]],[[-0.027585085481405,-0.00078359275357798,-0.0081145092844963],[-0.037749402225018,0.040344227105379,-0.019462531432509],[0.002099437173456,0.051127772778273,0.10099945962429]],[[0.061001386493444,-0.0071969591081142,0.030944554135203],[0.11829341948032,0.019894625991583,0.083539597690105],[0.073907867074013,0.023995647206903,0.039976179599762]],[[0.059416331350803,0.091939553618431,0.022371027618647],[0.084374323487282,0.070550188422203,0.046486966311932],[-0.018090222030878,0.052970267832279,0.066196829080582]],[[0.018695306032896,0.040003564208746,-0.0095982169732451],[-0.0003276880888734,-0.014347873628139,0.013973031193018],[-0.010393815115094,-0.026605321094394,0.039320785552263]],[[-0.062193963676691,-0.019355004653335,0.028559332713485],[0.03453229367733,-0.022164037451148,0.049943290650845],[0.057897720485926,-0.0071882451884449,0.017475754022598]],[[0.017717204988003,0.075781993567944,-0.014172689989209],[0.025182701647282,0.018861040472984,-0.012079837732017],[0.014492238871753,-0.031382691115141,0.022102421149611]],[[-0.067134514451027,0.011698035523295,-0.017044296488166],[0.023746676743031,-0.10378544032574,-0.084132336080074],[0.036833997815847,-0.07152883708477,-0.03790245950222]],[[-0.0058745020069182,-0.08688722550869,-0.022596621885896],[0.016106421127915,0.048532575368881,-0.020628616213799],[0.040609661489725,0.0048489063046873,-0.018074022606015]],[[0.066663019359112,-0.057697273790836,-0.0068134432658553],[0.043063130229712,0.0070049776695669,0.065897315740585],[0.10910932719707,0.054572615772486,0.12445475161076]],[[-0.090185783803463,0.049606151878834,0.046132180839777],[-0.013571591116488,-0.080424807965755,-0.041356764733791],[-0.059879194945097,-0.026578437536955,-0.003418599255383]],[[-0.012350711971521,0.018507340922952,-0.030818922445178],[0.018672423437238,0.045337550342083,-0.046063873916864],[-0.076128609478474,0.070553302764893,0.065783798694611]],[[-0.020947176963091,0.040290854871273,0.13388246297836],[0.025421444326639,0.063488945364952,0.081362582743168],[-0.0084806345403194,0.011414253152907,0.059625569730997]],[[0.0081996275112033,-0.087656535208225,-0.027325827628374],[-0.055339127779007,-0.0050737923011184,-0.029921978712082],[0.044558573514223,0.051126576960087,0.04068735614419]],[[-0.0048870048485696,-0.011062032543123,0.012427104637027],[-0.079144857823849,-0.088524803519249,-0.01034446246922],[-0.083744421601295,-0.057249914854765,0.013285903260112]],[[0.057661440223455,0.02023946121335,-0.054184958338737],[0.064964026212692,0.014511069282889,0.025023015215993],[0.060185115784407,0.033111423254013,0.063684739172459]],[[0.0012610881822184,0.0146827949211,0.049582708626986],[-0.0059277005493641,0.039154540747404,-0.00011419542715885],[0.099231012165546,0.048306450247765,0.044201519340277]],[[0.02894065529108,0.034132171422243,0.050594184547663],[-0.024069817736745,0.05789140984416,0.10172481834888],[0.062262132763863,0.070869587361813,0.091433711349964]],[[0.060592908412218,0.022974638268352,0.017074542120099],[0.043329410254955,0.059990644454956,-0.014566548168659],[0.013103320263326,0.037363894283772,0.044889125972986]],[[0.037560943514109,-0.025150027126074,0.012699750252068],[0.031641650944948,0.046807039529085,-0.018843723461032],[0.024405166506767,0.042521316558123,0.036496303975582]],[[0.01406626496464,0.13886781036854,0.11963954567909],[0.053047057241201,0.034419439733028,0.016279282048345],[0.041998811066151,0.095450267195702,0.013645020313561]],[[-0.10928805917501,0.023253347724676,-0.018387468531728],[0.012201027944684,-0.035445973277092,-0.022484721615911],[0.065419420599937,-0.081481337547302,-0.032257523387671]],[[0.09207608550787,-0.10282307863235,-0.085352599620819],[0.04185226559639,-0.023315167054534,-0.040861945599318],[-0.0023109584581107,0.014734071679413,0.0058089229278266]],[[-0.052540939301252,0.022227592766285,0.067123375833035],[-0.025666674599051,0.049954362213612,-0.011985945515335],[0.049869518727064,0.063034273684025,0.015071343630552]],[[0.076770149171352,0.028567286208272,0.020040474832058],[0.013661376200616,-0.049665648490191,0.056033760309219],[-0.050754327327013,0.04934985935688,0.086192972958088]],[[0.053330283612013,-0.020236512646079,0.018801223486662],[0.010218416340649,0.073424458503723,0.090812757611275],[0.04782821983099,-0.063147842884064,0.024392714723945]],[[-0.022501239553094,0.033663012087345,-0.0011146205943078],[0.019656894728541,0.029114939272404,0.018217468634248],[0.1029349192977,0.0049898512661457,0.11521969735622]],[[0.035890471190214,-0.0048119323328137,0.030352341011167],[0.039801102131605,-0.015994222834706,-0.0014546302845702],[0.0019724783487618,-0.00070033967494965,-0.054807081818581]],[[0.0044442494399846,0.049516331404448,-0.03264357149601],[0.052423175424337,-0.028067795559764,-0.0025212415494025],[0.065954327583313,-0.033937957137823,0.014660390093923]],[[-0.11085265874863,-0.12817116081715,-0.14453655481339],[-0.15016101300716,-0.082909613847733,-0.12854643166065],[-0.13414749503136,-0.16156066954136,0.012662809342146]],[[0.0095824524760246,-0.089984826743603,-0.0069017349742353],[0.069674231112003,0.029939748346806,0.013494091108441],[5.5671876907581e-05,0.022664796561003,0.047683257609606]],[[-0.076996080577374,-0.071418434381485,-0.040991626679897],[-0.031495966017246,0.018305217847228,0.067068964242935],[-0.050302904099226,-0.074611306190491,0.030865935608745]],[[-0.043529629707336,0.021472165361047,-0.024698439985514],[0.013358872383833,-0.032255079597235,-0.023952733725309],[-0.0084533970803022,-0.02055842615664,-0.02035703882575]],[[0.0085675977170467,0.0035079151857644,0.0059955106116831],[-0.0071917404420674,-0.0069491327740252,0.013297787867486],[-0.041228029876947,0.099981650710106,-0.088988564908504]],[[-0.011527714319527,0.030797516927123,0.0012737268116325],[0.063891649246216,0.03601586446166,0.047284483909607],[0.054650887846947,-0.015443376265466,0.051625180989504]],[[-0.05382527038455,0.041745290160179,0.054489843547344],[0.035158846527338,0.066377781331539,-0.043015170842409],[-0.034924816340208,-0.044480141252279,0.039510000497103]],[[0.082283690571785,0.052491780370474,0.066520817577839],[0.041325647383928,0.058383151888847,0.029016325250268],[0.0070926961489022,-0.025024717673659,0.087385624647141]],[[0.03220983222127,-0.038469661027193,-0.0042598997242749],[0.045152772217989,0.026604562997818,-0.059753935784101],[0.08301317691803,0.10211402177811,0.059717494994402]],[[0.09833736717701,0.018937315791845,-0.036177285015583],[-0.019022826105356,0.046112228184938,-0.067546024918556],[0.08845230191946,0.082653246819973,-0.014608369208872]],[[-0.038655646145344,-0.11617606878281,-0.014219471253455],[0.01678485609591,0.014776896685362,0.027940381318331],[0.048249054700136,0.015899425372481,0.018435548990965]],[[0.0010408278321847,0.011117762885988,0.053392197936773],[0.0098657254129648,0.031207079067826,0.030596375465393],[0.042345982044935,0.076228134334087,0.080912604928017]],[[-0.015935651957989,-0.065058499574661,-0.034751664847136],[0.051164388656616,0.016458552330732,0.052495248615742],[0.042226660996675,-0.030914779752493,-0.020671620965004]],[[0.016233947128057,-0.019217226654291,-0.0038947889115661],[-0.014405634254217,-0.016573363915086,-0.041439283639193],[0.020345592871308,0.041077207773924,-0.023656342178583]],[[0.01377219054848,-0.040342103689909,0.034314263612032],[0.047445818781853,0.053689382970333,-0.0059701828286052],[0.0066810171119869,0.0053879548795521,0.057333186268806]],[[0.084320247173309,0.032117214053869,-0.0014798479387537],[0.0088135879486799,-0.035301670432091,-0.0025564515963197],[0.047311447560787,0.030490232631564,0.030882891267538]],[[0.075560793280602,0.0093809673562646,0.095479838550091],[0.053906176239252,-0.042489323765039,0.019058980047703],[0.013106954284012,-0.032731894403696,0.020021451637149]],[[0.018707774579525,-0.029977666214108,0.031668614596128],[0.065947070717812,0.065164692699909,-0.030306914821267],[-0.013233759440482,0.069337360560894,0.019043738022447]]],[[[-0.032173853367567,0.0096525214612484,0.0062021263875067],[0.013117324560881,-0.024479851126671,0.041453011333942],[0.0088238846510649,0.068820029497147,0.012452243827283]],[[-0.020491510629654,0.1068382486701,0.021416019648314],[0.071466363966465,0.03389199078083,-0.039060052484274],[-0.016753531992435,0.03099818341434,0.006845114286989]],[[-0.080098941922188,0.073071777820587,-0.012398552149534],[-0.04194051772356,0.045966703444719,0.028203684836626],[-0.047156009823084,0.026988575235009,-0.013287488371134]],[[0.019957968965173,-0.028943886980414,-0.0061836647801101],[0.018598159775138,0.016541346907616,0.006352131254971],[-0.018060345202684,0.052685745060444,-0.044457025825977]],[[0.0029632742516696,0.067418783903122,0.022476218640804],[0.023744059726596,0.034628879278898,0.06038935109973],[-0.012318911030889,-0.00088322308147326,-0.053502433001995]],[[-0.02650285884738,-0.035983555018902,0.014320649206638],[-0.059975981712341,0.10065076500177,0.01472435798496],[-0.069625057280064,0.11860056221485,-0.04505667090416]],[[-0.055428024381399,-0.081373453140259,-0.033815953880548],[-0.044084999710321,-0.0080686770379543,-0.027412811294198],[-0.019591232761741,0.069230727851391,0.0043147751130164]],[[0.0011488491436467,0.068375669419765,-0.0053332899697125],[0.04653674736619,-0.032468594610691,0.036733042448759],[-0.0099630979821086,-0.070322342216969,-0.04029617831111]],[[-0.0061665079556406,-0.033502113074064,-0.039412975311279],[0.047330182045698,0.032146416604519,0.004028988070786],[-0.070131130516529,0.015608628280461,-0.10996571928263]],[[0.06190088018775,-0.028963545337319,-0.019492605701089],[-0.042803835123777,0.045272693037987,-0.028587995097041],[-0.031563561409712,0.016060061752796,0.034357100725174]],[[0.051093496382236,0.012189220637083,0.034762345254421],[-0.0074025462381542,-0.013687679544091,0.0015468021156266],[0.028067218139768,-0.010337798856199,0.017765022814274]],[[0.039916917681694,0.034174751490355,-0.018605450168252],[0.012000638060272,0.017598571255803,0.067990705370903],[0.029459623619914,-0.022762222215533,-0.0054131792858243]],[[0.046079553663731,0.06057446077466,0.049224175512791],[-0.017119767144322,-0.01589578576386,-0.0078180162236094],[-0.049221906810999,0.045989993959665,0.041224110871553]],[[0.0078812465071678,-0.0094286678358912,-0.043123837560415],[-0.023237623274326,-0.02575620636344,0.002930885180831],[-0.011197371408343,0.050528276711702,0.0090920832008123]],[[-0.044492822140455,-0.010378406383097,0.054599333554506],[0.045765474438667,-0.098703280091286,0.0239347089082],[-0.058716040104628,0.03946340456605,-0.022201931104064]],[[-0.013996997848153,-0.035344213247299,0.050137046724558],[0.0068708439357579,-0.025648174807429,-0.017694395035505],[0.0597706399858,-0.010435624048114,-0.00062733050435781]],[[-0.01061372552067,0.055737815797329,-0.078511483967304],[-0.014342943206429,-0.04459635540843,-0.023550547659397],[0.063127256929874,-0.048995282500982,-0.024981016293168]],[[-0.02694901637733,-0.0032518815714866,-0.047481808811426],[0.053074683994055,0.017102714627981,-0.025203896686435],[0.019529853016138,0.030027445405722,0.043440006673336]],[[0.021098867058754,0.018251035362482,-0.069389753043652],[0.016418782994151,-0.016076188534498,-0.018593365326524],[0.03959883004427,-0.028398245573044,-0.05690123513341]],[[0.04846229031682,-0.071977943181992,0.042503025382757],[-0.053784348070621,-0.065007217228413,0.015799688175321],[0.004762944765389,0.015714133158326,0.095330752432346]],[[-0.014902058057487,-0.045556850731373,0.032410550862551],[0.036769408732653,-0.0081303063780069,-0.0226108469069],[-0.030995842069387,0.039880957454443,-0.007761619053781]],[[0.0073479781858623,-0.076748184859753,0.027595253661275],[0.0048061208799481,0.00086851528612897,-0.012594413943589],[-0.0052342619746923,-0.018973495811224,0.029378151521087]],[[0.023020632565022,-0.069084167480469,0.056034471839666],[0.05821480229497,-0.043418906629086,-0.030937060713768],[0.0004402477061376,0.02691668830812,0.0011019572848454]],[[-0.021668411791325,-0.026261162012815,-0.020209154114127],[0.016189619898796,-0.0011616222327575,0.046081487089396],[-0.01674278639257,-0.049654189497232,-0.062219694256783]],[[0.082671627402306,-0.074645020067692,-0.036903068423271],[0.0076869102194905,-0.079700775444508,-0.082172907888889],[0.061823800206184,-0.044092737138271,-0.017355808988214]],[[0.0021135681308806,-0.013768186792731,0.099735014140606],[0.038327891379595,-0.035995092242956,-0.10808057337999],[0.0079664466902614,0.041591580957174,0.068629279732704]],[[0.091760441660881,0.017720641568303,0.010707215406001],[0.0045026079751551,0.070499673485756,0.0013887046370655],[0.083880893886089,-0.055538058280945,-0.040899366140366]],[[-0.032743833959103,-0.012264561839402,0.042659424245358],[0.02918878570199,-0.024662606418133,-0.0030060505960137],[0.05129874125123,-0.035301297903061,0.025881063193083]],[[-0.016052125021815,0.0093110073357821,0.029442766681314],[0.023610269650817,-0.028412979096174,-0.0098442640155554],[0.046434924006462,-0.025301879271865,0.064946435391903]],[[-0.031528901308775,0.069799892604351,-0.013048294000328],[0.024298992007971,-0.083648525178432,0.061931554228067],[0.038796119391918,0.044898826628923,0.034764558076859]],[[-0.025094559416175,0.02030753903091,-0.01222516130656],[-0.060228034853935,0.047462094575167,-0.0098762726411223],[0.037343434989452,-0.039871368557215,0.014537177048624]],[[-0.087983004748821,-0.024927586317062,-0.037338580936193],[0.0011036348296329,0.046787802129984,0.012499082833529],[0.039865497499704,0.0093956859782338,-0.023884322494268]],[[0.00047961078234948,0.058426089584827,-0.054259974509478],[-0.06639464199543,-0.022301217541099,-0.036710891872644],[0.0043850913643837,-0.033700462430716,0.059834960848093]],[[0.037613976746798,-0.00085220503387973,-0.013504189439118],[0.046876423060894,-0.027850078418851,0.011532751843333],[-0.027279675006866,-0.071361385285854,-0.069896936416626]],[[-0.066686399281025,-0.012515441514552,0.00370630226098],[0.013477344997227,0.036881506443024,-0.016720149666071],[-0.016671428456903,0.022215064615011,0.038638234138489]],[[0.063637673854828,-0.020141961053014,-0.019193818792701],[-0.046279549598694,0.061254382133484,0.039179150015116],[0.020621882751584,-0.0004894636804238,0.036038737744093]],[[-0.044556990265846,0.054131764918566,0.0049148774705827],[0.025875337421894,-0.0073617515154183,0.024208161979914],[-0.071691535413265,-0.095665112137794,0.044059112668037]],[[-0.058991722762585,-0.029696462675929,-0.022696672007442],[-0.039780281484127,-0.05928909778595,-0.0500966347754],[-0.031137034296989,-0.031669784337282,-0.018645480275154]],[[0.021073343232274,-0.0008948584436439,0.030383674427867],[0.04983789473772,0.060877043753862,-0.0058144521899521],[0.018804954364896,0.0039877439849079,-0.0052867485210299]],[[-0.041342616081238,0.035613056272268,0.053154893219471],[-0.017514543607831,0.019080556929111,0.031263165175915],[0.0022916721645743,0.042437963187695,0.015332598239183]],[[-0.065870463848114,-0.037306614220142,0.081374533474445],[0.010998982004821,0.0078195054084063,0.093588136136532],[0.076769627630711,-0.019911747425795,-0.052413415163755]],[[-0.069193124771118,0.041198674589396,0.016718287020922],[0.041160523891449,0.011035068891943,-0.043428741395473],[-0.044094927608967,-0.012781390920281,0.055452954024076]],[[0.029904210940003,-0.028862379491329,0.022034056484699],[0.084022708237171,-0.01693663559854,-0.047535222023726],[-0.0075558885000646,0.045605808496475,0.095052786171436]],[[-0.036176349967718,0.0073957508429885,-0.044931545853615],[-0.019003622233868,0.058918606489897,0.039950713515282],[0.092653758823872,0.0067637888714671,0.0015681016957387]],[[-0.041156977415085,-0.03560796380043,0.033771395683289],[0.005922254640609,-0.015787113457918,-0.053386807441711],[-0.029594669118524,-0.018552886322141,-0.006170179694891]],[[-0.020803689956665,-0.0048043201677501,0.047782495617867],[-0.012125006876886,0.0022388636134565,-0.096228897571564],[-0.0041674580425024,-0.015640150755644,-0.03122971393168]],[[0.0041856924071908,-0.051519032567739,-0.015874931588769],[0.044857293367386,0.030419625341892,0.038681779056787],[-0.0035871933214366,-0.047402810305357,-0.0051196929998696]],[[-0.031762979924679,0.017564168199897,-0.075027585029602],[0.029849819839001,-0.048498347401619,-0.068852588534355],[-0.063559517264366,-0.040532048791647,0.026920648291707]],[[-0.021237106993794,-0.009664649143815,0.016146071255207],[0.045426279306412,-0.0064264107495546,0.057586640119553],[-0.061417330056429,0.014681697823107,-0.0094972085207701]],[[-0.070340566337109,0.013044594787061,0.02841735444963],[0.00057560252025723,0.0076900976710021,-0.016867928206921],[-0.084495075047016,-0.00072628975613043,-0.018401965498924]],[[-0.0036758703645319,0.0062551777809858,0.05515269562602],[0.0061171478591859,0.0031035928986967,0.07390370965004],[0.054089523851871,-0.0023259127046913,0.017505515366793]],[[-0.052805662155151,0.017131526023149,-0.059825647622347],[0.018383471295238,0.052516154944897,0.014944087713957],[-0.0015246529364958,0.012180192396045,0.030269358307123]],[[0.011600942350924,0.055264048278332,-0.025723984465003],[-0.024136727675796,-0.035985913127661,0.023030277341604],[0.053857773542404,0.0010498116025701,-0.048058841377497]],[[0.022142965346575,-0.0030869483016431,-0.014281020499766],[-0.0093743586912751,0.020032485947013,0.051132258027792],[0.034259382635355,-0.0085758743807673,-0.038673724979162]],[[0.044574577361345,0.018709430471063,0.027901681140065],[0.039103604853153,0.011932066641748,-0.05216097459197],[-0.07002229988575,-0.054626043885946,-0.030143711715937]],[[0.031795807182789,-0.049295376986265,0.023809822276235],[-0.023032067343593,-0.042305964976549,-0.044749204069376],[-0.0071209683082998,0.024668907746673,0.013520233333111]],[[0.044378608465195,-0.036465052515268,0.0057123014703393],[-0.043319582939148,-0.047082375735044,-0.038531843572855],[-0.025919726118445,0.074682027101517,-0.047114677727222]],[[0.027686778455973,-0.045703239738941,0.0028176745399833],[-0.083018004894257,0.013189324177802,0.086126439273357],[0.021795727312565,-0.060134928673506,-0.055608831346035]],[[0.05696265399456,-0.026373568922281,0.06658898293972],[0.034423217177391,-0.022392956539989,0.0751633644104],[-0.0071651195175946,-0.019961919635534,0.011746219359338]],[[-0.05065954849124,-0.036239221692085,-0.022954322397709],[0.0025097772013396,-0.040862180292606,-0.021315602585673],[-0.028338611125946,-0.0095648774877191,0.12504754960537]],[[-0.03481313586235,-0.020551811903715,0.0091893645003438],[0.0064011765643954,-0.084322817623615,0.052247602492571],[0.0067082112655044,-0.025535026565194,-0.00035673618549481]],[[0.024988682940602,0.047329634428024,0.080339707434177],[-0.001440086052753,-0.013744645752013,-0.037427920848131],[-0.048406012356281,0.012020925991237,-0.0077620977535844]],[[-0.07157089561224,0.023832704871893,0.034370671957731],[0.020262748003006,0.022072656080127,0.015092582441866],[0.011820304207504,0.073857069015503,0.0091056600213051]],[[0.075299724936485,0.022184174507856,0.056571587920189],[-0.017081540077925,-0.011952799744904,0.025569273158908],[-0.0080395871773362,0.026085209101439,0.004677384160459]],[[-0.014907876029611,0.056940123438835,-0.0077495891600847],[0.0023935402277857,-0.0039599193260074,-0.05216358602047],[0.093087300658226,-0.025578826665878,-0.040302075445652]],[[-0.0078205727040768,0.013642801903188,-0.027997607365251],[-0.025736982002854,-0.10647151619196,-0.037632074207067],[-0.0087813334539533,-0.0028034707065672,0.025677513331175]],[[0.014218338765204,0.036187183111906,-0.0076865623705089],[0.017368670552969,-0.054873697459698,-0.0050072534941137],[-0.036877486854792,-0.081927105784416,0.034153815358877]],[[0.030052293092012,0.023594137281179,0.032947733998299],[-0.0091071864590049,0.070335313677788,0.060614321380854],[0.044010002166033,-0.023442976176739,-0.015714874491096]],[[0.036261666566133,0.029978169128299,-0.017439302057028],[0.0067370301112533,-0.033997997641563,-0.032148409634829],[-0.00029331166297197,0.043547865003347,-0.00046347695752047]],[[0.064022824168205,-0.016219273209572,0.0074084717780352],[0.0054916720837355,-0.0030075807590038,-0.0087606441229582],[-0.034934166818857,0.036898445338011,-0.056213449686766]],[[0.044053874909878,-0.040998391807079,-0.022448932752013],[-0.04936733469367,-0.11476075649261,-0.0026308207307011],[0.022388925775886,-0.0095553752034903,-0.039289746433496]],[[0.049046579748392,0.03320575132966,-0.041303399950266],[-0.036294240504503,0.010607798583806,0.024069638922811],[0.033179502934217,-0.03077556937933,0.0039654420688748]],[[-0.0067137274891138,0.014944968745112,-0.030093414708972],[0.014079099521041,0.002513388870284,-0.030551424250007],[-0.074009016156197,-0.030540099367499,0.010570765472949]],[[0.021751772612333,0.0048189233057201,-0.021002857014537],[-0.017372451722622,0.10026089847088,0.092542745172977],[-0.044212494045496,-0.035616748034954,0.051534853875637]],[[-0.065278798341751,-0.059859380125999,-0.022318178787827],[0.037471499294043,0.0011001953389496,-0.023106588050723],[0.034516420215368,-0.026100151240826,-0.048026256263256]],[[-0.027464179322124,0.0096180532127619,0.016323167830706],[0.013075927272439,0.044320736080408,-0.055639341473579],[0.10674332082272,0.051443587988615,-0.0099234459921718]],[[0.040832292288542,0.025897173210979,0.041370533406734],[0.03998513892293,0.0012879910646006,-0.023969378322363],[-0.021730804815888,0.018286887556314,-0.016140194609761]],[[-0.043200839310884,0.010641324333847,-0.021743865683675],[0.024442484602332,0.013291054405272,-0.010944304987788],[0.012109346687794,0.031411457806826,-0.051704492419958]],[[0.026218011975288,0.025954112410545,-0.014223385602236],[-0.070235207676888,0.014873520471156,-0.030603911727667],[-0.0056793671101332,0.029093844816089,0.082472540438175]],[[-0.021440068259835,-0.059409871697426,-0.014133718796074],[0.027815310284495,-0.049104526638985,-0.06479811668396],[0.013794930651784,-0.047006972134113,0.0013433871790767]],[[-0.032275024801493,-0.003182225394994,-0.0076674539595842],[-0.063722796738148,-0.010190703906119,-0.005716925021261],[-0.068558618426323,0.087424099445343,0.04092488437891]],[[0.040555693209171,-0.056333478540182,-0.019887993112206],[0.016862876713276,-0.031913504004478,0.030168103054166],[-0.0044745593331754,-0.034956678748131,0.033663522452116]],[[-0.066896818578243,0.047790247946978,0.020895233377814],[0.013738169334829,-0.032666876912117,-0.03389685600996],[-0.062478799372911,-0.014020265080035,0.0094738034531474]],[[0.12552192807198,0.014186729677022,-0.058989990502596],[-0.0037123053334653,-0.046292822808027,0.015887318179011],[0.025948835536838,-0.023804973810911,-0.035870056599379]],[[0.025388721376657,-0.066636428236961,0.040334187448025],[0.060589540749788,0.023796832188964,0.06832680106163],[-0.11289006471634,-0.060695983469486,-0.01284338068217]],[[-0.040311921387911,0.031867384910583,-0.0036506217438728],[-0.035911362618208,0.052731700241566,0.013751934282482],[-0.045512776821852,0.017974529415369,0.062962889671326]],[[-0.020755648612976,0.041352018713951,0.085532777011395],[0.0028158982750028,-0.048789121210575,-0.033805567771196],[0.068235784769058,0.029562501236796,0.050584685057402]],[[0.0031245870050043,-0.024203585460782,0.034133926033974],[-0.026964705437422,0.046823527663946,0.026731876656413],[-0.015196537598968,0.019194269552827,-0.011091003194451]],[[0.064164884388447,-0.01034705620259,-0.00079437787644565],[0.074329763650894,-0.049775414168835,0.014722771011293],[-0.0059587890282273,-0.034542661160231,0.011951450258493]],[[0.004766533151269,0.0084852883592248,-0.023784564808011],[0.054387107491493,-0.0078686214983463,0.0046588559634984],[0.019292106851935,-0.039029683917761,0.089022673666477]],[[-0.059260617941618,-0.085583694279194,-0.02156294323504],[-0.059610184282064,0.043728854507208,0.02084294334054],[0.045832738280296,-0.052444238215685,0.045973777770996]],[[0.026169236749411,-0.00085666019003838,0.027641121298075],[0.022885585203767,-0.05199084430933,-0.016725031659007],[-0.031574156135321,-0.025401035323739,-0.017418835312128]],[[0.040059670805931,-0.0079606426879764,0.012824744917452],[0.084876045584679,-0.016903251409531,-0.048572827130556],[0.028984216973186,0.0027576626744121,-0.0028906376101077]],[[-0.017391476780176,-0.0047360304743052,0.026720428839326],[-0.050961062312126,0.017171531915665,0.098730623722076],[0.020800134167075,-0.016124667599797,-0.014320334419608]],[[-0.057265676558018,-0.018938664346933,-0.097534172236919],[0.031195312738419,0.022040816023946,-0.033453825861216],[-0.028577838093042,0.058128528296947,-0.037943448871374]],[[0.01884008385241,0.053687673062086,0.074081011116505],[-0.065673738718033,-0.00088740349747241,0.095866337418556],[0.045454662293196,-0.032280046492815,-0.0045496872626245]],[[-0.058813668787479,0.0088665755465627,0.0037754860240966],[0.061850875616074,-0.09671738743782,0.010789901018143],[0.011083981022239,0.063499376177788,0.0042708911933005]],[[0.080446362495422,0.0013782843016088,0.087170735001564],[0.0020169108174741,-0.02035091817379,0.080284252762794],[-0.010105224326253,-0.01273824647069,-0.066199488937855]],[[0.012197292409837,-0.066234700381756,0.021886609494686],[0.031560346484184,0.015571148134768,-0.0049557937309146],[-0.024433385580778,0.02973528765142,-0.0011049604509026]],[[-0.01211464125663,-0.040951140224934,-0.070745699107647],[-0.024724312126637,-0.0016045479569584,-0.017867529764771],[0.022764937952161,-0.094007462263107,-0.047444183379412]],[[0.097969010472298,-0.038446087390184,0.01039756834507],[-0.050567157566547,0.04366797581315,0.011796136386693],[0.013407899066806,0.012757365591824,0.027651103213429]],[[-0.01523304078728,0.072418347001076,-0.011692205443978],[-0.031884171068668,-0.035916496068239,-0.13689041137695],[-0.08793792873621,0.058284908533096,-0.01451713591814]],[[0.022105867043138,0.0056357504799962,-0.091271810233593],[-0.0044482601806521,0.025182828307152,0.018333423882723],[-0.010179666802287,-0.05735981091857,0.0048510855995119]],[[-0.025586929172277,0.052818700671196,0.0087696574628353],[0.011254258453846,-0.07207141071558,-0.056800555437803],[-0.033249959349632,0.071555055677891,-0.098079554736614]],[[0.028671413660049,-0.024897763505578,0.049613893032074],[-0.038292184472084,-0.055955972522497,-0.049986250698566],[-0.041177723556757,-0.057571060955524,0.020438672974706]],[[-0.02848557382822,0.00014292643754743,-0.0090170605108142],[0.047141786664724,0.066717244684696,0.049509737640619],[0.069218054413795,-0.059481400996447,0.030626500025392]],[[0.001539068412967,0.022681631147861,0.011232597753406],[-0.011988813057542,-0.0014073081547394,-0.037910662591457],[-0.0444046407938,-0.042686093598604,0.012659673579037]],[[-0.03504254296422,-0.001233822084032,-0.016504181548953],[0.045236375182867,-0.018347252160311,-0.0082756774500012],[0.057666834443808,0.0073455860838294,-0.028609033674002]],[[0.058907572180033,-0.057562343776226,0.011292607523501],[0.022138612344861,-0.02197952568531,0.041376087814569],[0.002717497292906,0.071951866149902,-0.0067534414120018]],[[0.015580262988806,0.04066451638937,-0.043092403560877],[0.017974881455302,-0.035234313458204,0.0018649683333933],[-0.054411023855209,-0.050134591758251,-0.017394714057446]],[[0.020084846764803,-0.016882346943021,0.046617392450571],[-0.013753410428762,0.0070697804912925,-0.023035004734993],[0.037922270596027,0.027793794870377,0.00073588010855019]],[[0.020685043185949,-0.065007507801056,0.048302780836821],[0.00039009176543914,0.021237164735794,0.076474376022816],[0.011482574045658,0.026977432891726,-0.061504952609539]],[[0.027091333642602,0.024691758677363,-0.0010907811811194],[-0.0054693426936865,-0.011518011800945,0.026456208899617],[-0.068460442125797,-0.011742303147912,-0.021203922107816]],[[-0.01111173722893,0.019226556643844,0.0031042916234583],[-0.020367618650198,0.035018589347601,0.006825890392065],[-0.062869481742382,-0.079380184412003,-0.034063514322042]],[[0.027781495824456,-0.061713576316833,0.00073362607508898],[-0.020198171958327,0.011191855184734,0.031395398080349],[-0.038653925061226,-0.036074884235859,0.011113611981273]],[[0.062085390090942,-0.054915513843298,0.0057419422082603],[0.031086070463061,0.037568747997284,0.004183629527688],[-0.047505516558886,0.016305321827531,-0.023778300732374]],[[0.0032557172235101,-0.034309647977352,0.010758933611214],[-0.0040409667417407,0.036646708846092,0.014318121597171],[0.040251810103655,-0.030219849199057,0.01398272626102]],[[0.020518785342574,0.028023542836308,-0.0091195795685053],[0.020980820059776,-0.0033459679689258,-0.04403230920434],[-0.034595016390085,-0.020591823384166,-0.044119521975517]],[[0.10385943949223,-0.037326741963625,0.046279653906822],[-0.048927381634712,-0.060787279158831,-0.012623382732272],[0.093309320509434,-0.0038292231038213,-0.013448373414576]],[[-0.035320043563843,0.030550984665751,0.026029527187347],[-0.026970036327839,0.013688571751118,0.041506685316563],[-0.01471193972975,0.043750446289778,0.030570097267628]],[[-0.025790888816118,-0.025092896074057,-0.017344832420349],[-0.044973816722631,0.032553263008595,-0.0069468659348786],[0.021794578060508,0.041839867830276,0.0091834058985114]],[[0.077741459012032,-0.036645643413067,0.0080223549157381],[0.069828614592552,-0.017553169280291,0.040682125836611],[0.015955971553922,0.0098651573061943,0.022089367732406]],[[-0.05443599075079,-0.011941658332944,0.11038346588612],[0.12329907715321,0.013626312837005,0.0015111594693735],[0.011930544860661,0.024359382688999,0.0036272350698709]],[[-0.039213590323925,0.039430774748325,-0.0017458265647292],[0.082482896745205,0.016067586839199,0.010735494084656],[-0.051719065755606,-0.031150972470641,0.06511464715004]],[[-0.058479756116867,-0.023826655000448,0.067820347845554],[0.032330311834812,-0.0081823719665408,-0.024541072547436],[0.0069829118438065,-0.039120938628912,0.047553390264511]],[[0.016371412202716,-0.005377234891057,-0.050691727548838],[0.0040016691200435,-0.013103719800711,-0.0077796233817935],[-0.014062649570405,0.0095327394083142,-0.017464803531766]],[[-0.036607310175896,-0.0027913949452341,-0.047872971743345],[-0.004304348025471,-0.043642789125443,0.074786283075809],[-0.00073562283068895,-0.06621377915144,0.033582281321287]],[[0.019374808296561,-0.019130498170853,-0.0031217101495713],[0.09568252414465,-0.036664247512817,-0.016408376395702],[0.038097381591797,-0.045712143182755,-0.023654082790017]]],[[[0.048406578600407,0.012258931063116,-0.083836406469345],[0.021893378347158,-0.01772722043097,0.019749227911234],[0.018718358129263,0.0082336841151118,-0.0028876245487481]],[[0.028826115652919,-0.024904672056437,-0.082006767392159],[0.050100322812796,0.02438903413713,-0.029443185776472],[-0.020744901150465,-0.052097260951996,-0.059993550181389]],[[0.01323171518743,0.028309373185039,-0.032744660973549],[0.031131958588958,-0.0064466404728591,-0.064503960311413],[-0.014090496115386,-0.073363624513149,0.017033094540238]],[[-0.08320552110672,0.051929660141468,0.052296441048384],[0.011994354426861,-0.049963809549809,-0.0032328837551177],[0.07708466053009,0.039526410400867,0.083893068134785]],[[0.023446066305041,-0.021427532657981,-0.082564696669579],[0.026198109611869,-0.032830107957125,-0.025304870679975],[-0.01621450483799,0.050317484885454,-0.0056256307289004]],[[0.037753820419312,-0.011135041713715,0.061126794666052],[0.029670936986804,-0.025606356561184,-0.057957358658314],[0.039438970386982,-0.044614166021347,0.021864335983992]],[[-0.009712272323668,0.098305776715279,0.029921744018793],[0.016978261992335,0.056070249527693,0.029192700982094],[0.002759957453236,-0.0062342272140086,0.037382557988167]],[[-0.037909790873528,0.039481673389673,0.024961866438389],[-0.013002529740334,-0.0041315406560898,0.013334704563022],[0.0048619732260704,-0.055629827082157,-0.01603857986629]],[[0.0087550207972527,0.015928506851196,0.051984682679176],[-0.092565581202507,0.01952088996768,0.01128514111042],[-0.013309789821506,0.098839312791824,0.053700815886259]],[[0.049962617456913,-0.010539516806602,0.12993070483208],[0.13791662454605,-0.07784016430378,0.019966248422861],[0.012457367032766,-0.031252957880497,0.10038467496634]],[[0.033040061593056,0.012328973039985,0.020174646750093],[0.049499232321978,-0.018506990745664,0.0047093154862523],[-0.0048951269127429,0.016721023246646,0.014814213849604]],[[-0.037661246955395,0.065002255141735,0.013288350775838],[0.018930112943053,-0.01529614534229,0.013349671848118],[0.088027656078339,0.03776927664876,-0.072871379554272]],[[0.024373155087233,0.018524358049035,0.0073869400657713],[-0.0053389244712889,0.00011041435209336,-0.0052556223236024],[0.03486518189311,0.024983802810311,-0.07708678394556]],[[-0.056998569518328,-0.047582309693098,0.039979357272387],[0.046145174652338,0.018357886001468,0.029687477275729],[-0.045616064220667,-0.023467794060707,-0.024420095607638]],[[-0.00088481209240854,0.09281313419342,-0.0013448303798214],[0.031131520867348,-0.052705436944962,0.088726192712784],[-0.02950663305819,0.016972921788692,-0.055639002472162]],[[0.004240436013788,-0.031917721033096,-0.038350470364094],[-0.010415188036859,0.00098188349511474,-0.010863473638892],[-0.00526885362342,0.029648775234818,0.0075719254091382]],[[0.024985756725073,0.068168841302395,-0.012320154346526],[-0.017917117103934,-0.063998967409134,-0.01399031560868],[-0.017915681004524,-0.00416847364977,-0.014430150389671]],[[0.03754585981369,0.06143032759428,0.028358846902847],[-0.017909100279212,-0.033975366503,0.0086367446929216],[0.029996603727341,-0.0212920345366,0.0045172977261245]],[[0.02090728096664,-0.02537895925343,0.051466900855303],[0.015480227768421,0.0025807425845414,-0.07451319694519],[-0.029434578493237,-0.039201181381941,0.050342455506325]],[[-0.026892589405179,0.052831690758467,0.041662734001875],[0.035045322030783,0.028413826599717,-0.012496509589255],[-0.010380116291344,0.0037561359349638,0.016041301190853]],[[0.018403246998787,-0.046672187745571,-0.029097719117999],[0.015952341258526,-0.040222324430943,-0.017675178125501],[-0.034538716077805,-0.010129935108125,-0.036647632718086]],[[0.045370977371931,0.040572054684162,0.0048265000805259],[0.079237446188927,0.045118659734726,0.0087998583912849],[0.031742844730616,0.055358726531267,0.023185240104795]],[[-0.079325333237648,-0.042617797851562,-0.079288959503174],[-0.055196739733219,-0.0036526108160615,0.027679219841957],[0.014588097110391,-0.038963202387094,0.03780123218894]],[[0.0042896755039692,0.068450294435024,-0.028198670595884],[-0.01086591463536,-0.038044326007366,0.080977819859982],[-0.014245195314288,-0.041513290256262,0.010424614883959]],[[-0.03525011241436,-0.007210401352495,0.0035464982502162],[0.027906861156225,-0.0053848256357014,-0.04254425317049],[-0.03610721975565,-0.02739629149437,0.008793001063168]],[[0.036377619951963,0.079800121486187,0.0028469797689468],[0.017824675887823,-0.034086987376213,-0.037508945912123],[-0.056662652641535,0.022173965349793,-0.017806710675359]],[[-0.015796354040504,0.034261398017406,0.013545886613429],[-0.0019254822982475,0.041552010923624,0.052804503589869],[-0.0098657878115773,-0.0097404401749372,-0.052734851837158]],[[0.033469587564468,0.0010887178359553,0.11253840476274],[0.0045710420235991,-0.040751729160547,-0.033052586019039],[0.043085958808661,-0.00063194549875334,0.018428953364491]],[[0.035769198089838,0.042040605098009,0.042317349463701],[-0.019595479592681,0.013318305835128,-0.076510518789291],[-0.0018045842880383,0.007631320040673,-0.019636247307062]],[[0.041193909943104,0.043470304459333,0.030325019732118],[0.0026206609327346,-0.024760635569692,0.04147045314312],[-0.035688102245331,-0.019944394007325,0.030923321843147]],[[0.0073854490183294,-0.025042565539479,-0.012681064195931],[-0.017382096499205,0.0052533019334078,0.04038679972291],[-0.011143090203404,0.0549081787467,0.0070008672773838]],[[-0.0080630918964744,0.00098976830486208,-0.0012378074461594],[-0.0035034043248743,0.040798038244247,0.037067554891109],[-0.060814443975687,0.061970055103302,0.021158957853913]],[[0.064505204558372,0.09504721313715,0.10432683676481],[-0.054518103599548,-0.0016059491317719,-0.029195055365562],[0.04461719840765,0.0057121161371469,0.039023611694574]],[[-0.10262192040682,0.0082259364426136,0.0026591622736305],[-0.00066821940708905,-0.037116371095181,0.070832282304764],[-0.03331384062767,0.064990751445293,0.069155357778072]],[[-0.010200646705925,-6.1814657783543e-06,0.0041795452125371],[-0.080988176167011,0.0089976172894239,0.05243619158864],[0.0436199195683,0.03741454705596,-0.037840269505978]],[[0.02445294894278,-0.096051268279552,-0.025507302954793],[-0.0038045723922551,0.029272567480803,0.0096183335408568],[0.050168111920357,-0.01520658377558,0.040812555700541]],[[-0.04790898412466,-0.044803187251091,-0.0096336575224996],[-0.036565687507391,0.019556848332286,0.0063109979964793],[-0.033638224005699,-0.00025971874129027,-0.00017057344666682]],[[0.024138957262039,0.094229735434055,-0.055218208581209],[0.010021107271314,-0.0061025395989418,0.024171708151698],[0.020943902432919,-0.039569709450006,-0.05146561563015]],[[-0.024106094613671,0.073081068694592,0.018074031919241],[-0.052068710327148,0.01385057810694,0.03358580544591],[-0.096146807074547,0.025418352335691,-0.040461681783199]],[[0.045781400054693,0.00062821077881381,-0.015330183319747],[0.02615749463439,0.02586561627686,0.021382633596659],[-0.01895354129374,0.012719817459583,0.020065931603312]],[[0.018645690754056,0.030142916366458,0.01389341801405],[0.0037149586714804,0.043108768761158,-0.024120673537254],[0.038811504840851,0.024719536304474,0.0083480020985007]],[[-0.0098503483459353,0.030579388141632,-0.00303053134121],[0.065934926271439,0.042488567531109,0.04648919403553],[-0.029390519484878,-0.014092274010181,-0.0018047445919365]],[[0.026013031601906,-0.026673559099436,0.13924644887447],[-0.0010120645165443,0.02954919449985,0.014012832194567],[0.091209657490253,0.0029382724314928,0.010508145205677]],[[-0.059089787304401,-0.015682402998209,-0.0099790440872312],[0.015999633818865,0.01054057572037,-0.059814091771841],[-0.020048473030329,0.034362461417913,0.012094928883016]],[[0.0016817805590108,0.052139759063721,0.083399541676044],[0.068342171609402,0.026553224772215,0.028123835101724],[0.056612253189087,-0.017128122970462,0.020832823589444]],[[0.082387067377567,-0.044029884040356,-0.011864953674376],[-0.05023630708456,-0.020713457837701,-0.075473859906197],[0.043338254094124,0.077641263604164,-0.019760141149163]],[[0.057542786002159,0.0064877569675446,0.0063888235017657],[0.039760868996382,-0.034690663218498,-0.020369337871671],[-0.001797029748559,0.079535193741322,0.034761469811201]],[[-0.019929802045226,0.070663332939148,0.090827293694019],[0.070194520056248,0.0063851568847895,-0.0071551534347236],[0.038518153131008,0.031348582357168,0.033905949443579]],[[-0.074771225452423,-0.036910116672516,0.029101021587849],[-0.0073623135685921,0.059454075992107,-0.0078194877132773],[0.038344882428646,0.015124538913369,-0.0096199586987495]],[[-0.048530712723732,-0.026761084794998,0.039319586008787],[-0.014416528865695,-0.0082438951358199,0.031767681241035],[0.036028038710356,0.016002856194973,0.031806971877813]],[[0.019266314804554,-0.048029467463493,-0.021803278476],[-0.0062725455500185,0.020551312714815,-0.045676935464144],[-0.040412344038486,-0.069941096007824,-0.010335949249566]],[[0.031583894044161,0.0027444327715784,0.011001374572515],[0.084101274609566,0.023281641304493,0.086016081273556],[0.1023605838418,-0.037712182849646,-0.018692472949624]],[[-0.022253947332501,0.050364933907986,-0.021127691492438],[0.079450532793999,0.0027666874229908,0.050640299916267],[-0.0082420790567994,-0.012611242942512,-0.015576895326376]],[[0.0044260676950216,0.032325193285942,0.016012035310268],[0.017399098724127,0.055208757519722,0.058852642774582],[-0.026645317673683,0.030687259510159,-0.024520030245185]],[[-0.0097803995013237,0.0038819427136332,0.0045154923573136],[0.049714773893356,-0.022372461855412,0.0019515518797562],[-0.0036906546447426,-0.045788794755936,0.025331173092127]],[[0.03913738951087,0.0092562697827816,0.003356859786436],[-0.0073089241050184,0.081547848880291,0.0131397517398],[0.026560351252556,0.014373910613358,-0.02715390175581]],[[0.030855625867844,0.034054432064295,0.037888646125793],[0.022298544645309,-0.011789512820542,-0.061246808618307],[-0.0044546481221914,0.027877733111382,0.065261326730251]],[[-0.0033209430985153,0.045116797089577,0.063465639948845],[0.014269994571805,0.063640639185905,0.01761644333601],[-0.0016011723782867,-0.0028749054763466,0.052159067243338]],[[0.052813082933426,0.016346476972103,-0.012825486250222],[0.022549465298653,0.047823425382376,-0.017287457361817],[-0.0051596546545625,0.060114521533251,0.039885375648737]],[[-0.027306418865919,0.02475855499506,0.086352728307247],[0.023877885192633,0.01268925704062,-0.02214496396482],[-0.017944112420082,0.02352200448513,0.076930552721024]],[[-0.04566402733326,0.025263143703341,0.057762339711189],[-0.033085666596889,-0.012229520827532,-0.008931040763855],[0.014619984664023,-0.0054333172738552,0.063261218369007]],[[0.021403359249234,0.0024431722704321,-0.014003011398017],[0.039929945021868,-0.047918137162924,0.017004914581776],[-0.022979265078902,-0.0095468228682876,-0.019320219755173]],[[0.02581400051713,0.032436147332191,-0.0079215997830033],[-0.092633917927742,0.034535922110081,-0.028343940153718],[-0.015998002141714,0.015582337044179,0.015818949788809]],[[-0.0013113868189976,-0.0061855404637754,0.058221604675055],[0.0015420390991494,0.013914962299168,0.0037363120354712],[0.028552101925015,-0.013339010998607,0.050705533474684]],[[-0.027009706944227,-0.06032032892108,0.0020832892041653],[0.0068683247081935,-0.042921550571918,-0.023976275697351],[-0.044858302921057,-0.011739669367671,0.043951608240604]],[[0.035369429737329,0.038718666881323,0.028689509257674],[0.0088387001305819,0.056636732071638,0.034017764031887],[-0.042336694896221,-0.014984228648245,0.018680268898606]],[[-0.0011572076473385,-0.054341670125723,0.092394664883614],[0.031982470303774,0.060851622372866,0.082379184663296],[0.0048646498471498,-0.017338989302516,0.0091367149725556]],[[-0.0086931781843305,0.048717405647039,0.046781212091446],[0.04809882491827,0.037358108907938,0.037697426974773],[-0.030108677223325,0.045957271009684,0.03689869120717]],[[-0.028709845617414,-0.048983383923769,0.057340133935213],[-0.0004244870506227,-0.050733406096697,0.032297372817993],[0.032091584056616,0.055886965245008,-0.021668070927262]],[[0.059604220092297,-0.016705334186554,-0.021769661456347],[-0.013346145860851,0.011674812994897,0.038990255445242],[0.048605382442474,0.022156320512295,-0.057603534311056]],[[-0.036809019744396,-0.028368249535561,0.016807669773698],[-0.058611307293177,0.0065280422568321,-0.015739919617772],[0.042641807347536,-0.057261016219854,0.042719189077616]],[[0.051026545464993,0.073809549212456,0.002118487842381],[-0.010890926234424,0.022373866289854,0.054175157099962],[0.057247001677752,0.0047772875986993,0.058690160512924]],[[-0.059000506997108,0.062115490436554,-0.018951136618853],[0.028438845649362,0.035270780324936,0.05181797966361],[0.029896192252636,0.047593377530575,-0.06286633014679]],[[0.055113531649113,0.061123184859753,0.04115903750062],[0.022375497967005,0.028423581272364,-0.023631434887648],[0.062211468815804,-0.014333102852106,0.077485226094723]],[[-0.080971382558346,-0.032374400645494,0.019698236137629],[-0.025301028043032,0.00057711021509022,0.023160235956311],[0.046249631792307,0.0068234712816775,2.7228939870838e-05]],[[-0.021354639902711,0.06399192661047,-0.00097995577380061],[-0.10212829709053,-0.047823913395405,-0.026887021958828],[-0.024707915261388,0.0015140171162784,0.010316214524209]],[[0.002180177019909,-0.076580986380577,0.0047104507684708],[-0.030624970793724,-0.00050597655354068,-0.010489398613572],[0.052321821451187,-0.024440636858344,0.018255550414324]],[[0.0018858929397538,-0.0041420250199735,0.051025405526161],[-0.024146823212504,0.032752275466919,-0.0076149497181177],[0.011887991800904,-0.052452597767115,0.029026187956333]],[[0.033663284033537,0.017969070002437,0.042189110070467],[0.024171149358153,-0.044918216764927,-0.051098365336657],[0.040615532547235,0.012653189711273,0.023056650534272]],[[-0.077752158045769,-0.02812697738409,-0.00088288146071136],[-0.042182952165604,0.032471284270287,0.01221432723105],[0.076560504734516,-0.014757697470486,0.018620099872351]],[[0.034929763525724,0.021889755502343,0.0054356544278562],[0.020347621291876,0.029185647144914,0.084166921675205],[-0.024155508726835,-0.057447608560324,-0.0087619312107563]],[[0.015292188152671,0.039596270769835,-6.2142862589099e-05],[0.060041684657335,0.078294180333614,0.043183539062738],[0.014824441634119,0.036503724753857,-0.026705494150519]],[[-0.0024347407743335,0.0033345704432577,0.061374191194773],[-0.03599351644516,0.0036087539047003,0.019127992913127],[0.031853023916483,-0.0068417680449784,0.057311706244946]],[[0.072429224848747,0.021569835022092,0.029020415619016],[0.037259597331285,0.029953077435493,-0.0059794341214001],[-0.022388469427824,-0.026394885033369,0.012234039604664]],[[0.027230404317379,0.055081479251385,0.054990384727716],[0.039614289999008,0.011041088961065,0.037650588899851],[0.02676959708333,0.0015277295606211,0.036319635808468]],[[-0.060481488704681,0.012225122191012,0.043647527694702],[0.019734108820558,0.011426017619669,0.029096852988005],[8.4858205809724e-05,0.012007921934128,-0.031395319849253]],[[0.011356171220541,0.0087968092411757,0.029864067211747],[0.025825729593635,0.0036121872253716,-0.053926505148411],[-0.017860654741526,-0.066941127181053,0.035003695636988]],[[-0.02562072686851,-0.015474461019039,0.0022692512720823],[-0.054910138249397,0.020562196150422,0.0077535780146718],[-0.029432646930218,0.012392382137477,0.0070097888819873]],[[-0.012124495580792,-0.0097030233591795,0.0049832370132208],[-0.024028390645981,0.0063952831551433,-0.0088905552402139],[0.1028370782733,0.025099022313952,-0.036935076117516]],[[0.010797176510096,-0.072928391396999,-0.0039936541579664],[-0.010328371077776,0.12318193912506,-0.026700586080551],[0.023214906454086,0.056430835276842,-0.040710382163525]],[[0.039031777530909,0.047083627432585,-0.039451655000448],[0.051017094403505,0.06059829890728,-0.0061182845383883],[-0.018939739093184,-0.0011330049019307,-0.032499253749847]],[[-0.0015122726326808,0.075965076684952,-0.016551302745938],[0.0027733859606087,-0.014846788719296,-0.045552868396044],[0.016292665153742,0.033970970660448,0.017041517421603]],[[-0.012083598412573,0.0066316407173872,0.023736041039228],[-0.041904214769602,-0.012874982319772,0.028561411425471],[0.03321536257863,0.012666348367929,0.052866410464048]],[[-0.0082155093550682,0.068314224481583,0.003500705352053],[-0.008017192594707,-0.041341934353113,-0.016782265156507],[-0.017033660784364,0.066707506775856,0.023509748280048]],[[0.052779000252485,0.0044994340278208,-0.036038633435965],[0.013775506056845,-0.030942916870117,0.038807097822428],[0.01012519467622,-0.051202051341534,0.043087892234325]],[[-0.041752435266972,0.00075624464079738,0.037228811532259],[0.02495869807899,0.0087925670668483,-0.066077992320061],[0.020054582506418,-0.0076554194092751,0.033649008721113]],[[0.03078948892653,-0.021529279649258,0.015388586558402],[0.027164749801159,-0.0056135156191885,-0.014271923340857],[0.0049049519002438,-0.083930589258671,-0.028734248131514]],[[-0.05025278031826,0.021866757422686,-0.037479098886251],[0.052699159830809,-0.024138016626239,0.040722649544477],[0.043616574257612,0.059537943452597,-0.046677134931087]],[[-0.005866666790098,0.072826847434044,-0.028152097016573],[0.035822790116072,-0.041991386562586,-0.026414660736918],[0.032235886901617,-0.0061262180097401,0.0078568607568741]],[[-0.05141768231988,0.0037138373591006,0.070740282535553],[0.054028790444136,0.030689790844917,0.10225561261177],[-0.042235184460878,0.03807520121336,0.057239405810833]],[[0.052185419946909,-0.0054782070219517,-0.013609794899821],[0.00069318746682256,-0.018731493502855,0.040345963090658],[0.020899690687656,0.079147338867188,-0.088602975010872]],[[0.043538175523281,0.04486058652401,0.03156254440546],[-0.026031566783786,-0.028383063152432,0.038108173757792],[-0.024286568164825,0.024563679471612,-0.023382224142551]],[[0.069534040987492,-0.026168441399932,-0.0064869434572756],[-0.018250988796353,0.066400915384293,-0.00260602356866],[0.053388144820929,0.057655919343233,0.027574613690376]],[[0.059420216828585,0.068787358701229,0.030238453298807],[0.0059620519168675,0.0046683945693076,0.041912399232388],[0.066056028008461,0.00023275567218661,0.012165391817689]],[[0.029685541987419,-0.042209170758724,-0.020310260355473],[0.043418202549219,-0.017223242670298,-0.011082839220762],[0.0017739877803251,0.018305459991097,-0.010738307610154]],[[-0.013549402356148,-0.029645400121808,0.014232806861401],[-0.06368475407362,0.017517218366265,0.013537789694965],[-0.010457069613039,0.061615932732821,0.031268015503883]],[[0.028796337544918,0.032294429838657,0.011590572074056],[0.033128891140223,-0.009496939368546,0.049457192420959],[0.021110301837325,0.045266795903444,0.016654070466757]],[[-0.060009233653545,0.029588885605335,-0.028818426653743],[-0.019249454140663,-0.065506868064404,0.075647413730621],[-0.0023398473858833,-0.025521146133542,-0.018262850120664]],[[-0.020416304469109,0.022427015006542,0.038874916732311],[-0.0087511539459229,-0.026825550943613,0.017793217673898],[0.056242991238832,-0.036812122911215,0.039604924619198]],[[0.046079400926828,0.0075192581862211,-0.042010143399239],[-0.010645743459463,0.066463999450207,0.046968266367912],[0.050530683249235,0.047396171838045,0.0043154787272215]],[[-0.066143125295639,0.051057938486338,-0.029651757329702],[0.018587112426758,-0.031541381031275,-0.0044141355901957],[0.0027514295652509,-0.022960904985666,-0.022815357893705]],[[0.042591724544764,0.0054448083974421,0.065123297274113],[-0.13398259878159,0.059755422174931,-0.047610178589821],[0.040822930634022,-0.00081313424743712,-0.031802400946617]],[[0.013953901827335,0.036886118352413,-0.023923913016915],[-0.019737662747502,0.025307543575764,-0.018051600083709],[0.00063457258511335,-0.01794414781034,0.019942855462432]],[[0.0094748316332698,0.042862687259912,-0.050646226853132],[-0.08544410020113,-0.0062022251076996,-0.020563397556543],[-0.040225893259048,-0.039143085479736,-0.049164354801178]],[[0.0029646528419107,-0.045611176639795,0.00114743236918],[-0.060132429003716,0.037349123507738,0.023848479613662],[-0.07541312277317,-0.020721361041069,-0.060172952711582]],[[-0.045909535139799,0.00075636879773811,-0.00054447335423902],[-0.018782839179039,-0.0117326406762,0.014935873448849],[-0.023357098922133,-0.0069913840852678,0.023399384692311]],[[0.039457965642214,0.053413685411215,-0.030306089669466],[0.037220429629087,0.0096117695793509,0.011628282256424],[0.018461551517248,0.0059297848492861,0.0231376234442]],[[0.004918749909848,-0.0075565367005765,0.048455141484737],[-0.055461220443249,-0.032470963895321,-0.021580923348665],[-0.025144286453724,-0.031661845743656,-0.030902771279216]],[[0.03293713927269,-0.025175640359521,-0.043992515653372],[0.00108106888365,-0.036428581923246,0.032054834067822],[-0.0028333158697933,0.037080090492964,0.034402392804623]],[[0.033466853201389,0.0096482764929533,0.009679407812655],[-0.035821847617626,0.0063057313673198,-0.01103799790144],[-0.031138112768531,-0.01918519102037,-0.0080963717773557]],[[-0.018686633557081,0.020116193220019,0.026733219623566],[-0.069091342389584,0.03243363648653,-0.028895789757371],[-0.028153501451015,0.070775002241135,0.02920301258564]],[[0.060878328979015,0.036892864853144,-0.023471064865589],[0.035482466220856,0.056357972323895,0.0084251817315817],[-0.017051896080375,0.012761574238539,0.018531268462539]],[[-0.012830232270062,0.018361650407314,-0.037519574165344],[0.012352805584669,-0.029315300285816,-0.04609090834856],[0.024765187874436,0.021658755838871,0.062148552387953]],[[-0.062374442815781,0.032148014754057,-0.032825868576765],[-0.0072033819742501,0.026706324890256,0.048815689980984],[0.032213743776083,-0.0059843985363841,-0.037088945508003]],[[-0.0097991833463311,0.0071677481755614,-0.01372978836298],[-4.4920157961315e-05,-0.011688152328134,-0.022981116548181],[-0.0066540315747261,-0.012196508236229,0.018624279648066]],[[-0.0087478132918477,0.0036846317816526,-0.015877898782492],[-0.07447512447834,0.074027478694916,-0.001256954157725],[-0.024165838956833,0.032846055924892,0.047064874321222]],[[0.034625358879566,-0.038483921438456,-0.015558169223368],[0.051702041178942,-0.0767782330513,0.091536402702332],[-0.049863986670971,0.068153217434883,0.0091617964208126]],[[0.025227142497897,0.024642176926136,0.034000772982836],[-0.092573344707489,-0.057613287121058,-0.012337887659669],[-0.019475365057588,0.0046767112798989,0.020647648721933]]]],"nOutputPlane":128,"kW":3,"kH":3,"bias":[-0.049989685416222,-0.0058896807022393,-0.042150821536779,-0.039715304970741,-0.0020870307926089,-0.0036189758684486,0.025562155991793,-0.052996814250946,0.0064072641544044,-0.0027279262430966,-0.0030347232241184,-0.027783429250121,-0.0085291611030698,0.0021395140793175,-0.0016857462469488,-0.0032400949858129,-0.0041151545010507,-0.0011830045841634,-0.0033436948433518,-0.0050854305736721,-0.042708605527878,-0.0030534211546183,-0.0014509714674205,-0.065517820417881,-0.008215619251132,-0.0076350886374712,-0.0052358377724886,-0.041940059512854,-0.046536829322577,-0.0016470425762236,-0.00045334460446611,-3.3343567338306e-05,-0.029787907376885,0.026142287999392,-0.0055381534621119,0.0074883666820824,-0.0019995702896267,-0.0050426507368684,-0.038202822208405,-0.0036299251951277,-0.00078965467400849,-0.00980269536376,-0.0040819882415235,-0.011627499014139,-0.048233106732368,-0.00073815975338221,-0.0012025177711621,-0.0070505188778043,0.0042511019855738,-0.045920882374048,-0.00039948566700332,0.013359760865569,-0.005041423253715,-0.0063480823300779,-0.052437502890825,-0.0015336395008489,-0.038326151669025,-0.0050767054781318,-0.0024829544126987,-0.046634633094072,-0.06862935423851,-0.0055293007753789,-0.02425205335021,-0.0021536680869758,-0.0074709868058562,-0.00071286375168711,-0.00445222761482,-0.0069003128446639,-0.0009152854909189,-0.0010745796607807,-0.0022684545256197,-0.0035706835333258,-0.0034023255575448,-0.043466091156006,-0.0044705993495882,-0.000676222902257,-0.052538197487593,-0.015969134867191,0.0091923046857119,-0.0023885427508503,-0.0039233462885022,-0.003443090710789,-0.0019412835827097,7.3450020863675e-05,0.020846955478191,-0.025198373943567,-0.046545777469873,-0.0037726848386228,-0.038794592022896,0.025217620655894,0.032642088830471,-0.00049301807302982,-0.0028033175040036,-0.0062647638842463,-0.0035428856499493,-0.046772502362728,-0.0023923334665596,-0.055065892636776,-0.0021244417876005,0.0017151345964521,0.012630324810743,-0.00077509018592536,-0.0043461779132485,-0.042493391782045,-0.031634092330933,-0.0057653421536088,0.0013488940894604,-0.0027415549848229,0.00097907253075391,0.00087615649681538,-7.5452619057614e-05,-0.0078951735049486,-8.9979876065627e-05,0.0050794575363398,0.00034267775481567,-0.0024306199047714,-0.0019848130177706,-0.0044264011085033,0.008171203546226,-0.0019183339318261,-0.00089046347420663,-0.036964327096939,0.01049941778183,0.026613928377628,-0.0013986575650051,-0.021621707826853,-0.031439960002899,-0.0076329102739692],"nInputPlane":128},{"weight":[[[[0.89437025785446,0.22545629739761,-0.78765517473221],[0.62326788902283,-0.033623170107603,-0.71294194459915],[-1.3218352794647,-0.0492904484272,0.075220935046673]],[[-0.23897325992584,-0.21490493416786,-0.061006017029285],[-0.032292254269123,-0.030869897454977,0.6782021522522],[-0.58127504587173,0.010687653906643,0.47184744477272]],[[-0.19665184617043,0.34278079867363,-0.51914674043655],[-0.92101377248764,-0.15593038499355,0.19476063549519],[0.33350256085396,0.37057581543922,-0.026431236416101]],[[0.48797625303268,-0.80078423023224,0.48339158296585],[-0.77878850698471,0.13661497831345,-0.0013205795548856],[0.19563591480255,0.096687242388725,-0.29605171084404]],[[-0.36852505803108,0.077818162739277,-0.057331744581461],[-0.13961121439934,0.55196040868759,-0.027229296043515],[0.072493739426136,-0.06059056147933,-0.082615561783314]],[[-0.69913399219513,-0.84959298372269,-0.64465683698654],[0.22350688278675,0.69686114788055,0.38159367442131],[0.41046297550201,0.39277201890945,0.088677912950516]],[[0.092699378728867,0.44415017962456,-0.32217821478844],[-0.094279021024704,0.090490281581879,0.093820922076702],[1.0027458667755,-0.11678821593523,-0.0048366193659604]],[[-0.14869606494904,0.14488466084003,-0.047157768160105],[0.42226454615593,-0.10288576036692,-0.39344874024391],[-0.02603311277926,-0.52331376075745,0.079876221716404]],[[0.37108463048935,0.94514411687851,-0.66222304105759],[0.11549499630928,-0.017607141286135,-0.32869043946266],[0.41192373633385,-0.36587500572205,-0.46933457255363]],[[0.11959095299244,-0.72474986314774,0.1530859619379],[-0.13205167651176,0.71202170848846,0.41259306669235],[0.68663859367371,-0.93210476636887,-0.29604530334473]],[[0.07145731151104,0.73058396577835,0.89350020885468],[-0.33477604389191,0.65877902507782,-0.16753180325031],[-0.31426200270653,-0.47060316801071,-1.0653518438339]],[[0.95125085115433,0.01354359369725,-0.062283467501402],[-1.3859899044037,0.83423066139221,0.063082240521908],[-0.19375939667225,-0.15235161781311,-0.31982293725014]],[[-0.76871091127396,-0.022651478648186,0.36679005622864],[-0.10041501373053,-0.16164895892143,0.46930915117264],[-0.041983041912317,0.13688866794109,0.1264750957489]],[[-1.2609757184982,0.27499744296074,0.48618486523628],[0.51067888736725,-0.60115563869476,-0.1794680505991],[0.40880659222603,0.1154008731246,0.24958083033562]],[[-0.61463230848312,0.33988949656487,-0.065261371433735],[-0.41836455464363,0.87421238422394,-0.26803621649742],[0.071556396782398,-0.48357960581779,0.56512439250946]],[[-0.14100153744221,0.27470588684082,0.55326616764069],[-0.32427707314491,-0.3441809117794,0.45321267843246],[0.060165088623762,0.32036104798317,-0.85210591554642]],[[-0.49243545532227,-0.89703005552292,-0.027836987748742],[-0.25792881846428,0.31889688968658,1.0222691297531],[-0.039975699037313,0.20271065831184,0.1708522439003]],[[0.84106320142746,0.44032126665115,0.24242353439331],[-0.47079017758369,-0.12393207103014,-0.45834466814995],[0.010320608504117,-0.54211568832397,0.063614144921303]],[[-0.25323548913002,1.3082090616226,-0.10253332555294],[0.20684093236923,-0.42741119861603,-0.49007666110992],[-0.17807893455029,-0.14655296504498,0.08345402777195]],[[-0.25620567798615,-0.18315617740154,0.13145583868027],[0.26538532972336,0.28125447034836,-0.87817841768265],[0.085276909172535,0.11594149470329,0.43839368224144]],[[0.28276816010475,-0.22059963643551,0.42576006054878],[0.31729450821877,-0.93656998872757,0.49440166354179],[-0.34725707769394,0.31291326880455,-0.33260977268219]],[[-0.0064000352285802,0.24553813040257,-0.27732270956039],[0.36246997117996,-0.61161011457443,-0.041822113096714],[0.2322820276022,0.096440054476261,0.015673479065299]],[[-0.31131160259247,0.19063875079155,-0.50754469633102],[0.063381560146809,-0.52501368522644,0.25652346014977],[0.33336502313614,-0.074364714324474,0.57768177986145]],[[-0.099566496908665,-0.19513913989067,-0.020963059738278],[-0.47504964470863,-0.11490505188704,0.47711265087128],[0.52113330364227,0.60812389850616,-0.674181163311]],[[-0.63356584310532,0.7991681098938,-0.60650187730789],[0.12030136585236,0.30459022521973,-0.2459412664175],[0.14802268147469,-0.19737008213997,0.31148147583008]],[[0.093717195093632,-0.51485192775726,-0.41327014565468],[0.10732893645763,0.20393224060535,0.10882180184126],[0.35884636640549,0.29332649707794,-0.24092228710651]],[[0.54789167642593,-0.37770402431488,0.72640359401703],[-0.87690788507462,-0.40256348252296,-0.61047381162643],[0.54238611459732,-0.21265609562397,0.66196542978287]],[[-0.4367695748806,0.38228988647461,0.11787142604589],[0.35668581724167,-0.29434821009636,-0.27480289340019],[-0.44265455007553,-0.31375053524971,0.40836811065674]],[[-0.91736912727356,0.13487812876701,-0.89831221103668],[0.10602900385857,0.41450121998787,-0.62167006731033],[-0.15085223317146,1.2421891689301,-0.93524765968323]],[[0.23268291354179,-0.62785166501999,-0.18125906586647],[0.70724159479141,0.084025278687477,0.77283257246017],[-0.25869765877724,-0.60242557525635,-0.13400088250637]],[[-0.29651066660881,0.27683240175247,-0.016797803342342],[-0.32304584980011,-0.64135611057281,-0.50314885377884],[0.45745214819908,0.98574513196945,0.062726140022278]],[[-0.15201081335545,-0.14444863796234,0.31041005253792],[0.33924695849419,-0.090832129120827,-0.091566547751427],[0.025507133454084,0.50476986169815,-0.70270979404449]],[[0.0035534962080419,0.39723348617554,0.042513277381659],[0.08787290006876,0.83625447750092,-0.51827639341354],[0.011002850718796,-0.67395007610321,-0.28617852926254]],[[-0.10346281528473,0.24694740772247,-0.267075330019],[0.34402626752853,0.34781336784363,0.046275295317173],[0.33970463275909,0.19528371095657,-0.036591302603483]],[[-1.0852085351944,0.20593556761742,0.49242120981216],[-0.043409455567598,0.15228345990181,0.22699998319149],[0.27182164788246,0.1905742585659,-0.4152318239212]],[[-0.66016983985901,-0.23657266795635,-0.095186367630959],[-0.022176103666425,-0.43063241243362,0.88754707574844],[-0.12889575958252,0.2511225938797,0.4374994635582]],[[-0.33240711688995,0.43305611610413,0.031887032091618],[-0.5430474281311,0.5913582444191,-0.26804903149605],[0.056864328682423,0.49859139323235,-0.46872395277023]],[[-0.32402327656746,-0.78239727020264,0.84569466114044],[0.080441884696484,0.41404536366463,-0.67895483970642],[-0.13868178427219,0.60740083456039,-0.021893806755543]],[[0.21699027717113,0.43534016609192,0.39369258284569],[-0.089745350182056,-0.32896709442139,-0.33890256285667],[-0.1012604162097,-0.45998707413673,-0.058887679129839]],[[0.71417742967606,0.6526808142662,0.27719548344612],[-0.54755699634552,0.026611626148224,-0.41884806752205],[-0.96252954006195,0.20092387497425,0.061139028519392]],[[-0.88962340354919,0.056446462869644,0.15588265657425],[0.16002789139748,0.2679229080677,-0.32422542572021],[0.31349828839302,0.5475600361824,-0.28861159086227]],[[-1.0829318761826,0.10525792092085,1.1583062410355],[-0.41298481822014,0.086566783487797,-0.12668620049953],[-0.133391097188,0.21068015694618,0.19609984755516]],[[-0.38216531276703,0.71082746982574,0.040628138929605],[-1.1381504535675,0.24150232970715,0.64835268259048],[-0.039794355630875,-0.47897711396217,0.40329322218895]],[[-0.36256912350655,-1.4963510036469,-0.40415269136429],[0.8535863161087,0.086270973086357,-0.10564375668764],[0.18968226015568,0.48009613156319,0.76479858160019]],[[-0.76117163896561,-0.13771571218967,0.20188547670841],[0.1021621748805,0.31773808598518,-0.083395935595036],[-0.77172672748566,-0.99193465709686,-0.56021505594254]],[[-0.26840895414352,-0.56891858577728,0.13150352239609],[0.33419844508171,0.032817162573338,0.46841129660606],[-0.11526449769735,0.18384262919426,-0.19856879115105]],[[0.55418688058853,0.29440578818321,0.048078719526529],[-0.46301805973053,-0.96079462766647,0.14961922168732],[0.3044730424881,0.33484292030334,-0.26177003979683]],[[-0.26253470778465,-0.0073891449719667,0.11979328095913],[-0.11374531686306,-0.11925068497658,-0.41442543268204],[0.60851317644119,0.57167166471481,-0.38496020436287]],[[0.22610494494438,0.0097186313942075,0.24882486462593],[1.2736322879791,-0.67797261476517,-0.16889886558056],[-0.20930515229702,-1.0805871486664,0.3779009282589]],[[0.34461280703545,0.39818653464317,0.21415770053864],[-0.67652243375778,-0.21612024307251,-0.43469029664993],[-0.44250786304474,-0.227539524436,-0.16398121416569]],[[-0.82205402851105,0.31292942166328,0.26342868804932],[0.30541732907295,0.67339032888412,-0.5220057964325],[0.29010233283043,-0.080733433365822,-0.42478972673416]],[[0.88399386405945,-0.20296387374401,-0.0035364942159504],[-0.93933993577957,-0.2684810757637,0.28810620307922],[0.023286379873753,0.16186919808388,0.05879619717598]],[[0.068240843713284,-0.089026562869549,0.13881734013557],[-0.10073831677437,0.047730140388012,-0.27917167544365],[-0.061600845307112,0.011475058272481,0.25933930277824]],[[0.11659341305494,-0.025486493483186,-0.20815348625183],[-0.26743659377098,-0.052588347345591,0.15266056358814],[0.10004884749651,0.036885600537062,0.15353854000568]],[[-0.032757356762886,0.19938498735428,-1.0970361232758],[-0.35116320848465,-0.0173723064363,-0.19806608557701],[-0.75360196828842,0.25943046808243,-0.36867409944534]],[[0.10454308241606,-0.87749600410461,0.6104644536972],[-0.038348700851202,-0.033082075417042,0.50281488895416],[0.22015441954136,0.068527229130268,-0.55838644504547]],[[0.23174160718918,0.53115582466125,0.089601315557957],[-0.29099357128143,-0.29045012593269,0.17846445739269],[-0.79030072689056,0.12661720812321,-0.072526521980762]],[[-0.50228971242905,0.33169534802437,0.31343632936478],[0.6344353556633,-0.33760759234428,-0.055759090930223],[-0.37763050198555,0.40486168861389,-0.40285974740982]],[[-0.24462985992432,0.55777567625046,0.41065675020218],[0.299840092659,-0.61867606639862,0.16015130281448],[-0.27379390597343,-0.14082781970501,-0.14510048925877]],[[0.033317029476166,0.59777593612671,-0.012615043669939],[-0.49799576401711,-0.70293384790421,-0.31213703751564],[0.070221468806267,-0.10380078107119,-0.10213027149439]],[[0.17127694189548,-0.13746725022793,-0.078226797282696],[-0.29881817102432,0.42617550492287,0.037972819060087],[0.1259256452322,-0.043902277946472,-0.21697378158569]],[[0.27560311555862,-0.66765666007996,0.47698417305946],[0.3664214015007,0.37796133756638,0.83000671863556],[-0.57414144277573,-0.057405460625887,-1.0279319286346]],[[-0.57611364126205,0.18185980618,0.034235365688801],[-0.12040023505688,0.97224628925323,-0.58819538354874],[-0.45083317160606,0.12227188795805,0.32930251955986]],[[0.11101542413235,-0.48701977729797,0.1839080452919],[-0.41303038597107,1.0424083471298,0.073355585336685],[0.15183717012405,-0.15751305222511,-0.51023745536804]],[[0.92429673671722,-0.49713191390038,-0.37294217944145],[0.083450548350811,-0.13100807368755,0.19799448549747],[-0.71096652746201,0.14919158816338,0.36366668343544]],[[0.72570788860321,0.16815713047981,-1.0991771221161],[0.11564772576094,0.58131712675095,0.12224393337965],[0.037449080497026,-0.34969413280487,-0.30217361450195]],[[-0.2178648263216,0.33635026216507,-0.021214807406068],[-0.32082986831665,-0.03741804510355,-0.019215393811464],[-0.27492466568947,0.25953236222267,0.29727676510811]],[[-0.38280063867569,0.14729355275631,-0.12965482473373],[0.54408138990402,0.35106384754181,-0.25153622031212],[-0.44708925485611,-0.16426634788513,0.33522769808769]],[[0.26482939720154,-0.14001730084419,-0.75069212913513],[0.70266109704971,0.024529673159122,0.040573626756668],[0.38045817613602,-0.22287881374359,-0.30014786124229]],[[0.40096306800842,0.54488277435303,0.29434812068939],[-0.14554505050182,-0.48567306995392,-0.70605272054672],[-0.034180995076895,0.086263574659824,0.045897495001554]],[[0.38126641511917,0.22100172936916,-0.53480821847916],[0.39635390043259,-0.029309982433915,0.15111264586449],[-0.078241117298603,-0.17552147805691,-0.33351546525955]],[[-0.58259892463684,0.21968345344067,-0.034816391766071],[-0.60997956991196,0.46073862910271,0.33876970410347],[-0.13603109121323,-0.0072251297533512,0.35046851634979]],[[-0.41101574897766,0.22784440219402,-0.57130026817322],[0.44173085689545,-0.15746918320656,0.07268413156271],[0.36781632900238,0.040250368416309,-0.059346076101065]],[[-0.30517715215683,0.04417671635747,0.29323649406433],[-0.19874334335327,0.78400510549545,-0.42729589343071],[-0.068788729608059,-0.63095235824585,-0.055263668298721]],[[-0.07070392370224,-0.93834853172302,0.39336311817169],[0.6863511800766,-0.0043482393957675,-0.46753698587418],[-0.41251540184021,0.60312986373901,0.1958981603384]],[[0.32591298222542,-0.59507220983505,-0.0016350847436115],[0.27224069833755,-0.81716465950012,0.17786036431789],[0.32322698831558,0.27993860840797,0.032306771725416]],[[0.30159378051758,-1.0200382471085,0.96645760536194],[-0.35982584953308,-0.47156319022179,0.056150499731302],[-0.41812199354172,-0.87361264228821,0.1283864825964]],[[0.2703375518322,-0.39846476912498,0.22020107507706],[0.1812921911478,0.0023967979941517,-0.28517809510231],[0.047733165323734,-0.061749339103699,0.021418070420623]],[[0.28200045228004,0.039125014096498,-0.32424268126488],[-0.085767775774002,0.42858555912971,0.12205591052771],[-0.56401336193085,0.48015248775482,-0.37765130400658]],[[0.02814693748951,0.091426126658916,-0.27666226029396],[0.32860380411148,-0.2197597771883,-0.027811719104648],[-0.16745620965958,0.23709803819656,0.0029240450821817]],[[-0.072420254349709,-0.061887055635452,-0.75417673587799],[-0.22142653167248,0.47114223241806,0.35954815149307],[0.32068455219269,0.13937984406948,-0.18270829319954]],[[0.71850293874741,-0.66279989480972,-0.053939968347549],[-0.53622281551361,0.051702257245779,-0.17673850059509],[0.57716423273087,0.21644686162472,-0.13820055127144]],[[-0.099081300199032,0.037600260227919,0.14612066745758],[-0.11700600385666,0.16129112243652,0.62229633331299],[-0.5049461722374,-0.6094508767128,0.36768326163292]],[[-0.33747643232346,0.51747244596481,0.019690634682775],[-0.3715018928051,0.026303313672543,-0.37114959955215],[0.57352620363235,0.051249716430902,-0.11362913250923]],[[0.31024792790413,0.085181467235088,0.14809034764767],[-0.40751728415489,0.2967936694622,-0.27433729171753],[-0.25013077259064,0.028881715610623,0.56458562612534]],[[-0.028269907459617,-0.15988312661648,0.052958648651838],[0.69423544406891,0.65278649330139,-0.53188872337341],[-0.0060928068123758,-0.10538379848003,-0.60805344581604]],[[0.045204766094685,-0.078887790441513,0.09259931743145],[-0.7230509519577,-0.21399219334126,-0.023800967261195],[0.51919424533844,-0.33565518260002,0.20584638416767]],[[-0.56906145811081,0.55308890342712,-0.24812138080597],[-0.35684984922409,0.49603554606438,0.026295119896531],[-0.049955688416958,-0.57206004858017,0.71987241506577]],[[-0.23359505832195,-0.14645302295685,-0.058068696409464],[0.068320207297802,-0.40783217549324,-0.24280886352062],[0.35158583521843,0.02194507792592,-0.19803057610989]],[[0.6029953956604,-0.19727358222008,0.24453151226044],[0.69320118427277,0.38385197520256,0.35415947437286],[0.081284895539284,-0.74658036231995,0.29247322678566]],[[0.23028652369976,0.6945121884346,0.41017863154411],[0.016235385090113,-0.12396065890789,0.038040101528168],[-0.98704469203949,0.094866722822189,0.27028906345367]],[[0.26803854107857,-0.22464108467102,0.16078470647335],[-0.82624626159668,-0.34733963012695,1.1356781721115],[-0.94559687376022,0.73271787166595,0.045150056481361]],[[0.13252760469913,0.48332440853119,0.1637470126152],[0.11904998868704,0.029644500464201,-0.17197319865227],[-0.82654416561127,0.071588218212128,0.0013262571301311]],[[-0.82580065727234,-0.48009243607521,0.73205387592316],[-0.093626841902733,-0.12374742329121,-0.040578234940767],[0.37724846601486,0.66122531890869,-0.2006948441267]],[[-0.15764433145523,-0.14155328273773,0.082757703959942],[0.53122287988663,0.24484547972679,0.020362954586744],[-0.35517340898514,-0.19772779941559,-0.034510117024183]],[[-0.28583884239197,-0.73983252048492,0.38738375902176],[0.3569660782814,-0.4890268445015,0.39637139439583],[0.12439718097448,-0.027507996186614,-0.65250420570374]],[[-0.34083095192909,0.49972042441368,-0.035597857087851],[-0.65907537937164,-0.36073023080826,0.51677578687668],[-0.3154245018959,0.23566852509975,0.45916113257408]],[[-0.34335651993752,-0.11100794374943,0.13740383088589],[-0.03456037119031,-0.74709802865982,0.28894725441933],[0.012383027002215,-0.58077698945999,-0.29432374238968]],[[0.90619283914566,-0.15270817279816,-0.0017274732235819],[0.19168409705162,-0.13087449967861,-0.94949299097061],[-0.024794625118375,-0.21565526723862,0.38071230053902]],[[0.037295151501894,-0.1509585827589,0.21572557091713],[-0.082088999450207,0.038322072476149,-0.12089124321938],[0.78158897161484,-0.5212367773056,-0.20067149400711]],[[-0.40408384799957,0.11807876080275,0.31821209192276],[-0.27698275446892,0.9082258939743,-0.19345578551292],[-0.10669042170048,-0.3038222193718,-0.052785281091928]],[[-0.33797490596771,0.049535688012838,-0.578280210495],[0.49854812026024,0.17105475068092,0.22373501956463],[0.078630365431309,-0.51538187265396,0.40960887074471]],[[-0.22811502218246,0.07226175069809,0.091191433370113],[0.036242041736841,0.10347555577755,0.029326405376196],[0.25438979268074,0.016194682568312,-0.36989960074425]],[[0.61462432146072,-0.37511658668518,0.055446118116379],[-0.65783727169037,0.77850621938705,0.36488568782806],[0.027274275198579,-1.3471932411194,0.079945839941502]],[[-0.042801003903151,-0.090182781219482,-0.06360536813736],[0.24323174357414,0.068744987249374,-0.19765329360962],[0.08509922772646,-0.22799292206764,0.26695042848587]],[[-0.46270683407784,-0.13333161175251,0.15604025125504],[-0.29044514894485,0.036222502589226,-0.29457661509514],[1.1076997518539,0.24720819294453,-0.36815559864044]],[[0.23388479650021,-0.19779133796692,-0.15588212013245],[0.30950552225113,-0.476193100214,-0.16869792342186],[0.11772218346596,0.1810937076807,0.16752617061138]],[[0.23286789655685,0.22474406659603,0.22098541259766],[0.0097692217677832,-0.17789445817471,-0.20962961018085],[0.049828488379717,-0.48383381962776,0.13550211489201]],[[0.23843424022198,-0.72529864311218,0.86908620595932],[0.085757382214069,0.21099585294724,0.48998284339905],[-0.9348549246788,0.11709181964397,-0.35225278139114]],[[0.87530583143234,-0.07686710357666,0.98149859905243],[0.13561454415321,-0.47965741157532,-0.42482557892799],[0.06534456461668,-0.98565196990967,-0.089014731347561]],[[-0.13779793679714,0.4296572804451,0.28743159770966],[-0.27408516407013,0.58352571725845,-0.86399453878403],[0.13124541938305,0.17233300209045,-0.33070659637451]],[[0.51822030544281,0.68890106678009,0.32974338531494],[-0.48961365222931,-0.38384342193604,-0.3648541867733],[-0.56388753652573,-0.1074535921216,0.35519608855247]],[[0.23875875771046,0.1455589979887,0.20837584137917],[-0.63106733560562,0.47190764546394,-0.15356273949146],[-0.28049817681313,-0.0042860824614763,0.0038709894288331]],[[-0.093633621931076,-0.50682103633881,-0.12500195205212],[0.49834990501404,0.14318445324898,0.67174476385117],[-0.64649152755737,0.80312091112137,-0.74833875894547]],[[0.75358921289444,-0.13609384000301,-0.061749968677759],[-0.12205643206835,-0.36177346110344,0.11787969619036],[-0.026464771479368,0.19029687345028,-0.32959720492363]],[[-0.39458283782005,0.098407588899136,-0.86870741844177],[0.23894780874252,0.066190794110298,0.12147293239832],[-0.10626242309809,0.53576761484146,0.30739486217499]],[[-0.10785721242428,-0.036578953266144,-0.061695758253336],[-0.86446112394333,-0.15029068291187,0.48474350571632],[-0.22571581602097,0.75967901945114,0.2058169990778]],[[0.1480213701725,0.61504745483398,-0.02792058698833],[0.41179841756821,-0.46180456876755,0.11997353285551],[-0.87701326608658,-0.23080751299858,0.30449241399765]],[[0.31027457118034,-0.73277455568314,-0.029636461287737],[0.61802059412003,0.034334078431129,-0.52178072929382],[0.72181743383408,-0.20576512813568,-0.19149926304817]],[[-0.75073474645615,-0.25422835350037,0.23287659883499],[-0.20738099515438,-0.091195091605186,0.31786039471626],[-0.10554748028517,0.56001830101013,0.3032291829586]],[[0.6463737487793,0.096357718110085,0.086309127509594],[0.037272252142429,-0.42989456653595,-0.66801100969315],[0.20846496522427,-0.072901993989944,0.09538684040308]],[[-1.0741109848022,-0.012776639312506,-0.58137935400009],[0.048367995768785,0.27045238018036,-0.19446557760239],[0.3865559399128,-0.72866469621658,0.3828698694706]],[[0.048944801092148,-0.55968844890594,-0.8596670627594],[0.25556778907776,0.58392715454102,0.53147667646408],[-0.012430850416422,0.036449458450079,-0.025054756551981]],[[0.9123717546463,0.58972632884979,-0.29437911510468],[0.021390212699771,0.065597578883171,0.20586869120598],[-0.62205177545547,0.26322156190872,-0.62198805809021]],[[-0.42147091031075,0.76032900810242,0.78638106584549],[-0.032190255820751,-0.14852707087994,-0.16073957085609],[-0.5768124461174,-0.12775629758835,-0.069860890507698]],[[0.22786566615105,-0.20605637133121,0.39192408323288],[-0.15776661038399,0.094115048646927,1.0737560987473],[0.13578520715237,0.20165875554085,-0.63828313350677]],[[0.49966889619827,-0.59904795885086,-0.20019616186619],[0.37010592222214,-0.27157786488533,0.016624744981527],[0.044813543558121,0.18087670207024,-0.21731525659561]],[[-0.68399453163147,0.40633976459503,0.03781646490097],[0.17239755392075,1.2226885557175,-1.3609079122543],[-0.1516250371933,-0.23882305622101,0.60006403923035]]]],"nOutputPlane":1,"kW":3,"kH":3,"bias":[0.019728606566787],"nInputPlane":128}] \ No newline at end of file diff --git a/waifu2x-caffe-gui/models/noise2_model.json b/waifu2x-caffe-gui/models/noise2_model.json new file mode 100644 index 0000000..b88cc4a --- /dev/null +++ b/waifu2x-caffe-gui/models/noise2_model.json @@ -0,0 +1 @@ +[{"weight":[[[[-0.014335822314024,-0.1060119792819,-0.061328429728746],[-0.016285492107272,-0.056306250393391,0.0076447250321507],[0.010947619564831,0.10644806176424,0.12145271897316]]],[[[0.13256335258484,0.072237521409988,-0.031917873769999],[0.024282041937113,-0.0029096370562911,0.064031839370728],[-0.020935775712132,-0.027226837351918,0.0049589402042329]]],[[[0.06178355962038,0.045330494642258,0.00044863671064377],[0.015910668298602,-0.052424132823944,-0.10337226092815],[-0.030202453956008,-0.038151178508997,0.086624644696712]]],[[[0.00071584415854886,0.01205794326961,0.16440182924271],[-0.016719806939363,-0.14624787867069,0.0082169501110911],[0.003453372977674,-0.018065925687551,-0.012059934437275]]],[[[0.063115328550339,-0.0096052037551999,-0.0070411851629615],[0.0086213340982795,0.054461155086756,0.017052367329597],[0.20671121776104,-0.027850272133946,0.0053869127295911]]],[[[-0.093287453055382,-0.13223147392273,9.6251133072656e-06],[-0.10941642522812,-0.031965732574463,-0.014723480679095],[0.0052406927570701,-0.14249007403851,0.021221049129963]]],[[[0.11830434203148,0.048505399376154,-0.055866785347462],[-0.055073827505112,-0.032018423080444,0.062891371548176],[-0.056802906095982,-0.019781563431025,-0.005360106471926]]],[[[-0.058214657008648,-0.081497929990292,-0.0184570197016],[0.016813086345792,0.10888087749481,0.066242642700672],[0.0088301114737988,-0.0056713591329753,-0.062218859791756]]],[[[0.066449575126171,0.041699025779963,0.051225833594799],[-0.05399315059185,-0.042092446237803,-0.052780207246542],[0.026778550818563,-0.034650530666113,-0.010306371375918]]],[[[-0.049797154963017,0.04582890868187,0.091510653495789],[0.06345009803772,0.12616890668869,0.091382369399071],[-0.017253054305911,-0.0343362018466,0.15567617118359]]],[[[-0.018461756408215,-0.0213942527771,0.034300085157156],[0.063384674489498,0.0021924064494669,-0.0025131211150438],[-0.016404585912824,-0.048970751464367,0.017220940440893]]],[[[0.019115382805467,-0.0087813725695014,-0.023058703169227],[0.017130317166448,-0.020491601899266,-0.009829412214458],[0.010525261051953,0.0056746336631477,0.0019875685684383]]],[[[0.13071170449257,0.0091231996193528,-0.050196330994368],[0.032683167606592,0.10653802007437,0.0071351337246597],[-0.04678625613451,-0.016782339662313,-0.0057604131288826]]],[[[0.017563063651323,-0.057013154029846,-0.0036675750743598],[-0.058440007269382,-0.082216016948223,-0.083846621215343],[-0.0092150317505002,0.027795540168881,-0.036848627030849]]],[[[-0.073909379541874,-0.050674628466368,0.013361861929297],[-0.065012380480766,-0.094500318169594,0.074585661292076],[0.075160175561905,0.079879768192768,0.045553468167782]]],[[[0.012906705029309,0.0035044685937464,-0.050498679280281],[-0.0069088316522539,0.039850387722254,0.015695882961154],[-0.025034066289663,0.018331095576286,-0.021820129826665]]],[[[-0.18091605603695,-0.040136218070984,0.010082839056849],[0.017648581415415,-0.060185380280018,-0.052503582090139],[-0.064610153436661,0.023594848811626,0.07172679156065]]],[[[-0.089749582111835,0.024006692692637,0.12494652718306],[0.033189546316862,0.16423189640045,-0.10327005386353],[-0.0062125413678586,-0.041303083300591,0.023401357233524]]],[[[0.0026070063468069,0.0018785459687933,0.00095896032871678],[0.044277016073465,-0.028792133554816,-0.0025514303706586],[-0.31883779168129,0.029087752103806,0.0051766424439847]]],[[[0.005940577480942,-0.028256382793188,0.024417113512754],[-0.1779500991106,0.09941378235817,-0.0080643463879824],[-0.015975931659341,0.089547105133533,0.013363878242671]]],[[[-0.022858906537294,0.055986981838942,0.077431172132492],[-0.047442145645618,0.020190170034766,-0.011890863068402],[0.053598634898663,-0.035634014755487,-0.011401636525989]]],[[[-0.065576173365116,-0.0096515771001577,0.0081691425293684],[0.056624166667461,0.0047520878724754,-0.0015310798771679],[0.014395614154637,-0.060682889074087,-0.0061644082888961]]],[[[-0.031481049954891,0.037365313619375,-0.052300408482552],[0.051429409533739,-0.070420667529106,0.084884010255337],[-0.052848134189844,0.082260057330132,-0.069279916584492]]],[[[-0.097422420978546,-0.018627766519785,0.0071704206056893],[-0.015696128830314,-0.0043201874941587,0.011565051041543],[-0.0037108748219907,0.006870498880744,0.12083587050438]]],[[[0.022388219833374,-0.024889286607504,-0.016224194318056],[-0.040820755064487,0.044497668743134,0.0033192369155586],[0.031153680756688,-0.046246383339167,0.0059428405947983]]],[[[0.027570711448789,0.056647092103958,-0.091898426413536],[-0.12570856511593,-0.021896038204432,-0.028155351057649],[0.087129846215248,0.018909260630608,-0.069002613425255]]],[[[0.0046836393885314,0.0081694796681404,-0.021421683952212],[0.18059416115284,-0.16013233363628,0.00043039314914495],[0.12381572276354,-0.14029425382614,0.0057786768302321]]],[[[0.0049306484870613,-0.081541977822781,0.14013230800629],[-0.10711122304201,-0.044609051197767,0.0045328666456044],[-0.065012246370316,0.076647080481052,0.074612908065319]]],[[[-0.00065309036290273,-0.00098881113808602,0.00083327473839745],[0.00025093922158703,0.0013933030422777,-0.0037097395397723],[-0.0010057274485007,-0.0019850854296237,0.0011586897308007]]],[[[-0.0054874178022146,0.10112877190113,-0.12369873374701],[0.059072021394968,-0.025371056050062,0.0048489919863641],[0.0018317814683542,-0.0014621160225943,-0.0073154303245246]]],[[[0.0044997003860772,-0.012869786471128,-0.011679029092193],[-0.0065833502449095,-0.0011010435409844,-0.17161539196968],[0.012517916969955,0.17710009217262,0.0054664337076247]]],[[[0.11303382366896,0.034666784107685,0.0090927397832274],[-0.020189257338643,0.054036274552345,-0.056458130478859],[-0.016125885769725,-0.0051026456058025,-0.085305102169514]]]],"nOutputPlane":32,"kW":3,"kH":3,"bias":[-0.0061175893060863,-0.16210243105888,-0.0055235750041902,-0.016631282866001,-0.13830238580704,0.091502390801907,-0.012913045473397,-0.0051554855890572,-0.0093604074791074,-0.08988668769598,-0.016276279464364,-0.007946184836328,-0.18149273097515,0.049379900097847,0.011605724692345,-0.010677405633032,0.085379771888256,-0.14022855460644,0.013245881535113,-0.014949175529182,-0.086496226489544,-0.00064347259467468,-0.0054833288304508,-0.021943189203739,-0.0057466113939881,0.0060996180400252,-0.014849109575152,0.0088981930166483,-0.00035587727325037,-0.013178002089262,-0.017186559736729,-0.0378348082304],"nInputPlane":1},{"weight":[[[[0.040904276072979,0.19482024013996,0.050713866949081],[0.11304130405188,-0.15284875035286,0.036095451563597],[0.10636717826128,0.0036628232337534,0.003549737855792]],[[0.064819246530533,-0.061766844242811,-0.028158240020275],[-0.10363809764385,-0.035327080637217,0.030947204679251],[0.035005211830139,-0.036394692957401,0.096942186355591]],[[0.078707136213779,0.005263939499855,-0.067003130912781],[0.061196271330118,-0.042645014822483,0.064344897866249],[-0.023429254069924,0.022551506757736,-0.075566351413727]],[[-0.0064539746381342,-0.08665931224823,0.0014264299534261],[0.12994068861008,-0.059673752635717,0.035166949033737],[0.074041947722435,-0.0011663486948237,-0.045717813074589]],[[-0.043758779764175,-0.026117101311684,0.044507618993521],[0.028808558359742,-0.0076407687738538,-0.058175310492516],[0.042944010347128,-0.068097837269306,0.12553563714027]],[[-0.004319341853261,-0.053047075867653,-0.10276804864407],[0.047118477523327,0.19497276842594,-0.020077308639884],[0.0035610252525657,0.13022772967815,0.070222347974777]],[[-0.017360957339406,0.10863408446312,-0.10534544289112],[0.064780198037624,0.032009724527597,0.00075265666237101],[0.11942066252232,-0.0085789561271667,-0.018994586542249]],[[-0.058059096336365,-0.00095097778830677,0.069947876036167],[0.12055041640997,0.080718331038952,-0.076953686773777],[-0.051662184298038,-0.041039768606424,-0.056394979357719]],[[0.047148216515779,-0.095220983028412,0.072799921035767],[-0.0088804420083761,-0.13706734776497,-0.098431617021561],[0.045906398445368,-0.0069125392474234,-0.049599677324295]],[[0.11956649273634,0.033707041293383,0.094449542462826],[-0.15008620917797,0.09111674875021,0.078994482755661],[-0.12138278782368,-0.10074934363365,-0.031846016645432]],[[-0.086452946066856,0.017586627975106,0.095921486616135],[0.01736512966454,0.040552321821451,0.11287941783667],[-0.012359346263111,0.016468493267894,-0.10192263871431]],[[-0.10520629584789,-0.0016630972968414,0.12622074782848],[0.0031979854684323,-0.17010135948658,-0.0097279781475663],[0.021006613969803,0.0027436055243015,0.1673739105463]],[[-0.0098027708008885,-0.017963970080018,0.017183555290103],[0.038817834109068,0.059667740017176,-0.08314710855484],[-0.10676895081997,-0.061023365706205,0.093665465712547]],[[0.03858982026577,-0.022021267563105,-0.19066283106804],[0.027915755286813,-0.15789538621902,-0.18718793988228],[0.09517977386713,0.064621634781361,0.04946081712842]],[[0.042953096330166,-0.098402783274651,-0.052077732980251],[0.11954591423273,0.055919364094734,0.033551547676325],[0.073072917759418,-0.12647412717342,-0.021778212860227]],[[-0.049481712281704,0.038913078606129,0.081486947834492],[-0.058315046131611,0.041717994958162,-0.13775381445885],[-0.16463173925877,0.073543556034565,0.080881156027317]],[[-0.033585965633392,0.043574694544077,-0.07299131155014],[-0.037782464176416,0.046630341559649,-0.066638886928558],[-0.017727943137288,0.07849332690239,-0.12688831984997]],[[-0.077661968767643,-0.021519048139453,0.026045361533761],[0.096625693142414,-0.041681386530399,-0.038997910916805],[0.015435477718711,0.11210725456476,-0.04582554847002]],[[-0.0015474277315661,0.074779763817787,-0.10537847876549],[0.10426818579435,0.141860678792,0.17545120418072],[0.054253146052361,0.12950211763382,0.018826249986887]],[[0.042894449084997,0.14330740272999,-0.067173972725868],[-0.063489064574242,0.064003646373749,-0.1534825116396],[-0.0359739176929,0.03505465015769,-0.013320065103471]],[[-0.10197035968304,0.019500218331814,-0.029181804507971],[0.071137569844723,-0.13317014276981,-0.015768133103848],[0.071688838303089,0.030425272881985,0.021656466647983]],[[0.065507628023624,0.018347501754761,-0.015060498379171],[-0.0030577194411308,0.012875949963927,-0.066206984221935],[0.063944779336452,0.086667858064175,-0.13375210762024]],[[0.00034467480145395,0.070317901670933,0.031300887465477],[0.1387578099966,0.0091201467439532,0.14113266766071],[-0.058534689247608,0.089459210634232,-0.067049317061901]],[[0.040772330015898,0.041515976190567,0.015801079571247],[-0.083118714392185,-0.10857889056206,-0.012121890671551],[-0.03185536339879,-0.098037660121918,-0.014619681984186]],[[0.031319249421358,0.12786191701889,-0.040462542325258],[0.020731398835778,0.090187177062035,-0.032765425741673],[-0.020371470600367,-0.0020230261143297,0.020347308367491]],[[0.0076847858726978,-0.04047029837966,-0.018062504008412],[0.017972763627768,-0.00518246460706,-0.1775508671999],[-0.038855414837599,0.0093745375052094,0.014646927826107]],[[0.05331102386117,0.037856049835682,0.07691340893507],[0.020850125700235,0.050490606576204,0.00071610859595239],[0.011315095238388,0.099961772561073,0.031806871294975]],[[-0.050792533904314,0.017283795401454,0.0081928614526987],[0.060160428285599,-0.031930930912495,-0.051242601126432],[0.028191385790706,0.068477861583233,0.033146198838949]],[[0.057627063244581,0.078210443258286,0.056887172162533],[0.0060197645798326,0.063528299331665,-0.0070220632478595],[-0.10487031191587,-0.028088487684727,0.043538793921471]],[[0.099205382168293,0.047951497137547,0.14418725669384],[-0.029585797339678,-0.061135552823544,0.12999247014523],[-0.05246264860034,0.05471621081233,-0.045450646430254]],[[-0.060004882514477,0.12510161101818,0.08100164681673],[-0.062968127429485,-0.21632117033005,0.058743618428707],[0.063539259135723,0.099520921707153,-0.010981363244355]],[[-0.12037558853626,0.04283569380641,0.046839345246553],[0.032566480338573,-0.03137881308794,-0.059221707284451],[-0.017209261655807,-0.018832139670849,0.013910672627389]]],[[[-0.10414823889732,0.0087459534406662,-0.0044615156948566],[-0.11061332374811,-0.081422865390778,-0.052690349519253],[0.086489669978619,0.13439853489399,-0.010700661689043]],[[-0.07404013723135,0.1285388469696,0.046002425253391],[-0.030405666679144,-0.092365115880966,-0.10782922059298],[-0.11283683776855,-0.12228183448315,-0.19975709915161]],[[-0.090909384191036,0.069687493145466,0.053550664335489],[0.026074165478349,0.098985180258751,-0.00039895193185657],[0.013212940655649,-0.16877742111683,-0.16076375544071]],[[-0.070108108222485,-0.025329113006592,0.046199589967728],[-0.071938201785088,0.16101428866386,-0.10994189232588],[-0.096816703677177,-0.0084098260849714,0.058873828500509]],[[0.056031066924334,-0.14203879237175,-0.22469417750835],[-0.050836574286222,0.027140513062477,-0.10992576926947],[-0.030803291127086,-0.050582621246576,0.01562082208693]],[[0.033840730786324,0.040345333516598,0.11832596361637],[0.10129607468843,0.11475536972284,0.058769982308149],[-0.0026926333084702,0.073374070227146,0.13981769979]],[[0.048057999461889,0.097709201276302,-0.08247546851635],[-0.003733939724043,-0.13253825902939,0.016754942014813],[0.072514794766903,-0.054380524903536,-0.041099142283201]],[[0.07051295787096,-0.14092056453228,-0.14572921395302],[-0.068523928523064,0.12016616016626,-0.083758883178234],[-0.041304178535938,0.060913473367691,0.075459755957127]],[[-0.00077669275924563,0.14952658116817,0.03123165667057],[-0.06470750272274,-0.13236066699028,0.16214144229889],[0.10911424458027,-0.029596514999866,-0.08306822180748]],[[-0.21413923799992,-0.022915678098798,0.10809347033501],[-0.21861845254898,-0.12247070670128,-0.18084305524826],[-0.08240982145071,-0.11834271997213,0.16049237549305]],[[0.0057399612851441,-0.21164153516293,0.014538836665452],[0.015928870067,0.043786324560642,-0.099415585398674],[-0.074570707976818,0.18274565041065,-0.1203443929553]],[[-0.024151213467121,-0.079686835408211,0.083555050194263],[-0.089977130293846,0.0029985595028847,-0.025952307507396],[0.01106952317059,0.05907054245472,-0.015705486759543]],[[-0.12385258078575,-0.081513494253159,-0.041071213781834],[-0.076510049402714,0.13155481219292,-0.24022926390171],[0.0035486684646457,0.04089118912816,-0.041692011058331]],[[0.16091807186604,0.0077002691105008,-0.27631828188896],[-0.053421638906002,0.066737219691277,0.1044948771596],[0.020908256992698,0.13070683181286,0.025800652801991]],[[0.087988071143627,0.033610615879297,-0.0060584885068238],[-0.097094483673573,0.065192751586437,-0.062555097043514],[-0.04189657792449,0.082486234605312,-0.08921404927969]],[[0.0049487566575408,0.15548925101757,0.040028624236584],[-0.11354723572731,-0.064879156649113,0.044209726154804],[0.0060917506925762,-0.13296645879745,0.067074149847031]],[[0.057284269481897,-0.065139017999172,-0.0086081959307194],[-0.0058047762140632,0.063195414841175,-0.072746314108372],[0.050273932516575,0.067178033292294,0.018620742484927]],[[0.051019549369812,-0.031428337097168,-0.069948390126228],[-0.0041843308135867,0.012982185930014,-0.17716272175312],[-0.019636169075966,0.13672383129597,-0.017802201211452]],[[-0.029707334935665,0.17419195175171,0.17877370119095],[-0.00020763531210832,-0.05610629171133,-0.0022396347485483],[0.0034372142981738,0.051168989390135,-0.047278445214033]],[[-0.022935893386602,-0.093471571803093,-0.037723802030087],[0.14021551609039,0.087272956967354,-0.036264378577471],[-0.10566449165344,-0.056340895593166,-0.0066154557280242]],[[0.0080135026946664,-0.035760439932346,-0.14574974775314],[0.065377235412598,-0.022137189283967,-0.087231911718845],[0.05994251742959,-0.10865374654531,-0.082677647471428]],[[-0.093241214752197,-0.0077652111649513,-0.068717993795872],[-0.073378391563892,-0.033194791525602,-0.047508519142866],[-0.035630606114864,0.080990321934223,0.0075344271026552]],[[-0.013372357934713,-0.043205354362726,-0.044833742082119],[-0.12783062458038,0.14926564693451,-0.13088968396187],[-0.0039880471304059,-0.068780057132244,-0.037325099110603]],[[0.03699891269207,-0.13801530003548,-0.11365562677383],[0.0055805575102568,-0.057000614702702,-0.030245874077082],[-0.022928593680263,-0.025624183937907,0.006504129152745]],[[0.018951503559947,0.0053452807478607,-0.018439440056682],[-0.12279919534922,-0.011206898838282,0.13317497074604],[0.031417615711689,-0.038604646921158,0.00043078232556581]],[[-0.11892005056143,-0.024626372382045,0.029064048081636],[0.10742793232203,0.045077990740538,-0.040320541709661],[-0.028639448806643,-0.15650604665279,0.01746235601604]],[[0.010914525017142,0.061586506664753,0.041510265320539],[-0.067297965288162,-0.055299818515778,-0.044292502105236],[0.11470580101013,-0.070464596152306,-0.031232323497534]],[[-0.022508420050144,-0.033909313380718,-0.00086333323270082],[-0.00086453737458214,0.022240616381168,0.11032532900572],[-0.045955747365952,0.019354416057467,-0.015653530135751]],[[0.008678681217134,-0.055560421198606,-0.018440132960677],[0.0059776292182505,-0.12797799706459,-0.10097232460976],[-0.026118829846382,0.15879620611668,0.11793302744627]],[[-0.062134072184563,-0.058658577501774,0.051624208688736],[-0.013492689467967,-0.058121852576733,0.067362628877163],[0.10359729081392,-0.033878639340401,0.059022068977356]],[[0.019159497693181,-0.041372206062078,0.077287919819355],[0.034678783267736,0.068311251699924,0.0081138201057911],[0.0011450451565906,-0.052639793604612,-0.0048918747343123]],[[-0.012400567531586,-0.022920474410057,-0.038471832871437],[0.09416201710701,-0.010970848612487,0.012553219683468],[0.017217611894011,-0.021357789635658,0.13260938227177]]],[[[0.070081971585751,-0.1582822650671,0.0054250513203442],[0.1021596044302,-0.03379400447011,0.024543462321162],[0.13259465992451,0.041826318949461,0.094304822385311]],[[-0.021209662780166,-0.076701186597347,-0.021180504933],[0.021753625944257,-0.072587616741657,0.14613829553127],[-0.010307766497135,-0.017177443951368,0.010477061383426]],[[-0.17144849896431,-0.033683892339468,-0.089683294296265],[-0.093952991068363,0.080131337046623,0.031989339739084],[-0.2860871553421,-0.064712911844254,0.024932267144322]],[[-0.066137127578259,0.038351349532604,-0.11257530003786],[0.082408040761948,0.09091654419899,0.049151301383972],[-0.12707343697548,-0.17338295280933,0.14029133319855]],[[0.12994016706944,-0.045251943171024,0.082459002733231],[-0.29059624671936,0.090183280408382,-0.043727811425924],[-0.03877267241478,-0.024072919040918,0.06547000259161]],[[0.087649516761303,-0.080139368772507,0.050841752439737],[0.11078337579966,-0.046616479754448,-0.013149293139577],[-0.052793927490711,0.053095743060112,-0.14251019060612]],[[0.020508078858256,-0.045880313962698,-0.14338283240795],[-0.25529688596725,0.076904781162739,-0.014373831450939],[-0.28141507506371,-0.030233673751354,-0.2320901453495]],[[-0.23756124079227,0.073064178228378,-0.095385231077671],[-0.10492084920406,0.028672071173787,-0.062836699187756],[0.062594816088676,-0.016573159024119,-0.073244735598564]],[[-0.038261268287897,0.081676095724106,-0.081271663308144],[0.14741887152195,-0.13009062409401,0.047083020210266],[0.11065294593573,0.23017475008965,-0.018827740103006]],[[0.034478679299355,0.073913417756557,0.0099090747535229],[0.10680164396763,-0.085096277296543,-0.16187505424023],[-0.00035767001099885,0.12629386782646,0.034486591815948]],[[-0.0086043169721961,0.080458648502827,0.0021427592728287],[0.27154806256294,-0.088516615331173,-0.02955200150609],[-0.067342206835747,-0.10081645846367,-0.047628946602345]],[[-0.13047930598259,-0.071136273443699,-0.083077132701874],[0.15189126133919,-0.15310160815716,-0.11411248892546],[0.34938454627991,0.052284870296717,0.02394961938262]],[[-0.098742134869099,0.042912714183331,-0.21370252966881],[-0.096625663340092,0.0077037871815264,-0.015314654447138],[0.061457976698875,-0.29878556728363,0.060806225985289]],[[-0.093232147395611,0.12982858717442,-0.028198644518852],[-0.018128668889403,0.0742167532444,-0.15427653491497],[0.12525440752506,-0.024635419249535,0.013108720071614]],[[-0.030409740284085,-0.085463531315327,-0.04816397279501],[-0.1217774450779,0.10214277356863,0.21152809262276],[0.058612421154976,0.013771193102002,-0.12446096539497]],[[0.039887689054012,0.064243756234646,-0.003900850424543],[0.062890760600567,-0.010821791365743,-0.10780167579651],[-0.067571930587292,-0.1131513863802,0.17792446911335]],[[-0.0943653434515,0.039859879761934,-0.01742260158062],[0.28195059299469,0.057514663785696,-0.072473414242268],[-0.08271699398756,0.11353525519371,-0.0064418893307447]],[[-0.09527887403965,0.046581298112869,0.011106449179351],[-0.22527658939362,-0.1221846267581,-0.20482890307903],[-0.13338285684586,0.17326597869396,0.0082630040124059]],[[-0.10390259325504,-0.02878619171679,0.05138098821044],[-0.011345281265676,0.1544376462698,0.06157973408699],[0.022819571197033,0.048056308180094,-0.074593737721443]],[[0.065941281616688,0.07126758992672,-0.33037647604942],[-0.019413344562054,-0.053610607981682,-0.4211385846138],[0.01241806987673,-0.17598652839661,-0.31530803442001]],[[-0.015127044171095,-0.16446895897388,0.080571033060551],[-0.13894805312157,0.067489996552467,-0.059182740747929],[-0.15954667329788,0.046067263931036,-0.061813004314899]],[[0.092288866639137,-0.035834062844515,-0.16853679716587],[0.22505858540535,-0.08951161801815,-0.054693326354027],[-0.08213384449482,0.15995563566685,-0.11779233068228]],[[-0.059663411229849,0.015300493687391,-0.25361052155495],[-0.21716943383217,-0.22132690250874,-0.056889645755291],[0.018184477463365,-0.044597450643778,0.1597273349762]],[[-0.081789970397949,-0.22004273533821,0.088881753385067],[0.14392131567001,-0.2760990858078,0.0069159930571914],[-0.23765768110752,0.10641863197088,-0.34197118878365]],[[-0.11106525361538,0.0040851235389709,-0.097328811883926],[-0.12517823278904,-0.19839191436768,0.10018560290337],[-0.18860225379467,0.068864613771439,0.095983557403088]],[[0.059079010039568,-0.017145533114672,0.091955289244652],[-0.06234297901392,0.091289550065994,-0.00075097574153915],[-0.10827396810055,0.097604334354401,-0.11081129312515]],[[-0.002322101732716,-0.29110214114189,0.041346166282892],[0.26824590563774,-0.27563753724098,-0.044732917100191],[-0.36194255948067,-0.27120378613472,-0.10436496138573]],[[-0.16894483566284,0.18181440234184,-0.20266163349152],[-0.25411200523376,-0.00034989192499779,-0.10425324738026],[-0.098165206611156,-0.2074937671423,0.29223075509071]],[[0.0048841186799109,-0.11223085969687,-0.14620266854763],[-0.18762838840485,0.18290781974792,-0.097895465791225],[0.18597364425659,-0.054135549813509,0.010457127355039]],[[0.071214072406292,-0.28074753284454,0.047818798571825],[-0.019426129758358,-0.09330853074789,0.036705426871777],[-0.14161138236523,-0.21884153783321,-0.16285838186741]],[[-0.17392534017563,-0.0047064763493836,-0.15091775357723],[-0.19375050067902,0.098536461591721,-0.19041073322296],[-0.15449796617031,-0.13440500199795,-0.17272944748402]],[[0.0030899713747203,0.048526622354984,-0.1044360473752],[-0.21127496659756,0.019523330032825,-0.19955499470234],[0.19554558396339,0.017389329150319,0.11981488764286]]],[[[0.033997301012278,-0.08631943166256,-0.034123349934816],[0.10096227377653,-0.26573652029037,0.021516414359212],[-0.062066625803709,-0.12162650376558,0.12897878885269]],[[-0.10874660313129,0.080880887806416,0.14872050285339],[0.10482220351696,-0.12701368331909,0.13355824351311],[0.046182744204998,0.01292622834444,0.26103028655052]],[[0.15624083578587,-0.043503396213055,0.049674730747938],[0.062203243374825,-0.048426438122988,-0.14356191456318],[0.042987339198589,-0.048426028341055,0.13729037344456]],[[0.054870653897524,0.15213564038277,-0.051839429885149],[-0.038666795939207,-0.25849163532257,-0.10056638717651],[-0.072714917361736,-0.18208478391171,-0.14299844205379]],[[-0.055498644709587,0.012037623673677,0.067759603261948],[-0.038540255278349,-0.027683870866895,0.12419648468494],[0.0089681213721633,0.046061545610428,0.023589536547661]],[[0.067981727421284,-0.040912687778473,-0.01470229960978],[-0.14336548745632,0.026068715378642,-0.057157706469297],[0.18035294115543,-0.17003300786018,0.099613830447197]],[[0.18011085689068,-0.018515106290579,0.015526016242802],[-0.010720596648753,-0.10542896389961,-0.072097599506378],[3.1722469429951e-05,-0.11384440213442,0.012574505060911]],[[0.0042589944787323,0.064246453344822,-0.058048069477081],[-0.1589338183403,-0.11061963438988,0.0016800462035462],[-0.01252093911171,-0.14818358421326,-0.0034095267765224]],[[-0.027237707749009,-0.077919758856297,-0.0011533662909642],[-0.044361788779497,0.0061964094638824,-0.22907511889935],[-0.017668001353741,0.019927890971303,0.021142020821571]],[[0.016955012455583,-0.053002219647169,-0.059060271829367],[0.13203866779804,-0.10478800535202,0.061998046934605],[-0.068795546889305,-0.06089449301362,-0.085546933114529]],[[-0.12944485247135,-0.03635011613369,0.061814032495022],[0.10244113206863,-0.18361304700375,-0.058341715484858],[0.24613101780415,-0.081519111990929,0.056267395615578]],[[0.10456243902445,-0.042893618345261,-0.05636228993535],[-0.03339234739542,-0.22014912962914,-0.055723320692778],[0.061280746012926,0.056158471852541,-0.042024068534374]],[[0.10529676824808,-0.011807455681264,-0.23123969137669],[0.069049030542374,0.28414776921272,-0.034839909523726],[-0.18429087102413,0.047308042645454,0.33946490287781]],[[0.045990139245987,-0.067908003926277,0.030286410823464],[-0.2134752124548,0.036777354776859,-0.084424212574959],[0.057083263993263,0.04723135009408,0.11658005416393]],[[0.09562473744154,0.065078563988209,0.094992250204086],[0.017624534666538,-0.23039750754833,-0.13316012918949],[0.046442572027445,-0.019240079447627,0.097974233329296]],[[0.11984877288342,-0.0038406034000218,-0.1742902547121],[0.046059925109148,-0.033142473548651,-0.045409075915813],[0.11621104925871,0.01518792193383,0.065517939627171]],[[-0.040584251284599,0.081362880766392,0.025078909471631],[-0.040941938757896,0.084202602505684,-0.089655429124832],[-0.0041832057759166,-0.12148150801659,0.02345616184175]],[[0.15499784052372,0.038804262876511,0.028057206422091],[-0.046818319708109,0.023491468280554,0.04623743891716],[0.1385014206171,-0.11407327651978,0.018251037225127]],[[0.063204154372215,-0.053623002022505,-0.24001494050026],[-0.21128736436367,-0.089059241116047,-0.041004557162523],[0.13594289124012,-0.009075672365725,-0.023882903158665]],[[0.041336383670568,0.15797287225723,0.16565243899822],[-0.12638592720032,0.035474929958582,-0.015633685514331],[0.002430597320199,-0.085497684776783,-0.093400470912457]],[[0.038264181464911,-0.17621812224388,0.071945026516914],[0.21242380142212,-0.081485964357853,-0.080995783209801],[-0.022233918309212,0.13345463573933,0.046093210577965]],[[0.020927976816893,-0.18328996002674,-0.094984397292137],[-0.017333783209324,0.088352002203465,-0.054644305258989],[0.1401137560606,-0.051201362162828,-0.058974381536245]],[[-0.093143150210381,0.0012070392258465,-0.042663931846619],[-0.015208549797535,-0.023563541471958,0.026307655498385],[0.025717228651047,0.0076097287237644,-0.035312213003635]],[[-0.041381768882275,-0.097176447510719,-0.0042679216712713],[0.044757917523384,-0.2109629958868,0.080082982778549],[-0.10102478414774,-0.047786694020033,-0.083291888237]],[[-0.040090251713991,0.0073951096273959,0.15466286242008],[0.041831128299236,-0.07048574835062,-0.059232506901026],[-0.084561370313168,0.14984039962292,-0.075947940349579]],[[-0.013721243478358,0.026240667328238,-0.093864142894745],[-0.13573405146599,-0.080809839069843,-0.15257839858532],[-0.086527921259403,0.035880349576473,0.18533544242382]],[[-0.027354907244444,-0.17090925574303,-0.043926361948252],[0.14541463553905,-0.20798245072365,0.029242532327771],[-0.0050943037495017,0.16425542533398,0.056401249021292]],[[-0.028045041486621,0.062926694750786,-0.022014090791345],[-0.051527000963688,-0.040113020688295,-0.07455637305975],[0.18371744453907,-0.05954559892416,0.2071625739336]],[[-0.13804720342159,0.015173003077507,-0.054863229393959],[-0.14932517707348,0.0050159767270088,0.046383447945118],[0.12631697952747,0.030991656705737,-0.084681190550327]],[[0.19469551742077,-0.19296482205391,0.16788354516029],[0.085086487233639,-0.10187970846891,0.048624522984028],[-0.13633865118027,-0.074887290596962,0.10239794105291]],[[-0.029464924708009,-0.16156277060509,0.0095412982627749],[-0.08501498401165,-0.037019610404968,-0.19266276061535],[-0.096262291073799,-0.049900747835636,0.12885273993015]],[[-0.052542738616467,-0.18256685137749,-0.073996052145958],[-0.24170473217964,0.11411791294813,0.10194966197014],[-0.00037646957207471,-0.0043809497728944,0.075885474681854]]],[[[-0.044337619096041,0.018994472920895,-0.0046798102557659],[-0.10306509584188,0.15048061311245,0.085782147943974],[0.01246178150177,-0.043778456747532,0.10969770699739]],[[-0.082272216677666,0.032627463340759,-0.12410993129015],[-0.078797459602356,0.02299272082746,-0.11742373555899],[-0.089496470987797,-0.074431739747524,0.066215559840202]],[[0.07497838139534,-0.10703698545694,0.07874745875597],[0.013672131113708,0.016480812802911,0.0086680706590414],[-0.027135783806443,0.05709358304739,-0.1498845666647]],[[0.14725191891193,0.070207223296165,-0.076964415609837],[0.0090163787826896,0.02261496335268,0.019938310608268],[-0.0058338358066976,0.003227653214708,0.094515174627304]],[[0.024469997733831,-0.035117857158184,-0.089934274554253],[-0.0211619772017,-0.063204921782017,-0.15072758495808],[-0.15897665917873,-0.11820820719004,-0.033198110759258]],[[0.17973303794861,-0.058903947472572,-0.028596682474017],[0.01940737105906,0.033883158117533,0.1182466596365],[0.13047404587269,0.057384371757507,0.1508920788765]],[[-0.064293749630451,-0.1476958245039,0.071814127266407],[0.11994019895792,0.02625934034586,0.0019267755560577],[-0.09664136916399,0.0036803530529141,0.10923469811678]],[[-0.099243365228176,0.0074927797541022,0.0056061209179461],[0.12609507143497,-0.027384072542191,0.032160989940166],[-0.14994320273399,-0.019247837364674,0.18932470679283]],[[0.024186642840505,-0.018447274342179,-0.11403975635767],[-0.026261860504746,-0.061234075576067,-0.051435735076666],[0.086454294621944,0.081822611391544,-0.093690633773804]],[[-0.077343508601189,-0.015742948278785,-4.4180684199091e-05],[-0.07800355553627,0.11318121850491,-0.13125130534172],[-0.027566526085138,-0.20200058817863,-0.26557257771492]],[[0.080240458250046,0.12068930268288,-0.23424783349037],[0.060953907668591,0.099857896566391,0.085139580070972],[-0.098698601126671,0.024046450853348,-0.0028386800549924]],[[-0.0031657151412219,0.033135674893856,0.089834623038769],[0.13220880925655,0.0046379659324884,-0.16097949445248],[0.073479190468788,-0.17708237469196,0.1148130223155]],[[-0.068060085177422,-0.13427686691284,-0.13780727982521],[0.015423755161464,0.044171281158924,0.031121157109737],[-0.075023256242275,-0.074826277792454,-0.049574796110392]],[[-0.14774993062019,0.05249236151576,0.065025225281715],[0.11856161057949,0.20430034399033,0.098633579909801],[-0.076868064701557,0.019354788586497,-0.050286382436752]],[[-0.0111387912184,-0.14086186885834,0.022835798561573],[0.0055384011939168,0.14991663396358,-0.017355667427182],[-0.072811752557755,-0.028533419594169,0.12883019447327]],[[0.076710656285286,0.0025277608074248,0.059996947646141],[-0.073437124490738,-0.094494313001633,-0.071514166891575],[0.0162150003016,0.059379026293755,0.030457843095064]],[[0.030310878530145,-0.033525906503201,-0.080572180449963],[0.098204277455807,0.01335533708334,0.065886355936527],[0.050481550395489,-0.034652151167393,-0.03917583078146]],[[-0.013987961225212,0.17921993136406,-0.13769623637199],[-0.10215120017529,-0.03663907200098,0.0048050368204713],[-0.012524939142168,-0.032799486070871,0.095822401344776]],[[-0.072709143161774,0.13746564090252,0.054365579038858],[0.15380734205246,0.13006784021854,-0.17520450055599],[0.056096665561199,-0.15600328147411,0.015218750573695]],[[0.018395373597741,0.016818195581436,0.12463444471359],[-0.070795826613903,-0.043837297707796,0.10927980393171],[-0.10223545134068,-0.13024428486824,0.046047899872065]],[[-0.048779796808958,0.052458718419075,0.04833897575736],[-0.073173083364964,-0.01863226480782,-0.019525310024619],[0.083596974611282,0.081786088645458,0.088473096489906]],[[0.086080968379974,-0.018116114661098,-0.014339004643261],[0.082803450524807,0.073230519890785,0.090928770601749],[0.13720014691353,0.075377628207207,-0.04031827300787]],[[0.10625734180212,-0.03437002748251,-0.0029973809141666],[0.24076741933823,-0.1017481982708,-0.12888450920582],[0.14013656973839,0.10494574904442,-0.027269002050161]],[[-0.067377649247646,0.055846322327852,-0.016303114593029],[-0.014305491000414,-0.13536114990711,0.1547629982233],[-0.017503079026937,0.02017461322248,0.1873796582222]],[[-0.060990035533905,-0.011863727122545,-0.032261863350868],[-0.083728604018688,0.045011844485998,-0.15678179264069],[0.053141418844461,-0.0010034990264103,0.02764005959034]],[[0.064409330487251,0.0058661615476012,0.014229884371161],[0.045579295605421,0.11846920102835,0.083177104592323],[0.088331952691078,0.085577368736267,-0.11346562206745]],[[-0.032797452062368,-0.063143379986286,-0.15688791871071],[0.070750139653683,-0.079416267573833,-0.10973503440619],[0.04409534484148,0.041507553309202,-0.16874697804451]],[[-0.085404440760612,-0.083347402513027,0.16520610451698],[-0.036708492785692,-0.031342178583145,-0.087455056607723],[0.12248842418194,-0.061602834612131,0.034321870654821]],[[0.064580798149109,-0.005357360932976,0.029570588842034],[-0.045030776411295,0.047538124024868,0.042513690888882],[-0.096496358513832,-0.1132504940033,0.059413179755211]],[[0.019950980320573,0.0097277499735355,-0.089387811720371],[-0.061040483415127,0.1174950003624,-0.02297531068325],[-0.19765596091747,-0.080478675663471,-0.16081330180168]],[[-0.049004148691893,-0.11133671551943,-0.018787736073136],[0.097122631967068,0.055432010442019,-0.1444047242403],[0.027468126267195,0.051127996295691,-0.11236041039228]],[[0.090625837445259,-0.12128707766533,0.046300332993269],[-0.018658939749002,-0.030420269817114,0.0061264815740287],[0.071761757135391,-0.055611979216337,-0.11484088003635]]],[[[-0.11249060183764,-0.13383273780346,0.0062108831480145],[-0.26555088162422,-0.30394998192787,-0.23807632923126],[-0.10348482429981,-0.0082663204520941,-0.026874693110585]],[[-0.15390037000179,0.11383409798145,-0.085702545940876],[0.11993128061295,-0.070462048053741,-0.094489485025406],[-0.00017955371004064,0.073267407715321,0.14119537174702]],[[-0.14092068374157,-0.063099808990955,-0.1412218362093],[-0.069441728293896,-0.069626420736313,-0.10099266469479],[0.018291896209121,0.14858849346638,0.04507290571928]],[[0.22601690888405,-0.066725626587868,-0.2560838162899],[-0.0084854057058692,-0.15189974009991,-0.20152616500854],[0.11637634038925,-0.012677450664341,0.065940156579018]],[[-0.059008747339249,-0.001412351266481,0.0087457122281194],[0.064237698912621,0.049980599433184,-0.061891905963421],[0.042717777192593,0.22593754529953,-0.024129847064614]],[[-0.056750252842903,0.13830611109734,0.1527463644743],[-0.10961639881134,0.053479596972466,0.092656977474689],[0.00041920706280507,-0.072617076337337,0.067529417574406]],[[-0.16532984375954,-0.13839438557625,0.11031471192837],[-0.0073977606371045,-0.039401177316904,-0.074276782572269],[0.098379246890545,-0.04491775482893,-0.070562310516834]],[[0.037691738456488,-0.22939610481262,0.04316508024931],[0.0041149663738906,-0.21286378800869,-0.21063336730003],[0.18695496022701,-0.27975195646286,0.14907978475094]],[[0.11026248335838,-0.061399601399899,-0.12629017233849],[-0.11696852743626,0.12084820121527,0.096783064305782],[-0.084158346056938,-0.046746373176575,-0.060771662741899]],[[-0.089405737817287,-0.21485812962055,0.074107050895691],[-0.15946969389915,0.063173532485962,0.10396972298622],[0.10662733018398,-0.072350703179836,0.033845234662294]],[[-0.032036688178778,-0.062029514461756,-0.0045881127007306],[-0.007190094795078,-0.09355653077364,0.089139185845852],[0.0025668372400105,0.19093479216099,-0.1863758713007]],[[-0.028185533359647,-0.015855047851801,0.050691936165094],[0.047826942056417,-0.0577084235847,0.040783498436213],[0.18116992712021,-0.10896955430508,0.064130038022995]],[[0.17953664064407,-0.35760244727135,-0.072467461228371],[0.093329921364784,0.074431642889977,-0.45545998215675],[0.013707323931158,0.21743290126324,0.047617994248867]],[[0.08344154804945,0.083871804177761,0.01598728261888],[-0.045380178838968,0.13853347301483,-0.043322630226612],[-0.075413130223751,-0.097666002810001,-0.036659400910139]],[[-0.18811593949795,0.28523698449135,0.069388255476952],[-0.085888378322124,0.14839746057987,0.11388694494963],[-0.10606292635202,-0.14924816787243,-0.097081266343594]],[[0.023242089897394,-0.044456485658884,0.02946450188756],[-0.058032166212797,-0.079843364655972,0.0041106166318059],[0.0058406619355083,-0.065814159810543,0.074590556323528]],[[0.20169605314732,0.021749008446932,0.19209931790829],[-0.092576391994953,-0.10461898893118,-0.054864674806595],[-0.048056654632092,-0.20094275474548,-0.12541989982128]],[[0.016457857564092,-0.047902408987284,-0.11764346808195],[-0.15274299681187,-0.10915031284094,-0.035397261381149],[0.02374474145472,0.0042189806699753,-0.05781988427043]],[[-0.19169828295708,-0.011607343330979,-0.12181503325701],[-0.049073647707701,-0.24815559387207,-0.096408993005753],[-0.019099611788988,-0.032753467559814,-0.14129480719566]],[[0.055622320622206,-0.2360919713974,-0.15041697025299],[0.015962911769748,-0.02383797056973,-0.11878813058138],[0.11824429780245,0.10983021557331,0.036361034959555]],[[-0.041731152683496,-0.08507826179266,-0.032036788761616],[-0.20961630344391,-0.22873786091805,0.15501248836517],[0.22878311574459,-0.042148858308792,0.14677113294601]],[[-0.010336626321077,-0.048554960638285,0.15668942034245],[-0.10116709023714,-0.1172763928771,-0.12858638167381],[0.072843700647354,-0.066259488463402,-0.090275019407272]],[[0.028524285182357,-0.011888816952705,-0.15825054049492],[-0.034467034041882,-0.028994850814342,-0.083731524646282],[-0.14090390503407,-0.00067189353285357,0.015924191102386]],[[-0.0095620639622211,-0.048256304115057,-0.38260251283646],[0.15438459813595,-0.13072845339775,-0.11021409183741],[0.20222735404968,0.092808499932289,0.06388445943594]],[[0.097586177289486,0.03221769630909,-0.1434735506773],[0.058806858956814,-0.048474248498678,-0.060999035835266],[0.099634975194931,-0.020797500386834,0.10503621399403]],[[0.010284608229995,-0.074435129761696,0.053017787635326],[0.045266028493643,-0.1773551851511,0.17626810073853],[-0.066939614713192,-0.026363428682089,-0.031441871076822]],[[-0.26629915833473,0.065212041139603,-0.25345182418823],[0.012311582453549,-0.20828941464424,0.014097274281085],[-0.045121379196644,0.015855651348829,0.006674655713141]],[[0.013580985367298,0.14919453859329,0.13620887696743],[-0.25503721833229,0.16497258841991,-0.089811533689499],[-0.23809660971165,-0.15019606053829,0.038921471685171]],[[0.063050091266632,-0.044610526412725,-0.029215063899755],[0.21020436286926,-0.00098234636243433,0.060723770409822],[-0.059771932661533,0.0019530499121174,-0.055909432470798]],[[-0.019545990973711,-0.10353087633848,-0.15294016897678],[0.02855696156621,-0.079973638057709,0.054099552333355],[0.03295050188899,0.0031776237301528,0.10469122231007]],[[-0.21329601109028,-0.30943048000336,0.13192313909531],[0.019869515672326,-0.041221242398024,0.10797225683928],[-0.098173871636391,-0.038029674440622,0.005952041130513]],[[0.0084571447223425,-0.067606806755066,0.051447484642267],[-0.22759215533733,0.028121823444963,-0.20747828483582],[0.052417237311602,-0.011741913855076,0.073189966380596]]],[[[0.11668848246336,-0.052033912390471,0.045866463333368],[0.10916840285063,0.0016069296980277,-0.099036686122417],[-0.052617706358433,-0.067703001201153,-0.15637250244617]],[[-0.061544217169285,0.018581619486213,-0.049290772527456],[0.037008691579103,0.12162327766418,-0.015336973592639],[0.040410850197077,-0.045513797551394,-0.012339883483946]],[[0.096109442412853,-0.26940894126892,0.064862616360188],[-0.13842585682869,0.056185178458691,-0.043646655976772],[0.25195422768593,-0.47049367427826,0.085439205169678]],[[0.10997942090034,-0.12004330009222,-0.047538977116346],[0.0011206268100068,-0.020395806059241,-0.11091373115778],[0.05772527307272,-0.0041569694876671,-0.20665509998798]],[[0.18023061752319,-0.057865370064974,-0.059456888586283],[-0.072565719485283,0.045731235295534,0.022721070796251],[0.20553188025951,-0.01552923116833,0.11574323475361]],[[0.083127111196518,-0.075072906911373,-0.041851468384266],[-0.089722476899624,0.13598443567753,-0.080227613449097],[0.016099413856864,-0.004702543374151,0.11752317845821]],[[-0.010086374357343,-0.16535399854183,0.032527718693018],[-0.12923292815685,-0.12060071527958,-0.092276260256767],[0.045977510511875,0.2280620187521,-0.005706244148314]],[[-0.073360919952393,0.14698007702827,0.079819642007351],[-0.05160353705287,0.024585423991084,0.07072626799345],[-0.029086925089359,0.066267065703869,-0.038297303020954]],[[0.096420310437679,-0.38429015874863,-0.049683909863234],[-0.18780064582825,0.10727278143167,-0.0852015838027],[0.17186173796654,-0.24009941518307,0.025889199227095]],[[-0.057301249355078,-0.078428544104099,0.067263714969158],[-0.20841744542122,-0.047259889543056,0.063236221671104],[-0.079984880983829,0.050090253353119,0.010883070528507]],[[0.11274445056915,0.07051695138216,0.10389334708452],[-0.072792738676071,0.030827276408672,-0.24349725246429],[0.0054807798005641,-0.18373709917068,-0.013840047642589]],[[-0.072820499539375,-0.055798150599003,-0.036168910562992],[0.0076256454922259,0.06733100861311,0.038912918418646],[-0.02414520829916,-0.020252276211977,-0.011847158893943]],[[0.069682620465755,-0.1547054797411,0.060561459511518],[-0.11899781227112,0.010333654470742,-0.092646688222885],[-0.018836515024304,-0.15515546500683,0.0013404868077487]],[[-0.11494559794664,-0.064521931111813,0.063097089529037],[-0.055293049663305,-0.028434168547392,-0.078692995011806],[0.054638028144836,-0.022929115220904,-0.017711484804749]],[[-0.049171306192875,-0.06775713711977,-0.12285036593676],[0.032099466770887,-0.054105628281832,0.078780524432659],[-0.20038422942162,0.1300488114357,-0.10055717080832]],[[-0.21520055830479,-0.066784627735615,-0.17414718866348],[0.082591988146305,-0.040347017347813,0.22379717230797],[-0.04223744571209,0.19096286594868,0.058064933866262]],[[-0.13544972240925,0.024705560877919,-0.066179908812046],[0.089438080787659,-0.030206358060241,0.042187463492155],[-0.092110738158226,0.16665543615818,-0.087275996804237]],[[0.0094358697533607,-0.060972809791565,0.0048503624275327],[-0.025617083534598,-0.030169842764735,-0.15788142383099],[0.028925534337759,-0.0066421669907868,0.14581134915352]],[[0.0089032677933574,0.08463816344738,-0.043796800076962],[0.15356294810772,-0.060595851391554,0.24824918806553],[-0.0092948712408543,0.12751895189285,-0.21406687796116]],[[0.06894763559103,0.04453731700778,-0.079333931207657],[0.037707906216383,0.064280949532986,-0.21177689731121],[0.25343358516693,-0.17592784762383,-0.0016405991045758]],[[0.11242859810591,-0.18985635042191,0.12827877700329],[-0.18941961228848,-0.014979201368988,-0.070116654038429],[-0.055128652602434,-0.21532244980335,0.057836323976517]],[[0.009476282633841,0.021140493452549,-0.059801664203405],[0.037581406533718,-0.041815828531981,-0.013573303818703],[0.031696874648333,0.11160062253475,0.028633989393711]],[[-0.25006142258644,0.029597453773022,-0.027177289128304],[-0.13635112345219,-0.21390686929226,0.087501011788845],[-0.17467546463013,0.024345235899091,-0.094550713896751]],[[0.087826892733574,-0.017346125096083,-0.07359255105257],[-0.17155054211617,0.10536447167397,-0.040695160627365],[0.095645293593407,0.094352319836617,-0.089028313755989]],[[0.05315950140357,-0.17957782745361,0.10966216772795],[-0.1721758544445,-0.13537375628948,-0.27451914548874],[0.080683119595051,-0.13088363409042,-0.015965580940247]],[[0.012333376333117,-0.070912539958954,0.023671966046095],[-0.047926098108292,-0.19676285982132,-0.057702884078026],[-0.097236327826977,-0.096956759691238,-0.032617993652821]],[[0.00057960150297731,0.011616921983659,0.1267561763525],[-0.14451825618744,0.077160872519016,-0.050929039716721],[-0.13714990019798,0.062658697366714,0.060604427009821]],[[0.1207997277379,-0.15337119996548,0.08351031690836],[-0.1535539329052,-0.045680072158575,-0.03305671736598],[-0.014292400330305,-0.0076312338933349,0.20396520197392]],[[-0.051596570760012,0.13511329889297,-0.045982040464878],[-0.021093975752592,0.068920508027077,-0.056952081620693],[-0.013549879193306,0.058579962700605,-0.10905502736568]],[[-0.34508767724037,0.21920508146286,-0.10161347687244],[0.021776339039207,-0.18055704236031,0.10375555604696],[-0.25743424892426,-0.011815463192761,-0.029293047264218]],[[-0.14361180365086,-0.079681873321533,-0.05740412697196],[0.00051327707478777,0.11057858914137,0.12190145999193],[-0.0013399517629296,-0.067203216254711,0.066792950034142]],[[0.022563794627786,-0.043364185839891,0.087660320103168],[-0.12001711130142,0.084644384682178,-0.07224577665329],[0.04730661958456,-0.042509153485298,0.058759942650795]]],[[[-0.067084535956383,-0.17423029243946,0.038507349789143],[0.11596723645926,0.10025284439325,0.11766304820776],[-0.1122934371233,-0.086883895099163,0.24177084863186]],[[-0.124462492764,-0.15283799171448,0.072447195649147],[0.043260719627142,-0.025618731975555,-0.072647660970688],[-0.079307571053505,0.092874325811863,-2.2260963305598e-05]],[[-0.075578466057777,-0.014470832422376,0.0072048497386277],[0.032639019191265,0.066054247319698,0.067740686237812],[-0.015594156458974,0.03413562476635,-0.062667846679688]],[[0.036477323621511,0.095219872891903,0.054325357079506],[-0.16019298136234,0.070183850824833,0.27499082684517],[0.10030019283295,-0.20368230342865,0.0089285271242261]],[[0.060494981706142,-0.10227343440056,-0.018178202211857],[0.079375505447388,0.0031589835416526,0.10495708882809],[-0.0783376917243,0.07577733695507,0.10062678903341]],[[0.036548733711243,0.0019234762294218,0.055902354419231],[-0.080275602638721,-0.26998826861382,0.013817216269672],[0.0022883408237249,-0.10759882628918,-0.035515509545803]],[[0.041422113776207,-0.038212481886148,0.1137570887804],[0.0035844820085913,0.097985573112965,-0.26568451523781],[-0.22078327834606,0.20739094913006,0.067704945802689]],[[-0.12041657418013,-0.00080691510811448,-0.0160400737077],[-0.082253187894821,0.044802088290453,0.060577116906643],[0.029943581670523,-0.12687872350216,-0.029925234615803]],[[0.030419413000345,-0.021095855161548,-0.0061046201735735],[-0.013583042658865,-0.19094952940941,0.17331328988075],[0.057239953428507,0.014856216497719,-0.0064866482280195]],[[0.00675103161484,0.0068204989656806,-0.16970439255238],[0.16653640568256,-0.024246759712696,0.051521878689528],[0.0096654444932938,-0.11192733794451,-0.0023026682902128]],[[-0.012411492876709,0.18489062786102,0.032875649631023],[0.061905387789011,0.036389511078596,-0.030076762661338],[-0.013007329776883,-0.13016185164452,-0.21921940147877]],[[0.038743697106838,-0.17168772220612,0.19755530357361],[0.00047068748972379,0.029084971174598,-0.22325810790062],[0.03003422357142,0.11508211493492,-0.15340209007263]],[[-0.23877197504044,-0.26408937573433,-0.00032390287378803],[-0.024081403389573,0.080484427511692,-0.091703377664089],[-0.055130202323198,-0.16515102982521,-0.022014696151018]],[[0.076468154788017,0.23377305269241,0.13352303206921],[-0.17468899488449,0.089512571692467,0.14760725200176],[-0.033460929989815,0.012588439509273,0.18757265806198]],[[0.0022222951520234,0.056729283183813,0.095665752887726],[-0.065155044198036,-0.089193023741245,0.042063020169735],[0.054276864975691,0.074387922883034,-0.17962011694908]],[[0.084205344319344,-0.096278764307499,-0.13196495175362],[-0.0062919342890382,-0.053947970271111,0.13596630096436],[-0.051847692579031,0.10448639839888,-0.020212944597006]],[[-0.045951385051012,0.10228637605906,0.075211107730865],[-0.12731797993183,0.022003849968314,-0.014508967287838],[-0.022068981081247,-0.19129975140095,-0.10948192328215]],[[-0.050470367074013,0.015435691922903,-0.096246212720871],[-0.20599161088467,-0.16987502574921,-0.07956125587225],[0.12697887420654,-0.17621806263924,-0.18714000284672]],[[-0.19972781836987,0.13348591327667,0.011599455028772],[-0.001400217297487,-0.020868850871921,0.11335501074791],[0.18891008198261,0.21915924549103,-0.052957631647587]],[[-0.012118788436055,-0.052026219666004,-0.062549456954002],[0.071847632527351,-0.30320116877556,0.043528497219086],[0.068644225597382,-0.18810258805752,0.19334402680397]],[[0.071777999401093,-0.053194344043732,-0.069051675498486],[-0.074964597821236,-0.033609189093113,0.022484796121716],[0.10523387044668,-0.14465752243996,-0.15283991396427]],[[-0.092422157526016,0.22581101953983,-0.062482960522175],[-0.031538616865873,0.065254971385002,-0.083695746958256],[-0.15281373262405,-0.21087962388992,-0.19328632950783]],[[-0.11545743793249,0.071498975157738,0.12753829360008],[-0.19785808026791,0.083528473973274,0.1403234899044],[-0.11975096911192,0.0090598426759243,0.010624741204083]],[[-0.02746245637536,-0.11651095747948,-0.02391405031085],[-0.17311607301235,-0.09967278689146,0.12950205802917],[0.26348316669464,-0.15163552761078,-0.2330849468708]],[[-0.11841316521168,-0.15269441902637,0.24362081289291],[-0.059084642678499,-0.0054049557074904,-0.055750291794538],[-0.0027273602318019,-0.11389759927988,0.10524036735296]],[[-0.014256991446018,0.11717007309198,0.06896148622036],[-0.092408567667007,0.12852674722672,0.047666314989328],[-0.064694903790951,-0.10530626773834,-0.023416500538588]],[[-0.10933995246887,-0.39654779434204,-0.023631563410163],[-0.068608306348324,-0.17211717367172,-0.051502320915461],[0.042675450444221,-0.088805012404919,-0.13307033479214]],[[0.044537324458361,0.1760787665844,0.12184707820415],[-0.1708228290081,-0.16054387390614,-0.0056598554365337],[-0.12191096693277,-0.051769003272057,-0.063173323869705]],[[0.035529598593712,0.010189672000706,0.0028610615991056],[-0.076303832232952,0.0036262469366193,0.16484515368938],[-0.078155227005482,0.08915052562952,0.021655702963471]],[[-0.047406531870365,-0.10385222733021,-0.10399915277958],[0.053043972700834,0.13059134781361,-0.24872931838036],[-0.33100491762161,0.029421446844935,0.11382669955492]],[[-0.014193618670106,-0.087940976023674,-0.013363556936383],[-0.2429590523243,-0.13176661729813,0.055880837142467],[0.10830523818731,0.0072063049301505,0.12839192152023]],[[-0.026214903220534,0.0093635581433773,-0.053148921579123],[0.050435848534107,-0.051271099597216,-0.037203084677458],[0.22277665138245,-0.12712264060974,-0.130256280303]]],[[[-0.057416647672653,-0.005393376108259,-0.021224224939942],[-0.018330577760935,0.068704470992088,0.036787644028664],[0.099169194698334,0.0097835920751095,-0.012895471416414]],[[-0.035774860531092,-0.026433657854795,-0.09182620793581],[0.088085845112801,0.0038121419493109,-0.0043613030575216],[-0.022046459838748,-0.012564858421683,-0.060589168220758]],[[0.023413337767124,0.020836217328906,0.0013911918504164],[-0.08336216956377,-0.062988482415676,0.087639346718788],[0.066966824233532,-0.02499183267355,0.024966077879071]],[[-0.060163401067257,0.04871379584074,-0.0010114795295522],[0.11317063122988,0.048935398459435,-0.048925489187241],[-0.058822002261877,-0.044206809252501,0.00090880045900121]],[[-0.054186463356018,-0.031037241220474,0.043964385986328],[-0.057946257293224,-0.11555627733469,0.050226215273142],[0.072476521134377,-0.05906281247735,-0.088608495891094]],[[-0.032238699495792,0.024511335417628,-0.10230146348476],[0.053620863705873,0.17660908401012,0.17057313024998],[0.12211925536394,0.12117782980204,-0.053039841353893]],[[0.0053294971585274,0.055837139487267,0.16694912314415],[-0.034061748534441,-0.0049050720408559,-0.047914952039719],[-0.019997181370854,-0.13332860171795,-0.11168877035379]],[[0.048197824507952,-0.20467631518841,0.0041983737610281],[0.058443482965231,0.056093852967024,-0.0003191422438249],[-0.068788610398769,-0.1634836345911,-0.084338344633579]],[[0.03432659804821,-0.075885094702244,-0.10654152929783],[0.060844410210848,0.02847789786756,-0.0012466257903725],[-0.13440972566605,-0.068336561322212,0.15516796708107]],[[-0.18585604429245,-0.012526530772448,0.11250325292349],[0.00090787559747696,-0.087775148451328,-0.15646983683109],[-0.066124483942986,-0.022403374314308,0.081124670803547]],[[0.034030877053738,-0.066596060991287,-0.095365479588509],[0.07295223325491,-0.01217139326036,0.17858721315861],[-0.13477937877178,-0.0082001453265548,-0.16301937401295]],[[0.025671415030956,0.15144450962543,0.044691752642393],[-0.047016482800245,0.061542943120003,-0.05855068564415],[0.040010463446379,-0.065140530467033,0.056252930313349]],[[0.081848070025444,0.061726067215204,-0.067653656005859],[0.13856694102287,-0.042174197733402,-0.045830294489861],[-0.088345646858215,-0.00018326795543544,-0.1813855022192]],[[0.032749235630035,0.066032528877258,-0.11207723617554],[0.0018190074479207,0.033089239150286,-0.079751469194889],[0.041721686720848,-0.051801335066557,-0.10235452651978]],[[-0.065699584782124,-0.094380758702755,-0.0048095150850713],[0.018860679119825,0.14302235841751,0.057821981608868],[-0.099401548504829,0.0012369917239994,0.12606494128704]],[[-0.013433364219964,-0.0080670695751905,0.008805749937892],[0.13348984718323,0.009400594048202,0.001503421110101],[-0.06955823302269,-0.020441705361009,-0.072283983230591]],[[0.011258217506111,0.023064617067575,-0.013471156358719],[-0.060772992670536,0.065661869943142,-0.10676918178797],[-0.14382319152355,0.068096525967121,-0.12642389535904]],[[-0.087707862257957,0.1041537001729,0.074510291218758],[-0.039603751152754,-0.079253911972046,-0.0027283623348922],[0.018372414633632,-0.077150478959084,-0.0030442201532423]],[[-0.019142856821418,0.026456668972969,0.076195441186428],[0.076148808002472,0.18526586890221,0.093282610177994],[0.027695614844561,0.020948531106114,-0.12306272983551]],[[0.059772711247206,-0.0520920753479,-0.014040351845324],[0.056044433265924,0.030791537836194,0.020820243284106],[0.046094343066216,-0.012993543408811,-0.033621337264776]],[[-0.00067573634441942,-0.076061695814133,0.0072994544170797],[-0.032231226563454,-0.11228392273188,-0.0062730582430959],[-0.051400735974312,-0.14751027524471,-0.012822106480598]],[[0.15213231742382,-0.05297764390707,0.044264066964388],[-0.011589498259127,0.088809229433537,-0.039027344435453],[0.048869203776121,0.010536403395236,-0.087089702486992]],[[0.0275305416435,0.012633811682463,0.059568092226982],[-0.018047856166959,-0.010359319858253,0.040040038526058],[0.0098462365567684,0.066461756825447,0.058618046343327]],[[0.024943187832832,0.016584448516369,-0.17540913820267],[-0.022262899205089,-0.026575431227684,0.023355340585113],[-0.01335518155247,-0.08253487944603,-0.066017955541611]],[[-0.038725651800632,-0.017490843310952,0.05753106623888],[0.077557422220707,0.057572338730097,-0.075829535722733],[-0.13266958296299,0.068090453743935,-0.13593292236328]],[[0.053426530212164,-0.19871068000793,-0.076933979988098],[0.19463594257832,0.11572984606028,0.11879505962133],[-0.041067577898502,0.02478619851172,-0.01443222630769]],[[-0.033007897436619,-0.10478810220957,-0.15913496911526],[-0.058550551533699,0.10360352694988,-0.091086469590664],[0.040977846831083,-0.022372556850314,0.037068575620651]],[[-0.021507050842047,-0.076006188988686,0.034596499055624],[-0.046925321221352,-0.028243456035852,0.019853554666042],[-0.054111246019602,0.046633016318083,-0.06632249802351]],[[-0.055031210184097,-0.02604802697897,-0.011335893534124],[0.051000624895096,0.088034451007843,0.071618512272835],[-0.0037909559905529,-0.066183589398861,0.0085070291534066]],[[0.059680189937353,0.065895423293114,0.031416155397892],[-0.026550425216556,-0.0277812872082,-0.02288400195539],[0.0049222968518734,-0.12632624804974,-0.040464483201504]],[[0.05782326310873,-0.11304405331612,0.090030543506145],[-0.071340046823025,0.05565008148551,0.01426487416029],[0.051521711051464,-0.10541164875031,0.010449963621795]],[[-0.0076926173642278,0.13447465002537,0.10084442049265],[-0.021523348987103,0.033303163945675,0.032683212310076],[0.12693907320499,0.0060234284028411,-0.095169350504875]]],[[[-0.067309126257896,0.1552891433239,0.0018601686460897],[0.014317589811981,0.10785081982613,-0.0089334696531296],[-0.12547722458839,-0.043431952595711,-0.19108022749424]],[[0.12947651743889,-0.024389114230871,0.15485821664333],[0.021456865593791,-0.053915590047836,-0.16164653003216],[-0.034309331327677,-0.14247687160969,0.074967235326767]],[[-0.059266395866871,0.022319575771689,0.13491757214069],[-0.13611477613449,-0.070479311048985,0.097165398299694],[0.053622495383024,-0.14931696653366,-0.1889721006155]],[[-0.054605312645435,0.04724957048893,-0.034068580716848],[0.093023642897606,-0.0061503131873906,-0.075942546129227],[-0.25525707006454,-0.21648827195168,-0.20094153285027]],[[0.042273946106434,-0.21303790807724,-0.010421635583043],[0.015979394316673,-0.053509213030338,0.050463605672121],[0.08047541975975,-0.0066863135434687,-0.029619239270687]],[[-0.070149481296539,0.061512261629105,-0.055218502879143],[0.097166016697884,0.0068838256411254,0.030259773135185],[-0.10996622592211,0.038402538746595,-0.10482683777809]],[[-0.10080635547638,-0.037449348717928,-0.16515970230103],[0.13089920580387,0.15452140569687,-0.093464955687523],[0.18904834985733,-0.013871355913579,-0.17252664268017]],[[-0.078854590654373,0.20841367542744,-0.0046817427501082],[-0.28385674953461,0.053845033049583,0.041039291769266],[-0.024322591722012,-0.14190950989723,-0.086303159594536]],[[-0.084262937307358,0.011838371865451,-0.11247771978378],[0.013260406441987,-0.092547692358494,-0.20804512500763],[-0.048525966703892,0.049390874803066,-0.17009010910988]],[[0.067437194287777,-0.022107718512416,0.040773544460535],[-0.0029633985832334,-0.10596641153097,0.10105021297932],[-0.033780157566071,0.041809659451246,0.023238150402904]],[[-0.122663423419,0.073612555861473,0.021168597042561],[0.11125441640615,-0.0039509586058557,-0.021957030519843],[0.038865115493536,0.017374699935317,0.050470504909754]],[[0.011083178222179,0.009740917943418,0.046103790402412],[-0.18853566050529,-0.030707005411386,0.022197524085641],[-0.023292221128941,0.045482829213142,0.11862181127071]],[[-0.012692075222731,-0.073503814637661,0.076934166252613],[0.16730611026287,-0.17919404804707,-0.16139271855354],[-0.12383910268545,-0.046972803771496,-0.0097176749259233]],[[0.099742405116558,-0.1169309169054,0.0093127740547061],[0.21471320092678,-0.011472183279693,-0.048659678548574],[-0.01267072930932,0.015048921108246,-0.15835846960545]],[[-0.42363265156746,-0.13202224671841,-0.36546149849892],[0.016742460429668,0.10609943419695,0.12370154261589],[0.10981974750757,0.021055987104774,0.1709306538105]],[[0.000933553208597,0.029355732724071,0.071432948112488],[-0.14157649874687,-0.052061729133129,0.014260999858379],[-0.047237481921911,0.0017478731460869,0.17877171933651]],[[-0.06611680239439,0.0099832536652684,-0.03159386664629],[0.064952559769154,0.035657111555338,0.035705395042896],[0.092626757919788,0.037973199039698,-0.10482477396727]],[[-0.078623287379742,0.24311429262161,0.12135849893093],[0.067682504653931,-0.095371179282665,-0.074880912899971],[-0.14730495214462,-0.066799804568291,-0.14298288524151]],[[0.16189573705196,0.24290139973164,0.13262268900871],[0.023415500298142,0.092684239149094,-0.17419554293156],[0.091432675719261,-0.10939387977123,0.039074022322893]],[[0.086574532091618,-0.25801157951355,0.043631426990032],[-0.093510992825031,0.045720793306828,0.061528254300356],[0.1871857047081,-0.18787537515163,-0.1364569067955]],[[0.011851289309561,0.17426663637161,-0.019057722762227],[-0.12473893165588,-0.21764843165874,-0.17652334272861],[-0.023313403129578,-0.1003829985857,-0.023152574896812]],[[0.023864476010203,-0.014436647295952,-0.16362158954144],[-0.14732281863689,0.012382783927023,-0.046576764434576],[-0.045537855476141,0.056874375790358,-0.096874542534351]],[[0.036639221012592,0.0099200513213873,0.10610914230347],[-0.085353665053844,-0.25600501894951,0.0077036479488015],[0.089022658765316,0.06553540378809,-0.10512471199036]],[[0.14881335198879,0.079132981598377,-0.0071543087251484],[0.018235627561808,-0.11580155044794,0.059016827493906],[-0.082055233418941,0.026673367246985,-0.062823355197906]],[[-0.03487079963088,-0.096003659069538,0.050889655947685],[0.11208739131689,-0.14126352965832,-0.070655152201653],[0.085993275046349,0.16802074015141,0.090133480727673]],[[0.080677725374699,-0.052955284714699,-0.020887944847345],[0.075866423547268,0.058590039610863,0.021580001339316],[-0.12510327994823,-0.058313522487879,-0.16781017184258]],[[-0.028024848550558,-0.037179082632065,0.0036585808265954],[0.010977097786963,-0.0063302614726126,-0.13711042702198],[0.094206564128399,-0.0057884692214429,-0.088667578995228]],[[-0.056851230561733,-0.25724658370018,-0.081703722476959],[0.12718805670738,0.13031752407551,0.084894299507141],[0.023501511663198,0.0048072510398924,-0.20956756174564]],[[0.073784396052361,0.083238042891026,0.0016772353556007],[-0.22546949982643,-0.017265805974603,0.044436793774366],[0.020171079784632,0.12548668682575,-0.005258378572762]],[[-0.17778088152409,0.057623229920864,-0.064144991338253],[-0.090501792728901,0.16102105379105,0.0074670971371233],[0.095261797308922,-0.055988095700741,-0.050308614969254]],[[-0.032275553792715,0.042706813663244,0.020895330235362],[-0.047016859054565,-0.19904284179211,-0.014583627693355],[-0.13818381726742,-0.3020310997963,-0.074201203882694]],[[-0.079109407961369,-0.018080281093717,0.18380133807659],[0.0031608210410923,-0.27577403187752,-0.04970121756196],[-0.14336040616035,-0.12982451915741,0.0025678826496005]]],[[[-0.034284088760614,0.040044400840998,-0.042360726743937],[0.0037227931898087,-0.082525946199894,-0.023878486827016],[-0.14931035041809,-0.17044338583946,-0.15817232429981]],[[0.014023883268237,-0.064676322042942,0.14224794507027],[0.016621563583612,0.13089992105961,0.010331674478948],[-0.073723256587982,-0.10917353630066,-0.028781417757273]],[[0.010119603015482,-0.047986324876547,-0.044065143913031],[0.018396457657218,0.0031024448107928,-0.092690616846085],[-0.13328342139721,0.0005881522083655,-0.15493361651897]],[[0.15629601478577,-0.044888131320477,-0.0074653020128608],[0.026611359789968,-0.054143510758877,0.27060031890869],[0.13122616708279,0.037292826920748,0.053510166704655]],[[0.054609794169664,0.013628153130412,-0.10733891278505],[0.054898921400309,0.02858705073595,-0.15416631102562],[-0.024235541000962,0.022464666515589,0.14102531969547]],[[-0.15843531489372,0.057062711566687,0.10267540812492],[-0.17170925438404,0.049981791526079,0.15816712379456],[0.031398307532072,-0.03409531340003,0.061270780861378]],[[0.18323609232903,-0.050414655357599,0.071333289146423],[0.20326668024063,-0.12640702724457,-0.046528458595276],[-0.092802539467812,-0.22346426546574,-0.11637548357248]],[[0.080943666398525,-0.0025648518931121,0.10309948027134],[0.03402329608798,0.082806967198849,0.12793476879597],[-0.14787296950817,-0.28029561042786,0.059799309819937]],[[-0.011038077063859,0.14007131755352,0.056600239127874],[-0.061182554811239,-0.00062617531511933,-0.015893921256065],[-0.21435758471489,0.078776977956295,-0.053361747413874]],[[-0.0027523457538337,0.072695069015026,-0.15508563816547],[-0.075289487838745,-0.0086773484945297,-0.062248274683952],[-0.066055029630661,0.13020150363445,0.13042686879635]],[[0.035669509321451,0.042419765144587,0.090219646692276],[0.033887233585119,0.010838053189218,-0.16490072011948],[0.26046001911163,0.069747142493725,0.02195131406188]],[[0.18682731688023,-0.0054382816888392,-0.14991222321987],[0.076974540948868,-0.10607393085957,-0.11135817319155],[-0.042633306235075,-0.060858882963657,-0.041359785944223]],[[0.1847843080759,-0.10449310392141,0.031595911830664],[0.13448774814606,0.1142245605588,0.017867244780064],[-0.051633048802614,-0.08352330327034,-0.17139346897602]],[[-0.092710621654987,-0.042239096015692,-0.023566454648972],[0.13875590264797,-0.030390333384275,0.044518489390612],[-0.11818325519562,0.070191591978073,0.050483882427216]],[[-0.15913294255733,0.056645959615707,-0.10907429456711],[-0.062772072851658,-0.035452123731375,-0.006549243349582],[0.0053011472336948,0.02481891028583,0.095635034143925]],[[-0.0091691967099905,0.039755433797836,-0.061286807060242],[0.050659142434597,0.022303214296699,0.046764500439167],[0.016798680648208,0.050323780626059,0.0061199166812003]],[[-0.18622618913651,-0.0047770324163139,-0.10989707708359],[-0.011756166815758,-0.10012775659561,0.1019881144166],[0.015641536563635,0.10499081760645,0.10775541514158]],[[0.13130195438862,0.091852836310863,0.024918764829636],[0.098817400634289,-0.017374753952026,0.063732579350471],[0.030137872323394,-0.18193565309048,0.05080059170723]],[[0.17793367803097,-0.15698724985123,0.21379844844341],[-0.10060380399227,-0.161028906703,-0.035571090877056],[0.056220673024654,-0.080619819462299,-0.11669848114252]],[[0.15913443267345,0.10434287041426,-0.055403612554073],[0.051560625433922,0.0031790335197002,-0.092977322638035],[-0.074002407491207,-0.01578121073544,-0.075188852846622]],[[0.077101863920689,0.080775141716003,-0.10557848215103],[0.055883649736643,0.0032493670005351,0.031541328877211],[0.09359285235405,0.15308323502541,0.0012538494775072]],[[0.18503347039223,0.0099150650203228,0.09523506462574],[0.023794513195753,0.21685175597668,-0.022132713347673],[-0.056617815047503,-0.093847393989563,0.048175804316998]],[[0.0022535887546837,-0.11849851161242,-0.095572851598263],[0.030221309512854,0.035924043506384,0.023833693936467],[-0.0035960187669843,-0.13738124072552,-0.083769746124744]],[[0.23075652122498,0.13170456886292,-0.026249451562762],[-0.027342272922397,0.113953307271,-0.032332137227058],[-0.043101407587528,0.12770003080368,-0.2175157815218]],[[0.018142279237509,0.061455599963665,0.070688597857952],[-0.083806343376637,-0.099542826414108,-0.11775403469801],[0.02028807066381,-0.081105709075928,-0.079534374177456]],[[0.16606453061104,0.14542855322361,-0.03320075199008],[0.053961262106895,0.036660168319941,-0.049164369702339],[0.054471030831337,0.01118544396013,0.0068966583348811]],[[0.11620053648949,-0.21257089078426,-0.093885600566864],[0.090333953499794,-0.038561463356018,-0.09785720705986],[-0.042882010340691,-0.063005387783051,-0.11514447629452]],[[0.035539422184229,-0.060781665146351,0.090256780385971],[0.13501831889153,-0.051940161734819,0.081277757883072],[-0.054652415215969,-0.19777975976467,-0.013287389650941]],[[0.18719688057899,-0.01427242718637,-0.010539238341153],[0.081178203225136,0.088902398943901,0.025814153254032],[-0.084358565509319,-0.015548208728433,-0.10435818880796]],[[0.081300884485245,0.2065823674202,-0.061981394886971],[0.039205551147461,-0.0088512049987912,-0.04578660801053],[-0.053803507238626,-0.14184474945068,-0.020490085706115]],[[0.052026979625225,-0.10667761415243,-0.1655687391758],[-0.0047837565653026,-0.11058262735605,0.069221712648869],[-0.11576250195503,-0.048439919948578,0.057313412427902]],[[-0.13243183493614,5.6125441915356e-05,-0.0021196112502366],[0.027614157646894,-0.062310602515936,0.041392631828785],[0.042444944381714,0.15037842094898,-0.020845828577876]]],[[[-0.12980830669403,-0.21819032728672,-0.13383623957634],[-0.019745659083128,-0.26549771428108,0.042636051774025],[-0.050760127604008,-0.21526446938515,0.017346940934658]],[[-0.12160059809685,-0.095624476671219,0.016503313556314],[0.078578561544418,-0.08585012704134,0.04770378395915],[-0.094727165997028,-0.0049382043071091,0.021933309733868]],[[-0.034970194101334,0.0027784113772213,-0.048565216362476],[0.10707131773233,0.16230358183384,0.02112896554172],[-0.13816569745541,-0.092218071222305,0.0034172267187387]],[[-0.18378548324108,-0.047185990959406,0.027076879516244],[0.14444369077682,-0.027235759422183,-0.03760552033782],[0.050688143819571,-0.098691023886204,0.054209753870964]],[[0.12534755468369,-0.051880020648241,-0.048995904624462],[0.12540569901466,0.091351412236691,-0.02648663148284],[-0.092739820480347,-0.099281646311283,-0.04986497014761]],[[-0.041074700653553,0.16497346758842,0.10563714057207],[-0.056644763797522,-0.028871662914753,0.027932813391089],[0.034306991845369,-0.17432856559753,-0.10037340223789]],[[-0.01962423324585,0.15563322603703,0.08683418482542],[-0.018176827579737,-0.097570784389973,-0.0912916213274],[-0.020264992490411,0.015873417258263,0.079972304403782]],[[0.057221740484238,0.0029322151094675,0.019994463771582],[-0.12749429047108,-0.066113494336605,-0.014503136277199],[0.056625969707966,-0.034336909651756,0.020196136087179]],[[-0.11276376247406,-0.017441375181079,-0.03732955083251],[0.093421049416065,0.024315554648638,0.0097712315618992],[-0.025353942066431,0.12610545754433,-0.084747329354286]],[[-0.17360246181488,-0.051239464432001,0.038047160953283],[-0.0030122566968203,-0.1715974509716,0.081577442586422],[0.13271895051003,0.1087274774909,-0.033022064715624]],[[0.029244421049953,0.017043177038431,0.088059656322002],[-0.22006054222584,-0.007324802223593,-0.024694157764316],[-0.064710877835751,-0.066922277212143,-0.0071013132110238]],[[-0.077281214296818,0.18183155357838,-0.15231123566628],[-0.038699835538864,0.18520565330982,0.12068643420935],[-0.077967055141926,-0.14886192977428,-0.10669553279877]],[[-0.12997679412365,0.035242184996605,0.00030752862221561],[-0.0064742648974061,0.083097577095032,0.17680828273296],[-0.086893953382969,-0.18428857624531,0.28044167160988]],[[0.033328104764223,0.047505676746368,-0.0062435888685286],[0.065272353589535,0.033658757805824,0.20299039781094],[-0.27428212761879,-0.070711314678192,-0.0037265147548169]],[[-0.043350320309401,0.26491919159889,-0.079894930124283],[-0.16569375991821,0.054900366812944,0.071973621845245],[0.099355883896351,-0.035610478371382,0.076116949319839]],[[-0.060326274484396,0.13649746775627,0.1139200180769],[0.061926431953907,0.053206473588943,0.02274689078331],[-0.010735925287008,-0.10350877046585,-0.096103511750698]],[[-0.022159345448017,0.095996744930744,0.012664749287069],[0.0071682292036712,-0.14826589822769,0.035754688084126],[0.061561953276396,0.086875170469284,0.028437197208405]],[[0.060675781220198,-0.11289075016975,-0.1122577264905],[0.057652447372675,-0.033957034349442,-0.15589036047459],[-0.10620595514774,-0.048493720591068,0.14675557613373]],[[-0.20666980743408,-0.045690551400185,0.17972907423973],[0.025253819301724,-0.29759877920151,-0.20958140492439],[-0.11092870682478,-0.17391523718834,-0.31790322065353]],[[-0.02714728936553,-0.050056222826242,0.09390863776207],[0.13026195764542,-0.063100583851337,-0.014984917826951],[-0.03176062554121,-0.29388293623924,0.067635215818882]],[[-0.0088637545704842,-0.058411806821823,0.044540103524923],[0.043670274317265,0.16370058059692,0.0085175577551126],[0.010530242696404,0.0082238493487239,0.097444668412209]],[[0.20111131668091,0.027492525056005,0.084779627621174],[-0.18082031607628,-0.014581374824047,-0.022070905193686],[-0.030108092352748,-0.042495552450418,0.053292006254196]],[[0.059832975268364,0.11071889102459,-0.064678087830544],[0.014873333275318,-0.027386680245399,0.021024996414781],[-0.0075914217159152,-0.015864888206124,0.0082783978432417]],[[0.083932764828205,-0.09928023070097,0.049029275774956],[0.072293922305107,-0.1572368144989,-0.14431585371494],[0.0264578089118,0.051493290811777,-0.041995342820883]],[[-0.018464351072907,0.038410611450672,0.15273207426071],[-0.091430097818375,-0.28201460838318,0.093399122357368],[-0.061324037611485,0.049016200006008,-0.12658102810383]],[[0.090664125978947,0.16474397480488,-0.030422490090132],[0.0024537446442991,0.22050796449184,0.066308289766312],[-0.034208111464977,0.025277774780989,-0.081951938569546]],[[0.076704427599907,-0.040202409029007,0.14169526100159],[-0.04183379560709,0.074070937931538,-0.030270596966147],[0.018646597862244,-0.054300867021084,0.020895253866911]],[[0.027236135676503,0.096997775137424,0.048539489507675],[0.0084203742444515,0.024258298799396,-0.027133535593748],[0.10988122969866,-0.076524548232555,-0.128737449646]],[[0.020326541736722,-0.010302369482815,0.073948718607426],[-0.10171394050121,-0.058267284184694,0.076063431799412],[-0.086602859199047,-0.16787040233612,-0.0086581679061055]],[[0.024345407262444,0.10653863847256,0.10827931016684],[0.051930788904428,-0.026259947568178,0.015566697344184],[-0.026080777868629,0.051109552383423,-0.03057961165905]],[[-0.054348349571228,0.04556643217802,-0.10061031579971],[-0.091452240943909,-0.053617369383574,0.018385933712125],[-0.073117583990097,-0.11067285388708,-0.1474120169878]],[[-0.13238187134266,0.024793503805995,0.095787927508354],[-0.042842134833336,-0.058288302272558,0.17202170193195],[0.10558139532804,-0.1240905597806,0.0021553752012551]]],[[[-0.10823383927345,0.11011383682489,-0.017279155552387],[0.045812878757715,0.18418644368649,-0.0049134651198983],[-0.17427158355713,0.099179781973362,-0.087137334048748]],[[-0.10286074876785,0.0060077332891524,-0.044806841760874],[0.043379195034504,-0.06582310795784,0.037486504763365],[-0.053725618869066,-0.062619641423225,0.010069894604385]],[[-0.1965030580759,0.21501469612122,-0.071048572659492],[-0.24223999679089,0.039476931095123,0.024375002831221],[-0.04513530805707,0.081213220953941,0.10423891991377]],[[-0.08162484318018,-0.2652722299099,-0.14983285963535],[-0.15172727406025,-0.16610923409462,-0.1747151017189],[-0.056766539812088,0.0064089554361999,-0.23312182724476]],[[-0.012962280772626,0.0078318463638425,0.033193245530128],[-0.12412374466658,-0.11249827593565,0.031373795121908],[0.045896101742983,0.0078004263341427,0.077375754714012]],[[0.044539052993059,0.10575435310602,-0.11725501716137],[-0.076128900051117,0.051283165812492,-0.052747920155525],[-0.15372179448605,-0.017590243369341,0.040239572525024]],[[-0.14130674302578,0.036016248166561,0.16951510310173],[0.19868768751621,0.076607570052147,0.037402436137199],[-0.10358899831772,-0.12614369392395,-0.097258403897285]],[[-0.028296319767833,-0.033451411873102,0.059482671320438],[0.058323975652456,0.042030148208141,-0.033904034644365],[-0.077584266662598,0.12804706394672,-0.098830416798592]],[[-0.13976287841797,-0.041210990399122,-0.05305315181613],[0.12349127233028,0.054318744689226,0.022712975740433],[-0.14156313240528,-0.082822158932686,0.042899530380964]],[[-0.24222131073475,0.20839047431946,0.16130872070789],[-0.11516010761261,0.095306426286697,-0.075672470033169],[-0.013939970172942,-0.021293196827173,-0.0055554783903062]],[[-0.012251434847713,-0.097056992352009,-0.015413271263242],[-0.11738879233599,0.019327450543642,0.029994921758771],[-0.006796246394515,0.10077148675919,-0.077785484492779]],[[-0.13697472214699,-0.15560108423233,0.093140035867691],[-0.091177202761173,0.14465847611427,-0.0057572699151933],[0.083923630416393,-0.028923215344548,0.087941482663155]],[[0.027001813054085,-0.042685143649578,0.0030922971200198],[-0.028570387512445,0.11359827965498,0.0081748021766543],[-0.068837031722069,-0.01976858265698,0.20458881556988]],[[0.012762848287821,-0.082065530121326,0.0059067774564028],[0.21413169801235,-0.015309810638428,0.082798577845097],[-0.13415928184986,-0.07664942741394,0.035833984613419]],[[0.081018380820751,-0.039462491869926,-0.095061630010605],[0.0080245397984982,0.021414767950773,-0.0081272711977363],[-0.052412424236536,-0.071183241903782,-0.069332532584667]],[[0.099904142320156,-0.15939016640186,-0.1009729206562],[0.030366199091077,-0.074537143111229,-0.036252353340387],[-0.043009947985411,0.10358817130327,0.13248935341835]],[[-0.083697997033596,-0.18214511871338,-0.089684806764126],[-0.021734867244959,0.086082741618156,0.14582945406437],[0.1188081279397,0.006007082760334,0.042313616722822]],[[0.13420337438583,-0.094278708100319,-0.12383832037449],[0.058123599737883,0.095305502414703,-0.042103640735149],[0.036701839417219,0.040081229060888,0.12523743510246]],[[0.064306996762753,-0.040449228137732,0.30091419816017],[0.12977093458176,-0.14139232039452,-0.11670473963022],[0.10534451156855,0.058304909616709,0.064851507544518]],[[-0.052060514688492,-0.35610371828079,-0.066376894712448],[-0.020744539797306,-0.17280416190624,-0.10267036408186],[0.098492071032524,-0.25658771395683,0.10540284216404]],[[-0.071224957704544,-0.030188618227839,0.080827310681343],[0.24980622529984,-0.030867636203766,-0.092371046543121],[-0.10445470362902,0.051353391259909,-0.10967336595058]],[[0.17396374046803,0.16673877835274,-0.060675770044327],[-0.19751013815403,-0.042642913758755,-0.16305170953274],[-0.10866226255894,-0.16327609121799,-0.11396819353104]],[[0.22641685605049,-0.0087186694145203,0.095266237854958],[-0.050553906708956,-0.12411937117577,-0.13291259109974],[0.061945211142302,0.11481460183859,0.16935327649117]],[[0.032636217772961,-0.023078501224518,-0.17070479691029],[-0.15039169788361,0.094816252589226,-0.089882232248783],[0.034552987664938,0.041017718613148,-0.016142994165421]],[[-0.16157950460911,-0.0033759737852961,-0.021947275847197],[-0.12267796695232,-0.13121418654919,0.17370900511742],[0.10477402806282,-0.18994767963886,0.1049082800746]],[[0.18808153271675,0.094390571117401,-0.15276700258255],[0.27497723698616,0.013713931664824,-0.019799765199423],[0.096170410513878,-0.03957711905241,0.11600064486265]],[[-0.27197131514549,-0.00089764792937785,-0.022652231156826],[-0.34624123573303,0.066729165613651,-0.071534350514412],[-0.16227436065674,0.19227778911591,-0.14162983000278]],[[-0.021410971879959,0.016839385032654,-0.016023924574256],[-0.099364288151264,0.1569504737854,-0.018953343853354],[-0.075580656528473,-0.014357800595462,-0.068285949528217]],[[-0.03666465729475,0.083223350346088,0.22456441819668],[-0.031248455867171,-0.15614204108715,-0.064140245318413],[-0.051783047616482,0.12329430133104,-0.1494227796793]],[[0.075551457703114,0.14278553426266,-0.030560923740268],[0.004092653747648,0.044709227979183,0.044048972427845],[-0.13027080893517,0.034570682793856,-0.011081798002124]],[[0.066629700362682,-0.14722952246666,-0.063187062740326],[0.16212700307369,-0.12646496295929,0.095727920532227],[0.045647036284208,0.0002031963376794,0.043272770941257]],[[0.011168052442372,-0.069393396377563,0.071175135672092],[-0.042880497872829,0.011772424913943,-0.01114500593394],[0.033794831484556,-0.16483946144581,-0.1430359184742]]],[[[-0.085910625755787,-0.089505515992641,-0.024497473612428],[-0.14838337898254,-0.32120832800865,0.11376149207354],[-0.091028429567814,-0.16857224702835,0.15775361657143]],[[-0.11209522932768,-0.011377923190594,-0.032546129077673],[0.072432972490788,-0.063458733260632,0.090611778199673],[0.00082004134310409,0.038501229137182,0.11144459992647]],[[-0.052258387207985,0.080576226115227,0.068517751991749],[0.006640488281846,-0.068057388067245,-0.1109189465642],[-0.019496215507388,0.041145119816065,-0.027181008830667]],[[-0.020109619945288,0.0052124699577689,0.12331806868315],[-0.28913676738739,-0.22162050008774,-0.033956203609705],[0.021417491137981,0.079612195491791,0.069416418671608]],[[-0.058081746101379,-0.1418375223875,0.095666021108627],[-0.25463131070137,0.023168111220002,0.1033491268754],[-0.12251382321119,0.089579403400421,0.029359372332692]],[[0.14852534234524,0.13964504003525,0.050613466650248],[-0.075730696320534,0.037437371909618,-0.14563149213791],[0.11973176896572,-0.034393813461065,-0.25016868114471]],[[0.02591110393405,0.097693532705307,0.044494464993477],[-0.031228119507432,-0.071341969072819,-0.12868347764015],[-0.052765779197216,-0.1303728222847,-0.011197946034372]],[[0.086364164948463,-0.089345440268517,-0.10124003142118],[-0.03085895627737,-0.13190719485283,0.010262035764754],[0.062111865729094,-0.041257839649916,0.13785760104656]],[[-0.050490360707045,0.065807640552521,0.035140711814165],[0.0054528079926968,-0.16174420714378,-0.083541736006737],[-0.063165232539177,0.072741478681564,0.15802524983883]],[[-0.16535107791424,-0.055985700339079,-0.012447784654796],[0.079399399459362,0.10957249253988,-0.027771143242717],[0.09978885948658,0.17470487952232,-0.042477771639824]],[[-0.037920262664557,-0.10577087104321,-0.26431527733803],[0.081348143517971,0.095802873373032,0.0066823624074459],[0.047302573919296,0.16571274399757,0.15785001218319]],[[0.023820169270039,0.0060148201882839,0.053372628986835],[0.093850396573544,-0.10362888127565,-0.1533814817667],[0.12085698544979,-0.053453609347343,0.038697388023138]],[[-0.22356505692005,-0.06427139788866,-0.060793485492468],[0.026546791195869,-0.13647475838661,0.10112552344799],[-0.064700484275818,0.0096539007499814,0.27615103125572]],[[0.12489788234234,0.14974492788315,-0.028206314891577],[-0.04589120298624,-0.012914419174194,-0.09791724383831],[-0.010450280271471,-0.16458414494991,-0.15059553086758]],[[0.015271014533937,0.1832399815321,0.15952585637569],[0.05316286534071,-0.095527075231075,-0.023602455854416],[0.085785336792469,-0.1718942373991,-0.19897708296776]],[[0.078849956393242,0.075313866138458,0.082366108894348],[-0.14139381051064,-0.071401499211788,0.098449982702732],[-0.10725882649422,0.11715184897184,-0.075046703219414]],[[0.047050833702087,0.028599431738257,0.042878415435553],[0.10626987367868,0.14296022057533,0.03419404104352],[0.09004370123148,-0.0025581556838006,-0.14083018898964]],[[0.085072353482246,-0.25236836075783,-0.088190637528896],[0.059217061847448,-0.019336411729455,0.014979691244662],[-0.016833048313856,-0.03161833435297,0.12413913756609]],[[0.35483974218369,-0.023533694446087,-0.1035597845912],[0.17789472639561,0.13901001214981,-0.0035403415095061],[-0.053250391036272,0.043774176388979,-0.026388518512249]],[[-0.17861421406269,0.061288576573133,-0.082111962139606],[-0.11055491119623,-0.20066669583321,-0.11574240773916],[-0.062051564455032,-0.088473916053772,0.033525582402945]],[[-0.057997450232506,-0.20319499075413,-0.072450004518032],[-0.11124858260155,-0.1584634333849,0.039098344743252],[0.12454845011234,0.12889024615288,0.20879489183426]],[[-0.0037097944878042,-0.11482172459364,0.0082433111965656],[-0.0018831213237718,-0.021932616829872,0.10243706405163],[0.057267338037491,-0.10957028716803,-0.00095009262440726]],[[-0.054482780396938,0.081564873456955,0.009717901237309],[-0.043825928121805,-0.10969042778015,-0.046189729124308],[-0.0094425305724144,-0.12901282310486,0.12772050499916]],[[-0.10322950780392,-0.065949432551861,-0.021004788577557],[-0.10019019991159,-0.072363533079624,-0.072244748473167],[-0.092945739626884,-0.050833653658628,0.15045881271362]],[[-0.066652148962021,0.041378621011972,-0.034940332174301],[-0.032787874341011,-0.03516173735261,-0.027760650962591],[0.09615682810545,0.056253187358379,0.0023975151125342]],[[-0.083041191101074,0.12227170914412,0.10888694226742],[-0.05682585015893,-0.1878125667572,-0.080029189586639],[-0.065060302615166,-0.09697750210762,-0.0994623452425]],[[0.098184078931808,0.0054065268486738,-0.1245950460434],[0.044690500944853,-0.31589755415916,0.051121186465025],[0.072982713580132,-0.1645128428936,-0.055537410080433]],[[0.065976172685623,-0.088301852345467,0.032472178339958],[-0.17686587572098,0.20616406202316,-0.12915782630444],[0.003064937889576,-0.04052184894681,0.089784875512123]],[[0.073743246495724,-0.017755281180143,0.022247878834605],[-0.04506029933691,0.053866498172283,0.073013514280319],[0.023904178291559,-0.20307223498821,-0.0009908425854519]],[[0.052031200379133,0.089981898665428,0.009772714227438],[-0.13959170877934,0.13387979567051,-0.027182910591364],[-0.22137349843979,-0.19608226418495,0.061315648257732]],[[-0.19384828209877,-0.024267299100757,0.035316299647093],[-0.1283810287714,-0.065196864306927,-0.013265693560243],[0.12131997197866,0.052748218178749,0.11395664513111]],[[-0.07267452031374,-0.086053088307381,-0.096351213753223],[0.00097152515081689,-0.11097404360771,0.024697054177523],[6.0974118241575e-05,0.12831124663353,0.085336223244667]]],[[[-0.076420955359936,-0.10285971313715,0.063595607876778],[0.074175663292408,-0.07712596654892,-0.09415028244257],[0.08694801479578,0.080470748245716,-0.0002843159600161]],[[-0.045880533754826,-0.18142853677273,-0.020850196480751],[-0.16901485621929,-0.19930319488049,-0.22655603289604],[-0.06965197622776,-0.19469103217125,-0.063489228487015]],[[-0.12951616942883,0.0657699406147,0.032405838370323],[0.1501167267561,-0.0094405589625239,-0.032127901911736],[-0.0048411786556244,0.022774579003453,-0.020803915336728]],[[-0.027629982680082,0.052126489579678,0.068382725119591],[-0.093239270150661,-0.16236336529255,0.094666458666325],[0.045524779707193,-0.11800882965326,-0.054907031357288]],[[-0.14372509717941,-0.030860926955938,-0.064270295202732],[-0.067916817963123,-0.13113778829575,-0.15141707658768],[-0.10464512556791,-0.017821786925197,0.020759854465723]],[[0.1093825250864,-0.072772733867168,0.096024259924889],[0.094777531921864,0.14320728182793,0.038423132151365],[-0.057990219444036,0.19003686308861,0.044315874576569]],[[-0.0030502639710903,-0.0058901491574943,0.080952517688274],[0.01706026494503,-0.054961141198874,0.045664437115192],[0.11305347084999,-0.15272743999958,-0.072825223207474]],[[-0.057769231498241,0.094885990023613,0.088970936834812],[-0.0082118483260274,-0.05077100917697,-0.011593416333199],[0.019670158624649,0.073003694415092,-0.0042183576151729]],[[0.0093472301959991,0.056102823466063,-0.067088805139065],[-0.018606662750244,0.0012639245251194,-0.056986719369888],[-0.088721111416817,0.071550890803337,0.011075692251325]],[[0.0042143608443439,-0.089709773659706,-0.053152732551098],[-0.0078092301264405,0.06149024143815,-0.094510994851589],[0.027203626930714,-0.19297313690186,-0.075565986335278]],[[-0.023058749735355,0.04722048714757,0.083160512149334],[0.03566025197506,0.10254996269941,0.0089762583374977],[-0.065547160804272,0.021065406501293,-0.034770246595144]],[[0.016806995496154,-0.031716417521238,-0.038217093795538],[0.1978807747364,-0.031777057796717,-0.18527817726135],[0.064340740442276,0.0049866470508277,-0.053141538053751]],[[0.084888219833374,-0.083245500922203,-0.023910634219646],[-0.13108940422535,-0.0047810962423682,-0.35144302248955],[-0.070199571549892,0.076296553015709,-0.13242426514626]],[[-0.14435543119907,0.049536865204573,0.04885421693325],[-0.074956014752388,0.027963425964117,-0.092232346534729],[-0.096961170434952,0.12348669022322,0.10523587465286]],[[-0.01041744928807,-0.18152536451817,0.006983598228544],[-0.0422428175807,-0.03388249501586,0.012780707329512],[0.034989394247532,-0.039258200675249,0.1964673101902]],[[-0.014125143177807,-0.026915954425931,0.00018191515118815],[-0.066271148622036,0.065091706812382,-0.037161879241467],[-0.0030373991467059,-0.022048918530345,0.075374767184258]],[[0.023206144571304,0.057796973735094,0.069410160183907],[0.020556800067425,-0.1546003818512,-0.068991914391518],[0.067051514983177,0.11569485068321,-0.059367679059505]],[[-0.061455737799406,-0.040751378983259,-0.030217492952943],[0.02435364574194,-0.15128523111343,0.014003588818014],[-0.057989627122879,-0.064694806933403,-0.084497638046741]],[[0.075186967849731,0.10758892446756,0.04060123115778],[-0.011291141621768,-0.0082013048231602,-0.047592092305422],[-0.1587650924921,0.12928435206413,-0.048180192708969]],[[-0.14210565388203,0.13225200772285,0.0029013433959335],[-0.030572419986129,0.15115956962109,0.035177029669285],[-0.10763764381409,-0.0062099089846015,0.011250453069806]],[[0.016873639076948,0.024237120524049,0.090479299426079],[-0.1013630181551,-0.0072063407860696,-0.10621105134487],[0.11411265283823,0.13115227222443,0.039027117192745]],[[0.039457779377699,-0.041000444442034,-0.057758141309023],[-0.14896929264069,0.046026855707169,0.045166969299316],[-0.05324937030673,-0.073589719831944,0.16307896375656]],[[-0.057686325162649,-0.077548198401928,-0.057571746408939],[0.030060853809118,-0.070251308381557,0.13721054792404],[0.066987484693527,0.10039215534925,-0.075030788779259]],[[0.050062455236912,0.061086911708117,0.04121957719326],[-0.0031212349422276,0.13696275651455,0.019130947068334],[-0.20067483186722,0.047514982521534,0.010229392908514]],[[-0.068174369633198,0.035161934792995,-0.053428243845701],[0.012497588992119,0.078979961574078,-0.080320157110691],[0.035354699939489,0.10067847371101,0.026071455329657]],[[-0.0026435058098286,0.1265706717968,0.019836759194732],[-0.08394455909729,0.042122773826122,0.024863034486771],[0.035723067820072,-0.0019496969180182,-0.10478519648314]],[[0.15846125781536,-0.052955534309149,-0.078047759830952],[0.12537004053593,-0.10172186046839,-0.025539487600327],[0.070959821343422,0.099050879478455,0.052873119711876]],[[0.028680605813861,-0.085506595671177,-0.038382459431887],[0.02532197535038,-0.061155084520578,0.05215135216713],[-0.0043906616047025,0.03696783259511,0.097097590565681]],[[-0.029406359419227,0.024776812642813,0.11077278852463],[-0.10951894521713,-0.092852056026459,0.066128328442574],[0.070920750498772,0.022506587207317,-0.081667810678482]],[[0.037854716181755,-0.071957364678383,-0.0115907182917],[0.013790175318718,0.052241697907448,0.061114281415939],[0.096037089824677,0.034996867179871,-0.068570986390114]],[[-0.026935838162899,0.0075612533837557,-0.12952092289925],[0.096086114645004,-0.035046923905611,-0.014808744192123],[0.063451364636421,0.003852853551507,0.01403252594173]],[[0.059399239718914,0.13412326574326,-0.10452964901924],[0.1064465790987,-0.12318713963032,-0.24436287581921],[-0.034748889505863,0.023369705304503,-0.11505611240864]]],[[[-0.15709359943867,-0.16674157977104,-0.05590970441699],[-0.13543184101582,-0.29977157711983,0.0062281205318868],[0.095692537724972,0.048712328076363,-0.0073011335916817]],[[-0.114182472229,0.17117288708687,-0.16362671554089],[0.061036869883537,0.086477436125278,0.08730099350214],[-0.098054632544518,0.044709827750921,0.027806852012873]],[[-0.3351879119873,-0.077135987579823,0.16024035215378],[0.035597961395979,-0.052453733980656,-0.066443227231503],[0.0035931637976319,0.12494789808989,0.030156813561916]],[[0.067569173872471,-0.0053772404789925,-0.018583318218589],[-0.037855040282011,0.17567348480225,-0.15081702172756],[-0.11440838128328,-0.28784638643265,-0.14450035989285]],[[0.04728902131319,-0.048086076974869,-0.065657138824463],[0.074945516884327,-0.13974425196648,-0.089857883751392],[-0.053004384040833,0.1081168204546,-0.050702691078186]],[[0.01037394721061,-0.10129627585411,0.077279105782509],[0.10636422038078,0.07378151267767,-0.16296431422234],[-0.15148815512657,0.06537014991045,0.10778267681599]],[[-0.046142172068357,0.0039634383283556,-0.18323653936386],[0.11161398887634,-0.083803713321686,-0.040969345718622],[0.12252298742533,-0.10332191735506,0.12676599621773]],[[0.19945156574249,-0.0071841767057776,-0.082328654825687],[0.20958411693573,-0.15207821130753,-0.38622182607651],[0.14671021699905,0.042781483381987,-0.052868124097586]],[[-0.01880369335413,0.083610340952873,0.17255532741547],[0.015309070236981,-0.19698353111744,-0.012782000936568],[-0.093866497278214,-0.071848273277283,0.11079312115908]],[[-0.069391816854477,-0.16650187969208,0.035584080964327],[-0.0072251800447702,0.057221479713917,0.19262136518955],[-0.058767214417458,0.011673518456519,0.17476388812065]],[[-0.040498789399862,-0.02805732190609,-0.13630579411983],[0.0046270140446723,-0.054123159497976,0.20782959461212],[0.18285104632378,-0.10035209357738,0.039519611746073]],[[-0.13830982148647,0.18254537880421,-0.026519941166043],[-0.0037412832025439,-0.012418673373759,-0.10711349546909],[-0.13221994042397,-0.0053704837337136,-0.0022002791520208]],[[-0.066957406699657,-0.1436148583889,-0.1593211889267],[0.053042262792587,0.022131938487291,-0.35666337609291],[0.052739731967449,-0.0085099563002586,0.17005780339241]],[[0.11400650441647,0.021532008424401,-0.11790067702532],[-0.037068419158459,0.0097196437418461,-0.10800691694021],[0.12717519700527,-0.0037244439590722,-0.12879994511604]],[[-0.012578654102981,0.0090402355417609,-0.035270553082228],[0.0057109766639769,0.057580925524235,0.041174542158842],[0.061000816524029,-0.13644932210445,-0.22543004155159]],[[-0.034965686500072,-0.036103017628193,0.073883183300495],[0.1221474930644,0.04195274785161,0.13268405199051],[-0.12488719075918,0.047992218285799,0.028371440246701]],[[0.025877045467496,-0.11476370692253,0.12228284776211],[-0.0016448955284432,0.14592039585114,0.0092398580163717],[0.062527664005756,-0.10887399315834,-0.092474870383739]],[[-0.10936475545168,0.062705330550671,0.019600156694651],[-0.068562619388103,-0.14800301194191,-0.13194037973881],[-0.10349807143211,0.06296231597662,0.054730869829655]],[[0.16316868364811,-0.10578667372465,-0.079376675188541],[0.005443767644465,0.12182066589594,0.12316833436489],[0.31097546219826,0.10423795878887,-0.0059265582822263]],[[0.14231397211552,-0.043450210243464,-0.21450446546078],[0.02576581761241,-0.080231286585331,-0.025823263451457],[0.23297527432442,0.069322310388088,0.032094456255436]],[[0.027876118198037,-0.17063376307487,0.20695374906063],[-0.18825677037239,-0.0046198926866055,0.052373643964529],[-0.23914933204651,0.056970275938511,-0.0046458677388728]],[[0.071104824542999,-0.032653514295816,-0.022208737209439],[-0.038501761853695,0.053669486194849,0.093048043549061],[0.019463073462248,0.025370590388775,0.016504412516952]],[[-0.033003658056259,-0.2010877430439,-0.12042504549026],[-0.052696891129017,-0.065081484615803,-0.127381041646],[0.012815967202187,0.12945367395878,-0.18096159398556]],[[-0.068185389041901,-0.050056964159012,-0.030577475205064],[0.11986907571554,-0.069953590631485,-0.18384791910648],[0.036762442439795,-0.04682981222868,-0.079185023903847]],[[-0.075528405606747,-0.010418801568449,-0.056626696139574],[-0.033748805522919,0.012059120461345,-0.077937409281731],[0.26216733455658,0.021489631384611,0.042613994330168]],[[0.093240991234779,0.14787451922894,0.048438459634781],[-0.010752009227872,0.021120330318809,0.042661748826504],[0.063695304095745,0.1595898270607,-0.20225255191326]],[[-0.12685237824917,0.12122291326523,0.18395695090294],[-0.042273506522179,0.034201096743345,0.070755861699581],[0.069635696709156,0.12424702942371,0.066347070038319]],[[-0.2636236846447,-0.10199891775846,0.22934217751026],[-0.068471223115921,0.22527429461479,-0.23351235687733],[0.023570340126753,-0.062615476548672,-0.035864133387804]],[[0.062701039016247,0.031247071921825,0.078548617660999],[0.043371874839067,-0.034244980663061,0.16873994469643],[0.10176577419043,-0.19163899123669,-0.059157390147448]],[[0.062199909240007,-0.13329774141312,-0.31979137659073],[-0.1706719994545,0.060862984508276,0.091085635125637],[-0.058084309101105,0.00040325860027224,-0.02285167016089]],[[0.014566441066563,-0.00087497505592182,0.034750699996948],[0.0023270596284419,0.050810858607292,-0.20437379181385],[-0.13442023098469,-0.1437956392765,-0.032010298222303]],[[0.044864252209663,0.1497927159071,-0.0054986076429486],[-0.13108663260937,0.053637534379959,0.0014381064102054],[0.012728142552078,-0.1051382496953,-0.09223435074091]]],[[[0.1246552169323,-0.078462295234203,-0.058504920452833],[0.048333819955587,0.013409424573183,0.076247595250607],[-0.088251948356628,-0.032921154052019,-0.0031980932690203]],[[-0.050122682005167,-0.0054977689869702,0.074527323246002],[0.038355816155672,-0.076986342668533,-0.064960993826389],[0.10202609747648,0.20303778350353,-0.10385911166668]],[[-0.098643928766251,-0.033723369240761,-0.039458259940147],[0.034474585205317,-0.032914072275162,0.020506802946329],[-0.04172994568944,-0.090113393962383,0.00074998091440648]],[[-0.14482817053795,0.021257031708956,0.070427589118481],[-0.10323163866997,-0.10380060970783,0.022701997309923],[0.079652518033981,-0.00078547763405368,-0.094324246048927]],[[0.087760768830776,0.10394582897425,-0.12640459835529],[0.077225968241692,0.070949383080006,0.018536856397986],[-0.12160138785839,0.076704040169716,0.047834150493145]],[[0.0087703075259924,0.041468247771263,-0.016555577516556],[-0.12013255804777,-0.078888930380344,-0.013079181313515],[-0.18316961824894,0.00909907463938,0.18265676498413]],[[0.14583002030849,-0.10720907151699,-0.0168537478894],[0.16959455609322,-0.073518432676792,-0.087795160710812],[0.05533205345273,-0.14293441176414,-0.068566136062145]],[[0.10821285843849,0.063788995146751,-0.13244105875492],[0.16106580197811,0.03817330300808,-0.13147182762623],[-0.16995397210121,0.00024146237410605,0.060308955609798]],[[0.00044118569348939,0.15109246969223,0.13225227594376],[0.0011940556578338,-0.1935161948204,0.0050385966897011],[0.074268542230129,0.039217211306095,-0.10781889408827]],[[0.010842152871192,-0.043545011430979,-0.099281013011932],[0.017140481621027,0.080859713256359,-0.14322796463966],[0.080071441829205,-0.017646828666329,-0.01364597864449]],[[-0.036217089742422,0.0062838373705745,0.00821025762707],[-0.093887500464916,0.068349555134773,0.042631082236767],[-0.050056222826242,0.034656524658203,0.20968294143677]],[[0.002071869559586,-0.036702990531921,-0.047649178653955],[0.0014489934546873,-0.01774163544178,-0.015542668290436],[0.0071816863492131,-0.1990132778883,0.1154753267765]],[[0.02946088463068,-0.059141550213099,-0.1220838278532],[0.12870195508003,0.22930963337421,-0.23506267368793],[-0.051141139119864,0.12300376594067,-0.21068131923676]],[[-0.018381671980023,0.18796026706696,0.24404588341713],[-0.14140632748604,0.11356662213802,0.054661501199007],[-0.031664501875639,-0.079906143248081,0.051224295049906]],[[-0.13945296406746,0.014838732779026,0.0377894975245],[-0.11847583949566,-0.44156074523926,-0.0089054517447948],[-0.094879969954491,-0.029210874810815,0.074133388698101]],[[0.002814176492393,0.017589401453733,-0.010257043875754],[0.010160642676055,0.048024997115135,0.17209151387215],[-0.11856730282307,-0.010329247452319,-0.019406592473388]],[[-0.019690273329616,-0.019962592050433,0.053105980157852],[-0.010716564953327,0.010096629150212,0.098980605602264],[-0.039278779178858,-0.22771292924881,0.014516151510179]],[[0.16998040676117,-0.049151185899973,-0.053121816366911],[0.088618576526642,-0.082100979983807,-0.17439721524715],[0.068134106695652,-0.14951705932617,-0.092972226440907]],[[-0.1694126278162,-0.14357069134712,-0.078229427337646],[-0.015402848832309,-0.11946105957031,-0.062178649008274],[-0.014058899134398,-0.017284078523517,0.07234014570713]],[[0.062548227608204,0.016540221869946,-0.043343428522348],[0.27872410416603,-0.13932812213898,0.020402839407325],[0.027509922161698,0.015277788974345,-0.011231468059123]],[[0.021055852994323,0.093896441161633,-0.11011542379856],[0.15845039486885,-0.28344732522964,-0.10500648617744],[0.15428473055363,-0.19871473312378,-0.10548360645771]],[[-0.011464794166386,-0.049544118344784,0.010890337638557],[-0.087457232177258,-0.10543326288462,0.056116700172424],[-0.11071145534515,-0.055753510445356,0.05997883155942]],[[-0.059405263513327,-0.057220693677664,-0.055592335760593],[-0.089474603533745,0.075116448104382,0.071493856608868],[-0.0087395748123527,0.038927502930164,0.028211202472448]],[[0.064048156142235,0.00017028555157594,0.025246907025576],[0.15277227759361,0.0031011989340186,0.14684642851353],[0.02082372456789,-0.13987931609154,0.080132588744164]],[[-0.023146640509367,0.07063202559948,-0.016282336786389],[-0.051211383193731,-0.084132127463818,-0.0021810729522258],[-0.0049429624341428,0.15612874925137,0.0045342911034822]],[[0.011943585239351,0.043499488383532,-0.0019303850131109],[0.01858382858336,0.13469305634499,0.067421659827232],[0.021022608503699,0.0051473956555128,0.022275971248746]],[[-0.17478594183922,-0.14375498890877,-0.077112272381783],[-0.061759706586599,-0.14170184731483,-0.24858826398849],[0.10471490770578,-0.080343060195446,-0.16504976153374]],[[-0.004294375423342,-0.22871786355972,-0.084593430161476],[-0.21996358036995,-0.2793305516243,0.031578220427036],[-0.045865401625633,0.056589022278786,-0.045280121266842]],[[-0.10466071218252,-0.13511203229427,-0.096130028367043],[-0.024298509582877,0.20016583800316,-0.079859420657158],[0.090768903493881,-0.087360642850399,0.11526115983725]],[[-0.030959142372012,-0.098209410905838,0.11237041652203],[-0.092222206294537,0.027255857363343,-0.026183903217316],[-0.13705721497536,-0.09127613902092,-0.10854913294315]],[[-0.043645087629557,-0.16697686910629,-0.055323306471109],[0.091336622834206,-0.041849974542856,-0.15440139174461],[0.019183658063412,0.047376316040754,-0.13521413505077]],[[-0.11354487389326,-0.041555188596249,-0.030163958668709],[-0.066133268177509,-0.10724659264088,-0.17789503931999],[0.083045214414597,0.037306431680918,0.091774016618729]]],[[[-0.11964485049248,-0.154306396842,0.1724695712328],[-0.027503315359354,0.012758697383106,-0.01173432264477],[-0.073728293180466,-0.15361307561398,-0.16559146344662]],[[0.15770088136196,0.086405239999294,0.088198535144329],[0.059265393763781,-0.17326934635639,-0.033881533890963],[0.039827588945627,0.12849339842796,-0.0201405454427]],[[0.022006414830685,-0.045334845781326,-0.10264118015766],[-0.19292822480202,0.2054211050272,0.013575536198914],[-0.10081075876951,-0.028195533901453,0.2659093439579]],[[0.027257673442364,-0.10210111737251,0.066025085747242],[-0.0033601210452616,-0.19477044045925,-0.035822991281748],[0.24889376759529,-0.070241026580334,-0.10125834494829]],[[-0.033523630350828,0.18883763253689,-0.13322703540325],[0.081360906362534,-0.094843327999115,0.15351493656635],[0.057080775499344,0.10610069334507,0.022320838645101]],[[-0.095386892557144,-0.03073975071311,0.069411039352417],[0.023047810420394,-0.091109298169613,-0.076225712895393],[0.050643045455217,0.024229843169451,0.03896663710475]],[[-0.04329539835453,-0.090790338814259,-0.025256898254156],[0.073642358183861,0.046345949172974,0.019038297235966],[-0.067606404423714,0.06685446947813,0.2152034342289]],[[0.20101447403431,0.1576783657074,-0.058989714831114],[0.062552079558372,-0.014330947771668,0.1016218662262],[0.099385738372803,-0.23686346411705,-0.05028685182333]],[[-0.068582192063332,0.023971442133188,0.07923086732626],[-0.037665322422981,-0.049526702612638,-0.047127686440945],[0.10723243653774,-0.1702314466238,0.186728104949]],[[-0.14446510374546,-0.11047075688839,-0.019686488434672],[-0.056514915078878,0.039493449032307,0.0044264006428421],[0.1089850962162,0.069866687059402,0.0057939519174397]],[[-0.0743697732687,-0.12258392572403,0.088930562138557],[0.01241306681186,0.016585962846875,-0.1211579144001],[0.001423301640898,-0.043563485145569,0.17207293212414]],[[0.036517560482025,0.043965879827738,-0.28092616796494],[-0.04473052918911,-0.048238474875689,0.082705840468407],[-0.035251513123512,0.042535278946161,-0.0035296678543091]],[[-0.35284370183945,-0.092828623950481,0.23749695718288],[0.18795412778854,-0.56656926870346,-0.046157579869032],[0.13471744954586,0.14073783159256,0.13681487739086]],[[0.068296730518341,0.056891936808825,-0.062177535146475],[0.078660517930984,0.090425863862038,-0.081326819956303],[-0.012114599347115,-0.14496396481991,-0.1040330901742]],[[-0.041758120059967,0.015200016088784,-0.027086900547147],[-0.11241660267115,-0.037345375865698,0.19120207428932],[-0.10596759617329,0.22572280466557,-0.050627622753382]],[[-0.065807677805424,0.17902129888535,-0.00018056981207337],[0.03031824529171,-0.23029297590256,0.14406467974186],[0.083550237119198,-0.097084619104862,0.061488218605518]],[[0.14323553442955,0.013515594415367,-0.12752725183964],[0.0038526400458068,0.16205687820911,0.11595698446035],[0.021925538778305,-0.0033000798430294,0.14337357878685]],[[-0.33678063750267,-0.18988268077374,-0.083432279527187],[0.052864048629999,0.20931753516197,-0.087457865476608],[-0.1173592954874,-0.17699021100998,0.079760372638702]],[[-0.0214753318578,0.064683720469475,0.089801847934723],[-0.0031702020205557,0.15872628986835,0.14043278992176],[0.12769159674644,-0.13088728487492,-0.086457468569279]],[[0.12812301516533,0.022316200658679,-0.1221152022481],[-0.00042384973494336,0.09913694858551,-0.0091536594554782],[0.051816467195749,-0.17332778871059,-0.14174404740334]],[[-0.27838292717934,-0.037910919636488,-0.0079390862956643],[0.079501613974571,0.0044699688442051,-0.11128427833319],[0.070433348417282,-0.0064900857396424,0.024569027125835]],[[-0.032762296497822,-0.09182296693325,-0.064906261861324],[-0.11114568263292,0.036860998719931,-0.078569635748863],[-0.0098046455532312,0.017724610865116,0.13496722280979]],[[-0.068428814411163,-0.09895983338356,-0.031261883676052],[-0.0094217136502266,0.10965944081545,-0.078880362212658],[0.10123331099749,0.11775642633438,0.12084417790174]],[[0.14881230890751,-0.069389402866364,-0.15901546180248],[-0.11528360843658,0.065574966371059,-0.015968885272741],[-0.12662445008755,-0.073147289454937,0.015939306467772]],[[-0.12600499391556,0.034583490341902,-0.21653473377228],[-0.27193632721901,-0.01001351326704,0.0227240473032],[0.037525344640017,0.10185254365206,0.24635414779186]],[[-0.057574093341827,0.27663367986679,-0.043530534952879],[-0.093411765992641,-0.014836366288364,-0.07265879958868],[-0.066497884690762,0.1782568693161,-0.16071233153343]],[[-0.0055711222812533,-0.069632858037949,-0.10276233404875],[0.14559596776962,-0.060073554515839,0.11879001557827],[-0.1343844383955,0.025335485115647,0.0062540723010898]],[[-0.055899262428284,-0.15879167616367,0.05142717435956],[0.11415579169989,-0.066949523985386,0.18448370695114],[0.075952179729939,-0.012935201637447,-0.049008317291737]],[[-0.021351238712668,-0.024404054507613,0.00067761831451207],[-0.016850125044584,0.058627892285585,0.068885140120983],[0.019932042807341,0.10955625027418,0.01628146506846]],[[-0.1543410718441,-0.027374917641282,-0.024204142391682],[-0.18960343301296,-0.13798619806767,0.1154363900423],[0.055879332125187,0.0040614427998662,0.010597982443869]],[[-0.162392988801,-0.16806262731552,-0.12558889389038],[-0.10819737613201,-0.12401337176561,-0.031151553615928],[0.056536588817835,-0.026747938245535,0.11850569397211]],[[0.0067376121878624,0.17488466203213,0.014147846028209],[0.18086464703083,0.059454325586557,-0.10957910120487],[0.063865900039673,-0.09947531670332,0.10587860643864]]],[[[-0.024573938921094,-0.22669388353825,-0.14539571106434],[-0.024303236976266,0.091020226478577,-0.012349555268884],[0.055911656469107,0.092983178794384,0.044376101344824]],[[-0.032911036163568,0.061277445405722,0.097868457436562],[0.051442086696625,0.081377848982811,0.029314754530787],[0.017618240788579,-0.10753866285086,-0.20621201395988]],[[-0.037315968424082,-0.16720488667488,0.11829098314047],[-0.11487230658531,0.13116551935673,0.10031840950251],[-0.067026317119598,-0.036631755530834,-0.084957890212536]],[[0.071602545678616,-0.22900205850601,-0.036230992525816],[-0.11595164984465,-0.024663586169481,0.0065106600522995],[-0.37678772211075,-0.017717564478517,0.051469802856445]],[[0.031561858952045,0.059361681342125,-0.073445081710815],[-0.0014976419042796,-0.037511218339205,-0.084972620010376],[-0.012500080280006,-0.018583351746202,0.099169947206974]],[[-0.0061987433582544,-0.015642838552594,-0.20495679974556],[0.015354178845882,-0.10971765965223,-0.0037140611093491],[-0.041887957602739,0.20803259313107,0.14309932291508]],[[0.04406875744462,-0.057667396962643,-0.031274270266294],[-0.14852623641491,-0.079351387917995,0.068449854850769],[0.01421232521534,0.12019012123346,-0.0850989818573]],[[-0.0093102315440774,0.1827037781477,0.088768534362316],[0.0052487850189209,-0.22121788561344,-0.24664342403412],[-0.029061000794172,-0.034424174576998,0.098206497728825]],[[0.05162250623107,-0.061363529413939,0.020961325615644],[0.066130325198174,-0.080286875367165,0.15984965860844],[0.060350026935339,-0.11104260385036,-0.07752151787281]],[[0.16451582312584,0.11595205962658,-0.0064202481880784],[-0.0486661195755,-0.066113710403442,0.055970128625631],[-0.1123785302043,-0.12859429419041,0.042433697730303]],[[0.036292433738708,-0.094217151403427,-0.062277421355247],[-0.10050671547651,0.034988433122635,0.10489290207624],[-0.14246447384357,0.1280287951231,-0.025380430743098]],[[-0.024170909076929,-0.17320781946182,0.040515191853046],[-0.087114810943604,0.040284290909767,-0.024021105840802],[0.084316991269588,0.10314493626356,0.10656340420246]],[[0.068700477480888,0.019938066601753,0.037576656788588],[-0.080528482794762,0.22564950585365,0.098209783434868],[-0.051454626023769,-0.070483297109604,-0.18478202819824]],[[0.082545608282089,-0.41050133109093,-0.29715994000435],[0.19879788160324,0.20562437176704,-0.00086746033048257],[0.075273886322975,0.17156919836998,0.15411348640919]],[[0.10264000296593,-0.24994054436684,-0.31410712003708],[-0.0017849422292784,0.14615179598331,-0.11609358340502],[0.021184718236327,0.01428322866559,-0.025180656462908]],[[0.059213187545538,0.11348547041416,-0.040124528110027],[-0.10944905132055,-0.19128867983818,0.1298331618309],[-0.0047413306310773,0.12599369883537,-0.078998081386089]],[[-0.057489652186632,-0.15268509089947,-0.17252078652382],[0.015915060415864,0.0037043273914605,0.02272012270987],[0.038710340857506,0.095962285995483,0.015880949795246]],[[0.080482318997383,0.10204983502626,0.056383438408375],[-0.019332323223352,0.079396277666092,0.0044549498707056],[0.086089469492435,-0.077263928949833,-0.037691853940487]],[[-0.017857041209936,0.12971670925617,0.16232754290104],[-0.025128459557891,0.047313738614321,0.16938236355782],[0.00027491856599227,-0.0044674421660602,-0.03019411675632]],[[0.05563535541296,-0.0052826693281531,-0.09296241402626],[-0.050811383873224,-0.10754419118166,-0.012880388647318],[-0.10082064568996,0.030302973464131,-0.03930726647377]],[[-0.01720037125051,-0.056728452444077,0.11972071230412],[-0.049920439720154,0.15866486728191,0.049750175327063],[-0.11352455615997,0.026228817179799,-0.088146165013313]],[[0.035613942891359,0.010808625258505,0.15425558388233],[0.097567036747932,-0.1163007542491,-0.2954623401165],[-0.040555030107498,-0.035224616527557,0.11500230431557]],[[0.00077245314605534,0.076534286141396,-0.025390978902578],[-0.26516222953796,-0.12324373424053,-0.01138689275831],[0.0008223740151152,-0.036642618477345,0.087392747402191]],[[-0.22457472980022,0.17680586874485,0.17625072598457],[-0.011142015457153,0.05302806943655,-0.13457173109055],[0.0047286758199334,-0.027825638651848,0.032363325357437]],[[0.072937346994877,0.18771266937256,0.14489851891994],[-0.30317488312721,-0.15662574768066,0.10251875966787],[-0.095128484070301,-0.05032105743885,-0.13637380301952]],[[-0.061386838555336,-0.038086127489805,-0.27525758743286],[-0.013416803441942,0.031327091157436,0.11638380587101],[0.089872129261494,-0.035409763455391,0.086533777415752]],[[-0.050647892057896,-0.11885406076908,0.026346605271101],[0.0025323473382741,0.16292157769203,-0.23587095737457],[-0.0071973041631281,-0.11333139240742,0.032745972275734]],[[-0.1001108661294,-0.053247932344675,-0.091495797038078],[0.1364376693964,0.095914334058762,-0.069848716259003],[0.0064492137171328,0.061518561094999,-0.047507029026747]],[[0.034381214529276,0.089930683374405,-0.035523157566786],[0.00594219006598,-0.059602431952953,-0.17938256263733],[0.082610353827477,-0.11066371202469,0.017464365810156]],[[0.064926095306873,0.077124781906605,0.0089712385088205],[-0.12063058465719,-0.10096172988415,-0.026173336431384],[0.053810529410839,-0.013651741668582,-0.099516905844212]],[[-0.22424997389317,-0.19062824547291,-0.038541294634342],[0.049258284270763,0.16020730137825,0.028103951364756],[-0.022961374372244,-0.014257002621889,0.048263430595398]],[[-0.0071319150738418,0.0009735626517795,-0.007536037825048],[-0.047389935702085,0.070937223732471,0.087762877345085],[-0.0091450931504369,0.026437968015671,-0.15772527456284]]],[[[-0.074582517147064,0.10892543941736,-0.019602689892054],[0.1101394072175,0.069034285843372,-0.0073809367604554],[-0.089601211249828,0.032954040914774,0.023977277800441]],[[0.034102492034435,0.10513361543417,0.082317493855953],[0.034935332834721,0.022791961207986,0.036166727542877],[-0.19463366270065,-0.042974568903446,0.06905797123909]],[[0.17634169757366,0.12726370990276,0.0034185466356575],[-0.084032230079174,0.028490262106061,0.055609963834286],[-0.11789520084858,0.024735637009144,0.013044153340161]],[[0.074810303747654,-0.004771132953465,0.073309920728207],[-0.24721989035606,0.27291479706764,0.0071324673481286],[-0.086464248597622,0.12913686037064,0.057895328849554]],[[0.054753847420216,-0.061070576310158,0.060559909790754],[-0.087543740868568,0.12513695657253,0.10847587138414],[-0.08459760248661,0.072286561131477,-0.0016939481720328]],[[-0.014338934794068,-0.036664836108685,0.038260608911514],[-0.10028605908155,-0.069401316344738,0.1182142496109],[0.055827304720879,-0.069315508008003,0.033310804516077]],[[0.042265549302101,0.05158318951726,0.045087363570929],[-0.030465885996819,0.17489542067051,0.19468148052692],[-0.0051071331836283,0.15321142971516,0.021517710760236]],[[0.23692460358143,-0.049542900174856,0.029948823153973],[-0.044043064117432,0.048784174025059,0.056086149066687],[-0.091902174055576,-0.0694410353899,-0.039443880319595]],[[-0.053043629974127,-0.015464617870748,0.048542160540819],[0.085950754582882,0.049050934612751,0.10433714836836],[0.062566094100475,-0.11074108630419,0.053577169775963]],[[-0.068864293396473,-0.059136193245649,0.01676919683814],[-0.06742699444294,0.053136188536882,0.077942058444023],[0.065190695226192,0.01206399127841,0.012390595860779]],[[-0.020544493570924,0.1484432220459,-0.0093731908127666],[-0.093064285814762,-0.010560912080109,-0.11331939697266],[-0.08621284365654,0.086844675242901,-0.076734736561775]],[[0.081221960484982,0.098171956837177,0.13151679933071],[0.071494437754154,-0.011847857385874,-0.17689110338688],[-0.00078415661118925,-0.071886122226715,-0.018083099275827]],[[0.0075347810052335,0.075679630041122,-0.040720831602812],[0.077007986605167,-0.0017176632536575,-0.051795531064272],[0.072875313460827,-0.1298416852951,-0.096172094345093]],[[0.12740354239941,-0.037977758795023,-0.032863955944777],[0.0016440644394606,0.06664165109396,0.040801905095577],[-0.033622857183218,0.091872863471508,0.041555777192116]],[[-0.018751764670014,0.10560008883476,0.036536931991577],[-0.040509041398764,0.15725304186344,-0.01066052634269],[-0.042430851608515,-0.022417826578021,-0.079231649637222]],[[0.14794462919235,-0.039793152362108,0.099230274558067],[-0.19558861851692,0.014279511757195,0.070781908929348],[-0.12782324850559,-0.041878625750542,-0.0097860293462873]],[[0.086646437644958,0.014682377688587,-0.042856633663177],[0.044979531317949,0.18891820311546,0.13309487700462],[-0.014924550428987,0.04582216963172,0.19962276518345]],[[0.0030650112312287,-0.11344694346189,0.10685025155544],[0.058861799538136,0.18180134892464,-0.047136392444372],[-0.046456292271614,0.089235246181488,-0.081796944141388]],[[-0.0090760439634323,0.036478523164988,0.13261340558529],[-0.079041518270969,0.271419942379,-0.20819611847401],[-0.079204961657524,-0.0076464894227684,-0.12430436164141]],[[0.043860178440809,0.11452363431454,0.15474842488766],[-0.0092738252133131,-0.036792874336243,-0.097119025886059],[-0.12647598981857,0.018993783742189,-0.075366422533989]],[[-0.05428383871913,0.15612123906612,0.010162334889174],[0.17595049738884,0.080947928130627,0.01298943720758],[-0.12482240051031,-0.068270929157734,-0.11406300961971]],[[0.032492212951183,0.28240782022476,-0.12802439928055],[0.043477449566126,0.13202184438705,0.042746260762215],[-0.16042350232601,0.15193201601505,0.13054548203945]],[[0.086991712450981,0.20230424404144,0.029171435162425],[-0.11556401848793,0.066086605191231,-0.023692546412349],[0.037731193006039,0.052211787551641,0.056124497205019]],[[-0.12844589352608,-0.040203142911196,-0.012419265694916],[-0.065306417644024,0.10108955949545,-0.059619836509228],[-0.06460552662611,-0.065170131623745,0.047921508550644]],[[-0.12047842890024,0.018168453127146,0.24044761061668],[0.01219938788563,-0.18476119637489,0.055929150432348],[-0.044361382722855,-0.040573053061962,-0.024069346487522]],[[0.069758109748363,0.1192429214716,0.052378695458174],[0.014341248199344,0.063242025673389,0.089260213077068],[0.096925109624863,0.052423313260078,-0.10990829765797]],[[0.038154549896717,0.13708101212978,-0.017272967845201],[0.020338224247098,-0.06536515802145,0.041868280619383],[0.053648915141821,0.0065439380705357,-0.0074470136314631]],[[0.049133334308863,0.041230548173189,-0.0032950378954411],[0.012140012346208,0.0017777633620426,-0.062300778925419],[0.020856037735939,0.023488216102123,-0.028353521600366]],[[0.025232259184122,0.0027451438363642,0.048183035105467],[-0.048883810639381,0.083214327692986,0.025135928764939],[0.0027662692591548,0.24071943759918,0.0047008232213557]],[[0.11716847866774,0.27684363722801,-0.063397370278835],[-0.032076753675938,-0.0012032475788146,0.060581993311644],[0.074059687554836,0.045494023710489,-0.013851506635547]],[[0.016186794266105,-0.066295757889748,0.0067615061998367],[0.10651537030935,0.11106912791729,0.029004132375121],[-0.043900884687901,0.17138049006462,0.00032902680686675]],[[0.07559859007597,-0.05257485806942,0.040545906871557],[-0.014760862104595,0.023699780926108,0.056458000093699],[-0.082587063312531,0.012101422995329,0.054182559251785]]],[[[-0.16480147838593,0.0082141505554318,0.1189701706171],[-0.083344876766205,0.040730468928814,-0.13295072317123],[0.001176553661935,0.099715150892735,-0.036531429737806]],[[-0.061123415827751,0.031856182962656,0.04558414593339],[0.088551327586174,0.01849877461791,-0.10952050238848],[-0.11606226116419,-0.094604790210724,-0.0013260381529108]],[[-0.060117233544588,-0.031706601381302,0.11076571792364],[0.09630011767149,0.012525785714388,0.037364985793829],[0.016666457056999,-0.036190833896399,0.012749464251101]],[[0.10402972251177,0.05067140609026,-0.030903907492757],[0.0011898213997483,0.30140113830566,-0.035344313830137],[-0.13187083601952,0.055002868175507,-0.0040595340542495]],[[-0.12439302355051,-0.13727800548077,-0.1999923735857],[-0.023462545126677,0.0042635528370738,0.062823869287968],[0.064624778926373,-0.090242564678192,-0.10333843529224]],[[0.038880817592144,0.17337971925735,0.065285325050354],[-0.06052865087986,0.17624889314175,0.12889643013477],[0.079125814139843,0.057522397488356,-0.015898188576102]],[[-0.088996760547161,0.03974924236536,0.022279635071754],[-0.062684282660484,0.083248920738697,0.086671620607376],[0.056697439402342,0.090558253228664,0.066891744732857]],[[-0.0039289933629334,0.0099165225401521,0.059455014765263],[-0.062328077852726,-0.041802890598774,0.034170504659414],[0.04626452550292,0.0665662586689,0.098187692463398]],[[0.070972949266434,-0.099214248359203,-0.028708776459098],[0.042980838567019,0.054613474756479,0.040891908109188],[-0.080601699650288,0.0095824161544442,-0.050813227891922]],[[-0.14032702147961,-0.094266042113304,0.013465600088239],[-0.064574204385281,-0.19980680942535,-0.076356813311577],[-0.049846239387989,-0.18465834856033,-0.016355082392693]],[[-0.10741562396288,0.1550107896328,0.07429812848568],[0.14508450031281,-0.090415790677071,0.069288849830627],[-0.084274612367153,0.077971465885639,-0.063665956258774]],[[-0.017173970118165,-0.073482550680637,0.058689247816801],[-0.028319263830781,-0.02415693923831,0.11764420568943],[0.045865476131439,-0.069991387426853,-0.0068125533871353]],[[0.0054223891347647,-0.011643729172647,0.077534779906273],[0.033676225692034,-0.062839604914188,0.026378205046058],[0.15797092020512,0.0011300696060061,0.098541930317879]],[[-0.21240150928497,0.023815641179681,0.17585402727127],[-0.023230459541082,0.1752510368824,0.045849330723286],[0.074446767568588,0.066508077085018,0.23776945471764]],[[0.022756574675441,0.04728089645505,-0.21342265605927],[-0.046202544122934,0.096016861498356,-0.0037774990778416],[-0.023822497576475,0.045742589980364,0.030934264883399]],[[0.041293118149042,0.074595354497433,-0.14093235135078],[-0.077213563024998,-0.055894780904055,-0.025827063247561],[0.18128103017807,-0.043302066624165,0.081323131918907]],[[-0.028890920802951,-0.04202127084136,0.10123785585165],[0.026356067508459,0.029803907498717,0.038848854601383],[-0.021573055535555,0.027332918718457,0.12227235734463]],[[0.021421086043119,0.14640244841576,0.1458645761013],[-0.00522719649598,0.073980055749416,0.042345814406872],[-0.002541967201978,0.075167924165726,0.090974099934101]],[[0.16772769391537,0.094873711466789,0.31585013866425],[0.073843240737915,0.14489810168743,0.087719954550266],[0.025142136961222,0.024685887619853,-0.06511427462101]],[[0.042757041752338,-0.21796092391014,0.047320660203695],[-0.070355229079723,-0.049649473279715,0.22231791913509],[-0.0062426412478089,0.11584673076868,0.12225102633238]],[[0.040628626942635,0.02391672693193,0.02521406672895],[-0.024513533338904,0.14919264614582,0.13804806768894],[-0.074088677763939,0.010536012239754,0.03238781914115]],[[-0.017491824924946,-0.018374236300588,0.073496766388416],[0.02912088111043,0.20467120409012,-0.048967752605677],[0.039040148258209,0.055453773587942,0.11856788396835]],[[0.11163423955441,0.11750323325396,0.17761282622814],[0.033854115754366,0.066317923367023,-0.051260501146317],[0.046806078404188,0.028431730344892,0.22862842679024]],[[-0.0094181289896369,-0.03378102555871,0.031965225934982],[0.030857481062412,0.052384663373232,0.10822885483503],[0.015159064903855,0.09697537124157,0.050125665962696]],[[-0.022939641028643,0.11574046313763,-0.013916180469096],[0.09640084952116,0.12553684413433,0.0051429988816381],[-0.039779830724001,-0.01601330190897,0.026054432615638]],[[0.11075963824987,-0.028380084782839,0.22954820096493],[0.10978964716196,0.062118642032146,0.07105765491724],[0.089594580233097,0.047431983053684,-0.010811561718583]],[[-0.0090705025941133,0.19003988802433,0.17483738064766],[0.081674560904503,-0.028943195939064,0.024956174194813],[-0.072946965694427,0.025820307433605,0.1235538944602]],[[-0.02766490355134,0.027887670323253,0.058292411267757],[0.068854533135891,0.056493628770113,0.025707000866532],[-0.11949455738068,-0.0057051503099501,-0.085695065557957]],[[0.0075358399190009,0.071739882230759,0.032942082732916],[0.1516607105732,-0.02460321970284,-0.014809360727668],[-0.090917006134987,-0.019472511485219,-0.10324349999428]],[[-0.080451369285583,0.047098636627197,0.029804021120071],[0.031538493931293,0.067336648702621,-0.032189201563597],[0.14767690002918,-0.031924977898598,-0.089375182986259]],[[0.070034772157669,0.10427931696177,0.048134718090296],[0.095652870833874,0.093930631875992,0.022986672818661],[-0.056233298033476,0.06033768504858,-0.058756496757269]],[[0.12501133978367,0.056211709976196,-0.076359130442142],[-0.061788778752089,-0.086026534438133,-0.16170650720596],[-0.012662462890148,0.045225709676743,-0.040922284126282]]],[[[-0.12714475393295,0.042849101126194,-0.077422685921192],[0.096246369183064,0.012651119381189,-0.097578376531601],[-0.12684385478497,-0.046644877642393,-0.054055117070675]],[[0.022248841822147,-0.11150132864714,0.086884804069996],[0.054936483502388,0.091801546514034,-0.043724570423365],[-0.05162663012743,0.018355995416641,0.082760840654373]],[[-0.083016864955425,-0.15781161189079,-0.074032485485077],[0.014395906589925,-0.32658708095551,0.018820999190211],[0.16072238981724,0.0026741547044367,-0.002068551024422]],[[0.016690278425813,-0.27659001946449,-0.041964765638113],[0.049172095954418,0.02851764857769,0.14331549406052],[-0.024086846038699,-0.028437985107303,0.17004942893982]],[[0.074591651558876,-0.20785880088806,-0.062330313026905],[-0.07141774892807,-0.02311853133142,-0.010043798945844],[0.13630056381226,-0.043091546744108,-0.08082040399313]],[[0.10666033625603,0.080254435539246,-0.067591331899166],[0.017463881522417,-0.13307046890259,0.037474054843187],[0.18538641929626,0.13775281608105,-0.17889542877674]],[[0.087587557733059,-0.32648786902428,0.050929665565491],[0.069032311439514,-0.16603465378284,-0.085843168199062],[-0.1180472895503,-0.39860469102859,0.019985819235444]],[[-0.060217350721359,0.032551128417253,0.12624238431454],[-0.044846273958683,-0.056003242731094,0.027837989851832],[-0.10159755498171,-0.05228316411376,-0.26574519276619]],[[-0.077033311128616,0.0010190033353865,-0.0023487471044064],[0.027206420898438,-0.067815162241459,0.038025826215744],[-0.040896195918322,-0.0047611463814974,-0.2619477212429]],[[-0.017329661175609,0.13327275216579,-0.044128853827715],[0.043943736702204,-0.070733301341534,0.012144218198955],[-0.037997432053089,0.080170527100563,-0.01768946647644]],[[-0.0030647600069642,-0.082237929105759,0.076077178120613],[0.015948448330164,-0.064898058772087,-0.043496534228325],[-0.06465221196413,-0.054456613957882,0.10609444230795]],[[0.082767352461815,-0.10959896445274,-0.099505051970482],[-0.03562605753541,-0.091384068131447,0.16169536113739],[0.25286942720413,0.057474222034216,0.12287223339081]],[[-0.059006199240685,-0.26795494556427,0.015224037691951],[0.34371691942215,0.052824549376965,-0.099558383226395],[-0.040308173745871,-0.17696841061115,0.065956503152847]],[[0.10055073350668,-0.092856653034687,-0.16218462586403],[0.071860745549202,0.11330968141556,-0.058691903948784],[-0.074681289494038,-0.12813556194305,-0.058312140405178]],[[-0.16193780303001,-0.2956283390522,0.052874714136124],[-0.067132487893105,0.23713845014572,-0.033148735761642],[0.26380077004433,-0.1786375939846,0.02208549529314]],[[-0.17176455259323,0.16328577697277,0.00012743097613566],[0.14692334830761,-0.14923836290836,0.14242103695869],[-0.20834197103977,0.053680028766394,-0.03643599152565]],[[0.092257238924503,0.22847716510296,-0.093448475003242],[-0.077814124524593,-0.020804485306144,-0.11224351078272],[-0.080451592803001,0.18990856409073,0.010745531879365]],[[-0.0035460372455418,-0.010885355994105,-0.17337633669376],[-0.29646724462509,-0.16694681346416,0.034626707434654],[-0.10771325975657,-0.34941127896309,0.027882130816579]],[[-0.01442860160023,0.10738153010607,-0.2318090647459],[-0.038984715938568,-0.024079667404294,-0.088741570711136],[-0.039680805057287,0.081535905599594,-0.12389351427555]],[[1.7564683730598e-05,-0.1010838970542,-0.12781377136707],[-0.33518561720848,-0.04839114099741,-0.18723756074905],[-0.0043199425563216,-0.13412128388882,-0.41909241676331]],[[-0.2458321005106,0.071928732097149,-0.039582498371601],[0.15659606456757,-0.030424453318119,-0.11070064455271],[0.15090979635715,-0.066500820219517,-0.029410449787974]],[[0.074282638728619,-0.071178875863552,-0.031424924731255],[-0.079564817249775,0.0076961740851402,0.16087172925472],[0.055417355149984,-0.18356218934059,0.12174461781979]],[[0.10402791947126,0.21018931269646,-0.06240863353014],[-0.002885366557166,-0.073505811393261,-0.088686138391495],[0.016512356698513,-0.074744313955307,0.073826059699059]],[[-0.023672048002481,0.13149480521679,0.060373801738024],[0.089129403233528,-0.1753663867712,0.0088141979649663],[-0.1991328895092,-0.049101416021585,0.10863296687603]],[[-0.0043793739750981,-0.031037064269185,0.15404970943928],[0.016187245026231,-0.096622414886951,-0.037380632013083],[-0.039801441133022,-0.0025775451213121,-0.086046800017357]],[[-0.081159763038158,-0.059632025659084,0.04270488768816],[-0.19504383206367,-0.04703488573432,0.027914255857468],[-0.18752025067806,-0.11564938724041,-0.10615727305412]],[[0.085454128682613,0.11024406552315,-0.054084300994873],[0.024049770087004,-0.25227791070938,-0.14921863377094],[-0.14829815924168,-0.12134286016226,0.025456395000219]],[[0.12721690535545,0.096454083919525,-0.26178595423698],[-0.05747040733695,-0.1580304056406,0.2244321256876],[-0.096297934651375,0.055347744375467,-0.17302137613297]],[[-0.024897754192352,0.00086796254618093,0.040577631443739],[-0.0094852847978473,-0.046089299023151,-0.061375625431538],[0.033880896866322,-0.075821802020073,-0.046228114515543]],[[-0.055014088749886,0.03367679938674,0.053206011652946],[-0.038210310041904,0.079990595579147,-0.19678680598736],[-0.15933738648891,-0.16898243129253,-0.11096530407667]],[[0.015655819326639,-0.050843596458435,-0.0083003425970674],[-0.088178619742393,0.10670627653599,-0.0077669401653111],[-0.13674880564213,0.055776115506887,0.036445524543524]],[[-0.0073154382407665,-0.036390028893948,0.14884394407272],[0.0093144718557596,-1.2061540473951e-05,-0.04918946698308],[-0.0079839089885354,0.028644869104028,-0.10446199774742]]],[[[0.016308948397636,0.053056180477142,-0.026702921837568],[-0.073075912892818,-0.10150254517794,0.072754211723804],[-0.020614925771952,-0.10421931743622,0.083174809813499]],[[0.16744321584702,-0.017736427485943,0.018318865448236],[0.085274130105972,-0.031616233289242,0.085699088871479],[0.035523880273104,0.027343099936843,-0.10568775236607]],[[-0.077842630445957,-0.05022956430912,0.04098779708147],[-0.024549096822739,0.031991522759199,-0.062951967120171],[-0.10237838327885,0.13626137375832,-0.18549241125584]],[[0.055657893419266,0.099118664860725,-0.17540618777275],[-0.21457515656948,0.17296275496483,-0.31897008419037],[-0.099371060729027,0.13423727452755,0.10932808369398]],[[-0.12083528190851,0.12091332674026,-0.035832773894072],[0.083993345499039,-0.12376066297293,-0.10332444310188],[-0.025101253762841,0.044965952634811,-0.084666103124619]],[[-0.2224578410387,0.17238573729992,-0.049472089856863],[0.065960437059402,0.025414658710361,0.09157282859087],[0.043746765702963,-0.059391420334578,0.031371813267469]],[[-0.10028830915689,0.19572776556015,-0.083646379411221],[0.08179897069931,-0.0095597039908171,0.0078076403588057],[0.019837370142341,0.19999203085899,-0.13158886134624]],[[-0.035034567117691,-0.088623598217964,-0.06582323461771],[-0.01669498346746,-0.13832296431065,-0.054408818483353],[-0.062892988324165,-0.040886849164963,0.11560492962599]],[[-0.063266478478909,-0.061464589089155,0.011549468152225],[0.11800889670849,0.082511946558952,0.0039863036945462],[-0.1284848600626,0.19272221624851,-0.19809886813164]],[[-0.14023759961128,-0.06261184066534,0.12025118619204],[0.11127788573503,0.004735691472888,-0.086235664784908],[0.14929781854153,0.0043828687630594,-0.045276287943125]],[[0.018925728276372,-0.08480241894722,-0.10263422876596],[-0.1692890226841,0.1833420842886,0.030897844582796],[0.002180511597544,-0.017882401123643,-0.18852330744267]],[[-0.16545459628105,0.12908113002777,0.022370342165232],[-0.0045696049928665,-0.064259059727192,0.073378369212151],[0.058875858783722,0.1012716665864,0.13332127034664]],[[0.044004276394844,-0.1387140750885,0.050893381237984],[0.041837971657515,-0.085402816534042,-0.059009931981564],[-0.22100622951984,0.13346126675606,-0.093405537307262]],[[-0.03397561237216,-0.010800086893141,0.14476034045219],[0.018775410950184,0.057400476187468,0.032505363225937],[-0.18889681994915,0.11708413809538,0.21946752071381]],[[-0.082785293459892,-0.013725267723203,-0.086839757859707],[-0.054685551673174,-0.031161671504378,0.10476188361645],[0.05820532143116,0.10573640465736,-0.081732712686062]],[[-0.078964203596115,0.036576118320227,-0.17132261395454],[-0.26742473244667,0.055735617876053,0.10104215145111],[0.07391307502985,0.017416726797819,0.11350280046463]],[[0.10783749818802,-0.23102788627148,0.13924108445644],[-0.10861471295357,-0.02768593840301,-0.12058791518211],[0.25327080488205,-0.19925065338612,0.11353104561567]],[[-0.010644411668181,-0.027319403365254,-0.10338934510946],[-0.098900251090527,-0.2573644220829,-0.030579950660467],[0.0035296196583658,-0.016887668520212,-0.046256478875875]],[[-0.12396232783794,-0.059907790273428,-7.0644535298925e-05],[-0.1239008679986,-0.038234334439039,0.077066347002983],[0.10318222641945,-0.13518358767033,0.12684644758701]],[[-0.021905599161983,-0.1166113242507,-0.084215052425861],[0.036926325410604,-0.11728342622519,0.072597712278366],[-0.10568864643574,-0.013657482340932,-0.022524634376168]],[[-0.026450481265783,0.13444735109806,-0.038797371089458],[0.097158491611481,-0.01875345595181,-0.1819302290678],[-0.08345440775156,0.057983960956335,-0.044437553733587]],[[-0.080195151269436,-0.03897075727582,0.10303778201342],[0.020376024767756,-0.059855099767447,-0.087403900921345],[-0.13947166502476,-0.0055736633948982,-0.090085439383984]],[[-0.085708364844322,-0.21966210007668,-0.039675395935774],[0.093729592859745,-0.12038737535477,-0.067122265696526],[0.12194135785103,-0.084993198513985,-0.024243485182524]],[[0.018175842240453,0.021776990965009,0.00077936699381098],[0.037909720093012,-0.22851413488388,0.10560804605484],[-0.097292855381966,-0.058811563998461,0.014984950423241]],[[-0.02644631639123,0.015195813961327,-0.073576010763645],[0.074962615966797,-0.005281706340611,0.1328781247139],[-0.24311143159866,-0.043228901922703,-0.12514051795006]],[[-0.10879381000996,0.02833721973002,-0.0061379345133901],[-0.049082864075899,0.0020060874521732,0.073030985891819],[-0.053672224283218,-0.04818356782198,-0.071833193302155]],[[-0.10792557895184,-0.089576676487923,-0.29142567515373],[0.040014319121838,-0.1457861661911,-0.012818064540625],[0.076029174029827,0.00025008196826093,0.039020847529173]],[[0.077296882867813,-0.055026862770319,0.18024104833603],[-0.038107626140118,0.032231282442808,-0.34438925981522],[-0.051651660352945,-0.040824022144079,0.040851771831512]],[[-0.092882245779037,-0.092191003262997,0.069515138864517],[0.15257278084755,0.052096582949162,-0.1688244342804],[0.17584520578384,0.082491263747215,0.10870515555143]],[[-0.16935874521732,0.0880993232131,-0.16685536503792],[-0.16112397611141,-0.19914637506008,0.1223034709692],[0.097975246608257,-0.26137700676918,0.018237015232444]],[[0.10464704781771,-0.058876987546682,-0.075500689446926],[-0.22558549046516,0.010454422794282,-0.061475325375795],[0.04869269952178,-0.0095296194776893,0.021080549806356]],[[0.063975222408772,-0.29998442530632,0.031806416809559],[0.094558238983154,0.10412427037954,-0.025533540174365],[-0.11661874502897,0.11913171410561,-0.11885809898376]]],[[[-0.070622742176056,-0.023572085425258,-0.11093501746655],[-0.1438504755497,-0.061939902603626,0.10850301384926],[-0.074041180312634,-0.074864819645882,0.043112266808748]],[[-0.016819538548589,-0.05710506811738,-0.30948489904404],[0.079247087240219,0.0034847734495997,-0.11111706495285],[0.10734328627586,0.095494344830513,0.11810366809368]],[[-0.055690042674541,-0.066675364971161,0.062176283448935],[0.019072206690907,0.035936336964369,-0.066134981811047],[0.048463717103004,-0.062873177230358,-0.0079445913434029]],[[-0.13086570799351,0.13046327233315,0.17138159275055],[-0.19068388640881,-0.24630287289619,0.070476219058037],[0.17818504571915,-0.30456382036209,0.12750189006329]],[[-0.0026888542342931,-0.015744425356388,0.013615689240396],[-0.02715652063489,0.058757897466421,0.029197612777352],[0.012758856639266,-0.010960187762976,0.041996736079454]],[[-0.040003277361393,-0.063723348081112,0.13926526904106],[-0.058990601450205,-0.10805926471949,-0.0197136644274],[-0.012916666455567,0.023775992915034,-0.026904676109552]],[[0.024708656594157,-0.088632091879845,0.029955975711346],[0.036700777709484,-0.026239778846502,-0.22979438304901],[-0.059137031435966,0.090842299163342,-0.011446976102889]],[[-0.024460630491376,-0.052743811160326,-0.15829262137413],[-0.15498140454292,-0.029325662180781,0.053151167929173],[0.052752319723368,-0.035127971321344,-0.097026951611042]],[[-0.045945432037115,-0.054526571184397,0.052682377398014],[-0.02770821005106,0.019249374046922,-0.18410263955593],[0.048044618219137,0.16774998605251,-0.030369989573956]],[[0.061227511614561,-0.17100867629051,-0.073701985180378],[-0.062015667557716,0.047093003988266,-0.088811673223972],[0.1013991907239,0.066352881491184,0.02508626319468]],[[0.020367180928588,-0.0336719378829,-0.10225441306829],[0.075225338339806,0.061842385679483,-0.060444038361311],[0.053616471588612,-0.092221081256866,-0.019307309761643]],[[-0.058106753975153,0.1132287979126,0.076833464205265],[0.061095416545868,-0.0084169823676348,-0.085469894111156],[-0.050663694739342,-0.092170812189579,-0.0053989486768842]],[[0.099225498735905,0.025601791217923,-0.16384308040142],[0.0099787404760718,0.044598985463381,0.097048550844193],[0.11492987722158,-0.037564542144537,-0.00061422341968864]],[[0.022579373791814,0.10814902186394,0.17524649202824],[-0.098590768873692,0.045914441347122,0.058917548507452],[-0.049800984561443,0.019838431850076,-0.0069206808693707]],[[-0.029111932963133,0.078640595078468,0.19152018427849],[-0.095043942332268,-0.13614448904991,0.097553424537182],[-0.012069517746568,-0.13718296587467,-0.10221050679684]],[[0.020312376320362,-0.05493650585413,-0.028947377577424],[-0.088831096887589,0.14712375402451,0.072320327162743],[0.025003980845213,-0.13563364744186,-0.073329985141754]],[[0.0093307150527835,0.021972106769681,0.078289538621902],[-0.044886570423841,-0.016125213354826,-0.0026821861974895],[-0.0012720585800707,-0.20248961448669,-0.060100510716438]],[[-0.068231500685215,0.04779814183712,0.049635995179415],[0.037347391247749,0.093288861215115,0.017493240535259],[0.017156720161438,-0.0093354377895594,-0.084028095006943]],[[0.0030295005999506,-0.11723555624485,-0.054871670901775],[0.0031053016427904,-0.065936475992203,-0.037545502185822],[0.028329575434327,-0.082068003714085,-0.016829699277878]],[[0.081452719867229,0.15416929125786,-0.15648233890533],[0.044535331428051,0.1795951128006,0.0026088759768754],[-0.099324718117714,0.073445290327072,0.041639007627964]],[[-0.10719177871943,-0.11004707962275,0.18827363848686],[0.010687376372516,-0.16293986141682,-0.036208771169186],[-0.10250484198332,0.0093979462981224,-0.043057456612587]],[[-0.20107378065586,0.1020206362009,-0.006019642110914],[-0.12382488697767,0.025639582425356,0.12148803472519],[0.0071764881722629,-0.025664065033197,0.034873850643635]],[[-0.036265596747398,0.10216803848743,-0.098992504179478],[0.013947561383247,0.13520546257496,0.0018418873660266],[-0.080725096166134,-0.021306585520506,0.074776485562325]],[[0.13639789819717,-0.10021408647299,0.029895424842834],[0.11510794609785,-0.10218261182308,-0.040647462010384],[0.12432343512774,0.0092583252117038,-0.1816273778677]],[[-0.17418375611305,-0.040081351995468,-0.039488475769758],[0.039510007947683,0.14556367695332,0.051142226904631],[0.05456830188632,-0.14798283576965,0.091224126517773]],[[0.10532797127962,0.12595751881599,0.11849711090326],[0.015403072349727,0.041159354150295,-0.060314565896988],[0.013374703004956,0.048057463020086,-0.12365765869617]],[[-0.17171896994114,0.023052221164107,0.058725975453854],[-0.0072488593868911,0.005561769939959,0.10357358306646],[-0.020705142989755,0.055134665220976,-0.075227834284306]],[[-0.15597496926785,-0.10818541795015,-0.06924382597208],[-0.072140045464039,0.10153038799763,-0.018347347155213],[0.066387735307217,-0.14591433107853,0.051544424146414]],[[0.11752621084452,-0.10197246074677,0.028020283207297],[0.017043573781848,-0.010832132771611,-0.02712949924171],[0.00071026291698217,0.05723849684,0.049559883773327]],[[0.096222594380379,-0.034149568527937,-0.091612055897713],[0.00038813671562821,0.057369045913219,-0.068340063095093],[-0.1156399846077,-0.0012335433857515,-0.03087306022644]],[[0.13223549723625,0.093211442232132,-0.17052230238914],[-0.22819241881371,0.14300365746021,0.032961320132017],[0.2070593982935,-0.038993082940578,-0.026020655408502]],[[-0.11165416240692,-0.091210715472698,0.022353362292051],[0.085478782653809,-0.14701409637928,-0.18682043254375],[-0.023765997961164,0.0086158504709601,0.098272107541561]]],[[[-0.12132748961449,-0.061355024576187,-0.086569614708424],[0.15908096730709,0.21969100832939,-0.050025794655085],[0.10315781831741,0.028659667819738,-0.054196130484343]],[[0.090429276227951,0.092252224683762,0.0040976954624057],[-0.068903177976608,0.048747148364782,-0.23246946930885],[0.0016877400921658,-0.039109103381634,-0.02487338334322]],[[-0.12413128465414,-0.025843212381005,-0.055961336940527],[0.0021477264817804,0.021325252950191,-0.039066940546036],[-0.18227782845497,0.046180929988623,-0.060471519827843]],[[0.13390043377876,0.062016647309065,-0.035310745239258],[0.17478592693806,0.030595609918237,-0.10200279206038],[-0.13389563560486,-0.016256865113974,-0.012242129072547]],[[-0.0054775797761977,-0.025024611502886,-0.14159874618053],[0.081584833562374,0.14380988478661,-0.094149932265282],[0.065337546169758,0.055088859051466,-0.039846628904343]],[[-0.056345243006945,0.067988775670528,-0.043688841164112],[-0.02438803575933,0.075697898864746,0.022839985787868],[-0.1186696216464,0.063956424593925,0.013037445954978]],[[-0.028956390917301,-0.042719658464193,-0.064857378602028],[-0.029145261272788,-0.034017529338598,-0.08461781591177],[0.17822380363941,-0.066747352480888,0.10805131494999]],[[0.16052089631557,-0.015111259184778,0.049079287797213],[-0.090471372008324,-0.010025439783931,0.07112380862236],[0.049123011529446,0.075697086751461,0.0029509402811527]],[[0.078712821006775,-0.094770267605782,0.031660977751017],[0.050560850650072,0.064844228327274,0.043755739927292],[-0.17773649096489,0.10173124819994,0.036135826259851]],[[-0.14634115993977,0.061909109354019,-0.029534237459302],[-0.14348664879799,-0.0087367929518223,-0.0096305757761002],[0.11343326419592,0.014967703260481,0.11757656931877]],[[0.11232002079487,-0.079616896808147,-0.1114089936018],[-0.065000459551811,0.0026562244165689,0.029162874445319],[0.22320957481861,0.07780547440052,-0.10286664962769]],[[0.088146030902863,-0.04437181353569,0.0016589092556387],[0.01221149135381,-0.057334311306477,-0.12326463311911],[-0.065090492367744,-0.039285007864237,0.11170456558466]],[[-0.036492951214314,0.0047781206667423,0.032366096973419],[-0.03683839738369,-0.046032123267651,-0.058904930949211],[-0.048676323145628,0.20411927998066,-0.0010675042867661]],[[0.11028859764338,0.11901563405991,0.064889200031757],[0.048284649848938,0.13657994568348,0.070049986243248],[-0.21930137276649,-0.19017228484154,-0.11679235100746]],[[0.10142027586699,-0.12822909653187,-0.064011953771114],[0.17117856442928,0.039976593106985,0.029106117784977],[0.070922404527664,0.033981174230576,0.087661631405354]],[[-0.0082952789962292,0.061377298086882,-0.084408685564995],[-0.10314105451107,-0.10296370834112,-0.16267536580563],[0.011136774905026,0.044387333095074,0.04227939248085]],[[-0.056696075946093,0.11138504743576,0.039065312594175],[-0.022178223356605,-0.092656023800373,0.05723337456584],[-0.012064045295119,0.011911052279174,0.047273620963097]],[[0.022266874089837,-0.1564467549324,-0.12411218881607],[0.12541797757149,-0.0079792467877269,-0.024246508255601],[0.032700963318348,0.12076745182276,-0.056040778756142]],[[-0.032674130052328,-0.037974193692207,0.20468844473362],[-0.17695946991444,-0.05719492956996,-0.13337241113186],[-0.0014014912303537,-0.064999684691429,0.060134559869766]],[[-0.10111118853092,-0.13941295444965,-0.14386115968227],[-0.09227205067873,0.027039803564548,-0.0021251763682812],[0.052342861890793,0.018194779753685,-0.099035605788231]],[[0.060526911169291,0.063862033188343,0.020039472728968],[-0.075550906360149,0.074666939675808,0.14717200398445],[0.089598618447781,-0.021039076149464,0.087182432413101]],[[0.061867333948612,-0.052356205880642,-0.12511940300465],[-0.11607249826193,-0.18136233091354,0.017921959981322],[0.12808093428612,0.068927213549614,-0.040546573698521]],[[0.081424564123154,0.0060954350046813,0.10550148785114],[0.0089870598167181,0.087086223065853,-0.0683264285326],[-0.0034502709750086,-0.14973421394825,0.10627348721027]],[[-0.075898133218288,-0.061090044677258,0.0026598244439811],[0.066184349358082,-0.036739069968462,-0.025141017511487],[-0.0031325644813478,0.078223124146461,-0.12323269248009]],[[0.016995914280415,-0.12612779438496,-0.19578814506531],[-0.11898198723793,0.097761243581772,-0.0025416668504477],[0.18602284789085,-0.057201102375984,-0.03644997626543]],[[0.064878411591053,0.04575465247035,-0.038002595305443],[-0.056420341134071,0.043138008564711,0.063906140625477],[0.095277354121208,-0.023709028959274,0.062064427882433]],[[-0.030336923897266,0.099185578525066,-0.18632942438126],[-0.013468501158059,0.052932538092136,-0.081621438264847],[-0.18274915218353,0.17005464434624,0.026555819436908]],[[-0.070794530212879,-0.026818765327334,-0.004197355825454],[0.02254937030375,0.11219386011362,-0.0046908361837268],[0.049307838082314,-0.17221547663212,-0.0011453907936811]],[[0.030177194625139,-0.10555020719767,-0.022617910057306],[0.10104354470968,0.039360918104649,-0.053831592202187],[-0.07853414863348,0.072173617780209,0.035249002277851]],[[0.037114813923836,-0.041858803480864,0.041471771895885],[0.029928086325526,0.027625575661659,-0.010654389858246],[0.00022584325051866,-0.064148895442486,-0.036240756511688]],[[-0.1567310243845,-0.096446372568607,0.056195378303528],[-0.084517993032932,0.075356788933277,0.026570582762361],[-0.1017739623785,-0.016629997640848,0.022385029122233]],[[0.0076192547567189,0.11777172982693,-0.03115951269865],[-0.10189401358366,0.15856829285622,-0.0094822403043509],[0.018021007999778,-0.058747302740812,0.0803407356143]]],[[[-0.11312612146139,0.17172491550446,0.23140120506287],[-0.029756784439087,0.076494917273521,-0.026495261117816],[-0.10838440060616,0.077145397663116,-0.0087066469714046]],[[-0.096359834074974,0.013591890223324,0.086329333484173],[-0.060328781604767,-0.030854610726237,0.020072668790817],[0.015324925072491,0.018176291137934,-0.024106331169605]],[[0.15263220667839,0.0088587459176779,0.13651457428932],[-0.13403426110744,-0.0096120927482843,-0.0031737240497023],[-0.10825400054455,-0.10690664499998,-0.033578496426344]],[[-0.059239525347948,-0.017462937161326,0.16054205596447],[-0.031025819480419,0.082071140408516,-0.13356781005859],[-0.09057080745697,-0.074607998132706,-0.03928604349494]],[[0.068645231425762,0.10820520669222,0.049418602138758],[0.16184329986572,-0.03456836566329,-0.032171126455069],[-0.053067933768034,-0.044033668935299,0.015286102890968]],[[0.045767307281494,-0.022904930636287,0.0063628046773374],[-0.036249253898859,0.014544515870512,0.077829383313656],[0.0017720252508298,0.073488675057888,0.0001057608606061]],[[0.10890780389309,0.1139865219593,0.053320519626141],[0.0006294579943642,-0.11828736960888,-0.016396185383201],[0.011220837011933,0.024671645835042,-0.12703555822372]],[[-0.012167789973319,0.037184573709965,0.20301608741283],[-0.18975587189198,0.0047026369720697,0.12563835084438],[-0.15198522806168,-0.12433229386806,0.064989596605301]],[[0.064059056341648,0.064956463873386,0.013698673807085],[-0.067186281085014,-0.21749569475651,-0.024258887395263],[0.060478676110506,-0.038597837090492,-0.095066905021667]],[[-0.019811591133475,0.012651322409511,0.078830786049366],[-0.010653069242835,-0.066527187824249,-0.010115092620254],[0.097828052937984,-0.12393399327993,-0.11367005109787]],[[0.024255972355604,-0.15074872970581,-0.082774713635445],[-0.021469905972481,0.064710982143879,0.099028415977955],[-0.18008226156235,0.0156121077016,0.13368733227253]],[[0.056575480848551,0.057793904095888,0.030412754043937],[0.052871957421303,0.051325589418411,-0.0082822823897004],[-0.12458962202072,-0.14688690006733,-0.047631658613682]],[[-0.18468907475471,-0.0027909099590033,0.15747676789761],[-0.052510999143124,-0.066801890730858,-0.037930991500616],[-0.029643317684531,0.16678106784821,-0.17785719037056]],[[0.0081600276753306,0.041947845369577,-0.15044845640659],[-0.041194204241037,0.064460620284081,0.13381406664848],[0.0059208832681179,0.084390074014664,-0.050890356302261]],[[0.18461439013481,-0.07668250054121,-0.11659852415323],[-0.0025964742526412,-0.047370981425047,0.095144227147102],[0.045968640595675,-0.19251680374146,-0.08491475135088]],[[-0.20764316618443,-0.0081934835761786,0.026950867846608],[0.085540130734444,0.050157468765974,-0.032009150832891],[-0.10419624298811,0.15123485028744,0.04027197137475]],[[0.026495900005102,0.0058272327296436,-0.066354788839817],[-0.0097245629876852,0.0058815460652113,-0.088003292679787],[-0.074803397059441,-0.14005088806152,0.064415402710438]],[[0.10868578404188,-0.014777167700231,0.052008632570505],[0.00092350249178708,0.041834078729153,0.0036403599660844],[-0.08292481303215,-0.1942438185215,0.0093663325533271]],[[-0.14766968786716,-0.17073057591915,-0.14750844240189],[-0.14115336537361,-0.17701898515224,-0.067589625716209],[-0.087124094367027,-0.061344649642706,-0.073930695652962]],[[-0.086869776248932,-0.090207599103451,0.044782403856516],[0.12301401793957,-0.1354965865612,0.02050001360476],[-0.16381086409092,-0.044146832078695,-0.011169104836881]],[[-0.10765233635902,0.023760970681906,-0.062095616012812],[-0.1489147990942,-0.087288834154606,-0.096924178302288],[-0.016218263655901,0.0035512284375727,-0.10729929059744]],[[0.20326925814152,0.041836246848106,0.083238869905472],[-0.039836551994085,-0.2069483101368,0.031386896967888],[-0.073251150548458,0.090950220823288,-0.14866176247597]],[[0.019011983647943,0.016749389469624,0.063088953495026],[0.0075682899914682,-0.12275809794664,0.11205913126469],[-0.039974950253963,-0.19767528772354,0.0645482391119]],[[-0.11709340661764,-0.096219398081303,0.20629818737507],[0.040825486183167,-0.091034404933453,0.054772570729256],[0.027986437082291,-0.096160680055618,-0.00044182466808707]],[[-0.11194378882647,-0.095734253525734,0.18659922480583],[0.11920186877251,0.043720986694098,-0.00037001961027272],[-0.015490509569645,-0.30040034651756,-0.014441828243434]],[[-0.044112656265497,0.028005680069327,-0.044351898133755],[0.00092744722496718,0.12760262191296,0.023367952555418],[0.023631053045392,0.029918171465397,-0.15458309650421]],[[-0.015707606449723,0.0071152513846755,-0.11637399345636],[-0.24697814881802,0.11607574671507,-0.1365484893322],[0.060881495475769,0.089096799492836,-0.10004096478224]],[[0.16548453271389,-0.002478935290128,0.022407924756408],[-0.052453979849815,-0.025825712829828,0.11660978198051],[-0.14211644232273,-0.068757295608521,0.040412995964289]],[[0.088073708117008,-0.019948782399297,0.18047323822975],[-0.038891009986401,-0.094852834939957,0.069015637040138],[0.020647244527936,-0.089922614395618,0.10276161879301]],[[0.017706774175167,0.046920873224735,0.21789935231209],[-0.068502701818943,-0.0070860236883163,-0.035275824368],[-0.036341663450003,-0.13752597570419,-0.12196943163872]],[[-0.016477879136801,0.0071782935410738,0.039575014263391],[-0.15802645683289,-0.079011730849743,0.078949451446533],[-0.15894414484501,-0.073186330497265,0.065818876028061]],[[-0.27155512571335,-0.097756363451481,-0.015890488401055],[-0.053204715251923,-0.20104072988033,0.025105627253652],[-0.071070037782192,-0.038492761552334,-0.011188962496817]]],[[[0.048605304211378,-0.026574946939945,0.026307620108128],[0.076982490718365,0.032591219991446,-0.048293568193913],[0.0471535846591,-0.057484060525894,-0.058117967098951]],[[-0.063711956143379,-0.11929957568645,-0.023007914423943],[-0.067301847040653,0.11829021573067,-0.13936644792557],[0.10356426984072,0.064893633127213,-0.029120523482561]],[[-0.010044439695776,0.020467631518841,-0.0057780928909779],[-0.010036210529506,-0.039974298328161,0.020912462845445],[-0.0085405297577381,-0.0082620410248637,0.078571371734142]],[[-0.041631799191236,0.02186799235642,-0.016921333968639],[0.013815529644489,-0.069549202919006,-0.02876166626811],[0.0040110503323376,0.09200944006443,0.0040359818376601]],[[-0.076808750629425,0.088780984282494,-0.063069820404053],[0.12401819974184,0.034543473273516,0.034590989351273],[0.013076917268336,0.01967279240489,0.053904954344034]],[[-0.084809616208076,-0.16761314868927,-0.066172309219837],[0.079318061470985,-0.050526082515717,0.089616701006889],[0.039624210447073,-0.018194301053882,-0.00042849971214309]],[[0.021879369392991,0.029862105846405,-0.032864287495613],[0.052029367536306,-0.0085482839494944,-0.039663825184107],[0.010716671124101,-0.015243881382048,-0.0017710711108521]],[[-0.015687040984631,0.060352250933647,0.0089449156075716],[-0.070986412465572,0.071578502655029,0.0056578097864985],[-0.04658330604434,0.0065517108887434,-0.051224015653133]],[[-0.065911531448364,0.062175571918488,-0.12964852154255],[0.088351041078568,-0.040865439921618,-0.018820824101567],[0.019369168207049,0.018293388187885,0.010636016726494]],[[0.036406621336937,0.045526634901762,0.013207236304879],[0.083222903311253,0.23851235210896,0.054379105567932],[-0.034366600215435,0.03808406367898,0.089320726692677]],[[-0.053771018981934,-0.01617736928165,0.020086964592338],[0.060027200728655,-0.082408398389816,0.075734950602055],[-0.0029139451216906,0.0068234466016293,-0.027104735374451]],[[0.024860391393304,-0.055868502706289,-0.03356821462512],[-0.047670543193817,0.0036207092925906,0.072420589625835],[-0.065558731555939,-0.0064720306545496,0.14672687649727]],[[0.036997981369495,-0.016785874962807,-0.1020283550024],[-0.029550451785326,-0.043479066342115,0.033983234316111],[0.0021809486206621,-0.033281419426203,0.053866643458605]],[[0.033088471740484,0.17390567064285,-0.10172030329704],[-0.14567323029041,-0.0025659727398306,0.0056389980018139],[-0.013788253068924,-0.14341959357262,0.088498719036579]],[[-0.0012836359674111,0.063807889819145,-0.058546785265207],[-0.071993611752987,0.11945554614067,0.097800441086292],[-0.051300846040249,-0.010936269536614,-0.059119842946529]],[[0.013934633694589,-0.1146591976285,-0.063204728066921],[-0.011158891022205,0.10332364588976,-0.00090833520516753],[0.030159765854478,-0.065918110311031,0.088336668908596]],[[-0.088391751050949,-0.039694581180811,-0.015993742272258],[0.044080700725317,0.019281243905425,-0.088131949305534],[-0.089921541512012,-0.21344467997551,0.012643886730075]],[[-0.049960725009441,-0.052014268934727,-0.11832013726234],[-0.088023714721203,-0.0050444239750504,0.14173196256161],[0.067424386739731,0.038816757500172,-0.1253499686718]],[[-0.013181631453335,-0.13489221036434,0.089370377361774],[0.030067997053266,-0.040686372667551,-0.032468385994434],[0.021099604666233,-0.029847096651793,0.069290705025196]],[[0.044503286480904,-0.05139672011137,-0.055312406271696],[-0.017429180443287,0.038078017532825,-0.059988688677549],[0.086015999317169,-0.053527157753706,0.052027076482773]],[[-0.075994342565536,0.085725545883179,-0.0040210746228695],[0.054704539477825,-0.057599071413279,-0.10867235064507],[0.062071919441223,-0.073088072240353,0.099709331989288]],[[-0.10404224693775,0.082040421664715,0.21790115535259],[-0.072068370878696,0.052092429250479,-0.01262130215764],[0.0021372165065259,-0.015599811449647,0.030443992465734]],[[0.013910220935941,-0.11999404430389,0.10330574959517],[0.051373053342104,0.016411334276199,0.026216212660074],[0.069852456450462,0.014033404178917,0.0014487913576886]],[[0.07620146125555,0.070306785404682,-0.068661488592625],[-0.0094749825075269,-0.10316502302885,0.0057413973845541],[0.075625374913216,-0.064342401921749,-0.10244764387608]],[[0.086106359958649,0.055708192288876,0.028520166873932],[-0.14437210559845,-0.0037568367552012,0.17173621058464],[-0.016601076349616,-0.060504175722599,-0.12646323442459]],[[0.016151094809175,-0.039058741182089,0.070737741887569],[0.12909717857838,-0.055317137390375,0.087268739938736],[-0.043003227561712,0.028147095814347,-0.022215055301785]],[[-0.057098854333162,0.04930516704917,0.09070347994566],[-0.049601309001446,0.067876674234867,-0.014029123820364],[-0.04939467087388,-0.013930830173194,0.018291195854545]],[[0.11151723563671,0.028175899758935,0.036713033914566],[-0.083658538758755,0.08117001503706,-0.093798421323299],[-0.051606614142656,-0.018956603482366,-0.024005779996514]],[[0.011814432218671,-0.055954299867153,0.12744392454624],[-0.034746993333101,-0.053224828094244,0.049249481409788],[-0.070799089968204,0.041888725012541,-0.022857457399368]],[[-0.040456186980009,0.099769227206707,-0.024766717106104],[0.07225713133812,-0.16628240048885,0.031438380479813],[-0.10941632091999,0.13552679121494,0.019421070814133]],[[0.0017235757550225,0.029724784195423,0.095531046390533],[-0.098514959216118,-0.055350098758936,0.1191575974226],[0.0057760118506849,0.022514369338751,-0.033420462161303]],[[0.056762453168631,0.0081258481368423,0.071817070245743],[-0.022880181670189,-0.11803618073463,-0.034760173410177],[-0.049840342253447,0.023878172039986,0.045649651437998]]],[[[-0.11279521882534,0.016951045021415,-0.095599472522736],[-0.012541074305773,-0.14770758152008,-0.22322526574135],[0.002333507174626,-0.12019427120686,-0.11414747685194]],[[-0.081085987389088,0.025428235530853,0.0474610067904],[0.010788960382342,0.074235983192921,0.11720089614391],[-0.059392914175987,-0.094531834125519,-0.038075670599937]],[[-0.077341109514236,-0.080072402954102,-0.11726797372103],[0.091068886220455,-0.14397925138474,-0.12631607055664],[-0.029168086126447,-0.07148639112711,-0.07539240270853]],[[-0.034810945391655,-0.24449826776981,0.10228768736124],[-0.1950316876173,-0.15242786705494,-0.13692970573902],[-0.11131845414639,-0.14952678978443,-0.11445227265358]],[[0.065091378986835,0.0095177590847015,0.062393616884947],[0.014149424619973,-0.043780978769064,0.0091001465916634],[-0.10177573561668,-0.023879179731011,-0.098936215043068]],[[0.069623991847038,-0.11863875389099,-0.052380159497261],[-0.17966340482235,0.088533602654934,-0.025028528645635],[0.077630035579205,0.23666055500507,0.03518108278513]],[[0.040642417967319,0.088712438941002,-0.15610262751579],[0.0077637885697186,-0.19860300421715,-0.23688322305679],[0.035015396773815,-0.085160724818707,-0.21245154738426]],[[0.019018290564418,0.22612291574478,0.043206635862589],[-0.21560724079609,0.1126993149519,-0.16848744452],[-0.11931139230728,-0.035428825765848,-0.090886034071445]],[[-0.003788826521486,0.03739969432354,-0.068969741463661],[-0.079982601106167,-0.098350375890732,-0.13926203548908],[-0.095183968544006,0.017297379672527,-0.11139564961195]],[[0.078532688319683,0.055184096097946,0.10413832962513],[-0.018274335190654,0.0066104833967984,0.11604401469231],[-0.14405716955662,-0.011667118407786,-0.08833172917366]],[[-0.035931345075369,0.082917429506779,0.016034331172705],[-0.011221894063056,0.063686929643154,-0.08242130279541],[0.10465843975544,-0.19845750927925,0.081492677330971]],[[-0.087537564337254,-0.17793014645576,0.063335105776787],[0.067418046295643,-0.088729493319988,0.0044879484921694],[0.12264029681683,0.15572182834148,-0.02755418419838]],[[0.079833284020424,-0.0051994398236275,0.071096248924732],[0.058105260133743,-0.17771239578724,0.071723751723766],[-0.031214214861393,-0.22437304258347,-0.005146233830601]],[[-0.22232177853584,-0.25438261032104,-0.11584011465311],[0.15264941751957,-0.009318083524704,-0.078601725399494],[0.088677570223808,0.062192350625992,0.16668365895748]],[[0.069467209279537,-0.10395090281963,-0.26036977767944],[-0.12860184907913,0.060436259955168,-0.15916433930397],[-0.030937412753701,-0.064842574298382,-0.08991227298975]],[[0.035796117037535,-0.060266133397818,0.19208188354969],[-0.022483788430691,-0.28830224275589,0.065991438925266],[-0.02419226244092,-0.03971129283309,-0.015276581980288]],[[0.066128827631474,-0.0082143265753984,-0.07014074921608],[-0.057959854602814,0.04439627751708,0.01493700966239],[0.06344098597765,0.021259509027004,0.021266967058182]],[[0.1002087816596,-0.0090469634160399,0.053947601467371],[0.039830785244703,0.018147043883801,-0.17526669800282],[-0.14913590252399,0.02628948353231,-0.1369274109602]],[[-0.034881897270679,0.10599481314421,0.039937764406204],[-0.059978369623423,-0.055625289678574,0.14851921796799],[-0.0093405740335584,0.0018768305890262,0.070491418242455]],[[0.11087952554226,-0.063276670873165,0.10673832893372],[-0.01364513207227,-0.038930103182793,-0.16601863503456],[-0.12139029055834,-0.088838323950768,0.090875573456287]],[[0.096327491104603,-0.089437142014503,0.052879191935062],[0.084014803171158,-0.059720411896706,-0.1019304022193],[-0.08798947930336,-0.11456716805696,0.14738318324089]],[[-0.0065954970195889,-0.013759363442659,-0.10126011073589],[0.0035218307748437,0.018690336495638,0.038642141968012],[0.23832176625729,-0.033215522766113,-0.021599071100354]],[[0.021424222737551,-0.031713243573904,-0.02309394069016],[-0.06627943366766,-0.15299108624458,0.066487461328506],[-0.0037734562065452,0.053987588733435,0.096512176096439]],[[0.02405721321702,0.054309085011482,0.10584969818592],[-0.086954273283482,-0.17097516357899,0.014618565328419],[-0.0063313185237348,0.068084426224232,0.070169530808926]],[[0.0204724855721,0.07016059756279,-0.072477951645851],[-0.022685406729579,-0.12454588711262,0.12681537866592],[0.012260214425623,-0.001319776289165,0.042365152388811]],[[-0.22296069562435,0.064712345600128,-0.074698977172375],[-0.15327432751656,-0.083238132297993,-0.14449581503868],[0.18286257982254,-0.0056364149786532,0.075887188315392]],[[-0.029909752309322,-0.092932060360909,-0.19620138406754],[-0.049586463719606,0.012338768690825,0.019846361130476],[0.033267829567194,0.12063798308372,-0.092747338116169]],[[-0.07048037648201,-0.18573641777039,0.068698279559612],[0.091908536851406,0.025446074083447,0.050016015768051],[-0.033402591943741,-0.11619201302528,0.042412653565407]],[[-0.07035718858242,-0.076853729784489,-0.055969204753637],[0.073963224887848,0.078402020037174,-0.060744047164917],[0.031056826934218,0.029472388327122,0.05679040402174]],[[-0.047894570976496,0.071367785334587,0.017586866393685],[-0.026045076549053,-0.21560578048229,0.17140352725983],[0.058754324913025,-0.1492837369442,0.0081871561706066]],[[-0.046562377363443,-0.016449857503176,0.094954624772072],[0.013004753738642,-0.010340519249439,-0.11640122532845],[0.050818212330341,-0.030074363574386,-0.02903813123703]],[[-0.080243043601513,-0.12294986844063,0.19404426217079],[-0.037013813853264,-0.16282054781914,-0.021788939833641],[-0.14530819654465,-0.11416228860617,-0.054590113461018]]],[[[-0.32545280456543,-0.021911608055234,0.11366909742355],[-0.32156199216843,-0.064686134457588,-0.0096344351768494],[0.12943011522293,-0.15082468092442,-0.15236504375935]],[[-0.057836685329676,0.0474026016891,0.12055531144142],[-0.050804652273655,0.025078693404794,-0.026692597195506],[-0.066523857414722,-0.070946723222733,0.058789897710085]],[[-0.10971783101559,0.1040420383215,-0.095330856740475],[-0.012658645398915,0.018992807716131,0.03130853921175],[-0.024078041315079,-0.19886554777622,0.18537768721581]],[[0.020090052857995,-0.031235387548804,0.041770234704018],[0.050862360745668,0.048401467502117,-0.13609118759632],[-0.18423409759998,-0.030713219195604,0.0054203453473747]],[[0.097542785108089,-0.14651292562485,0.034646183252335],[-0.10894867777824,0.054925046861172,-0.054940745234489],[-0.027110757306218,-0.024828920140862,-0.051304835826159]],[[-0.0021499302238226,0.070292763411999,-0.064607404172421],[0.012024136260152,-0.0093240290880203,-0.061093643307686],[0.016173399984837,0.17604242265224,-0.12350815534592]],[[-0.057019367814064,-0.00039891808410175,-0.15547129511833],[0.0064853127114475,0.0065905228257179,-0.061241302639246],[-0.10781986266375,-0.31946867704391,0.052485316991806]],[[-0.080452054738998,-0.059631656855345,0.05524118617177],[-0.15000240504742,-0.1285403072834,0.033911556005478],[-0.017876030877233,0.10618901252747,0.017053976655006]],[[0.1276444196701,-0.051464285701513,-0.044032301753759],[0.051723096519709,0.028697058558464,-0.095013231039047],[0.0029409669805318,-0.20270128548145,0.081292368471622]],[[-0.17020666599274,0.04027996212244,0.043817892670631],[-0.15238285064697,0.21906526386738,-0.0059925764799118],[-0.015059009194374,0.09245777130127,0.12214869260788]],[[0.042712017893791,-0.029341312125325,-0.14257051050663],[-0.00019669445464388,-0.012602110393345,-0.0048721423372626],[-0.078149750828743,-0.03339284658432,0.094631046056747]],[[0.068052396178246,-0.026197802275419,0.095353968441486],[0.034272603690624,-0.20447753369808,0.0044900705106556],[-0.031845904886723,0.0072662243619561,0.11498114466667]],[[-0.032182328402996,0.087977856397629,0.06049820035696],[-0.051776390522718,-0.060450255870819,-0.083471342921257],[-0.22234289348125,-0.23325438797474,-0.028841488063335]],[[0.0073988125659525,-0.024429384618998,-0.28531736135483],[0.21761962771416,-0.23555985093117,-0.21608392894268],[0.044782366603613,-0.048482950776815,-0.095064491033554]],[[0.1429588496685,0.047483064234257,0.0021702041849494],[-0.053495436906815,0.1042954325676,-0.0077444817870855],[-0.057099681347609,-0.00065103621454909,0.066520065069199]],[[-0.058472909033298,0.068260885775089,-0.0550532117486],[-0.035679828375578,0.11791288107634,0.05303106456995],[-0.070062786340714,-0.0056986389681697,0.052939724177122]],[[0.038687508553267,0.090554654598236,-0.079520344734192],[-0.019741605967283,0.1624938249588,0.066994994878769],[0.083369709551334,0.062321159988642,0.056859001517296]],[[-0.14423963427544,-0.073796167969704,-0.033772051334381],[-0.13388019800186,0.0052984105423093,0.10792128741741],[-0.2054608464241,0.03986956551671,-0.11519499123096]],[[0.010819902643561,0.16504260897636,0.042512223124504],[0.02113739028573,0.13548927009106,-0.014563585631549],[0.066470459103584,-0.044577673077583,0.044037036597729]],[[-0.0066060665994883,-0.02842285297811,-0.13910780847073],[-0.044631153345108,-0.030193330720067,-0.044886443763971],[-0.082095041871071,0.032920882105827,-0.0046793203800917]],[[-0.10988064110279,0.0045808814466,-0.019185844808817],[-0.025359960272908,-0.026738604530692,0.089944899082184],[-0.19713182747364,0.074343547224998,0.10860583931208]],[[0.1148337200284,0.037518117576838,-0.11309970170259],[-0.022860130295157,0.0025503071956336,-0.057392857968807],[0.003063184209168,-0.020823609083891,0.14128270745277]],[[-0.14962139725685,0.044467378407717,0.03310938179493],[-0.06029087677598,0.072931453585625,-0.001420873682946],[-0.14207780361176,0.076935619115829,-0.019352300092578]],[[-0.022811664268374,-0.027959827333689,-0.12327919155359],[0.029252417385578,-0.044706080108881,-0.0055184573866427],[-0.081210367381573,0.072936043143272,-0.11406966298819]],[[-0.036620888859034,0.029529931023717,-0.0085988296195865],[0.01575399748981,-0.10484930872917,-0.055411327630281],[0.014383939094841,0.041718389838934,-0.010066376999021]],[[-0.020007058978081,-0.10378937423229,0.045656606554985],[-0.004564561881125,-0.21691992878914,-0.0573117621243],[0.03541412204504,-0.098580256104469,0.041339781135321]],[[-0.013090853579342,0.08820416778326,0.012622858397663],[0.056483764201403,-0.098236925899982,-0.01081567350775],[0.090906970202923,0.099477365612984,0.11883653700352]],[[0.025396414101124,0.11862021684647,0.045566312968731],[-0.076439142227173,0.12475145608187,-0.019021227955818],[0.081480763852596,0.14475049078465,-0.050273761153221]],[[0.072286829352379,-0.039457388222218,0.15892511606216],[-0.054749958217144,-0.12942035496235,-0.063149005174637],[0.016827890649438,-0.0043309610337019,0.038346696645021]],[[0.079517245292664,-0.11498202383518,0.012854542583227],[0.004150886554271,-0.180694013834,-0.11789128929377],[-0.031847640872002,-0.17800880968571,0.16030822694302]],[[-0.11683086305857,0.065904185175896,0.14106848835945],[0.079630918800831,-0.14394918084145,0.11724508553743],[0.039557006210089,-0.061875257641077,0.023485988378525]],[[0.088329881429672,-0.1449997574091,0.040004335343838],[0.020553162321448,-0.073672279715538,0.14693358540535],[0.053351376205683,-0.29270601272583,0.13305874168873]]],[[[0.063562333583832,-0.000689948850777,0.029569271951914],[-0.08329901099205,-0.043887048959732,-0.058450777083635],[0.027049480006099,0.016015496104956,0.0078297117725015]],[[0.0130116334185,-0.013198454864323,-0.040545258671045],[0.020330972969532,0.12185340374708,0.068382322788239],[-0.1408284008503,-0.0096067609265447,0.15056695044041]],[[0.15292648971081,-0.068882070481777,0.024784907698631],[-0.094171665608883,-0.0026363239157945,0.040151618421078],[-0.0683518871665,0.056528180837631,-0.019624231383204]],[[0.10098816454411,0.021038673818111,-0.03975472971797],[-0.029598278924823,0.011354718357325,-0.023217126727104],[0.14880369603634,0.030911900103092,-0.027083029970527]],[[0.026210319250822,-0.035502526909113,0.10285998880863],[0.12973013520241,0.0034948699176311,0.14861840009689],[0.15086930990219,-0.14021168649197,0.050652880221605]],[[-0.047722846269608,-0.14348615705967,-0.094182267785072],[-0.075941607356071,-0.073850095272064,-0.081177748739719],[-0.024449596181512,-0.016010340303183,0.020320478826761]],[[-0.0077009657397866,0.00028392058447935,-0.091144077479839],[0.079383969306946,-0.12669095396996,-0.027432084083557],[0.18195153772831,-0.035815298557281,0.087489530444145]],[[-0.10425539314747,0.068615488708019,0.0058297198265791],[0.066584624350071,-0.0022853517439216,-0.022920586168766],[-0.001158906146884,-0.033426154404879,0.082690939307213]],[[-0.057903375476599,0.052618972957134,0.010729697532952],[-0.074456639587879,-0.055299412459135,0.065516948699951],[0.024720069020987,0.063026592135429,-0.001839678036049]],[[0.082775212824345,0.010170239955187,-0.054185349494219],[0.0088055552914739,0.11516496539116,-0.026488227769732],[0.070025458931923,0.004748712759465,0.067683555185795]],[[0.046301748603582,0.074744381010532,0.089153081178665],[-0.068487510085106,-0.0310670863837,0.026160456240177],[0.0034430301748216,-0.056300260126591,-0.028528397902846]],[[0.10586751252413,0.057190224528313,-0.07685199379921],[-0.0050914459861815,-0.019933069124818,-0.033119358122349],[-0.063024573028088,0.050099354237318,-0.029938163235784]],[[0.012196928262711,-0.11348301172256,0.018609894439578],[-0.061717100441456,0.067349344491959,0.040189910680056],[-0.0048239240422845,0.11077381670475,-0.045545481145382]],[[-0.021584175527096,-0.0059052789583802,-0.14298352599144],[0.030755665153265,0.034989923238754,-0.053351946175098],[0.0038206586614251,-0.026663437485695,0.038425132632256]],[[0.018218364566565,0.018622128292918,0.085481345653534],[0.070066764950752,-0.085073098540306,-0.066133104264736],[0.0031097531318665,-0.070404469966888,-0.026112897321582]],[[0.054753020405769,0.036068368703127,-0.082551471889019],[0.0087207220494747,-0.0045443372800946,0.053293377161026],[-0.07272719591856,-0.010416996665299,0.046825651079416]],[[-0.045505672693253,0.019152443856001,-0.22721043229103],[0.12007869035006,-0.05967415496707,-0.038967300206423],[-1.3933989976067e-05,-0.070879578590393,0.04001758992672]],[[0.076796635985374,0.068385317921638,0.049344029277563],[0.10238502919674,0.10824424773455,-0.016310730949044],[-0.012606567703187,0.10443052649498,0.091963529586792]],[[0.081625394523144,-0.01040733512491,-0.041673224419355],[0.059487126767635,-0.024409029632807,0.056767750531435],[0.053494889289141,-0.046557832509279,-0.0085145542398095]],[[0.068503692746162,-0.0012443824671209,0.095798194408417],[0.010433088988066,-0.079725883901119,-0.021692249923944],[0.018155926838517,-0.049463458359241,0.10126487165689]],[[-0.027001060545444,0.030681302770972,0.1030690446496],[-0.088724829256535,-0.044663101434708,-0.062914088368416],[0.13029237091541,0.050919968634844,-0.049492124468088]],[[-0.079236708581448,-0.10908872634172,-0.005142162553966],[0.2397563457489,0.042851850390434,0.021532818675041],[-0.17385986447334,-0.13376969099045,0.092712417244911]],[[0.1226207986474,0.12999829649925,-0.01476644910872],[-0.14853627979755,0.048526383936405,-0.0677654966712],[-0.010729144327343,-0.0064818137325346,-0.056085359305143]],[[-0.042757019400597,0.0994533598423,0.11783856898546],[0.052188664674759,0.012345424853265,-0.13424454629421],[-0.042974855750799,0.06674886494875,0.030228652060032]],[[0.038527395576239,0.083041198551655,-0.13463996350765],[0.030514355748892,-0.07271571457386,0.065445400774479],[0.049801766872406,-0.14116980135441,0.11368878930807]],[[0.031902018934488,0.0035803790669888,0.073932528495789],[0.063119396567345,0.014763319864869,-0.063722282648087],[-0.044218141585588,-0.085235647857189,-0.023635553196073]],[[0.0023185210302472,0.064510971307755,-0.00062380672898144],[-0.0098722279071808,-0.0048392913304269,0.078975446522236],[-0.072373680770397,0.082428872585297,-0.071021944284439]],[[-0.018161104992032,-0.091698698699474,0.010659821331501],[0.067421108484268,0.085526682436466,-0.050469126552343],[0.098279163241386,-0.069625005125999,-0.05273313075304]],[[0.06079863011837,-0.11216712743044,-0.062950782477856],[0.18736980855465,-0.055527787655592,0.095959082245827],[-0.020185532048345,0.046490777283907,-0.14429149031639]],[[-0.033924046903849,0.0024053230881691,0.0066062496043742],[-0.030961476266384,0.059860832989216,0.026368236169219],[-0.033785700798035,-0.078229069709778,0.032961897552013]],[[-0.057411905378103,0.053961560130119,-0.041395258158445],[-0.0010981908999383,-0.052781153470278,0.066281907260418],[0.025761371478438,0.020063987001777,0.0085567692294717]],[[-0.053515963256359,0.037407428026199,-0.068488106131554],[-0.10827673226595,0.084955267608166,0.035664964467287],[-0.078280307352543,0.15098349750042,0.0056110806763172]]],[[[-0.11338436603546,0.08925524353981,-0.15146458148956],[0.18483190238476,0.02350609190762,-0.042370554059744],[0.26846832036972,-0.11817468702793,-0.042728461325169]],[[0.098636455833912,0.069123908877373,0.10669907182455],[0.082229346036911,-0.055221647024155,-0.027680456638336],[-0.006093327421695,-0.052000388503075,0.1116151958704]],[[-0.041665267199278,-0.06683199852705,-0.015142619609833],[0.0027378271333873,0.081428989768028,-0.027341861277819],[0.0086123216897249,0.085169672966003,0.034506510943174]],[[-0.1752777248621,-0.10962872952223,0.12790143489838],[-0.026712356135249,-0.051197856664658,-0.16343094408512],[-0.32638451457024,-0.1205775141716,-0.15752716362476]],[[0.074474588036537,-0.015637431293726,0.10374586284161],[0.093825027346611,0.01588911563158,0.03230281919241],[-0.015494487248361,-0.11873955279589,-0.058416184037924]],[[-0.074271969497204,-0.092288345098495,-0.12528657913208],[-0.072626709938049,-0.044905871152878,0.11671689897776],[-0.046218082308769,-0.014941395260394,-0.095380589365959]],[[-0.126897752285,-0.02094447799027,0.038453064858913],[0.0039768451824784,0.00049539317842573,-0.0803282558918],[0.061362165957689,-0.20085589587688,-0.019592141732574]],[[-0.03165153041482,-0.080755770206451,0.025134766474366],[-0.065083220601082,-0.08007900416851,-0.10658375173807],[0.17351476848125,-0.063552238047123,0.034529764205217]],[[-0.059924591332674,0.14546053111553,-0.062685400247574],[-0.14489941298962,0.0077755684033036,-0.011714971624315],[-0.16357386112213,-0.053246423602104,0.15202377736568]],[[0.10414607077837,0.041335981339216,-0.14531819522381],[-0.050286009907722,-0.11138538271189,0.12548163533211],[0.0245430637151,-0.19692429900169,0.08191754668951]],[[0.058880984783173,0.16934889554977,0.075591132044792],[0.049695190042257,-0.12051916867495,-0.20917424559593],[-0.066714234650135,-0.093062549829483,-0.21549512445927]],[[0.10840356349945,-0.028717733919621,0.017745723947883],[0.092417828738689,0.056159552186728,-0.1222772449255],[0.022341663017869,0.043798957020044,-0.12330881506205]],[[0.27650848031044,-0.041849039494991,0.0085058100521564],[0.12327658385038,-0.04098379611969,0.26391020417213],[0.12652504444122,0.0024688416160643,-0.65038526058197]],[[-0.016105221584439,0.10382571816444,0.0078341653570533],[-0.054179817438126,-0.023693831637502,0.10322800278664],[0.056209743022919,0.088677495718002,-0.058743521571159]],[[-0.15413242578506,0.20922665297985,0.078439235687256],[0.012746505439281,-0.19691394269466,-0.36874830722809],[-0.16378602385521,-0.13317663967609,0.29953366518021]],[[-0.028982520103455,0.11043445765972,0.051194045692682],[-0.036834873259068,-0.012113712728024,-0.039255861192942],[0.067145206034184,-0.065420247614384,-0.097017399966717]],[[-0.050825342535973,0.10426495224237,-0.072857119143009],[-0.083815276622772,-0.025587249547243,-0.019322337582707],[0.014648557640612,-0.029271874576807,0.12187844514847]],[[0.09479246288538,-0.10050491243601,-0.27075764536858],[-0.079913407564163,-0.33426055312157,-0.23995104432106],[0.11734729260206,-0.013516697101295,-0.18000644445419]],[[0.02564156614244,-0.10219254344702,-0.088289469480515],[-0.045438516885042,-0.060585498809814,-0.026947159320116],[0.068640999495983,0.21141661703587,0.017389602959156]],[[0.022773029282689,-0.026647010818124,0.12164735794067],[0.042087480425835,-0.062577337026596,-0.069916807115078],[0.038201604038477,-0.038453098386526,-0.045113652944565]],[[-0.025752123445272,0.005375178065151,-0.092997401952744],[0.080201834440231,0.0043787662871182,0.01095274835825],[0.13930398225784,-0.1448225826025,-0.11925906687975]],[[-0.14055642485619,-0.032825440168381,-0.0040883314795792],[-0.11146619170904,-0.07941272854805,0.040132135152817],[0.0097208535298705,-0.079757653176785,0.074352703988552]],[[-0.050901044160128,-0.13669946789742,-0.03648392111063],[-0.056351490318775,-0.17662978172302,-0.16445446014404],[0.19439116120338,-0.1276431530714,0.1378328204155]],[[0.063928410410881,0.07249553501606,-0.042185939848423],[0.10247037559748,-0.06468454003334,-0.067366622388363],[-0.11467313766479,-0.020790452137589,0.044853143393993]],[[0.030500147491693,-0.11650162935257,0.024823550134897],[0.070001848042011,-0.11672988533974,-0.10415969789028],[-0.023761864751577,0.13328176736832,0.10282279551029]],[[-0.017554868012667,-0.053715892136097,0.023695768788457],[-0.11366184800863,-0.0012433900265023,-0.044634036719799],[-0.082316994667053,-0.11536405235529,0.067345932126045]],[[-0.19774995744228,0.072762049734592,-0.42441111803055],[-0.055633351206779,-0.27121043205261,-0.074596680700779],[0.057695563882589,-0.14824253320694,0.05954697728157]],[[0.28748208284378,0.0035061619710177,-0.033140651881695],[-0.090265363454819,-0.39289343357086,-0.091858275234699],[0.0061270459555089,0.14554452896118,0.037645187228918]],[[0.20321327447891,0.036268100142479,-0.0094698704779148],[0.063992060720921,-0.22146892547607,-0.025480799376965],[0.10197491198778,0.0073371529579163,-0.010655340738595]],[[-0.034948129206896,0.013197510503232,-0.0070362063124776],[-0.16067241132259,0.0061982753686607,-0.012437383644283],[-0.094143092632294,-0.09851898252964,0.072256796061993]],[[-0.029684623703361,0.2962161898613,-0.12275361269712],[0.039513051509857,-0.19444255530834,-0.16499048471451],[0.074944190680981,-0.066968135535717,-0.10359581559896]],[[-0.055888671427965,0.043738253414631,-0.0020630022045225],[-0.07486666738987,-0.18532928824425,-0.14764262735844],[0.04962083697319,0.027360673993826,-0.085920728743076]]],[[[0.26709920167923,-0.096434719860554,0.0037050016690046],[-0.10131385922432,-0.28274363279343,0.003823549952358],[-0.17116615176201,0.18996793031693,0.052364453673363]],[[-0.064332351088524,-0.010425040498376,-0.041565448045731],[0.071851670742035,0.057805895805359,-0.019018651917577],[0.092895239591599,0.055045399814844,-0.076452225446701]],[[-0.008550594560802,-0.036920204758644,-0.021234320476651],[-0.1042827963829,0.091262273490429,-0.0051294029690325],[0.011896518059075,0.017833126708865,0.021852020174265]],[[0.032328266650438,0.015585678629577,0.0055335201323032],[-0.23100410401821,-0.11411838233471,0.045324083417654],[-0.11378168314695,-0.037440564483404,0.041718021035194]],[[0.088695511221886,0.20146039128304,0.11720494925976],[0.018345791846514,0.011945016682148,-0.14775463938713],[0.02826164290309,0.074710041284561,-0.047524593770504]],[[0.061216857284307,-0.12185180187225,0.15929684042931],[-0.15423965454102,-0.24443475902081,0.066317394375801],[0.05727269127965,-0.001516995835118,0.21610908210278]],[[0.061145167797804,-0.24041357636452,-0.0011932868510485],[0.011537862941623,0.01125514972955,0.016072971746325],[0.041285693645477,-0.056507281959057,0.026400471106172]],[[-0.0012199605116621,0.056976940482855,0.0049281520769],[-0.09210005402565,0.16732110083103,0.067219376564026],[0.054297901690006,-0.31987655162811,0.011643016710877]],[[-0.059141263365746,-0.026633622124791,0.031476076692343],[-0.03609960898757,-0.0845727622509,0.04205272719264],[-0.072684206068516,0.040260173380375,0.013369764201343]],[[0.048489812761545,-0.021877782419324,0.031497623771429],[0.10283783078194,-0.056225709617138,0.031342089176178],[-0.066436849534512,-0.23829686641693,-0.069594897329807]],[[-0.21012289822102,0.050317972898483,0.026336235925555],[-0.11773862689734,0.099680155515671,-0.017879007384181],[-0.0094865188002586,0.12395118921995,0.033228404819965]],[[0.029652437195182,-0.045496802777052,-0.10775793343782],[-0.15390717983246,0.061619628220797,0.062188323587179],[-0.044600363820791,0.063110060989857,-0.0016419043531641]],[[-0.064665429294109,0.048362355679274,0.0065530417487025],[0.047470595687628,-0.03241066262126,-0.0043272715993226],[0.045435320585966,0.0075651472434402,-0.21334628760815]],[[-0.033920686691999,-0.038229379802942,-0.082796655595303],[-0.20003196597099,-0.013808941468596,-0.011057727970183],[0.045489922165871,0.22294840216637,0.34412476420403]],[[0.049259301275015,-0.26623925566673,-0.017763627693057],[-0.11505274474621,-0.22959437966347,-0.27838778495789],[-0.012163333594799,-0.10535024106503,0.066186644136906]],[[-0.068867139518261,-0.015600254759192,-0.027755539864302],[0.031664568930864,-0.034407429397106,-6.029728683643e-05],[-0.011200090870261,0.055700082331896,0.10812659561634]],[[-0.00035431829746813,-0.16583068668842,0.039600569754839],[-0.15760488808155,-0.15665365755558,-0.026983950287104],[-0.00062837853329256,-0.1149363592267,-0.026345413178205]],[[0.021441264078021,-0.0063152625225484,-0.01630543731153],[-0.023189278319478,-0.083346769213676,0.032567240297794],[0.15128760039806,-0.044922728091478,-0.21590116620064]],[[-0.16588854789734,-0.18463030457497,-0.14243000745773],[-0.065679050981998,-0.15937431156635,0.14642906188965],[0.04506029933691,0.083673723042011,0.13561457395554]],[[0.14278617501259,0.039493393152952,-0.068718910217285],[0.11445458978415,-0.22040429711342,0.044551741331816],[0.04818731546402,-0.037114590406418,0.12223787605762]],[[-0.043763011693954,0.082657672464848,-0.056848648935556],[-0.013031750917435,-0.0199288520962,0.056491121649742],[0.017581390216947,-0.044005688279867,-0.20157918334007]],[[-0.11233430355787,-0.026689229533076,-0.063781976699829],[-0.039583258330822,0.12409161031246,0.16444005072117],[-0.036629550158978,-0.0023990655317903,-0.082344532012939]],[[0.082789815962315,0.001095627900213,-0.040094170719385],[0.070945657789707,0.090553589165211,0.016408760100603],[-0.16278949379921,-0.068647600710392,-0.025017529726028]],[[0.1808297932148,-0.015656122937799,0.030957002192736],[-0.0082614086568356,-0.16544714570045,0.043281815946102],[0.14869956672192,-0.21787068247795,0.11606243252754]],[[-0.073057755827904,-0.096510715782642,-0.081408731639385],[0.17150111496449,0.048227313905954,0.037058439105749],[-0.033680528402328,0.046783458441496,0.081049434840679]],[[-0.092696964740753,0.12922322750092,0.00068344554165378],[0.11600326746702,0.034067511558533,-0.074422836303711],[-0.015802443027496,0.088778242468834,0.086296938359737]],[[-0.17092098295689,0.049734406173229,0.087384521961212],[-0.073460482060909,0.055695872753859,0.066991910338402],[0.0092525295913219,-0.014321799390018,0.059079427272081]],[[-0.098488576710224,-0.18050456047058,-0.060707204043865],[-0.034799601882696,-0.099198624491692,0.010503428988159],[-0.065237633883953,-0.076186493039131,0.075436525046825]],[[-0.11615214496851,-0.0032061678357422,-0.094533704221249],[-0.083017148077488,0.0047515765763819,0.03300903365016],[-0.020788485184312,0.18396762013435,0.092589169740677]],[[0.050878696143627,0.0079156588762999,0.002671888563782],[0.014707700349391,0.02185020968318,0.026907864958048],[-0.076905809342861,-0.065450802445412,-0.057336773723364]],[[0.10017014294863,-0.048100091516972,-0.068060360848904],[-0.30580896139145,-0.099976286292076,-0.084757529199123],[0.028314912691712,0.0025025107897818,0.045322269201279]],[[-0.035813003778458,-0.0070349578745663,-0.021757535636425],[-0.080443173646927,0.027262458577752,-0.055362828075886],[-0.064314529299736,-0.030422508716583,-0.12689927220345]]]],"nOutputPlane":32,"kW":3,"kH":3,"bias":[-0.0026041497476399,0.077446632087231,-0.047297861427069,0.0022955257445574,0.040826551616192,0.00065080152126029,0.0062742820009589,-0.019301529973745,0.072285123169422,-0.024208294227719,0.011355210095644,-0.0094241518527269,-0.0023409076966345,-0.010293655097485,0.074343860149384,-0.025132851675153,0.025404704734683,-0.03433284163475,-0.0020207504276186,-0.050917603075504,0.013147708959877,-0.036662396043539,-0.024414304643869,-0.00050778541481122,-0.01091155782342,-0.0035636734683067,-0.10031608492136,0.0023825995158404,-0.049779001623392,-0.12880624830723,-0.0049671921879053,0.016454314813018],"nInputPlane":32},{"weight":[[[[-0.021283071488142,-0.13618849217892,-0.12190587818623],[0.0036923189181834,-0.069371558725834,-0.18179956078529],[0.010163690894842,0.085158571600914,0.023769814521074]],[[0.021638048812747,-0.039287637919188,-0.026817835867405],[-0.045664101839066,-0.083133473992348,0.17592835426331],[0.074613496661186,0.056593336164951,-0.0020271358080208]],[[-0.027045007795095,-0.019020564854145,-0.010793653316796],[-0.20083671808243,0.059710670262575,0.11149515211582],[0.036664612591267,-0.0023269583471119,-0.03476832434535]],[[-0.041916660964489,-0.039217989891768,-0.051377557218075],[-0.11767449229956,0.012675259262323,0.02986097894609],[-0.024778611958027,0.021793236956,0.11842633038759]],[[-0.034380830824375,-0.056207306683064,0.036716032773256],[-0.08913416415453,0.026955559849739,0.007702003698796],[-0.031422268599272,0.065863907337189,0.097642131149769]],[[-0.10646644979715,-0.010336666367948,-0.17887327075005],[0.034730583429337,-0.13639502227306,0.11400298774242],[-0.14617608487606,-0.095566436648369,0.045081112533808]],[[-0.054449167102575,0.085047192871571,-0.10966452211142],[-0.099478237330914,-0.16861110925674,0.0086109582334757],[0.17020075023174,0.083163753151894,0.044255528599024]],[[-0.057326789945364,-0.11052712798119,-0.02319810166955],[-0.0673748254776,-0.18533281981945,0.033290430903435],[-0.095012806355953,0.033087585121393,0.049723133444786]],[[-0.0039183697663248,-0.018529141321778,-0.066762208938599],[0.011743077076972,-0.090909898281097,-0.013390764594078],[0.10038346797228,0.0065055205486715,0.054755453020334]],[[-0.085900396108627,0.16132858395576,0.037231542170048],[0.18074049055576,0.040306061506271,0.044032257050276],[-0.14048585295677,-0.084709286689758,0.050272140651941]],[[0.025507535785437,0.058606069535017,-0.16682371497154],[0.01657422631979,0.0078937746584415,-0.07367579638958],[0.00087602419080213,0.010368858464062,0.024257715791464]],[[0.041521277278662,0.10527929663658,-0.13868774473667],[-0.035727825015783,-0.12171552330256,-0.06765753030777],[0.097829051315784,0.035799719393253,0.066665105521679]],[[-0.014738376252353,0.15022470057011,-0.085644513368607],[-0.13627453148365,0.0038476923946291,0.22085852921009],[0.11047602444887,0.13146352767944,0.095638118684292]],[[-0.055149275809526,0.12364811450243,-0.087184056639671],[0.026297818869352,0.032422445714474,-0.064721018075943],[-0.08652526140213,-0.094158925116062,-0.012622486799955]],[[0.021457348018885,-0.062195047736168,-0.095374085009098],[-0.024187905713916,0.024022022262216,0.020873967558146],[0.13414607942104,-0.0039260457269847,-0.0090105626732111]],[[0.08479268103838,0.10177457332611,-0.068137504160404],[0.016553124412894,-0.08800633251667,-0.017892515286803],[0.13379755616188,-0.026240916922688,0.026869565248489]],[[0.035617806017399,-0.096328347921371,-0.081069521605968],[0.01409016083926,0.012718117795885,-0.0018081307644024],[-0.092851467430592,-0.0610809661448,-0.033320281654596]],[[-0.065596453845501,-0.089752271771431,-0.076507814228535],[-0.052702490240335,-0.016479011625051,0.0090280026197433],[0.0023622331209481,0.034707650542259,0.043935041874647]],[[-0.10980091243982,-0.21938057243824,-0.023345738649368],[-0.14832966029644,-0.13583485782146,0.091125592589378],[-0.11887380480766,-0.028214750811458,0.063752636313438]],[[-0.025204604491591,0.043022859841585,-0.13646820187569],[-0.096031799912453,-0.001697568455711,-0.031101118773222],[-0.02017811127007,0.05691722035408,0.090336263179779]],[[-0.011991986073554,-0.05669018253684,-0.16288316249847],[0.050427846610546,-0.080153465270996,0.013229142874479],[0.07205855846405,0.063704319298267,-0.037947662174702]],[[-0.03208077326417,-0.065974682569504,0.13608281314373],[-0.15672387182713,0.18653167784214,0.13973225653172],[-0.017538335174322,0.013657605275512,0.090750940144062]],[[0.013879930600524,-0.12738810479641,0.025479396805167],[-0.1327408850193,-0.13551619648933,0.19279924035072],[-0.028965890407562,0.054112430661917,0.14789025485516]],[[-0.14111489057541,-0.079757981002331,-0.11476630717516],[-0.015041061677039,0.011381386779249,-0.064980357885361],[0.1975961625576,0.15936289727688,-0.025773977860808]],[[0.027809264138341,0.031894151121378,-0.13332653045654],[-0.02698715031147,-0.038329131901264,-0.086183078587055],[0.11727789789438,0.1895308047533,-0.06735698133707]],[[-0.15636312961578,-0.053237974643707,0.020455395802855],[0.072107307612896,0.083575189113617,-0.067877635359764],[-0.083644732832909,0.082762628793716,-0.076030686497688]],[[0.058182030916214,-0.024528531357646,0.056165628135204],[0.069655016064644,-0.11524725705385,-0.063323475420475],[-0.063432015478611,0.062299355864525,0.037523046135902]],[[0.045294497162104,0.046394389122725,0.013292667455971],[-0.022200170904398,0.19266919791698,0.057808768004179],[-0.076127603650093,0.017922818660736,-0.16077318787575]],[[0.057283706963062,-0.15890583395958,-0.25730574131012],[-0.076269797980785,-0.17534628510475,0.031500596553087],[0.064915098249912,0.0050154998898506,0.012414893135428]],[[0.070444986224174,-0.032774638384581,-0.096849292516708],[-0.031354159116745,0.034084927290678,-0.077310532331467],[0.06323828548193,-0.023610169067979,-0.011895797215402]],[[-0.17785322666168,-0.12303067743778,0.07566411793232],[0.095515713095665,0.0069462163373828,-0.13086387515068],[0.039761804044247,0.075913295149803,0.06726611405611]],[[-0.063616372644901,-0.088983647525311,-0.084868185222149],[-0.02314162440598,-0.018742235377431,-0.14334611594677],[-0.036999113857746,0.024184627458453,-0.048656608909369]]],[[[-0.057173892855644,0.044880222529173,-0.017301704734564],[0.025801666080952,-0.05491066724062,-0.075894474983215],[-0.036221172660589,-0.022175062447786,-0.021396290510893]],[[0.056045632809401,0.056418675929308,-0.01361184194684],[0.081629745662212,0.063745073974133,-0.039834000170231],[0.0040040030144155,-0.058859303593636,-0.026510216295719]],[[0.064597368240356,0.039636593312025,-0.091787092387676],[0.090575151145458,0.091435886919498,-0.11259789764881],[-0.062405161559582,0.034002512693405,-0.12871789932251]],[[-0.087982274591923,-0.1142286658287,-0.077721707522869],[0.0791075527668,0.069325387477875,-0.08080480992794],[0.055189870297909,-0.030603131279349,-0.076065443456173]],[[-0.026417100802064,-0.027370307594538,0.013504162430763],[-0.04708768799901,-0.089442625641823,0.034887380897999],[0.00069101637927815,-0.0087915454059839,-0.073803633451462]],[[0.018631272017956,0.013085550628603,-0.047212891280651],[0.048607230186462,-0.034536216408014,0.049593392759562],[0.1301421970129,0.059867456555367,-0.082818396389484]],[[0.082000233232975,0.081824488937855,-0.042077414691448],[-0.074939608573914,-0.10465477406979,-0.11662118136883],[0.1159838065505,0.21305868029594,0.047523207962513]],[[-0.025834824889898,-0.00034333544317633,0.062866017222404],[-0.0385497584939,-0.18919017910957,0.14595110714436],[-0.087256215512753,-0.13637189567089,0.11417159438133]],[[0.079356662929058,-0.075984813272953,-0.022475549951196],[0.046371217817068,0.094200633466244,-0.056401968002319],[0.06713043898344,-0.028555981814861,0.052389614284039]],[[-0.052765868604183,0.013420953415334,0.17977398633957],[-0.080246970057487,0.043806318193674,0.10251244157553],[0.082831412553787,-0.11633797734976,-0.060344319790602]],[[0.0084083722904325,0.085415944457054,0.007390464656055],[0.025940151885152,0.024373304098845,0.054127227514982],[0.12384433299303,-0.020021099597216,0.045979682356119]],[[-0.045925818383694,-0.08005940169096,0.097874872386456],[-0.02895681001246,-0.12602922320366,-0.072966575622559],[-0.013520205393434,-0.043876960873604,0.01629926264286]],[[-0.051721546798944,-0.096320629119873,-0.0090235527604818],[0.03337162733078,-0.083861850202084,0.097568474709988],[0.096005208790302,-0.056103803217411,-0.01256915088743]],[[-0.060173403471708,0.083462633192539,0.09284171462059],[-0.16393332183361,-0.01374885533005,0.037180576473475],[-0.07090400159359,0.053249228745699,0.084878645837307]],[[-0.084124185144901,-0.081673488020897,0.025527372956276],[-0.055166516453028,0.061885870993137,0.048258479684591],[-0.13962981104851,0.05487509444356,0.026626450940967]],[[0.078129798173904,0.069067262113094,-0.015939818695188],[-0.018938602879643,-0.039627447724342,-0.074058532714844],[0.011599724180996,-0.076843813061714,0.046457149088383]],[[-0.014702267944813,-0.060220092535019,0.014930218458176],[-0.029023315757513,-0.087905146181583,-0.025850696489215],[0.072339966893196,0.082343697547913,-0.042609445750713]],[[0.057046752423048,0.029951309785247,0.027810653671622],[0.095809660851955,-0.13022178411484,-0.10780929774046],[0.086050279438496,-0.040969476103783,0.014055715873837]],[[0.010579674504697,-0.13852748274803,0.083726160228252],[0.062589690089226,-0.14883613586426,0.051937088370323],[0.021428039297462,-0.27414789795876,-0.13658338785172]],[[0.085869625210762,0.13845294713974,0.063383102416992],[0.079839251935482,0.06179765611887,-0.068215042352676],[0.064892925322056,-0.084546886384487,0.040992576628923]],[[0.1190937384963,-0.1044414639473,0.056201294064522],[0.099226623773575,-0.035511683672667,0.051122657954693],[0.14731062948704,-0.22191628813744,-0.098750464618206]],[[-0.001262936508283,0.058061018586159,0.16884495317936],[-0.04421079531312,0.12141813337803,-0.013675450347364],[-0.22095669806004,-0.0017464874545112,0.064755700528622]],[[0.10619293898344,-0.031123021617532,-0.013600523583591],[-0.074159488081932,-0.086625464260578,-0.09119663387537],[0.032328944653273,0.074452012777328,-0.0080992095172405]],[[0.059542495757341,-0.029509672895074,0.012023163959384],[-0.050315890461206,0.022101689130068,-0.02847507968545],[-0.043388210237026,0.022427273914218,-0.01955047622323]],[[-0.061580911278725,0.0054938085377216,0.02055586501956],[-0.086403965950012,-0.041803255677223,0.10419029742479],[-0.074695415794849,-0.14825098216534,-0.0925387814641]],[[0.033276084810495,-0.019737556576729,0.030664166435599],[-0.079006999731064,-0.16564244031906,-0.056333657354116],[0.052964523434639,-0.0055007161572576,-0.060774948447943]],[[0.017261037603021,-0.031979236751795,0.0050315777771175],[0.08946081250906,-0.01853334903717,-0.063872173428535],[0.052172098308802,-0.063907861709595,-0.025311749428511]],[[-0.11769545823336,0.14563435316086,0.044904842972755],[0.029450286179781,0.078038923442364,0.1287043094635],[-0.049299165606499,0.094754971563816,-0.085243128240108]],[[0.034399759024382,-0.0022383579052985,-0.023401524871588],[-0.0045943860895932,0.049886278808117,-0.072362214326859],[-0.014008811675012,0.13637529313564,-0.035470310598612]],[[0.20866665244102,-0.16270911693573,-0.014458467252553],[0.13031750917435,-0.1153479218483,0.073249444365501],[0.11150746047497,-0.10085882246494,-0.17892257869244]],[[-0.18596187233925,-0.029717713594437,0.10162824392319],[0.02640132047236,-0.013248640112579,0.021827729418874],[-0.061723191291094,-0.045299787074327,0.092626661062241]],[[-0.11269153654575,0.0068689216859639,-0.027076357975602],[-0.010392917320132,-0.073220483958721,0.052436746656895],[-0.0050151022151113,-0.00080982892541215,0.0025595619808882]]],[[[-0.029235057532787,-0.021252557635307,-0.095396302640438],[-0.19409489631653,-0.13864263892174,0.077306665480137],[0.021167168393731,-0.088500417768955,0.015214434824884]],[[-0.058169506490231,0.033656045794487,-0.020689368247986],[0.098340921103954,-0.058901526033878,0.020842416211963],[-0.13816252350807,0.033464290201664,0.070169322192669]],[[0.0030170106329024,-0.16614082455635,0.26348638534546],[0.17364643514156,0.095606982707977,-0.12907680869102],[-0.10224162042141,-0.2252261787653,-0.32516035437584]],[[0.10216087847948,0.047391448169947,-0.12299270927906],[0.027924548834562,-0.032484568655491,-0.092708118259907],[-0.037870340049267,0.0038308084476739,-0.098990879952908]],[[-0.045465037226677,-0.079815067350864,0.05002548545599],[-0.0039281793870032,0.051099695265293,-0.089565701782703],[0.033038385212421,0.014592678286135,0.0068472395651042]],[[0.14928430318832,-0.054721374064684,-0.19629755616188],[-0.075919285416603,0.092226088047028,0.033495031297207],[0.069903500378132,0.10672502219677,0.099771939218044]],[[-0.13638105988503,0.032242711633444,-0.060933880507946],[0.02808459289372,0.024109531193972,0.076041370630264],[-0.086413167417049,-0.021378478035331,0.019538598135114]],[[-0.12149188667536,-0.066752232611179,-0.093995407223701],[-0.15861314535141,0.0053460798226297,-0.12933245301247],[0.044316630810499,-0.030270559713244,-0.16058538854122]],[[-0.02660701982677,0.08010395616293,0.055159013718367],[0.043765351176262,0.018642826005816,-0.092738807201385],[-0.035657353699207,-0.032961953431368,0.015932243317366]],[[-0.043046347796917,0.0023313849233091,0.16823598742485],[-0.11030343919992,-0.030480217188597,0.01449824962765],[-0.06911738216877,-0.048404544591904,-0.11931005865335]],[[-0.030274080112576,-0.043745514005423,-0.084523357450962],[0.0067017101682723,0.035723142325878,-0.018649730831385],[-0.11559613794088,-0.054782461374998,-0.043099869042635]],[[0.14263921976089,0.027482353150845,-0.0073278597556055],[0.065186575055122,-0.072407811880112,0.060572441667318],[-0.29904001951218,-0.044879708439112,-0.11848614364862]],[[0.039435885846615,0.070390783250332,-0.15241859853268],[0.0036287354305387,-0.14941568672657,-0.021152367815375],[0.050378806889057,-0.099664486944675,0.11474768817425]],[[0.075011007487774,-0.0018172716954723,-0.040491715073586],[-0.11638313531876,-0.040102906525135,0.050984062254429],[0.036811649799347,-0.08973790705204,-0.0048128445632756]],[[0.049856185913086,-0.060443088412285,0.053529758006334],[0.0095275668427348,0.05741324275732,0.048098489642143],[-0.032763604074717,-0.07399682700634,-0.0078861135989428]],[[-0.093648642301559,-0.052700381726027,0.0019837394356728],[-0.016593862324953,0.13266286253929,-0.25149691104889],[-0.15682335197926,-0.15400582551956,0.11039886623621]],[[-0.051200237125158,-0.017387494444847,-0.099244952201843],[-0.006464384496212,0.0016401610337198,-0.043966520577669],[0.036150202155113,0.10973891615868,-0.028001355007291]],[[-0.015480453148484,0.032866090536118,0.028557831421494],[0.062156289815903,-0.12032814323902,-0.1039506867528],[0.010326700285077,0.11781003326178,-0.0047231167554855]],[[-0.055083464831114,-0.086123637855053,0.015254780650139],[-0.027692016214132,-0.042555451393127,-0.078742355108261],[-0.038107879459858,-0.1042830273509,0.049052249640226]],[[0.048453703522682,-0.090994872152805,0.14694835245609],[-0.037807207554579,-0.049383018165827,0.019398309290409],[-0.010839086957276,-0.047167763113976,-0.047114495187998]],[[0.062994658946991,-0.085741020739079,-0.0019632061012089],[-0.019112788140774,0.19966439902782,-0.020296156406403],[-0.11479499191046,-0.095811605453491,-0.024918058887124]],[[0.018210157752037,-0.023809807375073,0.05936224386096],[0.032854612916708,0.10305640101433,-0.076542548835278],[-0.091513246297836,-0.14864429831505,-0.14301700890064]],[[-0.10992331057787,0.11693182587624,0.071997255086899],[-0.11861751228571,-0.11678320169449,-0.197419911623],[-0.10212036967278,-0.084121234714985,-0.011872939765453]],[[0.029690820723772,-0.10594956576824,0.014030426740646],[-0.12099204957485,-0.17153905332088,-0.17946754395962],[-0.15185004472733,-0.018469719216228,0.0073553649708629]],[[-0.0073314025066793,-0.064756624400616,0.052193578332663],[0.0075864098034799,0.017576785758138,-0.024694828316569],[0.076557539403439,-0.15754260122776,-0.13961414992809]],[[0.006232928019017,-0.20139816403389,-0.11924317479134],[-0.054216150194407,-0.17067876458168,0.035922203212976],[0.063591241836548,0.16896341741085,0.0072313160635531]],[[-0.0096728457137942,-0.0029862618539482,-0.051604930311441],[-0.08342556655407,0.093333035707474,0.018566001206636],[0.037060644477606,-0.029949398711324,-0.027915673330426]],[[0.027696259319782,-0.049196813255548,0.034387994557619],[0.065753005445004,-0.16028399765491,0.028701519593596],[-0.01791082136333,0.011501306667924,0.22460949420929]],[[-0.07319749891758,-0.023762505501509,0.0028510103002191],[-0.049824230372906,0.057428173720837,-0.018867027014494],[-0.040170069783926,-0.29655641317368,-0.089484609663486]],[[0.004988569766283,-0.11989632248878,-0.072381131350994],[0.034183219075203,0.0086636459454894,-0.022793915122747],[0.066937558352947,-0.016490049660206,0.089122124016285]],[[0.080654583871365,-0.045841876417398,-0.26173481345177],[-0.087446823716164,0.016889207065105,0.041926585137844],[0.015225529670715,0.17427724599838,-0.15549363195896]],[[0.044283702969551,0.17118769884109,0.032927181571722],[-0.079746410250664,-0.32312524318695,-0.16235753893852],[-0.085360080003738,-0.012981435284019,0.076370790600777]]],[[[-0.076170168817043,-0.061673473566771,-0.026435302570462],[-0.082511685788631,-0.18499191105366,-0.083029605448246],[0.11364244669676,0.13528300821781,0.027423175051808]],[[-0.058289729058743,0.03202373534441,0.089527383446693],[-0.065196946263313,-0.056450814008713,0.056829296052456],[-0.043990381062031,-0.01388050056994,0.089436359703541]],[[0.065574370324612,0.085806004703045,-0.16689915955067],[0.094305247068405,0.031170243397355,-0.060044832527637],[-0.020424963906407,0.16064721345901,-0.18918178975582]],[[-0.03818641602993,-0.04164694994688,-0.059395849704742],[-0.085262164473534,0.00097973155789077,0.02921668253839],[0.055294990539551,0.01955384761095,0.075051575899124]],[[0.017527315765619,-0.018486205488443,-0.040891755372286],[0.026388809084892,-0.011318706907332,-0.013230110518634],[0.073116235435009,0.068809047341347,0.0053684236481786]],[[0.065566554665565,-0.11249732226133,-0.042065225541592],[-0.048986323177814,0.02835907228291,-0.03661522269249],[-0.007817791774869,0.19964134693146,-0.036039222031832]],[[-0.019125029444695,0.065340429544449,-0.035330023616552],[0.047610148787498,0.0018976101418957,0.11969593912363],[-0.12755089998245,-0.10002519190311,0.016875363886356]],[[-0.034004908055067,0.050691656768322,0.1031808257103],[-0.026171490550041,-0.052483413368464,0.14792311191559],[0.034540113061666,0.08281896263361,0.064973808825016]],[[-0.099597588181496,-0.072909787297249,-0.017279213294387],[0.046764608472586,-0.0015009399503469,0.13366840779781],[0.012226817198098,-0.032859787344933,-0.0080182058736682]],[[0.045186076313257,-0.03668512403965,-0.1527905613184],[-0.01059359870851,0.0062027531675994,0.033566933125257],[0.069864593446255,0.011812108568847,-0.04302004352212]],[[-0.035414528101683,-0.033929251134396,0.079596102237701],[-0.0023124972358346,-0.096828125417233,-0.090355359017849],[-0.056904323399067,-0.16990901529789,-0.060109164565802]],[[0.088138021528721,0.059826124459505,0.0030460325069726],[-0.093087449669838,-0.047886051237583,-0.025892490521073],[0.065230563282967,-0.037252027541399,0.061399456113577]],[[0.053343221545219,-0.1087758243084,0.11731457710266],[-0.0032845775131136,-0.017919288948178,-0.076980069279671],[0.014928963035345,-0.0036192559637129,0.02386068366468]],[[0.024068512022495,0.10351190716028,0.10271262377501],[-0.010039242915809,-0.040715251117945,0.055396664887667],[0.086847051978111,-0.043952062726021,0.0077772131189704]],[[0.03169459477067,-0.092348344624043,0.10965528339148],[-0.1012209430337,0.036589104682207,0.0065590185113251],[0.078248962759972,-0.048223108053207,-0.048868704587221]],[[-0.062453094869852,-0.034818306565285,0.075241394340992],[-0.13359241187572,0.018217327073216,0.065124809741974],[-0.018714400008321,0.013199168257415,0.041631560772657]],[[-0.027160435914993,0.056949146091938,0.097702853381634],[-0.030543992295861,0.016266070306301,-0.034021358937025],[0.03617449849844,0.06744484603405,-0.022827964276075]],[[-0.062898136675358,-0.059195764362812,0.072259590029716],[0.051082260906696,-0.0090224053710699,0.024548692628741],[-0.074930518865585,-0.075878612697124,0.19146656990051]],[[0.030522663146257,0.0045582414604723,0.10734862834215],[-0.01474096160382,-0.11515857279301,0.061830449849367],[0.13746683299541,0.083847932517529,-0.029341889545321]],[[-0.0077313417568803,-0.078528024256229,0.05065705999732],[0.13741056621075,0.070958867669106,0.040036890655756],[0.068006619811058,-0.10252353549004,0.10198192298412]],[[-0.076077908277512,0.024793041869998,-0.048273704946041],[-0.071219108998775,-0.026049144566059,0.037827715277672],[-0.011221269145608,0.042253017425537,-0.033248156309128]],[[0.069141082465649,0.015194520354271,-0.107282102108],[-0.022094724699855,0.052551116794348,-0.074215233325958],[0.17228172719479,0.077200695872307,-0.076405212283134]],[[-0.0085358386859298,-0.0050233365036547,-0.026046520099044],[0.055837921798229,-0.01423785276711,0.030620751902461],[0.061701036989689,0.035410702228546,-0.0691824182868]],[[-0.086007036268711,-0.12249912321568,0.072097815573215],[-0.05201818421483,-0.091176226735115,0.079518899321556],[-0.050587117671967,-0.043777067214251,0.10772342979908]],[[-0.14338034391403,0.040462609380484,-0.02909198962152],[-0.19743433594704,-0.13191691040993,-0.032576404511929],[0.019912542775273,0.025046084076166,0.036204021424055]],[[0.013652984984219,0.011373263783753,0.046241752803326],[0.022534837946296,-0.065807916224003,0.056645419448614],[0.092464677989483,0.12911914288998,0.045192021876574]],[[-0.022618876770139,-0.0076202712953091,-0.075191847980022],[0.095872960984707,0.0091324718669057,-0.005236379802227],[-0.010615488514304,-0.11105071008205,0.094303376972675]],[[-0.033373594284058,0.16855923831463,-0.22450450062752],[-0.12210626900196,0.13450859487057,0.116419441998],[0.013490278273821,0.068544588983059,-0.10658896714449]],[[-0.020510379225016,0.070303484797478,0.096092067658901],[0.06278308480978,-0.0065814922563732,-0.013348130509257],[-0.039672005921602,-0.020795490592718,0.040544595569372]],[[0.061910312622786,0.0467139929533,-0.145701572299],[0.024561792612076,0.064254105091095,-0.043728996068239],[0.056656368076801,-0.043693333864212,-0.043649345636368]],[[0.15545873343945,0.040704265236855,-0.10001263767481],[-0.0095488475635648,0.067217648029327,-0.097338370978832],[0.0029087427537888,0.0083541311323643,-0.029451161623001]],[[-0.12254963815212,-0.15054459869862,-0.036292914301157],[-0.078386172652245,-0.045661844313145,-0.040416065603495],[-0.043764781206846,-0.05612750723958,0.10963337123394]]],[[[0.072647072374821,0.0018567705992609,0.031851630657911],[-0.084062933921814,-0.071967855095863,-0.05121686309576],[-0.054841972887516,-0.15748052299023,-0.052788715809584]],[[-0.081208676099777,0.024927781894803,0.061756797134876],[0.025834115222096,-0.013807914219797,0.049810457974672],[0.039666101336479,-0.023472225293517,-0.033115271478891]],[[0.12214210629463,-0.077204510569572,-0.021389415487647],[0.14083704352379,0.10117366909981,0.052527375519276],[0.042376633733511,0.0029230664949864,-0.026844531297684]],[[0.025931118056178,0.075704127550125,0.057250402867794],[-0.13211737573147,-0.0019245112780482,-0.017369443550706],[-0.10078512132168,-0.084705710411072,0.012300946749747]],[[-0.025790184736252,0.04325245320797,-0.019142827019095],[-0.041486032307148,0.082610256969929,-0.074314326047897],[0.064906723797321,-0.034265615046024,-0.009319786913693]],[[-0.094713091850281,0.097697898745537,-0.13505005836487],[-0.0066551743075252,0.070925377309322,-0.099155932664871],[0.10165530443192,0.042538437992334,0.17153123021126]],[[-0.12859830260277,-0.057956136763096,-0.049572303891182],[0.091169238090515,-0.1300635188818,0.079062812030315],[0.010542614385486,0.0023749489337206,-0.02764654904604]],[[0.018092880025506,-0.068838469684124,0.14452786743641],[-0.035432904958725,-0.16406947374344,-0.034622523933649],[-0.093122057616711,-0.17432001233101,-0.017886931076646]],[[0.034431435167789,0.0081176869571209,0.018169330433011],[-0.066568076610565,0.0079797180369496,-0.053513664752245],[-0.082717761397362,-0.068966820836067,-0.092380180954933]],[[-0.021970313042402,0.012045360170305,0.17019610106945],[-0.046729311347008,0.071174092590809,-0.027278298512101],[-0.020967993885279,0.13064150512218,0.044773254543543]],[[-0.072261586785316,0.011246494948864,0.15232042968273],[-0.10859136283398,-0.043747797608376,0.012010578066111],[0.099609732627869,-0.11179211735725,-0.068033508956432]],[[0.046599101275206,-0.010162737220526,0.0091748693957925],[-0.047973323613405,0.10808258503675,0.0092347972095013],[0.001924539799802,0.069959834218025,-0.016412297263741]],[[0.057860258966684,0.14000418782234,-0.096162885427475],[-0.072610899806023,0.0012884195894003,-0.12449752539396],[-0.10980599373579,-0.091480381786823,-0.10337482392788]],[[0.06286197155714,0.0051711103878915,0.076555281877518],[-0.075302422046661,-0.10045978426933,-0.058712791651487],[-0.143889144063,-0.22169969975948,-0.0054568229243159]],[[0.071315847337246,-0.033940903842449,0.043082270771265],[-0.0071331229992211,-0.021586704999208,0.056927885860205],[0.013960954733193,-0.045230492949486,0.057175107300282]],[[0.047212094068527,0.13336801528931,-0.17313912510872],[0.084585212171078,-0.012526114471257,-0.015582879073918],[-0.017585933208466,-0.16673435270786,-0.035331845283508]],[[-0.054270356893539,0.019442183896899,-0.052782762795687],[-0.02368214353919,-0.068269349634647,0.10530766099691],[0.10368469357491,-0.06529001891613,-0.080359421670437]],[[-0.034361708909273,0.14282901585102,-0.03886166587472],[0.055335279554129,-0.096872366964817,0.047595668584108],[-0.10074019432068,-0.009057592600584,0.0015229218406603]],[[0.11864711344242,0.064113490283489,0.10001624375582],[0.018428951501846,-0.0083973556756973,-0.042056154459715],[-0.13342426717281,-0.098200380802155,-0.098935201764107]],[[0.092093802988529,0.092616863548756,0.13309042155743],[-0.075069487094879,0.064168192446232,-0.0078774532303214],[-0.052346311509609,-0.12636455893517,-0.048269242048264]],[[0.11056654155254,0.12760849297047,0.077098533511162],[-0.068970181047916,-0.14802633225918,-0.031011650338769],[-0.099467359483242,-0.0043886946514249,-0.17092932760715]],[[-0.12339419126511,-0.090866580605507,0.080011278390884],[0.11372103542089,0.09923343360424,-0.00033860717667267],[0.059777218848467,0.036089457571507,0.065627112984657]],[[-0.073866300284863,0.02869638428092,-0.10566176474094],[0.060175117105246,-0.056392762809992,0.024422999471426],[-0.11305287480354,-0.0059537007473409,-0.023916017264128]],[[0.093118153512478,0.033984251320362,0.052469208836555],[0.029835809022188,0.084197357296944,0.012370012700558],[0.055534657090902,-0.018289787694812,-0.13555175065994]],[[-0.086889185011387,-0.049475196748972,-0.19956104457378],[-0.15943205356598,0.090848907828331,-0.11154828220606],[-0.13820877671242,-0.10041215270758,-0.2036469578743]],[[-0.028058398514986,0.0035315256100148,0.017961475998163],[0.0096135782077909,0.029181206598878,-0.031832858920097],[-0.060157664120197,-0.047180835157633,0.068315543234348]],[[-0.11309356242418,0.041334800422192,-0.097823522984982],[0.04648295417428,0.0021527549251914,0.02565704472363],[-0.06822270154953,0.10580123215914,-0.064263835549355]],[[-0.027189038693905,-0.11367616802454,-0.11969786137342],[0.095690377056599,0.031268812716007,-0.040698114782572],[0.064966693520546,0.0818927064538,0.15784175693989]],[[0.058449182659388,0.012123366817832,0.057647086679935],[-0.03456100448966,0.00021023178123869,0.062314160168171],[-0.045022960752249,-0.093551144003868,-0.047223906964064]],[[0.035404838621616,0.021407425403595,0.054604951292276],[-0.0058620735071599,-0.031552709639072,0.012135700322688],[0.093683868646622,-0.13113196194172,0.013977061025798]],[[0.0042948005720973,0.0019891255069524,0.033827289938927],[0.0043130880221725,-0.099922515451908,0.1467682570219],[-0.12406440079212,-0.018032604828477,-0.055567849427462]],[[-0.037089571356773,-0.088598638772964,0.03430076315999],[0.03236173838377,-0.033262956887484,-0.02198901027441],[-0.044544849544764,-0.041715878993273,0.029933990910649]]],[[[-0.17227528989315,-0.040470011532307,-0.25477677583694],[-0.074743784964085,0.025249108672142,-0.093508839607239],[0.019620226696134,-0.16299676895142,-0.028888443484902]],[[-0.027316596359015,0.014385753311217,0.052713554352522],[-0.062149073928595,-0.014057889580727,-0.10248844325542],[0.076563999056816,-0.022269636392593,0.053815472871065]],[[-0.19383746385574,0.1972953081131,-0.22525873780251],[0.25689914822578,-0.1647774130106,-0.020193915814161],[-0.16541723906994,-0.041035227477551,0.043114081025124]],[[-0.081401847302914,0.014734028838575,-0.059995993971825],[0.057849187403917,-0.19407895207405,-0.026758700609207],[-0.02429836243391,-0.039637170732021,-0.092941366136074]],[[0.00024647143436596,-0.012731798924506,-0.029942862689495],[0.091557241976261,-0.060188561677933,-0.094779156148434],[-0.01886129565537,-0.010266128927469,-0.032227244228125]],[[0.12505181133747,-0.20199918746948,0.028475496917963],[-0.073733828961849,0.0074430368840694,0.17730785906315],[-0.12815716862679,0.082854256033897,-0.2645959854126]],[[-0.097241975367069,-0.15645270049572,-0.04417934268713],[0.11387352645397,-0.25194779038429,0.13112027943134],[-0.018101565539837,-0.24851036071777,0.070553921163082]],[[-0.031487334519625,-0.10941793769598,-0.012468829751015],[-0.051371674984694,0.045430015772581,-0.05244405195117],[-0.019173685461283,-0.13022089004517,0.064566664397717]],[[0.075495764613152,-0.047869239002466,0.077920272946358],[-0.033668406307697,-0.02424780279398,-0.048042025417089],[0.035137392580509,0.11730233579874,0.062582761049271]],[[0.07803488522768,-0.12284023314714,0.08603597432375],[-0.060740575194359,0.016724888235331,0.005250119138509],[-0.11135906726122,0.0039945747703314,-0.15613907575607]],[[0.11206839233637,-0.27586448192596,-0.039716351777315],[-0.10057378560305,0.059439729899168,-0.0032692162785679],[-0.081620164215565,-0.1257663667202,0.12989813089371]],[[-0.08277852088213,-0.083848640322685,0.046393014490604],[0.072120204567909,-0.045498676598072,-0.0936119556427],[0.058654475957155,0.011497059836984,0.072543889284134]],[[0.09311643242836,-0.02900779992342,0.040658712387085],[-0.067677050828934,-0.1050760447979,-0.11467409878969],[0.27518942952156,-0.049863670021296,0.13677340745926]],[[0.17667573690414,-0.014617645181715,0.014319005422294],[-0.019307345151901,-0.19938053190708,0.093783430755138],[-0.12502245604992,-0.036878008395433,-0.18717004358768]],[[-0.072944723069668,0.023156512528658,-0.018217992037535],[-0.083116978406906,0.064546495676041,0.0094175152480602],[0.13613313436508,-0.076815769076347,-0.028362885117531]],[[-0.01212200243026,-0.043991088867188,-0.14238649606705],[-0.2404690682888,-0.17527686059475,0.13766711950302],[0.09843822568655,0.12149755656719,-0.2734195291996]],[[0.031083665788174,-0.0044052083976567,0.024775823578238],[-0.12412666529417,0.062344584614038,-0.028807993978262],[0.060720853507519,-0.065122038125992,-0.014253520406783]],[[-0.054861530661583,0.080571882426739,-0.18622618913651],[-0.087247662246227,-0.032907970249653,-0.28208380937576],[0.15420992672443,0.05768895149231,-0.057150300592184]],[[0.11029074341059,-0.1151729747653,0.032448135316372],[-0.077829621732235,0.011460315436125,-0.10503091663122],[-0.035351678729057,-0.022229176014662,-0.080356806516647]],[[0.010650422424078,-0.11255570501089,-0.094982840120792],[-0.059181697666645,-0.17923019826412,-0.15382233262062],[-0.0099580977112055,0.037446517497301,-0.24444261193275]],[[0.057886756956577,-0.083844199776649,0.053727760910988],[0.023269271478057,-0.082628227770329,0.048662018030882],[-0.04653662070632,0.053196378052235,0.052321989089251]],[[-0.12371218949556,-0.17712907493114,0.21595659852028],[0.080830663442612,0.024017183110118,-0.081743597984314],[-0.20167474448681,-0.021990831941366,0.13541992008686]],[[0.19848184287548,-0.22379054129124,-0.26971170306206],[-0.21646454930305,-0.20651845633984,0.16620896756649],[-0.22021816670895,0.080029226839542,-0.17059607803822]],[[-0.025178639218211,-0.12123547494411,-0.18319036066532],[0.0048828958533704,-0.098205663263798,0.036986369639635],[0.10207602381706,-0.036343328654766,-0.15404817461967]],[[-0.0077424603514373,0.029977843165398,-0.13576485216618],[0.053083349019289,-0.10074792057276,0.012337964959443],[-0.15562142431736,0.020667992532253,-0.11487796157598]],[[0.19966875016689,-0.077113389968872,-0.095161452889442],[-0.26151716709137,-0.012648787349463,-0.19366955757141],[0.054340794682503,0.053904082626104,-0.020062210038304]],[[0.097908452153206,-0.083066284656525,-0.029984217137098],[-0.066788971424103,0.072513401508331,0.010820019990206],[-0.0366783849895,0.10015599429607,-0.016546463593841]],[[-0.039483554661274,-0.036792136728764,-0.077007658779621],[-0.06588264554739,-0.15680262446404,0.22886653244495],[0.12402115017176,-0.010616206564009,-0.14601276814938]],[[-0.095968373119831,0.010778360068798,0.088037580251694],[-0.0018252730369568,-0.03405249863863,-0.23072750866413],[-0.029646182432771,0.065078906714916,-0.1272224932909]],[[0.078326992690563,-0.12254613637924,0.0025767704937607],[-0.044392522424459,0.097581543028355,-0.078875705599785],[-0.0067997938022017,-0.052025306969881,-0.082510143518448]],[[0.21648700535297,-0.19937120378017,0.28830471634865],[-0.17254832386971,0.11265418678522,-0.051937606185675],[-0.26179480552673,-0.078998237848282,-0.094155997037888]],[[-0.076594725251198,-0.06551867723465,0.028422269970179],[-0.079709507524967,5.6916163885035e-05,-0.014017102308571],[-0.036121543496847,-0.031977288424969,-0.043487355113029]]],[[[-0.12259099632502,0.034556090831757,0.0093360198661685],[0.070779293775558,0.02149872481823,0.04253501817584],[0.00020897477224935,0.080580100417137,0.075018763542175]],[[-0.031583175063133,0.045797768980265,0.089605584740639],[0.015302648767829,-0.077570736408234,0.084288336336613],[-0.072236627340317,0.01033350545913,0.022778138518333]],[[0.15543627738953,-0.033537089824677,0.18898874521255],[0.023201614618301,-0.013153753243387,-0.10271628946066],[-0.074631035327911,0.01371662504971,-0.026698410511017]],[[0.10345857590437,0.061201736330986,-0.057146023958921],[0.025335446000099,0.07543458789587,0.043674726039171],[-0.095574833452702,-0.023296786472201,0.02497623860836]],[[0.11764390021563,0.081565104424953,0.13372655212879],[0.13472011685371,-0.056137710809708,0.051339156925678],[-0.059871986508369,-0.15049064159393,-0.06463348865509]],[[-0.03148801997304,-0.051484771072865,0.0024671254213899],[-0.0071688774041831,-0.066876977682114,0.082804337143898],[0.025533095002174,0.14066901803017,-0.070981100201607]],[[-0.14587506651878,-0.14069452881813,0.075767450034618],[0.050616260617971,0.0051568648777902,-0.058092430233955],[0.014928871765733,-0.01469502877444,-0.081457920372486]],[[-0.075683064758778,0.03691228851676,-0.047179762274027],[0.010854395106435,-0.17367096245289,-0.04969235509634],[0.034315783530474,-0.028857849538326,0.10361005365849]],[[-0.046837005764246,-0.086817167699337,0.052020385861397],[0.055959809571505,0.061575595289469,0.097512051463127],[-0.051594447344542,-0.12810482084751,-0.13094405829906]],[[0.1742141097784,-0.083637811243534,0.045632589608431],[-0.07218960672617,-0.076980225741863,-0.052153948694468],[-0.036867517977953,0.023748187348247,-0.031208919361234]],[[0.00081172568025067,-0.029222851619124,0.00026101496769115],[0.072688356041908,-0.046367798000574,-0.019935643300414],[0.051949888467789,-0.097990415990353,0.029051650315523]],[[0.14338813722134,-0.069230929017067,0.030222985893488],[0.077687010169029,-0.095503978431225,-0.0037931748665869],[0.10744039714336,-0.062845595180988,-0.13842388987541]],[[0.0058716554194689,0.024474747478962,-0.079442374408245],[0.042338792234659,-0.035709224641323,-0.043060727417469],[-0.0030518418643624,0.074030801653862,0.052298914641142]],[[0.060441039502621,-0.032203432172537,-0.13957305252552],[0.14120607078075,-0.088508404791355,-0.11695856601],[0.018762117251754,0.026626538485289,-0.1263008415699]],[[-0.046149488538504,0.09575042873621,0.029236061498523],[-0.038826018571854,-0.012611237354577,-0.0067261345684528],[-0.12392175942659,0.12069895863533,-0.02521781809628]],[[-0.09693481773138,-0.1092472076416,0.089199744164944],[0.099544063210487,-0.011606313288212,-0.034039217978716],[-0.10324191302061,0.048707939684391,-0.038797851651907]],[[-0.15088713169098,0.055723454803228,0.056187521666288],[-0.072104789316654,-0.0056131510064006,0.15424004197121],[0.079838044941425,-0.11209523677826,-0.053670767694712]],[[-0.0095638148486614,-0.012929655611515,-0.057245153933764],[0.0063757998868823,-0.010734360665083,0.086763173341751],[-0.054345648735762,-0.10175673663616,-0.052844621241093]],[[0.0014315268490463,-0.01164289470762,0.024111973121762],[0.059778466820717,-0.089423924684525,0.036063328385353],[-0.040217161178589,-0.11317591369152,-0.078476533293724]],[[0.010125322267413,0.093918785452843,-0.12766608595848],[-0.15409488976002,-0.042278051376343,-0.025422561913729],[-0.11673684418201,0.0023940436076373,0.14548119902611]],[[0.047919161617756,0.091004282236099,0.18838480114937],[-0.070842742919922,-0.033642664551735,-0.025589782744646],[-0.12121857702732,-0.20667047798634,-0.046346358954906]],[[0.094148851931095,0.11475435644388,-0.05848690867424],[-0.029213275760412,0.073998346924782,-0.043535366654396],[0.048438739031553,-0.15220767259598,0.21147875487804]],[[-0.10796866565943,-0.11363365501165,0.075586512684822],[-0.10619379580021,-0.11096703261137,0.051667287945747],[-0.024646103382111,0.2772136926651,-0.045844003558159]],[[0.010426520369947,-0.075538255274296,-0.056817837059498],[-0.072758711874485,-0.017781456932425,-0.09022581577301],[-0.098121799528599,-0.11761717498302,-0.042770218104124]],[[-0.13382123410702,0.051161546260118,0.068812176585197],[0.053239211440086,-0.021668313071132,0.02332578599453],[-0.063661903142929,0.027740528807044,0.0049833608791232]],[[0.16737349331379,-0.01468013972044,0.025047911331058],[0.0079718604683876,-0.068007200956345,-0.01769002713263],[-0.062490187585354,-0.040169663727283,-0.028955852612853]],[[0.059085424989462,-0.048027686774731,-0.02277460321784],[0.022324897348881,-0.0629817917943,0.022239040583372],[0.019597446545959,-0.015250127762556,-0.025570884346962]],[[-0.018049104139209,0.043428175151348,-0.027893081307411],[0.20794746279716,0.022938622161746,0.043547455221415],[-0.16671903431416,0.090721130371094,0.083733096718788]],[[0.025133388116956,-0.061130743473768,0.11054544895887],[0.065230004489422,0.065441377460957,-0.076053112745285],[0.024577647447586,-0.052649907767773,0.031347442418337]],[[0.14568904042244,-0.044890716671944,-0.063726790249348],[0.024412451311946,-0.012062630616128,-0.019326113164425],[0.050922229886055,-0.035680640488863,-0.041944064199924]],[[0.015537082217634,-0.17140470445156,0.027469510212541],[-0.043936900794506,0.070230759680271,-0.0091764498502016],[0.040229622274637,-0.11134044080973,0.10685337334871]],[[0.032339379191399,-0.024228433147073,0.0082160327583551],[-0.06709423661232,-0.10924425721169,-0.011616335250437],[-0.033520955592394,-0.089060634374619,-0.025953877717257]]],[[[0.078220933675766,0.030629675835371,-0.037245038896799],[0.15253446996212,-0.034222725778818,-0.037354309111834],[0.02330575324595,-0.016696307808161,-0.073611319065094]],[[-0.073908269405365,0.008003382012248,0.021830769255757],[-0.035235997289419,-0.0023233976680785,-0.0093373656272888],[0.013644002377987,-0.05328469350934,0.12763145565987]],[[-0.13999666273594,-0.027162304148078,0.026986539363861],[-0.078101068735123,0.16070477664471,0.20166271924973],[0.027442855760455,0.12660467624664,0.12910284101963]],[[0.081037744879723,0.046882871538401,-0.011498028412461],[0.045851532369852,0.029427567496896,-0.10528548061848],[-0.053117763251066,-0.1414759606123,-0.16251575946808]],[[-0.024616084992886,0.070654965937138,-0.080772623419762],[-0.019836151972413,0.10010863095522,0.095676578581333],[-0.13768719136715,-0.0604880861938,0.056947857141495]],[[-0.19062548875809,-0.08098391443491,0.059537053108215],[-0.081514067947865,-0.0028494202997535,0.032144851982594],[0.011958896182477,0.097077295184135,-0.0068633784539998]],[[0.044714063405991,0.10742731392384,-0.10526479035616],[0.0085598258301616,0.08006077259779,0.0048333033919334],[0.025655841454864,-0.043130945414305,0.01722676306963]],[[0.1073871999979,0.11352454125881,0.069804660975933],[-0.02450573630631,0.032178536057472,0.059606626629829],[-0.13329264521599,0.014206228777766,0.14359380304813]],[[0.029038827866316,-0.070597320795059,0.03249953314662],[-0.060733340680599,0.0032793630380183,0.03585410118103],[-0.02139668725431,-0.12414364516735,-0.0070670456625521]],[[0.050113815814257,0.013222924433649,-0.040055200457573],[-0.11761663109064,0.046464614570141,0.052474897354841],[-0.23060487210751,-0.031014023348689,-0.063286416232586]],[[-0.015240210108459,0.087001241743565,0.015250945463777],[0.053270690143108,0.14045345783234,-0.075085207819939],[0.089807316660881,0.018927084282041,-0.029632834717631]],[[0.077006384730339,0.014716063626111,-0.23125699162483],[-0.16209119558334,0.080387726426125,0.0098493713885546],[0.064391396939754,0.029891205951571,0.14483849704266]],[[0.067528530955315,0.019027046859264,0.020431499928236],[0.080433756113052,0.062707357108593,0.031198646873236],[0.088540092110634,-0.0096462201327085,0.014901241287589]],[[0.027091592550278,-0.077839881181717,-0.11020195484161],[-0.035161066800356,-0.0046543711796403,0.03716891631484],[-0.11915580928326,0.034328021109104,0.022077538073063]],[[0.15630383789539,-0.010697605088353,0.10274441540241],[-0.013844243250787,0.0082057425752282,-0.052951373159885],[-0.065152622759342,-0.043239910155535,-0.016103312373161]],[[0.066072560846806,-0.046783164143562,-0.029896372929215],[0.0084034604951739,0.062166787683964,0.0076463022269309],[0.050860799849033,-0.033289562910795,-0.13566048443317]],[[-0.03961743414402,0.095776833593845,0.07713208347559],[0.034768428653479,-0.010459979996085,-0.054727319628],[0.017894323915243,-0.080129943788052,0.051313098520041]],[[-0.013678161427379,0.1273347735405,0.06578753888607],[-0.023332396522164,-0.033330801874399,-0.079654574394226],[-0.010851535014808,0.098209418356419,-0.018673965707421]],[[0.098911084234715,-0.041443318128586,-0.10067608952522],[-0.058075949549675,-0.14417293667793,-0.013033339753747],[-0.06520688533783,0.03268862888217,-0.062609180808067]],[[0.039878696203232,-0.068285785615444,0.057366896420717],[0.092317461967468,-0.026053979992867,-0.080565579235554],[0.099269263446331,-0.17187628149986,-0.12732328474522]],[[0.10615312308073,-0.036157123744488,-0.071458004415035],[0.1210226342082,0.037726234644651,0.053954191505909],[-0.10972226411104,-0.069609291851521,0.0077457958832383]],[[-0.28465896844864,-0.077973000705242,0.054786089807749],[-0.034503974020481,0.13909268379211,0.0087048867717385],[-0.0081406673416495,0.032946284860373,0.1891154050827]],[[0.04660127684474,-0.088244058191776,-0.0030378305818886],[-0.044000595808029,0.0060113715007901,0.096533231437206],[-0.11487454921007,0.0067763100378215,-0.0042498162947595]],[[-0.0516377389431,-0.057215459644794,-0.085581161081791],[-0.078208923339844,-0.11555539816618,-0.083383031189442],[0.068321689963341,-0.028861341997981,-0.02836162224412]],[[-0.0055597294121981,-0.056171510368586,-0.0094427149742842],[-0.083268910646439,-0.012252498418093,0.031445190310478],[-0.038106635212898,-0.07927929610014,-0.13073337078094]],[[0.084613941609859,0.10249727964401,0.0085676172748208],[0.11527116596699,-0.0039507541805506,-0.021385218948126],[0.076619319617748,-0.16758677363396,-0.1445419639349]],[[-0.01466547511518,-0.092734657227993,0.00068706116871908],[-0.003254551673308,0.018616834655404,0.0013666757149622],[0.10595612227917,-0.047889098525047,-0.058588553220034]],[[-0.24267643690109,0.021917918697,0.022947898134589],[0.050659976899624,0.16038535535336,0.087326504290104],[-0.011088297702372,0.036218080669641,-0.012989826500416]],[[0.022979900240898,0.034995343536139,-0.066681072115898],[-0.040573488920927,-0.01235687546432,-0.14087170362473],[0.074665568768978,0.058275610208511,-0.070599585771561]],[[0.034050762653351,-0.0024435915984213,-0.034239027649164],[0.083590552210808,-0.027912586927414,-0.12796133756638],[0.065215259790421,0.018607623875141,0.015034656971693]],[[-0.001905145123601,-0.029885653406382,0.11223673820496],[0.092498615384102,0.041372254490852,0.021544774994254],[-0.03216589987278,-0.047842405736446,-0.031224677339196]],[[0.11572740972042,0.033685758709908,-0.02375746704638],[-0.035221941769123,0.026645381003618,-0.058939497917891],[-0.14875465631485,-0.067087650299072,-0.05059639364481]]],[[[0.02577742561698,0.043909773230553,0.098565265536308],[-0.010346551425755,-0.0359076410532,0.019207226112485],[-0.046308360993862,-0.12400081008673,0.032303184270859]],[[0.074886195361614,0.019861783832312,0.046448398381472],[0.095153950154781,0.058298274874687,0.038692586123943],[0.10814983397722,0.042744513601065,0.094669111073017]],[[-0.0021958469878882,-0.010276448912919,0.005919128190726],[0.012772297486663,0.0046164328232408,0.058368995785713],[-0.058282524347305,-0.028184898197651,0.0037894051056355]],[[0.031786743551493,0.044286511838436,0.031863674521446],[0.064151458442211,-0.0035419205669314,-0.076450280845165],[-0.041293516755104,-0.080791838467121,0.0088785858824849]],[[0.034584108740091,0.11376690119505,0.041361194103956],[0.042277365922928,0.076126240193844,0.061135698109865],[0.022379484027624,0.038549095392227,0.097760744392872]],[[0.020363237708807,0.014235036447644,0.01805404946208],[0.003227855078876,-0.022231819108129,-0.036661315709352],[-0.029815724119544,0.044043686240911,-0.009676375426352]],[[-0.041191007941961,0.029971776530147,-0.061011422425508],[0.044786226004362,0.0040315072983503,-0.038836788386106],[0.06363819539547,-0.0041563203558326,0.02639551833272]],[[-0.029729101806879,0.053381565958261,0.016722813248634],[0.015053087845445,-0.067319609224796,-0.065557077527046],[0.080333858728409,0.020703872665763,-0.016350688412786]],[[-0.033493038266897,-0.016572009772062,0.077105075120926],[0.0042174197733402,-0.0077122868970037,-0.0083817942067981],[-0.0028779737185687,0.012415734119713,0.012485015206039]],[[-0.11449169367552,-0.019593108445406,0.026984248310328],[-0.041157137602568,0.031073873862624,0.043022762984037],[0.064616799354553,-0.0081516019999981,-0.0091212671250105]],[[-0.033569078892469,0.031496170908213,-0.015186477452517],[0.018371360376477,-0.04065765812993,-0.042947921901941],[0.022688088938594,-0.034806683659554,0.0813202932477]],[[0.031027387827635,0.0047749276272953,-0.065870925784111],[0.017177624627948,-0.031962484121323,-0.0042229327373207],[0.02835470251739,-0.0084704086184502,0.041817981749773]],[[-0.0045760632492602,0.050047565251589,-0.017743477597833],[0.01275915838778,-0.00076504936441779,-0.072285152971745],[-0.044275168329477,0.096971280872822,0.056268651038408]],[[4.4063628592994e-05,-0.0025205821730196,0.022279769182205],[0.00041288314969279,-0.01749625056982,0.020424732938409],[-0.0027236142195761,-0.023900117725134,-0.0072061833925545]],[[0.045070718973875,-0.019869923591614,0.13388888537884],[0.0078325010836124,0.073408789932728,-0.0094382911920547],[0.085194461047649,0.039223346859217,0.064725950360298]],[[-0.039242640137672,-0.027055447921157,0.050060473382473],[0.02993074990809,0.0043576085008681,-0.010414709337056],[0.059047553688288,-0.03556302189827,-0.024600513279438]],[[-0.062218021601439,-0.027059189975262,0.055525273084641],[0.033074323087931,-0.001875712769106,-0.020160542801023],[0.10779045522213,-0.040883149951696,-0.049539748579264]],[[0.044752821326256,-0.081760741770267,-0.0078144669532776],[0.015293798409402,-0.0036165125202388,0.022517453879118],[0.012786319479346,0.0030731214210391,0.022666065022349]],[[0.0057468321174383,0.0064332210458815,0.044947165995836],[0.022229610010982,0.17665827274323,0.068180419504642],[-0.092718675732613,-0.09126103669405,-0.12268293648958]],[[0.076186023652554,-0.071513444185257,-0.031058862805367],[-0.049139320850372,-0.033192850649357,0.024339416995645],[-0.042516473680735,0.11511830985546,0.016686871647835]],[[0.055254697799683,0.18748526275158,0.087041676044464],[0.048910841345787,0.092134349048138,0.10796763002872],[0.088010229170322,0.14802224934101,0.14790174365044]],[[0.084205433726311,-0.067529007792473,0.035153917968273],[-0.035133350640535,-0.087529696524143,0.087493866682053],[0.020010897889733,-0.10698635876179,0.059671461582184]],[[0.029171893373132,0.0032117171213031,0.011197678744793],[-0.064146764576435,-0.0098061878234148,0.10437417030334],[0.010811720974743,-0.042082849889994,-0.030541781336069]],[[-0.058752719312906,-0.020971935242414,-0.00042594852857292],[0.067502625286579,-0.080730982124805,-0.13167415559292],[0.13889795541763,0.12690126895905,-0.043652698397636]],[[-0.062436498701572,-0.0040750056505203,-0.12433199584484],[0.037318505346775,0.033097356557846,0.068931967020035],[0.019217947497964,0.024619998410344,0.059271819889545]],[[0.021137818694115,-0.0046330573968589,-0.040716640651226],[-0.018990654498339,0.012888464145362,-0.049255296587944],[0.024759424850345,0.056003458797932,-0.00085285352542996]],[[-0.089356362819672,-0.11757097393274,-0.041767332702875],[-0.093049295246601,-0.10172661393881,-0.10602978616953],[-0.044623412191868,-0.14826574921608,-0.031734272837639]],[[0.0077831586822867,-0.051906365901232,0.029966333881021],[-0.0039268117398024,0.025693835690618,-0.056759785860777],[-0.072050027549267,0.029085822403431,0.074354812502861]],[[-0.0486164316535,0.036818336695433,0.044069670140743],[-0.084757149219513,0.022589391097426,0.040984150022268],[-0.068296901881695,-0.028309868648648,0.079893246293068]],[[-0.030259544029832,-0.065734907984734,-0.078511774539948],[-0.038971558213234,-0.13316679000854,-0.13660292327404],[-0.092797115445137,-0.11530024558306,-0.0066589168272913]],[[0.049270045012236,-0.017086671665311,-0.046622410416603],[0.024900145828724,-0.019330086186528,0.020864108577371],[-0.018258577212691,-0.0046748593449593,-0.0065864599309862]],[[0.064798526465893,0.10929678380489,-0.036970481276512],[0.10216381400824,-0.040723912417889,-0.080578282475471],[0.086027294397354,-0.13190546631813,-0.10400462150574]]],[[[-0.14002287387848,0.10305793583393,0.023551486432552],[0.048344366252422,-0.089708767831326,-0.088597394526005],[0.014332821592689,-0.010298791341484,-0.085582569241524]],[[-0.081103071570396,-0.060797192156315,0.075404420495033],[-0.022366298362613,0.022818598896265,0.10147418826818],[-0.041806384921074,-0.0074728894978762,0.12413292378187]],[[0.026512667536736,0.12588141858578,-0.081134848296642],[-0.0082393139600754,-0.075237706303596,0.037321578711271],[-0.043243765830994,0.12595519423485,0.048647079616785]],[[0.053801961243153,0.064774423837662,-0.073736317455769],[0.1033680588007,-0.013475156389177,-0.06056185439229],[-0.013016045093536,-0.0074753356166184,-0.053836420178413]],[[-0.086249873042107,-0.023295482620597,0.023116543889046],[0.040574554353952,0.028293032199144,0.056612268090248],[0.016523852944374,-0.0064555099233985,-0.047936286777258]],[[-0.11017529666424,-0.10515327006578,-0.029480779543519],[0.016914581879973,0.091343462467194,-0.025680186226964],[0.067552618682384,-0.048573832958937,0.014392862096429]],[[-0.14602142572403,-0.082782261073589,0.0036929491907358],[0.024404088035226,0.042746908962727,0.062173373997211],[-0.044946704059839,-0.013899939134717,-0.092683300375938]],[[0.054532460868359,-0.0098418537527323,-0.029199993237853],[-0.033175256103277,-0.082026764750481,-0.075020171701908],[-0.065307088196278,-0.017802746966481,-0.085137993097305]],[[0.022969104349613,-0.041241966187954,0.04261976853013],[-0.1525930762291,0.023297039791942,0.017043689265847],[0.065928503870964,-0.051469214260578,0.039140582084656]],[[-0.068230666220188,-0.085311748087406,0.019203182309866],[-0.0014493816997856,-0.16823448240757,-0.065800197422504],[-0.038267705589533,0.060282163321972,-0.043392904102802]],[[0.061689343303442,-0.11583106219769,0.043773643672466],[-0.024328777566552,-0.0041854581795633,0.056870978325605],[-0.0026248092763126,-0.035476975142956,0.025726586580276]],[[0.01723900064826,-0.040231294929981,0.036566782742739],[-0.012770434841514,-0.034091476351023,0.092315323650837],[0.045560192316771,0.010877097025514,-0.13412699103355]],[[0.037965517491102,0.031206235289574,-0.06804159283638],[-0.020112009719014,-0.0068603381514549,-0.032907146960497],[-0.029942879453301,-0.13025709986687,-0.016041953116655]],[[0.055516008287668,-0.076770976185799,-0.11322203278542],[-0.0088012693449855,-0.071357294917107,0.046274073421955],[0.046501044183969,-0.072054997086525,0.015896834433079]],[[-0.025617849081755,0.021733891218901,0.058637846261263],[-0.079667843878269,-0.075733676552773,-0.0483218729496],[0.0060717267915606,-0.021406318992376,0.012713525444269]],[[-0.15818491578102,-0.0044353441335261,0.024876531213522],[-0.088815800845623,0.016660749912262,0.067664556205273],[-0.065883740782738,0.02993224747479,0.026869220659137]],[[0.057833358645439,-0.0011161752045155,0.03420278057456],[-0.015332110226154,0.009094818495214,0.073393359780312],[0.040957093238831,0.05523419380188,-0.050074465572834]],[[-0.05403395742178,-0.074337035417557,-0.071845822036266],[-0.0088322106748819,0.027197727933526,-0.097887948155403],[-0.12107467651367,0.023514907807112,-0.039288144558668]],[[-0.082908220589161,-0.063516095280647,-0.032639320939779],[-0.083637624979019,-0.024528376758099,-0.12277171015739],[0.10502583533525,-0.12191636115313,-0.17393320798874]],[[-0.029432581737638,-0.020453941076994,-0.04780825227499],[0.075457952916622,0.027102557942271,0.045910619199276],[-0.034476980566978,0.05729004368186,0.071401715278625]],[[-0.019546929746866,-0.024886198341846,0.053506661206484],[-0.0251141525805,0.022173965349793,-0.0097708078101277],[-0.032677624374628,0.0019063454819843,0.086361810564995]],[[0.19324368238449,-0.11731874197721,-0.073506586253643],[-0.15743246674538,-0.12087109684944,-0.061621718108654],[-0.031374353915453,-0.033236689865589,0.090413294732571]],[[-0.033877748996019,-0.060823600739241,0.0017608961788937],[0.043973367661238,0.047833729535341,-0.027931975200772],[-0.015169905498624,-0.085542760789394,0.010367653332651]],[[-0.080394990742207,-0.062249552458525,-0.07862676680088],[0.0047222198918462,0.012501092627645,-0.16173696517944],[-0.18909284472466,-0.032459191977978,-0.024435201659799]],[[0.054979499429464,-0.073674820363522,0.011895234696567],[0.001874356996268,-0.051874574273825,0.083365939557552],[-0.025522911921144,-0.0014196914853528,0.012751820497215]],[[0.041088961064816,-0.034385111182928,-0.028961904346943],[0.07492670416832,0.073271907866001,-0.0077333566732705],[0.055653963238001,-0.0069212550297379,-0.019618889316916]],[[0.079602889716625,-0.12981466948986,0.019522598013282],[0.0043424046598375,0.020279621705413,-0.067964054644108],[0.024209702387452,0.040992740541697,0.0025092104915529]],[[0.046964600682259,0.0060319514013827,-0.11679220944643],[-0.099780082702637,0.03177934885025,-0.025241432711482],[-0.035192031413317,0.048043139278889,0.11778531968594]],[[0.07559834420681,-0.13854697346687,0.00036309281131253],[0.14013911783695,-0.22384130954742,0.0048869317397475],[-0.045828402042389,0.044419717043638,0.0015896025579423]],[[0.040345698595047,0.004366937559098,-0.12635123729706],[0.095876805484295,0.02120472677052,-0.1087765917182],[0.065836153924465,0.0018559239106253,-0.12578892707825]],[[0.034928284585476,-0.059899229556322,-0.080070346593857],[-0.017475634813309,0.0015536407008767,0.11549028009176],[-0.065525680780411,0.11239423602819,0.060132455080748]],[[-0.014602988958359,0.094752825796604,0.08102173358202],[-0.026227174326777,0.11080467700958,0.018270229920745],[0.011751372367144,-0.049946252256632,0.03589504212141]]],[[[0.07769101113081,-0.20319198071957,-0.10659679025412],[-0.017458284273744,-0.16290938854218,-0.028223969042301],[-0.065223708748817,-0.019452946260571,-0.015857517719269]],[[-0.12140388786793,0.014585685916245,-0.056768964976072],[0.058005653321743,-0.070403665304184,0.066640451550484],[-0.012495155446231,0.058633834123611,0.04496306180954]],[[0.034120183438063,0.023772140964866,0.014484010636806],[0.048834580928087,0.085246413946152,0.0012419146951288],[-0.15155367553234,0.073659099638462,0.019431579858065]],[[-0.005875435192138,0.014551322907209,-0.0018644176889211],[0.15727712213993,0.018027232959867,0.032100327312946],[-0.0014318478060886,-0.18892832100391,-0.037786290049553]],[[-0.11135194450617,0.11203374713659,-0.012501959688962],[0.0093203103169799,-0.063868254423141,-0.0098329111933708],[0.086208328604698,-0.019946411252022,0.0041492450982332]],[[0.023013975471258,0.12186673283577,0.0044060894288123],[-0.032784961163998,-0.032299999147654,-0.27478370070457],[-0.1159810423851,-0.15012733638287,-0.040823455899954]],[[0.094160661101341,-0.041413761675358,-0.075056120753288],[-0.011671897955239,-0.076423868536949,-0.033903390169144],[0.039284359663725,-0.033557116985321,0.057083144783974]],[[-0.044863097369671,-0.078810557723045,-0.022730141878128],[-0.11467407643795,-0.04335880279541,0.043312646448612],[-0.18781192600727,0.11620463430882,0.073570497334003]],[[-0.1468840688467,-0.058376003056765,-0.085652887821198],[-0.0043925982899964,0.024690564721823,-0.01213201135397],[0.10044446587563,0.049851078540087,0.050862286239862]],[[-0.011995400302112,-0.059271275997162,-0.03789134323597],[0.028992930427194,0.18790639936924,-0.011418172158301],[0.11828355491161,-0.0034885131753981,-0.21962852776051]],[[0.058365643024445,-0.11417938768864,-0.035924900323153],[-0.10644631832838,-0.11045342683792,0.15990951657295],[0.021371480077505,0.059764619916677,0.013257039710879]],[[-0.23568642139435,0.021229546517134,0.11669217050076],[-0.091103836894035,-0.18749324977398,-0.12342555820942],[-0.071452155709267,0.090982563793659,0.086401335895061]],[[-0.10708577185869,-0.11926617473364,-0.1540755033493],[0.1112754419446,-0.012829074636102,-0.0071501713246107],[0.08952908217907,0.0067799491807818,0.052786290645599]],[[0.023555051535368,-0.055358834564686,0.065795816481113],[0.017540061846375,-0.26436421275139,0.0098055182024837],[-0.2382555603981,-0.10369066148996,-0.024663170799613]],[[-0.012476731091738,-0.034091394394636,-0.065215826034546],[0.10148712992668,-0.018525037914515,0.10465160757303],[-0.0069091892801225,0.00060203380417079,0.063501238822937]],[[0.011423894204199,-0.051407054066658,0.015525324270129],[-0.13741225004196,-0.18177987635136,0.019551264122128],[0.014705305919051,-0.082686938345432,-0.030269626528025]],[[0.05975553765893,-0.15740777552128,-0.011720871552825],[0.066053859889507,0.08206520229578,0.073128394782543],[-0.0041903993114829,-0.03382495418191,0.016953349113464]],[[-0.0039578122086823,-0.072518639266491,0.072370365262032],[-0.074953116476536,-0.14845398068428,-0.12146867066622],[-0.032292481511831,0.034358970820904,0.018630091100931]],[[-0.19193691015244,-0.097442239522934,-0.24191929399967],[0.088641695678234,-0.045304719358683,-0.011283971369267],[-0.0053397505544126,-0.52415961027145,-0.23671032488346]],[[0.033642642199993,0.09671325981617,0.11536595225334],[-0.042892120778561,-0.061409626156092,0.077314160764217],[0.027267601341009,-0.17743366956711,-0.15453691780567]],[[0.024190900847316,-0.030279194936156,-0.020613631233573],[-0.024649256840348,-0.04334669187665,0.06130538508296],[0.071422249078751,0.036715798079967,-0.051413353532553]],[[-0.075933061540127,0.027824275195599,0.09392848610878],[0.086441650986671,-0.12416552007198,0.017236335203052],[0.04879405349493,0.041351873427629,0.10408855974674]],[[0.018632311373949,-0.016297683119774,-0.23151689767838],[-0.085355676710606,0.040058080106974,-0.091932587325573],[-0.093231245875359,0.14561311900616,-0.005820563994348]],[[-0.057713810354471,-0.035535428673029,0.034609477967024],[-0.075725577771664,-0.010984125547111,0.046298041939735],[0.078502103686333,0.0235834736377,-0.040417373180389]],[[0.020171457901597,-0.063077576458454,0.12464654445648],[-0.11175513267517,0.018677143380046,0.0501161031425],[0.02462569437921,-0.32159331440926,0.057863295078278]],[[0.13108202815056,-0.057795692235231,0.075122386217117],[0.11586280167103,0.038784306496382,-0.18087248504162],[0.0080331480130553,-0.026980847120285,-0.02584526874125]],[[0.1226524785161,0.11725259572268,-0.03381922096014],[-0.032000228762627,-0.047382395714521,-0.044972341507673],[-0.07388086616993,-0.030639670789242,0.028534583747387]],[[0.014505240134895,0.11443158984184,0.021315256133676],[0.061796952039003,0.043482437729836,0.13328962028027],[0.022653207182884,-0.044170696288347,-0.11738891154528]],[[0.13196723163128,-0.11837567389011,-0.040443100035191],[-0.0087597677484155,0.091055803000927,0.21175502240658],[-0.065673112869263,0.023486183956265,-0.028591245412827]],[[0.096636176109314,0.012998235411942,-0.03815858066082],[0.021655142307281,0.037698615342379,-0.072131991386414],[0.004508868791163,0.011465551331639,-0.081785559654236]],[[0.039828855544329,0.009241595864296,0.06518966704607],[0.067805826663971,0.033122051507235,-0.11316166073084],[-0.075838953256607,-0.099427290260792,0.044052977114916]],[[-0.2028980255127,-0.12670972943306,-0.0060117221437395],[-0.11213904619217,-0.16150629520416,0.069806359708309],[0.024876069277525,-0.055794559419155,-0.084175333380699]]],[[[0.047751899808645,0.098529934883118,0.045884318649769],[-0.029831124469638,-0.057104464620352,-0.052278582006693],[-0.030110742896795,0.14550563693047,-0.12251111119986]],[[0.11605071276426,0.059076350182295,0.024372102692723],[0.065242938697338,-0.025836953893304,-0.06261321157217],[0.0049197864718735,-0.10473971068859,-0.12469819188118]],[[0.012223714962602,-0.043788403272629,-0.013504547066987],[0.028942231088877,-0.032573897391558,0.12811309099197],[-0.022475760430098,-0.016598919406533,-0.10045717656612]],[[-0.022913679480553,0.020712345838547,-0.03750516846776],[-0.18066407740116,0.014713315293193,0.057683493942022],[0.019973739981651,0.025116790086031,0.018405355513096]],[[0.050314269959927,0.0017648411449045,0.024328885599971],[0.075296394526958,0.0055085741914809,0.02156088128686],[-0.10116083920002,0.034077219665051,-0.086079984903336]],[[0.020082844421268,0.006906371563673,0.026903895661235],[0.065132990479469,0.078024342656136,0.029063915833831],[-0.0036141583696008,0.0078462176024914,0.099290363490582]],[[-0.0088396919891238,0.038919482380152,0.0041777086444199],[-0.039620283991098,-0.0014637188287452,-0.085500128567219],[0.017674902454019,0.024958467110991,-0.037090908735991]],[[0.02511715516448,0.018323907628655,0.022726761177182],[0.00024874892551452,-0.079310432076454,0.01595014706254],[-0.008065321482718,-0.11519632488489,0.039664559066296]],[[0.04039516672492,0.081767618656158,0.0064098937436938],[0.08872989565134,0.032457955181599,0.076116248965263],[0.026809498667717,-0.032606270164251,-0.077530279755592]],[[-0.04298647493124,-0.097377762198448,0.076086580753326],[0.0030622545164078,-0.055005837231874,-0.049963712692261],[0.032910689711571,-0.074574641883373,-0.08425085991621]],[[0.081162184476852,0.079546071588993,0.15783058106899],[-0.035094864666462,0.070467680692673,-0.051058012992144],[-0.1133211478591,-0.076083116233349,-0.14367215335369]],[[0.086575739085674,-0.034083031117916,0.050373487174511],[0.078802399337292,0.11439882218838,-0.086776897311211],[-0.0091471187770367,0.0095063988119364,0.0018574662972242]],[[0.0017022246029228,0.10439348220825,0.0092546520754695],[-0.036433562636375,-0.14741767942905,0.10421558469534],[-0.040955733507872,-0.086632370948792,0.027655160054564]],[[0.041062410920858,0.060510747134686,0.0034699402749538],[0.019388334825635,0.0085693132132292,0.062929756939411],[0.019736621528864,0.10420195013285,0.14883223176003]],[[-0.013024721294641,0.046532303094864,0.072661802172661],[0.0042182472534478,-0.056886959820986,-0.030334170907736],[-0.02904612198472,-0.0031839786097407,-0.11012461781502]],[[-0.07727737724781,-0.06466643512249,0.0011322584468871],[0.018615402281284,0.086595915257931,0.07266891002655],[0.064266435801983,-0.01067668851465,0.07230943441391]],[[0.0030619057361037,-0.054306048899889,-0.032164536416531],[-0.074819162487984,-0.064377278089523,0.0087789380922914],[0.0125070521608,0.027837254106998,-0.15024369955063]],[[-0.027388097718358,0.099979415535927,0.0098720081150532],[0.012312410399318,-0.063419371843338,0.059735216200352],[0.015935668721795,0.029453491792083,-0.091972783207893]],[[0.048653546720743,0.046746589243412,-0.037088982760906],[0.062275089323521,0.040591333061457,0.00040275504579768],[-0.14943142235279,-0.13003419339657,0.096655890345573]],[[0.030454374849796,-0.076235182583332,-0.067712277173996],[-0.046620160341263,-0.013170356862247,0.043164629489183],[-0.024666214361787,-0.083074100315571,-0.13502269983292]],[[0.079015858471394,0.12956917285919,0.057172682136297],[0.074327103793621,-0.026917224749923,-0.03031743504107],[-0.11958559602499,-0.13040006160736,-0.088250227272511]],[[-0.083195127546787,0.06837959587574,-0.039346069097519],[-0.076672479510307,0.17872077226639,-0.012838110327721],[0.034747783094645,-0.083263106644154,-0.18846161663532]],[[0.10059906542301,-0.13062757253647,0.03138292580843],[-0.12463776022196,-0.020826583728194,-0.0053198104724288],[0.040530882775784,-0.071256533265114,0.095997594296932]],[[0.0080737033858895,-0.072174102067947,-0.0067489193752408],[0.083058953285217,-0.094638533890247,-0.070737026631832],[-0.11200797557831,-0.058867461979389,0.042567640542984]],[[-0.051784213632345,-0.0680011510849,-0.046652384102345],[0.015609632246196,-0.0077977711334825,-0.04718903824687],[0.027858801186085,-0.00398153020069,-0.10439004004002]],[[-0.033988460898399,-0.03814023733139,-0.11382320523262],[-0.027826672419906,0.00069318915484473,-0.03824495151639],[0.043109368532896,-0.08063567429781,0.087695196270943]],[[-0.10598558932543,-0.13145971298218,-0.074903428554535],[-0.01563698425889,0.065726302564144,-0.0013257458340377],[0.096437148749828,0.070724360644817,0.14221183955669]],[[0.11528142541647,-0.099351339042187,-0.04618164151907],[-0.1949050873518,-0.15584379434586,-0.13196070492268],[0.020861180499196,-0.16952787339687,0.076729744672775]],[[-0.13679006695747,0.04202789068222,0.072319902479649],[-0.059027761220932,-0.028864929452538,-0.11757954210043],[0.042809534817934,-0.12667113542557,-0.19416609406471]],[[-0.11308333277702,-0.11761093139648,-0.054489940404892],[-0.17187839746475,-0.02082228846848,0.13921242952347],[0.078044071793556,0.059323664754629,0.056408554315567]],[[-0.002890826202929,-0.059606205672026,0.094743445515633],[0.078935526311398,-0.056296397000551,0.022965231910348],[-0.077462196350098,-0.057888526469469,-0.062920421361923]],[[0.14821866154671,0.10508561134338,0.027707813307643],[-0.083842240273952,-0.21453295648098,-0.10316552966833],[0.010518491268158,0.017485219985247,0.16168724000454]]],[[[0.036528240889311,0.039473664015532,-0.24647580087185],[-0.11164840310812,-0.0041910009458661,0.1287357211113],[-0.0073851067572832,-0.0079501634463668,-0.20626850426197]],[[0.0157361458987,-0.10122097283602,-0.11539738625288],[0.073757387697697,-0.11054103821516,-0.031491320580244],[-0.030518833547831,0.015715816989541,0.036115556955338]],[[0.033074658364058,0.10403411835432,-0.045573703944683],[-0.065979652106762,0.060936860740185,0.063980676233768],[-0.059453427791595,0.05955845117569,0.077075436711311]],[[0.042233098298311,-0.063121028244495,-0.091349303722382],[0.046681594103575,-0.041722696274519,-0.052995812147856],[-0.008895818144083,-0.085132792592049,-0.12984549999237]],[[-0.0043443674221635,0.056127414107323,-0.036992598325014],[0.07187307626009,-0.024238174781203,0.12221409380436],[-0.054167047142982,0.046078540384769,0.018924091011286]],[[-0.041190143674612,0.094577170908451,0.04990204423666],[0.0011422493262216,-0.15130332112312,0.075970180332661],[-0.12527556717396,0.014396165497601,-0.18520522117615]],[[-0.17905943095684,0.071008369326591,-0.32006645202637],[0.10487031936646,-0.14907744526863,0.15101765096188],[-0.17438042163849,0.12264765053988,-0.20679306983948]],[[0.052559014409781,-0.0305704344064,-0.030447293072939],[-0.10143210738897,0.040145806968212,0.11062812805176],[0.071019291877747,0.0064602657221258,-0.04586161673069]],[[-0.089675299823284,-0.006813348736614,0.010609291493893],[0.023390462622046,-0.020766068249941,-0.07076158374548],[0.0084434505552053,0.05397617444396,-0.013340379111469]],[[0.046394944190979,0.16575668752193,0.080728717148304],[-0.053465973585844,-0.018823770806193,-0.043667640537024],[0.078811675310135,0.010867157950997,-0.038793854415417]],[[-0.0079344259575009,0.075434111058712,-0.18087786436081],[-0.021893894299865,-0.12337226420641,-0.12139653414488],[0.047165058553219,0.027915088459849,0.14204002916813]],[[-0.10130206495523,0.057419128715992,0.17214673757553],[0.028544489294291,-0.040474902838469,-0.021765036508441],[-0.027540192008018,-0.04128846898675,0.038357019424438]],[[0.063180766999722,-0.0022137518972158,-0.10172890126705],[0.022119442000985,0.01265156827867,-0.16893126070499],[0.082307450473309,0.067615158855915,0.11399453133345]],[[-0.003190262010321,0.087655656039715,0.12785439193249],[-0.0036982432939112,-0.087846696376801,-0.015851959586143],[-0.047117426991463,-0.10446003824472,-0.20944139361382]],[[0.033368103206158,-0.074558526277542,0.012070078402758],[-0.0065670688636601,0.024718755856156,0.012888752855361],[0.027574129402637,0.1042864471674,-0.0084739103913307]],[[0.046197138726711,-0.016941724345088,0.052586883306503],[0.058062545955181,-0.20546989142895,-0.085950002074242],[-0.062859483063221,-0.036751791834831,-0.094877384603024]],[[-0.041406318545341,0.089362725615501,-0.041150342673063],[0.051650155335665,0.016982991248369,-0.041491106152534],[-0.069967158138752,0.044074151664972,0.065014623105526]],[[0.095375433564186,-0.080817610025406,-0.054633744060993],[-0.023762091994286,-0.0092562576755881,-0.12116166204214],[0.13372145593166,0.012942894361913,0.049922905862331]],[[0.00352912559174,-0.032454188913107,0.053449120372534],[0.0056915306486189,-0.024838512763381,-0.052801057696342],[-0.032135903835297,-0.0085696615278721,0.017259923741221]],[[-0.0096612870693207,0.0065406444482505,0.10010829567909],[-0.034679144620895,-0.071998707950115,-0.067286819219589],[-0.027977516874671,-0.01023140642792,0.093488819897175]],[[0.13373149931431,-0.060863599181175,0.049148268997669],[-0.024338779971004,-0.055940508842468,-0.11748993396759],[0.061835568398237,-0.010535942390561,0.029355311766267]],[[-0.054860685020685,0.067694485187531,0.0012180655030534],[-0.12218180298805,0.034485273063183,-0.12305539101362],[0.034449737519026,-0.038914009928703,0.1477794200182]],[[-0.11925166100264,-0.11132016032934,-0.085321210324764],[-0.037735063582659,0.091561190783978,0.13328266143799],[-0.019652293995023,0.00055505172349513,0.040242899209261]],[[-0.041105929762125,0.049900189042091,0.0094021549448371],[-0.015793561935425,-0.042183663696051,0.067908123135567],[0.089308127760887,0.0066912984475493,-0.17307315766811]],[[0.015117187984288,-0.045182034373283,0.078846141695976],[-0.034881737083197,0.065283238887787,-0.21761786937714],[0.0024096737615764,-0.024901574477553,-0.015235272236168]],[[-0.068435043096542,0.016040734946728,-0.0043985545635223],[0.0035780631005764,-0.004404854029417,-0.015011793002486],[-0.0095862122252584,0.055723700672388,-0.04373199865222]],[[0.0061505143530667,0.12906034290791,0.064976699650288],[-0.039077088236809,-0.097552470862865,0.021928748115897],[-0.058205563575029,-0.027495129033923,-0.043932594358921]],[[-0.12218628823757,0.068634293973446,0.078906252980232],[0.028847483918071,0.041449561715126,0.20445710420609],[-0.028492163866758,-0.097593322396278,-0.021824972704053]],[[0.028664208948612,0.031586773693562,-0.088210716843605],[-0.038970943540335,-0.045861184597015,-0.092715591192245],[0.038017399609089,-0.11517306417227,-0.02273616194725]],[[-0.039393849670887,0.11848700046539,-0.14714983105659],[0.037482403218746,0.0058133522979915,0.012335048988461],[-0.047414150089025,0.090699888765812,-0.071731932461262]],[[0.0054406928829849,0.024344699457288,-0.041375067085028],[-0.014229238964617,-0.034039225429296,0.0087887104600668],[0.054522331804037,-0.13510826230049,0.084158271551132]],[[0.045724157243967,-0.16205139458179,-0.22686097025871],[-0.023060385137796,0.0034472574479878,0.17913454771042],[0.011051622219384,0.042402226477861,-0.064109422266483]]],[[[-0.13712838292122,0.033941686153412,0.0401909686625],[-0.054524749517441,0.011331221088767,-0.011868724599481],[-0.12360463291407,-0.044275403022766,0.096778556704521]],[[-0.05797553807497,0.028505714610219,-0.040206588804722],[-0.0081384629011154,-0.068719193339348,0.090284124016762],[0.047712922096252,0.021772868931293,0.098675161600113]],[[0.094365499913692,-0.065286196768284,-0.043317783623934],[0.010044042952359,0.019222872331738,0.033610600978136],[0.16264109313488,0.10428033769131,-0.075836852192879]],[[0.032200947403908,0.071823514997959,-0.017018225044012],[-0.017854522913694,-0.033301714807749,0.082374401390553],[0.0075856382027268,0.0082995360717177,0.030497958883643]],[[0.0086183175444603,0.055153071880341,-0.09864117950201],[0.0098521029576659,0.031127329915762,-0.013869843445718],[0.036847300827503,0.019213663414121,-0.017675453796983]],[[0.13252075016499,0.12205623835325,-0.31076130270958],[0.0088745951652527,-0.111054264009,0.028391307219863],[-0.01711268723011,0.18284091353416,-0.12483081966639]],[[0.044661324471235,-0.13009499013424,0.075920209288597],[0.020157244056463,-0.042136762291193,0.016039997339249],[0.13975891470909,0.1098130941391,-0.05057355761528]],[[0.15005247294903,-0.093092083930969,0.063577935099602],[0.070733904838562,0.017097920179367,0.042360164225101],[0.040473133325577,0.022222112864256,0.1008583381772]],[[-0.054407224059105,0.02681695856154,-0.080184891819954],[0.0010987173300236,-0.01210701931268,-0.04023514688015],[0.060102988034487,0.010234419256449,0.032054606825113]],[[0.13214701414108,-0.057826384902,-0.014699535444379],[0.041375353932381,0.15439666807652,-0.040259066969156],[0.1413197517395,-0.083517074584961,0.033198159188032]],[[-0.13869686424732,0.071681633591652,-0.088860653340816],[-0.095648780465126,-0.084200017154217,0.0026698710862547],[0.0016299713170156,0.047985550016165,0.11776824295521]],[[0.049079272896051,0.012104812078178,-0.081130802631378],[0.046141650527716,0.020989645272493,-0.15631528198719],[0.025312842801213,-0.14396087825298,0.067792557179928]],[[0.10119720548391,-0.07849146425724,-0.066562317311764],[0.17758856713772,0.080427683889866,0.070813469588757],[-0.072241269052029,0.10708005726337,0.03050765581429]],[[0.0060242917388678,-0.066332265734673,-0.0023224530741572],[-0.072196736931801,-0.0063419532962143,0.10613448172808],[-0.052839204668999,0.021030029281974,-0.030957965180278]],[[-0.038199994713068,0.001758310594596,-0.018844829872251],[0.055511258542538,-0.11726417392492,0.09011597186327],[0.045947108417749,0.015892893075943,-0.026451041921973]],[[-0.072928100824356,0.12897390127182,0.10209178924561],[0.019394194707274,-0.077300861477852,0.010373645462096],[-0.094354078173637,-0.024736549705267,-0.18611401319504]],[[-0.14032898843288,-0.013270069845021,0.01165449526161],[-0.067018665373325,-0.008737264201045,-0.090664595365524],[-0.096177466213703,0.067683100700378,-0.028340857475996]],[[0.014746638946235,0.020392844453454,-0.032942246645689],[-0.1144956946373,-0.012171500362456,0.06710210442543],[0.064344570040703,-0.051991600543261,-0.053746182471514]],[[-0.10081746429205,0.10551599413157,0.057981550693512],[-0.2274272441864,-0.042935021221638,0.020649876445532],[-0.25414314866066,-0.24459934234619,0.02894195728004]],[[-0.12106550484896,-0.036578644067049,-0.06708774715662],[-0.1041566580534,0.046675711870193,-0.1502865254879],[0.057098884135485,-0.085434176027775,-0.053178790956736]],[[-0.076162286102772,0.0022741782013327,-0.11187390983105],[-0.11148694902658,-0.019871145486832,-0.021320093423128],[-0.0063099833205342,0.043594144284725,-0.008527128957212]],[[0.021250022575259,-0.15283417701721,-0.02758607827127],[0.040833655744791,0.091155536472797,-0.18090607225895],[-0.043936427682638,-0.024694919586182,0.20537236332893]],[[-0.0046767154708505,0.020451681688428,0.13196471333504],[0.049410827457905,0.080555453896523,-0.016589649021626],[-0.10652486979961,-0.031203590333462,0.062914937734604]],[[0.093663461506367,0.15386712551117,0.10887214541435],[-0.08556142449379,0.10958439856768,-0.019878188148141],[-0.11832950264215,0.035294599831104,0.0071369358338416]],[[-0.00073057896224782,0.14844970405102,0.044974707067013],[0.069228358566761,-0.063537254929543,0.079481422901154],[-0.027256635949016,-0.12022464722395,0.15541404485703]],[[-0.010743108578026,0.070462077856064,0.013530913740396],[0.050587575882673,-0.11841257661581,-0.051704593002796],[-0.11947362869978,-0.01514691952616,0.011873428709805]],[[0.038956750184298,0.142054900527,0.00096703559393063],[-0.024510324001312,-0.035195458680391,-0.055676769465208],[-0.064891941845417,-0.049098502844572,-0.015856012701988]],[[-0.045715693384409,0.12711042165756,-0.15847082436085],[-0.0045597809366882,0.094130180776119,0.031850084662437],[0.11119817197323,0.15845467150211,0.077697902917862]],[[0.10319980233908,0.064645208418369,0.0033255179878324],[0.066560193896294,0.0041877594776452,0.1526200324297],[-0.090117059648037,-0.13284601271152,0.0092893531545997]],[[0.052081320434809,0.099473908543587,0.18387876451015],[-0.027921630069613,-0.089351557195187,0.0018092333339155],[-0.12210285663605,0.084199257194996,-0.12008022516966]],[[0.10068739205599,0.084016762673855,-0.18210734426975],[-0.19371539354324,0.087119437754154,-0.0091548822820187],[-0.076171435415745,-0.041307639330626,0.028046820312738]],[[-0.037966426461935,-0.028481574729085,0.070943169295788],[-0.017477706074715,-0.024375913664699,0.001540862605907],[-0.11215855926275,0.036956261843443,-0.035918172448874]]],[[[-0.10630273073912,-0.13810616731644,-0.035161096602678],[-0.034607719630003,0.041930727660656,-0.16743549704552],[-0.062019433826208,-0.10699900239706,-0.0052552619017661]],[[-0.056064512580633,-0.019478583708405,-0.056227151304483],[0.045432280749083,0.0025369543582201,-0.065862335264683],[0.1354237049818,-0.023783581331372,-0.044980693608522]],[[0.011442825198174,0.090337730944157,-0.1806311160326],[-0.12418624013662,0.032112345099449,0.050702258944511],[-0.032275669276714,0.068671248853207,-0.093845449388027]],[[-0.026542272418737,-0.12678503990173,-0.043576445430517],[0.0078993700444698,-0.083224378526211,0.016469020396471],[0.15550677478313,0.033681213855743,-0.022588320076466]],[[0.068091876804829,0.01909446157515,0.035670198500156],[0.015359809622169,0.05725122615695,-0.067756086587906],[-0.052357729524374,0.027563372626901,0.046290412545204]],[[-0.12488199770451,0.0021532452665269,0.0062053143046796],[-0.013008838519454,-0.12067005783319,-0.090147443115711],[0.011748576536775,-0.17660841345787,0.0066311974078417]],[[-0.033990111202002,0.022385884076357,-0.079321891069412],[0.067510232329369,0.066393367946148,-0.18800576031208],[-0.086719885468483,0.058015245944262,0.043181486427784]],[[-0.14447331428528,-0.01890161074698,0.0087903793901205],[0.0063472031615674,0.017992559820414,0.063871398568153],[-0.010572899132967,0.024647645652294,0.12505438923836]],[[0.0049322168342769,-0.12810422480106,0.035654932260513],[-0.068605788052082,-0.088029585778713,0.038591522723436],[0.0046192440204322,-0.019857799634337,-0.078211605548859]],[[-0.08543735742569,0.095276355743408,-0.18904855847359],[-0.0054429196752608,-0.088636219501495,-0.042807936668396],[0.1454441845417,0.061641309410334,-0.11647666990757]],[[-0.078703977167606,-0.032078456133604,0.054371003061533],[-0.012974308803678,-0.017235783860087,-0.085183754563332],[0.054522361606359,0.12715429067612,0.053267691284418]],[[-0.082180812954903,-0.067460685968399,-0.0016340307192877],[0.13073313236237,-0.098653860390186,0.092503480613232],[-0.082322299480438,-0.025926327332854,-0.038275744765997]],[[-0.025673905387521,-0.10519517958164,-0.0042759100906551],[0.0029201980214566,-0.083076722919941,0.033109478652477],[0.074575804173946,0.041083231568336,0.056499730795622]],[[-0.13628521561623,0.02182399481535,-0.042522795498371],[-0.025420039892197,0.0068947151303291,0.10293266922235],[-0.031169161200523,0.096757270395756,-0.029084293171763]],[[-0.0060238321311772,-0.022593950852752,0.10950219631195],[0.010606527328491,0.067712903022766,0.01694374345243],[0.064815752208233,-0.03452019020915,0.027489332482219]],[[-0.095723509788513,0.032580774277449,-0.040812365710735],[-0.24579505622387,0.15373040735722,-0.15210558474064],[0.15935128927231,0.07047263532877,-0.014242693781853]],[[-0.1414842903614,-0.0005603851750493,0.10883460193872],[-0.057812172919512,0.10218366235495,0.15013052523136],[-0.075891755521297,-0.083210170269012,0.00524030206725]],[[-0.037406478077173,0.057747021317482,-0.042740952223539],[-0.14723402261734,-0.043007168918848,0.12658612430096],[0.060890905559063,0.069207683205605,-0.032491482794285]],[[0.0028244850691408,-0.26703378558159,0.089239284396172],[-0.041390977799892,-0.026397679001093,0.16154143214226],[-0.10299306362867,0.042835015803576,-0.095009230077267]],[[0.012665855698287,0.014598314650357,-0.10929571092129],[-0.040149372071028,0.039414118975401,-0.082475215196609],[-0.11789520829916,-0.079890072345734,-0.10081596672535]],[[-0.029976181685925,-0.095894291996956,-0.035028181970119],[0.065213948488235,-0.067016683518887,0.061792768537998],[0.018178030848503,0.011574752628803,-0.029280453920364]],[[-0.016037756577134,-0.08970595896244,-0.20700083673],[-0.048293437808752,-0.036956872791052,0.11727307736874],[-0.055484104901552,0.20816633105278,-0.026264280080795]],[[-0.1677101701498,0.010754647664726,0.15871138870716],[-0.12570507824421,-0.1092469394207,0.13245642185211],[0.014003943651915,-0.23784077167511,0.10806552320719]],[[-0.16620181500912,0.05787905678153,-0.14156544208527],[-0.053299810737371,0.010184678249061,-0.1068095639348],[0.092454180121422,0.039334394037724,0.036713525652885]],[[0.054729912430048,-0.11007909476757,0.011346035636961],[0.040189079940319,-0.0041255028918386,-0.11536584049463],[0.063049733638763,-0.024268543347716,-0.09555371850729]],[[0.0066112857311964,-0.0053561520762742,-0.027400283142924],[-0.048244208097458,-0.036932718008757,-0.074897557497025],[-0.050721511244774,-0.20568065345287,0.2721284031868]],[[0.075855143368244,-0.025462416931987,-0.035660907626152],[-0.02942219004035,-0.013226378709078,-0.035215567797422],[0.025296315550804,0.026593204587698,0.0097512928768992]],[[0.10619169473648,0.16543398797512,-0.048112452030182],[0.060258224606514,0.03401543200016,-0.1581027507782],[0.074979424476624,0.096026703715324,-0.30822360515594]],[[0.044084519147873,-0.1040169224143,-0.17188127338886],[0.0027243525255471,-0.0067885057069361,-0.1264424175024],[0.059112712740898,0.17393146455288,0.067285962402821]],[[0.0031570014543831,0.10714955627918,-0.077562190592289],[-0.017100503668189,0.053282916545868,-0.028648767620325],[-0.068281695246696,0.048117354512215,0.042762942612171]],[[0.075010225176811,0.08797313272953,0.0013797625433654],[0.032666888087988,-0.1278381049633,-0.053598891943693],[-0.02456402592361,0.024475844576955,0.014776000753045]],[[-0.16786554455757,-0.0028497779276222,0.095231868326664],[0.055434688925743,0.012602893635631,-0.072727866470814],[-0.011697380803525,-0.22049912810326,-0.032565765082836]]],[[[0.036377720534801,-0.0063476730138063,0.020769946277142],[0.064215958118439,-0.13159693777561,0.14643517136574],[0.082390628755093,-0.10956124961376,-0.042657036334276]],[[-0.11549651622772,-0.010665186680853,-0.035142093896866],[0.019607484340668,0.099285125732422,-0.02696019038558],[0.087360478937626,-0.036037690937519,0.011658637784421]],[[0.068386144936085,0.0055841845460236,0.031314108520746],[0.083383537828922,0.025688732042909,-0.012547695077956],[0.17823028564453,-0.048521284013987,-0.024541944265366]],[[0.1093894392252,-0.039749823510647,-0.061235219240189],[-0.005056026391685,0.11080177873373,-0.01983848772943],[-0.056084785610437,-0.00484126387164,-0.0090789077803493]],[[0.030599063262343,0.056707058101892,-0.052067127078772],[0.017930408939719,0.075578525662422,0.078312441706657],[-0.011066498234868,-0.044858675450087,0.017878901213408]],[[-0.080799102783203,-0.082345589995384,-0.053909484297037],[-0.068768419325352,-0.15018755197525,0.03346111997962],[0.09174221009016,0.062397304922342,0.17345528304577]],[[0.009479584172368,0.0063348109833896,-0.10366704314947],[-0.13213832676411,-0.018541347235441,-0.05496284738183],[0.11345140635967,0.0087639894336462,-0.060302652418613]],[[-0.025119820609689,0.12379053980112,-0.054426286369562],[0.071849502623081,0.067432589828968,0.014238321222365],[0.020747596397996,0.043010830879211,-0.13817957043648]],[[0.083174221217632,-0.0031165864784271,-0.08117513358593],[-0.063105709850788,-0.003887809580192,-0.084588378667831],[0.09399987757206,0.014865148812532,-0.0643090903759]],[[-0.048617716878653,0.067529432475567,0.056263517588377],[0.14796675741673,0.1245703548193,-0.060737852007151],[0.08753164857626,-0.035908069461584,-0.1254319101572]],[[-0.042199764400721,0.12382286041975,0.048710998147726],[-0.049490075558424,0.0085787707939744,-0.075565755367279],[0.082727707922459,0.011465618386865,0.018936978653073]],[[-0.31838101148605,0.001038905698806,-0.10587350279093],[-0.050820089876652,0.10743208229542,-0.12481074035168],[-0.13393260538578,0.14736296236515,-0.16587293148041]],[[0.070974916219711,-0.051150798797607,-0.062558181583881],[0.17303608357906,0.047909416258335,-0.1457554101944],[0.10207612067461,0.028491578996181,-0.026756817474961]],[[-0.0439886264503,0.016006577759981,0.066182211041451],[0.1032602712512,0.029165307059884,0.019982570782304],[0.037975620478392,-0.14557723701,-0.11627174168825]],[[0.047893524169922,-0.063690409064293,-0.12652577459812],[0.018794370815158,0.088581912219524,0.010090233758092],[-0.02245487831533,0.026706898584962,0.039325945079327]],[[-0.063173957169056,0.014840601012111,-0.017053905874491],[-0.10420444607735,-0.089801818132401,0.12406145036221],[-0.0079384921118617,-0.039050333201885,-0.019804527983069]],[[0.2230418920517,-0.030779609456658,0.04086009785533],[-0.082688242197037,-0.068868920207024,0.033392757177353],[-0.11395592987537,-0.10267312824726,-0.049391973763704]],[[0.032632611691952,0.067113600671291,-0.093228459358215],[-0.039301492273808,-0.087303131818771,-0.055531740188599],[0.10722401738167,0.091745972633362,-0.01633732393384]],[[-0.16269056499004,0.03530265390873,0.054133411496878],[0.089648775756359,0.12445922940969,-0.077100425958633],[-0.067018911242485,-0.27011725306511,-0.1228913962841]],[[0.10132340341806,0.014956437982619,-0.21579924225807],[0.036132335662842,-0.029636831954122,-0.07278074324131],[0.064555764198303,-0.087243191897869,-0.096107214689255]],[[0.0059821298345923,0.038691055029631,-0.087745770812035],[0.066252045333385,-0.03733292594552,-0.085074305534363],[0.066517733037472,0.025860823690891,-0.16715946793556]],[[0.0311238784343,-0.16216276586056,-0.041931416839361],[0.1969295591116,-0.038524437695742,0.084551781415939],[0.15199361741543,0.072662085294724,0.12471462786198]],[[-0.071406871080399,0.022656654939055,-0.076644219458103],[-0.0095367487519979,0.10925657302141,-0.15183633565903],[-0.15507383644581,-0.030947359278798,-0.16319762170315]],[[0.02454168908298,0.021766481921077,-0.0024511907249689],[-0.00025485327932984,0.081469714641571,0.10359039157629],[-0.040498737245798,0.10979622602463,0.029977457597852]],[[0.13766449689865,0.010737121105194,0.050249375402927],[0.13371959328651,-0.020437000319362,-0.0030774399638176],[0.093140438199043,-0.050933815538883,-0.0058252969756722]],[[0.10011687874794,-0.031466137617826,0.083607591688633],[-0.10054247826338,-0.084511697292328,0.066589057445526],[0.073561817407608,0.03973776102066,-0.063396044075489]],[[-0.013341789133847,0.015197063796222,0.075976617634296],[-0.064823925495148,-0.0060902931727469,-0.034850094467402],[0.022848187014461,0.045865297317505,-0.08885882794857]],[[-0.002443318022415,-0.031288329511881,-0.17620225250721],[0.069568991661072,-0.0078121111728251,0.15737733244896],[0.0055037653073668,0.14833231270313,0.15028715133667]],[[-0.075396470725536,-0.16145388782024,-0.18781219422817],[-0.25198408961296,-0.06751687079668,-0.076173573732376],[-0.081864580512047,0.0324248932302,-0.037563934922218]],[[-0.02968311496079,0.054631877690554,0.11203233152628],[-0.0012628209078684,-0.011418368667364,0.012957060709596],[-0.043165966868401,-0.053072553128004,-0.013355023227632]],[[0.043035615235567,-0.011209275573492,0.07810128480196],[0.085385255515575,-0.061707861721516,0.038917046040297],[-0.027465032413602,-0.045279450714588,-0.037950810045004]],[[0.012101083993912,-0.0067445570603013,-0.15774267911911],[-0.035892985761166,0.0096245501190424,-0.089308775961399],[0.10416173189878,-0.013502722606063,-0.17523339390755]]],[[[-0.025760568678379,0.075303308665752,-0.014637166634202],[0.060930661857128,-0.11313854902983,-0.15462790429592],[-0.014886876568198,-0.016262071207166,-0.067598223686218]],[[-0.12196653336287,0.060600828379393,0.041148126125336],[-0.18401451408863,0.047256160527468,-0.028691461309791],[-0.0042706155218184,0.03444629535079,0.080114036798477]],[[-0.062777116894722,0.066749274730682,-0.045416940003633],[-0.016396937891841,-0.10938089340925,0.054861251264811],[-0.028723668307066,-0.044083654880524,0.2025343477726]],[[0.022276623174548,-0.011408739723265,-0.10144760459661],[0.042619038373232,-0.078610822558403,-0.051044423133135],[0.15233655273914,0.068179801106453,-0.14707231521606]],[[-0.0086153680458665,-0.00042683308129199,-0.043053340166807],[0.043331827968359,0.043678067624569,0.051495488733053],[0.065043307840824,0.14638060331345,-0.097078070044518]],[[0.19159138202667,0.064704075455666,-0.025863034650683],[-0.11053318530321,0.069559939205647,0.05112124606967],[-0.36970937252045,0.0088882902637124,-0.073601372539997]],[[-0.12643174827099,-0.063028894364834,0.1131167858839],[-0.10572540014982,-0.0098254410549998,-0.0064275190234184],[-0.055574435740709,0.029850291088223,0.004593345336616]],[[0.1987701356411,-0.038580309599638,0.018403379246593],[0.084731511771679,0.0079867579042912,-0.021703323349357],[0.065999589860439,-0.023395616561174,-0.14461269974709]],[[-0.0022731067147106,0.028298834338784,-0.044629994779825],[-0.1766555160284,0.068542093038559,-0.006324184127152],[0.023029446601868,0.010702854953706,-0.03126822039485]],[[0.051810450851917,0.091591686010361,0.039659392088652],[0.11960063874722,0.022648902609944,0.065334886312485],[0.013561573810875,0.0094806123524904,0.0490004979074]],[[-0.015324234031141,-0.036290433257818,-0.019221706315875],[-0.061176661401987,-0.16611663997173,0.024989919736981],[-0.059020832180977,0.061561334878206,-0.045283488929272]],[[0.036819264292717,0.1757480353117,0.091979816555977],[-0.17122676968575,-0.074006572365761,0.029508020728827],[-0.05998258665204,-0.023991702124476,0.0086524393409491]],[[0.031147735193372,0.025835106149316,-0.10694215446711],[-0.082458607852459,0.025360764935613,-0.025757171213627],[-0.057531349360943,0.052145183086395,-0.082731567323208]],[[-0.020174816250801,-0.044817823916674,-0.0705197006464],[0.046982385218143,-0.085483685135841,-0.10035583376884],[-0.081975713372231,-0.033083256334066,-0.10711104422808]],[[-0.041715778410435,-0.072597540915012,0.024862833321095],[0.0065266229212284,-0.010667962022126,0.002015836769715],[0.064017280936241,0.039084922522306,0.036431532353163]],[[-0.12528635561466,0.079874105751514,-0.012750464491546],[-0.10546277463436,-0.045504465699196,-0.01607252843678],[0.092130571603775,-0.0049493662081659,-0.00505460659042]],[[0.21685068309307,0.039411071687937,-0.11662082374096],[0.10609608143568,0.051911942660809,0.029851803556085],[-0.081604331731796,-0.10033556818962,0.04991826415062]],[[0.079443126916885,0.099523410201073,-0.17530718445778],[0.094404146075249,-0.073561497032642,-0.15688715875149],[-0.031153464689851,0.081835336983204,-0.070536538958549]],[[-0.0018280277727172,0.084700956940651,0.032602455466986],[0.12296979129314,0.029314892366529,-0.017776940017939],[0.24746488034725,-0.025327645242214,-0.24438169598579]],[[-0.044310551136732,-0.10677582770586,-0.1067578420043],[0.13516840338707,-0.062657780945301,-0.096091084182262],[0.042686063796282,0.14990673959255,-0.16620111465454]],[[0.013472246937454,0.088214822113514,-0.014171907678246],[-0.030800148844719,-0.03536719083786,-0.040040571242571],[-0.12307939678431,-0.0045344303362072,0.015107030980289]],[[-0.1049614623189,-0.10657680779696,0.069354347884655],[0.15417321026325,-0.064779341220856,-0.06611205637455],[0.028160328045487,0.048568412661552,-0.1139115691185]],[[0.084592282772064,0.0046490873210132,0.033930234611034],[-0.011410254985094,0.043719217181206,-0.15648260712624],[-0.023439621552825,0.058131482452154,-0.016609435901046]],[[0.19104854762554,0.020319264382124,0.10189864039421],[-0.035322275012732,-0.08249019831419,-0.052351735532284],[-0.13378784060478,-0.060003325343132,-0.069253146648407]],[[0.034840028733015,0.050862468779087,-0.2482588738203],[-0.010504649952054,0.1439208984375,-0.026246262714267],[0.060760844498873,-0.037291511893272,-0.0065656788647175]],[[0.094768211245537,-0.013654319569468,-0.05469461157918],[-0.13864633440971,0.010664505884051,-0.033223874866962],[0.05910336971283,0.0039982041344047,0.06869450956583]],[[0.063994027674198,0.083841517567635,-0.05005793645978],[-0.007629154715687,0.07826791703701,-0.052057020366192],[-0.082235664129257,-0.075632356107235,-0.020894030109048]],[[-0.34527644515038,-0.17104682326317,0.17068727314472],[0.013339773751795,0.040734138339758,0.11406497657299],[0.032738901674747,0.0066930898465216,0.17114061117172]],[[0.014844616875052,0.055670663714409,-0.021962923929095],[-0.021405639126897,0.060434013605118,-0.036932196468115],[-0.03819689899683,-0.14414754509926,-0.16856133937836]],[[0.086608342826366,0.061603959649801,0.05525540933013],[0.080721706151962,-0.078569896519184,-0.043686348944902],[0.0057896799407899,-0.051103930920362,-0.04975077137351]],[[-0.025046860799193,0.025023898109794,-0.017404861748219],[0.014681865461171,-0.020445628091693,-0.045210607349873],[0.004718117415905,0.039753954857588,0.13777709007263]],[[-0.31459826231003,-0.19452098011971,-0.13982751965523],[-0.089323192834854,-0.15616053342819,-0.2195116430521],[0.024460455402732,-0.1468947827816,-0.090890124440193]]],[[[0.0085291424766183,0.023754168301821,-0.069952666759491],[0.067617438733578,-0.042666327208281,-0.042518176138401],[0.090511851012707,0.060145556926727,0.052765980362892]],[[0.075105093419552,0.009912665002048,-0.035002697259188],[0.039647866040468,0.017106261104345,-0.097321569919586],[0.028946520760655,0.035587355494499,0.086368083953857]],[[0.13161177933216,0.13401336967945,0.074448302388191],[0.003416063496843,0.069159485399723,-0.12298639863729],[-0.019431564956903,-0.042385209351778,-0.084258541464806]],[[-0.047467119991779,-0.12168052047491,0.10423336178064],[0.018401367589831,-0.022907055914402,-0.013269552029669],[0.088369116187096,0.02576919645071,0.076276957988739]],[[0.016453243792057,-0.016356855630875,-0.029732288792729],[0.034201424568892,0.032450705766678,0.030547874048352],[-0.11458643525839,-0.016284879297018,-0.075918488204479]],[[-0.0019742909353226,0.097242258489132,0.12603737413883],[0.0078387465327978,0.05130273848772,0.034749310463667],[-0.069706529378891,-0.08703638613224,0.019382933154702]],[[-0.011844047345221,0.14778344333172,-0.14028510451317],[0.094817720353603,0.026728956028819,-0.025666292756796],[0.094169490039349,0.0071399426087737,0.10785881429911]],[[0.073439858853817,0.23335252702236,0.0022574893664569],[0.015296286903322,0.04772450402379,0.037803471088409],[0.024411020800471,0.013189830817282,0.0090737026184797]],[[-0.0028520200867206,-0.12749411165714,0.063165470957756],[-0.075998798012733,0.10409073531628,0.0030651893466711],[-0.073318026959896,0.036710634827614,-0.0015707900747657]],[[0.12631164491177,0.037515066564083,0.042041063308716],[0.0081617580726743,0.024236213415861,0.16787712275982],[0.048848398029804,-0.077517598867416,0.080316253006458]],[[0.061400204896927,-5.8877201809082e-05,-0.15930055081844],[0.10807724297047,-0.018023330718279,-0.0069462917745113],[0.019604897126555,0.049310188740492,0.052316199988127]],[[-0.11380702257156,-0.079108834266663,-0.057418998330832],[-0.062094081193209,-0.01625819131732,-0.051723565906286],[0.00091753050219268,0.15052181482315,0.11348819732666]],[[0.073024861514568,-0.095108963549137,0.028215244412422],[-0.055446352809668,0.06258487701416,0.13153611123562],[0.058608759194613,0.20679703354836,-0.0013529693242162]],[[0.054774187505245,0.02023041434586,0.08290633559227],[0.12038804590702,0.058554474264383,-0.11284895241261],[0.070811092853546,0.11944553256035,0.020793667063117]],[[0.020935766398907,-0.035262912511826,0.0070066386833787],[-0.024458032101393,-0.076017089188099,0.0016887575620785],[0.0061098365113139,0.010186852887273,0.035807568579912]],[[0.038448691368103,0.034023784101009,-0.063088819384575],[-0.019803067669272,0.059050720185041,0.10559437423944],[0.041252590715885,0.11351782828569,0.19814601540565]],[[0.075764767825603,0.027261771261692,0.02423869073391],[0.060480378568172,-0.067710898816586,-0.050846878439188],[-0.17594181001186,0.084052756428719,0.019118633121252]],[[0.020067691802979,0.0043023023754358,-0.0028251654002815],[-0.043404653668404,0.056405499577522,-0.049682416021824],[0.058022450655699,0.015583581291139,-0.067223653197289]],[[-0.038856189697981,0.067178331315517,-0.014071849174798],[0.0098837353289127,-0.0031480779871345,-0.062611021101475],[0.097476191818714,0.01379150711,-0.12769046425819]],[[0.059022668749094,-0.043616086244583,0.0085614752024412],[0.076082810759544,-0.10753256827593,-0.31758651137352],[0.11760675907135,0.11046174168587,-0.093601576983929]],[[0.010046441107988,-0.060468763113022,-0.054460737854242],[0.068761102855206,-0.027128422632813,-0.001838908996433],[0.19632422924042,-0.019262243062258,-0.048602797091007]],[[-0.03008321300149,0.29463884234428,0.13793569803238],[0.0075262780301273,0.024394426494837,0.081875361502171],[-0.384506970644,-0.21368083357811,0.0022650405298918]],[[0.064614415168762,0.11062905192375,-0.017926231026649],[0.12719260156155,0.10520166158676,0.21491107344627],[-0.11773248016834,0.08173917979002,0.060941144824028]],[[-0.055603563785553,0.030639126896858,0.020839136093855],[-0.038787756115198,-0.030505429953337,0.019536979496479],[0.06853037327528,0.092506162822247,0.057298373430967]],[[-0.00076799804810435,-0.11184444278479,-0.064509764313698],[0.14044085144997,0.027077466249466,0.017054904252291],[0.081414498388767,0.069932982325554,0.091815643012524]],[[0.13535171747208,0.022800207138062,-0.03057699650526],[-0.010950515978038,-0.0061488505452871,-0.020905749872327],[0.085914194583893,-0.010730744339526,-0.037213366478682]],[[-0.074461914598942,0.09095460921526,-0.023575592786074],[-0.09325035661459,-0.005178096704185,0.064104557037354],[-0.024403547868133,-0.024986635893583,0.01951458118856]],[[0.099738493561745,0.18749214708805,0.013303888961673],[0.040115397423506,0.10003415495157,0.045624755322933],[-0.0092138396576047,-0.038175281137228,-0.10140870511532]],[[-0.10682696849108,-0.16504471004009,-0.046573538333178],[-0.078361354768276,-0.066635265946388,0.00080868578515947],[0.10250078141689,0.093676939606667,0.11485610157251]],[[0.1524400562048,0.038091469556093,0.018453903496265],[-0.041276909410954,0.01922426559031,0.063184589147568],[-0.054533950984478,0.021317875012755,-0.032367490231991]],[[-0.034612782299519,0.13816876709461,0.057457320392132],[-0.012680089101195,-0.0012635942548513,-0.0073245177045465],[-0.032084297388792,0.030403461307287,0.077319271862507]],[[-0.034300081431866,-0.12374617904425,-0.15825387835503],[0.07286798208952,0.0039402018301189,-0.02022329904139],[0.18082000315189,0.087584383785725,0.13467936217785]]],[[[0.027557177469134,0.0079694632440805,-0.045292813330889],[-0.11462838947773,-0.19233012199402,-0.24053049087524],[-0.061113748699427,-0.081767998635769,0.078033693134785]],[[-0.011886044405401,-0.0043573714792728,0.028740024194121],[0.072519443929195,-0.029607012867928,0.05908327922225],[0.069987952709198,-0.041873261332512,0.076655246317387]],[[-0.010368933901191,-0.030415775254369,0.12931907176971],[-0.01888208091259,-0.10700003057718,0.023689964786172],[0.11794246733189,-0.068211860954762,0.051757112145424]],[[0.041645959019661,-0.060929272323847,0.04031690955162],[-0.23834310472012,-0.12809990346432,-0.054157730191946],[-0.15198786556721,0.03346461057663,-0.06281453371048]],[[0.0043009049259126,0.047059413045645,-0.022449454292655],[0.078721456229687,-0.058900777250528,-0.035209216177464],[-0.040657360106707,-0.036502677947283,-0.061144802719355]],[[0.061604425311089,0.0074832527898252,0.091518960893154],[-0.093850441277027,-0.043139092624187,-0.093337528407574],[0.10440426319838,-0.050890102982521,0.0046019488945603]],[[-0.0019044751534238,0.026571841910481,-0.030556291341782],[-0.07999050617218,-0.15026354789734,0.0083682956174016],[0.07989838719368,0.033368144184351,0.024459142237902]],[[-0.034372352063656,0.018364071846008,0.042406901717186],[-0.14008283615112,-0.12692411243916,-0.05578438565135],[-0.10435551404953,-0.063436910510063,0.0017212736420333]],[[0.030559128150344,0.082324527204037,-0.060474045574665],[0.049678280949593,-0.02974140830338,0.010067250579596],[0.064132414758205,0.028513157740235,-0.11121390759945]],[[0.04639133438468,-0.10555825382471,-0.052542060613632],[0.00090992054902017,-0.009563053958118,0.022704098373652],[-0.2297737300396,-0.14884628355503,0.0073836445808411]],[[-0.12380980700254,-0.043352276086807,0.030002914369106],[-0.089315816760063,0.061504773795605,0.034424606710672],[-0.077039547264576,0.044284649193287,-0.023162869736552]],[[0.0077154752798378,-0.063811145722866,-0.068411640822887],[-0.12306174635887,0.014172912575305,0.059345278888941],[-0.12226298451424,0.061175618320704,0.020235987380147]],[[-0.040303766727448,-0.053377818316221,-0.015743536874652],[-0.0079605262726545,-0.075188271701336,0.0040367664769292],[0.08477184176445,0.0062183397822082,0.0053964965045452]],[[0.0026843927334994,0.013959295116365,0.020671723410487],[-0.042900118976831,0.089353278279305,-0.087402619421482],[0.013849616982043,-0.014099259860814,0.17632779479027]],[[0.10242290049791,-0.059991922229528,-0.040454033762217],[0.072590753436089,-0.020756602287292,-0.029661735519767],[0.036881115287542,-0.091908067464828,-0.0005595909897238]],[[-0.065325826406479,-0.10201954096556,-0.027282560244203],[-0.002267356030643,-0.013037797063589,-0.13449811935425],[0.059892382472754,0.080830052495003,0.069390870630741]],[[0.021057579666376,-0.0016490728594363,-0.095059178769588],[-0.17690977454185,-0.075253114104271,-0.1326497644186],[-0.069132506847382,-0.021306600421667,0.047149676829576]],[[-0.046932931989431,-0.039834767580032,-0.10507067292929],[-0.050944432616234,0.064929030835629,-0.073160000145435],[-0.032785836607218,0.13968643546104,-0.0084200128912926]],[[-0.10204262286425,-0.037054121494293,-0.082902424037457],[-0.043949645012617,0.1295458227396,0.043072365224361],[-0.15244069695473,-0.15530629456043,0.12920041382313]],[[-0.020573899149895,-0.014830384403467,0.10578887164593],[0.11633221805096,-0.0059610279276967,-0.015710638836026],[0.0062497169710696,-0.10871966928244,-0.076844297349453]],[[-0.078957557678223,-0.045169986784458,-0.16054736077785],[-0.043374236673117,0.069270320236683,-0.076110012829304],[-0.022567272186279,-0.009752799756825,-0.064934700727463]],[[-0.10962072014809,0.013405792415142,-0.13143518567085],[0.034856032580137,0.01671577244997,0.24136430025101],[-5.1008402806474e-05,-0.10043709725142,-0.17398461699486]],[[-0.03021752461791,0.082007586956024,-0.025110939517617],[-0.1287132948637,0.17747481167316,-0.13175155222416],[0.033277325332165,0.087055131793022,-0.27322095632553]],[[-0.032407760620117,-0.0020902520045638,-0.032977469265461],[-0.020640088245273,0.032283268868923,-0.028186812996864],[0.041844196617603,0.0078561455011368,-0.089347325265408]],[[-0.025060225278139,-0.1593804359436,-0.30091023445129],[-0.0032692444510758,-0.026897829025984,-0.14422205090523],[-0.061852272599936,-0.10560215264559,-0.17546197772026]],[[-0.13653369247913,-0.039248540997505,-0.17485465109348],[-0.14851565659046,0.0079215550795197,-0.1279864013195],[0.044941190630198,0.04704899713397,-0.062508404254913]],[[-0.092654533684254,0.090603850781918,-0.009300883859396],[-0.13612250983715,-0.011747599579394,-0.043658386915922],[-0.10827565193176,0.089380100369453,0.091113612055779]],[[0.074371740221977,0.15774531662464,0.14111667871475],[0.0078134657815099,-0.012328841723502,-0.094826832413673],[-0.093220986425877,0.017697537317872,-0.35953676700592]],[[-0.10493505001068,-0.077255822718143,-0.19653457403183],[-0.13471879065037,-0.26297414302826,-0.11146945506334],[-0.10424759984016,0.026070363819599,-0.074930123984814]],[[0.041255075484514,-0.028559867292643,0.13058495521545],[-0.084886632859707,-0.04292256757617,0.0499661937356],[0.02203362993896,-0.040090426802635,0.058826874941587]],[[-0.040059115737677,-0.032378323376179,0.031119994819164],[-0.032226365059614,0.0058151953853667,-0.13755483925343],[-0.047035049647093,0.041281953454018,-0.11135533452034]],[[0.018611008301377,-0.110202498734,0.067114487290382],[0.1101803407073,0.00071670935722068,-0.060881320387125],[0.052561778575182,0.059062011539936,-0.024230955168605]]],[[[0.055817723274231,-0.087835870683193,-0.047396946698427],[0.040775634348392,-0.02172483317554,-0.1241652444005],[-0.069823242723942,0.000293237157166,-0.027937680482864]],[[0.091870985925198,-0.038114290684462,0.017398547381163],[-0.014392229728401,-0.057421341538429,0.034905701875687],[0.021340884268284,-0.03018949367106,0.014946986921132]],[[-0.0089584086090326,0.2106506228447,-0.067011952400208],[0.011848916299641,-0.092846125364304,-0.079109892249107],[-0.049572724848986,0.076807737350464,-0.066017501056194]],[[-0.023463418707252,0.060767576098442,-0.10728642344475],[-0.013904690742493,-0.039931248873472,0.022039519622922],[-0.12262716144323,0.063366636633873,0.0098898215219378]],[[0.022621795535088,-0.071514092385769,-0.07920016348362],[-0.072344340384007,-0.10730939358473,0.10830649733543],[0.030458401888609,0.026062183082104,-0.062199156731367]],[[-0.054593481123447,0.087964773178101,0.02093537338078],[-0.0060817506164312,-0.095152631402016,0.13927407562733],[0.0085642617195845,-0.091269724071026,0.12964808940887]],[[0.031822219491005,-0.11348179727793,0.026049926877022],[0.085524469614029,-0.082541063427925,0.078790262341499],[-0.0064795399084687,-0.0071184476837516,0.02196703851223]],[[0.13565576076508,-0.022435754537582,-0.020933423191309],[-0.14868634939194,-0.021847698837519,0.014022579416633],[0.0067201424390078,-0.067882932722569,-0.062793701887131]],[[0.012048265896738,0.086183726787567,0.091496653854847],[0.066327847540379,-0.10789491981268,0.025565341114998],[0.047273859381676,-0.0262197740376,0.062266509979963]],[[0.065336249768734,-0.11458956450224,0.075921528041363],[0.036629054695368,-0.14292570948601,0.0092492047697306],[0.094759836792946,-0.0029274574480951,-0.01323545910418]],[[-0.030449539422989,-0.22236816585064,0.10221847891808],[0.017603568732738,-0.037427011877298,0.080724820494652],[0.12186433374882,-0.068171620368958,0.073650576174259]],[[0.097293727099895,-0.0025407965295017,0.063759684562683],[-0.062447659671307,-0.094345293939114,-0.048535346984863],[-0.06262531131506,0.00024525518529117,0.25820171833038]],[[0.061879932880402,-0.041144251823425,0.08778427541256],[-0.0067157205194235,-0.055984761565924,-0.085341945290565],[0.10314220190048,-0.076503328979015,0.03409705683589]],[[0.023430177941918,0.0037113418802619,-0.21709482371807],[0.03705083578825,0.066043071448803,-0.14940775930882],[-0.11895340681076,0.17079068720341,-0.12537336349487]],[[0.010028437711298,-0.047917656600475,-0.029387781396508],[-0.090483218431473,0.047368168830872,-0.074074491858482],[0.0057238498702645,-0.08885819464922,0.004127939697355]],[[0.0044866008684039,0.14198441803455,-0.025304853916168],[-0.058664206415415,-0.15221400558949,-0.067072778940201],[0.18048587441444,-0.09209206700325,0.045353390276432]],[[-0.10935889184475,0.097120381891727,-0.035405647009611],[-0.054192926734686,-0.10604318231344,0.12867034971714],[0.19146381318569,-0.12154524773359,0.057197026908398]],[[0.088666506111622,-0.095581479370594,-0.087478682398796],[-0.069399185478687,0.03321809694171,-0.061260629445314],[0.10015419870615,0.1120794788003,-0.10976411402225]],[[-0.02362678386271,-0.00026795140001923,-0.098682396113873],[-0.047182738780975,0.076295271515846,0.068013243377209],[0.091648049652576,-0.03233777731657,-0.039303835481405]],[[0.0082272682338953,-0.036327820271254,-0.045602258294821],[-0.055596623569727,-0.14320176839828,-0.072491802275181],[-0.015623488463461,-0.24087844789028,-0.013032301329076]],[[0.079493127763271,0.11086542159319,0.065412007272243],[0.0099757313728333,-0.10445931553841,-0.048189245164394],[0.085154794156551,-0.029694242402911,0.06022496894002]],[[-0.028752766549587,0.082411177456379,-0.055450715124607],[-0.013999394141138,-0.011165370233357,0.0277483984828],[0.04685340821743,0.038997031748295,-0.032284207642078]],[[-0.11985303461552,0.071115262806416,0.014937371015549],[-0.056361682713032,0.10133295506239,-0.046288523823023],[-0.13468953967094,-0.034500852227211,0.11377359181643]],[[-0.035157322883606,-0.07939051836729,0.10576667636633],[-0.097322650253773,-0.11777766793966,-0.21400354802608],[-0.0083146514371037,-0.15996132791042,0.047687400132418]],[[-0.11338809877634,-0.029378766193986,0.0068366625346243],[0.014071955345571,-0.33380264043808,-0.1076872870326],[0.098861783742905,-0.01490118727088,-0.072399094700813]],[[-0.0027471156790853,-0.13414935767651,0.005913034081459],[0.031582560390234,-0.30954986810684,0.065017469227314],[0.17169304192066,-0.0056690457277,-0.05063359439373]],[[-0.080325275659561,-0.024996915832162,-0.028174586594105],[0.13224422931671,-0.075589261949062,0.11370506137609],[0.053770661354065,-0.015419217757881,0.021150520071387]],[[0.10861292481422,-0.18911468982697,0.27166339755058],[0.081613153219223,-0.26170912384987,0.076045632362366],[-0.12745688855648,-0.038209151476622,-0.0010271117789671]],[[-0.10548826307058,-0.064007423818111,0.11032316088676],[0.0016104074893519,-0.006250552367419,0.0047806296497583],[0.021623916924,-0.09061461687088,-0.017443956807256]],[[-0.048296891152859,-0.13818223774433,0.038744926452637],[-0.061883825808764,0.006988693960011,-0.042198661714792],[0.055711638182402,0.055634703487158,-0.072504803538322]],[[-0.18579764664173,-0.037693738937378,-0.20630556344986],[0.042016588151455,0.011926808394492,0.18678067624569],[0.057881154119968,-0.21420714259148,0.021867839619517]],[[0.087990529835224,-0.05815202370286,-0.15743927657604],[-0.0047011594288051,-0.1020974367857,-0.035505045205355],[0.080901615321636,0.03659575432539,-0.089038141071796]]],[[[-0.05422767624259,-0.032926883548498,-0.015559208579361],[0.095293737947941,-0.028844648972154,-0.026871250942349],[0.067897915840149,-0.055042024701834,-0.066029317677021]],[[-0.093673214316368,-0.01783911883831,-0.028743432834744],[-0.11717443913221,0.041437432169914,0.04982502758503],[0.022147070616484,-0.044770479202271,-0.10215533524752]],[[0.10889272391796,-0.091232091188431,-0.053205586969852],[-0.0061905309557915,0.11988297104836,0.19019815325737],[-0.03727363422513,0.16444072127342,-0.075275808572769]],[[0.14069420099258,-0.051587495952845,-0.047915630042553],[0.050479829311371,0.13709147274494,-0.037349365651608],[0.063711769878864,-0.087448857724667,-0.095416039228439]],[[0.010330126620829,0.024840826168656,0.022330837324262],[-0.053269889205694,0.029099145904183,0.0089403036981821],[-0.056579291820526,-0.024641310796142,0.013006588444114]],[[0.096117258071899,0.018743492662907,0.18235825002193],[-0.0033004824072123,-0.11217269301414,0.10606893897057],[0.015381806530058,-0.104526437819,0.001208872301504]],[[0.088541015982628,-0.092846117913723,0.071868777275085],[0.1167665719986,0.083336547017097,-0.026996091008186],[-0.089737430214882,0.081827826797962,-0.042386129498482]],[[0.23180340230465,-0.11682588607073,-0.12022639065981],[0.26711112260818,-0.0044303629547358,-0.097967259585857],[-0.086302690207958,-0.09110426902771,0.026886042207479]],[[-0.029271436855197,0.074709355831146,-0.17183154821396],[0.0023962794803083,0.0060108848847449,0.06700087338686],[0.067672163248062,-0.063270047307014,0.060076337307692]],[[0.16790029406548,0.19982209801674,0.06011962890625],[-0.075085654854774,0.041661892086267,-0.10030940175056],[0.025634814053774,-0.05902786552906,0.03557151556015]],[[0.032128162682056,0.032919608056545,-0.0087010730057955],[0.11037740111351,-0.020613510161638,-0.023997532203794],[0.035756826400757,-0.080337688326836,-0.0022991271689534]],[[0.14636275172234,0.074790619313717,-0.016441103070974],[0.13368076086044,0.0048791258595884,0.022030362859368],[0.055552538484335,0.1657716780901,0.0042437077499926]],[[-0.0081882504746318,-0.0083673922345042,-0.15995739400387],[0.15342874825001,-0.081332646310329,0.16568380594254],[0.13364441692829,0.11694695055485,0.015651294961572]],[[0.18041029572487,-0.042736124247313,0.0029080884996802],[0.032452080398798,-0.050937719643116,0.0090115247294307],[0.1203812584281,-0.10097496956587,-0.0547527782619]],[[0.05923618376255,0.008723646402359,0.028557769954205],[0.11553692817688,-0.0078587643802166,0.0063071940094233],[-0.012638662941754,-0.022498996928334,-0.02630939334631]],[[0.1307689845562,-0.099115185439587,-0.18912081420422],[0.050936780869961,0.034610163420439,-0.078623987734318],[0.05211953446269,-0.15654934942722,-0.047944154590368]],[[0.074614524841309,0.15202507376671,-0.038941912353039],[-0.032847382128239,-0.039841510355473,-0.037199068814516],[0.088578052818775,0.094003774225712,-0.018395230174065]],[[0.036844063550234,-0.11005662381649,0.12136999517679],[0.13340872526169,-0.23650705814362,-0.16233868896961],[0.077812656760216,0.11117240041494,-0.035607077181339]],[[-0.031910937279463,0.010565957054496,-0.069467261433601],[0.038074478507042,-0.010130723007023,0.020465200766921],[0.039640992879868,-0.11451725661755,-0.095420181751251]],[[0.0025997089687735,-0.10553035885096,-0.16125114262104],[-0.025086594745517,0.137580037117,-0.13497693836689],[0.061064921319485,-0.1846608966589,0.050802666693926]],[[-0.073574885725975,-0.032832488417625,-0.13854975998402],[0.055414900183678,0.15846997499466,0.13429951667786],[-0.0011287392117083,-0.01920423284173,0.053490478545427]],[[-0.068943575024605,0.11879403144121,-0.00093769520753995],[-0.076290518045425,-0.071597903966904,-0.03153070807457],[-0.022799540311098,0.076331935822964,0.063025370240211]],[[0.057364106178284,-0.070611096918583,-0.024427074939013],[-0.099221020936966,0.10165897011757,-0.11541988700628],[0.0074976794421673,-0.0029283103067428,-0.14541308581829]],[[0.018889823928475,0.032134637236595,0.056273847818375],[-0.046110298484564,-0.074112981557846,-0.096729449927807],[0.0059475977905095,-0.065496318042278,-0.12997169792652]],[[0.10512515157461,0.11897964775562,0.0080706309527159],[-0.082346946001053,0.089806228876114,0.023047875612974],[-0.00085481448331848,-0.026659009978175,-0.18809542059898]],[[-0.011649198830128,0.0018259583739564,-0.063211254775524],[0.14043389260769,0.078214786946774,-0.1249151006341],[0.054178640246391,0.089677281677723,-0.070311464369297]],[[-0.033969111740589,0.12115363776684,0.012157877907157],[-0.12118208408356,0.016270827502012,0.022296845912933],[-0.024375785142183,0.049840003252029,-0.022585608065128]],[[0.11914858222008,-0.055561013519764,0.1315695643425],[0.13092444837093,-0.0075073842890561,0.0038865068927407],[-0.15593126416206,0.1450423002243,-0.019898910075426]],[[0.092727601528168,-0.10396753996611,0.032392859458923],[0.025580089539289,0.10718631744385,-0.078952006995678],[-0.01755016297102,-0.012911123223603,0.031327545642853]],[[-0.12240589410067,-0.11449563503265,0.041652999818325],[0.011528763920069,0.1081201210618,-0.0013680849224329],[0.018643204122782,-0.053797859698534,0.0035455427132547]],[[0.06078140810132,-0.080500453710556,0.033836346119642],[-0.063786581158638,-0.036653090268373,-0.095355927944183],[-0.0029874835163355,0.038997605443001,0.020933780819178]],[[0.012161402963102,-0.015228414908051,0.055190272629261],[0.0070326491259038,0.012783057056367,0.00074607791611925],[0.026783822104335,-0.035508539527655,-0.037494700402021]]],[[[0.04991814121604,0.023477582260966,0.049716852605343],[-0.054566666483879,-0.056406188756227,0.0035989556927234],[0.10110183060169,-0.028949657455087,0.021467724815011]],[[-0.014283792115748,0.12876389920712,0.10460375249386],[-0.083925656974316,-0.023186231032014,0.1155518963933],[-0.12536831200123,-0.049789860844612,0.031316474080086]],[[0.051598377525806,-0.11009750515223,0.079615004360676],[0.061986152082682,0.031643349677324,0.043340768665075],[-0.068174444139004,-0.14683929085732,-0.080613262951374]],[[-0.031892232596874,0.058562964200974,0.021917719393969],[-0.06552778929472,-0.038573782891035,-0.02764879539609],[0.0077746976166964,-0.0022606661077589,-0.013806951232255]],[[-0.069201998412609,0.052651204168797,-0.046903524547815],[0.035508628934622,0.055154997855425,0.066867917776108],[-0.095523677766323,-0.03873847424984,0.0225098002702]],[[0.16803461313248,0.058961812406778,0.054382983595133],[0.057002786546946,0.11525859683752,0.031197527423501],[-0.079686984419823,-0.053998600691557,0.014974213205278]],[[-0.13217982649803,0.089268982410431,-0.0033010661136359],[0.090676762163639,-0.059834033250809,0.09575442969799],[-0.032883673906326,-0.099522158503532,-0.025784261524677]],[[-0.10687968879938,0.10751867294312,0.016748875379562],[-0.076579906046391,-0.19973297417164,0.07213518768549],[-0.015490456484258,0.068751528859138,0.063390247523785]],[[-0.014715556055307,0.032135382294655,-0.016983773559332],[-0.059616405516863,-0.012291521765292,-0.0005150850629434],[-0.050696089863777,-0.058864939957857,0.011377332732081]],[[-0.17280754446983,-0.029672119766474,0.024124199524522],[-0.083832606673241,0.047226510941982,0.018104596063495],[-0.24615526199341,-0.058324251323938,-0.04623007774353]],[[-0.086464010179043,0.042243834584951,0.080465957522392],[0.030064707621932,-0.10960824042559,0.014261823147535],[-0.07576909661293,-0.021113669499755,-0.058762911707163]],[[0.066439084708691,0.029637783765793,-0.019054332748055],[-0.044643439352512,-0.070591352880001,0.05919011682272],[-0.040682330727577,-0.0056616729125381,0.074983529746532]],[[-0.022752337157726,0.0093297297134995,-0.11737777292728],[-0.075267247855663,-0.033482667058706,-0.076976895332336],[-0.027769049629569,-0.079751782119274,-0.0063903946429491]],[[-0.09405492246151,-0.03053822927177,-0.040707241743803],[-0.048572186380625,0.014332747086883,-0.12217245995998],[0.10984995961189,-0.060143101960421,0.045949332416058]],[[0.02419888228178,0.023200396448374,-0.046453963965178],[-0.034234870225191,-0.011418812908232,0.065801277756691],[-0.098982244729996,-0.085681177675724,0.078433386981487]],[[0.081144094467163,0.044688060879707,-0.040415033698082],[-0.048993855714798,0.036352016031742,0.045653123408556],[-0.079199232161045,-0.029203234240413,-0.0080278236418962]],[[0.032984562218189,0.061694052070379,-0.062608525156975],[0.091966517269611,0.022269036620855,0.18233565986156],[0.0018210845300928,2.8275280783419e-05,0.11966553330421]],[[0.050604801625013,-0.053725052624941,0.018071491271257],[0.058028385043144,-0.013024342246354,-0.01102696172893],[0.066164135932922,0.12009560316801,-0.049859266728163]],[[0.056447710841894,0.020526617765427,0.018922215327621],[0.023038791492581,0.075027674436569,0.076093122363091],[0.093212388455868,-0.14213119447231,-0.021954815834761]],[[-0.01005564071238,0.017886355519295,-0.086929567158222],[-0.12645922601223,-0.015023363754153,-0.0047754687257111],[0.014579314738512,0.0065690744668245,0.0047794687561691]],[[0.085348479449749,0.10631114244461,0.067669667303562],[-0.030293630436063,0.0094934618100524,0.01672007702291],[-0.12253841757774,0.0076671573333442,-0.075186893343925]],[[0.017598479986191,0.10391841828823,0.014678746461868],[-0.045204821974039,-0.10429938882589,0.12515261769295],[-0.12971070408821,-0.023282362148166,-0.048428766429424]],[[0.060273118317127,0.016898825764656,0.037686999887228],[0.024132335558534,0.094734840095043,-0.053425371646881],[-0.0062346467748284,0.13351781666279,0.14017972350121]],[[-0.0035794160794467,0.0007586992578581,0.082231126725674],[0.16777513921261,-0.10634886473417,-0.086222894489765],[0.085749201476574,0.10300685465336,-0.0063118431717157]],[[0.042206853628159,-0.017160341143608,-0.10199054330587],[-0.0083226831629872,-0.00056644843425602,0.0590432099998],[-0.062741793692112,0.03891159594059,-0.01230775564909]],[[-0.013326647691429,-0.046799276024103,0.010110485367477],[-0.095573604106903,0.1245544180274,-0.024146504700184],[-0.044926468282938,-0.06337958574295,0.0064310999587178]],[[-0.022164355963469,-0.03529354929924,0.026405431330204],[0.028198016807437,-0.032913982868195,-0.074491761624813],[0.064739130437374,0.094782970845699,-0.096786566078663]],[[-0.021425109356642,-0.01064686384052,0.088838651776314],[-0.031157795339823,0.029931416735053,0.0069255223497748],[-0.099573701620102,-0.087359122931957,0.012195076793432]],[[-0.043377667665482,0.05963072553277,0.075290463864803],[-0.080696187913418,-0.043853104114532,0.11676392704248],[0.15370094776154,-0.045213241130114,-0.02403224632144]],[[0.081651091575623,-0.035646483302116,-0.012199953198433],[0.022972570732236,-0.12936890125275,-0.065389975905418],[0.095511473715305,-0.037683755159378,-0.014285271987319]],[[-0.16949065029621,0.022103322669864,0.10861220210791],[0.12174298614264,-0.023906700313091,0.011210671626031],[-0.03587269410491,-0.020334139466286,-0.016529407352209]],[[-0.0242860019207,0.024519419297576,-0.026459284126759],[-0.15322075784206,-0.081570342183113,-0.19976525008678],[-0.096934340894222,0.038761388510466,-0.049663901329041]]],[[[-0.16887421905994,-0.15580625832081,-0.062084943056107],[-0.19116538763046,-0.071345195174217,0.098613351583481],[5.5625889217481e-05,-0.0043283496052027,0.1256485581398]],[[0.052842020988464,0.032281532883644,-0.018470307812095],[-0.003917143214494,-0.1267813295126,-0.033712849020958],[0.075503624975681,0.011160675436258,-0.053273845463991]],[[0.29789423942566,0.027124950662255,-0.096959829330444],[0.015266514383256,0.19151303172112,-0.14986768364906],[0.23284429311752,0.044071055948734,-0.33485543727875]],[[-0.027557879686356,0.041639219969511,-0.0030821769032627],[-0.11764724552631,-0.032539483159781,0.085330650210381],[-0.014659401960671,-0.034310486167669,0.13954137265682]],[[-0.032555904239416,0.028275052085519,0.035490415990353],[-0.071898736059666,-0.0043765958398581,-0.0079568950459361],[0.015592245385051,0.052011199295521,-0.07458908110857]],[[0.14809280633926,0.044063352048397,-0.14090962707996],[-0.045679718255997,-0.064619332551956,0.054947778582573],[0.13718409836292,0.013005638495088,0.047094196081161]],[[0.012757989577949,0.038640584796667,-0.027038162574172],[-0.085405863821507,-0.0072918701916933,0.081277832388878],[0.089379891753197,-0.085553221404552,-0.04624892398715]],[[-0.16053800284863,-0.066098555922508,-0.10165034234524],[-0.14050237834454,0.13122829794884,0.010983346030116],[0.08628173917532,0.1947123259306,-0.12369436770678]],[[0.045469917356968,-0.15804345905781,0.044206101447344],[0.1014321744442,-0.0010102858068421,-0.032521653920412],[0.039866521954536,-0.050593882799149,-0.029376884922385]],[[-0.087607450783253,0.040125522762537,-0.10478245466948],[0.0050807422958314,0.056950215250254,-0.015355250798166],[-0.003375350497663,0.044710341840982,0.10204694420099]],[[0.050358593463898,-0.027451954782009,-0.033807951956987],[0.024405676871538,0.047179915010929,-0.22332280874252],[-0.01694830134511,-0.2719059586525,-0.35307523608208]],[[0.10025830566883,-0.055526252835989,-0.20264548063278],[-0.052439320832491,0.026469111442566,-0.1273358464241],[0.15702530741692,-0.10787239670753,0.04889977350831]],[[0.10316423326731,0.041844375431538,0.0022962440270931],[0.037169724702835,0.1120031401515,0.026111662387848],[0.073261022567749,0.097072415053844,0.20083357393742]],[[0.023801006376743,-0.040078073740005,-0.1393321454525],[0.055132687091827,-0.01976714655757,0.11069291085005],[0.070989675819874,0.11328653991222,0.044085904955864]],[[-0.03191427141428,-0.0024091580417007,0.04974501952529],[0.052587848156691,0.063108801841736,-0.00027135110576637],[-0.066567614674568,-0.032034501433372,0.0027835220098495]],[[0.017978839576244,-0.01938870921731,0.11763620376587],[-0.046048115938902,-0.0081880716606975,0.11720509827137],[0.062572255730629,0.0017274637939408,-0.031460758298635]],[[-0.071300476789474,0.045807983726263,-0.029730182141066],[-0.0083240969106555,0.018391601741314,0.0063279685564339],[-0.0122035080567,-0.10328784584999,0.027516439557076]],[[-0.074358895421028,0.0034705307334661,0.071005262434483],[0.061333224177361,0.074640348553658,0.019960634410381],[0.15951901674271,0.11329441517591,-0.018792001530528]],[[-0.048166520893574,-0.16981749236584,-0.080308482050896],[-0.078393250703812,-0.01073338650167,0.044288262724876],[0.10385718941689,0.059126395732164,0.0064674187451601]],[[-0.16933435201645,0.10784740000963,-0.09767946600914],[-0.19273070991039,0.062609747052193,0.015496963635087],[-0.035172421485186,-0.048436474055052,0.10235794633627]],[[0.042888328433037,-0.1336874961853,-0.089770190417767],[0.057107761502266,-0.047119621187449,0.027750428766012],[0.033157005906105,0.064289674162865,0.11438978463411]],[[0.12288750708103,0.14080932736397,-0.057823695242405],[0.031942013651133,-0.045623157173395,-0.13275021314621],[-0.010732598602772,-0.14608536660671,-0.27211198210716]],[[0.092905841767788,0.051378257572651,-0.06384789198637],[0.11076872050762,0.11596559733152,-0.10962399095297],[-0.01825350150466,-0.091677814722061,-0.039528273046017]],[[0.0259805098176,-0.058045864105225,-0.06663154810667],[-0.060076113790274,-0.15944148600101,-0.064859345555305],[0.060214556753635,0.011117938905954,0.076460868120193]],[[-0.10747131705284,-0.14524553716183,-0.098573796451092],[-0.089149586856365,-0.051630243659019,0.11799947172403],[0.079898752272129,0.034759439527988,0.12324723601341]],[[-0.13681377470493,0.03252936899662,0.0303147546947],[-0.10438672453165,-0.0083530498668551,0.023275412619114],[0.011012758128345,0.054137583822012,0.02447584271431]],[[-0.062214359641075,-0.023553038015962,-0.042140565812588],[0.0096164764836431,-0.0095083545893431,0.15120083093643],[-0.055371552705765,0.087755382061005,-0.088099658489227]],[[0.039195120334625,-0.089403577148914,0.041023574769497],[-0.005765329580754,-0.15999202430248,-0.14919869601727],[0.12744289636612,-0.023728599771857,-0.021702462807298]],[[-0.099668465554714,-0.12130840867758,-0.082938604056835],[-0.025338314473629,0.07634624838829,0.060229692608118],[-0.11997126787901,-0.040580980479717,0.053087495267391]],[[-0.069992259144783,-0.032254133373499,0.027900256216526],[-0.21305476129055,0.050838727504015,0.083932988345623],[-0.034983236342669,0.049931064248085,0.0066599808633327]],[[0.08618238568306,0.10634653270245,-0.03367343172431],[-0.038140185177326,0.047018025070429,0.002235465683043],[0.21313787996769,-0.02501617372036,0.032273270189762]],[[-0.058928728103638,0.0064993589185178,0.038304667919874],[-0.059552609920502,0.09814989566803,-0.015899930149317],[-0.023930732160807,0.092112630605698,0.071724556386471]]],[[[-0.085027791559696,-0.012543105520308,-0.13546730577946],[-0.037669662386179,-0.021501123905182,-0.073722258210182],[-0.052762448787689,-0.068227842450142,0.00064212497090921]],[[-0.070342786610126,-0.18388423323631,-0.095245592296124],[-0.041084740310907,0.059270404279232,0.023456238210201],[0.00094331009313464,0.080312877893448,0.09537310898304]],[[-0.037200327962637,0.015114920213819,0.10477235913277],[0.014547437429428,0.07636134326458,0.0062962905503809],[-0.13594360649586,-0.075419813394547,-0.087233401834965]],[[0.035108085721731,-0.050041064620018,0.022527016699314],[-0.072252728044987,0.00065612589241937,-0.021615892648697],[-0.039700649678707,-0.035062987357378,-0.097148098051548]],[[0.0028544953092933,0.027567762881517,-0.02077360264957],[-0.014283768832684,-0.015035110525787,0.11636859178543],[-8.5026404121891e-05,-0.050172958523035,0.026134546846151]],[[0.036705508828163,-0.079395025968552,-0.098811514675617],[0.016544526442885,-0.066182605922222,0.081776537001133],[0.0099856276065111,-0.1183425039053,-0.10118055343628]],[[-0.21613809466362,-0.014343345537782,-0.06935366243124],[0.018902217969298,-0.02138270623982,0.10693834722042],[0.021784588694572,0.077742971479893,0.10303268581629]],[[0.054196305572987,-0.022865826264024,-0.028472110629082],[-0.018026724457741,0.14463977515697,0.011930936947465],[0.012204540893435,0.086545772850513,-0.067847900092602]],[[-0.10806763917208,0.0034311825875193,-0.16338853538036],[-0.061800424009562,-0.0095898499712348,0.032783191651106],[0.074734427034855,0.0031721820123494,0.018609635531902]],[[0.079954370856285,0.038800057023764,-0.095888704061508],[-0.017571587115526,-0.11266083270311,0.02055043913424],[0.10934653878212,0.095233827829361,0.052563596516848]],[[-0.099894970655441,-0.070987053215504,-0.013044859282672],[-0.052772488445044,0.011797386221588,0.027724893763661],[-0.02744534984231,0.070012152194977,0.04449013993144]],[[-0.041360665112734,-0.055657885968685,0.043911129236221],[-0.012994214892387,-0.0029414319433272,-0.15642865002155],[-0.075796522200108,-0.15370294451714,-0.0090298233553767]],[[-0.020689181983471,-0.07539776712656,-0.077111095190048],[0.17756417393684,-0.028518702834845,-0.03000096976757],[-0.046706207096577,-0.051246173679829,0.013947724364698]],[[0.09489418566227,-0.047592289745808,-0.18241828680038],[0.02545503154397,-0.13077628612518,-0.23195861279964],[-0.10365688800812,-0.22780746221542,-0.24078533053398]],[[-0.058367386460304,-0.039358571171761,-0.0088467923924327],[-0.057600274682045,0.14189024269581,0.026174051687121],[0.083949491381645,0.0053626140579581,0.058940403163433]],[[-0.019850216805935,-0.080811627209187,-0.089981742203236],[-0.065644137561321,-0.069475017488003,-0.06768724322319],[-0.064863540232182,-0.023655449971557,0.032407492399216]],[[-0.017281100153923,0.01423523016274,0.045481577515602],[0.07335852086544,0.0074505526572466,0.013732824474573],[0.13656701147556,0.059977017343044,0.024737555533648]],[[0.065527364611626,-0.13588637113571,-0.0898642167449],[-0.088977351784706,-0.091844454407692,-0.055792398750782],[-0.10737834125757,-0.0068552899174392,0.141078338027]],[[-0.076737262308598,-0.19556529819965,-0.23473651707172],[-0.29099532961845,-0.11839868873358,0.017819907516241],[-0.14127902686596,-0.10280448943377,-0.14600501954556]],[[-0.071533739566803,0.036407634615898,0.10288002341986],[-0.10211996734142,-0.028787702322006,0.043533127754927],[0.11022141575813,-0.023393072187901,0.11689227819443]],[[-0.0080142728984356,-0.13028803467751,-0.12701849639416],[-0.033974371850491,0.05016103386879,0.10635998100042],[0.059169165790081,0.059663865715265,0.11543246358633]],[[-0.020960539579391,-0.044290844351053,-0.022752709686756],[0.15831343829632,0.0056340233422816,-0.014538250863552],[0.024167917668819,0.1426402926445,-0.11452072113752]],[[0.024448823183775,0.097913272678852,0.10542067885399],[-0.085480995476246,-0.0040412931703031,-0.039878569543362],[0.13147060573101,-0.045030422508717,0.033536374568939]],[[-0.12984465062618,0.038073629140854,-0.039273258298635],[-0.13106173276901,-0.02832668274641,0.017486922442913],[-0.10850322246552,0.027073951438069,-0.087516590952873]],[[0.04918136075139,0.01429601944983,-0.011352415196598],[-0.097630739212036,0.051399752497673,0.054818373173475],[0.0021282471716404,0.012556593865156,0.052262980490923]],[[0.051742028445005,-0.016858618706465,0.043170463293791],[0.00030428363243118,0.012452333234251,-0.035982258617878],[-0.053131602704525,0.031782690435648,0.0014199499273673]],[[0.14461325109005,0.13310451805592,0.059924647212029],[-0.064462468028069,-0.056090496480465,-0.058867253363132],[-0.006061838939786,-0.13751110434532,-0.086238995194435]],[[-0.096096836030483,0.17891842126846,0.01555841229856],[-0.039935696870089,0.061021625995636,0.039693780243397],[0.041566293686628,0.094721414148808,-0.058541316539049]],[[0.1072921231389,0.10108774900436,-0.12319396436214],[0.12288016080856,-0.050365328788757,-0.017190184444189],[0.028298798948526,-0.002559125656262,0.13069847226143]],[[0.08345565199852,0.074279330670834,0.10578370839357],[0.030231397598982,-0.0098760072141886,-0.037941180169582],[0.0050257393158972,-0.036019597202539,-0.10121862590313]],[[-0.13689193129539,0.063588157296181,0.0011323345825076],[0.032271575182676,0.019006833434105,0.10089048743248],[0.027497125789523,0.086738467216492,0.018795162439346]],[[-0.16825647652149,-0.18053849041462,-0.031326502561569],[-0.15750037133694,-0.035063274204731,0.042521830648184],[-0.008559787645936,0.1021798029542,-0.07916422188282]]],[[[0.0025669932365417,-0.0024296077899635,-0.052082356065512],[-0.0023418453056365,-0.078059978783131,0.01324213668704],[-0.069062247872353,0.015674691647291,0.0609494112432]],[[-0.077021755278111,-0.057661861181259,0.076349548995495],[-0.087749354541302,-0.059138566255569,0.058352831751108],[-0.17328473925591,-0.0020090248435736,0.068474791944027]],[[-0.024910844862461,-0.076443828642368,-0.066408567130566],[0.0085105299949646,-0.10358518362045,0.0061278897337615],[0.045621771365404,-0.20102827250957,-0.11018915474415]],[[-0.044140990823507,-0.004181943833828,-0.013498824089766],[0.013616741634905,-0.12898395955563,0.081705398857594],[-0.025152826681733,-0.016107453033328,0.024204984307289]],[[0.089293085038662,0.0029948998708278,0.029324609786272],[-0.018597772344947,0.045944094657898,-0.050508603453636],[0.07012016326189,0.14106519520283,0.029755443334579]],[[-0.069344937801361,-0.0066006043925881,0.11320139467716],[-0.11250729858875,0.038530237972736,0.054843347519636],[-0.088599465787411,0.031305443495512,0.13774812221527]],[[-0.033945206552744,-0.051731370389462,-0.035915389657021],[-0.1769545674324,0.027502801269293,-0.084649130702019],[-0.067815601825714,0.015534521080554,0.077165193855762]],[[-0.20530165731907,-0.009341293014586,-0.062279261648655],[0.062775135040283,0.13544236123562,-0.049477908760309],[-0.083712175488472,0.094560198485851,-0.18888092041016]],[[-0.027037000283599,-0.033202279359102,0.064449444413185],[-0.10545781999826,0.083892695605755,-0.033123873174191],[-0.072460450232029,-0.029482206329703,-0.0086108958348632]],[[-0.0086264703422785,-0.050801243633032,0.02705904096365],[-0.0085945827886462,0.14200194180012,-0.0034108841791749],[-0.010077497921884,-0.026455512270331,-0.044560585170984]],[[-0.03638219460845,0.0451320707798,-0.016182152554393],[0.0014055614592507,0.028107240796089,0.022177670150995],[-0.22024734318256,0.080624714493752,0.10595960170031]],[[-0.022035822272301,-0.042861625552177,-0.040202546864748],[-0.13488441705704,0.084224939346313,-0.052354075014591],[0.070526443421841,-0.081775486469269,-0.0034029646776617]],[[-0.052052728831768,-0.11860061436892,-0.099146001040936],[-0.22055752575397,-0.035502422600985,-0.14519740641117],[-0.017666047438979,-0.015388398431242,0.049803052097559]],[[-0.033857550472021,-0.16323585808277,-0.20886571705341],[0.04884186014533,0.0035566978622228,-0.22382159531116],[0.091576099395752,-0.091655686497688,-0.22846658527851]],[[0.049002647399902,0.055245421826839,0.066940635442734],[-0.096782006323338,0.013914354145527,-0.0046746279112995],[0.037264779210091,-0.07737060636282,0.078942589461803]],[[-0.26848343014717,0.029381601139903,-0.044064745306969],[-0.11982368677855,0.053445879369974,-0.049189977347851],[-0.11305762827396,0.028902396559715,-0.039443396031857]],[[0.070486977696419,0.20225840806961,0.13266417384148],[0.089537262916565,0.10350035130978,0.099283486604691],[0.013762436807156,0.045405596494675,0.16142544150352]],[[-0.010470074601471,0.026278311386704,-0.026459075510502],[-0.017628761008382,0.050999294966459,-0.04224107041955],[-0.096362479031086,0.077175386250019,0.015277872793376]],[[-0.014906358905137,-0.1382170021534,-0.050729345530272],[-0.093048520386219,-0.099797688424587,-0.074930734932423],[0.18158863484859,-0.031402323395014,-0.16048961877823]],[[-0.10356739908457,0.0098688676953316,-0.14454448223114],[-0.018043743446469,0.045486479997635,-0.0857814848423],[0.17693303525448,-0.065147429704666,-0.14595429599285]],[[0.02948134765029,-0.020428856834769,0.017286211252213],[-0.019253481179476,-0.0025271673221141,-0.047296263277531],[-0.041597533971071,-0.049968481063843,0.07177560031414]],[[0.024117510765791,-0.040662992745638,0.058761991560459],[-0.020601103082299,-0.05185017362237,0.05622885748744],[-0.11820643395185,-0.064851798117161,0.12645077705383]],[[-0.0099065955728292,0.010001504793763,0.027482258155942],[-0.040543973445892,0.18091055750847,0.076916716992855],[-0.027679404243827,0.1314604729414,-0.12108440697193]],[[-0.12628924846649,-0.20323495566845,-0.077631592750549],[-0.16427280008793,-0.14300209283829,-0.134630382061],[-0.016712844371796,0.025814449414611,-0.084070928394794]],[[-0.046652350574732,-0.091749608516693,0.019324587658048],[-0.14193826913834,-0.12054116278887,-0.08984100073576],[-0.034083049744368,0.065711550414562,0.022282626479864]],[[0.069135636091232,-0.016122732311487,-0.066928923130035],[-0.016075888648629,0.017172530293465,0.014198260381818],[-0.10093340277672,0.13578370213509,0.012497883290052]],[[0.051013845950365,-0.069371625781059,-0.059875160455704],[0.013718189671636,0.050203792750835,-0.043468613177538],[-0.022029638290405,0.12572574615479,-0.10527703911066]],[[-0.097237922251225,-0.17010001838207,0.00037439845618792],[0.020445853471756,-0.054199256002903,0.070543751120567],[-0.40001240372658,0.081130683422089,0.24088303744793]],[[-0.033342521637678,-0.078772030770779,0.11533749848604],[0.0010449844412506,0.01000830437988,0.025347938761115],[-0.05156671628356,0.018849294632673,0.15265116095543]],[[0.080581247806549,-0.0040081827901304,-0.12887796759605],[0.14060196280479,0.028882708400488,-0.091848656535149],[0.050672084093094,-0.079137407243252,-0.050244871526957]],[[-0.013358283787966,-0.015194244682789,0.023904476314783],[0.10245638340712,0.056038372218609,0.023562382906675],[-0.12375693768263,-0.060127027332783,0.04822138696909]],[[-0.053637430071831,-0.049559820443392,-0.066937156021595],[-0.19408601522446,-0.029393550008535,-0.10761286318302],[-0.15539000928402,0.08778004348278,-0.097678735852242]]],[[[0.079276703298092,-0.051962681114674,0.040030211210251],[-0.043058700859547,0.067751578986645,-0.024900292977691],[0.0055550080724061,0.040829364210367,0.046178411692381]],[[0.024999927729368,0.12675681710243,-0.022093599662185],[0.012602859176695,0.042401753365993,-0.10905556380749],[0.037472236901522,-0.052685994654894,-0.06601095199585]],[[0.087318025529385,0.093240506947041,0.079351723194122],[0.070847742259502,-0.089684970676899,-0.075282335281372],[-0.022183513268828,0.072622559964657,0.066499322652817]],[[-0.082508407533169,-0.084968969225883,0.013884367421269],[-0.0546865016222,-0.10924622416496,0.076198130846024],[0.046018950641155,0.021379537880421,-0.00053380423923954]],[[-0.060782708227634,-0.066316112875938,-0.046406023204327],[-0.096583515405655,0.038637705147266,-0.021833686158061],[-0.060318294912577,-0.04771064966917,0.0017073589842767]],[[-0.14865781366825,0.14418117702007,-0.10658892989159],[0.079210706055164,0.04568799957633,-0.016892926767468],[0.067561082541943,0.15607550740242,0.0063904728740454]],[[0.15611059963703,0.0099642490968108,0.069583013653755],[0.0033445945009589,0.082239389419556,0.095447711646557],[0.041586052626371,0.10700591653585,0.048849985003471]],[[0.15976084768772,-0.026384236291051,-0.054953631013632],[-0.059251688420773,-0.10980278253555,0.034014232456684],[0.15021012723446,-0.17013661563396,0.051850281655788]],[[0.025940222665668,0.021817589178681,-0.074394084513187],[0.050713326781988,0.054250877350569,-0.15770302712917],[0.035817015916109,-0.049725189805031,-0.0099681634455919]],[[0.062762014567852,0.0091773550957441,0.14360879361629],[-0.10248331725597,-0.068758651614189,-0.11531130969524],[-0.024980537593365,-0.0050632334314287,0.14515963196754]],[[-0.10061156749725,-0.017181584611535,-0.026411447674036],[-0.083419121801853,0.23639796674252,-0.060622956603765],[-0.014230698347092,0.15282101929188,-0.13125893473625]],[[0.10165002942085,-0.04356262460351,0.072086662054062],[-0.083441562950611,-0.017679244279861,-0.10654247552156],[0.013385464437306,-0.027331333607435,0.021750392392278]],[[-6.0550100897672e-05,0.042423333972692,-0.162527769804],[0.045724872499704,-0.061946336179972,-0.1486833691597],[0.067390158772469,0.078202441334724,0.041594959795475]],[[-0.077154107391834,0.050143536180258,-0.13464513421059],[0.060063876211643,0.12841594219208,0.13274656236172],[-0.014165698550642,0.093696132302284,0.10996033251286]],[[0.040826357901096,-0.0071169636212289,0.017133394256234],[-0.051871307194233,-0.016036598011851,-0.039977323263884],[0.088087439537048,0.012004157528281,-0.04294041916728]],[[-0.016941998153925,0.088972687721252,-0.034679375588894],[-0.018953613936901,-0.26377683877945,-0.061158161610365],[0.076058819890022,0.011634954251349,0.087216012179852]],[[0.11512690782547,0.10276939719915,-0.032498750835657],[0.089614681899548,0.005190403200686,-0.20074310898781],[0.021445075049996,-0.092917487025261,-0.061203803867102]],[[0.11940339952707,0.10548020154238,-0.0066765677183867],[0.029699504375458,0.079309225082397,-0.027253663167357],[-0.094608500599861,-0.042040459811687,-0.18266950547695]],[[0.068120576441288,0.079679474234581,0.0016526540275663],[-0.088629826903343,-0.081164449453354,-0.046973321586847],[-0.021818045526743,-0.10176241397858,0.087493315339088]],[[0.056934792548418,-0.010046403855085,0.084192015230656],[-0.043449148535728,0.018396560102701,0.030246136710048],[-0.011384174227715,-0.029840165749192,-0.067178130149841]],[[0.13798712193966,0.12263876199722,0.031762432307005],[0.085083648562431,0.0091750686988235,-0.13718220591545],[0.024135861545801,0.081620492041111,0.015769341960549]],[[0.084379330277443,-0.13488478958607,0.1088145673275],[0.0063042440451682,0.097192697227001,-0.17522944509983],[0.1913213133812,-0.031555950641632,0.12565192580223]],[[0.015580485574901,0.12076517939568,-0.22390818595886],[-0.058799132704735,0.13767537474632,-0.071220211684704],[0.13836450874805,-0.02880397066474,-0.050008412450552]],[[-0.021215701475739,-0.031324476003647,-0.0061996197327971],[0.13598902523518,-0.071609146893024,0.04219863936305],[0.06170079857111,0.032774087041616,0.0090603744611144]],[[-0.072636760771275,0.057943422347307,0.061984661966562],[-0.020194686949253,-0.023483231663704,-0.017394810914993],[-0.022188236936927,0.10761700570583,-0.059177059680223]],[[-0.025770986452699,0.085138134658337,-0.075971655547619],[0.0079893004149199,0.073597028851509,-0.088638730347157],[0.079762332141399,0.037264186888933,-0.018906405195594]],[[-0.017636712640524,0.039084371179342,0.075288660824299],[-0.11999421566725,-0.0029606292955577,0.11696723848581],[-0.088243864476681,-0.0041913464665413,-0.015185672789812]],[[-0.039229102432728,0.14244373142719,-0.0056056366302073],[0.031494293361902,0.035700343549252,0.032533399760723],[0.00089829647913575,0.094401866197586,-0.040259279310703]],[[-0.031384859234095,-0.052893113344908,-0.081012196838856],[-0.086306154727936,-0.160589620471,-0.26962801814079],[-0.034585356712341,-0.092071808874607,0.023707570508122]],[[-0.081118389964104,-0.026228707283735,-0.037218645215034],[0.068827502429485,-0.068233229219913,0.020377200096846],[-0.015824750065804,0.0089909601956606,0.088562048971653]],[[-0.078498594462872,0.065392658114433,-0.10250779986382],[0.023985808715224,-0.14120852947235,0.034305162727833],[0.13049033284187,-0.030036682263017,0.045799922198057]],[[-0.03063241392374,0.026783030480146,-0.04883985221386],[-0.10737657546997,0.05586040392518,0.023611104115844],[-0.041721004992723,0.04815337434411,-0.047398269176483]]],[[[0.069947086274624,-0.24290023744106,-0.054880574345589],[-0.21732124686241,0.07194472104311,0.0023320049513131],[0.048360172659159,-0.055089063942432,-0.18459157645702]],[[0.049837309867144,0.032887760549784,-0.049850601702929],[0.10766686499119,-0.043023325502872,-0.040031187236309],[0.0078696999698877,-0.017783807590604,0.03158650547266]],[[0.12986750900745,0.18156290054321,-0.01302261184901],[0.14304454624653,0.13141112029552,-0.25971755385399],[-0.15322026610374,-0.065187722444534,0.065234541893005]],[[-0.071277476847172,0.051368031650782,0.044399384409189],[0.014297660440207,-0.0027109521906823,-0.13876517117023],[0.02772768214345,0.0084288408979774,-0.12637753784657]],[[0.0046330718323588,0.044736608862877,-0.046347599476576],[-0.050931997597218,0.039937019348145,0.090435422956944],[0.09343808889389,-0.078120119869709,-0.0097575569525361]],[[-0.11146474629641,-0.19280886650085,0.23111566901207],[-0.18939493596554,0.0047027948312461,0.069374457001686],[0.036819592118263,0.068873576819897,-0.14694479107857]],[[0.089810200035572,-0.05880993232131,0.046562001109123],[-0.034671373665333,-0.00078641140135005,-0.019448913633823],[-0.03227299079299,-0.004107762593776,-0.045608684420586]],[[-0.015466473065317,0.045341573655605,-0.35478711128235],[0.1876222640276,0.026237074285746,-0.10201245546341],[-0.28397431969643,0.11473964899778,-0.1402151286602]],[[0.013919692486525,0.067871153354645,0.055069830268621],[0.052478823810816,-0.060056000947952,-0.090161427855492],[-0.03222244605422,-0.071751609444618,0.030005924403667]],[[-0.12073142826557,-0.092837378382683,-0.078743107616901],[0.049963422119617,-0.041245464235544,-0.1165304929018],[0.14453865587711,-0.040780793875456,0.19245970249176]],[[-0.091165326535702,-0.1090315207839,0.0057971780188382],[-0.038695685565472,-0.079397663474083,0.00032479397486895],[-0.0081879487261176,0.031337585300207,-0.024203300476074]],[[-0.11849372833967,-0.070463806390762,0.038033340126276],[0.032344993203878,0.056467335671186,0.05117991566658],[0.013708170503378,-0.0063875345513225,-0.051407054066658]],[[0.0089412713423371,-0.11461065709591,-0.072154149413109],[0.077604152262211,-0.035392086952925,0.0040425295010209],[-0.0055644400417805,-0.089285671710968,-0.042418919503689]],[[-0.2366259843111,-0.099732264876366,0.23047675192356],[-0.093534760177135,-0.045809652656317,0.032570790499449],[0.062477216124535,-0.056561332195997,-0.12776817381382]],[[-0.02198756672442,0.022098366171122,0.03523787856102],[0.048261139541864,-0.043949823826551,-0.051216639578342],[0.011240283027291,-0.021934865042567,-0.005464056506753]],[[-0.15925025939941,-0.0082092834636569,-0.096458286046982],[-0.11475402116776,0.089655019342899,-0.0026612412184477],[0.22380661964417,-0.026909854263067,-0.11348997801542]],[[0.11429847031832,0.020713694393635,-0.27984175086021],[0.1730672121048,-0.30073195695877,0.066489778459072],[-0.53265458345413,0.067549183964729,0.014036322012544]],[[0.079614721238613,0.037998389452696,-0.01169406156987],[0.087324410676956,0.083886474370956,-0.075077079236507],[0.0055241924710572,-0.13235050439835,-0.062328532338142]],[[0.0090121990069747,-0.09168866276741,-0.20561331510544],[-0.059602588415146,-0.10993880778551,-0.12143357098103],[0.076827168464661,-0.053188480436802,0.13478504121304]],[[-0.015485858544707,-0.045122448354959,-0.099295265972614],[0.015198519453406,-0.12587210536003,-0.047286625951529],[-0.092660881578922,-0.10297107696533,-0.047747638076544]],[[0.027580514550209,-0.017527896910906,0.076527401804924],[-0.030132282525301,-0.07408893853426,-0.022901332005858],[-0.033541988581419,-0.04570708796382,0.0078051532618701]],[[-0.13133876025677,-0.19861102104187,0.12305445224047],[0.15412001311779,-0.038331802934408,-0.10524929314852],[0.025284953415394,-0.18442377448082,-0.012519207783043]],[[0.027930907905102,-0.049491673707962,-0.14496910572052],[-0.044492904096842,-0.21935488283634,0.0082441903650761],[0.035377528518438,0.14866407215595,0.14356781542301]],[[-0.081873513758183,-0.1039652749896,0.008316645398736],[-0.11740330606699,-0.051024101674557,0.054520051926374],[0.050153043121099,0.087115727365017,-0.14301374554634]],[[-0.15569856762886,-0.091538190841675,-0.078987345099449],[0.037700023502111,-0.075701199471951,-0.20867100358009],[0.049101702868938,-0.12965577840805,-0.12169853597879]],[[0.13742449879646,-0.20715239644051,-0.34510558843613],[-0.14758948981762,-0.24312910437584,-0.069805487990379],[-0.23238015174866,0.072633646428585,0.1550867408514]],[[-0.079011209309101,-0.09137400239706,0.01715967990458],[0.0438920147717,-0.052382852882147,0.084367245435715],[-0.014022717252374,0.029776740819216,0.034861821681261]],[[0.0015028980560601,-0.12220399081707,-0.094182103872299],[-0.0061841788701713,0.16530095040798,0.1086635440588],[-0.071209251880646,-0.20948961377144,0.029638785868883]],[[0.017571017146111,-0.057102091610432,0.066004067659378],[-0.073209829628468,-0.041229579597712,-0.23075632750988],[-0.053474154323339,-0.12258811295033,-0.047099817544222]],[[-0.058525808155537,0.082447580993176,-0.066265277564526],[0.01022781431675,0.08379527926445,0.052139788866043],[0.021109210327268,-0.035106588155031,-0.016013873741031]],[[0.048787340521812,0.15259888768196,-0.059937577694654],[0.021475207060575,-0.036429636180401,-0.066849380731583],[-0.08149091899395,0.010274279862642,0.019105218350887]],[[-0.020947683602571,0.16131608188152,-0.010377457365394],[0.077100567519665,-0.22249911725521,-0.0354207418859],[-0.17195062339306,-0.02342583052814,0.058316919952631]]],[[[0.045980103313923,-0.0018033599480987,0.083686046302319],[0.067986287176609,0.003512185998261,0.025472296401858],[0.032057091593742,-0.080430679023266,0.059860937297344]],[[0.083052732050419,-0.046024672687054,0.058343768119812],[-0.081238701939583,-0.029321279376745,0.019446602091193],[-0.073606356978416,0.012582109309733,0.014007794670761]],[[0.22577661275864,0.16148707270622,-0.056263942271471],[0.048434387892485,0.15673963725567,-0.1917749941349],[0.13737717270851,0.057679072022438,0.050591044127941]],[[0.021623389795423,0.080492623150349,0.10706412047148],[0.09799737483263,0.11674856394529,-0.094807088375092],[-0.12930789589882,-0.24543699622154,-0.092966422438622]],[[0.011786025948822,0.030642710626125,0.050594393163919],[-0.008134949952364,0.089679129421711,-0.073373258113861],[-0.04425561055541,-0.0008414588519372,0.025129433721304]],[[0.17249310016632,-0.14117279648781,0.046917963773012],[0.094162538647652,0.046141590923071,0.020399566739798],[-0.0016772939125076,0.041432220488787,0.08997792750597]],[[0.0091527346521616,0.070353001356125,-0.041414394974709],[0.14610582590103,0.043332412838936,-0.1561992764473],[-0.15836782753468,-0.050341069698334,0.074307188391685]],[[0.064069546759129,0.12246748059988,0.090052790939808],[0.03622105717659,0.016447694972157,0.12355578690767],[0.039151187986135,-0.097552359104156,0.012463740073144]],[[0.030929464846849,0.042267855256796,0.027935620397329],[-0.056710265576839,-0.0058753886260092,-0.056410375982523],[0.056514371186495,0.060398023575544,-0.062509618699551]],[[-0.15874356031418,-0.067675359547138,0.020643627271056],[-0.1081637814641,-0.048660889267921,-0.0069173173978925],[0.15282160043716,0.021729061380029,0.094394609332085]],[[-0.11350220441818,-0.01125699095428,0.017024571076035],[0.049131229519844,-0.0266725551337,0.041776891797781],[0.073792330920696,0.054683312773705,0.0024784512352198]],[[0.099272727966309,-0.10519064217806,-0.010513743385673],[0.04564069211483,0.041334390640259,0.07484308630228],[-0.030860746279359,0.069211594760418,0.13187044858932]],[[0.10107199847698,-0.081471152603626,0.049099281430244],[0.01247791852802,-0.0033623764757067,0.031938530504704],[0.1060771048069,0.018424632027745,-0.11385405063629]],[[-0.058786883950233,0.048652440309525,-0.019675754010677],[0.040348026901484,-0.095459386706352,-0.024715503677726],[-0.0063124010339379,0.077652499079704,-0.089584305882454]],[[0.030230540782213,-0.055387981235981,0.088009878993034],[-0.058217335492373,0.058191191405058,-0.067894779145718],[-0.053371623158455,-0.011029783636332,0.012581813149154]],[[-0.011872867122293,0.1189167574048,-0.028561299666762],[-0.025374637916684,0.11770808696747,-0.037439454346895],[-0.14107123017311,-0.085515275597572,-0.013633629307151]],[[-0.043963745236397,-0.066939033567905,-0.017325378954411],[0.12022659182549,0.047242466360331,-0.049029394984245],[0.20896399021149,0.11480922996998,0.059709854424]],[[0.039343129843473,-0.036692965775728,0.013931516557932],[0.00062137073837221,-0.057052526623011,-0.026265922933817],[0.11613814532757,-0.036568719893694,-0.049544859677553]],[[0.066733300685883,0.061424180865288,0.020704062655568],[0.088925182819366,-0.0079972753301263,0.082847654819489],[0.084619104862213,0.015489836223423,-0.0024460649583489]],[[0.029108198359609,-0.15936237573624,-0.070758461952209],[0.088391438126564,0.024450397118926,-0.11189322173595],[0.015557085163891,-0.053540036082268,-0.16986720263958]],[[-0.027866698801517,0.010267097502947,0.081205680966377],[-0.047844801098108,0.050793759524822,0.00069862324744463],[-0.0959812104702,-0.067131415009499,-0.014238480478525]],[[-0.13702633976936,0.14271524548531,0.087239317595959],[0.16572819650173,-0.050337832421064,0.13510590791702],[-0.0071583152748644,0.060515198856592,0.013249048963189]],[[0.084222868084908,-0.042315639555454,0.0038112809415907],[-0.041732843965292,-0.14224208891392,0.04444370418787],[0.10643698275089,-0.1087983995676,-0.021529901772738]],[[0.07767142355442,0.0063134972006083,-0.0068896766752005],[0.11699743568897,0.090193413197994,-0.021359197795391],[-0.038396615535021,-0.023515291512012,0.042696837335825]],[[-0.022883241996169,-0.10419724881649,-0.081037893891335],[-0.085608154535294,0.044936079531908,-0.12333380430937],[-0.10829721391201,-0.062297061085701,-0.26817414164543]],[[0.064155913889408,0.03065612539649,-0.086992792785168],[-0.059602249413729,-0.020025247707963,0.097887650132179],[-0.10702649503946,-0.048764180392027,0.042631439864635]],[[-0.017689000815153,-0.040048934519291,-0.069740794599056],[0.022969141602516,0.0031367405317724,0.054028153419495],[0.018429664894938,-0.021697293967009,-0.024121021851897]],[[-0.16044341027737,0.091972753405571,-0.040542379021645],[0.052035730332136,0.10075079649687,0.076789662241936],[-0.25805234909058,-0.080957941710949,-0.035336423665285]],[[-0.012419740669429,0.057177573442459,0.069869793951511],[0.11178469657898,-0.01796424202621,-0.032461293041706],[-0.077969022095203,-0.1076280772686,-0.092035405337811]],[[0.014530030079186,-0.029718518257141,-0.07698093354702],[-0.015672231093049,0.08080767840147,0.037623684853315],[0.094154439866543,-0.058669399470091,-0.053660400211811]],[[-0.080848947167397,-0.13561849296093,-0.10172135382891],[-0.0016766435001045,-0.09317971020937,-0.0077861691825092],[-0.028014464303851,0.042529221624136,-0.082526072859764]],[[-0.0846062079072,-0.0039287516847253,-0.022199619561434],[-0.047796860337257,-0.15506981313229,-0.081105530261993],[-0.11813756078482,-0.18705366551876,0.025873636826873]]],[[[-0.10752747952938,-0.058516230434179,0.078093633055687],[-0.067059487104416,0.065182566642761,0.12227131426334],[0.02116203121841,-0.031503722071648,-0.077746167778969]],[[-0.059656344354153,-0.11366569250822,-0.016836274415255],[-0.12495897710323,0.042347110807896,0.026768699288368],[0.0063735786825418,0.071376815438271,-0.010434637777507]],[[0.070640653371811,0.1489781588316,-0.20736573636532],[0.082906112074852,0.020423218607903,0.037378441542387],[0.044229473918676,0.032457560300827,0.060292866080999]],[[-0.11516287922859,0.069437459111214,0.071225009858608],[-0.061178423464298,-0.046570044010878,-0.019788349047303],[0.051905211061239,0.019394837319851,0.0176064632833]],[[0.060404296964407,0.019065342843533,0.034252543002367],[0.049559388309717,0.046685110777617,-0.024103412404656],[-0.017872143536806,0.017955020070076,-0.057669103145599]],[[-0.13858290016651,0.16757850348949,0.13881155848503],[-0.064941614866257,-0.066387414932251,0.077410824596882],[0.10921891778708,0.069300651550293,-0.15093170106411]],[[-0.094179183244705,0.0084929028525949,0.059294104576111],[0.0058084209449589,0.041647024452686,0.01236636377871],[0.090938188135624,0.16420048475266,-0.12624278664589]],[[-0.17399090528488,-0.016175307333469,-0.10738208144903],[-0.15514902770519,0.075776979327202,0.042836651206017],[-0.069733791053295,0.026992689818144,0.16280677914619]],[[-0.073328278958797,-0.029346685856581,-0.018425235524774],[-0.067482098937035,-0.043669104576111,-0.019110299646854],[0.011666506528854,0.073042847216129,0.052688170224428]],[[0.041109573096037,0.067276977002621,-0.12549513578415],[0.031041841953993,0.043200265616179,-0.0071309609338641],[-0.093884721398354,0.034884300082922,0.051170125603676]],[[0.066231243312359,0.11875493824482,0.013262719847262],[0.020416093990207,-0.049971543252468,-0.050784479826689],[-0.0011394079774618,0.014892119914293,-0.044056225568056]],[[-0.033905684947968,0.15067881345749,-0.051751557737589],[-0.077082671225071,-0.026923537254333,-0.013631349429488],[0.040718074887991,-0.17048153281212,0.0083704115822911]],[[0.0029332779813558,0.056340508162975,0.19832010567188],[0.0014717167941853,-0.00047401891788468,0.0035490822046995],[0.028555581346154,-0.021968234330416,-0.12134765088558]],[[0.056624457240105,-0.20547224581242,-0.052139781415462],[-0.072194263339043,-0.1408716738224,-0.12744553387165],[-0.18245080113411,-0.15731698274612,-0.0028573232702911]],[[-0.0030324133113027,0.0017112680943683,-0.067871414124966],[0.073039457201958,0.02720096334815,0.021153526380658],[-0.010225328616798,0.0019057507161051,0.073779590427876]],[[0.0076324255205691,0.058018781244755,0.12399935722351],[-0.12790235877037,0.0058327689766884,-0.0085179666057229],[-0.087673015892506,0.020912282168865,-0.069880023598671]],[[0.16483083367348,0.082669578492641,-0.019520735368133],[0.021220652386546,0.034489862620831,-0.12467021495104],[0.079337567090988,0.029248068109155,0.079285830259323]],[[-0.020938359200954,0.03427716717124,0.050107832998037],[-0.095404766499996,-0.033067744225264,-0.050169199705124],[-0.1404030174017,0.071857631206512,0.095279224216938]],[[-0.10649031400681,-0.19272546470165,-0.10107808560133],[-0.14873565733433,-0.035687290132046,-0.098317436873913],[-0.19349247217178,-0.22444109618664,-0.10761130601168]],[[0.022236598655581,0.10493295639753,-0.20600546896458],[-0.035857453942299,-0.097516790032387,-0.038811851292849],[-0.015219282358885,-0.08452520519495,-0.15855087339878]],[[0.0038382629863918,0.037868730723858,-0.0060326186940074],[-0.13749605417252,0.052072197198868,0.14174552261829],[0.01687553524971,-0.12201431393623,0.013121040537953]],[[0.02567021548748,0.0019606077112257,-0.019998524338007],[-0.021936777979136,0.12539167702198,0.056892521679401],[0.048355229198933,0.028338743373752,0.093535363674164]],[[-0.072277888655663,0.083874337375164,0.03578494489193],[-0.03296809643507,-0.014714764431119,0.047336205840111],[-0.070397466421127,-0.057790737599134,0.10160550475121]],[[-0.021538434550166,0.080380022525787,0.048483215272427],[-0.19937661290169,-0.073162205517292,-0.13950940966606],[-0.11058455705643,-0.090048089623451,0.021516872569919]],[[-0.069398440420628,0.12890450656414,0.063749551773071],[-0.18391731381416,-0.017513921484351,0.052198350429535],[-0.073199920356274,-0.047965176403522,-0.074043899774551]],[[-0.079730220139027,-0.090324401855469,-0.013650392182171],[-0.015277149155736,-0.036237493157387,0.050670493394136],[0.14616319537163,-0.046436667442322,0.15181313455105]],[[-0.0090904664248228,0.067398317158222,0.11105532199144],[0.027466643601656,-0.041223455220461,-0.054195214062929],[0.0022377599962056,0.0058041103184223,-0.11191871762276]],[[0.10665495693684,-0.17310807108879,0.050748158246279],[0.0009723209659569,-0.076202064752579,-0.14699253439903],[0.15082740783691,0.10374486446381,-0.19041314721107]],[[0.10105165094137,0.040379889309406,0.0030841161496937],[0.044702235609293,-0.11709280312061,0.053712293505669],[0.00756756355986,0.079938277602196,-0.030968844890594]],[[0.028889503329992,-0.010874171741307,0.078612238168716],[-0.040743831545115,-0.078504972159863,-0.042085077613592],[-0.0205207336694,-0.001103445654735,0.037262469530106]],[[0.038822837173939,-0.039468083530664,-0.08663285523653],[0.093010202050209,-0.027603808790445,-0.044835276901722],[0.0091381501406431,-0.098018333315849,0.0090604210272431]],[[-0.024729240685701,0.072733514010906,-0.00016510835848749],[-0.00077884638449177,0.0073335384950042,-0.034937418997288],[0.15134835243225,-0.161795347929,-0.0053034173324704]]],[[[-0.065447628498077,0.06490870565176,-0.061447370797396],[-0.00072680483572185,-0.074769236147404,0.0069218296557665],[-0.094941876828671,-0.14273415505886,0.016751425340772]],[[-0.058762922883034,-0.087556898593903,0.047012206166983],[-0.056327052414417,-0.0073196515440941,-0.018066165968776],[0.019899828359485,0.071961559355259,0.059852849692106]],[[-0.057822182774544,0.11297957599163,-0.18182608485222],[0.087820291519165,-0.045120403170586,-0.0012161310296506],[0.0045090215280652,-0.17031274735928,0.19313232600689]],[[0.019059266895056,0.016048332676291,-0.077462501823902],[-0.0088368933647871,-0.12869830429554,0.046335998922586],[0.060024961829185,0.084091886878014,0.07084035128355]],[[0.047564223408699,-0.012945129536092,0.0017586461035535],[-0.016084641218185,0.093226991593838,-0.0084752729162574],[-0.052112556993961,-0.0056500094942749,0.029600920155644]],[[0.16851469874382,-0.11215276271105,-0.074010729789734],[-0.10014685243368,-0.072367839515209,-0.0028222594410181],[-0.084115527570248,-0.19366434216499,0.047304630279541]],[[-0.053573105484247,1.7803577065933e-05,-0.096711874008179],[-0.037754841148853,0.064343713223934,0.015965543687344],[-0.048483192920685,0.095614820718765,-0.16461803019047]],[[0.066125266253948,0.028038064017892,-0.053183194249868],[0.22648261487484,-0.23928219079971,-0.1038214340806],[-0.074439540505409,-0.094672501087189,0.052662249654531]],[[0.0092634186148643,-0.040459413081408,-0.04808621108532],[-0.034156300127506,-0.034645710140467,-0.065885692834854],[0.02234349027276,-0.008799928240478,0.040072433650494]],[[-0.019231187179685,0.04148156195879,0.17382973432541],[-0.11460050195456,-0.043768085539341,0.055843841284513],[0.039011042565107,0.044485297054052,-0.052577216178179]],[[-0.083754345774651,-0.088042847812176,0.017489457502961],[-0.14818269014359,0.14020092785358,0.0064549273811281],[-0.0081902705132961,-0.0053514232859015,0.027902046218514]],[[0.042918588966131,-0.040134228765965,-0.1075733602047],[-0.11437571793795,-0.084709845483303,-0.045912262052298],[-0.11829923093319,-0.12651427090168,0.070066645741463]],[[-0.10585001111031,0.15468989312649,-0.12098925560713],[-0.013777946121991,0.012944210320711,0.04837054759264],[-0.1144286096096,-0.13073001801968,0.02018628269434]],[[0.072147965431213,0.022215461358428,-0.2231121212244],[-0.011389680206776,-0.1301973760128,-0.085106387734413],[-0.13829134404659,-0.091683611273766,0.097190953791142]],[[-0.080679528415203,0.025181513279676,-0.052955683320761],[0.058836236596107,0.034962430596352,0.098424293100834],[0.011063105426729,0.0026673467364162,-0.012523965910077]],[[0.034485384821892,-0.20241203904152,-0.043190576136112],[-0.024833159521222,-0.10555296391249,0.0024684246163815],[0.085639029741287,-0.067493781447411,0.042004376649857]],[[-0.097235150635242,0.016823710873723,0.02633123844862],[0.08828753978014,0.011496665887535,0.023667119443417],[-0.011816680431366,-0.0081088524311781,0.032110001891851]],[[0.1038931235671,-0.093606919050217,-0.010103094391525],[0.017263304442167,-0.12913906574249,0.042577113956213],[-0.027154227718711,0.044839110225439,-0.082455590367317]],[[-0.11309821158648,0.0040858024731278,0.090346954762936],[0.0091341715306044,0.090648666024208,-0.065516106784344],[0.017514837905765,-0.10520032793283,-0.17327110469341]],[[-0.023716151714325,0.06204579398036,0.042334288358688],[-0.12505258619785,0.1089224666357,-0.080896139144897],[0.04171484708786,-0.073812216520309,0.023394519463181]],[[-0.004250178579241,0.0058128051459789,0.0085379155352712],[0.024215677753091,0.014953874051571,-0.022645603865385],[0.038647830486298,-0.018515048548579,0.035850320011377]],[[0.0125284017995,-0.18533723056316,-0.050255265086889],[0.0075824484229088,0.067737311124802,0.049765899777412],[-0.15095852315426,0.12943582236767,0.031017372384667]],[[-0.0077883414924145,0.033166341483593,0.069389119744301],[0.04042749479413,-0.1426944732666,0.17299979925156],[-0.17448322474957,0.06139250844717,-0.0084220357239246]],[[0.14951354265213,0.0014696423895657,-0.10134849697351],[-0.1737767457962,-0.16959086060524,-0.13336032629013],[0.03416920080781,0.014634361490607,-0.062988169491291]],[[0.052122544497252,-0.02403873950243,-0.071683891117573],[-0.040056649595499,-0.10299326479435,0.025879936292768],[-0.021882662549615,-0.090387992560863,0.022852029651403]],[[-0.013578586280346,0.032832331955433,0.089214950799942],[0.03288684412837,0.132129535079,-0.12516944110394],[0.020267702639103,0.031263262033463,-0.29553917050362]],[[0.045781765133142,0.0025614604819566,-0.011403751559556],[-0.063640221953392,-0.0063228998333216,0.032800201326609],[0.01482349820435,0.05527825281024,-0.053475990891457]],[[-0.044663731008768,-0.10158953815699,0.01063050609082],[0.0059637031517923,0.07962305098772,-0.069403395056725],[0.010572081431746,0.035271812230349,0.0060878335498273]],[[0.15831191837788,-0.24284103512764,-0.17087307572365],[-0.12270140647888,0.0025394596159458,0.031642381101847],[0.01960452273488,0.030780900269747,0.076105564832687]],[[0.036491312086582,0.051847890019417,0.019626354798675],[0.0025339976418763,-0.091062881052494,-0.085563622415066],[-0.0081461509689689,-0.0061753443442285,0.0050654388032854]],[[0.089536994695663,0.028778187930584,0.048246413469315],[-0.033901631832123,-0.059107065200806,0.13116618990898],[-0.065894961357117,0.10209596902132,0.077647380530834]],[[-0.023833027109504,0.035213753581047,0.089301750063896],[-0.070612564682961,-0.02637579664588,-0.020607413724065],[-0.018492734059691,-0.044973306357861,-0.1285934150219]]],[[[0.041859462857246,-0.072715058922768,-0.088475078344345],[0.052182033658028,-0.03583712130785,-0.20862947404385],[-0.012195535935462,-0.0990309715271,-0.06795347481966]],[[-0.025243738666177,-0.070357151329517,-0.036027319729328],[-0.11322505027056,-0.024532662704587,-0.004035078920424],[-0.028922885656357,-0.051567409187555,0.089313581585884]],[[-0.18516993522644,0.023749062791467,0.1007441803813],[0.032157775014639,0.036069765686989,0.0081300986930728],[0.02392659522593,0.14390784502029,0.034357514232397]],[[-0.027794750407338,-0.095917008817196,0.0060799503698945],[-0.0095238843932748,-0.043885465711355,-0.013735146261752],[0.038390573114157,0.11536104232073,-0.083874978125095]],[[-0.067790940403938,-0.0035704700276256,-0.023570420220494],[0.021493816748261,0.12027119100094,-0.027461491525173],[0.078134022653103,0.16253623366356,0.004601170308888]],[[-0.14397047460079,-0.022484675049782,-0.031959358602762],[0.068900190293789,0.015264074318111,-0.11603016406298],[-0.10608902573586,0.014777077361941,-0.033050447702408]],[[0.032468065619469,-0.064588360488415,0.01017596013844],[0.048711948096752,-0.064976908266544,0.10928715765476],[-0.0095038926228881,0.050979368388653,0.023457454517484]],[[0.092908397316933,-0.04405452311039,0.0040425844490528],[-5.9798418078572e-05,-0.04216480627656,-0.027787966653705],[0.044980976730585,0.070356905460358,0.021397123113275]],[[-0.086118802428246,-0.016110647469759,-0.09951589256525],[0.016393883153796,-0.043743390589952,-0.019231114536524],[0.014509892091155,0.039363369345665,0.064373195171356]],[[-0.18607538938522,-0.087775908410549,0.067602977156639],[0.070923417806625,0.020055178552866,-0.041187852621078],[0.054680321365595,-0.10800236463547,0.027558755129576]],[[-0.0097449384629726,0.016518604010344,-0.097072646021843],[0.082811467349529,0.01321744453162,0.016292039304972],[0.02814850769937,0.061817139387131,0.0056956121698022]],[[-0.011971613392234,-0.06667897850275,0.057401705533266],[-0.16052411496639,-0.099676579236984,-0.097490683197975],[-0.12111004441977,-0.026812618598342,-0.1428777128458]],[[-0.0074334419332445,0.028944475576282,0.019572667777538],[0.068792700767517,-0.050075236707926,-0.053332537412643],[0.094722673296928,0.07048075646162,-0.063636049628258]],[[0.017442848533392,-0.086062595248222,-0.10198137164116],[-0.078113682568073,-0.20637039840221,-0.16648510098457],[-0.16233412921429,-0.039481412619352,-0.17190153896809]],[[-0.036588001996279,0.045384671539068,0.019733244553208],[-0.019079988822341,0.032621789723635,0.0018503476167098],[0.041462481021881,0.088399633765221,-0.016519255936146]],[[-0.064387582242489,-0.077714711427689,-0.090696446597576],[0.016551453620195,-0.024856269359589,-0.059918340295553],[-0.074044309556484,-0.04137060791254,-0.099420048296452]],[[0.10641402006149,0.093389272689819,0.029185052961111],[0.23603291809559,-0.098848387598991,0.12851156294346],[-0.10546004772186,-0.052359703928232,-0.019083963707089]],[[-0.018711557611823,0.070936299860477,-0.16537295281887],[-0.050743594765663,-0.026593195274472,-0.025456685572863],[-0.0022224409040064,0.01023040432483,0.067216828465462]],[[0.039052210748196,0.1006126627326,0.030716612935066],[0.068593502044678,-0.077820830047131,-0.19816797971725],[0.016562649980187,0.031828340142965,-0.098539687693119]],[[0.12163854390383,0.062723815441132,-0.01892432756722],[0.13037863373756,0.073611043393612,0.09207608550787],[-0.058071445673704,0.02353092841804,-0.12993633747101]],[[-0.089177817106247,0.052659019827843,-0.012753440998495],[0.026274921372533,-0.10724897682667,0.016080508008599],[0.088266015052795,-0.013355272822082,0.04553834721446]],[[-0.11762971431017,-0.066856190562248,0.037063907831907],[-0.080056987702847,0.004599632229656,-0.02004431001842],[0.0087705682963133,-0.11156711727381,0.084913395345211]],[[-0.090323373675346,-0.066047064960003,0.038571130484343],[0.019755417481065,-0.037838723510504,0.083440154790878],[-0.092529475688934,0.11258789896965,-0.068588368594646]],[[0.088446244597435,0.045164626091719,-0.035660158842802],[-0.066534072160721,-0.15893714129925,-0.022541249170899],[-0.10717165470123,-0.12491887807846,-0.11373353004456]],[[-0.15444225072861,-0.1509222984314,0.038322672247887],[0.017713891342282,-0.041273102164268,0.1702936142683],[-0.022407561540604,0.051226228475571,0.021270029246807]],[[0.019560661166906,0.076562114059925,0.008804539218545],[0.043997656553984,-0.13097546994686,0.041726533323526],[-0.10455164313316,-0.057620134204626,-0.051445629447699]],[[0.093593142926693,-0.044290229678154,-0.024837689474225],[0.0092748068273067,-0.0033316023182124,-0.012075820937753],[-0.071419261395931,-0.00048795752809383,0.025769324973226]],[[0.057236462831497,0.045502077788115,0.060885492712259],[-0.0092292921617627,0.13770903646946,0.096197493374348],[0.07263196259737,0.014115571044385,0.03341743722558]],[[0.14009933173656,0.092468678951263,-0.081811219453812],[0.021656677126884,-0.079821333289146,-0.14863093197346],[-0.090281173586845,-0.10902651399374,-0.013419748283923]],[[0.067726336419582,0.06207799911499,-0.014480919577181],[0.057749971747398,-0.054323263466358,0.024824684485793],[-0.10500414669514,-0.0037502991035581,-0.12333427369595]],[[0.032274786382914,-0.014002561569214,0.015106366015971],[0.040503270924091,0.029192162677646,-0.006142602302134],[0.086716063320637,0.024878907948732,0.021352883428335]],[[-0.11881774663925,-0.095444187521935,-0.010493542067707],[0.04234379529953,0.044867001473904,0.044772006571293],[-0.056952223181725,-0.070966310799122,0.010169030167162]]],[[[-0.016353499144316,-0.080827973783016,-0.012768546119332],[-0.031229246407747,-0.097514443099499,-0.063059628009796],[0.011868302710354,-0.030497189611197,-0.016330868005753]],[[0.0039639035239816,0.0071336477994919,-0.071157909929752],[0.029332397505641,-0.013613133691251,0.0025278781540692],[0.054826341569424,-0.044546667486429,-0.0045440210960805]],[[-0.12193335592747,0.11218213289976,0.06445474177599],[-0.15677745640278,0.0089890966191888,-0.091385804116726],[-0.057984873652458,0.069482505321503,-0.12618844211102]],[[-0.075153656303883,-0.016072850674391,0.056210447102785],[-0.054981682449579,-0.025144590064883,0.036688301712275],[-0.1215343400836,0.021304681897163,-0.10506200045347]],[[-0.0099783604964614,0.028264537453651,-0.061903707683086],[0.024332206696272,0.063721008598804,-0.0034320303238928],[-0.029875516891479,0.025322670117021,0.034045435488224]],[[-0.057762071490288,0.16799256205559,-0.10344144701958],[0.020003346726298,0.078432410955429,-0.11994363367558],[-0.11038771271706,-0.024572152644396,0.071508675813675]],[[-0.016128111630678,-0.12938377261162,0.045686271041632],[0.12538269162178,0.010717121884227,-0.060798421502113],[-0.077606931328773,-0.0097904587164521,-0.11092486977577]],[[-0.11752206087112,-0.052620362490416,0.10188154876232],[-0.084420621395111,-0.074576944112778,-0.037266220897436],[-0.087092652916908,-0.08418795466423,-0.0080394456163049]],[[0.0084500443190336,0.045320026576519,-0.039198111742735],[0.036979779601097,0.047329731285572,-0.046601843088865],[0.031971242278814,-0.016072189435363,0.017839742824435]],[[-0.0301379468292,-0.25216990709305,-0.25327891111374],[0.039483822882175,-0.020258275792003,0.19186043739319],[0.043000739067793,0.058819141238928,0.031184267252684]],[[0.0068120430223644,-0.018222589045763,-0.023918075487018],[0.036249328404665,-0.046498205512762,0.053316995501518],[0.021534444764256,-0.05596624687314,-0.074738949537277]],[[0.045237511396408,0.067422144114971,-0.01185610704124],[-0.049564573913813,0.039606459438801,0.01895684748888],[-0.11066740751266,0.19385229051113,0.049589924514294]],[[0.0090795001015067,0.23452945053577,0.11868836730719],[0.0077594583854079,-0.06623337417841,0.02120260708034],[0.013398204930127,-0.068023666739464,-0.0027151061221957]],[[-0.049584273248911,0.052752889692783,0.063719749450684],[-0.032938402146101,0.06321757286787,0.0051167719066143],[-0.03636609390378,0.28015404939651,0.031541235744953]],[[0.029002286493778,-0.078376121819019,0.011692151427269],[0.012839812785387,0.057081468403339,-0.020358679816127],[0.028663482517004,0.01701638661325,-0.010861286893487]],[[0.051439348608255,0.11006429791451,0.020925780758262],[-0.01946172863245,-0.0070343338884413,-0.092256963253021],[0.052845764905214,0.096571668982506,0.04086584225297]],[[0.092525392770767,-0.25283312797546,-0.2300670593977],[0.14142490923405,-0.040510181337595,-0.1192139685154],[-0.080488815903664,-0.15342997014523,0.078828670084476]],[[-0.030891379341483,0.0061973403207958,-0.094801396131516],[-0.11018098890781,-0.034209340810776,0.021894302219152],[0.090135276317596,0.05305652320385,0.019252061843872]],[[-0.040877629071474,-0.18083018064499,-0.10431537777185],[-0.086946457624435,0.083583191037178,-0.2494885623455],[0.12693978846073,0.04480878636241,0.0030135316774249]],[[0.0089844530448318,-0.088546305894852,-0.11935874074697],[-0.054579079151154,-0.21325142681599,0.055332791060209],[-0.32247716188431,0.079272344708443,0.034375634044409]],[[-0.044440381228924,-0.034100864082575,-0.04245213419199],[-0.017164375633001,-0.019829599186778,0.025579260662198],[-0.0086133228614926,-0.02081454731524,-0.03120843693614]],[[-0.011161062866449,0.050686925649643,0.18339876830578],[-0.14668668806553,-0.027288414537907,0.13215559720993],[-0.19927878677845,0.01834455691278,-0.059880651533604]],[[-0.13990281522274,0.061213251203299,-0.026011928915977],[0.053336586803198,0.025727022439241,-0.020403185859323],[0.009559940546751,-0.063522480428219,0.075316652655602]],[[-0.11254736036062,0.029392644762993,0.017910061404109],[-0.090529225766659,0.051585901528597,0.091275930404663],[0.053550068289042,-0.086968921124935,0.036240197718143]],[[-0.093177311122417,-0.17082381248474,-0.34215521812439],[0.2231147736311,-0.024828216060996,-0.13224560022354],[-0.0022556732874364,-0.11686646938324,-0.012936065904796]],[[-0.10645174235106,-0.19396896660328,-0.0076802778057754],[0.033730082213879,-0.12690310180187,0.097926452755928],[0.0091423541307449,-0.21508806943893,-0.0088940728455782]],[[0.0076239877380431,0.11713635921478,-0.023866383358836],[-0.036997824907303,-0.097242273390293,0.052299827337265],[0.10307080298662,-0.021885907277465,-0.058583240956068]],[[-0.0056961253285408,-0.061185754835606,0.029301699250937],[0.014393718913198,-0.14085492491722,0.078661546111107],[0.092254899442196,-0.2267187088728,0.092917129397392]],[[0.057881955057383,0.032236397266388,0.108318567276],[-0.068094670772552,-0.16656091809273,-0.052188545465469],[0.068710461258888,-0.079151183366776,-0.097640559077263]],[[-0.0056015783920884,0.021702675148845,0.067902944982052],[0.0044013820588589,-0.095127888023853,0.10823115706444],[-0.02309332229197,-0.017680404707789,-0.079910598695278]],[[0.10356207191944,-0.051888935267925,0.0041879033669829],[0.068013392388821,0.017652869224548,-0.079543568193913],[0.0089305806905031,-0.027704587206244,-0.017339797690511]],[[0.054979119449854,-0.022905671969056,-0.04520021006465],[0.011446762830019,0.061364829540253,-0.063590623438358],[0.034425817430019,-0.090708792209625,0.02107797935605]]],[[[-0.095925331115723,0.0058486587367952,-0.024948505684733],[-0.093406565487385,0.05030133575201,0.054047238081694],[-0.058618638664484,-0.059456244111061,0.090362817049026]],[[-0.0241774097085,-0.034094367176294,0.025463858619332],[-0.12069980055094,0.073787234723568,0.020832728594542],[0.070782013237476,0.026308452710509,0.064900562167168]],[[0.0095937373116612,0.054522398859262,0.10839496552944],[-0.010536337271333,-0.051581725478172,-0.013323987834156],[0.14623518288136,0.0028850154485554,-0.13664126396179]],[[-0.1358849555254,-0.012658162042499,-0.11351647973061],[-0.02393663674593,-0.011659086681902,0.045128677040339],[-0.0029141956474632,-0.031114123761654,0.073493897914886]],[[0.0028399128932506,0.11153347790241,-0.029470473527908],[0.0013833227567375,-0.10374622046947,-0.023201188072562],[-0.090376347303391,0.11864400655031,-0.13925769925117]],[[0.086114175617695,0.13147856295109,-0.0029187730979174],[0.072726048529148,0.1180788949132,-0.046955674886703],[0.015819123014808,-0.077055849134922,-0.063133880496025]],[[-0.15283001959324,-0.065542161464691,0.020564429461956],[0.027428366243839,-0.0030268493574113,0.018279375508428],[0.15144656598568,0.09596760571003,0.023559119552374]],[[-0.061636067926884,-0.035687703639269,0.13849011063576],[-0.12209603190422,0.028502179309726,0.18581978976727],[-0.093237087130547,-0.11780154705048,0.087908811867237]],[[-0.060267090797424,-6.2612642068416e-05,-0.059392683207989],[-0.056397292762995,0.0019400365417823,-0.039034858345985],[-0.021867616102099,0.10557729005814,0.16444091498852]],[[-0.043150510638952,-0.030374363064766,0.089538462460041],[-0.0078159663826227,-0.18251404166222,-0.074930354952812],[0.0007477899780497,0.052950259298086,-0.025509182363749]],[[-0.064254090189934,-0.024043370038271,0.015800001099706],[-0.069972574710846,-0.046211704611778,-0.046985771507025],[0.052915889769793,0.074448890984058,-0.0023820635396987]],[[0.086120426654816,-0.10899029672146,0.10288700461388],[-0.11601712554693,-0.14637118577957,0.0090764546766877],[0.12439205497503,-0.02270488627255,0.083681099116802]],[[-0.10356824100018,0.15489846467972,-0.022494543343782],[-0.19403466582298,-0.098358012735844,-0.13397637009621],[0.0098692271858454,-0.051036927849054,-0.023901611566544]],[[-0.035272933542728,0.09679276496172,0.0071940748021007],[-0.081726834177971,0.059266287833452,0.054772388190031],[-0.1040283665061,0.059224236756563,-0.095172181725502]],[[0.11120907217264,-0.083648003637791,-0.0012308715377003],[-0.013068215921521,-0.13204580545425,0.054850809276104],[0.03442395478487,-0.0095192072913051,-0.021687023341656]],[[0.022837342694402,0.032127164304256,-0.019555527716875],[-0.093864031136036,0.023433124646544,0.14365807175636],[0.0061007812619209,0.053469158709049,-0.10777601599693]],[[0.053102392703295,0.033340208232403,-0.080199174582958],[-0.052267894148827,-0.17643475532532,-0.081103503704071],[-0.034157391637564,0.072746969759464,-0.021813713014126]],[[-0.010989893227816,-0.016833445057273,0.11129789054394],[-0.27879264950752,0.022265305742621,0.080648899078369],[-0.020856222137809,0.03824545443058,0.03257604315877]],[[-0.051739595830441,-0.069249987602234,0.038005549460649],[-0.044501598924398,0.064727321267128,0.23592154681683],[0.094188258051872,-0.040814831852913,-0.070089802145958]],[[-0.057250790297985,-0.01376554556191,0.1255921125412],[-0.17554874718189,0.11992286145687,0.011008240282536],[-0.16132394969463,0.0090356767177582,0.10530563443899]],[[0.095057681202888,-0.018852425739169,-0.11964099854231],[-0.063774704933167,-0.026707015931606,0.073445193469524],[-0.027745366096497,0.11934641003609,0.0036259111948311]],[[0.1622016876936,0.068775899708271,0.11999128758907],[0.11817914247513,-0.079244546592236,-0.12813965976238],[0.056473046541214,-0.18080331385136,-0.013162269257009]],[[-0.027726132422686,0.074844069778919,0.049679789692163],[-0.12552401423454,0.050777848809958,-0.031468946486712],[-0.057342324405909,-0.065306149423122,-0.013811622746289]],[[-0.033868376165628,0.059182066470385,-0.01689107529819],[0.033266201615334,-0.097420938313007,-0.0012909626821056],[-0.11995801329613,0.095607452094555,0.10621291399002]],[[-0.22161760926247,0.075510360300541,-0.16029419004917],[-0.0032467173878103,0.029860084876418,0.10232395678759],[-0.18953578174114,0.028306536376476,-0.081334695219994]],[[-0.023157384246588,0.039838045835495,0.021593501791358],[-0.1040628477931,-0.0071578654460609,-0.00974824372679],[-0.083699993789196,-0.02362622320652,0.043667022138834]],[[-0.13371898233891,0.040682822465897,0.018782751634717],[0.011231864802539,0.0054529248736799,0.052401356399059],[0.0065909838303924,0.011434259824455,-0.034721411764622]],[[0.18942280113697,0.10830521583557,0.014751955866814],[0.07637607306242,0.0061332173645496,-0.15706121921539],[0.088711030781269,0.064414300024509,-0.30970251560211]],[[-0.072908371686935,-0.10779707878828,-0.12796734273434],[-0.026711853221059,-0.025829542428255,0.067826472222805],[-0.12416055798531,-0.042723204940557,-0.11183653771877]],[[-0.034305457025766,-0.043610312044621,-0.058842178434134],[-0.21331115067005,-0.055469259619713,0.11140511929989],[0.096451178193092,0.024030389264226,0.090888313949108]],[[-0.0974465534091,0.019316304475069,-0.10423721373081],[0.090694703161716,0.06103490293026,-0.033993404358625],[0.0036273889709264,0.0036889736074954,-0.044003918766975]],[[-0.037857264280319,0.0031588294077665,-0.013295746408403],[-0.080449692904949,0.0061283293180168,-0.0018732351018116],[-0.0026242467574775,-0.013234861195087,0.051685102283955]]],[[[-0.015134979970753,-0.0096675548702478,0.066372074186802],[0.030846582725644,-0.028386697173119,0.091257981956005],[0.04167778044939,0.042411774396896,-0.056079555302858]],[[0.04372051358223,0.0052372687496245,-0.0023962834384292],[0.0040280255489051,0.072487384080887,0.028665766119957],[-0.083587966859341,0.04838602617383,-0.031523175537586]],[[0.035313338041306,-0.062278434634209,0.042889554053545],[-0.036085624247789,-0.032944317907095,-0.09477986395359],[0.027084622532129,0.020351121202111,-0.055634062737226]],[[-0.054904498159885,0.073297455906868,0.008974296040833],[0.0031632212921977,0.047968663275242,-0.024060171097517],[-0.0205301605165,0.041634794324636,-0.046369094401598]],[[0.048239249736071,-0.079956278204918,-0.029707247391343],[-0.089164659380913,0.15789626538754,0.01279104501009],[0.045382834970951,0.00363470450975,0.037685453891754]],[[0.030397808179259,0.05852197855711,0.040381375700235],[-0.031362436711788,0.022726263850927,-0.0056602451950312],[-0.027260081842542,-0.071397237479687,0.022054033353925]],[[0.024960888549685,0.13730303943157,0.060569353401661],[0.048163928091526,0.02433948777616,-0.0010122733656317],[-0.043661873787642,0.011008646339178,-0.071701787412167]],[[-0.14289811253548,-0.051314048469067,-0.00091534433886409],[-0.017432101070881,0.047177378088236,0.039342410862446],[0.036989375948906,-0.098531529307365,0.095405489206314]],[[0.018703969195485,-0.036922786384821,0.0047135609202087],[0.10691500455141,0.012445613741875,0.12643314898014],[0.04786104336381,-0.029496230185032,-0.015408543869853]],[[0.12721057236195,-0.043854847550392,0.033942062407732],[0.072978936135769,-0.050056230276823,-0.025416646152735],[0.0071908561512828,-0.11203541606665,0.075713351368904]],[[-0.029497006908059,0.021963221952319,-0.022520683705807],[0.055324241518974,0.0093306135386229,0.018033450469375],[-0.017141187563539,0.036500420421362,-0.098359137773514]],[[0.047973241657019,0.028436047956347,-0.13794404268265],[0.092937216162682,0.053565327078104,0.090594299137592],[0.054052453488111,0.051171485334635,-0.044070012867451]],[[-0.055064924061298,-0.010357189923525,0.016604287549853],[-0.0072705899365246,0.012946534901857,0.037885215133429],[-0.038465488702059,0.032958649098873,-0.00925756059587]],[[0.017316730692983,0.0067061390727758,-0.060567650943995],[-0.046906903386116,-0.03129206597805,-0.016433818265796],[0.074212275445461,-0.028246987611055,0.098258428275585]],[[0.00049636024050415,-0.073167130351067,0.088164947926998],[-0.035561066120863,0.085057519376278,-0.031464833766222],[0.0087494906038046,-0.014369732700288,-0.09382763504982]],[[-0.10027515888214,0.043392729014158,-0.068300150334835],[-0.014913479797542,-0.046379029750824,0.035202454775572],[0.018130999058485,0.094694301486015,0.12564295530319]],[[-0.006187588442117,-0.010834590531886,0.047837611287832],[-0.033669404685497,-0.052028313279152,0.0080303382128477],[-0.054336909204721,-0.044525146484375,0.0023559133987874]],[[0.030180357396603,0.0039998977445066,0.023705746978521],[-0.0019662268459797,0.03440522775054,0.009773688390851],[-0.0037089954130352,-0.032055307179689,-0.082301072776318]],[[-0.027565937489271,0.032485950738192,0.012829849496484],[0.057161644101143,-0.016948191449046,-0.01899629086256],[-0.00094560952857137,0.09533353894949,0.085206776857376]],[[0.026606963947415,-0.01900408603251,0.10324388742447],[-0.056630656123161,-0.079470083117485,-0.02846266143024],[0.049344100058079,-0.029818531125784,0.013420888222754]],[[-0.069270007312298,-0.012464998289943,0.0020370525307953],[-0.1301586329937,0.010907872579992,-0.019847447052598],[-0.13334311544895,-0.097457207739353,-0.16789126396179]],[[0.078131638467312,0.13110503554344,0.041890874505043],[-0.006835444830358,-0.019426172599196,0.087372250854969],[0.0076691759750247,-0.019035883247852,0.0041460208594799]],[[0.07087204605341,0.16603147983551,0.17477609217167],[-0.030616596341133,0.020113371312618,0.078059270977974],[-0.0038203906733543,-0.043519426137209,-0.088588573038578]],[[0.027269866317511,0.013983477838337,-0.0010712833609432],[-0.03820588067174,-0.007998893968761,-0.072113052010536],[-0.037770740687847,-0.030162591487169,-0.1201937943697]],[[0.018986279144883,0.059109773486853,0.023003818467259],[-0.029166430234909,0.046089932322502,-0.026844058185816],[0.053602021187544,-0.017856240272522,-0.017573967576027]],[[-0.032779615372419,0.059588652104139,0.0047358693554997],[-0.014196680858731,0.058022271841764,0.0084441788494587],[-0.041565470397472,0.00080360984429717,0.064939707517624]],[[0.0071548530831933,-0.069055311381817,-0.037267934530973],[0.11751118302345,0.064920246601105,0.016978090628982],[-0.013382010161877,-0.001265928032808,-0.12817928195]],[[-0.031787719577551,-0.10502071678638,0.023623941466212],[0.0010371109237894,0.0091599291190505,0.02065129391849],[0.043570056557655,0.0051109562627971,0.10745738446712]],[[-0.028747798874974,-0.003557913005352,0.0043301428668201],[0.0097075924277306,0.12225242704153,0.07627560198307],[0.081895232200623,0.069013305008411,-0.057261653244495]],[[0.028103340417147,-0.071065790951252,-0.035575833171606],[0.1483982950449,0.12530454993248,-0.068295784294605],[0.0986403003335,0.019785337150097,-0.049786020070314]],[[0.12049126625061,-0.11330234259367,0.062936536967754],[0.027142541483045,0.078718893229961,-0.10764480382204],[0.015270254574716,-0.016831817105412,-0.073489807546139]],[[0.00012963706103619,-0.044585410505533,0.040861789137125],[0.017856813967228,0.065533563494682,0.053021017462015],[-0.035978894680738,-0.0079583842307329,0.027757314965129]]],[[[-0.033667270094156,-0.10226589441299,0.052321825176477],[0.078157566487789,-0.083335913717747,0.042146671563387],[-0.0060513094067574,-0.0706542506814,-0.088802628219128]],[[0.0057598985731602,0.022363470867276,0.0043369843624532],[0.059536743909121,0.019825572147965,0.051078870892525],[-0.070530205965042,0.073322340846062,0.0070579191669822]],[[0.00058063317555934,0.075347490608692,0.064867757260799],[0.04772699251771,0.090561240911484,-0.21795213222504],[-0.096068948507309,0.04579097032547,-0.10369785875082]],[[-0.080026902258396,0.10313844680786,0.050068452954292],[-0.1108015999198,-0.0066500226967037,-0.067781463265419],[-0.047178667038679,-0.0032512457109988,0.0063220118172467]],[[-0.089020103216171,-0.04608315974474,0.023562537506223],[-0.10359133034945,0.043113518506289,0.0077293245121837],[0.013030547648668,-0.038789425045252,0.063882522284985]],[[-0.0031850952655077,0.072284951806068,-0.077210560441017],[0.060033362358809,0.062563896179199,-0.09053672850132],[0.18255877494812,0.027846364304423,-0.14017869532108]],[[0.095682412385941,-0.035190414637327,0.09041939675808],[0.029314063489437,-0.02455835416913,-0.028829839080572],[0.053006749600172,-0.039133097976446,-0.001198714482598]],[[0.10651427507401,-0.075943186879158,0.076278775930405],[-0.044192910194397,-0.052738074213266,0.10058318078518],[-0.040006641298532,0.079254165291786,0.071587845683098]],[[-0.057837344706059,-0.016704285517335,-0.012183891609311],[0.037496846169233,0.039280220866203,0.036236640065908],[0.0052320826798677,-0.070987284183502,0.01457508187741]],[[0.022054078057408,-0.031847026199102,-0.028175549581647],[0.04735391587019,0.081387855112553,-0.056033980101347],[0.092110149562359,-0.060758661478758,-0.061393335461617]],[[0.003032024949789,-0.18792207539082,0.039168160408735],[0.029541160911322,0.012182984501123,-0.10088989883661],[-0.016776142641902,0.069311991333961,0.018317624926567]],[[-0.16756436228752,-0.044903520494699,0.0057481629773974],[-0.035067472606897,0.077484548091888,0.039335783571005],[-0.13533039391041,-0.1042688190937,-0.098013497889042]],[[-0.07055239379406,0.011654836125672,-0.033899314701557],[-0.02647135220468,0.15751786530018,0.18405286967754],[0.013129884377122,0.091073222458363,0.1050930544734]],[[-0.024880368262529,-0.079384483397007,0.17117768526077],[0.0082122841849923,-0.057671874761581,0.11913956701756],[-0.0060156467370689,0.019533118233085,0.18559204041958]],[[0.020694896578789,-0.043273013085127,0.032008036971092],[-0.037162370979786,0.018877914175391,-0.05047070980072],[0.033219415694475,0.024493703618646,0.021653812378645]],[[0.09721927344799,0.0043519744649529,0.10042502731085],[0.047521490603685,-0.014019845053554,-0.13228677213192],[-0.028133852407336,0.091143600642681,0.1378929913044]],[[-0.10821013897657,-0.16157484054565,-0.004863053560257],[0.02040084078908,0.11782930791378,0.037725031375885],[-0.10890220105648,-0.11629258096218,-0.17630161345005]],[[0.048626128584146,-0.15142196416855,-0.10970421135426],[-0.063084796071053,0.060797538608313,-0.026472680270672],[0.017676673829556,-0.057133082300425,-0.098061144351959]],[[0.021086178719997,0.071323700249195,0.030322805047035],[0.022323809564114,-0.01271546445787,0.027502551674843],[0.0081079248338938,-0.16095440089703,0.060509148985147]],[[0.067013546824455,-0.12154322862625,0.13521374762058],[-0.077412337064743,-0.17582854628563,0.01439337618649],[0.0060258763842285,-0.038903042674065,0.031061941757798]],[[-0.10622061789036,0.0063237375579774,0.025606537237763],[-0.17681662738323,-0.03137231990695,0.054710447788239],[-0.052690993994474,0.0045063905417919,0.038392186164856]],[[-0.0049331914633512,-0.0072243819013238,0.13846479356289],[-0.0040694563649595,-0.021675050258636,-0.0067659835331142],[-0.050278939306736,0.032141834497452,-0.053802981972694]],[[-0.06093917042017,0.080496393144131,-0.0044018579646945],[-0.11505477875471,0.12067119777203,-0.0059358365833759],[-0.10431216657162,-0.022142089903355,0.05516004934907]],[[-0.091521121561527,0.093486472964287,-0.026003874838352],[0.072394914925098,-0.035470318049192,0.014198458753526],[-0.097463682293892,0.016333831474185,0.046421531587839]],[[-0.21658737957478,-0.11867358535528,-0.16454939544201],[0.056311074644327,0.081257596611977,0.14192767441273],[0.028657108545303,0.074596457183361,0.011251308955252]],[[-0.048923891037703,-0.04808796569705,-0.019417313858867],[-0.10451916605234,-0.085631243884563,-0.03970530629158],[-0.069132566452026,0.058141153305769,-0.00069601263385266]],[[-0.044772531837225,0.11924090981483,-0.065752550959587],[-0.067517779767513,-0.033580202609301,0.048591312021017],[0.029718186706305,-0.0098025314509869,-0.052516974508762]],[[-0.036240376532078,-0.12378215044737,0.015700917690992],[0.044620588421822,-0.092142082750797,-0.089662797749043],[0.27787202596664,0.15844152867794,-0.046998232603073]],[[-0.058022640645504,0.019594395533204,0.052525065839291],[-0.08115615695715,0.12309073656797,-0.054665572941303],[-0.071772232651711,0.01169996522367,0.10317204147577]],[[-0.016801564022899,0.030231181532145,0.072025947272778],[-0.087761729955673,0.00034056056756526,0.08368980884552],[-0.102494597435,-0.011424751020968,0.11437968164682]],[[-0.04778091609478,-0.017203317955136,0.040100071579218],[-0.02979720197618,0.038934696465731,-0.023647759109735],[-0.014636835083365,-0.0097112664952874,-0.093624457716942]],[[-0.074802346527576,-0.041335411369801,0.1045156866312],[0.036957699805498,-0.0044843349605799,0.034816969186068],[-0.027880186215043,0.032371640205383,-0.015467282384634]]],[[[-0.1577375382185,-0.16287967562675,0.075173087418079],[-0.10273025929928,-0.10842921584845,0.048697765916586],[-0.12184100598097,0.0084429634734988,-0.031162369996309]],[[-0.016126429662108,0.095464020967484,-0.015949890017509],[0.0011525145964697,-0.0069748149253428,0.013246677815914],[-0.035739488899708,-0.057640120387077,0.027463750913739]],[[0.064738176763058,0.14315865933895,-0.099105186760426],[-0.14473086595535,0.038182593882084,0.10919649899006],[-0.16083201766014,-0.010282364673913,-0.040999196469784]],[[0.035231824964285,-0.010615536011755,-0.036725796759129],[-0.10546532273293,-0.013687698170543,0.020194942131639],[0.084061019122601,0.035038378089666,0.070282258093357]],[[-0.0054886313155293,0.012804613448679,0.026055652648211],[-0.017456734552979,0.027933554723859,-0.10204818844795],[-0.059030175209045,-0.0025030220858753,-0.063696220517159]],[[0.13945226371288,0.12251053750515,0.10848040878773],[0.14675645530224,-0.038950216025114,-0.056157797574997],[-0.054155621677637,-0.049405068159103,0.022269589826465]],[[0.003911204636097,-0.021859437227249,0.041461531072855],[0.11321947723627,0.010952523909509,0.094629116356373],[0.02554558776319,-0.061201706528664,-0.071048617362976]],[[-0.12401328235865,-0.15176518261433,0.14037694036961],[-0.1396069675684,-0.22091820836067,0.092941388487816],[-0.28085294365883,-0.03666428104043,0.070125624537468]],[[0.018006812781096,0.11900290846825,0.082633294165134],[-0.042909298092127,0.087732277810574,0.097761034965515],[-0.076568581163883,-0.057309027761221,-0.0408098064363]],[[-0.027895946055651,-0.10656041651964,0.037411492317915],[-0.1233257651329,0.047746483236551,-0.14395366609097],[-0.027017807587981,-0.012957430444658,0.02641792781651]],[[-0.076688252389431,0.10172061622143,-0.0083717396482825],[0.038578819483519,0.010905836708844,-0.020467858761549],[-0.087301395833492,0.084483705461025,7.6105898187961e-05]],[[0.15730312466621,0.097384236752987,-0.093425206840038],[0.062791235744953,-0.15124720335007,-0.0053906179964542],[-0.13853585720062,-0.018980599939823,0.11338997632265]],[[-0.13500443100929,0.19913165271282,0.1327531337738],[0.039568293839693,0.096243776381016,-0.070004351437092],[0.051553130149841,-0.019396824762225,-0.021249914541841]],[[-0.064031019806862,-0.029665891081095,-0.13892793655396],[-0.12957890331745,0.1041492074728,0.047169908881187],[-0.030875142663717,0.088090777397156,0.062418475747108]],[[-0.0034281429834664,-0.021492194384336,0.046323858201504],[0.021060457453132,-0.023621102795005,0.043502051383257],[-0.040819399058819,-0.019467514008284,-0.049317758530378]],[[-0.024696886539459,0.0037470441311598,0.070743806660175],[0.03273019567132,0.06195429712534,-0.1799122095108],[-0.13723507523537,0.12795227766037,0.0062592718750238]],[[-0.018707456067204,-0.10041603446007,-0.11220917850733],[0.21876329183578,0.083290740847588,0.058619856834412],[0.12596260011196,0.037507943809032,0.097215823829174]],[[0.12648871541023,0.092200890183449,0.020872253924608],[3.2091800676426e-05,-0.0040797642432153,0.13498836755753],[-0.053645674139261,-0.063199810683727,-0.027316145598888]],[[-0.13735775649548,0.0040685380809009,0.11331098526716],[-0.035392358899117,0.13878205418587,0.24743051826954],[-0.1120023354888,-0.045378416776657,0.024932242929935]],[[-0.066605485975742,-0.20178420841694,0.079863578081131],[0.17247162759304,-0.10111455619335,0.0022429197560996],[-0.045606847852468,0.030475543811917,0.061194069683552]],[[-0.021260339766741,0.04302978515625,0.092308327555656],[0.018115382641554,0.026133077219129,-0.020062206313014],[-0.012242690660059,-0.049687873572111,-0.045979592949152]],[[0.076464988291264,0.07087329775095,-0.075992867350578],[-0.09207559376955,-0.07479053735733,0.1171949878335],[-0.024955306202173,0.09574794024229,-0.059095643460751]],[[-0.045113027095795,0.041961394250393,0.12579992413521],[-0.018781442195177,0.080094136297703,0.054949849843979],[-0.11886171996593,-0.044350888580084,0.088155247271061]],[[0.066014163196087,-0.0057817362248898,0.044547315686941],[-0.051591981202364,-0.22095556557178,-0.041712835431099],[-0.24775043129921,-0.27130576968193,-0.022291149944067]],[[0.01684682816267,-0.094429656863213,-0.11883445829153],[-0.14908030629158,-0.18970610201359,-0.14170789718628],[-0.16861136257648,0.00084146985318512,-0.0096908863633871]],[[-0.001976533094421,0.031337406486273,0.04661002010107],[0.042993977665901,-0.099199891090393,0.0049752173945308],[0.061340168118477,-0.017209835350513,0.11714927107096]],[[-0.039790749549866,-0.045186445116997,-0.058562219142914],[0.092222265899181,0.021028999239206,-0.069442830979824],[0.020652802661061,0.007065889891237,0.06774266064167]],[[-0.094399489462376,-0.092374317348003,0.1467657238245],[-0.20800396800041,-0.016791421920061,-0.14191795885563],[-0.011279783211648,-0.19181090593338,0.031779676675797]],[[0.051858194172382,0.037033937871456,0.13587474822998],[0.1073416993022,0.026880197227001,0.025815486907959],[0.088848687708378,0.035580206662416,-0.1061208024621]],[[0.0090015633031726,-0.097837351262569,-0.071961306035519],[0.061598110944033,-0.026884369552135,-0.066317871212959],[0.0072242831811309,0.12148260325193,0.01150906458497]],[[-0.080090895295143,0.11358796060085,-0.10901407897472],[0.071629829704762,0.01980403624475,-0.090301536023617],[-0.00993169285357,0.025047203525901,-0.081821665167809]],[[-0.051296819001436,0.14037057757378,0.042213968932629],[-0.048585392534733,-0.044752467423677,-0.081881023943424],[0.071200810372829,-0.048809066414833,0.07324393093586]]],[[[0.13074378669262,-0.030216693878174,-0.011710060760379],[-0.053379651159048,0.024638962000608,-0.048896346241236],[-0.12117277830839,0.098238959908485,-0.13078305125237]],[[-0.0077466773800552,-0.032482288777828,0.040919989347458],[-0.0031227509025484,0.026443986222148,-0.076163567602634],[0.090984277427197,-0.13077177107334,-0.11684490740299]],[[0.070314489305019,0.015232573263347,0.093847215175629],[-0.0048815081827343,-0.12646074593067,0.0011314578587189],[-0.036983326077461,0.10048056393862,-0.13029199838638]],[[-0.26412078738213,-0.00050167494919151,-0.023483395576477],[-0.025335757061839,0.014169336296618,-0.019858872517943],[-0.041864104568958,0.04765047878027,0.061669949442148]],[[-0.072947151958942,-0.058240462094545,-0.050230365246534],[0.015597594901919,0.071158558130264,-0.027709446847439],[0.085551857948303,0.063788235187531,0.0030331336893141]],[[0.033849183470011,0.14094562828541,-0.0061105908825994],[0.12557393312454,0.026354569941759,-0.068126827478409],[-0.035103481262922,-0.13552102446556,0.050739977508783]],[[0.11516008526087,-0.066472359001637,-0.038601730018854],[0.01233499776572,-0.0370775423944,-0.064896978437901],[0.08901659399271,-0.041159600019455,0.035966709256172]],[[-0.073918849229813,0.030699850991368,-0.064708292484283],[-0.021475655958056,-0.023322740569711,0.039854750037193],[0.034501507878304,0.063390538096428,0.02850522659719]],[[-0.0021151648834348,0.16233293712139,0.11673726141453],[0.016329823061824,0.033346511423588,-0.018661933019757],[0.070665262639523,0.0050897323526442,0.05620214343071]],[[-0.18500952422619,0.060698606073856,0.0011955087538809],[-0.014898904599249,0.0066009927541018,0.061356876045465],[0.071582719683647,0.050772439688444,0.040383622050285]],[[0.092176429927349,0.048344522714615,0.071335963904858],[0.082179829478264,-0.044558200985193,-0.060084834694862],[-0.034413557499647,0.0004560679954011,-0.12831597030163]],[[0.11306290328503,0.022584082558751,-0.040525268763304],[0.1991836130619,-0.047937154769897,-0.08625740557909],[0.066790781915188,0.046553280204535,0.063341818749905]],[[0.015921320766211,0.023991020396352,0.042844228446484],[0.046672970056534,0.15791121125221,-0.071324445307255],[0.16445152461529,0.033661063760519,0.049326453357935]],[[0.041913576424122,0.050855997949839,0.082670845091343],[0.10383979231119,0.16598013043404,0.2184444218874],[0.044430159032345,0.20693266391754,0.11703930050135]],[[0.10650468617678,-0.084745950996876,0.033696517348289],[0.046463321894407,0.025320265442133,-0.011072462424636],[0.0073244725354016,0.040591090917587,-0.086244970560074]],[[-0.037328269332647,0.054227776825428,-0.038069508969784],[-0.056773658841848,-0.032227396965027,0.072638332843781],[0.1305265724659,-0.02639102935791,0.074073746800423]],[[-0.012066572904587,-0.22063092887402,0.14017340540886],[-0.17433562874794,-0.2033658772707,-0.084284730255604],[-0.20627035200596,-0.043339163064957,-0.14375934004784]],[[0.043854083865881,-0.10133301466703,0.079159185290337],[0.037535458803177,0.090256728231907,-0.055540971457958],[-0.19590939581394,0.0022865983191878,-0.04285704344511]],[[-0.14269837737083,0.10551001876593,0.05881630256772],[0.087544985115528,0.07431685179472,0.073959350585938],[-0.036418728530407,0.02119224332273,0.047766145318747]],[[-0.04132879525423,0.0045837573707104,0.0055979983881116],[0.15158192813396,-0.074814468622208,-0.13815970718861],[-0.073807261884212,-0.013365787453949,0.024426499381661]],[[-0.12886433303356,0.0034446041099727,0.079983435571194],[-0.018904138356447,0.016680046916008,-0.020772188901901],[0.015324714593589,0.032677173614502,-0.091946944594383]],[[-0.0017423639073968,0.070005096495152,0.09468811750412],[-0.02846877835691,-0.12062326073647,0.089988619089127],[0.050835739821196,-0.058384642004967,-0.073057360947132]],[[-0.082020699977875,-0.093325793743134,0.094502456486225],[-0.12648962438107,-0.097527831792831,0.1040270626545],[-0.14563570916653,-0.059633519500494,0.085084997117519]],[[-0.026955069974065,0.067945405840874,-0.027895331382751],[0.029428714886308,-0.0057270508259535,0.10520622134209],[0.24409393966198,-0.021321725100279,-0.010498631745577]],[[-0.19906014204025,-0.20970812439919,0.0074612363241613],[-0.10668713599443,-0.1896023452282,-0.17493739724159],[0.017253763973713,0.03270086273551,-0.044014308601618]],[[-0.086537651717663,-0.10667243599892,-0.063846968114376],[-0.095107033848763,0.15085753798485,-0.11500180512667],[-0.019873432815075,-0.08971132338047,-0.050076108425856]],[[0.047675482928753,-0.077550627291203,0.075764179229736],[-0.013754904270172,-0.0015955989947543,-0.042354431003332],[0.013289992697537,0.14295586943626,0.05370507016778]],[[0.057577531784773,-0.091021366417408,-0.10124047845602],[-0.025942571461201,-0.15615755319595,-0.0067533534020185],[-0.046166453510523,-0.13382108509541,0.21100853383541]],[[-0.30772995948792,-0.17700909078121,-0.16296896338463],[-0.02695145830512,-0.074294894933701,-0.19623579084873],[-0.080714233219624,-0.0046983221545815,-0.10990753769875]],[[-0.062287449836731,-0.048248745501041,0.047142669558525],[-0.1517453789711,-0.096436038613319,0.12117541581392],[-0.025601573288441,0.1706248819828,-0.062120903283358]],[[0.017973233014345,-0.030096253380179,-0.092618331313133],[-0.072487153112888,-0.097803182899952,-0.083440788090229],[-0.11037870496511,-0.1080479323864,0.019363144412637]],[[-0.035016823559999,-0.049576055258512,-0.065978027880192],[0.039706900715828,0.15634669363499,-0.018483202904463],[0.059201762080193,0.14197690784931,0.086215831339359]]],[[[0.034099422395229,-0.048492673784494,-0.10921432077885],[-0.25772061944008,-0.0028281027916819,-0.10890083014965],[-0.067396260797977,-0.038510907441378,-0.085535705089569]],[[-0.011338903568685,0.018959030508995,-0.10482853651047],[-0.082045160233974,0.013112740591168,0.062310304492712],[0.015178385190666,0.042976669967175,0.0076270955614746]],[[0.1293236464262,-0.098609462380409,0.0052362522110343],[0.035529438406229,-0.0029650665819645,-0.041057415306568],[0.14291177690029,0.0098324567079544,-0.10579792410135]],[[0.032005436718464,0.01396712847054,0.061112839728594],[-0.096004262566566,-0.029819371178746,-0.047558829188347],[-0.13335490226746,-0.16086323559284,0.036287657916546]],[[-0.048710104078054,-0.049053717404604,0.016630969941616],[0.020921614021063,-0.087031550705433,0.08659216016531],[0.04258730635047,-0.041597694158554,0.048152428120375]],[[0.12748593091965,-0.084862716495991,-0.27314203977585],[0.17081344127655,-0.047028321772814,-0.10663062334061],[0.021382335573435,0.04740984365344,0.0062429308891296]],[[-0.072595998644829,0.061801217496395,0.077756367623806],[-0.15238445997238,-0.16027909517288,-0.01038271561265],[0.13505002856255,-0.12167754024267,0.019307153299451]],[[-0.05277943983674,-0.090560086071491,0.012412455864251],[-0.0026740955654532,0.002475002547726,0.0051159858703613],[-0.075328342616558,-0.012278725393116,-0.026900131255388]],[[-0.023557769134641,-0.087394453585148,0.035603288561106],[0.070571199059486,-0.0044078547507524,-0.020856508985162],[0.10026925057173,0.011344019323587,-0.058633722364902]],[[-0.10303150862455,0.084705337882042,0.073875315487385],[0.045892786234617,-0.044076055288315,0.085475221276283],[0.030802043154836,-0.036014087498188,0.045780155807734]],[[-0.21084848046303,-0.023938775062561,-0.092032469809055],[-0.011924562975764,-0.077910162508488,0.063330501317978],[0.05261205509305,0.045550566166639,0.00066039757803082]],[[0.07342129945755,-0.13899329304695,0.064369633793831],[-0.014311733655632,-0.03487429022789,0.07326690107584],[-0.16274340450764,-0.045894656330347,0.060049470514059]],[[-0.024413926526904,-0.096332035958767,-0.00089650333393365],[0.045157425105572,0.098396494984627,-0.048967663198709],[0.14096707105637,0.071628756821156,0.012212150730193]],[[-0.27269408106804,0.12717518210411,-0.21170888841152],[0.046420384198427,-0.1283583343029,0.05032778903842],[0.010943310335279,-0.1318371295929,-0.020034302026033]],[[0.038728628307581,-0.075653970241547,0.0091721126809716],[-0.032911404967308,-0.053899433463812,-0.01100595202297],[0.035409338772297,0.035728499293327,0.063659369945526]],[[-0.11382783949375,0.09931505471468,0.018044386059046],[-0.03105148486793,-0.038242671638727,0.19659379124641],[-0.2743798494339,-0.1332181096077,-0.21862185001373]],[[-0.14344005286694,-0.010710665024817,0.040875438600779],[0.086072258651257,-0.087891936302185,0.030053697526455],[0.016170652583241,0.091730386018753,0.049659203737974]],[[0.10935033112764,-0.085603304207325,0.093151904642582],[-0.061368770897388,-0.16885736584663,-0.060080457478762],[-0.24486608803272,-0.07464662194252,0.039417501538992]],[[-0.097954034805298,-0.047215428203344,-0.063950479030609],[0.09332437068224,-0.11326488852501,-0.14243127405643],[-0.17898400127888,-0.14902547001839,-0.048745933920145]],[[-0.003703118301928,-0.083871051669121,0.088152587413788],[-0.12492879480124,0.20264334976673,0.023983616381884],[-0.03970792517066,-0.11219986528158,0.14243222773075]],[[-0.010061146691442,0.059882555156946,-0.077010877430439],[-0.0154326017946,-0.081884138286114,-0.033225286751986],[-0.073490664362907,-0.025517489761114,0.17688193917274]],[[-0.063903599977493,-0.062471013516188,0.0168621763587],[-0.043725866824389,-0.044019360095263,0.13899625837803],[0.10344377160072,0.041983749717474,-0.00057442334946245]],[[0.025696145370603,-0.097128868103027,-0.0022839927114546],[0.11426459997892,-0.012712728232145,-0.050715740770102],[-0.22814984619617,0.023067768663168,-0.050976395606995]],[[0.10444035381079,-0.044482246041298,-0.0098161306232214],[0.016709072515368,0.024560974910855,0.030181631445885],[-0.23871017992496,-0.0057414551265538,-0.0063061560504138]],[[0.014329195022583,-0.0014657903229818,0.031289279460907],[-0.063317276537418,0.089416190981865,-0.062213774770498],[-0.048550821840763,-0.072289951145649,0.078099370002747]],[[-0.049193669110537,0.031135281547904,0.0036710309796035],[0.081893555819988,-0.10336542129517,-0.022813837975264],[-0.045016318559647,-0.064607292413712,-0.0095341559499502]],[[0.036004360765219,0.089238204061985,0.043371822685003],[0.034974429756403,-0.02170480415225,-0.057850606739521],[-0.089636147022247,-0.0026602086145431,-0.10186391323805]],[[-0.014873368665576,0.26638254523277,-0.28765532374382],[0.10345753282309,0.056559659540653,0.032060269266367],[-0.015110639855266,0.0047581824474037,-0.055931106209755]],[[-0.039089862257242,-0.07156328111887,-0.0033543608151376],[0.056498542428017,0.031953752040863,0.11334875226021],[0.02033912576735,-0.031601570546627,-0.013422066345811]],[[-0.011805890128016,-0.015497894026339,0.06137714907527],[-0.002399591030553,0.11067140847445,0.032802406698465],[0.039286732673645,0.022361423820257,-0.15989738702774]],[[-0.109659306705,0.086899980902672,-0.0030326389241964],[-0.081512399017811,0.060547571629286,0.030492940917611],[-0.18511249125004,0.13821882009506,0.025434248149395]],[[0.044120248407125,-0.10834398120642,-0.12852631509304],[-0.068694412708282,0.035948239266872,0.094446532428265],[-0.10762702673674,-0.061251502484083,-0.086332991719246]]],[[[0.023375628516078,0.14333286881447,-0.085471399128437],[0.0062508643604815,-0.076401256024837,-0.027545476332307],[0.097073368728161,0.076760962605476,-0.013475397601724]],[[-0.042249131947756,-0.041520114988089,-0.048101153224707],[-0.046218786388636,-0.025667108595371,0.083946846425533],[-0.13766604661942,0.020547920837998,0.043888032436371]],[[0.016485122963786,-0.15437905490398,-0.14949551224709],[0.13814722001553,-0.031531225889921,0.20851537585258],[-0.030525078997016,-0.06409976631403,0.091897211968899]],[[0.061029657721519,-0.080444723367691,0.12839618325233],[0.14702692627907,-0.65366715192795,0.085670582950115],[0.047973647713661,-0.029551131650805,0.012035918422043]],[[0.094095513224602,0.0029992761556059,0.0082910005003214],[-0.033975288271904,-0.13481168448925,-0.11183930933475],[-0.06464845687151,-0.0083497781306505,-0.029217960312963]],[[0.13258247077465,-0.11801747977734,0.11766963452101],[0.014885443262756,-0.31004723906517,-0.14750327169895],[0.08101936429739,0.27609279751778,-0.16005083918571]],[[-0.11342637985945,0.12143867462873,-0.11688964813948],[0.084511034190655,-0.023328425362706,0.081116549670696],[-0.012155900709331,0.08159764111042,-0.017388079315424]],[[0.11868078261614,0.086037702858448,0.019360454753041],[-0.14099526405334,-0.14474070072174,0.076589331030846],[0.016600815579295,0.0055379457771778,-0.031099626794457]],[[0.090231776237488,-0.053642068058252,0.024210711941123],[0.03609449416399,0.15807624161243,0.042512211948633],[-0.051736995577812,0.065896831452847,0.036997780203819]],[[0.087320283055305,-0.039114810526371,0.13493566215038],[-0.088786222040653,0.031280338764191,-0.016485439613461],[0.056131284683943,-0.09824076294899,-0.092972807586193]],[[-0.018747817724943,0.10986175388098,-0.053572971373796],[-0.10111284255981,0.03693762421608,-0.056489322334528],[0.06871484965086,-0.012058220803738,-0.0058763497509062]],[[-0.1185642182827,0.13840673863888,-0.12953478097916],[-0.073877304792404,-0.026092225685716,0.052197400480509],[0.071188747882843,-0.045084111392498,0.10080657154322]],[[-0.044605750590563,-0.079505153000355,0.0088253356516361],[0.024562746286392,0.072586230933666,-0.022509200498462],[-0.0063060875982046,0.070261068642139,0.040426973253489]],[[-0.058539822697639,-0.075650803744793,0.0734993070364],[-0.053399153053761,-0.40179818868637,0.033094972372055],[0.092166662216187,0.14724193513393,0.24502247571945]],[[0.0016788842622191,0.060529354959726,-0.040795776993036],[0.055560119450092,0.030597494915128,0.027254976332188],[0.095323175191879,0.090440019965172,-0.049887899309397]],[[0.046858549118042,-0.27731922268867,0.056281946599483],[0.12608213722706,-0.12394897639751,0.17731253802776],[-0.076934762299061,0.16404347121716,0.06474456936121]],[[-0.089687913656235,0.0060296845622361,0.19785234332085],[0.095983155071735,-0.17863798141479,-0.30381643772125],[0.21700090169907,0.061661321669817,-0.13193920254707]],[[-0.36600011587143,0.054754551500082,0.040120266377926],[0.18489943444729,0.089547477662563,-0.3014335334301],[-0.24765662848949,0.12799192965031,0.28689789772034]],[[0.10014163702726,-0.16251051425934,0.017384048551321],[-0.11747738718987,-0.027717608958483,-0.0045234924182296],[-0.011901049874723,-0.0057753524743021,0.10773169249296]],[[0.054184813052416,-0.029255734756589,0.10909081995487],[-0.010293245315552,0.0134362494573,0.03779848664999],[-0.14385204017162,-0.017328882589936,-0.18186172842979]],[[-0.035710759460926,-0.10136096924543,-0.087049216032028],[-0.023509396240115,-0.06721668690443,0.047161668539047],[0.036193028092384,0.014991885982454,-0.063441701233387]],[[-0.11326184123755,0.021845186129212,-0.02406813390553],[-0.060504838824272,0.087893202900887,0.070052236318588],[0.11816338449717,-0.0025624718982726,-0.00056540762307122]],[[0.10817398875952,-0.043839264661074,0.15470135211945],[-0.097328215837479,0.047223605215549,0.021445663645864],[-0.06628443300724,0.055490277707577,-0.049663092941046]],[[0.08993761241436,0.06822595000267,0.050396353006363],[-0.078232988715172,-0.19993126392365,0.11406456679106],[-0.048456102609634,0.10980898141861,-0.015835301950574]],[[0.11276153475046,-0.030609084293246,0.13125623762608],[-0.091701574623585,-0.0078181400895119,-0.018571542575955],[-0.097418144345284,0.010910660028458,0.065680995583534]],[[0.04666967317462,0.15944339334965,-0.023637033998966],[-0.014810311608016,0.0025708118919283,-0.2005240470171],[-0.058807961642742,0.12997151911259,0.046632174402475]],[[0.0031914017163217,0.020976878702641,0.066352941095829],[0.0087589845061302,0.015830773860216,-0.07503803819418],[-0.079046688973904,0.099100328981876,0.026021847501397]],[[-0.15218983590603,0.31256255507469,-0.050346110016108],[-0.066745027899742,0.24339346587658,0.14507266879082],[-0.16633707284927,-0.20342271029949,-0.078595280647278]],[[0.013359819538891,-0.0051744929514825,-0.14209769666195],[0.016570534557104,0.0049465731717646,-0.002316344063729],[0.032419066876173,-0.026458853855729,0.037236247211695]],[[0.12434481829405,0.013867372646928,0.11105301976204],[0.037037488073111,-0.0011745432857424,0.073163084685802],[0.010257311165333,0.037039272487164,0.04784382879734]],[[0.43298962712288,0.016214396804571,-0.1425493657589],[-0.17115978896618,-0.0544115267694,-0.098899394273758],[-0.062626041471958,0.1036895737052,-0.1816948056221]],[[0.035110041499138,-0.027183536440134,0.029522696509957],[0.045055665075779,0.027822382748127,-0.029272675514221],[-0.062274429947138,0.16914983093739,0.065714485943317]]],[[[0.1142283976078,0.053964748978615,0.034783214330673],[0.025491761043668,-0.15170815587044,0.043385159224272],[-0.047181107103825,-0.14954107999802,-0.13017606735229]],[[0.0018459934508428,0.0654341802001,-0.020946389064193],[0.0123957907781,0.013117214664817,0.058978289365768],[0.021351037546992,-0.015518463216722,0.0079133836552501]],[[-0.11015947908163,-0.0031315563246608,0.058682005852461],[0.091306246817112,0.12456538528204,-0.019698306918144],[-0.047255728393793,0.041065543889999,0.23719963431358]],[[-0.069304741919041,-0.021892704069614,-0.11298046261072],[-0.12845648825169,-0.036569971591234,-0.045050051063299],[-0.01202654093504,0.060835599899292,-0.023543542250991]],[[-0.10994186252356,-0.051987733691931,-0.045049678534269],[0.070215232670307,0.031557522714138,-0.046855378895998],[-0.059571463614702,-0.0057166744954884,0.12484170496464]],[[-0.035377275198698,0.052998717874289,0.066581815481186],[0.0023779384791851,0.039403088390827,0.0043221372179687],[0.032092072069645,-0.041382018476725,-0.0076334015466273]],[[-0.019831325858831,0.028086738660932,0.051327411085367],[0.066632367670536,0.0014774854062125,0.043289620429277],[-0.21502719819546,-0.041157614439726,-0.033965591341257]],[[-0.027977222576737,0.0021474296227098,-0.040344588458538],[-0.034796714782715,0.020001392811537,0.041997581720352],[0.022028749808669,0.0034855387639254,0.026551831513643]],[[-0.051317282021046,-0.03529305011034,0.021708853542805],[0.062603369355202,-0.026749730110168,-0.04145535081625],[-0.022010423243046,-0.057111743837595,-0.057660419493914]],[[-0.010315234772861,-0.016671810299158,-0.040555495768785],[-0.04110949113965,-0.048199042677879,-0.01279818918556],[-0.10664235800505,0.040412310510874,-0.0099446587264538]],[[0.058217670768499,0.0034662839025259,0.080031394958496],[0.00214130920358,0.095543883740902,-0.0071424539200962],[0.024232750758529,-0.037598438560963,-0.10550145804882]],[[0.067971095442772,0.039574090391397,-0.0089976377785206],[-0.012154636904597,-0.01297442894429,-0.085099458694458],[0.029272256419063,0.058221556246281,0.0010780529119074]],[[-0.029797647148371,0.090420685708523,0.0040785814635456],[-0.064926266670227,-0.15154419839382,0.035799372941256],[-0.11445935815573,0.0088133336976171,-0.05461597442627]],[[0.0067518749274313,0.051509842276573,-0.025462362915277],[0.05008041113615,0.057980127632618,-0.0086585925891995],[0.078145697712898,-0.016466984525323,0.0025861389003694]],[[0.03848423063755,0.0021587680093944,0.035996254533529],[0.047590397298336,-0.0020124684087932,0.068529218435287],[-0.06326662749052,-0.027574006468058,-0.028926892206073]],[[0.0040598115883768,-0.047751065343618,-0.015618939884007],[0.038956969976425,0.03534109890461,0.0053419820033014],[0.049818616360426,0.024284334853292,-0.033227540552616]],[[-0.040594317018986,-0.081003330647945,-0.10877174884081],[-0.15183342993259,0.05251183360815,0.040583238005638],[0.035815633833408,-0.03916946798563,0.073247663676739]],[[-0.050761379301548,-0.015969490632415,-0.12767776846886],[0.045481223613024,0.015633940696716,0.10290525853634],[-0.039225682616234,0.08630359172821,0.028615895658731]],[[-0.0014696440193802,0.023253424093127,-0.019188612699509],[0.069016203284264,-0.026616372168064,-0.043426040560007],[-0.18835046887398,-0.026146380230784,-0.0059478585608304]],[[0.11682313680649,-0.010478132404387,-0.0820502191782],[-0.011690525338054,0.072539933025837,0.039142373949289],[-0.18271262943745,-0.17008996009827,-0.13780000805855]],[[0.098378762602806,-0.014933043159544,-0.023197906091809],[-0.018640860915184,-0.062543034553528,0.020412912592292],[-0.050062280148268,-0.028419125825167,-0.027506927028298]],[[-0.089567214250565,-0.048063647001982,-0.034573204815388],[-0.091698251664639,0.089142240583897,0.14130263030529],[0.047374535351992,0.15967567265034,0.073711410164833]],[[0.014137542806566,-0.092762351036072,0.049237634986639],[-0.080330245196819,0.025850770995021,-0.077786326408386],[0.11651328206062,-0.0063165700994432,0.12098045647144]],[[0.024407759308815,-0.023901861160994,0.099108196794987],[-0.035755630582571,0.011284234933555,-0.019786803051829],[-0.030030595138669,-0.10894869267941,-0.024501321837306]],[[-0.00068833027034998,-0.05351023003459,-0.097464554011822],[-0.003477813443169,-0.13174560666084,-0.062449902296066],[0.024271879345179,-0.04719266295433,-0.056640692055225]],[[-0.008204604499042,-0.14393299818039,0.066497005522251],[0.032775931060314,0.0029439001809806,0.030037567019463],[-0.038874823600054,-0.072406560182571,-0.03896788880229]],[[-0.036300782114267,-0.029745785519481,-0.0031895425636321],[-0.0017108222236857,0.071585796773434,-0.040389332920313],[0.028729077428579,-0.0028225218411535,-0.042165007442236]],[[-0.14014783501625,-0.11866714060307,0.080374948680401],[-0.15924015641212,0.06929288059473,-0.013812080956995],[-0.069030664861202,-0.13271175324917,-0.043442253023386]],[[-0.094770655035973,0.01118591427803,0.10459925234318],[-0.046762954443693,-0.019543249160051,0.044355984777212],[-0.052980300039053,-0.14340557157993,-0.051530554890633]],[[0.0023144560400397,-0.0048776394687593,-0.048884741961956],[0.0022264213766903,-0.16953974962234,0.066410273313522],[-0.019995406270027,-0.073737658560276,-0.077369518578053]],[[-0.07830623537302,0.046152077615261,-0.044764693826437],[0.057972885668278,-0.062430582940578,-0.0016946503892541],[-0.041095547378063,-0.0073200482875109,-0.059711631387472]],[[0.059952590614557,-0.038973607122898,-0.073057852685452],[-0.029420817270875,-0.15037485957146,-0.13153481483459],[-0.10754930973053,-0.24202245473862,-0.064475081861019]]],[[[0.070155277848244,0.0056123356334865,-0.042321097105742],[0.07773819565773,0.02245325781405,-0.039432719349861],[-0.059621337801218,-0.16059353947639,-0.19604071974754]],[[-0.008710402995348,-0.077838249504566,-0.064090840518475],[-0.041230771690607,-0.036159943789244,-0.040605921298265],[0.045345455408096,-0.0066882227547467,0.10221496224403]],[[-0.12311881780624,-0.004395127762109,0.061321619898081],[-0.075418993830681,0.09686491638422,-0.04192341119051],[-0.074250459671021,0.0012738811783493,0.024970505386591]],[[0.047334138303995,0.012175329960883,0.027871850878],[0.0092433607205749,-0.074412368237972,-0.054149836301804],[-0.066117562353611,-0.024974226951599,-0.01024931948632]],[[0.0083159888163209,-0.014298940077424,0.059321038424969],[0.078499272465706,0.0068068923428655,0.010627133771777],[0.047353900969028,-0.040626890957355,0.058266397565603]],[[0.14170756936073,0.036505248397589,0.058280989527702],[-0.011985362507403,-0.083255462348461,-0.046848218888044],[0.020522516220808,-0.10178703814745,0.038680363446474]],[[-0.001993787009269,-0.0075274500995874,0.06454261392355],[-0.099953390657902,0.065420649945736,-0.0069295568391681],[-0.048192758113146,-0.047368966042995,-0.005511824041605]],[[0.099901035428047,0.050205141305923,-0.1057862341404],[-0.046747911721468,0.016392288729548,-0.04157205298543],[-0.054783258587122,0.0050893668085337,-0.080953009426594]],[[-0.059226367622614,-0.079445920884609,0.012803974561393],[0.0010958592174575,-0.038702707737684,0.016443578526378],[0.073842234909534,0.069086156785488,0.0081639485433698]],[[-0.00013965877587907,0.003492557676509,-0.016603609547019],[0.061023898422718,0.051458764821291,-0.059342421591282],[0.054410509765148,0.032513990998268,-0.012602550908923]],[[0.037313167005777,0.062645442783833,0.13329684734344],[-0.051050841808319,-0.15557773411274,-0.013265922665596],[-0.087637960910797,0.10122060775757,0.047442737966776]],[[-0.031109094619751,0.0069549288600683,0.0051496303640306],[-0.16614107787609,-0.039892572909594,-0.11309788376093],[-0.060235407203436,0.021881615743041,0.050528813153505]],[[-0.029593162238598,-0.16149747371674,0.081695437431335],[-0.031157083809376,-0.042125884443521,-0.0049932631663978],[-0.012047037482262,-0.11334085464478,0.064402841031551]],[[-0.084934517741203,-0.0039188307709992,0.095687411725521],[0.0023448818828911,-0.035326488316059,-0.093445219099522],[-0.090828165411949,-0.032204683870077,-0.040764916688204]],[[0.013852412812412,-0.062859810888767,-0.038176316767931],[-0.0065331547521055,0.048088487237692,0.040137328207493],[-0.048876725137234,0.032295361161232,0.045041278004646]],[[0.052763864398003,0.05097171664238,0.1488219499588],[0.076568096876144,-0.098599418997765,-0.12213860452175],[0.099863097071648,-0.02118256315589,-0.081314705312252]],[[0.17219944298267,-0.050630636513233,-0.00060355517780408],[0.09234307706356,0.013834599405527,-0.11057116836309],[-0.014484376646578,-0.04322062805295,-0.049462720751762]],[[0.025146285071969,-0.00685771740973,-0.011021685786545],[-0.17963594198227,0.058299571275711,-0.078662298619747],[0.028677728027105,0.11291775107384,0.016421871259809]],[[-0.1316909044981,-0.28160637617111,-0.14327700436115],[0.078312359750271,-0.024915432557464,0.02002558670938],[-0.0089542074128985,-0.053548753261566,0.046893630176783]],[[0.037827212363482,-0.028242617845535,-0.013308210298419],[-0.0023351721465588,-0.038797773420811,0.053087469190359],[0.065585136413574,-0.11964254081249,-0.085367806255817]],[[-0.088301308453083,-0.15111084282398,-0.07557462900877],[0.0013195719802752,-0.06872770190239,-0.081069298088551],[0.16741885244846,0.020930526778102,0.090133868157864]],[[-0.065197438001633,0.044326320290565,-0.10874957591295],[0.027505537495017,-0.051256667822599,0.078188516199589],[-0.154002353549,-0.037192687392235,0.015693213790655]],[[-0.018053760752082,-0.028806231915951,-0.021558644250035],[0.047138720750809,0.0077226497232914,-0.03796050325036],[0.05534465238452,-0.053135972470045,0.028519131243229]],[[0.072290018200874,0.0031436237040907,-0.0014207479543984],[-0.0030808974988759,-0.060084864497185,0.013556488789618],[0.12889297306538,-0.076297521591187,0.035935834050179]],[[0.13706143200397,-0.15200234949589,0.0095912227407098],[0.091387934982777,-0.16173923015594,-0.010281457565725],[0.049249272793531,-0.024103691801429,0.00063470535678789]],[[-0.027708478271961,0.00093196023954079,0.050149854272604],[-0.053443007171154,-0.041363954544067,-0.083515495061874],[-0.0031933505088091,-0.030217526480556,0.07222006469965]],[[0.15459842979908,0.0010671890340745,-0.016536481678486],[-0.089908577501774,-0.12637408077717,0.035648982971907],[0.035608883947134,-0.0091077983379364,-0.031372852623463]],[[0.0037512923590839,-0.011618091724813,0.015970142558217],[0.058441869914532,0.0012987646041438,0.080004721879959],[-0.0023483252152801,-0.061501163989305,0.036538500338793]],[[0.01959733851254,-0.0016045265365392,0.017070569097996],[-0.031828820705414,-0.027804283425212,-0.093171052634716],[-0.042373217642307,0.065428398549557,0.076376177370548]],[[0.023339852690697,0.11603157222271,-0.050867650657892],[-0.037717442959547,0.028844883665442,-0.041043896228075],[-0.034531433135271,-0.042910631746054,0.028423447161913]],[[0.027792328968644,0.0567577034235,0.037837740033865],[-0.11851891875267,-0.036509439349174,0.081714369356632],[-0.17202965915203,0.0021802845876664,0.039170674979687]],[[-0.041392590850592,-0.00081687822239473,0.044391416013241],[-0.023142823949456,-0.077503442764282,0.046978518366814],[-0.113894097507,-0.1301521062851,-0.063942700624466]]],[[[0.031298201531172,-0.018651945516467,0.076225392520428],[-0.074923880398273,-0.050291586667299,-0.0067601278424263],[-0.13301829993725,0.014500460587442,-0.10461746901274]],[[-0.0021832941565663,0.025192726403475,-0.079680159687996],[-0.0091589000076056,0.10467197746038,0.018261158838868],[0.013272326439619,0.0021415981464088,-0.037152793258429]],[[0.16452988982201,-0.20134919881821,0.096007719635963],[-0.00074031192343682,-0.027284180745482,0.11671272665262],[-0.24606910347939,-0.023566303774714,-0.098289169371128]],[[0.12160059064627,0.013584901578724,0.016939464956522],[-0.05245416238904,-0.040059641003609,-0.071129098534584],[-0.024177845567465,0.0070049986243248,-0.053335927426815]],[[-0.062730379402637,-0.058488607406616,-0.043629478663206],[-0.07468818873167,0.015042652375996,-0.0056202500127256],[0.050563555210829,0.036256849765778,0.014753258787096]],[[-0.017671663314104,0.13817843794823,0.078092806041241],[0.13309608399868,-0.052300926297903,-0.12939332425594],[0.010312921367586,-0.11657497286797,-0.12371232360601]],[[0.049668967723846,-0.097943991422653,0.15540334582329],[0.027268214151263,-0.103504948318,-0.015459158457816],[0.079748265445232,-0.10572896897793,-0.026422835886478]],[[0.056674867868423,-0.16653650999069,-0.016253812238574],[0.12408735603094,-0.18053036928177,0.11078923195601],[-0.080810636281967,0.085903473198414,0.03509084880352]],[[0.035119157284498,0.049558237195015,-0.09733684360981],[-0.015931902453303,0.011658537201583,-0.05218842253089],[0.007319254335016,-0.0097615346312523,-0.016560032963753]],[[-0.0021665683016181,-0.049132902175188,0.034439094364643],[-0.089485086500645,0.016403993591666,0.09260655939579],[-0.12425667792559,0.022797737270594,0.023447142913938]],[[-0.011816901154816,-0.070303149521351,0.013502154499292],[0.065488442778587,-0.083522632718086,0.037332512438297],[-0.023278268054128,-0.23835018277168,-0.054416283965111]],[[-0.026233607903123,0.13422299921513,0.066678799688816],[-0.085964232683182,-0.10641754418612,0.093826591968536],[-0.21998962759972,0.043309919536114,0.027017865329981]],[[-0.073800466954708,0.11083562672138,-0.16896305978298],[-0.010431501083076,0.14674089848995,0.041044820100069],[0.022811567410827,-0.037445072084665,0.25192746520042]],[[0.0047969263978302,-0.018201408907771,0.027897711843252],[0.041299980133772,-0.0040073250420392,0.055530093610287],[-0.051862254738808,0.089051015675068,-0.00054076401283965]],[[0.0029972405172884,-0.019442884251475,0.020110515877604],[0.041451022028923,0.0029393543954939,0.086792476475239],[-0.042206298559904,-0.047895666211843,0.01380320917815]],[[0.14561574161053,0.14556379616261,-0.0095208333805203],[-0.040992937982082,0.089816056191921,-0.063533842563629],[0.0028145189862698,-0.065924592316151,0.014115389436483]],[[0.035792987793684,-0.16425897181034,-0.10162226855755],[0.053028751164675,-0.0094248624518514,0.081158988177776],[-0.0031347975600511,-0.09356115013361,0.07613780349493]],[[0.056425128132105,0.10300722718239,-0.019461654126644],[-0.042287800461054,-0.17655871808529,0.0451888628304],[-0.0016720009734854,-0.10188496112823,0.073385164141655]],[[-0.026005368679762,-0.059739351272583,-0.084162198007107],[-0.087826579809189,0.089915260672569,-0.012454191222787],[-0.14099554717541,0.16654907166958,0.064381986856461]],[[0.0029905498959124,0.075187467038631,0.027999207377434],[-0.021348534151912,-0.065443456172943,-0.1954475492239],[-0.023612530902028,-0.13327912986279,0.004740025382489]],[[0.13461464643478,0.17073281109333,-0.088925071060658],[-0.081895411014557,-0.002945895306766,-0.053811728954315],[-0.025855550542474,-0.054421186447144,-0.005518211517483]],[[-0.16129645705223,-0.055006764829159,0.17046810686588],[0.077161602675915,0.031643830239773,0.18259274959564],[-0.016386348754168,0.05146149918437,0.04843495041132]],[[-0.016137652099133,0.12391494959593,-0.12038102000952],[-0.21115148067474,0.064529694616795,-0.18812963366508],[-0.012498090974987,0.090217977762222,-0.052402779459953]],[[-0.01336476020515,0.01968164741993,-0.0037211342714727],[0.057950433343649,-0.032227303832769,-0.019466124475002],[0.042035296559334,-0.16383439302444,0.046797927469015]],[[-0.030871314927936,-0.026902068406343,0.042718347162008],[-0.041178658604622,-0.010996396653354,-0.10551929473877],[-0.043188791722059,-0.088320426642895,-0.060292415320873]],[[0.049616198986769,-0.10424114763737,0.042208638042212],[-0.012605643831193,-0.024464411661029,-0.0017345091328025],[0.055421650409698,-0.086210913956165,0.080337949097157]],[[0.00076608447125182,0.015414433553815,-0.06730081140995],[-0.045605707913637,0.078111566603184,-0.066213458776474],[0.069063395261765,0.04106966778636,-0.011745384894311]],[[0.089133456349373,-0.12145686894655,-0.0047397152520716],[0.097138188779354,-0.017022356390953,-0.013627843931317],[0.12600828707218,-0.047372650355101,-0.20736211538315]],[[-0.056648746132851,0.1549696624279,0.018621768802404],[-0.037855237722397,0.014241516590118,0.006371415220201],[0.023471442982554,0.009311125613749,-0.1659622490406]],[[-0.072175063192844,-0.052528064697981,0.15824808180332],[-0.022424278780818,0.0023654683027416,0.078174643218517],[-0.10981791466475,0.0026410634163767,-0.075214691460133]],[[-0.018437493592501,-0.032926436513662,0.017698518931866],[-0.0064754923805594,-0.036479193717241,0.0016478243051097],[0.018530772998929,-0.00034510320983827,0.019220111891627]],[[0.091660261154175,0.015175831504166,-0.071712128818035],[0.037610676139593,0.017369084060192,-0.021612174808979],[-0.023949388414621,-0.17582410573959,0.062413744628429]]],[[[0.017410647124052,0.024687020108104,0.006778338458389],[-0.033080101013184,-0.088213019073009,-0.034204080700874],[0.0040411250665784,-0.073942318558693,0.031473815441132]],[[-0.045708127319813,-0.026223892346025,0.087432943284512],[-0.093804344534874,0.0090115191414952,0.032056875526905],[-0.094465531408787,0.093573831021786,0.048855651170015]],[[0.10836429148912,-0.093214280903339,-0.032997477799654],[0.036373980343342,-0.017244534566998,0.095669649541378],[0.13350123167038,-0.013578119687736,-0.11147800832987]],[[0.0066056568175554,0.049663122743368,0.022070476785302],[0.10411727428436,-0.077868208289146,0.017727876082063],[-0.12695141136646,-0.045153331011534,-0.081399694085121]],[[-0.092481054365635,0.025454439222813,-0.060332968831062],[-0.087323300540447,-0.023766584694386,-0.097583018243313],[0.019899306818843,0.06806718558073,-0.028809124603868]],[[0.057143934071064,0.20502133667469,-0.1066772043705],[-0.077822662889957,-0.004333526827395,-0.0880381539464],[-0.035916365683079,0.051480811089277,0.044684652239084]],[[-0.067732907831669,-0.01958205550909,-0.0055506508797407],[-0.050751440227032,0.01475976780057,-0.032578337937593],[-0.103869356215,0.11162479221821,0.17153364419937]],[[-0.028563719242811,-0.089931659400463,-0.018891023471951],[0.11099275201559,-0.029056526720524,-0.021642994135618],[0.065582923591137,-0.05788004770875,-0.09251806885004]],[[-0.054054968059063,-0.024700758978724,-0.012066799215972],[-0.12760075926781,0.049723703414202,-0.19894748926163],[-0.0067643998190761,0.161710947752,0.039406318217516]],[[-0.0086450334638357,0.20941817760468,0.10342025011778],[-0.026440029963851,-0.0049670957960188,0.065878242254257],[0.056351598352194,-0.049806699156761,-0.023339781910181]],[[0.06253731995821,0.15233567357063,0.03059215657413],[0.02881845086813,-0.0021730589214712,0.12283217161894],[0.1268086284399,0.015180978924036,0.019849888980389]],[[0.022196523845196,0.095048449933529,0.18317186832428],[-0.040894594043493,-0.11891754716635,0.017865194007754],[0.052296284586191,-0.068094559013844,-0.0013266425812617]],[[-0.063587807118893,0.10180679708719,-0.12958657741547],[7.2736249421723e-05,0.063649713993073,-0.054471381008625],[0.008583215996623,0.12618979811668,-0.17351779341698]],[[-0.14287315309048,0.06458380818367,-0.097651153802872],[0.15280874073505,0.096844218671322,0.11443538963795],[-0.071105912327766,-0.089051820337772,-0.17725878953934]],[[-0.012656269595027,-0.081920363008976,-0.050643499940634],[-0.022426227107644,0.005477518774569,0.034746594727039],[0.0408322699368,-0.0021454249508679,0.0494101382792]],[[0.0069410386495292,0.14613150060177,-0.071587413549423],[-0.098055087029934,0.049693364650011,-0.060808956623077],[0.015154150314629,0.061780866235495,-0.046409204602242]],[[-0.016076467931271,-0.016174331307411,-0.049767091870308],[-0.017173899337649,-0.010715903714299,-0.11039943993092],[0.054637562483549,0.015897497534752,0.080467790365219]],[[0.0064987111836672,0.068612650036812,0.02558758854866],[-0.12039434909821,-0.081635683774948,-0.038668800145388],[-0.018036855384707,-0.058573957532644,-0.025203008204699]],[[-0.023772522807121,-0.017045190557837,0.071021743118763],[-0.028259079903364,-0.024844333529472,0.031533613801003],[-0.087257191538811,-0.21263076364994,0.012442907318473]],[[0.065261043608189,-0.023797314614058,-0.02831975184381],[0.11075135320425,-0.14611323177814,-0.020085101947188],[-0.022768860682845,-0.14328525960445,-0.077364951372147]],[[0.079690702259541,-0.035599030554295,0.015234929509461],[0.076907865703106,-0.055625069886446,-0.010943835601211],[0.095476172864437,0.15474259853363,0.1181905567646]],[[0.041786134243011,-0.028214683756232,0.038501262664795],[-0.015467396005988,-0.10242626816034,0.08817932754755],[-0.10011137276888,0.22056496143341,0.053553625941277]],[[-0.057626876980066,0.076819062232971,0.066218249499798],[-0.12607961893082,0.11409736424685,-0.0050454158335924],[0.15619292855263,0.068337187170982,-0.15205278992653]],[[0.081804886460304,0.11753726005554,0.0285809263587],[0.0031243422999978,0.038637232035398,-0.0032020651269704],[-0.046738792210817,-0.011666361242533,0.13231228291988]],[[0.048665691167116,0.033666957169771,-0.024470642209053],[-0.045233778655529,-0.14324024319649,-0.10886291414499],[0.016415698453784,0.022130971774459,0.051992442458868]],[[0.022308619692922,0.00091702752979472,0.1367966234684],[-0.076334923505783,-0.0087266396731138,0.02076606079936],[-0.046829983592033,-0.039725445210934,0.051162153482437]],[[0.061077781021595,0.10668037086725,-0.039103206247091],[-0.0021783618722111,0.041731532663107,-0.013670451007783],[0.02982715703547,0.016391240060329,-0.10049665719271]],[[-0.13089190423489,0.21071767807007,-0.042127069085836],[0.20516546070576,-0.029951004311442,0.024100648239255],[-0.14782644808292,0.12282744050026,-0.013118299655616]],[[0.039533112198114,0.0017465712735429,0.065228201448917],[-0.047349281609058,-0.09338940680027,0.11882917582989],[0.00090707128401846,0.018875466659665,0.09982792288065]],[[0.040389191359282,-0.0092706410214305,0.015628293156624],[0.092602044343948,-0.097577258944511,-0.069441720843315],[0.020800676196814,0.0069815334863961,-0.047253984957933]],[[0.071536146104336,-0.024569435045123,-0.055920787155628],[0.014127745293081,0.018952129408717,0.11343044787645],[-0.090243734419346,0.030416805297136,-0.093763746321201]],[[-0.016976861283183,-0.079831212759018,-0.12054820358753],[0.05835510417819,-0.0092203598469496,-0.11190106719732],[-0.038045924156904,0.006575801409781,-0.051765777170658]]],[[[-0.082850217819214,-0.048370704054832,0.061118587851524],[0.026725331321359,0.058721236884594,0.059795387089252],[0.026717055588961,0.021460622549057,-0.03109429590404]],[[0.0047454414889216,-0.05790776014328,-0.074472315609455],[-0.016636807471514,-0.11118861287832,-0.087555482983589],[-0.10176835954189,-0.020310195162892,-0.060064744204283]],[[0.010018122382462,-0.006148646119982,-0.0091177318245173],[0.027111710980535,-0.017184494063258,0.036874141544104],[0.033625315874815,-0.067304149270058,0.002668127650395]],[[-0.0044201416894794,-0.02685672044754,0.042295183986425],[-0.051728323101997,0.1089241579175,0.016603365540504],[-0.057438652962446,-0.0092991562560201,-0.0340446382761]],[[-0.11506554484367,-0.13312332332134,-0.039223454892635],[-0.072927460074425,-0.12295843660831,-0.0080607170239091],[0.021271346136928,-0.01827178709209,-0.068630300462246]],[[-0.011729259043932,0.01495438721031,0.037304185330868],[0.058270838111639,-0.022541677579284,-0.060528311878443],[0.036583360284567,0.075679458677769,-0.085201978683472]],[[0.026302844285965,-0.010957270860672,-0.020775074139237],[-0.077337361872196,-0.042360462248325,-0.096479296684265],[0.051067724823952,0.01417819224298,0.050475064665079]],[[0.037925947457552,0.005742144305259,-0.033617023378611],[-0.098610684275627,0.080431640148163,-0.024172745645046],[-0.045449789613485,0.019253173843026,0.079880654811859]],[[-0.026120506227016,-0.035258881747723,0.0032834862358868],[-0.028716485947371,-0.055850226432085,-0.11659447848797],[0.024357797577977,-0.11717158555984,-0.016307087615132]],[[0.040558569133282,0.033389657735825,0.053062949329615],[-0.032548449933529,0.012839440256357,-0.01817124709487],[-0.029176088050008,0.011553665623069,0.075112506747246]],[[0.031430013477802,0.030063262209296,0.038249358534813],[-0.032462533563375,0.007218221668154,-0.0028781080618501],[-0.05727306753397,0.068490654230118,0.010849403217435]],[[-0.030761683359742,0.058950670063496,0.024151576682925],[0.041352439671755,0.054131496697664,-0.0028642117977142],[-0.00060803157975897,-0.046294774860144,0.070863738656044]],[[0.03039644472301,0.055986650288105,0.11967023462057],[0.01167319342494,-0.077064380049706,-0.023150265216827],[-0.015881448984146,0.0023313309065998,0.1303391456604]],[[0.051737915724516,0.053229626268148,0.02254432067275],[-0.017199207097292,-0.079229474067688,0.024145845323801],[-0.029421145096421,0.05923305824399,-0.12744887173176]],[[-0.11924950778484,-0.029773520305753,0.026931583881378],[-0.053543515503407,-0.083340376615524,0.030874768272042],[-0.12981690466404,-0.069883480668068,-0.06144604831934]],[[-0.0068066599778831,0.0099937431514263,0.07192700356245],[-0.01047018636018,-7.2139489930123e-05,-0.014955293387175],[0.030864354223013,-0.034511644393206,-0.0060270852409303]],[[-0.013574343174696,0.027695301920176,0.010124367661774],[-0.019692003726959,-0.09330964833498,0.038698140531778],[-0.039569184184074,-0.0050211125053465,0.019385494291782]],[[-0.02326506190002,-0.087904460728168,0.0043750768527389],[-0.0057025346904993,-0.049192562699318,-0.011185478419065],[-0.014850669540465,-0.053846385329962,-0.051341522485018]],[[-0.00048288353718817,0.092832282185555,-0.0078349616378546],[-0.00016029326070566,0.061670251190662,0.015280318446457],[0.0030086915940046,0.085101053118706,-0.016103740781546]],[[-0.0090025002136827,0.019616613164544,0.015461760573089],[0.0097776623442769,-0.015820264816284,0.049775030463934],[0.020070416852832,-0.0019944396335632,-0.026168268173933]],[[-0.030222360044718,0.054554745554924,-0.047512926161289],[0.0012243104865775,-0.07341019064188,-0.058495111763477],[0.071777105331421,-0.17459192872047,0.065093733370304]],[[-0.10721721500158,0.01634906232357,-0.060527570545673],[0.072530537843704,0.025631956756115,0.028251765295863],[0.07412813603878,-0.018425839021802,-0.065069943666458]],[[-0.011970824562013,0.046336889266968,-0.057423315942287],[0.018534433096647,-0.014258973300457,0.042621064931154],[0.08479642868042,-0.084678404033184,-0.034706450998783]],[[-0.035575117915869,0.011034039780498,-0.041521895676851],[0.037126917392015,0.10338069498539,-0.028597613796592],[-0.0085384510457516,0.052976362407207,-0.050836410373449]],[[-0.045229457318783,-0.024084378033876,-0.017639880999923],[0.012411092408001,0.045232210308313,-0.070494301617146],[-0.019432257860899,0.0041307639330626,0.019237112253904]],[[-0.051570434123278,-0.0031886459328234,-0.057774629443884],[0.051929876208305,0.04309007525444,-0.053423572331667],[-0.073210053145885,0.14499108493328,0.015873374417424]],[[0.030875258147717,0.017991529777646,0.01819758489728],[0.091545768082142,0.10590694099665,0.033955439925194],[-0.055231768637896,0.099067404866219,0.053594466298819]],[[0.055137906223536,-0.037738583981991,-0.00077365356264636],[0.070531323552132,0.10278560221195,-0.016637036576867],[0.057706668972969,-0.055903594940901,-0.063314311206341]],[[0.056880079209805,-0.015248424373567,-0.021363889798522],[0.025101188570261,0.037561547011137,0.052962452173233],[0.014249907806516,0.055339235812426,0.0077003175392747]],[[-0.017746977508068,-0.062371373176575,-0.032351709902287],[-0.03333667293191,0.06472672522068,-0.0032039363868535],[0.052400283515453,-0.10066849738359,-0.025336859747767]],[[-0.056660436093807,-0.020197493955493,0.088971063494682],[0.0095010586082935,-0.038936052471399,0.047945439815521],[-0.032396800816059,-0.081544876098633,0.014728487469256]],[[0.02289261482656,-0.077110640704632,0.02892186678946],[-0.06974484026432,-0.025636339560151,0.018771827220917],[0.0011520436964929,6.0001810197718e-05,0.026588989421725]]],[[[-0.0056841340847313,-0.087032169103622,-0.0079063093289733],[0.076470971107483,0.091138042509556,0.016754593700171],[0.06211731955409,-0.13454493880272,0.088672287762165]],[[0.0026418736670166,0.0034736813977361,-0.072834700345993],[-0.021759364753962,0.011447727680206,-0.054773148149252],[-0.0073357238434255,0.010683522559702,0.01558290142566]],[[-0.086249709129333,0.099403709173203,0.0023144248407334],[-0.041220135986805,-0.16487483680248,0.084065407514572],[0.01889643073082,0.003723758738488,-0.14356473088264]],[[0.042078334838152,0.12831580638885,0.0017578562255949],[0.0045245075598359,-0.044948734343052,0.035120770335197],[-0.098372764885426,-0.082855179905891,-0.07308466732502]],[[-0.021144257858396,-0.058374363929033,-0.025557255372405],[-0.043782383203506,0.056526459753513,0.065655425190926],[-0.032366834580898,0.12627054750919,-0.0022077651228756]],[[0.06542057543993,0.026364443823695,-0.026010725647211],[0.1347461938858,-0.053384609520435,0.048409063369036],[0.13868659734726,0.1667738109827,-0.041494891047478]],[[-0.067161880433559,0.029123064130545,-0.063558228313923],[-0.056610867381096,0.035107880830765,0.014359773136675],[0.0076874904334545,0.14681126177311,0.044736590236425]],[[0.077340453863144,-0.13604408502579,-0.068864062428474],[-0.016142558306456,0.064438812434673,-0.085642270743847],[0.14226393401623,-0.11158237606287,-0.24403800070286]],[[-0.01578333415091,-0.020881395787001,-0.024635527282953],[0.0038515124469995,-0.025632733479142,-0.040226779878139],[0.063366748392582,-0.053374625742435,-0.0061187501996756]],[[-0.026165448129177,0.015182758681476,0.090698927640915],[0.010940562933683,0.022152794525027,-0.0056311381049454],[0.14497640728951,0.025429533794522,0.039746951311827]],[[-0.039827443659306,-0.00070347567088902,-0.087296426296234],[-0.033549152314663,-0.054993476718664,-0.055967148393393],[-0.0034772309008986,-0.079991519451141,-0.068635307252407]],[[0.090503551065922,-0.056676808744669,0.079998314380646],[0.10526682436466,-0.088374152779579,-0.27969291806221],[0.04503270611167,0.062534220516682,0.0045683211646974]],[[-0.0068160761147738,0.065934099256992,0.01893051341176],[-0.013580542989075,0.024653831496835,-0.056901559233665],[-0.024056065827608,0.044909670948982,0.043501280248165]],[[-0.012866470962763,0.074110589921474,-0.023362182080746],[0.036417853087187,-0.0062804506160319,0.093775749206543],[-0.10480091720819,-0.059161864221096,-0.061116889119148]],[[-0.011463890783489,-0.041030779480934,-0.017099620774388],[0.043234318494797,-0.0045692566782236,-0.015118826180696],[0.049562152475119,0.016728462651372,0.052489574998617]],[[0.048047292977571,-0.074606366455555,0.075806632637978],[0.031453751027584,0.038983091711998,-0.08572593331337],[-0.038719277828932,0.10942965000868,0.036812696605921]],[[-0.0070900479331613,-0.05163137242198,0.055902604013681],[0.056995917111635,-0.079544380307198,-0.040617931634188],[0.081157974898815,0.057462211698294,-0.087634727358818]],[[0.069699831306934,-0.083786845207214,0.024069905281067],[0.11174362152815,0.058903895318508,0.1033024340868],[0.036967117339373,-0.15370541810989,-0.1083300486207]],[[0.070465244352818,-0.026103764772415,0.062359258532524],[0.046397887170315,-0.0061620161868632,-0.16364561021328],[0.055640958249569,0.06484267860651,0.026306306943297]],[[-0.062544278800488,0.047035329043865,-0.031969774514437],[-0.006690904032439,-0.10513977706432,-0.021719135344028],[0.0094792935997248,-0.0032581856939942,-0.01773558370769]],[[-0.017421947792172,0.024410171434283,-0.039834346622229],[-0.037953566759825,-0.010697276331484,-0.077709071338177],[0.061073578894138,0.11048125475645,-0.075608946382999]],[[0.01570955850184,0.037617940455675,-0.042643155902624],[-0.0057168155908585,-0.077723734080791,0.17200081050396],[0.062342714518309,0.036144025623798,0.043166995048523]],[[-0.11800023913383,-0.0063283136114478,0.14710749685764],[0.0079146763309836,-0.11694577336311,-0.033863563090563],[0.024433504790068,0.18758815526962,-0.1922677308321]],[[0.034052841365337,0.09105446189642,-0.010001477785408],[0.06566110253334,0.018211506307125,0.082084015011787],[0.12357567250729,-0.0341776907444,0.042977757751942]],[[0.028870422393084,0.072361774742603,0.063789501786232],[0.029908647760749,0.077124707400799,-0.072740092873573],[-0.0084796687588096,-0.026319967582822,0.066232778131962]],[[0.025120571255684,-0.050704922527075,0.062544763088226],[0.10341938585043,-0.0077014332637191,-0.020230393856764],[-0.032893884927034,-0.085480116307735,-0.058991201221943]],[[0.023988585919142,0.037970628589392,0.0014076050138101],[0.018034344539046,0.010998098179698,-0.0040224986150861],[-0.089259579777718,-0.021395169198513,-0.014263390563428]],[[-0.063451834022999,-0.047713529318571,0.0030977299902588],[0.0070953806862235,0.10730554908514,-0.013253152370453],[-0.055401831865311,0.099952757358551,0.037441626191139]],[[0.099562175571918,0.10530925542116,-0.092091925442219],[-0.035853043198586,0.10619569569826,-0.13078230619431],[-0.088849872350693,-0.013319606892765,0.018113607540727]],[[-0.029823957011104,0.06381855905056,0.057757258415222],[-0.0015228564152494,-0.058532606810331,0.087543338537216],[-0.077549390494823,-0.14262606203556,0.068629309535027]],[[-0.04244939237833,0.098340786993504,-0.059596925973892],[0.017919629812241,-0.055711034685373,0.024791413918138],[-0.11349368095398,-0.065043926239014,0.15794809162617]],[[-0.012400618754327,-0.079166822135448,0.0032776878215373],[0.015074434690177,0.065931893885136,0.083817400038242],[0.070995204150677,-0.060474000871181,-0.077219113707542]]],[[[0.10108789801598,-0.077414818108082,-0.19001121819019],[-0.051241409033537,-0.04786467179656,-0.21614231169224],[0.010153645649552,-0.059461392462254,-0.091570317745209]],[[-0.0058053224347532,-0.0075235376134515,-0.036319192498922],[0.067713029682636,0.028886426240206,-0.072311215102673],[-0.023622399196029,0.025504956021905,0.052809130400419]],[[0.01115385722369,-0.027085013687611,0.1879824846983],[-0.0068325442261994,-0.12444844841957,-0.16108578443527],[0.033478204160929,-0.067802548408508,-0.006373992189765]],[[0.12858416140079,0.061329066753387,-0.029383696615696],[-0.075003452599049,-0.097253940999508,0.032419633120298],[-0.1002132743597,0.015901623293757,-0.049019612371922]],[[0.030588099732995,-0.10999354720116,0.043031122535467],[0.082274928689003,0.042362082749605,-0.099235109984875],[-0.019437627866864,-0.032376557588577,0.065382733941078]],[[-0.14725431799889,-0.3343965113163,-0.07146080583334],[0.074863851070404,-0.029828971251845,-0.28613668680191],[0.099420994520187,-0.095297396183014,0.010296143591404]],[[-0.00054086436284706,-0.051304049789906,-0.010381838306785],[-0.026952046900988,0.0088353082537651,-0.11912032961845],[0.074281014502048,0.15770277380943,0.10696608573198]],[[-0.038641069084406,-0.045513525605202,-0.025880308821797],[-0.18277774751186,-0.10052533447742,-0.16879145801067],[0.13839082419872,-0.029255796223879,-0.045849174261093]],[[0.023672806099057,-0.093142420053482,-0.10490376502275],[0.13479961454868,-0.056374445557594,-0.055556509643793],[0.032554414123297,0.032515604048967,0.091705538332462]],[[0.04683343321085,0.028677493333817,-0.17036180198193],[0.058306891471148,0.10761050879955,0.047807618975639],[-0.14315810799599,-0.11029254645109,-0.0052346889860928]],[[-0.078146934509277,-0.06064772605896,-0.024478029459715],[-0.1663680523634,-0.064460135996342,-0.0080292457714677],[0.044519811868668,0.0031110958661884,0.030614258721471]],[[-0.21966423094273,-0.41209673881531,-0.23157311975956],[0.0033906283788383,-0.24752037227154,-0.088834933936596],[0.077967718243599,-0.00017635695985518,-0.099154070019722]],[[0.0076745697297156,-0.091459400951862,-0.078955471515656],[0.0014931331388652,0.022948585450649,-0.063312090933323],[-0.026919811964035,0.093753054738045,-0.0079403985291719]],[[-0.048601567745209,-0.0080060791224241,0.18817548453808],[-0.23285630345345,0.010523033328354,-0.028026163578033],[0.003564974758774,-0.17629976570606,0.0018597632879391]],[[-0.010428077541292,0.034462418407202,-0.066649846732616],[0.037591114640236,0.10151161253452,-0.016160687431693],[0.036585468798876,0.04665107652545,-0.054319899529219]],[[0.041048813611269,-0.023823615163565,0.010721264407039],[-0.010600190609694,0.043262235820293,0.062422629445791],[0.143998503685,-0.0056478935293853,-0.012606943957508]],[[-0.20635393261909,-0.057788908481598,0.063284017145634],[-0.29731950163841,-0.13200905919075,-0.22640666365623],[0.11037962138653,-0.13889190554619,-0.12370102107525]],[[-0.087032474577427,-0.15968805551529,-0.03237371519208],[-0.086318843066692,-0.050640072673559,-0.02100982144475],[0.024790626019239,-0.048605464398861,-0.079475209116936]],[[-0.014048228040338,-0.12595911324024,-0.27509349584579],[0.024769276380539,-0.053110115230083,-0.2283061593771],[-0.27842488884926,-0.058720123022795,-0.11736688017845]],[[-0.14971736073494,0.038946822285652,0.12755133211613],[-0.098620019853115,-0.03128681704402,0.14063280820847],[-0.119832649827,-0.12926985323429,0.084618285298347]],[[0.043739467859268,-0.19811089336872,-0.20625805854797],[0.0011614793911576,0.12900948524475,0.031148847192526],[0.048277404159307,-0.013829088769853,0.034830760210752]],[[-0.0048298388719559,-0.025758462026715,-0.12086046487093],[0.016287598758936,0.0096135502681136,0.02910778298974],[-0.1435641348362,0.014719218015671,0.022310996428132]],[[0.09772639721632,-0.153892993927,0.0015938803553581],[0.0066729011014104,-0.14004762470722,-0.053817711770535],[0.17730242013931,-0.079108648002148,0.00078833987936378]],[[-0.11848701536655,0.037602711468935,-0.050647772848606],[-0.063521660864353,-0.16109915077686,-0.028221316635609],[-0.06480547785759,0.0083311842754483,-0.099723398685455]],[[-0.0082527054473758,-0.24455966055393,-0.021195283159614],[-0.020027315244079,0.074331253767014,-0.19974738359451],[-0.050485342741013,0.011906032450497,-0.067286185920238]],[[-0.062455322593451,-0.10014201700687,-0.23661707341671],[0.092411085963249,-0.051787734031677,-0.12813812494278],[0.051921229809523,0.023643001914024,-0.10802866518497]],[[-0.0010495593305677,-0.0093049881979823,0.0010797159047797],[-0.11684489995241,0.062618046998978,0.042332474142313],[0.0077402656897902,-0.019857237115502,0.048954602330923]],[[0.20613771677017,0.073595866560936,-0.021875144913793],[0.017362114042044,0.13464088737965,0.02195218205452],[-0.13360910117626,0.12939071655273,0.11125231534243]],[[-0.054891377687454,-0.19625090062618,-0.081295855343342],[-0.075753413140774,-0.062663987278938,-0.14084938168526],[-0.073131501674652,-0.09326159209013,-0.032369773834944]],[[0.0680046454072,0.018031027168036,0.051258195191622],[-0.054546963423491,0.067395806312561,0.086910672485828],[-0.17997513711452,-0.074748881161213,0.013147125951946]],[[0.073876962065697,0.079589530825615,0.0070077204145491],[-0.088454313576221,0.058806762099266,0.079536892473698],[-0.18201071023941,-0.021711222827435,0.10403221100569]],[[-0.14882019162178,-0.1180969029665,0.13893803954124],[-0.031432099640369,-0.014736806042492,0.14481402933598],[0.035774298012257,-0.092353589832783,-0.11087489873171]]],[[[-0.050301648676395,0.033677898347378,0.11576040834188],[0.0045720641501248,0.063993111252785,0.01904515735805],[-0.036629743874073,-0.044679932296276,-0.081596709787846]],[[-0.06616997718811,0.071732252836227,-0.018583884462714],[0.01440126542002,-0.064505659043789,-0.011110486462712],[0.0020499629899859,-0.047114372253418,-0.013919357210398]],[[0.068230457603931,0.1255092471838,-0.15600442886353],[-0.071021303534508,0.092933893203735,0.046714201569557],[-0.041875399649143,0.034478019922972,-0.0076339039951563]],[[-0.061778180301189,0.16810491681099,-0.0026878216303885],[-0.014834937639534,0.005955939181149,-0.043280571699142],[0.0082283793017268,-0.01294048782438,-0.10957646369934]],[[0.011570978909731,-0.037794977426529,0.1010959148407],[0.019832955673337,-0.030268937349319,0.045017004013062],[0.083385623991489,0.010096334852278,-0.02936102822423]],[[-0.39939230680466,0.050199564546347,0.19975866377354],[-0.19823096692562,0.098782584071159,0.10815857350826],[-0.18704706430435,0.12610913813114,0.061979416757822]],[[-0.031043859198689,0.072426609694958,-0.086581349372864],[0.030981097370386,-0.016565522179008,0.022622585296631],[0.023127097636461,-0.042608022689819,-0.085216470062733]],[[-0.081264548003674,-0.055912267416716,-0.074870534241199],[-0.044249568134546,-0.085949845612049,-0.077327609062195],[-0.0013733307132497,-0.048057712614536,0.022245831787586]],[[-0.10326834022999,-0.10270041972399,0.15773187577724],[-0.035731550306082,0.060302287340164,0.070958651602268],[-0.026707818731666,-0.048721052706242,-0.032663702964783]],[[0.044646911323071,-0.061854779720306,-0.0037751719355583],[-0.13564811646938,-0.059886436909437,-0.1077054515481],[0.025112759321928,-0.12398913502693,-0.10061846673489]],[[-0.010554035194218,0.030616465955973,0.0058343540877104],[-0.0089368401095271,-0.016367174685001,0.039426259696484],[-0.035364672541618,-0.023734452202916,-0.040090437978506]],[[-0.10116565972567,0.037374645471573,0.14162388443947],[-0.069339610636234,-0.0072123138234019,0.035014875233173],[-0.020998114719987,-0.0027544647455215,-0.066102728247643]],[[0.059387724846601,-0.12219043821096,-0.044052466750145],[0.015484695322812,-0.099484793841839,-0.011593105271459],[0.020579528063536,-0.17053328454494,-0.05847891792655]],[[-0.038973841816187,-0.25164124369621,-0.0054872138425708],[-0.0017389159183949,-0.12566527724266,0.060187596827745],[0.015124620869756,-0.088569946587086,0.060938276350498]],[[0.02582991309464,-0.0088498061522841,0.058492075651884],[0.038245908915997,0.091134533286095,-0.0060724657960236],[0.0023453338071704,-0.0091472249478102,-0.076490551233292]],[[-0.068258479237556,-0.0079684257507324,0.044262673705816],[-0.087594121694565,-0.013010326772928,-0.07599001377821],[-0.13031317293644,0.0024387431330979,0.061352714896202]],[[0.043708924204111,0.28088289499283,-0.011316862888634],[0.15159192681313,0.062902666628361,-0.1580046415329],[0.012194331735373,-0.0030716231558472,-0.10532405227423]],[[-0.054522883147001,-0.022191287949681,0.14801093935966],[-0.054646361619234,0.12507681548595,0.052730642259121],[-0.14576888084412,0.06235621497035,-0.04922929033637]],[[-0.090676926076412,-0.072718687355518,0.074302472174168],[-0.036991935223341,-0.038096215575933,0.0085721677169204],[0.013462754897773,-0.061247825622559,-0.037295840680599]],[[0.031828656792641,-0.15910297632217,0.018219921737909],[0.086865231394768,-0.095416009426117,-0.061841018497944],[0.095908485352993,0.035922557115555,-0.10819425433874]],[[-0.0175776258111,0.032031867653131,0.047529868781567],[-0.024651726707816,0.055325798690319,-0.021072303876281],[-0.10323692113161,-0.051409780979156,-0.023762986063957]],[[0.0079595604911447,-0.22932271659374,-0.14614939689636],[0.057410441339016,0.050802879035473,-0.12410141527653],[0.14337283372879,0.10127006471157,-0.030156942084432]],[[0.063527904450893,0.10254032164812,-0.17522452771664],[0.10197123885155,0.04388502985239,-0.026496350765228],[-0.084779962897301,0.079328343272209,-0.046740785241127]],[[-0.012955142185092,-0.1013805642724,-0.089207530021667],[-0.035593662410975,0.035861264914274,-0.1951339840889],[-0.1192663833499,-0.20394806563854,-0.080750048160553]],[[-0.0024482018779963,-0.10054218769073,0.010817913338542],[-0.072183601558208,-0.17009113729,-0.074960634112358],[-0.047388255596161,-0.059689801186323,-0.085163541138172]],[[0.0089704534038901,-0.086074352264404,-0.056193061172962],[0.016574248671532,0.010403119958937,-0.033540640026331],[-0.016515139490366,-0.020576031878591,-0.083427377045155]],[[-0.0095599293708801,0.015948804095387,-0.079098708927631],[-0.014651132747531,-0.081262983381748,0.092523343861103],[-0.033133670687675,-0.0030760860536247,0.11212277412415]],[[0.17981638014317,-0.35141411423683,-0.30079191923141],[0.063753545284271,-0.051405869424343,0.05004320666194],[0.27169287204742,0.055420368909836,-0.079334162175655]],[[0.096672624349594,-0.049383267760277,0.14056907594204],[0.067576766014099,-0.047190170735121,-0.040202021598816],[-0.048628613352776,-0.11340370029211,-0.14929537475109]],[[0.075613394379616,-0.06451091170311,-0.035420432686806],[0.0002854957128875,0.085714265704155,-0.08829340338707],[0.016735149547458,0.0072133089415729,-0.021771607920527]],[[0.1406657397747,-0.017262946814299,-0.38445168733597],[0.13654242455959,0.12027303874493,-0.065751634538174],[-0.022238394245505,0.033284716308117,-0.13626082241535]],[[-0.125140234828,0.18778705596924,-0.049050211906433],[-0.075403898954391,-0.20305606722832,-0.092606961727142],[-0.046223577111959,0.070066653192043,-0.10843429714441]]],[[[0.22079013288021,0.082924030721188,0.024211807176471],[0.021811785176396,-0.032208152115345,-0.058304723352194],[0.095049314200878,-0.14604957401752,-0.017886646091938]],[[-0.042523246258497,-0.055593930184841,0.011359646916389],[-0.017387662082911,-0.10402203351259,0.12143284082413],[-0.012860734015703,-0.0023137119133025,0.01913870126009]],[[-0.098728008568287,-0.14433431625366,0.066211372613907],[0.014166163280606,0.06759886443615,0.090235009789467],[0.074638023972511,0.12631419301033,0.10982660204172]],[[0.032467734068632,0.020845236256719,-0.081420451402664],[0.071259155869484,0.0350620187819,-0.052210628986359],[0.0080494647845626,-0.11155990511179,-0.10938250273466]],[[-0.017729837447405,-0.063151717185974,0.019857199862599],[0.057049416005611,0.038294389843941,0.0094513278454542],[0.034225169569254,-0.13458825647831,0.042540498077869]],[[0.079158268868923,-0.16542312502861,0.060067474842072],[-0.13467626273632,0.15958115458488,0.0053401836194098],[0.12783375382423,-0.019015517085791,-0.00015570786490571]],[[0.088854424655437,0.081494629383087,0.034532312303782],[0.1239101588726,-0.05224946141243,0.12662722170353],[0.039545971900225,-0.080193631350994,-0.12419039011002]],[[0.0115962382406,-0.15795992314816,-0.054971676319838],[0.029629340395331,-0.045266732573509,-0.11341126263142],[-0.026378735899925,0.073896862566471,0.073519088327885]],[[-0.03068383783102,0.0024263344239444,-0.021912679076195],[0.018896285444498,0.049937974661589,0.11795055866241],[-0.010966219007969,0.015497686341405,0.11086515337229]],[[0.18211871385574,0.03599975630641,-0.10399474948645],[0.13282600045204,-0.042161010205746,-0.0032513858750463],[0.073278859257698,0.093919701874256,-0.048310920596123]],[[0.14159075915813,0.045673120766878,0.15416181087494],[0.20144367218018,-0.01877311617136,-0.12603081762791],[-0.0045259245671332,-0.02923590503633,0.012896050699055]],[[0.16482697427273,0.02575365267694,-0.073311552405357],[0.10629893839359,-0.044350896030664,0.00094383268151432],[0.057333227247,-0.085696496069431,-0.045410133898258]],[[-0.010464190505445,-0.0076908157207072,0.05419671908021],[0.030996831133962,-0.13427601754665,0.03178258612752],[-0.043374571949244,-0.0057448036968708,0.010692524723709]],[[0.087432056665421,0.063195832073689,-0.11061266064644],[0.084028773009777,0.10830584913492,-0.12995903193951],[0.1333719342947,-0.061981145292521,-0.039823640137911]],[[0.032740455120802,0.07172929495573,0.0014115438098088],[0.0059614316560328,-0.07188481092453,0.0027933900710195],[-0.032074425369501,-0.0021593389101326,0.011992617510259]],[[0.085007555782795,0.019119871780276,0.053820144385099],[0.13343530893326,-0.24006812274456,0.045267920941114],[-0.025797007605433,0.053888861089945,-0.13246038556099]],[[0.11361218243837,0.0046474281698465,-0.041859287768602],[-0.087514169514179,-0.050778392702341,0.046309303492308],[-0.06462337821722,0.047459997236729,0.10256151109934]],[[-0.10963203758001,0.10440706461668,-0.036067314445972],[-0.09083915501833,-0.015851305797696,0.0046033319085836],[-0.088414788246155,0.044153913855553,0.025386214256287]],[[0.053623620420694,0.024009894579649,-0.10098059475422],[0.046274520456791,0.054003849625587,-0.025790130719543],[0.091666765511036,-0.033658299595118,-0.018024718388915]],[[0.17657272517681,0.077592313289642,0.045311525464058],[0.10383001714945,0.033932738006115,-0.11454743146896],[-0.070528663694859,-0.14145408570766,-0.071986168622971]],[[0.033542226999998,-0.0042061838321388,0.034042090177536],[-0.014520211145282,-0.059342220425606,-0.037160228937864],[-0.073437191545963,-0.15000230073929,-0.023109147325158]],[[-0.12554608285427,-0.064260885119438,-0.010003905743361],[-0.11044804006815,0.079655423760414,0.24606285989285],[0.090708754956722,0.054178256541491,0.12460953742266]],[[0.056191049516201,-0.077639065682888,0.038979683071375],[0.092868454754353,0.17571842670441,0.093901753425598],[0.0018768220907077,0.052201453596354,0.012471066787839]],[[0.17260754108429,0.077990673482418,0.070915684103966],[0.077033653855324,-0.099700778722763,-0.20986022055149],[-0.10049489885569,-0.097703836858273,-0.13070057332516]],[[0.12083644419909,0.013142527081072,-0.15087100863457],[0.13830599188805,-0.12451170384884,-0.075686544179916],[0.12656819820404,-0.10770932585001,-0.2230546027422]],[[0.16631175577641,0.099100612103939,0.16186685860157],[0.12769864499569,-0.13803109526634,-0.045184340327978],[0.060352440923452,-0.011246559210122,-0.17216224968433]],[[-0.014817552641034,0.097682528197765,-0.020074911415577],[-0.081775940954685,-0.014946604147553,0.0048388070426881],[0.01384960860014,0.087797783315182,0.0757856965065]],[[-0.32649156451225,0.094081707298756,-0.022073416039348],[-0.05870483443141,0.012899295426905,0.001259037759155],[-0.0016877431189641,0.0070178168825805,0.047293409705162]],[[-0.036549393087626,0.033603366464376,0.10165398567915],[-0.087644562125206,0.13334013521671,0.036780934780836],[-0.17405307292938,-0.037426516413689,-0.17839223146439]],[[0.05367835611105,-0.094304636120796,-0.059829831123352],[0.041047148406506,0.0025800548028201,-0.16445170342922],[0.079422511160374,0.084704510867596,-0.036627281457186]],[[-0.11055968701839,-0.14679105579853,-0.0065726093016565],[-0.038495697081089,0.1493034362793,0.15758922696114],[0.044257540255785,0.029624113813043,-0.083482667803764]],[[-0.043764397501945,0.017348883673549,-0.0054956334643066],[-0.0092453882098198,-0.018910015001893,-0.019143609330058],[-0.10037742555141,-0.11515998840332,-0.10195506364107]]],[[[0.18256637454033,0.014763141050935,0.017578596249223],[-0.023207964375615,-0.092973925173283,0.0031401198357344],[0.026879735291004,-0.10003156214952,-0.042014569044113]],[[-0.037509717047215,0.042586304247379,0.048281736671925],[-0.0056926663964987,-0.052332691848278,0.0026924482081085],[-0.00032726183417253,0.011781525798142,-0.0034309120383114]],[[0.036160986870527,0.0054064388386905,0.03247918561101],[-0.11771025508642,0.043990924954414,0.016971161589026],[0.034926362335682,0.14248806238174,-0.14641039073467]],[[0.063323073089123,0.0012479497818276,-0.056217726320028],[0.0056729945354164,-0.12268647551537,-0.045607842504978],[-0.033848661929369,0.030629398301244,-0.07653446495533]],[[0.033661711961031,-0.041455443948507,0.039736691862345],[0.018208807334304,0.04275768622756,0.023724505677819],[0.022103011608124,-0.059393994510174,-0.078258968889713]],[[-0.043767143040895,-0.093532800674438,-0.16444981098175],[0.0068059922195971,-0.16575221717358,0.19499322772026],[0.01527242641896,0.062865793704987,0.2429466843605]],[[0.13675139844418,-0.082449421286583,0.098782621324062],[0.006560661830008,0.089680753648281,0.039355166256428],[-0.0099468734115362,-0.097032904624939,-0.09065867215395]],[[0.13163150846958,0.025454930961132,-0.17049719393253],[0.1008423641324,0.012484567239881,0.029309323057532],[-0.079348042607307,-0.14492902159691,-0.19812110066414]],[[-0.011450932361186,-0.020875245332718,0.091126382350922],[0.12708146870136,-0.018109014257789,-0.017097607254982],[-0.058589957654476,0.0019448287785053,-0.1100759357214]],[[0.018966935575008,0.059929437935352,0.0062825656495988],[0.016143312677741,0.1121543943882,-0.014654650352895],[0.06493878364563,-0.15368540585041,0.12000409513712]],[[-0.12351310998201,-0.010172792710364,0.0078665018081665],[0.14480014145374,0.066370815038681,0.11725523322821],[0.043124128133059,-0.037458200007677,-0.13110038638115]],[[-0.061161629855633,0.14242574572563,0.03376504778862],[-0.092799752950668,0.0033668444957584,-0.14761233329773],[-0.023578751832247,0.037710800766945,0.055178083479404]],[[0.015121338889003,0.0049326359294355,0.048006761819124],[-0.058268938213587,0.014558107592165,0.13839963078499],[-0.078290201723576,0.10162087529898,0.17626945674419]],[[-0.051526468247175,-0.15126439929008,-0.055702097713947],[-0.23715925216675,-0.11170254647732,0.069315664470196],[0.18861025571823,0.12631331384182,0.17264737188816]],[[0.0029193807858974,-0.025562044233084,0.042840905487537],[-0.015610177069902,0.011310759931803,0.03430251032114],[0.03377927467227,-0.051965299993753,0.043214846402407]],[[0.22364343702793,0.085979834198952,-0.017350336536765],[-0.094226583838463,-0.06758151948452,0.11682138592005],[0.016253599897027,-0.20164301991463,-0.0037176897749305]],[[0.055377103388309,0.096519455313683,0.069076485931873],[-0.0035872408188879,-0.089460469782352,0.013460056856275],[-0.0733752399683,0.0055003692395985,-0.20951302349567]],[[0.02090441994369,-0.067835256457329,-0.080540545284748],[0.1054419875145,0.046828020364046,0.15660038590431],[0.06207200884819,-0.10733881592751,-0.030495373532176]],[[0.032778911292553,-0.018229385837913,0.035622425377369],[0.036323890089989,-0.096414625644684,0.029417242854834],[-0.039736464619637,-0.031289130449295,0.10661505907774]],[[0.23102171719074,-0.04880690574646,0.018620410934091],[0.046647228300571,-0.080572977662086,-0.20118960738182],[-0.08661076426506,-0.12770241498947,-0.21820743381977]],[[0.17350222170353,0.064970314502716,-0.019344454631209],[-0.15158015489578,-0.10032951831818,-0.067276485264301],[-0.078462801873684,-0.13910768926144,-0.013620462268591]],[[-0.070140965282917,0.0049639204517007,-0.091671258211136],[0.0086681861430407,0.089913226664066,0.13246917724609],[-0.022798974066973,-0.12700343132019,0.11643581092358]],[[0.11899121850729,-0.1148132905364,0.1213037148118],[0.0163733381778,0.0032229796051979,-0.2236110419035],[-0.00023168310872279,-0.0025415506679565,-0.094903789460659]],[[0.018188342452049,-0.098423577845097,-0.087920539081097],[-0.062179960310459,-0.075192995369434,-0.085367165505886],[-0.092392139136791,-0.009849589318037,0.018212663009763]],[[0.1470593214035,-0.047413680702448,-0.024731032550335],[0.10661979019642,0.068732798099518,-0.099453441798687],[-0.15912909805775,-0.050048731267452,-0.083841092884541]],[[-0.044858496636152,-0.17499351501465,0.056929167360067],[0.02735572680831,0.062345076352358,0.044133368879557],[-0.053547330200672,-0.10610784590244,0.0026742937043309]],[[-0.0047063222154975,-0.019843239337206,-0.077229686081409],[0.045901209115982,0.14597177505493,-0.038369651883841],[-0.087670847773552,-0.013757358305156,-0.01480202190578]],[[0.10657799243927,0.021871346980333,-0.069101095199585],[0.076560877263546,-0.0019608847796917,-0.11449365317822],[-0.084341116249561,-0.056560900062323,0.064484536647797]],[[-0.017777424305677,0.13586513698101,0.011974526569247],[-0.041944276541471,-0.079225562512875,0.036676548421383],[-0.10046996176243,-0.15049509704113,-0.0098481103777885]],[[0.09701219201088,0.062843509018421,0.005032307934016],[-0.022378485649824,0.055882018059492,0.053237084299326],[0.034619804471731,-0.20440475642681,-0.030313666909933]],[[0.050926804542542,0.075748823583126,0.13482113182545],[-0.039838436990976,-0.037386860698462,-0.061408214271069],[-0.083570249378681,-0.073910236358643,0.063226908445358]],[[0.10629186779261,0.0086665758863091,0.023403009399772],[-0.016181575134397,-0.074249058961868,0.09897767752409],[-0.13578055799007,0.017317924648523,0.0043600481003523]]],[[[-0.014900435693562,-0.084338121116161,-0.023498309776187],[-0.035353347659111,0.056145943701267,-0.051987987011671],[0.058235455304384,0.11655610054731,-0.018104270100594]],[[-0.078016854822636,0.0024958699941635,-0.15629497170448],[-0.13180430233479,-0.11362128704786,-0.076085552573204],[0.010571748949587,-0.14267672598362,-0.1675930172205]],[[0.018253993242979,0.033155295997858,-0.045083951205015],[-0.075582899153233,0.073707066476345,-0.096227392554283],[0.013032211922109,0.044337332248688,0.037609186023474]],[[-0.019703637808561,-0.027806796133518,-0.02940277941525],[-0.038346741348505,0.027210867032409,0.0037163295783103],[0.011510257609189,0.077877007424831,0.041112996637821]],[[-0.1199194714427,-0.1145671531558,0.0037692810874432],[-0.032078117132187,-0.096921935677528,-0.031619612127542],[-0.14452275633812,-0.20347452163696,-0.054224792867899]],[[0.03328412771225,-0.098759882152081,0.049226149916649],[-0.01876612007618,0.063507936894894,-0.023371104151011],[-0.0040077934972942,0.038131538778543,-0.013455313630402]],[[0.015168108977377,-0.0021585978101939,0.060765475034714],[-0.0032413250301033,-0.016084896400571,0.054252851754427],[-0.027842603623867,-0.060777127742767,-0.0322047136724]],[[0.059667140245438,-0.037788782268763,-0.018738958984613],[-0.030016396194696,0.063692800700665,0.023992592468858],[-0.04203949868679,-0.0044126915745437,-0.015056963078678]],[[-0.0058206547982991,-0.10264394432306,-0.075501471757889],[-0.058403469622135,-0.21093168854713,-0.099972829222679],[-0.0014099503168836,-0.19096286594868,-0.095039181411266]],[[0.043718066066504,0.035599324852228,-0.010316394269466],[0.016752630472183,-0.019151300191879,-0.015239235013723],[-0.069949500262737,0.02431446313858,-0.02199848741293]],[[0.063149459660053,-0.047468587756157,-0.029003731906414],[0.022711932659149,-0.017625484615564,0.028957461938262],[0.025300655514002,-0.062840677797794,0.0037982745561749]],[[-0.058117769658566,0.0046358369290829,0.019813813269138],[-0.032937612384558,0.0057441527023911,-0.00097544357413426],[-0.021701604127884,0.070753395557404,0.019471678882837]],[[0.005352565087378,0.014536718837917,0.0090262601152062],[0.014317313209176,-0.10134762525558,0.029925089329481],[0.043494325131178,-0.0039287186227739,-0.032607644796371]],[[-0.031040444970131,0.042439427226782,-0.057144738733768],[0.0034462758339942,0.04357460513711,0.0054538622498512],[0.059544209390879,-0.032393794506788,-0.014127908274531]],[[-0.0072269001975656,-0.016310747712851,-0.037575453519821],[-0.13858230412006,-0.14942443370819,-0.1607179492712],[-0.16373401880264,-0.072556391358376,-0.07147952914238]],[[0.063205376267433,-0.0094757564365864,-0.032393749803305],[-0.039524063467979,-0.0090067004784942,-0.016856588423252],[-0.037350751459599,0.048736989498138,0.036847576498985]],[[0.073792047798634,0.029963860288262,-0.043271977454424],[-0.021350627765059,0.022674212232232,0.026217693462968],[-0.11543748527765,0.036509301513433,0.017125735059381]],[[0.020925598219037,0.029273575171828,0.032564755529165],[0.020438123494387,-0.010652030818164,0.080896191298962],[-0.07335340231657,-0.034831240773201,0.032198324799538]],[[0.0083091119304299,-0.020979477092624,-0.0010563861578703],[-0.022271344438195,-0.12147690355778,-0.061207331717014],[0.056167047470808,0.099272258579731,0.086766622960567]],[[0.0071945055387914,0.071555592119694,0.086834974586964],[0.04932314530015,-0.0026896577328444,-0.11408095061779],[0.099332429468632,-0.098462752997875,-0.062563620507717]],[[0.014720878563821,-0.061308324337006,-0.18580032885075],[-0.070359580218792,-0.19257760047913,-0.01594896055758],[-0.090265452861786,-0.13457947969437,-0.045428924262524]],[[0.035658542066813,0.0047793686389923,-0.006070023868233],[-0.078183211386204,0.051483634859324,-0.025853572413325],[0.050892218947411,0.004174186848104,-0.01514093298465]],[[0.002200398594141,-0.052072536200285,-0.027179254218936],[-0.027496261522174,-0.043429169803858,0.047062024474144],[-0.026887053623796,0.053242262452841,0.057718578726053]],[[0.0015981454635039,0.026205012574792,0.010192076675594],[-0.035666633397341,0.10939199477434,0.069807566702366],[-0.13667085766792,-0.09454084187746,0.056417174637318]],[[0.056482251733541,0.01015998609364,0.098744131624699],[-0.025484116747975,0.043361868709326,-0.018077380955219],[-0.011930235661566,-0.084993146359921,-0.014561005868018]],[[-0.035198755562305,0.014648185111582,0.0020954259671271],[-0.024704175069928,0.014763433486223,0.030273251235485],[0.039971005171537,-0.093012370169163,0.050807241350412]],[[0.083829179406166,0.00021973914408591,0.099577598273754],[0.027412125840783,0.034648284316063,0.077292539179325],[0.015317168086767,0.033405270427465,0.0051024658605456]],[[-0.031069492921233,0.036592844873667,0.0020405903924257],[-0.0054124551825225,0.023479372262955,-0.050483074039221],[0.025615634396672,0.016294928267598,-0.041047818958759]],[[0.04836043342948,-0.068414367735386,-0.031872071325779],[0.059862926602364,0.070965103805065,-0.098104953765869],[0.083157747983932,-0.026632860302925,-0.046337343752384]],[[0.081397973001003,0.002260354347527,-0.054500889033079],[-0.075099892914295,0.054985735565424,0.060252748429775],[0.076214604079723,0.060913860797882,0.11496378481388]],[[-0.032162386924028,-0.019354689866304,0.060961909592152],[0.023745182901621,-0.013714713975787,-0.031035738065839],[0.046938594430685,0.0033831854816526,-0.0082888649776578]],[[-0.059092275798321,-0.11373042315245,0.014354511164129],[-0.084929004311562,0.026740550994873,0.11691803485155],[-0.047743190079927,0.1121511682868,0.045189011842012]]],[[[-0.030114725232124,-0.032559964805841,0.114770822227],[0.0098548959940672,0.049148466438055,0.076350122690201],[0.047559928148985,0.007116453256458,0.085003420710564]],[[-0.024554897099733,0.00075488863512874,-0.056987468153238],[-0.12321015447378,0.084853529930115,0.022743336856365],[-0.066455133259296,-0.11627369374037,-0.091639220714569]],[[0.040425047278404,0.083849333226681,-0.062147106975317],[0.033107534050941,-0.036437451839447,0.054912522435188],[0.067711137235165,-0.12750107049942,0.064629718661308]],[[0.075175650417805,0.0044097537174821,0.040791228413582],[-0.046793539077044,-0.08451958745718,-0.0011367913102731],[-0.016727579757571,-0.016223210841417,-0.0066625140607357]],[[-0.039893079549074,0.051331035792828,-0.10922671854496],[0.023534709587693,-0.12641905248165,-0.019886570051312],[0.015309749171138,0.015021196566522,0.054198544472456]],[[0.05669442564249,-0.075050793588161,-0.091028414666653],[0.11532075703144,-0.075395114719868,-0.015397469513118],[0.071567706763744,-0.2059391438961,-0.20671825110912]],[[-0.04455591738224,0.058033488690853,0.11815652996302],[-0.040121093392372,0.022415528073907,0.0077526862733066],[0.09187325835228,-0.047092717140913,0.067687496542931]],[[-0.036204669624567,0.015621640719473,0.075514435768127],[0.0047864108346403,0.072112195193768,0.0076244147494435],[-0.048276595771313,0.012636851519346,-0.052481852471828]],[[0.0011400551302359,0.019435252994299,-0.022737361490726],[-0.014533665031195,0.082368649542332,0.043284460902214],[-0.084148705005646,0.044178571552038,-0.015043072402477]],[[-0.077334500849247,0.0019662661943585,-0.027797840535641],[-0.11911934614182,0.029889674857259,0.047920476645231],[-0.029022084549069,0.0084719341248274,0.055588487535715]],[[0.10639107227325,0.065673440694809,0.1202307343483],[0.12224717438221,0.048785097897053,-0.084988988935947],[0.054330874234438,-0.12649162113667,-0.042243529111147]],[[0.045999947935343,-0.030070347711444,-0.18724197149277],[0.036634802818298,0.11477670818567,-0.0375188998878],[-0.07458620518446,-0.1099344342947,-0.10205825418234]],[[-0.13444311916828,0.15669775009155,-0.09075216203928],[-0.030145678669214,0.1789114177227,-0.13220246136189],[-0.047455444931984,0.1433357745409,-0.12211033701897]],[[-0.013725160621107,0.11695460230112,0.052450392395258],[-0.042584635317326,0.17312569916248,0.1447332650423],[-0.043474681675434,0.016031881794333,-0.052578829228878]],[[0.013728368096054,-0.0047832042910159,-0.012449437752366],[-0.082790248095989,0.054353445768356,-0.041610009968281],[0.063874676823616,-0.010341537185013,0.050063613802195]],[[0.04837628826499,0.11502695828676,-0.045501202344894],[0.085761897265911,0.01969532482326,-0.041186112910509],[-0.0080133732408285,-0.023498659953475,-0.033813245594501]],[[0.066483497619629,0.017568187788129,-0.051326923072338],[-0.031065868213773,0.041720803827047,0.059206712990999],[-0.041896793991327,0.093001119792461,0.10445906966925]],[[-0.0099370731040835,0.088699080049992,0.013461124151945],[-0.086725816130638,0.00050006964011118,0.0048076971434057],[0.061474181711674,-0.017434351146221,0.08515477925539]],[[0.0081897815689445,0.080937497317791,0.052623830735683],[-0.021023286506534,0.053075857460499,0.090839028358459],[-0.065223172307014,0.036890659481287,0.011512780562043]],[[0.13463854789734,0.010285220108926,0.12540309131145],[0.12305340915918,0.12619943916798,0.023583613336086],[-0.083473816514015,0.17939709126949,0.077565096318722]],[[0.13108175992966,0.076117791235447,0.19834372401237],[0.13159540295601,0.219104424119,0.23844276368618],[0.065333567559719,0.10955901443958,0.14114990830421]],[[0.15268258750439,-0.063030056655407,0.0044293124228716],[0.048086233437061,-0.032930959016085,-0.012080298736691],[0.011049754917622,0.013618100434542,-0.12616202235222]],[[0.01195202767849,0.12687911093235,-0.011220633052289],[0.076105557382107,-0.015991069376469,-0.075484603643417],[-0.13738559186459,0.10536953061819,-0.14635808765888]],[[0.026327777653933,-0.036273811012506,0.020053550601006],[0.00051604554755613,0.019287638366222,-0.077391691505909],[-0.010530200786889,0.037768293172121,-0.044890787452459]],[[-0.005729038733989,-0.0035853669978678,-0.019734002649784],[-0.051945552229881,-0.012078188359737,0.081610672175884],[0.048024494200945,-0.0032957214862108,0.048357177525759]],[[0.033083077520132,0.042302060872316,0.1134679839015],[-0.042488351464272,-0.11320278793573,0.18519508838654],[-0.029427515342832,-0.053057875484228,0.13352280855179]],[[0.12885519862175,0.081149965524673,-0.042369030416012],[0.018485825508833,0.010336573235691,0.0093640759587288],[0.031008074060082,0.18648119270802,-0.041222702711821]],[[0.054560970515013,-0.026650495827198,-0.035385940223932],[0.094148643314838,0.087091498076916,-0.070113070309162],[0.095800206065178,-0.06279331445694,-0.037191964685917]],[[0.04624667018652,-0.032378748059273,-0.0091674085706472],[-0.007706830278039,-0.020064178854227,0.15798787772655],[-0.050495080649853,-0.023688836023211,0.032398831099272]],[[-0.0049510770477355,0.043317146599293,0.0014463500119746],[0.16849276423454,0.14697094261646,-0.071546912193298],[0.0047995946370065,0.10233144462109,-0.089197054505348]],[[-0.04144037887454,0.1177826821804,0.015654636546969],[0.070344351232052,-0.0053246817551553,-0.091984666883945],[0.024889441207051,0.036168877035379,-0.008821695111692]],[[0.064974628388882,0.065814569592476,0.057609435170889],[-0.06860113888979,0.012513678520918,-0.015394755639136],[0.009958541020751,0.0096401171758771,-0.087393656373024]]],[[[-0.1800050586462,0.011058170348406,0.053661599755287],[0.022098394110799,-0.077145531773567,0.092520363628864],[-0.14186997711658,-0.094598829746246,-0.023986855521798]],[[-0.016246737912297,0.0048606269992888,0.036067202687263],[0.018036440014839,0.042313478887081,-0.066834390163422],[0.10179278254509,-0.02278090454638,-0.027530135586858]],[[0.019418217241764,0.09787954390049,0.082951493561268],[0.054866459220648,0.16089959442616,-0.087660670280457],[-0.035051733255386,0.039142195135355,-0.11751054227352]],[[-0.058989245444536,0.0632688626647,0.039225097745657],[-0.010396960191429,-0.16636738181114,0.073793150484562],[-0.13516834378242,-0.022526156157255,0.017626406624913]],[[0.031203597784042,0.036915171891451,0.035303767770529],[0.11262148618698,-0.0030000247061253,-0.025471029803157],[-0.029916113242507,0.073710411787033,-0.06800439953804]],[[0.14625759422779,-0.13919349014759,-0.26042506098747],[-0.080739706754684,-0.079147703945637,0.010046895593405],[0.10604882985353,-0.014052812941372,0.18627355992794]],[[0.019586408510804,-0.076949395239353,-0.0074154557660222],[-0.16473184525967,0.011394125409424,-0.081525735557079],[-0.11154624819756,-0.051163952797651,0.028841847553849]],[[-0.063833124935627,0.024110523983836,0.17386645078659],[-0.15079481899738,0.081128843128681,0.18822567164898],[0.052405085414648,-0.091896899044514,-0.066117651760578]],[[0.072170414030552,0.01116977352649,0.10609218478203],[0.025071104988456,0.063697457313538,0.0033303119707853],[0.046915382146835,-0.13792617619038,-0.023318391293287]],[[0.033479914069176,-0.093404725193977,0.083173528313637],[-0.036535520106554,0.048246875405312,-0.077540598809719],[-0.080549955368042,0.0082418126985431,-0.012942291796207]],[[-0.03314758464694,-0.058461897075176,0.030514266341925],[0.049540977925062,0.0047196722589433,0.11527828872204],[-0.07407484203577,-0.0073237936012447,-0.19513121247292]],[[0.037568114697933,0.065235659480095,-0.12271345406771],[0.0029251056257635,-0.215819850564,0.069197833538055],[-0.15176238119602,0.081805907189846,0.038722839206457]],[[-0.053672708570957,0.087544903159142,-0.0089111728593707],[0.075655274093151,0.066462136805058,-0.045719880610704],[-0.036075871437788,-0.066374413669109,0.057812012732029]],[[0.081130169332027,-0.063158810138702,-0.21220317482948],[-0.071185447275639,0.028894387185574,0.15902203321457],[0.039297476410866,-0.049582786858082,0.10445057600737]],[[-0.052213668823242,0.087365224957466,0.055501539260149],[-0.012881340458989,0.050069231539965,-0.048006869852543],[-0.090439841151237,-0.089124299585819,0.018178733065724]],[[-0.063469678163528,0.10867061465979,0.0078797107562423],[-0.10839785635471,-0.033861663192511,0.020476864650846],[0.026304181665182,-0.072969630360603,0.15263101458549]],[[-0.01352521032095,-0.012983390130103,0.26011571288109],[-0.13778422772884,0.075064212083817,-0.16969738900661],[-0.04569773748517,-0.24898165464401,-0.031532976776361]],[[-0.10465635359287,-0.012621031142771,0.069046162068844],[-0.22614835202694,0.011380583979189,0.088489882647991],[-0.097700230777264,0.098135374486446,0.055629670619965]],[[-0.1139218211174,-0.019357591867447,0.10827295482159],[0.10908593982458,-0.062673926353455,0.0033110363874584],[0.014865081757307,0.075801052153111,0.034133091568947]],[[-0.0079994825646281,0.0360984839499,-0.028083490207791],[-0.13653108477592,0.01772159896791,0.045763097703457],[-0.18512980639935,-0.062039207667112,-0.12072736769915]],[[-0.13593000173569,0.025869015604258,0.099926203489304],[-0.050654318183661,-0.082841984927654,0.07605367898941],[-0.086762025952339,-0.13030897080898,0.040059801191092]],[[0.077900066971779,-0.1843848079443,-0.0023103053681552],[0.042086008936167,0.029468473047018,0.022626385092735],[0.10993700474501,0.089931331574917,-0.30184149742126]],[[0.02099147811532,0.12601336836815,-0.1872299015522],[-0.046503037214279,-0.032859094440937,-0.041968494653702],[0.046870168298483,-0.16859810054302,0.23125649988651]],[[-0.029922047629952,0.061299994587898,-0.080049015581608],[-0.055082634091377,-0.11814147979021,-0.087975583970547],[-0.21252000331879,-0.10064928233624,0.031581554561853]],[[-0.12501819431782,-0.013060301542282,-0.12615293264389],[-0.064231529831886,-0.021966388449073,-0.14775790274143],[-0.11314308643341,-0.0081896912306547,-0.019599491730332]],[[-0.17227323353291,0.055671885609627,0.043875183910131],[-0.17732235789299,0.13100987672806,-0.18440105021],[-0.10826358944178,-0.13692700862885,0.10753957927227]],[[-0.0051872348412871,-0.21692618727684,0.0010076327016577],[0.031798932701349,0.025636933743954,0.048237316310406],[0.077373914420605,-0.0026148492470384,0.072264850139618]],[[0.24208602309227,0.23756514489651,-0.44248205423355],[-0.10959352552891,-0.11820327490568,-0.002862015273422],[-0.088747635483742,-0.19652651250362,0.019102066755295]],[[0.0017237059073523,-0.059350613504648,-0.052612990140915],[0.052399918437004,-0.10635329037905,0.066173829138279],[-0.12919537723064,-0.1022939234972,-0.094883047044277]],[[-0.042042106389999,-0.010602946393192,-0.054604236036539],[0.044004060328007,-0.067431628704071,0.041057728230953],[-0.032243356108665,0.19749087095261,-0.049583397805691]],[[-0.001683387090452,-0.051786135882139,-0.054794210940599],[0.014757540076971,-0.12241947650909,0.16572639346123],[0.19971939921379,0.020707525312901,-0.22071023285389]],[[-0.020203787833452,0.0057955803349614,0.034005768597126],[-0.065205976366997,-0.042045183479786,-0.16287924349308],[-0.0044306796044111,0.043266832828522,0.14126119017601]]],[[[0.0032656346447766,0.072013653814793,-0.053022541105747],[-0.042968135327101,-0.17930661141872,-0.0068898284807801],[-0.041878055781126,-0.071849666535854,-0.13875669240952]],[[0.020368264988065,-0.023925604298711,-0.012583648785949],[0.029258022084832,-0.078303761780262,0.00010331826342735],[0.0020027761347592,-0.036328501999378,-0.057558156549931]],[[-0.03759141638875,-0.014527627266943,0.10878105461597],[-0.003171595511958,-0.015508955344558,0.053349692374468],[0.077110446989536,0.0034599506761879,0.11756680905819]],[[-0.042275689542294,0.021444156765938,-0.08968123793602],[-0.09165957570076,-0.043941091746092,-0.035240642726421],[-0.16378717124462,-0.11303132772446,-0.17940899729729]],[[-0.017392242327332,0.021287254989147,0.13565228879452],[0.021386308595538,0.030183976516128,-0.032153647392988],[0.12990710139275,-0.0064007681794465,0.016917280852795]],[[-0.014407173730433,0.03328338637948,-0.044434517621994],[0.058397773653269,-0.18010909855366,-0.0070953201502562],[0.07715380191803,-0.044595126062632,-0.0085642384365201]],[[0.056839171797037,-0.026872860267758,-0.23078073561192],[0.0097937993705273,0.027682408690453,-0.13197086751461],[-0.034347750246525,0.017985804006457,-0.021053781732917]],[[-0.10207477211952,-0.088715940713882,-0.069022253155708],[0.023166075348854,-0.10440710186958,-0.050792001187801],[-0.0063291434198618,-0.13747514784336,-0.12177487462759]],[[-0.022926779463887,0.022025598213077,0.066986277699471],[0.07296135276556,-0.063515193760395,-0.036222983151674],[0.078676477074623,0.041888419538736,-0.0075523457489908]],[[-0.018948396667838,-0.087243653833866,-0.007070941850543],[-0.12821544706821,-0.16022920608521,-0.089368470013142],[-0.10462387651205,0.034410145133734,-0.071473501622677]],[[-0.0061149909161031,-0.091034688055515,0.037508260458708],[-0.10923820734024,-0.098261818289757,0.084810264408588],[-0.16337168216705,-0.082044117152691,0.042417570948601]],[[-0.058963615447283,-0.058437827974558,-0.16721399128437],[-0.0014367697294801,0.02761216647923,-0.044816382229328],[-0.045171987265348,-0.0077221603132784,0.010106372646987]],[[-0.18529926240444,-0.068938128650188,0.12267652153969],[-0.026530653238297,-0.12577727437019,-0.016287235543132],[0.024196671321988,-0.06401252746582,0.071848191320896]],[[-0.032392498105764,-0.1433798968792,0.058656085282564],[-0.11499336361885,-0.0014151306822896,0.0052421241998672],[-0.22124336659908,-0.047825198620558,-0.090586058795452]],[[-0.02132261171937,-0.010735816322267,-0.075164511799812],[0.094804413616657,0.004876967985183,0.010794095695019],[-0.049088105559349,0.007373187225312,0.063526943325996]],[[0.10930532962084,0.064452223479748,-0.2950476706028],[-0.041158225387335,0.17954610288143,-0.078089222311974],[0.033754445612431,-0.042410418391228,-0.0021597165614367]],[[0.041923366487026,0.0012921052984893,-0.07417169958353],[0.057193752378225,-0.0087414169684052,0.061305284500122],[-0.1123329102993,-0.10348084568977,-0.031880848109722]],[[0.072640098631382,0.012456007301807,-0.058074653148651],[-0.032065451145172,0.046045988798141,-0.19539184868336],[-0.15681505203247,-0.0016001462936401,-0.020884266123176]],[[0.013669181615114,-0.023668019101024,0.034405723214149],[-0.016235075891018,-0.0074092582799494,-0.050952814519405],[-0.13714137673378,0.074867770075798,-0.2150716483593]],[[-0.063454277813435,-0.018068395555019,-0.13174992799759],[-0.027976771816611,-0.094569139182568,-0.051192611455917],[-0.089624211192131,-0.11060454696417,-0.089686699211597]],[[-0.01820520684123,-0.026065081357956,-0.0064576384611428],[-0.099903516471386,-0.064144469797611,-0.10299282521009],[-0.017192307859659,-0.096702598035336,-0.07562094181776]],[[0.05790988728404,-0.049328438937664,0.046131782233715],[-0.050038985908031,0.019177751615644,-0.074807718396187],[0.027497466653585,-0.04540253803134,0.1314480304718]],[[-0.094943195581436,0.019839659333229,-0.053944300860167],[-0.018923006951809,-0.0011583043960854,0.061992529779673],[0.10542058944702,-0.0031301788985729,-0.085863433778286]],[[-0.059024818241596,-0.04603199660778,0.092675752937794],[0.059119578450918,-0.014032402075827,0.011166381649673],[0.060204930603504,-0.045249409973621,-0.092058032751083]],[[0.072352007031441,0.011036019772291,-0.13396210968494],[0.11565708369017,0.087133020162582,0.20046755671501],[-0.028611810877919,-0.053964518010616,0.03334417194128]],[[-0.020276224240661,0.028461156412959,-0.17106288671494],[0.055643118917942,-0.16172942519188,-0.056627076119184],[-0.031838558614254,-0.16511403024197,-0.28064420819283]],[[0.013120369054377,-0.12891641259193,0.093164332211018],[-0.12257272005081,0.062914565205574,-0.058483302593231],[-0.028186095878482,0.10737247765064,0.076159805059433]],[[0.0088330088183284,-0.031650882214308,0.014732494950294],[-0.11822443455458,-0.055505741387606,-0.15188474953175],[0.17033196985722,0.14099436998367,0.043321784585714]],[[-0.077835589647293,0.0037373062223196,-0.16361626982689],[-0.090792901813984,-0.16162164509296,0.071031205356121],[0.0060503990389407,-0.27130049467087,-0.11306294053793]],[[-0.052810933440924,-0.018798183649778,0.1045385748148],[0.05083354562521,-0.057986214756966,0.063556529581547],[-0.03149301186204,-0.081353209912777,-0.062759473919868]],[[-0.036692123860121,-0.16415753960609,-0.13710635900497],[0.018753495067358,-0.053634576499462,0.031523495912552],[0.03122553229332,-0.052335757762194,-0.035718388855457]],[[-0.076865114271641,0.065544754266739,-0.085252918303013],[-0.12451062351465,0.082249708473682,-0.027305990457535],[0.0057752965949476,-0.0009315075003542,0.053802207112312]]],[[[-0.17668110132217,-0.10178282111883,-0.026046419516206],[-0.02601320669055,-0.054615095257759,0.0044185598380864],[0.033388040959835,0.065481379628181,0.25238221883774]],[[-0.058588899672031,-0.035430215299129,0.022461995482445],[-0.064152829349041,0.0093676522374153,0.0079190572723746],[-0.0073342276737094,-0.0054842354729772,0.13039650022984]],[[0.036929212510586,0.020048497244716,0.11428729444742],[-0.037999581545591,-0.080661661922932,0.007234453689307],[0.071568682789803,0.03636609390378,-0.084416061639786]],[[-0.12642778456211,-0.045479577034712,-0.080329306423664],[0.018761852756143,0.014374886639416,-0.026574425399303],[-0.021302353590727,-0.00013347588537727,0.029358169063926]],[[-0.065667562186718,0.001785745494999,-0.03523912653327],[-0.028033832088113,0.027997618541121,0.081707209348679],[0.0024826761800796,0.0073310416191816,0.1140900850296]],[[0.08505542576313,-0.028832765296102,-0.0036498629488051],[-0.0030377900693566,0.060264732688665,0.026492565870285],[-0.062979198992252,-0.012237147428095,-0.19024427235126]],[[-0.023736748844385,-0.049114014953375,-0.10283243656158],[0.076115511357784,0.083833053708076,-0.0091904681175947],[-0.1743900924921,-0.0074711455963552,0.044589534401894]],[[-0.058205723762512,0.096411593258381,0.023084547370672],[-0.031818814575672,-0.016703622415662,-0.020001100376248],[0.062165964394808,0.22344210743904,0.036549285054207]],[[0.024658186361194,-0.029258726164699,0.015206556767225],[-0.012540703639388,-0.036176681518555,-0.031604595482349],[-0.042946331202984,0.035898834466934,0.087546169757843]],[[-0.09993552416563,-0.005316058639437,-0.015455108135939],[-0.072310879826546,-0.018365293741226,0.062174506485462],[-0.011965620331466,0.016049386933446,-0.047850981354713]],[[-0.073296241462231,0.016677360981703,-0.041373390704393],[-0.066440440714359,-0.00079791276948527,-0.10622670501471],[-0.018119508400559,0.026749113574624,0.12328610569239]],[[-0.060625988990068,-0.16905981302261,-0.19730956852436],[0.026012320071459,-0.0064501627348363,-0.20187379419804],[7.6481985161081e-05,0.12071017920971,0.090568862855434]],[[0.087688662111759,-0.096625298261642,0.013931806199253],[-0.085287816822529,0.0031226731371135,-0.084757171571255],[0.066246323287487,0.09753642231226,-0.032483961433172]],[[-0.026156296953559,-0.10890460759401,0.079346261918545],[0.047339875251055,-0.078701034188271,0.032337877899408],[0.083071328699589,0.12635958194733,-0.56038326025009]],[[-0.063063733279705,-0.020195364952087,-0.062101326882839],[0.02581150457263,-0.016718024387956,-0.024709673598409],[-0.043397057801485,0.052119676023722,0.15248620510101]],[[-0.040399648249149,0.055557060986757,-0.1055885180831],[-0.077927559614182,0.019532587379217,0.27850642800331],[-0.020314123481512,-0.09837444126606,-0.11636275798082]],[[0.026220377534628,0.10224279016256,-0.008327922783792],[0.059575859457254,-0.065499112010002,-0.25027599930763],[0.015306514687836,0.019630618393421,-0.031374607235193]],[[0.096140064299107,-0.12136050313711,0.06885190308094],[-0.073761105537415,-0.06385750323534,-0.1265157610178],[0.04995795711875,0.050388749688864,-0.079077735543251]],[[-0.087311662733555,0.0065347533673048,-0.030514569953084],[-0.12590979039669,0.042738318443298,0.0014948769239709],[-0.18389864265919,-0.04671747609973,0.13579455018044]],[[-0.21884801983833,0.025417644530535,-0.030296672135592],[-0.17969554662704,-0.11948844045401,0.076610133051872],[0.012962036766112,-0.092338725924492,0.26750302314758]],[[-0.012683466076851,-0.069572329521179,0.025686567649245],[-0.025748820975423,-0.050467379391193,-0.019932383671403],[-0.036139529198408,-0.067968100309372,0.17934504151344]],[[-0.0070420452393591,0.041488397866488,0.19826292991638],[-0.036313105374575,-0.054156452417374,0.046136446297169],[-0.15120854973793,0.096898511052132,-0.10684715211391]],[[0.010290346108377,-0.076999790966511,-0.042604964226484],[0.047343593090773,-0.025453427806497,0.012045525945723],[0.016283078119159,0.069797091186047,0.049598265439272]],[[-0.14314004778862,-0.042383838444948,0.046994753181934],[-0.10363185405731,0.0052162352949381,0.10082077234983],[0.12441550940275,0.062834888696671,0.037551701068878]],[[-0.15910977125168,-0.045903366059065,0.0042168986983597],[-0.075260818004608,-0.11910769343376,0.076031573116779],[0.04241431504488,-0.12638306617737,0.12437656521797]],[[0.010093586519361,0.02569255232811,-0.065658360719681],[-0.010321861132979,0.048180669546127,-0.032332796603441],[-0.1654699742794,0.0010761846788228,0.056551925837994]],[[0.074858665466309,-0.02537296898663,0.091277942061424],[-0.0040686074644327,-0.058647584170103,0.024138791486621],[0.10339107364416,-0.093082807958126,-0.12015465646982]],[[0.083375975489616,0.03054241463542,-0.030457492917776],[0.054576527327299,0.030593637377024,0.1567260324955],[-0.039575055241585,-0.11382731050253,0.079866357147694]],[[-0.18098011612892,-0.15960195660591,-0.17534367740154],[-0.02626715041697,-0.053680624812841,0.010530394501984],[0.034331541508436,0.0040896339341998,0.096514873206615]],[[-0.04121059179306,0.064306810498238,-0.0013188838493079],[0.0885940939188,0.065138280391693,-0.020728603005409],[0.051379159092903,-0.072784826159477,-0.089380450546741]],[[0.039023093879223,0.040067993104458,-0.11984776705503],[0.036625787615776,0.070610582828522,0.17623654007912],[-0.093692667782307,-0.086455382406712,0.0049003516323864]],[[-0.32090410590172,-0.20051111280918,0.094422087073326],[-0.078757964074612,-0.43184694647789,-0.22258932888508],[-0.084373384714127,-0.14128398895264,-0.18846619129181]]],[[[-0.011254927143455,0.035107970237732,0.018874477595091],[-0.15417304635048,0.082827024161816,0.14462292194366],[-0.088670812547207,-0.054931033402681,0.14524693787098]],[[0.048912357538939,0.012449235655367,-0.11481755971909],[0.0058123613707721,0.032572414726019,0.024050896987319],[0.11833887547255,-0.011213455349207,0.093623317778111]],[[-0.01127369236201,-0.03043894842267,0.033774945884943],[0.062504604458809,0.087913282215595,-0.11924995481968],[-0.054433085024357,-0.1042313799262,-0.034738928079605]],[[-0.061062965542078,0.083379574120045,0.10718104243279],[-0.15008705854416,-0.011611985974014,-0.070674546062946],[0.1219844892621,0.050838816910982,0.054708864539862]],[[-0.024870770052075,-0.0025837533175945,-0.19338183104992],[0.024774761870503,-0.0050527532584965,0.0012203340884298],[-0.0069389366544783,0.046552788466215,-0.057808429002762]],[[-0.035387393087149,-0.019521579146385,-0.0012913335813209],[0.020923558622599,-0.022845117375255,0.0026858828496188],[0.020975697785616,0.072356224060059,0.14165206253529]],[[-0.14639921486378,0.02785375341773,0.012163639068604],[0.046684678643942,0.010290971025825,-0.048019915819168],[0.029010813683271,-0.010239757597446,0.030249141156673]],[[0.024984795600176,0.042524557560682,0.021863114088774],[-0.042809192091227,0.089911818504333,0.013425592333078],[0.024897521361709,0.076511196792126,0.048308875411749]],[[-0.030075632035732,-0.1070324704051,0.0031198654323816],[0.039514638483524,-0.049418058246374,0.047688227146864],[0.018602326512337,-0.030334617942572,0.050438441336155]],[[-0.023969640955329,0.063380628824234,-0.005470406729728],[-0.0066714528948069,-0.1485932469368,0.045842118561268],[-0.11012891680002,-0.0049474486149848,0.019211990758777]],[[-0.018685886636376,0.088200107216835,0.066467747092247],[-0.076009280979633,-0.025760643184185,0.014994183555245],[0.044040713459253,0.060787782073021,-0.069719083607197]],[[-0.15783633291721,-0.017688643187284,-0.059453807771206],[0.0090450271964073,0.045752514153719,0.13524480164051],[0.045919474214315,-0.13787414133549,0.085249774158001]],[[-0.010241648182273,0.12032635509968,-0.036123663187027],[-0.066825516521931,-0.059821773320436,-0.022143539041281],[-0.08217442035675,0.064831100404263,0.059327114373446]],[[0.013066970743239,-0.067366950213909,0.018239535391331],[0.0809406042099,0.084622740745544,0.030746135860682],[-0.0014890482416376,0.019337695091963,0.08304850757122]],[[0.02711059898138,-0.018852496519685,-0.1391639560461],[0.03882509469986,-0.0046755657531321,-0.046737834811211],[0.015751598402858,0.028298767283559,0.01256837323308]],[[-0.021527096629143,0.064902268350124,0.019983096048236],[0.021712061017752,-0.011330462992191,-0.001037908368744],[-0.069096677005291,-0.10784576833248,-0.024163255468011]],[[0.0078012547455728,0.028349544852972,-0.05250982940197],[-0.056834880262613,0.096079424023628,-0.038688059896231],[0.096965715289116,0.071717247366905,0.054032422602177]],[[-0.033523626625538,0.13341388106346,0.13358607888222],[-0.12533563375473,-0.058658845722675,0.087067984044552],[0.0027987824287266,0.031664803624153,0.025759661570191]],[[-0.00088472780771554,-0.090027123689651,-0.0043507721275091],[-0.020859275013208,0.091207444667816,0.1058991253376],[-0.15876144170761,0.074034877121449,0.0761873498559]],[[-0.096822299063206,0.087638527154922,0.039083439856768],[-0.15636034309864,-0.040304157882929,0.23418015241623],[-0.048917401582003,-0.018218005076051,0.050989132374525]],[[-0.080798014998436,-0.11171329021454,0.0062422724440694],[0.071770243346691,0.033076632767916,0.0075650298967957],[0.052544943988323,0.0007481929496862,0.042809750884771]],[[0.090176045894623,0.046536065638065,0.0036316986661404],[0.063940450549126,-0.0068641258403659,0.019533809274435],[0.16457617282867,0.14166022837162,-0.10833368450403]],[[0.12553423643112,-0.029608240351081,0.032430026680231],[0.058450479060411,-0.01410595793277,-0.049697961658239],[0.093307629227638,0.13726557791233,-0.10233715176582]],[[-0.07238245010376,0.10565309971571,0.070519305765629],[-0.017003674060106,-0.039270527660847,0.12657028436661],[0.069785915315151,0.049455132335424,0.036206662654877]],[[-0.039982840418816,-0.048904705792665,-0.0030399360693991],[0.067808158695698,-0.01750204898417,0.052365485578775],[0.055219989269972,8.4549115854315e-05,0.045994222164154]],[[-0.021967962384224,0.046273753046989,-0.0104641020298],[-0.031332533806562,0.13925960659981,0.07840109616518],[0.065972901880741,0.067032650113106,0.038767214864492]],[[0.036798223853111,-0.0047824098728597,0.070268094539642],[-0.022974377498031,-0.12602107226849,0.060961958020926],[-0.0019381082383916,0.030914107337594,-0.077489711344242]],[[0.084318794310093,0.14910118281841,-0.032035700976849],[0.083947502076626,-0.013345409184694,-0.075514905154705],[-0.023745369166136,0.079628646373749,0.061359990388155]],[[-0.01315070874989,-0.035921435803175,-0.06954026222229],[-0.091854929924011,0.076144225895405,0.04393208399415],[0.029563512653112,0.11120133846998,0.076029725372791]],[[-0.026329815387726,0.12671980261803,0.11785496026278],[-0.054651722311974,-0.10071361809969,0.031914498656988],[-0.083301186561584,-0.080508463084698,-0.049955401569605]],[[-0.083460785448551,0.06243808567524,0.039459634572268],[-0.0713105276227,0.014833000488579,-0.0023414816241711],[-0.10817047953606,-0.019305197522044,-0.048231519758701]],[[-9.5588020485593e-06,-0.037160579115152,0.011985319666564],[-0.072696395218372,-0.19167178869247,-0.016532007604837],[-0.017210073769093,-0.10149528086185,-0.067135162651539]]],[[[-0.0093663176521659,-0.13729394972324,-0.059552151709795],[0.045447744429111,-0.034900657832623,-0.042485535144806],[-0.044814642518759,-0.025551676750183,0.0090166805312037]],[[0.0074299154803157,-0.0064261564984918,-0.033330041915178],[0.08676103502512,0.082945324480534,0.033050052821636],[0.041341044008732,-0.063385263085365,-0.11672832071781]],[[-0.15003053843975,0.055913701653481,-0.055463030934334],[-0.18930350244045,0.043339818716049,0.022174563258886],[-0.15909273922443,-0.051322314888239,-0.072019211947918]],[[-0.0017381760990247,-0.073496513068676,-0.050494063645601],[-0.01331465691328,0.021992506459355,-0.0055918963626027],[-0.030328258872032,0.031024131923914,0.017640298232436]],[[-0.056566901504993,0.016382593661547,0.041950173676014],[0.078239671885967,-0.007713230792433,-0.085697747766972],[0.058918576687574,-0.12297930568457,0.021914143115282]],[[0.095477096736431,-0.047589424997568,0.083242036402225],[-0.052977327257395,-0.052364129573107,-0.014171126298606],[-0.070286095142365,-0.021013921126723,0.083250030875206]],[[-0.056690994650126,-0.045382604002953,0.006093377713114],[-0.011692519299686,0.09435310959816,0.061756037175655],[0.05517141148448,-0.025013089179993,-0.084717474877834]],[[-0.096912182867527,-0.042318575084209,0.11758591234684],[-0.035875890403986,0.066018857061863,0.014505790546536],[-0.17380040884018,-0.042136341333389,-0.10409071296453]],[[-0.0092138918116689,-0.042787797749043,0.06040096282959],[0.0034728054888546,0.023266024887562,0.0833550542593],[0.0033912726212293,-0.018952265381813,-0.01683746650815]],[[-0.12586161494255,-0.020536590367556,-0.00014038411609363],[0.037048660218716,0.026133662089705,0.051834017038345],[0.18599556386471,-0.047646712511778,0.062615036964417]],[[-0.044861301779747,-0.024535411968827,-0.10612367093563],[-0.013090929947793,-0.052411794662476,-0.030939964577556],[-0.034284703433514,-0.028176907449961,0.12123274058104]],[[-0.027077024802566,0.10941052436829,-0.037550091743469],[-0.030229898169637,-0.011159348301589,-0.026155101135373],[0.094717927277088,0.091385863721371,-0.0077900737524033]],[[0.079230442643166,0.064935810863972,-0.032039899379015],[-0.0068450113758445,0.042115297168493,-0.010528855025768],[0.030336989089847,0.13599421083927,0.047918763011694]],[[-0.028783682733774,0.097163029015064,-0.047368966042995],[0.028620084747672,-0.045624583959579,-0.030966687947512],[-0.077329955995083,0.10443571954966,0.014106949791312]],[[0.017707007005811,0.030919648706913,-0.034776709973812],[0.01800219155848,0.025867311283946,-0.11862105876207],[0.042698062956333,-0.076151736080647,-0.0066788466647267]],[[0.038740765303373,0.021664870902896,0.11597570776939],[0.01132947485894,0.036579176783562,0.062937170267105],[0.039950899779797,-0.083909474313259,-0.049906797707081]],[[0.0049680569209158,-0.10236246883869,-0.014991668984294],[-0.019257184118032,-0.050183091312647,0.030611284077168],[0.08886943012476,0.16075766086578,0.022417662665248]],[[-0.15739619731903,-0.00069356878520921,0.026468057185411],[-0.020236242562532,-0.10208374261856,-0.034827973693609],[0.0026474057231098,0.05697675794363,-0.11432255804539]],[[-0.083776198327541,-0.064057819545269,-0.092170692980289],[0.069202542304993,0.0077578304335475,-0.13167162239552],[0.0037319473922253,0.064661785960197,-0.091294169425964]],[[-0.10554101318121,-0.151670768857,-0.1556111574173],[-0.062151305377483,-0.024815205484629,0.0093103805556893],[0.19265784323215,0.015380267053843,-0.11981762945652]],[[0.010611405596137,-0.06694707274437,-0.017188128083944],[0.060038365423679,-0.018479792401195,0.11477820575237],[-0.032739967107773,-0.017855288460851,0.047275643795729]],[[0.16199545562267,0.0088050048798323,-0.064569853246212],[-0.17377829551697,-0.26284772157669,0.051287971436977],[-0.11956679821014,-0.10053938627243,-0.094820193946362]],[[0.0021347044967115,-0.025711361318827,0.051993228495121],[-0.00022427721705753,-0.075226649641991,0.039933115243912],[-0.17132668197155,-0.091313935816288,0.06616073101759]],[[-0.057267099618912,-0.039747726172209,-0.038136508315802],[-0.068745218217373,-0.014379542320967,-0.033466871827841],[0.034812033176422,0.045959517359734,0.14208240807056]],[[-0.020105205476284,-0.017880152910948,-0.12021880596876],[0.10176283866167,-0.051127053797245,-0.21879516541958],[0.0092312749475241,-0.018001932650805,-0.16322784125805]],[[-0.038004979491234,-0.10740979760885,0.014280192553997],[0.010604419745505,0.094758577644825,-0.090629301965237],[-0.038276322185993,0.020202858373523,0.007901119068265]],[[0.011184556409717,-0.053430277854204,0.053969349712133],[-0.021004905924201,-0.066060088574886,0.018243866041303],[-0.057675942778587,0.022706096991897,0.096508078277111]],[[-0.027715180069208,0.16570080816746,0.038371425122023],[0.050763394683599,-0.04873750731349,-0.070279374718666],[-0.13015413284302,0.0054720854386687,-0.047319453209639]],[[0.047586835920811,0.026531454175711,0.015512694604695],[-0.023167978972197,0.09661228209734,0.020678797736764],[0.063925050199032,-0.038294158875942,-0.13044647872448]],[[-0.072009064257145,-0.076601505279541,-0.020755747333169],[0.0030142888426781,0.025756150484085,0.017887830734253],[-0.048261325806379,0.04073890671134,0.15575413405895]],[[-0.11695370078087,-0.013743700459599,0.001515691052191],[0.0099519258365035,-0.057536914944649,0.065771229565144],[-0.052163921296597,0.043247222900391,-0.10552611202002]],[[0.064818993210793,0.02078877389431,-0.070560052990913],[0.048334691673517,0.00070790841709822,0.015081916935742],[0.064815431833267,0.048718363046646,0.066297620534897]]],[[[0.079490646719933,0.018910644575953,-0.057162135839462],[-0.081420600414276,-0.05939919501543,-0.063635773956776],[0.071504108607769,-0.029695235192776,-0.08127598464489]],[[-0.060229986906052,0.015365940518677,-0.12303767353296],[0.11116459220648,0.023840585723519,0.058754909783602],[-0.077081762254238,-0.041886124759912,-0.011926737613976]],[[-0.015762031078339,-0.060914222151041,0.064520716667175],[-0.010715391486883,-0.029171885922551,0.22789108753204],[0.016011802479625,-0.051320396363735,-0.062818683683872]],[[0.11783850193024,-0.10456050187349,0.16857433319092],[-0.09839203953743,-0.54796475172043,-0.044686436653137],[0.12846612930298,0.091579429805279,-0.019978232681751]],[[0.040573440492153,-0.040222235023975,0.0054146605543792],[-0.010422351770103,0.020576884970069,0.041453137993813],[-0.026667766273022,-0.025280065834522,-0.036405742168427]],[[-0.12725456058979,-0.013501980341971,0.072255164384842],[-0.12910059094429,0.11266081035137,-0.093693971633911],[-0.36352118849754,0.46972665190697,-0.16502317786217]],[[-0.02987608127296,0.11308598518372,0.076027341187],[-0.069524854421616,-0.032933715730906,-0.036146968603134],[0.051212809979916,-0.021426187828183,-0.036506518721581]],[[0.070867106318474,-0.088848292827606,0.14640845358372],[-0.10437273979187,-0.11304281651974,0.069508999586105],[-0.0064945719204843,0.061122659593821,-0.0054433490149677]],[[-0.032100439071655,0.13176277279854,0.15706239640713],[0.017212849110365,0.059945926070213,0.020201213657856],[-0.01132396236062,0.045514978468418,0.079680703580379]],[[0.13597939908504,-0.066729880869389,-0.075336597859859],[0.00069155992241576,0.041443932801485,0.051984302699566],[-0.10939383506775,-0.015617785975337,-0.046217307448387]],[[-0.070018403232098,0.13879331946373,-0.029534475877881],[-0.0058560259640217,0.047056518495083,-0.01837900839746],[0.069081716239452,-0.011592144146562,-0.19954174757004]],[[-0.053899511694908,-0.066338121891022,-0.13276273012161],[0.1758726388216,-0.058074746280909,-0.049620985984802],[0.076642341911793,-0.13940721750259,0.0094781676307321]],[[-0.029757300391793,-0.047139689326286,-0.0049059661105275],[0.03382983058691,-0.035492468625307,-0.039083916693926],[-0.11015701293945,0.011498818174005,-0.09394571185112]],[[0.13762827217579,-0.099790327250957,0.020925454795361],[-0.033764082938433,-0.38173508644104,0.021464953199029],[-0.090856827795506,0.16281071305275,0.10066165030003]],[[0.10069237649441,-0.11072213947773,0.11162611842155],[-0.01665573194623,-0.02223015204072,0.018111554905772],[-0.025492589920759,0.11346764862537,0.0081469267606735]],[[-0.051443550735712,-0.20297539234161,-0.15924981236458],[0.026099260896444,0.0013702966971323,0.059255331754684],[-0.082449294626713,0.16091883182526,-0.11351256072521]],[[-0.082956083118916,0.17573407292366,0.11749038845301],[0.1151167973876,0.0059069478884339,-0.53643929958344],[0.16165138781071,0.077826999127865,-0.097368367016315]],[[-0.071924448013306,-0.10452412068844,-0.030877014622092],[0.12015429884195,0.12054900079966,-0.1590891033411],[-0.073078870773315,-0.18770292401314,0.18659593164921]],[[-0.13936023414135,-0.065531142055988,0.032238896936178],[-0.13303895294666,-0.029573298990726,0.041445698589087],[0.1212314888835,-0.039884958416224,0.036720003932714]],[[0.017122071236372,0.010266857221723,-0.065371610224247],[0.040199402719736,-0.10303052514791,0.07809329777956],[-0.010958331637084,-0.01441599894315,0.065353140234947]],[[-0.075219482183456,-0.048857562243938,-0.09372267127037],[-0.020126944407821,-0.011620012111962,0.028468694537878],[-0.17886930704117,-0.21571843326092,0.0011158273555338]],[[-0.095470666885376,-0.12630693614483,0.0063306363299489],[0.029922032728791,0.06715040653944,0.15135525166988],[-0.026882721111178,0.059166017919779,-0.14542606472969]],[[0.045928865671158,-0.052905298769474,-0.025567328557372],[-0.04629097878933,0.0147355934605,0.026780301705003],[-0.076527193188667,0.089548416435719,0.009394196793437]],[[-0.010411548428237,0.015049076639116,-0.030266718938947],[0.0046439301222563,-0.071830205619335,0.11866956949234],[-0.23031705617905,-0.04338675737381,0.068522833287716]],[[-0.0041576414369047,0.048641070723534,0.024875639006495],[0.015121200121939,-0.042932588607073,-0.099801003932953],[0.0031845504418015,-0.068959526717663,-0.073309987783432]],[[0.067107781767845,-0.11549077928066,0.081289567053318],[0.077622294425964,0.16275146603584,-0.29079332947731],[-0.012983270920813,-0.16706196963787,-0.018785642459989]],[[-0.029758485034108,0.033655323088169,0.048259999603033],[-0.0083494307473302,0.045806787908077,-0.056596219539642],[-0.013305114582181,0.042078047990799,-0.022013844922185]],[[-0.056817121803761,0.082457572221756,-0.14120097458363],[0.077882081270218,0.23987127840519,0.17476938664913],[-0.21695405244827,-0.16290774941444,-0.018707742914557]],[[-0.016515614464879,0.125961124897,-0.026498813182116],[-0.04265371710062,-0.068854451179504,-0.0099932886660099],[0.055250976234674,0.029463553801179,-0.12500512599945]],[[0.028565371409059,-0.066053539514542,0.02414240129292],[0.089654594659805,-0.049269013106823,0.017238596454263],[0.041163459420204,0.066093720495701,0.15289486944675]],[[0.3254876434803,0.046227637678385,-0.14183673262596],[-0.28429952263832,-0.15205685794353,-0.12656697630882],[0.11951110512018,0.017193119972944,0.16820964217186]],[[-0.0035731149837375,0.026003234088421,-0.038336586207151],[-0.14436073601246,-0.11194329708815,-0.092652715742588],[-0.028870658949018,0.098955571651459,0.061569582670927]]],[[[0.050081703811884,-0.052804056555033,-0.0085965180769563],[0.01657977886498,0.006343552377075,-0.10004036128521],[0.029445189982653,-0.036794167011976,-0.054285310208797]],[[0.0099625447764993,-0.039586633443832,-0.019339337944984],[-0.04438342154026,-0.027541780844331,-0.028930587694049],[0.039803482592106,0.025465780869126,0.051769472658634]],[[-0.21362526714802,-0.040404330939054,-0.00088774226605892],[-0.036333475261927,0.09893573820591,-0.014822631143034],[-0.0083451354876161,0.11125767976046,-0.012387157417834]],[[-0.028525494039059,0.068550273776054,0.08039204031229],[-0.080971337854862,-0.042871464043856,-0.067929923534393],[-0.079251311719418,-0.011233683675528,0.028890077024698]],[[-0.060128822922707,-0.02096052095294,-0.034162096679211],[0.030377572402358,0.0042922501452267,0.024165086448193],[0.085285291075706,0.0719363540411,0.0013537597842515]],[[-0.092439688742161,-0.08464003354311,-0.085443496704102],[-0.07983011752367,0.15149421989918,-0.029270440340042],[-0.077320948243141,-0.0043484852649271,-0.051534533500671]],[[-0.13901548087597,0.011797458864748,-0.042241994291544],[0.11760596930981,-0.052064556628466,-0.058274209499359],[0.036635681986809,-0.09356451779604,-0.055026642978191]],[[-0.022698849439621,0.058680322021246,0.011192289181054],[-0.081257179379463,0.033149834722281,-0.0087169762700796],[-0.088180065155029,0.13245451450348,0.020577972754836]],[[0.01341107301414,-0.067296966910362,-0.11321659386158],[-0.0083707803860307,0.062113258987665,-0.031444147229195],[0.069929048418999,-0.030058985576034,0.0071213594637811]],[[0.10781574249268,0.053185630589724,-0.15054523944855],[0.037950403988361,0.095203176140785,-0.11729529500008],[0.024924166500568,0.035114381462336,0.083287753164768]],[[0.0066487682051957,0.049895010888577,-0.084537826478481],[0.02649987116456,0.024400133639574,-0.066812209784985],[-0.10298793762922,0.065730646252632,-0.01443749666214]],[[-0.11831050366163,-0.014419845305383,0.077400200068951],[-0.0048562148585916,-0.052708316594362,-0.15685647726059],[0.048637084662914,-0.13151226937771,-0.13089399039745]],[[-0.0565005838871,0.0083681577816606,0.011486694216728],[0.11235117167234,0.018246592953801,-0.17586077749729],[0.021060789003968,0.097190596163273,0.064703144133091]],[[-0.0046558049507439,0.087729722261429,0.12971924245358],[-0.028694527223706,-0.0063605736941099,0.022765653207898],[-0.061898525804281,-0.096183076500893,-0.047986038029194]],[[0.024430509656668,-0.068675257265568,-0.043031014502048],[0.072121746838093,0.094446815550327,-0.029596099629998],[0.0361049734056,0.028022052720189,0.066277012228966]],[[0.075643226504326,-0.15459927916527,0.029145203530788],[-0.01688570715487,0.036954462528229,-0.063323989510536],[-0.057657368481159,-0.014532747678459,-0.03861828148365]],[[-0.023065943270922,0.10068342089653,-0.0079535590484738],[-0.050974663347006,-0.15215964615345,-0.14625954627991],[-0.10650939494371,-0.031236262992024,-0.018185270950198]],[[-0.011813634075224,-0.0061061698943377,-0.026944138109684],[0.021739112213254,-0.017380924895406,-0.0040083564817905],[-0.12243116647005,-0.011656610295177,-0.049907129257917]],[[-0.01069526001811,0.078432723879814,-0.088242471218109],[-0.16853711009026,-0.10521287471056,0.11480059474707],[-0.0076778423972428,-0.052301485091448,0.020512646064162]],[[0.02446404658258,0.084166951477528,0.07895165681839],[-0.030988605692983,-0.026400720700622,-0.0046777878887951],[-0.091378279030323,0.04348486289382,0.032640229910612]],[[-0.015041009522974,-0.072528913617134,-0.12817370891571],[-0.12135462462902,-0.06522274762392,-0.056592348963022],[0.0018948495853692,0.062710456550121,0.084600999951363]],[[-0.15003432333469,-0.073569729924202,-0.15603265166283],[0.019910421222448,-0.011469137854874,0.12217903882265],[0.023544861003757,0.039108362048864,0.23264217376709]],[[0.10607179999352,-0.14344455301762,-0.078120209276676],[0.030723080039024,-0.074253782629967,-0.1206169128418],[-0.072433933615685,-0.10404397547245,0.052649606019258]],[[-0.061021126806736,0.072789207100868,0.090541794896126],[0.055852524936199,0.12540470063686,0.087693803012371],[-0.17129094898701,0.0018465697066858,-0.066527388989925]],[[-0.060180094093084,0.0080485856160522,-0.019475666806102],[0.076594151556492,-0.04765235260129,0.12931475043297],[0.048901379108429,-0.040103185921907,0.065806463360786]],[[0.053723476827145,0.012022212147713,-0.0010159744415432],[-0.0050396285951138,0.045550495386124,0.06838933378458],[0.071528099477291,-0.078611746430397,-0.072105102241039]],[[-0.00059681659331545,0.016100751236081,0.16488184034824],[-0.071337573230267,0.0065582785755396,0.043848354369402],[-0.050365317612886,0.022222159430385,-0.1560935229063]],[[0.086042284965515,0.044083666056395,-0.020321050658822],[0.013773868791759,0.12908670306206,-0.0060394965112209],[0.13802921772003,-0.060636881738901,0.23273174464703]],[[0.01719931140542,-0.0052597825415432,-0.020925914868712],[-0.066120997071266,-0.24117344617844,-0.13383142650127],[0.0015080668963492,-0.092050433158875,-0.055234327912331]],[[-0.042497586458921,0.11000542342663,0.1072811037302],[0.028591651469469,-0.0028472228441387,0.045689530670643],[-0.015304028987885,-0.1387577354908,-0.07924522459507]],[[-0.022839583456516,0.075183756649494,-0.068231180310249],[0.040337447077036,0.056259129196405,0.019435402005911],[0.0016375505365431,0.026657313108444,0.024878909811378]],[[-0.037155222147703,0.00012621752102859,0.078510731458664],[-0.12363359332085,-0.18435357511044,0.054052960127592],[0.00087415694724768,-0.051686584949493,-0.089958064258099]]],[[[-0.083977550268173,-0.10027524828911,-0.06023783609271],[-0.05711217597127,0.047992717474699,0.034175477921963],[-0.064985036849976,0.02878512442112,0.074292406439781]],[[-0.011055331677198,-0.067299604415894,0.029506789520383],[-0.0089333197101951,-0.019320391118526,-0.057437460869551],[-0.034578930586576,-0.14264477789402,-0.027591122314334]],[[0.042397055774927,0.17552177608013,0.070820577442646],[0.10351550579071,0.0038820523768663,-0.050598908215761],[0.01099868863821,-0.092740163207054,-0.042246401309967]],[[-0.096430771052837,-0.072220601141453,0.032189320772886],[-0.044061958789825,0.035708650946617,0.040380746126175],[-0.11968858540058,-0.030831012874842,-0.020077772438526]],[[0.023546485230327,-0.05332475528121,0.074771098792553],[0.13116717338562,0.077784635126591,0.11848832666874],[0.16616751253605,0.047910701483488,0.004103769082576]],[[-0.086105026304722,-0.13201586902142,0.024081146344543],[-0.10746870934963,0.018302028998733,-0.095375597476959],[-0.063679784536362,-0.01456852722913,0.04572993516922]],[[-0.062990836799145,-0.021830473095179,-0.17483954131603],[0.05387506633997,-0.097736775875092,0.01683509349823],[-0.20073626935482,0.039374615997076,-0.084448099136353]],[[0.090260982513428,-0.020396711304784,-0.074104607105255],[0.033996623009443,0.017091106623411,-0.10347555577755],[-0.067337341606617,0.058695767074823,0.020578395575285]],[[0.035525180399418,-0.082312926650047,-0.042431633919477],[-0.048652742058039,0.0010905486997217,0.10613219439983],[0.013414335437119,0.1147003993392,-0.0014941531699151]],[[-0.095015294849873,0.030040124431252,-0.062799751758575],[-0.008731254376471,-0.053836300969124,-0.0042549790814519],[-0.020824048668146,0.058170307427645,-0.02440826408565]],[[0.021903872489929,-0.044437553733587,-0.0081340745091438],[0.085409909486771,0.035233478993177,0.027305647730827],[-0.038336351513863,0.016977051272988,0.037014748901129]],[[-0.17668260633945,0.037362549453974,0.1188582777977],[-0.18248599767685,-0.050651468336582,-0.10585155338049],[-0.079142704606056,0.014799990691245,0.056241482496262]],[[0.054295301437378,-0.025508929044008,0.012833907268941],[0.03949935734272,-0.033795814961195,-0.014705545268953],[0.0016840670723468,-0.043759014457464,0.013388737104833]],[[0.024485286325216,-0.10141924023628,-0.082115523517132],[0.040614549070597,-0.090499050915241,-0.10440076887608],[0.01485591288656,0.10730655491352,-0.014614671468735]],[[-0.014307872392237,-0.032365828752518,0.089799493551254],[-0.092804834246635,0.033333774656057,-0.017241993919015],[0.0035383473150432,-0.018563903868198,0.036457944661379]],[[-0.18885168433189,-0.11298133432865,-0.035575844347477],[-0.14220541715622,-0.11611248552799,-0.026743894442916],[-0.026483928784728,-0.1242842450738,-0.04481053352356]],[[0.085871055722237,-0.032376915216446,0.077428139746189],[0.097535200417042,-0.12988947331905,0.042033519595861],[-0.11917172372341,-0.015701280906796,0.02579129114747]],[[-0.022046566009521,0.012981592677534,0.0046647284179926],[-0.030917372554541,-0.041089054197073,0.09940318018198],[-0.088816218078136,-0.081048101186752,-0.14891481399536]],[[-0.086482189595699,-0.17690771818161,0.12497272342443],[0.10915152728558,-0.052457246929407,0.032468974590302],[0.07349968701601,0.12371846288443,0.038662787526846]],[[-0.05996810272336,0.015983754768968,-0.0053129331208766],[-0.03594421222806,0.059614133089781,-0.0022201908286661],[-0.072491571307182,0.10169323533773,0.057736396789551]],[[-0.10586470365524,0.032367330044508,-0.20131833851337],[-0.083982400596142,-0.0033312551677227,0.01898224465549],[-0.14146769046783,0.036983784288168,0.078979276120663]],[[0.077856749296188,0.04419631883502,-0.049010880291462],[0.061667438596487,-0.1105972006917,0.017909875139594],[-0.029016779735684,-0.030263101682067,-0.076863259077072]],[[0.069820821285248,0.038043148815632,-0.047920912504196],[-0.02906484156847,-0.074618943035603,-0.063260987401009],[-0.0022568884305656,-0.08610088378191,0.016174020245671]],[[-0.080635778605938,0.016410512849689,0.022969903424382],[-0.13848555088043,-0.040477905422449,-0.081294447183609],[-0.12948603928089,-0.092493496835232,-0.13825760781765]],[[0.011734987609088,-0.12171330302954,0.06613951921463],[-0.01913825981319,-0.14924564957619,0.066747084259987],[0.002191120525822,-0.017060518264771,-0.046612590551376]],[[0.080690272152424,-0.048088606446981,0.028692929074168],[-0.021426107734442,-0.051933795213699,-0.037905514240265],[-0.021632136777043,-0.059094432741404,-0.012914247810841]],[[0.074212498962879,-0.026145534589887,-0.025369772687554],[0.066754408180714,0.028030725196004,-0.039412517100573],[0.017398463562131,-0.084937117993832,-0.056639444082975]],[[0.021543014794588,0.011961778625846,-0.11647890508175],[0.056074596941471,-0.048257112503052,-0.11813219636679],[0.071252658963203,-0.12196633219719,-0.045235246419907]],[[0.066033132374287,-0.14966505765915,0.046326853334904],[-0.034920070320368,0.0824009552598,0.025037089362741],[-0.089488424360752,-0.16513456404209,-0.04377119243145]],[[0.076033212244511,0.0097148083150387,0.053182866424322],[-0.059039071202278,0.032532744109631,-0.048206608742476],[-0.018174374476075,-0.029333794489503,-0.028318842872977]],[[-0.24221663177013,0.026443688198924,-0.095068462193012],[-0.046743832528591,0.0058285449631512,0.071902759373188],[0.098661489784718,-0.086202137172222,0.11585879325867]],[[-0.14197152853012,-0.10537973046303,-0.028615120798349],[-0.25537165999413,-0.098182670772076,0.034277949482203],[-0.0066747390665114,-0.091869540512562,-0.16326603293419]]],[[[-0.095332913100719,-0.070738837122917,-0.0018631510902196],[-0.038802418857813,-0.060847502201796,-0.056377954781055],[0.0055874367244542,0.057786341756582,-0.11132979393005]],[[-0.068684965372086,0.075410902500153,-0.03461791947484],[-0.003823796287179,-0.081877514719963,-0.00041204947046936],[0.078700609505177,0.0088119823485613,-0.063883699476719]],[[0.13174222409725,-0.082338161766529,-0.064990900456905],[0.0039890203624964,-0.054133970290422,0.13219167292118],[-0.046322289854288,0.043560512363911,-0.24065621197224]],[[0.00022367741621565,0.059222534298897,0.038026574999094],[-0.099604874849319,-0.01679996214807,-0.0096942568197846],[-0.016553524881601,-0.083750024437904,-0.029942886903882]],[[-0.084112264215946,-0.02200891636312,-0.029681449756026],[0.01806147582829,-0.0094053251668811,0.014692110940814],[-0.0056654782965779,-0.0045008501037955,-0.008597694337368]],[[-0.034274663776159,-0.084324680268764,0.050730794668198],[0.0066160662099719,-0.030412266030908,0.039233189076185],[0.055344205349684,0.013894309289753,-0.023468727245927]],[[0.13966888189316,0.022591667249799,-0.1406038403511],[-0.054528925567865,-0.12046398222446,0.10537770390511],[-0.046205218881369,-0.076801441609859,-0.13173526525497]],[[0.15315869450569,-0.20511557161808,0.003063652664423],[0.054212685674429,-0.0072734644636512,-0.00080604007234797],[-0.039031982421875,0.064295947551727,0.20475476980209]],[[-0.0042886552400887,0.14186173677444,-0.059574730694294],[-0.22058887779713,0.0090842405334115,0.080514274537563],[0.061014965176582,-0.049778807908297,-0.14634029567242]],[[-0.017670087516308,0.075649723410606,0.0045856591314077],[0.072413735091686,-0.168382614851,0.060099493712187],[0.080894730985165,-0.17236298322678,0.046427246183157]],[[-0.051897950470448,0.034541293978691,0.013033516705036],[-0.0064987223595381,-0.095747783780098,0.1264556646347],[-0.045008443295956,-0.12279907613993,0.078087255358696]],[[0.0056073679588735,0.026033937931061,-0.0062584797851741],[-0.028495218604803,-0.30728641152382,-0.062745735049248],[-0.0164556466043,-0.036325216293335,0.010267800651491]],[[-0.037843581289053,-0.097401365637779,-0.06410788744688],[-0.066288158297539,-0.12011545151472,0.05429358035326],[0.066835932433605,-0.0059388820081949,0.052061799913645]],[[-0.026386700570583,0.065925933420658,-0.08943235874176],[-0.078442797064781,-0.025304194539785,-0.02079650759697],[-0.06182686984539,-0.022081699222326,0.092463217675686]],[[-0.012270614504814,0.0011305151274428,0.031606089323759],[0.063285931944847,-0.016721939668059,0.015001461841166],[-0.01069980673492,0.056278299540281,-0.028948448598385]],[[-0.0052065216004848,-0.23319885134697,-0.0539286211133],[0.086512811481953,0.11840806156397,-0.022313630208373],[-0.045767109841108,-0.059878438711166,-0.034696947783232]],[[0.012603565119207,0.02050019800663,-0.083788901567459],[0.037562634795904,0.10307168960571,0.15306793153286],[0.0147495996207,-0.18566578626633,-0.13508242368698]],[[0.027018429711461,-0.1318674236536,-0.066486954689026],[0.069025263190269,-0.073732286691666,0.11395359784365],[-0.0097447317093611,-0.0060613211244345,0.14667363464832]],[[-0.042265448719263,0.058442234992981,-0.031467974185944],[-0.14686407148838,0.21288087964058,0.10943370312452],[-0.068967781960964,-0.19575645029545,0.12939256429672]],[[0.024056544527411,0.038474041968584,0.0050123827531934],[-0.12269846349955,0.071506910026073,-0.08549590408802],[-0.0084195481613278,-0.11900606751442,-0.01488083973527]],[[0.040744993835688,0.053035244345665,0.10776019096375],[0.071613766252995,-0.12017803639174,0.0091718109324574],[0.028001807630062,0.043114520609379,-0.051361881196499]],[[0.0064142178744078,0.026972698047757,-0.0096068838611245],[-0.12298125773668,0.051519598811865,-0.037096600979567],[0.076460286974907,-0.07298943400383,0.0070517845451832]],[[0.044968042522669,-0.054767094552517,-0.0012378082610667],[-0.10411790758371,0.17538899183273,-0.16368870437145],[-0.012813904322684,-0.089104749262333,-0.063565000891685]],[[-0.0025479621253908,-0.026866871863604,0.067836217582226],[0.065986439585686,0.071294501423836,-0.081289894878864],[-0.037931181490421,-0.11491576582193,-0.034528646618128]],[[0.031931437551975,-0.05427323281765,-0.069764770567417],[-0.16118939220905,-0.051319725811481,0.055849816650152],[0.025381878018379,0.034978594630957,-0.18506217002869]],[[-0.12699757516384,0.055503413081169,0.11117505282164],[-0.083781033754349,-0.093556739389896,-0.063257120549679],[0.007951776497066,0.18151830136776,-0.033419854938984]],[[0.015485790558159,-0.051886241883039,0.0035075715277344],[0.0074951439164579,-0.01927107013762,0.10536538809538],[-0.05141456797719,-0.018583610653877,-0.041055999696255]],[[-0.052791357040405,0.060230724513531,0.19825075566769],[-0.11839704215527,0.0025019529275596,-0.1456750780344],[0.0073123537003994,0.18560038506985,-0.14785625040531]],[[0.0074940663762391,0.092251598834991,0.022501461207867],[0.023975716903806,-0.077517308294773,-0.027515241876245],[-0.023040778934956,-0.14444632828236,-0.14422821998596]],[[0.050068691372871,-0.034320265054703,0.076583214104176],[-0.079242520034313,-0.086724139750004,0.017833663150668],[-0.047978892922401,0.032252043485641,0.021490104496479]],[[-0.28943964838982,0.11013273149729,-0.10606673359871],[0.16164311766624,0.02240221388638,-0.068085171282291],[-0.043325629085302,0.097167238593102,0.053373780101538]],[[-0.052311819046736,-0.032167378813028,-0.058935973793268],[0.045813843607903,0.081351295113564,0.040293734520674],[-0.081209532916546,-0.093774482607841,0.025717413052917]]],[[[-0.064987912774086,0.010957554914057,-0.14983674883842],[0.0039764945395291,-0.060719460248947,-0.050156697630882],[0.0093944892287254,0.097298070788383,0.11474587023258]],[[-0.017512423917651,0.0034908298403025,0.030806375667453],[-0.043353419750929,0.040080029517412,-0.0063845845870674],[-0.045065436512232,4.1883427911671e-05,-0.0048186811618507]],[[0.13696993887424,0.078184925019741,0.033498737961054],[0.063081726431847,-0.075685374438763,-0.041971400380135],[-0.12302682548761,-0.31671619415283,0.18201267719269]],[[-0.021255245432258,-0.25011068582535,-0.090181685984135],[-0.034276038408279,-0.068258322775364,-0.038413889706135],[0.13556128740311,0.082085140049458,0.15715458989143]],[[0.064817510545254,-0.025962030515075,0.0063986931927502],[-0.017474606633186,0.095257237553596,-0.0097439177334309],[-0.029135579243302,-0.032986931502819,0.002339132130146]],[[0.018842004239559,0.17610551416874,0.099267609417439],[0.11074995994568,0.2084224820137,-0.0068770218640566],[-0.059426542371511,-0.07165814191103,-0.29206496477127]],[[0.08745364099741,0.044985547661781,-0.10005813091993],[-0.14894250035286,0.01494103949517,-0.075348220765591],[0.022011183202267,0.18173535168171,0.068410165607929]],[[0.056397546082735,-0.20094141364098,0.0092617981135845],[0.16489903628826,-0.090038806200027,-0.040187515318394],[0.14545251429081,-0.092314757406712,0.12068961560726]],[[0.061433095484972,0.002979704644531,-0.0071097956970334],[-0.056563716381788,0.0066947392188013,-0.026165068149567],[-0.16280402243137,0.050903312861919,-0.052933618426323]],[[0.16741529107094,-0.21661326289177,0.10181097686291],[-0.012805595993996,-0.0081875529140234,0.072019830346107],[0.077295482158661,-0.19465978443623,0.028418811038136]],[[-0.0465407371521,0.061930719763041,0.085893765091896],[0.049355566501617,0.055995907634497,0.051307998597622],[-0.016062799841166,-0.15004037320614,-0.30703836679459]],[[0.05514182522893,0.091640785336494,-0.0048735179007053],[-0.24011223018169,-0.18894486129284,-0.088541455566883],[0.083529971539974,-0.1770752966404,0.21910297870636]],[[0.14855580031872,-0.00862408708781,0.027307027950883],[-0.13945958018303,0.050563015043736,-0.06415893137455],[-0.0069492757320404,0.080198027193546,-0.042785085737705]],[[-0.068619027733803,-0.020432215183973,-0.033321402966976],[0.097008727490902,-0.081976093351841,-0.11356540024281],[-0.094872541725636,-0.037427891045809,0.080388434231281]],[[-0.049839902669191,0.083762511610985,-0.014428593218327],[-0.042916525155306,-0.0047226822935045,0.11430655419827],[0.057601001113653,-0.066359244287014,0.017029620707035]],[[-0.16632488369942,-0.097579903900623,0.029273128136992],[0.023894907906651,-0.047776211053133,0.0056127049028873],[0.13828434050083,-0.092861585319042,0.072478488087654]],[[0.062268689274788,0.035674288868904,-0.090563051402569],[-0.20479235053062,0.032534014433622,0.1047750711441],[-0.068896554410458,0.032098617404699,0.094460621476173]],[[-0.19250021874905,0.01388066727668,-0.12998247146606],[-0.042220618575811,-0.029097523540258,0.012896009720862],[0.062678061425686,0.028433436527848,0.23521272838116]],[[-0.0026144168805331,-0.047833003103733,-0.043312478810549],[0.089207753539085,-0.047079261392355,0.021247986704111],[0.0081312293186784,-0.027226915583014,-0.060754604637623]],[[0.018114920705557,-0.1706710755825,-0.14408451318741],[-0.018292298540473,-0.077981382608414,-0.11700636893511],[0.10833331942558,0.092235028743744,-0.12020978331566]],[[0.027656549587846,-0.052401762455702,-0.064619958400726],[0.022907102480531,-0.079589240252972,-0.13158808648586],[0.057613510638475,0.084938034415245,0.087360456585884]],[[0.24365167319775,0.09299410879612,0.17443434894085],[-0.14339753985405,0.034857410937548,-0.057814884930849],[-0.25131261348724,-0.30161169171333,-0.059477761387825]],[[0.043734785169363,0.070063106715679,-0.1194645985961],[0.036188744008541,0.020811000838876,0.13088254630566],[-0.062241096049547,-0.056634776294231,0.13523738086224]],[[-0.19078503549099,-0.016714537516236,-0.086044989526272],[-0.026023322716355,-0.093873538076878,-0.15354770421982],[0.0002183507749578,0.017860792577267,0.083452850580215]],[[-0.097107402980328,0.081411756575108,-0.031474363058805],[-0.20947755873203,-0.12503018975258,-0.11234219372272],[-0.051720846444368,0.12190668284893,0.12770828604698]],[[-0.065904282033443,0.033345825970173,-0.14743854105473],[-0.0058378372341394,0.0005890786414966,-0.057885117828846],[0.10451856255531,0.10909979045391,0.0026263175532222]],[[0.025748612359166,-0.024433340877295,-0.10437411814928],[-0.014342409558594,-0.00098328816238791,-0.066123560070992],[-0.034495484083891,0.10001689940691,0.062967538833618]],[[-0.018369849771261,0.16203352808952,0.10724268853664],[0.0039568045176566,0.12155616283417,-0.044706903398037],[-0.12139531224966,0.19586712121964,-0.29174813628197]],[[0.025235373526812,0.075731076300144,0.018733961507678],[-0.0189438611269,0.029588347300887,-0.00089798483531922],[0.012983121909201,0.013050493784249,0.030969429761171]],[[0.029184276238084,-0.091379441320896,-0.024386290460825],[0.05438182875514,0.063927114009857,-0.051710017025471],[0.077232405543327,-0.060062229633331,0.036393016576767]],[[-0.13112382590771,0.020685166120529,0.026834430173039],[-0.06812958419323,-0.089046224951744,0.037812605500221],[0.18310838937759,0.1446168422699,0.064597107470036]],[[-0.06822531670332,-0.13286472856998,0.0072888717986643],[0.015006183646619,-0.046688120812178,-0.049434777349234],[0.10321497917175,0.082516901195049,-0.030666390433908]]],[[[-0.04881302267313,-0.12910895049572,-0.10881780087948],[0.0016687260940671,0.015577341429889,-0.0086146518588066],[0.017783647403121,-0.23516462743282,0.14638774096966]],[[0.042563676834106,0.012713322415948,0.010467504151165],[-0.078992687165737,-0.02138064801693,-0.056435946375132],[0.051738496869802,-0.076354764401913,0.023272022604942]],[[0.032447010278702,0.064145110547543,-0.068405941128731],[-0.095591656863689,0.043014168739319,0.17726588249207],[-0.013758976943791,0.035221215337515,-0.025393908843398]],[[-0.060911111533642,0.015828713774681,-0.17917986214161],[-0.031135246157646,-0.17491507530212,0.021543934941292],[0.032317642122507,-0.035831913352013,-0.12531654536724]],[[-0.0255560670048,0.05970149859786,-0.025160336866975],[0.13664744794369,-0.046901043504477,0.028269214555621],[-0.0035047957208008,0.0018539560260251,-0.035074573010206]],[[-0.27034255862236,0.0035537108778954,-0.20372527837753],[0.11618461459875,-0.080289162695408,0.18802590668201],[-0.23980087041855,0.020887713879347,-0.052220869809389]],[[-0.083073891699314,0.084888622164726,-0.13499531149864],[-0.1216446608305,-0.19121700525284,0.044398482888937],[-0.066163904964924,-0.061561804264784,-0.053000677376986]],[[-0.056677836924791,0.043330557644367,-0.13692700862885],[-0.0026538900565356,0.019042380154133,-0.066196635365486],[0.03689706325531,0.031533494591713,-0.016942653805017]],[[0.071082442998886,-0.15072019398212,0.03743164613843],[0.016333131119609,0.074376054108143,0.053033292293549],[0.067425020039082,0.036728251725435,0.1014883518219]],[[-0.1366940587759,-0.0072176898829639,-0.086395300924778],[0.011557684279978,-0.059557072818279,0.041953198611736],[-0.064340136945248,0.078624732792377,0.010908876545727]],[[-0.12213018536568,-0.069155625998974,-0.070576630532742],[-0.007429517339915,-0.095715098083019,0.13821099698544],[-0.020130870863795,-0.039245754480362,0.012031473219395]],[[-0.14911624789238,-0.14724943041801,0.057031314820051],[0.029890147969127,-0.12305239588022,0.069273427128792],[-0.081801161170006,0.011870745569468,0.058928072452545]],[[-0.079004541039467,0.020501121878624,-0.019992966204882],[0.053134482353926,-0.12687437236309,0.036947909742594],[-0.000862225308083,-0.040645364671946,0.0041568647138774]],[[-0.29976508021355,0.048503782600164,-0.074870198965073],[0.2582229077816,-0.36775362491608,0.19215977191925],[-0.19514435529709,0.19826701283455,-0.21891312301159]],[[-0.037105292081833,-0.019462361931801,0.040960807353258],[0.037803553044796,-0.0069016087800264,-0.029486356303096],[-0.032960761338472,-0.038159862160683,0.072828285396099]],[[-0.050126112997532,0.081220537424088,0.088981680572033],[0.02711758762598,0.0023539571557194,-0.16939960420132],[0.099196702241898,0.04920618981123,-0.19320960342884]],[[0.057616673409939,-0.024731319397688,0.0061030481010675],[-0.17054605484009,0.035348631441593,-0.017184492200613],[0.19134482741356,-0.01584305241704,-0.021487599238753]],[[0.12696081399918,-0.052315440028906,0.070550762116909],[0.099963493645191,0.057960785925388,-0.27978560328484],[-0.065807648003101,-0.032167356461287,-0.15341322124004]],[[-0.1029869094491,-0.16565854847431,-0.027919482439756],[-0.018626583740115,-0.00064113497501239,-0.044498581439257],[-0.10896383225918,-0.16012831032276,-0.047745153307915]],[[-0.061279501765966,0.027001289650798,-0.21885499358177],[-0.10776863247156,-0.064917750656605,-0.088840939104557],[0.0739376693964,-0.16867998242378,-0.070889353752136]],[[-0.1616702824831,-0.13447254896164,-0.033761583268642],[0.036514978855848,0.070610284805298,0.056038025766611],[-0.015903266146779,-0.01109426561743,-0.074528388679028]],[[-0.031739249825478,0.03440260514617,0.039684150367975],[-0.0016435666475445,0.11104874312878,0.061170741915703],[-0.42656204104424,0.051204223185778,-0.031504213809967]],[[-0.11938170343637,-0.015200594440103,0.098158709704876],[-0.10036750137806,-0.064257927238941,-0.060095470398664],[-0.0079614296555519,0.01624976657331,-0.097515881061554]],[[-0.13626810908318,0.014519823715091,-0.084041520953178],[0.047906059771776,-0.084268018603325,-0.0011667085345834],[-0.028358707204461,-0.072194740176201,-0.03555316850543]],[[-0.01399683021009,0.08076948672533,-0.0082866717129946],[-0.090276882052422,-0.063651852309704,0.016518473625183],[0.08734343200922,-0.14176715910435,-0.042050383985043]],[[0.10769046843052,-0.099934697151184,0.070843800902367],[-0.11277971416712,-0.13020157814026,-0.3063160777092],[-0.022623958066106,-0.099415808916092,0.088512673974037]],[[0.014491843990982,0.046154532581568,-0.073914676904678],[0.012261250987649,0.0013814789708704,-0.011469246819615],[0.080707862973213,-0.04010659083724,-0.022313091903925]],[[0.012857146561146,-0.052124012261629,0.09815027564764],[0.16163046658039,-0.032624002546072,0.087914034724236],[-0.21077817678452,0.13097712397575,-0.10629167407751]],[[0.046583391726017,0.017649158835411,-0.0886340290308],[0.043821275234222,0.13270917534828,0.048621416091919],[0.027487309649587,-0.063184559345245,-0.092064082622528]],[[-0.035071194171906,0.00027940183645114,-0.015275101177394],[0.056417476385832,0.027378836646676,-0.019596762955189],[-0.014068512246013,-0.024881755933166,0.058058738708496]],[[-0.11073469370604,-0.030510982498527,-0.1339004188776],[0.161585688591,-0.0051634670235217,-0.037916358560324],[0.056128617376089,0.07437852025032,-0.11658418923616]],[[0.052409794181585,-0.040749777108431,0.041334614157677],[-0.011929042637348,-0.019928174093366,0.030682876706123],[-0.029504545032978,0.052579373121262,-0.052115183323622]]],[[[0.11054944992065,0.038213692605495,-0.035625576972961],[-0.21314743161201,-0.15553385019302,0.029782054945827],[0.097916021943092,-0.011586824432015,-0.0092814890667796]],[[0.032352723181248,-0.053044714033604,0.003505353583023],[0.00087821244960651,-0.016545124351978,0.03629320114851],[-0.027064330875874,-0.0010223656427115,-0.012709469534457]],[[0.070466741919518,0.079669669270515,0.039919730275869],[0.083711259067059,0.13351999223232,-0.09574418514967],[0.035846889019012,0.049219649285078,-0.017276691272855]],[[0.012426900677383,0.058620404452085,-0.053429756313562],[0.12865287065506,0.02027390152216,-0.089562773704529],[0.048130515962839,-0.1086944937706,-0.022496851161122]],[[-0.012455323711038,0.046514119952917,-0.014515347778797],[0.073701255023479,0.01575224660337,0.006300350651145],[-0.034695971757174,0.011502046138048,0.031819734722376]],[[-0.25918486714363,-0.19991682469845,0.0076227644458413],[0.17061656713486,-0.056708611547947,-0.067112416028976],[0.11262266337872,0.079931035637856,0.062372766435146]],[[-0.10087645798922,0.034492608159781,-0.096835106611252],[0.16754984855652,0.08149479329586,-0.059569049626589],[-0.040381565690041,-0.023338044062257,-0.084217265248299]],[[-0.21670126914978,0.19869767129421,0.081897877156734],[0.099426321685314,0.025659326463938,-0.063147261738777],[-0.10811326652765,0.040732640773058,0.091764017939568]],[[0.11970974504948,-0.05281038209796,-0.1246392428875],[0.010474575683475,0.14282537996769,-0.0099591426551342],[-0.047863382846117,-0.040689371526241,0.051766406744719]],[[-0.1537217348814,0.15738087892532,0.010109359398484],[-0.18069492280483,0.19560477137566,-0.04732383787632],[-0.14216011762619,-0.056495122611523,-0.26571094989777]],[[-0.095806263387203,0.096848987042904,-0.071216680109501],[-0.14626760780811,0.018105428665876,0.062238797545433],[0.11647068709135,-0.1302877664566,0.047974444925785]],[[0.015812691301107,0.054410599172115,-0.21061822772026],[0.028260122984648,-0.060896944254637,0.075120083987713],[-0.0019317629048601,-0.046839252114296,0.075781993567944]],[[0.096968419849873,-0.0041448068805039,-0.0035188666079193],[-0.0089853079989552,-0.011518734507263,0.059296935796738],[-0.053794991225004,-0.085218109190464,0.098579786717892]],[[-0.30567419528961,-0.3307763338089,-0.05461036786437],[0.2334910184145,-0.077729187905788,-0.33839818835258],[0.097841702401638,0.068347357213497,0.16218046844006]],[[0.026117904111743,0.019463039934635,0.0028827008791268],[-0.0031715678051114,0.018502879887819,0.082407847046852],[-0.066902138292789,-0.093273036181927,0.014673933386803]],[[-0.060317005962133,0.09453035145998,0.13021107017994],[-0.014781757257879,-0.071604706346989,-0.015077264048159],[0.016122069209814,-0.22197563946247,-0.047891195863485]],[[-0.27870467305183,-0.094457529485226,0.0016517278272659],[-0.054133135825396,-0.083256050944328,0.11557533591986],[0.11220543086529,0.10725393146276,0.018315156921744]],[[0.07158225774765,-0.064382560551167,0.067681901156902],[0.11766428500414,0.0099566131830215,0.025357065722346],[-0.031703170388937,-0.024531673640013,-0.12616221606731]],[[0.094054251909256,-0.1645519733429,-0.13628722727299],[0.051285825669765,0.041706070303917,-0.096478417515755],[0.15181364119053,-0.021889554336667,0.012710805051029]],[[-0.11986816674471,0.0023464423138648,-0.18208004534245],[-0.17345643043518,-0.10726942867041,-0.22299037873745],[0.070738799870014,-0.1195560619235,-0.17873187363148]],[[0.059539951384068,0.016120417043567,-0.062374442815781],[-0.087326407432556,0.0036963012535125,-0.086719386279583],[-0.097541496157646,0.047259900718927,0.050826504826546]],[[-0.082606002688408,0.021934097632766,0.1225208491087],[-0.015516527928412,-0.071001186966896,0.088711686432362],[-0.092021957039833,-0.21351236104965,0.11635237932205]],[[0.015429399907589,-0.017940361052752,-0.047224782407284],[-0.077604323625565,0.046216014772654,0.026248823851347],[-0.041170243173838,-0.084820382297039,0.15458030998707]],[[-0.15860402584076,0.022868428379297,0.045782029628754],[0.037554815411568,0.066376246511936,-0.15012395381927],[0.0043034148402512,-0.16500245034695,-0.014514311216772]],[[0.074630327522755,0.009707173332572,-0.23147551715374],[-0.052893340587616,-0.060183670371771,0.0038902936503291],[0.034157305955887,-0.097374215722084,-0.12204325199127]],[[0.1943189650774,-0.18431289494038,-0.059162821620703],[0.10026667267084,-0.0063106459565461,-0.17708593606949],[-0.031825162470341,-0.17646689713001,0.0091331079602242]],[[-0.013009524904191,-0.057073753327131,0.0092196483165026],[0.11037361621857,-0.0051694232970476,-0.10252787172794],[0.024010891094804,0.038636472076178,3.8369656977011e-05]],[[0.019343702122569,0.095622226595879,0.14215169847012],[-0.19083899259567,0.056133169680834,0.046264968812466],[-0.085000962018967,-0.17275586724281,-0.0048457970842719]],[[-0.029104437679052,-0.033732008188963,-0.082319498062134],[-0.068781107664108,-0.018692949786782,-0.094326063990593],[0.092783786356449,0.10316272825003,-0.012838441878557]],[[-0.0035579935647547,-0.025414366275072,0.068118058145046],[-0.01504198461771,-0.053821064531803,0.053017556667328],[-0.0099947107955813,0.013984576798975,0.039136979728937]],[[-0.17983128130436,0.096042439341545,0.043148782104254],[-0.04687999561429,-0.16763977706432,0.076650537550449],[0.0034906235523522,-0.095825918018818,-0.091933742165565]],[[-0.019355116412044,-0.056629676371813,-0.061086490750313],[-0.0018937361892313,0.06359726190567,-0.051651831716299],[-0.064424626529217,-0.11457028985023,-0.0052634873427451]]],[[[-0.18896259367466,-0.072037443518639,-0.018765697255731],[-0.0035737161524594,-0.14974032342434,0.011010628193617],[-0.007713710423559,-0.003804613603279,0.0035170901101083]],[[-0.16529186069965,-0.028843184933066,0.034949190914631],[0.0050157285295427,0.021956354379654,0.12076756358147],[-0.085363373160362,-0.046448566019535,-0.0046081421896815]],[[0.17766998708248,-0.10635384172201,-0.15008682012558],[0.017286354675889,0.054424129426479,-0.10731876641512],[0.11554411053658,0.0060961581766605,0.13545414805412]],[[-0.049297790974379,-0.067396774888039,-0.072566188871861],[-0.098707236349583,0.10148146748543,0.0069681154564023],[0.10251811146736,-0.024732377380133,-0.043245870620012]],[[0.083467908203602,0.098898902535439,-0.026125518605113],[-0.027290273457766,0.030636956915259,0.0043495623394847],[0.0339963324368,0.081778787076473,-0.017273303121328]],[[0.0089747598394752,0.029642377048731,-0.050267774611712],[0.13645941019058,0.061024621129036,0.014920009300113],[-0.041944295167923,0.033492099493742,-0.058657977730036]],[[0.04406987503171,-0.032838277518749,-0.073491416871548],[-0.14936006069183,0.034067157655954,0.038209222257137],[-0.070535019040108,0.001640883856453,-0.10591773688793]],[[-0.02135524712503,0.014836443588138,0.12012384831905],[-0.13398016989231,0.00012700448860414,-0.063328936696053],[-0.020516673102975,-0.0327432975173,0.088109418749809]],[[-0.016956070438027,-0.044120632112026,0.027886826545],[-0.075371332466602,0.022751517593861,0.11210991442204],[-0.03028779476881,0.0098516102880239,0.016318034380674]],[[-0.060996666550636,-0.16031689941883,0.022065823897719],[-0.11757829040289,-0.032482452690601,-0.023064801469445],[-0.10425314307213,-0.0056912242434919,-0.10531495511532]],[[0.0099190613254905,-0.027096524834633,-0.032250594347715],[-0.027395071461797,-0.054762072861195,0.028647860512137],[-0.045482274144888,-0.11651213467121,0.013120288960636]],[[-0.14867761731148,-0.024650447070599,0.025188473984599],[-0.0072184987366199,0.015401508659124,0.065094903111458],[-0.022030469030142,-0.057486698031425,-0.02423476241529]],[[-0.16342256963253,-0.15900079905987,-0.043810423463583],[-0.04973316937685,-0.057080950587988,-0.025351755321026],[-0.1389737278223,-0.15423956513405,-0.036203823983669]],[[-0.054917879402637,-0.032402537763119,-0.15137039124966],[0.00031848749495111,0.03103925101459,-0.11015048623085],[0.004766930360347,0.007873747497797,0.0066167879849672]],[[-0.018621755763888,0.054522171616554,0.075035855174065],[-0.039034895598888,-0.062761507928371,0.073605298995972],[-0.028751643374562,-0.070349507033825,0.012134118936956]],[[-0.045195359736681,-0.062817320227623,-0.15816196799278],[0.033462557941675,-0.12166009098291,-0.0064614354632795],[0.028936050832272,0.031728629022837,0.04243017360568]],[[0.023756401613355,0.041585877537727,0.080603905022144],[0.047804672271013,-0.027084333822131,0.052231948822737],[0.050699342042208,0.0036759385839105,0.039233218878508]],[[-0.087615765631199,0.05425576120615,-0.12173961102962],[0.043486144393682,-0.04058288782835,-0.016313094645739],[0.10174067318439,-0.0080412300303578,0.028361821547151]],[[-0.088548250496387,-0.0065962574444711,0.050433799624443],[-0.070722833275795,0.0031349319033325,0.084472805261612],[0.019429480656981,-0.075646549463272,-0.013452445156872]],[[-0.0091245742514729,-0.071356147527695,0.016646256670356],[-0.016112960875034,-0.096650831401348,-0.11367565393448],[-0.037465378642082,-0.096397265791893,-0.12891134619713]],[[-0.1524662822485,-0.023738337680697,0.084299132227898],[-0.042742025107145,0.050366006791592,0.15033861994743],[-0.090916641056538,-0.049088425934315,0.032161258161068]],[[0.16309584677219,-0.029029738157988,0.15217633545399],[-0.015319433063269,-0.024175116792321,-0.11334471404552],[-0.1161001548171,-0.018616557121277,0.010748720727861]],[[-0.044896073639393,0.11234752088785,-0.13542740046978],[0.018114261329174,0.083464622497559,0.026415940374136],[0.087602861225605,0.021647470071912,0.048165321350098]],[[0.0011683189077303,-0.054746635258198,-0.063357874751091],[-0.12229066342115,-0.27122917771339,-0.071938991546631],[-0.23119422793388,-0.041164848953485,-0.12355802208185]],[[-0.061681769788265,-0.077610611915588,-0.00086309917969629],[-0.11972961574793,-0.022148054093122,-0.051111154258251],[0.027949623763561,-0.014430055394769,-0.057304419577122]],[[-0.078442648053169,0.049608062952757,0.06730955094099],[-0.016233596950769,-0.062526114284992,0.0048224716447294],[-0.047661282122135,0.036694459617138,-0.07746010273695]],[[0.0040936470031738,-0.060783665627241,-0.13723146915436],[0.074770778417587,-0.019135680049658,-0.054791785776615],[0.16004818677902,-0.051847755908966,0.040520735085011]],[[0.030692100524902,0.042664382606745,-0.062277648597956],[-0.018367402255535,0.001652741804719,-0.04683493450284],[-0.10887092351913,0.013215315528214,-0.17891763150692]],[[-0.081515409052372,-0.25931087136269,0.031854491680861],[-0.15771441161633,-0.0016822481993586,0.017147563397884],[-0.035402368754148,-0.11352586001158,-0.063631050288677]],[[0.038999531418085,0.010828479193151,-0.11178851872683],[0.12107136100531,-0.04192852973938,-0.01993533782661],[0.054283205419779,-0.029548838734627,-0.03812162950635]],[[-0.021154247224331,-0.14265228807926,0.013411548919976],[0.020230274647474,0.059327699244022,0.022801531478763],[0.033786430954933,-0.0044207791797817,0.064847953617573]],[[-0.15591624379158,-0.06354682892561,0.023634491488338],[-0.21043756604195,-0.20205672085285,-0.21271814405918],[-0.05235954746604,-0.095365792512894,0.054832745343447]]]],"nOutputPlane":64,"kW":3,"kH":3,"bias":[-0.0010660425759852,-0.009480956941843,-0.014805064536631,-0.014757974073291,0.0017399138305336,-0.016734262928367,-0.0099489819258451,0.0050061019137502,0.065167747437954,-0.010597030632198,-0.0027932706288993,-0.016128223389387,-0.0052946656942368,-0.012162770144641,-0.0070953192189336,-0.0046438276767731,-0.00098775350488722,-0.01819409057498,-0.010996015742421,-0.010520200245082,-0.016180174425244,-0.01328122522682,-0.0033536674454808,-0.00073626585071906,-0.0083401678130031,-0.012326393276453,-0.0015553112607449,-0.0082343798130751,0.0024942413438112,-0.0021724267862737,0.0017191084334627,-0.013561233878136,-0.0074076913297176,-0.032336540520191,-0.012836419045925,-0.0092875277623534,-0.024761155247688,0.00030271132709458,-0.069975942373276,0.00026876060292125,-0.0099621806293726,-0.012654143385589,-0.009608868509531,-0.075377620756626,-0.01223389338702,-0.0092000821605325,-0.0071902009658515,-0.023696640506387,-0.010759663768113,-0.057363715022802,-0.051900491118431,-0.0078259855508804,-0.014506427571177,-0.005323760677129,-0.018689773976803,-0.01594865322113,-0.055751867592335,-0.01536444015801,-0.0068913823924959,-0.0023148723412305,-0.0028677880764008,-0.021427657455206,-0.0042397510260344,0.0062618893571198],"nInputPlane":32},{"weight":[[[[-0.022768588736653,-0.038135159760714,-0.097940929234028],[-0.05454071983695,-0.03530165553093,0.066047616302967],[0.0080635361373425,0.050404105335474,0.012911112979054]],[[-0.051051072776318,-0.12415841966867,-0.011270667426288],[-0.01752882450819,-0.080992668867111,0.00095954776043072],[0.054031152278185,0.12699863314629,0.057462673634291]],[[0.012768873944879,0.03090563043952,-0.029094569385052],[-0.017445491626859,-0.063234411180019,0.0086115943267941],[0.09772551804781,-0.018489919602871,-0.1462827026844]],[[-0.065684869885445,-0.098402462899685,-0.064374513924122],[0.054529894143343,0.02485753595829,0.042822021991014],[0.028030276298523,-0.12225672602654,-0.017579637467861]],[[-0.023150471970439,0.06934729218483,-0.051918603479862],[-0.028923518955708,0.023106576874852,-0.021037152037024],[-0.11608130484819,-0.083455644547939,-0.063453353941441]],[[-0.10614147782326,-0.024016059935093,-0.083226069808006],[-0.051661886274815,0.23704299330711,-0.13601353764534],[0.10681796818972,-0.11475766450167,0.051450576633215]],[[0.080368734896183,0.099748842418194,0.034959331154823],[0.088519714772701,-0.043899830430746,0.034882482141256],[0.0094773443415761,-0.11004025489092,-0.036832813173532]],[[0.027942979708314,-0.014417595230043,0.15070563554764],[-0.053465630859137,-0.072120733559132,-0.068302169442177],[-0.092143937945366,0.0081725148484111,0.0061433762311935]],[[-0.05269468203187,-0.017522927373648,-0.017447840422392],[-0.057710319757462,0.089116871356964,-0.00086268957238644],[0.0090850656852126,0.035053122788668,0.0002573630772531]],[[-0.040789369493723,0.03857933729887,0.057966757565737],[-0.17459885776043,-0.023685483261943,-0.094295300543308],[-0.011015335097909,0.070821553468704,-0.00024825616856106]],[[-0.028405983000994,0.027970883995295,-0.089310854673386],[0.012393407523632,0.021320834755898,-0.11234047263861],[0.047951325774193,0.10344510525465,-0.048573695123196]],[[0.019970651715994,-0.0087828151881695,-0.016039362177253],[0.054609019309282,-0.089198879897594,-0.039272982627153],[0.053993105888367,-0.0006343595450744,-0.0026791435666382]],[[-0.026187958195806,-0.16773763298988,0.022057693451643],[-0.030007991939783,-0.15314906835556,-0.0184903498739],[-0.058485772460699,-0.043495774269104,0.029914086684585]],[[-0.0061653787270188,-0.064344204962254,-0.20508188009262],[-0.054237816482782,0.1788724064827,-0.087642781436443],[-0.080303631722927,0.0038937211502343,-0.00062327657360584]],[[-0.10823348909616,-0.0017826783005148,-0.070919811725616],[-0.11738315224648,-0.022380191832781,-0.021858241409063],[-0.10295083373785,-0.077427104115486,-0.0086855888366699]],[[0.029409445822239,-0.072428449988365,0.022407315671444],[0.049880459904671,0.018548717722297,-0.0025717122480273],[-0.0051832566969097,0.03089308924973,-0.17901018261909]],[[-0.14359405636787,0.041347458958626,-0.038401074707508],[-0.027998898178339,0.12560456991196,-0.039401978254318],[0.04630795866251,0.018349036574364,-0.094646252691746]],[[-0.057714354246855,0.043717563152313,-0.099660873413086],[-0.09050702303648,0.0965865701437,-0.047895196825266],[-0.092259205877781,-0.231047347188,0.019280163571239]],[[-0.10220144689083,-0.056381143629551,0.093148104846478],[-0.046733029186726,0.0017529894830659,0.010603670962155],[-0.12382036447525,0.010012906976044,0.060814302414656]],[[0.0093151032924652,-0.11777516454458,0.059599984437227],[0.092014148831367,-0.029266182333231,-0.01093533448875],[0.014001921750605,-0.12795056402683,-0.11178002506495]],[[-0.043255887925625,0.0073291882872581,-0.060635469853878],[-0.061031896620989,-0.071449771523476,-0.032864782959223],[0.021172307431698,0.056431479752064,-0.11590503156185]],[[-0.042414449155331,0.010044574737549,-0.062285229563713],[-0.089734278619289,-0.027439502999187,-0.058271523565054],[-0.096080534160137,-0.037850771099329,-0.027561901137233]],[[-0.013631313107908,0.17031964659691,-0.13057993352413],[-0.074934862554073,0.079188838601112,0.0054401434026659],[-0.077994890511036,-0.14551062881947,-0.11749465763569]],[[0.085779845714569,0.048615660518408,0.0018861700082198],[-0.093450821936131,-0.075144656002522,-0.069913603365421],[0.14701728522778,-0.013282935135067,-0.035225700587034]],[[0.044315483421087,0.13420614600182,0.066146492958069],[-0.028018835932016,0.04325595125556,0.021694915369153],[0.074623771011829,-0.056939665228128,-0.19386172294617]],[[-0.17217440903187,-0.053535711020231,-0.037920359522104],[-0.049992889165878,0.031821459531784,-0.091617286205292],[-0.05126079544425,-0.0055648046545684,0.037332911044359]],[[0.023270199075341,-0.010621408931911,0.077177844941616],[0.075400821864605,-0.13637429475784,0.081395141780376],[-0.03958922997117,-0.015442412346601,0.040197588503361]],[[0.10416951775551,-0.075127281248569,-0.053710106760263],[0.0040672817267478,-0.028885647654533,0.0018371365731582],[-0.010410062968731,-0.094247870147228,-0.091251060366631]],[[-0.14532132446766,-0.0078874239698052,0.059889074414968],[-0.038533721119165,0.067361459136009,-0.039960347115993],[0.20003663003445,0.092124417424202,-0.012838922441006]],[[-0.10373499244452,0.058246817439795,-0.10259095579386],[-0.014512133784592,0.077127441763878,-0.20902414619923],[0.029648132622242,-0.14212369918823,-0.037701763212681]],[[0.1055980399251,-0.090647764503956,0.012777361087501],[-0.0053418450988829,-0.14019843935966,0.077205866575241],[-0.15718293190002,0.016275713220239,-0.005488290451467]],[[-0.0093315336853266,-0.0022140792571008,0.038165133446455],[-0.15619081258774,-0.12118419259787,0.027872927486897],[-0.11908274143934,0.11259330809116,0.18040046095848]],[[-0.086570970714092,-0.088319882750511,-0.038105148822069],[-0.11002177745104,0.093705087900162,-0.081612713634968],[-0.16153697669506,0.081701800227165,-0.064024150371552]],[[-0.070183828473091,0.011167464777827,0.0078650806099176],[0.00097729254048318,0.051263619214296,-0.059104975312948],[-0.0052231969311833,0.010501128621399,-0.13168719410896]],[[-0.13759653270245,-0.095263496041298,-0.02008499763906],[-0.076364651322365,0.025551663711667,0.053660109639168],[-0.12264548242092,0.025434087961912,0.0058289389126003]],[[0.031082918867469,-0.021280171349645,-0.010251013562083],[-0.066661275923252,-0.046113550662994,0.042204570025206],[-0.13329076766968,0.13848724961281,-0.068919621407986]],[[-0.023937227204442,-0.075156301259995,0.045581612735987],[-0.050323851406574,-0.063626229763031,-0.059117443859577],[-0.018934413790703,-0.026756385341287,0.22518873214722]],[[0.023953013122082,-0.012709168717265,-0.024671901017427],[0.056925009936094,0.0069852853193879,-0.048946846276522],[0.0080139134079218,-0.01131647080183,0.016623679548502]],[[0.019228354096413,-0.050760190933943,-0.076019838452339],[-0.009461079724133,-0.052406065165997,-0.093331396579742],[0.1159840002656,-0.015022737905383,0.030812678858638]],[[-0.056533992290497,0.024557121098042,0.081955768167973],[-0.13160149753094,0.046682607382536,0.021513802930713],[-0.21347686648369,-0.096895277500153,0.082856848835945]],[[-0.025365330278873,-0.10861874371767,0.139269977808],[0.15760505199432,-0.29063323140144,0.035771019756794],[0.075262010097504,-0.10633967071772,0.053124625235796]],[[0.18040882050991,-0.036814872175455,0.096639983355999],[-0.15214543044567,0.002197963418439,0.056573770940304],[-0.16396643221378,0.082634992897511,-0.077477902173996]],[[-0.2209734916687,-0.14183248579502,-0.20494347810745],[-0.083013795316219,0.09069649875164,0.047375254333019],[-0.013337734155357,0.019710790365934,-0.0066672889515758]],[[0.016469832509756,-0.0068561243824661,-0.0090340841561556],[0.0027367162983865,0.0078855734318495,0.019517056643963],[0.03572116419673,0.00051278877072036,0.0071792700327933]],[[-0.020631587132812,-0.14554180204868,-0.16077093780041],[-0.095319852232933,-0.072841830551624,0.02103627845645],[-0.13213609158993,-0.11549706757069,-0.052059795707464]],[[0.10353320091963,0.085619449615479,0.030750151723623],[-0.033948432654142,-0.0034824162721634,-0.10893729329109],[0.086632929742336,0.022432375699282,0.0045710229314864]],[[0.020765222609043,0.19341304898262,0.11598069965839],[0.086154602468014,-0.074603423476219,0.0064196558669209],[-0.065341636538506,-0.07956075668335,0.04007675871253]],[[-0.016700673848391,-0.13696338236332,-0.027948534116149],[0.0065736682154238,-0.1201950609684,-0.055189318954945],[0.045861002057791,0.012443549931049,-0.076504595577717]],[[-0.085501819849014,0.072511725127697,-0.063850708305836],[-0.10706505179405,-0.029567943885922,0.039632819592953],[-0.22470188140869,-0.018868535757065,0.090880870819092]],[[0.1293525993824,-0.055490273982286,-0.039352014660835],[0.034109108150005,-0.080833688378334,0.01221973169595],[-0.0079019600525498,-0.050947975367308,0.017318267375231]],[[0.0047332402318716,-0.0594866797328,-0.091516867280006],[-0.22793744504452,0.0094371754676104,-0.018247397616506],[0.071963675320148,0.068715013563633,0.039318706840277]],[[0.02663560770452,0.0031233008485287,-0.1108286306262],[-0.14024065434933,0.14484114944935,-0.16584588587284],[-0.047148551791906,-0.19600412249565,-0.055527433753014]],[[-0.070801600813866,-0.00079784780973569,0.094237193465233],[0.090721510350704,0.16752889752388,0.072077922523022],[-0.13313257694244,-0.0037412424571812,0.010303994640708]],[[-0.024806044995785,0.02052809111774,-0.023924531415105],[0.032809879630804,-0.081652007997036,0.12027035653591],[0.050829507410526,-0.0056115132756531,0.029681202024221]],[[-0.026955211535096,-0.069566018879414,-0.04341671615839],[0.14328496158123,-0.093594312667847,-0.020978927612305],[-0.050102435052395,0.01735190115869,0.016474865376949]],[[-0.2416333258152,0.19025196135044,-0.08859296143055],[-0.074061632156372,-0.0035456391051412,0.026885248720646],[-0.011016369797289,0.071545407176018,-0.044001646339893]],[[0.013369748368859,0.037480235099792,0.076130919158459],[-0.22145041823387,-0.0628547295928,-0.079803124070168],[0.010555542074144,0.10724119096994,0.020224111154675]],[[-0.065370865166187,-0.048753995448351,0.069208011031151],[-0.011060133576393,0.043917801231146,-0.025711679831147],[0.017263118177652,-0.20176336169243,0.072314076125622]],[[0.0078633362427354,0.12029242515564,0.04170048981905],[-0.00054208084475249,-0.14912943542004,0.089583165943623],[0.020659474655986,0.05715399608016,0.036332238465548]],[[-0.0017306532245129,0.0035723531618714,0.0039772288873792],[0.080698885023594,0.051101375371218,0.0018195376032963],[-0.067379586398602,0.045857701450586,-0.023375013843179]],[[0.022661224007607,-0.075889974832535,-0.026114940643311],[0.1520361751318,0.071122266352177,-0.044041574001312],[0.12432539463043,0.21866010129452,-0.074618332087994]],[[0.10765662789345,0.12707526981831,0.067409172654152],[-0.12180132418871,-0.059621181339025,-0.023078549653292],[-0.03804412856698,0.0044343713670969,0.13051773607731]],[[-0.047926761209965,0.0021812738850713,-0.029814770445228],[-0.010585532523692,0.001843819161877,-0.074480704963207],[0.012715184129775,0.067093171179295,-0.076630033552647]],[[0.026827922090888,0.087792940437794,-0.014616680331528],[-0.017258046194911,-0.083170756697655,-0.17774447798729],[0.016284359619021,0.046935550868511,0.04950213804841]]],[[[-0.012736076489091,0.026892622932792,0.036055117845535],[-0.0007789364317432,0.0079191364347935,0.051623679697514],[0.0058470615185797,0.077687457203865,0.05555172264576]],[[-0.14489689469337,-0.0029973380733281,-0.24387545883656],[-0.021951541304588,-0.025982525199652,-0.034026969224215],[0.070268072187901,-0.11045791953802,0.046457249671221]],[[0.065514899790287,-0.10959076881409,-0.04242242500186],[0.058178398758173,0.082283906638622,-0.11122791469097],[0.0022954747546464,0.054818388074636,-0.032188143581152]],[[0.02622995711863,-0.076313100755215,-0.038682259619236],[0.033380590379238,-0.043698567897081,0.042604632675648],[-0.1013817563653,-0.057485818862915,0.023123638704419]],[[-0.040545236319304,0.040641851723194,0.031120181083679],[-0.017569687217474,-0.033457491546869,-0.067861169576645],[-0.074918746948242,-0.026170777156949,0.16632357239723]],[[-0.024984305724502,-0.0749476775527,0.041781470179558],[-0.083270788192749,0.11547634750605,0.047257322818041],[0.020554915070534,-9.998931636801e-05,-0.046284414827824]],[[0.047943186014891,0.067115917801857,0.0070611042901874],[-0.084579855203629,-0.091005057096481,-0.027773268520832],[0.13588184118271,-0.091882936656475,-0.078552402555943]],[[-0.093515150249004,-0.087909050285816,0.062441918998957],[-0.11029118299484,0.023742537945509,-0.0072273104451597],[0.049208246171474,-0.025500498712063,0.12714777886868]],[[-0.0091925691813231,-0.12995989620686,-0.081801876425743],[0.035896878689528,0.070650205016136,-0.09627128392458],[0.093295246362686,0.051221001893282,0.033565226942301]],[[-0.057593628764153,0.039512943476439,0.02997887134552],[-0.033675190061331,-0.028334230184555,0.047364339232445],[0.065649546682835,-0.086600095033646,-0.015706533566117]],[[-0.040586493909359,0.11355336010456,5.2650473662652e-05],[-0.050626326352358,-0.072376400232315,0.018771510571241],[-0.036663759499788,0.01296501327306,0.059186179190874]],[[-0.11859354376793,0.063436463475227,0.067236788570881],[-0.006495350971818,0.0099366595968604,-0.066633902490139],[0.043955221772194,0.04832349717617,-0.0033999150618911]],[[0.01870241202414,-0.12749530375004,-0.14993605017662],[0.027245780453086,-0.0054702027700841,-0.10092119127512],[-0.14510415494442,-0.072593174874783,-0.035708073526621]],[[0.021382343024015,0.10592585802078,0.04426621645689],[0.020190691575408,-0.073243156075478,0.086887203156948],[-0.017280014231801,0.037335198372602,-0.01512504927814]],[[-0.066764011979103,0.010602563619614,-0.067309990525246],[-0.057599220424891,0.027664607390761,0.015838546678424],[-0.037688832730055,-0.11397790163755,0.040923431515694]],[[-0.044396378099918,0.01748682744801,-0.037671506404877],[-0.053186148405075,0.029089199379086,-0.09124880284071],[-0.042671084403992,0.062352150678635,0.13986513018608]],[[0.072142586112022,0.1440931558609,-0.052750904113054],[0.037116419523954,-0.06010440737009,-0.16231149435043],[0.044529654085636,-0.0097497627139091,-0.053483292460442]],[[0.013177254237235,-0.076619885861874,-0.13150814175606],[0.071005880832672,0.071008905768394,0.023734716698527],[-0.094648629426956,-0.061704266816378,0.016723020002246]],[[0.024053938686848,0.12763194739819,0.02572638168931],[0.06146115809679,0.024326115846634,-0.0078639769926667],[-0.14719538390636,0.098842605948448,-0.056859094649553]],[[0.010931286029518,-0.086936235427856,0.013328301720321],[-0.014184896834195,-0.14997816085815,0.087700471282005],[0.049796413630247,-0.061893656849861,-0.066909573972225]],[[-0.041966833174229,0.0060602352023125,-0.067090272903442],[0.0029615450184792,0.10638447105885,0.050456065684557],[0.042660072445869,0.092330701649189,0.0070090787485242]],[[0.043314784765244,-0.071638569235802,0.12917898595333],[0.076855286955833,-0.085299678146839,-0.20551460981369],[-0.043458953499794,0.020194290205836,-0.1271767616272]],[[0.090821996331215,-0.036756973713636,-0.028733022511005],[-0.05268682166934,0.059920851141214,-0.14339891076088],[0.010617048479617,-0.0062781972810626,-0.12747472524643]],[[0.007668920326978,-0.09785109013319,0.015668015927076],[0.03774131834507,0.044436942785978,0.016244687139988],[-0.010386114008725,-0.050136916339397,-0.022663410753012]],[[-0.04110486805439,0.028039524331689,0.21623364090919],[-0.058122433722019,0.063943989574909,-0.010335348546505],[0.059573207050562,0.07782294601202,0.034892816096544]],[[0.10491355508566,0.026284158229828,-0.016132738441229],[0.030476782470942,0.19295333325863,0.020961610600352],[0.040285754948854,0.039554212242365,-0.019633632153273]],[[-0.022967858240008,-0.033205337822437,-0.057262483984232],[-0.0268022287637,-0.019547076895833,0.0042596943676472],[-0.022520206868649,-0.057408384978771,0.026014072820544]],[[0.18743202090263,-0.1339757591486,-0.046711422502995],[0.2015800178051,0.003950719255954,-0.1906653046608],[0.019354475662112,0.028401473537087,-0.060283899307251]],[[-0.14391379058361,0.11697386205196,0.085822306573391],[0.020293548703194,0.096547544002533,0.010804637335241],[0.015361124649644,0.03436316549778,0.081810779869556]],[[-0.031361993402243,-0.14518414437771,-0.00074444367783144],[0.059730108827353,-0.13185355067253,0.097637578845024],[-0.0047319834120572,-0.087911672890186,0.011031047441065]],[[0.039663102477789,-0.044636253267527,-0.023280307650566],[-0.16738973557949,-0.055515188723803,-0.060705792158842],[-0.010181587189436,-0.13216355443001,-0.01132557541132]],[[-0.10806514322758,-0.10241612792015,-0.17395712435246],[0.015930762514472,0.084191523492336,0.077147461473942],[-0.0065459073521197,-0.098316922783852,0.075117506086826]],[[0.040017627179623,-0.078868128359318,0.039943933486938],[-0.12360237538815,-0.051396433264017,0.021700240671635],[-0.034514840692282,-0.061832614243031,-0.0024422041606158]],[[-0.05766648426652,-0.066470578312874,0.027735838666558],[-0.062023147940636,-0.14823587238789,-0.047840408980846],[0.037228986620903,-0.13350607454777,-0.01357371173799]],[[0.028540330007672,-0.054577760398388,-0.048732560127974],[0.040137346833944,0.020749110728502,0.0012479359284043],[-0.054880332201719,-0.071210473775864,-0.019269704818726]],[[-0.16626504063606,-0.16782978177071,0.043785959482193],[-0.059239905327559,-0.14972451329231,-0.11811396479607],[0.12258908897638,-0.036568593233824,-0.084083899855614]],[[0.0077596111223102,0.045062132179737,0.039734393358231],[-0.044230870902538,0.036221317946911,0.052912201732397],[-0.084517635405064,-0.053670011460781,-0.038625873625278]],[[-0.028436070308089,-0.039289519190788,-0.067448392510414],[0.12957653403282,0.028120141476393,0.050731759518385],[0.012061121873558,-0.034721869975328,-0.047884661704302]],[[-0.013913388364017,0.05699597671628,-0.013292221352458],[0.030257571488619,0.079406566917896,-0.082438550889492],[0.050443686544895,-0.0060975030064583,0.0032575880177319]],[[-0.091578930616379,-0.14872986078262,0.039268307387829],[0.12939077615738,0.0049077672883868,-0.14214116334915],[0.073846109211445,-0.011585124768317,-0.07695596665144]],[[-0.047383084893227,-0.017787579447031,-0.15408305823803],[-0.074721068143845,-0.040354520082474,-0.14677940309048],[-0.096259646117687,-0.093006037175655,-0.041113514453173]],[[0.032736979424953,-0.072042644023895,-0.0060179564170539],[-0.051709681749344,-0.008627281524241,-0.058644868433475],[-0.21734966337681,-0.16138710081577,-0.15337140858173]],[[-0.14029650390148,-0.083915248513222,0.061557281762362],[-0.0064605008810759,-0.022192737087607,-0.015262003056705],[-0.058566637337208,0.081714473664761,-0.022439299151301]],[[-0.02456016279757,0.10502871125937,0.0070684254169464],[-0.00033319753129035,-0.025770967826247,0.047282859683037],[0.01275141723454,0.033431518822908,0.014161647297442]],[[-0.022136989980936,-0.056294396519661,-0.24858969449997],[-0.15318733453751,-0.037309654057026,-0.073456421494484],[-0.082304611802101,0.051944430917501,0.05567891895771]],[[0.14264099299908,0.100067012012,-0.066429063677788],[0.058865617960691,-0.018042638897896,0.067595690488815],[0.084116257727146,-0.0078150276094675,0.071783468127251]],[[7.7101787610445e-05,0.12434262037277,0.029663801193237],[0.033211980015039,-0.1152468547225,0.065535180270672],[-0.096412271261215,-0.20847603678703,-0.054607149213552]],[[-0.07999736815691,-0.12217126041651,0.029856879264116],[-0.00032430270221084,-0.053097311407328,-0.1451561152935],[0.0018381450790912,-0.063801392912865,-0.047162920236588]],[[-0.088414415717125,0.00070949114160612,-0.066244676709175],[-0.040157552808523,0.0039316504262388,0.0054361396469176],[0.021677117794752,0.14993669092655,0.002648469991982]],[[0.0045951763167977,0.1175731793046,0.11692009866238],[-0.1472819596529,-0.028573047369719,0.035039447247982],[-0.13058938086033,-0.034791901707649,-0.01471742708236]],[[0.018682980909944,-0.03321273997426,-0.014743305742741],[-0.037527438253164,0.043361093848944,-0.0798065289855],[0.025238201022148,0.01630992628634,0.01893131621182]],[[0.087243027985096,-0.015785466879606,0.091842152178288],[-0.098869435489178,0.00081532791955397,-0.0043254201300442],[-0.065245471894741,-0.15720671415329,0.035380374640226]],[[0.088380865752697,0.062649197876453,0.1770099401474],[0.019435171037912,0.042769931256771,-0.046771444380283],[-0.06529675424099,0.057925693690777,0.058996915817261]],[[-0.094349324703217,0.030299220234156,-0.0081285061314702],[-0.16054265201092,-0.053857889026403,0.031861674040556],[-0.037204820662737,0.12120448052883,0.2802759706974]],[[-0.010243820957839,-0.056586034595966,0.12052510678768],[-0.084832102060318,0.0033440787810832,-0.19660909473896],[-0.097549520432949,-0.10627216100693,0.020133068785071]],[[-0.14472076296806,-0.15555235743523,-0.17183437943459],[-0.11100091040134,0.013106809929013,-0.12545917928219],[-0.034664630889893,-0.021980557590723,0.039311707019806]],[[-0.069308713078499,-0.043556336313486,0.034131031483412],[-0.034036010503769,-0.051019236445427,0.0125319249928],[0.027065861970186,-0.036877453327179,-0.0519053414464]],[[0.028983814641833,0.040272206068039,-0.033276900649071],[0.004988971631974,-0.038872700184584,0.024994945153594],[0.065094240009785,0.024765035137534,-0.0024638150352985]],[[-0.086154259741306,-0.12796983122826,0.05311518907547],[0.0040479004383087,-0.0019711013883352,0.040596473962069],[-0.023462267592549,-0.034575525671244,0.0058878865092993]],[[-0.021352007985115,-0.082917489111423,0.055142421275377],[-0.038413867354393,-0.15126170217991,0.12969894707203],[-0.051325362175703,0.041836481541395,-0.094478636980057]],[[0.051315452903509,0.015462098643184,0.037151034921408],[-0.012236742302775,0.020713785663247,-0.14469470083714],[0.026554442942142,0.021918445825577,-0.085075989365578]],[[-0.021886892616749,0.14351043105125,-0.085710383951664],[0.026855148375034,0.089549668133259,0.11917916685343],[0.0090264892205596,0.031949318945408,-0.16721974313259]],[[0.079428039491177,0.029636807739735,-0.00034238555235788],[0.04634415730834,-0.10214263945818,-0.06243396922946],[-0.036737691611052,0.037654489278793,-0.071122393012047]],[[-0.26036807894707,-0.048564825206995,0.1450320482254],[0.0034140532370657,-0.042486421763897,-0.063913024961948],[0.054210487753153,0.051887065172195,-0.29025492072105]]],[[[0.058745745569468,0.036592200398445,0.12939269840717],[0.017177123576403,-0.045492481440306,-0.038694560527802],[-0.10050489008427,-0.058414801955223,0.042674861848354]],[[-0.010165931656957,-0.025003887712955,0.10111892968416],[-0.050266772508621,0.012068049050868,-0.046988092362881],[-0.011575852520764,-0.10133200883865,0.010345615446568]],[[-0.058050502091646,-0.0045120217837393,0.010133924894035],[0.092849418520927,-0.0060852128081024,0.011333461850882],[-0.01362178940326,-0.057129789143801,0.11118429154158]],[[-0.020491372793913,0.019265908747911,0.067513406276703],[-0.048941142857075,0.078163251280785,-0.028400784358382],[-0.054496113210917,-0.00069087941665202,0.048899114131927]],[[0.11589565873146,-0.059417188167572,0.070996023714542],[-0.0077916937880218,-0.02449326403439,0.058448810130358],[0.10440558940172,-0.063362210988998,-0.020176645368338]],[[-0.034303557127714,0.016754902899265,-0.039857413619757],[-0.031447540968657,-0.042601488530636,-0.059769485145807],[-0.0074992664158344,0.00046239487710409,-0.0078387847170234]],[[-0.076182156801224,-0.069046348333359,-0.030424706637859],[0.11449475586414,-0.037953697144985,-0.064174495637417],[-0.026326108723879,0.099447458982468,0.085683226585388]],[[0.07151173055172,-0.020691268146038,-0.14898766577244],[0.022672660648823,0.029401892796159,0.0028163243550807],[-0.029506843537092,-0.032932329922915,0.028584457933903]],[[-0.017405806109309,0.042028725147247,-0.0055612954311073],[0.017621573060751,0.082919783890247,-0.0075055528432131],[0.034678749740124,0.043438084423542,-0.0092763165012002]],[[0.050188671797514,0.058591227978468,0.0052487491630018],[0.018415352329612,0.04954569041729,0.025495087727904],[-0.091928541660309,0.074198640882969,0.016968581825495]],[[-0.063310965895653,0.014341626316309,0.038016553968191],[0.0065894266590476,0.0082849785685539,-0.05259395763278],[-0.024783432483673,-0.0104492707178,0.056033171713352]],[[0.086315609514713,0.12683402001858,0.0042177299037576],[0.0011536640813574,-0.011299859732389,-0.023791654035449],[0.024376923218369,-0.13498738408089,-0.017662391066551]],[[0.037907499819994,0.009206922724843,0.10701581090689],[0.12970355153084,-0.007720566354692,0.023278815671802],[-0.012561892159283,-0.012200487777591,0.025890378281474]],[[-0.15160804986954,0.089989006519318,0.0052661779336631],[-0.034698776900768,-0.04629860073328,0.042517237365246],[0.03217576816678,0.078337125480175,0.05120911821723]],[[0.094200201332569,-0.032284203916788,0.10870721936226],[-0.078453086316586,-0.026268331333995,0.016379646956921],[0.017042187973857,0.087168768048286,-0.014104279689491]],[[0.027364306151867,-0.058533933013678,-0.0064293020404875],[-0.054537277668715,-0.0039395573548973,-0.045851092785597],[0.07230856269598,0.11988405883312,-0.074041850864887]],[[-0.033345337957144,0.041920695453882,-0.067292660474777],[0.016225503757596,0.012841650284827,-0.064661785960197],[0.073394566774368,0.12601579725742,-0.032548099756241]],[[0.028549568727612,-0.015349278226495,-0.017500916495919],[0.060081791132689,0.10351145267487,-0.054671332240105],[0.028494920581579,0.033191155642271,0.067827336490154]],[[0.14604486525059,-0.056088384240866,0.0017557934625074],[-0.045293390750885,-0.12837672233582,-0.18053790926933],[0.053179174661636,-0.053528357297182,0.052946880459785]],[[-0.047370996326208,0.029491996392608,0.0088116033002734],[0.10244731605053,-0.038330856710672,0.0059679159894586],[-0.085300348699093,-0.072234988212585,-0.017156425863504]],[[-0.017117857933044,0.0030212397687137,-0.084362722933292],[0.0860955119133,0.041426006704569,-0.015642464160919],[0.070650950074196,-0.0073441746644676,-0.063355550169945]],[[0.0098393633961678,0.0079695200547576,0.10275610536337],[-0.034924685955048,-0.025715256109834,0.0093321651220322],[0.11674704402685,-0.020441390573978,-0.019435660913587]],[[-0.10550861805677,-0.054031144827604,-0.013879993930459],[0.07383169978857,-0.024033535271883,-0.036529768258333],[0.085214897990227,-0.058257970958948,0.10693613439798]],[[-0.050908651202917,-0.082844890654087,0.020915351808071],[-0.089017316699028,0.10426980257034,0.028532929718494],[0.052583508193493,0.067492179572582,0.061960529536009]],[[-0.067894198000431,-0.060758281499147,-0.037735283374786],[-0.017775073647499,0.029284348711371,0.044586982578039],[-0.058320447802544,-0.030813170596957,0.076577119529247]],[[-0.057504966855049,0.03175013512373,0.02689841017127],[0.10516965389252,0.0062174606136978,0.02764879539609],[-0.083055011928082,-0.040993947535753,-0.038276329636574]],[[-0.023409413173795,0.069952629506588,-0.0030455191154033],[-0.064028419554234,0.12930949032307,-0.0073677417822182],[0.00097639102023095,0.034186437726021,0.1069822460413]],[[0.11201050132513,-0.075793363153934,0.06664165854454],[-0.083747342228889,0.11410120129585,-0.012946388684213],[-0.037488792091608,0.018873391672969,-0.028855461627245]],[[-0.044675469398499,0.10146667808294,-0.053947001695633],[0.1260574311018,0.051437694579363,0.038702495396137],[0.034628555178642,-0.011110625229776,-0.071974024176598]],[[0.11332684755325,-0.035666339099407,-0.0016308539779857],[-0.056909240782261,-0.08806486427784,0.036628518253565],[-0.0020883451215923,0.015280676074326,0.020096778869629]],[[-0.018065886572003,-0.0098422020673752,0.068823054432869],[-0.0087174940854311,-0.080123089253902,-0.0099752005189657],[0.040349122136831,0.010880136862397,-0.049222316592932]],[[0.0024944085162133,0.013021500781178,-0.062592007219791],[0.031432438641787,-0.032331623136997,0.065206326544285],[0.0031619651708752,0.079470366239548,-0.059121675789356]],[[0.072274789214134,0.052366439253092,0.14589811861515],[0.090297527611256,-0.042650610208511,-0.092879869043827],[-0.10168316960335,-0.07315769046545,-0.040872871875763]],[[-0.22377821803093,-0.069978944957256,0.10151067376137],[-0.023131025955081,0.09439879655838,0.11304914206266],[0.068224795162678,0.022143092006445,0.030073758214712]],[[0.068811483681202,-0.011246002279222,-0.034509904682636],[0.074173606932163,-0.031789693981409,-0.16714112460613],[0.11746492981911,-0.050149731338024,0.052413873374462]],[[0.015941815450788,-0.025012204423547,0.10065556317568],[-0.023364655673504,-0.081040740013123,0.028886435553432],[0.017959652468562,0.054481729865074,0.089154995977879]],[[0.087772957980633,0.08924014121294,-0.021924022585154],[0.02270926348865,-0.10219928622246,-0.094608001410961],[0.07428228110075,-0.0053205229341984,-0.11490047723055]],[[-0.10215663909912,0.012731322087348,0.15006150305271],[0.015612888149917,0.066639363765717,0.0028127497062087],[-0.0093373162671924,0.0068221115507185,0.0088051166385412]],[[0.099293418228626,0.11618275940418,0.15670865774155],[0.15104568004608,0.097022578120232,0.15308168530464],[0.14099472761154,0.14011615514755,0.10390980541706]],[[0.10427406430244,-0.052549496293068,0.091182969510555],[0.12146469950676,0.080852098762989,0.050630006939173],[0.11056064814329,-0.0065622478723526,0.0095735788345337]],[[0.02459330484271,-0.05659756064415,0.036528762429953],[0.0038739927113056,0.041614625602961,-0.08263897895813],[-0.012196192517877,0.0021913456730545,-0.029719470068812]],[[0.014639495871961,0.061366345733404,0.030125511810184],[0.050543446093798,-0.055674433708191,-0.022206472232938],[0.082932516932487,-0.065856873989105,0.063098452985287]],[[0.13004389405251,0.13101676106453,0.025158770382404],[-0.07754460722208,-0.062110532075167,0.024721005931497],[0.013577015139163,-0.03506314009428,-0.011977324262261]],[[-0.035559020936489,0.031348872929811,0.0043597249314189],[0.035758212208748,0.071774698793888,0.042799703776836],[0.011136102490127,-0.00070982647594064,0.024176636710763]],[[0.071757383644581,0.015254841186106,0.058464556932449],[0.0893814265728,-0.041159700602293,0.031665839254856],[0.065236739814281,0.035587098449469,-0.011603186838329]],[[0.020487578585744,-0.06247952952981,-0.088977970182896],[0.085407473146915,0.019219199195504,-0.16663677990437],[0.092438727617264,0.025970732793212,-0.0016902899369597]],[[0.10543467104435,-0.097117938101292,0.030621966347098],[-0.010574500076473,0.097384758293629,0.04553609341383],[-0.04624617472291,-0.095908991992474,0.0012614033184946]],[[0.090380795300007,0.035701259970665,0.078984446823597],[-0.049745041877031,-0.046759176999331,0.11867565661669],[0.05152990296483,-0.089904829859734,0.060258388519287]],[[-0.013720512390137,-0.032163418829441,0.010798322968185],[-0.041679706424475,0.063633471727371,-0.013819041661918],[0.069080099463463,-0.057263553142548,0.018426587805152]],[[0.06288804858923,0.15851123631001,-0.020054349675775],[0.034117348492146,0.16027848422527,0.041361354291439],[0.022894280031323,-0.051000207662582,0.013099231757224]],[[0.014586990699172,-0.05513172224164,0.060983940958977],[-0.11807636916637,0.0066582155413926,0.0063289748504758],[0.073621585965157,0.013359843753278,0.070829637348652]],[[0.073039293289185,0.040014334022999,-0.021935906261206],[-0.034704208374023,0.029195314273238,0.095114216208458],[0.00037479645106941,0.013236451894045,0.072924815118313]],[[-0.028144549578428,0.038631502538919,0.0042953798547387],[0.088100343942642,-0.072445936501026,0.083709426224232],[-0.037940926849842,0.066860340535641,-0.045008648186922]],[[0.0451082251966,-0.015889722853899,0.022725513204932],[-0.033828798681498,-0.0057804435491562,0.030777469277382],[0.042598582804203,0.036113686859608,-0.016525926068425]],[[0.018887653946877,-0.016681147739291,0.11668013036251],[-0.03208352252841,-0.14089669287205,0.072569794952869],[-0.005012986715883,0.052959010004997,0.02235784381628]],[[-0.021517043933272,0.076575674116611,-0.087732680141926],[0.013331651687622,0.05648198351264,0.032262034714222],[0.039876841008663,-0.0024157969746739,0.030644347891212]],[[0.1390500664711,0.14167207479477,0.1074228361249],[0.098220393061638,0.25703582167625,0.11199516057968],[0.07468056678772,0.18904572725296,0.068118274211884]],[[-0.0068497708998621,-0.056459795683622,0.037329185754061],[-0.032994080334902,-0.060069013386965,0.033180121332407],[0.081489652395248,0.060804314911366,0.017631068825722]],[[-0.029628122225404,-0.0034211829770356,-0.051779575645924],[-0.058559346944094,0.085592329502106,0.05114397034049],[-0.0072509618476033,-0.069218158721924,0.034858237951994]],[[-0.015360440127552,0.024203045293689,-0.023709988221526],[0.0065205246210098,-0.055030070245266,-0.08605632930994],[0.098451070487499,0.17189688980579,0.026678755879402]],[[0.00093169894535094,-0.027939410880208,-0.033394988626242],[-0.027468642219901,0.034558564424515,-0.017009522765875],[0.026330938562751,0.054680362343788,0.16407789289951]],[[-0.047808811068535,-0.094163998961449,-0.0048384694382548],[0.25440841913223,0.00087545794667676,0.067149370908737],[-0.02579846791923,0.26710939407349,-0.075559243559837]],[[0.018212389200926,0.0060511217452586,0.03187583386898],[-0.019075330346823,-0.037978194653988,0.0036145551130176],[0.094448603689671,-0.010830491781235,-0.0060707200318575]],[[-0.051370427012444,0.067922502756119,0.074987217783928],[0.014924610033631,-0.0090341996401548,-0.052029877901077],[-0.07673255354166,-0.040990799665451,0.064738653600216]]],[[[0.006463828496635,-0.0094601642340422,0.051680106669664],[-0.01516636647284,-0.0069746398366988,0.038089543581009],[0.018609862774611,-0.075540199875832,0.021283812820911]],[[-0.01898006349802,0.13769200444221,-0.099754981696606],[-0.021243862807751,-0.013717632740736,-0.00088113400852308],[0.050153568387032,0.098443619906902,0.028373913839459]],[[-0.010063178837299,-0.008140024729073,-0.0037268758751452],[-0.0011774278245866,-0.063945695757866,-0.010170237161219],[0.012782475911081,-0.009724136441946,0.036414936184883]],[[0.029886668547988,0.07040935754776,0.015583459287882],[0.022859238088131,-0.041702002286911,0.054166741669178],[0.11991968750954,0.06728271394968,-0.067546173930168]],[[0.055648550391197,-0.05400949716568,-0.0032553980126977],[-0.020957693457603,0.023934302851558,0.052679590880871],[0.0030874612275511,0.030091775581241,-0.0029011652804911]],[[0.067502565681934,0.089337006211281,0.014147949405015],[-0.010209099389613,-0.11520159989595,0.12285394221544],[-0.064864121377468,-0.0012595945736393,0.022461218759418]],[[-0.073249876499176,0.045952767133713,0.0062428978271782],[0.046575821936131,-0.057114966213703,-0.044948879629374],[0.033291671425104,-0.079376481473446,-0.021684946492314]],[[-0.017828091979027,0.016087301075459,-0.037108458578587],[-0.12591607868671,-0.011984186246991,-0.0023060583043844],[0.028047876432538,-0.030916376039386,-0.058992989361286]],[[0.029463516548276,0.045167155563831,-0.05535089597106],[-0.032194692641497,-0.025490231812,-0.020419837906957],[0.062151398509741,0.0043219118379056,-0.004013339523226]],[[0.10136761516333,0.049241725355387,0.038544498383999],[-0.046691503375769,0.047132007777691,0.018916929140687],[-0.050920445472002,-0.024720234796405,-0.0004283718590159]],[[-0.02668141014874,0.062426786869764,-0.04230398312211],[-0.061216212809086,-0.082250230014324,0.09188649058342],[-0.060177572071552,-0.046838883310556,0.059564504772425]],[[-0.0086550069972873,0.042123414576054,-0.059216149151325],[-0.044636808335781,0.0067886374890804,0.037567719817162],[-0.065644562244415,0.05198872461915,0.028459159657359]],[[0.25534418225288,0.046742327511311,0.039732623845339],[0.093310557305813,0.044031873345375,0.063480697572231],[0.096464425325394,0.1409010887146,-0.01017152145505]],[[-0.04916125535965,0.090177483856678,0.0506701618433],[0.072161301970482,-0.031892828643322,0.034454591572285],[0.11940747499466,-0.11629571020603,0.018244525417686]],[[-0.048560284078121,-0.045299869030714,0.010809851810336],[0.0037741956766695,0.033154904842377,-0.0088845454156399],[0.012168887071311,0.044464930891991,-0.080822996795177]],[[-0.06751462072134,0.025041982531548,0.10229952633381],[-0.067590825259686,-0.050611741840839,-0.0084754778072238],[-0.0017340256599709,0.04822389408946,0.017331276088953]],[[-0.013087976723909,-0.048406109213829,0.009103624150157],[-0.034434963017702,-0.050339821726084,0.037784025073051],[-0.044989570975304,0.064178049564362,0.11298225820065]],[[0.09643592685461,0.029581390321255,-0.01904309540987],[-0.022714670747519,-0.027648949995637,-0.031532905995846],[0.039180513471365,-0.15435907244682,-0.044704336673021]],[[-0.012557934038341,0.020479436963797,0.0076476153917611],[0.11209779977798,0.061761993914843,0.026959808543324],[-0.015274018980563,0.064049869775772,0.015291268005967]],[[-0.024710794910789,0.043037686496973,-0.025094896554947],[0.095005713403225,-0.030257727950811,0.029705964028835],[0.016832740977407,0.05770231038332,-0.044977009296417]],[[-0.013801577500999,0.10858129709959,0.052562523633242],[0.027430549263954,0.071234308183193,-0.021799243986607],[0.097353018820286,-0.062811978161335,0.042905643582344]],[[0.055044185370207,0.031044322997332,0.086484655737877],[0.041533902287483,0.019422290846705,0.0088313398882747],[0.019986882805824,0.040088005363941,-0.013983927667141]],[[-0.0031889767851681,0.0072913654148579,0.020033404231071],[-0.042925875633955,0.023777266964316,-0.0026906686834991],[-0.020156206563115,0.051943518221378,-0.053617849946022]],[[0.059564474970102,0.031838592141867,0.045636657625437],[0.078413784503937,-0.0087790759280324,-0.014264537021518],[-0.06579103320837,-0.071849226951599,-0.13238951563835]],[[-0.020620727911592,-0.039558380842209,-0.011167639866471],[0.08508737385273,0.050572272390127,0.11487351357937],[0.062576681375504,-0.19226029515266,-0.039006184786558]],[[0.050452746450901,0.026369402185082,0.021669529378414],[0.031718757003546,0.047129515558481,0.024009961634874],[-0.080457516014576,0.0084481239318848,0.11826418340206]],[[-0.020124198868871,0.049259763211012,0.023763215169311],[-0.02219408378005,0.0027226291131228,-0.017919527366757],[-0.03580229729414,-0.043531093746424,0.023780168965459]],[[0.14951765537262,-0.02621953189373,0.044694535434246],[-0.02850478515029,0.017861109226942,0.085837550461292],[0.10903634876013,-0.046311646699905,-0.05356315523386]],[[-0.017698761075735,0.11212339997292,0.018758002668619],[0.070035800337791,-0.087599903345108,-0.043963141739368],[-0.11351972073317,0.13631215691566,0.059491112828255]],[[-0.0079902606084943,-0.030306622385979,-0.024761695414782],[-0.018087821081281,0.10646674782038,0.049592521041632],[0.0067257205955684,0.010918046347797,-0.023210242390633]],[[0.060516182333231,-0.0041155354119837,-0.025597352534533],[-0.0051929042674601,0.037816882133484,0.0024823385756463],[-0.037650231271982,0.034584354609251,0.01162988319993]],[[0.006334759760648,0.04131082072854,-0.01848610676825],[0.042486716061831,-0.03017695993185,0.044132322072983],[-0.0052892505191267,-0.045998111367226,0.075617082417011]],[[0.1885397285223,-0.039053700864315,-0.025145569816232],[-0.030467988923192,-0.01566350273788,-0.045543324202299],[0.014142381027341,0.072369806468487,-0.13873092830181]],[[0.10908076167107,0.05641357973218,0.070473395287991],[-0.028217822313309,-0.024376852437854,-0.0435546413064],[-0.066393703222275,-0.02857880294323,-0.0302824229002]],[[-0.026086952537298,0.017944999039173,0.023900907486677],[0.01969950273633,0.072495855391026,0.024393975734711],[-0.040533002465963,0.03599788621068,0.0036733141168952]],[[-0.023637801408768,0.025518976151943,0.085553869605064],[-0.032280515879393,-0.0088706472888589,0.052025359123945],[-0.079546175897121,-0.035815130919218,0.086090318858624]],[[-0.015686340630054,0.073426619172096,0.044214393943548],[0.042296007275581,0.0061106006614864,0.013235944323242],[0.03485906124115,-0.0052210572175682,0.024553077295423]],[[-0.013257154263556,-0.036904212087393,0.020566483959556],[-0.068318903446198,0.018377333879471,0.013556545600295],[0.06115135923028,-0.092023603618145,0.10895158350468]],[[0.049067880958319,0.024393856525421,-0.041536137461662],[0.030905852094293,-0.060550898313522,-0.079786531627178],[0.01560843270272,0.05148683860898,-0.050692476332188]],[[0.065229468047619,0.025158235803246,0.12592895328999],[0.07675901055336,0.13720573484898,0.020130969583988],[-0.0094764297828078,0.060934629291296,-0.047591626644135]],[[-0.068435534834862,-0.012983082793653,0.043496187776327],[0.095471806824207,0.022989619523287,-0.011725119315088],[0.039094161242247,0.029598232358694,0.034139413386583]],[[0.017157817259431,-0.11669193953276,-0.15959820151329],[0.041006080806255,0.11365406215191,-0.16780385375023],[-0.058785412460566,-0.028322104364634,-0.050696905702353]],[[-0.009875918738544,-0.13618433475494,0.13210168480873],[-0.043391402810812,0.079916149377823,0.086986228823662],[0.055350165814161,-0.038208693265915,0.066209010779858]],[[-0.036837160587311,0.086143374443054,-0.023038735613227],[0.013117039576173,-0.006710859015584,0.06208024546504],[-0.019620830193162,-0.15159663558006,-0.011425442062318]],[[0.042965151369572,0.018520008772612,0.086097896099091],[0.019206384196877,0.073313817381859,-0.0034256931394339],[-0.035693153738976,0.047161728143692,-0.039869215339422]],[[0.0081640994176269,-0.10656667500734,0.17273877561092],[-0.040270570665598,0.053444337099791,-0.087554901838303],[-0.014393333345652,0.00048037871601991,0.091978557407856]],[[0.008477590046823,-0.10755977034569,-0.012431885115802],[0.096628770232201,0.047573447227478,-0.071379996836185],[-0.059177689254284,-0.082819849252701,-0.14295971393585]],[[-0.053406413644552,-0.015543065033853,-0.08735017478466],[-0.078393772244453,0.036816775798798,-0.052621066570282],[0.036869186908007,-0.019478797912598,0.037769794464111]],[[-0.06354408711195,0.038296584039927,0.002143831923604],[-0.0077074584551156,0.042073145508766,-0.041494861245155],[0.042854763567448,-0.0026925930287689,0.043871603906155]],[[-0.016700264066458,0.010468198917806,0.033601149916649],[-0.0064410287886858,0.092521205544472,0.052903454750776],[-0.056967183947563,0.014887862838805,-0.011423301883042]],[[-0.043381709605455,-0.047111071646214,-0.045829698443413],[0.01740532182157,-0.068793870508671,-0.096259027719498],[-0.088273547589779,-0.093561746180058,-0.085036866366863]],[[0.066182225942612,0.019559886306524,0.057482324540615],[0.072465650737286,0.020191915333271,-0.010962950065732],[0.17076578736305,0.058044068515301,-0.060638252645731]],[[-0.032836873084307,-0.056104488670826,-0.031767223030329],[-0.027612036094069,-0.072930984199047,-0.027964817360044],[-0.012285652570426,-0.0018003531731665,0.035375107079744]],[[0.072731770575047,-0.06146689131856,-0.022046539932489],[0.02892467007041,-0.010768560692668,0.0052152844145894],[0.043546035885811,0.046977244317532,0.037673626095057]],[[0.049640860408545,0.010017207823694,-0.086944580078125],[0.068859718739986,0.018064014613628,-0.011579553596675],[-0.035679277032614,0.073098547756672,-0.032823029905558]],[[0.025571502745152,0.056786827743053,0.049451161175966],[-0.22198508679867,-0.10564948618412,0.0092162974178791],[-0.15727944672108,-0.0081763891503215,-0.076750613749027]],[[-0.051336750388145,-0.023863257840276,-0.023566363379359],[-0.052593532949686,-0.021408306434751,-0.063513070344925],[0.028843089938164,-0.096064351499081,-0.15614914894104]],[[0.0139414453879,0.0029480298981071,0.022401835769415],[0.069310866296291,0.062400177121162,0.15435042977333],[0.012545851059258,-0.073026813566685,0.00328767625615]],[[0.12173704057932,-0.0057322420179844,0.022465886548162],[-0.019712723791599,-0.046699125319719,0.054822597652674],[-0.057423889636993,-0.012200515717268,-0.087726980447769]],[[-0.0048177936114371,-0.047446582466364,0.089105948805809],[0.01968059875071,-0.049303993582726,0.047295283526182],[0.013084138743579,-0.096159502863884,-0.025444747880101]],[[-0.038837630301714,-0.059068635106087,-0.027822105214],[-0.025150686502457,0.021600022912025,0.017385624349117],[-0.062551148235798,0.030307717621326,-0.01624133810401]],[[0.0023869136348367,0.055463545024395,0.12589839100838],[0.024082789197564,0.1137130856514,0.12039863318205],[0.15881185233593,0.071439161896706,0.15628024935722]],[[0.021841479465365,0.01333234924823,0.017913604155183],[-0.0015377111267298,0.041469190269709,0.012029929086566],[0.077862858772278,0.09596735984087,0.10354928672314]],[[0.13441804051399,-0.020594077184796,0.051276184618473],[-0.0023334138095379,0.02050874941051,-0.021131353452802],[-0.036949064582586,0.041154835373163,0.11074882000685]]],[[[-0.19555675983429,-0.018275240436196,-0.024346958845854],[-0.0013081055367365,0.020563568919897,-0.10118389129639],[0.0086732842028141,0.075899787247181,0.04494421556592]],[[0.06278620660305,-0.00084319501183927,-0.10389002412558],[0.095940142869949,0.080346509814262,0.047524828463793],[-0.046000987291336,-0.12469240278006,-0.017099430784583]],[[0.056458070874214,0.016386989504099,-0.073302894830704],[0.067349925637245,0.044853180646896,-0.14541830122471],[0.053963806480169,0.043496079742908,0.044984836131334]],[[-0.02358315512538,-0.063882991671562,0.045712534338236],[-0.12215092033148,-0.10698039084673,-0.065538249909878],[0.05366849526763,-0.050157286226749,-0.021896554157138]],[[0.00015194872685242,0.086933076381683,-0.023527955636382],[0.062589555978775,0.065070733428001,-0.042721088975668],[-0.042186222970486,-0.039326906204224,-0.082604184746742]],[[0.090842179954052,0.026123175397515,0.11988193541765],[0.018869576975703,-0.0023642249871045,0.069932609796524],[-0.0063692410476506,-0.038176629692316,0.026022834703326]],[[0.041536066681147,-0.023051189258695,0.066788271069527],[0.058285545557737,-0.095180369913578,-0.02306848205626],[0.051932815462351,-0.0027260556817055,-0.036813333630562]],[[-0.01779505237937,-0.02509231865406,0.037620726972818],[-0.030350673943758,-0.030143395066261,0.04999278113246],[-0.0064723649993539,0.027593735605478,0.035857245326042]],[[0.031557109206915,-0.001892757602036,0.056128121912479],[-0.019904548302293,0.0009250448201783,-0.01058647967875],[-0.023359399288893,-0.047410514205694,-0.019222490489483]],[[-0.039506819099188,0.1428486853838,0.028965277597308],[-0.096279792487621,-0.1061834320426,-0.046496547758579],[-0.098863892257214,-0.027457846328616,-0.064919710159302]],[[0.035787984728813,-0.042955368757248,0.033966355025768],[0.056600943207741,0.071885697543621,-0.065944381058216],[0.010104179382324,0.02358503639698,-0.051571890711784]],[[-0.0033856045920402,-0.12196777015924,-0.1764697432518],[-0.062435243278742,-0.065937057137489,-0.20439833402634],[0.010362106375396,-0.063707679510117,-0.1274257004261]],[[-0.084468133747578,-0.095035515725613,0.075286336243153],[0.062342938035727,-0.056243807077408,0.030082384124398],[0.0041751670651138,0.023013073951006,0.099067091941833]],[[0.098899215459824,-0.0043429313227534,-0.043567661195993],[-0.008965183980763,0.036680903285742,0.13991041481495],[0.02651928178966,-0.020829934626818,-0.0064411880448461]],[[0.0034138080663979,-0.03568047657609,-0.09007965028286],[0.063161037862301,-0.047022450715303,-0.053715743124485],[0.034893650561571,0.021190309897065,-0.11054279655218]],[[0.0032032853923738,0.018604720011353,0.11951334029436],[-0.074386961758137,-0.041626680642366,-0.015045546926558],[-0.0087178517132998,0.0063709020614624,-0.079279556870461]],[[0.2676382958889,0.018892360851169,-0.0082480404525995],[0.2059256285429,-0.014480117708445,0.040109518915415],[-0.03633726388216,0.046511378139257,0.043182343244553]],[[-0.16376069188118,0.057566214352846,-0.068229041993618],[-0.061437632888556,-0.027828989550471,-0.027658805251122],[-0.023976095020771,0.0414610914886,-0.017619961872697]],[[-0.047765426337719,0.12380096316338,0.052729450166225],[-0.038679167628288,0.10524999350309,0.050150610506535],[-0.20949248969555,-0.0057058986276388,0.027349557727575]],[[-0.028937662020326,-0.10239933431149,0.10933680832386],[0.091360583901405,0.10890049487352,-0.031721524894238],[0.012161176651716,-0.0057490048930049,-0.011917632073164]],[[-0.051951888948679,0.034836899489164,-0.11397874355316],[0.042286291718483,0.022106297314167,-0.029914190992713],[0.023620659485459,0.013701136223972,0.085734292864799]],[[0.10108122229576,0.10656355321407,-0.051991336047649],[-0.0031019656453282,0.016425462439656,-0.086534887552261],[0.12457703053951,0.096039101481438,0.0079510146752]],[[0.097644604742527,0.20050621032715,0.027473699301481],[-0.088108517229557,-0.12018412351608,-0.059770278632641],[-0.12629136443138,0.064790435135365,0.031844452023506]],[[-0.015723245218396,0.014294725842774,-0.01887034624815],[0.057161115109921,-0.18814907968044,-0.12346745282412],[-0.095798075199127,0.0094535630196333,-0.13360691070557]],[[-0.0085062207654119,-0.033177334815264,-0.030664565041661],[0.081194505095482,-0.048898182809353,0.020449472591281],[0.0053393519483507,-0.023085178807378,-0.12953905761242]],[[-0.11250818520784,0.054834105074406,0.060171619057655],[-0.044400479644537,-0.086364798247814,-0.19952484965324],[-0.043022628873587,0.095879226922989,-0.16120441257954]],[[0.020965250208974,0.092104248702526,0.025202833116055],[-0.019954094663262,0.047422476112843,0.055196423083544],[-0.032488256692886,-0.016286632046103,0.0341268889606]],[[0.10262133926153,0.008248807862401,0.0018996320432052],[-0.043380748480558,0.030651608482003,0.0068370783701539],[0.01571873947978,-0.12721687555313,0.14324463903904]],[[0.087910421192646,-0.14928030967712,-0.076559014618397],[0.093284547328949,0.013822036795318,-0.024847406893969],[-0.16421835124493,0.03912278264761,-0.027771843597293]],[[0.05090819299221,-0.066589154303074,0.036749809980392],[-0.019918018952012,0.035897973924875,0.029715247452259],[0.025530654937029,0.095710441470146,0.078791923820972]],[[-0.065054446458817,-0.040568888187408,-0.028173353523016],[-0.012921337969601,-0.16054075956345,-0.015815608203411],[-0.09982717782259,0.01216543186456,0.032501954585314]],[[0.01204243581742,-0.029261184856296,0.015848418697715],[-0.11224940419197,0.077187590301037,-0.041315112262964],[0.10091898590326,-0.035251710563898,0.018540158867836]],[[-0.10627331584692,-0.035594496876001,-0.04685615375638],[0.026918150484562,0.022509416565299,0.021913534030318],[-0.075430691242218,0.03772397339344,0.20174019038677]],[[0.056267511099577,0.091519899666309,-0.047453947365284],[0.13069824874401,0.1221177726984,-0.10219121724367],[0.055793322622776,0.01424755435437,-0.099841631948948]],[[0.029350137338042,-0.056644286960363,-0.084876522421837],[0.12045464664698,0.032018035650253,-0.1123683527112],[-0.031197464093566,0.087933883070946,-0.1210513189435]],[[0.17167674005032,0.042941685765982,0.060534678399563],[0.062384571880102,-0.030317321419716,-0.097476594150066],[0.067765675485134,-0.025077307596803,0.08838202804327]],[[0.046351127326488,-0.10469108819962,0.0079492405056953],[0.018275311216712,-0.069349303841591,0.053769167512655],[-0.00024710653815418,0.041361026465893,-0.12109091877937]],[[0.081766657531261,0.042826868593693,-0.060433883219957],[-0.018799440935254,-0.034739337861538,0.038241658359766],[0.069764479994774,-0.017284657806158,0.0083646140992641]],[[-0.017385510727763,0.057083461433649,-0.059102028608322],[0.051682900637388,-0.089064486324787,-0.032088454812765],[0.032799504697323,0.026447476819158,-0.16166320443153]],[[-0.0821872651577,0.075160183012486,0.10081261396408],[-0.073910839855671,-0.02448938600719,0.067072317004204],[-0.0049183727242053,-0.068118788301945,0.077618472278118]],[[-0.021659951657057,-0.058329943567514,-0.048378556966782],[-0.0033212346024811,-0.12494833022356,-0.10431856662035],[-0.044146355241537,0.08864239603281,0.015670727938414]],[[-0.014059304259717,-0.087465167045593,-0.014588195830584],[-0.058412875980139,-0.090709187090397,0.0095809148624539],[-0.00043401456787251,0.078452706336975,-0.042820159345865]],[[0.010698686353862,-0.13711002469063,-0.12838537991047],[0.059188257902861,0.017397046089172,-0.078151404857635],[0.0040844241157174,0.063087336719036,-0.17207713425159]],[[0.070728100836277,-0.036885190755129,-0.071214035153389],[-0.0058179888874292,-0.031044425442815,-0.0035768162924796],[0.0088437115773559,-0.019929382950068,-0.095158435404301]],[[0.077896282076836,-0.018375262618065,-0.042046584188938],[0.11850760877132,-0.0099781733006239,-0.10124973207712],[0.090233705937862,-0.0012168458197266,-0.11165585368872]],[[-0.13949272036552,0.089337654411793,0.067330405116081],[0.067634515464306,-0.042639534920454,0.0084586571902037],[0.16007459163666,0.0086363600566983,-0.071888767182827]],[[-0.012993746437132,-0.1213314011693,-0.12459193170071],[-0.0030873455107212,0.059790786355734,-0.031826201826334],[0.063315071165562,-0.013141333125532,-0.07213918864727]],[[0.012358831241727,-0.005839922465384,-0.070855967700481],[0.0082111172378063,0.01766762137413,0.03055302798748],[0.014133174903691,0.030586181208491,-0.0044542290270329]],[[-0.084956377744675,-0.080542288720608,-0.1002878844738],[0.02667654119432,-0.00099347473587841,-0.015255971811712],[-0.11041558533907,0.0021994840353727,-0.10859652608633]],[[-0.0086770923808217,0.023253524675965,-0.080042228102684],[-0.021800057962537,0.033915098756552,0.0137949436903],[0.015598684549332,0.068267233669758,0.0079586552456021]],[[0.14460988342762,-0.013039677403867,0.096954300999641],[-0.070167370140553,-0.027397207915783,-0.19996377825737],[0.12489438056946,-0.01595894433558,-0.094207800924778]],[[-0.056945789605379,0.092625170946121,0.036076258867979],[-0.15036088228226,-0.10816359519958,-0.029612662270665],[-0.0088396221399307,-0.045203059911728,-0.064325481653214]],[[0.091487437486649,0.03957624733448,-0.013532215729356],[-0.050246011465788,0.047641091048717,0.034099314361811],[0.04156481847167,-0.0044662752188742,0.071067057549953]],[[0.073430575430393,-0.19899462163448,-0.13670611381531],[-0.018944103270769,0.12315990775824,-0.068266548216343],[0.14022354781628,-0.032113544642925,-0.083539798855782]],[[0.086642071604729,-0.014995613135397,0.051312047988176],[0.035537675023079,0.017920225858688,-0.018647059798241],[0.033971332013607,-0.043553825467825,0.012656528502703]],[[-0.080676667392254,0.024113360792398,-0.0023734753485769],[0.02429655380547,-0.12777860462666,0.057912353426218],[0.053309038281441,-0.035782068967819,-0.025663014501333]],[[-0.067337639629841,-0.058501660823822,-0.048946242779493],[-0.025428514927626,-0.023506039753556,-0.016605101525784],[-0.0035903425887227,-0.09124818444252,0.016854392364621]],[[-0.19784452021122,0.047253537923098,0.062190219759941],[0.0063445381820202,-0.045329328626394,0.076685443520546],[-0.020240347832441,0.049891766160727,-0.086674347519875]],[[-0.14244495332241,-5.0206326704938e-06,0.081990845501423],[-0.0046346853487194,0.081478707492352,-0.047538120299578],[-0.01723968796432,0.031962294131517,0.028340769931674]],[[0.055014971643686,-0.00025045621441677,-0.064519718289375],[0.008752865716815,-0.051172688603401,-0.038351736962795],[0.074178501963615,0.060304474085569,0.01390914618969]],[[-0.059532295912504,-0.086830228567123,-0.10940629988909],[-0.0090032257139683,0.020014852285385,-0.069691255688667],[0.10267404466867,-0.02472797036171,-0.024990931153297]],[[-0.068351097404957,-0.018166653811932,0.10897152870893],[0.027941612526774,-0.071518257260323,-0.038091298192739],[-0.13674120604992,0.0035284021869302,-0.065013013780117]],[[0.09927798807621,0.10453327000141,-0.024922713637352],[0.060312401503325,-0.0013455669395626,-0.07791094481945],[0.18104231357574,-0.040080148726702,0.06239664927125]],[[-0.071490287780762,0.017559010535479,0.036954235285521],[-0.061451211571693,0.011444604955614,0.032184075564146],[0.063454732298851,-0.01720391958952,0.11330131441355]]],[[[0.052619222551584,-0.00023606128524989,0.11069460958242],[0.061578035354614,-0.087427839636803,-0.015987232327461],[0.0054612327367067,0.10366398096085,0.0042850463651121]],[[-0.020367860794067,-0.069692201912403,-0.0072342888452113],[-0.036990616470575,-0.07054790109396,0.062055822461843],[-0.070079490542412,-0.061783261597157,0.065785929560661]],[[-0.012483316473663,-0.0074573024176061,-0.036390855908394],[-0.010577040724456,0.059732109308243,0.0017972377827391],[-0.015136538073421,-0.056444257497787,-0.027733916416764]],[[0.034983418881893,0.064699575304985,-0.028314156457782],[0.038282532244921,0.11484751850367,0.010432546958327],[0.01187025103718,0.091564565896988,0.0077156652696431]],[[-0.03786214068532,-0.039139360189438,0.08381162583828],[0.025967068970203,-0.0843760445714,0.048237692564726],[-0.016754755750299,-0.064189746975899,0.054129790514708]],[[0.082523070275784,0.051549438387156,0.04225954040885],[-0.025659967213869,-0.035200137645006,-0.007281634490937],[0.0047976644709706,-0.00036909952177666,0.097706593573093]],[[0.018228702247143,-0.097283720970154,-0.003030072664842],[0.043383594602346,-0.021526210010052,-0.018775075674057],[0.075691640377045,0.09272076934576,0.016812628135085]],[[0.10421558469534,0.036352671682835,-0.0608049929142],[-0.095239989459515,-0.058996826410294,0.10205262154341],[0.027251306921244,-0.066926293075085,0.017860220745206]],[[0.013565055094659,0.016606086865067,-0.047084137797356],[-0.0052281068637967,0.099539950489998,0.00074293918441981],[0.049682632088661,-0.052928268909454,-0.085341654717922]],[[0.021911267191172,-0.070331357419491,-0.053830359131098],[0.091812446713448,-0.012338225729764,0.02796052582562],[0.0087694488465786,-0.084541775286198,-0.0072207297198474]],[[0.01114222034812,0.021662093698978,0.025773625820875],[-0.013700343668461,0.038017086684704,0.030617827549577],[-0.0044141076505184,0.015503451228142,0.036789778620005]],[[-0.00014919912791811,-0.057171922177076,-0.032055590301752],[0.012710981070995,0.0035973126068711,0.019401900470257],[0.020495200529695,0.028429197147489,-0.022054173052311]],[[-0.034286800771952,0.062589831650257,-0.0061003738082945],[-0.10375341027975,-0.0054383943788707,0.02676603384316],[-0.10531362146139,0.0056362492032349,-0.025458427146077]],[[0.05356827750802,-0.025188960134983,0.11011507362127],[-0.15094493329525,-0.1674649566412,0.023169688880444],[-0.051167476922274,-0.0055157216265798,-9.1680682089645e-05]],[[0.01590483635664,-0.096102058887482,-0.013745626434684],[-0.052714738994837,-0.063386611640453,0.024271532893181],[-0.020397191867232,0.033211816102266,-0.020324246957898]],[[-0.078556582331657,-0.033122912049294,0.066977195441723],[-0.0019288271432742,0.010904557071626,-0.0083753690123558],[-0.033204156905413,-0.10084532946348,0.011209288612008]],[[-0.030486013740301,-0.043078020215034,-0.071286909282207],[-0.018946938216686,0.040964592248201,0.070311471819878],[-0.032334309071302,0.075520105659962,-0.014704382047057]],[[0.059999406337738,0.023970670998096,-0.0017525959992781],[-0.039956241846085,0.0098460717126727,0.081523850560188],[0.10809507220984,-0.036728121340275,0.053071409463882]],[[0.059456668794155,-0.10344251990318,0.018380688503385],[0.063697054982185,-0.071923077106476,0.089196905493736],[0.045111145824194,-0.046623762696981,-0.035746738314629]],[[0.091256231069565,0.14973202347755,0.02170386351645],[-0.045677084475756,0.073330536484718,0.062638841569424],[0.066733129322529,0.073030337691307,0.046178378164768]],[[0.00072050286689773,-0.0049055861309171,-0.056223642081022],[0.14801609516144,0.066648453474045,-0.055314000695944],[-0.10080987215042,-0.011549227871001,-0.11885453015566]],[[0.0064435638487339,-0.024462072178721,-0.035745315253735],[0.086054630577564,0.00086344714509323,-0.13326735794544],[0.076030418276787,0.11514054983854,-0.00081717513967305]],[[0.00029653718229383,0.054739981889725,0.042404524981976],[0.047088328748941,-0.02971176430583,0.019275788217783],[-0.026821929961443,0.059580508619547,0.12496341019869]],[[-0.013161996379495,-0.0048396177589893,0.0037183337844908],[0.030420238152146,0.023947075009346,0.013994827866554],[0.027035342529416,-0.05077101290226,0.082204461097717]],[[0.032157104462385,-0.04038367420435,-0.015389860607684],[-0.099519826471806,0.030507097020745,0.022765951231122],[0.091416627168655,0.019602980464697,0.012997658923268]],[[-0.088135376572609,-0.072502605617046,0.013796699233353],[-0.063915610313416,-0.066221043467522,0.030256422236562],[0.065890692174435,0.19333434104919,0.082377217710018]],[[0.0024428982287645,-0.14913046360016,-0.006348776165396],[0.0079529536888003,0.0024459161795676,0.061631418764591],[-0.066320456564426,-0.05832052975893,-0.011948676779866]],[[0.038551062345505,0.083604000508785,0.021726135164499],[0.018259380012751,0.014971386641264,0.054596085101366],[-0.041432455182076,-0.073664836585522,0.034311361610889]],[[0.036694381386042,-0.061456583440304,0.019222280010581],[0.0045338179916143,-0.035027764737606,0.011556652374566],[-0.067551277577877,0.03599214553833,0.031188895925879]],[[-0.01016635261476,0.032215561717749,0.043587725609541],[0.030815951526165,0.040253505110741,0.015885604545474],[0.00076741835800931,0.0049150236882269,-0.033242955803871]],[[0.04740658774972,0.030806304886937,-0.012341663241386],[0.018355989828706,-0.030295610427856,-0.025471292436123],[0.023802485316992,0.00072602910222486,0.0037245482672006]],[[-0.11534774303436,0.088567495346069,-0.090718358755112],[-0.028600543737411,0.018423767760396,0.058886680752039],[0.079157754778862,0.013441671617329,0.12999849021435]],[[0.001261048601009,0.0029091171454638,0.045659180730581],[0.042073648422956,0.036613557487726,0.08203748613596],[-0.12476832419634,-0.031176883727312,0.050514336675406]],[[-0.24765656888485,0.037393875420094,-0.022163597866893],[-0.10699040442705,0.02871897444129,0.010775056667626],[-0.14150866866112,-0.0032148526515812,-0.042370826005936]],[[-0.022377356886864,0.02911513671279,0.023677948862314],[-0.11557327955961,0.013882745057344,-0.067479029297829],[-0.040831450372934,-0.0069702723994851,0.034229695796967]],[[0.022678485140204,-0.048821970820427,-0.047175377607346],[-0.042057614773512,-0.029559470713139,-0.018429607152939],[0.051421623677015,-0.061193268746138,0.016305092722178]],[[-0.038588058203459,-0.035884916782379,0.035971708595753],[-0.0027620275504887,0.14001294970512,0.041566524654627],[0.011948929168284,0.029339458793402,-0.055866654962301]],[[-0.040260978043079,-0.03548826649785,0.074703022837639],[-0.00032812781864777,0.11561790108681,0.03813224285841],[0.0070148301310837,-0.011413683183491,-0.0044683767482638]],[[-0.049683529883623,-0.0044034286402166,-0.11314244568348],[-0.023494130000472,-0.10030517727137,-0.11251759529114],[0.023793455213308,-0.10445343703032,0.024994656443596]],[[-0.065641574561596,0.039877258241177,0.086485140025616],[-0.011585740372539,0.014494684524834,-0.12827664613724],[0.0024205734953284,-0.044642526656389,-0.038255520164967]],[[-0.016441473737359,0.019842462614179,0.056602839380503],[0.0037638978101313,-0.067294098436832,-0.12210491299629],[0.034987088292837,0.02012219466269,-0.045795597136021]],[[0.059903003275394,0.032491873949766,-0.045222423970699],[-0.15729999542236,-0.02046730555594,0.018613964319229],[-0.064478144049644,-0.013152991421521,0.02030429802835]],[[-0.019688112661242,0.017307009547949,0.066664457321167],[-0.093415170907974,0.041338309645653,0.034202925860882],[-0.040959004312754,0.0072003803215921,-0.0034680990502238]],[[0.047229994088411,0.0015651730354875,-0.084280639886856],[-0.0054482547566295,0.16028057038784,-0.015799587592483],[0.075877696275711,-0.026929277926683,0.058393731713295]],[[-0.062972635030746,0.043519172817469,-0.075771830976009],[-0.095219328999519,-0.032191429287195,-0.033559396862984],[-0.14725659787655,-0.014422397129238,-0.073839224874973]],[[0.016257094219327,0.041543759405613,-0.10484082996845],[-0.043698571622372,0.060540080070496,-0.0062470128759742],[-0.021961880847812,0.06532346457243,0.063254274427891]],[[0.045532256364822,-0.0049216207116842,0.062337435781956],[-0.055418789386749,-0.074868120253086,0.0038037584163249],[-0.12005178630352,-0.1016448289156,0.015957040712237]],[[0.022164389491081,0.083377309143543,0.00068378646392375],[0.022791437804699,0.037791796028614,-0.073127642273903],[0.03453005105257,-0.067857801914215,0.047794863581657]],[[0.084294050931931,-0.032270591706038,-0.00142179755494],[0.019362157210708,-0.12387358397245,0.05235992372036],[0.017719894647598,-0.064181946218014,0.064296945929527]],[[0.038493633270264,-0.077092207968235,0.044958893209696],[0.029315190389752,0.05932704359293,0.035198755562305],[-0.10231340676546,-0.086767941713333,-0.027170898392797]],[[-0.012443100102246,0.12225279211998,0.03086094558239],[0.1488351970911,0.26037001609802,0.03240018710494],[-0.011131166480482,0.11386058479548,0.086408168077469]],[[0.031977862119675,0.030736099928617,0.039473783224821],[-0.042727459222078,0.013989944942296,0.028839806094766],[-0.093045704066753,-0.045020032674074,-0.022705474868417]],[[0.08276741206646,0.00095328659517691,-0.0092053012922406],[-0.054685920476913,-0.11084755510092,-0.13326172530651],[-0.12982977926731,-0.092162415385246,-0.03548838943243]],[[-0.019793381914496,0.039524655789137,0.029749607667327],[-0.088167384266853,-0.042388495057821,0.047980330884457],[0.024861766025424,0.037402547895908,0.033337976783514]],[[0.023888753727078,-0.04404379799962,0.04722660407424],[0.016578648239374,-0.047946058213711,0.066920891404152],[-0.048620373010635,-0.0083292191848159,0.051903281360865]],[[0.036648195236921,-0.028462203219533,-0.018463907763362],[0.11505182087421,0.0019217767985538,-0.053116198629141],[0.012480746023357,0.045348532497883,-0.10853890329599]],[[-0.02132973074913,-0.034662298858166,0.020959887653589],[0.042793147265911,-0.014459765516222,0.064905412495136],[-0.059666886925697,0.1124406978488,-0.12830382585526]],[[-0.018921654671431,0.015100723132491,-0.013468938879669],[0.060241911560297,-0.024593340232968,-0.10492877662182],[0.012172445654869,0.045537825673819,0.0036832098849118]],[[-0.16232688724995,-0.020913653075695,-0.11096935719252],[-0.011665269732475,0.13131700456142,0.050533480942249],[-0.096817657351494,0.050976283848286,-0.10267056524754]],[[0.006739848293364,0.0053960043005645,-0.00069874903419986],[-0.044242095202208,-0.098439790308475,0.069106191396713],[0.03025340102613,0.1386374682188,0.076795913279057]],[[0.0012945379130542,-0.074400156736374,-0.033998072147369],[0.012888824567199,-0.042824778705835,0.09681660681963],[0.046473231166601,-0.028432305902243,0.084705129265785]],[[-0.059213802218437,-0.006603826303035,-0.031122116371989],[0.10955636948347,0.11826039850712,0.0070221810601652],[0.048795025795698,0.060405299067497,0.059475544840097]],[[0.0079923877492547,-0.0054871882312,0.030941171571612],[0.0028438798617572,0.045537248253822,0.085350789129734],[0.047548990696669,-0.1220363676548,-0.016125628724694]],[[0.10518530011177,0.02546981908381,0.005145694129169],[0.022058477625251,-0.0011339294724166,0.010328589007258],[0.039357956498861,0.0082999728620052,-0.02142589353025]]],[[[0.062720037996769,0.034601513296366,0.01106661465019],[-0.1813155412674,0.023277923464775,0.029699863865972],[-0.043183900415897,0.097250238060951,0.012189157307148]],[[-0.028433818370104,-0.05364753678441,-0.003648758167401],[0.0039419997483492,-0.0032320183236152,0.077738285064697],[-0.046755246818066,0.071005716919899,0.010033092461526]],[[0.021948223933578,-0.015412599779665,-0.077683933079243],[0.052236076444387,-0.052565794438124,0.050908576697111],[0.077984094619751,0.018835829570889,-0.031346086412668]],[[0.00043079192982987,-0.072859369218349,0.077285677194595],[-0.0054436698555946,-0.080583266913891,0.037971660494804],[-0.01659850589931,-0.0081869466230273,-0.021433306857944]],[[-0.09524841606617,-0.087878055870533,0.0047705573961139],[-0.069391146302223,-0.018059717491269,0.014586327597499],[0.035395301878452,-0.016754755750299,0.019100634381175]],[[0.07194372266531,-0.05799263343215,0.049487132579088],[-0.025960488244891,0.092565938830376,-0.092557273805141],[-0.018119597807527,-0.0097813187167048,0.069935575127602]],[[0.065211728215218,0.0064225727692246,-0.083693161606789],[-0.065617054700851,0.031922470778227,0.032231923192739],[0.013949832879007,0.0093792732805014,0.034135211259127]],[[0.028218109160662,0.085275158286095,-0.0065869707614183],[0.088849678635597,0.045716039836407,0.025625493377447],[0.029186096042395,-0.040051892399788,-0.036453481763601]],[[-0.04437143728137,0.041589543223381,0.049702148884535],[-0.019616501405835,-0.027247114107013,0.079180285334587],[-0.064288944005966,0.028716759756207,-0.015907714143395]],[[0.011633450165391,0.0097117265686393,0.040726672858],[0.019544860348105,0.070219993591309,-0.0050414465367794],[-0.020781872794032,0.027401736006141,-0.099687717854977]],[[-0.00733278458938,-0.019743645563722,0.050941824913025],[0.0095148934051394,-0.10473269969225,0.07525148242712],[-0.019433990120888,0.0095838652923703,-0.024727802723646]],[[0.09403096139431,-0.024525703862309,-0.021593915298581],[0.039752773940563,-0.032114282250404,-0.019370995461941],[0.053308259695768,0.043944392353296,0.023338502272964]],[[-0.0015218431362882,0.079027585685253,-0.019074786454439],[1.3768586541119e-05,-0.021178441122174,0.098322071135044],[-0.02692885696888,0.067687213420868,-0.017753360792994]],[[0.029692880809307,0.13808226585388,-0.073186822235584],[0.025872385129333,0.0060121105052531,0.01770437695086],[0.041740383952856,-0.096885487437248,-0.02020737528801]],[[-0.038741257041693,-0.0096635324880481,0.0090798856690526],[-0.065171718597412,0.078327655792236,0.019781332463026],[0.0059678591787815,0.0041934619657695,0.03373796865344]],[[-0.017390329390764,-0.031643029302359,0.079969257116318],[0.081426538527012,-0.08058188855648,-0.089785277843475],[0.0071305315941572,0.066453449428082,0.079584583640099]],[[-0.028389928862453,0.028882069513202,-0.033984869718552],[-0.034698486328125,0.099734261631966,-0.03007005341351],[0.044367536902428,-0.065335132181644,0.05542341247201]],[[-0.011938259936869,0.050201680511236,0.033024601638317],[-0.042711433023214,-0.0032638737466186,0.077064596116543],[0.069666013121605,0.0034451091196388,-0.0044074105098844]],[[-0.016767032444477,-0.06361335515976,-0.0090566836297512],[-0.031932324171066,-0.01130161061883,-0.027759468182921],[-0.087001852691174,-0.031174900010228,0.00070796848740429]],[[-0.01631903834641,0.032820120453835,0.077035076916218],[0.036393664777279,0.057050283998251,0.0078273173421621],[0.030934972688556,0.018500935286283,0.11037947237492]],[[0.021536039188504,-0.035079948604107,-0.010942694731057],[-0.0160788372159,0.19186507165432,0.067215569317341],[0.063453167676926,-0.038159344345331,-0.0042220801115036]],[[0.083426661789417,-0.044772885739803,-0.027674095705152],[0.028151689097285,0.08913291990757,-0.090425759553909],[-0.0067504956386983,-0.026278654113412,0.016087485477328]],[[-0.013375354930758,0.036031439900398,0.0077098784968257],[-0.016842475160956,0.032831840217113,0.024796528741717],[-0.017679955810308,0.078255400061607,-0.0094718188047409]],[[-0.0007147352444008,0.054207049310207,-0.001885308069177],[-0.011584432795644,-0.0034081353805959,0.0036114307586104],[0.028936851769686,0.016187889501452,0.022806266322732]],[[-0.049776423722506,-0.02441898919642,0.11083798110485],[-0.021913558244705,-0.024821102619171,-0.054934624582529],[-0.033977523446083,0.027027498930693,-0.036125890910625]],[[-0.032135538756847,0.078084848821163,0.017782019451261],[0.077066279947758,-0.060945406556129,-0.00019961893849541],[0.018685759976506,0.017410485073924,0.0080923968926072]],[[-0.039563242346048,0.064222812652588,-0.11304528266191],[0.063929237425327,-0.03998938202858,-0.071646228432655],[0.0123733850196,0.13790033757687,0.12297906726599]],[[-0.04770265892148,-0.015047159045935,-0.012370041571558],[0.022970551624894,0.015768773853779,-0.048282407224178],[0.025726655498147,0.014354498125613,-0.054198861122131]],[[-0.00056589487940073,0.016084233298898,-0.10833422839642],[-0.035206314176321,0.028432311490178,-0.06817601621151],[0.044471226632595,0.030726302415133,0.094129666686058]],[[0.064941480755806,-0.010746393352747,0.0099011929705739],[0.05459326505661,-0.022670181468129,0.019124064594507],[0.038058485835791,0.095531322062016,-0.01499951351434]],[[0.048714961856604,0.09789452701807,-0.066044367849827],[0.044090636074543,0.14751136302948,-0.0030611883848906],[-0.021778956055641,0.05513634160161,-0.019854377955198]],[[0.079974241554737,0.0044381064362824,-0.013805890455842],[-0.0077576702460647,0.056300133466721,-0.0363461188972],[-0.022643495351076,-0.037969075143337,0.019948558881879]],[[0.025776386260986,-0.028708022087812,0.015076380223036],[-0.020068833604455,-0.037753518670797,0.054462652653456],[-0.0037432268727571,-0.06338469684124,0.053504921495914]],[[0.00092705141287297,-0.056801978498697,0.0017457850044593],[0.05462846532464,-0.11794171482325,0.050576999783516],[-0.0064998264424503,0.013373010791838,-0.0006806047167629]],[[0.0021339317318052,0.01418596226722,-0.065929248929024],[-0.0070648002438247,-0.05585578456521,0.040695492178202],[-0.025907747447491,-0.021792870014906,-0.021833654493093]],[[-0.01010833401233,0.04431401565671,0.048993069678545],[0.0035317081492394,0.036094319075346,0.088838249444962],[0.085076533257961,-0.012374245561659,0.07926169782877]],[[0.00070498255081475,-0.021293435245752,0.029008852317929],[0.0064983055926859,0.064276732504368,0.0076753236353397],[0.052856255322695,0.0075936033390462,-0.052020717412233]],[[0.072371430695057,-0.02809314802289,0.098168529570103],[0.028230665251613,0.045490231364965,-0.023867504671216],[-0.098420560359955,0.034320801496506,-0.027118820697069]],[[-0.015746477991343,0.09806390106678,-0.037800349295139],[-0.035879768431187,-0.039916522800922,-0.0031502423807979],[-0.074685618281364,-0.02733582817018,-0.027768474072218]],[[0.048422317951918,-0.03325591608882,0.13598611950874],[0.0033686268143356,-0.033758822828531,-0.060852739959955],[0.039332456886768,-0.035769488662481,0.07026020437479]],[[0.03574226424098,0.028759490698576,0.031006075441837],[-0.0041916547343135,0.035300679504871,0.033324256539345],[-0.00017885921988636,-0.028496772050858,-0.027803789824247]],[[-0.0099718235433102,0.083541624248028,-0.019682573154569],[0.045651841908693,-0.039071429520845,0.091526485979557],[0.026480501517653,-0.057347405701876,0.043357156217098]],[[0.048771061003208,0.019369790330529,0.044434331357479],[-0.055975411087275,0.073338463902473,0.035297885537148],[0.10838646441698,0.010940519161522,-0.061557736247778]],[[0.045709937810898,0.045288372784853,0.092670567333698],[0.049635130912066,0.015830110758543,0.031580373644829],[0.0026341136544943,-0.092288546264172,-0.046008665114641]],[[0.016035851091146,-0.016160761937499,0.043797042220831],[0.0172199010849,0.012183830142021,-0.029558692127466],[0.088074401021004,-0.035300616174936,0.077854551374912]],[[0.01039872225374,0.025244075804949,0.061036940664053],[0.098587960004807,0.096088714897633,-0.026559004560113],[0.053026236593723,0.054312955588102,0.032011080533266]],[[-0.047894477844238,0.056577537208796,0.026318736374378],[0.069346442818642,-0.021653963252902,0.02796683460474],[0.037199374288321,0.017042735591531,-0.028808493167162]],[[0.021919444203377,-0.013920044526458,0.035054173320532],[0.034939426928759,-0.03103169798851,0.10171798616648],[-0.056955873966217,-0.018847044557333,-0.016343491151929]],[[-0.027687547728419,-0.010772315785289,0.062267381697893],[0.023805582895875,-0.05198023840785,-0.043700620532036],[-0.045157808810472,0.023340199142694,0.025616064667702]],[[0.044363625347614,0.035821948200464,-0.13980795443058],[0.061687350273132,-0.038039285689592,-0.041376013308764],[0.082259461283684,-0.037097219377756,0.031441159546375]],[[0.02880272641778,-0.012633105739951,0.013815623708069],[0.05766611546278,-0.015965715050697,-0.0032316506840289],[0.094144210219383,0.060051694512367,0.057521294802427]],[[0.026464534923434,0.027381714433432,0.20072543621063],[0.015796985477209,-0.024688687175512,0.029021173715591],[-0.033868253231049,0.10153906792402,-0.019233293831348]],[[0.069636575877666,-0.048733942210674,-0.099501416087151],[-0.076348468661308,-0.092061899602413,-0.05823615193367],[-0.07443705946207,-0.023386280983686,0.024504506960511]],[[0.027558837085962,-0.052662096917629,-0.081310734152794],[-0.082711197435856,0.014238268136978,-0.036208286881447],[0.018030578270555,0.0046795750968158,0.072803840041161]],[[0.10167410224676,0.04017399251461,0.051785167306662],[0.053463719785213,0.059578608721495,0.11690455675125],[0.13498635590076,-0.066857755184174,0.0066819447092712]],[[-0.057247720658779,0.013919352553785,-0.043175499886274],[0.013970520347357,0.057041976600885,-0.0052512073889375],[0.02914927713573,0.072469376027584,-0.016756506636739]],[[-0.015854891389608,-0.083373099565506,0.0029818615876138],[-0.08304538577795,-0.021146144717932,-0.036319155246019],[-0.048886619508266,-0.075191430747509,-0.0034303616266698]],[[-0.025989627465606,-0.056215882301331,0.042964018881321],[-0.030421447008848,0.067314051091671,0.065469101071358],[0.017296390607953,-0.032803501933813,0.089946985244751]],[[0.038968451321125,0.037364766001701,0.06434054672718],[-0.025776596739888,-0.064815677702427,-0.029005758464336],[-0.00034700625110418,0.084741100668907,-0.079520583152771]],[[0.052672926336527,-0.0013887190725654,-0.046274751424789],[0.070730142295361,0.0077117239125073,0.057443950325251],[0.035333998501301,-0.0075092487968504,-0.0093827303498983]],[[0.048966065049171,0.0063239624723792,0.03525410592556],[0.018235608935356,0.048917986452579,-0.053103759884834],[-0.0094403857365251,-0.0067861555144191,0.0093195540830493]],[[-0.029587326571345,-0.15035532414913,0.049212496727705],[-0.026089886203408,0.075220733880997,0.14783507585526],[0.091801859438419,-0.070346042513847,0.11110498011112]],[[-0.028710458427668,-0.0032339184544981,0.082331001758575],[0.065828822553158,-0.027988893911242,-0.045738250017166],[-0.080481089651585,0.055320676416159,0.040799666196108]],[[0.0048284665681422,0.054569024592638,0.0098623316735029],[0.045273832976818,-0.057093162089586,0.052324265241623],[0.022077849134803,-0.029700012877584,0.023484982550144]]],[[[0.080317258834839,-0.0015691932057962,-0.029780173674226],[0.082959190011024,-0.082859061658382,-0.02660939656198],[-0.076212078332901,-0.084385015070438,-0.082497157156467]],[[0.059509560465813,0.021487109363079,0.10333377122879],[-0.00045831591705792,-0.045060802251101,-0.012368903495371],[-0.089588098227978,-0.012319972738624,0.0086795389652252]],[[0.052130285650492,-0.0045386138372123,-0.067768581211567],[-0.016611644998193,-0.067206174135208,-0.0061333063058555],[-0.085031025111675,0.0019131819717586,0.13810707628727]],[[0.036625072360039,0.035054862499237,0.045290675014257],[-0.16732861101627,-0.046913713216782,-0.075715564191341],[0.045665230602026,0.016518820077181,0.080196224153042]],[[0.042701490223408,0.071982458233833,0.032129108905792],[0.079067416489124,0.043626260012388,0.00072978402022272],[-0.020175445824862,-0.068679995834827,0.0040925885550678]],[[-0.018263224512339,0.075467430055141,0.032126683741808],[0.045846898108721,0.06904661655426,0.021393897011876],[0.11634142696857,0.00021117382857483,-0.071468658745289]],[[-0.0060325614176691,-0.045119378715754,-0.0061092311516404],[-0.0025462694466114,-0.00017946702428162,-0.08549527078867],[-0.17735594511032,0.031045213341713,0.0053873741999269]],[[0.055996492505074,0.033803146332502,0.023726666346192],[-0.0063384785316885,0.026678595691919,-0.032966922968626],[-0.011479788459837,-0.020501645281911,-0.016379592940211]],[[0.043420970439911,0.10836361348629,0.15863221883774],[-0.059965088963509,-0.041179362684488,0.097565114498138],[-0.13814751803875,-0.070318758487701,-0.114781729877]],[[0.00028656836366281,-0.037982568144798,-0.082836419343948],[0.13245114684105,-0.244244992733,-0.015908215194941],[-0.075864158570766,0.08548628538847,0.049201965332031]],[[0.037916366010904,-0.040689263492823,-0.016562478616834],[-0.024800419807434,-0.005118309520185,-0.0099943857640028],[-0.066201746463776,-0.084489934146404,-0.033590920269489]],[[-6.4352265326306e-05,-0.264244556427,-0.12790763378143],[0.0062153399921954,-0.23052021861076,0.03451831266284],[0.01566469669342,-0.10279054939747,-0.13418790698051]],[[-0.047882545739412,-0.0042777271009982,-0.061757981777191],[0.06539386510849,-0.025052815675735,-0.0073522357270122],[0.035778298974037,-0.019244823604822,-0.079648457467556]],[[-0.12109037488699,-0.078294202685356,-0.079686120152473],[-0.098466202616692,-0.14761383831501,0.055191498249769],[-0.06207263469696,-0.054879389703274,0.06621827930212]],[[-0.017731551080942,-0.049453120678663,-0.044900815933943],[0.037915252149105,-0.040501851588488,-0.047785606235266],[0.053232908248901,0.036817416548729,0.020745147019625]],[[-0.054024901241064,-0.0036193754058331,-0.092865750193596],[-0.037490330636501,0.052204679697752,-0.0087573695927858],[-0.066356375813484,-0.0057486640289426,0.07597840577364]],[[-0.018908783793449,-0.10063066333532,-0.012168065644801],[0.026372615247965,0.0026814392767847,0.09714899212122],[0.030809484422207,0.036283865571022,-0.048759631812572]],[[-0.013290103524923,-0.059938006103039,-0.042055275291204],[0.058542959392071,0.0047924192622304,0.0013008556561545],[0.021855734288692,-0.027011331170797,-0.0096629215404391]],[[-0.048083759844303,0.013112825341523,-0.082326509058475],[0.024169430136681,0.077481336891651,-0.029632493853569],[-0.092180401086807,-0.0757941827178,0.011421498842537]],[[0.076506309211254,0.037838749587536,0.05245116353035],[0.043466459959745,0.062101770192385,-0.03295049443841],[0.062056340277195,0.066857978701591,0.061914477497339]],[[0.0035099640954286,-0.024157209321856,-0.021636683493853],[0.037503067404032,-0.041513934731483,-0.035559568554163],[0.04463030397892,-0.10547910630703,0.07643599063158]],[[-0.12966579198837,-0.34206566214561,-0.22472907602787],[-0.048125978559256,-0.29577335715294,-0.1693796813488],[0.011850903742015,-0.091957874596119,-0.025198265910149]],[[-0.019339108839631,-0.062615312635899,0.050571762025356],[-0.062984675168991,0.077062644064426,0.0107900518924],[0.091012574732304,-0.072706170380116,0.023079132661223]],[[0.0073506310582161,-0.062474746257067,-0.059138465672731],[-0.33774903416634,-0.034753628075123,-0.0084359180182219],[-0.049293518066406,0.10523488372564,0.050836842507124]],[[0.060836471617222,-0.008984113112092,-0.029150020331144],[0.081103444099426,-0.16674213111401,0.032724838703871],[-0.11211871355772,0.1636249423027,0.09700970351696]],[[-0.008223881945014,0.080085426568985,-0.012419282458723],[-0.050048377364874,-0.051395766437054,-0.036128092557192],[-0.10041493177414,-0.014715256169438,-0.13115176558495]],[[0.058023300021887,0.009259594604373,0.079136647284031],[0.086603835225105,-0.013542461208999,0.10713596642017],[0.089351639151573,-0.047448109835386,-0.0053336396813393]],[[-0.016872633248568,0.018589872866869,0.023365911096334],[-0.069084241986275,0.03263583034277,-0.044086392968893],[-0.031163815408945,-0.037872213870287,-0.052511800080538]],[[0.051039598882198,-0.004284038208425,-0.024386947974563],[-0.0049660303629935,-0.13955354690552,-0.040300451219082],[0.0066965180449188,0.026141231879592,-0.020873319357634]],[[0.015393053181469,-0.020174315199256,-0.073179945349693],[0.0032532350160182,-0.037990171462297,-0.01619965583086],[-0.020055525004864,0.10386356711388,0.11092653870583]],[[-0.10378018021584,0.095430351793766,-0.0010272570652887],[-0.0099234655499458,-0.031053882092237,-0.16537721455097],[-0.0142258759588,0.060626827180386,0.039224904030561]],[[0.023551397025585,-0.0040512485429645,0.10542311519384],[0.04249058291316,-0.00073652341961861,-0.0039063915610313],[0.016830809414387,-0.034582998603582,0.027789335697889]],[[0.02080730907619,0.099191911518574,-0.050459787249565],[-0.012563307769597,-0.034273345023394,0.092549256980419],[-0.10593917965889,-0.029567543417215,-0.0094541599974036]],[[-0.1704053580761,-0.072990767657757,-0.11291960626841],[-0.022949479520321,0.059228464961052,0.021390439942479],[0.038557440042496,0.084600955247879,0.060224212706089]],[[-0.057092636823654,-0.051529180258512,-0.063210695981979],[-0.10641182214022,-0.04240345209837,0.026298562064767],[0.12941554188728,0.056247472763062,-0.020400187000632]],[[0.015484706498682,-0.038773879408836,-0.012308566831052],[0.064235538244247,0.029990408569574,-0.04052622243762],[0.02843595854938,0.050621774047613,0.030978735536337]],[[-0.035770907998085,-0.022329013794661,-0.091265827417374],[0.090142853558064,0.012435308657587,-0.0097473422065377],[0.050502777099609,0.00020494479394984,0.0018111721146852]],[[-0.023130606859922,-0.021104564890265,-0.0071251098997891],[0.016337310895324,0.054428461939096,0.0027944182511419],[-0.15899536013603,-0.048521764576435,0.0039958599954844]],[[-0.058333203196526,-0.059530042111874,-0.013578798621893],[0.011810746975243,-0.049709461629391,0.021858483552933],[0.091471798717976,0.052431110292673,0.0666688606143]],[[-0.00081116845831275,0.090790584683418,0.075109504163265],[0.042742248624563,0.017512807622552,0.070426806807518],[-0.065081469714642,-0.014338704757392,-0.0040489118546247]],[[0.068277299404144,-0.11277950555086,-0.022316521033645],[-0.067668735980988,0.061178896576166,0.10822513699532],[0.042273223400116,0.014981815591455,0.014482797123492]],[[-0.094340726733208,-0.014141016639769,0.14156055450439],[0.036551926285028,-0.073090083897114,0.047932293266058],[0.18025515973568,-0.057193402200937,0.0038947467692196]],[[0.029383277520537,-0.049109071493149,-0.056772399693727],[-0.027685342356563,0.015215136110783,-0.19128647446632],[-0.023113390430808,-0.15627661347389,0.086455255746841]],[[-0.13371904194355,-0.13109919428825,-0.049695312976837],[0.039659511297941,0.050954639911652,-0.13100031018257],[0.082018442451954,0.1311586946249,0.14127440750599]],[[-0.067166224122047,-0.073961988091469,-0.028205297887325],[0.014379722997546,0.051968157291412,-0.021593967452645],[0.10300455242395,0.01814247854054,0.029422303661704]],[[-0.0036895563825965,-0.083790890872478,-0.058123778551817],[0.040568731725216,-0.067152261734009,0.00057906738948077],[0.018833676353097,-0.19340844452381,-0.012315108440816]],[[0.032149393111467,-0.032905634492636,0.0076002804562449],[0.015143806114793,0.025977177545428,0.004898433573544],[0.105792298913,0.0029902756214142,-0.0067500611767173]],[[0.04851008951664,0.045332353562117,0.050684444606304],[0.047413140535355,0.026826705783606,0.0033444669097662],[0.060511719435453,-0.027805430814624,-0.047444757074118]],[[0.0044336766004562,-0.013932310976088,-0.027747316285968],[0.0071859396994114,0.0406727604568,0.031938627362251],[-0.0089212534949183,-0.043427105993032,-0.0620849840343]],[[-0.077976539731026,-0.13357868790627,-0.17487207055092],[0.090654239058495,-0.024911195039749,-0.025129372254014],[0.14416034519672,0.098446868360043,0.068668551743031]],[[-0.088649235665798,-0.03979354724288,-0.041721884161234],[0.1046984270215,0.032158829271793,-0.011024897918105],[-0.016192277893424,0.082521542906761,0.043032467365265]],[[-0.06013260781765,0.02517451159656,0.0029031010344625],[-0.044229619204998,0.074917405843735,-0.0078085446730256],[0.00075169408228248,-0.010153016075492,-0.0067877061665058]],[[0.042207580059767,-0.039363045245409,-0.093064330518246],[-0.0086214123293757,0.067965380847454,-0.13334181904793],[-0.043128158897161,0.017728313803673,-0.049288857728243]],[[0.0096971690654755,0.023819223046303,-0.032422322779894],[0.058140411973,0.0027892333455384,0.038532689213753],[0.0493991561234,-0.055051691830158,0.012774288654327]],[[-0.14675106108189,-0.0073915645480156,-0.044127251952887],[0.12991158664227,0.020577577874064,0.046079527586699],[0.13099528849125,0.050175122916698,-0.029662698507309]],[[0.050698727369308,0.16400817036629,0.1218423768878],[0.062472134828568,-0.005942115560174,0.00057216995628551],[0.045027442276478,-0.087247222661972,-0.052230272442102]],[[0.0014883875846863,-0.0081781223416328,0.00060490076430142],[0.13542337715626,0.10675954073668,0.019905092194676],[0.10598710924387,0.13123781979084,0.053111914545298]],[[-0.097583048045635,-0.17162227630615,-0.13463546335697],[-0.11041014641523,-0.20554278790951,-0.083114519715309],[-0.029529089108109,0.025977922603488,-0.00010583952098386]],[[-0.06831455975771,-0.00088683312060311,-0.033122073858976],[0.051793430000544,-0.035359919071198,-0.094321474432945],[0.077708341181278,0.0534528195858,0.028134919703007]],[[0.09894060343504,0.03435842320323,-0.038171134889126],[-0.0098130656406283,0.020297480747104,-0.059338085353374],[0.026828791946173,-0.034251026809216,0.10208039730787]],[[-0.031350571662188,-0.054210901260376,-0.038755767047405],[-0.021645084023476,0.074190035462379,0.08905190974474],[0.096647791564465,-0.045496892184019,0.060736648738384]],[[0.0069154226221144,0.011318846605718,0.059670481830835],[-0.027939712628722,0.030238194391131,-0.064271099865437],[-0.17265811562538,0.022587141022086,0.0014802346704528]],[[-0.068399451673031,0.079962760210037,-0.092895157635212],[0.053228847682476,-0.043831769376993,-0.05005344748497],[-0.063629016280174,0.052019137889147,-0.0075237266719341]],[[0.075495809316635,-0.013192115351558,0.019332019612193],[-0.028903501108289,0.034833937883377,0.082866333425045],[0.0039953677915037,0.057142719626427,-0.066303834319115]]],[[[0.13917982578278,-0.051036555320024,0.072367243468761],[-0.0061239544302225,0.011485485360026,-0.064242042601109],[0.12044035643339,-0.15335340797901,0.23883011937141]],[[-0.027501391246915,-0.1421989351511,-0.16167715191841],[0.0099263712763786,0.031681172549725,-0.063091576099396],[-0.012632794678211,0.11063589900732,0.054968364536762]],[[-0.025020934641361,0.0073154410347342,-0.10434702038765],[0.049765042960644,0.023874836042523,-0.19688457250595],[-0.15054044127464,-0.0019956571049988,0.079063877463341]],[[-0.14103980362415,-0.071463786065578,0.057756472378969],[-0.11725886166096,0.074424803256989,0.056933175772429],[0.11977615207434,0.080857411026955,0.094463467597961]],[[0.041355967521667,-0.079204328358173,-0.1502595692873],[0.060199305415154,-0.0093499198555946,0.090409077703953],[0.023962613195181,0.029238050803542,0.05765488743782]],[[-0.041836120188236,0.098717607557774,-0.018319550901651],[-0.12672679126263,0.054253023117781,0.18110090494156],[-0.071215614676476,-0.1033371463418,0.030140364542603]],[[-0.014207767322659,-0.055205710232258,0.091353572905064],[0.051156379282475,-0.08735167235136,-0.0085074072703719],[0.05264987051487,-0.057971883565187,-0.039068695157766]],[[0.049766145646572,0.0023081742692739,0.080211758613586],[-0.10881382972002,0.068264611065388,0.016301749274135],[-0.11870911717415,-0.14928069710732,0.077421754598618]],[[0.042946703732014,0.018807254731655,-0.06274401396513],[-0.060091461986303,0.021252563223243,-0.031876236200333],[0.009744118899107,0.021545609459281,0.012857652269304]],[[-0.037644613534212,0.12475075572729,0.064567945897579],[-0.0021605840884149,0.029360163956881,0.0013529768912122],[-0.01690592430532,-0.0026689469814301,-0.030618105083704]],[[0.030540741980076,0.06897084414959,0.02379590459168],[-0.012714380398393,-0.073496200144291,-0.033332373946905],[-0.12043740600348,-0.10645519196987,-0.16779685020447]],[[0.042180817574263,0.026122730225325,-0.10917289555073],[0.0013825147179887,0.021730996668339,-0.16428177058697],[0.13398706912994,0.031622100621462,-0.069397002458572]],[[-0.033550310879946,-0.28326380252838,-0.09215572476387],[-0.046110454946756,-0.024081889539957,0.064199082553387],[-0.061430081725121,-0.043109815567732,8.4422455984168e-05]],[[-0.12465057522058,-0.14424580335617,-0.090803265571594],[-0.13441380858421,-0.046387534588575,-0.040852479636669],[0.056309372186661,0.044012289494276,0.096162751317024]],[[-0.094227403402328,-0.1287077665329,-0.0020869800355285],[-0.037147328257561,0.15490828454494,-0.0386136546731],[0.012783684767783,-0.013228677213192,-0.023161835968494]],[[-0.21426309645176,0.26670745015144,-0.17824605107307],[0.083280019462109,0.16141486167908,-0.12828625738621],[-0.078399732708931,0.11142805218697,-0.16238732635975]],[[-0.16308592259884,-0.1232411339879,0.096168898046017],[0.088756091892719,0.010363044217229,-0.032701697200537],[-0.047998797148466,-0.10634638369083,0.0032624360173941]],[[0.06230628490448,-0.055719465017319,-0.10463562607765],[0.061725787818432,-0.015524094924331,0.057162299752235],[-0.060831051319838,0.024100545793772,-0.028506565839052]],[[0.067802414298058,0.09270340949297,0.028113923966885],[-0.052639689296484,-0.070179209113121,-0.046685893088579],[0.0066282101906836,0.043156877160072,-0.020433420315385]],[[0.14293102920055,-0.12130618095398,0.063406355679035],[-0.092833705246449,-0.073290698230267,-0.16863258183002],[0.098176807165146,-0.071115374565125,0.088107511401176]],[[0.075533457100391,-0.11072022467852,0.0039549935609102],[-0.033065408468246,-0.021998938173056,-0.12063951790333],[-0.020232761278749,-0.035574872046709,0.087595447897911]],[[-0.019152846187353,-0.0011791018769145,-0.05433889105916],[0.011237205006182,-0.11906865984201,0.088562443852425],[-0.10205131024122,-0.011410402134061,-0.053307928144932]],[[0.049638483673334,0.032933350652456,-0.070724859833717],[0.093200139701366,0.006971319206059,-0.1709620654583],[0.10130757838488,0.0209617074579,0.0090652713552117]],[[0.26284781098366,-0.060533262789249,-0.027891578152776],[0.12411899864674,-0.088393293321133,-0.07822448015213],[0.055199798196554,-0.089144818484783,0.098075464367867]],[[0.031744033098221,0.14156851172447,0.042118910700083],[0.072636350989342,-0.029573546722531,-0.15480594336987],[0.022929657250643,0.17854256927967,0.12183595448732]],[[-0.035248938947916,-0.018033625558019,0.017287559807301],[0.021137926727533,0.078593738377094,-0.00012456644617487],[0.11902754753828,-0.10664378106594,0.14191564917564]],[[0.074290961027145,-0.06343687325716,-0.0676344409585],[0.068147599697113,-0.22121335566044,0.0046649063006043],[0.10782571136951,-0.062596887350082,0.045937243849039]],[[-0.07374120503664,0.0023481578100473,-0.16314625740051],[0.18955351412296,0.050803128629923,0.10033334046602],[-0.0088946400210261,0.086348831653595,-0.025562647730112]],[[0.026182493194938,0.033908102661371,0.051558554172516],[-0.15335707366467,0.078968115150928,-0.031658239662647],[-0.10362711548805,-0.14840559661388,-0.08755774050951]],[[0.049588955938816,-0.073356062173843,0.0075146756134927],[0.02219870314002,-0.077791936695576,0.0258261654526],[-0.13706761598587,0.05143104493618,0.10261772572994]],[[-0.034317065030336,-0.083639912307262,-0.095188297331333],[0.043263636529446,-0.053216982632875,0.024690859019756],[0.0093366820365191,-0.1687808483839,0.015049383044243]],[[-0.054117485880852,-0.090639337897301,-0.051027044653893],[0.091573402285576,0.074540667235851,0.16479729115963],[-0.031202897429466,-0.14813905954361,0.024962181225419]],[[-0.098938979208469,-0.10495457053185,-0.03781520947814],[0.065903700888157,-0.0086161643266678,0.11167666316032],[-0.036093156784773,-0.15089704096317,0.048277199268341]],[[-0.044330701231956,-0.04667304828763,0.011556938290596],[-0.0018465402536094,0.0027701572980732,-0.082073211669922],[0.069993287324905,-0.088087603449821,-0.073504954576492]],[[0.046978835016489,-0.04442672431469,-0.19447208940983],[-0.058478999882936,0.011180686764419,-0.023505376651883],[-0.019765745848417,0.11967284232378,-0.048268832266331]],[[-0.020251099020243,-0.024927988648415,-0.12313461303711],[-0.041249714791775,-0.10439115017653,-0.096440248191357],[0.090042129158974,-0.068371571600437,0.062563195824623]],[[0.0047149546444416,-0.076931744813919,-0.053236708045006],[-0.014274593442678,-0.091753728687763,0.14994539320469],[0.066052280366421,-0.015638144686818,0.010748958215117]],[[0.06314267963171,0.018344519659877,0.11755799502134],[-0.083819761872292,-0.090548649430275,0.010812127031386],[0.073648102581501,-0.093276314437389,-0.00084204517770559]],[[0.078303605318069,-0.082820020616055,-0.12601663172245],[-0.011816754937172,-0.078046716749668,-0.039784383028746],[0.001630078535527,-0.043938688933849,0.032956685870886]],[[-0.023037061095238,-0.037778288125992,-0.012277425266802],[-0.014821365475655,0.10885459184647,0.014990292489529],[0.12510207295418,-0.0016412137774751,-0.080667868256569]],[[0.099839940667152,0.044689562171698,-0.14775536954403],[0.073951631784439,-0.047305814921856,-0.0096679860725999],[0.081223763525486,0.04075214266777,-0.089906193315983]],[[0.029728546738625,0.14272166788578,-0.0018635741434991],[-0.10846871882677,-0.11246990412474,0.0081323618069291],[-0.10899695008993,0.030992919579148,0.069168373942375]],[[0.14273975789547,-0.017981657758355,0.015851823613048],[-0.14792048931122,-0.081444837152958,-0.076137349009514],[-0.050277318805456,0.077919982373714,0.033171556890011]],[[-0.012488280422986,0.030042799189687,0.0020951007027179],[0.0066708964295685,-0.026967488229275,0.0044963918626308],[0.06042842194438,0.15362653136253,0.040493875741959]],[[-0.039460189640522,-0.022076668217778,-0.15255534648895],[0.047416005283594,-0.11396504193544,-0.1219535022974],[0.048903722316027,-0.0082942992448807,-0.092431217432022]],[[0.060059234499931,-0.054557275027037,0.0214215349406],[0.040735095739365,0.07312585413456,0.12958779931068],[-0.010768704116344,-0.13994564116001,-0.032390512526035]],[[0.078965157270432,-0.0026719281449914,0.13885360956192],[0.030272195115685,-0.040068972855806,-0.081998251378536],[0.14094594120979,-0.035577695816755,-0.087662026286125]],[[0.040037605911493,-0.115413621068,0.022821364924312],[-0.058617196977139,-0.016512628644705,-0.1829344779253],[0.0048557622358203,-0.0095299137756228,0.08379090577364]],[[-0.019800610840321,-0.072496868669987,-0.1616869866848],[0.096725523471832,0.047552574425936,-0.055335145443678],[0.038346230983734,0.01305178180337,-0.21963210403919]],[[-0.048265770077705,0.06168645247817,-0.012560440227389],[0.016328206285834,-0.067426554858685,0.0081985807046294],[-0.026970937848091,0.0079981107264757,-0.014982859604061]],[[-0.020375311374664,-0.16693298518658,-0.030120603740215],[0.02241949737072,-0.094220831990242,0.029945019632578],[0.085462264716625,0.070938237011433,-0.0015342993428931]],[[-0.023263489827514,-0.060202576220036,0.0095946425572038],[0.082486271858215,-0.21704207360744,0.095312424004078],[-0.032079070806503,-0.10414082556963,-0.064540885388851]],[[-0.092077404260635,-0.038058061152697,0.075076647102833],[-0.036611411720514,-0.044102773070335,0.014495049603283],[0.039857197552919,0.16642682254314,-0.0092338062822819]],[[-0.12727734446526,-0.0093868179246783,0.16588175296783],[-0.17519146203995,-0.19408191740513,0.033051412552595],[-0.045442502945662,0.10391706228256,0.010031812824309]],[[-0.044606503099203,-0.14398086071014,0.04490952193737],[0.030336650088429,0.081528015434742,0.043428964912891],[-0.10223677754402,-0.067370593547821,-0.10915053635836]],[[-0.06101943552494,-0.05203278362751,-0.071266561746597],[0.0016316422261298,-0.057215921580791,-0.011275112628937],[0.046865858137608,-0.02789163030684,-0.072089128196239]],[[0.032928522676229,-0.05398116260767,-0.046892385929823],[0.14117497205734,-0.033247567713261,-0.14650705456734],[0.074973791837692,-0.095690876245499,0.0063504595309496]],[[0.041384771466255,0.040471985936165,0.038071524351835],[-0.12524472177029,-0.0005229800590314,0.0012475124094635],[-0.021006541326642,-0.022735457867384,-0.02072742395103]],[[-0.15146820247173,-0.14148865640163,-0.069767162203789],[-0.02498234808445,0.22841955721378,-0.045179542154074],[0.090243302285671,-0.086545050144196,0.14243465662003]],[[0.015859512612224,-0.0093068992719054,0.0057529490441084],[0.072743393480778,-0.14789810776711,0.047061923891306],[-0.050960134714842,-0.0044870059937239,0.081449039280415]],[[0.23474062979221,-0.24820560216904,0.12847864627838],[-0.1117926761508,0.030704114586115,-0.027409285306931],[0.11325050890446,-0.011672291904688,0.094536080956459]],[[-0.050616059452295,0.090976521372795,0.066224083304405],[0.001240023644641,-0.049225732684135,-0.11966251581907],[0.14127847552299,-0.014949372038245,-0.052384719252586]],[[-0.011985533870757,0.033551447093487,-0.096824936568737],[-0.11050390452147,0.032631546258926,-0.025092083960772],[0.077986031770706,0.030663682147861,-0.079810820519924]],[[0.011329198256135,-0.014001238159835,-0.064182184636593],[0.051601134240627,0.11580703407526,0.035851188004017],[-0.047173544764519,-0.12382546067238,-0.16947209835052]]],[[[0.010764982551336,-0.0040406067855656,0.025856865569949],[0.045439872890711,-0.10768282413483,-0.0059907673858106],[0.051462262868881,0.029251953586936,-0.064469918608665]],[[-0.010290984064341,0.030671406537294,-0.082940362393856],[0.099856801331043,0.028853517025709,-0.12343609333038],[0.063176929950714,-0.026423407718539,0.12046978622675]],[[-0.046480763703585,-0.036204300820827,-0.11300083249807],[0.052168671041727,0.037372097373009,-0.094898223876953],[0.12363847345114,0.12907865643501,-0.049549020826817]],[[0.034562349319458,0.03602659329772,0.045899908989668],[0.10919251292944,-0.093290835618973,0.14457392692566],[0.029775135219097,-0.046924747526646,-0.20890238881111]],[[0.077266491949558,0.042776592075825,-0.13787683844566],[0.072707004845142,0.031007148325443,0.11529967188835],[0.065079919993877,-0.029005190357566,0.003513480303809]],[[-0.095960326492786,0.10282362252474,-0.15162463486195],[0.11218940466642,-0.0016723665175959,0.18070703744888],[-0.04111235588789,0.0027010096237063,-0.024102911353111]],[[-0.077689349651337,0.060809891670942,0.065400794148445],[-0.12768843770027,-0.051741857081652,0.086190797388554],[0.027213018387556,-0.01214106194675,0.03937778621912]],[[0.023487061262131,0.078133001923561,0.16055248677731],[-0.0085575263947248,9.6642303105909e-05,0.020992945879698],[0.065033033490181,-0.031680412590504,0.043985955417156]],[[-0.019037406891584,-0.0036658877506852,-0.10551059246063],[0.0079951016232371,0.011556214652956,0.039189372211695],[0.006467214319855,0.056190207600594,-0.021748811006546]],[[0.04492025822401,0.057812616229057,0.093946576118469],[0.088009491562843,0.0056779426522553,-0.10687666386366],[-0.019372908398509,-0.063806012272835,-0.11998461186886]],[[0.038913950324059,0.088042199611664,0.01778063364327],[0.072958745062351,-0.079655975103378,-0.036735627800226],[0.04442872479558,0.054765623062849,0.060583405196667]],[[0.033304762095213,0.064039804041386,-0.081574372947216],[-0.033982340246439,-0.14668475091457,-0.019073324277997],[-0.11155645549297,-0.11558704823256,-0.075177974998951]],[[0.018651576712728,0.044126257300377,-0.15386833250523],[-0.043142754584551,0.036286901682615,-0.17367105185986],[0.045778051018715,-0.14904160797596,-0.067361250519753]],[[-0.12713399529457,-0.21600221097469,-0.091784469783306],[0.10676322877407,-0.09481393545866,-0.0017751889536157],[0.10232172906399,-0.066895075142384,0.032910596579313]],[[-0.070401899516582,-0.0079986052587628,-0.051609635353088],[-0.012434456497431,-0.070340044796467,0.047856647521257],[-0.080906480550766,0.041626010090113,-0.13448530435562]],[[0.019962172955275,0.074856095016003,0.042250335216522],[-0.014858925715089,0.085368387401104,-0.10870513319969],[-0.0038901683874428,-0.082143373787403,-0.11079934239388]],[[-0.016001582145691,-0.05072083696723,0.069252707064152],[-0.033378414809704,-0.076206721365452,0.15795522928238],[-0.033138073980808,-0.018144538626075,0.14104603230953]],[[-0.034394934773445,0.059005916118622,0.11303406208754],[0.074964195489883,0.10487980395555,-0.045464299619198],[-0.055529370903969,-0.1449069827795,-0.11523025482893]],[[-0.076192870736122,-0.0082223070785403,0.035583931952715],[0.08669450879097,-0.0013991420855746,-0.067430190742016],[0.099455095827579,-0.030948696658015,-0.050041750073433]],[[0.017940660938621,0.02046151086688,0.017185971140862],[-0.084767445921898,0.13559085130692,0.099020704627037],[-0.041124980896711,0.0065183853730559,0.06914222240448]],[[0.035508517175913,-0.0095036458224058,-0.021571008488536],[0.020693007856607,-0.025654582306743,0.0044104559347034],[0.06706228852272,0.066349320113659,0.0080263251438737]],[[-0.052998282015324,0.050556469708681,0.025525523349643],[0.025040647014976,0.08782060444355,-0.030149368569255],[-0.086879193782806,-0.061239160597324,-0.13979214429855]],[[-0.049714431166649,0.012902274727821,-0.082286223769188],[-0.041150696575642,0.10068062692881,0.13376221060753],[-0.049865510314703,-0.085658982396126,-0.0047276820987463]],[[-0.030153915286064,0.022805646061897,0.027076883241534],[0.095990657806396,-0.034630663692951,0.10661511868238],[-0.20594957470894,0.0017458640504628,-0.11379577219486]],[[0.058078352361917,0.035010997205973,0.19148181378841],[0.043099585920572,-0.0792431011796,0.053403414785862],[-0.043076563626528,-0.060693111270666,0.029746294021606]],[[-0.070069149136543,0.025486916303635,0.076130270957947],[-0.053947802633047,-0.015689732506871,0.022931905463338],[-0.070924006402493,0.054442465305328,0.050470028072596]],[[0.024698782712221,0.036320611834526,0.0028178859502077],[0.091731898486614,0.048376899212599,-0.079387210309505],[-0.074294105172157,-0.13376401364803,-0.005908970721066]],[[-0.014466720633209,-0.095282554626465,-0.06975482404232],[-0.071578629314899,-0.037206869572401,-0.078821554780006],[0.10108228027821,0.069500125944614,-0.0019852030090988]],[[0.1649491339922,-0.1690414249897,-0.03054966032505],[0.057318434119225,-0.014324401505291,-0.075628519058228],[0.053680643439293,0.030305959284306,0.12728376686573]],[[0.23243193328381,0.034429624676704,0.10734196007252],[-0.014414166100323,-0.059649370610714,0.078974224627018],[-0.088937468826771,-0.12816826999187,-0.069595783948898]],[[-0.015859926119447,-0.096026413142681,0.017516469582915],[-0.13706082105637,-0.0020771336276084,0.055870968848467],[-0.10017770528793,0.059045236557722,0.060509994626045]],[[0.089054435491562,0.14650656282902,0.033773012459278],[0.060194049030542,0.093051321804523,-0.090049646794796],[-0.0035332485567778,-0.17620883882046,0.042237047106028]],[[-0.064020611345768,-0.089673556387424,-0.11423943191767],[-0.080222941935062,-0.022854113951325,-0.0030717763584107],[0.066797524690628,0.060864355415106,0.017625413835049]],[[-0.063345924019814,-0.059910472482443,0.032941520214081],[-0.015841057524085,-0.057595822960138,0.073625206947327],[-0.040971364825964,-0.023796461522579,0.01039210986346]],[[0.039991244673729,-0.024076582863927,-0.028994217514992],[0.11339900642633,0.0092336814850569,0.14191082119942],[0.007239846047014,-0.086803898215294,-0.04664234817028]],[[-0.049780890345573,-0.025864956900477,-0.02241076529026],[0.091025233268738,-0.047311395406723,-0.056267615407705],[-0.10988458245993,-0.085909619927406,-0.062986068427563]],[[0.10965441167355,0.0071362024173141,0.0596878901124],[-0.031860779970884,0.10732468217611,-0.12576416134834],[-0.015324765816331,-0.0064779068343341,-0.13023206591606]],[[-0.060211852192879,-0.13677079975605,-0.10928301513195],[-0.1163057461381,0.037575140595436,0.15367715060711],[0.02039822936058,0.055174216628075,0.15782931447029]],[[-0.010183345526457,0.038348432630301,-0.08301717787981],[-0.082903765141964,0.0096402578055859,-0.028529299423099],[-0.0098059959709644,0.086179129779339,0.025765601545572]],[[0.058963660150766,0.083388842642307,-0.023992309346795],[0.031096806749701,0.0087986625730991,-0.04053070768714],[0.037344545125961,0.035663206130266,-0.045087363570929]],[[0.030006624758244,0.016194125637412,-0.00019012042321265],[-0.0093626761808991,0.032046880573034,-0.13344125449657],[0.030267912894487,-0.076427914202213,-0.065567597746849]],[[0.073807068169117,0.1534523665905,0.0778943374753],[-0.012070833705366,0.012554557994008,-0.084592230618],[-0.086015813052654,0.0084212413057685,0.14977644383907]],[[-0.036115664988756,-0.059132881462574,-0.015093818306923],[0.072007715702057,0.026206251233816,0.062359072268009],[-0.041170321404934,-0.045006569474936,-0.037514787167311]],[[-0.05976028740406,-0.12094141542912,0.15749409794807],[-0.044193085283041,0.02174125239253,0.0072149205952883],[0.0047352742403746,-0.027239648625255,-0.026950750499964]],[[0.062652304768562,-0.0046896883286536,-0.028716497123241],[-0.035302486270666,-0.090234450995922,-0.09523382037878],[-0.085809238255024,-0.075334303081036,-0.06491632014513]],[[0.042441509664059,0.038436532020569,-0.051565065979958],[-0.13355493545532,-0.046623170375824,-0.098874963819981],[-0.070297494530678,-0.0011945840669796,0.064347431063652]],[[0.091161884367466,0.17956666648388,0.029790701344609],[0.13999207317829,-0.0022959825582802,-0.0014025169657543],[-0.056076947599649,-0.099582754075527,-0.094674982130527]],[[0.14408645033836,0.005355236120522,-0.094269253313541],[0.057080682367086,-0.035216689109802,0.045796468853951],[0.009973781183362,0.012107565067708,0.025336066260934]],[[0.12762659788132,-0.045566499233246,-0.086415499448776],[0.038064226508141,-0.16578078269958,-0.15610252320766],[0.037896454334259,-0.037647824734449,0.066816560924053]],[[-0.042902555316687,0.087612099945545,0.013727572746575],[0.006819162517786,0.046444550156593,-0.015400731004775],[-0.049471497535706,0.0025416035205126,-0.041948292404413]],[[-0.087438158690929,-0.027727177366614,-0.075911112129688],[-0.007988098077476,0.050058629363775,-0.011528706178069],[-0.14608424901962,-0.047218360006809,-0.1137705668807]],[[0.035313632339239,-0.089826844632626,-0.15225552022457],[-0.070168219506741,0.11090281605721,-0.00072277529397979],[-0.080423146486282,0.06142233684659,-0.088704437017441]],[[-0.077640138566494,-0.17793487012386,-0.075434327125549],[0.17475634813309,-0.0068109198473394,0.11101055890322],[0.10961160063744,0.090003408491611,0.15510527789593]],[[-0.10826893150806,-0.027291653677821,-0.20775765180588],[-0.064620137214661,-0.059036754071712,0.075958907604218],[-0.056887030601501,-0.05071859806776,0.1258153617382]],[[-0.11734387278557,-0.083959206938744,0.028078690171242],[-0.057596370577812,-0.11042563617229,-0.047574147582054],[-0.092432349920273,-0.039086904376745,-0.01073470339179]],[[0.028033036738634,-0.059079177677631,0.060357987880707],[0.13192531466484,-0.058573354035616,0.054631784558296],[-0.069353766739368,0.008794354274869,0.02434216812253]],[[0.044239047914743,0.1376675516367,0.068311251699924],[0.034313097596169,0.020044213160872,-0.10480724275112],[-0.045919056981802,0.020537909120321,0.18784609436989]],[[0.01904390566051,0.0080859633162618,-0.069561548531055],[0.03459146246314,0.029243836179376,-0.045694775879383],[-0.012067358009517,-0.11934888362885,-0.28522565960884]],[[0.044876456260681,0.016378974542022,0.044385440647602],[0.033276792615652,0.0058158058673143,-0.040926247835159],[0.031845804303885,0.055838316679001,-0.0068191955797374]],[[0.0063161216676235,0.080991968512535,0.056908003985882],[0.035403568297625,0.07286910712719,0.14562691748142],[-0.031746286898851,-0.026459161192179,-0.053852211683989]],[[-0.017870603129268,-0.014404905028641,0.15492448210716],[-0.19199320673943,-0.16407881677151,-0.083961874246597],[0.077486954629421,-0.208525583148,-0.026305627077818]],[[0.011453765444458,-0.12191352248192,-0.11953961104155],[-0.10897086560726,-0.018851270899177,0.103924036026],[0.033209625631571,-0.13406467437744,-0.016480972990394]],[[0.036778170615435,0.061325911432505,0.11552876234055],[0.010228352621198,0.025311190634966,0.0658895149827],[-0.17276251316071,0.027034206315875,0.016242559999228]],[[-0.092563159763813,-0.081246562302113,-0.089360602200031],[-0.26151746511459,-0.19981448352337,0.030020259320736],[-0.0044315583072603,0.00047342345351353,0.27637767791748]]],[[[0.041781041771173,-0.028044840320945,-0.093408159911633],[0.16599623858929,0.064258366823196,-0.044574193656445],[-0.069673158228397,0.047926485538483,-0.0096725979819894]],[[0.092631638050079,-0.09017600864172,-0.095386326313019],[0.046874403953552,0.11377816647291,-0.13325093686581],[-0.0046217641793191,0.034991543740034,-0.021401261910796]],[[-0.028549341484904,0.018423264846206,-0.10831265896559],[-0.0034197217319161,-0.11390374600887,-0.0079659540206194],[-0.010515265166759,0.025841014459729,0.051953561604023]],[[0.067877061665058,0.046858664602041,0.031508736312389],[-0.05963184684515,-0.045927777886391,0.045650251209736],[-0.059173028916121,0.035636808723211,0.096441969275475]],[[-0.071943655610085,0.039271041750908,0.10100934654474],[0.0303670540452,-0.014683639630675,0.053321324288845],[-0.055017568171024,0.033439040184021,-0.10786994546652]],[[0.057169195264578,0.013949920423329,-0.058334212750196],[0.011677373200655,0.081694915890694,0.070847041904926],[-0.079607918858528,-0.016274964436889,0.035331033170223]],[[-0.027506558224559,-0.18356066942215,0.021293267607689],[0.043213158845901,-0.090419270098209,0.0075119636021554],[-0.14752358198166,-0.21409912407398,-0.0091879162937403]],[[0.094855070114136,-0.0015643361257389,-0.029057495296001],[0.027433382347226,-0.058292862027884,-0.020209325477481],[-0.097987502813339,-0.18286547064781,0.053350705653429]],[[0.073923647403717,0.017584418877959,0.0319864153862],[-0.0028866159263998,-0.031708329916,-0.054547231644392],[0.015104407444596,-0.076869077980518,0.0028361924923956]],[[0.0082004917785525,-0.10619020462036,-0.039115704596043],[-0.048745267093182,0.14558179676533,-0.0023078650701791],[-0.065877728164196,0.089330986142159,0.036676041781902]],[[-0.083116784691811,0.030454490333796,0.0020916019566357],[-0.00075235054828227,0.014441726729274,0.025015680119395],[0.075657479465008,-0.042710911482573,0.012496238574386]],[[-0.033597435802221,-0.10031049698591,-0.037161737680435],[-0.047579426318407,-0.06040047109127,-0.13660205900669],[-0.04888154938817,-0.017912071198225,-0.052384316921234]],[[-0.12726984918118,-0.043049167841673,-0.11630415916443],[-0.033461146056652,-0.035111796110868,-0.056538108736277],[-0.030320575460792,0.060984719544649,0.029082493856549]],[[-0.060295060276985,-0.015768745914102,0.049123447388411],[-0.054762396961451,-0.040763322263956,0.018852697685361],[0.039380978792906,0.15159071981907,-0.029570346698165]],[[-0.031744744628668,-0.041507940739393,-0.026941834017634],[0.013302794657648,0.053669732064009,-0.057432591915131],[-0.077084816992283,-0.041558519005775,0.082299828529358]],[[-0.057061225175858,0.13694614171982,0.19251751899719],[0.04516937956214,0.018686465919018,0.089028052985668],[-0.021564174443483,-0.080069877207279,-0.13747178018093]],[[-0.075100362300873,0.069109171628952,-0.015009696595371],[-0.2294080555439,-0.0396773442626,-0.039024379104376],[-0.071659319102764,0.0022827640641481,-0.018822344020009]],[[0.039315648376942,0.0049957786686718,0.04571396484971],[-0.0089988047257066,-0.029712818562984,-0.042256034910679],[-0.051087196916342,-0.08876695483923,0.011763343587518]],[[0.10517528653145,0.018790667876601,-0.05022007599473],[0.076134778559208,0.046014774590731,-0.027607528492808],[0.23220872879028,0.10792535543442,-0.028529061004519]],[[0.05065942928195,-0.044143356382847,-0.037454940378666],[0.085015885531902,0.0059579550288618,-0.0036264185328037],[-0.073985494673252,-0.049814458936453,0.024581013247371]],[[0.061982158571482,-0.027648186311126,-0.083806268870831],[0.020496675744653,0.14509677886963,-0.052498403936625],[0.061660371720791,-0.055609408766031,0.0092168394476175]],[[-0.066762939095497,-0.14382588863373,-0.026272563263774],[0.037736676633358,-0.065271139144897,-0.024953572079539],[0.05260668322444,-0.056867893785238,-0.069483064115047]],[[-0.066403143107891,-0.13995432853699,-0.0091740880161524],[0.00024918187409639,0.076522774994373,0.099693730473518],[0.070135787129402,-0.0043328376486897,0.093654237687588]],[[-0.1323057115078,-0.010596616193652,-0.079707376658916],[-0.02937488630414,0.10565099865198,-0.025458484888077],[0.12333615124226,0.05739988386631,0.055930089205503]],[[-0.0009843873558566,-0.091441303491592,0.024262623861432],[-0.023790434002876,-0.010391969233751,-0.051694042980671],[-0.047741957008839,-0.081698372960091,0.026789791882038]],[[-0.22207672894001,0.052565537393093,0.060764364898205],[-0.10077887028456,-0.089584976434708,0.021420048549771],[0.066704295575619,-0.10379368811846,-0.014819974079728]],[[-0.041560176759958,-0.062790080904961,-0.11471398919821],[0.00290546589531,0.084910437464714,0.1672889739275],[-0.20581689476967,0.082535669207573,0.12407150864601]],[[-0.25959435105324,0.031035993248224,0.14822934567928],[-0.0070138522423804,-0.07806871086359,-0.013969785533845],[0.091588884592056,-0.12427212297916,0.044191248714924]],[[-0.046768523752689,-0.0013973953900859,0.11827509850264],[0.037216566503048,-0.049272961914539,0.075237654149532],[0.12434330582619,0.06825840473175,0.027441628277302]],[[-0.075406536459923,-0.2420137822628,-0.17421700060368],[0.038560178130865,0.065468467772007,0.055242545902729],[0.067118704319,0.16403576731682,0.14829638600349]],[[0.05229863524437,0.067211233079433,-0.023107001557946],[-0.035956636071205,0.089745797216892,-0.1500840485096],[0.042982082813978,0.082992240786552,-0.14840160310268]],[[-0.032913941890001,-0.030915660783648,0.061425272375345],[-0.03898847848177,0.040059238672256,0.082465700805187],[-0.0049386844038963,0.22552727162838,0.039938159286976]],[[-0.0082552256062627,-0.052632641047239,0.086081363260746],[-0.041929885745049,0.041901562362909,0.082633092999458],[4.7681765863672e-05,0.053279101848602,0.0035858869086951]],[[0.0054588615894318,-0.062743648886681,0.038322612643242],[0.058612488210201,-0.039001788944006,-0.043386176228523],[0.030412599444389,-0.010466948151588,0.036891058087349]],[[0.05779967084527,0.031614769250154,0.10262560099363],[-0.016751956194639,-0.048559617251158,-0.079531572759151],[0.064981795847416,-0.0029536925721914,-0.020915077999234]],[[0.0912119820714,0.040463872253895,-0.030585283413529],[-0.069217398762703,-0.058167245239019,0.0045884614810348],[-0.069984257221222,0.07900196313858,0.03184425085783]],[[0.04150801897049,0.094696335494518,-0.0092415940016508],[-0.035908967256546,0.017038971185684,0.070431873202324],[-0.068344786763191,0.031279399991035,0.042730648070574]],[[-0.029081659391522,0.10315430164337,0.084545083343983],[-0.011155899614096,-0.010677359998226,0.04276555404067],[-0.031133780255914,-0.01098445802927,0.093585610389709]],[[0.012821069918573,0.0069070355966687,-0.013041405938566],[-0.10106448084116,-0.034831132739782,-0.055286694318056],[-0.14426666498184,-0.092317968606949,0.039734844118357]],[[0.02103079110384,0.035882752388716,0.13314719498158],[-0.12904024124146,0.051513906568289,0.093481034040451],[-0.15682280063629,-0.094327591359615,-0.0097041493281722]],[[0.043201573193073,0.037286762148142,0.037700161337852],[0.022108592092991,-0.11243484914303,0.014154787175357],[0.016483867540956,-0.12020117789507,-0.040427781641483]],[[0.012673200108111,-0.11712821573019,0.018726574257016],[-0.16639091074467,0.024817025288939,0.02824212051928],[0.018525823950768,0.099157691001892,0.093646742403507]],[[-0.18059729039669,0.055441752076149,0.008875597268343],[0.00073085381882265,-0.029021803289652,0.0071500348858535],[0.12915863096714,-0.015338928438723,-0.14363315701485]],[[-0.087483130395412,-0.12516222894192,-0.051328003406525],[0.15818963944912,-0.014177542179823,0.006835097912699],[-0.033883407711983,0.066235423088074,0.047499515116215]],[[-0.10762833803892,-0.033123772591352,-0.044530287384987],[-0.034215088933706,-0.13235132396221,-0.015631387010217],[-0.19918617606163,0.027145551517606,-0.02896873652935]],[[0.042840529233217,-0.063081622123718,-0.14655938744545],[0.03174764290452,-0.014645277522504,-0.063070386648178],[-0.059082295745611,-0.020470505580306,-0.0533517152071]],[[-0.089109867811203,-0.072623044252396,-0.037710946053267],[-0.087859712541103,0.037406656891108,0.036728970706463],[-0.059247460216284,0.14707182347775,0.081826284527779]],[[0.0089248148724437,-0.013090463355184,0.1670927554369],[-0.1249392926693,-0.10248310118914,-0.010851996019483],[-0.095694348216057,-0.01974374614656,0.087668843567371]],[[-0.067797876894474,-0.010648465715349,-0.13680924475193],[-0.005018328782171,-0.034055463969707,-0.11327643692493],[-0.07573264092207,0.036387529224157,6.9976282247808e-05]],[[-0.072080433368683,-0.03653671219945,-0.035154826939106],[-0.015510731376708,0.09204038977623,0.010646177455783],[-0.031163202598691,0.068679802119732,0.0065620881505311]],[[0.0095099303871393,0.0018187575042248,0.040811330080032],[0.01741293258965,-0.10258578509092,0.080866649746895],[-0.13709478080273,0.085208930075169,-0.0017981282435358]],[[-0.075043238699436,0.041613973677158,-0.057620644569397],[-0.016942670568824,0.02638485096395,0.064952842891216],[-0.067927069962025,0.098266586661339,0.09266085922718]],[[0.088200025260448,-0.018340395763516,-0.099948592483997],[0.16060157120228,0.083861753344536,-0.036065366119146],[0.077774628996849,0.074690252542496,-0.15195314586163]],[[0.093897238373756,0.018992688506842,0.031935252249241],[0.079147480428219,0.23633873462677,0.11843743175268],[-0.11618472635746,-0.058609556406736,0.031376380473375]],[[-0.10857059061527,-0.020021064206958,0.08493572473526],[0.092335321009159,0.043923690915108,0.036004479974508],[-0.049513831734657,0.026712590828538,-0.052161775529385]],[[0.039087899029255,0.15755906701088,0.025302922353148],[0.14530748128891,-0.068164363503456,0.022831790149212],[-0.0068741515278816,-0.086285158991814,0.019350102171302]],[[-0.142891690135,-0.057795770466328,0.010612600483],[-0.064414158463478,-0.075032152235508,-0.075955025851727],[0.053950533270836,-0.03234389051795,-0.041154496371746]],[[-0.0094588836655021,-0.076081097126007,-0.13197085261345],[-0.027971770614386,-0.098812319338322,-0.012041299603879],[-0.016265757381916,-0.03092885017395,0.093265727162361]],[[0.1026708111167,0.0016272163484246,0.03061667829752],[0.023718254640698,-0.08264672011137,0.018258277326822],[0.11090798676014,0.079842939972878,0.069475807249546]],[[0.1324120759964,-0.01866577193141,-0.047388359904289],[0.0010439999168739,0.029608625918627,-0.0005685591022484],[0.055037781596184,0.052167259156704,0.067257739603519]],[[-0.1113844960928,-0.0031525436788797,-0.0038842491339892],[0.063842676579952,-0.0046100202016532,-0.029584081843495],[0.032114908099174,0.0085470322519541,0.20345252752304]],[[-0.17272354662418,-0.004089969675988,-0.14170467853546],[0.12710465490818,-0.031743429601192,-0.050798106938601],[0.13034963607788,0.015570481307805,-0.053204238414764]],[[-0.24639162421227,-0.14354349672794,-0.035902246832848],[-0.093033730983734,-0.13056108355522,0.11616396903992],[-0.11538258194923,-0.11393262445927,0.055254768580198]],[[0.069471791386604,0.05730114877224,0.056279767304659],[0.027069171890616,-0.046454723924398,-0.068371295928955],[-0.10202101618052,-0.030255002900958,-0.10901045054197]]],[[[-0.10575845837593,-0.12569758296013,-0.068045236170292],[-0.018948817625642,-0.068304941058159,0.04600490257144],[-0.07026395201683,-0.052815284579992,0.0072513092309237]],[[-0.027809325605631,0.065436854958534,0.033823039382696],[-0.055123042315245,0.015117241069674,-0.092764779925346],[0.031145190820098,0.022563192993402,0.055118657648563]],[[0.039306003600359,0.13739931583405,0.021756086498499],[-0.017104299739003,-0.050864063203335,0.090339630842209],[-0.047414273023605,-0.041340336203575,-0.015493473038077]],[[0.01880512945354,0.055549480021,-0.10859231650829],[0.026527563109994,0.052385255694389,-0.071640357375145],[0.028756663203239,-0.053309570997953,-0.083109870553017]],[[0.063588134944439,0.046227306127548,0.05446369946003],[0.023955540731549,0.013212010264397,0.041623283177614],[0.0052066808566451,0.0064289504662156,0.022135412320495]],[[-0.015783520415425,-0.0038197089452296,0.062954925000668],[0.097277790307999,0.040406066924334,-0.036311741918325],[-0.081495068967342,0.030273910611868,-0.10007425397635]],[[0.00014569328050129,0.040609836578369,-0.092279098927975],[0.043377418071032,0.035599954426289,0.022930599749088],[-0.042580936104059,0.0055390973575413,0.0025664651766419]],[[-0.047391731292009,-0.065393194556236,-0.0012809835607186],[0.0016195357311517,0.038235533982515,-0.026586188003421],[-0.051656913012266,-0.043628141283989,0.05957218632102]],[[-0.064098015427589,0.022077906876802,0.033080074936152],[-0.074556611478329,0.022811688482761,0.11366984248161],[-0.06934767216444,-0.051323302090168,0.051943432539701]],[[-0.075518362224102,-0.061279900372028,-0.09387831389904],[-0.06037126109004,0.0098121389746666,0.0031081694178283],[-0.10280615091324,-0.081449165940285,-0.079902775585651]],[[0.0016551713924855,0.091343782842159,-0.013364868238568],[-0.0063511035405099,-0.005505736451596,0.033952545374632],[0.037666324526072,-0.003816545708105,-0.0052726292051375]],[[0.070730403065681,0.08810768276453,-0.11017744243145],[0.052134122699499,-0.072413012385368,0.026448240503669],[0.043502032756805,0.041596710681915,0.01326341368258]],[[-0.11266054213047,0.04598393663764,0.081405259668827],[0.15210361778736,-0.11594646424055,0.083433493971825],[-0.06073160097003,0.066033340990543,-0.12323141843081]],[[0.019674127921462,-0.026953069493175,0.046382833272219],[-0.066772654652596,0.018586903810501,-0.024234099313617],[0.013292971998453,-0.01495438721031,-0.079469323158264]],[[0.076462090015411,0.089771665632725,-0.022262049838901],[0.089885033667088,0.074978314340115,-0.077298320829868],[0.050920747220516,0.044107716530561,-0.094383180141449]],[[-0.031833339482546,-0.089170821011066,0.067917831242085],[-0.05752769857645,0.003214874304831,-0.013502187095582],[-0.10921945422888,-0.098609499633312,0.063747480511665]],[[0.11721989512444,0.11599771678448,-0.016367001459002],[0.0063749691471457,0.030998373404145,-0.029212802648544],[0.04422951489687,0.090881772339344,0.00933738052845]],[[0.0066617643460631,-0.059989307075739,0.037566419690847],[0.032288894057274,-0.18801186978817,0.013982514850795],[-0.019982812926173,0.058973323553801,-0.15127521753311]],[[0.019415216520429,-0.052951022982597,0.026797477155924],[-0.093889646232128,-0.17576070129871,0.029390383511782],[0.056305602192879,-0.21688485145569,0.025371490046382]],[[0.026807444170117,0.012498641386628,-0.00083194085163996],[-0.015720246359706,0.0041189910843968,-0.023217063397169],[-0.059382572770119,0.037142507731915,0.037721283733845]],[[0.029081216081977,0.0073338760994375,-0.029178777709603],[0.075571924448013,-0.0012537906877697,0.048064783215523],[0.010462612845004,-0.050023049116135,-0.03296747803688]],[[-0.057683639228344,-0.0046097245067358,-0.087832443416119],[-0.071520797908306,-0.14635823667049,-0.057833835482597],[-0.0030592530965805,-0.081118158996105,-0.010368756018579]],[[-0.03716803714633,-0.059711944311857,-0.092753268778324],[0.060388382524252,-0.0074285627342761,-0.0008503309218213],[0.028301022946835,-0.026615936309099,-0.076153568923473]],[[-0.11562436819077,-0.03415397182107,-0.0098384479060769],[-0.018964815884829,-0.0087986728176475,0.03983610868454],[-0.096691764891148,-0.061421800404787,-0.10918261110783]],[[0.081497490406036,0.044489845633507,0.022322501987219],[-0.072060957551003,-0.032149501144886,-0.028089206665754],[0.069811791181564,0.1836956590414,0.080118656158447]],[[-0.092317268252373,-0.16072256863117,-0.03042284026742],[0.0052194949239492,-0.21953628957272,0.089423343539238],[-0.0536721162498,-0.20006659626961,0.10144746303558]],[[-0.039660200476646,-0.011587057262659,-0.058457858860493],[0.028266537934542,0.094902217388153,-0.0011215029517189],[-0.12485817074776,0.0021842569112778,-0.097073525190353]],[[-0.11835027486086,-0.043040085583925,0.038959663361311],[-0.039071872830391,0.080648332834244,-0.033378079533577],[0.025453601032495,-0.10626189410686,0.013999369926751]],[[0.10703011602163,0.018430054187775,0.15645611286163],[-0.0014650535304099,0.017736779525876,0.017893197014928],[-0.010887313634157,-0.063027709722519,-0.057926721870899]],[[-0.018426217138767,-0.074384436011314,0.010333266109228],[-0.013754728250206,-0.02117863483727,-0.12893402576447],[-0.13579140603542,-0.015636177733541,-0.18856690824032]],[[-0.098185680806637,-0.047557696700096,-0.058971583843231],[0.051878672093153,0.014166351407766,-0.033906236290932],[1.2765412975568e-05,0.054832316935062,0.036322765052319]],[[0.031725477427244,-0.068629637360573,-0.038058418780565],[-0.027944328263402,0.020665185526013,0.012621186673641],[0.10284696519375,0.0205017644912,-0.076234214007854]],[[-0.017115492373705,0.095377169549465,0.028285939246416],[-0.15524744987488,-0.035090710967779,0.083668291568756],[-0.01405328232795,-0.069165155291557,0.007361426949501]],[[-0.02269284799695,0.0024426428135484,-0.035531681030989],[-0.015458898618817,-0.086188808083534,-0.085896104574203],[-0.012893447652459,0.040816862136126,0.12604680657387]],[[-0.046833723783493,-0.037534527480602,-0.066534593701363],[-0.03361002728343,-0.067135013639927,0.0058364593423903],[0.010587682947516,-0.12212514132261,0.055091146379709]],[[0.017471147701144,-0.0098365657031536,0.12292741984129],[0.069302089512348,0.11525071412325,0.069160386919975],[-0.14347392320633,0.051461771130562,-0.037572558969259]],[[0.053788855671883,-0.10213078558445,0.016734657809138],[0.034269005060196,-0.11073711514473,-0.12268816679716],[0.031077058985829,0.054894786328077,0.10689808428288]],[[0.15876603126526,0.02032052539289,-0.029664350673556],[-0.068229585886002,-0.022291783243418,-0.020635612308979],[-0.14171972870827,0.06252047419548,0.065378196537495]],[[0.0029945548158139,-0.052918557077646,0.0065543306991458],[0.058655723929405,-0.085140474140644,0.0022377790883183],[-0.026359850540757,-0.030135251581669,-0.0052788532339036]],[[-0.07460705190897,-0.043261993676424,0.0059489370323718],[0.00082398328231648,-0.016371451318264,-0.11496114730835],[0.018209058791399,-0.004172220826149,-0.040714044123888]],[[-0.0083795255050063,-0.061820931732655,0.090699009597301],[-0.0079529555514455,0.14960123598576,-0.071209095418453],[0.0100621515885,0.10343228280544,0.034358248114586]],[[0.030550638213754,0.012801418080926,0.005532625131309],[0.081684999167919,1.3252756616566e-05,-0.075978711247444],[0.071123883128166,-0.15072974562645,-0.088460229337215]],[[0.1007709056139,0.06851402670145,-0.058032404631376],[-0.037638504058123,-7.7615513873752e-05,0.023209348320961],[0.051400620490313,-0.029823197051883,0.048119250684977]],[[0.067678585648537,0.078754931688309,-0.024849796667695],[0.037384428083897,-0.034239932894707,-0.025655657052994],[-0.015743412077427,0.011821216903627,-0.00032058433862403]],[[0.096156507730484,-0.067358776926994,0.12730759382248],[0.129051476717,-0.22916981577873,0.012077120132744],[0.011852487921715,0.010213216766715,-0.0014464600244537]],[[0.027528481557965,-0.08338251709938,0.14375533163548],[0.11115581542253,0.068428680300713,-0.031017327681184],[0.066305041313171,0.021627927199006,1.8903599993791e-05]],[[0.13019089400768,0.17047394812107,0.038938786834478],[0.03953205421567,0.01865990832448,0.01414377335459],[-0.030279034748673,-0.025264162570238,-0.040798913687468]],[[0.070727713406086,0.0024806580040604,-0.080709978938103],[0.014036118984222,0.0078556826338172,-0.041492205113173],[0.028070617467165,0.0042122672311962,0.058278001844883]],[[0.0074951304122806,0.063230082392693,0.06572961807251],[-0.065337926149368,-0.055495481938124,0.036443743854761],[-0.0048661902546883,-0.068257376551628,0.059079669415951]],[[0.076333947479725,-0.014458756893873,-0.083542332053185],[0.066483840346336,-0.037149298936129,-0.13800121843815],[0.098404362797737,0.040342289954424,-0.086208179593086]],[[0.074639357626438,-0.025362925603986,0.052860379219055],[0.072642229497433,0.0093271844089031,-0.086495496332645],[0.034327816218138,-0.052882552146912,-0.086314082145691]],[[-0.010490229353309,-0.087626181542873,-0.049346417188644],[-0.027795488014817,0.010662330314517,-0.017465468496084],[-0.0077409725636244,-0.022217448800802,-0.10295162349939]],[[-0.11134863644838,-0.0016358952270821,0.022164108231664],[-0.15971681475639,0.084828659892082,-6.3377527112607e-05],[-0.073138102889061,0.006395636126399,0.014189324341714]],[[-0.11058202385902,-0.034688021987677,0.029841503128409],[0.087510377168655,-0.013198332861066,0.083420872688293],[-0.018038691952825,0.067586243152618,0.092735424637794]],[[0.02996239438653,-0.1239757090807,0.0044179214164615],[0.064876392483711,-0.018901530653238,0.036287982016802],[0.025584140792489,0.12762677669525,0.049081116914749]],[[-0.010111869312823,-0.007705245167017,0.067366607487202],[0.02926985733211,-0.027422858402133,-0.039909146726131],[-0.046076308935881,0.070497177541256,-0.084363542497158]],[[0.043450273573399,-0.023533329367638,-0.071863315999508],[-0.022174052894115,0.049744926393032,-0.063157111406326],[0.038647949695587,-0.032784681767225,-0.059917781502008]],[[0.0082354424521327,0.018863443285227,-0.026336727663875],[-0.067305035889149,-0.043258048593998,-0.054623868316412],[0.075954221189022,-0.10367837548256,-0.011883958242834]],[[-0.0020378767512739,0.0068172067403793,-0.24209426343441],[0.029674276709557,-0.037385426461697,-0.07137418538332],[0.061284966766834,0.096338860690594,-0.13085347414017]],[[-0.074137516319752,8.567967597628e-05,-0.052064556628466],[-0.089626207947731,-0.065318904817104,0.011399785988033],[0.043759576976299,0.0039089797064662,0.034528899937868]],[[-0.020633330568671,-0.027869872748852,0.05245628580451],[0.040298998355865,0.018718535080552,-0.0077657932415605],[-0.0072107124142349,0.0030341255478561,-0.0090605597943068]],[[-0.035496387630701,0.12167693674564,0.036491792649031],[0.025551971048117,-0.021578159183264,-0.036042600870132],[-0.021629622206092,-0.057503759860992,-0.058562118560076]],[[-0.062119774520397,0.01486917026341,-0.056497249752283],[0.10283867269754,-0.031315229833126,-0.0098194535821676],[0.016364678740501,-0.015626484528184,-0.086388684809208]],[[-0.0012529230443761,0.050164826214314,-0.022810595110059],[0.0059949224814773,0.074452951550484,0.0029767530504614],[0.068972498178482,0.097794100642204,-0.023465733975172]]],[[[-0.096479646861553,0.0943443775177,0.14128735661507],[-0.12026432901621,-0.042140871286392,-0.059694152325392],[-0.07574787735939,0.15580469369888,-0.075717777013779]],[[0.0671771094203,0.061803452670574,-0.14325454831123],[0.056865561753511,-0.21932661533356,-0.10793700814247],[-0.077955082058907,0.042580414563417,0.16863325238228]],[[-0.047142826020718,0.047471050173044,0.021858474239707],[0.041796907782555,0.0078562162816525,0.048812605440617],[-0.083382613956928,-0.16555148363113,-0.018161505460739]],[[-0.00093424366787076,-0.03526346385479,-0.050956044346094],[0.10819871723652,0.10193742066622,-0.0094926469027996],[0.023401761427522,-0.056423608213663,-0.16963674128056]],[[0.04234154522419,-0.048053245991468,-0.022413739934564],[0.0071739908307791,-0.1221829354763,0.0051768058910966],[-0.11498226970434,-0.15404622256756,-0.089939177036285]],[[-0.008525880984962,0.014158618636429,0.043066065758467],[-0.058884788304567,0.17620326578617,0.17640347778797],[-0.060812927782536,-0.011409683153033,-0.039971999824047]],[[-0.074934586882591,0.021048456430435,0.012161273509264],[0.0046694031916559,0.013292142190039,0.061719536781311],[0.053152807056904,0.18264937400818,-0.059729620814323]],[[0.089170463383198,0.0067517179995775,-0.015102691948414],[0.086230300366879,0.042092047631741,0.10680574178696],[-0.14224483072758,-0.047595046460629,0.090929731726646]],[[0.022973489016294,0.0025675459764898,0.030858555808663],[-0.038144707679749,-0.073832996189594,-0.0035110781900585],[-0.073094740509987,0.062618024647236,0.041042890399694]],[[-0.025845818221569,-0.011893884278834,-0.0022042717318982],[0.044457718729973,-0.072630919516087,-0.052862018346786],[0.027300084009767,-0.23855173587799,-0.050332643091679]],[[0.11453285068274,-0.011339982040226,0.20605076849461],[-0.17293255031109,-0.057503260672092,-0.02369430847466],[0.041316140443087,-0.076660692691803,0.19951431453228]],[[0.060508340597153,-0.15149027109146,-0.0026397407054901],[-0.055803503841162,0.018805222585797,0.074364423751831],[-0.060427282005548,0.027418546378613,-0.073998466134071]],[[-0.18547968566418,-0.065214142203331,-0.21231956779957],[0.046480994671583,0.017719076946378,-0.0064543480984867],[0.02714260853827,0.01078235078603,-0.067693628370762]],[[-0.016039233654737,0.052585497498512,-0.06237930431962],[0.071535356342793,-0.045981500297785,-0.0033770229201764],[0.0028783727902919,0.19228844344616,0.012267458252609]],[[0.0038962832186371,-0.17337860167027,-0.038586594164371],[0.14734862744808,0.084230527281761,0.086368001997471],[0.0073444596491754,-0.1558011174202,-0.056024480611086]],[[0.28440469503403,-0.31927508115768,0.029331788420677],[-0.2062736749649,-0.10612200945616,-0.028341500088573],[0.049351371824741,-0.11768203228712,0.18900680541992]],[[-0.17502789199352,-0.069328725337982,-0.039181001484394],[0.05449378862977,0.077639482915401,0.014127909205854],[-0.093699418008327,0.014829114079475,0.0090733012184501]],[[-0.02653862349689,-0.05480719357729,0.085379779338837],[0.018883412703872,-0.13822059333324,0.039310541003942],[-0.095007881522179,-0.026479281485081,0.039036899805069]],[[-0.0069331070408225,0.11139720678329,-0.13319547474384],[0.11443039774895,-0.055050030350685,0.026662025600672],[-0.001837574178353,-0.069981060922146,-0.084220953285694]],[[-0.0091005442664027,0.13796038925648,0.029306190088391],[0.049378033727407,0.065452300012112,-0.092999450862408],[0.037334050983191,0.21562479436398,0.069195002317429]],[[0.028956897556782,0.055844273418188,0.0012878363486379],[0.0011754072038457,0.10655349493027,-0.019933821633458],[0.073788106441498,0.097209379076958,-0.15206484496593]],[[-0.031022058799863,-0.0759042724967,-0.04809632524848],[-0.014161131344736,-0.14663310348988,0.047120358794928],[-0.0392827950418,-0.047704186290503,-0.018263963982463]],[[0.047908414155245,-0.0051288432441652,0.12498284876347],[-0.030693419277668,-0.014832274056971,-0.1638473123312],[0.051998388022184,0.033214654773474,-0.063407346606255]],[[0.071090675890446,0.05663987249136,0.19141064584255],[-0.024189118295908,0.0025107087567449,-0.082030184566975],[0.0019424149068072,-0.0015521690947935,0.0073610222898424]],[[0.064678341150284,-0.014524022117257,-0.053740862756968],[-0.070354469120502,-0.061762653291225,-0.1126574575901],[0.28694766759872,0.22415970265865,-0.1197607293725]],[[-0.012028616853058,0.038183264434338,0.010130257345736],[-0.10721002519131,-0.055298887193203,0.14609155058861],[-0.1883037686348,0.037791792303324,0.021818552166224]],[[-0.081524461507797,-0.026505714282393,-0.13442513346672],[-0.011066416278481,0.14098258316517,-0.094062224030495],[-0.088967576622963,0.083937518298626,-0.070698730647564]],[[-0.17351491749287,-0.14967304468155,0.0065789553336799],[0.12244219332933,0.062243811786175,0.017937371507287],[-0.029410531744361,0.02199125662446,-0.028169644996524]],[[0.11031384766102,-0.04533962905407,0.11648979783058],[-0.089217945933342,-0.064498335123062,-0.084300063550472],[0.13398738205433,-0.029423689469695,0.16619186103344]],[[0.010510740801692,0.0667959228158,0.082790829241276],[-0.07702711969614,-0.012494433671236,-0.14396572113037],[0.030244961380959,0.055745169520378,-0.14569714665413]],[[-0.017562305554748,0.01281604450196,-0.12182896584272],[0.12985916435719,0.033930167555809,0.19252975285053],[-0.14230313897133,-0.22736966609955,0.043588813394308]],[[0.0082371803000569,-0.081896834075451,-0.13557292521],[0.14870491623878,0.049920782446861,0.14440606534481],[-0.0097332689911127,-0.15517804026604,0.1247536689043]],[[-0.075746618211269,0.066481873393059,0.0037993681617081],[-0.023077741265297,-0.08997792750597,-0.074517615139484],[-0.1325398683548,-0.0054742968641222,0.11851969361305]],[[0.053496792912483,0.031803496181965,0.086824528872967],[-0.094457976520061,-0.026090487837791,-0.098195783793926],[-0.061709523200989,-0.035703722387552,0.10218290239573]],[[0.010729365050793,-0.19229392707348,-0.16181819140911],[0.080618590116501,0.095346368849277,0.1742746680975],[-0.14544139802456,-0.0060341414064169,0.0027425631415099]],[[0.072258658707142,0.16154216229916,-0.10044438391924],[-0.088199585676193,-0.068950623273849,-0.093613430857658],[0.14378353953362,-0.039297729730606,0.044026982039213]],[[0.066071085631847,-0.0015348468441516,-0.039503261446953],[0.015979532152414,-0.010193772614002,-0.095858186483383],[-0.079975537955761,0.12163061648607,0.13436385989189]],[[-0.071057543158531,0.071079015731812,0.018434148281813],[0.1295959353447,-0.12698276340961,-0.11677368730307],[-0.10664102435112,0.12424269318581,0.065740413963795]],[[-0.20353958010674,0.042317420244217,0.032298415899277],[-0.13410775363445,-0.05210242420435,-0.066009491682053],[-0.11475048959255,0.087001897394657,-0.044510580599308]],[[0.027418032288551,-0.20411263406277,-0.045899379998446],[0.12251597642899,0.0036814974155277,-0.080752447247505],[0.07780996710062,-0.14933604001999,0.0063369856216013]],[[-0.014561421237886,0.044955220073462,0.08028631657362],[0.021047126501799,-0.063819229602814,-0.1315560489893],[0.12551431357861,-0.08344928175211,0.0062550357542932]],[[0.18822595477104,-0.073760740458965,-0.04080668091774],[0.095860369503498,-0.041116628795862,-0.03498125821352],[0.070318132638931,0.064387172460556,0.06559194624424]],[[0.10201948881149,-0.0059667280875146,-0.13228823244572],[0.018962766975164,-0.14208202064037,-0.083463601768017],[0.053058635443449,0.065782569348812,-0.060473773628473]],[[0.031293649226427,0.026660339906812,-0.096068024635315],[0.087453693151474,0.024017056450248,0.020959375426173],[-0.00096567079890519,0.10321118682623,-0.062936760485172]],[[0.00074999075150117,-0.2053542137146,-0.04389675706625],[0.086880080401897,-0.032934293150902,0.0099696712568402],[0.042840000241995,-0.10650577396154,-0.042851861566305]],[[0.047483075410128,0.014772902242839,-0.0098607018589973],[-0.0048297136090696,-0.025225687772036,0.01722876355052],[0.069673262536526,0.1503309905529,0.03158026561141]],[[-0.17399987578392,-0.04071631282568,0.015844844281673],[0.040906921029091,0.1145421564579,0.027092345058918],[0.057197403162718,0.024883227422833,0.065842218697071]],[[0.065691374242306,-0.067717537283897,-0.062487713992596],[0.013585275970399,0.023986531421542,-0.018882973119617],[0.0027222030330449,-0.0035950967576355,-0.030951721593738]],[[-0.033917017281055,0.076103404164314,-0.022426469251513],[-0.0033072778023779,-0.065077923238277,0.062493808567524],[-0.21073722839355,0.038834284991026,-0.069284275174141]],[[-0.087955445051193,-0.041006837040186,-0.014839793555439],[0.076899603009224,0.023340487852693,0.020367220044136],[0.08722260594368,0.00040710202301852,-0.10787932574749]],[[0.10463407635689,-0.04720214381814,0.0260975882411],[-0.069283358752728,-0.24901190400124,-0.072651691734791],[-0.13544088602066,-0.068858124315739,-0.0039236405864358]],[[0.13605110347271,-0.078854762017727,0.054120976477861],[-0.048728287220001,-0.10471452027559,-0.052341613918543],[0.13255575299263,-0.087861351668835,0.19163309037685]],[[-0.054579734802246,-0.0050235744565725,0.10864351689816],[0.031395070254803,-0.092726603150368,0.089043259620667],[-0.061268471181393,-0.018085487186909,0.030521418899298]],[[-0.055968225002289,0.13298477232456,-0.13581201434135],[-0.030338000506163,0.14257605373859,0.0018668723059818],[-0.032825563102961,-0.052707079797983,-0.051318805664778]],[[-0.0082432264462113,-0.052031300961971,0.019544651731849],[0.022608453407884,0.18133383989334,0.078542731702328],[0.014937349595129,0.060748364776373,-0.094698876142502]],[[-0.11305858939886,-0.027215845882893,0.077340140938759],[-0.0093685509636998,0.043986976146698,-0.070841044187546],[-0.0063788979314268,0.0739551410079,0.038648579269648]],[[0.10990328341722,0.068899378180504,0.0053891530260444],[-0.095969662070274,0.033139243721962,0.14241912961006],[-0.055962987244129,-0.038313243538141,0.11030964553356]],[[-0.098330222070217,-0.034177590161562,-0.063208870589733],[0.10292350500822,-0.024292070418596,0.19082047045231],[-0.0095388619229198,-0.096169598400593,-0.1693938523531]],[[0.0035598175600171,0.01617880910635,0.077377445995808],[-0.037731442600489,-0.11498325318098,0.0058419513516128],[0.086764216423035,0.04466150328517,-0.082037635147572]],[[-0.15678472816944,0.01573789305985,-0.04220812395215],[-0.18544209003448,0.044852137565613,0.065427973866463],[-0.22709913551807,0.051302216947079,-0.10284223407507]],[[-0.1029764264822,0.12606509029865,-0.04098517075181],[-0.01442988961935,-0.15473107993603,0.0092320078983903],[-0.059717055410147,0.23395630717278,0.04221673309803]],[[0.017645422369242,-0.0094771422445774,-0.013522954657674],[-0.0026877112686634,-0.026383901014924,-0.01046818960458],[0.084203355014324,0.02964766509831,0.19153815507889]],[[-0.021607661619782,-0.0030917469412088,-0.024779967963696],[-0.066588245332241,0.055800449103117,-0.014909823425114],[0.11284022033215,-0.045913320034742,0.031965468078852]],[[0.027898862957954,0.010495204478502,0.10553426295519],[-0.049676772207022,0.17582114040852,0.038194045424461],[-0.090953923761845,-0.010975479148328,-0.12121044844389]]],[[[-0.039900381118059,0.13833050429821,0.0508196875453],[-0.051372777670622,0.016889732331038,-0.016628621146083],[-0.06320334225893,-0.0057971482165158,0.019171638414264]],[[-0.039951100945473,0.095796316862106,0.062210522592068],[0.02391841262579,0.14016841351986,-0.072951130568981],[-0.032492071390152,0.033432025462389,0.1096313148737]],[[0.069289699196815,0.027535537257791,0.06463598459959],[-0.0047871642746031,0.079700976610184,0.031067032366991],[0.10591264814138,-0.089780211448669,-0.031526982784271]],[[0.10588930547237,-0.029760006815195,-0.0003750943869818],[-0.018155148252845,-0.016316834837198,0.018912436440587],[0.033314026892185,-0.052900388836861,-0.087892852723598]],[[0.005688245408237,-0.00019477514433675,0.023411579430103],[0.010552721098065,0.044781073927879,0.043530482798815],[0.027827361598611,0.0043327598832548,-0.058061748743057]],[[0.062030881643295,0.1225743740797,-0.029127625748515],[0.0334163159132,-0.0061592380516231,0.057582445442677],[0.15754356980324,0.063878983259201,-0.0053936210460961]],[[0.083937965333462,0.015257501974702,0.044499471783638],[-0.042511630803347,0.05958466976881,0.003803146071732],[-0.094551369547844,0.031554322689772,0.040727935731411]],[[-0.04484099522233,0.088453277945518,-0.015422326512635],[-0.0645786896348,-0.068650051951408,0.06761272996664],[0.022244168445468,-0.03310739248991,0.13230492174625]],[[-0.16723512113094,0.033273451030254,0.0048189619556069],[-0.040894787758589,-0.03401006385684,0.072141230106354],[-0.13215145468712,0.066632777452469,0.17929537594318]],[[-0.14162573218346,-0.20433758199215,-0.00055664021056145],[-0.21010707318783,-0.25769144296646,-0.11184360086918],[-0.25865042209625,-0.38133984804153,-0.024045025929809]],[[0.050575099885464,0.03934009000659,-0.026195392012596],[0.063871130347252,0.0015840702690184,-0.016436127945781],[0.0020250943489373,-0.011179796420038,0.026938315480947]],[[0.019782131537795,0.044510990381241,-0.0042248242534697],[-0.069517910480499,-0.050376411527395,-0.0031612503807992],[-0.1606497913599,-0.073312669992447,0.021243091672659]],[[-0.063452199101448,0.024192014709115,-0.0045845485292375],[0.0084260310977697,-0.13306060433388,0.0086809257045388],[-0.037196017801762,0.025430800393224,0.058908324688673]],[[0.094675064086914,0.043271351605654,0.020692057907581],[-0.061650056391954,-0.035295397043228,-0.0056954775936902],[-0.092986427247524,-0.0077639734372497,-0.031317286193371]],[[0.0015112340915948,0.018853655084968,-0.041016168892384],[0.031374849379063,0.018567275255919,0.011669884435833],[-0.013741528615355,-0.034166544675827,-0.098338298499584]],[[0.0044292942620814,0.0057734684087336,-0.00088314415188506],[-0.052437979727983,0.018843304365873,-0.042817212641239],[0.061380989849567,0.093451417982578,-0.11203256994486]],[[0.023952713236213,0.040927935391665,0.035778764635324],[0.013768999837339,0.08968260884285,0.042876064777374],[0.0014029145240784,0.049476765096188,0.058118175715208]],[[0.0014968195464462,-0.10523222386837,-0.12165111303329],[0.052700079977512,-0.022898701950908,-0.059422165155411],[0.15618720650673,-0.058020371943712,-0.070546627044678]],[[-0.06517019867897,-0.14479443430901,0.10388503968716],[-0.1375083476305,-0.15523435175419,-0.076250180602074],[-0.079616524279118,-0.18207810819149,0.12517750263214]],[[0.072905853390694,-0.12215390056372,0.0068691512569785],[0.0016408259980381,0.011585017666221,0.042318645864725],[0.03714507445693,0.014276002533734,-0.13583068549633]],[[0.046535577625036,-0.073888517916203,-0.0036603882908821],[0.0088717741891742,-0.030150417238474,-0.072507202625275],[-0.021777803078294,-0.0096670826897025,0.073347203433514]],[[-0.052769470959902,-0.053441524505615,0.014497072435915],[-0.072728708386421,-0.26949679851532,-0.2008750885725],[0.014488748274744,0.02592827565968,-0.043386343866587]],[[-0.022565253078938,-0.082239337265491,-0.083539709448814],[-0.053099013864994,0.01728923805058,0.027487754821777],[0.04069396853447,0.038178373128176,0.017533447593451]],[[-0.14154480397701,-0.058053772896528,-0.064957618713379],[-0.097662582993507,0.019810086116195,0.047746300697327],[0.15843984484673,-0.11388890445232,0.014415223151445]],[[-0.079922623932362,-0.040686056017876,-0.13605943322182],[-0.0097069945186377,0.019328428432345,-0.035398375242949],[0.013306831941009,-0.037835597991943,-0.12191672623158]],[[-0.033595032989979,0.040851760655642,-0.027876859530807],[-0.05178014934063,-0.10940741747618,0.003423223271966],[-0.13703019917011,-0.051206760108471,-0.014627581462264]],[[-0.0055480520240963,0.12620832026005,-0.031895291060209],[-0.12371178716421,0.046376120299101,-0.0028970672283322],[-0.14069557189941,-0.033477298915386,0.13668951392174]],[[0.045439999550581,-0.027056258171797,0.10417103022337],[-0.091060519218445,-0.090935803949833,0.0032083683181554],[0.052720222622156,-0.041904632002115,-0.094810388982296]],[[-0.032938033342361,0.0054280795156956,0.014639812521636],[-0.086016274988651,0.020128076896071,0.0074131875298917],[-0.1067316159606,0.040501315146685,-0.056990254670382]],[[0.19794929027557,-0.010384168475866,-0.017779881134629],[-0.020570522174239,0.071810863912106,-0.19150750339031],[0.079882323741913,-0.019608752802014,-0.29051241278648]],[[-0.11089117079973,-0.012412641197443,-0.010013830848038],[-0.038118652999401,-0.11039358377457,-0.13235242664814],[0.14087520539761,-0.013362056575716,-0.075469300150871]],[[-0.093361034989357,-0.047479543834925,-0.012980191037059],[0.057530805468559,0.0087070865556598,-0.038350574672222],[0.016519328579307,0.07215278595686,-0.072204776108265]],[[-0.1454411894083,0.044356949627399,0.016645781695843],[-0.11803752183914,0.022581402212381,0.036664258688688],[-0.11527832597494,0.023717548698187,0.016209682449698]],[[0.072762303054333,-0.028160629794002,-0.099970944225788],[0.059746213257313,-0.070395782589912,-0.055301416665316],[0.064969152212143,0.025167813524604,-0.019761126488447]],[[-0.058541916310787,-0.058110356330872,-0.013867798261344],[-0.097906522452831,-0.05033852905035,-0.10677394270897],[0.062777683138847,-0.066458664834499,-0.065760977566242]],[[0.027225932106376,0.058674491941929,0.06703370064497],[-0.031047962605953,-0.077496699988842,-0.055496048182249],[-0.084166169166565,0.0075109205208719,-0.15391619503498]],[[0.014340759254992,-0.030061077326536,-0.16811868548393],[-0.13106639683247,-0.17751574516296,-0.099480025470257],[-0.069132082164288,-0.03963266685605,-0.19108010828495]],[[0.057594448328018,-0.015383139252663,-0.11416856944561],[0.046647451817989,0.02547325566411,0.029077393934131],[-0.059894185513258,0.062969677150249,-0.0083467680960894]],[[0.093906044960022,-0.0051764701493084,-0.051531922072172],[0.066526167094707,-0.050288513302803,-0.10507551580667],[0.065292119979858,-0.041052352637053,-0.047426894307137]],[[-0.02348992228508,-0.026433046907187,0.046289645135403],[-0.10850470513105,-0.099152967333794,-0.012204757891595],[-0.10586858540773,0.039217565208673,-0.021505802869797]],[[0.006624311208725,0.057652071118355,-0.07869416475296],[-0.00056493817828596,-0.070938847959042,0.032828938215971],[0.052233044058084,0.04407624900341,-0.11660053580999]],[[-0.088044218719006,0.067157588899136,0.038233987987041],[0.13875904679298,-0.079854056239128,-0.032800018787384],[-0.07531576603651,0.043876960873604,-0.052569299936295]],[[0.048230856657028,0.098600447177887,-0.083137951791286],[0.086461693048477,-0.054892435669899,-0.016041219234467],[0.034805651754141,-0.0099603580310941,-0.089218057692051]],[[0.18593552708626,-0.01700222119689,-0.029058193787932],[0.051583126187325,-0.078789070248604,-0.11249762028456],[0.067093834280968,-0.081113450229168,-0.064887724816799]],[[0.0029304781928658,0.015991372987628,-0.056442089378834],[-0.05253891274333,-0.06590373814106,-0.10529229044914],[0.048047550022602,0.011185386218131,-0.090000294148922]],[[-0.0081147579476237,-0.055010061711073,0.01752145588398],[-0.12160869687796,-0.059085223823786,0.038642227649689],[0.091558329761028,-0.043905936181545,0.0082464208826423]],[[-0.034953307360411,0.062527492642403,0.061540938913822],[0.17247702181339,0.037285789847374,-0.071523942053318],[0.062757559120655,0.010238412767649,0.03415859490633]],[[0.066015347838402,-0.056490704417229,0.026075232774019],[0.15311044454575,-0.092377744615078,0.0048107206821442],[0.060534529387951,-0.10161686688662,0.037326313555241]],[[-0.017649419605732,-0.075331546366215,0.0073329694569111],[0.068735212087631,0.033429406583309,0.11259066313505],[0.028205007314682,-0.033970590680838,-0.015634255483747]],[[0.11815188080072,0.042456287890673,-0.011569821275771],[0.041321638971567,0.01061466243118,-0.095379091799259],[0.11565040796995,-0.077705010771751,-0.16117803752422]],[[0.11820550262928,0.088241137564182,-0.041918788105249],[0.077467076480389,-0.10071550309658,0.055380385369062],[-0.0034121773205698,0.0037085788790137,-0.086339607834816]],[[-0.084202416241169,-0.034541171044111,-0.083693258464336],[-0.063581138849258,0.036613561213017,-0.085732206702232],[-0.058348130434752,0.0032721254974604,-0.093118712306023]],[[-0.011401371099055,0.019581085070968,-0.019078591838479],[-0.18287412822247,0.042618330568075,0.16791999340057],[-0.042861852794886,0.019075561314821,0.055696170777082]],[[0.089455552399158,0.014794839546084,0.1021827980876],[0.044358633458614,-0.0095665901899338,-0.024522595107555],[0.030579702928662,-0.021887050941586,0.067146807909012]],[[-0.00085060310084373,0.071084380149841,-0.0023823482915759],[0.073927700519562,0.0059292856603861,0.056727264076471],[0.067876599729061,0.032086934894323,0.059317618608475]],[[-0.2524738907814,0.25893023610115,0.19208785891533],[-0.0068700630217791,0.053799007087946,0.12459669262171],[-0.023438921198249,-0.053067501634359,-0.035715062171221]],[[0.14287704229355,0.080769114196301,-0.065656624734402],[0.13308544456959,0.037343323230743,0.027537493035197],[0.068950973451138,-0.0040361629799008,0.051476754248142]],[[-0.024486010894179,0.071844853460789,-0.0014717403100803],[-0.061087533831596,-0.12341877818108,-0.10604474693537],[-0.029732406139374,-0.050850208848715,-0.14266330003738]],[[-0.016114307567477,0.055002395063639,-0.052350152283907],[0.12530121207237,-0.035655297338963,-0.0017177273984998],[0.046793963760138,-0.043016150593758,-0.095042988657951]],[[-0.072537630796432,-0.017418477684259,0.034773468971252],[0.014051442965865,0.00063310307450593,0.086111702024937],[-0.053940959274769,0.10786160826683,-0.0090988641604781]],[[-0.00057722948258743,-0.057783856987953,0.018416466191411],[0.081854291260242,0.023920780047774,-0.056125320494175],[0.034285835921764,0.015820365399122,0.069742299616337]],[[-0.21437105536461,0.085857845842838,-0.00083128438564017],[0.079608954489231,0.040424779057503,0.05331477150321],[-0.049800679087639,0.025414844974875,0.071608170866966]],[[0.045906074345112,0.076004609465599,-0.021301969885826],[-0.048196651041508,-0.031894408166409,-0.02447709441185],[0.012037861160934,-0.010415794327855,0.059301871806383]],[[0.02418090030551,-0.030455745756626,0.037000589072704],[-0.011109142564237,0.037610415369272,0.034400604665279],[0.10095267742872,0.063226163387299,0.15333254635334]]],[[[-0.13943092525005,-0.015351695939898,-0.015006757341325],[-0.025566415861249,0.019470691680908,0.00047590365284123],[0.1742562353611,-0.010331482626498,0.063528470695019]],[[-0.037733811885118,-0.092131249606609,-0.086269497871399],[0.058584123849869,-0.073532111942768,-0.031035576015711],[0.072794675827026,0.05129037424922,-0.030135121196508]],[[-0.03288609161973,0.0550876557827,0.079731501638889],[-0.05447394400835,-0.05511262640357,-0.13571889698505],[-0.0099324760958552,0.065407782793045,0.062265031039715]],[[-0.10108556598425,0.054834309965372,-0.059969212859869],[-0.0028130460996181,0.087551943957806,0.051964659243822],[-0.052821557968855,0.024301109835505,-0.037242699414492]],[[0.073130875825882,0.022228902205825,-0.0060433647595346],[0.055516928434372,-0.0083188898861408,0.024152297526598],[0.13182932138443,0.022447694092989,0.10002548247576]],[[-0.019002266228199,-0.017349498346448,-0.00057481601834297],[-0.052668996155262,-0.068679302930832,0.10960464179516],[0.19165346026421,0.11084441095591,-0.10228358209133]],[[-0.065380774438381,-0.17467804253101,-0.064594447612762],[0.12097669392824,0.21879933774471,0.1122330725193],[0.02629673294723,0.013361560180783,0.076694317162037]],[[0.14464928209782,0.04228001087904,0.046945884823799],[-0.051611494272947,-0.0034476928412914,0.013117182999849],[0.079407021403313,0.15791217982769,-0.14269369840622]],[[-0.054705481976271,-0.013639857061207,-0.013307536952198],[-0.025010531768203,0.0089766578748822,0.021292790770531],[0.047810737043619,0.0014359264168888,0.024666339159012]],[[-0.033253483474255,0.085985630750656,-0.021558567881584],[0.067569278180599,-0.11046611517668,-0.016533955931664],[-0.062568143010139,-0.13735464215279,-0.097677066922188]],[[0.05242333561182,-0.040702138096094,0.051359154284],[0.033240359276533,0.094844900071621,0.0095852827653289],[0.076045572757721,-0.012463674880564,-0.017864154651761]],[[0.18064504861832,0.060734715312719,0.022018821910024],[-0.021555041894317,0.03304224088788,-0.0054013407789171],[-0.18101979792118,-0.14696764945984,-0.089086107909679]],[[0.068022161722183,-0.035032596439123,0.058015819638968],[0.0057346951216459,-0.066958859562874,0.037465158849955],[-0.042377907782793,-0.075765177607536,-0.09389191865921]],[[0.067671708762646,0.02459510602057,-0.044785134494305],[0.14527240395546,0.036664918065071,0.057219799607992],[-0.072610855102539,-0.063898168504238,-0.043632306158543]],[[0.0060116448439658,0.09274647384882,0.053656548261642],[-0.018796345219016,-0.057431045919657,-0.018084030598402],[-0.18260945379734,-0.078866966068745,-0.096091538667679]],[[0.1534176170826,0.049124144017696,0.11230678111315],[-0.17960058152676,0.017432264983654,0.026991037651896],[0.031629037111998,-0.12023149430752,0.18259562551975]],[[0.048250615596771,0.07712110877037,0.1195363253355],[-0.01317445281893,0.098077371716499,0.0094409380108118],[-0.07216465473175,-0.012930759228766,0.0091865342110395]],[[-0.050295919179916,0.017698340117931,0.014889618381858],[6.3572559156455e-05,-0.0049084164202213,0.01033877581358],[0.048550400882959,0.030999209731817,0.05639486759901]],[[0.0075411489233375,-0.063236519694328,-0.078561186790466],[0.058409139513969,0.030123122036457,0.015302252024412],[0.097514368593693,0.038011081516743,-0.041334055364132]],[[-0.055199321359396,-0.058018136769533,-0.12822571396828],[-0.0094874640926719,-0.093498237431049,0.091064751148224],[-0.034927755594254,0.15329782664776,-0.039891891181469]],[[0.058509647846222,-0.023253789171576,-0.046897910535336],[0.049831323325634,0.024780463427305,0.03939576074481],[0.018947741016746,-0.039469499140978,-0.013906254433095]],[[-0.037803921848536,0.12090670317411,0.079720295965672],[-0.12115950882435,-0.12098231911659,-0.064563237130642],[-0.030459521338344,-0.046334281563759,-0.070931166410446]],[[-0.21663694083691,-0.17186535894871,0.0081493258476257],[-0.14549919962883,0.03639855235815,-0.00040275490027852],[0.098785862326622,0.011778310872614,0.069010950624943]],[[-0.054054394364357,0.092463240027428,0.037735473364592],[0.02477952837944,-0.027650633826852,0.032069411128759],[-0.018513282760978,0.046062849462032,0.051298666745424]],[[-0.011025282554328,0.10933302342892,-0.15212412178516],[0.086254388093948,-0.090073302388191,-0.13327814638615],[0.088500238955021,-0.075381703674793,-0.046930383890867]],[[0.020453456789255,0.029576232656837,0.015638638287783],[0.082263693213463,-0.051638260483742,-0.029969360679388],[0.0096456278115511,-0.015890430659056,-0.12676018476486]],[[0.069897659122944,0.010411301627755,-0.021199295297265],[-0.021798569709063,-0.047556214034557,-0.16904240846634],[-0.047827422618866,-0.1365971416235,-0.12252154946327]],[[0.016327550634742,0.064804725348949,0.036787405610085],[-0.070950448513031,-0.081303961575031,0.08231595158577],[-0.03829400241375,-0.045838043093681,0.016407623887062]],[[-0.057007860392332,-0.11457125842571,-0.11894229054451],[-0.087653018534184,0.076567053794861,-0.0082988077774644],[0.13596330583096,0.03693599998951,0.013862446881831]],[[0.19110794365406,0.1703784763813,0.056601162999868],[0.13310180604458,0.091412082314491,-0.018399145454168],[0.021615942940116,-0.21121247112751,-0.12256199866533]],[[0.17383335530758,-0.14433561265469,0.02316852658987],[-0.13577434420586,0.11755561083555,0.051003631204367],[-0.0042523206211627,0.023528261110187,0.066684521734715]],[[-0.069302409887314,-0.11700473725796,-0.06882481276989],[0.058175347745419,-0.05124543979764,-0.013211268000305],[-0.019554344937205,-0.07706992328167,-0.091063655912876]],[[-0.11478545516729,-0.013163252733648,0.033967148512602],[-0.025588804855943,0.0051719453185797,0.020537501201034],[0.06655178964138,0.047272354364395,0.011301808059216]],[[0.092454507946968,0.008535448461771,0.0026188273914158],[-0.03420839458704,0.02899013645947,-0.014154796488583],[-0.1107362061739,-0.067325733602047,-0.041519843041897]],[[-0.0036746461410075,0.024860976263881,-0.094237446784973],[0.077433504164219,-0.097583010792732,0.015502033755183],[0.084876418113708,0.059877961874008,0.16125340759754]],[[0.010340231470764,-0.014562503434718,-0.012604985386133],[0.10197878628969,0.042515784502029,-0.073925577104092],[-0.011804435402155,-0.0041705095209181,-0.00038326770300046]],[[-0.021758725866675,0.10408546775579,0.048572905361652],[-0.022430500015616,-0.066066473722458,-0.047300912439823],[-0.037767242640257,-0.045043550431728,0.00026777607854456]],[[-0.12851567566395,-0.014115542173386,-0.12099231034517],[-0.15580707788467,0.09323675185442,0.042991228401661],[0.25638249516487,-0.0098577989265323,0.12425608187914]],[[0.016303397715092,0.050785917788744,0.065591596066952],[0.054194618016481,-0.061112783849239,-0.0084368493407965],[-0.078654862940311,-0.11881832778454,-0.14302118122578]],[[0.075646564364433,-0.029551900923252,0.048315860331059],[0.067848086357117,0.077279008924961,0.015442793257535],[-0.023745464161038,0.025454100221395,-0.016246810555458]],[[0.049856569617987,-0.017590440809727,0.0032211327925324],[-0.036058992147446,0.095529891550541,-0.0053759887814522],[-0.047411870211363,-0.029424561187625,0.06070389598608]],[[0.082945547997952,0.25596576929092,-0.042832672595978],[0.0012466973857954,0.06759025156498,-0.10655328631401],[-0.0547791197896,-0.043811086565256,0.044968813657761]],[[0.038935922086239,0.023189390078187,0.019160892814398],[0.019535005092621,-0.0094079384580255,0.022431636229157],[-0.080063842236996,0.050883237272501,-0.12004652619362]],[[0.051371157169342,0.012688585557044,0.0037320950068533],[-0.032063659280539,0.012485420331359,-0.001911070663482],[-0.021104123443365,-0.05960625782609,-0.095744289457798]],[[0.16531103849411,0.0016609439626336,0.055234797298908],[-0.070256441831589,-0.026487966999412,-0.0039350907318294],[-0.13901117444038,-0.16176496446133,-0.080743692815304]],[[0.033480186015368,0.055141132324934,-0.098950110375881],[0.057479131966829,0.055839344859123,-0.069964088499546],[-0.19516180455685,0.06508544832468,-0.0047432915307581]],[[0.031439948827028,0.035552404820919,0.023357721045613],[-0.0048135793767869,-0.010822864249349,0.078253462910652],[0.016512202098966,0.023663042113185,-0.078897133469582]],[[0.2213389724493,0.067033216357231,0.088035002350807],[-0.05910524353385,-0.039247486740351,0.02384189888835],[-0.043384615331888,-0.05387307330966,-0.0038880822248757]],[[0.11254419386387,0.033856589347124,-0.015515348874032],[0.060381840914488,0.049588888883591,-0.04899887740612],[0.095515720546246,0.062694728374481,-0.051070027053356]],[[0.016051722690463,0.075718730688095,-0.0068712728098035],[0.044666774570942,-0.085216447710991,-0.057938508689404],[0.019786883145571,0.048081263899803,-0.0090252114459872]],[[0.01321117207408,-0.033911697566509,0.045213524252176],[0.0054402411915362,0.03041753359139,-0.04125539213419],[-0.18073910474777,-0.18732917308807,-0.026376215741038]],[[0.079445667564869,-0.010967168956995,-0.016099035739899],[0.017099924385548,0.016536954790354,-0.070651568472385],[0.014633386395872,-0.019429219886661,-0.078088529407978]],[[-0.079128943383694,0.043366242200136,-0.055841777473688],[-0.012550977058709,0.013896722346544,0.094945795834064],[0.11457788199186,0.13422004878521,0.085104815661907]],[[0.013807496055961,-0.035224948078394,0.023297414183617],[0.020602686330676,-0.0035254878457636,-0.054582688957453],[-0.031616497784853,0.011685989797115,-0.15827764570713]],[[0.0086083188652992,0.19210815429688,0.097225874662399],[-0.068696081638336,0.03783405572176,-0.022242605686188],[-0.052905146032572,-0.021918861195445,-0.023019764572382]],[[-0.12962144613266,-0.11139176785946,0.033379171043634],[-0.037367403507233,0.0091051133349538,-0.017662944272161],[0.033854030072689,-0.11611297726631,0.18687756359577]],[[-0.048164092004299,-0.071462988853455,-0.067016340792179],[-0.15913853049278,-0.10639937967062,-0.064872696995735],[-0.051244262605906,-0.1125660315156,-0.037486642599106]],[[-0.0053304731845856,0.011494860984385,-0.042505387216806],[0.097192175686359,0.06114574149251,-0.05566605553031],[0.063432566821575,-0.0053523569367826,0.026158545166254]],[[0.007060460280627,-0.064082033932209,-0.055276427417994],[0.043437652289867,0.021367758512497,0.11574207991362],[0.023837549611926,0.06720820069313,-0.015973791480064]],[[0.119568541646,0.074832826852798,0.063774324953556],[0.068009652197361,0.060232814401388,-0.016169542446733],[-0.011224877089262,-0.090168632566929,-0.12770117819309]],[[0.0076651582494378,-0.011608625762165,-0.12139675021172],[-0.047881916165352,-0.089150510728359,-0.055086735635996],[-0.15020105242729,-0.018643293529749,-0.070079565048218]],[[-0.0076320837251842,-0.093614861369133,-0.20703159272671],[-0.13546095788479,0.0065816314890981,0.05758661031723],[-0.056940626353025,0.042900692671537,-0.063107028603554]],[[0.11502356082201,0.1027785167098,0.22982889413834],[0.012078763917089,0.033140424638987,0.15679197013378],[-0.18049450218678,-0.021787542849779,0.036243014037609]],[[-0.09546621888876,0.0076670735143125,-0.090298816561699],[-0.056474436074495,-0.0165861453861,0.018074039369822],[0.09408300369978,0.026779098436236,0.095074705779552]]],[[[-0.012124534696341,-0.019182616844773,-0.10283422470093],[0.0087660793215036,-0.0040111429989338,0.17481926083565],[-0.049382898956537,0.036232702434063,-0.09084128588438]],[[-0.0036115639377385,0.051111828535795,-0.17184776067734],[0.04075250774622,0.036005105823278,0.15649601817131],[-0.050351265817881,-0.082457609474659,-0.14963167905807]],[[-0.047963608056307,-0.12681403756142,-0.088287465274334],[0.051808901131153,-0.0092219179496169,0.11507620662451],[0.0052310950122774,0.014417506754398,0.038560651242733]],[[-0.0042352639138699,-0.073653616011143,0.0053965412080288],[-0.0096232444047928,-0.088742904365063,0.067837350070477],[0.055743049830198,-0.038076646625996,-0.078889660537243]],[[-0.077458493411541,-0.016214672476053,-0.08149041980505],[0.15639787912369,-0.016196090728045,-0.0082612317055464],[0.052961010485888,-0.031684193760157,-0.066493183374405]],[[0.13068547844887,0.11830875277519,0.02731847204268],[-0.15838344395161,-0.061027426272631,0.11209803819656],[0.0019237935775891,0.064623393118382,0.052350010722876]],[[0.08873175829649,0.041106183081865,-0.041583444923162],[0.042457289993763,-0.088500902056694,-0.013335702009499],[-0.28141126036644,0.040884997695684,-0.067045859992504]],[[0.038868680596352,0.049390658736229,0.049621600657701],[-0.10336643457413,-0.058705564588308,0.14337919652462],[0.061140481382608,-0.019224481657147,-0.21811838448048]],[[0.076100789010525,-0.039483446627855,-0.084898017346859],[-0.013988540507853,0.081082969903946,-0.071603924036026],[-0.0068510193377733,-0.044196277856827,0.051298908889294]],[[-0.012563813477755,0.025632489472628,0.049771253019571],[-0.093543827533722,-0.0066454927437007,-0.059479452669621],[0.075501121580601,0.0081003401428461,-0.010578866116703]],[[-0.027865866199136,0.058958612382412,-0.096327975392342],[0.0050525292754173,-0.049215350300074,0.096887573599815],[0.026231331750751,0.055570773780346,-0.063398361206055]],[[-0.034883685410023,-0.022167734801769,0.021115312352777],[-0.1133364289999,-0.061404544860125,-0.16513702273369],[0.012509285472333,-0.066322982311249,0.082234382629395]],[[0.063432477414608,-0.017518322914839,-0.30884796380997],[0.032936532050371,-0.26608258485794,0.10893040895462],[0.048917546868324,0.06736945360899,-0.15893013775349]],[[-0.16483804583549,0.097355648875237,-0.15579317510128],[0.08986608684063,-0.059574659913778,0.049095842987299],[-0.1687048971653,0.032568626105785,-0.04630733653903]],[[0.033610168844461,-0.052626360207796,-0.11582382768393],[0.032919742166996,0.063161507248878,-0.14555887877941],[-0.0073381075635552,-0.079300910234451,-0.026562735438347]],[[-0.0043315915390849,0.03285375982523,-0.015623803250492],[-0.12677557766438,0.089986629784107,0.050897985696793],[0.0099054770544171,0.016191901639104,-0.098532103002071]],[[0.13716040551662,-0.16488149762154,0.03887327387929],[-0.12070660293102,-0.027696397155523,-0.12192314863205],[0.012127812951803,-0.037550035864115,0.016822133213282]],[[-0.081309802830219,-0.086017705500126,0.016194928437471],[-0.029481930658221,0.080325730144978,0.09429670125246],[-0.091590560972691,0.0036817528307438,-0.020580383017659]],[[0.084246672689915,-0.048914518207312,0.11532519757748],[0.020270895212889,0.2404337823391,-0.029514586552978],[0.001576968235895,-0.21116758882999,-0.027274927124381]],[[-0.054267384111881,-0.032868467271328,0.05527451261878],[0.032641489058733,0.161620631814,-0.089587539434433],[-0.097860120236874,0.043244950473309,-0.026866711676121]],[[0.0086601553484797,0.042046189308167,0.032862912863493],[0.072611697018147,0.0017354948213324,-0.032668005675077],[0.029439229518175,0.011506491340697,-0.096601724624634]],[[-0.057468228042126,-0.057436335831881,0.074488431215286],[-0.14743579924107,-0.051856204867363,-0.050890006124973],[0.085995756089687,-0.036618892103434,0.082780316472054]],[[-0.19911493360996,0.093228444457054,-0.12272261828184],[0.16420847177505,0.062486574053764,-0.0082421461120248],[-0.030477659776807,0.019245088100433,-0.052885513752699]],[[0.078676030039787,-0.025717560201883,-0.022097753360868],[-0.18800073862076,-0.0027058930136263,0.070813395082951],[0.071229808032513,-0.12283328920603,-0.13843224942684]],[[0.0049285585992038,-0.00087692093802616,0.1441804766655],[0.037973940372467,-0.022171104326844,-0.04412878677249],[-0.021971348673105,0.090444043278694,0.012353683821857]],[[0.061261937022209,0.070637740194798,-0.071053214371204],[-0.03021546639502,0.038866490125656,-0.078380718827248],[-0.07568035274744,-0.095289021730423,-0.020476764068007]],[[-0.064203783869743,-0.14051946997643,0.019636858254671],[0.00021161357290111,-0.24027299880981,0.012776628136635],[0.10480040311813,0.019057320430875,-0.13054536283016]],[[0.20864634215832,-0.14933641254902,0.028031699359417],[-0.15669229626656,0.048860915005207,-0.032671749591827],[0.051414266228676,-0.11106457561255,0.096676409244537]],[[0.086246959865093,-0.035395838320255,-0.052145797759295],[-0.10507613420486,0.057346992194653,0.060732837766409],[-0.025055618956685,0.066361404955387,-0.14482618868351]],[[-0.088692136108875,0.034771412611008,-0.13379693031311],[-0.039414241909981,0.019472511485219,0.022269239649177],[-0.006938686594367,-0.011721045710146,-0.015875227749348]],[[-0.11264082044363,0.0065173744224012,-0.0046850894577801],[0.051068626344204,-0.082441613078117,0.069319359958172],[-0.011054820381105,0.13223771750927,-0.026519222185016]],[[0.080104239284992,0.010451020672917,-0.15661334991455],[-0.17280688881874,0.059690549969673,0.091743797063828],[0.082017846405506,-0.01076687220484,-0.10908008366823]],[[0.010960787534714,-0.070394046604633,-0.16975231468678],[-0.071482695639133,0.031745363026857,0.17223018407822],[-0.018244329839945,-0.032303705811501,-0.12802712619305]],[[0.033950246870518,0.0078425696119666,0.0019492410356179],[0.070437036454678,-0.081913024187088,-0.089256875216961],[-0.074734650552273,-0.071816749870777,0.091200031340122]],[[-0.047105330973864,0.064488634467125,0.052356164902449],[-0.15006370842457,-0.095700807869434,-0.063975587487221],[0.018459718674421,-0.067545391619205,0.039631266146898]],[[-0.011089372448623,-0.027103323489428,-0.010428050532937],[-0.14788016676903,-0.096008807420731,-0.086761265993118],[0.19545742869377,0.031543623656034,0.11818160116673]],[[0.010879985056818,0.0018310457235202,0.032522805035114],[-0.013047466054559,-0.00062989786965773,-0.055262990295887],[0.10807174444199,-0.051119107753038,0.1775585860014]],[[-0.092494271695614,0.065530933439732,-0.17605103552341],[0.015373699367046,-0.026162959635258,0.06359077244997],[-0.00051170127699152,0.082409769296646,-0.0095758819952607]],[[-0.030185043811798,-0.080302454531193,-0.05320804938674],[-0.14242918789387,-0.11911990493536,-0.15293572843075],[-0.1559996753931,-0.093524970114231,0.053888905793428]],[[0.080677069723606,-0.15109431743622,0.070195250213146],[-0.020672358572483,0.082009986042976,-0.019485265016556],[-0.0022759013809264,-0.05877973139286,0.038487881422043]],[[-0.033749371767044,-0.021915534511209,0.067728072404861],[0.023090304806828,0.041103262454271,-0.093276388943195],[0.017414642497897,-0.17409418523312,0.15889123082161]],[[0.070952698588371,0.0096896858885884,0.13280065357685],[-0.011909312568605,-0.0079047018662095,-0.14382162690163],[0.014034558087587,-0.20558345317841,-0.075884029269218]],[[-0.057759996503592,-0.029924131929874,-0.20716616511345],[0.066774621605873,-0.031591612845659,0.06716550886631],[-0.18512099981308,-0.077064752578735,-0.036545008420944]],[[-0.041398029774427,0.019157966598868,-0.0087076397612691],[0.12642993032932,-0.076084457337856,-0.036258224397898],[0.03317016735673,0.11471953243017,-0.098676964640617]],[[-0.11962783336639,-0.11332636326551,-0.1212735325098],[-0.028319228440523,0.062958858907223,-0.085289031267166],[-0.11313980817795,-0.054820287972689,0.0028623328544199]],[[-0.0062600518576801,0.013379614800215,0.12315858900547],[0.09571872651577,0.03369127586484,-0.16020423173904],[0.045014970004559,-0.081699073314667,0.14749945700169]],[[-0.0047889640554786,-0.012049863114953,-0.036203771829605],[0.11124543100595,0.027750510722399,-0.067861802875996],[0.060619350522757,0.070784233510494,-0.039381958544254]],[[-0.12859635055065,-0.005186082329601,-0.033281892538071],[-0.1169039607048,-0.14518490433693,-0.10103439539671],[0.032646290957928,0.039088025689125,0.039119951426983]],[[-0.062388528138399,0.057029072195292,0.040846034884453],[0.072162710130215,-0.12273047864437,-0.0025507607497275],[0.072569772601128,0.082459546625614,0.11848229914904]],[[-0.11292300373316,0.040815480053425,0.047115404158831],[-0.069490455091,-0.094620510935783,-0.01785085350275],[0.093092665076256,0.022619694471359,0.0091348420828581]],[[0.00069340347545221,0.0794667750597,0.080159068107605],[0.054496496915817,-0.028082044795156,-0.050944771617651],[-0.054943051189184,-0.066153816878796,-0.078096471726894]],[[-0.12783615291119,-0.038444515317678,-0.11792089045048],[-0.040177136659622,0.0013247568858787,-0.098550297319889],[-0.021487407386303,-0.15262377262115,-0.10028383135796]],[[0.12142178416252,0.13598105311394,-0.14633183181286],[0.029881088063121,-0.034349292516708,0.041428461670876],[0.0077451132237911,-0.00050528504652902,-0.0043000360019505]],[[0.12404152005911,-0.15131413936615,0.053718157112598],[-0.10655207931995,-0.10939192771912,0.045463372021914],[-0.08283819258213,-0.044513396918774,-0.063508667051792]],[[0.086758762598038,-0.2197292894125,-0.091432400047779],[-0.095827020704746,-0.10634011775255,-0.1782048791647],[0.073546916246414,-0.050558555871248,0.11495348066092]],[[0.059442136436701,-0.092348717153072,-0.044165354222059],[-0.089462980628014,0.016959141939878,0.00094274012371898],[0.10889468342066,-0.073736272752285,-0.05329541862011]],[[-0.004321129526943,0.015807788819075,-0.086574263870716],[-0.10719835758209,-0.048331663012505,-0.044072534888983],[0.11698661744595,0.039939742535353,-0.073501795530319]],[[0.10598971694708,-0.068397358059883,0.0059995530173182],[-0.12261797487736,-0.039878878742456,0.019352836534381],[0.17085608839989,-0.27657532691956,0.12503543496132]],[[0.036035008728504,-0.11850655823946,0.16451992094517],[-0.025793535634875,-0.063986569643021,-0.052362866699696],[0.098484918475151,0.0058069806545973,0.019830606877804]],[[-0.03421538695693,-0.028551071882248,-0.15686829388142],[-0.14921589195728,0.10585806518793,0.16421994566917],[-0.11073940992355,0.083238497376442,0.050711032003164]],[[-0.0060638473369181,0.10977147519588,-0.079719245433807],[0.1024734377861,-0.10900890827179,0.0063660396263003],[-0.066903993487358,0.030398413538933,-0.13802435994148]],[[0.13550005853176,0.046717990189791,-0.33255150914192],[-0.061280101537704,-0.11780774593353,-0.14553934335709],[-0.063850097358227,0.082959398627281,-0.16497486829758]],[[0.12502737343311,-0.1779793202877,0.072527937591076],[-0.17267321050167,-0.064752072095871,-0.056774646043777],[-0.040043048560619,-0.046957608312368,0.10872537642717]],[[-0.15170587599277,0.22897426784039,-0.27577984333038],[0.18213932216167,-0.14099760353565,0.22026064991951],[-0.17463217675686,0.10211804509163,-0.22962535917759]]],[[[-0.052789855748415,0.032664965838194,-0.14304055273533],[0.039304498583078,-0.025821752846241,0.038853853940964],[0.094522342085838,-0.02081093005836,0.055975992232561]],[[0.10472439974546,-0.0066395634785295,-0.14856216311455],[0.01741206087172,-0.013411427848041,-0.10055847465992],[-0.0076289521530271,0.028141276910901,0.046979054808617]],[[-0.088008292019367,-0.10414655506611,-0.1360898911953],[-0.14774832129478,-0.021214490756392,0.060564126819372],[0.097675867378712,0.017315724864602,-0.0077155069448054]],[[0.03967709466815,0.01707106269896,-0.20902326703072],[0.0936269313097,0.028131892904639,-0.023672884330153],[-0.074676811695099,-0.024019572883844,-0.074655972421169]],[[-0.036845706403255,0.049629170447588,-0.030126709491014],[-0.0064764521084726,0.040858130902052,-0.14155526459217],[0.0011902721598744,-0.00059068278642371,0.048105724155903]],[[0.0019590985029936,0.0021868355106562,-0.025884909555316],[-0.089599542319775,0.018569635227323,-0.076403349637985],[0.034347038716078,0.088793694972992,-0.013554554432631]],[[0.083206936717033,-0.02348362095654,0.046792220324278],[-0.078113317489624,0.075374729931355,-0.022065764293075],[-0.12072350084782,-0.039892416447401,-0.077846892178059]],[[-0.015260638669133,-0.042248118668795,-0.064155012369156],[-0.086743295192719,0.0016616691136733,-0.0037450739182532],[0.0021786822471768,0.071219742298126,-0.019658025354147]],[[-0.017035225406289,0.04130707681179,-0.01424836460501],[0.028354650363326,-0.014731295406818,0.0086338119581342],[-0.038094643503428,0.063108555972576,-0.066762752830982]],[[-0.069525636732578,0.057937264442444,-0.048344124108553],[-0.064084403216839,-0.00034588831476867,0.058726415038109],[0.0077149476855993,-0.0063659050501883,0.027772529050708]],[[0.15428647398949,-0.020532907918096,-0.038325034081936],[0.065130658447742,-0.2153706997633,-0.09487859159708],[0.1115607842803,-0.039250619709492,0.016860119998455]],[[-0.037488155066967,-0.10415756702423,-0.075945399701595],[0.059627164155245,-0.063910417258739,-0.1237948089838],[-0.013510150834918,0.053023971617222,-0.086536526679993]],[[-0.14134633541107,0.053985133767128,-0.06751249730587],[0.12060724198818,-0.078844010829926,-0.082848705351353],[0.20121391117573,0.010045848786831,0.086678631603718]],[[0.041161477565765,-0.019694909453392,-0.13082663714886],[0.045459061861038,-0.03832783550024,-0.039173237979412],[0.12783826887608,0.094412513077259,-0.020321406424046]],[[0.01537177618593,-0.12592099606991,-0.019581165164709],[0.026204336434603,-0.0076622385531664,0.075042255222797],[0.0017378211487085,0.0077170794829726,-0.03776914998889]],[[0.047015607357025,-0.040266133844852,-0.06177906692028],[-0.0059146340936422,-0.012232257984579,0.094125293195248],[0.14956979453564,0.11041951924562,-0.00027863655122928]],[[0.069794707000256,0.019498353824019,-0.023859344422817],[-0.090433351695538,-0.032239444553852,-0.14893738925457],[-0.057795375585556,0.14814883470535,-0.034537192434072]],[[0.044843975454569,-0.11154559254646,-0.12745858728886],[0.087815769016743,-0.097579203546047,-0.035854365676641],[-0.078447856009007,0.068959981203079,-0.011638892814517]],[[-0.060926172882318,0.021614767611027,-0.055957268923521],[0.08548840880394,-0.085065238177776,0.050592269748449],[0.21752153337002,0.041089501231909,0.087753780186176]],[[0.00037557468749583,-0.055557243525982,-0.043138079345226],[0.016425725072622,0.027701674029231,-0.038712244480848],[0.068968757987022,0.12267735600471,0.081644035875797]],[[0.012628114782274,0.037678383290768,-0.10860370099545],[0.11868503689766,0.0013232181081548,0.045483235269785],[0.083099141716957,-0.047134198248386,0.0036068980116397]],[[0.045824203640223,-0.049351576715708,-0.044536650180817],[0.036567222326994,0.00058665795950219,-0.023041786625981],[0.10246335715055,0.038918025791645,-0.029024817049503]],[[0.12275256216526,-0.023188585415483,-0.11245798319578],[-0.028293337672949,-0.071091622114182,-0.028211463242769],[0.23210671544075,-0.0083673596382141,0.14013768732548]],[[-0.11990170925856,0.054370131343603,-0.14380952715874],[0.10376659035683,0.02768119238317,-0.0067320493981242],[0.059404376894236,0.051521584391594,0.0038314338307828]],[[0.089297465980053,-0.00024563318584114,-0.029555818066001],[-0.12323934584856,0.11363038420677,-0.0022209156304598],[-0.076704628765583,0.02550314180553,0.080924034118652]],[[-0.023912068456411,0.030076328665018,0.010703142732382],[0.13514958322048,-0.057098086923361,-0.087035194039345],[0.056955948472023,0.074209272861481,0.036979947239161]],[[0.048482298851013,0.080139607191086,-0.009989220649004],[-0.12647826969624,-0.014205715619028,0.027066523209214],[-0.10010232776403,-0.011435179039836,0.059424940496683]],[[0.054823830723763,0.018436245620251,-0.074163414537907],[0.026488553732634,0.03486842662096,0.024100298061967],[-0.038895186036825,0.02740060351789,0.038580153137445]],[[-0.061580095440149,0.08741994202137,0.026713203638792],[0.023512935265899,0.079407587647438,-0.021412845700979],[0.021500131115317,0.033433586359024,-0.017264656722546]],[[-0.082552790641785,-0.091510452330112,0.061133857816458],[0.13354901969433,-0.13431060314178,0.07458271086216],[-0.10213416814804,0.033223729580641,0.048747077584267]],[[-0.075072318315506,0.0014132421929389,0.098114527761936],[-0.053637832403183,0.078036785125732,0.09982006251812],[-0.036844860762358,0.011132349260151,0.047343179583549]],[[-0.074749030172825,-0.14085049927235,0.024092730134726],[-0.036054525524378,-0.092434927821159,-0.050765424966812],[0.084614358842373,-0.0052751055918634,0.05965019389987]],[[0.051935218274593,0.060969658195972,0.06983944028616],[0.096446871757507,-0.093233987689018,-0.049814559519291],[0.015671754255891,-0.090187959372997,0.020996985957026]],[[-0.12365325540304,-0.011203649453819,0.057174306362867],[-0.1321976929903,0.038463309407234,-0.086724415421486],[0.047983933240175,0.055612187832594,-0.019029371440411]],[[-0.15575614571571,0.027739541605115,-0.12679415941238],[-0.059522774070501,0.023448305204511,0.016571041196585],[0.15659713745117,0.020246164873242,0.063531219959259]],[[-0.015487031079829,-0.026290364563465,-0.15669789910316],[-0.073540583252907,0.071335285902023,-0.086519867181778],[0.056453347206116,-0.0084519647061825,-0.10623148828745]],[[-0.028963135555387,-0.038783732801676,0.039143159985542],[0.021736765280366,0.034821849316359,0.067059941589832],[-0.030352769419551,-0.076882787048817,-0.0038608380127698]],[[-0.056745935231447,-0.0050480323843658,-0.05867151543498],[0.12444100528955,0.039294075220823,0.028949208557606],[-0.055914454162121,-0.19598078727722,0.044636186212301]],[[-0.055096473544836,0.019461896270514,0.064817003905773],[0.020334452390671,-0.061552602797747,0.018331173807383],[0.076533861458302,0.21301068365574,-0.20802672207355]],[[-0.0078003224916756,0.040335476398468,0.047220312058926],[0.05761456862092,-0.0061642988584936,0.057501152157784],[0.094115346670151,0.10020960122347,0.12013759464025]],[[-0.0064991964027286,-0.046430867165327,0.014722197316587],[-0.092801697552204,0.014653510414064,-0.043756440281868],[-0.0054833889007568,-0.12884956598282,0.14174203574657]],[[-0.12717621028423,-0.2298948764801,-0.08731522411108],[-0.054477293044329,-0.27136215567589,0.023132283240557],[0.055489871650934,0.0035087331198156,0.041400264948606]],[[-0.05770805478096,-0.049489464610815,0.020519949495792],[0.0063572819344699,-0.001848894986324,0.00084265746409073],[-0.10549072921276,0.060602135956287,0.049949411302805]],[[-0.02249388769269,-0.042740918695927,0.024430321529508],[-0.031230272725224,0.074226915836334,0.049987148493528],[0.075755938887596,0.03580904006958,0.12489584833384]],[[0.0092048682272434,-0.028101500123739,-0.026878286153078],[-0.087485879659653,-0.063276045024395,-0.084413163363934],[-0.078362032771111,0.011256564408541,0.028778417035937]],[[0.11142859607935,0.023636687546968,0.0010894571896642],[0.02380271628499,-0.084883451461792,-0.066379621624947],[0.089170671999454,-0.13598200678825,-0.088345319032669]],[[0.12932020425797,0.040148138999939,-0.086590774357319],[0.011971019208431,-0.12674188613892,-0.089684590697289],[-0.10350531339645,-0.090893551707268,-0.070652760565281]],[[0.10877057909966,0.075612545013428,-0.1585164219141],[0.023288687691092,0.015485279262066,0.038177296519279],[-0.039705857634544,-0.00058663182426244,0.016751367598772]],[[-0.054212965071201,0.078278817236423,-0.0090708946809173],[-0.063543647527695,0.046049486845732,0.042411401867867],[0.05302869156003,0.027208304032683,0.062749840319157]],[[-0.084133312106133,-0.05992803350091,0.010254959575832],[-0.0034620969090611,-0.13984815776348,0.062259491533041],[0.03456000611186,-0.02061222307384,0.13379660248756]],[[0.071114458143711,-0.18491548299789,0.069765105843544],[0.10178565979004,-0.16788555681705,-0.026263317093253],[0.081021785736084,0.20581886172295,-0.087425410747528]],[[-0.032311055809259,-0.0066459029912949,0.14694288372993],[0.007984166033566,-0.022804256528616,0.01209800876677],[-0.25832232832909,-0.11935460567474,0.091105461120605]],[[0.011902464553714,0.010483887046576,-0.05395870283246],[0.014727614820004,-0.11725986748934,-0.0096377162262797],[0.093485683202744,-0.042176030576229,-0.0076289651915431]],[[-0.047419555485249,-0.14036633074284,-0.062964968383312],[0.016615211963654,-0.038024067878723,-0.085215389728546],[0.065053194761276,-0.057188335806131,0.12980581820011]],[[0.016477840021253,-0.015230568125844,-0.057803146541119],[0.010204830206931,-0.012692485935986,-0.049318872392178],[-0.074622586369514,-0.11683765798807,0.076861597597599]],[[-0.019922399893403,-0.19566169381142,-0.047519836574793],[0.050809301435947,0.1111886203289,0.01527205388993],[-0.025628723204136,0.22323842346668,-0.0428238324821]],[[-0.017260877415538,0.052875626832247,-0.0043666018173099],[0.14582271873951,-0.057479914277792,0.041567444801331],[0.077748738229275,-0.18825943768024,0.025069020688534]],[[-0.11918058246374,-0.055922191590071,0.045565474778414],[0.076586708426476,-0.008698508143425,-0.10200845450163],[-0.02040552161634,0.091461479663849,0.052140563726425]],[[-0.026957493275404,0.035892773419619,0.10927078872919],[-0.022856563329697,-0.09853508323431,0.085299722850323],[-0.16290113329887,0.0040440545417368,-0.044774733483791]],[[-0.007815120741725,-0.061065014451742,-0.21620227396488],[0.10026536881924,0.0028407564386725,0.087822921574116],[0.030316524207592,0.092022702097893,-0.074711464345455]],[[0.16009253263474,-0.010959501378238,-0.1020322740078],[0.011259222403169,-0.14618553221226,-0.013187388889492],[0.066526517271996,0.03638518974185,-0.14104929566383]],[[-0.068901546299458,0.10798808187246,0.12976150214672],[0.05517503619194,0.042222548276186,0.088370032608509],[0.029953869059682,-0.18522620201111,-0.028296031057835]],[[-0.14313870668411,-0.059704504907131,-0.034705094993114],[0.05798626318574,0.060566313564777,-0.027574341744184],[-0.040489256381989,-0.071306802332401,-0.027245074510574]],[[0.097730256617069,0.12324244529009,0.049953002482653],[-0.035607006400824,-0.10079251974821,0.063943214714527],[0.018713477998972,-0.15394705533981,0.020010426640511]]],[[[-0.1044320166111,-0.030915537849069,0.083364687860012],[-0.030913721770048,0.05114371702075,0.079939164221287],[-0.07033858448267,0.067139632999897,-0.048398371785879]],[[0.0034651164896786,-0.15476307272911,-0.05019124597311],[0.034261461347342,0.010674101300538,0.068014323711395],[-0.052948832511902,0.073079444468021,-0.057061195373535]],[[0.18916773796082,0.051050797104836,-0.12261366099119],[-0.0036435534711927,0.01184485014528,0.015122876502573],[0.0079733729362488,0.026769213378429,-0.033336061984301]],[[0.04134787991643,-0.033572986721992,0.053476825356483],[-0.061138872057199,-0.022646013647318,-0.081637986004353],[0.1538455337286,0.010888863354921,-0.031042905524373]],[[0.037779413163662,0.030138541013002,-0.056484844535589],[0.0055470927618444,-0.091857947409153,-0.18478789925575],[0.094746321439743,-0.12793929874897,0.028816923499107]],[[-0.022763347253203,0.071958363056183,0.16831102967262],[-0.061352703720331,-0.026630515232682,-0.11382842063904],[-0.13215680420399,-0.041689220815897,-0.010650760494173]],[[-0.068767763674259,-0.090145729482174,-0.075081706047058],[-0.032569039613008,-0.091531358659267,-0.075582802295685],[0.002347968518734,-0.079881519079208,0.027558799833059]],[[-0.039789281785488,-0.12620168924332,-0.042059790343046],[-0.086072310805321,-0.062814153730869,-0.045309726148844],[0.061087809503078,-0.0013569950824603,0.046783324331045]],[[0.041373781859875,0.028679814189672,0.0041675809770823],[0.025267709046602,-0.009755969978869,-0.049127828329802],[-0.028227431699634,-0.070711262524128,0.038351371884346]],[[-0.072672836482525,0.038612429052591,0.12165436148643],[-0.1583394408226,0.073210068047047,-0.035863470286131],[-0.029630957171321,-0.072958745062351,-0.076030343770981]],[[0.00040485564386472,-0.033884115517139,0.039421807974577],[0.087115064263344,0.055778183043003,0.22464424371719],[0.096972607076168,-0.16047248244286,-0.19405576586723]],[[-0.0024092621169984,-0.17300020158291,-0.031904604285955],[-0.0076122144237161,0.016447046771646,-0.083486087620258],[0.024221334606409,0.034858800470829,0.022157838568091]],[[0.11059398204088,-0.016067838296294,0.016848541796207],[0.034111116081476,-0.0067136408761144,0.028410585597157],[0.010822395794094,-0.064694419503212,0.068078219890594]],[[0.0074518308974802,-0.030970076099038,-0.078978046774864],[0.14819593727589,0.043671753257513,-0.0066688265651464],[-0.014263009652495,0.061808969825506,0.0032265216577798]],[[0.030986089259386,-0.15323342382908,-0.13172468543053],[0.14465865492821,0.030039953067899,0.011913296766579],[-0.038361072540283,-0.073899663984776,0.01012940518558]],[[0.11099818348885,-0.036425642669201,-0.085835166275501],[0.084000699222088,0.014325809665024,-0.18515801429749],[0.073030397295952,0.10519833862782,-0.023587444797158]],[[0.04510523378849,0.053817935287952,-0.095049656927586],[0.1403324753046,0.040077857673168,-0.02522992901504],[0.039332021027803,-0.0059498990885913,0.045582313090563]],[[-0.041001044213772,-0.045552834868431,-0.049336273223162],[-0.070447497069836,0.11262506246567,-0.0033981841988862],[0.019396044313908,-0.050843507051468,0.052822288125753]],[[-0.10950168967247,0.10062849521637,0.0042933076620102],[-0.0020354071166366,-0.039441552013159,0.14328379929066],[0.10641034692526,0.032432083040476,0.056827031075954]],[[0.0054953093640506,-0.14872050285339,0.11843237280846],[-0.041169874370098,0.016974283382297,-0.12707163393497],[-0.027632750570774,0.051557283848524,0.19765709340572]],[[-0.10450260341167,0.038534704595804,0.071868985891342],[0.13054053485394,-0.055073268711567,-0.11609480530024],[-0.058877762407064,0.049614321440458,-0.035457257181406]],[[0.081315830349922,-0.031448770314455,-0.013173324987292],[-0.031205726787448,-0.0029385704547167,-0.079514466226101],[-0.021650407463312,-0.012773023918271,-0.037753392010927]],[[0.010989580303431,-0.078009389340878,0.026083061471581],[0.077948622405529,-0.0092794680967927,-0.025656899437308],[0.051477618515491,0.00900689791888,-0.1116189956665]],[[0.12775276601315,0.061394266784191,-0.014987820759416],[0.10668091475964,0.13094748556614,0.0065356874838471],[-0.080051891505718,-0.11609169840813,-0.0244475081563]],[[-0.013010167516768,-0.027815731242299,0.016991917043924],[0.078220725059509,0.050834983587265,-0.056702811270952],[0.051040731370449,-0.030455075204372,0.08062818646431]],[[-0.022426549345255,0.021219851449132,-0.021939819678664],[-0.26884186267853,-0.0030668003018945,0.0042796530760825],[-0.074104875326157,0.060205448418856,-0.042142704129219]],[[-0.05301945656538,0.014081327244639,0.02306598983705],[0.011918493546546,-0.024266241118312,-0.057134822010994],[0.001662993687205,-0.014376066625118,-0.10777931660414]],[[0.17056402564049,-0.019829811528325,-0.012955797836185],[0.042478919029236,0.029149169102311,-0.03809080272913],[0.033880867063999,0.11145899444818,-0.16918525099754]],[[0.0024704169481993,0.083855904638767,-0.0062651899643242],[-0.010639098472893,-0.10277573764324,0.0045093460939825],[-0.050346847623587,-0.095143727958202,-0.067237503826618]],[[-0.013636874966323,-0.14105585217476,-0.13979648053646],[0.1035663485527,-0.030077243223786,0.033361751586199],[0.080651685595512,-0.010573358274996,0.08168476074934]],[[0.08950811624527,-0.027249246835709,0.019236959517002],[0.14943887293339,0.0038917325437069,-0.051662467420101],[-0.088232852518559,-0.091718621551991,0.044562458992004]],[[0.017301589250565,-0.0029694603290409,0.044238522648811],[-0.0069912620820105,0.0070361569523811,0.044325903058052],[0.094946995377541,0.082894191145897,0.065500728785992]],[[0.031135600060225,-0.092649534344673,0.09238363057375],[-0.14162933826447,-0.027923889458179,-0.079707860946655],[0.058977387845516,0.053183764219284,0.06119241937995]],[[-0.035448525100946,-0.063693486154079,-0.082319967448711],[-0.016593711450696,-0.13620735704899,-0.079595528542995],[-0.038193415850401,0.081136226654053,-0.077807977795601]],[[0.051265459507704,0.16149404644966,0.13674999773502],[-0.052055347710848,0.029590809717774,-0.074610933661461],[-0.0865842923522,-0.088878966867924,-0.0063438978977501]],[[-0.020766844972968,0.038549516350031,-0.025107813999057],[-0.031297743320465,-0.00090783007908612,0.087049819529057],[0.039062395691872,0.031178718432784,-0.070986181497574]],[[0.04962307959795,0.059204485267401,-0.081736676394939],[-0.084147624671459,-0.037972196936607,0.046452019363642],[0.076396502554417,0.0092964693903923,-0.0054034809581935]],[[0.01875289157033,0.021340103819966,0.027917882427573],[0.097946301102638,0.069078393280506,-0.04334232583642],[-0.078989319503307,-0.016903096809983,-0.1697928160429]],[[0.082477405667305,-0.10649353265762,0.11401040107012],[-0.028253775089979,0.036213576793671,0.085716731846333],[-0.0010671477066353,-0.067972026765347,0.015931908041239]],[[0.094171814620495,-0.11940395832062,-0.072529725730419],[0.074223272502422,0.0057400553487241,0.018188066780567],[0.026288030669093,0.074558615684509,-0.057272292673588]],[[-0.06695369631052,0.036400813609362,-0.10735320299864],[0.051366977393627,0.15318822860718,0.093355678021908],[-0.014278559014201,-0.066817343235016,0.031840801239014]],[[0.081088483333588,-0.02602619305253,0.088039427995682],[0.070071637630463,0.0023361146450043,0.050345875322819],[-0.11230064928532,-0.070036873221397,0.084064826369286]],[[0.069941945374012,-0.035752028226852,0.13494043052197],[-0.17250703275204,0.11169715225697,-0.039457775652409],[-0.0080902017652988,-0.060047328472137,0.017742270603776]],[[-0.0020304066129029,0.0079320957884192,-0.066464781761169],[0.082191176712513,0.064648553729057,0.051818855106831],[0.0005326239624992,0.0097715258598328,0.080772466957569]],[[0.011495965532959,0.046555861830711,0.0028601419180632],[0.026214083656669,-0.11559358239174,-0.0048511540517211],[-0.0080761732533574,0.14641973376274,-0.017194578424096]],[[-0.051433742046356,-0.083052970468998,0.0044577172957361],[-0.042842984199524,0.032421465963125,0.047527108341455],[-0.070985488593578,-0.017479028552771,-0.019461454823613]],[[0.10482161492109,0.063718974590302,-0.076255820691586],[-0.077778562903404,-0.15085719525814,0.052780669182539],[0.021836560219526,0.12060552835464,-0.17658291757107]],[[-0.057709660381079,-0.12882591784,-0.072289884090424],[0.06897559762001,-0.064689174294472,0.027534756809473],[0.10780277848244,0.008490776643157,-0.12350760400295]],[[-0.00277363602072,-0.06771245598793,-0.15080150961876],[-0.04278863966465,0.13465143740177,-0.0020642119925469],[0.13734339177608,-0.022412307560444,0.018977731466293]],[[0.020858904346824,-0.072161868214607,0.020924311131239],[-0.066472016274929,-0.062109086662531,-0.025853298604488],[0.037330500781536,0.091592617332935,-0.022712608799338]],[[-0.085204444825649,-0.0033417220693082,0.011029745452106],[-0.0045110858045518,-0.058684654533863,-0.08495669811964],[0.049217291176319,0.067793734371662,0.075544618070126]],[[0.020022949203849,-0.018668049946427,-0.022844858467579],[-0.034172166138887,-0.094930686056614,-0.11593271791935],[0.1049989759922,0.078805983066559,0.075386479496956]],[[-0.039555124938488,0.0079834377393126,-0.089509896934032],[-0.11400067806244,-4.9944850616157e-05,0.036532364785671],[-0.16159844398499,0.12449248880148,0.045303478837013]],[[-0.25153866410255,-0.014179460704327,-0.022607604041696],[-0.12440380454063,-0.093602821230888,-0.039147771894932],[-0.025793544948101,-0.001847843057476,-0.0038692045491189]],[[-0.098355405032635,0.047522909939289,-0.18527726829052],[0.016753552481532,0.004408395383507,-0.064422369003296],[-0.04201989620924,0.00011154667299706,0.0061032702215016]],[[-0.12068447470665,-0.20249550044537,-0.17644339799881],[-0.05210592597723,-0.040006890892982,0.0021658088080585],[0.088450394570827,0.0081243524327874,-0.070745527744293]],[[-0.034025061875582,0.038947060704231,-0.06647364795208],[-0.077625386416912,0.0046955072320998,-0.093601316213608],[-0.078353084623814,0.03104118257761,-0.057556193321943]],[[-0.075414709746838,-0.028216723352671,0.11898893862963],[-0.034959107637405,-0.01356001291424,0.15961764752865],[0.067319817841053,0.11131338775158,0.050012305378914]],[[-0.066354848444462,-0.13017235696316,-0.046512696892023],[-0.083415038883686,-0.09761705994606,0.0055552432313561],[0.10453353822231,-0.064844541251659,-0.063195608556271]],[[-0.12287313491106,-0.082054644823074,0.072291240096092],[-0.071326203644276,0.035110201686621,0.13707818090916],[0.0093278642743826,0.030368845909834,0.097728595137596]],[[-0.080099008977413,-0.018947903066874,-0.063869327306747],[-0.091291166841984,0.13480047881603,-0.01463941577822],[0.0089071039110422,0.086988136172295,-0.048615049570799]],[[-0.033525940030813,-0.02794748544693,-0.039045631885529],[-0.013642598874867,-0.036912392824888,0.081817120313644],[-0.23958267271519,0.062769941985607,0.0093097100034356]],[[0.06681827455759,0.00053417519666255,-0.038476329296827],[-0.10883818566799,-0.089252680540085,0.12687887251377],[0.027048310264945,0.1177963167429,0.055078431963921]],[[-0.15392203629017,-0.010160906240344,0.059564236551523],[-0.12846852838993,0.03008215688169,0.15215271711349],[0.0078062932007015,0.1300332993269,0.047667898237705]]],[[[0.044891733676195,-0.15666584670544,0.031565744429827],[-0.046274401247501,0.050802905112505,0.025805613026023],[-0.055878795683384,0.07728386670351,-0.10018020123243]],[[0.10811636596918,0.053744681179523,-0.038366440683603],[0.072429031133652,-0.10048148036003,-0.027886705473065],[-0.019456546753645,0.012779659591615,-0.13408379256725]],[[0.031821575015783,0.12190845608711,0.02871511131525],[0.093242414295673,0.0055370801128447,-0.12694355845451],[-0.030903600156307,-0.074884414672852,0.0024109077639878]],[[0.069276057183743,-0.15184351801872,-0.0037775686942041],[0.010563881136477,-0.1028380766511,-0.059606019407511],[0.10033147782087,0.0092900162562728,-0.048547007143497]],[[-0.054518427699804,-0.12469035387039,0.048041760921478],[-0.11113950610161,0.024046201258898,0.0028327289037406],[-0.12476263195276,-0.038115676492453,0.0078417360782623]],[[0.002214067382738,-0.051504269242287,0.10746811330318],[0.12905466556549,-0.11344486474991,0.040570642799139],[0.012777688913047,0.13704743981361,-0.019543141126633]],[[-0.024802727624774,-0.026784248650074,-0.010169647634029],[-0.054768215864897,-0.093919031322002,0.020591804757714],[-0.036314871162176,0.077879711985588,-0.12848018109798]],[[-0.027289045974612,0.022948725149035,0.046281728893518],[0.03600212559104,-0.077006198465824,0.010016939602792],[-0.13509705662727,0.025143736973405,0.0039483951404691]],[[-0.066979736089706,0.029515078291297,-0.0056815831921995],[0.065816462039948,-0.0017506662989035,0.011869873851538],[-0.085317686200142,-0.011428816244006,0.047496970742941]],[[-0.055719893425703,0.095842115581036,-0.050520077347755],[-0.068638697266579,-0.041789710521698,0.11300302296877],[-0.058885108679533,-0.15578684210777,-0.05430481955409]],[[-0.031284138560295,0.15945357084274,-0.0099032623693347],[0.0026194313541055,-0.062189172953367,0.061721786856651],[-0.027291191741824,0.10265494138002,-0.032351966947317]],[[0.026846788823605,0.014775746501982,-0.079847767949104],[-0.071073919534683,-0.064704291522503,-0.042992018163204],[-0.03796836361289,0.044416856020689,0.0089415619149804]],[[0.074185468256474,0.043390061706305,0.025526760146022],[0.0072663095779717,-0.13609051704407,0.0074019585736096],[0.067923165857792,0.079906761646271,-0.098314538598061]],[[0.013888340443373,-0.055326748639345,-0.025734208524227],[0.013444911688566,-0.15562629699707,0.021499933674932],[-0.078956425189972,0.10937301814556,-0.038251340389252]],[[0.073995120823383,0.0066932742483914,0.05726920068264],[-0.17802381515503,-0.15093411505222,-0.12506620585918],[0.1511000841856,-0.09789327532053,-0.050856571644545]],[[0.062915146350861,0.0021437890827656,0.07583424448967],[-0.032365720719099,0.086032882332802,0.047743126749992],[-0.015732113271952,-0.0022550718858838,-0.018907867372036]],[[-0.037198465317488,-0.10109897702932,0.011379602365196],[0.045373760163784,-0.092084839940071,-0.016805861145258],[-0.02068504691124,0.17495879530907,0.077345378696918]],[[0.014366624876857,0.027598498389125,-0.041289553046227],[-0.091048434376717,-0.11580438166857,-0.11219488829374],[-0.014281688258052,-0.11526913940907,0.010550510138273]],[[0.024169478565454,0.047996304929256,0.018570128828287],[-0.019338751211762,-0.022523805499077,-0.032450951635838],[0.00021191294945311,-0.12698331475258,0.015999043360353]],[[-0.03680632635951,0.064762659370899,0.04351732134819],[0.029752809554338,0.017429828643799,0.039109744131565],[0.12376371771097,-0.054203491657972,0.021284837275743]],[[0.019156692549586,0.044737108051777,-0.096769087016582],[-0.10045393556356,-0.060975212603807,-0.13653911650181],[-0.030654260888696,0.12295595556498,0.09291934967041]],[[-0.13727968931198,-0.0046220100484788,-0.0025384915061295],[-0.083900138735771,-0.025024972856045,-0.047947071492672],[-0.025047518312931,0.12029821425676,0.023440461605787]],[[-0.028388196602464,-0.076186634600163,-0.081823572516441],[0.11436781287193,0.070467047393322,-0.004549718927592],[-0.081290580332279,-0.066948041319847,-0.0056096375919878]],[[-0.068254798650742,-0.09711267799139,0.10782803595066],[-0.044283669441938,-0.068366207182407,-0.06431008130312],[0.076919637620449,-0.070879116654396,0.082124128937721]],[[-0.14586848020554,-0.016016278415918,0.016321325674653],[0.062783844769001,-0.16037574410439,-0.010862461291254],[0.013088637962937,0.03253959864378,0.021174669265747]],[[0.045544128865004,-0.058639746159315,0.018716230988503],[-0.038294237107038,0.038820706307888,-0.096867971122265],[0.078117519617081,0.016114454716444,-0.11721308529377]],[[-0.11155068129301,0.013734868727624,-0.040116466581821],[-0.0093840733170509,0.071571327745914,0.0706737190485],[-0.035820290446281,0.10482067614794,-0.20560191571712]],[[-0.055852808058262,-0.11033451557159,0.18605338037014],[-0.077008135616779,-0.11049918830395,-0.14281897246838],[0.076943024992943,-0.1673142015934,0.067230448126793]],[[0.040108524262905,0.048842642456293,-0.12851397693157],[-0.034368608146906,-0.03564915433526,0.073928087949753],[0.058547906577587,-0.026454722508788,-0.21392659842968]],[[-0.005747159011662,-0.075294032692909,-0.073801718652248],[0.13495314121246,0.021694473922253,-0.085542850196362],[0.090612567961216,0.040472649037838,-0.042364910244942]],[[0.078466013073921,0.15374937653542,-0.054072540253401],[-0.099920228123665,0.067014925181866,-0.073897525668144],[0.0056203589774668,0.080593824386597,-0.06162317097187]],[[0.015097105875611,0.093146085739136,0.029800243675709],[-0.09945347905159,-0.066012844443321,-0.070307746529579],[0.13420216739178,-0.18938507139683,0.040791872888803]],[[-0.062649145722389,-0.14481973648071,-0.031749293208122],[0.0031474675051868,0.042734049260616,0.076760195195675],[0.0077692284248769,-0.072475016117096,-0.13511736690998]],[[-0.061390358954668,-0.10722304135561,-0.21923470497131],[-0.041212126612663,0.066592544317245,0.09822379052639],[-0.022481115534902,0.1694940328598,0.075941801071167]],[[-0.07822322845459,-0.12105865776539,0.013510438613594],[0.076071590185165,-0.015959598124027,-0.041685815900564],[0.076449617743492,0.010158036835492,-0.032268788665533]],[[0.12829950451851,-0.097978688776493,-0.028390100225806],[-0.011889199726284,0.14860254526138,-0.043427605181932],[0.055211488157511,-0.065004862844944,-0.059406824409962]],[[-0.010510156862438,-0.043893896043301,0.02623613551259],[0.10179591178894,-0.03435255587101,0.045769676566124],[0.012186735868454,-0.013499831780791,0.042458653450012]],[[-0.054582975804806,-0.017235741019249,0.13079442083836],[0.066545478999615,-0.19850438833237,0.039519645273685],[-0.25187510251999,-0.066528096795082,0.021364565938711]],[[0.013172723352909,0.01935687661171,-0.06231502443552],[0.024025814607739,0.033656399697065,-0.004859387408942],[0.066739529371262,-0.0047164354473352,-0.058052908629179]],[[-0.024204960092902,0.032958973199129,-0.11258352547884],[-0.12426025420427,0.067886784672737,0.021162005141377],[0.092746496200562,-0.079475685954094,-0.048967365175486]],[[-0.069719739258289,-0.019862165674567,-0.24045126140118],[0.12008655071259,0.056599643081427,-0.11989011615515],[0.12963110208511,0.065429031848907,0.028368769213557]],[[-0.075097866356373,-0.062404815107584,-0.035677690058947],[-0.081146992743015,-0.017389291897416,-0.097896039485931],[0.1085242331028,-0.014758445322514,-0.030882736667991]],[[0.076026536524296,-0.059899810701609,-0.12492515146732],[-0.030088186264038,-0.075213737785816,-0.047722883522511],[0.027889870107174,-0.052897144109011,0.0075015714392066]],[[0.049073521047831,0.045437064021826,0.04121819883585],[0.044723182916641,-0.13567274808884,-0.080224901437759],[0.086318075656891,0.0073249023407698,-0.035538110882044]],[[0.043265216052532,-0.060004364699125,-0.06231813877821],[-0.14531436562538,-0.089879594743252,-0.057250291109085],[0.08719240874052,-0.038606178015471,-0.090500399470329]],[[0.05959016084671,0.031184723600745,0.026582913473248],[0.030993169173598,-0.02110493928194,-0.12244830280542],[0.067191414535046,0.024006713181734,0.12408063560724]],[[0.079993918538094,0.03629232198,-0.0075892182067037],[0.15036670863628,-0.048632837831974,0.019057488068938],[-0.12757584452629,-0.013343992643058,0.033576961606741]],[[-0.13219444453716,-0.027056090533733,0.028582714498043],[0.0570108294487,-0.00086390657816082,-0.024577341973782],[-0.14604738354683,0.10676972568035,-0.070690169930458]],[[0.080220840871334,0.0086370287463069,-0.16914780437946],[-0.05536301061511,-0.058818764984608,-0.069099240005016],[-0.061249379068613,0.009726813994348,-0.024266799911857]],[[0.027627909556031,-0.0017696656286716,0.056746378540993],[-0.029270911589265,-0.019721876829863,-0.10639991611242],[0.068339489400387,-0.13137170672417,0.1046823784709]],[[-0.11000504344702,-0.15531313419342,0.0041437572799623],[-0.055622428655624,-0.15571215748787,-0.082193747162819],[0.073661714792252,-0.02713187225163,-0.20267555117607]],[[-0.023214519023895,-0.090842008590698,0.0058959382586181],[-0.10868595540524,0.038389526307583,-0.0076669994741678],[0.060941517353058,-0.2069354057312,0.1114467009902]],[[-0.019181551411748,-0.028978653252125,0.050146237015724],[-0.033444505184889,-0.084924198687077,-0.0035007970873266],[0.037647500634193,0.076250471174717,0.025242857635021]],[[-0.050878990441561,0.041045539081097,0.063301637768745],[-0.012867569923401,-0.0038368939422071,-0.10258062183857],[0.16168719530106,-0.077092804014683,-0.1859974116087]],[[-0.067932814359665,0.026493165642023,-0.13317090272903],[0.060992483049631,-0.0051197549328208,0.12410539388657],[0.014097291976213,-0.0017991706263274,0.14886397123337]],[[0.025154914706945,-0.0990184918046,0.2464914470911],[0.010808649472892,0.044177945703268,0.095441661775112],[-0.035843320190907,-0.047758720815182,0.040473345667124]],[[0.068472564220428,-0.040918588638306,0.066759139299393],[-0.049684196710587,0.18363484740257,0.047717969864607],[-0.069802649319172,0.089113146066666,0.06234872713685]],[[-0.10809218138456,-0.073100782930851,-0.048935178667307],[-0.018431762233377,-0.034607920795679,-0.09132494777441],[-0.036163970828056,-0.1648014485836,-0.024832330644131]],[[-0.030555253848433,0.14280174672604,-0.041887499392033],[0.085066974163055,0.020152907818556,-0.11253181099892],[-0.17876625061035,-0.0816909968853,-0.048472635447979]],[[0.053014203906059,-0.13798478245735,0.0070037404075265],[0.10179327428341,0.038328628987074,-0.075455352663994],[0.05795481055975,-0.11509564518929,0.05557107180357]],[[0.001389768673107,0.010054026730359,-0.070845492184162],[0.097687467932701,0.030341411009431,0.03179382905364],[-0.073199652135372,0.049315579235554,0.018251085653901]],[[-0.10081090778112,0.016870243474841,-0.019569465890527],[-0.082269378006458,-0.061797492206097,-0.035007108002901],[-0.092466220259666,-0.21022625267506,-0.031799089163542]],[[-0.076108105480671,-0.04297261312604,-0.020137812942266],[0.013224029913545,0.15602315962315,0.19143834710121],[-0.070419527590275,0.032716769725084,-0.12921087443829]],[[0.07064825296402,-0.070169538259506,-0.13283303380013],[-0.071728132665157,0.029895002022386,0.091705553233624],[-0.014190386980772,0.026490664109588,-0.22845350205898]]],[[[0.062838606536388,-0.030430499464273,0.052153248339891],[-0.014380500651896,-0.042764823883772,-0.05080895870924],[-0.020198788493872,-0.001674105762504,0.044419519603252]],[[0.024572229012847,0.065659120678902,0.0011469891760498],[-0.1271794885397,0.013095457106829,0.0050276573747396],[-0.070121623575687,0.12974251806736,-0.058072060346603]],[[0.0084646213799715,0.044395253062248,0.045184936374426],[0.018336983397603,-0.0183050557971,-0.053641144186258],[-0.084586374461651,-0.019737688824534,0.0758406072855]],[[0.021336205303669,0.018928790464997,0.010740545578301],[0.051493708044291,-0.013291290029883,-0.050705328583717],[-0.014941615052521,0.02036858536303,-0.030854869633913]],[[-0.075928494334221,0.045555125921965,0.045790500938892],[-0.031775657087564,0.059576839208603,0.0034847492352128],[-0.045500993728638,-0.039349030703306,0.014557206071913]],[[-0.079418286681175,0.00078813900472596,-0.06843963265419],[-0.011123903095722,-0.0056460220366716,0.084211960434914],[0.015941105782986,0.014663595706224,0.030331527814269]],[[0.085378848016262,0.10909336060286,0.048877719789743],[-0.052731700241566,-0.050488412380219,-0.041937988251448],[-0.054860394448042,0.0012906859628856,-0.045896917581558]],[[-0.031270001083612,0.045400585979223,0.043005097657442],[-0.0098934108391404,0.0066305133514106,-0.043864674866199],[-0.087141051888466,0.069482952356339,-0.002308905357495]],[[-0.14429822564125,-0.16786314547062,-0.061250679194927],[-0.23068934679031,-0.18527434766293,-0.069607995450497],[-0.26298788189888,-0.10162032395601,-0.060099139809608]],[[-0.031662650406361,0.011084541678429,-0.0062711727805436],[-0.080833069980145,0.061456251889467,0.083177149295807],[-0.097091071307659,0.03381546959281,0.043918881565332]],[[0.097377441823483,0.031614292412996,-0.046828262507915],[-0.021806493401527,-0.031976021826267,0.029936868697405],[-0.020516093820333,0.002426307182759,-0.025332586839795]],[[0.081664271652699,0.079710431396961,-0.0061585777439177],[0.058209408074617,-0.008386854082346,-0.033574182540178],[0.0059511945582926,-0.09202191978693,-0.018537890166044]],[[-0.035222440958023,-0.027111062780023,-0.029389277100563],[0.075787752866745,0.0010370791424066,-0.033842083066702],[0.063847742974758,-0.034630142152309,0.0066139455884695]],[[-0.011669277213514,0.067562885582447,0.0055529549717903],[-0.046610437333584,-0.028132846578956,-0.0057761217467487],[0.073447689414024,-0.024542925879359,-0.020565008744597]],[[0.072664186358452,-0.061428338289261,-0.014885912649333],[0.010279535315931,-0.049142621457577,0.019413894042373],[0.071143642067909,-0.049648340791464,0.0016311431536451]],[[-0.050304666161537,0.015620423480868,-0.005026999861002],[0.047433286905289,-0.045695375651121,0.042213033884764],[0.031649813055992,-0.031431518495083,0.0038837739266455]],[[-0.050887178629637,0.014342521317303,0.050776079297066],[0.13604947924614,-0.029481133446097,-0.08202313631773],[-0.0035994392819703,-0.016689440235496,-0.0068796495907009]],[[0.0028498417232186,0.029827980324626,-0.020453989505768],[-0.019752023741603,0.064706221222878,-0.039805058389902],[-0.029609948396683,0.041817668825388,-0.035693436861038]],[[0.034248881042004,-0.049691580235958,0.021540120244026],[-0.084400527179241,-0.0085066007450223,-0.034176643937826],[0.08703837543726,0.034799832850695,0.0016472449060529]],[[0.01038399990648,0.020039234310389,-0.13993956148624],[-0.0058224312961102,0.074234284460545,-0.020843168720603],[0.010945462621748,0.023597372695804,0.037731841206551]],[[0.011045283637941,-0.01495340000838,-0.00054394348990172],[0.028208088129759,0.059620518237352,0.060737911611795],[-0.018779173493385,-0.028118280693889,-0.086995206773281]],[[-0.026130018755794,0.11308151483536,0.10340496897697],[-0.05478360503912,0.0024055684916675,0.098847009241581],[-0.045034192502499,-0.083849869668484,-0.069709353148937]],[[-0.002614835742861,0.030505629256368,-0.017338918522],[-0.027653047814965,0.022887723520398,0.0088045746088028],[0.049806337803602,0.033408105373383,-0.093425996601582]],[[-0.11558779329062,0.057035304605961,0.0075954995118082],[-0.041301302611828,0.046793598681688,-0.0021590928081423],[0.050906807184219,0.025489758700132,0.0029331499245018]],[[0.017392031848431,-0.073546037077904,-0.001042224932462],[-0.023446353152394,0.032730270177126,0.07367630302906],[0.028643183410168,-0.027329068630934,-0.013962109573185]],[[-0.0045392755419016,0.028075991198421,-0.010140774771571],[-0.016158865764737,0.043378826230764,0.027485013008118],[0.027005484327674,-0.017433589324355,-0.064062222838402]],[[-0.026473855599761,-0.041825026273727,0.015233216807246],[0.033974092453718,0.026164693757892,-0.010956477373838],[0.029489558190107,-0.0718804448843,-0.0044018402695656]],[[-0.031992770731449,0.06866493076086,-0.063856527209282],[-0.024521419778466,0.034840207546949,0.097614012658596],[-0.053833063691854,0.06029075011611,-0.10093680769205]],[[-0.015685193240643,0.035894531756639,0.0082334512844682],[0.046733926981688,-0.016959378495812,0.0092625245451927],[-0.019524805247784,-0.024574231356382,-0.027925416827202]],[[0.021315993741155,0.0007879373151809,-0.069241151213646],[-0.048975486308336,-0.12420194596052,0.047711342573166],[0.050539668649435,0.052056528627872,0.061104387044907]],[[-0.051428224891424,-0.009716016240418,-0.045963186770678],[0.075938440859318,-0.013256824575365,-0.042845409363508],[0.019355932250619,-0.0040574260056019,0.09362930804491]],[[0.023254103958607,-0.058613531291485,0.0088459542021155],[-0.010075471363962,0.013269920833409,-0.019048921763897],[0.039901699870825,-0.0087716151028872,0.01874496974051]],[[0.095839887857437,-0.011917844414711,-0.025623895227909],[-0.10280926525593,-0.049784734845161,0.045621909201145],[0.051820516586304,0.021135773509741,-0.019043931737542]],[[-0.060045883059502,0.039804209023714,0.00057976186508313],[-0.0071694734506309,0.018687408417463,-0.033746413886547],[0.048462260514498,0.031507708132267,-0.043622132390738]],[[-0.0027485659811646,0.061923056840897,0.047838691622019],[-0.076375313103199,-0.086318783462048,-0.040149133652449],[-0.030756570398808,0.087212279438972,0.056782532483339]],[[0.020114535465837,-0.027699103578925,-0.027358641847968],[0.053656831383705,-0.069751843810081,0.0090796379372478],[0.029222331941128,0.040221326053143,-0.024834962561727]],[[-0.018290262669325,-0.028676141053438,0.0022785193286836],[0.0088420733809471,0.039213914424181,0.055649299174547],[0.057826533913612,-0.035102467983961,-0.053916648030281]],[[-0.13341525197029,0.10685513913631,-0.075663343071938],[0.050457339733839,0.017911843955517,0.051334407180548],[-0.0068512535654008,-0.061975698918104,0.061177685856819]],[[0.10436593741179,0.082282103598118,0.072728134691715],[0.077146016061306,-0.0056008561514318,0.13833500444889],[0.12425225973129,0.065086640417576,0.090129993855953]],[[-0.0010305838659406,-0.069162175059319,0.10862869769335],[-0.053183186799288,-0.05358100309968,-0.053999256342649],[-0.040600303560495,0.068407826125622,0.043869655579329]],[[0.012635974213481,-0.069215707480907,-0.08066550642252],[-0.022622603923082,0.047831438481808,-0.029281366616488],[0.074161566793919,0.065620519220829,0.0071535771712661]],[[0.031771194189787,0.02045477181673,-0.0049484884366393],[-0.010240929201245,-0.033781412988901,0.012967529706657],[0.020043769851327,-0.0026594162918627,-0.059715140610933]],[[0.037240706384182,-0.084264121949673,-0.020460963249207],[0.010938597843051,-0.024308571591973,0.12806572020054],[-0.00088225747458637,-0.041025314480066,-0.0052619511261582]],[[0.062863364815712,-0.0041314321570098,0.030792739242315],[0.029346913099289,0.040617164224386,-0.042595203965902],[0.0085410038009286,-0.05840977653861,-0.04370228946209]],[[-0.078532874584198,-0.043869093060493,-0.032994285225868],[0.0079730255529284,0.068445093929768,0.02694595605135],[0.03680595010519,0.022165291011333,-0.0069991298951209]],[[0.030457597225904,-0.028377648442984,-0.0017521689878777],[0.026509853079915,0.0100541645661,-0.00055830017663538],[0.066002577543259,-0.019974401220679,-0.057240914553404]],[[0.0095683028921485,0.013647730462253,0.024855388328433],[-0.057575702667236,-0.043816853314638,0.0061955493874848],[0.067462161183357,-0.0027811967302114,0.0047456445172429]],[[-0.016115887090564,0.02299234084785,9.586783562554e-05],[-0.030496502295136,0.066602610051632,-0.073916770517826],[0.040021654218435,0.056423485279083,-0.07159911096096]],[[-0.011020525358617,-0.010053536854684,0.016572758555412],[0.036162346601486,0.02674831263721,-0.0038786598015577],[-0.091142363846302,0.083952717483044,-0.022882323712111]],[[0.1008652895689,0.10611956566572,0.011848887428641],[0.062756389379501,0.040256146341562,0.14870809018612],[0.10989820212126,0.070425629615784,0.052235767245293]],[[0.03110839240253,0.023000553250313,0.014408317394555],[-0.10776222497225,-0.046564560383558,0.088974110782146],[0.073757953941822,-0.032309122383595,-0.012667673639953]],[[0.025392290204763,0.057392284274101,0.0022928530815989],[-0.030715821310878,-0.036306411027908,0.014993317425251],[-0.0040123662911355,-0.042507868260145,0.01519604306668]],[[-0.041024301201105,0.043486043810844,0.082445800304413],[-0.011645271442831,0.033218372613192,-0.012914435938001],[0.035453893244267,-0.081826873123646,-0.071686416864395]],[[-0.05509752035141,0.035333428531885,0.07904876768589],[0.043171238154173,-0.03539314866066,-0.018265210092068],[0.0088186711072922,-0.0053207841701806,-0.049386501312256]],[[-0.053630445152521,0.034518834203482,-0.018784141167998],[-0.061967354267836,-0.053502902388573,-0.035458736121655],[0.080829292535782,0.086017444729805,0.02149161323905]],[[0.076971873641014,-0.0031810631044209,0.0033188762608916],[-0.020142961293459,-0.031294316053391,-0.069354444742203],[0.017002750188112,0.032695695757866,-0.040227528661489]],[[0.13999979197979,0.046633161604404,0.085998542606831],[0.0805344581604,0.085873566567898,0.086652107536793],[0.029251802712679,0.060377456247807,0.068710058927536]],[[-0.0031994073651731,-0.021626837551594,0.0067319315858185],[-0.018380178138614,0.020366884768009,-0.021406821906567],[0.023576201871037,0.047776509076357,-0.015186097472906]],[[-0.056256886571646,-0.083977572619915,0.010240068659186],[0.00027049338677898,0.098757401108742,0.0081219729036093],[-0.02595609985292,0.069895647466183,-0.053881261497736]],[[0.074970610439777,-0.11322704702616,0.0021160657051951],[-0.073858134448528,0.1453463435173,-0.027970911934972],[-0.031239280477166,-0.0089573869481683,0.025422032922506]],[[0.046518232673407,0.003986501134932,-0.017429849132895],[-0.025014298036695,0.017700532451272,0.018134186044335],[0.0020672660320997,-0.018566500395536,-0.031753171235323]],[[-0.035625666379929,0.014779918827116,0.0088068461045623],[-0.01090489141643,0.063920088112354,0.011002276092768],[-0.17067690193653,0.067864760756493,0.019656237214804]],[[-0.034660302102566,-0.029892550781369,0.0098946169018745],[-0.0010928492993116,0.066528350114822,0.0098281409591436],[0.014605254866183,-0.03085451386869,0.0056640114635229]],[[-0.036956757307053,-0.056069083511829,0.024336155503988],[0.030742142349482,0.033794306218624,-0.0242083016783],[0.072774149477482,-0.079703494906425,0.033653855323792]]],[[[-0.10481259971857,0.0036833274643868,-0.032796341925859],[-0.062901616096497,0.059360414743423,0.062312185764313],[0.041089810431004,0.035907927900553,0.041371662169695]],[[0.020547287538648,0.077521964907646,-0.024261811748147],[-0.062820270657539,-0.069409348070621,0.037277765572071],[0.071288712322712,0.079481512308121,0.0080175707116723]],[[-0.048289522528648,0.0094151943922043,-0.067696422338486],[0.028962559998035,-0.15550503134727,-0.098946876823902],[0.032614704221487,-0.069221287965775,0.075166441500187]],[[-0.099560990929604,-0.018933894112706,0.017509190365672],[-0.10455542057753,-0.088480435311794,-0.020395439118147],[0.067532114684582,-0.051104836165905,-0.015740048140287]],[[0.029654568061233,-0.0065636783838272,0.074730239808559],[0.078022383153439,-0.064761109650135,0.080294460058212],[-0.081709891557693,-0.11396937072277,-0.060664318501949]],[[0.023866700008512,0.015748852863908,0.011144812218845],[-0.029468156397343,0.051544409245253,0.041206859052181],[-0.10781449824572,0.1250067204237,-0.072720654308796]],[[-0.08405352383852,0.11698836833239,0.047015022486448],[-0.066990911960602,-0.0523128695786,-0.04408660531044],[-0.073754109442234,-0.069596841931343,0.0051367660053074]],[[-0.015215146355331,0.013051751069725,0.027858959510922],[-0.015484666451812,-0.063222706317902,0.056950781494379],[-0.038680925965309,0.022005112841725,-0.082917973399162]],[[0.064863033592701,0.0051232362166047,-0.069770134985447],[0.024371078237891,-0.014332132413983,-0.039419833570719],[0.10612580925226,0.00087139260722324,-0.10446219146252]],[[-0.051047269254923,0.094855926930904,0.0049509620293975],[-0.087597601115704,-0.074793949723244,0.10145123302937],[-0.16923469305038,0.035660199820995,-0.015413943678141]],[[-0.063207663595676,0.094968408346176,-0.024185627698898],[0.049768853932619,-0.0043375748209655,-0.034099359065294],[0.010918334126472,-0.11948832124472,0.024394351989031]],[[-0.15315853059292,0.018490977585316,-0.086307726800442],[-0.072304546833038,0.024092853069305,-0.14222300052643],[0.071461625397205,-0.019997555762529,-0.17544937133789]],[[-0.14752528071404,0.066444978117943,-0.021375238895416],[-0.007190085016191,0.0053141340613365,0.09131583571434],[-0.12189531326294,0.06361747533083,-0.048104006797075]],[[-0.0089233089238405,0.0094210365787148,0.0064188186079264],[-0.028847483918071,0.004710431676358,0.083552479743958],[0.021469444036484,0.018515445291996,-0.040844697505236]],[[-0.060560196638107,-0.023650415241718,-0.005609629675746],[-0.05440391972661,-0.039378736168146,0.017491729930043],[-0.012230638414621,0.053420010954142,0.028011992573738]],[[-0.025774760171771,0.017438501119614,-0.040340609848499],[0.041953094303608,-0.0065364637412131,0.055212642997503],[0.053195558488369,-0.044811628758907,-0.041680000722408]],[[0.073476009070873,-0.03201923891902,-0.081668391823769],[0.0070972498506308,-0.089053601026535,-0.1032545492053],[-0.028007082641125,-0.084572426974773,-0.041533898562193]],[[0.037413448095322,0.0039591826498508,-0.045147750526667],[0.0082898139953613,-0.031582444906235,-0.026649115607142],[-0.090860269963741,-0.046693935990334,-0.045944415032864]],[[0.053374141454697,0.037161342799664,0.038047276437283],[0.023533888161182,-0.0082281241193414,0.012586900964379],[-0.0012777312658727,0.080656483769417,0.018740728497505]],[[-0.042588751763105,-0.08006414026022,-0.024396056309342],[-0.044601712375879,0.011753926984966,-0.017560500651598],[0.066260300576687,-0.016656670719385,0.03720111399889]],[[0.055513419210911,0.076242998242378,-0.035203255712986],[-0.078572727739811,-0.15122589468956,-0.078451409935951],[0.13370509445667,-0.0017279995372519,0.0029083916451782]],[[-0.038837362080812,0.018421916291118,0.1609463840723],[0.096654191613197,-0.18711709976196,0.16915275156498],[0.014463534578681,-0.12350663542747,-0.012462259270251]],[[0.049904812127352,0.051129013299942,0.0018085880437866],[-0.022430850192904,-0.05855680629611,0.0085648288950324],[-0.028696557506919,-0.04769604280591,-0.062550380825996]],[[-0.026808144524693,0.043079528957605,-0.038333054631948],[-0.021481754258275,0.10188818722963,0.012432397343218],[-0.065386399626732,0.035208363085985,0.046050321310759]],[[-0.060859195888042,-0.269606590271,0.060678273439407],[0.022524151951075,-0.17706169188023,0.046982314437628],[-0.046444945037365,-0.25577017664909,0.08602274954319]],[[0.036808211356401,0.032799895852804,0.049508303403854],[-0.011975397355855,0.07423410564661,-0.0312165543437],[0.030653532594442,-0.094799622893333,-0.029749700799584]],[[-0.07129855453968,-0.079199098050594,-0.058096166700125],[-0.10297893732786,-0.043161042034626,-0.11868361383677],[-0.0039211241528392,-0.0071551478467882,-0.047011461108923]],[[0.058869566768408,-0.079458095133305,0.011816225014627],[0.19915841519833,-0.063279330730438,-0.080629400908947],[0.005582744255662,-0.093443132936954,0.082029432058334]],[[-0.050499677658081,-0.092835083603859,0.042278338223696],[0.076753936707973,-0.025872701779008,0.024470664560795],[-0.010892806574702,0.015098143368959,-0.17597252130508]],[[-0.0097189350053668,-0.10218896716833,-0.018557948991656],[0.041274804621935,-0.044750586152077,0.12387248873711],[-0.028907367959619,0.097760789096355,0.070033878087997]],[[-0.034033920615911,0.021520959213376,0.0067804018035531],[-0.054748456925154,0.035554017871618,-0.022490307688713],[-0.06555300951004,0.050054892897606,0.023153275251389]],[[0.10689705610275,0.0061608995310962,-0.049149163067341],[0.01969768665731,0.040195122361183,-0.036651395261288],[-0.11184377223253,0.11623060703278,0.058309238404036]],[[0.010924773290753,-0.06530637294054,-0.047876682132483],[-0.021894311532378,0.0097699128091335,0.0569385625422],[-0.022719437256455,0.079387858510017,-0.031610101461411]],[[-0.021152993664145,0.096345365047455,0.098847925662994],[-0.12426542490721,-0.060488604009151,-0.046232156455517],[-0.10776810348034,0.01102224830538,-0.027560075744987]],[[-0.025816211476922,-0.062173169106245,0.068481050431728],[0.03364947065711,-0.013962316326797,-0.061620838940144],[0.094611912965775,0.0048037366941571,0.11668725311756]],[[-0.0024625428486615,-0.00087945477571338,-0.073896028101444],[0.0038137771189213,-0.00056560523808002,-0.031731888651848],[-0.095988526940346,-0.022181309759617,0.0056017055176198]],[[0.027783039957285,-0.010130026377738,-0.036048997193575],[0.039701011031866,0.01419716514647,0.050541017204523],[0.045239623636007,0.023064747452736,0.034974399954081]],[[-0.062727883458138,0.079188540577888,0.014351420104504],[-0.0036143912002444,0.12710058689117,-0.02064336836338],[0.046456720679998,-0.089827485382557,-0.00061799219110981]],[[-0.022973574697971,0.0035259996075183,0.045194260776043],[0.042038142681122,0.0091055370867252,0.10049056261778],[-0.05381753668189,0.0037551107816398,0.0062257274985313]],[[0.013814535923302,0.039264351129532,-0.01626992598176],[0.048901446163654,-0.020482912659645,0.087588399648666],[-0.048324514180422,0.0080786924809217,0.0038272405508906]],[[0.089404411613941,-0.016935121268034,-0.066186338663101],[-0.062041118741035,0.0014152906369418,-0.07397423684597],[-0.12825003266335,-0.01455554459244,-0.010207640007138]],[[-0.0058976085856557,0.049906592816114,-0.022737331688404],[-0.091449789702892,-0.059356492012739,-0.062036946415901],[0.061459891498089,0.030266236513853,0.036436345428228]],[[-0.0098498566076159,-0.19572101533413,0.014203355647624],[0.028026143088937,-0.23084370791912,0.03932873904705],[0.021208189427853,-0.10021039843559,0.11452122032642]],[[-0.05720142275095,-0.027698112651706,0.056009709835052],[-0.062161363661289,0.00095257657812908,0.08021605014801],[-0.039632756263018,0.010272766463459,0.039576128125191]],[[0.1037979722023,-0.14316889643669,-0.03909882158041],[0.011192253790796,-0.1018853187561,-0.022403288632631],[-0.089919745922089,0.038088005036116,0.037186488509178]],[[0.017243580892682,0.059683836996555,-0.046740721911192],[-0.0011438633082435,0.062996745109558,-0.015909597277641],[-0.081449411809444,-0.002935808384791,-0.0064737130887806]],[[0.030485019087791,0.018963625654578,0.021314594894648],[-0.019498212262988,0.071489840745926,0.048433989286423],[-0.059893287718296,-0.0042308527044952,-0.032770190387964]],[[-0.055460382252932,-0.015431920997798,-0.063245579600334],[-0.0044673136435449,-0.06829097121954,-0.058268211781979],[-0.13095423579216,-0.066727235913277,-0.014936771243811]],[[-0.024915225803852,-0.057290595024824,0.02482801489532],[-0.031265240162611,0.010012349113822,-0.017950944602489],[0.037123885005713,0.062597386538982,-0.0070144673809409]],[[-0.14930409193039,0.065432675182819,0.046654261648655],[-0.15787827968597,0.06877363473177,0.083223395049572],[-0.13842776417732,0.026939835399389,0.12816855311394]],[[0.050027929246426,-0.25766348838806,0.093160711228848],[0.1086707264185,-0.13285458087921,0.073800347745419],[-0.056302297860384,-0.055065348744392,0.020257886499166]],[[0.015487829223275,0.056685838848352,-0.0079264268279076],[-0.040312208235264,-0.018667152151465,0.057951241731644],[-0.15003491938114,-0.028131861239672,0.025436364114285]],[[0.034518238157034,0.050656683743,0.085962787270546],[0.14834785461426,-0.028285684064031,0.09041041880846],[0.038060240447521,0.12819261848927,-0.013453891500831]],[[-0.09385746717453,-0.049524772912264,0.042265024036169],[-0.055627159774303,-0.028374282643199,-0.017175167798996],[-0.068110793828964,0.037174087017775,-0.042492337524891]],[[-0.028952309861779,-0.031348846852779,0.031332120299339],[-0.039751764386892,-0.073384568095207,-0.15463253855705],[-0.16622273623943,0.036044888198376,-0.066651657223701]],[[0.01230302080512,-0.0099066495895386,-0.025601301342249],[-0.004941314458847,-0.034456271678209,-0.071641087532043],[7.0909954956733e-06,-0.050558600574732,-0.022800141945481]],[[-0.099913090467453,-0.048940882086754,-0.035574104636908],[-0.012665458023548,-0.030387027189136,0.005865465849638],[-0.031692940741777,-0.043273918330669,-0.039966706186533]],[[-0.098899632692337,0.035991031676531,-0.023866292089224],[-0.043785680085421,-0.032564807683229,0.018465477973223],[0.025153426453471,0.04715209454298,-0.035156201571226]],[[-0.10289673507214,-0.0049490579403937,-0.053073234856129],[-0.063237234950066,0.010562458075583,0.027437269687653],[-0.13633316755295,0.084281601011753,0.051084905862808]],[[-0.10219991207123,0.063736699521542,-0.061907678842545],[0.078325003385544,0.0012596568558365,0.045961391180754],[0.019421346485615,-0.027709014713764,-0.077941998839378]],[[-0.022963937371969,-0.086843125522137,0.070930995047092],[0.0063086822628975,-0.0053546596318483,-0.020155176520348],[-0.027669271454215,0.020908150821924,-0.025067182257771]],[[-0.027307746931911,0.089852102100849,0.10074555128813],[-0.011370281688869,0.064670041203499,-0.071251936256886],[0.013516711071134,-0.059079341590405,0.10865753144026]],[[-0.043106630444527,0.045311249792576,0.061278883367777],[0.047559302300215,-0.071662865579128,0.035924714058638],[-0.012767848558724,-0.035152707248926,0.0001264378806809]],[[-0.081824578344822,-0.068077430129051,0.016793536022305],[0.0025141306687146,-0.066344603896141,0.0011962556745857],[-0.058244977146387,-0.1273221373558,0.0586365647614]]],[[[-0.03505090996623,0.13976809382439,0.085675396025181],[0.011530417017639,-0.072316095232964,0.035405810922384],[0.0087245283648372,0.027502259239554,-0.11636671423912]],[[-0.0463089607656,-0.0793412104249,0.056544035673141],[0.062161102890968,0.11726009845734,-0.011606231331825],[-0.0041477628983557,-0.070485912263393,0.048599515110254]],[[0.15112528204918,-0.066935896873474,-0.086478233337402],[0.04126813262701,0.12741768360138,-0.030436830595136],[0.017059683799744,0.038047231733799,-0.031911425292492]],[[0.038775991648436,-0.13446618616581,0.0025909503456205],[-0.031311426311731,-0.088492497801781,-0.052163127809763],[0.045339472591877,-0.07051619887352,-0.035803616046906]],[[0.064187981188297,0.1270460486412,0.052216816693544],[0.010354464873672,0.087217606604099,0.090698428452015],[-0.019605126231909,-0.068482838571072,0.082670576870441]],[[-0.025501662865281,0.073737107217312,0.14430882036686],[-0.12696871161461,0.13192644715309,-0.027527378872037],[-0.071066088974476,-0.093406580388546,0.081180423498154]],[[-0.11106138676405,0.019934639334679,-0.0016222727717832],[-0.058198470622301,0.061348494142294,0.12833788990974],[0.048864725977182,-0.034216411411762,-0.026800790801644]],[[-0.030633362010121,-0.12644520401955,0.0045776884071529],[0.018858980387449,-0.090142659842968,-0.057875916361809],[0.18449479341507,0.00087077124044299,-0.047838699072599]],[[-0.0089111104607582,-0.00097387889400125,-0.094581171870232],[-0.039476692676544,-0.0038503287360072,0.053736712783575],[0.048241280019283,-0.016084728762507,0.051350839436054]],[[-0.10128338634968,-0.077197439968586,-0.052463542670012],[0.072893656790257,-0.16946385800838,0.076200716197491],[0.06219894066453,-0.14225825667381,-0.064642690122128]],[[0.043861478567123,-0.076155416667461,-0.033411413431168],[0.044583097100258,-0.0053049912676215,0.1288620531559],[-0.13868770003319,-0.04160375893116,-0.025482017546892]],[[0.055205404758453,-0.034128855913877,-0.019266633316875],[0.061966601759195,0.016518015414476,-0.094235427677631],[-0.075673319399357,0.030549081042409,-0.06552742421627]],[[0.090111039578915,-0.041820593178272,0.0050358301959932],[-0.057752288877964,0.024299716576934,-0.029249945655465],[-0.061550237238407,-0.018064273521304,0.024984588846564]],[[0.020763963460922,-0.054532684385777,0.02609396353364],[0.10479679703712,-0.026357393711805,0.036849565804005],[-0.023855451494455,0.070458695292473,0.0078398790210485]],[[-0.082252241671085,0.040610525757074,0.010722611099482],[-0.081116631627083,-0.20082707703114,-0.11450926959515],[-0.028579147532582,-0.073507808148861,0.021145172417164]],[[0.076932892203331,0.060512594878674,-0.1271713078022],[-0.084557071328163,0.018230946734548,-0.08512157946825],[-0.093533553183079,0.067507527768612,-0.029260268434882]],[[0.12166189402342,-0.074913710355759,0.042239364236593],[0.010415220633149,0.02682444639504,-0.046651668846607],[-0.069789320230484,0.014160929247737,0.024864537641406]],[[0.052497826516628,-0.031652119010687,0.077877663075924],[0.08095733076334,-0.028027532622218,-0.045174241065979],[-0.10446015000343,-0.0062325466424227,0.069819733500481]],[[-0.015764961019158,0.043883237987757,0.17729145288467],[-0.0049286363646388,0.0058023664169014,-0.05502662062645],[0.038460202515125,-0.075191646814346,-0.009217320010066]],[[0.059438567608595,-0.097083225846291,0.16369464993477],[-0.11335572600365,-0.059456788003445,-0.14777532219887],[-0.045534696429968,-0.081677384674549,-0.015039892867208]],[[0.036965373903513,-0.11847522109747,-0.031120374798775],[0.092316478490829,-0.24456140398979,0.17262406647205],[0.032150320708752,0.041873019188643,-0.098210796713829]],[[-0.095282457768917,0.030186001211405,0.11405598372221],[-0.029724843800068,0.0092347431927919,0.12066578119993],[-0.029118616133928,-0.14410063624382,-0.024967193603516]],[[0.001394780818373,-0.00039748643757775,0.072677440941334],[-0.023067777976394,0.083722993731499,-0.061980120837688],[-0.07812474668026,-0.018124394118786,0.02525837905705]],[[-0.057707849889994,0.062532871961594,0.043637175112963],[-0.042688824236393,0.022506736218929,0.061334192752838],[0.0073872250504792,-0.086671128869057,-0.010043678805232]],[[-0.15402746200562,0.0039995363913476,0.11409893631935],[-0.016417236998677,-0.082967199385166,0.10852129012346],[0.10142137855291,0.0026761137414724,-0.03797085210681]],[[0.047893945127726,0.081019431352615,-0.077181667089462],[-0.085128739476204,-0.0027499301359057,0.011307390406728],[-0.14287787675858,0.045239623636007,0.038597136735916]],[[-0.20985890924931,0.044837810099125,0.063516817986965],[-0.011689007282257,0.024926763027906,0.010535797104239],[0.050383314490318,0.032706763595343,0.025942528620362]],[[-0.092807129025459,0.11079264432192,0.055445607751608],[0.055547881871462,-0.035021264106035,0.030884619802237],[-0.16186489164829,-0.098676010966301,0.03254259377718]],[[-0.047241128981113,-0.053661298006773,0.063985705375671],[0.039432011544704,0.025065524503589,0.031883243471384],[-0.091182738542557,0.020524894818664,0.016403367742896]],[[0.022310616448522,0.093261010944843,0.053413596004248],[0.05655899271369,0.0032138666138053,-0.0053662611171603],[0.031005015596747,-0.078289709985256,-0.22684060037136]],[[-0.013710450381041,0.014964016154408,0.025389790534973],[0.0097747286781669,-0.1820182800293,-0.10615245997906],[-0.030881352722645,-0.17288522422314,-0.010981692932546]],[[-0.095592692494392,0.011837009340525,0.11376282572746],[0.050650302320719,0.071024425327778,-0.13391135632992],[-0.04545259848237,-0.070327661931515,0.052239738404751]],[[-0.019354101270437,-0.084725022315979,0.17805062234402],[-0.10051181167364,0.03233477473259,-0.081977598369122],[-0.03033989854157,0.042839728295803,-0.027489762753248]],[[0.079592630267143,0.12644146382809,0.011253201402724],[-0.010807668790221,-0.10804527997971,-0.039344791322947],[-0.22118976712227,-0.027659729123116,-0.11924540996552]],[[-0.023861834779382,-0.0056005590595305,-0.0031368639320135],[0.047488860785961,-0.028954902663827,-0.011032526381314],[0.091640375554562,0.018010854721069,0.038023576140404]],[[0.064203716814518,0.11664513498545,0.13253797590733],[0.0047737741842866,-0.023365946486592,-0.041312448680401],[-0.13147497177124,-0.084886193275452,-0.027391070500016]],[[0.10676997154951,0.038254924118519,0.091721057891846],[-0.048010412603617,0.038915753364563,0.035875327885151],[0.014962267130613,-0.21087723970413,0.014749132096767]],[[-0.10164516419172,0.013962158933282,-0.015852207317948],[-0.068316102027893,-0.0015147182857618,0.022224465385079],[0.11668657511473,-0.052453711628914,-0.01523988135159]],[[0.016169147565961,0.043834641575813,0.055752616375685],[0.016517214477062,0.068244583904743,0.065522521734238],[-0.084065802395344,0.048655427992344,0.15506534278393]],[[0.12818579375744,0.026992311701179,0.024982690811157],[0.033891662955284,-0.046693116426468,0.0096644014120102],[-0.064443588256836,0.036733247339725,0.00068098137853667]],[[-0.038893397897482,-0.021729476749897,-0.042380772531033],[-0.021280443295836,-0.077255509793758,-0.012725205160677],[-0.038707889616489,-0.10070836544037,-0.026910537853837]],[[0.062560670077801,0.017056591808796,-0.062550269067287],[-0.0039300974458456,0.035326071083546,-0.0969183370471],[0.025170728564262,-0.070343911647797,0.057372100651264]],[[-0.1832023113966,-0.018672231584787,0.0035969333257526],[0.039388556033373,0.012326831929386,0.046590849757195],[0.088319413363934,-0.12743780016899,0.00080982450162992]],[[0.073722720146179,0.15084218978882,0.016623813658953],[-0.10837154835463,0.066484190523624,-0.015531175769866],[-0.038174334913492,-0.12327989190817,-0.077262714505196]],[[-0.11405467987061,-0.027930114418268,0.055535897612572],[0.069752395153046,-0.0072854170575738,-0.089974246919155],[-0.0022800979204476,0.0030759128276259,-0.0088947992771864]],[[-0.011154644191265,0.14533150196075,-0.082325026392937],[0.012615641579032,-0.087475419044495,0.0042892824858427],[0.040166597813368,-0.043217211961746,-0.13263143599033]],[[0.049106240272522,0.079620599746704,-0.0052523128688335],[0.04598144441843,-0.0074925543740392,-0.091495133936405],[-0.02304121106863,-0.053961127996445,-0.039774667471647]],[[-0.12682531774044,-0.060455821454525,-0.11048813909292],[0.032396405935287,0.03264357149601,-0.019835954532027],[-0.05762716755271,-0.036847341805696,-0.063195496797562]],[[-0.081521451473236,-0.1024679467082,0.059597250074148],[-0.065444029867649,0.047022461891174,-0.041143279522657],[0.16978779435158,-0.06698090583086,-0.0089674154296517]],[[0.060505911707878,-0.028307821601629,0.034534927457571],[0.025782888755202,0.062165319919586,0.0039112525992095],[-0.030462453141809,-0.086447007954121,-0.030715754255652]],[[-0.025153152644634,0.097949221730232,-0.083332374691963],[-0.031719129532576,0.15374939143658,-0.11573389917612],[-0.016428230330348,-0.23933583498001,0.062353849411011]],[[0.12183733284473,-0.026854712516069,-0.059190910309553],[-0.0041199028491974,0.0070825638249516,-0.057629961520433],[-0.024174962192774,-0.07813549041748,-0.098687283694744]],[[-0.040965151041746,0.092375606298447,-0.032734803855419],[0.076143704354763,0.0779989361763,0.13679091632366],[-0.13069689273834,-0.01840965077281,-0.024265820160508]],[[-0.027219971641898,-0.010067679919302,0.0015768996672705],[0.081300042569637,-0.050077825784683,-0.014554182998836],[0.0035384541843086,-0.017700994387269,0.14675924181938]],[[-0.099532470107079,0.0054616797715425,-0.19813792407513],[0.005353809799999,-0.13383480906487,-0.074176110327244],[-0.021305859088898,0.0056529617868364,0.16063347458839]],[[-0.0054837120696902,0.0069387038238347,-0.051830925047398],[-0.035636134445667,0.018943479284644,0.17544400691986],[0.074685297906399,0.1226674169302,0.10268799215555]],[[0.029568640515208,0.0084917293861508,0.0019731207285076],[-0.091084033250809,0.018707163631916,0.012770581059158],[-0.092975527048111,-0.13438099622726,-0.052230142056942]],[[-0.0050229970365763,0.028723066672683,0.078946568071842],[0.0027534374967217,0.028386384248734,0.013263203203678],[-0.00028713388019241,-0.073324918746948,-0.10707198828459]],[[0.0028574140742421,-0.099683992564678,-0.015303938649595],[0.073639132082462,0.044607847929001,-0.036546178162098],[0.00010560356167844,0.0012038463028148,-0.082441918551922]],[[0.054441012442112,-0.008831269107759,0.044728621840477],[0.0096749207004905,-0.01997864805162,0.17647160589695],[-0.02476037107408,0.010177907533944,-0.052794631570578]],[[0.044431313872337,0.046533815562725,0.0050766128115356],[0.069837689399719,0.0045292703434825,-0.013838101178408],[-0.011479082517326,0.059354312717915,-0.056813850998878]],[[0.041646625846624,0.1029679775238,0.027412671595812],[0.0012809741310775,-0.067351840436459,0.14225839078426],[-0.094930537045002,-0.065541923046112,0.028696088120341]],[[0.034947514533997,0.032660275697708,-0.045217771083117],[-0.017936982214451,0.044252596795559,1.2977845472051e-05],[-0.07610034942627,0.010677800513804,-0.037506405264139]],[[-0.016886198893189,-0.01368900667876,-0.016588490456343],[0.071613967418671,0.034709129482508,-0.059703897684813],[0.11763551831245,0.091212078928947,-0.0075733289122581]]],[[[-0.045773554593325,0.065447710454464,0.10907366871834],[-0.028569526970387,-0.010057562962174,0.03731881082058],[-0.015135129913688,0.0052392836660147,-0.086333364248276]],[[-0.018662802875042,0.070701360702515,0.038302894681692],[-0.0084606604650617,0.001368734636344,-0.051334604620934],[-0.01288088876754,0.078244663774967,-0.014484884217381]],[[-0.023146823048592,0.020254975184798,0.13650323450565],[-0.063638746738434,-0.1700282394886,0.053191151469946],[-0.024138875305653,-0.099062666296959,-0.022238148376346]],[[0.091227285563946,-0.002208303892985,0.057860791683197],[0.022634396329522,-0.16297899186611,0.055867079645395],[-0.077909506857395,0.071158096194267,0.041805982589722]],[[0.030939051881433,0.21085041761398,0.10295779258013],[0.046121295541525,-0.020627127960324,0.0655817091465],[-0.02411924302578,0.14954510331154,-7.1621732786298e-05]],[[0.061037003993988,0.020834421738982,-0.0027576647698879],[0.0046602035872638,-0.02313164062798,-0.029836963862181],[-0.014861228875816,-0.055338688194752,-0.16028451919556]],[[-0.021743509918451,6.1665850807913e-06,-0.0063943420536816],[0.014043103903532,0.030224537476897,0.094505861401558],[-0.1835056245327,0.0096772694960237,0.083788849413395]],[[0.011198934167624,0.0099512906745076,0.042628318071365],[-0.077571533620358,-0.10373289138079,-0.060378797352314],[0.057608522474766,0.12952518463135,0.090092532336712]],[[0.02025930210948,-0.037551444023848,0.017585581168532],[0.04070933163166,-0.030167941004038,-0.036960985511541],[0.024318370968103,-0.095361568033695,0.05796217918396]],[[-0.031747486442327,0.05961524322629,0.072186417877674],[0.0058922516182065,-0.011980839073658,-0.067805446684361],[-0.013857227750123,0.0094562461599708,0.067959368228912]],[[0.10088914632797,-0.038758356124163,-0.070871375501156],[0.10167089104652,0.015664527192712,0.014465386047959],[0.0031139338389039,-0.088587142527103,-0.035827051848173]],[[-0.055820003151894,0.043743252754211,0.041064407676458],[-0.15002788603306,0.013893738389015,0.1402160525322],[0.027828775346279,-0.052081651985645,0.074568666517735]],[[-0.031416121870279,-0.011778350919485,0.047815542668104],[-0.042784638702869,-0.0363361351192,-0.096407391130924],[-0.044465035200119,0.0075316969305277,-0.014991569332778]],[[0.024708295240998,-0.0016508774133399,-0.040688183158636],[-0.09164909273386,0.069258093833923,-0.16145385801792],[0.057518720626831,0.024269316345453,-0.045464459806681]],[[0.033297598361969,0.063319638371468,0.072936847805977],[0.052726577967405,0.013225832954049,-0.019948361441493],[0.079713724553585,0.027171798050404,0.099407367408276]],[[0.060324087738991,-0.088192827999592,0.027004851028323],[0.13750064373016,-0.061832670122385,-0.011313960887492],[0.1043543741107,-0.072588376700878,-0.090453460812569]],[[-0.011423287913203,0.058784414082766,0.087427549064159],[-0.035523500293493,0.12593096494675,-0.081861831247807],[-0.035398039966822,0.049074202775955,-0.14702267944813]],[[-0.06097548827529,0.12471932172775,0.00062623771373183],[-0.022737931460142,-0.056852538138628,0.013319964520633],[0.059474341571331,0.023904563859105,0.0026286067441106]],[[0.027738442644477,0.0028339806012809,0.098357275128365],[-0.010566726326942,0.087619997560978,0.0045335609465837],[-0.012953662313521,-0.11143320053816,0.060554873198271]],[[-0.045141097158194,-0.013118310831487,-0.014843991026282],[-0.0011339359916747,0.26462852954865,0.12238673120737],[-0.051221951842308,0.066820375621319,-0.14742548763752]],[[0.03739332780242,0.083414323627949,-0.058768261224031],[-0.10508207976818,0.041956480592489,0.11535977572203],[0.1897728741169,-0.1801723241806,-0.050718426704407]],[[-0.042087130248547,0.067655794322491,-0.00013676079106517],[0.16417871415615,0.087621711194515,-0.17871876060963],[-0.023055218160152,-0.055594563484192,-0.040695987641811]],[[0.081263430416584,-0.1052412763238,0.010945480316877],[0.059547506272793,0.015454703941941,0.019193122163415],[-0.086159452795982,-0.040808543562889,0.020951326936483]],[[0.056636553257704,-0.0016277984250337,0.0082253199070692],[0.028835011646152,0.039736732840538,-0.031839862465858],[-0.068253189325333,0.0042508807964623,-0.0064820223487914]],[[0.011494102887809,-0.026282811537385,-0.022527942433953],[-0.035465706139803,-0.040443152189255,0.093245446681976],[0.066225059330463,-0.035122580826283,-0.065321631729603]],[[-0.072917766869068,-0.051940262317657,0.12838524580002],[-0.055143646895885,0.074112296104431,0.099884957075119],[0.080292046070099,-0.1237617880106,0.12297591567039]],[[0.005441633053124,-0.020067958161235,0.018084043636918],[0.024004383012652,-0.0067486600019038,-0.20212318003178],[-0.004967883694917,0.052874512970448,-0.11439349502325]],[[0.038566637784243,0.096124894917011,-0.071596063673496],[0.011331463232636,0.10284746438265,-0.038735095411539],[-0.13073542714119,0.062790222465992,-0.134411200881]],[[0.066713474690914,-0.066535584628582,-0.018362274393439],[-0.041945159435272,-0.13627032935619,0.12245765328407],[0.024324422702193,-0.051939271390438,0.039868555963039]],[[-0.11853419244289,-0.11717703938484,-0.062258303165436],[0.001621688134037,-0.043293405324221,-0.0089463498443365],[0.11711043864489,0.049999881535769,0.01138866879046]],[[0.021699635311961,-0.053107101470232,-0.085156761109829],[0.08889839053154,0.0008223801269196,0.11088583618402],[0.025210021063685,0.045762270689011,-0.029679058119655]],[[0.0036634285934269,0.12842024862766,0.039721019566059],[0.025888696312904,-0.23321455717087,-0.15932920575142],[0.11044229567051,0.19442874193192,0.10388421267271]],[[0.10487402975559,-0.022503949701786,-0.015485068783164],[-0.091293834149837,0.016038710251451,-0.014797512441874],[-0.054539281874895,0.041423726826906,-0.052447158843279]],[[-0.016226446256042,0.029528666287661,-0.039807617664337],[-0.048185098916292,0.029417064040899,-0.0036114614922553],[-0.044893335551023,0.017070569097996,0.04650304466486]],[[-0.13005411624908,-0.025372460484505,0.15440732240677],[-0.15363804996014,-0.053341753780842,-0.13955083489418],[0.15610414743423,0.090200759470463,-0.002298760227859]],[[0.036563910543919,0.060510203242302,0.062459003180265],[0.0022095202002674,-0.04106181114912,0.034741785377264],[-0.051999643445015,0.0079234624281526,-0.10045962780714]],[[0.045374557375908,0.032646756619215,-0.055937372148037],[-0.02617372572422,0.1351298391819,-0.0069945175200701],[-0.027193384245038,0.068125627934933,-0.043346263468266]],[[-0.031555261462927,-0.071495831012726,0.01626225374639],[-0.01557144895196,0.13468982279301,-0.027904311195016],[0.012401037849486,-0.07708316296339,-0.067104309797287]],[[-0.06027726829052,0.0088713420554996,-0.0069319405592978],[0.1114647090435,-0.064226634800434,0.020041286945343],[0.071882851421833,-0.053388871252537,-0.069053694605827]],[[-0.054576393216848,-0.062267262488604,0.04597469419241],[0.073472321033478,-0.1001575216651,0.1526091247797],[-0.003742930945009,-0.083750106394291,0.14545114338398]],[[0.11967766284943,-0.065359555184841,0.04172258079052],[-0.057300098240376,-0.0032318853773177,0.018132157623768],[-0.078673876821995,0.07053168118,0.10482056438923]],[[0.044037371873856,-0.059502307325602,0.017916640266776],[-0.12562367320061,-0.03158650547266,0.10097566992044],[0.048047006130219,-0.025054039433599,0.040982484817505]],[[-0.024845160543919,0.042306751012802,0.011824863962829],[0.03656267374754,-0.04731448367238,-0.15677389502525],[0.026987059041858,-0.063261643052101,-0.10797997564077]],[[0.0031632492318749,-0.025572581216693,0.01606285572052],[0.1199137493968,-0.037952657788992,0.046248182654381],[-0.016680737957358,0.066332541406155,-0.037138998508453]],[[-0.11207058280706,0.095665089786053,-0.018763527274132],[-0.11461612582207,-0.065322935581207,-0.056823674589396],[-0.025363313034177,0.042657133191824,0.032241690903902]],[[-0.023488130420446,0.043809361755848,-0.034009616822004],[-0.03502631559968,0.0092789186164737,0.15239785611629],[0.060655791312456,-0.018307268619537,-0.034958679229021]],[[-0.071158930659294,0.07213893532753,-0.0062239468097687],[0.033096712082624,0.19648680090904,0.074565410614014],[0.018427947536111,0.026406461372972,-0.066073775291443]],[[0.037735272198915,0.048289984464645,-0.02993780747056],[-0.11032548546791,0.12408650666475,0.0056251059286296],[0.089983426034451,0.084027171134949,0.0075599425472319]],[[-0.00039472771459259,-0.17472817003727,0.21999357640743],[-0.14726129174232,-0.13246585428715,0.046724230051041],[0.25259056687355,-0.19420279562473,0.086223639547825]],[[0.037075310945511,0.03355647623539,-0.003074579872191],[-0.0086300689727068,-0.0064146583899856,-0.023818802088499],[-0.027069479227066,0.01337653119117,-0.051498848944902]],[[-0.09147822111845,-0.046854373067617,-0.052113328129053],[-0.017677050083876,0.03135060146451,-0.11194276809692],[0.011805349029601,-0.093528680503368,0.06377387046814]],[[-0.069422088563442,0.01454200502485,-0.039870839565992],[-0.15964502096176,0.016829581931233,0.16947361826897],[-0.081692658364773,0.037282325327396,-0.10174966603518]],[[-0.10347775369883,0.0053894375450909,-0.075112462043762],[-0.060245674103498,-0.014460891485214,0.060547955334187],[0.030667349696159,-0.10827240347862,0.060387138277292]],[[0.028947047889233,-0.0028828799258918,-0.10758972913027],[-0.033026859164238,0.050055913627148,-0.066155403852463],[0.054784208536148,0.039551828056574,0.082091510295868]],[[0.00021041060972493,-0.016272636130452,0.081312268972397],[-0.061951879411936,0.053244039416313,-0.052842158824205],[0.034173652529716,-0.016262060031295,-0.0017727389931679]],[[0.13406230509281,0.12399165332317,-0.175890147686],[-0.12424063682556,-0.062580958008766,-0.1132342889905],[-0.028784573078156,-0.021937750279903,-0.022602282464504]],[[0.12209957838058,-0.043825343251228,0.0023969754111022],[0.0056801796890795,0.050254452973604,-0.1006545573473],[0.04168027639389,0.078103393316269,-0.059538125991821]],[[-0.036625988781452,0.035779133439064,-0.037545271217823],[-0.12076983600855,0.0084962081164122,-0.019384618848562],[-0.048519413918257,-0.019884178414941,0.040788635611534]],[[-0.0062861209735274,-0.054940614849329,0.079076625406742],[0.11890339106321,-0.003193479264155,-0.041917946189642],[-0.0044348258525133,-0.15593431890011,0.034988515079021]],[[-0.056060068309307,0.085922427475452,0.077577769756317],[0.11631526052952,0.053801067173481,-0.19983658194542],[-0.020129779353738,-0.0021047899499536,0.027159620076418]],[[-0.070358209311962,-0.015131696127355,-0.12655130028725],[-0.011862760409713,0.11429894715548,-0.096609704196453],[0.024957800284028,0.017005482688546,0.052170667797327]],[[0.084013856947422,0.036835841834545,-0.12763027846813],[0.038627076894045,-0.010267712175846,-0.026216927915812],[0.066599503159523,-0.13675168156624,0.069672361016273]],[[0.15207876265049,-0.051743570715189,0.083013609051704],[0.05111325532198,-0.014730538241565,0.025872966274619],[0.063246376812458,-0.11738873273134,-0.04016001150012]],[[0.10371281951666,0.009341855533421,0.10876328498125],[0.038399051874876,-0.024436498060822,0.011859139427543],[-0.0069105299189687,0.086146153509617,-0.057249993085861]]],[[[-0.079927392303944,-0.032282080501318,0.054854407906532],[0.03959146514535,-0.078310653567314,-0.025665966793895],[0.095202997326851,0.04375046864152,-0.00013151661551092]],[[-0.067315466701984,0.054429668933153,-0.004982088226825],[0.03654894605279,-0.10791353136301,-0.074318677186966],[-0.060028977692127,0.0059180054813623,0.033123109489679]],[[0.057816866785288,0.10931035131216,-0.012813820503652],[0.059847794473171,-0.0036513877566904,0.11737221479416],[0.023851616308093,-0.056307293474674,0.068019017577171]],[[0.039188474416733,-0.008846826851368,-0.16320510208607],[-0.094247415661812,-0.14653991162777,-0.042110826820135],[-0.18138760328293,-0.061681751161814,0.022623017430305]],[[0.053162317723036,-0.089798420667648,0.016160974279046],[0.059590075165033,-0.05983455106616,0.03241179510951],[-0.091126620769501,-0.027251398190856,-0.013045994564891]],[[0.050813678652048,0.15948602557182,-0.046557262539864],[0.013868987560272,0.15999832749367,-0.00061866664327681],[-0.0001552861649543,0.058708533644676,0.027849124744534]],[[-0.058383673429489,-0.013641243800521,0.12476924061775],[0.054731447249651,-0.049107640981674,-0.16461455821991],[-0.11318966001272,-0.051720425486565,-0.066272996366024]],[[0.010484776459634,-0.020589867606759,-0.0042906845919788],[-0.10588698834181,-0.018808206543326,-0.036787930876017],[-0.073798693716526,-0.021151274442673,-0.19338417053223]],[[0.070516459643841,-0.12882024049759,-0.034137357026339],[-0.008864319883287,-0.056914299726486,0.13297332823277],[0.0084370467811823,-0.066689871251583,-0.093634508550167]],[[-0.23486050963402,-0.12622828781605,-0.067991726100445],[-0.15648663043976,-0.10285856574774,0.017929458990693],[-0.072101384401321,-0.248056396842,0.038069635629654]],[[0.037693522870541,0.097599983215332,0.052026525139809],[-0.060555908828974,-0.024811185896397,-0.095950365066528],[-0.10308738797903,-0.083704717457294,-0.055181957781315]],[[-0.063987284898758,-0.16484898328781,-0.0564886033535],[-0.16719709336758,-0.057667452841997,-0.027429334819317],[-0.044811680912971,-0.096215285360813,-0.13524323701859]],[[0.068025171756744,-0.067398048937321,0.033797800540924],[-0.030038939788938,0.045964382588863,-0.1436627805233],[0.053171567618847,-0.16475161910057,0.0043316278606653]],[[-0.013185209594667,-0.091777570545673,-0.011436474509537],[-0.0089613059535623,-0.15395568311214,-0.0136883193627],[0.037066172808409,-0.15623073279858,-0.001083318493329]],[[-0.3275018632412,-0.065801009535789,0.034769471734762],[-0.076711975038052,0.0061790519393981,-0.13981033861637],[-0.19196763634682,-0.011171066202223,-0.092089101672173]],[[0.025169489905238,-0.065948374569416,0.023695476353168],[-0.085915103554726,-0.13863545656204,-0.047965224832296],[-0.21917276084423,0.059645622968674,0.15260019898415]],[[0.10426666587591,-0.16102588176727,0.044147405773401],[-0.062919929623604,-0.05754492431879,0.025286512449384],[0.068928070366383,-0.11006547510624,0.0018629449186847]],[[-0.099610462784767,0.023674882948399,-0.075468719005585],[-0.10086278617382,-0.26987609267235,0.020715493708849],[-0.12659387290478,-0.059976268559694,-0.098104059696198]],[[0.085966117680073,-0.092423215508461,0.097033567726612],[0.027118824422359,-0.060065947473049,0.12717407941818],[0.1506172567606,-0.076964154839516,0.21142630279064]],[[0.076749995350838,0.059124320745468,-0.20336942374706],[0.043688703328371,0.013456246815622,-0.067597001791],[0.014384501613677,0.0001440042979084,-0.017989424988627]],[[0.13966892659664,-0.10004016011953,0.085442237555981],[-0.051721151918173,-0.039817444980145,-0.057237401604652],[0.10532762110233,-0.09323938190937,-0.11315300315619]],[[0.030253026634455,-0.19979459047318,-0.12704040110111],[-0.16668152809143,-0.14298278093338,-0.069452114403248],[-0.13344423472881,-0.2614238858223,-0.063539028167725]],[[-0.094853773713112,0.0069978507235646,-0.16986253857613],[-0.094030909240246,0.15221689641476,-0.041411656886339],[-0.065758153796196,0.043742619454861,-0.094793550670147]],[[-0.044018901884556,-0.088456973433495,-0.17340742051601],[0.038466144353151,-0.11370825767517,-0.067504093050957],[-0.10282605886459,-0.037018075585365,-0.011080802418292]],[[0.061891097575426,-0.14090059697628,0.018762165680528],[0.088005796074867,-0.056868825107813,0.057125840336084],[-0.062216155230999,-0.21566653251648,0.14645197987556]],[[4.4438056647778e-05,-0.052501328289509,0.14020849764347],[-0.052239459007978,-0.13865722715855,0.055407714098692],[-0.16937634348869,-0.28449162840843,-0.12634646892548]],[[-0.1085612103343,-0.14946906268597,-0.089592710137367],[-0.11128644645214,-0.034060902893543,-0.055203225463629],[-0.045079469680786,-0.023983644321561,-0.057979047298431]],[[-0.064881853759289,-0.074506320059299,0.080911703407764],[-0.12230511009693,-0.083053521811962,-0.0052914088591933],[0.0066548590548337,0.021843263879418,-0.086095251142979]],[[-0.039654329419136,-0.011194505728781,-0.025269774720073],[-0.0030878051184118,-0.025546502321959,-0.030224580317736],[0.0046150828711689,-0.10958725959063,-0.011370958760381]],[[-0.021679604426026,-0.027231339365244,-0.1558799892664],[-0.062074307352304,-0.25134950876236,0.015816975384951],[0.11204268038273,0.093146942555904,-0.033795155584812]],[[-0.15003089606762,0.017733005806804,-0.12077096104622],[0.0323869548738,-0.033887591212988,-0.13863250613213],[-0.16362708806992,0.18575727939606,0.071129664778709]],[[0.08403804153204,-0.045812211930752,0.0068764365278184],[-0.24678003787994,-0.19981618225574,-0.079868368804455],[0.044154241681099,0.0031396611593664,0.06862810999155]],[[0.049381423741579,-0.16430309414864,0.070060424506664],[-0.032590020447969,-0.0066865468397737,0.090706460177898],[-0.082754664123058,-0.047964837402105,0.0219995547086]],[[0.059389263391495,0.027307087555528,-0.036835666745901],[-0.073372952640057,-0.059403095394373,-0.05641021206975],[-0.15215522050858,-0.18140859901905,-0.10686976462603]],[[-0.049833491444588,0.020063854753971,-0.018902299925685],[-0.12290206551552,-0.0098971119150519,-0.095726139843464],[-0.017567729577422,0.024382712319493,0.029159286990762]],[[0.017595997080207,0.097456283867359,-0.022452747449279],[-0.002265909453854,0.011389676481485,0.089643210172653],[0.012959850952029,-0.10731565952301,0.012382756918669]],[[-0.083826467394829,-0.23418305814266,-0.026100762188435],[-0.0075044254772365,-0.05523619800806,0.033890545368195],[0.045192204415798,-0.004528331104666,-0.0080904858186841]],[[0.014280105009675,0.031575690954924,-0.076448120176792],[0.062924951314926,-0.013679232448339,0.1645445227623],[-0.16533537209034,0.015241860412061,0.0047375652939081]],[[-0.03815271705389,0.011007546447217,0.0050684832967818],[0.021411068737507,-0.096123516559601,0.026128837838769],[0.059531334787607,0.019259812310338,-0.043633695691824]],[[0.12108033895493,-0.092508144676685,-0.054120663553476],[-0.015095993876457,-0.023298274725676,-0.081168405711651],[-0.010077465325594,-0.071643017232418,0.18306884169579]],[[-0.055998906493187,-0.11625386029482,-0.011933548375964],[-0.16494271159172,0.0025658893864602,-0.12905453145504],[-0.062008123844862,0.013335862196982,-0.017710508778691]],[[0.018367234617472,-0.05931768938899,-0.028146415948868],[-0.14631222188473,0.058778304606676,-0.01670628413558],[-0.020573580637574,-0.067811965942383,-0.020756976678967]],[[0.012803097255528,-0.16259671747684,-0.057642493396997],[-0.11710401624441,-0.19931024312973,0.070808976888657],[-0.1006728336215,-0.099293373525143,-0.089320540428162]],[[0.034058470278978,0.036155469715595,0.10591626912355],[-0.035357695072889,-0.023829896003008,0.0041544162668288],[0.042586226016283,-0.12526868283749,0.052057024091482]],[[-0.14986424148083,-0.052508026361465,-0.17423732578754],[-0.047299984842539,-0.091725841164589,0.00066806486574933],[-0.11501370370388,-0.089113131165504,-0.13561217486858]],[[-0.010394674725831,0.087523892521858,-0.057407960295677],[-0.034045353531837,-0.13278943300247,0.011139065027237],[-0.031585928052664,-0.032709944993258,-0.1144236177206]],[[-0.091581948101521,-0.065248139202595,-0.11341758817434],[0.071072839200497,0.17742961645126,0.17447610199451],[-0.16876997053623,-0.020095301792026,-0.082858316600323]],[[0.066411636769772,-0.074835300445557,-0.04707545787096],[-0.1145244538784,-0.052300244569778,-0.05862046405673],[-0.0093603506684303,0.0076370551250875,0.028414964675903]],[[0.027444675564766,-0.12812882661819,0.055171348154545],[0.066525779664516,-0.041363075375557,0.0077341329306364],[0.19295430183411,-0.066286750137806,0.17863050103188]],[[-0.020127791911364,0.057073496282101,-0.06352436542511],[-0.15020065009594,0.04839101433754,0.012225513346493],[0.009638155810535,0.017042893916368,-0.055712658911943]],[[0.031322780996561,-0.099330715835094,0.010095095261931],[-0.12776327133179,-0.18662065267563,-0.014817501418293],[0.070693895220757,-0.037326712161303,0.015563022345304]],[[-0.022991023957729,0.025451483204961,0.014345459640026],[-0.070426024496555,0.067008204758167,-0.15068021416664],[-0.046778727322817,0.08550613373518,-0.096584863960743]],[[-0.067729279398918,0.0046936487779021,-0.047218691557646],[0.12782676517963,-0.023409891873598,0.094133384525776],[-0.10101045668125,-0.0064709116704762,-0.10171543061733]],[[-0.026023428887129,0.022358156740665,0.034640897065401],[-0.061090394854546,0.1281281709671,0.17570887506008],[0.083680674433708,0.13966077566147,-0.062728151679039]],[[-0.10225582122803,-0.14907616376877,-0.091934211552143],[-0.075751379132271,0.037781532853842,-0.023650534451008],[-0.019934043288231,-0.039540510624647,-0.082312926650047]],[[-0.21814528107643,-0.12262343615294,-0.040931664407253],[-0.15897031128407,-0.06690776348114,-0.039465747773647],[0.013060847297311,0.080614984035492,-0.055298514664173]],[[0.09408138692379,-0.13122774660587,0.17271395027637],[-0.073938101530075,-0.15755353868008,-0.077635660767555],[0.16601786017418,-0.075115136802197,0.081509366631508]],[[-0.048426944762468,-0.041295874863863,-0.012430445291102],[-0.20249962806702,0.098474003374577,0.0023712841793895],[-0.022509176284075,-0.091597519814968,-0.0063184099271894]],[[-0.15913413465023,0.060566700994968,-0.087536245584488],[0.046501975506544,0.14148919284344,0.14901751279831],[-0.028857730329037,-0.051784601062536,-0.11401838064194]],[[0.00082820182433352,-0.1109766587615,0.021960118785501],[-0.026602705940604,0.094985477626324,0.085438668727875],[0.079063087701797,-0.15987533330917,0.099734291434288]],[[0.075182668864727,-0.16242831945419,0.12322287261486],[-0.02961259894073,-0.12992267310619,0.0020453245379031],[-0.050451215356588,-0.14648219943047,0.078990049660206]],[[0.13544757664204,-0.015182406641543,0.037228941917419],[-0.04132928699255,0.11461866647005,-0.0025688104797155],[-0.071812212467194,0.059709958732128,-0.071944415569305]],[[0.017200125381351,-0.18689456582069,-0.01228176523],[0.019914390519261,0.028383692726493,-0.024172380566597],[0.061577636748552,-0.16521783173084,-0.15526668727398]],[[-0.040351208299398,0.13684177398682,0.018785659223795],[-0.11068574339151,-0.18919014930725,-0.063120596110821],[0.12748639285564,0.081850647926331,0.20401105284691]]],[[[-0.033306039869785,0.027577731758356,-0.044556505978107],[0.064494878053665,-0.018446087837219,-0.041116718202829],[-0.060197301208973,-0.023986291140318,0.077263109385967]],[[-0.0060197673738003,-0.089615069329739,-0.17743946611881],[0.083511240780354,0.035497181117535,-0.026326719671488],[-0.045294553041458,0.16061027348042,0.14414295554161]],[[0.18517588078976,-0.05666995793581,0.12720608711243],[-0.022173533216119,-0.13467493653297,0.10552618652582],[-0.017843402922153,0.17988380789757,-0.1330958455801]],[[-0.046320404857397,-0.13835121691227,-0.14055763185024],[0.075417347252369,0.092825628817081,-0.021601982414722],[0.085722006857395,-0.10891855508089,-0.032817643135786]],[[-0.0036187537480146,0.04351656511426,-0.059547707438469],[-0.081947416067123,-0.047093618661165,-0.015209089033306],[0.024188417941332,0.037689138203859,-0.075320549309254]],[[0.11238820850849,-0.087227821350098,-0.038923107087612],[-0.12267208844423,-0.10283354669809,-0.19086384773254],[-0.085309363901615,0.12618035078049,0.065497986972332]],[[0.092913880944252,0.081222966313362,0.0043032988905907],[-0.015902243554592,-0.19466033577919,-0.031518626958132],[-0.019273640587926,-0.024826688691974,0.19573479890823]],[[-0.021347073838115,-0.0080955531448126,-0.041699908673763],[0.016833610832691,-0.070810370147228,-0.033668082207441],[-0.046724855899811,-0.041397463530302,0.11578413099051]],[[-0.0055384952574968,-0.038405142724514,-0.040652852505445],[-0.011598362587392,0.027017526328564,-0.021400788798928],[0.023298362269998,0.019739994779229,0.024190174415708]],[[-0.035778637975454,-0.044898215681314,0.0077754822559655],[-0.046002831310034,0.021344562992454,-0.050525166094303],[-0.039951223880053,-0.022940907627344,-0.10991682112217]],[[-0.087935388088226,-0.13468496501446,0.017396569252014],[0.071351990103722,-0.039779637008905,0.083929993212223],[-0.04245287925005,0.13662058115005,-0.088876292109489]],[[-0.092889904975891,-0.082515485584736,-0.10406145453453],[0.029420010745525,-0.018398337066174,-0.091088443994522],[-0.010769700631499,-0.0073913801461458,-0.12617388367653]],[[-0.076155923306942,-0.084838546812534,0.019234461709857],[0.009814040735364,0.042411405593157,0.018242107704282],[-0.10711174458265,-0.017814228311181,-0.018253151327372]],[[0.11297396570444,0.072474054992199,-0.015679078176618],[0.10363482683897,0.055102918297052,-0.041797898709774],[-0.20213118195534,-0.058353338390589,-0.14649146795273]],[[-0.11642335355282,0.093325279653072,0.044719371944666],[-0.10545179247856,0.065058909356594,-0.11041200906038],[0.01268121227622,0.067995771765709,0.11052696406841]],[[-0.0325528383255,-0.21277569234371,0.019593035802245],[-0.035496797412634,0.015436210669577,-0.041321706026793],[-0.041760947555304,0.13700306415558,-0.052088838070631]],[[0.16449518501759,-0.022742256522179,0.19800864160061],[0.15014450252056,-0.022696895524859,-0.032781202346087],[0.02968248911202,0.017028599977493,-0.21363489329815]],[[-0.025563728064299,-0.06948721408844,0.03777426853776],[0.043491464108229,-0.13109011948109,0.012499261647463],[-0.13348306715488,-0.14893235266209,-0.0065658139064908]],[[-0.073066473007202,-0.085856258869171,0.034450218081474],[-0.0073686842806637,0.067613177001476,0.0077844527550042],[-0.22188721597195,0.2420938462019,-0.044008303433657]],[[-0.029781382530928,0.12625713646412,0.020621091127396],[-0.023836720734835,-0.056716356426477,0.083566814661026],[0.15468730032444,-0.1694447696209,0.16725021600723]],[[0.012705971486866,-0.12732763588428,-0.1106426641345],[0.044536836445332,0.075311057269573,-0.13775925338268],[0.019692638888955,0.068388305604458,-0.017203990370035]],[[0.0818762332201,0.099744237959385,0.022789146751165],[-0.079423181712627,-0.018447782844305,0.017464231699705],[-0.090467423200607,-0.013177937828004,0.016591781750321]],[[-0.036309238523245,0.053396034985781,0.013090623542666],[-0.20978127419949,0.044285107403994,-0.12297442555428],[-0.044031720608473,0.076105609536171,-0.069221973419189]],[[-0.030300993472338,0.033780705183744,0.018116494640708],[-0.13873998820782,0.0018627806566656,-0.081980913877487],[-0.1233019605279,-0.012171902693808,0.054499194025993]],[[-0.028066355735064,-0.15005402266979,0.17731194198132],[0.013814751058817,-0.033654540777206,-0.034487128257751],[0.2831512093544,0.1682645380497,-0.072530329227448]],[[-0.041855238378048,0.10816761106253,-0.0015972343971953],[0.012634768150747,-0.036769568920135,0.015490527264774],[-0.025556690990925,0.058421809226274,-0.046713642776012]],[[0.022047117352486,0.004865946713835,0.053763285279274],[-0.044082324951887,-0.096047587692738,0.021353922784328],[-0.064381957054138,-0.050596181303263,-0.038505166769028]],[[0.16092126071453,0.094097532331944,-0.19860292971134],[0.00051360833458602,-0.047957945615053,-0.00039694091537967],[0.0074443020857871,-0.17498733103275,-0.1166867017746]],[[0.12541556358337,-0.037734109908342,0.026391327381134],[-0.0030418282840401,0.041291303932667,-0.029908571392298],[-0.094185374677181,0.089142881333828,-0.057406444102526]],[[-0.010020900517702,0.019113600254059,-0.13410501182079],[0.0090735759586096,-0.030637633055449,0.016775636002421],[0.0013069503474981,-0.099740162491798,0.12318211048841]],[[-0.019872810691595,0.03517223149538,-0.089765056967735],[-0.12618739902973,-0.018351811915636,-0.048546813428402],[-0.10413284599781,-0.11061959713697,0.11158510297537]],[[0.063431330025196,-0.056839555501938,-0.059725325554609],[0.058611638844013,-0.019010238349438,0.089538671076298],[-0.094156384468079,-0.030118985101581,0.11853992193937]],[[-0.031026182696223,-0.058877300471067,0.0029385392554104],[-0.12287598103285,-0.028292708098888,-0.043446738272905],[-0.075876712799072,-0.047028422355652,0.051752358675003]],[[0.10537431389093,-0.035516612231731,0.078486606478691],[-0.05551228299737,0.074307151138783,0.010475655086339],[-0.0026664494071156,-0.048661984503269,-0.059892870485783]],[[0.048851821571589,-0.054547794163227,-0.059691052883863],[-0.0066437181085348,-0.045314814895391,-0.0079335123300552],[0.075859136879444,0.21408419311047,0.09798975288868]],[[0.084722466766834,-0.021950164809823,-0.11036879569292],[-0.014474796131253,-0.033433020114899,-0.099891416728497],[0.0073544778861105,-0.082198709249496,-0.072417333722115]],[[-0.036569278687239,-0.0067633278667927,0.079304292798042],[-0.021949671208858,-0.020945828408003,0.029677014797926],[-0.026539154350758,0.077159069478512,0.070302896201611]],[[0.11092540621758,0.069835752248764,-0.038656186312437],[0.18695583939552,0.050876416265965,0.02185945212841],[-0.036706421524286,0.024687677621841,-0.11644036322832]],[[0.11383175104856,-0.016742128878832,0.058265034109354],[-0.04140667617321,0.03436478599906,-0.041156813502312],[0.042477700859308,0.024639924988151,-0.081311218440533]],[[0.065013840794563,0.036721907556057,-0.022207584232092],[0.012870057485998,0.0084809996187687,0.063259460031986],[-0.12929816544056,-0.16214375197887,0.00043035109410994]],[[-0.0040567410178483,0.032254181802273,-0.11143887042999],[-0.066098362207413,0.014980189502239,-0.0060789664275944],[0.050672478973866,-0.072513774037361,-0.012623447924852]],[[-0.02019833214581,-0.13701763749123,-0.13072741031647],[-0.10551451146603,0.0079654837027192,-0.053926791995764],[-0.12534922361374,0.061493285000324,0.046205334365368]],[[-0.048249244689941,-0.051234744489193,-0.05355129763484],[-0.013279683887959,0.036331951618195,-0.1442469060421],[0.000160940704518,-0.010513831861317,0.032867126166821]],[[0.13874343037605,0.037892628461123,-0.014921839348972],[-0.1039325594902,0.01319157704711,-0.06962626427412],[0.0016667876625434,-0.045390166342258,-0.041036173701286]],[[-0.013259788043797,-0.030174914747477,-0.1047470420599],[-0.16068287193775,0.057641722261906,-0.18462651968002],[-0.18242007493973,0.059681620448828,-0.10919323563576]],[[0.0014125755988061,0.11650259047747,0.056543961167336],[0.0073260273784399,0.036628555506468,0.043981920927763],[-0.089864932000637,0.012198960408568,-0.13173873722553]],[[0.015471774153411,-0.12023275345564,0.026745004579425],[0.13346457481384,-0.12161114066839,0.0081373415887356],[0.054321993142366,-0.075633816421032,-0.012792822904885]],[[0.071272060275078,-0.049503967165947,-0.033379249274731],[-0.02036465331912,0.040641646832228,-0.012886134907603],[0.028001345694065,-0.10541562736034,0.08809744566679]],[[-0.094047956168652,-0.098427474498749,0.12117011845112],[0.012467937543988,0.025024261325598,-0.083441078662872],[-0.043611522763968,-0.029145281761885,-0.01260519772768]],[[0.012952608987689,0.037709500640631,0.004451815970242],[-0.044116403907537,-0.074930585920811,0.065667301416397],[0.0022312083747238,-0.026601746678352,-0.0027812456246465]],[[-0.14847306907177,-0.10557681322098,0.027494365349412],[-0.001893198932521,-0.063647843897343,0.0065859714522958],[-0.056859336793423,0.0097154723480344,-0.078441925346851]],[[-0.046099737286568,0.05111837759614,-0.080449171364307],[-0.075469233095646,-0.043588221073151,0.031520776450634],[-0.040019005537033,-0.14747385680676,0.17482601106167]],[[-0.067257337272167,0.21408051252365,0.06156786903739],[-0.0073426817543805,-0.053366523236036,0.023677352815866],[-0.011382016353309,0.050084982067347,0.12425615638494]],[[0.0020027917344123,-0.088728360831738,-0.021438214927912],[0.096509605646133,0.04732808470726,-0.03152908757329],[-0.1032717898488,-0.06931135058403,-0.18905909359455]],[[-0.026204938068986,-0.067725419998169,-0.056148607283831],[-0.083374783396721,-0.06769010424614,0.017720814794302],[0.080893993377686,-0.085455566644669,-0.010001517832279]],[[0.035431422293186,-0.16944080591202,-0.18405696749687],[0.066704638302326,0.073172092437744,-0.096881620585918],[-0.052133478224277,0.091209255158901,-0.022362461313605]],[[0.022303404286504,-0.096557088196278,-0.025338197126985],[0.04613596200943,0.014314451254904,0.087388321757317],[-0.0075745931826532,0.061524402350187,-0.07964451611042]],[[-0.16703119874001,-0.065074764192104,-0.061675813049078],[-0.0030446120072156,0.025037422776222,-0.065742067992687],[-0.034292880445719,-0.0084764659404755,-0.12558488547802]],[[-0.22879375517368,0.084035240113735,0.076225191354752],[-0.018850652500987,-0.026583144441247,0.1041908338666],[0.011028781533241,-0.13337863981724,0.20976881682873]],[[-0.090413585305214,0.085163824260235,0.048015095293522],[-0.046253774315119,0.074900023639202,-0.011809941381216],[-0.18763072788715,-0.11538205295801,0.056776266545057]],[[0.04729438200593,0.041965086013079,-0.11224297434092],[-0.13373246788979,0.0870181620121,0.033746533095837],[0.056270286440849,0.072103306651115,-0.00025252104387619]],[[-0.080842517316341,0.072560340166092,0.095644280314445],[-0.15227891504765,0.03498201072216,-0.015205651521683],[-0.27700400352478,0.036199923604727,0.092348888516426]],[[-0.031261269003153,-0.043174359947443,0.001176115241833],[-0.16289518773556,0.022415641695261,0.007339428178966],[0.031216477975249,0.072297997772694,-0.11481247842312]],[[-0.17476643621922,-0.16769622266293,0.09663213044405],[0.074757024645805,0.00072647101478651,0.090844318270683],[0.0016009766841307,-0.19075183570385,-0.20515111088753]]],[[[0.012785453349352,-0.041011516004801,0.026495976373553],[0.028707381337881,-0.015645762905478,0.037227168679237],[0.010356886312366,0.0093751363456249,0.0031823017634451]],[[-0.022313382476568,0.015553927980363,0.040471713989973],[0.085138291120529,0.0064295972697437,-0.068152748048306],[-0.074421085417271,-0.091805249452591,-0.096738420426846]],[[-0.0099189803004265,0.0089093744754791,0.0080964025110006],[0.05186640843749,-0.015523590147495,-0.060455173254013],[-0.030646236613393,-0.0050720144063234,-0.046507760882378]],[[-0.088793605566025,-0.036159757524729,-0.0025543419178575],[-0.033990692347288,-0.097187891602516,-0.059079054743052],[-0.077646791934967,-0.038943693041801,0.093829743564129]],[[0.078315146267414,0.060246597975492,-0.070644699037075],[0.035107750445604,0.082576043903828,-0.080553367733955],[0.017348064109683,-0.091771438717842,-0.036498833447695]],[[0.0045974897220731,0.029434993863106,0.06000042706728],[0.031079204753041,-0.052189037203789,-0.027577187865973],[0.071659862995148,-0.0073309727013111,-0.042934760451317]],[[0.042195402085781,0.0085774334147573,-0.014916749671102],[0.040869418531656,-0.038834851235151,-0.12803445756435],[-0.028901478275657,-0.052083995193243,0.0092639522626996]],[[0.13249824941158,0.025809744372964,0.083803087472916],[-0.040873993188143,-0.031771782785654,-0.013208489865065],[-0.03793666139245,-0.0053172614425421,-0.049305941909552]],[[-0.0084607684984803,-0.15772297978401,-0.1233326420188],[0.000560077955015,-0.070672579109669,-0.087889060378075],[0.021404655650258,-0.13469156622887,0.013563381507993]],[[-0.04352842271328,-0.053575530648232,-0.033701058477163],[-0.10563091933727,-0.052273631095886,0.034325558692217],[-0.1478268802166,-0.066705405712128,-0.024486942216754]],[[-0.026810867711902,0.016216499730945,0.046540431678295],[-0.022445414215326,0.040669564157724,0.028743149712682],[0.0064990343526006,-0.11669556796551,0.0024464228190482]],[[0.040115371346474,0.0027437410317361,-0.068547911942005],[-0.0033442035783082,-0.092035703361034,-0.13956795632839],[-0.045348808169365,-0.13420070707798,-0.033937718719244]],[[0.069957353174686,-0.032665356993675,0.021453054621816],[0.085458658635616,0.012621814385056,0.035146199166775],[-0.16003169119358,-0.024188024923205,-0.032973702996969]],[[-0.01352422311902,0.065615609288216,0.012440588325262],[-0.040984567254782,0.028105225414038,-0.013387946411967],[-0.034738846123219,0.025742938742042,-0.093187317252159]],[[-0.00097049045143649,-0.040659010410309,0.053618505597115],[0.069304637610912,-0.036761492490768,0.012569733895361],[-0.026444433256984,0.028818219900131,-0.092591099441051]],[[-0.0017348190303892,-0.01743065007031,-0.033508267253637],[-0.047626402229071,-0.023197885602713,0.0083295851945877],[-0.075165465474129,0.036220122128725,-0.016608122736216]],[[0.015437515452504,0.0013171038590372,0.027788324281573],[0.027089081704617,-0.064234919846058,-0.046122662723064],[0.032331667840481,0.025328118354082,-0.026456570252776]],[[0.040420845150948,-0.0010614106431603,-0.034763764590025],[-0.013832283206284,-0.079176045954227,0.014970300719142],[-0.0361536629498,0.07722195982933,-0.10958357900381]],[[0.10434036701918,-0.0099061941727996,-0.034719780087471],[-0.021308248862624,0.0046674255281687,0.042934220284224],[0.010348943062127,0.02056417055428,0.046923350542784]],[[0.055619854480028,-0.019930943846703,0.017891120165586],[-0.017252882942557,-0.041909348219633,-0.04995035380125],[0.00055608857655898,-0.03067403100431,-0.01538204587996]],[[0.021514158695936,0.063615992665291,0.048353053629398],[0.070680253207684,0.037459682673216,0.0062165912240744],[0.076298981904984,-0.11817852407694,-0.10660991072655]],[[0.055358823388815,0.01854070276022,0.021203398704529],[-0.11724296212196,-0.10750094056129,-0.10311749577522],[-0.013775846920907,-0.099363200366497,-0.019712610170245]],[[-0.041039481759071,-0.014154909178615,-0.035075426101685],[-0.066942676901817,-0.068918623030186,0.011341812089086],[0.071058705449104,0.014409396797419,0.034743819385767]],[[-0.004493294749409,-0.057859119027853,-0.039731256663799],[-0.033222015947104,-0.1610285192728,0.027479944750667],[-0.013272246345878,-0.028928777202964,-0.003418100764975]],[[-0.074546433985233,0.064093306660652,-0.048371523618698],[0.014509577304125,0.00067917013075203,0.018900226801634],[0.082246370613575,-0.0063321636989713,0.089272283017635]],[[-0.07854750007391,0.01907017827034,0.012696377933025],[0.0090858014300466,0.0087172761559486,-0.052634060382843],[-0.17015121877193,-0.11544512212276,0.016215031966567]],[[0.026655841618776,-0.0072625242173672,0.01600481569767],[0.076859250664711,-0.08148418366909,0.038469977676868],[-0.051426477730274,0.034902635961771,0.062118154019117]],[[0.058993607759476,0.025391736999154,-0.038640107959509],[-0.041331317275763,0.050745099782944,0.019038863480091],[-0.13959807157516,-0.074741289019585,-0.0067883376032114]],[[0.020067136734724,-0.036462713032961,0.04573180153966],[0.080697380006313,-0.0088623901829123,-0.016356965526938],[0.071088932454586,-0.050559632480145,-0.10307817906141]],[[0.096583098173141,-0.015969635918736,-0.080448605120182],[-0.014116125181317,0.02281016856432,-0.067645646631718],[-0.10890575498343,-0.0078381206840277,0.070746801793575]],[[-0.11409310996532,0.035716783255339,0.0049093579873443],[0.038686081767082,0.056726362556219,0.026885837316513],[0.07069243490696,0.09105858951807,-0.0062472214922309]],[[-0.0441521294415,-0.051721502095461,-0.010663470253348],[-0.032085705548525,0.0057768393307924,0.060620784759521],[0.0055298814550042,0.059129405766726,0.021571235731244]],[[-0.04108452796936,0.067140974104404,0.063493900001049],[-0.041580807417631,-0.00046463607577607,0.0034188472200185],[-0.023712875321507,0.025331124663353,-0.0083615742623806]],[[-0.047328777611256,0.04169188067317,-0.050648003816605],[-0.040038783103228,-0.15325964987278,-0.0486706122756],[-0.066461786627769,-0.057409938424826,-0.043160412460566]],[[0.031881414353848,0.014411073178053,-0.031461711972952],[0.026770737022161,0.013149935752153,-0.082549028098583],[0.025878861546516,-0.020542405545712,-0.030137563124299]],[[-0.1066412627697,-0.045205812901258,0.064618274569511],[-0.12485445290804,-0.029924895614386,-0.076992683112621],[-0.03721047192812,0.091087989509106,0.041496973484755]],[[-0.068638682365417,0.10862073302269,-0.022390186786652],[-0.055104572325945,-0.013443351723254,0.076063305139542],[-0.0025688984896988,0.077233113348484,0.042133510112762]],[[-0.0091520473361015,-0.066897384822369,0.063026443123817],[0.0088935624808073,-0.091305807232857,0.015364402905107],[-0.079604431986809,-0.05545860901475,-0.025716707110405]],[[0.092991597950459,0.025389822199941,0.09998182952404],[0.15358148515224,0.157381772995,0.039964776486158],[0.082834392786026,0.15799476206303,0.10261005163193]],[[0.054862800985575,-0.005385510623455,-0.0054835146293044],[0.050859175622463,-0.050725907087326,0.012531668879092],[-0.012759828008711,0.12799422442913,0.0094373980537057]],[[-0.044323358684778,-0.10143508017063,0.010956137441099],[0.025348734110594,0.056709412485361,-0.0004264268791303],[0.010609550401568,-0.0094808777794242,-0.061514023691416]],[[0.076794050633907,0.062433112412691,-0.027835225686431],[-0.010468212887645,-0.021990325301886,0.037914279848337],[0.0052890633232892,-0.043537173420191,-0.091215595602989]],[[0.050633084028959,0.081684298813343,0.0013215177459642],[-0.033514946699142,0.0074832355603576,-0.11515963077545],[-0.097718633711338,-0.097609639167786,-0.037575073540211]],[[-0.047726862132549,-0.05194604024291,-0.0054714158177376],[-0.052449606359005,-0.0038930319715291,0.015297248959541],[-0.040736496448517,0.09514607489109,-0.071310587227345]],[[-0.04597232863307,-0.036143995821476,0.052253820002079],[-0.070914559066296,-0.024401383474469,-0.056772049516439],[0.024869056418538,0.033775482326746,0.023566471412778]],[[-0.038414496928453,0.026466909796,-0.034807428717613],[-3.981185000157e-05,-0.011788543313742,0.063734956085682],[-0.027444191277027,-0.097358204424381,0.0035468833521008]],[[-0.0064630503766239,0.098429799079895,0.046405896544456],[-0.032946243882179,0.013771127909422,-0.028068667277694],[0.073978208005428,-0.03467595204711,-0.053092438727617]],[[-0.01926277205348,-0.028693925589323,0.053183384239674],[0.022720012813807,-0.075026489794254,-0.028862604871392],[-0.032646045088768,-0.039787113666534,-0.055992662906647]],[[-0.01197063177824,-0.040345445275307,-0.050794005393982],[-0.16492633521557,0.098756648600101,0.053296506404877],[-0.078355394303799,-0.0082322983071208,-0.023635031655431]],[[-0.077279634773731,0.088888831436634,-0.089432261884212],[-0.071381717920303,0.058258447796106,0.017254719510674],[0.020429505035281,0.0037947806995362,0.022402787581086]],[[-0.14452618360519,-0.040294867008924,-0.075650833547115],[-0.1584929972887,-0.081605955958366,0.013914775103331],[-0.062097080051899,-0.15448869764805,-0.18324761092663]],[[-0.064620159566402,0.0024834293872118,-0.0053293057717383],[-0.019885802641511,0.048371512442827,-0.033745910972357],[0.01500868331641,-0.090836383402348,0.031483590602875]],[[-0.0055352123454213,0.067507512867451,-0.040280807763338],[0.033611349761486,-0.016114454716444,-0.031433254480362],[0.055357124656439,-0.0072804233059287,-0.028756380081177]],[[0.0024405883159488,0.0093726487830281,-0.0088068852201104],[0.0082938512787223,0.01706013828516,-0.095438599586487],[-0.12731899321079,-0.0244529992342,0.013119409792125]],[[0.0083516109734774,-0.094495005905628,0.027515362948179],[0.060321822762489,-0.076502770185471,-0.083462186157703],[-0.0062572583556175,0.14835387468338,-0.059109754860401]],[[-0.02188933826983,-0.030782228335738,-0.10565128177404],[0.034605983644724,0.02828124165535,-0.048458453267813],[0.061520878225565,-0.04465638846159,-0.028263451531529]],[[0.14566189050674,0.048277374356985,0.033441964536905],[0.092611059546471,0.15019373595715,0.061925161629915],[0.11827147006989,-0.024626601487398,-0.018885238096118]],[[-0.013042211532593,-0.017226308584213,-0.05124730989337],[-0.0068815760314465,-0.026340782642365,0.047496940940619],[-0.091115914285183,0.019441649317741,-0.0065948544070125]],[[-0.09368784725666,-0.088503107428551,-0.0029656020924449],[-0.055893126875162,-0.0047176061198115,-0.079819552600384],[0.056043468415737,-0.028446162119508,0.0047776834107935]],[[-0.09224995225668,0.077104963362217,0.072737880051136],[-0.070246733725071,-0.0027946999762207,0.014606066979468],[0.0047148303128779,-0.066936537623405,0.015565217472613]],[[-0.017820358276367,-0.041885018348694,-0.1046791151166],[0.074281990528107,0.067570045590401,-0.058744225651026],[0.059678960591555,0.035280525684357,-0.049168560653925]],[[0.035451143980026,-0.024328332394361,-0.062651053071022],[0.0032768684905022,0.0070323394611478,-0.033665731549263],[0.032600697129965,0.0074979783967137,-0.077122941613197]],[[0.055298656225204,-0.018377136439085,0.028662543743849],[0.035131964832544,-0.043641425669193,0.026587311178446],[-0.030193194746971,-0.025497594848275,-0.032441068440676]],[[-0.039309620857239,-0.010067973285913,-0.053551658987999],[0.063279211521149,0.0004688921617344,-0.0053521669469774],[0.078207567334175,-0.040958065539598,-0.025260547176003]]],[[[0.082689359784126,-0.1586801558733,0.016877852380276],[-0.059874512255192,0.090639904141426,-0.012115207500756],[0.022859072312713,-0.1033408716321,0.070134498178959]],[[0.066367790102959,-0.058456163853407,-0.031443249434233],[-0.085321493446827,0.0050933756865561,-0.015447339974344],[-0.0091700404882431,0.084535792469978,0.089438490569592]],[[-0.040890503674746,-0.065851144492626,-0.11592942476273],[0.058276567608118,-0.11411541700363,0.019001079723239],[-0.0034120541531593,-0.004047823138535,-0.13419610261917]],[[-0.088438145816326,0.0026763989590108,0.0023279075976461],[0.0090004662051797,-0.052971888333559,-0.011635264381766],[0.075893335044384,0.056723535060883,0.10059662163258]],[[-0.051575567573309,0.050548814237118,0.025971230119467],[-0.019325373694301,0.025569433346391,0.017926592379808],[-0.089503295719624,0.028188725933433,-0.12320771813393]],[[0.013480430468917,-0.078866697847843,0.14311718940735],[0.16554130613804,-0.13349093496799,-0.15896934270859],[-0.028322048485279,0.11211130768061,0.0014062818372622]],[[-0.049892526119947,0.059234276413918,0.043876625597477],[0.048605058342218,-0.061491303145885,0.060616496950388],[-0.049306020140648,0.0050968900322914,0.12372397631407]],[[-0.054343339055777,-0.02816061489284,-0.078248932957649],[-0.07641527056694,0.029539126902819,-0.075388193130493],[-0.017977062612772,0.0045035476796329,0.088572017848492]],[[0.029910765588284,0.0033228304237127,0.0014629368670285],[-0.11913868784904,0.051687020808458,-0.039674442261457],[0.023184817284346,-0.026437923312187,0.03981839120388]],[[0.078644081950188,-0.057530649006367,-0.0038002310320735],[-0.19035728275776,0.042577363550663,-0.049579288810492],[-0.071067988872528,0.042298369109631,0.014657571911812]],[[-0.016600443050265,-0.099940277636051,0.057035122066736],[0.014457104727626,0.068046301603317,-0.20076623558998],[0.03010992333293,0.053916674107313,-0.0076920236460865]],[[-0.050034277141094,-0.062374606728554,-0.1494784206152],[-0.10746794939041,0.024790460243821,-0.030444467440248],[-0.046650875359774,-0.11091002076864,0.016203735023737]],[[-0.15668869018555,0.081035271286964,-0.022139078006148],[0.077903501689434,-0.16540932655334,0.01416355278343],[0.078016944229603,0.084643140435219,0.024255394935608]],[[-0.05031406134367,-0.1108565106988,0.044563133269548],[-0.010076833888888,0.056846737861633,-0.061758611351252],[0.058846320956945,-0.032121613621712,-0.011223196983337]],[[-0.060593765228987,0.0050419648177922,0.051471456885338],[0.029238250106573,0.058192100375891,-0.0091472053900361],[0.062791027128696,-0.0017961687408388,0.0033442468848079]],[[0.063885793089867,-0.021494720131159,0.028023235499859],[-0.012336558662355,0.0012772839982063,0.026841582730412],[0.01001238822937,0.019997892901301,-0.033018205314875]],[[-0.0024269658606499,-0.016975177451968,0.051898162811995],[0.062178209424019,0.028077598661184,-0.11492654681206],[0.037574332207441,-0.0084156896919012,0.028196565806866]],[[-0.033667348325253,0.018834384158254,-0.0280706230551],[0.056133277714252,-0.17379209399223,0.015331602655351],[-0.023959102109075,-0.029125595465302,-0.10311281681061]],[[-0.075624458491802,-0.01224154047668,-0.0046121496707201],[0.042202822864056,-0.026117665693164,0.050543669611216],[0.14544105529785,0.011277720332146,0.0099960435181856]],[[-0.059391725808382,0.12207563221455,0.044037152081728],[-0.037103828042746,-0.043172232806683,0.053518284112215],[-0.061987832188606,-0.032242204993963,0.00027822292759083]],[[0.038143444806337,-0.088232316076756,-0.21643102169037],[-0.048499025404453,-0.17934918403625,0.091055929660797],[0.074537076056004,-0.048990342766047,0.083934456110001]],[[-0.0041555194184184,-0.0044108494184911,-0.031484562903643],[-0.14576035737991,-0.048216551542282,0.044654496014118],[-0.042315900325775,-0.077871903777122,0.014530058950186]],[[-0.084682047367096,0.038310933858156,-0.045895721763372],[0.06924070417881,0.11942703276873,-0.10656808316708],[0.10097659379244,0.022188911214471,-0.036137711256742]],[[-0.046420264989138,-0.049058526754379,-0.045567087829113],[-0.028649797663093,0.040947318077087,-0.1089284569025],[-0.067623876035213,-0.03067141957581,-0.074799537658691]],[[-0.06984818726778,-0.010861683636904,0.0043701333925128],[0.042778696864843,-0.071818500757217,0.030276799574494],[-0.13540132343769,-0.02453825250268,-0.045160539448261]],[[-0.073816306889057,-0.082784377038479,0.089325033128262],[0.042059611529112,-0.027962740510702,-0.12308879196644],[-0.038419768214226,-0.11236336827278,0.10584904998541]],[[-0.085173703730106,-0.091096684336662,-0.099512182176113],[-0.038008872419596,0.15208753943443,-0.10686512291431],[0.083404533565044,-0.0047193081118166,0.13724745810032]],[[0.040179934352636,0.073940716683865,0.018067019060254],[0.0036656283773482,0.028376838192344,-0.17919278144836],[-0.18984033167362,0.035433571785688,-0.04378317669034]],[[-0.13031961023808,-0.0078268982470036,0.031522691249847],[-0.029451200738549,0.060467578470707,0.10462944954634],[-0.053032077848911,-0.027818894013762,-0.065877549350262]],[[-0.13312515616417,-0.055499482899904,-0.0045765754766762],[0.015232109464705,-0.034402221441269,0.052273038774729],[-0.1474419683218,-0.15996637940407,-0.011930299922824]],[[0.013734639622271,-0.044232536107302,0.086708202958107],[0.041514784097672,-0.03829388320446,-0.021204300224781],[0.025136781856418,-0.038313750177622,0.041832640767097]],[[-0.017417769879103,-0.1267636269331,0.12942336499691],[-0.059581153094769,0.064752511680126,-0.062184382230043],[0.0071534616872668,0.015055201947689,0.095591716468334]],[[0.060067672282457,0.0025130426511168,0.078541956841946],[0.059403695166111,0.030897200107574,-0.025601293891668],[0.039649542421103,-0.06265639513731,-0.036033753305674]],[[-0.036143962293863,-0.033518828451633,-0.049172427505255],[-0.083118714392185,0.040708635002375,-0.10329659283161],[3.2963438570732e-05,0.049624621868134,-0.0025036889128387]],[[-0.00967051461339,0.017880005761981,-0.066879570484161],[-0.015097226947546,0.08078321814537,-0.053823206573725],[0.029939129948616,0.018589630723,0.017638156190515]],[[-0.069557413458824,0.035107668489218,0.010294710285962],[0.0085710128769279,-0.04836368560791,0.001440203981474],[0.073577664792538,0.057101547718048,-0.11490593850613]],[[0.08806473761797,-0.034743297845125,0.0081520574167371],[0.0026367616374046,0.015829244628549,0.038360856473446],[-0.071346163749695,0.074654951691628,0.1069289073348]],[[0.085068508982658,0.12531106173992,0.047402992844582],[-0.21196040511131,-0.016775814816356,0.10033296048641],[0.10212573409081,-0.041457768529654,0.024118946865201]],[[-0.068228654563427,-0.040921948850155,-0.02291944436729],[-0.021441088989377,-0.052170619368553,0.018038500100374],[-0.040030043572187,0.061239212751389,0.03673904016614]],[[-0.084298744797707,0.034946221858263,0.031356029212475],[0.083641916513443,0.11765332520008,-0.0092344116419554],[0.01628602296114,0.07772321254015,-0.033118136227131]],[[-0.095480732619762,0.034623831510544,-0.025375064462423],[0.0076187863014638,0.046528104692698,-0.078670874238014],[-0.04339287802577,0.079064376652241,-0.029408602043986]],[[-0.031432490795851,-0.0057612722739577,0.032827716320753],[0.059195622801781,-0.049966808408499,-0.07756270468235],[-0.052351605147123,-0.048211548477411,0.096163436770439]],[[-0.056822247803211,-0.10917081683874,-0.078197173774242],[-0.10051108896732,0.011228105984628,0.014745142310858],[-0.015012233518064,0.11822979897261,0.037935812026262]],[[-0.056380592286587,-0.069527633488178,-0.090268641710281],[0.061615608632565,0.045768700540066,0.096641480922699],[0.078248426318169,0.074214391410351,-0.0027510956861079]],[[-0.040123101323843,-0.18884100019932,0.085843674838543],[0.061801854521036,0.0089246397837996,-0.060149680823088],[-0.03495979309082,0.040951337665319,-0.0024375151842833]],[[-0.10914021730423,0.086279764771461,0.13210359215736],[0.080936707556248,0.028779832646251,-0.020664287731051],[-0.042299639433622,-0.096969187259674,0.15795938670635]],[[-0.071344949305058,0.0010128121357411,0.0061497120186687],[-0.086870595812798,-0.015702476724982,0.058443758636713],[0.017012845724821,-0.041900373995304,-0.028413593769073]],[[-0.034877963364124,0.04984749481082,0.010935692116618],[0.0059824166819453,0.023815477266908,0.0030871441122144],[0.030913919210434,0.002664337400347,-0.0080635594204068]],[[-0.079690180718899,-0.030548680573702,-0.14188477396965],[-0.015809582546353,-0.069149248301983,-0.015440803952515],[-0.07282667607069,0.0064357644878328,0.13199010491371]],[[-0.067945443093777,0.0083715114742517,-0.028275215998292],[0.093515239655972,-0.016562271863222,-0.088395230472088],[0.00065661547705531,0.065685927867889,-0.042398829013109]],[[-0.055246226489544,-0.081429831683636,-0.010606117546558],[0.017570240423083,-0.10769323259592,0.086245186626911],[0.071999698877335,-0.11715615540743,0.11430533230305]],[[-0.080313764512539,-0.060576032847166,0.1147078499198],[0.034481722861528,-0.079229332506657,-0.044574122875929],[0.034631442278624,-0.079081945121288,-0.018772521987557]],[[0.045231804251671,0.0062909694388509,-0.078374363481998],[-0.072479940950871,0.12792144715786,-0.068106427788734],[-0.014858167618513,0.11948167532682,-0.088773876428604]],[[-0.074634715914726,-0.0811732634902,0.039731718599796],[0.093356661498547,0.030673580244184,0.067523248493671],[-0.06749039888382,0.0057028820738196,-0.10513999313116]],[[-0.074542872607708,-0.0016299327835441,-0.028678357601166],[-0.04667779058218,-0.056415993720293,0.0082814684137702],[0.046282004565001,0.10398043692112,-0.042775277048349]],[[0.15712480247021,-0.029829291626811,-0.054870314896107],[0.030050752684474,-0.11495281755924,0.075598165392876],[-0.0036714167799801,0.021800726652145,-0.068244263529778]],[[0.059631388634443,0.043809205293655,-0.14606845378876],[0.019679121673107,0.012964661233127,-0.020950509235263],[-0.064221188426018,-0.037246067076921,0.11608853191137]],[[-0.036404564976692,-0.055355004966259,-0.078602984547615],[-0.026930510997772,0.06996576488018,-0.048582497984171],[0.0064852247014642,-0.048757318407297,0.090930692851543]],[[-0.061627075076103,0.011990041472018,-0.0078822411596775],[-0.14209096133709,-0.037520051002502,-0.056702192872763],[-0.082960985600948,-0.045027043670416,0.016621261835098]],[[0.1081088706851,0.070858515799046,-0.15454477071762],[0.0041899685747921,0.079429864883423,0.011076443828642],[0.072930246591568,-0.050903555005789,0.072060860693455]],[[-0.039876572787762,-0.09454257786274,-0.0083747617900372],[-0.00037564762169495,-0.023099852725863,-0.1048761755228],[0.039518266916275,0.048412475734949,0.087237142026424]],[[0.044190939515829,-0.0019832716789097,-0.13704608380795],[-0.12217102199793,-0.020857520401478,0.023715831339359],[-0.19881652295589,-0.10439249873161,-0.0034544710069895]],[[0.051905602216721,0.039828240871429,0.024296747520566],[-0.09821917116642,0.057223834097385,-0.014195517636836],[0.062647990882397,0.0020544875878841,-0.021435903385282]],[[-0.0029929557349533,-0.051239065825939,-0.032611012458801],[0.063194841146469,0.088321216404438,-0.065925098955631],[0.065418161451817,-0.078242972493172,0.092341646552086]]],[[[0.023911600932479,-0.0026125721633434,0.062007110565901],[0.041901651769876,0.013852439820766,-0.068389132618904],[-0.2627187371254,0.079609714448452,0.12644948065281]],[[-0.093621090054512,0.11713687330484,-0.024799887090921],[0.027026331052184,-0.05585140734911,0.001569272368215],[0.0062929354608059,0.00913165230304,0.039223689585924]],[[-0.084320388734341,-0.0041146040894091,-0.018579307943583],[-0.12399076670408,-0.02020063623786,-0.02720600925386],[0.033014509826899,-0.069741420447826,-0.1005994156003]],[[0.01314855273813,-0.048585448414087,0.0037718005478382],[0.035739373415709,-0.15819579362869,-0.2146974503994],[0.067113600671291,-0.082286782562733,0.08397600799799]],[[-0.10309053212404,-0.1139702051878,-0.13642507791519],[0.051394868642092,-0.038263376802206,-0.071181997656822],[0.030725134536624,0.046843368560076,0.043316658586264]],[[0.14043684303761,0.10004937648773,0.028781730681658],[0.016230043023825,-0.16767731308937,-0.033157531172037],[0.14674326777458,0.00090601551346481,-0.174481138587]],[[-0.04315983876586,-0.002426968421787,0.10345162451267],[-0.05785845220089,-0.008058256469667,-0.019980188459158],[-0.047463063150644,-0.046444270759821,-0.022026874125004]],[[-0.07446213811636,0.023387495428324,0.054627291858196],[0.018389778211713,0.023192711174488,-0.014801564626396],[-0.16595610976219,0.059062082320452,0.034791171550751]],[[0.017394196242094,0.040863856673241,-0.11130211502314],[-0.00067373638739809,0.10023523122072,0.11814128607512],[-0.045104157179594,-0.10323019325733,-0.033199280500412]],[[-0.043882802128792,-0.018834494054317,0.088404342532158],[0.11559046804905,0.0064198626205325,-0.14818544685841],[0.052335865795612,-0.0085192900151014,0.037587899714708]],[[0.075654856860638,0.035878781229258,0.027964223176241],[0.023503147065639,0.031448408961296,0.089891888201237],[-0.15924337506294,-0.27164825797081,-0.085250295698643]],[[-0.10848441720009,-0.0073405364528298,-0.067369371652603],[-0.1293181926012,-0.051265321671963,-0.04150578379631],[0.036164216697216,-0.094836637377739,-0.037221785634756]],[[0.026674186810851,-0.078814163804054,-0.0064269527792931],[-0.020023383200169,0.11937070637941,0.11707955598831],[-0.029583837836981,0.080453865230083,-0.14176994562149]],[[0.068154618144035,0.0067192255519331,0.00014065683353692],[-0.088418886065483,-0.00050683284644037,-0.10002126544714],[-0.076165914535522,0.01588805578649,0.00032690426451154]],[[-0.16020986437798,0.0070891138166189,-0.027838269248605],[0.063404724001884,0.11631693691015,-0.066868752241135],[0.07625824958086,-0.080840118229389,0.012002158910036]],[[0.062030177563429,0.064021654427052,-0.038022100925446],[-0.003006293438375,-0.09176280349493,-0.06632985919714],[-0.0078794313594699,-0.05003909394145,-0.019963102415204]],[[0.050046056509018,0.13314682245255,-0.0025346872862428],[-0.18380373716354,-0.36865919828415,-0.088480532169342],[-0.012347810901701,0.050408110022545,-0.09476013481617]],[[0.0061709238216281,-0.077218368649483,-0.048045866191387],[-0.07197892665863,-0.079534411430359,0.07404101639986],[0.023597609251738,-0.094477862119675,-0.034103371202946]],[[0.035541605204344,-0.064147002995014,-0.085225850343704],[0.045726772397757,-0.038861989974976,0.078260391950607],[-0.11931359767914,-0.061919149011374,0.2497581243515]],[[-0.049070633947849,0.0070665208622813,-0.055777668952942],[-0.014890876598656,-0.017211524769664,0.12058142572641],[-0.018076572567225,-0.038628302514553,0.05230987071991]],[[0.068931899964809,0.038747288286686,0.038753680884838],[-0.016943173483014,0.098952487111092,0.097713284194469],[-0.08482514321804,-0.28961756825447,-0.15721026062965]],[[-0.23230712115765,-0.17817643284798,0.088599316775799],[-0.06351924687624,-0.049075078219175,0.0014714960707352],[-0.085039898753166,0.015446467325091,-0.006040511187166]],[[-0.011396368034184,-0.082646049559116,-0.079131223261356],[-0.0083455750718713,-0.065488062798977,0.098896481096745],[-0.045727949589491,0.029324615374207,-0.15021389722824]],[[0.061244808137417,0.010440205223858,-0.013044076040387],[-0.099135383963585,0.085726201534271,-0.1043836325407],[-0.15180286765099,-0.085789479315281,-0.027020601555705]],[[0.026947362348437,0.0036330260336399,-0.049750246107578],[0.057997535914183,0.031133519485593,-0.035673022270203],[-0.0178766194731,0.17139840126038,0.032777391374111]],[[-0.11775846779346,0.1147687509656,-0.046299394220114],[0.07247019559145,-0.0057640452869236,0.035342678427696],[-0.090339668095112,-0.09369283914566,-0.040418416261673]],[[0.082094922661781,-0.015264614485204,-0.037182152271271],[-0.013805760070682,-0.018454812467098,-0.026633776724339],[-0.037322580814362,-0.070075437426567,0.014291878789663]],[[-0.11112520098686,0.064331971108913,-0.0233562476933],[0.045720495283604,-0.067474126815796,-0.11332581192255],[0.012892792932689,0.041283760219812,-0.078309237957001]],[[0.0073474491946399,0.15830655395985,0.081395775079727],[0.10609151422977,-0.0086848512291908,0.04588221013546],[-0.14385215938091,-0.2957977950573,-0.20739355683327]],[[-0.1357447206974,-0.039326921105385,-0.017186025157571],[-0.10764756798744,0.017029354348779,-0.049019999802113],[-0.081342145800591,0.10524649173021,0.11426316201687]],[[-0.09083054214716,0.09174320101738,0.11916713416576],[-0.17661383748055,-0.17195726931095,-0.15429815649986],[0.039498288184404,-0.028412217274308,0.019199641421437]],[[-0.025733899325132,-0.092261597514153,-0.0042611970566213],[0.080087043344975,0.069269597530365,0.11836908012629],[-0.029307274147868,0.025607505813241,-0.13165129721165]],[[-0.058500729501247,0.10638563334942,0.065084882080555],[-0.22871014475822,0.023349892348051,0.043213628232479],[-0.072356328368187,0.047049786895514,-0.033507645130157]],[[0.038047481328249,-0.14946441352367,-0.051654957234859],[0.04391261190176,-0.029745452105999,-0.014176024124026],[0.1000566855073,-0.018683478236198,-0.030176755040884]],[[0.0033696792088449,0.009044611826539,0.02350240200758],[-0.10098209232092,0.019440937787294,0.17155478894711],[-0.058884907513857,-0.0070705944672227,-0.1046841442585]],[[-0.25588476657867,-0.23768183588982,-0.21313047409058],[-0.0057795280590653,-0.06850042194128,-0.1255557090044],[0.060577809810638,0.13733613491058,0.13299651443958]],[[0.0054629351943731,-0.067179769277573,-0.090621121227741],[0.038435492664576,0.031482890248299,-0.1080245450139],[-0.038795132189989,0.067758224904537,0.043993890285492]],[[0.13062790036201,0.11413583159447,0.071490302681923],[0.079550117254257,-0.031055212020874,0.015989672392607],[-0.13565514981747,-0.17312549054623,-0.065163008868694]],[[-0.039179269224405,-0.053992088884115,0.052472192794085],[0.006524346768856,-0.047078229486942,0.03721434250474],[-0.091997936367989,-0.009985682554543,0.034491330385208]],[[-0.011069698259234,-0.17713683843613,-0.1350409090519],[0.10130660235882,0.12399057298899,0.087938658893108],[0.098796375095844,-0.095221370458603,-0.0057349889539182]],[[0.0069913449697196,-0.18141697347164,-0.046859938651323],[-0.031421404331923,-0.13654012978077,0.015991024672985],[-0.10544072836637,-0.14283898472786,-0.0080256937071681]],[[-0.10543873906136,-0.077058658003807,-0.010796634480357],[0.085219047963619,-0.04057952016592,-0.0014496942749247],[-0.12849076092243,0.12667213380337,0.0061398898251355]],[[-0.0230344068259,0.07293738424778,0.16865774989128],[-0.017979295924306,-0.10893328487873,0.041556600481272],[0.048242494463921,-0.031010419130325,-0.0014341039350256]],[[-0.093497321009636,0.035443771630526,0.017920283600688],[0.079471252858639,-0.070870354771614,0.068457789719105],[-0.050834748893976,0.068420171737671,-0.017732311040163]],[[-0.15206001698971,-0.0095139537006617,0.017045993357897],[-0.094614654779434,-0.061153806746006,0.042148094624281],[0.063028611242771,0.090559795498848,0.0050532431341708]],[[0.11685291677713,0.020817009732127,-0.070942871272564],[0.10731419175863,0.03632589802146,0.0036352407187223],[-0.044929094612598,-0.16146655380726,-0.1875157803297]],[[-0.0053836619481444,-0.05928497761488,-0.042128894478083],[0.031508419662714,-0.026559609919786,0.023077012971044],[0.041101984679699,0.13901861011982,-0.0092482771724463]],[[-0.057558361440897,-0.19103936851025,-0.043556708842516],[0.0081463186070323,0.010272947140038,-0.10768070816994],[0.062914103269577,0.019411826506257,0.09175306558609]],[[-0.10308267921209,0.067994430661201,-0.0422358289361],[0.05238689109683,-0.037942633032799,-0.16725447773933],[-0.016144474968314,0.11611664295197,-0.14850324392319]],[[-0.084221750497818,0.054131776094437,0.013502323068678],[0.0095087513327599,-0.10868129134178,-0.075449861586094],[0.017363581806421,0.12442301213741,0.05290586873889]],[[0.0068316361866891,-0.10174742341042,-0.08318430185318],[-0.066638015210629,-0.032802864909172,-0.031731285154819],[-0.07770948112011,-0.050979059189558,-0.13228566944599]],[[0.0084745390340686,-0.0039579658769071,-0.17060971260071],[0.073040500283241,-0.04131431132555,-0.16888254880905],[0.075886577367783,-0.026184022426605,0.10340571403503]],[[0.043782260268927,0.065410062670708,-0.069821961224079],[0.04574367031455,0.023762108758092,-0.10923671722412],[0.10076043009758,0.13789358735085,-0.2444533854723]],[[-0.052486788481474,-0.00080677168443799,0.25736683607101],[-0.031826127320528,-0.03094906359911,0.17806586623192],[0.013092600740492,-0.26311773061752,-0.062226451933384]],[[-0.061553608626127,-0.314782589674,-0.12002114951611],[-0.04899413511157,-0.11359872668982,0.050952102988958],[0.041483614593744,0.13340024650097,0.051331412047148]],[[-0.18448305130005,-0.0039221197366714,0.066064551472664],[0.12155850976706,0.12030534446239,0.052339028567076],[-0.01523791346699,0.0012991006951779,-8.2201389886905e-05]],[[-0.0012761350953951,-0.05084539949894,-0.03274804353714],[0.030956251546741,0.014057653024793,-0.028310220688581],[0.011212204582989,-0.017142044380307,-0.0021908287890255]],[[-0.0094746267423034,0.057487949728966,-0.030699539929628],[-0.010639656335115,0.01768371835351,0.11503591388464],[-0.02006153576076,-0.040584750473499,-0.047415163367987]],[[-0.0046459794975817,-0.088455021381378,0.00098820973653346],[0.063080318272114,0.053901832550764,0.089361101388931],[-0.05083179846406,0.01847330853343,0.16277219355106]],[[0.070171743631363,0.10001841187477,0.044030055403709],[-0.12386085838079,-0.031410444527864,-0.0020623204763979],[-0.12755604088306,-0.040485043078661,0.055645287036896]],[[0.041706249117851,-0.1525404304266,-0.034831624478102],[0.046520005911589,-0.028150126338005,-0.05450613796711],[0.029498109593987,0.023244448006153,0.081979475915432]],[[-0.0029734305571765,0.058494534343481,0.078395165503025],[0.15615782141685,0.10762042552233,0.10971011966467],[-0.067497588694096,-0.03838723897934,-0.25620326399803]],[[-0.044523227959871,-0.19101120531559,0.084695763885975],[0.1780911386013,0.026355553418398,0.0084381317719817],[0.078689448535442,-0.1859088987112,0.097152471542358]],[[-0.17576678097248,-0.1708656847477,-0.16087944805622],[0.047313675284386,0.1567764878273,0.037950791418552],[0.072992995381355,0.065575167536736,0.28094974160194]]],[[[-0.036603640764952,-0.012617392465472,-0.10354187339544],[0.10763141512871,0.033655252307653,-0.028169609606266],[-0.034629799425602,0.059446014463902,0.026456195861101]],[[-0.017840310931206,-0.0099645415320992,-0.0061253169551492],[-0.0045348606072366,0.07195857167244,0.080613240599632],[0.017134169116616,0.10914888978004,-0.043875571340322]],[[-0.031499113887548,-0.061492823064327,0.052278447896242],[-0.064353831112385,0.088216155767441,0.051809590309858],[0.12674756348133,0.084484584629536,0.0091887880116701]],[[-0.070677936077118,-0.016262166202068,0.011174593120813],[0.030377516523004,-0.17934562265873,0.051331967115402],[-0.032884407788515,0.016828147694468,0.024976946413517]],[[-0.090478584170341,0.099821448326111,0.016896789893508],[0.028506983071566,-0.037884071469307,0.088985852897167],[-0.17614033818245,-0.16895419359207,-0.093184784054756]],[[-0.02867572568357,-0.021587714552879,0.064741395413876],[0.04481103271246,0.09068863093853,0.074974164366722],[-0.016900898888707,0.037164472043514,0.04943049326539]],[[0.037426382303238,-0.08758832514286,0.075204461812973],[-0.14221119880676,-0.026193924248219,0.060230679810047],[0.091355443000793,0.068337932229042,-0.009620537981391]],[[-0.053211562335491,0.0049322177655995,0.085750184953213],[-0.072894610464573,0.085184320807457,-0.073135070502758],[0.083618454635143,-0.046523094177246,-0.064585767686367]],[[-0.11131021380424,0.034822817891836,-0.026794882491231],[0.0030309474095702,0.011017867363989,-0.034194052219391],[0.073704957962036,0.031208990141749,-0.0077616884373128]],[[-0.011625384911895,-0.048417184501886,0.039146430790424],[-0.0091270320117474,0.055527452379465,0.035013724118471],[0.22708168625832,0.094837576150894,0.00078842620132491]],[[0.045080997049809,0.084151856601238,0.0034966522362083],[0.048532452434301,-0.031893331557512,-0.064569510519505],[-0.060812938958406,-0.012971027754247,-0.18371795117855]],[[0.032085582613945,-0.035131804645061,-0.084650568664074],[-0.04185251891613,-0.023090844973922,-0.046105615794659],[0.015867039561272,-0.1136097162962,-0.092384919524193]],[[-0.12096297740936,-0.13462293148041,-0.08134089410305],[-0.11184654384851,-0.12415911257267,-0.0091913258656859],[-0.028483621776104,-0.16226680576801,-0.073922455310822]],[[-0.075434744358063,-0.19966544210911,-0.11837740242481],[-0.086036995053291,0.0062744123861194,0.13712471723557],[-0.046076957136393,0.16021810472012,0.066286988556385]],[[-0.17400085926056,-0.11661267280579,0.002370327943936],[-0.074604645371437,-0.039696555584669,-0.026818856596947],[0.039875961840153,-0.044565368443727,0.14568130671978]],[[0.076684392988682,0.017219258472323,0.057254653424025],[0.24918794631958,-0.095564618706703,-0.13502180576324],[-0.0011123314034194,0.02248302474618,0.088676564395428]],[[0.16334702074528,0.078344069421291,0.08194575458765],[0.00042692266288213,-0.01205025613308,-0.15171848237514],[0.026712909340858,0.072297714650631,-0.1529378592968]],[[0.03476270660758,-0.12919701635838,0.094440884888172],[-0.060466885566711,-0.15570487082005,-0.035110291093588],[-0.056220814585686,-0.11880721151829,0.10360960662365]],[[0.18942739069462,0.035193141549826,0.056735467165709],[0.048043429851532,-0.0084770927205682,-0.10696849226952],[0.0045278123579919,-0.1172111555934,0.028518356382847]],[[-0.065368369221687,-0.0044479258358479,0.14316092431545],[-0.013374892063439,0.037207126617432,0.0045196660794318],[-0.097343854606152,-0.018916957080364,-0.015676708891988]],[[0.19663156569004,-0.052249357104301,-0.014621710404754],[-0.025782838463783,-0.088117502629757,-0.014296754263341],[0.065098628401756,0.0074204723350704,-0.097759090363979]],[[0.0052265394479036,-0.047945205122232,-0.02989974245429],[-0.025558045133948,0.048141125589609,-0.01306123752147],[0.064925394952297,-0.016260106116533,0.017247723415494]],[[0.018674919381738,0.058566249907017,0.031672563403845],[0.073538273572922,0.012195081450045,0.06324727088213],[-0.13850399851799,-0.040954750031233,0.083230994641781]],[[-0.057843547314405,0.037830103188753,-0.029507432132959],[0.10404813289642,-0.048720464110374,0.10310359299183],[0.023435762152076,-0.15633307397366,0.14698587357998]],[[-0.050419420003891,0.086871489882469,-0.0024883516598493],[0.029528144747019,-0.080229111015797,0.028179049491882],[-0.039917442947626,0.017374539747834,0.064693309366703]],[[0.066844642162323,-0.031066017225385,-0.00081522960681468],[0.15862978994846,0.043530620634556,0.0057484041899443],[0.17132449150085,-0.013699542731047,-0.078664295375347]],[[-0.17489649355412,-0.055041812360287,-0.065356440842152],[0.073156714439392,0.080377586185932,0.0099108321592212],[-0.061331387609243,0.078815534710884,-0.056319933384657]],[[-0.009101933799684,-0.12521974742413,0.010028259828687],[0.069030597805977,0.089943006634712,-0.051163069903851],[-0.024765448644757,-0.034738130867481,0.089599795639515]],[[-0.022011965513229,0.024048835039139,0.052895274013281],[-0.053783871233463,-0.072199583053589,-0.087862640619278],[-1.585133941262e-05,-0.080796100199223,-0.039454396814108]],[[-0.19753435254097,-0.21058124303818,-0.0032411590218544],[-0.26214283704758,-0.12563316524029,-0.071010917425156],[-0.0079151755198836,0.036406613886356,-0.0044165104627609]],[[-0.010257172398269,0.044900469481945,-0.01973594352603],[0.0080934474244714,0.0021517795976251,-0.075188972055912],[-0.089354030787945,-0.048021085560322,-0.19540704786777]],[[-0.054939825087786,-0.046781029552221,-0.03664418309927],[-0.065218217670918,0.057766065001488,-0.020094484090805],[-0.077118642628193,-0.057752780616283,0.048574220389128]],[[-0.01341937109828,0.09528112411499,-0.13865034282207],[0.0049348515458405,0.013784450478852,-0.023165645077825],[-0.041206698864698,0.1018747985363,-0.03112100623548]],[[0.046298280358315,0.0017230389639735,0.0087274042889476],[0.032241027802229,-0.10288736969233,0.046817574650049],[-0.040233850479126,0.075765684247017,-0.01361364684999]],[[-0.03414361923933,0.045227341353893,-0.007591578643769],[-0.025322891771793,-0.0034906000364572,-0.073749184608459],[-0.0075185024179518,0.11465544253588,0.0062835146673024]],[[0.04034223780036,-0.20825333893299,0.017378294840455],[-0.063104547560215,-0.048473760485649,0.076004721224308],[0.053280152380466,0.012370740994811,0.0055508366785944]],[[-0.13560707867146,0.061389964073896,-0.027571080252528],[-0.10819242149591,0.009619883261621,-0.012641120702028],[-0.026833726093173,0.15269519388676,-0.020565731450915]],[[0.0034010449890047,0.10669858753681,0.025509737432003],[0.047597642987967,-0.05495173111558,-0.092604756355286],[-0.039320003241301,-0.058780919760466,-0.0072867115959525]],[[-0.060534726828337,0.038184233009815,-0.13826593756676],[0.0072903954423964,-0.046837508678436,0.030357973650098],[-0.070094056427479,-0.12176144123077,0.00012836902169511]],[[-0.10250677168369,-0.027076464146376,0.057017557322979],[-0.16079452633858,0.049752496182919,0.10856384038925],[0.072971627116203,-0.17821334302425,-0.062308359891176]],[[0.028999110683799,-0.093023210763931,-0.072635196149349],[0.089189387857914,-0.011527893133461,-0.093848817050457],[0.058880686759949,-0.040918476879597,-0.10527918487787]],[[0.023776201531291,-0.027182321995497,-0.05900377035141],[0.048219785094261,-0.026409316807985,0.083143807947636],[-0.017634466290474,-0.009115626104176,-0.023681186139584]],[[-0.10064547508955,0.076127141714096,-0.11124853789806],[-0.076074741780758,0.0021846350282431,0.10117790102959],[-0.20344790816307,-0.13364967703819,0.07790070772171]],[[-0.055987026542425,-0.011405322700739,-0.0079175140708685],[0.053498473018408,-0.02838247269392,-0.026665072888136],[0.012429394759238,-0.069704346358776,0.044696275144815]],[[-0.091698132455349,-0.044700283557177,0.11793725192547],[-0.19946739077568,-0.04105718433857,-0.0532516092062],[-0.062972120940685,0.12064664810896,-0.019724939018488]],[[0.026007112115622,-0.090737015008926,0.032318007200956],[0.12050396949053,0.019541608169675,0.022583559155464],[0.10785791277885,0.08445330709219,0.063450790941715]],[[0.030588394030929,-0.017472079023719,-0.049395147711039],[0.012023907154799,-0.11351248621941,0.12915363907814],[-0.055490724742413,0.043656669557095,-0.068888254463673]],[[-0.23076766729355,0.016550770029426,-0.035256676375866],[-0.068100415170193,0.0012663743691519,0.051232919096947],[-0.11622484028339,0.085817828774452,0.063189700245857]],[[0.03586507588625,0.018523022532463,-0.057216107845306],[0.074774481356144,-0.025396347045898,-0.089178487658501],[-0.078953862190247,0.054713647812605,0.074419371783733]],[[0.089608952403069,-0.10049910843372,0.027880948036909],[-0.0051066824235022,0.037653096020222,0.072841450572014],[-0.11777159571648,-0.045310821384192,0.041797157377005]],[[-0.040779918432236,-0.026535749435425,-0.034395918250084],[-0.11025681346655,-0.076738297939301,-0.026388650760055],[-0.055624172091484,0.071934893727303,0.021752491593361]],[[0.0013892455026507,-0.031615328043699,-0.055876653641462],[-0.047168545424938,-0.051595069468021,0.040926400572062],[0.060753144323826,-0.17652514576912,-0.01051240041852]],[[0.03829700499773,0.075478963553905,-0.062822252511978],[-0.030733399093151,-0.021035553887486,0.13114774227142],[-0.029598161578178,0.13371284306049,-0.030138881877065]],[[0.097814723849297,0.021239863708615,-0.11612713336945],[0.069591760635376,0.027251973748207,0.027058621868491],[-0.014094321988523,-0.048870626837015,0.019327022135258]],[[0.0013169555459172,0.025725936517119,-0.018877394497395],[-0.071119666099548,-0.04322612658143,-0.027940327301621],[-0.043827451765537,-0.12107519805431,-0.095292642712593]],[[0.13335104286671,-0.012169979512691,0.078799784183502],[0.0055570495314896,-0.1112060919404,-0.039714094251394],[-0.045700240880251,-0.034167401492596,0.090441673994064]],[[0.062770530581474,-0.073998689651489,0.040145564824343],[0.12129206955433,-0.029199980199337,-0.026018286123872],[0.18466752767563,0.088007211685181,-0.08245550096035]],[[0.0099000297486782,-0.11773397028446,-0.082458861172199],[0.051997449249029,-0.10825572162867,-0.048506341874599],[-0.037763956934214,-0.039324168115854,-0.044121604412794]],[[-0.13585022091866,0.17109853029251,0.054310724139214],[-0.035622630268335,-0.080217406153679,0.019790366292],[0.0025148070417345,-0.0018648555269465,0.12731796503067]],[[0.0024610329419374,-0.026037713512778,-0.012826316058636],[0.0042485129088163,-0.045364730060101,-0.11020577698946],[0.071703597903252,0.069079995155334,0.088804483413696]],[[-0.013486218638718,-0.11335196346045,0.081085629761219],[-0.12592242658138,-0.10956181585789,-0.03823572024703],[0.032868873327971,0.11288432776928,0.14048671722412]],[[-0.15905612707138,0.001417315332219,-0.0026803591754287],[0.024997206404805,-0.13741287589073,-0.090581402182579],[-0.081254564225674,-0.14069928228855,-0.042592421174049]],[[-0.086939580738544,-0.028940578922629,-0.056965671479702],[0.050367459654808,0.10622316598892,0.058426167815924],[0.079122334718704,0.093519859015942,0.027862790971994]],[[0.13571187853813,-0.014215195551515,0.222845941782],[-0.10904780030251,-0.12061829119921,0.012210224755108],[-0.11433500051498,-0.031346842646599,-0.23018215596676]]],[[[0.0024706865660846,0.047016922384501,0.11079613864422],[-0.086252428591251,0.0080300243571401,0.062136188149452],[-0.083066061139107,-0.020073119550943,-0.068169586360455]],[[-0.036963805556297,0.10250183939934,0.076475337147713],[0.060580499470234,-0.00048890413017944,-0.087674967944622],[-0.060108534991741,-0.021761955693364,0.11508539319038]],[[0.08226627856493,0.03401991724968,0.0025542362127453],[0.059151038527489,-0.1238457262516,-0.030659718438983],[0.0039367182180285,-0.011508355848491,-0.035757455974817]],[[0.04015913233161,-0.055111803114414,-0.057572145015001],[0.012606328353286,0.057003978639841,-0.036975994706154],[0.010256750509143,-0.13629725575447,-0.13005085289478]],[[0.051192387938499,-0.017781255766749,-0.093735113739967],[0.002435733564198,-0.07170046120882,-0.028841134160757],[0.012405558489263,-0.029365256428719,-0.14922860264778]],[[-0.052872475236654,-0.024608768522739,-0.063422285020351],[-0.059378422796726,0.0052512935362756,0.013153749518096],[0.017204951494932,0.067967087030411,0.0068093137815595]],[[0.078389883041382,0.18802005052567,0.038802769035101],[-0.034906920045614,-0.064191371202469,0.039665717631578],[-0.0046168994158506,0.024374900385737,-0.014774735085666]],[[-0.042118400335312,-0.019737822934985,0.0057436805218458],[-0.0019875762518495,0.012641469016671,0.0050637600943446],[-0.025579569861293,-0.076978199183941,0.036024834960699]],[[-0.057947818189859,-0.090319134294987,-0.061344735324383],[-0.080661863088608,0.030810384079814,0.025680888444185],[0.083997130393982,0.089854024350643,0.039347533136606]],[[-0.072232104837894,-0.10302161425352,0.011019228026271],[-0.13850416243076,-0.015336226671934,-0.039773017168045],[-0.050660442560911,0.00025760041899048,-0.12570407986641]],[[0.01482626516372,0.14769406616688,-0.028380667790771],[0.061390034854412,-0.04589269310236,0.014748983085155],[0.046706810593605,0.026240039616823,0.066690199077129]],[[0.021139271557331,0.06842677295208,-0.11544039100409],[-0.040525510907173,-0.24571837484837,-0.023107167333364],[-0.12783633172512,0.0096097560599446,0.041119735687971]],[[-0.15260449051857,0.068551160395145,0.045917227864265],[-0.068613864481449,0.059305548667908,0.01113195810467],[-0.044633723795414,-0.095059506595135,-0.057199753820896]],[[-0.029069676995277,0.057954512536526,-0.081729911267757],[0.035203315317631,0.027746967971325,0.044348001480103],[-0.035600636154413,0.022288467735052,-0.007773871999234]],[[-0.11446867883205,-0.17858208715916,0.020153038203716],[-0.016518015414476,0.0039553283713758,0.069352567195892],[0.071026913821697,-0.0099931741133332,-0.037647154182196]],[[0.043672233819962,-0.073876015841961,-0.014639491215348],[-0.071244679391384,0.050342012196779,-0.071007817983627],[-0.10779076814651,-0.021870758384466,-0.055580891668797]],[[-0.10918940603733,0.0050736679695547,-0.035276640206575],[-0.10661692172289,0.099732160568237,-0.014334279112518],[0.08534349501133,0.059589151293039,0.0043128374963999]],[[-0.0079856002703309,-0.067434728145599,-0.0042056310921907],[-0.077941693365574,-0.014557375572622,0.06944789737463],[-0.082418940961361,-0.074227027595043,0.047250401228666]],[[-0.0069957040250301,0.098337016999722,0.075561679899693],[-0.06061988696456,-0.022713381797075,0.063729375600815],[-0.22344496846199,-0.014374132268131,0.013921813108027]],[[-0.05178913846612,-0.044755008071661,0.032827254384756],[-0.067777991294861,0.041943304240704,-0.046903684735298],[-0.063234113156796,0.010391077026725,-0.069934524595737]],[[-0.038207162171602,0.13155670464039,-0.086192727088928],[-0.083127729594707,-0.016491433605552,-0.042254988104105],[-0.031381953507662,0.071772888302803,0.049105770885944]],[[-0.038863819092512,0.014887749217451,0.073083326220512],[-0.078339219093323,-0.13989919424057,-0.05350087583065],[-0.065020740032196,0.13406209647655,0.12286432087421]],[[-0.048981461673975,-0.076863251626492,0.023712435737252],[0.029993088915944,-0.055486131459475,-0.019500298425555],[-0.018805950880051,0.022310884669423,-0.088428735733032]],[[-0.11292807757854,0.033636134117842,-0.02681745775044],[0.0077822161838412,0.045669306069613,0.020052343606949],[0.11216435581446,-0.006370332557708,0.043877314776182]],[[-0.040905311703682,-0.10086908191442,-0.038341209292412],[-0.053400233387947,0.052947398275137,0.011682394891977],[-0.013969303108752,-0.077485643327236,-0.09310170263052]],[[-0.071279443800449,-0.056760296225548,0.027811322361231],[0.010055443271995,-0.0073129483498633,0.01145116891712],[-0.13945360481739,-0.016207542270422,0.060175228863955]],[[-0.020079219713807,0.011580245569348,-0.13934408128262],[0.10961902141571,-0.0052506537176669,-0.11832981556654],[-0.016267223283648,-0.15908814966679,0.12694758176804]],[[0.17198075354099,0.05323139205575,-0.11946474760771],[-0.081756442785263,-0.058454822748899,-0.13761936128139],[0.021889058873057,-0.012139317579567,0.088921941816807]],[[0.018736252561212,0.018290434032679,-0.069455817341805],[0.080544255673885,0.039631113409996,-0.060006566345692],[0.048527214676142,0.04464328289032,0.02503645978868]],[[0.058509461581707,-0.0069494200870395,0.099042750895023],[-0.10525551438332,-0.06292599439621,-0.024820754304528],[-0.064025841653347,0.050003040581942,-0.077707372605801]],[[-0.12127956748009,0.10924077033997,-0.046558894217014],[0.0079504773020744,-0.031430561095476,-0.019965209066868],[0.0067262332886457,0.031759563833475,0.068520665168762]],[[0.014905906282365,-0.026175145059824,0.014876144938171],[-0.022492060437799,0.011016122065485,-0.12203643471003],[-0.029387075453997,0.04664645716548,0.049211971461773]],[[-0.017492063343525,0.022295296192169,-0.031545773148537],[-0.10163896530867,-0.03523825109005,-0.028988176956773],[-0.023353789001703,-0.016196655109525,-0.0044278241693974]],[[-0.092585571110249,-0.06250212341547,0.030010893940926],[0.050511300563812,0.0023812919389457,-0.029025014489889],[-0.0071480399928987,0.057555895298719,0.02787190489471]],[[0.039532221853733,0.085689201951027,0.084954619407654],[0.056552350521088,-0.11475414782763,0.048665326088667],[-0.085592500865459,0.0068734381347895,-0.028109099715948]],[[-0.0046459836885333,-0.071092806756496,0.025450157001615],[-0.072725653648376,0.018654970452189,0.020969562232494],[0.04110299795866,-0.017810167744756,-0.093416623771191]],[[0.12740372121334,-0.088373638689518,-0.12110579758883],[-0.077851362526417,-0.13843728601933,0.0010294783860445],[-0.1798984259367,-0.036343343555927,0.16907924413681]],[[-0.0031041593756527,-0.0072510531172156,0.025997975841165],[0.031787302345037,-0.023565521463752,-0.04529457911849],[0.028295785188675,-0.084103107452393,0.060000952333212]],[[-0.03469206020236,0.01345912925899,-0.0056381234899163],[-0.0090007986873388,0.062596410512924,-0.039977371692657],[-0.062179278582335,0.00343031832017,0.057509440928698]],[[0.079590581357479,-0.0091249058023095,-0.10025706142187],[0.021987169981003,-0.0049437624402344,-0.095394536852837],[-0.22284889221191,-0.037729889154434,0.11268176883459]],[[-0.098632365465164,-0.033828221261501,-0.10470193624496],[-0.16808544099331,-0.046209048479795,-0.040467854589224],[0.016914267092943,-0.049692887812853,-0.09642118960619]],[[0.0057893292978406,-0.019175577908754,0.038161966949701],[0.087034665048122,-0.06117058172822,-0.061577223241329],[0.037080958485603,-0.090552404522896,-0.055013444274664]],[[-0.05537611618638,0.063499838113785,-0.060808125883341],[0.15384203195572,-0.077914118766785,-0.027927175164223],[-0.052473973482847,-0.0098989866673946,-0.067128658294678]],[[-0.024865554645658,0.065470710396767,0.0048800115473568],[0.053242050111294,0.049050115048885,-0.014602126553655],[-0.030018316581845,0.032194245606661,-0.049513220787048]],[[-0.021777912974358,-0.24458822607994,-0.045507811009884],[-0.01411359757185,0.0081975180655718,0.0043909940868616],[-0.0635786652565,-0.086577713489532,-0.010778261348605]],[[0.017968287691474,0.041893795132637,-0.10272155702114],[-0.045324105769396,-0.030513092875481,-0.078225553035736],[0.035185620188713,0.13026915490627,0.029475083574653]],[[0.022610416635871,-0.11114975064993,-0.21931934356689],[-0.19816887378693,0.0071012126281857,0.14060254395008],[0.060874555259943,0.008240008726716,0.027267575263977]],[[-0.025600582361221,-0.15530596673489,-0.033271137624979],[0.10356923192739,-0.027903852984309,-0.046678893268108],[0.0099485516548157,-0.03315806388855,0.084449172019958]],[[-0.086251050233841,0.028565246611834,-0.014821705408394],[-0.054935827851295,0.036320447921753,0.11263524740934],[-0.014085036702454,-0.14226870238781,0.21170891821384]],[[0.11004627496004,0.051187459379435,0.068228080868721],[0.018678762018681,0.012976297177374,-0.048770558089018],[-0.022862304002047,-0.17196324467659,-0.042882900685072]],[[0.06561915576458,0.019317522644997,-0.054642755538225],[0.0097313821315765,-0.028870889917016,-0.040641870349646],[-0.024191407486796,0.0074583911336958,-0.021128315478563]],[[-0.057368244975805,-0.061345241963863,-0.018315725028515],[-0.058683775365353,-0.045902468264103,0.047004740685225],[-0.091135248541832,0.025498948991299,0.10475634783506]],[[0.084148287773132,-0.046404905617237,0.14806488156319],[-0.068315781652927,0.094842188060284,-0.0033593585249037],[-0.0013392306864262,0.02255374006927,-0.039243903011084]],[[-0.00241340091452,-0.053705889731646,0.13076676428318],[-0.11163732409477,0.050051882863045,0.04017149284482],[-0.046426124870777,-0.037491377443075,0.052010793238878]],[[-0.034587550908327,-0.11029981076717,-0.1216993406415],[-0.053655635565519,-0.099024206399918,0.081702277064323],[-0.085880063474178,-0.025060491636395,0.069919601082802]],[[-0.059670578688383,-0.030583849176764,-0.004755494184792],[-0.0050229700282216,0.012832561507821,-0.10425323992968],[0.081436417996883,0.10607217997313,0.096048392355442]],[[0.039880983531475,-0.030608644708991,-0.13469398021698],[0.056064054369926,-0.13605608046055,-0.089050509035587],[-0.027534542605281,-0.012182664126158,-0.092046931385994]],[[-0.066888697445393,-0.0042239255271852,0.012951660901308],[-0.029320714995265,0.021415704861283,-0.060652129352093],[-0.058534946292639,-0.047897700220346,-0.20588879287243]],[[-0.0070286295376718,-0.076232492923737,-0.0058855409733951],[-0.023072686046362,-0.0098326643928885,0.053132567554712],[-0.046987425535917,0.016637796536088,0.060469821095467]],[[-0.052416786551476,0.051458410918713,0.022322645410895],[0.058453105390072,0.049420475959778,0.031081350520253],[-0.053479496389627,-0.010590438731015,0.001040683244355]],[[-0.049135684967041,-0.0081553105264902,-0.024490237236023],[0.039839785546064,-0.057981166988611,-0.016749365255237],[0.043335162103176,0.035003326833248,0.019562933593988]],[[0.048772849142551,0.13583633303642,-0.10877830535173],[0.023898711428046,-0.014996329322457,0.025397565215826],[0.078577168285847,0.0088910302147269,0.046488601714373]],[[0.1183859705925,-0.1725400686264,-0.082185484468937],[-0.029866060242057,-0.04530156031251,-0.074027054011822],[-0.13782835006714,-0.02772849984467,0.013179013505578]],[[-0.094717003405094,-0.073985271155834,0.045204166322947],[0.014775967225432,0.087279841303825,0.16200979053974],[0.035353537648916,0.040796265006065,0.030948547646403]]],[[[-0.0018668044358492,0.0031168905552477,0.028932416811585],[0.036315158009529,0.0052826949395239,-0.033010266721249],[-0.046303536742926,0.045175954699516,-0.059353221207857]],[[0.070563226938248,0.16756796836853,0.085285604000092],[-0.054487586021423,0.002952947281301,-0.086301758885384],[-0.021660562604666,-0.1036414578557,-0.046367611736059]],[[0.12104330211878,0.063214480876923,0.056599926203489],[-0.042204044759274,-0.064412176609039,-0.0059476466849446],[0.042831126600504,0.00073744356632233,0.056500546634197]],[[-0.049604076892138,-0.043637864291668,-0.090543955564499],[-0.018509812653065,-0.0012329438468441,0.009608305990696],[0.058042027056217,0.078347697854042,0.027026358991861]],[[0.086499579250813,-0.043701753020287,0.10994229465723],[0.006959933321923,-0.11782815307379,0.015311360359192],[0.032724492251873,0.065155662596226,0.084126085042953]],[[-0.11466269940138,0.032655742019415,-0.0061298250220716],[0.1863306760788,-0.13455457985401,-0.017929278314114],[-0.10978463292122,0.12246505171061,0.014739813283086]],[[0.071752972900867,0.045771270990372,0.035813897848129],[-0.15626813471317,-0.11151761561632,0.042158581316471],[-0.098708525300026,-0.027010394260287,0.031690321862698]],[[-0.021307766437531,-0.057891983538866,0.0056664380244911],[0.065304562449455,-0.10128764808178,-0.025324923917651],[0.015793837606907,0.0067390911281109,0.089982964098454]],[[0.0052868267521262,-0.053409822285175,-0.09887833148241],[-0.061358466744423,-0.019734367728233,0.03407821431756],[0.10052097588778,0.043301146477461,0.043821260333061]],[[-0.012846763245761,-0.15019911527634,0.029100861400366],[0.010079216212034,0.052352897822857,-0.16293585300446],[-0.037932828068733,0.033123251050711,0.028298513963819]],[[-0.072303533554077,0.00048433686606586,-0.045321673154831],[0.13499677181244,-0.013804441317916,0.14265540242195],[-0.071676298975945,0.11951775103807,-0.156125664711]],[[-0.1096863374114,-0.051767230033875,-0.019123181700706],[-0.0039810570888221,-0.021741170436144,0.036068033427],[-0.014722757041454,-0.0029900462832302,0.0038536405190825]],[[-0.060891147702932,0.032508820295334,0.039838351309299],[-0.11196569353342,0.0059204734861851,-0.044046364724636],[-0.0050124120898545,0.020864866673946,-0.022324154153466]],[[0.080496862530708,-0.024291053414345,0.030635349452496],[-0.20464727282524,0.1298024058342,0.13647702336311],[0.017284635454416,-0.01537456177175,0.043393030762672]],[[0.018510853871703,0.17978464066982,-0.0044308132492006],[-0.063979469239712,-0.084217712283134,-0.035863924771547],[-0.058845799416304,-0.13553683459759,-0.0666833370924]],[[-0.10742878168821,-0.040717009454966,0.039414569735527],[0.052440591156483,-0.12350016832352,0.056344304233789],[-0.017198048532009,0.075241200625896,-0.13366609811783]],[[-0.14636786282063,0.071410417556763,0.001573329907842],[0.0064558614976704,0.032327704131603,0.053965657949448],[-0.040887165814638,-0.018733499571681,0.0025984467938542]],[[0.015655998140574,0.0084912925958633,-0.015401758253574],[-0.074040122330189,-0.032202407717705,-0.024565499275923],[-0.053837046027184,-0.14353980123997,-0.01750847324729]],[[-0.012055017985404,-0.0088041201233864,0.10438915342093],[-0.064298592507839,0.0098632844164968,-0.17538903653622],[-0.037280559539795,0.0068638487718999,0.0031347959302366]],[[0.072304546833038,-0.082872852683067,0.11238285154104],[0.035342425107956,0.00048126679030247,-0.0052760215476155],[-0.085531122982502,0.059630136936903,-0.027990473434329]],[[-0.0096909590065479,-0.024461811408401,-0.125751927495],[-0.10371721535921,0.034433547407389,-0.0034871939569712],[-0.047346748411655,-0.0073565128259361,0.014673193916678]],[[-0.16291043162346,-0.063383065164089,0.15155313909054],[0.0075897206552327,0.024848585948348,0.066643193364143],[0.016304632648826,0.026515960693359,-0.032681241631508]],[[-0.0025655005592853,0.028213581070304,0.019153343513608],[0.034230548888445,-0.07540462911129,0.036448262631893],[-0.021099533885717,-0.018661251291633,0.061831384897232]],[[-0.0084719527512789,-0.021239381283522,-0.018813718110323],[-0.044719196856022,0.011590495705605,-0.028230497613549],[-0.074076317250729,-0.067278407514095,-0.11514066159725]],[[-0.013257398270071,-0.10380491614342,-0.069587543606758],[0.091954819858074,-0.017829321324825,0.04012605920434],[-0.092334136366844,0.11301419138908,0.08340522646904]],[[-0.032342936843634,0.060517437756062,0.049989618360996],[-0.086801238358021,0.10662013292313,-0.033181123435497],[-0.074069187045097,-0.0088972300291061,0.18894129991531]],[[-0.089042872190475,-0.15884084999561,-0.20777566730976],[0.011481763795018,-0.017208697274327,-0.20304103195667],[0.13434234261513,0.070803016424179,0.13785074651241]],[[-0.099925741553307,-0.012379596009851,-0.10667400062084],[-0.016644323244691,0.06242997199297,0.016676967963576],[-0.055414546281099,0.057848077267408,0.084059253334999]],[[-0.05175918340683,-0.021381035447121,0.04367209225893],[-0.023939374834299,-0.14584799110889,0.06192734465003],[-0.0044235796667635,-0.10056386142969,0.091011635959148]],[[0.041489616036415,-0.053637862205505,-0.085337370634079],[0.025030983611941,0.098803952336311,-0.042831432074308],[0.091366536915302,0.025357898324728,-0.0091658160090446]],[[0.0024990064557642,-0.030742628499866,0.020635027438402],[0.01210565213114,-0.11657177656889,0.015006604604423],[0.18723480403423,0.0056690820492804,-0.029070794582367]],[[0.04913317784667,-0.011888818815351,0.028258331120014],[-0.083703972399235,-0.022543409839272,-0.089175708591938],[0.017124218866229,0.035941291600466,-0.047917697578669]],[[-0.00033594033448026,0.11340627074242,-0.024950491264462],[0.0064302557148039,-0.028971087187529,0.032492775470018],[-0.077254578471184,-0.022409163415432,0.0016961804358289]],[[-0.11753825098276,-0.0044947611168027,0.015759689733386],[-0.035791464149952,0.052698887884617,0.13480322062969],[-0.0039374940097332,-0.042374704033136,0.015689574182034]],[[-0.020421806722879,0.02383347414434,0.2177364975214],[0.044812366366386,-0.17483912408352,-0.075708881020546],[0.075307302176952,-0.0099328607320786,-0.076281353831291]],[[-0.0082316091284156,-0.031725477427244,-0.065295442938805],[-0.1132620498538,-0.0671381726861,0.049074690788984],[-0.053043238818645,-0.10740745812654,-0.025097817182541]],[[0.023918958380818,-0.12422053515911,-0.15099547803402],[-0.13700243830681,0.12704238295555,-0.059977173805237],[0.15510629117489,0.076178662478924,-0.14561301469803]],[[0.11640507727861,0.1150566264987,-0.040137235075235],[-0.11387000232935,0.064395494759083,0.030605906620622],[-0.077382296323776,-0.083068497478962,-0.036103211343288]],[[-0.070609152317047,-0.024465775117278,-0.10384664684534],[0.0092193763703108,-0.10842767357826,-0.0068614985793829],[0.076847717165947,-0.086178869009018,-0.17378632724285]],[[0.098481833934784,-0.032008700072765,-0.018187010660768],[-0.10210866481066,0.069184020161629,0.089817486703396],[0.041517205536366,0.014041303656995,-0.015756901353598]],[[-0.13212813436985,-0.13136550784111,-0.01368239056319],[-0.014368453994393,-0.061716586351395,0.062991753220558],[-0.040106978267431,-0.08046817779541,-0.0028350458014756]],[[0.011854806914926,-0.20398484170437,0.010809338651597],[0.072181396186352,0.029792632907629,0.0048324652016163],[-0.028958113864064,-0.12414584308863,0.032471776008606]],[[-0.021820046007633,-0.11046262085438,-0.059862449765205],[0.013990130275488,0.042629536241293,-0.0070168981328607],[0.020636349916458,-0.006659175734967,-0.032748203724623]],[[-0.0040675280615687,0.05044599622488,-0.041623756289482],[-0.037338640540838,0.097561120986938,0.04184265434742],[0.034506134688854,-0.038681529462337,-0.011184063740075]],[[0.042401328682899,-0.00044334135600366,-0.063078612089157],[0.014448301866651,-0.13348127901554,-0.050418790429831],[0.068286679685116,-0.12294282019138,0.052539370954037]],[[0.0015140591422096,0.036154963076115,0.037130888551474],[-0.081911273300648,0.19044554233551,-0.045461870729923],[-0.15853771567345,-0.096325092017651,-0.057409480214119]],[[-0.042834050953388,0.13263209164143,0.060026336461306],[0.036113142967224,-0.070044122636318,-0.15312872827053],[-0.043506007641554,-0.13902793824673,-0.029644872993231]],[[0.023635568097234,-0.0012517384020612,-0.045528009533882],[-0.056730486452579,0.0057986117899418,0.020690329372883],[-0.054905399680138,-0.019731055945158,0.020342323929071]],[[0.072538062930107,0.027248699218035,-0.074162468314171],[0.052525360137224,-0.04419981315732,0.037120405584574],[0.039141144603491,0.016393590718508,-0.066084526479244]],[[-0.014508893713355,0.011583718471229,0.082799360156059],[0.017038218677044,0.063939027488232,-0.018553810194135],[-0.093688115477562,0.039227545261383,-0.10513610392809]],[[-0.032023277133703,0.094130776822567,-0.15457606315613],[-0.001335195498541,0.10687756538391,0.070203222334385],[0.0066695031709969,-0.047521274536848,0.0092813353985548]],[[-0.095548816025257,-0.051510132849216,-0.17454724013805],[0.019144544377923,0.011953549459577,0.015145372599363],[0.050289116799831,-0.046977683901787,-0.11674492061138]],[[0.026146098971367,-0.083087377250195,0.14309592545033],[0.04795640707016,-0.020857181400061,0.068074055016041],[0.042612817138433,-0.12464534491301,0.18414248526096]],[[-0.02306298352778,0.14226408302784,-0.044352907687426],[-0.066633813083172,0.022675836458802,0.070789322257042],[0.037342708557844,0.023414900526404,-0.0017702165059745]],[[-0.11270208656788,-0.097553446888924,-0.11780937761068],[-0.032650768756866,0.050879310816526,-0.13825093209743],[-0.077227376401424,-0.088856354355812,-0.025431105867028]],[[0.079034626483917,0.055156502872705,-0.028390223160386],[0.17367772758007,-0.10305161774158,0.15429544448853],[-0.013611149974167,-0.12767501175404,-0.010808457620442]],[[0.078767709434032,-0.093147620558739,-0.049199182540178],[0.12200547754765,0.062085509300232,-0.051282051950693],[0.086653828620911,0.033682249486446,0.13681100308895]],[[0.10200320929289,0.030763991177082,-0.011450166814029],[-0.077358864247799,0.056131988763809,-0.062018781900406],[-0.19298106431961,0.034045334905386,-0.067480452358723]],[[0.047182019799948,-0.20415641367435,0.11202900111675],[-0.011743125505745,0.098960921168327,-0.0081537393853068],[-0.026682548224926,-0.12482315301895,0.1159837692976]],[[-0.032096996903419,-0.016829345375299,0.054037127643824],[-0.098799154162407,-0.029092784970999,-0.0029790699481964],[-0.21767665445805,-0.017388764768839,0.027791127562523]],[[-0.057823743671179,0.047466143965721,-0.073871567845345],[0.015492347069085,0.031325243413448,0.072446346282959],[-0.12706100940704,0.099446624517441,0.04469034075737]],[[-0.037512540817261,-0.020277356728911,-0.12480714917183],[-0.025576485320926,0.028910648077726,0.092979274690151],[0.020882863551378,0.060177933424711,-0.055198203772306]],[[0.0061232140287757,0.003729798598215,0.13465636968613],[0.010953540913761,-0.10446441918612,0.0068952343426645],[0.022082773968577,-0.097766794264317,0.046028289943933]],[[0.048548843711615,0.10253457725048,0.011626461520791],[-0.047503098845482,0.04408460855484,-0.099692903459072],[-0.034910034388304,-0.15126268565655,0.08350533246994]]],[[[-0.00061786687001586,0.058422453701496,0.027708010748029],[-0.014164607971907,-0.087110936641693,0.0098807793110609],[0.047859195619822,-0.0001432693679817,-0.051335446536541]],[[0.040393993258476,0.14253313839436,-0.038447540253401],[0.062465101480484,-0.049655605107546,0.082553625106812],[0.076552219688892,0.066902607679367,-0.02340143173933]],[[0.026352230459452,0.01335977576673,0.17416819930077],[-0.01541433762759,0.040907114744186,0.1574736982584],[0.081205315887928,0.098886869847775,-0.014058045111597]],[[-0.048473618924618,0.037781283259392,0.012991280294955],[-0.033195558935404,-0.043550074100494,0.054473388940096],[0.08337128162384,-0.091735042631626,0.059455730021]],[[0.19271196424961,-0.028732374310493,-0.004152437672019],[0.0079777352511883,-0.029675897210836,-0.1175859645009],[0.075894691050053,0.039849136024714,0.088742457330227]],[[0.16193190217018,-0.012140336446464,-0.077840611338615],[-0.011345784179866,-0.090808264911175,0.10530718415976],[0.076886184513569,-0.036002490669489,0.00092837936244905]],[[-0.05077275633812,-0.052246693521738,0.0046137892641127],[0.053651459515095,-0.13713222742081,-0.030011897906661],[-0.025299869477749,0.030743733048439,-0.028807103633881]],[[-0.054156981408596,0.060955222696066,-0.047718193382025],[-0.041568197309971,-0.04646422713995,0.048015836626291],[0.12714613974094,0.090313591063023,0.015557953156531]],[[0.10117907077074,0.015246657654643,0.019153280183673],[-0.081097796559334,-0.088864631950855,-0.09346204996109],[-0.0027014869265258,0.064761973917484,0.059671346098185]],[[0.0067837722599506,0.024664547294378,0.045967578887939],[0.11289040744305,0.018561383709311,-0.046867854893208],[-0.043095119297504,-0.098433330655098,-0.0031262619886547]],[[0.091590575873852,-0.023839501664042,-0.074871517717838],[-0.0475351549685,0.014782723970711,0.0094270743429661],[0.047379158437252,-0.074700817465782,0.0051917615346611]],[[-0.16753126680851,-0.06615999341011,-0.0043843523599207],[-0.11885087937117,-0.1048891171813,-0.031042296439409],[-0.1584664285183,-0.02228819206357,0.00066060840617865]],[[-0.036805361509323,0.034744318574667,0.088175147771835],[-0.20714473724365,-0.075523965060711,0.0062502948567271],[-0.1090599372983,-0.22940273582935,-0.028636692091823]],[[0.047606736421585,0.0084190452471375,0.12517289817333],[-0.027332227677107,0.017852604389191,0.0087585914880037],[0.030524387955666,0.16118621826172,0.12096878886223]],[[0.014535329304636,-0.070530615746975,-0.038969416171312],[0.013477905653417,0.044462896883488,0.030998293310404],[0.010234410874546,0.098615042865276,0.092260502278805]],[[0.016859652474523,0.072093650698662,-0.17948392033577],[-0.082483597099781,-0.0004237052926328,-0.0085266996175051],[0.012277253903449,0.026555508375168,0.0069691888056695]],[[-0.052825320512056,-0.16982614994049,-0.14636091887951],[0.051281332969666,-0.028917517513037,-0.13666139543056],[0.014389192685485,-0.0032040295191109,0.012745593674481]],[[-0.10304591059685,-0.025792866945267,-0.067576251924038],[0.081479370594025,0.018795102834702,0.077613264322281],[-0.069425716996193,0.065109878778458,0.012250632047653]],[[0.039197735488415,0.035365287214518,0.076272688806057],[-0.011666690930724,0.010517192073166,-0.021314220502973],[-0.12319508194923,-0.0082336226478219,0.018421353772283]],[[0.01480773370713,0.067319050431252,-0.0073962500318885],[-0.0012410648632795,0.0027084315661341,0.13221891224384],[0.11029095947742,-0.0066351979039609,0.1226454526186]],[[0.10710193216801,0.0159364156425,-0.04304451495409],[-0.080203920602798,-0.051843132823706,0.057922147214413],[0.016235208138824,0.059628404676914,-0.08291095495224]],[[-0.085453934967518,-0.093295402824879,0.05364117026329],[-0.11369195580482,-0.10585279762745,0.025007504969835],[0.016593050211668,0.12727122008801,0.04435246065259]],[[-0.0052501056343317,-0.030535072088242,-0.031937692314386],[-0.01737524010241,-0.075768455862999,-0.010888404212892],[0.16684946417809,-0.015205823816359,0.019310891628265]],[[0.090341150760651,-0.091010607779026,-0.026367837563157],[0.094954505562782,-0.090360924601555,0.10900338739157],[-0.030207373201847,-0.10932289808989,-0.0010722251608968]],[[0.088582023978233,-0.098734594881535,0.11544390767813],[0.059560306370258,0.035985566675663,0.026421489194036],[0.064318783581257,-0.081212103366852,-0.17858794331551]],[[-0.061941523104906,0.012432022951543,-0.12781843543053],[-0.077952571213245,-0.12677854299545,-0.037517089396715],[0.015284246765077,0.083016440272331,0.20298209786415]],[[0.038739509880543,-0.088987201452255,0.15437297523022],[-0.043311707675457,-0.085975781083107,0.070179007947445],[-0.037929367274046,-0.11237339675426,-0.0089039532467723]],[[-0.17778012156487,-0.010584223084152,-0.047631502151489],[-0.034055508673191,0.079323098063469,-0.10906967520714],[0.12287206202745,0.12692801654339,-0.12177605926991]],[[0.029704075306654,-0.024402240291238,0.00102582143154],[-0.015289878472686,-0.030913900583982,0.047587987035513],[0.039108872413635,0.051741320639849,0.096571654081345]],[[-0.096187964081764,0.075249038636684,0.097251161932945],[-0.016138611361384,0.15435995161533,-0.13298173248768],[-0.18766950070858,-0.0981834679842,-0.075831823050976]],[[-0.14962436258793,0.059062018990517,0.086959600448608],[-0.081508129835129,-0.061497263610363,-0.035894516855478],[-0.064255617558956,0.015671404078603,-0.020585920661688]],[[0.098352119326591,0.098006650805473,-0.063794903457165],[-0.046662952750921,0.14504800736904,-0.002284279325977],[-0.0169867426157,-0.097246073186398,-0.0025074270088226]],[[0.0031327065080404,-0.063475050032139,0.085296764969826],[-0.076914370059967,0.029143875464797,0.038345780223608],[-0.16112406551838,0.031993474811316,0.077034622430801]],[[-0.0087414970621467,-0.052632361650467,0.0611382573843],[-0.090097032487392,-0.0037528115790337,0.01002261787653],[-0.033099874854088,-0.025106912478805,-0.039708040654659]],[[0.11633317917585,0.013151346705854,-0.033985812216997],[0.063554830849171,0.039099551737309,0.013747648335993],[-0.052042037248611,-0.08863977342844,0.1128271818161]],[[0.031916253268719,0.13360223174095,0.10447364300489],[0.0093849366530776,0.024000823497772,-0.061783287674189],[-0.073030218482018,-0.28190085291862,-0.017822412773967]],[[0.0059730298817158,-0.037131670862436,0.034390069544315],[-0.021289108321071,0.083448380231857,0.022780610248446],[-0.05899953097105,-0.079238586127758,0.0023789533879608]],[[-0.07878053933382,0.089185290038586,0.0095747970044613],[0.064376190304756,0.082486018538475,0.033359538763762],[0.087932206690311,-0.07943906635046,-0.069410733878613]],[[-0.084592506289482,0.043209578841925,0.044120874255896],[-0.12513493001461,0.059152167290449,-0.02594374679029],[-0.016692828387022,0.037293888628483,-0.038021076470613]],[[0.13584119081497,0.029121246188879,-0.030633971095085],[0.0024077596608549,0.058362789452076,-0.045547679066658],[-0.053815938532352,0.020198937505484,-0.15285976231098]],[[0.030366966500878,-0.056595128029585,-0.10047960281372],[-0.072436593472958,0.05691784247756,-0.15897119045258],[0.14958198368549,0.019422840327024,-0.068249426782131]],[[0.031680844724178,0.23773653805256,-0.093518853187561],[-0.014748770743608,0.011186807416379,0.077502734959126],[-0.13710367679596,-0.29273152351379,-0.015247428789735]],[[0.016796434298158,-0.1844736635685,-0.04752492159605],[-0.062703847885132,0.013736925087869,0.10742798447609],[-0.0061630918644369,-0.04340398684144,0.038802165538073]],[[-0.16896533966064,0.044907886534929,-0.011323744431138],[-0.10273757576942,0.096633523702621,0.032301764935255],[-0.0075807706452906,0.10098176449537,-0.021619038656354]],[[-0.015345698222518,-0.1345466375351,-0.023932430893183],[-0.021042931824923,-0.016229389235377,0.057189598679543],[0.062789015471935,0.087666623294353,0.076084144413471]],[[-0.12749755382538,-0.15492559969425,-0.041460581123829],[0.026306720450521,0.096322014927864,0.076202169060707],[0.10203264653683,0.070357173681259,0.16366082429886]],[[0.012682769447565,-0.16088651120663,0.05374139174819],[0.071464769542217,0.060137409716845,-0.027288815006614],[-0.005521496757865,-0.0010900269262493,0.010477925650775]],[[-0.10005662590265,-0.023434665054083,-0.030441649258137],[-0.013909834437072,0.13224650919437,-0.0043209395371377],[0.059033710509539,-0.11139784753323,0.018890863284469]],[[0.0083563737571239,0.028308521956205,-0.039623275399208],[-0.019341247156262,-0.028238037601113,-0.07736162096262],[-0.10558412224054,-0.05581470951438,0.040077716112137]],[[-0.066087380051613,-0.07106152176857,0.050942771136761],[-0.011155839078128,-0.042784325778484,-0.01179669983685],[0.072645798325539,0.047865279018879,0.032325223088264]],[[-0.067975059151649,-0.0076948814094067,0.013712879270315],[0.067713037133217,-0.024181744083762,-0.014299592003226],[0.021866220980883,-0.019764982163906,0.0010784912155941]],[[0.037833582609892,0.047365367412567,0.033835675567389],[-0.040648553520441,-0.0053685279563069,0.0045096222311258],[-0.027215041220188,0.046169839799404,0.048822309821844]],[[0.11536417901516,-0.0026063248515129,-0.050695955753326],[0.045876245945692,-0.010168109089136,-0.099997460842133],[0.045932617038488,0.033948820084333,-0.010564384050667]],[[-0.063171416521072,0.038856189697981,-0.022541988641024],[-0.05884838104248,0.12409948557615,-0.011188347823918],[-0.051185365766287,0.11690952628851,0.019387170672417]],[[-0.076584868133068,-0.10512560606003,-0.027970280498266],[-0.019887743517756,0.035393282771111,0.034264750778675],[-0.010608906857669,0.070437289774418,0.019733427092433]],[[0.042961351573467,0.088128700852394,-0.070996433496475],[0.11271921545267,0.0036341657396406,-0.056799728423357],[-0.045857947319746,-0.13645243644714,-0.086337454617023]],[[0.058694254606962,-0.039135783910751,-0.083635337650776],[-0.012802347540855,-0.08093923330307,-0.030501708388329],[0.012319504283369,-0.067873269319534,-0.096295736730099]],[[-0.006424967199564,-0.015201772563159,0.020412001758814],[-0.053567696362734,0.0052929068915546,-0.028552351519465],[-0.034710679203272,-0.099437989294529,-0.055629312992096]],[[-0.080163136124611,-0.045420777052641,0.023019270971417],[0.14861914515495,-0.0070980028249323,0.069650083780289],[0.053714632987976,-0.09665384888649,-0.016867313534021]],[[0.0053162658587098,-0.023694284260273,0.019145099446177],[-0.0041053490713239,-0.00015215888561215,-0.02245220541954],[-0.12248393148184,-0.066692978143692,-0.050559237599373]],[[-0.068898819386959,-0.02704656496644,-0.031054271385074],[-0.01784634962678,-0.0011962050339207,-0.10473731905222],[0.03192076459527,-0.073957085609436,-0.081407800316811]],[[-0.0036207777447999,0.050093844532967,-0.0026795594021678],[0.10629593580961,-0.098351016640663,-0.042907681316137],[0.0014740733895451,-0.0015066009946167,0.0025778806302696]],[[-0.2308357656002,-0.049377053976059,0.028573121875525],[-0.051346648484468,-0.029616478830576,-0.055590625852346],[-0.17541493475437,-0.089452646672726,-0.049035519361496]],[[0.016256060451269,-0.084813818335533,-0.078977212309837],[-0.068996958434582,0.065815918147564,0.055288165807724],[0.042377103120089,-0.064277097582817,-0.0033080345019698]]],[[[0.13983091711998,-0.021728832274675,-0.11182913184166],[0.14231576025486,0.00083703198470175,-0.030767234042287],[0.099585771560669,0.076031871140003,0.032351657748222]],[[0.05142904818058,0.080886080861092,-0.012898854911327],[0.06314929574728,-0.032323438674212,-0.033085267990828],[-0.020618950948119,0.011056908406317,-0.13443657755852]],[[-0.029130965471268,-0.086843132972717,-0.064643502235413],[-0.0010342004243284,-0.059196472167969,-0.014940252527595],[0.071103312075138,0.058998417109251,0.12038718909025]],[[0.055443316698074,-0.034360788762569,-0.057858895510435],[0.054364543408155,-0.20458976924419,-0.089601494371891],[0.13213959336281,-0.047916099429131,-0.040435016155243]],[[0.098103493452072,0.12058947235346,0.072780460119247],[0.021969860419631,0.034905903041363,-0.044871184974909],[-0.24651421606541,-0.13695554435253,-0.0817631483078]],[[0.010984551161528,-0.020235328003764,0.037190519273281],[0.091994643211365,0.081325590610504,0.086750902235508],[-0.048347290605307,0.051545511931181,0.13694778084755]],[[-0.035474538803101,-0.067977458238602,-0.044420704245567],[0.038205161690712,-0.066214017570019,-0.032540511339903],[0.085395447909832,0.060750685632229,-0.067816361784935]],[[0.087779842317104,0.083099745213985,0.10886546224356],[0.0018758396618068,-0.025661893188953,0.045803692191839],[0.059570752084255,-0.076504617929459,-0.05750772356987]],[[0.023119322955608,0.029648507013917,-0.024713523685932],[-0.022307906299829,-0.0018348601879552,0.0058548604138196],[0.083503879606724,-0.015073094516993,-0.10304237157106]],[[0.1524746119976,-0.070030182600021,-0.12007543444633],[0.048761039972305,-0.0010998068610206,-0.038621284067631],[0.088576383888721,-0.0049080774188042,0.076595038175583]],[[-0.012087976559997,-0.057168234139681,0.21281811594963],[0.032794918864965,0.051054615527391,0.15195921063423],[-0.062264837324619,-0.073342926800251,-0.11484427750111]],[[0.079708114266396,-0.051762584596872,-0.30487164855003],[0.081760242581367,-0.062488086521626,-0.32716277241707],[0.090013556182384,-0.11612615734339,-0.12114587426186]],[[-0.022810321301222,-0.054732516407967,-0.12929356098175],[0.059736676514149,-0.024337442591786,-0.14190937578678],[0.08068173378706,0.029824806377292,0.021579628810287]],[[-0.068076230585575,-0.07382383197546,-0.14508879184723],[-0.095322847366333,0.0010103350505233,-0.038936518132687],[-0.026530597358942,0.024870961904526,-0.12470851838589]],[[0.11143200844526,0.030232178047299,-0.20318177342415],[0.13595329225063,-0.064591012895107,-0.12291249632835],[0.055848482996225,-0.057165771722794,-0.13781352341175]],[[-0.023265333846211,-0.034342478960752,0.037106093019247],[-0.069764032959938,-0.056380666792393,0.11583897471428],[0.022896545007825,0.036327563226223,0.054073743522167]],[[-0.14662764966488,-0.059493791311979,0.047720238566399],[0.041950069367886,0.098400987684727,0.14357522130013],[0.081508450210094,0.1535781621933,0.10775500535965]],[[0.17590397596359,-0.1122250109911,-0.094551473855972],[0.043627694249153,-0.071593523025513,-0.23426613211632],[0.39928224682808,0.048488080501556,-0.016770545393229]],[[-0.16312548518181,0.10705340653658,0.093365214765072],[-0.15923801064491,0.066309235990047,0.23521746695042],[-0.1608119904995,0.039018381386995,0.10305887460709]],[[0.18875108659267,0.018882803618908,-0.0027311348821968],[0.060083046555519,0.099246248602867,0.099944360554218],[-0.083925634622574,0.022780690342188,-0.0059799952432513]],[[0.1152461245656,0.048054445534945,0.032910458743572],[0.084778361022472,-0.0050775068812072,0.049007020890713],[0.087457202374935,-0.056275602430105,0.031225293874741]],[[-0.028399156406522,-0.16131590306759,-0.33463236689568],[0.14674952626228,-0.050921991467476,-0.17184588313103],[0.26918292045593,0.1599440574646,-0.012993165291846]],[[-0.22208754718304,-0.080362617969513,-0.05191108211875],[0.01289205532521,-0.065904080867767,0.04661600291729],[-0.0045966012403369,-0.0027833350468427,0.077097117900848]],[[0.046197652816772,-0.027693402022123,-0.17412540316582],[-0.056705065071583,-0.081414833664894,-0.15668028593063],[0.041361480951309,-0.0074703930877149,-0.035697996616364]],[[0.10112735629082,0.14914259314537,-0.039707940071821],[0.090254083275795,0.04316233471036,-0.054264202713966],[-0.08184115588665,-0.017135815694928,-0.19953332841396]],[[-0.0023495543282479,0.063590452075005,0.035557869821787],[0.015764024108648,0.011851688846946,-0.033924791961908],[0.00036064372397959,0.084773756563663,-0.032331578433514]],[[0.21145887672901,0.15608316659927,0.04856201261282],[0.062401212751865,0.045965295284986,0.061495684087276],[-0.047644127160311,-0.047205146402121,-0.021994821727276]],[[0.0077650602906942,-0.083678662776947,-0.1367696672678],[0.066668897867203,0.077787473797798,0.027482064440846],[-0.065716192126274,0.074985563755035,0.041476462036371]],[[-0.059369694441557,-0.044413298368454,-0.051349461078644],[0.070876896381378,-0.021665101870894,-0.093426629900932],[-0.011048870161176,-0.15360081195831,-0.17929178476334]],[[0.23230780661106,-0.03659737855196,-0.11304964125156],[0.093797147274017,-0.051313418895006,-0.11395175755024],[0.015942204743624,-0.08664033561945,-0.11176250129938]],[[-0.023883797228336,-0.034694459289312,0.063019618391991],[0.017089759930968,-0.023278385400772,-0.0080124661326408],[-0.023593606427312,-0.20925988256931,0.040622346103191]],[[0.039541743695736,-0.044694736599922,-0.13098627328873],[0.11502946913242,0.00041374834836461,-0.1015495583415],[0.062645681202412,0.013494432903826,0.10794643312693]],[[-0.15291568636894,-0.079966656863689,0.086016178131104],[-0.062575630843639,-0.11862662434578,0.057602785527706],[-0.16168302297592,-0.033955827355385,0.059568669646978]],[[-0.071022748947144,-0.017286254093051,-0.24558179080486],[0.057250950485468,0.06115635111928,-0.04605807736516],[0.056658763438463,-0.0052398550324142,-0.0098780803382397]],[[-0.0035854040179402,-0.10247211903334,-0.1882535815239],[0.061335831880569,-0.067795090377331,-0.050800155848265],[0.064921610057354,0.034327771514654,-0.059932354837656]],[[0.012351114302874,-0.070285856723785,-0.16902689635754],[0.097569920122623,-0.021475475281477,-0.17773321270943],[0.021408494561911,-0.11116621643305,-0.12153994292021]],[[0.13032659888268,-0.05212202295661,-0.094867922365665],[0.075798541307449,-0.068996340036392,-0.060524959117174],[0.096428580582142,-0.037935018539429,0.02037057466805]],[[-0.16001424193382,-0.01178523991257,0.096045531332493],[-0.13582433760166,0.036968674510717,0.11714665591717],[-0.05508541315794,-0.19695779681206,-0.021346494555473]],[[0.098938800394535,0.017664074897766,-0.092494577169418],[0.1254720389843,-0.010168082080781,-0.11643652617931],[0.16553425788879,0.040823142975569,-0.039125796407461]],[[0.091265887022018,-0.016456298530102,0.043053336441517],[-0.026605179533362,-0.022053303197026,-0.0068759717978537],[0.091261349618435,-0.036664564162493,-0.0027658061590046]],[[0.012057422660291,-0.075284540653229,-0.013537679798901],[0.12465333193541,-0.068111255764961,-0.0074486853554845],[0.12106344848871,0.019557839259505,0.079800926148891]],[[0.078036084771156,-0.11587826907635,-0.21256375312805],[0.092919684946537,-0.16412882506847,-0.067482575774193],[-0.024125499650836,-0.075509332120419,-0.16793529689312]],[[0.17490556836128,-0.030047861859202,-0.22886408865452],[0.21528258919716,-0.029285641387105,-0.12697325646877],[-0.082604169845581,-0.045364867895842,-0.16353569924831]],[[-0.081925489008427,-0.026089379563928,0.040541235357523],[-0.049253236502409,0.0015037483535707,0.015995340421796],[0.01245392113924,0.009997071698308,-0.040778428316116]],[[0.0069513032212853,-0.12861342728138,-0.3426353931427],[0.10790579020977,-0.15673100948334,-0.095262818038464],[0.19483968615532,0.11321403086185,-0.090154707431793]],[[-0.0028101652860641,-0.045150574296713,-0.021995421499014],[0.090285643935204,-0.11356121301651,0.011504287831485],[0.19312313199043,0.058650717139244,-0.082489639520645]],[[-0.041691560298204,-0.1868559718132,-0.18126337230206],[0.069356478750706,0.044266000390053,0.0059042237699032],[0.2223169952631,0.20552334189415,-0.011371140368283]],[[0.29404416680336,0.032235819846392,-0.094663888216019],[0.22520217299461,-0.046330027282238,-0.10995306819677],[0.22901739180088,0.059772670269012,-0.24563710391521]],[[0.21289527416229,0.085109002888203,-0.031577117741108],[0.013270133174956,0.053880929946899,-0.049606315791607],[0.11935316771269,0.055471267551184,-0.20258283615112]],[[-0.026482472196221,0.078430838882923,-0.012413499876857],[-0.034015160053968,-0.030910294502974,0.049476910382509],[-0.052346952259541,-0.039898570626974,0.06157873570919]],[[0.032395713031292,-0.17164812982082,-0.12995608150959],[0.032654095441103,-0.053328827023506,-0.033168699592352],[-0.01519569568336,-0.11932724714279,-0.067781805992126]],[[-0.20426997542381,-0.12126660346985,-0.21059069037437],[-0.19233785569668,-0.039573974907398,-0.26769462227821],[-0.10077368468046,-0.10265349596739,-0.16827169060707]],[[-0.091587521135807,0.037857308983803,0.30636331439018],[-0.11227989941835,0.039136048406363,0.27128848433495],[-0.052594196051359,-0.044716753065586,0.19409409165382]],[[0.055714283138514,0.17124347388744,-0.22837534546852],[0.12116120755672,0.035808335989714,-0.28360196948051],[0.1273368448019,0.013117590919137,-0.15188923478127]],[[-0.13959634304047,-0.15323710441589,-0.2167811691761],[-0.0283083319664,-0.19316130876541,0.044147465378046],[0.01059405785054,-0.10980825871229,-0.28868037462234]],[[-0.033944338560104,-0.022589527070522,0.0099163139238954],[0.038977172225714,-0.045437268912792,-0.14389365911484],[0.017959272488952,-0.013169014826417,-0.1287002414465]],[[-0.02264261059463,0.075770653784275,0.052668698132038],[0.022440081462264,0.12395972013474,0.051344458013773],[-0.056235369294882,0.019040182232857,-0.0041422895155847]],[[0.0090257739648223,-0.09541492164135,-0.031566180288792],[-0.0035569618921727,-0.17398469150066,-0.21098202466965],[0.039267711341381,0.013372198678553,-0.11205483973026]],[[-0.1423936933279,-0.068861998617649,0.13363698124886],[-0.21800726652145,-0.008113257586956,0.025935370475054],[-0.10008119046688,-0.01253635622561,0.063788317143917]],[[0.094156533479691,0.048469498753548,0.089034147560596],[0.076858714222908,-0.067935846745968,-0.064071998000145],[0.18092361092567,-0.058208674192429,-0.040641233325005]],[[0.09729977697134,-0.048929754644632,-0.084300316870213],[0.1978785097599,0.078612573444843,-0.10189228504896],[0.23760496079922,0.17473313212395,-0.098149344325066]],[[-0.1099611595273,0.051026370376348,-0.0096792755648494],[0.12065854668617,0.066995084285736,0.1670456379652],[-0.11006660759449,-0.0036692102439702,-0.010994231328368]],[[-0.043247200548649,-0.1126125305891,-0.05618729814887],[0.14778618514538,-0.0081599503755569,0.004716272931546],[0.11292587220669,-0.00045852776383981,0.10465458035469]],[[-0.025118531659245,0.10281062871218,0.08885096013546],[-0.2493347376585,0.03461741656065,-0.017801413312554],[-0.2379857301712,-0.039141546934843,0.079642117023468]]],[[[0.071145676076412,-0.077706776559353,0.036052245646715],[-0.030581258237362,-0.082390755414963,0.13573499023914],[-0.039696309715509,0.038531709462404,-0.077467687427998]],[[-0.0089715383946896,-0.061568222939968,0.1039792522788],[0.047141723334789,-0.019610222429037,0.042919680476189],[-0.15019860863686,-0.11693009734154,-0.16199997067451]],[[-0.11089496314526,-0.049222350120544,0.044410482048988],[0.044450670480728,0.077799946069717,-0.11303166300058],[-0.054539993405342,-0.12077121436596,-0.028045080602169]],[[-0.015279904939234,-0.00053850887343287,-0.056292552500963],[-0.070422179996967,-0.079922258853912,0.028818218037486],[-0.013498947024345,0.056928362697363,-0.027696095407009]],[[-0.026758383959532,0.071248576045036,-0.012166334316134],[0.010145170614123,0.0037861578166485,0.14079621434212],[-0.076851405203342,0.021332342177629,-0.0016358458669856]],[[-0.082215800881386,0.065128564834595,-0.29047697782516],[-0.050015144050121,-0.19725200533867,0.20082761347294],[0.11787041276693,-0.2326897829771,0.044481705874205]],[[-0.031383633613586,-0.04304863512516,-0.029227329418063],[0.0098983207717538,0.054167374968529,-0.057485848665237],[-0.062764495611191,-0.11632457375526,0.11838921159506]],[[-0.02453656680882,-0.001091325073503,-0.015370227396488],[-0.10982178896666,0.032830055803061,0.0404107645154],[-0.03640266507864,0.015323918312788,0.023118607699871]],[[0.02875898219645,0.024951249361038,-0.001271462184377],[-0.025338238105178,-0.049666378647089,-0.046830728650093],[-0.016297796741128,0.038335498422384,-0.012170505709946]],[[-0.035627767443657,-0.0085185151547194,-0.0099890641868114],[-0.0059263901785016,-0.09847068041563,-0.0039160395972431],[-0.10404893755913,-0.040488824248314,0.0053946780972183]],[[-0.037968643009663,-0.019656758755445,-0.11493653059006],[-0.00017840675718617,0.076939187943935,0.16129733622074],[0.13105927407742,-0.0024507625494152,0.0099722575396299]],[[-0.016198042780161,-0.0001291237276746,-0.010184003040195],[-0.023253591731191,0.050601292401552,-0.055595625191927],[0.090331420302391,0.092799097299576,-0.010315547697246]],[[-0.037918172776699,-0.019843595102429,-0.02357854694128],[0.063499495387077,0.0020224947948009,-0.044258251786232],[-0.027572710067034,0.045031256973743,-0.074916511774063]],[[-0.0065240296535194,-0.066911652684212,0.002238497370854],[-0.0041768089868128,-0.073215678334236,-0.041518092155457],[-0.085461169481277,0.10454777628183,0.036943010985851]],[[0.012153228744864,-0.047294326126575,-0.07642437517643],[-0.044347133487463,-0.19255223870277,-0.044309623539448],[-0.051215432584286,0.10113179683685,-0.041135638952255]],[[-0.05003621801734,0.080285079777241,0.040007296949625],[0.054738745093346,0.00065182632533833,0.042463183403015],[0.028215991333127,-0.024215409532189,0.0078908586874604]],[[-0.0088502848520875,-0.01944943703711,0.014283298514783],[0.11298920214176,-0.072813577950001,-0.081848040223122],[0.060863349586725,0.035403396934271,-0.016867781057954]],[[-0.14272049069405,0.07102657854557,0.04878094792366],[0.062441866844893,-0.041214752942324,-0.0029032351449132],[-0.1837759912014,-0.0076315267942846,-0.0045687258243561]],[[-0.062766350805759,0.066080786287785,-0.17726470530033],[-0.0088671715930104,0.097679108381271,0.0056088343262672],[-0.037198279052973,-0.031358756124973,0.065384313464165]],[[0.11670436710119,-0.17331755161285,-0.006806212477386],[-0.23845611512661,0.073031783103943,-0.060092322528362],[-0.085261948406696,-0.043522741645575,-0.029170926660299]],[[-0.11328878998756,0.06054724752903,0.044857416301966],[-0.084158428013325,-0.16141422092915,0.021590249612927],[0.011790215037763,-0.014010839164257,-0.051330827176571]],[[-0.026220671832561,-0.069496862590313,-0.021889796480536],[-0.029352642595768,-0.12373774498701,0.0066692163236439],[-0.055094040930271,-0.033962924033403,0.05437421426177]],[[0.012907391414046,0.071500465273857,0.028268922120333],[-0.086076639592648,-0.044329095631838,-0.061764851212502],[-0.014357845298946,-0.015003697015345,-0.084310159087181]],[[0.041058655828238,0.11867542564869,-0.027983734384179],[-0.041953261941671,-0.012761300429702,0.01359676849097],[-0.073640510439873,-0.041694268584251,0.022876204922795]],[[-0.035843208432198,0.0018649641424417,0.025402052327991],[0.02627513371408,-0.074690841138363,0.032719891518354],[-0.00092327984748408,0.12831817567348,0.11060836166143]],[[-0.13930489122868,-0.1689670830965,0.013870378956199],[0.032071247696877,0.05543166026473,0.041786335408688],[0.01171244494617,0.053689114749432,-0.1166315227747]],[[0.090011812746525,0.033791739493608,0.067299447953701],[-0.02207151427865,0.010260908864439,0.030171619728208],[0.066818557679653,0.075327143073082,-0.0085565056651831]],[[-0.022509461268783,0.0028590916190296,0.0076535097323358],[0.011518794111907,-0.0040341406129301,0.043695140630007],[0.038549620658159,-0.032933730632067,0.010277015157044]],[[0.056710667908192,0.051385439932346,0.036853574216366],[-0.024992905557156,-0.011344892904162,-0.03403740003705],[0.10307574272156,-0.12802529335022,-0.014204108156264]],[[0.057509656995535,0.08878418058157,-0.038514818996191],[0.080608822405338,-0.12158361077309,0.019546173512936],[0.030092598870397,-0.076803654432297,0.13600698113441]],[[-0.069552011787891,-0.094329781830311,-0.089479863643646],[0.06997961550951,0.055598489940166,-0.02217305265367],[0.019960569217801,0.024085570126772,0.022699369117618]],[[0.12561179697514,0.018208939582109,0.045332424342632],[-0.074332624673843,0.10108276456594,0.03124594129622],[0.053519424051046,0.036731954663992,0.00016241075354628]],[[0.024013316258788,-0.069157645106316,-0.024734729900956],[-0.07441671192646,-0.11663966625929,0.049192856997252],[0.059717323631048,-0.12146382033825,-0.045770592987537]],[[0.062488857656717,0.024512210860848,-0.011810808442533],[0.08002907037735,-0.092409089207649,-0.049038771539927],[0.10681218653917,-0.053222615271807,-0.028780993074179]],[[-0.031654857099056,0.01899253949523,-0.0261211078614],[0.019619597122073,-0.033387191593647,-0.033701680600643],[-0.034241635352373,-0.11320943385363,-0.027746560052037]],[[-0.033460199832916,0.041904486715794,0.074667304754257],[0.0025619773659855,0.037021122872829,-0.13199326395988],[0.023140242323279,0.13517056405544,-0.0050471676513553]],[[0.068795129656792,-0.0055878288112581,0.0050592389889061],[0.054632730782032,-0.0094626573845744,0.088025636970997],[0.0199667327106,0.044661827385426,-0.0094208084046841]],[[-0.061266947537661,-0.023888163268566,0.025450330227613],[0.053780522197485,0.017210278660059,-0.032303061336279],[0.068562731146812,0.017050132155418,-0.14540095627308]],[[-0.064924374222755,-0.045370638370514,0.042434722185135],[0.0064380178228021,-0.044373009353876,0.09884387254715],[-0.018079334869981,0.013448408804834,0.051717512309551]],[[0.052205145359039,-0.068996012210846,-0.0023415838368237],[-0.041346240788698,-0.0073505118489265,-0.034031342715025],[0.0010640925029293,0.02557297796011,-0.013284560292959]],[[-0.012991331517696,-0.031871795654297,-0.046062644571066],[-0.02972412481904,0.010068623349071,-0.059106767177582],[0.01719686947763,-0.0066477851942182,0.052350286394358]],[[-0.15284642577171,0.075318887829781,0.018802829086781],[-0.058624133467674,0.13098485767841,-0.032413825392723],[0.039976168423891,0.003669508965686,-0.051164790987968]],[[-0.056357435882092,-0.12552583217621,0.021154614165425],[0.032033238559961,-0.070522733032703,-0.043653223663568],[-0.063429832458496,0.014012085273862,0.071204654872417]],[[0.036226820200682,-0.040639594197273,-0.035614162683487],[-0.0038584438152611,-0.045627575367689,0.045435726642609],[-0.024097518995404,0.092926114797592,-0.028233451768756]],[[-0.12793332338333,-0.14902487397194,-0.13095107674599],[-0.10344539582729,-0.052086062729359,0.05369359254837],[-0.075849279761314,-0.021728828549385,0.034141827374697]],[[0.046339768916368,0.020180184394121,-0.02170797996223],[-0.014807302504778,-0.039224430918694,0.053227555006742],[0.0078643243759871,-0.014791516587138,-0.0038527904544026]],[[0.064796805381775,0.11981133371592,0.077361859381199],[-0.028167307376862,-0.056478638201952,-0.05771105363965],[-0.001697527943179,0.1336342394352,0.0091924583539367]],[[-0.084886848926544,-0.0083193266764283,-0.042861375957727],[-0.027729030698538,0.048438545316458,-0.074236959218979],[0.0094592738896608,-0.03816906362772,-0.019535027444363]],[[0.075709231197834,-0.069994457066059,-0.0090997079387307],[-0.050635706633329,0.10726529359818,-0.029073061421514],[-0.027218263596296,-0.0250786524266,-0.022598749026656]],[[0.029315441846848,-0.13265208899975,-0.0017549154581502],[-0.02308732457459,-0.0072211837396026,0.070393472909927],[0.01664131693542,-0.0075617162510753,-0.0011568594491109]],[[0.051023297011852,-0.034196056425571,-0.041687168180943],[-0.037042859941721,-0.04151838645339,0.0022288295440376],[0.016982968896627,-0.052852049469948,-0.01201191637665]],[[-0.08927384018898,0.030804948881269,-0.025026988238096],[-0.091283448040485,-0.061367064714432,-0.004344800952822],[0.0015946907224134,7.7439850429073e-05,-0.049015715718269]],[[0.014028280973434,-0.043037235736847,-0.11710195243359],[-0.061166249215603,0.057343471795321,-0.12568971514702],[-0.060981165617704,-0.039500311017036,0.021976640447974]],[[0.070689335465431,0.034795880317688,0.042236357927322],[-0.0033977024722844,-0.1293413490057,0.014285754412413],[0.049117300659418,-0.02868402376771,0.06181426346302]],[[-0.049112413078547,-0.13935256004333,-0.076199673116207],[-0.0093911504372954,-0.05536125972867,-0.014397983439267],[0.0041066026315093,0.0075359018519521,0.035316523164511]],[[0.01830792427063,0.060913607478142,-0.015131328254938],[-0.086272336542606,-0.061676625162363,-0.040675684809685],[0.026840271428227,-0.016010370105505,0.0063934749923646]],[[-0.16655227541924,-0.061645220965147,-0.047125291079283],[-0.034021209925413,-0.031894829124212,0.041764341294765],[0.011212339624763,0.054665576666594,0.044682398438454]],[[-0.004495985340327,-0.036677815020084,0.062290467321873],[-0.019228741526604,-0.079797059297562,0.063748970627785],[-0.015412406995893,0.037531517446041,-0.047592625021935]],[[0.020911321043968,0.066300258040428,-0.07916047424078],[0.03826691582799,-0.096662871539593,0.011275851167738],[-0.011619286611676,-0.0045763375237584,0.025983031839132]],[[-0.058644726872444,0.020857587456703,0.064377464354038],[-0.074404999613762,0.036191634833813,-0.11302219331264],[-0.043032877147198,0.046352125704288,-0.056326191872358]],[[0.016693318262696,0.063768967986107,-0.079289793968201],[0.080407790839672,0.073329284787178,-0.0483353510499],[-0.0095701739192009,-0.066865213215351,0.017937509343028]],[[-0.11397328227758,-0.097713679075241,-0.039977747946978],[0.0032652905210853,-0.043453566730022,0.033309739083052],[-0.0073125450871885,-0.0957385674119,0.022326381877065]],[[-0.019730918109417,-0.061328183859587,0.0066624134778976],[-0.070580571889877,-0.014287337660789,-0.038297209888697],[-0.016116416081786,-0.027374804019928,-0.090807020664215]],[[-0.034966040402651,-0.067980699241161,0.038622178137302],[-0.08244314789772,0.080179981887341,0.020529199391603],[-0.0088013913482428,0.08721474558115,-0.042125858366489]]],[[[-0.010230904445052,-0.00016074413724709,0.0078665539622307],[-0.08191829174757,-0.046677391976118,0.036832801997662],[-0.0091474298387766,-0.18129979074001,-0.010313828475773]],[[0.059099577367306,0.010584957897663,-0.070987589657307],[-0.022445680573583,0.1802419424057,-0.14519695937634],[-0.052738729864359,-0.058208867907524,0.040260374546051]],[[-0.094972997903824,0.013582249172032,-0.11985168606043],[0.00037852418608963,0.0021525667980313,-0.0227434001863],[-0.03740069642663,-0.12833376228809,-0.11111563444138]],[[-0.03299630060792,-0.078730426728725,-0.11633973568678],[-0.12308348715305,0.070431113243103,-0.10867378115654],[0.011180778034031,0.039970625191927,0.0072555444203317]],[[-0.02838471904397,-0.064065746963024,-0.19433836638927],[-0.074309334158897,-0.012978981249034,-0.057990357279778],[0.10649965703487,0.022733546793461,-0.16865076124668]],[[-0.0080958157777786,0.022568140178919,-0.014004183933139],[0.051631454378366,-0.034382097423077,0.090555638074875],[0.0065476121380925,0.12403509020805,-0.01983923278749]],[[0.035340081900358,0.047217883169651,-0.03323221206665],[-0.017120946198702,-0.064055278897285,-0.038552854210138],[-0.012549336999655,-0.085521183907986,-0.012622678652406]],[[-0.086588151752949,-0.032150242477655,-0.0048369206488132],[0.079667925834656,0.045990739017725,0.017863998189569],[-0.017609609290957,-0.01423711143434,0.08993735909462]],[[0.035978488624096,0.13760498166084,0.055516574531794],[-0.05864492431283,0.048845905810595,0.10180737823248],[-0.13579241931438,-0.19601419568062,-0.029066901654005]],[[-0.052078694105148,-0.011285660788417,0.0086166299879551],[-0.033420290797949,-0.068551629781723,-0.11983359605074],[-0.11587618291378,-0.032631259411573,-0.076402388513088]],[[0.0032651000656188,-0.084098726511002,0.0026601064018905],[-0.095642611384392,0.068426974117756,0.038672834634781],[-0.11026200652122,-0.03946265950799,-0.15616896748543]],[[-0.028326954692602,-0.069703966379166,-0.12047351896763],[0.010159520432353,0.033513847738504,0.017343431711197],[-0.069861255586147,-0.063717916607857,-0.10358563065529]],[[0.036703485995531,0.095000639557838,0.0033216581214219],[-0.15384620428085,-0.24133117496967,-0.072920359671116],[0.14103281497955,0.079616777598858,-0.10217421501875]],[[-0.041260655969381,0.034804049879313,-0.023703986778855],[0.019463341683149,0.0057233111001551,-0.065779522061348],[0.035438500344753,-0.084793418645859,-0.0048625967465341]],[[-0.040198169648647,-0.035718459635973,-0.036719273775816],[-0.037123821675777,0.031375654041767,-0.022986188530922],[0.013923331163824,0.04242455586791,-0.17202293872833]],[[0.06755955517292,-0.074846476316452,-0.0045546377077699],[0.10003411769867,-0.022486388683319,0.043585419654846],[0.056561421602964,-0.15577001869678,-0.057036150246859]],[[0.15711571276188,-0.086961530148983,-0.013992793858051],[0.063317976891994,-0.015694314613938,-0.021010028198361],[0.075626410543919,-0.034768380224705,-0.099258929491043]],[[-0.019397936761379,0.028378980234265,-0.00078884907998145],[0.084757804870605,-0.079542770981789,-0.041063189506531],[-0.027413070201874,0.0022672554478049,-0.12054740637541]],[[0.11959332227707,-0.050992146134377,-0.0033366945572197],[0.042064789682627,-0.042683884501457,0.080999597907066],[-0.17646113038063,0.014260204508901,-0.025581864640117]],[[0.037019722163677,0.038777340203524,0.075659215450287],[-0.012660162523389,-2.0485971617745e-05,-0.00074200332164764],[-0.037510763853788,0.079753488302231,0.0092456145212054]],[[-0.041008986532688,0.05863244086504,-0.058672178536654],[0.054814841598272,0.02870630659163,-0.018369374796748],[-0.084311746060848,-0.1338261961937,0.022387390956283]],[[-0.08526898920536,-0.13446143269539,-0.15532369911671],[-0.055734094232321,-0.038905829191208,-0.032182689756155],[0.025480972602963,-0.10369055718184,-0.037901192903519]],[[-0.026053093373775,0.0019444290082902,0.012483683414757],[0.0073992470279336,-0.052469998598099,0.0078087658621371],[-0.073282904922962,-0.022405967116356,-0.011871373280883]],[[0.027555430307984,-0.051140312105417,0.043776787817478],[-0.024989595636725,-0.044761024415493,0.031948003917933],[0.13616392016411,-0.013049994595349,-0.099927805364132]],[[0.033744551241398,-0.038209393620491,-0.11974477022886],[-0.03863575682044,0.029297647997737,-0.077881962060928],[-0.12089934945107,-0.067108646035194,0.046295590698719]],[[0.040690805763006,-0.068788580596447,0.025064576417208],[-0.061840083450079,-0.1694473773241,0.0055576381273568],[-0.09008863568306,-0.12725372612476,0.079267673194408]],[[-0.027565732598305,0.017357470467687,-0.071914225816727],[-0.012235334143043,0.019135307520628,-0.066194631159306],[-0.038650371134281,-0.015731524676085,-0.054875902831554]],[[0.078480541706085,0.10685554891825,0.056027919054031],[0.064573332667351,-0.050017546862364,-0.094524212181568],[0.034996077418327,-0.1065254881978,-0.13386808335781]],[[-0.045052941888571,-0.064454160630703,-0.090954475104809],[0.041049662977457,0.07373308390379,-0.1539353877306],[-0.048911795020103,0.044704750180244,-0.081886775791645]],[[-0.0076646963134408,-0.015534101985395,-0.014717658981681],[0.0052718599326909,0.10119870305061,-0.016016824170947],[-0.011676370166242,0.0051219281740487,0.063295915722847]],[[-0.050214156508446,0.078867137432098,0.071795120835304],[-0.063912756741047,-0.04279861971736,-0.10586235672235],[0.11536747217178,0.15305690467358,0.070880129933357]],[[-0.057560324668884,-0.037358433008194,0.030709275975823],[0.013584531843662,0.072270795702934,0.11373110115528],[-0.074081115424633,0.0027443331200629,-0.090897597372532]],[[-0.018893612548709,-0.034128148108721,0.072408944368362],[0.085331648588181,-0.092112839221954,0.087766237556934],[-0.012015903368592,-0.10550613701344,0.0026036892086267]],[[0.010669567622244,-0.070141389966011,-0.12571595609188],[-0.030041182413697,-0.026402659714222,0.033006176352501],[0.093604505062103,0.0060926973819733,-0.028161197900772]],[[-0.098798848688602,-0.099025957286358,0.04092263430357],[-0.11712142080069,0.037302907556295,0.021175589412451],[0.065140902996063,0.053565613925457,0.079282589256763]],[[0.068169824779034,0.043901596218348,0.12465871870518],[0.089165978133678,-0.03157052770257,-0.067694917321205],[0.045412663370371,0.087123528122902,0.043935168534517]],[[0.052840501070023,-0.034909054636955,-0.09925901144743],[0.068220004439354,0.063210442662239,-0.10412625968456],[0.013077418319881,0.12229897081852,0.01154198218137]],[[-0.048054162412882,0.075645349919796,0.026421252638102],[-0.030725317075849,0.053554587066174,-0.03611746057868],[-0.19184327125549,-0.054732270538807,-0.079557277262211]],[[-0.013018807396293,-0.015669895336032,0.022673115134239],[0.022576618939638,-0.094313278794289,0.0016902795759961],[0.037660755217075,-0.040850270539522,0.022443193942308]],[[0.022617617622018,0.11252700537443,0.064937889575958],[-0.013793256133795,0.022594898939133,0.05772290751338],[-0.15443480014801,0.019911926239729,0.1113870665431]],[[0.039563436061144,0.056132536381483,0.039686683565378],[-0.056119598448277,-0.095506362617016,-0.10045836120844],[0.03690454736352,0.087196536362171,-0.1871554851532]],[[0.06572587043047,-0.10096707195044,0.067781507968903],[-0.046347863972187,0.011450778692961,0.032250661402941],[0.12727174162865,-0.11552201956511,0.012557513080537]],[[0.014762644656003,-0.031166030094028,-0.12276968359947],[-0.025773545727134,0.0069146724417806,-0.091886550188065],[-0.019637119024992,-0.10339087247849,-0.086431071162224]],[[-0.063536040484905,-0.068898789584637,-0.14076343178749],[0.041735790669918,0.049146790057421,-0.035567600280046],[0.034268073737621,0.066826738417149,0.10671243816614]],[[-0.023513950407505,-0.0068220379762352,0.0045623420737684],[0.041133996099234,-0.27028214931488,-0.19570864737034],[0.046864457428455,0.057353898882866,0.018976671621203]],[[0.05338978767395,0.0033654030412436,0.10550367832184],[0.012763072736561,-0.020405311137438,-0.0066671161912382],[0.03381247445941,-0.055680107325315,-0.15553991496563]],[[-0.063188664615154,-0.029248105362058,-0.0095847658813],[0.0045903469435871,0.016544565558434,0.037892322987318],[0.0055614956654608,0.053013749420643,-0.044364307075739]],[[-0.00056482083164155,-0.10650946199894,0.003148265182972],[0.036188960075378,0.073219105601311,0.018006199970841],[-0.017379770055413,-0.0069800917990506,-0.0078723197802901]],[[-0.08928657323122,-0.017848057672381,-0.050812657922506],[-0.02624980174005,0.065779440104961,-0.015245730988681],[-0.11050483584404,0.070308059453964,-0.016837917268276]],[[-0.069249108433723,-0.12096574157476,-0.11966349184513],[0.11243469268084,-0.043239332735538,-0.10257103294134],[0.10278092324734,0.18335825204849,0.03070006147027]],[[0.0068775769323111,-0.0044771390967071,0.042504951357841],[0.019700048491359,-0.0070416871458292,-0.01262057852],[-0.021102879196405,-0.15094950795174,0.0060299718752503]],[[-0.0057380623184144,0.072344623506069,-0.071469694375992],[-0.018546208739281,0.015065296553075,-0.019592201337218],[-0.10641302913427,0.047058314085007,-0.052854374051094]],[[-0.012334374710917,0.012949979864061,-0.0052668382413685],[0.0061391298659146,-0.015401454642415,-0.047170057892799],[0.077049523591995,-0.068275801837444,-0.041859611868858]],[[-0.098362855613232,-0.076985083520412,-0.0023040203377604],[0.053805772215128,-0.052808463573456,0.0034848442301154],[0.079913392663002,-0.038878656923771,-0.0029611871577799]],[[0.016834514215589,-0.0061029950156808,-0.01566031947732],[0.047263354063034,-0.035984296351671,0.050670322030783],[0.12720081210136,-0.044271320104599,-0.27939766645432]],[[-0.025252362713218,-0.18564450740814,0.02398837916553],[0.010078581050038,0.05001387372613,-0.089944064617157],[-0.013289446942508,0.10261498391628,-0.042404133826494]],[[-0.056858297437429,-0.12007054686546,-0.019923428073525],[-0.046872247010469,-0.061656482517719,0.04685240983963],[-0.046346317976713,0.053840093314648,0.037603680044413]],[[0.065500989556313,0.004531838465482,0.091676905751228],[-0.1013298779726,-0.010028641670942,-0.09863106161356],[-0.018810342997313,-0.11571083217859,-0.089359186589718]],[[-0.043169964104891,0.029478656128049,0.014722412452102],[0.0046789068728685,-0.14682766795158,-0.078633770346642],[-0.10526563227177,0.063778720796108,-0.051818996667862]],[[-0.060000479221344,-0.023377284407616,-0.019858071580529],[-0.042106840759516,0.038918983191252,0.050298325717449],[-2.0926887373207e-05,-0.068011768162251,0.087876282632351]],[[0.019112663343549,-0.056412909179926,-0.020463541150093],[0.016946945339441,-0.10499428957701,0.040611371397972],[-0.0022468341048807,0.033681008964777,0.014681896194816]],[[0.099063754081726,0.045074157416821,0.028298379853368],[0.10000438988209,0.04164894670248,0.049686390906572],[-0.080216519534588,-0.197425827384,-0.098816633224487]],[[0.077083133161068,0.077212505042553,-0.030103530734777],[0.096802547574043,-0.035919938236475,0.0075361421331763],[0.032937787473202,-0.028756631538272,0.056124810129404]],[[0.038788314908743,0.075316920876503,0.098024979233742],[0.005460194312036,-0.0053101987577975,0.11273154616356],[0.014317844994366,0.037418216466904,0.13573622703552]]],[[[-0.033883199095726,0.033812429755926,-0.0055297240614891],[0.077737875282764,-0.086323864758015,-0.010755154304206],[-0.061834190040827,0.045513778924942,-0.021486023440957]],[[-0.030028427019715,-0.045917831361294,0.13368248939514],[0.027030626311898,0.02480923384428,-0.02537627145648],[-0.016561223194003,-0.053879797458649,0.08421541005373]],[[0.058112919330597,0.025439001619816,0.061660666018724],[0.030830290168524,-0.028173105791211,0.12873081862926],[0.046319101005793,0.021568277850747,0.068788982927799]],[[-0.02438997477293,-0.026131562888622,-0.011847411282361],[0.0042061153799295,-0.072144351899624,0.11483860015869],[0.08884160220623,-0.030082857236266,-0.092783644795418]],[[-0.027806159108877,-0.01015735603869,-0.13963462412357],[0.0079535068944097,-0.016937704756856,0.026963464915752],[0.0077044046483934,0.0069047962315381,-0.16051338613033]],[[0.15853750705719,0.016783058643341,0.070054985582829],[-0.026511553674936,-0.0013172836042941,0.10244216024876],[-0.10250877588987,-0.0078679611906409,-0.0108098750934]],[[-0.090878762304783,-0.014665473252535,0.040528759360313],[-0.089479923248291,-0.031489808112383,0.027313977479935],[0.041204124689102,0.0008568232296966,0.14019118249416]],[[-0.091282188892365,-0.034157335758209,0.1236509308219],[-0.058880589902401,0.045657001435757,0.02165568433702],[-0.05372017249465,-0.0066755418665707,-0.076466895639896]],[[0.02033631503582,0.075014971196651,-0.011109784245491],[-0.081620641052723,-0.035007670521736,0.0018364997813478],[-0.025012392550707,-0.0056539988145232,0.032892808318138]],[[0.053788784891367,-0.039643730968237,-0.052559353411198],[-0.011797758750618,-0.09105271846056,0.037689164280891],[-0.12022018432617,0.014070942997932,-0.042000416666269]],[[-0.057272374629974,-0.049042314291,0.062996484339237],[0.10461504012346,0.033954277634621,-0.032685659825802],[-0.069284431636333,-0.064169883728027,-0.037995412945747]],[[-0.023387415334582,-0.13117529451847,-0.037250574678183],[0.067620322108269,-0.033066429197788,-0.13800667226315],[-0.008658985607326,0.053172163665295,-0.03025284782052]],[[0.050786729902029,-0.0037368990015239,-0.053582020103931],[0.077285028994083,0.051490947604179,-0.089456841349602],[0.044628836214542,-0.034663174301386,0.091840945184231]],[[-0.036658745259047,-0.10454417765141,-0.083027057349682],[-0.043809186667204,-0.074787072837353,-0.055113591253757],[0.22717690467834,-0.083541706204414,0.044560007750988]],[[0.015094323083758,0.0056916405446827,-0.092973999679089],[0.054166927933693,0.027489775791764,0.024344988167286],[0.05180648714304,-0.032180976122618,0.068400345742702]],[[0.079881995916367,-0.09070036560297,-0.11426857113838],[0.018561920151114,-0.068481914699078,0.06978964805603],[-0.179039940238,-0.025912772864103,-0.018225049600005]],[[0.045663055032492,0.088630668818951,-0.00060708302771673],[0.074622377753258,-0.0059315231628716,0.16296121478081],[-0.091366164386272,0.080807529389858,0.08826120942831]],[[-0.097695291042328,0.042392488569021,-0.07575860619545],[-0.06499545276165,-0.065669246017933,-0.020059069618583],[-0.0018133032135665,-0.0555789321661,0.027070755138993]],[[-0.09309958666563,-0.076020732522011,-0.050738539546728],[0.060044135898352,0.010986966080964,0.054677106440067],[0.16917824745178,-0.0050992914475501,-0.049692898988724]],[[-0.032092865556479,0.12999904155731,-0.0055870320647955],[-0.036869656294584,-0.016396319493651,-0.1616632193327],[0.06652694940567,0.05989295989275,-0.042421575635672]],[[0.0090840673074126,-0.082467690110207,-0.0014252847759053],[-0.088035501539707,0.027239616960287,-0.003075227374211],[0.044358290731907,-0.043925404548645,0.0090750362724066]],[[-0.082518361508846,-0.033334314823151,0.062493912875652],[-0.044859789311886,-0.13149125874043,-0.10848634690046],[0.085825130343437,-0.022023852914572,-0.05938159301877]],[[0.034282941371202,0.11332120746374,-0.10521020740271],[-0.02229892089963,-0.03088366985321,-0.003807885106653],[0.015993859618902,-0.075215712189674,0.0046734544448555]],[[-0.061618618667126,-0.032834783196449,-0.025249453261495],[-0.043655417859554,-0.10155972838402,-0.0027186437509954],[-0.040659118443727,-0.018752751871943,0.050043355673552]],[[0.036269005388021,0.059360057115555,-0.023515338078141],[-0.0929184705019,0.051764354109764,-0.11872064322233],[-0.10659008473158,-0.028365053236485,0.011683818884194]],[[0.070994563400745,0.059312589466572,-0.10706100612879],[-0.10527337342501,-0.059171542525291,-0.0060496139340103],[-0.072956100106239,-0.090985529124737,0.051057066768408]],[[-0.018364984542131,0.029017021879554,0.062308799475431],[-0.013079361058772,-0.05026251077652,-0.087988823652267],[0.0052595394663513,0.031670361757278,-0.036575093865395]],[[-0.00017331876733806,0.029322357848287,0.0045918789692223],[-0.010457537136972,-0.031444635242224,-0.0076566734351218],[-0.17542739212513,-0.080408811569214,-0.1348605453968]],[[-0.031690280884504,0.031083958223462,-0.026446884498],[0.085153505206108,-0.047308277338743,0.047371204942465],[-0.055288754403591,-0.03290543705225,0.12423717230558]],[[0.0049947947263718,0.062671221792698,0.097906343638897],[0.05574006959796,-0.023354509845376,0.013284100219607],[0.06530924141407,0.0045321783982217,-0.19615958631039]],[[-0.081609778106213,0.013547407463193,-0.023568600416183],[-0.014644084498286,-0.0074850157834589,-0.033288080245256],[0.054778672754765,0.04319067671895,0.068242557346821]],[[-0.064352840185165,-0.027203040197492,0.065391026437283],[0.040359612554312,0.073569536209106,-0.07321410626173],[0.028977179899812,-0.062492646276951,0.016709815710783]],[[0.011601346544921,0.1221668869257,0.066985443234444],[-0.073487170040607,-0.080062575638294,-0.02424225769937],[0.06306167691946,-0.034214910119772,-0.0015363426646218]],[[-0.059999920427799,-0.10397294908762,-0.098619848489761],[0.15685844421387,-0.11562494188547,0.11677201092243],[0.030402043834329,0.018924698233604,-0.073392242193222]],[[0.072241112589836,-0.022933751344681,0.016624458134174],[-0.027562718838453,-0.025477413088083,-0.032986223697662],[0.027802864089608,-0.065760932862759,-0.068386368453503]],[[0.13704231381416,0.019912339746952,-0.05543490126729],[-0.0030583168845624,0.085808992385864,-0.054255370050669],[-0.1345209479332,-0.025776948779821,-0.010238085873425]],[[-0.041243463754654,0.049544885754585,-0.05111113935709],[-0.088410787284374,0.12962745130062,-0.027019938454032],[0.0010337104322389,0.020951431244612,0.11621297895908]],[[-0.052795466035604,0.11027018725872,-0.0011658607982099],[-0.049824200570583,-0.039831671863794,0.099229246377945],[-0.072392396628857,0.022144177928567,-0.045793894678354]],[[0.03891571611166,0.010183837264776,0.069531388580799],[-0.056356143206358,0.16649231314659,0.090762309730053],[-0.021294286474586,-0.051612678915262,0.020480154082179]],[[0.061540748924017,0.042904693633318,-0.08372189104557],[0.023204507306218,-0.011811750940979,0.028397388756275],[-0.056568812578917,-0.069125324487686,0.062193848192692]],[[-0.033998750150204,-0.068856365978718,-0.02549990452826],[-0.0045739007182419,0.038525730371475,-0.07342354208231],[-0.013009163551033,0.0015548646915704,0.1133611947298]],[[0.010087937116623,-0.089735008776188,0.072839125990868],[0.031154651194811,0.05100267380476,0.063303165137768],[-0.024078557267785,-0.039430100470781,-0.0093977432698011]],[[0.05600993335247,0.031450379639864,-0.13793547451496],[-0.045543629676104,-0.011088931001723,-0.044220354408026],[0.040760897099972,-0.097842708230019,-0.00062620401149616]],[[-0.0084265973418951,-0.073578990995884,0.054502125829458],[0.064439527690411,0.064576186239719,0.0029321629554033],[-0.0064142113551497,-0.0068853325210512,-0.06408553570509]],[[-0.081778809428215,0.016441956162453,-0.071754164993763],[0.10222344100475,0.015819313004613,-0.029300183057785],[0.012237479910254,0.10946904122829,-0.12604793906212]],[[0.02295153401792,0.14093315601349,-0.004075909499079],[-0.058383908122778,-0.0021269349381328,0.071849018335342],[-0.058839146047831,-0.0035434335004538,0.10904511809349]],[[-0.095949620008469,-0.081382811069489,-0.21079401671886],[0.010266325436532,0.07611520588398,-0.02899937517941],[-0.00030267547117546,0.0033078650012612,-0.010468762367964]],[[0.016824120655656,-0.047260813415051,-0.12385644763708],[0.094806134700775,-0.031736936420202,0.0081223342567682],[-0.0060028932057321,0.088335618376732,-0.13279627263546]],[[-0.082240581512451,-0.019908202812076,0.050593592226505],[-0.052209090441465,0.019759381189942,0.10851614177227],[-0.037283137440681,-0.08528932929039,0.1107119768858]],[[0.0027066373731941,-0.074849672615528,-0.029636044055223],[0.024135485291481,0.045512408018112,-0.049562733620405],[0.082678250968456,-0.019238045439124,-0.023893289268017]],[[0.0067204707302153,0.015097061172128,-0.055925853550434],[-0.02252403832972,-0.035877626389265,-0.0068053002469242],[-0.072361849248409,-0.035218931734562,0.13602992892265]],[[0.074953056871891,0.026937892660499,-0.15803131461143],[-0.12432709336281,0.13615937530994,-0.054334614425898],[-0.039592642337084,-0.060861993581057,-0.13490818440914]],[[0.07384467124939,-0.0046667857095599,0.086688622832298],[-0.043805606663227,-0.060012098401785,0.016320718452334],[-0.0040649021975696,0.018572872504592,0.040992807596922]],[[0.073028691112995,0.009789957664907,-0.14137615263462],[-0.042003139853477,0.046664647758007,0.0069211688823998],[-0.013848251663148,0.022653002291918,-0.061589688062668]],[[-0.030889689922333,0.04075575619936,-0.0058162068016827],[-0.0724246352911,-0.051917266100645,-0.09117217361927],[0.12013570964336,0.035119075328112,0.16183882951736]],[[-0.016776192933321,-0.11135863512754,0.0076022068969905],[-0.06052428111434,0.063473306596279,-0.047530584037304],[-0.030798779800534,0.086095429956913,0.10058271884918]],[[0.043059565126896,-0.09387132525444,0.01281529571861],[0.097663596272469,0.18107578158379,0.057430610060692],[0.0025048709940165,0.058473914861679,0.069498158991337]],[[-0.10100891441107,0.031680133193731,-0.02668078429997],[0.059168979525566,0.037640262395144,-0.0743463113904],[-0.052295554429293,-0.096586756408215,-0.11985397338867]],[[-0.10641924291849,0.1151439845562,0.058397762477398],[0.088932536542416,-0.033966321498156,0.048009671270847],[0.0080982316285372,0.0056541808880866,-0.0063331914134324]],[[-0.14175415039062,0.09207609295845,-0.066311851143837],[0.045103885233402,-0.18202812969685,0.0073102526366711],[0.13098835945129,0.069519616663456,-0.043621733784676]],[[-0.050544824451208,0.075078181922436,0.025974379852414],[-0.0034770471975207,-0.027574833482504,-0.027231980115175],[-0.009990775026381,-0.064919129014015,-0.0072689019143581]],[[0.072875395417213,0.12761959433556,-0.071597553789616],[-0.013065731152892,0.018383290618658,0.0093919904902577],[0.0342663154006,-0.065796084702015,-0.050079621374607]],[[0.1041894108057,0.030369559302926,0.035742588341236],[0.043541464954615,-0.010928150266409,0.0031961952336133],[-0.03349506482482,0.091925300657749,0.024949776008725]],[[0.017600940540433,0.060398910194635,-0.17713072896004],[-0.0082839969545603,0.081718280911446,-0.074717462062836],[0.030645720660686,0.014137506484985,0.017431216314435]]],[[[-0.032748829573393,0.044711325317621,0.085917845368385],[0.070800319314003,0.026063745841384,-0.18623954057693],[0.034401185810566,-0.14906503260136,-0.093294091522694]],[[0.018933895975351,-0.059853721410036,-0.10904596745968],[-0.054659970104694,-0.037858203053474,-0.029980067163706],[0.039791841059923,-0.01007853448391,0.020695755258203]],[[-0.036308839917183,0.075980417430401,0.013937305659056],[-0.14556549489498,-2.6941010219161e-05,0.043763183057308],[-0.092221215367317,0.054080501198769,0.031325373798609]],[[-0.14714628458023,-0.052658192813396,-0.20927047729492],[-0.068010404706001,-0.14229583740234,0.17387889325619],[-0.0019390016095713,0.060474414378405,-0.010810259729624]],[[-0.027603626251221,-0.0095579931512475,0.045353952795267],[0.080837719142437,-0.038399282842875,0.050333969295025],[0.024386687204242,-0.018563330173492,-0.062685646116734]],[[0.020515963435173,-0.11148461699486,0.096613168716431],[0.089642748236656,0.18443270027637,-0.04036970064044],[0.11513575911522,0.027833111584187,-0.083703562617302]],[[0.0036370265297592,0.016972545534372,-0.11018327623606],[-0.079605214297771,-0.02513307146728,0.060731694102287],[-0.022425083443522,0.1592511087656,0.011868709698319]],[[0.021429598331451,-0.093325167894363,0.030674813315272],[0.033896517008543,-0.026172908023,0.024029430001974],[0.16034516692162,0.019430940970778,0.0012180352350697]],[[0.018198160454631,-0.050633490085602,-0.022915234789252],[0.074386849999428,0.019552243873477,-0.03359467536211],[-0.013676511123776,-0.028157748281956,0.0093183992430568]],[[-0.026280602440238,0.024302151054144,0.14238053560257],[-0.00253646960482,-0.069379217922688,-0.035664677619934],[-0.068345546722412,-0.11266393214464,-0.084848709404469]],[[-0.022576557472348,0.11352664232254,-0.11452173441648],[0.028758060187101,0.049439758062363,-0.046099703758955],[0.051731336861849,-0.097204022109509,0.005230532027781]],[[-0.099462904036045,0.034185618162155,0.12034949660301],[-0.15020669996738,0.020742829889059,0.0084352763369679],[-0.12720514833927,-0.091578580439091,0.044498540461063]],[[0.065827623009682,0.10328552126884,0.14290842413902],[-0.1177823394537,-0.023355944082141,-0.049126457422972],[0.0075975605286658,-0.047578938305378,-0.034173093736172]],[[-0.012357249855995,0.10374389588833,-0.01667196303606],[-0.042800158262253,-0.090288311243057,0.013658480718732],[0.096185848116875,-0.039428222924471,-0.019559133797884]],[[0.021930987015367,-0.044817321002483,0.16354805231094],[-0.16312728822231,0.018552120774984,-0.037976715713739],[-0.086183056235313,-0.058895669877529,-0.070587582886219]],[[0.047715343534946,-0.10050392895937,-0.080642074346542],[-0.13850574195385,0.03652585670352,-0.021063046529889],[-0.20701034367085,0.011461827903986,0.10838820785284]],[[-0.11647091060877,0.05858350917697,-0.0360112413764],[-0.052050828933716,-0.067927710711956,0.061012573540211],[0.026209546253085,-0.028589984402061,-0.067798100411892]],[[-0.052302613854408,0.01364765688777,0.023328041657805],[-0.0086434120312333,0.0038880358915776,0.050349649041891],[0.010796799324453,-0.068720832467079,-0.00027224436053075]],[[0.055878348648548,0.016842979937792,-0.11268103122711],[-0.035613249987364,-0.13818101584911,-0.058674730360508],[0.04429417476058,0.016209084540606,-0.012078268453479]],[[0.0045177442952991,0.075392417609692,-0.16518898308277],[0.12309945374727,-0.012635830789804,-0.033015865832567],[0.075641147792339,0.11150449514389,-0.047415599226952]],[[0.1483573615551,-0.16771510243416,0.07219086587429],[-0.043549809604883,0.086537197232246,0.057443656027317],[0.051088187843561,-0.051939520984888,0.0055819866247475]],[[0.0090575087815523,-0.00554842595011,0.0037945217918605],[-0.021799413487315,-0.025960197672248,-0.021018402650952],[-0.1357554346323,-0.078806594014168,-0.053453706204891]],[[-0.029661549255252,0.012608662247658,0.097449608147144],[-0.080254971981049,-0.034262202680111,-0.19986121356487],[0.11066620796919,0.054927367717028,0.010677562095225]],[[0.11718147993088,0.08384507894516,0.095800891518593],[-0.023851053789258,0.022886304184794,-0.012558956630528],[-0.012669423595071,0.028106251731515,0.092536926269531]],[[-0.10213975608349,-0.18862058222294,-0.10560420155525],[-0.066301055252552,0.0085744662210345,0.055817443877459],[-0.14846989512444,-0.16332225501537,-0.006254531443119]],[[0.036396447569132,0.001439870800823,-0.0054248864762485],[-0.12314939498901,0.039918422698975,-0.031808964908123],[0.019073368981481,-0.046901356428862,-0.070986807346344]],[[0.12852630019188,0.11729317903519,0.18284185230732],[-0.086060166358948,-0.037370182573795,0.065766133368015],[-0.10575155168772,0.085655622184277,0.029776785522699]],[[-0.083050355315208,-0.14142043888569,-0.16741652786732],[-0.021803935989738,0.0080159772187471,-0.15729649364948],[-0.1600040346384,-0.010656364262104,0.020774401724339]],[[-0.0084431990981102,-0.034979376941919,-0.043493378907442],[-0.0179342944175,-0.056262567639351,-0.089487798511982],[-0.003909716848284,0.18411011993885,0.07595556229353]],[[-0.0097641563042998,0.071952812373638,0.2822907269001],[-0.044457066804171,0.02798262797296,0.20116867125034],[-0.072236075997353,0.0074071818962693,0.089164353907108]],[[0.027620056644082,0.066574715077877,-0.11186907440424],[0.030145751312375,-0.047538515180349,-0.018387062475085],[0.11609704047441,0.021132996305823,0.11612835526466]],[[0.053764671087265,-0.058116901665926,-0.19914416968822],[0.030077202245593,-0.00093899364583194,-0.08550975471735],[-0.11517154425383,-0.0022111115977168,0.10391042381525]],[[-0.026693541556597,-0.096874363720417,0.068953432142735],[-0.042459007352591,0.08033598959446,-0.055342208594084],[0.053328454494476,0.029700560495257,0.083060406148434]],[[-0.072432152926922,0.014345151372254,0.071702212095261],[-0.040830530226231,-0.027743021026254,-0.081800378859043],[-0.061392068862915,0.033166512846947,-0.068269655108452]],[[0.062493447214365,-0.029329471290112,-0.074634775519371],[-0.013610107824206,-0.1133573949337,-0.021688288077712],[0.057582650333643,-0.027090696617961,-0.018978334963322]],[[-0.013730424456298,0.0085212448611856,-0.024353072047234],[-0.013933731243014,0.062343370169401,-0.030731676146388],[-0.035649601370096,-0.018341030925512,0.0027116446290165]],[[0.041428111493587,-0.019684165716171,0.080306597054005],[-0.043114587664604,0.086600676178932,-0.064793713390827],[-0.029120145365596,0.047006629407406,-0.067555092275143]],[[-0.068466931581497,-0.022999519482255,0.034323919564486],[0.12194730341434,0.1035828217864,0.013728066347539],[0.15982221066952,0.036659806966782,0.044333599507809]],[[0.014358536340296,0.091915994882584,0.050643809139729],[-0.031408213078976,0.012121384963393,0.021256847307086],[-0.024669256061316,-0.071723185479641,-0.040129993110895]],[[0.086104460060596,-0.036437630653381,-0.088894076645374],[0.062724761664867,0.020541425794363,0.0073088784702122],[0.049897745251656,-0.060074161738157,0.043585605919361]],[[-0.038824524730444,-0.023522865027189,-0.025126913562417],[-0.12794378399849,-0.030269715934992,0.0018326030112803],[-0.11176843196154,-0.066539935767651,0.023863643407822]],[[0.031264640390873,-0.0011508712777868,-0.009403295814991],[-0.012024575844407,-0.067928344011307,0.14145727455616],[-0.079908207058907,-0.086011506617069,0.039945904165506]],[[-0.062722593545914,0.12230711430311,0.0047582560218871],[-0.026808449998498,0.044792909175158,-0.034933928400278],[-0.19168131053448,-0.041854675859213,-0.053019482642412]],[[0.013985416851938,0.0083033116534352,0.035950355231762],[-0.036101371049881,-0.00054578942945227,0.070221178233624],[-0.090506918728352,0.030277464538813,-0.043649833649397]],[[-0.10719820857048,0.018244767561555,0.040057864040136],[-0.26183345913887,-0.049521051347256,0.086969718337059],[-0.20530325174332,-0.072562210261822,-0.051032286137342]],[[0.0026659115683287,-0.10852746665478,-0.12328348308802],[0.023677941411734,-0.012077262625098,-0.19139833748341],[-0.11601158976555,-0.17682167887688,0.0045939441770315]],[[0.066339150071144,-0.043235123157501,0.16952520608902],[0.025572080165148,0.089652039110661,-0.011439181864262],[-0.075766324996948,0.069383382797241,0.0161466691643]],[[0.012258558534086,0.1027859672904,-0.049661818891764],[-0.086618483066559,0.00026961223920807,-0.040873367339373],[-0.075138173997402,0.044321458786726,-0.12869304418564]],[[0.044846277683973,0.026616871356964,0.031864713877439],[-0.055722706019878,0.083417654037476,0.02175853587687],[-0.07533685863018,-0.098229721188545,-0.033879593014717]],[[-0.068573959171772,0.10628669708967,0.011965798214078],[-0.1052615121007,0.033301025629044,0.065587863326073],[-0.031509831547737,-0.0067441994324327,-0.022831574082375]],[[-0.051741812378168,-0.069363474845886,-0.0015685597900301],[-0.088215216994286,0.017824936658144,0.074422977864742],[-0.071000844240189,-0.030498908832669,-0.083290502429008]],[[0.0050682742148638,0.051437973976135,0.3224281668663],[-0.028178380802274,-0.034842245280743,0.17928431928158],[-0.042973913252354,0.032650697976351,-0.094438672065735]],[[-0.11946868896484,0.073128297924995,-0.053517196327448],[0.25166890025139,0.028458427637815,0.05824476107955],[-0.0089277233928442,-0.060817539691925,-0.037542883306742]],[[0.070234872400761,0.10236264765263,0.1148950830102],[-0.053293757140636,0.021041601896286,-0.01231708843261],[-0.11312253028154,0.10943545401096,-0.099833764135838]],[[0.0047738938592374,-0.20975425839424,-0.014252948574722],[-0.077338442206383,-0.16934381425381,-0.13326817750931],[-0.075261548161507,-0.013309524394572,-0.06441105902195]],[[0.16616348922253,0.049469571560621,-0.11851912736893],[-0.035329148173332,-0.1664018034935,-0.20344442129135],[-0.018777864053845,-0.041563361883163,-0.046158242970705]],[[0.029272690415382,0.0076947850175202,0.11155423521996],[0.0099522927775979,0.062205005437136,0.020869305357337],[-0.0098388083279133,0.093755669891834,-0.012617078609765]],[[-0.0049960678443313,-0.13947476446629,0.11814415454865],[0.073126576840878,-0.0072464728727937,0.058268368244171],[-0.084640309214592,-0.13744035363197,-0.077554784715176]],[[0.0034842633176595,-0.10207081586123,-0.04685328528285],[0.077340736985207,0.068738169968128,-0.034772537648678],[0.033925749361515,0.080804079771042,-0.016342103481293]],[[0.029143089428544,0.019645588472486,0.0086144022643566],[-0.057321690022945,0.020568395033479,0.06376938521862],[0.068006686866283,-0.072622589766979,-0.046707253903151]],[[-0.11766900122166,0.025174230337143,-0.13282535970211],[-0.095602743327618,-0.066126242280006,0.015816319733858],[-0.081614881753922,-0.048675753176212,0.03170408308506]],[[0.029611514881253,-0.15430222451687,0.09643616527319],[0.0051032598130405,0.064518794417381,-0.013519175350666],[-0.15231508016586,-0.0059929643757641,-0.036008633673191]],[[-0.063388518989086,0.040668748319149,0.028678635135293],[-0.0066794473677874,-0.068988986313343,0.048090901225805],[-0.15931423008442,0.015929700806737,-0.070562459528446]],[[-0.083732329308987,-0.016052819788456,0.025803178548813],[0.056141577661037,0.013600138947368,-0.010472654365003],[0.012597809545696,0.06481608748436,-0.071767620742321]]],[[[-0.075342401862144,-0.09392374753952,-0.050323750823736],[0.049596913158894,-0.10192361474037,0.066802091896534],[0.032451942563057,-0.11083555221558,-0.086031928658485]],[[0.054378058761358,-0.045021090656519,-0.0008363252854906],[0.040967080742121,-0.014975721016526,0.0067440364509821],[0.060515590012074,-0.014393115416169,-0.041247129440308]],[[-0.090760163962841,0.033780477941036,0.03207952529192],[0.078803434967995,-0.082681559026241,0.060358412563801],[0.0072648208588362,0.07744549959898,0.092477351427078]],[[-0.038681872189045,-0.087691180408001,-0.038504101336002],[-0.014002434909344,-0.045376040041447,0.036041386425495],[-0.063575461506844,-0.058109872043133,0.04616055265069]],[[0.05026887357235,0.029701799154282,0.1123433560133],[0.077461928129196,-0.024621890857816,-0.057750590145588],[-0.043363478034735,-0.012928777374327,-0.14368198812008]],[[0.088314794003963,-0.033175382763147,-0.13221630454063],[0.12649589776993,0.0095578636974096,-0.13048462569714],[0.03833132982254,-0.019840056076646,-0.029993021860719]],[[0.017407048493624,0.072840385138988,-0.060563292354345],[0.00042936237878166,0.051226947456598,-0.073453344404697],[0.024070171639323,-0.0032025873661041,-0.13687524199486]],[[-0.0070251543074846,-0.045489266514778,-0.059725236147642],[-5.5007330956869e-06,0.065817542374134,0.045147426426411],[-0.0203514136374,-0.12355029582977,0.036519560962915]],[[0.020127700641751,-0.063923768699169,0.079792812466621],[-0.048233661800623,-0.034781128168106,-0.055944256484509],[0.040594033896923,0.023326225578785,0.0075264414772391]],[[-0.14143726229668,-0.0056808795779943,-0.0088463900610805],[-0.16499453783035,-0.12160166352987,-0.056390184909105],[0.10451770573854,-0.14054699242115,0.0038857022300363]],[[-0.054868672043085,-0.053225103765726,-0.0070178653113544],[-0.039171326905489,-0.028247786685824,-0.053118802607059],[-0.0090293642133474,-0.049158655107021,-0.096771948039532]],[[-0.13668003678322,0.12699684500694,-0.016675487160683],[-0.10027921199799,-0.16085427999496,-0.021237900480628],[-0.06365878880024,-0.10816375911236,-0.13111910223961]],[[-0.028402721509337,-0.11216422915459,0.058182504028082],[0.02990509942174,-0.026385901495814,0.035602390766144],[-0.098729074001312,-0.05531732365489,0.026045095175505]],[[0.0060661816969514,0.15087103843689,0.079222068190575],[-0.0573107637465,-0.024109417572618,0.0047630658373237],[0.02669970318675,0.036474287509918,-0.056719642132521]],[[0.033793602138758,0.023755928501487,-0.093891851603985],[-0.086593627929688,0.094999708235264,-0.035831607878208],[-0.14734716713428,0.0062473774887621,0.1105887517333]],[[-0.02453014627099,-0.03205419704318,-0.045495383441448],[0.13931033015251,-0.059052668511868,-0.035714626312256],[0.044861491769552,0.013536198996007,0.060830291360617]],[[0.019146544858813,0.18715825676918,0.11873412132263],[-0.081853248178959,-0.072541460394859,-0.072844788432121],[0.017767323181033,-0.015568531118333,-0.034027062356472]],[[0.0086759766563773,-0.0055920477025211,0.019149823114276],[0.066815190017223,-0.041470803320408,-0.14287315309048],[-0.08661837875843,0.016027582809329,-0.060839049518108]],[[0.056831706315279,-0.11197773367167,-0.048540607094765],[0.15639369189739,0.10067285597324,-0.040929306298494],[0.10241460055113,0.024851504713297,-0.022197049111128]],[[0.05345606803894,0.17005386948586,-0.16032347083092],[-0.12546217441559,0.011162777431309,0.052116550505161],[0.11966364830732,-0.16738709807396,-0.0044213198125362]],[[-0.052580378949642,0.052006181329489,-0.12530170381069],[-0.051196370273829,-0.078119203448296,-0.041854996234179],[-0.029653051868081,-0.057850413024426,0.11408162117004]],[[-0.071206085383892,0.00047308215289377,0.084779806435108],[-0.092365369200706,-0.029773497954011,0.082042492926121],[-0.036060597747564,0.02994186244905,0.079753778874874]],[[0.040888957679272,-0.011118814349174,-0.079988323152065],[0.070095874369144,0.019517162814736,0.033139534294605],[0.036334920674562,-0.066653162240982,-0.073242329061031]],[[-0.12757433950901,-0.069210104644299,0.082035563886166],[-0.071862049400806,-0.023157889023423,-0.10987176001072],[0.013899304904044,0.086047738790512,-0.09359447658062]],[[-0.041930381208658,-0.15340942144394,0.018883340060711],[0.029621621593833,0.14432822167873,0.046457931399345],[-0.11111835390329,-0.099760465323925,-0.13702870905399]],[[-0.055625841021538,-0.078305579721928,0.093439787626266],[-0.069230578839779,-0.049855224788189,0.042042121291161],[-0.083812348544598,-0.11669185757637,-0.021544514223933]],[[0.027554672211409,-0.15135779976845,-0.024033084511757],[0.13327467441559,-0.04131631180644,-0.020912570878863],[-0.12355629354715,-0.079045295715332,-0.052340708673]],[[0.013965224847198,0.073578111827374,-0.052531119436026],[-0.0023994171060622,-0.064242050051689,-0.030477566644549],[0.27550026774406,-0.020799370482564,0.10025455057621]],[[-0.031797010451555,0.062549911439419,-0.12205088883638],[-0.098833203315735,0.064260341227055,0.031175034120679],[0.0095769707113504,-0.0087906373664737,0.13473252952099]],[[-0.038734335452318,-0.074030742049217,0.10205529630184],[-0.0070867640897632,-0.024356544017792,-0.055736940354109],[-0.072180546820164,0.018072010949254,-0.041933141648769]],[[-0.044253759086132,0.027218708768487,-0.057890348136425],[-0.084751762449741,0.12508644163609,-0.073968276381493],[-0.012987253256142,0.04466836899519,0.047288935631514]],[[-0.043354365974665,0.12440895289183,-0.056782893836498],[-0.042071592062712,-0.068497151136398,0.012221932411194],[-0.0423663854599,0.10349420458078,-0.043034788221121]],[[0.042440008372068,0.092380002140999,-0.028797548264265],[-0.066498763859272,-0.045489300042391,-0.0029731234535575],[0.015106601640582,-0.0032552720513195,-0.110934227705]],[[-0.049884159117937,-0.012273092754185,0.054573208093643],[-0.059091776609421,0.092329375445843,0.041735675185919],[-0.061050321906805,0.083812467753887,-0.025650450959802]],[[0.016403328627348,-0.079635508358479,-0.17673687636852],[-0.075819358229637,-0.0012342691188678,0.095540262758732],[0.070596247911453,-0.033180076628923,-0.023624690249562]],[[0.059092864394188,0.083569183945656,0.018623888492584],[-0.012953551486135,0.12826944887638,0.018302325159311],[-0.047775022685528,-0.10984492301941,-0.02584957703948]],[[0.024833735078573,-0.14932291209698,-0.058135028928518],[0.090873241424561,-0.077517360448837,0.03652149066329],[0.0022966265678406,0.01893487945199,-0.0076011270284653]],[[-0.014534598216414,0.023490838706493,0.052932243794203],[0.1678729057312,-0.1441842764616,-0.12847179174423],[0.029087586328387,-0.022268783301115,-0.011574500240386]],[[-0.051498156040907,-0.11568408459425,0.058026533573866],[0.0057932157069445,0.020384473726153,-0.12591187655926],[-0.0012233622837812,0.0031715584918857,-0.11754778027534]],[[-0.029739666730165,0.14697550237179,0.029421459883451],[0.024039683863521,-0.031729631125927,0.12100564688444],[-0.14335925877094,-0.016075246036053,0.040559694170952]],[[-0.045300964266062,0.066105514764786,-0.030885891988873],[-0.0086468085646629,-0.010337609797716,0.1005562916398],[0.02968000434339,0.033520426601171,-0.049225866794586]],[[-0.015495499596,0.094452545046806,0.039355650544167],[-0.017051164060831,0.12275817245245,0.069915749132633],[-0.019744325429201,0.063139744102955,-0.020583430305123]],[[-0.030122993513942,-0.029411310330033,-0.061545476317406],[-0.027759982272983,-0.024208599701524,-0.10910205543041],[0.01702349819243,0.090626582503319,-0.062416806817055]],[[-0.045702457427979,-0.040790375322104,0.011394830420613],[0.063065640628338,0.001513390801847,-0.041795235127211],[0.034129593521357,-0.02315684966743,-0.046977121382952]],[[-0.0039612748660147,-0.077772200107574,0.12722858786583],[-0.11699102073908,0.026453733444214,-0.11260966956615],[-0.12979160249233,-0.01521831471473,-0.1596695035696]],[[0.035305891185999,-0.0012171079870313,0.21545612812042],[0.066349655389786,-0.081495806574821,0.040239807218313],[-0.069145694375038,0.17587396502495,-0.10354010015726]],[[0.10701970756054,0.13799555599689,-0.042247969657183],[0.056907542049885,0.00054842710960656,0.055510628968477],[0.053884793072939,-0.0014771319692954,-0.037145640701056]],[[-0.054597429931164,0.099338613450527,0.070138476788998],[-0.064349658787251,-0.074328236281872,-0.028757832944393],[0.0066094687208533,0.0077016786672175,0.066860534250736]],[[-0.062555588781834,-0.028607940301299,-0.031995616853237],[-0.049143794924021,0.060325339436531,-0.11302624642849],[-0.13179117441177,0.1800080537796,-0.037484109401703]],[[0.0067694126628339,0.053638026118279,-0.10493345558643],[-0.029937589541078,0.037469018250704,0.03606504201889],[0.014118987135589,-0.020407905802131,0.017116585746408]],[[0.059072632342577,0.0079034278169274,0.095817565917969],[-0.072025805711746,0.02377744205296,-0.11485786736012],[-0.0025711157359183,0.041991863399744,0.054557666182518]],[[-0.084535554051399,-0.13299629092216,0.018703889101744],[0.18089877068996,0.088672816753387,0.16654060781002],[-0.026540821418166,-0.14734350144863,0.0014358408516273]],[[-0.11204139888287,0.13273696601391,-0.078839190304279],[0.0070338039658964,0.13256421685219,0.01734933629632],[-0.061446785926819,0.11377724260092,0.0081114312633872]],[[-0.083555735647678,-0.0085794925689697,0.16905710101128],[0.006061646156013,-0.068049192428589,0.15743713080883],[-0.075619727373123,0.11566069722176,-0.074966952204704]],[[-0.086420327425003,-0.042203783988953,-0.0073745213449001],[-0.03438002243638,0.0029470690060407,0.061683669686317],[-0.033464189618826,-0.066955246031284,-0.071425177156925]],[[0.11269817501307,0.040048971772194,0.092900089919567],[-0.026535589247942,0.010350801981986,0.16167290508747],[0.046707957983017,0.1112424954772,-0.0069925202988088]],[[-0.10966143012047,-0.13104185461998,-0.015784153714776],[-0.11809527873993,-0.070741131901741,0.0029467926360667],[-0.047533378005028,0.11836601048708,-0.1031299084425]],[[-0.021290194243193,-0.00026000360958278,0.0014931943733245],[0.011872691102326,-0.04889789968729,-0.063208311796188],[0.084193766117096,-0.006995493080467,-0.049050305038691]],[[0.12575852870941,0.059604022651911,-0.010864091105759],[-0.035492289811373,-0.016673939302564,-0.12720911204815],[0.098594129085541,0.0073910583741963,0.020016223192215]],[[-0.070359356701374,0.03361589834094,-0.10635837167501],[-0.028172556310892,0.031002670526505,0.059829656034708],[0.01356936711818,-0.025480505079031,0.0036599664017558]],[[0.03388024866581,0.016466025263071,-0.087760664522648],[-0.053215146064758,0.069472923874855,0.015843188390136],[-0.11622631549835,-0.075690373778343,-0.061217859387398]],[[-0.03866920992732,0.1823191344738,-0.220359146595],[-0.041077867150307,-0.051870796829462,-0.015593499876559],[0.095228239893913,0.042296152561903,-0.0013376785209402]],[[-0.17952273786068,-0.054533295333385,0.20661878585815],[0.070610590279102,-0.12286322563887,0.030422957614064],[-0.095120184123516,0.0080838100984693,-0.10480898618698]],[[0.043958060443401,0.084981627762318,-0.067183189094067],[-0.021736597642303,0.031497064977884,0.085437320172787],[0.06870125234127,-0.10367128998041,0.08945294469595]]],[[[0.13473495841026,0.031570591032505,-0.0092078251764178],[0.044441565871239,-0.019780997186899,-0.051110327243805],[0.039779610931873,0.061449859291315,-0.021092290058732]],[[0.14976739883423,-0.017322154715657,-0.1178952306509],[-0.052940994501114,0.0031138339545578,0.11027324199677],[-0.048068184405565,0.082267917692661,0.19354204833508]],[[-0.076162606477737,-0.0026388675905764,0.087722510099411],[0.011737912893295,0.08273957669735,0.027461621910334],[-0.064426735043526,0.099902503192425,0.079654201865196]],[[-0.16676788032055,0.0037501524202526,-0.024319974705577],[-0.058002442121506,-0.025625981390476,0.071697197854519],[-0.0071944072842598,-0.04777242615819,-0.018420049920678]],[[-0.1167751327157,-0.075926572084427,0.022157704457641],[-0.13135571777821,-0.034079771488905,0.030063465237617],[-0.059533040970564,-0.084538459777832,0.018338473513722]],[[0.066285505890846,0.10719724744558,-0.010399132966995],[-0.012998223304749,-0.028583874925971,0.19725196063519],[0.029952727258205,-0.16916781663895,-0.043823603540659]],[[-0.037307996302843,-0.0012269763974473,0.037114407867193],[-0.014677727594972,0.022000836208463,0.031254351139069],[-0.035149522125721,0.055560816079378,0.043746307492256]],[[0.055104646831751,0.056918364018202,-0.04965802282095],[-0.027642434462905,-0.080559797585011,0.0011726296506822],[0.031002035364509,0.060373049229383,-0.037060130387545]],[[-0.050077974796295,-0.07538902759552,-0.014584364369512],[-0.0094969049096107,0.091945081949234,-0.023757185786963],[-0.0085483817383647,0.04022266343236,0.051466956734657]],[[-0.0771699026227,-0.07562530040741,-0.038526881486177],[-0.047124002128839,0.052142400294542,-0.052114959806204],[-0.0055418517440557,-0.080844275653362,-0.033716630190611]],[[0.066378697752953,0.12983892858028,0.035204973071814],[0.066876642405987,-0.003699651453644,0.00037725511356257],[0.031024657189846,-0.041691873222589,0.025492038577795]],[[-0.13357704877853,-0.10688366740942,-0.18067046999931],[-0.087831534445286,0.025205822661519,-0.06620965898037],[-0.061582405120134,-0.054676059633493,-0.021566543728113]],[[-0.20799891650677,-0.076183378696442,-0.13643363118172],[0.0040897089056671,-0.046144012361765,-0.083877176046371],[0.060764707624912,-0.020808421075344,0.0011378047056496]],[[-0.053748615086079,0.088211886584759,0.15358310937881],[-0.036583710461855,0.0029723613988608,-0.034726042300463],[0.02980587631464,0.06775438785553,-0.017399655655026]],[[-0.054246950894594,-0.13458985090256,0.017925458028913],[0.053728174418211,0.073994882404804,0.080663800239563],[0.015840124338865,0.02896124497056,0.21606610715389]],[[-0.065535679459572,-0.015100446529686,-0.037029419094324],[-0.079421192407608,-0.04355401173234,-0.018685469403863],[-0.046006452292204,-0.016500648111105,0.11003389209509]],[[-0.092052653431892,0.026233181357384,-0.163340523839],[-0.014850890263915,0.033880792558193,-0.16525201499462],[-0.022746875882149,0.06406781822443,0.068089112639427]],[[-0.10827918350697,-0.11716797202826,0.045300699770451],[-0.067179419100285,-0.055977083742619,-0.014027994126081],[-0.01070736721158,-0.047776836901903,0.073742747306824]],[[0.0088872406631708,-0.015712436288595,-0.030670141801238],[0.025226199999452,-0.090715870261192,-0.026318492367864],[-0.0078516528010368,-0.14613841474056,0.11140094697475]],[[-0.010146760381758,0.034867834299803,0.060453273355961],[0.010400388389826,0.042202707380056,0.086865931749344],[0.15595938265324,0.13668665289879,-0.10430003702641]],[[-0.027630928903818,0.067193806171417,-0.013721760362387],[-0.057574491947889,-0.014039383269846,0.031238790601492],[-0.062362425029278,-0.068125747144222,-0.10438800603151]],[[0.017216797918081,-0.014039419591427,0.039987366646528],[0.014222353696823,-0.014864509925246,0.028122749179602],[0.072421550750732,0.085184261202812,0.15030220150948]],[[-0.11372326314449,-0.089728131890297,-0.030087659135461],[-0.016102097928524,-0.10848364979029,-0.026024306192994],[0.0260797329247,-0.15714317560196,0.0053411033004522]],[[-0.18488691747189,-0.19348454475403,0.10817699879408],[-0.12850315868855,-0.20719486474991,0.049471225589514],[-0.1295111477375,-0.057550981640816,0.055077482014894]],[[0.13947211205959,-0.072939909994602,0.084482364356518],[-0.0032270231749862,-0.02789025567472,-0.022409474477172],[0.030648903921247,0.19381287693977,0.0020446283742785]],[[-0.066630020737648,-0.037179756909609,0.046850685030222],[0.07925783097744,-0.01898449473083,0.063054248690605],[0.022749805822968,0.053609054535627,0.16415439546108]],[[-0.022973019629717,-0.032520581036806,-0.00087757001165301],[0.14479850232601,0.054233435541391,-0.0015058633871377],[-0.0078639769926667,0.073963858187199,0.088560327887535]],[[0.11101292818785,0.067042514681816,-0.026601307094097],[-0.029130293056369,-0.061909802258015,-0.0033562807366252],[0.022233296185732,-0.17949725687504,-0.0040865535847843]],[[-0.080774962902069,0.1176278591156,0.095208115875721],[-0.068940848112106,0.039087124168873,0.12939685583115],[-0.024255337193608,-0.18008957803249,0.010843751952052]],[[-0.17511641979218,-0.13308145105839,-0.16534994542599],[-0.0025425120256841,-0.058989655226469,0.04963143914938],[0.048051279038191,0.089274734258652,-0.024841753765941]],[[-0.30238962173462,-0.16207727789879,0.1056684628129],[-0.056727804243565,-0.13634319603443,-0.19458408653736],[0.10675088316202,-0.027817798778415,-0.14984552562237]],[[-0.11509847640991,-0.012089818716049,0.070314861834049],[0.00041122420225292,-0.091293774545193,0.095240890979767],[0.018373426049948,-0.024465275928378,0.09767509251833]],[[0.0052573205903172,0.10069185495377,0.0067179338075221],[-0.024462083354592,-0.019701723009348,-0.010101549327374],[-0.13013209402561,-0.045924626290798,-0.024835102260113]],[[-0.171754732728,-0.088589511811733,0.082128040492535],[-0.037582449615002,-0.13968747854233,-0.064245507121086],[-0.02858778834343,-0.016797127202153,0.040251806378365]],[[-0.10642566531897,-0.014213697053492,-0.066650032997131],[0.11304450035095,0.016573421657085,0.038366004824638],[-0.020891718566418,-0.083366237580776,0.073235064744949]],[[-0.023865584284067,0.026160495355725,0.0031918238382787],[0.00067546230275184,0.0056155286729336,0.045706480741501],[0.1258445084095,-0.052300974726677,-0.18286694586277]],[[-0.21992537379265,-0.026320859789848,0.016059208661318],[0.017289781942964,0.10433722287416,-0.014010604470968],[0.064367942512035,-0.011628836393356,0.0065213008783758]],[[0.054937068372965,0.0031337081454694,0.036648776382208],[0.00106220995076,0.059251837432384,-0.10452374815941],[0.052199304103851,0.12395903468132,-0.1266828328371]],[[-0.11116994172335,-0.10986275970936,-0.0055090133100748],[-0.11654113978148,-0.077842056751251,0.031871769577265],[-0.0050521879456937,0.01406167820096,0.043791402131319]],[[-0.051228430122137,-0.07031312584877,0.023850062862039],[-0.045705862343311,0.010791465640068,-0.096438825130463],[-0.02507840283215,0.027340054512024,-0.024971667677164]],[[-0.098174728453159,-0.18096207082272,-0.058900527656078],[-0.0098888585343957,-0.03937690705061,-0.013411684893072],[0.10014805197716,-0.029556965455413,-0.045538447797298]],[[-0.19732575118542,-0.16303975880146,-0.029046138748527],[0.028551394119859,-0.11529941111803,0.029637902975082],[0.035253383219242,0.0075236330740154,-0.0232490953058]],[[-0.077141404151917,-0.0071866260841489,-0.0080914320424199],[-0.0054596522822976,0.048232827335596,0.054833672940731],[-0.018287716433406,-0.035654712468386,-0.0059027248062193]],[[-0.015086013823748,0.034308023750782,-0.044989123940468],[-0.01420424785465,-0.087166517972946,0.018085617572069],[0.061491645872593,0.015557198785245,0.030992588028312]],[[-0.072246663272381,-0.11973028630018,-0.027285156771541],[0.00025663466658443,-0.11877074092627,0.035770192742348],[0.059951450675726,-0.036194518208504,0.16323521733284]],[[0.03895553201437,-0.0011646107304841,0.043064717203379],[-0.035463254898787,-0.013803062029183,0.03834280371666],[0.11934172362089,0.085287839174271,0.14266937971115]],[[-0.17997857928276,-0.14401493966579,-0.12175092846155],[-0.024425659328699,0.0046710073947906,0.03941959887743],[0.03718151897192,-0.067512579262257,0.0025022721383721]],[[-0.10365156829357,-0.1268468350172,-0.013091421686113],[-0.026299651712179,-0.028580415993929,-0.0052618063054979],[0.033155027776957,0.089790090918541,0.094638124108315]],[[-0.066549725830555,-0.088150799274445,-2.3678869183641e-05],[-0.090609841048717,-0.079228237271309,0.0066580749116838],[-0.051220934838057,-0.021451892331243,0.13823257386684]],[[0.041347205638885,-0.050835724920034,0.0041160965338349],[-0.0015723571414128,0.01775574311614,0.064855128526688],[0.045375321060419,-0.048429019749165,-0.034998845309019]],[[-0.31998240947723,-0.22672466933727,-0.073472507297993],[-0.14936992526054,-0.061704345047474,0.0080008869990706],[-0.00046876556007192,-0.041908111423254,0.082534037530422]],[[-0.037501182407141,0.030325071886182,-0.022210875526071],[0.008054219186306,0.028288438916206,0.093048349022865],[-0.019531458616257,-0.034961987286806,-0.058833103626966]],[[0.01161250565201,0.030044747516513,0.045031804591417],[0.056196998804808,-0.11838881671429,0.048972155898809],[0.05677493289113,-0.083609104156494,-0.11349406093359]],[[0.14814166724682,0.010160677134991,-0.035697843879461],[0.049661934375763,-0.0005428577424027,0.024204647168517],[0.061899933964014,0.018735600635409,0.29333347082138]],[[0.026106134057045,-0.0071043651551008,0.057086102664471],[0.0066865212284029,0.05308922752738,-0.05334822461009],[0.022311640903354,0.03078324533999,0.014718498103321]],[[0.0172747541219,0.028623001649976,-0.035451594740152],[-0.0068387594074011,0.10590203106403,0.058583132922649],[-0.0074824620969594,-0.011065463535488,0.018574118614197]],[[0.086015552282333,0.090105153620243,0.031539022922516],[0.076615057885647,-0.0017417242052034,-0.07530665397644],[0.068619601428509,-0.015525068156421,0.063400663435459]],[[0.046274036169052,0.052354760468006,-0.10375618934631],[-0.034676350653172,0.032571583986282,-0.092759288847446],[-0.031326863914728,0.038526430726051,-0.07059334218502]],[[0.12133313715458,0.10500005632639,0.10064504295588],[-0.095232881605625,0.0079102776944637,0.025254586711526],[0.05595438927412,-0.032441481947899,-0.048961997032166]],[[0.058684587478638,-0.011409803293645,0.066427148878574],[0.004193352535367,-0.059801932424307,0.060146890580654],[-0.00050713197560981,0.076629981398582,0.074837103486061]],[[-0.021785603836179,-0.095259971916676,-0.049141228199005],[-0.046238031238317,0.057157576084137,0.05856766924262],[-0.036049239337444,0.03597354143858,0.079205125570297]],[[-0.003340394468978,0.048126913607121,-0.1745962947607],[0.13043208420277,-0.02961341291666,-0.040661510080099],[-0.015335296280682,0.015859317034483,0.050187479704618]],[[-0.15364700555801,-0.18710240721703,-0.030088933184743],[-0.040967959910631,-0.1053449138999,-0.17259031534195],[-0.02234816737473,0.053703393787146,-0.0080799693241715]],[[0.096539042890072,0.12020248174667,0.014920366927981],[-0.0027802353724837,-0.07660536468029,-0.090420089662075],[0.083910323679447,0.096491351723671,-0.26308614015579]]],[[[-0.11366997659206,0.034115664660931,-0.07786226272583],[0.029310362413526,-0.057113140821457,0.065856471657753],[-0.023629225790501,0.029121223837137,-0.052431423217058]],[[0.077468045055866,0.024742403998971,-0.084806747734547],[0.027332853525877,-0.10829088836908,0.010137682780623],[-0.028216540813446,0.11952891200781,-0.0040826993063092]],[[-0.045610301196575,-0.083490379154682,0.082732148468494],[-0.027286190539598,-0.037446551024914,0.14880040287971],[-0.02500663138926,0.036751318722963,0.087855391204357]],[[0.047930516302586,-0.092304565012455,-0.045982081443071],[0.05171836912632,-0.026561941951513,-0.056388698518276],[0.17550714313984,0.10786612331867,0.03512329235673]],[[-0.081624388694763,-0.0087995789945126,0.014583365991712],[0.086454480886459,0.064420759677887,0.0013280503917485],[-0.088408999145031,0.052263267338276,-0.10302091389894]],[[-0.021760750561953,0.065407820045948,0.025274263694882],[-0.084259703755379,-0.030581794679165,-0.05991044268012],[-0.058633238077164,0.031110966578126,0.030660454183817]],[[0.026270974427462,0.039065778255463,0.12667670845985],[0.039446029812098,0.096391595900059,-0.024779107421637],[0.041101649403572,0.097301468253136,-0.064789548516273]],[[0.04505979642272,-0.027860833331943,-0.033001944422722],[0.042828503996134,-0.04625641182065,-0.028766559436917],[-0.059992119669914,-0.0092129101976752,-0.073132894933224]],[[0.0041669639758766,-0.012486512772739,-0.11132226884365],[0.017791777849197,-0.0026215275283903,-0.099957756698132],[0.057861473411322,0.070627138018608,0.055994879454374]],[[-0.040436923503876,-0.009949516505003,0.077146477997303],[0.029097188264132,-0.093223035335541,-0.0015908596105874],[0.054567575454712,-0.035650573670864,-0.075052782893181]],[[-0.044887863099575,0.029957894235849,-0.12063479423523],[0.090463891625404,0.0019610032904893,-0.023226181045175],[0.031680636107922,0.041616689413786,0.054834678769112]],[[-0.0047834515571594,-0.013576156459749,0.017860822379589],[-0.059436000883579,-0.15500263869762,-0.031946826726198],[0.025185041129589,-0.021457878872752,0.1450423002243]],[[0.037880938500166,-0.13037775456905,-0.012173060327768],[-0.19984914362431,0.1374714076519,-0.084529764950275],[-0.020368693396449,-0.13327093422413,0.025793379172683]],[[-0.012387090362608,0.034358043223619,-0.015353679656982],[-0.03945118188858,0.053839810192585,0.12456520646811],[-0.038063034415245,-0.041901987046003,0.087673872709274]],[[0.015711789950728,-0.060377679765224,-0.1262830644846],[0.080792479217052,-0.067098632454872,-0.009618429467082],[-0.037736155092716,0.034595098346472,0.038802143186331]],[[-0.011738097295165,0.10325701534748,0.14341033995152],[0.050274588167667,0.068193063139915,0.057476680725813],[-0.032662365585566,-0.010893096216023,-0.081938296556473]],[[-0.1481845676899,-0.0040263244882226,0.033939357846975],[0.0091097475960851,-0.077433429658413,-0.0065987780690193],[-0.054684098809958,-0.066780343651772,0.12497198581696]],[[-0.084483861923218,-0.19765157997608,-0.046945389360189],[-0.00091003376292065,-0.066032268106937,0.011259831488132],[-0.0083088772371411,-0.048729784786701,-0.018271774053574]],[[0.0065429960377514,0.13682943582535,0.053801376372576],[-0.097845457494259,0.15265327692032,0.049816109240055],[-0.17702278494835,0.019997209310532,0.043855737894773]],[[-0.010944411158562,-0.065948285162449,-0.064230293035507],[0.01194251421839,0.054440498352051,-0.08431576192379],[-0.064496502280235,0.10620603710413,-0.03214368596673]],[[-0.038676306605339,-0.11585974693298,0.024855384603143],[0.031425047665834,-0.0059835421852767,0.15202060341835],[-0.079267956316471,0.0065635219216347,-0.063401818275452]],[[0.073324620723724,-0.071969822049141,0.05290013551712],[-0.055202301591635,-0.051618572324514,-0.080548629164696],[0.032951436936855,0.083475098013878,-0.035293430089951]],[[0.029137564823031,0.071712650358677,-0.027662955224514],[0.043462559580803,0.012944677844644,-0.024938648566604],[-0.12034711241722,0.075517453253269,0.016615685075521]],[[0.039051320403814,-0.025671981275082,0.045574363321066],[0.027846567332745,-0.067130483686924,-0.016080988571048],[0.016445694491267,-0.11616878211498,0.069508753716946]],[[0.054367829114199,0.09049366414547,-0.043484654277563],[0.018071485683322,0.05455282703042,-0.00032134406501427],[0.074397996068001,0.015839114785194,0.0070363008417189]],[[-0.02726199105382,-0.013620962388813,-0.091681189835072],[-0.076450742781162,0.022224480286241,0.006326190661639],[-0.15383622050285,0.041879042983055,0.050877079367638]],[[0.068929143249989,-0.06625584512949,0.12902842462063],[-0.042230904102325,0.044379714876413,0.024743765592575],[0.055263727903366,0.01558571960777,0.068673133850098]],[[0.087048247456551,-0.021997202187777,-0.11810076981783],[-0.065057516098022,0.053149770945311,0.14571578800678],[-0.028726525604725,-0.16267602145672,0.086774185299873]],[[-0.070439092814922,-0.034928258508444,-0.040639068931341],[0.072838746011257,-0.007637838833034,0.077898278832436],[-0.004180661868304,0.074314184486866,-0.066318824887276]],[[-0.011993763968349,-0.0172582231462,-0.040101233869791],[0.10249375551939,-0.043590158224106,0.096630252897739],[-0.0057658017612994,-0.1636870354414,0.032196950167418]],[[0.050609391182661,0.0083511043339968,-0.13199637830257],[0.063160039484501,-0.022516835480928,-0.0011094749206677],[0.07906923443079,-0.027913359925151,0.0841029509902]],[[-0.078849032521248,0.06061689555645,0.042860761284828],[0.075428888201714,-0.079777032136917,-0.029471749439836],[0.017696315422654,-0.010656602680683,0.0049362205900252]],[[-0.10495693981647,-0.12675897777081,-0.026977630332112],[0.042974136769772,-0.029955707490444,-0.11281219869852],[-0.096470549702644,-0.016905248165131,0.051443539559841]],[[0.055632118135691,-0.018944358453155,-0.023792361840606],[0.00089375395327806,-0.063817620277405,-0.14782428741455],[0.048648443073034,-0.097443416714668,-0.082630783319473]],[[-0.08351282030344,-0.046379704028368,0.059242058545351],[-0.044592879712582,0.019609127193689,-0.0754274725914],[0.058318041265011,-0.040717430412769,0.015160945244133]],[[0.06819449365139,-0.018716640770435,0.028519241139293],[-0.084441088140011,-0.037594009190798,0.021499887108803],[-0.052580617368221,-0.074884913861752,-0.0027277176268399]],[[0.057917267084122,0.018180280923843,-0.045700546354055],[-0.060778226703405,-0.034014984965324,0.029546584933996],[0.098397627472878,0.026926476508379,-0.056392699480057]],[[-0.0096760587766767,0.041829939931631,-0.066788583993912],[0.045337431132793,0.033533867448568,0.079122953116894],[-0.037746138870716,0.13979929685593,0.069869928061962]],[[-0.069215834140778,-0.05617843195796,-0.024827186018229],[-0.16536478698254,-0.026728793978691,-0.067441932857037],[-0.025114104151726,-0.078668773174286,0.0074929120019078]],[[0.014287454076111,-0.024078957736492,0.04129770770669],[-0.031341016292572,-0.024607272818685,0.0077786757610738],[0.063477426767349,-0.075654171407223,-0.0095863901078701]],[[-0.020071843639016,-0.2174883633852,-0.16128952801228],[-0.052966721355915,-0.13807746767998,0.019495518878102],[-0.014490766450763,-0.036855425685644,-0.023560881614685]],[[-0.056521739810705,-0.04470981284976,0.0464679710567],[-0.016238545998931,-0.039772767573595,-0.076285116374493],[0.0086683249101043,0.02741164714098,-0.018076777458191]],[[-0.040221255272627,-0.076014995574951,-0.14748460054398],[0.083467051386833,0.086741149425507,-0.073661133646965],[-0.0040696733631194,0.095565982162952,-0.020327307283878]],[[0.024638343602419,0.12563368678093,0.031367380172014],[0.042041908949614,-0.013974194414914,0.020045923069119],[-0.1266773045063,0.027473114430904,-0.073473662137985]],[[0.03545780107379,-0.056471280753613,-0.10330430418253],[-0.15307839214802,0.026142440736294,-0.1062845364213],[-0.086759574711323,0.01740332506597,0.11014158278704]],[[0.017693551257253,0.006914378143847,-0.090913169085979],[-0.032237444072962,-0.12407945841551,-0.11533689498901],[0.054623953998089,0.01172137632966,0.049664482474327]],[[0.14666147530079,-0.02888635545969,-0.01909907720983],[0.049526944756508,-0.17552435398102,0.01315438747406],[-0.21243998408318,0.09619726985693,-0.040748700499535]],[[-0.049931898713112,-0.020965185016394,-0.057938542217016],[-0.0023699870798737,0.018512791022658,-0.044721011072397],[0.0084956418722868,0.051004849374294,-0.056153420358896]],[[-0.15171630680561,0.06310797482729,0.0015174929285422],[-0.016552466899157,-0.03775304928422,0.02042056247592],[-0.072117909789085,0.037600107491016,0.049527380615473]],[[-0.028752440586686,0.058169942349195,0.04902234300971],[-0.037682965397835,-0.00081765343202278,0.12017284333706],[-0.021540116518736,-0.064360365271568,-0.027975795790553]],[[-0.15113101899624,-0.18226203322411,-0.063304759562016],[-0.07221894711256,-0.016944730654359,-0.04666318371892],[0.142862200737,-0.025652570649981,-0.0072885993868113]],[[0.072785638272762,0.018659664317966,0.056640848517418],[-0.066356517374516,0.051906563341618,-0.12644426524639],[-0.061781749129295,-0.05422480404377,0.048345789313316]],[[-0.018903499469161,0.030056180432439,0.20717842876911],[-0.06016655638814,-0.063009351491928,0.064411364495754],[-0.075401037931442,0.064707882702351,0.12021913379431]],[[-0.10107173025608,0.10921523720026,0.057914182543755],[-0.11045135557652,-0.01021889410913,0.040204890072346],[-0.012182806618512,-0.010368222370744,-0.15517395734787]],[[-0.0050445152446628,0.053357277065516,-0.046113815158606],[-0.16745141148567,0.034550443291664,-0.018955480307341],[-0.030486943200231,0.022316414862871,0.0268589630723]],[[0.0011047887383029,-0.07063589990139,0.087067447602749],[0.080492116510868,0.049368739128113,0.09369283169508],[-0.10149306803942,0.024922119453549,0.045263331383467]],[[-0.10925509780645,-0.11629501730204,-0.028455030173063],[0.079505793750286,-0.060580246150494,-0.12117096036673],[-0.044149063527584,0.031177390366793,-0.046547539532185]],[[0.092949561774731,-0.021979928016663,-0.056494705379009],[-0.051018819212914,-0.061178740113974,0.064337112009525],[-0.12556971609592,0.046491988003254,-0.0098129874095321]],[[-0.055625885725021,-0.029363580048084,-0.024175737053156],[-0.01219598390162,-0.10974626988173,0.018008643761277],[0.089383579790592,0.031747739762068,-0.0083410488441586]],[[-0.047575607895851,-0.023665994405746,-0.091459177434444],[0.10848505795002,0.011229077354074,-0.0031106614042073],[0.050218462944031,0.061735339462757,0.14420719444752]],[[-0.11670693010092,-0.015777857974172,-0.056593328714371],[0.037509832531214,-0.059618555009365,-0.014194178394973],[0.036539055407047,0.024100031703711,0.015954207628965]],[[0.11366818845272,0.034731298685074,0.059093777090311],[-0.039843503385782,-0.17604809999466,-0.17017126083374],[-0.036210022866726,0.0063230129890144,-0.022110804915428]],[[0.060179501771927,-0.016153212636709,-0.027420207858086],[-0.080750055611134,-0.0055884318426251,-0.080271951854229],[-0.1053290143609,0.037926066666842,-0.089995667338371]],[[-0.016908621415496,-0.026150427758694,0.08618376404047],[-0.0087052136659622,0.11586743593216,0.048943307250738],[-0.052363224327564,0.0801752358675,0.011110756546259]]],[[[0.076026439666748,0.041902508586645,-0.087740123271942],[0.053556591272354,-0.026131918653846,0.034835651516914],[0.032535053789616,-0.11942974478006,0.14198224246502]],[[-0.11050412803888,-0.15152654051781,-0.02997207082808],[0.0063016768544912,0.10903004556894,0.16576524078846],[0.044922038912773,0.042917281389236,0.033256746828556]],[[-0.038661159574986,0.0080961128696799,-0.031552009284496],[-0.0099811144173145,0.067520469427109,0.076407171785831],[0.05172261595726,-0.0052589499391615,-0.079869091510773]],[[0.0034827615600079,-0.022289065644145,-0.04807598516345],[0.012412140145898,-0.15800298750401,-0.044692192226648],[0.017050148919225,0.026000902056694,0.094775095582008]],[[-0.0094189764931798,-0.04470581188798,0.004670100286603],[-0.13245815038681,0.032532993704081,-0.02568956092],[-0.0024218019098043,-0.10741280764341,0.034854162484407]],[[-0.059007558971643,0.03994507342577,0.016759905964136],[-0.020804360508919,0.074074782431126,0.26819759607315],[0.010788508690894,-0.12396489083767,0.044873341917992]],[[0.012341029942036,-0.076103575527668,-0.0026354249566793],[0.048788525164127,0.028401145711541,-0.02992875315249],[-0.023787776008248,0.066652685403824,-0.0064127659425139]],[[-0.020060895010829,-0.0010134088806808,0.0067283851094544],[-0.014123202301562,-0.047991551458836,0.056671816855669],[-0.057415686547756,-0.020339585840702,0.0092934938147664]],[[-0.0033378899097443,-0.055215243250132,0.059125296771526],[-0.010156237520278,0.058698642998934,-0.0086190225556493],[-0.016517160460353,-0.030877938494086,-0.010926096700132]],[[-0.11053415387869,-0.020907314494252,-0.049098022282124],[-0.0077178506180644,-0.214380890131,0.1117043569684],[-0.12385295331478,0.11878648400307,-0.073050476610661]],[[-0.0093935998156667,0.050786554813385,0.06080761924386],[-0.00065437162993476,0.045676685869694,0.065608955919743],[0.019248146563768,-0.087887853384018,-0.045687843114138]],[[-0.13822671771049,0.029031086713076,-0.1401688605547],[0.038026049733162,-0.050587255507708,0.047099936753511],[0.033554054796696,0.054695580154657,0.020254591479897]],[[0.0087532801553607,0.044705748558044,-0.0031618860084563],[0.11425945162773,0.033880744129419,0.0017501760739833],[-0.043371982872486,0.086926393210888,0.0094137731939554]],[[0.081522867083549,-0.013771979138255,-0.013981262221932],[-0.013436110690236,0.026673778891563,-0.012467798776925],[-0.087946228682995,0.094797305762768,0.073946058750153]],[[0.076158501207829,-0.026655972003937,-0.038942914456129],[-0.0034304196015,-0.04384158924222,-0.026771483942866],[-0.05457590892911,-0.026785282418132,-0.067394554615021]],[[-0.0024312348105013,-0.0044317552819848,-0.1396768540144],[0.022397167980671,-0.063529185950756,-0.10362602770329],[-0.032086368650198,-0.01330397836864,0.025062300264835]],[[0.023826533928514,-0.028084233403206,-0.028274411335588],[0.1148706972599,-0.043797966092825,0.029706696048379],[-0.061172474175692,0.071140080690384,-0.044629268348217]],[[-0.097295887768269,-0.006520779337734,0.036947079002857],[-0.03346586227417,-0.029691364616156,0.12168900668621],[-0.012042846530676,-0.056270141154528,-0.021655639633536]],[[0.13249187171459,-0.035855572670698,-0.049786001443863],[0.041072890162468,0.088598802685738,0.057102341204882],[0.084120117127895,0.021283034235239,-0.073587127029896]],[[-0.049635402858257,0.014867178164423,0.057103291153908],[-0.065393783152103,-0.035243730992079,-0.095734544098377],[0.008314655162394,0.073465950787067,0.044414192438126]],[[0.029269954189658,0.01514870673418,0.12834538519382],[-0.020954709500074,-0.037775661796331,-0.044331632554531],[-0.090349204838276,-0.073735512793064,0.0040821507573128]],[[-0.10723303258419,-0.0017213847022504,-0.070035606622696],[-0.0070805717259645,-0.014514246024191,-0.0050551104359329],[-0.033468384295702,-0.048842210322618,0.02084712125361]],[[-0.050201997160912,-0.054541569203138,0.0059389588423073],[-0.051571276038885,-0.0029496792703867,0.0073923519812524],[0.068468123674393,-0.13946585357189,-0.018018407747149]],[[-0.040283817797899,0.0381836630404,-0.063120886683464],[0.034397833049297,-0.029987998306751,0.10099533945322],[-0.14806154370308,0.063092112541199,-0.13487415015697]],[[0.10440720617771,-0.057006571441889,0.027684900909662],[0.039215039461851,0.013305415399373,-0.065123200416565],[0.12279868125916,-0.016888460144401,-0.0038716399576515]],[[0.067648015916348,0.019408890977502,-0.0089114727452397],[0.0041987053118646,0.036463588476181,0.0086915418505669],[-0.0035399980843067,0.077226601541042,-0.033589456230402]],[[0.011063085868955,-0.043322961777449,0.094003468751907],[0.026660354807973,-0.13131560385227,-0.08620498329401],[0.034667003899813,-0.031394705176353,-0.075160682201385]],[[0.096755802631378,-0.059518586844206,-0.13669706881046],[-0.15738689899445,-0.067588150501251,0.0077971732243896],[-0.14682173728943,0.08544360101223,-0.036361198872328]],[[-0.053509425371885,-0.058064166456461,0.028063822537661],[0.033260811120272,-0.066653303802013,0.0083914687857032],[-0.10555189102888,0.22173389792442,-0.012830910272896]],[[0.017212094739079,-0.016746580600739,0.00067671429133043],[-0.012977562844753,-0.065207451581955,-0.16188597679138],[-0.0019487772369757,0.013986825942993,-0.074456766247749]],[[0.013307185843587,-0.028362272307277,-0.045263189822435],[0.052882190793753,0.069405771791935,-0.0074747442267835],[-0.05451375618577,0.038398362696171,0.071707397699356]],[[0.0074951965361834,-0.057563126087189,-0.029047377407551],[0.054304763674736,-0.095827206969261,-0.042191732674837],[-0.070431984961033,0.13733400404453,-0.07597478479147]],[[-0.032231941819191,0.0871761739254,0.10779468715191],[-0.08785692602396,-0.068961150944233,-0.086838513612747],[-0.12515437602997,0.15174548327923,0.0078617697581649]],[[0.092377975583076,-0.054457020014524,-0.044697005301714],[0.045431219041348,-0.036814395338297,-0.0055124638602138],[-0.031272139400244,0.082278542220592,-0.034120157361031]],[[-0.0027687430847436,0.0087985303252935,0.087660990655422],[-0.032381657510996,-0.054281465709209,0.057309713214636],[0.07387763261795,-0.08103459328413,0.012436340562999]],[[-0.092953033745289,-0.035038311034441,0.10418977588415],[0.027872361242771,-0.093040868639946,-0.074785158038139],[0.036829959601164,0.093671463429928,-0.028334518894553]],[[-0.10432858020067,-0.015975262969732,0.0069727106019855],[-0.011777495965362,-0.018788116052747,0.056580010801554],[-0.069212228059769,-0.0038086550775915,0.024443643167615]],[[0.12771479785442,-0.10541670769453,-0.079550452530384],[-0.17353394627571,0.049118872731924,0.017013570293784],[0.077024713158607,-0.010602571070194,0.042761899530888]],[[-0.069309361279011,-0.10961753875017,-0.018694398924708],[-0.12551242113113,-0.032094828784466,-0.001358546782285],[-0.087315335869789,-0.071584448218346,0.007919711060822]],[[-0.16282640397549,0.054126061499119,-0.11501848697662],[0.11231575906277,0.0026479319203645,0.010366388596594],[-0.15067629516125,0.071488462388515,-0.13157667219639]],[[-0.027063246816397,0.021196836605668,0.059064846485853],[-0.027842616662383,-0.10183694958687,0.025259215384722],[-0.021337052807212,-0.081487357616425,-0.054324500262737]],[[0.061524838209152,0.075511209666729,-0.029649589210749],[0.046973831951618,-0.016395140439272,0.063710607588291],[-0.12158577144146,0.0044099562801421,-0.085682742297649]],[[0.1044242978096,0.038434948772192,0.049218468368053],[-0.15479543805122,-0.087408013641834,-0.0020209481008351],[-0.084827214479446,0.13671244680882,0.05032466724515]],[[-0.0031082949135453,-0.059709019958973,-0.0051625706255436],[-0.014092051424086,-0.013622963801026,-0.11317930370569],[0.12767282128334,0.0072343656793237,0.029740579426289]],[[0.037899307906628,0.038252122700214,0.027530323714018],[-0.049138959497213,0.032943796366453,0.020842874422669],[0.029816193506122,0.093046545982361,-0.040819197893143]],[[-0.10725764930248,0.055018492043018,-0.097158409655094],[0.0055689192377031,0.052306182682514,-0.051352344453335],[7.6163589255884e-05,0.052301529794931,-0.047904320061207]],[[-0.080175079405308,0.0028329382184893,-0.084681443870068],[0.04429092258215,0.028955286368728,-0.051600553095341],[-0.072746828198433,-0.16427928209305,-0.013334397226572]],[[-0.065662279725075,-0.045342091470957,0.036853846162558],[0.054696287959814,-0.036890979856253,-0.045469626784325],[0.06764804571867,-0.037943430244923,-0.01509711984545]],[[-0.0080030793324113,-0.0060115871019661,-0.013895655050874],[-0.02253277041018,-0.011252316646278,0.068134039640427],[-0.01945566944778,0.071192838251591,0.017593093216419]],[[0.015835676342249,0.042829614132643,0.017299327999353],[-0.069861106574535,-0.017693568021059,-0.014177232049406],[0.0047622076235712,-0.0030203433707356,0.03339359909296]],[[0.031600803136826,0.089939944446087,-0.018529240041971],[-0.053217813372612,-0.088605299592018,-0.053587272763252],[-0.0032427040860057,-0.14557057619095,0.04072929173708]],[[-0.21530754864216,0.13862040638924,-0.1126930564642],[0.12908758223057,-0.024626333266497,0.14142096042633],[-0.057500012218952,0.022986993193626,-0.11530355364084]],[[-0.079551517963409,0.13400383293629,-0.062828339636326],[0.04544398188591,-0.079205587506294,0.0094593288376927],[-0.0010531791485846,0.10144160687923,-0.013348643667996]],[[-0.065329387784004,0.0392648242414,-0.041850943118334],[0.017052467912436,-0.051828466355801,0.11716120690107],[-0.037328016012907,0.015460847876966,-0.012086007744074]],[[-0.022446770220995,-0.08108015358448,-0.011928473599255],[-0.075991123914719,-0.019713884219527,-0.053105026483536],[-0.043275080621243,0.056584659963846,-0.07312735170126]],[[0.058394219726324,-0.12076515704393,-0.014530133455992],[-0.088600538671017,-0.11631380021572,-0.082420878112316],[0.04073279723525,0.10904628038406,-0.0072335251607001]],[[-0.040787361562252,-0.10165361315012,-0.11513874679804],[0.072012417018414,0.030882326886058,-0.01053917221725],[-0.044780123978853,0.021064668893814,-0.090789116919041]],[[-0.0197749491781,-0.0094502940773964,0.067830950021744],[0.0028451250400394,-0.020845059305429,-0.039485309273005],[0.027808275073767,0.0051627438515425,-0.05887058749795]],[[0.029280977323651,0.020545326173306,0.035460259765387],[-0.051183886826038,0.076450034976006,0.068369433283806],[0.030748341232538,-0.068912573158741,-0.069847136735916]],[[0.026652913540602,-0.0086551122367382,0.16397516429424],[-0.069849170744419,-0.074551291763783,-0.06251235306263],[-0.074548035860062,-0.14799897372723,0.078431680798531]],[[0.069663010537624,0.0067657218314707,-0.027445152401924],[-0.1369437277317,-0.067031718790531,-0.00092186516849324],[-0.0048104948364198,-0.081760950386524,0.048941511660814]],[[0.20496490597725,-0.064859241247177,-0.039694707840681],[-0.044315326958895,-0.027721023187041,-0.011166810058057],[-0.26957193017006,0.054210852831602,-0.016746351495385]],[[-0.051253467798233,-0.11969179660082,-0.0052457684651017],[-0.035129062831402,-0.007931181229651,0.071334563195705],[-0.0090318908914924,-0.1013662442565,0.023876558989286]],[[-0.048050753772259,0.089440152049065,-0.12591668963432],[-0.025304108858109,0.052792020142078,0.12953509390354],[-0.13434456288815,-0.0079272128641605,0.10225372761488]]],[[[-0.021523583680391,-0.17673316597939,0.023536322638392],[0.084202527999878,-0.083705313503742,0.013164322823286],[0.045942693948746,0.077552951872349,-0.093216963112354]],[[-0.026799943298101,0.070275977253914,-0.055520541965961],[-0.097557447850704,0.061436522752047,0.026086181402206],[-0.025397883728147,0.022136330604553,0.017456889152527]],[[-0.033175334334373,0.079325631260872,0.073120042681694],[0.028493294492364,-0.020731288939714,-0.0072283260524273],[-0.064276188611984,0.043709572404623,0.11643529683352]],[[0.053143329918385,-0.033448856323957,0.043305311352015],[-0.10902604460716,0.041296970099211,0.048215869814157],[0.095600113272667,0.057682480663061,-0.075252115726471]],[[0.049983579665422,-0.051211949437857,0.063656851649284],[-0.070725083351135,0.03578994423151,-0.058503217995167],[-0.038314998149872,0.0047516850754619,0.060836616903543]],[[0.021079724654555,0.025040427222848,0.005223685875535],[0.10297782719135,-0.0034762416034937,0.12143605202436],[0.095429003238678,0.11749327927828,-0.039821412414312]],[[0.046337798237801,0.020425647497177,-0.036640968173742],[-0.048714365810156,-0.041590832173824,0.11298218369484],[-0.020402390509844,-0.038279190659523,-0.088448539376259]],[[0.041760988533497,-0.020541962236166,-0.0058806668967009],[0.046476475894451,-0.060024566948414,-0.097115457057953],[-0.0061049410142004,0.031879533082247,-0.010142632760108]],[[0.019591050222516,0.0022528728004545,-0.024602266028523],[-0.030841697007418,0.022048512473702,-0.0055572097189724],[0.0034922850318253,0.023742899298668,-0.005216218996793]],[[-0.069544963538647,0.095243372023106,0.014431303367019],[-0.14686557650566,-0.066096790134907,-0.078970827162266],[0.082080915570259,0.106011711061,0.035060659050941]],[[-0.034649208188057,-0.015064806677401,-0.066292218863964],[-0.040030222386122,0.035192813724279,-0.0087116165086627],[-0.028556376695633,-0.056553769856691,0.049081586301327]],[[0.0032568811438978,-0.11834454536438,-0.041493453085423],[0.077588848769665,-0.066052280366421,0.02825491130352],[-0.08086509257555,0.099161252379417,-0.0026890968438238]],[[0.04694876074791,0.077375322580338,0.0012792160268873],[0.098894506692886,-0.11597916483879,0.026572648435831],[0.067031338810921,-0.05589360371232,0.015501524321735]],[[-0.042016204446554,-0.016366163268685,0.0030055078677833],[-0.071517527103424,-0.058789566159248,0.086426332592964],[0.1262165158987,0.047111559659243,-0.044358555227518]],[[0.031307134777308,-0.0054753036238253,0.054151516407728],[-0.085275374352932,-0.077600099146366,0.076250217854977],[-0.019895758479834,0.04122269526124,0.024978062137961]],[[0.0044949986040592,0.033703982830048,0.043369125574827],[0.043178860098124,0.019386444240808,-0.13955074548721],[-0.035056091845036,-0.08121994882822,-0.044403247535229]],[[-0.053911808878183,-0.013383182696998,-0.088887490332127],[-0.20725321769714,-0.031978491693735,0.048869602382183],[-0.0084605263546109,0.076528035104275,0.04805526137352]],[[0.014003249816597,-0.072030499577522,0.094414994120598],[-0.039832636713982,-0.09781314432621,-0.0083370562642813],[0.010538702830672,-0.059826634824276,-0.020433768630028]],[[0.098314471542835,-0.028247831389308,0.053032521158457],[0.069712989032269,0.00037524270010181,-0.023895900696516],[0.0058708898723125,-0.044699292629957,-0.14152218401432]],[[-0.075718782842159,-0.040545165538788,0.034960296005011],[-0.020938489586115,0.010720883496106,0.076073363423347],[0.02531573548913,0.14568255841732,0.035260852426291]],[[-0.10101199150085,-0.026585241779685,-0.095507219433784],[0.088405065238476,0.0041891043074429,-0.027035446837544],[0.015922693535686,0.034107893705368,0.069269552826881]],[[-0.12811666727066,0.064182579517365,0.12939096987247],[-0.13007970154285,0.015659404918551,-0.0013328568311408],[-0.0017774448497221,-0.074988275766373,-0.0021864997688681]],[[0.00375777320005,-0.027436897158623,-0.10621988773346],[-0.053307648748159,-0.059572298079729,-0.025340305641294],[0.057738695293665,-0.036623556166887,-0.046735055744648]],[[-0.014433402568102,-0.022727020084858,0.089706256985664],[0.016963228583336,-0.1374329328537,0.10652175545692],[0.006619046907872,-0.13274198770523,0.0028659503441304]],[[-0.10057305544615,-0.19387851655483,-0.15675567090511],[0.13685743510723,0.057312946766615,0.11686058342457],[-0.073002986609936,-0.00014516453666147,0.13936933875084]],[[-0.019370321184397,0.073217779397964,-0.019602289423347],[-0.069989778101444,-0.097398824989796,-0.12024231255054],[-0.030693324282765,0.19587697088718,-0.084677897393703]],[[-0.1169750392437,-0.03818541392684,-0.2136507332325],[-0.031625065952539,0.059617202728987,-0.045761812478304],[-0.021806431934237,0.12538230419159,-0.10745456069708]],[[-0.033166229724884,-0.05893163010478,0.08869481831789],[-0.16800078749657,0.048546742647886,0.020168162882328],[0.092508912086487,0.0086138201877475,-0.045933093875647]],[[-0.077098995447159,0.042581241577864,0.15186198055744],[-0.071998335421085,-0.062559582293034,-0.067446865141392],[0.059031266719103,0.039029017090797,0.06466706097126]],[[0.046906322240829,-0.19144526124001,0.10617778450251],[-0.071186937391758,-0.059854879975319,-0.020760891959071],[-0.10297357290983,0.08795303106308,0.053188033401966]],[[-0.12671807408333,-0.10908663272858,-0.13224194943905],[0.12014517188072,0.10692787915468,-0.037078808993101],[0.054307606071234,0.0036601487081498,-0.056074026972055]],[[-0.15747539699078,0.018251851201057,0.085679069161415],[0.011030843481421,0.0040574907325208,0.050787683576345],[0.028159838169813,0.054852448403835,0.022781033068895]],[[0.053284768015146,0.1255404651165,-0.023084502667189],[-0.00023348881222773,0.063238404691219,-0.044904604554176],[0.044195979833603,0.042968187481165,-0.069410689175129]],[[-0.070801347494125,-0.1146824657917,-0.023289686068892],[-0.094295755028725,0.0064194877631962,-0.16998772323132],[0.029946578666568,0.0072571439668536,-0.034155249595642]],[[0.052661195397377,0.014930054545403,-0.00067790859611705],[-0.075463838875294,-0.12942603230476,0.0082065183669329],[0.11068672686815,-0.062622055411339,-0.02746706455946]],[[-0.13624764978886,0.021273851394653,-0.054265502840281],[-0.15151600539684,0.10340955108404,0.034331802278757],[-0.093425109982491,0.077601067721844,-0.012306856922805]],[[-0.11244105547667,-0.001882131327875,-0.0060497941449285],[0.051458142697811,-0.052124489098787,-0.0055361911654472],[-0.0040735797956586,-0.051495097577572,-0.0035909223370254]],[[-0.044196851551533,-0.012138216756284,0.037434663623571],[0.062846772372723,0.082451067864895,0.019824393093586],[-0.0055011147633195,-0.028291869908571,0.039793685078621]],[[-0.13650105893612,0.077046349644661,0.10034038126469],[0.093187883496284,0.1500222235918,0.067976146936417],[0.01756020821631,0.12793165445328,-0.044557746499777]],[[0.047474458813667,-0.024880323559046,0.046096939593554],[-0.012209363281727,0.099626928567886,-0.10194803029299],[0.040250025689602,0.071337223052979,0.0032176156528294]],[[-0.055524714291096,-0.069246210157871,-0.053193192929029],[0.0086411843076348,-0.031204791739583,-0.0089587587863207],[-0.033894345164299,-0.085219539701939,0.026941692456603]],[[-0.18167072534561,-0.026145197451115,0.098896898329258],[0.022417267784476,0.050888378173113,-0.028681132942438],[0.072543025016785,0.020387975499034,0.008488685823977]],[[-0.15761010348797,-0.20496740937233,0.048737678676844],[-0.078655213117599,0.024749267846346,0.015102863311768],[-0.026923671364784,-0.058328062295914,0.013159989379346]],[[-0.12162333726883,0.0020497392397374,-0.0076836012303829],[0.047958739101887,0.067707158625126,0.029720038175583],[-0.048199184238911,-0.069042660295963,0.028466993942857]],[[-0.080702841281891,-0.062245294451714,0.00019254672224633],[0.0059832176193595,-0.038072302937508,-0.026854228228331],[-0.075607106089592,-0.056626264005899,0.14784853160381]],[[-0.068475335836411,-0.063330106437206,0.15223217010498],[-0.062159638851881,-0.023175749927759,0.16114746034145],[0.072749555110931,-0.080669440329075,0.016593802720308]],[[-0.24204643070698,-0.071648865938187,0.00095379102276638],[-0.075729086995125,-0.080325111746788,-0.081969410181046],[-0.049385145306587,-0.066277928650379,0.040433194488287]],[[-0.13136111199856,0.049456808716059,-0.033796198666096],[-0.19169498980045,-0.013357755728066,0.044578835368156],[-0.011502105742693,0.08143824338913,-0.019361786544323]],[[-0.0025261205155402,0.019468422979116,-0.21890816092491],[0.021747788414359,0.026032151654363,0.064814209938049],[-0.04003219306469,0.11305183917284,-0.00011434190673754]],[[-0.061297748237848,-0.01480966899544,0.11763828247786],[0.03871826082468,-0.036273203790188,0.039551921188831],[-0.086051657795906,0.037159584462643,-0.012233067303896]],[[-0.050570860505104,0.041078150272369,0.10781303048134],[-0.010373354889452,-0.038537181913853,-0.12634988129139],[-0.051512721925974,-0.035876475274563,-0.010189037770033]],[[-0.060954034328461,0.061206188052893,0.002010359428823],[0.039837531745434,0.10200599581003,-0.1005332171917],[0.033771108835936,0.051299497485161,0.010770893655717]],[[0.070168755948544,0.030726367607713,-0.16083268821239],[0.0602424480021,0.16544122993946,-0.0013866185909137],[0.016636624932289,-0.08675117790699,0.12413428723812]],[[0.016615159809589,0.011051746085286,0.056554041802883],[-0.067863754928112,0.15013863146305,0.095487862825394],[0.11369137465954,-0.0028501297347248,0.26518785953522]],[[0.014654575847089,0.030460089445114,0.06700836122036],[0.039153411984444,-0.053525023162365,0.062099285423756],[-0.13933520019054,-0.04557428508997,-0.099518731236458]],[[-0.062608823180199,-0.086159534752369,0.013786026276648],[-0.014806072227657,0.036628939211369,0.010792019777],[-0.078274644911289,-0.058367721736431,-0.062348462641239]],[[-0.071621380746365,-0.0068671256303787,-0.18708653748035],[0.015680059790611,-0.058234702795744,-0.13996586203575],[-0.041161350905895,-0.051195070147514,0.14888216555119]],[[0.15527983009815,-0.0021027280017734,-0.051635198295116],[-0.10259966552258,0.073326073586941,-0.18300272524357],[-0.014522764831781,0.066663853824139,0.035841416567564]],[[0.14464017748833,0.076430752873421,-0.058951839804649],[0.046200279146433,-0.023386165499687,-0.11744692921638],[-0.045587860047817,0.12412013858557,-0.012669151648879]],[[-0.015039888210595,-0.14100658893585,0.0055764117278159],[0.039951127022505,0.083128742873669,0.2340994477272],[-0.019391868263483,-0.053351283073425,0.018892051652074]],[[0.11032623797655,-0.1376890540123,-0.054392721503973],[0.025074055418372,-0.023891882970929,0.057540569454432],[0.0013370694359764,0.067483127117157,0.093999519944191]],[[-0.017341643571854,-0.14641697704792,-0.022360950708389],[0.057533904910088,0.10692820698023,0.051265310496092],[-0.079239226877689,-0.030068250373006,0.062386736273766]],[[-0.05094887316227,0.070754900574684,0.11248084902763],[0.0055282437242568,0.024899855256081,0.025445597246289],[0.0037792541552335,-0.063817113637924,0.046814251691103]],[[0.0502706207335,-0.014990271069109,0.12302585691214],[0.089061595499516,-0.091172754764557,-0.099401339888573],[0.13572427630424,-0.0021687659900635,-0.085161976516247]]],[[[-0.077522121369839,-0.072915874421597,-0.042038396000862],[-0.089519195258617,0.030568378046155,0.032517656683922],[0.052237395197153,-0.020620502531528,0.011450033634901]],[[0.062739938497543,-0.046332135796547,0.093564935028553],[-0.014227061532438,-0.0023210963699967,-0.096450731158257],[-0.10882147401571,-0.14612306654453,-0.050710469484329]],[[-0.06557922065258,-0.069527328014374,-0.056108769029379],[-0.070660747587681,-0.065483018755913,-0.11694674193859],[0.04335543513298,-0.057975374162197,-0.04560337215662]],[[-0.025834426283836,0.02959050424397,-0.017533348873258],[-0.015183672308922,-0.061534009873867,-0.019764179363847],[-0.019498506560922,-0.018075931817293,-0.0019407420186326]],[[-0.10413853824139,0.034596152603626,-0.018459044396877],[0.024070145562291,-0.0065053873695433,-0.001172382151708],[0.039003241807222,-0.11053072661161,0.074757918715477]],[[0.19690242409706,0.006028737872839,-0.013193607330322],[-0.017936524003744,0.22275079786777,-0.11409420520067],[0.099231086671352,0.077193506062031,0.097690746188164]],[[-0.0036791935563087,-0.14012968540192,-0.050114311277866],[-0.093345962464809,-0.10349277406931,0.085195280611515],[-0.084955342113972,-0.17168600857258,0.067978754639626]],[[-0.0099793989211321,0.042838506400585,-0.047291185706854],[0.039363816380501,0.0090497294440866,-0.034479603171349],[-0.11891031265259,0.012974311597645,-0.15398539602757]],[[0.11273986846209,0.076486691832542,0.027346836403012],[-0.03403352200985,0.016012506559491,-0.046136494725943],[-0.027408489957452,-0.05300659313798,-0.084385432302952]],[[0.091006197035313,-0.082486189901829,-0.0074495282024145],[0.09664361923933,0.14220413565636,-0.020948680117726],[-0.067345336079597,0.027440080419183,0.034399472177029]],[[-0.011439653113484,-0.066124953329563,0.057607404887676],[0.0013833570992574,0.063889592885971,-0.023657293990254],[-0.0019254230428487,-0.092603474855423,-0.087865941226482]],[[-0.079876430332661,-0.084674842655659,-0.064601898193359],[0.024895943701267,0.05936586484313,-0.12587234377861],[-0.0067196660675108,-0.059411220252514,-0.090836271643639]],[[-0.076854020357132,-0.013788831420243,0.005744663067162],[-0.014651110395789,-0.10462697595358,-0.034258686006069],[0.040057554841042,0.00028939050389454,0.028442459180951]],[[-0.077803745865822,-0.09059389680624,-0.074233725667],[0.055509179830551,-0.0098312282934785,-0.030988935381174],[0.024954475462437,-0.025319963693619,-0.012421241030097]],[[-0.086147479712963,-0.050053406506777,-0.077392414212227],[-0.026954088360071,0.00034975045127794,0.15999031066895],[-0.093208946287632,-0.071828715503216,-0.13044089078903]],[[0.0017829238204286,0.03031262382865,-0.04863454028964],[0.010274901986122,0.07547839730978,0.00028565863613039],[0.090965427458286,0.0045656492002308,-0.030348040163517]],[[0.15208268165588,-0.077697113156319,-0.11683686077595],[-0.034694347530603,-0.12613081932068,0.066007234156132],[-0.34645485877991,-0.24735583364964,0.070005163550377]],[[-0.0077763171866536,0.14833322167397,0.052894715219736],[-0.012960490770638,0.044062923640013,-0.090136513113976],[-0.16040694713593,-0.075007617473602,0.06183610484004]],[[0.065498046576977,0.024476367980242,-0.0084489108994603],[0.15831495821476,0.070714555680752,-0.067813090980053],[0.15142914652824,0.026391167193651,-0.059494648128748]],[[-0.022502727806568,0.10675742477179,0.067501790821552],[0.029398709535599,-0.024381810799241,0.022291822358966],[-0.044080302119255,0.020232569426298,0.034699477255344]],[[0.023042419925332,0.030215920880437,-0.039316814392805],[0.036537896841764,0.078309863805771,-0.17699670791626],[-0.15467359125614,-0.08488055318594,0.026803197339177]],[[-0.1531897187233,-0.16410160064697,0.061354756355286],[-0.11726504564285,-0.097471997141838,0.075849071145058],[0.078969903290272,-0.0073922672308981,0.075170785188675]],[[-0.084865510463715,0.082062885165215,0.052248030900955],[0.059553429484367,0.040722977370024,0.12558288872242],[0.039614349603653,-0.096343658864498,-0.027871169149876]],[[0.11593889445066,-0.048758756369352,-0.10372546315193],[-0.13129456341267,0.14693175256252,0.0021844517905265],[-0.13838535547256,-0.057676084339619,0.062862738966942]],[[-0.051454816013575,0.019833752885461,-0.098587177693844],[-0.042464252561331,0.017781408503652,-0.061913184821606],[-0.11979181319475,0.13024991750717,0.17072035372257]],[[0.095422975718975,0.004193754401058,-0.015417650341988],[0.0050840335898101,-0.10356735438108,-0.18347625434399],[-0.11213797330856,-0.16550926864147,-0.18799506127834]],[[0.091626681387424,-0.11353337019682,-0.061940312385559],[-0.012820050120354,-0.00051279971376061,0.02601851336658],[0.072210125625134,0.11549353599548,0.07525347173214]],[[-0.0848458558321,-0.092755265533924,0.06823306530714],[-0.10344787687063,-0.10675192624331,0.1688955873251],[0.018227586522698,0.14656925201416,-0.0128487739712]],[[0.059286005795002,-0.064061835408211,-0.0029940395615995],[0.031720813363791,-0.060280475765467,-0.044803380966187],[-0.089902818202972,-0.0040448727086186,0.042293414473534]],[[-0.20216244459152,-0.037505365908146,-0.13397170603275],[-0.091685980558395,0.0078740920871496,0.050639655441046],[0.059027243405581,0.017840405926108,0.17772653698921]],[[0.16530084609985,-0.028624659404159,0.034884914755821],[0.11055030673742,0.092560030519962,-0.021513644605875],[-0.085084289312363,-0.16061295568943,-0.0093328151851892]],[[0.024105966091156,0.058027543127537,0.12535311281681],[-0.035897377878428,-0.018573669716716,0.068752244114876],[0.045963406562805,0.010882388800383,-0.098396889865398]],[[0.069375641644001,0.05081919208169,0.14156590402126],[0.11210380494595,0.068596661090851,0.032586596906185],[0.1001213118434,-0.044636763632298,-0.071054764091969]],[[-0.10043530166149,-0.052835337817669,-0.10291573405266],[0.035520292818546,-0.088117614388466,-0.043932449072599],[0.0059820069000125,-0.034958083182573,-0.004289691336453]],[[-0.086115770041943,0.074406988918781,-0.020293755456805],[0.031895086169243,0.041809774935246,0.046205926686525],[-0.050346422940493,-0.048759467899799,-0.02614364773035]],[[0.021205144003034,-0.076175346970558,-0.099600315093994],[0.083373390138149,-0.063701063394547,-0.03584698587656],[0.045991413295269,0.061265837401152,0.092223450541496]],[[-0.0043892087414861,0.034052416682243,0.11048995703459],[0.026085847988725,0.071050770580769,0.01438644900918],[0.1253304630518,0.095512472093105,-0.02723472006619]],[[0.0044241724535823,0.056613232940435,0.023402620106936],[0.03163443878293,-0.0071998289786279,-0.0029134147334844],[0.040574699640274,-0.23201136291027,-0.10475730150938]],[[-0.011341963894665,-0.00796561781317,-0.0065082237124443],[-0.021521359682083,0.03931076079607,-0.035670261830091],[-0.074794851243496,0.019064910709858,-0.060575060546398]],[[0.014803063124418,0.027155876159668,0.044390298426151],[0.011106981895864,0.097535841166973,0.014473311603069],[0.064227536320686,0.11185776442289,-0.023049786686897]],[[0.12121875584126,-0.04005154967308,-0.075571797788143],[-0.031140213832259,-0.045158840715885,-0.068832561373711],[0.034442387521267,0.15759232640266,0.064121901988983]],[[-0.021991342306137,-0.11962507665157,-0.048452254384756],[-0.076570115983486,-0.0070464042946696,-0.080631539225578],[-0.17088600993156,-0.018910519778728,-0.0062967902049422]],[[-0.099257253110409,-0.14443975687027,-0.084529280662537],[-0.15314802527428,-0.0026671858504415,0.064512096345425],[-0.095371253788471,-0.036511849611998,-0.057152047753334]],[[-0.044657163321972,-0.046715345233679,0.0053758486174047],[-0.0027282831724733,0.067754946649075,0.057502921670675],[0.066311277449131,-0.061307087540627,0.13308790326118]],[[-0.13913352787495,-0.057198457419872,-0.0097448332235217],[-0.22102779150009,-0.0024876126553863,0.010316273197532],[0.0055111716501415,0.067955203354359,0.010115062817931]],[[-0.065484128892422,0.068363413214684,0.10959303379059],[-0.037985350936651,0.040990643203259,0.041365515440702],[-0.14372599124908,0.090742595493793,-0.063055925071239]],[[0.066229693591595,-0.017618732526898,0.10700714588165],[0.01480371505022,-0.022777397185564,-0.13160569965839],[-0.022479604929686,-0.01383531652391,-0.063667565584183]],[[-0.061379376798868,0.0139698991552,0.0049603646621108],[-0.0064209327101707,0.015195475891232,-0.082538038492203],[0.071713715791702,-0.056104492396116,-0.05602990463376]],[[0.030775399878621,0.027126625180244,-0.030513383448124],[0.046994425356388,0.035426191985607,-0.1845733076334],[-0.071548119187355,-0.12202139943838,-0.090785562992096]],[[-0.097301602363586,-0.12762045860291,0.023280108347535],[-0.047093119472265,0.0093537317588925,0.016408033668995],[-0.0062868651002645,0.10334353893995,0.089207321405411]],[[-0.045455511659384,-0.061322253197432,-0.03615353628993],[-0.042612563818693,-0.063859902322292,-0.080170392990112],[0.018440321087837,-0.044720415025949,-0.00037118588807061]],[[0.023110512644053,-0.036360345780849,-0.10657545179129],[0.063999690115452,-0.036746460944414,-0.080859541893005],[0.049210112541914,0.22601865231991,-0.012708862312138]],[[0.1158557087183,0.019366186112165,-0.012580164708197],[0.075116224586964,-0.1315578520298,-0.1476236730814],[0.096306167542934,-0.0038768362719566,-0.0063359765335917]],[[-0.11169890314341,-0.045424144715071,-0.083747528493404],[-0.098524309694767,-0.10417829453945,0.033169902861118],[-0.1089985370636,-0.057394672185183,0.078744515776634]],[[-0.021787080913782,-0.066259644925594,-0.0052644712850451],[-0.04615581035614,-0.069808810949326,-0.0023961826227605],[-0.061169188469648,0.057356506586075,-0.15266117453575]],[[0.046670291572809,-0.20496575534344,-0.086770974099636],[-0.018424905836582,-0.13091485202312,-0.055827774107456],[-0.033720910549164,0.082896068692207,-0.032649207860231]],[[-0.04681084305048,-0.035102061927319,-0.031951740384102],[-0.12075790762901,-0.075323268771172,-0.011148194782436],[-0.12526778876781,-0.045590993016958,0.11714988201857]],[[0.010904111899436,-0.032606333494186,-0.047713257372379],[-0.073817104101181,-0.10915452241898,-0.046711880713701],[-0.083303548395634,-0.040326107293367,0.025742188096046]],[[0.063830800354481,0.0020937621593475,0.076803900301456],[0.15099866688251,0.011626582592726,-0.050478715449572],[-0.034851267933846,-0.0080386037006974,-0.018051268532872]],[[0.046870734542608,0.0063067395240068,0.013623744249344],[-0.079141065478325,0.0781085267663,-0.058165669441223],[-0.14779050648212,0.029722349718213,-0.027453178539872]],[[0.081955648958683,-0.018075868487358,0.11365875601768],[-0.18794383108616,-0.11583855748177,-0.073213838040829],[-0.097164154052734,-0.04842521622777,0.054929260164499]],[[-0.077923513948917,-0.034382168203592,-0.25970748066902],[-0.17812190949917,0.11410547792912,0.15920341014862],[0.017576269805431,-0.18365089595318,-0.13584640622139]],[[-0.1249885186553,-0.0019619141239673,-0.0032248117495328],[-0.11205379664898,-0.015523348934948,0.0076435022056103],[-0.072790779173374,-0.0096110673621297,0.065932057797909]],[[-0.001396749750711,0.093986220657825,-0.14415045082569],[-0.087888725101948,-0.2248652279377,-0.12868720293045],[-0.29396286606789,-0.041361998766661,0.065117530524731]]],[[[-0.029760304838419,-0.0021867447067052,0.043520644307137],[-0.026932027190924,0.11097390949726,-0.04131643101573],[0.05436672270298,-0.063821963965893,-0.03811427205801]],[[0.016888929530978,0.063277684152126,0.15614515542984],[-0.046521157026291,0.099560245871544,0.030902355909348],[-0.0092201540246606,0.098687686026096,-0.020017888396978]],[[0.0064313444308937,0.0036207290831953,-0.1532681286335],[0.099572837352753,-0.0063750217668712,-0.12942123413086],[0.040943201631308,-0.044888559728861,-0.11052557080984]],[[-0.022878618910909,0.070649169385433,0.015852324664593],[0.015798540785909,-0.060638226568699,-0.0079672737047076],[-0.025902548804879,-0.028522223234177,-0.061495583504438]],[[-0.00091263087233528,-0.083889156579971,0.025952350348234],[0.057922873646021,0.082907140254974,0.015963479876518],[-0.028556948527694,0.098157271742821,0.010782901197672]],[[-0.056772690266371,-0.12888893485069,0.010586351156235],[0.15826258063316,0.06273790448904,-0.13372999429703],[0.11784709990025,0.10448255389929,0.1539121568203]],[[0.016533676534891,0.10795602202415,-0.10724041610956],[0.022306038066745,-0.061921756714582,0.024007085710764],[-0.034278631210327,-0.030991353094578,-0.020217142999172]],[[0.071369625627995,0.015755901113153,0.01550873555243],[-0.045998778194189,0.0064753144979477,-0.099121227860451],[0.0329450070858,0.075798213481903,0.032864890992641]],[[-0.00012251309817657,0.062320094555616,0.080908432602882],[0.00072860793443397,0.025367617607117,0.00029702932806686],[-0.10723815113306,-0.072357900440693,-0.013847151771188]],[[-0.046557269990444,-0.095278196036816,-0.0047200275585055],[-0.063963264226913,-0.07981164753437,-0.023511093109846],[-0.084931530058384,-0.035314060747623,-0.042171403765678]],[[0.051950875669718,0.0028847039211541,-0.067180074751377],[-0.0082255126908422,-0.022154865786433,-0.054901611059904],[0.010681284591556,0.066527098417282,-0.083983018994331]],[[-0.022339450195432,-0.00029146767337807,0.017311571165919],[-0.10025019198656,-0.037967469543219,-0.015611050650477],[-0.047527678310871,-0.01467795111239,-0.11491762846708]],[[0.084021106362343,0.051871288567781,0.087751418352127],[0.075473248958588,0.033038832247257,0.0052655036561191],[-0.049296103417873,0.028726436197758,-0.14660467207432]],[[0.0084348479285836,0.087564378976822,0.11677435785532],[-0.032520450651646,-0.07720060646534,0.027633376419544],[0.0013844028580934,-0.1123498827219,-0.15727636218071]],[[0.035324145108461,0.11309096962214,-0.035714302212],[-0.06941619515419,-0.042539145797491,-0.10885690897703],[0.089126631617546,-0.057695627212524,-0.024964369833469]],[[-0.078514195978642,-0.049245562404394,0.031853564083576],[0.0065244855359197,-0.14078825712204,0.014867751859128],[-0.058112718164921,-0.068190984427929,0.046275217086077]],[[-0.044333510100842,-0.026229526847601,0.01736512966454],[-0.011060732416809,0.0025288220494986,0.048339575529099],[-0.053168147802353,0.0096186604350805,-0.065437197685242]],[[0.040173403918743,-0.024055557325482,0.075410269200802],[-0.081133373081684,0.060987532138824,0.086277663707733],[-0.0044350596144795,0.034693092107773,0.019679287448525]],[[0.053373958915472,-0.044542215764523,-0.12737391889095],[-0.02946106530726,0.098758324980736,0.0058300131931901],[0.0083841355517507,-0.027235932648182,-0.017766090109944]],[[0.021737249568105,0.029815729707479,0.038558859378099],[-0.053580682724714,-0.084147050976753,-0.014049018733203],[0.018256912007928,0.073541350662708,-0.042370047420263]],[[0.064704239368439,0.060111310333014,0.059766732156277],[0.040824677795172,0.061795450747013,0.0061318101361394],[-0.1836472004652,-0.12935203313828,0.020709745585918]],[[-0.11362786591053,-0.14493034780025,0.029463551938534],[-0.089444935321808,-0.085828296840191,-0.14277650415897],[0.037688504904509,-0.0084075769409537,-0.0032304644118994]],[[-0.047249216586351,-0.18354766070843,-0.16976475715637],[0.012730679474771,0.056180898100138,-0.0023088769521564],[0.09290786087513,-0.032410781830549,0.017608666792512]],[[0.015476507134736,0.080524310469627,-0.080539807677269],[-0.099745966494083,-0.10712061077356,-0.08082427829504],[-0.21291933953762,-0.077708005905151,-0.0013426536461338]],[[0.10578456521034,0.21780177950859,-0.066744223237038],[-0.034300684928894,0.10023291409016,-0.025768779218197],[0.14406944811344,-0.02670538239181,0.052440572530031]],[[-0.075527764856815,0.096483930945396,-0.07170731574297],[0.038109492510557,-0.23707772791386,0.0093232719227672],[-0.08113332092762,-0.062648832798004,-0.11457723379135]],[[0.043487288057804,-0.042537599802017,-0.13421355187893],[0.020645650103688,-0.013553058728576,-0.02832892909646],[0.047054581344128,-0.021972922608256,-0.21958123147488]],[[-0.1945461332798,0.0078867431730032,0.13528747856617],[-0.16568851470947,-0.089278869330883,0.1060354039073],[-0.021311327815056,0.005690042860806,0.14177890121937]],[[0.03353276476264,0.021412536501884,0.074387669563293],[0.0020222479943186,-0.070020012557507,0.071734592318535],[-0.13446418941021,-0.034940991550684,0.046526439487934]],[[0.083369933068752,0.025802560150623,0.0096218939870596],[0.083762295544147,0.054683066904545,-0.11711059510708],[-0.019945565611124,0.045135550200939,0.061485480517149]],[[0.0037427574861795,0.0060841324739158,0.090325467288494],[-0.046928193420172,-0.0071915634907782,0.033445216715336],[-0.034849893301725,0.065143801271915,-0.025539623573422]],[[-0.10190329700708,-0.047558456659317,0.0057847923599184],[0.04042598977685,0.056994765996933,-0.00078337220475078],[-0.088841713964939,0.04916312918067,-0.0013106145197526]],[[-0.058040775358677,-0.0094167841598392,0.026214972138405],[0.044809237122536,0.075788877904415,-0.042378254234791],[0.041108552366495,0.039810132235289,-0.13372091948986]],[[0.09689174592495,0.06227670237422,-0.033585220575333],[0.079699762165546,-0.018553350120783,0.029203115031123],[0.064230941236019,0.020935591310263,-0.051434241235256]],[[-0.043900091201067,0.0077677275985479,0.095432803034782],[-0.052191223949194,0.035919349640608,0.16731119155884],[-0.053040605038404,0.030224287882447,0.071817025542259]],[[0.10854209959507,0.018745861947536,0.080622181296349],[-0.035762425512075,0.028070140630007,0.047320511192083],[-0.015962859615684,0.049489364027977,0.01594640314579]],[[-0.026498824357986,0.133151486516,-0.18086114525795],[-0.01970393769443,0.013187556527555,0.048320319503546],[0.0075585078448057,0.075808688998222,0.087578818202019]],[[-0.0035567020531744,-0.065373755991459,-0.033767085522413],[0.0057752332650125,0.011321499012411,-0.070268802344799],[-0.10461952537298,0.047120202332735,-0.037688571959734]],[[-0.018761863932014,0.05561925843358,-0.059839341789484],[-0.048212591558695,-0.12772826850414,-0.076572336256504],[-0.040797524154186,-0.031072862446308,-0.084672175347805]],[[-0.01047667209059,0.065011382102966,0.060358591377735],[-0.069443665444851,-0.036971755325794,0.070531956851482],[-0.052594166249037,-0.053842898458242,0.13336350023746]],[[-0.040632624179125,0.052108466625214,-0.0099286269396544],[0.038988243788481,0.028023775666952,0.037457145750523],[0.005503614898771,-0.040234994143248,0.11015836149454]],[[0.081911072134972,-0.01415554061532,0.028824158012867],[0.073358722031116,0.084107153117657,-0.12508916854858],[0.20518869161606,0.029049798846245,0.072086609899998]],[[-0.030922245234251,0.061476279050112,0.0037736441008747],[0.021061614155769,-0.039651554077864,-0.1020855307579],[0.037272121757269,0.02917636744678,-0.15618321299553]],[[0.1010620072484,0.0076669012196362,-0.13463063538074],[0.027763037011027,-0.019327899441123,-0.051017060875893],[0.057684130966663,0.080488570034504,-0.059687323868275]],[[-0.00011772358993767,0.033123467117548,0.020078806206584],[-0.080205015838146,0.073104918003082,0.033499367535114],[0.070448443293571,-0.019877886399627,-0.05088322609663]],[[-0.06869113445282,-0.04421229660511,-0.02870667912066],[-0.14273925125599,-0.049374010413885,-0.0066042835824192],[-0.073639273643494,-0.075953796505928,0.00045948423212394]],[[-0.020832918584347,-0.05911211296916,0.034815013408661],[0.019933370873332,-0.007962497882545,-0.0099634695798159],[-0.058985441923141,-0.026560828089714,-0.041244156658649]],[[0.057877935469151,-0.029161674901843,0.018471032381058],[0.013186356052756,0.057381447404623,0.022463427856565],[0.036401487886906,0.016709269955754,0.032459806650877]],[[0.058440674096346,-0.019319094717503,-0.057138424366713],[0.042280316352844,0.060280870646238,-0.048926994204521],[-0.061690114438534,0.016690850257874,-0.14445312321186]],[[-0.0059112389571965,-0.0310541652143,-0.097092308104038],[0.003703850787133,-0.0044067339040339,0.0069594923406839],[0.089762486517429,0.064121663570404,0.0016142962267622]],[[-0.020448436960578,0.05418161675334,-0.10873168706894],[-0.07768027484417,-0.15660078823566,-0.067447669804096],[0.016808202490211,0.012612820602953,-0.11366121470928]],[[0.006217016838491,0.0065455609001219,-0.11107558757067],[-0.0010232352651656,0.0047197733074427,-0.025183830410242],[0.018655402585864,0.13362634181976,0.043683093041182]],[[-0.038158006966114,-0.078801743686199,0.0048953155055642],[7.2854381869547e-05,-0.045899901539087,0.081759698688984],[0.0038990995381027,0.002621159888804,-0.086924761533737]],[[0.065710507333279,0.0395134575665,0.025388188660145],[0.084587678313255,0.024556187912822,0.059689648449421],[-0.083912581205368,-0.17076681554317,0.10230243951082]],[[0.024982769042253,0.04243466258049,0.077984042465687],[0.032327339053154,-0.040112968534231,0.076083958148956],[0.083765603601933,0.082730770111084,0.046471707522869]],[[0.017421683296561,0.028455669060349,0.056510251015425],[0.11633093655109,0.038574703037739,0.10917186737061],[0.013822827488184,0.02433886565268,-0.034533280879259]],[[-0.0062787397764623,-0.16328085958958,-0.00034442084142938],[-0.016118552535772,-0.061735276132822,-0.12209808081388],[-0.0047682756558061,-0.044895935803652,-0.11316274106503]],[[0.05985551327467,0.16120520234108,0.017488276585937],[0.059359099715948,0.036737561225891,-0.048081181943417],[-0.0030396236106753,0.048277158290148,-0.15101455152035]],[[0.047487337142229,-0.099644556641579,-0.02287189848721],[0.05261068791151,-0.02552555501461,-0.031346943229437],[0.14617945253849,0.013942585326731,0.031019732356071]],[[-0.11890634149313,0.056532800197601,-0.050764057785273],[-0.002269747434184,0.042893152683973,-0.021931625902653],[0.10430017113686,0.055788118392229,0.011223991401494]],[[0.066474884748459,0.024456094950438,-0.057109966874123],[0.10034397244453,-0.0086625311523676,-0.015295905061066],[0.022573608905077,0.013488791882992,-0.15420147776604]],[[-0.019753843545914,-0.081388540565968,0.18491640686989],[-0.0033494429662824,-0.031778786331415,-0.072492554783821],[-0.15854670107365,-0.06278320401907,0.087539613246918]],[[-0.050033513456583,0.036529995501041,0.060121338814497],[-0.078910991549492,-0.060544613748789,0.083926051855087],[-0.033429570496082,-0.12303749471903,0.013914153911173]],[[0.026265932247043,-0.012276680208743,0.077895611524582],[0.043274395167828,0.13095316290855,0.090450152754784],[-0.10364390164614,0.062931515276432,0.21545580029488]]],[[[0.11212545633316,0.053608518093824,0.1522218734026],[-0.061555985361338,0.080619856715202,-0.059811662882566],[0.0053324825130403,-0.078076131641865,-0.030479457229376]],[[0.081452712416649,0.13252022862434,-0.016815360635519],[-0.015927795320749,-0.015826081857085,-0.036281611770391],[0.006430062931031,-0.0001583711564308,0.027015218511224]],[[-0.040734957903624,-0.013140888884664,-0.0014145957538858],[-0.0081894574686885,0.0069529912434518,0.127949655056],[0.036492347717285,0.054478581994772,0.050739835947752]],[[0.085267871618271,0.026444477960467,-0.022386241704226],[0.0041511966846883,-0.050296097993851,-0.16635131835938],[0.044015046209097,0.06739853322506,0.099234074354172]],[[0.066202081739902,-0.029860757291317,-0.050935626029968],[-0.081056483089924,0.14721766114235,0.051460478454828],[-0.073114842176437,0.051244106143713,-0.037979952991009]],[[0.013535848818719,-0.066339746117592,0.076863743364811],[0.10090481489897,-0.084396503865719,-0.0165039524436],[0.066560462117195,-0.019989628344774,-0.061669789254665]],[[0.035004109144211,0.063873171806335,0.056433983147144],[-0.039965692907572,-0.034423731267452,-0.10028149187565],[-0.01863163523376,-0.091195523738861,0.0092151314020157]],[[-0.0048219333402812,-0.024156095460057,0.067063614726067],[0.10574331134558,-0.022059166803956,-0.096874132752419],[-0.01469543389976,0.047181434929371,-0.012940085493028]],[[-0.04645037278533,-0.12618309259415,-0.041206363588572],[0.045458991080523,0.036837186664343,0.080973222851753],[0.026113258674741,0.035197470337152,-0.038613844662905]],[[-0.16342064738274,-0.14128023386002,-0.0069731073454022],[-0.21396487951279,-0.086040616035461,0.018782766535878],[-0.1446085870266,-0.0042600082233548,-0.1263610124588]],[[0.059844966977835,0.16433711349964,0.054827630519867],[0.040122877806425,0.014386357739568,-0.021361213177443],[-0.04747911542654,-0.031060811132193,-0.096345484256744]],[[-0.05218106880784,0.0046357717365026,-0.018496464937925],[-0.028658580034971,0.078858733177185,0.062842585146427],[0.039742957800627,0.015828905627131,0.021967116743326]],[[-0.11878112703562,-0.02220412530005,0.051827847957611],[-0.0077643636614084,0.10094710439444,0.058683700859547],[0.053074575960636,0.087402507662773,0.060932941734791]],[[-0.040756244212389,-0.056142710149288,0.088185653090477],[-0.014435242861509,-0.079755619168282,-0.067446582019329],[0.019732872024179,-0.027543039992452,0.095188923180103]],[[-0.09666932374239,-0.18408228456974,0.023911502212286],[0.047517031431198,0.011603694409132,0.031646851450205],[0.003276823554188,0.080883592367172,0.094265550374985]],[[-0.12889915704727,-0.013656862080097,-0.083267763257027],[0.14787440001965,-0.014834272675216,-0.11939010024071],[0.093271687626839,0.15577602386475,-0.13248331844807]],[[0.0085947690531611,0.026097441092134,0.016196426004171],[0.013303341343999,0.032913524657488,-0.11104851961136],[0.0063602500595152,-0.01282203476876,0.047826442867517]],[[-0.049947164952755,0.016562003642321,-0.099923349916935],[0.04733369871974,-0.10685441643,0.028334725648165],[-0.063800610601902,-0.021265221759677,0.081730239093304]],[[-0.014430688694119,0.015240130014718,0.096112094819546],[0.10950114578009,0.049625005573034,0.051432050764561],[0.096071653068066,0.0028770586941391,0.0019271617056802]],[[-0.021989561617374,-0.04413016140461,-0.077830202877522],[0.027137584984303,-0.025684401392937,-0.018301459029317],[-0.13367031514645,-0.0022424007765949,0.062351763248444]],[[0.0049367644824088,-0.025363821536303,-0.042042184621096],[-0.14275602996349,-0.038711048662663,0.050274532288313],[0.039063446223736,0.049896873533726,0.1183622404933]],[[-0.062908627092838,-0.069415420293808,0.048121273517609],[0.066812232136726,0.011535899713635,0.016840944066644],[-0.024521257728338,-0.022972367703915,0.066311918199062]],[[-0.045811679214239,-0.11814096570015,-0.026623364537954],[0.12551744282246,0.048310905694962,0.18360055983067],[0.062785677611828,0.030145032331347,0.008379609324038]],[[-0.22941909730434,0.098173081874847,0.081180967390537],[0.02595179900527,0.026837041601539,-0.067782931029797],[0.03080634586513,0.14218929409981,0.22101294994354]],[[-0.14210318028927,-0.13743571937084,-0.083974659442902],[-0.061600439250469,0.076852917671204,-0.079933047294617],[0.0053950138390064,-0.026356063783169,-0.022312838584185]],[[-0.074365131556988,-0.015069702640176,-0.043552149087191],[0.019906749948859,0.071989268064499,-0.095584191381931],[-0.050308208912611,-0.018182620406151,0.029775457456708]],[[-0.020630836486816,-0.19772432744503,-0.013602882623672],[-0.021072562783957,-0.021002639085054,-0.011711678467691],[-0.086740717291832,-0.086346812546253,0.1047023460269]],[[-0.11794239282608,0.0012874335516244,-0.1228649020195],[0.010322403162718,-0.0041681341826916,-0.13156542181969],[0.046954095363617,0.045563708990812,-0.0076672974973917]],[[-0.079634785652161,0.089173920452595,0.046601340174675],[-0.15164239704609,-0.019287647679448,-0.007905088365078],[-0.13491170108318,0.045432575047016,-0.10700040310621]],[[-0.097673043608665,-0.15863999724388,-0.052346412092447],[-0.03076247125864,-0.096618741750717,0.088533453643322],[0.0085942037403584,-0.091667897999287,0.058235198259354]],[[0.012045972049236,0.075732655823231,0.15797972679138],[0.10268967598677,0.084452003240585,-0.017291089519858],[-0.03166239336133,-0.075936518609524,-0.049999073147774]],[[-0.071012727916241,-0.053922884166241,0.065013349056244],[-0.028155706822872,-0.0048833317123353,0.012758721597493],[-0.030135814100504,0.0049235192127526,-0.12059938907623]],[[0.029519578441978,-0.081275694072247,0.034942965954542],[-0.027914717793465,0.031534817069769,0.033656436949968],[0.0524434261024,0.041991800069809,0.11243705451488]],[[-0.077509313821793,0.064695201814175,0.018587272614241],[-0.069351233541965,-0.0026816953904927,-0.05264550447464],[-0.0095779094845057,-0.04071943461895,0.012686812318861]],[[-0.044932473450899,-0.089255698025227,-0.060191370546818],[0.0024061256553978,0.012309492565691,-0.013878512196243],[-0.0036629666574299,-0.087444134056568,0.082835085690022]],[[-0.0078117228113115,-0.13515140116215,-0.063435114920139],[-0.17022427916527,0.013230661861598,0.033421207219362],[-0.080451488494873,0.041558440774679,0.043975468724966]],[[-0.032422792166471,-0.13408115506172,0.040784198790789],[0.0077064805664122,0.085331358015537,0.049281354993582],[0.035188887268305,-0.044565808027983,0.061074338853359]],[[0.084841221570969,0.058001898229122,0.045644782483578],[0.026382671669126,-0.030161278322339,-0.055481381714344],[-0.072429001331329,-0.091906040906906,0.015455185435712]],[[-0.094562031328678,-0.046445440500975,-0.026835776865482],[-0.12269838899374,-0.061736844480038,0.020911540836096],[-0.0089462660253048,0.039348669350147,0.075566023588181]],[[-0.18912737071514,-0.045711927115917,-0.036772102117538],[-0.13242979347706,0.047476414591074,0.071693241596222],[0.018925260752439,-0.0062655336223543,-0.10917757451534]],[[-0.052456315606833,-0.16785179078579,-0.21127797663212],[-0.011895257048309,0.0901810079813,-0.073380209505558],[0.013112212531269,0.1156594529748,-0.071468718349934]],[[0.0054637552239001,-0.051734790205956,0.037098120898008],[-0.013954776339233,-0.01484153419733,0.029191909357905],[0.021022666245699,0.0050833504647017,0.029136853292584]],[[0.055883165448904,-0.044645726680756,0.10201089829206],[0.0026933699846268,-0.087036639451981,-0.077607221901417],[0.045666091144085,0.056202076375484,-0.00497205555439]],[[0.0092613166198134,-0.00075506558641791,0.07053616642952],[-0.060614548623562,0.012933456338942,-0.035118915140629],[-0.044813077896833,0.083514876663685,-0.11480571329594]],[[-0.081396289169788,-0.19232735037804,-0.15222784876823],[-0.035896483808756,-0.021276162937284,0.020060647279024],[0.035625845193863,0.0231718942523,0.1165027320385]],[[-0.10507369041443,-0.095755748450756,-0.10675255954266],[-0.049159586429596,0.09307774156332,-0.022731548175216],[-0.026042155921459,-0.15270805358887,-0.094857901334763]],[[-0.029943471774459,-0.085633039474487,-0.064422503113747],[0.038592420518398,-0.0015807995805517,0.15810461342335],[-0.016914214938879,-0.085769176483154,-0.010431705974042]],[[-0.14869548380375,-0.011766660027206,0.0020569891203195],[-0.0026630491483957,-0.02751081995666,0.06199974194169],[-0.013179869391024,-0.038356889039278,-0.10346987098455]],[[0.13812103867531,0.072054885327816,-0.038133580237627],[-0.013754171319306,-0.00075197505066171,-0.0053211622871459],[0.041662018746138,0.074408866465092,0.074940539896488]],[[0.028493404388428,0.10223299264908,0.03368166834116],[-0.018337033689022,-0.094904780387878,-0.051041156053543],[-0.01518187392503,-0.010334144346416,0.0074948552064598]],[[-0.0017323496285826,-0.17911337316036,-0.10216055065393],[-0.025621520355344,-0.15095914900303,0.066515669226646],[-0.0099600199609995,0.011156841181219,0.15361714363098]],[[-0.078682437539101,-0.076706111431122,0.074274517595768],[0.12451864033937,0.061899151653051,0.083735339343548],[0.046484652906656,-0.014999186620116,0.10552951693535]],[[-0.027202000841498,0.028112672269344,0.083967216312885],[-0.02599242143333,0.036737717688084,-0.014285732991993],[0.07058672606945,-0.015331623144448,-0.091451056301594]],[[0.063404485583305,0.14772702753544,0.075923383235931],[-0.046385899186134,0.050788842141628,0.032243672758341],[-0.0011681352043524,0.056069068610668,0.0029112559277564]],[[-0.16502787172794,0.0074142059311271,-0.071070574223995],[-0.031088415533304,0.070759825408459,-0.079704567790031],[-0.13928158581257,-0.082486502826214,-0.051486507058144]],[[0.16449059545994,0.074178464710712,0.037500042468309],[-0.016939843073487,-0.085753478109837,-0.043635029345751],[0.016414813697338,0.0072181345894933,0.013872639276087]],[[-0.065976046025753,0.09752994030714,-0.0017786069074646],[0.031999167054892,0.076998516917229,-0.002964693820104],[0.057200115174055,0.02655029296875,-0.02547649666667]],[[0.069173566997051,0.04091876745224,-0.13834117352962],[-0.0019754045642912,-0.026814414188266,0.0036035277880728],[0.010899383574724,-0.10235643386841,-0.06260921806097]],[[0.10893525183201,-0.043146301060915,-0.029123943299055],[-0.025060307234526,-0.07172666490078,0.036334630101919],[-0.022380735725164,-0.044807247817516,-0.063889697194099]],[[-0.12178827822208,0.096387200057507,-0.02138289809227],[0.037792515009642,-0.040218282490969,0.10296684503555],[0.025532959029078,-0.0058580627664924,0.11902571469545]],[[0.037926074117422,0.016743397340178,-0.00050738087156788],[-0.025143351405859,0.034398835152388,-0.050205066800117],[0.099691241979599,0.11737197637558,0.15881252288818]],[[-0.087919659912586,0.035001702606678,-0.040883868932724],[-0.069766394793987,-0.0074642859399319,0.011871113441885],[-0.042366240173578,0.043963395059109,-0.040236186236143]],[[-0.092279128730297,-0.069049850106239,-0.046222750097513],[-0.081787116825581,-0.016964310780168,0.019401893019676],[-0.0050623840652406,0.042926333844662,-0.058680754154921]],[[0.17997640371323,0.0084716761484742,-0.022680150344968],[0.025977110490203,0.044747550040483,0.049927514046431],[0.0032149727921933,-0.11824244260788,0.028741372749209]]],[[[0.056368615478277,0.072265364229679,-0.031645238399506],[-0.0064080501906574,0.016647476702929,-0.037821881473064],[-0.078649282455444,0.014107827097178,-0.028013505041599]],[[-0.16762612760067,-0.18095509707928,-0.22297677397728],[0.010195318609476,-0.027553401887417,0.094267547130585],[-0.064036078751087,-0.06960617005825,-0.014765106141567]],[[0.073626443743706,-0.041165579110384,-0.16010850667953],[0.16918261349201,0.045227222144604,-0.094599686563015],[0.11156984418631,-0.10037995129824,-0.015411331318319]],[[-0.075130350887775,-0.0510059222579,-0.012598181143403],[0.039702456444502,0.064638666808605,-0.030338348820806],[0.082960419356823,0.048205032944679,-0.062922351062298]],[[-0.11233879625797,-0.035933542996645,-0.047630954533815],[-0.1067476272583,-0.057792857289314,-0.018579186871648],[-0.094416253268719,-0.068238511681557,-0.052152115851641]],[[0.01832789927721,0.19838571548462,0.11975017935038],[-0.10982776433229,-0.020038643851876,0.025633465498686],[0.023545114323497,0.020745489746332,0.047005236148834]],[[0.047930233180523,0.028829688206315,-0.0738884806633],[0.044287502765656,-0.024489043280482,-0.11481138318777],[-0.057296060025692,-0.030461728572845,0.038032319396734]],[[0.028207136318088,0.087484054267406,0.096964284777641],[-0.1532878279686,-0.047795586287975,-0.095564410090446],[-0.055976636707783,-0.010438924655318,0.037753872573376]],[[-0.0077202268876135,0.025465397164226,-0.067962698638439],[0.021793279796839,0.11253091692924,0.0024341044481844],[0.016148701310158,-0.038281746208668,-0.056422345340252]],[[0.017595632001758,-0.12151429802179,-0.038028191775084],[0.011331516318023,-0.068219639360905,-0.0025057541206479],[0.086661264300346,0.094067744910717,-0.095737747848034]],[[0.016605151817203,-0.027182629331946,0.063875444233418],[0.062314458191395,-0.020669903606176,-0.045637041330338],[0.13441573083401,0.11483067274094,-0.0287179723382]],[[0.032619372010231,-0.085890755057335,-0.11098796874285],[0.12212637066841,-0.0131746949628,-0.080812908709049],[0.15168130397797,0.032552804797888,-0.045499224215746]],[[0.011313311755657,-0.098762072622776,-0.049471616744995],[0.0052520497702062,0.074068285524845,-0.0022229407913983],[0.062066465616226,0.098610274493694,0.049535769969225]],[[-0.02688273973763,-0.050327133387327,0.017056044191122],[0.0023716753348708,-0.098914660513401,-0.10098648816347],[0.077408395707607,-0.070601016283035,0.077370688319206]],[[-0.020992634817958,-0.021617788821459,-0.077847920358181],[0.07172104716301,0.050566166639328,-0.038491003215313],[0.01478770468384,-0.046349678188562,-0.11622057855129]],[[-0.015363881364465,0.050472836941481,0.0096397548913956],[0.15262265503407,-0.0057861669920385,0.10018734633923],[0.071403130888939,0.029871221631765,-0.043588146567345]],[[0.0051739425398409,-0.020972099155188,-0.0084517821669579],[0.11857824027538,-0.026941794902086,0.0019202758558095],[0.0099913030862808,0.065993346273899,0.17782671749592]],[[0.060946874320507,-0.17003850638866,-0.16787706315517],[-0.070045955479145,-0.14358998835087,-0.07258690148592],[-0.17594759166241,0.0046741645783186,-0.012335176579654]],[[0.034612592309713,-0.083298943936825,0.10262353718281],[0.051448334008455,0.049374651163816,0.053485233336687],[-0.11739373207092,0.0093559948727489,-0.034840330481529]],[[0.077164351940155,0.10541448742151,-0.026867644861341],[-0.1623001396656,0.041888114064932,-0.062797464430332],[0.093713350594044,-0.015748227015138,0.14919839799404]],[[-0.0077398610301316,0.027308687567711,-0.010329393669963],[0.077246986329556,-0.1083302423358,-0.039349105209112],[0.15727838873863,0.025995053350925,-0.0090361377224326]],[[-0.0090966178104281,-0.065196521580219,-0.13215883076191],[-0.08419231325388,-0.064317665994167,-0.095974393188953],[-0.061933476477861,-0.030737925320864,-0.11866287887096]],[[0.027772802859545,-0.048379816114902,0.061045169830322],[0.044762153178453,0.0090844519436359,0.15643587708473],[-0.040621656924486,-0.074916131794453,0.089765325188637]],[[0.099728778004646,-0.032310493290424,-0.067543849349022],[0.14268605411053,0.060321286320686,-0.056171745061874],[0.11366255581379,0.093063727021217,-0.0030040091369301]],[[0.071370154619217,0.075830556452274,0.006115207914263],[-0.10353927314281,-0.088813915848732,-0.033775262534618],[0.014695506542921,-0.033095300197601,-0.073518186807632]],[[-0.040762554854155,0.0055643375962973,0.026340074837208],[-0.045877691358328,-0.047563709318638,-0.10440526157618],[0.076875112950802,-0.032241798937321,-0.11587201058865]],[[0.069470427930355,0.10183972865343,-0.13056369125843],[0.053468283265829,0.14332629740238,-0.078491024672985],[0.24032771587372,0.30495768785477,0.13557052612305]],[[0.0038355989381671,0.072407096624374,0.045266188681126],[0.087853312492371,-0.0019939809571952,0.034468688070774],[0.063689142465591,-0.022995250299573,0.05356865003705]],[[-0.051946472376585,0.014137662947178,0.066587492823601],[0.077015526592731,0.047849096357822,-0.035477269440889],[0.11362334340811,-0.10735768824816,-0.15329024195671]],[[0.02834645844996,-0.018256459385157,-0.044452898204327],[0.019482294097543,0.030218955129385,-0.029280826449394],[0.1773821413517,0.06380283087492,0.093957625329494]],[[0.046998865902424,0.0014500605175272,0.18167693912983],[-0.013519416563213,0.1083162650466,0.03743988275528],[-0.010671509429812,0.0058837742544711,0.0054718507453799]],[[0.063313856720924,-0.041578058153391,-0.131840929389],[0.10418640077114,0.041853792965412,0.054182220250368],[-0.09965093433857,0.016136053949594,-0.12153916060925]],[[0.054968856275082,-0.0016558297211304,-0.09129923582077],[-0.13727314770222,-0.12932930886745,0.017650896683335],[-0.064511828124523,0.029395928606391,0.052922036498785]],[[0.012713124975562,-0.067498080432415,-0.11082073301077],[0.067269317805767,0.019534410908818,-0.12090142071247],[-0.028294948861003,0.07573426514864,0.040658410638571]],[[0.00898995436728,0.015366607345641,-0.18596258759499],[0.097910270094872,-0.04564281925559,-0.087871350347996],[-0.075311578810215,-0.016644567251205,-0.02139469794929]],[[-0.16321894526482,-0.11185379326344,-0.088278368115425],[-0.050036635249853,0.035608652979136,0.029025556519628],[0.027866384014487,0.172916918993,-0.029274359345436]],[[0.022730695083737,0.023037876933813,0.041586305946112],[0.030590975657105,0.077081434428692,-0.028149398043752],[-0.034504350274801,-0.047426041215658,0.066755898296833]],[[0.0090562989935279,0.056982301175594,0.027445338666439],[-0.15034739673138,0.062098402529955,0.096035785973072],[-0.024078572168946,-0.079855896532536,-0.057695653289557]],[[-0.047178216278553,-0.047461040318012,-0.078875549137592],[0.033599182963371,-0.028808835893869,-0.029481582343578],[0.05087361112237,-0.0068814046680927,-0.02171528339386]],[[0.022080592811108,-0.056072350591421,0.039756346493959],[0.038833033293486,-0.012318127788603,0.01460399851203],[0.025140417739749,-0.052670750766993,0.037625264376402]],[[0.032379675656557,-0.01959977671504,0.012332760728896],[0.039604097604752,-0.018677057698369,-0.0728420317173],[-0.10634183883667,-0.063154436647892,0.014638287946582]],[[0.073230750858784,-0.075653664767742,-0.15326137840748],[-0.071774549782276,-0.076386384665966,-0.11680293828249],[-0.12423124909401,-0.079424247145653,-0.083374232053757]],[[0.010102433152497,-0.013747145421803,-0.11883523315191],[0.037603128701448,0.023311855271459,0.064496330916882],[0.020824430510402,0.044464379549026,-0.028283709660172]],[[0.05271527916193,-0.068621262907982,-0.053477514535189],[0.036259084939957,0.051105387508869,0.032090816646814],[0.0035107331350446,-0.012879348360002,-0.0091987932100892]],[[0.0064008291810751,0.011054117232561,-0.072911635041237],[0.15063054859638,0.035763591527939,-0.12739697098732],[0.040016960352659,0.057884983718395,-0.0055120121687651]],[[-0.029823049902916,-0.019453696906567,0.004190128762275],[0.029012314975262,-0.067244365811348,-0.027347844094038],[-0.10905382037163,0.019042760133743,0.0013421620242298]],[[0.0083816293627024,-0.038477681577206,-0.2704544365406],[-0.014497305266559,0.013119877316058,0.03213207051158],[-0.014603910967708,-0.067100092768669,-0.066864751279354]],[[0.038854472339153,0.082240842282772,-0.014148213900626],[-0.12654486298561,-0.018311381340027,-0.091895312070847],[0.065660014748573,-0.018491744995117,-0.073157213628292]],[[-0.057173777371645,0.048994787037373,-0.029946465045214],[0.013332104310393,0.060908250510693,-0.032110672444105],[0.10750176757574,0.052576616406441,-0.020433971658349]],[[-0.03515212610364,0.027356181293726,0.0018746425630525],[-0.049796096980572,0.0086652971804142,0.0093038724735379],[-0.026443332433701,0.054282195866108,0.0075165121816099]],[[0.0057944930158556,0.022309299558401,-0.28205263614655],[0.069487147033215,0.010413805022836,-0.1754652261734],[0.18020440638065,0.095469139516354,0.0042079631239176]],[[0.05985364317894,-0.023732660338283,-0.087108865380287],[0.062448937445879,0.019191522151232,-0.062313873320818],[-0.10939152538776,-0.067056372761726,0.018427088856697]],[[0.0060026459395885,0.044174127280712,0.12692810595036],[-0.088785141706467,-0.084872536361217,0.043580144643784],[-0.15458330512047,0.047095037996769,0.12601092457771]],[[-0.032248262315989,0.10497500002384,-0.097604744136333],[-0.14475944638252,0.067198313772678,-0.03789933770895],[-0.10745131224394,0.043807562440634,0.03585897013545]],[[-0.11370242387056,-0.14356952905655,0.068387575447559],[-0.13978540897369,-0.097346171736717,-0.17088247835636],[-0.037053797394037,-0.0099590355530381,-0.032839193940163]],[[-0.16759538650513,-0.1727410107851,-0.085330173373222],[-0.17139004170895,-0.10929600894451,0.078335948288441],[0.099236525595188,0.1100131124258,-0.011695802211761]],[[0.0087785357609391,0.081816390156746,-0.028338704258204],[0.098513722419739,0.065244123339653,0.10811964422464],[0.045980483293533,0.038928337395191,0.0080080786719918]],[[-0.016866188496351,-0.043699558824301,-0.13194251060486],[-0.082268014550209,0.0073864669539034,-0.2290984839201],[-0.18512852489948,0.097797073423862,-0.13516981899738]],[[-0.026421114802361,0.092878840863705,0.035606220364571],[-0.057426024228334,0.087844580411911,0.13549894094467],[-0.12534445524216,-0.044818423688412,-0.081709280610085]],[[-0.018313381820917,-0.012392926961184,-0.12291097640991],[0.21016050875187,-0.020974023267627,-0.011769483797252],[-0.0087499739602208,0.0022605271078646,0.093009814620018]],[[0.085958279669285,0.0083489157259464,-0.11386209726334],[0.061407893896103,-0.019981954246759,0.037283476442099],[0.042790036648512,0.065029636025429,0.03683041408658]],[[-0.075627215206623,0.046284660696983,0.085438333451748],[-0.006225076969713,0.039103828370571,0.12934376299381],[-0.0034340505953878,-0.080238841474056,0.041255187243223]],[[-0.076210334897041,0.0042947763577104,-0.031525276601315],[-0.0307253357023,-0.0058051850646734,0.00051591196097434],[0.034989830106497,0.016977282240987,-0.031048202887177]],[[-0.035850893706083,0.031466260552406,0.031284309923649],[-0.052244748920202,-0.13062781095505,0.027580052614212],[-0.17547361552715,-0.019697844982147,0.051944974809885]]],[[[0.0074052927084267,-0.093387454748154,0.09666683524847],[-0.12087572365999,0.043651629239321,0.20157916843891],[-0.054325625300407,-0.034829940646887,0.02165288105607]],[[0.057757798582315,0.03280159458518,0.025657154619694],[-0.04426833987236,-0.070515349507332,0.014198231510818],[-0.056015305221081,-0.16388648748398,-0.027446001768112]],[[-0.035428270697594,0.060364905744791,0.14105068147182],[-0.060907196253538,0.19895823299885,0.097921028733253],[-0.057117242366076,0.0022098498884588,0.11380337923765]],[[0.12328390777111,0.079644612967968,-0.004614595323801],[0.10060049593449,0.071650259196758,0.017826281487942],[-0.12462972104549,0.020094765350223,-0.019260818138719]],[[-0.017367167398334,0.0016799689037725,0.047076527029276],[0.08285153657198,0.13815048336983,0.0064549623057246],[-0.095883712172508,-0.0023071670439094,0.11832561343908]],[[-0.051260963082314,-0.065449520945549,0.017486494034529],[-0.0234738830477,-0.051969636231661,0.13163505494595],[-0.064842157065868,-0.010674861259758,0.056704167276621]],[[-0.050217196345329,0.099292658269405,-0.019526505842805],[0.062406685203314,-0.066732086241245,0.0074771698564291],[-0.0079819951206446,-0.064563199877739,0.044142685830593]],[[0.0039042560383677,-0.020929353311658,-0.044173002243042],[-0.016022030264139,0.023822642862797,-0.13110028207302],[0.023773558437824,-0.020109385251999,0.10627316683531]],[[0.0074978587217629,-0.084035769104958,-0.037654541432858],[0.036801163107157,-0.011387621052563,0.065417639911175],[0.016674220561981,0.025351259857416,-0.013938965275884]],[[-0.0049122590571642,-0.14795680344105,-0.051210999488831],[0.028685173019767,-0.063401907682419,-0.013563661836088],[-0.10016200691462,-0.00073918356793001,-0.023008763790131]],[[-0.030838867649436,-0.016816146671772,-0.14902371168137],[-0.0011380575597286,0.11747097223997,0.075049988925457],[-0.02272479981184,0.10476835072041,0.025022896006703]],[[0.026440352201462,-0.040531545877457,-0.07588005065918],[-0.2013073861599,0.025024984031916,0.093665286898613],[-0.011966751888394,-0.011736939661205,0.038510028272867]],[[-0.045956257730722,0.057526841759682,0.042397394776344],[-0.093751132488251,0.053387932479382,0.14627838134766],[0.0063678352162242,-0.034824088215828,0.088224902749062]],[[0.046558558940887,0.029848853126168,0.017563348636031],[-8.9132809080184e-05,-0.020610434934497,0.086944796144962],[0.02182225883007,-0.016021916642785,0.017740670591593]],[[0.026912802830338,-0.029949394986033,0.028447166085243],[-0.042648285627365,-0.078256905078888,-0.019952794536948],[-0.0032141166739166,0.021771064028144,-0.042627349495888]],[[-0.1525135487318,0.071730583906174,0.089354783296585],[-0.13206353783607,-0.19740073382854,-0.053140982985497],[-0.035739935934544,-0.17326867580414,0.059354618191719]],[[-0.10241182893515,-0.022419633343816,-0.10248710215092],[-0.2160470187664,-0.039004258811474,0.13534893095493],[-0.018048223108053,0.041343063116074,0.21284262835979]],[[-0.034147590398788,-0.0023179920390248,0.011930914595723],[-0.070450343191624,0.041061565279961,0.0033265464007854],[-0.0014066052390262,0.010639289394021,0.12337475270033]],[[0.065914571285248,-0.068791560828686,0.076453126966953],[-0.07418679445982,-0.036800391972065,0.14082473516464],[-0.04971431940794,-0.061261359602213,0.14499567449093]],[[-0.066116735339165,0.036309421062469,0.14089687168598],[0.0011617961572483,0.13015098869801,-0.11848216503859],[-0.11313696950674,-0.035683784633875,0.15333431959152]],[[-0.052968319505453,-0.097149230539799,-0.038768775761127],[-0.031131573021412,-0.11350604891777,0.072502806782722],[0.057222533971071,-0.059060320258141,-0.018033938482404]],[[-0.059362858533859,0.12229104340076,0.14385487139225],[0.1359328776598,0.14293205738068,-0.02302485704422],[-0.0035239632707089,-0.078041218221188,-0.11884604394436]],[[-0.044287025928497,-0.047745641320944,0.062181033194065],[-0.21117475628853,0.032783851027489,0.043369986116886],[-0.015690295025706,-0.080491468310356,0.027273183688521]],[[-0.0037407919298857,0.032789975404739,-0.18975080549717],[0.10298402607441,0.036840125918388,-0.038984660059214],[-0.02366148121655,0.074345625936985,-0.006783970631659]],[[0.017407275736332,-0.050322253257036,0.12409003078938],[0.0016766248736531,0.06291176378727,0.037093963474035],[0.0018640988273546,-0.086993031203747,0.0025785104371607]],[[-0.089096553623676,-0.04486333578825,-0.010586106218398],[-0.082676492631435,0.066064216196537,0.14261956512928],[-0.015332892537117,0.18570382893085,0.096308492124081]],[[-0.011043484322727,0.14859889447689,-0.14800564944744],[0.02687012962997,-0.061599273234606,-0.10455067455769],[-0.031099952757359,0.049847703427076,-0.12490102648735]],[[-0.0090026399120688,0.047415532171726,-0.14149512350559],[-0.055349852889776,-0.062330730259418,-0.081931956112385],[0.015169493854046,-0.042993947863579,-0.12893588840961]],[[-0.16114804148674,-0.070034727454185,-0.0027938643470407],[-0.0082224365323782,0.039480105042458,0.060736577957869],[0.13727690279484,-0.0085318451747298,0.025578582659364]],[[0.0032734237611294,-0.014046953991055,-0.16031225025654],[0.0054097692482173,0.017323832958937,-0.076245129108429],[0.13858945667744,0.011909452266991,-0.049323733896017]],[[-0.018120424821973,0.068674519658089,0.12579627335072],[-0.042302157729864,-0.060941800475121,-0.059583276510239],[-0.010273761115968,0.074512012302876,0.085043303668499]],[[-0.007432499434799,-0.1667372584343,0.035846803337336],[-0.021018901839852,-0.011903286911547,0.039394676685333],[0.075921475887299,0.0484300814569,-0.033199928700924]],[[0.0018673200393096,-0.001927983481437,-0.0097531713545322],[-0.056270573288202,-0.039376348257065,0.049474898725748],[-0.03170196339488,0.052463430911303,-0.10380832105875]],[[0.081879243254662,0.0049668606370687,0.03388948366046],[-0.10361116379499,-0.018075186759233,0.010748920962214],[-0.14486390352249,-0.10283629596233,-0.056389357894659]],[[-0.053936675190926,0.054951380938292,0.084633506834507],[-0.059567864984274,-0.006413203664124,0.044997431337833],[-0.0017148358747363,0.027253767475486,-0.027207374572754]],[[0.077031329274178,0.027103984728456,-0.046111050993204],[-0.072739161550999,-0.045163277536631,0.10483914613724],[0.0097935777157545,-0.015983723104,-0.037047613412142]],[[0.12318996340036,-0.037277270108461,-0.050131548196077],[-0.034617066383362,0.071524322032928,-0.013623723760247],[0.033957839012146,0.015991229563951,0.0095018856227398]],[[0.00021941927843727,-0.087182283401489,-0.11849945783615],[0.00040710152825341,0.046024940907955,0.016986144706607],[-0.057524986565113,0.057208269834518,0.0099140498787165]],[[-0.092081628739834,-0.05331102386117,-0.048150084912777],[-0.0030338261276484,-0.078049935400486,-0.13647815585136],[-0.019245848059654,-0.004121155012399,-0.095480963587761]],[[0.13525620102882,0.10709103941917,-0.13818569481373],[-0.013362410478294,0.038778897374868,-0.037564594298601],[-0.052634939551353,-0.09602128714323,-0.064010247588158]],[[-0.086748279631138,-0.013225258328021,0.12707798182964],[-0.10138282924891,-0.00043923238990828,0.11928328871727],[-0.018862752243876,-0.092333480715752,0.062913492321968]],[[-0.16821731626987,-0.091947995126247,-0.02088725194335],[0.062616392970085,-0.014052837155759,0.043116830289364],[-0.035304602235556,0.1481491625309,0.1233434304595]],[[-0.029284970834851,-0.038749810308218,-0.12671729922295],[0.052702810615301,-0.03070667758584,0.12089712172747],[-0.015848200768232,-0.15752857923508,0.038390781730413]],[[-0.048407107591629,-0.024116914719343,-0.056445062160492],[0.0062467940151691,-0.010309467092156,0.14881664514542],[0.056252066046,-0.0059001361951232,-0.019385382533073]],[[0.038492500782013,-0.064671829342842,0.048432592302561],[-0.056713126599789,-0.032259654253721,0.012119581922889],[-0.070591434836388,-0.17901170253754,-0.088257722556591]],[[0.0091291340067983,0.01004440523684,-0.044647973030806],[-0.076366856694221,0.028257021680474,-0.02985168248415],[0.042797394096851,0.023797906935215,0.0072875330224633]],[[-0.013166104443371,-0.059727482497692,-0.12386140227318],[0.042847368866205,-0.075341947376728,-0.078975237905979],[0.078824862837791,0.15430402755737,0.024169582873583]],[[-0.045475147664547,-0.085506543517113,-0.066337712109089],[0.058885507285595,-0.0023537892848253,-0.080664247274399],[0.041090440005064,0.090270988643169,0.0011937381932512]],[[0.022367857396603,-0.054861444979906,0.096311792731285],[-0.069442845880985,-0.067546933889389,0.081708565354347],[-0.043736405670643,0.031484853476286,0.14775930345058]],[[-0.026954399421811,0.081814095377922,-0.013428529724479],[-0.0025551284197718,0.025494379922748,0.11852745711803],[0.0040833922103047,-0.2091893851757,0.018053824082017]],[[-0.059250302612782,0.047538220882416,-0.065580658614635],[-0.068754695355892,0.024267051368952,0.010542531497777],[-0.21638257801533,-0.10155504196882,0.2063123434782]],[[0.027516707777977,0.025267541408539,0.024327395483851],[0.01701114885509,-0.19296960532665,-0.099472969770432],[0.01448324136436,0.10571261495352,0.081519238650799]],[[-0.019330400973558,0.020578680559993,-0.095756828784943],[0.21732133626938,-0.033274013549089,-0.087288729846478],[0.030322443693876,0.017866531386971,-0.079671889543533]],[[0.080918610095978,0.14138361811638,0.092696666717529],[0.068937838077545,0.035397481173277,0.041112892329693],[0.018165227025747,-0.062449622899294,-0.00097322242800146]],[[0.029797468334436,-0.01826155371964,-0.048181008547544],[0.020296817645431,-0.095753252506256,-0.094879329204559],[-0.097522556781769,-0.030430790036917,0.048598371446133]],[[-0.11330127716064,-0.022905735298991,0.13546819984913],[0.13883367180824,0.095945484936237,-0.10584229230881],[0.031144054606557,-0.012930477038026,-0.070765525102615]],[[0.023742944002151,-0.010654642246664,-0.13748493790627],[0.021526284515858,0.035175483673811,0.03118808567524],[0.081658080220222,-0.14578750729561,0.014817505143583]],[[-0.0037993360310793,0.10998466610909,0.011390580795705],[-0.17480397224426,-0.020540660247207,0.11129862815142],[0.010458114556968,-0.072572633624077,-0.064334899187088]],[[-0.0086216172203422,-0.030397327616811,-0.075351968407631],[-0.080483794212341,0.028903197497129,0.13200706243515],[-0.068152479827404,-0.025733176618814,0.079557530581951]],[[-0.039822064340115,-0.045334193855524,-0.076820611953735],[0.099955819547176,-0.032212872058153,-0.049342226237059],[-0.057479355484247,-0.00010165644198423,0.020816583186388]],[[-0.10147766023874,-0.077619664371014,-0.0077965753152966],[-0.017186405137181,0.020259330049157,-0.0053967027924955],[0.13504293560982,-0.10281229019165,-0.036132033914328]],[[-0.06705242395401,-0.020093617960811,0.020863570272923],[0.080480650067329,0.13071265816689,0.021028593182564],[0.040476020425558,0.021359004080296,0.020779512822628]],[[-0.070994406938553,0.06707326322794,-0.072456553578377],[-0.092099539935589,-0.040260568261147,-0.014023031108081],[-0.12978658080101,0.0082972217351198,-0.022427165880799]],[[0.0019817145075649,-0.044274132698774,-0.027256067842245],[-0.080313317477703,-0.027015397325158,-0.10036348551512],[-0.069187603890896,0.13123561441898,0.17979446053505]]],[[[-0.048956785351038,-0.0033991194795817,0.018673760816455],[-0.020708203315735,-0.0051868492737412,0.070396669209003],[-0.071169048547745,-0.059817969799042,-0.011074790731072]],[[-0.052671626210213,0.087098494172096,0.22003093361855],[-0.076782457530499,-0.026369297876954,0.03866545855999],[-0.038982085883617,-0.16870218515396,-0.01188462600112]],[[-0.041667513549328,-0.043824888765812,-0.01883527636528],[0.16552387177944,-0.15749172866344,-0.22042275965214],[0.25663471221924,0.098463498055935,-0.14151029288769]],[[0.034007951617241,-0.0059470892883837,-0.029383238404989],[0.14897269010544,-0.015780482441187,-0.017352949827909],[-0.01161924470216,-0.045425530523062,0.03169234842062]],[[0.15594194829464,0.018301216885448,0.019777441397309],[-0.033685348927975,0.13196878135204,0.013630053959787],[-0.21776747703552,-0.099786706268787,0.092446848750114]],[[0.081965371966362,-0.0072454200126231,0.068879090249538],[-0.020505558699369,0.039580155164003,-0.010411554947495],[0.0027588012162596,-0.032320771366358,0.078022219240665]],[[-0.025238810107112,0.058050155639648,0.12964737415314],[0.011964927427471,-0.041088555008173,-0.027791496366262],[-0.0011441559763625,-0.016969956457615,-0.085419103503227]],[[0.012030887417495,-0.06033319234848,-0.093294940888882],[-0.034479025751352,0.039799798280001,0.034584872424603],[-0.026394963264465,-0.071984998881817,-0.046212859451771]],[[0.010010241530836,-0.092896647751331,-0.070650160312653],[0.070193268358707,0.020188994705677,-0.071686066687107],[-0.02017018571496,0.1158856973052,0.013305060565472]],[[-0.059360671788454,-0.12598951160908,-0.032943535596132],[0.0058601717464626,0.025472128763795,0.051040567457676],[0.020365258678794,0.10933528095484,0.13893955945969]],[[-0.060218594968319,0.095809437334538,0.006794678978622],[-0.076917663216591,0.11239439994097,-0.048248820006847],[-0.014406719245017,-0.085940539836884,0.077804647386074]],[[0.018650567159057,-0.15299893915653,-0.13911202549934],[0.14733481407166,-0.017073303461075,-0.02453425526619],[0.086462803184986,0.10687173902988,0.074140131473541]],[[-0.029534287750721,-0.068213641643524,-0.1600536108017],[0.0025369266513735,-0.0379503890872,0.024738231673837],[0.023853924125433,0.032198283821344,0.028949527069926]],[[-0.067160703241825,-0.034351538866758,0.045410674065351],[-0.0094002997502685,-0.001317908638157,0.12626373767853],[0.077295444905758,-0.015711015090346,-0.042745467275381]],[[0.088567495346069,0.047283761203289,0.062611423432827],[0.070175185799599,-0.022631194442511,-0.095657058060169],[0.047437388449907,0.089453928172588,0.0028254885692149]],[[0.18188901245594,0.095609150826931,-0.047750845551491],[0.15940998494625,-0.11816095560789,0.13516873121262],[-0.013055132701993,-0.047129094600677,-0.07686098664999]],[[0.069771215319633,-0.013209852389991,0.030030084773898],[0.043290439993143,-0.018541257828474,0.040391284972429],[-0.0063552111387253,0.058011934161186,0.10284282267094]],[[0.15599320828915,0.02711671218276,0.076961442828178],[0.04812952876091,-0.11180225014687,-0.0051091886125505],[0.068785734474659,-0.11982131749392,0.03402030095458]],[[-0.08934672921896,0.020941596478224,-0.026750478893518],[-0.045775655657053,-0.02621984668076,0.045008637011051],[-0.020512698218226,-0.046673648059368,0.13360023498535]],[[0.028754813596606,0.10380005836487,0.066600039601326],[-0.010714184492826,-0.087868325412273,-0.045344851911068],[0.059393804520369,0.016045868396759,-0.04925374686718]],[[-0.014269242994487,0.031647436320782,0.14243730902672],[-0.032267022877932,-0.095459155738354,0.069344028830528],[0.12508903443813,0.039355799555779,0.086797028779984]],[[0.13467320799828,0.095425114035606,-0.0031676376238465],[0.003629706101492,0.0022305957973003,-0.08504056930542],[-0.042262386530638,-0.14062026143074,-0.05168854445219]],[[0.12796302139759,0.019421048462391,0.015497984364629],[-0.10520403087139,-0.19170007109642,0.057773411273956],[0.015924591571093,-0.013794222846627,0.019900485873222]],[[0.053348746150732,-0.077914521098137,-0.014430531300604],[-0.027909617871046,-0.0040993997827172,-0.12246088683605],[0.055909592658281,0.097360968589783,-0.011318477801979]],[[-0.024400504305959,0.16208890080452,-0.033329758793116],[0.08959473669529,0.090462885797024,0.0087869456037879],[-0.16033856570721,-0.080290772020817,-0.13131150603294]],[[0.1598107367754,0.073278062045574,0.07386452704668],[0.0072404211387038,-0.092778734862804,-0.074746862053871],[0.19643621146679,-0.001032535918057,-0.19566966593266]],[[-0.080865629017353,-0.009353700093925,-0.078203484416008],[-0.04952634125948,0.057463865727186,-0.070802472531796],[-0.049334742128849,0.18599624931812,0.13795094192028]],[[0.044962599873543,-0.00031490047695115,0.064104676246643],[0.18327538669109,0.019847128540277,0.073065504431725],[0.021511485800147,-0.15877629816532,-0.062226884067059]],[[0.05741036310792,-0.01904939301312,0.043105412274599],[-0.055421531200409,-0.057576891034842,0.074609979987144],[-0.13418924808502,0.14421987533569,0.051560536026955]],[[-0.052622627466917,-0.061067838221788,-0.17551530897617],[0.086035288870335,-0.12810416519642,-0.11911614239216],[0.10610388964415,0.0081405295059085,-0.038603316992521]],[[0.067979380488396,-0.033578533679247,-0.14419491589069],[-0.029075616970658,0.026881543919444,-0.018041845411062],[0.036994710564613,0.073198899626732,0.026692304760218]],[[0.036614507436752,0.037819571793079,-0.094885282218456],[0.010152422823012,0.00932527333498,0.17436309158802],[-0.096793718636036,0.077237188816071,0.001779337762855]],[[0.075811348855495,0.034861419349909,-0.091313794255257],[0.04427320510149,-0.038308076560497,-0.048653651028872],[-0.030465316027403,-0.031105095520616,-0.10424300283194]],[[-0.016447611153126,-0.11360663175583,-0.01846824772656],[-0.11604163050652,0.011785521171987,-0.068377539515495],[-0.076139882206917,-0.04988482221961,0.038135096430779]],[[0.048361755907536,0.060501739382744,0.0063679739832878],[-0.0078875552862883,-0.040201812982559,0.012560185045004],[0.081544443964958,0.050673346966505,-0.055465340614319]],[[0.0098432758823037,-0.14544436335564,-0.043357141315937],[0.058360565453768,0.012442418374121,0.019495382905006],[0.010239933617413,-0.064037211239338,-0.043283607810736]],[[0.064638003706932,0.082407727837563,-0.045534912496805],[-0.017141435295343,0.093135848641396,0.033037159591913],[-0.020862199366093,0.0025655596982688,0.00089466862846166]],[[-0.16227358579636,-0.0047131269238889,0.039337914437056],[0.026674663648009,0.016727128997445,0.079704940319061],[-0.049222238361835,0.0008191637462005,0.046860802918673]],[[-0.019974786788225,-0.040691915899515,-0.13315372169018],[-0.0090150600299239,0.044143728911877,-0.069681495428085],[-0.082922376692295,0.063209660351276,-0.010515729896724]],[[0.085302866995335,0.056510448455811,0.12009328603745],[0.0044371117837727,0.012357830069959,-0.01911530084908],[0.058499820530415,-0.065280124545097,0.087612025439739]],[[0.12562549114227,0.039681442081928,0.026402043178678],[-0.022803204134107,0.0055943359620869,0.049795489758253],[-0.072295896708965,-0.051073428243399,-0.030275907367468]],[[-0.039414215832949,-0.070330575108528,-0.051179707050323],[0.059768326580524,-0.041914686560631,0.034622337669134],[0.043576277792454,0.097721286118031,0.018182661384344]],[[-0.053562242537737,0.104257799685,-0.058824390172958],[0.057607378810644,0.024413757026196,-0.013678424060345],[0.046439349651337,-0.035125963389874,0.019617225974798]],[[-0.023802606388927,-0.058316860347986,0.048783242702484],[-0.024412281811237,0.086463175714016,-0.064913928508759],[-0.075850516557693,-0.022590225562453,0.12704010307789]],[[0.15252383053303,0.022808577865362,0.033709872514009],[0.022782115265727,0.021988943219185,-0.057311531156301],[0.049554210156202,-0.0735047981143,-0.023536885157228]],[[-0.072418756783009,0.059668783098459,0.17197093367577],[-0.12681628763676,0.099297061562538,-0.042761746793985],[0.12160358577967,0.081032641232014,-0.078550212085247]],[[0.10229554772377,0.0082450825721025,-0.049177642911673],[0.0054279756732285,-0.016605703160167,0.062918692827225],[0.081052258610725,0.032481908798218,0.13256387412548]],[[-0.061224944889545,-0.059630237519741,0.095965266227722],[0.03533248603344,-0.023107916116714,-0.0093397060409188],[0.062677912414074,-0.017296781763434,0.032085750252008]],[[-0.037171773612499,-0.0017660661833361,0.024827050045133],[0.045298162847757,0.08508662134409,0.03047388792038],[0.034731663763523,0.085244573652744,-0.020715057849884]],[[0.053868263959885,-0.03719637542963,0.038551840931177],[-0.018422354012728,-0.0012652922887355,0.061023656278849],[0.03905275836587,-0.061991196125746,-0.081393383443356]],[[0.041708990931511,0.063612245023251,-0.099885411560535],[-0.027142835780978,-0.057044304907322,0.012979235500097],[0.091277219355106,0.068397209048271,-0.14862510561943]],[[0.031430415809155,-0.092288635671139,0.13970781862736],[0.0022492299322039,-0.1185882166028,0.0031106208916754],[-0.089698359370232,-0.024423582479358,-0.059002142399549]],[[0.13094806671143,-0.067782670259476,-0.10404668003321],[0.02210958302021,0.043309763073921,-0.036538388580084],[-0.11798615008593,-0.051748510450125,0.28454408049583]],[[-0.2466486543417,0.046822771430016,0.066997312009335],[-0.14776059985161,-0.057616949081421,0.081442274153233],[-0.063816651701927,0.14602589607239,0.0047527481801808]],[[0.020652668550611,-0.020781446248293,-0.038523338735104],[0.0078959492966533,-0.072537623345852,0.017803829163313],[-0.090698175132275,-0.074207007884979,-0.064314447343349]],[[-0.22883106768131,-0.083606824278831,0.034551285207272],[0.022911306470633,0.0042661866173148,0.0045912377536297],[0.046606175601482,0.057153519243002,0.03747870773077]],[[-0.15860866010189,-0.10942601412535,-0.0095294192433357],[-0.10912611335516,-0.0049187652766705,0.020934466272593],[-0.07098812609911,-0.05795120075345,-0.016776755452156]],[[0.027232274413109,0.047780197113752,-0.10375978797674],[-0.065573461353779,-0.074325978755951,0.01088526006788],[0.069694124162197,-0.014543706551194,-0.043353486806154]],[[-0.15709440410137,-0.08103670924902,-0.12501028180122],[0.019986202940345,-0.055340889841318,-0.0041156127117574],[0.073946908116341,-0.073203824460506,0.086580239236355]],[[-0.19510847330093,-0.14795333147049,-0.11318152397871],[-0.022955199703574,-0.041243031620979,-0.015508592128754],[-0.087358951568604,0.088356897234917,0.048905547708273]],[[0.053949598222971,0.011168675497174,0.053427673876286],[0.015143836848438,0.050450690090656,0.074082516133785],[0.098566673696041,0.013078462332487,0.094126895070076]],[[0.014310034923255,0.014102695509791,0.058654773980379],[-0.049450755119324,0.032242655754089,0.0014979622792453],[-0.072892107069492,0.022010436281562,-0.043612040579319]],[[0.017582224681973,0.09118290990591,0.047039076685905],[0.10265428572893,0.0264344625175,0.10736506432295],[0.061048310250044,-0.0044687232002616,-0.027276901528239]],[[0.074351370334625,0.17388632893562,0.12796583771706],[-0.049022845923901,0.034587703645229,-0.024255391210318],[0.030500637367368,-0.023472156375647,0.0015068147331476]]],[[[-0.051335200667381,-0.041400846093893,-0.038078885525465],[-0.13496398925781,-0.1183565184474,0.1690621227026],[0.069164022803307,-0.049005515873432,0.0071604903787374]],[[-0.00058841530699283,-0.023919023573399,0.081866167485714],[-0.15131534636021,0.14262236654758,0.11894226074219],[0.023894105106592,-0.14866492152214,0.044615313410759]],[[-0.090019047260284,0.05144314467907,0.07013675570488],[0.097744591534138,-0.063342086970806,-0.018084919080138],[-0.040363140404224,0.22611662745476,0.031764429062605]],[[0.0024589819367975,-0.081944480538368,-0.058748990297318],[-0.080054022371769,-0.088144302368164,-0.076292999088764],[0.036353699862957,0.086651168763638,0.0021845779847354]],[[0.11880391091108,0.068237587809563,-0.02633785456419],[-0.048522848635912,0.020608376711607,-0.082102082669735],[-0.041791137307882,-0.097244746983051,-0.070864036679268]],[[-0.036776289343834,-0.085226967930794,-0.010565578006208],[-0.20118083059788,0.18754558265209,0.011174070648849],[-0.019540825858712,-0.14859500527382,0.26879581809044]],[[-0.0023706050124019,-0.072090402245522,0.064305163919926],[-0.0031344671733677,0.12955118715763,-0.10136465728283],[-0.045051388442516,-0.057887610048056,-0.0097670815885067]],[[-0.0053413915447891,-0.034853711724281,0.044818766415119],[-0.19319148361683,-0.0075764157809317,-0.0041824951767921],[0.11627761274576,0.00055691390298307,0.022978287190199]],[[0.039418876171112,-0.0092171253636479,-0.014794682152569],[-0.09969449788332,-0.021369513124228,0.032366961240768],[-0.062256593257189,0.05656736344099,0.027826016768813]],[[0.023364290595055,0.062207907438278,-0.044569432735443],[0.014684614725411,-0.12773497402668,-0.0044552418403327],[-0.093758016824722,-0.12070486694574,-0.13646513223648]],[[0.12368735671043,-0.027458995580673,0.030561184510589],[-0.13689313828945,0.022556219249964,-0.069751247763634],[0.094479583203793,0.11914044618607,0.018972462043166]],[[-0.049739558249712,0.057857219129801,-0.024026645347476],[0.028889903798699,0.070566572248936,-0.043550066649914],[0.013316811993718,-0.018965091556311,0.07648528367281]],[[0.0047030220739543,0.01747296191752,-0.1477335691452],[-0.039310481399298,-0.088970676064491,0.066503830254078],[0.12472243607044,-0.15880930423737,-0.032879386097193]],[[0.0026454874314368,0.059215936809778,0.14189058542252],[-0.028745559975505,-0.16223613917828,-0.023401221260428],[0.023454386740923,-0.044211376458406,0.093039087951183]],[[0.12056366354227,0.022622462362051,0.032250877469778],[-0.033876042813063,-0.017140602692962,0.008333065547049],[0.18181753158569,-0.014043813571334,-0.10017058998346]],[[0.091109499335289,-0.012935844250023,-0.01817718334496],[-0.0079982150346041,-0.046362772583961,0.024786088615656],[0.081480100750923,-0.057357050478458,-0.021040733903646]],[[0.024820541962981,0.062685146927834,-0.072283022105694],[0.023744149133563,-0.042671859264374,-0.032711692154408],[0.058937944471836,0.09458401799202,-0.055226556956768]],[[0.11759935319424,-0.050279844552279,-0.016071541234851],[-0.036606911569834,-0.10375378280878,0.0039162239991128],[0.024052793160081,-0.078013546764851,-0.066850632429123]],[[0.079685688018799,-0.077105805277824,0.02178450115025],[0.022895056754351,0.05923979729414,0.015493204817176],[-0.0018877111142501,0.075321570038795,0.060720175504684]],[[0.078153289854527,-0.11072736978531,0.086804829537868],[0.08418633043766,-0.10094656050205,0.035111140459776],[0.025356806814671,0.074541762471199,0.066955976188183]],[[0.17778572440147,-0.023459151387215,0.1342231631279],[-0.075432434678078,-0.089030779898167,-0.25737532973289],[-0.071132197976112,-0.07420714199543,-0.05738777667284]],[[-0.032377421855927,0.020359152927995,-0.21413117647171],[-0.044607628136873,-0.15841445326805,-0.06568318605423],[-0.10430834442377,-0.059871580451727,-0.051087342202663]],[[0.14807167649269,0.043676491826773,-0.057548515498638],[0.00048257014714181,-0.030321903526783,-0.17887206375599],[-0.015741430222988,0.013828213326633,-0.049265764653683]],[[-0.033679641783237,0.025131287053227,-0.13983358442783],[-0.10793818533421,-0.18961258232594,0.1262928545475],[-0.026036245748401,0.091141358017921,-0.082504257559776]],[[0.03644073009491,-0.029340222477913,-0.068519130349159],[0.046868786215782,-0.08899012953043,0.11390428990126],[-0.0060178637504578,-0.0089604137465358,-0.061424057930708]],[[0.034915529191494,-0.037492398172617,0.080687068402767],[-0.10243673622608,-0.061372224241495,-0.16615632176399],[0.12828651070595,0.064333334565163,-0.11186850816011]],[[-0.16556876897812,-0.038077853620052,0.0022966358810663],[-0.04803454503417,-0.038525741547346,-0.082434043288231],[-0.29179352521896,-0.14195570349693,-0.024970840662718]],[[-0.033884588629007,0.046232424676418,0.032138757407665],[0.039942622184753,-0.06284262239933,-0.068082474172115],[0.010084196925163,-0.022588677704334,-0.0049495194107294]],[[0.059806048870087,-0.035023480653763,-0.12330883741379],[-0.12095956504345,-0.081190623342991,0.093501411378384],[-0.035576548427343,-0.1156674399972,0.025091296061873]],[[-0.017384294420481,0.026221118867397,0.010995384305716],[-0.14701433479786,0.0063002868555486,0.0058261696249247],[-0.067972615361214,-0.056003723293543,-0.01373737771064]],[[0.011168643832207,0.045734819024801,0.13071611523628],[-0.11815851181746,-0.14945109188557,-0.19376234710217],[0.06780069321394,0.038997527211905,0.15304321050644]],[[0.027716899290681,0.036161206662655,-0.083737209439278],[-0.070069164037704,-0.033408273011446,0.055625542998314],[-0.1621156334877,-0.0029903238173574,-0.084595061838627]],[[-0.0073404484428465,0.036574214696884,0.075937807559967],[0.11161985993385,-0.03300453722477,-0.051636885851622],[-0.092494025826454,-0.0063338116742671,-0.16824749112129]],[[-0.010580468922853,-0.10667769610882,-0.079735890030861],[-0.02047673612833,0.0233906339854,-0.10225569456816],[0.16011902689934,-0.034058395773172,0.0049390024505556]],[[-0.029226375743747,-0.12270255386829,-0.043022841215134],[-0.042006935924292,-0.050708424299955,-0.017994893714786],[0.019642410799861,-0.11539676040411,-0.0052082915790379]],[[-0.022975033149123,0.059606861323118,-0.085550621151924],[0.010610308498144,-0.006756482180208,0.030134877189994],[0.043845318257809,0.013947205618024,0.0081132296472788]],[[0.043031204491854,0.049340285360813,0.087747506797314],[0.050596810877323,0.038025416433811,0.059254411607981],[-0.043210554867983,0.11836762726307,0.063723348081112]],[[-0.25709164142609,0.086173698306084,-0.056303918361664],[-0.11062397062778,0.065209746360779,-0.036476101726294],[0.079911477863789,-0.047100443392992,-0.028971103951335]],[[-0.041956406086683,0.070615842938423,-0.011884622275829],[-0.03158213943243,-0.037406772375107,0.10692726820707],[-0.021756656467915,-0.035465024411678,0.050893601030111]],[[0.048088494688272,-0.069173939526081,-0.018726751208305],[0.14081308245659,0.086952514946461,0.083095006644726],[0.070642232894897,0.0069551719352603,0.034003052860498]],[[0.027159426361322,-0.083448842167854,-0.052464470267296],[-0.060794860124588,0.06302622705698,0.037592373788357],[0.059607475996017,0.030518863350153,0.034444004297256]],[[0.072988040745258,0.086757756769657,0.0047540860250592],[0.066494420170784,-0.050488576292992,-0.064241550862789],[-0.066563196480274,-0.13899533450603,-0.07877978682518]],[[0.013463236391544,-0.067530706524849,-0.090637020766735],[-0.014473915100098,0.092145852744579,0.073828153312206],[0.00031584390671924,-0.026536917313933,-0.037230286747217]],[[0.001560504664667,-0.093034639954567,-0.046661458909512],[0.060613822191954,-0.07810190320015,0.026364265009761],[0.07474921643734,0.03503617271781,-0.047250155359507]],[[0.15996220707893,-0.026289159432054,-0.13619582355022],[-0.010062054730952,0.09887284040451,0.0040176631882787],[0.019659012556076,-0.070260532200336,-0.061344154179096]],[[-0.095900155603886,-0.13959631323814,0.091370709240437],[-0.047393038868904,0.011043523438275,0.093056336045265],[-0.0837731808424,0.036935340613127,0.10438782721758]],[[0.095214106142521,0.11388108879328,-0.034741476178169],[-0.064476124942303,-0.03976446762681,-0.034896049648523],[-0.047544725239277,-0.050903152674437,0.010984943248332]],[[0.088879689574242,0.008269471116364,0.092971600592136],[-0.054527919739485,-0.032120283693075,-0.0033722128719091],[-0.039114929735661,-0.052313126623631,-0.061586998403072]],[[-0.0045186472125351,-0.022884225472808,0.099395535886288],[0.028931584209204,-0.0080779949203134,-0.012699684128165],[-0.041279561817646,-0.013049504719675,0.13941222429276]],[[0.0016885692020878,-0.037454474717379,0.0044802995398641],[0.11567077040672,-0.039906304329634,-0.010381769388914],[0.065303921699524,-0.077259421348572,-0.053605362772942]],[[-0.054175265133381,0.025466809049249,0.000819711771328],[-0.0076033980585635,-0.11359894275665,-0.046462099999189],[0.011238212697208,-0.046996798366308,0.06771532446146]],[[0.074190840125084,0.13561578094959,0.13084881007671],[0.066265515983105,0.15881790220737,-0.018077434971929],[0.045619204640388,0.041775695979595,0.0085305431857705]],[[-0.015207940712571,-0.025451581925154,-0.045610565692186],[0.052226692438126,0.070291489362717,-0.015247736126184],[0.084472559392452,-0.056842651218176,0.027100516483188]],[[-0.12918898463249,-0.18955986201763,0.025412585586309],[-0.23068165779114,0.11156933009624,-0.103874579072],[0.09423766285181,0.017946800217032,0.056166864931583]],[[-0.035681456327438,-0.033727649599314,-0.09419634193182],[0.034307487308979,-0.026700884103775,-0.05906418338418],[0.14888446033001,0.020533937960863,-0.0068334112875164]],[[-0.0090084886178374,-0.135362803936,-0.11634277552366],[-0.098675809800625,-0.029252266511321,0.10261815041304],[0.021006198599935,-0.060632396489382,-0.050587125122547]],[[-0.0089638503268361,0.049393624067307,-0.10838111490011],[0.10256487131119,-0.02038917131722,0.021298848092556],[0.048158414661884,0.046602431684732,0.074310854077339]],[[-0.010614125989377,0.017833264544606,0.013656031340361],[-0.089608669281006,0.088763892650604,0.037332139909267],[-0.10544635355473,-0.063848257064819,-0.070066265761852]],[[-0.018587544560432,-0.062861397862434,-0.11964039504528],[0.076947093009949,-0.11774095147848,-0.083125047385693],[0.067127585411072,-0.045388177037239,0.088984467089176]],[[0.11855581402779,0.11219280958176,-0.040723022073507],[-0.094163410365582,-0.030456956475973,-0.06399692595005],[-0.14628790318966,0.03608587756753,-0.0057942541316152]],[[-0.12129504233599,-0.012251337990165,-0.043680250644684],[0.028020555153489,0.068159535527229,0.0079132057726383],[-0.086788035929203,-0.069455750286579,0.0050844368524849]],[[-0.045352291315794,-0.16282871365547,-0.087449744343758],[-0.055755816400051,-0.091070458292961,0.045789834111929],[-0.024955186992884,-0.16520498692989,-0.019608484581113]],[[0.0097445594146848,-0.11083006858826,-0.023270513862371],[-0.027645109221339,0.016320323571563,0.019603122025728],[0.065725773572922,-0.050240837037563,0.03028279542923]],[[-0.095332488417625,0.037840370088816,0.12904179096222],[0.10131514817476,-0.10457167029381,-0.13721400499344],[0.09028522670269,-0.024474358186126,0.080618090927601]]],[[[0.039794750511646,0.0053683761507273,-0.047655280679464],[-0.049663927406073,0.051667559891939,0.031311646103859],[0.025445725768805,0.076114520430565,0.032344322651625]],[[-0.033443812280893,-0.0088306805118918,0.054764375090599],[0.084506303071976,-0.0034072373528033,0.04040339961648],[0.016392147168517,0.044461339712143,-0.042005494236946]],[[0.0010289736092091,0.047493487596512,0.037215244024992],[-0.055703409016132,-0.052309427410364,0.043808132410049],[-0.023391144350171,0.056923560798168,0.02046443708241]],[[-0.041937135159969,0.040556196123362,-0.057410553097725],[0.073825880885124,0.096754938364029,-0.010699024423957],[0.060436967760324,0.007201049476862,-0.070848345756531]],[[0.018131988123059,-0.10110265016556,0.00088170397793874],[-0.063396707177162,0.14189384877682,0.085936732590199],[0.01135950256139,0.028949031606317,0.0013221121625975]],[[0.017476672306657,0.059167917817831,-0.057223480194807],[0.029289061203599,-0.041472036391497,-0.097057610750198],[-0.0044179582037032,-0.01383308134973,0.11936298757792]],[[0.079635292291641,0.05772740393877,0.10711982101202],[-0.10729473084211,0.034947883337736,-0.03959983587265],[0.0039441729895771,-0.076957799494267,0.034318797290325]],[[0.058246456086636,-0.087712593376637,0.057063620537519],[-0.02590025216341,-0.027757903560996,-0.017452633008361],[-0.0063072792254388,-0.029080465435982,0.010443846695125]],[[-0.0081962924450636,-0.077696233987808,-0.10490346699953],[-0.041265062987804,0.057807594537735,0.019266897812486],[-0.0020635784603655,0.035560123622417,0.088190026581287]],[[0.019903425127268,-0.048393324017525,-0.044371835887432],[0.12148683518171,0.02908412925899,-0.18401561677456],[0.0074781817384064,-0.026291903108358,-0.053908813744783]],[[0.011420265771449,0.089275717735291,0.0079652918502688],[-0.080840550363064,0.048815101385117,0.11964278668165],[-0.07784353941679,0.043228231370449,-0.0015508180949837]],[[-0.048141747713089,-0.036972548812628,-0.018659958615899],[0.048157259821892,0.078897826373577,0.065209649503231],[0.0099913459271193,-0.096923373639584,-0.010614539496601]],[[-0.067155033349991,0.1047986894846,-0.011709483340383],[0.073141776025295,0.029338102787733,-0.15159803628922],[0.013396660797298,0.040562309324741,-0.11619741469622]],[[-0.031589735299349,-0.13300111889839,0.068937957286835],[0.085730656981468,-0.068693295121193,0.082267098128796],[-0.00075097178341821,-0.010832288302481,-0.013252664357424]],[[-0.040729962289333,0.11233485490084,-0.00026452058227733],[0.076880618929863,0.04997855052352,-0.050609044730663],[0.036859672516584,-0.17351134121418,-0.18397851288319]],[[-0.10353522747755,0.023325230926275,0.07617811858654],[-0.015525025315583,-0.055555853992701,0.072545848786831],[0.080733306705952,0.041814383119345,0.065281823277473]],[[0.015105453319848,0.048935856670141,0.055687807500362],[0.098402254283428,-0.0054166372865438,0.077827736735344],[0.013445037417114,-0.068928621709347,0.08531903475523]],[[-0.00021877451217733,0.049549706280231,-0.076883785426617],[0.069756038486958,-0.036642529070377,-0.039277281612158],[0.018859917297959,-0.073284231126308,-0.092662796378136]],[[0.14160583913326,-0.041453305631876,0.052019596099854],[-0.033202063292265,-0.066665507853031,-0.024403484538198],[0.1019989028573,0.077387288212776,-0.15500737726688]],[[-0.0045215017162263,0.11460132151842,0.0028117715846747],[0.0046127578243613,-0.0091343466192484,0.0088172983378172],[0.048928208649158,0.0029692177195102,0.012182094156742]],[[0.01059387344867,0.032348319888115,-0.036865253001451],[-0.053899653255939,0.040914442390203,-0.048694889992476],[-0.036132551729679,-0.029692957177758,0.10821189731359]],[[-0.032703515142202,-0.066569983959198,0.12669365108013],[0.089501768350601,0.029710648581386,0.038563806563616],[0.028528993949294,0.012763285078108,0.00027974054683]],[[-0.099664933979511,0.071086376905441,-0.13138268887997],[0.063242726027966,0.12480528652668,0.11107528954744],[-0.077462799847126,-0.00050932558951899,0.004563182592392]],[[-0.019601190462708,0.047232132405043,0.091065086424351],[-0.0009684165706858,-0.083474360406399,-0.027612401172519],[-0.082792483270168,0.038670253008604,-0.018039431422949]],[[0.011557405814528,-0.029183942824602,-0.086597457528114],[-0.04161461442709,0.021238652989268,-0.10882543027401],[0.019606618210673,0.021434832364321,0.051961466670036]],[[0.06203155964613,-0.037426851689816,0.054722104221582],[0.072398543357849,0.050509355962276,-0.08336516469717],[0.05830080062151,-0.050395827740431,-0.033381201326847]],[[-0.10352756083012,-0.027473777532578,-0.033197864890099],[0.047118876129389,0.11754890531301,0.085253611207008],[-0.11449725925922,-0.054078191518784,0.016052976250648]],[[0.0790044516325,-0.056659691035748,0.073133274912834],[0.13609510660172,-0.10877737402916,0.10383769124746],[-0.028025230392814,-0.090547561645508,0.19983983039856]],[[0.012763757258654,0.054558027535677,0.10226063430309],[-0.051167294383049,-0.041099518537521,0.03160061314702],[-0.054551742970943,0.01811945438385,0.0033528965432197]],[[0.027408991008997,-0.053291153162718,0.034305244684219],[0.0035195993259549,-0.10096126794815,-0.11562221497297],[-0.074450418353081,-0.15072919428349,-0.085402764379978]],[[-0.06193158775568,0.0070468187332153,0.061776798218489],[-0.094780847430229,-0.010294551029801,0.061742648482323],[-0.11698023974895,-0.13017979264259,-0.062695369124413]],[[-0.018065733835101,-0.087309084832668,0.064800553023815],[-0.029956106096506,-0.045287925750017,-0.14856988191605],[0.031137514859438,0.026663964614272,-0.051981974393129]],[[-0.06073996797204,0.027217645198107,0.064746484160423],[-0.14117702841759,-0.12746776640415,-0.026553571224213],[-0.042581472545862,-0.057580303400755,0.02957839332521]],[[-0.061824224889278,-0.037895493209362,-0.0092590320855379],[-0.028296725824475,0.0025165437255055,0.072919756174088],[-0.0084044970571995,0.049225848168135,0.034611906856298]],[[-0.011779644526541,0.015644006431103,-0.077839635312557],[-0.026249473914504,-0.09002348780632,-0.014925796538591],[-0.073440007865429,-0.065712168812752,-0.10363628715277]],[[-0.11613451689482,-0.15474098920822,-0.018291365355253],[0.10735826194286,-0.044532619416714,0.023023616522551],[-0.005659868940711,0.0068408874794841,0.024222394451499]],[[-0.025364503264427,-0.045660752803087,-0.012634596787393],[0.040554072707891,0.088718667626381,-0.20223565399647],[0.11577676981688,0.018640648573637,-0.017687615007162]],[[0.16598257422447,-0.062145009636879,-0.0029098195955157],[-0.10732562094927,-0.16620247066021,0.072657831013203],[-0.033193610608578,-0.014659717679024,0.076961621642113]],[[-0.059782583266497,-0.0068085570819676,0.016988076269627],[-0.030888075008988,-0.048020340502262,-0.098984472453594],[0.094819344580173,0.037178486585617,0.04557965323329]],[[0.044860195368528,0.027111852541566,-0.11562414467335],[0.087949104607105,-0.043768171221018,0.012074018828571],[0.098111979663372,0.0047350311651826,0.0012458962155506]],[[0.043521020561457,-0.012801283970475,-0.097055330872536],[0.058164618909359,0.13669426739216,-0.12598603963852],[0.011257013306022,0.0064550540409982,-0.066771700978279]],[[-0.045052368193865,-0.035843625664711,-0.10762540251017],[-0.059810861945152,0.0081153083592653,0.013322864659131],[-0.013071451336145,0.0025239188689739,0.01793884858489]],[[0.021643267944455,0.022950271144509,-0.012810550630093],[-0.026663787662983,0.050248526036739,-0.24001464247704],[-0.014870299957693,0.092680417001247,-0.094361372292042]],[[0.12004814296961,0.054583750665188,0.0054763001389802],[-0.040059018880129,-0.016512563452125,-0.00969750713557],[-0.0003337919479236,0.021474905312061,-0.074005484580994]],[[0.058418218046427,-0.14394554495811,-0.033276274800301],[0.12733057141304,-0.061186704784632,-0.044635780155659],[0.06316601485014,-0.0090445764362812,-0.073285453021526]],[[0.12665803730488,0.078948721289635,-0.12432513386011],[0.072430565953255,0.080120377242565,0.0066511817276478],[0.1183186173439,-0.033560249954462,-0.025964455679059]],[[-0.11588701605797,0.095208562910557,0.028035530820489],[0.024190649390221,-0.092714861035347,0.069187738001347],[0.078381441533566,-0.038097761571407,-0.074192993342876]],[[-0.17614088952541,-0.073287777602673,0.096864655613899],[-0.021107563748956,-0.050994016230106,-0.077678754925728],[0.065932422876358,0.077417433261871,0.01471049990505]],[[-0.010306466370821,0.012795332819223,-0.026293080300093],[-0.057215593755245,0.012646201066673,0.093599319458008],[-0.019059419631958,-0.092443443834782,0.072622835636139]],[[-0.033526457846165,0.093901872634888,0.072784706950188],[0.059759423136711,-0.055833104997873,-0.069445706903934],[-0.013227818533778,-0.035522270947695,-0.061501190066338]],[[-0.078257456421852,0.029466219246387,-0.055759087204933],[-0.0030589767266065,-0.018142394721508,-0.039024904370308],[0.090355694293976,0.002699936972931,-0.11310484260321]],[[-0.10773867368698,-0.036588240414858,-0.06425866484642],[0.021891979500651,0.044392183423042,-0.066719688475132],[-0.14446592330933,0.051285888999701,-0.071110464632511]],[[-0.11670499294996,-0.10097007453442,0.13633228838444],[0.022380113601685,-0.00046968477545306,0.08467759937048],[-0.010686593130231,-0.033832911401987,0.077661082148552]],[[-0.081240266561508,-0.016173511743546,0.081559017300606],[-0.059548668563366,-0.018193086609244,-0.11599572002888],[-0.016072448343039,0.062956415116787,0.038459993898869]],[[-0.03095131739974,-0.10443688184023,0.074920833110809],[0.070289880037308,-0.043291606009007,-0.11403176188469],[0.0079660834744573,-0.078102611005306,-0.098972909152508]],[[-0.079412467777729,-0.04233006387949,-0.015070999972522],[-0.068511605262756,-0.077839933335781,-0.082107990980148],[0.14638122916222,-0.029709801077843,-0.049727454781532]],[[0.076480701565742,-0.02491857483983,-0.050978723913431],[0.0097577283158898,-0.084155544638634,0.071443535387516],[-0.042294956743717,0.047608628869057,-0.011537030339241]],[[0.039436560124159,0.14241234958172,-0.023427728563547],[-0.044082019478083,0.024573117494583,0.022091317921877],[0.011058485135436,-0.067991174757481,-0.05545487627387]],[[-0.077800184488297,-0.0086939008906484,0.0077256164513528],[-0.01176467910409,0.0038940815720707,-0.0054902280680835],[0.019187975674868,0.037473231554031,0.089663803577423]],[[0.09041789919138,0.019908983260393,-0.069801814854145],[0.040995668619871,0.012198556214571,-0.0079207671806216],[0.096699267625809,-0.18122586607933,-0.0028276983648539]],[[0.042621485888958,-0.0056588570587337,-0.0033476138487458],[0.047250740230083,0.033921279013157,0.0022345362231135],[0.050667446106672,-0.066056400537491,-0.020737869665027]],[[-0.025046853348613,0.11941645294428,-0.028106881305575],[-0.17297665774822,-0.069082446396351,0.044106107205153],[-0.099159494042397,-0.00011317715689074,-0.038388926535845]],[[0.11801841109991,-0.10319720953703,0.080689966678619],[0.14223602414131,0.036556337028742,0.03354312852025],[0.013327054679394,-0.080280378460884,-0.065553858876228]],[[0.040628436952829,-0.047419719398022,-0.049879860132933],[-0.082817122340202,-0.14971235394478,0.19756335020065],[0.0079611334949732,0.017762811854482,0.050924874842167]]],[[[-0.07425195723772,-0.025998588651419,-0.16879703104496],[-0.021440183743834,-0.050969868898392,-0.2350657582283],[0.095955342054367,-0.021901309490204,0.012816342525184]],[[0.068851299583912,-0.1732274889946,-0.035655349493027],[0.0055549913085997,-0.080215275287628,0.014789404347539],[-0.037473808974028,0.10793329775333,-0.051473524421453]],[[-0.0069100991822779,-0.10874593257904,0.091150611639023],[-0.061253625899553,-0.15577910840511,0.09478621929884],[-0.011174662970006,0.086526229977608,0.079109437763691]],[[-0.030453154817224,0.038284290581942,0.32852491736412],[-0.073959030210972,-0.040035471320152,0.012362843379378],[-0.052729383111,-0.064476981759071,-0.098657004535198]],[[0.19293493032455,0.12844689190388,0.19900348782539],[-0.0054639019072056,0.030511658638716,0.014576437883079],[-0.0059715434908867,0.10003373026848,-0.05615447089076]],[[-0.0073895468376577,-0.29893988370895,0.033478144556284],[-0.019852133467793,0.05881728976965,0.0020221164450049],[0.037626761943102,0.08093249797821,-0.076806753873825]],[[0.052502784878016,0.055718991905451,-0.0643674954772],[-0.050048753619194,-0.00763487117365,0.041522394865751],[0.063766397535801,-0.073057256639004,0.016839399933815]],[[-0.011547053232789,-0.076376065611839,-0.089570812880993],[-0.05840552225709,0.079553857445717,-0.047892682254314],[0.044183973222971,0.068239331245422,-0.038309372961521]],[[0.038165424019098,-0.032347336411476,0.039562687277794],[-0.095853760838509,0.050256829708815,-0.015551527962089],[-0.032140843570232,0.080327853560448,-0.058742009103298]],[[-0.02975207567215,0.1113798096776,0.010031953454018],[-0.014653403311968,0.088494941592216,0.048788759857416],[-0.080518953502178,-0.15113025903702,-0.07343116402626]],[[-0.00068089284468442,0.042698070406914,-0.0071066631935537],[0.050236705690622,-0.010625225491822,-0.033830858767033],[-0.063587255775928,-0.0066430736333132,0.020414335653186]],[[-0.014683144167066,-0.049666091799736,0.087366782128811],[-0.037713143974543,-0.064236663281918,-0.042778633534908],[-0.15614925324917,-0.14408992230892,-0.011047560721636]],[[-0.0044590383768082,0.074687242507935,0.11487134546041],[0.030933305621147,-0.08234479278326,-0.030636694282293],[0.050253786146641,-0.037752036005259,0.0077241170220077]],[[0.05115370079875,0.066759258508682,0.14356683194637],[-0.049252714961767,-0.031031630933285,0.074983775615692],[-0.080024287104607,-0.047565218061209,0.01267858594656]],[[0.020753797143698,0.052637528628111,0.159862190485],[-0.057980317622423,-0.074443489313126,-0.008687230758369],[-0.025147626176476,-0.041428156197071,-0.106590308249]],[[-0.066728495061398,-0.051039077341557,0.059755638241768],[-0.031225809827447,0.084880463778973,0.11064338684082],[-0.12970468401909,-0.055869963020086,0.0053813154809177]],[[-0.10255060344934,-0.024646075442433,-0.039582394063473],[-0.071210317313671,-0.087370686233044,-0.0087423995137215],[-0.092962823808193,0.021762870252132,0.10113725066185]],[[-0.055054266005754,-0.07536806166172,0.0056532439775765],[0.083914250135422,-0.12678933143616,-0.037502892315388],[-0.0153624471277,-0.029422976076603,-0.010389089584351]],[[0.016925305128098,0.033725373446941,-0.28685957193375],[0.093331798911095,0.010978146456182,-0.0029535971116275],[0.024961551651359,0.12478223443031,-0.067189894616604]],[[0.082069680094719,0.014461252838373,-0.09501925110817],[-0.027325395494699,-0.034135453402996,0.060754869133234],[0.16750568151474,0.2262566536665,0.0085208546370268]],[[-0.10554949939251,-0.13785797357559,-0.12435485422611],[0.032219436019659,0.0049067544750869,0.11022206395864],[-0.06372008472681,-0.047435604035854,-0.13307686150074]],[[-0.080960005521774,-0.18422895669937,0.022880285978317],[-0.05715249851346,0.059541415423155,-0.045879319310188],[-0.15939363837242,-0.053102727979422,0.013274032622576]],[[-0.099380828440189,0.038896478712559,-0.026831991970539],[-0.093367695808411,0.03785702213645,-0.084353029727936],[0.10592960566282,-0.010533548891544,-0.058136273175478]],[[-0.056974899023771,0.0939110070467,0.070564717054367],[0.046430811285973,-0.079079926013947,-0.012648263946176],[0.071450181305408,-0.014683394692838,-0.12529291212559]],[[-0.015368504449725,-0.078218914568424,0.021262420341372],[0.0032589675392956,0.10913118720055,-0.020892748609185],[0.044616065919399,-0.30421003699303,-0.068640358746052]],[[0.10068872570992,-0.071117475628853,0.041273225098848],[0.056359514594078,0.056625299155712,-0.010423004627228],[0.022694014012814,-0.14047449827194,-0.045854367315769]],[[-0.2006242275238,-0.058149568736553,-0.085116177797318],[-0.024385979399085,0.0029377879109234,-0.08404278755188],[-0.055531822144985,-0.12697273492813,0.0043473681434989]],[[-0.063089065253735,-0.10818900167942,0.08112895488739],[-0.060726258903742,-0.06238479912281,-0.025461543351412],[-0.098253846168518,0.20275777578354,0.2275380641222]],[[0.015021862462163,0.023347847163677,0.11554658412933],[-0.026480855420232,-0.0094779897481203,0.012733796611428],[0.028881840407848,0.072350837290287,-0.075634367763996]],[[0.046080853790045,-0.038695588707924,0.0012342067202553],[-0.16967885196209,-0.066081956028938,-0.10421761125326],[-0.15832199156284,-0.035708770155907,-0.037275318056345]],[[-0.13736090064049,0.019430181011558,-0.18106167018414],[-0.033226042985916,-0.076460547745228,-0.062070120126009],[0.051376432180405,-0.06110792607069,0.14000457525253]],[[0.11446352303028,-0.045060269534588,0.18028762936592],[-0.00710045453161,0.034210819751024,-0.012145132757723],[-0.024998024106026,-0.089497908949852,0.12527406215668]],[[0.11067698150873,0.043439447879791,-0.013401760719717],[-0.054504383355379,0.10376024991274,0.065628573298454],[-0.068188697099686,0.0073416437953711,0.0037462103646249]],[[-0.13595072925091,-0.0011853566393256,-0.0074437628500164],[-0.0094206659123302,-0.10488238930702,0.021721269935369],[-0.072868414223194,0.078927651047707,-0.12987619638443]],[[-0.053892783820629,0.067119769752026,0.089108660817146],[0.050129394978285,-0.0095382146537304,0.050696723163128],[0.044950090348721,-0.063756726682186,-0.076497338712215]],[[-0.0062869004905224,0.046035688370466,0.019544227048755],[0.010029223747551,0.073653504252434,0.0025776827242225],[0.056963630020618,-0.0021297540515661,0.025446543470025]],[[0.0031854142434895,0.033223088830709,-0.0093703167513013],[-0.033633299171925,0.048094220459461,-0.070696018636227],[-0.13861334323883,0.035956066101789,-0.077824905514717]],[[0.075309991836548,0.022864947095513,-0.021022053435445],[0.0097140409052372,0.088788837194443,-0.14426280558109],[0.0064598363824189,0.052931297570467,0.15034221112728]],[[0.014449562877417,0.080651722848415,0.21110062301159],[-0.065275445580482,0.011904249899089,0.16611613333225],[-0.034116897732019,-0.041375398635864,0.064008720219135]],[[-0.049412164837122,0.003219862934202,-0.0016807754291221],[0.053094789385796,-0.10792624205351,0.01966780051589],[-0.048462722450495,0.12117033451796,-0.0074784844182432]],[[0.15005250275135,-0.12880448997021,-0.069925375282764],[-0.088239192962646,-0.19253844022751,0.19197258353233],[0.12806232273579,-0.068604685366154,-0.066083155572414]],[[0.087236106395721,0.15109197795391,0.20336554944515],[-0.058669552206993,0.13241678476334,0.15649506449699],[-0.12104952335358,0.032549846917391,-0.063092552125454]],[[0.024035036563873,-0.021769423037767,0.1248128041625],[0.068908341228962,-0.089627578854561,-0.10456009209156],[-0.15811415016651,-0.032263688743114,-0.12548297643661]],[[-0.087828934192657,-0.015374870970845,-0.036465235054493],[0.024831434711814,0.00042470899643376,-0.18292777240276],[0.043141752481461,0.058847852051258,0.05318071693182]],[[-0.10076307505369,-0.097584933042526,0.034017730504274],[-0.14921237528324,-0.12462428957224,-0.026715876534581],[-0.11082527041435,-0.10586082935333,-0.12096190452576]],[[-0.11909694224596,-0.075229361653328,-0.23558858036995],[0.00074511219281703,0.087139956653118,0.030332313850522],[-0.0076371268369257,0.028399281203747,0.018026078119874]],[[-0.0094443671405315,0.06717973947525,0.18159633874893],[0.032820507884026,-0.033056683838367,0.025848269462585],[-0.023842617869377,0.0030144331976771,-0.048863437026739]],[[-0.071869820356369,0.13543075323105,0.19505201280117],[-0.07172617316246,0.01062527205795,0.09267295897007],[-0.18324862420559,-0.10973496735096,-0.044493366032839]],[[-0.053654033690691,-0.031790178269148,-0.25432711839676],[0.084032066166401,0.056429348886013,-0.10863982886076],[-0.022472482174635,-0.079918332397938,-0.026095300912857]],[[0.026339709758759,0.027976447716355,-0.049940887838602],[0.011891414411366,-0.081767737865448,0.040165413171053],[0.031172079965472,-0.075967490673065,0.027859898284078]],[[0.048390913754702,0.10328607261181,0.19084979593754],[-0.010313398204744,-0.14255852997303,0.098586469888687],[-0.13488903641701,-0.079811684787273,-0.11730683594942]],[[0.040236461907625,0.14871783554554,0.19344229996204],[0.035410176962614,0.15043692290783,0.031854707747698],[-0.0055886236950755,0.073272705078125,-0.060307487845421]],[[-0.033542387187481,-0.15242923796177,-0.1693648993969],[0.18318194150925,0.024589501321316,0.012330973520875],[0.11783098429441,0.086568646132946,0.060080949217081]],[[-0.032876662909985,-0.029034469276667,-0.078049167990685],[0.10338714718819,0.052466977387667,0.10067047178745],[-0.007864679209888,-0.13370457291603,-0.070390865206718]],[[0.023798421025276,0.053649056702852,0.05357863008976],[-0.033121522516012,-0.027963379397988,-0.048777334392071],[0.012279546819627,0.011608926579356,-0.031208105385303]],[[0.04993999376893,0.091161385178566,-0.18095523118973],[-0.0713030397892,0.16185826063156,-0.26186588406563],[-0.068155020475388,0.0036486249882728,-0.023512624204159]],[[-0.0037104589864612,0.14039689302444,0.013433476909995],[0.070262245833874,0.060312204062939,-0.0039124870672822],[-0.01503402646631,0.10392698645592,0.069147691130638]],[[-0.012536210939288,0.009657715447247,0.075239710509777],[-0.042205806821585,0.076377339661121,0.081645667552948],[-0.1334687769413,-0.00075766927329823,-0.031533606350422]],[[-0.032071318477392,-0.0090841688215733,0.049341067671776],[-0.020055880770087,-0.0032227975316346,0.017578028142452],[0.044929649680853,0.039223000407219,0.10720036178827]],[[0.06551368534565,0.056763630360365,0.19878357648849],[0.036972086876631,-0.050558887422085,0.16304329037666],[-0.15538187325001,-0.13669788837433,0.013535583391786]],[[-0.076960228383541,-0.14557245373726,0.028257934376597],[0.039981473237276,-0.064492553472519,-0.20521134138107],[-0.041800525039434,-0.098346225917339,-0.14496128261089]],[[0.038958378136158,-0.08722285181284,-0.15601620078087],[-0.089464217424393,-0.0032357899472117,0.0056515955366194],[-0.18481402099133,-0.058420460671186,-0.19946072995663]],[[-0.012605333700776,-0.060150969773531,0.055164318531752],[-0.094857044517994,0.032573971897364,0.045457150787115],[-0.092619769275188,0.046697322279215,0.16781206429005]],[[-0.094750180840492,0.014533095993102,-0.014288133010268],[0.0095790345221758,0.043764233589172,-0.070530340075493],[0.16379997134209,0.037612780928612,0.064436867833138]]],[[[-0.11666924506426,-0.081122383475304,0.13723380863667],[-0.01114924158901,-0.043445095419884,-0.12523606419563],[-0.042813841253519,-0.038512282073498,0.14129510521889]],[[-0.064776785671711,0.041479781270027,0.14030727744102],[-0.088487446308136,-0.047245282679796,0.082056999206543],[0.027175411581993,0.020540488883853,-0.065372571349144]],[[-0.10162557661533,-0.023902006447315,0.15126276016235],[-0.14174817502499,-0.023561727255583,0.044653497636318],[-0.16489493846893,-0.026507653295994,0.17890585958958]],[[-0.22088475525379,-0.055373419076204,-0.060071110725403],[-0.077679857611656,0.018233316019177,-0.11664755642414],[0.0042823920957744,-0.062949195504189,-0.13066971302032]],[[-0.01278271060437,0.13278403878212,-0.12066475301981],[0.18616093695164,-0.039440512657166,-0.029246941208839],[0.00098361971322447,-0.039862297475338,-0.13334363698959]],[[0.13202024996281,-0.068958073854446,0.25248965620995],[-0.00019277154933661,0.10916087776423,0.028002006933093],[0.062689378857613,-0.017004365101457,0.24690598249435]],[[-0.06258662045002,-0.015897918492556,-0.058887183666229],[-0.027282385155559,0.022212609648705,-0.061558987945318],[-0.066866889595985,0.011489162221551,-0.2026152163744]],[[-0.048050712794065,0.067456685006618,-0.0077273868955672],[-0.056399278342724,0.0070046395994723,-0.013124777004123],[0.071358993649483,0.040441289544106,-0.16454590857029]],[[-0.088511541485786,0.068087331950665,0.069973580539227],[0.047233279794455,0.017840018495917,-0.0045999069698155],[-0.066118024289608,-0.12168869376183,0.0013165604323149]],[[0.060283116996288,-0.069733269512653,-0.11412789672613],[-0.054430097341537,-0.091771349310875,-0.06351850181818],[-0.048700533807278,0.010866842232645,0.097302936017513]],[[0.12980565428734,-0.0099139446392655,-0.031170768663287],[0.0037803223822266,0.11415214836597,0.0066640381701291],[-0.10165803879499,-0.046051122248173,-0.091881550848484]],[[0.0061714695766568,-0.11953628063202,-0.059604898095131],[-0.086324125528336,0.035666175186634,-0.027042482048273],[-0.1209409236908,-0.13344232738018,-0.021065033972263]],[[-0.11488954722881,0.087896123528481,0.05849090218544],[-0.089371085166931,0.037251528352499,-0.10276201367378],[-0.056687202304602,0.00036643620114774,-0.12028770893812]],[[0.010069014504552,-0.14697515964508,-0.050203666090965],[0.083965644240379,-0.010545825585723,-0.11868371069431],[-0.039669387042522,0.10844171047211,-0.13829806447029]],[[-0.019895438104868,-0.23365212976933,0.14555528759956],[0.099076367914677,-0.15989047288895,-0.27804958820343],[-0.064143739640713,-0.061322350054979,0.086183145642281]],[[0.10489601641893,-0.046533588320017,0.034092754125595],[0.015818025916815,-0.11504434794188,-0.03885055705905],[-0.029781874269247,-0.065405480563641,-0.073456026613712]],[[-0.029137125238776,0.026931563392282,-0.079734660685062],[-0.072985075414181,0.1039552167058,0.049730524420738],[-0.034290716052055,-0.06477789580822,-0.016897816210985]],[[-0.041253790259361,-0.027297735214233,-0.070735178887844],[-0.077611953020096,-0.038005832582712,0.090759620070457],[-0.11825378239155,0.022173492237926,-0.19966857135296]],[[-0.026125250384212,-0.0031343100126833,-0.019437003880739],[-0.10119689255953,-0.067149788141251,-0.12098890542984],[0.0086584147065878,0.022380052134395,0.081488646566868]],[[0.042477242648602,0.02970308624208,-0.0087325209751725],[-0.0071219122037292,0.076032504439354,0.00046445222687908],[0.063964545726776,0.084968127310276,0.0049938634037971]],[[0.13288588821888,-0.019914470613003,-0.129090949893],[0.058385170996189,-0.027010576799512,0.0097469510510564],[-0.038271002471447,-0.16541785001755,0.15132717788219]],[[-0.20469859242439,-0.18817833065987,-0.24062731862068],[0.043793652206659,-0.16221258044243,-0.31370291113853],[0.035332590341568,0.014388942159712,-0.19241626560688]],[[-0.00623117107898,0.026472091674805,-0.16751125454903],[0.014482638798654,-0.13328637182713,-0.014264153316617],[0.0045721400529146,-0.060185432434082,-0.12751483917236]],[[0.027796551585197,-0.0041693607345223,-0.04435658082366],[-0.14492703974247,-0.023726968094707,-0.14196789264679],[0.066677071154118,-0.030814418569207,-0.28508359193802]],[[0.0075843273662031,0.087934374809265,-0.16078817844391],[0.00026689871447161,-0.010680058971047,0.047166034579277],[-0.11803850531578,-0.19451434910297,-0.091880857944489]],[[-0.14938655495644,-0.021419430151582,-0.049156229943037],[-0.16465802490711,-0.16721768677235,-0.16662195324898],[-0.19506397843361,-0.040872354060411,-0.065776072442532]],[[-0.089782737195492,0.037664730101824,-0.041824731975794],[0.0881402567029,-0.043489165604115,0.028214471414685],[-0.11946632713079,-0.037639189511538,-0.13902358710766]],[[-0.14350041747093,0.12741592526436,-0.029596593230963],[-0.29712781310081,-0.079768188297749,0.037115816026926],[-0.0016153848264366,-0.10927093029022,0.0023443796671927]],[[-0.01881087012589,-0.007691137958318,-0.2195393294096],[-0.020415028557181,-0.042893178761005,0.0018572376575321],[-0.12491892278194,0.081406027078629,-0.0030724902171642]],[[-0.10201918333769,0.017817268148065,-0.0047385231591761],[-0.064199812710285,0.0054598469287157,-0.10990968346596],[0.0077378507703543,-0.038332331925631,-0.11866690218449]],[[-0.12976133823395,0.016972694545984,-0.14685268700123],[0.0023351009003818,0.0061887372285128,0.033326685428619],[-0.011866825632751,0.10178949683905,-0.015391481108963]],[[-0.028757326304913,-0.0040983804501593,0.061464313417673],[-0.02279850281775,-0.017397675663233,0.02388197183609],[-0.061098255217075,-0.031263090670109,-0.083411648869514]],[[-0.0036496713291854,0.0080422125756741,0.11960043013096],[0.077833443880081,0.0012373239733279,0.0038482679519802],[-0.17405407130718,-0.093785211443901,0.086383275687695]],[[-0.015206879936159,0.06840717792511,0.010248621925712],[0.018489284440875,-0.077327080070972,-0.054813344031572],[0.001299882074818,-0.01182998996228,-0.06404272466898]],[[-0.087103679776192,-0.027157643809915,-0.070886574685574],[-0.048692528158426,-0.11073404550552,0.041215516626835],[0.1028677970171,0.026766849681735,0.017943108454347]],[[0.018828969448805,-0.031073713675141,-0.2135606110096],[-0.025277586653829,0.12255887687206,0.10223750025034],[-0.015576923266053,-0.0083496840670705,-0.096101194620132]],[[0.13053162395954,0.052888419479132,-0.12846258282661],[0.012195371091366,-0.026791580021381,-0.1077748015523],[0.030163541436195,-0.018298652023077,-0.085429221391678]],[[0.0087170992046595,0.071994960308075,-0.012348742224276],[-0.071489974856377,-0.16246290504932,-0.099196828901768],[0.027489194646478,-0.016411226242781,0.017799597233534]],[[-0.093736961483955,-0.10669157654047,-0.10775227099657],[-0.049045965075493,-0.06622164696455,-0.046149637550116],[-0.13146014511585,-0.049277048557997,-0.076378308236599]],[[-0.031248454004526,0.035179074853659,-0.018539005890489],[-0.00087348680244759,0.039151482284069,0.01579581387341],[-0.050495207309723,-0.049376502633095,-0.037681389600039]],[[0.079472318291664,0.09046683460474,0.10044622421265],[-0.11144685000181,0.050043884664774,0.037694081664085],[-0.075236447155476,0.015744214877486,0.055747430771589]],[[0.061865445226431,0.13155338168144,0.01590795814991],[-0.051589924842119,0.048901289701462,0.011731686070561],[0.031397867947817,-0.055219806730747,0.059834558516741]],[[0.058835659176111,0.077094659209251,-0.28141376376152],[-0.026425529271364,-0.19462144374847,-0.18029008805752],[0.060450166463852,-0.13435792922974,-0.021858680993319]],[[-0.052658431231976,-0.0034051951952279,-0.055331211537123],[-0.011864348314703,0.041698765009642,0.048244308680296],[-0.048863954842091,-0.004713237285614,0.060668669641018]],[[-0.00045391751336865,0.1490503102541,-0.01479169074446],[-0.011647444218397,-0.11519808322191,-0.077932380139828],[-0.05809497833252,-0.0072767618112266,-0.037242732942104]],[[-0.078782230615616,0.035813935101032,-0.033636786043644],[0.011697417125106,-0.094004102051258,-0.029183618724346],[-0.064435616135597,0.14235329627991,0.11841359734535]],[[0.028627509251237,0.10195150971413,-0.19811089336872],[0.078308410942554,0.022097898647189,-0.0046122362837195],[-0.10193637013435,0.019890569150448,0.013221311382949]],[[-0.1014387384057,-0.054517421871424,-0.0045713162980974],[0.066492520272732,-0.10086217522621,0.011140710674226],[-0.11036934703588,-0.1302811652422,-0.1035905405879]],[[-0.13756911456585,0.10690458118916,0.11619153618813],[-0.061425641179085,-0.14103256165981,-0.010564744472504],[-0.12713856995106,-0.060863845050335,0.024940444156528]],[[-0.071388304233551,-0.042646329849958,-0.049543004482985],[-0.024835044518113,0.039328902959824,0.0025712717324495],[0.040978219360113,0.09035786986351,-0.011625093407929]],[[-0.16758240759373,0.10432880371809,0.039487149566412],[-0.086369231343269,-0.05156172066927,-0.0085570700466633],[-0.22085057199001,-0.18255786597729,-0.0473438128829]],[[0.098004847764969,-0.059495270252228,-0.063281059265137],[-0.084963127970695,-0.085522457957268,-0.047146487981081],[-0.13779398798943,0.025707306340337,-0.043907456099987]],[[-0.15526100993156,0.065193496644497,0.17195810377598],[0.093863718211651,0.075343236327171,-0.072017155587673],[-0.033188451081514,0.058302003890276,0.039119053632021]],[[-0.075156860053539,-0.17336595058441,-0.022498335689306],[-0.016766518354416,-0.0006721974350512,-0.099246770143509],[-0.095567643642426,-0.04257307946682,0.043050449341536]],[[0.0098156938329339,-0.080133989453316,-0.13622483611107],[-0.038120783865452,0.23075814545155,0.020502097904682],[-0.040820524096489,-0.13305687904358,0.019634988158941]],[[-0.14286725223064,-0.018512152135372,0.060212522745132],[-0.00077126495307311,0.046715430915356,-0.084319174289703],[-0.030343480408192,-0.14248518645763,-0.066502287983894]],[[0.019424816593528,-0.041924644261599,0.077002458274364],[0.014750550501049,0.14319568872452,-0.014551891945302],[-0.010702503845096,0.078212670981884,-0.031645487993956]],[[-0.043988090008497,0.036797486245632,-0.074643060564995],[0.11703748255968,0.041583448648453,-0.031711339950562],[-0.084085270762444,-0.031061360612512,-0.11303667724133]],[[0.074160546064377,-0.14710336923599,-0.098972365260124],[-0.041616227477789,0.041284538805485,0.0064088790677488],[0.051550045609474,0.14946593344212,-0.0092082004994154]],[[0.054408200085163,-0.016208358108997,0.073055997490883],[0.048212643712759,-0.12208291143179,-0.016478767618537],[-0.029760768637061,0.026818614453077,-0.028908995911479]],[[0.017155051231384,-0.091344095766544,0.022163145244122],[-0.063090607523918,0.0043194582685828,-0.018414894118905],[-0.1190762668848,0.026910435408354,0.031087428331375]],[[0.073488160967827,-0.047668650746346,0.088480807840824],[-0.05875626206398,0.04633716866374,-0.11563236266375],[0.08654723316431,-0.080272331833839,0.063534379005432]],[[0.088586032390594,0.15407100319862,-0.059599697589874],[-0.012149214744568,0.083553150296211,0.073674656450748],[0.062617018818855,-0.09614585340023,-0.043297860771418]],[[0.021536970511079,0.034368127584457,0.010417866520584],[0.028882138431072,-0.086902484297752,0.0079976674169302],[0.0087558655068278,0.064020469784737,0.1200203076005]]],[[[-0.01526759006083,-0.11905135959387,0.057255994528532],[0.021966138854623,0.011632711626589,0.029048535972834],[0.1070383861661,0.03175388649106,0.012423219159245]],[[-0.047524854540825,-0.071677379310131,-0.016926005482674],[0.11599314212799,0.12030085176229,-0.052979480475187],[-0.070157632231712,-0.060248170047998,0.010251174680889]],[[0.021158188581467,0.063513725996017,0.035720203071833],[-0.068164207041264,0.019007069990039,0.17713713645935],[-0.081596858799458,-0.041666690260172,-0.070202715694904]],[[-0.040436416864395,-0.0090922517701983,0.011304670013487],[-0.10314293950796,-0.047930616885424,-0.006034183781594],[-0.025031426921487,0.10138903558254,-0.056660294532776]],[[0.074291713535786,0.0051630400121212,-0.11664271354675],[-0.056704808026552,-0.037128865718842,-0.065449707210064],[0.040861655026674,-0.10795541852713,-0.088475570082664]],[[0.020189560949802,0.11913070827723,-0.17412361502647],[-0.020496526733041,0.079564929008484,0.012170875445008],[0.0079734427854419,0.015458970330656,0.029157331213355]],[[-0.073767527937889,0.0022612812463194,0.06866305321455],[-0.095202513039112,-0.10906495898962,0.11647480726242],[0.020483182743192,-0.02878818102181,0.080156594514847]],[[-0.032595492899418,-0.022334018722177,-0.11923183500767],[-0.0067571611143649,-0.075821369886398,-0.12078505009413],[0.0047053908929229,0.012464442290366,0.1381743401289]],[[-0.0032426370307803,-0.087784759700298,-0.051712371408939],[0.054882526397705,0.0029357967432588,0.055509373545647],[-0.019522974267602,-0.01999538205564,0.04840587079525]],[[-0.02477796189487,-0.17819236218929,0.054435160011053],[-0.010462730191648,0.0041420240886509,-0.007651892490685],[0.026257697492838,-0.12192697823048,-0.088406316936016]],[[-0.054293215274811,0.03638019412756,0.01795993372798],[0.0089557403698564,0.022182945162058,0.038635436445475],[0.080506160855293,0.1717584580183,0.048589024692774]],[[0.0055433688685298,-0.04206557571888,0.10353515297174],[0.015148462727666,-0.019373446702957,0.062169581651688],[0.017152423039079,0.033202700316906,0.057533212006092]],[[0.065591402351856,0.037411775439978,-0.030323147773743],[-0.045234985649586,-0.013376541435719,-0.050954911857843],[0.038190182298422,-0.12773680686951,0.024945249781013]],[[-0.0095819095149636,0.026736861094832,-0.079201273620129],[0.079539127647877,-0.038892704993486,0.00095538288587704],[-0.030373938381672,-0.031367857009172,-0.037490282207727]],[[-0.088488005101681,0.0051437425427139,-0.06348367780447],[-0.025769198313355,-0.002543596085161,0.044312838464975],[-0.075489290058613,0.078532993793488,-0.036391794681549]],[[0.018584219738841,0.065055564045906,-0.029734369367361],[0.11921503394842,-0.01299349591136,-0.018079878762364],[-0.051143053919077,-0.011860842816532,0.083578988909721]],[[0.09768108278513,0.03720847517252,0.052435029298067],[-0.024620262905955,0.10460579395294,0.017699146643281],[-0.024795165285468,-0.043886929750443,0.035359371453524]],[[-0.016024416312575,-0.051145516335964,-0.075795292854309],[-0.054223272949457,0.010847160592675,0.039129737764597],[-0.066144026815891,-0.039379999041557,-0.024240793660283]],[[-0.062540404498577,-0.075066357851028,0.14044596254826],[0.0029731136746705,-0.016298085451126,-0.0097850924357772],[0.084792889654636,0.00038040289655328,-0.10210651159286]],[[-0.097531966865063,0.073616996407509,-0.029247315600514],[-0.077287457883358,-0.012599394656718,-0.0022291848435998],[-0.010587596334517,-0.0043035000562668,-0.15088164806366]],[[-0.05737754330039,-0.014301229268312,-0.090331420302391],[-0.0088750459253788,-0.0045467191375792,0.055176623165607],[-0.014346282929182,-0.026025058701634,0.041076675057411]],[[0.022309923544526,-0.052066292613745,0.079778581857681],[-0.0012096791760996,-0.081557609140873,-0.0058497884310782],[-0.033326052129269,0.023223733529449,0.070828251540661]],[[0.025123530998826,0.017188658937812,-0.041625577956438],[0.035884264856577,-0.034711021929979,0.019907696172595],[-0.014639714732766,0.011630763299763,0.056000508368015]],[[-0.054388258606195,-0.053248144686222,0.044241394847631],[-0.023358097299933,0.065029367804527,0.049417220056057],[-0.013550966978073,-0.028856663033366,-0.079420514404774]],[[-0.010980763472617,0.007970348931849,0.040985882282257],[0.021502593532205,0.0095249656587839,-0.095108851790428],[-0.13075797259808,-0.025364607572556,0.02157717384398]],[[-0.019707597792149,0.036848824471235,-0.034488152712584],[-0.0055255754850805,-0.055713512003422,0.10910496115685],[-0.069950200617313,-0.062029331922531,0.041611976921558]],[[-0.084803372621536,-0.074328854680061,0.0047002523206174],[-0.057261995971203,0.0020650213118643,-0.012421743944287],[-0.014918095432222,0.083601392805576,-0.057854346930981]],[[0.022970532998443,-0.12208949774504,-0.054148562252522],[0.052891932427883,-0.018516464158893,-0.044975928962231],[0.021481404080987,0.16135084629059,-0.042392544448376]],[[-0.022082122042775,-0.0036575843114406,0.095186918973923],[-0.11803126335144,0.12414192408323,0.003013503504917],[-0.0060701030306518,-0.068344071507454,0.004349994007498]],[[-0.12279325723648,0.013460846617818,-0.14749449491501],[-0.044092766940594,-0.052389610558748,-0.020186103880405],[0.027269652113318,-0.064701877534389,-0.12659353017807]],[[0.011816643178463,0.028114303946495,-0.18478974699974],[0.1308995038271,0.097387261688709,-0.010526387020946],[0.076874062418938,0.06735010445118,0.046036139130592]],[[-0.018525715917349,0.015576349571347,-0.081258095800877],[-0.024551883339882,0.0055302525870502,0.060833305120468],[-0.077811606228352,0.0055545195937157,-0.13990013301373]],[[0.031048517674208,-0.047279745340347,-0.018608391284943],[0.039244126528502,-0.080613434314728,-0.057186242192984],[-0.0592036023736,-0.0074419556185603,-0.043617311865091]],[[0.016634436324239,0.0081016505137086,0.088423147797585],[0.050160225480795,0.06767163425684,-0.04242129996419],[-0.024503966793418,-0.013872172683477,-0.05968164652586]],[[0.011243882589042,0.14084427058697,0.015278457663953],[-0.01734228618443,-0.048202957957983,-0.047232259064913],[-0.020631877705455,-0.17631690204144,-0.066445507109165]],[[-0.023090392351151,-0.046571638435125,0.15499636530876],[0.013237065635622,0.058429230004549,-0.057034309953451],[0.0084282616153359,0.052102047950029,-0.050440739840269]],[[-0.025522664189339,-0.20522983372211,0.13668988645077],[-0.057069707661867,-0.046531673520803,-0.072506584227085],[-0.015638863667846,0.0069348597899079,0.075735501945019]],[[0.093061819672585,0.050013065338135,-0.045898765325546],[-0.10582002997398,0.0096471579745412,0.018741918727756],[0.0016025822842494,-0.063545927405357,0.039849847555161]],[[-0.012779562734067,-0.04107591509819,0.0027771242894232],[-0.0080056469887495,-0.081459641456604,-0.025823982432485],[-0.068087674677372,-0.051115423440933,-0.028338573873043]],[[0.0051249554380774,-0.10282316803932,-0.15036123991013],[-0.03542585298419,-0.020255088806152,-0.031031373888254],[0.030864531174302,-0.053332630544901,0.093822374939919]],[[0.13046206533909,-0.072402611374855,-0.17562267184258],[-0.019701655954123,-0.017172994092107,0.022495688870549],[0.0084362998604774,-0.026707414537668,0.024319430813193]],[[0.042245648801327,-0.068291328847408,0.072055004537106],[0.03492446243763,-0.009776109829545,0.029378850013018],[-0.063603222370148,-0.059994090348482,0.10067376494408]],[[-0.049498293548822,0.0085759488865733,0.10313667356968],[-0.039359897375107,-0.01107160653919,0.10924948006868],[-0.017400093376637,-0.13034020364285,-0.068976983428001]],[[0.061326321214437,0.018272489309311,0.072273403406143],[-0.010958206839859,-0.0064034131355584,-0.025730548426509],[0.048257537186146,-0.031211389228702,-0.032111998647451]],[[-0.1289554387331,-0.020860942080617,-0.044454231858253],[-0.11192844063044,-0.065905503928661,-0.056491289287806],[-0.098998628556728,-0.090981461107731,0.01695798151195]],[[0.037403270602226,0.042707860469818,0.029438247904181],[0.0469143204391,0.022160002961755,0.016885673627257],[-0.043258104473352,0.092866629362106,0.020439108833671]],[[-0.0037220681551844,-0.0091503346338868,0.049064952880144],[-0.065993599593639,-0.072968326508999,-0.12559100985527],[-0.040965333580971,0.04648245126009,0.027167743071914]],[[-0.096327364444733,-0.038534216582775,-0.012064053677022],[-0.054282877594233,0.045987967401743,-0.015978150069714],[-0.0093449121341109,0.09645938128233,-0.013295649550855]],[[-0.11839409917593,0.038779128342867,0.010926619172096],[-0.039774317294359,-0.0081988386809826,0.026298228651285],[-0.07983435690403,-0.0096680605784059,-0.057988706976175]],[[0.07078155875206,0.051283303648233,0.074951872229576],[0.0066133667714894,-0.051352940499783,-0.037461344152689],[0.025808725506067,0.0028824131004512,-0.16560429334641]],[[-0.0024000874254853,0.10303460806608,-0.082899980247021],[0.0071307760663331,-0.046063996851444,0.026937199756503],[0.006586404517293,-0.090903140604496,-0.1119346767664]],[[-0.17095330357552,-0.034405507147312,-0.099429935216904],[0.17753246426582,-0.21023426949978,-0.13208255171776],[-0.0081893811002374,0.050395783036947,-0.079802691936493]],[[0.11494954675436,0.033319376409054,-0.072507925331593],[0.055550992488861,-0.042063012719154,0.05827034637332],[0.052279833704233,-0.04979732260108,-0.10574278235435]],[[-0.062247190624475,-0.13594233989716,0.12915249168873],[-0.010843454860151,0.055090367794037,0.21518036723137],[-0.0032803888898343,-0.047173615545034,0.17950320243835]],[[0.096271686255932,-0.078784085810184,-0.087584905326366],[-0.038016896694899,-0.13948059082031,-0.028221476823092],[-0.037739522755146,-0.1563511043787,0.035209342837334]],[[-0.0095742829144001,-0.014094113372266,0.0031036138534546],[-0.067593477666378,0.0022896556183696,-0.13072170317173],[0.060780603438616,0.02783614769578,0.077929750084877]],[[-0.027342176064849,0.053622834384441,-0.028943508863449],[-0.049068234860897,0.032920382916927,-0.040358122438192],[-0.073576435446739,-0.05929259583354,-0.107546441257]],[[0.058398749679327,-0.060908071696758,0.047973029315472],[0.052930250763893,0.065035447478294,0.033531129360199],[0.015574825927615,-0.041584745049477,0.16047725081444]],[[0.027180999517441,0.037806753069162,-0.020634071901441],[-0.073010541498661,-0.03312112018466,0.083824969828129],[0.068505644798279,0.086864054203033,-0.12323999404907]],[[0.027443816885352,0.079489536583424,0.088383927941322],[-0.060297153890133,-0.037923745810986,-0.025802018120885],[-0.11157715320587,0.098170071840286,0.047031100839376]],[[0.040806472301483,-0.0669070109725,-0.041651844978333],[0.028819620609283,0.054124932736158,-0.061714064329863],[-0.10973484814167,0.016837194561958,0.15645878016949]],[[0.22697432339191,-0.035046674311161,-0.21225808560848],[-0.17353653907776,-0.031675942242146,-0.013723659329116],[0.047730248421431,0.066108539700508,-0.0090252486988902]],[[0.24730516970158,-0.085960656404495,-0.016228545457125],[0.099056228995323,0.030507676303387,-0.11921002715826],[-0.01288456376642,-0.025706987828016,0.097624741494656]],[[-0.15740935504436,0.10762175917625,-0.13031938672066],[0.013267338275909,-0.10880891233683,-0.073925569653511],[-0.056552115827799,0.06805332005024,0.14571411907673]]],[[[0.037783313542604,-0.10707071423531,-0.089197590947151],[-0.0035168477334082,-0.011874102987349,-0.036657087504864],[-0.015438879840076,0.023707553744316,-0.094633713364601]],[[0.021730471402407,-0.12714916467667,0.064592681825161],[0.014708324335515,-0.052262350916862,-0.035902991890907],[0.075597807765007,0.033912379294634,-0.097873896360397]],[[-0.15465113520622,0.046621851623058,-0.0062337564304471],[-0.036662723869085,0.0028676511719823,-0.033147782087326],[0.032250490039587,-0.049032855778933,0.024988932535052]],[[-0.030444068834186,0.0013291974319145,-0.10319390892982],[-0.042941387742758,0.014742759056389,0.040115740150213],[-0.063803650438786,-0.0429897159338,-0.021866153925657]],[[-0.058015827089548,0.2000980079174,0.12777714431286],[0.068977601826191,0.050386685878038,0.032610315829515],[0.088821686804295,0.040996428579092,-0.060608860105276]],[[-0.018121421337128,-0.064634256064892,0.15492774546146],[0.094745144248009,-0.075212337076664,-0.018753753975034],[0.084304697811604,0.054917953908443,-0.065192826092243]],[[-0.040004387497902,0.09507554769516,-0.090646468102932],[-0.1208435818553,0.025911966338754,-0.10599249601364],[-0.042313173413277,-0.014913431368768,-0.04663697257638]],[[-0.028326397761703,-0.017329949885607,-0.062165006995201],[-0.008058087900281,0.039636723697186,0.043467093259096],[-0.0043060840107501,0.0050114472396672,-0.14720790088177]],[[0.029248531907797,0.07523588091135,-0.028204636648297],[-0.0002285577065777,0.018384233117104,0.10699754953384],[-0.063241481781006,-0.037757087498903,-0.13250850141048]],[[-0.15804700553417,-0.0030023055151105,0.016230221837759],[0.1217553243041,0.026511859148741,0.11540208011866],[-0.044979929924011,-0.087209440767765,0.026227872818708]],[[-0.0023583760485053,-0.083003155887127,-0.043701030313969],[0.084681108593941,-0.023772932589054,-0.10238337516785],[0.044971860945225,0.014492594636977,0.069527491927147]],[[-0.05441427603364,-0.12091036885977,-0.039716865867376],[-0.098036602139473,-0.020374672487378,-0.075484380125999],[-0.056971214711666,0.0049173319712281,-0.11009711027145]],[[0.11741312593222,0.052004508674145,0.020808102563024],[-0.075599670410156,-0.10011228919029,-0.097037918865681],[0.018925279378891,-0.081572465598583,-0.078564859926701]],[[-0.012300693430007,0.017118645831943,0.022751299664378],[0.014908203855157,-0.034388121217489,0.043524939566851],[-0.017419015988708,-0.01494565140456,-0.062300805002451]],[[0.021125804632902,0.16416667401791,0.016465460881591],[-0.081854157149792,0.0098827034235001,0.039047479629517],[-0.036156769841909,-0.1354748159647,-0.046378944069147]],[[0.062978655099869,0.092860199511051,-0.0046423855237663],[-0.0010371056851,0.011633140966296,-0.076111912727356],[-0.11825433373451,0.0050569642335176,-0.10137694329023]],[[-0.0065023386850953,0.06142694875598,0.04798174276948],[0.017168138176203,0.13522697985172,-0.034700229763985],[-0.030313283205032,-0.051171515136957,0.050984106957912]],[[-0.01443484891206,0.1515104919672,0.076799102127552],[0.07111445069313,-0.024899929761887,0.059114530682564],[-0.035921767354012,-0.065661393105984,0.049006246030331]],[[0.11424501985312,-0.19667099416256,-0.11737904697657],[0.023963226005435,-0.020643062889576,0.09847541898489],[0.0081120543181896,0.041685096919537,-0.015426315367222]],[[0.041270088404417,0.082642167806625,0.079643659293652],[-0.10875182598829,-0.023643041029572,-0.016962559893727],[-0.00089445279445499,-0.0069712582044303,0.0025637678336352]],[[0.10321881622076,0.12857846915722,-0.034331195056438],[-0.061007760465145,0.069219559431076,0.02489247918129],[-0.088366486132145,0.040599394589663,-0.075484275817871]],[[-0.0073990914970636,0.015610625967383,0.042651057243347],[-0.050125014036894,-0.045848973095417,-0.088283777236938],[-0.081475555896759,0.052160061895847,-0.070459648966789]],[[-0.014166171662509,-0.004747040104121,0.010189289227128],[-0.059820517897606,0.042296763509512,-0.157953992486],[-0.032611824572086,0.10687730461359,-0.084670089185238]],[[-0.029881406575441,-0.020038112998009,0.046518754214048],[-0.033655099570751,-0.0099002867937088,-0.075195878744125],[0.017048697918653,0.077985435724258,0.066822372376919]],[[-0.024856617674232,0.1126889064908,0.058558527380228],[0.00052747369045392,0.084641739726067,0.11569587886333],[-0.035505961626768,0.0021398160606623,-0.021196018904448]],[[0.11996432393789,-0.028767764568329,0.11707390844822],[0.13005410134792,0.016100706532598,-0.04138920456171],[-0.039956759661436,-0.093760393559933,-0.1318391263485]],[[-0.00055013620294631,-0.026700353249907,0.010741178877652],[-0.060405384749174,0.065665699541569,-0.13699853420258],[-0.0024589644744992,0.092319786548615,-0.15087166428566]],[[0.05948306620121,-0.17075558006763,-0.020849872380495],[0.11504234373569,-0.1299574226141,0.01961019448936],[0.029200969263911,-0.010258229449391,-0.089066855609417]],[[-0.036207117140293,0.10788138955832,0.057159401476383],[-0.079269133508205,0.028312476351857,-0.084278412163258],[-0.10617965459824,-0.042974915355444,0.039230681955814]],[[-0.047267604619265,-0.12241507321596,-0.027091104537249],[-0.071602374315262,0.052537843585014,0.14178216457367],[0.0869465097785,-0.0010201886761934,0.069793805480003]],[[-0.093587569892406,-0.091208159923553,-0.05140994861722],[-0.0078179519623518,-0.056570548564196,-0.029624057933688],[0.046005647629499,0.009355659596622,0.0078900149092078]],[[-0.097043141722679,0.0046298410743475,0.01290633995086],[-0.00076464912854135,0.025786450132728,0.086820796132088],[0.06207362934947,-0.034750539809465,-0.029844699427485]],[[0.15886028110981,0.014664688147604,0.13251456618309],[0.07153694331646,-0.0085890721529722,0.003411119338125],[-0.14253666996956,-0.013635072857141,-0.034920744597912]],[[0.046775314956903,0.036624971777201,-0.03466260433197],[-0.00025116439792328,-0.054106373339891,-0.009374687448144],[-0.013150739483535,-0.075863756239414,-0.047488104552031]],[[0.0098850289359689,-0.052184674888849,-0.012164512649179],[0.063457131385803,0.14273022115231,1.1097690730821e-05],[-0.097666673362255,-0.15768527984619,0.052340641617775]],[[0.02526474557817,0.068013958632946,-0.050924759358168],[-0.060624182224274,-0.061028074473143,-0.03314058855176],[0.06502266228199,0.015642877668142,0.025532871484756]],[[0.022705901414156,0.036082942038774,-0.11973449587822],[-0.011008156463504,0.044923361390829,-0.025092162191868],[-0.037794940173626,0.045969415456057,0.068451397120953]],[[0.01213239505887,0.010704061947763,0.042490992695093],[-0.035696588456631,-0.066291712224483,0.013890388421714],[0.087679386138916,-0.044642321765423,-0.090794861316681]],[[-0.029476080089808,0.057011224329472,-0.013763378374279],[-0.0074256313964725,-0.0049676657654345,-0.02423807233572],[-0.071276783943176,-0.027775045484304,-0.16917563974857]],[[-0.13902159035206,0.017427990213037,0.094792380928993],[-0.07330784201622,-0.036849778145552,0.035196829587221],[0.069245599210262,0.0035247020423412,0.07680594176054]],[[0.022427011281252,-0.092966854572296,-0.011911366134882],[0.08720513433218,0.02649213373661,-0.0315156057477],[-0.064910359680653,0.076499283313751,0.10428357869387]],[[0.16633921861649,0.1294746696949,0.10312813520432],[0.029370617121458,-0.11412918567657,-0.12168473750353],[-0.035800457000732,-0.20692177116871,-0.032991919666529]],[[0.044631719589233,0.049049369990826,0.16395577788353],[-0.073926992714405,0.042869739234447,0.024270134046674],[0.0056290281936526,-0.027973709627986,-0.13260598480701]],[[-0.068558216094971,0.015159643255174,0.085958741605282],[-0.11338267475367,-0.06112913787365,-0.011440549045801],[0.034657210111618,0.0090022906661034,0.0079401694238186]],[[-0.18226261436939,0.061738215386868,0.1440894305706],[-0.06800139695406,-0.035675454884768,-0.0064923577010632],[0.00043975206790492,-0.046149089932442,-0.048147827386856]],[[0.056899435818195,-0.028362615033984,0.015284903347492],[-0.019711872562766,0.037913780659437,-0.077457435429096],[-0.049885950982571,-0.083728477358818,0.16487792134285]],[[0.015343203209341,0.13370287418365,0.10846269130707],[-0.029117569327354,-0.086639352142811,-0.034813918173313],[0.064684249460697,0.098271124064922,0.07595357298851]],[[-0.016847062855959,0.018480703234673,0.022900547832251],[-0.10900246351957,-0.0025184815749526,-0.071670934557915],[-0.09802620857954,0.22711342573166,-0.037172190845013]],[[-0.068171307444572,-0.031167946755886,0.056837569922209],[0.044822886586189,0.18038089573383,-0.071166880428791],[-0.14634181559086,-0.11354543268681,-0.1227310821414]],[[-0.020579593256116,-0.1060204654932,-0.0084883784875274],[0.017426922917366,-0.016994468867779,0.048636443912983],[0.03687084838748,0.033306289464235,0.039177682250738]],[[0.016088860109448,-0.10395333170891,0.11105594784021],[-0.044799972325563,-0.23666132986546,-0.031267516314983],[-0.016258494928479,-0.26376235485077,-0.21167126297951]],[[0.077153883874416,-0.012155583128333,-0.041487015783787],[-0.14695574343204,0.002267011674121,-0.0084705613553524],[0.051706332713366,-0.026823403313756,0.035969648510218]],[[-0.075830586254597,0.090037196874619,0.013570886105299],[0.057159066200256,0.172368735075,0.07929090410471],[0.029764287173748,0.013397743925452,0.040534913539886]],[[-0.028438886627555,-0.16503754258156,-0.050342340022326],[0.059528917074203,0.042293567210436,-0.32150104641914],[-0.023548375815153,-0.08181443810463,0.0091983564198017]],[[-0.00043461011955515,-0.12996953725815,0.045196462422609],[-0.061905723065138,0.0075500779785216,-0.055240999907255],[-0.027690593153238,0.081395909190178,0.069973632693291]],[[0.011503037065268,-0.056237075477839,0.032649483531713],[-0.11283063143492,0.014763108454645,0.010012095794082],[0.0042451582849026,0.046102650463581,-0.11914982646704]],[[0.13574448227882,0.01686873100698,0.074026323854923],[0.031480636447668,0.025268871337175,0.067598059773445],[0.045302860438824,0.10760392248631,0.075807362794876]],[[0.019691092893481,-0.05470484867692,-0.034998137503862],[0.01705028116703,0.086462639272213,0.0084357894957066],[-0.12914314866066,-0.065912671387196,-0.055028695613146]],[[0.0087347868829966,0.050788108259439,-0.20828437805176],[0.075169324874878,0.080842569470406,0.10243042558432],[0.07360964268446,-0.023880226537585,0.010453314520419]],[[0.11701382696629,0.052186481654644,-0.11011912673712],[-0.077408969402313,-0.015601580962539,-0.054023824632168],[-0.03209587931633,0.11379650980234,-0.11153124272823]],[[0.031974036246538,-0.024696851149201,0.036570474505424],[-0.046994462609291,-0.0097310310229659,0.0053399917669594],[0.047779250890017,-0.063629843294621,-0.19049718976021]],[[0.1068195477128,-0.14168727397919,-0.018399881199002],[0.0019527073018253,-0.028453700244427,-0.10070406645536],[0.022637721151114,-0.053022801876068,0.036502923816442]],[[0.11001089215279,0.016728941351175,0.060749765485525],[0.05179600790143,0.10182013362646,-0.00078990450128913],[-0.03248668089509,-0.13966979086399,-0.1679732054472]],[[0.055042047053576,-0.10448025912046,-0.18711175024509],[-0.048598174005747,0.061570685356855,0.067494541406631],[0.047186903655529,0.074745960533619,-0.20500575006008]]],[[[0.0546451844275,-0.059528414160013,0.00028818415012211],[-0.1145388558507,-0.12049463391304,-0.14476911723614],[-0.038720916956663,0.0040318248793483,0.14736305177212]],[[0.048886727541685,0.05420084670186,0.020012460649014],[-0.14402040839195,0.043987225741148,-0.056759782135487],[0.024443762376904,-0.040176134556532,0.11597144603729]],[[0.018139138817787,0.087199673056602,-0.059200946241617],[-0.10650883615017,-0.010517925024033,0.11188798397779],[0.026324909180403,0.18111923336983,-0.052319627255201]],[[-0.025009082630277,-0.015868799760938,-0.16466681659222],[0.10045740753412,0.063824810087681,0.055661905556917],[-0.12954445183277,-0.047884225845337,-0.027470158413053]],[[-0.01558452937752,0.037954658269882,0.052735801786184],[0.0024103412870318,0.057984314858913,0.15984305739403],[0.027980061247945,-0.011673384346068,-0.084833361208439]],[[-0.17565001547337,-0.12209159880877,-0.10421290248632],[-0.015969270840287,0.10138468444347,0.031448625028133],[0.0010510813444853,0.11019267886877,0.17293395102024]],[[-0.00408506533131,0.10633409023285,-0.0074578677304089],[-0.020077237859368,0.14474430680275,0.087176293134689],[-0.051901139318943,0.0032304381020367,-0.056931760162115]],[[0.026380993425846,0.010494879446924,0.029620338231325],[0.020290056243539,0.062589801847935,0.021100087091327],[-0.028288556262851,-0.058466888964176,-0.04710989817977]],[[-0.078681848943233,-0.02279713191092,0.068972781300545],[-0.026175742968917,-0.017687866464257,-0.013528343290091],[0.03015654347837,-0.014065350405872,0.060193572193384]],[[0.0031055915169418,0.052260626107454,-0.040151972323656],[-0.1870035380125,-0.29754784703255,0.10071364045143],[-0.080542452633381,0.0019733645021915,0.052010525017977]],[[-0.13429081439972,-0.22266122698784,-0.13679099082947],[-0.0048439609818161,-0.042910315096378,0.02409958280623],[0.089439459145069,-0.00041977464570664,0.15275354683399]],[[0.11930610984564,0.054407928138971,0.031369581818581],[-0.057980209589005,-0.099385172128677,-0.18038360774517],[-0.13557973504066,-0.02798555791378,0.056545987725258]],[[0.021595058962703,-0.040414769202471,-0.022103669121861],[-0.0040131779387593,0.05958890914917,0.043286487460136],[0.007017819210887,-0.12515902519226,0.05141618475318]],[[-0.15526503324509,-0.032094646245241,-0.20280747115612],[0.019818227738142,0.061759136617184,-0.022706290706992],[0.12766861915588,0.087762176990509,0.0053118346258998]],[[0.058774802833796,-0.0561115257442,-0.0017658922588453],[0.10698058456182,-0.049873508512974,0.0023272200487554],[-0.030293874442577,-0.024225540459156,-0.090763472020626]],[[0.10097470879555,-0.037982869893312,0.12824855744839],[-0.11615338176489,-0.064461700618267,-0.0022839091252536],[-0.023413633927703,-0.012106570415199,-0.011725385673344]],[[0.046782754361629,-0.01939514093101,0.018331589177251],[0.066218145191669,0.064541421830654,-0.0061930315569043],[0.077178955078125,-0.047712042927742,0.0013174311025068]],[[0.01206124201417,-0.0061631542630494,-0.087764210999012],[0.10553558915854,0.035765968263149,-0.0200370028615],[-0.092841848731041,0.050514299422503,-0.041666891425848]],[[0.055206179618835,0.0086673824116588,0.071949526667595],[-0.13374006748199,-0.14449773728848,-0.093443542718887],[0.037823874503374,-0.012564653530717,-0.045423027127981]],[[-0.00073378585511819,0.084873698651791,0.021255580708385],[0.064577370882034,0.025824531912804,-0.048924397677183],[-0.1640567779541,-0.023742645978928,-0.098770290613174]],[[-0.15255129337311,0.12262599915266,-0.028826074674726],[-0.065357431769371,-0.092559911310673,0.084344416856766],[0.030266281217337,0.083467371761799,0.090994045138359]],[[0.017543705180287,0.0053126504644752,-0.19980382919312],[-0.087674967944622,-0.12707680463791,-0.092707306146622],[-0.048301994800568,0.081841252744198,-0.062395624816418]],[[-0.083444222807884,0.088392101228237,-0.050066463649273],[0.03187657147646,-0.10566210746765,0.01104908529669],[-0.054166994988918,0.024372350424528,0.004745970480144]],[[-0.098224557936192,-0.23618920147419,-0.23171679675579],[0.076186589896679,-0.021915258839726,0.026289127767086],[0.01200057938695,0.058897066861391,-0.14322066307068]],[[0.020263290032744,-0.019118769094348,0.048327878117561],[-0.027316892519593,-0.016154846176505,-0.053985174745321],[-0.10317824780941,-0.11955031752586,-0.055645041167736]],[[-0.09555346518755,-0.051618564873934,-0.045556358993053],[-0.066914886236191,-0.064981147646904,-0.087164185941219],[-0.019262688234448,-0.069432683289051,0.032265584915876]],[[-0.052695576101542,-0.012581643648446,-0.078355446457863],[0.023547556251287,0.010194714181125,-0.026105577126145],[0.051792271435261,-0.041750397533178,0.10640820115805]],[[0.080522581934929,0.075314372777939,-0.065233796834946],[0.028741100803018,0.07719873636961,-0.023842826485634],[-0.045798797160387,0.013247643597424,-0.19982859492302]],[[-0.086982399225235,-0.19113248586655,-0.17729756236076],[-0.10021764785051,0.11626274883747,-0.021100200712681],[0.055758334696293,0.10060436278582,0.1420823186636]],[[0.016612263396382,0.00073057191912085,-0.022380836308002],[0.11798085272312,0.016245134174824,-0.074285425245762],[0.039114687591791,0.050511002540588,-0.13490207493305]],[[0.011173552833498,-0.037486739456654,-0.026237083598971],[-0.054601237177849,-0.0062343589961529,-0.018690276890993],[0.0081623205915093,-0.026935450732708,-0.031327817589045]],[[-0.013580242171884,-0.029994789510965,-0.026237236335874],[-0.044644426554441,0.015166665427387,-0.073724500834942],[0.026242678985,0.02385345287621,0.048769421875477]],[[-0.1470927298069,0.034177530556917,0.061177458614111],[0.089058041572571,-0.13039560616016,-0.071006007492542],[-0.069873869419098,0.11603528261185,0.0018156883306801]],[[0.0078535368666053,-0.038692228496075,-0.063697651028633],[0.076270684599876,-0.040430665016174,-0.13947637379169],[0.017895480617881,0.0076196850277483,0.083074703812599]],[[-0.084031410515308,-0.049963027238846,0.032319072633982],[0.089483112096786,-0.040046606212854,-0.007694617845118],[0.071735315024853,-0.0049788323231041,-0.011676176451147]],[[0.12216604501009,0.092166639864445,0.05285831168294],[0.12315588444471,0.011992699466646,0.039155390113592],[-0.1081872433424,-0.12514753639698,-0.09322389960289]],[[0.17018984258175,-0.038468658924103,0.10578744858503],[-0.10493353754282,-0.00082105031469837,-0.038663376122713],[-0.079315468668938,-0.063564360141754,-0.11741614341736]],[[0.083976209163666,-0.023775834590197,-0.16450086236],[-0.096512548625469,-0.10033462196589,0.079662770032883],[0.050838761031628,-0.045402385294437,0.048519469797611]],[[-0.051125764846802,-0.10818202793598,-0.018452612683177],[-0.085287749767303,-0.090829528868198,-0.05042090639472],[-0.036062519997358,0.016949577257037,0.0093229217454791]],[[0.13892135024071,0.10610785335302,0.15330512821674],[-0.023879451677203,-0.063043281435966,-0.029495354741812],[-0.18539860844612,-0.086329475045204,-0.028442652896047]],[[0.0075750048272312,-0.093728065490723,-0.057994175702333],[0.16824804246426,-0.053957380354404,0.067921422421932],[0.049911662936211,-0.04468235746026,0.0018148523522541]],[[-0.0064514470286667,0.055646449327469,0.074797309935093],[-0.018031548708677,0.030286988243461,-0.041235890239477],[0.18682523071766,-0.039584275335073,-0.086743406951427]],[[0.0053082602098584,-0.012736914679408,-0.14708133041859],[-0.016060160472989,-0.050607580691576,-0.078799419105053],[0.082906238734722,0.015037409961224,0.021844813600183]],[[0.063773304224014,-0.016656776890159,-0.10084991157055],[0.064372904598713,0.018632467836142,-0.081072367727757],[0.056361049413681,0.070767849683762,0.039245054125786]],[[-0.09678590297699,-0.0070160739123821,-0.067082062363625],[0.039293132722378,-0.0035375882871449,-0.086070194840431],[0.0087023172527552,-0.10808907449245,-0.033237244933844]],[[0.096388526260853,0.088858626782894,0.096563532948494],[-0.079266980290413,-0.036509945988655,-0.014576743356884],[-0.072867169976234,0.060689959675074,0.023046687245369]],[[0.11192527413368,0.11350665986538,-0.053506582975388],[0.033344328403473,-0.089474968612194,0.028720056638122],[0.026524141430855,-0.045112285763025,-0.025490585714579]],[[-0.0084035377949476,0.040736235678196,0.015295446850359],[0.028031831607223,-0.011456850916147,0.10966263711452],[-0.092488273978233,0.02915252186358,-0.022742880508304]],[[-0.050588618963957,0.002185155171901,0.067470043897629],[-0.046809215098619,-0.086310535669327,-0.012184299528599],[0.061198197305202,-0.086432099342346,0.13978487253189]],[[-0.03387813642621,-0.0067508616484702,-0.094754442572594],[0.1613525301218,-0.0058051408268511,0.096979357302189],[0.02468484826386,-0.076030068099499,-0.097111351788044]],[[0.081683203577995,-0.031898487359285,-0.018325312063098],[-0.026103906333447,0.018699582666159,-0.11077488213778],[-0.059041321277618,0.027290703728795,-0.0039218133315444]],[[-0.055506877601147,0.094696439802647,0.11816453188658],[-0.010507328435779,-0.13779990375042,0.025032287463546],[-0.060899637639523,-0.029090229421854,-0.048850134015083]],[[-0.15246242284775,0.016270153224468,-0.054535869508982],[-0.0029679804574698,0.055250730365515,0.15325957536697],[0.0036894702352583,0.043264273554087,0.12420695275068]],[[-0.027263110503554,-0.10586882382631,-0.14611496031284],[-0.11845256388187,-0.033454969525337,-0.050263844430447],[0.095826126635075,0.11476473510265,-0.026820600032806]],[[-0.046668536961079,0.10374103486538,0.1295803040266],[0.0046526356600225,0.04506067186594,0.057093676179647],[-0.003065588651225,-0.053082663565874,-0.056414905935526]],[[-0.016261719167233,0.049200128763914,0.023992270231247],[-0.011764229275286,0.064361833035946,0.0042197247967124],[0.032427225261927,0.040872372686863,0.028451979160309]],[[0.015353953465819,0.030050221830606,-0.036659337580204],[-0.035657569766045,-0.019706195220351,0.019151845946908],[-0.015351618640125,0.098484843969345,0.048912808299065]],[[0.13899245858192,-0.023327544331551,-0.14951188862324],[-0.029852950945497,-0.20517066121101,-0.087012551724911],[-0.018671706318855,-0.054157387465239,-0.059579271823168]],[[-0.026883261278272,0.011449196375906,0.10407627373934],[-0.070083312690258,-0.028510959818959,0.036052864044905],[-0.046900704503059,0.024296944960952,0.011764872819185]],[[0.034391865134239,-0.031548399478197,-0.0033529147040099],[0.038025721907616,0.10440464317799,-0.03334403783083],[-0.0015630401903763,-0.029536390677094,-0.087542995810509]],[[-0.045834712684155,0.0096274623647332,-0.0075514800846577],[0.038314759731293,0.022648941725492,-0.060211762785912],[-0.12760277092457,-0.063915826380253,-0.083190202713013]],[[-0.030203830450773,-0.066580981016159,-0.11545915156603],[-0.13361993432045,-0.02339056879282,0.041149519383907],[0.26237186789513,0.0094200596213341,0.020002143457532]],[[0.21751552820206,0.068832591176033,-0.01480323728174],[0.17307779192924,-0.084571480751038,-0.13217552006245],[-0.10532808303833,-0.10939183831215,-0.074007213115692]],[[0.081688448786736,0.10093600302935,0.11426872760057],[0.03241990879178,-0.12670570611954,-0.0011776858009398],[-0.046054974198341,-0.063221275806427,-0.04517425224185]]],[[[-0.11602726578712,0.037806056439877,0.17332090437412],[0.0067471447400749,-0.036781284958124,0.070680521428585],[0.0016134289326146,0.031805247068405,0.092135041952133]],[[-0.096309214830399,-0.026916099712253,-0.014101897366345],[0.030035464093089,0.1002731770277,-0.026220915839076],[0.046849258244038,-0.099722512066364,-0.18188658356667]],[[0.022197181358933,0.018826236948371,-0.13112877309322],[0.012702892534435,0.032468058168888,-0.066596068441868],[0.049428474158049,-0.010078390128911,0.0091101340949535]],[[-0.0096380682662129,-0.056526433676481,-0.079674743115902],[0.030937653034925,0.10301777720451,-0.001984803006053],[-0.019244326278567,-0.015965271741152,0.0025220876559615]],[[0.033140055835247,-0.068795815110207,0.029918937012553],[-0.028239181265235,-0.037730976939201,-0.0016724350862205],[-0.098729737102985,-0.02791104465723,0.083215340971947]],[[-0.056761682033539,-0.0099833672866225,0.1178642436862],[-0.018513882532716,0.10052131861448,0.050674516707659],[0.028234263882041,-0.048588138073683,-0.023108275607228]],[[-0.054458793252707,-0.082004740834236,0.0099827358499169],[0.045765623450279,-0.053027026355267,0.085205361247063],[-0.0035525679122657,-0.025390950962901,-0.084392257034779]],[[-0.046297676861286,-0.053190760314465,0.03484009206295],[-0.0019759158603847,0.0060049276798964,-0.014483065344393],[0.029855171218514,-0.021204041317105,-0.0013237154344097]],[[-0.0066555701196194,0.018147870898247,-0.092421874403954],[0.048642601817846,-0.017666507512331,-0.11846047639847],[0.071928419172764,0.068010114133358,0.0061975116841495]],[[-0.028478994965553,-0.097358353435993,-0.11149947345257],[0.025818711146712,0.086265094578266,0.06978477537632],[0.083752065896988,0.041373234242201,-0.039482202380896]],[[0.036052320152521,-0.062376406043768,-0.07017844170332],[0.04280861467123,-0.032444875687361,-0.086847454309464],[0.066176824271679,0.0079216407611966,-0.013619840145111]],[[0.0032733520492911,0.0082842968404293,0.0067908591590822],[-0.0082950592041016,-0.14938855171204,-0.09524754434824],[0.027110524475574,-0.094541549682617,0.11455091834068]],[[-0.081579953432083,0.0039085452444851,0.013583220541477],[-0.092360332608223,-0.012103905901313,0.031344745308161],[-0.054059259593487,0.078059017658234,0.065237775444984]],[[-0.090887896716595,-0.12556965649128,-0.029195627197623],[0.03764009103179,-0.049330700188875,-0.1327817440033],[-0.079144015908241,-0.01397914532572,0.0052675139158964]],[[-0.023520287126303,0.020031468942761,-0.087606430053711],[0.024471523240209,-0.14797949790955,-0.10238263756037],[-0.0090104872360826,-0.055171638727188,-0.02487768791616]],[[-0.015625659376383,0.055538393557072,0.067544855177402],[-0.073241494596004,0.0028697929810733,-0.009515468031168],[0.013321125879884,-0.079582639038563,0.080071814358234]],[[-0.076898634433746,0.11536400020123,0.061848640441895],[0.088169537484646,-0.025262050330639,-0.081433452665806],[0.073510393500328,-0.07014237344265,0.030006151646376]],[[0.046650689095259,-0.099839232861996,0.0064899115823209],[-0.043015502393246,0.020854411646724,-0.045534286648035],[-0.090194761753082,-0.0098202936351299,0.0015524354530498]],[[-0.093892447650433,0.13909198343754,0.12239793688059],[-0.091113440692425,-0.019140932708979,0.087869055569172],[-0.17961364984512,-0.029083559289575,0.18871249258518]],[[0.016400458291173,0.062009640038013,-0.11635760962963],[0.054576396942139,0.071785800158978,-0.15333700180054],[0.062883272767067,-0.04211663082242,-0.05443099886179]],[[-0.0096494201570749,0.024687001481652,-0.13026481866837],[0.011298726312816,0.0051044151186943,0.031014069914818],[0.010047585703433,-0.056064955890179,0.070982463657856]],[[-0.14686538279057,0.049607384949923,0.057671133428812],[0.0025259919930249,-0.014124753884971,0.1446273624897],[0.014467981643975,-0.14465028047562,0.057357214391232]],[[0.071309112012386,0.10209608823061,0.11104875057936],[-0.067252166569233,-0.055754084140062,-0.07913476228714],[-0.047538261860609,7.177082443377e-05,-0.052242033183575]],[[0.05639324337244,-0.052898623049259,-0.051303964108229],[0.17589671909809,-0.062908977270126,-0.071525290608406],[0.11406560987234,-0.074674636125565,-0.031638357788324]],[[-0.11483619362116,-0.10044316202402,-0.065714478492737],[0.090228125452995,-0.15757577121258,-0.11273765563965],[-0.076763235032558,-0.15552213788033,-0.16111373901367]],[[-0.018862681463361,-0.052550792694092,0.13240563869476],[-0.010676428675652,0.15142215788364,0.0089571448042989],[0.068344436585903,0.083245784044266,-0.059788752347231]],[[-0.0067135551944375,-0.046778675168753,0.075178556144238],[0.0082235196605325,-0.060910031199455,0.077783606946468],[-0.082062229514122,-0.033554453402758,0.024542713537812]],[[-0.022240541875362,-0.058464329689741,-0.00082781136734411],[0.05120238289237,0.06220394000411,-0.033620934933424],[-0.1135670915246,-0.016529472544789,-0.12795482575893]],[[-0.064043216407299,-0.11597748845816,-0.12274029105902],[0.027803054079413,-0.063479393720627,0.042100835591555],[-0.0012377846287563,0.085732527077198,-0.070951566100121]],[[0.057056050747633,0.073287904262543,-0.061512932181358],[-0.035118397325277,0.12775954604149,0.09390114992857],[0.0070202867500484,-0.053735949099064,0.05206761136651]],[[0.099704623222351,-0.053728740662336,0.15224097669125],[-0.034021757543087,-0.10422199964523,-0.0021642700303346],[0.13987658917904,-0.14843320846558,-0.25058448314667]],[[0.092908434569836,0.091715782880783,-0.0016698248218745],[-0.01194959320128,0.037736680358648,-0.014258053153753],[-0.0065885786898434,-0.14209105074406,0.010087835602462]],[[0.0671032294631,0.046315602958202,-0.079430624842644],[0.0047211349010468,0.036222245544195,0.035224601626396],[-0.069332629442215,0.036012712866068,0.054701492190361]],[[0.0034750525373966,-0.022000029683113,0.0057038688100874],[-0.039619371294975,-0.17270448803902,-0.077667899429798],[-0.035223200917244,-0.10308692604303,-0.027451656758785]],[[-0.065324209630489,-0.030529754236341,-0.027796100825071],[0.082454845309258,-0.0030227655079216,-0.10313693434],[-0.068653844296932,-0.052767790853977,0.017015837132931]],[[0.053490325808525,0.025231631472707,-0.11140157282352],[0.0090589122846723,-0.082994483411312,0.055952273309231],[-0.017806142568588,-0.15540377795696,-0.028724489733577]],[[-0.14416821300983,0.096931748092175,0.040060393512249],[-0.13562247157097,0.12331536412239,0.014049446210265],[-0.1021015048027,0.01659126393497,-0.04959998652339]],[[-0.076334871351719,-0.057149890810251,-0.018160734325647],[0.011973612941802,-0.041086085140705,0.0037861235905439],[-0.085196428000927,0.19370704889297,0.022994346916676]],[[0.046795897185802,0.074954614043236,0.069208331406116],[-0.045454684644938,0.038002416491508,0.049920096993446],[-0.1595423668623,-0.029999049380422,0.13803094625473]],[[0.11900050938129,0.011190081015229,-0.037316158413887],[-0.047869481146336,0.015074416063726,0.0073432582430542],[0.061399839818478,-0.04623544588685,0.012444566003978]],[[0.0042868698947132,0.038095582276583,0.04845517128706],[0.061461951583624,-0.15366493165493,-0.017126580700278],[-0.030328873544931,-0.057448707520962,-0.09029033780098]],[[0.037805560976267,0.05127627030015,-0.015963885933161],[-0.073660269379616,-0.073901064693928,-0.032059136778116],[-0.15782243013382,-0.26098838448524,-0.093916863203049]],[[-0.065440513193607,-0.11357498168945,-0.017091711983085],[0.0048395446501672,-0.020073851570487,0.11169484257698],[-0.047555405646563,0.052548430860043,-0.083324953913689]],[[0.09200843423605,0.022733625024557,0.081214904785156],[-0.11798065900803,0.038547795265913,0.062244605273008],[-0.078400306403637,0.016063867136836,-0.043323393911123]],[[-0.083792246878147,-0.13189263641834,-0.11366305500269],[-0.070072323083878,-0.14294441044331,-0.019976370036602],[-0.017919650301337,-0.065666370093822,0.027684649452567]],[[-0.035329207777977,0.065262690186501,0.0090343728661537],[-0.25101140141487,-0.027707122266293,0.059291314333677],[-0.092411868274212,-0.014015750028193,0.034926272928715]],[[0.12884168326855,0.080028004944324,0.012097645550966],[0.0088085010647774,-0.060804307460785,-0.089411489665508],[-0.059508752077818,-0.18898436427116,-0.15915256738663]],[[-0.039089065045118,-0.068591587245464,-0.064200334250927],[0.019440295174718,0.034451276063919,-0.061677116900682],[-0.017788365483284,-0.045497331768274,0.017350263893604]],[[0.099092341959476,-0.058170590549707,-0.061059780418873],[0.02258219756186,-0.031243432313204,0.07763247936964],[-0.089589051902294,-0.073621764779091,0.064350284636021]],[[-0.04045332223177,-0.0083272475749254,0.15017259120941],[-0.00068870431277901,-0.052479330450296,0.095576703548431],[-0.055169221013784,-0.13481277227402,0.008500337600708]],[[-0.026865543797612,-0.069597668945789,0.050797067582607],[-0.045520424842834,-0.12382289022207,-0.040876194834709],[-0.26981508731842,-0.1046359911561,0.057696394622326]],[[0.0058141108602285,0.032532725483179,0.090341530740261],[-0.16929474473,-0.13191086053848,-0.1599545031786],[-0.028395822271705,-0.26672288775444,0.046522662043571]],[[0.0039215255528688,0.15705198049545,0.042833380401134],[-0.02590673416853,0.045388482511044,0.05617793649435],[0.079184107482433,0.080916449427605,0.22525908052921]],[[-0.12384159117937,-0.048246704041958,0.009973949752748],[-0.027953648939729,0.073977671563625,0.17625671625137],[-0.032630495727062,0.12177662551403,0.24600929021835]],[[-0.059614904224873,-0.11972603946924,-0.087917305529118],[-0.12959016859531,-0.29168593883514,-0.32626837491989],[-0.011717460118234,-0.10039474070072,-0.12891012430191]],[[0.070714093744755,-0.049592927098274,-0.18386654555798],[0.069634705781937,-0.11282216012478,-0.10277783870697],[-0.028160998597741,-0.065889701247215,0.11811507493258]],[[-0.01586127653718,0.01665248349309,0.029862562194467],[0.050306629389524,0.056914746761322,0.057884301990271],[0.13122023642063,0.075836919248104,-0.050404202193022]],[[-0.18687096238136,-0.031397674232721,-0.090718977153301],[0.043452385812998,-0.035789802670479,0.078269004821777],[-0.058981113135815,0.038200508803129,0.13498523831367]],[[0.00995734333992,0.081450305879116,0.071832112967968],[-0.24715782701969,-0.11992193758488,0.080334439873695],[-0.060548149049282,-0.0052731605246663,0.10446015000343]],[[-0.039767686277628,0.037718966603279,0.14423263072968],[-0.090738378465176,-0.025895442813635,0.10784175246954],[0.044431313872337,-0.022517809644341,0.063123948872089]],[[-0.02843994461,0.056969553232193,0.030362982302904],[0.025983322411776,-0.085691265761852,-0.1545294970274],[-0.041884530335665,0.070754393935204,-0.066282697021961]],[[-0.030040262266994,-0.055542316287756,0.18113781511784],[0.043735809624195,-0.15386888384819,-0.23654855787754],[-0.028643254190683,-0.047629740089178,-0.081363163888454]],[[0.008042455650866,0.020410109311342,0.031491916626692],[-0.18170768022537,-0.090531259775162,-0.02652252279222],[-0.1038735806942,0.033715061843395,0.051739610731602]],[[0.1657038629055,-0.16769203543663,-0.10638131201267],[0.095284581184387,-0.26464089751244,-0.60478132963181],[0.20533491671085,-0.047820672392845,-0.24022877216339]]],[[[0.019801713526249,0.056614708155394,-0.059623386710882],[-0.066673398017883,0.015165211632848,-0.056529495865107],[-0.020667059347034,0.11866665631533,0.03696146979928]],[[0.060596641153097,-0.0095817046239972,0.15892452001572],[-0.13209721446037,0.020910196006298,0.12132430821657],[0.0053978939540684,-0.068639561533928,0.010214891284704]],[[0.033026996999979,0.063613951206207,0.051313057541847],[-0.029224434867501,-0.095009803771973,-0.095963090658188],[0.054449949413538,-0.099760517477989,-0.063463032245636]],[[0.042221430689096,-0.19787158071995,0.024783473461866],[0.069321565330029,-0.13357505202293,-0.017915973439813],[-0.00024930809740908,0.033287756145,0.084507033228874]],[[-0.13035060465336,0.040127515792847,-0.11443434655666],[-0.034469787031412,0.011419215239584,-0.039110817015171],[0.029003100469708,0.045739874243736,-0.0026358661707491]],[[0.087616980075836,0.12600772082806,0.065138950943947],[0.11686842888594,0.022769924253225,-0.014141623862088],[0.0034929481334984,-0.086089447140694,-0.072085082530975]],[[-0.026669753715396,-0.066776350140572,-0.025794092565775],[0.017567828297615,0.067824989557266,-0.090424969792366],[-0.063413240015507,-0.019930699840188,0.093540012836456]],[[0.045425839722157,-0.00091732130385935,-0.025113446637988],[0.043445445597172,0.032069485634565,0.0084935296326876],[-0.048324149101973,0.15149499475956,0.030377689749002]],[[0.037264410406351,0.038681138306856,0.037996407598257],[-0.022792732343078,-0.054746218025684,0.0084655517712235],[0.014345177449286,-0.0083524798974395,-0.086261205375195]],[[-0.061887461692095,-0.0027127438224852,0.13205288350582],[0.030515808612108,-0.00014436693163589,0.0034583429805934],[0.13391605019569,0.057013563811779,0.035477269440889]],[[-0.047236565500498,-0.094662353396416,-0.00097573240054771],[0.068874537944794,-0.062536858022213,0.014523047022521],[0.080794237554073,0.040197607129812,0.022018373012543]],[[0.0098077664151788,0.013315963558853,-0.061258886009455],[-0.03704683855176,-0.078140363097191,0.017826151102781],[-0.023329244926572,0.043740410357714,-0.083704277873039]],[[-0.010789382271469,-0.1588853597641,-0.01827947050333],[-0.04401358962059,0.06795060634613,-0.035023804754019],[-0.043081291019917,-0.11197634786367,-0.031133586540818]],[[-0.042583756148815,0.088757276535034,-0.17661179602146],[0.072999380528927,-0.081960216164589,-0.051786977797747],[-0.08644063770771,0.034892875701189,0.073416195809841]],[[-0.10297641158104,-0.090557314455509,-0.04573867842555],[-0.008958731777966,0.058525647968054,-0.053645044565201],[-0.1842108219862,-0.054291054606438,-0.047489650547504]],[[0.070952564477921,0.033643294125795,0.057303182780743],[0.021126048639417,0.00033061063732021,-0.06769797205925],[-0.1143479347229,-0.16655121743679,-0.050335481762886]],[[0.081241972744465,-0.11856865882874,-0.21108911931515],[-0.0039490149356425,0.032780919224024,-0.066591277718544],[-0.084938615560532,-0.010774133726954,-0.10093493014574]],[[0.0937814489007,0.041330214589834,0.058010630309582],[-0.052570324391127,-0.024417076259851,0.044167418032885],[-0.019355030730367,-0.083344146609306,0.038501553237438]],[[0.080612413585186,0.058652803301811,-0.30417996644974],[0.037325579673052,0.13642102479935,0.1163914501667],[0.03407309949398,0.11244194209576,0.10431016236544]],[[-0.046014290302992,0.02085930109024,-0.030503606423736],[-0.043152961879969,0.011968270875514,0.015396847389638],[0.040013674646616,-0.0033410855103284,-0.011698540300131]],[[-0.091202944517136,-0.017866734415293,-0.01050535403192],[0.1045034378767,0.031069882214069,0.04094211012125],[0.060083899646997,0.076407670974731,0.048459362238646]],[[-0.02151189558208,0.072766080498695,-0.079037427902222],[-0.088303372263908,-0.091657876968384,-0.012612347491086],[-0.11555470526218,-0.030598681420088,-0.13472524285316]],[[-0.040419537574053,-0.003659050213173,0.15445202589035],[-0.12664204835892,0.046046551316977,0.038324411958456],[-0.17261192202568,-0.049511928111315,0.026808870956302]],[[-0.058037467300892,0.20927610993385,0.13543216884136],[0.023977790027857,0.011180856265128,-0.030691279098392],[0.0063945376314223,0.033802960067987,-0.00010259189002682]],[[-0.030402939766645,-0.081815980374813,-0.0084898201748729],[0.11532858014107,-0.0036642509512603,0.1029829159379],[0.048947315663099,0.058510363101959,0.11228634417057]],[[-0.0086744390428066,-0.0094050532206893,0.081682898104191],[-0.030835788697004,-0.035009641200304,-0.083402223885059],[0.070818766951561,-0.13311617076397,-0.16983839869499]],[[0.065444186329842,0.039435420185328,0.051070556044579],[0.074181266129017,-0.037124279886484,0.20254684984684],[0.028572412207723,0.11249639838934,-0.011960286647081]],[[0.14312291145325,-0.059251334518194,0.010478849522769],[0.0071699800901115,-0.00084922765381634,0.075291693210602],[-0.0040156273171306,-0.023353110998869,-0.039514351636171]],[[-0.0021576480939984,-0.065072268247604,0.022722113877535],[-0.039919178932905,0.053849626332521,-0.028252555057406],[0.17607548832893,0.13223405182362,0.17219887673855]],[[0.062041949480772,-0.039906907826662,0.054572485387325],[0.066774524748325,-0.097409084439278,0.11041590571404],[0.13924826681614,-0.002003385219723,-0.16141799092293]],[[0.034432586282492,0.097580745816231,0.083544850349426],[-0.080401599407196,0.14378613233566,0.0035241276491433],[-0.15787410736084,0.046029109507799,0.078727811574936]],[[-0.0050489534623921,0.09647710621357,-0.2745258808136],[0.1066285520792,-0.045166999101639,0.033374052494764],[0.020318584516644,-0.10310391336679,-0.034034844487906]],[[0.044064108282328,-0.033881567418575,-0.016742086037993],[0.071766793727875,-0.029559567570686,0.0059832171536982],[-0.11687976866961,-0.022885341197252,0.092304915189743]],[[0.064285911619663,-0.034650031477213,-0.068386428058147],[-0.020056745037436,0.067334279417992,-0.10920701920986],[0.059391345828772,0.023111956194043,-0.026295658200979]],[[-0.048087600618601,0.0070460354909301,-0.12113446742296],[0.024959251284599,0.24183665215969,-0.01818180270493],[-0.053997084498405,-0.0334706120193,0.045359887182713]],[[0.0094808861613274,-0.074545256793499,-0.027863658964634],[-0.07717377692461,-0.11245477944613,0.019458068534732],[0.046576853841543,0.043999280780554,0.030048932880163]],[[0.043657548725605,0.038910269737244,-0.053807940334082],[-0.0097648249939084,0.14587299525738,0.039132822304964],[-0.10239569097757,0.051954820752144,-0.049864389002323]],[[0.012679951265454,0.1199888959527,-0.0036939259152859],[0.012839036993682,-0.071618907153606,-0.11805906891823],[0.0071165692061186,0.019260240718722,0.17380638420582]],[[-0.038582943379879,-0.028355533257127,-0.022275406867266],[-0.024569030851126,0.011993020772934,-0.033768575638533],[-0.0047897212207317,-0.076068043708801,-0.038207519799471]],[[0.025147646665573,0.040926940739155,-0.054843500256538],[0.08144173771143,-0.069774754345417,-0.020657951012254],[0.033595487475395,0.028739562258124,-0.11049907654524]],[[-0.056908525526524,-0.040996391326189,-0.042069971561432],[0.04976062849164,-0.059091247618198,0.013565882109106],[0.065008401870728,-0.32280912995338,0.06637766212225]],[[-0.11026286333799,-0.06503339111805,-0.062968283891678],[0.11316727101803,-0.024722615256906,0.064257048070431],[-0.025633208453655,-0.12014888226986,0.10204820334911]],[[-0.012163418345153,-0.031191581860185,0.034582607448101],[-0.072455205023289,-0.0559310503304,0.014742307364941],[0.16952854394913,0.036989122629166,0.02135493978858]],[[-0.097927145659924,-0.042822439223528,-0.015782065689564],[0.010529874823987,-0.014310346916318,-0.022592555731535],[0.032244104892015,0.020998964086175,0.00036210747202858]],[[-0.033929754048586,-0.060645289719105,0.018513960763812],[-0.051340036094189,0.010154971852899,0.027263678610325],[-0.15711410343647,-0.048430014401674,0.11606914550066]],[[-0.040727771818638,-0.0074467752128839,0.021863097324967],[0.030573211610317,-0.0068658562377095,0.050925489515066],[0.052780762314796,-0.032076247036457,0.037141259759665]],[[-0.16993506252766,0.011366960592568,0.09006454795599],[-0.11274935305119,0.030592951923609,0.032268270850182],[0.060205157846212,0.038752488791943,0.033642716705799]],[[0.046601191163063,-0.074077919125557,0.087092734873295],[-0.043501064181328,-0.065602920949459,-0.074208989739418],[-0.011604620143771,0.0032077690120786,0.091452032327652]],[[0.006634225603193,-0.018428854644299,0.041465524584055],[-0.10446172952652,-0.02432245016098,-0.048202123492956],[-0.030108401551843,0.19279405474663,-0.054950810968876]],[[-0.048655156046152,-0.0097386091947556,0.040596593171358],[-0.036770701408386,-0.045724749565125,-0.0221181884408],[-0.033600829541683,0.11847846210003,0.085056804120541]],[[-0.041480399668217,0.039914295077324,0.10767324268818],[-0.08318354934454,0.14554752409458,-0.067263521254063],[-0.042561940848827,0.018866833299398,-0.12789729237556]],[[-0.0054252347908914,0.066039375960827,0.042873550206423],[-0.015415435656905,0.045732531696558,0.025818772614002],[-0.27304938435555,-0.058430228382349,-0.1179430782795]],[[0.047054048627615,-0.0022788525093347,-0.18139000236988],[0.076258316636086,-0.032055627554655,-0.10661850124598],[-0.004851795732975,0.12049892544746,-0.085247673094273]],[[-0.035536769777536,-0.15672536194324,0.024225503206253],[0.11925461143255,-0.21342803537846,0.13723537325859],[-0.0020769506227225,-0.11865410208702,0.0524149723351]],[[0.09574668854475,-0.074372693896294,0.11069710552692],[-0.092543378472328,-0.017044667154551,0.079399883747101],[-0.000432900065789,-0.093881152570248,-0.051310647279024]],[[-0.0052455314435065,-0.20012947916985,-0.087866432964802],[-0.039834905415773,-0.011476221494377,0.045106958597898],[0.035753544420004,0.063132233917713,0.047976143658161]],[[0.04139769077301,0.073976658284664,0.017187936231494],[-0.11306584626436,0.053256783634424,-0.021715538576245],[-0.093351572751999,-0.18300023674965,-0.18623380362988]],[[0.043535929173231,-0.12077964842319,-0.081437274813652],[-0.072981953620911,0.052075445652008,0.05076801404357],[-0.032289352267981,0.00025344081223011,0.040928486734629]],[[-0.074971467256546,0.028756886720657,0.10664973407984],[0.082046642899513,-0.041716743260622,0.080353267490864],[-0.064291872084141,0.0084775891155005,-0.11562705039978]],[[-0.0313351303339,0.018617901951075,0.0069053578190506],[-0.037640798836946,0.049808748066425,-0.13553595542908],[0.021806482225657,0.02140892110765,-0.10088100284338]],[[0.082635156810284,0.14057438075542,-0.053844001144171],[0.031901452690363,-0.064270578324795,0.021235290914774],[-0.080533646047115,-0.12838077545166,-0.034897029399872]],[[0.13332533836365,-0.067735783755779,0.080741301178932],[-0.17511603236198,0.062433861196041,-0.1113999709487],[0.11607798933983,0.16366899013519,-0.0012690179282799]],[[0.18912391364574,0.097238264977932,0.024991715326905],[-0.083896145224571,-0.016165252774954,-0.048741146922112],[-0.10566991567612,-0.087947882711887,-0.036317594349384]],[[-0.05458765104413,-0.017477178946137,0.086657129228115],[0.052093889564276,-0.038583174347878,-0.02372402139008],[-0.0022306023165584,0.022669041529298,0.19495545327663]]],[[[0.04622633382678,-0.031097924336791,-0.026706401258707],[-0.077008701860905,0.0043440484441817,0.033557377755642],[-0.0085859159007668,-0.005759961437434,-0.027761489152908]],[[-0.0045558512210846,-0.090234041213989,-0.10916662216187],[0.0054199900478125,0.0033609808888286,-0.015591925010085],[-0.014902398921549,-0.014094490557909,-0.0016963423695415]],[[-0.0964335501194,-0.0026023029349744,0.042680192738771],[0.067201018333435,-0.014654442667961,0.0098494431003928],[-0.011475364677608,-0.055582728236914,0.067347884178162]],[[0.037019830197096,-0.10926593840122,-0.081044219434261],[-0.034674171358347,0.11409414559603,0.0048062978312373],[-0.093321144580841,-0.0014560939744115,0.0064885192550719]],[[0.10492739081383,0.01255189999938,0.016715902835131],[0.0057982611469924,-0.069263331592083,0.026413699612021],[0.05701382830739,-0.080866403877735,0.023465253412724]],[[0.0087640946730971,-0.042868345975876,0.043249674141407],[0.043143466114998,0.055339064449072,-0.056048560887575],[-0.034352276474237,0.06282389909029,-0.054089237004519]],[[0.035452604293823,-0.040074143558741,-0.036000840365887],[-0.0080646704882383,-0.023201171308756,-0.029834751039743],[0.016055282205343,-0.10028410702944,-0.01637321151793]],[[-0.0086761582642794,-0.0094488793984056,-0.017505818977952],[0.0052775191143155,0.077407367527485,-0.078250035643578],[-0.069903120398521,0.080258868634701,-0.034532617777586]],[[0.1140370965004,0.023871678858995,0.077143169939518],[0.023272685706615,-0.070591427385807,-0.034570802003145],[-0.073766857385635,-0.033507365733385,-0.036321450024843]],[[0.10584416985512,-0.038607880473137,-0.072421669960022],[-0.075654067099094,0.074025996029377,0.057037927210331],[0.051932107657194,0.083286285400391,0.017775416374207]],[[-0.067448116838932,-0.034252669662237,-0.021044632419944],[0.014923127368093,-0.12681037187576,-0.061420876532793],[-0.010384026914835,-0.012742162682116,-0.058301866054535]],[[0.016566496342421,0.0021950923837721,-0.019030157476664],[-0.013947253115475,0.056490957736969,-0.066183902323246],[-0.014266347512603,-0.060551065951586,-0.049709025770426]],[[-0.17386800050735,0.031180858612061,0.0016527975676581],[0.054786864668131,0.035226427018642,-0.019096842035651],[0.049057845026255,-0.011824407614768,0.0028010301757604]],[[-0.058295138180256,-0.013529235497117,-0.040122199803591],[-0.016249073669314,0.0079237399622798,0.019679302349687],[-0.0052208099514246,0.043894793838263,-0.018598044291139]],[[0.025409072637558,-0.008004542440176,-0.011450390331447],[-0.045582108199596,-0.017384346574545,0.014635603874922],[-0.030946267768741,0.044658623635769,-0.053038142621517]],[[0.19323201477528,-0.15814200043678,0.002175948349759],[0.036149397492409,0.030341912060976,-0.034226354211569],[-0.033022958785295,-0.038163546472788,0.10627023130655]],[[0.071985214948654,-0.15614640712738,0.015928812325001],[-0.053448468446732,-0.032946657389402,-0.01809155382216],[0.084507182240486,-0.064354605972767,0.011416709981859]],[[0.052983120083809,0.035441413521767,-0.016477258875966],[-0.074329487979412,-0.02428593300283,-0.043144386261702],[0.030895920470357,-0.060750678181648,-0.001868033898063]],[[0.056847587227821,0.023751163855195,0.019346734508872],[-0.083475068211555,0.038276631385088,-0.05707448348403],[0.064805313944817,0.099179178476334,-0.0075811790302396]],[[-0.13461872935295,-0.02773018181324,-0.02534188143909],[0.051931343972683,0.11180823296309,0.067835360765457],[-0.08637722581625,0.013312133029103,-0.050664097070694]],[[0.046622212976217,-0.031052343547344,0.025981277227402],[0.019840087741613,0.037112288177013,-0.02383597381413],[0.035014234483242,-0.033182363957167,-0.012913360260427]],[[0.029716784134507,-0.027263650670648,-0.082565829157829],[-0.11208827793598,-0.10457948595285,-0.034531239420176],[0.0096534648910165,-0.12137687206268,0.0052758469246328]],[[-0.0089340936392546,-0.026497529819608,-0.03807320073247],[0.012361999601126,0.016382908448577,-0.0091564832255244],[0.04247123748064,-0.048559464514256,-0.045313555747271]],[[0.049765609204769,-0.12632848322392,-0.092344395816326],[-0.17423042654991,-0.038290526717901,-0.0041148033924401],[0.053705271333456,0.0062355054542422,0.0079598175361753]],[[0.013708914630115,-0.052836544811726,-0.029080905020237],[0.043248750269413,0.12725660204887,0.052290890365839],[-0.10743772238493,0.10272140055895,0.054442293941975]],[[0.032879002392292,-0.031743988394737,-0.086913526058197],[0.034717928618193,-0.0044956668280065,-0.050607651472092],[-0.070836931467056,0.026678783819079,0.041523978114128]],[[-0.016923109069467,0.1230995208025,0.083095796406269],[-0.059013705700636,-0.0082372045144439,-0.013276839628816],[0.084928914904594,-0.082243256270885,0.049696054309607]],[[-0.08921754360199,-0.068766936659813,-0.0038425249513239],[-0.055262267589569,0.070887297391891,-0.0052493391558528],[-0.00717370538041,-0.018242217600346,-0.022897528484464]],[[0.055855337530375,0.009532431140542,-0.053878135979176],[0.064951248466969,-0.023666609078646,-0.053695738315582],[-0.063855536282063,-0.084352627396584,0.021746583282948]],[[0.041605692356825,-0.011340304277837,0.077049627900124],[-0.096950568258762,-0.07434007525444,0.085321687161922],[0.03564516082406,0.09198047965765,0.0053112651221454]],[[0.043941371142864,0.047751344740391,0.044007457792759],[-0.00095162156503648,-0.14732068777084,-0.0042173261754215],[0.008061496540904,0.020770547911525,0.048636727035046]],[[-0.031156012788415,-0.061702001839876,-0.050654422491789],[-0.098213598132133,-0.017415886744857,-0.028728442266583],[0.0092630330473185,0.055623300373554,0.034964669495821]],[[0.0043742312118411,0.051462087780237,0.048460505902767],[-0.041184391826391,-0.062723606824875,0.052241593599319],[0.039894592016935,-0.11892334371805,-0.023049831390381]],[[0.11192657798529,-0.15367956459522,0.0017055262578651],[0.083417013287544,-0.08187460154295,-0.012255883775651],[-0.010464916937053,0.039498385041952,0.010175425559282]],[[-0.012789197266102,-0.012179521843791,-0.020704342052341],[-0.030635174363852,-0.06053052097559,-0.10085529088974],[0.066638715565205,0.036335650831461,0.083569094538689]],[[-0.023535773158073,-0.031679306179285,-0.059691790491343],[0.0052788900211453,0.0060376981273293,0.044659968465567],[-0.033036202192307,0.013403613120317,0.012537421658635]],[[0.066566944122314,0.027670819312334,0.028313918039203],[0.041720923036337,-0.033532433211803,0.078158117830753],[-0.04735129326582,-0.015670353546739,0.0047481525689363]],[[-0.18969058990479,-0.084908686578274,0.098713204264641],[0.024586174637079,0.093060553073883,-0.059917159378529],[-0.043600670993328,-0.0064875157549977,0.046716842800379]],[[0.03898910433054,0.00070286856498569,-0.04665956273675],[-0.012937082909048,0.024482704699039,-0.085164308547974],[-0.01153261680156,0.046072043478489,-0.008015095256269]],[[0.080485783517361,0.1085509583354,-0.050743207335472],[0.062063876539469,-0.025245303288102,0.013151387684047],[-0.034964665770531,0.048794638365507,-0.00091748009435833]],[[0.0053127692081034,-0.0059977429918945,0.04919770359993],[-0.066665291786194,-0.0099312672391534,-0.057460095733404],[0.037593524903059,0.038145951926708,0.027868643403053]],[[-0.021994851529598,0.053369272500277,0.021596187725663],[-0.050694264471531,-0.098292298614979,-0.10102669149637],[0.011767935007811,-0.15596164762974,0.0031678094528615]],[[-0.070453226566315,-0.22723044455051,-0.049464717507362],[-0.020925495773554,-0.091645486652851,0.017582271248102],[-0.050875313580036,0.071371883153915,0.016773140057921]],[[-0.076489016413689,-0.059565015137196,-0.0065018641762435],[0.014918676577508,-0.037888582795858,0.023985549807549],[0.013735117390752,0.043873574584723,0.090384170413017]],[[0.0150963133201,-0.065438903868198,0.0259865578264],[0.080937243998051,0.045859806239605,0.07623329013586],[0.017022959887981,0.016895297914743,-0.060934089124203]],[[0.0016734001692384,0.10569062829018,0.040508676320314],[-0.05708846449852,-0.0065387161448598,-0.12640787661076],[-0.0040475171990693,-0.019804555922747,-0.013311336748302]],[[0.093340240418911,0.085978209972382,0.0016251978231594],[0.024531641975045,-0.020635331049562,-0.0013627199223265],[-0.045564088970423,-0.020721329376101,-0.0307388138026]],[[0.01900933124125,-0.019156940281391,-0.071761906147003],[-0.013274962082505,-0.013952388428152,0.017441973090172],[0.024326419457793,-0.026247473433614,-0.036544926464558]],[[-0.11306025087833,-0.024166632443666,0.083522632718086],[0.012343554757535,-0.054289545863867,0.079008191823959],[0.017548453062773,-0.077075518667698,0.019526904448867]],[[-0.19582711160183,-0.038129005581141,-0.01860330812633],[-0.041082549840212,0.11614989489317,0.0068720830604434],[0.07974124699831,0.079286143183708,0.023485185578465]],[[0.098936691880226,-0.040424775332212,0.0023380531929433],[-0.046369101852179,-0.12272373586893,-0.076780296862125],[0.018986092880368,0.046469151973724,0.030805034562945]],[[0.044334851205349,0.01048169285059,0.050514791160822],[0.014107264578342,0.053087677806616,0.017357999458909],[0.011341198347509,-0.00024904333986342,0.0036054363008589]],[[0.0090238964185119,0.031243314966559,-0.064224354922771],[0.036078754812479,-0.021754076704383,-0.018470294773579],[-0.003831721143797,0.046038579195738,-0.025707419961691]],[[-0.066184967756271,-0.051635295152664,-0.081416517496109],[-0.19454036653042,0.049889106303453,-0.052663668990135],[-0.029809793457389,0.11077715456486,-0.01447407156229]],[[-0.0036864259745926,-0.050068892538548,0.03391082957387],[-0.0094592152163386,-0.026301823556423,-0.074938863515854],[0.10139986872673,0.065542556345463,0.081459812819958]],[[-0.088670007884502,-0.11161984503269,-0.0059544830583036],[0.010122714564204,-0.043527938425541,0.00049016566481441],[0.0510238930583,-0.055714800953865,-0.019988829270005]],[[0.037817038595676,-0.097733147442341,-0.046672057360411],[-0.021722307428718,-0.091745764017105,0.048680208623409],[-0.006984488107264,-0.025417789816856,0.083656720817089]],[[-0.10784373432398,0.017495831474662,0.010322878137231],[-0.14843641221523,0.025882063433528,0.05104073882103],[-0.03828252479434,0.032328143715858,0.089295484125614]],[[0.071967512369156,0.082950495183468,-0.09227230399847],[0.02200947701931,0.026027778163552,-0.0074466285295784],[-0.031235817819834,-0.0092061180621386,-0.022970100864768]],[[0.014348931610584,-0.016540406271815,-0.11710032075644],[0.012233039364219,0.099853493273258,0.036043971776962],[-0.025358574464917,0.0082402378320694,-0.045893147587776]],[[-0.03533149138093,0.012670246884227,-0.045908749103546],[0.004096663556993,-0.010786212980747,0.039123274385929],[-0.033512152731419,-0.0038714164402336,-0.097872838377953]],[[0.020357320085168,-0.045474480837584,-0.069004096090794],[-0.097180023789406,0.036460243165493,0.096455700695515],[-0.021944984793663,0.071178764104843,-0.17232723534107]],[[0.052241880446672,0.069115415215492,-0.079100228846073],[0.047377455979586,-0.022819513455033,-0.086196266114712],[-0.0021255784668028,-0.015611863695085,-0.04092676192522]],[[-0.015127112157643,0.045385282486677,0.059491142630577],[-0.02381681278348,-0.0018322947435081,0.035396382212639],[-0.00083214201731607,0.034909632056952,-0.10186287015676]]],[[[-0.041035193949938,-0.05767921730876,0.076191484928131],[-0.015028417110443,-0.03486568108201,0.041641552001238],[0.09784834831953,0.0046292929910123,-0.064319424331188]],[[0.015201295726001,0.063906639814377,-0.10968996584415],[0.0070262877270579,-0.084869891405106,0.00036424596328288],[-0.026166509836912,0.087509945034981,-0.11691772937775]],[[-0.055976267904043,-0.07184174656868,0.056265961378813],[-0.051391266286373,0.049225725233555,-0.038651458919048],[-0.12233643233776,0.047522086650133,0.019535344094038]],[[-0.034948103129864,0.062817424535751,-0.14219807088375],[0.060037814080715,-0.025553224608302,-0.057814102619886],[-0.10367288440466,-0.0085914973169565,0.027959533035755]],[[0.10814478248358,-0.027740031480789,0.0026571219787002],[0.056384351104498,-0.066493406891823,0.018339470028877],[-0.041600413620472,-0.036497827619314,-0.050412226468325]],[[-0.061692260205746,-0.12539201974869,0.1047587916255],[0.019194113090634,0.11224652081728,-0.031603112816811],[0.067023500800133,-0.039113443344831,-0.013925720006227]],[[0.0029867524281144,-0.040844690054655,-0.023412821814418],[0.046349935233593,0.018861880525947,0.089173682034016],[-0.20170480012894,-0.079925715923309,-0.028545577079058]],[[0.012107579037547,-0.073181323707104,-0.046938143670559],[-0.086628571152687,-0.035300318151712,0.0087622813880444],[-0.055212378501892,-0.035182859748602,-0.0083875264972448]],[[-0.010650520212948,0.05713889375329,0.010522591881454],[0.079500958323479,-0.050594061613083,-0.053877469152212],[-0.035820420831442,-0.006718285381794,-0.039027128368616]],[[-0.053896702826023,0.0057866959832609,0.043316647410393],[0.090038403868675,-0.063159622251987,-0.040019437670708],[-0.0060515538789332,-0.09263139218092,-0.02284986898303]],[[-0.058745980262756,-0.076970435678959,-0.019864819943905],[0.13396656513214,0.023957531899214,-0.0034913884010166],[0.019250111654401,0.083114109933376,0.11117915064096]],[[0.029236132279038,-0.17531065642834,-0.057831794023514],[-0.030340189114213,0.016832204535604,-0.065688952803612],[-0.043726548552513,-0.018889898434281,-0.16151703894138]],[[0.0048884772695601,-0.13115055859089,-0.034937832504511],[-0.10231747478247,-0.014842178672552,-0.19844354689121],[0.038062646985054,-0.22429220378399,0.029580214992166]],[[-0.13280901312828,0.05421058088541,-0.035253942012787],[0.034081216901541,-0.13705398142338,-0.20469149947166],[0.069144181907177,-0.10512493550777,0.16969774663448]],[[-0.0250035636127,-0.080509886145592,-0.051562089473009],[-0.12840685248375,-0.0052275960333645,-0.023935861885548],[0.14767949283123,-0.021297246217728,-0.14015634357929]],[[-0.045480124652386,0.081189587712288,0.0039149257354438],[-0.051623307168484,-0.042625796049833,0.072606928646564],[-0.065057195723057,0.081771083176136,-0.15089151263237]],[[0.047218568623066,-0.024372778832912,0.054468180984259],[-0.045699827373028,0.039429746568203,0.087639980018139],[0.015064890496433,-0.094402737915516,0.11686848104]],[[-0.018190953880548,-0.066907495260239,-0.038060035556555],[-0.0948126912117,0.054065249860287,0.073741860687733],[-0.13332258164883,-0.037891268730164,0.0029650968499482]],[[-0.040934890508652,0.051973808556795,0.095443151891232],[0.011704491451383,-0.0011825825786218,0.092506915330887],[-0.059173736721277,0.080586306750774,-0.029001379385591]],[[0.025448519736528,-0.06854122877121,-0.033163733780384],[-0.028645327314734,-0.028794659301639,-0.05658071115613],[0.10654003173113,-0.018104722723365,0.068352825939655]],[[-0.083989709615707,-0.026366984471679,0.11366317421198],[0.031505111604929,-0.20415011048317,0.096232943236828],[0.019768469035625,-0.11659345775843,0.01941030845046]],[[0.005303016398102,-0.012740550562739,0.014398545958102],[-0.063221007585526,-0.14446081221104,0.0018801072146744],[-0.086245201528072,0.079583160579205,-0.098473682999611]],[[-0.15655137598515,-0.027350669726729,0.010385381989181],[0.11112508177757,-0.065950445830822,-0.018916128203273],[-0.14077804982662,-0.011783927679062,0.062726579606533]],[[0.071192786097527,-0.029681302607059,-0.024564798921347],[-0.013996297493577,-0.090287394821644,0.073204129934311],[0.020435348153114,-0.01731445454061,-0.012288461439312]],[[-0.039331786334515,-0.017977109178901,-0.062747597694397],[0.043339069932699,-0.11261992156506,0.10072325915098],[0.041557982563972,0.035573974251747,0.028826177120209]],[[0.15690667927265,-0.17472848296165,0.0500184930861],[-0.081429280340672,-0.1380956619978,0.069194883108139],[-0.16510118544102,-0.14571677148342,-0.013941206037998]],[[-1.3668112842424e-05,-0.010839917697012,-0.042152550071478],[0.043394606560469,0.13253438472748,-0.11807986348867],[-0.079832717776299,0.023552229627967,-0.06201608851552]],[[0.072001032531261,0.00088733865413815,-0.15698410570621],[-0.037346661090851,0.026152106001973,-0.034324526786804],[0.01940356567502,0.05102713406086,-0.0068465522490442]],[[-0.10715706646442,0.094246491789818,0.17229308187962],[-0.10307959467173,-0.13706807792187,0.022504780441523],[-0.015112481079996,-0.063032180070877,0.041243948042393]],[[0.15156182646751,-0.010532762855291,0.01838530600071],[-0.035311676561832,-0.040467839688063,-0.17184780538082],[-0.097916431725025,0.10077431052923,-0.057884257286787]],[[0.046267569065094,-0.022084226831794,0.025245556607842],[0.0049063661135733,0.034811869263649,0.0055796597152948],[0.013519160449505,-0.11410561203957,-0.058310747146606]],[[0.003749897936359,-0.14621455967426,0.015963638201356],[-0.053464516997337,0.044524852186441,-0.12024829536676],[-0.0038870316930115,0.026886314153671,0.074867337942123]],[[-0.1707106679678,-0.049033336341381,-0.12947507202625],[0.1006848141551,-0.088897369801998,0.0022434864658862],[-0.072253055870533,0.1539521664381,0.063562855124474]],[[-0.11886793375015,0.074927389621735,-0.17017911374569],[0.014774203300476,-0.026513928547502,0.074552454054356],[0.01184513233602,-0.0081478757783771,-0.15035235881805]],[[0.044526983052492,-0.11341629177332,0.053615935146809],[0.050205182284117,-0.031527951359749,-0.026776749640703],[-0.086582593619823,-0.18901588022709,0.023598561063409]],[[0.070236414670944,0.0102712912485,0.014012457802892],[-0.022278353571892,-0.11280286312103,-0.06886900216341],[-0.064398542046547,-0.10159420967102,-0.20625267922878]],[[-0.02276099100709,-0.096357226371765,-0.00109043775592],[0.060534100979567,0.14335149526596,-0.029665635898709],[0.0054532471112907,0.070377938449383,-0.070979662239552]],[[0.074659772217274,0.0069859144277871,0.062580674886703],[0.057451963424683,-0.079775884747505,-0.012753518298268],[-0.02792083658278,0.049981649965048,0.0048756320029497]],[[-0.15300816297531,-0.012964652851224,0.054046716541052],[-0.10739564150572,-0.18999664485455,-0.0079880096018314],[-0.16097213327885,-0.068817265331745,-0.075571276247501]],[[0.0037852274253964,0.019568983465433,-0.0044045951217413],[-0.0096272826194763,0.071172028779984,0.07373670488596],[-0.00050664157606661,-0.086182221770287,0.0011282992782071]],[[-0.044430378824472,-0.098201476037502,0.042266275733709],[0.0755465477705,-0.027132930234075,-0.33768430352211],[0.063668765127659,-0.050626780837774,0.016494506970048]],[[0.04658666998148,-0.048290934413671,-0.032897111028433],[-0.1177339926362,-0.1358096152544,0.08998765796423],[-0.055504266172647,-0.13138557970524,-0.0058942665345967]],[[-0.0089157801121473,0.017238274216652,-0.046995989978313],[0.013923275284469,-0.1629231274128,-0.035803437232971],[-0.03075896948576,-0.012984907254577,0.040093574672937]],[[0.077274024486542,-0.020675776526332,0.038969535380602],[-0.058786414563656,0.03412214666605,0.030028380453587],[-0.038027055561543,0.062025517225266,0.075025767087936]],[[-0.059764508157969,-0.037374399602413,-0.23380203545094],[-0.075253322720528,-0.038910247385502,-0.089383386075497],[-0.04861868172884,-0.091676481068134,-0.072978712618351]],[[-0.052001368254423,0.017226843163371,-0.046786993741989],[-0.04789524897933,0.033892463892698,0.00094604474725202],[-0.068448558449745,0.095835566520691,0.07158750295639]],[[0.041364092379808,-0.080792650580406,-0.13915103673935],[-0.0070269564166665,0.004568062722683,0.015667904168367],[-0.083554595708847,0.035371657460928,-0.14265467226505]],[[-0.071062594652176,-0.07533323764801,-0.072742767632008],[0.04024176672101,-0.0057037081569433,-0.1407545953989],[-0.11181696504354,0.11324374377728,-0.0042207315564156]],[[-0.15372782945633,0.030558004975319,-0.126604616642],[-0.022357458248734,-0.067904442548752,-0.015671174973249],[-0.0017144418088719,-0.013362413272262,0.024706779047847]],[[-0.023807236924767,-0.0063919904641807,-0.006926809437573],[0.039497002959251,-0.0081211850047112,0.074059583246708],[-0.052886109799147,-0.05336482450366,-0.06195268034935]],[[-0.12351194024086,-0.15100620687008,0.071852669119835],[-0.19941692054272,-0.033756371587515,-0.17465417087078],[-0.077787049114704,-0.061123382300138,-0.14781863987446]],[[0.046596702188253,-0.093040987849236,0.031797893345356],[0.018752245232463,0.074423715472221,0.032170638442039],[-0.084266662597656,-0.07637420296669,-0.10843805968761]],[[0.16182044148445,0.079185917973518,-0.07559484988451],[0.039357028901577,0.07076632976532,-0.028349861502647],[0.041038416326046,-0.034491278231144,-0.01498716045171]],[[-0.041321631520987,-0.019867403432727,-0.0090081496164203],[-0.020945036783814,-0.1962957829237,-0.059446610510349],[-0.045814406126738,-0.023663327097893,0.0605603531003]],[[0.093018107116222,-0.13935405015945,-0.14796556532383],[-0.090868510305882,0.023220458999276,-0.11724475026131],[-0.023617561906576,-0.090289853513241,-0.24134549498558]],[[0.0022653504274786,0.099684998393059,-0.065681375563145],[-0.09564396739006,0.059533584862947,0.013282467611134],[0.02811992354691,-0.094929069280624,-0.0038840414490551]],[[0.049487948417664,-0.028443865478039,-0.024512303993106],[-0.083597242832184,0.11235354840755,-0.0675048828125],[-0.0024104963522404,0.035978782922029,0.024800522252917]],[[-0.038694784045219,0.04429903998971,0.010819928720593],[-0.10964348912239,-0.11678744852543,0.095966927707195],[-0.086785674095154,-0.036012809723616,-0.046330410987139]],[[-0.0062908451072872,-0.11665792763233,-0.21826533973217],[0.0034195883199573,-0.042454361915588,0.16334873437881],[0.11460906267166,-0.003129499964416,0.080490879714489]],[[0.011844073422253,-0.050621416419744,0.076952010393143],[0.0040034484118223,-0.14726769924164,-0.065332889556885],[0.13009358942509,-0.096412658691406,-0.068746156990528]],[[-0.043329320847988,0.023988822475076,-0.10789522528648],[-0.013965435326099,-0.1532421708107,0.054002735763788],[-0.0071235820651054,-0.070876657962799,-0.05490355193615]],[[0.20975863933563,-0.13187988102436,0.23754481971264],[-0.050088308751583,-0.017051555216312,-0.15084190666676],[0.1691575050354,-0.19661997258663,0.05890891700983]],[[0.059144325554371,0.21605145931244,-0.30723318457603],[0.029134472832084,-0.007715905085206,-0.011670244857669],[0.086898878216743,0.023079281672835,0.0029592101927847]],[[-0.072199620306492,0.02460166439414,0.055193137377501],[0.1660274118185,0.045196212828159,-0.071713536977768],[-0.087826915085316,0.033348809927702,-0.080919876694679]]],[[[-0.014034045860171,-0.0096280844882131,0.020017847418785],[0.014545512385666,-0.019201459363103,-0.0040992079302669],[0.085942938923836,-0.057225946336985,-0.0078957220539451]],[[-0.01689381711185,-0.010699856095016,0.021658603101969],[-0.031519580632448,0.011137341149151,0.01014079619199],[0.075476199388504,-0.071214981377125,0.0045840074308217]],[[0.0059243096038699,-0.010759675875306,-0.091488137841225],[-0.0067504346370697,0.050551027059555,0.016326431185007],[0.029047245159745,0.027322830632329,-0.012405514717102]],[[0.0097376890480518,-0.062676765024662,0.044507306069136],[0.032746251672506,-0.085693545639515,0.0013714451342821],[0.040095336735249,0.0092799142003059,-0.011658222414553]],[[0.033203016966581,-0.040222469717264,-0.070695847272873],[-0.01553247589618,0.053745307028294,0.019825909286737],[0.017678061500192,0.018092466518283,-0.028385100886226]],[[0.021377000957727,-0.00011718030145857,0.0029088729061186],[-0.029939953237772,0.087200179696083,-0.044779874384403],[-0.022288110107183,0.01816388219595,-0.0030428746249527]],[[-0.041125427931547,0.033438261598349,-0.01843730174005],[0.0092974221333861,-0.063441433012486,0.0047153304331005],[0.054500963538885,-0.0043258415535092,0.024081340059638]],[[0.034890003502369,-0.06290227919817,0.024906946346164],[0.014113680459559,-0.060529351234436,0.048365909606218],[0.003092068945989,0.046235732734203,-0.042182691395283]],[[-0.012315669097006,0.18791911005974,-0.070935182273388],[0.016423303633928,0.080894805490971,0.043504171073437],[0.10839249193668,0.092522613704205,0.021319100633264]],[[-0.014920258894563,0.024276666343212,0.0062764422036707],[0.074424080550671,-0.042336337268353,-0.058254636824131],[0.044977955520153,-0.031908102333546,-0.020712675526738]],[[-0.024048436433077,-0.022424889728427,0.015053920447826],[0.0019221232505515,0.0081823626533151,-0.036937888711691],[0.0015226780669764,0.044741325080395,0.012112739495933]],[[-0.035967033356428,-0.066449046134949,-0.031539984047413],[-0.052673310041428,-0.028678657487035,0.063616454601288],[0.0080145476385951,0.087124168872833,0.020884362980723]],[[0.09359410405159,-0.014848873019218,-0.016887295991182],[-0.022965194657445,-0.030304007232189,0.015854207798839],[-0.027315523475409,0.023324657231569,-0.014424983412027]],[[-0.0029401294887066,0.0098776919767261,-0.10595363378525],[-0.041472494602203,0.069861382246017,0.073621638119221],[0.074785940349102,-0.027647536247969,-0.043473232537508]],[[-0.03824707865715,-0.029356921091676,0.067920044064522],[0.0059237964451313,-0.042968157678843,-0.025842826813459],[0.029338413849473,-0.015572261996567,0.040346901863813]],[[-0.0032166864257306,0.040050972253084,-0.0039630169048905],[-0.0057482905685902,0.041981719434261,-0.095182426273823],[-0.016635043546557,0.0095476722344756,0.020829046145082]],[[-0.0025991639122367,0.014535243622959,-0.021982925012708],[-0.03663544356823,0.0072231814265251,0.0096690440550447],[0.04236251115799,0.0022905536461622,-0.0067896419204772]],[[0.0086733000352979,0.039107259362936,0.011877267621458],[-0.016984427347779,-0.02529420144856,-0.014391495846212],[0.0061950930394232,-0.027289083227515,0.010482305660844]],[[0.0026056582573801,0.048799440264702,-0.060411863029003],[-0.020134657621384,0.09803032875061,-0.040841985493898],[-0.03069175966084,0.086766801774502,-0.076920568943024]],[[0.048726841807365,-0.050566896796227,0.059597082436085],[-0.040931634604931,-0.076450578868389,0.03588330373168],[0.017519976943731,-0.0022404927294701,0.01124719157815]],[[0.051755294203758,0.065348230302334,-0.020864758640528],[0.0090527208521962,-0.12753111124039,-0.015721935778856],[0.0015381504781544,0.045711416751146,0.022232344374061]],[[0.047561421990395,-0.095069088041782,-0.059330422431231],[0.0081582777202129,0.058767009526491,-0.030868975445628],[0.0096704829484224,0.028882637619972,0.035386070609093]],[[0.025313949212432,-0.046704512089491,0.020443683490157],[-0.017981544137001,0.026908472180367,0.011035709641874],[-0.0086271669715643,-0.030324142426252,0.019135881215334]],[[0.035231150686741,-0.0092019326984882,-0.0010999708902091],[-0.0099889896810055,-0.0031188228167593,-0.020575283095241],[-0.02059667557478,-0.018063450232148,0.032406862825155]],[[-0.022723767906427,0.0033979818690568,-0.027881449088454],[0.0043992609716952,0.017195552587509,0.042879413813353],[0.0061007579788566,0.0050607370212674,-0.029286872595549]],[[0.043415814638138,-0.052344467490911,-0.024692788720131],[-0.020794756710529,-0.034717943519354,0.02002826705575],[0.012223677709699,0.036243110895157,0.015981264412403]],[[0.038274135440588,0.0018430901691318,-0.014779232442379],[-0.053874652832747,-0.097169429063797,0.084020897746086],[-0.024940671399236,0.071529254317284,-0.017622847110033]],[[0.038408730179071,-0.062643177807331,0.060740001499653],[0.011968416161835,-0.040345627814531,-0.058068446815014],[0.038125567138195,-0.02756817266345,0.035915613174438]],[[-0.036019183695316,0.044047564268112,0.012193041853607],[-0.0040733241476119,-0.0028839940205216,-0.053831309080124],[0.013828993774951,-0.0014589144848287,0.026685021817684]],[[-0.0019171972526237,-0.027539832517505,0.028619246557355],[0.022501967847347,0.075997270643711,-0.022832790389657],[0.022745057940483,-0.092304155230522,-0.016784597188234]],[[0.04448976367712,0.017558813095093,0.014624523930252],[0.00098566443193704,-0.036680344492197,0.025218682363629],[-0.00078611850040033,-0.016883760690689,-0.035678803920746]],[[0.025516832247376,0.0017027152935043,0.038988500833511],[-0.010945009067655,0.0034766332246363,-0.028437051922083],[0.012315263971686,0.0021699839271605,-0.031114785000682]],[[-0.026336284354329,0.092786453664303,0.073192529380322],[0.018881281837821,-0.063323237001896,-0.091844834387302],[-0.0393455773592,0.014658762142062,0.026788249611855]],[[0.056171033531427,0.035888787358999,-0.029796259477735],[-0.051134455949068,-0.070413365960121,-0.057394351810217],[-0.022829249501228,0.032974991947412,0.072534196078777]],[[-0.0029401141218841,-0.021469507366419,0.013397625647485],[0.03919805586338,-0.0088819861412048,0.07337574660778],[0.041313357651234,-0.069594644010067,-0.05295917019248]],[[-0.0010743376333266,-0.01552782766521,0.0085308579728007],[-0.014859766699374,0.023351583629847,-0.0012650163844228],[-0.040109965950251,-0.014801143668592,0.037579212337732]],[[0.063017323613167,-0.0026670077349991,-0.0035269695799798],[0.010497794486582,-0.032346282154322,0.046413950622082],[-0.0328488945961,-0.04763089120388,0.011536793783307]],[[0.020645963028073,-0.017494874075055,0.012924704700708],[-0.036043670028448,-0.0096623227000237,0.015410865657032],[0.035227593034506,-0.044068247079849,0.014451465569437]],[[0.028902666643262,0.0043847383931279,0.037282153964043],[0.025391608476639,0.067792855203152,-0.00030356936622411],[-0.050853464752436,0.0045740534551442,0.016746593639255]],[[-0.013133981265128,0.025285080075264,-0.026354394853115],[-0.054031427949667,0.056199852377176,0.035533249378204],[0.032844435423613,-0.030188668519258,-0.022409314289689]],[[0.030206920579076,0.017382141202688,0.042691700160503],[-0.0089869434013963,-0.0083834817633033,0.044288795441389],[-0.052492812275887,-0.039051461964846,-0.047385331243277]],[[-0.011027230881155,-7.5812109571416e-05,0.0061574522405863],[0.017979612573981,-0.021109892055392,0.018696889281273],[-0.028339827433228,0.021213384345174,0.0033431991469115]],[[0.0021151334512979,0.033813003450632,0.059635397046804],[-0.057943478226662,0.056355163455009,-0.076481901109219],[0.0094772214069963,-0.0088543184101582,-0.022429810836911]],[[-0.090228162705898,-0.073297724127769,-0.12568393349648],[-0.12021995335817,-0.0964435338974,-0.023957846686244],[-0.13705311715603,0.016269063577056,-0.17708878219128]],[[0.052581373602152,0.00065454776631668,0.062627159059048],[-0.064951650798321,-0.041192755103111,-0.04108178243041],[0.00023311482800636,-0.0040856529958546,0.015056701377034]],[[-0.003329936414957,0.0082246484234929,0.017231348901987],[-0.03404751047492,0.028522908687592,-0.005363866686821],[-0.0069731804542243,-0.031606048345566,0.012273597531021]],[[0.049392744898796,-0.0028050451073796,-0.02494503185153],[-0.00085300678620115,0.0071321544237435,0.017425836995244],[-0.016310295090079,0.00034525585942902,-0.011489606462419]],[[0.064174190163612,-0.012253751046956,-0.031933154910803],[0.046741507947445,-0.030458623543382,-0.011179566383362],[-0.061448760330677,-0.0083471797406673,0.038957219570875]],[[0.0094827227294445,-0.019927650690079,-0.00014075700892136],[0.01849627494812,-0.048981044441462,-0.0034822998568416],[0.012995129451156,0.010276318527758,0.012340409681201]],[[-0.023185547441244,-0.11609341949224,-0.078262269496918],[-0.21659642457962,-0.13002395629883,-0.068347811698914],[-0.046625807881355,-0.068473860621452,-0.073077999055386]],[[-0.023932380601764,0.049566619098186,0.026930490508676],[-0.026508526876569,-0.024374604225159,-0.059348996728659],[-0.041914768517017,0.028773358091712,0.026726234704256]],[[0.048401821404696,-0.088390454649925,0.020353689789772],[0.0077249673195183,0.042566157877445,-0.042285460978746],[0.021415198221803,-0.03787737339735,0.033492121845484]],[[-0.023116020485759,0.043222922831774,-0.13009013235569],[0.024214437231421,0.02644957229495,0.044336643069983],[0.011582560837269,-0.028673173859715,0.023177061229944]],[[0.014414716511965,-0.063591651618481,-0.026435423642397],[-0.030627036467195,0.07640827447176,-0.017340481281281],[-0.0049537634477019,-0.0026501095853746,0.031601462513208]],[[0.014617542736232,-0.0092659201472998,-0.0026247426867485],[-0.068577513098717,0.050224654376507,0.11815624684095],[-0.1184029430151,-0.014257782138884,-0.017920652404428]],[[0.0070322528481483,-0.092912219464779,0.01625812985003],[-0.017129596322775,0.00499925063923,0.034449081867933],[-0.024969117715955,-0.011911028064787,0.055784352123737]],[[-0.092400826513767,-0.057117082178593,-0.0086078010499477],[-0.00090764206834137,0.089478813111782,0.1069825142622],[-0.019966011866927,0.0061557837761939,0.0078785782679915]],[[0.011520715430379,0.012237765826285,0.016175759956241],[0.045101150870323,-0.063722670078278,0.017183238640428],[-0.0047638970427215,-0.023444375023246,-0.029353411868215]],[[0.036334775388241,0.058948382735252,0.016040096059442],[0.024525916203856,-0.067879289388657,-0.00012784110731445],[0.026431489735842,-0.12256697565317,0.023922635242343]],[[-0.079381890594959,0.020813697949052,0.0336500890553],[0.014668054878712,-0.026428915560246,0.014345367439091],[0.020163960754871,5.3429444960784e-05,0.019151717424393]],[[0.021835062652826,-0.049534898251295,0.0062395343557],[-0.015385963022709,0.0083824871107936,-0.027503540739417],[0.010371416807175,0.037906471639872,0.024868573993444]],[[0.027021439746022,0.040808979421854,-0.0051539591513574],[-0.029359333217144,-0.019566502422094,-0.00027214243891649],[-0.0014465658459812,-0.028449226170778,-0.012244120240211]],[[0.021193910390139,0.048175893723965,-0.038604706525803],[-0.0003338988753967,-0.02791715785861,-0.036814820021391],[-0.00031904163188301,-0.061411194503307,0.1042472794652]],[[-0.0075190607458353,0.036934621632099,0.00045568009954877],[-0.040183905512094,-0.00620820466429,0.0086819231510162],[0.0055591417476535,0.0063671953976154,-0.016730280593038]]],[[[-0.036044005304575,-0.06777735799551,-0.012350078672171],[-0.036139480769634,0.10889239609241,0.089012734591961],[0.033893421292305,-0.10237143933773,0.040448237210512]],[[0.029197312891483,-0.035294938832521,0.11884584277868],[0.021542673930526,0.078516967594624,0.0009237973135896],[-0.1078370064497,-0.019202316179872,-0.06182187050581]],[[0.050639390945435,0.084547452628613,0.027136392891407],[-0.027608033269644,0.11457804590464,0.061202693730593],[-0.0025452992413193,0.15263301134109,0.012719229795039]],[[-0.069476075470448,-0.013861872255802,0.088153406977654],[-0.08652451634407,0.043895576149225,-0.0016698066610843],[-0.023806240409613,-0.10370541363955,0.078263841569424]],[[0.018141712993383,0.003583200275898,-0.029315829277039],[-0.027200307697058,-0.070138603448868,0.14954243600368],[-0.015547295100987,-0.11013200879097,-0.021922577172518]],[[0.069123297929764,0.021176442503929,-0.11003910750151],[-0.045529019087553,-0.041513733565807,-0.13151440024376],[-0.019821150228381,0.0060098287649453,0.056038826704025]],[[0.052144404500723,-0.044098626822233,-0.032585825771093],[0.073435664176941,-0.090888023376465,0.029360285028815],[0.057294107973576,0.088846422731876,0.013943189755082]],[[0.028970260173082,0.016208071261644,-0.017544416710734],[-0.071760557591915,-0.076044261455536,-0.14169034361839],[0.06222053617239,-0.15326891839504,-0.079280063509941]],[[0.03727787360549,0.11868761479855,-0.040112566202879],[-0.011534739285707,0.004768576938659,-0.054081290960312],[-0.027388382703066,-0.0022959811612964,-0.0080688521265984]],[[0.018358137458563,0.063978232443333,0.1091975197196],[0.08829902857542,0.0093703307211399,0.0045887636952102],[0.010147078894079,-0.0775987803936,-0.081977739930153]],[[-0.063155673444271,0.010696732439101,-0.057041633874178],[0.014448240399361,-0.13261069357395,0.13223804533482],[0.07638293504715,0.0013847089139745,0.12301754951477]],[[-0.06227570772171,-0.13715128600597,-0.00957743357867],[0.010431378148496,-0.060638636350632,0.0696627125144],[0.017481883987784,0.065114319324493,0.11212475597858]],[[-0.090019442141056,0.064933761954308,-0.030061233788729],[-0.028351908549666,0.01968072168529,0.14774303138256],[0.011485476046801,0.057689350098372,0.090756967663765]],[[0.12095648050308,0.015985552221537,-0.01061437651515],[-0.016610451042652,-0.051729127764702,-0.1013510376215],[0.0024513341486454,-0.023975521326065,0.1290520876646]],[[0.0058991000987589,0.020152507349849,-0.077538691461086],[-0.036460630595684,0.060694824904203,0.066560067236423],[0.097514130175114,0.10315466672182,-0.060014113783836]],[[0.11953086405993,0.14899745583534,-0.064782254397869],[-1.5001860447228e-06,-0.08249220252037,-0.063809610903263],[-0.22144241631031,0.062699221074581,-0.087427772581577]],[[-0.030397653579712,-0.065614260733128,-0.021093701943755],[-0.11652196198702,-0.12122421711683,0.12229686230421],[0.046432506293058,0.0049618179909885,0.013339859433472]],[[-0.0088139744475484,-0.0017746064113453,0.046744503080845],[-0.093430534005165,0.04705548658967,0.11828802525997],[0.0038383835926652,0.040725115686655,0.078446306288242]],[[0.082696221768856,-0.10855144262314,-0.016400493681431],[-0.055150236934423,0.066255144774914,-0.068372175097466],[-0.015901759266853,-0.016197491437197,0.080547966063023]],[[0.11248603463173,0.017889462411404,0.021716132760048],[-0.043407987803221,0.07524711638689,-0.17533129453659],[0.16262282431126,-0.16716620326042,0.17641405761242]],[[-0.045377429574728,-0.015096633695066,0.01202679798007],[0.0076813288033009,0.028649412095547,0.036498013883829],[0.019097033888102,0.085681021213531,-0.030286561697721]],[[0.027230368927121,0.028195772320032,-0.029198415577412],[-0.037684515118599,-0.12552970647812,0.036723736673594],[-0.041236136108637,-0.025180330500007,0.092209905385971]],[[0.059802573174238,-0.0095257181674242,0.023914830759168],[-0.09463831782341,0.098931953310966,-0.0016257135430351],[0.051449835300446,0.082890242338181,0.095762334764004]],[[-0.01767030544579,0.020090023055673,-0.038625076413155],[-0.051766518503428,0.024349678307772,0.066017016768456],[0.061925835907459,0.076772563159466,0.077424809336662]],[[0.067463994026184,0.061773244291544,0.079293124377728],[-0.059015654027462,-0.023259723559022,0.055924899876118],[0.0023803296498954,-0.068514540791512,0.016123505309224]],[[0.044520437717438,0.039123725146055,-0.055704109370708],[-0.016133980825543,-0.00049555359873921,0.094788119196892],[-0.16480112075806,0.061518020927906,0.10087875276804]],[[-0.061457011848688,-0.055693730711937,0.11230473220348],[0.043036948889494,0.033012099564075,0.051535367965698],[-0.062068160623312,-0.015298779122531,0.08744154125452]],[[0.056211348623037,0.097515389323235,-0.04784208163619],[0.091457478702068,0.041524481028318,0.024476453661919],[-0.11502777040005,-0.1273590028286,-0.075416453182697]],[[-0.010145856067538,-0.042884930968285,0.069953806698322],[-0.034085400402546,-0.00085106818005443,-0.017866272479296],[-0.13844892382622,-0.1282392591238,0.019829800352454]],[[-0.10885107517242,0.064891442656517,-0.015786873176694],[0.090843796730042,0.083560965955257,0.16357810795307],[-0.01235281303525,0.043606750667095,0.13859996199608]],[[0.041550256311893,0.03052949346602,-0.087982103228569],[0.068108670413494,-0.07439998537302,0.060291383415461],[0.01317719463259,0.039439778774977,-0.032393164932728]],[[-0.06413883715868,0.083379924297333,0.039845205843449],[0.12414117157459,0.075964733958244,0.07019842416048],[-0.17325411736965,-0.12161471694708,-0.033914685249329]],[[-0.051274951547384,-0.056585423648357,0.066612936556339],[0.1538912653923,0.1357214897871,0.0035794931463897],[0.030880190432072,0.05281375721097,0.031188264489174]],[[-0.0093740727752447,-0.073451764881611,-0.059631571173668],[-0.12151499837637,0.0063698445446789,0.040466878563166],[-0.083541415631771,-0.0015339276287705,-0.029594698920846]],[[-0.070816807448864,0.11293048411608,-0.058045815676451],[0.049495041370392,-0.006502952426672,0.018067197874188],[-0.063370682299137,-0.043236870318651,-0.022210428491235]],[[-0.0041423989459872,-0.0037163202650845,0.035924933850765],[-0.010299013927579,0.016072738915682,-0.061599463224411],[0.015942553058267,0.023390728980303,0.063295014202595]],[[0.034176409244537,0.051149126142263,0.0774881914258],[0.074006795883179,-0.021601038053632,-0.077962018549442],[-0.020259538665414,-0.001054844702594,0.099279664456844]],[[0.046309683471918,0.031642641872168,-0.025770829990506],[-0.11741562187672,-0.074529141187668,0.07381833344698],[0.21361507475376,0.0040055913850665,-0.08172781765461]],[[0.013570809736848,-0.035024583339691,-0.061698656529188],[0.0061682360246778,-0.13144069910049,-0.15881009399891],[-0.033595897257328,-0.027929030358791,-0.17456151545048]],[[-0.036801405251026,-0.00045617471914738,0.066434539854527],[0.055065255612135,0.083821289241314,-0.045482575893402],[0.091977573931217,0.034393981099129,-0.13617467880249]],[[-0.098222367465496,0.05838518217206,-0.07536505907774],[-0.16207312047482,0.062998622655869,0.077492587268353],[-0.01868711411953,-0.035345833748579,0.10253584384918]],[[-0.095695085823536,0.043430406600237,0.011896842159331],[0.063143663108349,0.0042564715258777,-0.0213064532727],[-0.019820600748062,-0.031898949295282,0.16281957924366]],[[-0.079447716474533,0.0014006131095812,0.11800719797611],[0.0278206076473,-0.094751447439194,0.14942093193531],[-0.0023322985507548,0.010319770313799,0.15317311882973]],[[-0.061722494661808,-0.053152326494455,0.039742644876242],[-0.029562745243311,0.064941585063934,-0.0081329755485058],[-0.045640457421541,-0.027646305039525,0.10694882273674]],[[0.061019748449326,-0.024871781468391,-0.028696738183498],[-0.059959083795547,0.051431972533464,0.00073947780765593],[-0.047437828034163,-0.043633099645376,0.045052018016577]],[[0.073468685150146,-0.0090067982673645,0.028993627056479],[-0.0066161211580038,0.0070611131377518,-0.003166627837345],[0.048639141023159,0.028744205832481,-0.11130729317665]],[[0.015568608418107,-0.029086833819747,0.034056831151247],[-0.025438642129302,-0.046811781823635,-0.061710935086012],[0.078494615852833,-0.061315376311541,0.12466747313738]],[[-0.053531859070063,0.067487940192223,-0.022351069375873],[-0.015381356701255,-0.11480395495892,-0.019747385755181],[0.030603356659412,0.012436685152352,0.017422871664166]],[[0.012821095064282,-0.079498365521431,-0.04318256303668],[0.046331521123648,0.14556197822094,0.058438569307327],[0.020487394183874,-0.070057339966297,0.057946003973484]],[[-0.085161805152893,0.0061181499622762,0.039330281317234],[0.0088038882240653,0.037251763045788,0.022078303620219],[0.021041490137577,0.0046163871884346,0.040166459977627]],[[-0.27690753340721,-0.165551841259,-0.13258737325668],[-0.23376339673996,-0.090188108384609,-0.024985447525978],[-0.058318886905909,-0.11630243062973,-0.016049290075898]],[[0.12077520042658,-0.067679338157177,-0.031519167125225],[0.027609810233116,0.065618075430393,-0.047652762383223],[0.20264680683613,0.039466626942158,0.080317497253418]],[[0.22882454097271,0.042359564453363,-0.10984671115875],[-0.032092999666929,0.027671851217747,-0.073561325669289],[-0.048812333494425,-0.0012459637364373,-0.052832260727882]],[[-0.0064979926683009,-0.084113083779812,-0.018673876300454],[0.16753195226192,0.05661192163825,-0.037376120686531],[0.11579259485006,-0.020879181101918,-0.013156909495592]],[[-0.039394378662109,-0.034571703523397,0.048309162259102],[-0.013992699794471,-0.064647421240807,-0.028810394927859],[0.022004110738635,-0.023016160354018,0.028507255017757]],[[-0.077030085027218,-0.078675046563148,0.027715170755982],[-0.029727227985859,0.03140726685524,0.05224034935236],[-0.16304399073124,-0.18083213269711,-0.064910404384136]],[[0.061865407973528,0.040546093136072,-0.050792176276445],[-0.012428469955921,0.038722492754459,-0.18587474524975],[-0.1222128495574,0.030937742441893,-0.083763599395752]],[[-0.12142314761877,-0.026801461353898,0.031507819890976],[-0.013721059076488,0.069065421819687,0.20174191892147],[-0.10415103286505,-0.02311528287828,0.089248687028885]],[[-0.044828038662672,0.020175281912088,-0.001080235466361],[-0.18324702978134,-0.054020587354898,0.16628250479698],[0.053212929517031,-0.0037464131601155,-0.04741395264864]],[[0.033187594264746,-0.042686883360147,-0.0070838676765561],[0.0016533235320821,-0.12519925832748,0.0062103867530823],[0.029169145971537,-0.019957443699241,0.10229217261076]],[[-0.033777218312025,-0.0080531500279903,0.056752681732178],[-0.032053131610155,-0.038217075169086,0.0085982829332352],[0.13991931080818,-0.047675207257271,0.15728384256363]],[[-0.087088957428932,0.095965333282948,0.066658042371273],[0.00061264401301742,0.063726700842381,-0.047637823969126],[-0.049588426947594,0.064225390553474,0.012798148207366]],[[-0.0088512869551778,-0.048728924244642,-0.010998817160726],[-0.076224260032177,0.00072256661951542,0.0095245977863669],[-0.014570654369891,0.015544495545328,0.019633105024695]],[[0.0082566384226084,-0.015815125778317,-0.21330338716507],[0.035506296902895,0.026191687211394,-0.0025028127711266],[0.080913513898849,0.10046180337667,0.0068885707296431]]],[[[-0.064785718917847,0.1064445078373,-0.062959462404251],[0.064416505396366,-0.049053464084864,0.070892035961151],[0.06945114582777,0.044041898101568,-0.079668626189232]],[[-0.11489672958851,0.056177720427513,-0.043281748890877],[0.07870090007782,0.00061946013011038,-0.065810307860374],[0.032463643699884,0.0023264896590263,-0.095289625227451]],[[0.06819461286068,0.10936014354229,-0.056963134557009],[-0.007189342752099,-0.010768864303827,-0.061331685632467],[0.012275650165975,-0.0038765305653214,0.095286980271339]],[[-0.081494569778442,-0.016724236309528,-0.0014988778857514],[-0.058160699903965,0.028991270810366,-0.017798183485866],[0.076070688664913,-0.11776682734489,-0.02582878805697]],[[0.0037968687247485,-0.033571172505617,0.086664587259293],[-0.02102485857904,0.0037848046049476,0.12499346584082],[-0.061757892370224,0.066435098648071,0.10850568860769]],[[0.001302577322349,0.050961021333933,0.040411926805973],[0.083743646740913,-0.0011183824390173,-0.0062396600842476],[0.17077150940895,0.049791902303696,-0.045259941369295]],[[-0.085352420806885,0.018373845145106,0.014547064900398],[0.020856404677033,-0.02542238496244,-0.13381646573544],[0.13101634383202,-0.038606386631727,-0.024608133360744]],[[-0.11127052456141,-0.076977618038654,-0.028579626232386],[0.046757746487856,0.0032573326025158,0.096156112849712],[0.039399359375238,0.072570092976093,-0.016202369704843]],[[0.041394200176001,0.0018687079427764,-0.05853483080864],[-0.0055671967566013,-0.013113655149937,-0.014569199644029],[0.080674558877945,0.026546042412519,-0.063312612473965]],[[-0.056855820119381,0.099951736629009,0.06392639875412],[0.063551992177963,0.1038730442524,0.0008895214414224],[0.035810545086861,-0.014040159061551,-0.025355203077197]],[[-0.19729532301426,0.16061526536942,-0.013180662877858],[-0.034353099763393,-0.096429236233234,0.018807081505656],[0.016245130449533,-0.0085278293117881,0.041609402745962]],[[-0.19508363306522,-0.099992819130421,-0.021513683721423],[-0.16734278202057,-0.1424772143364,-0.1149834766984],[-0.1061575114727,-0.23569709062576,-0.20759057998657]],[[0.007401576731354,-0.025753021240234,0.0033558530267328],[-0.0088172554969788,0.022410843521357,-0.025759894400835],[-0.023117929697037,-0.061770811676979,-0.031371112912893]],[[0.047765359282494,0.063097141683102,0.065871022641659],[0.035391461104155,0.0015553691191599,0.049706406891346],[-0.042273007333279,0.042725708335638,0.060039583593607]],[[0.063886553049088,0.129704028368,0.021686509251595],[-0.053410518914461,0.025313014164567,0.036353137344122],[0.020231291651726,-0.063447244465351,-0.13141375780106]],[[-0.12358051538467,0.026936143636703,0.016456285491586],[0.010379364714026,-0.0057830326259136,0.081491596996784],[-0.17467890679836,0.11283569037914,0.055652402341366]],[[-0.10338026285172,0.19664819538593,0.069881990551949],[-0.0058972528204322,-0.10659518092871,0.14084751904011],[-0.027292871847749,-0.049921374768019,-0.036549065262079]],[[-0.061701875180006,0.06912587583065,0.080157026648521],[-0.059136942028999,-0.048184081912041,-0.040436718612909],[-0.089105643332005,0.026893706992269,-0.058323908597231]],[[-0.00026902602985501,-0.0068846950307488,-0.085427045822144],[0.11440228670835,-0.085507936775684,-0.071978002786636],[0.061844762414694,0.16733711957932,-0.094952471554279]],[[0.1319143474102,-0.011838497593999,0.019336126744747],[-0.067850857973099,0.064711518585682,-0.049221068620682],[-0.067871384322643,-0.0053705568425357,0.056552484631538]],[[-0.17305868864059,0.024721097201109,0.014408363960683],[-0.034096498042345,-0.013055376708508,-0.15341441333294],[-0.015888839960098,-0.048822909593582,0.019498443230987]],[[0.076709032058716,0.057771388441324,0.043025348335505],[0.025297677144408,0.11586815863848,0.050375465303659],[0.044070344418287,-0.039571318775415,-0.042327284812927]],[[0.0083068674430251,-0.04305237159133,0.023579563945532],[-0.0063330987468362,0.10485795140266,-0.091901853680611],[-0.000835117243696,0.061387069523335,0.12148433923721]],[[-0.036227148026228,-0.052487917244434,0.01788722909987],[-0.078275591135025,-0.21933895349503,0.010363006964326],[-0.02851801738143,-0.11400190740824,-0.012855106033385]],[[-0.051118582487106,-0.03777589276433,0.017936313524842],[0.029691010713577,0.049488388001919,-0.028240283951163],[-0.051264006644487,-0.19658431410789,-0.068387113511562]],[[0.023130422458053,-0.035320565104485,0.0059270383790135],[0.12770621478558,0.026280196383595,-0.083698868751526],[0.046379592269659,0.055711418390274,-0.0084326351061463]],[[0.17028424143791,-0.0029110277537256,-0.062119118869305],[0.043703835457563,0.01697582937777,-0.041326817125082],[0.094838052988052,-0.12881176173687,0.025953764095902]],[[0.16586707532406,-0.10956533253193,0.091500677168369],[0.064630702137947,-0.020126350224018,0.015305342152715],[-0.060737021267414,0.050924338400364,0.098623894155025]],[[-0.18687057495117,0.099121235311031,0.036752451211214],[0.027828149497509,-0.016097046434879,0.029931513592601],[0.10438571125269,0.0036356004420668,0.077867239713669]],[[0.031350754201412,-0.071139305830002,-0.019366113469005],[0.073638051748276,-0.10268773138523,0.032324936240911],[-0.015054295770824,-0.010066322050989,0.087582781910896]],[[0.014284101314843,-0.054033525288105,-0.076016455888748],[-0.085461333394051,-0.17041040956974,2.1187479433138e-05],[-0.073751799762249,-0.18422600626945,-0.024865915998816]],[[-0.0031160647049546,-0.21685695648193,-0.11947251111269],[0.076937213540077,0.14465241134167,-0.066080443561077],[0.063014440238476,0.019382489845157,-0.00090621167328209]],[[0.034917168319225,0.04516576230526,-0.042429782450199],[-0.11866369843483,-0.074926622211933,0.02141877822578],[-0.0064163263887167,0.14362376928329,0.059400908648968]],[[-0.0019213423365727,0.015024406835437,0.026548190042377],[0.14871163666248,0.061011027544737,-0.12977041304111],[0.012177529744804,-0.023106312379241,-0.14244776964188]],[[-0.0095612220466137,-0.0093174185603857,0.060499958693981],[0.022746160626411,-0.03914650157094,-0.0010979463113472],[-0.016195926815271,0.082030057907104,-0.013962597586215]],[[-0.020210893824697,-0.1129157319665,0.083265922963619],[0.074347116053104,-0.043892700225115,-0.001622584532015],[-0.10220574587584,-0.036195233464241,0.029683167114854]],[[0.053534530103207,-0.04742107540369,0.013166329823434],[0.12067334353924,-0.021666178479791,-0.0016873042332008],[-0.02931958809495,0.022722564637661,-0.013662055134773]],[[0.14461970329285,0.12841604650021,0.015787392854691],[0.012463483959436,-0.0043928739614785,0.018906461074948],[0.038561727851629,0.02340735681355,0.0077313068322837]],[[0.042641099542379,-0.041989725083113,0.016357893124223],[-0.01755372621119,-0.097150482237339,0.028682081028819],[0.029226955026388,0.032554671168327,-0.11344771832228]],[[0.059722267091274,-0.13111972808838,-0.064298532903194],[0.16718308627605,0.01055150013417,0.045630026608706],[0.0038679069839418,-0.032596714794636,0.050919562578201]],[[0.079700969159603,-0.057416040450335,0.0033500005956739],[-0.068838447332382,-0.039883200079203,-0.099051937460899],[-0.039661388844252,-0.030437706038356,-0.10921394079924]],[[0.028686130419374,0.0041007045656443,0.033120691776276],[0.00057500472757965,0.057832255959511,0.073137000203133],[-0.069968655705452,-0.058494538068771,0.0024735783226788]],[[0.021281659603119,0.0044323639012873,0.12321946769953],[-0.03336488455534,0.017636086791754,-0.095100224018097],[-0.07139541208744,-0.083559848368168,0.020495213568211]],[[0.047680180519819,0.038591600954533,0.086442321538925],[-0.054402839392424,-0.034414179623127,0.0045646452344954],[-0.01907829195261,-0.037253737449646,-0.063811250030994]],[[0.057560972869396,0.0030202236957848,0.0082194861024618],[-0.092312507331371,-0.014693921431899,-0.073829747736454],[-0.085422016680241,-0.19183401763439,-0.11246311664581]],[[0.12921576201916,0.10501101613045,-0.031542029231787],[-0.013296226039529,-0.00053410441614687,0.011962057091296],[-0.014081262983382,-0.023938236758113,-0.030546054244041]],[[-0.1197499409318,0.07573676854372,0.00051842181710526],[0.023470558226109,-0.075471125543118,0.060607325285673],[-0.11704559624195,0.0084852417930961,-0.021565496921539]],[[-0.036408148705959,0.064749345183372,-0.10774875432253],[0.039669707417488,0.026849905028939,0.045315496623516],[0.014391695149243,-0.098107621073723,-0.053433801978827]],[[-0.11119857430458,-0.026270061731339,-0.022759366780519],[-0.13239252567291,0.061972018331289,-0.08578522503376],[-0.008586136624217,-0.021056341007352,-0.10127664357424]],[[-0.085072860121727,0.099112652242184,0.016105517745018],[-0.027002459391952,0.063237302005291,0.020186537876725],[-0.12161669135094,0.030909061431885,0.031286749988794]],[[0.013608457520604,0.082354687154293,0.013972382061183],[-0.013509870506823,-0.078762538731098,-0.050945270806551],[-0.17457692325115,-0.13730089366436,-0.060510955750942]],[[0.00070771423634142,0.09687689691782,0.040925290435553],[0.043436162173748,0.032067466527224,-0.051697369664907],[-0.082440137863159,0.026827480643988,-0.026871735230088]],[[-0.016373414546251,-0.012982628308237,0.18535949289799],[-0.030551513656974,0.052405171096325,0.10190650820732],[-0.034639984369278,0.069583237171173,0.099661283195019]],[[-0.079318799078465,-0.1056269556284,0.046477477997541],[-0.035577144473791,-0.081749185919762,-0.062428072094917],[-0.040645897388458,-0.18867114186287,-0.18717367947102]],[[0.08800732344389,0.058561854064465,-0.037945721298456],[-0.056264527142048,-0.029570676386356,0.093697249889374],[-0.092626124620438,-0.20489466190338,-0.10750216990709]],[[-0.01215985044837,-0.066160142421722,0.10729948431253],[0.091310650110245,-0.13001072406769,0.024380289018154],[-0.071809984743595,-0.13404525816441,-0.080792106688023]],[[-0.1108473315835,-0.087824009358883,-0.032364156097174],[0.02972387522459,0.095484599471092,-0.042333975434303],[-0.054874893277884,0.074678517878056,-0.070431545376778]],[[-0.092307582497597,0.059310607612133,-0.033705189824104],[-0.036474883556366,-0.027946772053838,0.080340072512627],[0.021714735776186,0.0035083321854472,0.03014812618494]],[[-0.074952885508537,-0.0086651863530278,0.050306469202042],[0.072515219449997,-0.071273423731327,-0.027844889089465],[0.11121819913387,0.10241270065308,-0.02739698253572]],[[0.05907866358757,0.11733788996935,0.16010315716267],[-0.048573601990938,0.018891835585237,0.058689687401056],[0.022456340491772,0.0026562758721411,-0.062109269201756]],[[0.09851461648941,-0.040795624256134,-0.041890442371368],[-0.09743220359087,-0.086362943053246,0.086218953132629],[-0.075865246355534,-0.16037206351757,-0.15102623403072]],[[0.062449477612972,0.026539493352175,-0.0531638674438],[-0.051035534590483,0.037235774099827,-0.021249983459711],[-0.019298415631056,0.036223158240318,-0.0066387341357768]],[[0.11562974750996,0.040618341416121,0.032380390912294],[0.042267255485058,-0.02598899975419,-0.065322712063789],[-0.038011856377125,0.010979195125401,-0.060520086437464]],[[-0.47023025155067,-0.032713122665882,0.07347496598959],[-0.20403224229813,0.1596197783947,0.041542734950781],[-0.028366172686219,-0.1202789247036,0.06157173961401]]],[[[-0.0048104277811944,0.058862630277872,-0.043366998434067],[-0.010609459131956,0.011796717531979,-0.098148263990879],[0.0034011125098914,0.016925133764744,-0.12643572688103]],[[0.069278478622437,-0.07437451928854,0.050633210688829],[0.039555005729198,0.031284384429455,0.0061848764307797],[0.112249314785,-0.04138121381402,0.049396794289351]],[[-0.040682669728994,-0.02585382387042,0.029520383104682],[0.045437056571245,-0.022686654701829,0.0096710026264191],[0.092499442398548,0.089182704687119,0.010470314882696]],[[-0.065192446112633,-0.046765461564064,-0.025079324841499],[-0.12001740187407,-0.085315883159637,-0.066453583538532],[-0.0294442884624,0.057005498558283,0.18092092871666]],[[-0.043789971619844,0.0084015363827348,-0.044673658907413],[-0.017243634909391,-0.040946017950773,-0.1066112741828],[0.14025670289993,-0.028244329616427,-0.040452014654875]],[[-0.0050190673209727,0.086762458086014,-0.066779799759388],[0.0086683267727494,-0.01483457442373,-0.028416881337762],[0.2047766149044,0.0070170015096664,0.005871300585568]],[[0.014933691360056,0.1306636929512,0.038125563412905],[-0.10759260505438,-0.064714521169662,0.16170936822891],[-0.013187856413424,0.062903650105,0.041031431406736]],[[0.024682795628905,0.06722978502512,-0.095780819654465],[0.045246556401253,0.088970795273781,-0.11132379621267],[0.017812468111515,-0.025359071791172,-0.20908163487911]],[[-0.051037486642599,0.030258946120739,0.067429542541504],[-0.041676931083202,-0.034115966409445,0.059152409434319],[-0.0977853089571,-0.011444775387645,0.054520137608051]],[[-0.15131996572018,-0.26170861721039,-0.12152275443077],[0.013404903933406,-0.15731959044933,-0.045735754072666],[-0.15211218595505,-0.11651184409857,-0.05801709741354]],[[-0.0052951672114432,0.16034147143364,-0.0018037355039269],[-0.097689539194107,0.07445815205574,0.0056926561519504],[-0.10523369908333,-0.045896802097559,0.03053617477417]],[[-0.082620359957218,-0.011663138866425,-0.018846172839403],[-0.15297339856625,-0.10827507823706,0.06739729642868],[-0.11745536327362,0.028083028271794,0.049538966268301]],[[-0.020920813083649,-0.02458118647337,0.04492099583149],[-0.097527742385864,-0.0067783766426146,0.053108416497707],[0.078519642353058,0.057008020579815,0.038482468575239]],[[-0.10384709388018,-0.15688301622868,0.03826904669404],[0.053061760962009,0.0098226238042116,0.071280963718891],[0.0088618826121092,0.067374423146248,0.10497594624758]],[[-0.057289097458124,-0.030321763828397,0.13725942373276],[0.00060096418019384,0.039175275713205,0.19944453239441],[0.055989220738411,0.009539183229208,0.13118627667427]],[[-0.028099715709686,0.11204185336828,-0.079382084310055],[0.068663872778416,0.050868228077888,-0.040221113711596],[-0.023130301386118,0.030138747766614,-0.17567579448223]],[[-0.10083279758692,-0.0010744007304311,0.071020811796188],[-0.11623519659042,-0.0067535075359046,0.011593305505812],[-0.072682686150074,-0.00065213604830205,-0.024040397256613]],[[-0.019803956151009,-0.030446754768491,-0.036515638232231],[-0.053641300648451,-0.0062642386183143,0.051649354398251],[-0.18209612369537,-0.028234079480171,0.21064704656601]],[[0.10171451419592,-0.037431702017784,-0.014020936563611],[0.057082962244749,0.11220343410969,-0.089183859527111],[0.066161699593067,0.099683374166489,-0.036656875163317]],[[0.043759990483522,0.010177516378462,-0.014461632817984],[-0.014964557252824,-0.033577404916286,-0.058726392686367],[0.067167922854424,-0.12524081766605,-0.1629381775856]],[[-0.20316725969315,-0.012882699258626,-0.037806879729033],[-0.015836767852306,0.044345553964376,0.0055530471727252],[-0.11174682527781,-0.013588179834187,-0.1095894947648]],[[-0.11316417902708,-0.14446870982647,-0.016414748504758],[-0.14126254618168,-0.10061287879944,-0.10417761653662],[-0.12108547240496,-0.13633166253567,0.012030611746013]],[[-0.012097230181098,-0.15805904567242,-0.014905243180692],[-0.03598690778017,0.039254952222109,0.0068174190819263],[0.011330917477608,0.069151476025581,0.22907929122448]],[[-0.10252087563276,-0.03651200607419,0.067483074963093],[-0.31337451934814,-0.020065281540155,0.10601998865604],[-0.17733488976955,0.055867560207844,0.21927213668823]],[[0.0024075743276626,-0.082590684294701,-0.053197406232357],[-0.093840695917606,0.057359717786312,0.0060503287240863],[-0.1201288998127,0.10271495580673,0.075493082404137]],[[-0.12365774810314,0.043188605457544,-0.1338556855917],[0.083871148526669,0.046428211033344,-0.04710029810667],[0.043031193315983,-0.024175008758903,0.047222033143044]],[[-0.065984196960926,-0.12067553400993,-0.066378809511662],[-0.035135198384523,0.018973419442773,0.057698242366314],[-0.145103469491,-0.03279222920537,0.049539960920811]],[[-0.13190200924873,-0.035410806536674,-0.0458118095994],[-0.015641205012798,0.011389078572392,-0.17285980284214],[-0.098675191402435,0.089507378637791,-0.062938451766968]],[[-0.080625705420971,0.010112885385752,0.056072968989611],[0.081409350037575,0.035696163773537,0.045292865484953],[-0.0011345178354532,0.14734877645969,0.067507907748222]],[[-0.060828547924757,-0.037217620760202,-0.029938530176878],[0.0035603626165539,0.073267087340355,0.032575700432062],[-0.087813481688499,0.065803594887257,0.056448891758919]],[[-0.13736751675606,-0.10452354699373,0.051172096282244],[-0.18023161590099,-0.0085755921900272,0.023861289024353],[-0.073924832046032,0.065050907433033,-0.087807849049568]],[[-0.062134627252817,-0.030316941440105,0.028416596353054],[0.02950120344758,-0.0056067048572004,-0.0058771520853043],[-0.11377873271704,0.10504269599915,-0.037141460925341]],[[0.08790560811758,0.043635852634907,-3.9062229916453e-05],[0.0077522727660835,0.021804189309478,0.11933631449938],[-0.14384938776493,0.070881828665733,0.099551565945148]],[[0.034496072679758,-0.025473773479462,-0.038644164800644],[-0.020536486059427,-0.093410044908524,-0.012707900255919],[-0.065285205841064,-0.040560245513916,0.13561864197254]],[[-0.11357536166906,-0.013763193972409,-0.056505654007196],[-0.11693152785301,0.12204580008984,0.10355151444674],[0.057744052261114,0.076056927442551,-0.0051746610552073]],[[0.026257468387485,-0.040496442466974,0.060018688440323],[0.026757458224893,0.060712777078152,0.069419607520103],[-0.023473870009184,0.078461520373821,0.069756597280502]],[[-0.078188478946686,-0.09359610080719,-0.058078836649656],[-0.057612847536802,0.014761441387236,0.068149536848068],[-0.055653784424067,0.014503499493003,-0.0091371340677142]],[[0.09080296009779,0.033680554479361,0.031616371124983],[0.0078703099861741,0.022755613550544,0.15867626667023],[-0.048864301294088,0.048793762922287,-0.081379018723965]],[[-0.019911078736186,-0.030567487701774,-0.061300836503506],[-0.018090618774295,-0.060268234461546,0.0057818330824375],[-0.079206936061382,0.041531905531883,0.092994265258312]],[[0.050578240305185,-0.10142703354359,-0.14870591461658],[0.15400430560112,-0.037866678088903,-0.1395955234766],[-0.016105202957988,0.01077673304826,-0.2080242484808]],[[-0.12647134065628,0.053701933473349,0.020699672400951],[-0.014525414444506,0.03525834903121,-0.021859638392925],[-0.012562306597829,-0.045499138534069,-0.13675037026405]],[[-0.16610206663609,-0.0067075076512992,-0.012104192748666],[-0.040471401065588,-0.0782325938344,0.086651973426342],[0.070977225899696,0.11874189972878,0.23910239338875]],[[-0.12819489836693,-0.0028293617069721,0.021085077896714],[-0.045083209872246,-0.050940349698067,0.077831119298935],[0.18666198849678,0.016203669831157,-0.025180758908391]],[[0.0033981662709266,-0.047924097627401,-0.072797231376171],[-0.034130178391933,0.020121846348047,-0.034768659621477],[0.1074378117919,0.017586903646588,-0.0058895368129015]],[[-0.11199270188808,-0.11972447484732,-0.019181234762073],[-0.028074583038688,0.053167790174484,0.00028020673198625],[-0.050075773149729,-0.016678297892213,0.026463449001312]],[[-0.12428060919046,-0.05981882289052,-0.042204722762108],[-0.10218718647957,0.020065147429705,-0.03387875854969],[0.013753719627857,0.044241383671761,0.030074713751674]],[[-0.17521098256111,-0.032235115766525,0.00055649754358456],[0.047546498477459,0.0049776560626924,0.10891710221767],[0.073636092245579,-0.035645734518766,0.069311678409576]],[[-0.18801286816597,-0.0046527381055057,0.055380962789059],[-0.13186828792095,-0.017037825658917,-0.077640078961849],[-0.085870988667011,-0.14900568127632,-0.24268206954002]],[[-0.076143190264702,-0.035489112138748,0.055040489882231],[-0.034989438951015,0.090882010757923,-0.13424757122993],[0.005719902459532,0.005927577149123,-0.041895195841789]],[[0.063194252550602,-0.0036702188663185,-0.10029670596123],[0.095014818012714,0.01411203853786,-0.060974802821875],[0.11842397600412,0.023643894121051,-0.17226780951023]],[[0.076601937413216,-0.13429878652096,-0.059940215200186],[-0.0065208864398301,-0.066680587828159,0.020072057843208],[0.011679657734931,0.056630067527294,0.12705729901791]],[[-0.036963179707527,-0.056239329278469,0.038723971694708],[0.098383598029613,-0.049890279769897,0.083339661359787],[0.019260726869106,-0.01138901244849,0.12213961780071]],[[0.15702123939991,0.085120432078838,0.088338144123554],[0.10510905832052,-0.056108526885509,-0.0836316421628],[0.069119445979595,-0.084887497127056,-0.14649260044098]],[[0.24325287342072,0.11872360855341,0.12043309211731],[0.15725557506084,-0.075275018811226,0.12707713246346],[0.098239168524742,-0.019546799361706,-0.0052493782714009]],[[0.046437937766314,0.033402848988771,0.018065923824906],[0.033265683799982,-0.046949330717325,0.12567345798016],[0.13052478432655,0.035007406026125,0.016067188233137]],[[0.14590805768967,0.022708803415298,0.031898457556963],[0.087157696485519,0.01553341653198,-0.0049607935361564],[-0.019168104976416,-0.011653857305646,0.12206225097179]],[[-0.054026182740927,0.0013158411020413,0.045398816466331],[0.0036303075030446,0.093172967433929,0.097602777183056],[0.053574152290821,0.017597267404199,-0.019632449373603]],[[-0.096913665533066,-0.11710203438997,-0.092061169445515],[0.072229258716106,-0.091089569032192,0.037319239228964],[0.013090099208057,-0.096481181681156,0.052769962698221]],[[0.064110919833183,0.06484067440033,-0.062097162008286],[0.062238994985819,-0.022782096639276,-0.018172273412347],[0.16696818172932,0.035063754767179,0.022996881976724]],[[-0.048185832798481,-0.018430745229125,0.014192877337337],[-0.087335541844368,-0.072768166661263,0.064849726855755],[-0.091953381896019,-0.011114380322397,0.068434827029705]],[[-0.10117240250111,-0.066233731806278,0.07198677957058],[-0.11746847629547,0.028519410640001,0.10290269553661],[-0.076669983565807,0.077333830296993,0.21911622583866]],[[0.0055197789333761,-0.015307134017348,6.1854167142883e-05],[-0.081337474286556,0.10755594074726,-0.08944184333086],[0.056594613939524,-0.017429502680898,-0.066801868379116]],[[-0.01743851788342,0.030387384817004,-0.060285121202469],[-0.048092439770699,-0.034536797553301,-0.055467933416367],[-0.0244972538203,-0.10134432464838,-0.25397768616676]],[[-0.017516920343041,-0.052369892597198,-0.084112323820591],[0.15166613459587,0.011912834830582,-0.12010456621647],[0.20068295300007,0.082623958587646,-0.090386524796486]]],[[[-0.077384032309055,-0.15134799480438,-0.022521799430251],[0.110461384058,0.1141674220562,0.062778472900391],[0.096266254782677,-0.030041880905628,0.0013706755125895]],[[0.097929522395134,0.10255130380392,-0.061660636216402],[-0.042733728885651,-0.15040969848633,0.032405585050583],[0.023000944405794,0.0126719083637,0.097960017621517]],[[0.013117118738592,-0.0079603027552366,0.13281987607479],[-0.040818221867085,0.046644810587168,-0.045195639133453],[0.038754984736443,-0.023635594174266,-0.098495468497276]],[[0.057129185646772,-0.063005857169628,0.079026117920876],[0.061102584004402,-0.069062657654285,0.079027198255062],[-0.12570512294769,-0.22709488868713,0.04635464027524]],[[0.05295330658555,0.10760386288166,0.20042975246906],[0.020312955603004,-0.061994265764952,0.021502107381821],[-0.053738389164209,0.10653436928988,-0.10085729509592]],[[0.16497832536697,0.10590266436338,0.089783996343613],[0.0024380455724895,-0.017528334632516,0.0093047246336937],[-0.05315874889493,-0.12418728321791,0.065745502710342]],[[0.080771759152412,0.032238330692053,0.026781894266605],[0.0045479787513614,0.052869338542223,-0.035557609051466],[0.067444577813148,0.03326116874814,-0.05086637660861]],[[-0.049900557845831,0.0073720710352063,-0.074238412082195],[-0.05448080599308,-0.027342043817043,-0.011211227625608],[0.055710848420858,0.054896049201488,-0.04701991379261]],[[-0.064779408276081,-0.15725293755531,-0.024158954620361],[0.01764527708292,-0.00045945221791044,-0.056081343442202],[0.097780786454678,0.080833896994591,0.095740862190723]],[[-0.092464879155159,-0.010088991373777,0.13810031116009],[-0.15631809830666,-0.010244587436318,-0.044554688036442],[-0.045015383511782,-0.13685487210751,-0.03736099973321]],[[-0.0058188633993268,0.024682506918907,-0.11621224880219],[0.066209636628628,0.058077234774828,0.080158613622189],[0.032081935554743,0.082245737314224,0.043872553855181]],[[0.055820159614086,0.0023421286605299,-0.0074773579835892],[-0.10647632181644,-0.085651062428951,-0.02950843423605],[-0.0073505803011358,0.081077717244625,0.043802820146084]],[[-0.15151783823967,-0.060723952949047,-0.0068886266089976],[-0.12835627794266,-0.15729622542858,-0.0088814217597246],[0.14242258667946,-0.085835680365562,-0.020566144958138]],[[0.038221627473831,0.0017062937840819,0.039778504520655],[-0.043678984045982,-0.11453192681074,0.021739102900028],[0.047045737504959,0.014315883629024,-0.050890773534775]],[[-0.13892132043839,-0.084722608327866,0.0020540561527014],[-0.14760227501392,0.035922352224588,-0.010443734936416],[0.0080270543694496,-0.026012528687716,0.10501687973738]],[[0.0018009773921221,0.0016308868071064,-0.040661666542292],[0.0092749046161771,0.00032659628777765,0.082608953118324],[0.11790735274553,0.014091490767896,-0.12164852768183]],[[0.1350069642067,-0.047676935791969,-0.10785222053528],[0.10552099347115,0.099418886005878,-0.015942161902785],[0.060748398303986,0.02070851996541,-0.026554800570011]],[[-0.015004550106823,0.0067197065800428,-0.12079130858183],[-0.1176495179534,0.042478196322918,0.056359354406595],[-0.047595031559467,0.066751465201378,0.027924025431275]],[[0.097837433218956,-0.10535407811403,0.011090041138232],[-0.02575434371829,-0.036170653998852,0.052799213677645],[0.064075917005539,-0.015229504555464,-0.014746254310012]],[[-0.039015613496304,0.091578215360641,-0.18486131727695],[0.012333451770246,-0.048811260610819,-0.022125037387013],[0.0043432777747512,0.0096002444624901,-0.12565909326077]],[[-0.091384127736092,-0.018290368840098,-0.04441025108099],[-0.0031627574935555,0.09076751023531,0.093682199716568],[0.049526780843735,-0.073085442185402,-0.0087923370301723]],[[-0.086423240602016,0.032830379903316,0.077270232141018],[0.09104960411787,0.21464197337627,0.028049305081367],[-0.046264939010143,0.043055135756731,-0.04849111661315]],[[0.10650155693293,0.012670593336225,0.055135648697615],[-0.015007676556706,-0.075018167495728,-0.045230709016323],[-0.029462907463312,0.074832372367382,0.1074076294899]],[[-0.20689359307289,-0.11201083660126,-0.064238473773003],[0.10272412002087,-0.08700031042099,0.078015938401222],[0.054224904626608,0.025900270789862,0.18286743760109]],[[0.0080986898392439,-0.089457847177982,0.04238048568368],[-0.037687670439482,-0.016188196837902,0.030175456777215],[0.067017503082752,-0.031283359974623,-0.028387486934662]],[[-0.023601613938808,-0.0015429607592523,-0.037232685834169],[0.11861196160316,-0.020480310544372,-0.0096484264358878],[0.18090109527111,-0.032280188053846,0.00054577057017013]],[[-0.078718602657318,0.077955693006516,0.062903724610806],[0.076878435909748,-0.060005698353052,-0.054371666163206],[-0.13838618993759,0.039559673517942,0.049343537539244]],[[-0.026257175952196,-0.16209523379803,-0.029286298900843],[0.078534133732319,-0.0023693514522165,0.02715908177197],[-0.04806861281395,0.070308744907379,0.06160206720233]],[[-0.04822601750493,0.11789293587208,0.18624199926853],[0.019125493243337,0.029448950663209,0.056575257331133],[0.031644485890865,-0.03927806019783,-0.024425288662314]],[[0.10022829473019,-0.058161269873381,-0.12355320155621],[0.080230981111526,-0.054494738578796,-0.038744051009417],[-0.054457705467939,-0.10136267542839,-0.07229782640934]],[[-0.086490601301193,-0.10517080873251,-0.13452358543873],[0.098240114748478,0.018818682059646,-0.15746703743935],[-0.0044945548288524,-0.079604879021645,-0.019566301256418]],[[0.0087827555835247,-0.068717025220394,-0.10551702976227],[-0.015806706622243,-0.02208149433136,0.061953701078892],[0.090474173426628,0.0062709599733353,0.095235571265221]],[[-0.043850991874933,-0.039773542433977,-0.017778065055609],[0.092411860823631,-0.03832783550024,0.047605060040951],[-0.00090323871700093,-0.025409292429686,0.0099308425560594]],[[0.0072882636450231,-0.036399964243174,0.078054800629616],[-0.093812324106693,-0.033722098916769,-0.057762656360865],[-0.083435736596584,-0.11639326065779,-0.0045695239678025]],[[0.016169600188732,0.11488728225231,0.089617148041725],[0.075038105249405,0.055224779993296,-0.0022162823006511],[-0.14279086887836,-0.052824575453997,-0.035560354590416]],[[-0.0041971225291491,-0.038353770971298,-0.13100436329842],[-0.10172951966524,-0.059825874865055,-0.10959231108427],[-0.050616923719645,-0.10478039085865,-0.061472155153751]],[[-0.061893686652184,-0.019436771050096,0.051516246050596],[-0.040555566549301,-0.15005786716938,-0.061371389776468],[-0.066678330302238,-0.079312585294247,-0.021278984844685]],[[-0.099484704434872,0.015906255692244,0.036648295819759],[0.0020775506272912,0.048384889960289,-0.040992833673954],[-0.037548050284386,0.032634548842907,0.11267165094614]],[[0.074674986302853,-0.0026976282242686,-0.07042158395052],[0.008035846054554,-0.029213020578027,-0.062891393899918],[0.077174171805382,0.20939789712429,0.15040582418442]],[[-0.043837338685989,-0.055141199380159,-0.14692464470863],[0.015374081209302,-0.1650761961937,-0.063980229198933],[-0.024857647716999,-0.04664646461606,-0.057877190411091]],[[-0.027047896757722,-0.069546781480312,0.050681117922068],[0.039003632962704,-0.17131175100803,-0.11707188934088],[-0.059838075190783,-0.1102193146944,-0.10299402475357]],[[0.068354614078999,0.074214786291122,0.017135739326477],[0.042746417224407,-0.032268512994051,-0.12648138403893],[-0.069846913218498,0.075242258608341,0.11602532863617]],[[-0.053810119628906,-0.050869539380074,0.084159560501575],[0.041173093020916,-0.024715848267078,0.00012835342204198],[-0.036019962280989,-0.025131165981293,-0.00088688603136688]],[[0.12866958975792,0.10603364557028,0.13437753915787],[-0.071706831455231,0.017702693119645,-0.051381502300501],[-0.11772838979959,0.0029210492502898,-0.082703843712807]],[[0.0071082790382206,-0.16821670532227,-0.023701222613454],[-0.086792670190334,-0.10463070869446,-0.15497127175331],[-0.090138606727123,-0.14808604121208,-0.08858060836792]],[[-0.040941331535578,-0.029665978625417,-0.08880241215229],[-0.016168367117643,-0.054289530962706,-0.17560403048992],[-0.012783718295395,0.061773091554642,0.081396877765656]],[[0.005016669165343,-0.026792012155056,0.034724291414022],[-0.070967525243759,-0.1594855338335,-0.042789340019226],[-0.094957768917084,-0.020229250192642,0.038647096604109]],[[-0.068339146673679,-0.040400683879852,-0.074847675859928],[0.088314145803452,-0.042360454797745,-0.069091238081455],[-0.12873923778534,-0.048113886266947,0.050177559256554]],[[-0.024751298129559,-0.0077883992344141,0.0014880794333294],[-0.021391179412603,0.011731084436178,0.072739221155643],[0.080319166183472,-0.012279582209885,0.0080398097634315]],[[0.039354965090752,0.16826382279396,0.112543143332],[0.033516384661198,-0.03417643904686,-0.066408798098564],[-0.19422407448292,-0.0092259738594294,-0.10388077050447]],[[0.06507346779108,0.0050579179078341,0.056984074413776],[-0.1367998868227,0.099372439086437,-0.014869602397084],[-0.0047178328968585,-0.022982403635979,-0.073292352259159]],[[0.069308184087276,-0.064036130905151,-0.060833044350147],[-0.00092613411834463,-0.06165724620223,-0.13346943259239],[-0.019265992566943,-0.0057160821743309,0.056692365556955]],[[0.064455628395081,0.017988545820117,0.051509283483028],[0.038909886032343,0.079965375363827,-0.063414976000786],[0.090124227106571,0.049938652664423,-0.052294820547104]],[[-0.07823871076107,0.12715247273445,0.0094059146940708],[0.076024428009987,0.058487437665462,0.14276652038097],[-0.00078330404357985,0.019679414108396,-0.076238885521889]],[[-0.034608446061611,-0.022304449230433,-0.042763888835907],[-0.10614724457264,0.0062601487152278,-0.029505612328649],[-0.12008748948574,-0.11022276431322,-0.09628501534462]],[[0.11141785234213,-0.036418873816729,0.11301816999912],[-0.13537755608559,-0.20453745126724,0.16975130140781],[0.081152699887753,0.033857632428408,0.10487049818039]],[[0.011626559309661,-0.055941130965948,-0.0087279351428151],[-0.024156287312508,0.054405726492405,0.1402539908886],[0.10402775555849,-0.056694459170103,0.099407337605953]],[[0.050646480172873,0.036571573466063,-0.17231678962708],[-0.1396352648735,0.026020221412182,-0.052526995539665],[0.062907010316849,-0.076624743640423,-0.039334274828434]],[[0.1108430698514,0.038867376744747,0.11811023950577],[-0.11215986311436,-0.053814467042685,-0.055209416896105],[-0.02694976888597,0.092527836561203,0.032765489071608]],[[-0.052689973264933,0.044476620852947,-0.018412921577692],[0.10332066565752,0.03236173465848,0.018060790374875],[0.040262043476105,-0.049760483205318,-0.051749359816313]],[[-0.01285108178854,-0.088607020676136,-0.057881020009518],[-0.0013728138292208,0.058106772601604,-0.013659602031112],[-0.054205041378736,0.062735021114349,0.11274752765894]],[[0.08758657425642,-0.12375799566507,-0.052568558603525],[-0.019149800762534,-0.027296150103211,-0.01194286160171],[0.17561407387257,-0.013336401432753,0.043601658195257]],[[-0.1978525519371,-0.017765877768397,-0.15869526565075],[-0.080874249339104,-0.1461094468832,0.023511013016105],[0.046421051025391,0.036727383732796,0.16158610582352]],[[0.045231532305479,-0.083494640886784,-0.15842080116272],[-0.23103128373623,0.039682909846306,0.025460138916969],[-0.19316202402115,0.028965262696147,0.17984433472157]]]],"nOutputPlane":64,"kW":3,"kH":3,"bias":[-0.014284716919065,-0.010058079846203,-0.057199835777283,-0.019996738061309,-0.010105531662703,-0.0087292119860649,-0.01659925468266,-0.00028767948970199,-0.0052339853718877,-0.0032940120436251,-0.0055701308883727,-0.013724643737078,-0.010038543492556,-0.0042379978112876,-0.012462146580219,-0.014257338829339,-0.0084912488237023,-0.011975014582276,-0.0089956503361464,-0.030548922717571,-0.010745176114142,-0.0087524056434631,-0.012073401361704,-0.018054872751236,-0.0091189853847027,-0.0095401601865888,-0.0099977850914001,-0.015250825323164,-0.005786597263068,-0.01520898193121,-0.0094105713069439,-0.0070966240018606,-0.0059692491777241,-0.011578726582229,-0.017782960087061,-0.0010140727972612,-0.0075410776771605,-0.01249320153147,-0.011416818015277,-0.020779009908438,-0.012390743941069,-0.0083941221237183,-0.0098704639822245,-0.014936007559299,-0.0094049898907542,-0.0054810945875943,-0.0088196182623506,-0.016007797792554,-0.0090843560174108,-0.0061539458110929,-0.0037419360596687,-0.019625822082162,-0.012165488675237,-0.0069314520806074,-0.010300879366696,-0.0047918763011694,-0.01032883208245,-0.011534933932126,-0.018533235415816,0.037995018064976,-0.020232193171978,-0.0059339050203562,-0.005441012326628,-0.0027697535697371],"nInputPlane":64},{"weight":[[[[-0.0026585678569973,-0.084852337837219,-0.057839404791594],[0.078723683953285,-0.056859210133553,-0.019138589501381],[0.003637018147856,0.068234570324421,-0.02586105465889]],[[-0.0015321885002777,-0.044900711625814,-0.015994349494576],[0.096264466643333,-0.00024411280173808,-0.021883931010962],[-0.068038582801819,-0.037320073693991,-0.028238091617823]],[[-0.035863041877747,-0.13870537281036,-0.12299218028784],[-0.021823840215802,-0.09017588943243,-0.074399873614311],[0.13381880521774,0.053321715444326,-0.046180803328753]],[[-0.060889158397913,-0.021835714578629,0.0086721098050475],[0.0012067459756508,-0.040685176849365,-0.046390794217587],[-0.0071513834409416,-0.073007225990295,-0.062787689268589]],[[-0.072340101003647,0.039904180914164,-0.018356824293733],[-0.056020759046078,0.02398837544024,0.038895025849342],[-0.18344423174858,-0.10263536125422,0.024846225976944]],[[0.05905157327652,-0.025759486481547,-0.026144944131374],[-0.011879739351571,-0.094552300870419,-0.10121788084507],[-0.0064937281422317,0.048024106770754,0.036391578614712]],[[-0.06062538176775,-0.09638986736536,-0.05917377397418],[-0.085014142096043,-0.027899872511625,-0.018003160133958],[0.053104214370251,-0.039760377258062,-0.060300648212433]],[[0.018234292045236,0.08510260283947,0.062496021389961],[-0.016291191801429,-0.090765178203583,-0.031458884477615],[0.14984375238419,0.1098471134901,-0.053511336445808]],[[0.017110522836447,0.067716836929321,-0.028967432677746],[-0.017953619360924,0.090530268847942,-0.079394303262234],[0.0031295693479478,0.03052114136517,-0.057158451527357]],[[0.032134182751179,0.034692842513323,-0.089720092713833],[-0.010350747965276,-0.010463435202837,-0.028375323861837],[-0.016020717099309,-0.097614273428917,-0.03200526535511]],[[-0.076239965856075,-0.0015107720391825,0.0086219822987914],[-0.014954958111048,-0.06015270575881,0.029028447344899],[0.023660454899073,0.0096403639763594,0.020649142563343]],[[-0.10203995555639,-0.17773477733135,-0.090825304389],[-0.20242826640606,-0.1978395730257,-0.0067401798442006],[-0.11472278088331,-0.058633372187614,-0.0084539353847504]],[[0.079803735017776,-0.012874874286354,0.071459949016571],[0.055598609149456,0.049993433058262,-0.0081918593496084],[-0.066773943603039,0.07676150649786,-0.065188884735107]],[[-0.02094990760088,-0.026702499017119,0.043465696275234],[0.078978851437569,-0.0087002860382199,0.063338786363602],[0.074729926884174,0.016192419454455,-0.01202879846096]],[[-0.01681319065392,0.0092908628284931,0.065846271812916],[-0.034935481846333,0.028940979391336,0.030972801148891],[-0.02271998859942,0.020202627405524,0.014034301973879]],[[-0.084075972437859,-0.058436889201403,-0.021649196743965],[-0.12857335805893,0.0083564259111881,0.061519794166088],[0.051147036254406,0.0039357799105346,-0.050130363553762]],[[0.0092834308743477,-0.058486774563789,-0.00066478655207902],[-0.037498828023672,0.03276077657938,-0.047362983226776],[0.11226088553667,0.095401093363762,0.029641343280673]],[[-0.077370278537273,-0.079242520034313,-0.11493693292141],[-0.0090053658932447,0.047784078866243,0.036063339561224],[-0.02153810672462,-0.030623948201537,-0.055658172816038]],[[0.0037763759028167,0.10113377869129,0.02392883785069],[0.019399082288146,0.00033478802652098,0.0098892021924257],[0.10978040844202,0.033282563090324,0.02965128980577]],[[0.047617550939322,-0.0028290031477809,-0.050751801580191],[0.011068874038756,0.016762332990766,-0.053561739623547],[0.079900078475475,0.020061660557985,-0.051531028002501]],[[0.033457659184933,-0.008187510073185,0.029486641287804],[0.012982649728656,0.020364627242088,0.047549277544022],[0.056925628334284,0.071861162781715,0.033577959984541]],[[-0.083440333604813,0.12986280024052,0.0056161796674132],[-0.097164236009121,-0.021029070019722,0.052589438855648],[0.0078816702589393,-0.012829637154937,-0.05031493678689]],[[0.011894026771188,0.049802102148533,-0.086281761527061],[0.039181180298328,0.085732385516167,-0.029501110315323],[0.084411829710007,-0.018325867131352,0.069729603827]],[[0.071452416479588,0.031662061810493,0.16887860000134],[-0.024269640445709,0.12884518504143,0.13340489566326],[0.022474149242043,-0.081699073314667,-0.010929556563497]],[[-0.001977680483833,-0.035727113485336,-0.0506148673594],[-0.041783183813095,0.034117218106985,0.017838606610894],[-0.094380363821983,0.07502044737339,-0.028993461281061]],[[0.0042015905492008,-0.027763038873672,-0.028175361454487],[0.053836915642023,0.019996093586087,0.017429675906897],[0.090134970843792,0.071787588298321,-0.032844338566065]],[[-0.0037713330239058,0.043666180223227,0.026303255930543],[-0.17203390598297,-0.11935241520405,-0.058842416852713],[0.091071248054504,0.1450972110033,0.0099445292726159]],[[-0.018245853483677,-0.028653658926487,-0.030190549790859],[0.0161665212363,0.016166541725397,0.0055468543432653],[-0.020854808390141,-0.063731163740158,0.030088255181909]],[[0.017522113397717,-0.021549778059125,-0.0048933196812868],[-0.035610850900412,0.032335087656975,-0.026763765141368],[0.014995112083852,0.029344758018851,-0.11824970692396]],[[-0.077527329325676,0.006775613874197,-0.05452112108469],[-0.03480376675725,0.013303915970027,-0.023218480870128],[-0.0068018510937691,0.061720971018076,0.044659305363894]],[[0.0062303221784532,-0.04162123799324,0.012396424077451],[-0.014487276785076,0.059302572160959,-0.076654523611069],[-0.03604082018137,0.021112633869052,-0.066832266747952]],[[0.037452720105648,-0.020872483029962,-0.063799723982811],[0.033525910228491,-0.031992647796869,-0.061412684619427],[0.013545747846365,-0.065095297992229,0.06090559437871]],[[0.017522683367133,0.0067333001643419,0.010896930471063],[0.025396157056093,0.015688773244619,0.0083962045609951],[0.038270723074675,-0.086423516273499,0.0573655590415]],[[0.02487993426621,0.1016707867384,0.018928006291389],[0.024017075076699,0.064613707363605,0.024008387699723],[0.014518569223583,0.03156328946352,-0.054269641637802]],[[-0.10704094171524,-0.080715000629425,-0.14587250351906],[-0.24864357709885,-0.030393498018384,0.021887455135584],[-0.17979528009892,0.061973933130503,0.033400248736143]],[[-0.010421468876302,-0.019815953448415,-0.083721674978733],[0.036655373871326,0.058028306812048,-0.027868323028088],[0.1078282520175,0.0084666088223457,0.0078100240789354]],[[0.019971366971731,-0.053269479423761,-0.098234824836254],[0.049721818417311,-0.10058762133121,-0.05307487770915],[-0.10539261251688,-0.066506743431091,0.042962793260813]],[[-0.090508118271828,-0.0016444918001071,0.028426378965378],[-0.034088555723429,-0.00098934664856642,0.063338913023472],[0.11499024182558,0.0347745642066,-0.047481972724199]],[[-0.024823315441608,-0.019210066646338,-0.012417847290635],[0.027470106258988,0.05363942310214,0.0044818166643381],[-0.053488031029701,0.0063484059646726,-0.020078796893358]],[[-0.032944981008768,0.048925407230854,-0.069710060954094],[-0.015344931744039,0.0011944088619202,0.059407565742731],[0.060871530324221,0.05209880694747,0.025871058925986]],[[-0.014658518135548,0.027803799137473,0.054213974624872],[0.0060087144374847,-0.024652253836393,0.099687620997429],[-0.028845179826021,-0.010347378440201,0.0488610714674]],[[0.026487642899156,-0.027654800564051,0.071318358182907],[0.029791913926601,-0.054922252893448,-0.072008676826954],[-0.0067834919318557,0.042810935527086,0.013669494539499]],[[0.011016850359738,0.010820637457073,0.035246264189482],[0.090183079242706,-0.059132248163223,0.044349994510412],[0.12824378907681,-0.13953566551208,-0.061915423721075]],[[-0.086210541427135,-0.090323992073536,-0.29857155680656],[0.038268763571978,0.023329451680183,-0.094978250563145],[-0.1663560718298,-0.11498176306486,-0.08962357789278]],[[0.010537068359554,-0.0023341199848801,-0.042573947459459],[0.038576129823923,-0.0849389731884,-0.003442817600444],[-0.0010176891228184,-0.16491493582726,0.027200078591704]],[[0.0014028740115464,0.047060333192348,0.074975676834583],[0.013909846544266,-0.074656806886196,0.0076023265719414],[0.0027325602713972,0.078664667904377,0.03001494333148]],[[0.036095030605793,0.050544433295727,-0.073863051831722],[-0.016590181738138,-0.059880189597607,-0.031802296638489],[0.039454478770494,0.021429723128676,0.055478736758232]],[[0.043066598474979,0.053448565304279,-0.11265345662832],[0.022245096042752,-0.045265790075064,-0.041031163185835],[-0.037323798984289,-0.025045357644558,-0.016203816980124]],[[0.0059271608479321,0.038863964378834,-0.089142821729183],[0.10741009563208,-0.034189876168966,-0.17746819555759],[-0.044474728405476,0.0011028726585209,0.048904985189438]],[[-0.037721361964941,-0.010566798038781,-0.070940859615803],[0.092766270041466,0.037333831191063,-0.063607394695282],[-0.072526142001152,0.013890476897359,-0.019757300615311]],[[-0.030550599098206,-0.03687733784318,-0.049980010837317],[0.014291567727923,-0.058483712375164,0.064991936087608],[-0.027819871902466,0.0048826998099685,0.028023332357407]],[[0.1080913618207,0.076872237026691,0.02653775177896],[0.13772134482861,0.010459816083312,-0.019345818087459],[0.079608410596848,-0.084059461951256,-0.12559765577316]],[[-0.043195690959692,-0.094815850257874,-0.07375293970108],[-0.0053096003830433,0.020217524841428,-0.050599776208401],[-0.052212864160538,0.032854400575161,0.017092471942306]],[[-0.04378854855895,-0.07879227399826,-0.046573650091887],[0.012526801787317,-0.04731348529458,-0.019124217331409],[-0.045238107442856,-0.015686001628637,-0.025260955095291]],[[0.019059183076024,0.019561057910323,-0.03014412894845],[0.023656448349357,-0.029736917465925,-0.077518828213215],[0.029126515612006,-0.038535732775927,0.026919636875391]],[[-0.16770888864994,-0.047091443091631,-0.11453711241484],[-0.16281369328499,-0.075944058597088,-0.024221129715443],[-0.098661288619041,0.0085506895557046,-0.036508418619633]],[[0.092879980802536,-0.00080863380571827,-0.011043994687498],[-0.04455941170454,-0.036222741007805,0.013650574721396],[-0.14967234432697,-0.0050395340658724,-0.0023279681336135]],[[0.010919174179435,-0.0090763792395592,-0.17148105800152],[0.01454914547503,-0.058946620672941,0.015743397176266],[0.058662302792072,-0.04005878791213,0.10079735517502]],[[0.087278805673122,0.076857782900333,0.011434680782259],[0.036329194903374,0.020398959517479,0.022172521799803],[-0.077649220824242,-0.036186590790749,-0.019880311563611]],[[-0.055578023195267,-0.0071324375458062,0.016625478863716],[-0.039757616817951,0.034239832311869,0.059235576540232],[-0.011328974738717,-0.030831275507808,0.04397539421916]],[[0.0023518709931523,-0.087018609046936,-0.068664409220219],[-0.066501706838608,-0.013939891941845,-0.026021808385849],[-0.055393867194653,-0.0085404412820935,-0.045194949954748]],[[-0.070970065891743,-0.019012184813619,-0.046553038060665],[0.0022067583631724,-0.13244622945786,-0.037896834313869],[0.021627720445395,-0.0040640342049301,-0.028213322162628]],[[0.045673813670874,-0.022506641224027,0.027546130120754],[-0.007243319414556,0.057980470359325,-0.019142372533679],[0.11712741106749,0.070466756820679,0.05272239074111]],[[-0.085208758711815,-0.11960287392139,-0.10172036290169],[-0.10642203688622,-0.035748269408941,0.044805403798819],[-0.047108642756939,-0.029912766069174,0.075191348791122]]],[[[0.02038604952395,-0.071195155382156,-0.03221844881773],[-0.069070562720299,-0.11494790762663,0.0063420445658267],[-0.029101358726621,-0.035692758858204,-0.0067894370295107]],[[-0.01156444940716,-0.01427804119885,0.023240076377988],[-0.10446332395077,0.057720173150301,-0.0032464766409248],[0.030649295076728,-0.071512423455715,-0.044499691575766]],[[-0.0069112172350287,-0.045331712812185,-0.009068863466382],[0.037340838462114,-0.015965942293406,0.045263864099979],[-0.057804189622402,-0.11666916310787,-0.024580480530858]],[[-0.095344409346581,0.0018218676559627,0.00089742004638538],[-0.13971123099327,0.029521849006414,0.080088548362255],[-0.0026640295982361,-0.058376591652632,0.0021698742639273]],[[-0.10911245644093,-0.025364791974425,-0.043084181845188],[0.020144978538156,0.036838106811047,-0.11401838064194],[-0.053997382521629,0.069304920732975,-0.062849551439285]],[[-0.0014508223393932,-0.023370377719402,0.0083500919863582],[-0.029055010527372,-0.16291239857674,0.097939655184746],[-0.09594738483429,-0.092369437217712,-0.071868129074574]],[[0.024661185219884,0.062793552875519,0.079618267714977],[0.074225082993507,0.041863221675158,0.079065695405006],[-0.070481359958649,-0.15493859350681,-0.022152528166771]],[[-0.05602166056633,-0.027858551591635,0.027284374460578],[-0.061725586652756,-0.074553072452545,-0.037901371717453],[-0.017329249531031,0.090700246393681,0.022928062826395]],[[0.051549036055803,-0.037661924958229,-0.075404942035675],[-0.023608803749084,-0.11828036606312,0.091933064162731],[0.063604772090912,0.070591807365417,-0.00025898171588778]],[[-0.034468457102776,0.022261429578066,-0.0015708633000031],[-0.019442467018962,-0.056558415293694,-0.011672286316752],[0.033184409141541,0.036771230399609,0.02235234156251]],[[0.016989205032587,-0.031870368868113,-0.0020535797812045],[-0.11315843462944,-0.069959700107574,0.016855103895068],[0.024253299459815,-0.14474307000637,0.0027271090075374]],[[-0.045096434652805,-0.0063675371930003,-0.063944101333618],[0.067092031240463,0.050092827528715,0.025207128375769],[-0.065223336219788,-0.030836626887321,-0.017340503633022]],[[0.014885370619595,-0.029536373913288,-0.054332725703716],[-0.027857758104801,-0.024073705077171,-0.04059936106205],[0.008305799216032,0.013167446479201,-0.071850940585136]],[[-0.021765608340502,-0.00073756359051913,0.07262821495533],[0.078588247299194,0.055310606956482,-0.044470220804214],[0.032331958413124,0.073751263320446,0.0058652125298977]],[[-0.016162758693099,-0.018674060702324,-0.027257148176432],[-0.053521584719419,-0.12952107191086,0.00010917896725005],[-0.11529153585434,0.054283130913973,-0.079133003950119]],[[0.13331583142281,0.086255580186844,0.035962324589491],[-0.098589703440666,0.040341421961784,0.060590077191591],[0.028249939903617,-0.035979308187962,-0.079571686685085]],[[0.015413114801049,0.028328428044915,-0.047925643622875],[0.14038142561913,0.0048235082067549,-0.084705755114555],[-0.0022888518869877,0.11244922876358,-0.012852882035077]],[[-0.0745829641819,0.039841428399086,0.032401472330093],[-0.041867092251778,-0.072293125092983,-0.036065481603146],[-0.079607620835304,-0.0097005683928728,-0.071335561573505]],[[0.031984683126211,-0.07371424138546,-0.050342168658972],[-0.043355088680983,-0.072284080088139,-0.053525984287262],[0.0059525282122195,-0.002292146673426,0.048271253705025]],[[0.010575774125755,0.032117787748575,0.018817311152816],[0.0053789606317878,-0.021774342283607,-0.017303703352809],[-0.03365620225668,-0.027507713064551,0.041637372225523]],[[-0.017548516392708,0.067815087735653,0.02759063988924],[0.043736387044191,0.065787963569164,0.04075975716114],[-0.05533329769969,-0.021741025149822,-0.029353952035308]],[[0.0099439015612006,0.097935333848,-0.018247654661536],[0.10521160811186,-0.12729947268963,-0.10824557393789],[-0.0054237172007561,-0.019875552505255,-0.086437799036503]],[[0.07048188149929,0.0011806756956503,0.02363014779985],[-0.080992870032787,0.013484381139278,0.066802382469177],[-0.037278402596712,0.00074225419666618,0.019872795790434]],[[0.090752124786377,0.011438081972301,0.070931479334831],[0.030302280560136,0.012301274575293,-0.04065028950572],[0.062909483909607,0.074494265019894,0.053894702345133]],[[-0.080452680587769,-0.040450435131788,-0.030772211030126],[-0.010578201152384,-0.026856411248446,-0.05363879352808],[-0.022861212491989,0.013770802877843,0.074060842394829]],[[-0.053191248327494,-0.011943273246288,-0.028550187125802],[0.10761514306068,0.04920943453908,0.03338685259223],[-0.010176637209952,0.071562997996807,-0.02012480981648]],[[-0.035005640238523,0.041958589106798,0.03626286610961],[0.053659614175558,0.02339475043118,0.07063814252615],[-0.06495139747858,0.036901254206896,-0.11669311672449]],[[0.045776959508657,0.067618332803249,0.027361586689949],[-0.012990755960345,-0.0023900070227683,0.03116955049336],[-0.013035470619798,0.0023525482974946,0.033816434442997]],[[-0.0093889040872455,0.0066089378669858,-0.022656282410026],[-0.028128422796726,-0.079096518456936,-0.016840161755681],[-0.020818265154958,-0.057031914591789,-0.063437223434448]],[[-0.0011291456175968,0.077049106359482,0.10621330887079],[-0.1041993200779,-0.08838178217411,0.1042392551899],[-0.060814257711172,-0.02830739878118,-0.061996001750231]],[[0.035842563956976,-0.049281045794487,0.0031310515478253],[-0.11712965369225,0.11065256595612,0.031037686392665],[-0.063461549580097,-0.027651840820909,0.014386234804988]],[[0.047867834568024,0.031968370079994,0.042375799268484],[-0.003924164455384,0.048092696815729,-0.052756678313017],[0.073632158339024,-0.087035603821278,-0.019256023690104]],[[0.039450533688068,0.037047982215881,0.094094164669514],[0.052544936537743,-0.031955689191818,0.045436229556799],[-0.01114163454622,-0.097554907202721,-0.0074762790463865]],[[0.022074054926634,0.031852919608355,0.13051268458366],[0.0070640505291522,-0.057461109012365,-0.015500297769904],[-0.047995265573263,0.014721756801009,-0.22879596054554]],[[-0.073356755077839,0.054937273263931,0.02490277774632],[0.007831022143364,0.025059208273888,0.023961516097188],[-0.046265602111816,0.056048877537251,0.024203328415751]],[[-0.061415866017342,-0.11646649986506,-0.046936828643084],[-0.0041699167340994,-0.017270475625992,-0.12374281138182],[0.015509281307459,0.093419753015041,-0.063794337213039]],[[0.011949232779443,0.078546538949013,-0.033939428627491],[0.03674978017807,0.056806668639183,-0.010686211287975],[-0.027077492326498,0.069808065891266,-0.0024427333846688]],[[0.0028595961630344,-0.09462171792984,0.022887345403433],[0.053377568721771,0.052976310253143,0.057060237973928],[-0.028686922043562,0.0090834479779005,0.0033622109331191]],[[0.020965944975615,-0.17086958885193,-0.11579186469316],[0.049674931913614,0.086006604135036,0.016213880851865],[-0.016306595876813,-0.042451836168766,-0.028891460970044]],[[-0.017294613644481,-0.024374792352319,-0.014148737303913],[-0.053702637553215,-0.021336389705539,-0.01478878967464],[-0.029073253273964,-0.071351014077663,0.053414028137922]],[[-0.032815337181091,-0.040370866656303,0.058510448783636],[-0.13087843358517,0.034614957869053,0.040524493902922],[-0.099400244653225,-0.069421872496605,0.06279630959034]],[[0.021066790446639,-0.031741123646498,0.0013453988358378],[-0.025286063551903,0.00018549691594671,-0.064105413854122],[0.042262062430382,0.020802302286029,0.027886832132936]],[[0.06904175132513,0.029525052756071,0.022842563688755],[0.042752709239721,0.00050748320063576,-0.013182932510972],[-0.058028683066368,-0.038977801799774,-0.049717273563147]],[[0.04621360078454,0.023022076115012,0.0054264767095447],[0.00041059718932956,-0.028129540383816,-0.011051284149289],[0.0060910792089999,-0.12033192068338,-0.010063458234072]],[[0.0025764931924641,0.063414394855499,0.039633851498365],[0.03834979981184,-0.087489433586597,-0.03301652893424],[-0.0074928225949407,-0.13441656529903,-0.020464146509767]],[[0.11227912455797,-0.060941863805056,-0.19606959819794],[-0.030075976625085,-0.098040774464607,-0.018923394382],[-0.049621872603893,0.066876605153084,0.067732021212578]],[[-0.060511559247971,-0.057013891637325,0.033704545348883],[0.014087363146245,-0.037537679076195,0.024514311924577],[0.0042114052921534,0.020023928955197,-0.040032859891653]],[[0.02072804607451,0.067440085113049,0.17995804548264],[-0.0043599251657724,0.07126634567976,-0.047371301800013],[-0.012936041690409,-0.047050360590219,-0.12039020657539]],[[0.016643954440951,0.055763501673937,0.0015064149629325],[0.061608262360096,-0.014168827794492,0.0017485187854618],[-0.015896037220955,-0.01566774584353,0.036599572747946]],[[-0.021652299910784,-0.095039032399654,-0.0057483897544444],[0.037436958402395,0.032483104616404,0.011975683271885],[-0.037585191428661,0.079927042126656,-0.028063159435987]],[[0.063301868736744,0.092605516314507,0.16235369443893],[0.040462467819452,0.055235747247934,-0.052568472921848],[-0.040365125983953,0.048845674842596,-0.028541764244437]],[[0.068983010947704,0.0070175002329051,0.064898647367954],[-0.018878160044551,-0.0097504369914532,0.13590231537819],[0.034542962908745,0.050800416618586,0.031336106359959]],[[0.087647013366222,0.073910310864449,-0.054913800209761],[-0.065928429365158,-0.007479882799089,0.032387845218182],[0.050391912460327,0.035682573914528,-0.057848110795021]],[[-0.013483571819961,-0.012157934717834,0.031290028244257],[-0.024838648736477,0.058332644402981,-0.065856724977493],[0.005343422293663,0.046707656234503,-0.0031658860389143]],[[-0.020758660510182,-0.036678057163954,0.038703817874193],[-0.036002840846777,0.067318990826607,0.012312193401158],[-0.010104875080287,0.009823938831687,-0.064126841723919]],[[0.00017292403208558,-0.066174514591694,-0.027570843696594],[-0.016832910478115,-0.055175289511681,0.015780543908477],[-0.017869111150503,0.0084134312346578,0.023681821301579]],[[0.119868285954,0.035873223096132,0.02396597713232],[-0.060334049165249,-0.10832174867392,-0.018964022397995],[-0.088335931301117,-0.032346989959478,-0.05245803669095]],[[0.072676099836826,0.0043284888379276,0.049496117979288],[-0.071634598076344,0.028420055285096,0.045199137181044],[-0.010361121967435,-0.056424699723721,-0.00643072091043]],[[0.11020685732365,0.0092073176056147,0.092643864452839],[0.0038039800710976,-0.023369045928121,0.039828222244978],[0.082092076539993,0.0061409939080477,-0.089269272983074]],[[-0.065274015069008,0.012321851216257,0.058200918138027],[-0.0095552112907171,0.031742110848427,0.0031239108648151],[0.014833267778158,0.0096310703083873,-0.037176016718149]],[[0.0050704195164144,-0.08759743720293,0.013610946014524],[0.0015737664652988,0.056048542261124,-0.029292721301317],[0.027453111484647,-0.020869230851531,-0.027655057609081]],[[-0.071465976536274,0.0027759794611484,-0.010945966467261],[0.061040546745062,-0.00011418839858379,0.083281047642231],[0.013685407117009,0.020752407610416,0.039889812469482]],[[-0.009834349155426,-7.9216479207389e-06,0.017951371148229],[0.063112534582615,0.038039404898882,0.038599222898483],[-0.027635237202048,-0.021705644205213,0.040865283459425]],[[0.00434699235484,-0.082166194915771,0.041726805269718],[-0.018676243722439,0.014989084564149,0.10545246303082],[0.076153613626957,0.00018167437519878,-0.068622082471848]]],[[[0.016181709244847,-0.022064179182053,-0.027422357350588],[-0.080628626048565,0.010599251836538,0.0066877049393952],[0.033920180052519,0.017493696883321,-0.024208268150687]],[[-0.11188739538193,-0.0065071093849838,-0.095906436443329],[-0.081371396780014,0.016937345266342,-0.11034581065178],[-0.030655281618237,0.054555669426918,0.023589234799147]],[[0.018428787589073,0.020893076434731,-0.067753218114376],[-0.024637494236231,-0.073549523949623,-0.10882483422756],[0.053396459668875,-0.029222531244159,0.053675513714552]],[[0.038854777812958,0.011021719314158,-0.020869735628366],[0.0035345111973584,0.047537978738546,-0.030547587200999],[0.0026712100952864,-0.031927697360516,0.013684860430658]],[[-0.25590997934341,-0.048893611878157,-0.0090733496472239],[0.087706603109837,-0.076536647975445,0.026403417810798],[-0.058830864727497,0.08920019865036,0.027936115860939]],[[-0.052175801247358,0.021504700183868,-0.083447650074959],[0.1067575737834,-0.029191974550486,-0.063113681972027],[0.082518823444843,0.019556701183319,-0.047221016138792]],[[-0.0049146567471325,-0.13790774345398,-0.082896165549755],[0.039894476532936,-0.069153673946857,-0.13626666367054],[-0.012420821003616,-0.076736181974411,-0.1145246475935]],[[0.039769195020199,0.06839694827795,-0.10791459679604],[-0.044910360127687,0.066533796489239,0.063822545111179],[0.017366144806147,-0.0043988968245685,-0.012708453461528]],[[0.016014862805605,0.042041271924973,-0.021531643345952],[0.060789812356234,-0.087361596524715,-0.019365753978491],[-0.024075742810965,0.030860181897879,-0.00085993926040828]],[[0.014217400923371,0.035123094916344,0.0021277840714902],[-0.013897859491408,0.054096315056086,-0.073771044611931],[-0.014115371741354,-0.027412811294198,-0.10882695019245]],[[-0.0009756512590684,0.071573309600353,0.11919804662466],[0.074890308082104,0.021413629874587,0.017904434353113],[-0.052016325294971,-0.025401420891285,-0.087301015853882]],[[0.058039952069521,-0.090262964367867,-0.030417885631323],[-0.029207708314061,0.032500125467777,-0.052672676742077],[-0.040258478373289,-0.072954818606377,-0.051051545888186]],[[-0.021050842478871,-0.0073750456795096,-0.060317479074001],[0.00078174727968872,0.0045387055724859,-0.047583997249603],[0.076524086296558,-0.10531052947044,-0.032177947461605]],[[0.0044285510666668,0.012489159591496,-0.0037000861484557],[-0.093887522816658,-0.073107175529003,-0.067547634243965],[-0.0054382341913879,0.010591658763587,-0.01551426295191]],[[-0.053530238568783,0.026440823450685,0.010586643591523],[-0.067269690334797,0.04462368413806,0.028026521205902],[0.0144321937114,0.016584072262049,0.022649418562651]],[[0.045418620109558,-0.016808491200209,-0.019722132012248],[-0.04188721626997,-0.031963523477316,0.0042900354601443],[-0.0021774596534669,0.078490659594536,0.082269571721554]],[[0.05672113224864,0.053323034197092,-0.17685830593109],[0.14952386915684,0.13536036014557,-0.047169506549835],[0.1123256906867,-0.038494247943163,0.071061007678509]],[[-0.011540442705154,-0.0080432062968612,0.011127419769764],[0.093671396374702,0.026087962090969,0.023060567677021],[0.10462290793657,-0.050119966268539,0.049882531166077]],[[0.028900591656566,-0.11467848718166,-0.020087622106075],[0.042142536491156,0.0025078603066504,-0.0031917805317789],[0.024379452690482,0.035067673772573,-0.038802031427622]],[[-0.01184154022485,-0.0079797338694334,0.0031250244937837],[-0.003966165240854,0.047445498406887,0.011848763562739],[-0.0020972106140107,0.0087564485147595,-0.021216677501798]],[[-4.2124083847739e-06,-0.016027741134167,0.14197583496571],[-0.020157346501946,-0.10578285157681,-0.16566227376461],[0.051296159625053,0.13366422057152,-0.011736274696887]],[[-0.019586902111769,-0.13370898365974,-0.026805488392711],[0.02283619530499,0.12128090858459,0.048911646008492],[0.027415454387665,-0.027505554258823,0.068815492093563]],[[-0.042746774852276,0.036002047359943,0.019820138812065],[-0.041250597685575,-0.069246977567673,-0.056439891457558],[0.053974233567715,0.039230730384588,-0.18917652964592]],[[-0.12814880907536,0.0040032397955656,0.088692910969257],[-0.020324053242803,0.11549896001816,0.047131855040789],[0.037273600697517,0.059757433831692,0.056318566203117]],[[-0.0060940748080611,-0.030120773240924,-0.027857625856996],[-0.11108815670013,-0.033891752362251,0.026325637474656],[-0.0095514031127095,0.1122132614255,-0.021059457212687]],[[-0.019583091139793,0.04515740275383,0.05309446901083],[-0.010528529062867,-0.025578999891877,0.0036950747016817],[-0.062650926411152,0.011024778708816,0.01025753095746]],[[-0.059128403663635,-0.081963546574116,-0.01406149379909],[0.064463824033737,0.14804525673389,0.079611234366894],[0.050735719501972,-0.032073196023703,0.025031253695488]],[[0.03743152692914,-0.038312338292599,0.075059324502945],[0.022263087332249,0.023815754801035,-0.09396705776453],[0.010906594805419,0.049531925469637,0.022765157744288]],[[0.098477616906166,-0.086807273328304,0.047423623502254],[0.010752933099866,0.0044513423927128,0.029607620090246],[0.0085348645225167,0.00037093594437465,0.014274144545197]],[[-0.036662075668573,0.051330909132957,0.038012105971575],[-0.03280021995306,0.086286664009094,0.053698573261499],[-0.090469479560852,-0.042037565261126,-0.063181608915329]],[[0.070249058306217,-0.0058766147121787,-0.0081960773095489],[-0.077044732868671,0.027297073975205,0.082488879561424],[0.03243650123477,-0.040020383894444,0.0074523980729282]],[[0.10665261745453,-0.030761575326324,0.02166884765029],[-0.14096316695213,0.0098075782880187,-0.076518625020981],[-0.09672449529171,0.01257560774684,-0.068127989768982]],[[-0.013027085922658,-0.026349753141403,-0.027411779388785],[-0.057069409638643,-0.022158164530993,-0.030275071039796],[-0.01585141941905,0.040034465491772,-0.048914704471827]],[[-0.066112644970417,-0.011164931580424,-0.01925989612937],[-0.10330275446177,0.038547966629267,-0.17861001193523],[0.0027974508702755,-0.00557462265715,0.046665195375681]],[[-0.0032138456590474,0.044155817478895,0.098577424883842],[0.099998347461224,-0.080033458769321,-0.015735264867544],[0.079216808080673,0.010554787702858,0.040082670748234]],[[0.059646308422089,-0.053981475532055,-0.068004794418812],[-0.019247598946095,0.07621669024229,0.028243398293853],[0.044938370585442,-0.049879249185324,-0.046035170555115]],[[0.04637611284852,0.040153630077839,-0.0073150000534952],[-0.15918654203415,-0.056190852075815,-0.071169562637806],[-0.30607256293297,-0.037533301860094,0.035525109618902]],[[-0.017683887854218,0.0027473052032292,-0.026863699778914],[0.0079269744455814,-0.029974199831486,-0.14837451279163],[-0.0386663377285,-0.040122881531715,0.049711808562279]],[[-0.067568965256214,-0.086999259889126,-0.11029409617186],[-0.042900066822767,-0.049999427050352,-0.12251168489456],[0.0044191856868565,0.0360810123384,0.12721727788448]],[[0.066730298101902,0.019873138517141,-0.045181967318058],[-0.018291335552931,-0.057933375239372,-0.00017666087660473],[0.12214236706495,0.072044886648655,0.11050459742546]],[[0.021624697372317,0.0049049779772758,0.10099162906408],[0.08850259333849,0.045553430914879,0.012153076007962],[0.023074029013515,-0.062172081321478,0.028734643012285]],[[-0.078085690736771,0.044745590537786,-0.045572709292173],[-0.022973256185651,0.03994345664978,0.12007127702236],[-0.0041901646181941,-0.06100782379508,-0.13598802685738]],[[0.0037202662788332,0.029827725142241,-0.077997878193855],[-0.065781392157078,0.033948067575693,-0.072003364562988],[-0.059229079633951,-0.039232544600964,-0.071788713335991]],[[-0.032464601099491,0.004837186075747,-0.023377994075418],[-0.12388286739588,0.0015102504985407,0.074012599885464],[-0.029164984822273,-0.097364112734795,-0.0047363694757223]],[[0.10127114504576,0.032011449337006,-0.082778424024582],[0.085984274744987,-0.038252286612988,0.032472349703312],[-0.0073457094840705,-0.0036958893761039,-0.044933419674635]],[[-0.066806264221668,-0.087968692183495,-0.0099071515724063],[0.051200829446316,0.04167016223073,0.12952327728271],[0.21157605946064,-0.012335467152297,0.06042854860425]],[[-0.050536617636681,-0.01130804233253,-0.079177007079124],[-0.073826566338539,-0.08476996421814,-0.11294338107109],[-0.047056455165148,-0.045109536498785,-0.10632847249508]],[[-0.047598175704479,0.069282695651054,-0.11253584176302],[-0.00046210584696382,-0.065448179841042,-0.13008704781532],[-0.091635778546333,-0.12158341705799,0.060614891350269]],[[0.061780493706465,-0.056110303848982,-0.012595092877746],[0.047464825212955,0.0010945016983896,0.086183413863182],[0.11996358633041,0.12787374854088,-0.064442202448845]],[[0.043890096247196,0.0094718066975474,-0.013695165514946],[0.082500398159027,0.021435251459479,0.062347333878279],[0.039331622421741,-0.029148939996958,0.028708444908261]],[[-0.020152263343334,-0.030300447717309,-0.022090526297688],[-0.019106186926365,0.0017970773624256,-0.029076060280204],[-0.092384219169617,0.019018514081836,0.047922041267157]],[[-0.098635673522949,0.077728554606438,0.013606080785394],[0.06845773011446,0.057587835937738,-0.025665938854218],[0.040218695998192,0.057273238897324,0.12283109128475]],[[0.014223388396204,-0.02218889631331,0.0094518782570958],[-0.028323754668236,0.034155383706093,0.0022083239164203],[-0.029715305194259,0.0204590074718,0.10428608208895]],[[-0.090312443673611,-0.022100042551756,-0.019652621820569],[0.07754822820425,0.034037038683891,0.081457130610943],[-0.072542063891888,0.014688235707581,-0.15442980825901]],[[-0.01647149771452,0.031845696270466,0.021272139623761],[0.042464919388294,-0.035286422818899,-0.043192718178034],[0.1717671006918,0.06833703815937,0.018490619957447]],[[-0.003906240221113,0.024608952924609,-0.0063208327628672],[0.037870977073908,0.055017966777086,-0.027051370590925],[0.036518260836601,-0.051629766821861,0.0027730679139495]],[[0.06044740229845,-0.069238491356373,-0.032016288489103],[-0.017044812440872,-0.023559622466564,0.026392593979836],[-0.083028428256512,-0.0089542781934142,-0.04368544369936]],[[0.00060234073316678,-0.011818244121969,-0.043435323983431],[0.069420874118805,-0.13594321906567,-0.057741548866034],[0.029346905648708,0.047427363693714,-0.042093507945538]],[[0.11711942404509,0.00050702190492302,0.15179985761642],[0.06953950971365,0.071446716785431,0.045940846204758],[-0.027017403393984,0.048208329826593,0.085497885942459]],[[-0.0021149665117264,-0.0089485216885805,0.010998578742146],[-0.012861399911344,0.021191846579313,-0.035972226411104],[0.017064895480871,-0.0043335817754269,0.026937553659081]],[[-0.028896184638143,0.039384711533785,-0.035000558942556],[0.097562089562416,-0.059849385172129,-0.034413028508425],[-0.011589122004807,-0.045390989631414,-0.0052987388335168]],[[0.0081515749916434,-0.045033827424049,0.020612610504031],[0.097650669515133,-0.034388307482004,0.024079393595457],[-0.0026192024815828,-0.0063561224378645,-0.10681333392859]],[[0.012760629877448,0.070051580667496,-0.053603198379278],[-0.024463506415486,-0.034169659018517,-0.017929956316948],[0.075370922684669,0.038902018219233,0.015266547910869]],[[0.054973799735308,0.050230454653502,0.021212192252278],[0.056661076843739,-0.024274788796902,-0.077511645853519],[-0.032307609915733,0.037309173494577,-0.029961774125695]]],[[[-0.090614929795265,-0.033599149435759,-0.04961372166872],[-0.016042886301875,0.094742693006992,0.13068549335003],[-0.019603632390499,0.02720600925386,-0.0054153734818101]],[[-0.12928704917431,0.11797291785479,0.015664560720325],[0.009480157867074,-0.10944120585918,-0.0452940762043],[-0.031343027949333,-0.021157128736377,-0.1889066696167]],[[0.027277762070298,-0.072739765048027,-0.033767603337765],[-0.0070769959129393,-0.070467084646225,0.039648942649364],[0.050737787038088,-0.008246311917901,-0.047001268714666]],[[0.025204299017787,0.0013370594242588,-0.18125459551811],[-0.074165113270283,-0.018089383840561,-0.10696048289537],[-0.080378971993923,-0.12326575815678,-0.031778279691935]],[[0.17362660169601,0.032648496329784,0.020855711773038],[0.058971777558327,0.0051084430888295,-0.077655002474785],[-0.07387338578701,-0.048482973128557,-0.056862860918045]],[[-0.12104608118534,0.03287286311388,-0.017568429931998],[-0.030435374006629,-0.06274276971817,-0.073198258876801],[-0.075656644999981,-0.080069363117218,0.033096469938755]],[[-0.069429911673069,-0.047503270208836,-0.016673393547535],[-0.066407307982445,-0.079543717205524,-0.033515028655529],[-0.05080371722579,-0.07741604745388,-0.034452430903912]],[[0.086036659777164,0.0060858493670821,-0.026397008448839],[-0.12348531186581,0.090512163937092,-0.075062528252602],[0.059102527797222,0.046964142471552,-0.012872281484306]],[[-0.061321657150984,0.10433880239725,0.013722071424127],[-0.1356123238802,0.026871481910348,-0.17149230837822],[0.023022877052426,0.035097617655993,0.072044774889946]],[[-0.025916678830981,-0.24269852042198,0.066226810216904],[-0.044249050319195,0.054366931319237,0.25688400864601],[0.041096579283476,-0.27075505256653,-0.074632503092289]],[[-0.062471531331539,-0.16487611830235,-0.13611429929733],[0.047549780458212,0.043742667883635,-0.01218878198415],[-0.031780701130629,-0.014843010343611,0.092997148633003]],[[-0.011516436934471,-0.0760857462883,0.040784794837236],[-0.021970126777887,-0.025522360578179,-0.0764349848032],[-0.16747492551804,-0.16683383285999,-0.14314612746239]],[[0.034033801406622,-0.075451776385307,-0.10295975208282],[-0.070247687399387,-0.00064844981534407,0.18208582699299],[0.077854946255684,-0.086631052196026,-0.12164034694433]],[[0.0086077833548188,0.0003275187627878,-0.20350298285484],[-0.05809585750103,-0.096886985003948,0.20874594151974],[-0.068121343851089,-0.13371743261814,0.091330148279667]],[[-0.040866170078516,-0.079934671521187,-0.083886906504631],[-0.091901294887066,-0.058714009821415,-0.089046113193035],[0.043372448533773,0.025115607306361,-0.13064339756966]],[[-0.12347069382668,-0.089025408029556,0.0058038346469402],[0.018142342567444,0.091497994959354,-0.016224948689342],[0.015280034393072,0.051732454448938,-0.043845281004906]],[[-0.0034880707971752,-0.047615941613913,-0.042716361582279],[0.037447661161423,0.087897695600986,-0.057648733258247],[-0.12397829443216,-0.10344954580069,0.045810759067535]],[[0.013733522035182,-0.061666484922171,-0.0046298098750412],[-0.032756358385086,-0.02129128202796,0.0019212168408558],[0.029062820598483,-0.0049242503009737,-0.1115745306015]],[[0.024954553693533,-0.15388450026512,-0.020223746076226],[-0.027050891891122,0.031061986461282,-0.044924899935722],[0.080140233039856,0.015652751550078,0.004998404532671]],[[-0.0044033592566848,-0.085615910589695,0.044593781232834],[-0.0050272243097425,0.059631697833538,-0.0011721245246008],[-0.0071795275434852,0.020557498559356,-0.079850643873215]],[[-0.0038139473181218,-0.097649723291397,0.028692113235593],[0.0037741309497505,0.001594802713953,-0.10731443762779],[-0.033581800758839,-0.0019561150111258,-0.094874523580074]],[[0.12165106087923,-0.0060076517984271,-0.07718013972044],[-0.032373830676079,0.097880840301514,0.085356451570988],[-0.023985171690583,-0.061398148536682,-0.12421536445618]],[[-0.07729896903038,-0.049924667924643,0.02367033995688],[0.0042335018515587,-0.069017976522446,-0.025927107781172],[-0.012572162784636,0.043417945504189,-0.1036348938942]],[[-0.050704199820757,-0.19546714425087,0.12585785984993],[0.22583927214146,0.11132395267487,0.15650577843189],[-0.097554326057434,-0.15077205002308,0.083019651472569]],[[0.059116847813129,0.10532368719578,0.059415332973003],[-0.050550017505884,-0.03714382648468,-0.24287310242653],[0.05224459245801,0.066330976784229,-0.0035647989716381]],[[0.024008518084884,0.07778387516737,0.073028706014156],[0.034981027245522,-0.016708184033632,-0.026130225509405],[0.043658748269081,0.018287060782313,0.041459377855062]],[[-0.099505424499512,0.089677549898624,0.0087370593100786],[-0.055456168949604,-0.13944001495838,0.071704611182213],[0.066094875335693,-0.12771180272102,-0.090168714523315]],[[-0.044702343642712,0.11450461298227,-0.09076751768589],[-0.043563965708017,-0.076866716146469,0.046205919235945],[0.026931919157505,-0.08035821467638,0.092837385833263]],[[0.0011553551303223,-0.15301784873009,-0.12009068578482],[0.14219033718109,-0.10622414946556,0.037054616957903],[0.046888828277588,-6.2545208493248e-05,0.025152755901217]],[[-0.17455703020096,0.12966120243073,-0.13461099565029],[-0.065707176923752,-0.055622730404139,0.019254755228758],[-0.067821934819221,-0.060634110122919,-0.11594095826149]],[[-0.058772161602974,-0.15103015303612,0.05623135715723],[0.056718669831753,-0.029351247474551,0.06113912910223],[0.099899664521217,-0.02309581823647,-0.051648382097483]],[[-0.04869431629777,-0.061430234462023,-0.0016690589254722],[-0.051596239209175,0.15640531480312,-0.17701803147793],[-0.0059554916806519,0.07243624329567,-0.069247767329216]],[[-0.14614993333817,0.029491074383259,-0.08657556027174],[-0.031789239495993,-0.017451919615269,0.020722871646285],[-0.10628508776426,0.0079198619350791,-0.21913668513298]],[[-0.023022940382361,-0.060081258416176,-0.033924419432878],[0.027074012905359,0.026518112048507,0.051284734159708],[0.070304833352566,0.044036965817213,0.013649763539433]],[[-0.046261757612228,-0.061797615140676,-0.023711707442999],[-0.040008332580328,-0.052860829979181,0.024616129696369],[-0.19300197064877,-0.055346827954054,0.091062746942043]],[[0.15478073060513,-0.084851309657097,0.047253530472517],[-0.10743878781796,0.0013410333776847,0.0065387887880206],[0.058717824518681,-0.03968208655715,0.0025744740851223]],[[-0.22331108152866,-0.026562441140413,0.1354473978281],[0.12692821025848,-0.13113486766815,-0.069272473454475],[0.13084182143211,-0.12410720437765,-0.16058734059334]],[[-0.0077421334572136,-0.077732570469379,-0.03124332241714],[0.056901037693024,-0.10825272649527,-0.14635816216469],[-0.061310064047575,0.04738986492157,0.092504076659679]],[[-0.19019277393818,-0.16073924303055,0.042690254747868],[0.05222400277853,-0.030788714066148,0.11590248346329],[-0.071616031229496,0.066692426800728,-0.11067085713148]],[[-0.010032288730145,0.096432037651539,0.089824385941029],[0.0054639978334308,-0.057436548173428,-0.12997409701347],[0.06134033203125,0.10681188851595,-0.19916628301144]],[[-0.076305776834488,-0.028012918308377,0.0049005034379661],[-0.097650066018105,-0.0072992434725165,-0.14908178150654],[-0.065076865255833,0.037333842366934,-0.051301259547472]],[[-0.082187533378601,-0.10534716397524,-0.00023528090969194],[0.052895594388247,-0.053604800254107,0.10360027104616],[0.023202361539006,-0.21609327197075,-0.044763401150703]],[[0.066314972937107,0.003588394029066,-0.1226559728384],[-0.12186483293772,0.07282992452383,0.14298604428768],[-0.08992612361908,-0.14811778068542,-0.13590414822102]],[[-0.0051477672532201,-0.00046326374285854,-0.050620622932911],[-0.046321012079716,-0.0079201674088836,0.065710626542568],[0.10362281650305,0.027374014258385,-0.078214757144451]],[[-0.08379215747118,-0.018070003017783,-0.091249443590641],[0.032917845994234,0.093270912766457,-0.062987290322781],[-0.045259714126587,-0.0016920437337831,-0.090107925236225]],[[0.053742803633213,-0.039567090570927,0.0552131049335],[0.02765391767025,-0.00040188114508055,-0.012533076107502],[0.10948591679335,-0.084092505276203,-0.083222679793835]],[[0.027908954769373,-0.10283853858709,-0.029634095728397],[0.04606195166707,-0.084191352128983,0.10691323131323],[0.062406700104475,-0.11424800008535,-0.076523199677467]],[[-0.10015093535185,-0.091223083436489,0.017164885997772],[0.034256216138601,-0.082561992108822,-0.029732085764408],[-0.057322815060616,0.0010866458760574,-0.092847540974617]],[[-0.11077280342579,-0.040327869355679,-0.020092727616429],[-0.038006901741028,-0.045319903641939,-0.0049434104003012],[0.041925001889467,-0.087791875004768,0.018696021288633]],[[-0.18805672228336,0.032662313431501,0.14792142808437],[-0.038320526480675,-0.021830964833498,0.075268030166626],[0.071553759276867,-0.18359977006912,-0.063830219209194]],[[0.020724100992084,-0.051773898303509,-0.11657110601664],[-0.18758770823479,0.014474752359092,0.011945332400501],[-0.021221846342087,-0.023059582337737,-0.019764196127653]],[[0.10089686512947,-0.040583115071058,-0.0053516593761742],[0.096314951777458,0.16897605359554,0.0010704591404647],[0.028687881305814,0.040325190871954,0.075076587498188]],[[-0.08831599354744,0.01956320554018,-0.023869419470429],[-0.053776681423187,-0.070082925260067,-0.047102879732847],[0.13650147616863,-0.1354860663414,-0.027084350585938]],[[0.041289027780294,-0.015286428853869,0.10963259637356],[-0.14175221323967,-0.081342615187168,-0.016543990001082],[0.13080583512783,-0.033545397222042,-0.014970856718719]],[[-0.11882793903351,0.064241476356983,-0.0082547971978784],[0.030004637315869,0.015075131319463,0.023928327485919],[-0.040667537599802,0.097930282354355,-0.16562633216381]],[[-0.057122822850943,0.084745615720749,0.019644564017653],[0.040146701037884,-0.035600047558546,0.037927325814962],[0.063268549740314,-0.080091208219528,-0.011830310337245]],[[0.035603784024715,0.093945555388927,-0.14295740425587],[-0.23467260599136,0.13464586436749,-0.23558992147446],[-0.25071349740028,-0.089185535907745,0.16088478267193]],[[0.027560207992792,-0.021420704200864,-0.057312522083521],[-0.15294030308723,-0.01926627010107,0.048500418663025],[-0.11823052912951,-0.12326729297638,-0.030462805181742]],[[0.12796220183372,0.11378115415573,0.13602656126022],[-0.0022145661059767,0.003653732361272,0.052305407822132],[0.21531642973423,-0.051869813352823,-0.018732799217105]],[[0.0083139790222049,0.042747337371111,-0.065961368381977],[-0.02768006362021,-0.015774449333549,0.071681082248688],[-0.0056706364266574,-0.093176439404488,0.044882737100124]],[[0.0012377939419821,0.0098072867840528,0.0037260705139488],[-0.14791825413704,-0.049574784934521,-0.07438001781702],[0.057418376207352,0.015965817496181,-0.10483676195145]],[[0.015437197871506,0.18265090882778,0.053905867040157],[0.020311444997787,-0.14968676865101,-0.17268815636635],[0.079185210168362,0.036649454385042,-0.032475139945745]],[[0.049482230097055,0.076256476342678,-0.066307306289673],[-0.13737517595291,-0.039184208959341,-0.056836675852537],[-0.061905790120363,-0.026919985190034,-0.11600850522518]],[[0.11659611016512,0.019948976114392,0.00079547706991434],[-0.033157877624035,-0.027360254898667,0.024735826998949],[-0.1923810839653,-0.053791828453541,0.076860010623932]]],[[[-0.10579494386911,0.015696803107858,0.013728397898376],[-0.058585803955793,0.0050344751216471,-0.0014037200016901],[-0.031694393604994,-0.012372786179185,0.11739828437567]],[[-0.05928048491478,-0.053592372685671,0.040212254971266],[-0.03371698781848,-0.09310407191515,-0.019775371998549],[-0.050374899059534,-0.0054912874475121,0.012706481851637]],[[-0.13875934481621,0.031466122716665,-0.034927539527416],[-0.16081811487675,-0.098424196243286,-0.016505721956491],[-0.075981892645359,-0.06544566899538,0.022789360955358]],[[0.043576322495937,-0.045146491378546,-0.079593829810619],[-0.03815957531333,-0.018264563754201,0.0065630502067506],[0.013071338646114,-0.018284138292074,-0.0020503466948867]],[[0.01795351319015,-0.07282293587923,0.016710860654712],[0.0015542652690783,-0.081297151744366,-0.0057966001331806],[0.025067189708352,0.017483949661255,-0.10883939266205]],[[-0.049622356891632,0.01498347427696,0.058356061577797],[0.042737197130919,-0.063865259289742,0.06078539788723],[0.011584537103772,-0.18558894097805,-0.028502697125077]],[[-0.047149997204542,0.0060927360318601,0.045365303754807],[-0.044220767915249,0.15448467433453,0.056787762790918],[0.032228760421276,-0.049850378185511,0.052423931658268]],[[0.058230351656675,0.062504515051842,0.039839223027229],[0.056866984814405,0.042922634631395,-0.098444417119026],[-0.018745709210634,0.047313891351223,-0.001402489724569]],[[-0.12728221714497,0.010431658476591,-0.047297604382038],[0.051303703337908,0.075649112462997,0.0034488788805902],[0.057777617126703,0.030267860740423,-0.097778879106045]],[[0.014655501581728,-0.035888575017452,0.044220067560673],[-0.015784619376063,-0.013981828466058,0.0077547640539706],[-0.0095017831772566,0.021001880988479,0.053453598171473]],[[-0.022579429671168,0.020391704514623,-0.030007185414433],[0.077183365821838,0.03307831287384,-0.021579576656222],[0.019570952281356,-0.02432800643146,0.068866781890392]],[[0.030690919607878,0.036670599132776,0.030037831515074],[0.049914207309484,-0.0013339323922992,0.021424183622003],[-0.059631407260895,-0.024165650829673,-0.0093929124996066]],[[0.047722306102514,0.0053483042865992,0.051603686064482],[-0.04265833646059,-0.010856227949262,-0.026161719113588],[0.013968115672469,0.066563680768013,0.067794889211655]],[[-0.063305772840977,-0.099955514073372,-0.020364979282022],[-0.15841390192509,-0.0051009794697165,0.086764343082905],[-0.078955538570881,0.013937251642346,-0.014007056131959]],[[-0.043622452765703,0.0020756174344569,-0.018833046779037],[0.030526047572494,-0.021293422207236,0.00068513216683641],[0.033838532865047,-0.027004543691874,0.029624048620462]],[[0.080431371927261,-0.020838469266891,-0.029268803074956],[0.065690539777279,-0.033484347164631,-0.0046425447799265],[0.0060345437377691,0.07894004881382,0.0097544146701694]],[[-0.058434545993805,-0.075758308172226,-0.11114706844091],[-0.0347152762115,0.022160831838846,-0.045643355697393],[0.13005048036575,-0.028746739029884,-0.076183654367924]],[[-0.040158078074455,-0.03490973636508,0.071091130375862],[0.043811816722155,0.043605733662844,-0.043235819786787],[-0.0085855787619948,0.0083494670689106,0.074290201067924]],[[-0.071268774569035,-0.030345283448696,-0.11153074353933],[0.060980726033449,0.041032236069441,-0.081933490931988],[0.023060625419021,-0.04034723713994,-0.053607154637575]],[[-0.042038396000862,-0.003949677105993,0.066782772541046],[-0.0024612080305815,-0.0092361364513636,0.040311209857464],[-0.027141269296408,-0.033629689365625,0.041626255959272]],[[-0.064148731529713,-0.071841225028038,0.14057457447052],[-0.020542331039906,0.010287416167557,0.045033663511276],[-0.0065330788493156,-1.4924677088857e-05,-0.063573151826859]],[[0.020257476717234,-0.083256810903549,-0.0094512524083257],[-0.086371451616287,-0.064258061349392,0.021370965987444],[0.031217290088534,0.06176995113492,0.015959348529577]],[[0.020423486828804,0.081663861870766,0.094056479632854],[-0.01187900826335,-0.084163643419743,0.014669026248157],[-0.098442725837231,-0.0033243512734771,-0.033472910523415]],[[0.13250164687634,0.073203667998314,0.03940936923027],[0.076258853077888,0.0083615491166711,-0.060583431273699],[0.09575667232275,-0.0036253884900361,-0.081346839666367]],[[-0.016593135893345,-0.057642307132483,0.021237283945084],[-0.001009679865092,-0.10065283626318,0.035537838935852],[0.059909619390965,0.094738736748695,-0.012993056327105]],[[-0.024256993085146,-0.033597871661186,0.053122401237488],[-0.017666773870587,0.026359181851149,0.013189763762057],[-0.013925142586231,0.0025378807913512,-0.0030260439962149]],[[-0.18481560051441,0.050833977758884,-0.043610151857138],[-0.0036590052768588,-0.012082577683032,0.10773582756519],[0.089058689773083,0.05362892895937,0.066307403147221]],[[0.0086414739489555,-0.015970498323441,0.021560443565249],[-0.066126637160778,0.019695952534676,0.047661926597357],[0.015147515572608,-0.032745234668255,0.012623315677047]],[[0.063584871590137,0.035706087946892,-0.031245661899447],[0.040168836712837,0.061806604266167,0.032361079007387],[0.0074673537164927,-0.089032970368862,0.036065321415663]],[[-0.033836741000414,0.012925039976835,-0.03995506465435],[0.12172119319439,-0.0095554869621992,0.019013360142708],[0.036348968744278,-0.025348458439112,0.060617383569479]],[[0.062943533062935,-0.10819112509489,0.075107589364052],[0.030087385326624,0.037457350641489,0.04342057928443],[0.0064039556309581,0.03500609844923,0.022441502660513]],[[-0.033100124448538,-0.11039869487286,0.023892084136605],[-0.018644474446774,0.011886342428625,0.013192526064813],[0.064944192767143,-0.00032010520226322,-0.031979873776436]],[[-0.063042208552361,-0.017214365303516,0.0041298754513264],[0.047195710241795,-0.023902829736471,0.062200948596001],[0.016024213284254,0.082419402897358,-0.11855163425207]],[[-0.008659640327096,-0.18699289858341,0.0038100688252598],[0.065522626042366,-0.16195727884769,-0.048556674271822],[-0.25317570567131,-0.14746686816216,-0.051969569176435]],[[-0.076236426830292,0.031058764085174,0.092526540160179],[0.0082217063754797,0.0012100907042623,0.036407291889191],[-0.042175531387329,-0.10224398970604,-0.039401650428772]],[[0.046901676803827,-0.03638719394803,0.011316600255668],[-0.035469934344292,0.0035850321874022,-0.01630849763751],[-0.0042818300426006,-0.013968097046018,-0.0092211356386542]],[[-0.087444834411144,-0.040705878287554,-0.0097981365397573],[0.055091574788094,-0.020094998180866,0.036943983286619],[0.01887141354382,0.030362529680133,0.071948260068893]],[[0.00074630510061979,-0.011836220510304,0.010945307090878],[-0.036501418799162,0.033601507544518,-0.003365394892171],[-0.16903012990952,-0.034004267305136,-0.0041762990877032]],[[0.020879160612822,-0.0093139978125691,0.0081269405782223],[-0.030800873413682,-0.015227980911732,0.081845879554749],[-0.010313923470676,-0.051202490925789,-0.049659267067909]],[[-0.044011373072863,0.02046518214047,0.036595840007067],[-0.13767004013062,-0.1058464795351,-0.0039770612493157],[-0.018617520108819,-0.088247142732143,-0.034239385277033]],[[-0.0059803687036037,-0.028054907917976,0.074112489819527],[0.011556195095181,0.062894575297832,-0.027526987716556],[0.009477635845542,-0.03551921620965,0.0048277224414051]],[[0.03563890978694,0.03949411958456,-0.013194396160543],[-0.03298544511199,0.055751465260983,-0.014075731858611],[0.1294679492712,-0.03833169862628,-0.061276756227016]],[[-0.058984749019146,0.063543938100338,0.016469394788146],[-0.095589078962803,-0.0080994665622711,0.017377542331815],[-0.062926009297371,0.080683790147305,-0.063859075307846]],[[-0.00093450350686908,-0.010748528875411,0.066852323710918],[-0.0013281917199492,-0.037856072187424,-0.015526030212641],[0.023766003549099,-0.070221751928329,-0.065988220274448]],[[0.029782090336084,-0.066228792071342,0.038189508020878],[0.10534625500441,-0.015475644730031,-0.039671372622252],[-0.0044969371519983,0.060569632798433,-0.028877751901746]],[[-0.093112483620644,-0.012435412965715,0.018634028732777],[-0.074900470674038,-0.071953594684601,0.029016425833106],[-0.13478510081768,0.023768162354827,-0.0025128412526101]],[[-0.01086637377739,0.011753715574741,0.075504556298256],[-0.12262500822544,-0.057382177561522,0.03521241992712],[0.0046140500344336,0.015609866008162,-0.0014477126533166]],[[0.072718754410744,0.062236730009317,-0.082730479538441],[-0.051352102309465,-0.032414939254522,-0.0080449832603335],[0.081734955310822,-0.08228175342083,0.020826525986195]],[[0.0050798957236111,-0.058784369379282,-0.054577816277742],[0.029710792005062,0.0076760454103351,0.038565203547478],[-0.023204764351249,-0.06481446325779,-0.033527668565512]],[[0.02678438834846,0.094339273869991,-0.011429162696004],[-0.0010255464585498,-0.050161357969046,0.011200570501387],[-0.002577698091045,-0.057601556181908,-0.084469087421894]],[[0.059509091079235,0.043161295354366,-0.017724059522152],[-0.046311099082232,-0.0032876532059163,0.14218628406525],[-0.10393612086773,0.012537797912955,0.024675710126758]],[[-0.046519573777914,-0.09578425437212,-0.071909055113792],[0.11063777655363,-0.11697003245354,0.09641170501709],[-0.026813950389624,0.086530774831772,0.089868940412998]],[[0.082877323031425,0.029082646593451,0.0010595779167488],[0.028630619868636,-0.062622621655464,-0.01603314653039],[-0.060110196471214,-0.065457060933113,-0.049265410751104]],[[0.10112597048283,0.026105124503374,0.04086996614933],[-0.015949325636029,0.050603248178959,-0.057214301079512],[-0.04536497592926,-0.021401522681117,0.038265205919743]],[[0.0053471634164453,-0.048034224659204,0.029180780053139],[-0.0035151960328221,-0.12174358218908,0.023376269266009],[-0.037664271891117,-0.10281009227037,1.3008993846597e-06]],[[0.031399689614773,-0.043577868491411,0.045095726847649],[-0.025998273864388,0.0085404729470611,0.032913412898779],[0.004336073063314,0.065124601125717,0.007032860070467]],[[0.064676538109779,-0.065250799059868,0.030269797891378],[0.041567150503397,0.022516725584865,0.008938992395997],[-0.013609937392175,-0.012530595064163,0.045384764671326]],[[-0.049611497670412,-0.097293987870216,0.037683378905058],[0.0071299653500319,-0.11440756171942,0.01675103418529],[-0.0012744815321639,-0.14384485781193,-0.059663277119398]],[[0.070426970720291,0.044491544365883,-0.10969802737236],[0.0051031270995736,-0.0045798812061548,-0.13646887242794],[0.035482414066792,0.079114876687527,-0.13699018955231]],[[0.010380233637989,0.013868593610823,-0.013687397353351],[0.050234232097864,0.029857356101274,0.0015749533195049],[0.0041341013275087,-0.058259379118681,-0.033882137387991]],[[-0.089813485741615,-0.035691890865564,0.0089145638048649],[-0.012903346680105,0.0011101465206593,0.029776196926832],[-0.054318092763424,0.076253674924374,-0.046570532023907]],[[-0.08280561119318,-0.00026940525276586,0.0049517988227308],[-0.024362720549107,0.0063309497199953,-0.058266207575798],[0.060460187494755,0.063096307218075,0.11103673279285]],[[0.044638764113188,0.037549797445536,-0.018535817041993],[-0.086801700294018,0.0060389577411115,0.0042110583744943],[-0.0098127331584692,0.027688423171639,0.091304458677769]],[[-0.030444854870439,-0.0051339762285352,-0.00014305258810055],[-0.026916738599539,-0.019074808806181,0.050154000520706],[0.01627629250288,0.033221691846848,0.00082274689339101]]],[[[-0.024288216605783,0.033182229846716,-0.080597504973412],[0.076433226466179,0.093226477503777,-0.063160814344883],[-0.05288815125823,0.088435605168343,-0.13053707778454]],[[-0.091835275292397,-0.033516678959131,0.0045738215558231],[-0.061680588871241,-0.025888020172715,-0.064756661653519],[0.0059289783239365,-0.054285652935505,-0.09208906441927]],[[-0.10009478032589,-0.005894489120692,0.044594835489988],[-0.17535270750523,-0.05572897195816,0.052183452993631],[-0.022140277549624,0.035134743899107,0.034745208919048]],[[-0.018852030858397,-0.045390009880066,-0.013546992093325],[-0.036523152142763,-0.018696904182434,0.029763517901301],[-0.042196907103062,0.0044333999976516,0.15810799598694]],[[0.036566887050867,0.044273242354393,-0.089014112949371],[0.02540423348546,0.028008040040731,0.051786344498396],[0.001206090208143,0.032749317586422,0.18037296831608]],[[-0.0063890987075865,-0.05371630191803,0.040198270231485],[0.012046898715198,-0.019166607409716,-0.092247985303402],[-0.027750564739108,-0.06964149326086,-0.018657663837075]],[[0.023993872106075,0.037567041814327,0.047211777418852],[-0.0018621596973389,0.048745006322861,0.028699340298772],[-0.071685470640659,-0.076461158692837,0.0086754988878965]],[[0.087326109409332,-0.041011333465576,-0.079691626131535],[-0.03146505728364,-0.024733709171414,0.021617166697979],[0.099872097373009,0.024547150358558,-0.043277207762003]],[[0.10179812461138,0.026024552062154,-0.028967291116714],[0.032948940992355,-0.065620727837086,0.02660078369081],[0.019605539739132,-0.069555357098579,-0.037662450224161]],[[0.034857776015997,0.083033330738544,-0.029911762103438],[-0.0015811957418919,0.0047559691593051,-0.056079141795635],[0.00050469604320824,0.08614607155323,-0.048560168594122]],[[-0.075101390480995,-0.15658496320248,0.061639335006475],[0.04723758995533,-0.0010826927609742,-0.0066745318472385],[-0.057019758969545,-0.028619458898902,-0.15430833399296]],[[0.0067542777396739,0.099644161760807,-0.12722490727901],[0.049177654087543,0.072068803012371,-0.080794461071491],[-0.0078428778797388,0.009166594594717,-0.068625308573246]],[[0.12862952053547,-0.028147626668215,0.017347894608974],[0.001635619904846,-0.16752794384956,-0.044073216617107],[0.030936557799578,-0.0066858856007457,-0.095308922231197]],[[0.022757172584534,0.039836049079895,-0.11666512489319],[-0.014124731533229,-0.031023671850562,-0.25413578748703],[-0.015246769413352,-0.061309870332479,-0.021681508049369]],[[0.033785529434681,-0.019853919744492,0.10527584701777],[0.059399601072073,-0.090417608618736,-0.017091311514378],[-0.042813260108232,-0.090738534927368,0.099313229322433]],[[-0.0097366124391556,0.0045622428879142,0.0048423083499074],[0.027156349271536,0.033199205994606,0.033653881400824],[0.093841768801212,0.04656644910574,-0.10404057055712]],[[0.053809806704521,0.002945598680526,0.018862588331103],[0.013954023830593,0.069531485438347,0.085789538919926],[0.097956374287605,0.017185335978866,0.030578218400478]],[[-0.067593030631542,-0.019776429980993,0.041357647627592],[0.010320625267923,-0.022008744999766,-0.010871964506805],[-0.10011902451515,0.033076524734497,0.030965274199843]],[[0.034129720181227,0.080260448157787,0.013989318162203],[-0.080626539885998,-0.072980180382729,-0.094296760857105],[0.033972177654505,0.031715013086796,0.071676895022392]],[[-0.094148710370064,-0.029779510572553,0.099238738417625],[-0.081149034202099,-0.026833837851882,0.11887113749981],[-0.030988682061434,0.027201876044273,0.030865628272295]],[[0.022198788821697,-0.13326872885227,-0.18956610560417],[-0.021756833419204,-0.15070196986198,-0.11866385489702],[-0.0010666304733604,-0.19945542514324,-0.1713614910841]],[[-0.065318815410137,-0.062401656061411,-0.019633216783404],[-0.050666995346546,0.093128986656666,-0.050271522253752],[-0.019250581040978,0.040773686021566,-0.017289202660322]],[[0.089707992970943,0.10510034114122,0.052212737500668],[0.059249322861433,-0.010128424502909,-0.12663224339485],[-0.042139984667301,-0.00072629580972716,-0.1779543608427]],[[0.015663454309106,0.018801396712661,0.0093066031113267],[0.0096550388261676,0.16324546933174,0.14298801124096],[-0.063674166798592,0.034522343426943,0.076325312256813]],[[0.20820465683937,0.11696115136147,0.013666193000972],[0.04171097651124,0.067424699664116,-0.022582938894629],[-0.088583074510098,-0.10133045911789,-0.10481532663107]],[[0.0055186422541738,0.054548658430576,0.047742404043674],[-0.074980743229389,0.02943080291152,0.0035646862816066],[-0.042346704751253,0.018926214426756,0.042786613106728]],[[0.0038111531175673,-0.11336947232485,-0.063098892569542],[0.052394844591618,0.031917482614517,-0.028751833364367],[0.064285807311535,0.10107102245092,0.023078456521034]],[[0.059525270015001,0.025576066225767,0.050384398549795],[0.070880249142647,-0.027782564982772,-0.025521252304316],[0.061112705618143,-0.051317736506462,-0.015377367846668]],[[0.076121263206005,-0.03015679307282,0.0086933793500066],[0.10351823270321,-0.084786288440228,0.052393071353436],[0.030397981405258,-0.065386652946472,-0.040617745369673]],[[-0.009089931845665,0.023033609613776,0.11431542038918],[0.043493837118149,0.038790240883827,0.006762180943042],[-0.037714302539825,0.018333805724978,-0.28586912155151]],[[-0.074043489992619,0.01379375346005,-0.054609775543213],[-0.069188378751278,0.14942175149918,0.011332106776536],[-0.13533863425255,0.03827828541398,0.066054083406925]],[[-0.069369770586491,-0.1220315694809,-0.096375405788422],[0.019240751862526,-0.027925115078688,-0.027833415195346],[0.071588173508644,0.094810798764229,0.046069845557213]],[[0.064937934279442,0.058500073850155,0.04556741937995],[0.0044307396747172,0.031526289880276,0.012687045149505],[0.086919590830803,-0.013597496785223,0.022483533248305]],[[-0.045294959098101,-0.090577088296413,-0.048099361360073],[-0.055491048842669,-0.093236565589905,-0.10686697810888],[-0.10538522154093,0.1305269151926,-0.0026023725513369]],[[0.00308474060148,0.0066487397998571,0.22495137155056],[0.093696981668472,0.0053037749603391,0.10795379430056],[0.033861123025417,-0.033450156450272,0.027546633034945]],[[0.044911585748196,-0.0014692186377943,0.012388033792377],[-0.003740947926417,-0.014691689051688,-0.086851343512535],[0.0018317287322134,-0.036897268146276,-0.017272153869271]],[[0.068086735904217,-0.0089346198365092,-0.0613266043365],[-0.026262018829584,-0.015448708087206,-0.043798357248306],[0.019476111978292,0.049064856022596,-0.08787152916193]],[[-1.9163333490724e-05,0.033891044557095,0.01940687559545],[0.0035178232938051,-0.0031418246217072,-0.0606929063797],[0.0066850311122835,0.041557583957911,0.045189000666142]],[[-0.01984092220664,0.0074181887321174,0.052828341722488],[-0.049129880964756,0.021082168444991,-0.18584418296814],[0.015898222103715,0.0047644712030888,-0.031153349205852]],[[-0.24025401473045,-0.015402386896312,-0.041528072208166],[-0.019996806979179,-0.06670106947422,0.076550386846066],[0.063552431762218,0.12051801383495,0.15542362630367]],[[-0.13011486828327,0.05845694988966,0.011250643990934],[-0.0024368253070861,-0.078078024089336,-0.10091426223516],[0.011657081544399,0.10708447545767,0.045895371586084]],[[-0.11287924647331,-0.04751655831933,0.032044671475887],[-0.05979922786355,-0.058355312794447,-0.023115744814277],[-0.081004977226257,0.051150400191545,-0.020943989977241]],[[-0.071594648063183,0.073245733976364,-0.099313914775848],[0.019764486700296,0.085414446890354,-0.21002416312695],[0.084000319242477,-0.034085620194674,-0.19362825155258]],[[0.044561002403498,-0.011688785627484,0.036026746034622],[0.02400135807693,0.0025002579204738,-0.0071452585980296],[-0.025918625295162,-0.078450322151184,-0.0033093681558967]],[[-0.17740695178509,0.02148525044322,-0.046063046902418],[-0.038388825953007,0.0021808531600982,-0.11029649525881],[-0.10715889185667,0.052639324218035,-0.021070959046483]],[[-0.07394652813673,0.12000177055597,0.033162284642458],[-0.046980388462543,-0.0029244257602841,0.08808396011591],[-0.0019817431457341,-0.001754398457706,0.107292547822]],[[0.069401822984219,0.073913991451263,-0.047382649034262],[-0.027910728007555,-0.039156384766102,-0.076779834926128],[0.053889080882072,0.023523222655058,-0.0065826349891722]],[[0.074791856110096,-0.06808577477932,0.1016191765666],[-0.0023696508724242,-0.12594753503799,0.030897960066795],[0.051146432757378,-0.1070446819067,-0.11709704995155]],[[-0.010111086070538,-0.0011270419927314,0.057004950940609],[-0.047210983932018,0.012850454077125,-0.021168801933527],[0.033918078988791,0.067980758845806,-0.05161440372467]],[[0.088747613132,0.006487752776593,-0.027846241369843],[-0.04721088334918,0.00013173252227716,0.060635648667812],[0.025035213679075,-0.018618304282427,-0.034103613346815]],[[0.092508278787136,0.050330348312855,0.031961474567652],[-0.034201692789793,0.020229250192642,-0.014801782555878],[0.049860194325447,-0.0501659065485,0.043426647782326]],[[-0.016782194375992,-0.081269592046738,-0.048701249063015],[-0.014249659143388,0.019502263516188,0.031834501773119],[-0.026336755603552,0.11870498210192,0.12838359177113]],[[0.11524000018835,-0.018292061984539,0.055201429873705],[0.0074514346197248,0.0076414733193815,0.073127292096615],[0.043520171195269,0.10335373878479,0.079482488334179]],[[-0.015066721476614,-0.0081984829157591,0.020391503348947],[0.082446031272411,0.081091217696667,-0.083114020526409],[0.037231352180243,0.028150856494904,-0.077339105308056]],[[0.087091535329819,-0.039540838450193,0.059236485511065],[0.023243460804224,-0.092845179140568,0.018344143405557],[-0.032761726528406,-0.0038725167978555,0.10417552292347]],[[0.042386163026094,0.048526138067245,-0.13185879588127],[0.0044782129116356,0.0074765766039491,0.047044679522514],[-0.0075843119993806,-0.05285756662488,-0.034725658595562]],[[-0.073505789041519,-0.021741379052401,0.0088303936645389],[0.076184429228306,0.018485862761736,-0.06756704300642],[0.10778417438269,0.065791971981525,-0.024037947878242]],[[0.0012228678679094,0.00095960701582953,-0.025574266910553],[-0.079474575817585,-0.051664739847183,-0.06741888076067],[-0.0013552804011852,-0.16144080460072,-0.088171593844891]],[[0.051315154880285,-0.0062003321945667,0.10532364994287],[0.10783926397562,0.11545847356319,0.14162093400955],[-0.041630432009697,0.081734023988247,-0.06142470240593]],[[0.083529867231846,-0.047185786068439,-0.076936811208725],[0.15439605712891,-0.011341722682118,-0.09259058535099],[0.037400420755148,-0.048279013484716,0.0059759151190519]],[[-0.11195488274097,-0.007863400503993,-0.028303727507591],[-0.083045922219753,-0.0018542604520917,-0.10776782035828],[0.035848617553711,-0.00025329491472803,-0.038293849676847]],[[-0.073046065866947,-0.067457534372807,0.071249015629292],[-0.070117264986038,0.09766647964716,0.099589645862579],[0.016499763354659,0.023397158831358,0.11287669092417]],[[0.011424801312387,-0.051459770649672,0.039133202284575],[-0.077650353312492,-0.080576956272125,0.0069370418787003],[0.0062700025737286,0.036662802100182,-0.0029595068190247]],[[0.039604902267456,0.0030033665243536,-0.06956484913826],[-0.020659288391471,0.0080870576202869,-0.091656997799873],[-0.069262094795704,0.0048660561442375,0.027656704187393]]],[[[-0.10180485248566,-0.098210491240025,-0.074436329305172],[-0.022743871435523,0.0027464623562992,0.070034928619862],[0.010426769964397,-0.025835143402219,0.030062716454268]],[[-0.001643531373702,0.078216850757599,0.10302928090096],[-0.020029317587614,0.045854024589062,0.064641185104847],[-0.044397629797459,-0.082627363502979,-0.043782670050859]],[[-0.052178502082825,0.001367500051856,0.068376161158085],[-0.019530972465873,-0.052009422332048,-0.0081895543262362],[-0.12324757874012,-0.010353402234614,0.016660906374454]],[[-0.052261553704739,-0.03866870328784,0.052156377583742],[0.0018704219255596,-0.01108315680176,-0.081794649362564],[-0.11303026974201,-0.051902897655964,0.031637389212847]],[[-0.0061182733625174,0.0062764422036707,0.090015046298504],[-0.14990490674973,0.009649658575654,-0.094645492732525],[-0.044507805258036,0.008883117698133,-0.082175143063068]],[[-0.034108649939299,0.035244032740593,-0.025791428983212],[-0.023524209856987,0.0048662447370589,0.050622884184122],[-0.12411902099848,-0.061690170317888,-0.013627733103931]],[[-0.026561055332422,0.0033317722845823,-0.031361136585474],[0.040718384087086,-0.023623868823051,0.01732811331749],[-0.12684699892998,0.0054893237538636,-0.057231161743402]],[[0.0072058984078467,-0.052749626338482,-0.052319884300232],[-0.034947298467159,0.075997740030289,-0.032070081681013],[-0.045532178133726,-0.048094313591719,-0.099272854626179]],[[-0.038657758384943,0.021780710667372,-0.0019857101142406],[-0.076336689293385,-0.024852743372321,-0.00065935618476942],[0.013022443279624,0.002127074636519,-0.039863836020231]],[[0.013576664030552,0.0030365148559213,-0.047811184078455],[0.026975907385349,-0.034496318548918,0.08478507399559],[-0.016700468957424,0.023512532934546,0.0020139932166785]],[[0.0063605383038521,-0.049199320375919,0.086702242493629],[0.014702036045492,-0.073895923793316,-0.019924469292164],[0.0020493911579251,0.086020261049271,-0.02032326720655]],[[-0.12579751014709,0.0010386710055172,0.007828182540834],[-0.081927441060543,0.0033459053374827,-0.012331273406744],[0.01675465516746,-0.061831045895815,0.026831423863769]],[[-0.027657065540552,-0.098504886031151,-0.014108381234109],[0.026283601298928,-0.074513405561447,-0.035036079585552],[-0.066514939069748,-0.10879621654749,-0.06339680403471]],[[-0.013583543710411,0.00092828099150211,-0.0056550824083388],[-0.0035203220322728,-0.028743673115969,-0.015694752335548],[0.070010289549828,0.018520828336477,0.012296641245484]],[[0.05328394472599,0.050434187054634,0.063615538179874],[0.0426588319242,-0.0072216894477606,0.1009319499135],[0.027866173535585,-0.031620509922504,-0.034601215273142]],[[-0.0007006271625869,0.089546225965023,-0.0073743532411754],[0.028841603547335,-0.0063459076918662,0.0066148908808827],[0.076524890959263,0.00088667223462835,0.073956876993179]],[[-0.12171085178852,-0.026720941066742,-0.090039633214474],[0.097438327968121,-0.11511994153261,-0.097153976559639],[0.038989271968603,0.018681548535824,-0.021869732066989]],[[0.034621313214302,0.00072353100404143,0.024544542655349],[0.0061053093522787,0.027163900434971,0.071743115782738],[-0.13289718329906,-0.061897717416286,0.033903241157532]],[[-0.030919956043363,-0.064110495150089,-0.019609602168202],[0.046626068651676,-0.031573224812746,0.035727601498365],[-0.018797798082232,-0.015826765447855,-0.022850206121802]],[[0.024928145110607,-0.0061368178576231,0.015433694235981],[-0.015262358821929,-0.014161610975862,-0.020682770758867],[0.01927481777966,0.018058670684695,-0.029303943738341]],[[0.025425795465708,0.036695688962936,0.027040606364608],[0.004698121920228,0.021971428766847,-0.0044299736618996],[-0.044283986091614,0.0010397175792605,0.014267273247242]],[[-0.086188077926636,0.006344847381115,0.010507782921195],[0.02311647683382,-0.0061539732851088,-0.017555775120854],[0.015711953863502,0.009088272228837,0.0090644927695394]],[[0.047780983150005,0.00017651816597208,0.035310063511133],[-0.061284687370062,0.081952810287476,0.055635757744312],[-0.088182054460049,-0.048384979367256,-0.0015871399082243]],[[0.041034989058971,0.026081800460815,0.067683346569538],[-0.00017150831990875,-0.10356000065804,-0.070371262729168],[0.024512995034456,-0.001871838234365,0.037508949637413]],[[-0.0097436103969812,-0.03632378205657,-0.025485279038548],[0.0054272888228297,-0.036122437566519,-0.0564542748034],[0.027302499860525,0.046675689518452,-0.016145499423146]],[[0.02779383212328,0.058968860656023,0.098419331014156],[0.025926994159818,0.048434384167194,0.024106273427606],[-0.034232925623655,-0.0091423634439707,0.033696576952934]],[[-0.080880768597126,0.074085414409637,-0.016395919024944],[-0.097138129174709,-0.0036020781844854,0.025113351643085],[0.082535058259964,-0.010412161238492,-0.0045007234439254]],[[0.010740453377366,-0.031292781233788,-0.02428999915719],[0.039731372147799,0.038430262356997,0.093099616467953],[-0.058754622936249,-0.068890035152435,0.032462045550346]],[[-0.14021243155003,-0.038059867918491,-0.039139710366726],[-0.086465433239937,-0.049412280321121,-0.015245598740876],[-0.059225607663393,-0.039561286568642,0.027261633425951]],[[0.055958792567253,0.042574182152748,-0.037835896015167],[0.044617358595133,0.008681008592248,-0.029173232614994],[-0.027015676721931,0.041020423173904,-0.027324618771672]],[[0.10353749245405,-0.027432788163424,0.0016631721518934],[0.023050345480442,0.021874014288187,0.0091861933469772],[0.052889384329319,0.03904765099287,-0.030924016609788]],[[-0.038218162953854,0.041560526937246,-0.018845768645406],[0.042038846760988,-0.017058284953237,0.033935807645321],[-0.01910980604589,0.089229121804237,-0.023306040093303]],[[-0.030804071575403,-0.0099143870174885,-0.10296730697155],[-0.079970516264439,-0.059270139783621,-0.029900519177318],[-0.055818125605583,0.04971731081605,0.030659714713693]],[[0.033323392271996,0.026719149202108,-0.031750064343214],[-0.089487858116627,0.17786577343941,0.0097350627183914],[0.032118130475283,-0.10267951339483,-0.038520593196154]],[[0.042593121528625,0.081663653254509,0.0039355894550681],[-0.18810734152794,-0.032770127058029,-0.0010973875178024],[-0.12023319303989,-0.13315038383007,-0.078668855130672]],[[-0.015288240276277,-0.041835144162178,0.0077797290869057],[-0.05820931121707,-0.020159931853414,-0.0096086291596293],[0.037782076746225,0.022413792088628,0.075829453766346]],[[0.035995978862047,0.036034692078829,-0.019539065659046],[0.018096018582582,0.055578242987394,-0.064516194164753],[0.11007461696863,0.0074715670198202,-0.065888926386833]],[[-0.050829093903303,0.07007023692131,0.18691624701023],[0.026899799704552,-0.0060590002685785,0.090148434042931],[0.02092544361949,-0.045394085347652,0.07404200732708]],[[0.06028738617897,-0.013855705969036,0.0035608247853816],[0.0062212506309152,0.010973748750985,0.077372364699841],[-0.075881607830524,-0.11759351193905,-0.054618779569864]],[[-0.072294905781746,0.033558242022991,0.12127853929996],[-0.030267015099525,0.0078669982030988,0.010166858322918],[0.077840037643909,-0.025079116225243,-0.11374319344759]],[[0.016709923744202,0.0038102448452264,-0.075160197913647],[-0.082234613597393,0.028175489977002,0.025291331112385],[0.10880976170301,-0.05924341455102,0.021255653351545]],[[0.033050876110792,0.043542772531509,0.063256084918976],[-0.01196068059653,-0.025656083598733,0.027760544791818],[-0.091268807649612,-0.11603626608849,-0.052466489374638]],[[-0.046917725354433,0.0078035164624453,-0.0020798314362764],[0.11613786220551,-0.045634843409061,-0.077527679502964],[0.032106772065163,-0.01048616040498,-0.032989762723446]],[[0.15197645127773,-0.0062154275365174,-0.031512524932623],[0.03589516505599,0.050400577485561,-0.015242816880345],[-0.21246555447578,-0.060174763202667,-0.029077038168907]],[[-0.034015826880932,-0.088066764175892,0.0024126342032105],[-0.038672178983688,-0.029639266431332,-0.011139454320073],[0.05220677703619,-0.051667917519808,-0.020999738946557]],[[0.041400749236345,0.036380715668201,0.0074717765673995],[-0.02928626537323,0.023002108559012,0.043180305510759],[-0.084371097385883,-0.15075793862343,-0.0056798746809363]],[[-0.01659413985908,0.026044938713312,-0.050790246576071],[0.0085320435464382,0.041993349790573,-0.044945530593395],[-0.016414120793343,-0.024552267044783,0.0052875746041536]],[[0.034439589828253,0.057544518262148,-0.029529560357332],[-0.028863241896033,0.0093275355175138,0.040587428957224],[-0.014143280684948,-0.0078706229105592,-0.05634892731905]],[[0.0025310649070889,0.051970276981592,-0.019152199849486],[-0.012418067082763,0.064804226160049,0.020769720897079],[-0.10838297754526,-0.035959262400866,-0.025923620909452]],[[-0.080598808825016,0.046783693134785,0.041163519024849],[-0.14901974797249,0.00050679472042248,0.024798490107059],[-0.060859717428684,-0.16411592066288,-0.044110044836998]],[[0.038118068128824,0.094681866466999,0.062807165086269],[-0.047891676425934,0.042499475181103,-0.0010855249129236],[-0.10506818443537,-0.099099449813366,0.03224316239357]],[[0.095653705298901,-0.050976559519768,-0.15622015297413],[0.16054545342922,0.12521821260452,-0.030200786888599],[0.17468948662281,0.2309402525425,0.10900668799877]],[[0.03620956838131,0.017448633909225,0.0037649476435035],[-0.025499019771814,0.018419247120619,-0.023571779951453],[-0.010204910300672,-0.012151006609201,-0.057148661464453]],[[0.024998901411891,-0.10986521095037,0.0051120710559189],[-0.042204685509205,0.056362189352512,-0.081302538514137],[-0.0038147361483425,0.062706559896469,0.14221584796906]],[[-0.0045182663016021,0.046198811382055,-0.022753117606044],[0.0081920092925429,0.0077258758246899,-0.01877217926085],[-0.10821337252855,0.10686183720827,0.028523629531264]],[[0.074029237031937,-0.007706846576184,0.027178900316358],[-0.059904251247644,0.017756562680006,0.0087660979479551],[-0.064376004040241,-0.10405973345041,-0.020771693438292]],[[0.033209670335054,-0.088023953139782,-0.090307205915451],[-0.043731287121773,0.022260179743171,-0.0400594137609],[0.0074613420292735,-0.01840846799314,0.030194655060768]],[[-0.0076171373948455,-0.045355755835772,-0.0013156466884539],[-0.072328120470047,-0.0037865058984607,0.053892910480499],[0.04196260124445,-0.14506325125694,-0.030129846185446]],[[0.027263570576906,-0.079686239361763,-0.093499526381493],[0.1460183262825,0.064107835292816,-0.065634243190289],[0.061688579618931,0.12239707261324,0.056145250797272]],[[-0.032495226711035,0.037210617214441,0.025252094492316],[-0.048734068870544,0.014785551466048,0.028261097148061],[-0.002816213760525,0.026984203606844,-0.042720951139927]],[[0.057248432189226,-0.056574296206236,0.040993936359882],[-0.050080239772797,-0.027602527290583,0.0099618881940842],[0.018633490428329,-0.015780452638865,0.077897891402245]],[[-0.019267437979579,0.031467013061047,0.039636928588152],[-0.098545476794243,-0.11234867572784,0.068657346069813],[0.14226207137108,0.021875029429793,0.034816607832909]],[[0.0042281323112547,0.0034014680422843,0.0075531774200499],[-0.00024364769342355,0.028726860880852,-0.0019364897161722],[-0.1017303019762,0.059154726564884,0.056923974305391]],[[-0.060562387108803,0.044389858841896,0.061105784028769],[-0.0044009853154421,0.028727127239108,0.021546475589275],[0.019502609968185,-0.079669408500195,-0.048880890011787]]],[[[0.049916215240955,0.1806552708149,0.19571210443974],[0.0023145258892328,0.090009734034538,0.012012206949294],[-0.029371213167906,-0.13845269382,0.033784195780754]],[[-0.005831612739712,0.054558519273996,-0.092281438410282],[-0.096716776490211,0.064557507634163,-0.017055505886674],[0.021562280133367,-0.0032277880236506,0.052678130567074]],[[0.045325141400099,0.017581755295396,-0.048959538340569],[0.035609897226095,-0.074664913117886,0.036359317600727],[-0.071320898830891,-0.056082833558321,-0.09494972974062]],[[-0.0076594660058618,0.034750435501337,-0.010263524018228],[0.0083450702950358,0.056236952543259,-0.050076499581337],[0.073890097439289,0.00095959164900705,0.056871857494116]],[[-0.093856833875179,0.13259649276733,0.026544606313109],[0.053961060941219,0.096122890710831,-0.070306539535522],[0.022257262840867,-0.028225190937519,0.0055955094285309]],[[-0.032697439193726,0.033310029655695,-0.044567588716745],[0.0067985681816936,-0.00079547456698492,0.036654692143202],[-0.057017382234335,-0.075270891189575,0.048280596733093]],[[0.047858376055956,-0.0139797963202,0.04250380769372],[-0.025395745411515,-0.051944222301245,-0.029195960611105],[-0.11373601853848,-0.082029797136784,-0.036795496940613]],[[-0.064116947352886,-0.098302908241749,0.10012166947126],[-0.020636739209294,-0.014395412057638,0.02369399368763],[-0.10419080406427,-0.064651340246201,0.061520829796791]],[[0.0032996027730405,0.075258493423462,0.091184079647064],[-0.10651872307062,-0.033832833170891,0.017686372622848],[0.0045434269122779,-0.029146509245038,-0.047703444957733]],[[0.059733022004366,0.046687584370375,0.15133498609066],[0.037748660892248,0.043953754007816,0.024759432300925],[-0.012280545197427,-0.051675707101822,0.027552396059036]],[[0.073798291385174,-0.048884395509958,-0.2186763882637],[-0.097314536571503,-0.061554025858641,0.045609761029482],[-0.062327485531569,0.039554864168167,0.076562069356441]],[[0.013995766639709,-0.019615044817328,-0.12939056754112],[0.0068160914815962,-0.043487071990967,-0.0057539218105376],[-0.17114312946796,-0.16195222735405,-0.027158593758941]],[[-0.075804598629475,0.035319183021784,0.1325798034668],[0.029597504064441,0.0097436923533678,0.050917413085699],[0.058273553848267,-0.03242751955986,-0.091311626136303]],[[0.079598344862461,-0.049188267439604,-0.04800033941865],[0.01245147921145,0.012388065457344,0.066088899970055],[0.0052330796606839,0.13294258713722,0.022899221628904]],[[-0.026037817820907,-0.18679600954056,0.030718574300408],[-0.077261075377464,-0.089845523238182,0.045714031904936],[-0.031709272414446,0.0022448862437159,0.033648818731308]],[[0.049553535878658,-0.0087654469534755,0.13085032999516],[-0.10124019533396,-0.13811860978603,0.025574404746294],[0.018645636737347,-0.0079614296555519,-0.0016041732160375]],[[0.022152503952384,0.012777884490788,-0.048649802803993],[0.0080426689237356,0.02888329140842,-0.017432365566492],[-0.15059638023376,-0.062352497130632,0.03381297364831]],[[0.021368319168687,0.097827143967152,0.030275173485279],[-0.041111014783382,-0.075338616967201,-0.023671129718423],[-0.0099468817934394,0.059377320110798,0.019584821537137]],[[-0.012578219175339,0.065354637801647,0.043652750551701],[0.0049638645723462,-0.097872354090214,-0.074055932462215],[0.14450301229954,-0.038065642118454,0.045444309711456]],[[-0.020931541919708,0.030040577054024,-0.031671352684498],[-0.01885549351573,0.0014062214177102,-0.041218772530556],[0.016510225832462,0.018329301849008,0.050462625920773]],[[0.037261262536049,-0.086915485560894,0.038080409169197],[-0.035586133599281,-0.009597678668797,-0.0091045843437314],[-0.019838783890009,0.027683733031154,0.012509408406913]],[[0.033744286745787,0.0089004337787628,0.054212562739849],[-0.079303696751595,0.035885144025087,0.0039551225490868],[-0.007943888194859,-0.046475365757942,-0.068229101598263]],[[-0.069117061793804,-0.042216401547194,-0.045403607189655],[-0.057406909763813,0.032198388129473,0.0012667323462665],[0.031395517289639,-0.034708444029093,-0.10098294168711]],[[0.085511289536953,-0.1855428814888,-0.069140322506428],[0.0040793586522341,0.097014464437962,0.17221923172474],[-0.009249534457922,0.068565234541893,0.05165671557188]],[[-0.039870206266642,-0.021292816847563,0.02389619499445],[-0.03506688028574,0.045208986848593,0.025927182286978],[-0.02688099257648,0.077532291412354,-0.085730902850628]],[[-0.0063703344203532,0.072127908468246,-0.017382526770234],[0.022188091650605,0.049982387572527,-0.059567995369434],[-0.017473364248872,0.098470821976662,0.02345610037446]],[[-0.076070666313171,-0.016260780394077,0.041662324219942],[0.049792692065239,0.055440541356802,0.036003932356834],[-0.11515215784311,-0.069877862930298,-0.030666690319777]],[[-0.016052631661296,0.012922992929816,0.071935765445232],[0.058029893785715,0.017645580694079,-0.0049835257232189],[-0.0078537752851844,-0.021246843039989,-0.096918359398842]],[[0.048073045909405,0.06779458373785,0.0025755481328815],[0.0588075555861,0.025044923648238,-0.022291082888842],[-0.051285617053509,-0.042801436036825,0.04352630674839]],[[-0.16893710196018,0.055283855646849,0.10737288743258],[-0.034751739352942,-0.075443409383297,0.017526442185044],[-0.13938142359257,0.069135628640652,-0.055154554545879]],[[0.062964409589767,-0.052812397480011,-0.11893453449011],[0.044270150363445,-0.024356549605727,-0.076795227825642],[0.033387362957001,-0.015935052186251,0.099693790078163]],[[0.044369090348482,-0.10228874534369,-0.0066145602613688],[0.045025885105133,-0.038227885961533,0.024176985025406],[0.05734982714057,-0.030414262786508,-0.014338879846036]],[[-0.034973371773958,-0.092340610921383,-0.11888929456472],[-0.050170782953501,-0.0029981636907905,0.01012933626771],[-0.049239318817854,-0.0088601661846042,-0.02887824177742]],[[0.017259664833546,-0.031967435032129,0.099431961774826],[0.044623926281929,-0.16155156493187,0.0011055417126045],[0.047903880476952,-0.16108269989491,-0.054320961236954]],[[-0.019911255687475,-0.0060232719406486,0.039739996194839],[0.0040061166509986,-0.047223724424839,-0.051224775612354],[-0.032521836459637,-0.047743782401085,-0.021247297525406]],[[0.018838653340936,0.016804352402687,0.12752994894981],[-0.0086303306743503,0.077014975249767,-0.022750513628125],[0.017107829451561,0.011364536359906,-0.01395027153194]],[[0.052258167415857,0.097027748823166,0.23607581853867],[-0.08704386651516,0.077241875231266,-0.039195626974106],[0.026306010782719,-0.032962143421173,0.023032177239656]],[[0.039354089647532,-0.084582656621933,-0.041979935020208],[0.053407542407513,-0.03874696791172,0.05170600861311],[0.05131921172142,-0.088041312992573,-0.062003612518311]],[[-0.010527333244681,-0.13422082364559,-0.073548600077629],[0.038160149008036,0.083654046058655,0.033378981053829],[-0.033299539238214,-0.012006630189717,-0.11676564067602]],[[-0.032326608896255,0.081841222941875,-0.044682778418064],[-0.021986125037074,-0.0076617854647338,-0.008057089522481],[-0.044180020689964,-0.0096121849492192,-0.022170096635818]],[[-0.00038441701326519,-0.012766680680215,0.13744741678238],[-0.0058422335423529,0.096131362020969,-0.039671365171671],[-0.070347622036934,-0.038669072091579,0.024342386052012]],[[0.020601324737072,-0.08648319542408,-0.12800033390522],[0.088974609971046,-0.0011632695095614,-0.11152315884829],[-0.064345695078373,-0.097235441207886,0.084334306418896]],[[0.10754976421595,-0.020140014588833,0.020452616736293],[0.014067663811147,-0.10990606248379,0.094308950006962],[0.059575315564871,-0.086043246090412,-0.01116902474314]],[[-0.20461484789848,-0.098210662603378,0.059099838137627],[0.020963178947568,0.035275634378195,0.054119680076838],[0.087172083556652,0.0014583682641387,-0.10150167346001]],[[-0.023961994796991,0.1070621162653,-0.11808770895004],[-0.081046842038631,0.14940278232098,-0.1108028665185],[0.059936139732599,-0.025730453431606,-0.090794242918491]],[[-0.082786343991756,-0.10443264991045,-0.16065283119678],[0.085094965994358,-0.12249258905649,-0.043096825480461],[-0.022555394098163,-0.094426020979881,0.084885224699974]],[[0.066018804907799,-0.20412103831768,-0.056555550545454],[-0.04878918454051,-0.047631066292524,-0.019159628078341],[0.046791154891253,-0.10800632834435,-0.0037806057371199]],[[0.15487967431545,-0.041295684874058,0.022377293556929],[-0.018473522737622,0.06299090385437,-0.047233279794455],[0.015402219258249,0.053031757473946,0.074687652289867]],[[-0.01016516238451,-0.045259092003107,-0.041500434279442],[-0.014699194580317,0.070250883698463,-0.0638817101717],[-0.019515288993716,-0.02572582475841,-0.11436212062836]],[[0.059223733842373,-0.018670160323381,0.06803497672081],[0.073212146759033,0.0070740031078458,0.051690388470888],[0.024600673466921,-0.10044747591019,-0.024952763691545]],[[-0.10675496608019,0.21169474720955,-0.05732624605298],[0.0020106192678213,-0.043125838041306,-0.073107004165649],[-0.051485426723957,0.13524527847767,0.014852872118354]],[[-0.049122467637062,0.058134496212006,0.17505416274071],[0.10893534123898,0.045740406960249,0.039515145123005],[0.10579970479012,0.067526042461395,0.031025126576424]],[[-0.024048024788499,-0.078153841197491,-0.081103153526783],[-0.056992202997208,-0.10791585594416,0.05224072933197],[-0.023347597569227,-0.035909209400415,0.032590325921774]],[[0.037278987467289,0.02442135848105,-0.13864998519421],[-0.075632505118847,-0.024821879342198,-0.013015282340348],[0.088171020150185,0.040898870676756,0.04193152859807]],[[-0.0021575090941042,-0.044381137937307,-0.087533041834831],[0.0031913141719997,0.03357008844614,-0.099607929587364],[-0.0990359634161,-0.0092123197391629,-0.12049230188131]],[[0.01310449372977,-0.02309319935739,0.11365170031786],[0.0087037840858102,-0.10826793313026,0.010746669955552],[-0.11420684307814,0.087143704295158,0.018719224259257]],[[0.059155952185392,0.18985213339329,-0.024233469739556],[0.034031637012959,0.014494997449219,-0.086379610002041],[-0.05785283818841,-0.04271911457181,0.087726272642612]],[[-0.12728376686573,0.020407922565937,0.023735169321299],[-0.045135479420424,0.0027630769181997,-0.14223170280457],[-0.045393764972687,-0.10263015329838,-0.11621302366257]],[[-0.079776100814342,0.017664095386863,-0.00089399528224021],[-0.034545917063951,0.060800652951002,-0.0025477961171418],[0.014835813082755,-0.050029713660479,0.035418212413788]],[[0.0097145847976208,-0.0082676326856017,0.010514217428863],[0.0086591420695186,0.018942022696137,0.045071817934513],[-0.055214557796717,-0.02089194022119,-0.0040409923531115]],[[-0.058752618730068,0.12053413689137,0.090621270239353],[-0.014021627604961,0.036874320358038,0.040544826537371],[-0.076697938144207,0.042412530630827,0.0044129421003163]],[[0.01384056173265,-0.023903926834464,-0.10628429055214],[-0.034333441406488,0.079989150166512,-0.096048802137375],[0.046814449131489,-0.022546337917447,-0.18770000338554]],[[0.052466157823801,-0.081858739256859,-0.092343658208847],[-0.069394491612911,0.027049023658037,-0.0026151454076171],[-0.002823676681146,0.049130167812109,-0.051239427179098]],[[0.066209644079208,-0.059065882116556,0.026616645976901],[-0.0027719847857952,0.028212221339345,-0.041938100010157],[0.067165285348892,-0.13664521276951,-0.036161679774523]]],[[[0.05883751064539,0.061623495072126,-0.076755218207836],[-0.027829438447952,-0.10361393541098,-0.0034775848034769],[0.015228000469506,0.09038907289505,0.069558143615723]],[[0.079117894172668,-0.0034969029948115,-0.026660047471523],[0.13347153365612,-0.057558070868254,0.025918215513229],[0.15303629636765,0.078850097954273,0.072224512696266]],[[-0.040163531899452,-0.055379763245583,0.036790233105421],[-0.096610300242901,-0.036161180585623,-0.0046818228438497],[0.023532999679446,0.027944780886173,0.059321705251932]],[[-0.016779314726591,-0.037916161119938,0.025002267211676],[-0.0045000407844782,-0.048319708555937,0.019343826919794],[-0.063698470592499,0.030449919402599,-0.032999906688929]],[[-0.055837035179138,-0.08822226524353,-0.052650153636932],[0.084273003041744,0.016471717506647,0.11999483406544],[0.015210739336908,-0.045490570366383,-0.033364776521921]],[[-0.064959369599819,0.075009450316429,-0.0098164398223162],[-0.061649702489376,-0.17196114361286,-0.010038606822491],[-0.0026367239188403,-0.010289455763996,0.045376922935247]],[[-0.052577238529921,0.028211386874318,0.034207243472338],[-0.043580710887909,-0.064030475914478,0.031124899163842],[0.020999636501074,0.027218064293265,0.039680130779743]],[[0.097159616649151,0.10193637013435,0.018632480874658],[0.054804589599371,0.069441944360733,0.080688364803791],[-0.10423714667559,-0.03827241063118,0.084426611661911]],[[0.018186444416642,-0.025473743677139,0.032913725823164],[-0.02336691506207,0.0064079635776579,0.053426314145327],[-0.076134592294693,0.0759487003088,0.025959877297282]],[[-0.12568235397339,0.02315740659833,-0.045188900083303],[-0.045554723590612,0.016576280817389,0.037652436643839],[-0.12143756449223,0.036910247057676,0.063942238688469]],[[-0.010793194174767,-0.01124213822186,-0.020875845104456],[-0.030219934880733,-0.0085888262838125,0.030230896547437],[-0.010048271156847,0.036099452525377,-0.056758608669043]],[[-0.13816519081593,-0.051651261746883,-0.031960163265467],[-0.098518878221512,-0.070014335215092,0.031419020146132],[-0.05406266450882,0.0077443025074899,-0.086254760622978]],[[-0.010946245864034,0.0072036604396999,-0.022941695526242],[0.025440253317356,-0.016660904511809,0.075025789439678],[-0.014815812930465,-0.05479472130537,0.082751877605915]],[[-0.15630865097046,-0.05900539830327,0.018371922895312],[0.053985271602869,0.027700681239367,0.084695674479008],[0.070080548524857,0.0063727851957083,0.0083504617214203]],[[-0.11805964261293,-0.020254964008927,0.030431881546974],[-0.10466819256544,-0.020681496709585,0.00029308150988072],[-0.076242357492447,0.027812942862511,-0.025269513949752]],[[0.011713974177837,0.0071128159761429,0.073465138673782],[0.065512023866177,0.055864222347736,0.0016847300576046],[-0.039848737418652,0.028243433684111,0.0047878250479698]],[[-0.08803316950798,-0.13801774382591,-0.0087055694311857],[0.010196779854596,-0.0092828515917063,0.10881634056568],[0.014685596339405,0.0044933403842151,0.06695993244648]],[[-0.083885177969933,-0.054603800177574,-0.041388049721718],[-0.019183469936252,0.037804551422596,0.1103792116046],[0.022843489423394,0.0042832880280912,0.1108199134469]],[[-0.037048365920782,0.077195979654789,0.017136253416538],[0.0097659481689334,0.011273749172688,-0.062756650149822],[-0.020127331838012,0.032034773379564,0.028715366497636]],[[-0.0033300251234323,-0.036671008914709,-0.0026847328990698],[0.01563392393291,0.012093789875507,-0.0064294720068574],[0.011949937790632,-0.012045993469656,0.011398522183299]],[[-0.0068303919397295,0.044301200658083,0.024299774318933],[0.021010370925069,0.015531719662249,0.077494867146015],[-0.048712935298681,-0.14695711433887,0.03005039691925]],[[0.11470414698124,-0.0051213409751654,0.032380275428295],[-0.098204210400581,0.045437164604664,0.087955221533775],[-0.0036665822844952,0.049040611833334,-0.021372953429818]],[[-0.051086872816086,-0.029024604707956,-0.053578823804855],[0.0017954827053472,0.058462746441364,0.042801529169083],[-0.090347953140736,0.070794500410557,0.06814094632864]],[[0.027744580060244,0.12377317994833,0.075046144425869],[0.027801930904388,0.056572001427412,0.11479938030243],[0.084158591926098,-0.0048451027832925,-0.11074513942003]],[[-0.0236672218889,-0.058297291398048,0.0028294867370278],[-0.071868769824505,-0.0051572928205132,-0.1112943738699],[-0.027045963332057,0.093618601560593,-0.01698131673038]],[[-0.055369023233652,-0.0063837287016213,0.038927659392357],[-0.01856929063797,-0.013655558228493,-0.048620816320181],[0.0077060614712536,0.028637859970331,-0.018168954178691]],[[-0.068654097616673,0.039333295077085,0.1190719678998],[-0.04443221911788,0.035860240459442,-0.021932886913419],[0.075940653681755,0.056390546262264,0.14706474542618]],[[-0.025652261450887,0.093200869858265,-0.051620911806822],[-0.044215966016054,-0.064586281776428,0.025834245607257],[0.052922587841749,0.091237813234329,0.0081410221755505]],[[-0.024515135213733,-0.12291315197945,-0.0016664692666382],[-0.022503167390823,0.029254633933306,-0.040002536028624],[0.076401270925999,0.092351518571377,0.043708004057407]],[[0.037606243044138,0.15523870289326,-0.036482449620962],[-0.019238159060478,0.052837386727333,0.011891837231815],[-0.058544594794512,-0.023356495425105,0.024773159995675]],[[0.073516838252544,0.031469944864511,-0.0062304423190653],[0.047815673053265,-0.066924422979355,0.050711490213871],[-0.011674794368446,-0.033755090087652,-0.046802066266537]],[[-0.015401787124574,0.060956619679928,0.0492626093328],[-0.025873195379972,-0.12112177908421,-0.066847831010818],[-0.0023662839084864,-0.092726200819016,-0.06734536588192]],[[0.040312476456165,-0.031736705452204,0.043612323701382],[-0.044768251478672,-0.012901313602924,0.033003877848387],[-0.0045086136087775,-0.047648325562477,0.011820564046502]],[[0.036016572266817,-0.0090209981426597,0.036114487797022],[-0.15406677126884,-0.00010129762085853,0.077530935406685],[-0.0032576143275946,-0.063077360391617,0.029168182983994]],[[0.052946418523788,-0.035276971757412,-0.18510003387928],[0.023957304656506,0.057658284902573,-0.082250371575356],[0.015246855095029,0.013843035325408,0.06654304265976]],[[-0.04631357267499,0.0053726420737803,0.061817992478609],[0.030604768544436,0.043336227536201,-0.031475152820349],[-0.0013705041492358,-0.020002422854304,0.042088814079762]],[[0.066760495305061,-0.012833330780268,-0.035502847284079],[-0.04267730563879,0.11773760616779,0.0023479824885726],[0.05235692858696,0.013732395134866,-0.077076524496078]],[[-0.11889457702637,0.024583367630839,-0.035692315548658],[0.067269295454025,0.0041532767936587,0.018142001703382],[-0.008711289614439,0.049612481147051,0.010023456998169]],[[0.10960298776627,0.030303137376904,0.0029879789799452],[0.00010658703104127,0.099103219807148,0.029519701376557],[-0.047965932637453,0.033059395849705,0.08324345946312]],[[0.015383063815534,-0.0075207427144051,0.099912278354168],[0.020765244960785,-0.040787518024445,-0.03819826617837],[-0.085390686988831,0.0310825612396,-0.027466222643852]],[[-0.10437705367804,0.0040717963129282,0.078346684575081],[-0.019088823348284,0.045077979564667,0.11538749188185],[-0.035087566822767,-0.0066251289099455,0.0029392319265753]],[[0.077929057180882,0.081395223736763,-0.054139375686646],[-0.0039705876260996,-0.061155594885349,-0.039493095129728],[0.035298392176628,0.12773707509041,-0.053307894617319]],[[0.0067121530883014,-0.058531880378723,0.026019461452961],[0.018583146855235,-0.0044458312913775,0.04186999425292],[0.022967521101236,-0.13288660347462,-0.051866374909878]],[[0.089749351143837,0.058334745466709,-0.028895376250148],[-0.097353957593441,0.1051080673933,0.055749230086803],[-0.078100301325321,-0.13843603432178,-0.048159133642912]],[[0.010818004608154,0.035903919488192,-0.028030820190907],[-0.050393991172314,-0.034795194864273,0.086807981133461],[0.03131240606308,0.0019164726836607,-0.0060968641191721]],[[-0.024171762168407,-0.030976301059127,0.025337964296341],[-0.048049882054329,0.027287259697914,-0.17288860678673],[0.044000420719385,-0.056458503007889,0.0080048153176904]],[[0.019041722640395,0.05023841932416,0.013523336499929],[0.053221628069878,0.036500755697489,0.041980344802141],[-0.0043033245019615,0.010085236281157,-0.04422315582633]],[[0.046917840838432,-0.073924638330936,-0.03972551971674],[-0.043702106922865,0.087184324860573,0.023006865754724],[0.082415111362934,-0.015069137327373,0.11625488102436]],[[-0.096236251294613,0.0012192592257634,-0.025937201455235],[-0.034930478781462,-0.042238634079695,0.028879519551992],[-0.010736467316747,0.0085663208737969,-0.0048985010944307]],[[-0.089521758258343,0.047430377453566,-0.032168440520763],[0.044928662478924,0.033345900475979,-0.011737366206944],[0.022920249029994,0.035934653133154,-0.049777776002884]],[[0.044154345989227,-0.10350386053324,0.0051764957606792],[0.013718731701374,-0.0029869514983147,-0.035789914429188],[-0.027828395366669,-0.023279989138246,-0.025999721139669]],[[0.095559619367123,0.043001905083656,-0.10096778720617],[0.048251215368509,0.1573169529438,-0.047149207442999],[-0.067632138729095,-0.059656281024218,-0.097107373178005]],[[-0.0098790712654591,-0.03974300250411,-0.023997325450182],[0.014654088765383,-0.12293481826782,-0.098203159868717],[0.043175127357244,0.12468095123768,-0.037872727960348]],[[-0.024523317813873,0.052602808922529,-0.0021417126990855],[0.027066480368376,-0.022416654974222,-0.047539703547955],[-0.024545898661017,-0.017207512632012,-0.044889997690916]],[[0.0057059265673161,-0.028566882014275,-0.043585769832134],[-0.021875262260437,-0.031965300440788,0.011635156348348],[-0.00090060313232243,0.076424613595009,-0.026232544332743]],[[0.030193163082004,-0.031548399478197,-0.02593257278204],[0.061364240944386,-0.088912755250931,0.0077424901537597],[-0.034628581255674,0.01359751727432,-0.095945820212364]],[[-0.034945417195559,0.059026151895523,0.10661794990301],[-0.0040280558168888,-0.10241346806288,-0.023013509809971],[-0.026956453919411,-0.058458760380745,0.01250811573118]],[[-0.056622415781021,-0.04970371350646,-0.0016837997827679],[-0.025412669405341,-0.073846623301506,-0.014025268144906],[-0.096063651144505,-0.049729377031326,-0.050425868481398]],[[0.093779221177101,0.11761613935232,-0.039552614092827],[0.036476634442806,-0.0023403484374285,-0.021555276587605],[-0.030274748802185,-0.042333126068115,-0.051662497222424]],[[0.034867666661739,0.01065250299871,0.015276905149221],[-0.0087860338389874,-0.015322257764637,0.010833866894245],[-0.027330093085766,-0.035557180643082,-0.0029911007732153]],[[-0.0057727219536901,0.010943363420665,-0.025538044050336],[-0.029432481154799,-0.037807017564774,0.053595524281263],[0.036864191293716,-0.031277917325497,-0.0014861644012854]],[[-0.0053217466920614,0.028413221240044,0.057856220752001],[-0.010668131522834,-0.072972223162651,0.026837391778827],[0.054842989891768,-0.031155172735453,-0.17521530389786]],[[-0.13768920302391,-0.082840599119663,0.052960753440857],[-0.10246539860964,-0.02259024605155,-0.041703592985868],[-0.037274263799191,0.017563968896866,-0.030520228669047]],[[-0.18737770617008,-0.091625541448593,0.0098171848803759],[-0.015525286085904,0.0054640132002532,0.041484154760838],[-0.13298599421978,0.035899274051189,0.01166867185384]]],[[[0.0067906929180026,-0.036047760397196,-0.078289218246937],[0.015762476250529,0.015852324664593,-0.16829094290733],[-0.087300911545753,-0.10250864177942,0.017252519726753]],[[0.1367484331131,0.070171013474464,-0.044845059514046],[0.086496412754059,-0.009144295938313,0.010259138420224],[-0.022191498428583,0.059153277426958,-0.009822404012084]],[[0.015770567581058,0.065345652401447,-0.2511380314827],[0.048824917525053,0.040133353322744,0.017498224973679],[0.040241379290819,-0.0058184158988297,-0.0051938872784376]],[[0.01114091835916,-0.031125433743,-0.031778931617737],[0.053034275770187,0.051545184105635,0.034236561506987],[0.065972968935966,-0.12445464730263,-0.089943282306194]],[[-0.11556716263294,0.0010832480620593,-0.013003811240196],[0.026584468781948,-0.041186898946762,0.032380454242229],[-0.13797879219055,-0.0161262024194,-0.074850797653198]],[[0.028742540627718,-0.016477972269058,-0.037067852914333],[-0.029319390654564,-0.070135645568371,-0.05921657755971],[0.012709644623101,0.02288281172514,-0.01242452673614]],[[-0.041332326829433,-0.081074379384518,-0.08240120112896],[-0.078445315361023,-0.032171234488487,-0.095526486635208],[-0.0059078820049763,0.012264525517821,-0.069314323365688]],[[-0.020367292687297,0.035654850304127,0.097666122019291],[0.0089930389076471,-0.04325058311224,0.061778083443642],[0.058097690343857,0.015881665050983,0.082483254373074]],[[0.090939663350582,0.032411992549896,-0.0046377996914089],[-0.014123206026852,-0.028316775336862,-0.11697721481323],[-0.043382328003645,-0.019741145893931,-0.05659444630146]],[[0.0074649062007666,0.076282896101475,0.019427562132478],[-0.044363357126713,-0.016612809151411,0.012736573815346],[0.10202149301767,0.041466429829597,-0.044730614870787]],[[0.00013265767483972,-0.091021314263344,-0.039938967674971],[-0.022693118080497,-0.05239225551486,-0.0034834574908018],[0.043176800012589,-0.041701450943947,-0.012815682217479]],[[-0.058204047381878,-0.11916443705559,-0.13523614406586],[-0.087863475084305,-0.10056836158037,-0.12142758071423],[-0.10224507749081,-0.018961681053042,-0.051225535571575]],[[0.017096208408475,0.0052280444651842,-0.012567162513733],[-0.06198725476861,0.028791550546885,-0.012474178336561],[-0.10943342000246,-0.072084344923496,0.017810773104429]],[[0.0018832378555089,-0.013356553390622,0.015111519955099],[0.08549290150404,0.048012476414442,0.088522404432297],[0.0018098016735166,-0.0095213912427425,-0.053498707711697]],[[0.02554302662611,-0.015102469362319,-0.0022051171399653],[-0.025618962943554,0.013910698704422,-0.0099153555929661],[0.038865655660629,0.034643206745386,-0.024773098528385]],[[-0.14717718958855,-0.043885506689548,-0.060674402862787],[0.012455884367228,-0.051886685192585,0.04216992110014],[-0.010717591270804,-0.0027882580179721,-0.0080024022608995]],[[-0.029189953580499,-0.035389341413975,-0.036002106964588],[-0.039952807128429,0.026143219321966,0.049079403281212],[0.061913203448057,0.036301925778389,0.042753044515848]],[[-0.043151069432497,-0.025924483314157,-0.007208947557956],[-0.086937472224236,-0.037061359733343,-0.082142218947411],[0.11570919305086,0.013990011997521,-0.027797974646091]],[[-0.060863330960274,0.049089841544628,0.14005389809608],[0.0166594106704,-0.0088212005794048,-0.016840167343616],[0.048117652535439,0.046387191861868,-0.017482357099652]],[[0.054871216416359,-0.024835482239723,-0.1192425340414],[-0.0005632265820168,0.027313113212585,-0.048458140343428],[0.050446350127459,-0.011332929134369,0.043110426515341]],[[0.012545666657388,0.01898193731904,-0.0025452370755374],[0.016344122588634,-0.033418849110603,0.040943179279566],[0.012203211896122,-0.015676809474826,-0.039573688060045]],[[-0.088436707854271,0.12773701548576,0.025931142270565],[-0.014962451532483,0.017711024731398,-0.11815214157104],[-0.039354577660561,-0.04486021026969,0.011389338411391]],[[0.050217561423779,-0.071747571229935,0.006317756138742],[0.022935377433896,0.019615994766355,0.026903467252851],[0.11083211004734,-0.015699693933129,0.0050779348239303]],[[-0.060387391597033,0.008186518214643,0.1584270298481],[-0.058753050863743,0.025638280436397,0.13952760398388],[0.0033967250492424,-0.016175189986825,-0.072067350149155]],[[-0.033270001411438,0.079482890665531,-0.039346858859062],[0.015472635626793,-0.00024643141659908,0.047662366181612],[-0.0096722263842821,-0.0067030298523605,-0.0053283511660993]],[[0.016271525993943,0.029155595228076,0.063549354672432],[-0.029061725363135,-0.017526194453239,0.028248712420464],[0.052248131483793,0.043133921921253,0.052875056862831]],[[0.0019216538639739,-0.034399781376123,0.010366245172918],[-0.0070195775479078,-0.01559922285378,0.019812049344182],[0.10176594555378,0.0093242488801479,-0.041021712124348]],[[-0.084007240831852,-0.025808356702328,-0.032264873385429],[-0.060416337102652,0.070965133607388,-0.046357031911612],[-0.058176264166832,-0.075770080089569,0.01450923550874]],[[-0.038363061845303,-0.049011513590813,-0.023486241698265],[0.0034799242857844,0.014573007822037,-0.026483030989766],[-0.028415273874998,-0.037765454500914,-0.047082360833883]],[[-0.0070612691342831,0.015158077701926,-0.045062109827995],[0.074162609875202,0.041192356497049,0.014504541642964],[0.062140706926584,0.072653837502003,0.02691395021975]],[[-0.1314681917429,0.036853712052107,-0.0086255548521876],[0.078664012253284,-0.042388342320919,-0.019876571372151],[0.11902328580618,0.020439177751541,-0.00020024544210173]],[[0.10211941599846,-0.05802259221673,-0.080392301082611],[0.025621620938182,-0.01495264004916,-0.027443986386061],[-0.0072949836030602,-0.016690181568265,0.019886264577508]],[[-0.020460629835725,-0.037692844867706,-0.014872362837195],[0.011897264048457,-0.060609523206949,0.0077593140304089],[-0.018486224114895,-0.066242456436157,-0.00093231629580259]],[[0.030328812077641,0.03800667449832,0.070606917142868],[0.037428874522448,-0.021254817023873,-0.02592720836401],[0.063731126487255,-0.050888881087303,-0.020690510049462]],[[-0.10848031193018,-0.15533252060413,-0.1573116928339],[-0.095323130488396,-0.11181804537773,-0.054327551275492],[-0.055933959782124,-0.07184886187315,0.022254949435592]],[[0.043923988938332,0.082862079143524,0.041305098682642],[0.09074480086565,0.066933080554008,0.040639381855726],[-0.093203008174896,-0.023798095062375,-0.054783366620541]],[[0.013412420637906,0.077777780592442,-0.0030562104657292],[-0.045641850680113,0.038501515984535,-0.061595942825079],[-0.057959005236626,-0.056147508323193,-0.0072512440383434]],[[-0.072636127471924,-0.014155469834805,-0.099008545279503],[-0.044042132794857,0.032054957002401,0.012831651605666],[0.097960822284222,0.16871422529221,0.046638261526823]],[[-0.094863183796406,-0.03831847012043,-0.085451550781727],[-0.053153984248638,-0.02201709151268,0.0076125543564558],[-0.036178149282932,0.0020368490368128,0.014849483966827]],[[-0.011565130203962,0.024661330506206,-0.088964872062206],[0.10501173138618,-0.011984646320343,0.014877239242196],[-0.00097299343906343,0.069190688431263,-0.02864833548665]],[[-0.10068945586681,-0.08508113026619,-0.10952534526587],[-0.035758920013905,-0.02311179600656,0.032223470509052],[0.11779369413853,0.011352400295436,-0.040391933172941]],[[-0.12611468136311,-0.06600034236908,-0.011459567584097],[-0.073813259601593,-0.016694903373718,-0.086118683218956],[0.049364563077688,0.056275587528944,0.0020679493900388]],[[0.14185544848442,-0.0043638837523758,0.039626780897379],[0.06049033254385,-0.088555447757244,0.087819270789623],[0.015944894403219,-0.001934374216944,-0.025510070845485]],[[-0.058760471642017,-0.1274785399437,-0.18886397778988],[-0.08620984852314,0.034868020564318,-0.089338250458241],[-0.12774462997913,-0.072841018438339,-0.10572874546051]],[[-0.046104826033115,0.039839446544647,0.0078941313549876],[0.013522428460419,0.0090528493747115,-0.041027743369341],[0.072302684187889,0.026424419134855,0.0084968870505691]],[[0.071968719363213,-0.0041565932333469,0.065005443990231],[0.036042835563421,-0.048752799630165,0.040184561163187],[0.07130978256464,0.018975554034114,0.064270012080669]],[[0.02633542008698,-0.035458292812109,-0.06311871111393],[-0.0068239569664001,-0.065808616578579,0.0044292956590652],[0.059574007987976,0.054285299032927,0.047912575304508]],[[-0.063113577663898,-0.01630493067205,-0.064399220049381],[-0.029825083911419,-0.086123153567314,-4.7481276851613e-05],[-0.022090984508395,0.027025921270251,-0.12357345223427]],[[0.023378025740385,0.062586069107056,-0.018666684627533],[0.03811626508832,-0.0109554938972,0.0062093078158796],[-0.11148770153522,-0.051394175738096,0.032414518296719]],[[0.024075176566839,0.042894419282675,-0.0079429382458329],[0.014194534160197,0.12251877784729,-0.049270365387201],[-0.052845720201731,-0.10946199297905,-0.018109424039721]],[[0.0052094687707722,0.07262396812439,-0.019189979881048],[0.053141091018915,0.013653348200023,0.053460273891687],[-0.023283701390028,-0.09174744784832,0.040255781263113]],[[-0.061453811824322,0.091527588665485,0.076489269733429],[0.12697394192219,0.02949901111424,0.012963359244168],[0.096301093697548,0.065647304058075,0.0032498117070645]],[[-0.016164442524314,-0.057922452688217,0.029103796929121],[0.0097898012027144,-0.091902665793896,0.012381287291646],[0.012899138964713,0.046870712190866,0.060573250055313]],[[-0.001607479294762,-0.01593423448503,-0.034628972411156],[0.03491086512804,-0.10812677443027,-0.022823620587587],[0.041743818670511,0.017201945185661,0.0077012744732201]],[[0.012451832182705,-0.0055467546917498,-0.0059900521300733],[0.062581419944763,-0.029472792521119,-0.15133768320084],[-0.0079673947766423,-0.0096828835085034,-0.045570213347673]],[[-0.1099547073245,-0.12982472777367,-0.057269185781479],[-0.14277385175228,-0.021909138187766,0.016662092879415],[-0.063607908785343,0.019747478887439,-0.020741607993841]],[[0.051079303026199,-0.0047087268903852,-0.097230926156044],[0.043728042393923,-0.071567788720131,-0.071107871830463],[-0.15825019776821,-0.031958047300577,-0.015252985991538]],[[0.01468488201499,-0.033536497503519,-0.060187876224518],[0.035471469163895,0.0091284411028028,0.0033296262845397],[0.011271198280156,-0.073668792843819,-0.025287946686149]],[[0.032546319067478,-0.060525253415108,0.0063465521670878],[0.034656692296267,0.063062816858292,0.079337164759636],[-0.082518979907036,-0.026473781093955,-0.019485274329782]],[[-0.015985148027539,0.013744574971497,0.050545301288366],[0.023116758093238,0.0090079829096794,0.051653288304806],[-0.094703912734985,-0.010392989031971,-0.053373508155346]],[[-0.003377279965207,0.010293937288225,0.018912857398391],[-0.077501706779003,-0.0030765773262829,-0.041836831718683],[-0.11234559863806,-0.046082105487585,0.034827593713999]],[[-0.045954216271639,-0.057163458317518,-0.06706740707159],[-0.039023768156767,-0.10812696814537,-0.079496428370476],[-0.037821013480425,-0.018806664273143,-0.010017786175013]],[[0.13047410547733,0.005137512460351,0.019816517829895],[-0.023084197193384,0.0042157261632383,0.011626997962594],[0.026039108633995,0.0071168267168105,0.027827374637127]],[[-0.10469107329845,-0.095001243054867,-0.13446944952011],[-0.086259126663208,-0.018735006451607,-0.10514169186354],[0.019776018336415,0.045923728495836,-0.014632235281169]]],[[[-0.031906317919493,-0.013265943154693,0.03736674040556],[0.03361638635397,0.025872064754367,-0.040355246514082],[-0.046036507934332,-0.1984631717205,-0.021447405219078]],[[-0.043818645179272,-0.023170022293925,0.0011282936902717],[-0.085314892232418,-0.012702546082437,0.009638512507081],[-0.064018473029137,-0.075451642274857,-0.035237208008766]],[[0.018477408215404,0.094696640968323,0.083544760942459],[-0.0039591756649315,-0.055762689560652,-0.11672455817461],[-0.10684022307396,-0.21370425820351,-0.10124901682138]],[[-0.1080621778965,0.07265006005764,0.087157942354679],[-0.030901696532965,-0.06646778434515,-0.0041631232015789],[-0.054775360971689,-0.072408065199852,-0.010781543329358]],[[0.013592866249382,0.10354191064835,0.028276666998863],[-0.05300172790885,0.068353272974491,-0.023977410048246],[0.049872674047947,0.057022787630558,0.074915498495102]],[[0.051776442676783,-0.0064543285407126,0.051757216453552],[-0.027868704870343,0.039075098931789,0.024920104071498],[-0.035367909818888,-0.039812322705984,-0.088692136108875]],[[0.044326141476631,0.08317980915308,-0.061284895986319],[-0.050163108855486,0.030368806794286,-0.054436437785625],[-0.10068643838167,-0.070374630391598,-0.035830363631248]],[[-0.11269602924585,-0.059542082250118,-0.015105998143554],[-0.054294113069773,-0.028867932036519,0.0085338680073619],[-0.088354535400867,-0.074063897132874,0.036676567047834]],[[-0.008750326000154,-0.020739542320371,0.036193903535604],[0.045375812798738,0.05052425339818,0.03097702562809],[-0.10817026346922,-0.057292554527521,0.0029088833834976]],[[0.12836608290672,0.030885668471456,-0.0076990867964923],[0.022857232019305,-0.031376793980598,-0.038522236049175],[0.013466943055391,0.054734472185373,0.01768396794796]],[[-0.016032334417105,0.025635121390224,-0.030009569600224],[-0.023974061012268,-0.032874509692192,-0.0088464980944991],[-0.12169613689184,0.057655859738588,0.012971413321793]],[[0.17552556097507,0.054407216608524,-0.020422738045454],[0.070545047521591,0.020580617710948,0.010130320675671],[0.046792231500149,0.022933514788747,0.048090927302837]],[[-0.00693568168208,0.013085743412375,-0.048981435596943],[0.037766557186842,-0.028883829712868,0.029573125764728],[-0.10407458245754,0.014856751076877,0.040805421769619]],[[0.035908840596676,0.067861177027225,-0.032867968082428],[0.030098363757133,0.017268791794777,-0.01727051101625],[0.0087127815932035,-0.0073806000873446,0.013797372579575]],[[-0.029695147648454,-0.027036247774959,0.018004911020398],[-0.039410561323166,-0.16353572905064,-0.0020516067743301],[-0.0065967403352261,-0.11781125515699,-0.044585917145014]],[[0.0028139187488705,0.067816317081451,-0.0072430828586221],[-0.020109249278903,-0.0045789275318384,-0.0097739649936557],[-0.027947356924415,-0.018570283427835,-0.0090471617877483]],[[-0.10281698405743,0.053024679422379,-0.025416323915124],[-0.032810032367706,0.012126775458455,-0.053938958793879],[-0.035320803523064,-0.11852120608091,-0.075631149113178]],[[0.037541672587395,0.07425644248724,-0.015377575531602],[-0.081478551030159,-0.023553494364023,-0.094670228660107],[-0.096808724105358,0.0012307580327615,-0.10571926087141]],[[0.09343433380127,-0.018081391230226,-0.10605800896883],[0.011534209363163,0.027782298624516,-0.075641311705112],[0.058350279927254,-0.04261127486825,-0.032400563359261]],[[0.067110158503056,0.0098814852535725,0.026756521314383],[-0.006141965277493,0.025591490790248,-0.004976105876267],[-0.023489875718951,0.017973106354475,-0.068314433097839]],[[0.05759859457612,0.025894956663251,0.044124886393547],[0.0070619261823595,0.021212404593825,0.018912918865681],[-0.039332669228315,0.044937219470739,-0.0088296374306083]],[[-0.019203076139092,-0.00030437725945376,-0.062886625528336],[-0.065557070076466,0.075348496437073,-0.033846747130156],[-0.046574871987104,0.011902065016329,-0.03331795707345]],[[-0.086520470678806,-0.014093358069658,0.073543526232243],[-0.10080041736364,-0.050149004906416,0.055774096399546],[-0.18463051319122,-0.18549437820911,-0.030400574207306]],[[0.028970101848245,-0.016238741576672,-0.0087615642696619],[0.020877351984382,0.067842818796635,0.098828040063381],[0.037165842950344,0.13515242934227,0.044130332767963]],[[0.015620088204741,-0.020657436922193,-0.024283366277814],[0.06309175491333,-0.037923611700535,0.0094796819612384],[0.0055540865287185,0.056169409304857,-0.040209654718637]],[[0.099348001182079,0.06237181648612,0.052360307425261],[0.0055935024283826,-0.024175902828574,-0.019791875034571],[0.011211476288736,0.0095577025786042,-0.012111612595618]],[[0.026927262544632,-0.026215644553304,0.063591189682484],[-0.047585055232048,-0.018708122894168,-0.037679653614759],[-0.15154923498631,-0.026083393022418,-0.044449839740992]],[[-0.061394657939672,-0.066485919058323,-0.055209837853909],[-0.01801772788167,0.0048614582046866,0.021050157025456],[0.046385820955038,-0.11223364621401,-0.0059729726053774]],[[-0.023441830649972,0.049065206199884,0.032212343066931],[-0.093076206743717,0.036987997591496,0.060472443699837],[-0.036533154547215,-0.0317267999053,0.01751622185111]],[[-0.083187967538834,-0.016961364075541,0.02191942743957],[-0.12883426249027,0.0031719831749797,-0.07317578792572],[-0.061069585382938,-0.0055842292495072,-0.060513567179441]],[[0.0067188781686127,0.039687782526016,0.01004387717694],[0.033056009560823,0.018961390480399,0.0021338879596442],[-0.03881362080574,0.0011035441420972,0.046049982309341]],[[0.11439753323793,-0.066343374550343,-0.015628315508366],[0.0062698484398425,0.0077583263628185,0.040996871888638],[-0.10053084790707,0.003545208601281,0.058901522308588]],[[-0.047871805727482,0.046525131911039,0.044952239841223],[0.045061729848385,-0.024161107838154,0.0015972105320543],[0.0074490299448371,-0.02030535787344,-0.068499438464642]],[[0.033585503697395,0.06851714849472,-0.045675717294216],[0.070591457188129,-0.16921383142471,0.051708150655031],[0.093185886740685,-0.14841850101948,-0.036123707890511]],[[0.030173018574715,-0.024013252928853,0.039504177868366],[-0.075757414102554,-0.023157985880971,0.011112155392766],[-0.019368477165699,-0.12268202006817,-0.077572114765644]],[[0.022938065230846,0.063181594014168,-0.016601864248514],[-0.030740736052394,-0.024877777323127,-0.077514618635178],[-0.066196352243423,-0.050230827182531,0.015036991797388]],[[0.0050444807857275,0.019451223313808,-0.038635816425085],[-0.023302925750613,0.017453994601965,0.00022094773885328],[0.13016174733639,-0.0004947055131197,-0.028541970998049]],[[-0.076254233717918,-0.062200367450714,0.00045202203909867],[-0.14781844615936,-0.048860069364309,0.028032470494509],[-0.079431243240833,-0.092499122023582,0.0053712758235633]],[[-0.037043146789074,-0.18191051483154,-0.010602079331875],[0.010358855128288,-0.038221035152674,-0.013575962744653],[-0.0057401261292398,-0.10670311748981,-0.053220637142658]],[[-0.028577763587236,-0.21276080608368,-0.057616431266069],[0.011309036053717,-0.038915857672691,-0.0011883253464475],[-0.073835924267769,-0.060478381812572,-0.039162658154964]],[[0.055395714938641,-0.025479501113296,-0.049928773194551],[-0.080556996166706,-0.0089996820315719,-0.022206675261259],[-0.064103774726391,-0.10801932960749,0.012293827719986]],[[0.028711400926113,-0.053893443197012,0.013478862121701],[0.041008185595274,-0.061842124909163,-0.015588376671076],[-0.011356430128217,-0.010152765549719,-0.064861968159676]],[[-0.01295948587358,-0.074918694794178,0.065832994878292],[-0.0044436338357627,0.032748457044363,-0.018612174317241],[0.055864941328764,0.054500810801983,-0.025992793962359]],[[-0.06079863011837,0.032414890825748,0.010545766912401],[-0.035530377179384,-0.015415094792843,0.035498663783073],[0.095518544316292,0.040482863783836,-0.048059850931168]],[[0.0087665300816298,0.098219685256481,0.041597489267588],[0.0012746469583362,0.075261831283569,-0.042117435485125],[-0.18292348086834,0.051909472793341,-0.085730537772179]],[[-0.089604258537292,-0.10218229144812,-0.035773504525423],[0.0041364254429936,-0.075522042810917,-0.050177522003651],[-0.061627276241779,-0.12791959941387,-0.018585335463285]],[[-0.055755369365215,-0.013108705170453,-0.0025477211456746],[7.0937923737802e-05,0.026573467999697,0.0082749901339412],[-0.011232524178922,-0.12057533860207,0.05013120174408]],[[-0.045447818934917,0.019237291067839,-0.0066113783977926],[-0.0066228746436536,-0.0005149026401341,0.010833624750376],[0.012438907288015,-0.12309661507607,-0.055902443826199]],[[-0.015634005889297,0.088342428207397,0.017100909724832],[-0.041088879108429,0.035601802170277,0.0041421954520047],[-0.062897458672523,-0.074726030230522,-0.053305126726627]],[[0.015336610376835,-0.010582300834358,-0.049359355121851],[0.029809176921844,0.022052967920899,-0.018275631591678],[0.063897199928761,-0.027628537267447,-0.054388090968132]],[[0.02943461574614,-0.00063767418032512,-0.0039926306344569],[-0.026879260316491,0.032430451363325,-0.0034056268632412],[-0.0040011364035308,-0.0073102121241391,0.016412662342191]],[[0.02422983944416,0.054472893476486,-0.014247965998948],[-0.00011919171083719,0.10854961723089,0.015103040263057],[0.075085625052452,0.08180808275938,0.0028755841776729]],[[-0.081221863627434,0.074653893709183,-0.065727256238461],[-0.12244614958763,-0.02603998593986,-0.019525399431586],[-0.059369653463364,-0.060270775109529,-0.022138305008411]],[[0.11157688498497,-0.043416302651167,-0.030565977096558],[0.038882251828909,-0.061648327857256,-0.0047059003263712],[-0.046318903565407,0.062282096594572,-0.026492517441511]],[[-0.040938388556242,-0.077264748513699,-0.055049560964108],[0.081340253353119,-0.029529571533203,-0.024764547124505],[0.068996906280518,-0.058595634996891,-0.074354335665703]],[[0.045849964022636,0.031009335070848,0.027269968762994],[0.033799827098846,-0.060872487723827,0.0033967772033066],[-0.095472253859043,0.030525324866176,-0.0027449487242848]],[[0.076594687998295,-0.035739067941904,-0.06991495937109],[0.068402610719204,-0.00091041257837787,-0.016866583377123],[0.071667224168777,-0.031648088246584,0.015561216510832]],[[0.012741696089506,0.012377856299281,0.058476530015469],[-0.010373141616583,0.04511683434248,0.032005570828915],[-0.026612041518092,0.031351141631603,-0.086211167275906]],[[-0.0053386366926134,-0.094757914543152,-0.0027691277209669],[0.065211802721024,0.1622858941555,0.037617638707161],[0.10758343338966,0.1333536952734,0.064341552555561]],[[-0.058699373155832,0.04250556230545,-0.0076167862862349],[-0.0045633348636329,0.032247308641672,-0.015841031447053],[0.020480688661337,-0.013318638317287,0.023312073200941]],[[0.0077321659773588,0.027999997138977,0.011324158869684],[0.04323497787118,0.013036840595305,0.046549312770367],[-0.058826863765717,-0.0044824630022049,-0.036733996123075]],[[0.085226148366928,-0.04975538700819,0.073639407753944],[0.034374315291643,-0.082548812031746,0.0034042466431856],[0.052468251436949,0.016732269898057,0.018756832927465]],[[-0.047404143959284,-0.0040687681175768,0.014936146326363],[0.041793502867222,0.021477630361915,0.029567755758762],[-0.07708777487278,-0.01676369458437,0.051896404474974]],[[0.058739643543959,-0.00034541948116384,-0.0018909140489995],[-0.077698692679405,0.055721312761307,0.0010361365275458],[0.036109246313572,-0.061626121401787,-0.051074288785458]]],[[[0.00024162154295482,-0.061326377093792,0.038675118237734],[0.0678790807724,0.11496509611607,-0.082215912640095],[0.016427675262094,-0.079937264323235,-0.088335953652859]],[[0.0088816359639168,0.046809051185846,-0.011528475210071],[0.0029742256738245,-0.010811956599355,-0.093877419829369],[-0.057965725660324,-0.072460278868675,-0.024475352838635]],[[0.041280832141638,0.039205092936754,-0.11525782197714],[-0.00041154725477099,-0.0775490924716,-0.010508499108255],[0.043383110314608,-0.0023692706599832,-0.048039715737104]],[[-0.0089180544018745,-0.018638012930751,-0.015500926412642],[-0.079596295952797,-0.004844500683248,0.0012140980688855],[0.052512526512146,-0.031579088419676,-0.00061552418628708]],[[-0.042268507182598,0.019219113513827,-0.018343342468143],[0.079017162322998,-0.052573133260012,0.071685880422592],[0.037728242576122,0.0085279224440455,0.022277014330029]],[[0.033575478941202,0.055945802479982,-0.060771465301514],[0.035060148686171,0.047110822051764,-0.058491993695498],[-0.031735669821501,0.036980472505093,-0.016963876783848]],[[0.032804496586323,0.017704194411635,0.081870637834072],[0.059169817715883,-0.009816019795835,-0.091185055673122],[0.048304177820683,-0.037312101572752,-0.021520420908928]],[[-0.012219263240695,0.0058680647052824,-0.022226992994547],[-0.03072290122509,0.022867254912853,0.0043292506597936],[-0.061423379927874,-0.0099590457975864,-0.087743856012821]],[[-0.022640205919743,-0.036585673689842,-0.017607375979424],[0.037705317139626,-0.031625129282475,-0.10581993311644],[0.062445364892483,0.06989711523056,-0.022848382592201]],[[-0.0065364059992135,-0.036305468529463,0.0053984574042261],[0.014219533652067,0.033042773604393,-0.00018400271073915],[-0.047698099166155,-0.08553833514452,-0.049948189407587]],[[-0.024480437859893,0.0084120137616992,0.0230777785182],[-0.025255367159843,-0.0063833063468337,-0.065741918981075],[-0.028096299618483,-0.010543379001319,0.030379725620151]],[[0.01442043390125,0.051082484424114,-0.001927531324327],[0.017703022807837,-0.0001508108980488,-0.033944748342037],[-0.0060393144376576,-0.011496361345053,-0.0016886678058654]],[[0.0075928443111479,-0.0093571078032255,0.079131908714771],[0.10058264434338,0.075539864599705,0.038160972297192],[0.10727442055941,0.037790879607201,0.02131793089211]],[[0.07057823985815,0.038645166903734,0.035282932221889],[-0.015950832515955,0.066304989159107,-0.033157702535391],[-0.011576950550079,-0.0093675665557384,0.030188485980034]],[[0.026837049052119,-0.0022732445504516,0.040422741323709],[-0.024310033768415,0.0073726382106543,0.017062596976757],[0.072999514639378,0.062072146683931,-0.0077538890764117]],[[0.017084447667003,0.059307593852282,-0.00077044969657436],[-0.042536437511444,0.077788308262825,0.035322301089764],[0.053570076823235,0.039106424897909,0.0063575333915651]],[[0.046678625047207,0.13423152267933,0.0024147995281965],[0.027304895222187,0.006768252234906,0.068851336836815],[-0.081811919808388,0.019847212359309,0.079915262758732]],[[0.0019366827327758,-0.019201274961233,-0.055531226098537],[0.0096964780241251,-0.048420190811157,-0.0062405187636614],[0.059471644461155,0.0048952014185488,-0.018093571066856]],[[-0.030382627621293,0.07489850372076,-0.081491596996784],[0.04942836612463,-0.020639253780246,-0.026271233335137],[-0.0067737465724349,-0.0057188607752323,0.028733981773257]],[[0.046841751784086,-0.0022503312211484,0.010255851782858],[0.010028918273747,-0.035611249506474,0.036637999117374],[0.0068242866545916,0.035215120762587,-0.049221385270357]],[[0.0045203762128949,0.0065185641869903,-0.03621194511652],[0.023345161229372,-0.068931452929974,0.034221827983856],[-0.0066269915550947,0.035665802657604,0.014118284918368]],[[0.084385670721531,-0.067280247807503,0.010920712724328],[0.006076626945287,0.11953585594893,-0.039175964891911],[-0.0042374772019684,-0.0065770414657891,0.033508308231831]],[[0.01300257910043,-0.054720003157854,0.01761082559824],[-0.040641382336617,0.12750333547592,-0.051157150417566],[0.075892262160778,0.044664170593023,0.030108766630292]],[[-0.015267339535058,0.047378696501255,0.019476305693388],[0.094657309353352,0.0059508476406336,0.0028471392579377],[0.05665211006999,0.045935779809952,0.17756922543049]],[[0.015224388800561,0.0122134918347,0.030148319900036],[0.044714584946632,0.087632246315479,0.0071081374771893],[-0.07163218408823,0.013188327662647,0.012879613786936]],[[0.0082193333655596,0.058077611029148,-0.012422923929989],[0.037513956427574,-0.0045355069451034,-0.0069165085442364],[-0.0083187790587544,-0.016327999532223,-0.0728460252285]],[[-0.042527414858341,-0.021993743255734,-0.024147089570761],[0.049377284944057,0.13312864303589,0.05287216603756],[-0.084629468619823,0.054202642291784,-0.046056099236012]],[[-0.00059858791064471,-0.0022683716379106,0.0088834445923567],[-0.0010254516964778,0.016957961022854,-0.018810160458088],[0.00093794811982661,0.056917179375887,0.01012671738863]],[[0.025513650849462,-0.0096416501328349,-0.088281311094761],[-0.044671181589365,-0.012777027674019,0.00024643246433698],[-0.10580510646105,0.09988322108984,0.04067425057292]],[[0.020493848249316,0.011807159520686,0.041932202875614],[-0.021321922540665,0.00067048450000584,-0.072884745895863],[-0.034444782882929,0.0091685308143497,-0.018894873559475]],[[0.024691274389625,-0.11127991229296,-0.085165567696095],[-0.063785567879677,-0.055967014282942,0.014008042402565],[-0.024431295692921,-0.022038189694285,0.0328279286623]],[[0.02210196107626,-0.065476208925247,-0.033984515815973],[0.024492038413882,0.068501323461533,0.08081229031086],[0.053107842803001,-0.0026046917773783,-0.058299195021391]],[[0.030170990154147,0.023801647126675,-0.027796974405646],[-0.0050257118418813,0.057004641741514,-0.0086388755589724],[-0.054293882101774,0.0056324927136302,-0.081567488610744]],[[-0.012890739366412,0.071472115814686,-0.10658014565706],[0.13205087184906,0.077938996255398,-0.0089694326743484],[-0.077633440494537,-0.031111212447286,-0.001681683701463]],[[-0.012153601273894,0.0036177353467792,0.049570456147194],[0.012836748734117,0.040619999170303,0.018085503950715],[0.038291793316603,0.0085874823853374,0.021076137199998]],[[-0.037413600832224,0.06018115952611,0.011758399195969],[-0.00058876600814983,-0.042961891740561,0.0042321803048253],[0.040865652263165,-0.010752158239484,0.0042333621531725]],[[0.037124462425709,0.046723276376724,0.0038818626198918],[-0.021236075088382,0.032540742307901,0.0071672960184515],[0.0037951543927193,0.071929074823856,0.021305005997419]],[[0.034586492925882,0.010625137016177,0.028067288920283],[0.025278564542532,-0.052613705396652,-0.0019615734927356],[0.060334902256727,0.038002397865057,0.0011221952736378]],[[-0.048123195767403,0.10187328606844,-0.0014666548231617],[0.043431829661131,0.014039780013263,-0.02709574252367],[-0.018069392070174,-0.01159867271781,0.0060214279219508]],[[-0.0080252774059772,-0.010979374870658,0.039315856993198],[0.11281528323889,0.017422951757908,0.087063647806644],[-0.0088881151750684,0.0011062290286645,-0.0053738220594823]],[[0.010100710205734,0.030839251354337,0.087251141667366],[0.049088906496763,0.01206392608583,-0.0068868109956384],[-0.061024591326714,0.00029297359287739,0.021160043776035]],[[0.017092172056437,0.0067664519883692,0.0059278635308146],[0.0084463804960251,0.015861185267568,-0.015642751008272],[0.01665853895247,0.063094228506088,0.0047474936582148]],[[-0.0067363767884672,0.033911153674126,0.071543417870998],[0.041992485523224,0.076703615486622,0.042954389005899],[-0.017869440838695,0.058598805218935,0.071301437914371]],[[-0.0059939841739833,0.0084764417260885,0.038101300597191],[0.028557375073433,-0.021893255412579,-0.032478172332048],[-0.042193360626698,0.019877759739757,-0.024538543075323]],[[-0.00167343148496,0.033367119729519,-0.0013354497496039],[-0.050266858190298,0.035241283476353,-0.020064525306225],[-0.081742376089096,-0.03535570204258,0.0072390944696963]],[[0.061036132276058,-0.029509657993913,0.031756140291691],[-0.048676509410143,-0.018442621454597,0.053304944187403],[-0.09401673823595,-0.084722921252251,-0.032590109854937]],[[-0.036812759935856,-0.037708152085543,0.0073296171613038],[0.034282252192497,-0.027152881026268,-0.034021358937025],[0.035329423844814,-0.0054443096742034,-0.01598428748548]],[[-0.034514248371124,0.018984412774444,-0.027682883664966],[0.087614186108112,-0.025119077414274,-0.0084702791646123],[0.017676467075944,-0.046344716101885,0.071017049252987]],[[0.0085081765428185,0.039058059453964,0.049977745860815],[0.019959768280387,-0.044579554349184,-0.026649506762624],[0.0052486821077764,-0.018626352772117,0.043165076524019]],[[0.039491221308708,-0.028760192915797,-0.036336794495583],[0.06393688172102,0.015445640310645,0.0080031314864755],[0.046257585287094,-0.03114128485322,0.07464449852705]],[[-0.056030072271824,-0.072145774960518,0.042522974312305],[0.00095780217088759,0.049414683133364,0.02672041207552],[0.0070494525134563,-0.065762087702751,-0.040194749832153]],[[0.0081579945981503,0.063836328685284,-0.017689120024443],[0.06699001789093,-0.014526492916048,0.095990113914013],[0.053400430828333,0.14827351272106,0.076514840126038]],[[-0.081004478037357,-0.01617837511003,0.043861638754606],[-0.087564043700695,0.0099646840244532,0.033400360494852],[0.024431018158793,0.075748987495899,-0.021185928955674]],[[0.04042848572135,0.0597162283957,0.081352859735489],[0.0053283902816474,-0.05237203091383,-0.030295144766569],[-0.013545863330364,0.004092404153198,-0.021783124655485]],[[-0.058477137237787,0.0088857626542449,0.024661704897881],[-0.0061267553828657,-0.026089150458574,-0.0035788887180388],[-0.010357660241425,-0.013450644910336,0.080152414739132]],[[-0.0064370450563729,-0.037442252039909,-0.014756189659238],[0.057031221687794,-0.015618783421814,0.014851959422231],[-0.0055544502101839,-0.019708348438144,-0.0021461735013872]],[[0.02758758328855,0.0059427442029119,-0.030150163918734],[0.0041016498580575,-0.042310621589422,-0.057708103209734],[-0.083209566771984,0.021900640800595,-0.020979534834623]],[[0.027170836925507,0.016364151611924,0.038516029715538],[-0.036753185093403,0.065040774643421,0.01139282528311],[-0.023907696828246,0.082159742712975,0.055282726883888]],[[0.090054780244827,0.063818842172623,0.016608200967312],[0.05493014678359,-0.036046963185072,0.023315845057368],[-0.044168926775455,0.076446704566479,0.019898293539882]],[[0.0051450491882861,-0.023888824507594,-0.016214609146118],[-0.0099983317777514,0.0046711126342416,-0.046927589923143],[0.031721014529467,0.010907745920122,0.081073246896267]],[[-0.013306959532201,0.0040345266461372,-0.020903265103698],[0.048926562070847,0.061172019690275,-0.072347439825535],[0.054486837238073,0.058560028672218,-0.014846293255687]],[[0.084866099059582,0.0295903775841,0.059127274900675],[-0.0098984017968178,0.06152718514204,0.0010055016027763],[0.0036796359345317,-0.034848690032959,-0.063562139868736]],[[-0.015215593390167,0.085164934396744,0.015883723273873],[0.000286832859274,-0.0083684800192714,-0.041394632309675],[-0.010172930546105,-0.012329405173659,0.053644847124815]],[[-0.049354109913111,0.013697834685445,0.066225610673428],[0.0072628259658813,-0.035480584949255,0.01297808252275],[-0.044726047664881,0.016483465209603,-0.059447828680277]]],[[[-0.076371021568775,0.010362199507654,-0.005214904434979],[-0.05762143433094,0.020658696070313,0.047781012952328],[0.063676171004772,-0.090877518057823,-0.021405193954706]],[[0.10423393547535,0.039515238255262,-0.021348550915718],[0.013926696032286,-0.043067999184132,-0.1085664331913],[0.11432853341103,0.068712167441845,-0.038910560309887]],[[-0.19717420637608,0.030676433816552,-0.020833095535636],[0.050106633454561,0.001802226761356,0.094127342104912],[-0.0044644172303379,0.012770204804838,0.089437916874886]],[[-0.023242853581905,-0.0091121066361666,-0.046087220311165],[-0.012504126876593,-0.023943247273564,-0.010955028235912],[-0.013806722126901,0.053160775452852,0.03182416036725]],[[0.0067389975301921,0.015548195689917,-0.068998083472252],[-0.054493445903063,-0.10361412167549,-0.075100734829903],[0.015168720856309,0.064285904169083,-0.062305442988873]],[[-0.037293113768101,-0.029176868498325,0.019632561132312],[0.054987844079733,0.037576407194138,0.020089318975806],[0.010593983344734,-0.082235716283321,-0.046935930848122]],[[-0.13348931074142,0.0048027685843408,-0.012038865126669],[0.099092938005924,0.025010792538524,0.11638344079256],[-0.028539255261421,-0.02040396630764,-0.043196309357882]],[[0.0767667517066,0.087071970105171,0.048314318060875],[0.11019287258387,-0.091640040278435,-0.027519037947059],[-0.0073401597328484,0.093089126050472,0.03251339122653]],[[-0.084649175405502,-0.024681471288204,0.021516725420952],[-0.11075340211391,0.012263769283891,0.047578170895576],[0.061296191066504,-0.063200019299984,0.021663600578904]],[[-0.030886065214872,-0.043291971087456,-0.055710408836603],[-0.031204454600811,0.036577310413122,-0.10564576089382],[0.022341817617416,-0.010666309855878,0.0089591238647699]],[[-0.12639148533344,-0.0048858914524317,-0.011035216972232],[-0.002690608613193,0.054769977927208,-0.033462401479483],[-0.014906135387719,0.017101474106312,0.0039609544910491]],[[0.026854075491428,0.041943602263927,-0.026651043444872],[0.0049415044486523,0.049009650945663,-0.025138391181827],[-0.027960432693362,-0.070986308157444,0.063609339296818]],[[-0.068988785147667,-0.0086949123069644,0.044774241745472],[-0.042043022811413,0.021269017830491,-0.030416667461395],[0.0077140242792666,-0.081200778484344,-0.0076781478710473]],[[-0.087649703025818,-0.24922250211239,-0.13905440270901],[-0.057458762079477,-0.15577656030655,-0.16440409421921],[-0.027558326721191,-0.058176908642054,-0.17012850940228]],[[-0.012235049158335,-0.050642978399992,-0.0032785136718303],[0.046668525785208,0.021644504740834,-0.021514277905226],[-0.045652713626623,0.038481060415506,0.095832608640194]],[[-0.049013696610928,-0.15551047027111,-0.0070165018551052],[-0.050821788609028,0.053717568516731,0.098551318049431],[0.0030073910020292,0.0077916625887156,0.079436868429184]],[[0.083533801138401,0.059658493846655,-0.10028669983149],[0.045061383396387,0.075420938432217,-0.063384659588337],[0.088513687252998,0.0052361637353897,0.061531268060207]],[[-0.047291696071625,0.0094874110072851,-0.0091605754569173],[0.078707799315453,-0.010032315738499,0.046700280159712],[0.020128371194005,0.068807415664196,-0.0065415478311479]],[[0.053247716277838,-0.022019624710083,-0.034837037324905],[0.023061148822308,0.035014048218727,-0.012950159609318],[0.010873745195568,0.039042513817549,-0.012044746428728]],[[-0.078546158969402,-0.0060566971078515,-0.038124669343233],[-0.033772516995668,0.059985466301441,0.047703322023153],[0.04289411380887,-0.0019061146304011,0.033163122832775]],[[-0.076473727822304,-0.038866255432367,0.033334884792566],[-0.015056266449392,-0.030073771253228,-0.019798897206783],[0.010203447192907,-0.064619898796082,-0.12269129604101]],[[0.016576170921326,-0.030857523903251,-0.073429226875305],[0.018472827970982,-0.11911312490702,-0.011899147182703],[0.03551035001874,0.075191527605057,-0.0064398581162095]],[[-0.0072440118528903,-0.036976080387831,0.098634727299213],[0.011086367070675,0.081301718950272,-0.10522202402353],[-0.10527601093054,-0.12816460430622,-0.11136025190353]],[[0.12148863822222,0.080052129924297,-0.007813885807991],[0.043269619345665,0.099400386214256,0.072960563004017],[-0.011445701122284,0.086959205567837,0.11318800598383]],[[0.042861849069595,0.081641674041748,0.046352256089449],[-0.058787066489458,-0.0064280605874956,0.05472769215703],[-0.044904228299856,-0.049702290445566,0.055848676711321]],[[0.034994751214981,-0.013203152455389,0.033133532851934],[-0.017722764983773,0.028749732300639,0.033823240548372],[0.052950818091631,0.077573366463184,0.054126299917698]],[[-0.02997082658112,-0.032686922699213,0.031239159405231],[0.11447248607874,0.10218954086304,-0.0069172848016024],[0.13204430043697,-0.050222389400005,-0.047607637941837]],[[-0.074956670403481,0.044350106269121,-0.053142543882132],[0.01560137514025,0.07761687785387,0.017124950885773],[0.036689110100269,0.0076398723758757,0.051838122308254]],[[0.022910110652447,-0.046318423002958,0.074883155524731],[0.057145081460476,-0.125697940588,-0.12134771794081],[0.078448496758938,0.0006560247275047,-0.016263039782643]],[[0.03146243467927,0.036873321980238,0.050816480070353],[0.012545997276902,0.11714038252831,0.042148947715759],[-0.049208670854568,0.050840001553297,0.01053805090487]],[[-0.0028845812194049,-0.0096979606896639,0.06491282582283],[-0.01054812874645,-0.11146760731936,0.012130240909755],[-0.012989520095289,0.016808573156595,0.075566418468952]],[[-0.13163705170155,-0.10585587471724,0.014556307345629],[-0.02369574457407,-0.0091985436156392,0.042998101562262],[0.12385977804661,0.042313992977142,0.052830919623375]],[[0.0404256246984,0.03572029992938,0.022965772077441],[0.011172752827406,-0.043951559811831,0.014830272644758],[0.003301003947854,0.00022019672906026,0.045420333743095]],[[0.05134104937315,-0.027460029348731,0.0044826199300587],[-0.12705744802952,-0.077355779707432,-0.19486485421658],[-0.013947849161923,0.018081478774548,0.026217427104712]],[[-0.013598165474832,-0.20442676544189,0.0034516665618867],[0.018857883289456,-0.039042182266712,0.011934866197407],[-0.071779184043407,-0.04650779440999,-0.10128913074732]],[[0.1379646062851,-0.0086289010941982,-0.034872971475124],[-0.032367084175348,0.077209390699863,-0.03797223046422],[-0.076047316193581,0.058251194655895,0.013964758254588]],[[0.058051109313965,0.011068598367274,-0.065053410828114],[0.020311085507274,-0.01274002622813,-0.10956080257893],[0.086177617311478,0.026356801390648,-0.095312878489494]],[[0.011166607961059,-0.017140859737992,0.024978285655379],[0.061943884938955,0.011292434297502,0.048928495496511],[0.048969402909279,-0.077674888074398,-0.12512440979481]],[[0.017291715368629,0.054958753287792,-0.026389019563794],[-0.0040680048987269,0.013475620187819,0.062451973557472],[-0.020653417333961,-0.037743527442217,-0.057029452174902]],[[-0.031649190932512,-0.1337476670742,-0.098661944270134],[-0.046254556626081,0.013734135776758,-0.01270357798785],[-0.022635515779257,-0.022785156965256,-0.056755878031254]],[[-0.02405745908618,-0.063456751406193,-0.04202689230442],[-0.057095021009445,0.020766349509358,-0.05488657951355],[-0.045964684337378,0.021821863949299,0.00970065779984]],[[-0.009839185513556,0.017685491591692,-0.025150291621685],[0.043045938014984,-0.044490452855825,-0.059207528829575],[-0.024009041488171,-0.078706033527851,0.033226929605007]],[[-0.093050695955753,-0.092898860573769,-0.057652898132801],[-0.044715631753206,0.084891967475414,-0.096237130463123],[-0.098804220557213,-0.11125342547894,-0.065519571304321]],[[-0.068824879825115,0.037681341171265,-0.0063076689839363],[0.0045457202941179,-0.010592377744615,0.029271326959133],[0.0011307378299534,0.037906005978584,0.039947785437107]],[[-0.10348914563656,-0.016203632578254,0.046635311096907],[-0.067698076367378,-0.057604096829891,-0.017844337970018],[-0.050743579864502,0.055944886058569,0.075450345873833]],[[-0.076598286628723,0.064738385379314,-0.050819758325815],[0.027263259515166,0.079243667423725,0.048289928585291],[-0.10948910564184,0.017617467790842,-0.053219061344862]],[[-0.10588835924864,0.0013775617117062,0.027697326615453],[-0.068962231278419,-0.010500393807888,0.019346574321389],[-0.071497052907944,-0.026179540902376,0.074485883116722]],[[-0.093778133392334,-0.10493251681328,0.012044962495565],[-0.023031182587147,-0.13245803117752,0.0074194385670125],[-0.059506647288799,0.031661555171013,-0.007787149399519]],[[0.057228855788708,0.0078970184549689,0.052826043218374],[0.023385010659695,-0.05070311576128,-0.14103472232819],[-0.020971870049834,-0.10504561662674,0.028768954798579]],[[0.063252381980419,-0.038229648023844,-0.032876763492823],[-0.11920109391212,0.044715989381075,-0.064881928265095],[-0.036035552620888,-0.02032370492816,-0.011080234311521]],[[0.071282438933849,0.019595881924033,0.023930061608553],[0.0065809870138764,0.03030370362103,0.017185023054481],[-0.090061970055103,-0.0070234159938991,-0.04267930611968]],[[0.064996801316738,-0.024052571505308,0.037554230540991],[-0.002383588347584,0.11328987777233,0.095378190279007],[0.0018153968267143,0.031209591776133,0.12621264159679]],[[0.066361203789711,-0.0288718752563,0.0051904725842178],[0.050007525831461,-0.0056763747707009,-0.01900539919734],[0.053952503949404,0.066883333027363,-0.090638868510723]],[[0.038625419139862,0.10889232903719,0.05068963766098],[-0.01106324326247,0.047522526234388,-0.042902912944555],[-0.073124602437019,0.080001130700111,-0.062237065285444]],[[0.0063246595673263,-0.033165093511343,0.034790884703398],[-0.13862220942974,0.0190244987607,-0.057537835091352],[0.011637920513749,0.013519471511245,0.0193752925843]],[[0.041673101484776,0.026068998500705,0.056895684450865],[-0.0099093969911337,0.011338989250362,-0.0019956929609179],[-0.053759545087814,0.016624700278044,-0.025954864919186]],[[-0.013246073387563,0.02309244312346,-0.018689006567001],[-0.0097390813753009,0.023614561185241,0.086866281926632],[-0.054210528731346,-0.033121347427368,0.027792364358902]],[[-0.11287143826485,-0.14053140580654,-0.10467340797186],[-0.078560918569565,-0.03889025375247,0.06031871587038],[-0.085569530725479,-0.1346410959959,-0.025819040834904]],[[-0.01700440980494,-0.065275020897388,0.051140908151865],[0.00044316329876892,-0.048726301640272,0.073761947453022],[0.038786925375462,0.16740396618843,0.1851963698864]],[[0.052255403250456,-0.0066597769036889,0.03691092133522],[0.026981897652149,-0.00058966118376702,-0.030446717515588],[-0.033963061869144,-0.0054674632847309,-0.0271827429533]],[[-0.073845788836479,0.054690714925528,-0.071970552206039],[0.058953702449799,-0.0071567911654711,-0.0098461769521236],[-0.02649655751884,-0.017441621050239,-0.056784089654684]],[[-0.12324421852827,0.15166015923023,-0.006165583152324],[-0.069531731307507,0.02404354698956,0.090471684932709],[-0.013321369886398,-0.035013988614082,0.031746804714203]],[[0.088183492422104,-0.020934982225299,-0.02512663602829],[-0.079350754618645,-0.088530749082565,-0.0084414025768638],[-0.0088281547650695,-0.035817451775074,-0.026390746235847]],[[0.030358592048287,-0.11966706812382,-0.018240302801132],[0.045623265206814,-0.030339553952217,-0.071714028716087],[0.031823821365833,0.025835130363703,0.0055080554448068]]],[[[-0.027701077982783,0.022757865488529,0.0060828304849565],[-0.05011348426342,-0.093323074281216,0.025322394445539],[0.050683964043856,0.0050096814520657,0.071125201880932]],[[-0.034837823361158,-0.041415333747864,-0.063342332839966],[0.036413326859474,0.030146995559335,-0.08100938051939],[-0.051230099052191,0.035175990313292,0.0031607775017619]],[[-0.081212341785431,-0.085560888051987,-0.040310613811016],[0.04293579980731,-0.054839763790369,0.001658215536736],[-0.020694823935628,-0.10935344547033,0.14131639897823]],[[-0.014859885908663,0.035575151443481,-0.057330686599016],[0.0023921150714159,-0.040301643311977,-0.050970319658518],[0.023501642048359,0.053409181535244,0.068459935486317]],[[-0.042385742068291,-0.07406659424305,-0.014634711667895],[0.093504793941975,-0.042713820934296,0.040722873061895],[0.077272661030293,0.049877744168043,-0.0073828995227814]],[[0.091772116720676,-0.11484458297491,-0.14285691082478],[0.070829294621944,-0.011710120365024,-0.039189282804728],[0.12984734773636,-0.12444595992565,-0.017748532816768]],[[-0.002859428524971,-0.061285845935345,0.044714465737343],[0.083675660192966,-0.015959121286869,-0.089733704924583],[0.0007736231200397,0.0052544376812875,-0.066530533134937]],[[-0.017690248787403,0.044140934944153,-0.00031043885974213],[0.0111691262573,0.055692665278912,0.019612835720181],[-0.046698559075594,0.03561520203948,-0.049190998077393]],[[-0.02228144928813,0.064512595534325,0.026466554030776],[-0.032530892640352,-0.020032897591591,0.055185753852129],[0.07707953453064,-0.014779791235924,-0.053320460021496]],[[0.026767717674375,0.021894589066505,0.094397164881229],[-0.02910441160202,0.041831251233816,-0.093314804136753],[-0.0042666555382311,-0.067619025707245,-0.027997851371765]],[[-0.050214126706123,0.002213672734797,0.036903355270624],[0.025326017290354,-0.093213140964508,0.034504819661379],[-0.032690230756998,0.025892013683915,0.026899162679911]],[[-0.0076728356070817,-0.066555500030518,-0.014128497801721],[0.010330833494663,-0.0044162892736495,-0.085802234709263],[-0.022748056799173,-0.011115469969809,-0.036475725471973]],[[-0.060110233724117,0.028947999700904,0.0519665107131],[0.056523662060499,-0.015477792359889,-0.050517156720161],[0.014545768499374,-0.045111458748579,-0.070534616708755]],[[-0.085166521370411,0.018934234976768,-0.011374128051102],[-0.026257522404194,0.046243250370026,-0.0301443785429],[-0.01084082107991,0.04764224216342,0.013624101877213]],[[-0.022194776684046,-0.023978190496564,0.011528071947396],[-0.019761463627219,0.056804366409779,0.024918425828218],[0.025286115705967,-0.031906295567751,0.024177584797144]],[[0.010063306428492,0.025091262534261,-0.13831534981728],[-0.036562759429216,-0.059172704815865,0.069683447480202],[-0.10738126188517,-0.0079935835674405,0.13640700280666]],[[-0.059306506067514,0.020551303401589,0.0026336049195379],[0.0032890827860683,0.054099030792713,-0.025448363274336],[0.01943545602262,0.098701924085617,-0.058028522878885]],[[0.04549453780055,-0.046296082437038,0.051258575171232],[0.086393095552921,0.086198747158051,0.056429170072079],[0.0027960622683167,0.054671257734299,0.022640969604254]],[[0.059211384505033,-0.063832134008408,0.030675150454044],[0.083412319421768,-0.030777417123318,-0.040946021676064],[-0.021888324990869,0.0016750822542235,0.048465322703123]],[[-0.091028809547424,0.017823301255703,-0.021319981664419],[0.044655505567789,0.034085761755705,0.04252477735281],[0.017835499718785,0.034461740404367,-0.045680977404118]],[[0.017168970778584,-0.048305761069059,-0.010986652225256],[-0.055245887488127,-0.0045596342533827,0.038476929068565],[0.081883437931538,0.051532544195652,0.012285122647882]],[[0.01940986700356,0.20052459836006,-0.15135830640793],[-0.040951188653708,0.061940662562847,-0.029180023819208],[-0.024904817342758,-0.089643783867359,-0.025868821889162]],[[0.033193200826645,0.03573128208518,-0.061761844903231],[0.012228012084961,-0.04613895341754,0.048959478735924],[0.068891271948814,-0.0066252443939447,-0.062701895833015]],[[-0.058457609266043,0.0054264655336738,0.15769593417645],[0.011803134344518,0.10140620172024,0.14599670469761],[-0.012739198282361,0.021087201312184,-0.06146027892828]],[[0.031951356679201,0.0055108931846917,-0.0023851993028075],[0.0013783087488264,0.023913303390145,0.031340669840574],[-0.028204383328557,-0.018167717382312,-0.15126565098763]],[[-0.019697196781635,0.0026469493750483,-0.061962153762579],[0.0045387488789856,0.032732456922531,0.072386734187603],[0.018116898834705,0.039999973028898,0.050854872912169]],[[-0.07350368052721,0.028350519016385,-0.031973760575056],[-0.041855718940496,0.026659641414881,0.017183175310493],[0.075520716607571,0.03963927552104,0.015738232061267]],[[-0.14180718362331,-0.035755213350058,0.088313683867455],[-0.0036951669026166,-0.016576590016484,0.05461236089468],[-0.012252736836672,-0.036326508969069,0.027423053979874]],[[-0.0045279487967491,0.036262601613998,-0.058291677385569],[0.00027861748822033,0.019872637465596,-0.019711956381798],[-0.034251771867275,-0.00092617800692096,-0.034695379436016]],[[0.071635350584984,0.011019652709365,-0.055083371698856],[0.051958430558443,-0.06958831846714,-0.01136692147702],[-0.031650476157665,-0.050655785948038,-0.037290714681149]],[[0.11621291190386,-0.025243064388633,-0.0078492015600204],[0.017701420933008,-0.000169941020431,0.0036225037183613],[-0.068660587072372,-0.018602790310979,0.040257662534714]],[[-0.048455432057381,-0.0074661741964519,0.03286549821496],[0.053791075944901,-0.10484182089567,-0.064992129802704],[0.088617697358131,0.082194693386555,0.077504120767117]],[[0.02471624687314,-0.078192323446274,-0.094049230217934],[-0.004008449614048,0.029504854232073,-0.045068554580212],[0.0017720721662045,-0.017539134249091,-0.012773983180523]],[[-0.036515384912491,-0.069070227444172,-0.068589694797993],[-0.0079122092574835,0.066992551088333,-0.020059294998646],[0.021376430988312,0.062035750597715,0.01286034937948]],[[-0.14160043001175,-0.062157899141312,0.029853811487556],[-0.083989091217518,0.044021528214216,-0.011235327459872],[0.073127940297127,0.037758953869343,-0.011693852953613]],[[-0.060336016118526,-0.018254570662975,-0.072683550417423],[-0.052873063832521,0.085258707404137,-0.08416586369276],[-0.056377053260803,-0.011135852895677,0.03435318544507]],[[-0.041731279343367,0.059495374560356,-0.093923322856426],[0.012249349616468,-0.019198376685381,0.031708046793938],[-0.011287273839116,0.059510253369808,0.0028237416408956]],[[-0.073511123657227,-0.029536623507738,0.025685096159577],[0.079153507947922,-0.012193391099572,-0.12003608047962],[-0.057373855262995,0.09913494437933,0.046127047389746]],[[-0.047321416437626,-0.019168242812157,0.054375011473894],[-0.02106873318553,-0.072780184447765,0.023962331935763],[-0.036750510334969,0.012676955200732,0.033920928835869]],[[-0.014325684867799,0.061981339007616,-0.030925428494811],[0.014354477636516,-0.038813021034002,-0.12153189629316],[0.13512539863586,0.051118690520525,0.001775074400939]],[[-0.078926898539066,0.0086522223427892,0.084261171519756],[-0.090959623456001,-0.0036155288107693,0.0043067494407296],[-0.060707483440638,0.071266137063503,0.060451876372099]],[[-0.068392351269722,-0.05921595543623,0.080805018544197],[0.066853038966656,0.026856957003474,0.022171594202518],[0.034431591629982,0.014981498941779,0.055929254740477]],[[0.03618162125349,-0.040872056037188,-0.019187094643712],[0.018928239122033,-0.0013519728090614,0.07939400523901],[0.025830786675215,-0.084077768027782,-0.055523600429296]],[[-0.0090342964977026,0.023623615503311,-0.028987111523747],[-0.0053032105788589,-0.030909599736333,0.010379833169281],[0.085457146167755,0.00019899844483007,-0.040868576616049]],[[-0.033168353140354,-0.039944358170033,-0.060416825115681],[0.032300367951393,0.050547383725643,-0.021397579461336],[0.024483492597938,0.013687969185412,-0.0022702901624143]],[[-0.015273385681212,0.010885936208069,-0.029082158580422],[0.010868474841118,-0.036864265799522,0.024336354807019],[-0.0098347654566169,-0.04128135368228,0.04063530638814]],[[0.018145199865103,-0.00097059964900836,-0.035492572933435],[0.033363185822964,0.036738093942404,-0.073738075792789],[0.087885126471519,-0.062442023307085,-0.0094807706773281]],[[0.043425120413303,-0.013656008057296,-0.068021237850189],[0.023813998326659,0.010527333244681,-0.096568316221237],[0.043077945709229,-0.087951518595219,-0.090255074203014]],[[-0.021677549928427,-0.01986719854176,-0.039309464395046],[-0.019872901961207,-0.011340868659317,-0.032008621841669],[0.042537201195955,0.060148891061544,-0.033210694789886]],[[-0.091735184192657,-0.042390797287226,-0.10291574150324],[-0.052328679710627,0.0023361754138023,-0.072560474276543],[0.010960063897073,0.060123205184937,0.00089919235324487]],[[0.015789370983839,-0.078734464943409,0.0091644767671824],[0.044519685208797,0.0065382728353143,-0.051433715969324],[-0.011928816325963,-0.026570511981845,-0.03682292252779]],[[0.16819986701012,0.072365835309029,-0.020689589902759],[-0.015642983838916,-0.0094489958137274,0.073537468910217],[0.034174166619778,-0.022494060918689,0.045355569571257]],[[-0.022201977670193,0.016602294519544,0.0038839629851282],[-0.0048233144916594,0.10017422586679,0.0090494612231851],[-0.027591483667493,0.053480427712202,-0.073385141789913]],[[-0.050281934440136,0.041259560734034,-0.073348522186279],[0.027949502691627,0.021431803703308,0.083781816065311],[-0.034817043691874,-0.055734004825354,-0.071060068905354]],[[-0.020716158673167,-0.078286327421665,-0.11296235769987],[-0.02914316020906,-0.083356373012066,-0.023618265986443],[-0.00083153654122725,-0.0094943903386593,-0.020751867443323]],[[0.0038433203008026,-0.0011882841354236,0.0036851558834314],[0.047464299947023,0.024798003956676,0.030805801972747],[-0.012464856728911,0.031792595982552,-0.055203668773174]],[[0.014170821756124,-0.025654468685389,0.038978233933449],[0.05691459774971,-0.0031718160025775,0.052559543401003],[-0.10943644493818,-0.093067444860935,-0.02455684915185]],[[-0.037713199853897,0.019749380648136,0.045828267931938],[0.0045218151062727,-0.11417032033205,0.029744800180197],[-0.027586884796619,-0.057675801217556,0.030266564339399]],[[0.097266398370266,0.029873326420784,0.065606988966465],[-0.046787291765213,0.050751149654388,0.040028970688581],[0.020608652383089,0.060198023915291,-0.025421654805541]],[[0.026536177843809,0.03831148147583,-0.013674838468432],[-0.074253134429455,-0.04755624383688,0.017943892627954],[-0.033286545425653,0.030438983812928,0.054243396967649]],[[-0.090754799544811,-0.18379519879818,-0.026503089815378],[-0.0032808703836054,-0.032139770686626,-0.009972489438951],[-0.025690613314509,0.021773332729936,0.056882254779339]],[[-0.022237738594413,-0.040361143648624,-0.053765546530485],[0.057718627154827,-0.0039582094177604,-0.0021664325613528],[0.039448712021112,-0.065932206809521,-0.023403473198414]],[[0.055353805422783,0.032403361052275,0.003830533940345],[0.0093767466023564,-0.014025637879968,-0.024042563512921],[0.034133449196815,-0.084992863237858,0.040384411811829]],[[-0.003339204005897,-0.16103400290012,-0.028470458462834],[0.058981243520975,-0.044818866997957,-0.016732431948185],[0.030374586582184,0.034278068691492,-0.031814310699701]]],[[[0.020146574825048,0.040900968015194,0.012496034614742],[-0.035221617668867,0.06627069413662,0.008537276647985],[0.034647285938263,-0.019717656075954,0.025796892121434]],[[0.05799861997366,0.053877625614405,0.035152800381184],[-0.086522221565247,0.031215827912092,0.1134697496891],[0.039883002638817,-0.012206193059683,0.06259498000145]],[[-0.015312984585762,-0.046141993254423,0.020028008148074],[-0.040408000349998,0.0074987392872572,-0.064986422657967],[0.033424098044634,-0.047558896243572,0.019091403111815]],[[0.016377067193389,-0.085129044950008,-0.10059516876936],[0.019855190068483,0.072512730956078,-0.014149384573102],[-0.009854743257165,0.055389441549778,0.061255972832441]],[[0.074103556573391,-0.017699509859085,0.070983678102493],[0.096441082656384,-0.019430441781878,0.10628701746464],[-0.069584786891937,0.041109547019005,-0.020960576832294]],[[-0.0099219605326653,-0.034076545387506,-0.045977272093296],[-0.020789731293917,0.065277650952339,0.05722164362669],[-0.12094240635633,-0.0012749687302858,0.050270557403564]],[[-0.026171455159783,-0.015216501429677,0.045635011047125],[-0.0070543359033763,-0.1742806583643,-0.043278250843287],[0.074678644537926,0.097814463078976,0.0066532953642309]],[[-0.045238398015499,-0.061259798705578,0.0086769722402096],[-0.0059218103997409,0.0081772059202194,-0.043818086385727],[0.055677708238363,0.0034229902084917,0.035722240805626]],[[-0.034812435507774,0.014138364233077,-0.063222967088223],[-0.033680036664009,-0.039975304156542,-0.019795341417193],[-0.04446242749691,0.041962318122387,0.040293198078871]],[[0.064152121543884,0.024463200941682,0.014113187789917],[-0.10454326868057,-0.010377910919487,0.074436955153942],[-0.020236074924469,-0.053777780383825,0.020468508824706]],[[-0.11798204481602,-0.052945774048567,-0.028164396062493],[-0.018556552007794,0.056721672415733,0.027662085369229],[0.051642626523972,-0.019197836518288,0.06606151163578]],[[-0.030793998390436,0.10310331732035,0.048533402383327],[0.0035338599700481,-0.04546033218503,0.056600317358971],[-0.17736458778381,0.0036559079308063,-0.080897070467472]],[[-0.0030892577487975,-0.061449207365513,-0.037712305784225],[-0.00023283528571483,0.069596782326698,0.025992210954428],[-0.0098495548591018,0.042578104883432,-0.070800207555294]],[[-0.071662589907646,-0.020145133137703,-0.0038100597448647],[0.011350251734257,0.04330537468195,0.055435679852962],[0.029742702841759,-0.054565656930208,0.034054163843393]],[[-0.049962621182203,0.013223479501903,-0.10538361221552],[-0.047826822847128,-0.034686237573624,-0.01912010461092],[0.047660533338785,-0.033170182257891,0.002341159619391]],[[0.0093885427340865,0.012048465199769,-0.11395743489265],[-0.077941596508026,0.01279987487942,0.068967036902905],[0.011690407060087,0.083754330873489,0.12313193827868]],[[0.019877312704921,0.10474030673504,-0.1523095369339],[-0.13562874495983,0.015740249305964,0.0059173731133342],[-0.047714453190565,-0.049328003078699,0.00045798637438565]],[[0.0091685000807047,0.034455455839634,-0.048514902591705],[-0.069662369787693,0.028882632032037,-0.12771201133728],[0.0020334620494395,-0.015093947760761,-0.051966793835163]],[[0.020757330581546,-0.01897556707263,0.038584433495998],[-0.039227921515703,0.024926632642746,-0.026516314595938],[0.00012114577111788,-0.095677427947521,0.01262600813061]],[[-0.040389001369476,0.0071429000236094,0.02377406321466],[-0.050239387899637,0.014715299010277,0.019527178257704],[-0.0033687010873109,0.063942454755306,-0.012736431322992]],[[-0.07838112860918,-0.096341460943222,-0.040581822395325],[0.030865415930748,0.019768312573433,-0.063784219324589],[-0.01938627846539,-0.029134755954146,-0.027855657041073]],[[-0.0027227911632508,-0.0030110727529973,0.20041690766811],[0.081964612007141,-0.11625098437071,-0.01568996347487],[-0.02430722117424,-0.047395564615726,0.027115166187286]],[[0.083131939172745,0.04615306481719,-0.0043545789085329],[0.0068006659857929,-2.4217624741141e-05,-0.020781116560102],[-0.038041554391384,0.069133639335632,-0.037198211997747]],[[0.054775051772594,0.073518037796021,-0.011136833578348],[0.12502972781658,0.062679328024387,0.0088868029415607],[0.024060495197773,0.041412804275751,0.12466163933277]],[[-0.097525782883167,0.027870399877429,-0.14213843643665],[0.045615889132023,-0.0067907604388893,0.029511533677578],[-0.0029356498271227,-0.030719129368663,-0.085830017924309]],[[0.025886179879308,0.084321834146976,0.0064868256449699],[0.024638213217258,0.046444691717625,-0.005128379445523],[0.050279948860407,0.049741737544537,0.059464480727911]],[[0.23904424905777,-0.053215630352497,0.08046293258667],[0.050336170941591,0.0088734235614538,-0.031599264591932],[0.052876930683851,-0.12371242046356,0.010464298538864]],[[0.075506411492825,0.016435813158751,-0.18278737366199],[-0.17087168991566,-0.053205251693726,0.16678903996944],[0.11120101064444,-0.08160974085331,0.036277405917645]],[[0.049870777875185,0.088343098759651,0.083836302161217],[-0.002200712217018,-0.061436276882887,0.017590491101146],[-0.025381218641996,-0.11532739549875,0.054551970213652]],[[0.027314377948642,0.084525868296623,0.020452769473195],[-0.092493183910847,0.064638204872608,0.029604226350784],[0.012475392781198,-0.028796097263694,-0.066513948142529]],[[0.035551320761442,0.035915590822697,-0.062516801059246],[-0.0024301444645971,0.0503832064569,0.091246284544468],[-0.086135670542717,-0.027936618775129,0.025526413694024]],[[-0.11842729896307,0.0096501177176833,-0.069033294916153],[-0.030965184792876,-0.020954675972462,0.060900576412678],[0.10040123015642,0.087250523269176,-0.080991089344025]],[[-0.062232304364443,0.021927770227194,0.010520997457206],[0.0088391434401274,0.0025683466810733,-0.059939421713352],[-0.036010056734085,-0.012152556329966,-0.051220841705799]],[[0.063619151711464,0.040244549512863,-0.044054847210646],[-0.061881255358458,0.013314208947122,0.090051151812077],[0.0046338303945959,0.068323448300362,-0.01343847438693]],[[0.10078956931829,-0.024561868980527,1.1959888070123e-05],[0.073279827833176,0.010348641313612,-0.045276906341314],[-0.054026260972023,0.027070138603449,0.03052437864244]],[[0.037987675517797,0.007981794886291,0.012438723817468],[0.014796974137425,-0.027359439060092,0.052432157099247],[0.0024428700562567,0.010857730172575,-0.088834315538406]],[[0.037021074444056,-0.010569960810244,0.19379372894764],[-0.092352479696274,-0.1177813783288,-0.084168754518032],[0.12946958839893,-0.108663238585,0.16689717769623]],[[-0.034938678145409,-0.019377240911126,0.038651090115309],[0.026648124679923,0.084888406097889,-0.07519319653511],[0.054568596184254,-0.073875762522221,0.03741343319416]],[[-0.022850163280964,-0.19189614057541,0.050630662590265],[0.084015749394894,0.01143937651068,0.16784670948982],[0.044000841677189,-0.11529640108347,-0.13869272172451]],[[-0.020361047238111,-0.045191936194897,-0.033622719347477],[0.098739251494408,-0.0019511508289725,0.012320805341005],[0.060686308890581,0.020276252180338,-0.083630084991455]],[[-0.043661050498486,-0.0012458951678127,-0.018918931484222],[0.031917218118906,0.018394427374005,0.0022473202552646],[-0.035361025482416,0.032784014940262,-0.072014942765236]],[[0.090959101915359,-0.057353153824806,0.062222242355347],[-0.0084909182041883,-0.0085410065948963,0.04164631664753],[-0.050070133060217,-0.055627252906561,-0.043202549219131]],[[0.017505696043372,-0.048760309815407,0.060161456465721],[0.0089961457997561,0.098660387098789,-0.061530388891697],[-0.030915105715394,-0.055378422141075,0.067385122179985]],[[-0.082163013517857,-0.086330726742744,-0.006953158415854],[0.044572573155165,-0.070152200758457,-0.011794406920671],[0.03167437016964,-0.005982247646898,0.14824683964252]],[[-0.082931913435459,0.0013816333375871,0.010252648033202],[-0.019451651722193,-0.041769187897444,-0.025007953867316],[0.065060973167419,-0.058687467128038,-0.054714094847441]],[[0.018411926925182,-0.025777461007237,0.0024278319906443],[-0.042450536042452,-0.016424858942628,0.039800550788641],[-0.004302931483835,0.038445606827736,-0.015431682579219]],[[0.027272498235106,0.047999083995819,-0.0073652691207826],[-6.5488537074998e-05,-0.085689537227154,0.034287255257368],[0.020648423582315,-0.023473724722862,-0.04874125868082]],[[0.0033044673036784,-0.11963219940662,0.05261567234993],[0.012671651318669,-0.03711437061429,-0.1136499941349],[-0.016671594232321,0.064522229135036,0.086826883256435]],[[-0.036964800208807,0.037571359425783,-0.015247363597155],[-0.031518373638391,0.055522281676531,0.041020389646292],[0.0058511830866337,-0.028364269062877,0.066453099250793]],[[0.061953533440828,0.061827056109905,0.015661066398025],[0.064988106489182,-0.0060445042327046,-0.035537913441658],[-0.075500994920731,-0.075688138604164,0.0040743476711214]],[[-0.023853851482272,-0.04165181517601,-0.10984493046999],[-0.012988328933716,0.01625700853765,0.053887512534857],[-0.10146091878414,-0.055039756000042,0.020586133003235]],[[0.05110277608037,-0.012501329183578,-0.0054517365060747],[0.079445101320744,0.049269922077656,0.042351994663477],[0.11143311858177,0.018172418698668,0.091810323297977]],[[0.15365882217884,0.042930912226439,-0.10955026000738],[0.022289868444204,-0.071837916970253,0.080242842435837],[0.060189258307219,-0.10692818462849,0.091967977583408]],[[0.070309847593307,0.057309832423925,0.075715735554695],[0.0384701192379,-0.062290124595165,0.013644975610077],[0.017243245616555,0.0045448848977685,-0.070152461528778]],[[0.022172370925546,-0.001495725242421,0.040407802909613],[0.01293103210628,-0.05470234900713,0.06666948646307],[-0.06170804426074,0.057237964123487,-0.055422343313694]],[[-0.023217106238008,-0.006434815004468,-0.063830606639385],[-0.033091343939304,-0.10595513135195,0.14515322446823],[0.010621241293848,-0.065838240087032,0.020237362012267]],[[0.015009040012956,-0.021933391690254,-0.0637177079916],[0.085516840219498,0.17365878820419,0.012878579087555],[-0.10568118095398,-0.099368244409561,0.03964951634407]],[[0.052722480148077,-0.074947476387024,0.00097424775594845],[-0.052159041166306,-0.023576460778713,-0.14285936951637],[-0.042260397225618,-0.021336402744055,-0.087726160883904]],[[0.03006212040782,0.0086438804864883,0.078833684325218],[0.13324218988419,-0.013844867236912,0.041930593550205],[0.11429454386234,0.14475600421429,-0.16730989515781]],[[0.072016604244709,-0.0070593887940049,-0.049333900213242],[-0.00089907494839281,0.0064935935661197,0.02468672208488],[0.0039189700037241,-0.027615986764431,-0.010195383802056]],[[0.010719265788794,0.01311297621578,-0.030191654339433],[0.039131257683039,0.033893421292305,0.045965988188982],[-0.12656030058861,-0.039789389818907,0.018184637650847]],[[0.066888131201267,0.11996178328991,0.025479983538389],[-0.039628427475691,-0.043469063937664,-0.091477356851101],[-0.070044621825218,-0.0031326769385487,-0.060109198093414]],[[0.0062200967222452,-0.021855760365725,-0.061295699328184],[0.052346877753735,0.096071697771549,-0.035964507609606],[-0.083214491605759,-0.022705543786287,-0.041563834995031]],[[-0.087552063167095,-0.084532260894775,0.02923091314733],[-0.00084828014951199,-0.0073142144829035,-0.02796265669167],[0.04248571023345,0.021076368167996,0.016139259561896]]],[[[-0.056015454232693,-0.043079398572445,-0.044204726815224],[0.018132634460926,0.054520130157471,-0.011348371393979],[-0.063938036561012,-0.05882927775383,0.0078164227306843]],[[-0.090493507683277,0.0080234231427312,0.033195838332176],[-0.0486800968647,-0.086647041141987,-0.048654608428478],[-0.0053007863461971,-0.0108030019328,0.00084702001186088]],[[0.034312091767788,-0.058762144297361,-0.019291611388326],[-0.03218649327755,-0.031973071396351,-0.093699261546135],[0.060959525406361,-0.048832576721907,-0.053921401500702]],[[-0.011830799281597,-0.031938973814249,0.011585116386414],[0.013843873515725,0.052326153963804,0.00076632614945993],[-0.036548595875502,-0.049654640257359,0.025621118023992]],[[-0.023925922811031,0.0026389660779387,0.062996529042721],[0.14157523214817,0.060264281928539,0.0089327758178115],[-0.0098215332254767,-0.088650688529015,-0.079219676554203]],[[0.093755342066288,0.052952043712139,0.018069047480822],[0.013760669156909,-0.06959579885006,-0.034640830010176],[0.047803856432438,-0.015832617878914,0.040359120815992]],[[-0.053760420531034,-0.047900877892971,0.046804342418909],[-0.032352026551962,-0.11676874011755,0.019646329805255],[-0.056185562163591,0.029890930280089,0.03443943336606]],[[0.12564997375011,-0.0035562636330724,-0.038702666759491],[-0.10075018554926,-0.097947992384434,-0.01611464843154],[-0.019079737365246,0.113182336092,0.054406203329563]],[[-0.068796038627625,0.24822218716145,-0.094152957201004],[-0.080529376864433,-0.087581448256969,0.034251343458891],[-0.051593523472548,0.053246974945068,-0.027050985023379]],[[0.0014906714204699,-0.081635907292366,-0.024925926700234],[0.0061173108406365,-0.042795397341251,-0.081544794142246],[0.064000360667706,0.011175005696714,0.025762902572751]],[[0.012868332676589,-0.035582404583693,0.04407436773181],[-0.036381904035807,-0.092346258461475,-0.013121047988534],[0.046605236828327,-0.096150606870651,-0.076699629426003]],[[0.08698882162571,-0.052811816334724,0.018189050257206],[-0.22611433267593,-0.024758106097579,-0.13150732219219],[-0.0061433878727257,-0.052287258207798,0.0061951279640198]],[[0.069824159145355,-0.041650556027889,0.17753817141056],[-0.11843220889568,-0.064329586923122,-0.19578492641449],[0.20572656393051,-0.011655922979116,0.2055286616087]],[[-0.0069689932279289,0.0067433058284223,-0.016784362494946],[0.030857000499964,-0.02600116468966,0.034815736114979],[0.038765955716372,-0.052251406013966,-0.060914482921362]],[[0.025800554081798,-0.069067753851414,0.036698695272207],[0.0017766457749531,-0.048982370644808,-0.034949917346239],[0.11060122400522,0.02461277320981,0.030506400391459]],[[-0.17679142951965,0.080818481743336,-0.0023647628258914],[0.032138228416443,-0.027124160900712,0.032254699617624],[-0.080647952854633,-0.0058352537453175,0.0047422405332327]],[[0.086483277380466,0.03037797473371,-0.043640717864037],[0.038953866809607,-0.012730687856674,-0.10872188955545],[-0.022406606003642,-0.019995369017124,-0.028589863330126]],[[-0.00097518059192225,0.013496006838977,-0.13508683443069],[-0.0059473956935108,-0.0020904457196593,0.049787599593401],[0.016112107783556,-0.052730459719896,0.019249986857176]],[[0.045126773416996,-0.044133607298136,-0.00345817534253],[0.032214883714914,-0.049174040555954,0.092376492917538],[-0.029001642018557,-0.068767003715038,0.048747021704912]],[[0.025380482897162,-0.050092808902264,0.0045402715913951],[0.047167036682367,0.053972147405148,-0.019541077315807],[-0.043208092451096,-0.0023023237008601,0.0032273496035486]],[[0.026086706668139,-0.044354733079672,-0.030114321038127],[0.041672118008137,0.058891735970974,-0.0062645399011672],[-0.034735001623631,0.0057328199036419,0.056747857481241]],[[-0.027912748977542,0.066293962299824,0.073671378195286],[0.01080546528101,-0.056902971118689,-0.0034372117370367],[-0.049643039703369,0.071680068969727,-0.028367701917887]],[[-0.015684997662902,-0.10582356899977,0.11080003529787],[0.081241227686405,-0.15120086073875,0.031970627605915],[0.0062697255052626,-0.010637055151165,-0.014670083299279]],[[0.021790560334921,0.026548128575087,0.1151670217514],[0.073446072638035,0.13793490827084,-0.087567426264286],[0.01350970659405,0.030195593833923,0.099009349942207]],[[0.093450643122196,-0.059484355151653,-0.13948687911034],[-0.027361223474145,0.0027566412463784,0.16237509250641],[-0.036607276648283,0.027569098398089,-0.010103033855557]],[[0.030250171199441,0.037020549178123,0.0091866869479418],[0.088992737233639,-0.050802085548639,0.027592102065682],[-0.01848597638309,0.049763903021812,0.03838038444519]],[[-0.028067385777831,-0.083445407450199,0.027854166924953],[-0.1057615429163,-0.11112514138222,-0.022923240438104],[0.064299702644348,0.097200691699982,-0.074111565947533]],[[0.092399671673775,0.095351994037628,-0.029043532907963],[0.032033894211054,0.028733093291521,0.014699582010508],[0.047935731709003,0.0012012657243758,-0.050266318023205]],[[0.038027297705412,-0.0059887780807912,0.053458001464605],[0.063951291143894,-0.079480923712254,-0.051501639187336],[0.08361741900444,0.0014710010727867,0.043776039034128]],[[-0.047749105840921,0.023850340396166,-0.074940748512745],[-0.1675651371479,-0.017459468916059,0.045844502747059],[-0.064586758613586,-0.060402244329453,-0.013415997847915]],[[-0.0033621957991272,0.058647193014622,-0.055749513208866],[0.041975867003202,-0.066777110099792,0.096770130097866],[0.037440706044436,-0.0020381733775139,0.012893583625555]],[[-0.082531206309795,-0.10805896669626,-0.017520736902952],[0.037197582423687,0.010799036361277,0.020759232342243],[0.014640095643699,0.030404921621084,-0.1066907569766]],[[-0.028624700382352,-0.025946065783501,0.044227734208107],[0.025651875883341,-0.021911352872849,-0.0088682267814875],[-0.0042322394438088,-0.0060059954412282,0.011990518309176]],[[0.028410356491804,0.012972037307918,0.016944607719779],[-0.0062998407520354,-0.023722913116217,0.061803817749023],[-0.046174813061953,-0.019479067996144,0.046864420175552]],[[0.050761986523867,-0.054653074592352,-0.035218294709921],[-0.048189848661423,0.016056349501014,0.0016498294426128],[-0.009232054464519,-0.016131952404976,-0.070683464407921]],[[0.084123484790325,-0.057665806263685,0.11978030204773],[-0.0061202012002468,0.0032246680930257,-0.042302709072828],[-0.036589562892914,0.1006491407752,-0.027523253113031]],[[-0.088492602109909,0.008034560829401,0.015306602232158],[0.040179330855608,-0.016013843938708,0.0016289697960019],[0.020184749737382,-0.087257534265518,-0.02062264457345]],[[-0.052194695919752,-0.042720891535282,0.0053869835101068],[-0.00053330283844844,-0.015777558088303,0.0096163190901279],[0.01755734719336,-0.12878778576851,0.052597109228373]],[[0.074434719979763,-0.086062923073769,0.0098736844956875],[0.069759607315063,-0.016987074166536,0.024216026067734],[-0.091840229928493,0.049723394215107,-0.057171758264303]],[[0.048619009554386,-0.050060790032148,-0.083909347653389],[0.0035808635875583,0.035500675439835,0.020656585693359],[0.038100372999907,-0.025632165372372,0.015872906893492]],[[-0.069212436676025,0.066700965166092,-0.059481423348188],[0.060466688126326,0.085737593472004,-0.0007519286009483],[-0.011689865030348,0.017540775239468,0.051304653286934]],[[-0.21323783695698,-0.021785467863083,-0.0040309820324183],[-0.0071704490110278,0.077076189219952,0.045445643365383],[-0.044472150504589,0.039058551192284,-0.042070638388395]],[[0.0077280406840146,-0.00010346507042414,-0.02747155725956],[-0.054316509515047,-0.032129544764757,-0.017633421346545],[0.058401707559824,-0.0099604045972228,-0.051212824881077]],[[0.067907117307186,-0.049983393400908,-0.032255861908197],[-0.11724647879601,-0.0011676115682349,-0.078660413622856],[0.099084936082363,-0.043379366397858,0.084589652717113]],[[0.00047347610234283,-0.011373056098819,-0.035467449575663],[0.0010115865152329,-0.059694286435843,-0.1012894064188],[0.049705632030964,-0.0083750812336802,-0.071588687598705]],[[0.046101909130812,-0.0026464355178177,0.049088723957539],[0.0032844892702997,0.048763316124678,0.027283567935228],[0.00049036979908124,0.0043928101658821,-0.013584475964308]],[[-0.088512480258942,-0.073401071131229,-0.011362157762051],[-0.085298500955105,0.0049539660103619,0.071595892310143],[-0.054990544915199,0.10600307583809,-0.055103365331888]],[[-0.043595671653748,-0.0032829225528985,-0.020198350772262],[0.0038835848681629,-0.12459171563387,-0.0092980694025755],[0.033070646226406,-0.056895647197962,-0.097331173717976]],[[0.052795890718699,-0.066324569284916,-0.043666772544384],[-0.068664580583572,0.036748275160789,0.00057016953360289],[-0.086021408438683,-0.010262790136039,0.038581721484661]],[[0.008533051237464,-0.020918315276504,-0.042509041726589],[0.058971758931875,0.028857536613941,0.013701202347875],[-0.027511285617948,0.11218316107988,-0.00064707617275417]],[[0.14731885492802,-0.039491631090641,-0.05122522637248],[-0.053559370338917,-0.031972654163837,0.017093347385526],[0.024120356887579,0.065283484756947,0.012918272055686]],[[0.17691980302334,0.16109780967236,-0.017283072695136],[0.076961547136307,-0.025678303092718,0.03870801627636],[0.076431766152382,0.0538669526577,-0.16493541002274]],[[0.030393240973353,-0.11797422170639,0.012125514447689],[-0.057798553258181,-0.013731015846133,0.010804397985339],[0.076764754951,-0.066764578223228,0.080344371497631]],[[0.056100185960531,-0.030210539698601,-0.0025550725404173],[0.04667317122221,-0.093272894620895,-0.08304501324892],[-0.047927141189575,0.041566852480173,-0.054857674986124]],[[0.051346831023693,0.0067770988680422,-0.015858439728618],[0.041900284588337,-0.0099968062713742,0.067301064729691],[0.095379889011383,-0.050218310207129,0.013611139729619]],[[-0.014999756589532,-0.022656608372927,0.020881110802293],[-0.065914966166019,0.045847665518522,-0.06761858612299],[-0.060972049832344,-0.013903710059822,-0.015854826197028]],[[0.092644840478897,0.033910401165485,-0.011101513169706],[-0.14344362914562,-0.086512140929699,0.012266940437257],[-0.022683292627335,0.013683261349797,-0.00045198440784588]],[[-0.011502425186336,-0.060144111514091,-0.013953473418951],[-0.056673817336559,-0.090305007994175,-0.042465206235647],[-0.00048869085730985,0.019348410889506,-0.015481404028833]],[[-0.036257207393646,0.024678593501449,-0.019538104534149],[0.086745664477348,-0.10000800341368,-0.062590293586254],[-0.0040706163272262,0.14590266346931,0.13261735439301]],[[0.012650731950998,0.0045444145798683,0.01600775308907],[-0.048918936401606,0.011639101430774,0.013211247511208],[-0.020338602364063,0.0097194090485573,0.0039003707934171]],[[-0.10037434101105,0.13987591862679,-0.060096237808466],[0.047812823206186,0.032528415322304,-0.013068821281195],[-0.038878384977579,0.021562609821558,-0.079148411750793]],[[0.033802162855864,0.01245554164052,-0.080892853438854],[-0.020756859332323,0.093666136264801,-0.0161710716784],[-0.0010398873127997,-0.024141566827893,0.061666898429394]],[[-0.0013854216085747,0.026014115661383,-0.058783113956451],[-0.078736633062363,-0.095583066344261,-0.043066713958979],[0.10559685528278,0.10936689376831,0.026561116799712]],[[-0.047125548124313,0.032307647168636,0.00089035031851381],[0.0855493247509,-0.048890460282564,0.01681256107986],[0.023429170250893,0.050626877695322,-0.056060779839754]]],[[[0.028595635667443,-0.044689420610666,0.080325439572334],[0.046356435865164,0.035436946898699,0.079603210091591],[0.20435713231564,0.054502364248037,0.032762914896011]],[[-0.16424116492271,-0.107272580266,-0.016394268721342],[-0.068712301552296,-0.037166446447372,0.0078348787501454],[-0.10265290737152,-0.056443888694048,0.021318657323718]],[[-0.01460229139775,-0.070563472807407,-0.085743688046932],[-0.047611460089684,-0.028248073533177,-0.025616521015763],[-0.017966978251934,0.063225768506527,0.041856035590172]],[[0.010658526793122,0.090221464633942,0.055738527327776],[-0.036946646869183,-0.069362603127956,0.021753506734967],[-0.10312756896019,-0.20580026507378,-0.021779682487249]],[[0.059878792613745,-0.099677890539169,0.044243570417166],[-0.045219846069813,0.024898864328861,0.087014585733414],[-0.0036980952136219,-0.10029999166727,-0.05520348623395]],[[-0.014749528840184,-0.040274750441313,-0.10846402496099],[0.0080586830154061,-0.036015342921019,-0.00041393810533918],[0.054024539887905,0.045808129012585,0.029777895659208]],[[-0.063037380576134,-0.11461549252272,-0.021011907607317],[-0.033010371029377,-0.076586812734604,0.1039134785533],[-0.01823902130127,0.035525064915419,-0.049360070377588]],[[0.035602685064077,-0.081214159727097,-0.052806500345469],[-0.030443456023932,-0.12072280049324,0.0057526212185621],[-0.17132262885571,-0.10227847844362,0.054117865860462]],[[0.046749513596296,0.015333360061049,-0.015625573694706],[-0.018833961337805,-0.098044633865356,0.0049567865207791],[0.056374125182629,-0.022548619657755,0.017698811367154]],[[0.048957962542772,0.12850506603718,-0.017260503023863],[0.041963398456573,0.035409897565842,-0.011397914029658],[-0.017153669148684,-0.05310283228755,0.00028673186898232]],[[-0.024367520585656,0.042318873107433,0.20358295738697],[-0.02379702962935,0.046610146760941,-0.042089208960533],[-0.023350302129984,0.0079290298745036,-0.038824811577797]],[[-0.15040448307991,0.046608868986368,-0.058181311935186],[-0.0034024813212454,-0.01096005178988,-0.010436695069075],[-0.0087800296023488,-0.071590445935726,-0.023195840418339]],[[0.074487298727036,-0.020984333008528,0.035314738750458],[0.068310208618641,-0.0059353872202337,0.057502258569002],[0.11841821670532,-0.044001344591379,0.035644799470901]],[[0.026536542922258,0.024807725101709,-0.012054109014571],[0.0020975002553314,0.022910797968507,0.088053472340107],[-0.030322575941682,-0.12052916735411,-0.018544444814324]],[[0.013546067290008,-0.066536605358124,-0.056395586580038],[-0.035570036619902,-0.051862481981516,-0.0010071354918182],[0.002251838799566,0.05762143433094,-0.0093546835705638]],[[0.013350573368371,0.0055562872439623,-0.045788422226906],[-0.0042628096416593,-0.012274683453143,-0.023665077984333],[-0.01123417634517,0.094984650611877,0.033851016312838]],[[-0.00061747984727845,0.028952311724424,0.11681732535362],[0.085792921483517,0.070355780422688,0.031134065240622],[0.071994714438915,0.0073811975307763,0.0073466934263706]],[[-0.032838582992554,-0.010530843399465,-0.024853663519025],[-0.055050205439329,0.039633136242628,0.03301826864481],[-0.062592752277851,-0.089457675814629,0.012303978204727]],[[0.0033029252663255,-0.049923490732908,0.080138526856899],[-0.035076290369034,0.014982184395194,0.011534280143678],[-0.033469967544079,0.064265124499798,-0.0049528097733855]],[[0.041277680546045,-0.03090856038034,-0.013374738395214],[-0.029214307665825,-0.0040668952278793,0.014324500225484],[-0.039530735462904,0.05200158432126,0.021111655980349]],[[0.00028322279104032,-0.12518145143986,-0.2541851401329],[0.059739980846643,-0.001755878678523,-0.050379652529955],[0.0040548667311668,0.094809271395206,0.040277842432261]],[[0.12998470664024,-0.08193202316761,-0.014533904381096],[0.1295793056488,-0.071235276758671,0.060815520584583],[-0.15401117503643,-0.19093434512615,-0.063396461308002]],[[0.023048434406519,-0.10918927937746,-0.033222671598196],[-0.08004005253315,-0.012141370214522,-0.0039685615338385],[0.032894793897867,0.038017187267542,0.012483712285757]],[[0.044794913381338,0.040294349193573,-0.0024763366673142],[0.048846319317818,0.031327184289694,0.14871674776077],[-0.012984029948711,0.041287891566753,0.050480574369431]],[[-0.010734140872955,0.069479934871197,-0.06616035848856],[0.047298058867455,0.037209805101156,-0.028344508260489],[0.027107585221529,0.0072505325078964,-0.076663121581078]],[[-0.014908757060766,0.062957435846329,-0.037011027336121],[0.051793627440929,0.086152009665966,-0.018641205504537],[0.010049989446998,-0.013846022076905,-0.017035007476807]],[[0.03082125261426,-0.059014089405537,0.060962077230215],[0.069891072809696,-0.05101191624999,0.1042632907629],[0.052030399441719,0.019553564488888,0.074645347893238]],[[-0.059901259839535,-0.11645835638046,-0.02062182687223],[-0.034628335386515,0.0087637240067124,-0.0021350139286369],[-0.018578357994556,0.013690437190235,-0.1135400980711]],[[-0.017968425527215,0.01185476500541,0.10388866066933],[0.018153961747885,0.059897869825363,0.0061623095534742],[-0.0049344869330525,-0.0081436019390821,-0.11064021289349]],[[-0.0063818627968431,-0.097857303917408,-0.08809407800436],[0.051325816661119,0.049871135503054,0.075260370969772],[0.070575587451458,0.065347589552402,0.089764811098576]],[[-0.0039288182742894,-0.0040850969962776,-0.12755110859871],[0.034689757972956,-0.094027906656265,-0.021291144192219],[-0.079784050583839,-0.015058893710375,0.059393286705017]],[[0.038217917084694,0.012366866692901,-0.084707073867321],[0.076440632343292,-0.10672284662724,0.084516689181328],[-0.13338829576969,-0.18931101262569,0.03483484312892]],[[0.058940399438143,0.012490347959101,0.049307264387608],[-0.0097980201244354,0.010039360262454,-0.052068598568439],[0.0061338916420937,0.0057158502750099,0.044972330331802]],[[0.11342361569405,0.029291884973645,-0.030060097575188],[0.0055783116258681,-0.023461513221264,-0.045129645615816],[0.088886082172394,0.041986234486103,0.0029697089921683]],[[-0.0073284143581986,-0.080305553972721,-0.153519064188],[0.098947934806347,-0.024158284068108,-0.033757336437702],[0.038693364709616,0.045065995305777,-0.023400908336043]],[[-0.052640810608864,-0.0059897382743657,-0.081220738589764],[0.1101765781641,-0.00071095710154623,-0.05245303735137],[0.051166858524084,0.0088548604398966,0.028430948033929]],[[0.014351156540215,0.020233180373907,-0.10834331065416],[0.0064108846709132,-0.080189898610115,0.066591747105122],[-0.036518882960081,-0.0042470721527934,-0.0053539853543043]],[[-0.0025901915505528,0.042609766125679,-0.033506885170937],[0.1154180765152,-0.045276049524546,-0.050572723150253],[0.081728249788284,0.068861544132233,-0.12133129686117]],[[-0.071519114077091,0.037667088210583,0.023537518456578],[0.066343829035759,0.029891608282924,-0.075587652623653],[-0.11674177646637,0.015216159634292,-0.077958688139915]],[[0.024681068956852,0.056993961334229,0.036592539399862],[0.016708053648472,0.07165789604187,-0.0049783797003329],[-0.029583156108856,0.040454559028149,-0.01335280854255]],[[-0.011348539032042,-0.020333796739578,0.057925902307034],[-0.022731283679605,-0.0087266843765974,-0.0084252031520009],[-0.037942480295897,0.042272374033928,-0.011274346150458]],[[0.013608769513667,-0.06532745808363,-0.018265426158905],[-0.0076640080660582,0.058122236281633,0.010244477540255],[0.10387489199638,0.13560153543949,-0.08958949893713]],[[0.020701672881842,0.020996812731028,0.04873501509428],[0.020344642922282,0.049005441367626,-0.042049486190081],[0.089406706392765,0.056567694991827,0.077510081231594]],[[0.077263668179512,0.016824772581458,-0.12581118941307],[-0.089463047683239,-0.028561165556312,0.029751822352409],[-0.093158133327961,0.016802353784442,0.0099401390179992]],[[-0.039662908762693,-0.036433190107346,-0.037676744163036],[-0.043917149305344,-0.041629463434219,-0.015188621357083],[-0.12964582443237,-0.026523856446147,0.014631783589721]],[[-0.0015341233229265,0.054006643593311,0.09484089165926],[0.038983732461929,-0.0040098228491843,0.016306951642036],[0.11628865450621,0.073873527348042,-0.0023738627787679]],[[-0.0050673699006438,-0.040647264569998,-0.019008303061128],[0.065110728144646,0.0093720154836774,-0.055326584726572],[0.050900101661682,0.015164555050433,0.028394928202033]],[[0.022855436429381,-0.05002524331212,-0.12917193770409],[-0.046937711536884,-0.051092676818371,-0.033532936125994],[-0.054049618542194,-0.14525701105595,0.015938175842166]],[[-0.0019744934979826,0.022663313895464,-0.010938411578536],[-0.088891848921776,-0.02419001236558,0.046821065247059],[-0.17943795025349,-0.10203554481268,-0.022701218724251]],[[-0.012703484855592,-0.13854451477528,-0.086486831307411],[0.063618004322052,-0.019439740106463,-0.022349588572979],[0.052548494189978,0.025698509067297,0.0096281711012125]],[[-0.08211424946785,-0.088874615728855,0.10758826881647],[-0.020419718697667,0.12539947032928,-0.035464223474264],[0.0885274335742,-0.052259504795074,0.022235848009586]],[[0.12154570966959,-0.07194160670042,0.058032590895891],[0.075414888560772,-0.090840063989162,0.033499620854855],[0.065368644893169,-0.1310999840498,0.019835045561194]],[[-0.086490415036678,-0.012425842694938,-0.047575414180756],[0.011665472760797,-0.019896846264601,-0.054777607321739],[0.032373156398535,-0.05526414513588,-0.010410006158054]],[[-0.08923751860857,0.013783785514534,-0.1314782500267],[-0.025303836911917,-0.020470809191465,0.0064902007579803],[-0.0021595382131636,0.031715631484985,-0.002525728661567]],[[-0.054773889482021,0.025490956380963,-0.13151073455811],[0.01036527287215,0.035179264843464,-0.089628867805004],[0.041227679699659,-0.0088808825239539,-0.094828113913536]],[[0.048568900674582,0.028112413361669,-0.11199045181274],[-0.04285529628396,0.0038070555310696,-0.01931568607688],[0.086462296545506,0.0036403450649232,-0.0050772726535797]],[[-0.01089592371136,0.0045220158062875,0.0031045479699969],[-0.031985715031624,0.082204043865204,0.0066641084849834],[0.090120390057564,0.049936588853598,-0.0077870315872133]],[[-0.0059483340010047,-0.021186660975218,0.064302340149879],[-0.093478083610535,0.028630323708057,-0.012736027128994],[-0.14028196036816,-0.039894204586744,-0.1513804346323]],[[-0.15406233072281,0.059921164065599,0.16003185510635],[-0.021957768127322,0.075584575533867,0.026111498475075],[-0.045920085161924,0.12069498002529,-0.014816312119365]],[[-0.022523095831275,0.021725185215473,-0.0043534012511373],[0.024154966697097,0.021885693073273,-0.015814855694771],[0.035100799053907,-0.024917425587773,-0.028929438441992]],[[0.050378073006868,-0.059070106595755,-0.076289109885693],[-0.010374859906733,0.048349156975746,0.032482273876667],[-0.02428862825036,-0.084535636007786,0.0082572307437658]],[[-0.041228868067265,-0.19400806725025,-0.12620836496353],[0.046054765582085,-0.0062835454009473,0.072424508631229],[0.012224691919982,0.019338112324476,-0.027959380298853]],[[-0.028639193624258,0.0036338134668767,0.01977027207613],[-0.048046577721834,-0.045815005898476,0.062577560544014],[0.043880555778742,-0.042583778500557,0.019662702456117]],[[-0.01091187633574,-0.18221509456635,-0.068455465137959],[-0.10560724884272,-0.016889283433557,-0.021514713764191],[-0.083155654370785,0.02710322290659,0.013202930800617]]],[[[0.030950685963035,-0.02648938074708,-0.021894078701735],[0.02308994717896,-0.0020490896422416,-0.038897346705198],[-0.11245133727789,0.04018970951438,0.019184112548828]],[[0.057452075183392,-0.011824927292764,-0.083854742348194],[-0.013608335517347,-0.039258819073439,-0.031343284994364],[-0.015439474023879,0.053908750414848,-0.081577986478806]],[[-0.017841497436166,0.011877242475748,-0.020128335803747],[-0.055770993232727,-0.024065470322967,0.014238544739783],[-0.060415614396334,0.029526256024837,0.03570694103837]],[[0.024677738547325,-0.01732661947608,0.020335441455245],[-0.0045101591385901,0.034669984132051,-0.00540961464867],[-0.15519250929356,-0.00017010883311741,-0.0076582012698054]],[[0.011785782873631,-0.051685441285372,-0.021757520735264],[-0.11233282089233,0.010888763703406,0.063668377697468],[0.024240102618933,-0.034337569028139,-0.023202551528811]],[[-0.019024221226573,0.041929133236408,0.10735645890236],[-0.14432112872601,-0.00041830938425846,0.084051802754402],[-0.11816700547934,-0.0633235424757,-0.061440911144018]],[[-0.026192557066679,0.10831435024738,-0.004128725733608],[0.050088867545128,0.047302793711424,0.0094829434528947],[0.031820297241211,0.01481802854687,-0.016072116792202]],[[0.032394461333752,0.056058473885059,-0.017025966197252],[0.035864144563675,-0.025864396244287,-0.043874885886908],[-0.031999669969082,-0.10315345972776,0.017704335972667]],[[0.063474290072918,0.06389032304287,0.063419193029404],[-0.073532946407795,-0.03308717533946,-0.018427001312375],[-0.051219299435616,-0.060690395534039,0.018547212705016]],[[-0.094985395669937,0.02385102212429,0.092686414718628],[-0.047801245003939,0.0099770352244377,0.039658468216658],[0.10075010359287,0.020988497883081,-0.018793404102325]],[[-0.023218570277095,-0.057671971619129,-0.15111266076565],[-0.088408514857292,-0.032498769462109,0.099312789738178],[0.010203522630036,-0.041027255356312,0.0036477989051491]],[[-0.12224554270506,-0.01706057228148,-0.028182649984956],[-0.21329602599144,-0.0098843919113278,-0.027842013165355],[-0.22147791087627,-0.013688297942281,0.018542973324656]],[[0.038495119661093,-0.030642528086901,0.077174350619316],[0.0073057124391198,0.047109141945839,0.0049834032543004],[-0.12221374362707,-0.03011935763061,-0.0022416373249143]],[[0.0050320103764534,0.034916561096907,-0.0086486488580704],[-0.046530570834875,-0.050672758370638,-0.032804556190968],[0.0055613955482841,-0.064186558127403,-0.024043463170528]],[[0.008321319706738,-0.0093087898567319,-0.10421025753021],[-0.030574133619666,-0.013711791485548,-0.042138747870922],[0.032327175140381,-0.056022785604,-0.030075635761023]],[[0.022160036489367,-0.00066148571204394,0.043320331722498],[0.10412444919348,-0.00080142734805122,-0.0047382502816617],[0.043896302580833,0.072817429900169,0.050428602844477]],[[-0.052819550037384,-0.13053384423256,-0.019250022247434],[-0.10278212279081,-0.064189665019512,-0.047627110034227],[-0.097022704780102,-0.020168118178844,-0.016874816268682]],[[-0.036017004400492,0.031742196530104,0.014617252163589],[-0.046616274863482,-0.027169894427061,-0.017934996634722],[-0.11672658473253,-0.047621943056583,-0.022379925474524]],[[-0.022003630176187,-0.060945518314838,-0.0046330066397786],[-0.009157158434391,-0.026900958269835,0.072295807301998],[0.021707076579332,0.027151510119438,-0.059466294944286]],[[0.012569631449878,-0.044475436210632,-0.0011790506541729],[0.019854601472616,-0.007577492389828,0.0076228850521147],[0.041132614016533,-0.012346666306257,-0.026472214609385]],[[-0.049586944282055,0.035342786461115,0.17537203431129],[0.03086719289422,-0.071206443011761,0.017053367570043],[0.034877076745033,-0.10706993937492,-0.045750539749861]],[[0.10123565047979,0.13587194681168,0.038461804389954],[-0.1324615329504,0.024379061535001,0.05598583444953],[0.011321851983666,0.012395276688039,0.049080438911915]],[[-0.024476369842887,-0.081328563392162,-0.026845492422581],[-0.023431157693267,0.085836581885815,0.002606235910207],[-0.16180182993412,0.072028174996376,-0.021633615717292]],[[0.074000984430313,-0.031538490206003,-0.012304377742112],[0.096108458936214,0.10839757323265,0.085211515426636],[0.17635132372379,0.1786148250103,0.002529219025746]],[[0.0055214879103005,-0.13173967599869,-0.078640975058079],[-0.0023222202435136,-0.063050925731659,-0.050531297922134],[-0.13183395564556,-0.041400771588087,-0.043498527258635]],[[-0.0065092509612441,0.02459879592061,0.0081313671544194],[0.006053616758436,-0.064981788396835,0.01941879093647],[0.039615266025066,0.07126884162426,0.06420561671257]],[[-0.019215805456042,0.080972865223885,0.030540391802788],[-0.014557522721589,-0.10590083897114,-0.022911684587598],[0.02721281349659,-0.022823352366686,0.028232969343662]],[[-0.045162860304117,-0.11295552551746,-0.065549314022064],[-0.06164662912488,-0.022432202473283,0.033635761588812],[-0.027391906827688,-0.015908502042294,-0.04718379676342]],[[-0.0041683362796903,-0.08412392437458,0.0029430887661874],[-0.040254537016153,0.016982322558761,-0.1031079441309],[-0.071220353245735,0.052850171923637,-0.084161438047886]],[[0.028742341324687,0.092936903238297,0.053284205496311],[-0.013973539695144,-0.035754181444645,0.012691083364189],[0.030743777751923,-0.0057444581761956,0.04623419418931]],[[0.040670827031136,0.011754125356674,-0.059644673019648],[-0.063069887459278,0.035805411636829,-0.031031042337418],[0.077472701668739,0.00071574287721887,0.020905377343297]],[[-0.20291455090046,-0.044050488620996,-0.072336256504059],[-0.035830922424793,0.033513143658638,-0.0065104383975267],[-0.19701433181763,-0.041497435420752,-0.036212272942066]],[[-0.016437083482742,-0.027857143431902,0.04883111640811],[-0.015728369355202,-0.041308645159006,0.037718586623669],[0.027479492127895,-0.043805971741676,0.011579220183194]],[[0.017366511747241,0.093137435615063,0.085533477365971],[0.027457369491458,0.097806699573994,0.065728589892387],[-0.09493263065815,0.021400984376669,0.0093251913785934]],[[-0.21996314823627,-0.080694168806076,-0.084618248045444],[-0.094870664179325,-0.036160223186016,-0.060338623821735],[-0.10651522129774,-0.035399880260229,-0.048673417419195]],[[0.061781577765942,0.016743563115597,-0.056156530976295],[0.097195811569691,0.052625134587288,-0.048827547580004],[-0.0069448663853109,0.045741364359856,0.045740447938442]],[[0.030811473727226,0.020203337073326,0.057916268706322],[-0.00089397694682702,0.0092190457507968,0.045091070234776],[0.075832195580006,0.029275326058269,0.055159501731396]],[[0.11076945066452,-0.083945922553539,0.089197561144829],[0.056450884789228,-0.014938808977604,0.017641579732299],[0.012973024509847,-0.11462768167257,0.083565756678581]],[[-0.15300390124321,-0.13422660529613,-0.057252883911133],[-0.021096915006638,0.037647418677807,0.023134117946029],[-0.077520534396172,-0.046281564980745,0.057286396622658]],[[-0.024509681388736,-0.058228943496943,-0.21601650118828],[-0.03373833745718,0.0061916220001876,-0.016196759417653],[-0.11177977919579,-0.11515609174967,-0.0037561366334558]],[[-0.10817652195692,-0.067961893975735,0.066150046885014],[0.039918888360262,-0.057677626609802,0.071607574820518],[0.10806493461132,-0.022833311930299,-0.0029958738014102]],[[0.070179037749767,0.075972758233547,-0.043479364365339],[0.011803838424385,-0.095541588962078,0.014507999643683],[0.049924846738577,0.0081503419205546,-0.033588990569115]],[[0.036370478570461,0.10811117291451,-0.02795934304595],[-0.012919071130455,0.0081947045400739,0.046354729682207],[0.042342621833086,0.061657100915909,0.10915577411652]],[[-0.028684521093965,0.040055021643639,0.017186310142279],[-0.034139540046453,0.008342320099473,0.095757976174355],[-0.10300499945879,-0.026194902136922,-0.087988838553429]],[[0.020858731120825,0.05702069029212,0.095561631023884],[-0.01224032137543,-0.07035855203867,-0.059772718697786],[-0.044072464108467,-0.014014577493072,-0.0084818145260215]],[[0.051594913005829,-0.026558855548501,-0.16561342775822],[-0.097872771322727,0.0093753896653652,-0.014740739949048],[-0.1392900198698,-0.068418845534325,-0.01596662402153]],[[0.077976398169994,-0.055651072412729,-0.012344169430435],[-0.059724934399128,0.0015760122332722,0.020521441474557],[-0.0036547426134348,-0.0088392617180943,-0.021570973098278]],[[-0.0062199435196817,-0.043116427958012,0.09541592746973],[-0.065227866172791,-0.039815284311771,-0.039760615676641],[-0.070674553513527,-0.027469607070088,-0.12242068350315]],[[0.065986454486847,0.046630192548037,-0.09605298191309],[0.056668739765882,-0.075415290892124,0.030387977138162],[-0.10263764858246,-0.094915010035038,-0.015978904440999]],[[0.006425422616303,0.045490704476833,-0.099874265491962],[-0.12887208163738,0.11228282004595,-0.039942748844624],[-0.17143043875694,0.021081181243062,-0.00062838924350217]],[[0.02854485437274,0.0088849207386374,-0.057510700076818],[-0.055693220347166,0.0029264986515045,0.034677594900131],[-0.017834207043052,-0.057874891906977,0.055356346070766]],[[0.050896044820547,0.022103233262897,-0.16915185749531],[0.13035203516483,0.085315883159637,-0.035325545817614],[0.27451926469803,0.15783005952835,-0.022138208150864]],[[0.036012567579746,-0.060805682092905,0.086680740118027],[0.01162572670728,-0.039626739919186,-0.03295998647809],[-0.017177218571305,-0.019625728949904,-0.036096513271332]],[[-0.014390211552382,0.031161895021796,0.06627381592989],[-0.0083821769803762,-0.002987673971802,0.084575571119785],[0.015648016706109,0.061622120440006,0.04106568172574]],[[-0.0082230539992452,0.083145514130592,0.0077002090401947],[0.1040118932724,-0.00035044536343776,-0.12936748564243],[-0.21490548551083,-0.10789629817009,-0.068141475319862]],[[-0.081677556037903,-0.0433782748878,0.078194476664066],[-0.019007816910744,0.023841992020607,0.041657727211714],[0.040612529963255,0.024789489805698,-0.033875118941069]],[[-0.0030254193115979,-0.025500478222966,0.013693371787667],[0.0026570954360068,0.036489449441433,-0.021655235439539],[-0.023773394525051,0.093039840459824,0.01331343036145]],[[0.045670609921217,-0.053997810930014,0.070416368544102],[0.049779728055,-0.008073054254055,0.091913059353828],[-0.075796276330948,-0.086542084813118,-0.0073438766412437]],[[0.019598359242082,-0.045309945940971,-0.071489773690701],[0.14749181270599,0.11523149162531,0.034508999437094],[0.1766943782568,0.028729364275932,-0.012169660069048]],[[-0.02855322510004,0.070973813533783,0.035107392817736],[-0.031202394515276,0.014532236382365,-0.00074692873749882],[-0.043958652764559,-0.010368376970291,0.0071722622960806]],[[-0.0049057165160775,0.0097457636147738,0.020494885742664],[-0.034089110791683,0.060648385435343,0.041679285466671],[0.026735952124,-0.016586119309068,0.019799504429102]],[[-0.038357302546501,-0.065042428672314,0.010408484376967],[-0.035465855151415,-0.010667026974261,-0.049537342041731],[-0.01586482860148,0.053900308907032,0.015691803768277]],[[0.095746494829655,0.038898758590221,-0.097841814160347],[-0.018094459548593,0.010986903682351,0.00076862523565069],[-0.059172458946705,0.06792476773262,0.061228819191456]],[[-0.049650516360998,-0.10220058262348,0.17720450460911],[-0.072671912610531,-0.051990143954754,0.069319054484367],[-0.063820764422417,0.030683413147926,-0.021731717512012]]],[[[-0.07623353600502,-0.11828169226646,-0.0025948116090149],[0.016463944688439,0.12121544033289,0.059023264795542],[0.049720168113708,-0.066167533397675,0.097277909517288]],[[-0.023899998515844,-0.0032867444679141,-0.0088082868605852],[0.030614290386438,0.10970290005207,-0.01700989715755],[-0.052705124020576,0.023652443662286,-0.17153619229794]],[[-0.093184486031532,-0.030709818005562,0.0034222356043756],[-0.086072079837322,-0.032531004399061,-0.028768772259355],[-0.0057698860764503,-0.11591768264771,0.061533700674772]],[[-0.0062932125292718,0.12360793352127,0.012906185351312],[-0.037966523319483,0.0090957209467888,0.033897709101439],[-0.060021672397852,-0.064375169575214,0.041737727820873]],[[-0.038625728338957,0.13523975014687,0.0053653954528272],[-0.018779173493385,-0.059162795543671,-0.089697502553463],[0.0092985723167658,0.011920558288693,-0.0067826746962965]],[[-0.069449953734875,0.042831465601921,-0.022517250850797],[-0.059227924793959,-0.019356522709131,0.0081125162541866],[0.060809228569269,-0.15975838899612,0.037034641951323]],[[-0.047987159341574,-0.073351249098778,0.10637870430946],[-0.033351227641106,0.017727673053741,0.011327983811498],[0.067378602921963,-0.057246651500463,-0.076957307755947]],[[-0.046327453106642,0.068372823297977,0.017055904492736],[0.0069826235994697,-0.045617889612913,-0.068007186055183],[0.0043462035246193,-0.081267066299915,0.073274478316307]],[[-0.035132642835379,-0.047367814928293,-0.0095298495143652],[0.0095665296539664,-0.012283234857023,-0.052770614624023],[0.053016342222691,0.14240585267544,0.010060871019959]],[[0.002065519336611,-0.062110390514135,-0.020847704261541],[0.0094711743295193,0.013553465716541,-0.048094637691975],[0.12478842586279,-0.12108922749758,0.00073570106178522]],[[0.034940980374813,-0.045466613024473,0.0043319594115019],[-0.00085271283751354,0.034748177975416,0.048338800668716],[-0.034528490155935,0.08286115527153,0.021189875900745]],[[-0.071263670921326,-0.0059659602120519,-0.029133576899767],[0.0077419066801667,0.030545691028237,0.071928568184376],[0.10175011307001,0.042602244764566,0.05011348053813]],[[0.096182942390442,0.04474775120616,0.10110726952553],[-0.060174949467182,-0.048130627721548,-0.24329167604446],[0.042470343410969,-0.012500397861004,0.014096136204898]],[[0.106725089252,-0.13380570709705,-0.095012158155441],[0.0037253517657518,0.0077461744658649,0.089794956147671],[-0.059665732085705,0.053971007466316,0.014581612311304]],[[0.0097730420529842,-0.069368913769722,0.063006155192852],[-0.071492195129395,0.033072371035814,-0.0022959625348449],[0.027127658948302,-0.04714622721076,0.059321843087673]],[[0.0098394369706511,-0.012302215211093,-0.058003194630146],[-0.0040117832832038,0.021057372912765,-0.11510030925274],[-0.036765873432159,0.002363472012803,0.009701881557703]],[[0.045644216239452,-0.10133623331785,0.059200342744589],[-0.087813504040241,-0.035860750824213,-0.050255082547665],[-0.031501214951277,0.11225775629282,0.10449369251728]],[[-0.044563289731741,-0.076176255941391,-0.007215834222734],[0.061001092195511,0.0054204170592129,-0.069161482155323],[0.040347158908844,0.077504605054855,-0.0068883020430803]],[[0.044967625290155,0.062626354396343,-0.035684030503035],[0.10598011314869,-0.023583684116602,-0.094468258321285],[0.079883210361004,-0.095309212803841,-0.02212099544704]],[[0.048430167138577,-0.043370079249144,-0.017004705965519],[-0.019533267244697,-0.025621073320508,0.049132980406284],[-0.027800034731627,0.02243672311306,0.053438015282154]],[[-0.18308743834496,-0.19173350930214,-0.027623761445284],[-0.063697047531605,-0.010338420979679,-0.040851160883904],[-0.0080716852098703,0.0700858309865,-0.026733236387372]],[[-0.13247747719288,-0.036134246736765,-0.046795569360256],[-0.01107654441148,-0.037757337093353,-0.13841924071312],[-0.040270045399666,0.0002604937471915,-0.08709405362606]],[[-0.01105104200542,0.0090231811627746,0.068175181746483],[-0.13360071182251,0.0098414309322834,0.008868396282196],[-0.031571228057146,-0.039992611855268,-0.019452860578895]],[[0.056545734405518,0.1509565114975,0.19471719861031],[-0.016057090833783,-0.0050786514766514,-0.013701888732612],[0.0247259773314,-0.055467952042818,-0.072683058679104]],[[-0.19982215762138,-0.056796137243509,-0.022866206243634],[0.046761833131313,0.11605135351419,-0.055775679647923],[0.12257798761129,-0.021596517413855,-0.12375317513943]],[[-0.048318184912205,0.048309180885553,0.0092491349205375],[0.037037197500467,0.14130200445652,0.07479253411293],[0.032695278525352,0.0033653355203569,0.015013378113508]],[[0.012407345697284,0.015939505770802,-0.057275205850601],[0.028187073767185,0.070558190345764,0.096451096236706],[-0.018003404140472,0.027019161731005,0.077593378722668]],[[-0.027798837050796,-0.052811417728662,0.08905615657568],[-0.046064365655184,-0.087727509438992,0.090152032673359],[0.059353809803724,-0.14789171516895,0.049247495830059]],[[-0.072611175477505,0.071873158216476,-0.0058756438083947],[0.01606004871428,0.17971228063107,0.045857094228268],[-0.018865713849664,-0.034565668553114,-0.066712439060211]],[[0.056207273155451,-0.12168823182583,-0.10089261829853],[0.074172526597977,0.084452442824841,0.042135555297136],[0.039015203714371,0.037589497864246,0.048021238297224]],[[0.0050850682891905,-0.050811186432838,-0.048488654196262],[-0.0097825229167938,0.063931472599506,0.00076169235398993],[0.041375763714314,-0.05947183445096,0.050249401479959]],[[-0.14098496735096,-0.0076806754805148,-0.016948798671365],[-0.01687335409224,-0.11180182546377,-0.069451689720154],[0.078507952392101,-0.0021208364050835,0.17109449207783]],[[0.032749015837908,0.030649732798338,0.0041510667651892],[-0.089004211127758,0.013793913647532,-0.007931555621326],[-0.052607875317335,0.0067111342214048,0.037088442593813]],[[0.042889215052128,-0.019071880728006,-0.050027795135975],[0.038564924150705,0.0098329354077578,-0.045309495180845],[-0.16761423647404,-0.24471306800842,-0.11968879401684]],[[0.013385313563049,-0.1102643981576,0.0065965233370662],[0.092847652733326,0.05690848454833,-0.047986451536417],[0.025591097772121,-0.025364527478814,-0.10070610046387]],[[-0.16036260128021,0.00096085376571864,-0.0087410332635045],[0.010590728372335,-0.11348932981491,-0.020618150010705],[-0.0038650226779282,-0.14175894856453,-0.035960130393505]],[[0.012407572008669,0.018981952220201,-0.056457672268152],[-0.019501488655806,-0.029493514448404,-0.0065433285199106],[-0.054014589637518,-0.012353547848761,0.011135012842715]],[[0.13413706421852,-0.018770510330796,-0.0091298976913095],[0.061935130506754,0.016664939001203,-0.050425935536623],[0.025013698264956,-0.096321672201157,-0.10269271582365]],[[-0.017011443153024,0.064476490020752,0.068356081843376],[-0.0070867319591343,-0.04645898193121,0.027343166992068],[-0.00074382830644026,-0.059945710003376,0.012539165094495]],[[-0.056919895112514,-0.064056642353535,-0.072775475680828],[-0.094186902046204,-0.060656353831291,-0.023545125499368],[0.043307546526194,-0.065909653902054,0.0097734313458204]],[[-0.07549637556076,-0.12012320011854,0.01255496032536],[-0.059969138354063,0.03554454818368,0.058791324496269],[-0.031370878219604,0.023485545068979,-0.0075370464473963]],[[0.099636800587177,0.00084228831110522,-0.033579245209694],[0.0057564708404243,-0.012500416487455,-0.034503802657127],[0.08938080817461,0.061917275190353,-0.02025843411684]],[[-0.040749408304691,0.087854757905006,-0.016122372820973],[0.0012953726109117,-0.037333182990551,-0.023689292371273],[0.03466660156846,0.0042254365980625,-0.02380957454443]],[[0.02565786242485,0.053220197558403,0.0554019510746],[-0.012286840938032,0.0018568217055872,0.0092971352860332],[0.01370042283088,-0.10080695152283,-0.0095959026366472]],[[0.14130797982216,-0.060088124126196,0.037305817008018],[-0.022023925557733,0.012353991158307,0.007293104659766],[-0.059778708964586,-0.068252600729465,0.044012024998665]],[[-0.012385722249746,0.060298565775156,-0.038736339658499],[-0.04467599093914,0.01318331900984,-0.021224403753877],[-0.020507205277681,0.0036953072994947,0.091795958578587]],[[-0.0063105747103691,-0.034697405993938,0.06102953478694],[0.038961820304394,0.12619797885418,-0.048723697662354],[-0.013965791091323,-0.017372766509652,0.10157208889723]],[[0.0084079513326287,-0.045865528285503,0.090574629604816],[0.058760713785887,-0.12453386187553,0.0070519573055208],[0.05358475074172,0.02605021186173,-0.017431473359466]],[[-0.067784756422043,0.025250798091292,0.048546645790339],[-0.08764536678791,0.012952049262822,0.032371789216995],[0.013817478902638,0.034944754093885,0.030087739229202]],[[-0.12512670457363,0.015925701707602,-0.057021182030439],[-0.16294990479946,-0.073816150426865,0.047386329621077],[-0.076990284025669,-0.070419751107693,0.038920883089304]],[[-0.052852530032396,0.01172699406743,-0.002535937121138],[0.041623447090387,-0.068628951907158,-0.0010394644923508],[-0.098102770745754,0.033104233443737,-0.048212822526693]],[[0.027704913169146,0.14456725120544,-0.04858185723424],[0.0043650823645294,-0.061612129211426,0.19424273073673],[-0.057842656970024,-0.022101849317551,0.15220214426517]],[[0.025924416258931,-0.049149218946695,-0.032374709844589],[-0.019456122070551,-0.097876876592636,0.027809528633952],[0.035154290497303,-0.10767588019371,0.084214136004448]],[[-0.018582047894597,-0.064190447330475,-0.010606713593006],[-0.010571606457233,0.0072737615555525,0.040838617831469],[0.0455511957407,0.0074340607970953,-0.040366612374783]],[[0.07889711856842,-0.072715848684311,0.038656953722239],[-0.0050544976256788,0.015923965722322,-0.088270120322704],[-0.055870901793242,0.025908267125487,-0.0019126337720081]],[[0.02888511121273,0.11278300732374,-0.070037022233009],[0.07422162592411,-0.00071382895112038,-0.10070402175188],[-0.084773898124695,0.057301107794046,0.017304616048932]],[[-0.040895223617554,-0.039424117654562,0.029509196057916],[-0.023582363501191,0.053033176809549,0.070042222738266],[-0.046706523746252,0.067904323339462,0.054013337939978]],[[0.041907109320164,-0.036566376686096,-0.052855528891087],[-0.014488648623228,0.026484180241823,0.0047633019275963],[-0.10888355970383,-0.064613580703735,-0.12747482955456]],[[0.044352065771818,0.00027927861083299,0.094031743705273],[-0.046040996909142,-0.015849823132157,-0.04522867500782],[0.022105032578111,0.093136884272099,0.061613537371159]],[[-0.017554858699441,0.054651938378811,-0.00018839932454284],[0.040518384426832,0.049469452351332,-0.044845763593912],[0.064423799514771,-0.03730732947588,-0.089781261980534]],[[0.11179802566767,-0.130225867033,-0.032451160252094],[-0.19865600764751,0.0058413497172296,-0.0042526726610959],[-0.11333517730236,0.016369992867112,0.024045899510384]],[[-0.076232515275478,-0.023152114823461,-0.081994153559208],[-0.09362518042326,0.061942208558321,0.089059509336948],[-0.00013437660527416,0.046469364315271,0.03709401935339]],[[0.030652286484838,-0.010507938452065,-0.014483052305877],[-0.036743715405464,0.0037875673733652,-0.0044939094223082],[-0.040665701031685,-0.087730675935745,0.029605200514197]],[[0.031047139316797,0.10536502301693,-0.047328855842352],[0.0056929932907224,0.090987674891949,-0.055134188383818],[-0.039470583200455,-0.13417303562164,-0.084493659436703]]],[[[-0.022711431607604,-0.15012499690056,-0.06166585534811],[-0.046374186873436,-0.041350673884153,-0.014647935517132],[0.029460426419973,-0.00038552837213501,-0.026328284293413]],[[0.094711057841778,0.092600457370281,-0.083783127367496],[-0.021635334938765,-0.092190772294998,-0.11608991026878],[0.079828009009361,-0.037566486746073,-0.015450274571776]],[[-0.087255537509918,-0.026569504290819,0.001963356975466],[0.0072008189745247,-0.21777561306953,0.0063881361857057],[-0.05242808163166,-0.03571555763483,-0.012849271297455]],[[0.090601772069931,0.036031346768141,-0.036068685352802],[0.0096814595162868,0.050930481404066,-0.13415411114693],[-0.10812489688396,-0.030870074406266,0.0015052550006658]],[[-0.033658962696791,-0.0064483564347029,0.029243815690279],[0.082359880208969,-0.011745545081794,0.019038539379835],[-0.074500799179077,-0.020354269072413,0.037881139665842]],[[0.045995973050594,-0.028685312718153,-0.010309631936252],[0.17225766181946,-0.11386080831289,-0.10842450708151],[0.05926176905632,0.10162991285324,-0.024529181420803]],[[0.0028897086158395,-0.038455601781607,-0.081282518804073],[0.070174284279346,-0.11586957424879,-0.067593455314636],[0.026072822511196,-0.020226120948792,-0.0078641157597303]],[[0.015990929678082,0.008780681528151,-0.016848906874657],[0.010711611248553,-0.0020315293222666,-0.015262573957443],[0.04809832572937,-0.082469709217548,0.042827885597944]],[[-0.11324852705002,-0.084358625113964,-0.049064870923758],[-0.0041866786777973,-0.017542578279972,0.065438747406006],[0.041736628860235,0.040110018104315,0.048131443560123]],[[0.033292714506388,0.088066965341568,0.079272530972958],[-0.013549516908824,-0.038252577185631,-0.064280442893505],[-0.029413772746921,0.040385190397501,-0.044604226946831]],[[0.036345180124044,-0.016498534008861,-0.08313300460577],[0.02069579064846,-0.035331696271896,0.01439609285444],[-0.046462278813124,-0.028822721913457,0.026094526052475]],[[0.056836612522602,-0.0077885976061225,-0.046168185770512],[-0.093649350106716,-0.11415129899979,-0.0021882972214371],[0.03235987201333,-0.034170303493738,-0.050513323396444]],[[0.058905147016048,-0.025044146925211,0.014284695498645],[0.024711539968848,-0.053581688553095,-0.034351389855146],[-0.050758343189955,0.036522410809994,-0.040718667209148]],[[0.067712537944317,-0.019256325438619,0.025940429419279],[0.032216627150774,-0.023158179596066,0.05612413957715],[-0.024151917546988,0.081745736300945,-0.013030374422669]],[[-0.035371765494347,-0.071869321167469,-0.12881079316139],[0.0064116553403437,0.027242006734014,-0.046349808573723],[-0.054116658866405,-0.044256035238504,-0.055218167603016]],[[-0.12302188575268,0.056122805923223,0.070004396140575],[-0.041049018502235,-0.037274945527315,-0.063951559364796],[0.021155517548323,-0.0084617249667645,0.067126117646694]],[[0.023643720895052,-0.10259035229683,-0.14147554337978],[0.050007022917271,0.13250984251499,-0.12150187045336],[0.033288791775703,0.057970866560936,0.056767269968987]],[[0.030733490362763,-0.063362218439579,0.037556231021881],[-0.097957760095596,0.066010154783726,0.062712401151657],[-0.023125156760216,-0.070384778082371,-0.049297425895929]],[[0.011124975979328,0.047339335083961,-0.085862971842289],[-0.055801022797823,-0.030303524807096,-0.031532730907202],[-0.01063815318048,0.082428149878979,0.0070698540657759]],[[0.046650789678097,0.040867567062378,-0.011321924626827],[0.073484487831593,0.076003529131413,-0.04089530557394],[-0.044184412807226,-0.046358063817024,-0.048610031604767]],[[0.020724529400468,0.072149120271206,-0.033655419945717],[0.042632922530174,0.030490476638079,-0.047434013336897],[0.022149853408337,0.0055093122646213,0.06574435532093]],[[0.035936091095209,-0.16626903414726,-0.066201008856297],[0.048632699996233,-0.060919124633074,-0.069233819842339],[0.15371713042259,0.038612775504589,0.17132462561131]],[[-0.00089411600492895,-0.14727544784546,-0.096571132540703],[0.071146689355373,-0.066404357552528,-0.03454964607954],[0.014069426804781,0.025274150073528,0.050195675343275]],[[-0.10432983189821,-0.011207886040211,0.0086344508454204],[-0.028532285243273,0.085032947361469,0.038603041321039],[0.06524807959795,0.13379983603954,0.057741861790419]],[[-0.038989126682281,-0.071066901087761,-0.018966918811202],[0.029563969001174,0.041523952037096,-0.095302656292915],[0.057337522506714,0.054479628801346,0.019544772803783]],[[-0.0039192601107061,0.033301632851362,0.032915953546762],[0.033487688750029,0.010657828301191,-0.058707293123007],[-0.018548343330622,-0.032645437866449,-0.051396451890469]],[[-0.080857001245022,-0.033656805753708,-0.016409184783697],[-0.02870749309659,-0.013044917955995,0.030513506382704],[0.045769043266773,0.0101528018713,-0.04209741204977]],[[-0.0020054823253304,-0.023950442671776,0.06404996663332],[-0.087120600044727,-0.057518266141415,0.077507495880127],[0.043314002454281,0.10157315433025,0.00077783060260117]],[[-0.0092679066583514,-0.12929092347622,0.0046683847904205],[-0.054816488176584,-0.04462394118309,-0.053789637982845],[0.042197525501251,0.021124387159944,0.056868959218264]],[[-0.027998337522149,-0.01478801947087,-0.13997709751129],[-0.037401497364044,-0.054772526025772,-0.038834698498249],[-0.041617792099714,-0.058616358786821,-0.021089533343911]],[[-0.037009712308645,0.016134532168508,-0.051886804401875],[0.058385025709867,-0.066235467791557,0.00084961793618277],[-0.012734313495457,-0.067190237343311,0.036689016968012]],[[-0.020384011790156,-0.02026004716754,-0.01304548047483],[0.033625762909651,0.024292398244143,0.00049511465476826],[-0.059759553521872,-0.0018742703832686,-0.06377674639225]],[[-0.046341877430677,-0.018862193450332,-0.0015020788414404],[-0.012434164062142,-0.057179611176252,-0.10019477456808],[0.040915969759226,-0.0043053315021098,-0.049639634788036]],[[0.0068658487871289,-0.071107007563114,-0.030648931860924],[-0.021185711026192,0.087401792407036,0.087058313190937],[0.082145102322102,0.041927602142096,-0.11976353824139]],[[0.062036707997322,-0.067866265773773,-0.0048100035637617],[0.024364557117224,-0.032892350107431,-0.018776509910822],[0.011774074286222,-0.0053470660932362,-0.050707031041384]],[[-0.033681213855743,-0.033858247101307,-0.0020171501673758],[0.067326948046684,0.055472128093243,0.0052021630108356],[0.012887642718852,0.046462126076221,-0.042855180799961]],[[-0.0087296385318041,-0.053068686276674,-0.032795738428831],[-0.032923195511103,0.031618405133486,-0.00106878625229],[-0.065718412399292,-0.043782334774733,-0.072157949209213]],[[0.014420604333282,0.05084440484643,0.0056214868091047],[0.020547496154904,0.0094906995072961,-0.046018920838833],[-0.034877866506577,0.069602355360985,-0.038140051066875]],[[-0.11020767688751,0.014023109339178,-0.02157586812973],[-0.055811982601881,0.0022961038630456,0.015506885945797],[-0.0065273954533041,-0.016983868554235,0.019805319607258]],[[-0.059401795268059,-0.067068912088871,-0.083370752632618],[-0.0072838682681322,0.057682923972607,-0.090599380433559],[-0.0864352658391,0.0523621737957,0.082870714366436]],[[-0.049084153026342,-0.039726141840219,0.030633896589279],[-0.0526068136096,0.059024702757597,0.07888226211071],[-0.10414630919695,-0.074778489768505,-0.034469783306122]],[[-0.0040418640710413,0.0038953714538366,-0.011389092542231],[-0.15377025306225,-0.026119058951735,-0.092908032238483],[-0.072028733789921,-0.20143194496632,-0.057210255414248]],[[-0.0065103406086564,0.033906135708094,-0.02428338304162],[0.0048915641382337,-0.050030451267958,-0.008164044469595],[0.042280975729227,-0.042069617658854,0.010646904818714]],[[0.00064722687238827,0.043035458773375,-0.026558488607407],[-0.069767355918884,0.017828159034252,-0.030676372349262],[0.034439701586962,0.005284134298563,0.00097296497551724]],[[-0.02604460529983,-0.037953473627567,-0.028636561706662],[-0.051418028771877,0.037408836185932,-0.080130741000175],[-0.0018607893725857,0.01435684133321,-0.0088371457532048]],[[0.053457710891962,-0.040579579770565,-0.10166735947132],[0.094435997307301,0.036439426243305,0.027072541415691],[-0.018147828057408,-0.031343784183264,0.026148322969675]],[[-0.10546632856131,-0.031208205968142,0.14728328585625],[0.072222724556923,-0.0092390701174736,-0.072306238114834],[0.084564186632633,0.046722158789635,-0.024312369525433]],[[0.065605036914349,0.010411964729428,0.073637269437313],[-0.10190589725971,-0.038599010556936,0.083725765347481],[-0.058774463832378,-0.021507877856493,0.017400765791535]],[[-0.012649108655751,0.049685321748257,-0.097943007946014],[0.049640987068415,0.10028411448002,-0.029395736753941],[-0.10317466408014,-0.002132860943675,-0.0025609072763473]],[[0.027018867433071,-0.0069811060093343,-0.12401240319014],[-0.0015497709391639,-0.024092143401504,-0.067689456045628],[-0.012858059257269,0.035363148897886,-0.026190105825663]],[[0.058057755231857,0.010171099565923,0.012882056646049],[-0.034505415707827,0.010202054865658,0.0072263721376657],[-0.037837527692318,-0.084414623677731,-0.047038398683071]],[[-0.022457402199507,0.044002000242472,0.032178938388824],[0.0099158193916082,0.011708631180227,0.028673723340034],[-0.040489453822374,-0.042159125208855,0.13691419363022]],[[-0.1272266805172,-0.026475172489882,-0.12016110867262],[-0.096292994916439,0.062401697039604,0.0087090814486146],[0.0044254353269935,-0.055058035999537,-0.08681321144104]],[[-0.095544263720512,0.025251341983676,0.059501640498638],[-0.11820214241743,-0.085797883570194,-0.045229576528072],[-0.065723039209843,-0.062976777553558,0.04804340749979]],[[-0.020041620358825,0.021343668922782,-0.018941642716527],[0.0094307465478778,9.1772853920702e-06,-0.033172134310007],[-0.076339296996593,-0.0038545858114958,-0.060274641960859]],[[0.010286634787917,0.094406045973301,-0.070905297994614],[-0.074028998613358,0.085931032896042,0.069974385201931],[-0.057136572897434,-0.0097262058407068,-0.034393813461065]],[[0.03709876909852,-0.0114726414904,-0.02450455725193],[0.039287213236094,-0.10435052216053,0.024149229750037],[0.044997707009315,-0.058078937232494,-0.036158174276352]],[[0.015873186290264,-0.002264172770083,0.025890441611409],[0.034503631293774,0.051336366683245,0.015511365607381],[0.014092466793954,-0.0078686904162169,0.041177108883858]],[[0.092683918774128,0.020630763843656,0.028380181640387],[0.049344390630722,0.098901227116585,0.032110378146172],[-0.050663288682699,0.015696164220572,0.014565138146281]],[[-0.03068514354527,0.028433620929718,-0.054963074624538],[-0.018965624272823,0.0073534650728106,0.049674108624458],[-0.019740421324968,-0.024699544534087,0.040446233004332]],[[-0.051788106560707,-0.055243961513042,-0.055629257112741],[-0.18926303088665,-0.085307367146015,0.0094598839059472],[-0.053712178021669,-0.029351223260164,0.015931185334921]],[[0.01474639121443,0.0043909633532166,0.13323740661144],[0.039089240133762,-0.029171496629715,-0.00014752894639969],[-0.057324960827827,-0.078880898654461,-0.10253185778856]],[[0.076091967523098,-0.014512163586915,-0.021688593551517],[0.031025318428874,-0.036074355244637,-0.055494707077742],[0.039466083049774,0.07830972969532,-0.0015523796901107]],[[0.049096412956715,0.11423845589161,0.016209037974477],[-0.11026310920715,-0.078963562846184,-0.026703655719757],[-0.0095507949590683,-0.032086931169033,0.0048150341026485]]],[[[-0.086582392454147,-0.067373193800449,-0.12140931934118],[0.062575966119766,-0.027709502726793,0.083381876349449],[0.028350584208965,0.051260504871607,0.063153684139252]],[[-0.074210189282894,-0.008353590965271,0.064184658229351],[0.026951281353831,0.066360086202621,-0.093647085130215],[-0.0037099549081177,0.10797256231308,0.038483299314976]],[[-0.074583247303963,-0.15900930762291,-0.067724667489529],[0.026397043839097,-0.084350295364857,0.015449767932296],[0.072777085006237,0.030323006212711,0.043426625430584]],[[0.014849409461021,-0.06187529489398,0.013267573900521],[-0.023748241364956,-0.028168130666018,0.01838350109756],[0.0076198661699891,-0.031033178791404,0.019566668197513]],[[0.087410122156143,-0.022643802687526,-0.0048610540106893],[0.048830978572369,0.053524199873209,-0.0112345200032],[0.022782439365983,-0.1765578687191,-0.091386832296848]],[[-0.002822628011927,-0.047903761267662,0.030722869560122],[0.021588146686554,-0.094596482813358,-0.010394632816315],[0.042481064796448,0.010399990715086,0.011860461905599]],[[-0.022465204820037,0.023887703195214,-0.020505059510469],[-0.1189469024539,-0.060972772538662,0.053701758384705],[0.072417534887791,0.072555921971798,0.032727424055338]],[[-0.022836269810796,-0.045093484222889,0.0043223151005805],[0.063537038862705,0.040544811636209,0.087783306837082],[-0.05274198949337,0.025129361078143,-0.01578245870769]],[[0.01714382506907,0.024831030517817,0.068823076784611],[-0.049616906791925,0.022053770720959,-0.11672543734312],[-0.010705764405429,-0.062965132296085,0.038486175239086]],[[-0.0004964349209331,0.026754138991237,0.075542233884335],[-0.059672258794308,-0.057154282927513,-0.1391139626503],[-0.025112222880125,-0.018872009590268,0.01678972505033]],[[0.033215373754501,-0.027486739680171,-0.063963398337364],[-0.005780047737062,-0.044349454343319,-0.018021706491709],[0.016223069280386,0.0073421136476099,-0.041271083056927]],[[0.030634645372629,-0.14608554542065,-0.078900679945946],[-0.16862903535366,0.0037075423169881,-0.12342405319214],[-0.042410168796778,-0.12116476893425,0.033808413892984]],[[0.023426795378327,0.014528884552419,0.035239260643721],[-0.033605989068747,-0.053366243839264,-0.089701503515244],[-0.012364948168397,-0.033689819276333,0.094528347253799]],[[-0.089625217020512,0.045244704931974,0.0877725481987],[0.031156646087766,-0.006476316601038,-0.064788959920406],[-0.025337498635054,0.019123503938317,-0.079062528908253]],[[-0.10333821922541,-0.012504491023719,-0.06781180202961],[0.063425742089748,-0.042327847331762,-0.0016045363154262],[0.056394308805466,0.0031536989845335,0.030509756878018]],[[0.0057183960452676,0.039098720997572,-0.0091422293335199],[-0.023232962936163,0.046235177665949,0.085266843438148],[-0.0023135785013437,0.010419796220958,-0.04066139832139]],[[0.069984078407288,-0.092041358351707,-0.13834173977375],[0.0027116572018713,0.097017154097557,-0.07448660582304],[0.05601179972291,0.017198054119945,-0.011330083012581]],[[0.023582177236676,0.056772608309984,-0.031750999391079],[0.040056202560663,0.020560128614306,0.059370901435614],[0.029074551537633,0.077202275395393,0.029127705842257]],[[0.10422639548779,-0.050750222057104,0.0070042102597654],[0.066366858780384,-0.050025057047606,0.083869062364101],[0.029267631471157,-0.0063555063679814,0.02793038636446]],[[-0.014649567194283,-0.064694702625275,-0.068069748580456],[0.0065872683189809,0.0799720287323,-0.023527164012194],[-0.0097002042457461,0.022636676207185,0.038864228874445]],[[-0.0097033958882093,-0.12735620141029,0.12312316894531],[0.067971207201481,0.11828175932169,-0.18011903762817],[0.014971381053329,0.031054515391588,0.027165539562702]],[[-0.0038173911161721,0.0096280546858907,-0.05424202978611],[-0.061675660312176,-0.045374743640423,-0.040377419441938],[-0.030370535328984,0.031216846778989,0.011043240316212]],[[-0.0022462890483439,0.10713807493448,0.052001133561134],[0.034285824745893,-0.105145201087,-0.084394820034504],[-0.010711792856455,-0.015393557026982,-0.091098666191101]],[[0.080169379711151,0.035392057150602,-0.029734306037426],[-0.019631074741483,0.10986047238111,0.17517997324467],[0.023870239034295,0.0028914816211909,0.02665944211185]],[[0.041289292275906,0.052251946181059,-0.052436921745539],[-0.032830096781254,-0.0085986321792006,0.060616966336966],[0.013106251135468,0.0058233705349267,0.042491748929024]],[[0.0020180486608297,0.030339028686285,-0.0296117272228],[0.016502814367414,0.045452482998371,-0.029557226225734],[0.033127401024103,-0.049073256552219,-0.054374430328608]],[[0.019428120926023,-0.15731216967106,-0.066125273704529],[-0.054646279662848,-0.10968942195177,0.033817049115896],[0.049783259630203,0.032106637954712,-0.048039648681879]],[[0.042676027864218,0.022841257974505,0.1069143936038],[-0.056796688586473,-0.1810302734375,0.091421037912369],[0.057861384004354,0.048264544457197,0.062742620706558]],[[-0.047321125864983,-0.034298308193684,-0.079360775649548],[0.014913686551154,-0.15168543159962,-0.022584188729525],[0.028260925784707,0.01683272048831,0.045252572745085]],[[0.012013016268611,0.0059314230456948,-0.022623466327786],[0.048293597996235,0.052851844578981,-0.012298068031669],[0.039671253412962,-0.0037991446442902,0.0067311357706785]],[[-0.023210229352117,0.045683301985264,-0.06545552611351],[-0.068664737045765,-0.020588133484125,0.085246533155441],[0.052943527698517,-0.036846663802862,0.022521020844579]],[[-0.09187238663435,-0.0052791703492403,-0.015445819124579],[0.02413846924901,-0.016886934638023,-0.0093279499560595],[0.1033262014389,0.023692833259702,-0.023340234532952]],[[-0.025928791612387,-0.049217164516449,0.019835442304611],[-0.060310266911983,-0.051952727138996,-0.068092241883278],[-0.022259663790464,0.039978422224522,-0.014162654988468]],[[-0.04275518655777,-0.094806909561157,-0.013761211186647],[-0.043450877070427,-0.049483820796013,0.020438307896256],[-0.090852409601212,-0.16098865866661,0.03744188323617]],[[-0.0064984620548785,-0.080204457044601,0.063826039433479],[0.024988818913698,-0.024377906695008,0.02022472396493],[0.081831485033035,-0.07493382692337,-0.040562771260738]],[[-0.0058379680849612,-0.023293264210224,0.055550690740347],[0.042849734425545,0.0061922767199576,0.00071905291406438],[-0.016069108620286,0.027276618406177,0.006226793397218]],[[-0.003408070653677,0.014109089970589,-0.031064976006746],[0.05459962412715,-0.054148998111486,0.025666547939181],[0.0029056074563414,-0.052609253674746,0.016318088397384]],[[-0.094300143420696,-0.012136297300458,-0.010012806393206],[0.054920930415392,-0.049550842493773,-0.043759495019913],[-0.032765213400126,-0.076708592474461,0.0050399955362082]],[[-0.13640244305134,-0.076044112443924,0.047272812575102],[-0.037261970341206,-0.022814834490418,-0.032221175730228],[0.036753937602043,0.050949782133102,-0.029492853209376]],[[-0.15632523596287,-0.12801530957222,-0.092593923211098],[0.054747190326452,-0.10307057201862,-0.026034079492092],[0.028561318293214,-0.017348259687424,-0.054953526705503]],[[-0.074169218540192,-0.00014370388817042,-0.0048175742849708],[-0.092412270605564,-0.019891923293471,-0.042334340512753],[0.06290777772665,0.033008810132742,0.08617690205574]],[[-0.022221837192774,0.007521562743932,0.067898191511631],[-0.076189056038857,-0.024579428136349,0.020309394225478],[-0.026380429044366,0.063525773584843,-0.0258185621351]],[[-0.032271280884743,0.065485842525959,-0.029259955510497],[0.02304339595139,0.014177042990923,0.0031046504154801],[-0.058470126241446,-0.015782551839948,-0.070428103208542]],[[-0.035257317125797,0.052095774561167,0.034681305289268],[0.029263647273183,0.056069388985634,-0.045253373682499],[0.0044502965174615,-0.0028939882759005,-0.10184090584517]],[[0.017085617408156,-0.023470072075725,0.0015884896274656],[-0.084760338068008,-0.12446213513613,-0.055710978806019],[0.0047687133774161,0.031869526952505,-0.011794747784734]],[[0.061867825686932,-0.031803414225578,-0.032241854816675],[-0.048891756683588,0.0011049803579226,-0.078156121075153],[0.028163339942694,-0.041848573833704,0.027411436662078]],[[-0.093444384634495,-0.076841719448566,0.049130726605654],[-0.057796712964773,-0.049567449837923,0.039091601967812],[-0.031119588762522,0.046547308564186,-0.020829843357205]],[[-0.11443220824003,0.081385172903538,-0.0094982506707311],[-0.020727006718516,0.028147220611572,0.02142153121531],[0.016330478712916,0.077520750463009,0.0088063878938556]],[[-0.013517947867513,-0.01884875819087,-0.067953199148178],[0.023451859131455,0.041764881461859,-0.0075562368147075],[-0.098900891840458,-0.03182091191411,0.046424008905888]],[[0.09456343203783,0.0094850771129131,-0.025195561349392],[-0.052734520286322,-0.045382272452116,-0.086919240653515],[0.034763492643833,-0.061603851616383,-0.041406158357859]],[[0.031574819236994,0.0192905459553,-0.063193924725056],[-0.018701411783695,-0.045737497508526,0.0060236700810492],[-0.018525402992964,0.0080502517521381,-0.02945919521153]],[[0.072070807218552,0.082078583538532,0.041315596550703],[0.14154383540154,0.098688848316669,-0.085067667067051],[0.01773365214467,0.066853448748589,-0.034596815705299]],[[0.067046731710434,0.048012051731348,0.041017763316631],[0.017422750592232,-0.083235748112202,-0.10696156322956],[0.082594305276871,0.057681813836098,0.057880334556103]],[[0.065190300345421,0.0266482681036,0.081492491066456],[-0.03968308120966,-0.017246667295694,0.023958440870047],[-0.024458553642035,-0.077240601181984,0.037805780768394]],[[0.045810159295797,-0.043521720916033,-0.14514026045799],[0.10983872413635,-0.010023094713688,0.044143866747618],[0.033402230590582,0.017532579600811,0.032617159187794]],[[-0.088708259165287,-0.055581290274858,-0.0020844719838351],[-0.016318552196026,0.0060981865972281,-0.013964525423944],[-0.03208776190877,-0.038044098764658,0.00085126626072451]],[[0.021774666383862,0.032726299017668,-0.0280806068331],[-0.0089379195123911,-0.019610272720456,-0.054521884769201],[-0.0045039597898722,0.051125429570675,0.028667693957686]],[[0.022412832826376,-0.0076059019193053,-0.064204409718513],[-0.029115637764335,-0.022846525534987,0.0046864761970937],[-0.086614653468132,-0.073664844036102,-0.11213179677725]],[[0.018027577549219,-0.066435635089874,-0.030912004411221],[0.10641849040985,-0.0049321656115353,-0.059746593236923],[-0.010087925940752,0.012763243168592,0.10328644514084]],[[0.055346272885799,0.05205025151372,0.082218579947948],[-0.023265896365047,-0.10802014917135,0.016547560691833],[-0.025037441402674,-0.028367692604661,-0.048121336847544]],[[-0.075154602527618,0.030725097283721,0.047381039708853],[-0.073096662759781,0.048130203038454,-0.049415118992329],[0.015866944566369,-0.1081193163991,-0.053774960339069]],[[0.021876508370042,0.050368662923574,-0.031072659417987],[0.029101271182299,0.029906183481216,-0.027290858328342],[-0.0032531132455915,-0.085511818528175,0.0066961939446628]],[[-0.046378541737795,0.027641259133816,-0.076039798557758],[-0.013314959593117,0.014434447512031,0.0043470822274685],[0.00099703681189567,0.0043081096373498,-0.0019758688285947]],[[-0.12276218086481,-0.08606144785881,0.0058163376525044],[0.08845679461956,-0.12939788401127,-0.015393470413983],[0.010163610801101,-0.016895404085517,-0.003617295762524]]],[[[0.0018801521509886,0.089804254472256,-0.030050583183765],[-0.060259528458118,0.0098562063649297,0.030033906921744],[-0.37498879432678,0.032106574624777,0.023695262148976]],[[0.074637837707996,0.1003472879529,-0.059132538735867],[-0.026733295992017,0.01021393481642,-0.12112966924906],[-0.0072749787941575,-0.085694409906864,-0.061429709196091]],[[-0.073566943407059,-0.022695073857903,0.1016788110137],[-0.090445801615715,0.011533315293491,0.038724299520254],[-0.1584784835577,-0.069353349506855,0.054162599146366]],[[-0.011326916515827,0.013506363146007,0.088096305727959],[0.018629049882293,-0.0040104147046804,0.018910771235824],[-0.001350826700218,-0.033188115805387,0.0081779025495052]],[[-0.028474310413003,0.14079605042934,-0.0056420653127134],[-0.054262813180685,0.010663298889995,-0.027567710727453],[0.062925390899181,-0.076208278536797,-0.08129607886076]],[[-0.028115240857005,0.015836136415601,0.043146636337042],[-0.10100006312132,0.051499485969543,-0.00085618905723095],[-0.095559045672417,-0.11358927190304,-0.059540160000324]],[[-0.052641414105892,-0.021851766854525,-0.010474476963282],[0.050098411738873,-0.03959209099412,-0.033279985189438],[-0.050394263118505,-0.028673706576228,-0.0060647330246866]],[[0.090712927281857,0.09385222941637,-0.038985405117273],[0.0037709197495133,0.027390515431762,-0.12819807231426],[0.035455506294966,-0.076345823705196,0.0015751752071083]],[[-0.12486140429974,0.024396458640695,-0.0034931446425617],[-0.070140019059181,0.017275460064411,0.063440687954426],[0.11165382713079,0.045913688838482,-0.0050227073952556]],[[0.079908058047295,0.011484864167869,0.07025121152401],[-0.029452232643962,-0.0092227105051279,0.033209923654795],[0.024057189002633,-7.5658688729163e-05,0.021239107474685]],[[0.056814543902874,-0.022878494113684,0.024358157068491],[0.045892126858234,0.010427557863295,0.048261437565088],[-0.15277582406998,-0.13449060916901,0.00042151240631938]],[[0.012197839096189,-0.033990424126387,-0.056512828916311],[-0.038766901940107,0.076764903962612,0.051035270094872],[0.030888896435499,0.1017509624362,0.015238410793245]],[[-0.040950365364552,-0.010870357975364,-0.012671132571995],[0.039233975112438,0.067478142678738,-0.012387842871249],[-0.15617343783379,-0.038264911621809,-0.065092422068119]],[[-0.0062559372745454,0.054854325950146,0.066715985536575],[0.0092866579070687,0.034105457365513,-0.036710627377033],[-0.0070333345793188,0.0032868571579456,-0.054566655308008]],[[-0.01598902978003,-0.061257995665073,0.011078543961048],[0.0023322550114244,0.013579033315182,-0.015047072432935],[0.053089585155249,-0.051144614815712,0.029455097392201]],[[-0.021231101825833,-0.023287119343877,0.0085695618763566],[0.026072023436427,-0.010043226182461,0.021548703312874],[0.037066947668791,0.092618443071842,0.01112587749958]],[[-0.016162326559424,-0.1262648999691,0.094253160059452],[-0.031888019293547,0.0097350683063269,-0.059080339968204],[0.058053489774466,-0.045610189437866,0.12053588032722]],[[0.025020349770784,-0.023702215403318,-0.07494492828846],[0.047417990863323,-0.097216077148914,-0.0032035985495895],[0.015401807613671,-0.059820085763931,-0.039592370390892]],[[-0.014432372525334,0.010594611987472,0.012531251646578],[0.0041784103959799,0.027934350073338,0.0093920808285475],[-0.036290194839239,-0.073564782738686,-0.10945606231689]],[[-0.017925035208464,-0.050682067871094,0.024307956919074],[-0.034109964966774,-0.049991119652987,0.091436922550201],[-0.056319575756788,0.035570044070482,0.070214599370956]],[[-0.043631918728352,0.0040871370583773,0.029883595183492],[0.086768619716167,-0.016356879845262,-0.11208260804415],[-0.19852511584759,-0.23209348320961,-0.15249964594841]],[[-0.012267109006643,-0.038799181580544,-0.041025817394257],[-0.02444276958704,-0.068871043622494,0.046038798987865],[0.039538122713566,0.085536032915115,0.026298876851797]],[[-0.033768493682146,-0.026750367134809,0.06088899821043],[-0.0032626884058118,-0.065278023481369,0.021415090188384],[-0.0049789971671999,0.075143918395042,0.01339216157794]],[[-0.037656720727682,0.0954519957304,-0.078622736036777],[0.083335481584072,0.072202324867249,0.026916889473796],[0.047526769340038,0.064705029129982,0.036776714026928]],[[-0.082229599356651,-0.10245021432638,-0.041902035474777],[-0.00099450070410967,-0.012085912749171,0.011741261929274],[-0.033089250326157,-0.040139645338058,-0.024074139073491]],[[0.088765308260918,0.027505317702889,0.05289501324296],[0.082616157829762,0.034075070172548,0.0091869998723269],[0.029271049425006,0.10300014913082,0.0076919146813452]],[[0.043251179158688,0.021474612876773,-0.039322067052126],[0.036372631788254,-0.049269840121269,0.022451743483543],[0.053768455982208,0.047305043786764,0.10137303173542]],[[0.029433799907565,0.0047943997196853,-0.0058684521354735],[0.015681017190218,0.0060754353180528,-0.064613081514835],[0.043525736778975,-0.023728828877211,-0.045939851552248]],[[0.068203285336494,0.0069547262974083,-0.018422933295369],[0.013962686993182,-0.0055220578797162,-0.020231105387211],[0.026328526437283,-0.027181232348084,-0.084607444703579]],[[0.089288294315338,0.10276984423399,0.036105290055275],[0.11308950185776,0.088374339044094,0.11166799813509],[-0.0080002238973975,0.0081299552693963,0.080101758241653]],[[-0.04023390635848,-0.032666757702827,-0.13944248855114],[-0.034901980310678,-0.010350244119763,-0.04632181674242],[0.048791248351336,0.032132979482412,0.026229189708829]],[[-0.10482396930456,0.015851503238082,-0.029168395325541],[0.051319047808647,0.036111380904913,0.005139228887856],[0.093263320624828,-0.066404528915882,0.037077702581882]],[[-0.0014746035449207,-0.045567363500595,0.0082478364929557],[-0.073718279600143,-0.00028460519388318,0.049710668623447],[0.0017982916906476,0.067520692944527,-0.025238286703825]],[[-0.053782559931278,0.044108338654041,0.12153350561857],[-0.047138962894678,-0.088759765028954,0.014668812975287],[-0.13282178342342,-0.057761825621128,0.062315687537193]],[[-0.069543495774269,0.02757329121232,-0.091439597308636],[-0.024366408586502,0.045340482145548,0.023826368153095],[-0.13184946775436,-0.066578254103661,-0.12472505867481]],[[-0.042971841990948,0.040336016565561,0.012004629708827],[0.047648403793573,-0.060320649296045,-0.030891155824065],[-0.037552319467068,0.059304002672434,-0.037402641028166]],[[-0.0020250743255019,0.14477035403252,0.18848715722561],[0.032191377133131,-0.14109316468239,0.0050757103599608],[-0.087026752531528,-0.030296705663204,-0.042702484875917]],[[-0.01263550017029,0.081005558371544,-0.058031503111124],[-0.02719041891396,0.036393545567989,0.12008505314589],[0.010918634943664,0.050819184631109,-0.0010111293522641]],[[0.095466293394566,-0.024769652634859,-0.041315715759993],[0.012439304031432,0.025632455945015,0.017029713839293],[-0.070892050862312,-0.08482088893652,0.026377089321613]],[[-0.13024155795574,-0.06305980682373,-0.01973232999444],[0.096870504319668,0.044298119843006,-0.1142198368907],[-0.06271555274725,0.025915894657373,0.03555640950799]],[[-0.11456703394651,-0.031868569552898,0.0023467619903386],[0.04960810020566,-0.04908287152648,-0.14911435544491],[-0.093892842531204,-0.12286461144686,-0.015553856268525]],[[0.020148910582066,0.015066733583808,-0.26699206233025],[-0.1168382242322,0.027415663003922,-0.021517945453525],[0.010348561219871,-0.050830744206905,0.059033244848251]],[[0.0090615740045905,0.07775966823101,-0.0037473479751498],[-0.094326801598072,0.034402430057526,0.078965418040752],[0.056972373276949,0.062371835112572,0.15048864483833]],[[-0.0905532091856,-0.025625633075833,-0.01679559238255],[-0.0085140122100711,-0.080681599676609,0.035053234547377],[0.029443219304085,-0.0056764115579426,-0.037867538630962]],[[0.0055210739374161,-0.025515461340547,-0.12827631831169],[0.043088007718325,0.044078085571527,-0.057219043374062],[-0.044992864131927,0.049287024885416,-0.007343037519604]],[[-0.065667256712914,-0.061531510204077,-0.14325411617756],[-0.0041866470128298,0.0026622824370861,0.017431499436498],[0.18676327168941,-0.060357339680195,-0.065821036696434]],[[0.096867777407169,0.016815079376101,-0.11379810422659],[-0.06806804984808,-0.045180879533291,-0.010557757690549],[0.014211897738278,-0.044876549392939,0.037884265184402]],[[0.085316136479378,0.013990979641676,0.024707136675715],[0.14054229855537,-0.09510799497366,0.045843042433262],[0.03056669794023,-0.058656621724367,0.0060462239198387]],[[0.073530897498131,-0.068175725638866,-0.045598458498716],[0.021081099286675,-0.049680974334478,0.0045961514115334],[-0.082418292760849,0.024951172992587,-0.10550279915333]],[[-0.043870128691196,0.069226950407028,0.029932098463178],[0.013337444514036,0.047857012599707,0.0059601902030408],[-0.067176878452301,0.015988126397133,-0.12378811836243]],[[0.14141000807285,-0.071548998355865,-0.1405692845583],[-0.095599174499512,-0.1107561737299,0.0102454777807],[-0.088993392884731,-0.0034177389461547,0.013605917803943]],[[-0.0044398559257388,0.13385516405106,0.099104374647141],[-0.0079649239778519,0.05150406435132,0.086468584835529],[-0.056744173169136,0.081496901810169,0.16674497723579]],[[0.014869751408696,-0.037590127438307,-0.033758092671633],[0.018247902393341,-0.034051768481731,0.035654660314322],[-0.098023273050785,0.011810359545052,-0.012091433629394]],[[-0.12018819153309,-0.10165024548769,-0.011655561625957],[0.022617692127824,-0.077308781445026,0.01902156509459],[0.10380485653877,-0.030325815081596,-0.023306701332331]],[[0.0052181226201355,0.046615902334452,-0.048773728311062],[0.022714972496033,0.0027420620899647,-0.16404850780964],[0.045076739042997,-0.1862880140543,-0.15701296925545]],[[-0.071045562624931,0.0020837178453803,0.067758731544018],[0.022400228306651,-0.011513504199684,-0.030051296576858],[-0.0068471343256533,0.017431536689401,-0.017483182251453]],[[0.1117257848382,-0.0051825293339789,0.0481321439147],[-0.080926515161991,0.068016894161701,-0.0027073440141976],[-0.060739029198885,-0.051558077335358,0.063121564686298]],[[0.0036184622440487,-0.042347393929958,-0.0046340874396265],[-0.017795702442527,-0.018145252019167,-0.016081755980849],[-0.072162657976151,-0.027392756193876,-0.070850059390068]],[[-0.13288572430611,0.027025172486901,-0.055051561444998],[-0.023530416190624,-0.032458480447531,0.066176079213619],[0.026162581518292,-0.033389132469893,0.080350711941719]],[[0.030428791418672,0.035744652152061,0.019698223099113],[0.034338120371103,0.014135018922389,-0.013474705629051],[0.0020315945148468,-0.056513756513596,-0.044879350811243]],[[-0.09104597568512,0.032986532896757,-0.088254518806934],[0.0022604120895267,-0.022697307169437,0.0018097966676578],[-0.036145888268948,0.088076688349247,-0.02670762874186]],[[0.036658603698015,-0.062424477189779,0.029071871191263],[-0.075297676026821,0.070206567645073,0.025227295234799],[0.01325520966202,-0.043467074632645,-0.10315664857626]],[[-0.05243631452322,-0.0010948163690045,-0.032620385289192],[-0.042629420757294,-0.030180672183633,-0.017779160290956],[-0.0065072788856924,0.017599165439606,0.051456976681948]],[[0.01692633703351,-0.063480615615845,-0.045220844447613],[-0.08658542484045,-0.0046921083703637,0.036346033215523],[-0.044874295592308,0.082413412630558,-0.0035635509993881]]],[[[-0.019986057654023,0.044910557568073,-0.046201847493649],[-0.042679395526648,-0.082675635814667,-0.10395348072052],[-0.023988367989659,-0.047451972961426,-0.027205251157284]],[[0.061847366392612,-0.0090894782915711,0.033589448779821],[-0.053214907646179,-0.056831832975149,-0.015571242198348],[-0.0079880198463798,0.00089359376579523,0.042605072259903]],[[0.049637593328953,-0.0028927235398442,-0.038435697555542],[-0.064911723136902,-0.018759565427899,0.053275760263205],[-0.14556147158146,-0.047094687819481,-0.052716687321663]],[[0.045193031430244,-0.0076306434348226,-0.015955621376634],[-0.019708566367626,-0.098521769046783,0.0053778123110533],[-0.0032613768707961,-0.038654897361994,0.031218778342009]],[[0.07090912759304,0.016648847609758,-0.10758101195097],[-0.10143087804317,0.030902763828635,-0.04528796300292],[0.056449469178915,0.12207406759262,0.12573742866516]],[[0.1001380905509,0.078294888138771,0.070598684251308],[-0.0057300198823214,-0.0098729059100151,-0.019426487386227],[-0.090588115155697,0.011309629306197,-0.019060753285885]],[[-0.0016325149917975,0.080191619694233,0.060024596750736],[-0.081673309206963,-0.00015478563727811,0.025543304160237],[-0.056790344417095,0.021310824900866,0.045298989862204]],[[-0.021724216639996,0.037296980619431,0.03898548707366],[0.046963207423687,-0.025883972644806,-3.2318384910468e-05],[-0.0070969965308905,-0.0084015587344766,-0.013668177649379]],[[-0.027368720620871,-0.059265278279781,0.023511094972491],[-0.037042174488306,0.077590681612492,-0.060879241675138],[0.035083174705505,0.0091243367642164,-0.11413888633251]],[[0.052898682653904,0.05411596596241,-0.011555982753634],[0.042148511856794,0.085352562367916,-0.038068197667599],[-0.0015022654552013,-0.058011095970869,-0.093532241880894]],[[0.064983502030373,0.016708824783564,0.0076408511959016],[-0.056014761328697,0.079303726553917,-0.093889877200127],[-0.1958970874548,-0.047142248600721,-0.087821558117867]],[[-0.017680406570435,0.10976605862379,0.024707468226552],[0.034427851438522,0.0068446877412498,-0.015548689290881],[0.02444270811975,0.0028481597546488,-0.071170091629028]],[[0.070394530892372,0.12583802640438,-0.031764827668667],[0.043755255639553,0.01363274268806,0.068628534674644],[-0.085827924311161,-0.040069773793221,-0.048754669725895]],[[0.039033252745867,-0.041617561131716,-0.02494153007865],[0.0069802566431463,0.03710463270545,-0.0082237971946597],[0.037931058555841,-0.005426824092865,-0.058424510061741]],[[0.010420748032629,-0.040872730314732,-0.0045246286317706],[0.027339631691575,-0.047647032886744,0.017063900828362],[-0.086651235818863,-0.069647237658501,-0.042722810059786]],[[0.11718890815973,0.037555556744337,0.11331625282764],[0.031846407800913,-0.037568684667349,0.016298368573189],[0.034315019845963,-0.019726872444153,0.029068013653159]],[[0.038658268749714,-0.077609121799469,-0.027427587658167],[0.040848683565855,-0.053131110966206,0.15816186368465],[-0.092607282102108,-0.0033941715955734,-0.078598417341709]],[[0.0068014897406101,-0.0018033958040178,-0.0333316847682],[-0.16627421975136,0.00068422220647335,0.0039944150485098],[-0.038763485848904,0.034560598433018,0.026459097862244]],[[0.019489986822009,-0.0016324827447534,-0.10544414818287],[0.012184330262244,0.10684472322464,0.0079825446009636],[0.093723058700562,-0.010082583874464,-0.024889018386602]],[[-0.020892051979899,0.023641521111131,-0.029699770733714],[0.046987868845463,-0.0058824992738664,-0.031214978545904],[-0.014163800515234,0.036654893308878,0.043333914130926]],[[-0.0052004838362336,-0.05369908362627,0.083951868116856],[-0.043987590819597,-0.00088442844571546,0.032915260642767],[-0.012642528861761,0.0086405286565423,0.10183842480183]],[[0.15854831039906,-0.07504491508007,0.10328907519579],[-0.095900110900402,-0.027520403265953,-0.091597355902195],[-0.10271637141705,0.0141929872334,0.00032452898449264]],[[-0.070322118699551,-0.024932505562901,0.078354954719543],[-0.018728090450168,0.051957722753286,-0.036507364362478],[-0.018958918750286,-0.055211037397385,-0.078181229531765]],[[0.061892371624708,0.096226297318935,0.12385753542185],[0.12245288491249,0.067467123270035,0.09585890173912],[0.019511947408319,0.13341711461544,0.026236897334456]],[[-0.037807565182447,-0.082026354968548,-0.024269934743643],[-0.036696378141642,0.010864613577724,-0.094383366405964],[0.094892606139183,0.075129717588425,-0.032897260040045]],[[-0.020406641066074,0.047755051404238,0.042677007615566],[0.064720526337624,0.080339930951595,0.011653806082904],[0.038253776729107,0.014733891934156,-0.019264835864305]],[[0.04262176528573,-0.031103450804949,0.063068307936192],[-0.014226857572794,0.0064124767668545,-0.01112512499094],[0.020978325977921,-0.021438067778945,0.15797843039036]],[[-0.077179275453091,-0.068249963223934,-0.0063447281718254],[-0.040900275111198,0.044045966118574,0.042573682963848],[0.0053770951926708,-0.02535729855299,-0.0054397056810558]],[[0.0033550201915205,0.030150724574924,0.025749349966645],[0.025162925943732,0.04015026986599,0.012768118642271],[-0.042188704013824,-0.056616209447384,-0.046519406139851]],[[0.022846736013889,-0.028502324596047,-0.012073079124093],[0.012551367282867,-0.0053747040219605,-0.00079740566434339],[-0.0099470876157284,-0.018397729843855,0.010059838183224]],[[0.068811923265457,0.0010113418102264,0.0051060910336673],[0.094962991774082,-0.053964521735907,0.043103691190481],[-0.035349398851395,-0.070527359843254,-0.080079399049282]],[[0.031257089227438,0.052004676312208,0.006740574259311],[0.053363710641861,-0.023957436904311,-0.022518707439303],[-0.045585673302412,-0.060756169259548,0.10874239355326]],[[-0.0013469677651301,0.0072071440517902,0.081951431930065],[0.0065690912306309,-0.043081697076559,0.0095955189317465],[0.019839860498905,0.0083579011261463,0.043838553130627]],[[-0.0060961381532252,-0.053051140159369,-0.063694030046463],[0.031915582716465,0.073214955627918,0.12849019467831],[0.062475755810738,-0.033458266407251,0.028982693329453]],[[-0.034327857196331,-0.076641991734505,0.016743015497923],[-0.028178449720144,0.032564755529165,0.055309180170298],[-0.0097950045019388,0.034030832350254,0.031071523204446]],[[-0.038989517837763,0.027348579838872,0.036545164883137],[-0.026949785649776,0.008246467448771,0.042441945523024],[-0.025738142430782,0.00067387719172984,-0.020379008725286]],[[0.040799852460623,0.057407807558775,-0.033067803829908],[0.031570438295603,-0.043997243046761,0.050539158284664],[0.064425311982632,0.057998407632113,0.0013092869194224]],[[0.039912197738886,-0.012866031378508,0.014902407303452],[-0.018737934529781,-0.0094391508027911,-0.00036332229501568],[0.11768099665642,0.016556328162551,-0.0039292946457863]],[[-0.043622236698866,-0.11877986043692,-0.096158184111118],[-0.026886893436313,-0.0094199692830443,-0.0094848815351725],[-0.033808816224337,-0.023404981940985,-0.03576098755002]],[[-0.14577838778496,-0.030166577547789,0.079032868146896],[0.023616285994649,-0.082477815449238,0.029487168416381],[0.0099612604826689,-0.015814192593098,-0.0082936873659492]],[[0.010257385671139,0.069727897644043,0.041841685771942],[-0.053350400179625,0.0096282446756959,0.03460506349802],[0.0074379933066666,0.0076446947641671,-0.0095868203788996]],[[-0.035511255264282,0.011719417758286,0.05353556573391],[-0.00090446055401117,0.10803910344839,0.034916050732136],[0.044388245791197,-0.047563176602125,-0.14088274538517]],[[0.026720583438873,-0.044766452163458,-0.051306795328856],[0.009711186401546,0.013785551302135,0.011877520009875],[0.014086776413023,0.013548566028476,-0.0062408787198365]],[[-0.077447816729546,0.029990885406733,0.0034910938702524],[-0.028642997145653,0.036356169730425,0.083574697375298],[0.038404315710068,0.042925413697958,-0.074278324842453]],[[-0.033336989581585,0.084925264120102,0.063961543142796],[-0.0085784094408154,0.028778184205294,-0.0027663849759847],[0.0044310828670859,-0.0012944190530106,-0.0634710714221]],[[0.046043556183577,-0.058144394308329,-0.19058640301228],[0.024737607687712,-0.034283373504877,-0.086188301444054],[-0.0026799417100847,-0.13675521314144,-0.068827293813229]],[[-0.025385104119778,0.071469195187092,0.10026536881924],[-0.023983018472791,0.046677947044373,-0.01300411298871],[0.010256486013532,0.019637443125248,-0.079160369932652]],[[0.016716524958611,0.097278021275997,0.11653178185225],[0.06231439858675,-0.12233588844538,0.064084313809872],[0.0078183375298977,-0.0033758580684662,-0.03516486287117]],[[-0.058144096285105,-0.031921941787004,0.039647407829762],[-0.021703720092773,-0.044116754084826,-0.070689313113689],[0.046068400144577,-0.0090540293604136,-0.01412039808929]],[[-0.026255628094077,0.010468770749867,-0.029427140951157],[-0.00020963873248547,-0.0078102368861437,0.011082026176155],[0.065362431108952,-0.057643909007311,0.054260563105345]],[[0.020441459491849,0.033792871981859,0.085045240819454],[0.069928407669067,-0.020156294107437,0.011514851823449],[-0.014727327041328,-0.096673481166363,-0.042194187641144]],[[-0.028467398136854,-9.540404425934e-05,0.067611686885357],[0.0035439429339021,0.17937096953392,0.17188811302185],[0.080085761845112,0.078302457928658,0.039340570569038]],[[-0.060762617737055,-0.10639454424381,-0.086835704743862],[0.063521817326546,0.070616275072098,0.00057769892737269],[0.008152118884027,0.056687597185373,-0.078065119683743]],[[0.086642123758793,-3.4553348086774e-05,0.0326730273664],[-0.051328301429749,0.06741364300251,-0.046321399509907],[-0.0079349791631103,-0.08081877976656,0.076891109347343]],[[0.028938174247742,-0.070953860878944,-0.032500203698874],[-0.031867705285549,0.036023378372192,0.0046338210813701],[-0.013285379856825,-0.0052691455930471,0.017794441431761]],[[-0.018152372911572,0.024823643267155,0.0009132536360994],[0.078226454555988,-0.061657838523388,-0.049925312399864],[-0.019760645925999,0.038399152457714,-0.01854551024735]],[[-0.039326284080744,0.088382825255394,0.078668735921383],[0.037294719368219,-0.051598221063614,0.046462703496218],[-0.033655300736427,-0.038330849260092,-0.064141973853111]],[[0.021631140261889,0.085980698466301,-0.017309561371803],[-0.018936393782496,0.10602559149265,-0.029439298436046],[0.024969084188342,0.020633498206735,-0.035015501081944]],[[0.047101967036724,0.055804118514061,-0.032406441867352],[-0.02808940410614,0.1259845495224,0.015309056267142],[0.020495913922787,0.087919257581234,0.020513232797384]],[[0.0040503446944058,-0.03870464861393,0.011435852386057],[-0.010750859044492,-0.073797225952148,0.04210739582777],[0.02560680732131,0.043964393436909,0.037972278892994]],[[0.058266155421734,-0.027972105890512,-0.084216870367527],[0.061329372227192,-0.023005178198218,0.0656428784132],[0.012407049536705,0.030015341937542,0.074157170951366]],[[0.01436703465879,-0.065982230007648,-0.049098134040833],[-0.054699633270502,0.056468971073627,0.05163686722517],[0.026980064809322,-0.042915742844343,-0.0019527588738129]],[[-0.024388922378421,-0.040684197098017,0.061633620411158],[-0.023190412670374,0.0044789910316467,-0.040257964283228],[-0.088392041623592,0.010101892985404,-0.04300782084465]],[[0.02612623386085,0.045532118529081,-0.010481397621334],[0.021499084308743,0.0032921952661127,-0.019784986972809],[-0.067288525402546,-0.0044047208502889,-0.034543178975582]]],[[[-0.0049365675076842,-0.022060291841626,-0.013901173137128],[0.043051522225142,0.067788414657116,0.039719495922327],[0.038312509655952,-0.0141696119681,-0.074402317404747]],[[-0.016969649121165,0.081841967999935,0.06926229596138],[0.021886430680752,0.044994581490755,-0.083898767828941],[-0.027921447530389,0.0048138406127691,-0.080661661922932]],[[0.048802968114614,0.0050659710541368,-0.023593472316861],[0.088878072798252,-0.011055344715714,-0.071031101047993],[0.016901740804315,-0.054764036089182,-0.055657453835011]],[[0.051033109426498,0.03982986882329,0.03091648593545],[-0.0032089506275952,-0.11217542737722,0.020329296588898],[-0.01044708956033,-0.058836549520493,0.035794034600258]],[[-0.020483983680606,0.059554416686296,-0.024101689457893],[0.0015457976842299,-0.076714754104614,0.024114513769746],[-0.0020228950306773,0.062275592237711,0.041400190442801]],[[0.066478848457336,0.14369408786297,0.0070078549906611],[-0.11357719451189,-0.072303168475628,-0.013359570875764],[-0.015886306762695,-0.17979028820992,-0.14575560390949]],[[0.045359499752522,0.0044652470387518,-0.015885492786765],[-0.036697126924992,-0.072066716849804,0.051938682794571],[-0.036814335733652,-0.17951680719852,-0.056198425590992]],[[-0.025408368557692,-0.0250527523458,-0.019122254103422],[-0.018477067351341,-0.088163487613201,-0.10063820332289],[-0.095862746238708,0.0031518298201263,0.027753466740251]],[[0.028227545320988,0.05337779968977,0.0099829817190766],[-0.029045227915049,-0.013389392755926,-0.0066620111465454],[0.038111381232738,0.12159717828035,0.0049804453738034]],[[0.017222484573722,0.090735040605068,-0.029691772535443],[0.094979494810104,0.010560939088464,-0.12885995209217],[0.0031596720218658,-0.093531750142574,0.013062005862594]],[[0.047700025141239,0.027040485292673,0.041947726160288],[0.039468571543694,-0.020169366151094,0.016443038359284],[-0.1220847889781,-0.077987007796764,-0.064740993082523]],[[0.039389196783304,-0.044897556304932,0.035473104566336],[-0.025922367349267,0.006389875896275,-0.047512896358967],[-0.0057687670923769,-0.026689598336816,-0.062246553599834]],[[-0.062980882823467,-0.042851433157921,-0.073695063591003],[-0.080728903412819,-0.0023634575773031,-0.051695376634598],[-0.036167990416288,-0.049804747104645,-0.080853447318077]],[[0.0052162767387927,0.062241785228252,0.024725491181016],[-0.086432978510857,0.018976408988237,0.014850242994726],[0.0082918768748641,0.041490223258734,-0.13337764143944]],[[0.11617651581764,-0.044689316302538,0.082992285490036],[0.096444703638554,-0.0084568373858929,0.0066548250615597],[0.094402067363262,0.024727661162615,-0.084803529083729]],[[0.048475433140993,0.030132710933685,-0.084368526935577],[-0.09264013171196,-0.062234371900558,-0.10927414149046],[0.074654415249825,0.060308009386063,0.071215823292732]],[[0.026001146063209,-0.0056758420541883,-0.1148781850934],[0.013256455771625,-0.096608601510525,-0.046878293156624],[0.056160435080528,0.14315381646156,0.10851617157459]],[[0.045113507658243,-0.052900355309248,0.018221205100417],[0.011079247109592,0.039677534252405,-0.092121921479702],[0.033927265554667,0.011850298382342,-0.023753099143505]],[[-0.04095372185111,0.039540607482195,0.054211985319853],[0.017639946192503,-0.017819087952375,0.037170734256506],[0.022457456216216,0.019253125414252,0.02586667612195]],[[0.016370652243495,0.034570273011923,-0.0033299911301583],[-0.055761359632015,-0.055394534021616,0.034574426710606],[0.012366292066872,0.02519697509706,-0.0021332730539143]],[[0.017453042790294,-0.015012484975159,0.1359673589468],[-0.0074086324311793,0.0047072656452656,-0.052261855453253],[-0.0088943168520927,-0.01964314840734,-0.08185812830925]],[[-0.072442457079887,-0.0060672592371702,-0.077928371727467],[-0.0016793441027403,-0.026194186881185,0.093833334743977],[0.080684766173363,0.096782967448235,-0.00020207621855661]],[[0.059161029756069,0.03552782535553,-0.020754249766469],[-0.013962524011731,0.064507685601711,-0.065333761274815],[-0.066795505583286,-0.099507458508015,-0.034177698194981]],[[0.047487109899521,0.024169828742743,0.055144835263491],[0.090348102152348,0.21863085031509,0.0031510079279542],[0.075336419045925,0.07097265124321,0.16544251143932]],[[-0.045913614332676,-0.030521674081683,-0.037574078887701],[-0.072079263627529,-0.010766898281872,-0.018909022212029],[-0.028204329311848,0.08702065050602,-0.01456259470433]],[[0.071021936833858,0.012223775498569,0.051941070705652],[0.013717534951866,-0.034192714840174,0.0068806977942586],[0.0022710135672241,0.021545002236962,0.024267615750432]],[[-0.028837935999036,-0.040617674589157,0.021823160350323],[-0.092839978635311,-0.05046633630991,-0.026503119617701],[-0.029983464628458,-0.02561928331852,0.060915730893612]],[[0.001782983308658,-0.050507105886936,0.013377977535129],[0.065685950219631,0.0074285259470344,-0.077161371707916],[-0.050157364457846,-0.021762786433101,0.0070045972242951]],[[-0.035227902233601,-0.0029679047875106,-0.0026491307653487],[-0.022151632234454,-0.01348380651325,0.10273841023445],[-0.014546991325915,-0.044489990919828,0.051477670669556]],[[0.034078180789948,0.042905308306217,-0.039457939565182],[-0.024484742432833,-0.052912436425686,-0.045548014342785],[-0.07071627676487,0.034268967807293,-0.011656121350825]],[[-0.095444492995739,0.079634964466095,-0.10368862003088],[-0.043910093605518,0.036772791296244,-0.044099554419518],[-0.0047722938470542,0.056852824985981,0.043428998440504]],[[0.038793336600065,-0.02985673956573,-0.12307085096836],[-0.015010338276625,0.023738341405988,-0.038036499172449],[0.082842856645584,0.035578411072493,-0.01642007380724]],[[0.056754563003778,-0.018634300678968,0.041745956987143],[-0.015897003933787,-0.09375312179327,-0.023827509954572],[0.032638996839523,0.022841691970825,0.021316569298506]],[[0.070170655846596,0.020668914541602,0.014365145005286],[-0.0036990179214627,-0.0018337377114221,0.057272512465715],[0.0078964652493596,-0.14564335346222,-0.060270220041275]],[[-0.088760510087013,-0.015570479445159,0.020768450573087],[-0.049825489521027,0.018482575193048,-0.065647952258587],[-0.20715591311455,-0.092069365084171,-0.061171259731054]],[[-0.0094994055107236,0.0065871123224497,-0.053071916103363],[0.019754370674491,0.030794957652688,0.064535953104496],[0.040676053613424,0.057754244655371,-0.08164256811142]],[[0.043080512434244,-0.019282858818769,-0.078621804714203],[-0.042648699134588,0.089907452464104,-0.012325398623943],[0.04930167272687,0.10441298782825,-0.06684035807848]],[[-0.010176042094827,0.019650034606457,0.0079196188598871],[-0.13382239639759,-0.13565553724766,-0.014584275893867],[-0.026464706286788,0.087628439068794,0.072446539998055]],[[-0.097998730838299,-0.24126370251179,-0.050415568053722],[-0.0097261182963848,-0.15016244351864,0.080361358821392],[-0.0074067660607398,-0.045288883149624,0.058064412325621]],[[0.032058846205473,0.076163060963154,0.089601971209049],[-0.14323371648788,-0.11175101995468,-0.13342015445232],[-0.0048265210352838,-0.039482239633799,-0.028003431856632]],[[0.020917367190123,0.00069121981505305,-0.041082866489887],[-0.074009604752064,-0.0051145162433386,-0.052992135286331],[-0.11751800775528,-0.088016085326672,-0.1984408646822]],[[-0.051292806863785,-0.1044810116291,0.094920761883259],[-0.088772669434547,0.055380776524544,0.088774234056473],[-0.16654355823994,-0.065709337592125,0.039770890027285]],[[0.010068607516587,-0.094603724777699,-0.10007281601429],[-0.047627475112677,0.11981593072414,0.053223941475153],[-0.046854298561811,-0.035881102085114,-0.035913988947868]],[[0.022388136014342,-0.058964867144823,-0.025667296722531],[-0.012058517895639,0.012183539569378,-0.031046478077769],[0.086513131856918,0.0098375221714377,0.027717664837837]],[[-0.037592027336359,-0.038874980062246,0.0073001352138817],[-0.071189135313034,-0.053892306983471,-0.093930885195732],[0.027888804674149,-0.024046063423157,-0.059216499328613]],[[0.053609192371368,-0.064100757241249,-0.0018516816198826],[0.083012446761131,-0.014439686201513,-0.025711607187986],[-0.15619246661663,-0.10481889545918,-0.03547777235508]],[[-0.0053344639018178,0.018396027386189,0.059318963438272],[-0.034890957176685,0.066723696887493,-0.021108977496624],[0.082176424562931,-0.07171618193388,-0.10044892132282]],[[0.15584091842175,-0.05270079523325,-0.031223405152559],[-0.10251309722662,-0.1202954351902,-0.062891870737076],[-0.023267796263099,-0.1089900508523,0.004482897464186]],[[0.074826888740063,0.05999506264925,-0.077489078044891],[0.11678835749626,-0.024996576830745,-0.10177950561047],[-0.0092228632420301,-0.027415601536632,-0.044722139835358]],[[0.06573199480772,0.088330872356892,-0.0060888635925949],[0.053964033722878,0.097057014703751,-0.033502209931612],[-0.015847025439143,0.01108365599066,0.025280874222517]],[[-0.029771281406283,0.0069693136028945,-0.023884210735559],[0.074557647109032,-0.047713667154312,-0.077404253184795],[-0.0080133676528931,0.039192426949739,0.028558015823364]],[[-0.01043498236686,-0.065958224236965,0.081928633153439],[-0.098164074122906,-0.034225478768349,-0.027132663875818],[0.1129959076643,0.022113766521215,0.17300409078598]],[[0.04204586148262,0.017133669927716,0.022066479548812],[-0.12639300525188,-0.090432167053223,-0.28533053398132],[-0.11581820994616,0.015825932845473,-0.080565817654133]],[[0.052476700395346,-0.093891404569149,0.033299867063761],[0.0053805811330676,-0.0099533842876554,0.064613819122314],[-0.010780012235045,0.11568713933229,-0.015364213846624]],[[0.058226473629475,0.10359053313732,0.16852897405624],[0.016406860202551,-0.019107040017843,-0.072604455053806],[-0.064412802457809,-0.028461590409279,0.021533988416195]],[[0.068972542881966,0.071886539459229,-0.043071746826172],[-0.0077801835723221,-0.090275809168816,-0.039782572537661],[-0.081306494772434,-0.033084362745285,-0.018603075295687]],[[-0.049924209713936,-0.11644247919321,-0.050698690116405],[0.0035124206915498,-0.038658156991005,-0.019033616408706],[-0.0019282682333142,0.10499968379736,0.058098930865526]],[[0.022549387067556,0.04127062484622,-0.058934770524502],[-0.0057893893681467,-0.00094734993763268,-0.067364200949669],[0.034066289663315,-0.019069032743573,-0.11176811903715]],[[0.12687711417675,0.02337921410799,0.10439878702164],[0.046185120940208,-0.10305105894804,0.014702712185681],[0.058961112052202,0.18032249808311,-0.039082370698452]],[[0.010878138244152,0.080102168023586,0.045459050685167],[-0.025059551000595,0.012972856871784,-0.01023047696799],[-0.032426171004772,-0.049457546323538,-0.032132118940353]],[[-0.12750101089478,-0.034673914313316,0.02132854796946],[-0.011479631997645,-0.029380051419139,-0.018146526068449],[-0.012804122641683,-0.033769942820072,-0.0072935409843922]],[[0.010081184096634,-0.059714514762163,-0.0029628039337695],[-0.023321790620685,0.089192718267441,0.033531617373228],[0.0152404056862,-0.057371094822884,0.063912972807884]],[[-0.094506859779358,0.035621549934149,0.0064738444052637],[-0.029610943049192,-0.068342939019203,-0.064976677298546],[0.046539191156626,0.077271811664104,0.028156518936157]],[[-0.090782500803471,0.005414666607976,0.074704498052597],[-0.063852623105049,0.007797799538821,-0.059640776365995],[-0.036861091852188,-0.068830102682114,-0.12047589570284]]],[[[0.0028729925397784,-0.028327701613307,-0.017179382964969],[-0.034453686326742,0.028866278007627,0.041800267994404],[-0.055707532912493,-0.038997169584036,0.037066157907248]],[[-0.11165197938681,0.030114786699414,-0.072415344417095],[-0.036023773252964,0.049081720411777,-0.0041690268553793],[-0.021837456151843,-0.088359624147415,-0.064847886562347]],[[-0.028561292216182,-0.03718138858676,-0.12593990564346],[-0.10696925967932,-0.03756856918335,-0.082147710025311],[-0.086655162274837,-0.086978726089001,-0.044400561600924]],[[0.017097450792789,-0.0081102577969432,-0.061283301562071],[0.019976614043117,-0.071890354156494,-0.060829423367977],[-0.034347493201494,0.10452868044376,-0.044257871806622]],[[-0.013292420655489,-0.10391520708799,0.080237358808517],[-0.046679578721523,0.010310317389667,0.0094140376895666],[0.042836222797632,-0.036915123462677,0.0052681090310216]],[[-0.0071493913419545,0.0013194106286392,-0.10999089479446],[-0.055479321628809,-0.0033132047392428,-0.06303683668375],[-0.041011452674866,-0.037839323282242,-0.054518051445484]],[[-0.15476781129837,-0.058922674506903,0.0089633231982589],[-0.069720551371574,-0.039900947362185,-0.037937242537737],[-0.047097656875849,-0.055898491293192,-0.10412705689669]],[[0.032884046435356,-0.12665331363678,0.11850947141647],[-0.047802068293095,0.036683976650238,-0.11791962385178],[-0.026374572888017,-0.013847566209733,0.076229572296143]],[[0.0013892332790419,-0.04393370449543,0.038529600948095],[0.060765080153942,0.022754780948162,-0.07037478685379],[0.041639361530542,0.030536340549588,0.0081458613276482]],[[-0.14098854362965,-0.027578542008996,-0.072755873203278],[0.086684465408325,-0.14116325974464,0.020516965538263],[-0.075731739401817,0.19117583334446,-0.15350593626499]],[[0.067343629896641,-0.076206617057323,-0.16166940331459],[-0.19864898920059,0.12276611477137,-0.027874806895852],[0.13010093569756,-0.13787089288235,0.0063430778682232]],[[0.029387662187219,-0.071128703653812,0.053627468645573],[-0.059526190161705,0.023091267794371,-0.15614265203476],[0.064340338110924,-0.11240622401237,0.033958349376917]],[[-0.073244750499725,-0.090921223163605,-0.087485179305077],[-0.063450925052166,0.038972176611423,-0.013267609290779],[0.18626493215561,-0.049204044044018,0.058036278933287]],[[0.048579707741737,-0.04481316357851,0.018161490559578],[-0.17145422101021,0.044987518340349,0.095621138811111],[-0.013787834905088,0.052296787500381,-0.025110967457294]],[[-0.17744000256062,0.14609430730343,-0.12073014676571],[-0.012822635471821,-0.11200298368931,0.035250619053841],[-0.086650371551514,0.062895409762859,-0.060658447444439]],[[-0.17780521512032,0.32258978486061,-0.24834856390953],[0.024830529466271,-0.19285446405411,0.054751511663198],[0.12238226830959,-0.22339703142643,-0.00068156357156113]],[[-0.046527687460184,0.011581005528569,0.054495681077242],[-0.019580354914069,0.032295573502779,0.0035085896961391],[-0.16269978880882,0.038972303271294,-0.13791926205158]],[[0.013887335546315,-0.046786744147539,-0.055433314293623],[-0.059754639863968,0.076144896447659,-0.037008386105299],[-0.06506921350956,-0.0091019002720714,0.0047079441137612]],[[-0.060824364423752,0.00037721430999227,0.028481988236308],[-0.064472876489162,-0.00023781594063621,-0.1577831953764],[0.063221618533134,-0.20369353890419,0.247513204813]],[[0.0030559706501663,-0.002453901572153,-0.0019797619897872],[0.019973240792751,-0.0016949308337644,-0.0058447103947401],[-0.0016296248650178,0.012609635479748,-0.015595370903611]],[[0.020127490162849,-0.10756441950798,0.10011652112007],[0.020091408863664,0.042377632111311,-0.067558072507381],[-0.021560164168477,0.021493637934327,0.010452427901328]],[[0.026058506220579,0.017144061625004,-0.019475096836686],[-0.0093410275876522,0.061666313558817,-0.0062787341885269],[0.036213416606188,0.076374262571335,-0.082234248518944]],[[-0.043080799281597,0.016301145777106,-0.032647915184498],[-0.010058793239295,-0.029915686696768,-0.037092056125402],[0.01753812469542,-0.035524751991034,0.025309413671494]],[[-0.074486419558525,0.059977743774652,-0.07842156291008],[0.0093441847711802,0.062093049287796,0.13584104180336],[0.035549875348806,0.033488396555185,-0.039883092045784]],[[0.06346071511507,-0.026198027655482,0.11791537702084],[-0.02035634405911,0.0042478409595788,-0.089604057371616],[-0.094203718006611,-0.035584639757872,0.010829671286047]],[[0.053545199334621,-0.043346490710974,0.0030899590346962],[0.038732066750526,0.039718464016914,-0.08765521645546],[0.093048267066479,-0.014755771495402,0.049297150224447]],[[-0.094464607536793,0.030789367854595,-0.1101647913456],[-0.032529234886169,-0.063459917902946,0.14757508039474],[-0.0599175542593,-0.033991355448961,-0.052054800093174]],[[0.10244642198086,-0.042504690587521,0.094847545027733],[-0.075895257294178,0.059977404773235,0.018328608945012],[0.046617202460766,-0.015520523302257,0.063849866390228]],[[0.036174021661282,-0.13851264119148,0.052692990750074],[-0.17191334068775,0.11754916608334,-0.21992686390877],[0.14452555775642,-0.21222126483917,0.13505366444588]],[[-0.08794578909874,-0.018094064667821,-0.08287475258112],[0.034665085375309,-0.056562330573797,-0.0084176063537598],[-0.074277319014072,-0.014563267119229,-0.071484446525574]],[[-0.018847173079848,-0.08689733594656,-0.12709099054337],[-0.0023920186795294,-0.040327034890652,0.086406618356705],[-0.016415758058429,0.14880615472794,-0.038288343697786]],[[0.035750288516283,-0.061435829848051,-0.018085937947035],[0.023810276761651,-0.014537253417075,0.035626221448183],[-0.078108988702297,0.030698800459504,-0.10098943114281]],[[0.037766229361296,-0.056006357073784,-0.20110237598419],[-0.10515477508307,0.028632270172238,0.12082756310701],[-0.067745089530945,-0.046353671699762,-0.15075957775116]],[[-0.031872306019068,-0.028471084311604,0.079245992004871],[-0.0508718714118,-0.010998879559338,-0.050599131733179],[0.067942716181278,0.012670905329287,-0.16347341239452]],[[-0.085410587489605,0.097264133393764,-0.075695350766182],[0.044537752866745,-0.04909273982048,-0.0082339625805616],[-0.071999192237854,0.024584967643023,-0.11740275472403]],[[0.032980069518089,-0.020811090245843,-0.043225154280663],[-0.0033376170322299,-0.066653124988079,-0.026430821046233],[0.069040149450302,0.033980518579483,-0.049899760633707]],[[-0.050471402704716,0.035303484648466,0.16155055165291],[-0.10021090507507,0.019102316349745,-0.088526733219624],[-0.065036296844482,-0.013328361324966,0.046484466642141]],[[-0.019528253003955,-0.11840865015984,-0.09032841771841],[0.021659655496478,-0.12407556921244,-0.017237409949303],[-0.078322552144527,-0.056759778410196,0.078067228198051]],[[-0.024790372699499,-0.0056693884544075,0.00092588237021118],[0.026670232415199,-0.028700493276119,-0.024360489100218],[0.031955633312464,0.059979148209095,-0.0015573224518448]],[[0.12991692125797,-0.077302791178226,0.060062244534492],[-0.0076336320489645,-0.012936112470925,-0.046319078654051],[-0.050232488662004,0.044220980256796,-0.034387491643429]],[[0.068334847688675,-0.071877963840961,-0.10579321533442],[0.1479018330574,-0.2264686524868,-0.11380209773779],[-0.30371934175491,0.079595603048801,0.049122259020805]],[[-0.078765459358692,-0.003839623183012,-0.050430215895176],[-0.048665788024664,0.11939733475447,-0.042743239551783],[-0.0941241979599,0.076837010681629,-0.00030978317954578]],[[-0.11912198364735,0.17393396794796,-0.23079757392406],[0.072803221642971,-0.16764110326767,0.15391984581947],[-0.13122622668743,0.15085873007774,-0.1544773131609]],[[0.046536907553673,-0.083605729043484,0.11277367174625],[-0.036996386945248,0.094075165688992,-0.13490243256092],[-0.049169350415468,-0.025077847763896,-0.0078846160322428]],[[-0.063364617526531,-0.11778305470943,0.022216513752937],[-0.055506721138954,0.08622932434082,-0.05220952257514],[-0.021110059693456,-0.020356925204396,-0.0025857118889689]],[[-0.011391180567443,0.024426020681858,-0.044133137911558],[-0.010398887097836,-0.041083447635174,-0.025335842743516],[-0.057935781776905,0.052405636757612,-0.088966593146324]],[[-0.0085633462294936,-0.036245085299015,-0.014734581112862],[-0.014379491098225,0.055445153266191,-0.082347735762596],[0.044034421443939,-0.02976169064641,-0.02571034617722]],[[-0.013451432809234,0.030911147594452,-0.051668409258127],[-0.048265177756548,-0.0025637911166996,0.026354348286986],[-0.038217902183533,8.9683097030502e-05,0.0049595874734223]],[[-0.12759028375149,0.0058401967398822,-0.097066402435303],[0.058434594422579,0.063042141497135,0.022393938153982],[-0.050842836499214,0.085369274020195,-0.11079354584217]],[[-0.092109553515911,0.038112316280603,-0.046176053583622],[0.06738768517971,0.017123328521848,-0.020850019529462],[-0.097398094832897,-0.080108635127544,0.026803268119693]],[[-0.11116918176413,0.063614048063755,-0.17215220630169],[0.124008461833,-0.12240564823151,-0.0014714482240379],[-0.19707074761391,0.081653766334057,-0.10664562880993]],[[-0.092094719409943,0.015682507306337,0.02189239859581],[0.12065733969212,0.17994377017021,-0.11804893612862],[0.19131179153919,-0.055464718490839,0.091186575591564]],[[-0.12694534659386,0.070852898061275,-0.099342502653599],[0.10382149368525,-0.10965303331614,0.033949341624975],[-0.13193018734455,0.065353199839592,-0.11974468827248]],[[-0.10873495787382,0.01656031049788,0.12123294174671],[-0.046917226165533,0.022307774052024,-0.074077114462852],[0.022747904062271,-0.12499707937241,0.039836756885052]],[[-0.048424120992422,0.025832599028945,0.0240857899189],[0.15825569629669,-0.09930906444788,0.066479757428169],[-0.062292642891407,0.061458021402359,-0.097125291824341]],[[0.12179943919182,-0.12917120754719,0.054322354495525],[-0.18579822778702,0.095652267336845,-0.062863104045391],[0.16052390635014,-0.063618324697018,0.083363741636276]],[[-0.11650087684393,0.020587934181094,0.045233592391014],[0.019211322069168,-0.11073505878448,-0.096145793795586],[0.029644634574652,0.03408345580101,0.069945350289345]],[[-0.049549221992493,0.047352518886328,-0.12160138040781],[-0.00066368863917887,-0.095698766410351,0.022756738588214],[-0.018012007698417,-0.099716201424599,0.023377783596516]],[[-0.14374271035194,-0.029661992564797,0.26075446605682],[0.10642651468515,0.049314472824335,-0.02464022487402],[0.10304474085569,0.0064656143076718,0.0067827166058123]],[[-0.0103316064924,-0.044700816273689,0.023726357147098],[-0.0067111440002918,0.039196826517582,-0.012936335988343],[0.0074226851575077,-0.038348283618689,0.018448272719979]],[[0.005905226804316,0.047632560133934,-0.0020276575814933],[0.035690471529961,-0.010892984457314,-0.034224566072226],[-0.057177681475878,-0.032494459301233,-0.055312763899565]],[[-0.00070358416996896,-0.035054329782724,0.092451721429825],[0.10917423665524,-0.098517224192619,0.0098314974457026],[-0.073910981416702,0.066363073885441,-0.087143130600452]],[[-0.10622499883175,-0.0085548767820001,0.054114878177643],[0.081070281565189,-0.036602452397346,-0.0047320798039436],[-0.10140713304281,0.023237200453877,-0.1956090182066]],[[-0.17465390264988,0.1334118694067,0.0052643436938524],[0.013047801330686,-0.0020733557175845,-0.065390825271606],[0.093353934586048,-0.089000962674618,0.024727776646614]]],[[[-0.067084655165672,-0.044113464653492,-0.06783664226532],[-0.080613881349564,-0.02048003859818,-0.074527308344841],[-0.032738897949457,0.033352114260197,-0.01168498210609]],[[-0.0096303662285209,0.041814878582954,-0.084042973816395],[-0.15419398248196,-0.059715870767832,0.14989471435547],[-0.2706678211689,-0.20497396588326,-0.027317686006427]],[[-0.079748466610909,0.023751189932227,0.071078404784203],[-0.14121149480343,0.017923563718796,0.033570479601622],[-0.15906921029091,0.064382411539555,0.12635196745396]],[[-0.034202620387077,0.020486660301685,-0.043196108192205],[-0.050231646746397,-0.14969798922539,-0.0029350579716265],[-0.17327781021595,-0.088761895895004,-0.061586886644363]],[[-0.1001203507185,0.0035029330756515,-0.052846614271402],[-0.037644509226084,0.03385491296649,0.038338854908943],[-0.078059919178486,0.088096544146538,0.097263775765896]],[[-0.040413662791252,-0.067275300621986,-0.096081532537937],[0.030563332140446,-0.031689163297415,-0.033200927078724],[0.029208855703473,0.039840649813414,-0.027808522805572]],[[-0.037691254168749,0.047134388238192,-0.035538908094168],[-0.063058756291866,0.031755954027176,-0.10919149965048],[-0.034368213266134,-0.044339872896671,0.0031364776659757]],[[0.008420392870903,-0.028579210862517,-0.045058608055115],[-0.072165533900261,-0.083207979798317,0.086469024419785],[-0.13138593733311,-0.31163135170937,-0.05403621122241]],[[0.0091457730159163,0.010067442432046,0.0041635320521891],[0.039694681763649,-0.049560725688934,0.022973939776421],[0.035962603986263,-0.042967833578587,-0.0022004111669958]],[[-0.058523636311293,-0.0439249612391,0.0041831177659333],[0.0021906543988734,0.031008550897241,-0.026526825502515],[0.078914001584053,0.076687872409821,0.032111283391714]],[[0.063001684844494,0.066434741020203,-0.012584557756782],[0.013998683542013,0.035715214908123,-0.010512216947973],[-0.082277096807957,-0.066047325730324,-0.023046499118209]],[[0.028148792684078,-0.065789841115475,0.033183734863997],[0.0257568359375,0.11318576335907,0.10459962487221],[-0.16573411226273,0.14315171539783,0.027458867058158]],[[-0.018016561865807,0.017168983817101,0.035527285188437],[-0.0011162917362526,0.040423896163702,-0.022330645471811],[-0.13528753817081,-0.062214560806751,-0.0364671908319]],[[-0.0024214047007263,-0.0048904158174992,0.085836492478848],[-0.15595535933971,0.013470374047756,0.032517723739147],[-0.010558405891061,-0.039934463799,0.011151545681059]],[[0.054211389273405,0.057992942631245,0.043338213115931],[-0.01025877147913,-0.02305020019412,-0.019339835271239],[-0.053455084562302,0.0076002390123904,0.030242968350649]],[[0.032613474875689,-0.0076440987177193,-0.12843756377697],[0.052631180733442,0.13285060226917,-0.089229054749012],[0.20115578174591,0.034037001430988,0.021007761359215]],[[0.054056379944086,0.045484326779842,-0.078820012509823],[0.0078635094687343,0.018407171592116,-0.085115730762482],[0.054125271737576,-0.10495747625828,0.009463899768889]],[[-0.0036364658735693,-0.014175617136061,0.0317168161273],[-0.041408095508814,-0.069861002266407,0.07643660902977],[-0.28714883327484,-0.16346563398838,-0.19112785160542]],[[0.0031214496120811,-0.096696212887764,-0.11056628078222],[0.12604178488255,0.0204923376441,-0.0068618054501712],[0.016562253236771,-0.06396372616291,-0.17463745176792]],[[-0.016844861209393,0.018471509218216,0.022961355745792],[-0.035142436623573,0.0041689653880894,0.047506351023912],[-0.026572518050671,-0.071217224001884,0.052784629166126]],[[-0.022648083046079,-0.095435678958893,-0.030866891145706],[-0.018556090071797,-0.1937195956707,-0.016774486750364],[-0.10110957175493,-0.24505764245987,-0.044183135032654]],[[0.00083237694343552,-0.14267887175083,0.0017616840777919],[0.15058864653111,-0.071293868124485,0.061473835259676],[0.13214020431042,0.091134041547775,0.012784765101969]],[[0.10476594418287,-0.00090611109044403,0.1129095479846],[0.024995738640428,0.0084109138697386,0.08480154722929],[-0.25409975647926,-0.11819922178984,-0.092465952038765]],[[0.073337078094482,0.032524455338717,-0.062763072550297],[0.19317248463631,0.12319806218147,-0.0044630602933466],[0.20537316799164,0.091931484639645,0.11584260314703]],[[-0.06189077347517,-0.11047579348087,0.049679350107908],[0.037364326417446,-0.036497049033642,-0.018181789666414],[-0.015957558527589,-0.025208102539182,-0.023026356473565]],[[0.0097955111414194,0.058145247399807,0.1296014636755],[0.005256085190922,0.027965364977717,0.070728227496147],[0.077987901866436,0.01183510851115,0.077664390206337]],[[0.11504821479321,0.0087938951328397,0.029156494885683],[-0.088612407445908,0.18335819244385,0.016122844070196],[-0.12583296000957,-0.065320834517479,0.087771207094193]],[[0.0060728332027793,0.093375004827976,0.12959438562393],[0.065323166549206,-0.050542011857033,0.015320366248488],[-0.0065993838943541,0.012511768378317,-0.055226370692253]],[[0.023252883926034,0.068114012479782,0.050739523023367],[0.0044859042391181,-0.017485897988081,0.21157148480415],[-0.17862023413181,-0.033124208450317,-0.010037494823337]],[[0.010357845574617,-0.020122289657593,0.039262980222702],[-0.063709273934364,-0.13679546117783,-0.0099997306242585],[-0.02374810539186,-0.095225408673286,0.032813645899296]],[[-0.0043380917049944,0.019468104466796,-0.035838387906551],[0.058417528867722,-0.023226583376527,-0.047889556735754],[0.053824324160814,-0.0059395944699645,0.0089064845815301]],[[0.079119697213173,-0.020511323586106,0.045119155198336],[-0.11643750965595,0.054311662912369,-0.035459633916616],[-0.10795912146568,0.11040822416544,0.091817043721676]],[[0.02621721662581,-0.094702519476414,-0.038642160594463],[-0.0049208225682378,0.0012870175996795,-0.083315156400204],[0.034032702445984,-0.023001426830888,0.0026963893324137]],[[0.013750687241554,0.01846113242209,-0.023089975118637],[-0.013128609396517,-0.14394076168537,-0.045123927295208],[0.053890079259872,-0.0061432411894202,-0.038759313523769]],[[0.033303488045931,0.10650523751974,0.1136617437005],[0.056662160903215,-0.084168791770935,-0.033130567520857],[-0.090205915272236,0.047970492392778,-0.023140540346503]],[[-0.14522252976894,-0.03816457465291,-0.026600791141391],[-0.045078422874212,-0.19434610009193,-0.081274151802063],[-0.078158088028431,-0.014223670586944,0.10415265709162]],[[0.07637682557106,-0.075044080615044,-0.14191913604736],[0.053142786026001,0.013393674045801,0.12175552546978],[0.18343481421471,0.045883897691965,0.099830158054829]],[[0.062499601393938,0.076399117708206,0.043369550257921],[0.060338314622641,0.18031096458435,0.050058219581842],[-0.18531292676926,-0.0080401562154293,0.049026809632778]],[[0.0093011278659105,-0.031599998474121,0.018486063927412],[0.059624720364809,0.019317271187901,-0.029080452397466],[-0.024647004902363,-0.020821362733841,-0.033528968691826]],[[0.020754544064403,-0.023980220779777,-0.068961665034294],[0.063762381672859,-0.09789365530014,0.015674013644457],[0.11884417384863,-0.042659111320972,-0.0028033477719873]],[[0.057678785175085,0.086289472877979,0.049319859594107],[0.11848656833172,-0.075372315943241,0.03520892187953],[-0.14959613978863,-0.0027317027561367,0.013690052554011]],[[0.081274084746838,0.022416912019253,0.11328086256981],[0.045409377664328,0.057438611984253,0.043319374322891],[0.0093413824215531,-0.020523339509964,-0.10638028383255]],[[-0.038129847496748,-0.032660391181707,0.041055507957935],[-0.070920847356319,-0.13116355240345,0.064834602177143],[-0.11713734269142,-0.003105876268819,0.092985235154629]],[[0.035763438791037,0.036289323121309,0.039663136005402],[-0.19693806767464,-0.11477461457253,0.048690192401409],[0.056120030581951,-0.21923480927944,-0.012569477781653]],[[0.009608163498342,-0.099552229046822,-0.1091730594635],[0.053486421704292,0.025768043473363,-0.032416731119156],[0.060259986668825,0.013487420044839,-0.03584424033761]],[[0.017270689830184,0.035733867436647,-0.0098722465336323],[-0.077121883630753,-0.13645660877228,-0.025106627494097],[-0.24146640300751,-0.1235373467207,-0.073465153574944]],[[0.013200976885855,0.072477869689465,-0.071648895740509],[0.057885568588972,-0.012158232741058,0.051304642111063],[0.004337016493082,0.079018749296665,-0.023427126929164]],[[-0.032596245408058,0.0050896899774671,0.095522619783878],[-0.036499716341496,-0.010896728374064,-0.043773453682661],[0.021770715713501,-0.00028331833891571,0.0062668272294104]],[[0.010861481539905,-0.086247883737087,0.10978151112795],[-0.049567755311728,-0.022912707179785,0.05322128906846],[0.088101133704185,0.034662149846554,-0.093201696872711]],[[0.044735137373209,0.044054172933102,0.032506838440895],[-0.021045289933681,0.074395194649696,-0.13409417867661],[-0.071750044822693,0.030329011380672,0.051978953182697]],[[0.022220695391297,0.038787946105003,0.20755112171173],[0.023434359580278,-0.069724053144455,0.00074938853504136],[0.027811707928777,0.023935977369547,0.099869273602962]],[[0.051830794662237,0.029056180268526,-0.10261469334364],[0.040951251983643,0.085211627185345,-0.036893576383591],[0.1609582901001,0.054654832929373,-0.025071583688259]],[[0.026994541287422,-0.097463540732861,0.11962378770113],[-0.085276231169701,0.14044791460037,0.040282342582941],[-0.19917017221451,-0.17410838603973,-0.059035010635853]],[[0.021638866513968,0.079890556633472,-0.05027561634779],[-0.026857182383537,0.041301198303699,0.086273081600666],[0.038117624819279,0.030159460380673,0.083700463175774]],[[0.028653619810939,-0.06297392398119,0.03127958253026],[-0.050457447767258,0.099679619073868,0.19833080470562],[-0.12843869626522,-0.25549441576004,-0.035916171967983]],[[0.024421941488981,0.064893908798695,-0.038964189589024],[-0.026162808761001,0.050062458962202,0.0034961046185344],[-0.022757060825825,0.041510757058859,-0.090322881937027]],[[-0.0025506687816232,0.065142095088959,0.031362298876047],[-0.0021033147349954,-0.0024772025644779,0.092835895717144],[0.0079881194978952,-0.048964504152536,0.0086622452363372]],[[0.031248617917299,0.00055686361156404,0.038488071411848],[-0.017551682889462,-0.0049844444729388,-0.021942371502519],[-0.10384477674961,-0.017693441361189,-0.0093599809333682]],[[0.086184084415436,-0.064982190728188,-0.13418270647526],[0.14986325800419,0.041360441595316,0.0075100837275386],[0.28531429171562,0.057166785001755,-0.069413803517818]],[[0.041908595710993,-0.019172228872776,-0.10626151412725],[0.059015605598688,0.021673008799553,-0.0066526574082673],[0.0038929935544729,0.077739857137203,-0.035634003579617]],[[-0.097977347671986,0.010065685026348,0.014442370273173],[0.01625339128077,0.006602612324059,0.0099010961130261],[-0.013541818596423,-0.0076959664002061,0.11698780208826]],[[-0.048504177480936,-0.042975191026926,0.081594675779343],[-0.10370598733425,0.059823874384165,0.095060259103775],[-0.18090365827084,0.14328187704086,0.10168355703354]],[[0.015784434974194,-0.062448151409626,0.14598816633224],[0.019689848646522,-0.10442800074816,0.020961051806808],[0.052436083555222,-0.043866559863091,0.08133727312088]],[[-0.16876597702503,0.085513427853584,0.00023727137886453],[-0.054582849144936,0.096620835363865,0.018788499757648],[-0.12897972762585,0.0078116771765053,-0.039234176278114]]],[[[0.01950141787529,-0.00012373115168884,-0.17732460796833],[0.016341974958777,0.059177618473768,0.052077412605286],[-0.035926565527916,-0.0012332786573097,0.081295758485794]],[[0.058459226042032,0.0028892054688185,-0.057674296200275],[0.032679170370102,-0.028398809954524,0.048422522842884],[-0.049427300691605,-0.03989277780056,-0.18121568858624]],[[-0.060336615890265,0.10889675468206,0.033863626420498],[0.019763963297009,-0.021698972210288,-0.029938936233521],[-0.013164716772735,0.049871634691954,-0.097065500915051]],[[0.041259251534939,0.046916998922825,0.01408302038908],[0.043885480612516,-0.078322313725948,0.018370557576418],[-0.014383626170456,0.12994557619095,0.024160640314221]],[[0.010507280007005,0.056045796722174,0.042768120765686],[-0.063510604202747,-0.10236971825361,0.041340369731188],[0.06831206381321,0.019613536074758,0.068606324493885]],[[0.029593573883176,-0.0019518146291375,-0.017483197152615],[0.013617127202451,0.047748845070601,-0.0061540557071567],[0.0051255864091218,-0.026242442429066,0.015684023499489]],[[0.047251913696527,0.020971028134227,-0.0081899389624596],[-0.039917480200529,-0.073541313409805,0.023016719147563],[0.022114492952824,-0.058377344161272,-0.017341626808047]],[[0.057192429900169,-0.046455938369036,-0.036528237164021],[-0.0030115193221718,-0.028807170689106,0.031835880130529],[0.0096656503155828,-0.031489085406065,-0.029433282092214]],[[0.0036965403705835,-0.0025047005619854,-0.077266164124012],[-0.0044771493412554,-0.048907861113548,0.065379962325096],[-0.067548833787441,0.083308972418308,-0.044137079268694]],[[-0.046661537140608,-0.016128269955516,-0.054413471370935],[-0.0017965004080907,0.0092234676703811,0.062359973788261],[-0.086610235273838,-0.016946902498603,-0.0031573835294694]],[[-0.047347147017717,0.015299128368497,-0.0094701135531068],[-0.013524553738534,0.052344549447298,0.038758404552937],[-0.01528194732964,-0.073319494724274,-0.0019469090038911]],[[-0.0031287427991629,0.038398373872042,0.031720355153084],[-0.077613927423954,0.030326182022691,0.012252234853804],[0.059303779155016,-0.17471808195114,-0.10318745672703]],[[-0.022427007555962,0.082376420497894,-0.054561201483011],[-0.02131225913763,-0.041390042752028,-0.016033176332712],[-0.068921990692616,-0.023262714967132,-0.0025753020308912]],[[-0.12890219688416,-0.11704070866108,-0.0041551012545824],[0.0010743869934231,0.014205491170287,0.011522680521011],[0.00047653340152465,0.014816087670624,0.0013344346079975]],[[-0.057020504027605,-0.061327286064625,-0.043436501175165],[0.0078305592760444,0.001613941625692,-0.051906269043684],[0.0027803382836282,-0.018274968490005,0.074443861842155]],[[0.061705529689789,0.063573457300663,-0.09064307063818],[-0.010366910137236,0.020182259380817,0.058016061782837],[0.0018645803211257,0.0430608689785,0.034395407885313]],[[0.079947836697102,0.0069247544743121,-0.026525843888521],[0.088334791362286,-0.0018167599337175,-0.0067280763760209],[0.10667847841978,0.1043012663722,-0.012806107290089]],[[-0.14556176960468,-0.0096909133717418,-0.12518902122974],[-0.011555111967027,0.038849253207445,-0.13278625905514],[-0.039651803672314,-0.054567467421293,0.010271030478179]],[[-0.015076291747391,-0.036423180252314,0.051925200968981],[0.052788354456425,-0.065227687358856,-0.062060356140137],[-0.02164950594306,-0.0066643357276917,0.017275841906667]],[[-0.059743274003267,-0.011375112459064,0.048640009015799],[-0.075729802250862,0.025969913229346,0.0046268394216895],[-0.014483726583421,0.033819958567619,0.041275426745415]],[[-0.070186279714108,-0.061409682035446,-0.12237352132797],[-0.12484263628721,-0.11181707680225,-0.11210519820452],[0.022567933425307,0.0058066206984222,-0.068968646228313]],[[-0.079776726663113,0.015377584844828,-0.012599816545844],[-0.033585324883461,-0.053890392184258,0.050939399749041],[0.02466381713748,0.026447990909219,0.0416907556355]],[[-0.083626829087734,0.17473211884499,-0.036752711981535],[0.050982512533665,-0.066673263907433,0.043267592787743],[0.037242013961077,0.011649932712317,-0.10989659279585]],[[0.018930539488792,0.050788473337889,0.057002432644367],[0.059813864529133,0.069454915821552,0.045325148850679],[0.13366797566414,0.083946891129017,0.082608133554459]],[[-0.0049333046190441,0.07721184939146,0.068809501826763],[0.02057996019721,0.0021468226332217,-0.0067543820478022],[0.032566804438829,0.0094254231080413,0.036271214485168]],[[-0.055470664054155,0.095661960542202,0.032565306872129],[-0.015077539719641,-0.00071044213837013,0.030877575278282],[0.052073054015636,0.10278048366308,-0.018846610561013]],[[-0.031014461070299,0.12472279369831,-0.028080882504582],[0.10681819170713,-0.02537508867681,-0.024737238883972],[0.090101882815361,0.066620960831642,0.012415253557265]],[[0.079113267362118,-0.089545793831348,0.011169819161296],[0.059623226523399,-0.02198401838541,0.020860893651843],[-0.041878301650286,-0.010654229670763,0.17537480592728]],[[0.034834951162338,0.026336031034589,0.095671251416206],[0.013652033172548,0.076366975903511,-0.054848559200764],[0.077546834945679,-0.013848780654371,0.058067321777344]],[[-0.017156017944217,-0.046185653656721,-0.039886031299829],[0.079918019473553,-0.017448065802455,-0.017783641815186],[0.055065397173166,-0.024254273623228,-0.011124750599265]],[[-0.020638588815928,0.01828215457499,-0.036146778613329],[-0.028592135757208,-0.054850835353136,0.070257037878036],[-0.087441802024841,-0.03577346354723,0.031381204724312]],[[0.064268693327904,0.038433093577623,0.0086015146225691],[-0.094727203249931,0.084057703614235,-0.065448559820652],[0.047711692750454,0.11475203186274,0.049015775322914]],[[0.012522809207439,-0.040202744305134,0.037475626915693],[-0.024268295615911,0.04280436784029,-0.047470644116402],[-0.085068330168724,-0.018343729898334,-0.043587151914835]],[[-0.087317235767841,-0.0037125798407942,-0.03916659578681],[0.020263561978936,-0.1330828666687,0.050636675208807],[0.043730791658163,0.06093879789114,0.097625181078911]],[[0.065296165645123,0.024158397689462,0.099630206823349],[0.083288133144379,0.065257377922535,0.048839244991541],[0.042062412947416,0.030231881886721,0.1216606721282]],[[-0.10513634234667,0.036513090133667,0.0051957089453936],[-0.0037639585789293,0.016488336026669,-0.043080888688564],[0.029022295027971,-0.03814160823822,0.014893228188157]],[[-0.019814696162939,0.010458788834512,0.010131621733308],[-0.0081903943791986,0.027473006397486,0.10456436127424],[-0.1343899667263,-0.08189968764782,0.0043001426383853]],[[-0.018635883927345,-0.0038765845820308,-0.085094340145588],[-0.042505145072937,-0.066525295376778,-0.0081832110881805],[0.0070622521452606,-0.01665292493999,-0.023274576291442]],[[-0.16611024737358,-0.04357897117734,0.019777746871114],[-0.12966956198215,-0.039474122226238,0.068437747657299],[-0.035843428224325,-0.066065169870853,-0.072225421667099]],[[-0.11758382618427,0.13007979094982,-0.031152877956629],[-0.10411567240953,-0.067414194345474,0.030649222433567],[0.025605726987123,0.095092721283436,-0.033923447132111]],[[-0.18213383853436,0.026716638356447,0.0073890443891287],[-0.13896587491035,0.014266807585955,-0.11795834451914],[-0.22854936122894,-0.12349167466164,0.075508505105972]],[[-0.0040664547123015,0.067958168685436,0.076048515737057],[-0.089997947216034,0.059600207954645,-0.0060498570092022],[-0.05595013871789,-0.035588223487139,-0.033624947071075]],[[-0.0073034297674894,-0.029979756101966,-0.045177061110735],[-0.01551425922662,-0.040780872106552,0.023241870105267],[0.044245194643736,0.019389875233173,-0.061280626803637]],[[-0.016882814466953,-0.017005633562803,-0.036545190960169],[-0.083174198865891,0.077071160078049,0.017758686095476],[-0.079790338873863,-0.019301032647491,0.079674877226353]],[[0.035930924117565,-0.027741322293878,-0.087808303534985],[0.050962846726179,-0.034862238913774,0.044409353286028],[0.059378668665886,-0.16065528988838,-0.069045878946781]],[[-0.072990745306015,-3.4412929380778e-05,0.028857441619039],[-0.0061231656000018,0.058874256908894,-0.041581645607948],[-0.055564902722836,0.023262979462743,0.026306206360459]],[[-0.046414133161306,-0.017552599310875,-0.032118331640959],[-0.11705090105534,0.018373411148787,0.008690882474184],[-0.088547334074974,-0.0066808992996812,0.021636975929141]],[[-0.091659359633923,-0.11687602102757,0.015429768711329],[0.0044951103627682,-0.022089449688792,-0.064409658312798],[-0.1029859483242,0.026658391579986,0.08529157936573]],[[-0.036836538463831,-0.092929631471634,-0.13197158277035],[0.015127966180444,0.046385996043682,0.0016789817018434],[-0.094288058578968,-0.025866448879242,-0.0062768659554422]],[[0.049918286502361,0.028587318956852,0.051270481199026],[0.070526711642742,-0.066023834049702,-0.087717555463314],[0.060093935579062,0.043432578444481,-0.057864457368851]],[[-0.04972430691123,-0.010502586141229,-0.030642438679934],[0.0085896570235491,-0.0065756067633629,-0.0020066511351615],[-0.11730450391769,-0.021044002845883,0.060602907091379]],[[0.028933584690094,-0.019897058606148,0.083322688937187],[0.10735850036144,0.015005790628493,-0.0083032427355647],[-0.058763347566128,0.058869898319244,0.047853216528893]],[[-0.037114594131708,-0.074173249304295,-0.0033406072761863],[0.034212302416563,0.036013185977936,0.046553868800402],[0.062812112271786,-0.009347596205771,0.10697208344936]],[[-0.02300794236362,0.12726107239723,0.111447699368],[0.022691054269671,-0.060522314161062,-0.096387669444084],[0.014901982620358,0.034144755452871,-0.060578297823668]],[[-0.017997989431024,0.053835533559322,-0.032765220850706],[0.050582565367222,-0.080628588795662,-0.03109042160213],[0.11473075300455,0.036255050450563,-0.10488947480917]],[[-0.12269654870033,0.0049324538558722,-0.0067189568653703],[-0.039331030100584,0.072281010448933,0.013853176496923],[0.038474414497614,-0.018353134393692,0.021068898960948]],[[-0.050246227532625,0.014119626954198,0.012485833838582],[0.045869439840317,-0.00080705841537565,0.03148677572608],[0.041470620781183,-0.037753004580736,-0.025382148101926]],[[0.012736554257572,0.0069009973667562,-0.052508998662233],[-0.061780598014593,-0.078419268131256,-0.074540361762047],[0.046999715268612,0.049047619104385,-0.18863289058208]],[[0.062801294028759,0.042114544659853,0.11490259319544],[0.051106963306665,-0.045867800712585,0.054597213864326],[0.094427354633808,0.11227706074715,-0.15033102035522]],[[0.053485237061977,-0.042595528066158,-0.075980134308338],[0.045840352773666,-0.014527367427945,0.0092836394906044],[0.037714365869761,-0.02764805033803,0.019811673089862]],[[-0.09649994969368,0.075335204601288,-0.10760325938463],[0.096434161067009,0.028610792011023,-0.033862385898829],[-0.016712732613087,-0.015551017597318,0.0060994657687843]],[[-0.056826304644346,-0.039435986429453,-0.024505948647857],[0.094863578677177,0.05719668418169,0.043910168111324],[-0.014945912174881,0.027621693909168,-0.11149306595325]],[[-0.027150539681315,0.046298686414957,-0.030332691967487],[0.016306530684233,-0.06213816255331,-0.017851755023003],[0.027438320219517,0.1036726757884,-0.036217771470547]],[[0.019994789734483,0.084922753274441,0.021625395864248],[-0.14814592897892,-0.016208902001381,0.033033654093742],[0.0022446434013546,-0.073645040392876,0.0014249522937462]]],[[[-0.028560906648636,-0.14010438323021,-0.00030570750823244],[-0.14343349635601,-0.093877509236336,-0.0090056778863072],[-0.060300465673208,-0.084687650203705,-0.11136457324028]],[[0.0051489025354385,0.088356673717499,0.030070381239057],[-0.046737685799599,0.016767544671893,0.023616855964065],[0.032789207994938,-0.017679115757346,0.11458203941584]],[[-0.024924319237471,-0.0046275602653623,-0.058550402522087],[-0.0037030056118965,-0.070160709321499,-0.051431752741337],[0.053434699773788,-0.092080928385258,-0.10681861639023]],[[0.062123946845531,-0.05716186016798,-0.078257814049721],[0.06345871835947,-0.021692285314202,-0.046889800578356],[-0.059409160166979,0.0975596383214,-0.14291670918465]],[[0.099339991807938,0.084831640124321,0.033807866275311],[0.035782624036074,-0.048636540770531,0.051756858825684],[-0.13872310519218,-0.021028222516179,-0.2329275906086]],[[-0.0043667359277606,0.011169351637363,0.013610579073429],[-0.026688694953918,0.062190268188715,0.031962033361197],[-0.045330669730902,-0.082446359097958,-0.091880850493908]],[[-0.078615956008434,0.023142356425524,-0.040161196142435],[-0.034889757633209,-0.090624339878559,-0.0081372493878007],[0.011365559883416,-0.041560396552086,-0.085368506610394]],[[0.03315781056881,-0.04935535043478,0.07942496240139],[-0.043185248970985,0.08011233061552,-0.058682076632977],[0.043965507298708,0.094652257859707,-0.14007626473904]],[[-0.066921919584274,-0.041149873286486,-0.046234004199505],[-0.10767237097025,0.013985469006002,0.017429988831282],[0.030431477352977,0.031087473034859,0.059386190026999]],[[-0.045145593583584,-0.052145395427942,0.076716020703316],[0.021482106298208,-0.037283897399902,0.011119984090328],[-0.028376370668411,0.042525220662355,-0.056736014783382]],[[0.11388695985079,0.018424324691296,-0.042778860777617],[-0.086435548961163,-0.084521025419235,0.040997855365276],[0.037904132157564,-0.050547122955322,-0.038103088736534]],[[0.1206591501832,0.029377914965153,-0.032731804996729],[-0.0015017106197774,-0.092772334814072,-0.032467912882566],[-0.121202647686,0.10127276182175,0.048664931207895]],[[-0.065252214670181,-0.085211597383022,0.047432314604521],[-0.021826311945915,0.038524102419615,0.012709605507553],[-0.075055383145809,-0.058798793703318,0.00051772186998278]],[[0.098937757313251,-0.0020799222402275,-0.026518672704697],[-0.017849564552307,0.022247891873121,-0.081190094351768],[0.090956680476665,0.044347777962685,0.040268253535032]],[[-0.021056341007352,0.046330362558365,-0.081125430762768],[-0.075856357812881,-0.021840892732143,-0.011773674748838],[0.033215794712305,-0.040220282971859,-0.0052820108830929]],[[-0.013885416090488,-0.0026143109425902,0.042384795844555],[-0.0065272059291601,-0.071841336786747,0.036897085607052],[-0.042736142873764,-0.0068193525075912,-0.037887550890446]],[[0.046758681535721,0.013135060667992,0.018430657684803],[0.047049347311258,-0.041131179779768,-0.065988294780254],[-0.06696479767561,0.0052835685200989,-0.046250812709332]],[[0.080168843269348,-0.088034182786942,-0.02120709605515],[-0.05488670244813,0.039264731109142,-0.041528925299644],[0.057497967034578,-0.052535895258188,0.096283353865147]],[[0.00024043566372711,-0.095603689551353,0.041064143180847],[0.019733063876629,0.040881995111704,-0.01680988445878],[-0.039838101714849,0.014447160065174,-0.0065904813818634]],[[0.042770512402058,-0.034203968942165,0.0047788042575121],[0.040041092783213,-0.023519041016698,-0.06696168333292],[-0.01136889308691,0.022161526605487,0.033423908054829]],[[-0.0044649192132056,0.038056336343288,-0.00078917155042291],[0.0012577807065099,0.012037727981806,-0.01133612729609],[-0.031732182949781,-0.022761410102248,-0.028987620025873]],[[0.094473280012608,-0.068753980100155,-0.048580318689346],[-0.060036346316338,0.058943655341864,-0.13661375641823],[-0.049786575138569,0.0095547568053007,-0.062646627426147]],[[-0.0013138636713848,0.03216877579689,0.024164937436581],[-0.055103652179241,-0.075644366443157,0.020469304174185],[-0.099281892180443,-0.029236279428005,0.092215418815613]],[[0.021314000710845,-0.058750241994858,0.25075531005859],[0.13428342342377,-0.036260902881622,0.16123677790165],[-0.069954693317413,0.048175193369389,0.018332311883569]],[[-0.13487032055855,0.14979958534241,0.163399502635],[0.061076074838638,-0.12226883322001,0.021407390013337],[0.15282902121544,-0.18168376386166,0.073320955038071]],[[0.0065821185708046,-0.012967765331268,-0.00060345104429871],[0.117307536304,0.0057192938402295,0.035040009766817],[0.0027902249712497,-0.0041207047179341,-0.0040369462221861]],[[-0.15440845489502,-0.02468653768301,-0.010632584802806],[-0.12298007309437,0.014605501666665,0.019428817555308],[-0.13598448038101,-0.087598219513893,-0.038658861070871]],[[-0.020507987588644,-0.078168824315071,0.00039280659984797],[-0.0089044813066721,-0.12160456925631,0.087140671908855],[-0.069666311144829,-0.052546191960573,-0.0066644703038037]],[[-0.040461730211973,0.057378780096769,-0.054830368608236],[-0.13276168704033,-0.033962476998568,0.030320340767503],[0.047556776553392,0.008294147439301,0.022650513797998]],[[-0.036766204982996,0.033300988376141,-0.043477818369865],[-0.02060598321259,-0.047351229935884,0.0078018535859883],[0.040085151791573,-0.058005042374134,-0.04365037381649]],[[0.025870325043797,0.0060304044745862,0.010110384784639],[0.037006568163633,0.10348650068045,-0.054785072803497],[-0.089600749313831,0.04015090316534,0.019514011219144]],[[0.081030040979385,-0.01128435973078,-0.044154830276966],[-0.00035380615736358,0.0011230782838538,-0.0091225923970342],[0.054423991590738,0.074783675372601,0.092009149491787]],[[-0.048546750098467,-0.052174311131239,-0.026754455640912],[-0.039999630302191,-0.063113406300545,0.015403904952109],[-0.15137150883675,-0.011543431319296,-0.017309814691544]],[[0.017952151596546,-0.04284156486392,0.016069702804089],[-0.035032644867897,0.11056831479073,-0.23102617263794],[-0.015072481706738,0.13819636404514,0.013045646250248]],[[-0.022711057215929,-0.085388407111168,0.046162512153387],[-0.012134106829762,-0.041448667645454,-0.064271003007889],[-0.046589091420174,0.0069773462601006,-0.070132955908775]],[[0.061321720480919,-0.0086754458025098,0.10298164188862],[0.0035223355516791,-0.060740824788809,0.091437101364136],[0.011755277402699,-0.023331258445978,-0.0015882863663137]],[[9.9185243016109e-05,-0.046067107468843,0.065750099718571],[-0.06754694133997,0.074442707002163,0.0017994720255956],[-0.10136329382658,-0.013004232198,-0.042035911232233]],[[0.063659660518169,-0.051497261971235,0.029359392821789],[0.043624799698591,-0.11458610743284,0.11353830993176],[0.069712467491627,-0.10057051479816,0.019156066700816]],[[0.037959706038237,-0.18360698223114,0.059945080429316],[0.0732097402215,-0.035395067185163,-0.0773950740695],[0.022101940587163,-0.0081199305132031,0.27422386407852]],[[-0.098997227847576,-0.1165808364749,-0.10451731830835],[-0.039749324321747,-0.044149432331324,-0.034207981079817],[0.10146689414978,-0.011911375448108,-0.02094417065382]],[[0.026931630447507,0.017333664000034,-0.042411349713802],[-0.096908092498779,-0.089582331478596,0.046405669301748],[-0.10752179473639,-0.10015124827623,0.07268051803112]],[[-0.041063591837883,-0.19380223751068,0.093484580516815],[-0.018921013921499,0.029133461415768,-0.13987289369106],[-0.08377031981945,0.021753003820777,0.15400038659573]],[[0.069689460098743,0.0063227494247258,-0.066676884889603],[-0.060078479349613,0.099412374198437,-0.038600090891123],[-0.056757058948278,-0.033253829926252,0.021969575434923]],[[-0.076124973595142,0.057377312332392,-0.050810504704714],[-0.015116857364774,0.044991504400969,-0.032621331512928],[0.049184162169695,-0.020161146298051,0.032781228423119]],[[0.019746668636799,-0.045438770204782,0.04575376957655],[0.0091202994808555,-0.082538560032845,0.043803788721561],[-0.053958289325237,-0.040897160768509,0.078712306916714]],[[0.027610609307885,0.038350410759449,-0.038290001451969],[0.039751801639795,-0.033890150487423,0.0055749616585672],[-0.0012002201983705,-0.0054425434209406,0.042186882346869]],[[-0.051972381770611,-0.044592436403036,0.024203548207879],[-0.013907150365412,-0.050823554396629,0.054455630481243],[-0.14654314517975,0.025179130956531,-0.060757126659155]],[[0.012002855539322,-0.011508772149682,-0.078655377030373],[0.056215547025204,-0.060085777193308,-0.081076227128506],[0.058189775794744,0.058054655790329,-0.07243163138628]],[[0.051293902099133,0.044480558484793,-0.11336547136307],[-0.060063805431128,0.032301645725965,-0.1302879601717],[0.10901086777449,0.0052012945525348,0.095903731882572]],[[-0.15890729427338,0.031345445662737,0.043758179992437],[0.1157625541091,-0.10392337292433,0.077209159731865],[0.090088732540607,-0.084062486886978,-0.077060304582119]],[[-0.10831588506699,-0.052174896001816,-0.09199009090662],[0.06387285888195,-0.034430544823408,-0.0013473525177687],[0.010387942194939,-0.057717025279999,-0.058459531515837]],[[0.022556621581316,-0.081292316317558,-0.001689832075499],[-0.044955551624298,0.092922791838646,0.1507730782032],[0.034253511577845,-0.031923905014992,0.11210039258003]],[[-0.10282456129789,0.027157029137015,-0.14427657425404],[-0.065291330218315,-0.033702250570059,-0.12433943152428],[0.076617754995823,-0.12616477906704,0.016555942595005]],[[0.20639617741108,-0.031301081180573,-0.041965156793594],[0.019299499690533,-0.016031259670854,-0.024825086817145],[-0.08407223969698,-0.096948906779289,0.10482275485992]],[[-0.050561137497425,-0.043168395757675,0.015307472087443],[-0.021603990346193,0.035266853868961,0.0036143970210105],[-0.034090034663677,-0.061652440577745,0.068291202187538]],[[0.048666037619114,0.013640593737364,0.064847148954868],[-0.014236119575799,-0.050570655614138,0.050667516887188],[0.015413908287883,0.04845704883337,-0.0036272676661611]],[[-0.037109095603228,0.041375163942575,0.00088787829736248],[-0.0063013369217515,0.022074265405536,0.055470921099186],[0.004464153200388,0.012322708033025,-0.037116032093763]],[[-0.0039262813515961,-0.025339055806398,0.0017288215458393],[0.04963232204318,-0.069005012512207,-0.052648771554232],[-0.058679558336735,-0.056163001805544,-0.063172325491905]],[[-0.14765663444996,-0.05683571472764,-0.027736015617847],[-0.088897570967674,0.033310703933239,0.0071398010477424],[0.0046431426890194,0.035330306738615,0.088175192475319]],[[-0.024790808558464,0.076780639588833,-0.015503254719079],[-0.025656023994088,-0.0028046027291566,0.044516824185848],[-0.019535152241588,-0.020615046843886,-0.0044655469246209]],[[-0.030784489586949,0.033966220915318,-0.010772399604321],[0.0069057950749993,-0.10593272745609,0.11911376565695],[0.067291125655174,-0.12626470625401,0.025222821161151]],[[0.0215112734586,0.1261642575264,0.12643013894558],[0.069369591772556,-0.03795986995101,-0.086523361504078],[0.0075545692816377,-0.010214022360742,-0.10061574727297]],[[0.037602253258228,-0.038054201751947,-0.086355283856392],[0.054810114204884,-0.0014552340144292,0.0017474625492468],[-0.023568823933601,-0.0040453495457768,-0.13551059365273]],[[0.10678955167532,0.037839356809855,0.028855130076408],[-0.068877495825291,-0.044002894312143,0.097707338631153],[-0.021233243867755,0.0078598828986287,-0.060685217380524]]],[[[0.034503351897001,0.02609614469111,-0.093840315937996],[-0.020125718787313,0.018606618046761,-0.0011419743532315],[-0.080608390271664,0.01813081279397,0.032553251832724]],[[0.035650581121445,0.046338692307472,0.058776747435331],[0.0066034398041666,0.049023151397705,0.096969962120056],[-0.059013236314058,-0.016734967008233,-0.035529926419258]],[[-0.01391332782805,-0.070233821868896,-0.029931381344795],[0.006038520950824,0.048466052860022,-0.10698192566633],[0.011639538221061,-0.10657722502947,-0.010922865010798]],[[0.044108103960752,-0.023400777950883,-0.049067601561546],[0.021827047690749,0.038575861603022,-0.026951303705573],[0.066371232271194,-0.0052662799134851,-0.056048877537251]],[[-0.03546005487442,-0.049589354544878,-0.10480330884457],[0.020007638260722,0.016337348148227,0.0099506257101893],[0.0039387349970639,0.022309072315693,0.019658578559756]],[[0.082835763692856,-0.0076542790047824,0.0015572055708617],[-0.028849691152573,0.096474260091782,0.13024608790874],[-0.095499739050865,-0.14601102471352,0.019292175769806]],[[-0.0042583518661559,-0.0035052536986768,0.0069521339610219],[0.059098072350025,0.12532925605774,0.023948473855853],[-0.062091376632452,0.0089885517954826,0.072921842336655]],[[-0.016366137191653,-0.027694413438439,0.057280216366053],[-0.053875751793385,-0.061488829553127,0.049704395234585],[-0.015057053416967,0.029997518286109,0.046274181455374]],[[0.0041112038306892,0.035998146981001,-0.021166753023863],[-0.041967812925577,0.0047631822526455,0.029606828466058],[-0.030406627804041,0.006118263117969,0.0087056905031204]],[[0.024672284722328,-0.0045518735423684,-0.0037344372831285],[-0.015624365769327,0.040499795228243,-0.0042899628169835],[-0.026362841948867,0.00037736716330983,-0.0029185004532337]],[[0.0165651217103,-0.02220655977726,-0.066407576203346],[-0.064897090196609,-0.015495689585805,0.0073025720193982],[0.015593430027366,-0.065761707723141,0.0083888983353972]],[[-0.026010923087597,-0.0089874546974897,-0.048066534101963],[0.024620538577437,0.10887728631496,0.013155702501535],[-0.047993652522564,0.0047798557206988,-0.050036154687405]],[[-0.016304237768054,-0.039226099848747,-0.0086741810664535],[0.11147885024548,0.079708896577358,0.0015159088652581],[0.0030704333912581,0.045295249670744,5.2754963689949e-05]],[[0.042255010455847,-0.014694573357701,0.046688884496689],[0.0037842632737011,0.015677666291595,0.020586937665939],[-0.042539171874523,0.0028719559777528,-0.0081371814012527]],[[-0.057546675205231,0.031427513808012,0.021998632699251],[-0.019310412928462,-0.025463620200753,0.0061250817961991],[-0.054999958723783,-0.058764606714249,-0.019332883879542]],[[-0.022776335477829,-0.06828960031271,0.077838912606239],[-0.042401093989611,0.11913794279099,0.0038195517845452],[-0.066469930112362,0.050915900617838,0.019699193537235]],[[-0.014232388697565,0.038941234350204,-0.021654937416315],[-0.0017683915793896,-0.032682560384274,-0.023013515397906],[0.10856931656599,0.007494353223592,-0.0027170763351023]],[[-0.028493456542492,0.073770545423031,-0.013594556599855],[-0.022365819662809,-0.033078625798225,-0.057834204286337],[-0.0010639945976436,-0.034536104649305,-0.0055568525567651]],[[-0.057836625725031,-0.082035422325134,0.038644976913929],[-0.027176326140761,-0.012942095287144,-0.031217407435179],[0.068086743354797,-0.041707690805197,-0.042494382709265]],[[-0.004068159032613,0.0015389415202662,0.012357569299638],[-0.064587146043777,0.0018457914702594,0.069260634481907],[-0.02396727912128,0.04665344953537,-0.020390206947923]],[[0.019785342738032,0.01078441273421,-0.017604375258088],[-0.020216191187501,-0.11829101294279,0.076617956161499],[-0.075514405965805,-0.051877770572901,-0.026890123263001]],[[-0.0072358977049589,0.0088217025622725,0.061489250510931],[-0.027789793908596,0.15788426995277,0.043341919779778],[0.151960298419,-0.040595594793558,-0.019056394696236]],[[-0.0045156232081354,0.02100913412869,-0.074050709605217],[-0.0018570257816464,-0.090435959398746,-0.02603062428534],[-0.0061441529542208,-0.0090059898793697,0.046762477606535]],[[-0.068033702671528,0.082112573087215,0.12687414884567],[-0.073038972914219,-0.0032969857566059,0.13056002557278],[0.045210026204586,0.032119806855917,0.13246177136898]],[[-0.130521312356,-0.072703786194324,-0.024284625425935],[0.059845525771379,-0.051163904368877,-0.086586348712444],[0.015243898145854,-0.021617008373141,-0.0053334650583565]],[[-0.054247993975878,-0.055264517664909,-0.034356564283371],[-0.011267816647887,0.016247199848294,0.030127707868814],[0.028502229601145,0.11866845190525,-0.0015216937754303]],[[-0.044694911688566,0.062561467289925,0.12341240793467],[-0.056512851268053,0.11438988894224,0.045318838208914],[0.0042749824933708,-0.044155653566122,0.012023022398353]],[[-0.020187167450786,0.034933846443892,-0.041142556816339],[0.025005329400301,0.027093017473817,0.041098117828369],[0.015893777832389,-0.0064605898223817,-0.081111088395119]],[[-0.0021552043035626,0.023297483101487,-0.015774158760905],[0.0080697741359472,-0.032914910465479,-0.060433235019445],[-0.031298883259296,-0.063434168696404,0.048854827880859]],[[-0.021251127123833,0.088917329907417,0.060811046510935],[-0.037619158625603,-0.0048780366778374,0.037485174834728],[0.016891356557608,0.0037852313835174,-0.043372113257647]],[[0.017697812989354,-0.028717188164592,-0.045823398977518],[-0.083088658750057,-0.061294928193092,0.083743013441563],[-0.053266063332558,-0.036015637218952,0.011390086263418]],[[-0.047372438013554,-0.031066823750734,-0.0083179278299212],[-0.019642375409603,-0.024381276220083,-0.017288217321038],[0.073533996939659,-0.025659844279289,-0.0017395601607859]],[[0.0087708942592144,0.011249735951424,-0.00073827995220199],[0.0054391482844949,-0.076685644686222,-0.0081387655809522],[-0.010827026329935,-0.02161007001996,-0.0033663860522211]],[[0.036032542586327,-0.02056279964745,-0.054231241345406],[0.0051500801928341,-0.012304903008044,0.016680799424648],[0.070660434663296,0.01266273856163,0.037844721227884]],[[0.066526807844639,0.094007052481174,-0.0099270204082131],[0.0053717927075922,0.00039519355050288,-0.055879909545183],[-0.073188483715057,-0.034783575683832,0.068431101739407]],[[-0.058705925941467,0.060340650379658,0.026181930676103],[0.0038977761287242,-0.057708721607924,-0.0083337789401412],[0.021598713472486,0.063267469406128,0.033351577818394]],[[-0.015482960268855,-0.026775322854519,-0.024512538686395],[-0.0031631574966013,-0.039066579192877,0.0062866420485079],[-0.014310947619379,-0.048076648265123,-0.03209712356329]],[[-0.016533916816115,0.067837990820408,-0.060669559985399],[0.0083951950073242,0.01566562242806,-0.021676635369658],[-0.085320539772511,-0.033723291009665,0.020073711872101]],[[0.018202589824796,0.0085093285888433,-0.13300587236881],[0.042918622493744,0.0028526918031275,-0.054517574608326],[-0.012280930764973,0.011920022778213,-0.052700195461512]],[[0.015392262488604,-0.094494007527828,-0.09549905359745],[-0.013645831495523,-0.0087654832750559,-0.085093580186367],[0.069981463253498,-0.040855061262846,-0.050559315830469]],[[-0.011575754731894,-0.0097764944657683,0.018852930516005],[0.028985325247049,-0.041165828704834,-0.034489769488573],[-0.0045511247590184,-0.037002354860306,-0.038817774504423]],[[0.038172300904989,-0.040159743279219,-0.051467433571815],[-0.050473995506763,0.082096517086029,0.041456192731857],[-0.052504997700453,-0.065024584531784,-0.041225794702768]],[[0.0094805164262652,-0.0064577930606902,0.046892881393433],[-0.037062920629978,0.052645169198513,-0.034770078957081],[-0.00015638004697394,0.0247807148844,-0.019992737099528]],[[-0.0081537654623389,0.039168648421764,-0.05698849260807],[-0.026788886636496,0.018195983022451,0.019576547667384],[-0.043769165873528,0.048972904682159,-0.0069529665634036]],[[-0.024542890489101,-0.034440092742443,0.044545106589794],[0.10129434615374,-0.058563437312841,-0.085515931248665],[0.12925843894482,-0.034323409199715,-0.034222826361656]],[[-0.030453758314252,-0.033201143145561,0.0027356341015548],[-0.024601517245173,-0.05014580860734,-0.024877529591322],[-0.025017503648996,-0.083301283419132,0.036353424191475]],[[-0.023470513522625,0.086922168731689,0.064287170767784],[0.048829726874828,0.055650051683187,0.054090145975351],[-0.027100192382932,-0.066872343420982,0.012542481534183]],[[-0.077685512602329,0.019756173714995,-0.0072853513993323],[-0.0016813629772514,-0.038296010345221,0.12574279308319],[-0.014311517588794,-0.0072695324197412,0.10476066172123]],[[-0.035166781395674,0.015510159544647,0.026057215407491],[0.01036611944437,0.029644334688783,-0.042695716023445],[0.070747353136539,0.027430670335889,-0.076878637075424]],[[-0.071670860052109,-0.036244932562113,-0.048667013645172],[0.013221836648881,0.048399236053228,0.029796697199345],[0.069183595478535,-0.091805145144463,-0.05153001844883]],[[-0.035627067089081,0.013787370175123,0.035896416753531],[0.062666803598404,0.091874212026596,-0.053797051310539],[-0.16320623457432,-0.015012875199318,-0.1029449030757]],[[-0.045131850987673,-0.041030716150999,-0.092702247202396],[0.0070745125412941,0.059096548706293,0.10032091289759],[0.016135467216372,0.026652548462152,0.12631660699844]],[[0.073561042547226,-0.015851680189371,-0.0059194690547884],[-0.056053943932056,-0.093984864652157,0.042990658432245],[-0.059519708156586,0.0074500772170722,-0.026157639920712]],[[-0.052053704857826,0.025369375944138,0.053930141031742],[0.0086902249604464,0.0083931302651763,0.041561029851437],[-0.10969170182943,0.065563954412937,0.0035666848998517]],[[-0.010718648321927,-0.012441139668226,0.0029343352653086],[-0.048587176948786,0.031059777364135,0.0057901050895452],[0.004320677369833,0.011439308524132,-0.032052654772997]],[[0.012172772549093,0.019271859899163,0.030808771029115],[-0.015813160687685,0.02959343418479,0.026633577421308],[-0.0081228604540229,0.076675318181515,0.069793626666069]],[[0.060443866997957,-0.0065276678651571,-0.01380770187825],[-0.050699602812529,-0.046395283192396,0.051458578556776],[0.045554187148809,-0.056226972490549,0.081053882837296]],[[0.0025767923798412,0.024285856634378,0.015421474352479],[-0.057874798774719,-0.071809202432632,-0.0043813125230372],[-0.001439239596948,0.027985801920295,-0.11647982150316]],[[0.023102466017008,0.050902519375086,-0.015419276431203],[-0.069562524557114,-0.018809845671058,0.066624246537685],[0.1372352540493,0.023602491244674,0.017277095466852]],[[-0.016225226223469,0.014369403943419,0.016134230419993],[0.035941954702139,-0.044143967330456,-0.020831253379583],[0.012573157437146,0.031665295362473,-0.02109282836318]],[[-0.017898438498378,0.0074392906390131,-0.0052351038902998],[0.039163898676634,0.035373587161303,-0.036612093448639],[-0.087505109608173,-0.041206080466509,-0.011558316648006]],[[-0.051881961524487,0.0069887563586235,0.024481421336532],[-0.0080776270478964,-0.006000405177474,0.039827037602663],[0.043547067791224,0.096085205674171,0.025060748681426]],[[-0.085573017597198,0.052844379097223,-0.018873268738389],[-0.026947990059853,0.060735769569874,0.056180600076914],[-0.046752348542213,-0.0021131131798029,-0.02600103802979]],[[-0.072303093969822,-0.026848865672946,0.045326631516218],[0.048930432647467,0.02059967815876,0.030743803828955],[0.036264427006245,0.010701126419008,-0.035852946341038]]],[[[0.0025346849579364,0.12531195580959,-0.019867917522788],[0.033155094832182,-0.036203596740961,-0.020643889904022],[-0.013540036045015,-0.0062249517068267,-0.040923297405243]],[[-0.062907196581364,-0.047432251274586,-0.093202456831932],[-0.087317600846291,0.07900196313858,-0.028639860451221],[-0.082765378057957,-0.055623266845942,-0.067136541008949]],[[-0.026336500421166,0.034010130912066,0.036372385919094],[0.038866307586432,0.096755661070347,0.031248351559043],[-0.023678738623857,-0.012145853601396,0.10254043340683]],[[-0.038161303848028,0.047169227153063,-0.11447371542454],[0.01271032076329,-0.060007221996784,-0.075512707233429],[-0.13392226397991,0.0068589695729315,0.019621329382062]],[[-0.052615977823734,-0.032311424612999,0.026451861485839],[0.03536494076252,0.047109585255384,-0.018760548904538],[-0.10637363046408,0.0013704334851354,0.057508811354637]],[[-0.004393826238811,-0.037802845239639,0.034201212227345],[0.0099721746519208,0.093852907419205,0.00319664622657],[-0.023442078381777,0.038494631648064,-0.014402301982045]],[[0.016748242080212,0.1072501167655,-0.017858656123281],[0.033106796443462,-0.041917365044355,-0.055419091135263],[-0.078588150441647,0.059921573847532,0.054625455290079]],[[-0.051331993192434,-0.15128281712532,-0.19094151258469],[-0.085281059145927,-0.11648339033127,-0.10720187425613],[0.072618566453457,-0.098809376358986,-0.085627011954784]],[[0.042835012078285,0.036900822073221,0.069661401212215],[-0.015484078787267,0.17474713921547,-0.069536924362183],[-0.038113672286272,0.058893002569675,-0.011819051578641]],[[-0.021847495809197,-0.028158165514469,-0.012337985448539],[0.019652122631669,0.060857489705086,-0.019322680309415],[0.060551706701517,0.026730861514807,-0.089556716382504]],[[-0.0072698355652392,0.030635109171271,-0.043670024722815],[-0.021367164328694,-0.031371932476759,-0.0073942979797721],[-0.013704347424209,-0.03482186421752,-0.055310074239969]],[[0.035574518144131,0.036581370979548,-0.035331893712282],[-0.093442186713219,0.16068856418133,0.11419473588467],[0.0053815580904484,0.060361906886101,-0.020627135410905]],[[0.039844498038292,0.099765233695507,0.041654493659735],[-0.038236681371927,-0.0041060578078032,-0.12443880736828],[0.01234335731715,0.01568765938282,0.074429281055927]],[[0.084080599248409,0.075737275183201,-0.08823461830616],[0.041288215667009,-0.0082855140790343,-0.068040683865547],[0.048842266201973,0.039744671434164,-0.076395347714424]],[[-0.049326311796904,-0.031210940331221,0.05168142542243],[0.032803699374199,-0.20644611120224,-0.04757721349597],[0.10022830963135,-0.090121813118458,0.031062509864569]],[[0.0021713050082326,0.2620587348938,-0.064716480672359],[0.026760432869196,0.022355034947395,-0.057001691311598],[0.040094863623381,-0.00660181324929,0.0071320938877761]],[[0.044968105852604,0.044230621308088,0.011447387747467],[0.080560475587845,-0.021111538633704,0.067752152681351],[-0.0088797174394131,-0.036628913134336,-0.028368266299367]],[[-0.012388162314892,0.0074398363940418,-0.157320946455],[0.067814350128174,0.015360547229648,-0.090978793799877],[-0.089762911200523,-0.11836414039135,0.0058216447941959]],[[-0.047542601823807,-0.076095640659332,0.017424227669835],[0.085209690034389,-0.065556973218918,-0.11948449909687],[0.033202338963747,0.0014206068590283,-0.045486811548471]],[[0.003269778098911,0.10071557015181,0.042698629200459],[-0.041547689586878,0.027855912223458,0.0074736718088388],[-0.059309422969818,-0.066579416394234,0.0053733661770821]],[[0.034671936184168,-0.11566144227982,-0.064949728548527],[-0.056569512933493,-0.035034969449043,0.083506971597672],[-0.043541464954615,-0.059207819402218,-0.094295263290405]],[[-0.13588500022888,-0.0046123564243317,-0.15781638026237],[0.0012578956084326,-0.014549628831446,4.2896841478068e-05],[0.060916405171156,0.022036857903004,0.067785263061523]],[[0.041634112596512,-0.0036277659237385,-0.0064110602252185],[0.034799836575985,-0.0086404848843813,0.032648243010044],[0.031157532706857,-0.015121369622648,0.011073801666498]],[[0.031078577041626,0.031471315771341,-0.015159338712692],[0.12862507998943,0.02276810631156,0.037053529173136],[0.053043317049742,0.10920446366072,0.034815110266209]],[[0.038206297904253,0.0093706697225571,0.041740465909243],[-0.057889316231012,0.0043584052473307,0.051200740039349],[0.058083925396204,-0.010938731953502,-0.10158134996891]],[[0.070803567767143,0.042419791221619,0.090691931545734],[0.056317158043385,0.035596948117018,0.082697786390781],[0.076018661260605,0.0449886508286,0.065330080688]],[[0.1346523463726,0.043159279972315,0.081545576453209],[0.0039635449647903,0.11058175563812,-0.029275983572006],[-0.054402608424425,-0.029575772583485,-0.00063531077466905]],[[0.031529884785414,0.056056279689074,0.025000989437103],[0.0074859447777271,-0.011102157644928,0.020697135478258],[0.036859761923552,0.000870460877195,-0.018199188634753]],[[0.071941286325455,0.10584929585457,0.069238178431988],[-0.011392279528081,-0.012636749073863,0.015295944176614],[0.038618858903646,0.054519008845091,-0.0055311704054475]],[[-0.071295484900475,-0.054911229759455,0.11488487571478],[-0.056602545082569,-0.04856214299798,-0.058601405471563],[-0.087654024362564,-0.085029155015945,0.040299713611603]],[[-0.06292849779129,-0.014579212293029,0.10329486429691],[0.031770158559084,0.11356611549854,0.0048434790223837],[0.037879016250372,0.061056524515152,-0.0099064409732819]],[[-0.056947890669107,-0.067424461245537,-0.036460012197495],[-0.038278926163912,-0.12010678648949,-0.0012994965072721],[-0.0014197753043845,0.0075070606544614,0.022449791431427]],[[0.02441044151783,0.061997499316931,0.049843192100525],[0.011858010664582,-0.074719175696373,0.018228439614177],[0.090201191604137,0.044373366981745,0.036868877708912]],[[0.053686331957579,-0.017904657870531,-0.019833141937852],[0.022641405463219,0.039655614644289,-0.013552021235228],[-0.013025861233473,-0.084308244287968,0.028388312086463]],[[0.064801499247551,0.047955609858036,0.094611115753651],[0.07093407958746,-0.064171858131886,-0.014144999906421],[-0.067179545760155,-0.031887128949165,0.039375722408295]],[[0.084902718663216,-0.013286394998431,-0.024872405454516],[-0.088433027267456,-0.0019080007914454,0.034285083413124],[-0.087486878037453,0.048594806343317,0.045840911567211]],[[0.076243974268436,0.017706656828523,-0.028470972552896],[0.066405832767487,0.044210702180862,-0.069748885929585],[0.098908849060535,-0.070386365056038,0.023053210228682]],[[-0.072268821299076,0.014178603887558,0.028294455260038],[0.0067074527032673,0.007476108148694,-0.064179688692093],[-0.016590723767877,0.072889648377895,-0.0004759912553709]],[[-0.040440309792757,0.060452714562416,0.0092218928039074],[-0.06793600320816,0.012589615769684,0.0094329798594117],[-0.05169877782464,0.0045447517186403,-0.027886720374227]],[[-0.059836365282536,-0.067506283521652,0.00065117905614898],[0.12739537656307,0.1001693084836,-0.089676454663277],[0.075711876153946,0.056704327464104,0.092441320419312]],[[0.057237070053816,0.070254348218441,0.0068654818460345],[-0.013801914639771,0.10290270298719,0.005183532834053],[-0.04716832190752,-0.04094722121954,-0.015377167612314]],[[0.046887792646885,-0.024729646742344,0.088838696479797],[-0.013775940984488,0.058419920504093,-0.021670237183571],[0.025558318942785,0.080056175589561,-0.05177266895771]],[[0.041369944810867,0.0021388386376202,0.05473855510354],[-0.018868612125516,0.039168525487185,-0.0023581027053297],[-0.087633036077023,-0.055794455111027,-0.02252671122551]],[[0.022395398467779,0.11070311069489,0.058455862104893],[-0.042069640010595,-0.034660831093788,0.025886785238981],[0.077610649168491,0.042232152074575,0.01634500361979]],[[0.078812539577484,0.036463849246502,0.016647094860673],[0.001542703830637,-0.088048778474331,0.084096550941467],[0.036289434880018,-0.014627818949521,-0.029439000412822]],[[-0.019872372969985,0.0062579857185483,0.091790966689587],[0.020062448456883,-0.011958032846451,-0.12588348984718],[0.020352968946099,0.048357412219048,0.067815162241459]],[[0.022895954549313,0.030681567266583,-0.0079186139628291],[-0.056432325392962,-0.046635705977678,0.050579003989697],[-0.025472434237599,0.080196470022202,0.038309760391712]],[[0.057579431682825,0.060666501522064,-0.032123770564795],[-0.026663782075047,-0.050919327884912,0.1110365614295],[-0.011482779867947,-0.1548680216074,-0.13330768048763]],[[0.02581843547523,-0.02477154135704,0.046147707849741],[0.09490442276001,0.081535279750824,0.040906216949224],[0.011817364022136,0.0042138271965086,-0.038620308041573]],[[0.090651616454124,-0.15474881231785,-0.048091366887093],[0.040825061500072,0.040218945592642,0.10904075205326],[0.069452151656151,0.049969669431448,-0.021704247221351]],[[-0.083348877727985,-0.064910389482975,-0.040873195976019],[-0.12081134319305,-0.046651653945446,-0.058630097657442],[0.098216272890568,-0.0038310384843498,-0.021141847595572]],[[0.046134326606989,0.06159757822752,0.094484061002731],[0.034295659512281,-0.018391910940409,0.11929093301296],[0.068034432828426,0.0046687386929989,0.057918537408113]],[[-0.017952855676413,0.062070649117231,-0.12641090154648],[-0.076577335596085,-0.05875101685524,-0.059468995779753],[-0.13892735540867,-0.05351236090064,-0.0087591074407101]],[[0.075478211045265,0.040136881172657,-0.013700004667044],[-0.010905719362199,0.0049738166853786,-0.093056052923203],[-0.029107941314578,-0.045609477907419,-0.014762936159968]],[[0.02836687117815,-0.050277806818485,-0.038961734622717],[0.0256401989609,-0.0082164090126753,0.025857845321298],[0.016147160902619,-0.064899682998657,0.0084976432844996]],[[0.05890654399991,-0.030652433633804,0.033307630568743],[0.0096659203991294,-0.094527751207352,0.038259003311396],[-0.0047235609963536,0.007529707159847,0.010818808339536]],[[-0.12228194624186,0.036428090184927,-0.095175892114639],[-0.027837155386806,0.030369125306606,0.023137280717492],[0.018743736669421,0.049303233623505,-0.02431365288794]],[[0.010189581662416,-0.015557829290628,0.045835576951504],[-0.11088038980961,0.086346477270126,-0.024635899811983],[0.028925474733114,0.0044663497246802,0.015393558889627]],[[-0.0070658260956407,-0.02524515427649,0.09425737708807],[0.081449568271637,0.030076248571277,0.11196542531252],[0.028334051370621,0.041479576379061,0.078947961330414]],[[0.0017826423281804,-0.01690367795527,-0.072651363909245],[0.038075167685747,0.08746824413538,0.01437225099653],[0.0005336741451174,-0.00094543152954429,-0.023202773183584]],[[0.035677827894688,0.044206354767084,-0.03844216093421],[-0.027559421956539,-0.098706841468811,0.021758621558547],[0.011808943934739,-0.034009408205748,-0.072089917957783]],[[-0.066332772374153,-0.018913682550192,-0.036632027477026],[-0.15417738258839,-0.085514180362225,0.13595680892467],[-0.031628407537937,0.084666237235069,0.13217379152775]],[[-0.0066790459677577,0.00068165955599397,-0.014857864938676],[0.0059763258323073,-0.067525573074818,0.01713771186769],[0.082734137773514,0.02850634790957,0.12868073582649]],[[0.031011439859867,0.11890867352486,0.061183948069811],[0.055605933070183,0.13966038823128,0.052821107208729],[0.02516920492053,0.057100377976894,0.076242282986641]]],[[[-0.11142094433308,-0.14418108761311,0.018059490248561],[-0.040671411901712,-0.10709321498871,-0.0071833655238152],[-0.041723787784576,-0.06711270660162,0.041957594454288]],[[0.079548127949238,0.076002568006516,0.0053839264437556],[-0.0065017803572118,0.07722595334053,-0.049799013882875],[-0.037123672664165,-0.0080988714471459,0.028260165825486]],[[-0.0033815992064774,-0.028272941708565,-0.1578434407711],[0.064853057265282,-0.082438260316849,-0.16041176021099],[0.067436061799526,0.013053089380264,-0.010480873286724]],[[0.010708374902606,-0.0026154187507927,-0.092386178672314],[0.13340598344803,-0.031156746670604,-0.11756460368633],[0.08438528329134,-0.012886600568891,-0.18597221374512]],[[-0.13798207044601,-0.064960390329361,-0.013309028930962],[-0.049054205417633,-0.012302630580962,-0.040361572057009],[-0.026439426466823,0.078867867588997,0.045086972415447]],[[0.0054758698679507,-0.013239085674286,-0.011017403565347],[0.041082061827183,0.021589485928416,-0.039539083838463],[0.0099648693576455,-0.061421524733305,-0.0076023265719414]],[[0.11093382537365,-0.18165993690491,-0.018608575686812],[-0.12441597133875,-0.12265042215586,-0.057094261050224],[-0.10271157324314,-0.049107275903225,-0.010307633318007]],[[-0.10679140686989,0.0071614095941186,-0.0094113619998097],[-0.00079166173236445,0.069048658013344,-0.019186049699783],[-0.11668998748064,-0.062023967504501,0.083496958017349]],[[0.0080529358237982,-0.17976066470146,0.0075592291541398],[0.056228164583445,-0.0922681838274,0.050670780241489],[-0.089154727756977,-0.035385355353355,0.088184259831905]],[[-0.099988624453545,-0.073199570178986,-0.15657731890678],[-0.043920654803514,0.039242010563612,-0.029063422232866],[-0.030154874548316,0.02722555398941,-0.027258455753326]],[[-0.045212645083666,-0.085655070841312,0.065291777253151],[-0.037673462182283,-0.060351636260748,-0.014534561894834],[-0.040869019925594,0.053695276379585,0.0010000645415857]],[[-0.27679014205933,-0.22700780630112,0.0033863300923258],[-0.068697042763233,-0.14800177514553,-0.0060459510423243],[-0.10304965823889,-0.10853406041861,0.0090256845578551]],[[-0.0079289833083749,0.0059094438329339,-0.016809338703752],[-0.034987241029739,0.11268524080515,0.073333889245987],[-0.06991008669138,0.019670035690069,0.013370194472373]],[[-0.10236393660307,0.066520445048809,0.089351803064346],[-0.011170189827681,0.029955556616187,0.043319601565599],[-0.043712731450796,-0.011083239689469,-0.042304486036301]],[[0.022071124985814,0.035124808549881,-0.075613103806973],[0.024962391704321,-0.019698414951563,-0.030823210254312],[-0.027179110795259,-0.094004422426224,-0.096400693058968]],[[0.016030425205827,0.064491756260395,0.07695721834898],[0.11412560194731,-0.0078252563253045,-0.069758251309395],[0.0071457712911069,-0.042146079242229,-0.13348114490509]],[[0.070264264941216,0.0086679803207517,-0.10730254650116],[-0.0075401202775538,-0.085500694811344,0.0069922478869557],[0.079404525458813,0.060600414872169,0.016050599515438]],[[0.0019419777672738,-0.063229642808437,-0.033888444304466],[0.03859493508935,-0.063728883862495,-0.045770186930895],[0.085506908595562,0.011027254164219,-0.029312012717128]],[[-0.034516323357821,-0.042157780379057,-0.0080707622691989],[-0.086670689284801,-0.0091740600764751,0.013446846045554],[0.017603600397706,-0.017247082665563,-0.003894176799804]],[[0.075102023780346,0.050524193793535,-0.074937790632248],[-0.010521247051656,0.027179138734937,-0.047733534127474],[0.022100582718849,-0.0094410348683596,-0.0076430030167103]],[[-0.1388206332922,-0.054555777460337,0.12671776115894],[-0.087051369249821,-0.010013177059591,0.10297363251448],[-0.074202232062817,0.0053946492262185,0.0072168903425336]],[[-0.073138520121574,0.047408547252417,-0.037632752209902],[-0.012156967073679,0.020819775760174,0.026043903082609],[0.014720969833434,-0.13733923435211,0.051857847720385]],[[-0.070546329021454,0.032323036342859,0.05767560377717],[-0.098161913454533,0.025704441592097,0.015847813338041],[0.048529524356127,-0.036944836378098,0.1143451333046]],[[0.33127105236053,0.17854386568069,-0.025260642170906],[0.1505604237318,0.16264763474464,0.01016206946224],[0.20472592115402,0.039482709020376,-0.05465754121542]],[[-0.068018265068531,-0.0076312744058669,0.081190533936024],[-0.048998825252056,-0.035309087485075,-0.1142156869173],[-0.13124850392342,-0.099905453622341,0.01134133245796]],[[0.0086082126945257,-0.013184205628932,-0.026899786666036],[0.066111318767071,0.075838483870029,0.00044175086077303],[0.0043295039795339,0.039462126791477,-0.01221255864948]],[[-0.068259797990322,-0.18433122336864,-0.03851392865181],[-0.038030046969652,-0.10042807459831,-0.043896067887545],[0.0058823539875448,0.080653667449951,0.041949197649956]],[[0.031498625874519,-0.0077936756424606,0.023937599733472],[-0.0050924904644489,-0.085191480815411,0.050917141139507],[-0.049208637326956,-0.028269002214074,-0.04593413323164]],[[0.014487783424556,-0.10713607817888,-0.064542360603809],[0.031211832538247,-0.14566576480865,-0.020709557458758],[-0.053407415747643,-0.1121032834053,-0.0060266433283687]],[[-0.18462482094765,-0.10475819557905,-0.0080216750502586],[-0.11708003282547,0.029667383059859,-0.11686058342457],[0.0046866317279637,-0.013413581065834,-0.00019079835328739]],[[-0.027017015963793,0.10431163012981,-0.007259919308126],[-0.011733325198293,-0.1660284101963,-0.02297061868012],[-0.0017467237776145,0.16313368082047,-0.11215867102146]],[[-0.083351835608482,-0.14962376654148,0.023094281554222],[0.012643459253013,-0.17774932086468,0.10155966877937],[0.093154042959213,0.04983026906848,0.14653703570366]],[[0.070511147379875,-0.071503072977066,-0.0019301695283502],[0.0075222826562822,-0.01520377676934,-0.05211241915822],[0.030034044757485,-0.006051417440176,-0.024548599496484]],[[-0.093727111816406,-0.042692970484495,0.011120609939098],[0.016598228365183,0.073612667620182,0.093747355043888],[-0.077869929373264,-0.061159003525972,0.042470075190067]],[[-0.015304479748011,0.045589976012707,-0.058485221117735],[-0.13550263643265,-0.068952471017838,-0.0030686638783664],[0.079334445297718,0.0061841649003327,0.0079055232927203]],[[-0.019355518743396,-0.073307834565639,0.039457965642214],[0.052692074328661,0.001958561129868,0.0013509835116565],[0.017839496955276,-0.0057520023547113,-0.0062505854293704]],[[0.062161568552256,-0.045556049793959,0.010487001389265],[0.029451232403517,0.023908168077469,-0.0031038238666952],[0.082123458385468,-0.12737299501896,0.021641083061695]],[[0.020003262907267,0.049579884856939,0.032815281301737],[-0.17032705247402,-0.031849958002567,-0.071467667818069],[0.079298280179501,0.099531032145023,0.018564533442259]],[[0.093742877244949,0.16580240428448,-0.03513141721487],[0.063709691166878,-0.037634015083313,0.01262666657567],[-0.010195623151958,-0.09023879468441,-0.040862735360861]],[[0.017618276178837,0.086331225931644,0.037173893302679],[0.11827869713306,0.15371336042881,-0.016251157969236],[0.065257884562016,0.10788875818253,0.03304385766387]],[[0.12036255002022,0.0063148625195026,0.066293835639954],[-0.021515235304832,0.0083864154294133,-0.062821917235851],[0.095031596720219,-0.061129402369261,-0.14496673643589]],[[0.024038564413786,0.0339290574193,0.12239156663418],[0.012783158570528,-0.035613179206848,0.089434139430523],[-0.044550355523825,-0.065148465335369,0.0045914058573544]],[[0.0085992747917771,0.017833672463894,0.037976462393999],[-0.010221004486084,0.042130064219236,0.1293723732233],[0.036410558968782,0.0005638602306135,0.075864069163799]],[[-0.058481954038143,-0.010511476546526,0.020214892923832],[-0.022636514157057,0.081954836845398,0.0032285279594362],[-0.12361761927605,0.0029957946389914,0.0060721444897354]],[[-0.044042445719242,0.0080385925248265,-0.069919757544994],[0.045542374253273,-0.01405968144536,-0.15295319259167],[0.11570561677217,-0.0095693664625287,-0.079151198267937]],[[0.096348747611046,-0.037138599902391,-0.083600774407387],[-0.15722945332527,-0.06948184967041,-0.12502232193947],[-0.023809757083654,0.05739613249898,0.10287563502789]],[[0.0085164867341518,0.0022630959283561,-0.049037739634514],[-0.068772032856941,0.029059527441859,-0.060762114822865],[0.014263840392232,-0.015114905312657,0.020717354491353]],[[-0.12832637131214,-0.0099638924002647,0.061482410877943],[0.024838065728545,0.008262594230473,-0.0015345280990005],[-0.053905475884676,-0.030599750578403,0.0079550798982382]],[[0.058251708745956,0.035722933709621,-0.075203709304333],[0.069484524428844,-0.07924921810627,-0.017832607030869],[0.036963690072298,0.0076421238481998,0.037248119711876]],[[-0.12068846821785,-0.049663819372654,0.015088241547346],[0.11961685866117,0.051547210663557,-0.11461839824915],[-0.020236533135176,0.031401693820953,-0.053762655705214]],[[-0.010500766336918,0.034950815141201,0.08504705876112],[-0.055376514792442,0.036239944398403,-0.053744271397591],[0.060490492731333,0.0026285559870303,0.038766704499722]],[[-0.0054851546883583,0.032934028655291,-0.033956289291382],[0.053334888070822,0.02984151057899,-0.063993953168392],[0.002953638555482,-0.060824126005173,-0.084142975509167]],[[0.030905559659004,0.037445217370987,-0.037965565919876],[0.13778212666512,0.0059018251486123,-0.059148162603378],[0.01035660225898,-0.018094917759299,-0.099819786846638]],[[-0.049378123134375,0.14983509480953,0.12505765259266],[-0.038087032735348,0.047735765576363,0.093442797660828],[0.013028738088906,0.017624178901315,-0.025903657078743]],[[-0.031829547137022,0.06638166308403,-0.04921580478549],[-0.01042596809566,0.087023071944714,0.010428571142256],[-0.12374138832092,-0.040558166801929,-0.086762756109238]],[[-0.22268302738667,-0.091561883687973,-0.068393729627132],[-0.20893405377865,0.0091168312355876,0.010754914954305],[-0.014956056140363,0.038885690271854,0.033150400966406]],[[0.047563124448061,0.069896318018436,0.040777660906315],[0.033486422151327,-0.051734607666731,0.017837252467871],[-0.11755216121674,-0.15895494818687,0.035858981311321]],[[0.043566238135099,-0.022884270176291,-0.061768531799316],[0.11331374198198,0.028881527483463,0.0017511437181383],[0.037195589393377,-0.0079253483563662,0.091499954462051]],[[0.066620208323002,0.14751181006432,0.034017983824015],[-0.050586681813002,-0.072855800390244,-0.049687657505274],[0.0080241551622748,-0.00043008991633542,-0.078360207378864]],[[-0.12587337195873,-0.042971059679985,0.076456092298031],[-0.033089146018028,-0.01715718768537,0.10191180557013],[-0.017153799533844,0.013336320407689,0.054122496396303]],[[0.04578223451972,0.04379353672266,0.041845731437206],[-0.044754061847925,-0.09765562415123,0.07038040459156],[-0.034644976258278,0.013022101484239,0.018500246107578]],[[-0.01036658231169,-0.058249983936548,-0.013150890357792],[-0.067452982068062,-0.10207638144493,-0.001736324862577],[0.01178103685379,0.079255841672421,-0.009913026355207]],[[-0.036865651607513,0.056789923459291,0.033219050616026],[0.019551435485482,0.086072385311127,0.046737890690565],[0.006850641220808,0.034273933619261,0.10957243293524]],[[0.051351055502892,-0.048419758677483,-0.092647105455399],[-0.078546486794949,-0.00027270329883322,0.086668945848942],[-0.052049558609724,0.0053564868867397,0.0021165662910789]]],[[[0.11806371062994,0.080581925809383,-0.033448837697506],[0.024548718705773,0.070123337209225,-0.088127568364143],[-0.045562718063593,0.069977477192879,0.023169362917542]],[[-0.060885310173035,-0.13012507557869,0.020264415070415],[-0.032294306904078,-0.010970701463521,0.093312226235867],[-0.0068849064409733,-0.066192507743835,0.03350542485714]],[[0.079361453652382,0.023242307826877,-0.029604505747557],[-0.027735762298107,-0.020516259595752,-0.078024432063103],[-0.062914825975895,-0.05730352178216,0.024841535836458]],[[0.077488213777542,-0.12366306036711,-0.090124741196632],[-0.0092856092378497,-0.064567439258099,-0.10066020488739],[0.0036173947155476,0.0051000178791583,-0.032365392893553]],[[0.053989507257938,-0.056549694389105,0.064981892704964],[-0.045770633965731,-0.020455682650208,-0.076216034591198],[0.002715369220823,0.010069587267935,0.042988918721676]],[[0.053847625851631,-0.10312678664923,0.039343822747469],[-0.046482555568218,-0.21621768176556,0.047995928674936],[-0.091799408197403,-0.014690178446472,0.24330723285675]],[[-0.010515009053051,0.00010248893522657,0.010473062284291],[-0.10759882628918,0.034309938549995,0.079019978642464],[-0.0029123825952411,0.05358387157321,0.044589441269636]],[[0.0010257144458592,-0.10425044596195,-0.037014521658421],[0.040813121944666,-0.10627483576536,0.099063895642757],[0.026790741831064,-0.056717436760664,-0.015459769405425]],[[0.012038605287671,-0.031677313148975,0.05604587122798],[0.092119567096233,-0.054628629237413,0.10262523591518],[0.041033882647753,0.017205733805895,0.09703753888607]],[[0.040326647460461,0.041956197470427,0.014350080862641],[0.057347606867552,-0.085988290607929,-0.02444308064878],[-0.042700942605734,-0.019666869193316,-0.11357782036066]],[[0.016939718276262,-0.033088862895966,0.11717625707388],[-0.0068611749447882,-0.054699629545212,-0.030806249007583],[-0.052966050803661,0.023757012560964,-0.039897412061691]],[[0.021353330463171,0.088701829314232,0.026513395830989],[-0.035529110580683,0.01358665432781,-0.015952056273818],[-0.037192609161139,-0.040557879954576,0.040193803608418]],[[-0.025751572102308,-0.07827577739954,0.055547084659338],[-0.026380518451333,0.18575964868069,0.027652693912387],[-0.043631412088871,-0.17879840731621,-0.046623207628727]],[[-0.059169642627239,-0.042974669486284,-0.05524156242609],[0.036719966679811,0.010540154762566,0.077502377331257],[-0.0040127318352461,0.024165663868189,0.053761556744576]],[[-0.04114643484354,-0.066437482833862,0.022744413465261],[-0.10092925280333,0.022894090041518,0.019495045766234],[-0.070175372064114,-0.06054774299264,-0.018089158460498]],[[0.083462491631508,0.038962628692389,0.05547321587801],[0.016931226477027,-0.11949841678143,0.0039963345043361],[-0.0085562011227012,-0.014709736220539,-0.080472052097321]],[[0.044811069965363,-0.061076566576958,0.015704534947872],[-0.023747716099024,-0.082232221961021,-0.042526472359896],[0.013131005689502,-0.054072234779596,-0.10880003869534]],[[-0.0024337116628885,0.085509173572063,0.044298186898232],[-0.038661912083626,-0.1051444709301,0.069215781986713],[0.043775837868452,-0.017537269741297,0.031120916828513]],[[0.034233964979649,-0.086213015019894,0.025810858234763],[0.064771629869938,0.049888573586941,-0.10212328284979],[0.043434794992208,-0.05734796077013,-0.15466274321079]],[[-0.062566958367825,0.012385590933263,0.024496922269464],[-0.017449824139476,0.015088754706085,0.05224185436964],[-0.00077797583071515,0.037051673978567,-0.037014130502939]],[[0.0044259950518608,0.030775118619204,-0.13590757548809],[-0.056083973497152,-0.091617584228516,0.00026826024986804],[0.0073662488721311,-0.076097384095192,0.052186273038387]],[[-0.021842885762453,0.010412552393973,0.035536725074053],[0.074117138981819,-0.077788710594177,-0.042157184332609],[0.038303222507238,-0.021841617301106,0.0047061182558537]],[[-0.058248657733202,0.056093651801348,0.0023701530881226],[0.045712355524302,0.058842666447163,0.018996201455593],[0.078074134886265,0.088409125804901,-0.10276053845882]],[[0.0034149009734392,-0.0398871563375,0.02071437984705],[0.047432016581297,0.055985499173403,0.097050487995148],[0.087677910923958,0.0071376119740307,0.11367325484753]],[[-0.10411947965622,-0.042812272906303,0.045644495636225],[0.011395425535738,-0.023359324783087,0.019251557067037],[-0.017643900588155,0.082091353833675,0.051512777805328]],[[0.019217835739255,0.15616865456104,-0.048598371446133],[-0.025590432807803,-0.027458531782031,-0.029461111873388],[0.025766836479306,0.008996102027595,-0.021775478497148]],[[0.011222684755921,-0.079495489597321,-0.024443766102195],[0.11611417680979,0.022148365154862,-0.0022338756825775],[-0.042851455509663,-0.06122836843133,-0.032126195728779]],[[0.0039453827776015,0.017956761643291,-0.077085644006729],[-0.041679490357637,0.043730862438679,-0.092448748648167],[-0.031047130003572,0.027660569176078,-0.009367173537612]],[[0.076201148331165,0.056752674281597,0.088695093989372],[-0.028262021020055,0.065094120800495,-0.086880154907703],[-0.061699956655502,0.040004372596741,-0.079281806945801]],[[-0.0063053043559194,-0.041102446615696,0.011752067133784],[-0.047625239938498,0.024359464645386,0.041802152991295],[-0.042118683457375,-0.012858708389103,0.042256958782673]],[[0.066255517303944,0.13161982595921,-0.089396864175797],[-0.046729072928429,0.028883585706353,0.039011169224977],[0.10176938772202,0.049615319818258,-0.0336529687047]],[[0.030078288167715,0.033128835260868,0.041684273630381],[0.016760021448135,0.016442256048322,0.028725985437632],[0.0037849347572774,-0.098028771579266,-0.035950683057308]],[[0.0032630495261401,0.017963578924537,0.026127506047487],[-0.029866851866245,0.0031201739329845,0.039236340671778],[-0.0072526200674474,-0.02350727841258,-0.062295682728291]],[[-0.063137643039227,-0.016734903678298,0.0075644967146218],[-0.1006183475256,-0.0023765354417264,0.080149829387665],[0.074252188205719,0.0077047040686011,0.0052097137086093]],[[0.054461155086756,-0.039268136024475,0.0083054564893246],[0.071235865354538,-0.00048996490659192,0.11850284039974],[-0.019324544817209,0.038254912942648,0.018565589562058]],[[0.031568802893162,0.022902056574821,-0.017017191275954],[-0.04401445761323,-0.052734673023224,-0.14384470880032],[-0.039400946348906,-0.016366565600038,0.033796794712543]],[[-0.022454146295786,-0.1093086078763,0.012824134901166],[0.052290223538876,0.044116150587797,0.036667209118605],[-0.01136524323374,-0.0064326673746109,-0.06878387182951]],[[0.022799110040069,-0.057594299316406,-0.0087091317400336],[0.013283547945321,0.023188669234514,0.057854246348143],[-0.05712078884244,-0.057433944195509,0.067093059420586]],[[-0.1371313482523,-0.053629782050848,-0.027322240173817],[-0.0081234881654382,0.13589382171631,0.023042909801006],[-0.027269484475255,0.014038681983948,0.014394970610738]],[[-0.08881226927042,0.020751427859068,0.0016181145329028],[-0.048975769430399,-0.053382605314255,0.020352741703391],[0.01250019390136,0.082218423485756,0.064566969871521]],[[0.080182999372482,-0.01653016731143,0.084320649504662],[-0.037468198686838,-0.072286501526833,-0.034094419330359],[0.066164873540401,-0.019743029028177,-0.0042795995250344]],[[0.055628381669521,-0.099451117217541,0.071243323385715],[0.040748842060566,-0.013999835588038,-0.017382407560945],[-0.095567129552364,-0.084387570619583,0.034751381725073]],[[0.053008355200291,-0.063817709684372,0.050410900264978],[0.11030163615942,0.009280638769269,0.1095060184598],[-0.13375528156757,0.019245157018304,0.015157277695835]],[[0.018952304497361,-0.056948386132717,-0.02522667311132],[-0.040256079286337,-0.005065222736448,0.078510493040085],[0.0052920081652701,-0.036734469234943,-0.029015693813562]],[[-0.028116116300225,0.027471650391817,0.079627349972725],[-0.0060487212613225,0.012675829231739,0.06435364484787],[-0.068551979959011,-0.082445308566093,-0.039930392056704]],[[-0.016218468546867,0.023317592218518,-0.0095092756673694],[0.00076175114372745,0.054705951362848,-0.044561687856913],[-0.018653383478522,-0.0067803165875375,-0.12040432542562]],[[-0.034667879343033,0.049643106758595,0.010788957588375],[-0.063233755528927,-0.06739292293787,-0.0005928764003329],[-0.013277461752295,0.00045192998368293,0.12569431960583]],[[0.016814572736621,-0.028744732961059,0.011522022075951],[-0.00059384707128629,0.17078657448292,-0.014767872169614],[-0.079741425812244,-0.04330213367939,-0.047343719750643]],[[0.0092554213479161,0.023672480136156,-0.036441031843424],[0.010046360082924,0.081448137760162,-0.061443276703358],[0.055472087115049,0.0024772833567113,0.013182809576392]],[[-0.0028386106714606,0.021747935563326,-0.099511303007603],[0.059986189007759,-0.011881465092301,0.067929796874523],[-0.03497651591897,-0.054115124046803,0.03484420478344]],[[0.0031650869641453,0.038815569132566,0.044935129582882],[0.020890705287457,0.044198390096426,-0.039253011345863],[-0.039196465164423,-0.08843707293272,-0.039502020925283]],[[-0.022874679416418,0.074999757111073,0.0096156466752291],[0.078944124281406,0.053610172122717,0.02815518528223],[-0.025454860180616,0.0052731079049408,-0.13155917823315]],[[0.051583912223577,-0.025527277961373,-0.045418947935104],[-0.064278639853001,0.037592317909002,-0.0097018228843808],[0.049405992031097,0.010615498758852,-0.069618329405785]],[[-0.029994428157806,-0.08679836243391,0.024536179378629],[0.011228395625949,0.078005336225033,0.025463836267591],[0.0047439015470445,-0.021274672821164,-0.0039402823895216]],[[0.029761856421828,-0.029979264363647,-0.019342727959156],[-0.081237971782684,0.068702772259712,0.0072951586917043],[-0.02470107935369,-0.094140008091927,0.032432518899441]],[[-0.018620692193508,0.076250039041042,-0.030462274327874],[-0.047662138938904,0.016815356910229,-0.008774908259511],[0.024840900674462,-0.057852167636156,-0.037557613104582]],[[-0.080652050673962,0.01458780746907,0.06498421728611],[-0.043537218123674,0.050830483436584,-0.0013908637920395],[0.017555225640535,-0.032485764473677,-0.028795255348086]],[[-0.021416861563921,0.064211197197437,0.029291287064552],[-0.19017285108566,-0.072984896600246,-0.027476927265525],[-0.020529713481665,-0.089166320860386,0.032768119126558]],[[0.059648364782333,0.081345871090889,0.078511066734791],[0.082794025540352,-0.0175451785326,0.070538945496082],[0.031799230724573,0.039485152810812,0.044493194669485]],[[0.080932684242725,-0.051518827676773,-0.067206650972366],[0.035915918648243,-0.03842281922698,0.011068353429437],[0.020717319101095,-0.010296639986336,0.013897788710892]],[[0.016737315803766,-0.054095767438412,-0.069834537804127],[-0.0048349699936807,0.0042207734659314,0.018020540475845],[0.035685297101736,-0.025202080607414,-0.020238548517227]],[[0.028654593974352,0.010862135328352,-0.023179039359093],[0.0028375321999192,-0.022286599501967,-0.017723064869642],[0.05029384046793,0.067000508308411,-0.12430116534233]],[[0.091022439301014,-0.11683274060488,0.044694196432829],[-0.027889050543308,-0.097052350640297,-0.036772798746824],[0.045748550444841,-0.011148513294756,0.008091595955193]],[[-0.032572902739048,-0.030701799318194,0.036531511694193],[-0.065591588616371,0.022213023155928,0.044606726616621],[0.0030450003687292,-0.02209715731442,0.015721527859569]]],[[[0.060590669512749,0.00098312192130834,-0.045077409595251],[-0.061202596873045,-0.010621284134686,0.049939185380936],[0.00010899748303927,-0.0033308358397335,0.028876071795821]],[[-0.031428910791874,-0.20484432578087,0.0049225883558393],[0.01338070910424,0.055301692336798,0.0049223452806473],[-0.044482491910458,0.027596745640039,0.039424367249012]],[[-0.086209304630756,-0.018731886520982,-0.13802798092365],[-0.087419576942921,0.00066786067327484,0.011300674639642],[0.032878033816814,0.054091043770313,0.026142001152039]],[[-0.024128315970302,-0.037724457681179,-0.064072787761688],[-0.078391067683697,0.043860521167517,-0.0016164534026757],[-0.0086687030270696,0.021323701366782,-0.12922316789627]],[[-0.0012301927199587,-0.023766422644258,-0.042005933821201],[-0.23760540783405,0.081284500658512,-0.071123547852039],[0.042607896029949,-0.012641187757254,-0.044491712003946]],[[-0.065352387726307,-0.0015286493580788,-0.00042012694757432],[0.033520206809044,-0.042918007820845,0.0056173764169216],[0.0082451840862632,-0.093375958502293,-0.031887829303741]],[[-0.12369966506958,-0.019923962652683,-0.012320285663009],[-0.031232725828886,0.085096918046474,0.028506297618151],[-0.016765184700489,-0.05048780143261,-0.015246378257871]],[[-0.028644315898418,0.046849053353071,0.047361552715302],[0.060103509575129,-0.0058162147179246,0.054371144622564],[-0.082132689654827,0.043218854814768,0.022438868880272]],[[0.18730345368385,0.0076331063173711,0.11208385974169],[-0.09441514313221,0.032753981649876,-0.072405032813549],[0.066820934414864,0.044318795204163,0.0063664275221527]],[[-0.059797845780849,0.010218437761068,0.019560938701034],[-0.016761355102062,0.045809280127287,-0.089092195034027],[0.003133617574349,-0.057108897715807,-0.051204800605774]],[[0.070943705737591,-0.062170203775167,0.069596581161022],[-0.043045584112406,-0.046156603842974,-0.058065868914127],[0.033114291727543,0.013617912307382,0.055883396416903]],[[-0.079361543059349,-0.025619314983487,-0.057358719408512],[0.043985929340124,0.04209091886878,-0.074882216751575],[0.065044544637203,-0.031192185357213,-0.049755193293095]],[[-0.020966337993741,-0.044835537672043,0.08185737580061],[0.0081270653754473,-0.031492304056883,-0.046126469969749],[0.017410106956959,0.053012892603874,0.05180498957634]],[[0.015774961560965,0.0061977198347449,0.044758561998606],[0.054222770035267,-0.03326316177845,0.0092509686946869],[0.066423185169697,0.0042806640267372,-0.010502573102713]],[[-0.00042838149238378,-0.049651063978672,0.008074258454144],[0.0075058611109853,0.035713754594326,0.022162016481161],[0.064625643193722,-0.037504199892282,0.028224371373653]],[[-0.081037551164627,-0.0017900285311043,0.055406969040632],[-0.0058577214367688,-0.10510723292828,-0.043574906885624],[0.010955187492073,0.0043520033359528,0.023594841361046]],[[0.038720015436411,-0.061951015144587,0.015379806980491],[0.073251597583294,-0.045873649418354,-0.095130927860737],[-0.0098684942349792,-0.024404607713223,-0.034128669649363]],[[-0.028328537940979,-0.043527185916901,-0.001645221025683],[-0.046257451176643,0.096950680017471,0.018861820921302],[-0.025192052125931,0.023511039093137,0.060659550130367]],[[0.07947900891304,0.010126509703696,0.029649030417204],[-0.17635330557823,0.085426315665245,0.046160724014044],[-0.036560542881489,-0.054163612425327,0.03321523591876]],[[-0.045806236565113,0.035752203315496,0.0019016194855794],[-0.0300447139889,0.038688078522682,0.027785195037723],[-0.011537643149495,-0.0019252492347732,0.02098236232996]],[[-0.10802654922009,-0.061173480004072,0.050634134560823],[0.069939114153385,-0.029687352478504,0.10896938294172],[-0.0097995782271028,-0.030231716111302,-0.10668303072453]],[[-0.017878977581859,-0.058423105627298,0.02809451892972],[0.076548255980015,-0.027417778968811,-0.091624103486538],[0.0053911749273539,0.00085777579806745,-0.018483992666006]],[[-0.0084258979186416,-0.0031843427568674,0.1218870729208],[0.10284101963043,-0.061111584305763,-0.061525013297796],[-0.053806040436029,0.13905903697014,0.019550608471036]],[[-0.03243912756443,0.070630744099617,0.033892121165991],[0.11488776654005,0.038281239569187,0.080271348357201],[0.030745876953006,0.0073317582719028,-0.05876549705863]],[[0.057047765702009,0.056527782231569,0.073673613369465],[0.060586225241423,0.054423961788416,-0.036770757287741],[-0.069187954068184,0.045387446880341,-0.064975671470165]],[[-0.026251094415784,0.070940896868706,0.06496600061655],[0.0016183180268854,-0.022240821272135,-0.019043540582061],[-0.0093661127611995,-0.047745227813721,-0.10555136203766]],[[-0.0028262191917747,-0.054548975080252,0.068998627364635],[0.12684793770313,-0.15936072170734,0.0050869672559202],[0.035493634641171,0.051460415124893,0.073552094399929]],[[-0.046883020550013,0.028085954487324,0.038266655057669],[-0.020929368212819,0.066510029137135,0.067252352833748],[-0.026718454435468,0.0020282822661102,0.023786598816514]],[[0.062979131937027,-0.097292706370354,0.051337447017431],[-0.064352199435234,-0.07770936191082,0.12372884899378],[-0.062437441200018,0.019259724766016,0.066584073007107]],[[0.054451286792755,0.010124241933227,0.074713006615639],[-0.010364264249802,0.021537691354752,0.02550533413887],[0.0027992073446512,0.029374156147242,-0.0040978556498885]],[[0.030183847993612,0.02977342158556,0.074109055101871],[-0.02730593085289,-0.03626935556531,-0.0097066275775433],[0.025777522474527,0.011916721239686,-0.013345146551728]],[[0.062234297394753,0.020280174911022,-0.057991411536932],[-0.027270110324025,0.047945994883776,-0.044451702386141],[0.099249072372913,0.11996192485094,-0.034445334225893]],[[-0.025229841470718,-0.044730916619301,0.014972020871937],[-0.011043579317629,-0.0100206900388,-0.071097068488598],[0.011221869848669,-0.059248611330986,-0.00068137526977807]],[[0.027472387999296,-0.024492168799043,0.055727437138557],[-0.057672172784805,-0.034178499132395,-0.20765291154385],[0.049481768161058,0.097257532179356,-0.12463827431202]],[[-0.05141057819128,0.012364380992949,0.020008157938719],[-0.12008658051491,0.014897051267326,0.036055065691471],[-0.008580356836319,0.038532935082912,-0.037580102682114]],[[-0.065076917409897,0.027171162888408,0.10437563061714],[0.045215457677841,-0.0053618871606886,0.061792839318514],[0.056324478238821,-0.029329122975469,0.035942491143942]],[[0.094234719872475,-0.024354781955481,-0.017578884959221],[0.073311887681484,-0.026521461084485,-0.023163728415966],[0.0019350188085809,-0.010295623913407,-0.052846901118755]],[[0.087073840200901,-0.068030439317226,-0.056341532617807],[-0.098160125315189,-0.005026925355196,-0.028053564950824],[0.17482358217239,-0.081629268825054,-0.11781349033117]],[[-0.065418809652328,0.017267728224397,-0.019960943609476],[-0.053591221570969,-0.0036070109345019,0.068307615816593],[0.020735077559948,0.053769413381815,-0.013982851989567]],[[-0.039045233279467,-0.053992342203856,-0.045704141259193],[-0.0062090214341879,-0.1001670062542,0.13198193907738],[0.04069959372282,0.097757831215858,0.014658659696579]],[[0.085809528827667,-0.05338117107749,0.092677637934685],[-0.10989884287119,-0.063142456114292,0.11776299029589],[-0.06188602745533,-0.030443597584963,-0.032620448619127]],[[-0.022172521799803,-0.069644533097744,0.026863966137171],[0.012407710775733,0.051402568817139,-0.041666157543659],[-0.092946745455265,-0.092617154121399,0.034489188343287]],[[0.03598290681839,-0.10399757325649,-0.023688912391663],[0.040093336254358,0.050762929022312,-0.032631564885378],[-0.014231168664992,-0.068399384617805,0.04035996645689]],[[0.010753132402897,0.027936154976487,0.083155043423176],[0.075435146689415,0.039556697010994,0.050798855721951],[-0.027087822556496,-0.027223970741034,0.038191735744476]],[[-0.044718503952026,0.10717514902353,-0.083432734012604],[-0.028504326939583,-0.040456417948008,-0.041789624840021],[0.0012086544884369,0.048954673111439,-0.045378781855106]],[[0.01408442016691,-0.012372370809317,0.068100072443485],[-0.028086414560676,0.0080391317605972,-0.077104583382607],[0.017453284934163,0.031082332134247,-0.0031891083344817]],[[0.043423045426607,0.0064689018763602,-0.025154193863273],[-0.036350265145302,0.01027708593756,0.15474860370159],[-0.030376898124814,-0.023175710812211,-0.081472337245941]],[[0.07902979105711,0.036726079881191,-0.067322641611099],[-0.060299847275019,-0.018986633047462,-0.010328945703804],[0.031977858394384,0.0470812022686,-0.0023278195876628]],[[0.013385464437306,-0.034146193414927,0.033651128411293],[-0.028457244858146,-0.0045919283293188,-0.05846781283617],[-0.037025142461061,-0.12051787227392,0.039343670010567]],[[-0.025831565260887,0.017783019691706,-0.084256216883659],[0.071934394538403,-0.021670872345567,0.03431835770607],[-0.019629804417491,0.023794507607818,0.031749781221151]],[[0.015167055651546,0.0052473368123174,0.038071524351835],[0.0044283606112003,-0.071775384247303,-0.036811660975218],[-0.012253215536475,0.012466819025576,0.030307278037071]],[[0.086650311946869,-0.052014328539371,-0.011200030334294],[-0.02125827036798,0.090948835015297,0.030100779607892],[-0.093073949217796,-0.0081222569569945,-0.0026347441598773]],[[-0.054367024451494,0.0054212082177401,-0.015073345974088],[0.11840669810772,0.005595603492111,0.11580988019705],[-0.063896164298058,0.046912405639887,-0.059569623321295]],[[-0.013396572321653,-0.057651240378618,0.017578318715096],[-0.02259849011898,-0.058973990380764,-0.015295288525522],[-0.062825299799442,0.053824506700039,0.027340542525053]],[[0.017967991530895,-0.05459701269865,-0.03051171451807],[-0.046755257993937,-0.047756586223841,0.073600426316261],[-0.064443126320839,0.014788135886192,-0.03300579637289]],[[0.070472203195095,0.034388966858387,0.086595699191093],[0.029675509780645,-0.038670670241117,-0.041102953255177],[-0.056470673531294,-0.0088912658393383,-0.0038894435856491]],[[-0.02202670276165,0.047666076570749,-0.0026977381203324],[-0.040063608437777,-0.051569871604443,0.057318046689034],[-0.030058717355132,-0.05366663262248,-0.09556171298027]],[[-0.038455616682768,0.023453714326024,-0.058856707066298],[-0.047407008707523,-0.087769091129303,-0.039557535201311],[-0.052111528813839,-0.012867259792984,0.037275064736605]],[[-0.059753198176622,-0.065935276448727,0.046041529625654],[-0.029248800128698,-0.038804929703474,-0.05076152831316],[0.13220973312855,0.025984037667513,0.087642125785351]],[[0.029842751100659,0.026051472872496,0.010236875154078],[-0.0019691691268235,-0.027903337031603,-0.023477822542191],[-0.036122292280197,0.048428919166327,-0.026500213891268]],[[-0.052409041672945,-0.0050364932976663,0.01098767388612],[0.06339929997921,-0.057227399200201,0.014704282395542],[-0.035707999020815,-0.024396536871791,-0.10689002275467]],[[-0.064012199640274,-0.026487089693546,-0.11515535414219],[-0.023123243823647,0.055125389248133,0.031738948076963],[0.0077469781972468,-0.022354584187269,0.034478697925806]],[[-0.042258761823177,-0.060805108398199,-0.03622592240572],[0.0080249169841409,0.021474778652191,0.043736360967159],[0.0089651243761182,-0.030599359422922,0.00943632889539]],[[0.032661896198988,-0.08653050661087,-0.14594396948814],[-0.057780146598816,-0.058168984949589,-0.028820175677538],[-0.030069299042225,0.0091875633224845,-0.0053285988979042]]],[[[-0.093018978834152,0.031358230859041,-0.028745694085956],[-0.0049246908165514,-0.012347866781056,0.093054838478565],[-0.053736574947834,0.019321670755744,0.10510185360909]],[[-0.080713927745819,0.048438500612974,0.04325258359313],[-0.10816653072834,-0.055183816701174,-0.13277678191662],[-0.046883687376976,-0.011909204535186,0.013309800066054]],[[-0.049602635204792,-0.037220545113087,0.03583675250411],[-0.10545935481787,0.04735478758812,0.028705704957247],[-0.032613195478916,-0.058727439492941,-0.026870956644416]],[[-0.084555387496948,0.086181648075581,0.06730343401432],[-0.091521218419075,-0.040322076529264,-0.1018847450614],[-0.0086749559268355,0.0067499787546694,-0.062778875231743]],[[0.016041591763496,-0.079356230795383,0.035118665546179],[-0.084534019231796,-0.11158242821693,-0.0025587561540306],[0.012148432433605,-0.013203905895352,-0.025605104863644]],[[-0.047491405159235,-0.015496494248509,-0.070116765797138],[0.019310902804136,0.0058690803125501,0.041115809231997],[-0.002843574853614,-0.03534072265029,-0.014647735282779]],[[-0.032006327062845,0.0010376919526607,-0.020595295354724],[-0.063492745161057,0.043371599167585,-0.059239007532597],[-0.11803887039423,0.024778380990028,0.047028463333845]],[[0.050519086420536,0.030810371041298,-0.0063208295032382],[-0.013310367241502,0.024183193221688,0.0022446429356933],[-0.091553740203381,-0.022460659965873,-0.01164922863245]],[[-0.044093679636717,-0.0015207031974569,0.0375104136765],[0.026410534977913,-0.028514564037323,0.077128864824772],[-0.074084118008614,-0.12204793095589,0.048797998577356]],[[-0.088916681706905,0.010949481278658,-0.016688546165824],[-0.038864973932505,-0.020920153707266,-0.031653221696615],[-0.014623179100454,-0.0094890743494034,-0.029975112527609]],[[0.086301699280739,-0.0039122784510255,0.072441123425961],[-0.023589082062244,-0.0108962059021,-0.02905466593802],[-0.050128158181906,0.02040815167129,-0.021835325285792]],[[0.038338180631399,-0.018285878002644,0.050552468746901],[-0.032758500427008,0.037534844130278,0.016153194010258],[-0.0024437478277832,-0.006170570384711,-0.023103736341]],[[-0.019306486472487,-0.0079222824424505,0.0047733951359987],[0.022023532539606,-0.0086382012814283,-0.0097506251186132],[-0.052444819360971,-0.039016377180815,-0.017656629905105]],[[0.051385164260864,0.051299583166838,0.03872774541378],[-0.10025815665722,-0.10575985908508,-0.0097723407670856],[-0.0098723070695996,-0.046841520816088,-0.020030749961734]],[[-0.023566294461489,0.054788406938314,0.026717390865088],[0.013788992539048,-0.012694824486971,0.013133798725903],[-0.02361598238349,0.05786420404911,0.0317487642169]],[[0.030353400856256,-0.084681548178196,-0.038025934249163],[0.026446055620909,-0.08720051497221,-0.0092392116785049],[0.030464351177216,0.012419578619301,-0.076184257864952]],[[0.063469365239143,0.048882741481066,0.040629845112562],[-0.042390935122967,0.044822867959738,-0.0024517718702555],[-0.035039842128754,-0.067921973764896,-0.064086019992828]],[[-0.12896530330181,0.0043421979062259,-0.0031380387954414],[0.087501153349876,-0.095042042434216,-0.014445322565734],[0.090834528207779,0.024983348324895,0.05181060731411]],[[-0.016596827656031,0.039579909294844,0.0080295987427235],[0.008926416747272,0.0018922758754343,0.019278969615698],[0.022942282259464,-0.047645825892687,-0.037507679313421]],[[0.052354145795107,-0.021376311779022,0.023880001157522],[0.036028813570738,-0.020769873633981,0.042444456368685],[-0.055578753352165,-0.050678387284279,0.024662865325809]],[[0.016210250556469,-0.087327197194099,0.018216110765934],[0.026080956682563,0.033513106405735,0.0021969482768327],[-0.086219668388367,-0.06138413771987,-0.062407363206148]],[[-0.021108517423272,-0.054475411772728,0.0016423946944997],[-0.014229498803616,-0.012326090596616,0.0036939841229469],[-0.063241846859455,0.061921864748001,0.083738565444946]],[[-0.062704265117645,-0.0083251306787133,0.023797845467925],[-0.029124014079571,-0.011048422195017,-0.012054889462888],[0.055344957858324,-0.035716697573662,-0.068562529981136]],[[-0.037155207246542,0.048261165618896,0.030840555205941],[0.11122549325228,0.10802845656872,-0.03474410623312],[0.029424339532852,0.03497214615345,-0.0056688049808145]],[[0.03113049454987,-0.069487147033215,0.021428955718875],[0.013822953216732,0.025548044592142,-0.091215297579765],[0.029322225600481,-0.0042314874008298,0.0259167868644]],[[-0.015437375754118,0.017320243641734,0.10103270411491],[-0.004241640213877,-0.031470764428377,0.10201182961464],[-0.00065817509312183,-0.057857617735863,0.015326241031289]],[[-0.021399227902293,-0.033447448164225,0.050426114350557],[0.047885250300169,0.041187763214111,-0.072995781898499],[0.0090211601927876,0.14125847816467,0.047991327941418]],[[-0.1339713037014,0.063278026878834,0.019281346350908],[-0.015954058617353,0.0019669742323458,0.041512701660395],[-0.028076076880097,0.060165345668793,0.015265882015228]],[[-0.008324371650815,-0.075163826346397,-0.018043391406536],[-0.053235311061144,0.067784950137138,0.036340974271297],[0.063713140785694,-0.017662011086941,-0.019540561363101]],[[-0.072934851050377,-0.055053636431694,-0.055793289095163],[-0.041922800242901,-0.045080952346325,-0.10490918159485],[0.014292315579951,-0.12789912521839,0.01526755373925]],[[0.01894287019968,-0.028397498652339,-0.080433577299118],[0.086304925382137,0.10462213307619,-0.089735046029091],[0.01214237511158,0.056951377540827,-0.000924518390093]],[[-0.038852822035551,0.015694692730904,0.034549780189991],[-0.013721773400903,0.019714511930943,0.029559699818492],[0.0034513401333243,-0.039651047438383,-0.062917545437813]],[[-0.052263539284468,-0.010229763574898,-0.0014836406335235],[-0.054216347634792,0.0014524119906127,0.052872519940138],[0.044237475842237,0.026756940409541,0.019336070865393]],[[0.020879881456494,-0.031396131962538,0.0079802209511399],[-0.010256332345307,0.013044266030192,0.067798063158989],[-0.0619434453547,-0.060479432344437,0.0033099062275141]],[[-0.056511919945478,-0.047672145068645,-0.029212977737188],[0.053584828972816,0.012608774937689,0.11817312240601],[0.027924425899982,-0.04984737187624,0.039935830980539]],[[-0.039046686142683,-0.060603521764278,0.0083111952990294],[0.039743769913912,0.102768458426,-0.045848019421101],[0.015750518068671,0.0019408535445109,-0.056304939091206]],[[-0.038530621677637,0.061399828642607,-0.028048535808921],[-0.097920060157776,0.028601972386241,-0.0012656981125474],[0.023530280217528,-0.071605034172535,0.030358428135514]],[[0.029270701110363,0.0065273549407721,0.042333614081144],[-0.017547409981489,-0.072250284254551,-0.0074379378929734],[-0.066326074302197,-0.034151699393988,0.041852969676256]],[[-0.040098633617163,-0.0083570200949907,-0.022314544767141],[0.04239160567522,-0.0082489922642708,0.069047927856445],[0.034729324281216,0.058629296720028,0.026884304359555]],[[-0.061260517686605,0.0011568106710911,-0.031890463083982],[0.073874048888683,0.033150263130665,-0.014097596518695],[0.0035674809478223,-0.014327979646623,-0.0147485723719]],[[-0.017291678115726,-0.031558733433485,0.055331237614155],[-0.029032232239842,-0.033613152801991,-0.003989233635366],[0.02943005412817,0.058652747422457,-0.034759219735861]],[[-0.016813959926367,-0.017678404226899,-0.03437240794301],[-0.01247058622539,-0.0085496576502919,-0.051219165325165],[-0.10829770565033,0.012842104770243,0.014551483094692]],[[-0.022974226623774,0.01728574745357,-0.018160700798035],[-0.057051047682762,-0.035584278404713,-0.0022471649572253],[-0.019919004291296,0.03166901320219,-0.1039986088872]],[[0.030220298096538,0.07199988514185,0.016039533540606],[-0.00052603665972129,-0.052122604101896,-0.020458633080125],[0.057774502784014,-0.014270451851189,-0.11395364999771]],[[-0.014803518541157,-0.065052285790443,-0.015893936157227],[0.03427205234766,-0.039849452674389,0.065949939191341],[0.04002409055829,0.024056140333414,0.047452632337809]],[[-0.044055685400963,0.012265185825527,0.012798631563783],[-0.013542683795094,0.0080642886459827,0.019838720560074],[0.0012044738978148,-0.019089408218861,-0.030661478638649]],[[-0.082916617393494,0.040566962212324,-0.11119135469198],[-0.00073476234683767,0.041029278188944,-0.018064888194203],[-0.071228004992008,-0.011607526801527,0.054118569940329]],[[-0.0062640705145895,0.0095218736678362,-0.034818883985281],[0.0060723600909114,0.019086167216301,-0.030433299019933],[-0.063213005661964,-0.014931930229068,-0.0025099897757173]],[[0.005110114812851,0.037754602730274,0.044609196484089],[-0.048222068697214,-0.040165685117245,-0.0078638223931193],[0.0054354500025511,0.0017179979477078,-0.027310807257891]],[[-0.11989607661963,0.021279321983457,0.023785701021552],[-0.052934795618057,-0.037287656217813,-0.020369211211801],[-0.089264944195747,-0.065277874469757,-0.11365853250027]],[[-0.078152574598789,0.013457261957228,-0.030705904588103],[-0.0024279407225549,0.0072335717268288,0.015325513668358],[-0.0260508377105,-0.065615803003311,0.0041462322697043]],[[0.038060538470745,0.074174724519253,0.0087138507515192],[0.10284628719091,0.12687039375305,-0.047061447054148],[0.041781809180975,-0.10558399558067,-0.075564920902252]],[[-0.027605898678303,0.057434756308794,-0.070977322757244],[0.059018779546022,-0.029500119388103,-0.14718681573868],[0.0084925936535001,0.032552778720856,0.068008989095688]],[[-0.053128715604544,-0.028224527835846,-0.014318120665848],[0.00054312450811267,-0.059987019747496,0.010090101510286],[-0.042537614703178,-0.14574867486954,-0.043746259063482]],[[0.028897540643811,-0.018243424594402,-0.011579167097807],[-0.02153761126101,-0.011673115193844,-0.092848747968674],[0.01551531162113,0.012591839767992,0.099246889352798]],[[0.046531956642866,-0.057717688381672,-0.074689529836178],[0.10867954045534,-0.024493051692843,0.048852022737265],[0.048977930098772,0.0097354957833886,0.032139651477337]],[[0.044929385185242,-0.080108121037483,0.02039903961122],[-0.10971963405609,-0.042230218648911,-0.031848017126322],[0.059475019574165,0.055359322577715,0.00056747067719698]],[[-0.045213084667921,-0.02707146666944,-0.0080377329140902],[-0.00082011421909556,-0.056011106818914,-0.038776244968176],[-0.026705557480454,-0.023107159882784,0.0081229107454419]],[[0.086281336843967,0.046363107860088,-0.039305899292231],[0.045937605202198,-0.0031956329476088,0.080492965877056],[0.054295439273119,-0.019593367353082,0.074143171310425]],[[-0.018733400851488,0.017550023272634,0.0058508166112006],[0.010074901394546,-0.021915310993791,-0.048843219876289],[0.0008625973132439,0.048500906676054,0.012287494726479]],[[-0.036728132516146,0.052087664604187,-0.03276189416647],[-0.088896259665489,-0.060046102851629,-0.011891626752913],[-0.0014708708040416,-0.028562085703015,-0.057112939655781]],[[-0.044096756726503,0.0078883171081543,-0.02215313538909],[-0.029182095080614,0.0396976955235,0.010118027217686],[-0.0016051151324064,-0.041116915643215,-0.11275062710047]],[[0.023426370695233,-0.092759132385254,-0.010329409502447],[-0.079054683446884,0.028638321906328,-0.023331545293331],[0.036250002682209,-0.060975037515163,0.02627027221024]],[[0.0044603254646063,0.0084124738350511,-0.00022164128313307],[-0.021582368761301,0.072246834635735,0.031626116484404],[0.034373588860035,-0.078713662922382,0.02917299233377]]],[[[0.013195724226534,-0.025880986824632,-0.081983983516693],[0.073262199759483,-0.027722008526325,-0.066076770424843],[-0.019294556230307,-0.17504635453224,-0.02754388935864]],[[-0.086045853793621,-0.016939852386713,-0.04964816197753],[-0.014583237469196,0.073330521583557,-0.035894341766834],[0.038337044417858,0.027793558314443,-0.021065775305033]],[[0.024936748668551,-0.073732487857342,-0.14990995824337],[0.07468044012785,-0.0095012504607439,-0.061385367065668],[0.068694777786732,0.0031353486701846,-0.074046611785889]],[[-0.042222961783409,0.065736703574657,-0.042541954666376],[-0.10363813489676,0.14165437221527,0.14181180298328],[-0.01338847912848,0.046254444867373,-0.087329775094986]],[[0.019476611167192,-0.0047541866078973,-0.031471103429794],[0.096318557858467,-0.021946584805846,-0.04191131144762],[-0.032816410064697,0.098285853862762,0.18095825612545]],[[-0.049586176872253,0.0065371440723538,-0.062954530119896],[-0.020223034545779,0.059309862554073,-0.096720457077026],[0.00037776990211569,-0.036601044237614,-0.062264677137136]],[[0.094228863716125,-0.048134319484234,0.083369642496109],[0.055373664945364,0.11510645598173,-0.04570272937417],[-0.041675675660372,-0.034689333289862,-0.045632064342499]],[[0.012893179431558,0.0012812283821404,-0.055031761527061],[-0.019392466172576,-0.0028763245791197,-0.021933943033218],[-0.023963881656528,0.071439430117607,0.046023011207581]],[[0.032566398382187,0.0020258098375052,0.016526609659195],[-0.013723371550441,0.026576895266771,0.022533420473337],[0.077964477241039,0.014371185563505,-0.051441878080368]],[[0.12186928093433,0.023206880316138,-0.024090686812997],[0.096417509019375,-0.095857642591,-0.027575477957726],[0.064471788704395,0.043008103966713,0.045497249811888]],[[0.0042097894474864,0.035414315760136,0.097019627690315],[0.0046286573633552,-0.034584414213896,-0.088066965341568],[-0.046137280762196,-0.00209128879942,0.0053819920867682]],[[0.089872173964977,-0.054941855370998,-0.012666451744735],[0.034014221280813,-0.13662584125996,-0.078112445771694],[-0.10642114281654,-0.16541890799999,-0.033443786203861]],[[0.036357033997774,0.10660964250565,-0.13349762558937],[0.067294344305992,0.01477777492255,-0.11338126659393],[0.028921959921718,-0.011787110008299,-0.043604113161564]],[[0.026681624352932,-0.011881935410202,-0.049913506954908],[0.029208663851023,0.067810751497746,0.00096695899264887],[0.079454869031906,0.029861496761441,-0.042959749698639]],[[0.10197620838881,0.12989768385887,-0.0051027801819146],[0.084919087588787,-0.075150713324547,-0.068571239709854],[0.082787960767746,-0.072576090693474,-0.024071732535958]],[[-0.060161110013723,-0.069352388381958,-0.029976760968566],[-0.092959344387054,-0.041795052587986,0.13421860337257],[0.014108897186816,0.011110463179648,0.09086849540472]],[[-0.019561201334,-0.041596543043852,-0.029288295656443],[-0.012897309847176,-0.0046916138380766,0.084160432219505],[-0.064671702682972,-0.013347057625651,0.088779553771019]],[[0.12171665579081,0.014895865693688,-0.023114677518606],[0.03099306114018,0.023256838321686,-0.0079946964979172],[0.022580971941352,0.031263746321201,-0.031435903161764]],[[0.037502899765968,-0.022967707365751,-0.067625321447849],[0.078403651714325,-0.069192349910736,0.092264629900455],[-0.12424305081367,-0.026831809431314,-0.012477197684348]],[[0.044461064040661,-0.018091067671776,-0.062570579349995],[0.054078999906778,0.011780951172113,-0.0093241389840841],[0.044936556369066,-0.00034512361162342,-0.049076654016972]],[[-0.00769894849509,0.04423164203763,-0.028025664389133],[0.086166992783546,0.13549663126469,0.0079812426120043],[0.03286249935627,0.031458172947168,-0.019294207915664]],[[-0.0076200105249882,0.071636609733105,0.097213812172413],[0.081283263862133,-0.14529131352901,0.056250285357237],[0.029483390972018,0.031540248543024,-0.086131945252419]],[[0.042182229459286,0.060255967080593,-0.070769399404526],[0.027144283056259,-0.11546609550714,0.013385719619691],[-0.12293233722448,-0.12559388577938,-0.078133799135685]],[[-0.050125371664762,0.16378618776798,0.045566365122795],[0.02836374938488,0.031839456409216,0.048433531075716],[0.021589182317257,0.18382892012596,0.13899226486683]],[[0.065910585224628,0.042296323925257,0.10228690505028],[0.068377457559109,0.043543271720409,0.0079464083537459],[0.073810279369354,0.071785047650337,-0.13580405712128]],[[0.039945688098669,-0.019079675897956,0.036226704716682],[0.10053990781307,-0.013968667015433,0.062019865959883],[0.056986574083567,-0.023447919636965,0.045635893940926]],[[-0.16483755409718,0.083000153303146,0.092701710760593],[-0.050486207008362,0.02987976744771,0.05639773607254],[-0.015859887003899,-0.03151848167181,0.055465292185545]],[[-0.03901444375515,0.014797972515225,-0.021764010190964],[-0.034151446074247,0.016787664964795,-0.001749763963744],[-0.032753568142653,-0.071524418890476,-0.005585225764662]],[[-0.12762029469013,-0.079560287296772,0.088132068514824],[-0.0029036167543381,0.01203581970185,-0.020009970292449],[-0.00033239903859794,0.0014774448936805,0.015425494872034]],[[0.10760572552681,-0.010264025069773,-0.08355101197958],[0.0038500484079123,-0.058952257037163,-0.047712597995996],[-0.0068399417214096,0.004549715667963,0.022590169683099]],[[0.02287139557302,-0.095064401626587,-0.012654846534133],[-0.081169664859772,-0.016040537506342,0.0033039264380932],[0.046029202640057,-0.088722214102745,-0.011913377791643]],[[0.050558626651764,-0.095043428242207,-0.080563761293888],[-0.027869433164597,-0.032194331288338,-0.027000587433577],[0.047797650098801,0.098694786429405,-0.0054921694099903]],[[0.13519743084908,0.009271964430809,0.028665337711573],[-0.029016209766269,0.02919683791697,-0.026674879714847],[0.072184577584267,-0.0019557122141123,-0.002628032816574]],[[0.051011007279158,0.11040955781937,-0.028081642463803],[0.079146541655064,0.02802843414247,-0.036239452660084],[0.029664842411876,-0.14055919647217,-0.083175361156464]],[[-0.068312361836433,-0.067004941403866,-0.16573731601238],[-0.093875981867313,-0.17586080729961,-0.11677291989326],[-0.030018534511328,-0.011480633169413,-0.13395494222641]],[[-0.041651211678982,-0.0051540564745665,-0.046651247888803],[-0.083459101617336,0.010647317394614,0.057524222880602],[0.050416953861713,0.021390551701188,0.040758904069662]],[[0.013074486516416,-0.030126927420497,-0.16363486647606],[0.076513431966305,0.048423208296299,-0.16145671904087],[0.10565944761038,-0.03137481957674,-0.12049560248852]],[[-0.043536797165871,-0.016235023736954,0.096669055521488],[-0.040225859731436,-0.0090460507199168,0.046825401484966],[-0.068923391401768,0.060496442019939,0.080564223229885]],[[0.046086519956589,-0.016884569078684,-0.015632625669241],[0.009137824177742,0.0069905295968056,-0.078918151557446],[0.040753602981567,-0.10165781527758,-0.099315971136093]],[[-0.059735845774412,0.0075906994752586,0.097526706755161],[-0.067770697176456,0.082616627216339,-0.052824165672064],[0.059652753174305,-0.030675046145916,0.062071740627289]],[[-0.016576593741775,-0.024521712213755,-0.025842754170299],[-0.010964340530336,-0.040601722896099,-0.089562132954597],[0.011265101842582,-0.075637713074684,0.12385696172714]],[[-0.028152672573924,-0.0079999510198832,0.036298420280218],[-0.16155259311199,-0.090446308255196,-0.06633972376585],[-0.038973480463028,-0.14344418048859,-0.145039498806]],[[0.019040247425437,0.06707151979208,-0.026332791894674],[-0.027250658720732,0.095807999372482,0.099759452044964],[-0.11765486001968,-0.076383583247662,-0.13430580496788]],[[0.031646326184273,-0.042575594037771,-0.066808335483074],[0.0024321665987372,0.014732311479747,0.090165533125401],[0.01876506023109,-0.06569155305624,-0.088339172303677]],[[-0.11573115736246,-0.11109563708305,-0.053496077656746],[-0.044127035886049,0.024761706590652,-0.041346538811922],[0.036181259900331,0.071604952216148,0.024355243891478]],[[0.010879839770496,0.053991504013538,0.10061572492123],[0.053367350250483,0.0019980063661933,0.07216864824295],[-0.070377178490162,-0.12639535963535,-0.045475371181965]],[[-0.029338762164116,0.051521554589272,-0.049849614500999],[0.020246705040336,-0.0088085029274225,-0.022422175854445],[0.015052846632898,-0.03043344989419,0.016698220744729]],[[0.087710291147232,0.025132670998573,-0.10240992903709],[0.012679718434811,-0.053368743509054,-0.076450996100903],[0.0511374771595,-0.013776656240225,-0.08068048208952]],[[0.10860784351826,0.15925519168377,0.03363686427474],[0.0054484931752086,-0.033648561686277,-0.025234330445528],[-0.029657296836376,-0.076207987964153,0.035744275897741]],[[0.060268644243479,-0.02185458317399,-0.038259081542492],[0.091817371547222,-0.14773879945278,0.053774692118168],[0.11003961414099,-0.016181025654078,-0.12171890586615]],[[2.3117769160308e-05,0.031077662482858,-0.038890216499567],[0.011205361224711,-0.00094595865812153,0.033142194151878],[-0.07607551664114,0.014827132225037,0.051931891590357]],[[0.050999935716391,0.10275046527386,-0.024865593761206],[0.092994891107082,0.016637718304992,0.10995388031006],[0.033875342458487,0.12892545759678,0.2171928435564]],[[0.033164981752634,0.031554974615574,-0.091460764408112],[-0.019368011504412,-0.0063519445247948,-0.055783968418837],[-0.030109373852611,0.036838859319687,-0.0094852186739445]],[[-0.037210132926702,-0.015139725059271,0.066994920372963],[-0.013771307654679,-0.059591099619865,0.058003626763821],[-0.087850205600262,-0.032582331448793,0.10821405053139]],[[-0.010688045062125,0.07191164791584,-0.017858006060123],[0.032152287662029,-0.004125373903662,-0.017655020579696],[0.02820453979075,0.065593563020229,0.0082244547083974]],[[0.064787119626999,-0.0047208010219038,0.027222128584981],[-0.032262545078993,0.010441114194691,-0.013460938818753],[-0.05426312610507,-0.012128015980124,-0.054891224950552]],[[0.044368207454681,0.015483872033656,-0.0328284278512],[0.0252530798316,-0.07515274733305,0.0060463901609182],[0.10847195237875,-0.078993514180183,0.028467524796724]],[[0.11517146974802,-0.030703369528055,0.00032756611471996],[0.10836458951235,0.03411678597331,-0.16745668649673],[-0.0034582633525133,-0.083884119987488,-0.10321621596813]],[[-0.052756205201149,0.080762013792992,0.096130840480328],[0.0053166747093201,0.026132877916098,0.091348364949226],[0.12613604962826,-0.0069902432151139,0.18665651977062]],[[-0.011249689385295,0.069709874689579,0.028974518179893],[-0.036841329187155,0.054965957999229,-0.0086630573496222],[-0.048701796680689,-0.039472751319408,0.016737386584282]],[[-0.084332957863808,0.015629757195711,-0.1182980760932],[-0.04787714779377,-0.069882281124592,-0.0517159961164],[0.062621660530567,0.0066168694756925,-0.064681842923164]],[[-0.068458497524261,-0.040161933749914,0.080267071723938],[-0.038941524922848,-0.063180223107338,0.040286872535944],[0.060553025454283,0.051850374788046,0.073111273348331]],[[-0.11532452702522,-0.092081807553768,0.047589499503374],[-0.032156255096197,-0.070966817438602,0.023541137576103],[-0.081050075590611,0.0010907301912084,0.049610413610935]],[[-0.022760072723031,0.018466528505087,-0.036166310310364],[0.033412400633097,-0.11838053911924,-0.1138960570097],[-0.030506255105138,-0.030974322929978,-0.084436066448689]]],[[[-0.072647355496883,-0.039793729782104,-0.022855581715703],[0.066702708601952,0.037313498556614,-0.039416395127773],[-0.067011877894402,-0.062456604093313,-0.11343558132648]],[[0.00049584335647523,-0.13608705997467,-0.022246824577451],[0.054177187383175,-0.095109857618809,-0.11248654127121],[-0.029274770990014,0.10431222617626,-0.081592842936516]],[[-0.004674278665334,0.051540199667215,-0.069959655404091],[0.070983320474625,-0.024193003773689,-0.11259141564369],[0.049679219722748,0.091111965477467,-0.016582844778895]],[[-0.088794372975826,-0.1150848120451,0.0061235511675477],[0.0098814675584435,0.031960785388947,0.044463351368904],[0.058971203863621,-0.098568417131901,-0.0086913155391812]],[[-0.17916022241116,0.062301684170961,-0.058402638882399],[-0.020961981266737,-0.0036992565728724,-0.050279106944799],[0.094770982861519,0.047499004751444,-0.039216067641973]],[[0.0082611916586757,0.061489049345255,0.044207766652107],[-0.024991780519485,-0.10244878381491,0.023931184783578],[0.085041537880898,-0.046987541019917,-0.029993636533618]],[[-0.091266706585884,-0.011126764118671,-0.06248489394784],[-0.10799597203732,-0.0039971200749278,0.028319243341684],[0.018023882061243,-0.026887586340308,-0.084629349410534]],[[-0.054994467645884,0.0028040478937328,0.03082899749279],[-0.06391628831625,-0.01303842663765,0.08862441778183],[-0.056215491145849,-0.022984320297837,0.026713877916336]],[[-0.014517727307975,-0.054377388209105,-0.11930627375841],[0.02418077737093,-0.010361831635237,-0.084282159805298],[0.06209971010685,-0.0066744009964168,0.11338123679161]],[[-0.0070470948703587,-0.0022153197787702,-0.075670972466469],[-0.038546714931726,0.064521975815296,-0.03344651311636],[-0.052794482558966,0.058179933577776,0.062390547245741]],[[0.047900468111038,-0.014834618195891,-0.050205904990435],[0.015380578115582,-0.0078494502231479,-0.073133155703545],[-0.014466693624854,0.1305842846632,-0.089259617030621]],[[0.092793583869934,-0.007589184679091,0.005892617162317],[-0.13469216227531,-0.036813836544752,-0.038341347128153],[0.007439028006047,-0.128805950284,-0.0048175151459873]],[[-0.062281135469675,-0.050506267696619,0.0071148425340652],[0.13387684524059,0.028163721784949,0.20611624419689],[-0.10334605723619,-0.20065739750862,-0.092244297266006]],[[-0.0061995657160878,-0.00209806766361,0.11082178354263],[-0.0019168900325894,-0.0054692593403161,0.063467480242252],[-0.098088443279266,0.025600176304579,0.052300833165646]],[[0.018301852047443,-0.031517878174782,-0.072746098041534],[0.035319615155458,-0.04267692938447,-0.074856393039227],[0.075031094253063,0.09009151160717,-0.020840613171458]],[[0.088210448622704,0.0072225662879646,0.017775986343622],[-0.011010300368071,-0.061265327036381,0.069656401872635],[-0.010384360328317,-0.056888807564974,0.076637372374535]],[[0.013835862278938,0.16967110335827,-0.03819553181529],[0.014090782962739,0.050523180514574,-0.10801196098328],[0.13060458004475,0.12142426520586,-0.097671717405319]],[[-0.069449692964554,-0.21982474625111,0.15182784199715],[0.013643490150571,-0.10149542242289,0.010482751764357],[-0.033740255981684,-0.085085108876228,-0.052568919956684]],[[0.00040891877142712,0.062330655753613,-0.060868676751852],[0.10093806684017,-0.045764613896608,-0.090533129870892],[-0.054031554609537,0.083279609680176,-0.059661094099283]],[[-0.055227737873793,0.016361091285944,-0.062220353633165],[-0.0081688882783055,0.05768796429038,-0.0096195107325912],[-0.020514467731118,0.042719058692455,0.0034674284979701]],[[-0.045610249042511,0.022113312035799,-0.12168695777655],[-0.018486199900508,-0.038139332085848,-0.13973517715931],[-0.018983189016581,-0.07956600934267,-0.035088814795017]],[[0.032898921519518,0.0033497037366033,0.13621866703033],[0.0045663518831134,0.013010768219829,-0.03421538323164],[0.0059481826610863,-0.11977601051331,0.00063135521486402]],[[-0.039460156112909,-0.11090517789125,-0.11349332332611],[-0.13971745967865,0.18018138408661,0.079367108643055],[0.054627951234579,-0.12851679325104,0.16343158483505]],[[-0.043384253978729,-0.0064739277586341,-0.033737443387508],[-0.0047934441827238,0.17069241404533,0.042618881911039],[-0.028720622882247,0.20313391089439,0.0047307866625488]],[[0.065559424459934,-0.015123257413507,0.057329267263412],[0.01209604460746,0.001852972083725,-0.12127047777176],[0.00026783719658852,0.17783692479134,-0.032675635069609]],[[0.008024163544178,0.0046575213782489,-0.0031334394589067],[-0.020007101818919,0.063894473016262,0.01547939889133],[-0.027803298085928,-0.016432208940387,-0.0021896299440414]],[[-0.16789819300175,-0.054232273250818,-0.036132451146841],[-0.10783120244741,0.041592802852392,-0.04058625549078],[0.11136454343796,0.027018558233976,0.058758594095707]],[[-0.015014561824501,-0.047070637345314,-0.0028169765137136],[-0.030602077022195,-0.032714478671551,0.046169675886631],[0.014270697720349,-0.033415473997593,0.068460188806057]],[[0.028054913505912,-0.11311984062195,-0.15709012746811],[0.12041838467121,-0.095927253365517,-0.093707203865051],[0.058160822838545,0.036825712770224,-0.0051557775586843]],[[-0.013479749672115,-0.074406281113625,0.089693151414394],[0.051878176629543,-0.074816308915615,-0.04982390999794],[0.026386555284262,0.026786498725414,-0.0075459904037416]],[[0.093564346432686,0.10909621417522,0.042420741170645],[-0.092418320477009,-0.039641115814447,0.026162540540099],[0.083163477480412,-0.093659572303295,-0.059558268636465]],[[-0.039875146001577,-0.029455902054906,0.15183152258396],[-0.06748989969492,-0.024024978280067,-0.033461797982454],[0.034790448844433,-0.069702312350273,0.045762304216623]],[[-0.095388285815716,-0.096446260809898,-0.021267559379339],[0.0097689451649785,0.0061534894630313,-0.11873699724674],[-0.058254946023226,-0.054646115750074,-0.053810033947229]],[[-0.090715683996677,0.043161809444427,0.083867534995079],[-0.0049896147102118,0.029825987294316,-0.020604832097888],[-0.040504459291697,-0.069591753184795,-0.029833655804396]],[[-0.22605700790882,0.025981115177274,-0.043936565518379],[-0.2272834777832,0.0095305442810059,-0.00083219824591652],[0.031469162553549,-0.0092207379639149,-0.0058857095427811]],[[-0.082513906061649,-0.028009688481688,0.059159852564335],[-0.064276330173016,-0.025438066571951,0.043124690651894],[-0.034096766263247,-0.046527449041605,0.011523094028234]],[[0.013258506543934,0.029160156846046,-0.051845673471689],[0.033177796751261,-0.12613287568092,0.047937452793121],[-0.057631481438875,-0.064095012843609,-0.04777542129159]],[[0.043940994888544,-0.072235427796841,-0.091045901179314],[-0.063594192266464,-0.0092126978561282,-0.070473290979862],[-0.057908698916435,0.031978666782379,-0.020080026239157]],[[-0.02247797138989,-0.047535128891468,-0.077502518892288],[-0.12072414159775,-0.02222334779799,0.13649970293045],[-0.030856708064675,0.0039172461256385,0.23254688084126]],[[8.5956162365619e-05,-0.035017460584641,0.033782757818699],[0.014892840757966,0.023465156555176,-0.071000419557095],[0.024526290595531,-0.048882208764553,-0.007948150858283]],[[0.060138814151287,-0.073589734733105,-0.16373308002949],[0.034721132367849,-0.018992694094777,0.036331210285425],[0.045286301523447,-0.055346455425024,-0.012684150598943]],[[-0.10381427407265,-0.10054741799831,0.022117648273706],[-0.050125375390053,0.053014028817415,-0.0027397859375924],[-0.048228245228529,0.16721487045288,0.085953265428543]],[[0.10309854894876,0.031796120107174,0.102255679667],[-0.064322210848331,-0.072505861520767,0.013906458392739],[-0.027831444516778,-0.032126549631357,-0.0075929667800665]],[[0.0041179424151778,0.003776025492698,0.042628966271877],[0.07937179505825,0.021998066455126,-0.031048249453306],[0.046497818082571,0.12953920662403,-0.060799844563007]],[[-0.0053239320404828,0.12852472066879,-0.10488889366388],[-0.10416483134031,0.13727702200413,-0.16884514689445],[0.01158834528178,0.073617942631245,-0.10751555860043]],[[0.021842174232006,-0.089362114667892,0.046830032020807],[-0.029458038508892,-0.0096858246251941,-0.1521021425724],[0.014825481921434,0.051337234675884,0.086199730634689]],[[-0.1109432131052,-0.039098873734474,0.096241116523743],[-0.097271323204041,0.025399979203939,0.098478183150291],[-0.067462705075741,0.033970471471548,0.034595981240273]],[[-0.011796509847045,0.041308999061584,-0.027387524023652],[-0.0046115186996758,-0.022026903927326,-0.00039625121280551],[0.05056531727314,0.0080405436456203,-0.1412011384964]],[[-0.023774245753884,-0.0092444373294711,0.080026119947433],[-0.022400625050068,-0.19628416001797,0.00057925889268517],[0.048850208520889,-0.010354366153479,0.09317122399807]],[[0.091673620045185,0.09952187538147,-0.020802672952414],[-0.050646413117647,0.064310237765312,-0.0051422687247396],[-0.066602379083633,0.017656283453107,-0.0051560951396823]],[[-0.0060682939365506,0.012749281711876,-0.064896382391453],[-0.015775371342897,0.054838094860315,-0.0077792783267796],[-0.0090780425816774,-0.047723170369864,-0.01797335781157]],[[-0.015505868010223,0.15537376701832,0.12141145020723],[-0.093234769999981,-0.0043638269416988,0.15882484614849],[-0.023451426997781,-0.010128436610103,-0.065017476677895]],[[-0.015723317861557,0.067495010793209,-0.0007932148873806],[0.026461880654097,-0.064086213707924,0.031933043152094],[-0.020089346915483,0.029015172272921,0.077704876661301]],[[0.11878851801157,0.18140916526318,-0.014571893028915],[-0.033967148512602,0.046115193516016,-0.046939261257648],[0.015968438237906,-0.13088689744473,-0.059818815439939]],[[0.013613392598927,-0.034787259995937,0.056776240468025],[0.034787409007549,-0.030970811843872,-0.014535032212734],[0.045820519328117,0.021606115624309,-0.022266067564487]],[[-0.047147743403912,0.0097159678116441,0.1153839379549],[-0.019281564280391,-0.069869607686996,0.047945454716682],[0.13657201826572,-0.012461815029383,-0.026449609547853]],[[-0.037022791802883,-0.19795669615269,-0.0273506809026],[0.17577902972698,-0.0056999274529517,0.010412285104394],[-0.015299341641366,0.0062091471627355,-0.12537226080894]],[[0.0060337572358549,0.02111810259521,-0.16084066033363],[-0.02448458969593,-0.0320765376091,-0.010198445990682],[-0.089726455509663,-0.025233957916498,-0.19592818617821]],[[0.040177550166845,-0.096316538751125,0.079686008393764],[0.051951143890619,0.12370247393847,0.11182080209255],[0.11561243981123,0.1067128777504,0.013424293138087]],[[0.012108649127185,-0.010739082470536,0.05922918394208],[0.032039631158113,-0.074729725718498,0.022187605500221],[-0.016887489706278,-0.041518565267324,-0.0029268404468894]],[[0.07086443901062,-0.093836098909378,0.064701668918133],[-0.086613059043884,0.01034555863589,-0.078040689229965],[0.088210642337799,-0.013994110748172,-0.055445834994316]],[[0.1515629440546,0.072355672717094,-0.12294014543295],[-0.050360810011625,0.066022038459778,-0.073268756270409],[0.11265113204718,-0.068403199315071,-0.2060344517231]],[[0.061999119818211,0.020645899698138,-0.020896980538964],[-0.033531941473484,0.10475467145443,-0.057869732379913],[-0.088056720793247,-0.033831853419542,0.02127000130713]],[[0.057773549109697,-0.014476012438536,-0.052181057631969],[0.056692283600569,0.012906733900309,-0.086551949381828],[-0.055989999324083,-0.075188145041466,-0.00047755395644344]]],[[[-0.027135388925672,0.029641913250089,-0.042016658931971],[-0.016642143949866,-0.073277950286865,-0.0097528006881475],[-0.046592965722084,-0.031837172806263,-0.073567040264606]],[[0.030058113858104,-0.049826625734568,-0.081275559961796],[-0.012195989489555,-0.028178678825498,0.0016736891120672],[0.017247440293431,-0.04242854937911,-0.042962778359652]],[[0.057786487042904,0.041911251842976,0.030434004962444],[0.003335885470733,-0.039534110575914,0.0450254753232],[-0.074793957173824,-0.075980931520462,-0.1397297680378]],[[0.024917071685195,0.067986503243446,-0.0060882666148245],[0.063517384231091,-0.018744271248579,-0.12318619340658],[-0.011362414807081,-0.04142227396369,-0.085405953228474]],[[-0.017328031361103,-0.0021543204784393,-0.017805812880397],[0.017909424379468,0.10033925622702,-0.030446618795395],[-0.044207233935595,-0.0016659089596942,-0.044819638133049]],[[0.031925033777952,0.024093242362142,-0.052746560424566],[0.063376769423485,0.041495107114315,0.048895232379436],[-0.076065115630627,-0.035870332270861,-0.0051249023526907]],[[0.039479799568653,0.0023907159920782,0.017213961109519],[-0.10291691869497,-0.011941207572818,-0.0010726115433499],[-0.074438251554966,0.0043825367465615,-0.043643835932016]],[[0.050334870815277,-0.062639102339745,-0.087471902370453],[0.038442261517048,-0.02458131313324,-0.088009931147099],[0.093546062707901,-0.085122615098953,-0.033618733286858]],[[-0.067524991929531,0.046823941171169,0.02873176522553],[0.031952276825905,0.0074531519785523,-0.013362430967391],[0.019726067781448,-0.064692355692387,-0.069085963070393]],[[-0.084479354321957,0.0748236104846,-0.053681466728449],[-0.067819632589817,-0.076432205736637,-0.010397505946457],[-0.041839227080345,0.093110606074333,-0.027315825223923]],[[0.0048024705611169,-0.074827797710896,0.013060505501926],[0.024841761216521,-0.094780020415783,0.00091494160005823],[0.0079799005761743,-0.080641575157642,0.078633330762386]],[[0.082256004214287,-0.054119803011417,0.058018568903208],[0.070313721895218,0.048456337302923,0.021422194316983],[0.027371991425753,-0.025147620588541,-0.021001901477575]],[[-0.050583437085152,0.064882427453995,-0.027447333559394],[-0.043203923851252,-0.04949776083231,-0.024837201461196],[-0.016414113342762,-0.01795588247478,0.030215496197343]],[[0.0034613118041307,0.057870175689459,0.0050968951545656],[-0.067913100123405,-0.011052920483053,0.011242096312344],[0.019751969724894,0.037150140851736,-0.071519605815411]],[[-0.003516105003655,-0.049042366445065,-0.017691560089588],[0.014311503618956,-0.061373475939035,-0.10760459303856],[-0.027424151077867,-0.08688809722662,-0.011408298276365]],[[0.080043256282806,0.023880859836936,0.053959976881742],[0.0096321506425738,0.015174989588559,-0.078744769096375],[-0.024346735328436,0.0042625567875803,0.024683611467481]],[[-0.056454621255398,-0.03773757442832,0.17105731368065],[-0.068305946886539,-0.05766911059618,-0.023312425240874],[-0.002249225275591,-0.0025149073917419,-0.051017962396145]],[[-0.0088534411042929,0.087163351476192,0.011910856701434],[-0.094911798834801,-0.038839869201183,-0.066687740385532],[-0.025526098906994,-0.10271086543798,-0.13014777004719]],[[-0.10563374310732,0.060245040804148,-0.014780500903726],[0.056453716009855,-0.02421585470438,-0.0063995127566159],[0.0081146946176887,0.031706191599369,-0.030956536531448]],[[0.0076428721658885,0.021764222532511,0.0045713409781456],[0.03128969669342,-0.037755634635687,-0.033034786581993],[0.011832845397294,-0.012033447623253,0.043077431619167]],[[0.0056283352896571,0.16419769823551,-0.059585403650999],[-0.010196566581726,0.019336001947522,-0.011727626435459],[0.001289404113777,-0.083741001784801,0.029047908261418]],[[0.066381856799126,0.0069823120720685,-0.15578880906105],[0.0053431880660355,-0.012484631501138,0.076734155416489],[0.07113429158926,-0.0074210586026311,-0.040039584040642]],[[0.037059843540192,0.02883505821228,0.018311100080609],[-0.048064328730106,-0.10424713045359,0.016679486259818],[-0.079271554946899,0.0014003210235387,-0.019919468089938]],[[-0.054392296820879,0.056724987924099,0.11674531549215],[0.037325065582991,0.018410120159388,0.034763116389513],[0.048725660890341,0.075563751161098,0.17114140093327]],[[0.18834553658962,0.086464367806911,-0.039826676249504],[-0.10660570859909,0.063190989196301,0.0023472490720451],[0.060643043369055,-0.013381697237492,0.18481750786304]],[[0.0268186442554,0.03274267911911,-0.01591513492167],[0.083871565759182,0.047915443778038,0.0022166317794472],[0.043502893298864,-0.00024111471429933,0.067546106874943]],[[-0.011579955928028,-0.08242529630661,0.00094496598467231],[-0.010355733335018,-0.076188459992409,-0.045196320861578],[-0.12700678408146,-0.028788583353162,0.051775448024273]],[[0.075242772698402,-0.047667391598225,-0.030126886442304],[0.041275691241026,-0.016213376075029,-0.0096996584907174],[-0.1016848012805,0.08224368840456,-0.033880989998579]],[[-0.012145872227848,-0.1053254827857,0.0097556123510003],[-0.032223366200924,-0.026454793289304,0.017093556001782],[-0.090672299265862,-0.022731507197022,0.00017176556866616]],[[0.03023955412209,-0.044685427099466,0.024290665984154],[0.077308848500252,-0.028520694002509,0.014681807719171],[0.010007207281888,-0.010754854418337,0.096228577196598]],[[-0.024758769199252,0.0040981653146446,0.061039697378874],[0.0068588056601584,-0.029313802719116,-0.02047729678452],[0.06195966526866,0.022370180115104,-0.097024016082287]],[[0.055977884680033,0.12019991129637,0.099926173686981],[0.058215864002705,-0.0025873801205307,-0.086775526404381],[-0.037156648933887,-0.030634442344308,-0.045424029231071]],[[-0.0019334298558533,0.053572654724121,0.051595233380795],[-0.053857330232859,-0.056645754724741,-0.035971734672785],[0.045337274670601,-0.039570495486259,-0.076418809592724]],[[-0.15942868590355,-0.06076717376709,0.078133344650269],[-0.1064066439867,0.066859848797321,-0.011270582675934],[-0.070510283112526,0.016721153631806,-0.070797331631184]],[[-0.026645768433809,0.080354534089565,-0.025947313755751],[-0.0051492601633072,-0.023500373587012,0.0095996055752039],[-0.10666500031948,0.054990097880363,-0.047332238405943]],[[0.011849126778543,-0.013770415447652,-0.035529095679522],[0.013568256050348,-0.037942830473185,-0.080692179501057],[-0.025665562599897,0.033152658492327,0.016945840790868]],[[-0.035231564193964,0.065030246973038,-0.073114991188049],[-0.028689021244645,-0.014279582537711,-0.026193371042609],[0.067984268069267,0.070823930203915,0.053559597581625]],[[-0.096547730267048,-0.019852180033922,-0.085140682756901],[0.091209381818771,0.033508747816086,-0.011699778027833],[-0.24180060625076,0.055806245654821,-0.087865024805069]],[[-0.28090327978134,0.020931113511324,0.050503138452768],[0.030184360221028,-0.070267252624035,-0.005135708488524],[-0.05450539663434,-0.050519771873951,0.043951749801636]],[[-0.011836996302009,0.049819998443127,0.01432359777391],[-0.0081797894090414,-0.026654096320271,0.048265893012285],[-0.082121677696705,-0.087231889367104,0.019152412191033]],[[0.053076859563589,0.037655360996723,0.040593259036541],[0.13850873708725,-0.015374659560621,-0.033777389675379],[-0.0098055489361286,-0.063546687364578,-0.12719970941544]],[[-0.05515256524086,-0.010018761269748,-0.022073285654187],[-0.05384024977684,0.0228071808815,0.039384618401527],[0.015750166028738,-0.03651737049222,0.044749040156603]],[[0.081073336303234,-0.073042139410973,-0.094765447080135],[0.01019177865237,-0.052469942718744,-0.032129921019077],[-0.0052528427913785,-0.011394751258194,-0.01647425070405]],[[0.025302803143859,-0.0053181485272944,0.069585517048836],[0.0014935728395358,-0.036236327141523,-0.0015493241371587],[-0.072487160563469,-0.038811095058918,0.017218293622136]],[[0.048715598881245,-0.04900473728776,0.0005262964987196],[0.082687966525555,0.081293329596519,-0.060473531484604],[0.019401149824262,-0.032650046050549,-0.028746955096722]],[[-0.019247304648161,-0.051103752106428,-0.018051624298096],[-0.11196770519018,-0.092840895056725,-0.13298982381821],[0.068347401916981,0.01501477882266,-0.036756385117769]],[[-0.00082280533388257,0.02657019905746,-0.095660805702209],[0.016315866261721,-0.063183441758156,0.031042059883475],[-0.090222261846066,0.039370071142912,-0.015268071554601]],[[0.022993175312877,0.035820420831442,0.030862076207995],[0.015505454503,0.071607701480389,0.043033879250288],[-0.057069286704063,-0.10121309757233,-0.12896353006363]],[[0.10428478568792,0.019049437716603,0.036536671221256],[0.05790589377284,-0.025900723412633,0.036339864134789],[-0.0015923751052469,-0.071324624121189,-0.055258814245462]],[[-0.014219889417291,0.0053870710544288,0.020756293088198],[0.063033573329449,0.12346615642309,-0.031930603086948],[-0.091037094593048,-0.050630833953619,-0.06638440489769]],[[0.026727866381407,-0.075865231454372,-0.039811171591282],[-0.026283040642738,-0.0099537950009108,-0.035987962037325],[-0.10638464987278,0.041494607925415,-0.022915141656995]],[[0.089596480131149,0.051012508571148,0.0096195712685585],[0.025661539286375,-0.0020694199483842,0.16648115217686],[0.026507176458836,0.042890142649412,0.12297745794058]],[[-0.097861468791962,-0.036769084632397,-0.062989272177219],[-0.030892634764314,0.12267232686281,0.030123447999358],[0.082547731697559,-0.069130048155785,-0.005980122834444]],[[0.021569015458226,-0.099256478250027,0.06544728577137],[0.044521626085043,0.086082383990288,0.090823866426945],[0.049411948770285,-0.008464771322906,0.012868661433458]],[[-0.0090833883732557,-0.061549384146929,0.021669507026672],[0.022711398079991,-0.072865784168243,0.0017871719319373],[-0.07278486341238,-0.010592342354357,0.045265682041645]],[[0.032616071403027,0.022391345351934,0.010435269214213],[-0.064318478107452,0.043040692806244,0.013798611238599],[0.10106322169304,0.019363334402442,0.020560598000884]],[[-0.0041594160720706,-0.036152839660645,0.028938209638],[0.079759813845158,-0.032510507851839,0.089644007384777],[0.027192836627364,0.0052767773158848,-0.045166827738285]],[[-0.03790495917201,0.035895571112633,0.030094439163804],[0.0069796284660697,-0.12091057002544,0.044057197868824],[0.0085089597851038,-0.053448051214218,-0.1184619218111]],[[-0.10522972792387,0.094459421932697,-0.042016346007586],[0.013228828087449,0.089332319796085,-0.030466882511973],[0.028812846168876,0.16815935075283,-0.064526744186878]],[[0.0037515084259212,-0.016230840235949,0.0149667551741],[-0.0066681005991995,0.042510744184256,0.016559759154916],[0.0036443362478167,0.021487237885594,-0.050016257911921]],[[-0.0098537597805262,0.010103276930749,-0.026335826143622],[-0.044643379747868,-0.080867610871792,-0.0027464833110571],[-0.021665835753083,0.054346583783627,-0.059568323194981]],[[0.075539976358414,0.10027841478586,0.020416505634785],[0.021186070516706,0.026188664138317,-0.0069253733381629],[-0.014758256264031,0.10318584740162,0.087427586317062]],[[-0.021055130288005,0.018506955355406,-0.058301649987698],[-0.0038452653679997,-0.13464938104153,0.020953524857759],[-0.030995590612292,0.047547519207001,-0.021767279133201]],[[0.0031159836798906,0.040621224790812,0.0029018197674304],[0.078682720661163,-0.05214786157012,0.0022748115006834],[-0.0077376984991133,0.00060506450245157,-0.0001751150120981]]],[[[0.0051881894469261,0.0633250400424,0.0082152336835861],[0.0045182565227151,-0.02521713450551,-0.028942659497261],[-0.063087373971939,0.024497648701072,0.0091146416962147]],[[-0.032480850815773,-0.010825995355844,0.048862915486097],[-0.031678341329098,0.0074294623918831,0.001244623796083],[0.075303874909878,-0.035696730017662,-0.047315381467342]],[[-0.020787555724382,-0.013927998021245,-0.084136083722115],[-0.14857763051987,-0.0087950248271227,0.13323403894901],[0.02828249707818,0.0058297943323851,-0.05956332758069]],[[-0.01366666611284,-0.03991848602891,-0.017287097871304],[-0.066017806529999,0.058956000953913,-0.024625893682241],[-0.079596020281315,-0.049449972808361,0.092287547886372]],[[0.0062780743464828,0.024377061054111,0.030503714457154],[-0.067527040839195,-0.012060682289302,-0.026558449491858],[-0.012898481450975,0.080710545182228,-0.078160755336285]],[[-0.036720313131809,-0.020894031971693,-0.031481515616179],[-0.041463144123554,0.015564535744488,0.091458663344383],[0.03097952529788,0.010489573702216,-0.017461510375142]],[[-0.031726092100143,0.03586371243,-0.052676238119602],[-0.053206406533718,0.01159125380218,0.049090549349785],[-0.0075489031150937,0.048518795520067,0.011304616928101]],[[0.053801741451025,0.015990486368537,-0.030885277315974],[-0.062202453613281,0.05368284881115,-0.038418117910624],[-0.025731090456247,-0.062575846910477,-0.0098666166886687]],[[0.026554154232144,-0.048075657337904,0.037468329071999],[0.018289394676685,-0.027204051613808,0.029870335012674],[-0.050875660032034,0.043391663581133,0.012189098633826]],[[-0.029298869892955,0.031636353582144,-0.027214545756578],[0.01711492985487,0.036202177405357,0.073364779353142],[0.068712338805199,-0.074316136538982,-0.041176278144121]],[[-0.015293216332793,-0.0020481427200139,0.015395865775645],[-0.0020957065280527,-0.0011088538449258,0.0042432122863829],[-0.0029683937318623,-0.04240195453167,0.062984049320221]],[[-0.013601721264422,0.018865067511797,0.00019688955217134],[-0.019604075700045,0.050868149846792,0.018429974094033],[0.10538764297962,0.0087298238649964,-0.026821907609701]],[[0.018126517534256,-0.0091528668999672,0.09981182962656],[0.02777705155313,-0.037792637944221,0.025717761367559],[0.02061577886343,0.065849505364895,-0.11898156255484]],[[0.071347549557686,0.014177117496729,0.05481681227684],[-0.024521572515368,0.0308767426759,-0.032797042280436],[0.042419128119946,-0.040791124105453,0.07671432197094]],[[-0.012605998665094,-0.0049492348916829,-0.053007543087006],[0.063758336007595,-0.011483241803944,-0.019913339987397],[-0.033560965210199,-0.0052947024814785,0.038342215120792]],[[-0.064900703728199,0.13847756385803,-0.14446604251862],[0.031921561807394,0.084838673472404,-0.073308050632477],[0.11190830916166,0.040625266730785,0.084443025290966]],[[-0.030611166730523,-0.0064235585741699,-0.041247360408306],[0.050863947719336,0.0078777568414807,0.047958482056856],[0.055565383285284,0.00037739262916148,-0.020784862339497]],[[0.045274522155523,0.016899405047297,0.010043072514236],[-0.037804286926985,-0.049276534467936,-0.068719498813152],[0.046066671609879,0.067010574042797,-0.1119531840086]],[[0.014464006759226,0.0026550178881735,0.058968536555767],[0.080565519630909,-0.095610767602921,-0.042990542948246],[-0.021854288876057,0.00047649678890593,-0.15132693946362]],[[-0.032354645431042,0.0023661351297051,0.043054815381765],[0.037704668939114,-0.025383774191141,0.060619175434113],[-0.030197996646166,-0.012789242900908,0.0058903270401061]],[[0.032600227743387,-0.042240187525749,-0.07880562543869],[-0.043038964271545,0.024674162268639,0.041367776691914],[0.022728720679879,-0.0095953280106187,-0.043358758091927]],[[0.0064383395947516,0.099394790828228,-0.053000513464212],[0.06866679340601,0.076828718185425,-0.070620007812977],[-0.068470798432827,0.044087678194046,-0.024254895746708]],[[0.0029846152756363,-0.11889592558146,-0.0017146200407296],[-0.025223687291145,0.026130316779017,-0.045120403170586],[0.085539773106575,0.047072131186724,-0.046402301639318]],[[0.010623326525092,0.10048754513264,0.0090982308611274],[0.071103475987911,-0.026891645044088,0.16315726935863],[0.023283304646611,-0.05961687117815,0.10952016711235]],[[-0.01867245696485,0.026306195184588,0.028216075152159],[-0.039619501680136,-0.16602613031864,0.027141338214278],[0.019220808520913,0.045595239847898,-0.050782557576895]],[[-0.0025216299109161,0.091926395893097,-0.02986304089427],[-0.06264490634203,-0.047085750848055,-0.079401962459087],[-0.030259642750025,-0.079334460198879,-0.042145229876041]],[[0.0084381140768528,-0.0055596372112632,0.074257001280785],[0.051614571362734,0.094076424837112,0.053248841315508],[-0.064521618187428,-0.0084763411432505,0.025376752018929]],[[0.087554514408112,-0.025616578757763,-0.0076838573440909],[0.037104934453964,0.057417474687099,0.15927469730377],[0.071938768029213,0.0030852989293635,0.068584926426411]],[[0.089810959994793,0.026691991835833,0.071381725370884],[-0.047359991818666,-0.012218052521348,0.007557054515928],[-0.020357878878713,0.019052777439356,0.024089487269521]],[[0.052443437278271,-0.051447443664074,-0.023035021498799],[0.11827692389488,-0.10521171241999,-0.066013731062412],[0.032016113400459,-0.015529810450971,-0.019360842183232]],[[0.05956269428134,0.061303738504648,-0.0064063891768456],[0.032914362847805,0.01556175481528,-0.011923551559448],[-0.028839014470577,-0.038623124361038,0.025957867503166]],[[0.042804453521967,-0.007968831807375,-0.070470556616783],[0.10325650125742,0.039110034704208,0.005088048055768],[-0.03693875297904,-0.075818978250027,0.067381508648396]],[[-0.023417357355356,-0.05436808988452,0.037513319402933],[-0.019264943897724,-0.01899897493422,-0.028611999005079],[0.0506981164217,0.016777437180281,-0.03746248409152]],[[0.060117699205875,0.057710234075785,-0.04172782972455],[-0.063573405146599,-0.0076729590073228,-0.099894262850285],[-0.0062974514439702,0.038239754736423,0.059871487319469]],[[-0.029031675308943,0.03513927012682,-0.025147546082735],[-0.015376925468445,0.083996742963791,0.0034158620983362],[0.056608594954014,0.013260966166854,0.017138849943876]],[[-0.019736362621188,-0.058214869350195,-0.056576877832413],[-0.018746394664049,0.039242401719093,-0.0040090763941407],[0.0049327071756124,0.022415280342102,-0.034788049757481]],[[-0.023471942171454,0.034323666244745,0.098869271576405],[0.074368961155415,-0.023894777521491,-0.0044494247995317],[-0.062572777271271,-0.0019976457115263,-0.073220252990723]],[[0.043438978493214,0.0066214888356626,0.0059531847946346],[-0.0080045312643051,0.0363191626966,-0.042885679751635],[-0.033356487751007,-0.060039293020964,-0.0074202893301845]],[[0.0025578173808753,0.035028707236052,-0.027735855430365],[-0.0076143783517182,-0.020909067243338,0.090036645531654],[0.045445457100868,-0.039965983480215,0.011500688269734]],[[-0.014595658518374,0.10246137529612,-0.064262881875038],[0.023184321820736,0.020724287256598,0.0099220816046],[-0.037785079330206,0.096906170248985,-0.079566575586796]],[[-0.023674219846725,0.057742927223444,0.036753159016371],[-0.0012409404153004,0.018275206908584,0.13941609859467],[-0.042705669999123,-0.015970557928085,-0.071778640151024]],[[-0.075393602252007,0.054312255233526,-0.010862961411476],[0.018704829737544,0.0033957255072892,-0.00083848414942622],[0.0237403716892,-0.0097194667905569,-0.0010308871278539]],[[0.0088643813505769,-0.058185774832964,0.052301801741123],[0.035852715373039,-0.061386201530695,-0.12473440915346],[-0.00096476526232436,0.045411318540573,0.08019045740366]],[[0.003759999293834,-0.030362907797098,-0.023490320891142],[-0.0092611638829112,-0.031544283032417,0.038394432514906],[-0.016409790143371,0.045949544757605,0.028330506756902]],[[-0.050105210393667,0.058710660785437,-0.027761669829488],[-0.0074121998623013,-0.036203008145094,-0.048442237079144],[-0.00093112833565101,-0.021432841196656,0.083709858357906]],[[-0.022105561569333,0.014734448865056,-0.035095028579235],[-0.043758366256952,0.0079590147361159,0.010548927821219],[0.045276869088411,-0.049682628363371,0.031841099262238]],[[0.0029304448980838,-0.0029797989409417,0.038878753781319],[-0.052899617701769,0.057294953614473,-0.0050345561467111],[0.020926686003804,0.074080161750317,0.037981547415257]],[[0.087345644831657,-0.092950001358986,-0.051911249756813],[0.10950767248869,-0.050615552812815,0.09826598316431],[0.0522655621171,0.030170500278473,0.023779023438692]],[[0.075485579669476,0.029682498425245,-0.028382247313857],[0.037802316248417,0.0087515981867909,-0.014075032435358],[0.0060022622346878,0.050211202353239,0.11161867529154]],[[-0.13972260057926,-0.0042098984122276,-0.076479896903038],[-0.051455173641443,-0.034558080136776,0.021713797003031],[0.048830110579729,0.043080221861601,0.086766868829727]],[[0.012564060278237,-0.028398390859365,-0.025285854935646],[-0.053324908018112,-0.057939410209656,-0.0080392155796289],[0.068028464913368,-0.01339808665216,0.037648089230061]],[[0.01966256275773,-0.043663874268532,0.069304399192333],[0.001114193466492,0.0043130596168339,0.056372694671154],[0.10624887049198,0.040249913930893,-0.066790923476219]],[[-0.051060888916254,0.027995696291327,0.0041076415218413],[-0.018448077142239,-0.029639579355717,0.054801620543003],[0.034849166870117,0.034338228404522,0.026996448636055]],[[0.01456475071609,-0.027599094435573,-0.040675859898329],[-0.018820136785507,0.018469959497452,0.0050664367154241],[-0.10852537304163,-0.020325001329184,-0.0043817884288728]],[[-0.014449334703386,0.039108980447054,0.016330050304532],[-0.063309945166111,-0.042160954326391,0.011002880521119],[0.04335767403245,-0.02333302795887,0.040397867560387]],[[0.04336155205965,0.02888610213995,0.046282090246677],[-0.065775454044342,0.048009347170591,-0.026221461594105],[-0.048065714538097,0.036898858845234,-0.02550963126123]],[[0.0059479069896042,-0.073272049427032,-0.0022594358306378],[-0.043806727975607,0.051392916589975,0.069038525223732],[0.023892655968666,0.004910213407129,0.0082002682611346]],[[-0.033423706889153,-0.037839759141207,-0.021284284070134],[-0.078233145177364,0.042012959718704,0.045047391206026],[0.035133805125952,-0.0712785795331,-0.0092359976842999]],[[0.047223713248968,0.029462886974216,0.11096497625113],[0.030475927516818,-0.065747231245041,-0.023525215685368],[0.083251930773258,0.047319669276476,0.042702831327915]],[[0.047636575996876,0.023762302473187,-0.0060727968811989],[-0.024669917300344,-0.0065019438043237,-0.057935036718845],[0.00333291455172,0.027683762833476,0.02688304707408]],[[0.034285694360733,-0.05215010792017,-0.026188543066382],[-0.055208869278431,0.020233657211065,-0.0092963203787804],[0.017337180674076,-0.013335134834051,0.026152784004807]],[[0.025877131149173,-0.073835037648678,-0.0025029149837792],[0.02350202575326,0.051886972039938,-0.0079384334385395],[-0.035246666520834,0.020252268761396,-0.077093176543713]],[[-0.027818586677313,0.026846395805478,0.043666306883097],[-0.031375229358673,-0.017458705231547,-0.026578385382891],[0.072241261601448,0.0060624983161688,-0.048186480998993]],[[0.0031246843282133,-0.028906239196658,-0.010136819444597],[-0.070393554866314,0.00019669796165545,-0.055373679846525],[0.043884675949812,0.011189825832844,0.0038165268488228]]],[[[-0.025935482233763,-0.074119828641415,-0.18619963526726],[-0.024859385564923,0.017759431153536,-0.0023375139571726],[0.013982968404889,0.18865758180618,-0.086470708250999]],[[0.014495148323476,0.087619207799435,0.079732567071915],[0.01715786755085,0.022311834618449,-0.052716758102179],[0.0093943076208234,-0.042834065854549,-0.01743771135807]],[[0.027000933885574,-0.0015121790347621,-0.066558435559273],[-0.021311422809958,0.021897982805967,0.0073319314979017],[0.031714078038931,0.0642941147089,-0.026660483330488]],[[0.022371573373675,-0.048419713973999,0.013547036796808],[0.0034405717160553,0.092891715466976,0.018160903826356],[-0.039003543555737,0.051430560648441,-0.012946986593306]],[[0.070933282375336,0.02980543859303,0.030177244916558],[0.058660924434662,0.011251837015152,-0.020407689735293],[-0.08947229385376,-0.070372730493546,-0.033149912953377]],[[-0.017951723188162,-0.016278384253383,0.12455226480961],[0.014760938473046,-0.046397238969803,0.029264001175761],[-0.066325753927231,-0.087205782532692,-0.0069374707527459]],[[0.031213330104947,0.026569548994303,-0.016506971791387],[-0.033846504986286,0.030533231794834,-0.067648716270924],[0.039716005325317,0.003211971372366,-0.029064916074276]],[[-0.059423066675663,0.038086704909801,-0.017277274280787],[-0.04484835639596,0.01577029004693,-0.045822896063328],[0.082167632877827,0.025704218074679,-0.082922749221325]],[[-0.014398022554815,-0.024009067565203,0.0026561869308352],[0.011452909559011,-0.050280086696148,-0.059760104864836],[-0.028798820450902,0.057289849966764,0.045884985476732]],[[-0.04656283184886,0.0035609332844615,0.031483121216297],[0.03926644474268,0.02721318975091,-0.02614670433104],[-0.023785784840584,0.05133868008852,-0.018597915768623]],[[-0.0014754631556571,-0.076667942106724,-0.098303720355034],[0.0052964533679187,-0.091131173074245,-0.016077388077974],[0.077877938747406,-0.050114430487156,-0.0077916909940541]],[[-0.091021873056889,-0.035475723445415,-0.0083382539451122],[0.013209700584412,0.023299992084503,-0.02860108949244],[-0.039185754954815,-0.026457643136382,0.023972161114216]],[[0.050369597971439,0.00050091551383957,0.0072883958928287],[0.020175985991955,-0.0036739225033671,-0.010857914574444],[-0.10717652738094,-0.025953430682421,0.017444614320993]],[[-0.00053707382176071,0.037807200103998,0.063207730650902],[0.00015307342982851,-0.045443993061781,0.043620809912682],[0.034964192658663,-0.028879098594189,-0.015736412256956]],[[0.0031932438723743,-0.021934222429991,-0.046268504112959],[0.05312280356884,0.04151427000761,-0.039450615644455],[-0.016694996505976,-0.010070589371026,-0.071822620928288]],[[0.027907624840736,0.10966156423092,-0.055196262896061],[-0.024836540222168,0.028437931090593,0.064827606081963],[0.033913612365723,-0.042676642537117,0.043817911297083]],[[0.085115998983383,-0.038859274238348,-0.11448469758034],[0.033283546566963,-0.0067791123874485,-0.10168309509754],[-0.1231574267149,-0.1497156471014,0.0058388933539391]],[[0.13857950270176,0.014616684988141,-0.0018283176468685],[-0.045090388506651,0.057540532201529,-0.071175418794155],[-0.11220077425241,-0.039675451815128,0.014685917645693]],[[-0.032565884292126,0.080464221537113,-0.018877658993006],[-0.098799124360085,0.024058001115918,-0.037412244826555],[-0.0029619485139847,0.018273366615176,-0.05867076292634]],[[0.016039665788412,-0.0016707918839529,-0.0056617679074407],[0.031386002898216,-0.035944987088442,0.0024457580875605],[0.021005801856518,0.027613345533609,-0.047730848193169]],[[-0.023484453558922,-0.050169557332993,0.048132054507732],[0.029135506600142,0.0029873021412641,0.01708953641355],[0.0072850780561566,0.064386427402496,0.031236557289958]],[[0.10929905623198,-0.076152712106705,-0.072406850755215],[-0.038069237023592,-0.065896667540073,0.00013185618445277],[-0.01475402712822,0.049666453152895,-0.0013149133883417]],[[0.017970478162169,-0.0068730344064534,0.027566315606236],[0.05551228299737,-0.10379430651665,-0.024051442742348],[-0.03820688650012,0.029307505115867,0.072275705635548]],[[0.076684758067131,0.079506561160088,0.055001482367516],[0.10531065613031,0.07755570858717,0.053550831973553],[0.018561016768217,0.078770980238914,0.12350653111935]],[[0.051375340670347,-0.025090346112847,-0.021545683965087],[0.056700479239225,0.043395575135946,0.083962246775627],[0.10013896971941,0.060153819620609,0.092215247452259]],[[-0.0031034250278026,-0.0011604061583057,-0.03150037676096],[-0.013964232057333,0.01431751344353,-0.011411629617214],[-0.059918187558651,0.034264974296093,0.0261284802109]],[[0.0016767091583461,-3.6771238228539e-05,0.021596763283014],[0.05025290697813,-0.049428828060627,0.035187244415283],[-0.10004688799381,-0.0037125064991415,-0.0743577927351]],[[0.054358381778002,0.022669596597552,-0.048000190407038],[-0.031561385840178,-0.0018289922736585,-0.033930759876966],[-0.029016364365816,0.013105543330312,0.048638820648193]],[[0.038997750729322,-0.12984782457352,0.082081250846386],[0.049416903406382,-0.06174797937274,-0.06267074495554],[-0.0050104609690607,0.043640907853842,0.011792840436101]],[[-0.020035171881318,0.054048407822847,0.049347717314959],[-0.047388035804033,-0.11524066329002,0.040783260017633],[-0.064071334898472,-0.13047604262829,-0.079002164304256]],[[0.044003706425428,0.10108195245266,-0.091804817318916],[0.08591877669096,0.0070251394063234,-0.09133119136095],[0.023740421980619,0.036684382706881,-0.073503583669662]],[[-0.028646552935243,-0.043613605201244,-0.00082531821681187],[0.077381744980812,-0.096944257616997,-0.025887578725815],[-0.0099066514521837,0.06563263386488,-0.051337625831366]],[[0.014147142879665,0.022609408944845,0.0029059688095003],[0.061883598566055,-0.033579226583242,-0.0079898154363036],[-0.021821573376656,-0.034673660993576,0.0013111446751282]],[[-0.096459232270718,0.024736810475588,0.036827728152275],[0.092228300869465,-0.028323704376817,-0.011350460350513],[0.0091611221432686,-0.03144471719861,-0.019529255107045]],[[0.056522380560637,0.021989230066538,-0.043351780623198],[0.09648110717535,-0.010720705613494,-0.13848413527012],[-0.0034927632659674,-0.061520118266344,-0.069758489727974]],[[0.010877212509513,-0.0098677575588226,-0.060101047158241],[0.07583874464035,0.070571281015873,-0.0065282816067338],[0.032942198216915,-0.012960514053702,-0.046723339706659]],[[0.029829645529389,0.019973363727331,0.030272485688329],[0.046169579029083,-0.015638934448361,0.040915340185165],[-0.10593905299902,-0.011670037172735,0.021487534046173]],[[0.12513382732868,0.011836094781756,0.0070496150292456],[-0.050138086080551,0.031000588089228,0.01716928742826],[-0.068462714552879,-0.058852326124907,0.058515641838312]],[[-0.11091606318951,-0.12300357222557,0.0069959741085768],[0.052895318716764,-0.057802200317383,-0.0035633037332445],[-0.0016827600775287,-0.027374235913157,0.055127646774054]],[[0.16191117465496,0.12614664435387,-0.020961692556739],[0.12050572782755,0.071210540831089,-0.080573305487633],[-0.011889837682247,-0.023635286837816,0.013940846547484]],[[0.014872656203806,-0.029932878911495,-0.0067622303031385],[0.042022541165352,-0.0097256433218718,0.0061797639355063],[0.042842302471399,0.0099775064736605,-0.027106713503599]],[[0.016331937164068,0.027065843343735,-0.053853768855333],[0.13503617048264,0.1038217023015,-0.09293632209301],[0.021854627877474,-0.0007550828740932,0.051205467432737]],[[-0.036725133657455,0.0367949642241,0.052908215671778],[0.015555291436613,-0.00087895634351298,-0.02253520488739],[0.00099660037085414,-0.0051501849666238,0.09071009606123]],[[-0.013169049285352,-0.016790919005871,0.0010242786956951],[0.052214965224266,0.0342724211514,-0.029098624363542],[-0.030485179275274,-0.058255758136511,0.013074872083962]],[[0.14094476401806,-0.012435872107744,0.015276798047125],[0.014930570498109,0.031715583056211,0.084804072976112],[-0.0037362342700362,-0.019361695274711,0.025216268375516]],[[0.00075961789116263,-0.025896517559886,-0.015591656789184],[0.019145326688886,-0.013446135446429,-0.085071578621864],[-0.024892589077353,-0.017470536753535,-0.025337502360344]],[[-0.019948236644268,-0.12517030537128,0.043432176113129],[-0.10971154272556,-0.086082182824612,0.029025049880147],[0.060160141438246,-0.056160923093557,0.071504756808281]],[[-0.015605925582349,-0.062028512358665,-0.0030137016437948],[-0.015305765904486,0.03151872381568,0.098471976816654],[0.022903086617589,-0.032864540815353,0.056051768362522]],[[-0.0039917784743011,-0.043416552245617,-0.020539676770568],[-0.0055500636808574,-0.066994652152061,-0.050493337213993],[0.030213242396712,-0.066279284656048,0.054160676896572]],[[0.013080750592053,0.087482891976833,0.00093847303651273],[-0.0074671139009297,-0.080383293330669,0.028799876570702],[-0.0010262731229886,-0.033802680671215,0.081548176705837]],[[0.073988512158394,0.055041745305061,-0.028159908950329],[-0.041720274835825,-0.023752547800541,-0.0098530994728208],[-0.082880228757858,0.006191301625222,-0.0088141532614827]],[[0.023390978574753,0.026114620268345,0.18279679119587],[0.026629224419594,0.089301660656929,0.10093816369772],[0.095370136201382,0.094205819070339,0.021886838600039]],[[0.043190039694309,-0.078308142721653,-0.05095973610878],[0.021794524043798,0.021742679178715,-0.0090821646153927],[0.080872520804405,-0.0010230476036668,-0.024035299196839]],[[0.074148915708065,0.0084446780383587,0.024026330560446],[-0.013405500911176,-0.010527115315199,-0.032784733921289],[0.0049591525457799,0.037658143788576,-0.0094877388328314]],[[0.054092336446047,-0.0036408985033631,0.030791211873293],[0.099943742156029,0.068785898387432,-0.076187647879124],[0.058260649442673,0.03427667170763,-0.088181085884571]],[[-0.015940615907311,-0.014804653823376,-0.039050254970789],[0.013715012930334,0.024870464578271,0.044244632124901],[-0.022880150005221,-0.048500958830118,0.00043757955427282]],[[0.058473654091358,-0.00084993388736621,-0.0369170345366],[0.080262131989002,-0.043410122394562,0.0025098242331296],[0.029364421963692,0.02534451149404,0.058712784200907]],[[0.013930793851614,0.070644520223141,-0.018107010051608],[0.058057237416506,-0.034141715615988,-0.067440256476402],[-0.024747237563133,0.082255408167839,-0.0075956266373396]],[[0.073149234056473,0.14993564784527,-0.044021919369698],[0.058284714818001,-0.011505763046443,0.062888190150261],[0.0092406840994954,0.087577238678932,0.054680913686752]],[[-0.0089514590799809,0.028013229370117,0.031002938747406],[-0.016971539705992,-0.034771237522364,0.026448685675859],[-0.028702177107334,-0.011665633879602,0.027571761980653]],[[0.033330757170916,-0.082709334790707,0.078287832438946],[-0.038028180599213,-0.043032839894295,-0.062648773193359],[-0.028768204152584,0.0075437985360622,0.017608810216188]],[[0.0076983403414488,-0.030354097485542,-0.022177806124091],[-0.040878623723984,0.018288491293788,0.041810311377048],[-0.0413265414536,0.0044155963696539,0.030126785859466]],[[0.078683897852898,0.017374156042933,-0.044062837958336],[0.02736702747643,0.017483880743384,-0.0070435288362205],[-0.032379169017076,0.038979817181826,-0.047265160828829]],[[-0.01412202231586,-0.045853652060032,-0.0032223842572421],[0.0048002009280026,-0.014596775174141,0.066368788480759],[-0.064658351242542,-0.028785342350602,-0.0011532149510458]]],[[[0.019991580396891,-0.0050323694013059,-0.12657076120377],[-0.021145544946194,-0.10550244152546,-0.022393176332116],[-0.011853490956128,-0.024225806817412,0.021193509921432]],[[-0.080235056579113,-0.060258772224188,-0.08154134452343],[0.072848573327065,0.020277991890907,-0.0062271910719573],[-0.016922250390053,0.01335202716291,0.029646012932062]],[[-0.11585114151239,-0.11051998287439,0.010417559184134],[-0.016601176932454,-0.044397752732038,-0.058173689991236],[8.2836493675131e-05,0.079240128397942,-0.074420168995857]],[[-0.072770543396473,0.0085631655529141,-0.045948836952448],[0.054195322096348,0.0039884545840323,-0.050391469150782],[-0.080182008445263,-0.052831150591373,-0.05854144692421]],[[-0.04497230425477,-0.00088062277063727,0.061325132846832],[0.017659926787019,-0.06160032376647,0.051973987370729],[0.018151793628931,-0.071553997695446,-0.21248573064804]],[[-0.016999568790197,-0.0020592047367245,-0.020933842286468],[0.010827171616256,-0.045714057981968,0.045607000589371],[-0.028326749801636,-0.049420479685068,0.03658015653491]],[[-0.055048543959856,-0.050303004682064,-0.099841468036175],[-0.013389098457992,0.018956543877721,-0.057060372084379],[-0.027006791904569,-0.048170071095228,0.040144838392735]],[[0.10323541611433,0.0041080992668867,-0.068258486688137],[-0.026544803753495,0.025141334161162,-0.0038087596185505],[0.065600492060184,0.088802583515644,-0.061359465122223]],[[-0.018943442031741,-0.022970845922828,-0.056339748203754],[-0.023204820230603,-0.052097532898188,-0.013948893174529],[-0.06083557382226,-0.021973976865411,0.010776275768876]],[[-0.011911189183593,-0.081897087395191,-0.079267434775829],[0.0082736276090145,-0.070869669318199,0.078956767916679],[0.025857053697109,0.036798596382141,-0.016397293657064]],[[0.12977777421474,0.049258608371019,0.095102250576019],[-0.11349378526211,0.011987498030066,-0.022892000153661],[0.054139114916325,-0.13022266328335,-0.083596110343933]],[[-0.011372719891369,-0.047130197286606,0.094412460923195],[-0.085479080677032,-0.030319569632411,0.027710670605302],[0.020628185942769,0.11137017607689,0.053997296839952]],[[-0.016383228823543,0.063492923974991,-0.036488629877567],[-0.053404700011015,-0.015761625021696,0.010941805317998],[-0.043636236339808,0.069230817258358,0.10552667081356]],[[-0.029970947653055,0.046676378697157,-0.0011184536851943],[0.030864367261529,0.014165789820254,0.04287987574935],[-0.029249614104629,0.015805087983608,0.060190338641405]],[[-0.028868755325675,-0.060896046459675,-0.0099584776908159],[-0.0060601653531194,0.023616079241037,0.089749693870544],[-0.01766281016171,0.0018451616633683,0.011160892434418]],[[0.082328878343105,-0.080694541335106,0.01941361092031],[0.025077600032091,-0.005586689338088,0.0035521474201232],[-0.024459041655064,0.051459595561028,-0.11678804457188]],[[0.071696728467941,0.034759409725666,-0.033912543207407],[-0.017966257408261,0.079797238111496,-0.0064237108454108],[0.056877315044403,0.083803087472916,0.10887159407139]],[[-0.030309472233057,0.0081032104790211,-0.031014086678624],[0.063601419329643,-0.0059442589990795,-0.013213210739195],[0.060924299061298,-0.033787272870541,-0.11583548039198]],[[0.021991712972522,-0.0052656973712146,0.037114359438419],[0.060509912669659,0.016214590519667,-0.018482806161046],[-0.022574793547392,0.015998588874936,-0.0089562498033047]],[[-0.037426747381687,0.034856256097555,0.041932784020901],[-0.010636912658811,0.046163696795702,-0.036095134913921],[0.01921190880239,0.032598081976175,-0.058347336947918]],[[-0.065366357564926,0.013009377755225,-0.0044056489132345],[-0.030237020924687,0.02758414670825,0.013230560347438],[0.076356820762157,-0.00052538781892508,0.029897240921855]],[[-0.086478337645531,-0.088948152959347,-0.02902740240097],[0.013163195922971,-0.072898402810097,0.051174264401197],[0.023524856194854,-0.14231622219086,0.047386713325977]],[[0.019989721477032,0.0079786265268922,0.00055860873544589],[-0.038325060158968,-0.044329911470413,0.0108821419999],[-0.030180780217052,-0.052538860589266,0.092314571142197]],[[-0.079261541366577,0.096200779080391,0.19745522737503],[0.067434720695019,0.030867332592607,0.01930389367044],[0.01928336918354,-0.043443169444799,0.095468655228615]],[[-0.0026972074992955,0.0024364576674998,0.0078828576952219],[0.0024796226061881,0.074084773659706,-0.026840414851904],[0.13411393761635,0.018915481865406,0.27081549167633]],[[-0.00088204914936796,0.0080883968621492,0.10064302384853],[0.015492716804147,-0.016754470765591,0.033646747469902],[0.0029605347663164,-0.032058965414762,-0.021931100636721]],[[0.038268398493528,0.015504295937717,-0.035881105810404],[-0.044269423931837,-0.021137535572052,-0.030614180490375],[0.07286224514246,0.12704989314079,0.01192819699645]],[[-0.056614156812429,-0.053986169397831,-0.15989169478416],[-0.055281676352024,-0.008940102532506,-0.025646576657891],[-0.058480285108089,-0.096995770931244,0.010570243932307]],[[0.039018638432026,-0.070393204689026,-0.019444532692432],[-0.032168965786695,0.012563743628561,-0.0037650323938578],[0.062374603003263,-0.016250690445304,0.011666437610984]],[[-0.04143176600337,-0.10634236037731,-0.17671652138233],[0.10655266046524,-0.068102099001408,-0.18083046376705],[0.035995490849018,-0.14386701583862,-0.15999965369701]],[[0.085633166134357,-0.013380663469434,0.068754397332668],[0.029418282210827,-0.0071072708815336,0.0028353128582239],[-0.069322422146797,-0.0060497992672026,-0.051955167204142]],[[0.0020032948814332,0.12028250843287,-0.016935562714934],[0.02675467915833,-0.02163740247488,-0.042622655630112],[0.054743722081184,-0.053423844277859,0.065284729003906]],[[0.020746443420649,0.048786699771881,-0.034990288317204],[0.050252515822649,-0.023122392594814,-0.0084913810715079],[-0.033177819103003,-0.10470230877399,-0.025932623073459]],[[-0.0033561533782631,-0.10901480168104,-0.11568196862936],[-0.054279796779156,-0.013718160800636,0.1333180218935],[-0.014065754599869,0.062433071434498,0.089983865618706]],[[-0.068034686148167,9.5790121122263e-05,-0.03564514964819],[-0.053974721580744,-0.060837812721729,0.0033207819797099],[-0.066671118140221,-0.067960321903229,-0.027300871908665]],[[-0.015068147331476,-0.029349638149142,-0.030471660196781],[-0.031853970140219,-0.043935921043158,-0.0082922726869583],[0.056435596197844,0.011909646913409,0.046572532504797]],[[-0.027766510844231,-0.15058290958405,0.010744243860245],[-0.0041282121092081,-0.039511185139418,0.0087440703064203],[-0.085976749658585,-0.11724760383368,-0.046873960644007]],[[0.13783031702042,0.043051294982433,-0.041744522750378],[-0.158945530653,0.030700858682394,-0.082044653594494],[-0.019368341192603,-0.021674796938896,-0.18927510082722]],[[0.013859875500202,0.12152802199125,0.057681273669004],[0.032775349915028,0.012348211370409,-0.086068958044052],[-0.034712728112936,-0.037114147096872,0.23739019036293]],[[-0.028428558260202,0.028813667595387,-0.078061982989311],[-0.0031207650899887,0.0063918372616172,0.043776668608189],[-0.026527855545282,-0.019227651879191,0.050796031951904]],[[-0.03952220082283,0.01409328635782,0.034086026251316],[-0.028991689905524,-0.081652842462063,0.027590090408921],[0.032700445502996,0.018901718780398,0.058166410773993]],[[-0.16143882274628,0.050086192786694,-0.044083714485168],[-0.095185726881027,-0.044928275048733,-0.056604493409395],[0.041573669761419,0.052912369370461,0.062539979815483]],[[-0.097131788730621,0.013031646609306,-0.031387187540531],[0.066270709037781,-0.023013699799776,-0.056717325001955],[-0.04628723859787,-0.00010022716742242,-0.037079345434904]],[[0.079816438257694,0.0099024111405015,-0.035185098648071],[-0.023424075916409,0.045472629368305,-0.10524358600378],[0.047513082623482,-0.030426271259785,0.1614156961441]],[[-0.081080675125122,-0.08840624243021,-0.071025632321835],[-0.023885365575552,-0.11188669502735,-0.018108710646629],[0.034091621637344,-0.09317047894001,-0.059069160372019]],[[-0.017566865310073,0.13403537869453,0.038187310099602],[-0.032343070954084,0.013209337368608,-0.075771614909172],[-0.037926018238068,0.046453386545181,0.013121351599693]],[[0.014178195036948,0.094489000737667,-0.0482715703547],[-0.056913007050753,-0.052692707628012,0.011662323027849],[-0.072038076817989,0.0075086555443704,0.030981434509158]],[[-0.019798293709755,0.0085192248225212,-0.073931537568569],[0.05887208506465,0.028600806370378,0.0612379796803],[-0.083311229944229,-0.10514454543591,0.00052293081535026]],[[0.044154964387417,-0.098380766808987,0.014087635092437],[-0.042737100273371,0.032323785126209,0.017120098695159],[0.010365418158472,-0.006993408780545,0.087416224181652]],[[0.046724859625101,-0.044822532683611,-0.13295727968216],[-0.046783708035946,0.035750560462475,-0.035677876323462],[-0.02195287682116,-0.013320572674274,-0.047662690281868]],[[-0.016927858814597,0.031007010489702,-0.044572990387678],[0.062070786952972,-0.0070733078755438,-0.014473981224],[0.0012126873480156,-0.029465673491359,0.0073014148510993]],[[0.12421740591526,0.094848237931728,-0.077351219952106],[0.091921225190163,0.0055278795771301,-0.020104272291064],[0.053391810506582,-0.007829338312149,-0.034128796309233]],[[-0.27961334586143,0.026205832138658,0.035670820623636],[-0.080793499946594,-0.096733517944813,-0.041701555252075],[0.047116488218307,-0.094020031392574,-0.13451974093914]],[[-0.032454013824463,0.017547558993101,0.091599568724632],[-0.011284206062555,-0.0040804706513882,0.038488060235977],[-0.03679321333766,-0.032168194651604,-0.046528551727533]],[[-0.073524095118046,-0.11199887096882,-0.091158203780651],[-0.087010703980923,-0.05480882152915,-0.027686258777976],[0.026083851233125,-0.10888011008501,0.0048776622861624]],[[-0.044801339507103,0.032300971448421,-0.018977701663971],[-0.020459754392505,0.00010513637971599,0.049723993986845],[0.046455912292004,-0.011002144776285,0.012605177238584]],[[-0.11679646372795,-0.27379074692726,-0.068989098072052],[0.0027033754158765,0.014856251887977,0.0068062739446759],[0.060096640139818,0.0079334629699588,-0.0034052908886224]],[[0.022251568734646,0.021074609830976,-0.075705617666245],[-0.0074531016871333,0.038747917860746,0.043362028896809],[-0.022492608055472,-0.017153467983007,0.088733397424221]],[[0.067617259919643,0.14096039533615,-0.00383514421992],[0.095449090003967,0.083001710474491,-0.020930126309395],[0.005027748644352,0.040531236678362,0.031229194253683]],[[0.0099795367568731,-0.018225539475679,-0.047724742442369],[-0.012262019328773,-0.015525618568063,0.057639297097921],[-0.019482316449285,-0.025139285251498,0.070032276213169]],[[-0.042186863720417,-0.021311705932021,-0.021861655637622],[0.013128711842,-0.021786576136947,0.00043378889677115],[-0.096183836460114,-0.045376535505056,-0.024303508922458]],[[0.0094353668391705,0.029092812910676,-0.026351256296039],[-0.0073879160918295,0.024030193686485,-0.04864701256156],[0.0026636652182788,-0.038227759301662,-0.13470782339573]],[[-0.031577929854393,0.04051698744297,0.10999324172735],[-0.026962088420987,0.0046856957487762,-0.00069886638084427],[-0.023264467716217,0.075379468500614,0.013404081575572]],[[-0.057682059705257,-0.015735410153866,0.085734598338604],[0.011426059529185,0.026351729407907,-0.011499836109579],[-0.14194782078266,-0.028798243030906,0.06199786439538]]],[[[0.075096763670444,-0.0031630704179406,-0.036199182271957],[-0.043440699577332,0.025422751903534,0.062603153288364],[-0.005522342864424,-0.046492177993059,-0.02737719938159]],[[0.03887889534235,-0.10676898062229,0.10041102021933],[-0.090601019561291,-0.030284464359283,0.19532914459705],[-0.002041426487267,-0.033659379929304,0.097767107188702]],[[-0.065177403390408,0.01633763872087,0.011136936023831],[0.01372043043375,-0.11858627945185,-0.014910879544914],[0.050359956920147,-0.017383053898811,0.069981776177883]],[[-0.045028049498796,-0.024466061964631,0.019623788073659],[-0.061023481190205,-0.010894235223532,-0.10840506106615],[-0.037716925144196,-0.027793385088444,-0.097301371395588]],[[-0.024537671357393,-0.022202380001545,-0.021124571561813],[-0.01567767560482,-0.024976588785648,-0.0947070941329],[0.057085994631052,-0.017750464379787,-0.17593622207642]],[[-0.036878511309624,-0.035435821861029,0.042947951704264],[0.019266022369266,-0.066719077527523,-0.024587750434875],[-0.012918876484036,-0.064950041472912,0.042340513318777]],[[-0.028945801779628,-0.0040611480362713,-0.032852657139301],[-0.021327087655663,-0.034895293414593,0.0022556409239769],[0.0040685292333364,-0.013516870327294,0.058098249137402]],[[0.018197791650891,-0.049765158444643,0.089243046939373],[0.012822893448174,-0.018852462992072,-0.0805778875947],[-0.029932415112853,0.055684115737677,-0.11507150530815]],[[-0.029511390253901,-0.048411622643471,-0.13650292158127],[-0.053777020424604,0.11933506280184,-0.0027482016012073],[-0.080859534442425,-0.035821709781885,0.019286274909973]],[[-0.036953438073397,0.019818983972073,-0.025050170719624],[-0.017590124160051,-0.012486374005675,0.016957329586148],[0.01211122982204,0.052322722971439,-0.07528655230999]],[[-0.087427154183388,0.10947540402412,-0.029048085212708],[-0.033718284219503,0.011379438452423,0.016997558996081],[-0.05243806168437,-0.024485906586051,0.071284785866737]],[[-0.072913371026516,-0.091338537633419,-0.030597111210227],[-0.034581243991852,-0.21138641238213,0.0021092901006341],[0.10007266700268,-0.071918025612831,-0.037589311599731]],[[0.034610271453857,0.027819277718663,0.05189374089241],[-0.0044558830559254,-0.064924381673336,0.018711391836405],[0.0063192555680871,-0.055777098983526,-0.018982047215104]],[[0.0064165890216827,-0.033890958875418,0.011589274741709],[-0.035212550312281,0.016549345105886,0.069778062403202],[0.02139194868505,-0.042006630450487,0.019617728888988]],[[-0.042107939720154,-0.0058014439418912,0.050606291741133],[-0.0086442232131958,0.049192927777767,-0.088598564267159],[-0.09947606921196,0.020279914140701,-0.0084896320477128]],[[0.0058013289235532,0.051563803106546,0.0066928789019585],[-0.026742655783892,-0.023834062740207,-0.010487378574908],[-0.035938743501902,-0.058957867324352,-0.024317530915141]],[[0.079293824732304,0.036195371299982,-0.021682498976588],[0.068937517702579,0.016136964783072,-0.10677917301655],[-0.075185261666775,-0.017503041774035,-0.099818058311939]],[[-0.10069699585438,0.043857138603926,-0.03153869509697],[-0.15431573987007,0.016403825953603,-0.029384572058916],[-0.01192351616919,-0.15989473462105,0.059773184359074]],[[0.0043545016087592,-0.079602316021919,-0.025833748281002],[-0.02399555593729,0.069010265171528,-0.077666096389294],[-0.084149189293385,0.020036719739437,-0.0045504234731197]],[[0.0067986641079187,0.025754861533642,-0.015416759997606],[-0.022871332243085,0.034929171204567,0.0029912353493273],[0.0085317986086011,-0.090119183063507,0.0070537133142352]],[[0.030954092741013,-0.10188286751509,-0.15012449026108],[-0.089733295142651,0.0097654666751623,-0.042452055960894],[0.059578854590654,0.048240095376968,0.071492031216621]],[[0.040906809270382,-0.012922251597047,0.087299726903439],[0.02559600584209,-0.077808193862438,-0.17301368713379],[0.024749629199505,-0.12089078128338,0.038685437291861]],[[-0.060623928904533,0.037214912474155,0.024558635428548],[-0.1051270365715,0.10873251408339,-0.046434942632914],[-0.058949429541826,0.10482715070248,0.040944430977106]],[[0.13287582993507,0.062699660658836,0.038829021155834],[0.22362539172173,-0.047551423311234,0.050930578261614],[0.055671241134405,0.045951034873724,0.00320586678572]],[[0.053399480879307,-0.13940708339214,-0.1344136595726],[-0.030210390686989,0.040129352360964,-0.055653899908066],[-0.022170012816787,0.013867447152734,0.13912825286388]],[[0.012697185389698,-0.034994684159756,-0.071562632918358],[0.032680436968803,-0.014544351026416,-0.052107576280832],[0.047261573374271,-0.00017933479102794,-0.0040253940969706]],[[-0.025675874203444,-0.01707680337131,0.04535124078393],[-0.020726775750518,0.049677710980177,-0.15657611191273],[-0.03606765344739,-0.028590340167284,0.078972049057484]],[[0.010420568287373,0.018860602751374,0.033106051385403],[-0.045824285596609,0.058553606271744,0.17503137886524],[-0.038629677146673,-0.079133175313473,0.091625809669495]],[[-0.07452867180109,0.025931876152754,0.075354538857937],[0.019614521414042,-0.025786235928535,0.072351068258286],[0.10714812576771,0.033694639801979,0.10078740119934]],[[-0.05898204818368,-0.076827421784401,-0.12917268276215],[-0.059844966977835,0.018075220286846,-0.083192601799965],[0.0094864889979362,-0.080048248171806,0.048973858356476]],[[0.067699909210205,0.004005279392004,0.063780829310417],[0.047421734780073,6.0189078794792e-05,0.020220344886184],[-0.051370888948441,-0.021834690123796,0.062483191490173]],[[-0.013297970406711,-0.069839373230934,-0.055445421487093],[0.089413225650787,0.026682229712605,-0.12702794373035],[-0.049871865659952,0.025661997497082,0.11890590935946]],[[0.034299075603485,0.042029719799757,-0.010496404953301],[-0.019310658797622,-0.06092644482851,0.026494074612856],[-0.014074748381972,-0.015198452398181,-0.052806440740824]],[[0.059230636805296,0.062128618359566,-0.039250388741493],[0.096031509339809,0.014307875186205,-0.03672618418932],[0.045745208859444,-0.099597811698914,-0.089180044829845]],[[-0.036269653588533,0.036510620266199,0.016560820862651],[-0.034825600683689,0.097468182444572,0.17233988642693],[-0.039212085306644,0.05534328892827,0.061016537249088]],[[0.0029728184454143,0.00054101541172713,0.038606449961662],[0.025750808417797,-0.047555547207594,-0.08138145506382],[-0.034870605915785,0.027579240500927,-0.030033307150006]],[[0.0096757207065821,0.030550884082913,-0.15739080309868],[0.050179414451122,0.059501349925995,-0.016654666513205],[0.037931002676487,-0.0022878865711391,-0.016915863379836]],[[-0.057335611432791,0.068890705704689,0.029208693653345],[-0.082563631236553,-0.070690773427486,0.0065564047545195],[0.086253516376019,0.065162293612957,-0.06203804910183]],[[0.036604039371014,0.037424191832542,-0.06566010415554],[-0.016904449090362,0.058903153985739,0.11750191450119],[0.015567471273243,0.040900774300098,0.20585805177689]],[[0.0096983257681131,-0.0057061379775405,-0.067135579884052],[-0.0026490483433008,0.010591466911137,-0.082878425717354],[-4.370539681986e-05,0.013216677121818,-0.046398475766182]],[[0.029956066980958,-0.070513620972633,-0.0028387934435159],[-0.10701315850019,-0.16478243470192,-0.055041231215],[-0.069339953362942,0.045133642852306,-0.082138024270535]],[[0.059670522809029,-0.043038375675678,0.072262831032276],[-0.027048546820879,-0.012952080927789,-0.025457946583629],[-0.06381968408823,0.07356384396553,0.036355424672365]],[[0.051500417292118,0.014363897964358,-0.065274678170681],[0.0083655789494514,-0.06903725117445,-0.004607736133039],[0.016425063833594,0.014042219147086,0.0014650372322649]],[[-0.049672264605761,-0.081061407923698,-0.0084271067753434],[0.066523149609566,0.057283915579319,0.0050153541378677],[0.029857061803341,0.04706172645092,-0.028130706399679]],[[-0.018930178135633,-0.024191005155444,0.0035651286598295],[-0.10392678529024,-0.061215940862894,-0.16480669379234],[-0.0067780241370201,0.036355894058943,-0.12333788722754]],[[-0.075293175876141,0.054816566407681,0.022935397922993],[-0.063681706786156,0.030535755679011,0.00086129934061319],[0.018649742007256,0.04101150482893,-0.037951685488224]],[[0.038424279540777,-0.017430245876312,-0.023690111935139],[0.01424618717283,0.09789414703846,-0.038851466029882],[-0.023466132581234,-0.019788408651948,-0.070205986499786]],[[-0.038917399942875,-0.023107448592782,0.11528952419758],[0.024136563763022,-0.11160181462765,-0.03980864956975],[0.0041741402819753,-0.04251279681921,-0.042952787131071]],[[0.0023076815996319,-0.033449415117502,0.045130260288715],[-0.065654061734676,-0.058214947581291,-0.016774788498878],[-0.032574493438005,0.025373134762049,-0.0055793495848775]],[[0.031141698360443,0.0049534444697201,-0.04169849678874],[0.082698605954647,0.043642725795507,-0.18655745685101],[0.019256548956037,0.051650747656822,-0.11094564944506]],[[0.031860768795013,-0.0035804021172225,-0.037949450314045],[-0.016673106700182,-0.0019870053511113,0.0031151697039604],[0.0029054800979793,-0.036819372326136,-0.019637633115053]],[[0.011175693012774,-0.016001362353563,-0.0062949168495834],[0.073589123785496,0.0039047673344612,0.035817224532366],[0.0054307589307427,-0.12578366696835,0.0072685382328928]],[[-0.045845936983824,0.0097971986979246,0.018299935385585],[-5.7688463130035e-05,0.069733180105686,0.053241610527039],[-0.014517999254167,-0.18805654346943,0.066271148622036]],[[-0.12301796674728,-0.019163412973285,-0.049561474472284],[-0.10668074339628,-0.065204307436943,0.020351484417915],[-0.090900503098965,-0.029999909922481,0.036491695791483]],[[-0.0042941416613758,-0.083598248660564,-0.00044586436706595],[0.083555921912193,-0.07719548791647,-0.025430094450712],[-0.12613520026207,-0.095547825098038,0.1240492016077]],[[0.016015572473407,0.058537300676107,0.10014649480581],[0.0065387077629566,-0.042372591793537,0.030520405620337],[0.014666061848402,-0.0029667371418327,0.0167017262429]],[[0.13802191615105,-0.054780721664429,0.017006441950798],[0.05605560541153,-0.0047368803061545,-0.0072778994217515],[0.067067883908749,-0.012205909006298,-0.1341015547514]],[[0.01487264316529,0.018238013610244,0.0068822158500552],[-0.10334587842226,-0.03438151627779,0.12208477407694],[-0.055983576923609,-0.093775793910027,0.039631120860577]],[[-0.01944543607533,-0.052403297275305,-0.0081067541614175],[0.011531116440892,-0.058106001466513,-0.021995762363076],[0.050573579967022,0.016600405797362,0.10372810065746]],[[-0.010408415459096,-0.0019212011247873,-0.019488299265504],[-0.0072914198972285,-0.029015522450209,0.0058378684334457],[-0.0016119736246765,0.046879526227713,0.00075089221354574]],[[0.0082683097571135,0.048233151435852,-0.059150490909815],[0.015385422855616,-0.056503169238567,0.012514307163656],[0.064887560904026,-0.030435422435403,-0.078633613884449]],[[0.094113126397133,-0.11817658692598,0.038837410509586],[0.0081998575478792,-0.097302958369255,-0.057449445128441],[-0.014051688835025,0.096529990434647,-0.025504359975457]],[[-0.077807448804379,-0.056912872940302,-0.016852710396051],[0.0061047757044435,-0.04596833512187,-0.10916206985712],[0.071242608129978,-0.0053529520519078,-0.046633411198854]],[[-0.0015108039369807,0.050109393894672,-0.0096039278432727],[-0.030725322663784,0.0089959213510156,-0.034520652145147],[-0.0091825220733881,0.047586385160685,0.0016628246521577]]],[[[-0.17207470536232,-0.10458306223154,0.026984039694071],[0.010988337919116,0.00122916768305,0.039558827877045],[0.054998945444822,-0.019882164895535,0.0017179526621476]],[[-0.12560498714447,-0.079356454312801,-0.032998014241457],[-0.13794262707233,-0.016345163807273,-0.087871700525284],[-0.19740627706051,-0.10275226831436,-0.090747684240341]],[[-0.047087978571653,0.0050732521340251,0.11846266686916],[-0.031646229326725,0.010852430015802,0.05311457067728],[-0.17239236831665,0.045140758156776,-0.016635190695524]],[[-0.010344007052481,-0.00057044858112931,-0.087838411331177],[-0.039589516818523,-0.12754057347775,-0.060671277344227],[-0.20755921304226,-0.027706291526556,-0.080088719725609]],[[-0.12279650568962,-0.0090472046285868,0.050411466509104],[-0.079016096889973,0.048226457089186,0.032457813620567],[-0.049767963588238,0.0016920935595408,0.086348578333855]],[[-0.043001335114241,0.041830759495497,-0.010808896273375],[0.016107028350234,-0.040581580251455,-0.095341704785824],[-0.09219179302454,-0.071951508522034,-0.011374492198229]],[[-0.027435109019279,-0.055490389466286,-0.11265318840742],[-0.057970490306616,-0.015051684342325,0.04256335273385],[-0.052036963403225,0.032699450850487,-0.095541514456272]],[[-0.038083609193563,-0.078681774437428,-0.21620501577854],[-0.11395598202944,-0.061622638255358,-0.056413821876049],[-0.22530713677406,-0.063798703253269,-0.0017435952322558]],[[0.023730251938105,-0.049655240029097,-0.024326540529728],[0.025770070031285,-0.0076780770905316,-0.096142336726189],[0.10106805711985,0.045582354068756,0.050254315137863]],[[0.023604024201632,0.035787180066109,0.05697850510478],[0.10344672948122,-0.090592734515667,0.022972907871008],[0.050013091415167,0.063351608812809,0.039042394608259]],[[0.0093883676454425,-0.0084536708891392,0.057314604520798],[0.050201408565044,0.061111729592085,-0.023797715082765],[0.025745855644345,-0.051623705774546,-0.012041515670717]],[[-0.056547433137894,-0.056095164269209,-0.036122694611549],[-0.03411153703928,-0.025313360616565,0.053928393870592],[-0.0070154825225472,0.10579843819141,0.032513856887817]],[[0.010144750587642,0.043122697621584,-0.01699642278254],[-0.15708681941032,-0.010823337361217,-0.041296720504761],[-0.049862895160913,-0.059720490127802,-0.062496427446604]],[[0.031838741153479,0.052955877035856,-0.077537752687931],[-0.087223298847675,-0.10862445086241,-0.098884649574757],[-0.069806925952435,0.054368123412132,-0.066478483378887]],[[0.046156223863363,-0.074142679572105,-0.072745941579342],[-0.0011698936577886,-0.045122180134058,0.08303751796484],[-0.012097839266062,-0.058438703417778,0.01998258382082]],[[-0.070337317883968,-0.064456090331078,0.11050817370415],[0.040231101214886,0.017644757404923,-0.04433099552989],[-0.053875230252743,-0.082757472991943,-0.011468618176877]],[[-0.032735947519541,-0.081312879920006,0.034583203494549],[0.035994417965412,0.095629870891571,0.057619001716375],[0.071033678948879,-0.075271084904671,0.069143235683441]],[[-0.015724185854197,0.016471611335874,-0.075477570295334],[-0.037444740533829,-0.035369377583265,-0.04768456146121],[-0.10936385393143,0.027199631556869,-0.077527165412903]],[[0.032726395875216,0.0096434587612748,0.016417011618614],[-0.0054037342779338,0.055008199065924,-0.010045745410025],[0.056699223816395,-0.068535484373569,0.0080030970275402]],[[-0.00017245367052965,0.031908579170704,0.04996320232749],[-0.065621100366116,-0.089020408689976,0.06738019734621],[-0.067826449871063,0.0082328654825687,0.076534852385521]],[[0.013220840133727,-0.18319563567638,-0.11459558457136],[-0.081189185380936,-0.18682260811329,-0.11876396089792],[-0.22043940424919,-0.13705633580685,-0.093974374234676]],[[-0.060485608875751,0.0034784823656082,0.030815247446299],[0.020759023725986,0.074207536876202,0.0089189000427723],[0.041824400424957,0.13814415037632,0.10595479607582]],[[0.067813649773598,0.012804788537323,0.010404692962766],[-0.0018124245107174,0.022637458518147,0.030019164085388],[0.092837795615196,-0.046981558203697,-0.049383647739887]],[[0.045775413513184,0.056808926165104,-0.13922646641731],[0.13203389942646,0.099579028785229,0.042354114353657],[0.26437106728554,0.072437450289726,-0.039130631834269]],[[0.034219965338707,0.064162522554398,0.025630503892899],[0.033928144723177,0.063784956932068,0.0022440163884312],[0.020741742104292,0.0061217248439789,-0.00035829731496051]],[[-0.0055672558955848,0.057394973933697,0.1611140370369],[0.040386658161879,0.058009207248688,0.014800406061113],[-0.0097081838175654,0.0055241174995899,0.052038799971342]],[[0.068261496722698,-0.052869934588671,-0.14733909070492],[0.16242228448391,0.051254790276289,-0.041598819196224],[0.04860869422555,0.083549857139587,-0.0026415744796395]],[[-0.011370264925063,0.040175285190344,-0.0014908717712387],[0.046821292489767,0.051262598484755,-0.0054837949573994],[-0.055346414446831,-0.00032393116271123,-0.065740838646889]],[[-0.067018896341324,-0.078871369361877,0.016355350613594],[-0.01217985060066,0.10958509147167,-0.019193176180124],[0.036590408533812,-0.043654259294271,0.010274388827384]],[[0.046029146760702,-0.098254822194576,0.07122940570116],[-0.003940774127841,-0.021164827048779,0.16347043216228],[-0.10832953453064,0.081624053418636,0.064186468720436]],[[0.013047222979367,-0.06259036809206,-0.018722889944911],[0.080355234444141,-0.016621720045805,-0.078618071973324],[0.11565256863832,0.032963365316391,-0.04719465225935]],[[-0.10496550798416,-0.036782346665859,-0.040325436741114],[0.11813098937273,-0.023688463494182,0.0053963530808687],[-0.0109893232584,0.034364208579063,-0.02355725876987]],[[0.027503151446581,0.033721189945936,0.030340775847435],[-0.021064354106784,-0.010107052512467,0.058210086077452],[-0.0022838769946247,-0.0002187907230109,-0.021571755409241]],[[0.032561160624027,0.044507909566164,-0.051930453628302],[-0.060389813035727,-0.037174109369516,-0.0018616646993905],[-0.040277846157551,-0.031705424189568,-0.0017317114397883]],[[-0.056857410818338,0.0078500201925635,0.059211768209934],[0.10336007922888,0.054765503853559,0.035459537059069],[-0.066419512033463,0.0065906108357012,-0.062280610203743]],[[-0.035368304699659,-0.020799728110433,0.10056349635124],[0.020107179880142,-0.10420393198729,-0.0026227373164147],[0.085248969495296,0.023344110697508,0.010678715072572]],[[0.077913820743561,0.030167544260621,0.081682220101357],[-0.00080576370237395,-0.0062526650726795,-0.012502672150731],[0.1067828387022,0.003672837279737,0.0040963715873659]],[[-0.018366137519479,-0.016271594911814,0.034843347966671],[-0.037964627146721,0.01059450302273,-0.10646925121546],[0.036820203065872,0.065383777022362,0.022350566461682]],[[-0.072718963027,0.050605040043592,-0.01433047093451],[-0.064141780138016,0.061865013092756,0.028146430850029],[0.049394026398659,0.0046221455559134,-0.05621924251318]],[[-0.026647785678506,0.015705311670899,-0.050920955836773],[-0.047516770660877,-0.05050116032362,-0.037284199148417],[0.013305027037859,0.045040093362331,0.0026908617001027]],[[-0.056256834417582,0.0094574326649308,0.03085776977241],[-0.10337559133768,0.002691610250622,-0.078885190188885],[-0.018781844526529,-0.082260765135288,-0.15376751124859]],[[0.040019907057285,-0.056016195565462,-0.048452809453011],[0.066482342779636,0.04921156540513,-0.037528224289417],[0.062178142368793,0.060422647744417,-0.029038665816188]],[[0.039811749011278,-0.0092633953318,-0.033894412219524],[0.0093584470450878,-0.08535397797823,-0.047551579773426],[0.0052253417670727,0.063876859843731,0.0005062841810286]],[[-0.076906450092793,-0.01047863252461,-0.1328786611557],[-0.084964722394943,-0.076275184750557,-0.06559918820858],[-0.093530647456646,-0.029295444488525,-0.017465312033892]],[[-0.027125334367156,0.014547703787684,0.0066780727356672],[-0.032149199396372,0.015392245724797,0.032030522823334],[0.019944397732615,-0.031605813652277,0.08451846241951]],[[0.046367350965738,0.017231399193406,-0.01818285509944],[0.037512701004744,0.0041888486593962,0.014580943621695],[0.071167074143887,0.018293095752597,-0.021912090480328]],[[0.023278810083866,0.024783404543996,-0.10586708039045],[-0.032619029283524,0.04911957681179,-0.030537340790033],[0.065776541829109,0.02357491850853,0.030011555179954]],[[0.060141887515783,0.032795213162899,-0.084178477525711],[0.0041019259952009,-0.068264096975327,-0.048188753426075],[-0.043461881577969,-0.097441464662552,-0.010676821693778]],[[0.038294043391943,0.014848435297608,0.018331306055188],[0.00040248021832667,-0.023867594078183,-0.015132726170123],[0.00029524340061471,0.05173709616065,-0.023467879742384]],[[-0.053367484360933,-0.020301885902882,-0.045586388558149],[0.055013231933117,0.054118789732456,-0.025186436250806],[-0.088977888226509,0.014334818348289,-0.088325671851635]],[[-0.013558260165155,-0.0034132616128772,0.056048158556223],[-0.055553961545229,-0.043229900300503,0.016211535781622],[0.015599574893713,-0.050344634801149,-0.022783529013395]],[[-0.02511808462441,0.018844494596124,0.014525817707181],[-0.14054425060749,0.016908342018723,-0.028261406347156],[0.044617719948292,0.11841800808907,-0.042990654706955]],[[-0.11079746484756,-0.022021036595106,-0.18887096643448],[-0.088541150093079,-0.053707089275122,-0.045858033001423],[-0.14029760658741,0.029604265466332,0.021067148074508]],[[0.035457029938698,-0.00790033955127,0.041132017970085],[0.012569376267493,-0.026636704802513,0.024299727752805],[0.057534858584404,-0.04644975438714,-0.1170951128006]],[[0.012129656970501,0.065631486475468,-0.068888545036316],[0.00017829626449384,-0.063388615846634,-0.019537333399057],[-0.031364511698484,-0.047787703573704,-0.056515861302614]],[[-0.032332919538021,0.028696432709694,-0.10524936765432],[-0.0080612553283572,0.07071240991354,-0.055227290838957],[-0.12138377130032,0.022174259647727,-0.11732134222984]],[[-0.041123040020466,0.033642638474703,-0.057780500501394],[-0.003792526666075,-0.042264450341463,0.054714027792215],[0.053046561777592,-0.079795099794865,-0.0097451386973262]],[[0.012249905616045,-0.012223708443344,-0.0056324079632759],[-0.03388836234808,0.0033285245299339,-0.045845109969378],[-0.049310449510813,-0.075188241899014,-0.14063648879528]],[[-0.032264482229948,0.10937926918268,0.054191265255213],[0.025383934378624,0.054856766015291,0.070585250854492],[0.028052613139153,-0.0168846398592,0.058889415115118]],[[0.033451668918133,-0.04583565890789,-0.033030029386282],[0.081137500703335,0.021265553310513,-0.015171234495938],[0.061235543340445,-0.0077405492775142,-0.059408858418465]],[[-0.060472417622805,-0.0043591093271971,-0.066691942512989],[0.027483765035868,-0.024202426895499,0.00072942062979564],[0.11096242070198,0.041931163519621,-0.004596661310643]],[[-0.043687917292118,-0.060296382755041,-0.12579761445522],[0.081125967204571,-0.039100963622332,-0.004287397954613],[-0.16257435083389,0.0876325070858,-0.074202887713909]],[[-0.042451955378056,-0.081308297812939,0.025462800636888],[-0.037024542689323,-0.14855879545212,0.034297548234463],[0.033860210329294,0.038154929876328,0.020978327840567]],[[0.036247480660677,-0.03199278190732,0.018164105713367],[-0.076238326728344,0.029087843373418,-0.023693114519119],[0.085984840989113,-0.12362933903933,0.1166422739625]]],[[[-0.04185027629137,-0.023508351296186,-0.047952029854059],[-0.010188298299909,-0.01336157694459,0.0096713332459331],[-0.021808343008161,-0.027659639716148,-0.0065001891925931]],[[-0.064363591372967,-0.020975327119231,0.053594991564751],[0.0074892481788993,0.01708303950727,-0.11288707703352],[-0.013053990900517,-0.043567802757025,0.014273534528911]],[[-0.040290802717209,-0.10048808157444,-0.085111893713474],[-0.039139069616795,0.041497029364109,-0.035584948956966],[-0.05239424481988,-0.065144866704941,-0.025696767494082]],[[0.012170509435236,-0.11281611770391,0.019687497988343],[-0.038184940814972,-0.01503646094352,-0.036911997944117],[-0.094023779034615,-0.069589532911777,-0.04063294455409]],[[-0.034954063594341,0.0075870780274272,-0.026999000459909],[-0.038576420396566,0.023341143503785,0.0058825653977692],[-0.011347059160471,0.018646828830242,0.022598432376981]],[[-0.0051237787120044,-0.06632599234581,0.014143710024655],[0.056509021669626,-0.0019571925513446,-0.014805326238275],[-0.068312421441078,0.057498916983604,0.016602534800768]],[[-0.013891930691898,-0.11483930051327,-0.04842833802104],[-0.13164435327053,-0.056229844689369,-0.019879730418324],[-0.066050074994564,-0.042272925376892,-0.080845594406128]],[[0.0028575877659023,0.044013310223818,-0.0066662416793406],[0.010027481243014,0.0042357230558991,0.027758505195379],[0.0027251737192273,0.0077460221946239,0.052180275321007]],[[0.066046856343746,0.033820286393166,-0.038729276508093],[-0.0028325654566288,0.082281209528446,0.010606930591166],[0.0025241959374398,-0.089519336819649,-0.025291323661804]],[[-0.042608723044395,0.00030116879497655,-0.026798229664564],[0.0033841191325337,-0.05455706268549,0.080989748239517],[-0.0026157691609114,-0.028351988643408,-0.062048673629761]],[[-0.15046060085297,0.029266938567162,-0.080871880054474],[0.11004567891359,0.043625336140394,-0.030610909685493],[-0.031579118221998,-0.047155119478703,0.094505853950977]],[[0.0077451723627746,-0.025766672566533,-0.017165528610349],[-0.039118845015764,-0.01784029789269,-0.0080601936206222],[-0.056907661259174,-0.070880308747292,-0.00045685135410167]],[[-0.064165852963924,-0.03784329816699,0.019167948514223],[0.090502753853798,0.016655473038554,-0.023912101984024],[0.048440705984831,-0.08968161046505,0.064323462545872]],[[-0.10475501418114,0.019511232152581,-0.063419833779335],[0.11135566234589,-0.11040203273296,0.059750888496637],[-0.051003117114305,0.037521816790104,-0.031803261488676]],[[0.023188283666968,-0.057144455611706,-0.0022358002606779],[-0.0036029210314155,-0.021706225350499,-0.039655316621065],[-0.059446029365063,0.053979266434908,0.055288717150688]],[[-0.09062385559082,-0.21732310950756,-0.083015434443951],[0.11574057489634,-0.070346243679523,-0.093197412788868],[-0.097222544252872,-0.0057115429081023,0.33340558409691]],[[-0.10021261870861,-0.0097936913371086,-0.044626135379076],[-0.031624749302864,0.029188863933086,-0.047893166542053],[0.042621444910765,0.0094815818592906,-0.03589628636837]],[[-0.058628357946873,0.11196308583021,-0.073865786194801],[0.054355777800083,-0.0088382232934237,-0.035182654857635],[-0.020153498277068,0.050397641956806,-0.057690653949976]],[[-0.073833920061588,-0.042456794530153,0.072462759912014],[0.030129555612803,0.0439278408885,0.05860123410821],[-0.0021347294095904,-0.19420751929283,0.063474304974079]],[[0.015144637785852,0.03988116979599,-0.020836468786001],[-0.037467535585165,0.00053805211791769,0.033526640385389],[-0.011568831279874,0.033359415829182,-0.045311976224184]],[[-0.0038884817622602,0.013130756095052,-0.062857367098331],[-0.0032339866738766,-0.020181827247143,0.014990461990237],[-0.034235920757055,0.0097439307719469,-0.04775957763195]],[[-0.036216925829649,-0.0011598793789744,-0.044598400592804],[0.0024686714168638,-0.047825075685978,0.053697161376476],[-0.044812850654125,0.0044041662476957,0.037223644554615]],[[0.015098255127668,-0.043024007230997,-0.036949243396521],[-0.00028545400709845,-0.046660147607327,0.043100476264954],[0.021655874326825,-0.015859242528677,-0.031981237232685]],[[0.058007802814245,0.0031829606741667,-0.0051681301556528],[-0.14374987781048,0.10329462587833,-0.1063996180892],[0.062434654682875,0.036623004823923,0.072245590388775]],[[-0.029341777786613,0.037982270121574,0.0034397644922137],[-0.090919710695744,-0.060016188770533,0.036053743213415],[0.043462496250868,-0.0067240609787405,0.01700366102159]],[[0.020558651536703,-0.036173649132252,-0.026711743324995],[0.066638082265854,0.043983887881041,-0.020310286432505],[-0.0089520942419767,0.0016230286564678,0.032156921923161]],[[-0.03992846980691,-0.10417900979519,-0.0050058532506227],[-0.044838655740023,0.013413483276963,0.019441466778517],[0.040537808090448,-0.0048956489190459,-0.068877257406712]],[[-0.037278443574905,0.016812494024634,-0.018089048564434],[0.0040724640712142,-0.025920942425728,0.02974321693182],[-0.039477992802858,-0.089395925402641,0.039046350866556]],[[-0.017137365415692,0.062710590660572,-0.040653854608536],[0.066633090376854,-0.058792363852262,0.00038324331399053],[-0.063711069524288,0.045041270554066,0.015448502264917]],[[-0.0046493876725435,-0.0011707501253113,-0.023672064766288],[-0.0023511915933341,-0.097515277564526,-0.066001169383526],[-0.0019268316682428,-0.038092147558928,-0.048197686672211]],[[0.040063347667456,-0.0079209860414267,0.026778470724821],[0.04103135317564,-0.052024841308594,0.013265813700855],[0.038476619869471,-0.032441396266222,-0.03291679546237]],[[-0.079032205045223,0.057001102715731,-0.062070801854134],[0.021245466545224,0.0099827954545617,-0.037972401827574],[-0.056694287806749,0.089870519936085,0.048151701688766]],[[-0.093105494976044,-0.0050983587279916,0.0034892002586275],[-0.027084838598967,0.032199401408434,-0.0090201431885362],[-0.045624677091837,-0.066735297441483,-0.01115320250392]],[[0.014128134585917,-0.11200691014528,-0.039193853735924],[0.078473918139935,0.0010269405320287,0.046238601207733],[-0.05933603271842,0.0045878477394581,-0.025471154600382]],[[0.041575644165277,-0.039121590554714,-0.020601330325007],[0.0079843448475003,-0.095252968370914,0.021050380542874],[0.0010930517455563,0.013822227716446,-0.014374585822225]],[[-0.077616423368454,0.099467821419239,-0.058326665312052],[0.029271297156811,-0.05498206615448,0.10279028117657],[0.01627529039979,0.056234039366245,0.054257955402136]],[[0.0042656818404794,-0.038976918905973,0.019730571657419],[-0.010133108124137,-0.0018720406806096,0.024561002850533],[0.042215816676617,0.017829431220889,-0.029099952429533]],[[-0.063734382390976,0.011537617072463,-0.020358100533485],[-0.020191488787532,-0.031212158501148,-0.090864814817905],[0.022651856765151,-0.10373345017433,-0.051718849688768]],[[-0.090858668088913,-0.0079560577869415,-0.067617617547512],[-0.0043650376610458,0.020074935629964,0.0022780459839851],[0.0078097023069859,0.039334859699011,-0.046015728265047]],[[-0.0021116898860782,0.10193761438131,-0.15222574770451],[-0.005577830132097,-0.11674202978611,0.052996944636106],[0.029302485287189,0.04327154904604,-0.0052862209267914]],[[-0.023711413145065,0.018702298402786,-0.021299542859197],[-0.15298718214035,-0.016534205526114,0.076730474829674],[-0.17190654575825,0.08610638231039,-0.041791681200266]],[[-0.0043014213442802,-0.1735580265522,0.040316674858332],[0.0058507542125881,0.092604823410511,0.083505213260651],[0.028606666252017,-0.028257250785828,0.018741140142083]],[[0.0040007908828557,-0.091350093483925,-0.0031529753468931],[-0.0032195961102843,0.032159954309464,0.030930366367102],[-0.025702783837914,-0.022452976554632,-0.03072614967823]],[[-0.026223380118608,-0.044621754437685,0.0023809147533029],[-0.0088048912584782,-0.003122947877273,0.014755035750568],[-0.061692889779806,-0.0071885604411364,-0.04291657730937]],[[0.056050904095173,-0.044982243329287,0.10002519190311],[-0.023810720071197,-0.02393813431263,-0.015563130378723],[-0.030597262084484,0.0040845503099263,0.038634937256575]],[[0.029201544821262,-0.078540690243244,-7.1247886808123e-06],[0.012840515933931,-0.050210744142532,-0.026783818379045],[-0.016695031896234,-0.017139207571745,-0.022598043084145]],[[-0.06324478238821,-0.012548772618175,-0.027977932244539],[0.013592679984868,0.012824709527194,0.080758050084114],[0.045637521892786,-0.040165692567825,0.062501303851604]],[[-0.050568036735058,-0.030865618959069,0.049993105232716],[-0.041503664106131,0.020292727276683,-0.039164934307337],[0.018246171995997,-0.027196662500501,0.0011672202963382]],[[-0.027869859710336,-0.00074604310793802,-0.021314945071936],[-0.073596403002739,0.089157417416573,-0.013385171070695],[-0.047774009406567,-0.0075179077684879,-0.072220511734486]],[[0.082121960818768,-0.090667828917503,-0.0007659558323212],[0.019627258181572,-0.016170857474208,-0.019328001886606],[0.00875732768327,0.034808054566383,0.0064098597504199]],[[-0.02967943996191,-0.086790718138218,0.00072119495598599],[-0.080019354820251,0.063114024698734,-0.05827821418643],[-0.13049006462097,0.049094751477242,0.060562573373318]],[[0.041934613138437,-0.030562594532967,0.21383656561375],[0.069053895771503,-0.053705185651779,0.027894597500563],[0.023823400959373,-0.018179088830948,0.083015024662018]],[[0.10211768746376,-0.092880256474018,-0.030046548694372],[-0.011493145488203,-0.01692383736372,0.018293511122465],[-0.14842317998409,0.0088397627696395,-0.032845757901669]],[[0.012565284967422,0.059125810861588,-0.038338009268045],[-0.0074828010983765,0.016863111406565,-0.030688755214214],[-0.030052915215492,0.02531698346138,-0.082752875983715]],[[0.024780832231045,0.030211362987757,-0.027769749984145],[0.0035429075360298,-0.080861315131187,-0.02540404163301],[-0.026885828003287,0.016376221552491,-0.040083233267069]],[[0.044061530381441,-0.067325264215469,0.048083186149597],[0.024205695837736,0.053495939821005,-0.061328820884228],[0.025746516883373,-0.03283242508769,0.007078577298671]],[[-0.0034265646245331,-0.067686304450035,0.030689666047692],[-0.0053175603970885,-0.054687470197678,0.029716150835156],[-0.041593141853809,-0.037806298583746,-0.033752378076315]],[[-0.018658168613911,0.020075615495443,-0.011807809583843],[-0.047017902135849,0.014103535562754,-0.11784878373146],[-0.023841442540288,-0.079477079212666,0.0064081693999469]],[[0.1275467723608,-0.081622034311295,0.069567494094372],[-0.029928496107459,0.0621741078794,-0.012712213210762],[-0.01411912124604,-0.058137401938438,0.005462602712214]],[[-0.031736753880978,-0.0056853047572076,0.059586945921183],[-0.0084680700674653,0.021369630470872,-0.091845914721489],[0.016614248976111,-0.03504928201437,0.062876619398594]],[[0.03168822452426,0.066818475723267,-0.04985548183322],[-0.013630242086947,-0.052385687828064,0.017326861619949],[0.0357865691185,-0.067519649863243,-0.079034715890884]],[[-0.011328868567944,0.0088840229436755,-0.039493974298239],[-0.00087537808576599,0.076394341886044,0.055896006524563],[-0.036393817514181,-0.037311173975468,-0.055379763245583]],[[0.031881384551525,-0.022751828655601,-0.020960444584489],[-0.037672024220228,-0.010615960694849,-0.020472202450037],[-0.0020971249323338,-0.07328499853611,-0.087240844964981]],[[0.015708666294813,-0.16387031972408,0.080785632133484],[-0.016804270446301,0.029387507587671,-0.011348894797266],[0.013602011837065,-0.010496025905013,-0.0044121616519988]]],[[[0.030191414058208,-0.022650936618447,-0.012479977682233],[-0.0080659268423915,-0.040641341358423,0.040101446211338],[-0.018458411097527,-0.050791718065739,0.058674909174442]],[[0.0034924990031868,-0.037130448967218,-0.043333057314157],[0.026551984250546,0.012365594506264,-0.054533712565899],[0.051940895617008,0.061443518847227,-0.018069049343467]],[[-0.020025324076414,0.019795101135969,-0.017444578930736],[0.045255467295647,-0.061398692429066,0.025123784318566],[0.043263286352158,0.016060518100858,0.043869331479073]],[[0.01304046344012,-0.05337094143033,-0.11490575969219],[0.0021870024502277,0.046934090554714,-0.018263064324856],[0.025195946916938,0.049856465309858,0.03870166093111]],[[0.026609240099788,-0.020772891119123,-0.011351403780282],[-0.012143699452281,0.042504698038101,0.02045414224267],[-0.021293334662914,-0.0092409206554294,-0.019716016948223]],[[0.056106261909008,-0.018354088068008,-0.0035646636970341],[0.067516542971134,-0.032382573932409,-0.027066748589277],[-0.03359155729413,-0.048651281744242,0.023297868669033]],[[0.013393739238381,0.015975663438439,0.060558527708054],[-0.13680128753185,-0.066554762423038,0.052489247173071],[-0.018020505085588,0.055783957242966,-0.00089801126159728]],[[-0.022665284574032,-0.024469280615449,-0.083763167262077],[0.001267469720915,-0.0051464359275997,0.0059869326651096],[0.060827318578959,0.02903325855732,0.05738116055727]],[[-0.00026683989563026,-0.0020674832630903,0.0046561793424189],[-0.042968284338713,-0.019544702023268,0.029138362035155],[-0.025427903980017,0.051034443080425,0.00097968417685479]],[[0.035159520804882,-0.022393157705665,0.026785135269165],[-0.01444626133889,-0.055114261806011,-0.0013332385569811],[0.018644554540515,0.0040317103266716,0.002781581832096]],[[-0.022071037441492,-0.016472542658448,0.055364940315485],[0.03292753174901,0.010267628356814,-0.0024532394018024],[-0.015932431444526,-0.013265358284116,-0.035662688314915]],[[-0.0079512791708112,0.042645130306482,0.0079973014071584],[-0.090680159628391,0.10154005885124,0.040496662259102],[-0.14956192672253,-0.0056924847885966,0.034470722079277]],[[-0.0039547942578793,-0.0080716488882899,0.017748434096575],[0.086637154221535,0.016448326408863,-0.0034736162051558],[-0.094757661223412,-0.0060746986418962,0.003254986833781]],[[0.033615563064814,-0.0059882765635848,-0.034939631819725],[0.074487425386906,-0.012277541682124,-0.0048633110709488],[0.0098118791356683,0.025890709832311,-0.068804420530796]],[[0.030511684715748,-0.012029438279569,-0.019196819514036],[-0.026525942608714,-0.037068527191877,-0.015440478920937],[0.014991762116551,0.0061300368979573,0.045431967824697]],[[-0.073033042252064,-0.036272972822189,0.029366079717875],[0.064142413437366,0.0035029172431678,0.01059743668884],[-0.0094421394169331,0.0052749183960259,-0.0091784410178661]],[[0.024153579026461,0.0080602103844285,0.013940772973001],[-0.042333129793406,-0.022452397271991,-0.048467323184013],[0.034489925950766,-0.0069376318715513,0.027722166851163]],[[-0.036948494613171,0.016553699970245,-0.0026409288402647],[-0.034740392118692,-0.0082685593515635,-0.0053090779110789],[-0.006324992980808,0.072374157607555,-0.0039329887367785]],[[0.00092283525737002,-0.00093832437414676,0.0061375950463116],[-0.04798349738121,0.020394330844283,-0.029841566458344],[0.0083888815715909,0.047050297260284,0.0015556253492832]],[[0.048369485884905,0.086468629539013,0.098197467625141],[0.020105829462409,0.029991371557117,0.033165622502565],[0.080884285271168,0.017012054100633,0.07808929681778]],[[0.02010908909142,0.035855766385794,-0.068021193146706],[0.010107674635947,0.13407625257969,-0.092242002487183],[0.016493627801538,0.062660746276379,-0.085937201976776]],[[0.094950899481773,-0.019014485180378,-0.067526362836361],[0.022389858961105,0.008840873837471,-0.059261590242386],[-0.019615098834038,0.014626791700721,0.03272382542491]],[[0.011252396740019,-0.0086787333711982,0.0059239873662591],[-0.0039501432329416,-0.0043449718505144,0.016835261136293],[-0.017215300351381,0.033391110599041,-0.033232029527426]],[[-0.051683835685253,0.07624214142561,-0.069990284740925],[0.0095852231606841,-0.012290133163333,-0.062811084091663],[0.054272033274174,0.04775470495224,-0.050830390304327]],[[-0.052605655044317,0.0070122452452779,-0.040797397494316],[-0.028561679646373,0.04895643889904,0.012781837955117],[0.02762228064239,0.03249691799283,-0.016097687184811]],[[-0.020414281636477,-0.025977520272136,0.04139881581068],[0.025109777227044,-0.012292268685997,-0.054943688213825],[0.010730086825788,0.035554889589548,0.015964919701219]],[[-0.012930841185153,0.072124987840652,-0.058211591094732],[-0.052067648619413,-0.012384145520627,0.048675425350666],[-0.079115577042103,0.040549915283918,0.041758898645639]],[[0.050596956163645,-0.0083156479522586,0.0018365044379607],[-0.024252872914076,-0.029134953394532,0.036119218915701],[0.0056711230427027,-0.02552780136466,0.022688830271363]],[[-0.018834920600057,-0.019478069618344,0.044647019356489],[-0.0093855410814285,-0.009024572558701,0.010826314799488],[-0.0076142004691064,-0.04083538427949,0.051977690309286]],[[-0.049224480986595,-0.13254122436047,-0.021517841145396],[-0.048020552843809,0.016503328457475,0.067083574831486],[0.02010060288012,0.073420159518719,0.070406682789326]],[[-0.023275388404727,-0.015871625393629,-0.0086053078994155],[-0.02338607236743,-0.041678484529257,0.048383619636297],[-0.0011059517273679,0.019390698522329,0.050549849867821]],[[0.030832037329674,-0.017079161480069,-0.0087341144680977],[0.029070436954498,-0.028887467458844,0.0040245032869279],[0.025392910465598,-0.022810637950897,-0.016024135053158]],[[0.02295551635325,0.0041219387203455,0.019453510642052],[-0.04106979072094,0.022580977529287,-0.0071980156935751],[0.0042188614606857,-0.020143773406744,0.021207321435213]],[[0.0092140985652804,0.0070333280600607,0.031929664313793],[0.066622361540794,0.10341236740351,-0.075633361935616],[-0.005912278778851,-0.084210515022278,-0.054119419306517]],[[0.097407922148705,0.086879462003708,0.014850846491754],[-0.058490917086601,0.082474686205387,0.034125179052353],[-0.12011084705591,-0.094536125659943,-0.039338394999504]],[[-0.045545369386673,-0.010058671236038,-0.0068998602218926],[0.045396588742733,-0.0072438004426658,0.025218887254596],[0.0058061187155545,-0.045903217047453,0.0503014549613]],[[-0.015398618765175,-0.024579126387835,0.01770831272006],[0.021321669220924,-0.006064179353416,0.043203957378864],[-0.028624093160033,-0.0042639304883778,-0.020079020410776]],[[0.033459339290857,0.0033188813831657,-0.031327869743109],[-0.0035684476606548,0.03354762122035,-0.032420203089714],[-0.040555149316788,0.037951495498419,0.021930165588856]],[[-0.045862387865782,0.024911560118198,0.0047853728756309],[-0.020088663324714,0.010617317631841,-0.010002111084759],[0.017503486946225,-0.013650620356202,0.026413461193442]],[[0.045445431023836,-0.078427404165268,-0.081586509943008],[0.1067353412509,-0.036003634333611,0.0099990321323276],[0.044035196304321,-0.014186049811542,-0.0076294648461044]],[[0.055962320417166,0.069463506340981,0.054220121353865],[-0.059423718601465,-0.033674098551273,-0.067707121372223],[0.0018757130019367,-0.062679886817932,0.013562561944127]],[[0.017800947651267,0.0080009400844574,0.00062027334934101],[0.0078704860061407,0.0076903533190489,0.008469239808619],[0.0029254120308906,-0.0095359934493899,-0.042115457355976]],[[0.0065207197330892,-0.0051235109567642,-0.024505030363798],[0.012660265900195,0.035925857722759,0.043176118284464],[-0.011376680806279,-0.013743136078119,-0.048455435782671]],[[-0.021659035235643,0.013051569461823,0.028589656576514],[0.024294000118971,-0.0047630951739848,-0.044793527573347],[0.013361579738557,-0.026465961709619,0.039920084178448]],[[-0.017119023948908,-0.012726068496704,-0.0096453279256821],[0.01885899528861,-0.0039818878285587,0.023102644830942],[0.0030333094764501,0.0021535251289606,-0.013801387511194]],[[0.067614585161209,0.0090675093233585,0.047415446490049],[-0.047773290425539,-0.069734133780003,-0.042106442153454],[0.011791439726949,-0.024722333997488,0.03034813515842]],[[-1.7785628187994e-06,0.032609935849905,0.0017531715566292],[-0.0054019195958972,-0.036361310631037,-0.014170091599226],[-0.013892152346671,0.048773158341646,-0.011513522826135]],[[-0.029932554811239,0.00029210807406344,0.047417361289263],[0.01151436381042,-0.040896385908127,-0.062922649085522],[0.048688374459743,0.024968108162284,-0.0048343101516366]],[[-0.017261674627662,-0.018642760813236,0.0071121440269053],[-0.04571471363306,0.024819331243634,0.026610266417265],[-0.0026109660975635,0.012780764140189,0.018863745033741]],[[0.0035951286554337,-0.031969215720892,-0.010576418600976],[0.015057703480124,0.042575385421515,0.004255794454366],[-0.043222088366747,-0.040912091732025,0.032944105565548]],[[0.025076122954488,-0.021236239001155,0.054297547787428],[-0.012836817651987,-0.030486397445202,-0.025351403281093],[0.016214214265347,0.0095815723761916,0.0067526153288782]],[[0.034407258033752,-0.023767137899995,-0.0057467184960842],[0.0009631997672841,-0.077888794243336,-0.024305641651154],[0.092567123472691,0.0015929862856865,-0.007966929115355]],[[-0.067247003316879,0.062161486595869,0.01201930642128],[-0.036756053566933,-0.02748541533947,0.017247369512916],[0.033359371125698,0.02385026589036,-0.0061267367564142]],[[0.051005434244871,-0.0025766419712454,0.0007262610597536],[-0.030104355886579,-0.050510477274656,0.019446678459644],[0.016749696806073,0.017376834526658,-0.021632695570588]],[[0.0019061904167756,-0.009577477350831,-0.0015802251873538],[0.038347221910954,-0.015191811136901,0.033176399767399],[-0.024855654686689,-0.0073212501592934,0.0050263949669898]],[[0.0258095767349,0.009377027861774,-0.04750095307827],[-0.06559993326664,0.070409275591373,0.024520114064217],[-0.015260895714164,0.034551467746496,0.0068741380237043]],[[0.022895207628608,-0.02800958044827,0.024764636531472],[-0.0079651521518826,-0.003932146821171,0.023580918088555],[-0.002776674227789,-0.032442312687635,0.0046614869497716]],[[-0.010289487428963,0.0044835223816335,0.036819610744715],[0.048677586019039,0.082340352237225,-0.0088479425758123],[0.013864264823496,0.0036831598263234,-0.13715690374374]],[[-0.051576722413301,0.04774035140872,0.017128624022007],[-0.020626550540328,0.019222898408771,0.0024038872215897],[-0.03757007047534,0.024471575394273,-0.016544830054045]],[[-0.11478931456804,-0.12539546191692,-0.069513164460659],[-0.024008255451918,-0.13596086204052,-0.096985779702663],[-0.11551444232464,-0.16265711188316,-0.10289397835732]],[[0.035233691334724,0.031602244824171,-0.031676605343819],[0.015402099117637,0.0020947160664946,-0.0088583705946803],[-0.025595884770155,-0.013292321935296,-0.011160694994032]],[[0.0023537054657936,-0.0069989613257349,0.01390412542969],[-0.0035551132168621,-0.081227019429207,0.040089048445225],[0.00090858218027279,-0.010683960281312,0.040890354663134]],[[0.022843578830361,-0.017240196466446,0.01993147097528],[-0.010778189636767,-6.5343177993782e-05,0.0043219290673733],[0.0048766313120723,-0.010438589379191,0.014218798838556]],[[0.0056880852207541,0.010587188415229,-0.019566856324673],[0.0041624079458416,-0.034892596304417,0.0084900837391615],[0.0046827727928758,-0.00044552306644619,0.040684062987566]]],[[[0.071600183844566,-0.038807801902294,-0.20938558876514],[-0.02186599932611,-0.027997015044093,-0.15783546864986],[0.055007580667734,0.057794969528913,-0.038442555814981]],[[0.027268363162875,-0.048801951110363,0.11988860368729],[0.14482237398624,-0.1050054654479,0.1704139560461],[-0.0055290800519288,-0.08452383428812,-0.0070769651792943]],[[0.024946108460426,0.0025961510837078,0.01278935931623],[-0.0094576571136713,-0.0023171792272478,-0.040696337819099],[-0.0012536240974441,-0.054981227964163,-0.050154764205217]],[[0.057650301605463,-0.032132059335709,-0.020558698102832],[0.060699440538883,-0.068461827933788,-0.042349893599749],[0.025990329682827,-0.035180456936359,-0.037647876888514]],[[0.041885193437338,0.11609220504761,0.044394090771675],[-0.19579850137234,-0.0031312645878643,0.006015625782311],[-0.013591324910522,0.035294536501169,0.055868875235319]],[[-0.043075334280729,0.060412727296352,-0.033545892685652],[-0.057332597672939,-0.1025221273303,-0.00012925096962135],[-0.011086707934737,0.06764318048954,-0.027057841420174]],[[-0.0088378125801682,-0.061964519321918,-0.030916294082999],[-0.020435931161046,-0.078851707279682,0.023718057200313],[-0.0532589815557,-0.056324109435081,0.036831352859735]],[[0.020182017236948,-0.054155107587576,0.014935730956495],[0.07312048971653,-0.011971168220043,0.027675054967403],[0.0032612085342407,0.099573872983456,-0.070287473499775]],[[0.010819599963725,-0.022963132709265,-0.076857008039951],[0.019739810377359,-0.044822815805674,0.060907609760761],[0.010454236529768,0.016973519697785,0.0033873477950692]],[[-0.11877734214067,-0.016716811805964,0.068152189254761],[-0.015904692932963,0.095510601997375,0.020286755636334],[0.034551609307528,-0.035605330020189,-0.10313954949379]],[[0.090193420648575,-0.038941144943237,0.030103636905551],[0.097513094544411,0.055894669145346,0.047312740236521],[-0.077214896678925,-0.0036432556807995,-0.085878409445286]],[[-0.23987822234631,-0.0037612293381244,0.014578233473003],[-0.33690184354782,0.013992981053889,0.035478603094816],[-0.036470610648394,-0.016679434105754,-0.083116419613361]],[[-0.014567572623491,-0.057456448674202,-0.084413312375546],[0.028037637472153,0.012922145426273,0.0033948493655771],[-0.05792449042201,-0.061532761901617,-0.17682856321335]],[[0.010454285889864,0.011680630035698,0.022609919309616],[-0.010463231243193,0.043260429054499,0.048650767654181],[-0.093779444694519,-0.022011563181877,0.030292008072138]],[[0.073249615728855,-0.013950165361166,-0.016020465642214],[-0.007654694840312,-0.058608651161194,0.0097073428332806],[-0.027239769697189,0.027687355875969,-0.037032950669527]],[[-0.056881975382566,-0.0086754327639937,-0.022416168823838],[-0.027361940592527,0.05401274934411,0.014979138970375],[-0.010131374001503,-0.064103946089745,-0.059842236340046]],[[-0.056103106588125,0.050903543829918,0.024022065103054],[0.0059033017605543,-0.077116049826145,-0.007205240894109],[0.12401363998652,-0.022218881174922,0.040474560111761]],[[-0.10814533382654,0.034418847411871,0.00049172848230228],[-0.10836412012577,-0.0065119112841785,-0.0476960465312],[0.0050585488788784,-0.014714612625539,-0.10338091850281]],[[-0.05127015337348,-0.0059428159147501,-0.044209770858288],[-0.037414576858282,0.041101172566414,-0.0080638071522117],[-0.001660359557718,0.013702796772122,-0.00349315488711]],[[0.0096499398350716,0.024140371009707,0.0035180351696908],[0.0109683861956,0.0010712186340243,-0.031427040696144],[-0.0096412329003215,-0.012602395378053,0.0054832184687257]],[[0.00062461767811328,0.0110595934093,-0.027468340471387],[-0.11081060022116,0.019339825958014,0.057894937694073],[0.0029061280656606,-0.084453210234642,-0.0065507809631526]],[[0.089088059961796,0.10710510611534,-0.052454322576523],[0.039988946169615,0.0040628793649375,-0.0048944922164083],[-0.01573233678937,-0.097140409052372,-0.017476171255112]],[[0.0024923740420491,0.012903707101941,-0.015995545312762],[-0.13036347925663,-0.058108493685722,0.016324019059539],[-0.12542703747749,-0.0098640443757176,-0.03004358522594]],[[0.21986554563046,0.076926939189434,-0.0086454339325428],[0.14736379683018,0.10132604837418,0.023419016972184],[0.01932486705482,-0.011347966268659,0.16346542537212]],[[0.0035319372545928,0.07668961584568,0.002789095742628],[-0.056473053991795,0.031916134059429,-0.040524560958147],[-0.13762475550175,0.0048247771337628,0.0082046119496226]],[[0.024691378697753,0.058519933372736,0.060102477669716],[0.043218214064837,0.07323981821537,0.042373325675726],[-0.024642907083035,0.021798584610224,0.0064376876689494]],[[0.096440084278584,0.06898820400238,-0.01694299839437],[-0.084821335971355,-0.025938635692,-0.020546618849039],[0.071769073605537,0.057166028767824,-0.06480897217989]],[[0.015984512865543,0.007470655720681,-0.044283617287874],[-0.089474000036716,-0.0026937865186483,-0.02147857658565],[0.043198466300964,-0.0088089583441615,0.022365190088749]],[[-0.087208189070225,0.0082612866535783,0.038962699472904],[0.13253585994244,-0.053909972310066,-0.0041305478662252],[0.023796277120709,0.05687902495265,-0.048619899898767]],[[-0.073884680867195,-0.12760779261589,-0.049534298479557],[-0.13732899725437,-0.14445997774601,-0.26984080672264],[-0.035606320947409,0.030210053548217,0.032295383512974]],[[0.080794438719749,-0.04980755597353,-0.051622554659843],[-0.044866438955069,0.014050170779228,-0.0053640473634005],[-0.04305949062109,-0.14822292327881,0.032764598727226]],[[-0.0038221685681492,0.041846942156553,-0.013690725900233],[-0.11913494765759,-0.037663832306862,-0.023141887038946],[-0.022257246077061,-0.06951817125082,0.030309218913317]],[[-0.024883262813091,-0.064500167965889,0.025928761810064],[-0.02824948169291,-0.039313293993473,-0.022051956504583],[0.019377950578928,0.0040704356506467,0.0074445535428822]],[[0.019955208525062,-0.077175721526146,0.078689724206924],[0.018345788121223,0.12725237011909,-0.011191581375897],[0.014679364860058,0.12695860862732,-0.13129788637161]],[[0.13441428542137,0.053149480372667,-0.071504600346088],[-0.014363182708621,0.078418672084808,-0.066923037171364],[0.014861155301332,0.062065951526165,0.12218602001667]],[[-0.10194582492113,-0.0031576773617417,0.038093440234661],[-0.038374725729227,-0.062111426144838,0.0098112868145108],[0.043231073766947,0.019507484510541,-0.011000235565007]],[[-0.010537995956838,0.030874259769917,0.014343870803714],[0.060232304036617,-0.02189264446497,-0.038308169692755],[-0.0060584521852434,-0.022160783410072,-0.063211813569069]],[[0.12549974024296,0.0023608449846506,0.14838971197605],[0.040281429886818,-0.0089173223823309,0.016995366662741],[-0.056783806532621,-0.022866183891892,-0.07523250579834]],[[0.14971245825291,-0.067812204360962,-0.040271021425724],[-0.011478064581752,0.095379568636417,0.050950087606907],[-0.031377337872982,-0.057202272117138,-0.036018203943968]],[[0.085809580981731,0.089539803564548,0.022643711417913],[-0.045136474072933,0.020949095487595,-0.097009606659412],[0.0053872456774116,0.05769994109869,0.018738837912679]],[[0.026191985234618,-0.022082572802901,-0.038408435881138],[-0.070056900382042,0.019737536087632,0.029326301068068],[-0.012504030950367,-0.016502637416124,-0.098504953086376]],[[0.13406032323837,0.0061319610103965,0.028290119022131],[0.022711245343089,-0.045857258141041,-0.054714750498533],[-0.0027508896309882,-0.0021153998095542,-0.0015969958622009]],[[-0.12761321663857,-0.10471320152283,0.042600926011801],[0.050357889384031,-0.10164903849363,-0.091902330517769],[-0.055593926459551,-0.10221030563116,-0.028109399601817]],[[0.003907697275281,-0.060242082923651,-0.059979360550642],[0.040418956428766,-0.0021298076026142,0.024628238752484],[-0.0013773336540908,0.016969939693809,0.089525438845158]],[[-0.11386112123728,-0.023297848179936,-0.0050352667458355],[0.029916785657406,-0.077290125191212,-0.064003646373749],[-0.014872256666422,0.086876682937145,-0.08547531068325]],[[-0.072470560669899,-0.0031007174402475,-0.0040979846380651],[-0.100536249578,-0.010825667530298,-0.034077689051628],[-0.013192773796618,-0.042403522878885,-0.09555085003376]],[[0.047043390572071,-0.039391253143549,0.044215496629477],[0.026639452204108,-0.0041588535532355,0.010302675887942],[0.014926785603166,-0.0083464961498976,-0.069415122270584]],[[-0.078464537858963,-0.0045241774059832,0.00063040654640645],[-0.02104402706027,-0.0051868776790798,0.031408656388521],[-0.0085050715133548,0.0082562789320946,0.083900608122349]],[[0.0042355176992714,0.071841545403004,-0.015202335081995],[-0.043467786163092,0.099708467721939,-0.041673209518194],[0.047481529414654,0.010796397924423,-0.12047050893307]],[[-0.026582155376673,-0.017835201695561,0.091495282948017],[0.051480878144503,-0.021384553983808,-0.10827185958624],[0.072858400642872,0.049057625234127,-0.020952811464667]],[[0.0053386348299682,-0.039586961269379,0.012741171754897],[-0.098876774311066,0.049570608884096,0.035840142518282],[-0.048260636627674,-0.0061465203762054,0.071213684976101]],[[0.084630705416203,0.022192070260644,-0.02335562184453],[0.04874986037612,0.033916011452675,-0.038018256425858],[0.049858726561069,-0.057200934737921,-0.089334174990654]],[[-0.070191435515881,0.04670849069953,-0.037275642156601],[0.0011962613789365,0.0080830194056034,0.095062717795372],[0.061381425708532,-0.015450106933713,0.042066354304552]],[[-0.03962442651391,0.11758547276258,0.033709451556206],[-0.11687214672565,-8.7855572928675e-05,-0.04755986109376],[-0.024940844625235,-0.022562561556697,-0.026267010718584]],[[-0.042007096111774,-0.048680488020182,-0.03143548220396],[0.016990443691611,0.07731269299984,-0.045346934348345],[-0.043534304946661,-0.032308518886566,-0.072885416448116]],[[0.00080775655806065,0.013932484202087,0.0078303348273039],[-0.068056009709835,0.00064158265013248,-0.0038222032599151],[-0.06579614430666,-0.0083642108365893,-0.049489218741655]],[[0.019203368574381,0.014384483918548,-0.063830003142357],[-0.027826840057969,0.011177781969309,-0.08749807626009],[-0.10068688541651,-0.042931038886309,-0.10496342182159]],[[0.00018332246690989,-0.044689249247313,-0.06785986572504],[0.01491489354521,0.026240203529596,-0.034550204873085],[0.033007495105267,0.010895815677941,0.040173102170229]],[[0.10551571846008,-0.0088923620060086,-0.028433378785849],[0.04642828181386,-0.00016217894153669,-0.070556335151196],[0.050223968923092,-0.0033707295078784,-0.019967384636402]],[[-0.027007872238755,-0.057633895426989,0.025536220520735],[-0.055906288325787,-0.0029748028609902,0.057611513882875],[0.023950602859259,0.025140410289168,0.030467530712485]],[[0.074769131839275,-0.033265810459852,0.013719997368753],[-0.044970396906137,0.027662931010127,-0.05212302133441],[0.016680819913745,-0.026535108685493,0.018542321398854]],[[-0.050688356161118,-0.07091485708952,-0.00053423945792019],[-0.05185055360198,-0.050501458346844,-0.055613465607166],[0.010904052294791,0.088577300310135,0.023950232192874]],[[-0.0011233389377594,-0.0030451910570264,-0.028307171538472],[-0.085826322436333,0.025331055745482,0.030272772535682],[0.00068715552333742,-0.017258651554585,-0.038255285471678]],[[-0.088074654340744,-0.070031620562077,-0.012555348686874],[-0.011989393271506,0.0044665117748082,-0.0022828583605587],[-0.0097089717164636,0.068376496434212,0.018319599330425]]],[[[-0.018083997070789,0.028710974380374,0.049210447818041],[-0.081732116639614,-0.022114612162113,-0.082368820905685],[0.10995753854513,0.021669421344995,0.070326842367649]],[[-0.074906527996063,-0.077209554612637,0.014432997442782],[0.020198699086905,-0.055443201214075,-0.074114307761192],[-0.15328405797482,0.021079193800688,-0.074506916105747]],[[-0.067409314215183,-0.061673447489738,-0.044068358838558],[-0.1259687691927,-0.077434554696083,-0.043396979570389],[-0.082339875400066,-0.12038218975067,-0.088288173079491]],[[-0.002030449686572,-0.19089506566525,-0.074756279587746],[-0.053748797625303,-0.021525701507926,-0.10058825463057],[-0.058144945651293,-0.017878018319607,-0.12274096906185]],[[0.018117548897862,-0.034505277872086,0.044954273849726],[-0.12454897910357,-0.0061882375739515,-0.02260753698647],[-0.053588513284922,-0.040347516536713,-0.0008465587743558]],[[-0.080382913351059,-0.0018482230370864,-0.070786684751511],[-0.013705555349588,-0.17469997704029,0.069053560495377],[-0.070898175239563,-0.087191559374332,0.036478858441114]],[[-0.001211684779264,-0.13027822971344,-0.09003109484911],[-0.11916160583496,-0.0068375249393284,-0.073638945817947],[0.036507584154606,-0.059558842331171,-0.037700697779655]],[[0.0058745741844177,0.069354645907879,-0.042380914092064],[-0.018788807094097,-0.087064757943153,0.054516866803169],[-0.13889047503471,0.027979297563434,-0.03673031181097]],[[0.019601721316576,0.021441580727696,-0.002848549047485],[-0.055772244930267,-0.022810716181993,-0.073750555515289],[0.084424719214439,-0.010181088000536,0.079564869403839]],[[-0.056914400309324,-0.071081750094891,-0.037856940180063],[0.030622916296124,-0.029432117938995,0.0067669772543013],[0.011346124112606,-0.097770243883133,0.033844973891973]],[[-0.13544610142708,0.065340846776962,-0.13136360049248],[0.044133435934782,-0.079919762909412,0.012534514069557],[-0.028120582923293,-0.033496916294098,-0.063094168901443]],[[-0.083059951663017,-0.026584055274725,-0.14325442910194],[-0.028185036033392,-0.13496868312359,0.032675307244062],[-0.16026410460472,0.033737253397703,-0.038191981613636]],[[-0.035213202238083,0.040777646005154,-0.01383039727807],[-0.046288657933474,0.0066079744137824,0.0098497793078423],[-0.042473074048758,-0.0099655343219638,0.0091289300471544]],[[-0.20524749159813,0.045226577669382,-0.13307724893093],[0.043117545545101,-0.10274205356836,0.054152902215719],[-0.14085267484188,0.09156297147274,-0.13398978114128]],[[-0.11491297930479,-0.027487065643072,-0.049586914479733],[-0.18656179308891,-0.028646066784859,0.00020820125064347],[-0.13301411271095,0.049657128751278,-0.057576607912779]],[[0.061348851770163,0.033929292112589,-0.075772099196911],[-0.093950711190701,-0.01471153460443,0.096848465502262],[0.053037315607071,0.069124132394791,-0.14042456448078]],[[-0.056454785168171,-0.093913942575455,-0.059073228389025],[0.011347703635693,0.10396676510572,-0.076409466564655],[0.050036236643791,-0.036880861967802,0.00086710613686591]],[[0.03403702750802,-0.029320752248168,-0.047095499932766],[-0.077710412442684,0.00286181923002,-0.12714478373528],[0.097381427884102,-0.047850158065557,-0.06719334423542]],[[0.019018771126866,0.0093791708350182,-0.087933175265789],[0.03899858891964,-0.047632336616516,0.026853866875172],[-0.020714091137052,0.13258929550648,-0.090084254741669]],[[-0.045092578977346,0.021343467757106,0.01732356660068],[0.015332030132413,-0.00053061975631863,-0.021892873570323],[-0.044748533517122,0.024691671133041,0.033475108444691]],[[-0.084847159683704,0.026657249778509,-0.21264714002609],[0.066126435995102,-0.14804121851921,0.029862944036722],[-0.10341139137745,-0.043239273130894,-0.10627225786448]],[[-0.0071220542304218,-0.024061055853963,0.064554482698441],[0.0092078978195786,-0.077478937804699,0.073485963046551],[0.028306843712926,0.0068049221299589,-0.058839615434408]],[[0.017759349197149,0.039377748966217,-0.06710521876812],[0.048332676291466,0.0047547216527164,-0.0084797795861959],[0.04523166641593,-0.048234220594168,-0.040354520082474]],[[0.16559128463268,-0.085223093628883,0.17974072694778],[-0.096258826553822,-0.06981498003006,-0.023844761773944],[0.16940495371819,-0.039718560874462,0.17918889224529]],[[-0.01122768688947,-0.016842920333147,0.017459321767092],[0.015645699575543,0.058986365795135,0.08750656992197],[-0.013734824024141,0.064626313745975,0.031294450163841]],[[0.0087910508736968,0.035605978220701,0.0073049985803664],[0.0060300142504275,0.019201941788197,-0.030757309868932],[0.039083149284124,0.00036419075331651,0.0077140689827502]],[[-0.032208099961281,-0.026652202010155,-0.056270726025105],[-0.023957137018442,-0.0078075877390802,0.020872125402093],[-0.03127108886838,0.015321700833738,-0.052984975278378]],[[0.0069061224348843,-0.047655764967203,-0.048649519681931],[-0.0069935349747539,-0.012315843254328,0.017417361959815],[-0.0013012808049098,0.022650700062513,0.043129213154316]],[[-0.013374251313508,0.096315503120422,-0.11010619997978],[-0.039749171584845,-0.0563546679914,0.02091109380126],[0.017880320549011,0.012217913754284,-0.020104793831706]],[[-0.12609219551086,-0.0081864120438695,0.025848664343357],[0.0015522381290793,-0.050564799457788,-0.045327927917242],[-0.051362402737141,-0.011753863655031,0.047113854438066]],[[0.020201539620757,0.0026525910943747,-0.01792598888278],[-0.0046547786332667,0.010042393580079,-0.011782697401941],[0.052514608949423,0.0048729735426605,0.023697949945927]],[[-0.061819642782211,-0.025974979624152,-0.0048153018578887],[-0.037499766796827,0.067986652255058,-0.033975105732679],[-0.0059272702783346,0.023848215118051,-0.056885380297899]],[[-0.090637803077698,0.01485650613904,-0.062431983649731],[-0.0059289555065334,0.047325748950243,-0.032751780003309],[0.052791848778725,-0.088520191609859,0.0075797191821039]],[[-0.17090111970901,0.13063648343086,-0.16078193485737],[0.10844473540783,-0.080083839595318,-0.077660262584686],[-0.061476413160563,-0.059336647391319,0.030800057575107]],[[-0.00052848266204819,-0.04795628413558,-0.018675826489925],[-0.017503445968032,0.097344182431698,-0.029238695278764],[0.039113856852055,-0.13722264766693,0.0081321289762855]],[[-0.064852952957153,-0.026082824915648,-0.0019537403713912],[-0.011842118576169,-0.044973589479923,-0.015860455110669],[-0.012428252026439,-0.048681858927011,0.015264876186848]],[[0.046903286129236,-0.0091110980138183,-0.023383621126413],[-0.039646979421377,-0.042109951376915,-0.08600141108036],[0.01345288567245,-0.069489739835262,0.036163549870253]],[[-0.065493546426296,-0.033306904137135,-0.034640725702047],[0.036753240972757,-0.038329467177391,-0.012093590572476],[-0.052419297397137,-0.016294354572892,-0.066144421696663]],[[-0.11249474436045,-0.0079033402726054,-0.06308901309967],[-0.0082089575007558,-0.035205826163292,-8.4249426436145e-05],[-0.096772879362106,0.07387113571167,-0.035428743809462]],[[0.036568365991116,-0.16287782788277,0.041617799550295],[-0.1917220801115,-0.03607114776969,-0.1821893453598],[0.1317540705204,-0.19401814043522,-0.0044494597241282]],[[-0.15869569778442,-0.014821017161012,-0.17939892411232],[0.0048180040903389,-0.15579085052013,-0.01701445132494],[-0.28147658705711,0.097615219652653,-0.27425953745842]],[[0.088956482708454,-0.03040517680347,-0.049747284501791],[-0.0092354901134968,0.025781124830246,-0.057119179517031],[-0.068927273154259,-0.024470388889313,-0.0033453281503171]],[[-0.076317943632603,0.0192198920995,-0.092866040766239],[0.022590668871999,-0.0090096220374107,-0.017895381897688],[-0.12470345944166,-0.033369328826666,-0.15298922359943]],[[-0.015355586074293,-0.039991058409214,0.099292397499084],[0.018801474943757,-0.059843253344297,-0.0099288998171687],[-0.049645639955997,0.063127741217613,0.02160338126123]],[[-0.010062828660011,-0.062390722334385,0.038975819945335],[0.0026663921307772,-0.057832192629576,0.026286905631423],[-0.083214357495308,-0.038401633501053,0.0288818012923]],[[-0.10343775898218,-0.086213648319244,-0.060013514012098],[0.10308095067739,0.0078132124617696,-0.038502056151628],[0.054230377078056,-0.058525823056698,0.033487480133772]],[[-0.12586209177971,0.046417251229286,-0.078963100910187],[-0.099302388727665,0.020353684201837,0.096643880009651],[-0.028912039473653,0.0079033197835088,0.049262147396803]],[[-0.055791139602661,0.013176624663174,-0.048999935388565],[0.07385415583849,-0.11005303263664,-0.084895975887775],[-0.0079583926126361,0.066423512995243,-0.077537544071674]],[[-0.05962136015296,-0.069133184850216,0.043229933828115],[-0.0044403746724129,0.062513753771782,-0.061268098652363],[-0.010690536350012,-0.041774116456509,-0.040556520223618]],[[0.019579645246267,-0.094405792653561,-0.01858907006681],[0.010592818260193,-0.035160671919584,0.061366729438305],[-0.12055087089539,0.011390407569706,-0.07725028693676]],[[0.017913829535246,-0.059566855430603,0.033824946731329],[0.032916713505983,0.0028957456815988,-0.04282620921731],[-0.06709797680378,0.10448506474495,-0.064271718263626]],[[0.034725684672594,0.01845964603126,0.096053652465343],[0.033354088664055,-0.023929849267006,-0.022393759340048],[0.036926385015249,-0.015790954232216,0.029474208131433]],[[0.040864992886782,-0.10905532538891,0.0073250299319625],[-0.050773739814758,0.032773543149233,-0.123131506145],[-0.034321743994951,-0.088036768138409,-0.089580222964287]],[[0.0060491929762065,0.005470069590956,0.039877913892269],[-0.041468534618616,0.0099107241258025,-0.042329285293818],[-0.040751770138741,-0.049906928092241,-0.057379465550184]],[[0.029796771705151,-0.028823109343648,0.0038650520145893],[-0.028078906238079,-0.025558402761817,-0.025078482925892],[0.0088324155658484,-0.11781162023544,0.047243170440197]],[[0.078716166317463,0.002914386568591,-0.016581244766712],[0.0096955876797438,0.011123647913337,-0.027892513200641],[0.00096038461197168,-0.039957944303751,0.070103526115417]],[[0.038152609020472,-0.13342601060867,0.030938223004341],[-0.044225949794054,-0.026808140799403,-0.12146811187267],[-0.013643286190927,-0.065590053796768,-0.065077193081379]],[[-0.0024750609882176,-0.033418167382479,-0.099786885082722],[-0.066246747970581,-0.095040403306484,-0.019741386175156],[-0.1185694038868,-0.014241957105696,-0.18838749825954]],[[0.10475467145443,-0.14581860601902,0.12104226648808],[-0.1260017156601,0.077732592821121,-0.22985383868217],[0.14465171098709,-0.20929770171642,0.051919616758823]],[[0.046210620552301,-0.044987760484219,0.041862364858389],[-0.02916345000267,0.038760550320148,-0.043492123484612],[0.02360282279551,-0.00013519197818823,-0.047201797366142]],[[-0.10529684275389,-0.01574682444334,-0.066365823149681],[-0.0003731444303412,-0.064512461423874,-0.074303776025772],[-0.12419656664133,0.010827952995896,-0.083996042609215]],[[-0.081693075597286,-0.033269472420216,-0.021354544907808],[0.010219072923064,0.029657129198313,-0.12723432481289],[-0.04999690502882,-0.053324420005083,-0.010503649711609]],[[-0.1419921964407,-0.045610222965479,0.030937673524022],[0.090721882879734,0.0012282700045034,-0.059064701199532],[0.034628361463547,-0.0081652021035552,-0.01289956830442]],[[0.035784065723419,0.031355950981379,-0.0013249850599095],[-0.10486361384392,0.028338922187686,-0.033200640231371],[0.0001781547034625,0.011955928057432,0.060067489743233]]],[[[-0.16214725375175,0.061625234782696,0.17613163590431],[-0.029835142195225,-0.01634088344872,-0.088069826364517],[0.11155499517918,-0.15535508096218,0.1061904206872]],[[0.051062691956758,0.054704658687115,-0.063185252249241],[-0.11291778832674,0.0045220493339002,-0.092191331088543],[-0.066243998706341,0.04393907636404,-0.052634999155998]],[[-0.0040911445394158,0.0043166843242943,0.0046924883499742],[-0.01358771789819,-0.08483848720789,-0.061032749712467],[0.050734493881464,-0.072388425469398,0.032462313771248]],[[0.011601624079049,-0.050918087363243,-0.022672729566693],[0.08301168680191,-0.08513966947794,-0.044785350561142],[-0.047917705029249,-0.032827995717525,0.00014319784531835]],[[-0.078957967460155,-0.0062812711112201,0.038048669695854],[0.020885379984975,0.059015072882175,0.020988510921597],[0.025615993887186,-0.011243222281337,0.019528297707438]],[[0.019913986325264,0.084980189800262,-0.074458725750446],[-0.0027795394416898,0.01358032412827,-0.042322684079409],[-0.017629062756896,-0.04941138997674,-0.073978610336781]],[[-0.094273284077644,-0.021484969183803,-0.066429108381271],[-0.12814690172672,-0.034660119563341,-0.062750540673733],[-0.026929672807455,-0.043824076652527,0.0018972540274262]],[[-0.012053769081831,-0.013422122225165,0.09236116707325],[-0.085884056985378,-0.0059746820479631,-0.0051560425199568],[-0.081461228430271,0.029133971780539,0.050133991986513]],[[-0.14497621357441,0.092912882566452,0.0594179071486],[-0.014137600548565,-0.051431775093079,-0.0078284703195095],[0.10419164597988,-0.013694440945983,-0.032874163240194]],[[0.12291491776705,-0.1544786542654,0.13115611672401],[-0.046208117157221,-0.058971330523491,0.11083708703518],[-0.14884983003139,-0.076449118554592,0.022484328597784]],[[-0.088235028088093,-0.042435128241777,-0.029344093054533],[0.037197861820459,0.044047255069017,0.0014699258608744],[0.095459125936031,0.013819728046656,-0.11758092045784]],[[-0.042343761771917,-0.03158301487565,-0.047033816576004],[0.0013923553051427,0.079289875924587,0.070309720933437],[-0.068667098879814,-0.044262982904911,-0.028390383347869]],[[0.0044982116669416,-0.0058159288018942,-0.10087578743696],[0.087333634495735,-0.013879992067814,0.02989443577826],[-0.14849357306957,0.016788858920336,0.1072016581893]],[[0.2539196908474,-0.075179636478424,-0.082338146865368],[0.099253125488758,-0.067781843245029,0.045393638312817],[0.008549477905035,-0.33654198050499,0.18244053423405]],[[-0.041572663933039,-0.077465996146202,-0.042967457324266],[0.061393551528454,-0.040521662682295,0.022036757320166],[-0.054763372987509,-0.043648332357407,0.0039939596317708]],[[-0.091968216001987,0.01167693734169,-0.041474848985672],[-0.11951871216297,-0.013950613327324,0.056037694215775],[0.041917897760868,0.061257429420948,0.074334539473057]],[[-0.066632211208344,0.095699898898602,-0.045233361423016],[-0.031512498855591,0.042256828397512,0.039129585027695],[0.0091647300869226,0.058878049254417,0.076160818338394]],[[-0.019381284713745,-0.0030957621056587,0.007116393186152],[-0.015856383368373,-0.02300332300365,-0.10317547619343],[-0.11672881990671,0.020881494507194,0.02685472369194]],[[0.16017687320709,-0.092701137065887,0.056685164570808],[0.046142593026161,-0.064886927604675,0.0028485869988799],[0.015080223791301,0.051155716180801,-0.11640476435423]],[[0.017048122361302,-0.0077004837803543,0.0047186370939016],[0.019893569871783,-0.046490363776684,0.036013029515743],[-0.033868361264467,-0.017701977863908,0.0046165101230145]],[[0.082924790680408,-0.12132363021374,-0.021720288321376],[-0.084857530891895,-0.092030040919781,-0.014595554210246],[-0.045585848391056,-0.040716174989939,-0.10308059304953]],[[0.12369444966316,-0.11819516867399,0.0018981135217473],[-0.089002132415771,-0.080649383366108,0.12860341370106],[-0.1680942773819,0.053335100412369,0.056008521467447]],[[-0.036955077201128,-0.080525025725365,-0.084945403039455],[-0.062791764736176,-0.031062809750438,-0.084061674773693],[0.068002410233021,-0.043986834585667,0.043286640197039]],[[-0.15495979785919,-0.0016766188200563,0.046048242598772],[0.11947497725487,0.071816772222519,0.14283202588558],[0.10542771220207,0.12087999284267,-0.098912425339222]],[[0.012990200892091,0.0063702021725476,0.029360646381974],[0.012153929099441,0.066948100924492,0.0075508756563067],[-0.10054252296686,-0.053375083953142,-0.10272441804409]],[[0.0091149397194386,0.010742989368737,0.019336149096489],[-0.04682033136487,0.01795688457787,0.036540545523167],[0.11456423997879,0.09435872733593,-0.042140286415815]],[[0.0067304782569408,-0.085825622081757,-0.089461788535118],[-0.041062235832214,0.071770809590816,0.0017833611927927],[0.10783314704895,0.1030630543828,0.099667854607105]],[[-0.11194686591625,0.03991262242198,0.059484854340553],[-0.029609782621264,0.067549593746662,-0.020299440249801],[-0.062692023813725,0.038238242268562,-0.013833641074598]],[[0.044463817030191,-0.0033939713612199,0.0098519790917635],[0.068352065980434,0.024136736989021,-0.0067299492657185],[-0.0061453715898097,-0.059989023953676,-0.15250028669834]],[[0.055482186377048,-0.02904767356813,-0.23053671419621],[-0.021940557286143,-0.15152977406979,-0.0088399238884449],[0.014003928750753,-0.10046723484993,0.069560870528221]],[[0.032575719058514,-0.027276515960693,-0.11735903471708],[-0.040823187679052,0.072677984833717,-0.097670458257198],[0.11030822992325,0.034912820905447,0.15332685410976]],[[0.080104425549507,-0.044621352106333,-0.076472900807858],[-0.022333128377795,-0.12863881886005,-0.025237280875444],[-0.12512983381748,0.075003564357758,0.053383368998766]],[[-0.12168990820646,-0.024076679721475,-0.073959149420261],[-0.020144345238805,0.052155073732138,-0.019104799255729],[-0.09528174996376,-0.059105470776558,-0.013469045050442]],[[0.082602888345718,-0.02843108214438,0.054288651794195],[0.021182209253311,-0.14074583351612,-0.10982151329517],[0.063894160091877,0.051844701170921,-0.058289229869843]],[[0.096995063126087,-0.096763625741005,0.0032382931094617],[0.014172410592437,-0.044808939099312,0.014155984856188],[-0.0097085162997246,-0.046270348131657,-0.036745835095644]],[[0.068650580942631,-0.00074013316771016,-0.096701271831989],[-0.018224328756332,-0.093885615468025,-0.026389837265015],[-0.11547454446554,-0.032814215868711,-0.0037716601509601]],[[-0.034819651395082,0.13246490061283,0.10892602801323],[-0.058042615652084,-0.10819991677999,-0.11849869787693],[-0.030071325600147,-0.059209700673819,0.060950018465519]],[[-0.07763596624136,0.0022224860731512,-0.068100214004517],[0.10053093731403,-0.013755217194557,-0.022209785878658],[-0.23799262940884,-0.10164863616228,-0.064156331121922]],[[-0.037613015621901,-0.010215865448117,-0.045172605663538],[-0.04774371534586,-0.0080288564786315,0.073165237903595],[0.088618963956833,-0.050640404224396,0.084024049341679]],[[-0.061507485806942,-0.0066299038007855,-0.061429791152477],[-0.081281282007694,0.049112085253,-0.0030094699468464],[0.029278082773089,0.020215099677444,-0.051234342157841]],[[-0.029462402686477,-0.066469915211201,-0.056283559650183],[-0.12514066696167,-0.042995397001505,-0.027041081339121],[-0.1634948849678,-0.0073926239274442,0.058547955006361]],[[-0.039972484111786,-0.057647649198771,-0.037153355777264],[-0.011267214082181,0.05308024212718,0.07759590446949],[0.0057326392270625,0.075387090444565,-0.14000125229359]],[[0.0058843335136771,0.079545833170414,0.082257680594921],[-0.0078185740858316,-0.036488093435764,0.014032705686986],[0.10043098032475,0.091698184609413,0.045537162572145]],[[-0.074495069682598,-0.015440486371517,0.012501334771514],[-0.00079511682270095,0.0039060532581061,0.02786180563271],[-0.037816051393747,0.039286270737648,-0.11025955528021]],[[0.073148757219315,0.14402695000172,-0.098425649106503],[-0.03351853787899,-0.026481937617064,-0.040929112583399],[-0.20726364850998,-0.03377902880311,0.047470238059759]],[[-0.0036132917739451,-0.12662814557552,-0.26304721832275],[0.031876690685749,-0.065872713923454,-0.06268210709095],[0.21609672904015,0.076555356383324,0.074118867516518]],[[-0.0059676389209926,-0.060133963823318,-0.10223067551851],[-0.074044860899448,-0.034511141479015,-0.0086309891194105],[0.039167068898678,0.072126969695091,0.048592120409012]],[[0.067340560257435,0.037896435707808,-0.009885055013001],[0.048735283315182,-0.059662755578756,-0.1297272592783],[-0.0040665850974619,-0.20560847222805,0.039841391146183]],[[0.035938188433647,-0.089695274829865,-0.16576245427132],[0.0013844317290932,-0.083578936755657,-0.02364188991487],[-0.24393773078918,0.052357565611601,-0.015880703926086]],[[0.16449627280235,-0.14465348422527,-0.019176494330168],[0.056310176849365,-0.086455523967743,0.20650795102119],[-0.11775556206703,-0.14537601172924,-0.058427486568689]],[[-0.041811272501945,0.075178660452366,-0.067903585731983],[0.026174355298281,-0.0098977824673057,-0.069190286099911],[0.073651053011417,-0.18401119112968,0.048610359430313]],[[0.040448918938637,-0.050224021077156,0.075296185910702],[0.054270204156637,-0.049798205494881,0.063817381858826],[0.011092063039541,-0.095973134040833,0.0018673940794542]],[[-0.064079262316227,0.014487763866782,-0.070311084389687],[-0.08721099793911,0.17442688345909,-0.059790402650833],[-0.042083065956831,-0.058542758226395,-0.10545706003904]],[[-0.010310518555343,-0.18146729469299,0.028324332088232],[-0.069742038846016,-0.038949199020863,0.07480463385582],[0.036006029695272,0.13761049509048,-0.059548281133175]],[[-0.021465614438057,0.08250267803669,-0.091971553862095],[-0.04173444584012,-0.090960472822189,-0.078458830714226],[0.03697806224227,-0.082527466118336,0.014340761117637]],[[-0.051800943911076,0.0010428767418489,0.061606470495462],[0.029803954064846,0.061409998685122,0.06327198445797],[0.062660172581673,-0.070131234824657,0.021670004352927]],[[0.046696167439222,0.067392848432064,-0.058194413781166],[-0.032276134938002,0.0032393923029304,-0.041328355669975],[-0.042350456118584,-0.081075832247734,0.028917014598846]],[[0.0052021807059646,-0.018974853679538,0.031852960586548],[-0.0084892529994249,-0.092537812888622,-0.0022317895200104],[-0.063508622348309,0.018717160448432,-0.13314941525459]],[[-0.01993733458221,0.031059183180332,0.016267124563456],[0.22340172529221,-0.023540996015072,0.05754054710269],[-0.014459423720837,0.04059549048543,-0.032076954841614]],[[-0.053401570767164,0.052326668053865,-0.021052841097116],[0.0099320271983743,0.043700832873583,-0.053010914474726],[0.060212414711714,-0.043778840452433,0.0038076431956142]],[[0.0079032555222511,-0.030400360003114,0.060847695916891],[-0.020249456167221,-0.042569011449814,0.080101624131203],[-0.095524564385414,-0.07833243906498,-0.017936924472451]],[[-0.093200743198395,0.066074535250664,-0.10034487396479],[-0.026158841326833,0.05031718686223,-0.071705058217049],[-0.0076398700475693,0.016120370477438,-0.091814197599888]],[[-0.025735538452864,-0.056550603359938,-0.084627993404865],[-0.030719367787242,0.016498206183314,-0.0059763477183878],[-0.1316080391407,-0.10132282972336,-0.1286404132843]],[[0.06514497846365,-0.16084633767605,-0.0093139847740531],[-0.046537134796381,-0.024491002783179,0.042789973318577],[-0.049744255840778,-0.0047208308242261,-0.066031269729137]]],[[[0.00079559505684301,-0.00021256323088892,0.013177332468331],[-0.0025440817698836,0.0023776756133884,-0.017980733886361],[0.014814863912761,-0.068822652101517,-0.047031793743372]],[[0.0050607998855412,-0.10179527848959,-0.082273848354816],[-0.059448204934597,0.012607946060598,-0.020804638043046],[-0.051259852945805,-0.094794347882271,0.034971192479134]],[[0.023971393704414,0.052130449563265,0.059566736221313],[0.021340161561966,-0.10498823970556,0.026226401329041],[-0.14500793814659,-0.20330104231834,-0.12320134043694]],[[0.028713019564748,-0.082994073629379,-0.042805045843124],[-0.077280469238758,-0.086134545505047,-0.082894846796989],[-0.011835219338536,-0.13632859289646,-0.0087768388912082]],[[0.041186761111021,0.051404103636742,0.014389771036804],[-0.044373001903296,0.039881728589535,-0.01693769171834],[-0.0017015119083226,-0.023995021358132,-0.064751103520393]],[[0.055563233792782,-0.042693968862295,-0.074125751852989],[-0.0034512216225266,-0.085162572562695,0.031357668340206],[0.065764479339123,0.012227619998157,0.065667569637299]],[[0.041545510292053,-0.092607237398624,0.0074438094161451],[-0.11755615472794,-0.074133977293968,-0.0099074970930815],[0.010307868011296,-0.051709804683924,-0.028843231499195]],[[0.0090799834579229,-0.080024816095829,-0.042209159582853],[-0.16407810151577,-0.17276230454445,-0.15833611786366],[0.016824750229716,-0.018982911482453,0.030116371810436]],[[-0.022604862228036,-0.03522040694952,-0.012481366284192],[0.084218539297581,-0.017966963350773,0.029548099264503],[-0.13150748610497,-0.051974069327116,0.013616143725812]],[[-0.001043941359967,0.047122161835432,0.018089098855853],[-0.025582609698176,-0.035623252391815,0.039177231490612],[0.017647340893745,0.017102770507336,-0.039924263954163]],[[0.04129146784544,0.036402832716703,0.0013188305310905],[-0.04541789740324,-0.057014636695385,0.041215136647224],[-0.09328456223011,-0.026043923571706,-0.017176453024149]],[[0.013385276310146,0.059104524552822,0.039558365941048],[-0.089066825807095,0.11362716555595,0.046102870255709],[0.11131636053324,-0.092102862894535,-0.031276218593121]],[[-0.024982139468193,-0.028803328052163,-0.078028418123722],[0.032152462750673,0.047341581434011,0.003631021361798],[0.027116918936372,-0.024283150210977,-0.042585369199514]],[[0.080488100647926,0.055144269019365,-0.057624597102404],[0.014355411753058,-0.018426945433021,0.070472113788128],[-0.06937850266695,0.036033112555742,0.00089993665460497]],[[-0.017206594347954,-0.043362390249968,0.0039123632013798],[-0.038575477898121,-0.011484584771097,-0.037044316530228],[-0.004121548961848,-0.0058024902828038,-0.024906247854233]],[[0.0096861701458693,0.033885225653648,-0.056986764073372],[-0.021050475537777,0.039980169385672,-0.029655262827873],[0.0045867408625782,-0.0099783493205905,-0.04335318133235]],[[-0.022568836808205,0.013272671960294,0.027795910835266],[-0.0055580697953701,0.0049106790684164,-0.11819962412119],[0.0033904851879925,0.0051941312849522,0.095228932797909]],[[0.038981229066849,0.0011674162233248,-0.035071305930614],[-0.0011883296538144,-0.10937225073576,-0.012153563089669],[-0.023307554423809,-0.010655177757144,-0.06262444704771]],[[0.013767434284091,-0.020779576152563,-0.075375907123089],[0.014432885684073,0.016286868602037,-0.048186276108027],[-0.0057364022359252,0.012545405887067,-0.010123373009264]],[[0.05290674045682,0.048804793506861,0.09391962736845],[-0.041812364012003,0.017793051898479,0.060754060745239],[-0.052955463528633,-0.09151216596365,-0.077945455908775]],[[0.028056563809514,0.015920583158731,-0.11487480998039],[-0.026600996032357,0.023299384862185,-0.10029727965593],[-0.03184150531888,-0.18528598546982,0.067339032888412]],[[0.093941122293472,0.052809663116932,-0.00070483598392457],[-0.036971818655729,0.088696859776974,-0.0068065081723034],[-0.017912670969963,0.036447651684284,-0.06076280772686]],[[0.0092825358733535,-0.035028804093599,0.017247578129172],[0.074584148824215,0.025203928351402,0.0034951611887664],[-0.1167621538043,-0.011848175898194,0.047738298773766]],[[-0.10560405254364,0.02041089348495,0.019502896815538],[-0.0022899832110852,-0.084854736924171,0.14627259969711],[0.072449810802937,0.10450737923384,0.092981599271297]],[[-0.026002919301391,-0.010321849957108,-0.047186028212309],[-0.026159269735217,0.047940090298653,0.0046993028372526],[-0.0086229359731078,-0.0035960669629276,0.0079003442078829]],[[0.024704283103347,0.041606433689594,-0.0035832829307765],[0.010673543438315,0.013463700190187,-0.017118712887168],[-0.088033832609653,-0.050969578325748,0.0020257735159248]],[[0.0036595442797989,0.049744684249163,-0.042634144425392],[-0.034170970320702,0.086521454155445,0.019648842513561],[0.13317796587944,-0.17289018630981,-0.085714988410473]],[[-0.059065118432045,0.045451235026121,-0.051124021410942],[0.033980466425419,-0.062741711735725,-0.014251206070185],[0.026499221101403,0.022725326940417,0.037074752151966]],[[0.024025751277804,0.079601064324379,0.041155327111483],[0.031999260187149,-0.024339001625776,0.045784130692482],[-0.021525397896767,-0.059286765754223,-0.1124411970377]],[[-0.096119068562984,-0.047082729637623,-0.043715208768845],[-0.062262196093798,-0.05001475661993,-0.070034004747868],[-0.033484540879726,-0.11138938367367,-0.10001733899117]],[[0.013097853399813,0.00073063792660832,-0.096656963229179],[-0.017285108566284,-0.0030365562997758,0.018997943028808],[-0.056559544056654,0.016578163951635,0.0039380765520036]],[[-0.022924099117517,-0.0033926852047443,-0.017596069723368],[0.012969326227903,-0.075928911566734,0.0030653972644359],[-0.12028204649687,-0.0039732973091304,0.028149418532848]],[[-0.031369995325804,-0.010017493739724,0.048215974122286],[-0.021665288135409,-0.017914233729243,-0.09433127194643],[-0.034645438194275,-0.037337433546782,-0.036814991384745]],[[0.017922263592482,0.096508979797363,0.030377676710486],[0.099213667213917,0.040325786918402,-0.056474503129721],[-0.052523028105497,0.047665972262621,0.054470609873533]],[[0.089654356241226,0.12343750149012,0.043086066842079],[-0.1881669908762,-0.39539784193039,-0.11574213206768],[0.098276980221272,0.01887135207653,0.04792745411396]],[[-0.052632447332144,-0.034734670072794,-0.031669326126575],[0.05310994759202,-0.024370852857828,0.013958654366434],[0.019220232963562,-0.033672414720058,-0.017633356153965]],[[0.02645050175488,0.043493285775185,0.012981195934117],[-0.029801061376929,-0.030425855889916,0.081565886735916],[-0.093139469623566,-0.05667445063591,0.015175295062363]],[[0.0067442748695612,-0.0044121341779828,-0.053077269345522],[-0.014664901420474,0.10785750299692,-0.083020687103271],[-0.12186036258936,-0.12915715575218,-0.030238108709455]],[[-0.091352954506874,-0.0032647137995809,-0.000306985079078],[-0.037945918738842,0.001462485990487,-0.007294790353626],[0.03104705363512,0.060796201229095,0.11008033156395]],[[0.010549804195762,0.019995091482997,-0.057789988815784],[0.029864063486457,-0.08376757055521,-0.049748186022043],[-0.060000061988831,0.032518465071917,-0.0046454882249236]],[[0.018202686682343,0.091551914811134,0.018869837746024],[-0.07569158822298,-0.009225114248693,-0.0098945740610361],[-0.038726758211851,0.071861065924168,-0.011547962203622]],[[-0.021117394790053,-0.029503064230084,0.027981111779809],[-0.027317641302943,0.094369873404503,-0.043461561203003],[0.039089929312468,0.030407786369324,0.021346440538764]],[[0.035473965108395,0.060964450240135,-0.088581085205078],[-0.073944970965385,-0.064259104430676,-0.034123796969652],[0.019934020936489,0.10670832544565,-0.0027247506659478]],[[-0.048684742301702,-0.080451726913452,0.021128473803401],[-0.042331729084253,-0.082945190370083,-0.057410802692175],[0.0095668388530612,-0.012298600748181,0.0529929921031]],[[-0.019125204533339,-0.022132087498903,0.0051490771584213],[0.013560925610363,0.0053164027631283,-0.017229601740837],[-0.013147306628525,-0.0058966707438231,-0.026685664430261]],[[0.0030032054055482,-0.04523815959692,-0.034172058105469],[0.0010129839647561,-0.037366323173046,-0.011326874606311],[0.098221272230148,-0.035378828644753,-0.020197449252009]],[[-0.014630479738116,0.027542946860194,0.047478761523962],[-0.041052475571632,-0.0058142673224211,0.093671910464764],[-0.082741618156433,0.041294384747744,0.0033034791704267]],[[-0.0042702727951109,0.041746806353331,0.083827890455723],[-0.018703771755099,-0.045557778328657,-0.033574093133211],[-0.11629249900579,-0.015841159969568,0.044733293354511]],[[-0.023912852630019,-0.07563241571188,-0.021126560866833],[-0.013217272236943,0.0016778624849394,0.02868864312768],[-0.010068068280816,0.010943717323244,-0.068751998245716]],[[0.055848460644484,-0.012125409208238,0.045196883380413],[0.072790123522282,-0.018777962774038,-0.044701721519232],[-0.0011669853702188,0.028335018083453,-0.019561149179935]],[[-0.046379316598177,-0.01328197773546,-0.012501016259193],[-0.036485463380814,-0.0091209718957543,-0.019036881625652],[0.036963049322367,-0.018219880759716,-0.039339803159237]],[[0.021248575299978,-0.015545072034001,0.077398523688316],[-0.036253798753023,-0.16962882876396,-0.057279270142317],[-0.099249258637428,0.013093266636133,0.00052137766033411]],[[-0.046932980418205,-0.024188712239265,-0.0022837622091174],[-0.081242524087429,-0.038603894412518,0.064896062016487],[-0.052539419382811,-0.041376173496246,0.032348599284887]],[[0.032992415130138,-0.088567823171616,-0.014491003938019],[-0.040864821523428,0.014388771727681,-0.018340999260545],[-0.0091126589104533,-0.033809669315815,-0.008078976534307]],[[-0.024777414277196,0.034717865288258,-0.012782741338015],[0.076689384877682,-0.0021652511786669,-0.053052261471748],[0.018260877579451,-0.1307487487793,-0.11326581984758]],[[-0.0087377494201064,0.063098065555096,0.02567639760673],[-0.030059093609452,0.0062396069988608,0.017137940973043],[0.02536821551621,0.0031198794022202,-0.0084620341658592]],[[-0.089947685599327,-0.052348811179399,-0.034663584083319],[0.023712802678347,-0.058692544698715,-0.045434195548296],[-0.032366633415222,-0.0057358923368156,0.0065679969266057]],[[-0.0046300860121846,-0.01221979316324,0.033444099128246],[-0.01805966347456,0.042793858796358,-0.02377924695611],[-0.010391416028142,-0.19730959832668,-0.076796442270279]],[[0.085450276732445,0.067192696034908,0.019934432581067],[0.053395722061396,-0.027671555057168,-0.022361930459738],[-0.058107156306505,-0.078337736427784,0.0052047637291253]],[[-0.057243101298809,-0.10494990646839,-0.10254912078381],[0.012171614915133,-0.01303665433079,-0.01764322258532],[0.093404449522495,0.11432831734419,0.061937931925058]],[[-0.032384444028139,0.012036979198456,-0.039696801453829],[-0.021685378625989,0.058065291494131,0.022537397220731],[0.015022914856672,-0.058109931647778,-0.027765616774559]],[[0.024809120222926,-0.0076688262633979,-0.045789487659931],[0.055884227156639,0.069387696683407,0.034905817359686],[-0.010183418169618,-0.018163932487369,-0.14525339007378]],[[-0.031101148575544,-0.020446488633752,-0.074081875383854],[-0.060935266315937,-0.023122753947973,-0.039681423455477],[0.092964418232441,-0.011515529826283,-0.093196325004101]],[[0.068648137152195,0.023859305307269,0.0072432137094438],[0.037205204367638,0.057324480265379,0.0063150464557111],[-0.015510906465352,0.070332542061806,0.049104832112789]]],[[[0.003212554147467,0.00013746923650615,0.038165234029293],[-0.087733246386051,0.062052708119154,0.027370536699891],[-0.00053234194638208,-0.089739546179771,0.10802657157183]],[[-0.04282795637846,-0.02286097034812,-0.017399234697223],[-0.068126209080219,-0.01522621139884,0.027987221255898],[0.066042982041836,0.0019178028451279,-0.010258526541293]],[[-0.1459609568119,-0.13847231864929,-0.11730471253395],[-0.072839640080929,0.044122982770205,-0.025604577735066],[0.025223385542631,0.051117185503244,0.10153795033693]],[[0.0099213859066367,0.031999561935663,0.093816190958023],[-0.012657259590924,0.082723960280418,0.12705682218075],[0.025153519585729,0.096809290349483,-0.043241914361715]],[[-0.0056017534807324,-0.067545056343079,-0.059458579868078],[0.035916209220886,0.034327868372202,0.15372562408447],[0.030250506475568,0.016699528321624,0.070746973156929]],[[0.040004529058933,-0.029024120420218,-0.0036875640507787],[0.0008997984114103,-0.04068211093545,-0.050470855087042],[0.0081926416605711,-0.038513593375683,0.10056065768003]],[[-0.073469772934914,-0.12181778252125,0.036423105746508],[-0.078612700104713,0.0056390045210719,0.073413819074631],[0.010795159265399,0.085233516991138,0.044577948749065]],[[-0.059449795633554,0.1116873472929,0.099727772176266],[-0.038575414568186,0.07814783602953,0.19549369812012],[0.057659022510052,-0.023392461240292,0.0056959129869938]],[[0.074560187757015,0.045649994164705,-0.040235940366983],[-0.027731377631426,-0.051925264298916,0.044967714697123],[0.016802914440632,-0.017750151455402,-0.0081730708479881]],[[-0.094530545175076,-0.059390187263489,-0.16178213059902],[-0.040729738771915,0.05152939632535,0.010971004143357],[-0.015247629955411,-0.14080263674259,0.04672983661294]],[[-0.051443062722683,0.0013826029608026,0.053979471325874],[0.044615127146244,0.037704847753048,0.026868330314755],[-0.016198547556996,0.054977413266897,-0.025533637031913]],[[-0.065852493047714,-0.10983274877071,-0.035039436072111],[0.0033321199007332,0.079898722469807,-0.018222697079182],[-0.015821466222405,0.05871320515871,0.05326834321022]],[[-0.032622534781694,-0.033433098345995,0.023718200623989],[-0.077192693948746,-0.020852101966739,0.15387631952763],[-0.033541794866323,-0.037172567099333,0.036510717123747]],[[-0.014247774146497,-0.06767887622118,0.047451730817556],[-0.14200592041016,-0.1056154742837,0.14374382793903],[-0.03356197103858,-0.028610000386834,-0.054478477686644]],[[-0.008220111951232,0.055667717009783,0.0069143450818956],[0.041907377541065,0.025964330881834,-0.075190037488937],[-0.038377981632948,-0.032833073288202,-0.15103164315224]],[[0.087127082049847,0.19026453793049,-0.0016176491044462],[0.072222881019115,0.0069716516882181,-0.01545700058341],[0.033128309994936,-0.051982760429382,0.020457629114389]],[[0.027752123773098,-0.0069658332504332,0.045271899551153],[-0.016289068385959,0.029459461569786,0.051844455301762],[0.076068125665188,0.096108943223953,0.0046556787565351]],[[-0.13639901578426,-0.079988144338131,-0.092209562659264],[0.0060939965769649,0.019065318629146,0.068315871059895],[0.041229970753193,0.054087724536657,0.035437949001789]],[[-0.0092460727319121,0.034220200031996,0.086136229336262],[0.013509447686374,0.018060168251395,0.056454487144947],[0.035321827977896,0.028842886909842,-0.02046425268054]],[[0.038194581866264,-0.031980440020561,-0.0080977771431208],[-0.035860925912857,-0.080086141824722,0.043451361358166],[-0.033773593604565,0.016698798164725,0.075246773660183]],[[0.010264595970511,-0.085283435881138,0.026177616789937],[-0.021944455802441,-0.11792970448732,-0.010895075276494],[-0.027574421837926,-0.027454629540443,0.050291571766138]],[[0.0017737648449838,-0.052203137427568,-0.077061340212822],[0.058077853173018,-0.097226940095425,0.037507645785809],[0.07291928678751,-0.13117180764675,0.028474947437644]],[[0.012287235818803,-0.016579750925303,-0.11466025561094],[-0.0013972145970911,-0.044457215815783,-0.071052365005016],[0.0097495960071683,-0.054709274321795,0.081958025693893]],[[0.21744221448898,0.17524196207523,0.086070068180561],[0.070082806050777,0.03455962613225,-0.058107167482376],[0.00031334281084128,0.014095475897193,-0.080336026847363]],[[0.017758054658771,0.02291976287961,0.086435623466969],[0.017052702605724,0.034144796431065,-0.083802200853825],[-0.035743311047554,-0.011177434585989,-0.11622888594866]],[[0.010114933364093,-0.034444004297256,-0.010675518773496],[-0.011300493963063,0.048948384821415,-0.028327044099569],[0.016242023557425,0.024718943983316,0.055943042039871]],[[0.032557997852564,0.023635799065232,0.035845402628183],[-0.04077910259366,0.095375187695026,0.050334189087152],[0.025637198239565,0.13019128143787,0.0051780780777335]],[[-0.031981267035007,0.043545674532652,0.067561760544777],[-0.043901171535254,0.051698785275221,0.084688022732735],[0.038233108818531,-0.034033253788948,0.033671088516712]],[[0.069702297449112,0.053177464753389,0.065243721008301],[0.11488024890423,-0.037491500377655,-0.033585503697395],[0.046840868890285,0.036649003624916,0.036731380969286]],[[-0.15578290820122,-0.058406163007021,0.082273483276367],[-0.048743348568678,0.11661087721586,0.10343543440104],[0.053946614265442,0.1538722217083,0.1455747038126]],[[0.074598208069801,-0.036198254674673,0.029713019728661],[0.066757649183273,0.057071227580309,0.019876660779119],[-0.0095466198399663,-0.023895708844066,-0.038232795894146]],[[0.051919974386692,0.030552973970771,-0.0097570391371846],[0.01383145339787,-0.00083104037912562,-0.0050727319903672],[0.020671878010035,-0.076065346598625,0.050839681178331]],[[0.066509075462818,-0.041011221706867,-0.026035005226731],[0.075056686997414,0.028425954282284,-0.006507558748126],[0.093148909509182,0.034710228443146,0.021463491022587]],[[-0.046392120420933,0.0021375888027251,-0.090341486036777],[0.016531625762582,-0.022890051826835,0.0050416737794876],[-0.13757593929768,-0.078845351934433,0.04697049036622]],[[-0.13144394755363,-0.18751776218414,-0.16410505771637],[-0.020592007786036,-0.17044270038605,-0.0025217977818102],[0.053326323628426,0.068093985319138,0.030499381944537]],[[-0.031016128137708,0.070092104375362,0.093494772911072],[-0.022916434332728,-0.059637308120728,0.024388307705522],[-0.0039147310890257,0.11361087858677,0.06996250897646]],[[-0.0043657021597028,-0.10057822614908,-0.076455883681774],[0.037400767207146,0.014769366011024,0.028854100033641],[0.11010513454676,0.10899170488119,0.090025193989277]],[[-0.089141942560673,-0.055752396583557,-0.066871583461761],[0.033952720463276,-0.013767975382507,0.10213685780764],[0.034077562391758,-0.069703191518784,-0.034631062299013]],[[0.088520176708698,-0.011420927010477,0.014928304590285],[0.045607507228851,-0.0312973074615,-0.041698690503836],[-0.016788950189948,0.018598375841975,-0.14122372865677]],[[0.11022866517305,-0.040034972131252,0.050351765006781],[0.07235199958086,0.036311093717813,0.021866569295526],[0.017620507627726,0.086515761911869,0.095943301916122]],[[0.024558059871197,-0.093429617583752,0.046336989849806],[-0.0059847277589142,0.06012773886323,0.036739535629749],[0.026394305750728,-0.070231847465038,0.022826103493571]],[[0.064235180616379,0.10498497635126,0.096086487174034],[-0.038395214825869,0.11900223046541,-0.053874529898167],[0.016068367287517,0.075229734182358,-0.089966788887978]],[[-0.09067527204752,-0.14129467308521,0.025384353473783],[-0.18033227324486,0.031293760985136,0.16137059032917],[0.0034971218556166,0.054862648248672,0.03525110706687]],[[0.074065573513508,-0.10079829394817,-0.21036979556084],[-0.048574291169643,0.15261080861092,-0.025732850655913],[0.018414428457618,-0.096004344522953,-0.079615265130997]],[[-0.086759708821774,0.018893588334322,0.0061519290320575],[0.023438557982445,-0.072259403765202,0.05985763669014],[-0.012785194441676,0.0201824195683,0.13993684947491]],[[-0.050072077661753,0.039659548550844,0.022468339651823],[-0.10271321237087,-0.0026320121251047,-0.002005516551435],[-0.033227398991585,0.0051106084138155,0.05759409815073]],[[-0.018459796905518,-0.0028763634618372,0.051501628011465],[-0.042063668370247,-0.0015745707787573,-0.011652525514364],[0.017542567104101,0.068062081933022,-0.034313883632421]],[[0.0031271937768906,-0.095281802117825,-0.12158264964819],[-0.02606001496315,0.12676131725311,0.078375592827797],[0.080559581518173,-0.13749629259109,0.030538510531187]],[[-0.040505953133106,-0.068616896867752,-0.0095453960821033],[-0.15807747840881,-0.0033217219170183,-0.018348736688495],[-0.083772957324982,-0.035660777240992,0.057597286999226]],[[-0.1734219789505,-0.07276601344347,-0.10105727612972],[-0.0099932877346873,0.049018245190382,0.00024021860735957],[-0.023964386433363,-0.0031611551530659,0.062156692147255]],[[-0.087111160159111,-0.030309610068798,0.022078627720475],[-0.056784778833389,-0.011576174758375,0.015709508210421],[0.0023247515782714,0.055640414357185,0.044321820139885]],[[0.10074025392532,0.071312367916107,-0.0042453315109015],[0.068023085594177,-0.028687978163362,-0.075681358575821],[-0.057046804577112,-0.16701604425907,-0.081259414553642]],[[0.041271533817053,0.054954692721367,-0.11153111606836],[-0.023421658203006,-0.029931340366602,-0.05729440972209],[0.015157490037382,0.084240756928921,0.059774048626423]],[[-0.11840970814228,-0.032602429389954,-0.016743151471019],[-0.057000439614058,-0.020079109817743,-0.010150472633541],[0.016828114166856,0.030623853206635,-0.0060059106908739]],[[-0.09384261071682,-0.017584450542927,-0.11148861795664],[-0.042135000228882,0.024972327053547,0.049136497080326],[-0.013986074365675,0.012273117899895,-0.024500861763954]],[[-0.022351386025548,-0.092404022812843,-0.040245018899441],[0.082657061517239,-0.026065995916724,-0.080718673765659],[0.029384512454271,0.050288207828999,0.011531479656696]],[[-0.052638079971075,-0.064376652240753,0.043926902115345],[-0.00026522463303991,-0.031892843544483,0.043167173862457],[-0.066518537700176,-0.01513219345361,0.077624022960663]],[[-0.053374700248241,-0.086034044623375,-0.12936951220036],[-0.090680882334709,-0.094871386885643,-0.058409620076418],[-0.088263556361198,-0.063155390322208,0.040659956634045]],[[0.18855537474155,0.033203486353159,0.11226091533899],[0.04188147559762,-0.035531908273697,0.030417386442423],[-0.030448142439127,-0.058253940194845,-0.046001918613911]],[[0.026221577078104,0.068461805582047,0.10013689100742],[-0.035178918391466,0.029833437874913,-0.038546726107597],[-0.0033571345265955,-0.03103213571012,-0.11226151883602]],[[-0.12172166258097,-0.090580061078072,-0.018531685695052],[-0.004418040625751,0.037059284746647,-0.049739766865969],[0.10473313182592,0.056027825921774,0.10174825042486]],[[-0.073168762028217,-0.020570753142238,0.041569016873837],[-0.086072079837322,0.018520973622799,-0.034022998064756],[-0.023017846047878,-0.068979442119598,-0.085014037787914]],[[0.0061501623131335,-0.03695085272193,0.0011153168743476],[-0.011213870719075,-0.0010230611078441,0.012180189602077],[0.085922785103321,0.0058478326536715,0.13291028141975]],[[-0.097044385969639,-0.038960441946983,0.021411983296275],[-0.05303879827261,-0.01113516651094,0.025568820536137],[0.025943145155907,0.098548710346222,0.1018632799387]]],[[[-0.057060737162828,-0.038470700383186,0.0037733211647719],[0.011007508262992,-0.055530410259962,-0.040189106017351],[0.027936771512032,0.0081188408657908,0.006722473539412]],[[0.0095968712121248,-0.029682319611311,-0.02368806861341],[0.014718167483807,0.054375384002924,0.018574284389615],[-0.021432729437947,-0.051702037453651,-0.022734949365258]],[[0.011734266765416,-0.0035966362338513,-0.096772216260433],[-0.0017916841898113,0.028876313939691,0.01774868927896],[0.058847825974226,-0.017402771860361,-0.023881860077381]],[[0.0190858412534,-0.081983335316181,-0.043839067220688],[0.0067292684689164,-0.012715458869934,-0.03588991984725],[0.0038014361634851,-0.0379948168993,-0.026236297562718]],[[-0.035914190113544,-0.055081523954868,-0.012982852756977],[0.056970853358507,-0.035915810614824,-0.080208659172058],[-0.015367521904409,0.010448345914483,0.072066627442837]],[[0.026781212538481,0.0072807902470231,0.078213281929493],[0.0023369938135147,0.059937756508589,0.034266799688339],[-0.044055372476578,0.046162899583578,0.064234741032124]],[[-0.0063329678960145,0.01690537109971,0.017512736842036],[-0.12252575904131,0.022729933261871,0.010657552629709],[-0.045294757932425,-0.013906765729189,0.003221531631425]],[[-0.038945708423853,-0.020162841305137,0.048639863729477],[0.0056466651149094,-0.084753714501858,0.035830538719893],[-0.031925588846207,-0.049579460173845,0.010885153897107]],[[-0.022369034588337,-0.050102517008781,0.049081828445196],[0.00073136301944032,-0.020244287326932,-0.065505184233189],[0.019017593935132,-0.047788504511118,-0.029353247955441]],[[-0.03315532207489,-0.053484410047531,-0.028234938159585],[-0.031610053032637,-0.04080968350172,0.029020357877016],[0.10061498731375,-0.025404931977391,0.06526056677103]],[[-0.094859138131142,0.038312237709761,0.062761388719082],[-0.079272739589214,-0.026890253648162,0.038337428122759],[0.0050496254116297,-0.007527319714427,-0.027105836197734]],[[0.0063101216219366,-0.046212561428547,-0.0033813437912613],[0.03392031416297,0.091293640434742,0.039817485958338],[0.010956366546452,-0.021080143749714,-0.014504233375192]],[[-0.0046625677496195,-0.047912202775478,0.046652145683765],[-0.00069825013633817,0.083595439791679,0.071229241788387],[0.047706715762615,0.04031091183424,0.14242346584797]],[[0.0689362809062,0.012763038277626,0.094610601663589],[-0.0030565347988158,0.074782475829124,0.095401540398598],[0.0026786825619638,0.0075743920169771,0.011733273044229]],[[-0.02926561422646,0.023185223340988,-0.028451029211283],[0.01629600673914,0.020997414365411,0.017422694712877],[-0.017484048381448,-0.054741285741329,0.0025368300266564]],[[-0.077347785234451,-0.053631342947483,0.057470735162497],[-0.015347780659795,0.016954600811005,-0.094298310577869],[0.034714624285698,-0.032338488847017,-0.03340220451355]],[[0.034227717667818,-0.068040899932384,-0.057570267468691],[-0.02356344088912,0.0064974413253367,-0.055575668811798],[-0.045493800193071,0.013617549091578,0.008301611058414]],[[0.028635486960411,0.046862814575434,0.014711865223944],[0.038577444851398,0.047399781644344,-0.046639557927847],[-0.020889587700367,-0.01812350936234,0.06270893663168]],[[-0.0026052689645439,0.052442394196987,0.026772011071444],[-0.020551050081849,-0.082214593887329,-0.018903408199549],[-0.031432840973139,-0.075144924223423,0.067497499287128]],[[-2.787083030853e-05,0.058351907879114,0.038076408207417],[-0.025423755869269,0.026040574535728,0.0053346683271229],[0.0093133226037025,-0.028748666867614,-0.054238490760326]],[[0.022822346538305,0.037994276732206,0.045651964843273],[-0.039272055029869,0.02661912702024,0.08341408520937],[-0.010480210185051,0.0037142706569284,-0.033135809004307]],[[0.122399315238,0.040131501853466,0.025468558073044],[0.048491656780243,0.073108308017254,-0.078132204711437],[-0.0048735225573182,-0.051478937268257,-0.028748972341418]],[[0.042000785470009,-0.028438631445169,0.059884920716286],[0.012493144720793,-0.015906302258372,-0.0025299184489995],[0.021473014727235,0.0018311361782253,-0.020848002284765]],[[0.062750950455666,0.058894354850054,-0.018229270353913],[0.097568072378635,0.090012662112713,-0.011014144867659],[0.022206155583262,0.030492857098579,0.031617142260075]],[[0.075021393597126,-0.063988469541073,0.07588479667902],[0.0047729210928082,-0.011094396933913,0.091512769460678],[0.018726767972112,0.040112048387527,0.086958959698677]],[[0.013544636778533,-0.025116825476289,-0.0033975308761001],[-0.0053960783407092,0.033632379025221,0.01286491099745],[-0.022322569042444,0.020612044259906,0.031949874013662]],[[-0.041919358074665,-0.038313236087561,-0.011822977103293],[0.038223247975111,-0.018002264201641,0.066526710987091],[-0.027170518413186,0.050757091492414,0.050001345574856]],[[0.14315663278103,0.15292249619961,-0.017250018194318],[-0.045177932828665,0.014746403321624,0.029567645862699],[-0.03742453083396,-0.023959515616298,0.088883459568024]],[[-0.015409064479172,-0.060779254883528,-0.011375293135643],[0.0083596836775541,0.072666876018047,0.057706270366907],[0.018464466556907,-0.0018333345651627,0.062046267092228]],[[-0.080707907676697,0.035433266311884,0.0058383862487972],[-0.070185817778111,-0.067573763430119,0.0099736610427499],[-0.012365149334073,-0.073134407401085,-0.012033665552735]],[[0.0025328469928354,-0.062231820076704,0.019384730607271],[-0.095460869371891,-0.061914648860693,0.0032828808762133],[-0.097607217729092,0.006953383795917,0.035616472363472]],[[0.088723286986351,0.016731340438128,0.020964384078979],[0.067081242799759,0.041443295776844,-0.016268771141768],[0.027788693085313,-0.10463049262762,0.043197385966778]],[[-0.024973273277283,-0.011414150707424,-0.078786134719849],[0.027045642957091,0.016638729721308,-0.023027144372463],[-0.035309787839651,0.0086727170273662,-0.045715894550085]],[[0.066021524369717,-0.00048028459423222,0.051265951246023],[0.0090140635147691,0.016163744032383,-0.024810073897243],[0.039355378597975,0.055976592004299,0.0014219586737454]],[[0.08238809555769,-0.014805795624852,0.044074680656195],[0.09154636412859,0.067116461694241,-0.010667869821191],[-0.059400212019682,0.023514714092016,-0.018141692504287]],[[-0.026202522218227,-0.029363630339503,0.031414438039064],[-0.079486586153507,0.045532189309597,-0.034021113067865],[-0.072927549481392,-0.020516430959105,0.018866216763854]],[[-0.018036440014839,-0.021108297631145,-0.075553245842457],[0.086175821721554,0.041704244911671,0.039356242865324],[-0.0083486568182707,0.019420793280005,0.036505661904812]],[[-0.028030730783939,0.0097827138379216,0.0067148930393159],[0.049298990517855,0.087075524032116,-0.011644966900349],[-0.059770599007607,0.058573298156261,0.10831196606159]],[[-0.016990242525935,-0.051176734268665,-0.022872060537338],[-0.0038491173181683,0.046522565186024,0.039637304842472],[-0.071393810212612,-0.007887102663517,-0.030598821118474]],[[0.017089087516069,0.064977519214153,0.0084038600325584],[-0.028263593092561,0.13270039856434,0.0098193930462003],[-0.09369982033968,-0.058884710073471,-0.050583332777023]],[[0.0068376343697309,-0.040970459580421,0.01271734200418],[0.00057987356558442,-0.023199109360576,0.01579643972218],[0.019145879894495,-0.036441795527935,0.016937848180532]],[[0.049200616776943,0.0077516110613942,0.032649870961905],[0.02692081592977,0.044488117098808,0.06639326363802],[0.029156245291233,0.083954967558384,0.12344694137573]],[[0.023196775466204,0.10068686306477,0.064302958548069],[-0.0520403906703,0.012142726220191,0.061769898980856],[0.014511194080114,0.11353377997875,0.054999470710754]],[[0.03076970204711,0.064671941101551,-0.011484660208225],[-0.00327213620767,-0.0711505189538,0.0071761822327971],[0.08653786033392,-0.038109127432108,-0.10854125767946]],[[0.0072326944209635,-0.038976944983006,-0.0056047337129712],[-0.066833660006523,-0.0015413656365126,-0.020082423463464],[-0.03430201113224,-0.026965737342834,-0.055099956691265]],[[0.046525813639164,-0.0087484307587147,0.026920825242996],[-0.088536210358143,-0.00050697708502412,0.029487609863281],[-0.034997668117285,-0.011980886571109,-0.0088925352320075]],[[0.080662362277508,-0.10952614247799,0.023968383669853],[0.073889963328838,0.069701790809631,0.06541533768177],[0.021712463349104,0.090569950640202,-0.012807171791792]],[[0.011959841474891,-0.02414451725781,0.019083915278316],[0.021765321493149,0.022836625576019,-0.023613156750798],[-0.015283263288438,-0.0022736245300621,0.028808208182454]],[[-0.012196031399071,-0.05211566016078,0.00037095049628988],[-0.070667058229446,0.0089538404718041,-0.037915289402008],[-0.032343529164791,-0.0090668136253953,0.075153768062592]],[[0.016424151137471,0.0082769524306059,-0.047719083726406],[0.044346943497658,0.022960929200053,0.0042040962725878],[-0.047305945307016,-0.015161115676165,-0.043649584054947]],[[0.052171003073454,-0.034779191017151,0.050658907741308],[-0.073050893843174,-0.02227670326829,0.010639337822795],[-0.045877657830715,-0.095603622496128,-0.074373446404934]],[[0.11706949770451,-0.031887605786324,0.039117492735386],[0.050853356719017,0.038896977901459,-0.024802599102259],[0.044805254787207,0.0049300170503557,-0.028619684278965]],[[0.091985128819942,0.056778647005558,0.020738491788507],[-0.051803097128868,-0.037329714745283,0.049312379211187],[0.073112830519676,-0.040245458483696,-0.02573549374938]],[[-0.072191782295704,-0.024188857525587,0.039623532444239],[-0.044390834867954,-0.05535351857543,0.0021488885395229],[-0.025514982640743,0.027151694521308,-0.042921185493469]],[[0.076724104583263,0.0082706874236465,-0.00149296305608],[0.057762917131186,-0.090788058936596,0.045934729278088],[0.03447488322854,0.028776939958334,0.0056135565973818]],[[0.072631262242794,0.061883736401796,0.01903715915978],[0.054108455777168,0.042937692254782,-0.06232276558876],[0.02668128721416,0.047664806246758,0.015830665826797]],[[-0.019422393292189,-0.024029629305005,0.030639111995697],[-0.011346596293151,-0.029799297451973,0.01177875790745],[0.064365290105343,-0.039494693279266,0.071401529014111]],[[-0.034551706165075,0.045041188597679,0.005834196228534],[-0.010789250023663,-0.066164501011372,0.031178979203105],[-0.0069157746620476,-0.022119896486402,0.011577202007174]],[[0.022276191040874,0.034147974103689,-0.084482684731483],[0.041268959641457,0.053880590945482,-0.003022545715794],[-0.014548170380294,0.056697923690081,0.11457467079163]],[[-0.053881458938122,-0.050485178828239,0.034350916743279],[0.027722854167223,-0.028757721185684,-0.0005862814723514],[0.0084723141044378,0.043573264032602,0.02063730545342]],[[0.052944552153349,0.061036739498377,0.017740665003657],[0.06381918489933,0.07596593350172,0.076912775635719],[-0.01276736613363,0.05722164362669,0.029344093054533]],[[-0.053222607821226,-0.1056817099452,-0.090831406414509],[0.0047266017645597,0.0021112996619195,0.021068485453725],[0.075366869568825,0.043394736945629,0.068682491779327]],[[0.051358826458454,0.030870608985424,-0.044111985713243],[0.015170180238783,-0.0027252710424364,0.028360370546579],[-0.055047787725925,-0.018549157306552,-0.022020559757948]],[[0.055956825613976,-0.076872147619724,-0.0035793674178421],[0.010363792069256,0.0011797277256846,-0.034491844475269],[-0.026818569749594,-0.032968942075968,0.0099415434524417]]],[[[-0.0037039769813418,0.012003945186734,0.013583539053798],[-0.0025932581629604,0.01325486600399,-0.0097904140129685],[-0.0010088271228597,0.014633293263614,0.016081515699625]],[[0.077816620469093,0.022508826106787,-0.05328032001853],[0.020865587517619,0.057800561189651,-0.0012966495705768],[-0.0015288182767108,0.077313788235188,0.062507756054401]],[[-0.12898844480515,-0.041991636157036,-0.029781306162477],[0.013721696101129,0.024547062814236,-0.072758868336678],[-0.030491806566715,0.059969794005156,0.055474866181612]],[[-0.10550291836262,-0.042394541203976,0.01345604006201],[-0.061276033520699,0.033219814300537,-0.00045527576003224],[-0.062945693731308,0.036857176572084,0.043804489076138]],[[0.026825044304132,0.064486838877201,-0.019522363319993],[-0.034180346876383,0.020597267895937,0.037160195410252],[0.017802489921451,-0.020482774823904,0.022709248587489]],[[-0.089693866670132,0.0046081840991974,-0.011036437936127],[0.0064328187145293,0.038349151611328,0.018472427502275],[-0.01363352034241,-0.075719386339188,-0.093252807855606]],[[0.019511504098773,0.038691986352205,-0.02517575211823],[0.010548484511673,0.025997893884778,-0.01474594604224],[0.05391738936305,-0.041830752044916,-0.042083710432053]],[[0.035278897732496,0.0090954303741455,0.02601389028132],[-0.0078971637412906,0.03612932190299,0.037564758211374],[-0.0053025167435408,0.040918622165918,0.077704906463623]],[[0.00094780023209751,-0.019719835370779,-0.007699501235038],[-0.047427982091904,-0.016734221950173,-0.027087474241853],[-0.0053364401683211,-0.021604361012578,-0.023368531838059]],[[-0.053163893520832,-0.0050141904503107,0.062328197062016],[0.085844285786152,0.055573765188456,0.016265926882625],[-0.11847615987062,-0.047055523842573,-0.02472953684628]],[[0.0022134161554277,0.084800153970718,0.036256566643715],[0.010972030460835,-0.046366989612579,0.041424695402384],[0.054723232984543,0.0037875899579376,-0.092953972518444]],[[0.073846936225891,-0.02940453030169,-0.068981766700745],[0.10269305109978,0.040270954370499,0.011042961850762],[0.071361988782883,0.026111710816622,0.049436390399933]],[[-0.060560617595911,-0.076367095112801,-0.002904316643253],[0.13283683359623,0.094541981816292,-0.068089827895164],[0.018173458054662,0.017186777666211,0.07819452881813]],[[-0.085814364254475,-0.023441847413778,0.022201724350452],[-0.064369402825832,-0.0030941057484597,-0.043350853025913],[-0.022628722712398,0.0030584407504648,-0.022867834195495]],[[-0.01051823887974,-0.032876972109079,-0.011417862959206],[0.043709892779589,0.037662625312805,0.00021508570353035],[0.0089432168751955,-0.01691565848887,-0.01976615935564]],[[0.12523375451565,0.012683983892202,-0.073709934949875],[0.059519350528717,-0.078969597816467,0.038695830851793],[0.023592168465257,-0.050948828458786,0.13673879206181]],[[-0.041903957724571,-0.010203235782683,0.064552471041679],[0.023976417258382,0.075114160776138,-0.029448099434376],[0.021757801994681,0.044000744819641,0.012972185388207]],[[0.00080729136243463,-0.022483261302114,-0.024612823501229],[0.040411680936813,0.045897293835878,-0.056636616587639],[-0.001902274787426,0.039995897561312,-0.035308260470629]],[[-0.0030010393820703,-0.023166183382273,0.025435496121645],[0.012352026998997,0.011911612004042,0.036798119544983],[-0.0060421265661716,0.011837904341519,0.030112713575363]],[[-0.06402026116848,0.066383391618729,-0.062842026352882],[-0.030992416664958,0.0028064977377653,0.040075950324535],[0.009274210780859,-0.03494805470109,0.060641873627901]],[[-0.076159879565239,-0.12112858146429,0.012486011721194],[3.6854282370768e-05,0.033648643642664,0.0061516840942204],[0.009716740809381,-0.043823599815369,-0.14966154098511]],[[-0.028113609179854,0.041095171123743,0.020022857934237],[0.076429598033428,-0.011736046522856,-0.018838739022613],[0.013085639104247,0.02929881028831,0.0015630840789527]],[[-0.053916145116091,-0.066224463284016,-0.042166542261839],[0.038660652935505,-0.057594276964664,-0.022723162546754],[0.086760602891445,0.035169091075659,0.084473222494125]],[[0.054099999368191,0.055074229836464,0.033889714628458],[0.10880099236965,0.039206873625517,-0.017427990213037],[0.044297441840172,0.081077799201012,0.068517580628395]],[[-0.020382096990943,0.005194503813982,-0.063225612044334],[0.014730080962181,-0.0055149015970528,0.018092112615705],[-0.0062347971834242,-0.19831641018391,-0.017496809363365]],[[0.030930910259485,0.046285349875689,0.035917453467846],[0.019377717748284,0.025356523692608,-0.0045427125878632],[5.3889300033916e-05,0.035064250230789,0.093666754662991]],[[0.011314292438328,-0.077122896909714,0.099237263202667],[-0.10564673691988,-0.044225685298443,0.038997028023005],[0.0089978110045195,-0.049423795193434,0.0020631041843444]],[[0.036973655223846,-0.038994580507278,0.0023136250674725],[-0.014943865127861,-0.041145015507936,-0.072308391332626],[-0.068866916000843,-0.011212606914341,-0.0014700756873935]],[[-0.044439822435379,-0.010726866312325,-0.0072841690853238],[0.12027003616095,-0.003399038920179,0.02143712900579],[-0.029003523290157,-0.034019764512777,-0.032941460609436]],[[0.029059818014503,0.027432074770331,0.0044576013460755],[-0.030189793556929,0.052239317446947,0.034602250903845],[0.027457935735583,0.03716929256916,-0.01108106598258]],[[-0.018379759043455,0.027953941375017,0.05508978292346],[-0.042751912027597,0.070903740823269,0.044175758957863],[-0.0731086358428,0.0011647869832814,0.069366715848446]],[[-0.02584657818079,0.0051228366792202,0.054812725633383],[0.075381264090538,-0.030268928036094,-0.059981945902109],[-0.028821244835854,-0.044686481356621,-0.036749441176653]],[[0.03466035425663,0.010359748266637,-0.044661436229944],[-0.0025235628709197,-0.034804910421371,-0.015185460448265],[-0.0019795843400061,-0.00056202651467174,-0.044948857277632]],[[-0.043212823569775,-0.045071080327034,-0.06418465077877],[-0.018273780122399,-0.087411098182201,0.034305401146412],[0.051816213876009,-0.043407078832388,-0.070909686386585]],[[0.031039038673043,0.021376533433795,-0.090043477714062],[0.02468428388238,0.054511964321136,-0.15871572494507],[0.0035359060857445,0.0088896825909615,-0.033041104674339]],[[-0.022814637050033,0.030184363946319,-0.060462933033705],[-0.095324344933033,0.02079888805747,-0.058177128434181],[-0.028096081689,0.074994340538979,0.039525546133518]],[[0.026515286415815,0.0029594555962831,-0.078852206468582],[0.0051337196491659,0.012143241241574,-0.072974294424057],[0.0033363059628755,0.045432638376951,0.019164985045791]],[[0.048727281391621,0.050390381366014,0.03856760263443],[-0.039604850113392,0.034554328769445,0.027587302029133],[-0.10408288985491,-0.0651521012187,-0.090680457651615]],[[-0.058701664209366,-0.015994632616639,0.014032479375601],[-0.042607791721821,-0.052328653633595,-0.031742874532938],[-0.012356853112578,0.022680507972836,-0.027405172586441]],[[-0.033802304416895,-0.0028047342784703,0.029665755107999],[-0.027266917750239,0.094536453485489,-0.0019733689259738],[0.078727848827839,0.1117219850421,-0.02890457212925]],[[0.072075337171555,-0.099252864718437,-0.009928678162396],[0.020864410325885,0.018101492896676,0.0048583745956421],[0.079066731035709,0.079507105052471,0.0070229070261121]],[[0.042325027287006,-0.033215910196304,0.023442963138223],[0.074549444019794,0.099956199526787,-0.066302299499512],[0.036288749426603,0.011431811377406,-0.030634719878435]],[[-0.010066711343825,-0.037160981446505,-0.037320755422115],[0.028234511613846,-0.022503461688757,0.027765402570367],[-0.09628364443779,-0.054169718176126,-0.058493062853813]],[[0.069590754806995,-0.037446405738592,-0.058464638888836],[-0.0036369864828885,0.021168239414692,-0.006728864274919],[0.009346435777843,-0.050170000642538,-0.067024096846581]],[[0.10787445306778,0.039289277046919,-0.0079083293676376],[0.044567111879587,-0.02647216245532,0.02355726622045],[0.017642546445131,0.0022150846198201,0.0082718664780259]],[[-0.058261681348085,-0.028510065749288,-0.0079853944480419],[0.020380647853017,0.026015719398856,-0.042433101683855],[-0.00013783492613584,-0.081161044538021,-0.058489605784416]],[[0.067222610116005,-0.017896436154842,0.0024110607337207],[-0.04797638207674,-0.021351063624024,0.05579449608922],[0.0082454765215516,-0.044266879558563,0.021579077467322]],[[-0.086599670350552,0.020962111651897,-0.0069580767303705],[0.021256279200315,-0.037042029201984,-0.12374624609947],[0.039922762662172,-0.028719667345285,-0.00014455607743002]],[[-0.0036543668247759,-0.022078210487962,-0.015780759975314],[-0.052500456571579,-0.021137131378055,-0.074083060026169],[0.004738150164485,-0.1085819453001,0.042960703372955]],[[0.027719220146537,0.078520357608795,0.023414609953761],[-0.08661987632513,-0.043242145329714,0.031416893005371],[0.050009697675705,-0.12617027759552,-0.01811290346086]],[[0.037541996687651,-0.066002190113068,0.003804495325312],[0.011159768328071,0.0033646195661277,-0.043505128473043],[-0.091706551611423,-0.04812104254961,0.086031176149845]],[[0.002734080189839,0.027122991159558,0.12239706516266],[0.044299211353064,0.063592053949833,-0.042056255042553],[0.017997303977609,0.063706450164318,0.10550190508366]],[[0.054554659873247,0.022657142952085,0.034946855157614],[0.0071276342496276,0.087024986743927,-0.079727739095688],[-0.11110627651215,0.075932957231998,0.024239318445325]],[[0.089664980769157,-0.043037038296461,0.11547934263945],[0.044339753687382,-0.039919823408127,0.018778640776873],[0.096841335296631,-0.013333001174033,0.062197864055634]],[[0.054048910737038,-0.029795216396451,0.035923719406128],[-0.0059717874974012,-0.055244717746973,-0.00077058665920049],[-0.078642413020134,-0.072278127074242,-0.0035878063645214]],[[-0.041025910526514,-0.0023517915979028,0.028461806476116],[-0.035915158689022,0.0088940933346748,-0.061390236020088],[0.038785848766565,0.033148720860481,-0.0036085210740566]],[[-0.021459920331836,0.0045349593274295,0.04422490671277],[0.029976850375533,-0.051335792988539,0.018683901056647],[0.0080845318734646,-0.0568787753582,0.066546238958836]],[[-0.0064093521796167,-6.9673301368312e-06,0.019469004124403],[0.0316102206707,0.018354615196586,-0.040186937898397],[-0.014223555102944,-0.030325939878821,0.012202196754515]],[[-0.0014098045649007,0.030070517212152,0.12942077219486],[-0.0028348290361464,-0.040871638804674,-0.0091513404622674],[-0.00043625570833683,0.053358566015959,-0.05138349160552]],[[0.041350673884153,-0.026331562548876,0.028648391366005],[0.014527075923979,-0.024243991822004,-0.0078560775145888],[0.027681864798069,-0.029986474663019,-0.00065296574030071]],[[-0.031903099268675,-0.085312969982624,0.015755457803607],[-0.0064154928550124,-0.10677281022072,-0.012111187912524],[0.0081083197146654,0.085772663354874,-0.082654066383839]],[[0.063347697257996,0.039113365113735,-0.031802892684937],[0.040052130818367,0.05315600708127,0.055562302470207],[-0.0045213936828077,0.0020090402103961,0.059383191168308]],[[-0.025998648256063,-0.053398843854666,0.03652024269104],[-0.0044243140146136,-0.043467164039612,-0.045595396310091],[0.070433378219604,0.046036649495363,0.03802677616477]],[[-0.1111593991518,-0.021359013393521,-0.02417142316699],[-0.0049326783046126,0.0033096489496529,-0.018233994022012],[0.047897085547447,-0.013616861775517,-0.021075004711747]]],[[[0.042080081999302,0.0040905294008553,-0.18590570986271],[-0.068485245108604,-0.089969001710415,-0.11312827467918],[-0.044349856674671,0.0083623249083757,-0.021983919665217]],[[-0.08804776519537,0.065908521413803,-0.13778679072857],[0.098031312227249,0.046163260936737,-0.149041056633],[0.099192425608635,-0.035146228969097,-0.014564421959221]],[[0.093000121414661,0.026296874508262,-0.17754806578159],[-0.12722644209862,0.060936596244574,-0.16680738329887],[0.015697229653597,-0.093604259192944,-0.22592687606812]],[[-0.072270892560482,0.16144515573978,0.0079078655689955],[-0.085243858397007,0.033258490264416,-0.01289873290807],[-0.12862661480904,0.016912348568439,-0.0050789103843272]],[[0.016059141606092,-0.053434286266565,-0.034287314862013],[0.063502535223961,0.10105305165052,0.060287125408649],[0.087534837424755,-0.031673315912485,0.090535692870617]],[[0.010372346267104,0.026236116886139,-0.017817359417677],[-0.022174410521984,-0.014408716931939,0.012998360209167],[0.04598394036293,-0.069472804665565,-0.035196427255869]],[[0.0081887803971767,-0.038083251565695,-0.042253468185663],[-0.085568882524967,-0.021901816129684,-0.1399289816618],[-0.090154699981213,-0.034733712673187,0.086734421551228]],[[0.0050893248990178,0.13378532230854,0.029093215242028],[0.0370386056602,0.079647228121758,0.003614466637373],[-0.099509172141552,-0.040573198348284,-0.021001219749451]],[[0.029266158118844,-0.058160919696093,0.057576544582844],[0.038582563400269,-0.10522982478142,-0.11228694021702],[0.034768715500832,0.061376210302114,0.0050006508827209]],[[-0.062097512185574,0.068568773567677,-0.14775727689266],[0.037006631493568,0.027402013540268,-0.16655974090099],[0.15640200674534,-0.046720638871193,-0.15520223975182]],[[0.030964180827141,0.012235146015882,0.049752473831177],[0.070663414895535,-0.039838258177042,-0.030667521059513],[-0.019863793626428,-0.072987362742424,-0.018156824633479]],[[-0.0025316562969238,-0.19384005665779,-0.14816123247147],[0.0069403895176947,-0.11537083983421,-0.13201628625393],[0.039147507399321,0.037743169814348,-0.10557169467211]],[[0.079282380640507,0.06143881380558,0.054430797696114],[0.0042984555475414,0.082220233976841,-0.027264196425676],[-0.055610846728086,0.035762466490269,-0.070235095918179]],[[0.0037801063153893,0.10418298840523,-0.025006296113133],[0.0086331097409129,-0.072588101029396,0.12600836157799],[-0.049253951758146,0.032375987619162,0.074083998799324]],[[-0.022427333518863,0.035675376653671,0.02077666670084],[0.017105491831899,-0.036099269986153,-0.019875740632415],[0.053628571331501,-0.010374626144767,-0.15841940045357]],[[-0.039322275668383,0.061573851853609,0.085835054516792],[-0.028438737615943,0.024706510826945,-0.025457611307502],[-0.023163605481386,-0.087194159626961,-0.031960755586624]],[[0.031165950000286,-0.010662546381354,-0.10241583734751],[-0.054351601749659,-0.075693972408772,-0.12029664963484],[-0.042137451469898,0.048116642981768,-0.047237422317266]],[[-0.041932884603739,-0.009702636860311,-0.06844399869442],[-0.06591410189867,0.035366151481867,-0.00067889771889895],[0.013185141608119,-0.028588216751814,-0.043659470975399]],[[-0.093624018132687,-0.011994171887636,0.025261797010899],[0.029295854270458,0.0058319834060967,0.0010632677003741],[0.042378094047308,-0.060713786631823,0.010888398624957]],[[0.049171004444361,0.074579738080502,-0.045666910707951],[0.029417222365737,0.0023452138993889,-0.024986999109387],[0.0016831732355058,-0.015487294644117,-0.041247803717852]],[[0.01199581567198,0.064278468489647,-0.0052299429662526],[0.058527741581202,0.062196794897318,0.071944169700146],[0.040825918316841,-0.076013706624508,-0.085626907646656]],[[0.070567771792412,0.15721686184406,0.033297128975391],[-0.071746818721294,0.018938366323709,0.020326472818851],[-0.19271971285343,-0.10856492072344,0.0001846855157055]],[[-0.029827358201146,-0.031497545540333,-0.05763041600585],[-0.068981565535069,-0.050832696259022,-0.059632308781147],[0.093387305736542,-0.043194938451052,0.016768496483564]],[[-0.044272039085627,0.15628418326378,0.047776725143194],[-0.075137965381145,0.062813386321068,0.099714130163193],[-0.090512126684189,0.0039628576487303,-0.028189100325108]],[[0.12677128612995,-0.061465498059988,0.073594942688942],[0.053029134869576,-0.043242681771517,0.017610037699342],[0.040892913937569,0.017523156479001,-0.081220895051956]],[[0.04787627607584,0.0081143975257874,0.012094206176698],[0.071033172309399,-0.074450336396694,0.02336934581399],[0.02299601957202,-0.040953122079372,0.059024937450886]],[[-0.0073653245344758,0.088502265512943,0.0061906957998872],[-0.086291193962097,-0.018538929522038,0.050270915031433],[-0.033166501671076,-0.07546491920948,0.081322118639946]],[[0.045858267694712,-0.041859120130539,-0.02648201584816],[0.10611259192228,-0.079440578818321,0.032928097993135],[0.02738936431706,0.014200902543962,-0.01402919087559]],[[-0.043358974158764,-0.21426559984684,-0.034829214215279],[0.0042544337920845,0.0036639801692218,-0.058762513101101],[0.014337386004627,-0.027708411216736,-0.044068310409784]],[[-0.042005021125078,-0.086614020168781,-0.18359318375587],[-0.065718255937099,-0.1027472615242,-0.17238458991051],[0.0051681804470718,-0.0067672501318157,-0.074462205171585]],[[0.023541478440166,-0.0020195138640702,-0.022633723914623],[0.04925499483943,-0.035327587276697,0.061652105301619],[0.028463898226619,-0.091265439987183,0.048559002578259]],[[0.010887894779444,0.035753879696131,-0.11513839662075],[-0.0082451766356826,-0.012541440315545,-0.031371757388115],[-0.012373236939311,-0.010575788095593,-0.1132740676403]],[[0.07048087567091,-0.018101159483194,0.063652671873569],[-0.033556193113327,-0.063997022807598,0.01018690597266],[0.071354046463966,0.047368235886097,0.040742360055447]],[[0.030245969071984,0.04524889215827,0.06826689094305],[0.064849175512791,0.10947657376528,0.0024537981953472],[0.11037869006395,0.012360371649265,-0.042346075177193]],[[0.07342653721571,-0.026247104629874,-0.10606495290995],[-0.062326326966286,0.044771544635296,-0.036232333630323],[0.024564377963543,0.062477681785822,-0.033873740583658]],[[0.047496221959591,0.044996660202742,-0.0043677310459316],[-0.0093403207138181,0.013657949864864,0.011340169236064],[0.059871464967728,-0.0075380117632449,-0.0066865691915154]],[[0.063763476908207,-0.053684081882238,-0.08389263600111],[0.031649459153414,-0.10643678158522,-0.062428943812847],[0.030699990689754,-0.05009263753891,-0.0219124276191]],[[-0.032813455909491,-0.0063550244085491,-0.053209129720926],[-0.052460119128227,-0.063952058553696,0.012252061627805],[0.098275937139988,-0.11936317384243,-0.15754868090153]],[[-0.085114233195782,-0.03076234459877,-0.078590802848339],[-0.02156094647944,-0.0093338051810861,0.023106699809432],[-0.013220035471022,-0.027129255235195,-0.077493719756603]],[[0.14209969341755,0.10825662314892,0.010647593066096],[0.035051789134741,0.097060866653919,-0.013434450142086],[0.040096305310726,-0.073649898171425,-0.10338432341814]],[[0.068429850041866,0.027008812874556,-0.053251143544912],[-0.065857291221619,0.057931683957577,0.046043250709772],[-0.055388446897268,-0.078022085130215,-0.068320155143738]],[[-0.10795397311449,0.0040226355195045,-0.11092406511307],[-0.075728736817837,0.0010012693237513,-0.050728749483824],[0.016590654850006,-0.071683563292027,-0.065318405628204]],[[-0.067583233118057,0.073704682290554,-0.072459906339645],[-0.0020695100538433,-0.01281466986984,0.16713996231556],[-0.023742916062474,-0.1373810172081,-0.011951909400523]],[[0.14180415868759,0.007857252843678,-0.14748547971249],[0.045852817595005,-0.0025790515355766,-0.12382923066616],[-0.088674075901508,0.0054560196585953,-0.047997895628214]],[[-0.073485910892487,0.018474832177162,0.0077781961299479],[-0.067447513341904,0.040027990937233,-0.026975721120834],[-0.082854196429253,-0.0012494714464992,-0.020721733570099]],[[0.044847305864096,0.045737270265818,0.033767595887184],[0.056846760213375,0.042931631207466,0.035995781421661],[-0.0048151290975511,-0.0054527521133423,0.06048234179616]],[[-0.021985283121467,-0.064525730907917,-0.0099907424300909],[0.061699651181698,0.00019451821572147,0.12584701180458],[0.11506006866693,-0.018858956173062,0.039663404226303]],[[0.069498851895332,-0.037139408290386,-0.065234161913395],[-0.014806132763624,-0.036468230187893,-0.16116344928741],[0.07459307461977,0.0086270561441779,-0.053107798099518]],[[-0.083718240261078,-0.0096933068707585,0.033438250422478],[-0.067325122654438,-0.05303768441081,0.0066150417551398],[0.055006433278322,0.062273725867271,0.014892039820552]],[[0.0042074788361788,-0.032755989581347,0.021657690405846],[0.038648746907711,-0.052096474915743,-0.016354205086827],[0.065758153796196,0.13715480268002,-0.025371190160513]],[[-0.059729959815741,0.02469027787447,-0.01285894587636],[0.1055855974555,-0.011044663377106,-0.015788022428751],[0.046263415366411,-0.086566247045994,0.059286747127771]],[[0.11809308081865,0.11945008486509,-0.033104684203863],[0.076197192072868,0.11122456938028,0.10382471233606],[-0.038186397403479,-0.04095795750618,0.070527195930481]],[[-0.055395379662514,0.0031050895340741,0.0072385151870549],[0.0078331241384149,-0.025051333010197,0.0026782606728375],[0.075751222670078,-0.021886439993978,-0.043243307620287]],[[0.031501907855272,-0.086176998913288,-0.039536993950605],[0.080688148736954,-0.19175530970097,0.010811268351972],[0.074776627123356,0.050244715064764,0.016893217340112]],[[-0.04675018414855,0.070967316627502,0.013992052525282],[-0.0051851239986718,0.010895062237978,0.014683120884001],[0.0099327666684985,0.055953249335289,-0.011030718684196]],[[-0.0067783473059535,-0.064660407602787,-0.0040905340574682],[0.040279060602188,-0.15977437794209,-0.029816497117281],[-0.049824744462967,-0.0031331565696746,0.011632360517979]],[[0.018302027136087,-0.052138198167086,-0.0027182523626834],[-0.1040598154068,-0.032276757061481,-0.18690015375614],[-0.046318024396896,-0.091369822621346,-0.23700046539307]],[[0.059420049190521,0.018523851409554,-0.033640835434198],[0.046188928186893,-0.018146455287933,0.099901512265205],[-0.036642089486122,-0.045548807829618,0.093669913709164]],[[-0.030136631801724,0.13489507138729,0.071905300021172],[-0.0061797578819096,-0.024389985948801,0.082857370376587],[-0.015327596105635,-0.063691005110741,0.18933582305908]],[[-0.05377334728837,-0.018635787069798,0.027044786140323],[-0.040487784892321,-0.01063655782491,0.067423261702061],[-0.023231768980622,0.051633544266224,0.0085575943812728]],[[-0.082017190754414,-0.12394566088915,-0.045119654387236],[0.10771083831787,-0.14197653532028,-0.10527839511633],[0.0099907908588648,-0.072268195450306,0.026840118691325]],[[-0.012413002550602,-0.11828907579184,0.030254134908319],[-0.067958392202854,0.085032783448696,-0.073737375438213],[-0.031992759555578,0.078466862440109,0.0012911368394271]],[[0.089955776929855,0.005435454659164,0.007238982245326],[0.038577239960432,-0.026292407885194,-0.018760027363896],[-0.016839565709233,-0.019268054515123,-0.0060424753464758]],[[0.059667028486729,-0.00079088500933722,-0.034392587840557],[-0.04137534275651,0.092250749468803,-0.054590810090303],[-0.052938036620617,-0.021186672151089,-0.058537933975458]]],[[[0.0054479129612446,-0.073217108845711,-0.041398648172617],[0.039157897233963,0.011534597724676,0.018351985141635],[0.0019571946468204,0.027338186278939,0.043454736471176]],[[-0.041108332574368,-0.0045645665377378,-0.028042051941156],[0.03034027852118,-0.019884493201971,0.01217115111649],[-0.0024982118047774,-0.026991106569767,-0.016027657315135]],[[0.0004249261401128,0.010418822988868,-0.011147239245474],[0.06203705817461,-0.024508723989129,-0.0040578134357929],[0.044543582946062,0.053238466382027,0.034469902515411]],[[0.064782001078129,0.001265577506274,-0.038777485489845],[-0.096124544739723,-0.040370356291533,-0.034168530255556],[-0.0094771273434162,0.10275971889496,0.049179092049599]],[[0.047083932906389,-0.052268128842115,-0.0863953307271],[0.011028456501663,0.0091913575306535,-0.013791085220873],[0.056117054075003,0.025473937392235,0.028715077787638]],[[-0.0010959305800498,0.069250985980034,0.040962882339954],[0.046085745096207,0.012703531421721,0.03217564150691],[-0.012538210488856,-0.062840290367603,-0.035770785063505]],[[-0.0021126009523869,0.0076177041046321,0.046048812568188],[0.022024627774954,-0.042740657925606,0.056299410760403],[-0.0080895898863673,0.0035380623303354,-0.012146565131843]],[[-0.00089342152932659,-0.0067622163332999,0.020092956721783],[-0.050123900175095,0.045990031212568,0.016277942806482],[0.041890852153301,0.0060087023302913,-0.062502153217793]],[[0.0080202938988805,0.00091079610865563,-0.069393500685692],[0.081378571689129,-0.067369297146797,0.0051720952615142],[0.011551763862371,-0.033317930996418,-0.039334885776043]],[[0.002602553460747,0.033840894699097,0.038936153054237],[0.0043966118246317,0.046881966292858,0.0059638861566782],[-0.077958427369595,-0.030793128535151,-0.025457091629505]],[[-0.030308427289128,0.010741217061877,0.049582246690989],[-0.034121681004763,0.046009708195925,-0.022344134747982],[0.036521010100842,-0.041649043560028,0.054469335824251]],[[-0.020793406292796,0.0025115292519331,0.00054333417210728],[-0.032355505973101,0.062259823083878,-0.0033107434865087],[0.041470937430859,0.013591304421425,0.056940983980894]],[[0.040213033556938,0.063768677413464,0.04991427809],[0.010976985096931,-0.035194769501686,-0.022202355787158],[-0.011943089775741,-0.040868636220694,-0.056937362998724]],[[0.061538770794868,-0.023510882630944,0.035661637783051],[0.029942391440272,-0.00613904139027,0.0045683011412621],[0.051435988396406,-0.016665255650878,-0.02600722014904]],[[0.003402397967875,-0.017256923019886,0.057641610503197],[0.0042382478713989,0.012148277834058,0.051100373268127],[0.017653595656157,0.067403018474579,0.017998330295086]],[[0.10771379619837,0.032018512487411,0.017694758251309],[-0.0086615867912769,-0.039935857057571,-0.020481914281845],[0.0067742899991572,0.019120393320918,-0.015168931335211]],[[0.0015054484829307,-0.019324177876115,-0.06188590452075],[-0.0059308661147952,-0.0062296842224896,0.053031358867884],[-0.049156352877617,-0.0091051487252116,-0.0037882928736508]],[[0.034573085606098,0.021882919594646,-0.085106663405895],[0.0017902081599459,0.020718486979604,-0.047828365117311],[-0.031782150268555,-0.012464708648622,0.015387526713312]],[[0.023531120270491,-0.0068621477112174,0.025571851059794],[0.04535311833024,0.03819864243269,-0.037651833146811],[0.056774992495775,-0.035420086234808,-0.050430212169886]],[[0.047076594084501,0.01438248436898,-0.014663728885353],[-0.046947821974754,0.027224391698837,-0.0025901319459081],[0.027997970581055,-0.0030656498856843,0.0039573279209435]],[[0.0056491615250707,0.012226581573486,0.022172994911671],[-0.042205363512039,-0.014337489381433,0.0071565401740372],[0.032288044691086,0.023816594853997,0.0045544384047389]],[[0.076348505914211,0.011837388388813,0.02767388895154],[0.051756720989943,-0.01359879784286,0.058651059865952],[-0.005765026435256,-0.036384746432304,0.050699949264526]],[[0.063594438135624,0.00035088721779175,-0.029451839625835],[0.012883419170976,0.010987050831318,0.021200841292739],[0.017245635390282,0.0020618471316993,-0.045970745384693]],[[0.06350239366293,0.029309287667274,0.12869483232498],[0.13775636255741,0.094873234629631,0.043643478304148],[0.083299338817596,0.088027842342854,0.030558329075575]],[[0.027173457667232,0.0066896192729473,-0.017724700272083],[0.026296032592654,0.033818531781435,0.057643786072731],[-0.0088904639706016,-0.0046642576344311,0.070418648421764]],[[0.0037975241430104,0.044881854206324,-0.02434628456831],[0.020968129858375,0.017685171216726,0.0329859405756],[0.0086078299209476,-0.0042566996999085,-0.049019943922758]],[[0.027424100786448,0.13266764581203,0.029551211744547],[0.026007311418653,0.063298612833023,-0.023917021229863],[-0.048365730792284,-0.027775336056948,0.07670409232378]],[[0.035882133990526,0.038857843726873,-0.030244445428252],[-0.011471224948764,-0.0027551739476621,-0.019435230642557],[-0.036897722631693,-0.0053913597948849,-0.0026546998415142]],[[0.040744971483946,0.032474096864462,0.018084958195686],[0.018557658419013,0.083362929522991,0.0136738428846],[0.052494417876005,0.021105321124196,0.041087742894888]],[[0.019551217556,-0.0015406671445817,0.019632609561086],[-0.02781467884779,-0.067233271896839,0.017187766730785],[0.040704116225243,-0.0085014961659908,0.02064530365169]],[[-0.013679772615433,0.12849171459675,0.022053388878703],[0.061696145683527,0.010888202115893,-0.027457794174552],[-0.049449842423201,-0.067818358540535,-0.060482565313578]],[[0.097387582063675,0.074036821722984,0.060010198503733],[-0.034319814294577,0.01440033596009,-0.02936247177422],[0.00043516073492356,0.047273281961679,0.020110609009862]],[[-0.084456540644169,0.012800411321223,-0.010684197768569],[-0.0054236152209342,0.011714780703187,0.00069260521559045],[-0.038428470492363,0.047761451452971,0.013041316531599]],[[0.037127416580915,0.023884056136012,0.00063717854209244],[0.034950066357851,0.032067973166704,0.011131918057799],[0.052472699433565,0.077731736004353,0.090949393808842]],[[0.048029012978077,-0.013229864649475,0.0022312342189252],[0.017507921904325,0.024240443482995,0.033897571265697],[0.060059458017349,0.0364995226264,0.0059398766607046]],[[-0.025657618418336,0.014962355606258,-0.0020985926967114],[-0.049096416682005,-0.093020506203175,0.0058271093294024],[-0.027558380737901,0.0041704881004989,0.05835309997201]],[[0.0056554172188044,-0.024423483759165,-0.014220128767192],[0.029134532436728,0.056751281023026,0.0041669593192637],[0.00060453556943685,-0.012591426260769,0.038969356566668]],[[0.028885932639241,0.033258814364672,-0.011391128413379],[0.041056603193283,0.013901367783546,0.059393685311079],[0.0043677529320121,-0.060793336480856,-0.0021855244413018]],[[0.065038055181503,0.027920182794333,0.054079350084066],[0.04012119024992,0.059878829866648,0.00065275776432827],[-0.005142820533365,-0.012827292084694,-0.10656379163265]],[[0.085519388318062,0.093194141983986,0.10865333676338],[0.051108349114656,0.055911429226398,0.071521766483784],[0.031505893915892,-0.010008375160396,0.066923268139362]],[[0.068761050701141,0.031816177070141,0.0083578443154693],[0.13807916641235,0.068855710327625,0.074003957211971],[0.12472192198038,0.079970389604568,0.048507872968912]],[[-0.011142278090119,0.044250175356865,0.039424762129784],[0.0097559848800302,-0.023044891655445,-0.004668100271374],[0.065043888986111,0.042447365820408,-0.03881224244833]],[[0.033366709947586,-0.00090969365555793,0.012704217806458],[0.028975304216146,-0.025990607216954,0.0667729601264],[-0.0022913140710443,0.072965614497662,0.032761290669441]],[[0.020648317411542,0.01765301823616,-0.046976357698441],[0.02319510653615,-0.027822433039546,0.014385977759957],[0.011515937745571,-0.022266404703259,-0.057206984609365]],[[-0.05572322010994,-0.050087340176105,-0.018361454829574],[0.039642348885536,0.014385960064828,-0.02866892144084],[-0.013749427162111,-0.015097644180059,0.03797858953476]],[[0.026906033977866,0.00085814046906307,0.049532450735569],[0.036166645586491,0.019685482606292,0.097867779433727],[-0.090064570307732,0.0062788245268166,-0.0033848979510367]],[[-0.016804914921522,-0.0064058541320264,-0.04007201641798],[0.045065831393003,-0.0013474082807079,-0.035962749272585],[-0.087758801877499,0.021042235195637,0.043197087943554]],[[-0.025745449587703,0.017670964822173,0.021564519032836],[-0.053839717060328,0.012090204283595,-0.015642730519176],[-0.012769983150065,0.011886312626302,-0.0026165419258177]],[[-9.7669544629753e-05,0.065723329782486,-0.016486985608935],[0.0046076904982328,0.022980516776443,-0.029159346595407],[0.025323176756501,0.0095272269099951,0.02662674896419]],[[0.037063140422106,0.019426058977842,0.049172922968864],[-0.033662486821413,0.023262875154614,-0.0064689428545535],[0.017687615007162,0.094965130090714,-0.016497066244483]],[[-0.027615336701274,-0.050628706812859,0.028286695480347],[-0.032868038862944,0.0048561962321401,-0.033594988286495],[-0.0038682869635522,-0.013945852406323,-0.0083470493555069]],[[0.099902950227261,-0.036565706133842,0.045627631247044],[0.067673288285732,0.083303786814213,0.11420193314552],[-0.058711059391499,0.10054357349873,-0.0019349412759766]],[[0.05683970451355,0.092316903173923,0.059735991060734],[0.073879808187485,0.047305006533861,0.0065046795643866],[-0.048220813274384,0.011477309279144,0.079984545707703]],[[0.025504425168037,-0.017215447500348,-0.057644389569759],[0.028315886855125,-0.0069952155463398,0.012268483638763],[0.015853576362133,-0.032252129167318,0.0338517986238]],[[-0.063403069972992,0.005846634041518,-0.0096485940739512],[-0.049190834164619,-0.0037906360812485,0.04170798510313],[-0.007522507570684,-0.029711680486798,0.021170014515519]],[[-0.090014845132828,-0.058146361261606,0.035988543182611],[0.00031495533767156,0.034103322774172,-0.0017224883195013],[0.023549953475595,-0.03934657946229,0.01792380400002]],[[-0.010424236766994,0.022565767168999,0.0073993997648358],[-0.013904455117881,-0.037575427442789,0.0045087458565831],[0.076580114662647,0.029997739940882,-0.01234174426645]],[[-0.0044684633612633,0.006937752943486,-0.010667769238353],[-0.0009778079111129,-0.029056761413813,0.026864387094975],[-0.031978998333216,-0.013340429402888,-0.00035278574796394]],[[0.071039155125618,0.099267475306988,0.030188938602805],[0.12891446053982,0.061735555529594,0.11724007874727],[0.073810897767544,0.076881445944309,0.041704162955284]],[[-0.0064851935021579,0.0069882348179817,-0.02092868834734],[-0.041327107697725,-0.031893961131573,-0.013326847925782],[0.047840941697359,0.049398601055145,0.053262639790773]],[[0.041606083512306,-0.027870327234268,-0.007233411539346],[0.0045551746152341,0.077463813126087,-0.0094403168186545],[-0.0055628563277423,0.017916018143296,-0.059067025780678]],[[-0.037282384932041,-0.015715483576059,-0.024650836363435],[-0.040537744760513,0.0029965913854539,-0.0095134750008583],[0.057689715176821,0.0042262743227184,-0.00066061032703146]],[[-0.042900189757347,0.059674635529518,-0.011776017956436],[0.0093294754624367,-0.00047679190174676,0.032633129507303],[-0.053475648164749,-0.0090248584747314,0.030021196231246]],[[-0.023973532021046,-0.04659840092063,0.009369439445436],[-0.043883569538593,-0.065789803862572,-0.0054994369857013],[-0.024296214804053,0.011943200603127,0.022496994584799]]],[[[-0.12164476513863,0.0048886574804783,-0.013984417542815],[-0.041194777935743,0.016502898186445,0.00047897416516207],[-0.082111217081547,-0.047689020633698,-0.0015120264142752]],[[-0.04573642462492,0.16267345845699,0.070643112063408],[-0.026259949430823,-0.037234891206026,-0.036254346370697],[0.044353302568197,0.13324567675591,0.13588635623455]],[[-0.17763638496399,-0.13151863217354,-0.13464657962322],[-0.0017461775569245,-0.083379827439785,0.066700555384159],[-0.073271974921227,-0.014897372573614,0.14991706609726]],[[-0.056558970361948,-0.0039216307923198,-0.13438262045383],[-0.044077441096306,-0.062297947704792,0.027776919305325],[-0.012318400666118,-0.016553262248635,0.00055834749946371]],[[0.0042444518767297,-0.05164423212409,0.036239672452211],[0.0058822757564485,0.020148122683167,0.026752017438412],[-0.040635142475367,0.045866187661886,-0.00875523686409]],[[-0.030026877298951,-0.059144582599401,0.046468041837215],[-0.05847841873765,-0.057298500090837,0.063139677047729],[-0.053821496665478,-0.13139997422695,-0.079505510628223]],[[-0.025770928710699,-0.049683056771755,0.0091465301811695],[-0.026687659323215,0.022590111941099,0.043843895196915],[-0.0051756035536528,0.074085079133511,0.050536185503006]],[[-0.013263784348965,0.10299178212881,0.039275851100683],[-0.037442147731781,-0.0089662279933691,0.036956436932087],[0.066183432936668,0.065028756856918,0.14414891600609]],[[0.07749180495739,0.034993030130863,0.053405527025461],[-0.031633794307709,-0.0057279234752059,-0.038596007972956],[-0.021887557581067,-0.016822166740894,0.025020845234394]],[[-0.076456546783447,-0.0014599154237658,-0.10306668281555],[0.018070792779326,-0.022118993103504,0.0026622875593603],[-0.044654708355665,-0.074151337146759,-0.021169409155846]],[[0.0014138635015115,0.029449434950948,-0.0036004995927215],[-0.0084816599264741,0.066628620028496,0.0045090820640326],[-0.0015131380641833,-0.0053789429366589,-0.026598569005728]],[[0.15221910178661,-0.031565513461828,-0.01580704562366],[0.05315538495779,0.029284756630659,0.0024982141330838],[-0.092583253979683,0.0055718305520713,-0.0061709810979664]],[[-0.029339555650949,-0.070265330374241,0.020345471799374],[-0.018222749233246,0.025251083076,-0.017425686120987],[-0.0022379131987691,-0.016331899911165,-0.032032210379839]],[[-0.12051548063755,-0.078145869076252,-0.071135029196739],[-0.012267097830772,-0.018744925037026,-0.069987013936043],[0.024871461093426,0.012806502170861,-0.16869848966599]],[[-0.069667764008045,0.011076813563704,0.014853579923511],[-0.057608377188444,0.0046548005193472,-0.028009004890919],[-0.018377972766757,0.02520159445703,-0.049349956214428]],[[0.25706288218498,-0.0159917101264,-0.082382120192051],[0.047091331332922,0.021235581487417,0.028627393767238],[-0.088521368801594,0.023874331265688,-0.028100928291678]],[[0.082365572452545,0.11600434035063,0.013815779238939],[0.072399541735649,-0.0019859191961586,-0.035029012709856],[-0.030119562521577,0.078831680119038,-0.053825188428164]],[[-0.054602857679129,-0.062802724540234,-0.016980640590191],[0.0058132712729275,-0.0031648394651711,0.10800526291132],[0.012486899271607,0.034093718975782,0.028779953718185]],[[0.033618740737438,0.055331785231829,-0.0026885820552707],[0.011393467895687,0.032576400786638,-0.057069282978773],[0.037358295172453,-0.020439140498638,0.026631396263838]],[[-0.023685190826654,-0.042347896844149,0.092622816562653],[-0.027028238400817,-0.039431866258383,-0.0094777541235089],[-0.0059061204083264,0.03419678658247,0.048599578440189]],[[-0.070923708379269,-0.17754259705544,-0.069905921816826],[-0.017549125477672,-0.050075240433216,-0.09153701364994],[0.036741405725479,0.039915457367897,0.062682643532753]],[[-0.058549966663122,-0.049560952931643,-0.010510291904211],[-0.00073185033397749,0.0070978170260787,0.036337599158287],[0.076386637985706,0.041796404868364,0.060251519083977]],[[-0.042796064168215,-0.016033329069614,0.055398892611265],[-0.026434969156981,-0.11163289099932,-0.077845260500908],[-0.040853679180145,0.001351090031676,-0.10920927673578]],[[-0.050383925437927,0.083383686840534,0.067269705235958],[0.015484101139009,0.062010411173105,0.038831803947687],[0.085274249315262,0.034957207739353,0.13141626119614]],[[-0.018206499516964,-0.085938781499863,0.079805634915829],[0.11584707349539,-0.015774000436068,-0.067506916821003],[0.020174793899059,-0.017095569521189,-0.16633927822113]],[[-0.0047217956744134,0.0038789701648057,0.016628982499242],[-0.053995650261641,-0.0061769662424922,0.027186568826437],[0.0029143691062927,0.040101792663336,0.12113675475121]],[[-0.058171346783638,0.0048869797028601,0.00030908396001905],[0.085650816559792,-0.0073436880484223,-0.033101867884398],[0.044126082211733,-0.012151149101555,-0.11724983155727]],[[-0.15100935101509,-0.01089870557189,-0.075126983225346],[-0.0048198341391981,-0.01119608618319,0.016697488725185],[-0.045060828328133,-0.05968201905489,0.023238264024258]],[[0.03292104229331,0.042645394802094,0.0015755309723318],[0.043604679405689,-0.027000315487385,-0.030576307326555],[0.029583701863885,0.023841207846999,0.093912795186043]],[[0.044253375381231,0.11832129955292,0.044003896415234],[0.025378370657563,0.088319189846516,0.098539412021637],[0.035865191370249,-0.0056936065666378,0.052854884415865]],[[0.01220712903887,-0.01243796851486,0.093972705304623],[-0.0017797296168283,0.0075256749987602,0.076404459774494],[-0.0053669167682528,-0.016748938709497,0.040511701256037]],[[-0.17456044256687,-0.090606994926929,0.021184287965298],[0.0078313583508134,0.024594677612185,0.053861077874899],[0.075429655611515,0.035835076123476,-0.03026195988059]],[[0.03058953769505,0.015847211703658,-0.045165069401264],[0.0093199433758855,0.017478292807937,0.033649455755949],[0.046540509909391,0.011688173748553,-0.02063337340951]],[[0.0072834542952478,0.05538622289896,-0.0051169139333069],[0.022905780002475,0.012197897769511,0.14311045408249],[-0.088115371763706,-0.036155562847853,-0.02165100723505]],[[-0.045898821204901,-0.092490933835506,0.019900696352124],[0.035111926496029,-0.090324968099594,0.046911984682083],[0.0091111594811082,-0.13167905807495,-0.01517416536808]],[[0.043171722441912,-0.029755007475615,0.034851357340813],[0.019519796594977,0.087978862226009,-0.032863292843103],[0.043988317251205,-0.0099104549735785,0.00035744009073824]],[[-0.013700509443879,0.043118346482515,-0.082294389605522],[-0.029742924496531,0.076531514525414,-0.045546341687441],[-0.075414583086967,-0.027308527380228,0.041558384895325]],[[-0.01293514482677,0.084564782679081,0.045999832451344],[0.099819637835026,0.016442704945803,0.053842209279537],[-0.0067831105552614,0.042917434126139,0.18064096570015]],[[0.093592196702957,-0.048464063555002,0.069565705955029],[0.10647193342447,-0.049951732158661,0.031247513368726],[-0.025647571310401,0.032613884657621,-0.015102683566511]],[[-0.10969777405262,-0.11797717213631,-0.024342177435756],[-0.042635265737772,-0.10145907849073,-0.065644860267639],[-0.0029007308185101,-0.1790162473917,-0.11420594900846]],[[-0.089745499193668,-0.0071740560233593,0.025002479553223],[0.010500052012503,-0.02712470293045,-0.084870651364326],[0.080314725637436,-0.044424641877413,0.068298690021038]],[[0.029245249927044,-0.077394023537636,0.080985255539417],[0.07353813201189,0.0051489030010998,0.081875331699848],[0.0084648095071316,-0.023339340463281,0.03225078061223]],[[-0.12512421607971,-0.0312818326056,-0.092337772250175],[-0.012353061698377,-0.070068344473839,0.015455677174032],[-0.062169898301363,-0.065666377544403,-0.16545420885086]],[[0.075405739247799,-0.0029146180022508,0.069082126021385],[-0.031370088458061,0.0032238627318293,-0.022605827078223],[0.030889084562659,-0.029113074764609,-0.019786957651377]],[[0.013741360977292,-0.070137560367584,-0.039788234978914],[-0.077989786863327,0.047307834029198,0.024748532101512],[0.0082265250384808,-0.033695224672556,-0.024790102615952]],[[-0.064581632614136,-0.058207094669342,0.055395163595676],[-0.071302011609077,0.0075069605372846,-0.030738219618797],[-0.021776391193271,-0.015989255160093,0.015829741954803]],[[-0.069120727479458,-0.030641052871943,0.023863242939115],[-0.012446327134967,0.016329858452082,-0.042095933109522],[-0.040669679641724,-0.050179485231638,0.040141995996237]],[[-0.030672263354063,-0.082682609558105,-0.014388046227396],[0.033310022205114,-0.0011746018426493,-0.059672351926565],[-0.024322248995304,0.010735462419689,-0.016445424407721]],[[-0.13143883645535,-0.0031478994060308,-0.081079550087452],[0.012096046470106,0.03557426482439,0.017833527177572],[-0.066780164837837,-0.014402993954718,-0.12185718864202]],[[-0.08912155777216,-0.0040480946190655,-0.0085797626525164],[0.013886329717934,-0.083808422088623,0.063097186386585],[0.035766061395407,-0.22794759273529,-0.10397409647703]],[[0.011715156957507,-0.0018233623122796,0.0075623174197972],[0.012831777334213,0.049135304987431,0.046630132943392],[-0.0060101840645075,-0.05883564427495,-0.051784165203571]],[[-0.037295125424862,0.054231975227594,-0.044828239828348],[0.0025421653408557,0.050909124314785,-0.038854125887156],[0.052356753498316,0.050041038542986,0.13599964976311]],[[0.16634799540043,-0.065952576696873,-0.023742167279124],[-0.13019289076328,-0.0013454735744745,-0.049504574388266],[-0.020478527992964,0.038389049470425,-0.13032934069633]],[[0.087142296135426,0.082807198166847,0.07633101195097],[0.0014349629636854,-0.063968852162361,-0.0019988170824945],[-0.058238983154297,0.030257230624557,-0.094092540442944]],[[-0.14584363996983,-0.072097547352314,-0.029106115922332],[-0.044245541095734,-0.023504633456469,-0.038246236741543],[-0.051870387047529,0.046318341046572,-0.11069874465466]],[[-0.080742076039314,-0.047768451273441,0.0049245795235038],[0.014980992302299,-0.050987113267183,0.029419312253594],[0.014869420789182,0.0090846819803119,0.018980117514729]],[[-0.045236833393574,-0.046568807214499,0.070064038038254],[-0.041203115135431,0.016704067587852,-0.041014619171619],[0.014641595073044,-0.028580324724317,0.0098583977669477]],[[0.00067069509532303,-0.040444005280733,-0.018978090956807],[-0.019713619723916,-0.069098383188248,-0.20414409041405],[-0.053594008088112,0.04581132158637,-0.27627882361412]],[[-0.036529306322336,0.098647475242615,0.0088439546525478],[0.0048844404518604,0.064635075628757,-0.016778560355306],[0.021368939429522,0.045219119638205,0.053647246211767]],[[0.035054560750723,0.011908962391317,-0.0086761815473437],[0.051066819578409,0.035666260868311,-0.035893663764],[-0.0067049469798803,-0.0089691812172532,-0.064171262085438]],[[0.034714806824923,0.019798981025815,-0.048760373145342],[0.00092643720563501,-0.021087678149343,0.035324163734913],[-0.098620913922787,-0.046426840126514,-0.096169471740723]],[[-0.03150811418891,-0.052658304572105,0.14386709034443],[-0.028601119294763,-0.054336156696081,0.07315194606781],[0.035464700311422,0.0024214540608227,0.016636231914163]],[[-0.00053577125072479,0.023812662810087,0.041849680244923],[-0.033783193677664,-0.036782052367926,-0.018364313989878],[0.010382925160229,-0.050265733152628,-0.020809706300497]],[[-0.11545515805483,-0.029058232903481,0.0096217021346092],[-0.0019494910957292,-0.089024744927883,-0.06159333139658],[0.053232084959745,-0.053007170557976,-0.010084231384099]]],[[[0.018666360527277,-0.095780789852142,-0.070602022111416],[0.074214302003384,0.061515428125858,0.10309611260891],[-0.028360582888126,-0.042020179331303,0.02429880015552]],[[-0.13984689116478,-0.10927677899599,-0.01199109479785],[0.084925606846809,0.0097535075619817,0.019121935591102],[0.015717821195722,0.072934679687023,0.072234869003296]],[[-0.015496483072639,-0.034264340996742,-0.074085474014282],[0.023913623765111,-0.10144042223692,0.098821975290775],[-0.035033099353313,-0.026877988129854,-0.0122782420367]],[[-0.048073351383209,0.089955389499664,0.095072403550148],[-0.051111739128828,0.0014423879329115,-0.0085128713399172],[-0.052875846624374,-0.094317629933357,-0.088305525481701]],[[0.1501470208168,0.0091777732595801,-0.047058418393135],[0.033876236528158,-0.033513318747282,-0.0010187963489443],[0.050413772463799,0.059300385415554,-0.043186005204916]],[[-0.0010247532045469,0.026686981320381,0.036397706717253],[-0.04334968701005,-0.02256691083312,0.03791207075119],[-0.0043025696650147,-0.059496499598026,-0.13503152132034]],[[-0.042649783194065,-0.058480191975832,-0.056315258145332],[0.012921259738505,0.0031331451609731,-0.025095470249653],[-0.077293924987316,-0.024217747151852,0.035878513008356]],[[-0.024785563349724,0.093659847974777,0.16661557555199],[0.042914170771837,-0.10055951029062,-0.088348180055618],[0.0086885122582316,0.097349360585213,-0.0086058126762509]],[[-0.072110511362553,0.035032466053963,0.0092479540035129],[-0.042465720325708,-0.058961402624846,0.00022267377062235],[0.028043737635016,-0.098800763487816,-0.034751903265715]],[[-0.076939113438129,-0.045730225741863,-0.034365128725767],[0.013236314058304,0.0096266902983189,-0.0080546112731099],[0.030383635312319,0.028299549594522,0.045826014131308]],[[0.026925651356578,-0.048893019556999,-0.055509269237518],[0.087056830525398,0.036166120320559,-0.057457555085421],[-0.048713702708483,-0.025259457528591,-0.093654312193394]],[[0.077598616480827,-0.183878287673,-0.12725582718849],[0.0096649760380387,0.06844462454319,0.032654713839293],[-0.11551530659199,-0.017135126516223,-0.014944776892662]],[[0.030002200976014,0.020626442506909,-0.031066892668605],[0.061264492571354,0.045794531702995,-0.036569885909557],[-0.010472067631781,0.023973420262337,0.026603711768985]],[[0.061883728951216,-0.0034960226621479,-0.081796921789646],[-0.00047297932906076,0.073387689888477,0.045052617788315],[-0.058269169181585,-0.0050120339728892,-0.010165118612349]],[[-0.13404023647308,-0.03922500833869,-0.078295722603798],[0.056476809084415,-0.055453568696976,-0.090517230331898],[-0.0038306398782879,0.0035945859272033,-0.024172129109502]],[[0.02640144713223,-0.0070723984390497,-0.0049975523725152],[0.0096148140728474,0.018984654918313,-0.024403184652328],[-0.090302743017673,-0.090983830392361,-0.044875752180815]],[[0.048935774713755,-0.024061881005764,-0.00092983554350212],[0.060167454183102,0.041525315493345,-0.013429361395538],[0.081534594297409,0.051179129630327,-0.079326510429382]],[[0.06954237818718,0.034582901746035,-0.050697334110737],[0.012261957861483,-0.029637282714248,0.02374448813498],[-0.090216681361198,-0.053226567804813,-0.084686294198036]],[[-0.0033684188965708,0.092352949082851,0.089716404676437],[-0.044882163405418,-0.0767462849617,0.096194840967655],[0.063992097973824,-0.035641003400087,0.0039540156722069]],[[-0.00052139075705782,0.016259064897895,-0.057731576263905],[-0.0024540130980313,0.001194084296003,0.023709462955594],[0.01407440751791,0.014819342643023,-0.033630229532719]],[[0.0022498359903693,-0.063940905034542,-0.058917928487062],[0.030884817242622,0.10250260680914,0.039628438651562],[-0.035061933100224,-0.11892818659544,0.0025015324354172]],[[0.076870530843735,-0.05351784080267,0.075830034911633],[-0.05201119557023,-0.093286342918873,-0.16642735898495],[-0.0034953923895955,-0.025909440591931,0.039177108556032]],[[0.014143477194011,0.068137049674988,-0.021782223135233],[-0.089476250112057,-0.033370312303305,-0.028835402801633],[-0.042337518185377,-0.083608701825142,-0.044650852680206]],[[0.15823975205421,0.051535416394472,0.03749692440033],[0.091224193572998,-0.0031858345028013,-0.086598098278046],[-0.02982135862112,0.015068630687892,0.067480616271496]],[[-0.013000218197703,0.0084515558555722,0.04790049046278],[-0.069536656141281,-0.080408051609993,-0.037179958075285],[0.065346263349056,0.14196108281612,-0.015081893652678]],[[0.041519433259964,0.044189155101776,-0.013696421869099],[0.026966765522957,-0.012662924826145,0.047692362219095],[-0.0068788006901741,0.0015533256810158,0.0044138124212623]],[[0.0022962635848671,-0.063937410712242,-0.15059009194374],[0.0046188621781766,-0.082123413681984,-0.039942156523466],[0.11120640486479,-0.01947052963078,0.045520927757025]],[[-0.11921881884336,0.0029743518680334,0.17645931243896],[0.015397256240249,-0.014296635054052,-0.055443529039621],[0.031512498855591,0.068948447704315,0.076212711632252]],[[0.051995899528265,-0.022672249004245,-0.058764357119799],[0.04505705088377,-0.00036414168425836,-0.032507609575987],[-0.02478894405067,0.018703380599618,0.093854561448097]],[[0.017556045204401,0.012758079916239,-0.027137031778693],[0.017845692113042,0.01106083765626,-0.058472953736782],[-0.0079756304621696,-0.02400185726583,-0.022455003112555]],[[0.0045486418530345,0.064187735319138,-0.041939228773117],[-0.017733851447701,-0.011422314681113,-0.089064434170723],[0.04166417568922,-0.0042618508450687,0.066291525959969]],[[0.026736781001091,-0.00057572079822421,-0.034853063523769],[0.010416590608656,0.038223884999752,-0.04733819514513],[-0.030983157455921,0.030381241813302,0.010660166852176]],[[-0.060980129987001,-0.098680272698402,-0.0043231197632849],[0.032066144049168,0.0057116192765534,-0.071293532848358],[-0.07552183419466,0.031941100955009,-0.13664844632149]],[[0.03601148724556,-0.12554681301117,-0.0048029171302915],[-0.023310022428632,0.015834674239159,-0.065908923745155],[-0.15931066870689,0.041254345327616,-0.025964558124542]],[[-0.20060557126999,-0.094360686838627,0.062695041298866],[-0.063761942088604,0.024911537766457,-0.047392245382071],[0.023579869419336,-0.074893191456795,0.024317191913724]],[[-0.030860017985106,0.028595549985766,0.052356023341417],[0.036574766039848,-0.016559304669499,-0.073256149888039],[-0.063441306352615,0.013078276067972,0.12541541457176]],[[-0.048690915107727,-0.027644287794828,-0.037024199962616],[0.00091181485913694,0.039271008223295,0.038761261850595],[-0.04400933906436,-0.046775974333286,-0.013597073033452]],[[-0.07053004950285,-0.085863813757896,-0.12691740691662],[-0.14224919676781,0.071808874607086,0.0068596662022173],[-0.056432154029608,-0.05928161367774,0.037550769746304]],[[-0.20429638028145,-0.072475329041481,0.0047443620860577],[-0.005146105773747,-0.049527272582054,-0.034499485045671],[-0.0089963963255286,-0.034074161201715,0.16022700071335]],[[-0.031958419829607,-0.17179058492184,-0.028666019439697],[0.070425674319267,0.019321762025356,-0.070692911744118],[-0.046374309808016,-0.055873341858387,-0.10686679184437]],[[-0.068399764597416,-0.0099202003329992,0.050359793007374],[-0.030068572610617,0.070268228650093,-0.049331270158291],[-0.031345836818218,-0.087137408554554,-0.022251300513744]],[[-0.051035422831774,-0.0036698980256915,0.14291653037071],[-0.016467910259962,-0.01943732239306,-0.025187201797962],[-0.016639534384012,0.012570600956678,0.07345674932003]],[[0.019579842686653,0.056589931249619,0.051480315625668],[-0.080480515956879,0.012792465277016,-0.14592261612415],[-0.077425368130207,0.051407564431429,-0.064362421631813]],[[-0.055538687855005,-0.04351082444191,0.022264555096626],[-0.078500814735889,-0.039262019097805,-0.057314027100801],[-0.028091717511415,-0.11916322261095,-0.12952315807343]],[[0.040140140801668,0.020025575533509,-0.0089245159178972],[-0.03335078433156,-0.033428721129894,-0.0055612102150917],[-0.063696101307869,0.0018370440229774,-0.12281798571348]],[[-0.10095044970512,-0.00021602118795272,0.016194356605411],[-0.067814268171787,-0.02294035628438,0.041958961635828],[-0.027323739603162,0.050440944731236,0.13160218298435]],[[-0.043333314359188,-0.065804876387119,0.077308140695095],[-0.065597631037235,0.05805117636919,0.093133665621281],[-0.064586520195007,-0.10403168201447,-0.066505409777164]],[[-0.019657338038087,0.0816405788064,0.0073652751743793],[-0.020085940137506,-0.026271721348166,0.019309584051371],[-0.01440220233053,-0.020339049398899,0.072820097208023]],[[-0.082795940339565,-0.01008446700871,-0.083604656159878],[0.088334523141384,-0.12106055021286,-0.1138416826725],[-0.032042179256678,0.093509539961815,0.016212448477745]],[[0.015479465946555,0.072962775826454,0.019969955086708],[-0.092178106307983,-0.24804504215717,0.097337871789932],[0.096806906163692,-0.1319042891264,-0.096106298267841]],[[-0.060309465974569,-0.067995361983776,-0.0053885523229837],[-0.10227839648724,0.070610150694847,0.0016720815328881],[0.13404826819897,0.044877752661705,0.032269157469273]],[[-0.083421155810356,0.1822282075882,0.19142343103886],[-0.0050995848141611,-0.040101356804371,0.020748440176249],[-0.021873919293284,-0.015907771885395,0.0056922566145658]],[[-0.054535489529371,0.038652706891298,0.11212337762117],[-0.069295197725296,0.011571666225791,0.040375623852015],[-0.078892171382904,0.0075130248442292,0.063861325383186]],[[0.024460172280669,0.0094000482931733,-0.13605844974518],[-0.0027139463927597,0.029100609943271,0.12992407381535],[0.046357486397028,-0.045830756425858,-0.067260935902596]],[[0.029055457562208,0.11354628950357,-0.019153714179993],[-0.054061856120825,-0.046490497887135,0.076267726719379],[0.034981649369001,-0.10608563572168,-0.13630989193916]],[[-0.0079211443662643,-0.098072193562984,-0.051023937761784],[0.03999862074852,0.065134547650814,-0.011072353459895],[-0.011425475589931,0.016007490456104,0.0063869841396809]],[[-0.006147698033601,0.062119100242853,0.042825676500797],[-0.05848852545023,-0.12872059643269,0.068640805780888],[0.025973936542869,0.018268201500177,-0.12918210029602]],[[-0.048267632722855,0.028392834588885,-0.11103467643261],[-0.068666152656078,-0.057556606829166,-0.014410089701414],[-0.04303889721632,-0.040136341005564,-0.063812740147114]],[[0.029198775067925,-0.042046375572681,0.053028743714094],[0.035241037607193,-0.036436036229134,0.068736203014851],[0.045578494668007,-0.060269489884377,-0.079036138951778]],[[0.067499458789825,0.024867482483387,-0.013028549030423],[-0.044461369514465,-0.054623063653708,0.004712728317827],[0.0085680419579148,0.00050652783829719,-0.012875175103545]],[[-0.030221711844206,0.031761515885592,-0.065349705517292],[0.040972787886858,-0.1644671857357,-0.078409597277641],[-0.006893549580127,0.10694945603609,-0.090765565633774]],[[-0.020342970266938,-0.039638333022594,0.063930027186871],[0.03986794129014,-0.091346114873886,-0.052156768739223],[0.033725306391716,0.036400366574526,-0.052068505436182]],[[-0.03782445192337,-0.077943250536919,-0.10207285732031],[0.050349537283182,0.054743196815252,-0.0065141026861966],[-0.097049251198769,-0.0028454184066504,-0.041166204959154]],[[-0.04711552336812,-0.14216500520706,0.032830968499184],[0.072134032845497,-0.014261047355831,-0.14475029706955],[-0.10743293166161,0.025846587494016,0.05457191541791]]],[[[0.063624911010265,0.0057352012954652,0.063533507287502],[-0.07138429582119,0.050505567342043,-0.0063942181877792],[-0.071702994406223,-0.0010768348583952,0.054308399558067]],[[0.027791766449809,-0.0048485524021089,-0.040924094617367],[-0.0042138956487179,-0.034338045865297,0.035494111478329],[-0.022137498483062,0.033920977264643,0.041527066379786]],[[0.016130214557052,0.020113768056035,0.039144281297922],[0.060025911778212,0.00070678733754903,-0.011856002733111],[-0.13739731907845,-0.063140124082565,-0.14806884527206]],[[0.004579103551805,0.018961707130075,0.041394770145416],[0.017042573541403,-0.00066173356026411,-0.059871125966311],[0.054734982550144,0.021389884874225,0.037338059395552]],[[-0.046525102108717,0.074730910360813,0.081289447844028],[0.0044530145823956,-0.053450953215361,0.063439033925533],[0.071763500571251,0.095871865749359,6.0569214838324e-05]],[[0.076337859034538,0.014140981249511,-0.099364846944809],[0.040027588605881,-0.040327027440071,-0.053462397307158],[0.051631439477205,0.04498466104269,-0.10510041564703]],[[0.02571165561676,0.021122192963958,0.01850806362927],[0.023515673354268,-0.042982932180166,-0.056740995496511],[-0.01264735031873,0.026035524904728,-0.069301426410675]],[[-0.04848276078701,-0.028060330078006,-0.017827332019806],[0.033102031797171,0.010953271761537,0.0274562779814],[0.01999176479876,0.010765801183879,-0.023929692804813]],[[-0.0057770414277911,0.012001952156425,-0.015708511695266],[0.034445781260729,0.0068352078087628,0.024248788133264],[-0.0707638412714,0.053525742143393,-0.0069605871103704]],[[0.077743850648403,-0.041845191270113,0.019788166508079],[-0.06952428072691,0.037223249673843,-0.0025353610981256],[-0.0016782452585176,-0.0099439304322004,-0.0034755296073854]],[[0.0091229313984513,-0.044880211353302,0.029020121321082],[0.0074127628467977,-0.013794052414596,0.045157484710217],[0.017489733174443,-0.018617296591401,0.0028601209633052]],[[0.020548924803734,0.013245231471956,0.031397614628077],[0.0098880920559168,-0.020429626107216,0.014173079282045],[0.081241883337498,-0.053349833935499,0.019042380154133]],[[0.13411298394203,-0.073638908565044,-0.047580551356077],[0.010646870359778,-0.043587692081928,0.084221728146076],[-0.056852001696825,-0.026957999914885,0.0091164484620094]],[[0.0069712526164949,0.0008304207585752,0.07796635478735],[-0.026334973052144,0.0061075817793608,0.0070594572462142],[-0.0036967881023884,0.01142814476043,-0.071392580866814]],[[0.0044524101540446,-0.083355471491814,-0.060649927705526],[-0.03563104569912,-0.078085973858833,0.041866850107908],[0.10040757805109,-0.057865638285875,-0.046635571867228]],[[0.076746113598347,0.068141430616379,0.066063158214092],[-0.024477921426296,-0.067585647106171,-0.025812948122621],[-0.057336922734976,0.037113346159458,-0.0017706948565319]],[[0.089989669620991,0.064263597130775,-0.075911104679108],[-0.041903011500835,0.0064303698018193,-0.0032023652456701],[0.039460334926844,-0.012510108761489,-0.025942783802748]],[[0.042879149317741,0.076721288263798,0.012064858339727],[0.017516123130918,0.12075758725405,-0.040838021785021],[-0.11440254747868,0.047078151255846,0.046814940869808]],[[0.058541238307953,0.029596205800772,-0.038716930896044],[-0.032365806400776,-0.013576354831457,0.0097249550744891],[0.026226943358779,0.066171497106552,0.059743292629719]],[[-0.01734672114253,0.027479248121381,-0.01663844846189],[0.024598861113191,0.0012478425633162,0.023776711896062],[0.012693907134235,-0.020198784768581,0.028752533718944]],[[-0.021494571119547,-0.0074105081148446,0.01008461881429],[-0.010750290937722,0.049003388732672,0.0080144628882408],[-0.01209731772542,-0.072105534374714,-0.18291254341602]],[[0.012509223073721,0.15821148455143,-0.088828220963478],[-0.055484730750322,0.038137558847666,-0.090840831398964],[0.033664118498564,-0.022514404729009,-0.067172788083553]],[[-0.029298273846507,-0.02100364677608,-0.086407646536827],[0.083529911935329,-0.12251802533865,-0.062309522181749],[-0.051551096141338,0.032137844711542,0.061085809022188]],[[0.082716234028339,0.046896278858185,0.11064606159925],[-0.023244168609381,0.0064838244579732,-0.0069982926361263],[-0.054404720664024,0.039891641587019,0.089013777673244]],[[-0.0080700889229774,-0.01610572449863,-0.031283527612686],[0.005657262634486,0.033527530729771,-0.047150991857052],[-0.028650738298893,-0.022892074659467,-0.014815281145275]],[[0.013639493845403,-0.010606054216623,0.044506631791592],[-0.032137203961611,0.047032322734594,0.041040021926165],[0.060956340283155,0.063730776309967,-0.014779815450311]],[[-0.029686262831092,0.019854933023453,-0.072911635041237],[0.037954207509756,0.065620012581348,0.020563062280416],[0.086186856031418,-0.03212608769536,-0.028990572318435]],[[0.10782628506422,-0.067859970033169,-0.063464798033237],[-0.0069798859767616,-0.045518215745687,-0.011459748260677],[-0.049149136990309,0.060290884226561,-0.061968568712473]],[[0.026824753731489,0.046738840639591,0.030169548466802],[0.027427040040493,-0.051057826727629,-0.060050752013922],[-0.0024516179692,-0.051713675260544,0.080566480755806]],[[0.073536217212677,0.068436205387115,-0.060753643512726],[0.0012947276700288,0.020131343975663,-0.012841227464378],[0.056548595428467,0.039833672344685,-0.091386772692204]],[[-0.023997690528631,0.053963739424944,-0.061962213367224],[0.033208623528481,0.024289518594742,0.098115026950836],[0.039106465876102,-0.00047575958888046,-0.14222687482834]],[[0.048966430127621,0.10110173374414,0.022399991750717],[-0.043939385563135,0.013544126413763,0.04326294362545],[-0.067007474601269,-0.065349519252777,0.0097428988665342]],[[0.00081063713878393,0.042158950120211,-0.0072687622159719],[-0.007281937636435,-0.0065074469894171,-0.014825508929789],[0.0024216156452894,-0.033717595040798,-0.0039596054702997]],[[0.040861770510674,0.075986936688423,0.098696403205395],[-0.018752744421363,0.074751190841198,0.097440384328365],[-0.1268974840641,-0.13970430195332,-0.10980298370123]],[[0.084191933274269,-8.2830883911811e-05,-0.021622784435749],[0.031803674995899,0.040693908929825,-0.0016727606998757],[-0.017695542424917,0.026926480233669,-0.070040382444859]],[[-0.05818334966898,-0.17317418754101,0.010540432296693],[-0.022063445299864,-0.066586315631866,-0.0083824172616005],[-0.033335134387016,-0.07463788241148,0.034203466027975]],[[-0.046662196516991,-0.036213096231222,-0.063162811100483],[-0.0031688446179032,0.027016639709473,0.021411277353764],[0.0048147751949728,0.00023058010265231,0.069925151765347]],[[0.028767617419362,0.058494109660387,-0.02561123482883],[0.092543624341488,0.03297021612525,0.037086732685566],[0.044599093496799,-0.026969680562615,0.01104757655412]],[[-0.38632890582085,-0.13124105334282,-0.025316465646029],[-0.041771035641432,-0.051920924335718,0.0099978419020772],[-0.012502875179052,0.037746034562588,-0.024269374087453]],[[-0.036024570465088,0.080444157123566,-0.047038905322552],[-0.036987703293562,0.074123553931713,0.029220411553979],[0.012224983423948,0.035538926720619,-0.067245408892632]],[[-0.004971971269697,0.012649076990783,0.025419164448977],[0.029321683570743,-0.057280641049147,0.010271064005792],[0.013893436640501,0.0020975845400244,0.056032408028841]],[[-0.058448016643524,0.083770222961903,-0.075281761586666],[-0.057739812880754,-0.065149031579494,-0.0077007384970784],[0.037444893270731,-0.14117500185966,-0.054155290126801]],[[0.026991600170732,0.010291771963239,-0.022011822089553],[0.0019756320398301,0.045404631644487,0.034525524824858],[0.026927759870887,-0.031463637948036,-0.019696999341249]],[[-0.041769072413445,0.024297149851918,0.03194211050868],[0.020655358210206,-0.055218752473593,0.010711348615587],[0.10534264147282,-0.027383415028453,-0.062206082046032]],[[0.053203649818897,-0.095848709344864,0.0215376727283],[0.095740176737309,-0.057306218892336,-0.10975300520658],[0.05420183762908,-0.021823789924383,-0.017532663419843]],[[-0.084895394742489,-0.061458840966225,0.038228958845139],[-0.075300499796867,-0.030476866289973,0.0054716123268008],[0.0078957676887512,0.062699817121029,0.036610726267099]],[[-0.024425750598311,-0.047609455883503,0.011566241271794],[-0.052650734782219,-0.033590164035559,-0.032680045813322],[-0.045904606580734,0.031029326841235,-0.064436562359333]],[[0.022813560441136,-0.032100863754749,0.042629733681679],[-0.03042603097856,0.069431491196156,-0.17567986249924],[0.0066176610998809,0.041077129542828,0.14575463533401]],[[0.057646997272968,0.0027707561384887,-0.064751379191875],[-0.0019916836172342,-0.043808288872242,0.06782640516758],[-0.10349081456661,-0.011291231960058,0.11227373033762]],[[0.056764710694551,0.017838856205344,0.034088995307684],[-0.017912482842803,0.060232352465391,0.028741447255015],[0.0010733181843534,0.024906177073717,0.04010771214962]],[[0.057817883789539,-0.053312920033932,-0.019700270146132],[0.0047557246871293,-0.042909756302834,-0.011900435201824],[0.01756838336587,-0.0057752062566578,-0.019721144810319]],[[0.12510699033737,0.16169311106205,-0.080458298325539],[-0.031249113380909,0.056510403752327,0.083322808146477],[-0.034013524651527,0.090162314474583,0.0030515168327838]],[[-0.16173158586025,-0.015738438814878,0.021758608520031],[0.0091316988691688,-0.0773870870471,0.017601493746042],[-0.063447378575802,-0.037463944405317,0.084845252335072]],[[0.030180692672729,-0.11169807612896,-0.063183285295963],[0.0011598975397646,0.0037629683502018,0.081477701663971],[0.079353585839272,0.0064330720342696,-0.042031977325678]],[[-0.097786761820316,0.0014445142587647,-0.0032534145284444],[-0.027158223092556,-0.002443109638989,0.053662002086639],[-0.042870111763477,0.042489897459745,-0.08152736723423]],[[-0.016814064234495,0.024340778589249,-0.00660764798522],[0.062798246741295,0.020903006196022,-0.016514966264367],[-0.042124710977077,-0.0016081576468423,0.077396593987942]],[[0.040306024253368,-0.0024075233377516,0.071359246969223],[-0.047360435128212,-0.045723758637905,-0.037620771676302],[-0.017583053559065,-0.06914260238409,0.020220715552568]],[[0.01497610937804,-0.037720613181591,-0.05185079574585],[0.039041988551617,-0.021753722801805,-0.073860585689545],[0.011552074924111,0.0067483219318092,-0.050704635679722]],[[-0.0035815734881908,0.067810900509357,0.039423156529665],[0.015253967605531,0.11370275169611,0.035301525145769],[0.0075637837871909,-0.038376774638891,0.083516724407673]],[[-0.0035212051589042,-0.0069158095866442,0.013142147101462],[0.062989719212055,-0.013826521113515,0.04115666821599],[-0.0027559346053749,-0.0051437993533909,-0.059495817869902]],[[0.0079050790518522,-0.021447759121656,0.10502928495407],[-0.079578094184399,-0.018350062891841,-0.014930752106011],[-0.058241277933121,-0.034933410584927,-0.054148815572262]],[[0.064337663352489,0.013027066364884,-0.035912331193686],[0.054643206298351,0.088388428092003,0.087977081537247],[-0.035707782953978,-0.081096701323986,0.032287202775478]],[[0.049117755144835,-0.0093393670395017,0.053446337580681],[0.0005870767054148,0.059533573687077,0.0336660631001],[0.013305872678757,-0.026577858254313,-0.023032495751977]],[[0.01507219299674,0.030953923240304,-0.095808625221252],[0.02851839363575,-0.007907597348094,0.021696902811527],[0.053905460983515,-0.022003147751093,0.011265128850937]]],[[[-0.032959092408419,-0.019366545602679,0.051292970776558],[0.057231709361076,-0.095999494194984,-0.013101347722113],[-0.0077994777821004,0.047808185219765,-0.014929249882698]],[[0.016998963430524,0.020077561959624,-0.0016566448612139],[-0.012648869305849,-0.093022562563419,-0.0087154246866703],[-0.04977510124445,-0.09799961745739,-0.049159750342369]],[[-0.012787814252079,-0.023321913555264,-0.091328285634518],[-0.065300941467285,-0.00061754870694131,-0.040903944522142],[-0.037394538521767,-0.076856829226017,-0.099302791059017]],[[0.0068419598974288,-0.067873477935791,-0.11381839215755],[-0.071492493152618,-0.10808666795492,-0.014908313751221],[0.019426580518484,0.021853858605027,-0.047005232423544]],[[-0.0090757925063372,0.060050904750824,0.041293904185295],[-0.018765198066831,-0.087308503687382,-0.14819265902042],[0.0028931596316397,-0.06315066665411,0.070253916084766]],[[-0.046877659857273,-0.059102717787027,0.027498506009579],[0.042208164930344,0.024934412911534,0.00024189107352868],[0.021500235423446,0.0050322697497904,-0.089943654835224]],[[-0.11204367876053,-0.079314351081848,-0.013408465310931],[-0.040949180722237,-0.083641044795513,-0.058722823858261],[-0.070724539458752,-0.10818596184254,-0.0065157096832991]],[[-0.052591070532799,0.038409851491451,-0.017794940620661],[-0.049104794859886,0.024522121995687,0.0047064176760614],[-0.0061064762994647,0.013639985583723,0.013108979910612]],[[0.018011348322034,-0.011131711304188,-0.042543582618237],[-0.01860841549933,-0.042579662054777,0.092260755598545],[-0.087929077446461,-0.041121829301119,0.082718625664711]],[[-0.01759434491396,0.024083990603685,0.016409132629633],[-0.1395687609911,-0.099006086587906,0.09115593880415],[0.07893218845129,-0.10429177433252,-0.051151268184185]],[[-0.096391834318638,-0.00075889710569754,0.071708641946316],[0.11221577972174,-0.064287856221199,-0.039974771440029],[-0.029515085741878,-0.03893119841814,0.037249524146318]],[[-0.080441288650036,-0.02911763265729,0.01549138687551],[-0.0037711660843343,0.036308497190475,-0.056406557559967],[-0.0045539997518063,-0.1735915094614,-0.029492119327188]],[[-0.0051020253449678,0.0059491894207895,0.0073035005480051],[-0.014242421835661,-0.033431511372328,0.06478913128376],[-0.021315479651093,-0.0029245500918478,0.024479610845447]],[[0.081790298223495,-0.060789782553911,-0.042778052389622],[-0.068793073296547,0.018563728779554,0.066163897514343],[0.08842670917511,-0.042026583105326,-0.031109968200326]],[[0.057788997888565,0.0021736056078225,-0.088133692741394],[-0.078679136931896,-0.0089137041941285,-0.014849078841507],[-0.023765802383423,0.099359624087811,-0.15625923871994]],[[-0.072259396314621,-0.0015146078076214,0.20165970921516],[-0.057793296873569,-0.032244939357042,-0.10061008483171],[-0.0032882743980736,-0.039525471627712,-0.106520652771]],[[0.02481977455318,-0.086801826953888,-0.050971586257219],[-0.10793553292751,-0.12408375740051,0.012698185630143],[0.032239332795143,0.064313836395741,-0.12039817869663]],[[-0.04774484783411,-0.06707426160574,0.056826245039701],[-0.015450832433999,0.019653122872114,-0.15337659418583],[-0.10715284943581,-0.073929727077484,0.077717497944832]],[[-0.10191322863102,0.005076561588794,-0.11504370719194],[0.038072425872087,0.056841053068638,-0.16133306920528],[0.028646869584918,-0.062302123755217,-0.018472917377949]],[[0.070111766457558,0.050802379846573,0.047648407518864],[0.008461095392704,-0.060878779739141,-0.039339769631624],[-0.018893048167229,-0.025518169626594,-0.0083564408123493]],[[-0.017678657546639,-0.011819664388895,-0.0064611071720719],[0.036824457347393,-0.011081414297223,-0.047504477202892],[-0.03907511010766,-0.028928928077221,-0.0026022454258054]],[[0.031174525618553,-0.074289724230766,0.13689260184765],[-0.073430314660072,0.092581495642662,-0.0026826148387045],[-0.099976159632206,-0.054915357381105,-0.0021697147749364]],[[0.016348097473383,-0.047901261597872,-0.025999996811152],[0.08163683116436,-0.026490796357393,-1.9797751519945e-05],[-0.02871392481029,-0.056541278958321,-0.16474252939224]],[[0.020407279953361,0.05661004409194,0.013963911682367],[0.05336869135499,0.011567475274205,-0.001978013664484],[-0.02736540324986,0.069448538124561,0.10731976479292]],[[0.081544823944569,-0.050064288079739,0.10367242991924],[-0.13420407474041,0.062276352196932,-0.032000340521336],[0.017846724018455,-0.099167577922344,0.0082557862624526]],[[0.036981593817472,0.0081058871001005,0.042609374970198],[0.13458612561226,-0.080941446125507,0.026687892153859],[0.0022859135642648,-0.01410124823451,-9.4751914730296e-05]],[[-0.21479918062687,-0.13287913799286,-0.078702963888645],[0.022076999768615,0.12936265766621,-0.01984616369009],[-0.028676422312856,-0.15932950377464,0.15166753530502]],[[0.037621736526489,-0.014933352358639,0.041653122752905],[-0.014010114595294,0.0027262773364782,-0.0062287501059473],[0.03570131957531,-0.026441346853971,-0.031766183674335]],[[-0.066535256803036,-0.0032152170315385,0.04743978753686],[0.01692738942802,0.062267389148474,-0.075858674943447],[0.011231563054025,0.054424714297056,0.019309278577566]],[[-0.086657419800758,-0.1440789103508,-0.06309112906456],[-0.017152553424239,-0.080483511090279,0.020334221422672],[-0.12392009049654,-0.058984436094761,-0.013621143996716]],[[-0.044539220631123,-0.034343559294939,-0.049239736050367],[0.034106876701117,0.12843526899815,-0.084701843559742],[0.092073522508144,-0.063900679349899,0.086698614060879]],[[0.097158513963223,0.099113330245018,-0.11138206720352],[-0.039059486240149,-0.12989228963852,-0.027492716908455],[0.092564769089222,-0.05393324047327,-0.031894125044346]],[[-0.047330778092146,-0.022005904465914,-0.024459118023515],[-0.0016229203902185,-0.041596859693527,-0.023463340476155],[-0.037195883691311,-0.082552075386047,0.043357886373997]],[[-0.11693236231804,0.13091792166233,-0.096271991729736],[0.023634139448404,-0.075529031455517,0.10628038644791],[-0.0029033480677754,-0.015639290213585,-0.22853146493435]],[[-0.01628808863461,0.078675173223019,0.0063193305395544],[0.076396748423576,0.0033399395179003,-0.0096388459205627],[0.05140608176589,-0.022309711202979,-0.018849613144994]],[[0.040703758597374,-0.033621206879616,-0.053111452609301],[0.0053808423690498,-0.0081744939088821,-0.063807912170887],[0.037679955363274,-0.06562864780426,0.0082080336287618]],[[-0.082239829003811,0.033513735979795,0.059595197439194],[-0.058234259486198,0.065102517604828,-0.077208161354065],[-0.14238865673542,0.064005941152573,0.091544434428215]],[[0.060513488948345,-0.050834212452173,-0.00018394576909486],[-0.057063478976488,-0.039263110607862,0.021663362160325],[0.024908600375056,-0.10817206650972,-0.049076516181231]],[[-0.040396016091108,0.088071241974831,-0.039765436202288],[0.030201090499759,0.008180727250874,0.012113029137254],[-0.0050295391120017,-0.072058916091919,-0.037369422614574]],[[0.027693847194314,-0.011343255639076,-0.099230140447617],[-0.019095581024885,0.026948880404234,0.021887520328164],[-0.0029371057171375,0.027564596384764,0.064378716051579]],[[-0.14348843693733,0.055569790303707,-0.0030910763889551],[-0.10477679222822,-0.056353107094765,-0.014124500565231],[0.0073957140557468,-0.060399640351534,0.0073684910312295]],[[-0.056784968823195,-0.035859957337379,-0.068877354264259],[-0.047804106026888,-0.078010000288486,0.09621374309063],[0.13902509212494,0.0121536469087,0.020877748727798]],[[0.047962862998247,-0.085189655423164,0.10884015262127],[0.097868718206882,-0.057447850704193,-0.075907774269581],[-0.015678597614169,0.082751892507076,-0.10388926416636]],[[-0.048940245062113,-0.020906755700707,0.059793990105391],[0.084490872919559,-0.01166271045804,-0.10610968619585],[0.0011494578793645,0.0052123633213341,0.033893305808306]],[[-0.13792014122009,0.024812065064907,-0.004772384185344],[0.0037603403907269,0.004649568349123,-0.051422040909529],[-0.080772757530212,-0.035421796143055,0.031178254634142]],[[0.14271427690983,-0.13419246673584,0.01462157163769],[-0.081745594739914,0.0013643902493641,0.0124466503039],[0.027468444779515,0.0062393676489592,-0.083089418709278]],[[-0.055429894477129,0.10147103667259,0.0062005631625652],[0.0061635291203856,-0.075013145804405,-0.045445807278156],[0.014348367229104,0.0047086072154343,0.1327403485775]],[[-0.060101732611656,-0.037430547177792,0.070879526436329],[0.0016343232709914,0.0084657100960612,-0.14935207366943],[0.055351495742798,-0.051824897527695,0.0072617069818079]],[[-0.10937617719173,-0.018611775711179,0.095146358013153],[0.11905620992184,0.020840026438236,-0.12763769924641],[0.00093749893130735,0.096098408102989,-0.11940672248602]],[[0.021672196686268,0.037124138325453,-0.0041277352720499],[-0.022721771150827,-0.020618468523026,-0.11906763166189],[-0.033689327538013,0.038485165685415,0.016059143468738]],[[0.0014732378767803,-0.1036022529006,-0.071409530937672],[-0.10031341761351,0.10895542800426,0.032403450459242],[0.11216684430838,-0.037165351212025,-0.081687718629837]],[[0.051687464118004,0.017234586179256,0.10698879510164],[-0.0089477645233274,0.012254574336112,0.01893387362361],[-0.021933590993285,0.093164846301079,-0.016992472112179]],[[0.014841470867395,-0.1723296046257,-0.0063990531489253],[0.025115046650171,-0.051140338182449,0.070007048547268],[-0.02246761135757,-0.0028203583788127,-0.092566341161728]],[[0.0084908651188016,-0.021572232246399,-0.088025204837322],[0.047713678330183,0.096224665641785,0.035086929798126],[-0.044785026460886,-0.12142890691757,0.068657837808132]],[[0.033443063497543,-0.082947969436646,0.036414481699467],[0.053523279726505,-0.11746346950531,0.020806968212128],[-0.016933472827077,-0.040327463299036,0.01639212667942]],[[-0.14810562133789,0.05931494012475,0.022226227447391],[0.0055326363071799,0.0099516361951828,-0.04853743314743],[0.020027089864016,0.0092010712251067,0.046464443206787]],[[0.039966449141502,0.066034495830536,-0.0065407613292336],[-0.11885089427233,-0.017802000045776,-0.044023375958204],[-0.058337759226561,0.00028995677712373,0.085307627916336]],[[0.039814230054617,-0.06458056718111,-0.037138063460588],[-0.066057167947292,0.0093982219696045,0.031370759010315],[-0.0036095646210015,-0.0949562266469,0.039866451174021]],[[-0.13508039712906,0.064641915261745,0.10400421917439],[0.034323573112488,-0.02371639944613,-0.00099113071337342],[0.0061688544228673,0.13750168681145,0.15361547470093]],[[-0.032114963978529,-0.050122663378716,-0.016794227063656],[-0.017895936965942,0.053088258951902,0.039785776287317],[0.038950733840466,-0.026153605431318,0.025207648053765]],[[0.071853093802929,-0.078482486307621,-0.048779744654894],[-0.017876129597425,0.063221037387848,-0.035046551376581],[0.0075102192349732,-0.005754241719842,-0.11036937683821]],[[0.096457347273827,-0.041442733258009,0.029982278123498],[0.031943716108799,-0.10438147187233,0.016290038824081],[0.053400237113237,-0.014570662751794,-0.016846174374223]],[[0.040924284607172,-0.087930798530579,-0.072871275246143],[-0.026331786066294,-0.059376332908869,0.087333299219608],[0.00058663304662332,-0.059079371392727,-0.11371125280857]],[[0.080095492303371,-0.064882770180702,0.058452811092138],[0.019746698439121,-0.090191222727299,0.022305026650429],[-0.0060428776778281,-0.0035202910657972,0.048643838614225]]],[[[-0.05497332662344,-0.01368818897754,0.0043809772469103],[0.036304920911789,0.032790511846542,-0.0063143032602966],[-0.01934858597815,-0.029372846707702,0.088906839489937]],[[0.079657636582851,0.003748603630811,-0.089442804455757],[-0.11619447916746,-0.09209506213665,0.019263064488769],[-0.004499732516706,-0.036542739719152,-0.018788605928421]],[[-0.082382552325726,-0.039264194667339,0.0020544407889247],[-0.046667397022247,-0.051143363118172,0.088883496820927],[0.0059216585941613,-0.056241929531097,0.024978425353765]],[[-0.0053150006569922,0.013150815851986,-0.062149282544851],[0.017069535329938,0.068972766399384,0.015253711491823],[0.033991441130638,0.015050331130624,0.043897110968828]],[[-0.040258899331093,0.029602082446218,0.0044745006598532],[-0.0061006122268736,-0.036794632673264,-0.015669673681259],[-0.031028721481562,-0.026162760332227,-0.071158774197102]],[[0.06768012791872,0.0078164683654904,-0.023621689528227],[0.049478512257338,-0.10096962749958,-0.088324420154095],[0.051226366311312,-0.05079497396946,0.03482922539115]],[[0.0049348482862115,-0.053029824048281,-0.010769485495985],[-0.028125757351518,0.053207330405712,-0.06840305775404],[0.021463092416525,0.020237635821104,0.063340708613396]],[[0.10522058606148,-0.019551960751414,0.029960026964545],[-0.013968606479466,-0.026943314820528,0.045511428266764],[-0.015208612196147,-0.024358255788684,0.013956812210381]],[[-0.049876447767019,-0.011026282794774,0.041584439575672],[0.048597700893879,-0.010511661879718,0.14116209745407],[0.014307071454823,0.034651540219784,0.055976510047913]],[[-0.074095420539379,0.0074657527729869,-0.0062684039585292],[0.035904731601477,-0.0028756901156157,0.029637884348631],[-0.027017323300242,-0.011353621259332,0.0035042283125222]],[[-0.024434562772512,-0.011160438880324,0.021458849310875],[-0.034512426704168,0.059233028441668,0.040116958320141],[0.0021810573525727,-0.077550552785397,-0.10252632200718]],[[0.064502313733101,-0.02460477873683,0.031427636742592],[0.034533008933067,0.00070989032974467,-0.0022286474704742],[-0.0094557693228126,-0.071028560400009,0.0014289887621999]],[[-0.13812120258808,-0.13243418931961,-0.050801057368517],[-0.073808155953884,-0.066705331206322,0.076077498495579],[-0.082293950021267,-0.020261641591787,-0.082039132714272]],[[-0.0050026099197567,0.046296212822199,-0.0065887197852135],[-0.013847640715539,0.091140665113926,-0.043434664607048],[0.019316697493196,-0.043905094265938,-0.019918937236071]],[[-0.030720697715878,0.073620699346066,-0.089331932365894],[0.041652336716652,-0.0066037918440998,0.045628041028976],[-0.0074796085245907,0.0031437093857676,-0.029434908181429]],[[-0.077229052782059,-0.078669436275959,-0.044929973781109],[0.050344411283731,0.051852390170097,-0.027521148324013],[0.039253316819668,0.01739957369864,-0.082142263650894]],[[-0.062305349856615,-0.016384698450565,-0.15306690335274],[0.0075387102551758,0.092505812644958,0.00056263082660735],[0.015182280912995,-0.0064770667813718,0.065022759139538]],[[0.12876681983471,0.031955111771822,0.012187228538096],[-0.0091886967420578,0.002241374226287,-0.012420657090843],[0.0049573415890336,-0.011561404913664,-0.09885510802269]],[[0.10359703749418,0.0091760838404298,-0.073551930487156],[0.0016216143267229,-0.024882532656193,-0.04369593411684],[0.038120113313198,-0.060748692601919,-0.044513333588839]],[[-0.035629272460938,-0.04692330211401,0.0023116138763726],[0.0019970741122961,-0.023385154083371,0.0002040155522991],[0.0036987427156419,0.029486160725355,0.058508887887001]],[[-0.041274636983871,-0.063264146447182,0.033879812806845],[0.060552276670933,0.01091834064573,-0.089214004576206],[-0.015367887914181,0.064577683806419,-0.064081251621246]],[[-0.059514500200748,0.10395332425833,0.015344017185271],[-0.018064875155687,0.034503858536482,-0.017462635412812],[-0.012636888772249,0.035662569105625,0.070829451084137]],[[-0.13364236056805,0.13933299481869,-0.070421792566776],[-0.067596279084682,0.018000684678555,-0.056187961250544],[-0.065315164625645,0.078894592821598,0.013616575859487]],[[0.075687319040298,0.042427722364664,0.15779905021191],[0.011960683390498,0.052743043750525,-0.0078927129507065],[0.021973881870508,0.068747118115425,0.051094524562359]],[[0.1111774072051,0.010460862889886,-0.024837609380484],[-0.035420823842287,-0.025746950879693,-0.09464693069458],[-0.022155284881592,-0.12034542858601,-0.051701284945011]],[[-0.0265620239079,-0.076195061206818,0.041767157614231],[-0.00055358302779496,-0.0031024336349219,0.065218865871429],[0.063987664878368,-0.019790358841419,0.032940234988928]],[[-0.044379599392414,-0.088233076035976,-0.024220170453191],[0.065231643617153,-0.12537296116352,0.072904132306576],[0.095811434090137,0.037596836686134,-0.019276013597846]],[[-0.032445836812258,-0.039729598909616,-0.0019792509265244],[0.024048309773207,-0.031719710677862,-0.087839558720589],[0.035324819386005,-0.026375332847238,0.060238413512707]],[[-0.0017741349292919,0.01784404553473,0.085712544620037],[-0.040340945124626,-0.050742730498314,0.054031036794186],[0.030343679711223,-0.020207362249494,0.050524555146694]],[[0.08212286233902,-0.015686964616179,0.014258411712945],[0.0086295111104846,0.030618831515312,-0.011135442182422],[0.050669711083174,0.029246546328068,0.039872676134109]],[[-0.07637145370245,0.018832117319107,0.025524647906423],[-0.034319151192904,-0.031078167259693,0.099964290857315],[0.025267535820603,-0.017952278256416,0.067481644451618]],[[-0.078336983919144,-0.0030897061806172,0.002188952639699],[0.068038761615753,0.097755305469036,-0.059936262667179],[-0.071219153702259,0.060356523841619,0.0888557061553]],[[-0.00084727100329474,-0.063020400702953,-7.8925520938355e-05],[0.019142592325807,0.0091964835301042,0.004930043593049],[0.028203088790178,0.022395623847842,-0.012754955329001]],[[-0.018327502533793,-0.032227508723736,0.041735153645277],[-0.089657559990883,-0.12546029686928,0.11026239395142],[-0.093204207718372,-0.089489087462425,0.011966298334301]],[[-0.094269149005413,-0.13842715322971,0.019187299534678],[-0.035589057952166,0.068722106516361,0.054928421974182],[-0.014925861731172,-0.10370909422636,0.048229217529297]],[[-0.11989569664001,0.023993667215109,-0.048324134200811],[0.070324510335922,-0.036848727613688,-0.01425205823034],[-0.038754343986511,0.060266230255365,0.010576515458524]],[[-0.051094453781843,0.057940892875195,0.036449797451496],[-0.074280954897404,-0.012557281181216,-0.020033465698361],[-0.019567050039768,0.0017241693567485,-0.034910976886749]],[[-0.041848666965961,-0.0093934061005712,-0.029260268434882],[-0.038601964712143,-0.019119653850794,0.038841098546982],[0.042219374328852,-0.026365311816335,-0.033016592264175]],[[-0.024756990373135,-0.087015233933926,-0.011176273226738],[-0.0055589647963643,-0.0063779163174331,0.02950232475996],[-0.033163290470839,0.015903275460005,0.018513122573495]],[[-0.090158745646477,-0.027124375104904,0.001709011849016],[-0.01693757250905,-0.013414309360087,-0.083133161067963],[0.0059074992313981,0.08334156870842,-0.0069324718788266]],[[0.0022229882888496,-0.0036488419864327,-0.07086818665266],[-0.025215595960617,-0.073088102042675,0.011210031807423],[0.11695901304483,-0.050110496580601,0.0029532660264522]],[[-0.022283244878054,0.090881034731865,-0.01983880251646],[0.026320826262236,-0.071350380778313,-0.05159517377615],[-0.020185815170407,-0.028055725619197,0.070748463273048]],[[-0.05476401373744,0.020383602008224,0.035369712859392],[0.061032000929117,-0.091922171413898,0.057253032922745],[-0.046392571181059,-0.07702574878931,-0.086979068815708]],[[-0.026012571528554,-0.036797523498535,0.011975278146565],[0.02711121365428,0.08945132791996,-0.048129137605429],[0.017451977357268,-0.073302254080772,-0.043888010084629]],[[-0.0048360941000283,-0.0019836097490042,0.0025967273395509],[0.084778368473053,0.063267409801483,-0.1010929942131],[0.011578914709389,0.068405196070671,0.032387375831604]],[[0.0035774374846369,0.096284836530685,-0.010565552860498],[0.03310414403677,-0.11495007574558,-0.013302106410265],[0.011017626151443,0.037172552198172,0.014279157854617]],[[-0.10211677104235,0.016434904187918,0.058727085590363],[-0.13227459788322,0.0083329370245337,0.06892878562212],[-0.05206636339426,-0.097285389900208,0.0096538076177239]],[[0.022509312257171,0.064470000565052,-0.10013946890831],[-0.090411476790905,-0.039511367678642,-0.095289438962936],[0.062111131846905,0.073162794113159,-0.00031193284667097]],[[-0.012835755944252,0.069232739508152,0.044235728681087],[0.0033285194076598,-0.11552890390158,-0.06198662519455],[-0.067321740090847,0.026786778122187,-0.028100991621614]],[[0.043609634041786,0.070798546075821,0.018739821389318],[-0.016325453296304,-0.068647302687168,0.020558683201671],[0.0074691958725452,0.074426501989365,-0.020187068730593]],[[0.038485068827868,0.024394152686,-0.065985724329948],[0.0059685995802283,-0.083919450640678,0.088313162326813],[-0.032937627285719,0.034009285271168,-0.012078489176929]],[[0.021087283268571,0.085490755736828,0.053419530391693],[0.027611786499619,-0.051285859197378,0.025735314935446],[-0.1242348626256,0.029696045443416,0.088021613657475]],[[-0.034979447722435,0.0097872111946344,0.031853701919317],[0.026143208146095,-0.0052255177870393,-0.03505839779973],[0.029546447098255,-0.022122696042061,0.0064618950709701]],[[0.084767565131187,0.017169775441289,0.024533826857805],[0.13214264810085,-0.028047177940607,0.00038872080040164],[-0.051409497857094,-0.076259590685368,-0.078723952174187]],[[0.013396579772234,0.022692453116179,-0.12291433662176],[-0.064260236918926,0.043693445622921,-0.0034286403097212],[-0.05213587731123,0.035128630697727,-0.088819898664951]],[[-0.039380807429552,-0.068784467875957,-0.0077717904932797],[-0.030213110148907,0.044716577976942,0.0071565969847143],[-0.03123913705349,-0.036455515772104,0.015753230080009]],[[0.06839519739151,-0.0011793499579653,0.038660511374474],[-0.0057129464112222,-0.068671405315399,0.041751805692911],[0.029059406369925,-0.031852409243584,0.025271363556385]],[[0.050326220691204,0.014786967076361,0.032675020396709],[-0.004620511084795,-0.056277219206095,-0.15813110768795],[-0.015362575650215,-0.058789700269699,-0.11279857158661]],[[0.14048708975315,-0.076610162854195,0.075099349021912],[-0.028207687661052,0.082388341426849,0.10423053056002],[-0.10409040749073,-0.034269727766514,0.040524374693632]],[[0.0099073704332113,0.051820863038301,0.0087282098829746],[-0.0078131705522537,-0.013743920251727,0.024996045976877],[0.0042137489654124,-0.029471455141902,-0.038670603185892]],[[-0.12655422091484,0.037773348391056,0.03350855410099],[0.034265995025635,-0.11013662815094,0.084122620522976],[0.046694580465555,0.0092508187517524,-0.069016709923744]],[[0.071460299193859,-0.014495372772217,0.056765958666801],[0.094687886536121,0.004194822628051,-0.049783729016781],[-0.026774417608976,0.012290192767978,0.039736770093441]],[[-0.043222319334745,-0.080308377742767,-0.031842585653067],[-0.011662801727653,0.025447580963373,0.001454837154597],[0.012876898981631,0.028461566194892,0.062239166349173]],[[-0.058767203241587,-0.034519169479609,-0.082997709512711],[0.0030270845163614,-0.068720191717148,0.018006460741162],[-0.038591310381889,0.017661087214947,-0.01108318939805]]],[[[0.032809410244226,0.065744735300541,0.06003088504076],[-0.032927189022303,-0.055991481989622,-0.041790254414082],[-0.0051503540016711,0.0028759257402271,-0.011541003361344]],[[0.023523811250925,0.091425441205502,-0.038566678762436],[-0.041654881089926,0.10153674334288,-0.045496825128794],[0.05102663859725,0.045264575630426,-0.064321972429752]],[[-0.0097532980144024,-0.021607892587781,0.02640064060688],[-0.011567351408303,0.011621902696788,-0.070361338555813],[-0.052190307527781,-0.11194762587547,-0.04403455555439]],[[-0.059619437903166,-0.026446616277099,0.0093491524457932],[-0.022343780845404,-0.007419562432915,-0.16715617477894],[0.013362043537199,0.017097145318985,-0.10058853775263]],[[-0.055106949061155,-0.021775374189019,-0.091753393411636],[-0.016284400597215,0.034538768231869,0.028356427326798],[-0.0058209551498294,0.033911727368832,0.0033174976706505]],[[0.015240929089487,0.02232750505209,-0.035512957721949],[-0.013273386284709,-0.075700595974922,0.001457656500861],[-0.066788583993912,-0.047977112233639,0.0073764980770648]],[[-0.0037207817658782,-0.017419293522835,0.08232557028532],[-0.080425389111042,-0.037743970751762,-0.06925593316555],[-0.043622404336929,-0.073239408433437,0.027000864967704]],[[0.0058948141522706,0.062732622027397,0.078216128051281],[-0.037081517279148,-0.028452405706048,-0.013578044250607],[-0.018036223948002,0.062728993594646,0.020884606987238]],[[-0.1009740754962,0.13518434762955,-0.14862953126431],[-0.023980518803,-0.067404299974442,-0.13223879039288],[-0.1978627294302,0.20759370923042,-0.19093626737595]],[[0.038124989718199,-0.016410252079368,-0.019386319443583],[-0.050950057804585,-0.041392184793949,-0.10577628016472],[-0.0038056415505707,-0.0053291725926101,-0.072643488645554]],[[-0.011957126669586,0.024228904396296,0.0069928825832903],[0.027323447167873,0.069226138293743,0.014735488221049],[-0.025357108563185,0.0024367112200707,-0.082246020436287]],[[-0.084524154663086,-0.012991146184504,-0.092752732336521],[-0.038170475512743,-0.039512015879154,-0.051910396665335],[-0.089930884540081,-0.016349693760276,-0.035329464823008]],[[0.30293855071068,-0.029881801456213,0.15495678782463],[-0.32846635580063,-0.053855169564486,-0.31875923275948],[0.23346012830734,-0.14089791476727,0.22518108785152]],[[-0.01255770213902,-0.081087358295918,-0.07799006998539],[0.061905916780233,0.0080078709870577,0.018452551215887],[-0.015458309091628,0.012356171384454,0.039610508829355]],[[0.081391759216785,-0.089753396809101,0.049388878047466],[-0.070929169654846,-0.021098047494888,-0.079920724034309],[0.12213227897882,-0.094878733158112,0.11123725026846]],[[0.022348495200276,-0.035753153264523,0.015631878748536],[0.046762924641371,-0.055086709558964,0.08650491386652],[-0.038555022329092,-0.031460516154766,-0.046430818736553]],[[-0.051715828478336,-0.0085275154560804,0.032842144370079],[0.063513517379761,0.024229427799582,0.075142234563828],[0.044959638267756,-0.034229073673487,0.024772448465228]],[[0.038636222481728,-0.11912535130978,0.014603237621486],[0.09685356169939,-0.0092073921114206,0.0079333875328302],[-0.07017993927002,0.0040010018274188,-0.034120377153158]],[[-0.10671059787273,-0.018715055659413,-0.0033375879283994],[-0.042262349277735,0.083726160228252,-0.14784099161625],[-0.069490745663643,0.0042608166113496,-0.069196216762066]],[[0.040624879300594,-0.030302342027426,0.02394625544548],[0.017233712598681,-0.0047750575467944,-0.010650851763785],[-0.00092818355187774,0.011652244254947,-0.0042310324497521]],[[0.024473199620843,-0.061234813183546,0.041483845561743],[0.013485564850271,-0.04360718280077,0.033881030976772],[-0.0090312315151095,-0.099918134510517,-0.04522667452693]],[[0.049807984381914,-0.026540262624621,0.085724495351315],[-0.10592111200094,-0.074180513620377,0.049261048436165],[-0.0090713482350111,0.047332674264908,0.035693015903234]],[[0.071770176291466,-0.12644539773464,-0.062024708837271],[0.17320057749748,-0.2269686460495,0.19866751134396],[0.15723520517349,-0.042950619012117,-0.12078507989645]],[[0.013867237605155,0.14378324151039,0.083608753979206],[0.0035746505018324,0.051118675619364,-0.0020531099289656],[0.0002466191072017,-0.0079600280150771,0.023712700232863]],[[0.053711105138063,0.0464156717062,0.047020234167576],[-0.11210549622774,-0.11655075103045,0.087085157632828],[0.047090832144022,0.051596119999886,-0.046160347759724]],[[0.0027840449474752,-0.0076648690737784,0.0045196614228189],[0.010793936438859,-0.021535934880376,-0.0051920735277236],[0.013091273605824,-0.016062853857875,0.06785311549902]],[[-0.058317538350821,0.054640125483274,-0.023529475554824],[0.025004301220179,-0.010744354687631,0.15271681547165],[0.026826957240701,0.061101801693439,-0.027692029252648]],[[0.049184452742338,0.01051945053041,-0.040515393018723],[-0.067421205341816,-0.066083081066608,-0.083189830183983],[-0.028441378846765,-0.028702434152365,-0.073778606951237]],[[-0.05320305749774,-0.052973423153162,-0.0080730738118291],[0.052102442830801,0.029564855620265,0.013422441668808],[-0.026270519942045,0.028992330655456,-0.012022251263261]],[[-0.037085045129061,-0.066721133887768,-0.078021928668022],[-0.040383450686932,-0.026913542300463,-0.094300799071789],[-0.042800720781088,-0.038813218474388,0.051231849938631]],[[-0.066314838826656,-0.081355430185795,0.035300519317389],[0.23060138523579,-0.14973822236061,0.15493142604828],[-0.012656981125474,-0.11735658347607,-0.089657261967659]],[[-0.0091508878394961,0.028802171349525,-0.040552143007517],[0.012781975790858,-0.11889803409576,0.017078083008528],[0.064524158835411,0.028010027483106,-0.034783884882927]],[[-0.0035546217113733,-0.043133426457644,0.022332418709993],[-0.0085958186537027,-0.044221725314856,0.0016673139762133],[-0.053292736411095,0.039823275059462,-0.030734518542886]],[[0.037680238485336,0.074828281998634,-0.10420441627502],[-0.084953404963017,-0.017834791913629,-0.051347423344851],[-0.010357841849327,0.0035795103758574,-0.12251825630665]],[[-0.071160934865475,0.0018477727426216,0.011783597059548],[0.027144363150001,-0.064145959913731,-0.082004114985466],[-0.067114986479282,0.038540374487638,-0.010719386860728]],[[-0.051176767796278,-0.031865201890469,0.085745073854923],[0.041403889656067,-0.032661218196154,0.076151870191097],[-0.16150704026222,-0.021017991006374,-0.037999991327524]],[[0.0054422151297331,-0.018887788057327,-0.071947045624256],[-0.01108287833631,-0.0063711018301547,0.032225336879492],[-0.011197454296052,0.028685282915831,0.00010650469630491]],[[-0.030468946322799,-0.03319263830781,-0.10183893889189],[-0.029794672504067,0.020563395693898,-0.015803784132004],[-0.0034422560129315,-0.036799285560846,-0.0070992968976498]],[[-0.051407445222139,0.072796195745468,0.020961444824934],[-0.13279616832733,-0.045160006731749,-0.062627412378788],[0.024964790791273,-0.037996798753738,0.12910848855972]],[[-0.12993995845318,0.029984459280968,-0.021458923816681],[0.055377524346113,0.039090976119041,-0.018882676959038],[0.0050615640357137,0.063056975603104,0.031938217580318]],[[0.046176858246326,-0.018131580203772,-0.032397571951151],[0.031544975936413,0.1236285790801,-0.023485764861107],[-0.03994345292449,-0.0036495227832347,-0.008811884559691]],[[-0.095010101795197,0.031183088198304,-0.13682010769844],[0.052058417350054,0.068527914583683,-0.0011544037843123],[-0.036380417644978,-0.0082615548744798,-0.08427769690752]],[[0.028061943128705,0.11269297450781,0.002660115249455],[-0.0039415257051587,-0.023529151454568,-0.026143638417125],[0.066549219191074,0.032355941832066,0.036359712481499]],[[-0.0078095863573253,0.064698174595833,0.046020437031984],[-0.065347984433174,0.01916877925396,-0.035612620413303],[0.058760300278664,0.022479973733425,0.066631093621254]],[[-0.079375401139259,0.10542239993811,-0.17710062861443],[-0.038841724395752,0.021122453734279,0.070777550339699],[-0.084969699382782,0.051711231470108,-0.052226722240448]],[[-0.0085471170023084,0.031526617705822,-0.059830490499735],[0.068786531686783,-0.08524763584137,0.02675454877317],[-0.095873132348061,0.0065985904075205,0.016342055052519]],[[-0.18271462619305,-0.029540970921516,0.018306668847799],[0.035754304379225,0.06387548148632,-0.088517583906651],[-0.09159329533577,0.030393827706575,0.020955009385943]],[[0.11385379731655,-0.046468064188957,0.013682249933481],[0.067136153578758,-0.07206753641367,-0.025593155995011],[-0.02012681402266,-0.056178838014603,-0.05200270190835]],[[0.043015114963055,-0.061846617609262,0.040327221155167],[0.038043294101954,-0.054306253790855,-0.0495415776968],[0.025720693171024,0.085454992949963,-0.052456017583609]],[[0.055921565741301,-0.0099279182031751,-0.093775577843189],[0.013308278284967,-0.07455737143755,0.035226345062256],[0.011306967586279,0.017880950123072,0.025925563648343]],[[-0.02675024420023,-0.0041801072657108,-0.060725629329681],[-0.05695441365242,-0.0048465197905898,0.049244672060013],[-0.013687137514353,-0.048680759966373,-0.01384776737541]],[[0.090201884508133,0.10174245387316,0.017038503661752],[0.13974505662918,-0.010757369920611,0.072640314698219],[0.07170395553112,0.090366907417774,0.044350255280733]],[[-0.0047211870551109,0.015895275399089,0.070474587380886],[-0.12323440611362,-0.0022918067406863,-0.038063369691372],[0.047996532171965,-0.030250918120146,-0.012034620158374]],[[0.010470231994987,0.16607689857483,0.019646173343062],[-0.060067251324654,-0.064687639474869,-0.07400768995285],[0.022218843922019,0.039882589131594,-0.0067108734510839]],[[-0.033879745751619,-0.061829119920731,0.0012646504910663],[-0.039880998432636,-0.036723673343658,-0.028550986200571],[-0.029299695044756,-0.12206622958183,0.062794595956802]],[[0.024390509352088,-0.032360676676035,0.024331960827112],[-0.034226156771183,-0.0050805849023163,-0.057697311043739],[0.023852741345763,-0.011279349215329,0.061927817761898]],[[0.036433801054955,-0.052319500595331,0.0077560502104461],[-0.058827329427004,0.025153659284115,-0.0028215472120792],[0.036598864942789,-0.02178299985826,-0.0043789469636977]],[[0.012548753991723,-0.046907603740692,-0.06783489882946],[-0.013042598962784,0.016593620181084,0.0056699048727751],[-0.073191873729229,-0.10637652873993,-0.037274368107319]],[[-0.011325406841934,0.04853593558073,0.014871992170811],[0.0023547024466097,0.11306688934565,0.05935288220644],[0.039482902735472,0.034080263227224,0.10357924550772]],[[-0.044624198228121,0.014003548771143,-0.0021720109507442],[0.044175021350384,-0.0026059891097248,0.031711377203465],[-0.050349853932858,0.046353783458471,-0.023354222998023]],[[-0.00082208612002432,0.081943929195404,-0.11782113462687],[-0.022017687559128,-0.044801082462072,-0.10019783675671],[-0.089717097580433,0.1432411968708,0.01548923458904]],[[-0.045908682048321,0.14004962146282,-0.019411412999034],[-0.0073331501334906,-0.036832388490438,0.022441828623414],[-0.059692371636629,0.084516577422619,-0.065945111215115]],[[0.01125761307776,-0.0044054561294615,0.014958846382797],[-0.026194510981441,-0.01955807954073,-0.072360813617706],[0.043197225779295,0.010263367556036,-0.019287347793579]],[[0.011174744926393,0.035386245697737,-0.069084770977497],[-0.052879109978676,0.014573484659195,0.026958800852299],[0.018945775926113,0.020458022132516,0.03335066139698]]],[[[-0.0073230317793787,0.069278985261917,0.067298270761967],[0.035513799637556,-0.086615569889545,0.067433930933475],[-0.030545515939593,-0.05058079212904,-0.081326775252819]],[[0.089642725884914,0.093207016587257,-0.075783915817738],[0.09707809984684,-0.041012797504663,-0.046135455369949],[0.037317264825106,-0.011330698616803,-0.05286131799221]],[[0.048074174672365,0.0086043998599052,0.020656988024712],[-0.075724244117737,0.018668564036489,-0.079840369522572],[0.021032115444541,-0.11765716969967,-0.010804848745465]],[[-0.027823707088828,-0.089489288628101,-0.10520809143782],[-0.030400067567825,-0.069910459220409,-0.067076414823532],[0.073359370231628,-0.015019151382148,-0.040257722139359]],[[-0.064787648618221,0.010545499622822,-0.065510913729668],[-0.019647430628538,-0.0528434664011,-0.10076273977757],[0.062593549489975,0.096961431205273,-0.032472800463438]],[[0.052840285003185,-0.010495839640498,0.039486333727837],[0.023175118491054,-0.01882640644908,-0.048312827944756],[0.027334989979863,0.063354089856148,0.043464597314596]],[[-0.044716540724039,0.0034431754611433,-0.00030083258752711],[-0.067336365580559,-0.075463488698006,-0.0034651060122997],[0.034358233213425,-0.053840689361095,-0.0056399628520012]],[[0.014127250760794,-0.090656839311123,-0.0075435359030962],[0.11709333956242,0.062919080257416,-0.026197072118521],[-0.028565114364028,-0.02778192050755,-0.029442876577377]],[[-0.029563857242465,-0.05565532669425,0.010030839592218],[-0.04290334135294,-0.038101717829704,0.013255051337183],[-0.11420024931431,-0.037150662392378,-0.023605873808265]],[[0.028781851753592,-0.092954739928246,0.019450759515166],[0.0079265814274549,0.048199489712715,-0.031001783907413],[0.035156354308128,-0.025579120963812,0.025494832545519]],[[-0.097517393529415,0.0048081297427416,0.01301534473896],[0.05165446922183,-0.029108874499798,-0.033210560679436],[-0.070993907749653,-0.010798512026668,0.062703669071198]],[[0.080847971141338,0.037703581154346,-0.014696264639497],[0.020128730684519,-0.10723946988583,-0.012146635912359],[0.005196469835937,-0.027846399694681,-0.075230546295643]],[[-0.044682048261166,-0.008086915127933,-0.058661516755819],[0.17166595160961,-0.05089595913887,0.14208157360554],[-0.090850926935673,-0.054553434252739,0.033836748450994]],[[-0.0030917453113943,-0.011106272228062,-0.08754176646471],[-0.018452979624271,-0.0052117202430964,0.023274686187506],[0.059528399258852,-0.0453523658216,0.034572578966618]],[[-0.040107566863298,0.053426150232553,-0.053071297705173],[0.0059363469481468,0.046252813190222,-0.12651202082634],[-0.098846651613712,0.045645568519831,0.027128782123327]],[[0.094219416379929,-0.081969186663628,-0.029942309483886],[0.050450589507818,-0.070098042488098,-0.02430154569447],[-0.008922403678298,-0.046565305441618,0.042256232351065]],[[-0.080160088837147,-0.056135680526495,-0.064323805272579],[0.0098273493349552,0.13636136054993,0.031253192573786],[-0.010517938062549,0.041339576244354,0.015964215621352]],[[-0.084844343364239,-0.074432648718357,-0.030919335782528],[-0.0085516721010208,-0.082158535718918,0.041225384920835],[0.0027244142256677,-0.026006551459432,0.010902763344347]],[[-0.086648844182491,0.066182397305965,-0.048277862370014],[-0.024895712733269,0.018074067309499,0.13090740144253],[-0.00039557495620102,0.032813388854265,-0.060833819210529]],[[-0.010021088644862,0.067563578486443,-0.047295041382313],[-0.0034408741630614,0.018073257058859,-0.0094913113862276],[-0.014761086553335,0.015174726955593,-0.0058596786111593]],[[0.021487131714821,0.049177441745996,0.085558526217937],[-0.049308396875858,0.017665391787887,0.033123508095741],[-0.033728551119566,-0.082696296274662,-0.043699830770493]],[[-0.015635844320059,-0.07511243969202,0.051914319396019],[-0.00037221959792078,-0.030312839895487,-0.0084133092314005],[0.044161681085825,-0.036670655012131,0.079145833849907]],[[0.079529851675034,-0.060389995574951,-0.050208114087582],[0.034021236002445,0.088963620364666,0.077155821025372],[-0.1460082679987,0.031558725982904,0.076281748712063]],[[0.015760602429509,0.054729070514441,0.12597174942493],[-0.047108203172684,0.17915013432503,0.064935363829136],[0.09989370405674,0.033326014876366,-0.058189176023006]],[[-0.00035128972376697,0.042032178491354,0.019690699875355],[0.033449754118919,0.063364341855049,0.045132517814636],[0.017816670238972,0.047595974057913,0.039173685014248]],[[0.067536316812038,0.066466353833675,-0.055182959884405],[0.00011151635408169,0.020014081150293,0.010350682772696],[-0.040114708244801,0.014029985293746,-0.057048577815294]],[[-0.0027379509992898,-0.10834194719791,0.015408395789564],[0.0010707064066082,-0.033394988626242,-0.057793047279119],[0.06682313233614,0.1240571886301,0.15874800086021]],[[-0.075707457959652,-0.016699330881238,-0.0016311724903062],[0.078850775957108,0.020676689222455,-0.046020224690437],[0.027183089405298,0.13320298492908,-0.16145300865173]],[[0.02396166883409,0.053446710109711,-0.024356102570891],[-0.032487262040377,-0.016688290983438,-0.019538305699825],[-0.014406052418053,-0.073966681957245,-0.055656898766756]],[[-0.050637859851122,0.014047902077436,-0.0057543832808733],[-0.029100209474564,-0.062220606952906,-0.01451285276562],[-0.1065768301487,-0.011960420757532,0.046433296054602]],[[0.10156443715096,0.0016902016941458,-0.0084393257275224],[-0.0042044254951179,0.0025041259359568,-0.11118045449257],[0.068936802446842,-0.081536561250687,0.045665945857763]],[[0.029127053916454,-0.020863117650151,0.077281139791012],[-0.071211330592632,-0.10021264106035,-0.046430714428425],[-0.023492928594351,-0.12825608253479,-0.0060373516753316]],[[-0.029577750712633,-0.050131194293499,-0.023981954902411],[-0.018603013828397,-0.037961173802614,0.016620149835944],[0.015091928653419,-0.041239619255066,0.045038878917694]],[[0.06659322232008,0.037327900528908,0.0082121128216386],[0.023169755935669,-0.08745563775301,-0.015691621229053],[0.05756589025259,0.016374863684177,-0.035363826900721]],[[-0.077177353203297,0.093594551086426,-0.055452935397625],[0.075995557010174,0.021682387217879,0.030249334871769],[0.070309139788151,0.028837710618973,-0.0031541597563773]],[[-0.019482089206576,-0.094747886061668,0.035864632576704],[-0.073907651007175,0.0021515309344977,-0.061554867774248],[0.088248401880264,0.0048202467150986,-0.086305052042007]],[[-0.0093007320538163,0.0036816196516156,-0.020590426400304],[-0.07762236893177,-0.039160288870335,0.039050463587046],[-0.061731819063425,0.005559696815908,0.020467711612582]],[[-0.032895270735025,-0.092617601156235,-0.05909077450633],[0.059267196804285,-0.0052964328788221,-0.069482088088989],[0.16373054683208,0.14099080860615,0.027882158756256]],[[-0.0062185181304812,0.065251566469669,-0.10113243758678],[0.0003571945708245,-0.066093318164349,0.037365984171629],[-0.051222402602434,0.041712369769812,0.032042901962996]],[[0.070982612669468,-0.00059432350099087,0.064765371382236],[-0.027070397511125,0.081858515739441,0.05784547701478],[0.0052216476760805,0.052393190562725,-0.0065285018645227]],[[0.013305358588696,0.068012103438377,0.037854313850403],[0.033987421542406,-0.011026985011995,0.0015103074256331],[-0.09794320166111,0.011466081254184,-0.1075786575675]],[[-0.017831597477198,-0.077655032277107,-0.023346837610006],[-0.024654807522893,0.083667628467083,0.052880316972733],[-0.10175946354866,-0.027854882180691,0.0029047180432826]],[[-0.048877023160458,0.010751293040812,0.056463595479727],[-0.022600734606385,0.050246886909008,-0.0085391839966178],[0.010126808658242,0.025116009637713,0.032414384186268]],[[-0.083139158785343,0.0030249818228185,-0.084870785474777],[0.012269024737179,0.018751310184598,-0.0016732696676627],[-0.031362388283014,-6.3139610574581e-05,0.071649111807346]],[[-0.030473634600639,-0.0045604221522808,0.016254391521215],[-0.039177495986223,0.10917861014605,-0.034161433577538],[-0.018647188320756,-0.030675170943141,-0.0072624706663191]],[[0.01917271129787,0.018375992774963,0.010569366626441],[0.021483097225428,-0.0073057692497969,-0.029090512543917],[0.0038552561309189,-0.070557929575443,0.10101372748613]],[[0.078893177211285,-0.10848224163055,0.042604513466358],[-0.03454352170229,-0.024079790338874,-0.054236937314272],[-0.043369192630053,-0.0028422146569937,-0.015561377629638]],[[-0.0008750359993428,-0.057499803602695,0.033001769334078],[-0.054288391023874,-0.045423775911331,0.10553438961506],[0.026735840365291,-0.071378141641617,-0.050646103918552]],[[-0.040805447846651,-0.044128589332104,0.13888840377331],[-0.011732269078493,-0.0078509841114283,-0.10915644466877],[0.022008707746863,0.028076244518161,-0.015481106005609]],[[0.044134277850389,-0.015522844158113,-0.080851785838604],[0.15765218436718,-0.0042045582085848,-0.053059879690409],[0.018557444214821,0.0703040137887,-0.069033309817314]],[[-0.025334972888231,0.026593459770083,-0.013275695964694],[-0.020487431436777,-0.033118583261967,0.01272034086287],[0.014693210832775,-0.04931253939867,-0.0021596471779048]],[[0.098596967756748,0.067771054804325,0.067311033606529],[-0.039515852928162,-0.020431252196431,-0.023913118988276],[0.025763772428036,-0.015277035534382,-0.029345048591495]],[[-0.040671907365322,-0.042710460722446,-0.057816307991743],[0.11172275990248,0.006818457506597,-0.079890564084053],[0.031902179121971,-0.015548480674624,-0.051219530403614]],[[0.0394530557096,0.011255175806582,-0.053385611623526],[-0.071319580078125,-0.026408173143864,-0.070841483771801],[-0.01684183627367,-0.050930101424456,0.084048978984356]],[[-0.041231516748667,-0.097816236317158,0.008977884426713],[-0.059879913926125,0.078715287148952,0.051949631422758],[-0.039439626038074,0.00085404323181137,-0.030836073681712]],[[-0.077126622200012,-0.043977297842503,-0.069343008100986],[-0.049584351480007,-0.00033772466122173,-0.010366974398494],[0.023944595828652,0.0084287906065583,0.012701066210866]],[[-0.063654340803623,-0.0073708388954401,-0.021740823984146],[0.029893234372139,-0.091033585369587,0.087919481098652],[-0.071618519723415,-0.01287201885134,-0.017463877797127]],[[-0.003723822766915,0.011758767999709,-0.054804995656013],[-0.035740464925766,0.020921560004354,0.058356788009405],[-0.025099584832788,-0.063722237944603,0.05690036341548]],[[0.0071114273741841,0.074776031076908,0.064668372273445],[-0.071717500686646,0.064455151557922,0.089812152087688],[-0.041074875742197,0.082769580185413,0.16531270742416]],[[-0.033759247511625,-0.089146189391613,0.046946223825216],[0.021152393892407,-0.017948597669601,0.016285331919789],[0.0052830716595054,0.03694261983037,0.019018538296223]],[[0.08410819619894,0.03481362387538,0.016893424093723],[0.043048989027739,-0.021241804584861,0.0034248563461006],[0.0074509428814054,0.031314298510551,-0.068069994449615]],[[0.083503976464272,0.023821722716093,0.0032980388496071],[-0.025642238557339,-0.047416646033525,0.013403045013547],[0.035940036177635,0.013293309137225,-0.051474664360285]],[[-0.0292495097965,0.016304317861795,0.0013894397998229],[-0.051645942032337,-0.10684018582106,-0.05332538485527],[0.07968382537365,-0.032772433012724,0.04128710180521]],[[0.063563100993633,0.047236829996109,-0.012173499912024],[-0.011657691560686,0.12453635782003,0.055436074733734],[-0.02834546752274,-0.059744365513325,-0.023134592920542]]],[[[0.026219423860312,-0.011808708310127,-0.067776151001453],[-0.080158479511738,-0.11007352918386,-0.078596755862236],[-0.044730704277754,-0.083896353840828,-0.082373484969139]],[[-0.092698387801647,-0.18151138722897,-0.0040400386787951],[-0.010027755051851,-0.16261903941631,-0.096489146351814],[0.040982376784086,-0.0174152366817,-0.059302724897861]],[[-0.057974893599749,-0.20170946419239,-0.22184112668037],[0.065253913402557,-0.059886895120144,-0.2124155163765],[0.075788661837578,0.033911552280188,-0.024275250732899]],[[0.013972541317344,0.046080328524113,0.046894323080778],[0.11721502989531,0.057294867932796,0.10425502806902],[0.084854565560818,-0.012833850458264,-0.081087961792946]],[[0.033241778612137,-0.028615025803447,-0.016988737508655],[0.029672458767891,-0.01826355792582,-0.0952477902174],[0.013060953468084,0.003773178672418,-0.023171244189143]],[[0.022717665880919,0.065629787743092,-0.079224228858948],[-0.036225344985723,-0.10730444639921,-0.018207481130958],[0.031521927565336,0.011266339570284,-0.020402083173394]],[[-0.0015660763019696,-0.090924948453903,-0.091596387326717],[-0.12618184089661,-0.022706564515829,-0.049962405115366],[0.041109904646873,0.021249398589134,-0.013116701506078]],[[0.057412061840296,0.079176552593708,0.064989224076271],[0.15139012038708,0.15400430560112,0.031773347407579],[-0.0036515125539154,0.050637919455767,0.0098937638103962]],[[0.097102582454681,-0.19062450528145,0.075983092188835],[0.01224572956562,0.0068227602168918,-0.091368056833744],[-0.042185541242361,-0.10363829135895,0.080714732408524]],[[-0.085036218166351,-0.081585057079792,-0.040509358048439],[0.023444395512342,-0.044756595045328,-0.098740503191948],[-0.022023582831025,0.027158673852682,-0.059318777173758]],[[0.0056272055953741,-0.036351032555103,0.026054656133056],[0.02925768494606,-0.062688820064068,-0.12022069096565],[0.083963461220264,0.054058190435171,-0.0069202757440507]],[[-0.069341152906418,-0.078716494143009,-0.03483197465539],[-0.18099234998226,-0.065134949982166,-0.055954344570637],[-0.10843747109175,-0.15339036285877,-0.068023972213268]],[[-0.055040374398232,0.038431096822023,0.05425588414073],[-0.021006962284446,0.0070580327883363,0.027101632207632],[-0.050932317972183,-0.020227564498782,-0.070401966571808]],[[0.12534137070179,0.053975649178028,0.034869574010372],[0.09149182587862,0.089448936283588,0.065724402666092],[-0.0049390695057809,0.015264755114913,-0.040312387049198]],[[-0.0071746623143554,0.047092657536268,-0.071032822132111],[0.0038656515534967,0.086472637951374,-0.018855277448893],[0.012426478788257,0.016299994662404,-0.019542781636119]],[[-0.078193254768848,0.015752440318465,0.039413213729858],[0.10369491577148,-0.056049339473248,-0.023134404793382],[-0.031715884804726,0.057699464261532,0.034351542592049]],[[-0.040775701403618,-0.10735267400742,-0.024029253050685],[-0.04312739521265,-0.10627853870392,-0.046194702386856],[0.10508101433516,0.095313593745232,-0.038575600832701]],[[0.023456340655684,0.009126104414463,0.052105691283941],[0.051153246313334,0.0069710984826088,-0.026625273749232],[0.049460988491774,0.0799226090312,0.011069988831878]],[[-0.032290171831846,0.05543601885438,0.018340993672609],[0.067073613405228,-0.093304634094238,0.048590779304504],[-0.066670894622803,0.028640316799283,-0.035179685801268]],[[0.03552683442831,-0.035189148038626,-0.12864105403423],[0.0958082228899,0.0096258642151952,-0.047698155045509],[0.047668162733316,0.07954303175211,-0.024515485391021]],[[0.049880128353834,0.069814473390579,0.098989114165306],[0.0030209349934012,-0.011596934869885,0.0065602231770754],[0.09174957126379,-0.0169014390558,0.055771201848984]],[[-0.018252961337566,0.14907789230347,0.17166556417942],[-0.029100319370627,-0.0058930828236043,0.029265083372593],[-0.085098564624786,-0.027787834405899,-0.018294712528586]],[[-0.087774597108364,-0.026197711005807,0.012178428471088],[-0.025137949734926,0.028511725366116,0.026424003764987],[0.012653114274144,0.011693079024553,-0.036685321480036]],[[-0.021997712552547,0.018666369840503,0.14199118316174],[-0.11006905883551,-0.010978317819536,0.076736949384212],[0.023861093446612,0.1350065022707,0.038051068782806]],[[-0.021191032603383,0.037237167358398,0.061752744019032],[-0.15831135213375,0.077722169458866,-0.045721288770437],[-0.070039629936218,-0.034304093569517,0.036432970315218]],[[0.028098337352276,-0.055576927959919,-0.034212119877338],[0.04063256457448,-0.020958013832569,0.023353552445769],[0.025714898481965,0.016304863616824,0.0030026831664145]],[[-0.026996336877346,-0.051364149898291,0.020484341308475],[-0.019406002014875,-0.016705369576812,-0.002771879080683],[-0.1166664659977,0.025683715939522,0.035987935960293]],[[-0.032436724752188,-9.8826094472315e-05,0.02944147400558],[-0.066521026194096,-0.068244807422161,0.068747065961361],[0.002686453750357,0.030843691900373,0.027798887342215]],[[-0.076006844639778,-0.1137068271637,-0.13318838179111],[-0.031798142939806,-0.058676011860371,-0.03706381097436],[0.030002044513822,-0.029269291087985,-0.024613451212645]],[[0.020581927150488,0.0057192416861653,-0.00040953498682939],[0.021569311618805,-0.037211183458567,-0.11823607981205],[0.03551372885704,0.032372426241636,-0.00012541961041279]],[[-0.041338607668877,-0.092424817383289,0.076931171119213],[0.013798185624182,0.012306636199355,0.099963665008545],[0.035816963762045,-0.0096962274983525,0.059134062379599]],[[0.042399778962135,-0.013418381102383,0.049543589353561],[-0.0037540651392192,0.029844831675291,-0.076006628572941],[0.081443920731544,-0.02234373241663,0.086029849946499]],[[-0.065978199243546,-0.067623622715473,-0.017877684906125],[-0.00023894639161881,-0.06127392500639,0.020395003259182],[-0.013004801236093,-0.023440849035978,-0.031078105792403]],[[0.085130602121353,0.033368844538927,0.084705375134945],[0.031423985958099,0.014482853934169,0.014539098367095],[0.023408621549606,0.059424970299006,0.022234357893467]],[[-0.035157594829798,-0.10042580217123,-0.11632557213306],[-0.22086448967457,-0.11221931874752,-0.057317305356264],[-0.059006430208683,-0.05801210179925,0.0048313396982849]],[[0.002243175636977,0.017610652372241,0.068577043712139],[0.062084328383207,0.1014743372798,-0.0044366233050823],[-0.016115825623274,-0.020346917212009,-0.019257908686996]],[[0.0024896145332605,0.0089356526732445,-0.04993411898613],[-0.03436566516757,-0.001615000423044,0.066085249185562],[-0.09443798661232,-0.056414313614368,-0.072046831250191]],[[0.039610505104065,0.017001297324896,0.016725540161133],[0.013998005539179,-0.015331702306867,0.049201104789972],[-0.060470853000879,0.010179501026869,-0.00021929535432719]],[[0.1097004711628,-0.050524510443211,-0.054297316819429],[-0.010909214615822,-0.087003014981747,0.023910649120808],[0.026082308962941,-0.050213731825352,0.078875489532948]],[[0.01614916138351,0.012655557133257,-0.047212444245815],[0.048184391111135,-0.0098664136603475,0.0041807433590293],[0.14246778190136,0.068105898797512,0.00017890910385177]],[[-0.10173389315605,-0.13925138115883,-0.028825854882598],[0.037750735878944,-0.0032062097452581,0.030014239251614],[0.049641590565443,0.039668995887041,0.034942399710417]],[[-0.10280665755272,-0.033708017319441,-0.017014399170876],[-0.055183075368404,-0.056909326463938,0.063642159104347],[-0.14516228437424,-0.012622544541955,0.094257481396198]],[[0.026049572974443,0.007289563305676,0.065269619226456],[0.038161795586348,0.037638138979673,-0.022498093545437],[-0.024526827037334,-0.027611454948783,-0.014858406037092]],[[0.013023101724684,-0.084430582821369,0.079511441290379],[0.0071910871192813,0.015968037769198,-0.033218499273062],[-0.00089648453285918,0.052092961966991,0.12339239567518]],[[0.033495683223009,-0.14784608781338,-0.056742131710052],[0.058666452765465,-0.078151315450668,-0.11536532640457],[0.11219611018896,0.0092584732919931,-0.093757562339306]],[[0.034630056470633,0.0084202717989683,-0.0025115471798927],[-0.010407750494778,-0.062074333429337,0.036749493330717],[-0.043224263936281,-0.073468796908855,0.059632506221533]],[[-0.098880507051945,0.033345144242048,-0.054610788822174],[0.03855773806572,0.0081579135730863,0.0470140427351],[0.05418798327446,-0.0028418095316738,0.01157895103097]],[[-0.018178870901465,0.078350767493248,-0.042134419083595],[0.080424971878529,0.057129353284836,0.015671093016863],[0.017796648666263,0.053710583597422,-0.058656997978687]],[[-0.041055198758841,-0.025749670341611,0.059444513171911],[-0.074273481965065,-0.051657821983099,-0.0073615536093712],[-0.063542455434799,-0.033610977232456,0.011761432513595]],[[-0.043602962046862,0.001052507199347,0.035837590694427],[0.064886935055256,-0.055455345660448,-0.04704675078392],[-0.019080029800534,0.071129783987999,0.088464811444283]],[[0.013073053210974,-0.0053689475171268,-0.055056616663933],[0.026591669768095,0.014244165271521,0.027653528377414],[-0.025912238284945,-0.038564667105675,0.052463091909885]],[[-0.028934108093381,0.026251874864101,-0.03661248087883],[0.099696338176727,0.070679500699043,-0.0074397842399776],[0.15434324741364,0.13263410329819,0.0016652821796015]],[[-0.0095954751595855,-0.059487868100405,0.0654296875],[0.0063327066600323,-0.044265870004892,-0.0087466826662421],[0.1220253482461,0.058013051748276,0.0032913079485297]],[[0.089593015611172,-0.010971629992127,-0.073025360703468],[0.007308991625905,0.075209081172943,-0.05158881098032],[-0.10387454926968,0.0063196807168424,0.069754764437675]],[[0.013235477730632,0.003814349649474,-0.028838889673352],[0.0062136962078512,-0.0055400193668902,-0.017505548894405],[-0.021821545436978,0.020000787451863,-0.0033309371210635]],[[-0.097049050033092,-0.023689277470112,0.19993759691715],[-0.17384847998619,-0.14728909730911,-0.019922960549593],[-0.18335835635662,-0.039736833423376,0.10722348093987]],[[0.019264219328761,-0.1072688922286,0.0001581443939358],[0.030406814068556,-0.049263101071119,0.00049046310596168],[0.0062259477563202,-0.044307500123978,0.026786245405674]],[[-0.0035125047434121,-0.04484511911869,-0.11550210416317],[0.054949961602688,-0.11964516341686,0.054693881422281],[0.028263354673982,-0.098268792033195,-0.067054621875286]],[[0.036270953714848,-0.06103602796793,-0.0068543539382517],[0.047046400606632,0.076408676803112,0.030923152342439],[0.062762908637524,-0.096475936472416,-0.0016201481921598]],[[0.0030225377995521,0.058112509548664,0.11151546239853],[-0.14874455332756,0.038036201149225,0.063254915177822],[-0.091579928994179,-0.060960717499256,0.022265121340752]],[[0.027008846402168,0.0066631268709898,0.14030264317989],[-0.064264304935932,0.039739955216646,0.014856489375234],[-0.18421401083469,-0.036262974143028,0.010115075856447]],[[0.027407120913267,-0.011993016116321,-0.0030903490260243],[-0.061885863542557,-0.041761577129364,-0.0045504635199904],[-0.048271592706442,-0.087873250246048,0.007519714999944]],[[-0.00021044339518994,-0.01303169131279,-0.035392098128796],[0.042647633701563,0.057772506028414,-0.0068514016456902],[-0.019359551370144,0.0050555523484945,-0.018462197855115]],[[-0.095794171094894,-0.20078456401825,-0.06986852735281],[-0.074420295655727,-0.088278323411942,-0.055854618549347],[0.006512510124594,-0.025642475113273,-0.036875948309898]]],[[[0.011548196896911,-0.10694336891174,-0.049534160643816],[0.029898975044489,-0.13522991538048,0.12526555359364],[0.02573811635375,-0.099918633699417,-0.10429000109434]],[[0.065903998911381,0.053942419588566,-0.080047905445099],[-0.00061634799931198,-0.017992503941059,-0.033128466457129],[-0.0018832004861906,0.065535590052605,0.094963923096657]],[[-0.047472562640905,0.0039572529494762,0.087922565639019],[-0.089098885655403,-0.073424100875854,0.066636987030506],[-0.032518960535526,-0.14207588136196,0.058590985834599]],[[0.018422741442919,-0.063571110367775,0.022896615788341],[-0.016086857765913,-0.039375547319651,-0.057591859251261],[0.05726708099246,-0.062882624566555,-0.029529560357332]],[[0.08078346401453,0.021106878295541,-0.026185769587755],[0.076983816921711,-0.032105002552271,-0.040227871388197],[0.0311647541821,-0.13534264266491,-0.037772998213768]],[[0.020841101184487,-0.067681580781937,-0.056711249053478],[0.014640999957919,-0.11160288751125,-0.019106987863779],[-0.040141977369785,0.00084710633382201,0.030005235224962]],[[0.012332123704255,0.047550790011883,-0.13384649157524],[-0.051443960517645,0.00628757243976,0.10383202135563],[-0.01923649199307,0.012662692926824,0.027769243344665]],[[-0.06111966073513,-0.018430829048157,-0.043652076274157],[0.014725552871823,-0.061579998582602,0.021377531811595],[0.12090653181076,-0.093627244234085,0.059736710041761]],[[-0.014591562561691,-0.070860758423805,0.050455901771784],[0.02725769393146,0.073318630456924,0.066718623042107],[-0.14832927286625,-0.068867795169353,0.011973737739027]],[[-0.070044368505478,0.018030477687716,-0.091016307473183],[-0.085848301649094,0.099946483969688,0.12086994946003],[-0.053247198462486,-0.093035444617271,0.050279214978218]],[[-0.074566207826138,-0.05904147028923,-0.028567960485816],[-0.031616367399693,0.12059133499861,0.063964247703552],[-0.12722261250019,-0.024191025644541,-0.004778518807143]],[[0.022286232560873,0.018693691119552,0.023721937090158],[-0.001927858684212,0.11977775394917,0.024960607290268],[0.089465588331223,-0.036372750997543,0.0012217944022268]],[[-0.076573319733143,-0.030432889238,-0.060548808425665],[-0.012525020167232,0.02466943487525,0.029736522585154],[-0.071372531354427,-0.0014796443283558,-0.0085758594796062]],[[-0.087000213563442,0.017131073400378,0.021980883553624],[-0.0012050925288349,0.0097846938297153,0.062897354364395],[0.035659499466419,-0.023794764652848,-0.0036522476002574]],[[-0.081880085170269,-0.10092985630035,-0.048487719148397],[-2.3245316697285e-05,0.005106027238071,-0.056391090154648],[-0.0081280060112476,0.051330629736185,-0.011538540013134]],[[-0.01216172799468,0.029942007735372,-0.10748157650232],[0.0026654652319849,0.10364676266909,0.12278481572866],[-0.0061907088384032,0.018792316317558,0.015121936798096]],[[-0.016201725229621,-0.026181792840362,0.085411906242371],[0.094091169536114,0.031471785157919,-0.15127404034138],[0.0031373808160424,0.087257452309132,-0.034468609839678]],[[-0.0050295791588724,-0.058666627854109,-0.030341381207108],[0.013234293088317,0.030617097392678,-0.072026126086712],[-0.060692023485899,0.0052827205508947,-0.02887400239706]],[[0.061088979244232,-0.037656221538782,0.025413315743208],[0.073421820998192,-0.053152859210968,0.0092044435441494],[0.057734981179237,0.0032176405657083,-0.018821779638529]],[[-0.018904838711023,-0.032816272228956,0.038401465862989],[-0.0041957092471421,-0.032578196376562,-0.018249358981848],[-0.0061055412515998,0.056792993098497,0.030998913571239]],[[0.014347683638334,-0.015726884827018,-0.1528096050024],[-0.058196824043989,-0.065141260623932,-0.00741580221802],[-0.01885873451829,-0.033834233880043,-0.0044242925941944]],[[-0.0011935865040869,0.019823338836432,0.0048565571196377],[0.010949061252177,-0.10230908542871,0.027719484642148],[0.08344716578722,0.026547720655799,0.0079014869406819]],[[0.0019605073612183,-0.071854948997498,0.0054931240156293],[0.065284132957458,-0.043410897254944,-0.040070325136185],[0.056863214820623,0.013153865933418,-0.017238294705749]],[[-0.0095056723803282,0.027272570878267,-0.042504519224167],[0.0028561914805323,-0.0093640564009547,0.061500586569309],[0.022437140345573,0.039673138409853,-0.022117277607322]],[[0.20073059201241,0.063908696174622,0.00065533857559785],[-0.097091868519783,0.09388042986393,-0.1126975491643],[-0.23020389676094,0.099667258560658,0.0072902021929622]],[[0.01477347780019,0.055265314877033,0.0098581295460463],[-0.029872199520469,0.048339627683163,0.041458573192358],[0.013383361510932,-0.044531930238008,0.036984100937843]],[[0.021140191704035,-0.063968427479267,-0.10694829374552],[0.11549805104733,0.032374702394009,-0.029309764504433],[0.019824353978038,-0.067826673388481,0.025271594524384]],[[-0.036839995533228,-0.044016249477863,0.01852978952229],[-0.03557075932622,-0.097504764795303,-0.0039020460098982],[-0.10435315221548,0.036997962743044,0.0076962928287685]],[[-0.10726121813059,-0.048839904367924,0.094158753752708],[-0.038433376699686,-0.035604875534773,0.043760877102613],[-0.01424662489444,0.11887685954571,0.039088942110538]],[[0.0168665535748,-0.059878770262003,-0.002827690448612],[-0.057547077536583,-0.043457221239805,0.063704930245876],[-0.046336330473423,-0.034317534416914,0.04421753808856]],[[0.044738654047251,-0.0029480441007763,-0.007714313454926],[0.059772986918688,0.014017846435308,-0.024738864973187],[-0.011147720739245,0.07211709022522,-0.00015466619515792]],[[-0.08834083378315,-0.22233505547047,0.021615182980895],[0.067013576626778,-0.044081121683121,-0.0088778315111995],[0.073102749884129,0.18350428342819,0.14527247846127]],[[-0.051675252616405,-0.014640101231635,0.033706184476614],[-0.0043569556437433,-0.042156003415585,-0.060491189360619],[-0.061590563505888,-0.039414010941982,-0.017569422721863]],[[-0.0037319003604352,-0.016015768051147,0.010271113365889],[-0.051890403032303,-0.097985222935677,-0.025276912376285],[0.045921888202429,-0.029656963422894,0.0011814176104963]],[[-0.072211846709251,0.032677236944437,0.10691787302494],[0.026226013898849,-0.040727935731411,0.053689192980528],[0.069762460887432,-0.045103527605534,0.045875195413828]],[[0.034830927848816,0.019818749278784,0.059848181903362],[-0.039346151053905,0.0090225832536817,-0.093084298074245],[-0.0088637489825487,0.016686372458935,0.04144075512886]],[[0.10445512831211,-0.050029907375574,0.093943804502487],[-0.075643830001354,-0.10361631959677,-0.071282856166363],[-0.022942947223783,-0.077517725527287,0.059008821845055]],[[0.076380826532841,-0.005877791903913,-0.13757108151913],[-0.037369135767221,-0.017616733908653,0.013462291099131],[0.15955412387848,-0.12728971242905,0.12547969818115]],[[-0.14460265636444,0.065664641559124,0.035413861274719],[-0.038514416664839,-0.049125332385302,-0.091780215501785],[0.00012533098924905,0.091599203646183,0.13714183866978]],[[-0.04093212634325,0.090298093855381,0.027216406539083],[-0.043160568922758,0.032852862030268,-0.052784495055676],[-0.022424913942814,0.01163603272289,-0.057916678488255]],[[0.053119271993637,-0.054251328110695,-0.01603620685637],[0.0047789397649467,0.018808662891388,-0.14578452706337],[-0.044288381934166,-0.039773423224688,-0.069316208362579]],[[-0.051100589334965,0.089406736195087,0.12760551273823],[-0.01377677731216,0.021267360076308,0.069290205836296],[-0.014637700282037,0.063410051167011,0.073272667825222]],[[0.065289378166199,-0.002193468157202,-0.03120468556881],[-0.019229382276535,-0.058168590068817,-0.0079821525141597],[0.024717235937715,-0.056152123957872,-0.072187386453152]],[[-0.19881618022919,-0.15481166541576,0.18027006089687],[-0.14077053964138,-0.064371936023235,0.035888209939003],[0.14854469895363,-0.038576807826757,-0.10452615469694]],[[0.031497988849878,-0.041344068944454,-0.024419261142612],[-0.087860159575939,-0.048536863178015,-0.052256390452385],[-0.010545984841883,-0.03576410189271,0.040250789374113]],[[-0.029587281867862,-0.03635373711586,-0.068028278648853],[0.081912823021412,-0.032069269567728,0.052022144198418],[0.017225230112672,-0.00049409118946642,0.06037874147296]],[[0.012822521850467,0.034946445375681,0.0034974042791873],[0.01157496124506,0.063499882817268,0.07167012989521],[-0.040333844721317,-0.054679166525602,-0.016985857859254]],[[-0.044333651661873,-0.04729962348938,0.11781928688288],[0.01529036834836,-0.15777429938316,0.015727378427982],[0.021104253828526,0.086073473095894,-0.03661497682333]],[[0.027281291782856,-0.045555781573057,0.052660644054413],[0.036476574838161,-0.004912483971566,0.13369642198086],[-0.040078695863485,0.044501952826977,-0.01072003878653]],[[0.16520415246487,0.028287766501307,-0.020715933293104],[0.033773604780436,-0.048988670110703,-0.047432567924261],[0.016442775726318,-0.021060375496745,-0.11774355918169]],[[-0.067422665655613,-0.10587254911661,-0.07729871571064],[0.0077250455506146,-0.014917872846127,-0.012169241905212],[0.0099876094609499,-0.022588388994336,-0.076150462031364]],[[-0.1228571459651,-0.0053988639265299,0.10550055652857],[0.024790851399302,-0.0076083103194833,0.085422441363335],[0.1101613342762,-0.015662349760532,0.043313648551702]],[[-0.010362170636654,-0.024283522740006,-0.036983549594879],[-0.01243338920176,0.045904938131571,-0.1209095492959],[-0.18839119374752,0.066373243927956,-0.022476071491838]],[[-0.053126160055399,0.0029269496444613,-0.030180981382728],[0.044309560209513,-0.032126124948263,-0.045844677835703],[0.0077422494068742,-0.0082242954522371,0.065978564321995]],[[-0.059397652745247,-0.0037549829576164,0.082544893026352],[0.0046930727548897,-0.20568788051605,0.053190220147371],[-0.0078522050753236,-0.029603337869048,-0.037366900593042]],[[0.034924995154142,-0.026560535654426,0.039522979408503],[0.030426796525717,0.058550342917442,-0.0061795995570719],[0.025988515466452,0.036338225007057,0.040965966880322]],[[-0.068479433655739,0.03744862601161,0.050090800970793],[-0.0069568264298141,0.099741518497467,-0.039191786199808],[-0.016469093039632,-0.03274666890502,-0.050036784261465]],[[-0.030797012150288,0.019244343042374,0.021310875192285],[-0.16187882423401,-0.093469344079494,-0.016254605725408],[0.0090826023370028,-0.13850043714046,-0.066662929952145]],[[-0.0089085167273879,-0.061465915292501,0.055310372263193],[0.083693578839302,0.0088355345651507,0.15813870728016],[0.021725768223405,0.020371820777655,0.18451577425003]],[[0.063871800899506,-0.019577521830797,-0.01558898575604],[0.010955694131553,-0.012574105523527,-0.085715629160404],[0.033990859985352,-0.0045240852050483,0.020563246682286]],[[-0.05797628685832,-0.031819894909859,-0.021784843876958],[0.1004433631897,0.017979111522436,0.087242320179939],[-0.030308164656162,-0.045499823987484,-0.0053232591599226]],[[0.16249600052834,0.18966740369797,0.013015604577959],[0.040736313909292,-0.021588057279587,0.0027967235073447],[-0.018279084935784,-0.077013455331326,-0.10599993169308]],[[-0.079601228237152,-0.0035301393363625,-0.044286388903856],[0.067123994231224,-0.0071583092212677,-0.056259129196405],[0.020255671814084,-0.029302721843123,-0.076099172234535]],[[-0.094014033675194,0.074082843959332,-0.029649812728167],[0.071374647319317,-0.066417656838894,-0.047266066074371],[-0.050555698573589,-0.044100139290094,-0.017170052975416]]],[[[0.019229661673307,0.0072977398522198,0.046291101723909],[0.023285612463951,-0.038212884217501,-0.011572089977562],[-0.013373927213252,-0.038039542734623,-0.069673433899879]],[[-0.068577766418457,-0.055435795336962,-0.10112398862839],[-0.046643946319818,-0.035698682069778,0.04766645655036],[-0.020955933257937,-0.081137232482433,-0.12161146849394]],[[0.080762960016727,-0.04211039096117,0.16087748110294],[-0.087590910494328,-0.19121773540974,-0.13968214392662],[-0.031580369919538,-0.08045768737793,-0.086124062538147]],[[0.0069371052086353,-0.062103472650051,-0.060233768075705],[-0.068997286260128,-0.097157597541809,-0.078134842216969],[-0.094036675989628,0.044995628297329,-0.02417459897697]],[[0.13935911655426,0.079141385853291,0.027247434481978],[-0.018028618767858,0.016855549067259,0.056057658046484],[-0.07061305642128,-0.072478577494621,-0.072947733104229]],[[0.052448265254498,0.018667949363589,0.026898432523012],[-0.0043722684495151,-0.056966379284859,0.0060754125006497],[0.00016607655561529,-0.028814408928156,-0.04103272780776]],[[0.0083534270524979,-0.093456335365772,0.02310686558485],[-0.10882011801004,-0.14472538232803,-0.013955400325358],[-0.1104720979929,-0.028265146538615,0.02226029522717]],[[-0.0064908242784441,-0.034914791584015,0.073493227362633],[-0.1456468552351,-0.081825129687786,-0.12307475507259],[0.059458412230015,0.043616227805614,0.12348766624928]],[[-0.049944620579481,-0.038215897977352,-0.044452551752329],[-0.076088309288025,0.064088642597198,-0.024573791772127],[-0.051834542304277,0.065885335206985,0.065355911850929]],[[-0.010809395462275,0.060960728675127,-0.014666615054011],[0.0087980628013611,0.0025875042192638,0.0341134108603],[-0.10617125034332,0.012961238622665,-0.09267383813858]],[[-0.060212720185518,0.073517039418221,-0.043002966791391],[-0.056241177022457,-0.0088944090530276,0.017634084448218],[0.053179446607828,-0.046919923275709,-0.074505150318146]],[[0.053946319967508,0.068304196000099,0.068808019161224],[-0.054834548383951,0.0041534225456417,0.029410421848297],[0.10233692824841,-0.063777558505535,-0.15956452488899]],[[0.005305415019393,0.037793561816216,0.08067312836647],[0.041307125240564,0.0092944856733084,-0.030185576528311],[0.078105613589287,-0.02791859023273,-0.0206637121737]],[[0.010144075378776,-0.06728982180357,0.10449317097664],[0.0051711685955524,0.017468778416514,0.12278275936842],[-0.12722004950047,-0.03757881373167,-0.035931818187237]],[[-0.035251598805189,-0.057969991117716,-0.070366561412811],[0.0096906507387757,0.025200959295034,-0.047580283135176],[0.0061908783391118,0.031913589686155,0.0012514236150309]],[[-0.14851288497448,0.070277899503708,-0.070592142641544],[0.021284092217684,0.046707693487406,-0.043275866657495],[-0.045780666172504,0.020121026784182,0.03853602707386]],[[-0.092318244278431,-0.074963368475437,0.044945247471333],[-0.06378099322319,-0.041433095932007,-0.091287158429623],[0.15600757300854,0.024829652160406,0.041329506784678]],[[-0.00022837417782284,-0.13308371603489,-0.028534861281514],[0.010773359797895,0.052908025681973,-0.016977021470666],[0.010654723271728,-0.091913148760796,-0.065802969038486]],[[0.070205807685852,0.01267062406987,-0.021961256861687],[-0.12562976777554,-0.04790323227644,-0.10621820390224],[0.00073746999260038,0.02376371063292,0.067205384373665]],[[0.083680801093578,0.024039281532168,0.069996282458305],[-0.033262319862843,-0.018359623849392,-0.014300203882158],[-0.0078520281240344,-0.03657453879714,-0.022905914112926]],[[0.10337706655264,0.046204604208469,-0.10711843520403],[-0.08845691382885,-0.071811646223068,0.058976113796234],[0.003532333066687,-0.014627044089139,0.086063474416733]],[[0.09187775105238,0.003797068959102,-0.10436049848795],[-0.0039969547651708,0.066742315888405,-0.0065662381239235],[0.004315547645092,0.0098000438883901,0.055373195558786]],[[-0.018797095865011,-0.11141988635063,-0.017415737733245],[0.0091748367995024,-0.030443362891674,-0.0048570409417152],[0.01923262514174,0.059205424040556,-0.016768932342529]],[[0.05193467438221,0.0017078288365155,0.11993300914764],[0.045273877680302,-0.018343839794397,0.11180754750967],[-0.066086463630199,0.023872865363955,0.021745435893536]],[[-0.032684113830328,-0.096968851983547,-0.01852915994823],[-0.015315615572035,0.096629828214645,0.073725245893002],[0.0078770881518722,-0.023291908204556,0.0090526342391968]],[[0.008313799276948,0.09647911041975,-0.010410057380795],[-0.016720721498132,0.0057003707624972,0.039402808994055],[0.019313538447022,-0.033935230225325,-0.075024992227554]],[[0.15980008244514,-0.0068978434428573,7.0529509685002e-05],[-0.18653978407383,-0.052840247750282,-0.07042296230793],[-0.054863814264536,0.061494242399931,0.0011215740814805]],[[-0.29490238428116,-0.14476858079433,-0.054448407143354],[0.071787357330322,0.0016617665532976,0.17083382606506],[0.051480133086443,-0.051998890936375,0.068748109042645]],[[-0.035828433930874,0.044168241322041,0.15217882394791],[0.053876247256994,0.098959989845753,-0.13680495321751],[-0.00022069399710745,-0.050006873905659,-0.063504807651043]],[[-0.09997271746397,-0.043726950883865,-0.090644679963589],[-0.065968535840511,-0.020968124270439,-0.18367809057236],[-0.044183604419231,-0.046194113790989,-0.014271261170506]],[[0.055046565830708,-0.012213946320117,-0.071043081581593],[-0.010722348466516,-0.12759463489056,-0.015504118055105],[-0.071868941187859,-0.019476609304547,0.047277644276619]],[[0.16699446737766,0.093790642917156,-0.004915532656014],[-0.068346843123436,-0.097411505877972,-0.038847178220749],[-0.0061850678175688,-0.034013420343399,0.027803895995021]],[[-0.074134089052677,-0.07543633878231,-0.057206023484468],[-0.018316056579351,-0.025678403675556,-0.059021279215813],[-0.09376398473978,0.0086982343345881,-0.041015297174454]],[[0.092280022799969,0.077430412173271,-0.0021452121436596],[0.018114870414138,0.096637837588787,-0.068832598626614],[-0.027698244899511,0.01596706174314,-0.063123427331448]],[[0.09423103928566,0.039861928671598,0.0035054597537965],[0.034423999488354,0.033091459423304,-0.011111914180219],[-0.0018771813483909,0.023259524255991,0.047328185290098]],[[0.00030709218117408,-0.0071453470736742,0.05359211191535],[0.0038165135774761,-0.077755399048328,-0.0045018116943538],[0.053200677037239,0.018013851717114,-0.014614681713283]],[[-0.038760744035244,0.091542080044746,0.045719806104898],[0.083379939198494,0.054884634912014,0.088765367865562],[-0.10008762031794,-0.0094304149970412,0.024896293878555]],[[0.014922449365258,0.018042709678411,-0.058034989982843],[0.066409431397915,-0.011478991247714,-0.043956086039543],[-0.045167502015829,-0.036494467407465,-0.052977547049522]],[[-0.0048803384415805,-0.036743711680174,0.051897492259741],[0.029418395832181,0.059452977031469,0.11114421486855],[0.0082475291565061,-0.05070348829031,0.021640356630087]],[[0.21770995855331,0.17461234331131,0.067924045026302],[0.019432676956058,0.024870686233044,0.012714348733425],[-0.12625499069691,-0.21338306367397,0.018306858837605]],[[0.15156096220016,0.021931443363428,0.061400946229696],[0.054370209574699,0.0042303721420467,0.061818536370993],[-0.075124800205231,-0.070721618831158,-0.040232498198748]],[[0.0071695186197758,0.019540814682841,0.02719915471971],[-0.072138026356697,0.026127135381103,0.0046551520936191],[-0.031031411141157,0.00089702726108953,0.043900944292545]],[[-0.040222883224487,0.038065407425165,0.025605088099837],[0.033594697713852,0.017396096140146,-0.091876789927483],[-0.020228672772646,-0.021924942731857,0.060331642627716]],[[-0.015502373687923,-0.016488144174218,-0.070276245474815],[-0.069478802382946,-0.075546912848949,0.059403240680695],[0.013344422914088,0.0072830165736377,0.046123772859573]],[[-0.037153962999582,-0.037365294992924,-0.10375324636698],[0.093059122562408,0.052467983216047,-0.030579257756472],[-0.10566319525242,-0.021086210384965,-0.13403449952602]],[[0.018698358908296,0.063842445611954,0.018318504095078],[0.057503394782543,-0.0070225768722594,-0.022753039374948],[-0.009137025102973,0.032009769231081,-0.045362442731857]],[[0.059348415583372,0.11012345552444,0.15652953088284],[-0.12635158002377,0.095484599471092,-0.04292706400156],[-0.077243328094482,-0.043361399322748,-0.036974165588617]],[[-7.5486241257749e-05,-0.038202449679375,0.1502523869276],[-0.074278153479099,-0.00079642760101706,-0.10897533595562],[-0.12556585669518,0.06514298170805,0.0012800563126802]],[[-0.11608099192381,-0.028133172541857,0.0039761625230312],[-0.030227804556489,0.14003700017929,-0.01164972782135],[0.055087763816118,0.028478607535362,-0.16119368374348]],[[0.029436348006129,-0.071869984269142,-0.1467486768961],[-0.014314736239612,0.072796761989594,-0.093307577073574],[0.046070750802755,0.22724199295044,0.03291717171669]],[[-0.026025863364339,-0.0091716032475233,-0.035621248185635],[-0.023168452084064,-0.037405423820019,-0.068343870341778],[0.010883615352213,0.016925901174545,0.029674695804715]],[[-0.12021239846945,-0.043054416775703,0.033538620918989],[-0.10672335326672,-0.062420509755611,-0.018314033746719],[0.17913258075714,-0.0088277561590075,0.026761442422867]],[[-0.081746339797974,0.053151395171881,-0.0047582616098225],[-0.040854416787624,0.0022476909216493,0.094090238213539],[-0.050649952143431,-0.073334239423275,0.016687316820025]],[[0.022371500730515,0.036077801138163,-0.014564766548574],[-0.073649384081364,0.018637157976627,-0.092781983315945],[0.017192615196109,0.035997375845909,0.011772367171943]],[[0.02741657756269,0.093147709965706,-0.046091347932816],[-0.037944823503494,0.016004711389542,0.050714138895273],[0.049227058887482,0.007930058054626,0.12538367509842]],[[0.12310665100813,0.11074569821358,0.096814259886742],[0.01123896241188,-0.02302773296833,0.0096828974783421],[-0.050755094736814,0.037944562733173,-0.13264445960522]],[[-0.0083085913211107,0.025190437212586,0.029888601973653],[-0.089653134346008,0.0031389323994517,-0.089443482458591],[0.086785361170769,-0.060680486261845,0.062481004744768]],[[-0.0079512456431985,-0.0032128759194165,0.0081782042980194],[-0.12775644659996,0.0046947952359915,-0.061068665236235],[0.064478881657124,0.023720113560557,0.046199969947338]],[[0.13530819118023,0.016169646754861,0.072431907057762],[0.035263895988464,0.05475839599967,-0.050187591463327],[-0.046006351709366,0.036477711051702,0.048382941633463]],[[-0.03942871466279,-0.060377459973097,-0.034902140498161],[0.017164584249258,0.025427905842662,0.016580007970333],[0.046629052609205,0.0057844161055982,0.031907867640257]],[[-0.080364696681499,0.0091938190162182,-0.011878846213222],[0.12722928822041,0.032455302774906,0.023445568978786],[0.0079361591488123,-0.0064723710529506,-0.0034442499745637]],[[0.029731595888734,0.026021668687463,0.059854570776224],[0.085695661604404,-0.078565053641796,-0.033082388341427],[0.0035079880617559,-0.041259299963713,-0.065151788294315]],[[-0.047792214900255,0.039213489741087,-0.024472830817103],[-0.050061129033566,-0.054742194712162,-0.071010686457157],[0.0037531384732574,0.041330344974995,-0.048598852008581]],[[0.017276413738728,-0.030391434207559,0.048542566597462],[0.094103291630745,0.12414586544037,0.071918927133083],[-0.14794525504112,-0.003367830067873,-0.0044941660016775]]],[[[0.047437984496355,-0.043935749679804,0.0094788130372763],[-0.081070579588413,-0.062974765896797,-0.030751651152968],[0.01917246170342,-0.10859804600477,-0.075801521539688]],[[0.18989509344101,0.091343745589256,-0.011835982091725],[0.068775482475758,0.036422930657864,0.072396263480186],[0.054595053195953,-0.031769350171089,-0.019929340109229]],[[0.12239383906126,0.038966424763203,0.030339065939188],[0.053755339235067,-0.021441156044602,-0.10098966211081],[-0.011062692850828,-0.16269625723362,-0.16644105315208]],[[-0.037719130516052,-0.089482016861439,0.083509251475334],[0.010209635831416,-0.019831465557218,-0.13807493448257],[-0.054705359041691,0.020624725148082,-0.081386849284172]],[[-0.031621553003788,-0.03561183065176,-0.039148356765509],[0.071243494749069,0.011435073800385,0.030537808313966],[0.047781210392714,-0.054057516157627,-0.045251954346895]],[[-0.024859245866537,-0.037227287888527,-0.029882712289691],[-0.004581862129271,0.027096770703793,-0.024094184860587],[0.0090374136343598,-0.11492675542831,-0.020554004237056]],[[0.035920202732086,0.044354412704706,-0.0086566088721156],[-0.095819927752018,-0.1214969009161,-0.028737602755427],[-0.053443640470505,-0.11474122107029,-0.084951981902122]],[[-0.096017181873322,-0.14405144751072,-0.064304821193218],[-0.033881716430187,-0.064294166862965,0.019235255196691],[-0.017065063118935,-0.065964922308922,-0.03976384550333]],[[-0.015950685366988,-0.044270761311054,-0.020943403244019],[0.09320180118084,-0.05462297052145,-0.0086781550198793],[-0.060280628502369,-0.050141397863626,-0.084087155759335]],[[0.022044755518436,-0.061638779938221,-0.030163278803229],[-0.027286760509014,0.0019560544751585,-0.08341483771801],[0.034390848129988,-0.0088918516412377,-0.0062725595198572]],[[0.002706789644435,-0.018193421885371,-0.0048962319269776],[-0.0052192285656929,-0.14484767615795,-0.0078908437862992],[0.036797236651182,-0.074335753917694,0.026404162868857]],[[-0.062599442899227,0.068331502377987,0.023463066667318],[-0.022661997005343,-0.10225816071033,-0.012955220416188],[0.004221604205668,-0.16132065653801,-0.077573664486408]],[[-0.045735765248537,0.028944553807378,-0.012469671666622],[0.10683324933052,-0.025927109643817,-0.0062010693363845],[-0.015197391621768,0.020011112093925,-0.033864159137011]],[[0.051694571971893,0.071935780346394,-0.0006732446490787],[0.017673866823316,-0.054689183831215,0.041478767991066],[-0.025855138897896,0.029837479814887,0.087339334189892]],[[-0.066448450088501,-0.12105792015791,-0.011084107682109],[0.019686883315444,-0.097842022776604,-0.099906548857689],[-0.014313021674752,-0.10473562777042,-0.059965014457703]],[[-0.070362709462643,-0.065604411065578,-0.044096771627665],[-0.078751236200333,-0.05164859816432,-0.020124590024352],[-0.091826304793358,-0.10265776515007,0.078085571527481]],[[-0.17757807672024,-0.096080638468266,-0.023115653544664],[-0.17668767273426,0.012585768476129,-0.073695093393326],[-0.041625004261732,-0.15026357769966,-0.081107154488564]],[[0.041015431284904,-0.037792209535837,0.02923771739006],[0.016525479033589,-0.046314481645823,-0.00056751794181764],[-0.063923895359039,-0.013161613605917,-0.026575423777103]],[[-0.05981907621026,-0.036383621394634,0.0020407459232956],[-0.056946448981762,-0.041366789489985,0.045540407299995],[0.055539421737194,-0.0088850203901529,-0.05598870664835]],[[0.051831539720297,0.025196816772223,-0.028513073921204],[0.038223098963499,-0.037376567721367,-0.061051461845636],[0.034688580781221,0.010703654959798,-0.031403347849846]],[[0.036764826625586,0.037531029433012,0.038607433438301],[-0.0039407988078892,-0.063276596367359,0.024969447404146],[0.03834106773138,-0.028138410300016,0.0017994019435719]],[[0.00080089399125427,0.019609432667494,0.045198440551758],[0.020425027236342,-0.020532168447971,-0.070811927318573],[-0.026184527203441,0.055848706513643,0.05353282764554]],[[-0.032791994512081,-0.0047964379191399,-0.056825060397387],[-0.063918195664883,0.014354142360389,-0.035486813634634],[0.0097798798233271,0.042582500725985,-0.003840918187052]],[[0.051013566553593,0.12175550311804,0.00066572369541973],[-0.045516770333052,-2.8427808501874e-05,0.048375781625509],[-0.0091475350782275,0.12271182239056,0.091365002095699]],[[0.12630811333656,-0.015546469017863,0.0029418529011309],[-0.023595545440912,-0.0047835847362876,-0.0065692402422428],[0.0425925552845,0.056921299546957,0.063230209052563]],[[0.11285877972841,0.012007884681225,0.02328216470778],[-0.0036025200970471,-0.054593563079834,-0.0080133406445384],[0.071947120130062,-0.029330169782043,-0.014995732344687]],[[-0.02556056715548,-0.038794558495283,0.02704781666398],[-0.12396822869778,-0.029712464660406,-0.043592173606157],[-0.05429058521986,-0.10218591243029,0.042233426123857]],[[-0.058724146336317,-0.11367829144001,-0.061982151120901],[-0.047487922012806,-0.01950865238905,-0.068110935389996],[-0.069594115018845,-0.058504242449999,-0.094320043921471]],[[-0.10579873621464,-0.018543710932136,0.0045791720040143],[-0.040725328028202,-0.00061356695368886,0.0043357056565583],[0.02579452842474,0.037322707474232,0.010759289376438]],[[-0.0071532661095262,-0.14997392892838,-0.032429859042168],[-0.0015809526666999,-0.070493958890438,-0.069175809621811],[-0.11180435866117,-0.011274095624685,-0.055688891559839]],[[-0.008976579643786,0.027964295819402,-0.029110381379724],[-0.08617091178894,-0.032317042350769,0.014748723246157],[0.075858175754547,-0.0035633177030832,-0.089009620249271]],[[-0.019199976697564,-0.0024630352854729,-0.032771598547697],[-0.0085554998368025,-0.051672361791134,-0.030078560113907],[0.017732478678226,-0.11597105115652,0.048375181853771]],[[-0.012725382111967,-0.028484193608165,-0.00056570052402094],[-0.048129480332136,-0.02157468535006,-0.00036936235846952],[0.06314717233181,0.012665806338191,0.03742117062211]],[[0.06127442792058,0.064614102244377,-0.031650744378567],[0.14466570317745,0.15181858837605,-0.082890599966049],[0.0025746782775968,0.11627655476332,-0.027164570987225]],[[0.090945079922676,-0.061419557780027,0.00055682635866106],[-0.0076611042022705,0.029121685773134,0.0055852709338069],[-0.063467681407928,-0.012968025170267,-0.057463727891445]],[[0.022652063518763,0.0010182536207139,0.040182217955589],[0.046300064772367,0.03882510215044,0.026418849825859],[-0.039745695888996,0.0019199182279408,0.068152457475662]],[[0.053888753056526,-0.013881112448871,-0.057436808943748],[-0.02663872204721,0.0099964309483767,-0.15828648209572],[-0.0029724752530456,0.086239762604237,0.0023532386403531]],[[0.080311834812164,0.038154300302267,-0.0018883941229433],[-0.046503089368343,-0.0040975608862936,0.08493909984827],[-0.066328696906567,-0.096202470362186,-0.01775629632175]],[[-0.022550940513611,0.092626437544823,-0.010628027841449],[-0.048815783113241,0.0018372553167865,-0.013794955797493],[-0.035143356770277,-0.058733522891998,-0.060372654348612]],[[0.077972300350666,-0.023175055161119,-0.016095407307148],[-0.017717819660902,-0.013582897372544,-0.017303755506873],[-0.048982556909323,0.036184631288052,-0.068998195230961]],[[-0.060346603393555,0.010606797412038,-0.03061999194324],[-0.043612405657768,-0.041816804558039,-0.065423347055912],[-0.003573341993615,0.021500341594219,-0.059806432574987]],[[-0.066970996558666,-0.11468254029751,0.057372100651264],[-0.083735138177872,-0.042074535042048,0.065697126090527],[-0.021736640483141,-0.095874398946762,0.017929892987013]],[[-0.031196042895317,-0.061199333518744,-0.04563046246767],[-0.011436517350376,-0.0077923904173076,-0.01237730961293],[-0.032156594097614,-0.081508256494999,-0.0086588971316814]],[[-0.12811055779457,-0.059062000364065,0.032661035656929],[0.072434768080711,-0.0081536509096622,-0.041063312441111],[0.027986843138933,0.018495045602322,0.059442806988955]],[[-0.067352905869484,-0.0089340219274163,0.028277792036533],[0.072628274559975,-0.03713034465909,-0.04352205619216],[-0.034538198262453,-0.038666527718306,0.010565717704594]],[[-0.025636306032538,0.02492549829185,0.022652789950371],[-0.035245437175035,-0.054702136665583,-0.034954588860273],[-0.055119805037975,0.01123271137476,0.024408681318164]],[[-0.020361434668303,0.069625176489353,-3.1973570003174e-05],[-0.032922595739365,-0.052228901535273,-0.16989581286907],[0.0060641570016742,-0.085370980203152,-0.13239336013794]],[[0.041597872972488,0.03073108009994,-0.040632165968418],[0.064501874148846,-0.02333134226501,-0.13494409620762],[0.046514499932528,-0.0045270314440131,-0.19288817048073]],[[0.011345745995641,0.015116950497031,-0.013558203354478],[0.0032234329264611,-0.018659368157387,5.2397583203856e-05],[-0.070445403456688,-0.033138602972031,-0.024457538500428]],[[0.074950098991394,0.028822652995586,0.00087684078607708],[-0.0023269383236766,0.047542873769999,-0.082104571163654],[-0.081163667142391,0.090240441262722,-0.034351587295532]],[[-0.053933087736368,-0.0044805868528783,0.0027596049476415],[0.066805310547352,0.037270005792379,-0.0060043293051422],[0.01994969882071,-0.034393735229969,0.049618255347013]],[[0.076245993375778,-0.081129483878613,0.025166010484099],[0.020686296746135,0.084984794259071,0.057617723941803],[0.12565022706985,0.20335736870766,0.16876585781574]],[[-0.15415973961353,-0.03327926620841,-0.034549873322248],[-0.09114795178175,-0.11381585150957,0.011285131797194],[-0.052467200905085,-0.15541769564152,-0.20561882853508]],[[-0.1181545779109,0.0084651820361614,-0.045207533985376],[-0.11774336546659,-0.010732946917415,-0.050182282924652],[-0.039835143834352,-0.015373215079308,0.10585518926382]],[[-0.02102935872972,0.037265844643116,0.046976242214441],[0.033490087836981,0.036125127226114,-0.028883870691061],[-0.0087977992370725,0.051590230315924,0.041381701827049]],[[0.010459810495377,0.0062184347771108,0.073171868920326],[-0.017994923517108,0.039027381688356,0.062333971261978],[-0.028192764148116,-0.015720874071121,-0.036214951425791]],[[-0.040033794939518,-0.051142066717148,0.0081667257472873],[-0.039460312575102,-0.00036924114101566,-0.031314861029387],[-0.058519430458546,0.0032464833930135,-0.016742169857025]],[[-0.00169911631383,-0.027413219213486,-0.034033540636301],[0.032214406877756,0.018016170710325,0.093119435012341],[-0.025989111512899,-0.077819235622883,-0.045966044068336]],[[0.0064837331883609,-0.10985279083252,-0.016401568427682],[0.1370252519846,-0.03192600980401,-0.07276726514101],[0.0031306105665863,0.070538118481636,0.022271955385804]],[[-0.068337462842464,0.018772598356009,0.0029869333375245],[-0.019161717966199,0.023875497281551,0.038247216492891],[-0.022392440587282,-0.015044986270368,0.026065457612276]],[[0.0047856024466455,0.0021460740827024,-0.045360323041677],[0.0073015647940338,0.017528152093291,0.012533782050014],[-0.010105680674314,0.044149704277515,-0.098979987204075]],[[0.13950252532959,0.079206421971321,-0.10606467723846],[-0.030698137357831,-0.034171797335148,-0.15520863234997],[0.01583462767303,0.14613604545593,0.11051871627569]],[[0.042023401707411,0.00033466125023551,0.067692928016186],[-0.031054954975843,-0.0040728691965342,0.045694567263126],[0.012093751691282,-0.014868291094899,0.01164916343987]],[[0.093620136380196,0.054568771272898,0.032131236046553],[-0.058293391019106,-0.0010020859772339,0.038664020597935],[-0.028767822310328,0.081580102443695,-0.045506753027439]]],[[[-0.06609795242548,0.062265928834677,0.12258163839579],[-0.037309512495995,-0.053375117480755,-0.041661333292723],[-0.13524468243122,-0.052589446306229,0.054068814963102]],[[0.20084454119205,0.10389763116837,-0.013602775521576],[-0.01677680015564,0.073666080832481,-0.11413916945457],[0.1213246434927,-0.033404339104891,-0.14695811271667]],[[-0.082865796983242,0.014464893378317,0.035552974790335],[-0.049117777496576,-0.02504662796855,-0.025467470288277],[-0.013986415229738,-0.079897038638592,0.042096268385649]],[[-0.049349140375853,-0.13634085655212,-0.061849016696215],[0.12200258672237,0.0011368006234989,-0.0023417361080647],[-0.014326852746308,0.0062345387414098,0.031710144132376]],[[-0.0858448818326,-0.12411356717348,-0.021435292437673],[0.062992326915264,-0.023335579782724,0.0091855758801103],[0.010184499435127,0.068568676710129,0.013971000909805]],[[-0.085855737328529,-0.0087500819936395,0.073245324194431],[-0.0218938998878,-0.01255649048835,-0.013770355843008],[-0.030696721747518,-0.055798601359129,0.017226181924343]],[[0.032756689935923,0.025204779580235,-0.036896176636219],[-0.040715355426073,-0.031034838408232,0.011494686827064],[-0.035787649452686,0.060216519981623,-0.0046466342173517]],[[0.0076774987392128,0.081883527338505,0.020364442840219],[-0.022197760641575,0.043365836143494,-0.010981311090291],[0.024106776341796,0.062026064842939,-0.072709634900093]],[[-0.046658128499985,0.01954410597682,0.075298793613911],[-0.0074296961538494,0.0398900359869,0.071900382637978],[-0.03089270927012,-0.074183709919453,-0.030370755121112]],[[0.0048922216519713,-0.035935163497925,0.065399594604969],[-0.018714673817158,-0.04370005056262,0.0018212725408375],[0.012564320117235,-0.06667073071003,0.033212631940842]],[[-0.0046136109158397,0.042718723416328,-0.019022168591619],[-0.019618265330791,-0.12512618303299,0.038765002042055],[-0.0099185956642032,-0.053449004888535,0.0021515600383282]],[[0.052726201713085,0.010787947103381,0.065201826393604],[-0.01525940746069,0.018070107325912,0.007109553553164],[-0.091776840388775,-0.050202857702971,0.034191910177469]],[[-0.040390018373728,0.023856531828642,0.024229357019067],[-0.0062252357602119,-0.069140054285526,-0.005524261854589],[0.0066900281235576,-0.029093844816089,0.056216511875391]],[[0.039125166833401,-0.0127226812765,-0.093280784785748],[-0.016124902293086,0.0065857176668942,0.066584892570972],[0.089635342359543,-0.009080802090466,-0.069561295211315]],[[-0.030451280996203,0.039575703442097,-0.0098980320617557],[-0.034116994589567,0.028226153925061,-0.050924815237522],[0.0090258708223701,0.010798561386764,0.059778660535812]],[[0.094988949596882,0.13452418148518,0.085479564964771],[0.094076715409756,-0.024970388039947,-0.041846565902233],[-0.067036345601082,-0.070026986300945,-0.083856783807278]],[[-0.021269163116813,-0.029966151341796,-0.08895243704319],[0.042766895145178,0.091247044503689,-0.040603533387184],[0.04912144318223,0.029658975079656,-0.063800908625126]],[[-0.047916918992996,0.065585158765316,-0.12189140915871],[0.032692469656467,0.034042108803988,0.080644749104977],[0.017877146601677,0.063299722969532,0.10990688949823]],[[-0.065154068171978,-0.11355648189783,-0.014702857472003],[-0.040965966880322,0.0042298259213567,-0.029074266552925],[0.017274620011449,0.019046079367399,-0.086781553924084]],[[0.014458964578807,-0.082554064691067,-0.018136916682124],[0.0003682748938445,-0.034448400139809,-0.00019494428124744],[0.065661936998367,0.045113600790501,0.016823349520564]],[[-0.057568766176701,0.00049789412878454,0.070272617042065],[-0.012172855436802,0.034705061465502,0.030803810805082],[0.071611672639847,0.030108051374555,-0.10990160703659]],[[-0.11714863032103,0.017650695517659,0.0472611784935],[-0.04655784368515,0.062769755721092,-0.0022682633716613],[0.03050385415554,0.051442857831717,0.043525718152523]],[[0.034198608249426,-0.02533507719636,0.10297492146492],[-0.034337420016527,-0.088458627462387,0.00097508652834222],[-0.044771987944841,-0.052568063139915,0.027244206517935]],[[0.11898219585419,0.037426292896271,0.17983014881611],[-0.052659612149,0.018149308860302,0.072820045053959],[-0.076087795197964,-0.018735753372312,0.070113122463226]],[[0.051658552139997,0.083446264266968,0.10464805364609],[-0.016049563884735,-0.019599067047238,0.0013155682245269],[0.043875973671675,-0.034236110746861,0.025356438010931]],[[0.062493089586496,-0.028774840757251,-0.017035728320479],[-0.030314527451992,0.0048729837872088,-0.0021919955033809],[0.10490341484547,0.019746946170926,-0.0052770422771573]],[[-0.02226903103292,0.063688822090626,-0.091209813952446],[-0.022297644987702,-0.065496154129505,-0.0062387571670115],[-0.012959386222064,0.08216704428196,-0.096343286335468]],[[0.0039577907882631,0.024580892175436,0.0531055778265],[0.020675411447883,-0.012439763173461,-0.0082998108118773],[-0.10183622688055,0.047492034733295,-0.049856659024954]],[[-0.064748756587505,0.063175268471241,0.0086340112611651],[0.032778277993202,-0.048148952424526,-0.047404043376446],[0.023519597947598,-0.052072882652283,0.048570923507214]],[[-0.002120500896126,-0.08035185188055,0.040311112999916],[0.060420800000429,0.1257238984108,-0.005123705137521],[-0.0039678420871496,0.014644231647253,0.045316353440285]],[[0.047658532857895,-0.033930476754904,0.05206785723567],[0.026348438113928,-0.037581279873848,0.01061028521508],[0.047094289213419,-0.050841975957155,0.026122227311134]],[[-0.12001267075539,-0.066432483494282,0.0087013673037291],[-0.089366659522057,-0.020867336541414,0.093174509704113],[0.081508725881577,0.090445414185524,-0.034016594290733]],[[-0.0614596568048,-0.024667685851455,0.0010507550323382],[-0.0023224612232298,-0.03695784509182,0.029468562453985],[0.0052268141880631,-0.028462305665016,0.067245498299599]],[[-0.067904986441135,-0.13356947898865,-0.023128867149353],[-0.046842597424984,-0.030593134462833,0.044746097177267],[-0.017173510044813,0.011153210885823,0.09359884262085]],[[-0.15620687603951,-0.023415312170982,0.010400603525341],[-0.028584277257323,-0.13121257722378,-0.024597682058811],[-0.024359378963709,-0.10950021445751,0.037633955478668]],[[0.054024372249842,-0.014562687836587,-0.030493974685669],[-0.010842023417354,-0.039525154978037,-0.015199146233499],[-0.03050977550447,0.031957186758518,-0.062159087508917]],[[-0.028522461652756,-0.092705294489861,-0.028554055839777],[-0.050706673413515,-0.012426533736289,-0.0091774947941303],[-0.014856181107461,0.027808465063572,0.079996809363365]],[[-0.087003588676453,0.039585240185261,0.017152095213532],[0.0087434463202953,-0.0059937941841781,-0.046268027275801],[0.018786501139402,-0.035879112780094,-0.016377395018935]],[[0.11384955048561,0.028682336211205,0.083754569292068],[0.095929145812988,-0.024463508278131,0.078367076814175],[0.041707422584295,-0.047763261944056,-0.10692819952965]],[[-0.051778826862574,-0.042629778385162,-0.022425482049584],[0.0080702491104603,-0.10607764869928,-0.012587832286954],[-0.034464091062546,0.035007178783417,0.028810679912567]],[[-0.0026811198331416,-0.062341686338186,-0.0028493157587945],[0.059243142604828,-0.00099987245630473,-0.07743039727211],[0.083154536783695,0.064389817416668,-0.080951400101185]],[[-0.02139331586659,-0.072426125407219,-0.0033581939060241],[0.0069732945412397,0.0041103134863079,-0.031980849802494],[0.00030115433037281,-0.027808766812086,-0.033752657473087]],[[-0.018059141933918,-0.00069596763933077,-0.038821559399366],[-0.053604733198881,0.054597582668066,0.15173994004726],[-0.083214282989502,-0.055868331342936,0.01674653403461]],[[0.083903104066849,0.01106861513108,-0.080462604761124],[0.025194067507982,0.070949234068394,0.042127840220928],[0.01143798045814,-0.00071516516618431,0.049884505569935]],[[0.027790093794465,-0.0061095645651221,-0.10583886504173],[0.047378446906805,-0.046245764940977,0.065827384591103],[0.020377526059747,-0.065043121576309,0.064696423709393]],[[0.030250968411565,-0.085707053542137,-0.045194249600172],[-0.1617826372385,0.035095494240522,0.08775494992733],[0.025577841326594,0.03656580299139,-0.00093597557861358]],[[-0.041624393314123,-0.07428964227438,0.053934320807457],[-0.044887967407703,-0.1681332141161,0.0032582706771791],[-0.024787001311779,-0.031912412494421,0.044017113745213]],[[-0.030728405341506,-0.13977891206741,0.052547220140696],[-0.18547220528126,-0.048385076224804,-0.023020450025797],[0.063227213919163,0.094013713300228,-0.0081540634855628]],[[0.0026569408364594,-0.018267810344696,-0.033911302685738],[-0.0045017511583865,-0.0333894751966,0.052823197096586],[-0.0055419113487005,-0.019455602392554,-0.10357077419758]],[[0.033446725457907,0.025271957740188,-0.031672012060881],[-0.074773907661438,-0.037922345101833,-0.039766389876604],[0.080780036747456,-0.12462104856968,-0.12560892105103]],[[0.062497071921825,-0.050782442092896,-0.040938373655081],[0.0053688641637564,0.015647461637855,0.022038856521249],[-0.048363946378231,-0.028554866090417,-0.027234902605414]],[[0.046533521264791,-0.0034964778460562,-0.066661961376667],[0.094440788030624,0.13112789392471,0.060225948691368],[0.118801638484,0.036821682006121,-0.11153016239405]],[[-0.014578429982066,-0.090126000344753,-0.013013707473874],[0.069360643625259,-0.15409231185913,-0.054974667727947],[0.096126012504101,-0.032487560063601,-0.025996055454016]],[[0.076145641505718,-0.02184795960784,0.018766831606627],[-0.017968893051147,-0.015642788261175,0.079679913818836],[-0.051744792610407,-0.023828139528632,-0.053768213838339]],[[-0.027604671195149,-0.051766358315945,-0.11017009615898],[-0.022709922865033,0.0054429788142443,-0.0056455763988197],[0.081327371299267,-0.062551230192184,-0.026727983728051]],[[-0.019459808245301,0.054105572402477,0.038863111287355],[-0.020814679563046,-0.067635864019394,-0.00269530643709],[0.023359481245279,-0.0058728894218802,0.05120200663805]],[[0.0088106878101826,0.012402212247252,0.077865429222584],[-0.034214716404676,-0.015411167405546,0.020590335130692],[-0.11332380771637,-0.059111475944519,0.019452231004834]],[[-0.0098661230877042,-0.01406005769968,-0.021343873813748],[0.07011266797781,-0.10932324081659,-0.063424453139305],[0.022094275802374,0.01971710473299,-0.0043790806084871]],[[0.075983218848705,-0.092498987913132,-0.011968716979027],[-0.040527455508709,-0.025523124262691,0.0014575095847249],[-0.055473379790783,0.070751637220383,0.10372144728899]],[[0.0028120635543019,0.047885715961456,-0.013706553727388],[0.0012316532665864,0.011316598393023,-0.00025616155471653],[-0.042879529297352,0.011663747020066,-0.020336044952273]],[[0.075974062085152,-0.0015911187510937,-0.0043410351499915],[-0.037477593868971,0.012221760116518,-0.10250843316317],[0.0063963336870074,0.026787362992764,0.064114831387997]],[[0.027759663760662,0.11753113567829,0.12575268745422],[0.00029953802004457,-0.0020881192758679,-0.0042540496215224],[-0.041822634637356,-0.0091067394241691,0.00086113286670297]],[[0.032660488039255,0.015838503837585,-0.030667532235384],[-0.14261996746063,0.036127436906099,-0.072101823985577],[0.013037499971688,0.017557725310326,0.058681342750788]],[[-0.11055887490511,0.020463252440095,0.10643798112869],[-0.03889724612236,0.016079433262348,-0.039425209164619],[0.01605661958456,-0.082194611430168,0.032293442636728]]],[[[0.047437515109777,0.035090144723654,0.086600661277771],[0.033049497753382,0.081317737698555,0.023885384202003],[-0.0031736197415739,-0.055349238216877,-0.055471047759056]],[[0.01612183265388,0.073764130473137,0.026657603681087],[0.0099918870255351,0.019601663574576,-0.084723450243473],[-0.078683532774448,-0.080940894782543,-0.20069520175457]],[[0.05185079574585,-0.010656175203621,-0.092478409409523],[-0.043345123529434,-0.096905775368214,0.019636774435639],[-0.071307748556137,-0.084127873182297,0.065051138401031]],[[-0.012250839732587,-0.027133015915751,-0.035717654973269],[0.09027648717165,0.030095908790827,-0.070498272776604],[0.034399352967739,-0.049633458256721,-0.010233388282359]],[[-0.074941284954548,0.0087481075897813,-0.039333321154118],[0.0011250817915425,0.011959667317569,-0.055798713117838],[0.045539606362581,0.057813882827759,0.059749215841293]],[[-0.024832559749484,-0.036314893513918,0.028291819617152],[-0.043044615536928,-0.059406090527773,0.072928696870804],[-0.031643774360418,-0.0045052780769765,-0.024459816515446]],[[-0.032044515013695,-0.039233691990376,0.022194528952241],[-0.038873430341482,0.02522130869329,0.1529776006937],[0.014678089879453,-0.067158676683903,-0.016838300973177]],[[0.0072830221615732,0.019374845549464,0.099359571933746],[-0.013652294874191,-0.021165426820517,0.016007028520107],[-0.0030238693580031,0.050804138183594,-0.0096814027056098]],[[-0.0294971447438,0.034594092518091,-0.11199955642223],[-0.035106617957354,-0.0020397647749633,-0.067153848707676],[-0.028203528374434,0.018498901277781,0.0089232558384538]],[[0.070566564798355,-0.05432715639472,-0.13161091506481],[-0.068798281252384,-0.08135249465704,-0.05299224331975],[0.013617179356515,0.044332422316074,0.01861634477973]],[[-0.066897220909595,-0.030852036550641,0.0070775155909359],[0.036104761064053,0.048054378479719,-0.050035871565342],[-0.075594894587994,0.037813793867826,-0.087174735963345]],[[-0.032598592340946,-0.060514580458403,-0.02505293302238],[0.11031170189381,-0.069975562393665,0.044977661222219],[0.03617987036705,0.036808125674725,0.05659294128418]],[[-0.035278510302305,0.054936960339546,-0.050789564847946],[-0.075872786343098,0.011724398471415,0.037001449614763],[-0.036319080740213,-0.043261080980301,0.03412476927042]],[[0.044615346938372,-0.0023807482793927,0.012909684330225],[-0.10839425772429,-0.059263233095407,-0.086151205003262],[-0.070210225880146,0.014886664226651,-0.068720534443855]],[[0.039633348584175,0.032930705696344,-0.01350075379014],[0.032256051898003,-0.004131025634706,-0.074876375496387],[-0.062901705503464,0.017149835824966,0.024017171934247]],[[0.11469065397978,0.047445811331272,-0.10978724807501],[0.0075572803616524,-0.14636845886707,-0.1134150698781],[0.036178089678288,0.096141137182713,0.012389807030559]],[[-0.06238742172718,-0.084320142865181,-0.057737249881029],[-0.082360334694386,-0.050976164638996,0.0072796298190951],[0.038405295461416,0.029203800484538,0.063063427805901]],[[-0.037413071841002,0.034344639629126,0.17598916590214],[-0.11078395694494,-0.018957152962685,0.14438533782959],[-0.014534184709191,-0.064353540539742,0.10061229020357]],[[-0.03246096149087,-0.033536985516548,0.0071858391165733],[0.025168687105179,-0.046138036996126,-0.052636593580246],[0.045427985489368,0.010651995427907,-0.091283217072487]],[[-0.013296511024237,0.042597807943821,0.015128940343857],[-0.06290390342474,-0.01279220264405,0.042186826467514],[-0.01789940521121,-0.00099775171838701,0.043920576572418]],[[-0.061697140336037,-0.025168403983116,0.027611788362265],[-0.15289732813835,-0.1233271509409,-0.030590632930398],[-0.083772763609886,-0.17634819447994,-0.066966243088245]],[[0.076552577316761,0.10179185122252,0.074198551476002],[0.022980634123087,-0.022918254137039,-0.194006934762],[0.029737403616309,-0.0047971531748772,-0.12549035251141]],[[-0.0027300261426717,-0.017713541164994,-0.041701953858137],[-0.031550448387861,-0.12411005049944,-0.025837071239948],[-0.13833902776241,-0.067998826503754,0.046926580369473]],[[0.15356321632862,0.037323363125324,0.04177064448595],[0.111461982131,0.062356803566217,0.06023059040308],[0.049700751900673,0.11958780139685,0.034897036850452]],[[0.018764050677419,-0.046113800257444,-0.0088398726657033],[0.055766459554434,-0.05019024387002,-0.062811657786369],[0.06950481235981,0.015797300264239,0.10242690145969]],[[-0.0029653611127287,0.056700952351093,-0.076053194701672],[-0.018235489726067,0.03243051096797,-0.03131952509284],[0.022682916373014,0.029501555487514,0.027508979663253]],[[0.035417802631855,0.0076232268474996,-0.0006050190422684],[0.10587463527918,0.011546777561307,-0.093701578676701],[0.015231662429869,0.025277804583311,-0.036962226033211]],[[-0.085587881505489,0.037933219224215,0.078427717089653],[0.01578332670033,-0.017135543748736,0.067596897482872],[-0.039309211075306,-0.057638373225927,-0.034870438277721]],[[-0.010336311534047,-0.019879415631294,-0.023381786420941],[-0.023626698181033,0.015850039198995,0.055275123566389],[-0.062252305448055,-0.013494320213795,0.041753493249416]],[[0.00086909474339336,-0.084677428007126,-0.026228610426188],[0.0018890800420195,0.054228879511356,-0.040218461304903],[0.026217509061098,-0.028460057452321,0.031377166509628]],[[0.010135635733604,-0.10546141117811,-0.07421813160181],[0.03550898656249,-0.01600943878293,0.067116111516953],[-0.0011859969235957,-0.036094695329666,0.043790478259325]],[[0.027990585193038,-0.011159571819007,-0.038958974182606],[0.0031206123530865,-0.099919565021992,0.015351660549641],[0.048195507377386,-0.01376117579639,0.079973295331001]],[[-0.035109791904688,0.0066988840699196,-0.026294473558664],[-0.021567968651652,0.018457785248756,-0.041431743651628],[0.020460125058889,0.015899715945125,-0.019200650975108]],[[-0.040878880769014,-0.091954752802849,-0.1513818949461],[0.036574650555849,0.025261020287871,-0.10306750983],[-0.037665821611881,-0.12140955030918,-0.043443538248539]],[[-0.14543762803078,-0.021510999649763,0.044719066470861],[-0.30365225672722,0.004451188724488,0.010713363997638],[-0.035391360521317,-0.032921317964792,-0.013351824134588]],[[-0.09879606962204,0.053983736783266,0.039906397461891],[-0.018261687830091,-0.056627191603184,-0.10660242289305],[-0.014398013241589,-0.028533359989524,0.00071056268643588]],[[0.010980320163071,-0.045210976153612,0.10124212503433],[-0.05823065340519,0.009392929263413,0.029778337106109],[-0.0081704743206501,-0.023270124569535,0.066330321133137]],[[0.052706103771925,-0.011114655062556,0.016759894788265],[0.009319263510406,-0.10818910598755,-0.029827814549208],[0.086458280682564,0.12858843803406,-0.10369122773409]],[[0.084757082164288,0.078863561153412,-0.071555487811565],[0.050076950341463,-0.027832709252834,-0.048613667488098],[-0.049984224140644,0.01713708974421,-0.030030475929379]],[[0.029943726956844,0.054118577390909,0.0072574759833515],[0.044377434998751,0.022804792970419,-0.085889890789986],[-0.030821653082967,-0.063067868351936,0.028793819248676]],[[-0.02432101033628,-0.024437880143523,0.095235399901867],[-0.039268340915442,-0.0059711011126637,0.0015564644709229],[-0.057517226785421,0.0031712704803795,-0.065032288432121]],[[0.073477178812027,0.10543040931225,-0.021494813263416],[0.030824683606625,0.0097951637580991,0.034072447568178],[0.060130793601274,0.036807488650084,0.055671293288469]],[[0.017349245026708,-0.032235771417618,-0.067071259021759],[0.12077741324902,0.0029186443425715,-0.10868041217327],[0.11743785440922,0.072965018451214,-0.0094752050936222]],[[0.043779011815786,0.021045535802841,0.0040847957134247],[-0.025586105883121,-0.072239145636559,0.0010980634251609],[-0.014322330243886,0.053955610841513,-0.086880952119827]],[[0.0017873806646094,-0.01037507224828,0.098674476146698],[0.004777055233717,0.039284773170948,-0.045106180012226],[0.058278426527977,0.043847929686308,-0.065001271665096]],[[-0.036690924316645,0.04191605001688,-0.030066628009081],[0.054794441908598,-0.15065497159958,-0.23486928641796],[-0.039036255329847,0.043017789721489,0.071945562958717]],[[-0.044024050235748,0.045583434402943,0.077890671789646],[-0.044197678565979,0.054657630622387,-0.034782972186804],[0.013467604294419,0.14240926504135,0.10591712594032]],[[0.039079640060663,-0.055023349821568,-0.038822811096907],[-0.041040170937777,0.018157109618187,-0.064204394817352],[0.037377193570137,-0.10292626172304,-0.039626888930798]],[[0.019103741273284,0.036819666624069,0.032223336398602],[0.099152997136116,-0.019971432164311,-0.0013127258280292],[0.077497914433479,0.016993634402752,0.14389602839947]],[[0.031629674136639,0.055163130164146,0.0020362767390907],[-0.040284216403961,-0.018507227301598,0.071313492953777],[-0.11782477796078,-0.021940547972918,-0.0037367600016296]],[[-0.096630044281483,0.013778280466795,-0.066936455667019],[-0.01736300624907,-0.083154290914536,0.012977694161236],[-0.071667447686195,-0.11427113413811,-0.028519351035357]],[[0.080122001469135,0.08547168970108,0.15965788066387],[0.078962020576,0.090436629951,0.050228346139193],[-0.014665114693344,0.0058521684259176,-0.046413034200668]],[[-0.067126557230949,-0.062437780201435,-0.024312702938914],[-0.057979457080364,0.028210705146194,0.0048375106416643],[-0.099787890911102,0.035583488643169,-0.011209850199521]],[[-0.11666337400675,0.019971922039986,0.018558040261269],[-0.015360581688583,-0.11561856418848,0.049553759396076],[0.024870537221432,0.05082331597805,0.006989429704845]],[[0.02294229529798,-0.0086718341335654,0.016859587281942],[-0.13852259516716,0.032798651605844,0.057760667055845],[-0.083425238728523,0.010579253546894,0.082960046827793]],[[-0.0049359924159944,-0.018836135044694,-0.085733532905579],[-0.078877210617065,0.033873859792948,-0.0019886533264071],[0.020534362643957,0.025861922651529,0.0082073099911213]],[[-0.022172374650836,0.078353181481361,0.063634559512138],[0.042617850005627,-0.055093452334404,-0.046668950468302],[-0.053849171847105,-0.020491618663073,0.049037437886]],[[0.063736081123352,0.033143296837807,-0.0096859009936452],[0.0031802754383534,-0.026502190157771,0.060112170875072],[0.038169376552105,-0.05420209094882,-0.012432522140443]],[[0.0045003490522504,0.014905152842402,-0.065178446471691],[0.037062425166368,0.10371769219637,0.082425519824028],[0.07342728972435,0.044448491185904,-0.10606429725885]],[[0.0071046319790184,-0.037633702158928,0.054603975266218],[0.049307875335217,0.03553019464016,-0.044005364179611],[-0.002138995565474,0.015821756795049,-0.059209071099758]],[[0.014752401039004,0.02459311299026,0.013608552515507],[-0.0092091765254736,-0.05848440900445,-0.12868057191372],[0.070863150060177,-0.016339976340532,0.03438875824213]],[[-0.07643236964941,-0.016321431845427,-0.10956808924675],[0.041568081825972,0.030007774010301,-0.012163051404059],[-0.042622052133083,0.077096275985241,0.010362844914198]],[[-0.089160241186619,0.028046434745193,-0.052661929279566],[-0.019062818959355,0.059573702514172,-0.041669499129057],[-0.023388758301735,-0.050608459860086,0.02343169413507]],[[0.075972661375999,0.017013635486364,-0.03571480512619],[0.027726735919714,-0.067481778562069,-0.0037414948455989],[-0.063960075378418,0.043500609695911,0.071428567171097]]],[[[-0.087664052844048,-0.065991602838039,0.038348842412233],[-0.019659010693431,0.029986781999469,-0.0014892984181643],[0.037258788943291,-0.026620695367455,0.054714635014534]],[[0.10328247398138,0.080904692411423,0.011893003247678],[0.080036170780659,0.035046979784966,-0.15564377605915],[0.016524825245142,0.1361239105463,-0.036319334059954]],[[-0.064088016748428,-0.028112446889281,-0.082973450422287],[-0.11560048907995,-0.044931706041098,-0.04198233038187],[-0.011403027921915,-0.0035866540856659,0.088685058057308]],[[0.011083658784628,-0.083673216402531,-0.036211311817169],[-0.045458484441042,-0.023850398138165,0.03850719705224],[0.034741301089525,-0.03547951951623,0.11001196503639]],[[-0.033043071627617,-0.045310787856579,0.083528764545918],[-0.0044700200669467,-0.091537930071354,0.015373731963336],[0.092019692063332,0.11064042150974,0.16578231751919]],[[0.01892663538456,-0.020023854449391,-0.079711228609085],[-0.058422263711691,0.0095750521868467,-0.085517294704914],[0.045116692781448,0.0083049898967147,-0.051403794437647]],[[-0.13734009861946,0.04080842807889,-0.04848500713706],[-0.010830020532012,0.12219268083572,0.068563684821129],[-0.013164882548153,0.018754284828901,0.069772332906723]],[[-0.040311697870493,0.0021150561515242,-0.144681468606],[0.018010482192039,0.064151868224144,0.09787168353796],[0.0069823726080358,-0.018030095845461,0.076894879341125]],[[-0.087878718972206,-0.0059972531162202,0.023298421874642],[0.005678535439074,-0.042241953313351,-0.024086825549603],[-0.020996503531933,0.057012002915144,0.068662017583847]],[[0.026576925069094,-0.048583168536425,-0.035589594393969],[-0.047569457441568,0.018082508817315,0.00018107607320417],[0.006508681923151,-0.098720319569111,-0.11255300045013]],[[0.067192688584328,0.044069036841393,-0.020456997677684],[0.10999482125044,-0.012449136935174,-0.057340119034052],[-0.051707219332457,-0.0039840498939157,-0.023366916924715]],[[0.042272347956896,-0.12201478332281,-0.12725999951363],[0.015345411375165,0.0029042223468423,-0.0037395872641355],[-0.035305261611938,0.010256460867822,0.029542408883572]],[[-0.059119276702404,0.02326232008636,-0.058533400297165],[-0.053604446351528,0.016124866902828,-0.052414733916521],[-0.089673019945621,-0.027667244896293,-0.0010279315756634]],[[-0.06983345001936,-0.084680512547493,-0.13615164160728],[-0.024294055998325,-0.077719397842884,-0.17065387964249],[-0.046684268862009,0.024258941411972,0.0025355753023177]],[[-0.047843489795923,-0.043510783463717,0.11824022978544],[-0.0017848724965006,-0.032905329018831,-8.6889711383265e-05],[-0.011940347962081,-0.040883164852858,0.0012284308904782]],[[0.013564552180469,0.076269090175629,-0.0012294722255319],[-0.038732379674911,-0.015099450945854,0.11676133424044],[0.02027559094131,-0.098789811134338,0.0026422599330544]],[[-0.029818665236235,0.087344847619534,0.0027248759288341],[-0.0026124131400138,-0.036317385733128,0.019523849710822],[-0.0045531177893281,0.12293729186058,0.0021112540271133]],[[-0.083345532417297,-0.073494017124176,-0.061922166496515],[-0.15207001566887,0.025991128757596,-0.0018865732708946],[0.021266067400575,0.013678629882634,0.10494700819254]],[[0.087364479899406,0.031399738043547,-0.046132683753967],[-0.024957397952676,0.038893237709999,0.061702247709036],[0.0024129147641361,0.054912034422159,0.072221994400024]],[[-0.047017451375723,-0.027227316051722,-0.023854630067945],[-0.0051157139241695,-0.059273146092892,0.024906866252422],[0.009196138009429,0.059380389750004,0.082019992172718]],[[-0.12135627120733,-0.18574221432209,-0.028837816789746],[-0.030507754534483,-0.05564871057868,-0.075778588652611],[0.031894147396088,0.012482024729252,-0.062754809856415]],[[-0.017139358446002,-0.027205403894186,-0.00071385991759598],[-0.034974996000528,0.081051416695118,-0.013087697327137],[0.0068664527498186,0.019048130139709,0.048651434481144]],[[-0.0045482618734241,0.011372161097825,0.043573301285505],[0.031332764774561,-0.090050727128983,-0.029532363638282],[0.040750332176685,-0.061125345528126,-0.074395447969437]],[[0.045006223022938,0.01080466248095,0.050289567559958],[0.046385455876589,0.11445222049952,0.025846743956208],[0.04829665645957,0.060622692108154,-0.023645097389817]],[[-0.03945741429925,-0.053318034857512,0.04507352784276],[0.042754497379065,-0.043046828359365,-0.010547876358032],[-0.057133972644806,-0.048045955598354,-0.060244109481573]],[[0.002195316599682,0.088043741881847,0.027245359495282],[0.015206078998744,-0.0322395414114,0.092329934239388],[0.031988710165024,0.064100228250027,0.078374907374382]],[[0.012168946675956,-0.077155970036983,0.05180923268199],[-0.019003618508577,0.014063184149563,0.012324973009527],[0.074024796485901,0.041667398065329,-0.055987890809774]],[[0.0073165292851627,-0.079489663243294,0.02618357911706],[0.067271701991558,0.03135509043932,-0.056514464318752],[0.039704035967588,-0.045004744082689,-0.028163848444819]],[[0.09750547260046,0.087641231715679,-0.016240967437625],[0.043496623635292,-0.035697378218174,-0.0030812998302281],[0.035846527665854,0.024403458461165,0.021275078877807]],[[-0.095206260681152,0.010759246535599,0.095964692533016],[-0.014885378070176,0.11996598541737,0.094134904444218],[0.014797517098486,0.02900037355721,0.065057449042797]],[[-0.12711709737778,0.058673705905676,0.1369069814682],[-0.032201610505581,-0.010842014104128,0.006709311157465],[-0.0080685075372458,0.01475209183991,0.095497004687786]],[[-0.13792906701565,-0.1019379645586,0.035738695412874],[-0.034721419215202,-0.0052257189527154,-0.053332287818193],[-0.051299944519997,0.04640494659543,-0.017916386947036]],[[-0.00066088110907003,0.026248743757606,0.078669689595699],[-0.033502366393805,-0.026789607480168,-0.0031190465670079],[0.061806637793779,0.030382813885808,0.043037250638008]],[[0.023105284199119,-0.080273352563381,-0.066661663353443],[-0.023891476914287,-0.031199144199491,-0.0082693668082356],[-0.073733031749725,-0.040445875376463,0.012864562682807]],[[-0.11625512689352,0.018440833315253,0.13226763904095],[0.079542711377144,-0.01860573142767,0.010281609371305],[0.071767568588257,-0.028340186923742,-0.082740895450115]],[[0.099831335246563,-0.064495049417019,0.032400358468294],[0.053765706717968,-0.00075331632979214,-0.056497905403376],[-0.0018024117453024,0.012487129308283,0.058374844491482]],[[-0.019772050902247,-0.028819467872381,-0.071004047989845],[0.001897357753478,-0.024245649576187,-0.032392147928476],[-0.010762583464384,-0.0099069559946656,-0.047759566456079]],[[0.015304842032492,0.013388616032898,-0.056339122354984],[-0.024470260366797,0.01072325091809,-0.096620842814445],[0.02869838476181,0.029300114139915,-0.046572763472795]],[[-0.05202579498291,0.067223198711872,0.014102233573794],[-0.037401422858238,-0.052625019103289,-0.2219945192337],[-0.0079636117443442,0.063993200659752,-0.038408294320107]],[[-0.0025942120701075,0.083493985235691,-0.11495635658503],[-0.043040342628956,0.024569775909185,0.020516192540526],[0.032834906131029,0.0095481658354402,-0.033644527196884]],[[-0.11121561378241,0.093798711895943,-0.10633493959904],[-0.092811658978462,-0.058660984039307,-0.020264562219381],[0.062449011951685,0.11391813308001,0.032291766256094]],[[-0.022674748674035,-0.01128111500293,0.055738538503647],[-0.0032594345975667,0.03478542342782,-0.025324389338493],[-0.029860446229577,0.084916539490223,-0.051852557808161]],[[-0.048847831785679,-0.13429017364979,-0.021536856889725],[-0.021928476169705,0.0057381689548492,-0.005799662321806],[-0.083241857588291,-0.0036904355511069,-0.1779790520668]],[[-0.0888397321105,-0.015806440263987,0.085362009704113],[-0.075205340981483,-0.080623604357243,0.04888916388154],[0.010760376229882,0.043041840195656,0.015303827822208]],[[-0.010910902172327,-0.04335555434227,-0.06302835047245],[0.083018273115158,-0.0074842274188995,-0.017511047422886],[-0.0026077695656568,-0.080370754003525,0.015696659684181]],[[-0.048437558114529,0.054662473499775,0.099379852414131],[0.02511303499341,0.030713830143213,0.053836692124605],[-0.086526714265347,-0.032848805189133,-0.015551012940705]],[[-0.10531571507454,0.049502667039633,0.035158179700375],[-0.11760988086462,-0.021292908117175,-0.097851879894733],[0.015858231112361,-0.048765327781439,0.024649040773511]],[[-0.022941775619984,-0.060550425201654,-0.10693987458944],[-0.026422705501318,-0.17430327832699,-0.014338654465973],[0.088848978281021,0.061653777956963,0.0027611025143415]],[[0.044211469590664,-0.018194299191236,-0.051735285669565],[0.012788468971848,0.037058085203171,-0.029848359525204],[-0.027028070762753,0.014961194247007,-0.04741658270359]],[[0.014975092373788,0.055760864168406,0.0068201017566025],[-0.08862742036581,0.024445775896311,0.012283498421311],[-0.021758707240224,-0.019207894802094,-0.016613014042377]],[[0.010220482945442,0.011586470529437,0.037195716053247],[0.016414001584053,-0.027864756062627,0.039725061506033],[0.020445110276341,-0.014382452704012,-0.061359852552414]],[[-0.09299985319376,-0.039432801306248,0.30011424422264],[0.0075129996985197,-0.099018380045891,0.11968247592449],[-0.036327622830868,0.098875164985657,0.099481761455536]],[[-0.0020278780721128,-0.027240078896284,0.070883326232433],[-0.0009895385010168,0.056704148650169,-0.0024308904539794],[-0.038335014134645,0.088322184979916,-0.050565283745527]],[[0.041136227548122,-0.0071808085776865,-0.054281640797853],[0.093154169619083,-0.019790709018707,0.07427129894495],[-0.014665380120277,-0.0088323215022683,0.025794539600611]],[[-0.059503965079784,0.041555766016245,0.050339329987764],[0.0071927672252059,-0.029112262651324,0.044450104236603],[-0.038382302969694,0.025947213172913,-0.089871324598789]],[[-0.027758503332734,0.024803617969155,-0.069343030452728],[0.019742688164115,-0.02269609645009,-0.069558955729008],[-0.017714833840728,0.068263456225395,0.043713804334402]],[[0.088512517511845,0.10066834837198,-0.029143953695893],[-0.028027819469571,-0.00074592413147911,0.0024247737601399],[-0.032787799835205,0.02013192884624,-0.03239792957902]],[[-0.075750663876534,-0.014641018584371,-0.052373629063368],[0.0074502592906356,-0.11700648069382,-0.12981390953064],[0.022363781929016,0.0076037258841097,-0.12856169044971]],[[-0.010366777889431,0.041777573525906,0.13418917357922],[-0.0084632579237223,0.12049275636673,0.0055100596509874],[-0.04492199420929,0.097432814538479,-0.034292876720428]],[[0.022518817335367,0.031727258116007,0.020513530820608],[0.020243173465133,0.031691506505013,-0.037721112370491],[0.0082611944526434,-0.035898879170418,-0.045784868299961]],[[-0.013327239081264,0.038848709315062,-0.029124462977052],[-0.086782470345497,-0.024213081225753,0.030653823167086],[-0.063512675464153,0.01346331089735,0.043525617569685]],[[-0.013799064792693,0.035293079912663,0.050360325723886],[0.062327157706022,-0.011714258231223,0.030618598684669],[-0.010179319418967,-0.15980932116508,0.038216285407543]],[[-0.016279671341181,-0.026598548516631,-0.033229079097509],[-0.012840590439737,0.013371273875237,0.016236696392298],[0.027395272627473,-0.0052519980818033,0.1074840053916]],[[0.0718844383955,0.052073866128922,-0.051516760140657],[0.0074530793353915,-0.0030459323897958,-0.055507935583591],[0.014527381397784,0.052798762917519,-0.034686721861362]]],[[[0.041792463511229,-0.047846537083387,0.067966118454933],[-0.075990006327629,0.047576427459717,-0.020170923322439],[-0.03485406935215,-0.032441768795252,0.022103380411863]],[[-0.051554959267378,0.015784239396453,-0.081300809979439],[-0.046212289482355,-0.043789844959974,-0.030382443219423],[-0.064073666930199,0.091723173856735,-0.04651277884841]],[[0.042381338775158,-0.071297489106655,0.059711672365665],[0.046882282942533,-0.045964986085892,-0.056123223155737],[-0.048965759575367,-0.15553307533264,0.00045303071965463]],[[-0.044609375298023,-0.03906811401248,-0.014353672042489],[-0.11844425648451,-0.02568488009274,0.16003221273422],[-0.019143925979733,0.026809459552169,0.074983760714531]],[[0.046095918864012,0.0076881209388375,-0.027598135173321],[0.0032210841309279,-0.00468087522313,0.033031076192856],[0.010401208885014,0.015124545432627,-0.13795179128647]],[[0.052076149731874,0.020157845690846,-0.079239927232265],[-0.020458383485675,0.020733384415507,0.082137510180473],[0.028300520032644,-0.048751000314951,-0.039489187300205]],[[-0.074078381061554,-0.015149653889239,-0.042016137391329],[-0.014417834579945,-0.013308805413544,-0.07434868812561],[-0.086859919130802,-0.037525586783886,-0.043297860771418]],[[0.025622403249145,-0.054764460772276,-0.14825110137463],[-0.01402838062495,-0.068252332508564,-0.10548162460327],[0.0042833210900426,-0.063631467521191,0.043216820806265]],[[-0.02349117025733,0.019878717139363,0.041942860931158],[-0.024886883795261,-0.082249388098717,-0.038762990385294],[0.046464212238789,-0.060082260519266,0.03679633140564]],[[0.076996728777885,0.043992146849632,0.072571538388729],[-0.025959152728319,0.022399697452784,-0.029406262561679],[-0.001549368724227,0.064019434154034,-0.042798232287169]],[[0.041993740946054,-0.053040012717247,0.0064201094210148],[0.055899918079376,0.024391312152147,0.033043079078197],[0.057438589632511,-0.049269456416368,-0.00070541730383411]],[[0.02639052271843,-0.045491680502892,-0.021699499338865],[0.0061205229721963,-0.015357008203864,0.049744959920645],[0.018533263355494,-0.050541806966066,-0.040179599076509]],[[0.035832066088915,0.060904759913683,0.13399830460548],[0.0444630458951,-0.028018333017826,0.072412833571434],[0.058814954012632,-0.11464604735374,0.079219654202461]],[[-0.0006208709673956,0.095260731875896,0.0194206610322],[0.10488837957382,0.060534548014402,0.02441274933517],[0.029854379594326,-0.010348008945584,-0.085097007453442]],[[0.13481725752354,-0.092420034110546,-0.13786688446999],[-0.058062691241503,0.020211491733789,-0.068296656012535],[0.11201510578394,-0.068795643746853,-0.083242297172546]],[[-0.13743871450424,-0.074409611523151,0.021282395347953],[0.072670310735703,0.049004275351763,-0.058011401444674],[-0.044785257428885,-0.0032341631595045,-0.049408100545406]],[[-0.069106563925743,-0.10610859841108,0.036773696541786],[0.068450145423412,-0.10563734173775,-0.01449869479984],[0.056093234568834,0.065143145620823,0.085629925131798]],[[0.051550850272179,-0.084030576050282,-0.019421521574259],[-0.039490412920713,-0.021270368248224,0.035722408443689],[-0.039016667753458,0.079616755247116,-0.041218969970942]],[[-0.0069941496476531,0.036200389266014,0.038973517715931],[-0.047805018723011,-0.082600355148315,-0.06587702780962],[0.038809657096863,-0.0031925146467984,0.064696550369263]],[[0.044819161295891,0.045205224305391,-0.027695281431079],[0.020057622343302,0.0033641303889453,-0.036892250180244],[0.06330145150423,-0.051094606518745,-0.02314218133688]],[[0.070155628025532,0.14235082268715,-0.0044396612793207],[0.027533261105418,-0.0025410880334675,-0.098172098398209],[0.012204522266984,0.037804841995239,-0.014417560771108]],[[0.16939564049244,-0.00095908314688131,-0.18534269928932],[0.065082117915154,0.045349556952715,-0.096912153065205],[0.041001863777637,-0.0065159997902811,-0.09335096180439]],[[0.015056734904647,-0.0036237770691514,-0.041788641363382],[-0.085669010877609,-0.016793420538306,0.039086956530809],[0.10005590319633,0.095025822520256,-0.0781015381217]],[[-0.069010227918625,0.080032788217068,0.14254760742188],[0.038130737841129,0.04722411185503,0.15441766381264],[0.084499597549438,0.082917392253876,-0.01400704216212]],[[0.025198509916663,-0.0054773590527475,0.022856537252665],[-0.026292299851775,0.01145400851965,0.011082454584539],[0.077504232525826,0.049893230199814,0.00081177783431485]],[[0.070368476212025,-0.066094614565372,0.087417967617512],[0.055103592574596,0.071463346481323,0.017280207946897],[0.02118781208992,-0.067559495568275,0.01061269454658]],[[-0.087553083896637,-0.099423982203007,-0.067972213029861],[-0.077917762100697,-0.041225649416447,0.021391749382019],[0.017871810123324,-0.047840010374784,0.016921501606703]],[[0.085922598838806,0.0041320528835058,-0.027354089543223],[-0.047486923635006,0.012971487827599,-0.067155070602894],[0.0079324645921588,-0.099436186254025,-0.061466842889786]],[[0.051085419952869,-0.011350399814546,-0.049322996288538],[-0.0073191630654037,0.057269353419542,0.079544022679329],[-0.010926556773484,0.021925145760179,0.0017028283327818]],[[0.056773614138365,0.071274287998676,-0.12820000946522],[0.047243013978004,-0.088423475623131,0.0024486030451953],[-0.05024441331625,0.0265426132828,-0.025712551549077]],[[0.0092064589262009,0.032817788422108,-0.021655304357409],[-0.051088266074657,-0.035082187503576,0.031311612576246],[-0.11464332789183,-0.021381529048085,-0.0031945570372045]],[[0.018605016171932,0.063656412065029,-0.087203189730644],[-0.0073954816907644,0.032743208110332,0.0034678732044995],[-0.071038626134396,-0.016521457582712,0.018142636865377]],[[-0.088723860681057,-0.050622548907995,-0.12532977759838],[0.015520680695772,-0.020826620981097,-0.0043805362656713],[0.011675748042762,0.037505939602852,-0.0010885770898312]],[[-0.045986078679562,0.10848593711853,0.12619577348232],[-0.035861194133759,0.1729351580143,-0.057167392224073],[-0.10542315244675,-0.13046978414059,-0.22162286937237]],[[-0.010631665587425,0.074226267635822,-0.018234267830849],[0.031740572303534,0.093874104321003,0.070541150867939],[-0.014328291639686,0.11904277652502,0.024498900398612]],[[-0.064191237092018,-0.07255669683218,0.017258720472455],[0.067266300320625,-0.0088390773162246,-0.020198291167617],[-0.030606841668487,0.0069524860009551,-0.067910619080067]],[[-0.082374930381775,-0.013404244557023,-0.014387834817171],[-0.017551055178046,-0.04917274415493,0.088070198893547],[-0.058306779712439,0.031788997352123,0.040388811379671]],[[-0.037156142294407,-0.009061305783689,-0.052886463701725],[-0.024175111204386,-0.043848972767591,-0.019709244370461],[0.011739248409867,0.038759175688028,0.034269284456968]],[[-0.0052069830708206,-0.015106467530131,-0.019072193652391],[0.057250995188951,0.015375047922134,-0.055110726505518],[0.0036787551362067,-0.037421070039272,0.0018642529612407]],[[-0.026806134730577,-0.010209228843451,0.069734759628773],[-0.02857687138021,0.016769217327237,-0.068036943674088],[0.012616291642189,0.027956638485193,-0.0052300901152194]],[[-0.025053517892957,0.14295054972172,0.056835483759642],[-0.074728175997734,0.024631652981043,0.077514179050922],[-0.07081826031208,-0.041961561888456,-0.010130651295185]],[[0.042878523468971,0.008159164339304,-0.026920478790998],[-0.031854003667831,-0.056676346808672,0.060490049421787],[-0.057768084108829,-0.068075947463512,-0.062464199960232]],[[0.12873119115829,0.044509842991829,-0.018960418179631],[0.045654885470867,0.027126746252179,0.10098573565483],[0.029292747378349,-0.0038392054848373,0.04104582592845]],[[-0.013979830779135,0.0914471372962,-0.0066074393689632],[0.015401989221573,-0.082032695412636,0.00975501537323],[0.046267975121737,-0.059005036950111,-0.034140791743994]],[[-0.094729237258434,-0.049863316118717,-0.068259790539742],[-0.070304155349731,-0.06636918336153,0.03241103887558],[-0.057836059480906,-0.053805321455002,0.074887320399284]],[[0.079701155424118,-0.018390979617834,0.020728915929794],[0.029069101437926,-0.01745337434113,0.023898899555206],[-0.13995763659477,-0.10779996961355,-0.040137410163879]],[[0.0027479769196361,0.043603058904409,-0.15740732848644],[0.051076706498861,0.051116399466991,-0.059251256287098],[-0.052534412592649,0.017843605950475,-0.054698016494513]],[[0.032562546432018,-0.003257614094764,0.11596053093672],[0.03173266351223,-0.067972108721733,-0.087263129651546],[0.027418972924352,-0.042239882051945,-0.078131183981895]],[[-0.057207722216845,-0.047248411923647,-0.02268466539681],[0.030193362385035,0.039229966700077,0.04263811558485],[0.022006774321198,-0.032611351460218,0.031009070575237]],[[0.038545973598957,0.10171953588724,0.014488600194454],[1.8127455405192e-05,0.087876044213772,0.033613979816437],[0.060200210660696,-0.025991156697273,-0.023391554132104]],[[0.0041790143586695,0.045691292732954,-0.00045803253306076],[0.068386107683182,0.0080080302432179,-0.029248051345348],[0.072232104837894,-0.094031877815723,0.035995375365019]],[[0.169562458992,0.039945989847183,0.062110509723425],[-0.069860145449638,-0.001836750889197,0.05698324739933],[0.010639479383826,0.063950881361961,0.087269484996796]],[[-0.0057465243153274,-0.00082552467938513,-0.094429075717926],[-0.007204323541373,0.035030979663134,-0.1116553619504],[-0.024320555850863,-0.017957650125027,-0.093270964920521]],[[0.064703539013863,0.036668375134468,0.069784790277481],[-0.092547439038754,-0.0657659471035,0.020164409652352],[-0.13535796105862,-0.12817679345608,0.013744173571467]],[[-0.010455709882081,0.052470479160547,-0.12580467760563],[-0.0097248544916511,0.074231937527657,-0.082217201590538],[-0.098424524068832,-0.019321179017425,0.062322221696377]],[[0.05320867523551,0.014561206102371,-0.020316071808338],[0.022970670834184,0.069892831146717,0.017659582197666],[0.05470547452569,0.006405312102288,0.060394152998924]],[[-0.00069652631646022,-0.031994950026274,0.096751824021339],[-0.045489199459553,-0.0097845569252968,0.056761030107737],[0.073529943823814,-0.018526641651988,-0.081632733345032]],[[0.051964987069368,-0.0026782392524183,-0.049607343971729],[-0.075502969324589,0.038460362702608,-0.035449858754873],[-0.0067180921323597,-0.0090300980955362,-0.010962657630444]],[[0.011705374345183,-0.050579063594341,-0.0060370075516403],[0.089569821953773,-0.098763920366764,0.017335200682282],[0.039728086441755,-0.020906209945679,-0.021337857469916]],[[-0.0526969358325,-0.037805553525686,-0.0043923310004175],[-0.0097980136051774,0.029560048133135,0.015592495910823],[0.0020754835568368,0.069339223206043,0.0079836547374725]],[[0.046928219497204,0.038110107183456,0.079060658812523],[-0.061069924384356,0.081749804317951,0.076134040951729],[0.075009487569332,0.078765273094177,-0.011394470930099]],[[0.059184841811657,-0.078821182250977,-0.10166961699724],[-0.054697718471289,-0.13704267144203,-0.02388839609921],[0.082692362368107,-0.00083601078949869,0.060390666127205]],[[0.01062592305243,-0.029841395094991,-0.015025799162686],[0.015904814004898,-0.059931822121143,-0.008587165735662],[-0.043190207332373,-0.074419394135475,0.042744964361191]],[[-0.06775663793087,0.014992573298514,0.024031074717641],[-0.086936764419079,0.049942534416914,-0.053475759923458],[-0.038669858127832,0.013464692980051,-0.029204791411757]]],[[[-0.022018505260348,-0.059700835496187,0.03472600877285],[-0.049913480877876,0.065272763371468,0.036262735724449],[0.06992045789957,0.022955967113376,0.068480275571346]],[[-0.0073416288942099,0.027401188388467,-0.0063130403868854],[-0.025977328419685,-0.047745734453201,-0.024911003187299],[-0.035841003060341,-0.033940013498068,0.049549125134945]],[[-0.031157527118921,-0.056123916059732,-0.025063674896955],[-0.0023201438598335,-0.10282252728939,0.045911118388176],[-0.031045973300934,0.044335797429085,0.055039569735527]],[[-0.04349971935153,-0.015056827105582,-0.021436555311084],[0.052420411258936,0.027280999347568,0.0051735541783273],[0.043540548533201,-0.014242589473724,0.055955711752176]],[[-0.051462970674038,-0.046239972114563,0.012847257778049],[0.017044981941581,0.045872841030359,0.10024596005678],[-0.0077971224673092,-0.018635189160705,0.018740380182862]],[[-0.018076838925481,-0.055519174784422,-0.0099955247715116],[0.0091855050995946,0.0076594320125878,-0.027629835531116],[-0.04506516456604,0.053041011095047,-0.01337291393429]],[[-0.036140952259302,-0.039753153920174,-0.016010865569115],[0.020017949864268,-0.093273647129536,0.058017704635859],[0.025596151128411,0.0039842245168984,0.016263322904706]],[[-0.077469661831856,0.056424472481012,-0.04322561621666],[0.005883299279958,-0.030611889436841,0.079482540488243],[-0.0033865503501147,-0.052679620683193,0.0071552596054971]],[[0.05181810259819,0.058759938925505,0.016736622899771],[-0.053329862654209,-0.038815096020699,-0.068878784775734],[0.044807717204094,-0.016468740999699,0.029365146532655]],[[0.016424996778369,-0.0074332156218588,-0.0637541487813],[0.0093808546662331,0.0030737069901079,-0.051378987729549],[0.029991364106536,-0.045784324407578,-0.016866972669959]],[[-0.13696426153183,0.031829297542572,-0.027316469699144],[0.058612059801817,-0.030483679845929,0.057404980063438],[-0.048320565372705,0.020255038514733,-0.0058812396600842]],[[-0.030263250693679,-0.018767867237329,-0.026180503889918],[-0.028706299141049,-0.03126622363925,0.049119040369987],[0.067640021443367,0.067920967936516,0.042310811579227]],[[0.040561877191067,-0.01459579449147,-0.035454764962196],[-0.11832236498594,-0.003261205740273,-0.046546708792448],[0.013335385359824,-0.045937951654196,-0.059828378260136]],[[0.025510907173157,0.068586893379688,-0.026833325624466],[-0.014454964548349,0.0037069758400321,-0.039853524416685],[-0.050168611109257,0.0061958725564182,0.026827592402697]],[[-0.073090352118015,0.0044677332043648,0.044509552419186],[-0.0411386936903,-0.043748892843723,-0.0059316945262253],[0.010769407264888,0.014103903435171,0.0681132376194]],[[-0.081516318023205,0.0042848414741457,-0.042872495949268],[-0.040031954646111,0.013982347212732,0.068437188863754],[-0.0076480284333229,-0.069379836320877,0.073859870433807]],[[-0.020543007180095,0.084048099815845,-0.069472722709179],[-0.041491467505693,0.057881623506546,0.069652214646339],[-0.035628065466881,0.087540209293365,0.038129892200232]],[[-0.053729131817818,0.020348228514194,-0.03577271848917],[0.010691920295358,0.022425195202231,0.034790735691786],[-0.07126609236002,0.09463956952095,0.0039768465794623]],[[0.016334729269147,0.0019405464408919,-0.026776246726513],[0.00026553682982922,-0.0287802554667,-0.004167843144387],[-0.068847730755806,-0.02742762118578,-0.0016151949530467]],[[0.0042424909770489,-0.075995668768883,0.036420617252588],[0.026475755497813,-0.070892140269279,0.0028165997937322],[-0.025086756795645,0.0083449957892299,0.11333760619164]],[[-0.029339281842113,-0.046356867998838,-0.080558434128761],[0.071766346693039,0.0020314063876867,-0.02548817358911],[-0.03319439291954,-0.039924934506416,-0.055510807782412]],[[-0.012860869057477,-0.077603913843632,-0.047536067664623],[-0.08142326772213,0.069658629596233,0.078264139592648],[-0.022669455036521,-0.027000045403838,0.027234017848969]],[[-0.060071032494307,0.00090662506408989,0.022633159533143],[-0.033778041601181,-0.0076206875964999,0.069618962705135],[-0.0016230884939432,-0.043160762637854,-0.010949521325529]],[[-0.071352936327457,-0.0021394754294306,-0.03250028565526],[0.02276299148798,0.12342869490385,0.029499791562557],[0.030605534091592,0.034381952136755,0.083368599414825]],[[0.035489600151777,-0.01686230301857,0.035052500665188],[-0.083170130848885,-0.016221880912781,0.048262987285852],[0.010447541251779,-0.02980213612318,-0.042159926146269]],[[0.0007940391660668,0.042935248464346,0.03395464271307],[0.026703430339694,-0.048195071518421,0.027319321408868],[0.02455959841609,-0.022172266617417,0.038595464080572]],[[0.0078312922269106,-0.047700669616461,-0.020263036713004],[-0.018903525546193,0.050617471337318,-0.039219681173563],[-0.014485959894955,-0.0023752099368721,0.011163532733917]],[[0.036138944327831,-0.007403168361634,0.016461238265038],[-0.0053986818529665,0.014657714404166,-0.0094911465421319],[-0.043523497879505,-0.025532579049468,0.015123629011214]],[[-0.0066445861011744,0.035099230706692,-0.059217512607574],[0.011263105086982,0.0037372643128037,-0.011122088879347],[-0.0037096056621522,0.12339123338461,-0.031129848212004]],[[0.014771901071072,-0.032170485705137,0.029191635549068],[0.054768428206444,-0.019203932955861,0.041620068252087],[0.014425342902541,0.12343753874302,-0.0047386880032718]],[[-0.0059914812445641,-0.053054630756378,0.071361072361469],[-0.08169449865818,-0.0080370651558042,0.034903544932604],[0.036434933543205,-0.022513078525662,0.044971253722906]],[[0.055073149502277,-0.055040836334229,-0.021248854696751],[-0.15111549198627,-0.093530833721161,0.00031522577046417],[-0.033098313957453,-0.028826178982854,0.11281032860279]],[[-0.0042880545370281,0.0019592239987105,0.0022124727256596],[-0.031660132110119,-0.065146885812283,-0.001763028674759],[0.01944019459188,0.017411343753338,-0.030560202896595]],[[-0.027988502755761,-0.070812396705151,0.037740666419268],[0.041188213974237,-0.13510124385357,-0.11724409461021],[-0.0047190878540277,-0.019258519634604,-0.058271743357182]],[[0.038627915084362,0.0026105949655175,0.066090025007725],[0.018790267407894,-0.024816773831844,-0.096164382994175],[-0.033680409193039,-0.0053549520671368,-0.069625183939934]],[[0.038650829344988,-0.005671916063875,0.0047523519024253],[-0.047293189913034,0.035609714686871,-0.091666333377361],[-0.024131057783961,-0.1354179084301,0.052986163645983]],[[0.070643596351147,-0.032155029475689,0.063843816518784],[-0.044630877673626,0.02012674883008,0.063627421855927],[-0.092320151627064,-0.049864958971739,0.014358846470714]],[[-0.069266833364964,-0.041025578975677,0.019853731617332],[0.04909210652113,0.010208410210907,0.032301936298609],[-0.0013732471270487,-0.014129081740975,-0.057879142463207]],[[-0.039551369845867,-0.018464505672455,-0.019758751615882],[0.038050226867199,0.019389122724533,0.015067436732352],[-0.047272104769945,0.0066441358067095,-0.050557252019644]],[[0.11387079954147,0.071656249463558,-0.095192469656467],[-0.028966514393687,0.033804897218943,0.069421574473381],[0.019917665049434,-0.025991136208177,-0.061862125992775]],[[-0.059451054781675,-0.043033942580223,0.054402068257332],[-0.11580114066601,-0.077285088598728,-0.087312363088131],[0.0018459531711414,-0.0033947764895856,0.097866281867027]],[[-0.052433896809816,0.013339508324862,0.020827431231737],[-0.12677821516991,0.07002517580986,-0.011804736219347],[-0.042587280273438,-0.0028972970321774,0.032322656363249]],[[-0.0043651200830936,-0.0065936865285039,0.012836471199989],[0.0059785381890833,-0.022492287680507,0.021620536223054],[0.024502826854587,-0.049058087170124,-0.038928650319576]],[[0.025196345523,-0.012340401299298,-0.029071599245071],[0.030396291986108,0.078444980084896,-0.07392930239439],[-0.045274443924427,-0.0089357485994697,0.012418859638274]],[[0.0042658015154302,0.030240455642343,-0.024166537448764],[0.0214599724859,-0.0042181042954326,0.019711265340447],[0.013224089518189,-0.02952254191041,0.026569157838821]],[[0.049229986965656,-0.10616665333509,0.024204429239035],[-0.030044553801417,0.05405305698514,-0.090659528970718],[0.010454852133989,-0.083430781960487,-0.046885866671801]],[[-0.055588442832232,-0.035676416009665,-0.029127713292837],[-0.055273283272982,0.098358556628227,0.070683114230633],[-0.11501517146826,0.041244212538004,-0.027314342558384]],[[0.045232754200697,-0.038606081157923,0.061081252992153],[0.024632913991809,-0.16672384738922,-0.05395844206214],[-0.16891495883465,-0.044637054204941,0.013542925938964]],[[0.032458409667015,0.089860610663891,0.043221734464169],[0.012184534221888,0.024155179038644,-0.040493030101061],[0.036416109651327,-0.044106893241405,0.025585496798158]],[[0.04280574247241,-0.019640268757939,0.0057258135639131],[-0.0039335926994681,0.021039942279458,0.0081257671117783],[-0.029417008161545,-0.019211206585169,0.017848372459412]],[[-0.01443609688431,-0.094919562339783,-0.0448342487216],[0.0019459442701191,0.022962601855397,0.026555418968201],[0.059812653809786,-0.046472955495119,0.022150339558721]],[[0.0044020772911608,0.101128898561,0.055747982114553],[-0.076709017157555,0.064705722033978,0.11104202270508],[-0.081158585846424,0.10287602990866,0.16932825744152]],[[0.022999171167612,0.030378436669707,-0.08232282102108],[-0.043597351759672,0.039609618484974,0.026115991175175],[0.039271745830774,0.071684189140797,-0.035094182938337]],[[-0.0059409337118268,0.032316911965609,-0.060487009584904],[-0.078228488564491,-0.043097574263811,-0.041525643318892],[0.060626532882452,0.042288772761822,0.088181085884571]],[[0.0080849910154939,0.0037840672302991,-0.030981194227934],[0.048485096544027,-0.10169367492199,-0.050787288695574],[0.013083312660456,0.049790095537901,-0.067293673753738]],[[0.043031919747591,0.057762954384089,-0.0037720447871834],[0.012901071459055,0.02399830520153,0.025102851912379],[-0.040109306573868,-0.027349604293704,-0.00014831156295259]],[[-0.010497476905584,0.071523629128933,-0.04484785348177],[0.007048777770251,0.00078056642087176,0.10196370631456],[-0.021725026890635,-0.012988984584808,-0.050571769475937]],[[-0.07658901065588,-0.015845967456698,-0.0016717561520636],[-0.040491953492165,-0.097566932439804,-0.086190037429333],[0.066398575901985,-0.0029593915678561,-0.00033448930480517]],[[-0.003480183891952,0.047556474804878,0.044656202197075],[0.066391736268997,0.018934480845928,-0.031787756830454],[0.06227283552289,0.062682941555977,0.074548281729221]],[[-0.011808999814093,0.020413737744093,0.01662727817893],[0.040627129375935,0.0074111889116466,-0.0091846501454711],[0.044464018195868,-0.046414118260145,-0.057347290217876]],[[-0.10413653403521,0.10163705050945,-0.04332634806633],[-0.041279476135969,0.070144757628441,-0.02594306692481],[-0.1028278619051,-0.062518276274204,-0.032279562205076]],[[0.0063445614650846,0.011832405813038,0.011419297195971],[0.0021645755041391,0.019793644547462,-0.02670512162149],[-0.0041858963668346,0.015652738511562,0.044257767498493]],[[0.016004599630833,-0.0012508693616837,-0.073315009474754],[0.0024049698840827,0.030575463548303,-0.0097161158919334],[0.031908240169287,-0.037274789065123,-0.0083854040130973]],[[0.045268464833498,0.016000900417566,0.092054836452007],[-0.033151876181364,-0.038761176168919,-0.026403537020087],[-0.0095565402880311,0.017184587195516,-0.036521393805742]]],[[[-0.030303856357932,-0.019475752487779,-0.028763480484486],[-0.024133058264852,0.033990353345871,0.021861236542463],[0.045365605503321,-0.01850345544517,-0.048428378999233]],[[-0.056417625397444,0.046927463263273,0.027786573395133],[-0.011779027990997,0.021447371691465,0.096626862883568],[-0.042018596082926,-0.047696527093649,-0.030390964820981]],[[-0.060959685593843,-0.010581330396235,-0.052345313131809],[-0.057092897593975,0.012385957874358,-0.030254302546382],[-0.072820760309696,-0.0010880725458264,0.011012841016054]],[[-0.013407684862614,0.0089934328570962,-0.0057557257823646],[-0.073065437376499,-0.035842467099428,0.053837481886148],[-0.074296690523624,0.012011112645268,-0.0041540469974279]],[[0.10208144783974,0.029743393883109,0.017197456210852],[-0.042939569801092,0.095371767878532,0.028046432882547],[-0.12610763311386,-0.10436610877514,-0.25725156068802]],[[-0.035529211163521,-0.041957121342421,0.0076071051880717],[-0.13658998906612,-0.038985095918179,0.045787621289492],[-0.076090693473816,-0.074731104075909,0.18714474141598]],[[0.046844556927681,-0.0233273524791,0.017989300191402],[-0.065543480217457,-0.045650582760572,-0.047794323414564],[-0.06427837908268,0.019533321261406,0.094598360359669]],[[-0.071454383432865,-0.029522327706218,0.053828310221434],[-0.008837497793138,-0.012535890564322,-0.044801503419876],[-0.035753007978201,-0.0085043637081981,-0.01143008004874]],[[-0.15369641780853,-0.016492603346705,0.11587246507406],[-0.1078492179513,-0.084117256104946,-0.042167365550995],[-0.026891965419054,0.0035474442411214,0.028979787603021]],[[-0.00025678458041511,0.052833244204521,-0.11410237848759],[0.018434641882777,-0.00738863972947,-0.09559078514576],[0.0030932286754251,-0.063499428331852,-0.019590118899941]],[[-0.096294939517975,0.048580527305603,0.078294709324837],[-0.028703698888421,-0.02933550812304,0.0026384922675788],[-0.032416690140963,-0.025978412479162,-0.075728416442871]],[[0.027504345402122,0.021761547774076,-0.0088399052619934],[-0.046708296984434,-0.070453636348248,0.075396068394184],[-0.019085990265012,-0.00038651417708024,-0.074908278882504]],[[-0.12177335470915,-0.029141072183847,-0.12892255187035],[-0.023154510185122,0.026896493509412,-0.036995906382799],[-0.020264241844416,0.052400447428226,-0.10210187733173]],[[0.010704223066568,0.027781307697296,-0.064121313393116],[-0.0084528485313058,0.0269775390625,0.040359888225794],[-0.020837470889091,0.066596552729607,0.0075750048272312]],[[0.020291294902563,0.030712021514773,0.021894443780184],[0.033262524753809,0.035273939371109,0.0067391190677881],[-0.054139584302902,0.0018214861629531,-0.0059751593507826]],[[0.015358075499535,-0.0031651230528951,0.032834406942129],[0.0093753123655915,-0.087078005075455,-0.11772464960814],[0.064155273139477,0.092437840998173,-0.039445891976357]],[[-0.03442544490099,-0.0057431133463979,-0.0034749223850667],[-0.066927619278431,-0.017723068594933,-0.12461929768324],[-0.064054280519485,-0.0048244441859424,0.031340766698122]],[[0.02322475425899,-0.0070954952389002,-0.089971266686916],[-0.10780464112759,-0.058590047061443,-0.012904851697385],[-0.070006310939789,-0.02839232981205,-0.030242385342717]],[[0.067050069570541,0.005072008818388,-0.045433145016432],[-0.0084767248481512,-0.015562352724373,-0.025247607380152],[-0.012912380509079,0.010057243518531,0.032329246401787]],[[-0.030478300526738,0.025404298678041,0.021739408373833],[0.00068097451003268,0.023945523425937,0.033999633044004],[-0.003931793384254,-0.0062307952903211,-0.053719282150269]],[[0.0049864635802805,-0.097684592008591,-0.039190229028463],[-0.010322499088943,0.00072961411206052,0.037505049258471],[-0.0097749195992947,0.0076608690433204,0.038559921085835]],[[-0.034805402159691,0.015855612233281,0.038278345018625],[-0.0093985358253121,0.024361381307244,-0.047601439058781],[-0.016214588657022,-0.031134804710746,0.067534610629082]],[[-0.084530264139175,-0.01289214938879,0.0069675431586802],[-0.0041627329774201,-0.0196139421314,-0.026419097557664],[-0.011816647835076,0.1139160990715,0.14424122869968]],[[0.054525516927242,0.095860481262207,0.16263706982136],[0.098813198506832,0.074283786118031,0.11988604813814],[0.085181869566441,-0.010567656718194,-0.002369238762185]],[[0.054756917059422,-0.11200127750635,-0.12698282301426],[0.026052877306938,0.086326017975807,0.0047081364318728],[0.0080251572653651,-0.054081093519926,0.12239299714565]],[[0.0023649586364627,0.028726326301694,-0.048942029476166],[0.031416930258274,-0.0044240057468414,-0.0083060953766108],[0.023399021476507,0.042604152113199,-0.0034722639247775]],[[-0.048815414309502,0.0017988708568737,-0.084631390869617],[-0.10385803133249,-0.087120018899441,0.10782177746296],[-0.065599448978901,-0.040466398000717,0.024677766487002]],[[0.086628541350365,0.061916574835777,0.042927417904139],[0.0016881595365703,0.014783211052418,0.12696930766106],[0.025879668071866,-0.018186124041677,0.15825907886028]],[[-0.016071926802397,-0.053138624876738,-0.0051187933422625],[0.037156514823437,-0.013040642254055,0.030783444643021],[0.015139886178076,0.014038913883269,-0.106988504529]],[[-0.055936358869076,0.065683715045452,-0.057216916233301],[-0.067431963980198,-0.12149860709906,-0.098086349666119],[-0.013805911876261,0.022051582112908,-0.040267836302519]],[[0.027160974219441,0.019803078845143,-0.073854528367519],[-0.024394342675805,-0.05253878608346,-0.12535780668259],[0.035332035273314,-0.013321872800589,-0.093244083225727]],[[-0.01100882422179,-0.08099477738142,0.03087106347084],[-0.097157016396523,-0.068104155361652,-0.0026849762070924],[0.0019065620144829,0.08157455176115,-0.089324101805687]],[[-0.10688661783934,-0.046706512570381,0.018216226249933],[-0.018166348338127,0.011031484231353,-0.016637308523059],[-0.010509174317122,-0.019016386941075,0.010194030590355]],[[0.038162488490343,0.072132810950279,-0.014790552668273],[-0.0075667607598007,-0.12746208906174,0.051778070628643],[0.03714532032609,0.075908683240414,0.011722011491656]],[[0.010950489901006,-0.026613600552082,0.058199308812618],[0.0029454978648573,0.083832658827305,0.017822876572609],[-0.039554417133331,0.0080190319567919,0.072936445474625]],[[-0.076568596065044,0.025522340089083,0.044175576418638],[0.086758129298687,-0.02003413811326,0.024649200960994],[0.074953742325306,0.016807554289699,0.00065258541144431]],[[0.042261220514774,-0.066413916647434,-0.051496610045433],[0.0014680282911286,0.082062892615795,0.045984528958797],[0.0031280159018934,0.0016469334950671,-0.043507996946573]],[[0.0051985182799399,-0.020665053278208,-0.075911208987236],[0.0014025319833308,0.067240081727505,-0.039264190942049],[-0.060084413737059,0.00058021850418299,-0.037518683820963]],[[0.057574357837439,-0.085644900798798,-0.044411882758141],[0.042786292731762,0.02368482388556,0.058894298970699],[0.040770299732685,-0.041223049163818,0.041424211114645]],[[-0.035301454365253,0.033072229474783,-0.063481442630291],[-0.033103402704,-0.001588572980836,0.035771261900663],[-0.013747843913734,-0.011653317138553,0.078016452491283]],[[0.034769486635923,-0.053746584802866,0.0046147261746228],[-0.013914044946432,-0.073005795478821,-0.0045553054660559],[0.014529513195157,-0.0047218352556229,0.084253273904324]],[[0.048413254320621,0.086076214909554,0.051525875926018],[0.04221960529685,-0.056393209844828,-0.06580114364624],[0.046795345842838,-0.024788061156869,-0.037162113934755]],[[-0.0075143151916564,0.016719957813621,0.041503798216581],[0.0070982589386404,0.052321180701256,0.076822482049465],[0.021697485819459,0.035001903772354,0.020823884755373]],[[0.024510983377695,-0.024157326668501,0.074371330440044],[-0.031377207487822,-0.050813805311918,-0.086645744740963],[-0.083338804543018,0.008902040310204,-0.0034952312707901]],[[0.076293081045151,-0.026171231642365,-0.0011442897375673],[-0.065396137535572,-1.94043313968e-05,0.09703304618597],[-0.087730541825294,0.0064452830702066,0.034543402493]],[[-0.023726342245936,-0.058026678860188,-0.15115205943584],[-0.018547769635916,0.048874773085117,-0.10465494543314],[-0.063298039138317,-0.093549117445946,-0.13039118051529]],[[-0.054625604301691,-0.072839386761189,0.0049459869042039],[-0.093896292150021,-0.014724751003087,0.046321980655193],[0.046723276376724,0.030317207798362,0.078627951443195]],[[-0.096574991941452,-0.13515001535416,0.01754449121654],[0.03338260948658,-0.078547731041908,0.0077672963961959],[0.026619801297784,-0.021539617329836,0.045024558901787]],[[-0.018723318353295,-0.04158753529191,-0.065973356366158],[-0.0016223266720772,0.035508837550879,-0.055424805730581],[0.020459992811084,-0.095916524529457,-0.049175821244717]],[[-0.046133290976286,-0.11325695365667,-0.081216245889664],[-0.026743948459625,-0.045058604329824,-0.10036527365446],[0.026820905506611,0.10581161081791,-0.090428084135056]],[[-0.025947628542781,-0.0056778225116432,-0.075104452669621],[-0.043213412165642,0.048228316009045,-0.065086893737316],[-0.10508944839239,-0.036759626120329,0.027074998244643]],[[0.13606959581375,0.099266812205315,-0.074589967727661],[0.062630593776703,0.1280200779438,-0.00021166312217247],[0.041145779192448,0.0010098835919052,-0.035267785191536]],[[0.0433259755373,0.055499572306871,-0.077757105231285],[-0.0032430568244308,0.050672862678766,0.036379612982273],[0.029773321002722,-0.068098597228527,0.020541802048683]],[[-0.0017531183548272,0.0075307432562113,0.070006877183914],[-0.017322627827525,-0.034148391336203,-0.12953901290894],[-0.080430157482624,0.042841218411922,0.092945583164692]],[[0.017648719251156,0.017919559031725,0.0025909375399351],[-0.031130833551288,-0.018564244732261,0.051705904304981],[-0.014637058600783,-0.031262081116438,0.015107872895896]],[[-0.0098881628364325,-0.025952378287911,-0.017413854598999],[0.024656068533659,-0.0075976108200848,-0.039715889841318],[-0.066910266876221,0.041693489998579,0.018043503165245]],[[-0.14347347617149,0.022274054586887,0.017010917887092],[-0.060591775923967,-0.077407233417034,-0.066581852734089],[-0.052896991372108,0.052273228764534,-0.013732598163188]],[[-0.041323270648718,0.0052806274034083,0.0055520944297314],[-0.067153200507164,0.0089414324611425,-0.0013261906569824],[-0.025931064039469,-0.004552704282105,0.10939678549767]],[[0.053092982620001,0.025336561724544,-0.030904613435268],[-0.0030307641718537,0.11039312928915,-0.036254808306694],[-0.038253720849752,-0.07036404311657,-0.13310307264328]],[[0.0049887415952981,-0.048024959862232,-0.062050629407167],[0.0032521192915738,-0.025207502767444,0.072126545011997],[-0.025844568386674,-0.010776930488646,0.079874999821186]],[[0.026900842785835,-0.06045925244689,-0.010417519137263],[0.077167451381683,0.022852865979075,-0.047965347766876],[-0.024982744827867,-0.032063528895378,0.0079253362491727]],[[-0.03193848952651,-0.071822978556156,-0.031216684728861],[-0.023818293586373,-0.049608133733273,-0.074248000979424],[-0.017560325562954,0.015513086691499,-0.19061109423637]],[[-0.046764552593231,-0.12845143675804,0.028627960011363],[-0.019902987405658,-0.075612440705299,-0.1069418489933],[-0.026721518486738,0.010578866116703,0.034628629684448]],[[-0.018137741833925,-0.03200251609087,0.018410293385386],[0.013872366398573,0.021537190303206,0.0016979512292892],[-0.025505052879453,0.07829062640667,0.056505873799324]]],[[[-0.13262034952641,-0.15747371315956,-0.014904764480889],[0.021931163966656,-0.084571592509747,-0.11866230517626],[0.019849179312587,0.028445646166801,-0.053976092487574]],[[0.06022334843874,0.12493351101875,0.033097635954618],[-0.11382298916578,-0.091106057167053,-0.038241282105446],[-0.056625805795193,0.041108671575785,-0.076673701405525]],[[0.041559897363186,0.047918189316988,0.057572856545448],[-0.035080838948488,-0.080581344664097,-0.03377828374505],[-0.027520060539246,-0.15733216702938,-0.096159100532532]],[[0.018392277881503,-0.028188357129693,-0.11413525789976],[0.031348433345556,0.014771810732782,-0.10016117244959],[-0.077009998261929,0.048690065741539,0.0029780180193484]],[[-0.019650975242257,0.010614465922117,-0.022926667705178],[0.068109877407551,0.0092329364269972,-0.00066406972473487],[-0.055139139294624,-0.030248891562223,0.017246961593628]],[[-0.022755470126867,0.049184646457434,0.029387969523668],[-0.020076029002666,-0.15728083252907,-0.027806801721454],[-0.032815013080835,-0.033682700246572,-0.012858555652201]],[[-0.016581488773227,0.054103080183268,0.078073643147945],[-0.043127577751875,0.02010472305119,-0.013377569615841],[-0.16359534859657,-0.080696918070316,-0.026666520163417]],[[-0.0037054459098727,-0.10893269628286,-0.00985162332654],[0.056982561945915,-0.014158169738948,0.04729350656271],[-0.041504636406898,-0.029486164450645,-0.058280486613512]],[[0.025839677080512,-0.069868296384811,0.036375667899847],[-0.041690018028021,-0.037591364234686,-0.032866191118956],[-0.063380554318428,0.046212770044804,0.081251226365566]],[[0.017133135348558,-0.047162413597107,-0.024700419977307],[0.049800164997578,0.15603831410408,0.0051417169161141],[0.0005922969430685,-0.018337361514568,0.0073902579024434]],[[0.043562244623899,-0.070515371859074,-0.034178640693426],[-0.068857155740261,-0.041947219520807,-0.01876912638545],[-0.053896181285381,0.055662751197815,-0.018662307411432]],[[-0.021782085299492,-0.029846839606762,-0.028949214145541],[0.0054853414185345,0.056349363178015,0.005755225662142],[-0.067552201449871,-0.03909569606185,-0.013404955156147]],[[-0.004273715429008,-0.028476290404797,0.039542123675346],[-0.018654275685549,-0.036483865231276,0.0020273581612855],[-0.015222148969769,-0.056913699954748,0.030929319560528]],[[0.05366126447916,0.10374495387077,-0.030220814049244],[-0.0023571385536343,0.028416629880667,-0.061686646193266],[0.0066898334771395,0.10283814370632,-0.037413205951452]],[[-0.046874079853296,-0.01910649985075,-0.05745591968298],[-0.00081441947259009,-0.05975241586566,-0.012355743907392],[-0.08125077188015,-0.039615124464035,-0.077234052121639]],[[-0.0085489880293608,0.007369423750788,-0.014646234922111],[-0.10132225602865,-0.01059212256223,-0.050714712589979],[0.00831688195467,-0.022399934008718,0.019074220210314]],[[-0.055374700576067,0.024913284927607,-0.11102455854416],[0.014794588088989,-0.087576173245907,0.083344809710979],[0.040151987224817,-0.0092228520661592,0.020349493250251]],[[0.11436268687248,0.033949725329876,0.0026158094406128],[-0.080630742013454,-0.057210549712181,-0.028237348422408],[0.0024513630196452,0.04098692163825,-0.045814480632544]],[[-0.018327571451664,-0.017202677205205,-0.0063259480521083],[-0.038208093494177,-0.013413185253739,-0.055255685001612],[-0.069648630917072,-0.00092553393915296,0.045132409781218]],[[0.056829787790775,0.06392464786768,-0.020331339910626],[-0.032215058803558,0.025680704042315,-0.0025189018342644],[-0.0091468831524253,0.0013217707164586,-0.05620102584362]],[[0.026369811967015,-0.0004990134621039,0.084388688206673],[0.033309783786535,-0.024425446987152,-0.023252578452229],[-0.03268863633275,-0.016408847644925,-0.054301038384438]],[[0.021255759522319,-0.04487507417798,-0.22028549015522],[-0.083789885044098,-0.054999940097332,-0.046654436737299],[0.090124554932117,0.014532123692334,0.04641791805625]],[[0.063344493508339,0.015312497504056,-0.038256138563156],[0.02923865430057,0.10673110187054,-0.02019970677793],[0.0011403287062421,-0.03922526538372,-0.068956471979618]],[[-0.01166828814894,0.027748776599765,0.042262438684702],[-0.024532485753298,0.068860396742821,0.014481952413917],[-0.080862939357758,0.040712118148804,0.10504703968763]],[[0.0039754277095199,0.074382685124874,-0.0030588582158089],[0.010627386160195,-0.13841253519058,0.010533990338445],[-0.027063438668847,-0.053978681564331,0.0056405859068036]],[[0.068067044019699,-0.01790283806622,-0.026393912732601],[0.028234031051397,0.069042004644871,0.036474578082561],[-0.028785370290279,-0.010981423780322,0.025071209296584]],[[-0.085456609725952,0.028787277638912,-0.049444001168013],[-0.061883468180895,-0.064964704215527,-0.02749066054821],[-0.017798254266381,0.010314703918993,-0.018494285643101]],[[-0.0098020825535059,-0.018033843487501,-0.04690208658576],[-0.017531240358949,-0.034254055470228,0.053418774157763],[-0.061712000519037,-0.012052251957357,-0.096397295594215]],[[0.084195517003536,0.020134463906288,0.0001818221207941],[0.12786239385605,-0.082663796842098,0.057698912918568],[-0.07411003112793,0.052684165537357,0.040556997060776]],[[0.01086466293782,-0.069984681904316,0.016566781327128],[-0.096031077206135,0.004384271800518,-0.034919571131468],[-0.0040801125578582,-0.060270976275206,-0.022640191018581]],[[-0.019075499847531,-0.092550382018089,0.024873033165932],[0.011196260340512,-0.014280068688095,0.048558164387941],[-0.020386921241879,-0.10529377311468,0.05801547691226]],[[-0.067190930247307,-0.02997593395412,0.012823681347072],[-0.061768610030413,0.005683075170964,0.0032306213397533],[0.083094418048859,-0.028013825416565,-0.1164760813117]],[[-0.054012041538954,-0.07130604237318,-0.042502783238888],[0.0077035580761731,0.014266080223024,-0.039650864899158],[-0.023265261203051,-0.020492739975452,-0.039443399757147]],[[0.030611928552389,0.0069227120839059,-0.019103225320578],[-0.044880699366331,0.034390743821859,0.029137620702386],[0.11383479088545,0.077848799526691,0.017860451713204]],[[-0.014958780258894,0.005365030374378,0.015622324310243],[-0.028817068785429,0.067411884665489,-0.0037631893064827],[0.087575867772102,-0.043697100132704,-0.0050057931803167]],[[0.025513874366879,-0.02943960018456,-0.057741850614548],[0.018022807314992,0.027009889483452,-0.028670869767666],[0.037806160748005,-0.00078880751971155,-0.04975526034832]],[[-0.051859401166439,0.08083825558424,0.0030032764188945],[-0.051504708826542,-0.026720300316811,-0.0092752231284976],[-0.098324708640575,-0.039168506860733,-0.030964707955718]],[[0.044789306819439,-0.0097596682608128,0.085034534335136],[-0.035479836165905,-0.0067503778263927,0.064656160771847],[-0.051737833768129,-0.066582821309566,0.045008540153503]],[[-0.062880367040634,-0.0057675102725625,0.011255200020969],[0.031931415200233,-0.068587586283684,0.022941773757339],[0.042627196758986,-0.031020073220134,-0.014441795647144]],[[-0.034820295870304,-0.02937039360404,-0.012294618412852],[0.078241288661957,-0.0094716642051935,-0.060584895312786],[-0.026362579315901,-0.0050691706128418,0.040138959884644]],[[0.14453215897083,-0.035518404096365,-0.081154242157936],[-0.056981913745403,-0.0514458976686,-0.023264214396477],[-0.0076414020732045,0.025596817955375,0.036180548369884]],[[0.021677268669009,-0.064992249011993,0.049930181354284],[0.045639451593161,-0.08801107853651,0.034316193312407],[-0.032413356006145,-0.04033251106739,0.0092360200360417]],[[0.019596792757511,0.0079375794157386,0.01670310087502],[-0.029988568276167,0.023994166404009,-0.036065001040697],[0.0099687753245234,0.02462612837553,0.018745075911283]],[[-0.066238202154636,-0.061412613838911,-0.034775126725435],[-0.039201620966196,-0.069274313747883,-0.016682239249349],[0.087506778538227,0.017299612984061,0.077622659504414]],[[-0.044226098805666,0.056645914912224,-0.022578468546271],[-0.019371297210455,-0.014662829227746,0.028746139258146],[-0.0047726253978908,-0.10110831260681,0.038764897733927]],[[-0.0024734577164054,0.01446158438921,-0.1760026961565],[-0.059954900294542,-0.09474590420723,-0.08887130767107],[-0.071522615849972,0.031067786738276,-0.039215687662363]],[[-0.018884239718318,-0.049389902502298,0.10232371836901],[-0.023358376696706,0.041381761431694,0.036898784339428],[-0.12215211987495,0.039611242711544,-0.021741988137364]],[[-0.052402414381504,0.16161431372166,0.13936372101307],[-0.084328711032867,0.014851287007332,-0.062448307871819],[-0.0066706291399896,-0.042465519160032,-0.078390888869762]],[[0.023617008700967,-0.066158376634121,-0.044904671609402],[0.0075311777181923,0.0098945116624236,-0.028191635385156],[0.032170329242945,0.076673239469528,-0.035560220479965]],[[0.007100029848516,0.12897007167339,0.01185586117208],[0.0018600490875542,-0.015146842226386,-0.11227369308472],[0.10282006114721,-0.072692967951298,-0.019306281581521]],[[-0.0085144806653261,0.076217167079449,-0.032296255230904],[0.0098777608945966,0.0013973123859614,-0.082693450152874],[-0.049856439232826,-0.10370810329914,0.029270267114043]],[[0.042667508125305,0.0062710307538509,0.13707073032856],[0.067065268754959,0.055429320782423,0.041569530963898],[0.123021684587,0.016979252919555,0.065363682806492]],[[-0.10481757670641,-0.050116587430239,-0.083322651684284],[-0.014987245202065,-0.030653705820441,-0.11154600977898],[-0.066386871039867,-0.042371641844511,-0.079206615686417]],[[0.028407881036401,0.061037257313728,0.058354593813419],[0.0318400003016,-0.044153645634651,-0.035158514976501],[-0.11159248650074,0.01578707061708,-0.037002205848694]],[[0.0038978687953204,0.03281183168292,0.0084715504199266],[0.040166970342398,-0.023326044902205,0.033315807580948],[-0.058898501098156,0.01415335573256,-0.11081340163946]],[[0.03810765966773,-0.033953599631786,0.032929230481386],[0.020778866484761,-0.05382052063942,0.0081425327807665],[-0.05037659779191,0.012471162714064,0.0050360104069114]],[[0.040805086493492,0.038439482450485,-0.048641383647919],[0.015692345798016,-0.036598436534405,-0.020666800439358],[-0.091070033609867,-0.016364261507988,-0.050621315836906]],[[0.017253488302231,0.02985573373735,-0.018001353368163],[0.042683202773333,-0.052751481533051,0.022953709587455],[-0.024388164281845,0.065555959939957,0.068252876400948]],[[-0.021994862705469,-0.057612221688032,0.042282566428185],[0.062275730073452,-0.02597251534462,-0.011007216759026],[0.065503656864166,-0.0075127454474568,0.11318755149841]],[[-0.0094116115942597,-0.016866343095899,0.032556932419538],[-0.037969578057528,0.0069117308594286,-0.042123693972826],[-0.024085428565741,0.072278790175915,0.033224135637283]],[[-0.0098407566547394,-0.052786219865084,-0.0010264497250319],[-0.094647511839867,0.040487661957741,0.025929762050509],[-0.0027741561643779,-0.00053355633281171,-0.040905956178904]],[[-0.029568476602435,0.039801754057407,0.062756545841694],[0.0463472828269,-0.077277958393097,0.00472501385957],[-0.022730046883225,0.012527375482023,-0.0054860785603523]],[[-0.082654081285,0.047594264149666,-0.011871206574142],[0.050440527498722,0.019726302474737,0.0083720237016678],[0.022922748699784,0.032966047525406,-0.076574124395847]],[[-0.010591032914817,-0.066955961287022,0.078224152326584],[-0.089884594082832,0.035993073135614,0.0022404573392123],[-0.062356986105442,-0.063452921807766,0.036529295146465]]],[[[-0.01151620503515,0.011773076839745,0.037926703691483],[0.01848735101521,0.034398019313812,-0.0059363106265664],[-0.046552509069443,-0.074016943573952,0.0043237926438451]],[[0.0017132579814643,0.030070710927248,-0.045990463346243],[0.10179091244936,-0.012186088599265,-0.071825683116913],[0.087784193456173,-0.09656685590744,-0.14045086503029]],[[-0.10409583896399,0.030520550906658,-0.017106948420405],[-0.10409864038229,0.033215899020433,-0.037884648889303],[-0.08990927785635,0.0046613370068371,0.051785420626402]],[[0.020672522485256,-0.012123442254961,-0.14150220155716],[0.025410713627934,0.01448773033917,-0.045907530933619],[0.11296533048153,0.043099857866764,-0.074186109006405]],[[-0.025376005098224,-0.047029405832291,0.052570838481188],[0.11636625230312,-0.032855715602636,0.04084350913763],[-0.09523194283247,-0.13965687155724,-0.091532371938229]],[[0.019165094941854,-0.0057986634783447,0.016688844189048],[0.066787466406822,-0.0044315573759377,0.13862697780132],[-0.098320610821247,-0.16467393934727,0.032919775694609]],[[-0.039295811206102,0.026740752160549,-0.017724312841892],[-0.033195715397596,0.011156842112541,0.077718690037727],[-0.079984284937382,-0.038564015179873,0.028141517192125]],[[-0.038796376436949,0.026701401919127,-0.072720102965832],[0.042461551725864,-0.029720820486546,0.0056266314350069],[0.05040468275547,-0.076525323092937,-0.014121283777058]],[[0.022701943293214,0.059945892542601,0.018416190519929],[-0.064279146492481,0.10696534067392,0.056290298700333],[-0.072665348649025,0.010996890254319,-0.059310410171747]],[[0.011978824622929,-0.061990160495043,-0.075415179133415],[0.077978037297726,0.036423694342375,-0.015898559242487],[-0.032380692660809,0.074329748749733,0.095718063414097]],[[-0.071707978844643,-0.034907247871161,0.029012424871325],[0.021390657871962,0.0049644694663584,0.019274247810245],[-0.11656656116247,0.045718263834715,-0.049931116402149]],[[0.023555567488074,-0.043013926595449,-0.078541800379753],[0.07476419210434,0.018432019278407,0.01146577950567],[-0.026816945523024,0.010085369460285,0.073122009634972]],[[-0.030529541894794,-0.028649428859353,-0.11594580113888],[-0.019027257338166,-0.07780234515667,0.1964398175478],[-0.00014413193275686,0.0540383271873,-0.042489219456911]],[[-0.063430212438107,0.060325123369694,0.070926360785961],[-0.0043333326466382,0.010813931934536,0.026300424709916],[-0.013245885260403,0.022057140246034,0.06095364689827]],[[-0.10073526203632,-0.045012779533863,-0.028748735785484],[-0.065209344029427,-0.069398708641529,-0.020092161372304],[0.0038144362624735,0.017379188910127,-0.0026588507462293]],[[0.045397453010082,0.11445151269436,0.0059281238354743],[0.067411415278912,0.063023820519447,-0.041477799415588],[0.026087148115039,-0.0081712882965803,0.0027228363323957]],[[0.062982298433781,-0.061140760779381,-0.029997065663338],[0.001782369799912,0.030653543770313,-0.063113205134869],[0.017408143728971,-0.0059733050875366,0.0017369362758473]],[[0.031281359493732,0.024750826880336,0.025302404537797],[0.025188200175762,-0.032909620553255,0.03050940297544],[-0.026495527476072,-0.064785003662109,0.068213276565075]],[[-0.028431836515665,-0.10659056901932,0.027828384190798],[0.047464910894632,0.0073766009882092,-0.013571366667747],[0.0071481079794466,0.013800784014165,-0.028217678889632]],[[-0.025664232671261,0.021637400612235,0.046110715717077],[-0.019036648795009,-0.028950540348887,-0.0039230352267623],[-0.019132029265165,-0.0068366662599146,0.039826035499573]],[[0.004501914139837,0.021177420392632,0.030827600508928],[0.0021170349791646,0.096486866474152,0.020441137254238],[-0.086106806993484,-0.26654893159866,-0.028136428445578]],[[-0.036102954298258,-0.013381062075496,-0.14617203176022],[0.010980455204844,0.10149700939655,0.055006839334965],[-0.00034857325954363,-0.03209463134408,0.12059373408556]],[[-0.037894297391176,-0.0090148700401187,0.12079338729382],[0.049265146255493,0.0017423890531063,-0.0010850359685719],[-0.0037727328017354,-0.026852078735828,0.02213947661221]],[[-0.0060175131075084,0.031777661293745,0.084830947220325],[0.046585567295551,0.093033663928509,-0.0075216498225927],[0.028619544580579,0.092309318482876,0.030103595927358]],[[0.015119621530175,-0.066637426614761,0.065159261226654],[-0.093700490891933,-0.092910848557949,-0.082050763070583],[-0.081007458269596,-0.059904377907515,-0.039765279740095]],[[0.039608519524336,0.056527134031057,-0.0069725806824863],[0.031248029321432,-0.0097956024110317,0.040496438741684],[-0.034021161496639,-0.010890517383814,0.027301780879498]],[[0.058992281556129,0.015962077304721,0.012129574082792],[0.090199656784534,0.059577856212854,0.013594723306596],[-0.062849372625351,-0.02770615182817,0.045718275010586]],[[-0.0085222003981471,0.029856767505407,0.079231344163418],[-0.040427733212709,-0.0092654060572386,0.078241355717182],[0.034578278660774,0.029981832951307,-0.014009105972946]],[[0.043081596493721,0.1443412899971,0.021696800366044],[-0.027668995782733,-0.018863132223487,-0.035039078444242],[-0.053718470036983,-0.041094742715359,0.02139181829989]],[[0.062916815280914,0.037078659981489,0.074257031083107],[-0.0070591671392322,-0.019542245194316,-0.020960468798876],[-0.013812080025673,0.0528284907341,0.056657921522856]],[[-0.062680587172508,-0.0084998598322272,0.11421830952168],[-0.0028476240113378,0.03977982327342,0.069456785917282],[-0.11798284947872,-0.066777557134628,-0.047790195792913]],[[-0.010850612074137,0.013759028166533,0.0050368513911963],[0.0064963824115694,-0.033837832510471,-0.01111622620374],[0.069846704602242,-0.083173632621765,0.016060443595052]],[[0.00040185931720771,-0.011602615937591,0.011684697121382],[-0.025008695200086,-0.022519379854202,-0.048324394971132],[0.0080260969698429,0.067459836602211,-0.031006213277578]],[[-0.057847108691931,-0.10315559059381,-0.02776662632823],[-0.14120098948479,0.11075811833143,0.046279333531857],[-0.11644697189331,0.086186654865742,0.11190164834261]],[[0.042571395635605,0.029689909890294,0.038199007511139],[0.015295585617423,-0.11161327362061,-0.058935549110174],[-0.0019072099821642,0.026960365474224,-0.0017099988181144]],[[0.048062436282635,-0.0014619547873735,-0.026004666462541],[0.03329311311245,-0.006106820423156,-0.038183998316526],[-0.042908702045679,0.027271885424852,-0.040255807340145]],[[-0.028048794716597,-0.062996730208397,-0.035985689610243],[-0.01305955182761,0.087317600846291,0.0516865439713],[0.055006548762321,0.032937806099653,0.034814912825823]],[[-0.014960302971303,-0.017870390787721,-0.051348060369492],[0.041368700563908,-0.021053608506918,0.064083911478519],[0.031910110265017,-0.026716245338321,0.069830141961575]],[[-0.1181510463357,0.027617638930678,-0.0022851475514472],[0.047864641994238,0.095802918076515,0.0067465370520949],[-0.02653226070106,-0.012079169042408,-0.010062523186207]],[[-0.11314465850592,-0.14837694168091,-0.023428440093994],[-0.0077790985815227,-0.089224226772785,-0.010941793210804],[-0.082494489848614,0.04460670799017,0.088779807090759]],[[-0.033642895519733,-0.05238601565361,-0.082949243485928],[0.003967565484345,-0.046673402190208,-0.024082865566015],[0.085744172334671,0.10549680143595,-0.052898071706295]],[[-0.042809419333935,0.1534269452095,0.059746421873569],[-0.12004962563515,0.022967405617237,-0.03271285071969],[-0.030368249863386,0.010159745812416,-0.068987190723419]],[[-0.015306519344449,0.059458438307047,-0.072831094264984],[0.00072208617348224,0.071915656328201,0.0039134966209531],[-0.14975029230118,-0.058536108583212,-0.075877010822296]],[[-0.046658951789141,0.07099237293005,0.054185125976801],[0.052153442054987,-0.03745860606432,-0.057403516024351],[0.04148868098855,-0.047357711941004,0.025097098201513]],[[0.031988080590963,-0.022608283907175,-0.070965655148029],[0.02940827049315,-0.12049912661314,-0.0090116830542684],[0.15241645276546,0.018141817301512,-0.038017384707928]],[[-0.073924519121647,-0.02581537142396,-0.043714102357626],[-0.003920822404325,0.019703961908817,-0.037395153194666],[-0.029674619436264,0.088275566697121,-0.0067931548692286]],[[0.035460218787193,0.055256891995668,-0.09527125954628],[-0.018017517402768,0.059793207794428,0.093001693487167],[0.0064471452496946,-0.030302280560136,0.0020618720445782]],[[0.094339869916439,-0.047502748668194,0.14421643316746],[0.040742311626673,-0.033617176115513,-0.0064959833398461],[-0.0078622689470649,0.020884001627564,-0.014686165377498]],[[0.0045803557150066,0.0061645689420402,-0.092792361974716],[0.095594137907028,0.098131686449051,-0.07034869492054],[0.074689455330372,0.059537760913372,-0.073456235229969]],[[0.043263159692287,-0.0033754233736545,-0.0069825151003897],[-0.0053335409611464,-0.031594686210155,0.054595783352852],[0.0024632134009153,-0.0034861040767282,-0.017080370336771]],[[0.098820723593235,-0.044986210763454,0.015263608656824],[-0.096329562366009,-0.055116321891546,0.035611093044281],[0.054327111691236,0.056981094181538,-0.016369618475437]],[[0.023469323292375,0.0098581789061427,0.11021752655506],[-0.050111580640078,-0.047675974667072,0.0050557120703161],[0.091988459229469,-0.031986806541681,-0.0071518635377288]],[[0.028253395110369,-0.018575774505734,-0.043809067457914],[-0.077905893325806,-0.075299017131329,-0.038534350693226],[-0.045790188014507,0.036970421671867,-0.022445244714618]],[[-0.041161704808474,0.048760041594505,-0.076501339673996],[0.025112142786384,-0.05585540086031,0.0015797463711351],[-0.0073933661915362,0.012359346263111,-0.013196696527302]],[[0.0029566027224064,-0.0019509133417159,0.042223859578371],[-0.052931878715754,-0.04907114803791,-0.023765979334712],[0.094892129302025,-0.12260838598013,0.027961211279035]],[[0.012288555502892,0.0097635835409164,0.0018595339497551],[-0.046749647706747,0.034649506211281,-0.00044548124424182],[0.057716816663742,0.030045380815864,-0.054786588996649]],[[-0.0056669064797461,0.014252450317144,-0.036229651421309],[-0.013791241683066,0.01876699924469,0.0042481161653996],[-0.0613016448915,-0.0047795884311199,0.054239742457867]],[[-0.066025950014591,-0.014103903435171,0.023963937535882],[-0.014846161939204,-0.023201029747725,-0.020121933892369],[-0.0036887242458761,-0.011737471446395,0.044868621975183]],[[0.00092422834131867,-0.00847377628088,-0.013232937082648],[0.10609823465347,-0.058342274278402,0.18742692470551],[-0.017079321667552,0.0074665327556431,0.0036859263200313]],[[0.097815908491611,-0.073002189397812,-0.015550507232547],[0.056446481496096,0.0083310231566429,0.00070750818122178],[-0.034215003252029,-0.019514236599207,-0.021262716501951]],[[-0.12298169732094,-0.1160661354661,-0.11357618868351],[-0.036532048135996,0.036026529967785,-0.0073454445227981],[-0.018553271889687,-0.024254420772195,-0.12894685566425]],[[0.090155422687531,0.089119866490364,0.046174135059118],[-0.062277365475893,-0.07846412062645,0.077163882553577],[0.025067314505577,0.06772918254137,-0.080400601029396]],[[0.0077893100678921,-0.081332966685295,-0.059274036437273],[0.033492334187031,-0.050234988331795,-0.012193108908832],[-0.0023025230038911,0.03925908356905,0.10057484358549]],[[-0.057906597852707,0.0050618634559214,-0.003353294217959],[-0.0091808056458831,-0.0009443616727367,-0.010685221292078],[0.0067903851158917,-0.012446196749806,-0.0099035473540425]]],[[[0.026535529643297,0.072790995240211,0.015869852155447],[0.076545156538486,-0.05743271112442,-0.030916372314095],[-0.013131074607372,0.060903668403625,0.0349091142416]],[[0.018928166478872,0.0077522392384708,0.047901172190905],[0.046895503997803,-0.012403939850628,0.0057731629349291],[-0.016161784529686,0.080054931342602,-0.025389783084393]],[[0.040284242480993,0.028422620147467,-0.12657102942467],[0.058027662336826,-0.031561262905598,-0.19110609591007],[0.052946165204048,0.0072336471639574,-0.16822595894337]],[[-0.015655105933547,-0.10913897305727,-0.011042950674891],[0.014415934681892,-0.038227986544371,-0.055740371346474],[0.027961699292064,-0.046733789145947,-0.099977679550648]],[[-0.021784912794828,-0.038978420197964,0.064989484846592],[-0.055764481425285,-0.10826425254345,-0.017755668610334],[0.031449660658836,0.0063770194537938,-0.15062567591667]],[[0.011827863752842,-0.090252384543419,0.012272554449737],[0.0061577539891005,-0.11744540184736,-0.050359826534986],[0.055921833962202,-0.11777464300394,0.071426227688789]],[[-0.038144629448652,0.0059714433737099,-0.0052688294090331],[-0.12969629466534,-0.017115721479058,-0.021253138780594],[0.036722406744957,-0.032304737716913,-0.048452634364367]],[[-0.042344704270363,-0.010254308581352,0.13360399007797],[0.016063435003161,0.057959154248238,0.022152313962579],[-0.018501644954085,0.13698667287827,-0.040903937071562]],[[-0.011497098021209,-0.031231665983796,0.022015994414687],[-0.052211549133062,-0.05109940469265,-0.072810314595699],[-0.043130662292242,0.044492419809103,-0.070287823677063]],[[0.013148861005902,0.062199156731367,-0.014596197754145],[-0.050129719078541,-0.071021936833858,-0.013746590353549],[0.037773940712214,-0.027299119159579,-0.083756342530251]],[[-0.033536367118359,0.00087143125711009,-0.075157806277275],[0.073711462318897,-0.010049091652036,-0.02171790227294],[-0.0071575809270144,-0.037536036223173,-0.037009887397289]],[[-0.06570041924715,-0.0061067924834788,-0.042297199368477],[-0.061637923121452,-0.059567246586084,-0.034510921686888],[-0.029245669022202,-0.022200925275683,-0.035940069705248]],[[-0.025946376845241,-0.054894119501114,-0.029167678207159],[0.01165727339685,0.055327270179987,-0.095768049359322],[-0.021879961714149,0.089347757399082,0.11703112721443]],[[-0.007705841679126,0.01282746065408,0.015642654150724],[0.028867172077298,0.062918871641159,0.057097170501947],[-0.017541470006108,0.015888640657067,-0.02138938382268]],[[0.0028964888770133,-0.0032017037738115,-0.0472043864429],[-0.051018051803112,-0.01645252853632,-0.040178585797548],[0.038015104830265,-0.030992483720183,0.048651028424501]],[[0.012479675933719,-0.077610969543457,-0.013034448027611],[-0.025543382391334,0.01130447909236,-0.02141828276217],[0.0083599193021655,-0.0547960922122,-0.034713245928288]],[[0.016609838232398,-0.1629534214735,0.0062068169936538],[-0.03821624815464,0.053981382399797,-0.13165974617004],[0.078970842063427,0.0071803675964475,0.022460237145424]],[[0.0081737004220486,-0.061453066766262,-0.0018286255653948],[-0.066479936242104,-0.064318083226681,0.021472875028849],[0.04646785184741,-0.0060509275645018,0.059622496366501]],[[-0.040938287973404,-0.035726685076952,-0.0074389870278537],[-0.0022193279583007,-0.036236423999071,0.076281033456326],[0.0036946893669665,0.032788220793009,0.060624472796917]],[[-0.016221595928073,0.079163983464241,-0.068442836403847],[0.016080440953374,0.036216668784618,-0.10859359800816],[0.042616464197636,0.021133318543434,-0.05055159330368]],[[0.0021023242734373,-0.0035422451328486,-0.12647607922554],[0.012224276550114,0.10595374554396,-0.213966563344],[0.034115735441446,0.017560448497534,-0.011680381372571]],[[0.063866555690765,0.049792993813753,0.10089974105358],[0.061997205018997,-0.029865900054574,-0.057351790368557],[-0.045250616967678,0.017842762172222,0.003601940581575]],[[0.0048127979971468,-0.071019485592842,-0.083699621260166],[-0.030032131820917,-0.046768229454756,0.024895695969462],[-0.021215952932835,0.003790473099798,0.061903573572636]],[[0.0092348037287593,0.16855941712856,-0.028162563219666],[-0.030527014285326,0.12314376980066,-0.0077449348755181],[0.03022113442421,0.052093390375376,-0.11017234623432]],[[0.073849365115166,-0.086248435080051,-0.0023537816014141],[-0.0065653957426548,-0.034329254180193,0.014905872754753],[0.04165431112051,-0.036577127873898,0.18099464476109]],[[-0.037960454821587,0.018029117956758,-0.034169681370258],[-0.028596941381693,-0.022654220461845,0.045380648225546],[0.023638192564249,-0.018380541354418,-0.032182797789574]],[[-0.0021046986803412,-0.1007177978754,-0.01627516746521],[-0.032577406615019,-0.050391539931297,-0.069240219891071],[0.039664141833782,-0.052524946630001,-0.011747481301427]],[[0.034716885536909,-0.026233123615384,-0.035435609519482],[-0.077813260257244,-0.0072782379575074,0.021582130342722],[-0.0040504392236471,-0.048539452254772,-0.0077173700556159]],[[0.028095174580812,-0.038249254226685,-0.11287170648575],[-0.00015143200289458,0.021496677771211,0.01204258017242],[0.0021269649732858,-0.069034919142723,0.010883019305766]],[[-0.12716856598854,-0.007926169782877,-0.048459336161613],[-0.15503469109535,-0.038763791322708,-0.079375401139259],[-0.078607238829136,-0.098534658551216,-0.13349130749702]],[[0.021770872175694,0.032979197800159,0.020740583539009],[-0.042822252959013,-0.057426422834396,-0.028275905176997],[-0.010162223130465,0.023807607591152,-0.052336383610964]],[[0.062403731048107,0.0068751191720366,-0.020708777010441],[0.040402971208096,-0.04868159070611,0.075750306248665],[-0.051575966179371,0.057444710284472,-0.051413398236036]],[[-0.045010786503553,-0.094584181904793,-0.061818819493055],[0.026334306225181,-0.04682270437479,-0.029616905376315],[-0.048358984291553,-0.13477462530136,-0.016523171216249]],[[-0.080743610858917,0.048121348023415,-0.059719000011683],[0.029839806258678,-0.019608553498983,-0.093131758272648],[0.047961961477995,-0.10425890237093,0.097487464547157]],[[-0.015763552859426,-0.063055753707886,-0.064534902572632],[-0.17610484361649,-0.036820862442255,-0.0067862924188375],[-0.068242013454437,-0.023929059505463,0.052482772618532]],[[0.036177273839712,-0.038892209529877,0.052704628556967],[0.033992145210505,0.023961737751961,-0.042092386633158],[0.0094168782234192,0.014770001173019,0.008743679150939]],[[0.015904434025288,0.02974290959537,0.033678747713566],[0.029112381860614,0.085016779601574,-0.19393885135651],[-0.11598207056522,-0.11876535415649,-0.0011839631479234]],[[-0.031035112217069,-0.11163410544395,-0.044133357703686],[-0.089660078287125,-0.073607221245766,-0.037876065820456],[-0.037460073828697,-0.034362558275461,-0.068148098886013]],[[-0.01626630499959,-0.080424323678017,-0.10458097606897],[-0.048336196690798,0.0031331039499491,0.054815538227558],[-0.016227561980486,-0.0097750844433904,0.1591871380806]],[[-0.086806520819664,-0.066797010600567,0.026548035442829],[-0.0012069554068148,-0.098835863173008,0.052429467439651],[0.033064186573029,-0.031726475805044,-0.056065831333399]],[[0.0019053696887568,-0.0005458437371999,0.0069055515341461],[-0.081032432615757,-0.025454062968493,0.04346589744091],[0.018226420506835,-0.025712758302689,-0.040269900113344]],[[-0.017519740387797,-0.0086635751649737,0.0044587990269065],[0.0062209153547883,-0.043266672641039,0.00098882941529155],[0.021732719615102,0.0030163330957294,0.062953323125839]],[[0.065254554152489,-0.032588388770819,-0.064200565218925],[0.04045844823122,0.030023129656911,-0.049950197339058],[0.042309284210205,-0.095030225813389,-0.03858083114028]],[[-0.0045992038212717,-0.028462909162045,0.007021791767329],[-0.03959708660841,0.0011284603970125,-0.024440886452794],[-0.013502919115126,-0.074689731001854,-0.029691809788346]],[[-0.046253569424152,0.063988648355007,-0.066358581185341],[-0.004930192604661,-0.011781181208789,-0.16114322841167],[0.0469880849123,-0.018540486693382,-0.112728536129]],[[0.041206490248442,-0.028012318536639,-0.08038018643856],[0.034432005137205,0.060729123651981,-0.098560854792595],[-0.014191463589668,-0.046901252120733,0.010451170615852]],[[-0.012515910901129,0.0089933788403869,0.057084374129772],[-0.043038621544838,-0.044063448905945,0.073633074760437],[-0.028284544125199,-0.026521146297455,0.01482489798218]],[[0.013498821295798,-0.013262054882944,-0.023775650188327],[0.027315683662891,0.0029885238036513,0.052411183714867],[0.05920572578907,-0.030774472281337,0.12017933279276]],[[-0.050878096371889,-0.061588406562805,-0.041498385369778],[0.063287325203419,-0.02694284543395,-0.011293455027044],[0.03382982313633,-0.071941643953323,0.087542183697224]],[[-0.011024874635041,0.013804144226015,-0.065531723201275],[-0.0071221985854208,0.021078353747725,-0.0013946588151157],[0.037127837538719,0.00037959715700708,-0.042955085635185]],[[0.034134991466999,-0.047637496143579,0.049755070358515],[-0.0041259084828198,-0.09136575460434,0.00035187564208172],[-0.011756894178689,-0.032603114843369,-0.0236233510077]],[[0.051787361502647,0.037413533776999,0.087689451873302],[0.023495191708207,0.0095873000100255,0.10337355732918],[-0.0087137809023261,-0.0013535688631237,-0.12470285594463]],[[-0.0015785356517881,-0.0010659771505743,0.047599960118532],[-0.012268019840121,-0.022363027557731,0.016701363027096],[0.06719882786274,0.018667314201593,-0.074308007955551]],[[0.034399908035994,0.033001028001308,-0.014519521035254],[-0.058999981731176,0.050271682441235,0.038611866533756],[-0.030501851812005,-0.054033569991589,-0.051733244210482]],[[0.010690336115658,-0.019781172275543,0.075424991548061],[0.029763793572783,0.08330587297678,-0.073790065944195],[-0.013094518333673,0.0075255054980516,0.0098981391638517]],[[0.027520811185241,-0.062726758420467,0.072531215846539],[-0.035294834524393,-0.091822795569897,0.0284727178514],[-0.048610311001539,-0.00018257404735778,0.092783100903034]],[[0.014788533560932,0.1046589165926,-0.12180013954639],[0.03470142558217,0.045463301241398,-0.043204534798861],[-0.10025994479656,-0.11903037130833,0.026694644242525]],[[0.0015401266282424,0.065177291631699,-0.10502374172211],[0.0079052271321416,0.025994369760156,-0.13526155054569],[0.031002527102828,-0.013109263032675,-0.027796592563391]],[[0.0058622090145946,-0.05691184476018,0.054579503834248],[0.050747167319059,-0.050604291260242,-0.044490601867437],[-0.013450079597533,0.17740303277969,0.026486357674003]],[[-0.001678959117271,-0.05485886707902,0.096476793289185],[-0.039117690175772,-0.087554149329662,0.022442752495408],[-0.052861787378788,0.010872051119804,0.077524229884148]],[[-0.052207965403795,-0.0032151772174984,0.047637220472097],[-0.044756639748812,-0.060766737908125,-0.040369637310505],[-0.019622199237347,-0.032076802104712,0.012809419073164]],[[0.076919004321098,0.16217587888241,-0.0477777980268],[-0.0071919579058886,0.0046104844659567,-0.14187075197697],[0.031473100185394,-0.10076484829187,-0.063093647360802]],[[-0.013341439887881,-0.02797462977469,-0.0043396935798228],[0.024432998150587,0.038739193230867,0.010892475023866],[0.0056892386637628,0.016621276736259,0.00079056236427277]],[[0.048317447304726,0.061594635248184,0.037826098501682],[-0.00056258623953909,0.0095646334812045,-0.095195606350899],[-0.063344970345497,-0.0655552521348,-0.03800880536437]]],[[[-0.024036630988121,-0.13899223506451,-0.090303055942059],[0.064984865486622,-0.048748329281807,-0.037317231297493],[-0.025298871099949,0.030421687290072,0.0071939304471016]],[[-0.017231671139598,0.0098917791619897,0.092312015593052],[-0.023145232349634,-0.017719380557537,-0.015043534338474],[-0.029417980462313,0.027544494718313,-0.012932603247464]],[[0.019658146426082,-0.071500852704048,-0.045149434357882],[-0.088069260120392,-0.047179147601128,-0.051861640065908],[0.023044943809509,0.029769908636808,-0.0011404422111809]],[[-0.034168999642134,0.0068483483046293,-0.013801942579448],[0.088458828628063,0.1060403957963,-0.048680152744055],[0.035344887524843,-0.097548812627792,0.020517954602838]],[[-0.02515054680407,-0.038987882435322,0.011705851182342],[0.033634413033724,-0.078845456242561,-0.050612401217222],[0.01078125089407,-0.034093771129847,0.037314601242542]],[[0.0049706809222698,0.001181420055218,-0.050392430275679],[-0.0022459337487817,-0.038757670670748,-0.00099773507099599],[0.050335362553596,-0.087922744452953,0.027488583698869]],[[0.013046375475824,0.0016234063077718,0.01021038275212],[-0.13193574547768,-0.10717156529427,-0.026653470471501],[-0.08347412198782,0.066398449242115,-0.020982204005122]],[[-0.066427417099476,-0.0067037944681942,0.13647249341011],[-0.015880165621638,0.0061416062526405,0.00050665810704231],[-0.002223108895123,0.030891917645931,0.0037661409005523]],[[0.029400300234556,-1.2253352906555e-05,0.045680090785027],[0.025932164862752,-0.048575948923826,-0.053099289536476],[0.0024812649935484,-0.0088095143437386,0.036864947527647]],[[0.039716079831123,-0.062822788953781,-0.17696058750153],[-0.064928755164146,-0.059669718146324,-0.075590148568153],[0.10238539427519,0.013402057811618,-0.0081433225423098]],[[0.029823699966073,0.0028284045401961,-0.052392560988665],[0.019978661090136,-0.060453798621893,-0.007016362156719],[0.063432075083256,0.034921668469906,0.10338773578405]],[[-0.023291142657399,0.0079994658008218,-0.0035427887924016],[-0.05851749330759,-0.069624960422516,-0.041722495108843],[-0.11799620836973,-0.01025321520865,0.0014203083701432]],[[-0.029874492436647,-0.096940524876118,-0.095156073570251],[0.010548899881542,-0.044744618237019,0.053017877042294],[-0.015682902187109,-0.032923825085163,-0.026594353839755]],[[-0.032864462584257,-0.037979122251272,-0.03441359102726],[-0.011171728372574,0.00063665304332972,0.074823409318924],[0.1033805757761,0.099262461066246,-0.019087918102741]],[[-0.045276895165443,0.019701225683093,0.014759040437639],[0.020281940698624,-0.025035463273525,0.06031933799386],[-0.049115989357233,-0.015330993570387,-0.072226852178574]],[[0.079225219786167,0.063338689506054,-0.048190411180258],[-0.03497251495719,-0.029401889070868,0.021645637229085],[0.0050136228092015,-0.033705994486809,0.0093855708837509]],[[0.063695602118969,0.046295888721943,0.027647107839584],[0.028670685365796,-0.019781559705734,0.023040758445859],[-0.048428677022457,-0.052028048783541,-0.014699053950608]],[[-0.033874019980431,-0.091124631464481,-0.024989414960146],[0.068469703197479,0.083833754062653,0.062098290771246],[-0.0048019494861364,0.016224658116698,-0.037725809961557]],[[-0.021497581154108,0.017199648544192,0.055613979697227],[0.042754333466291,0.0089408671483397,-0.011388215236366],[-0.027281675487757,-0.023651819676161,0.0085792504251003]],[[-0.023719366639853,0.019853977486491,-0.027995351701975],[0.075947500765324,-0.019988249987364,-0.0032044828403741],[0.055857792496681,-0.036276068538427,-0.0055977581068873]],[[-0.0081016113981605,-0.030234290286899,-0.035283140838146],[-0.020882118493319,-0.030681241303682,0.013910451903939],[-0.0028202547691762,0.049628481268883,-0.024586314335465]],[[-0.12559202313423,0.0071107638068497,-0.063105650246143],[0.05748113244772,0.040708087384701,-0.026062894612551],[0.12821814417839,-0.11513832211494,-0.021997326985002]],[[0.041587896645069,0.042424272745848,0.011776438914239],[-0.035283081233501,0.091798111796379,0.0077591389417648],[-0.094861648976803,-0.039712145924568,0.038554798811674]],[[0.0002943555591628,0.0093685798346996,-0.0011429997393861],[0.059748936444521,0.056723807007074,0.0091359224170446],[0.043042987585068,0.014996293000877,0.014517106115818]],[[0.0024466570466757,-0.027210254222155,-0.085919067263603],[0.0091323843225837,0.01442421041429,0.035670220851898],[-0.011331602931023,0.031551882624626,0.018373176455498]],[[0.014596736058593,-0.0018767253495753,0.014393390156329],[-0.0059616267681122,-0.015054991468787,0.019338661804795],[0.065503157675266,0.046824552118778,0.077055893838406]],[[0.049508646130562,0.0052915280684829,0.099394835531712],[0.04982989653945,0.036234773695469,0.0039740963838995],[-0.034659378230572,0.063962854444981,-0.052991051226854]],[[0.0053222374990582,-0.069750271737576,-3.4801905712811e-06],[0.0023991535417736,0.020830236375332,-0.023316482082009],[-0.12002862989902,-0.050615109503269,0.046471819281578]],[[-0.002326920395717,0.00041533831972629,-0.015106934122741],[-0.11575724929571,0.025709290057421,-0.013015555217862],[0.0043102186173201,0.13145765662193,0.048658572137356]],[[0.022071782499552,0.13483522832394,-0.1133044064045],[-0.046447612345219,-0.041068773716688,-0.034979239106178],[0.085938893258572,0.043883860111237,-0.040826842188835]],[[-0.087729275226593,-0.050277251750231,-0.08504930883646],[-0.056242138147354,0.018947180360556,-0.035707898437977],[0.12549036741257,-0.0070421174168587,-0.061753198504448]],[[0.032995793968439,0.018289430066943,-0.007667688652873],[0.076917015016079,-0.014323154464364,5.090228660265e-05],[-0.085100889205933,0.047774001955986,-0.014445914886892]],[[-0.060458190739155,0.056395411491394,0.0062560881488025],[0.0040796645916998,-0.017298679798841,0.018148748204112],[-0.02488162368536,0.022517440840602,0.00038267063791864]],[[0.011870637536049,-0.088945470750332,-0.0069092195481062],[0.03390883281827,-0.044870782643557,0.031630095094442],[0.0097782574594021,-0.022994389757514,0.056996129453182]],[[-0.015366966836154,-0.081997558474541,-0.092606127262115],[-0.053868025541306,-0.06591834127903,0.038139365613461],[-0.010497860610485,-0.018795225769281,0.018986769020557]],[[-0.0091574788093567,-0.0023764020297676,-0.02736540697515],[0.046149972826242,-0.034841172397137,-0.00099867838434875],[0.05327657610178,-0.076185747981071,-0.066724851727486]],[[-0.011280848644674,0.033026456832886,0.10850345343351],[0.053992189466953,-0.073076203465462,-0.0048499605618417],[0.048300191760063,0.050448559224606,0.026818314567208]],[[-0.064668387174606,0.0023178041446954,0.012252382934093],[0.011840691789985,0.077689319849014,-0.0085062030702829],[0.021915042772889,-0.067264564335346,0.011391684412956]],[[-0.042726550251245,0.014269506558776,-0.046806737780571],[0.045278657227755,0.043639797717333,0.020042227581143],[-0.016236484050751,0.011868399567902,-0.088050059974194]],[[0.02141491137445,0.012446087785065,-0.029102332890034],[-0.0013964464887977,-0.028118886053562,0.015297826379538],[0.051247157156467,-0.010430139489472,0.0083101410418749]],[[-0.063920319080353,-0.066725879907608,-0.13292264938354],[-0.080214813351631,0.038324307650328,0.058780014514923],[0.0094728590920568,-0.047868490219116,0.04865849763155]],[[0.028212593868375,0.01532266009599,-0.057656146585941],[0.039431627839804,0.044038068503141,0.038345828652382],[0.0059093195013702,-0.051469225436449,-0.13509550690651]],[[0.031899437308311,0.064587369561195,0.011138667352498],[0.090216584503651,0.038620833307505,0.092156648635864],[0.11281482875347,0.061028201133013,0.036988694220781]],[[0.035319983959198,0.010677353478968,-0.076727338135242],[-0.0098268575966358,0.030006553977728,-0.015972109511495],[-0.15715782344341,-0.064083628356457,-0.058293495327234]],[[-0.084587246179581,0.052861180156469,0.043018758296967],[-0.10500793904066,-0.10186932235956,0.10326919704676],[-0.045465249568224,-0.020314060151577,0.04645011946559]],[[0.026920598000288,0.03902617841959,-0.044527132064104],[0.061874248087406,0.014744339510798,-0.070907108485699],[-0.078151792287827,0.024097800254822,0.032744228839874]],[[-0.040080990642309,0.018019091337919,-0.082185141742229],[-0.11974324285984,0.041125427931547,-0.04473178461194],[-0.0013116743648425,0.099824912846088,0.0051368759013712]],[[0.0020821713842452,-0.0094769429415464,-0.070274099707603],[0.00050738546997309,-0.011654579080641,0.10262387990952],[-0.1133294031024,0.07033184170723,0.082595065236092]],[[-0.05129261687398,-0.007224218454212,-0.017100276425481],[-0.10727562755346,0.035386599600315,-0.011748245917261],[-0.074552312493324,-0.044790420681238,0.045147228986025]],[[0.0021049554925412,-0.0047386670485139,-0.060402628034353],[0.076883777976036,0.031181769445539,-0.018875934183598],[0.026831353083253,0.056904181838036,-0.02145061828196]],[[-0.036698441952467,0.019946698099375,-0.10047111660242],[-0.077025704085827,-0.0013821863103658,0.0015213799197227],[-0.069401457905769,-0.0069305449724197,-0.015550837852061]],[[0.049712598323822,0.014848959632218,-0.013794811442494],[0.077201403677464,-0.013144921511412,-0.0093403728678823],[0.080930903553963,0.12490803003311,-0.010905070230365]],[[0.091918386518955,-0.11138647049665,0.0037177235353738],[-0.010439179837704,-0.069562748074532,-0.076755411922932],[-0.050368193536997,0.053584020584822,-0.046776831150055]],[[-0.062192521989346,-0.076560474932194,0.047871749848127],[-0.019464576616883,-0.035917684435844,-0.013644968159497],[0.045086331665516,-0.044962108135223,-0.0077314265072346]],[[0.0072717289440334,-0.017387587577105,-0.030531708151102],[-0.13285003602505,-0.059360820800066,-0.0078781293705106],[-0.090546727180481,-0.074230454862118,-0.013992422260344]],[[-0.08530555665493,-0.13543167710304,-0.065785527229309],[-0.034485969692469,0.070066414773464,-0.026952460408211],[-0.030215347185731,-0.03497376665473,0.049166392534971]],[[-0.035101413726807,-0.0097255343571305,0.024769995361567],[0.045517571270466,-0.034232098609209,0.0019434554269537],[-0.17586018145084,-0.018184244632721,0.027414467185736]],[[-0.010623149573803,-0.0023827811237425,-0.0080295922234654],[0.0031836903654039,0.067125000059605,0.062146607786417],[0.05758473649621,-0.089093588292599,-0.0089307045564055]],[[0.068491086363792,-0.086561650037766,-0.057472769171],[-0.014759098179638,-0.030201632529497,0.032143108546734],[0.051584761589766,-0.03993109613657,-0.050328958779573]],[[-0.00089424406178296,-0.013856276869774,0.035902932286263],[-0.025151355192065,0.018040275201201,0.017673965543509],[-0.023253962397575,0.0185338370502,0.0030028175096959]],[[-0.032528884708881,0.011645912192762,0.057071965187788],[-0.16084709763527,0.071957111358643,0.016236277297139],[-0.035326242446899,-0.069594852626324,-0.0080622816458344]],[[0.026809811592102,0.050595134496689,-0.05536400899291],[-0.0085564842447639,-0.063696354627609,-0.0019631192553788],[0.0029319603927433,-0.038075119256973,-0.06828448176384]],[[0.0044017652980983,0.01218193769455,-0.0026538777165115],[-0.035039007663727,-0.029679099097848,-0.06829571723938],[-0.035402428358793,0.012615875340998,0.021829968318343]],[[0.052210263907909,0.0018241420621052,-0.068403534591198],[-0.010382991284132,0.027295812964439,0.095721788704395],[-0.021642530336976,-0.072319611907005,0.018173675984144]]],[[[0.055950827896595,0.018597718328238,-0.0015508582582697],[0.092247374355793,0.019797574728727,-0.043125510215759],[-0.016227260231972,-0.034455519169569,-0.02008605748415]],[[-0.15386244654655,-0.23568414151669,-0.15792660415173],[0.033679008483887,0.05147635191679,-0.10522808134556],[-0.019026314839721,0.018711537122726,0.12631252408028]],[[-0.086295671761036,-0.037217918783426,0.07764832675457],[-0.00049576099263504,0.006703729275614,0.0029599405825138],[-0.015618180856109,-0.058171398937702,-0.12780272960663]],[[-0.089178711175919,-0.17813262343407,-0.0702785551548],[-0.0025773036759347,-0.089167557656765,-0.22870649397373],[0.028126651421189,-0.029723281040788,-0.048427496105433]],[[-0.079837709665298,-0.068788096308708,0.034833204001188],[-0.027332324534655,-0.047786325216293,-0.015503083355725],[0.065801039338112,0.1050466299057,-0.028708698228002]],[[0.019436713308096,-0.042542263865471,-0.017107246443629],[0.023287791758776,-0.043626647442579,0.041326824575663],[-0.11705304682255,-0.0090623470023274,-0.024629110470414]],[[-0.21627742052078,0.041273787617683,0.016818413510919],[-0.031062649562955,-0.037960473448038,-0.036673437803984],[0.022342210635543,-0.00043793238000944,0.047866988927126]],[[0.084093309938908,0.089303597807884,-0.14521203935146],[-0.025835091248155,-0.05071771517396,-0.16919665038586],[-0.029585929587483,0.078794434666634,0.14736874401569]],[[0.0090762041509151,0.01548851467669,-0.0039981119334698],[-0.020091354846954,-0.024834927171469,-0.026230802759528],[-0.028453543782234,0.055488705635071,-0.032692443579435]],[[-0.02488818205893,-0.1196733340621,-0.1066332757473],[-0.060163348913193,-0.069418013095856,-0.14370541274548],[-0.10259789973497,-0.072545424103737,-0.098664321005344]],[[0.10312432795763,-0.028898740187287,0.063058495521545],[0.047962196171284,-0.08711015433073,0.043633207678795],[-0.042350132018328,-0.006799478083849,0.010375568643212]],[[-0.03751665353775,-0.16553035378456,0.025310382246971],[-0.099710151553154,-0.11956942081451,0.062629044055939],[-0.0023374571464956,-0.05588872730732,-0.0037993115838617]],[[-0.035419903695583,0.0076414365321398,0.0087565276771784],[0.0078799575567245,-2.2046151570976e-05,0.0043730144388974],[0.0029117073863745,0.096995495259762,-0.048593610525131]],[[-0.10663881152868,-0.12162946909666,0.0076920064166188],[-0.041941490024328,0.027094742283225,0.0387550778687],[0.072163090109825,-0.01421956717968,-0.034603238105774]],[[-0.04047553986311,-0.0052740257233381,0.040873058140278],[-0.10473086684942,-0.020527807995677,-0.15079697966576],[-0.13664309680462,-0.11044351011515,-0.15676908195019]],[[0.13108038902283,0.067675873637199,0.034206040203571],[0.063318207859993,-0.008984993211925,0.021326165646315],[0.018596915528178,-0.033260859549046,-0.11572316288948]],[[0.18593983352184,-0.0033969567157328,-0.066826939582825],[0.0035945656709373,-0.00034994364250451,-0.027632853016257],[-0.040209129452705,-0.069057129323483,0.081050306558609]],[[-0.074776366353035,0.026429709047079,0.10415825992823],[-0.032789941877127,-0.014318008907139,-0.041557125747204],[0.10569985210896,-0.035838201642036,0.070064783096313]],[[-0.014219671487808,0.17260704934597,-0.011728676967323],[0.10680111497641,-0.02245401404798,-0.064231015741825],[-0.0082445684820414,0.10831531137228,0.034141700714827]],[[-0.03245735168457,0.06941532343626,0.024008782580495],[-0.0047978428192437,0.014578955247998,-0.030907701700926],[0.012423922307789,0.003390078432858,-0.058711297810078]],[[-0.0071498299948871,-0.14535272121429,0.015579903498292],[-0.023601775988936,0.028385791927576,-0.081973925232887],[0.039099149405956,-0.049086138606071,-0.026662301272154]],[[-0.0069697545841336,-0.0054107713513076,-0.023938031867146],[-0.018459459766746,-0.03222006931901,0.088062807917595],[0.038028664886951,-0.064885534346104,0.12168248742819]],[[-0.034648258239031,-0.048519499599934,-0.10290966182947],[0.06851489841938,-0.08385856449604,-0.011388322338462],[-0.032131932675838,0.0054762228392065,0.050508812069893]],[[0.19567909836769,0.16117967665195,0.034584429115057],[0.23641355335712,0.047988101840019,0.0091878576204181],[0.023000340908766,-0.018064267933369,-0.10085343569517]],[[-0.034200638532639,0.052502352744341,0.072152346372604],[0.027054715901613,0.064501516520977,0.065499067306519],[0.027901051566005,-0.029974862933159,-0.036653220653534]],[[0.020665632560849,0.076510392129421,0.093615643680096],[-0.027325127273798,0.0067762429825962,0.044870585203171],[-0.012108703143895,-0.017241133376956,0.044626880437136]],[[0.14186497032642,0.045621421188116,-0.051220510154963],[-0.037503272294998,0.14357741177082,-0.044717557728291],[-0.011117327027023,-0.020662661641836,0.074343331158161]],[[0.084746554493904,-0.046266980469227,-0.13710218667984],[0.098640404641628,0.02516720071435,-0.0084332711994648],[0.0095976879820228,0.015022925101221,-0.074316777288914]],[[0.051665239036083,0.11555191874504,0.0084307184442878],[0.052443545311689,-0.083605907857418,0.099766828119755],[0.036806460469961,-0.015496348962188,0.046110238879919]],[[-0.033184859901667,-0.031748920679092,-0.20667880773544],[-0.049787562340498,-0.08987245708704,0.040136408060789],[0.029570233076811,0.039882104843855,-0.011282531544566]],[[0.060823731124401,-0.00066274096025154,0.003605748526752],[0.013557143509388,0.081955835223198,-0.040803398936987],[-0.078866757452488,-0.077656723558903,-0.057884361594915]],[[0.095706082880497,0.0060129961930215,0.011994622647762],[0.069924160838127,-0.091877602040768,-0.039402045309544],[0.087491981685162,-0.12943552434444,0.084679424762726]],[[0.025259505957365,-0.0022461670450866,0.073467060923576],[0.044901810586452,0.038439761847258,0.040484707802534],[0.11677689105272,-0.0089996317401528,0.060075402259827]],[[0.033726271241903,0.051362872123718,0.099201172590256],[-0.018198601901531,-0.0035596541129053,0.035211939364672],[-0.018322536721826,-0.014449605718255,0.048649296164513]],[[-0.030728075653315,-0.064133748412132,-0.088933572173119],[0.094241805374622,0.045077621936798,0.00062888179672882],[0.067559167742729,-0.0087764803320169,-0.026367077603936]],[[-0.089349575340748,-0.074966989457607,-0.038217522203922],[0.01482398621738,0.10998233407736,0.13429218530655],[-0.039949025958776,-0.051659420132637,0.063333854079247]],[[-0.068531595170498,-0.10802215337753,-0.17613603174686],[0.070176392793655,0.069087512791157,-0.030173476785421],[0.024922929704189,0.017571432515979,0.035393550992012]],[[-0.12209505587816,-0.099289655685425,-0.067282356321812],[0.00032507698051631,-0.082338504493237,-0.083580583333969],[0.05398178845644,0.092231072485447,0.095796555280685]],[[0.14840461313725,0.10272163152695,0.082142673432827],[-0.045320849865675,0.076650500297546,-0.0010203098645434],[0.00042268726974726,0.0053659514524043,-0.033036347478628]],[[0.12357940524817,0.15329825878143,0.050695434212685],[0.056639198213816,-0.011527408845723,-0.088271260261536],[-0.018498223274946,0.025596300140023,0.069284066557884]],[[-0.15565255284309,0.029134731739759,0.018731800839305],[0.14182463288307,0.00094990833895281,0.13866619765759],[-0.047991782426834,0.069881662726402,0.066636018455029]],[[0.099696986377239,0.086388826370239,-0.042977299541235],[0.051743175834417,0.13202938437462,-0.053884793072939],[-0.033957295119762,-0.06744397431612,0.026818472892046]],[[-0.04291920363903,0.053790431469679,0.085793070495129],[0.020535374060273,0.033964697271585,-0.086976408958435],[-0.066640630364418,0.029194474220276,0.046796333044767]],[[-0.069135546684265,-0.0079880151897669,-0.047299861907959],[0.10377490520477,-0.0096473731100559,-0.060012653470039],[-0.039546314626932,-0.082014605402946,-0.049241811037064]],[[-0.02834664285183,-0.12552072107792,-0.043473731726408],[-0.066959850490093,-0.1303828060627,0.0059261866845191],[0.10104843974113,0.030639324337244,0.038466434925795]],[[-0.11287895590067,0.052173465490341,0.083735726773739],[-0.070620112121105,0.12186251580715,0.10114202648401],[-0.15786443650723,0.017819039523602,0.083256646990776]],[[0.0025919780600816,0.014153324998915,-0.0174416359514],[0.023210553452373,0.023989161476493,0.038180977106094],[0.025145955383778,0.024103526026011,0.0034455007407814]],[[-0.045134998857975,-0.21955081820488,0.017886340618134],[0.089333698153496,0.02940215729177,0.0045254076831043],[0.081381745636463,0.056676488369703,-0.015365145169199]],[[0.019292052835226,-0.047207560390234,-0.035963445901871],[0.043175742030144,-0.015583428554237,-0.095771789550781],[-0.081585459411144,-0.084286272525787,-0.14678280055523]],[[-0.0099040130153298,-0.12819187343121,-0.086252696812153],[-0.016014903783798,0.0048344642855227,-0.0018704425310716],[0.12772661447525,0.081600174307823,-0.072508841753006]],[[-0.011096075177193,-0.067155413329601,0.096601404249668],[-0.063736408948898,-0.029151741415262,0.099591940641403],[-0.040311899036169,0.027136432006955,0.0016330247744918]],[[0.15651465952396,-0.039536878466606,0.030522534623742],[0.005224279128015,0.039168711751699,-0.072177194058895],[-0.031876605004072,-0.0063833207823336,-0.14319226145744]],[[-0.071772389113903,-0.18344214558601,-0.071509219706059],[0.0057242433540523,0.043106067925692,-0.029396215453744],[-0.0037431879900396,0.10803021490574,0.060291305184364]],[[-0.040207084268332,-0.026290088891983,0.069238118827343],[0.043894942849874,-0.071157425642014,-0.0080861756578088],[-0.1480545848608,-0.043735921382904,-0.090455234050751]],[[-0.12557259202003,-0.035191509872675,-0.027514377608895],[-0.13952852785587,0.021992512047291,-0.044524393975735],[-0.12018464505672,0.050564650446177,-0.027738248929381]],[[-0.080404482781887,-0.069205597043037,-0.13696867227554],[-0.016412323340774,0.038316357880831,0.052140630781651],[0.001594468136318,0.031645331531763,-0.022647488862276]],[[-0.091086655855179,-0.081381298601627,0.034933976829052],[0.03732081502676,-0.038311097770929,0.039330128580332],[-0.12750823795795,-0.12210015952587,-0.032021518796682]],[[-0.12914314866066,-0.24807925522327,-0.23079641163349],[-0.080234728753567,-0.15089060366154,-0.060910977423191],[-0.068410120904446,0.0052679544314742,0.059575706720352]],[[0.076028905808926,0.20933094620705,0.095167845487595],[0.0056423684582114,0.069477252662182,0.095559403300285],[-0.10024611651897,-0.08978009223938,-0.045380610972643]],[[0.033682078123093,-0.081627860665321,-0.0048150760121644],[-0.010213017463684,-0.024635491892695,-0.045837413519621],[0.026405179873109,0.067150354385376,0.063254058361053]],[[0.029332892969251,-0.0088554657995701,-0.10295417159796],[0.088358908891678,0.041509315371513,0.0069585163146257],[-0.0044375993311405,-0.032167989760637,0.10078374296427]],[[-0.040160581469536,0.038307938724756,-0.045401759445667],[0.012147414498031,0.035600639879704,-0.046222414821386],[-0.077528297901154,-0.070733092725277,-0.070438273251057]],[[-0.09916115552187,0.0010829670354724,0.13906106352806],[0.0097647812217474,0.038926720619202,-0.04148817807436],[0.056908663362265,0.066018007695675,0.21756564080715]],[[-0.11043326556683,-0.060417361557484,-0.0051571219228208],[0.042536772787571,0.014600934460759,0.029210593551397],[0.019467012956738,-0.023349851369858,0.019513191655278]]],[[[-0.20683841407299,0.013569200411439,0.090748324990273],[0.0086007881909609,0.11160147190094,-0.15673977136612],[0.11226019263268,0.071530379354954,-0.065666072070599]],[[-0.047197099775076,0.039218209683895,-0.10417192429304],[-0.044081229716539,-0.011917106807232,-0.070774100720882],[-0.046765953302383,0.043531335890293,0.063324868679047]],[[-0.097914479672909,-0.059602249413729,0.08094696700573],[-0.11642605066299,-0.039890438318253,0.045833934098482],[-0.055964834988117,-0.028288887813687,0.055329728871584]],[[-0.0017067799344659,0.0097706597298384,-0.01013997849077],[-0.1012047380209,-0.014477459713817,0.038285963237286],[-0.014939393848181,0.030507246032357,0.053821954876184]],[[-0.21813097596169,-0.01744300685823,0.027378408238292],[-0.058019332587719,0.015835890546441,-0.04071906581521],[-0.0033765418920666,-0.047190550714731,-0.054878484457731]],[[0.0054497155360878,-0.035118695348501,0.019982879981399],[-0.02095983736217,-0.056902900338173,-0.066078811883926],[0.0028870776295662,0.14644180238247,0.098189800977707]],[[-0.10837976634502,-0.034311570227146,-0.018938723951578],[-0.096433706581593,0.092370100319386,0.037140794098377],[-0.038728147745132,0.062997668981552,0.0018888382473961]],[[0.10461608320475,0.047678608447313,0.02791271917522],[-0.03112855181098,-0.083171285688877,0.05275259539485],[-0.014808433130383,0.016872612759471,-0.016421969980001]],[[-0.071693494915962,0.0033410519827157,-0.046232040971518],[-0.038916006684303,0.02030891366303,0.090656839311123],[0.025987250730395,0.010476842522621,0.04068748280406]],[[0.019070470705628,0.0042770258150995,-0.044424567371607],[0.029511062428355,-0.049140140414238,-0.028661735355854],[-0.010204466059804,0.091962583363056,-0.036451753228903]],[[-0.0028204794507474,-0.035063561052084,-0.013687775470316],[-0.081568159162998,0.062900573015213,-0.0081645892933011],[-0.04129596054554,0.10525154322386,-0.0036169905215502]],[[-0.04574741050601,-0.1585718691349,-0.10494889318943],[-0.046119097620249,0.062694907188416,-0.052156578749418],[-0.078795239329338,0.10045085847378,0.091821953654289]],[[0.0048719211481512,-0.050480466336012,-0.049484867602587],[-0.097608461976051,-0.06099734082818,0.018110441043973],[0.088906407356262,-0.033641792833805,0.013570780865848]],[[-0.034218035638332,0.025954080745578,-0.10947623848915],[-0.036454550921917,-0.063705891370773,-0.26950836181641],[-0.026286706328392,-0.038133755326271,-0.19468219578266]],[[0.015795500949025,0.03714245185256,0.0096251526847482],[-0.034926205873489,0.023104021325707,0.0269715487957],[-0.037241950631142,-0.064491525292397,0.050119712948799]],[[-0.050421986728907,0.032117988914251,0.068724907934666],[-0.039354901760817,-0.03697606921196,-0.014416833408177],[-0.016729153692722,-0.043849729001522,0.065763182938099]],[[-0.069524765014648,-0.024907164275646,-0.020770406350493],[0.046912610530853,0.077063210308552,0.04310629889369],[0.089112050831318,0.047650504857302,0.039346110075712]],[[-0.0041402354836464,-0.047544941306114,0.093438975512981],[0.00089911307441071,-0.030454333871603,0.044602312147617],[-0.019388359040022,-0.0022695986554027,0.035473711788654]],[[0.0056187901645899,-0.037569787353277,-0.016744747757912],[-0.015814539045095,-0.10487185418606,-0.017167979851365],[-0.017575858160853,-0.017717158421874,-0.042960613965988]],[[0.011675635352731,0.02888036891818,0.01483544614166],[-0.012301185168326,0.0023848689161241,0.012069766409695],[-0.043635778129101,-0.030172372236848,0.027062090113759]],[[-0.073600180447102,-0.020366011187434,-0.054323341697454],[0.011779553256929,-0.19465532898903,-0.21350555121899],[-0.046823345124722,0.025800636038184,-0.026778485625982]],[[-0.054365061223507,0.032139904797077,0.02353959903121],[-0.063152283430099,-0.030969757586718,0.081808738410473],[0.011007962748408,-0.02854722738266,0.017592815682292]],[[-0.06787895411253,0.035275556147099,0.023199258372188],[-0.12659649550915,-0.022744078189135,-0.0070106950588524],[0.0048161121085286,0.071914821863174,-0.046872567385435]],[[-0.012095754034817,0.040966603904963,0.066554605960846],[0.14759764075279,0.068224787712097,0.11586308479309],[0.022789197042584,0.110008276999,-0.0085449097678065]],[[-0.047723297029734,-0.021747490391135,-0.040894199162722],[0.07421587407589,-0.083554044365883,0.17321552336216],[-0.034804046154022,-0.020997889339924,0.051816910505295]],[[0.01116172876209,-0.058358576148748,0.027743818238378],[0.05724423378706,0.052032977342606,0.1219154894352],[-0.02933088131249,0.064983911812305,0.12289440631866]],[[-0.024641714990139,-0.043583169579506,-0.013833906501532],[0.013900107704103,0.15025462210178,-0.0063890479505062],[0.049943681806326,-0.041584067046642,-0.083725184202194]],[[0.031804550439119,-0.0061032110825181,0.1341398358345],[0.036892767995596,0.0727349370718,0.0045184390619397],[0.038623325526714,-0.028434712439775,0.14416739344597]],[[0.095392294228077,-0.022382749244571,0.00035785720683634],[0.041543882340193,0.016311910003424,-0.0038809992838651],[-0.006543361581862,0.040739521384239,-0.017798859626055]],[[-0.15317049622536,-0.059844296425581,-0.0099709909409285],[-0.077490419149399,-0.038629416376352,-0.029619270935655],[-0.12646088004112,0.0090262619778514,0.036674853414297]],[[-0.027620010077953,-0.015502428635955,-0.029882524162531],[0.053412429988384,-0.068148471415043,0.029700646176934],[0.012445631437004,0.042808976024389,0.013842036947608]],[[-0.04355738312006,0.026608821004629,-0.11517908424139],[-0.053597897291183,-0.088701106607914,0.038664951920509],[0.0050935433246195,-0.045299746096134,-0.11480531096458]],[[-0.019580980762839,-0.070209942758083,-0.031396020203829],[0.023889053612947,0.037000264972448,0.0096708545461297],[0.015247989445925,-0.0096331862732768,-0.016692791134119]],[[0.0068977093324065,0.072359673678875,0.087360695004463],[0.075418695807457,-0.092716991901398,-0.050034902989864],[-0.021077066659927,-0.074625723063946,-0.047584481537342]],[[-0.10322201997042,0.03647618740797,0.11393249034882],[0.14561855792999,-0.03224304318428,0.026597099378705],[0.040553074330091,-0.0092138312757015,0.0061652543954551]],[[5.0871945859399e-05,-0.0073758587241173,0.036493197083473],[-0.075086884200573,-0.12673245370388,-0.066151902079582],[-0.012904639355838,0.034092742949724,0.031979467719793]],[[-0.044167827814817,-0.014679163694382,-0.05663238093257],[0.010786610655487,0.051050506532192,0.063420474529266],[0.056821435689926,-0.010119439102709,0.031727280467749]],[[0.086915157735348,0.05203216150403,0.016834948211908],[-0.013759091496468,-0.0040840706788003,-0.047546338289976],[-0.027296097949147,0.0024714136961848,0.11610425263643]],[[-0.17636793851852,0.027591977268457,0.078245766460896],[0.10514510422945,0.10136475414038,-0.048919178545475],[0.026249056681991,0.091503649950027,0.076298534870148]],[[-0.0095405727624893,-0.011474013328552,-0.066006354987621],[-0.012509330175817,-0.062309000641108,-0.030520422384143],[-0.024900993332267,0.049818642437458,-0.026826491579413]],[[0.017380265519023,-0.035650316625834,-0.008359482511878],[-0.041844818741083,0.042144570499659,0.0062757721170783],[-0.049435883760452,0.018383314833045,0.090646505355835]],[[0.054752603173256,0.11363255232573,0.063530713319778],[0.012393207289279,0.018598342314363,-0.031749982386827],[0.073475383222103,0.021951235830784,-0.041335288435221]],[[-0.086103655397892,-0.044800475239754,-0.04746488109231],[-0.094385460019112,-0.14305543899536,-0.050867319107056],[-0.065193623304367,0.0036025827284902,-0.047141302376986]],[[0.054752051830292,-0.0072475606575608,0.078860908746719],[-0.02229662053287,-0.14320059120655,0.012640521861613],[-0.11311854422092,-0.060270823538303,-0.12178363651037]],[[-0.0011676986468956,0.052376717329025,0.093070916831493],[-0.12605729699135,-0.00086650263983756,0.070658169686794],[-0.074943237006664,-0.049037594348192,0.012913198210299]],[[-0.0092488536611199,0.011354446411133,0.021485310047865],[-0.18391013145447,0.062957935035229,-0.038461986929178],[-0.06736321747303,-0.013750227168202,-0.053864303976297]],[[-0.038489144295454,-0.031591422855854,-0.0081810727715492],[-0.10901198536158,-0.033249590545893,-0.010573728010058],[-0.0042467499151826,0.091507904231548,-0.016571518033743]],[[0.064036548137665,-0.031947925686836,0.014344682916999],[0.081041418015957,-0.044511292129755,-0.089485697448254],[0.087658047676086,-0.11009607464075,0.079601511359215]],[[0.046844318509102,-0.0029301352333277,-0.087982982397079],[-0.0014676739228889,-0.01712273620069,0.048891566693783],[-0.021526077762246,0.026087913662195,0.048269871622324]],[[-0.046862412244081,-0.025758629664779,-0.0043314625509083],[-0.092722840607166,-0.037454836070538,0.06361561268568],[0.012366372160614,-0.11165156960487,-0.049957297742367]],[[-0.014958269894123,0.075250521302223,-0.01086981035769],[-0.035793866962194,0.037131793797016,-0.11571010947227],[0.055164370685816,0.029724024236202,0.014805067330599]],[[-0.00012525168131106,0.14283519983292,0.10548222064972],[0.11268772929907,-0.019498649984598,-0.089576609432697],[0.066034987568855,-0.00047757918946445,-0.0052092396654189]],[[0.10416442900896,-0.064272917807102,0.023450452834368],[-0.0099728954955935,0.038370970636606,-0.02679449506104],[-0.081831194460392,0.053979739546776,0.064132429659367]],[[-0.010478890500963,-0.022568799555302,0.036565694957972],[0.046650178730488,-0.074323728680611,0.071710258722305],[0.022150959819555,0.012340216897428,-0.011924067512155]],[[0.046655520796776,-0.032552357763052,0.051225021481514],[0.0063698058947921,-0.019476627930999,0.029023306444287],[-0.037587866187096,-0.052981935441494,0.028571614995599]],[[-0.0082046650350094,-0.035548962652683,-0.047149091959],[0.016901984810829,-0.035705413669348,0.098224304616451],[0.039039984345436,-0.061014428734779,0.12134014070034]],[[-0.048733964562416,0.094972118735313,-0.0022174534387887],[-0.062553107738495,0.048072054982185,-0.036626126617193],[-0.034316200762987,-0.022742403671145,0.0050520333461463]],[[0.050963848829269,-0.050769746303558,0.00656074937433],[0.009584934450686,-0.055769167840481,0.063575252890587],[-0.042960692197084,0.10226679593325,-0.033186934888363]],[[0.0058002825826406,0.049539815634489,-0.028702970594168],[0.059551134705544,-0.084521621465683,0.015050168149173],[0.085195027291775,-0.0063006114214659,-0.089128017425537]],[[-0.019052624702454,0.012378039769828,-0.017599171027541],[-0.0087151871994138,-0.0091923549771309,0.0026185242459178],[0.053016502410173,0.0034754371736199,-0.009864185936749]],[[-0.029066443443298,-0.0089779440313578,0.011517840437591],[0.023145264014602,0.013770224526525,-0.011452977545559],[-0.054371446371078,-0.010047264397144,0.013615067116916]],[[-0.089602388441563,9.1042697022203e-05,0.024520160630345],[-0.081190690398216,0.012761250138283,-0.015550842508674],[-0.038109213113785,-0.09168253839016,-0.13062258064747]],[[-0.046921674162149,-0.065055206418037,-0.053366784006357],[0.050062470138073,-0.097981348633766,0.010414513759315],[0.07411166280508,-0.056228794157505,-0.059853743761778]],[[-0.020672405138612,0.015874462202191,0.015398331917822],[-0.013400536030531,-0.0020268813241273,0.034368291497231],[0.034399881958961,-0.0063394038006663,0.058051731437445]]],[[[0.031366609036922,-0.084971539676189,0.038559000939131],[-0.055180244147778,-0.12107215076685,-0.0041194721125066],[0.056034047156572,-0.023648541420698,-0.056401368230581]],[[0.075491793453693,0.039500340819359,0.014025046490133],[0.090643361210823,0.0070247026160359,0.027406167238951],[0.054580569267273,-0.026239277794957,0.019461592659354]],[[0.05553712695837,0.063137196004391,-0.17994451522827],[0.022668041288853,-0.041333116590977,-0.17888510227203],[0.023391747847199,-0.11051363497972,-0.27705657482147]],[[0.040639866143465,-0.068923063576221,-0.025653120130301],[0.018300082534552,-0.0089643485844135,-0.14340506494045],[0.0063073672354221,-0.040280178189278,-0.13199211657047]],[[0.031255137175322,-0.0060992906801403,0.024434743449092],[-0.031697515398264,-0.014844319783151,-0.079203896224499],[-0.05469386279583,-0.063705489039421,-0.12944497168064]],[[0.016496485099196,0.060069166123867,0.015673527494073],[-0.042425312101841,0.077302359044552,0.001144191250205],[-0.031117064878345,0.033918440341949,-0.046914465725422]],[[0.061672419309616,-0.099209979176521,-0.02152518928051],[-0.030473718419671,-0.10757530480623,-0.007814452983439],[-0.015444071963429,-0.051631193608046,-0.080396629869938]],[[-0.10143965482712,-0.16363950073719,0.034950606524944],[0.04312327131629,-0.025688717141747,0.024420335888863],[0.12067250162363,-0.086118265986443,-0.15235057473183]],[[-0.12104854732752,-0.040139719843864,0.084632374346256],[0.0099736731499434,-0.025689562782645,-0.0096342712640762],[0.010120258666575,-0.12054973840714,-0.17676669359207]],[[0.1007217913866,0.072811909019947,0.022519391030073],[-0.033807523548603,0.083190709352493,0.062310602515936],[0.080930776894093,0.054776195436716,-0.050785381346941]],[[-0.11345694214106,-0.071767695248127,-0.052693802863359],[-0.084747090935707,-0.0048698089085519,0.031604882329702],[0.019003110006452,-0.039318569004536,0.11921099573374]],[[-0.11757083982229,-0.000823499110993,-0.024645615369081],[-0.078513994812965,-0.031507708132267,0.0014050926547498],[-0.019818151369691,-0.07013762742281,-0.082100123167038]],[[0.00047550577437505,0.059991851449013,0.012578806839883],[0.037327501922846,0.031048377975821,-0.075965605676174],[0.11208410561085,-0.021670395508409,0.034192647784948]],[[0.029906118288636,0.17994134128094,0.13536335527897],[0.11592402309179,0.13710141181946,0.089955866336823],[0.05623521655798,0.082345120608807,0.014878025278449]],[[-0.0014385716058314,0.020934849977493,-0.028344416990876],[-0.04508151486516,-0.015062236227095,-0.053095836192369],[0.084376290440559,-0.044409334659576,-0.031486269086599]],[[0.053381122648716,-0.074680082499981,0.057986322790384],[-0.02541478164494,-0.020945025607944,-0.037274844944477],[-0.001858577481471,-0.077868483960629,-0.027959316968918]],[[-0.15939578413963,-0.091495238244534,0.06371308863163],[-0.064911991357803,-0.003908381331712,0.057422623038292],[-0.0739401653409,-0.01548536401242,0.10347801446915]],[[0.030255960300565,-0.10185032337904,-0.023427475243807],[-0.099464692175388,-0.070254310965538,-0.015576124191284],[-0.10235752910376,-0.1104484423995,0.031801946461201]],[[0.0095810601487756,-0.039241343736649,-0.0039760083891451],[0.0085580619052052,-0.028247077018023,-0.025208717212081],[-0.076197348535061,0.086601756513119,0.053780067712069]],[[0.072069704532623,0.081600300967693,0.0067510809749365],[0.083193600177765,-0.012763421982527,-0.1022615134716],[0.056039296090603,-0.03510944545269,-0.07251776009798]],[[0.050608839839697,0.027931435033679,-0.049882799386978],[0.034266911447048,0.065454505383968,-0.050300866365433],[0.051088228821754,-0.0075559471733868,-0.04196597263217]],[[0.10980105400085,0.045527391135693,0.048857979476452],[0.057554241269827,-0.027924783527851,-0.15233464539051],[0.031097635626793,0.098025932908058,-0.025557802990079]],[[-0.096567235887051,0.037981502711773,-0.010134659707546],[-0.031816396862268,0.067321583628654,0.069055490195751],[0.0082884300500154,-0.02128554880619,0.061833310872316]],[[-0.024407770484686,0.030599253252149,0.15221206843853],[0.047721780836582,0.061447475105524,0.15094909071922],[-0.02346727065742,0.047203373163939,0.084358431398869]],[[-0.10221620649099,0.021652404218912,-0.10633059591055],[0.022313417866826,-0.048820689320564,0.032952629029751],[-0.038493268191814,0.11200963705778,0.10141820460558]],[[0.032542273402214,-0.011466738767922,0.038687642663717],[0.0044592153280973,0.011116740293801,0.023471418768167],[0.032678086310625,0.0037053432315588,0.059781689196825]],[[0.024416895583272,-0.056404463946819,0.061561059206724],[-0.035902716219425,-0.075605407357216,0.039710223674774],[-0.055040169507265,-0.059099234640598,-0.0085580563172698]],[[0.088848486542702,0.0069795208983123,-0.085717760026455],[-0.02246780321002,-0.013174631632864,-0.027249870821834],[-0.01694780215621,-0.011685658246279,-0.013182561844587]],[[-0.18576245009899,-0.0099774925038218,-0.030461601912975],[-0.16238488256931,-0.044184189289808,0.029492935165763],[-0.11852483451366,-0.0341184027493,-0.016702087596059]],[[-0.069741629064083,-0.098850890994072,-0.045506123453379],[-0.081740133464336,-0.016910331323743,-0.061212744563818],[0.0028121257200837,-0.1004124134779,-0.03092604316771]],[[-0.025211283937097,0.051798965781927,-0.053974132984877],[0.026353782042861,-0.020936276763678,-0.082240007817745],[0.015488398261368,-0.0076767560094595,-0.13988803327084]],[[0.20312152802944,-0.0021218911278993,-0.050567820668221],[-0.038632243871689,0.07271059602499,0.01128857396543],[-0.061689529567957,0.0095088165253401,-0.015337505377829]],[[-0.0077565563842654,-0.057957131415606,-0.016874514520168],[-0.018724339082837,-0.042337115854025,-0.0012416659155861],[-0.0774205327034,-0.027766112238169,0.059427808970213]],[[0.088949233293533,0.1971250474453,0.029715338721871],[-0.02226248383522,0.15918707847595,-0.012623377144337],[0.017268581315875,0.10422295331955,-0.025643402710557]],[[0.09584691375494,0.053260404616594,-0.048339162021875],[0.050947770476341,0.078878112137318,0.067380644381046],[0.040092684328556,0.020126011222601,-0.063850969076157]],[[0.034777902066708,-0.071027979254723,0.0044262590818107],[0.043050158768892,-0.021454930305481,0.031417030841112],[-0.059282749891281,0.046215452253819,-0.055306669324636]],[[-0.037104442715645,-0.024468675255775,-0.0077664433047175],[0.023033052682877,0.019814871251583,-0.048527169972658],[-0.068802773952484,0.089634709060192,0.019181257113814]],[[0.046792484819889,-0.12431698292494,-0.11312538385391],[0.033381558954716,-0.089606113731861,-0.11859132349491],[0.051051057875156,-0.02535979449749,-0.0034332314971834]],[[0.013041674159467,-0.0023480472154915,-0.060789875686169],[0.024979554116726,-0.057848911732435,0.020572999492288],[-0.087425515055656,-0.0060464995913208,0.017351852729917]],[[0.068708285689354,0.20455943048,0.044368267059326],[0.094674237072468,0.21011883020401,0.011802627705038],[0.06890644133091,0.10277058184147,-0.084609568119049]],[[0.12480963766575,0.098104275763035,0.11794177442789],[-0.0037247315049171,-0.059983104467392,-0.015175832435489],[0.056119773536921,-0.0010096275946125,-0.11463446170092]],[[0.040332019329071,0.032641641795635,-0.048698730766773],[-0.032972291111946,-0.020549718290567,0.036972623318434],[-0.12175171077251,0.073962040245533,-0.0075138127431273]],[[-0.0040488946251571,-0.047576580196619,-0.12880617380142],[-0.03666390478611,-0.050806187093258,0.01456809323281],[-0.0065020001493394,-0.064048394560814,0.04617615044117]],[[0.018995758146048,0.11558984220028,-0.0078811096027493],[0.085203692317009,0.066273644566536,-0.032730005681515],[-0.047520700842142,0.017066858708858,-0.10160068422556]],[[-0.1022187396884,-0.011894626542926,0.08168251812458],[-0.047583170235157,0.028223734349012,-0.030192812904716],[-0.031145125627518,-0.0069222659803927,-0.030699973925948]],[[0.16893185675144,-0.005678175482899,-0.1009781062603],[-0.012779415585101,-0.015658032149076,-0.086883902549744],[0.017893740907311,0.035854306071997,0.014537286944687]],[[0.093807227909565,0.053253587335348,-0.086180076003075],[0.064604513347149,-0.031953699886799,-0.0098939230665565],[0.0056679733097553,0.0034299693070352,-0.019144715741277]],[[-0.058596465736628,0.046919442713261,-0.026102999225259],[0.010669496841729,0.024173384532332,-0.0036309971474111],[0.00066109857289121,0.0037742729764432,0.031314417719841]],[[-0.0051786419935524,0.03720473498106,-0.0094431070610881],[-0.041833449155092,-0.038197465240955,0.001946309581399],[0.043504361063242,0.021414656192064,0.10688651353121]],[[0.091098226606846,0.00051623716717586,-0.076598800718784],[0.12019124627113,0.063748210668564,-0.017471726983786],[0.11119224131107,0.10842563211918,-0.13946028053761]],[[-0.047961935400963,-0.035773139446974,-0.0045034731738269],[-0.053044553846121,-0.019225493073463,0.017134675756097],[-0.052352204918861,-0.024418924003839,0.00032762816408649]],[[-0.025335349142551,-0.033914964646101,0.025575703009963],[0.035768691450357,-0.075504124164581,-0.033967979252338],[-0.11192575842142,-0.10623869299889,-0.064773134887218]],[[-0.065693825483322,0.11426764726639,-0.088546700775623],[0.022871984168887,0.017194338142872,0.0040197456255555],[-0.012622643262148,-0.01797442138195,-0.051741294562817]],[[-0.097646564245224,-0.0093363970518112,-0.0099514806643128],[-0.10072214901447,-0.047720391303301,-0.050928816199303],[0.046079620718956,0.16325743496418,0.10980325192213]],[[-0.01860480196774,-0.013184218667448,-0.012911268509924],[0.083549164235592,0.0063209850341082,-0.023383053019643],[-0.055565845221281,-0.0247867051512,0.025933865457773]],[[-0.093121901154518,-0.14717717468739,-0.0054529085755348],[-0.13295002281666,-0.054658643901348,-0.029544189572334],[-0.051177725195885,-0.058273620903492,0.042131278663874]],[[0.077463500201702,-0.0070165814831853,0.056402392685413],[-0.050053674727678,-0.089175894856453,-0.0056608156301081],[-0.035375598818064,0.026620211079717,0.082186110317707]],[[0.086545027792454,0.021804261952639,-0.035881981253624],[-0.014885909855366,-0.087193138897419,-0.010642671026289],[-0.035994049161673,0.018216801807284,0.13212355971336]],[[0.042748738080263,0.095512501895428,0.076233737170696],[0.048741526901722,-0.011840242892504,-0.035883843898773],[0.1214993968606,0.023209588602185,0.18736754357815]],[[-0.077917702496052,-0.047364890575409,0.019336804747581],[-0.039658948779106,0.064457647502422,0.03543309494853],[-0.017493149265647,0.059339918196201,0.031131645664573]],[[0.0077508362010121,0.048893336206675,-0.01202726457268],[-0.0022700317203999,-0.018775494769216,-0.050814192742109],[-0.053289618343115,0.00059008772950619,0.025945048779249]],[[0.15479144454002,-0.089495621621609,-0.12411541491747],[0.08722872287035,-0.20944169163704,0.023297559469938],[-0.10303510725498,-0.092630051076412,0.09365963190794]],[[0.066189132630825,0.043763119727373,0.026471745222807],[0.020716106519103,0.069421701133251,-0.01232036203146],[0.0068290592171252,-0.023973127827048,-0.01927643828094]],[[0.038383796811104,-0.08578347414732,-0.051813166588545],[0.029833192005754,0.012422712519765,0.070895344018936],[0.0063995062373579,0.037706345319748,-0.030291887000203]]],[[[0.036327257752419,0.0058185304515064,0.0098869185894728],[-0.10201171785593,-0.03368715941906,-0.053028088063002],[-0.011943756602705,0.05655213072896,-0.022178985178471]],[[0.057358667254448,-0.024074604734778,-0.065537542104721],[-0.05214923620224,0.0070714317262173,-0.10797432810068],[0.0020551688503474,-0.055180296301842,-0.093169033527374]],[[-0.025958565995097,-0.14664493501186,0.01531708240509],[-0.01556124445051,-0.040513224899769,-0.036553785204887],[-0.15186908841133,0.0070296749472618,-0.14216190576553]],[[0.023220561444759,-0.036843899637461,-0.060421865433455],[0.06462200731039,-0.12728157639503,-0.021343836560845],[-0.079696007072926,-0.072543248534203,0.022299474105239]],[[0.0041154813952744,-0.022294925525784,0.0023348350077868],[-0.054635062813759,0.019489934667945,-0.046876613050699],[0.011445125564933,-0.031855072826147,0.024277729913592]],[[0.052442938089371,-0.041552256792784,0.01423273421824],[0.011863016523421,-0.037943869829178,-0.018090695142746],[0.044315025210381,-0.019801048561931,-0.025167478248477]],[[-0.075219996273518,0.0003526589134708,0.070061519742012],[0.033397570252419,-0.086091384291649,-0.017254505306482],[-0.056465167552233,-0.027814902365208,-0.027771467342973]],[[0.012013368308544,0.022660251706839,-0.055222909897566],[0.0038339656312019,-0.002947214525193,-0.018514174968004],[-0.0078304624184966,0.0049364827573299,-0.038849521428347]],[[0.014214502647519,0.011187189258635,-0.040966238826513],[-0.044428873807192,-0.05390514805913,-0.019204065203667],[0.001758552971296,0.037333533167839,0.069360084831715]],[[0.070949077606201,-0.023978970944881,0.038484178483486],[-0.12051028013229,0.0093830861151218,-0.13784219324589],[-0.0072485445998609,-0.029480300843716,0.10483940690756]],[[0.0013576073106378,-0.0069022527895868,0.0081663830205798],[-0.19662702083588,0.052435211837292,-0.021102100610733],[-0.026918267831206,-0.092006221413612,0.086435094475746]],[[-0.008511352352798,-0.0067645311355591,-0.023830017074943],[0.0004694253730122,-0.083918958902359,-0.0021353443153203],[-0.065398782491684,0.014133501797915,0.015574513934553]],[[-0.035014219582081,-0.06667073071003,-0.032733779400587],[0.0081123104318976,-0.04677128046751,-0.028633564710617],[0.064348801970482,-0.0044882581569254,0.0018955916166306]],[[-0.00043821084545925,0.035750072449446,-0.022666810080409],[-0.040763135999441,0.064449571073055,-0.032727506011724],[0.039460506290197,0.031581282615662,0.06797531247139]],[[-0.0035515613853931,-0.075353421270847,0.015377921052277],[0.012737291865051,-0.035130813717842,-0.044267993420362],[0.0064152050763369,0.011256005614996,-0.0076774777844548]],[[-0.12813736498356,0.042194709181786,0.18706361949444],[0.16108426451683,-0.023077424615622,-0.1210939437151],[0.13816258311272,-0.10046262294054,-0.078718736767769]],[[0.048573881387711,0.060609888285398,0.04134463891387],[-0.011478737927973,0.052503902465105,-0.13085742294788],[-0.055432662367821,-0.090698756277561,-0.011823487468064]],[[-0.11134250462055,0.037911623716354,-0.048221446573734],[0.00036124902544543,-0.05204750970006,-0.1310711055994],[0.025615401566029,0.0091349640861154,0.0038088785950094]],[[0.02173270098865,0.03859918564558,-0.0088039143010974],[0.0071916407905519,-0.080636113882065,0.025577124208212],[0.065367788076401,0.01172542385757,-0.066386595368385]],[[0.010623285546899,-0.015452962368727,-0.010645981878042],[-0.0011652861721814,0.058267142623663,0.040548413991928],[-0.066742673516273,0.0059417663142085,0.00065854226704687]],[[-0.017755350098014,-0.0083900801837444,-0.023980746045709],[0.0036021054256707,-0.043677996844053,-0.02907258272171],[-0.013256814330816,-0.03930140286684,-0.0022693665232509]],[[-0.085576750338078,-0.0076428060419858,0.053494211286306],[-0.017107391729951,-0.039080161601305,0.011127850040793],[-0.025396503508091,0.05738614872098,0.025454122573137]],[[-0.063140101730824,-0.032523147761822,-0.07398709654808],[0.025798197835684,-0.0031498356256634,0.054867476224899],[-0.014926256611943,0.024830868467689,0.050823181867599]],[[0.037957720458508,0.090316005051136,0.10213774442673],[-0.019930139183998,-0.033992145210505,-0.073439136147499],[0.050060465931892,0.10104110091925,0.052408281713724]],[[-0.029367784038186,-0.031017592176795,-0.036221843212843],[0.025955520570278,-0.03311562538147,0.010545948520303],[-0.10509500652552,-0.040762834250927,0.0046772472560406]],[[0.0042423782870173,-0.014524667523801,-0.011593856848776],[-0.056275654584169,-0.048178263008595,-0.03607401996851],[0.017637740820646,0.031033692881465,0.031439691781998]],[[-0.075827732682228,0.053047277033329,-0.070569381117821],[0.021896043792367,0.029079625383019,0.043946225196123],[0.03028049133718,-0.063871398568153,-0.087221696972847]],[[-0.039472334086895,0.051235105842352,-0.059323716908693],[-0.028598565608263,0.049668196588755,-0.016910715028644],[0.01302426494658,-0.038878761231899,0.0063204909674823]],[[0.067925840616226,-0.053238544613123,0.0047156712971628],[-0.037484422326088,-0.062944777309895,-0.025547381490469],[0.20983785390854,-0.067041367292404,-0.045544229447842]],[[-0.015003300271928,-0.11665014922619,-0.029307907447219],[-0.014655431732535,-0.086566984653473,0.039607774466276],[-0.060840886086226,-0.060279320925474,-0.0049088220112026]],[[0.021311799064279,-0.031840912997723,-0.025128696113825],[-0.077488481998444,0.086196005344391,-0.044277541339397],[-0.036857433617115,-0.060604266822338,0.084765307605267]],[[-0.070631705224514,0.00064355402719229,-0.071301363408566],[-0.018949029967189,0.042787604033947,0.018398605287075],[0.031870011240244,0.02336803637445,0.01287788245827]],[[-0.0078038582578301,0.0024307877756655,-0.016979679465294],[0.0031142961233854,-0.03056220524013,0.015211034566164],[-0.028421020135283,-0.084593519568443,-0.013570610433817]],[[0.060332886874676,0.042786303907633,0.0010332160163671],[-0.067145265638828,0.024817744269967,0.016497801989317],[-0.009663482196629,-0.046033635735512,-0.027452979236841]],[[-0.089908137917519,-0.010252475738525,-0.011346173472703],[-0.0077318632975221,0.055266603827477,-0.05116892978549],[-0.014824142679572,-0.062621496617794,-0.00063983944710344]],[[-0.054492529481649,0.0035859604831785,0.014920491725206],[-0.018565997481346,-0.059128925204277,0.01402869168669],[-0.039066024124622,0.022031340748072,0.043739199638367]],[[0.074023671448231,-0.046291351318359,-0.085491769015789],[-0.043826494365931,0.023152131587267,0.043011050671339],[0.11127442121506,0.0090810498222709,-0.052415106445551]],[[-0.080363854765892,-0.11102917790413,-0.016095655038953],[-0.04529781639576,0.051645737141371,-0.043382741510868],[0.027818044647574,-0.083406634628773,0.001367649063468]],[[-0.0051024430431426,0.017132351174951,0.064673781394958],[-0.051073648035526,0.022326394915581,-0.099876947700977],[0.020647006109357,0.026723030954599,0.063994273543358]],[[-0.0029306586366147,-0.045930631458759,-0.075900487601757],[-0.071721456944942,0.0050787501968443,-0.076647371053696],[0.12098178267479,0.050017289817333,0.053468342870474]],[[-0.11735467612743,-0.14333420991898,0.11136136949062],[0.012275775894523,0.0043425359763205,0.040845032781363],[-0.17592468857765,0.034169871360064,0.10252040624619]],[[-0.020116062834859,0.069590553641319,-0.11914603412151],[0.10921841114759,0.059519931674004,-0.020559016615152],[0.020342892035842,-0.090144746005535,-0.0032180873677135]],[[-0.00057187490165234,-0.057910118252039,-0.056960560381413],[0.09398165345192,0.0065368195064366,-0.054910700768232],[-0.037322625517845,0.01571392826736,0.078146815299988]],[[-0.082753591239452,-0.02001141384244,-0.13610118627548],[0.055663116276264,-0.064214266836643,0.095046050846577],[-0.048210229724646,0.027551574632525,0.0063688913360238]],[[-0.028948504477739,0.0031515082810074,-0.062705501914024],[0.030678665265441,0.034698288887739,0.0638592466712],[-0.10291074216366,0.010025087743998,-0.027159133926034]],[[-0.014902632683516,-0.096133716404438,-0.018192827701569],[0.0013386165956035,0.051779296249151,-0.03485469892621],[0.0090572191402316,0.017237316817045,0.01743078045547]],[[-0.050799690186977,0.084569357335567,-0.015750097110868],[-0.010077532380819,0.024834485724568,-0.0089327525347471],[-0.028601290658116,0.0020991663914174,-0.0032907701097429]],[[0.041122131049633,-0.0083879437297583,0.044617768377066],[-0.077891483902931,-0.022793047130108,0.0024735506158322],[0.018049025908113,-0.062174383550882,0.010200951248407]],[[-0.051607351750135,-0.064006134867668,-0.021512495353818],[0.063434176146984,-0.078720353543758,0.076519653201103],[-0.027582641690969,-0.014171839691699,0.036739856004715]],[[0.082638189196587,-0.041793029755354,-0.00074432557448745],[0.048044536262751,0.043964616954327,-0.010520736686885],[0.019499033689499,0.0036551069933921,0.076864317059517]],[[0.020752970129251,-0.14993964135647,-0.024130271747708],[-0.037184793502092,-0.0097234826534986,-0.0650949254632],[-0.017974480986595,-0.0068372311070561,0.024724148213863]],[[-0.014505906030536,-0.034716553986073,-0.036204177886248],[-0.048911269754171,-0.045255739241838,-0.059337917715311],[0.087349943816662,-0.00029989768518135,0.021734746173024]],[[-0.11365903168917,0.0785096809268,-0.036616109311581],[-0.00095325207803398,6.6864486143459e-06,-0.10208879411221],[-0.0040307594463229,-0.073115833103657,0.010053170844913]],[[0.072762861847878,-0.063360333442688,-0.063705645501614],[0.081318832933903,-0.056738633662462,0.027380667626858],[-0.0043909191153944,0.062645860016346,-0.00043976292363368]],[[-0.055975843220949,-0.023223703727126,0.057766426354647],[0.029904259368777,-0.0077379080466926,-0.025336772203445],[-0.041323255747557,-0.050259534269571,0.032151874154806]],[[0.02952852845192,0.04997905343771,-0.082731813192368],[-0.018969770520926,-0.10093516856432,0.056695304811001],[-0.028450436890125,0.084805868566036,-0.048811953514814]],[[-0.16610084474087,0.032676052302122,-0.10304137319326],[0.0090681342408061,0.016078965738416,0.069192469120026],[0.0097783096134663,-0.046091705560684,0.001494318828918]],[[0.035679500550032,-0.049382288008928,-0.040200360119343],[0.014900778420269,-0.021282009780407,-0.033724028617144],[-0.080203540623188,-0.066672064363956,-0.070904359221458]],[[-0.11125959455967,0.087615132331848,-0.04600428044796],[-0.019667452201247,0.068088456988335,0.029118509963155],[0.1067286208272,-0.036766123026609,0.13193947076797]],[[0.004452405963093,-0.0095479395240545,-0.021744264289737],[0.0050108386203647,-0.045299608260393,0.005834377836436],[-0.014949647709727,0.036123868077993,0.017048893496394]],[[-0.060192067176104,-0.0030913054943085,0.041701596230268],[-0.048061572015285,-0.0059690973721445,0.014298271387815],[0.028606101870537,-0.015203143469989,-0.0072586201131344]],[[-0.026382697746158,-0.015939803794026,-0.0026721283793449],[0.035428956151009,0.0057984553277493,0.070118062198162],[-0.04063381254673,-0.1183111295104,0.0021870534401387]],[[0.044952653348446,0.031707376241684,-0.059574499726295],[-0.016297556459904,-0.029171280562878,0.046552572399378],[0.026427878066897,-0.086395747959614,-0.064789272844791]],[[-0.0082556530833244,-0.12950047850609,-0.024756021797657],[-0.033188797533512,-0.1083370000124,0.022030198946595],[-0.028167529031634,-0.0022622146643698,-0.055385556071997]]],[[[-0.029904752969742,-0.031782574951649,-0.016639629378915],[-0.027593780308962,-0.011533930897713,-0.013334590941668],[0.0037884491030127,-0.039643082767725,-0.02138882316649]],[[-0.046147160232067,-0.025135084986687,-0.002761468058452],[0.018277548253536,-0.0027233297005296,0.057605311274529],[0.052440837025642,0.043604712933302,-0.036705907434225]],[[-0.032630730420351,-0.086125046014786,0.037056177854538],[-0.12207090854645,-0.01158504281193,-0.038141649216413],[-0.038193684071302,-0.033844023942947,-0.08976361900568]],[[0.0050560003146529,-0.046519663184881,0.025425910949707],[-0.0022231850307435,0.079035341739655,0.12931449711323],[-0.055945243686438,-0.04402194544673,-0.019238913431764]],[[-0.043254438787699,-0.044449590146542,-0.0045461901463568],[-0.070291854441166,-0.012146094813943,0.052897211164236],[-0.043161567300558,0.049876656383276,-0.015051400288939]],[[-0.095669157803059,0.011683780699968,-0.0087406178936362],[-0.074127458035946,-0.11507575213909,-0.00070699112256989],[-0.030763186514378,0.030020721256733,0.070229388773441]],[[0.0036506436299533,-0.012765252962708,-0.030985325574875],[-0.037821508944035,0.059150967746973,-0.055899117141962],[0.029476879164577,-0.015284023247659,-0.012031784281135]],[[-0.020297633484006,-0.061880268156528,0.0087679643183947],[0.012127389200032,0.0023021711967885,-0.042718920856714],[-0.032631281763315,-0.015286389738321,-0.014601141214371]],[[-0.038426876068115,-0.05164372548461,0.049402248114347],[0.012425230816007,0.028399743139744,-0.060453154146671],[0.03745186701417,-0.014128702692688,0.026735357940197]],[[0.044404953718185,-0.017287217080593,-0.0058961352333426],[0.016633911058307,-0.023633977398276,0.03693275526166],[0.014483047649264,0.068764552474022,-0.043866202235222]],[[-0.12233477085829,-0.059520095586777,-0.014127399772406],[-0.012822950258851,-0.059304766356945,0.035519734025002],[-0.013089554384351,-0.02040215022862,0.0044582155533135]],[[0.037343930453062,-0.0013827567454427,0.0039921123534441],[-0.011848382651806,-0.069806657731533,0.029243538156152],[-0.040928479284048,0.046429820358753,-0.0052016144618392]],[[0.027980778366327,-0.017664581537247,-0.038698650896549],[-0.061848253011703,-0.072173669934273,-0.015421869233251],[0.043036330491304,3.0983501346782e-05,-0.048667717725039]],[[0.042119931429625,-0.011462475173175,0.03071223385632],[0.0026379926130176,0.05366351082921,-0.013193123973906],[0.037317126989365,0.010551601648331,0.085369057953358]],[[-0.045800279825926,0.11147727817297,0.062857866287231],[-0.045774858444929,-0.10133597254753,-0.069443941116333],[-0.066476702690125,-0.029713610187173,-0.017061291262507]],[[0.0093758879229426,0.022301515564322,0.027584599331021],[0.0074443370103836,0.030054394155741,-0.004274123813957],[0.00043695504427887,0.036879915744066,-0.041785918176174]],[[-0.014099899679422,0.067802935838699,-0.10454408824444],[0.037565149366856,-0.04403143376112,-0.10604986548424],[0.022915929555893,0.084212370216846,-0.036179881542921]],[[-0.022358691319823,-0.026454783976078,-0.043420884758234],[-0.062446184456348,-0.030319072306156,0.033800844103098],[0.050853233784437,-0.025124952197075,0.085220091044903]],[[0.021905375644565,-0.01096179895103,-0.0012079403968528],[-0.036135002970695,0.01624758541584,0.022080853581429],[0.047692228108644,0.039748292416334,0.10628836601973]],[[-0.016350708901882,0.031716760247946,0.0049992105923593],[0.05923330783844,-0.019511057063937,0.003302660305053],[-0.0056925672106445,-0.046410754323006,0.014767978340387]],[[-0.047618955373764,-0.017920652404428,-0.033877409994602],[-0.030031254515052,0.0058528557419777,0.039718139916658],[0.011886890046299,0.022493612021208,-0.073971085250378]],[[-0.00061170133994892,0.021313911303878,-0.022084763273597],[0.050595548003912,0.0071006612852216,0.075077213346958],[-0.030875496566296,-0.055918417870998,-0.090169295668602]],[[-0.02449069544673,0.013109169900417,-0.042021997272968],[0.079990454018116,0.03717228397727,-0.0081513347104192],[-0.012082473374903,-0.016045087948442,0.01771236024797]],[[0.040292236953974,-0.0046576303429902,0.03045709989965],[-0.0016295833047479,0.045451171696186,0.044229935854673],[0.037964098155499,0.098055206239223,0.060704164206982]],[[0.028553316369653,-0.035462159663439,-0.014009838923812],[-0.014244373887777,0.043768044561148,-0.046067383140326],[0.012655572965741,-0.059607740491629,-0.0055406433530152]],[[0.0035702320747077,0.030822515487671,0.057339005172253],[0.10284509509802,0.082629263401031,0.039552707225084],[0.010115737095475,-0.05253080278635,0.027984298765659]],[[-0.016860296949744,0.035376470535994,0.0027034445665777],[0.047898303717375,0.029563274234533,0.0065622036345303],[-0.017616624012589,0.0027149529196322,0.061345893889666]],[[-0.026134822517633,-0.025736240670085,0.010909833945334],[-0.056437160819769,-0.057907711714506,-0.054494604468346],[0.0084635829553008,-0.059115931391716,-0.051231678575277]],[[-0.076458960771561,-0.031231379136443,0.048967730253935],[0.021000422537327,-0.02611499093473,0.021666288375854],[-0.0045596356503665,-0.0060340580530465,0.046499382704496]],[[-0.028866937384009,0.041668131947517,0.020862963050604],[-0.015411390922964,0.0036500168498605,-0.020063389092684],[0.0051646674983203,0.010170892812312,0.0088639734312892]],[[-0.029560994356871,0.013815282844007,0.090529754757881],[0.022986870259047,-0.0044773514382541,0.038630302995443],[-0.043981209397316,0.070553995668888,-0.034791063517332]],[[0.051770847290754,-0.073418088257313,0.02897953428328],[-0.098724476993084,0.061694052070379,-0.10842715203762],[0.028751300647855,-0.059353940188885,0.0043427683413029]],[[-0.015432053245604,0.02691600471735,0.019572636112571],[-0.003916721791029,-0.063309453427792,-0.059674344956875],[0.068181306123734,-0.024121025577188,0.0038295625708997]],[[-0.02310873940587,-0.00094232021365315,-0.050587799400091],[-0.0049921511672437,-0.029862115159631,0.1124055236578],[0.0021094793919474,-0.011238551698625,-0.10146900266409]],[[0.011296229436994,-0.063565157353878,0.026736358180642],[0.0047400170005858,0.0021099871955812,-0.026697305962443],[-0.0015997930895537,0.026092555373907,-0.007314688526094]],[[0.023806253448129,0.050105039030313,-0.033139009028673],[0.032941620796919,-0.10128863155842,-0.032096929848194],[-0.014450275339186,0.084577985107899,-0.037567261606455]],[[0.029350576922297,-0.015224548056722,-0.053155064582825],[0.063491076231003,0.04793244227767,-0.11833366006613],[-0.041622865945101,-0.0082687269896269,0.022292092442513]],[[0.0083743585273623,0.0062472401186824,0.040325276553631],[-0.057887829840183,-0.017989683896303,0.024191070348024],[-0.066905677318573,-0.053564868867397,0.0035232182126492]],[[-0.013131878338754,-0.0019646566361189,0.010003834031522],[-0.0032769381068647,0.021570907905698,-0.052496425807476],[-0.061899933964014,-0.016588477417827,-0.024669121950865]],[[0.0042177862487733,-0.061756074428558,0.083032734692097],[0.012160412035882,0.039131842553616,0.01984640583396],[0.0078984210267663,0.076626271009445,-0.051984023302794]],[[-0.0087127918377519,0.026292210444808,-0.038046274334192],[-0.0097205881029367,0.016948783770204,0.029630701988935],[-0.14696155488491,-0.08685926347971,0.032496087253094]],[[-0.024612734094262,0.026503261178732,0.055468816310167],[0.0073669929988682,0.041501127183437,0.054669678211212],[-0.087255850434303,-0.018785707652569,0.029949018731713]],[[0.017191100865602,-0.0035212722141296,-0.03115320764482],[0.030349791049957,-0.041295181959867,-0.053302634507418],[0.021226700395346,0.050955630838871,-0.010679120197892]],[[8.7689455540385e-05,0.043064303696156,0.016344940289855],[0.02236039377749,0.02099403552711,-0.068512186408043],[0.030994473025203,0.027467213571072,0.054665751755238]],[[-0.039559744298458,0.013049176894128,0.01542260684073],[-0.09748525172472,-0.035357914865017,-0.0023328640963882],[0.0074760215356946,-0.049034144729376,-0.0061292415484786]],[[-0.023572076112032,-0.042958535254002,-0.021877350285649],[-0.068872340023518,-0.038776960223913,-0.017821414396167],[-0.062297970056534,-0.053441226482391,-0.03648779541254]],[[-0.038222003728151,0.010209806263447,-0.058801379054785],[-0.074655964970589,0.060362532734871,0.067489720880985],[0.010963675566018,0.082703068852425,-0.00037300639087334]],[[0.037731029093266,0.055276319384575,0.0065891570411623],[0.010069565847516,0.011138223111629,-0.040734745562077],[-0.074706919491291,0.024883424863219,-0.10610833764076]],[[-0.030723260715604,-0.0034330196212977,0.034384377300739],[-0.0084466757252812,-0.015202559530735,-0.00050387193914503],[-0.061112210154533,-0.064332418143749,0.038941260427237]],[[0.005728189367801,0.039576467126608,-0.071448378264904],[-0.019765445962548,0.040560714900494,0.052522476762533],[0.028266487643123,-0.017486536875367,-0.1480420678854]],[[-0.0016872697742656,0.024595677852631,0.063423231244087],[-0.0349375680089,-0.041337102651596,0.049333229660988],[-0.14706367254257,-0.010428203269839,0.039692766964436]],[[-0.0091868126764894,0.059369571506977,-0.063941687345505],[0.049964897334576,0.031130837276578,-0.024040151387453],[0.017544146627188,-0.00636339886114,-0.034549091011286]],[[-0.040618926286697,-0.035985212773085,-0.016928903758526],[-0.03708590567112,-0.025889251381159,-0.043939620256424],[0.10157035291195,-0.098139263689518,0.046706754714251]],[[-0.0054861758835614,-0.023899488151073,0.0030814786441624],[0.0032554396893829,0.01554677542299,0.025308893993497],[-0.035444833338261,-0.0034730825573206,-0.066347531974316]],[[0.0032078283838928,-0.063642233610153,0.0043608392588794],[-0.022815708070993,-0.020169271156192,-0.012165809981525],[-0.045899786055088,-0.031476855278015,-0.043883230537176]],[[0.0030234998557717,0.035940699279308,0.0081830928102136],[0.0041265147738159,-0.031422067433596,-0.025507636368275],[-0.030950164422393,-0.079370364546776,0.018127664923668]],[[0.0016683428548276,-0.0037214262410998,-0.041124887764454],[0.0024536577984691,-0.003060860093683,0.031266909092665],[0.0075936489738524,0.010463569313288,0.050803121179342]],[[0.049291346222162,-0.008875117637217,0.044908430427313],[-0.0076554748229682,0.02634016238153,-0.019499158486724],[0.062621727585793,0.017901968210936,0.1338714659214]],[[0.064509771764278,-0.056947752833366,0.021809160709381],[0.023424252867699,0.022884666919708,0.021283276379108],[0.056442387402058,0.048765026032925,-0.0088496329262853]],[[-0.017392126843333,0.030175006017089,0.039376255124807],[0.0034245732240379,-0.028450779616833,-0.010199588723481],[0.016396576538682,0.0048761134967208,-0.024297408759594]],[[0.085775226354599,-0.00987967569381,0.031323757022619],[-0.0038145037833601,-0.012740225531161,0.011772155761719],[-0.0097169922664762,-0.00086007994832471,0.027737710624933]],[[0.062683939933777,-0.018825437873602,-0.050368569791317],[0.0034640566445887,0.023874629288912,0.034390348941088],[-0.057891257107258,-0.049314200878143,0.05718782544136]],[[0.011124219745398,-0.053912300616503,-0.0017787454416975],[0.096969909965992,-0.032971605658531,0.0031964578665793],[-0.037102650851011,0.027986519038677,-0.037346206605434]],[[-0.0026292279362679,0.01967129483819,-0.013660071417689],[-0.071417018771172,0.01167415920645,-0.0063711074180901],[-0.032479397952557,-0.019170762971044,-0.020589226856828]]],[[[0.013975863344967,-0.023691704496741,0.028212802484632],[0.0029018314089626,-0.029081938788295,0.016184518113732],[-0.12520648539066,-0.17187048494816,-0.047018356621265]],[[-0.0048247999511659,-0.067447796463966,-0.081119626760483],[-0.030366543680429,0.073797419667244,-0.039568338543177],[0.016393318772316,-0.045008704066277,-0.0069757401943207]],[[0.0038192356005311,-0.07542023062706,-0.012255682609975],[-0.037458296865225,-0.016580140218139,-0.0060120206326246],[-0.038369257003069,-0.037581313401461,0.011426587589085]],[[0.028774736449122,-0.053643818944693,-0.0031418791040778],[0.051283422857523,0.093430206179619,-0.031689360737801],[0.019483687356114,0.038454420864582,-0.043960697948933]],[[0.082495681941509,0.045489810407162,-0.026202062144876],[-0.075750902295113,-0.040549024939537,-0.089129507541656],[0.090590596199036,-0.010413982905447,-0.15211115777493]],[[-0.06577742099762,-0.01405515987426,-0.10579183697701],[0.06520801782608,0.015008712187409,-0.029007822275162],[-0.1104995533824,-0.050567340105772,0.0094467867165804]],[[-0.0062001128681004,-0.017661845311522,-0.047326911240816],[-0.025462558493018,0.0090951146557927,0.0023974268697202],[0.038246106356382,-0.0082545010372996,-0.027532801032066]],[[-0.097227193415165,-0.06080175563693,0.00990582536906],[-0.0078620947897434,-0.0053229271434247,0.1110577210784],[0.025567645207047,0.1335214972496,0.00016841695469338]],[[-0.070479676127434,0.058051239699125,-0.081543281674385],[-0.083508655428886,-0.027153639122844,0.073885314166546],[-0.063422568142414,-0.10623637586832,0.17451912164688]],[[0.097894318401814,0.022474313154817,-0.051492813974619],[0.019384859129786,-0.012141773477197,-0.028665725141764],[-0.010316757485271,-0.032795690000057,-0.023756716400385]],[[0.032892178744078,0.00015399960102513,-0.079041361808777],[-0.079580157995224,0.0029513114131987,0.046037849038839],[-0.086016453802586,-0.080562017858028,0.0054612294770777]],[[-0.012823462486267,-0.03936417773366,-0.042870696634054],[0.075470946729183,0.057696387171745,0.02240576595068],[0.0099155846983194,-0.012604296207428,-0.039166141301394]],[[-0.01293864287436,0.016206249594688,-0.018439246341586],[-0.041611611843109,0.01694312505424,0.003517504548654],[0.011928334832191,-0.06056746467948,0.07205817848444]],[[0.044269911944866,0.0090076243504882,0.027197919785976],[0.021588617935777,0.036233030259609,0.064847156405449],[-0.012666993774474,-0.052915744483471,-0.043021481484175]],[[-0.071086637675762,-0.0077218627557158,0.0041459533385932],[-0.051793977618217,-0.0064550093375146,-0.076401330530643],[-0.00031664065318182,0.076903611421585,-0.016787458211184]],[[0.034483883529902,-0.14585128426552,-0.08898551017046],[0.075316205620766,-0.064185425639153,-0.0482381246984],[-0.045099709182978,0.057683434337378,0.0096112070605159]],[[0.011186140589416,-0.012428152374923,-0.026779463514686],[0.026416294276714,-0.01569046638906,0.078318819403648],[0.020162884145975,0.094703607261181,0.016360096633434]],[[-0.046685438603163,-0.0076256156899035,0.01873417571187],[-0.028810614719987,0.038569431751966,0.024377567693591],[0.085865341126919,-0.012051443569362,0.063013076782227]],[[-0.001100713154301,0.068478904664516,-0.024624807760119],[-0.02879037335515,-0.01536501199007,0.012010175734758],[-0.043958559632301,0.020171454176307,-0.039344374090433]],[[0.040105782449245,-0.0099138608202338,-0.037494722753763],[-0.024701673537493,-0.035456646233797,-0.0031865597702563],[0.002966434461996,0.070751391351223,0.0077854632399976]],[[-0.019083695486188,0.033496491611004,-0.0240563377738],[-0.0019916805904359,-0.027486251667142,0.0065204813145101],[-0.0072021195665002,0.026689624413848,-0.080046027898788]],[[-0.11714235693216,-0.1015664935112,-0.096104644238949],[-0.073439121246338,-0.027995212003589,0.10406155884266],[-0.024175349622965,0.067342713475227,0.027944404631853]],[[0.034330449998379,-0.034801293164492,-0.096911244094372],[-0.010347497649491,-0.084190972149372,0.006812640465796],[0.11066520214081,0.052553206682205,-0.053593374788761]],[[0.012953205034137,-0.039518263190985,0.14600981771946],[0.029394337907434,-0.084004372358322,0.035365242511034],[-0.063642047345638,0.080766126513481,0.087587684392929]],[[0.0044327895157039,-0.02127131447196,-0.06477528065443],[0.014413258060813,-0.071721561253071,0.034121345728636],[-0.073544405400753,-0.026142865419388,0.20996735990047]],[[0.059206604957581,-0.011654039844871,0.045515421777964],[-0.063366554677486,-0.0056188907474279,0.022737585008144],[-0.0013643084093928,-0.056881282478571,0.0083446903154254]],[[-0.034979790449142,-0.01393355242908,-0.01911449059844],[-0.00068242894485593,0.10446075350046,-0.070119701325893],[0.023100983351469,0.030377116054296,0.067239411175251]],[[0.017035396769643,-0.028981145471334,0.094871893525124],[-0.0065215779468417,-0.013133282773197,0.019971165806055],[-0.10136310756207,0.041348956525326,-0.090361833572388]],[[0.098843470215797,0.083139792084694,-0.06922522932291],[0.0059685427695513,0.067475534975529,0.05785559117794],[0.033956211060286,0.074219815433025,-0.025034610182047]],[[-0.053862053900957,-0.040330316871405,0.019736493006349],[-0.02105575799942,0.12895107269287,0.023380251601338],[-0.0014052105834708,0.04612148180604,0.004226200748235]],[[0.066221885383129,-0.050471622496843,-0.13047325611115],[-0.025779668241739,0.04839001968503,0.002752888482064],[0.026956493034959,-0.072178371250629,-0.01692295819521]],[[0.049149081110954,0.019059771671891,-0.0012727311113849],[-0.02076106518507,0.017956769093871,0.024582728743553],[0.11972390115261,-0.013487854972482,-0.05328468978405]],[[0.020608481019735,-0.060819208621979,-0.020823515951633],[0.024733165279031,-0.07494593411684,-0.016600057482719],[-0.024000149220228,-0.0057697133161128,0.046118892729282]],[[0.025805464014411,0.078253477811813,0.090682096779346],[0.020908419042826,-0.030958553776145,0.10902344435453],[-0.069542370736599,-0.084801055490971,0.067530512809753]],[[-0.058848541229963,0.012432732619345,-0.01929141022265],[-0.03443481400609,-0.066641084849834,-0.036548662930727],[0.021429965272546,-0.036705911159515,-0.072432443499565]],[[0.0022833561524749,-0.085403084754944,-0.025420926511288],[0.0008798559429124,-0.0038164632860571,-0.016262734308839],[-0.015383741818368,-0.022529339417815,-0.069390974938869]],[[-0.057701367884874,0.030558902770281,-0.014218563213944],[-0.0079917097464204,0.038027908653021,0.070716604590416],[-0.059039372950792,0.046450726687908,-0.075344868004322]],[[0.019818207249045,-0.05645565316081,-0.040752936154604],[0.0061499495059252,-0.037157729268074,-0.13080385327339],[0.053486071527004,0.084005318582058,0.064316168427467]],[[0.051499467343092,0.082115307450294,0.054522879421711],[-0.0079309530556202,-0.054168179631233,-0.061251290142536],[-0.0029900178778917,-0.0266670640558,-0.050622470676899]],[[0.014495604671538,0.079547554254532,-0.015444070100784],[0.01748132519424,-0.041258953511715,-0.09751470386982],[-0.099271699786186,0.063536331057549,-0.016831241548061]],[[0.031858403235674,-0.025971010327339,0.024056661874056],[-0.05304242298007,-0.049247525632381,-0.055168934166431],[-0.037792887538671,0.0013089410495013,-0.0020989114418626]],[[-0.11887058615685,0.066785983741283,0.029584344476461],[0.012334270402789,0.049693237990141,0.0025604187976569],[0.037946563214064,-0.060944277793169,-0.056706108152866]],[[0.046479631215334,0.02197509072721,0.10638994723558],[0.0064296508207917,-0.045551553368568,0.032894685864449],[-0.15359002351761,-0.13491827249527,0.0030405146535486]],[[0.11969072371721,-0.015246193856001,-0.020653571933508],[-0.050766032189131,0.042380344122648,0.042960487306118],[-0.075665988028049,-0.046248767524958,-0.021672606468201]],[[0.010407184250653,-0.13353899121284,-0.080870442092419],[0.04412505403161,-0.077466905117035,-0.0025230082683265],[0.0020162912551314,-0.032420512288809,0.038603764027357]],[[0.011378142051399,0.0021518191788346,-0.088419169187546],[-0.11205743253231,-0.063494175672531,0.032708186656237],[-0.011240820400417,-0.066758625209332,0.12938107550144]],[[-0.036757670342922,-0.1121030151844,0.042973976582289],[0.043788075447083,-0.0090884594246745,-0.053253948688507],[0.084273234009743,-0.00022070865088608,-0.022428926080465]],[[0.049958243966103,-0.10112926363945,-0.022362934425473],[-0.048479113727808,-0.015472900122404,0.081130355596542],[0.028533302247524,0.14327445626259,-0.021408911794424]],[[0.018262317404151,0.0095531716942787,-0.016453390941024],[-0.07342840731144,-0.010970869101584,-0.078364588320255],[0.08576138317585,0.067217081785202,0.022783288732171]],[[0.028591675683856,-0.02514910325408,-0.10336139053106],[0.040788855403662,-0.021419955417514,0.014669832773507],[-0.016499564051628,-0.092102363705635,0.057658478617668]],[[-0.13166618347168,0.042022705078125,0.021330850198865],[0.10242285579443,0.01932012103498,0.020989058539271],[0.016745453700423,-0.082542479038239,-0.014502133242786]],[[-0.0027820693794638,0.10050761699677,0.063794523477554],[0.0076101603917778,0.01356447301805,-0.0074767204932868],[0.0094184279441833,0.12198486179113,0.019572019577026]],[[0.006110989023,0.074686802923679,0.068557284772396],[0.0026026745326817,-0.073921583592892,-0.04206869378686],[0.014812992885709,0.0049035446718335,0.053873088210821]],[[0.02035216614604,0.01970799267292,0.0066509726457298],[-0.010939474217594,0.00065062171779573,0.049605671316385],[0.10841060429811,-0.05285407975316,0.051937766373158]],[[0.00176571670454,0.006833890452981,-0.057419285178185],[0.0033350982703269,0.053308885544538,0.043800830841064],[-0.024261936545372,-0.076271161437035,-0.036021318286657]],[[-0.058806736022234,-0.0095827868208289,-0.012589287012815],[-0.0031685221474618,0.012214857153594,0.029246980324388],[0.064792446792126,0.016759427264333,0.027000075206161]],[[0.043641902506351,0.05388929694891,-0.044511254876852],[-0.045140735805035,-0.056467268615961,0.025888260453939],[-0.13740994036198,-0.0086422208696604,0.002827427117154]],[[0.041294168680906,-0.096170648932457,-0.021302185952663],[0.030069956555963,-0.058076959103346,-0.053812984377146],[-0.02833579480648,0.085095718502998,0.015377199277282]],[[0.025365587323904,0.095212332904339,0.10245419293642],[-0.063797608017921,0.03294937685132,-0.097904533147812],[0.0020023104734719,0.05447893217206,0.059626545757055]],[[-0.0082573518157005,-0.015009954571724,0.021745961159468],[0.055621810257435,0.036282081156969,0.0073777586221695],[-0.042247608304024,-0.043059043586254,-0.014066131785512]],[[0.021356161683798,-0.037856839597225,0.025217575952411],[-0.083805531263351,-0.0015569622628391,-0.02833023108542],[-0.059662818908691,-9.6189047326334e-05,0.022881928831339]],[[-0.026539361104369,0.053789723664522,-0.0074153635650873],[-0.033336222171783,0.052808832377195,0.045449152588844],[-0.06350564956665,0.0053177876397967,0.029985886067152]],[[-0.09411283582449,-0.022310171276331,0.012231907807291],[0.064816273748875,0.028295816853642,0.012392887845635],[0.019801761955023,0.047129943966866,-0.060491088777781]],[[-0.056211419403553,-0.040541429072618,0.00158230017405],[0.013983675278723,-0.0055690417066216,-0.060649078339338],[-0.103162586689,-0.012637917883694,-0.0076095391996205]]],[[[0.012616311199963,-0.0023759622126818,0.067490346729755],[-0.016753688454628,-0.032996889203787,0.032057758420706],[-0.034221410751343,0.031866572797298,-0.015725903213024]],[[0.026380119845271,0.024425007402897,0.057244300842285],[-0.038188349455595,0.02848513610661,0.023755803704262],[0.0085133695974946,0.03972602635622,-0.099729381501675]],[[-0.066610425710678,-0.032594554126263,-0.043442234396935],[-0.073272213339806,0.054637756198645,0.052618313580751],[-0.022110920399427,-0.028985453769565,0.049115017056465]],[[-0.034858621656895,0.019961630925536,0.048520360141993],[-0.031422179192305,-0.087970703840256,0.0098388493061066],[0.024038361385465,-0.020664572715759,0.028101351112127]],[[0.017552262172103,-0.025459943339229,-0.034884184598923],[0.013153463602066,0.0055030672810972,-0.017480617389083],[0.0308967679739,-0.015185608528554,0.13774006068707]],[[-0.025472026318312,-0.053085684776306,0.029338546097279],[0.035719607025385,0.035703435540199,-0.027752876281738],[0.056475389748812,0.056720979511738,0.03173391520977]],[[-0.044088520109653,0.00063026580028236,-0.079544678330421],[-0.022583017125726,-0.11732921749353,0.022904319688678],[-0.023617012426257,0.02488112077117,0.014948591589928]],[[0.074963048100471,-0.03158150613308,-0.027472021058202],[-0.00022927281679586,-0.021445212885737,0.057892140001059],[0.05558180809021,0.041347220540047,0.044137947261333]],[[0.027920348569751,-0.021236807107925,-0.046220369637012],[0.026531465351582,0.11860779672861,0.033019691705704],[-0.039370521903038,0.014096512459219,0.0077397506684065]],[[-0.045694343745708,-0.11756180226803,-0.16284672915936],[0.079782642424107,-0.022294169291854,0.043467551469803],[0.077228859066963,0.006293554790318,0.041677746921778]],[[0.032271753996611,0.018267996609211,0.063815459609032],[-0.023171059787273,0.087185710668564,-0.019145000725985],[-0.070473708212376,-0.020066443830729,-0.025994874536991]],[[-0.075625725090504,0.0070712622255087,-0.038691118359566],[0.023687150329351,-0.0024588815867901,-0.016551379114389],[0.11155975610018,-0.07881236076355,-0.079155586659908]],[[0.011583535932004,-0.030744748190045,0.077080734074116],[-0.058270435780287,0.0078969411551952,-0.075683496892452],[0.029975285753608,0.001355349086225,0.028904683887959]],[[0.031768877059221,-0.0043363012373447,0.010030439123511],[0.023933410644531,0.0091649824753404,-0.044708393514156],[0.040568374097347,-0.0097506800666451,-0.093966968357563]],[[-0.063951186835766,-0.020291101187468,0.089709028601646],[-0.049009010195732,0.031560566276312,0.040504973381758],[-0.083827637135983,0.047129124403,0.061342865228653]],[[0.046033833175898,0.016667218878865,-0.038011316210032],[-0.0034491778351367,-0.0073227151297033,0.1343881636858],[0.018014511093497,-0.060068152844906,-0.070786193013191]],[[-0.0038699095603079,0.019096395000815,0.0094971675425768],[0.039825856685638,-0.0097067728638649,-0.02597551420331],[0.045790158212185,0.054039653390646,-0.015873417258263]],[[-0.010060044005513,-0.030490450561047,0.072870582342148],[-0.00034334964584559,-0.024227490648627,-0.031777124851942],[0.052501656115055,-0.00086405390175059,-0.03194659948349]],[[-0.0019517074106261,-0.072015650570393,-0.0025288939941674],[-0.0024849341716617,0.055244132876396,0.044710926711559],[-0.026390079408884,-0.057889100164175,0.007121714297682]],[[0.011726622469723,-0.016172459349036,-0.0354372151196],[0.025875909253955,0.0055285054259002,-0.021703600883484],[-0.0095827151089907,0.014420227147639,0.010361529886723]],[[0.018007213249803,-0.0549724586308,-0.099719360470772],[-0.0038222575094551,0.02362460270524,-0.058055497705936],[0.011937810108066,0.087897188961506,0.048871796578169]],[[-0.0072978511452675,0.060727171599865,-0.12272759526968],[-0.018899578601122,-0.022977393120527,0.028120622038841],[-0.058215122669935,0.023849645629525,-0.05857989937067]],[[0.04271299764514,-0.026390191167593,-0.010529987514019],[-0.0025347946211696,-0.08704786002636,-0.027180379256606],[0.023868648335338,0.010154305025935,-0.0019251025514677]],[[0.12697169184685,0.14711447060108,0.10011138021946],[0.041899062693119,0.13262660801411,0.016507999971509],[-0.026122780516744,-0.00057904655113816,-0.13354590535164]],[[0.070919811725616,-0.010128668509424,0.062691695988178],[0.0045629921369255,0.010037782602012,0.01200152374804],[0.061293475329876,0.047286711633205,-0.056687150150537]],[[0.030948555096984,-0.040269408375025,-0.0042344122193754],[0.0048579755239189,-0.016929339617491,0.023196926340461],[0.016728226095438,0.059030909091234,0.030947661027312]],[[0.037427417933941,0.0024323754478246,0.11759639531374],[0.053796719759703,0.048481658101082,-0.008487893268466],[0.022045316174626,-0.067470259964466,-0.045041561126709]],[[-0.10423880815506,-0.0030761293601245,-0.041781526058912],[-0.067001231014729,-0.032058402895927,0.034162286669016],[0.013977660797536,0.017870662733912,-0.057976465672255]],[[-0.054913274943829,0.00095091992989182,0.024760128930211],[0.020211700350046,0.034916818141937,0.032416611909866],[0.067890666425228,-0.021246528252959,0.019596476107836]],[[-0.066780276596546,-0.09739238768816,-0.026452679187059],[-0.066356092691422,-0.03573627397418,0.11153090000153],[0.03525760024786,-0.017634134739637,-0.0038686690386385]],[[0.056752536445856,0.060039006173611,-0.020663233473897],[-0.014339699409902,0.0054446393623948,0.023377768695354],[0.010314780287445,-0.0071252156049013,0.022843578830361]],[[0.054051581770182,-0.1321577578783,0.022248866036534],[0.020467266440392,-0.017820412293077,0.031685307621956],[0.048946663737297,0.03976421430707,0.0061512351967394]],[[-0.026730133220553,0.019087113440037,-0.01828171685338],[0.03612557798624,0.0038816821761429,-0.0065620769746602],[-0.0082321567460895,0.018687475472689,0.037671964615583]],[[0.053150493651628,0.07884668558836,0.028704468160868],[0.0061718951910734,0.095713317394257,-0.060241870582104],[0.10689202696085,-0.020245995372534,0.003510158509016]],[[-0.01991294324398,-0.038041528314352,0.016372544690967],[0.11780131608248,0.017047937959433,0.05985376983881],[0.12179976701736,0.011934268288314,0.095359288156033]],[[-0.047527063637972,-0.036464601755142,-0.052425358444452],[-0.0069663496688008,-0.03528456017375,-0.068605467677116],[-0.063841357827187,-0.041017547249794,-0.011846190318465]],[[0.0023638806305826,-0.016280440613627,-0.015776623040438],[0.022551720961928,-0.0041450839489698,0.033031452447176],[-0.08588133007288,0.02586173824966,-0.038906771689653]],[[-0.024564223363996,-0.076666265726089,-0.068163372576237],[-0.069619111716747,-0.079059720039368,-0.010328778997064],[0.17071264982224,0.02123193629086,-0.012393648736179]],[[0.12417671829462,0.099234260618687,-0.01897251047194],[0.003405116032809,0.047844599932432,-0.12397939711809],[0.05544538795948,0.042615070939064,-0.13638944923878]],[[-0.043462637811899,0.096686437726021,0.019872365519404],[0.040308333933353,-0.00022861789329909,0.074149064719677],[-0.027910113334656,-0.013894971460104,0.037609405815601]],[[0.018581986427307,0.036528743803501,0.04332422092557],[0.0870221555233,0.047229155898094,0.032843038439751],[-0.026334905996919,-0.0050595714710653,-0.053724955767393]],[[-0.036582667380571,0.01875426620245,0.047777023166418],[-0.01744481548667,0.073270693421364,0.10338984429836],[0.01792080886662,0.075667254626751,-0.028508579358459]],[[0.012612945400178,-0.051690682768822,-0.066683128476143],[-0.04142128303647,-0.024139791727066,-0.049848549067974],[-0.027366761118174,0.0029302567709237,0.03782594203949]],[[0.1027978733182,-0.0033056028187275,0.03991649672389],[0.037481889128685,-0.029812844470143,0.027418768033385],[0.018141634762287,0.070489697158337,0.042415920644999]],[[-0.12038563936949,-0.028450964018703,0.043245494365692],[0.009084228426218,-0.035828094929457,0.050562757998705],[0.079879060387611,-0.0097734173759818,0.012921495363116]],[[-0.12872268259525,0.050171237438917,0.0079511869698763],[-0.040302261710167,0.034537706524134,0.063772112131119],[-0.019334599375725,-0.005490330979228,-0.039174929261208]],[[0.0038245534524322,-0.0012673159362748,0.025445334613323],[0.017012841999531,0.046445731073618,-0.0065011847764254],[-0.011755766347051,0.0033469400368631,-0.034431178122759]],[[0.073333263397217,-0.061286382377148,-0.064080342650414],[0.092324644327164,0.059154994785786,0.0095709189772606],[0.045215405523777,0.055846318602562,-0.032769441604614]],[[-0.047079991549253,0.0052601220086217,-0.069359987974167],[0.017596036195755,0.025294223800302,-0.031492955982685],[-0.012399736791849,0.034436289221048,0.0074597341008484]],[[-0.0084919352084398,-0.065440639853477,-0.063642717897892],[0.03618261963129,-0.049839459359646,0.03873635083437],[0.026525685563684,-0.076455071568489,0.042549014091492]],[[-0.061263483017683,0.0021141525357962,0.019192419946194],[0.021007243543863,-0.022456355392933,-0.026305496692657],[-0.060939207673073,-0.043225947767496,-0.034481175243855]],[[0.027701923623681,-0.064464591443539,0.082965426146984],[0.087260358035564,0.01202127058059,0.020071387290955],[-0.053551346063614,0.012184824794531,0.0088761867955327]],[[-0.0038953451439738,-0.14809215068817,-0.0079485978931189],[0.061567481607199,0.029426509514451,-0.0054093603976071],[-0.0046063014306128,-0.00021528224169742,-0.0081247948110104]],[[0.023363370448351,0.073335908353329,-0.0077485586516559],[-0.12381625920534,-0.040478944778442,-0.011044479906559],[-0.086280465126038,-0.063677445054054,0.013900474645197]],[[-0.024372966960073,-0.040306769311428,0.0062202545814216],[-0.040785919874907,-0.090630799531937,-0.012657811865211],[-0.073297701776028,0.019342647865415,0.062602259218693]],[[0.046787559986115,-0.012333771213889,-0.086159005761147],[0.022860456258059,-0.0092653157189488,0.020295048132539],[-0.016032285988331,0.02698559500277,-0.021366562694311]],[[0.021065179258585,0.05162638053298,0.043279070407152],[-0.068687804043293,-0.024342238903046,-0.025705987587571],[-0.069880813360214,-0.053948417305946,-0.052311655133963]],[[-0.028733296319842,-0.051585007458925,0.01270798034966],[-0.044156156480312,-0.026943672448397,0.0057382108643651],[-0.042025599628687,-0.029473956674337,-0.077034756541252]],[[0.11822918057442,-0.073330067098141,0.086420141160488],[0.052884805947542,0.10112535208464,0.035906419157982],[0.088999360799789,0.025439333170652,-0.0014132125070319]],[[-0.0097226873040199,-0.0093908505514264,0.028850002214313],[-0.099604189395905,0.0084771485999227,-0.019719045609236],[0.070711493492126,0.036750853061676,-0.011799035593867]],[[-0.033110119402409,0.021372303366661,0.010082714259624],[0.05476987361908,0.0022748212795705,-0.017035637050867],[-0.020361309871078,0.096528887748718,0.010060336440802]],[[0.028941549360752,0.019364450126886,0.018284412100911],[-0.003278388408944,0.077471889555454,0.021603399887681],[-0.10356009751558,-0.064997062087059,-0.071321777999401]],[[-0.012313304468989,0.044644579291344,-0.016786098480225],[-0.052572183310986,-0.10419074445963,0.025309901684523],[-0.003823748556897,-0.017146725207567,-0.038553431630135]],[[0.036135785281658,-0.02628649957478,-0.074726395308971],[0.056920185685158,-0.010641411878169,-0.12763711810112],[0.0084685022011399,0.064891189336777,-0.0088217481970787]]],[[[-0.001152677112259,-0.11519787460566,-0.031729385256767],[-0.062178567051888,-0.0073645217344165,-0.13625906407833],[0.0490727648139,0.0036652146372944,0.092207036912441]],[[0.020244464278221,-0.119757771492,0.020665004849434],[-0.03764546662569,-0.025958143174648,0.0078765619546175],[0.0025189283769578,0.023881232365966,-0.0024978150613606]],[[-0.016597645357251,-0.082714661955833,-0.039531972259283],[-0.092430464923382,-0.043957520276308,-0.048087663948536],[-0.025068577378988,-0.069634176790714,-0.0010501617798582]],[[-0.01919742487371,-0.05526327341795,-0.10505237430334],[-0.044730871915817,0.020071195438504,0.0022246059961617],[-0.063275143504143,-0.048720195889473,0.032750006765127]],[[0.032446175813675,0.023150283843279,0.0095055596902966],[0.029055509716272,-0.090137474238873,-0.089696511626244],[-0.0071917581371963,0.06588226556778,-0.025572333484888]],[[0.037760876119137,-0.012010779231787,0.030054410919547],[-0.11245778203011,-0.13417133688927,0.13114196062088],[-0.073299378156662,-0.11493441462517,0.0083887558430433]],[[-0.058300103992224,-0.048764154314995,-0.03964851424098],[-0.14384573698044,-0.056977309286594,-0.044858735054731],[-0.11842420697212,-0.067261978983879,0.024659676477313]],[[-0.0047699916176498,0.025183064863086,0.014702340587974],[-0.024274002760649,-0.047082312405109,0.069830395281315],[0.02655116096139,0.13296085596085,-0.0052504702471197]],[[-0.036376021802425,-0.088741548359394,-0.060606751590967],[-0.046335641294718,-0.0059852348640561,-0.0093911122530699],[0.024645512923598,-0.0091355806216598,-0.058402683585882]],[[-0.029028590768576,-0.035339407622814,0.053001154214144],[-0.0025508671533316,-0.0062544788233936,-0.040687099099159],[-0.011182026937604,-0.054900445044041,-0.0026259501464665]],[[-0.06980299949646,-0.021617667749524,-0.20141811668873],[0.085639037191868,0.024468071758747,-0.077955223619938],[-0.12547758221626,-0.0055004879832268,0.11361780017614]],[[-0.10400551557541,-0.081668131053448,0.039842449128628],[0.0085343830287457,-0.014896639622748,-0.01407428085804],[-0.043409578502178,-0.023067804053426,0.038661528378725]],[[0.021340299397707,-0.0034019183367491,0.0116395810619],[-0.043132442981005,-0.067338056862354,-0.011633822694421],[-0.0057731927372515,0.034799076616764,0.035910230129957]],[[0.066185548901558,0.046567134559155,0.06160194426775],[-0.07209724932909,0.016259036958218,-0.0092334039509296],[-0.034212369471788,-0.039623409509659,-0.074875213205814]],[[-0.14575469493866,-0.022381221875548,-0.075834162533283],[-0.045553635805845,-0.033287335187197,-0.034377358853817],[-0.0033491034992039,-0.012618719600141,0.045010976493359]],[[-0.081706807017326,0.078232139348984,0.017029639333487],[0.035002127289772,-0.02951879426837,-0.075387962162495],[0.0057707140222192,-0.025488320738077,0.010730030015111]],[[-0.073503315448761,-0.068128608167171,0.005563803948462],[-0.0091903042048216,-0.049712423235178,-0.057429101318121],[-0.023450000211596,0.031663060188293,0.096192546188831]],[[-0.17354297637939,0.078572481870651,0.075765676796436],[0.018749538809061,-0.0014100401895121,-0.19508108496666],[0.093373365700245,0.0038103330880404,0.12339317053556]],[[-0.015050915069878,0.077771857380867,0.03066186979413],[0.054237566888332,0.039684381335974,0.0054787546396255],[-0.052735708653927,0.030461641028523,0.00063139566918835]],[[-0.0097835389897227,0.021607803180814,-0.040398985147476],[3.101284528384e-05,-0.035242438316345,-0.023962419480085],[0.017489703372121,0.0051449649035931,0.052450641989708]],[[-0.0017735329456627,0.0018486726330593,0.012383794412017],[-0.005088530946523,-0.099923677742481,0.04603523388505],[-0.036724008619785,-0.050822615623474,-0.016556199640036]],[[0.032933302223682,-0.04531954228878,-0.095762051641941],[-0.059496525675058,0.063816703855991,0.0051170205697417],[0.016802422702312,-0.064283721148968,0.017189310863614]],[[-0.031320821493864,-0.072421193122864,0.098253682255745],[-0.0198476575315,0.052561301738024,0.052360918372869],[0.0077393460087478,-0.11015074700117,-0.1856537014246]],[[-0.10230485349894,0.0099398726597428,0.10743521898985],[0.049367237836123,0.028656799346209,0.1035610884428],[-0.052009720355272,0.074109554290771,0.068019978702068]],[[0.020895704627037,-0.064815521240234,0.06485328823328],[-0.024112366139889,0.12145829945803,0.087015196681023],[0.024386432021856,-0.039223998785019,0.027005843818188]],[[0.051600504666567,-0.01099756360054,0.044715236872435],[0.058876018971205,-0.057058561593294,-0.024624492973089],[0.06729730963707,0.060490522533655,0.11788377910852]],[[-0.071841910481453,-0.051073022186756,-0.070726864039898],[0.084008604288101,0.067428022623062,-0.046642575412989],[-0.046155594289303,-0.12072100490332,0.072757788002491]],[[-0.01749025285244,-0.10492672771215,-0.029153756797314],[-0.021654004231095,0.068992160260677,-0.11672279238701],[-0.017552923411131,-0.041295852512121,-0.017733436077833]],[[-0.096478328108788,0.026415729895234,-0.013157238252461],[-0.056267008185387,-0.035050615668297,-0.01876388117671],[-0.15469574928284,0.023433225229383,0.030956668779254]],[[0.0320705473423,0.02418065816164,0.13355220854282],[0.014096378348768,0.033966906368732,0.0044762282632291],[-0.14885964989662,-0.043322529643774,0.023812599480152]],[[0.014185685664415,-0.0084665650501847,-0.046697106212378],[0.064892053604126,0.038356903940439,-0.11417636275291],[-0.010784201323986,0.0071756220422685,0.15217615664005]],[[-0.0066723553463817,-0.091883115470409,-0.0091764824464917],[0.058643188327551,0.05784660577774,-0.10337568819523],[0.10541211813688,0.00042882707202807,-0.069180361926556]],[[-0.070803135633469,0.048692986369133,-0.11590459942818],[-0.020099537447095,-0.015542342327535,-0.033659748733044],[-0.112872608006,-0.070870384573936,0.006487769074738]],[[0.012079355306923,0.05229302495718,-0.16095128655434],[-0.12016955763102,0.02753759175539,-0.012694282457232],[0.0071547669358552,-0.075642757117748,-0.14476875960827]],[[-0.032859042286873,-0.04101362451911,-0.093927145004272],[-0.14968925714493,-0.032584756612778,-0.096045933663845],[-0.15263013541698,-0.099167391657829,-0.10029177367687]],[[-0.035922490060329,-0.089529901742935,0.076402746140957],[0.045440066605806,0.038490775972605,-0.0010879844194278],[0.04026760533452,0.03209325298667,-0.018818320706487]],[[-0.025514898821712,-0.0071910489350557,0.20972111821175],[-0.0037305131554604,0.11219485849142,0.13511207699776],[-0.15672093629837,-0.16437588632107,0.066762708127499]],[[-0.021871501579881,-0.12719464302063,-0.03518708050251],[-0.064768716692924,-0.040498003363609,0.027507718652487],[-0.041103452444077,0.0087757743895054,0.016314148902893]],[[-0.017003981396556,-0.063232712447643,0.045049548149109],[0.00096017163014039,0.049335274845362,0.033674322068691],[0.042410507798195,-0.054056525230408,0.012549486011267]],[[0.099493086338043,0.020941076800227,-0.039648488163948],[0.0089085455983877,-0.07165202498436,0.046438779681921],[0.034882813692093,0.082493841648102,-0.008416224271059]],[[-0.10074256360531,-0.10880487412214,-0.032016314566135],[-0.024255553260446,0.031123492866755,-0.085513077676296],[0.017958233132958,-0.037787470966578,-0.098310627043247]],[[-0.0065665128640831,0.038593996316195,0.1212000772357],[-0.14537134766579,0.043634492903948,-0.09656934440136],[0.032558795064688,0.082803681492805,-0.035160798579454]],[[-0.053627345710993,-0.015865825116634,-0.030857693403959],[-0.0031137482728809,-0.0028001074679196,-0.10030190646648],[0.082266770303249,0.058954786509275,0.0064738956280053]],[[-0.065390571951866,-0.086594633758068,-0.034464161843061],[-0.0020155422389507,0.12865859270096,0.054497681558132],[0.084690868854523,0.029147207736969,-0.032848697155714]],[[-0.040038038045168,0.031718302518129,0.14726927876472],[-0.075842432677746,0.049950961023569,0.0024774284102023],[-0.032385054975748,-0.0053124995902181,-0.11510216444731]],[[0.035913337022066,-0.055087823420763,-0.029135139659047],[0.11285801231861,-0.014990752562881,-0.19478279352188],[0.23222073912621,-0.062149062752724,-0.0090109193697572]],[[-0.00040298883686773,0.030220042914152,0.081323400139809],[0.048009660094976,-0.0542290546,-0.073070004582405],[-0.061829891055822,0.071992516517639,0.091524161398411]],[[-0.0092488620430231,-0.053097233176231,-0.080115765333176],[-0.053414572030306,0.010563214309514,0.10831944644451],[-0.091918960213661,-0.01867457292974,0.030432792380452]],[[0.040932018309832,0.15088717639446,-0.014953780919313],[-0.032694295048714,-0.10089681297541,-0.025851704180241],[-0.016262056306005,0.037557303905487,0.084041811525822]],[[-0.072132259607315,0.039724130183458,0.11070144921541],[0.043600954115391,-0.034684497863054,-0.089639075100422],[-0.10381670296192,-0.1044792085886,0.03708266094327]],[[-0.018577439710498,0.12974321842194,-0.15657629072666],[-0.076588004827499,-0.092871643602848,-0.061251558363438],[0.04059050232172,0.067594952881336,-0.032975718379021]],[[-0.12398444116116,0.050740987062454,0.062033034861088],[0.08100563287735,-0.020494630560279,0.046146985143423],[-0.17636595666409,0.058861140161753,0.18744815886021]],[[0.050681009888649,-0.019519805908203,0.0045906030572951],[0.017290079966187,0.089429698884487,-0.030427522957325],[-0.091810956597328,0.0052889781072736,-0.14462062716484]],[[-0.120201818645,0.066996186971664,0.079989694058895],[-0.0068483604118228,-0.0015284792752936,0.0093154469504952],[-0.040120165795088,-0.031213436275721,-0.035720106214285]],[[-0.055131155997515,0.099973909556866,-0.068969368934631],[0.16712640225887,-0.11400688439608,-0.046340115368366],[-0.1789590716362,-0.046111337840557,-0.034928031265736]],[[0.046212822198868,0.043363470584154,-0.14609269797802],[0.0026271096430719,-0.0065139606595039,0.011760929599404],[0.023480018600821,-0.0068037468008697,0.0027023868169636]],[[-0.13938012719154,-0.039883699268103,-0.093002624809742],[-0.11243128031492,0.048264462500811,-0.0066266767680645],[0.015778489410877,-0.10850284993649,0.026553139090538]],[[-0.066117569804192,-0.010350929573178,-0.012441941536963],[0.048367857933044,0.0078773144632578,0.009175181388855],[-0.031208485364914,0.03251564130187,0.021677663549781]],[[-0.04349422827363,0.016157303005457,-0.10657826066017],[0.043474517762661,0.020282637327909,0.021210726350546],[-0.065007276833057,0.059388116002083,0.017858063802123]],[[-0.027963576838374,-0.0091948797926307,0.063310854136944],[0.0080681592226028,0.073160536587238,0.0074586886912584],[-0.035385396331549,-0.043713960796595,-0.026407139375806]],[[0.032567739486694,0.027164114639163,0.035540260374546],[0.050734125077724,-0.079807788133621,-0.093591317534447],[-0.17965427041054,0.0056053688749671,0.10899394005537]],[[0.0035355095751584,0.0022838665172458,0.014779487624764],[-0.028695052489638,-0.092325448989868,0.047748453915119],[0.085574313998222,0.08378691226244,0.025810964405537]],[[-0.030199462547898,-0.06999147683382,-0.051576100289822],[-0.10061363875866,0.014792180620134,0.014089364558458],[0.054217386990786,-0.12769174575806,-0.13468763232231]],[[0.018853640183806,0.072814710438251,0.061844423413277],[0.093855068087578,-0.036603473126888,-0.16168394684792],[-0.080124333500862,-0.0061316657811403,0.18525044620037]]],[[[0.008677669800818,-0.038156315684319,0.016421299427748],[-0.018515560775995,-0.04915202409029,-0.079020597040653],[0.023014083504677,-0.023952960968018,-0.048468090593815]],[[-0.0032876206096262,0.033523079007864,-0.012773899361491],[0.019471321254969,0.038395375013351,-0.11437229067087],[0.010086863301694,-0.039321031421423,0.022905439138412]],[[-0.050478313118219,0.084312774240971,-0.023874977603555],[0.11058466136456,-0.0089655676856637,-0.066250704228878],[0.00061019544955343,-0.0070474157109857,-0.18747043609619]],[[0.068942464888096,0.048455853015184,0.0033894749358296],[0.049286875873804,0.066888272762299,-0.061429239809513],[-0.0075359018519521,-0.01309550087899,-0.097484655678272]],[[0.015749031677842,-0.047023076564074,0.023844970390201],[-0.015110738575459,-0.029752667993307,-0.031091414391994],[-0.090259812772274,-0.067944034934044,-0.029608026146889]],[[0.035196855664253,0.0686976313591,-0.0021290264558047],[0.080217510461807,-0.038507040590048,-0.031874377280474],[-0.059286091476679,-0.10258176922798,-0.061605844646692]],[[-0.0087782545015216,0.038454644382,0.011593800038099],[0.032416913658381,-0.12100031971931,0.056714277714491],[-0.063594929873943,-0.020457269623876,0.012451252900064]],[[0.017514949664474,-0.12890410423279,-0.084530286490917],[-0.058237791061401,0.061221830546856,0.074904575943947],[0.066943123936653,0.027235018089414,-0.008288212120533]],[[0.053667038679123,0.043573647737503,-0.081644043326378],[0.052988111972809,-0.028836959972978,-0.13998295366764],[-0.016530621796846,0.12025548517704,0.04261164739728]],[[-0.1750864982605,0.0082603292539716,0.034752044826746],[-0.019271198660135,-0.10292481631041,0.078185267746449],[0.0015883209416643,-0.065370410680771,-0.057663343846798]],[[0.079072065651417,0.018835516646504,-0.026520846411586],[0.015432785265148,0.014213399030268,0.021698595955968],[0.020952738821507,0.0043741632252932,-0.062988057732582]],[[0.027165163308382,0.059527136385441,-0.0073715238831937],[0.02532072365284,-0.17946225404739,-0.069253630936146],[-0.14711472392082,-0.069575451314449,-0.0066156117245555]],[[-0.014104878529906,0.072353459894657,-0.062243439257145],[0.027203045785427,-0.01474245544523,0.0012122218031436],[-0.1015530526638,-0.014335844665766,-0.03123177215457]],[[-0.092445909976959,0.027921525761485,0.020416857674718],[0.069900192320347,0.055812984704971,0.0041027339175344],[0.050333544611931,-0.020768480375409,0.076282016932964]],[[-0.0014849832514301,-0.002812661929056,-0.069509655237198],[-0.012362922541797,-0.048390086740255,-0.12170816212893],[-0.022349724546075,-0.070233598351479,-0.073597453534603]],[[0.013564692810178,0.065108582377434,0.0054460545070469],[0.050018761307001,0.019608834758401,-0.0027078753337264],[-0.060573015362024,-0.034932721406221,-0.048086833208799]],[[0.014676725491881,-0.083519421517849,-0.059197410941124],[0.040528181940317,-0.044854857027531,0.080657765269279],[0.10999881476164,0.053402181714773,-0.066168278455734]],[[-0.0064291581511497,0.03073768876493,0.0082438755780458],[-0.076601557433605,-0.049984235316515,0.049318701028824],[-0.11805789172649,0.007740437053144,0.043564163148403]],[[-0.031602330505848,-0.052509363740683,-0.096963204443455],[-0.042182445526123,0.08469707518816,0.085727199912071],[0.088428743183613,0.0561265014112,-0.027451956644654]],[[-0.0089230332523584,0.00039597213617526,-0.03444916382432],[-0.017106806859374,-0.0031786621548235,0.013579426333308],[0.042196154594421,0.0062239631079137,0.0096147414296865]],[[-0.0054162694141269,-0.0051908697932959,-0.0067102145403624],[0.0016394463600591,-0.032166033983231,0.07282242923975],[0.020667657256126,0.028205258771777,-0.047682542353868]],[[0.067669689655304,0.012640849687159,-0.055617410689592],[0.077886782586575,0.024626985192299,0.050270542502403],[-0.032619621604681,0.02273834310472,-0.058737251907587]],[[0.02872683480382,-0.098344586789608,-0.088687554001808],[-0.015647493302822,-0.047711070626974,-0.1576284468174],[0.0188959967345,-0.024902744218707,0.17893347144127]],[[0.043912749737501,0.098771385848522,0.08361454308033],[-0.064173847436905,0.15198563039303,0.033610921353102],[0.0059445961378515,0.055180262774229,0.035947747528553]],[[-0.018964977934957,-0.0070211058482528,0.061610441654921],[0.083028830587864,0.073056228458881,-0.041995763778687],[0.0077723632566631,-0.042543198913336,0.012071954086423]],[[-0.035277962684631,0.029780998826027,0.041602678596973],[0.007216761354357,0.013418031856418,-0.066805027425289],[0.04106505215168,0.0086952783167362,0.13054722547531]],[[0.0053392141126096,0.055113181471825,-0.075103662908077],[0.03694025427103,-0.10359155386686,-0.047397740185261],[0.096821270883083,0.017723457887769,-0.10042137652636]],[[0.025057891383767,0.051480527967215,-0.022505007684231],[-0.13619309663773,-0.03469068557024,-0.073640622198582],[-0.013025742955506,0.044223319739103,0.064380541443825]],[[-0.013952580280602,0.010455997660756,0.05976140499115],[0.071693010628223,0.050233591347933,-0.11628324538469],[0.011690142564476,-0.054402951151133,0.031115712597966]],[[0.085202403366566,-0.08923527598381,0.01945692487061],[0.023995650932193,0.1264476776123,0.028354909271002],[0.094836540520191,0.052047319710255,0.022621648386121]],[[-0.045915246009827,-0.011579193174839,0.067609436810017],[0.013426114805043,0.020669884979725,0.10726030915976],[-0.054182555526495,-0.10481382906437,-0.040637373924255]],[[-0.0032297149300575,-0.053744908422232,-0.049316462129354],[0.097679205238819,-0.012559560127556,0.031173210591078],[-0.00025188640574925,0.088639572262764,0.066586509346962]],[[0.048481944948435,0.046431116759777,-0.022859433665872],[-0.019721383228898,-0.075111955404282,-0.04917224124074],[-0.02796764858067,-0.0034488555975258,-0.053981352597475]],[[-0.026625210419297,-0.016250383108854,-0.031477615237236],[-0.034816954284906,-0.02040327526629,0.0060279434546828],[0.0025674684438854,-0.020493609830737,0.049878902733326]],[[-0.0034686599392444,0.024773426353931,0.019890757277608],[-0.09723424911499,-0.059566307812929,-0.071371421217918],[-0.10236087441444,0.0057795965112746,0.067218653857708]],[[-0.072747819125652,0.012959690764546,0.018337601795793],[-0.058592770248652,-0.010769290849566,0.00056717661209404],[-0.024751249700785,-0.072511576116085,-0.062597163021564]],[[0.026708913967013,0.028234088793397,-0.03117766417563],[0.019608341157436,-0.066115818917751,0.068593889474869],[-0.1346171349287,-0.19815224409103,0.026027603074908]],[[0.0096738524734974,0.034920562058687,0.050000071525574],[-0.031368151307106,-0.037411063909531,0.025125190615654],[-0.094471484422684,-0.08976449072361,-0.0515395142138]],[[-0.067413754761219,0.046284403651953,-0.011874589137733],[-0.01021063234657,0.01034427434206,-0.017655307427049],[-0.06555750221014,0.051056824624538,0.037260361015797]],[[-0.0046292995102704,-0.048483163118362,-0.0063840709626675],[-0.010502794757485,-0.012305035255849,0.011150039732456],[-0.036165609955788,0.033127974718809,-0.015569210983813]],[[0.012080998159945,-0.042066514492035,-0.099184684455395],[-0.092594183981419,-0.03468281775713,0.0087507553398609],[-0.049379579722881,-0.14578397572041,-0.012278512120247]],[[0.010954142548144,-0.026448315009475,-0.022724572569132],[-0.088903963565826,0.011598406359553,0.039751943200827],[-0.0062596667557955,-0.046837970614433,0.0091208517551422]],[[-0.013515609316528,0.056347500532866,0.050406239926815],[0.10107450932264,-0.054573606699705,0.021606974303722],[0.072367325425148,-0.13335378468037,0.01241738256067]],[[-0.058743458241224,-0.033649783581495,0.014576033689082],[0.065475165843964,-0.0028016807045788,-0.032243177294731],[-0.026429757475853,0.0004400355683174,-0.09502936154604]],[[0.084281913936138,-0.090434744954109,0.020121486857533],[-0.03499611467123,0.014277836307883,0.040099009871483],[0.097626566886902,0.047389540821314,-0.11381299048662]],[[-0.028201499953866,0.025616882368922,-0.00016288491315208],[0.065276451408863,0.04207693785429,-0.076460391283035],[0.14891152083874,-0.0014386726543307,-0.010597697459161]],[[-0.042981613427401,-0.041339978575706,0.086135543882847],[0.077762894332409,-0.010430282913148,0.0051176468841732],[0.010185584425926,0.017620729282498,-0.067899085581303]],[[-0.10412026196718,0.081073589622974,-0.032161828130484],[-0.016797881573439,-0.014114107005298,-0.12535348534584],[-0.056101933121681,0.052001867443323,0.11967470496893]],[[-0.076067671179771,-0.018379928544164,0.025763474404812],[-0.040898859500885,0.065674655139446,0.081508070230484],[0.085869580507278,-0.05494000390172,-0.06852675974369]],[[0.025686914101243,0.0011347810504958,0.017314217984676],[0.0052889669314027,-0.15166226029396,-0.10534425079823],[0.10330383479595,0.044172517955303,0.047110833227634]],[[-0.020258814096451,-0.00015786070434842,-0.0026091719046235],[-0.035241309553385,-0.071230120956898,0.067241959273815],[0.11987628042698,-0.0037730070762336,-0.0035073352046311]],[[-0.061306197196245,0.14498430490494,0.06238679587841],[0.094532504677773,0.022655433043838,0.11307837069035],[0.0019735780078918,0.083919733762741,-0.038091793656349]],[[-0.069926485419273,0.086674474179745,0.00092527596279979],[0.030384792014956,0.020850453525782,0.017810750752687],[-0.11363123357296,0.013126009143889,0.003950557205826]],[[-0.05574344098568,-0.084182232618332,0.0016522030346096],[0.081240147352219,-0.021226497367024,0.053600158542395],[-0.072068773210049,-0.054160393774509,-0.033691432327032]],[[-0.09636278450489,0.045204874128103,0.021232588216662],[-0.069547161459923,0.069209896028042,0.11031151562929],[0.042069893330336,0.06275087594986,-0.076184675097466]],[[-0.018402118235826,0.019873954355717,-0.0093910759314895],[-0.096376940608025,0.020881026983261,0.0049409791827202],[-0.1101283505559,-0.065454125404358,-0.013509700074792]],[[-0.088736273348331,0.024329520761967,-0.028173437342048],[-0.060011748224497,-0.03277551010251,-0.08033299446106],[-0.028971191495657,-0.057233188301325,0.0059532769955695]],[[0.00084597838576883,-0.042474891990423,0.0084085967391729],[-0.040207557380199,0.021857585757971,-0.076052539050579],[0.014552188105881,-0.00097719964105636,0.037129729986191]],[[-0.0011077473172918,0.083812333643436,0.0040239803493023],[-0.0032848080154508,0.1187991052866,-0.1007286682725],[0.072439268231392,0.052528787404299,0.078220091760159]],[[-0.0075667761266232,0.02379990927875,0.0055799661204219],[0.006790523417294,0.004375662188977,0.034312020987272],[-0.050405122339725,-0.0092067774385214,0.0022099872585386]],[[0.035122022032738,-0.020677998661995,-0.021765438839793],[0.013213054277003,0.0060270461253822,-0.035536512732506],[-0.049214910715818,-0.070158839225769,0.012983871623874]],[[0.044521823525429,0.0042473841458559,0.050524417310953],[0.038644064217806,0.012042570859194,0.024543242529035],[-0.03100130148232,0.036100499331951,-0.014783651567996]],[[-0.020862691104412,-0.068145923316479,-0.086073867976665],[-0.014472759328783,-0.040141724050045,0.012696569785476],[0.056525409221649,0.095778286457062,-0.0085287550464272]],[[-0.072811461985111,0.13808478415012,0.036700088530779],[-0.064117826521397,0.020477518439293,-0.042648162692785],[-0.15121057629585,-0.048240840435028,-0.03988978266716]]],[[[-0.0051645380444825,-0.036990083754063,-0.014212117530406],[-0.0027998883742839,-0.058586962521076,-0.0088196424767375],[-0.043174549937248,-0.010818833485246,-0.015093496069312]],[[-0.058669067919254,0.023769183084369,0.021736787632108],[0.04502933844924,0.078988380730152,0.068938001990318],[0.026080373674631,-0.022255279123783,-0.037520576268435]],[[-0.020776463672519,0.023152306675911,-0.074178516864777],[-0.029599314555526,-0.080009646713734,0.0011427305871621],[0.054381094872952,0.019559130072594,-0.072474598884583]],[[0.041554838418961,0.064863719046116,-0.024752767756581],[0.0045153186656535,0.018201317638159,-0.064776808023453],[-0.032133869826794,-0.024064535275102,-0.078016087412834]],[[-0.088148109614849,-0.090536266565323,0.042560756206512],[0.031766995787621,0.036222398281097,0.042301036417484],[-0.054826561361551,0.067220650613308,0.070899054408073]],[[0.015127855353057,-0.073455907404423,0.03462490811944],[0.010241493582726,-0.090304173529148,-0.068185187876225],[-0.020566660910845,-0.010861458256841,0.043310984969139]],[[0.05543539300561,-0.0043055173009634,-0.065583355724812],[0.020369049161673,-0.06093293428421,0.048244293779135],[-0.020053112879395,-0.062646277248859,-0.026963446289301]],[[0.023714654147625,-0.0029053054749966,0.013970061205328],[-0.047699999064207,-0.045210234820843,0.056809078902006],[-0.0542978271842,-0.0010811049723998,-0.081002123653889]],[[0.043617412447929,0.014862325042486,0.027782203629613],[0.018232287839055,0.018699731677771,-0.072363220155239],[-0.095126651227474,-0.016098506748676,-0.029160022735596]],[[-0.014720687642694,-0.032151952385902,0.056055948138237],[0.026761302724481,-0.032393168658018,-0.061135932803154],[-0.0091835241764784,-0.0090187657624483,-0.011117687448859]],[[0.049326606094837,0.024582182988524,0.0073208049871027],[-0.0088466899469495,0.042083289474249,-0.013607890345156],[-0.042265880852938,0.025277111679316,-0.09379430860281]],[[0.05536001548171,0.020098900422454,0.00057084742002189],[0.013966591097414,-0.037244271486998,0.011102547869086],[0.021032031625509,-0.030404159799218,0.0068941689096391]],[[0.091730333864689,-0.0038733275141567,0.035848934203386],[-0.053889717906713,0.063106998801231,-0.030613414943218],[0.061594128608704,0.058667026460171,0.019946664571762]],[[0.11933453381062,-0.032018255442381,0.033888038247824],[0.030373513698578,-0.01441512349993,0.047483991831541],[0.016034891828895,0.058889299631119,0.012795775197446]],[[0.011465872637928,-0.01775848120451,-0.037324644625187],[5.3311381634558e-05,0.040260814130306,-0.039267733693123],[0.063671141862869,0.0057938476093113,0.0048186318017542]],[[-0.040023125708103,-0.070526786148548,0.023415055125952],[-0.0010102828964591,-0.0044028200209141,-0.10855685174465],[0.0030402792617679,-0.0086641116067767,-0.02515054680407]],[[0.019981969147921,0.020523857325315,-0.053759306669235],[0.059141855686903,0.044921182096004,-0.032511085271835],[0.037744201719761,0.02531042508781,0.025336947292089]],[[0.032665334641933,0.020295973867178,-0.052433282136917],[0.10555773228407,0.0061981012113392,0.011086472310126],[0.047622866928577,0.0069958185777068,0.0075483280234039]],[[0.047470584511757,-0.061413839459419,0.02381594851613],[0.02213260345161,0.026476085186005,0.013292553834617],[-0.040116634219885,-0.0061428272165358,-0.014103214256465]],[[0.021598365157843,0.021134786307812,-0.011464428156614],[0.0020922261755913,0.036935340613127,0.0031521283090115],[-0.02323404327035,0.018449407070875,-0.005637769587338]],[[-0.0017869205912575,0.047816943377256,0.023588052019477],[-0.019672123715281,0.020765094086528,0.028497658669949],[-0.020929504185915,0.036384500563145,0.069405816495419]],[[-0.026645630598068,-0.0014419122599065,0.055532798171043],[-0.060066945850849,-0.00060431525344029,-0.0040142950601876],[-0.053439751267433,0.046122930943966,-0.02660739608109]],[[0.0084858052432537,0.01908084563911,-0.026932450011373],[0.057420495897532,-0.0096392789855599,-0.078933656215668],[-0.0031072634737939,-0.025524398311973,-0.046910259872675]],[[0.0052035781554878,-0.017680702731013,-0.0090113142505288],[0.10062008351088,0.0078741740435362,0.080410778522491],[-0.0097556617110968,0.053955364972353,-0.047224532812834]],[[-0.047310996800661,-0.099291376769543,0.051711183041334],[0.015390962362289,0.029917474836111,-0.062768906354904],[-0.023159412667155,0.018768494948745,-0.067665480077267]],[[-0.066729165613651,0.017398348078132,0.066686898469925],[0.062802113592625,-0.041118338704109,-0.0080015119165182],[-0.031599324196577,0.023923823609948,-0.0095525709912181]],[[0.012476506642997,-0.05315176025033,0.013480287976563],[0.019008981063962,0.012417825870216,-0.047378417104483],[-0.0054129320196807,-0.041907668113708,-0.011068515479565]],[[0.020869817584753,0.028234323486686,0.032879266887903],[-0.031537190079689,-0.0047179218381643,0.024759877473116],[-0.050843454897404,-0.001721662003547,0.056855566799641]],[[-0.037989512085915,0.041070908308029,-0.019261350855231],[-0.056491825729609,0.034560009837151,0.095045685768127],[0.051582593470812,-0.038781363517046,-0.037232231348753]],[[-0.044371105730534,-0.018461057916284,-0.009494224563241],[-0.095462128520012,-0.0052228858694434,-0.032205604016781],[0.029096100479364,-0.0087841702625155,-0.012649077922106]],[[-0.08979158103466,-0.028154253959656,0.073523908853531],[-0.0053690257482231,-0.024306626990438,-0.042253829538822],[-0.050424005836248,0.023022450506687,0.03071666136384]],[[-0.0060001709498465,0.022444479167461,0.025902699679136],[0.014382110908628,-0.087068349123001,-0.076233260333538],[0.038670532405376,-0.10654750466347,0.00085474387742579]],[[0.06436363607645,0.0080740908160806,0.035695396363735],[-0.021986974403262,-0.015060595236719,-0.075839705765247],[-0.0070789670571685,-0.059804622083902,0.012553420849144]],[[-3.6844787246082e-05,0.062110364437103,0.035943433642387],[0.019166549667716,0.036437835544348,-0.0040433630347252],[-0.017221810296178,0.070111401379108,0.036626026034355]],[[0.016286043450236,0.038923680782318,-0.031877987086773],[0.055829394608736,0.054797429591417,-0.030357252806425],[0.049601122736931,0.013852882198989,0.026928838342428]],[[0.083926841616631,-0.030759295448661,-0.012094390578568],[-0.028091222047806,0.043107181787491,0.035448510199785],[-0.035292278975248,-0.010993268340826,0.045122027397156]],[[-0.0071281231939793,0.027924368157983,-0.049682967364788],[0.02636194229126,0.039241306483746,0.029576767235994],[0.0063956729136407,0.030243406072259,-0.034051544964314]],[[0.022237036377192,-0.020786322653294,-0.010424443520606],[0.010554374195635,0.0092080635949969,0.048040822148323],[0.030054682865739,-0.06911738961935,-0.060496632009745]],[[-0.06056671962142,-0.10691718012094,0.020177781581879],[-0.026083240285516,-0.011347401887178,-0.015512404032052],[0.03587893396616,-0.016411270946264,0.024038393050432]],[[-0.10057730972767,-0.033190160989761,0.016309086233377],[-0.013768895529211,0.004903020337224,0.028170350939035],[-0.019903732463717,0.10269213467836,0.043525762856007]],[[0.056749131530523,-0.0019991497974843,0.0059839999303222],[0.035034339874983,0.05580872669816,-0.050089351832867],[-0.024828357622027,0.047145888209343,-0.0048087001778185]],[[0.1025677472353,-0.041124813258648,0.0076146209612489],[0.035255048424006,-0.033953733742237,-0.0038092634640634],[-0.014233369380236,-0.037341501563787,0.018390813842416]],[[0.013383810408413,0.035042267292738,0.10300853848457],[-0.014072353951633,-0.071719542145729,0.012151647359133],[0.018141869455576,-0.069123826920986,0.020143115893006]],[[-0.064902082085609,0.018839610740542,0.011400261893868],[-0.056318048387766,0.022294357419014,0.024257980287075],[-0.031805329024792,0.006418343167752,-0.022820971906185]],[[0.031135560944676,0.033911939710379,-0.082373447716236],[0.037723042070866,0.11915877461433,0.03775081038475],[-0.00025473127607256,0.040636699646711,-0.025099728256464]],[[-0.046298820525408,-0.0076291230507195,0.0076890829950571],[-0.002811458427459,-0.032493732869625,0.0013513176236302],[-0.036360327154398,-0.0079421363770962,-0.015933532267809]],[[-0.023325584828854,-0.020070558413863,-0.07671233266592],[0.037307851016521,0.040390454232693,0.013790902681649],[-0.033096119761467,0.012312916107476,0.069122336804867]],[[0.065553672611713,0.01614654622972,-0.043301343917847],[0.0050299996510148,0.05631198734045,0.022044947370887],[0.092244789004326,0.077993586659431,-0.019070951268077]],[[-0.08133389800787,0.072893135249615,0.0043885614722967],[-0.037024404853582,0.019371336326003,0.0047933678142726],[-0.052234563976526,-0.039621409028769,0.045300927013159]],[[-0.046169482171535,-0.034135743975639,-0.016842257231474],[-0.068626895546913,-0.02099459245801,-0.0013235253281891],[0.085933208465576,-0.015087088569999,0.024444166570902]],[[0.018398711457849,-0.027363661676645,0.017412856221199],[0.0051498925313354,-0.031928010284901,-0.0040425872430205],[-0.0028579020872712,-0.053020093590021,0.0076681105419993]],[[0.02190618775785,0.036529321223497,-0.029737133532763],[0.052814614027739,0.05142680555582,0.10379050672054],[-0.013747628778219,0.043172877281904,0.061633724719286]],[[-0.036965951323509,-0.015137108042836,0.027223953977227],[0.012402553111315,-0.0020902247633785,0.0078875552862883],[0.038186762481928,-0.048025783151388,-0.045111402869225]],[[0.024672511965036,0.011927653104067,-0.0096068773418665],[-0.0036173446569592,-0.01932468265295,0.0013978681527078],[0.0086406413465738,0.034717869013548,-0.029712809249759]],[[0.069675579667091,0.0054716398008168,0.0043936637230217],[0.019696006551385,-0.036321371793747,0.0061837621033192],[0.0040131970308721,-0.039194911718369,-7.2660812293179e-05]],[[-0.036631476134062,-0.0093528740108013,-0.031907390803099],[0.012280771508813,-0.053244389593601,0.02659404091537],[-0.046783119440079,0.029580246657133,-0.036431547254324]],[[0.020930161699653,0.040049076080322,0.07359004765749],[-0.014610078185797,-0.044764511287212,-0.01412644982338],[0.050098348408937,0.0020392457954586,0.015046826563776]],[[0.020696520805359,-0.0060607949271798,0.0015255894977599],[0.03878965601325,-0.014575720764697,-0.081454992294312],[0.0060884063132107,0.061989512294531,-0.091221109032631]],[[-0.034326758235693,0.018735557794571,0.04207518696785],[-0.0011326351668686,0.094243094325066,0.021425426006317],[0.013666565530002,0.03366669639945,0.091876998543739]],[[-0.020867569372058,-0.021233126521111,0.044042985886335],[-0.014738542959094,0.0122563065961,-0.018016271293163],[0.011626581661403,-0.0050613204948604,0.022318307310343]],[[-0.096597738564014,0.021407466381788,-0.036433827131987],[0.025922557339072,-0.024489272385836,-0.022898143157363],[-0.016019405797124,0.0560312718153,0.024729829281569]],[[0.054690282791853,0.057467963546515,0.0031773333903402],[-0.027254084125161,0.01041863579303,0.078753434121609],[-0.0086414823308587,-0.045379180461168,0.030680390074849]],[[0.024942111223936,-0.036041602492332,-0.013183410279453],[0.07759466022253,0.03485744446516,0.012654892168939],[-0.025843868032098,-0.015495799481869,-0.028696954250336]],[[0.0043630334548652,0.011208250187337,0.024969598278403],[-0.014359960332513,0.00059095647884533,-0.017418976873159],[-0.036893881857395,-0.033704146742821,0.0097389938309789]]],[[[-0.04751243442297,-0.11040492355824,-0.019291052594781],[-0.023323204368353,0.01468101143837,-0.034887980669737],[0.021200796589255,-0.0035524158738554,-0.025129651650786]],[[0.050512336194515,-0.037613201886415,0.04647383838892],[-0.042838875204325,0.0061887996271253,0.065346270799637],[0.010511055588722,-0.016761299222708,0.045389000326395]],[[0.070540644228458,0.0048110852949321,-0.033582169562578],[0.0013051732676104,-0.01768877916038,-0.1224554926157],[0.010292205959558,0.0030692750588059,-0.17538970708847]],[[-0.053744699805975,0.032811645418406,0.002482257084921],[-0.014122409746051,-0.10015231370926,0.0058257794007659],[0.03500710055232,-0.045229870826006,0.0064808181487024]],[[0.064285919070244,0.10007702559233,0.063502386212349],[-0.14538945257664,0.035302095115185,0.052106630057096],[-0.042053062468767,-0.0039177378639579,-0.10793156176805]],[[0.055987510830164,0.023620983585715,-0.041241571307182],[-0.090539202094078,-0.0022154110483825,0.0046508414670825],[0.019153444096446,0.014116892591119,-0.10717057436705]],[[0.023433830589056,-0.063595928251743,-0.064001508057117],[-0.038551405072212,-0.021764090284705,-0.083023481070995],[-0.028739666566253,-0.055456828325987,0.055792152881622]],[[-0.063848026096821,0.013637016527355,0.042237043380737],[0.080292783677578,0.046385571360588,-0.010778321884573],[0.067451916635036,0.056174833327532,0.028827710077167]],[[-0.096683166921139,-0.089412927627563,-0.078080348670483],[-0.0029846606776118,-0.035083565860987,-0.033229425549507],[0.0276551656425,-0.018590170890093,0.078258901834488]],[[-0.016371209174395,0.049242284148932,-0.0057793040759861],[-0.084731116890907,0.052234023809433,-0.084521003067493],[0.020744575187564,-0.021969271823764,-0.11204373836517]],[[0.096662856638432,-0.013699510134757,0.027246145531535],[0.009671519510448,-0.047347187995911,0.0056784669868648],[-0.01547700446099,-0.045751392841339,-0.053427930921316]],[[-0.20423178374767,-0.083287134766579,-0.086918361485004],[-0.026966130360961,-0.13058313727379,-0.030294336378574],[-0.092651881277561,-0.098868995904922,-0.20650313794613]],[[0.0027895122766495,0.00094552413793281,0.01666927151382],[-0.067222878336906,-0.15998019278049,-0.076783455908298],[-0.027282474562526,-0.042649876326323,-0.054760612547398]],[[0.03654221072793,-0.055364318192005,0.013180742040277],[0.046165402978659,0.029450617730618,0.13951754570007],[-0.015859577804804,-0.029721418395638,0.0070283501408994]],[[0.043219368904829,0.0058064740151167,0.0040587591938674],[0.040080528706312,-0.024799523875117,0.0022935352753848],[-0.014007266610861,0.022422768175602,0.0088516036048532]],[[-0.12995611131191,-0.051298011094332,0.13124726712704],[0.04089181125164,-0.053114984184504,0.0081590823829174],[-0.027315199375153,-0.079542487859726,-0.036043893545866]],[[-0.029185405001044,0.15219689905643,-0.084602311253548],[0.04892123490572,-0.12974962592125,0.024412076920271],[0.24093225598335,0.07487741112709,-0.039632894098759]],[[-0.047869630157948,0.013277341611683,0.038641512393951],[-0.066305428743362,-0.020713079720736,-0.041780907660723],[0.0017539684195071,-0.082344718277454,0.040127862244844]],[[0.0060800691135228,0.029505535960197,-0.0038053216412663],[-0.021069221198559,-0.029064038768411,-0.03678946569562],[0.048721719533205,0.084002211689949,-0.0036764149554074]],[[0.054780770093203,0.032316241413355,-0.042841974645853],[0.018122551962733,-0.040565803647041,-0.051357235759497],[0.017818059772253,-0.0058840052224696,0.0292889457196]],[[0.057291116565466,0.061471752822399,0.042002853006124],[-0.0047277864068747,0.095168888568878,-0.024364089593291],[0.0039913901127875,-0.012982652522624,0.067260310053825]],[[0.11443021148443,0.11320799589157,0.019552884623408],[0.016843929886818,-0.0082717444747686,-0.091651737689972],[-0.011683716438711,-0.2041727155447,-0.1933728903532]],[[0.023644808679819,0.069107554852962,0.001776821911335],[-0.14096593856812,0.073790162801743,-0.037264470010996],[0.026408350095153,-0.10705322027206,-0.066941268742085]],[[0.078307643532753,0.076317749917507,-0.010914616286755],[0.10881657898426,0.087987095117569,0.022846275940537],[0.03718713670969,0.072218269109726,0.027046544477344]],[[-0.017278397455812,-0.026331225410104,-0.034896474331617],[0.007208411116153,0.026527356356382,-0.057134542614222],[0.10090801864862,0.0522201359272,0.014527303166687]],[[0.012019947171211,0.04518261551857,-0.073339134454727],[0.023754693567753,-0.014564867131412,-0.0021317172795534],[0.042788293212652,0.05470784753561,-0.037001438438892]],[[0.039120096713305,0.036100137978792,-0.025627385824919],[0.12916676700115,0.0013689879560843,-0.14050053060055],[0.028012795373797,0.063657686114311,0.036935083568096]],[[-0.003493910189718,0.074358224868774,0.027634516358376],[0.025296291336417,-0.0062220748513937,0.11153949052095],[0.076436668634415,0.049698945134878,-0.035725604742765]],[[-0.071584284305573,0.041610974818468,-0.080848224461079],[0.039894618093967,0.0089450720697641,0.036220986396074],[-0.049732372164726,-0.10769040882587,0.010325494222343]],[[-0.11303417384624,-0.082185730338097,-0.12210749834776],[-0.10294398665428,-0.002196648158133,-0.047126982361078],[-0.044715519994497,-0.049048751592636,-0.10490196198225]],[[-0.025647930800915,-0.052420139312744,-0.082465082406998],[0.10025849193335,0.063515245914459,-0.047667890787125],[0.016179870814085,0.03680869191885,-0.14966975152493]],[[-0.04496343806386,-0.044361099600792,-0.061135847121477],[-0.044903442263603,0.015232241712511,0.023451225832105],[-0.057674549520016,0.0026560132391751,0.0083912154659629]],[[0.032936230301857,0.015682931989431,-0.015640949830413],[-0.013517651706934,-0.10776276886463,-0.015505839139223],[0.013741424307227,-0.030661506578326,0.061835184693336]],[[0.061063829809427,0.091780297458172,0.11180318892002],[0.15668924152851,0.10001546144485,-0.10746793448925],[-0.041071727871895,-0.054350756108761,-0.23661297559738]],[[0.036697622388601,0.056972149759531,0.0095344092696905],[-0.065055519342422,0.026581313461065,0.0059425425715744],[0.014346298761666,-0.053982391953468,-0.0033206245861948]],[[0.1334890127182,0.013656106777489,-0.021695977076888],[-0.012702100910246,-0.11503010243177,-0.065956003963947],[0.085420608520508,0.041867330670357,-0.052494298666716]],[[-0.10713122040033,-0.019422180950642,-0.039288602769375],[0.079246021807194,0.10183273255825,0.044942058622837],[-0.022274855524302,-0.031802613288164,0.0080674244090915]],[[0.038388665765524,0.017959006130695,-0.026583854109049],[-0.033088643103838,-0.016908783465624,-0.27963584661484],[0.055052053183317,0.0031889819074422,-0.15287630259991]],[[-0.070586323738098,0.090014927089214,-0.14547263085842],[-0.055517680943012,0.046685211360455,-0.0023334708530456],[0.030279079452157,-0.037819907069206,-0.11835024505854]],[[-0.010467616841197,0.14070728421211,0.036552779376507],[0.038641698658466,0.020108869299293,-0.079219087958336],[-0.0074924933724105,-0.063507094979286,-0.13223303854465]],[[-0.11992064118385,-0.019536348059773,0.0049798600375652],[-0.032511092722416,-0.053584862500429,-0.067436657845974],[-0.016912907361984,-0.06375627964735,-0.052332889288664]],[[0.024969205260277,0.036713872104883,-0.18448206782341],[0.079042226076126,-0.0036688537802547,-0.12542293965816],[0.13416193425655,-0.086141169071198,-0.094344288110733]],[[-0.014491568319499,-0.02500144392252,-0.088558278977871],[-0.028679622337222,-0.085808619856834,0.019325071945786],[-0.12102115154266,0.040980242192745,-0.035218358039856]],[[0.07884219288826,0.06481508910656,-0.026431828737259],[0.035939816385508,0.072788499295712,-0.016251655295491],[-0.03923062980175,0.056377902626991,-0.14315640926361]],[[0.022506589069963,-0.044855903834105,0.10191380232573],[-0.0074930326081812,-0.036427836865187,-0.02218016423285],[-0.052274294197559,-0.048184830695391,0.021915020421147]],[[-0.0091622266918421,0.10953837633133,-0.0046170824207366],[-0.11250062286854,-0.031912319362164,0.019594876095653],[-0.026132488623261,-0.010789995081723,0.038977179676294]],[[-0.071640133857727,-0.064472898840904,0.00068553100572899],[0.02485978603363,-0.0018882255535573,-0.057842418551445],[0.014481674879789,0.014325407333672,-0.084463015198708]],[[0.011888647451997,0.045772030949593,-0.10529423505068],[-0.044661357998848,-0.027787478640676,0.020609540864825],[0.045032199472189,-0.046087108552456,0.095710150897503]],[[0.015900030732155,0.073149994015694,0.0016724062152207],[-0.049772873520851,-0.059474371373653,0.0066534578800201],[0.024864997714758,0.093846201896667,0.060562077909708]],[[0.020074743777514,-0.014496144838631,-0.032674267888069],[0.042703989893198,0.039877831935883,-0.023810843005776],[0.049241065979004,-0.038471061736345,-0.074062049388885]],[[0.0064494702965021,0.087644822895527,-0.0011379648931324],[-0.020474089309573,-0.067564532160759,-0.043945979326963],[0.028683956712484,0.012824782170355,0.028736423701048]],[[0.099335186183453,-0.016622859984636,0.11240346729755],[0.028429642319679,-0.0016858177259564,0.080712698400021],[0.02295096963644,0.034615594893694,0.090875849127769]],[[-0.041305884718895,0.0023167207837105,0.038317788392305],[0.051317825913429,-0.077466905117035,-0.03620333224535],[-0.05432778224349,-0.021504009142518,-0.012319262139499]],[[-0.10573370009661,0.093210510909557,0.014894246123731],[-0.025759348645806,0.032412000000477,-0.057046953588724],[0.024890299886465,-0.01614367775619,0.0061444290913641]],[[0.14102825522423,0.0017345078522339,0.020637566223741],[0.0442915558815,-0.0071005993522704,0.058015778660774],[0.0052407621406019,-0.003860609838739,0.049937799572945]],[[-0.052489437162876,0.0025149448774755,-0.11560127139091],[-0.056953929364681,0.025036605075002,-0.058886077255011],[0.030850008130074,-0.02934617549181,0.038473457098007]],[[-0.027189327403903,0.020539559423923,0.003024760633707],[0.054735373705626,-0.078978203237057,-0.077486336231232],[-0.05174208059907,0.020103359594941,-0.10927153378725]],[[0.085419572889805,-0.054702170193195,-0.038261942565441],[-0.11846681684256,-0.058386277407408,0.0027733391616493],[-0.015120736323297,-0.062465760856867,0.026304552331567]],[[-0.054353944957256,0.023571684956551,-0.016306437551975],[-0.00040214811451733,-0.014220869168639,-0.045746214687824],[0.015632603317499,0.038665939122438,-0.036174725741148]],[[-0.070340864360332,0.01315816771239,0.029547890648246],[0.032444719225168,-0.025696052238345,0.060416601598263],[-0.045254323631525,0.014415672980249,-0.023512089625001]],[[0.0054867374710739,-0.080559551715851,-0.011577638797462],[-0.074123181402683,-0.038739617913961,0.0015804306603968],[0.057983472943306,-0.074912063777447,-0.066589780151844]],[[-0.060370948165655,0.020186830312014,0.01927974075079],[-0.0031302503775805,0.09917589277029,-0.090136542916298],[-0.068416267633438,-0.067689754068851,0.050398882478476]],[[0.068083360791206,-0.058371562510729,-0.01798827201128],[0.034125477075577,0.074946165084839,-0.13640607893467],[0.034475833177567,-0.014064168557525,-0.076152347028255]],[[-0.019837876781821,0.053033724427223,-0.074049346148968],[-0.029784325510263,0.061519127339125,0.015190852805972],[-0.010216080583632,0.054031696170568,-0.08075425773859]]],[[[-0.057872340083122,0.015553249977529,0.072580344974995],[0.026621416211128,0.023403327912092,0.016469739377499],[0.033754959702492,-0.13817921280861,-0.068086966872215]],[[-0.023708462715149,0.0047373794950545,0.080590449273586],[-0.03967921435833,-0.062653325498104,-0.019584508612752],[-0.0031556901521981,0.022449573501945,-0.044726960361004]],[[-0.024991281330585,-0.075386203825474,0.043908938765526],[-0.01970935985446,-0.10145375877619,0.03404551371932],[-0.078743331134319,0.057484958320856,0.084218084812164]],[[-0.040411423891783,-0.06837871670723,-0.04490676894784],[-0.009650569409132,0.010250544175506,-0.032927662134171],[0.0073630749247968,0.071524173021317,0.077891081571579]],[[-0.035077463835478,-0.024093506857753,0.023800591006875],[-0.031296942383051,-0.070406824350357,0.011755571700633],[-0.04808546230197,-0.055839486420155,-0.02721069380641]],[[0.013419474475086,-0.002603693632409,-0.045488703995943],[-0.013161847367883,-0.081660218536854,0.0073995827697217],[0.0051364642567933,-0.025460463017225,-0.072757564485073]],[[-0.046642728149891,-0.029116166755557,0.011908973567188],[-0.057504028081894,0.06533382833004,0.095757931470871],[0.021439764648676,0.076902084052563,-0.016101105138659]],[[0.0066615296527743,-0.0343883857131,-0.015542196109891],[0.051901485770941,0.042244330048561,-0.03208589926362],[0.069456838071346,0.044268146157265,0.0047278245911002]],[[0.0089961439371109,0.01813623867929,0.090644620358944],[-0.010234702378511,-0.011114028282464,0.064247280359268],[0.10235662013292,-0.029408635571599,0.072769671678543]],[[0.017683645710349,-0.054939828813076,-0.0052660121582448],[-0.018746668472886,0.062205366790295,-0.056168913841248],[-0.0047758347354829,0.029192082583904,-0.064925946295261]],[[-0.039379205554724,0.086969964206219,0.063797861337662],[-0.026880929246545,0.0012286435812712,0.010483442805707],[-0.10124481469393,-0.0063622160814703,0.030797416344285]],[[0.045149356126785,0.052188102155924,0.058941680938005],[-0.033896058797836,-0.033725004643202,0.015511135570705],[0.0068678949028254,-0.035456381738186,-0.071398250758648]],[[-0.099336437880993,-0.11144620925188,0.022578202188015],[-0.01844884082675,-0.050989910960197,0.00071142014348879],[-0.024362778291106,-0.069063983857632,-0.028283027932048]],[[0.058644320815802,-0.058713745325804,0.040600806474686],[0.022382080554962,-0.0028156540356576,-0.054853443056345],[-0.048676040023565,-0.056731719523668,0.013216591440141]],[[-0.028389347717166,0.015725905075669,-0.020046396180987],[-0.046765062958002,0.029483590275049,-0.028657456859946],[0.032296467572451,0.0067384666763246,-0.045205630362034]],[[-0.048015087842941,-0.029517661780119,-0.0021217835601419],[0.017004558816552,0.054849773645401,0.0014355222228914],[-0.053257390856743,-0.062456082552671,0.067158944904804]],[[-0.011523768305779,-0.060080248862505,-0.042814467102289],[0.013711335137486,0.067106083035469,0.017378473654389],[0.014336810447276,0.1349012106657,-0.033594697713852]],[[-0.087121926248074,0.028235824778676,-0.017317367717624],[-0.045385528355837,0.042773131281137,0.0052774916402996],[-0.0062697813846171,0.099317349493504,-0.014778199605644]],[[0.029561430215836,-0.044766422361135,-0.065214239060879],[0.07367617636919,0.014196402393281,0.009582550264895],[0.052059218287468,0.021438963711262,-0.01610603928566]],[[-0.0243373028934,-0.047708589583635,0.0087320329621434],[0.019317338243127,0.050691936165094,-0.030619142577052],[-0.011806665919721,0.038053408265114,0.01468990650028]],[[0.0013636994408444,0.0063938456587493,-0.038012977689505],[0.019152864813805,0.026936329901218,0.040189154446125],[-0.014900213107467,0.020139075815678,-0.043441664427519]],[[-0.063347041606903,-0.062395755201578,-0.092645198106766],[0.12509977817535,0.016708977520466,-0.061225909739733],[-0.04733806475997,0.056023295968771,0.027533667162061]],[[-0.040037926286459,-0.0033058263361454,0.059161469340324],[0.011464082635939,0.017181674018502,0.044465027749538],[-0.02537414431572,-0.0057677016593516,0.0050212200731039]],[[0.033671110868454,0.10281860083342,0.0029349050018936],[0.08878617733717,0.095504470169544,0.016091188415885],[0.05573783069849,0.030802384018898,0.07000058889389]],[[-0.045299492776394,-0.059258211404085,0.03797185793519],[0.0014622866874561,0.018359800800681,-0.044373575598001],[0.019857311621308,0.057043507695198,-0.079233415424824]],[[-0.03313734382391,0.0096082901582122,0.0059179533272982],[0.041537120938301,0.039288394153118,0.01645977422595],[0.026079997420311,0.0066786669194698,0.017546283081174]],[[-0.054537937045097,0.034121088683605,-0.045668929815292],[0.017715342342854,-0.021742507815361,0.0077355466783047],[0.02011507190764,-0.09351447224617,0.014224392361939]],[[0.0056958142668009,-0.014751798473299,-0.016845602542162],[-0.041582770645618,0.033412329852581,-0.028830114752054],[-0.021612429991364,0.0051420624367893,0.0078610284253955]],[[-0.049063671380281,-0.046979963779449,0.074536666274071],[-0.044795487076044,-0.043539945036173,0.06037063896656],[0.012115325778723,0.034201644361019,-0.069017618894577]],[[-0.030581718310714,-0.0796287804842,-0.046766359359026],[0.071503579616547,0.028996067121625,-0.0057042059488595],[0.094662040472031,-0.012479049153626,0.12499160319567]],[[-0.044829834252596,-0.037754539400339,0.13443604111671],[0.056715708225965,0.035768058151007,-0.029445460066199],[-0.0019362349994481,0.037569109350443,0.054524511098862]],[[-0.06231727078557,-0.0046063424088061,-0.028327165171504],[-0.0044327480718493,0.09232235699892,0.025884967297316],[0.011623604223132,0.097685344517231,0.074007228016853]],[[-0.045212976634502,0.030307117849588,-0.061588119715452],[0.024515802040696,-0.017330706119537,0.022404374554753],[-0.03626661375165,0.016633985564113,-0.00459308270365]],[[-0.05925352498889,-0.083951480686665,-0.031114298850298],[-0.053857523947954,-0.054969947785139,0.025246351957321],[-0.025907708331943,0.0047243004664779,0.12434481084347]],[[0.033168368041515,0.020266273990273,-0.017984395846725],[-0.066339500248432,-0.029347907751799,-0.0054651922546327],[0.012460674159229,-0.012806059792638,-0.024577742442489]],[[0.021667253226042,0.037771139293909,-0.0076608597300947],[0.0087534189224243,-0.052134234458208,-0.061155445873737],[0.0055571254342794,0.031291302293539,-0.0089240279048681]],[[-0.049720168113708,-0.059419576078653,-0.15071737766266],[0.018720073625445,-0.0097396718338132,-0.068832613527775],[0.096031345427036,0.050728999078274,0.01952001079917]],[[-0.045108340680599,0.033950846642256,0.065943874418736],[0.029056368395686,-0.070879340171814,0.024839317426085],[0.062348630279303,-0.023258233442903,-0.016511959955096]],[[-0.0076326057314873,-0.0075277127325535,0.00057713285787031],[0.020780675113201,0.011852143332362,0.0082723153755069],[0.07953680306673,-0.00065090856514871,-0.060632616281509]],[[-0.066589117050171,-0.096943512558937,0.01722520776093],[-0.0015858822735026,0.069056443870068,-0.036329235881567],[0.017294902354479,0.029475428164005,-0.0050398856401443]],[[-0.034006875008345,-0.12909288704395,0.035636588931084],[0.028982678428292,-0.04145634546876,-0.010366830974817],[-0.00082344451220706,0.029863681644201,0.060065984725952]],[[-0.039546117186546,-0.040596168488264,-0.028245698660612],[-0.067784868180752,0.024199977517128,0.03293015435338],[0.009516722522676,0.0073950057849288,0.0060022557154298]],[[-0.054980497807264,-0.022900357842445,-0.10699311643839],[0.04882338643074,-0.063592381775379,-0.024639207869768],[0.039876703172922,0.028008652850986,0.002387868007645]],[[-0.010763632133603,-0.025655901059508,0.019794842228293],[0.0012749083107337,0.042294073849916,0.046556632965803],[-0.10869397968054,-0.096557892858982,0.070191361010075]],[[0.066490352153778,-0.0018463972955942,0.052917189896107],[-0.10818991065025,-0.051528792828321,0.0037707344163209],[0.099580466747284,-0.030761763453484,-0.057284466922283]],[[-0.0010009852703661,-0.069213844835758,0.014101245440543],[0.0013732586521655,-0.0043470906093717,0.068723611533642],[-0.01974936760962,-0.024058192968369,-0.011803331784904]],[[0.03587044402957,-0.039937749505043,-0.0029569694306701],[0.032308932393789,-0.067688576877117,-0.085016168653965],[-0.0037618079222739,0.0049851536750793,0.062055934220552]],[[-0.015959655866027,-0.075459778308868,0.015833364799619],[-0.0735789462924,-0.01769389770925,-0.035747461020947],[-0.063893929123878,-0.03350318595767,-0.051123812794685]],[[0.050539132207632,-0.0027342005632818,0.065004050731659],[-0.0073743900284171,0.0083991540595889,-0.026307974010706],[-0.043930564075708,-0.038099557161331,0.028681861236691]],[[-0.045883692800999,-0.034211222082376,-0.059293743222952],[0.021934205666184,-0.029881285503507,-0.039637096226215],[-0.056887961924076,0.01796018704772,-0.068529613316059]],[[-0.0015729395672679,-0.0047998283989727,-0.013376380316913],[-0.033268351107836,-0.032141957432032,0.024146012961864],[-0.056081727147102,-0.037762351334095,0.067950047552586]],[[0.055986173450947,0.036650992929935,-0.077497430145741],[0.045543696731329,-0.010281713679433,-0.010275730863214],[0.025935063138604,-0.0041833906434476,0.087396547198296]],[[0.014278627000749,-0.020875968039036,-0.032403755933046],[0.10861187428236,0.10676673799753,-0.018158914521337],[0.085618622601032,0.018802216276526,-0.035367853939533]],[[-0.013628943823278,0.0077044661156833,0.075693115592003],[-0.012291196733713,0.0042560682632029,-0.061803538352251],[-0.030813125893474,0.053440660238266,0.069320969283581]],[[-0.020984197035432,-0.013302941806614,-0.097184911370277],[-0.007341886870563,-0.036826312541962,-0.050624184310436],[0.027595898136497,0.0050744749605656,0.028634203597903]],[[0.071164771914482,-0.054358754307032,-0.086034014821053],[-0.01251641754061,0.037581540644169,-0.024625109508634],[0.015831150114536,-0.023735050112009,-0.040750812739134]],[[0.02431595697999,0.022953264415264,-0.021216977387667],[-0.0059122107923031,-0.034854993224144,0.030703064054251],[0.0278339702636,-0.10069375485182,-0.081961773335934]],[[-0.036820400506258,-0.10279048979282,-0.027491422370076],[0.011153957806528,-0.11518548429012,-0.056708976626396],[0.036681469529867,-0.024194587022066,-0.022768570110202]],[[0.083395011723042,-0.046897150576115,-0.035143438726664],[0.036795541644096,0.060873527079821,-0.039124246686697],[0.031936962157488,0.085099205374718,0.022300254553556]],[[0.0079961307346821,0.05446195602417,-0.031255777925253],[0.055255074054003,0.0033358740620315,-0.014508293941617],[-0.05974343419075,-0.051020462065935,0.037412066012621]],[[0.022095501422882,-0.057713475078344,-0.010002656839788],[0.0041534341871738,0.0034313143696636,-0.0064835418015718],[-0.0011537333484739,-0.089429780840874,0.078826583921909]],[[-0.039839200675488,-0.022540561854839,0.04446018487215],[-0.080040067434311,-0.069010213017464,-0.020614396780729],[0.027722239494324,0.068130023777485,0.075143620371819]],[[-0.012202026322484,-0.065053090453148,-0.007337246555835],[-0.028377490118146,0.0092667760327458,0.032944731414318],[-0.0037732375785708,-0.085699990391731,0.067716583609581]],[[-0.01069397944957,0.013889921829104,0.05120088532567],[0.04029992967844,-0.069899380207062,-0.030473312363029],[0.0038178954273462,-0.019109604880214,-0.020246157422662]]],[[[-0.020717460662127,0.024965357035398,-0.0071189659647644],[0.081546865403652,0.020250203087926,-0.0071746981702745],[-0.093383654952049,0.027743687853217,-0.043533872812986]],[[0.01661042869091,-0.025679273530841,-0.025136759504676],[0.053396601229906,0.084028042852879,0.130745485425],[0.099386312067509,-0.0084543479606509,0.085201092064381]],[[-0.01273407228291,-0.1306057870388,-0.13059931993484],[-0.066998213529587,0.017707200720906,-0.10353320837021],[0.077914476394653,0.041740410029888,-0.045754764229059]],[[-0.085760608315468,-0.077145218849182,0.051445282995701],[-0.009229538962245,0.12245423346758,0.042081095278263],[0.050152767449617,-0.052801869809628,-0.0090864114463329]],[[0.0054415725171566,0.0047977473586798,0.030223120003939],[-0.18140514194965,-0.04770128801465,-0.12876991927624],[-0.00019892481213901,0.02624100074172,0.043000765144825]],[[-0.067734487354755,0.0081135807558894,-0.029038086533546],[-0.042946677654982,-0.061892058700323,-0.047372002154589],[0.052549030631781,-0.015814267098904,0.018155358731747]],[[-0.11096993088722,-0.03017857670784,-0.10180377215147],[0.07406409829855,-0.027012944221497,0.049175195395947],[0.0098185455426574,-0.020697254687548,-0.049702566117048]],[[-0.045135002583265,-0.010091001167893,-0.10269163548946],[0.0076223900541663,0.14465741813183,0.10590516775846],[-0.019765695556998,0.041078336536884,0.018147427588701]],[[0.017111117020249,-0.0044309855438769,-0.028968624770641],[0.03095269203186,-0.070469185709953,-0.053722459822893],[0.00016021993360482,0.043531343340874,0.077425003051758]],[[-0.034934509545565,-0.055139973759651,-0.011996448971331],[-0.013125038705766,-0.012944311834872,-0.037412837147713],[-0.045034237205982,0.026213545352221,-0.011402439326048]],[[-0.060002338141203,0.0034059509634972,0.025495892390609],[-0.026116766035557,0.00021048361668363,0.017002327367663],[0.044709354639053,0.052273295819759,0.025461204349995]],[[-0.087319754064083,-0.005681537091732,-0.020238110795617],[-0.09879831969738,-0.121362157166,-0.013484777882695],[0.011170729994774,-0.020917244255543,0.0064909546636045]],[[0.053086385130882,-0.014075957238674,-0.011149935424328],[-0.058369610458612,7.0960246375762e-05,0.0030630363617092],[0.018541295081377,0.032234273850918,-0.0098198056221008]],[[-0.049605254083872,0.071056716144085,0.04404166713357],[-0.0045420564711094,-0.033050987869501,-0.066896341741085],[0.0050266617909074,0.024869883432984,-0.0053903912194073]],[[-0.012233280576766,-0.010149059817195,0.012965535745025],[0.028176676481962,0.035645116120577,-0.037852741777897],[0.010606396943331,0.043529264628887,0.0091182263568044]],[[-0.093627229332924,0.044648371636868,-0.1217772886157],[-0.065643638372421,0.041518650949001,-0.085383966565132],[-0.054496683180332,0.0044469782151282,0.050203464925289]],[[0.015657428652048,-0.10876645892859,-0.084294445812702],[0.086244769394398,0.0085745248943567,0.024735998362303],[0.050262730568647,0.10742710530758,-0.021456768736243]],[[0.064163461327553,0.0028143250383437,0.034656681120396],[0.014984956011176,0.058747988194227,-0.02828149870038],[0.0045959888957441,-0.044464830309153,0.049211036413908]],[[0.03231268376112,-0.064433306455612,-0.038031846284866],[0.036592230200768,-0.056180376559496,0.0023398892953992],[0.068939015269279,0.021666364744306,0.02691800147295]],[[-0.043335277587175,-0.069548100233078,-0.04571433365345],[0.034011457115412,0.037665519863367,-0.018398754298687],[0.033156391233206,0.042017191648483,0.046498816460371]],[[0.011565173976123,0.016213674098253,0.019943434745073],[-0.015257178805768,0.030297232791781,0.038715537637472],[0.050465386360884,0.052265968173742,-0.064012281596661]],[[-0.030104100704193,-0.068560197949409,0.024382991716266],[0.032376114279032,0.030142372474074,-0.024587761610746],[0.053592003881931,0.027458379045129,0.0079708527773619]],[[-0.064712017774582,0.050284035503864,-0.040499068796635],[0.014916157349944,-0.093597404658794,-0.031111504882574],[-0.018154760822654,0.0024157660081983,0.024336943402886]],[[0.03825655952096,0.057435303926468,0.015665916725993],[0.028424901887774,0.079015962779522,0.025951955467463],[-0.017888380214572,0.052752874791622,0.0075017814524472]],[[0.044913902878761,0.0106914145872,0.0012057643616572],[0.066777430474758,-0.019131124019623,-0.06586330384016],[-0.064070291817188,-0.11627079546452,0.055405095219612]],[[-0.03387888148427,-0.017452789470553,0.038216363638639],[0.022626234218478,-0.079489916563034,-0.078466102480888],[0.088166013360023,0.013005627319217,-0.09132232517004]],[[-0.045613888651133,-0.063080243766308,-0.030732817947865],[-0.024046558886766,0.063390448689461,-0.021177537739277],[-0.0045707770623267,-0.084100298583508,-0.00017448113067076]],[[0.066299431025982,0.054340284317732,-0.01336279977113],[0.0075628696940839,-0.0095530739054084,-0.025747681036592],[0.03531363978982,0.06563176959753,0.025551997125149]],[[0.085069105029106,0.032144092023373,-0.014967569150031],[0.021461810916662,-0.12983855605125,-0.032117661088705],[0.06062500551343,-0.012391378171742,-0.0093572102487087]],[[-0.0058594942092896,-0.026356685906649,0.012746975757182],[0.040367893874645,0.02988519333303,0.058802265673876],[0.0061337975785136,0.0058383303694427,-0.057476717978716]],[[0.035108171403408,-0.092305965721607,-0.021979281678796],[0.046338617801666,0.10723149031401,-0.068526722490788],[0.058242816478014,-0.0313855484128,0.010151618160307]],[[-0.011126645840704,0.025059878826141,0.044341836124659],[-0.0051803099922836,-0.080767169594765,-0.071647524833679],[0.035295758396387,7.4137176852673e-05,-0.034578345716]],[[0.031118066981435,0.023475628346205,0.0026314076967537],[0.0001227633911185,-0.073916733264923,-0.11338336765766],[0.019138343632221,0.0040929466485977,0.0098245348781347]],[[0.014742956496775,-0.044107545167208,-0.033033784478903],[-0.012498336844146,0.012054067105055,-0.0075368867255747],[-0.045585714280605,0.0071901474148035,0.024010121822357]],[[-0.11780945956707,-0.075494758784771,0.003357658861205],[-0.13586139678955,-0.068812847137451,-0.071768432855606],[-0.1445057541132,-0.084337674081326,-0.072000332176685]],[[0.013571498915553,0.11298263072968,0.020404824987054],[-0.061667792499065,0.057444456964731,0.032880675047636],[-0.022868121042848,-0.056383725255728,0.01819278113544]],[[-0.037478193640709,-0.0091976914554834,-0.070092596113682],[-0.04656744748354,0.004411774687469,0.046890571713448],[0.02197640016675,0.073658920824528,-0.0099156079813838]],[[-0.00021045352332294,0.0047461814247072,-0.0016893621068448],[0.075063720345497,-0.045258179306984,0.02802661433816],[-0.12673930823803,-0.035008046776056,0.014520951546729]],[[0.086487330496311,-0.0038190549239516,-0.014035942032933],[0.025060700252652,0.0098160384222865,0.010181603953242],[-0.031059071421623,-0.095993205904961,-0.064538903534412]],[[-0.093250580132008,0.088920705020428,0.02320739813149],[0.11204455792904,0.074520535767078,-0.033976949751377],[0.0069607263430953,0.15060558915138,-0.13233424723148]],[[-0.029046148061752,-0.034279845654964,-0.11973385512829],[0.020104669034481,-0.034185994416475,-0.027018943801522],[-0.076552040874958,-0.0040184776298702,-0.088238731026649]],[[-0.0033670058473945,0.099007792770863,-0.0068516894243658],[-0.00034888397203758,-0.028003662824631,0.027950529009104],[-6.3230538216885e-05,-0.10751788318157,-0.057070959359407]],[[0.023239932954311,0.04626390337944,0.028235508129001],[-0.015032280236483,0.028183681890368,-0.045784551650286],[-0.035228759050369,-0.020989494398236,0.11146122217178]],[[0.023587679490447,0.010850194841623,-0.065732337534428],[-0.10323929041624,-0.012894354760647,0.017623024061322],[0.11690597236156,0.019918786361814,0.025341710075736]],[[0.056351736187935,0.0030337830539793,0.0085220066830516],[-0.13786622881889,-0.01504918653518,-0.01887565664947],[-0.018698334693909,0.028774293139577,-0.081149213016033]],[[-0.0020727827213705,-0.015213987790048,-0.048100627958775],[-0.051888003945351,0.011321967467666,0.019493166357279],[0.015990966930985,-0.048274550586939,0.0065280995331705]],[[0.051833420991898,0.004080084618181,-0.063185423612595],[0.089400388300419,-0.013842953369021,0.064323328435421],[-0.012735613621771,-0.058758165687323,0.082192599773407]],[[-0.020995859056711,0.00079472584184259,0.0034025467466563],[-0.052581526339054,-0.029524769634008,-0.011156999506056],[-0.032769527286291,0.063788279891014,0.055216666311026]],[[0.020633766427636,-0.0076984255574644,-0.030326629057527],[-0.045917000621557,-0.033533986657858,-0.029726756736636],[-0.061752665787935,-0.035046711564064,-0.083941511809826]],[[-0.10257585346699,-0.058153625577688,-0.064619481563568],[0.02926635928452,-0.050677396357059,-0.020013121888041],[0.053335007280111,0.056824877858162,0.065490782260895]],[[-0.008299526758492,-0.03453154489398,-0.020425044000149],[0.00054537854157388,-0.01115623768419,-0.011635539121926],[0.00061421078862622,-0.074699714779854,0.016529822722077]],[[-0.038055501878262,-0.00043607605039142,0.076791971921921],[0.049504090100527,0.063073493540287,-0.021526029333472],[0.020734436810017,0.04048177972436,-0.096227273344994]],[[0.002456599380821,-0.0031519441399723,-0.0050970655865967],[0.015585847198963,0.093173123896122,0.023517807945609],[-0.060859657824039,0.027646951377392,0.068789318203926]],[[-0.057388968765736,0.072273038327694,-0.089679814875126],[0.010828386992216,-0.0050259078852832,0.013005468063056],[-0.034152902662754,-0.060133505612612,0.013119297102094]],[[-0.040210269391537,0.052886269986629,-0.011846741661429],[0.02470856718719,-0.040132597088814,-0.087363868951797],[0.035685021430254,0.039764858782291,-0.0052753877826035]],[[0.010546672157943,0.057634085416794,0.03663919493556],[-0.0022097069304436,0.028229894116521,0.036159593611956],[-0.024247638881207,0.047629851847887,0.025762123987079]],[[0.028853630647063,-0.011496721766889,-0.00099897559266537],[0.031390085816383,-0.053333278745413,0.029596213251352],[-0.012006767094135,-0.06781292706728,0.030494214966893]],[[-0.05844508856535,-0.055011369287968,-0.082543395459652],[-0.0090287523344159,-0.11486875265837,-0.051388550549746],[-0.0085100838914514,-0.077924437820911,-0.058631401509047]],[[-0.075835473835468,-0.063558310270309,0.068056501448154],[0.062907218933105,-0.030004419386387,-0.012580147013068],[-0.092901706695557,0.03908147662878,0.063071064651012]],[[0.046058095991611,0.040327180176973,0.052745167165995],[-0.016852226108313,0.0037944791838527,0.030766448006034],[-0.11690328270197,-0.041016310453415,-0.01968072168529]],[[-0.007816475816071,0.020413367077708,0.022981561720371],[-0.085690319538116,-0.027745593339205,-0.021755803376436],[0.0019613243639469,-0.064095601439476,0.034293033182621]],[[0.016841687262058,-0.05396406725049,-0.006792489439249],[0.016489293426275,0.023702116683125,-0.056197345256805],[-0.073678568005562,-0.076120935380459,0.025090873241425]],[[0.016071001067758,0.05082693696022,-0.02439403347671],[0.0068973293527961,0.014842183329165,-0.031124886125326],[-0.033112578094006,-0.045187722891569,0.042916473001242]],[[-0.04432662576437,-0.026889367029071,0.069784685969353],[0.0038922755047679,-0.010600465349853,-0.014799889177084],[0.04931777343154,0.0604960732162,-0.041186809539795]]],[[[-0.060605511069298,-0.11159816384315,-0.058859195560217],[0.0021849852055311,-0.058469891548157,0.058338146656752],[-0.10224893689156,0.064974501729012,0.053200259804726]],[[-0.043119858950377,-0.038743708282709,-0.082718253135681],[-0.20079123973846,-0.04955917969346,-0.14054536819458],[-0.14843475818634,-0.08102885633707,-0.14739473164082]],[[0.071024857461452,-0.020259980112314,0.0051653222180903],[0.010479490272701,-0.047850579023361,0.015467576682568],[-0.014288784004748,-0.049551256000996,-0.089279696345329]],[[-0.039376847445965,0.043955270200968,0.01276555005461],[0.0020168086048216,0.07177322357893,-0.012506234459579],[-0.10578109323978,-0.031162120401859,-0.0095997229218483]],[[-0.014274746179581,0.026654779911041,0.047836780548096],[-0.00047395838191733,0.02737789042294,0.070954069495201],[-0.023521821945906,-0.044774863868952,0.072058469057083]],[[-0.030176961794496,-0.051773458719254,0.083800069987774],[0.077537097036839,-0.032982233911753,-0.10454004257917],[-0.032781481742859,0.16516110301018,-0.017192175611854]],[[0.099030360579491,-0.041566587984562,-0.10791730135679],[-0.015386112965643,-0.086529403924942,-0.12371611595154],[0.0069493539631367,-0.046538550406694,-0.071427673101425]],[[-0.060976959764957,0.011775098741055,-0.089890114963055],[-0.1005493029952,-0.025254480540752,-0.073601745069027],[-0.0718177780509,-0.022032557055354,0.059679381549358]],[[-0.035437870770693,-0.047169499099255,0.025566866621375],[0.0749741345644,0.091754779219627,0.030580775812268],[0.1454276740551,0.0027082092128694,0.00564119592309]],[[-0.0047593261115253,0.053430918604136,0.011186721734703],[0.022693559527397,-0.015719499439001,-0.0099450880661607],[-0.049560390412807,0.026236448436975,-0.032098982483149]],[[0.060956213623285,0.0060051735490561,0.03505651652813],[0.051902007311583,0.072405971586704,-0.0026245741173625],[0.13324812054634,0.00053605326684192,-0.056127246469259]],[[0.014358824118972,0.022582495585084,0.054283775389194],[-0.096444092690945,0.050078418105841,-0.056162863969803],[-0.037386134266853,0.027532886713743,-0.031387992203236]],[[0.070505164563656,0.044024702161551,-0.027925813570619],[-0.076416186988354,-0.085852593183517,-0.035404309630394],[-0.10633503645658,-0.073228634893894,-0.0021309377625585]],[[0.14236596226692,0.026198543608189,0.025480750948191],[0.056707140058279,-0.014495917595923,-0.0055972686968744],[-0.00037779007107019,0.0033398049417883,-0.088151425123215]],[[-0.04081154987216,0.029634671285748,0.014634672552347],[-0.056391626596451,0.0085120592266321,0.059610288590193],[0.0021307026036084,-0.016948845237494,-0.043247617781162]],[[-0.058063231408596,0.060543034225702,0.0086753536015749],[0.011331153102219,0.02690109424293,0.011594763025641],[-0.091018006205559,-0.034420751035213,-0.013563944026828]],[[-0.007570001296699,0.037003293633461,-0.034758895635605],[-0.058858171105385,-0.10516276955605,-0.050350602716208],[0.032115142792463,0.11053433269262,0.060985811054707]],[[-0.012085169553757,-0.097661182284355,0.059624839574099],[0.068781763315201,0.086633078753948,-0.086038343608379],[0.096859626471996,0.045726127922535,-0.0020692604593933]],[[0.01321935094893,-0.034018259495497,-0.035687778145075],[0.073860585689545,-0.0017226337222382,-0.0032957708463073],[-0.015904249623418,-0.011905074119568,-0.02108664996922]],[[0.040259070694447,-0.030793184414506,0.06456732749939],[-0.014485707506537,-0.0027165079955012,-0.038571819663048],[-0.041322819888592,-0.0087586585432291,0.038744632154703]],[[0.033274207264185,-0.012946086004376,0.014552182517946],[0.010358097963035,-0.017117090523243,-0.16530850529671],[-0.065588124096394,-0.062561452388763,-0.10515312105417]],[[-0.033666804432869,0.034568164497614,-0.067743055522442],[-0.075066186487675,0.049368217587471,-0.018279230222106],[-0.041427128016949,0.091370038688183,0.13676233589649]],[[-0.051406051963568,0.080694057047367,0.030892981216311],[-0.13474345207214,-0.044750805944204,-0.046658892184496],[0.014624348841608,0.038557060062885,-0.01832896284759]],[[-0.11311470717192,0.033778257668018,-0.0078373290598392],[-0.025783749297261,0.10271944850683,0.12963983416557],[-0.038452420383692,0.064657516777515,0.11930128931999]],[[0.058217696845531,0.0070072989910841,0.017324805259705],[0.064865663647652,-0.0096833864226937,0.045034423470497],[-0.0012811874039471,-0.006612463388592,-0.013727460987866]],[[0.010188292711973,0.00075052818283439,0.073452644050121],[0.021696114912629,0.0028635410126299,0.087666995823383],[0.034369174391031,0.0054961708374321,0.039188642054796]],[[0.0047943857498467,0.011161801405251,0.072764381766319],[-0.084696374833584,0.14879976212978,-0.11197175085545],[0.067699566483498,0.043636608868837,-0.13712620735168]],[[-0.054339673370123,-0.0066273240372539,-0.023694768548012],[-0.15024057030678,0.018492894247174,0.019482227042317],[-0.054153919219971,-0.035374291241169,-0.083466686308384]],[[-0.017681920900941,-0.084226444363594,0.073453351855278],[-0.060050547122955,0.066016234457493,0.15694946050644],[-0.05626804381609,0.069422334432602,-0.080707095563412]],[[0.014516997151077,-0.016686240211129,-0.18091970682144],[0.083810485899448,-0.056230135262012,-0.17032381892204],[0.17374347150326,-0.088404037058353,0.086634106934071]],[[0.032329920679331,-0.00099867500830442,0.018212232738733],[0.094357632100582,0.002170194638893,-0.0054192715324461],[0.15742936730385,0.054038222879171,-0.028835320845246]],[[0.049323584884405,0.025192379951477,0.10601107031107],[-0.11091036349535,-0.042322676628828,-0.10558301955462],[-0.0736950263381,-0.016381034627557,-0.042606398463249]],[[-0.01711717247963,0.016302689909935,0.028171746060252],[-0.076383389532566,-0.066236667335033,-0.059390150010586],[-0.08277366310358,-0.017234828323126,-0.039031527936459]],[[0.02949607744813,-0.016123730689287,0.054232187569141],[0.10893995314837,0.017886867746711,-0.087723813951015],[-0.18329147994518,-0.081599146127701,-0.10285624116659]],[[0.045832306146622,-0.031854774802923,-0.013729305937886],[0.11846819519997,0.008525705896318,0.047455731779337],[-0.021791534498334,-0.032673098146915,-0.047613099217415]],[[0.0014495991636068,0.043065570294857,-0.0049047446809709],[0.04482214525342,-0.016407672315836,-0.057793684303761],[-0.033390272408724,-0.065340742468834,0.013432521373034]],[[-0.022382088005543,0.14177910983562,-0.13409866392612],[-0.11443460732698,-0.031482759863138,-0.08711201697588],[0.0030431721825153,0.023425245657563,0.089473322033882]],[[0.025789564475417,-0.0029800378251821,0.033471338450909],[0.032632943242788,0.019046418368816,0.033663477748632],[-0.0185407102108,-0.050717063248158,-0.053468823432922]],[[-0.0020697668660432,-0.027968313544989,-0.029904969036579],[-0.010106457397342,-0.04786479473114,0.069810271263123],[-0.031323503702879,-0.0096784373745322,-0.016122365370393]],[[0.11021228134632,0.064527332782745,-0.1195265725255],[-0.050283271819353,0.022020187228918,-0.19221469759941],[-0.027373237535357,0.027759386226535,-0.062814988195896]],[[-0.10581193864346,0.0077026165090501,0.045811016112566],[0.011734388768673,0.045772016048431,0.062250513583422],[0.016658814623952,0.0046193292364478,0.013422595337033]],[[-0.0008592531667091,0.082709610462189,-0.06074320524931],[0.041320838034153,-0.0059045976959169,0.049088340252638],[-0.09426848590374,0.0041858502663672,-0.0040125553496182]],[[0.077116280794144,0.053686611354351,-0.055506136268377],[-0.15805527567863,-0.064708314836025,-0.040116775780916],[-0.012181891128421,0.085961312055588,-0.080234989523888]],[[-0.0080979997292161,-0.089367613196373,-0.015964327380061],[-0.13230653107166,-0.080434024333954,0.083788082003593],[0.018439395353198,-0.018359398469329,-0.068432040512562]],[[0.013294805772603,-0.02855845913291,-0.030414452776313],[0.020333480089903,-0.11383496969938,0.098480671644211],[0.016068326309323,-0.085958622395992,0.19613379240036]],[[0.10162188857794,0.06452439725399,-0.048077419400215],[0.0068429578095675,-0.13822096586227,0.061949040740728],[0.1630517244339,0.07444603741169,0.05228965729475]],[[-0.0036677704192698,0.061501506716013,-0.019273912534118],[0.0076751904562116,0.037080865353346,-0.038153719156981],[0.059384766966105,0.033525243401527,-0.070794150233269]],[[-0.0040695643983781,0.068467617034912,-0.062499228864908],[0.017476039007306,-0.083628945052624,-0.016985610127449],[-0.073162570595741,-0.18058967590332,-0.083490505814552]],[[0.055490378290415,0.051463350653648,-0.037333678454161],[0.11701660603285,-0.059302933514118,-0.038846589624882],[-0.067396178841591,0.021401565521955,0.0025120070204139]],[[0.10910800844431,0.017801057547331,-0.04290909320116],[0.10398875921965,-0.076635591685772,-0.0098978253081441],[-0.14906530082226,-0.037173144519329,-0.0050805136561394]],[[-0.10000560432673,0.00066950696054846,0.021429082378745],[0.021759772673249,-0.051571734249592,-0.003390452824533],[-0.068127736449242,-0.10817445069551,-0.03698306530714]],[[-0.22049503028393,0.049815829843283,0.19170536100864],[-0.071595400571823,0.079997338354588,0.12140925973654],[-0.068912424147129,-0.043411243706942,0.069193549454212]],[[-0.055337827652693,-0.042783055454493,0.015460649505258],[-0.021726921200752,-0.003862990764901,-0.10688666254282],[0.055935367941856,0.011252264492214,-0.010753308422863]],[[-0.027460020035505,0.068506479263306,-0.011017099022865],[-0.092643022537231,-0.062006555497646,-0.086349971592426],[0.038156118243933,0.10538300126791,0.074067987501621]],[[-0.033369190990925,-0.01760296523571,-0.049923360347748],[0.086536839604378,0.055880956351757,-0.098071046173573],[0.046765938401222,-0.12166426330805,-0.01664405874908]],[[-0.02775726094842,0.0040150159038603,-0.01515306532383],[0.039497345685959,-0.017557879909873,0.0069375778548419],[0.030626112595201,-0.01876687258482,-0.065398715436459]],[[0.046822231262922,-0.094605259597301,-0.16104705631733],[-0.079060219228268,-0.13847477734089,-0.065350748598576],[-0.13834866881371,0.14318913221359,0.056137394160032]],[[0.033337272703648,-0.0059456154704094,0.02936765179038],[0.022410716861486,-0.0072381286881864,0.069735392928123],[0.0062808361835778,0.03331271186471,-0.074960730969906]],[[0.037789393216372,0.068387933075428,0.083104737102985],[-0.032812848687172,0.14369085431099,0.12672910094261],[0.037913110107183,0.019995583221316,0.17557448148727]],[[-0.026714432984591,-0.0076323403045535,-0.051575656980276],[0.025160105898976,0.070921331644058,-0.019952112808824],[0.042830266058445,-0.015471311286092,-0.029598040506244]],[[-0.02297043427825,-0.018184127286077,-0.038488291203976],[-0.10338090360165,0.029144011437893,0.040629085153341],[-0.019627634435892,-0.0093477386981249,0.047426667064428]],[[-0.044251915067434,-0.18342462182045,-0.086325861513615],[-0.022939406335354,0.047602485865355,0.081460051238537],[-0.02895269729197,0.045003101229668,0.02464809268713]],[[0.059336677193642,0.035079222172499,0.08744590729475],[0.01191280875355,0.015349588356912,-0.054421462118626],[-0.050917450338602,-0.1257251650095,-0.034020639955997]],[[0.012663469649851,0.0092288991436362,0.048099610954523],[0.077540099620819,0.044990200549364,0.025632906705141],[0.050308838486671,-0.0097066275775433,0.01008474547416]]],[[[0.075901463627815,0.033327333629131,0.00018789122987073],[-0.041576884686947,-0.047584984451532,0.021101430058479],[-0.040778275579214,0.040048107504845,-0.043303690850735]],[[-0.033511497080326,-0.099916413426399,-0.093265257775784],[0.04440725967288,-0.049605887383223,-0.05783823505044],[-0.013311763294041,-0.14811907708645,-0.1441503316164]],[[0.044603176414967,0.00658008037135,0.028218140825629],[0.015853233635426,0.066660903394222,-0.03224178776145],[0.031943675130606,-0.16837860643864,-0.025208653882146]],[[-0.010605945251882,-0.020860973745584,-0.099234133958817],[-0.11388628184795,-0.10313989967108,-0.10838276147842],[-0.11893479526043,-0.14357434213161,-0.058247905224562]],[[0.031409703195095,-0.039216488599777,0.024011868983507],[-0.049321617931128,0.0083072679117322,-0.039752885699272],[-0.005852238740772,-0.058791730552912,-0.043815925717354]],[[0.011939855292439,0.048619698733091,-0.079981662333012],[-0.048881877213717,0.007680103648454,0.026797372847795],[0.0013198298402131,0.016048846766353,0.0044289003126323]],[[0.046935137361288,-0.063819333910942,-0.046230208128691],[0.043134387582541,-0.050603158771992,-0.11638477444649],[0.0092198848724365,-0.12788717448711,-0.036381732672453]],[[-0.04089892655611,-0.18447928130627,-0.078969702124596],[0.063290365040302,-0.11390972882509,-0.074262730777264],[-0.066695056855679,-0.2551731467247,-0.074459657073021]],[[-0.092862725257874,0.064538717269897,0.015018959529698],[-0.11549127101898,-0.090217009186745,0.046523056924343],[-0.037771057337523,-0.01594209484756,-0.008598055690527]],[[-0.063167981803417,0.065605543553829,0.0079046841710806],[0.031090443953872,-0.019062934443355,0.038350589573383],[0.077091902494431,0.050098083913326,-0.029340291395783]],[[-0.033188905566931,-0.0087795043364167,0.02027815207839],[-0.003922036383301,-0.028064979240298,0.01233930978924],[-0.030167158693075,-0.18251818418503,0.050275266170502]],[[-0.11445205658674,0.00081011041766033,0.085290364921093],[-0.040901426225901,-0.066698513925076,0.035056103020906],[-0.0010366381611675,-0.00091954233357683,-0.04926024377346]],[[0.065586157143116,-0.047045104205608,-0.1731593310833],[-0.0096076168119907,0.035459090024233,-0.0076540783047676],[0.093784920871258,0.18399314582348,0.022534765303135]],[[0.044551376253366,0.080158472061157,-0.026437053456903],[0.006940386723727,0.031798232346773,-0.024010375142097],[0.00091575685655698,-0.022044124081731,0.093800626695156]],[[-0.0036205060314387,-0.097607985138893,-0.12590880692005],[-0.032167948782444,-0.10429659485817,-0.077604509890079],[-0.017347898334265,0.056362919509411,-0.12212027609348]],[[0.023581314831972,0.039646737277508,-0.041658151894808],[0.01885143853724,0.067842602729797,-0.065431959927082],[-0.034478031098843,-0.0047099040821195,-0.02541895955801]],[[-0.025771958753467,0.053432300686836,-0.016542011871934],[-0.029049606993794,0.039926663041115,0.017685236409307],[-0.078043967485428,-0.048100762069225,0.0079850666224957]],[[-0.011510327458382,0.1112934872508,-0.018897868692875],[-0.052164603024721,-0.088501684367657,-0.098822310566902],[-0.08293392509222,-0.098634868860245,-0.026317108422518]],[[0.069981768727303,0.019998161122203,-0.099233351647854],[-0.010283201001585,-0.062025602906942,-0.020422911271453],[-0.016512993723154,0.034783035516739,-0.014113837853074]],[[0.020672699436545,0.033420015126467,0.11336959898472],[0.035789433866739,-0.05131783336401,-0.037221178412437],[0.011219107545912,-0.064241819083691,-0.069273769855499]],[[-0.0026429879944772,0.041572138667107,0.028462074697018],[0.017072590067983,-0.0070004253648221,0.05049155279994],[0.012114757671952,-0.046650506556034,-0.013861978426576]],[[0.048624109476805,-0.026966538280249,0.01432157214731],[0.010791526176035,0.066483892500401,-0.095572374761105],[-0.025659490376711,0.010133250616491,-0.046147659420967]],[[-0.0016152547905222,0.0023610075004399,-0.017937516793609],[-0.015327485278249,-0.039452526718378,0.018411502242088],[0.012326112948358,-0.06459841132164,0.032455518841743]],[[0.031917165964842,0.033858355134726,0.040828097611666],[0.09542839974165,0.0263432841748,0.11484584957361],[0.061002943664789,-0.02229068800807,0.087233312427998]],[[0.049039840698242,-0.078994251787663,0.070504315197468],[0.0060189142823219,-0.055812623351812,-0.027010392397642],[0.03308368101716,0.023493053391576,0.059794899076223]],[[-0.037953309714794,-0.0011148699559271,0.09837506711483],[0.028139648959041,0.020752467215061,-0.0055817235261202],[-0.016368508338928,0.016154710203409,0.067928075790405]],[[-0.027408737689257,0.034859713166952,-0.075097054243088],[-0.12859429419041,-0.0086007202044129,-0.025386195629835],[-0.10313469916582,-0.0084278406575322,0.023844081908464]],[[-0.020892789587379,-0.038197811692953,-0.14450457692146],[-0.061546638607979,-0.0067928689531982,-0.049743171781301],[-0.067035257816315,-0.0094574885442853,-0.02593083307147]],[[-0.059800568968058,-0.023612581193447,-0.045261479914188],[0.021973144263029,-0.018157541751862,0.042438481003046],[-0.083067514002323,-0.011914322152734,-0.01444951351732]],[[-0.054037876427174,-0.087812960147858,-0.12578970193863],[-0.021562939509749,-0.13329117000103,-0.18937011063099],[-0.15215072035789,-0.12935346364975,-0.024838717654347]],[[-0.054689154028893,0.082257553935051,-0.10297311842442],[0.035751525312662,-0.047540105879307,0.042410403490067],[0.024608740583062,0.0021747087594122,-0.002072551753372]],[[0.011150600388646,-0.014390289783478,-0.055786300450563],[-0.065957844257355,0.028916880488396,0.024450890719891],[-0.10495853424072,-0.07523887604475,-0.056660927832127]],[[0.09348426014185,0.030066413804889,0.016223762184381],[0.030964937061071,-0.058263055980206,-0.0038558300584555],[0.021558055654168,-0.038920775055885,0.00090276938863099]],[[0.028269495815039,0.061911474913359,0.053507827222347],[-0.059110268950462,0.028790883719921,0.050889551639557],[0.013427193276584,0.13140064477921,-0.079589352011681]],[[0.049838319420815,0.05661091953516,-0.021497435867786],[0.052089683711529,0.085037015378475,0.020581597462296],[-0.055761985480785,-0.023576760664582,0.061568800359964]],[[0.02462000772357,-0.042457949370146,-0.067729160189629],[0.0069996914826334,-0.11022409796715,-0.078114427626133],[-0.08245674520731,0.088192738592625,0.041667558252811]],[[0.0070169437676668,-0.087547473609447,-0.1056487262249],[5.1276347221574e-06,-0.012199070304632,-0.011152148246765],[0.033557005226612,0.070565722882748,-0.064661294221878]],[[0.13640132546425,-0.043448265641928,-0.035472124814987],[0.056624684482813,-0.059073723852634,0.018479164689779],[-0.062522538006306,0.028059929609299,0.021194390952587]],[[-0.051708608865738,0.019289560616016,0.088286742568016],[0.015395424328744,0.027666503563523,-0.016717918217182],[0.0060545718297362,0.0094109680503607,0.09982455521822]],[[-0.011661502532661,0.032611060887575,-0.0022193540353328],[0.038465451449156,-0.053312692791224,-0.060571573674679],[-0.11172517389059,-0.093548998236656,0.035233393311501]],[[0.079476408660412,0.0096664223819971,-0.060734592378139],[-0.0065999012440443,-0.087265878915787,-0.0058278758078814],[0.0079195033758879,-0.086718715727329,-0.073668010532856]],[[0.051511649042368,-0.073881916701794,0.031129192560911],[0.060753382742405,-0.039127044379711,0.010570835322142],[0.053155161440372,0.024962542578578,0.04342332854867]],[[0.083152182400227,-0.018358338624239,-0.062514141201973],[0.031286787241697,0.038438387215137,-0.15375430881977],[0.026572771370411,0.12313950061798,0.041587222367525]],[[-0.09623546153307,-0.050115954130888,0.082189284265041],[0.068851254880428,-0.12368111312389,0.019112015143037],[0.040861666202545,-0.049601282924414,0.066697373986244]],[[-0.11329910904169,-0.082161903381348,0.011864604428411],[-0.027262795716524,-0.018451092764735,-0.067713841795921],[0.058507487177849,-0.10000155121088,-0.10558207333088]],[[-0.045581988990307,0.045739948749542,-0.082484528422356],[0.051334518939257,-0.12673904001713,-0.021955603733659],[-0.012766737490892,0.015043794177473,0.049626782536507]],[[0.027689419686794,0.018323319032788,0.037229884415865],[0.012751204892993,0.03364284709096,-0.020555270835757],[0.048796325922012,0.016278631985188,-0.095706708729267]],[[0.051611520349979,-0.01376083958894,-0.021916626021266],[0.0050377738662064,-0.031633488833904,-0.005826716311276],[0.014579771086574,-0.14253662526608,-0.10985437780619]],[[-0.067467764019966,0.016897225752473,-0.020477851852775],[0.021853160113096,-0.049963872879744,-0.0028548110276461],[0.036635130643845,-0.00059096026234329,-0.0010027842363343]],[[-0.03722096607089,-0.067865967750549,-0.049713104963303],[0.04301829636097,-0.006804071366787,0.01652567461133],[0.076950199902058,0.053753148764372,-0.026657370850444]],[[0.017464248463511,-0.027820710092783,0.078977696597576],[-0.0078383004292846,-0.012631521560252,-0.01687553152442],[0.053147185593843,0.001630533952266,-0.029604680836201]],[[0.059940379112959,0.014313355088234,-0.071450911462307],[0.01798396743834,-0.033964268863201,0.020584009587765],[0.073158636689186,-0.017301185056567,0.060493063181639]],[[-0.17130687832832,-0.020121898502111,-0.096119210124016],[-0.074868962168694,-0.025005830451846,-0.11001379787922],[-0.026286290958524,-0.11553031206131,-0.15465547144413]],[[0.017579158768058,-0.040667269378901,0.07530415803194],[0.0002392621972831,-0.013367840088904,0.033106815069914],[-0.090292617678642,-0.017172308638692,0.01994575932622]],[[-0.04339911043644,-0.10623571276665,-0.10478581488132],[-0.011218955740333,0.051474653184414,0.02355713583529],[0.033578153699636,-0.062176998704672,2.2712079953635e-05]],[[0.025559986010194,-0.033962924033403,-0.020172229036689],[0.055989701300859,0.016302164644003,0.054390907287598],[-0.052948720753193,-0.081477865576744,0.00051539781270549]],[[-0.040581919252872,0.020528549328446,-0.038564257323742],[-0.044660374522209,0.042242880910635,-0.034071039408445],[-0.031973663717508,-0.0080854315310717,0.09491815418005]],[[0.0046989875845611,-0.013901202939451,-0.031094828620553],[0.007681196089834,0.0099293449893594,0.02622639015317],[-0.01452149450779,0.0047912700101733,0.025708163157105]],[[0.06289379298687,0.10878894478083,-0.0018542993348092],[-0.04895943403244,0.10915247350931,0.058129273355007],[0.0054303933866322,-0.0045584067702293,0.077689871191978]],[[-0.043147955089808,-0.0771439447999,-0.037254497408867],[0.023854786530137,0.011281902901828,0.0042230268009007],[-0.0021196978632361,0.017902236431837,0.087710544466972]],[[0.066131912171841,-0.0021509695798159,-0.062274672091007],[0.031145360320807,-0.011840752325952,-0.074036546051502],[0.0083757601678371,-0.039201848208904,0.048953052610159]],[[0.12143099308014,-0.03990375995636,0.010258109308779],[0.0094704553484917,-0.11168558895588,-0.034447781741619],[0.024389477446675,0.0010822584154084,-0.0069838119670749]],[[0.020225644111633,-0.0028680714312941,0.077611021697521],[0.013966951519251,-0.019345793873072,0.0403115414083],[0.09188074618578,-0.037156023085117,0.067583955824375]],[[-0.091318845748901,0.029015354812145,-0.038990892469883],[0.010310807265341,0.052236951887608,0.068383507430553],[0.0023057588841766,0.027017496526241,-0.11435509473085]]],[[[-0.029030032455921,0.02169643342495,-0.0062383348122239],[-0.061037316918373,-0.036191858351231,0.067991368472576],[-0.13673236966133,0.019144447520375,-0.023089505732059]],[[-0.13016709685326,-0.17302159965038,-0.13891568779945],[0.058096114546061,-0.10018440335989,-0.20661267638206],[0.067912310361862,0.092454358935356,-0.0026602691505104]],[[0.01912104524672,0.082180641591549,-0.048718385398388],[-0.11831144243479,-0.084531463682652,0.019885784015059],[-0.022050645202398,-0.022116588428617,-0.053767587989569]],[[-0.041202079504728,0.012453670613468,0.0015162343624979],[-0.013380949385464,-0.08235651999712,-0.090245932340622],[0.033517248928547,0.037944328039885,-0.030720924958587]],[[-0.10503073036671,0.066059194505215,0.047550469636917],[0.014192912727594,0.049793299287558,0.096683502197266],[0.068891912698746,0.024425201117992,-0.11431912332773]],[[-0.072303384542465,-0.0051659648306668,0.03871651366353],[0.060552023351192,0.048014294356108,-0.079986177384853],[0.050416454672813,0.028317991644144,-0.029036769643426]],[[-0.011222290806472,-0.041402507573366,-0.082305908203125],[-0.031966768205166,-0.088962376117706,-0.019934078678489],[0.087255090475082,0.01541216019541,0.013415978290141]],[[0.011772265657783,-0.035265754908323,0.075156100094318],[0.067188911139965,-0.063767679035664,-0.078797608613968],[0.055884342640638,0.07483284920454,0.075702629983425]],[[-0.016497060656548,0.0039925673045218,-0.053535725921392],[-0.070184089243412,0.042724102735519,0.0032233272213489],[0.01021683588624,0.0059843570925295,-0.023142419755459]],[[0.014184005558491,0.075513482093811,0.029084660112858],[0.0064419964328408,-0.052998717874289,0.025245675817132],[-0.16863530874252,-0.020563555881381,-0.07563503831625]],[[0.017093241214752,0.074970625340939,0.088528119027615],[0.010800291784108,0.0080902688205242,-0.068389974534512],[-0.14917123317719,-0.09607195109129,-0.044527430087328]],[[-0.027324153110385,-0.07673567533493,-0.031193474307656],[-0.086969844996929,0.078291535377502,0.0043963771313429],[-0.089654214680195,-0.022323828190565,0.0033323173411191]],[[-0.040023412555456,0.0087980153039098,-0.07147928327322],[-0.070885084569454,-0.030902490019798,0.014259695075452],[0.0051680016331375,-0.061986580491066,0.009845020249486]],[[-0.076254449784756,0.00041005431558006,-0.011647758074105],[0.014699545688927,-0.035877510905266,-0.11732632666826],[-0.042419295758009,0.047127261757851,-0.057201754301786]],[[-0.0070524648763239,0.058008264750242,-0.015324261039495],[0.0056783156469464,0.030022598803043,-0.060181919485331],[-0.07320324331522,0.026990368962288,-0.042256966233253]],[[-0.069705806672573,-0.08916825056076,0.1092182174325],[-0.035627201199532,0.0076077547855675,-0.0094864554703236],[0.054700061678886,0.008608209900558,0.011311670765281]],[[-0.10033193975687,0.030224157497287,0.058593384921551],[-0.069074653089046,0.067296408116817,0.054568156599998],[0.085305154323578,-0.032319229096174,0.049638502299786]],[[0.057480935007334,-0.04715758189559,-0.060334380716085],[0.061138436198235,-0.063230812549591,-0.070906467735767],[0.031914662569761,-0.034604627639055,-0.015356689691544]],[[-0.0041303625330329,-0.0069548091851175,-0.059253893792629],[-0.036291792988777,0.0032566604204476,-0.07201573997736],[0.022631132975221,0.025750566273928,0.033881109207869]],[[0.0026949988678098,-0.052544713020325,-0.017266800627112],[0.032060440629721,-0.010984306223691,0.082908496260643],[-0.017513550817966,-0.0089648896828294,-0.020508639514446]],[[0.055908013135195,-0.0089434077963233,-0.017545843496919],[-0.0072344001382589,-0.090248480439186,-0.008293280377984],[-0.095565497875214,-0.12570786476135,-0.10097762197256]],[[0.012954631820321,-0.041980151087046,0.070320777595043],[0.017435055226088,-0.0378128439188,-0.033157080411911],[-0.062318962067366,-0.0714266076684,-0.1038748845458]],[[-0.064532786607742,-0.1027100533247,-0.074614316225052],[-0.079460769891739,-0.093167349696159,0.00073047523619607],[0.056671407073736,-0.073044583201408,0.052514966577291]],[[0.083437517285347,-0.037258211523294,0.033144276589155],[0.01651837863028,0.072240352630615,0.11035600304604],[-0.022036226466298,0.040570229291916,-0.0010197049705312]],[[0.010341727174819,-0.028470788151026,-0.021560918539762],[-0.052862115204334,-0.012275740504265,0.018457220867276],[-0.10875660181046,-0.068923778831959,0.026591304689646]],[[0.010614113882184,-0.010270268656313,-0.022269546985626],[-0.011528480798006,0.05137762799859,0.099183902144432],[-0.035544868558645,0.088893711566925,0.023422289639711]],[[-0.00034551331191324,0.0017290671821684,-0.08174491673708],[0.078243225812912,0.062109492719173,-0.0027299635112286],[-0.030379122123122,0.025055218487978,0.0164804328233]],[[-0.042330093681812,-0.060540925711393,-0.15761804580688],[0.075877025723457,0.084116064012051,-0.14292107522488],[-0.0012171939015388,0.056637696921825,-0.045924905687571]],[[-0.04168638586998,-0.050018042325974,-0.08400235325098],[0.09467888623476,-0.0054721040651202,-0.039580564945936],[-0.039850551635027,0.063077598810196,0.025921735912561]],[[0.047412730753422,0.019388124346733,0.051914412528276],[0.07970417290926,-0.015477797947824,0.041507799178362],[0.023564489558339,-0.026945237070322,0.034901231527328]],[[0.017600525170565,0.09425837546587,0.011775170452893],[0.13994200527668,0.03726127743721,-0.021634375676513],[0.047496054321527,0.088728658854961,-0.086044505238533]],[[0.10978806763887,0.043439734727144,0.071072220802307],[0.11211552470922,0.022091168910265,-0.023072332143784],[0.13374689221382,-0.026900347322226,-0.12227511405945]],[[0.02215713635087,0.0032534373458475,0.027204643934965],[0.0082679223269224,-0.035528309643269,0.034750863909721],[0.016574705019593,-0.014815721660852,0.063872486352921]],[[0.071599654853344,0.092203460633755,0.018831985071301],[-0.051637005060911,0.037198439240456,0.015326873399317],[-0.04763850569725,0.050779186189175,0.0061033717356622]],[[0.010358457453549,-0.13947735726833,-0.13809645175934],[0.06797256320715,-0.045228909701109,-0.095550343394279],[0.13052688539028,0.0098902303725481,-0.076496109366417]],[[-0.02487338334322,-0.075225129723549,-0.085736475884914],[0.029737671837211,0.033192750066519,0.01205410528928],[-0.030306560918689,0.11376617103815,0.089902937412262]],[[-0.020939534530044,-0.058860544115305,-0.024857707321644],[-0.11662646383047,-0.022166637703776,-0.010464305989444],[-0.12529748678207,-0.040589421987534,0.03738696873188]],[[-0.049662854522467,-0.11592146754265,-0.074632450938225],[0.056029878556728,-0.096027471125126,-0.088595755398273],[-0.018826127052307,0.072299174964428,-0.15843963623047]],[[0.0015278522623703,0.022627074271441,0.020317019894719],[-0.029649315401912,-0.020541617646813,-0.070352420210838],[0.011509790085256,0.042011473327875,-0.041746594011784]],[[0.080527387559414,0.14878863096237,0.029114367440343],[0.021387990564108,-0.0299276933074,0.022072082385421],[-0.043079935014248,-0.049595337361097,-0.0060650892555714]],[[0.054101914167404,0.035109106451273,-0.073741406202316],[0.065465494990349,0.0031440632883459,-0.077964924275875],[-0.029321985319257,0.033280596137047,-0.016117814928293]],[[0.065006099641323,-0.10735814273357,-0.14753140509129],[0.13750828802586,0.095719911158085,-0.0035524794366211],[-0.076455809175968,-0.011895231902599,-0.042354449629784]],[[0.0065019628964365,-0.0043674544431269,0.12629020214081],[0.0047788503579795,-0.089935652911663,0.013177654705942],[-0.035915676504374,0.069790884852409,0.017278393730521]],[[0.014277318492532,0.0096589373424649,-0.018648684024811],[0.046073354780674,-0.027743589133024,-0.058475486934185],[0.092169791460037,-0.011628842912614,-0.048125773668289]],[[0.039473388344049,-0.025461746379733,0.071639314293861],[-0.10127523541451,-0.00016731533105485,0.071436390280724],[-0.098686143755913,-0.038526140153408,0.10804668068886]],[[0.015291788615286,-0.014927546493709,0.088271081447601],[0.047751095145941,0.06555800139904,0.030662341043353],[0.040188085287809,0.028360700234771,9.9920536740683e-05]],[[0.035958603024483,0.028133550658822,-0.11770553141832],[-0.0080232722684741,0.0033097537234426,-0.080933265388012],[-0.012397398240864,0.0029703604523093,0.013634172268212]],[[-0.0068456484004855,0.020966898649931,-0.20354497432709],[0.031009566038847,-0.059521477669477,-0.11410906165838],[-0.038275562226772,0.050800796598196,-0.026044849306345]],[[0.03857572004199,0.033351473510265,0.03354823589325],[0.10607009381056,0.056843504309654,0.0092168627306819],[0.084085874259472,0.056014485657215,0.031510356813669]],[[-0.10576477646828,-0.041599065065384,0.016630839556456],[-0.1038568764925,-0.1008033156395,-0.17996945977211],[0.063481442630291,0.072436712682247,-0.033328387886286]],[[-0.098503209650517,0.013961583375931,0.022726163268089],[-0.046619918197393,-0.040440279990435,-0.044368002563715],[-0.0093256877735257,0.028217371553183,-0.016461560502648]],[[-0.052442274987698,0.12552919983864,0.20971362292767],[-0.023832805454731,-0.12255153805017,-0.0038998234085739],[0.12863889336586,0.009074448607862,0.0020906911231577]],[[-0.060646295547485,0.047158110886812,-0.085035994648933],[0.013177843764424,0.059546507894993,-0.1308116465807],[-0.021817695349455,0.029929235577583,-0.062634207308292]],[[-0.074163183569908,0.067062869668007,-0.027971247211099],[-0.021569041535258,0.014375703409314,0.039126560091972],[-0.026499697938561,0.042526483535767,-0.028307432308793]],[[-0.037735056132078,0.020482216030359,-0.061442006379366],[-0.020220311358571,0.013779346831143,-0.0586768835783],[0.1703559756279,0.05634843185544,-0.036096557974815]],[[0.041340861469507,-0.030045244842768,-0.098497815430164],[0.10108425468206,0.019981173798442,-0.047640804201365],[0.01329343020916,0.019046764820814,0.059592287987471]],[[-0.056954704225063,0.067923419177532,0.01666365750134],[-0.10008392482996,-0.063910983502865,-0.017370000481606],[0.0048458063974977,-0.032914374023676,0.0049698743969202]],[[-0.011137626133859,-0.0020134998485446,0.044787280261517],[-0.094030238687992,-0.053057800978422,-0.0028755480889231],[0.012718900106847,0.078450076282024,0.033445995301008]],[[0.029159653931856,0.15663975477219,0.10910373926163],[-0.067586630582809,0.015334131196141,0.14656209945679],[-0.068916186690331,-0.0024895640090108,0.057884529232979]],[[0.018423918634653,-0.011044069193304,0.025231510400772],[-0.011065511964262,-0.053918432444334,-0.036855071783066],[0.025267783552408,0.026326576247811,0.027124097570777]],[[0.033082067966461,-0.048133805394173,-0.11382123082876],[0.014196390286088,-0.01980478130281,-0.02702727355063],[-0.017595993354917,0.0087533639743924,0.048940986394882]],[[0.015324299223721,0.0090406509116292,-0.082826614379883],[-0.0021257856860757,-0.010375262238085,0.07633001357317],[-0.070128172636032,-0.072679474949837,-0.15875762701035]],[[0.031051939353347,-0.097300194203854,-0.01257286593318],[0.011741871014237,-0.092905476689339,0.087339043617249],[0.02307871170342,-0.0095058055594563,-0.082132332026958]],[[0.030051352456212,-0.03699291869998,-0.092968627810478],[-0.056453045457602,0.011334618553519,-0.033666033297777],[-0.060261655598879,-0.017702631652355,0.026941357180476]]],[[[-0.029015535488725,0.026018943637609,-0.047161694616079],[-0.018793510273099,0.0079473005607724,0.12024392187595],[0.016980655491352,0.015451399609447,-0.13168840110302]],[[0.091239243745804,0.0019304513698444,0.044422961771488],[-0.045146662741899,0.005264166276902,0.020787503570318],[0.02375502884388,0.01126085780561,-0.041367590427399]],[[0.025439143180847,0.037202298641205,-0.044600713998079],[-0.091191664338112,-0.053104437887669,-0.080961041152477],[-0.0083066802471876,-0.089082509279251,-0.010291995480657]],[[-0.07225327193737,0.054073501378298,-0.00032408750848845],[0.050094820559025,-0.041815668344498,-0.072045259177685],[0.012293669395149,-0.015474332496524,0.031630080193281]],[[0.13073141872883,-0.0075002573430538,0.030145846307278],[0.08843407779932,0.013938180170953,0.021805120632052],[-0.089532345533371,-0.063533790409565,-0.051619406789541]],[[-0.046345360577106,0.031749952584505,0.068202190101147],[-0.022829044610262,0.050403047353029,0.10286271572113],[-0.058485873043537,-0.033684466034174,-0.049959927797318]],[[-0.050570666790009,0.050203736871481,0.05453472211957],[-0.088509544730186,-0.048248901963234,0.062903217971325],[0.047053404152393,-0.0060790814459324,-0.011952421627939]],[[0.022060016170144,0.045522831380367,-0.048562362790108],[-0.050265166908503,-0.05910138040781,-0.09748400747776],[-0.038718778640032,0.096458420157433,0.078315377235413]],[[0.15115724503994,-0.072844766080379,0.20711331069469],[-0.10547945648432,0.018178483471274,0.044184513390064],[-0.080478563904762,-0.061640109866858,-0.0274907220155]],[[-0.047405641525984,-0.057137347757816,-0.048511508852243],[0.05407578125596,-0.010380629450083,0.048600733280182],[0.0028109203558415,-0.055549427866936,0.0023662897292525]],[[0.0063290507532656,-0.046757005155087,0.033993728458881],[-0.067099891602993,0.0088339075446129,0.063381217420101],[-0.063356265425682,-0.064098007977009,0.028338110074401]],[[0.014680896885693,0.056437660008669,-0.051344726234674],[0.0028935428708792,0.015754459425807,0.033628311008215],[-0.039089623838663,-0.010002505965531,0.05276433005929]],[[-0.019677625969052,-0.0086864158511162,-0.10639539361],[-0.1250826716423,-0.032617226243019,0.0045401146635413],[0.03845277056098,-7.3085466283374e-06,-0.0074328565970063]],[[-0.023713348433375,0.019699038937688,0.035460866987705],[-0.059791907668114,-0.0096200378611684,-0.0430688560009],[0.070716090500355,0.0047888187691569,-0.030187148600817]],[[-0.085753038525581,-0.010241385549307,0.028815917670727],[-0.072303533554077,-0.049320325255394,0.12322858721018],[0.0065612872131169,-0.049848094582558,-0.022346204146743]],[[0.042607601732016,-0.050273112952709,0.0085257077589631],[0.082485057413578,-0.069644547998905,0.0039968215860426],[-0.055069141089916,0.01937173679471,-0.12156745791435]],[[-0.012426218949258,-0.14878363907337,-0.022350609302521],[0.0041742157191038,0.081166431307793,-0.0049009402282536],[0.0013251876225695,-0.063575357198715,0.062889762222767]],[[-0.02098661288619,0.038811720907688,-0.011908064596355],[0.14967454969883,0.072533540427685,0.038992121815681],[0.076393909752369,0.03043831512332,-0.054115042090416]],[[0.0058020609430969,-0.051818501204252,-0.045536953955889],[0.0035541863180697,0.032946310937405,0.0092551652342081],[0.030188588425517,0.045707449316978,-0.046062476933002]],[[-0.032833509147167,-0.046438030898571,0.021682158112526],[-0.059749476611614,-0.024181287735701,0.089240454137325],[0.045710153877735,0.018950220197439,0.039510767906904]],[[-0.0074075018055737,-0.035309940576553,-0.023470195010304],[-0.030458958819509,-0.085755050182343,-0.029725151136518],[0.005861503072083,-0.029980881139636,-0.047752279788256]],[[-0.086984425783157,-0.16290171444416,-0.078115545213223],[0.0050674127414823,0.085285022854805,-0.067700140178204],[-0.0042655533179641,-0.046328842639923,0.10482225567102]],[[0.025163793936372,0.035115960985422,0.0091730048879981],[-0.092937253415585,-0.029792711138725,0.07094931602478],[-0.030035743489861,0.068404227495193,0.088082924485207]],[[0.018416976556182,-0.0044043278321624,-0.016571115702391],[0.0093729514628649,0.12261226773262,0.074351496994495],[0.086874417960644,0.049171715974808,-0.022796638309956]],[[-0.02110867574811,-0.1483169645071,-0.07135821133852],[-0.01512733194977,0.011130633763969,0.063489332795143],[-0.00097392132738605,-0.012457810342312,0.037532575428486]],[[0.018651252612472,0.032854210585356,0.016577627509832],[0.034988403320312,0.037432570010424,0.019705621525645],[0.0035292007960379,-0.022778803482652,-0.038432095199823]],[[0.043885480612516,0.10081646591425,0.039312053471804],[0.062141105532646,0.12017995864153,0.03302589058876],[0.0082733612507582,0.036843303591013,-0.041896156966686]],[[0.015823487192392,-0.098438464105129,0.037944555282593],[0.08358958363533,0.014445842243731,0.019693803042173],[0.02807442098856,-0.066148035228252,-0.03846313431859]],[[0.069786950945854,0.02535848133266,0.061979055404663],[-0.057032003998756,-0.0069784736260772,-0.020350620150566],[0.1229463070631,0.029298309236765,-0.080842979252338]],[[0.0017075536306947,-0.070282705128193,0.093696966767311],[0.012402689084411,-0.093868136405945,0.097659021615982],[-0.041465308517218,-0.0078079369850457,0.057527832686901]],[[0.09786044806242,0.04841935634613,-0.099957428872585],[0.011096304282546,-0.043597761541605,0.026517702266574],[0.053894802927971,0.074197299778461,0.0039977901615202]],[[-0.03530540689826,-0.0016966458642855,-0.011679749004543],[-0.017451249063015,0.039467129856348,-0.04024550691247],[0.028249632567167,0.00010434565774631,-0.068946354091167]],[[-0.053325701504946,0.032459907233715,0.036704979836941],[-0.043570812791586,0.014794752933085,0.0021765476558357],[-0.079567991197109,-0.016968157142401,0.072851441800594]],[[-0.0034785885363817,0.0073743117973208,-0.0091043189167976],[-0.10522290319204,-0.051318302750587,-0.0056334948167205],[-0.040513057261705,-0.0021297482308,0.0019490685081109]],[[-0.078893028199673,-0.052652165293694,0.088804751634598],[0.088325366377831,0.0025731571950018,-0.023635365068913],[-0.010973074473441,-0.083311960101128,-0.050659921020269]],[[0.03281082957983,0.028303066268563,-0.088434271514416],[-0.017922954633832,0.035271368920803,0.015006536617875],[-0.00070039631100371,0.020939221605659,0.056644130498171]],[[0.020137913525105,-0.077187448740005,-0.12310130149126],[-0.026139605790377,0.066827274858952,-0.024553403258324],[0.063075244426727,0.05637115240097,-0.064146280288696]],[[0.10861077904701,0.012383260764182,0.065340541303158],[0.0019523967057467,-0.022966969758272,0.057745683938265],[-0.034310657531023,-0.04652326181531,0.014764499850571]],[[-0.0021633510477841,-0.031819932162762,0.0057184910401702],[-0.01146843098104,0.0078878300264478,0.035728689283133],[-0.033044703304768,-0.067386105656624,-0.071879044175148]],[[-0.023672088980675,-0.071228727698326,-0.12442989647388],[0.024309765547514,-0.0092455390840769,-0.0087525006383657],[-0.0079435585066676,-0.00010715340613388,0.067750692367554]],[[-0.099798485636711,0.0019151053857058,-0.066988185048103],[-0.013770822435617,-0.024204650893807,0.051816765218973],[0.1144135221839,0.0016185757704079,0.026354730129242]],[[-0.047782622277737,0.010784828104079,0.060269925743341],[-0.091031640768051,0.04531030729413,0.19055114686489],[-0.024618158116937,-0.019458940252662,0.035844717174768]],[[-0.065290160477161,0.020379077643156,0.025411119684577],[0.012139002792537,-0.057674799114466,-0.071308851242065],[0.042485915124416,0.02900848723948,0.089429564774036]],[[-0.080500714480877,0.011220633052289,0.029300320893526],[0.002897571073845,0.023466110229492,-0.057451691478491],[0.051332615315914,0.0093158818781376,-0.042791966348886]],[[-0.092703454196453,0.060399156063795,0.039170492440462],[0.060121834278107,0.066135331988335,0.041747890412807],[-0.047963064163923,-0.043971810489893,0.055270865559578]],[[0.0026431882288307,0.031789403408766,-0.046003092080355],[0.06089149042964,-0.018034175038338,-0.0022648740559816],[0.1125028654933,-0.06955648213625,-0.038405153900385]],[[-0.050342913717031,0.06226422637701,0.085878700017929],[-0.019599724560976,-0.11699875444174,-0.013371950946748],[0.041453905403614,-0.078113168478012,0.0070306770503521]],[[0.10529457032681,0.019240392372012,-0.00053214031504467],[-0.094621501863003,0.0056458613835275,0.15306724607944],[-0.062513433396816,-0.07826790958643,-0.01652666926384]],[[-0.010410369373858,0.0015860921703279,0.0021044772583991],[0.011594852432609,-0.01523915771395,0.036312431097031],[0.050661284476519,-0.00027153512928635,0.0081097362563014]],[[-0.025051958858967,-0.04237412288785,0.0059834462590516],[0.094885140657425,-0.00089422869496047,-0.13974747061729],[-0.020787535235286,-0.06324890255928,-0.041988722980022]],[[-0.0536919683218,-0.038259115070105,0.09747813642025],[0.011014022864401,-0.045929487794638,-0.052855350077152],[0.017034688964486,-0.057459652423859,0.020499389618635]],[[-0.010662499815226,0.12400513142347,0.053599216043949],[0.020539941266179,-0.044770635664463,0.027176955714822],[0.11315031349659,0.17253971099854,0.020192256197333]],[[0.058912094682455,-0.018465613946319,-0.024071861058474],[0.048620462417603,-0.042231798171997,-0.10896188020706],[0.00076753878965974,0.0076681841164827,-0.082743801176548]],[[-0.0063209254294634,-0.064051702618599,-0.047148168087006],[-0.019211485981941,0.059159263968468,0.10342950373888],[-0.042296852916479,0.04784806445241,0.072163194417953]],[[0.062586575746536,0.018290629610419,0.037239536643028],[0.090004280209541,-0.05404257029295,-0.052336033433676],[0.034844476729631,0.069719158113003,-0.036924231797457]],[[0.00024524849141017,0.086322113871574,-0.0011675891000777],[0.02691225707531,-0.005809327121824,0.010164032690227],[-0.045534182339907,-0.0067045306786895,-0.0089936694130301]],[[-0.097535476088524,0.036042675375938,0.051584240049124],[0.069470077753067,0.031639520078897,-0.027733730152249],[0.10442186892033,0.084723845124245,-0.045149683952332]],[[0.0019618729129434,-0.0020330804400146,-0.044621702283621],[-0.0016564845573157,0.070826292037964,0.078428693115711],[-0.1507465839386,-0.12476658076048,-0.038923602551222]],[[0.041464287787676,0.033617168664932,0.010178583674133],[0.050449553877115,0.01960314065218,0.066724464297295],[-0.020127207040787,0.050879504531622,0.055858962237835]],[[0.038139253854752,0.033665735274553,-0.017770644277334],[0.025131830945611,-0.0056891483254731,-0.057172071188688],[-0.018963821232319,-0.013538978993893,0.039773900061846]],[[-0.093733876943588,-0.0017470788443461,-0.017792822793126],[0.0034346783068031,0.023201184347272,0.0099378554150462],[-0.023629665374756,-0.010634744539857,-0.044096622616053]],[[0.032560348510742,-0.027627030387521,0.0043538147583604],[0.069066248834133,0.026688158512115,-0.0028571665752679],[-0.071752324700356,0.083421722054482,-0.078193008899689]],[[-0.015933055430651,0.01487535610795,-0.045152649283409],[-0.072234489023685,-0.060455858707428,0.0088378256186843],[0.05135141313076,0.022988893091679,0.022863756865263]],[[0.066788002848625,0.028414668515325,0.026878744363785],[0.076955117285252,0.022891793400049,0.012973693199456],[-0.095682956278324,-0.081396415829659,-0.013328551314771]]],[[[-0.048752188682556,-0.07412938773632,0.066858991980553],[-0.052975602447987,-0.044688578695059,-0.0055766832083464],[0.049724917858839,-0.015938488766551,-0.12122505158186]],[[0.023251598700881,-0.037784244865179,-0.042808875441551],[-0.09986923635006,0.049279980361462,-0.023156920447946],[0.00046062617911957,0.080013453960419,0.019482953473926]],[[0.026958305388689,-0.046326439827681,-0.062008760869503],[0.036562588065863,-0.030489539727569,-0.16176424920559],[0.018955947831273,0.050251394510269,-0.049174897372723]],[[-0.051056694239378,0.027903012931347,-0.014503951184452],[0.0067667085677385,-0.02644925378263,0.036652039736509],[-0.022199459373951,-0.076607130467892,0.055579330772161]],[[0.0075098918750882,-0.17312651872635,-0.02844275161624],[0.093661390244961,0.059502609074116,0.052573006600142],[-0.019250482320786,0.064276523888111,0.016343327239156]],[[-0.017396437004209,0.10137093067169,-0.026376012712717],[0.092665642499924,-0.035916194319725,-0.014329131692648],[-0.044116664677858,0.028845861554146,-0.060056209564209]],[[0.041541922837496,0.075687356293201,0.022158743813634],[0.0078033278696239,-0.015341756865382,-0.0025757369585335],[-0.0081365332007408,-0.014409717172384,-0.052225690335035]],[[-0.04154397547245,-0.0057674325071275,-0.036257725208998],[0.011657287366688,-0.050294365733862,0.046147976070642],[-0.032734509557486,-0.023394046351314,-0.023121882230043]],[[-0.03594945371151,-0.062026862055063,0.022046260535717],[-0.019673932343721,-0.10094436258078,0.055307131260633],[0.039916258305311,-0.015904657542706,-0.046532772481441]],[[0.085893400013447,-0.065063752233982,0.0083447331562638],[0.0022663623094559,0.06884104013443,0.0365633033216],[-0.025218993425369,-0.016690665856004,-0.1218491718173]],[[0.037541434168816,0.039169494062662,0.019075153395534],[0.026866877451539,0.020314553752542,-0.0022757791448385],[0.020476130768657,-0.044864110648632,0.022324940189719]],[[0.08319479227066,0.082838959991932,-0.070322334766388],[-0.12845130264759,-0.05073431879282,-0.084921509027481],[-0.01844996213913,-0.02722691744566,-0.013563388958573]],[[0.054183222353458,-0.015886710956693,-0.038201011717319],[0.021694477647543,-0.051519066095352,-0.03525498509407],[-0.039178613573313,-0.080207966268063,-0.032326117157936]],[[0.10184814035892,0.0045282072387636,-0.030783522874117],[0.031399141997099,0.028297733515501,-0.0037025979254395],[0.054481141269207,-0.048898655921221,0.08914041519165]],[[-0.068761825561523,0.044427860528231,-0.0041518043726683],[-0.059069193899632,-0.041048400104046,-0.011790399439633],[0.017116650938988,-0.083258964121342,0.0025920839980245]],[[0.090161740779877,0.096712954342365,-0.027586054056883],[0.019252430647612,-0.00065109675051644,0.024407947435975],[-0.00029916301718913,0.10228028893471,-0.0033169493544847]],[[-0.012105396017432,0.02170018479228,-0.19920311868191],[0.091945461928844,0.0047157858498394,0.0214440561831],[0.019222209230065,-0.094377852976322,-0.029260154813528]],[[0.088999733328819,0.022714480757713,0.058392126113176],[0.088990665972233,-0.0082902917638421,0.012358662672341],[-0.012063072994351,-0.044292859733105,0.030364377424121]],[[0.026055440306664,-0.077394358813763,-0.048203937709332],[0.020205266773701,0.080214776098728,-0.037875082343817],[0.024836568161845,0.020578848198056,-0.071189649403095]],[[0.0070961746387184,0.012387418188155,-0.0032849120907485],[0.04018522426486,0.0094748102128506,-0.078212805092335],[0.030992902815342,0.011887145228684,0.019091440364718]],[[0.036823011934757,-0.058332610875368,0.049890175461769],[-0.0077551901340485,0.07042084634304,0.01931681483984],[0.065511643886566,0.021497642621398,0.032819204032421]],[[0.0014069296885282,0.014417759142816,-0.013641710393131],[-0.0013531260192394,-0.11404937505722,-0.020618768408895],[0.066282019019127,0.095233716070652,-0.094831876456738]],[[0.074997626245022,0.052590258419514,0.068230554461479],[-0.022486761212349,-0.16763027012348,-0.046825930476189],[-0.035452745854855,-0.10903782397509,-0.055841557681561]],[[0.091564528644085,0.074097260832787,0.065036699175835],[0.0203986633569,-0.074410617351532,0.045131642371416],[0.054046351462603,0.058177914470434,0.11919145286083]],[[-0.047886870801449,0.031855579465628,-0.043836608529091],[-0.029433431103826,-0.017776396125555,-0.061979457736015],[0.010661282576621,0.057855144143105,0.014707688242197]],[[0.018879989162087,0.032569445669651,-0.023252109065652],[-0.010888352058828,0.023691892623901,0.054367370903492],[-0.01805716380477,0.050576031208038,0.0026599415577948]],[[0.080564334988594,0.040418051183224,0.024529127404094],[-0.036037467420101,-0.019747618585825,0.058539483696222],[-0.11065106838942,-0.079928912222385,0.058814242482185]],[[0.039884991943836,-0.0037697548978031,-0.044851664453745],[0.031661558896303,-0.0027786283753812,0.060612633824348],[-0.0028058683965355,0.031015766784549,0.024156503379345]],[[-0.14078141748905,0.12620887160301,0.043142233043909],[0.0069215474650264,0.050530459731817,-0.082188695669174],[0.0019640976097435,-0.028863951563835,0.024079564958811]],[[-0.033331219106913,-0.034833867102861,-0.01567804440856],[-0.056964099407196,-0.0081938719376922,0.0046982993371785],[0.010076264850795,-0.045334283262491,0.02499713934958]],[[-0.059550955891609,0.009536387398839,-0.03696521744132],[-0.081405006349087,-0.11017750203609,-0.061785284429789],[-0.02314049936831,-0.031794100999832,-0.0035074157640338]],[[-0.027980819344521,-0.11099975556135,0.03337137401104],[0.011462419293821,-0.0072001479566097,0.088768735527992],[-0.011364622041583,-0.025777768343687,-0.035235475748777]],[[-0.056037459522486,0.025411801412702,-0.00041663774754852],[0.027852442115545,0.020456321537495,0.040817387402058],[0.010545223020017,-0.068061046302319,-0.024057179689407]],[[0.070882461965084,0.011397797614336,-0.044794924557209],[-0.0093448916450143,0.033301506191492,0.0089263860136271],[0.03293839469552,-0.076516434550285,0.0068065267987549]],[[0.083880200982094,0.031736638396978,0.04519060626626],[0.072745874524117,0.068053714931011,-0.0076338886283338],[-0.0144601771608,-0.019758524373174,-0.024765282869339]],[[-0.023846849799156,0.04180958494544,-0.028902707621455],[-0.0093212155625224,-0.090487688779831,0.053075093775988],[-0.00088169844821095,-0.012616422958672,0.016806213185191]],[[0.024198528379202,0.010207754559815,0.027136025950313],[-0.066314645111561,0.043184399604797,-0.12736143171787],[-0.014282829128206,0.025471968576312,-0.019399402663112]],[[-0.054183080792427,0.032463509589434,0.032589100301266],[-0.027856769040227,0.036413811147213,0.0027186146471649],[-0.038795657455921,0.0036622250918299,-0.1527461707592]],[[-0.083521462976933,-0.13680571317673,-0.11640243977308],[-0.030131170526147,0.049371238797903,-0.099227838218212],[0.041098054498434,0.018644699826837,-0.0062391264364123]],[[0.075329840183258,-0.042910918593407,-0.037815678864717],[-0.04263349249959,0.04027907922864,0.031028380617499],[0.075582005083561,-0.075891926884651,-0.01443482004106]],[[0.025271710008383,0.040924113243818,0.013955830596387],[0.046872105449438,0.09879719465971,0.11407811939716],[-0.0083741238340735,-0.028898803517222,0.034393072128296]],[[0.037570986896753,-0.017676662653685,-0.0057369824498892],[0.047873418778181,-0.10110381990671,-0.0079437345266342],[0.036709625273943,-0.070206567645073,-0.07253535836935]],[[-0.088666632771492,-0.056866560131311,0.030665585771203],[0.051747653633356,0.080699317157269,0.041673295199871],[0.0047514755278826,0.0532539896667,-0.0059612235054374]],[[-0.096347384154797,0.0056406226940453,-0.12998701632023],[-0.05693656951189,-0.044272530823946,-0.003376278327778],[0.060543049126863,0.025222055613995,-0.045220818370581]],[[-0.035614516586065,0.13005790114403,0.054779715836048],[-0.042330160737038,-0.0032022802624851,0.084752589464188],[0.0066980640403926,-0.038678504526615,0.040878500789404]],[[-0.063115574419498,0.0097615495324135,-0.066792890429497],[0.036836817860603,-0.017947632819414,-0.081159316003323],[0.045881770551205,0.0039017768576741,-0.018728092312813]],[[-0.065851777791977,0.017562288790941,0.0050226277671754],[-0.042360994964838,-0.095784157514572,-0.12064915895462],[0.022073030471802,-0.075776688754559,0.033374574035406]],[[0.082310780882835,-0.02390824817121,0.013798612169921],[-0.096842177212238,-0.0332973562181,-0.05469086393714],[0.071194410324097,-0.013886202126741,-0.052646432071924]],[[-0.021850926801562,0.043271329253912,-0.034481197595596],[0.0022040286567062,-0.0087101925164461,-0.05329717695713],[-0.058369435369968,-0.060202460736036,0.0023160798009485]],[[0.066124431788921,0.076756834983826,0.026814855635166],[-0.02270814217627,0.014074828475714,0.14085024595261],[0.064749859273434,0.01022229809314,0.01761264167726]],[[-0.005107135977596,0.056426528841257,0.049391720443964],[0.030147429555655,0.088191039860249,0.030614752322435],[-0.034238986670971,-0.11825929582119,-0.01381416618824]],[[-0.0068465028889477,0.067797981202602,0.073580197989941],[0.0064857415854931,0.13091644644737,0.14283539354801],[0.069130972027779,0.04574416205287,0.09373489767313]],[[0.0079065589234233,0.023489536717534,-0.071698792278767],[-0.059355527162552,-0.030377689749002,-0.05234183371067],[0.03779274597764,0.04568675160408,-0.067159958183765]],[[0.13665008544922,0.0036454347427934,0.0026082987897098],[-0.055459246039391,-0.036801364272833,-0.01333306171],[-0.07602072507143,-0.095068231225014,0.038768172264099]],[[0.05333311855793,0.0092160487547517,0.0096885580569506],[0.089616008102894,0.058441858738661,0.067583754658699],[0.062326207756996,0.0071136616170406,0.074884742498398]],[[0.017902221530676,0.022107629105449,-0.055509082973003],[0.016604488715529,-0.0880421474576,-0.039925348013639],[-0.086830854415894,-0.044150061905384,0.057225663214922]],[[-0.060328654944897,0.19527125358582,-0.0039410828612745],[0.049972951412201,0.054418958723545,-0.021735530346632],[0.0042668911628425,0.05510563775897,-0.031857386231422]],[[-0.00037821076693945,0.02778997272253,0.045297488570213],[0.0040035881102085,0.020129492506385,-0.044482160359621],[-0.10085258632898,0.011271816678345,-0.040690701454878]],[[0.08726142346859,-2.7426343876868e-05,0.057550102472305],[0.04880291223526,0.05152190476656,0.042821902781725],[0.099297970533371,0.064118154346943,0.050170376896858]],[[0.014392961747944,-0.021741058677435,-0.016920333728194],[-0.042532794177532,0.0074973716400564,-0.0039688306860626],[-0.0048423577100039,0.054737880825996,0.034131806343794]],[[-0.063831366598606,-0.003875574329868,0.036091018468142],[0.024618456140161,-0.029667856171727,-0.076545804738998],[-0.031665965914726,-0.025426344946027,-0.019360857084394]],[[-0.0080673089250922,0.021226212382317,-0.0082945572212338],[0.040253721177578,0.014060457237065,0.022826993837953],[-0.024295892566442,0.046450842171907,-0.042102359235287]],[[-0.037401560693979,-0.030924016609788,-0.0051510808989406],[0.033277325332165,0.045184951275587,0.0032329724635929],[-0.052550032734871,-0.048102412372828,-0.01241950597614]],[[0.047326844185591,-0.05293820425868,-0.014959007501602],[0.0052683679386973,0.052920177578926,-0.013702691532671],[-0.032145328819752,-0.039919521659613,-0.016440879553556]]],[[[0.040344186127186,-0.033439159393311,-0.047339424490929],[-0.028176700696349,0.068473950028419,0.0092314444482327],[0.19869802892208,0.14173437654972,0.11634146422148]],[[0.044872060418129,-0.054458722472191,-0.12221460044384],[-0.051415577530861,0.095755651593208,9.2918635345995e-05],[-0.093730084598064,0.02796333655715,-0.047011576592922]],[[-0.0017256989376619,-0.095322765409946,-0.037170153111219],[-0.019857479259372,-0.035502038896084,-0.0047484897077084],[0.046457976102829,0.055515803396702,0.048541251569986]],[[-0.022718055173755,0.014717464335263,0.01750560477376],[-0.0022775125689805,-0.020908446982503,-0.010897051542997],[0.014845271594822,0.07704022526741,-0.068519771099091]],[[-0.057214111089706,0.0031723957508802,0.090862475335598],[0.026195101439953,-0.062416054308414,0.059529792517424],[0.044941950589418,-0.049873739480972,0.034973926842213]],[[0.04020357131958,-0.076499350368977,-0.01661660708487],[-0.041355516761541,0.017190324142575,0.0018452436197549],[0.065834656357765,-0.038419462740421,-0.022765941917896]],[[-0.084716156125069,-0.055970747023821,-0.027489265426993],[0.05064282566309,0.018578052520752,-0.065387472510338],[0.053243517875671,-0.027488965541124,-0.026530385017395]],[[0.020768236368895,0.030360639095306,0.12832589447498],[-0.032081827521324,0.0010785890044644,-0.035790003836155],[-0.014628857374191,0.055711977183819,0.076799601316452]],[[-0.067645184695721,-0.0059913508594036,0.089198403060436],[0.016360104084015,-0.0031719175167382,-0.021468257531524],[0.097144693136215,-0.051397066563368,-0.018848353996873]],[[0.087317928671837,0.025338323786855,0.046235918998718],[-0.0036276008468121,0.010371211916208,-0.090259075164795],[0.019822716712952,-0.071801416575909,-0.0072863036766648]],[[-0.02640619315207,0.083691544830799,-0.059478189796209],[-0.019440645352006,0.024050870910287,-0.033282615244389],[0.086203351616859,0.068421758711338,0.03407671675086]],[[0.02207837626338,-0.014938313513994,-0.10572355240583],[-0.072010338306427,-0.064573779702187,0.016957275569439],[-0.036573976278305,-0.043639969080687,0.047758024185896]],[[-0.037983540445566,-0.11623377352953,0.065368711948395],[-0.028639126569033,-0.061103265732527,0.0041851964779198],[0.23089398443699,0.16061462461948,0.063088066875935]],[[0.021535504609346,-0.013663240708411,-0.093872353434563],[0.023763574659824,-0.014802910387516,-0.044810749590397],[-0.01211962569505,-0.00074920407496393,0.0049364785663784]],[[-0.053041987121105,-0.030589589849114,-0.030150279402733],[0.029058776795864,-0.045135952532291,0.03777826949954],[-0.004954228643328,-0.004736328497529,0.021599553525448]],[[0.076055876910686,0.061686173081398,0.087291575968266],[-0.084037527441978,-0.017952116206288,-0.0092254662886262],[-0.069663800299168,0.0076754726469517,0.051405433565378]],[[-0.035683296620846,0.0034525108058006,-0.028935870155692],[-0.036929089576006,-0.0053125433623791,-0.057144675403833],[-0.0034881727769971,-0.043378837406635,0.032879617065191]],[[-0.040958307683468,0.04431277513504,-0.073599368333817],[-0.017483610659838,0.014218394644558,-0.020070502534509],[-0.03853676840663,0.092678353190422,0.089658044278622]],[[-0.085560195147991,0.08785118162632,0.002501105889678],[0.024382362142205,-0.018071072176099,-0.029840042814612],[-0.044578589498997,0.073290899395943,-0.0098836040124297]],[[0.025616912171245,-0.042319860309362,-0.046225778758526],[-0.040705263614655,0.020180253311992,-0.028820490464568],[0.042281307280064,0.0028537753969431,0.065293975174427]],[[0.030069215223193,-0.025503383949399,0.049511056393385],[-0.021733932197094,-0.11612900346518,0.016895838081837],[0.010300602763891,0.078413046896458,-0.050687458366156]],[[-0.029314815998077,0.025960057973862,0.14327372610569],[-0.14990700781345,0.053631495684385,-0.0082092899829149],[-0.11872543394566,-0.013052375987172,-0.079069994390011]],[[-0.0088487071916461,0.085463024675846,-0.088542401790619],[-0.042158093303442,-0.071229800581932,0.015403022989631],[-0.0700638666749,-0.1064909696579,-0.0071452278643847]],[[0.15347266197205,-0.024124950170517,0.123381100595],[0.10136418789625,0.023385018110275,0.17089040577412],[0.0039958138950169,0.043083231896162,0.040974117815495]],[[0.016161747276783,-0.078910902142525,0.015327069908381],[-0.067095831036568,-0.052577245980501,-0.077366396784782],[0.062551639974117,0.070085011422634,-0.12623099982738]],[[0.0038435230962932,-0.02456078492105,0.015634465962648],[0.013513501733541,0.022849576547742,-0.033463589847088],[0.040995787829161,0.039831813424826,-0.015686821192503]],[[-0.051365353167057,-0.017632659524679,0.012386228889227],[-0.00030361680546775,0.14632923901081,0.038452360779047],[0.014363765716553,0.024456903338432,0.061837274581194]],[[-0.080499283969402,0.0091297728940845,-0.026853151619434],[0.03140752017498,-0.099070765078068,-0.061290297657251],[0.036522015929222,-0.043720308691263,-0.017229961231351]],[[-0.028059564530849,0.0326136238873,0.017671752721071],[0.031004827469587,0.078289031982422,-0.11190667748451],[-0.0062264362350106,-0.042502202093601,0.03741492703557]],[[-0.11458745598793,-0.090635493397713,0.18639132380486],[-0.077844977378845,0.076120190322399,0.069426283240318],[-0.090078793466091,0.027222814038396,0.051649209111929]],[[0.038204748183489,0.0095999464392662,0.095409356057644],[0.016151940450072,0.062190372496843,-0.029559822753072],[-0.001976307714358,0.037168763577938,0.06269896030426]],[[-0.039978057146072,-0.15799926221371,0.10424523800611],[-0.019342442974448,-0.018319677561522,0.037009168416262],[0.007417272310704,-0.29658845067024,-0.097998656332493]],[[0.0087066190317273,-0.0029981860425323,0.048031367361546],[0.0085239624604583,-0.0017954063368961,-0.046414509415627],[-0.050824355334044,-0.022002585232258,0.049812432378531]],[[-0.0342056453228,-0.079211883246899,-0.14628741145134],[-0.012295647524297,-0.040763132274151,0.06080025061965],[0.15665479004383,0.072723023593426,-0.049174845218658]],[[0.0042659281753004,-0.13856318593025,-0.087083570659161],[0.033114437013865,-0.16656769812107,-0.033649872988462],[-0.029370009899139,-0.080820232629776,-0.14215709269047]],[[0.014881455339491,-0.039134562015533,0.037661951035261],[-0.086970500648022,-0.048010800033808,-0.051849596202374],[-0.038608264178038,0.063837483525276,-0.0085885282605886]],[[-0.063686266541481,-0.24598222970963,-0.08463954180479],[0.016269870102406,-0.029449317604303,0.004483918659389],[0.029756844043732,-0.11161737143993,-0.016719309613109]],[[-0.043726723641157,-0.05608993023634,0.013590269722044],[0.026371665298939,0.0017953105270863,0.05687565356493],[-0.024064667522907,-0.02354053966701,-0.035992011427879]],[[0.086368307471275,0.11786019057035,-0.11535658687353],[0.015988828614354,-0.1156809926033,-0.083805814385414],[-0.047132689505816,-0.081925682723522,-0.028843317180872]],[[-0.048238843679428,-0.029821462929249,0.031563717871904],[-0.017646364867687,-0.013365335762501,-0.067524246871471],[0.01783767528832,0.061520613729954,-0.018466537818313]],[[0.14217576384544,0.056002408266068,0.0046191508881748],[-0.019550090655684,-0.062841229140759,-0.04732458665967],[0.0028140738140792,-0.048567473888397,0.082260370254517]],[[-0.0072301421314478,0.09095424413681,0.1055024266243],[-0.11078394949436,-0.034370265901089,-0.023876126855612],[-0.049153629690409,0.1123058795929,-0.13731327652931]],[[0.049300398677588,-0.00093839014880359,0.045780777931213],[-0.011145630851388,-0.015815561637282,0.049451142549515],[0.1603484749794,0.085710056126118,0.10436091572046]],[[-0.11618645489216,-0.031450808048248,-0.031023737043142],[0.028511807322502,0.04986610263586,0.020372200757265],[0.00036160188028589,0.0079006152227521,-0.0029680300503969]],[[-0.025237735360861,-0.044916082173586,0.02535717189312],[-0.052057892084122,-0.00099907896947116,-0.078895933926105],[-0.051724225282669,-0.17199458181858,0.017081923782825]],[[-0.071850039064884,0.040757570415735,-0.034086883068085],[-0.00152353127487,-0.049794357270002,0.019842755049467],[0.048586633056402,-0.024755477905273,-0.03775043040514]],[[-0.02805214934051,-0.017018344253302,-0.0089555913582444],[0.021709283813834,-0.011125149205327,-0.014404106885195],[0.020105056464672,0.052434127777815,0.005828385706991]],[[-0.023639518767595,0.026160908862948,-0.10925009101629],[-0.019594078883529,0.021554812788963,-0.045935574918985],[-0.036960702389479,-0.14581127464771,-0.020386030897498]],[[-0.04673034325242,-0.027213478460908,-0.051912896335125],[-0.020979916676879,-0.037201974540949,-0.0012019334826618],[-0.059618052095175,-0.093356661498547,-0.042654599994421]],[[-0.0096870418637991,-0.0070230728015304,-0.10225495696068],[-0.0082213301211596,0.026679357513785,-0.02592583373189],[-0.07657366245985,-0.032043840736151,-0.032556295394897]],[[-0.0074451211839914,0.048173278570175,-0.0082073025405407],[-0.027856927365065,0.018414663150907,-0.047176111489534],[0.065428920090199,-0.061585746705532,0.066186644136906]],[[-0.023222107440233,0.097345344722271,0.060283046215773],[0.098839096724987,0.045614011585712,-0.074466571211815],[0.042490687221289,-0.13137122988701,0.075546130537987]],[[-0.036313764750957,0.04741395264864,0.020346770063043],[0.026279469951987,0.037196859717369,0.038620259612799],[-0.0011357521871105,-0.014901696704328,0.010848741978407]],[[0.083510227501392,-0.075831905007362,0.0099727129563689],[-0.0092852870002389,-0.045063797384501,0.063811957836151],[0.0049672164022923,0.060664921998978,-0.038356009870768]],[[0.060758035629988,-0.10514571517706,-0.043898724019527],[-0.03514039516449,-0.0023802814539522,-0.0072945337742567],[-0.11064542084932,0.036290980875492,-0.086855687201023]],[[-0.014923052862287,-0.024922309443355,0.045230973511934],[0.033913757652044,0.007112780585885,-0.031611740589142],[0.02368844859302,-0.064380317926407,0.045134220272303]],[[-0.070376105606556,-0.16819049417973,-0.068047598004341],[0.0055334162898362,-0.0015152652049437,0.00236551836133],[-0.090596154332161,0.050409950315952,0.15276548266411]],[[-0.0069188172928989,-0.0017336494056508,-0.19973149895668],[-0.058077480643988,0.011097112670541,-0.12629981338978],[-0.048948053270578,-0.016991646960378,-0.11359065026045]],[[-0.10472451150417,-0.026505803689361,0.090362221002579],[-0.11507285386324,0.079000823199749,0.077027134597301],[-0.073985852301121,0.086735516786575,0.015318781137466]],[[-0.0034554523881525,0.052638810127974,0.022330423817039],[-0.0081618502736092,-0.045409642159939,0.02168831974268],[0.014938697218895,-0.018576249480247,-0.044469479471445]],[[-0.030887069180608,0.047184981405735,-0.035629343241453],[0.044499408453703,-0.053105976432562,0.052813317626715],[-0.10050680488348,-0.16757017374039,-0.025294499471784]],[[0.067597828805447,-0.05347553268075,0.097926653921604],[0.046262491494417,-0.073821723461151,0.061136923730373],[-0.047701697796583,-0.046307228505611,-0.075042352080345]],[[-0.0064259208738804,-0.028144543990493,-0.0015365341678262],[0.058108974248171,0.0083218682557344,0.027287401258945],[0.0090432651340961,-0.18109427392483,0.034789834171534]],[[0.06645592302084,-0.082123935222626,0.046788666397333],[-0.009366437792778,-0.024140924215317,-0.036453071981668],[-0.022599654272199,0.0011012807954103,-0.057882636785507]]],[[[-0.021960617974401,0.014658740721643,-0.11966455727816],[-0.019405201077461,-0.0411486774683,-0.090575657784939],[-0.023886559531093,-0.14381538331509,-0.086508795619011]],[[0.0072657931596041,4.2268220568076e-07,-0.12250662595034],[0.054097946733236,-0.0036527516786009,-0.055698554962873],[-0.086093455553055,0.036763314157724,0.00045290632988326]],[[-0.0012962657492608,-0.037233352661133,-0.050082240253687],[0.042624264955521,-0.0046582804061472,-0.24496322870255],[0.065043911337852,0.07216639816761,-0.15865035355091]],[[-0.063100807368755,-0.10878060013056,-0.10840150713921],[-0.091459214687347,0.012034014798701,0.069057703018188],[0.073346368968487,-0.048844460397959,-0.060981661081314]],[[-0.14348445832729,-0.010929047130048,-0.035601522773504],[-0.14889672398567,0.067382916808128,-0.14552772045135],[0.04517424851656,0.046319626271725,-0.1187122836709]],[[0.054441295564175,0.017214503139257,-0.022214993834496],[-0.05735744908452,-0.074240304529667,-0.03804062306881],[0.0064061689190567,-0.043271634727716,0.0012684217654169]],[[-0.047586258500814,0.015832858160138,-0.074629433453083],[-0.094014853239059,-0.027875315397978,0.018455281853676],[-0.073722049593925,-0.013542455621064,-0.070015460252762]],[[-0.060430873185396,-0.066601052880287,0.0040959352627397],[0.0071627856232226,-0.039965067058802,0.077519677579403],[0.033335588872433,0.054726887494326,0.034334611147642]],[[-0.0016534139867872,0.010083377361298,-0.0037002393510193],[0.012040845118463,-0.0086533594876528,-0.23637123405933],[0.01771935634315,0.025027947500348,-0.040201023221016]],[[0.057370327413082,0.0031122278887779,0.014713933691382],[-0.052536688745022,0.035800185054541,-0.089439526200294],[-0.085141479969025,0.05953760817647,-0.21271960437298]],[[-0.017371514812112,-0.0077610714361072,-0.19403649866581],[0.033080711960793,0.022962976247072,-0.091980844736099],[0.013624760322273,0.019206300377846,0.025706205517054]],[[-0.059211362153292,-0.092783659696579,-0.067119985818863],[-0.12113723158836,-0.37399977445602,-0.24584428966045],[-0.093165442347527,-0.10138253867626,-0.038070872426033]],[[-0.0028815392870456,-0.02847390063107,-0.11095210164785],[-0.062180515378714,-0.068521834909916,-0.050696570426226],[-0.026267100125551,-0.12085995078087,-0.072529181838036]],[[0.05591406673193,0.0058095739223063,0.044891584664583],[0.054684665054083,-0.0074443481862545,0.02343887835741],[0.00099388114176691,-0.026242943480611,0.0046848887577653]],[[0.028103338554502,-0.011684125289321,0.059337448328733],[0.0071885478682816,-0.065917432308197,0.014984299428761],[0.0065266136080027,-0.0035374383442104,-0.057387869805098]],[[-0.090211972594261,0.033270791172981,0.080353461205959],[0.017247693613172,0.064400561153889,0.023544955998659],[-0.04059923440218,-0.10308840870857,-0.12476194649935]],[[-0.013275871984661,-0.014870387502015,-0.041756015270948],[-0.16816660761833,0.040537185966969,-0.049445878714323],[0.034947585314512,0.09666320681572,0.10092641413212]],[[0.040068570524454,0.044718459248543,0.021181842312217],[-0.077820964157581,0.031842436641455,0.056681476533413],[0.072076573967934,0.047111548483372,0.031756635755301]],[[0.061143293976784,0.025492742657661,-0.025362687185407],[-0.025947535410523,0.091966010630131,-0.043989021331072],[0.018851839005947,0.02323255687952,-0.072585947811604]],[[0.045838430523872,0.014445218257606,-0.050553560256958],[0.052464168518782,-0.056713297963142,-0.078970588743687],[0.02989804930985,0.049525465816259,0.011108016595244]],[[0.0077142342925072,-0.01737853884697,0.055633902549744],[-0.023668898269534,0.042619988322258,0.12096190452576],[0.056375030428171,0.11306285113096,0.092483229935169]],[[0.044685930013657,0.12323412299156,0.02431333810091],[-0.0072415354661644,0.010206187143922,-0.033807151019573],[0.11333913356066,0.052653644233942,-0.1499790251255]],[[-0.02935478836298,0.036207746714354,-0.037690136581659],[-0.023349085822701,0.0048864223062992,-0.13231140375137],[-0.021553345024586,-0.038270894438028,-0.026036806404591]],[[0.067570053040981,0.080450482666492,0.055369861423969],[0.10720842331648,-0.0044944249093533,0.096986159682274],[-0.0022403846960515,0.081098318099976,0.085172258317471]],[[0.0066460068337619,0.012012965045869,-0.078879371285439],[-0.086536817252636,0.048420093953609,-0.012822980992496],[-0.040283787995577,0.036392610520124,-0.010685760527849]],[[0.058886915445328,-0.024319998919964,-0.022427523508668],[0.025108765810728,0.077357552945614,-0.056803151965141],[0.04179834201932,-0.00047802581684664,0.044400986284018]],[[-0.014367983676493,0.023934656754136,0.091600485146046],[-0.082841165363789,-0.21940529346466,0.012040658853948],[-0.037636179476976,0.05095499381423,0.063323751091957]],[[-0.020421760156751,-0.013256460428238,-0.10126227885485],[-0.091037333011627,0.040657609701157,0.031022533774376],[0.0039346390403807,-0.056027594953775,-0.061517983675003]],[[-0.089607208967209,-0.019580157473683,-0.14065027236938],[-0.11845278739929,0.0096505992114544,-0.17679734528065],[-0.0088489511981606,0.00056368857622147,-0.04236301407218]],[[-0.071167916059494,0.048556476831436,0.059776429086924],[-0.19984212517738,0.018430780619383,-0.072494894266129],[-0.0029005773831159,0.083736926317215,-0.0038802265189588]],[[-0.0080207390710711,-0.050175316631794,0.027236793190241],[0.035712722688913,0.023422300815582,0.10633164644241],[0.025374786928296,0.026083029806614,-0.02415725030005]],[[0.049965873360634,0.085091352462769,-0.0047079692594707],[0.069335676729679,0.084164813160896,-0.1090644672513],[-0.017847673967481,-0.14023020863533,-0.0067402627319098]],[[0.029471835121512,0.0094788605347276,-0.0054408721625805],[-0.032617039978504,-0.0068977833725512,-0.054497081786394],[0.035399157553911,-0.047983158379793,0.019009333103895]],[[-0.075341075658798,-0.030287642031908,-0.16060154139996],[0.039636436849833,0.079910330474377,0.13120238482952],[0.016835886985064,0.017295414581895,-0.064996749162674]],[[-0.095466285943985,0.037575218826532,-0.095129042863846],[-0.19234921038151,0.031181875616312,-0.049922373145819],[-0.10325729846954,0.036487407982349,-0.050725154578686]],[[0.034718286246061,-0.041003342717886,0.038412716239691],[0.072078667581081,0.032360702753067,0.018532449379563],[0.052733521908522,0.031397186219692,-0.025645475834608]],[[0.074058093130589,-0.096510834991932,0.058132097125053],[0.085361793637276,0.010450356639922,0.092347733676434],[0.087382033467293,-0.020529245957732,-0.0484669059515]],[[-0.062743179500103,0.024304987862706,-0.050785217434168],[-0.12194181233644,-0.0092321326956153,-0.042320869863033],[-0.15225158631802,-0.29485332965851,-0.037707272917032]],[[-0.0076231248676777,0.067619688808918,-0.070011146366596],[0.081101298332214,0.069424442946911,0.061458617448807],[-0.10361486673355,-0.10038319975138,0.072426579892635]],[[0.025172708556056,-0.11117674410343,-0.041036006063223],[-0.09926250576973,-0.014756630174816,0.021168665960431],[-0.030621439218521,0.043565038591623,0.027147864922881]],[[0.065752856433392,-0.0015161903575063,-0.088661797344685],[0.0072056148201227,-0.057652056217194,0.12341576069593],[-0.0045179016888142,0.0016251810593531,0.080528616905212]],[[-0.035346776247025,-0.080798089504242,-0.041897866874933],[0.035511039197445,0.073367066681385,-0.12855373322964],[0.018788244575262,-0.042549792677164,-0.011851192452013]],[[-0.0064256750047207,-0.049126453697681,-0.029922915622592],[0.088484257459641,0.0057747811079025,-0.15263469517231],[-0.034146413207054,-0.069477692246437,-0.072184488177299]],[[-0.043127186596394,-0.021992340683937,-0.10167481005192],[0.053735952824354,-0.010692766867578,-0.030860289931297],[-0.050059117376804,0.024623773992062,-0.10015764087439]],[[-0.039142340421677,0.018936309963465,0.12858314812183],[-0.071316227316856,0.051268149167299,-0.0051263943314552],[0.19060404598713,-0.0021083010360599,0.0024460130371153]],[[0.038689590990543,-0.017433056607842,-0.0092339906841516],[0.071434922516346,0.056565530598164,-0.078647747635841],[-0.19057630002499,-0.028288774192333,0.032867830246687]],[[-0.0041183498688042,-0.02363377250731,0.16264346241951],[-0.038074236363173,0.024566203355789,0.0090171759948134],[-0.12526907026768,-0.060846999287605,0.13715827465057]],[[0.077283963561058,-0.038613561540842,-0.14457313716412],[-0.058576237410307,-0.14873358607292,-0.046196322888136],[-0.066589802503586,-0.03080116584897,-0.014162257313728]],[[0.035472273826599,0.10023730248213,0.11787709593773],[0.016610875725746,0.073665335774422,-0.079742453992367],[0.13836878538132,-0.13600279390812,0.081741616129875]],[[-0.12481716275215,-0.029991513118148,-0.017158482223749],[-0.034291695803404,0.1160478964448,0.003152919234708],[-0.0047722267918289,0.022669848054647,-0.031799606978893]],[[-0.041849341243505,-0.0057816873304546,-0.065637640655041],[-0.017129326239228,0.04216130822897,-0.038707450032234],[-0.043917216360569,-0.038253858685493,-0.071064926683903]],[[-0.042011972516775,-0.038857840001583,0.0014612156664953],[0.014769774861634,0.09717919677496,0.21830831468105],[-0.05572397634387,0.1281611174345,0.18839864432812]],[[-0.073438927531242,0.05931156873703,0.087795443832874],[-0.05202167108655,-0.039027493447065,0.04898676648736],[0.092268772423267,0.03884468972683,0.030548240989447]],[[0.078421846032143,-0.020244996994734,-0.065809458494186],[-0.071152128279209,0.02665357850492,0.0062647839076817],[-0.10592669248581,0.12739752233028,0.088194742798805]],[[0.0078190602362156,-0.044733285903931,0.023907357826829],[0.029452724382281,-0.005803310777992,0.012731564231217],[-0.0063628288917243,0.080563351511955,0.062055125832558]],[[-0.0082474024966359,0.056919973343611,0.016178028658032],[-0.11649537831545,-0.061584889888763,-0.15999323129654],[-0.12091317027807,-0.053627520799637,0.015280444175005]],[[0.012031377293169,0.021608920767903,-0.10344357788563],[-0.025060595944524,0.016302155330777,-0.18867576122284],[-0.17739243805408,-0.079443231225014,-0.021268431097269]],[[-0.01605605147779,0.0093015842139721,0.019515233114362],[0.067567430436611,0.063067086040974,-0.034502480179071],[0.003253459231928,-0.11256884783506,0.0072333756834269]],[[-0.0038474921602756,0.048463445156813,-0.11652784794569],[-0.095766112208366,-0.054244305938482,-0.07572864741087],[0.10285825282335,0.09251707047224,0.035428952425718]],[[-0.064392946660519,-0.012087047100067,0.081243760883808],[-0.0016726965550333,0.0040969653055072,0.074040949344635],[-0.035017486661673,-0.081550061702728,0.031923178583384]],[[0.00038881885120645,-0.041639808565378,0.034704174846411],[0.0021220711059868,0.056549981236458,-0.06553241610527],[0.0087866354733706,-0.080461286008358,-0.049534920603037]],[[-0.032466724514961,-0.0055632716976106,-0.008619848638773],[-0.006841903552413,-0.092101082205772,-0.11680030077696],[0.0093731535598636,0.031624682247639,-0.079223416745663]],[[0.040529627352953,-0.042421396821737,-0.073965020477772],[-0.12830692529678,0.022225491702557,-0.067658692598343],[-0.054147284477949,0.02785474434495,0.014789268374443]],[[0.011224160902202,0.017510525882244,0.0992167070508],[0.036544509232044,-0.079432100057602,-0.030426694080234],[0.16590762138367,0.0035107464063913,-0.025265146046877]]],[[[-0.051460992544889,0.018492186442018,-0.23409776389599],[0.01127728074789,-0.0032169653568417,-0.066023878753185],[0.057201649993658,0.09967203438282,0.0099549423903227]],[[-0.16385991871357,-0.024696877226233,-0.06792251765728],[-0.053606204688549,-0.05161290243268,-0.027085456997156],[-0.029505299404263,-0.041847787797451,-0.019070150330663]],[[-0.088664926588535,-0.17802001535892,-0.022026160731912],[-0.01283397898078,-0.16065321862698,0.027744298800826],[-0.05348988249898,-0.022727981209755,0.097169429063797]],[[-0.0071316654793918,-0.030169989913702,-0.023092577233911],[-0.037181135267019,-0.11189658939838,-0.046308897435665],[-0.053713530302048,0.028072793036699,0.065464422106743]],[[-0.012581767514348,0.022086696699262,0.017936242744327],[-0.018866712227464,0.024411709979177,0.027133306488395],[-0.011238856241107,-0.0061718057841063,-0.026865499094129]],[[0.026470990851521,-0.061280410736799,0.0047350628301501],[-0.0064881658181548,0.00309096602723,-0.041582424193621],[-0.013359067030251,0.040513355284929,-0.031449384987354]],[[-0.036266513168812,-0.049904547631741,-0.018010009080172],[-0.039361633360386,-0.10028240829706,0.014766132459044],[0.027803085744381,-0.036360748112202,0.0081144850701094]],[[0.029750118032098,0.072385556995869,-0.067233107984066],[0.038297738879919,-0.048084855079651,0.024399310350418],[-0.0026908768340945,-0.12944456934929,0.12242393940687]],[[-0.0064128739759326,0.092899672687054,-0.0070500201545656],[-0.016662919893861,0.055435117334127,0.079039320349693],[0.022645721212029,0.042202733457088,-0.028679108247161]],[[-0.032870054244995,0.030022567138076,0.12269947677851],[0.038121536374092,0.00097074307268485,-0.038951527327299],[-0.014264746569097,-0.044243440032005,0.039966862648726]],[[0.0044185440056026,0.071302995085716,-0.088242158293724],[-0.056404244154692,0.069547735154629,0.030206348747015],[-0.058217421174049,0.097513347864151,0.035504065454006]],[[0.053038347512484,0.0077054132707417,-0.03863599896431],[0.029003329575062,-0.069224767386913,0.054904494434595],[0.0040258830413222,0.067533522844315,0.077480882406235]],[[-0.0094023318961263,-0.074988983571529,-0.016662407666445],[0.03349282592535,-0.049455791711807,0.065047264099121],[0.074167907238007,-0.032256934791803,0.023925362154841]],[[0.12843029201031,-0.06794548779726,-0.078164733946323],[0.055056288838387,0.022525079548359,-0.12627148628235],[0.057700116187334,-0.0032320572063327,-0.14747974276543]],[[0.029599832370877,-0.027287121862173,-0.051185227930546],[-0.0053057824261487,-0.074723996222019,-0.058641508221626],[-0.025387100875378,0.0018378152744845,-0.0066674402914941]],[[0.040936674922705,0.042005650699139,0.028746144846082],[0.053296342492104,-0.048326756805182,0.054259940981865],[-0.0099783623591065,0.0053737265989184,0.0035314545966685]],[[-0.021121615543962,0.040185574442148,0.026678133755922],[0.027730708941817,0.12372842431068,-0.037045281380415],[0.067907609045506,0.033390313386917,0.025365814566612]],[[0.0014560105046257,0.086349792778492,-0.046628553420305],[-0.0071371644735336,-0.082213327288628,-0.066038616001606],[-0.033047512173653,0.047811638563871,0.056454818695784]],[[0.056862622499466,0.037585824728012,-0.038281496614218],[0.0076981000602245,0.064065791666508,-0.019380206242204],[0.013510697521269,-0.028225829824805,-0.083612032234669]],[[0.011062420904636,-0.046093545854092,0.021867761388421],[-0.029906816780567,0.027942050248384,0.032850340008736],[-0.045088570564985,-0.015657905489206,0.058920536190271]],[[0.027608776465058,-0.017183009535074,-0.0054020499810576],[-0.033146981149912,-0.0081548588350415,0.062779061496258],[-0.03895927965641,0.0025554106105119,0.026978814974427]],[[0.033540979027748,0.10320840030909,-0.020018981769681],[0.06665575504303,-0.09438618272543,-0.029830766841769],[-0.017224004492164,-0.013209479860961,0.046321243047714]],[[2.1407708118204e-05,0.10244965553284,0.0056465431116521],[-0.0015932985115796,0.0042207106016576,-0.033993449062109],[0.06220693141222,-0.017650118097663,-0.1310306340456]],[[-0.10740685462952,-0.006209097802639,0.12863071262836],[-0.043948072940111,-0.020763553678989,0.1193828061223],[-0.029932465404272,0.046739753335714,-0.046819750219584]],[[-0.18277062475681,-0.0065372115932405,-0.070960246026516],[-0.0054170312359929,0.007256374694407,-0.014838260598481],[0.038472585380077,0.12650594115257,0.12085498124361]],[[-0.015540949068964,-0.0083051463589072,0.088037319481373],[-0.016660245135427,-0.021360903978348,0.081625252962112],[-0.058607000857592,0.058196991682053,0.02916918322444]],[[0.020330665633082,-0.069123819470406,-0.052469495683908],[-0.023660745471716,-0.021128300577402,0.040210481733084],[0.013136700727046,-0.063558168709278,0.063721686601639]],[[-0.034379698336124,-0.050399243831635,0.049233332276344],[-0.033608205616474,-0.03029946051538,0.050191901624203],[0.013065415434539,0.016608277335763,0.070046186447144]],[[-0.033205959945917,0.091618075966835,0.072395317256451],[-0.010392214171588,0.028026996180415,0.021767457947135],[0.014164085499942,0.066205114126205,0.0042106476612389]],[[0.036267779767513,-0.10216028988361,-0.0619179867208],[-0.078827388584614,-0.025859767571092,0.086788594722748],[-0.081231102347374,-0.0076344930566847,0.021987503394485]],[[0.044233523309231,0.036828100681305,0.0025903780478984],[-0.010956021957099,-0.025174766778946,0.02740378677845],[0.03387537971139,-0.090039029717445,0.055389430373907]],[[-0.036851696670055,0.085413463413715,0.010572918690741],[-0.0022443705238402,0.062500610947609,-0.069383330643177],[-0.015032769180834,-0.087217316031456,0.015446339733899]],[[-0.045052520930767,-0.064296558499336,-0.074600964784622],[0.011344403959811,-0.0095336819067597,-0.0065528331324458],[-0.069624431431293,-0.040429897606373,-0.020261013880372]],[[0.034676481038332,0.041958007961512,-0.066407524049282],[-0.056294560432434,-0.062217008322477,-0.1482941955328],[-0.063380040228367,-0.020493783056736,-0.14679425954819]],[[0.063390374183655,-0.095970347523689,0.046046674251556],[0.090991154313087,-0.065431736409664,-0.01610909588635],[0.050382517278194,0.032074563205242,-0.027238072827458]],[[-0.078711502254009,-0.074887230992317,0.060110680758953],[0.037970799952745,-0.088489934802055,-0.064461544156075],[-0.0066387443803251,-0.014672880992293,0.0044568511657417]],[[-0.074105150997639,-0.02502403780818,0.082988493144512],[-0.045688789337873,0.092442385852337,0.093085184693336],[-0.091216802597046,-0.0069618341512978,0.00026283081388101]],[[-0.084492243826389,-0.072480462491512,0.0063064778223634],[0.0017303935019299,0.041892644017935,0.038230706006289],[0.046378906816244,-0.0044640912674367,0.021701076999307]],[[-0.094502449035645,-0.12369177490473,-0.075532577931881],[0.020696256309748,0.023413008078933,-0.016861462965608],[-0.0073232245631516,0.11059556156397,-0.053267505019903]],[[-0.0018718112260103,-0.13572509586811,-0.0053971167653799],[0.010306377895176,-0.064267419278622,-0.03933396935463],[-0.054735019803047,-0.017916779965162,0.023307645693421]],[[-0.060347184538841,-0.082892082631588,-0.018984116613865],[-0.028191681951284,-0.083017513155937,-0.14262925088406],[-0.014323431998491,0.015488277189434,0.099956966936588]],[[0.10161983966827,-0.056645914912224,0.00656124856323],[0.0076154805719852,-0.046952404081821,-0.070309422910213],[0.034308977425098,0.075204536318779,0.0041273459792137]],[[-0.011349161155522,0.029782839119434,-0.0076656080782413],[-0.044718597084284,-0.027665548026562,0.015196234919131],[-0.029518581926823,-0.058648966252804,-0.05026288703084]],[[0.053678553551435,-0.081864885985851,0.0088363895192742],[-0.00010695525998017,-0.076287880539894,0.069362044334412],[-0.077656865119934,0.031075639650226,-0.01986431889236]],[[0.03895017132163,-0.06705179810524,0.024636613205075],[-0.10912407189608,0.082960702478886,-0.067483708262444],[-0.081883728504181,-0.025424540042877,-0.062333900481462]],[[-0.018872937187552,0.0088084554299712,0.015937644988298],[-0.014522138983011,0.05978636443615,0.069563388824463],[-0.059523556381464,0.027464114129543,0.014398984611034]],[[-0.059766452759504,0.051275413483381,-0.042540673166513],[-0.010275625623763,-0.0081096235662699,0.0039054497610778],[-0.037820592522621,0.011999157257378,0.053341411054134]],[[0.039198320358992,0.015257637947798,-0.0015608918620273],[-0.0002580393338576,-0.0024385827127844,-0.029845714569092],[0.032655730843544,-0.12207278609276,-0.070813551545143]],[[-0.054989546537399,0.0157820135355,-0.043171182274818],[0.0016574115725234,0.015824174508452,-0.10822357237339],[-0.012604617513716,0.021736141294241,0.011217341758311]],[[0.068857684731483,-0.1571039557457,0.010016125626862],[0.026946622878313,0.0029440908692777,-0.06422009319067],[0.037587355822325,-0.09522071480751,-0.079364463686943]],[[-9.3447939434554e-05,-0.025155019015074,-0.094628728926182],[0.024098232388496,0.0034380268771201,0.024203041568398],[-0.011513428762555,0.0031244484707713,-0.026307189837098]],[[0.065383359789848,0.061774507164955,-0.040010057389736],[0.0048228031955659,-0.072277911007404,3.7277775845723e-05],[-0.014308486133814,-0.082954652607441,-0.024257579818368]],[[0.062047936022282,-0.12666542828083,0.02141447737813],[0.068909950554371,0.032145224511623,0.013465422205627],[-0.0089954268187284,-0.037797648459673,0.060147669166327]],[[0.12727814912796,0.019678832963109,0.012825392186642],[-0.016286002472043,-0.032282121479511,0.012623355723917],[-0.045478250831366,-0.05731887370348,-0.08141977339983]],[[0.079451076686382,-0.1700993925333,-0.067907460033894],[0.039455272257328,-0.078909203410149,0.01041198708117],[0.013713813386858,0.027529457584023,0.013570106588304]],[[-0.041165720671415,0.01277725584805,0.064116664230824],[0.042224008589983,0.065489828586578,0.02620660699904],[0.08315446972847,-0.0044232201762497,-0.030542330816388]],[[0.023169649764895,-0.039281070232391,0.080153681337833],[0.054675303399563,0.028611095622182,0.072325237095356],[-0.026087779551744,-0.010732423514128,-0.014397908933461]],[[0.02926629409194,-0.1445916891098,-0.022742321714759],[-0.015961466357112,-0.09591855853796,-0.019352562725544],[-0.013833614066243,-0.029038781300187,-0.071985393762589]],[[-0.061821058392525,0.027203695848584,0.028466254472733],[0.094038918614388,0.030764227733016,0.027720862999558],[-0.096978932619095,-0.0071321167051792,0.025929898023605]],[[-0.0033552586100996,0.066684238612652,-0.030197232961655],[0.012204869650304,-0.00093638442922384,-0.068315677344799],[0.055345833301544,-0.0031026653014123,-0.03224465623498]],[[0.026806062087417,-0.019423509016633,-0.057619750499725],[-0.00692666368559,-0.043187089264393,0.0095919296145439],[0.019816678017378,0.038915745913982,-0.024288438260555]],[[0.021670943126082,-0.11306016892195,0.091035127639771],[0.053291220217943,0.028490055352449,-0.023159570991993],[-0.060195505619049,0.12759092450142,-0.064407199621201]],[[0.03614417463541,-0.080706536769867,-0.11885625123978],[-0.0067077712155879,-0.080343067646027,-0.0053256098181009],[0.064813643693924,-0.052301570773125,-0.11003453284502]],[[0.0052198003977537,-0.027882074937224,0.0142174763605],[-0.0036108635831624,-0.10128604620695,-0.015679992735386],[-0.024561796337366,-0.029966738075018,-0.036169186234474]]],[[[0.0030937467236072,0.029617624357343,-0.073984712362289],[0.013813690282404,-0.0030640154145658,-0.032205358147621],[-0.032773245126009,0.014941602945328,-0.077016472816467]],[[0.021276459097862,-0.062220897525549,-0.024803446605802],[0.12702161073685,-0.10825475305319,-0.068112455308437],[0.092839039862156,0.055422488600016,0.0078654699027538]],[[0.05135789513588,-0.0093666287139058,-0.094467170536518],[0.0074245491996408,0.0073299626819789,-0.08479718118906],[0.0025746149476618,-0.082284219563007,-0.011649791151285]],[[-0.076649852097034,-0.049520321190357,-0.059635493904352],[-0.10297749191523,0.041820220649242,0.023150766268373],[-0.00029416763572954,-0.10013055056334,0.0047123841941357]],[[0.063397958874702,0.056798998266459,-0.046414222568274],[-0.042037885636091,0.022013276815414,0.022319281473756],[0.0017413567984477,-0.044101934880018,-0.032612524926662]],[[0.040591977536678,0.022051110863686,0.0006160925840959],[-0.02745864726603,-0.033223535865545,0.024636272341013],[0.015452273190022,-0.022682588547468,-0.031397752463818]],[[-0.062744840979576,-0.036442808806896,-0.072085656225681],[-0.069894343614578,-0.017403183504939,-0.081258945167065],[-0.070850789546967,0.025720093399286,0.043385904282331]],[[-0.029003981500864,-0.055824656039476,0.0024717662017792],[0.078809902071953,0.091423906385899,0.026777913793921],[-0.039214242249727,-0.097137786448002,0.028753068298101]],[[-0.11580047756433,-0.075973257422447,-0.12673686444759],[0.069777555763721,-0.084764026105404,0.17616295814514],[-0.08216880261898,0.043321151286364,-0.1533317565918]],[[-0.024153411388397,0.028152948245406,-0.067484475672245],[-0.018493827432394,-0.047356158494949,-0.10472193360329],[0.034775979816914,0.11023420095444,-0.11238617449999]],[[0.052299339324236,-0.012493821792305,-0.14146316051483],[-0.0013500103959814,-0.060896020382643,-0.0048761987127364],[-0.0042870864272118,0.050436586141586,-0.0099851209670305]],[[0.0094647547230124,-0.12141592800617,-0.11927715688944],[-0.057578787207603,-0.018399329856038,0.018291875720024],[-0.046679928898811,-0.061798512935638,-0.0075006950646639]],[[-0.098061241209507,-0.038113281130791,0.11974816769361],[0.030811367556453,0.13389022648335,0.014535828493536],[-0.10000938177109,-0.025559006258845,0.0012116936268285]],[[0.02655347622931,-0.073599018156528,0.096297390758991],[0.097379095852375,-0.032830405980349,0.039812389761209],[-0.0095595410093665,0.026408638805151,0.024369891732931]],[[0.027862418442965,-0.08722759783268,0.037737961858511],[-1.0942319931928e-05,-0.093735761940479,-0.087372027337551],[0.078051544725895,-0.076481766998768,-0.10718970000744]],[[-0.014722278341651,0.078812912106514,0.055762819945812],[-0.067566156387329,-0.017487976700068,0.064190968871117],[-0.12371218204498,0.050097212195396,-0.15480457246304]],[[0.061829321086407,-0.053362708538771,-0.066231340169907],[0.06893315911293,0.066053383052349,-0.16011200845242],[-0.067807033658028,0.050322368741035,-0.13704396784306]],[[-0.058273613452911,0.049432475119829,-0.014170649461448],[-0.092686712741852,0.032579351216555,-0.11190986633301],[-0.03451281785965,0.061030279844999,0.010542000643909]],[[0.12641237676144,-0.066874153912067,0.060530137270689],[-0.027735773473978,0.028997704386711,-0.0046097217127681],[0.079156450927258,-0.03678160533309,-0.015845973044634]],[[-0.0012878270354122,0.015615983866155,0.019285710528493],[0.013742814771831,-0.0034086327068508,-0.047036048024893],[0.014347705058753,-0.025009451434016,0.022058043628931]],[[0.024181632325053,0.062685549259186,0.051090735942125],[-0.028118807822466,0.055622011423111,0.034061372280121],[0.0077665215358138,-0.044011972844601,-0.071434609591961]],[[-0.019403371959925,0.060438666492701,-0.040445107966661],[0.0076635922305286,-0.03717054054141,-0.042912747710943],[0.042291399091482,0.0070232595317066,0.096160687506199]],[[0.0088531635701656,0.12138226628304,-0.010054579004645],[0.0056727356277406,0.0036801088135689,-0.10597313195467],[-0.085436463356018,0.15889820456505,-0.066517516970634]],[[-0.028254659846425,0.04252815246582,0.32365283370018],[0.049594298005104,-0.052690356969833,0.13819736242294],[-0.017061175778508,-0.10201442986727,-0.011131380684674]],[[0.074871860444546,0.049268584698439,0.06344822794199],[0.0048897131346166,0.029719611629844,0.030399043112993],[-0.00067580281756818,0.086359091103077,-0.058606017380953]],[[-0.021290048956871,0.0053345230408013,-0.055179055780172],[-0.0068493564613163,-0.024237023666501,0.051015254110098],[0.019820777699351,0.0049840910360217,0.022509472444654]],[[-0.12351903319359,-0.13263823091984,0.12146082520485],[-0.091962039470673,-0.083330497145653,-0.070816412568092],[0.0066694072447717,0.082568161189556,0.023713683709502]],[[-0.026528671383858,0.071532338857651,0.069776982069016],[-0.037179920822382,-0.082950569689274,0.018995311111212],[0.0029016216285527,-0.0026034829206765,-0.018830394372344]],[[0.035986520349979,-0.10152404010296,-0.081891439855099],[-0.050972908735275,-0.032270602881908,0.024356033653021],[0.072043724358082,-0.0048945415765047,0.072891816496849]],[[-0.038140896707773,-0.0067500700242817,-0.1795504540205],[-0.06823942810297,-0.0024614492431283,-0.085794344544411],[0.020109977573156,0.00093306542839855,-0.0047476729378104]],[[-0.072205476462841,0.1099941059947,-0.018556103110313],[-0.030199712142348,-0.035070322453976,0.11835257709026],[-0.085137970745564,-0.065362550318241,-0.098511680960655]],[[0.077955983579159,-0.068771079182625,-0.010137074626982],[0.039710879325867,-0.060387067496777,-0.063378155231476],[-0.10324450582266,-0.036684613674879,-0.07539326697588]],[[-0.013623910024762,-0.084077849984169,0.021393237635493],[-0.034832902252674,-0.10037778317928,-0.057570572942495],[0.12774044275284,0.024896098300815,0.098680146038532]],[[0.054930008947849,-0.028753083199263,-0.049259837716818],[0.0039097974076867,0.079046495258808,0.1213455721736],[-0.029293674975634,-0.010754267685115,-0.11487694829702]],[[-0.021835090592504,-0.058872520923615,-0.083611339330673],[-0.10411981493235,0.039154298603535,0.042616236954927],[0.044717915356159,-0.12850195169449,0.047514300793409]],[[0.014995407313108,0.027838718146086,0.036712009459734],[-0.024799136444926,-0.0033973378594965,9.2951006081421e-05],[0.012899260036647,0.0030075188260525,0.018503481522202]],[[0.043975658714771,-0.086456917226315,-0.0019129414577037],[0.014661488123238,0.03532101213932,-0.098490171134472],[-0.016042364761233,-0.018517315387726,-0.015797711908817]],[[-0.093540363013744,-0.016650414094329,-0.072844609618187],[0.0038153352215886,-0.091138482093811,-0.0082440236583352],[0.14006993174553,-0.05413606390357,-0.15481449663639]],[[-0.018369378522038,-0.064131885766983,0.0046144993975759],[-0.0014528766041622,-0.062162224203348,-0.010071207769215],[-0.035288188606501,-0.0045545506291091,-0.054709725081921]],[[-0.10983910411596,0.055112518370152,-0.006099792663008],[0.064474381506443,0.044506166130304,-0.099753737449646],[-0.027708293870091,0.0090564796701074,0.049170881509781]],[[0.048159077763557,0.019331464543939,-0.04603323712945],[-0.0073787812143564,-0.0069703292101622,0.038305830210447],[0.10092736780643,0.012163950130343,-0.11571722477674]],[[0.027312830090523,0.024409459903836,0.054823357611895],[0.020257631316781,-0.086614549160004,0.01121249422431],[0.026331128552556,-0.0045161545276642,-0.075496777892113]],[[-0.017218474298716,0.055683210492134,0.03056576102972],[0.025311419740319,0.057792887091637,0.075168594717979],[-0.083374492824078,-0.056628614664078,0.010794267058372]],[[0.042965829372406,0.020136434584856,-0.10643499344587],[-0.0570646263659,0.12067482620478,-0.093457825481892],[-0.037763398140669,-0.030711831524968,-0.054892018437386]],[[0.020824221894145,0.028863379731774,-0.00067754747578874],[0.060824990272522,-0.0042313160374761,-0.038025323301554],[-0.026885332539678,-0.048546340316534,-0.075465276837349]],[[-0.058059014379978,0.034192208200693,-0.10354685783386],[-0.04330675676465,-0.11879847198725,0.066758543252945],[-0.08567551523447,0.010139250196517,-0.031797863543034]],[[0.025427188724279,0.046393282711506,-0.0030190835241228],[-0.0030310251750052,-0.074896365404129,-0.03567024692893],[0.034209959208965,0.020914116874337,-0.0066265696659684]],[[-0.037888806313276,0.083668850362301,-0.077996753156185],[0.13615711033344,0.0068246037699282,-0.0062461798079312],[0.01450735796243,-0.0051874974742532,0.019398981705308]],[[-0.031033482402563,0.042657732963562,-0.072714366018772],[0.010074624791741,-0.032249733805656,0.042744431644678],[-0.042664092034101,-0.14807252585888,-0.0023303306661546]],[[0.023387307301164,0.071259081363678,0.038425900042057],[-0.0013275197707117,0.058394681662321,-0.056744873523712],[0.025773016735911,0.093666456639767,0.0091864364221692]],[[0.042638406157494,0.079179026186466,-0.023035001009703],[0.029379880055785,0.02841123752296,-0.086019583046436],[-0.01146043650806,-0.037231579422951,0.078580841422081]],[[0.030759042128921,0.085571467876434,-0.08878143876791],[-0.0063602938316762,0.093531355261803,0.071913331747055],[0.041191954165697,0.030612481757998,0.018368238583207]],[[0.028745081275702,0.049618106335402,0.024268995970488],[0.057289525866508,0.062753237783909,-0.020325960591435],[0.028807137161493,0.078253239393234,-0.03846749663353]],[[-0.056245353072882,-0.0410858951509,-0.0089426580816507],[0.055812250822783,-0.086001321673393,-0.0080114677548409],[-0.084825813770294,-0.01981838606298,-0.011060116812587]],[[-0.0056725526228547,-0.019619278609753,-0.074233032763004],[0.00028859917074442,0.010566549375653,0.021975645795465],[0.024388482794166,-0.025855157524347,-0.077169813215733]],[[-0.095233358442783,0.022013980895281,0.081034548580647],[0.0038442704826593,-0.073144674301147,0.040369015187025],[-0.0021443315781653,-0.056014258414507,0.055325604975224]],[[-0.10356017202139,-0.094106040894985,-0.067631915211678],[0.057120881974697,0.11139805614948,0.0056574614718556],[-0.1625200510025,-0.12105292081833,-0.048341523855925]],[[0.026909682899714,0.047435581684113,-0.08047254383564],[-0.11633232980967,0.024812126532197,-0.16233099997044],[-0.017950281500816,-0.0051732077263296,-0.017432145774364]],[[0.0089009050279856,0.037340480834246,0.13719449937344],[-0.0066984440200031,-0.052498310804367,0.058112863451242],[-0.033962465822697,-0.036234587430954,0.063873440027237]],[[-0.0077208541333675,-0.0095252143219113,0.031737346202135],[-0.061233796179295,0.05538085848093,-0.012826289050281],[-0.041382014751434,0.012913428246975,0.019388064742088]],[[0.081733144819736,0.019319349899888,-0.039877440780401],[0.13013814389706,-0.22457310557365,0.15121138095856],[-0.0094103878363967,-0.085891522467136,-0.026032397523522]],[[-0.033910967409611,-0.071435302495956,0.017403466627002],[0.094092600047588,0.017937228083611,0.0063602542504668],[0.072306767106056,-0.031342029571533,0.18950393795967]],[[-0.014920603483915,-0.0157848931849,-0.010578003711998],[0.04555993527174,0.059963971376419,-0.054232232272625],[-0.020230935886502,0.043309539556503,-0.0087627694010735]],[[0.0083579132333398,0.057796042412519,-0.02272648923099],[0.017840642482042,-0.028246009722352,-0.014289928600192],[0.021324364468455,-0.054998833686113,-0.060095354914665]]],[[[-0.026880344375968,0.1075102314353,0.047804839909077],[-0.10109359025955,0.015936601907015,0.030978422611952],[0.031895723193884,0.026452578604221,0.13266289234161]],[[-0.0072216372936964,-0.0012886006152257,-0.061963330954313],[0.048586748540401,0.075380325317383,0.0012099427403882],[-0.067792870104313,0.00028840699815191,0.081334263086319]],[[-0.050181422382593,-0.089865826070309,-0.030065709725022],[-0.095150388777256,-0.034303158521652,-0.026945602148771],[-0.0098829660564661,-0.070672295987606,0.040527615696192]],[[-0.13138104975224,0.13216038048267,0.045537929981947],[-0.052847106009722,0.038337491452694,0.031626511365175],[-0.0036412547342479,0.027359824627638,-0.05529535934329]],[[0.051191207021475,-0.14471589028835,0.016299087554216],[0.12346577644348,0.0090539893135428,0.027967508882284],[-0.080448031425476,-0.097263038158417,-0.068886630237103]],[[-0.00060295523144305,0.032495204359293,-0.013015518896282],[0.078334286808968,0.038326811045408,-0.055491093546152],[-0.043259285390377,-0.14660979807377,-0.080033868551254]],[[-0.03236236050725,-0.055434200912714,0.023565080016851],[0.031386084854603,-0.0010959971696138,0.024260155856609],[0.016077680513263,0.00040508608799428,0.037280775606632]],[[-0.0028426870703697,0.0003763567074202,-0.042638350278139],[0.055818997323513,0.0036698710173368,-0.014116550795734],[-0.11633855104446,0.049459155648947,-0.016499860212207]],[[-0.10426656156778,0.11934468150139,0.059941537678242],[-0.00097812607418746,-0.04424099996686,-0.13010807335377],[-0.021529816091061,-0.11391813308001,-0.0035332378465682]],[[-0.0019092074362561,0.020260065793991,0.11580225080252],[0.05532131716609,-0.062701210379601,0.034904655069113],[-0.03388587012887,0.0053538782522082,0.11475543677807]],[[0.047705795615911,0.047115601599216,-0.10316280275583],[0.018767639994621,-0.0044049685820937,0.010959693230689],[0.095535539090633,-0.038983680307865,-0.026982020586729]],[[0.10881260037422,0.049625985324383,-0.024272548034787],[-0.040226306766272,0.027952836826444,0.01971953548491],[-0.0040709530003369,-0.15593585371971,-0.024867318570614]],[[-0.063169337809086,0.00024162151385099,0.077574089169502],[-0.13324300944805,-0.16856025159359,0.011723903939128],[0.030758200213313,0.070664219558239,0.051623690873384]],[[0.04820616170764,-0.040862929075956,-0.066379390656948],[0.053338300436735,-0.10638254880905,0.02762171253562],[0.037177193909883,-0.083780586719513,-0.001618652837351]],[[-0.046324301511049,-0.07014512270689,-0.040822371840477],[0.068217970430851,-0.096346467733383,-0.1037869155407],[0.0074373497627676,0.013831404969096,-0.056232966482639]],[[0.051877178251743,0.043941054493189,0.11634679883718],[-0.038619298487902,-0.016451861709356,0.039938353002071],[0.0079454947263002,0.037534430623055,-0.031870935112238]],[[0.048739273101091,0.08054231852293,-0.092949591577053],[-0.027574740350246,-0.0051638628356159,-0.043786164373159],[0.06729419529438,0.051410604268312,0.027272626757622]],[[-0.0094198426231742,0.10810876637697,0.044327616691589],[-0.047903254628181,0.19954742491245,0.1392147988081],[-0.01584673859179,0.010794144123793,0.18962852656841]],[[-0.031273424625397,0.04491076245904,-0.017179472371936],[0.039372235536575,-0.029690554365516,-0.057577423751354],[-0.0014579426497221,0.087772682309151,0.10380087792873]],[[-0.010725389234722,-0.034142505377531,-0.004839132539928],[-0.037305548787117,0.022893540561199,0.068010695278645],[0.026323452591896,-0.041270799934864,0.043633278459311]],[[-0.021942980587482,-0.022213684394956,0.035896722227335],[-0.04700942710042,-0.073573365807533,-0.094511918723583],[0.03518046438694,0.04938580840826,-0.11495097726583]],[[-0.019757378846407,-0.048527505248785,0.024592790752649],[-0.022615619003773,0.030580256134272,0.010129408910871],[0.010865549556911,-0.026822263374925,-0.026845885440707]],[[0.005627166479826,0.027898771688342,-0.00047746978816576],[-0.064203873276711,-0.1111466884613,-0.020172420889139],[-0.087648257613182,-0.05382177606225,0.13023363053799]],[[-0.070687554776669,0.062905095517635,-0.047944936901331],[-0.090511821210384,0.088126383721828,0.11789575964212],[0.048138417303562,0.004263446200639,0.065367147326469]],[[-0.069691754877567,-0.07407233864069,-0.016820009797812],[0.010642255656421,-0.043699506670237,-0.12819103896618],[0.1303293555975,0.052888110280037,-0.015144259668887]],[[0.0059977089986205,-0.046994876116514,0.0084024276584387],[0.029534809291363,0.0823570266366,0.032800395041704],[0.042075231671333,0.044427160173655,0.017731567844748]],[[0.054468333721161,-0.037970092147589,0.082978144288063],[0.051114618778229,-0.013762765564024,0.039239022880793],[-0.036393191665411,-0.050133608281612,-0.069112725555897]],[[-0.013482651673257,0.017962973564863,0.033929128199816],[-0.012372500263155,-0.10001502931118,0.038047429174185],[0.026134168729186,0.034128576517105,0.057857237756252]],[[0.0092852665111423,0.057266686111689,-0.010405547916889],[-0.0010708556510508,0.013842495158315,0.030808012932539],[0.057882286608219,0.010721545666456,-0.031519655138254]],[[-0.0059309615753591,0.076200768351555,0.0066082254052162],[-0.029386965557933,-0.0004907957627438,0.014192476868629],[0.062395293265581,0.013256308622658,0.032304234802723]],[[0.05147136375308,0.032073441892862,0.079281896352768],[0.054772090166807,-0.028479347005486,-0.11606835573912],[0.060955502092838,0.056162990629673,-0.03962055593729]],[[-0.017051974311471,-0.0099814226850867,-0.0088463127613068],[-0.03002093359828,0.011592586524785,-0.099656507372856],[0.05401286482811,-0.054001666605473,-0.037606466561556]],[[-0.028282698243856,-0.012550665996969,-0.043048955500126],[0.0042395386844873,-0.01398282777518,-0.031208420172334],[-0.012274840846658,0.062635034322739,0.036089580506086]],[[0.046015370637178,0.025111831724644,-0.071198925375938],[0.043823596090078,-0.025856034830213,-0.060099851340055],[-0.0073391431942582,-0.072550222277641,0.04173818230629]],[[0.066524431109428,0.030510338023305,-0.033502899110317],[-0.10574495792389,-0.069226734340191,-0.083590768277645],[-0.072958648204803,-0.0029592795763165,0.050781238824129]],[[0.058233805000782,0.01372354850173,0.0057389810681343],[-0.083349242806435,0.0051485728472471,0.066935479640961],[-0.034433621913195,0.032355513423681,0.0057559120468795]],[[0.043623853474855,-0.0025725169107318,-0.012550166808069],[0.060149744153023,-0.044714711606503,-0.0048964195884764],[-0.029727935791016,-0.0007652320782654,0.07345437258482]],[[0.0038944622501731,0.023571671918035,0.02979950606823],[0.043152373284101,0.058681573718786,0.099968247115612],[0.1809711009264,-0.051593728363514,-0.068820707499981]],[[0.050760377198458,-0.13009390234947,-0.048436123877764],[0.097954295575619,0.011573927477002,0.038282416760921],[0.021493770182133,0.020369675010443,-0.11003610491753]],[[-0.018079180270433,0.044433772563934,0.10502830147743],[-0.05804280564189,-0.14497463405132,-0.13284242153168],[0.014483887702227,0.062997713685036,-0.046901445835829]],[[-0.034523352980614,0.023099085316062,-0.053648412227631],[-0.10644134134054,-0.056070808321238,0.063135363161564],[-0.092230796813965,-0.081333696842194,-0.001108487485908]],[[-0.061266236007214,-0.051303274929523,-0.098880589008331],[-0.024912478402257,-0.029821218922734,0.017704386264086],[0.036542754620314,-0.068895392119884,0.019974397495389]],[[-0.01463911216706,0.023731034249067,0.029156303033233],[-0.06683673709631,-0.0088811200112104,0.050200585275888],[-0.096710659563541,-0.066822201013565,-0.025011764839292]],[[0.022585451602936,-0.066450379788876,0.029701493680477],[0.042400538921356,0.03669086843729,-0.016243128105998],[0.029385436326265,-0.011685887351632,0.09382975846529]],[[-0.050727520138025,0.11514965444803,0.028855280950665],[-0.070698499679565,-0.10079611837864,-0.00035532974288799],[0.040463361889124,0.0050145047716796,-0.079843156039715]],[[-0.075542323291302,-0.044098261743784,-0.047796778380871],[0.050144590437412,-0.0050209229812026,0.041344724595547],[-0.066889248788357,-0.088648103177547,-0.035639300942421]],[[-0.022068286314607,-0.050267569720745,0.14132417738438],[0.011928768828511,0.0084358286112547,0.012062815017998],[-0.047633316367865,-0.0029517225921154,0.081440925598145]],[[0.038495227694511,0.0028516198508441,-0.15874807536602],[-0.080156624317169,-0.017995495349169,0.12188819795847],[-0.035546973347664,-0.059684406965971,-0.0041764602065086]],[[-0.060560736805201,0.012788790278137,0.0060205371119082],[0.0062867072410882,0.10169822722673,0.091926388442516],[-0.049737464636564,-0.073003940284252,0.014654467813671]],[[-0.0045758285559714,-0.028915969654918,-0.01498934160918],[-0.03351879119873,-0.10773506760597,-0.070032082498074],[-0.066714018583298,0.053578019142151,-0.027460237964988]],[[0.13824705779552,-0.021962577477098,-0.09480907022953],[-0.052908763289452,-0.012284807860851,0.01461910456419],[-0.049200870096684,-0.014543514698744,-0.02685759589076]],[[-0.097181469202042,-0.022041942924261,0.076742760837078],[0.092321328818798,0.10552433878183,0.0067635015584528],[0.055608335882425,-0.0082810344174504,0.11506737023592]],[[-0.13681581616402,-0.038308657705784,-0.030943542718887],[0.012327118776739,0.049393530935049,-0.039466165006161],[-0.038097202777863,0.080610103905201,0.013482134789228]],[[0.088719978928566,-0.035555198788643,0.073958076536655],[0.040800217539072,-0.17365337908268,-0.048808697611094],[-0.095644541084766,0.055458333343267,0.04904106259346]],[[-0.0044667590409517,-0.098946630954742,-0.06271967291832],[0.013423562049866,-0.022483125329018,0.018907429650426],[0.025492420420051,0.0081896958872676,-0.011070614680648]],[[0.061494130641222,0.056339107453823,0.068574078381062],[0.053312074393034,-0.00025842394097708,-0.02883442491293],[-0.10484798252583,0.067672476172447,-0.053571570664644]],[[-0.097330890595913,-0.090191774070263,-0.063802003860474],[-0.027551410719752,-0.01167552638799,0.032682206481695],[0.10040376335382,-0.028722934424877,0.053788974881172]],[[-0.01990925334394,-0.081301741302013,-0.0716717466712],[-0.052571754902601,-0.0038197722751647,-0.16445134580135],[-0.071125745773315,0.020379545167089,0.071905851364136]],[[-0.0088210450485349,-0.082876920700073,-0.0091915559023619],[-0.085391364991665,-0.01506313867867,-0.0082194339483976],[0.031520530581474,0.1799580603838,0.058849517256021]],[[0.0119599532336,0.066077820956707,0.0077650439925492],[-0.015580703504384,0.0072229052893817,-0.026166738942266],[-0.0043402658775449,0.0039555407129228,-0.037576533854008]],[[-0.084914363920689,-0.049053285270929,0.0089474692940712],[-0.019494233652949,-0.10579412430525,-0.061126992106438],[-0.018427381291986,0.023721860721707,-0.011875265277922]],[[-0.14182032644749,-0.062298055738211,0.053528293967247],[-0.086149461567402,-0.068181730806828,0.033677645027637],[0.0020800139755011,-0.057982135564089,0.071697145700455]],[[0.040136530995369,-0.049103431403637,0.049059465527534],[0.050140645354986,-0.069979667663574,0.040494125336409],[0.01846537925303,0.069273620843887,0.05505545437336]],[[-0.043514210730791,0.0084793772548437,0.0085725951939821],[-0.075621008872986,0.051842007786036,-0.038189396262169],[-0.062418188899755,0.042472492903471,0.021886387839913]]],[[[-0.11921305954456,-0.0037973497528583,0.040436793118715],[0.029570935294032,0.022941019386053,0.0053962455131114],[-0.037877306342125,-0.050709173083305,0.058811470866203]],[[-0.034339364618063,0.083579860627651,0.09463582187891],[-0.066321901977062,0.084496513009071,0.0056023234501481],[-0.0077901701442897,-2.3307104129344e-05,-0.0025187917053699]],[[-0.079016827046871,-0.083765394985676,0.015177494846284],[-0.08340311050415,-0.046757213771343,-0.022901434451342],[-0.022755093872547,-0.018075289204717,-0.042842540889978]],[[0.017473367974162,-0.05135190859437,-0.047166913747787],[0.023631040006876,-0.060030717402697,-0.059929393231869],[0.0019066688837484,0.012715895660222,-0.055419635027647]],[[0.015433477237821,0.00030141969909891,0.03078861348331],[-0.055724702775478,-0.050726816058159,0.03685699403286],[-0.026609685271978,-0.11898100376129,-0.093312233686447]],[[0.037660054862499,0.063697218894958,-0.019759900867939],[-0.017159586772323,-0.049599934369326,0.010165570303798],[-0.051419023424387,-0.039023071527481,-0.053989127278328]],[[-0.12608014047146,-0.022629691287875,0.1058794260025],[-0.020953796803951,0.10834428668022,-0.02855303324759],[0.063971698284149,-0.049663435667753,-0.050498891621828]],[[0.025974288582802,0.12360678613186,0.029709789901972],[0.012739059515297,-0.010083254426718,-0.055519718676805],[-0.015142318792641,0.017402419820428,-0.031292904168367]],[[0.071327276527882,-0.06423482298851,0.017619587481022],[0.041443571448326,-0.038961414247751,0.0054865684360266],[-0.027290457859635,-0.081058047711849,0.040977165102959]],[[-0.095185115933418,-0.01041544508189,-0.029011826962233],[-0.056206274777651,0.0074021006003022,0.0017977794632316],[-0.091523498296738,0.1281590461731,0.091906562447548]],[[0.08573517203331,-0.012785540893674,0.013494045473635],[0.034782633185387,-0.014302431605756,0.056057576090097],[0.03318578004837,-0.064434096217155,-0.057521920651197]],[[0.063230112195015,0.010276800021529,-0.072200387716293],[0.02821871638298,0.0036021640989929,0.0034098497126251],[0.054198004305363,0.027701579034328,0.034058570861816]],[[-0.039713565260172,-0.076550409197807,0.0068254796788096],[-0.026339802891016,0.014541086740792,0.0022599741350859],[-0.066726461052895,-0.0060308203101158,0.05414966493845]],[[-0.071458876132965,-0.093294687569141,-0.10576555132866],[-0.053003590553999,0.028691727668047,-0.12503157556057],[-0.081199012696743,-0.019953906536102,-0.076460272073746]],[[0.043442171066999,-0.026114322245121,0.018256118521094],[0.00013168845907785,-0.080008149147034,-0.044692497700453],[-0.0011038087541237,0.0030228625983,-0.046122182160616]],[[0.13953006267548,0.0021062979940325,0.0039699072949588],[0.050257485359907,-0.058655846863985,0.029750706627965],[-0.065905101597309,-0.070298813283443,0.00456657493487]],[[0.026699071750045,0.098930224776268,-0.10288905352354],[0.091892912983894,0.030354600399733,-0.02532672137022],[0.054017692804337,-0.034909665584564,-0.017147492617369]],[[0.014536487869918,-0.0068882061168551,-0.038017075508833],[0.085671208798885,0.010071586817503,-0.07176423817873],[0.013594736345112,-0.009308036416769,-0.075820252299309]],[[-0.09483078122139,0.007839435711503,0.04910796880722],[0.054551411420107,0.11576497554779,0.0069823488593102],[-0.072870939970016,0.038181006908417,0.0015766737051308]],[[-0.019230097532272,-0.0059691416099668,0.0083074131980538],[-0.0057950848713517,-0.0053216409869492,0.074649669229984],[-0.066083312034607,-0.0082374149933457,0.063120044767857]],[[-0.060771889984608,-0.026624545454979,-0.092778190970421],[-0.043897163122892,-0.0023830386344343,-0.19303987920284],[-0.036928568035364,-0.04994210973382,-0.18037824332714]],[[-0.011800191365182,-0.026919627562165,-0.050631482154131],[0.10994894057512,-0.089002445340157,-0.0068151936866343],[-0.028986059129238,0.059879943728447,-0.026894189417362]],[[-0.013002865947783,-0.040981110185385,-0.098551630973816],[-0.018756430596113,-0.043192002922297,-0.076784864068031],[0.019143307581544,-0.028532523661852,-0.0040952893905342]],[[0.055061034858227,-0.010780677199364,0.1043266877532],[0.057962384074926,-0.047627855092287,0.16704577207565],[0.012055213563144,0.035475287586451,-0.038349889218807]],[[-0.11982291191816,-0.028057275339961,-0.063876017928123],[0.10731113702059,0.031542178243399,-0.0032341829501092],[0.0081995623186231,-0.0077448878437281,0.01617226190865]],[[-0.026889823377132,0.054213773459196,0.074604377150536],[-0.044653434306383,0.0099374279379845,0.025985093787313],[-0.03603108227253,0.059629704803228,0.012833779677749]],[[0.061290249228477,-0.047007948160172,-0.004553799983114],[0.02741227298975,-0.071194723248482,-0.0036099134013057],[0.067486919462681,-0.11306572705507,0.00083977897884324]],[[0.071737110614777,0.020412977784872,0.064755246043205],[-0.022564735263586,0.037781313061714,0.12150482088327],[0.0013893205905333,-0.055811177939177,0.01645028591156]],[[-0.02741433493793,-0.022224809974432,0.044431023299694],[0.042963586747646,-0.031330838799477,0.00043717844528146],[0.11856660246849,-0.010970745235682,-0.10573764145374]],[[0.057815093547106,0.0144136948511,0.036528866738081],[-0.024108313024044,0.0050930022262037,0.083859257400036],[0.02448745816946,-0.086731314659119,0.040270082652569]],[[0.032890919595957,-0.069260708987713,0.020806739106774],[0.081699252128601,-0.13713979721069,0.04368107393384],[-0.026067806407809,-0.015124019235373,0.048782303929329]],[[-0.10663515329361,0.026263689622283,0.013141967356205],[0.040411770343781,0.075322352349758,-0.048509553074837],[-0.014416166581213,-0.039758041501045,0.017455684021115]],[[-0.11549320071936,-0.014205196872354,-0.079939134418964],[-0.022759666666389,-0.038053836673498,-0.023495718836784],[0.044751785695553,0.020662881433964,0.0077367266640067]],[[-0.03139416873455,-0.019233133643866,-0.050014410167933],[-0.16597117483616,-0.095069825649261,0.048456989228725],[-0.1442912966013,-0.080188810825348,-0.01450274977833]],[[-0.065919876098633,-0.025256611406803,0.057627022266388],[0.048508606851101,0.02298267185688,0.0046397768892348],[0.019317889586091,0.0041466052643955,-0.026927618309855]],[[-0.021170502528548,-0.0026834104210138,-0.062377631664276],[-0.040654696524143,-0.1179133951664,0.055654983967543],[-0.028857607394457,-0.019258154556155,0.046104315668344]],[[-0.028832238167524,0.017985559999943,-0.035585679113865],[0.072641745209694,-0.041481837630272,0.033004801720381],[-0.014663450419903,-0.015096556395292,0.079077281057835]],[[-0.024330854415894,0.042785957455635,-0.0012287597637624],[-0.078063033521175,0.015786439180374,0.063345119357109],[-0.085406899452209,0.0031041610054672,0.047547943890095]],[[-0.026189502328634,-0.038166061043739,-0.11290105432272],[0.0023251976817846,-0.0079853916540742,0.044758517295122],[-0.0045034964568913,0.014142417348921,-0.061860367655754]],[[-0.0721056163311,-0.041204083710909,-0.10233180224895],[-0.046819735318422,0.028329672291875,-0.099469982087612],[-0.065166756510735,0.014328354969621,-0.094418823719025]],[[-0.0029769924003631,0.036413226276636,-0.026194352656603],[0.02578248269856,0.016810202971101,-0.052098304033279],[0.010706375353038,-0.072599530220032,-0.081441484391689]],[[0.0068056480959058,0.012261755764484,-0.017566191032529],[-0.016754014417529,-0.023093398660421,0.030149102210999],[0.047127615660429,0.10212998092175,-0.043135080486536]],[[-0.069891713559628,0.14297461509705,-0.06590723246336],[-0.042648613452911,0.0030076466500759,-0.20046040415764],[-0.031757462769747,0.023942371830344,-0.10857975482941]],[[-0.001882151584141,-0.0012392228236422,-0.0017869940493256],[0.038145959377289,0.014379098080099,-0.031652525067329],[-0.085815884172916,-0.067906245589256,-0.039615776389837]],[[0.070953860878944,0.010554177686572,-0.041332114487886],[-0.046472318470478,-0.015430115163326,0.019091052934527],[-0.012563968077302,-0.018670884892344,0.02308639138937]],[[-0.061264295130968,0.025614885613322,0.063427053391933],[-0.031949400901794,0.01191536989063,0.021109966561198],[-0.071053959429264,0.0071741561405361,0.051863305270672]],[[-0.10694237798452,0.090282760560513,-0.035053364932537],[-0.021604428067803,-0.072153963148594,0.11810244619846],[0.011961898766458,0.012103533372283,-0.052738543599844]],[[-0.0011517582461238,-0.091009944677353,-0.034893717616796],[0.029871925711632,-0.078957356512547,-0.031138064339757],[-0.014936250634491,-0.041481856256723,-0.022481637075543]],[[-0.016642900183797,-0.023167941719294,-0.00013013601710554],[-0.017444349825382,-0.070002406835556,-0.0037343925796449],[0.0068145743571222,-0.029915060847998,0.0042304727248847]],[[-0.027741026133299,-0.0087123885750771,-0.0070061055012047],[0.047429330646992,0.0085767703130841,-0.082190945744514],[0.017442371696234,0.037131678313017,0.071593411266804]],[[-0.0018478076672181,-0.026850830763578,0.03320787101984],[0.015837546437979,-0.03801616281271,0.037290658801794],[0.01642707362771,0.041866861283779,-0.050633031874895]],[[-0.036963034421206,0.01822205632925,-0.061993103474379],[0.060667604207993,-0.083651304244995,0.029022593051195],[-0.1109222471714,0.038308020681143,0.028758231550455]],[[0.07462564855814,0.040808226913214,0.094472922384739],[-0.083694279193878,-0.065705135464668,0.11080326139927],[-0.078226827085018,-0.074183084070683,0.038564335554838]],[[0.02779589779675,0.058925036340952,-0.020336354151368],[0.051766525954008,-0.0023290417157114,0.014327733777463],[0.045493204146624,0.02008361928165,-0.022669952362776]],[[-0.048587054014206,0.028758814558387,-0.016625029966235],[0.018865656107664,-0.049957890063524,0.10459430515766],[-0.094245322048664,-0.0013261344283819,-0.036864433437586]],[[-0.056961096823215,-0.034688033163548,0.011390208266675],[-0.0067097349092364,0.0096697751432657,0.0018491906812415],[0.12366832047701,-0.065691336989403,0.075226426124573]],[[0.04644700884819,-0.012379173189402,0.080833896994591],[-0.0071920207701623,-0.098136216402054,0.094282254576683],[-0.024685580283403,-0.043619621545076,-0.058090589940548]],[[0.044021110981703,-0.040990084409714,-0.004248196259141],[-0.030891429632902,-0.092016987502575,-0.01098523940891],[-0.099736943840981,-0.15875388681889,-0.07886054366827]],[[0.14003393054008,0.045099407434464,0.0096141779795289],[0.075521871447563,0.079437904059887,-0.00027471492649056],[0.045366015285254,-0.0021285740658641,-0.020751221105456]],[[0.023543678224087,0.082070782780647,-0.071673646569252],[0.036840938031673,-0.0055350242182612,-0.050489608198404],[0.036405723541975,-0.0099945673719049,-0.047199882566929]],[[-0.034217894077301,-0.0095911156386137,-0.041490871459246],[-0.10217572748661,0.0032755583524704,-0.054308753460646],[-0.011631060391665,0.022312857210636,-0.068798191845417]],[[-0.10409958660603,0.0070776641368866,0.028093660250306],[-0.013446121476591,-0.010620458982885,-0.028936823830009],[0.036372032016516,0.08416298776865,-0.076394326984882]],[[0.050655890256166,-0.030522614717484,0.030754482373595],[0.00797154661268,-0.049007479101419,-0.05737779289484],[0.074294835329056,-0.06347743421793,0.023932557553053]],[[0.085888162255287,0.030746771022677,0.050336066633463],[-0.12001283466816,-0.052862413227558,-0.026757592335343],[-0.046649567782879,0.036475874483585,0.071396969258785]]],[[[-0.038770101964474,-0.13601087033749,-0.046191938221455],[-0.059928398579359,0.043846733868122,0.022469870746136],[-0.044925697147846,-0.022602692246437,-0.047175064682961]],[[0.031682789325714,-0.04408011212945,-0.0054153786040843],[0.014105252921581,-0.034546263515949,0.039766397327185],[-0.023044154047966,0.036868002265692,-0.031985230743885]],[[0.00030426925513893,-0.062784910202026,0.023256490007043],[-0.031154150143266,-0.055531747639179,0.071943558752537],[0.05724873021245,-0.11995680630207,0.01853384077549]],[[-0.12462932616472,-0.019567495211959,0.039189927279949],[-0.10598237067461,-0.048376683145761,-0.0012785188155249],[-0.051017709076405,0.0081653380766511,-0.045063573867083]],[[-0.020953997969627,-0.016942942515016,0.052734322845936],[0.050588227808475,0.0090192593634129,-0.17592903971672],[-0.13952124118805,-0.070474803447723,-0.081715129315853]],[[0.022577384486794,-0.054777380079031,-0.11596625298262],[-0.070192418992519,0.051694016903639,0.026551332324743],[0.0035280555021018,-0.0024241621140391,-0.051748037338257]],[[0.046299837529659,-0.0509835742414,-0.017511626705527],[-0.039733666926622,-0.10833654552698,-0.0086971009150147],[-0.047647073864937,-0.032842680811882,0.00094833713956177]],[[0.0030236230231822,-0.076828882098198,0.013334752060473],[0.018518483266234,-0.058123711496592,0.020464219152927],[-0.055970743298531,0.011147858574986,-0.059378787875175]],[[-0.10495985299349,0.078329205513,-0.043305587023497],[0.13302631676197,-0.037048574537039,0.034832458943129],[-0.018106685951352,-4.8384612455266e-05,-0.068524934351444]],[[-0.050366751849651,-0.085604146122932,-0.039207797497511],[0.003358768299222,0.016677295789123,0.040157470852137],[0.031547602266073,0.0016858329763636,-0.0093646934255958]],[[-0.023508902639151,0.035992678254843,0.045104879885912],[-0.022986978292465,-0.052014332264662,-0.036108542233706],[-0.091640882194042,0.02028720267117,0.10792272537947]],[[-0.08266893029213,-0.015321101993322,-0.018623549491167],[-0.088986366987228,0.032769504934549,0.039462123066187],[0.044290777295828,-0.05311580747366,-0.028601795434952]],[[0.019849415868521,-0.0096560558304191,-0.027853997424245],[0.057343535125256,-0.12896631658077,-2.0656643755501e-05],[0.0010340849403292,0.028600133955479,-0.0263283662498]],[[0.076411679387093,-0.030766662210226,0.012838242575526],[0.013061700388789,-0.022890098392963,0.052162285894156],[0.012540387921035,-0.0038702508900315,0.1125146150589]],[[-0.044536959379911,-0.048106253147125,0.030413979664445],[-0.0012390878982842,-0.0056644813157618,0.034989804029465],[-0.016296625137329,-0.078498184680939,0.029561910778284]],[[0.04372276365757,0.077366009354591,-0.075221560895443],[0.010176902636886,0.088923156261444,-0.045719675719738],[-0.070451274514198,-0.10364948958158,-0.060417778789997]],[[-0.06066707894206,0.12727190554142,0.029559001326561],[0.0012001735158265,0.03947451710701,-0.039636630564928],[-0.038028363138437,-0.043947584927082,0.084766238927841]],[[0.13496296107769,0.0092147784307599,0.031851351261139],[0.010148343630135,-0.034090247005224,-0.091747626662254],[-0.081740498542786,-0.038446724414825,0.027777289971709]],[[-0.036396242678165,-0.058792978525162,0.010537132620811],[0.019985666498542,-0.059466060250998,-0.022777052596211],[0.014673424884677,-0.016977626830339,-0.093876354396343]],[[0.034232370555401,0.022086337208748,-0.032145146280527],[0.0011298689059913,-0.0054890159517527,0.012926041148603],[-0.0022023885976523,0.00046164053492248,-0.011290151625872]],[[-0.0069763096980751,-0.070844948291779,-0.043047748506069],[0.043672420084476,0.071747392416,0.026038626208901],[-0.024441687390208,0.078689694404602,0.089437454938889]],[[0.090219475328922,-0.039973646402359,-0.11392366886139],[0.023326322436333,-0.077694274485111,0.011152008548379],[0.096933245658875,-0.025794332846999,-0.10276867449284]],[[0.052460055798292,0.024313924834132,0.051832620054483],[0.0098859751597047,-0.032431576400995,-0.066407114267349],[0.064299881458282,0.039864957332611,-0.040641620755196]],[[0.075680509209633,0.10578259825706,0.081229418516159],[-0.0010780033189803,0.0073968316428363,0.044735196977854],[-0.059842880815268,0.055014804005623,0.16495761275291]],[[0.064532965421677,-0.01611852645874,0.026153082028031],[-0.002982776844874,0.081315509974957,0.010355222970247],[-0.027910558506846,0.13889554142952,0.16163124144077]],[[0.020117629319429,0.045855022966862,0.0016868133097887],[-0.031992394477129,-0.048805169761181,0.051165789365768],[-0.022862436249852,-0.028617586940527,0.11781078577042]],[[0.016655838117003,0.0079036420211196,-0.076148383319378],[-0.055303204804659,0.075057782232761,0.093791678547859],[-0.0035450579598546,-0.054658286273479,0.0069763623178005]],[[0.022886963561177,-0.018833424896002,-0.036032509058714],[-0.033556662499905,-0.035111904144287,-0.092663146555424],[0.031603500247002,-0.00014456252392847,0.0066519817337394]],[[-0.18852378427982,-0.016961297020316,-0.06057795137167],[-0.07989776134491,-0.011233081109822,-0.044346988201141],[-0.056695692241192,0.055666126310825,0.021051120012999]],[[-0.019742457196116,-0.019447600468993,0.0063597681000829],[-0.070571355521679,-0.00627824338153,-0.022283656522632],[-0.021376525983214,-0.099286377429962,0.031810164451599]],[[0.032279957085848,-0.036935660988092,0.073850020766258],[0.02291975915432,-0.031762190163136,-0.19193790853024],[-0.13008047640324,0.10204875469208,-0.025597982108593]],[[0.095587857067585,-0.020667960867286,0.02221998013556],[0.054886981844902,-0.027645859867334,-0.01379482448101],[-0.011636639013886,0.012864174321294,-0.0010494290618226]],[[0.00052920740563422,0.033140312880278,0.037185803055763],[-0.0063302097842097,0.04255011305213,-0.031087497249246],[-0.024948993697762,-0.075350426137447,-0.051387216895819]],[[0.009038707241416,0.095491960644722,0.05392899364233],[-0.054187435656786,0.14200723171234,-0.042844820767641],[0.0074516576714814,-0.0035455145407468,0.0067230225540698]],[[0.024760881438851,0.054805546998978,-0.03273332118988],[0.036350473761559,0.03621493652463,-0.031635224819183],[-0.048598553985357,0.076949402689934,0.048904091119766]],[[0.014636358246207,-0.031218469142914,-0.060207426548004],[0.011367144063115,0.0047629899345338,-0.045162074267864],[0.04473128169775,0.00068820267915726,-0.036056157201529]],[[0.052333004772663,0.0085543328896165,0.017330268397927],[-0.0091103157028556,-0.099970795214176,-0.056074269115925],[-0.0091782603412867,0.076940581202507,-0.13695047795773]],[[-0.001321557094343,-0.071550317108631,-0.0053339055739343],[0.010342388413846,-0.017939973622561,0.056247759610415],[0.031568054109812,0.049223348498344,-0.041948545724154]],[[0.069780230522156,0.01825194619596,0.042145900428295],[-0.038254212588072,-0.011648012325168,0.049264971166849],[-0.01365527138114,0.026391834020615,0.066225200891495]],[[-0.021324899047613,0.014058144763112,-0.083843551576138],[-0.013260105624795,-0.027752393856645,0.058264560997486],[-0.018694335594773,-0.078416369855404,-0.008044458925724]],[[-0.025476031005383,0.015687495470047,0.036632731556892],[0.02552374638617,0.036793142557144,0.06532359868288],[-0.090805098414421,-0.11309617012739,0.0011964738368988]],[[0.096856825053692,-0.03747034817934,0.013165772892535],[-0.060195583850145,-0.010886180214584,-0.02838521450758],[-0.080030225217342,0.029576657339931,-0.017126908525825]],[[-0.0043345890007913,-0.05885436758399,0.032141555100679],[0.068263612687588,-0.057717446237803,0.018245587125421],[-0.024587493389845,-0.079812690615654,-0.010952612385154]],[[0.0024968096986413,-0.034411188215017,-0.02176352776587],[-0.049894001334906,-0.02217223122716,-0.055391307920218],[-0.036617759615183,0.070289082825184,0.022740539163351]],[[-0.0096048908308148,-0.045611564069986,0.027501631528139],[-0.019946400076151,-0.044974494725466,0.058598529547453],[0.10166296362877,-0.15103627741337,-0.12820467352867]],[[0.059212405234575,0.0069074686616659,-0.023795150220394],[-0.13643485307693,-0.046494353562593,0.018048858270049],[0.093419820070267,0.015988390892744,0.0063542206771672]],[[-0.045517075806856,-0.021284619346261,-0.034103464335203],[-0.024944398552179,0.035416029393673,0.079395279288292],[-0.064713820815086,0.019543757662177,0.10139428824186]],[[-0.024537401273847,-0.041138280183077,-0.086320467293262],[0.1067677885294,0.074018239974976,-0.0099912136793137],[-0.12878873944283,-0.11717227101326,-0.18512976169586]],[[0.016662495210767,0.017534134909511,-0.037298403680325],[0.043003179132938,0.022468447685242,-0.11366421729326],[-0.081570290029049,-0.0091657396405935,0.041774708777666]],[[-0.0049756281077862,-0.08044845610857,-0.081847295165062],[0.032533209770918,0.043296609073877,-0.08212635666132],[0.12489683926105,-0.10230952501297,-0.052804175764322]],[[0.024158427491784,0.039649043232203,-0.016270058229566],[-0.051237385720015,0.015877436846495,-0.036090802401304],[-0.038172442466021,-0.080426558852196,-0.11992313712835]],[[0.050551488995552,-0.05997620895505,-0.0339833535254],[0.044113058596849,0.0090901954099536,0.078666932880878],[0.053612537682056,0.057631269097328,0.13458412885666]],[[-0.032665997743607,-0.018174167722464,-0.056895945221186],[-0.054561052471399,0.13162994384766,-0.07464824616909],[-0.060807950794697,-0.0044251107610762,-0.13234342634678]],[[-0.11458599567413,-0.09311631321907,0.10350243002176],[-0.093353524804115,0.00091663672355935,-0.0024082912132144],[-0.0046255425550044,0.067350007593632,0.0061136926524341]],[[-0.0021643098443747,-0.0078184632584453,-0.011976229958236],[0.019009117037058,0.042693737894297,0.03274042531848],[-0.0007735132239759,0.012671271339059,-0.019810192286968]],[[0.025004284456372,-0.00096632644999772,-0.032126169651747],[0.059452675282955,-0.018260767683387,0.062041200697422],[-0.026659360155463,-0.038347583264112,-0.0089816711843014]],[[0.0055041168816388,0.096232458949089,0.0086029674857855],[-0.070274464786053,0.079051986336708,-0.034664962440729],[-0.019322767853737,-0.062764145433903,0.033885430544615]],[[0.0081590563058853,-0.0076445378363132,-0.034107849001884],[-0.0085518583655357,-0.019255420193076,-0.050603851675987],[0.013624478131533,0.0049106874503195,0.030319042503834]],[[0.12234594672918,-0.12505835294724,0.0045677740126848],[0.040174763649702,0.058896765112877,0.086696222424507],[0.04567888751626,-0.010037113912404,0.034255646169186]],[[-0.079037070274353,-0.0057100704871118,0.025351997464895],[0.0076910657808185,0.0031591528095305,-0.0039304797537625],[0.000484603602672,-0.010546742938459,0.053578898310661]],[[0.070113748311996,-0.023184577003121,0.060503154993057],[-0.051299508661032,0.018645873293281,0.010297312401235],[-0.019984966143966,-0.0056204907596111,-0.03413924202323]],[[0.11131777614355,0.022874213755131,-0.039861496537924],[0.012357989326119,-0.040987033396959,0.019906396046281],[-0.023059448227286,0.053682688623667,0.040524698793888]],[[0.010247519239783,-0.031551830470562,-0.0039196717552841],[-0.061213906854391,0.096700079739094,0.010072487406433],[-0.013286935165524,-0.013357874006033,-0.087506897747517]],[[-0.019698454067111,-0.050135623663664,0.025313483551145],[0.048169780522585,-0.064021989703178,-0.0047988225705922],[-0.019551331177354,-0.10876578092575,-0.071819633245468]]],[[[-0.095494844019413,-0.052275706082582,-0.056654203683138],[0.03990076482296,-0.075742870569229,-0.1167231798172],[0.017061060294509,0.098923206329346,-0.02594811283052]],[[-0.092574000358582,-0.030716115608811,-0.10014306753874],[-0.081860095262527,-0.057518307119608,-0.048836033791304],[-0.058334849774837,0.047875735908747,0.040673322975636]],[[-0.091683432459831,-0.031462918967009,-0.09844646602869],[-0.026256337761879,-0.15583910048008,-0.018432386219501],[-0.032725553959608,-0.046861696988344,-0.089530192315578]],[[-0.039352115243673,0.052049417048693,-0.094259977340698],[0.09345854818821,-0.10930164158344,-0.1357079744339],[0.026685180142522,-0.03679247200489,-0.039166793227196]],[[0.00057286332594231,-0.08557240664959,0.060013901442289],[-0.10399782657623,0.12519274652004,-0.035132810473442],[-0.042551159858704,-0.072057209908962,-0.024277810007334]],[[0.074893869459629,0.066683515906334,-0.063243292272091],[-0.017637887969613,-0.10739909112453,-0.079599551856518],[0.071865804493427,-0.03678211197257,-0.079159662127495]],[[-0.010312404483557,-0.096243761479855,0.028536550700665],[-0.043480027467012,-0.068890757858753,-0.075871959328651],[-0.077442675828934,-0.15444016456604,0.059721790254116]],[[-0.013974873349071,0.020726025104523,0.022941645234823],[0.0024296273477376,-0.0046701282262802,-0.022642342373729],[-0.04707745462656,0.02673626318574,0.047896858304739]],[[0.018940437585115,0.061506692320108,0.0090356972068548],[-0.0066549456678331,0.036363940685987,0.037749044597149],[0.019876230508089,-0.050843756645918,-0.04598892480135]],[[-0.037670116871595,0.028368292376399,-0.02198631875217],[0.03166363760829,-0.10265220701694,-0.022681437432766],[-0.04401733726263,-0.056657753884792,-0.035059787333012]],[[0.018139163032174,0.0077162976376712,-0.10803692787886],[-0.0090413568541408,-0.069125346839428,0.028110105544329],[0.026553582400084,-0.032089032232761,-0.016327200457454]],[[0.020928746089339,-0.061467565596104,0.042904481291771],[-0.031990583986044,-0.022803952917457,-0.17399372160435],[-0.0059263128787279,-0.18220049142838,0.038969285786152]],[[-0.0051754368469119,-0.020198868587613,-0.096789747476578],[-0.034753672778606,-0.12671764194965,0.041680242866278],[0.032258465886116,-0.017465574666858,-0.085591062903404]],[[-0.13138097524643,0.084892295300961,-0.052909344434738],[0.058293953537941,-0.052351385354996,0.033252611756325],[-0.085292562842369,0.10398485511541,0.011434522457421]],[[0.0027066229376942,0.0062410603277385,-0.081382051110268],[-0.019521795213223,0.012599996291101,-0.17743289470673],[-0.022400710731745,0.036451913416386,0.0015104467747733]],[[-0.032162576913834,-0.14433500170708,-0.11912368237972],[-0.032962128520012,0.064187690615654,-0.12384015321732],[0.29336008429527,-0.14227414131165,0.038818035274744]],[[-0.016792960464954,-0.12063605338335,0.16889311373234],[-8.799419447314e-05,0.050148870795965,-0.078623697161674],[0.16741049289703,-0.055335164070129,-0.074569910764694]],[[-0.0072710076346993,-0.082861840724945,-0.0053795366548002],[-0.026898786425591,-0.04943585768342,-0.048841625452042],[-0.018225597217679,-0.051708526909351,-0.0015160195762292]],[[-0.013216314837337,-0.00039248957182281,0.050077717751265],[0.014865286648273,0.025599021464586,-0.0352080501616],[-0.025956064462662,0.063603930175304,-0.11143420636654]],[[0.0032184366136789,0.013868493959308,-0.053402174264193],[0.019940614700317,-0.0028836573474109,0.0073507134802639],[0.039002317935228,-0.014432442374527,-0.038156524300575]],[[0.017957519739866,-0.091247029602528,-0.0088940821588039],[0.037783727049828,0.045419994741678,-0.069780260324478],[0.020600801333785,0.068189948797226,0.0012571520637721]],[[0.099864199757576,0.10829758644104,0.092997439205647],[-0.10409820079803,-0.044635605067015,0.00064194126753137],[-0.062849178910255,-0.14638939499855,-0.010857158340514]],[[-0.0037235382478684,-0.046850107610226,-0.043429374694824],[-0.11440375447273,0.028005858883262,0.027269357815385],[0.089524641633034,-0.044863980263472,0.058201152831316]],[[-0.036361217498779,0.045008704066277,-0.036754138767719],[-0.028227804228663,0.056711442768574,0.091261774301529],[0.10514687001705,-0.1353412270546,0.10902722924948]],[[-0.056570719927549,-0.099602229893208,-0.099049739539623],[0.050929967314005,-0.03833781927824,-0.045438550412655],[0.066119037568569,0.067435279488564,-0.024092998355627]],[[0.01051823142916,-0.0570586360991,0.10471444576979],[0.010097275488079,0.047394242137671,-0.012146630324423],[0.024208540096879,0.032087683677673,-0.013170833699405]],[[0.0096740322187543,-0.18214827775955,0.014505280181766],[-0.081776097416878,-0.011369588784873,-0.15226945281029],[0.072335809469223,-0.029159527271986,-0.090312123298645]],[[-0.073688544332981,-0.0054531409405172,0.058264087885618],[-0.023948946967721,-0.0041262824088335,0.060189243406057],[-0.011533284559846,-0.050965860486031,0.040996380150318]],[[0.12849198281765,0.069832503795624,-0.085775837302208],[0.012981792911887,-0.092410862445831,-0.030422959476709],[-0.012683150358498,-0.19124440848827,-0.13381956517696]],[[-0.051552820950747,-0.081666253507137,-0.041649803519249],[-0.03701514005661,-0.0099689634516835,-0.069982543587685],[-0.011424189433455,0.023162411525846,-0.034992508590221]],[[0.00026274909032509,0.10362589359283,-0.014487829990685],[-0.11364218592644,-0.082712277770042,-0.080692164599895],[0.0024994153063744,0.01424665004015,0.096020892262459]],[[-0.045065883547068,0.01202873699367,-0.041131883859634],[0.011962410993874,0.008935235440731,-0.061967186629772],[-0.035482380539179,-0.089096404612064,0.11293386667967]],[[-0.064631424844265,-0.061199814081192,-0.1053719446063],[-0.0010661069536582,0.01467770896852,-0.053166579455137],[-0.0071585085242987,-0.12905535101891,0.066543638706207]],[[-0.025806717574596,-0.0040425332263112,-0.12786424160004],[0.10689670592546,-0.042556915432215,-0.051258806139231],[-0.076392062008381,-0.060737434774637,0.0090464800596237]],[[0.050839457660913,-0.073649995028973,-0.056242842227221],[-0.09631010144949,0.0040796655230224,-0.028533007949591],[0.02620206028223,-0.078183077275753,0.066295832395554]],[[-0.035387746989727,-0.047703366726637,0.072344817221165],[-0.01564684137702,0.0072445035912097,0.087245278060436],[0.033405508846045,-0.016077201813459,0.042271073907614]],[[-0.0056358384899795,0.0085272947326303,0.0780094191432],[0.015927642583847,-0.0088916281238198,-0.0049974708817899],[-0.0034722285345197,-0.10196617990732,0.013532408513129]],[[-0.061634238809347,0.0062349145300686,-0.019856080412865],[-0.016186971217394,-0.1516774892807,-0.056431148201227],[0.024513497948647,-0.022027783095837,-0.031782649457455]],[[-0.076713688671589,0.015255673788488,-0.047924961894751],[-0.058226637542248,-0.02989137172699,0.040906563401222],[0.0045359004288912,-0.052490569651127,0.024898068979383]],[[-0.06215712428093,-0.076657801866531,-0.16322511434555],[0.11110714823008,-0.025908209383488,-0.067806385457516],[-0.077512435615063,-0.0013363182079047,-0.1457839012146]],[[0.029931066557765,-0.14670011401176,0.1136574819684],[-0.23185414075851,-0.10905531793833,-0.061547432094812],[-0.033236317336559,-0.058955539017916,-0.10755336284637]],[[-0.14318858087063,0.045975062996149,0.012349556200206],[-0.080298416316509,0.018044589087367,0.016307283192873],[-0.0026917567010969,0.033030308783054,-0.037956770509481]],[[-0.004046764690429,-0.10922363400459,0.042742095887661],[0.081624664366245,-0.044012237340212,-0.06094054877758],[-0.03419728949666,0.049061048775911,-0.037457074970007]],[[0.024459710344672,-0.043884180486202,0.051641177386045],[0.041939999908209,-0.049318995326757,-0.046897944062948],[-0.0089224008843303,0.042060863226652,-0.026155157014728]],[[0.047866865992546,-0.041453368961811,0.013701483607292],[0.037889931350946,-0.052431602030993,-0.10133010149002],[0.043758787214756,-0.068775430321693,0.0055158506147563]],[[-0.052492573857307,0.024356957525015,-0.068734534084797],[0.039296720176935,-0.02593782544136,0.013894138857722],[-0.0016686299350113,0.050691734999418,0.029735490679741]],[[0.01718508079648,0.044168081134558,0.040963392704725],[-0.02801631949842,-0.11008025705814,0.010172358714044],[-0.0062255370430648,-0.026960341259837,0.035345822572708]],[[-0.022488346323371,-0.044473651796579,-0.056821051985025],[-0.010167461819947,-0.024861825630069,-0.031558569520712],[-0.085329614579678,-0.022124635055661,-0.10136323422194]],[[0.12439313530922,-0.050411473959684,-0.037892978638411],[0.03208627179265,-0.039208602160215,-0.0031034885905683],[-0.094080828130245,0.037564117461443,0.017596386373043]],[[0.0094761298969388,0.0012664196547121,0.012139172293246],[0.044158656150103,0.055505149066448,-0.1115747615695],[-0.017626408487558,-0.02995627373457,-0.1112198010087]],[[0.0259128510952,-0.025021063163877,0.052723303437233],[0.071607001125813,-0.097603939473629,-0.13677749037743],[-0.017997905611992,-0.070082940161228,0.019045004621148]],[[0.2177964001894,-0.024274596944451,0.074082590639591],[-0.091324485838413,0.024259850382805,0.0095725366845727],[0.053254250437021,0.14966502785683,-0.015036331489682]],[[-0.056467659771442,0.042107436805964,-0.11329228430986],[0.03018768876791,-0.079859167337418,0.042556084692478],[-0.14544403553009,0.0086248936131597,-0.089279428124428]],[[0.0047602783888578,0.028387237340212,-0.031136441975832],[0.06751860678196,-0.035040661692619,0.082674793899059],[-0.082643687725067,0.058811850845814,-0.010577517561615]],[[0.034191455692053,-0.015034562908113,-0.0092683546245098],[-0.043337032198906,-0.030937142670155,0.029324656352401],[-0.084322199225426,0.045236833393574,0.03662583604455]],[[0.057294871658087,0.0091919172555208,-0.0051759579218924],[-0.018817480653524,0.00032386669772677,0.012355068698525],[0.007046902552247,0.040456853806973,0.0038699603173882]],[[-0.066011093556881,0.014144343324006,0.0054059214890003],[0.03133013099432,0.047042284160852,0.12346193939447],[-0.059309255331755,-0.030763974413276,-0.089663177728653]],[[0.016556901857257,-0.064466819167137,0.02019757963717],[-0.047227881848812,-0.021489534527063,-0.20002414286137],[0.015670571476221,-0.10701183974743,-0.043352276086807]],[[0.1253362596035,0.0085836909711361,0.18516430258751],[-0.13051280379295,0.0038421966601163,0.056449633091688],[-0.067750863730907,0.14798185229301,-0.075590685009956]],[[0.021885752677917,-0.058573864400387,-0.0065639778040349],[8.7472726590931e-06,0.01652604341507,0.023156637325883],[-0.021548079326749,0.023061037063599,-0.0015431594802067]],[[0.014103554189205,0.026699544861913,-0.10751394182444],[-0.07834830135107,-0.10673655569553,0.065974242985249],[-0.048305474221706,-0.059824626892805,-0.021807396784425]],[[-0.049506340175867,0.061349652707577,0.017248172312975],[0.011143923737109,-0.035295654088259,0.053328957408667],[-0.05948219075799,0.05099293589592,-0.01683690585196]],[[-0.089152343571186,0.023227425292134,-0.032381806522608],[-0.050006035715342,-0.035747583955526,-0.0030311066657305],[-0.0096379313617945,0.048013873398304,-0.076075427234173]],[[0.046130534261465,-0.072010189294815,0.05199009180069],[-0.037244327366352,-0.0066024186089635,0.0031483196653426],[0.020021067932248,-0.00020660340669565,-0.030140513554215]]],[[[0.066954597830772,-0.18595524132252,-0.002098121214658],[-0.092579044401646,-0.052490573376417,-0.026232292875648],[0.062295958399773,0.074355356395245,-0.22588932514191]],[[0.083071120083332,-0.12962965667248,0.012750725261867],[0.008917641825974,-0.013196462765336,0.087838791310787],[-0.039373274892569,-0.055064849555492,-0.050396770238876]],[[0.07532325387001,-0.0091424249112606,0.00026949276798405],[-0.013894177041948,-0.073787532746792,-0.07044430077076],[-0.0055580381304026,-0.023563951253891,-0.13806048035622]],[[0.045480668544769,-0.042187865823507,-0.1076095700264],[0.018769226968288,-0.051329910755157,-0.060057770460844],[-0.049293905496597,-0.039825480431318,-0.10402601957321]],[[-0.023954004049301,0.070536866784096,0.11174914240837],[0.055188529193401,-0.062407314777374,-0.076662808656693],[-0.06788894534111,-0.030302843078971,-0.023031171411276]],[[0.0079130278900266,-0.030373116955161,0.031465299427509],[-0.024446055293083,-0.096463240683079,-0.032906640321016],[-0.0066254679113626,0.0302406065166,0.061658725142479]],[[-0.033931538462639,-0.032318353652954,0.04627376422286],[-0.071208812296391,-0.066289633512497,-0.068392805755138],[-0.027128115296364,-0.13038124144077,-0.035086859017611]],[[-0.15508563816547,0.011851187795401,0.050390299409628],[0.076019763946533,-0.041734714061022,0.057829223573208],[-0.012722105719149,0.030193068087101,0.099879026412964]],[[-0.073412537574768,-0.23002447187901,-0.021282149478793],[-0.052220709621906,0.067415207624435,0.048709996044636],[0.081024684011936,-0.022229412570596,0.058777634054422]],[[-0.11113906651735,0.064621224999428,-0.005686413962394],[0.068417906761169,-0.066631816327572,0.043033204972744],[-0.044701557606459,-0.023862669244409,-0.15890990197659]],[[-0.020599661394954,0.0059805507771671,-0.16142496466637],[0.036567054688931,0.039450224488974,0.078785441815853],[0.090952634811401,-0.0029686342459172,-0.058875750750303]],[[-0.12962660193443,0.014647165313363,-0.018184170126915],[-0.051678098738194,-0.15543219447136,-0.049592353403568],[-0.0095242960378528,-0.091566443443298,-0.038008958101273]],[[-0.032622031867504,0.017071321606636,-0.012906414456666],[0.031822886317968,-0.047517742961645,0.040107496082783],[-0.01157146692276,-0.022953558713198,-0.03907123953104]],[[0.004851839505136,0.033811517059803,0.02273865044117],[0.077366471290588,0.029995424672961,-0.013423410244286],[-0.011373657733202,0.00075068743899465,-0.068652987480164]],[[-0.019110137596726,-0.079225741326809,-0.056924793869257],[-0.090644039213657,0.0064067621715367,-0.0076816659420729],[0.0064258230850101,0.019000191241503,-0.027300765737891]],[[0.069420747458935,-0.038309704512358,-0.045579969882965],[-0.048260468989611,-0.13068950176239,-0.057803459465504],[0.08034723252058,0.022296732291579,0.1140963062644]],[[-0.14027786254883,-0.026622876524925,-0.0748420804739],[-0.048437748104334,-0.037397105246782,0.11816186457872],[-0.02612916007638,-0.0028158696368337,0.028686750680208]],[[-0.030859470367432,-0.025339359417558,-0.089491255581379],[-0.027915438637137,-0.011731748469174,-0.019657589495182],[-0.070661664009094,-0.14532527327538,0.0056735305115581]],[[-0.031132083386183,0.10793647915125,0.0036810638848692],[0.082600317895412,-0.039495181292295,-0.020934158936143],[0.058145567774773,0.032890733331442,-0.073094815015793]],[[0.016834599897265,0.013471027836204,-0.021389221772552],[0.050954408943653,0.031923197209835,-0.08374547958374],[-0.014098586514592,-0.016077131032944,-0.0045023104175925]],[[0.043828006833792,0.081020064651966,-0.024142717942595],[0.097780860960484,0.035218965262175,0.051185213029385],[-0.045665353536606,-0.062945947051048,0.05984827503562]],[[0.059145618230104,0.033357467502356,0.069440461695194],[0.026583783328533,-0.043106514960527,-0.0011077061062679],[-0.087204813957214,-0.00070171721745282,0.049721464514732]],[[-0.026483703404665,-0.078186199069023,0.042644109576941],[-0.017882665619254,0.001246452331543,0.052936088293791],[0.05499529466033,0.033713597804308,-0.012716366909444]],[[0.0032296313438565,0.10719000548124,0.085713371634483],[-0.0061639943160117,0.021285442635417,0.10406090319157],[-0.0086271008476615,0.06854759901762,-0.044753521680832]],[[-0.048708263784647,0.0055922027677298,-0.070590503513813],[0.034676484763622,0.077778451144695,0.069200240075588],[-0.00091974332462996,-0.024149753153324,-0.088039450347424]],[[0.036896388977766,-0.016679329797626,0.02362709119916],[0.031110206618905,0.0092205749824643,-0.018788745626807],[0.042050573974848,0.0072695608250797,0.06766552478075]],[[0.058995686471462,-0.083692289888859,-0.016894854605198],[-0.10168507695198,-0.0079527115449309,-0.10006885975599],[0.062300119549036,-0.066431030631065,0.096637710928917]],[[-0.032714206725359,-0.054575629532337,-0.018304944038391],[-0.053635474294424,0.026552664116025,-0.028797714039683],[-0.0078516928479075,0.010992662981153,0.0011482518166304]],[[-0.063033185899258,-0.0073738032951951,-0.018139081075788],[-0.086692236363888,0.085133656859398,-0.026950756087899],[0.0043959622271359,-0.0095715997740626,-0.10461458563805]],[[-0.062681972980499,-0.097009502351284,0.045077707618475],[0.038513403385878,-0.033094506710768,-0.05938833206892],[0.01666403748095,-0.014796963892877,0.041063722223043]],[[-0.063321240246296,-0.074561707675457,-0.083325050771236],[-0.029274351894855,0.0048980698920786,-0.089976295828819],[0.018475873395801,-0.08244152367115,-0.066549733281136]],[[0.034292045980692,0.072495192289352,-0.053251571953297],[-0.046031836420298,0.020907372236252,-0.078814491629601],[0.0028581791557372,0.063073053956032,-0.086508139967918]],[[-0.044702563434839,-0.078387394547462,-0.13510832190514],[-0.020025506615639,-0.021125912666321,-0.039349466562271],[-0.10234110057354,-0.043962217867374,0.075531549751759]],[[-0.034634709358215,-0.054858013987541,0.010002297349274],[0.019876569509506,-0.0037028845399618,0.020748687908053],[0.0044678798876703,0.12248964607716,-0.09354642778635]],[[0.05787704885006,0.050599049776793,-0.093883782625198],[0.02015114761889,-0.075204230844975,0.047756779938936],[-0.02708050981164,0.023026492446661,-0.0075826705433428]],[[0.056542929261923,0.060817304998636,0.0097998566925526],[0.078277438879013,0.065094962716103,-0.054833322763443],[-0.024626012891531,-0.064846314489841,0.007630577776581]],[[-0.04625128954649,0.12622657418251,0.22824132442474],[-0.018304521217942,0.0063585289753973,0.12125875800848],[-0.16396979987621,-0.058448906987906,-0.039008475840092]],[[0.017822308465838,0.045562386512756,0.055201437324286],[-0.023150838911533,-0.092963710427284,-0.050054978579283],[0.11138293147087,-0.16210579872131,-0.074037536978722]],[[-0.10122452676296,-0.021069440990686,0.010441527701914],[0.00061258825007826,0.05556882172823,0.050801441073418],[-0.020638981834054,0.047535188496113,-0.061556968837976]],[[0.067785553634167,0.07656529545784,-0.088848516345024],[0.068801820278168,0.11712222546339,-0.0042549292556942],[-0.066785834729671,-0.040121171623468,-0.047542799264193]],[[0.052146017551422,0.0037945453077555,0.011221308261156],[0.042173407971859,0.071320563554764,-0.04644326493144],[-0.15062740445137,-0.02021399885416,-0.078027918934822]],[[-0.14843893051147,0.0089079989120364,0.017177775502205],[-0.033930342644453,0.076031811535358,0.060905024409294],[-0.019773792475462,-0.071034491062164,0.037162467837334]],[[0.18471577763557,-0.032125566154718,-0.094034805893898],[-0.048978921025991,-0.09303031116724,-0.085782714188099],[-0.14342141151428,0.0046742274425924,0.079048909246922]],[[-0.055199947208166,-0.0087816687300801,-0.12128318101168],[-0.091681092977524,-0.084597788751125,0.00358991115354],[-0.074319511651993,0.10508335381746,0.072982452809811]],[[-0.099105685949326,0.050682280212641,0.073518306016922],[-0.13811282813549,0.0051418878138065,0.011501487344503],[-0.092884048819542,-0.074603751301765,-0.043894823640585]],[[0.081061512231827,-0.032346069812775,-0.09095199406147],[0.08522666990757,-0.033793900161982,-0.065427668392658],[0.2101843059063,0.050500802695751,-0.035450916737318]],[[0.014442120678723,-0.028597086668015,0.045279286801815],[0.093499250710011,-0.034521274268627,-0.066095717251301],[0.021198926493526,-0.020784791558981,-0.080498836934566]],[[0.032499771565199,0.010336288250983,0.021503604948521],[-0.048381090164185,-0.023302240297198,0.12878003716469],[0.022139785811305,-0.015353278256953,-0.10510893911123]],[[-0.09354031085968,0.037056010216475,0.021189948543906],[0.13332922756672,-0.1213059797883,-0.10089261829853],[-0.020832072943449,-0.019883941859007,0.0091072786599398]],[[8.5279287304729e-05,-0.010308572091162,0.088812470436096],[0.026387587189674,0.050470232963562,-0.0034940070472658],[0.090647965669632,-0.083916917443275,-0.1165928915143]],[[-0.042236845940351,-0.053293388336897,-0.033142518252134],[0.040467191487551,0.062289398163557,-0.10371416807175],[0.055695258080959,-0.197369530797,-0.006267152260989]],[[0.08525612205267,0.032685719430447,0.039233680814505],[-0.055650670081377,-0.092604286968708,0.0051518832333386],[-0.029769357293844,-0.010581412352622,0.032182358205318]],[[-0.0077222161926329,0.0032516801729798,-0.020518593490124],[-0.0062686004675925,-0.02531299367547,-0.087464034557343],[0.021717445924878,0.0010877719614655,-0.087163880467415]],[[0.04339849203825,-0.0082199852913618,-0.038198340684175],[0.0060581527650356,-0.062190651893616,0.056608412414789],[-0.00017586775356904,0.041149411350489,0.031167084351182]],[[0.029773008078337,0.012664444744587,-0.075763016939163],[-0.0023424953687936,0.038856126368046,0.0039636874571443],[0.04737663641572,-0.016184575855732,-0.038720414042473]],[[0.0059717409312725,0.048605315387249,0.018198804929852],[0.0049175196327269,0.010231525637209,-0.076883547008038],[0.0085432026535273,0.0010191792389378,0.10928772389889]],[[-0.12127587199211,0.091548696160316,0.053533930331469],[-0.060908559709787,0.0082157393917441,-0.064517267048359],[-0.08636336773634,0.045155886560678,-0.13102938234806]],[[-0.06312695145607,0.016203984618187,-0.025915781036019],[-0.0084417872130871,0.053879301995039,-0.068809390068054],[-0.040508199483156,-0.086667768657207,-0.010129461996257]],[[-0.025661109015346,-0.018818570300937,-0.071672312915325],[-0.018891166895628,0.028590412810445,-0.05415278673172],[0.015823977068067,0.071139991283417,0.0011589095229283]],[[-0.05374875664711,-0.052712425589561,0.021932268515229],[-0.072884753346443,0.0017082933336496,0.087320886552334],[0.015145570039749,0.052819926291704,-0.0030556968413293]],[[0.017159275710583,0.050964221358299,0.039086572825909],[0.09384410828352,-0.018837643787265,0.0050302110612392],[-0.019014049321413,-0.082315430045128,-0.0093413637951016]],[[0.0032396593596786,-0.088372148573399,-0.0075191152282059],[0.022493403404951,0.06175822019577,-0.057053565979004],[0.034246455878019,-0.1099938377738,0.017623180523515]],[[0.12034491449594,-0.001182175707072,-0.033778741955757],[0.015785980969667,-0.035438064485788,0.0042747398838401],[-0.05345980450511,-0.051064744591713,-0.12144503742456]],[[-0.092215858399868,0.045289497822523,0.079838536679745],[0.053914807736874,-0.00059052568394691,-0.11104451864958],[0.037117563188076,-0.055792547762394,-0.026495622470975]]],[[[-0.017230389639735,-0.065773665904999,-0.078013107180595],[-0.038151204586029,0.075560383498669,0.02362946793437],[0.049448572099209,-0.016434900462627,-0.033583719283342]],[[-0.036497674882412,-0.036894116550684,0.021291950717568],[-0.00070212845457718,0.0022645031567663,0.00064389384351671],[0.027786677703261,-0.032826755195856,-0.018734760582447]],[[-0.060841266065836,0.027674837037921,-0.042852602899075],[0.15952500700951,-0.15508311986923,-0.030926443636417],[0.037693042308092,-0.085245586931705,0.036164853721857]],[[-0.01959815248847,-0.054374102503061,-0.058593947440386],[0.015546940267086,-0.066091679036617,0.082395330071449],[0.0077155097387731,-0.085445888340473,0.014851087704301]],[[-0.033290188759565,-0.027280874550343,-0.056816019117832],[0.038212437182665,-0.031648132950068,-0.047345332801342],[0.03069076128304,-0.089336983859539,-0.097629532217979]],[[-0.093588545918465,0.02191792242229,0.041905760765076],[0.013216839171946,-0.28827196359634,0.066177055239677],[-0.017700489610434,-0.10741925984621,0.15263494849205]],[[0.0017512461636215,0.013624752871692,-0.035994242876768],[-0.15464763343334,0.0058079115115106,-0.041076969355345],[-0.0068030934780836,0.078257493674755,0.013885153457522]],[[0.017476689070463,-0.0036465881858021,0.027123695239425],[-0.059781365096569,0.010598712600768,-0.0091076772660017],[-0.050578281283379,0.047346670180559,0.033604819327593]],[[-0.017412515357137,0.037750698626041,-0.03418992459774],[0.040544781833887,-0.015918547287583,0.01444998010993],[0.10236083716154,0.092395260930061,-0.046969458460808]],[[-0.022531230002642,-0.026519922539592,-0.016183035448194],[-0.030510805547237,-0.017056845128536,-0.045330043882132],[0.04589382186532,-0.0024765087291598,-0.084936179220676]],[[0.0063730026595294,-0.049688629806042,0.019655451178551],[-0.0054394658654928,0.02918167039752,-0.03109491057694],[0.023427214473486,0.015611065551639,0.0092686293646693]],[[0.016012117266655,-0.0042014885693789,-0.027051674202085],[-0.051722392439842,-0.04438441246748,0.017228405922651],[-0.033180244266987,0.10428263992071,-0.0084478734061122]],[[0.05860872194171,-0.092510856688023,-0.064371287822723],[-0.030175190418959,0.057518091052771,-0.0020158283878118],[0.078320860862732,0.0012171721318737,-0.0063691115938127]],[[-0.026741597801447,-0.022341480478644,-0.024867188185453],[0.015325614251196,0.021100440993905,0.028839876875281],[0.10481098294258,-0.018048817291856,-0.0019167314749211]],[[-0.050909977406263,0.027658531442285,0.013277780264616],[0.012159733101726,-0.034632008522749,-0.012801804579794],[0.062288824468851,0.002953251125291,-0.032438904047012]],[[-0.044691246002913,-0.032868340611458,0.0045850933529437],[-0.036109212785959,-0.07476095110178,0.0089022116735578],[0.022363800555468,0.017876733094454,0.072294041514397]],[[-0.052477207034826,-0.17700654268265,-0.059598792344332],[-0.092631854116917,-0.079982906579971,0.008198669180274],[-0.041818168014288,0.10334961116314,0.0092803854495287]],[[0.083924077451229,-0.14009845256805,-0.034323137253523],[0.02396534755826,0.040771991014481,0.046046871691942],[-0.015686683356762,0.027261052280664,0.081611923873425]],[[0.096939004957676,-0.04293279722333,-0.04762290045619],[0.058328401297331,-0.097496576607227,-0.086231283843517],[-0.051465027034283,-0.045506525784731,-0.018532417714596]],[[-0.027713000774384,-0.019883623346686,0.021940924227238],[0.00044706111657433,-0.014297597110271,0.06467542797327],[-0.0094031812623143,-0.012689619325101,0.026349956169724]],[[0.057044301182032,-0.065992750227451,0.035997666418552],[-0.014096193015575,0.010278799571097,0.014436915516853],[-0.013950233347714,-0.049321796745062,0.015764027833939]],[[-0.074407838284969,0.033511735498905,-0.074090600013733],[-0.0065011684782803,0.080094806849957,0.083000063896179],[0.041043344885111,-0.010043892078102,0.025986570864916]],[[0.0094490963965654,0.021796967834234,0.050052728503942],[-0.043798103928566,-0.017429074272513,0.015048297122121],[0.037123836576939,0.022981520742178,0.015540402382612]],[[0.1103787124157,0.18868985772133,0.069571323692799],[0.068322852253914,-0.007977681234479,0.0026469661388546],[0.079744979739189,-0.011354559101164,0.025689821690321]],[[0.016059640794992,0.061241686344147,-0.053573731333017],[-0.022470615804195,-0.031103802844882,-0.059295628219843],[0.055976118892431,0.042390547692776,0.018263906240463]],[[0.042516615241766,-0.00052258808864281,-0.068856202065945],[-0.043212629854679,0.013595369644463,-0.042511750012636],[-0.014788872562349,-0.051911793649197,-0.060659863054752]],[[0.054219476878643,0.00092944846255705,0.0030987577047199],[0.02801844291389,0.08391422778368,0.053802940994501],[0.10956944525242,0.059166088700294,0.023849796503782]],[[-0.026931883767247,-0.011567610315979,0.0066075888462365],[-0.0013876792509109,-0.17489321529865,-0.010437874123454],[0.04048265516758,-0.012649910524487,-0.092020966112614]],[[-0.077419109642506,-0.042520225048065,-0.1015732139349],[-0.056902561336756,0.021170008927584,0.01392588019371],[0.043166615068913,0.14537845551968,0.087344795465469]],[[-0.11411725729704,-0.024230429902673,0.0049215103499591],[-0.038452308624983,0.01692339964211,-0.0073577151633799],[0.03312299773097,-0.054364070296288,0.03704459220171]],[[0.0050525753758848,-0.092394791543484,0.0122792115435],[-0.020060338079929,0.063029937446117,0.062582038342953],[0.030961753800511,-0.0208729673177,-0.097542710602283]],[[0.019708700478077,0.040650382637978,-0.011194919236004],[-0.085959188640118,-0.041828028857708,0.031809691339731],[0.051087625324726,0.10534612089396,0.060370672494173]],[[-0.033402755856514,-0.041661847382784,-0.056084882467985],[-0.0044119511730969,-0.010324778966606,0.05688264966011],[-0.037371773272753,-0.054288759827614,0.03873647376895]],[[0.062193628400564,0.023372752591968,0.023952329531312],[-0.022203991189599,0.093273162841797,-0.024294102564454],[0.075011730194092,-0.060117334127426,-0.0064124255441129]],[[0.024437714368105,-0.027825709432364,-0.0017962226411328],[-0.067046508193016,-0.001013696542941,0.01192906498909],[0.064363792538643,0.030198158696294,0.018877785652876]],[[-0.043897811323404,-0.00016358963330276,0.045868840068579],[-0.018445475026965,0.0479033626616,-0.038948994129896],[-0.00412063812837,0.034261289983988,0.085940681397915]],[[-0.04955155402422,-0.009820100851357,-0.04247310757637],[0.0067087537609041,0.068737328052521,-0.037928391247988],[-0.079041682183743,-0.031170252710581,0.029336027801037]],[[-0.05939269438386,-0.019538946449757,0.0035546757280827],[-0.029955133795738,0.013618853874505,0.040323860943317],[0.016344878822565,-0.0031314017251134,0.030333468690515]],[[0.059795085340738,-0.034670040011406,-0.019503595307469],[0.0037086072843522,-0.0075665796175599,-0.029592733830214],[-0.035850666463375,0.055016111582518,-0.10027500987053]],[[-0.054699916392565,0.026762969791889,-0.051154538989067],[0.037763420492411,0.01414521317929,0.010109342634678],[0.095370925962925,0.10579795390368,0.050483044236898]],[[0.016597570851445,-0.043685663491488,0.063743121922016],[-4.8717662139097e-05,0.017769630998373,-0.029863797128201],[-0.063640929758549,0.038420289754868,-0.048782501369715]],[[-0.0082042226567864,-0.02213735692203,-0.0046568578109145],[0.0016590346349403,-0.088813722133636,-0.017206866294146],[0.06197127327323,-0.0063793193548918,-0.03520454838872]],[[0.030905602499843,0.023667227476835,0.013469652272761],[0.025670664384961,0.033424656838179,0.038375623524189],[-7.7470656833611e-05,-0.10135937482119,-0.035224430263042]],[[0.071470379829407,0.010126394219697,-0.056877013295889],[0.030620910227299,-0.027762355282903,0.0023378755431622],[0.079316146671772,-0.040661077946424,-0.010387724265456]],[[0.025276912376285,0.023515744134784,-0.008147613145411],[-0.036135971546173,-0.12199608236551,0.020064551383257],[0.080637194216251,0.0029457565397024,0.01428107265383]],[[-0.094585694372654,0.074468217790127,0.035836100578308],[-0.093801900744438,0.16757716238499,0.0016474791336805],[-0.049242358654737,-0.0026527168229222,-0.0030775386840105]],[[-0.10382777452469,0.028090864419937,-0.11350184679031],[0.002345581073314,-0.0054339980706573,0.072517819702625],[0.0056516267359257,-0.03430087864399,0.029750403016806]],[[-0.024533428251743,0.023590667173266,0.014146793633699],[0.024188812822104,-0.014486867934465,0.1266565322876],[0.029650412499905,-0.045840561389923,0.047893725335598]],[[0.03444616496563,-0.056544665247202,0.017889410257339],[0.0081087704747915,-0.038244619965553,0.041754387319088],[0.012203824706376,0.11215788125992,0.042448464781046]],[[0.049893114715815,-0.0081918044015765,-0.064926460385323],[0.044743862003088,0.0306795835495,-0.018374145030975],[0.054411839693785,0.025808539241552,-0.035689532756805]],[[0.033470071852207,-0.012264868244529,-0.0072425715625286],[-0.024334840476513,-0.0047461395151913,-0.0042671319097281],[-0.083876363933086,-0.0033814758062363,-0.017307426780462]],[[0.061732411384583,0.04542164131999,0.030468760058284],[0.0011458188528195,0.062688879668713,-0.027765605598688],[0.019119322299957,0.043376374989748,-0.00041625846643001]],[[0.088267810642719,-0.0038778698071837,-0.0023805857636034],[-0.026655372232199,0.057619567960501,-0.047543600201607],[-0.025090001523495,-0.04798599332571,0.01568348146975]],[[0.015043848194182,-0.069950707256794,0.037504442036152],[-0.019339485093951,-0.091072298586369,-0.055925521999598],[-0.19218933582306,-0.080564253032207,-0.084341190755367]],[[-0.012831499800086,0.021929135546088,-0.0098826875910163],[0.027083607390523,-0.14607812464237,-0.036630902439356],[-0.034093488007784,-0.041697788983583,0.049334697425365]],[[-0.081864215433598,0.05480720475316,-0.0082078101113439],[-0.0026639853604138,0.053385332226753,-0.030254600569606],[0.066866755485535,0.010622184723616,-0.04016687721014]],[[-0.013691717758775,0.0011019068770111,0.019210347905755],[-0.060593079775572,0.021034242585301,0.044200465083122],[-0.01281473133713,0.035118512809277,-0.057249572128057]],[[-0.046099323779345,0.052069429308176,-0.045131504535675],[-0.097438104450703,-0.059219337999821,-0.069262184202671],[-0.044598922133446,-0.010680448263884,0.066691838204861]],[[0.092469736933708,0.059405144304037,-0.04552223533392],[0.045651860535145,-0.0014487201115116,0.010750822722912],[0.10527069866657,0.07663331925869,-0.0095122382044792]],[[0.0046900324523449,-0.021826224401593,-0.019117092713714],[0.026595594361424,-0.0078793596476316,0.037547614425421],[-0.0091572860255837,-0.022719424217939,0.0053192218765616]],[[-0.065706357359886,-0.049424182623625,0.026158446446061],[-0.10617092996836,0.0017708449158818,-0.0053317756392062],[-0.058282572776079,-0.010656172409654,0.035436484962702]],[[0.023110315203667,0.081235341727734,0.015761893242598],[-0.022117165848613,0.0163100566715,0.0069396905601025],[-0.0010621711844578,0.010169045999646,0.010277116671205]],[[-0.030036782845855,0.0056346207857132,0.005815093871206],[-0.004086138214916,0.024796614423394,0.024600015953183],[0.044944923371077,-0.041810069233179,-0.062753431499004]],[[0.019722554832697,-0.038329478353262,0.024374879896641],[0.00075667107012123,-0.020065244287252,-0.027730204164982],[-0.074035808444023,-0.062105622142553,0.010298715904355]]],[[[-0.1322031468153,-0.071778558194637,-0.062772713601589],[0.078310139477253,-0.024607369676232,-0.019679872319102],[0.0020726853981614,0.038095340132713,0.08763275295496]],[[-0.019964333623648,0.016967101022601,0.03857422247529],[-0.010417020879686,0.064896605908871,0.05735469609499],[0.089948832988739,0.11268392950296,0.082748904824257]],[[-0.047424759715796,-0.063163243234158,-0.070899620652199],[-0.070614203810692,-0.082450978457928,-0.15761342644691],[0.033307258039713,-0.032519556581974,0.061376612633467]],[[0.019142434000969,0.0094291809946299,-0.021825546398759],[-0.057208526879549,0.18300920724869,0.093532711267471],[0.041985187679529,0.12383041530848,0.027519889175892]],[[-0.049296714365482,-0.028115876019001,-0.031689126044512],[-0.051105972379446,-0.10674834996462,0.013465691357851],[0.0023766714148223,-0.050398267805576,0.022672072052956]],[[0.051470693200827,0.028139837086201,-0.037784662097692],[-0.029290877282619,-0.097755677998066,-0.081563621759415],[-0.060720294713974,-0.10143723338842,0.0084801409393549]],[[-0.063861586153507,0.039726197719574,0.049642883241177],[0.008727322332561,0.032120399177074,-0.038997858762741],[0.058079104870558,0.016707949340343,0.068768173456192]],[[0.013685421086848,0.15521876513958,0.12716142833233],[0.097845405340195,0.11062279343605,0.18400777876377],[0.11110442876816,0.077773086726665,0.058080121874809]],[[0.032065823674202,0.05739625915885,0.1237977668643],[0.020190086215734,-0.057304594665766,0.099769502878189],[0.047446977347136,0.020918851718307,0.0097408192232251]],[[-0.057356432080269,-0.051715034991503,-0.15155920386314],[-0.051490746438503,-0.020085347816348,-0.0073061990551651],[-0.11782732605934,0.014257964678109,0.057898256927729]],[[-0.026152323931456,0.049492999911308,-0.026302069425583],[0.0062155853956938,-0.023087646812201,-0.027767550200224],[0.013015129603446,0.11465819180012,-0.010020365938544]],[[0.015512800775468,-0.056127082556486,-0.015098304487765],[0.10263002663851,0.052279636263847,-0.036747954785824],[-0.14349979162216,-0.13022562861443,-0.015923606231809]],[[-0.033615279942751,-0.0067411586642265,-0.050765991210938],[0.023417573422194,0.010577417910099,-0.0088422726839781],[-0.026726571843028,-0.038231454789639,-0.062532104551792]],[[-0.22524805366993,-0.27244481444359,-0.019672155380249],[-0.01318749319762,0.0095139881595969,-0.072906970977783],[0.021238191053271,-0.0054088234901428,0.004951614420861]],[[0.046272572129965,0.0091607039794326,0.025562087073922],[-0.057965066283941,-0.037162434309721,0.020322140306234],[-0.030917236581445,-0.00088591250823811,-0.074676521122456]],[[-0.07990625500679,-0.048581898212433,-0.0052437381818891],[0.058454357087612,0.11203042417765,0.038288835436106],[0.06207936629653,0.015880435705185,-0.032014507800341]],[[-0.068145789206028,0.014530849643052,0.050812467932701],[0.097646102309227,-0.0037555303424597,-0.056880459189415],[0.013752577826381,0.053817149251699,-0.033592343330383]],[[0.012842666357756,0.031193224713206,-0.066349811851978],[-0.022407615557313,0.050473380833864,0.067807421088219],[0.044782388955355,0.11454369872808,0.030821688473225]],[[0.046135742217302,-0.094254717230797,-0.035313464701176],[-0.042227536439896,-0.03051926009357,-0.086164213716984],[0.019050246104598,0.087745249271393,0.10211586952209]],[[-0.037239801138639,-0.056890990585089,-0.031155610457063],[0.0069047850556672,-0.056601092219353,-0.0036708733532578],[0.053473606705666,0.029294280335307,0.11380955576897]],[[0.00020818042685278,0.01340112183243,0.01631167344749],[-0.04244426637888,-0.00040530180558562,-0.03591151535511],[0.064152389764786,-0.086944609880447,-0.034367214888334]],[[0.024089535698295,-0.14409801363945,0.016108291223645],[-0.0076103731989861,0.026266807690263,0.069699041545391],[0.10720190405846,0.056243773549795,0.026453135535121]],[[0.061453390866518,0.072070211172104,-0.031681079417467],[0.095869332551956,0.016795627772808,-0.069180727005005],[-0.079980567097664,0.0022859654854983,0.02922922000289]],[[0.01052235905081,-0.044541787356138,0.080985255539417],[0.011042803525925,-0.083259254693985,0.070494793355465],[-0.061537340283394,0.028087727725506,-0.025246204808354]],[[0.034584894776344,-0.076590359210968,0.026152366772294],[-0.031809963285923,-0.055919755250216,-0.055522561073303],[-0.027767833322287,-0.036844000220299,0.00010087770351674]],[[-0.049242049455643,-0.064155347645283,0.019175216555595],[-0.02713511697948,-0.029467841610312,-0.01691022887826],[0.040334064513445,0.019093487411737,-0.014165784232318]],[[-0.031079143285751,0.054732337594032,-0.072783291339874],[0.02425641566515,-0.17282558977604,0.035730879753828],[-0.0033204853534698,-0.036151770502329,0.039138503372669]],[[-0.0017475329805166,0.076660424470901,0.054632999002934],[0.032270334661007,0.028810869902372,0.011440145783126],[0.048620536923409,-0.021475335583091,0.02954462915659]],[[0.039568576961756,0.046721030026674,-0.048270080238581],[0.025150446221232,-0.080683797597885,-0.081284955143929],[0.0049879206344485,-0.031072763726115,0.032350532710552]],[[0.09856241196394,0.084711514413357,0.02833548374474],[0.020290633663535,0.14733617007732,0.065555244684219],[0.059664074331522,0.038095314055681,0.079765394330025]],[[0.11049968749285,-0.042474798858166,-0.015844324603677],[-0.053095314651728,-0.067832723259926,0.068614423274994],[0.08280736207962,-0.031072277575731,-0.066800609230995]],[[-0.080527000129223,-0.053569629788399,0.0032938106451184],[-0.00044264656025916,0.074945479631424,-0.037278220057487],[0.066312693059444,0.065901167690754,0.012520411983132]],[[-0.010145669803023,-0.015870429575443,0.047003053128719],[0.0054902611300349,-0.022319603711367,-0.019386697560549],[-0.022255605086684,-0.033385571092367,-0.11204225569963]],[[0.071650117635727,-0.094413958489895,-0.034260861575603],[-0.11335987597704,-0.077341787517071,-0.0037922451738268],[-0.20422491431236,-0.0085957432165742,-0.0099631706252694]],[[-0.096922963857651,-0.10267771780491,-0.043706748634577],[-0.11758115142584,-0.026381971314549,-0.068867482244968],[-0.024921182543039,-0.1361620426178,-0.011224144138396]],[[0.0017548550385982,0.010432232171297,0.0012300460366532],[-0.024039061740041,0.033382635563612,0.052941095083952],[-0.015687284991145,-0.096360079944134,-0.025357471778989]],[[-0.044975221157074,-0.0052000498399138,0.0025996509939432],[0.02354266308248,0.033674791455269,-0.017886303365231],[-0.032673493027687,-0.037358582019806,-0.050189834088087]],[[-0.012187850661576,-0.035445794463158,-0.050254222005606],[-0.066404923796654,-0.00060081732226536,-0.040168631821871],[0.05619415268302,0.0057895611971617,-0.037513703107834]],[[-0.0043805739842355,0.010165033861995,0.0057717352174222],[-0.12223494052887,0.041279029101133,-0.093600757420063],[-0.037137694656849,-0.051084030419588,0.030274569988251]],[[0.0065400404855609,0.0029458391945809,-0.053522229194641],[-0.037262074649334,-0.077346824109554,-0.061706133186817],[0.020563373342156,0.060910884290934,-0.024416897445917]],[[-0.10520765930414,-0.12668071687222,-0.12677924335003],[-0.14494696259499,-0.0081809032708406,-0.07475595921278],[-0.065328158438206,0.14418140053749,0.031478829681873]],[[0.0089808674529195,0.10865043103695,0.13003234565258],[-0.12084560841322,0.035167191177607,0.0089902216568589],[0.02762178145349,-0.080468200147152,-0.072525046765804]],[[-0.010214732028544,-0.004007619805634,0.1361782848835],[0.025537043809891,0.14270505309105,0.0030064503662288],[-0.028483750298619,-0.095771968364716,-0.12347096204758]],[[-0.030930232256651,0.0592085942626,0.040476217865944],[0.054089497774839,-0.0047464398667216,-0.081338569521904],[-0.10780213028193,-0.065413556993008,-0.13354462385178]],[[0.062103893607855,0.035773769021034,0.082947321236134],[-0.064935021102428,0.042465839534998,0.090490408241749],[-0.028524421155453,0.044094182550907,-0.003789248643443]],[[-0.064991742372513,-0.057654175907373,0.020327681675553],[-0.033975124359131,-0.041957899928093,-0.049955632537603],[-0.0060880836099386,0.084125235676765,0.11768362671137]],[[-0.16862821578979,0.028784023597836,-0.030060678720474],[0.016934914514422,-0.049858659505844,0.072757340967655],[-0.012931598350406,-0.11883790791035,0.10419852286577]],[[-0.054543107748032,0.0044743483886123,-0.011664666235447],[-0.031194716691971,-0.061796151101589,-0.035782728344202],[0.067614942789078,0.00048343505477533,0.073761388659477]],[[0.11043612658978,-0.0042605167254806,-0.0206627137959],[-0.0354531891644,-0.041280098259449,0.013071700930595],[0.050946641713381,0.022090822458267,-0.034078381955624]],[[-0.021316569298506,0.015721678733826,0.024001954123378],[-0.039630446583033,-0.038075931370258,0.077815108001232],[-0.021242208778858,-0.012791178189218,0.040958188474178]],[[0.012638122774661,-0.022183360531926,-0.10467401146889],[-0.0044431816786528,0.037976898252964,0.037899430841208],[0.0079301176592708,-0.032372776418924,-0.026203520596027]],[[0.051934808492661,0.033135149627924,0.068737089633942],[0.094200260937214,0.16246120631695,0.084821917116642],[0.061208229511976,0.026848709210753,-0.074498444795609]],[[0.035292789340019,0.047542158514261,-0.086916647851467],[-0.036924473941326,-0.079665184020996,-0.04454081133008],[-0.046667914837599,-0.056893948465586,0.062185477465391]],[[-0.022471899166703,0.12715549767017,-0.010012941434979],[0.070109844207764,0.0077009997330606,0.02655765414238],[-0.062212485820055,-0.093814186751842,-0.01696857996285]],[[-0.099448330700397,-0.017896117642522,0.11626000702381],[-0.0048959883861244,0.062614858150482,0.067281506955624],[0.034129224717617,0.071306131780148,0.046924412250519]],[[-0.14182767271996,-0.12778836488724,-0.072663247585297],[0.0099959000945091,-0.044730514287949,0.0071474784053862],[-0.0027451987843961,0.012161934748292,0.083063572645187]],[[0.13824446499348,0.12333627045155,0.038548465818167],[0.026559334248304,-0.020803552120924,-0.024770645424724],[-0.17204888164997,-0.12665317952633,-0.033327963203192]],[[0.001487125759013,-0.12051537632942,-0.044550608843565],[-0.060474250465631,-0.094085015356541,-0.051702249795198],[-0.078146815299988,-0.081221431493759,-0.1480408757925]],[[0.030337469652295,-0.019705215469003,0.089299857616425],[0.078614868223667,0.0056914403103292,-0.051275778561831],[0.015563865192235,-0.063255868852139,-0.069779358804226]],[[0.054791282862425,0.039258129894733,0.053192235529423],[0.032300509512424,0.0034568388946354,0.0055516995489597],[-0.054865095764399,-0.10279632359743,-0.051330525428057]],[[-0.027340371161699,-0.13639985024929,-0.028977304697037],[0.0038530980236828,0.022179000079632,0.05567179620266],[-0.01496700476855,-0.012122943066061,0.011853751726449]],[[0.023389389738441,-0.0037264504935592,0.024117542430758],[-0.012867448851466,0.046462099999189,0.024491826072335],[-0.031803060323,-0.10716382414103,-0.06053438782692]],[[-0.0099227093160152,-0.047159571200609,-0.024857856333256],[-0.055268261581659,-0.062938585877419,-0.075841508805752],[0.028530098497868,-0.02747442945838,-0.032575082033873]],[[-0.14783526957035,-0.16866563260555,-0.06430446356535],[-0.17542798817158,0.15948934853077,-0.092285230755806],[-0.056124929338694,-0.14443305134773,0.041038725525141]]],[[[-0.0069052437320352,-0.083493500947952,-0.029200999066234],[-0.024998689070344,-0.065708681941032,-0.059436958283186],[-0.0047639971598983,0.025177832692862,-0.093646079301834]],[[-0.034791059792042,0.037892483174801,0.044290717691183],[-0.060235854238272,-0.061474360525608,0.022124364972115],[-0.0057534347288311,0.031195634976029,0.052235718816519]],[[-0.031110027804971,-0.053388573229313,-0.1006416156888],[-0.23182119429111,-0.14779575169086,-0.13582855463028],[-0.12702302634716,-0.1693215072155,-0.12065700441599]],[[-0.029062317684293,-0.088975436985493,-0.0074035879224539],[-0.032186891883612,-0.046348169445992,0.047901567071676],[-0.016332972794771,0.0068424944765866,0.089095391333103]],[[-0.0091338781639934,-0.038900665938854,-0.0010355698177591],[-0.15961323678493,-0.048116274178028,-0.020145080983639],[-0.13372401893139,-0.047117572277784,0.08284205943346]],[[0.044086199253798,-0.051321774721146,0.039435297250748],[0.016485475003719,0.009508740156889,0.0040935864672065],[-0.054056294262409,0.055165573954582,0.092240877449512]],[[0.091244071722031,0.014769953675568,-0.0018649846315384],[-0.055995214730501,0.051861938089132,0.068953946232796],[-0.052349895238876,0.0072794258594513,-0.064958430826664]],[[0.056643933057785,0.01137229334563,-0.033667281270027],[-0.085772477090359,-0.049541138112545,-0.040634203702211],[-0.059191595762968,-0.12888757884502,-0.09190671890974]],[[-0.09489344805479,-0.068131819367409,-0.0320756547153],[-0.10141375660896,-0.017506334930658,-0.096050202846527],[0.026439832523465,0.014663890935481,0.011633691377938]],[[0.087623842060566,0.022057658061385,-0.049140572547913],[0.057498812675476,0.032468978315592,-0.045691676437855],[0.03610160574317,0.11790994554758,0.049681253731251]],[[-0.0098853940144181,0.033534996211529,0.10437653958797],[-0.11158514022827,-0.02067543566227,-0.012637982144952],[-0.072018913924694,-0.063429296016693,0.06460128724575]],[[-0.10954140871763,-0.040798202157021,-0.04448701813817],[-0.07113841176033,-0.064249955117702,-0.014363433234394],[-0.0476951636374,0.10151153057814,0.042867720127106]],[[-0.022683832794428,0.041412133723497,-0.059589374810457],[0.14194388687611,-0.0059306235052645,0.15130108594894],[-0.093675315380096,-0.026469832286239,0.03686386346817]],[[0.0063852234743536,0.066719263792038,0.011833946220577],[-0.0025010132230818,0.035344652831554,0.0098168002441525],[0.025658724829555,0.086448341608047,0.052260745316744]],[[0.079938597977161,0.02658916823566,-0.026596434414387],[0.096969313919544,-0.039744216948748,-0.056069623678923],[-0.031891770660877,-0.08493984490633,-0.072244539856911]],[[0.055506259202957,-0.0428556650877,-0.013782715424895],[0.0020480353850871,-0.076466515660286,0.076933659613132],[-0.0061399964615703,-0.047851372510195,0.016708241775632]],[[-0.055985197424889,-0.062942527234554,-0.029213773086667],[0.060221128165722,0.047458469867706,0.060199245810509],[0.0043591987341642,0.083486616611481,-0.11693137139082]],[[0.072541333734989,0.074340082705021,-0.016573175787926],[-0.026914604008198,-0.04434984177351,-0.1229746863246],[0.019882185384631,0.045105345547199,0.0059845196083188]],[[0.029221720993519,0.14616253972054,-0.095029652118683],[-0.017368234694004,0.074515208601952,-0.040317595005035],[-0.04052897170186,-0.069876819849014,-0.11861192435026]],[[0.038868829607964,0.035812448710203,0.024420341476798],[0.012607487849891,0.029689928516746,0.022787051275373],[0.019295006990433,-0.0053214384242892,-0.055489592254162]],[[-0.0018235839670524,-0.0311060808599,0.0069526261650026],[-0.016909066587687,-0.016977762803435,-0.022107711061835],[0.060602337121964,0.039533525705338,0.051774106919765]],[[-0.034022036939859,0.032233495265245,-0.021273341029882],[0.074101462960243,0.041072331368923,0.094323948025703],[0.033822368830442,0.032200142741203,0.10269313305616]],[[0.12143161147833,0.029177453368902,0.15611389279366],[0.015959030017257,-0.061791427433491,-0.023991625756025],[-0.0019467843230814,-0.042164042592049,0.18037031590939]],[[-0.0017966118175536,0.12958718836308,-0.0014926843577996],[0.058540269732475,0.050916276872158,0.011796755716205],[-0.039970360696316,0.064509630203247,0.052337665110826]],[[-0.071737691760063,0.043886244297028,-0.072334133088589],[-0.018480250611901,0.034861616790295,-0.046764057129622],[-0.036705061793327,-0.041459538042545,0.1014701128006]],[[0.086432687938213,0.03024535998702,0.051394809037447],[0.096999563276768,0.057111527770758,0.023343481123447],[-0.0043590399436653,-0.019068393856287,0.019981173798442]],[[0.019223989918828,-0.0080469725653529,0.097956337034702],[0.075115069746971,0.062350880354643,0.020562749356031],[0.045933600515127,0.054340180009604,0.014523640275002]],[[0.03489862382412,0.088551007211208,0.0078217489644885],[0.0094279190525413,0.039244703948498,0.023265484720469],[-0.030247028917074,0.021904088556767,0.029731446877122]],[[-0.034998916089535,-0.048268634825945,-0.034836042672396],[0.0080758957192302,0.11161893606186,0.0024858692195266],[-0.020202983170748,0.10095019638538,-0.066733486950397]],[[-0.053716365247965,-0.12261102348566,-0.060932293534279],[-0.040235411375761,0.0082375155761838,-0.017543029040098],[0.0096398219466209,-0.0448800586164,-0.0024135108105838]],[[0.067440755665302,0.026057293638587,0.044675622135401],[-0.027622807770967,0.039397679269314,-0.051926039159298],[-0.072134986519814,-0.070812307298183,0.032100159674883]],[[0.031413950026035,-0.020338414236903,0.038104154169559],[0.051184963434935,0.017170581966639,-0.022263510152698],[-0.010212656110525,-0.026867642998695,-0.00050572329200804]],[[0.077757813036442,0.024729032069445,0.070308856666088],[0.073415257036686,0.022252384573221,0.082062371075153],[0.08600327372551,0.068239241838455,0.047424297779799]],[[-0.0065442533232272,0.025164781138301,-0.01444358099252],[0.068245314061642,0.029993189498782,0.018481064587831],[0.004706003703177,0.068418331444263,-0.026526780799031]],[[-0.09375786781311,0.068145669996738,-0.051682874560356],[0.064547628164291,-0.0053368429653347,0.065115049481392],[0.0059310812503099,0.055447857826948,0.024634776636958]],[[-0.022874554619193,0.074636518955231,0.0052450695075095],[-0.0021205483935773,-0.0028823437169194,-0.041410610079765],[-0.046017196029425,0.028627343475819,-0.037669029086828]],[[0.050904184579849,-0.017069710418582,-0.055834472179413],[0.073684349656105,0.061207585036755,-0.044174127280712],[0.082622013986111,0.045630443841219,-0.015786373987794]],[[0.11150027811527,0.028928827494383,0.018882807344198],[0.027062986046076,0.053098794072866,0.029347609728575],[0.046380344778299,0.061742398887873,0.023213049396873]],[[-0.036922972649336,0.024078203365207,0.018863767385483],[0.033433437347412,0.020252296701074,-0.000182702409802],[-0.048124693334103,0.020111555233598,0.025155361741781]],[[0.049591723829508,-0.0026285082567483,-0.026746045798063],[0.010785513557494,0.059148445725441,0.019698074087501],[0.065012402832508,0.024946233257651,0.03529267385602]],[[0.04432525485754,0.096061684191227,-0.0086655505001545],[0.027778780087829,-0.0022809351794422,0.051774080842733],[0.063628450036049,0.062104523181915,-0.034889087080956]],[[0.08483748883009,0.048831339925528,-0.037659153342247],[-0.0068982904776931,0.066875502467155,0.11746121942997],[-0.010075626894832,0.037835191935301,-0.17287215590477]],[[-0.044613271951675,0.035741381347179,-0.0018353597261012],[0.021991478279233,0.04146558791399,0.13110399246216],[-0.041478101164103,-0.024619659408927,-0.045569967478514]],[[0.046288404613733,-0.11427896469831,-0.022645603865385],[0.078117616474628,0.016352036967874,0.016677988693118],[-0.034325953572989,-0.015583226457238,-0.042276818305254]],[[-0.05700447037816,0.0048280982300639,0.0092162322252989],[0.099744454026222,-0.046391624957323,-0.071890935301781],[0.021513640880585,0.010401290841401,0.0058170380070806]],[[-0.060380160808563,0.036641214042902,0.095450878143311],[0.016319386661053,0.0010892221471295,0.10609625279903],[-0.061079662293196,0.053387470543385,-0.04535374045372]],[[0.00023375100863632,-0.067380450665951,0.037942804396152],[-0.082203306257725,0.030073357746005,0.035146303474903],[-0.080286830663681,0.050575658679008,-0.062329884618521]],[[0.019097179174423,-0.16160041093826,0.10077586025],[0.054322507232428,-0.031278617680073,-0.0044953967444599],[0.14030148088932,0.0020271898247302,-0.0010685707675293]],[[0.041066057980061,0.059533659368753,0.021371120586991],[0.03087061829865,-0.063234269618988,0.045386698096991],[-0.0021980486344546,0.035128459334373,0.022807113826275]],[[-0.0030308645218611,0.056775856763124,0.029966095462441],[0.03622829914093,0.020122079178691,-0.10786195844412],[-0.0021311435848475,0.038936879485846,-0.017335837706923]],[[0.11688911169767,0.058126877993345,0.14553739130497],[0.093931160867214,0.08562109619379,0.093135692179203],[-0.11264305561781,0.040210824459791,0.046519566327333]],[[-0.049893360584974,-0.021210672333837,0.033514741808176],[-0.091552913188934,-0.042784295976162,-0.076406843960285],[-0.033658351749182,-0.010866357944906,-0.049522493034601]],[[-0.052461192011833,0.056379534304142,-0.0018939507426694],[-0.075087338685989,-0.11223764717579,-0.051732011139393],[-0.030517032369971,-0.00035068404395133,0.054399486631155]],[[0.062186375260353,0.043175850063562,-0.0320218577981],[0.011215031147003,-0.031933452934027,0.021394139155746],[0.031225882470608,0.02537732757628,-0.0031697298400104]],[[0.079963736236095,0.021547181531787,0.066186778247356],[0.027538601309061,-0.028706844896078,-0.040316604077816],[0.0010291944490746,-0.056618709117174,0.030627768486738]],[[-0.046269781887531,-0.040303528308868,-0.081641338765621],[-0.077091507613659,0.0072562228888273,-0.042649302631617],[-0.060482691973448,-0.028306437656283,-0.063507482409477]],[[-0.035690598189831,-0.058261506259441,-0.059869632124901],[0.027448216453195,-0.042457863688469,0.030914459377527],[0.041222788393497,0.072023920714855,0.024726528674364]],[[0.098669648170471,0.05815939232707,0.02767151221633],[-0.030633080750704,0.0061116656288505,0.033711209893227],[-0.020393522456288,0.015355500392616,0.12481251358986]],[[0.076054789125919,-0.048347409814596,-0.042073782533407],[-1.6175974451471e-05,0.015607939101756,0.025902708992362],[-0.034519206732512,-0.017249427735806,0.055703345686197]],[[-0.014577163383365,-0.017853155732155,-0.0095525663346052],[-0.05148546025157,0.078061893582344,-0.022868473082781],[-0.00094470690237358,0.031936086714268,0.072460152208805]],[[0.088687404990196,0.030175089836121,0.0053187045268714],[0.067651636898518,0.074699267745018,-0.033993322402239],[-0.083423472940922,0.041840549558401,-0.067463979125023]],[[0.014930654317141,-0.11012213677168,-0.044345460832119],[0.023623503744602,-0.063955046236515,-0.099652372300625],[0.015964981168509,0.083728179335594,0.1768659055233]],[[-0.0042951791547239,-0.017499437555671,-0.025175394490361],[0.043189559131861,0.023945340886712,0.0037365446332842],[0.12470070272684,0.066111646592617,0.029834190383554]],[[0.00054567505139858,0.019205644726753,0.010991211980581],[0.086895816028118,-0.014297926798463,0.075014546513557],[0.0032456549815834,0.049227807670832,0.00020363440853544]]],[[[-0.0066936835646629,0.036845952272415,-0.040357865393162],[-0.010036205872893,-0.019830476492643,-0.10274220257998],[-0.013289906084538,-0.10079026967287,-0.0053817741572857]],[[-0.015840910375118,0.004799391143024,-0.059719167649746],[0.010794209316373,0.043075524270535,-0.027459109202027],[0.02883137576282,-0.062911495566368,-0.05515031889081]],[[-0.07807969301939,-0.086946681141853,-0.005265180952847],[0.029912639409304,-0.095074735581875,-0.048352066427469],[-0.0077250120230019,0.026713280007243,0.0012298695510253]],[[0.012894649989903,-0.024865601211786,0.014195114374161],[0.031030448153615,-0.038121294230223,-0.087871238589287],[0.017650503665209,0.024885360151529,-0.058062918484211]],[[0.073316790163517,0.069832473993301,0.030598929151893],[-0.096159115433693,-0.095790065824986,-0.0047783250920475],[0.013470307923853,-0.090479895472527,-0.057836655527353]],[[-0.0071587436832488,-0.021255834028125,-0.00026534014614299],[-0.021573256701231,-0.065424874424934,-0.05033652484417],[0.029984576627612,0.078766345977783,0.013765746727586]],[[-0.041916068643332,0.030169878154993,-0.050455305725336],[0.027008403092623,0.016302593052387,-0.069957628846169],[0.030425684526563,-0.024393439292908,-0.0078272754326463]],[[0.069912806153297,-0.012677285820246,-0.0038337386213243],[-0.044376574456692,-0.031613241881132,0.060665413737297],[-0.022018672898412,-0.038462791591883,-0.066206783056259]],[[0.0089323446154594,-0.072280332446098,0.020977359265089],[-0.06114425137639,0.019490579143167,-0.016698773950338],[0.0087634976953268,0.012507003732026,0.061957236379385]],[[0.013050283305347,0.018410407006741,-0.02785443328321],[0.0079652480781078,-0.12072629481554,-0.0066292369738221],[-0.026029743254185,-0.013557272031903,0.0018335339846089]],[[-0.0234061665833,-0.058450970798731,-0.092324085533619],[0.0048042149282992,0.0039084749296308,0.0041992333717644],[-0.0041137593798339,0.040237851440907,-0.014250631444156]],[[-0.018557084724307,0.0068979053758085,-0.011295867152512],[-0.077030293643475,-0.071172907948494,-0.028059920296073],[-0.043987471610308,0.085929542779922,-0.035901080816984]],[[-0.050074547529221,0.063816204667091,0.044512007385492],[-0.022534217685461,-0.031798496842384,0.0063041332177818],[-0.077667035162449,0.031845215708017,0.029722476378083]],[[-0.0078913969919086,0.0053777769207954,0.025983123108745],[-0.014201775193214,-0.018194139003754,0.057551771402359],[-0.02780532091856,-0.028407704085112,-0.01403315551579]],[[-0.0025648043956608,-0.032634533941746,-0.013446906581521],[0.035667438060045,-0.061436746269464,0.019127476960421],[0.066521935164928,-0.049561448395252,-0.0070596113801003]],[[-0.12010307610035,-0.071687534451485,0.060734141618013],[-0.091683335602283,0.017454359680414,-0.0044975797645748],[0.011058580130339,0.0087846647948027,0.056706875562668]],[[0.074312284588814,-0.062285698950291,-0.048850942403078],[0.095339678227901,0.067400209605694,0.049204777926207],[-0.03669198974967,-0.041960280388594,0.015849450603127]],[[0.010473442263901,-0.0022314575035125,-0.044578831642866],[0.018350588157773,0.052077770233154,-0.1447859108448],[0.062874369323254,-0.011137057095766,0.014100852422416]],[[0.012542805634439,-0.0045738499611616,-0.035214893519878],[-0.013898465782404,-0.058481458574533,-0.090280443429947],[-0.022441865876317,-0.074201337993145,0.02495738491416]],[[0.019766449928284,0.016551285982132,-0.030904021114111],[-0.029349077492952,0.039973594248295,0.0072948513552547],[-0.012902412563562,0.031036578118801,-0.016886761412024]],[[0.053326599299908,-0.021699722856283,-0.040143303573132],[-0.005497245118022,0.035587694495916,0.033319994807243],[-0.045428965240717,-0.024656442925334,0.07345037907362]],[[-0.004810728598386,0.081791661679745,-0.093512535095215],[-0.025982100516558,0.099981345236301,-0.048781890422106],[-0.11817719042301,-0.028527962043881,0.081098906695843]],[[0.034548439085484,0.012702924199402,-0.14255149662495],[0.07434756308794,-0.032760355621576,-0.07503729313612],[0.087302424013615,0.034207805991173,-0.0084864413365722]],[[-0.010717645287514,0.085182644426823,0.055503822863102],[-0.031180819496512,0.01965407282114,0.070889323949814],[0.038450226187706,0.046378627419472,0.060594096779823]],[[-0.01404489018023,0.015483076684177,0.051073133945465],[0.020865205675364,0.0052301334217191,0.015629298985004],[-0.030450021848083,0.011293028481305,-0.0056360047310591]],[[0.045692630112171,-0.016500787809491,0.077569201588631],[0.0093103516846895,0.023624420166016,0.00432681851089],[-0.028702553361654,0.018765173852444,0.0022812362294644]],[[0.013186841271818,-0.0010131566086784,-0.010589526034892],[-0.040341190993786,0.063642352819443,0.037613481283188],[0.027469918131828,0.0031678376253694,0.10522602498531]],[[-0.055071000009775,-0.015149345621467,0.025130733847618],[-0.0090029938146472,-0.021022347733378,0.079212553799152],[-0.0068926620297134,-0.086052812635899,-0.039525158703327]],[[0.035092908889055,-0.029050374403596,0.008658766746521],[0.012261889874935,0.01521351467818,0.043365135788918],[0.0022064601071179,-0.065035589039326,0.022796528413892]],[[-0.010774845257401,-0.0013707492034882,-0.019184680655599],[0.00084912322927266,0.016681702807546,0.026287762448192],[-0.0090477205812931,0.010372369550169,0.015705240890384]],[[-0.030146420001984,0.039350692182779,0.073230043053627],[0.036499179899693,0.04654248803854,-0.05081632360816],[-0.025965934619308,-0.030337683856487,-0.050864603370428]],[[0.047043189406395,0.062152236700058,-0.11933737248182],[-0.051401045173407,-0.11576015502214,0.0015023443847895],[0.073470458388329,0.024518236517906,-0.060471959412098]],[[-0.01069894246757,-0.039235129952431,-0.0032746011856943],[0.032989840954542,-0.016410829499364,-0.022876851260662],[0.0082844449207187,-0.001889571081847,0.011635914444923]],[[0.01634000428021,-0.038403294980526,0.024220308288932],[-0.062362551689148,-0.085456378757954,0.070992395281792],[-0.0072410856373608,-0.033420793712139,0.10489939153194]],[[0.036089561879635,-0.033420041203499,-0.0046427589841187],[0.035186607390642,-0.051544316112995,-0.02700188010931],[-0.03039238229394,0.084214650094509,-0.016900958493352]],[[0.027592008933425,-0.07274055480957,-0.083542838692665],[-0.032743595540524,-0.032632201910019,-0.05944687500596],[-0.050018362700939,0.0033878849353641,0.035161025822163]],[[-0.0075355134904385,-0.0059288367629051,0.013868592679501],[-0.056181259453297,-0.041100595146418,0.029268316924572],[-0.025382796302438,-0.0015050400979817,-0.091940239071846]],[[-0.0070830313488841,-0.059485588222742,-0.0068187713623047],[-0.015205040574074,-0.039879530668259,-0.063646785914898],[0.010995735414326,0.06346221268177,0.006362006533891]],[[0.0077802073210478,-0.071406178176403,-0.033765289932489],[0.016016853973269,0.036462143063545,0.043224535882473],[-0.056139707565308,0.058335892856121,-0.045159194618464]],[[0.020658576861024,-0.096022397279739,-0.095099307596684],[0.016859689727426,0.029004203155637,-0.017929470166564],[0.011101968586445,0.10173542797565,-0.0030648775864393]],[[-0.010307190008461,-0.004390993155539,0.047036428004503],[-0.056217085570097,0.040269628167152,-0.024380156770349],[-0.037676889449358,0.016767490655184,0.00034302845597267]],[[0.049559086561203,-0.042713634669781,-0.008571301586926],[-0.02210259437561,0.074417278170586,0.044829610735178],[0.046355277299881,0.062149949371815,0.03884306922555]],[[0.031070182099938,0.040832251310349,-0.039118699729443],[0.034147415310144,0.021194273605943,-0.023064564913511],[-0.017372280359268,-0.000968917098362,-0.010859258472919]],[[-0.062494177371264,0.014672147110105,-0.015021926723421],[-0.021992724388838,0.024787193164229,0.023568501695991],[0.049953117966652,0.012436668388546,0.053592007607222]],[[-0.034186858683825,-0.022680383175611,-0.032142408192158],[-0.018994327634573,-0.043999996036291,0.024267019703984],[-0.01359982509166,-0.041143290698528,0.002733445726335]],[[0.030034361407161,0.034149456769228,-0.067677401006222],[0.045309342443943,0.076228998601437,0.0071014850400388],[0.089613452553749,0.021809050813317,0.033512119203806]],[[0.033491529524326,-0.073482967913151,0.061227720230818],[-0.11629959195852,-0.014048263430595,-0.012979971244931],[-0.027587942779064,0.027424683794379,0.019697586074471]],[[0.046166211366653,-0.030104912817478,0.01259233430028],[-0.034740973263979,-0.067903846502304,-0.037416554987431],[0.019176211208105,-0.076350502669811,-0.031248413026333]],[[0.025847088545561,0.011134076863527,0.023405643180013],[-0.010831060819328,0.016804860904813,-0.023612659424543],[0.054642830044031,0.017478594556451,-0.06140324100852]],[[-0.024185176938772,-0.040084637701511,-0.019906176254153],[0.016515700146556,0.026317389681935,-0.05476538464427],[0.056225135922432,-0.0058752140030265,0.056238781660795]],[[0.0083222752436996,-0.040981069207191,-0.013165233656764],[0.080294691026211,-0.062116224318743,0.032074633985758],[0.034165356308222,-0.0043545169755816,0.0010005610529333]],[[0.041350200772285,-0.0065341359004378,-0.036241814494133],[0.054982051253319,-0.0053812703117728,0.020654059946537],[-0.039910066872835,-0.099560238420963,0.026754960417747]],[[0.048333488404751,-0.020802574232221,-0.016069326549768],[-0.01460939552635,-0.044584155082703,0.039105217903852],[0.0051488219760358,-3.1443523766939e-05,0.029246794059873]],[[0.0054740435443819,-0.022799791768193,0.025324957445264],[-0.024746928364038,-0.022020569071174,0.0087048411369324],[-0.07011166960001,-0.031222425401211,-0.0049567124806345]],[[0.03507424518466,0.025010885670781,-0.043211106210947],[0.044406641274691,-0.035273984074593,-0.083889156579971],[-0.022364296019077,0.049349207431078,-0.015211526304483]],[[0.051435504108667,0.022720035165548,0.030193185433745],[0.028117107227445,-0.008220499381423,0.026133866980672],[0.00043398319394328,-0.0030677129980177,-0.033707052469254]],[[0.01684058830142,0.11538465321064,-0.10369995981455],[-0.036040067672729,-0.012066951021552,0.0085179163143039],[-0.032600283622742,-0.10611205548048,-0.0026110801845789]],[[-0.020378611981869,-0.019982170313597,-0.028855370357633],[0.010502238757908,0.077325597405434,-0.13244061172009],[-0.027931269258261,0.016150176525116,0.0011171239893883]],[[-0.019711328670382,0.0073331291787326,0.13689890503883],[-0.062745720148087,0.11079075187445,0.030123325064778],[-0.053131382912397,-0.080794870853424,0.0043123858049512]],[[-0.046241011470556,0.028731059283018,0.012632517144084],[0.038157816976309,-0.022429892793298,-0.012717454694211],[-0.042999107390642,0.019683601334691,0.046226873993874]],[[-0.040269624441862,0.014241552911699,-0.097908079624176],[0.038494013249874,-0.014634805731475,-0.056689709424973],[-0.026843037456274,-0.074048310518265,0.025468287989497]],[[0.017772618681192,0.0431321375072,-0.055033262819052],[-0.017909530550241,0.024634651839733,-0.019511459395289],[0.046785578131676,-0.017182571813464,-0.02145853638649]],[[0.010145418345928,-0.022174937650561,-0.062667466700077],[0.039370410144329,-0.028472414240241,0.001117765204981],[0.045257546007633,0.013163353316486,0.052295483648777]],[[-0.041913535445929,-0.069181397557259,0.025620942935348],[-0.001317098387517,0.042964551597834,-0.05307362228632],[-0.02438623085618,-0.01875352486968,-0.010500790551305]]],[[[0.028417456895113,0.040853127837181,0.045479629188776],[0.016541516408324,0.040936890989542,0.014216563664377],[0.070337578654289,0.10132855176926,0.12296733260155]],[[0.00033380620880052,-0.080406084656715,-0.11933071166277],[0.015536152757704,0.01002256385982,-0.056578136980534],[0.0063334754668176,0.10371527820826,-0.070563316345215]],[[-0.0060556158423424,-0.1516549885273,-0.1001603603363],[-0.023488964885473,0.0011923875426874,-0.055856432765722],[0.049063943326473,0.033798009157181,0.072789438068867]],[[0.003744401037693,-0.059493478387594,-0.04621359333396],[0.04437567293644,-0.054642956703901,-0.14465221762657],[-0.069253504276276,0.041557431221008,0.0085582369938493]],[[-0.062248155474663,-0.13876129686832,-0.064425691962242],[0.059346362948418,-0.019850051030517,-0.062501683831215],[0.038514629006386,0.058911189436913,0.017585242167115]],[[-0.094811655580997,-0.055239591747522,-0.035630818456411],[-0.016011491417885,-0.0017415565671399,-0.013560745865107],[-0.060210458934307,0.056263297796249,-0.065172135829926]],[[-0.063913628458977,-0.052298836410046,-0.078272320330143],[0.063317626714706,0.012560471892357,-0.072258107364178],[0.083793938159943,-0.0079350145533681,-0.034679651260376]],[[0.00019327508925926,-9.5859322755132e-06,-0.10792562365532],[-0.0048330090939999,-0.020155748352408,-0.013677169568837],[0.02971750497818,-0.040575362741947,0.0085223317146301]],[[-0.0040255631320179,0.039145898073912,0.063441351056099],[-0.046671088784933,0.018829831853509,0.070933796465397],[-0.093321494758129,0.023831240832806,0.057842057198286]],[[-0.024284582585096,0.0023843550588936,0.066647984087467],[0.063322357833385,0.032312776893377,-0.025724411010742],[0.063937865197659,-0.063691079616547,-0.082688242197037]],[[0.037426877766848,-0.11452770978212,0.026802510023117],[-0.002866908442229,0.0017471476458013,-0.015671025961637],[0.0043050111271441,-0.11429165303707,0.038804776966572]],[[-0.030726676806808,-0.264762789011,-0.14148025214672],[0.058552049100399,-0.00047399837058038,-0.056184563785791],[0.056120678782463,0.096933700144291,-0.031194193288684]],[[0.12457855790854,0.022340876981616,0.024410720914602],[-0.063880950212479,-0.019494537264109,0.069279737770557],[0.083655700087547,0.11068726330996,0.073501229286194]],[[0.014860936440527,0.092524081468582,0.025018863379955],[0.039512131363153,0.04006165266037,-0.022060912102461],[0.061210226267576,0.072782151401043,0.061101920902729]],[[-0.050230327993631,0.07192038744688,0.00096195010701194],[-0.046123780310154,0.070054180920124,-0.10308612138033],[-0.043991841375828,0.01606135815382,0.030204905197024]],[[0.053521201014519,-0.034761469811201,0.043228641152382],[-0.011477527208626,-0.067053809762001,-0.02424637041986],[-0.044663108885288,0.029344275593758,0.035971969366074]],[[0.064598761498928,-0.086607247591019,0.042357157915831],[0.12150078266859,0.085848413407803,0.059354193508625],[0.015041590668261,-0.0011839929502457,-0.0062397471629083]],[[-0.046772349625826,-0.11260750889778,-0.060309458523989],[-0.059090260416269,-0.048133995383978,-0.038888193666935],[-0.03238495066762,-0.043778706341982,0.044291038066149]],[[0.018061190843582,0.066891729831696,0.075692199170589],[0.075744032859802,-0.083750173449516,0.10059083253145],[0.018992826342583,-0.050077054649591,0.021449979394674]],[[-0.023322872817516,-0.020762950181961,0.024866934865713],[0.020600724965334,-0.04874350130558,0.026433287188411],[-0.0040455609560013,0.049673020839691,-0.026655275374651]],[[0.00061227008700371,-0.0045863585546613,-0.067066535353661],[-0.018955711275339,-0.019353622570634,-0.069502510130405],[0.06514810025692,-0.043605275452137,-0.10014877468348]],[[0.11183056235313,-0.03714257478714,-0.0584467202425],[-0.010231258347631,0.037210900336504,-0.060977850109339],[0.059896234422922,-0.022465486079454,0.010652225464582]],[[0.028912916779518,0.026255330070853,-0.12469655275345],[0.031832080334425,0.029894664883614,-0.095794916152954],[0.07943519204855,0.051703676581383,-0.081949837505817]],[[-0.046975530683994,-0.015513786114752,0.06833303719759],[0.018713261932135,0.006734820548445,-0.007481531240046],[0.12295240908861,-0.083387531340122,0.049781277775764]],[[-0.01026551797986,-0.016713853925467,-0.094872176647186],[-0.011212797835469,0.06566508859396,-0.078305713832378],[-0.0050920788198709,-0.078704327344894,0.052721027284861]],[[0.017962442710996,0.0033783114049584,-0.012171060778201],[0.028775844722986,0.0076855588704348,0.0062400605529547],[0.056390780955553,-0.017489891499281,-0.020126033574343]],[[0.019016213715076,-0.030768826603889,0.016146071255207],[-0.019461140036583,0.10147010535002,-0.02090005017817],[-0.072326816618443,0.052800491452217,0.0062412563711405]],[[-0.097474351525307,0.0060954168438911,0.035023361444473],[-0.075411178171635,-0.085275031626225,-0.080480352044106],[-0.10564090311527,-0.01011117734015,-0.057617008686066]],[[0.010162396356463,0.0099734673276544,0.042597647756338],[-0.0052458974532783,0.018821347504854,-0.0055600539781153],[-0.010369811207056,0.014242474921048,-0.1039220392704]],[[0.035606227815151,0.065760679543018,0.064824610948563],[0.067525692284107,0.037961725145578,0.068362951278687],[-0.078278437256813,-0.063265599310398,0.0051268097013235]],[[-0.033824853599072,-0.030292995274067,0.026258170604706],[-0.13807272911072,-0.051935911178589,-0.12415576726198],[-0.056474775075912,-0.037849478423595,0.018024871125817]],[[0.0084367692470551,0.086496457457542,-0.035874649882317],[-0.04279051721096,0.083395555615425,-0.032178912311792],[0.047416690737009,-0.01131409034133,-0.10496968775988]],[[-0.011557755991817,-0.012412865646183,-0.087551705539227],[-0.02248851582408,-0.042760509997606,-0.041534788906574],[-0.057816784828901,0.018997997045517,0.01121499016881]],[[0.058951184153557,-0.027463160455227,-0.075053200125694],[-0.057484950870275,-0.04058288782835,0.0090888859704137],[0.01616283506155,0.03749481216073,0.025557721033692]],[[-0.085087954998016,0.022752704098821,-0.009201223962009],[-0.0081924349069595,-0.044602762907743,-0.046806778758764],[0.018347796052694,-0.11494266986847,0.016143757849932]],[[-0.010525758378208,-0.0028323277365416,-0.13699628412724],[0.016222845762968,0.022675268352032,-0.063472084701061],[-0.041927613317966,0.031893625855446,-0.022767236456275]],[[-0.0087697198614478,-0.0098255248740315,-0.008544297888875],[-0.10265762358904,0.027060011401772,0.06334862112999],[-0.093348316848278,-0.092414252460003,0.071076951920986]],[[-0.019279459491372,-0.11196880042553,-0.083996213972569],[0.024949390441179,-0.004986397922039,-0.01281922031194],[-0.069981090724468,0.0097137782722712,-0.024949470534921]],[[-0.041616648435593,-0.087194472551346,-0.033749416470528],[-0.037388525903225,-0.018878879025578,-0.02749559096992],[-0.029244115576148,-0.028678275644779,0.016990970820189]],[[0.056631926447153,0.051486127078533,0.03989789262414],[-0.070866994559765,0.056668646633625,0.021030282601714],[0.02999148145318,0.10268608480692,-0.097195394337177]],[[-0.026992132887244,0.010091183707118,0.037119794636965],[0.049061290919781,0.00026717636501417,-0.085756883025169],[-0.051125794649124,0.063382521271706,0.02253651432693]],[[-0.018419485539198,0.04025299847126,-0.018978256732225],[-0.0079553043469787,-0.0342827886343,0.017490295693278],[-0.080852419137955,-0.093557097017765,0.007417659740895]],[[-0.0027181440964341,-0.020043192431331,-0.0061012837104499],[-0.04862118139863,0.051132582128048,-0.009098662994802],[-0.032536488026381,-0.017199451103806,0.04552186653018]],[[0.035365968942642,-0.17306053638458,-0.16651366651058],[0.057382050901651,0.083835236728191,0.085894078016281],[-0.036425482481718,0.044929586350918,0.07414111495018]],[[0.011499403975904,-0.061916425824165,0.00021348494919948],[-0.0096222246065736,-0.022295398637652,0.099212840199471],[-0.1240656003356,-0.11615717411041,0.051923867315054]],[[0.029135519638658,0.0082026571035385,0.129434928298],[-0.00025680605904199,-0.007969556376338,0.024257328361273],[-0.037062384188175,-0.063333235681057,-2.9065755370539e-05]],[[-0.0031368602067232,-0.044250920414925,-0.086067646741867],[0.031179368495941,-0.10077480971813,-0.069994553923607],[0.00061823258874938,-0.0052780429832637,0.072065450251102]],[[0.018600279465318,0.060763161629438,-0.13747945427895],[-0.038737688213587,-0.062567166984081,-0.18041683733463],[-0.068590201437473,-0.052914816886187,-0.031097292900085]],[[-0.059023968875408,-0.070553451776505,-0.031251508742571],[-0.033494267612696,0.021600252017379,0.011619069613516],[-0.066732458770275,-0.0013486363459378,-0.026738967746496]],[[0.02238473109901,-0.1193450242281,-0.022875146940351],[-0.007923562079668,-0.060887895524502,-0.019749905914068],[0.015965780243278,-0.063035689294338,0.020492743700743]],[[-0.043861303478479,-0.093982629477978,0.0095537789165974],[0.013674187473953,0.0016072819707915,-0.036981910467148],[0.072431325912476,-0.089458510279655,0.045597270131111]],[[0.041410472244024,0.036952529102564,-0.16582456231117],[0.036080129444599,-0.022588182240725,-0.16267165541649],[0.018899112939835,0.022315118461847,-0.16214036941528]],[[0.027004439383745,-0.023402871564031,0.042121138423681],[-0.02016888000071,-0.0042252880521119,-0.0029141092672944],[-0.10419174283743,-0.047849372029305,0.023390291258693]],[[-0.046196296811104,-0.22521340847015,-0.12564568221569],[-0.013266094960272,-0.030545393005013,-0.059877287596464],[0.076474778354168,0.032032936811447,0.088454134762287]],[[0.010368120856583,-0.088440239429474,-0.1191984936595],[-0.018260300159454,-0.019349280744791,-0.08608727902174],[-0.044198337942362,-0.10540120303631,-0.020164716988802]],[[0.038435623049736,-0.06274438649416,-0.11206918209791],[0.019664352759719,0.0014516516821459,0.036718942224979],[0.046059682965279,0.0057905004359782,-0.0073422440327704]],[[-0.0013177141081542,-0.10473376512527,0.038354493677616],[-0.01587007381022,-0.013690543361008,0.037591278553009],[0.13964374363422,-0.016539167612791,-0.053039032965899]],[[0.042708091437817,-0.045915570110083,0.052673995494843],[-0.03183077275753,0.0054650623351336,-0.036384988576174],[0.016332438215613,0.0068321791477501,-0.011901432648301]],[[0.042807847261429,0.18699602782726,0.24686112999916],[0.14418418705463,0.033186085522175,0.14478611946106],[-0.083289965987206,-0.060428645461798,0.066413819789886]],[[0.030697774142027,-0.0095288334414363,-0.018932294100523],[0.027868300676346,-0.026404244825244,-0.046659495681524],[-0.011831670068204,-0.017200933769345,0.051524385809898]],[[-0.17175431549549,-0.11249313503504,0.016016436740756],[-0.15004280209541,0.015887528657913,0.025045149028301],[-0.10666200518608,-0.062073893845081,0.035791479051113]],[[-0.026142206043005,-0.027066394686699,-0.050984181463718],[-0.030244508758187,0.080998413264751,-0.015508513897657],[0.028054345399141,-0.067300051450729,-0.04896217212081]],[[-0.024577548727393,0.050200879573822,0.059281129390001],[-0.026384940370917,-0.0040981625206769,-0.14271600544453],[0.062366139143705,0.076386094093323,-0.00390525883995]],[[-0.07960556447506,-0.016086969524622,-0.0035028823185712],[0.03055821172893,-0.054658219218254,0.049953386187553],[-0.12939162552357,-0.12598079442978,-0.010467987507582]]],[[[-0.050314445048571,0.048387825489044,0.0030749922152609],[0.00011906294821529,-0.0089791044592857,0.067408353090286],[0.10418490320444,-0.026163261383772,0.061141226440668]],[[-0.035060480237007,-0.0067274798639119,-0.08605594933033],[-0.030670953914523,-0.043395038694143,-0.10992509871721],[0.054168008267879,-0.040294371545315,0.019199874252081]],[[-0.061708994209766,-0.020227733999491,0.025749007239938],[-0.020894275978208,-0.13505284488201,0.0086778504773974],[-0.030147366225719,-0.083243973553181,0.043487288057804]],[[0.060130085796118,0.00013405365461949,-0.11326615512371],[-0.013705126009881,-0.08016711473465,-0.082467794418335],[0.01325935125351,-0.078797541558743,-0.048626694828272]],[[0.011595693416893,0.0015889889327809,-0.010679915547371],[0.11348617076874,-0.034501723945141,0.055081386119127],[-0.050153624266386,0.041451342403889,0.12496422231197]],[[0.039592903107405,0.067772023379803,-0.0081524485722184],[0.043429844081402,-0.11319115012884,0.022581038996577],[0.029079271480441,-0.0047010965645313,-0.046981118619442]],[[-0.001048308215104,-0.00085820897947997,-0.040541119873524],[0.027374820783734,0.049738485366106,-0.071110792458057],[0.033020175993443,-0.071161143481731,-0.048678245395422]],[[0.048916351050138,0.10697696357965,-0.038675013929605],[-0.025502758100629,-0.0036541654262692,-0.077164590358734],[-0.049542240798473,0.023979820311069,-0.080707728862762]],[[0.047877192497253,-0.031738132238388,-0.0056056194007397],[-0.01542791351676,-0.021329287439585,-0.0349026247859],[0.058672957122326,-0.0046433340758085,0.043504428118467]],[[-0.012844637036324,0.052237786352634,0.11977560073137],[-0.037238944321871,-0.014508296735585,0.0027725717518479],[0.0067223594523966,-0.032261312007904,0.046370077878237]],[[-0.024570729583502,0.027429848909378,-0.029670629650354],[0.041092179715633,0.014038445428014,-0.034532971680164],[0.025712566450238,-0.078990280628204,0.027693441137671]],[[0.043012090027332,0.047389473766088,-0.0097436662763357],[0.033707108348608,-0.010764663107693,0.064679220318794],[0.054893348366022,0.054245512932539,0.071081794798374]],[[-0.0037653353065252,-0.022634599357843,0.013750312849879],[-0.055314965546131,0.030165560543537,-0.078309677541256],[0.054608587175608,-0.014478988014162,0.032945618033409]],[[-0.013804977759719,0.020894350484014,-0.010296269319952],[-0.01231215428561,0.01461838465184,0.0052578849717975],[-0.0084872879087925,-0.0089231841266155,0.013092174194753]],[[0.065660759806633,-0.056156311184168,-0.0085296258330345],[-0.0679916664958,-0.070268183946609,-0.0037270705215633],[-0.018231775611639,0.011634851805866,0.0089013399556279]],[[0.04930218309164,0.04585837572813,0.022745534777641],[0.00010387459769845,0.018479948863387,-0.001763605279848],[-0.058919984847307,0.060536425560713,0.044560428708792]],[[-0.018640071153641,-0.017386021092534,-0.025268036872149],[0.041402783244848,-0.072910040616989,0.036020267754793],[-0.057286206632853,-0.057174224406481,0.11351710557938]],[[0.043254073709249,0.022647833451629,0.10809651762247],[0.0025562469381839,0.017649251967669,-0.10779629647732],[-0.007430671248585,-0.026180787011981,-0.057465929538012]],[[0.031349804252386,0.012229857966304,-0.037905354052782],[-0.0067989714443684,0.00054153538076207,-0.024450793862343],[-0.014965473674238,0.0092667434364557,-0.031319122761488]],[[0.06493367254734,0.0039838585071266,0.031317632645369],[0.00071113143349066,0.00015829138283152,-0.019021354615688],[-0.020291950553656,-0.029643185436726,0.0089798346161842]],[[-0.030317217111588,0.021241588518023,0.045702297240496],[-0.012527970597148,-0.052363030612469,-0.14802613854408],[0.0029172608628869,-0.0097932461649179,-0.10130205750465]],[[0.17807592451572,0.014666513539851,0.067286662757397],[-0.068805187940598,-0.029454151168466,0.05610017105937],[-0.11220154166222,-0.010015179403126,-0.074236609041691]],[[0.01347338501364,-0.012688922695816,0.065594643354416],[-0.081933364272118,-0.072504684329033,-0.081418558955193],[0.097946599125862,0.031269174069166,0.0097934361547232]],[[-0.046188075095415,0.070557430386543,0.049221992492676],[-0.054605986922979,0.075118035078049,0.10811752080917],[0.092168338596821,0.090991094708443,-0.011744609102607]],[[-0.043886952102184,-0.049273781478405,-0.097879774868488],[0.017165353521705,0.036464646458626,-0.054831843823195],[0.0092952754348516,-0.10765782743692,-0.065617986023426]],[[-0.01362996455282,0.09160490334034,0.029090646654367],[0.046384520828724,0.016140874475241,0.057412173599005],[0.026241339743137,0.031068256124854,-0.015343851409853]],[[-0.018483346328139,0.015839161351323,-0.044708210974932],[0.0066562816500664,-0.024886377155781,-0.083492122590542],[0.046694237738848,-0.094289191067219,-0.060324028134346]],[[-0.020983608439565,0.018236255273223,0.0047279610298574],[0.041865702718496,0.035984970629215,-0.046500660479069],[-0.018670476973057,-0.025277270004153,-0.014161373488605]],[[-0.084063798189163,0.05885112658143,0.024040672928095],[-0.0048318109475076,0.041642259806395,-0.00086665659910068],[-0.046675838530064,-0.0077110035344958,-0.022183725610375]],[[0.0094681121408939,0.015993416309357,-0.083930097520351],[0.00371537450701,-0.019517380744219,-0.02764517813921],[0.016570523381233,0.014513579197228,-0.059663221240044]],[[0.044170305132866,-0.015908202156425,-0.10034744441509],[0.00081345532089472,-0.0053574894554913,0.048889894038439],[0.025793399661779,-0.037155002355576,0.0072559765540063]],[[-0.071127206087112,-0.040121871978045,-0.017467938363552],[-0.023892436176538,0.10018476843834,0.038039557635784],[-0.035398073494434,-0.088852666318417,0.030408319085836]],[[0.021972063928843,-0.052755977958441,0.031932577490807],[-0.029353814199567,-0.013984822668135,-0.013106236234307],[0.02888816036284,0.039667990058661,0.019201466813684]],[[0.06545964628458,-0.078182116150856,-0.087569512426853],[-0.0027583695482463,0.059217728674412,-0.054443020373583],[0.016959005966783,-0.06158971041441,0.072160296142101]],[[0.07613492757082,0.0050416616722941,0.026363121345639],[0.088978543877602,0.062367755919695,0.030204569920897],[0.064930692315102,-0.033229842782021,-0.0054401983506978]],[[-0.063243679702282,-0.020409736782312,-0.050359945744276],[0.045104183256626,0.054656121879816,-0.044606845825911],[-0.017539964988828,0.0097928987815976,-0.06915320456028]],[[-0.011118391528726,-0.11432856321335,-0.047248415648937],[0.0077528120018542,-0.031422629952431,0.00070454907836393],[0.1206244751811,-0.041580494493246,0.038376588374376]],[[0.024165546521544,0.019949905574322,0.012173009105027],[0.038666162639856,-0.064033702015877,-0.069613963365555],[0.007085386198014,0.014400714077055,-0.041261434555054]],[[-0.0028743147850037,0.0065655615180731,0.02556311711669],[0.028308158740401,0.020884219557047,0.068484589457512],[0.10749078541994,-0.026804072782397,-0.12386879324913]],[[-0.019655330106616,0.0036054581869394,-0.11841325461864],[-0.029775246977806,-0.041758634150028,-0.053397696465254],[-0.01588299870491,0.048703592270613,-0.00068851868854836]],[[-0.039254952222109,0.067772425711155,0.10958603024483],[0.052139237523079,-0.03442694619298,-0.022334525361657],[0.022464020177722,-0.013227496296167,0.087751008570194]],[[0.0874198153615,-0.0049107493832707,-0.036060843616724],[-0.04861769080162,-0.13801780343056,-0.13507397472858],[0.019609078764915,0.0069492934271693,0.0010295499814674]],[[-0.040656141936779,0.059501085430384,0.010558305308223],[0.0011632342357188,0.049343198537827,0.055776845663786],[-0.080398440361023,0.028945278376341,0.0048959059640765]],[[-0.050519581884146,0.023510236293077,0.049210667610168],[-0.12129890173674,-0.069308824837208,0.024315008893609],[0.021295575425029,0.020111473277211,0.010850105434656]],[[-0.069536671042442,-0.054768584668636,0.075291067361832],[-0.036239434033632,0.037338245660067,-0.026638258248568],[-0.091405890882015,0.015312965959311,0.06111915409565]],[[0.046766839921474,-0.054622415453196,0.014118037186563],[0.028473487123847,0.018479600548744,-0.0086476402357221],[0.043362751603127,-0.0030810453463346,-0.0068617635406554]],[[0.091636463999748,-0.034790597856045,0.0062693138606846],[0.023201618343592,-0.018571719527245,0.051709156483412],[0.0016912346472964,0.046848267316818,0.021054683253169]],[[0.015054813586175,0.017295001074672,0.10878568887711],[-0.025015786290169,-0.018597302958369,-0.057377014309168],[-0.022259933874011,-0.0060203857719898,0.10149745643139]],[[-0.034902580082417,0.011578241363168,0.051250316202641],[-0.03369377925992,0.021170852705836,0.024967297911644],[0.0069035310298204,0.090131662786007,-0.069778397679329]],[[0.042952675372362,0.024845542386174,-0.045225739479065],[0.028545286506414,0.031729996204376,-0.037488620728254],[-0.028702940791845,-0.00021910006762482,-0.060860604047775]],[[0.028727335855365,-0.027597280219197,-0.0016429732786492],[0.0094058942049742,-0.053661942481995,0.040642250329256],[-0.032760735601187,0.022480396553874,0.00058456184342504]],[[0.066021606326103,0.086469240486622,-0.017481883987784],[-0.10573108494282,0.046111933887005,0.026801431551576],[-0.09985264390707,-0.0052399523556232,0.040761735290289]],[[0.0023494071792811,-0.07562729716301,-0.0041245380416512],[-0.010132308118045,0.036051489412785,0.0014566383324564],[-0.082749880850315,-0.0019907217938453,-0.026803502812982]],[[0.040430299937725,0.0041893194429576,-0.03290007635951],[-0.033955320715904,0.066039212048054,-0.031039904803038],[0.027317466214299,-0.027427585795522,0.083530463278294]],[[-0.0093780048191547,-0.069998204708099,-0.015612438321114],[-0.019737860187888,0.019996076822281,0.033876322209835],[-0.068610496819019,-0.073373205959797,-0.010865638032556]],[[-0.014396722428501,0.030572362244129,0.029258016496897],[-0.063709899783134,0.070957362651825,-0.0977962911129],[-0.027315732091665,0.056329742074013,0.030569957569242]],[[0.0061241989023983,-0.10305649787188,-0.0033393057528883],[0.0216024518013,-0.0037723982241005,0.022420309484005],[0.035054072737694,0.013602796941996,0.028385808691382]],[[0.034344676882029,-0.020398305729032,0.076847180724144],[-0.021119793877006,0.012117883190513,-0.048866674304008],[0.028630217537284,0.020650591701269,-0.14554430544376]],[[0.017650697380304,0.043242659419775,-0.03709651529789],[0.011421793140471,0.072767496109009,0.065139897167683],[0.061974462121725,0.07428266108036,0.13797414302826]],[[-0.0096939969807863,-0.012197444215417,-0.058311592787504],[0.051077406853437,0.030304351821542,-0.069828346371651],[0.074207805097103,0.016814300790429,0.0015197658212855]],[[0.025212539359927,0.037679847329855,0.014499126933515],[-0.073388762772083,0.032222159206867,-0.010089968331158],[-0.15580539405346,0.079627595841885,-0.14786969125271]],[[0.0090318471193314,0.023765385150909,0.07134236395359],[0.023487901315093,-0.091500163078308,0.037777721881866],[-0.08499301224947,-0.01350696478039,0.13643541932106]],[[-0.042839154601097,-0.044017858803272,-0.0016913417493924],[0.046412084251642,0.014203856699169,-0.043449144810438],[0.066932216286659,0.022134294733405,0.02771701477468]],[[0.0098419468849897,0.046651542186737,-0.037819225341082],[0.04160774871707,-0.0075465440750122,0.056704450398684],[-0.083777472376823,0.012462604790926,-0.056252356618643]]],[[[-0.049160525202751,0.086894921958447,0.12062960118055],[0.017411705106497,-0.015190391801298,0.1011677980423],[-0.074042461812496,-0.069947093725204,0.14815530180931]],[[-0.030059047043324,0.031423721462488,0.051028434187174],[-0.011028871871531,0.038312561810017,0.015153696760535],[-0.057209894061089,0.00039758282946423,-0.036028657108545]],[[-0.0028385303448886,0.018732694908977,-0.03802290931344],[-0.049573682248592,0.0057319700717926,-0.0036970805376768],[0.015640961006284,-0.015449669212103,-0.03265742585063]],[[0.022679477930069,0.037351533770561,0.063594110310078],[-0.00034249114105478,0.012532973662019,-0.012869045138359],[0.0021966444328427,-0.044436454772949,0.07743963599205]],[[0.034218903630972,-0.017018580809236,-0.01352212857455],[0.072213374078274,0.02385550737381,-0.0012496680719778],[0.072411775588989,-0.13833709061146,-0.052250221371651]],[[-0.073298417031765,-0.040041372179985,0.072292290627956],[0.020447479560971,-0.051028989255428,-0.0031117901671678],[-0.058721475303173,0.0026577385142446,0.010244598612189]],[[0.015211526304483,0.027347192168236,-0.016537366434932],[-0.021746752783656,0.01534482371062,0.028687965124846],[-0.032438099384308,-0.0024208740796894,0.011183117516339]],[[-0.011510353535414,0.004558224696666,-0.0086717391386628],[-0.035017315298319,0.0047595421783626,0.10401853919029],[-0.072612412273884,0.002167321741581,-0.0070208236575127]],[[-0.00032976601505652,-0.034258928149939,0.0032404866069555],[-0.011808635666966,0.056444134563208,-0.039175298064947],[-0.024346368387341,-0.051177483052015,-0.0019844165071845]],[[-0.018412593752146,0.020348848775029,0.025662137195468],[0.010984261520207,0.02464802749455,0.066342175006866],[-0.034541141241789,0.01700715906918,-0.057456161826849]],[[-0.094351053237915,-0.030273620039225,0.01525426004082],[-0.051617123186588,0.016781136393547,-0.0098895626142621],[0.060203861445189,0.034298915416002,0.055173564702272]],[[0.066272668540478,-0.079543128609657,0.07256967574358],[-0.046584874391556,-0.00060586188919842,0.041319169104099],[0.043429292738438,0.054328586906195,-0.016439322382212]],[[0.002608438488096,0.0029343655332923,0.030214020982385],[0.011550945229828,-0.051934998482466,-0.0064724194817245],[-0.20864771306515,0.035732816904783,0.043231636285782]],[[0.062312882393599,0.041461266577244,-0.051756352186203],[0.045230064541101,0.057975552976131,-0.059043612331152],[0.0046784514561296,0.033097833395004,-0.036059588193893]],[[-0.0044547473080456,0.027286697179079,-0.010852748528123],[-0.030320039018989,-0.040580160915852,0.066825360059738],[0.024105284363031,-0.04906165972352,-0.10428058356047]],[[0.063100315630436,-0.044772379100323,0.003154766978696],[-0.016628393903375,-0.0048167766071856,-0.04407200217247],[0.015867859125137,-0.0076599763706326,0.030851878225803]],[[-0.056654315441847,0.0037264896091074,-0.012460884638131],[0.011147269979119,0.051484894007444,-0.057774599641562],[-0.023868819698691,0.053310628980398,0.030756728723645]],[[-0.010886443778872,-0.060628946870565,0.054342158138752],[0.021452113986015,0.01759391091764,0.051483325660229],[-0.051185853779316,0.042815025895834,-0.0013554486213252]],[[0.03770924732089,-0.0015129246748984,-0.0055069592781365],[0.041257258504629,-0.048302661627531,-0.00502839544788],[0.072311289608479,-0.019278384745121,0.073697157204151]],[[-0.0060089151374996,-0.055788949131966,0.0019101500511169],[-0.0047209821641445,0.021265100687742,0.098844811320305],[-0.059874035418034,0.026507956907153,-0.0011427402496338]],[[-0.013058173470199,-0.096121467649937,-0.026772810146213],[-0.050756331533194,0.012600921094418,0.019111854955554],[-0.086639679968357,-0.02854035794735,-0.023228907957673]],[[-0.021277824416757,0.018728274852037,0.10326870530844],[-0.036741103976965,0.052988808602095,-0.14084452390671],[0.0017407388659194,-0.091761849820614,-0.094382844865322]],[[-0.050905976444483,-0.0062264599837363,-0.067102417349815],[-0.073162198066711,0.022319823503494,0.02384951710701],[0.049017306417227,0.0020339458715171,-0.0028379689902067]],[[0.053431127220392,-0.079477369785309,-0.0845812484622],[0.058879286050797,-0.0097440928220749,0.037147220224142],[0.028121566399932,0.090625233948231,0.056264143437147]],[[-0.057026732712984,-0.033724319189787,-0.11111214756966],[0.034484054893255,0.033364959061146,0.073403000831604],[-0.05163573846221,0.035813342779875,-0.056101154536009]],[[0.016714824363589,-0.02505250275135,0.033292327076197],[-0.043073736131191,0.032859493046999,-0.017579775303602],[-0.0021389806643128,0.12992802262306,0.060437757521868]],[[-0.049435887485743,-0.12572978436947,-0.02561067417264],[-0.063450492918491,0.022266859188676,0.0080549158155918],[-0.017065480351448,0.058290131390095,-0.0011678549926728]],[[0.014662712812424,0.018260382115841,-0.020338632166386],[-0.013925621286035,-0.027764178812504,-0.016155775636435],[-0.022195933386683,-0.010376793332398,-0.0046547804959118]],[[-0.03480464592576,0.044960450381041,-0.0037516874726862],[0.019978102296591,0.047352265566587,-0.017971109598875],[0.009918593801558,-0.033978976309299,0.027625132352114]],[[0.084304109215736,0.053760550916195,0.076441444456577],[-0.012346302159131,0.036858323961496,0.0059385928325355],[0.027484312653542,-0.0087094949558377,0.038229033350945]],[[0.0060649486258626,-0.040710907429457,0.10404031723738],[0.052089706063271,-0.021449059247971,-0.013877534307539],[-0.010874342173338,0.058353390544653,0.079253762960434]],[[0.025107454508543,-0.11132875829935,-0.047453641891479],[0.012587116099894,0.067498601973057,0.046059742569923],[0.019028279930353,-0.00076299882493913,-0.0083189411088824]],[[-0.0067786728031933,0.038690909743309,0.012638600543141],[0.0078935008496046,-0.058513328433037,-0.039155930280685],[-0.01418169029057,0.0014929596800357,-0.032973032444715]],[[0.022375628352165,-0.029951492324471,0.027135506272316],[0.0084192156791687,-0.058585442602634,0.012368055060506],[0.0073529686778784,-0.085404545068741,0.059779550880194]],[[-0.021699670702219,0.05157745629549,-0.039938062429428],[-0.072720155119896,0.057829543948174,-0.016352700069547],[-0.024128759279847,-0.010540928691626,-0.00017447947175242]],[[-0.040382582694292,-0.11407021433115,-0.035235196352005],[0.0074507398530841,-0.0069867386482656,-0.016207084059715],[0.064653620123863,0.032373905181885,-0.010085375979543]],[[0.023299690335989,-0.034567821770906,-0.11136793345213],[0.026403276249766,-0.039870213717222,-0.055856071412563],[0.12546207010746,-0.013180961832404,-0.010421940125525]],[[-0.026860017329454,-0.020171150565147,0.022252323105931],[0.0094290152192116,0.050349242985249,0.0027238710317761],[0.0036520594730973,0.019565785303712,-0.014995380304754]],[[-0.11693916469812,0.065234363079071,-0.018307499587536],[0.037848576903343,-0.055554464459419,0.019377306103706],[-0.021879518404603,-0.024160457774997,-0.02340873144567]],[[0.024832747876644,-0.083206698298454,-0.069450102746487],[-0.059016961604357,0.0027233213186264,-0.012251157313585],[-0.049939796328545,-0.10057350248098,0.031603444367647]],[[-0.089481018483639,-0.0033239286858588,0.054992809891701],[-0.060842923820019,0.043285772204399,-0.024647435173392],[-0.0034139347262681,-0.069280713796616,0.019734242931008]],[[-0.031980473548174,-0.029719853773713,0.10461989045143],[0.063695393502712,0.01970536261797,-0.0487210303545],[-0.040720149874687,-0.0090734297409654,0.02060198225081]],[[-0.013124152086675,-0.049525614827871,0.046193387359381],[0.040050439536572,0.04583803191781,-0.00077717349631712],[0.02312851138413,0.11960132420063,0.079121507704258]],[[0.01129683945328,-0.00092164613306522,0.031761094927788],[-0.045520588755608,0.032049663364887,0.023832315579057],[-0.086211167275906,-0.02084942907095,-0.13155087828636]],[[-0.0081074964255095,-0.025074824690819,-0.086298383772373],[-0.09199333935976,0.024585988372564,0.082644127309322],[-0.014569245278835,-0.051612630486488,0.010805567726493]],[[0.063520707190037,-0.027009928599,-0.081852219998837],[0.020968331024051,-0.083709552884102,-0.029143383726478],[-0.098694257438183,-0.079543426632881,-0.044642239809036]],[[-0.045435186475515,-0.088605649769306,0.070890247821808],[0.055744625627995,0.048226624727249,0.062241796404123],[-0.039015356451273,0.10924410074949,0.032809942960739]],[[-0.0019528358243406,0.0017043580301106,-0.017760956659913],[0.040420208126307,-0.055399496108294,0.098535180091858],[0.00089401233708486,-0.058050442487001,-0.015512740239501]],[[0.014338289387524,-0.069983281195164,-0.040931325405836],[-0.069994889199734,-0.013553787954152,0.02725400775671],[-0.02067949809134,0.0014593236846849,0.051355484873056]],[[-0.039391417056322,0.040105324238539,0.019245920702815],[0.055327232927084,-0.057597685605288,0.042076140642166],[-0.081986479461193,0.007813929580152,0.010754476301372]],[[-0.031070496886969,0.04141516238451,-0.0078674573451281],[-0.033945467323065,-0.076682403683662,0.038736887276173],[-0.094602257013321,0.062473259866238,-0.05032654479146]],[[-0.059870660305023,0.11420089006424,0.094980843365192],[0.008501997217536,0.043631318956614,0.028342675417662],[0.12644396722317,0.046531587839127,0.046639155596495]],[[-0.0069229500368237,0.017056461423635,0.0043035931885242],[-0.074923135340214,0.0028290778864175,-0.023661036044359],[-0.040938407182693,0.022494565695524,0.0054877987131476]],[[-0.0085461540147662,-0.15119342505932,0.036335963755846],[0.10188418626785,-0.058429408818483,-0.015638718381524],[0.0021600821055472,0.034209854900837,-0.017040695995092]],[[-0.054983202368021,0.014739629812539,0.00017370554269291],[0.030007690191269,-0.095529615879059,-0.0095819346606731],[0.027851354330778,-0.046364758163691,-0.079638727009296]],[[-0.0058676237240434,-0.062691152095795,-0.0016565101686865],[0.044481229037046,-0.020705552771688,0.011271866038442],[-0.0087775764986873,-0.027981489896774,0.051167335361242]],[[0.049002021551132,0.040469657629728,-0.078474782407284],[0.10402389615774,-0.020235231146216,-0.074586443603039],[0.082207664847374,0.010803695768118,0.066469013690948]],[[0.0051184031181037,-0.0072512710466981,0.014900631271303],[0.022995755076408,0.010800315998495,-0.082390338182449],[-0.037732604891062,-0.081048250198364,0.029163040220737]],[[-0.01344680134207,-0.028804510831833,-0.10279729962349],[0.081077761948109,0.068808510899544,-0.045714680105448],[0.083627253770828,0.096954822540283,0.051908530294895]],[[0.0010732761584222,0.015012643299997,0.041959658265114],[0.018675707280636,-0.0035965759307146,-0.076403968036175],[-0.0065944348461926,0.013190272264183,-0.015715386718512]],[[-0.051215589046478,0.057043313980103,0.015571258962154],[-0.016283292323351,0.055675201117992,-0.077477976679802],[-0.012906981632113,-0.0085767954587936,0.024906484410167]],[[0.0079879006370902,0.00019382729078643,-0.13308738172054],[0.053606312721968,-0.070986397564411,0.044878918677568],[0.075670458376408,0.018248165026307,0.054341081529856]],[[-0.072596684098244,-0.034274972975254,-0.031421668827534],[-0.090758591890335,0.012223211117089,0.0073206769302487],[-0.0067928414791822,0.051310155540705,0.02346845716238]],[[-0.0032672409433872,0.011035137809813,-0.023039542138577],[-0.041951134800911,-0.072802767157555,0.027816129848361],[-0.04684442281723,-0.05123282968998,0.079096972942352]]],[[[0.076294057071209,0.015285056084394,-0.019519900903106],[0.029116701334715,0.061641745269299,-0.044885750859976],[-0.034476671367884,0.015716476365924,-0.019236296415329]],[[0.048311464488506,0.040619652718306,0.012575634755194],[0.090111389756203,-0.042305707931519,0.03632739931345],[0.0045968936756253,-0.01681712269783,0.02497972548008]],[[-0.07758953422308,0.027577197179198,0.0059544290415943],[0.035431537777185,-0.044502004981041,-0.03305397182703],[0.041981868445873,-0.063301183283329,-0.073997169733047]],[[-0.024655856192112,-0.018170583993196,0.041423231363297],[-0.0067333527840674,-0.0046467348001897,0.088824659585953],[0.14327818155289,0.056423354893923,-0.024372145533562]],[[-0.027322741225362,0.027063256129622,-0.013692791573703],[0.0038195219822228,-0.096352152526379,0.0050626252777874],[0.0078266076743603,0.091715566813946,0.11301277577877]],[[0.10945003479719,0.10702363401651,0.01616888307035],[0.039457056671381,0.020115595310926,-0.038604702800512],[-0.12483561038971,-0.092145815491676,-0.10090579837561]],[[0.033034510910511,0.017480546608567,-0.045442543923855],[0.038627628237009,-0.02779027633369,-0.040458019822836],[0.013681490905583,-0.012858467176557,0.074490293860435]],[[0.068206883966923,0.01446251757443,0.027770796790719],[0.03448224440217,-0.034722708165646,-0.04573006555438],[0.055642437189817,-0.1282505095005,-0.10934793204069]],[[-0.022884240373969,0.019987776875496,0.073073856532574],[0.053191237151623,0.1027562841773,-0.062529131770134],[-0.082681648433208,-0.064173817634583,-0.092376299202442]],[[-0.011032658629119,0.031684335321188,0.0066033243201673],[-0.037576742470264,0.0027052923105657,0.059700485318899],[-0.0093081742525101,0.13241924345493,0.037191580981016]],[[-0.03809716925025,-0.020788792520761,0.041619397699833],[-0.034731388092041,-0.0976477637887,0.015000675804913],[-0.054756864905357,0.011303195729852,0.032972410321236]],[[0.03089882619679,0.046699680387974,0.055083680897951],[0.0025474873837084,-0.0048582837916911,0.015895642340183],[-0.14533948898315,-0.13387094438076,-0.13376440107822]],[[0.068693198263645,0.052212439477444,-0.0078390249982476],[-0.026804223656654,-0.019250273704529,0.060835599899292],[-0.036948312073946,0.035125751048326,-0.059058472514153]],[[0.013614796102047,0.0076531521044672,0.057994607836008],[0.022450808435678,0.10611210018396,0.028684122487903],[-0.069028504192829,-0.029303956776857,-0.053937129676342]],[[0.07433644682169,0.013057655654848,0.028666174039245],[0.009714693762362,-0.042975708842278,0.0113789960742],[-0.035455003380775,0.029642499983311,0.037186335772276]],[[-0.040714655071497,-0.044098168611526,0.0041634892113507],[0.0086895106360316,0.0047645103186369,0.0046937051229179],[0.098137058317661,0.14331568777561,0.083719678223133]],[[-0.037340518087149,-0.15022750198841,-0.0044548432342708],[-0.011700208298862,-0.046376995742321,0.054827224463224],[-0.0039633181877434,0.0093484343960881,-0.026941834017634]],[[0.1406387835741,-0.020776659250259,-0.063046336174011],[-0.029833409935236,0.034095581620932,-0.019151203334332],[-0.07095380872488,-0.058229722082615,-0.033942051231861]],[[0.044167269021273,-0.052996840327978,0.024166651070118],[-0.051403567194939,0.020218005403876,-0.011488341726363],[-0.023566864430904,0.025641679763794,0.0074914377182722]],[[0.04012980312109,0.028018029406667,-0.02266894094646],[0.053427159786224,-0.06159208342433,-0.016664067283273],[0.051310636103153,0.0046818237751722,-0.040583420544863]],[[-0.018294209614396,0.060910258442163,0.0075240242294967],[-0.014448720030487,0.094240069389343,-0.034851334989071],[0.037870846688747,0.032444827258587,0.053788967430592]],[[0.11668821424246,0.0097593795508146,-0.017782675102353],[0.069225877523422,0.034693568944931,0.058165803551674],[-0.05806902050972,-0.017167761921883,0.066898539662361]],[[0.050218537449837,0.076153844594955,0.031855616718531],[0.034746192395687,0.021695643663406,-0.088329747319221],[0.073747009038925,0.020349683240056,0.016722636297345]],[[0.037053860723972,-0.013659725897014,0.044518224895],[0.053971115499735,0.10896384716034,0.12542916834354],[0.053010951727629,0.03700515255332,0.1797256320715]],[[-0.052789375185966,0.01010153349489,-0.0094504402950406],[-0.03192650526762,-0.059888955205679,-0.065106689929962],[-0.018665166571736,-0.066361367702484,0.017563011497259]],[[0.037175789475441,-0.046795055270195,-0.049817159771919],[0.012592271901667,0.02618844807148,-0.057353898882866],[-0.016550166532397,-0.040963690727949,-0.015025284141302]],[[0.002695987932384,0.1370641887188,0.025440089404583],[-0.039710450917482,0.073849514126778,-0.055280651897192],[-0.087847791612148,-0.10238132625818,0.087860584259033]],[[0.03124988079071,-0.025414403527975,-0.074480563402176],[0.030880009755492,-0.03660424426198,-0.024971811100841],[-0.0051466012373567,-0.017107026651502,-0.010783868841827]],[[-0.074677929282188,0.016062911599874,-0.04890463128686],[-0.041760504245758,0.0070362775586545,0.02042511664331],[0.024711553007364,-0.020706469193101,-0.022818041965365]],[[0.071636579930782,-0.037523522973061,-0.038949783891439],[-0.044335160404444,-0.010696000419557,-0.15419475734234],[0.038305047899485,-0.084315441548824,-0.22681345045567]],[[-0.016547184437513,-0.078908078372478,0.016675408929586],[-0.041894663125277,-0.0057416455820203,0.032959558069706],[-0.0049906466156244,0.039363868534565,0.018556334078312]],[[0.10797642171383,-0.089722290635109,0.019077595323324],[0.067974738776684,-0.0093766134232283,-0.030686732381582],[0.073933646082878,-0.010675716213882,-0.06264241784811]],[[-0.023092465475202,-0.075173042714596,0.03726439923048],[-0.030916204676032,0.016303258016706,-0.01466827839613],[0.0047922246158123,0.039029914885759,0.035298030823469]],[[0.0083556128665805,-0.00043561277561821,0.0067071551457047],[-0.0032368104439229,0.027537576854229,0.017586071044207],[-0.0029164000879973,0.11545398086309,-0.016610512509942]],[[0.055622588843107,-0.1505730599165,-0.056217312812805],[-0.013328430242836,-0.15253020823002,-0.026201581582427],[0.076036870479584,-0.00031585863325745,0.0068086674436927]],[[-0.066902413964272,0.0012388869654387,-0.016061479225755],[0.096966646611691,-0.0070707490667701,-0.054475005716085],[0.016833348199725,0.018411170691252,-0.0084802620112896]],[[0.085421152412891,0.15765878558159,0.01342920679599],[0.00376498978585,0.031336396932602,-0.042760521173477],[-0.0092464843764901,0.0018940545851365,-0.073495954275131]],[[0.019988400861621,-0.00097955542150885,0.071312427520752],[0.081892468035221,0.047344874590635,-0.0046368762850761],[-0.13419507443905,-0.04385294765234,-0.070882439613342]],[[-0.01787537150085,-0.069336466491222,-0.058320339769125],[-0.011828806251287,-0.020841911435127,0.021105639636517],[-0.005608465988189,-0.026781862601638,-0.043617181479931]],[[-0.087458766996861,0.058565095067024,0.070777498185635],[0.01462706271559,0.1429085880518,0.010285151191056],[0.089065082371235,0.072608806192875,0.063415050506592]],[[0.066161721944809,0.070294491946697,0.022714672610164],[0.067128613591194,0.017494864761829,0.09333673864603],[-0.043973669409752,0.025386469438672,0.037022944539785]],[[-0.0073339473456144,-0.016990516334772,0.041190098971128],[-0.021192088723183,-0.11725498735905,0.058616526424885],[-0.017659621313214,-0.020147021859884,0.12491015344858]],[[-0.031959403306246,-0.0087889693677425,0.13936504721642],[0.030906731262803,0.15658587217331,0.033654868602753],[0.059682540595531,-0.086815983057022,-0.11865452677011]],[[-0.0479376912117,-0.042709074914455,0.10724840313196],[0.057321418076754,0.074954859912395,-0.04333758354187],[-0.04676515981555,0.0073708584532142,-0.013452421873808]],[[0.058432321995497,0.030156742781401,-0.056499626487494],[-0.065182074904442,0.062653891742229,-0.036286827176809],[0.0037329897750169,-0.0024220580235124,-0.063673280179501]],[[0.081924371421337,0.046339370310307,-0.045653514564037],[0.037421621382236,-0.0014995593810454,0.043130688369274],[-0.062163718044758,0.02738694101572,0.016126334667206]],[[0.0046041589230299,-0.019729444757104,-0.012895989231765],[0.094692185521126,-0.025356026366353,-0.028065456077456],[-0.098492637276649,-0.013447008095682,-0.053728602826595]],[[-0.012041870504618,0.0077291410416365,0.032699093222618],[0.044850882142782,0.05335720255971,0.028023144230247],[-0.062336355447769,0.034634336829185,-0.088475003838539]],[[-0.0043186615221202,0.050479486584663,0.0032261016312987],[-0.068425536155701,0.031274240463972,0.07231505215168],[-0.043264556676149,0.024323655292392,-0.026465648785233]],[[0.029581358656287,-0.011287840083241,0.051712717860937],[0.059350803494453,-0.065670140087605,-0.061340909451246],[-0.0050614601932466,-0.025588432326913,-0.075863659381866]],[[-0.035947538912296,-0.098560608923435,-0.024012973532081],[-0.067347645759583,-0.082033529877663,0.038522273302078],[-0.0026158355176449,0.030096152797341,0.048383321613073]],[[0.067080482840538,-0.034458290785551,-0.02164694853127],[0.10313920676708,0.044533800333738,0.070982053875923],[0.099406823515892,0.15469127893448,0.082316860556602]],[[-0.067381873726845,-0.048419550061226,0.072240643203259],[-0.028000209480524,-0.029521996155381,0.083042740821838],[0.02311572432518,0.073333643376827,-0.028578596189618]],[[-0.11765472590923,-0.091077268123627,-0.056753177195787],[0.086695060133934,0.045394767075777,0.0047119124792516],[0.043808706104755,0.053061958402395,-0.042047400027514]],[[8.4012033767067e-05,0.014661607332528,-0.017661513760686],[-0.087637238204479,-0.065334856510162,0.091846756637096],[0.06548997014761,0.05261318013072,0.029981190338731]],[[-0.03317030146718,0.00010476892930456,-0.011243973858654],[-0.063659228384495,-0.034319344907999,0.0069620623253286],[0.048702385276556,-0.020460400730371,-0.062351543456316]],[[-0.010678240098059,-0.0028890874236822,-0.037841577082872],[-0.0023641032166779,-0.01410736143589,0.039568662643433],[-0.0060649756342173,0.0091035114601254,0.023841733112931]],[[0.01685743406415,-0.028764480724931,0.022365223616362],[0.06178667396307,0.094316229224205,-0.034285590052605],[-0.0080808838829398,-0.060745492577553,-0.074808493256569]],[[0.082031264901161,0.16592010855675,0.015798171982169],[0.085007540881634,0.024059724062681,0.08861068636179],[0.04165867343545,0.11264500766993,0.13696925342083]],[[-0.0078741777688265,-0.029214318841696,0.035657841712236],[-0.079479210078716,0.018976205959916,0.067606560885906],[-0.0079917181283236,-0.027991617098451,0.049751121550798]],[[0.0099317794665694,-0.061019796878099,-0.11721409112215],[0.034161627292633,0.035146676003933,0.010729603469372],[0.10826709866524,-0.12680867314339,0.050001081079245]],[[-0.10436514019966,-0.054754354059696,0.016219243407249],[-0.030827045440674,-0.14706106483936,-0.087024956941605],[0.007171867415309,-0.0062145567499101,0.2159840464592]],[[-0.070221044123173,0.04189494997263,-0.028526002541184],[-0.026755252853036,-0.015697382390499,0.071503691375256],[0.077843062579632,0.09316972643137,0.072865374386311]],[[0.040819361805916,-0.017254570499063,-0.055194675922394],[0.066631838679314,-0.090227343142033,0.02165712416172],[-0.090938150882721,-0.020388752222061,-0.076332181692123]]],[[[0.0072269728407264,-0.092999532818794,-0.052855297923088],[0.0094310883432627,0.0039753527380526,-0.037767872214317],[-0.031553503125906,-0.053009074181318,0.036548420786858]],[[0.035020969808102,0.016663927584887,-0.017641821876168],[0.058829922229052,-0.056378923356533,0.026233749464154],[0.0010350917000324,-0.0054841018281877,-0.018782800063491]],[[-0.083901770412922,-0.031611803919077,0.005660202819854],[-0.0095309894531965,-0.0149449063465,0.020026123151183],[-0.013757806271315,0.048007190227509,0.015385295264423]],[[-0.009031044319272,0.01388899423182,0.026441875845194],[-0.040758300572634,-0.068443775177002,-0.0098530473187566],[-0.020691948011518,0.026294533163309,0.02905453927815]],[[0.0002568407508079,0.079537771642208,-0.059699609875679],[-0.018901249393821,-0.0060489433817565,0.011028913781047],[-0.031612191349268,0.009273786097765,0.0028388598002493]],[[0.053827170282602,0.02707845158875,-0.074540495872498],[-0.01294716540724,-0.0072465534321964,0.012031502090394],[-0.06924857199192,0.0011112325591967,0.012670863419771]],[[-0.057941902428865,-0.016595983877778,-0.057823002338409],[-0.064576491713524,0.041176617145538,-0.021408136934042],[-0.05033715441823,-0.011296412907541,-0.025921227410436]],[[0.02304033190012,-0.012100045569241,-0.056779064238071],[-0.0022103181108832,-0.031080225482583,-0.008957359008491],[0.03486842289567,0.0040399054996669,0.055904816836119]],[[-0.0081331245601177,0.066820181906223,-0.015194573439658],[0.095728941261768,-0.062731347978115,-0.01939357444644],[-0.033046167343855,0.0031191639136523,-0.032564297318459]],[[-0.018881686031818,-0.041184082627296,0.024680642411113],[0.014757775701582,-0.041907303035259,-0.021658319979906],[0.0069770705886185,-0.017382910475135,0.0041664130985737]],[[0.024734806269407,0.042202461510897,0.011176970787346],[-0.053799487650394,0.083648920059204,0.013591330498457],[0.01196186710149,-0.019783664494753,0.046323630958796]],[[0.00046222648234107,0.027456657961011,-0.00078082352411002],[-0.01754704490304,-0.031888920813799,-0.049467291682959],[-0.061441130936146,-0.0062698619440198,0.015646602958441]],[[-0.016224162653089,0.02883131057024,-0.03926769644022],[0.080764196813107,0.024902103468776,-0.060386840254068],[-0.12112866342068,-0.032577808946371,0.047958463430405]],[[0.0027734388131648,0.046925909817219,0.032976243644953],[0.010108567774296,0.0074528688564897,0.017209069803357],[0.051497247070074,0.0089342892169952,0.0028441837057471]],[[-0.024193881079555,0.10105822235346,-0.013446496799588],[0.020595239475369,0.0019255023216829,-0.01269590202719],[0.025498798117042,-0.021060528233647,0.047058161348104]],[[-0.013701166026294,-0.076582729816437,0.057204037904739],[-0.14910885691643,-0.024060443043709,0.03874946013093],[-0.023400563746691,0.020359950140119,0.017615288496017]],[[0.0067353774793446,0.0093606067821383,-0.010164159350097],[0.10176496952772,-0.10998667776585,-0.045065358281136],[0.024897124618292,-0.0071961237117648,0.03158250451088]],[[0.0039077941328287,0.036007784307003,-0.043943054974079],[-0.01933665573597,0.01895565353334,0.0054068597964942],[0.026701370254159,0.046971008181572,-0.039759453386068]],[[-0.073039002716541,-0.005249697715044,-0.061297327280045],[-0.051032118499279,0.031831085681915,-0.076851561665535],[-0.087163984775543,0.06599086523056,-0.015679074451327]],[[-0.030242882668972,0.051904756575823,-0.021387675777078],[-0.028634142130613,0.059101335704327,-0.016991524025798],[0.029432879760861,-0.029551828280091,0.017305267974734]],[[0.034621231257915,-0.020631892606616,-0.036070097237825],[-0.045447614043951,0.041583362966776,0.092356495559216],[-0.0104512097314,-0.023118712007999,-0.069903574883938]],[[0.14942190051079,0.048388253897429,0.0083097256720066],[-0.027219671756029,0.0078043290413916,0.039677239954472],[-0.10576429218054,0.043935529887676,-0.13051843643188]],[[0.022533165290952,0.064784564077854,-0.038149792701006],[0.064898185431957,0.056260384619236,-0.0011135749518871],[0.020433306694031,-0.0090682534500957,-0.048021480441093]],[[-0.004770562518388,0.039062730967999,0.063987240195274],[0.040624111890793,0.063479766249657,0.12398308515549],[-0.0023794888984412,0.10580231249332,-0.018695492297411]],[[0.013899585232139,0.056583970785141,0.011672601103783],[0.070919185876846,0.018351631239057,0.040332868695259],[-0.0986163392663,-0.071405716240406,0.0064725619740784]],[[0.033363733440638,0.011485767550766,-0.039583627134562],[-0.017408192157745,0.071835078299046,-0.032196413725615],[-0.039635546505451,0.043314591050148,-0.049430053681135]],[[0.019690962508321,0.017056012526155,0.07320786267519],[0.024062281474471,0.021459747105837,-0.0087112104520202],[-0.022754229605198,0.050460763275623,0.011633538641036]],[[-0.028989195823669,0.010331203229725,-0.066006526350975],[-0.011092017404735,-0.058968562632799,-0.026181228458881],[-0.00083875260315835,0.0049949735403061,0.0049405405297875]],[[-0.018451562151313,0.058045040816069,0.03851966932416],[0.0035795888397843,0.05031318590045,-0.017963333055377],[0.072304800152779,0.0059103909879923,-0.00087688839994371]],[[-0.025407308712602,-0.046990375965834,0.028931489214301],[-0.030566561967134,0.038586057722569,0.041427291929722],[0.014224618673325,0.0022928800899535,-1.9655370124383e-05]],[[-0.056690517812967,-0.074534341692924,0.0028592275921255],[-0.088341981172562,-0.017914915457368,0.027970070019364],[-0.015954244881868,0.002242693444714,-0.045351512730122]],[[0.069031149148941,0.031068628653884,-0.040462471544743],[0.035594370216131,-0.058248326182365,0.006718909367919],[-0.038211807608604,0.048836279660463,0.050114966928959]],[[0.01417800039053,0.022214705124497,-0.044307272881269],[-0.0011941686971113,0.015326330438256,0.015897400677204],[-0.012875797227025,-0.012082474306226,-0.0040787011384964]],[[0.051588505506516,0.033174652606249,0.043464008718729],[0.074365206062794,-0.040639128535986,0.053492523729801],[0.10339248925447,0.083538465201855,0.018047714605927]],[[-0.055595565587282,0.029320791363716,-0.0032029913272709],[0.037540420889854,-0.0042338012717664,0.037999711930752],[0.0096516348421574,0.041256327182055,-0.059140674769878]],[[-0.048376861959696,0.030833611264825,0.0046026278287172],[-0.058183584362268,-0.042473088949919,0.036350175738335],[0.077626116573811,-0.053199339658022,-0.023627577349544]],[[0.025243254378438,-0.010955725796521,-0.021184338256717],[0.050151340663433,0.086817488074303,-0.008141178637743],[-0.045586921274662,-0.033625487238169,-0.016157520934939]],[[-0.091693006455898,-0.039250701665878,-0.032901648432016],[0.030120311304927,-0.046511396765709,0.010223474353552],[-0.013176395557821,0.019136026501656,-0.066154137253761]],[[-0.064001969993114,-0.040940694510937,-0.042345698922873],[-0.086471900343895,0.026212261989713,0.049010343849659],[-0.050944708287716,-0.050768185406923,-0.052493393421173]],[[0.037128459662199,0.040004752576351,0.044485799968243],[0.095014326274395,0.038418155163527,0.066698901355267],[0.022885767742991,0.03007872030139,0.0066328076645732]],[[0.029049772769213,0.043701652437449,0.030166251584888],[-0.009423891082406,-0.019895376637578,0.039711434394121],[0.018295014277101,-0.0048777204938233,0.01223396603018]],[[0.044138852506876,0.004640597384423,-0.036748636513948],[0.01841251924634,-0.012178785167634,-0.010521199554205],[-0.020658979192376,0.049973208457232,0.049959909170866]],[[-0.0084615144878626,0.034128934144974,0.013777619227767],[-0.0084476079791784,-0.050409030169249,0.040804781019688],[-0.0030136948917061,-0.070895574986935,-0.041774723678827]],[[0.011080951429904,0.0063853403553367,0.097189664840698],[0.052091307938099,-0.032396450638771,-0.014125473797321],[-0.017371445894241,0.012615798972547,-0.044966086745262]],[[-0.099997870624065,-0.022885276004672,-0.071526110172272],[0.04256073012948,-0.0058472412638366,0.0042043062858284],[-0.057084478437901,0.028446642681956,0.016603304073215]],[[-0.02192197740078,0.036204736679792,-0.015837574377656],[0.011141392402351,-0.026000909507275,-0.05716198310256],[0.021912433207035,0.0011102663120255,-0.053542550653219]],[[0.0014209933578968,-0.069968715310097,-0.054490696638823],[0.0024747962597758,0.048670925199986,-0.013374373316765],[-0.015364341437817,0.028793826699257,0.0070847570896149]],[[0.05352870002389,-0.059489581733942,0.079860344529152],[0.054740510880947,0.042509496212006,-0.026247594505548],[0.050777181982994,-0.085100598633289,-0.0068040913902223]],[[0.048637520521879,-0.050032701343298,0.04347924515605],[-0.060394566506147,0.019348781555891,-0.0124925179407],[0.0035512687172741,0.037734840065241,-0.011618186719716]],[[-0.015710478648543,-0.035665947943926,0.0255809687078],[-0.031775709241629,0.020708380267024,-0.0073057492263615],[0.0047812983393669,0.055421303957701,-0.030258199200034]],[[0.053300112485886,-0.050507452338934,-0.037479676306248],[0.013822674751282,-0.045219723135233,-0.009144795127213],[-0.00078205484896898,-0.025102166458964,-0.04027609154582]],[[0.045963570475578,-0.021565491333604,0.034130807965994],[0.050801977515221,0.055034708231688,0.08772561699152],[0.0035914150066674,-0.011296153999865,0.030309684574604]],[[0.033342465758324,0.079662472009659,0.090347342193127],[0.010290758684278,-0.034980017691851,-0.011659995652735],[-0.029959661886096,-0.010078274644911,-0.0045344489626586]],[[0.0057920361869037,0.03603857383132,0.079462379217148],[0.052956894040108,0.011752413585782,-0.0085429418832064],[0.048154436051846,0.030993537977338,0.001776201184839]],[[0.019610421732068,-0.022135335952044,-0.037427578121424],[0.032323304563761,-0.063942201435566,0.013804951682687],[-0.017115874215961,-0.016595525667071,0.0056771351955831]],[[-0.023530757054687,0.046908907592297,-0.012199218384922],[0.022740365937352,0.013940607197583,-0.05735132843256],[-0.017890991643071,-0.077774830162525,0.0099177621304989]],[[-0.015769718214869,0.046293247491121,-0.0084212860092521],[0.081743948161602,-0.0030683879740536,0.00013899843906984],[-0.074514009058475,-0.02159865014255,-0.042071226984262]],[[-0.020985946059227,0.017392130568624,-0.040216360241175],[-0.04367371276021,0.045997854322195,-0.018402885645628],[-0.0038696064148098,0.038152031600475,0.030970284715295]],[[0.015377694740891,0.033272176980972,-0.039906471967697],[0.056661263108253,-0.073338814079762,0.10029118508101],[0.11083769053221,0.016084982082248,0.0049917502328753]],[[-0.034974556416273,-0.032118104398251,0.025593124330044],[-0.056637987494469,0.08534013479948,0.016783239319921],[-0.0057425033301115,0.034765627235174,-0.022948991507292]],[[0.022444928064942,0.025543874129653,-0.0085868509486318],[-0.039967488497496,-0.011773294769228,0.018071996048093],[0.011537439189851,0.090006344020367,0.0463104583323]],[[0.057759180665016,0.061420992016792,0.032773558050394],[0.024409420788288,-0.061906337738037,-0.1365010291338],[0.05446220189333,-0.029227180406451,0.042312882840633]],[[0.018567088991404,0.01354043930769,0.031086208298802],[0.014869200065732,0.00014453347830568,-0.019797965884209],[-0.020725928246975,-0.049600444734097,-0.021274458616972]],[[0.019027082249522,-0.034148614853621,-0.08817995339632],[1.7725054931361e-05,-0.036944180727005,0.038190420717001],[0.0019768383353949,-0.031000589951873,-0.013476704247296]]],[[[-0.020821213722229,0.016529208049178,0.014791373163462],[-0.0010034162551165,0.034414637833834,-0.046891838312149],[0.0097354101017118,0.040601421147585,-0.045504704117775]],[[-0.00048883247654885,0.061555203050375,0.009518682025373],[-0.031756229698658,-0.010675636120141,0.053634721785784],[-0.020497869700193,-0.067418813705444,0.0039023933932185]],[[0.0098140854388475,0.034999512135983,0.0045388448052108],[0.0070814862847328,-0.027089012786746,-0.0064679961651564],[0.0038257571868598,0.03991762176156,-0.046894554048777]],[[-0.00035748316440731,0.02139388769865,0.078502051532269],[0.0098465587943792,0.0034747284371406,0.035218674689531],[-0.032482031732798,-0.042723417282104,-0.056504316627979]],[[-0.014687227085233,0.018167132511735,-0.0077645615674555],[-0.0054327859543264,-0.026619367301464,-0.010371202602983],[0.036066439002752,0.010000369511545,-0.0068950606510043]],[[-0.032424427568913,-0.039864424616098,0.026669485494494],[-0.019358998164535,0.052619580179453,-0.037596128880978],[-0.0056485193781555,0.0032581305131316,0.04390000924468]],[[-0.054477225989103,0.049751318991184,-0.018845712766051],[0.079005062580109,0.026288935914636,-0.038811966776848],[0.0093404790386558,-0.01760913990438,-0.023797411471605]],[[0.024148190394044,0.021956535056233,0.033075876533985],[-0.021356977522373,-0.018570370972157,0.010853762738407],[-0.021812967956066,-0.019216358661652,-0.02600821107626]],[[-0.0047576474025846,0.0016302663134411,-0.009558193385601],[0.043059233576059,-0.0070052584633231,-0.021681131795049],[0.0053990036249161,-0.017271779477596,0.012488415464759]],[[-0.020776784047484,0.0015661543002352,-0.0051018120720983],[0.01671701297164,0.04907963424921,-0.0021888690534979],[-0.022427778691053,-0.012662406079471,-0.013814766891301]],[[0.011947264894843,-0.0046103745698929,-0.024692689999938],[-0.0012091223616153,0.014744786545634,-0.0095840720459819],[-0.025028990581632,0.013696919195354,0.02410726621747]],[[0.029049012809992,-0.05421232804656,0.01911998540163],[0.059140328317881,-0.038804225623608,-0.05123058706522],[0.094656430184841,-0.03532825037837,-0.0054421229287982]],[[-0.010339910164475,0.02691226452589,-0.0095366882160306],[-0.036648720502853,-0.06338519603014,0.0012047799536958],[0.044025331735611,0.022924492135644,0.0023565352894366]],[[-0.0096354875713587,-0.004542819224298,0.017777441069484],[-0.023559927940369,-0.010106837376952,0.011755877174437],[-0.034249618649483,0.002985157771036,0.046612497419119]],[[-0.025002809241414,0.022817581892014,-0.012789783068001],[0.030806750059128,-0.0016237816307694,0.055934894829988],[-0.019503498449922,-0.0029208769556135,-0.050188589841127]],[[0.020819948986173,0.040270317345858,-0.033667657524347],[-0.0082267709076405,0.00051812903257087,0.013956954702735],[0.013388155028224,-0.041646383702755,-0.0080374293029308]],[[-0.00049259758088738,0.03118166513741,-0.047675937414169],[0.020114194601774,-0.0017755880253389,0.0021533207036555],[0.024065099656582,0.00052740646060556,-0.027586290612817]],[[0.012048551812768,-0.0099975895136595,0.011153674684465],[0.031660284847021,-0.016433253884315,0.0044048493728042],[0.019552458077669,-0.068491064012051,0.021259184926748]],[[0.0064209480769932,-0.036848850548267,0.0088257556781173],[0.043373487889767,0.028796283528209,0.053292438387871],[-0.025395933538675,-0.041103348135948,-0.040032733231783]],[[-0.048612277954817,-0.14476116001606,-0.10971584171057],[-0.05348364636302,-0.16514421999454,-0.15178729593754],[-0.053300257772207,-0.18778248131275,-0.1266528069973]],[[-0.0055723562836647,-0.025656279176474,0.061074197292328],[-0.035192042589188,-0.10709521919489,0.094315238296986],[0.0018290571169928,-0.042836289852858,0.072993852198124]],[[-0.01930714212358,-0.0093638282269239,0.024240517988801],[-0.016012378036976,0.0016642606351525,0.0022976866457611],[0.044385209679604,-0.034349031746387,0.0089959101751447]],[[-0.013472972437739,-0.011155646294355,0.019069077447057],[0.02271219715476,-0.025841364637017,-0.020188776776195],[-0.013807399198413,0.010413493029773,0.034654449671507]],[[0.015406529419124,0.010657221078873,0.050789222121239],[-0.054426286369562,-0.079442739486694,0.024211628362536],[1.3016186130699e-05,-0.027851702645421,0.0087641021236777]],[[0.017999401316047,-0.0078397234901786,0.046840190887451],[0.046300522983074,-0.04490464925766,-0.031770940870047],[-0.041808057576418,-0.012442539446056,0.013780812732875]],[[-0.025043994188309,-0.029205089434981,0.0092098508030176],[-0.037963043898344,-0.074199371039867,-0.020360143855214],[-0.058642257004976,-0.086064375936985,-0.02294890396297]],[[0.017366010695696,-0.049275398254395,0.022059192880988],[0.050600066781044,-0.010741109959781,-0.043126251548529],[0.06661556661129,-0.028478067368269,-0.022853586822748]],[[-0.02940110117197,0.010706920176744,-0.007768901064992],[0.04295351728797,-0.0021484966855496,-0.0033911617938429],[-0.0063469791784883,0.025721490383148,-0.022797640413046]],[[-0.0082377642393112,0.034185949712992,-0.053202040493488],[0.025373691692948,0.024406593292952,-0.018203401938081],[-0.01143469568342,0.025859050452709,-0.033358786255121]],[[0.01308015268296,0.082692690193653,0.041662883013487],[0.05331863835454,0.021545035764575,-0.063901670277119],[-0.027004282921553,-0.08596858382225,-0.027164146304131]],[[0.017012991011143,6.319212843664e-05,0.05937997251749],[-0.024414388462901,0.028249606490135,-0.0065387100912631],[-0.0096756611019373,-0.029465617612004,-0.039809603244066]],[[0.00094216747675091,-0.0027278834022582,-0.0066810669377446],[-0.03930502384901,0.02773486636579,0.000254428392509],[-0.0052416394464672,0.0094308909028769,0.010303272865713]],[[-0.020098539069295,-0.011977913789451,0.010277159512043],[0.020424449816346,-0.0048698405735195,-0.013896214775741],[0.01071584969759,-0.005082213319838,0.010307801887393]],[[-0.0037839005235583,-0.0012737290235236,0.0071024969220161],[-0.073865674436092,-0.1057226806879,0.026375753805041],[0.021896865218878,0.07509795576334,0.067128524184227]],[[-0.059606529772282,-0.10453791171312,0.0048941052518785],[0.071586027741432,-0.028704674914479,-0.037723649293184],[0.062556333839893,0.05566219240427,0.043589822947979]],[[-0.0044763903133571,0.022324359044433,0.046316578984261],[-0.053717449307442,0.013880862854421,-0.063594833016396],[0.024645037949085,0.0098334923386574,0.0074706762097776]],[[-0.0022292996291071,0.0040923035703599,0.010057497769594],[0.015274746343493,-0.013688614591956,-0.023206975311041],[0.0079005099833012,0.008093724027276,0.0034120082855225]],[[-0.018341384828091,0.0093804132193327,0.02433941885829],[-0.01606884226203,-0.02728315256536,0.022930873557925],[0.056989531964064,-0.03834730759263,-0.0063444175757468]],[[0.027289465069771,-0.0047816224396229,-0.0086386203765869],[-0.010294549167156,0.020928768441081,0.00086279725655913],[-0.0073838457465172,-0.010286637581885,-0.001018006936647]],[[-0.032000388950109,0.031699948012829,0.066036589443684],[-0.076491989195347,0.036685150116682,-0.012832221575081],[-0.049888335168362,0.028087444603443,-0.0046821990981698]],[[-0.026540661230683,-0.036259200423956,-0.056808434426785],[0.018827261403203,0.02493686042726,0.069146290421486],[0.021316137164831,0.010913353413343,-0.019168382510543]],[[-0.025052295997739,0.00074407138163224,0.014681671746075],[-0.016726130619645,-0.0002146901388187,-0.024523736909032],[0.038627188652754,-0.013936839997768,0.031631376594305]],[[-0.0040012514218688,0.0080270022153854,0.0055378819815814],[-0.0067015313543379,-0.025710005313158,-0.0073971059173346],[0.0050768009386957,0.020390691235662,0.023116275668144]],[[0.020679976791143,-0.0018753639888018,-0.019461175426841],[-0.034892756491899,0.021323096007109,0.0094389850273728],[0.011091265827417,-0.0070924442261457,0.0085260262712836]],[[0.017995908856392,0.0064748558215797,0.0097174569964409],[0.016352761536837,-0.039342220872641,0.0020558598916978],[-0.0033948596101254,-0.025146324187517,0.024396618828177]],[[-0.020916670560837,-0.018491739407182,-0.012561803683639],[0.018571658059955,0.05310208722949,0.017327820882201],[-0.015706142410636,0.014429721981287,-0.021390035748482]],[[-0.03304835036397,0.029941158369184,-0.021179530769587],[0.0070991134271026,-0.0097306352108717,0.024937557056546],[-0.0075002261437476,0.014535627327859,0.0031077798921615]],[[-0.0036016786471009,0.035545695573092,-0.022478975355625],[-0.0048808255232871,-0.031774647533894,0.074649661779404],[-0.048985950648785,-0.0021369811147451,-0.010157350450754]],[[0.0057322862558067,0.028051299974322,-0.010500705800951],[0.022527791559696,-0.033270616084337,-0.012274126522243],[0.010899543762207,-0.00251699751243,0.0096111344173551]],[[-0.0049317153170705,-0.00044576634536497,0.028780756518245],[-0.027466271072626,0.0031747221946716,-0.021099403500557],[0.031885858625174,0.021980062127113,-0.035457111895084]],[[-0.009959033690393,0.013026939705014,-0.015429569408298],[0.018692115321755,-0.01459385920316,-0.0069344947114587],[-0.00097886961884797,-0.0040019573643804,0.018129959702492]],[[-0.042480401694775,0.032758686691523,-0.035704016685486],[0.00078266178024933,0.03192625567317,0.089356742799282],[-0.060564186424017,-0.0051018232479692,-0.022853599861264]],[[0.025171838700771,-0.025026308372617,-0.0013377517461777],[0.027536628767848,0.037633769214153,-0.0097016543149948],[-0.040552772581577,-0.034068685024977,0.019055258482695]],[[-0.014300269074738,0.020835645496845,-0.013235877268016],[0.023070683702826,0.0012649015989155,-0.010554978623986],[-0.043044947087765,0.02745820209384,0.010995320044458]],[[0.0096658933907747,-0.0044719795696437,0.030385999009013],[-0.017109408974648,0.0011338746408001,-0.0072155026718974],[0.00092165055684745,0.0036425737198442,-0.015170582570136]],[[-0.014410769566894,0.021427351981401,0.026775345206261],[0.029212966561317,-0.0710583999753,-0.0035936946514994],[0.032954163849354,-0.029341774061322,0.0025719439145178]],[[-0.017172079533339,0.035760141909122,-0.017654785886407],[-0.0032952164765447,-0.0055298777297139,0.0050701154395938],[0.026919221505523,-0.0029076612554491,-0.012071395292878]],[[0.0044230343773961,-0.026645278558135,-0.026893256232142],[-0.033266987651587,-0.045805163681507,-0.0082531785592437],[0.030113345012069,0.014060903340578,0.10774806141853]],[[-0.053692419081926,0.0057780100032687,-0.026700204238296],[-0.027192920446396,-0.04478744789958,0.052794512361288],[0.07877017557621,0.013205730356276,-0.012653492391109]],[[0.062473516911268,0.072391092777252,0.072704836726189],[0.0020371361169964,0.063364081084728,0.018776534125209],[0.070154681801796,0.13426306843758,0.064280055463314]],[[-0.011588708497584,-0.036661684513092,0.017297212034464],[-0.037631098181009,0.0050604804418981,0.029557617381215],[0.043641705065966,0.027758231386542,-0.028115099295974]],[[-0.015483523719013,0.026547094807029,-0.044052977114916],[0.02859097905457,0.0084331007674336,0.039919592440128],[-0.016365760937333,0.02234916575253,-0.062760032713413]],[[0.0077386423945427,-0.019507750868797,0.00079561676830053],[-0.0064970860257745,0.026391478255391,-0.0071700820699334],[-0.0028273353818804,0.0075475955381989,-0.011528107337654]],[[-0.0033553459215909,-0.0062959720380604,0.011368911713362],[-0.021565137431026,0.022208398208022,-0.0090628322213888],[0.0027033179067075,-0.0079486072063446,0.00046414393000305]]],[[[-0.049062121659517,-0.066151313483715,-0.13160412013531],[0.016474738717079,-0.058357197791338,0.068784326314926],[-0.058924913406372,-0.044228415936232,-0.12297823280096]],[[0.069907888770103,0.038397066295147,0.092890493571758],[0.056597117334604,0.08727141469717,-0.021684303879738],[0.048873700201511,0.14225091040134,0.15778580307961]],[[-0.0046316212974489,-0.018885960802436,-0.025510489940643],[0.011898429132998,0.00041670573409647,0.028029482811689],[0.010252668522298,-0.00771564245224,0.01496550347656]],[[-0.07051969319582,-0.013069062493742,0.016627131029963],[-0.062851272523403,0.035014655441046,-0.015650542452931],[0.041289336979389,0.0082765836268663,0.051667150110006]],[[0.026015713810921,0.028594939038157,0.026968393474817],[0.066321685910225,-0.042712312191725,-0.055968098342419],[-0.012814230285585,0.064993597567081,0.006767054554075]],[[-0.003441721200943,-0.0049218041822314,0.029450383037329],[0.023099936544895,0.056373633444309,-0.030898315832019],[0.041288301348686,0.012935072183609,-0.11367169767618]],[[-0.038348838686943,0.010460750199854,-0.052460204809904],[-0.011521931737661,0.0063253343105316,0.031400948762894],[-0.029632359743118,-0.029060810804367,0.021284023299813]],[[-0.020989760756493,0.019927704706788,-0.025528224185109],[0.023713318631053,0.0384311825037,0.048015311360359],[-0.0071997903287411,0.055196899920702,-0.023617895320058]],[[-0.032619792968035,-0.035076647996902,-0.041212908923626],[-0.0298624150455,-0.031637161970139,0.002451861044392],[-0.034918997436762,-0.026400428265333,-0.13081775605679]],[[-0.10833438485861,-0.093705475330353,-0.04121508076787],[0.022459525614977,-0.046764422208071,-0.012326411902905],[0.024966083467007,0.018255515024066,0.0089533934369683]],[[0.087144419550896,0.058671906590462,0.029302470386028],[-0.033026624470949,0.0034683272242546,-0.017149798572063],[-0.0017295804573223,-0.017626386135817,-0.11023341119289]],[[-0.049074504524469,-0.097259372472763,-0.041429508477449],[0.10010788589716,0.041218020021915,-0.016775360330939],[0.012758812867105,0.10372580587864,0.095280006527901]],[[-0.014003173448145,-0.011287339031696,-0.003041677409783],[0.016100518405437,0.033882331103086,0.056953337043524],[0.035547904670238,0.00035264989128336,-0.0061789746396244]],[[-0.020559832453728,-0.015212820842862,-0.003466370748356],[0.026063617318869,-0.0022712298668921,-0.01242258399725],[-0.030306862667203,0.022887710481882,0.0050741545855999]],[[-0.071022026240826,-0.041326306760311,0.04094360768795],[-0.11948651075363,-0.026922175660729,-0.00020568529726006],[-0.032487209886312,0.066239841282368,-0.026346849277616]],[[-0.0019109275890514,-0.022615548223257,0.046322476118803],[0.042711712419987,0.085880182683468,0.010845595039427],[-0.0073010358028114,0.056911371648312,-0.11577352881432]],[[0.087269805371761,0.12482961267233,0.11058977246284],[0.066516377031803,0.070930473506451,-0.016375651583076],[-0.0120490193367,0.047773018479347,0.011577162891626]],[[-0.021716769784689,-0.047280229628086,-0.045227698981762],[-0.094470284879208,0.0041898456402123,0.039146162569523],[-0.099141664803028,-0.017908457666636,-0.16868250072002]],[[-0.090918131172657,-0.033235020935535,-0.0010505685349926],[0.065074674785137,0.010241838172078,0.055804889649153],[-0.053977247327566,0.0053545394912362,-0.093560770153999]],[[-0.010957482270896,-0.0097548263147473,-0.0044941445812583],[0.031304303556681,0.015378186479211,-0.056040655821562],[0.033018961548805,0.034490674734116,-0.067637234926224]],[[-0.044036623090506,0.06414183229208,0.011034901253879],[0.055684629827738,0.051922410726547,-0.062837533652782],[0.0014906119322404,0.01345594599843,-0.1360639333725]],[[-0.058746300637722,0.088475376367569,0.074028089642525],[0.042504798620939,0.085017278790474,0.029145896434784],[0.016339134424925,0.11506649851799,0.03984571620822]],[[0.072582513093948,0.066827587783337,0.0042689992114902],[-0.0062533328309655,-0.040192179381847,-0.046208381652832],[-0.041199896484613,-0.025826659053564,-0.010411622002721]],[[0.058046817779541,0.026270121335983,0.10877174884081],[0.090275712311268,0.066489651799202,0.11930123716593],[0.14092342555523,0.029966965317726,0.074990406632423]],[[0.071173489093781,0.13923096656799,0.073688559234142],[0.02588445879519,-0.0079019404947758,0.052290577441454],[0.094734661281109,-0.062416400760412,-0.15756110846996]],[[-0.019905986264348,0.050046060234308,0.056817281991243],[0.010559578426182,-0.028479525819421,0.013918300159276],[0.03917146101594,-0.0088908756151795,-0.048603985458612]],[[0.055811416357756,0.0039885500445962,-0.010120538063347],[0.059322874993086,0.13169854879379,0.066192030906677],[0.055757876485586,0.041634559631348,0.0068119023926556]],[[-0.036846850067377,-0.14511409401894,-0.046799510717392],[-0.092034921050072,-0.036436460912228,-0.0706697255373],[0.0011683639604598,-0.057216800749302,-0.064581535756588]],[[-0.027593543753028,-0.078290708363056,0.030844820663333],[-0.080760709941387,-0.024436043575406,-0.024920528754592],[0.082422778010368,-0.01541437022388,-0.016209540888667]],[[-0.031807940453291,-0.11659853905439,-0.080522648990154],[-0.02321707829833,-0.053828615695238,-0.031022489070892],[-0.064252659678459,-0.12826716899872,-0.10976969450712]],[[-0.027083432301879,-0.068680010735989,0.050540667027235],[-0.023088237270713,-0.033811885863543,0.0028231162577868],[0.038904849439859,0.009115032851696,0.042268242686987]],[[0.053059570491314,-0.11310587823391,-0.01131965406239],[-0.014547259546816,-0.022971363738179,-0.01073307171464],[0.03113204613328,0.15037833154202,0.023204552009702]],[[0.032313164323568,-0.0034293816424906,0.016723481938243],[0.013620715588331,0.03328301012516,-0.011800408363342],[0.078105047345161,0.059780232608318,0.051036663353443]],[[0.044001050293446,-0.11157491058111,0.028815284371376],[-0.14661283791065,0.10758019983768,0.19513134658337],[-0.001997968647629,0.07873073220253,0.14948762953281]],[[-0.0020645463373512,0.075148552656174,0.039295326918364],[-0.014922135509551,-0.012090211734176,-0.025411985814571],[0.013074402697384,-0.088810004293919,-0.10855810344219]],[[0.007099318318069,0.00055002822773531,0.012072840705514],[-0.072736352682114,-0.020982215180993,-0.037705894559622],[0.052397508174181,0.023577289655805,0.06220530346036]],[[0.040567986667156,-0.055427592247725,-0.018559014424682],[0.036148067563772,0.040520302951336,-0.0013312386581674],[0.10500057786703,-0.0039620236493647,-0.072921261191368]],[[-0.018097251653671,0.073818415403366,0.076478086411953],[-0.026128185912967,0.059229332953691,0.0078005967661738],[-0.00098431273363531,0.036586340516806,0.07904614508152]],[[0.068569868803024,-0.054204393178225,0.089695543050766],[0.06044289842248,-0.047227159142494,-0.019914772361517],[0.096953466534615,-0.020631169900298,-0.0035536603536457]],[[0.055924728512764,0.12015261501074,0.051797889173031],[0.082319959998131,0.096219517290592,-0.032590761780739],[0.04869132116437,0.045848727226257,0.054875500500202]],[[-0.13956800103188,0.018654510378838,0.14523485302925],[0.029597265645862,0.10183092206717,0.11794913560152],[0.042170345783234,0.067175015807152,0.080283641815186]],[[-0.029647124931216,0.04358246922493,0.059578347951174],[0.01363786123693,-0.0021350183524191,0.070752426981926],[0.017528852447867,0.007301916833967,-0.0088159367442131]],[[-0.013933464884758,0.012568553909659,-0.0063192714005709],[-0.034368116408587,-0.024139450863004,-0.063961148262024],[-0.09540781378746,-0.14113472402096,-0.089851476252079]],[[0.047383904457092,0.020648542791605,0.057322960346937],[-0.050016567111015,0.024774493649602,0.092211596667767],[0.031004551798105,0.022735951468349,0.0077500082552433]],[[-0.061729669570923,-0.073161922395229,-0.01188677828759],[-0.025793736800551,0.007137639913708,-0.019033996388316],[0.07978605479002,-0.0091190859675407,-0.019406229257584]],[[-0.040563143789768,0.053231790661812,0.076759688556194],[-0.094675466418266,-0.010613821446896,-0.0032431178260595],[0.018777115270495,0.079417213797569,-0.033700048923492]],[[-0.0024727557320148,0.054837293922901,0.024716146290302],[0.0086083440110087,-0.03533923625946,-0.063662394881248],[0.031875427812338,-0.13878972828388,-0.017156682908535]],[[0.010156859643757,-0.081110246479511,0.0079486006870866],[-0.089465871453285,0.050295561552048,-0.011106822639704],[0.054893787950277,-0.028858121484518,-0.056368861347437]],[[0.0062676426023245,-0.025064783170819,-0.053912803530693],[0.038669511675835,-0.045807916671038,-0.021972650662065],[0.057091366499662,0.098917305469513,-0.011790125630796]],[[-0.098607674241066,-0.042894221842289,0.018256656825542],[-0.012513415887952,0.020646210759878,0.0029678312130272],[-0.010041682049632,-0.092676386237144,0.099029809236526]],[[-0.011249530129135,0.011927325278521,0.01205691229552],[0.023660115897655,-0.0014030018355697,0.010253115557134],[-0.007540232501924,-0.016312345862389,-0.010239189490676]],[[-0.02573717199266,-0.023227244615555,-0.011024542152882],[0.09906517714262,0.0083126556128263,-0.066549196839333],[0.053931798785925,0.061712171882391,0.0023415258619934]],[[0.021961191669106,0.11032085865736,0.041961368173361],[-0.1013835594058,-0.0042547564953566,-0.0018857814138755],[-0.0012486213818192,0.08138083666563,0.044187899678946]],[[0.025757910683751,-0.01756402477622,0.0010235020890832],[-0.046191766858101,0.0015903459861875,-0.067249141633511],[-0.022695483639836,-0.07272232323885,-0.0040014889091253]],[[-0.15760080516338,-0.084470175206661,0.030760116875172],[-0.073899500072002,-0.054532460868359,-0.0049345465376973],[-0.054364308714867,-0.098710030317307,-0.017763551324606]],[[0.037198517471552,-0.040907174348831,-0.0094298738986254],[-0.030963450670242,0.033548526465893,0.02459392696619],[-0.021519772708416,0.025984067469835,-0.028551410883665]],[[-0.071563310921192,-0.036798249930143,0.0054519455879927],[0.022138994187117,-0.027182068675756,-0.0054038809612393],[0.03732817620039,-0.0036849828902632,0.031848702579737]],[[-0.03187233954668,0.02429610490799,-0.033395826816559],[-0.082464501261711,-0.14085844159126,-0.066188663244247],[-0.022759184241295,-0.010361265391111,-0.21818791329861]],[[0.044491913169622,0.047351013869047,-0.0067767258733511],[-0.01920616440475,0.047725547105074,0.060966499149799],[0.054057352244854,0.013951676897705,0.19404023885727]],[[0.025171605870128,0.018081873655319,0.00018785204156302],[-0.058826394379139,-8.5070423665456e-06,0.014689621515572],[-0.034513056278229,-0.048980735242367,0.055673759430647]],[[-0.01806234382093,0.028199484571815,0.029594099149108],[0.03806471824646,0.043217908591032,-0.11430406570435],[-0.081005550920963,-0.081206895411015,-0.14604307711124]],[[0.022418186068535,-0.017171019688249,0.034633044153452],[0.10875129699707,0.002560876775533,0.067689746618271],[0.035840794444084,-0.045948531478643,0.11049035191536]],[[-0.026745686307549,-0.058163475245237,0.0031139119528234],[-0.00023507261357736,0.042282287031412,0.052133828401566],[-0.055105227977037,-0.13876360654831,-0.025083132088184]],[[-0.12933743000031,-0.05673948302865,0.05235780403018],[0.029552608728409,0.0083734057843685,-0.05622748658061],[0.064711548388004,0.011397298425436,-0.0062749315984547]]],[[[-0.074451707303524,-0.0091789569705725,-0.004273665137589],[-0.061513531953096,0.025555822998285,-0.039686728268862],[0.027065813541412,-0.063912853598595,0.0060170171782374]],[[-0.046313717961311,0.038276936858892,-0.0042292671278119],[-0.065994530916214,0.062186684459448,-0.039040505886078],[0.066917806863785,-0.015320816077292,0.028098110109568]],[[0.059723164886236,-0.072564326226711,0.04137497395277],[-0.010935647413135,-0.11938111484051,-0.017067110165954],[-0.028828421607614,0.018781345337629,-0.020532594993711]],[[-0.069364324212074,-0.060582235455513,-0.035273060202599],[-0.081232160329819,0.010104411281645,-0.00045634969137609],[-0.043900534510612,-0.066949181258678,0.019713439047337]],[[0.031916756182909,0.032680485397577,-0.023352319374681],[0.094248682260513,-0.091235555708408,0.019405364990234],[-0.037543941289186,-0.10586695373058,-0.074558593332767]],[[-0.06468141078949,-0.022920647636056,-0.050540365278721],[-0.05984764918685,-0.064579881727695,-0.024056646972895],[-0.067820638418198,0.22861585021019,0.050128679722548]],[[-0.078799732029438,0.0042639002203941,-0.0066579002887011],[-0.039527405053377,-0.027172716334462,-0.0014923134585842],[0.059763055294752,0.13761547207832,0.0031771080102772]],[[-0.09744218736887,-0.023579675704241,0.01420041359961],[-0.010334070771933,0.0057487147860229,0.022271487861872],[-0.070678368210793,-0.04612984508276,-0.0029956118669361]],[[-0.043901287019253,0.020897559821606,-0.0045416527427733],[0.0218246858567,-0.039488941431046,0.024100141599774],[0.057504534721375,0.044711247086525,0.093196257948875]],[[-0.0089926850050688,0.082110829651356,-0.054643798619509],[0.0083407638594508,-0.020710501819849,0.034693039953709],[-0.097811922430992,-0.0044281170703471,-0.0068258177489042]],[[-0.049920596182346,-0.017849875614047,-0.065997153520584],[-0.029015468433499,-0.020898902788758,0.018545567989349],[0.070757634937763,0.013779664412141,0.012220467440784]],[[-0.0056670727208257,-0.0085962424054742,0.022958027198911],[-0.042350735515356,0.035520479083061,0.0091475341469049],[0.012373435311019,0.061354655772448,0.024822266772389]],[[-0.00938914809376,0.033865448087454,-0.010505624115467],[-0.024189034476876,-0.028711494058371,0.008713549003005],[-0.011428367346525,-0.012317528016865,0.09439817070961]],[[0.016612101346254,0.0040854751132429,-0.017578447237611],[-0.025765091180801,0.031526915729046,0.037891026586294],[-0.017630163580179,0.039019182324409,-0.011594283394516]],[[-0.092586696147919,-0.034710481762886,-0.048526752740145],[0.020287772640586,-0.041207823902369,-0.039518021047115],[-0.011379099451005,-0.03719974309206,0.0040838466957211]],[[-0.10779625177383,-0.0071841725148261,0.067701287567616],[-0.030437657609582,0.022403605282307,0.11656478792429],[0.026306631043553,-0.10219155997038,0.032731112092733]],[[-0.0071511520072818,0.01977083273232,0.0011532406788319],[0.058000672608614,0.012735474854708,0.10468518733978],[0.039415620267391,-0.0076546533964574,0.00027456515817903]],[[-0.035058975219727,-0.12760385870934,-0.010018820874393],[0.039107233285904,-0.054663922637701,-0.038138158619404],[0.030666260048747,-0.053122725337744,0.14663591980934]],[[0.13335786759853,-0.040416341274977,0.028942991048098],[-0.0045183612965047,0.0090938862413168,-0.017641952261329],[-0.027671836316586,-0.080492109060287,-0.028322635218501]],[[0.01367914583534,0.009745535440743,-0.026505898684263],[0.0076779113151133,0.027226885780692,-0.0046498272567987],[-0.018959226086736,0.021607728675008,0.021490449085832]],[[-0.017981702461839,-0.047349479049444,0.00010999534424627],[0.053643748164177,-0.019444052129984,-0.0032469225116074],[-0.051175266504288,-0.036690503358841,0.096873804926872]],[[0.075053676962852,-0.050234485417604,0.063173964619637],[-0.10079813748598,-0.059682235121727,0.040313601493835],[-0.010725905187428,0.0010891770943999,0.086376652121544]],[[-0.066080011427402,-0.0016266595339403,0.041158352047205],[0.061947677284479,0.092636801302433,0.12611225247383],[0.038569778203964,0.12808611989021,0.099875465035439]],[[0.090971298515797,0.10167492181063,0.15937949717045],[0.079688981175423,0.11697256565094,0.091797858476639],[0.014245913363993,0.091780789196491,0.017436096444726]],[[0.021293442696333,-0.017756441608071,0.12868078052998],[0.0048448704183102,0.10694076120853,0.030580926686525],[0.033623076975346,0.085084207355976,-0.0072974301874638]],[[0.048420328646898,0.098886936903,0.038726191967726],[-0.0036865680012852,-0.0091622425243258,-0.083054825663567],[-0.0076647610403597,-0.016827465966344,-0.032729580998421]],[[-0.047231368720531,0.041840400546789,0.012294548563659],[-0.042535241693258,0.020661594346166,0.01098227314651],[0.092685252428055,0.15403372049332,0.00069782783975825]],[[-0.079730324447155,0.011901791207492,0.046994764357805],[-0.05313928425312,0.025211781263351,-0.023122042417526],[0.02176508307457,-0.034199196845293,0.0041679949499667]],[[0.027148317545652,0.025176379829645,0.032904572784901],[0.092950269579887,0.0060578887350857,-0.0039194147102535],[-0.098204478621483,-0.0008331757853739,0.017398372292519]],[[-0.032145373523235,0.012504289858043,0.057935371994972],[-0.0027339356020093,0.053971529006958,-0.047207642346621],[-0.015070634894073,0.020466199144721,0.1016930565238]],[[-0.026542283594608,0.0093817571178079,0.059381667524576],[0.020986853167415,-0.11327988654375,-0.013696986250579],[0.0103212390095,0.047872748225927,-0.01928560808301]],[[0.055527221411467,0.020354740321636,-0.0067899618297815],[-0.0085754143074155,0.00041668859194033,-0.00070739764487371],[0.0046459138393402,0.080697230994701,0.006910284049809]],[[-0.099950037896633,-0.12243689596653,-0.0099692773073912],[-0.017310857772827,-0.017580414190888,0.050569262355566],[0.0055123968049884,-0.0048334607854486,0.054213911294937]],[[-0.084062956273556,0.04112983122468,-0.11679995059967],[0.05705126747489,-0.10129624605179,0.02976056560874],[0.062793791294098,0.0055597550235689,0.075312122702599]],[[-0.086713872849941,0.024996673688293,-0.03270285949111],[0.044768773019314,-0.0067086042836308,0.038465898483992],[0.077765725553036,0.018685726448894,0.035140391439199]],[[0.04829840734601,-0.068810060620308,-0.017412453889847],[0.034778472036123,0.007804162800312,-0.015519473701715],[-0.037866316735744,0.10667736828327,0.074027478694916]],[[0.026441650465131,0.089815244078636,-0.05334934964776],[0.020380806177855,0.0087266750633717,0.024655926972628],[0.0075650094076991,-0.037927996367216,-0.039355643093586]],[[-0.052280619740486,0.039203561842442,-0.01687746681273],[0.072459653019905,-0.026866670697927,-0.0043561682105064],[0.025291172787547,0.028616214171052,-0.057993266731501]],[[0.087137281894684,-0.024012681096792,-0.007018820848316],[0.040591791272163,0.045564331114292,0.0058105909265578],[0.029977915808558,0.022969363257289,0.022871401160955]],[[0.072877682745457,-0.019143106415868,-0.066808849573135],[0.070304080843925,0.090289205312729,0.11214324086905],[-0.01255545578897,0.095429159700871,0.051841698586941]],[[0.033742260187864,0.041437212377787,0.0088677098974586],[0.011449362151325,0.051956959068775,-0.002210007281974],[0.05447581410408,0.02683044411242,0.072858989238739]],[[0.01546842418611,0.079155549407005,0.04193664714694],[0.021729718893766,0.030886489897966,0.010215491056442],[-0.039963345974684,0.077803298830986,-0.027131834998727]],[[-0.019728871062398,-0.027331067249179,0.018750598654151],[0.042874481528997,0.018816690891981,0.039399925619364],[-0.014810459688306,-0.068112231791019,-0.14159150421619]],[[-0.063476249575615,0.01503081060946,-0.053246542811394],[-0.076186589896679,-0.016829600557685,0.010178952477872],[0.081668369472027,0.0098844477906823,0.035967033356428]],[[-0.16538526117802,-0.016127867624164,-0.062869407236576],[-0.096032902598381,-0.097437500953674,0.064648613333702],[-0.049688626080751,-0.035738386213779,0.084988497197628]],[[0.056455310434103,-0.029370076954365,0.028829807415605],[0.042138904333115,-0.07772670686245,-0.010616381652653],[-0.087500140070915,0.0027559308800846,-0.051883790642023]],[[-0.011935244314373,-0.057251919060946,0.029149107635021],[-0.096103318035603,0.0095352530479431,-0.12139201164246],[-0.016406813636422,0.0021553558763117,-0.0096194809302688]],[[0.0032859002240002,-0.045728616416454,-0.051867749541998],[0.058167558163404,0.040846720337868,0.044507205486298],[0.0003614335146267,0.057567607611418,0.11881944537163]],[[-0.037456773221493,-0.013419580645859,-0.05483566224575],[0.026970127597451,-0.034682117402554,-0.021956263110042],[0.042194645851851,-0.00099549419246614,0.04759694263339]],[[-0.15391999483109,-0.1216122508049,-0.10499931871891],[0.051530051976442,-0.0084568681195378,-0.059658359736204],[-0.008402188308537,0.12481214106083,0.026587836444378]],[[-0.067319132387638,-0.049178697168827,-0.07294624298811],[-0.041883520781994,-0.021931871771812,0.044378541409969],[0.055126491934061,0.076579615473747,0.043564647436142]],[[0.066987864673138,0.027395622804761,-0.036202300339937],[-0.012620610184968,-0.031539175659418,0.045120973140001],[0.030908452346921,-0.057967867702246,-0.049044709652662]],[[0.062309611588717,0.061643809080124,-0.059515591710806],[-0.16106805205345,0.04522842913866,-0.15973494946957],[0.061624083667994,-0.042686741799116,-0.10781479626894]],[[-0.056285753846169,-0.011688711121678,0.085799813270569],[-0.085130110383034,-0.052676074206829,0.085436291992664],[-0.068209074437618,-0.12198340892792,-0.062585651874542]],[[-0.02025680616498,-0.018679676577449,-0.041003372520208],[0.099300876259804,-0.14305399358273,0.020879613235593],[0.056592959910631,-0.00079184799687937,-0.0067619713954628]],[[0.024373723194003,0.026558456942439,0.037085186690092],[-0.00070398248499259,-0.070202015340328,-0.045212671160698],[0.00084117881488055,0.053884118795395,-0.0082715321332216]],[[-0.011885126121342,-0.055780228227377,-0.078193053603172],[-0.0062918891198933,-0.054918181151152,-0.064158208668232],[-0.014784879051149,-0.075150974094868,0.056554351001978]],[[-0.026073694229126,-0.015835430473089,0.0095804650336504],[0.020741982385516,-0.010838431306183,-0.016753850504756],[-0.036306608468294,0.11760910600424,-0.0047510019503534]],[[0.12587250769138,0.025726856663823,-0.024672517552972],[0.04690869525075,-0.0016989132855088,-0.0045015593059361],[0.088989861309528,-0.049577351659536,0.010160261765122]],[[0.004275546874851,-0.013109341263771,-0.021995646879077],[-0.00029387642280199,0.0067260190844536,-0.010246972553432],[0.013090439140797,0.0092942416667938,0.033398490399122]],[[-0.026466198265553,-0.018851796165109,0.0043552070856094],[-0.025333154946566,0.040277954190969,0.13071389496326],[-0.021765686571598,0.021821172907948,0.021647850051522]],[[0.1190822571516,0.0016480276826769,-0.019621308892965],[-0.059580475091934,-0.048460528254509,-0.076016291975975],[0.021797049790621,-0.057545848190784,-0.32652533054352]],[[-0.16463926434517,-0.052211552858353,0.028356678783894],[0.093910425901413,0.010620722547174,-0.016588756814599],[-0.077183596789837,-0.033728171139956,0.008310898207128]],[[-0.0040902025066316,-0.0014470458263531,0.0034011453390121],[-0.0013769206125289,0.034497871994972,0.005272391717881],[-0.059819143265486,0.026021108031273,-0.0032744354102761]]],[[[0.0038732085376978,-0.05245228484273,0.0084141297265887],[-0.04554732516408,0.0752834379673,0.074791200459003],[-0.0010000120382756,-0.038378838449717,-0.005495029501617]],[[0.0094546973705292,-0.029252229258418,-0.052983749657869],[-0.0048410538583994,-0.094494253396988,0.021797209978104],[-0.036484595388174,-0.038345854729414,0.002922348678112]],[[-0.055530667304993,0.043074499815702,0.026747152209282],[0.030837509781122,0.0033930777572095,0.059534970670938],[-0.12402042746544,-0.14999671280384,-0.012127159163356]],[[0.024863746017218,-0.031878359615803,0.026936512440443],[0.016646016389132,0.073862962424755,-0.0085298186168075],[-0.038165155798197,-0.0045282770879567,0.055329490453005]],[[-0.026960654184222,0.0025498864706606,-0.01710101403296],[0.0058205062523484,-0.044754538685083,-0.013044646009803],[0.049868788570166,0.047339085489511,0.03674964979291]],[[-0.045896165072918,0.00028090222622268,0.03588468208909],[0.0023194062523544,0.086718060076237,0.0092212809249759],[-0.076228715479374,-0.10378965735435,0.086296185851097]],[[-0.0081060165539384,0.028564017266035,-0.051679749041796],[-0.072658576071262,-0.066288262605667,-0.014949354343116],[-0.071280546486378,0.058724649250507,0.0061063393950462]],[[0.038310121744871,0.0037889517843723,0.019676879048347],[-0.045395407825708,0.058744225651026,-0.071789994835854],[0.0081904111430049,-0.019985662773252,0.044562138617039]],[[0.0011102285934612,-0.010356904938817,-0.0044727348722517],[-0.02044122107327,-0.029628595337272,-0.031999424099922],[0.067394636571407,0.020690599456429,-0.024617742747068]],[[0.0039313570596278,0.052723072469234,-0.083791255950928],[-0.0052303159609437,-0.0037370063364506,0.0035459252540022],[-0.046142648905516,-0.002063539577648,-0.015887012705207]],[[0.040712252259254,0.059267461299896,-0.0063736946322024],[-0.065615370869637,-0.042023818939924,-0.063637472689152],[-0.013607318513095,-0.035924009978771,-0.0098149506375194]],[[-0.0027877159882337,-0.0042276438325644,0.018341060727835],[0.083841763436794,0.046988245099783,0.054014462977648],[-0.08807797729969,0.012037238106132,-0.054123520851135]],[[0.011048814281821,0.052456062287092,0.048309754580259],[0.014508496969938,-0.016746232286096,-0.11327709257603],[-0.084950685501099,-0.071180887520313,-0.020703621208668]],[[-0.0023067693691701,-0.044637326151133,0.022416295483708],[-0.0021846878807992,-0.036576695740223,-0.043787829577923],[0.00084079243242741,0.011616961099207,0.02846959233284]],[[0.025472851470113,-0.0046434286050498,-0.026573173701763],[0.0033068582415581,0.019545909017324,-0.013474208302796],[0.01186307426542,-0.12262522429228,-0.075767040252686]],[[0.034005537629128,0.013974781148136,0.1018608212471],[-0.030321838334203,0.030887521803379,0.097185306251049],[0.0065074032172561,0.066775418817997,-0.026607094332576]],[[-0.0087658427655697,0.0023138641845435,0.053655363619328],[-0.033594094216824,0.027122987434268,0.0074269506148994],[0.055214017629623,-0.043674122542143,0.0038923188112676]],[[0.025872901082039,-0.0020763939246535,0.053818818181753],[0.020036824047565,-0.11501008272171,-0.046214550733566],[-0.093457154929638,0.088575959205627,-0.041280817240477]],[[0.006910277530551,0.025633774697781,-0.044798243790865],[0.0088779870420694,-0.042110901325941,-0.1085559502244],[-0.074000254273415,-0.094923436641693,-0.040956366807222]],[[-0.0045899325050414,-0.028956508263946,0.064561121165752],[0.029907558113337,-0.045799102634192,0.021710241213441],[0.041849080473185,-0.036705046892166,-0.018189735710621]],[[-0.025141961872578,0.012374336831272,0.043358538299799],[0.019245531409979,-0.039436656981707,-0.044832594692707],[-0.0053064273670316,0.034099947661161,-0.052365738898516]],[[-0.025040289387107,-0.02979445271194,-0.025422897189856],[-0.041179098188877,0.099783256649971,0.04403829947114],[0.048593860119581,-0.043731994926929,0.013526449911296]],[[-0.029500471428037,0.046664468944073,0.025631975382566],[0.010708081535995,0.0088811293244362,-0.026963422074914],[-0.012077678926289,-0.021838711574674,0.021980265155435]],[[0.069099046289921,0.072048045694828,0.044218633323908],[0.093093238770962,0.063457295298576,-0.025349913164973],[0.026167502626777,0.024396531283855,0.052974116057158]],[[0.022790966555476,0.02202613838017,-0.046877652406693],[0.027069006115198,-0.0055186487734318,-0.016869628801942],[0.020649828016758,-0.084536179900169,-0.008373249322176]],[[0.012764132581651,-0.058729808777571,0.042291570454836],[0.0095684891566634,-0.017936911433935,0.018872160464525],[0.0023470954038203,-0.030209917575121,0.060104012489319]],[[-0.0042749983258545,0.03722557425499,0.036987941712141],[-0.063269093632698,0.12609754502773,0.09182170778513],[-0.02787466160953,0.00088150153169408,-0.031234122812748]],[[0.029245911166072,-0.021054120734334,-0.027260901406407],[-0.045107670128345,0.0045713311992586,-0.06980699300766],[0.031272578984499,0.030968271195889,0.071266673505306]],[[-0.11028443276882,-0.033722300082445,-0.044900450855494],[-0.011410526931286,0.028919328004122,0.017533121630549],[-0.083814553916454,-0.00095411017537117,0.037946730852127]],[[0.043969046324492,-0.023508558049798,-0.052394285798073],[0.028922265395522,0.037681505084038,0.023155154660344],[0.056972183287144,-0.0024073217064142,-0.024100558832288]],[[-0.035641204565763,-0.073382899165154,-0.036544118076563],[-0.00010325406765332,0.038480065762997,0.0039329482242465],[-0.063527218997478,-0.022476218640804,-0.096579201519489]],[[-0.0028452191036195,0.020503621548414,0.095733441412449],[0.041921053081751,0.019909333437681,0.040289014577866],[-0.050127573311329,0.027484191581607,-0.035354640334845]],[[0.0021342746913433,-0.0036893314681947,0.026863623410463],[0.024292701855302,-0.039757590740919,0.050142027437687],[-0.047314278781414,0.0032702947501093,0.013823092915118]],[[-0.013438140973449,0.064499504864216,-0.00029320837347768],[0.017771339043975,0.022638415917754,-0.059713967144489],[-0.064516089856625,0.045476879924536,0.0079679032787681]],[[-0.063652075827122,0.067202463746071,-0.040977131575346],[-0.0055284653790295,-0.02898171916604,0.053434107452631],[-0.052054863423109,0.00063281267648563,0.0076100220903754]],[[-0.12504164874554,0.088667541742325,0.013032020069659],[-0.021689388900995,0.053895525634289,0.084967061877251],[-0.072428867220879,0.029287751764059,0.015789750963449]],[[0.038971770554781,-0.070718571543694,-0.017048085108399],[-0.011090596206486,0.0053230561316013,-0.033585585653782],[-0.023962335661054,0.10934446007013,-0.017997635528445]],[[0.036362450569868,0.044989954680204,0.033169090747833],[-0.080021671950817,-0.0026950743049383,-0.030875042080879],[0.012166575528681,0.023520544171333,0.030473124235868]],[[-0.097328156232834,-0.037882566452026,-0.033234748989344],[-0.011703937314451,-0.0032050530426204,-0.022141579538584],[0.0037059325259179,-0.0054873796179891,-0.0010438046883792]],[[0.055350076407194,0.049078781157732,-0.0070853536017239],[-0.030632777139544,-0.0051207221113145,0.023854812607169],[-0.051323726773262,-0.012678866274655,0.019571391865611]],[[0.029692595824599,0.0024913104716688,0.038888771086931],[-0.067205458879471,0.02109545096755,0.068806789815426],[-0.024486230686307,-0.050080623477697,0.062726005911827]],[[0.035820081830025,0.01859874650836,-0.046617213636637],[-0.015865918248892,-0.063083551824093,-0.0062352404929698],[0.022203888744116,-0.007426846306771,0.056549493223429]],[[-0.010393602773547,0.037275798618793,0.046879470348358],[0.0061479839496315,0.035037528723478,0.018705803900957],[-0.016411121934652,-0.03112923912704,-0.11078353226185]],[[0.039451368153095,-0.050621658563614,-0.0037744182627648],[-0.055679976940155,0.055887904018164,-0.0287562943995],[-0.047962602227926,-0.0093805734068155,-0.029950251802802]],[[-0.033005844801664,-0.031961143016815,-0.0042427564039826],[0.02541277371347,-0.03327027708292,0.037719011306763],[0.042825996875763,-0.069536089897156,0.10934215784073]],[[-0.018911188468337,-0.090660341084003,0.0010315546533093],[0.04078758507967,0.034810874611139,0.0017497703665867],[-0.032500632107258,-0.061271898448467,-0.10014703124762]],[[-0.052670102566481,-0.027787847444415,-0.029695630073547],[0.020418684929609,0.066393353044987,0.051561441272497],[0.07675363868475,0.01956563256681,0.021252542734146]],[[0.055434390902519,-0.016831569373608,-0.0078141111880541],[0.070648692548275,-0.043536141514778,-0.069851882755756],[0.04738063365221,-0.076342172920704,-0.011802124790847]],[[-0.1280276030302,0.031555879861116,-0.0092028602957726],[0.018546085804701,-0.078718274831772,0.042850993573666],[0.039157450199127,0.0080502182245255,-0.029838407412171]],[[0.012323685921729,0.050799507647753,0.035534415394068],[0.077993370592594,-0.076783299446106,-0.10887628793716],[0.056058887392282,-0.034484930336475,0.042130079120398]],[[-0.021882535889745,-0.013189962133765,-0.0099666211754084],[-0.045749947428703,0.048912700265646,-0.066982306540012],[-0.025275679305196,-0.017983362078667,0.0077274711802602]],[[0.064259625971317,-0.032295245677233,-0.040707025676966],[0.038039043545723,0.023963630199432,0.028488146141171],[0.067436710000038,0.06567145884037,0.021771486848593]],[[0.11978739500046,0.081919141113758,-0.06090422719717],[-0.055598378181458,-0.086109772324562,-0.12179861217737],[-0.046337258070707,-0.044224835932255,-0.034115251153708]],[[-0.030778627842665,-0.0088369389995933,0.059053909033537],[-0.019170332700014,-0.029493728652596,-0.032167602330446],[-0.018244555220008,-0.053977154195309,0.059954855591059]],[[-0.0090611977502704,0.059834286570549,-0.024520717561245],[0.040930099785328,-0.060300957411528,-0.023276880383492],[0.0045323534868658,0.020414706319571,0.0037615210749209]],[[0.0082406206056476,0.00075767724774778,-0.058439161628485],[-0.0025791835505515,-0.0088313492015004,-0.028729274868965],[0.036093652248383,0.047657888382673,0.012373468838632]],[[0.030234027653933,0.03343952819705,0.057675704360008],[-0.035385988652706,-0.0085059963166714,0.050809733569622],[-0.044554360210896,-0.046105846762657,0.0045404294505715]],[[0.028576895594597,0.0029844644013792,-0.0059175440110266],[-0.0072609367780387,-0.043366987258196,0.016005057841539],[-0.038512576371431,-0.062519192695618,0.04633167013526]],[[0.070867009460926,0.024206532165408,0.049740843474865],[-0.014454244635999,0.06301511824131,0.0040659294463694],[0.02034448646009,0.037495736032724,-0.011195580475032]],[[-0.0064802067354321,0.031901650130749,-0.019995944574475],[-0.015690535306931,0.05756288766861,-0.019633360207081],[-0.0076926294714212,0.018243564292789,-0.020726751536131]],[[0.008290040306747,-0.021062213927507,-0.063974589109421],[0.0012378046521917,-0.029008653014898,-0.016153356060386],[-0.034448273479939,-0.018803253769875,-0.044431522488594]],[[-0.02451391890645,0.10848144441843,0.016809647902846],[-0.0089153572916985,-0.021470839157701,-0.012461364269257],[-0.12618952989578,0.0026635823305696,0.034141086041927]],[[-0.048234101384878,-0.026577584445477,0.014699690043926],[-0.030600724741817,-0.023316401988268,0.02300501614809],[0.061099782586098,0.067434974014759,0.037233423441648]],[[0.025988269597292,0.06779919564724,-0.02323485724628],[-0.11230214685202,-0.036918975412846,-0.11211424320936],[0.0074991462752223,0.0059662209823728,0.0046517727896571]]],[[[0.02997319214046,-0.01515362970531,0.056651249527931],[-0.015018393285573,0.066209934651852,0.043164048343897],[-0.0036647019442171,-0.0093616787344217,-0.039613071829081]],[[0.023879261687398,0.047390043735504,-0.035624973475933],[0.025530865415931,-0.0033575384877622,-0.03597616404295],[0.016716957092285,-0.028476912528276,-0.0065284613519907]],[[-0.09303030371666,0.010750593617558,0.048235919326544],[-0.027871446684003,-0.025992035865784,0.046670760959387],[-0.07645308226347,-0.031368609517813,0.013919003307819]],[[-0.074928127229214,-0.077024556696415,0.057497195899487],[0.013479414395988,-0.0047310572117567,0.037986639887094],[0.00050691730575636,0.027282919734716,-0.025878194719553]],[[-0.036095920950174,0.016583178192377,-0.024145297706127],[-0.067383535206318,-0.068287141621113,-0.17684262990952],[-0.017931658774614,-0.0067616403102875,-0.16014106571674]],[[-0.034798014909029,-0.082605838775635,-0.089200645685196],[0.04117388650775,-0.097037851810455,-0.00066720071481541],[0.0042920834384859,-0.060314487665892,0.12197346240282]],[[-0.027998680248857,0.0036866534501314,0.034865617752075],[-0.0044075767509639,0.144312530756,0.034293580800295],[0.00055769365280867,-0.00079602369805798,0.04309730604291]],[[0.026049971580505,-0.029712807387114,-0.02318630181253],[-0.037345614284277,-0.0053726574406028,-0.033632796257734],[-0.042581144720316,-0.068007878959179,0.030271561816335]],[[0.096246547996998,-0.06772767752409,0.087065733969212],[-0.027270182967186,0.016774900257587,0.0161575935781],[-0.0010202152188867,0.022418323904276,0.04131181910634]],[[-0.017988784238696,-0.0092497374862432,0.010285963304341],[-0.016509059816599,0.033030163496733,0.02079152315855],[-0.0073679103516042,-0.021119678393006,0.00058059673756361]],[[-0.10030329227448,-0.052027519792318,-0.0034757449757308],[-0.022828698158264,-0.052199624478817,0.036505114287138],[0.015320104546845,0.042068842798471,-0.023618059232831]],[[0.039084956049919,0.0097908405587077,-0.0043870131485164],[0.12645760178566,-0.0039625815115869,-0.018968224525452],[-0.037236094474792,0.073239177465439,0.051708810031414]],[[-0.012890797108412,-0.0061724409461021,0.0079556424170732],[-0.070461273193359,-0.053228721022606,-0.023865770548582],[-0.083070240914822,0.039790239185095,-0.035244792699814]],[[0.02348193898797,0.042248673737049,0.053028490394354],[-0.035028181970119,-0.0058486582711339,0.041898563504219],[0.026133837178349,-0.048570740967989,-0.016277063637972]],[[0.0087299216538668,0.023914074525237,-0.052241161465645],[-0.058692272752523,0.051717225462198,-0.021278178319335],[-0.021060785278678,0.091914586722851,-0.012208996340632]],[[0.042270068079233,-0.056796934455633,0.024113932624459],[0.019835855811834,-0.037887889891863,0.032740011811256],[0.10837198793888,-0.057695303112268,0.023207070305943]],[[0.046407930552959,0.046479444950819,-0.0065848724916577],[0.034174438565969,-0.050606571137905,0.033932343125343],[0.017549550160766,-0.059855364263058,-0.0019365861080587]],[[0.029576430097222,-0.048665568232536,-0.040254525840282],[0.019811438396573,-0.0441341586411,0.0094351936131716],[-0.023663658648729,0.047064639627934,-0.082350306212902]],[[0.046406377106905,-0.061672538518906,0.026108659803867],[0.027040319517255,0.054856963455677,-0.046341951936483],[0.010820505209267,-0.038022674620152,-0.013240909203887]],[[-0.077292755246162,0.041824374347925,0.046477545052767],[-0.061519183218479,0.066036850214005,0.040347304195166],[-0.0097001818940043,0.012752174399793,-0.025811363011599]],[[-0.049555115401745,-0.039408568292856,-0.093356467783451],[-0.0046033319085836,-0.0064771152101457,-0.019936796277761],[-0.054336633533239,-0.01483962405473,0.044947024434805]],[[7.7755641541444e-05,0.013498845510185,0.077916599810123],[0.030027315020561,-0.0039928425103426,-0.0094922855496407],[-0.022896576672792,0.016648901626468,-0.025888919830322]],[[0.09822028875351,-0.12650443613529,-0.020311526954174],[-0.031185319647193,0.037397999316454,-0.032795649021864],[-0.027119843289256,0.069268368184566,0.036550719290972]],[[0.056462902575731,0.12503336369991,0.19687384366989],[0.10397233814001,0.0080747157335281,0.11426404863596],[0.094528906047344,-0.022695358842611,0.089913226664066]],[[0.0051995846442878,0.086017750203609,0.05299175158143],[0.034592621028423,-0.044215407222509,-0.027830695733428],[0.010993327014148,0.03606428578496,0.0022784171160311]],[[0.013734836131334,0.065627813339233,0.0094210039824247],[-0.044112458825111,0.093044206500053,-0.004875807557255],[0.002299657324329,0.087716445326805,-0.017671322450042]],[[0.010175603441894,-0.111826851964,0.023942736908793],[-0.057751599699259,0.026488043367863,0.084981746971607],[0.0074124322272837,0.13094428181648,0.098435401916504]],[[0.052462413907051,-0.052502699196339,-0.032196462154388],[0.046129282563925,-0.086265958845615,0.055671140551567],[0.022318283095956,0.019099179655313,-0.001575629459694]],[[0.066009312868118,0.037970643490553,0.037007719278336],[0.010073979385197,0.054739080369473,0.023730764165521],[0.031698025763035,0.023937523365021,-0.031098695471883]],[[0.046422854065895,-0.035500444471836,-0.094557143747807],[0.0037327809259295,0.016572441905737,-0.028946725651622],[0.024288050830364,-0.010608076117933,0.03440447896719]],[[-0.022452956065536,-0.0052884463220835,0.04047143086791],[-0.018550466746092,0.087156869471073,0.05067278817296],[0.079627886414528,-0.031142739579082,0.039618492126465]],[[0.02273977175355,0.0033933795057237,-0.023229585960507],[-0.011728022247553,-0.0068591744638979,0.0024651745334268],[-0.06362260133028,-0.097698025405407,-0.047915395349264]],[[-0.024041311815381,-0.068334117531776,-0.047323789447546],[0.0209955368191,-0.033631417900324,0.031866241246462],[0.039658840745687,0.046865973621607,0.021957715973258]],[[-0.03692963346839,0.1216848269105,0.060993894934654],[-0.076374262571335,0.034865975379944,0.01535636652261],[0.064568161964417,0.029523709788918,0.0047702258452773]],[[-0.022743754088879,0.07081364095211,0.065758444368839],[-0.031930737197399,0.046078264713287,0.039185613393784],[-0.047886714339256,0.037583701312542,0.044993374496698]],[[0.022637946531177,-0.030899651348591,0.023598486557603],[0.0038424485828727,-0.0094597954303026,-0.066929861903191],[0.0054405461996794,0.015190648846328,0.0087023200467229]],[[-0.022737627848983,0.02100232988596,0.016725482419133],[-0.0014123985311016,0.071744650602341,-0.094764553010464],[0.015781534835696,0.043740533292294,-0.013508358970284]],[[-0.017167674377561,0.027997007593513,0.016606697812676],[0.020759578794241,0.041455689817667,-0.024829786270857],[0.067021206021309,0.055434286594391,0.087555833160877]],[[-0.0027748225256801,0.022459987550974,0.069962166249752],[0.012755899690092,0.034243252128363,0.046070456504822],[-0.00020816749020014,-0.033246286213398,0.17364293336868]],[[0.019053423777223,0.04905417189002,0.10192171484232],[-0.023822946473956,-0.004103671759367,0.051929783076048],[-0.0029575549997389,0.070772260427475,0.088095255196095]],[[0.065707325935364,-0.090021625161171,0.047358833253384],[0.060138929635286,0.0089093605056405,0.040862865746021],[0.0574881285429,-0.007097830530256,0.011198669672012]],[[-0.05635966733098,-0.042779706418514,-0.040439512580633],[-0.0051290513947606,-0.068260446190834,0.022039407864213],[-0.019345551729202,-0.10612519085407,0.066508643329144]],[[0.063903152942657,0.043778192251921,-0.10811848938465],[-0.067154720425606,-0.0027450621128082,-0.015351561829448],[-0.07268300652504,-0.068164527416229,-0.011467737145722]],[[0.069944649934769,-0.064216017723083,-0.016380988061428],[0.020042449235916,-0.06032295152545,0.003796533215791],[0.07271945476532,0.019222224131227,0.037049051374197]],[[-0.1681243032217,-0.039809349924326,-0.0020895968191326],[0.0020984131842852,-0.075376771390438,0.0038393253926188],[0.14893609285355,0.00068591552553698,-0.047136582434177]],[[0.044322524219751,-0.060449741780758,0.069768562912941],[0.083300404250622,0.046948935836554,0.087270647287369],[-0.07661896944046,-0.040302790701389,-0.025197891518474]],[[-0.064649894833565,0.042842842638493,-0.043876528739929],[-0.015121890231967,0.058065559715033,0.10136874765158],[-0.023758038878441,0.11722175776958,0.037705652415752]],[[0.043407246470451,0.022464998066425,-0.050105810165405],[-0.010367285460234,-0.038997538387775,-0.1309028416872],[0.0011696671135724,0.026676323264837,0.0017105232691392]],[[0.076050333678722,-0.056109625846148,0.0036204243078828],[-0.034932650625706,0.077825255692005,0.056638419628143],[0.011906424537301,0.025898341089487,0.01398700941354]],[[0.03486106544733,0.025438083335757,-0.0083675319328904],[0.0087892608717084,-0.035349298268557,0.0021333899348974],[0.0077810897491872,-0.068362027406693,-0.016669157892466]],[[-0.064731657505035,-0.058746449649334,-0.051221750676632],[0.064765624701977,-0.049773689359426,0.017201542854309],[0.00056179263629019,0.025958143174648,0.036008175462484]],[[0.013753512874246,-0.03024329431355,-0.038684319704771],[0.093082249164581,0.014908093959093,-0.0093798600137234],[0.022902052849531,0.027844866737723,-0.054475553333759]],[[-0.023581331595778,0.033518597483635,-0.052240587770939],[-0.038817200809717,-0.091700419783592,-0.02363071963191],[0.027213398367167,0.047177389264107,-0.010529968887568]],[[-0.040179394185543,-0.10173920542002,0.067633375525475],[-0.041254930198193,-0.06916418671608,0.0042555760592222],[-0.0574503056705,-0.021364411339164,-0.042008236050606]],[[-0.0083832927048206,-0.0044991807080805,-0.0067564337514341],[-0.015095937997103,0.023424504324794,-0.0718854367733],[-0.040187519043684,-0.053177129477262,0.019814547151327]],[[-0.00056965689873323,0.014529029838741,-0.083458714187145],[-0.010849880054593,-0.0022361541632563,-0.058753993362188],[0.040425848215818,0.0047330688685179,-0.038297545164824]],[[-0.059874586760998,-0.043463513255119,0.013315348885953],[-0.026378726586699,-0.017316348850727,-0.027433743700385],[-0.088809370994568,-0.022087123245001,0.023043802008033]],[[-0.024686703458428,-0.03196843713522,-0.024491624906659],[-0.087971113622189,-0.15352337062359,0.11431533098221],[0.003326561069116,-0.091744691133499,0.050154790282249]],[[-0.051094513386488,0.086684592068195,0.050846830010414],[0.14850625395775,-0.014183701947331,-0.081354930996895],[0.045764066278934,0.11654886603355,0.02769417501986]],[[0.031889230012894,-0.016954323276877,-0.0007017835159786],[0.031661227345467,-0.011440564878285,0.0069872788153589],[-0.030217994004488,0.0012698190985247,0.015576062723994]],[[-0.017181562259793,0.044642113149166,-0.00070259411586449],[0.0089629609137774,0.0026486769784242,0.0036850196775049],[-0.010284923017025,-0.034113477915525,0.020488662645221]],[[-0.064309999346733,-0.027053771540523,0.019025072455406],[0.023029193282127,-0.0412662550807,-0.055534787476063],[0.078823484480381,0.046299729496241,0.0054079229012132]],[[-0.0058839148841798,-0.080641850829124,-0.066124364733696],[-0.015968330204487,-0.027725335210562,0.053555846214294],[-0.023642579093575,0.030521279200912,0.012779494747519]],[[-0.052737951278687,0.0066803698427975,-0.02413066662848],[-0.0081221433356404,-0.086561433970928,-0.0091500971466303],[0.031161028891802,0.0094587747007608,-0.0049673803150654]]],[[[-0.0047506890259683,-0.020179254934192,-0.0038778744637966],[0.016549417749047,0.055946134030819,0.019023805856705],[0.05565844476223,0.10574136674404,0.084139376878738]],[[-0.039435964077711,-0.0079414518550038,0.035642940551043],[0.058857124298811,0.013029267080128,0.048511885106564],[-0.0055975653231144,-0.052217353135347,-0.038189630955458]],[[-0.081694021821022,-0.018295269459486,0.014653739519417],[-0.11728730797768,-0.031545117497444,0.055510982871056],[-0.042905170470476,0.029153412207961,0.1100076213479]],[[0.094427146017551,-0.031622361391783,0.0093761272728443],[0.039566203951836,0.085303664207458,0.024673838168383],[0.020827515050769,-0.025302343070507,0.027817057445645]],[[-0.042500529438257,0.066460445523262,-0.00097686576191336],[-0.052052516490221,-0.017569506540895,0.040332037955523],[-0.029739283025265,0.033638760447502,0.04809545725584]],[[-0.034029744565487,0.018971215933561,0.078959174454212],[-0.013530343770981,-0.068537056446075,0.04932389035821],[0.027935249730945,-0.055638216435909,0.10771690309048]],[[0.021833198145032,0.026962229982018,0.055882170796394],[0.039805617183447,0.063612684607506,-0.049728363752365],[0.018267713487148,0.04789961501956,0.047569561749697]],[[0.015420099720359,0.047576546669006,-0.030607782304287],[0.063977509737015,0.088106267154217,0.0023952501360327],[-0.024776842445135,0.10371521115303,0.025972520932555]],[[0.065888591110706,-0.020402098074555,-0.01879471167922],[0.0030530099757016,0.02532315813005,0.00941426679492],[-0.074740298092365,0.050450060516596,0.010731857270002]],[[-0.050903826951981,-0.038970444351435,-0.0036902499850839],[-0.019363094121218,0.018774729222059,-0.0091333333402872],[-0.063030332326889,-0.080926902592182,-0.038697887212038]],[[0.044861119240522,-0.035957358777523,-0.11987493932247],[-0.098828591406345,0.044777452945709,0.029089177027345],[-0.0046070087701082,-0.021506590768695,0.00015263151726685]],[[-0.031285665929317,-0.045470535755157,-0.0039482940919697],[0.062035329639912,0.045634996145964,-0.018742237240076],[0.036494109779596,-0.0014621749287471,0.03166788443923]],[[0.020263420417905,0.095224395394325,-0.010634748265147],[0.062058344483376,-0.014118989929557,-0.026875494047999],[-0.018712127581239,-0.036532536149025,0.056374318897724]],[[-0.00035370222758502,-0.046121187508106,0.058234259486198],[-0.014820379205048,-0.019828785210848,0.05982207134366],[0.038619577884674,-0.11760462075472,0.024110881611705]],[[-0.067268162965775,-0.038435403257608,-0.0026092270854861],[-0.030599655583501,-0.022172503173351,0.083972819149494],[-0.050608079880476,0.028231905773282,0.11457888036966]],[[0.057905543595552,0.15195961296558,0.092390567064285],[-0.085426032543182,0.041831720620394,0.025949966162443],[0.0081489449366927,-0.010066747665405,0.065461218357086]],[[-0.039934854954481,-0.023434421047568,0.088534407317638],[-0.01359570864588,-0.05893998593092,0.023738468065858],[0.095070824027061,-0.029474703595042,0.068744964897633]],[[-0.045869864523411,0.05427124351263,0.12701241672039],[0.017450854182243,0.0070945643819869,0.0323197953403],[0.076928801834583,-0.037036821246147,-0.033760942518711]],[[-0.1908225864172,0.10063300281763,-0.0056475410237908],[-0.09419234842062,0.077610664069653,-0.035598434507847],[-0.049830134958029,0.10771705955267,-0.032417822629213]],[[-0.0031107154209167,-0.046675369143486,-0.0047397175803781],[-0.027890775352716,0.017386626452208,0.03308204934001],[-0.032415509223938,0.040862821042538,0.028503248468041]],[[-0.059051897376776,0.030342932790518,0.025286227464676],[-0.066692218184471,-0.063141390681267,0.0711639970541],[-0.014958667568862,0.0087328376248479,-0.0019901825580746]],[[-0.13355815410614,0.041448537260294,-0.018211223185062],[0.093736924231052,-0.0078925983980298,0.0093318019062281],[0.063147380948067,0.017813596874475,0.11035383492708]],[[0.069488041102886,0.0085578477010131,0.09175393730402],[0.054515041410923,-0.096536353230476,-0.041686374694109],[-0.0036968502681702,-0.026585275307298,-0.12069253623486]],[[0.041762568056583,0.021023293957114,0.056406170129776],[0.048560276627541,-0.0036535928957164,0.049350760877132],[0.068857066333294,0.044838134199381,0.08725044131279]],[[-0.046050298959017,0.0089742355048656,-0.057457704097033],[0.014944738708436,0.017562799155712,0.12505434453487],[-0.0019286897731945,0.039556123316288,-0.028704110532999]],[[0.012074599973857,-0.053227975964546,0.022263867780566],[0.00073878595139831,0.017483580857515,0.017340129241347],[0.022849136963487,0.047280825674534,-0.013349254615605]],[[-0.049443993717432,0.010391707532108,-0.010979153215885],[-0.12004024535418,-0.0034066108055413,-0.0073202424682677],[-0.017715131863952,-0.032318949699402,0.08933188021183]],[[-0.041495632380247,0.082802288234234,0.073520384728909],[-0.030022084712982,0.0066808788105845,0.074888676404953],[0.012911095283926,-0.023938093334436,0.025472776964307]],[[-0.02289180830121,0.0027788744773716,-0.043902914971113],[0.049284506589174,0.018684225156903,0.013126831501722],[-0.070721864700317,-0.045469027012587,0.077780671417713]],[[0.085733383893967,0.06706178188324,0.040386985987425],[0.09622647613287,0.072677627205849,0.0066351722925901],[0.071808837354183,0.067319937050343,-0.0042580235749483]],[[-0.031257249414921,-0.056151103228331,0.024382876232266],[0.021187264472246,0.089879013597965,0.052890803664923],[0.061244156211615,0.0080271223559976,-0.04129895195365]],[[-0.073877118527889,-0.11203183978796,-0.0051810769364238],[-0.054779019206762,-0.052285514771938,0.080538988113403],[-0.023996150121093,0.012750782072544,0.036723114550114]],[[0.026221727952361,0.0059654088690877,0.028532538563013],[-0.072939462959766,-0.024601368233562,0.014482818543911],[0.011699015274644,0.044221844524145,-0.065372429788113]],[[0.022409897297621,-0.097207069396973,-0.11201145499945],[-0.098907634615898,-0.18265137076378,-0.15477827191353],[0.060490965843201,0.0071663404814899,0.064602360129356]],[[-0.13206274807453,-0.033743668347597,0.08886606246233],[-0.1009145155549,0.052227754145861,0.0074034621939063],[-0.073433637619019,0.018137713894248,-0.019204529002309]],[[0.038502022624016,-0.0072288010269403,-0.0469667352736],[-0.10285833477974,-0.075889952480793,0.076770313084126],[0.02116921544075,-0.020865416154265,0.10151712596416]],[[0.12588050961494,-0.061400949954987,-0.0098800659179688],[0.094262592494488,-0.061146039515734,-0.041155371814966],[0.14724476635456,0.0071055623702705,0.068885758519173]],[[-0.09964245557785,-0.035941291600466,0.026132024824619],[-0.11494144797325,-0.018875487148762,-0.095148302614689],[0.047792267054319,0.049426015466452,0.057018090039492]],[[0.018330568447709,0.029664168134332,0.018637562170625],[0.079722955822945,-0.014339975081384,0.034099142998457],[-0.030972486361861,-0.013166210614145,0.040956936776638]],[[-0.1240089982748,-0.048101864755154,0.067828506231308],[-0.065056696534157,-0.067678108811378,0.019803795963526],[-0.037925343960524,0.00056026363745332,0.037437092512846]],[[-0.068633407354355,0.050423089414835,0.04166528955102],[-0.027545802295208,-0.026000028476119,-0.024892583489418],[0.0024696660693735,-0.056463785469532,0.087659671902657]],[[-0.043617814779282,-0.050504896789789,0.0061735482886434],[-0.021612994372845,-0.041160624474287,0.091830760240555],[-0.046603657305241,-0.094177909195423,0.08859033882618]],[[-0.030003450810909,-0.054829105734825,-0.0944479778409],[0.084083527326584,0.12011852860451,0.11457704752684],[0.059572357684374,0.086542457342148,-0.023680517449975]],[[-0.094379156827927,-0.020387347787619,-0.020825056359172],[0.055710207670927,0.059018895030022,0.02313787676394],[-0.061027515679598,0.029057648032904,-0.0023395512253046]],[[0.036647379398346,0.0078310891985893,-0.010425630025566],[-0.054263681173325,0.023967064917088,-0.060605853796005],[0.06446611136198,0.013992386870086,-0.0094317235052586]],[[0.0049804979935288,-0.030217435210943,-0.10460451990366],[0.039345752447844,0.053958434611559,-0.06308352202177],[0.012521485798061,-0.0015486514894292,-0.0096993846818805]],[[0.036302790045738,0.12903767824173,0.066242501139641],[-0.029467932879925,-0.12270824611187,0.044646337628365],[0.02789232134819,-0.021825345233083,0.031099297106266]],[[-0.025793811306357,-0.057807881385088,0.017801659181714],[0.044480547308922,-0.082342602312565,0.034618265926838],[-0.12069894373417,-0.019462928175926,-0.029351342469454]],[[0.00014719011960551,0.039866421371698,0.026341157034039],[-0.015204638242722,0.10169021040201,-0.077943839132786],[-0.036998596042395,-0.15985515713692,-0.17386849224567]],[[-0.062297742813826,0.024713912978768,0.011191040277481],[-0.014552166685462,0.023608148097992,0.070931144058704],[-0.076364859938622,-0.020976355299354,0.025704318657517]],[[0.025235017761588,0.0079881548881531,-0.056878674775362],[-0.040740124881268,0.0028168871067464,-0.053579676896334],[0.0076655056327581,0.046081077307463,0.034851893782616]],[[-0.062148574739695,0.01135609857738,0.094611980021],[-0.0017883544787765,0.072807975113392,-0.023240322247148],[0.04668802767992,0.072123758494854,-0.00453713349998]],[[-0.046681076288223,-0.077803075313568,0.010061725974083],[-0.0093659833073616,-0.0080673955380917,0.15099315345287],[0.027725536376238,0.061387233436108,0.10833664983511]],[[0.035341516137123,0.045528706163168,0.0085912179201841],[-0.077093578875065,-0.061941955238581,0.068082451820374],[-0.040985450148582,0.039484988898039,0.024002434685826]],[[0.032670702785254,-0.045503363013268,0.068857975304127],[0.01480894908309,0.041193120181561,0.067225947976112],[-0.17530755698681,0.012715708464384,0.013712394982576]],[[0.10576391965151,-0.021868579089642,0.0032362155616283],[-0.054746948182583,-0.046638559550047,-0.048767380416393],[-0.020128645002842,-0.023739514872432,-0.04273222014308]],[[0.019698275253177,-0.072784550487995,0.015169825404882],[-0.0093264672905207,0.0018389519536868,0.033122681081295],[0.099560275673866,0.040852356702089,0.076776713132858]],[[-0.00051560392603278,-0.03543508797884,-0.036881823092699],[0.0024540009908378,-0.042056191712618,-0.095639646053314],[0.053668826818466,0.071592442691326,-0.17144903540611]],[[-0.041825979948044,0.1451229006052,0.16795831918716],[0.032772459089756,0.10661546885967,0.070460297167301],[0.018395902588964,-0.071388028562069,-0.072251096367836]],[[0.03414361551404,0.06049245968461,0.016504492610693],[0.020311657339334,-0.016379276290536,-0.041827168315649],[0.0070225419476628,-0.068081103265285,-0.020784482359886]],[[-0.022814814001322,0.044585857540369,0.0074449926614761],[-5.7837678468786e-06,-0.089042127132416,0.069154612720013],[-0.10286033898592,0.056079484522343,-0.016556480899453]],[[-0.05303718149662,-0.031401768326759,0.063440747559071],[0.057783860713243,0.10403504222631,0.046436563134193],[-0.1186672821641,0.041021835058928,-0.047650273889303]],[[-0.0072277616709471,0.022497214376926,-0.0057127121835947],[0.011790519580245,-0.090990632772446,-0.025668414309621],[-0.040993150323629,0.045690447092056,-0.004294749815017]],[[0.063995346426964,0.01435614284128,-0.025706607848406],[0.0397086776793,-0.047827176749706,-0.066289745271206],[0.017899088561535,0.010004580952227,-0.0056485710665584]]],[[[-0.022881055250764,-0.020709021016955,0.031773712486029],[-0.027237303555012,0.074613660573959,0.041999913752079],[-0.02399324066937,0.10655807703733,0.10606387257576]],[[0.0085715614259243,-0.075960583984852,-0.07011403888464],[0.0030192213598639,-0.12207692861557,-0.21802014112473],[-0.083747431635857,-0.093537792563438,-0.18488450348377]],[[-0.048221755772829,0.047665629535913,0.09635616838932],[-0.20034891366959,0.0072696264833212,0.097337894141674],[-0.26002350449562,-0.097982183098793,0.039796531200409]],[[-0.029842678457499,-0.16215205192566,-0.12941837310791],[0.0067490311339498,-0.13975229859352,-0.20559357106686],[-0.091436848044395,-0.0007465272792615,-0.01606915704906]],[[-0.031486798077822,-0.016531791538,-0.022925993427634],[0.076504066586494,-0.025358470156789,0.087788291275501],[0.1120061352849,0.047901604324579,-0.022593144327402]],[[0.013921225443482,-0.071770451962948,0.00032269267830998],[-0.058872196823359,0.056503616273403,-0.015742303803563],[-0.052914626896381,-0.088820464909077,-0.096139810979366]],[[0.040624421089888,0.01199940405786,0.026543395593762],[0.0043202117085457,-0.053977005183697,0.0038250652141869],[-0.031258527189493,-0.056329250335693,-0.0076231835409999]],[[0.021034426987171,-0.30295360088348,-0.12902748584747],[0.016341667622328,-0.032247494906187,-0.28602197766304],[-0.074990339577198,-0.029516721144319,0.023356581106782]],[[0.068037986755371,0.0054809590801597,0.064231924712658],[0.00078780250623822,0.073365658521652,-0.11693912744522],[0.090174674987793,0.078353956341743,-0.064021378755569]],[[-0.094976954162121,-0.036956455558538,0.04137160629034],[0.012608668766916,-0.077682681381702,0.035979587584734],[-0.016773454844952,0.0016084187664092,-0.015126936137676]],[[-0.062184553593397,0.012783438898623,0.02062626928091],[-0.03793440759182,0.077968150377274,0.013859432190657],[-0.069647647440434,0.0088536255061626,0.040601976215839]],[[0.052779376506805,0.0018037625122815,0.0085510648787022],[0.13546249270439,0.07285300642252,-0.023887142539024],[0.18022111058235,0.19701762497425,0.058142088353634]],[[-0.0084297759458423,0.035756777971983,-0.089881591498852],[-0.0057728169485927,-0.019448488950729,-0.018732504919171],[0.032383367419243,0.037888895720243,-0.070450805127621]],[[-0.065800346434116,-0.0097846919670701,-0.11065512150526],[-0.12455275654793,-0.045494936406612,-0.13111548125744],[0.05045609921217,-0.00096227240283042,-0.071278013288975]],[[-0.065448313951492,-0.088942594826221,0.045566350221634],[0.014076846651733,-0.02468447946012,-0.10662753880024],[-0.063067734241486,0.043723914772272,-0.07575187087059]],[[0.034771006554365,-0.048292323946953,-0.076410256326199],[0.03923748806119,0.029035134240985,-0.028878780081868],[-0.099715009331703,0.068376325070858,0.01494699344039]],[[0.027222206816077,0.057325292378664,0.11294329166412],[-0.017232533544302,-0.035759884864092,0.10060384124517],[0.075931116938591,0.098955310881138,0.11058073490858]],[[0.018763300031424,-0.048977889120579,0.036796618252993],[0.025640651583672,-0.10748261213303,-0.092462964355946],[0.043523523956537,-0.1479873508215,-0.10412884503603]],[[0.0031782004516572,-0.029725080356002,-0.15187136828899],[-0.010313779115677,0.07259389013052,0.020016215741634],[-0.073894195258617,0.1019015237689,-0.10302921384573]],[[-0.0037872139364481,0.022752035409212,0.10514359921217],[-0.063197180628777,-0.021478706970811,0.088939927518368],[-0.076592072844505,-0.078659489750862,0.061725664883852]],[[-0.0063352370634675,-0.03997004032135,-0.25938993692398],[-0.095190957188606,-0.020274948328733,-0.18017832934856],[-0.028775839135051,-0.0085226129740477,-0.14063289761543]],[[-0.02204811014235,-0.048489663749933,-0.051798421889544],[-0.0050406800583005,-0.073139190673828,-0.074749290943146],[0.054431099444628,0.026100156828761,0.096228547394276]],[[-0.01566444709897,-0.036264784634113,0.045095074921846],[-0.014300477690995,-0.043074145913124,-0.0092637091875076],[-0.06244408339262,-0.14964711666107,-0.06954251229763]],[[-0.06501641869545,-0.046533692628145,0.079877935349941],[0.042211662977934,-0.010787025094032,0.11302303522825],[-0.026747517287731,-0.021307742223144,0.036010514944792]],[[-0.027604002505541,0.0073835584335029,0.01802771538496],[-0.027534380555153,-0.0960828140378,0.07056974619627],[0.017244281247258,-0.073432050645351,0.070982731878757]],[[-0.0048947087489069,-0.033749710768461,0.042516335844994],[-0.026091866195202,-0.057440154254436,-0.013105625286698],[0.01083239261061,0.023067617788911,0.004175862763077]],[[-0.0094097554683685,0.145527780056,0.044597756117582],[-0.019477797672153,0.024875016883016,0.036387618631124],[0.0050955424085259,0.098213791847229,0.0048067150637507]],[[-5.5815351515776e-05,-0.039485350251198,-0.11361897736788],[0.0089533319696784,-0.030510473996401,0.015102026052773],[0.06002251803875,0.072444461286068,-0.0031675528734922]],[[-0.021262785419822,-8.1397549365647e-05,0.081625066697598],[-0.027269501239061,-0.015235391445458,0.025248495861888],[0.096325732767582,0.075675636529922,0.033590458333492]],[[-0.013425940647721,-0.076498225331306,0.026065357029438],[-0.023623250424862,-0.0026342421770096,0.081273198127747],[-0.013837609440088,0.013713110238314,0.027305891737342]],[[0.0055325599387288,0.092857606709003,-0.054662518203259],[0.0080060847103596,-0.032005861401558,-0.010480826720595],[0.018268352374434,-0.047244012355804,-0.041576962918043]],[[-0.0034164825920016,-0.069547414779663,-0.035852435976267],[-0.099477477371693,0.018490996211767,-0.03153033182025],[0.1035148203373,-0.0087483050301671,0.043912302702665]],[[0.046650871634483,0.036404501646757,-0.0030310531146824],[-0.015966633334756,0.10048862546682,0.042907267808914],[-0.09711230546236,0.05522208660841,-0.012363522313535]],[[-0.11926186829805,-0.079680994153023,0.10203691571951],[0.013327856548131,-0.055714540183544,0.086779534816742],[-0.076941795647144,-0.036161728203297,-0.10463263094425]],[[0.039500374346972,-0.0847143009305,0.053480289876461],[0.025667078793049,-0.04822588711977,-0.0064086117781699],[-0.013002864085138,-0.063975423574448,-0.0057685542851686]],[[-0.083869054913521,-0.053707148879766,-0.290737003088],[-0.0028382909949869,0.01497741881758,-0.098523236811161],[-0.015592023730278,0.0066793439909816,0.018021740019321]],[[-0.038674037903547,0.085301004350185,0.085793904960155],[-0.021183963865042,-0.027228154242039,0.027378128841519],[-0.081498324871063,0.015762288123369,0.085241705179214]],[[-0.082632139325142,-0.038527652621269,-0.070336937904358],[-0.0079400092363358,-0.09773388504982,-0.062695398926735],[0.028226880356669,-0.046630825847387,-0.046573705971241]],[[-0.11819908022881,0.091691017150879,-0.022323381155729],[0.0026168490294367,0.020416919142008,0.05215211212635],[0.03879401832819,0.089834839105606,-0.11450459808111]],[[-0.1706168949604,0.071810089051723,-0.068933822214603],[-0.10833480209112,0.14186042547226,0.024219194427133],[-0.085990488529205,0.0219940636307,0.088898286223412]],[[0.063480898737907,0.00015631127462257,-0.0050499127246439],[0.063650146126747,-0.016779726371169,0.060502387583256],[-0.0056742844171822,-0.050611864775419,-0.062684029340744]],[[-0.066003300249577,-0.014783228747547,0.026878885924816],[-0.011659384705126,0.061401728540659,0.0088164117187262],[0.013582724146545,0.11031714826822,0.036847312003374]],[[-0.016385165974498,-0.021651994436979,-0.17345543205738],[-0.0077895298600197,0.099996030330658,0.10702432692051],[-0.11616992205381,0.044793501496315,-0.072790138423443]],[[0.068661734461784,-0.0097136795520782,0.066808506846428],[0.013759207911789,-0.034927438944578,-0.11351435631514],[-0.11961169540882,-0.027405371889472,0.10854572802782]],[[-0.089900620281696,-0.0070501058362424,0.062126774340868],[-0.028428936377168,0.037878539413214,0.046167906373739],[-0.17583768069744,-0.063413515686989,0.086793921887875]],[[-0.080816604197025,0.030709000304341,-0.020606501027942],[-0.099008128046989,0.063236325979233,0.079421743750572],[0.075604356825352,0.03751852363348,0.057096894830465]],[[-0.065047107636929,-0.061624627560377,-0.069165766239166],[-0.025943880900741,-0.016137480735779,-0.060095332562923],[-0.027330927550793,0.073285549879074,0.062194045633078]],[[-0.0089950300753117,-0.10184456408024,0.059963658452034],[-0.010907660238445,-0.018606597557664,-0.091437615454197],[-0.041407849639654,0.0042980294674635,0.0024072448723018]],[[-0.014612502418458,0.034097265452147,-0.069109082221985],[-0.063607357442379,0.052849508821964,-0.0077556036412716],[0.013502038083971,0.036604825407267,-0.056714657694101]],[[0.078368403017521,0.061544638127089,-0.003152706194669],[0.03143498301506,-0.057694654911757,-0.077034391462803],[0.11402199417353,-0.029381681233644,0.014388451352715]],[[0.011344274505973,-0.047815196216106,-0.03417269513011],[-0.022373009473085,-0.050141774117947,0.014710457995534],[0.023788396269083,0.024212148040533,-0.065180152654648]],[[0.066967345774174,-0.12123057246208,0.074865259230137],[-0.038527868688107,-0.040924061089754,0.059182368218899],[-0.10825418680906,0.10005799680948,0.096172168850899]],[[-0.07911704480648,-0.017815770581365,-0.10838562995195],[-0.10105080157518,-0.07818865776062,0.0022464653011411],[-0.048701170831919,-0.065163999795914,-0.049951381981373]],[[0.036510415375233,-0.0042957221157849,0.080013066530228],[0.022671114653349,-0.06589362770319,0.00022278624237515],[-0.047269620001316,-0.020393181592226,0.0050804219208658]],[[-0.0057811690494418,-0.090052075684071,0.05869834497571],[-0.061661504209042,-0.080882400274277,-0.013533176854253],[-0.12014462053776,-0.038623712956905,-0.18924863636494]],[[0.11364818364382,-0.047132533043623,-0.35754728317261],[0.056297190487385,-0.0011454077903181,-0.059441711753607],[0.13829526305199,0.022255709394813,0.0033899010159075]],[[-0.026067273691297,0.048218321055174,0.034699186682701],[-0.036522563546896,0.051235508173704,0.010494844987988],[0.0205506272614,-0.071442969143391,-0.035867884755135]],[[-0.028109211474657,0.063673831522465,0.050440318882465],[-0.081930443644524,-0.1555420011282,-0.20355147123337],[0.0082424562424421,-0.14027805626392,-0.054148096591234]],[[0.045989774167538,0.078227356076241,0.096021384000778],[0.065880388021469,0.063842214643955,0.034102872014046],[0.077115066349506,0.033346123993397,0.13114142417908]],[[0.034896239638329,-0.07866907119751,-0.11869498342276],[0.11309580504894,0.021322522312403,-0.068746164441109],[0.045233011245728,0.100302092731,-0.047537494450808]],[[-0.015279757790267,0.00015036997501738,-0.062417682260275],[0.059000492095947,-0.016014011576772,-0.022874748334289],[0.11324883252382,0.0992476567626,-0.098528303205967]],[[0.097217381000519,0.13244484364986,0.064861610531807],[-0.010150370188057,0.074840568006039,-0.0032958670053631],[-0.095447011291981,-0.01613549888134,4.294688187656e-05]],[[-0.02090597897768,-0.04287227243185,0.039752811193466],[-0.097529858350754,-0.067078523337841,0.057951163500547],[-0.011010910384357,-0.12858438491821,-0.091645106673241]],[[0.092830196022987,0.0047006634995341,-0.11315127462149],[0.075291126966476,0.072048917412758,0.014773290604353],[-0.079743340611458,0.043889049440622,0.022386675700545]]],[[[-0.016962919384241,-0.049293398857117,0.042334143072367],[-0.04099590331316,0.068081192672253,0.0060406518168747],[0.079488277435303,-0.033743429929018,-0.03931638225913]],[[-0.076458387076855,0.030117407441139,-0.025807056576014],[-0.059249669313431,0.020810127258301,0.045811608433723],[-0.033320769667625,-0.078549310564995,-0.09593927115202]],[[0.013928512111306,0.042389072477818,0.0098178833723068],[-0.058407962322235,-0.014076415449381,0.0024803627748042],[-0.041459452360868,-0.077253311872482,-0.05640471726656]],[[-0.066756904125214,0.040277201682329,0.0027575637213886],[0.085191652178764,-0.055223736912012,-0.22070720791817],[0.0068146088160574,0.025189224630594,-0.056248974055052]],[[-0.061341416090727,-0.052498288452625,0.0058731930330396],[-0.022102374583483,-0.012874092906713,0.0087460512295365],[-0.01371927279979,0.02758233062923,0.074457943439484]],[[-0.048080399632454,0.01589241810143,-0.0089103691279888],[-0.0038024976383895,0.023150715976954,0.086671426892281],[0.048438016325235,-0.10548159480095,-0.0020295660942793]],[[-0.10912626981735,0.046005588024855,-0.020377581939101],[-0.020705247297883,-0.014314811676741,0.046985037624836],[-0.033081110566854,-0.063325367867947,-0.031309645622969]],[[0.011958044022322,0.039674587547779,-0.053246285766363],[-0.0022662621922791,-0.0013227104209363,-0.12999983131886],[0.047659080475569,-0.041774168610573,0.03592586144805]],[[-0.10029996186495,0.053721487522125,-0.0088609838858247],[0.03556764870882,-0.08024650067091,0.032003931701183],[0.0020269663073123,0.04394768550992,-0.067243993282318]],[[0.064828917384148,0.0785301476717,-0.047721952199936],[-0.020011076703668,-0.086800143122673,0.029053451493382],[-0.062127616256475,0.00051157007692382,0.049876619130373]],[[0.038840111345053,-0.051268853247166,-0.03506300970912],[-0.018848914653063,-0.061506040394306,0.050581566989422],[-0.0047791600227356,-0.03722770512104,0.041022934019566]],[[0.0049885506741703,0.03674353659153,0.052937742322683],[0.011460463516414,-0.011327574960887,-0.0060051763430238],[0.015936629846692,-0.015571518801153,-0.043223172426224]],[[-0.026594603434205,-0.10358413308859,-0.13930226862431],[0.091770499944687,0.028148908168077,-0.022913621738553],[-0.010016951709986,0.093746080994606,-0.13300311565399]],[[0.04724084213376,0.013626391999424,-0.0010541098890826],[-0.02923746407032,-0.0050551844760776,-0.017578529193997],[-0.01303462125361,0.0065031019039452,0.049892369657755]],[[-0.0021208075340837,0.054260924458504,-0.13870505988598],[-0.079385913908482,0.020880257710814,-0.03199291229248],[-0.048288762569427,0.011414614506066,0.035554576665163]],[[-0.011752838268876,0.0066806268878281,-0.039317335933447],[-0.016502710059285,0.0075113447383046,-0.016517708078027],[-0.067979417741299,-0.1391149610281,-0.021184856072068]],[[-0.051169522106647,-0.011233187280595,-0.095154583454132],[0.089006252586842,0.13867914676666,0.084247052669525],[0.048067007213831,0.12400091439486,-0.0068024154752493]],[[0.0044264155440032,-0.051892153918743,-0.073814570903778],[0.10159909725189,-0.10128633677959,-0.02053446136415],[0.053105507045984,-0.088473223149776,-0.001372707891278]],[[0.0017099060351029,-0.019090453162789,0.0074595483019948],[-0.030289139598608,0.059333350509405,0.007097776979208],[0.052697233855724,-0.021121442317963,-0.074171617627144]],[[-0.0014503486454487,-0.018792275339365,0.054331548511982],[-0.0069969887845218,0.027389366179705,0.019545776769519],[-0.014070951379836,-0.026000924408436,-0.015725770965219]],[[-0.048268683254719,0.0090362410992384,0.032634377479553],[-0.024922074750066,0.081631422042847,0.042206365615129],[0.02018104121089,0.010711804963648,-0.10168355703354]],[[-0.072312593460083,0.061625804752111,0.14071081578732],[0.10506239533424,-0.0074374144896865,-0.063798941671848],[0.051061149686575,-0.0099975112825632,0.085819125175476]],[[-0.046180061995983,0.082735762000084,-0.026287732645869],[-0.02847957983613,-0.073327407240868,0.10115340352058],[0.098965644836426,0.033879939466715,-0.017732642591]],[[0.025826118886471,0.1369744092226,0.040034219622612],[0.029096828773618,0.088033273816109,0.20435287058353],[0.0029399888589978,0.020838044583797,0.028303101658821]],[[-0.046223104000092,-0.075578585267067,-0.0091546764597297],[-0.09073156863451,-0.085456073284149,0.06450866907835],[-0.0032161606941372,0.014117821119726,-0.03738210350275]],[[0.030712988227606,0.050345614552498,0.042172756046057],[0.021926488727331,-0.0056108674034476,-0.021635623648763],[-0.07137156277895,-0.031202202662826,-0.019042048603296]],[[-0.038096372038126,0.074552901089191,-0.00051667995285243],[0.053271826356649,0.046778462827206,0.042909111827612],[0.12039717286825,-0.032528892159462,0.0027985663618892]],[[-0.043825872242451,0.017391733825207,0.024311345070601],[-0.022792916744947,0.073670618236065,-0.050099313259125],[-0.093007430434227,0.068608872592449,0.0067269708961248]],[[0.09730688482523,-0.06713330745697,-0.011147568933666],[0.030865043401718,0.04603374004364,-0.045357644557953],[-0.10294004529715,-0.013319714926183,-0.070962764322758]],[[0.031823728233576,-0.069675795733929,-0.053627096116543],[0.020741522312164,-0.018305061385036,-0.062178693711758],[0.011304210871458,0.014218490570784,0.036103829741478]],[[0.025993203744292,-0.059413269162178,0.0038736730348319],[0.016769396141171,-0.055481716990471,0.053353291004896],[-0.023024741560221,-0.047530073672533,0.016606144607067]],[[-0.05584366992116,0.060960926115513,0.0058183008804917],[0.062047932296991,-0.032322030514479,-0.10000974684954],[-0.10232011973858,-0.063346594572067,-0.0083451187238097]],[[-0.046879101544619,-0.0057054804638028,-0.034955944865942],[0.03065968491137,-0.035001080483198,0.022855412214994],[0.047273583710194,0.012283747084439,0.042122114449739]],[[-0.030850373208523,-0.045479379594326,-0.11941216886044],[-0.035498153418303,-0.054933868348598,-0.017964452505112],[0.10210095345974,0.077807694673538,-0.036894429475069]],[[0.03724792227149,0.05676706507802,-0.032371062785387],[0.0015292377211154,0.080406449735165,0.011769166216254],[-0.028036069124937,-0.034544955939054,-0.083285138010979]],[[0.014704785309732,-0.0099157495424151,0.060655232518911],[-0.016000472009182,-0.0008892931509763,-0.046207200735807],[-0.027697706595063,-0.068532764911652,0.045392766594887]],[[-0.028155513107777,-0.13369578123093,-0.044090855866671],[-0.016523439437151,-0.016749199479818,0.030927395448089],[-0.053815651684999,0.017278388142586,0.037843447178602]],[[0.080382764339447,-0.069950729608536,-0.086969949305058],[0.033109243959188,0.00071611994644627,0.029561303555965],[-0.008816197514534,0.0059689064510167,-0.047461275011301]],[[-0.030676124617457,-0.10266175866127,-0.02275637164712],[-0.040865067392588,0.010228929109871,0.039805717766285],[-0.052806351333857,0.072161585092545,0.046029560267925]],[[-0.074531026184559,-0.11503133922815,-0.0097964275628328],[0.020460173487663,0.025982491672039,-0.033613946288824],[-0.021389136090875,0.06556536257267,-0.018726203590631]],[[0.046532511711121,-0.0027316072955728,0.023536840453744],[-0.035345066338778,0.021543368697166,0.015473057515919],[-0.0022484129294753,-0.052136585116386,-0.021924598142505]],[[-0.055071972310543,-0.14608214795589,0.056002788245678],[0.0083418432623148,0.046069040894508,0.063009925186634],[0.024188350886106,0.0089522441849113,-0.013553954660892]],[[0.0046817199327052,-0.0040913079865277,-0.060362935066223],[-0.017086554318666,0.087111465632915,0.0031812614761293],[0.02406725473702,-0.040499970316887,-0.0054791835136712]],[[-0.046771787106991,0.018014255911112,0.035870369523764],[-0.022192444652319,0.045921590179205,-0.035950712859631],[0.040190976113081,-0.0058556827716529,-0.042578246444464]],[[0.058089435100555,-0.027017634361982,0.012242053635418],[-0.078520119190216,-0.0074995215982199,-0.019456103444099],[0.018150484189391,-0.0054410612210631,0.012595455162227]],[[-0.032222416251898,-0.025140346959233,-0.06970851868391],[0.12022563815117,-0.0083999633789062,0.0090064769610763],[0.09174095839262,0.016626009717584,-0.038210950791836]],[[-0.04853679984808,0.0023218996357173,-0.026402233168483],[-0.15386775135994,-0.049361936748028,0.020362332463264],[-0.035969417542219,-0.024123247712851,0.0059100552462041]],[[0.098965100944042,0.038119308650494,0.081152886152267],[0.033166419714689,0.070281952619553,-0.044135086238384],[0.12064446508884,0.072670131921768,-0.058164525777102]],[[-0.056122176349163,0.0059964614920318,0.096831224858761],[-0.062732756137848,0.0059739802964032,0.020827181637287],[-0.099659256637096,0.10175564140081,-0.041454344987869]],[[0.050827663391829,0.049065455794334,0.012046303600073],[-0.097088418900967,0.025187412276864,-0.083902105689049],[0.085985250771046,-0.064621455967426,0.017314868047833]],[[0.070110768079758,-0.048366982489824,-0.050372384488583],[0.01295530796051,-0.070964403450489,-0.033783506602049],[-0.028845377266407,-0.050276465713978,0.032211426645517]],[[0.026740483939648,0.15057906508446,0.02042243629694],[0.025802532210946,-0.010861575603485,0.091760158538818],[-0.11796101927757,0.049747560173273,-0.0099271051585674]],[[-0.036902338266373,0.027429344132543,-0.0030440513510257],[-0.088423483073711,-0.021058367565274,-0.056913550943136],[0.063077673316002,0.039143469184637,-0.018647514283657]],[[0.079618155956268,0.019923325628042,0.056744188070297],[-0.044224970042706,-0.10032100230455,-0.012797850184143],[-0.085153728723526,0.078567624092102,0.023114645853639]],[[0.022761978209019,0.036347359418869,-0.039485212415457],[-0.046654775738716,-0.064898699522018,-0.054858800023794],[0.076643258333206,-0.043633244931698,-0.19596606492996]],[[-0.028568428009748,0.1015762463212,-0.086894549429417],[0.080100797116756,-0.015426347032189,-0.046377632766962],[-0.0044042263180017,-0.02058700658381,0.013265774585307]],[[-0.023063454777002,-0.06912761926651,-0.050491396337748],[0.016674468293786,0.064917765557766,-0.0058576436713338],[0.067504875361919,0.044107899069786,0.014944925904274]],[[0.034724622964859,-0.038430511951447,0.031342275440693],[0.067567624151707,-0.014387332834303,-0.053173433989286],[0.080352805554867,-0.016332918778062,-0.0092622609809041]],[[0.015223859809339,0.0033411171752959,0.046652663499117],[-0.02001747302711,0.049850385636091,0.075611963868141],[0.064582876861095,0.13329036533833,0.032634235918522]],[[-0.0075648678466678,-0.036413244903088,-0.022233672440052],[-0.014108452945948,0.00078792637214065,-0.01762043312192],[0.020496850833297,0.05224721133709,-0.0038988210726529]],[[-0.059307813644409,0.081351891160011,0.045493423938751],[-0.025805700570345,0.014107518829405,0.0052741067484021],[-0.048854168504477,-0.0093770995736122,0.0087970662862062]],[[0.066595241427422,0.016076240688562,0.037055846303701],[0.0030875455122441,0.049544282257557,0.017993209883571],[-0.023986449465156,-0.091602087020874,-0.10621252655983]],[[0.042906068265438,-0.043215245008469,0.011267093010247],[0.066512614488602,-0.066098101437092,-0.020854664966464],[0.067307732999325,-0.064107015728951,0.052899103611708]],[[-0.0024999917950481,0.040446102619171,-0.053477510809898],[-0.031021568924189,0.074249528348446,-0.040969483554363],[-0.037805553525686,-0.06586754322052,0.015369621105492]]],[[[-0.0022745744790882,-0.027914037927985,-0.039099015295506],[0.059837784618139,-0.081109918653965,-0.041666191071272],[-0.069235131144524,0.006783870048821,-0.016235584393144]],[[-0.017390454187989,-0.010937222279608,-0.071581199765205],[0.14209426939487,-0.022453399375081,-0.13228936493397],[-0.0084162866696715,0.08771675825119,0.0014472802868113]],[[0.048452254384756,0.051163092255592,-0.029162254184484],[0.10508279502392,0.15657982230186,0.027322828769684],[0.039605837315321,0.021821467205882,-0.032221160829067]],[[-0.01469072047621,0.06649649143219,0.016616802662611],[0.011803845874965,0.071707509458065,-0.051150850951672],[0.027766296640038,0.058187153190374,-0.02037593908608]],[[0.041957970708609,-0.022523621097207,-0.013028107583523],[0.05417525395751,-0.0016678038518876,0.0223497916013],[-0.035949282348156,0.086087368428707,-0.01556237693876]],[[0.0083431489765644,-0.046283032745123,-0.068929605185986],[-0.050198383629322,0.12063267081976,-0.065802007913589],[0.05268095061183,-0.12284545600414,0.079094178974628]],[[-0.0539082698524,-0.068370096385479,0.019114462658763],[0.057966642081738,-0.036191675812006,-0.039522353559732],[0.064057178795338,0.11654192209244,0.050511978566647]],[[0.013447586447001,-0.068792544305325,0.0033619441092014],[-0.0092418733984232,-0.020862031728029,0.053848624229431],[0.017127461731434,-0.032135028392076,0.062130603939295]],[[0.048269681632519,-0.015105670318007,0.049663092941046],[-0.0015020238934085,-0.079101920127869,-0.0091905472800136],[-0.018596228212118,0.0077203679829836,0.10673040896654]],[[-0.10419668257236,-0.037693455815315,0.040029492229223],[0.049487292766571,-0.048236913979053,-0.019291626289487],[-0.01611178740859,-0.048443749547005,0.018154960125685]],[[-0.0018248105188832,0.066961161792278,-0.0045858179219067],[-0.031395494937897,0.017362337559462,0.0071016252040863],[-0.043352100998163,-0.0041083227843046,-0.016327571123838]],[[-0.028681898489594,0.030234690755606,-0.02431826107204],[-0.021067276597023,-0.11358952522278,0.004504902753979],[-0.059965547174215,0.062045253813267,-0.084623724222183]],[[-0.013318313285708,-0.013626601547003,0.0083187902346253],[0.08512457460165,0.10400485992432,0.051528759300709],[-0.066962391138077,-0.042381145060062,0.024254074320197]],[[0.057345096021891,0.028574101626873,0.023276897147298],[0.046049620956182,-0.0039714490994811,-0.015027655288577],[0.013054525479674,-0.030102893710136,0.031565260142088]],[[-0.018838031217456,0.033901207149029,-0.0087739499285817],[-0.047886878252029,-0.0078528439626098,0.013628740794957],[0.030943416059017,-0.051858589053154,-0.010797519236803]],[[0.028326628729701,0.089591287076473,0.097574278712273],[-0.022643901407719,-0.0046931677497923,0.07354848831892],[0.016830628737807,0.073014989495277,0.0038527331780642]],[[0.016549004241824,-0.02696574293077,-0.091552719473839],[-0.0017845699330792,-0.0022298486437649,0.0033846567384899],[0.050139710307121,0.029269758611917,0.10970547795296]],[[0.016042560338974,0.010882394388318,0.0030155770946294],[0.014113885350525,-0.027059301733971,-0.012147660367191],[0.10153932124376,0.090031616389751,0.033522456884384]],[[0.082727588713169,0.028436709195375,-0.030000546947122],[-0.12735982239246,0.042416032403708,0.017521383240819],[0.027089491486549,0.0090820239856839,0.009311355650425]],[[0.010348920710385,0.049586489796638,-0.02090891264379],[0.03319875523448,-0.0038042049854994,-0.034039303660393],[0.00038293015677482,0.0098574468865991,-0.064157173037529]],[[-0.0098086185753345,0.069769449532032,0.079466573894024],[0.032201264053583,0.063718654215336,-0.044157072901726],[0.027973052114248,-0.0064790491014719,-0.045623376965523]],[[0.11522287875414,-0.053577560931444,0.00065367738716304],[0.023087844252586,0.04687512293458,0.013874595984817],[0.11255846917629,0.092039421200752,0.059320438653231]],[[0.014440367929637,0.033794816583395,0.032495714724064],[0.068080969154835,-0.078193254768848,0.040209241211414],[0.074361309409142,-0.0056813294067979,0.010586702264845]],[[0.014201103709638,0.095969267189503,0.14490088820457],[0.090566597878933,0.13609175384045,0.060761794447899],[0.11052856594324,-0.0052637527696788,0.084837660193443]],[[-0.03984410315752,0.088118016719818,-0.0021621917840093],[-0.018504180014133,-0.010290278121829,0.00028215418569744],[0.040879618376493,0.010243904776871,0.036121886223555]],[[-0.003473671618849,-0.051233697682619,-0.016171338036656],[0.0062935883179307,-0.047621570527554,-0.010446853004396],[-0.066362202167511,-0.034819286316633,0.03809329867363]],[[0.017048362642527,0.039771925657988,0.061912328004837],[0.052871782332659,0.0056944116950035,0.059923071414232],[0.066795825958252,0.071943134069443,0.017340697348118]],[[-0.00070249830605462,0.030062798410654,-0.039461690932512],[0.033678509294987,0.02740590646863,-0.016749089583755],[0.070480078458786,0.076583608984947,0.056262351572514]],[[-0.029333416372538,0.0061882892623544,0.046985387802124],[-0.039528850466013,-0.032479602843523,0.033139426261187],[0.01162844710052,0.020668590441346,-0.019550880417228]],[[-0.013308794237673,0.0030918407719582,-0.049289245158434],[0.039537478238344,0.032933183014393,0.03988228738308],[0.025444557890296,0.042421910911798,-0.029744973406196]],[[-0.015856452286243,0.0036347915884107,-0.025166487321258],[0.013943002559245,0.0037325902376324,0.014022193849087],[4.3543437641347e-05,0.011739085428417,0.016163513064384]],[[0.015481608919799,-0.020113216713071,-0.030173322185874],[0.024330582469702,-0.11156491190195,0.013856547884643],[-0.045299600809813,0.0087658315896988,-0.054358124732971]],[[-0.0057155312970281,0.0078493049368262,0.014788821339607],[-0.0074573727324605,-0.041736342012882,-0.034164890646935],[-0.017210038378835,-0.028242964297533,0.016354536637664]],[[0.028555674478412,0.068372510373592,0.078711956739426],[0.040527943521738,0.038445021957159,0.10132985562086],[-0.015235257335007,0.031776789575815,-0.059961885213852]],[[-0.0020562561694533,-0.017971599474549,-0.010063565336168],[-0.0081292130053043,0.02692655660212,-0.099988117814064],[0.0015760994283482,-0.073856107890606,0.010905154049397]],[[-0.11108265817165,-0.03973825275898,0.0049454611726105],[-0.029623536393046,0.053863734006882,0.014111273922026],[-0.013657229952514,-0.019326848909259,0.032388549298048]],[[-0.0046270238235593,0.053202651441097,0.0035195506643504],[-0.036545660346746,-0.029146324843168,0.0085804974660277],[-0.05219067633152,-0.021843483671546,0.0064449147321284]],[[0.043339610099792,0.024420665577054,0.0020160211715847],[0.055705770850182,0.042834229767323,-0.017588114365935],[0.018312307074666,0.043465241789818,7.3761824751273e-05]],[[-0.056877858936787,0.052140790969133,0.014507500454783],[0.008600402623415,0.063491381704807,-0.035848032683134],[-0.12540630996227,0.066754788160324,0.027738027274609]],[[0.057315062731504,0.077058687806129,0.091528102755547],[0.03096123971045,-0.07748032361269,-0.032261107116938],[-0.03886304050684,0.011234951205552,0.10485751181841]],[[0.074156872928143,-0.024780504405499,0.032200302928686],[0.064783580601215,0.071618765592575,0.096778228878975],[0.04966664686799,0.059924438595772,0.036446299403906]],[[-0.026576222851872,-0.018546188250184,-0.071347542107105],[0.022449279204011,-0.020726054906845,-0.058186151087284],[0.097500152885914,0.047876749187708,0.059241659939289]],[[0.017987629398704,0.016510307788849,0.044180497527122],[-0.0053689512424171,0.044156510382891,0.12463815510273],[-0.034333754330873,-0.048640068620443,0.06459304690361]],[[-0.010658520273864,0.013230097480118,-0.13262973725796],[0.059216652065516,-0.066503599286079,-0.018405189737678],[-0.028831264004111,-0.0066128736361861,-0.028038380667567]],[[-0.054294113069773,-0.0067219426855445,-0.00080837763380259],[0.016563208773732,0.025961427018046,0.021185040473938],[0.0028670360334218,0.057572066783905,0.018148396164179]],[[0.0075347675010562,-0.041586063802242,0.010206900537014],[-0.085302196443081,-0.0074535678140819,-0.028491649776697],[-0.011810825206339,-0.036412749439478,-0.057807691395283]],[[0.023994563147426,-0.094533286988735,-0.025163756683469],[-0.0079453345388174,0.026024866849184,-0.0013110467698425],[-0.016079979017377,0.03070174716413,0.063244894146919]],[[0.021108947694302,-0.019053975120187,0.026198012754321],[0.030776236206293,-0.027291947975755,-0.05146798864007],[0.019134674221277,0.042398206889629,0.1114746555686]],[[-0.068530343472958,0.039989717304707,0.050644811242819],[0.010484546422958,-0.01402136310935,0.058054704219103],[0.0096402633935213,-0.019039172679186,0.073001869022846]],[[0.033057138323784,-0.054402694106102,0.028777381405234],[0.030102543532848,0.04258630797267,0.012625563889742],[0.066428780555725,-0.062863826751709,0.040391374379396]],[[-0.0049276975914836,0.0069169728085399,0.022788228467107],[-0.080379702150822,-0.017095223069191,0.0061494139954448],[-0.023273760452867,-0.023140512406826,0.014220695011318]],[[0.11749669909477,0.095264561474323,0.051469586789608],[0.0068374080583453,0.13452956080437,0.11587719619274],[0.1083846911788,0.072761528193951,0.023217160254717]],[[6.1196013120934e-05,0.099010229110718,-0.038225267082453],[0.039248395711184,-0.048664130270481,-0.020775495097041],[0.036936577409506,0.036974959075451,0.045136548578739]],[[-0.085626661777496,-0.039512790739536,-0.0077900309115648],[0.044662952423096,-0.0099384011700749,-0.062748290598392],[-0.035173542797565,-0.081773295998573,-0.10054068267345]],[[0.031640104949474,0.0071955709718168,0.027708875015378],[0.0096702799201012,-0.011507434770465,0.051955439150333],[0.03709951043129,-0.022418834269047,0.11618023365736]],[[-0.045043084770441,0.019037656486034,-0.05443362146616],[0.011599860154092,-0.048361495137215,-0.027333792299032],[-0.030288403853774,-0.014687646180391,0.051098179072142]],[[0.053076039999723,-0.033837124705315,0.011115118861198],[0.019031617790461,-0.065871365368366,-0.070586524903774],[0.095115385949612,-0.05290712416172,0.019090613350272]],[[0.0055911941453815,0.036367360502481,-0.048060942441225],[0.030847942456603,0.051714591681957,-0.0036672770511359],[0.01273987442255,-0.012814587913454,-0.014760421589017]],[[0.055387686938047,0.077888518571854,0.10340506583452],[0.047271631658077,-0.055333085358143,0.020873658359051],[0.056047931313515,0.067255474627018,0.14154416322708]],[[-0.050865471363068,0.035137910395861,0.011382320895791],[-0.019953353330493,0.14617969095707,0.022947052493691],[-0.060933921486139,-0.036786876618862,-0.058078344911337]],[[0.06417478621006,0.020099679008126,-0.042392123490572],[-0.0030729582067579,0.00017185480101034,-0.070562183856964],[0.018059462308884,-0.075963638722897,-0.11292520165443]],[[0.0025987690314651,0.020831823348999,-0.026487039402127],[-0.039739448577166,0.019882190972567,-0.021583743393421],[-0.048594262450933,0.010538027621806,0.1196731030941]],[[0.027674606069922,-0.018784420564771,0.010015725158155],[0.0092222485691309,0.054225623607635,0.080326586961746],[0.05436198040843,-0.017973396927118,0.059813894331455]],[[-0.021337062120438,-0.050682611763477,0.02713106200099],[-0.055540908128023,0.028581714257598,0.068121388554573],[-0.003040254348889,0.032256297767162,0.052161570638418]]],[[[0.037029460072517,-0.040012076497078,-0.026787919923663],[-0.052662085741758,0.043104469776154,-0.12090821564198],[0.024446282535791,-0.076533436775208,0.024328123778105]],[[-0.11290749907494,-0.04446567595005,-0.031620137393475],[-0.00066558923572302,0.021738590672612,0.10158153623343],[0.022797048091888,-0.044015862047672,0.059873525053263]],[[0.033285614103079,-0.098736189305782,-0.016297690570354],[0.046318456530571,-0.14979200065136,0.011064369231462],[-0.098910309374332,-0.0095073375850916,-0.1153255328536]],[[-0.019246194511652,0.017371192574501,0.0042541027069092],[-0.20552450418472,-0.062059093266726,0.0061777271330357],[-0.11185398697853,0.028588140383363,0.0073152747936547]],[[-0.096850745379925,-0.075758166611195,0.020353524014354],[-0.045307468622923,-0.0080674141645432,0.025555161759257],[-0.02761160954833,-0.0084106791764498,0.0063736452721059]],[[-0.020584536716342,0.10746227949858,-0.056103184819221],[-0.036853119730949,-0.086644142866135,0.052347503602505],[-0.0051303920336068,0.049679387360811,-0.0097327530384064]],[[-0.049654435366392,-0.1572649627924,-0.031220342963934],[0.010214910842478,-0.011820956133306,-0.081961281597614],[0.0086440006271005,0.051782220602036,0.020141275599599]],[[-0.060291115194559,0.0084822149947286,0.02441911585629],[-0.087811514735222,-0.0036316236946732,-0.021164717152715],[-0.01917483843863,-0.042405519634485,0.0039516547694802]],[[0.045207094401121,-0.020069647580385,-0.032969869673252],[0.039223335683346,0.027443682774901,0.052906345576048],[-0.033426761627197,-0.054502744227648,-0.032639522105455]],[[0.071651369333267,-0.028020648285747,-0.034011974930763],[-0.028984548524022,0.019900461658835,-0.025467393919826],[-0.0017210618825629,-0.083326064050198,0.0031073563732207]],[[-0.030834011733532,0.0081303277984262,0.033969156444073],[0.029954459518194,-0.060313083231449,-0.087019644677639],[0.023806538432837,0.05073319748044,0.045743465423584]],[[-0.015662649646401,-0.079821534454823,0.035793796181679],[-0.066008828580379,-0.016943074762821,-0.032436560839415],[0.088801674544811,0.093356877565384,0.066525816917419]],[[-0.021763864904642,-0.070463217794895,0.057253196835518],[-0.032849948853254,0.06210221350193,-0.026788773015141],[0.058826945722103,-0.052712205797434,0.04744516685605]],[[0.057243868708611,-0.040806133300066,-0.10115503519773],[0.11418104916811,0.10456147789955,0.09397179633379],[-0.071781322360039,-0.0089641837403178,-0.0043330020271242]],[[-0.076560743153095,0.0071367458440363,-0.0043014204129577],[-0.13100120425224,-0.028218828141689,-0.009569900110364],[-0.10560297220945,0.044250145554543,-0.00054300017654896]],[[-0.07143010944128,-0.0023723568301648,-0.006372481584549],[0.038909014314413,0.06163789704442,-0.0053807031363249],[0.044313527643681,-0.02830383554101,-0.01289888843894]],[[-0.065066613256931,-0.10768552869558,0.014230032451451],[0.11082693934441,-0.0034126557875425,-0.040738914161921],[0.022062890231609,-0.054154422134161,-0.12185674160719]],[[0.012239383533597,0.016462219879031,-0.06464833766222],[0.079842947423458,-0.00010686845052987,-0.050799608230591],[-0.059929229319096,-0.20913890004158,0.012947650626302]],[[0.043000899255276,-0.083092823624611,-0.04908749461174],[-0.083748176693916,-0.0040795286186039,-0.046527996659279],[-0.060422949492931,0.10717545449734,-0.028390070423484]],[[-0.041020698845387,0.090288229286671,0.040421199053526],[-0.00096296577248722,0.0030458986293525,-0.037817053496838],[0.031315568834543,-0.04077710211277,0.0015623823273927]],[[-0.02974951826036,-0.15372475981712,-0.086378820240498],[-0.014302236959338,0.02806636877358,-0.017738992348313],[0.055591773241758,0.057203102856874,0.020522210747004]],[[0.12291687726974,0.0064619407057762,0.04024987667799],[0.065596073865891,-0.060859948396683,-0.0090062199160457],[0.043026525527239,-0.036150828003883,-0.084705486893654]],[[-0.014316620305181,-0.029749752953649,0.056819416582584],[0.055907983332872,0.10492333769798,-0.052878394722939],[-0.0095326947048306,-0.054582931101322,-0.060618408024311]],[[-0.0029003594536334,0.045098707079887,0.16861864924431],[-0.044321518391371,0.10373349487782,-0.046113733202219],[-0.046599611639977,0.12811723351479,-0.1233099475503]],[[-0.022896168753505,0.013797892257571,-0.090574257075787],[-0.087861016392708,0.05922057107091,-0.022914016619325],[-0.0083593456074595,0.080151632428169,0.050287049263716]],[[0.038896255195141,0.039269525557756,-0.021424209699035],[-0.037706036120653,-0.082887798547745,-0.038019981235266],[0.0088404389098287,0.0066313184797764,0.024470046162605]],[[-0.10069237649441,0.0096815275028348,0.017605647444725],[-0.0044135097414255,-0.068376921117306,-0.0060983267612755],[0.05328905954957,0.022961603477597,-0.030343243852258]],[[0.034859582781792,0.05809485539794,-0.01835061237216],[0.032806761562824,-0.045932855457067,-0.0022230346221477],[0.023214036598802,0.026295807212591,-0.064513362944126]],[[-0.11335626244545,-0.021484715864062,-0.02023190818727],[0.097868151962757,0.029034627601504,0.10401985794306],[-0.081078909337521,-0.0004414105496835,-0.037803251296282]],[[0.0439118668437,-0.053861141204834,-0.11462268233299],[0.047354392707348,0.036125347018242,-0.05198859795928],[-0.027045296505094,-0.06789368391037,-0.032940592616796]],[[0.018229231238365,-0.026562796905637,0.031610917299986],[0.0015927416970953,-0.074705474078655,-0.016271032392979],[-0.020649710670114,-0.025551594793797,-0.03884157538414]],[[0.050909854471684,-0.064345255494118,-0.071272231638432],[0.043584279716015,0.010397638194263,-0.082490712404251],[-0.079719111323357,0.085119932889938,-0.030483124777675]],[[-0.005529556889087,-0.024756770581007,0.0077555263414979],[-0.024413155391812,0.01246340200305,-0.041205666959286],[-0.023876521736383,-0.0045481421984732,-0.037789918482304]],[[0.012089726515114,-0.011465079151094,-0.035116899758577],[0.10372242331505,-0.012059506028891,-0.036252666264772],[-0.016384340822697,0.060850601643324,-0.03618286550045]],[[0.019586654379964,0.10330242663622,0.0091731054708362],[-0.014375223778188,0.033572003245354,0.020147604867816],[-0.037347756326199,-0.011599458754063,0.039708741009235]],[[0.061156172305346,0.039930682629347,0.010381664149463],[-0.026844318956137,0.027763687074184,0.0082936659455299],[0.067302361130714,-0.022566210478544,-0.016501596197486]],[[0.017511619254947,0.012019028887153,-0.039098247885704],[0.06151382252574,-0.0038577420637012,-0.076810590922832],[0.022842833772302,-0.086843848228455,-0.024458540603518]],[[-0.059473935514688,0.046210955828428,-0.019777638837695],[0.013056930154562,0.040313605219126,-0.026941468939185],[-0.07724254578352,-0.028636917471886,0.0086205191910267]],[[-0.16923005878925,-0.026562698185444,-0.058322675526142],[-0.0013139975490049,-0.0022906747180969,0.055895853787661],[-0.042826324701309,0.082373693585396,0.12269687652588]],[[0.00033087364863604,-0.11805425584316,-0.035980302840471],[0.11329378932714,0.08488280326128,0.032122857868671],[0.0016488204710186,0.097511291503906,0.018508208915591]],[[0.027105866000056,-0.029582045972347,-0.026279712095857],[0.05702131614089,0.02448957785964,-0.045311063528061],[-0.049358315765858,-0.010467262007296,-0.0083316853269935]],[[-0.029702439904213,0.058056399226189,0.00028609804576263],[-0.034125559031963,-0.038095220923424,-0.059052888303995],[-0.037378814071417,0.057789959013462,-0.10551140457392]],[[-0.0033313594758511,-0.023795837536454,0.012974241748452],[0.0194386318326,0.0071004992350936,0.096223913133144],[0.09019910544157,-0.095044553279877,-0.072069615125656]],[[-0.098084151744843,0.018232392147183,0.016603287309408],[0.10361069440842,-0.048479054123163,-0.0007418321329169],[0.037000447511673,-0.053574908524752,0.056173611432314]],[[0.0076739573851228,-0.016004798933864,-0.021664714440703],[-0.042973175644875,-0.0070628267712891,-0.069859676063061],[0.040034260600805,-0.062902338802814,0.0058517367579043]],[[0.065965719521046,0.011218765750527,0.041290633380413],[0.0025389359798282,-0.02851590514183,0.030990278348327],[0.0083810752257705,0.058520257472992,-0.10817918181419]],[[0.012137214653194,0.026683794334531,-0.021159160882235],[0.034367151558399,-0.006985867395997,-0.070634283125401],[-0.081509180366993,-0.0047281319275498,-0.067028909921646]],[[0.099148809909821,-0.068426579236984,-0.0037046130746603],[0.007232072763145,0.16091597080231,-0.057500567287207],[-0.040569715201855,0.14598312973976,0.1189698651433]],[[0.028892980888486,0.0050653680227697,-0.036297399550676],[-0.0096028605476022,0.076009348034859,0.085234351456165],[-0.024099852889776,0.017261583358049,-0.014435241930187]],[[0.00092630903236568,-0.069358848035336,-0.1019177660346],[-0.082215517759323,-0.023076647892594,-0.02967045456171],[0.11186939477921,0.040988586843014,-0.073726147413254]],[[-0.0038467608392239,0.037961639463902,-0.0055604763329029],[-0.011813473887742,0.044541366398335,-0.005224883556366],[-0.073029942810535,0.010808347724378,-0.02120765298605]],[[0.086938209831715,0.14032471179962,0.021134816110134],[0.08376669883728,0.063362121582031,0.022848734632134],[0.036983773112297,-0.045670185238123,0.024593245238066]],[[0.036254521459341,-0.044186316430569,-0.060988489538431],[0.051247216761112,0.055773243308067,-0.10014471411705],[-0.081150464713573,0.0060849748551846,-0.017476532608271]],[[0.010319497436285,-0.020736014470458,-0.043758302927017],[0.045175060629845,0.042338956147432,0.021970190107822],[-0.067273616790771,-0.071240924298763,-0.031495545059443]],[[-0.02947087213397,0.068454027175903,-0.05815114825964],[0.03028616309166,-0.080469593405724,-0.060189627110958],[-0.073937982320786,0.049968227744102,-0.056683965027332]],[[0.051714885979891,0.11802550405264,0.017128672450781],[0.10573956370354,0.0085754711180925,-0.05067141354084],[-0.0041143000125885,-0.0030716753099114,-0.047510158270597]],[[0.015542973764241,-0.0066753858700395,0.014008976519108],[0.0067090941593051,0.057518672198057,-0.025330858305097],[-0.027039188891649,0.025116413831711,0.021594570949674]],[[-0.0093964450061321,0.0466631911695,0.020052397623658],[-0.0057315356098115,0.010542548261583,-0.032018039375544],[-0.030838880687952,-0.0583212710917,0.052648674696684]],[[0.04049564152956,-0.0061641470529139,0.050652999430895],[0.018679955974221,-0.12710267305374,-0.018146747723222],[0.086093060672283,-0.013043736107647,0.11174557358027]],[[0.011683804914355,-0.045088455080986,-0.039014752954245],[0.0052415356040001,0.024642027914524,0.030977537855506],[-0.0026966566219926,-0.0079423356801271,0.035980261862278]],[[-0.09141156822443,-0.046512767672539,0.0043835183605552],[-0.023403745144606,-0.047720137983561,0.006455501075834],[-0.026609947904944,0.0056185466237366,-0.030677940696478]],[[0.063643150031567,0.017868192866445,0.00082423619460315],[-0.036188416182995,-0.066927321255207,-0.011170921847224],[-0.053987767547369,-0.0047454410232604,-0.074572332203388]],[[-0.10831085592508,0.021580452099442,-0.0012966247741133],[0.098685964941978,0.0090634534135461,-0.084748521447182],[0.013725450262427,0.079060412943363,0.022227600216866]],[[0.0082853101193905,0.043032042682171,0.020809628069401],[-0.03410679474473,-0.061572209000587,0.024547310546041],[0.01786407828331,-0.079392574727535,-0.027520453557372]]],[[[-0.041200496256351,-0.036202050745487,-0.067487366497517],[-0.05823440849781,0.011370395310223,0.0098095033317804],[0.038808569312096,0.011019172146916,-0.046850472688675]],[[0.0071635255590081,0.055322665721178,0.059451166540384],[-0.048296377062798,0.031009813770652,0.016348434612155],[-0.032523427158594,-0.015176720917225,-0.08450710773468]],[[-0.039990279823542,-0.018846150487661,-0.031846936792135],[-0.019966024905443,0.010765844024718,-0.030092550441623],[-0.049900189042091,-0.0077531551942229,-0.014794326387346]],[[-0.14531707763672,-0.079061813652515,-0.019563058391213],[-0.10635662078857,0.03626587241888,-0.0010845025535673],[-0.016086744144559,-0.0011555429082364,-0.058330494910479]],[[0.0033392631448805,0.095106266438961,0.025924252346158],[-0.013579919934273,-0.037701588124037,-0.044897820800543],[0.058051001280546,0.078768290579319,-0.0020185068715364]],[[0.0012380321277305,-0.023038122802973,-0.0079507324844599],[-0.0032222527079284,-0.085151940584183,0.14480908215046],[0.063271932303905,0.018183961510658,0.11330775916576]],[[-0.01177298091352,0.024936810135841,0.074326083064079],[0.0078059672378004,0.06277023255825,-0.065823584794998],[0.080127626657486,0.061766277998686,-0.0017273997655138]],[[0.043951280415058,-0.0093733863905072,0.017111595720053],[0.013953096233308,0.062689058482647,0.00080097134923562],[0.025536864995956,-0.029135996475816,-0.010133655741811]],[[0.010417211800814,-0.015297147445381,-0.11127782613039],[0.014921998605132,-0.013595360331237,-0.087303638458252],[0.010499640367925,0.021100763231516,0.085593774914742]],[[-0.00034582926309668,-0.071950308978558,0.022048115730286],[0.008003449998796,-0.062559150159359,-0.046607177704573],[-0.019946616142988,-0.068318881094456,-0.01076084561646]],[[0.036299630999565,0.011019972153008,0.0014798240736127],[-0.040824331343174,0.043918263167143,0.0099203996360302],[-0.09208806604147,0.0762724801898,0.0088232485577464]],[[0.048466686159372,-0.046861749142408,-0.0093522006645799],[0.0092910900712013,0.060541417449713,0.010647404007614],[-0.016250137239695,-0.031353853642941,-0.043443758040667]],[[-0.07956575602293,0.065365791320801,-0.018207482993603],[-0.024473087862134,-0.097391620278358,-0.051215633749962],[-0.055043820291758,-0.11114095151424,-0.06432631611824]],[[0.029464183375239,-0.10457476973534,0.030772745609283],[-0.045002814382315,0.024403749033809,0.021783847361803],[0.018938841298223,0.029392462223768,0.0031793022062629]],[[-0.063571505248547,0.088204503059387,-0.0064850528724492],[-0.021651562303305,0.013159282505512,-0.02359670586884],[0.067747607827187,-0.12832561135292,-0.044316455721855]],[[0.077619358897209,0.066557250916958,-0.079822286963463],[0.044560588896275,0.0037448243238032,-0.030042754486203],[0.04723209515214,0.085003435611725,-0.088287100195885]],[[0.064496792852879,0.065666981041431,-0.10004938393831],[0.0022222918923944,-0.0077852695249021,-0.095249831676483],[0.063997000455856,0.092380486428738,0.0085767433047295]],[[-0.0977997854352,-0.012853046879172,-0.03482872992754],[0.064339503645897,-0.055334251374006,-0.059959895908833],[-0.0012349850730971,-0.048212736845016,-0.050692182034254]],[[0.022831760346889,-0.069884434342384,-0.060556784272194],[0.028249684721231,-0.067202128469944,-0.048398077487946],[-0.058265566825867,-0.057127587497234,-0.034505750983953]],[[-0.019836109131575,-0.054404530674219,0.056458607316017],[-0.068525470793247,-0.033277232199907,0.061141449958086],[-0.054468132555485,0.050439771264791,0.071774840354919]],[[0.010875671170652,-0.10477421432734,0.04184490069747],[-0.024935491383076,-0.034561205655336,-0.054696720093489],[-0.021524824202061,-0.038583137094975,-0.14152391254902]],[[-0.048374898731709,-0.027300588786602,0.0657789260149],[-0.098065249621868,-0.20737420022488,0.010565521195531],[-0.0079415235668421,0.040457487106323,-0.11368399113417]],[[-0.057493649423122,-0.0070804674178362,-0.074160024523735],[-0.040904644876719,-0.06078889593482,-0.077934503555298],[-0.13545270264149,-0.050285048782825,0.003794189542532]],[[0.090500749647617,0.04063893482089,0.018974704667926],[-0.020067514851689,-0.0091406712308526,-0.039054770022631],[0.079174235463142,0.0026421605143696,0.06377051025629]],[[-0.06445674598217,-0.018765842542052,0.050323352217674],[-0.065451174974442,0.05131334066391,-0.0087158866226673],[0.042252190411091,0.049768149852753,-0.039535902440548]],[[-0.041698653250933,-0.054688632488251,0.02226940356195],[-0.076614804565907,-0.015960356220603,0.039577253162861],[-0.042525388300419,-0.022906981408596,0.081946767866611]],[[0.096367552876472,-0.051251824945211,0.062283594161272],[0.038703169673681,-0.031594455242157,0.081381887197495],[0.031566478312016,0.011834863573313,0.04856288805604]],[[-0.084339760243893,0.05637401342392,0.020019136369228],[-0.05827672034502,-0.10723488032818,0.011496084742248],[-0.078197613358498,-0.10744313150644,-0.070895776152611]],[[0.0069211269728839,0.021879998967052,-0.04428669065237],[-0.010986007750034,-0.033320344984531,-0.026668315753341],[0.011098949238658,-0.06665600836277,0.060722142457962]],[[0.01750160753727,0.016246907413006,-0.056216921657324],[0.02748909406364,0.039589148014784,-0.015007773414254],[5.3954372560838e-05,0.024248067289591,0.079161323606968]],[[0.08009335398674,-0.034931488335133,0.1440297216177],[0.026765210554004,-0.028743153437972,0.0096460087224841],[0.061234690248966,-0.024106297641993,-0.10703927278519]],[[-0.08836505562067,0.072421014308929,-0.030183473601937],[-0.067490972578526,0.028672294691205,-0.056353110820055],[0.026048822328448,0.068784937262535,0.03200289607048]],[[-0.00018637061293703,-0.042236741632223,0.00099163362756371],[0.032720100134611,-0.039843428879976,-0.081340312957764],[0.054738741368055,-0.00276397773996,-0.092450581490993]],[[0.018393266946077,-0.087475560605526,-0.062464848160744],[-0.026773625984788,-0.035822506994009,-0.13223785161972],[-0.08098167181015,-0.11540953814983,0.14498768746853]],[[-0.059926055371761,-0.079262927174568,0.034635711461306],[-0.0057395622134209,-0.029319746419787,-0.01328185852617],[-0.0052966875955462,0.038776725530624,-0.031157108023763]],[[0.028859658166766,0.019656183198094,-0.0059376005083323],[-0.017302459105849,-0.059960819780827,-0.024047654122114],[-0.014928162097931,0.0039712116122246,0.0093490397557616]],[[-0.019404530525208,0.01017355080694,-0.013407441787422],[-0.041951600462198,-0.031752191483974,0.0373759791255],[-0.059604652225971,-0.036421205848455,-0.011778775602579]],[[-0.048014041036367,-0.032279554754496,-0.068454310297966],[-0.042689111083746,0.031894292682409,0.021750912070274],[0.033188380300999,-0.076940514147282,-0.002488432219252]],[[-0.21221262216568,-0.20486861467361,-0.0097389733418822],[-0.006510597653687,-0.1417513936758,-0.066682584583759],[-0.018952706828713,0.033148307353258,-0.03435680270195]],[[-0.013282232917845,-0.047801304608583,0.020950227975845],[-0.022824458777905,-0.067802831530571,0.1032191067934],[0.053512629121542,-0.0059002321213484,0.046878181397915]],[[-0.081676654517651,-0.039108160883188,0.0093943374231458],[0.0014894205378368,-0.11446700245142,0.022667644545436],[0.034805204719305,-0.014780950732529,0.046214256435633]],[[-0.031326849013567,-0.024586617946625,0.064778715372086],[-0.0070782424882054,-0.11116303503513,-0.01649191044271],[0.028680372983217,0.015215910039842,-0.13728795945644]],[[-0.011346459388733,-0.0032621046993881,-0.025149617344141],[-0.010741203092039,0.042955920100212,0.00075632269727066],[-0.0016541399527341,-0.014478767290711,-0.078115276992321]],[[-0.067014493048191,0.0036682821810246,0.0024172640405595],[-0.14585837721825,-0.018467865884304,-0.16773799061775],[-0.025423903018236,-0.1169241219759,-0.05498955026269]],[[-0.012878361158073,0.075224712491035,-0.044041100889444],[-0.031720817089081,-0.091406628489494,-0.075054034590721],[-0.032893761992455,-0.067902110517025,-0.04953296482563]],[[-0.017928298562765,-0.082894161343575,-0.10913049429655],[0.10259555280209,-0.10032445192337,-0.026061547920108],[0.049906779080629,0.1011238694191,0.01112640183419]],[[-0.047604966908693,-0.043351732194424,-0.074668377637863],[-0.017255553975701,0.029772132635117,-0.037840910255909],[0.0034804362803698,0.078603848814964,0.063460692763329]],[[0.039132058620453,-0.0012196110328659,0.12678565084934],[-0.062533661723137,-0.090602710843086,0.14002810418606],[-0.10670245438814,-0.18286846578121,-0.04557666182518]],[[0.05240834876895,-0.0043995943851769,-0.040275938808918],[0.060888156294823,-0.067877925932407,-0.026035141199827],[0.011877099052072,-0.07162544131279,-0.11035109311342]],[[-0.0071662832051516,-0.016829779371619,-0.010833819396794],[-0.05509003251791,-0.020893996581435,-0.025968233123422],[-0.033823877573013,-0.011561084538698,-0.030801806598902]],[[0.085236594080925,0.018363211303949,-0.00089623464737087],[0.029785715043545,-0.029409656301141,-0.027558512985706],[-0.03513352945447,-0.045510198920965,-0.06246281042695]],[[0.015485807321966,0.018171437084675,-0.0049400990828872],[0.11138974130154,-0.0062294229865074,-0.023100541904569],[-0.066551133990288,0.0033538499847054,-0.0020660462323576]],[[-0.1107949540019,-0.16370828449726,-0.029051279649138],[0.016497559845448,-0.044724386185408,-0.038467016071081],[-0.0013776711421087,0.021805737167597,0.048677828162909]],[[-0.090142577886581,-0.099614799022675,0.073307573795319],[0.013628686778247,-0.19850043952465,-0.027150938287377],[-0.067535772919655,-0.14820766448975,-0.037585888057947]],[[-0.035920884460211,0.022087000310421,-0.031754270195961],[-0.031991314142942,-0.033871453255415,-0.032041236758232],[-0.072559587657452,-0.026119373738766,-0.04243441671133]],[[0.051566656678915,0.0152967274189,-0.085354499518871],[0.015085841529071,-0.064735643565655,-0.17776156961918],[0.024189710617065,0.013361491262913,-0.050461050122976]],[[-0.06927689909935,0.031349621713161,0.024261523038149],[-0.057457018643618,0.073353335261345,0.022976139560342],[-0.01537786796689,-0.04938417673111,-0.030350867658854]],[[-0.077410347759724,0.0013885373482481,-0.0022191782481968],[-0.019744360819459,0.01148132327944,-0.062569044530392],[-0.11285747587681,-0.053619269281626,-0.089734956622124]],[[0.038346007466316,-0.08819904923439,0.03551884740591],[0.0073766452260315,0.00179187359754,0.03299456089735],[-0.004715733230114,0.017519634217024,-0.026709919795394]],[[-0.016646776348352,0.0073126801289618,-0.031036769971251],[0.010695253498852,0.030196581035852,0.015306951478124],[-0.001108436495997,-0.069135345518589,-0.0019743742886931]],[[-0.064354933798313,-0.046669408679008,-0.15553770959377],[-0.081003166735172,-0.064078457653522,-0.068821288645267],[-0.048189654946327,0.044774781912565,-0.1791670024395]],[[0.0051873307675123,-0.034590311348438,-0.077224053442478],[0.014717668294907,0.098309896886349,-0.078202322125435],[0.052286773920059,0.0058891517110169,-0.11898512393236]],[[0.034565184265375,-0.047603704035282,0.056617643684149],[0.017746511846781,0.030555451288819,0.0066748512908816],[0.010955688543618,0.0039060735143721,0.0049197021871805]],[[-0.011355788446963,0.059599224478006,-0.089503400027752],[0.034784056246281,0.012038524262607,-0.0072837159968913],[-0.059105712920427,-0.012721727602184,-0.007533339317888]]],[[[-0.11519124358892,-0.015799824148417,-0.11163734644651],[-0.0035016862675548,0.10453082621098,-0.015094981528819],[-0.020443845540285,-0.068966075778008,0.069871731102467]],[[-0.036966405808926,0.087492376565933,-0.033593762665987],[-0.0058847637847066,0.1656915396452,0.0024908881168813],[0.012082118541002,0.067859217524529,-0.015429070219398]],[[-0.089145615696907,-0.12277210503817,-0.059478487819433],[-0.011793110519648,-0.06525806337595,0.011852989904583],[0.034837022423744,0.022709712386131,0.082330621778965]],[[0.0033038223627955,-0.034311186522245,-0.026596393436193],[0.027214821428061,0.026808705180883,0.032487243413925],[-0.021966876462102,0.023654229938984,-0.011261117644608]],[[-0.060183584690094,-0.075969785451889,-0.0012986137298867],[0.0062300469726324,0.045088186860085,-0.022835632786155],[-0.028048859909177,0.029888726770878,-0.019043764099479]],[[-0.0058432496152818,-0.03119988553226,-0.017014326527715],[-0.044420421123505,-0.044556047767401,-0.035425893962383],[0.00065579201327637,-0.056122411042452,-0.037784323096275]],[[-0.0060071418993175,-0.025378623977304,-0.0098947901278734],[0.017808265984058,-0.12173865735531,-0.05859012529254],[0.028891673311591,0.029433831572533,-0.0081363124772906]],[[0.017829654738307,-0.0071709351614118,0.047260351479053],[-0.033790245652199,0.097377397119999,0.054038818925619],[0.054533969610929,0.0067984513007104,-0.018328243866563]],[[0.02238928899169,0.034882191568613,0.055825587362051],[-0.10306926816702,-0.028839036822319,0.003651624545455],[0.082664601504803,-0.026399718597531,-0.023015666753054]],[[0.044674031436443,-0.12237787991762,-0.18856920301914],[-0.024780318140984,-0.0096063921228051,0.023242002353072],[-0.071877770125866,-0.044148277491331,0.065715655684471]],[[-0.0010969383874908,-0.016574325039983,-0.045622803270817],[0.029998254030943,-0.047900106757879,0.031419396400452],[-0.056360386312008,0.0091631440445781,0.028229070827365]],[[0.13062836229801,0.024585304781795,-0.082810595631599],[-0.029169483110309,-0.10256550461054,0.093252256512642],[-0.056876767426729,-0.014923973940313,0.034497268497944]],[[-0.0074290931224823,-0.0080628721043468,0.024123108014464],[0.028023650869727,0.0078652016818523,0.038046982139349],[-0.0051805707626045,-0.091890245676041,0.0074446285143495]],[[0.029462678357959,-0.1248596534133,-0.094487778842449],[-0.04525875300169,0.01945193298161,0.12433785945177],[0.0032002157531679,-0.0051819230429828,0.0087058348581195]],[[-0.061168849468231,-0.03283629193902,-0.051772713661194],[-0.016527088358998,0.057532176375389,-0.034206002950668],[-0.014193730428815,0.012613414786756,0.026272596791387]],[[0.04287539049983,-0.051578994840384,0.0092684905976057],[0.017506560310721,0.151960298419,0.042968638241291],[0.015512428246439,0.02011738345027,-0.0057228957302868]],[[0.032982483506203,0.040834542363882,0.0090503115206957],[0.046224370598793,0.040885522961617,0.0017649065703154],[0.006099384278059,0.029024114832282,0.054997451603413]],[[0.055793888866901,0.056784570217133,-0.070895954966545],[0.060610044747591,0.030411761254072,-0.21012742817402],[0.071126580238342,0.10167661309242,-0.014098538085818]],[[-0.069424964487553,-0.05366275832057,-0.0054456316865981],[0.058831945061684,0.058825422078371,-0.066691853106022],[0.0076875751838088,0.022263139486313,0.020077083259821]],[[-0.066639006137848,-0.070511750876904,-0.015303896740079],[-0.016357922926545,-0.0020234845578671,0.065446242690086],[0.023435719311237,0.033758532255888,0.043826039880514]],[[-0.051658514887094,-0.17970095574856,-0.074558489024639],[-0.06021086871624,-0.016137888655066,-0.059055414050817],[0.043847408145666,0.0077169574797153,-0.12406415492296]],[[0.05008190497756,0.043308060616255,-0.035086877644062],[-0.031183095648885,-0.077610656619072,-0.0574711561203],[0.0059312600642443,0.0031419298611581,0.064722761511803]],[[0.018258327618241,0.0096040675416589,-0.048191007226706],[0.010078958235681,0.0095479618757963,-0.062897823750973],[0.0019048232352361,-0.014610530808568,-0.028743227943778]],[[-0.030098291113973,-0.11407180130482,0.034260470420122],[0.19204284250736,-0.0074166944250464,0.19649824500084],[0.070285528898239,-0.062314938753843,-0.030316345393658]],[[0.05395345389843,0.056793507188559,0.062191750854254],[-0.0420724414289,-0.0056282277218997,-0.00233532814309],[0.074147745966911,-0.019956663250923,-0.012768836691976]],[[-0.015796104446054,0.057544372975826,-0.024569071829319],[-0.032210871577263,-0.044919334352016,0.051864385604858],[0.036971267312765,0.024267097935081,0.042148724198341]],[[0.011148325167596,-0.10482862591743,-0.0023340608458966],[-0.04982752725482,0.042266421020031,0.050614923238754],[0.093426056206226,0.0250961240381,0.014546726830304]],[[0.025463363155723,-0.012361420318484,0.026453793048859],[-0.031645350158215,-0.0037977159954607,-0.073463700711727],[-0.012220708653331,-0.030670393258333,0.067890241742134]],[[0.052597369998693,0.01096449047327,-0.015640275552869],[0.022523008286953,0.013184656389058,0.10488038510084],[-0.00074221898103133,-0.038852337747812,-0.076620198786259]],[[0.076171107590199,-0.19527976214886,-0.29015508294106],[-0.046510633081198,-0.1092187166214,0.13161416351795],[0.048406798392534,0.019435029476881,0.0091136563569307]],[[0.06388732790947,-0.094489201903343,0.035217881202698],[-0.08316221088171,-0.053510840982199,-0.027316700667143],[0.10134091973305,0.0098094185814261,0.028923137113452]],[[-0.065629459917545,-0.069618619978428,0.037525653839111],[0.020838221535087,0.0021730365697294,-0.0084888162091374],[0.04500550404191,0.067117631435394,0.023348765447736]],[[-0.050963383167982,0.018432784825563,-0.04094972088933],[-0.038745887577534,-0.01653510145843,-0.02155495248735],[-0.06315290927887,-0.019586557522416,-0.0303990598768]],[[-0.030998853966594,-0.086257264018059,-0.022236533463001],[-0.028901999816298,-0.10201761871576,-0.082126401364803],[-0.013650635257363,-0.10447014868259,-0.063819952309132]],[[-0.036563206464052,-0.087558090686798,-0.045007117092609],[-0.097266308963299,-0.15040382742882,-0.1388965845108],[-0.10652986913919,-0.024736313149333,0.026357006281614]],[[-0.02866142988205,-0.034420091658831,-0.015033927746117],[0.030318379402161,0.0157864484936,0.049899753183126],[0.040462300181389,-0.1010135486722,0.033557526767254]],[[0.01205359492451,0.12943638861179,0.15623654425144],[-0.13894613087177,-0.097189709544182,0.1032055541873],[-0.081581100821495,0.012744979932904,-0.039954267442226]],[[-0.093859605491161,-0.081326469779015,-0.05016478151083],[-0.012932249344885,0.029213480651379,0.058872483670712],[-0.073038712143898,0.05612825602293,-0.040828932076693]],[[-0.058381009846926,-0.068410433828831,-0.12906344234943],[0.043593537062407,-0.0040194182656705,0.13753688335419],[-0.028994347900152,0.013260871171951,0.010593414306641]],[[-0.11662474274635,-0.092554613947868,-0.064095169305801],[0.0023613688535988,0.062564127147198,-0.095175005495548],[0.096038185060024,0.11110114306211,0.036348760128021]],[[0.0099778454750776,-0.030685789883137,-0.081507459282875],[0.017708858475089,-0.1107908859849,-0.01049511320889],[0.041046649217606,0.064439192414284,0.078055180609226]],[[-0.030883356928825,0.047243632376194,0.023405993357301],[-0.10219411551952,-0.014941871166229,0.013567743822932],[-0.12068665772676,0.12990742921829,-0.071385875344276]],[[0.0054522873833776,-0.048338275402784,-0.0066777681931853],[0.059358928352594,-0.028471617028117,-0.015425560064614],[-0.00057994300732389,-0.04953145980835,-0.025654958561063]],[[-0.021105550229549,0.067109555006027,-0.02722492814064],[0.032192248851061,-0.031269881874323,0.014680883847177],[-0.051054526120424,0.029515812173486,-0.085296854376793]],[[0.13937449455261,0.010188794694841,0.0037819249555469],[-0.072869084775448,-0.037752229720354,-0.15989331901073],[-0.05618641525507,-0.033232558518648,-0.020920308306813]],[[0.061511471867561,-0.021147342398763,-0.20810358226299],[0.10797417163849,-0.017756797373295,-0.035672299563885],[0.15948480367661,0.024627750739455,-0.011778717860579]],[[-0.039783366024494,-0.010775594040751,-0.0360152348876],[-0.052949536591768,-0.034133985638618,0.038168735802174],[0.049284685403109,0.057762462645769,0.018637716770172]],[[-0.094650402665138,0.030460629612207,0.037389568984509],[-0.096982903778553,-0.099680177867413,0.060749337077141],[-0.081790700554848,-0.016059532761574,0.030341871082783]],[[-0.0041156192310154,-0.08429291844368,-0.056900691241026],[0.01004855427891,0.031526211649179,0.044141609221697],[0.057360619306564,0.010617575608194,-0.079325251281261]],[[0.078613393008709,-0.11797931790352,0.08209727704525],[-0.10395833849907,-0.17047737538815,-0.0021596874576062],[0.005894813220948,-0.10928765684366,0.0043740128166974]],[[0.04130419716239,-0.0023691218812019,-0.10058201104403],[-0.073591023683548,-0.044733807444572,0.0028650597669184],[-0.014440158382058,-0.011709863319993,-0.017082493752241]],[[-0.034233659505844,0.16969275474548,0.054531287401915],[-0.070508867502213,0.043748140335083,0.021689457818866],[0.015684841200709,0.05417413637042,-0.054011069238186]],[[-0.05873280018568,-0.0051606982015073,-0.062503702938557],[-0.02534375153482,0.0398582033813,-0.029819836840034],[-0.026200011372566,0.010563848540187,0.012207241728902]],[[0.0080734547227621,0.0025642535183579,0.033917136490345],[0.001335532637313,0.079987116158009,-0.069621957838535],[0.020940193906426,-0.077608115971088,-0.057815257459879]],[[-0.068245150148869,-0.040425203740597,-0.12557984888554],[-0.0029375362209976,0.01420428417623,-0.054417654871941],[0.064172469079494,0.028211373835802,-0.018102660775185]],[[-0.041973914951086,0.0087444186210632,0.0026509945746511],[0.038366980850697,0.0092720743268728,0.088888831436634],[-0.045940574258566,0.02663317322731,-0.037763804197311]],[[-0.12236384302378,0.096199244260788,0.013271110132337],[-0.01251086127013,0.0066459863446653,-0.024143308401108],[-0.0362668633461,-0.072034053504467,0.081834554672241]],[[-0.018984071910381,-0.051088217645884,-0.024577232077718],[-0.019111465662718,-0.057959772646427,0.050112962722778],[-0.0099510671570897,-0.010557725094259,-0.17341990768909]],[[-0.072414942085743,0.054165706038475,-0.048131249845028],[0.013466101139784,-0.009157438762486,0.19250081479549],[-0.054581392556429,-0.075133122503757,0.10991127789021]],[[0.089788742363453,0.07589115947485,0.038063000887632],[0.0076250690035522,-0.015176413580775,-0.078878834843636],[-0.038826771080494,-0.042491514235735,-0.05233733355999]],[[-0.093154735863209,-0.025169145315886,0.0044957036152482],[-0.051170472055674,-0.0051419264636934,0.038276251405478],[0.011151826009154,0.010109873488545,0.00057709432439879]],[[0.032199595123529,0.01767698302865,0.063519410789013],[-0.068754523992538,-0.0024020629934967,-0.041456028819084],[0.030974498018622,0.030389966443181,-0.056793119758368]],[[-0.040081795305014,-0.019385462626815,-0.091865442693233],[-0.066357210278511,-0.0078176874667406,0.0035975291393697],[-0.019230149686337,-0.023831874132156,-0.062584146857262]],[[0.055063594132662,-0.16425006091595,-0.13625428080559],[-0.082804024219513,-0.1823386400938,0.051838636398315],[0.011304931715131,-0.026935083791614,0.030760645866394]]],[[[-0.045449111610651,-0.048083264380693,0.003326463047415],[0.056368239223957,-0.082152515649796,0.023308884352446],[-0.11248232424259,-0.087982133030891,-0.06511065363884]],[[0.047779891639948,0.068464070558548,-0.091409459710121],[-0.19648936390877,-0.028696669265628,0.019312074407935],[0.035868749022484,-0.04673258960247,0.09755601733923]],[[-0.10014740377665,-0.015555363148451,0.023591443896294],[-0.054838221520185,-0.099268309772015,-0.081534430384636],[0.050816334784031,-0.032013386487961,-0.000216262837057]],[[-0.063131719827652,0.03129518777132,0.016009464859962],[0.072353959083557,0.0090833716094494,-0.027215974405408],[0.035300496965647,0.037620544433594,-0.086622454226017]],[[0.11751133948565,0.017303394153714,-0.011864075437188],[0.11300905048847,-0.078986577689648,0.066039636731148],[-0.040258295834064,-0.055004999041557,0.0005327868857421]],[[-0.027551995590329,0.078395523130894,0.011056487448514],[-0.11670342832804,-0.035319589078426,0.037461336702108],[-0.012460297904909,0.026334630325437,0.0013496576575562]],[[-0.0083954613655806,-0.0071603767573833,-0.061394851654768],[-0.025635944679379,-0.03395638987422,0.01795644313097],[-0.032453179359436,-0.0087661193683743,-0.0031782989390194]],[[0.034314416348934,0.054854735732079,-0.19013045728207],[0.040744267404079,0.022131402045488,0.069508165121078],[0.03174364566803,0.024729244410992,-0.015993345528841]],[[-0.049926050007343,-0.046992972493172,0.03644385188818],[0.071711711585522,0.063659898936749,-0.095060206949711],[-0.075590372085571,0.12574090063572,-0.00076840160181746]],[[-0.080143734812737,-0.049258321523666,-0.013751379214227],[-0.061011273413897,-0.070171743631363,0.0055983979254961],[0.052963372319937,0.036160197108984,0.06426540017128]],[[-0.011202421039343,-0.076770134270191,-0.041330266743898],[-0.023758245632052,-0.027764556929469,0.00033509370405227],[0.1877004057169,-0.060335356742144,-0.022577784955502]],[[0.063166998326778,-0.053781509399414,0.042527135461569],[-0.014189077541232,-0.030364193022251,0.0060150898061693],[-0.012988578528166,-0.036118663847446,0.0084435222670436]],[[-0.11663886159658,0.014975138939917,-0.046442873775959],[0.052418909966946,-0.017937319353223,-0.0070728198625147],[-0.066203497350216,0.085522122681141,-0.088871367275715]],[[0.051210749894381,0.011425762437284,-0.040601037442684],[0.052794642746449,-0.11015175282955,0.013130939565599],[-0.056267414242029,0.065097212791443,0.082312189042568]],[[-0.085729598999023,-0.036428548395634,-0.0070270579308271],[0.039663229137659,0.01527470164001,0.0029650952201337],[0.059138286858797,-0.046017676591873,-0.10672365128994]],[[0.051848448812962,0.023427199572325,0.078254714608192],[0.085059091448784,-0.063869647681713,0.045109082013369],[-0.093154102563858,-0.026167748495936,0.035012193024158]],[[-0.072346121072769,0.0065887570381165,-0.062179177999496],[-0.069599702954292,0.028249381110072,-0.0054147173650563],[0.0013668136671185,0.051293194293976,0.094664193689823]],[[0.011670968495309,-0.062150176614523,0.027232371270657],[0.037658698856831,-0.022768244147301,-0.057924550026655],[0.09878246486187,0.015917802229524,0.033358473330736]],[[0.01548024546355,0.026508569717407,-0.0056499801576138],[0.022924702614546,-0.045872911810875,0.019002685323358],[0.022937821224332,0.044740971177816,-0.059233468025923]],[[-0.024757612496614,-0.019311731681228,0.016337167471647],[0.046823978424072,-0.046369962394238,0.0029123139102012],[0.062910802662373,0.0047771246172488,-0.025296799838543]],[[-0.040563657879829,-0.017384858801961,0.0077639995142817],[-0.016239618882537,-0.053265757858753,0.0016546534607187],[0.074163176119328,0.040675941854715,-0.015677962452173]],[[0.14884231984615,-0.083041809499264,-0.090339682996273],[0.039081066846848,0.019786233082414,-0.047129333019257],[-0.026044003665447,-0.047707535326481,0.0013807952636853]],[[0.15550015866756,-0.030524104833603,0.048338036984205],[-0.11759197711945,-0.030606430023909,-0.0097886044532061],[0.1383073925972,0.044484231621027,0.089225724339485]],[[0.079993382096291,0.099318042397499,0.12188727408648],[0.0025138179771602,0.13414683938026,0.13019008934498],[-0.047015886753798,-0.018218146637082,0.18078200519085]],[[0.026423433795571,0.13817079365253,-0.082128249108791],[-0.050821479409933,-0.078358232975006,-0.042281698435545],[0.068172000348568,-0.063491135835648,-0.069249853491783]],[[0.012626591138542,0.013001236133277,0.03013208694756],[0.050593245774508,0.060579389333725,0.017081996425986],[-0.064523994922638,-0.00028983945958316,0.033249657601118]],[[-0.035932023078203,0.063898488879204,-0.07861003279686],[-0.0097664818167686,-0.045755688101053,0.067237190902233],[-0.057726100087166,0.022015545517206,-0.042837142944336]],[[-0.049129571765661,-0.01413410436362,-0.0582603700459],[-0.083175048232079,-0.12894269824028,-0.017250133678317],[0.0089573403820395,-0.0062251510098577,0.044854566454887]],[[0.06208760291338,-0.13125835359097,0.084072448313236],[0.083099141716957,0.042936321347952,-0.041978862136602],[0.032958272844553,-0.088467657566071,-0.046149495989084]],[[-0.013609827496111,0.067567855119705,0.034237749874592],[0.027185007929802,-0.13209390640259,0.014398041181266],[0.066035002470016,-0.02280879765749,-0.029936926439404]],[[0.016277614980936,-0.02266096137464,0.0099547393620014],[0.023824514821172,-0.032565999776125,0.028016172349453],[-0.056941363960505,0.02897572144866,-0.0095709534361959]],[[-0.044500023126602,-0.0059898775070906,-0.063013508915901],[0.026726119220257,-0.023323213681579,-0.040526006370783],[0.07970704138279,-0.05136526376009,0.080695405602455]],[[-0.065693587064743,0.021320624276996,-0.014694793149829],[-0.029762785881758,-0.0025358519051224,-0.013983984477818],[-0.074203573167324,-0.079168796539307,0.017782105132937]],[[0.0062284474261105,0.073583334684372,-0.04976598918438],[-0.016773635521531,0.054862625896931,-0.018927201628685],[-0.023227386176586,0.007656998001039,0.0024470041971654]],[[0.041867539286613,-0.027878098189831,0.04176127165556],[0.0014526020968333,-0.026597272604704,-0.13315540552139],[-0.099395528435707,0.028539139777422,-0.093916371464729]],[[0.10905207693577,0.016661705449224,-0.15286479890347],[0.10035058110952,0.034514520317316,-0.024502651765943],[0.024047357961535,-0.11172996461391,0.0097042266279459]],[[-0.10357620567083,-0.028747271746397,0.010446207597852],[0.044662661850452,0.057430628687143,-0.023625072091818],[-0.19255287945271,0.017417697235942,0.00037997588515282]],[[-0.057902868837118,0.09380267560482,-0.078425094485283],[-0.092671729624271,0.01340645737946,0.021677831187844],[0.099335059523582,-0.030908167362213,-0.018500300124288]],[[-0.1273837685585,-0.015023770742118,0.087021067738533],[-0.12908934056759,-0.030235178768635,-0.021879414096475],[-0.051456961780787,0.1243262141943,0.1747031211853]],[[-0.00069092068588361,0.032594233751297,0.047905564308167],[-0.017942482605577,-0.049115497618914,-0.033753175288439],[-0.018485832959414,-0.0068801869638264,-0.079488858580589]],[[0.018017357215285,-0.037638667970896,0.10655399411917],[-0.033500615507364,-0.13049584627151,-0.045785117894411],[-0.022940626367927,0.071420334279537,0.062856182456017]],[[-0.14348547160625,-0.055978022515774,0.037087339907885],[-0.019073504954576,0.14405371248722,-0.11666894704103],[-0.088574022054672,-0.0034645975101739,0.013377807103097]],[[0.013313910923898,-0.059968184679747,-0.12478849291801],[0.08355113863945,0.071883127093315,-0.0087694013491273],[0.055983666330576,0.077582478523254,-0.046660341322422]],[[0.065059386193752,-0.092680595815182,-0.006069484166801],[-0.077893063426018,-0.004578797146678,-0.10249600559473],[-0.02216724306345,0.18225806951523,0.11914427578449]],[[-0.020038960501552,0.013781735673547,-0.0086279949173331],[-0.12315591424704,0.013462110422552,0.018266374245286],[-0.010256473906338,-0.053789302706718,-0.025466846302152]],[[-0.028232360258698,0.084699831902981,-0.086702719330788],[-0.071356609463692,0.097765691578388,0.0030865299049765],[-0.022537067532539,-0.044210288673639,-0.075367964804173]],[[-0.077706761658192,-0.047588218003511,0.011709416285157],[-0.086408279836178,-0.098900876939297,0.020460277795792],[0.070238135755062,0.040021970868111,0.051620587706566]],[[0.033146809786558,-0.074686117470264,-0.068649441003799],[0.061020836234093,-0.007561004254967,-0.071833238005638],[0.0084984581917524,0.12914711236954,-0.083714224398136]],[[0.044808320701122,-0.059557251632214,-0.089459657669067],[0.024234866723418,0.014149433933198,0.00011125420132885],[-0.18757484853268,-0.019788609817624,-0.006182212382555]],[[-0.058375760912895,0.073171593248844,-0.028153020888567],[-0.058602910488844,-0.03925809264183,0.017261633649468],[0.0015977238072082,0.021521758288145,-0.011859581805766]],[[-0.088811837136745,-0.023857967928052,-0.048414941877127],[-0.022672910243273,0.024954609572887,-0.10380054265261],[-0.097733065485954,-0.040068257600069,-0.00099272921215743]],[[0.075343310832977,0.030929753556848,-0.1922795176506],[0.12146404385567,-0.060579564422369,-0.047483883798122],[0.30315229296684,-0.050104234367609,0.002661993028596]],[[0.02097331173718,0.0098139103502035,-0.10361029207706],[-0.060508906841278,0.019057806581259,-0.079262085258961],[0.13956280052662,-0.072979994118214,0.049001958221197]],[[-0.12751875817776,-0.067399628460407,-0.011235691606998],[-0.026307111606002,-0.00024224500521086,0.066991791129112],[-0.05535165220499,0.065562039613724,0.03760614991188]],[[0.045509841293097,0.0047287824563682,-0.041088175028563],[0.07180343568325,-0.035029541701078,-0.074140146374702],[-0.00011116923997179,0.038159903138876,0.0049125826917589]],[[0.0058006215840578,0.10374461859465,-0.073547847568989],[-0.10739227384329,0.036176316440105,0.067620016634464],[-0.14443302154541,-0.070841766893864,0.079620026051998]],[[-0.085680529475212,-0.00094759644707665,0.005975419189781],[-0.050032664090395,-0.017109801992774,0.0081203216686845],[-0.04316958039999,0.010085451416671,-0.075979053974152]],[[-0.080023728311062,-0.082138322293758,0.043792895972729],[0.011999636888504,-0.24864393472672,0.014267518185079],[0.12141904234886,-0.023142667487264,-0.03027450107038]],[[0.11853126436472,0.031740091741085,0.015864739194512],[0.013803141191602,0.10668975114822,0.10644299536943],[-0.05768258869648,0.054190713912249,0.11877870559692]],[[0.03098963201046,0.038598533719778,-0.033517591655254],[-0.058280013501644,0.077227957546711,0.0074761146679521],[-0.08920369297266,-0.0024707589764148,0.03413674980402]],[[0.035214088857174,0.043705061078072,0.011301676742733],[-0.088466010987759,0.1075567305088,0.04680485650897],[-0.1035071760416,-0.0043023745529354,0.006876063067466]],[[0.084446787834167,0.090036779642105,0.01227827463299],[-0.043852336704731,-0.10515548288822,0.019835429266095],[0.04436618834734,-0.054614167660475,-0.12991771101952]],[[-0.0012314823688939,-0.060494739562273,-0.022461902350187],[0.0707892999053,0.0045228088274598,-0.0009369570761919],[-0.088386334478855,-0.014543395489454,-0.090828746557236]],[[-0.1247336640954,0.09180349111557,0.041781611740589],[-0.0031605924014002,-0.032049600034952,0.0016571668675169],[0.024227244779468,-0.055701319128275,0.020642997696996]]],[[[-0.055934678763151,-0.11986501514912,0.04914765432477],[-0.044520698487759,0.065941490232944,-0.022744257003069],[0.035088136792183,-0.13299691677094,0.026230555027723]],[[0.05775348842144,0.071986250579357,0.066026367247105],[0.076388627290726,-0.01030283793807,0.0039090369828045],[-0.037065532058477,0.041656512767076,-0.024857345968485]],[[0.045926805585623,-0.01481487415731,0.0092495996505022],[-0.032845411449671,-0.01440516859293,-0.061653669923544],[-0.096183717250824,0.0070547219365835,-0.057379070669413]],[[-0.020446250215173,-0.065137967467308,0.0071716946549714],[-0.022824712097645,0.016156777739525,0.026045374572277],[-0.0078234449028969,0.090037032961845,-0.042063098400831]],[[-0.096103385090828,-0.0035683591850102,0.004821143578738],[0.10284920781851,-0.091439373791218,-0.032668437808752],[-0.064809784293175,0.076199024915695,0.029123736545444]],[[0.03605242818594,-0.017766768112779,-0.030167251825333],[0.036236882209778,0.0078280847519636,0.030220994725823],[-0.073519639670849,-0.077228114008904,0.016973756253719]],[[0.029010815545917,0.013198436237872,0.0358024276793],[0.022388063371181,-0.041577819734812,-0.020830119028687],[-0.074334122240543,-0.041172925382853,-0.058764092624187]],[[0.055638030171394,0.011183543130755,0.020574456080794],[-0.054278139024973,0.023556172847748,0.025066962465644],[-0.05198010802269,-0.046509619802237,0.056300226598978]],[[-0.093032531440258,0.0070202476345003,-0.044893532991409],[0.081090465188026,0.02662568539381,0.031478226184845],[0.035326447337866,0.013056432828307,0.028894269838929]],[[-0.0058246464468539,0.028629889711738,0.086253397166729],[0.0024208195973188,0.073801957070827,-0.068453587591648],[0.0090909656137228,-0.070346750319004,-0.024870522320271]],[[-0.068251512944698,0.0061702714301646,0.00263542518951],[0.047876965254545,-0.066171810030937,0.023189790546894],[0.024946620687842,0.008856263011694,0.054150782525539]],[[-0.014334863051772,0.076945938169956,-0.012981556355953],[-0.039722193032503,0.060288559645414,-0.023195933550596],[-0.072830475866795,-0.22118207812309,0.0052174138836563]],[[-0.02537851780653,-0.071546114981174,0.035569321364164],[0.046717647463083,-0.00077243964187801,-0.069594949483871],[-0.054718155413866,-0.032519191503525,-0.010303187184036]],[[0.012834670953453,-0.0056404336355627,0.00065599603112787],[-0.0029172541107982,-0.014259087853134,-0.014011431485415],[0.044174078851938,0.084614314138889,0.02919183857739]],[[0.088302277028561,-0.054963227361441,-0.012875717133284],[0.095281913876534,-0.0039274366572499,-0.006440703291446],[0.032500173896551,-0.0069243279285729,-0.080818548798561]],[[-0.042846761643887,0.03516298905015,0.004532374907285],[8.9790373749565e-05,-0.026134639978409,0.11712781339884],[0.10318178683519,0.050483614206314,-0.023649919778109]],[[0.059647284448147,0.084107503294945,0.08547455817461],[0.010809917934239,-0.0060358960181475,0.059907700866461],[-0.0062541924417019,-0.023727664723992,-0.061020564287901]],[[0.025187358260155,0.033682059496641,-0.037478636950254],[-0.018341170623899,0.045237421989441,-0.078514993190765],[-0.12506239116192,-0.043805528432131,-0.069595202803612]],[[0.029584370553493,0.029940536245704,0.062177278101444],[0.038278989493847,0.023746825754642,0.035508066415787],[-0.011767249554396,0.035247281193733,-0.032812412828207]],[[-0.0018962672911584,-0.020059170201421,-0.034999754279852],[0.012895673513412,-0.0037827678024769,-0.018881490454078],[0.0089225210249424,0.021207688376307,0.049120206385851]],[[0.010529062710702,0.026890674605966,0.028024854138494],[-0.039680391550064,-0.073493003845215,0.046622414141893],[0.039686236530542,-0.020813861861825,0.10049168020487]],[[-0.064275212585926,-0.075586654245853,-0.016214655712247],[-0.016115453094244,-0.084330730140209,0.085342586040497],[0.042572923004627,0.091070890426636,0.052207861095667]],[[0.031395055353642,0.066991031169891,0.01471205893904],[-0.091079376637936,0.02641131170094,-0.096984185278416],[-0.032769326120615,-0.083809114992619,-0.10997600853443]],[[0.038112990558147,-0.089417740702629,0.0020187958143651],[-0.0057620848529041,-0.089272156357765,0.053179726004601],[0.13675074279308,-0.04357098415494,0.10238563269377]],[[-0.032398089766502,0.096009328961372,0.10023018717766],[-0.039319273084402,0.0091911433264613,-0.050177782773972],[-0.12036055326462,-0.015887435525656,-0.13012340664864]],[[-0.025797234848142,0.060251977294683,-0.056698247790337],[0.060477573424578,0.044834937900305,0.015513336285949],[0.0024046059697866,0.092196129262447,0.030381545424461]],[[0.034264829009771,-0.0001754072291078,0.03224641084671],[0.053328420966864,-0.0256687104702,-0.046462517231703],[0.055820740759373,-0.027327263727784,0.011714482679963]],[[-0.0065067657269537,-0.0023947318550199,0.055807147175074],[0.034136671572924,0.031958442181349,0.030241467058659],[-0.026321223005652,0.0082885455340147,-0.070401325821877]],[[-0.024301439523697,-0.068055689334869,0.094032466411591],[-0.0214519854635,0.038943495601416,-0.10270509123802],[0.031565848737955,-0.013455736450851,-0.025648046284914]],[[0.094518765807152,0.044523864984512,0.15788567066193],[0.00453034741804,0.054850202053785,0.093470439314842],[-0.027174841612577,0.029234664514661,0.12500335276127]],[[0.094791769981384,0.072732374072075,0.035000424832106],[0.032991159707308,0.059005454182625,-0.048986751586199],[-0.007007987704128,0.096479527652264,-0.023392958566546]],[[0.034987784922123,-0.042127996683121,0.014689531177282],[-0.058603763580322,-0.046972159296274,-0.069198951125145],[0.03680756315589,-0.04973603785038,0.0040486319921911]],[[0.0068560233339667,-0.01048054266721,0.044685136526823],[-0.058900535106659,0.0029308898374438,0.034385915845633],[0.062041435390711,-0.055458854883909,-0.0030365737620741]],[[-0.043391142040491,0.0046253679320216,-0.048110947012901],[-0.07526096701622,-0.10581126064062,-0.053592208772898],[-0.036241807043552,-0.031075390055776,-0.1241420507431]],[[-0.017409177497029,-0.069965809583664,-0.016745405271649],[-0.037783429026604,-0.06037550419569,-0.063643828034401],[0.0088917491957545,-0.035993214696646,-0.028737638145685]],[[-0.014937368221581,0.047798443585634,-0.041427634656429],[0.014356719329953,0.003932879306376,-0.044026214629412],[-0.031001221388578,0.025437841191888,-0.05308285728097]],[[-0.0061630443669856,-0.010840913280845,0.11088928580284],[-0.023325392976403,-0.052801162004471,-0.0014440175145864],[0.15906921029091,0.075928725302219,0.047822523862123]],[[-0.042949225753546,0.011344026774168,0.0038987707812339],[0.044538557529449,0.055914595723152,-0.011253208853304],[-0.068183898925781,-0.048242952674627,-0.028210544958711]],[[-0.039902493357658,0.026825582608581,-0.048341941088438],[0.040132917463779,0.059586357325315,0.0189229529351],[0.0086542032659054,-0.077000081539154,0.053190756589174]],[[-0.016470769420266,-0.010698657482862,0.040936134755611],[-0.0036165236961097,-0.068288810551167,0.0096273915842175],[0.0027910973876715,-0.020263394340873,-0.023875698447227]],[[-0.060811124742031,0.069998353719711,-0.056621883064508],[0.012686287052929,0.027934078127146,-0.018646650016308],[-0.0050189271569252,0.029273744672537,0.11268454045057]],[[-0.015586025081575,-0.086598798632622,-0.015948919579387],[0.055826906114817,-0.014992693439126,-0.052512269467115],[0.0066505675204098,0.068778313696384,-0.010630471631885]],[[-0.0030920596327633,-0.00065405492205173,-0.0023929814342409],[-0.060823678970337,-0.0097658541053534,0.024901010096073],[-0.027120389044285,0.073812030255795,-0.001787566114217]],[[-0.0078721903264523,0.0031785983592272,-0.029542675241828],[0.028472185134888,-0.0091338269412518,-0.043002873659134],[-0.035543479025364,-0.035924520343542,-0.069097183644772]],[[-0.022697085514665,0.046961892396212,0.03698655962944],[0.012350440956652,0.010297383181751,0.051823940128088],[-0.027771342545748,0.0088395355269313,-0.02198619581759]],[[0.026475569233298,-0.062187846750021,0.0013540938962251],[0.12444037944078,-0.040596172213554,-0.086739629507065],[0.0048046656884253,-0.071564823389053,-0.10131876915693]],[[0.047817178070545,-0.030502989888191,0.036273546516895],[0.00029570524930023,-0.052715662866831,-0.045955572277308],[-0.057859882712364,0.0032848140690476,0.04432375729084]],[[0.0081900209188461,-0.036810975521803,0.065490737557411],[0.077305376529694,-0.14638724923134,-0.021657567471266],[-0.058111716061831,-0.1007137671113,0.054115545004606]],[[0.058681074529886,0.067508965730667,0.034135732799768],[-0.032932069152594,-0.027138633653522,-0.090601824223995],[0.025728723034263,-0.042610254138708,-0.089271448552608]],[[-0.0087263872846961,0.051036551594734,-0.0037228623405099],[-0.035429555922747,-0.037021327763796,0.030662754550576],[0.024948744103312,-0.019365351647139,0.04463130235672]],[[0.0099622793495655,0.041811171919107,0.048921059817076],[-0.00042170559754595,0.079717136919498,0.0046637230552733],[-0.031642057001591,-0.076895445585251,-0.074466675519943]],[[0.094639904797077,0.0080121485516429,-0.070093579590321],[0.11580716818571,0.047101125121117,0.21651200950146],[0.052667304873466,0.089801341295242,0.10580535233021]],[[-0.087290152907372,-0.017038268968463,-0.024480251595378],[0.033830795437098,0.11588551104069,-0.045719884335995],[0.04936258494854,-0.048307098448277,-0.019824655726552]],[[0.030099559575319,0.046437952667475,-0.04105070233345],[-0.11578703671694,0.073010973632336,0.0011609946377575],[0.082689672708511,-0.066715277731419,0.0295315310359]],[[0.097656100988388,0.023708578199148,-0.078883625566959],[-0.031775947660208,-0.061532232910395,0.10086581856012],[-0.013886791653931,0.020385291427374,-0.0055887210182846]],[[0.030420415103436,-0.021069431677461,-0.036742236465216],[-0.01039188914001,-0.093043439090252,-0.069214299321175],[-0.033922776579857,-0.071139127016068,-0.020405856892467]],[[0.0081648575142026,0.028023237362504,0.03500846400857],[0.023595796898007,0.04906203597784,0.00041862507350743],[0.14645075798035,0.0080073438584805,0.022784940898418]],[[0.017040561884642,-0.0035763175692409,0.11155582219362],[-0.02790505439043,0.076508112251759,-0.01159420888871],[-0.06634858250618,0.0036218126770109,-0.15737147629261]],[[-0.024339523166418,-0.013443202711642,0.016667764633894],[0.061869207769632,-0.022641217336059,0.011698732152581],[0.000100489363831,-0.01732237264514,0.011578420177102]],[[0.0064641726203263,0.076780937612057,0.05651530995965],[-0.067943453788757,-0.0083499206230044,0.012344280257821],[0.010403380729258,-0.056736178696156,-0.010088539682329]],[[-0.0043691289611161,-0.0053612748160958,-0.0027987605426461],[0.018472788855433,0.045533217489719,-0.0086581576615572],[0.04763912409544,0.047462396323681,0.033797211945057]],[[-0.10499058663845,-0.12627141177654,0.080084078013897],[-0.072167687118053,-0.0054157865233719,-0.018451491370797],[0.088186547160149,-0.022005898877978,0.033954061567783]],[[0.019767036661506,-0.082578279078007,-0.075929142534733],[-0.044727046042681,-0.072745218873024,0.0089874053373933],[-0.023609921336174,0.0063900607638061,0.015519564971328]],[[0.049696408212185,0.0035602310672402,-0.037491954863071],[0.012902950868011,-0.03769401833415,-0.042929872870445],[0.0015918149147183,-0.013631654903293,-0.071825452148914]]],[[[-0.04144886508584,-0.042721856385469,-0.0035165010485798],[-0.039340648800135,0.039742980152369,0.0071462006308138],[0.013759872876108,-0.02644008025527,0.0083691272884607]],[[0.077499754726887,0.086745329201221,0.011638446711004],[0.010145328007638,-0.089727364480495,0.011313965544105],[-0.031325608491898,-0.0094095645472407,0.0022597017232329]],[[-0.040698070079088,-0.13433757424355,-0.12737014889717],[0.010283192619681,0.009183588437736,0.073992155492306],[0.0033186036162078,0.023382706567645,0.10175466537476]],[[0.023272201418877,0.063027836382389,0.0066814878955483],[0.045028336346149,-0.050816964358091,-0.01428518909961],[-0.029819834977388,0.018661916255951,0.018041107803583]],[[-0.095931172370911,0.015062935650349,-0.0010569476289675],[0.0051351464353502,0.022474544122815,-0.093496456742287],[0.0070922542363405,-0.036836788058281,-0.080006644129753]],[[-0.10030010342598,0.016149355098605,0.021842576563358],[0.032481070607901,-0.023493684828281,0.0085152462124825],[0.021130813285708,-0.07672069221735,0.015906602144241]],[[-0.032475031912327,-0.11032113432884,-0.01757057569921],[0.014027488417923,-0.01684801094234,-0.032070491462946],[0.033007770776749,0.026861032471061,0.067470990121365]],[[-0.0029814278241247,0.038132537156343,0.029777994379401],[0.069991871714592,0.0487260222435,0.033498890697956],[-0.0057763131335378,-0.01486249268055,0.0071476171724498]],[[-0.04660838842392,0.04660777375102,-0.16090150177479],[0.026873787865043,0.089937768876553,0.036656633019447],[-0.042283546179533,0.080951303243637,-0.0049539217725396]],[[-0.04150202870369,-0.078598849475384,-0.052051559090614],[-0.050849370658398,-0.037294760346413,-0.076757073402405],[0.10964362323284,-0.016966961324215,0.062431510537863]],[[-0.0033798881340772,-0.030300296843052,-0.030365768820047],[0.044646322727203,0.0022631927859038,-0.0371238514781],[0.0221843495965,0.016627037897706,0.009149132296443]],[[-0.03783081844449,-0.10726608335972,-0.084213823080063],[-0.047348614782095,0.0044841505587101,-0.01341206394136],[-0.025169651955366,0.014523174613714,0.009351690299809]],[[-0.0061834882944822,-0.01300043053925,0.033222317695618],[0.0163982398808,-0.062532342970371,0.0046984991058707],[-0.038080908358097,-0.021145280450583,-0.037999007850885]],[[0.021398881450295,0.047689814120531,0.031790371984243],[-0.092806823551655,-0.069025583565235,-0.039421357214451],[-0.0034960764460266,-0.034673783928156,-0.11747269332409]],[[0.067151501774788,0.016045311465859,-0.052874270826578],[0.06256440281868,-0.01395389996469,-0.076440557837486],[-0.068998910486698,-0.029478125274181,-0.0015902023296803]],[[0.034661389887333,-0.034157704561949,-0.04956466332078],[0.076159611344337,0.044379506260157,0.011148135177791],[0.032527208328247,-0.032453194260597,0.067922227084637]],[[0.05622736364603,-0.08211661875248,-0.022751070559025],[0.058062594383955,0.02419438585639,0.018355790525675],[0.00023953948402777,-0.007802193518728,0.0071940831840038]],[[-0.12705701589584,-0.016064034774899,0.068173453211784],[0.017811810597777,0.10076380521059,0.10916643589735],[-0.0093593085184693,0.068774998188019,0.039254039525986]],[[0.00020956517255399,0.027729397639632,0.010386597365141],[0.0011532100616023,0.010981609113514,0.05749636143446],[0.011872635222971,-0.0079042762517929,0.044500317424536]],[[-0.0019726729951799,0.02248815074563,-0.028073051944375],[0.0094349002465606,-0.057024914771318,0.0032194964587688],[0.023470044136047,0.0080485166981816,0.044499300420284]],[[0.052090607583523,0.10783179849386,0.038611326366663],[-0.062487252056599,-0.04417459666729,-0.030546912923455],[0.015496061183512,-0.099962040781975,-0.035856649279594]],[[-0.0068905726075172,-0.03155866637826,-0.11387968808413],[0.061564240604639,0.062079098075628,-0.014957718551159],[-0.040100235491991,0.0099196340888739,0.027871370315552]],[[0.053242657333612,0.043738309293985,-0.055529784411192],[-0.080912359058857,-0.006982047110796,-0.073996752500534],[-0.031466543674469,-0.0094378273934126,0.002751748310402]],[[-0.054071374237537,0.035039573907852,0.013694381341338],[0.10488476604223,0.074878096580505,0.079697161912918],[0.09476526081562,0.13008320331573,0.039375059306622]],[[0.024506332352757,-0.032970488071442,-0.16108492016792],[0.0034135561436415,0.025503005832434,-0.026020314544439],[-0.079217985272408,-0.00045504112495109,0.0096012772992253]],[[-0.023582760244608,-0.058418150991201,0.0065666027367115],[-0.02440214715898,-0.030883682891726,-0.029246209189296],[0.051892261952162,0.053401738405228,0.064516745507717]],[[-0.13637536764145,0.016356060281396,0.07563004642725],[0.041426878422499,-0.045383539050817,-0.10486114025116],[-0.035210754722357,-0.01203406136483,0.0093425819650292]],[[-0.0065882937051356,0.075738944113255,0.043688498437405],[0.022791301831603,-0.016981763765216,0.034978158771992],[-0.054371643811464,0.0276805665344,0.014149247668684]],[[-0.030021522194147,0.006475041154772,-0.035349670797586],[-0.022277588024735,-0.0012787012383342,0.04392421245575],[-0.00018458114936948,-0.033592317253351,0.023355562239885]],[[-0.011647121980786,-0.014891163446009,-0.055147603154182],[0.07404900342226,-0.075996376574039,-0.033421840518713],[0.06257251650095,0.027286790311337,-0.021144764497876]],[[0.015708474442363,-0.07385116815567,-0.091720007359982],[0.058959826827049,-0.032021816819906,-0.086258821189404],[0.08720438182354,-0.039459079504013,0.019381709396839]],[[0.077042974531651,-0.018451415002346,-0.00094213866395876],[-0.077866159379482,0.083298251032829,-0.0059056873433292],[0.030065940693021,0.078673176467419,-0.031607627868652]],[[0.01236329600215,-0.031938895583153,-0.050887189805508],[0.045342788100243,-0.032970141619444,0.017200829461217],[0.0062826606445014,0.015089892782271,-0.012690955772996]],[[0.024658871814609,0.12597340345383,0.032517582178116],[0.0091246347874403,-0.1277119666338,-0.11704236268997],[-0.12337490916252,0.022888807579875,0.0093626882880926]],[[-0.0010972371092066,0.0040735770016909,0.00065329548669979],[-0.022157698869705,0.018068004399538,0.0054183946922421],[-0.0099997678771615,-0.017861157655716,-0.088515117764473]],[[0.063775472342968,0.0094358706846833,0.062164854258299],[-0.042452584952116,-0.056679654866457,0.013789867982268],[-0.035754676908255,0.0041438899934292,0.0043101720511913]],[[-0.11285751312971,-0.09900788217783,-0.084574647247791],[0.029641643166542,0.06043378636241,0.12103677541018],[0.051965516060591,0.04336753860116,0.043142221868038]],[[-0.027293488383293,-0.040183294564486,0.034096121788025],[-0.084886997938156,-0.042263921350241,-0.02261658012867],[0.027921671047807,-0.11581172049046,-0.092630133032799]],[[-0.096342116594315,-0.030146928504109,-0.046931371092796],[0.052431587129831,-0.030925555154681,0.0073713664896786],[-0.016719354316592,0.038211170583963,-0.0062939426861703]],[[0.031183715909719,-0.010578497312963,0.10420582443476],[-0.044832210987806,0.039780333638191,0.0091996351256967],[-0.0070346114225686,-0.041055519133806,-0.041999034583569]],[[-0.007895078510046,0.063960880041122,0.060339372605085],[-0.087614662945271,-0.062734857201576,0.024399701505899],[0.0080105289816856,0.038709837943316,0.026712704449892]],[[0.011467481032014,0.08268990367651,0.020474979653955],[0.024375431239605,-0.10407900065184,0.017708258703351],[0.052945129573345,-0.14268305897713,-0.023292561993003]],[[0.0080735571682453,0.011664011515677,-0.08412766456604],[-0.051780413836241,0.072818987071514,-0.04797338321805],[-0.0028062318451703,-0.022903552278876,-0.068198256194592]],[[0.07110071182251,0.049208678305149,0.078816875815392],[-0.097396925091743,0.029085259884596,0.047454066574574],[-0.064362451434135,-0.0055396668612957,-0.1062620356679]],[[-0.033132530748844,-0.087842769920826,0.098044455051422],[-0.027138276025653,-0.029104700312018,-0.050711516290903],[0.020773109048605,0.049351826310158,0.032275028526783]],[[-0.089515939354897,0.12337736040354,-0.1704994738102],[-0.020308416336775,-0.043276753276587,-0.084678471088409],[0.014276570640504,0.0062283910810947,-0.029536342248321]],[[-0.051619034260511,-0.024133184924722,-0.080605715513229],[0.024738663807511,0.033893626183271,-0.0033736422192305],[0.0099449902772903,0.071928270161152,-0.011062108911574]],[[-0.035201396793127,-0.046235989779234,0.013237270526588],[0.0077550122514367,0.038982979953289,-0.080606020987034],[0.039936520159245,0.016720522195101,-0.0040215593762696]],[[0.11858747899532,0.04643426835537,-0.074103273451328],[-0.11685568839312,0.0017589754424989,0.057544905692339],[0.0093079414218664,0.023590106517076,0.00021070188086014]],[[0.017244406044483,-0.04228612780571,-0.0019250767072663],[0.041377857327461,0.048944979906082,-0.032138172537088],[0.019601974636316,-0.056517299264669,-0.0033232932910323]],[[0.11047367751598,0.026691973209381,-0.0084718586876988],[-0.0053143431432545,-0.047874867916107,-0.046345014125109],[-0.060866579413414,-0.14834547042847,-0.017270058393478]],[[0.10697670280933,0.14988160133362,0.054241698235273],[0.058494865894318,0.072423480451107,-0.046798326075077],[0.1245052665472,-0.096143156290054,-0.0036539749708027]],[[-0.021706234663725,-0.0027238314505666,0.090371288359165],[-0.00039018061943352,-0.029825825244188,0.059212252497673],[-0.080800794064999,0.01853390596807,0.038376111537218]],[[-0.015349796973169,-0.038482017815113,-0.056099396198988],[0.043932370841503,-0.10442446172237,0.00034209116711281],[0.068755775690079,0.052058547735214,-0.083347961306572]],[[0.0075821476057172,0.061482824385166,-0.020035466179252],[-0.044469494372606,0.024137765169144,0.10876879841089],[0.0006118820165284,0.014962024055421,0.038742773234844]],[[-0.046131111681461,-0.030778627842665,-0.011520565487444],[0.041813462972641,0.05836359411478,-0.002779722912237],[0.019276501610875,-0.0092991543933749,0.035347864031792]],[[-0.041811928153038,-0.040702857077122,-0.0031031516846269],[-0.059600256383419,0.043533828109503,-0.013468076474965],[0.037264250218868,-0.041393782943487,0.017389494925737]],[[0.081161327660084,-0.056742500513792,0.020238192752004],[-0.096267312765121,-0.064363501966,-0.0036053326912224],[0.017384961247444,-0.035236589610577,-0.03826604411006]],[[0.035348247736692,-0.0064964457415044,-0.11221372336149],[-0.0088561773300171,-0.04131069406867,-0.011873815208673],[0.012859515845776,0.11667799949646,0.09329055249691]],[[-0.012975916266441,0.0046041738241911,0.032280508428812],[-0.0020673233084381,-0.0097394837066531,0.029756769537926],[0.011144906282425,-0.013797625899315,-0.040402680635452]],[[-0.10163754224777,-0.0047115227207541,-0.018661171197891],[-0.012837827205658,-0.10002049803734,-0.079547107219696],[-0.008166678249836,-0.00059081113431603,-0.1009009256959]],[[-0.033229295164347,-0.042158242315054,-0.037853546440601],[-0.10324665904045,-0.037526831030846,-0.031280409544706],[-0.034861493855715,0.00031387581839226,0.00097468338208273]],[[0.082342684268951,0.012048416770995,-0.049809210002422],[-0.0063664223998785,0.038635279983282,-0.067295394837856],[0.020025096833706,0.0023231643717736,-0.029703345149755]],[[0.045456144958735,-0.034092586487532,-0.060464579612017],[-0.039220854640007,-0.1081075668335,0.026161104440689],[0.026934191584587,-0.02056541107595,0.013059875927866]]],[[[0.045724116265774,-0.060828436166048,-0.049128115177155],[-0.0034028931986541,-0.012301828712225,0.022541012614965],[0.016209466382861,0.096087396144867,-0.077941469848156]],[[-0.0099533693864942,-0.078958004713058,-0.069127053022385],[-0.006275350227952,-0.036013439297676,-0.052603758871555],[-0.0040344153530896,-0.059462878853083,0.017327047884464]],[[-0.034300837665796,0.0063258479349315,0.0068713552318513],[0.039911463856697,-0.11645205318928,0.017437148839235],[-0.023552810773253,-0.0052844886668026,-0.067457444965839]],[[0.052491951733828,-0.10921014100313,-0.061873316764832],[-0.07064139097929,0.026296481490135,0.02230466902256],[-0.09666495770216,0.0037103891372681,0.0060289297252893]],[[0.019205829128623,0.0099714668467641,-0.0038887104019523],[0.0066358046606183,0.010966598056257,0.063608728349209],[0.034218240529299,0.038790851831436,0.059576213359833]],[[-0.044269639998674,-0.039378378540277,0.028991894796491],[-0.067176505923271,-0.011387867853045,0.03947377204895],[0.043679621070623,0.022217595949769,-0.049926318228245]],[[0.10973451286554,-0.060618057847023,-0.0068823997862637],[0.0018078089924529,-0.090939775109291,-0.01984048448503],[-0.026165099814534,-0.12569074332714,0.0043956721201539]],[[-0.039143174886703,-0.11887811124325,-0.089204572141171],[-0.01896845921874,-0.039791706949472,0.020603993907571],[-0.056154996156693,-0.011383220553398,0.024515373632312]],[[0.048972465097904,0.0016227216692641,0.02303091622889],[-0.050486899912357,-1.54951994773e-05,-0.049498576670885],[-0.053450390696526,0.059402842074633,-0.034876063466072]],[[-0.063191317021847,-0.049515668302774,0.07973887771368],[0.093391217291355,0.00015805453585926,-0.046686958521605],[-0.015744430944324,-0.052762635052204,-0.14514724910259]],[[-0.078593552112579,0.0056178774684668,0.047048725187778],[0.042035330086946,-0.02274414896965,0.018609723076224],[-0.022731734439731,-0.0082078222185373,0.055775366723537]],[[0.034636415541172,0.096778951585293,0.0016295821405947],[0.037869043648243,-0.034634985029697,0.021955206990242],[0.064124777913094,0.10065990686417,-0.037932768464088]],[[0.0043926001526415,-0.059274606406689,-0.044927425682545],[-0.018578741699457,-0.058713179081678,0.0090131312608719],[-0.019270103424788,-0.076928347349167,-0.042206387966871]],[[0.073239631950855,0.098657846450806,-0.028608599677682],[0.020014924928546,0.017260085791349,0.038256421685219],[-0.025581572204828,-0.051279291510582,-0.021493822336197]],[[-0.055170334875584,0.0041190087795258,-0.030845485627651],[-0.035406623035669,0.10629767924547,-0.046735368669033],[-0.020577281713486,-0.019801015034318,-0.005086696241051]],[[0.046402677893639,-0.029678978025913,0.041866157203913],[-0.021790677681565,-0.029613150283694,0.016717651858926],[0.052462663501501,0.023075435310602,0.072700411081314]],[[-0.055492524057627,-0.021923463791609,0.036225996911526],[0.050471842288971,0.076268076896667,0.021781513467431],[0.046760428696871,0.096218608319759,0.010287231765687]],[[-0.019316541031003,-0.092131786048412,-0.032020144164562],[-0.056090749800205,0.0047914413735271,-0.091808781027794],[-0.10028598457575,-0.050675880163908,0.056460008025169]],[[0.043006226420403,-0.01168719958514,-0.0029322458431125],[0.051331833004951,0.030557308346033,-0.0025731816422194],[0.032627139240503,-0.04913080483675,-0.084507800638676]],[[-0.0148801272735,0.041304659098387,0.019363302737474],[-0.038158547133207,-0.037708178162575,-0.0085431011393666],[0.029171973466873,-0.031296774744987,0.05953623726964]],[[0.077816285192966,0.022091438993812,-0.057321175932884],[0.020122552290559,-0.037847213447094,-0.10576233267784],[-0.053263016045094,-0.087511874735355,-0.06543030589819]],[[0.059485230594873,-0.1312140673399,-0.050673741847277],[-0.034713800996542,0.015845257788897,-0.027737081050873],[0.00036946430918761,0.058602266013622,0.067849174141884]],[[0.047040488570929,0.068279102444649,0.09464069455862],[0.041455890983343,0.0084678921848536,-0.050266578793526],[-0.049689523875713,-0.044915046542883,-0.11329611390829]],[[0.08552598208189,0.058729447424412,0.0076122554019094],[0.095547407865524,0.046202816069126,0.011707533150911],[-0.028171857818961,0.0016460565384477,0.012062001042068]],[[-0.014746414497495,0.07096105068922,0.054370194673538],[-0.0019846598152071,-0.004672194365412,-0.013345714658499],[-0.0165322329849,0.025197993963957,-0.017662299796939]],[[0.016724226996303,0.042014978826046,-0.019899185746908],[0.034667156636715,0.047394830733538,-0.0096796313300729],[0.039845332503319,0.025611421093345,0.06176894530654]],[[0.11111681163311,0.037318099290133,-0.02041550911963],[-0.0038138451054692,0.093677692115307,-0.011920657008886],[0.078233137726784,-0.017592808231711,-0.025897374376655]],[[-0.055863175541162,0.022099258378148,-0.022474413737655],[-0.15145887434483,0.065347693860531,-0.077341191470623],[0.022764969617128,-0.031238747760653,-0.021601704880595]],[[0.011353770270944,0.022705238312483,0.045818522572517],[0.058517832309008,-0.029650460928679,0.020548265427351],[0.017631027847528,-0.016913836821914,-0.013148682191968]],[[0.040749978274107,0.028654472902417,0.11354131251574],[0.012611974962056,-0.00015729616279714,0.013227425515652],[0.070491105318069,0.046694289892912,0.10344710201025]],[[-0.05102688446641,-0.057771239429712,-0.043116576969624],[-0.049403827637434,-0.022528203204274,0.013268779031932],[-0.076166279613972,0.019326252862811,-0.067127294838428]],[[0.029409663751721,-0.025894712656736,0.011326431296766],[0.012899594381452,0.076476782560349,-0.012433955445886],[-0.092232905328274,-0.027847189456224,0.00084998254897073]],[[0.047124575823545,0.0051482175476849,0.048686642199755],[0.0023335185833275,-0.018283853307366,-0.056031249463558],[-0.052886169403791,-0.0020921174436808,-0.048893511295319]],[[0.027091378346086,0.041242152452469,-0.04964853823185],[-0.050653960555792,-0.026289988309145,0.0749371945858],[0.056672479957342,0.034777253866196,-0.034387238323689]],[[0.09491316229105,0.07487615197897,0.03905675560236],[0.045155379921198,0.015262059867382,-0.027357652783394],[0.00018400613043923,-0.017658663913608,-0.047072283923626]],[[-0.025999143719673,-0.1319160759449,-0.05076676607132],[0.039876699447632,-0.080532483756542,-0.092897415161133],[-0.040146321058273,-0.041963066905737,-0.022869717329741]],[[0.11315842717886,-0.026368020102382,0.055802937597036],[0.0082570547237992,-0.040392305701971,0.09358000010252],[-0.020532606169581,-0.025550100952387,0.031255561858416]],[[-0.071513287723064,0.05711555480957,-0.076401345431805],[0.0022651795297861,0.0050231185741723,-0.04262113571167],[-0.040015414357185,-0.020130703225732,-0.017524814233184]],[[-0.045984487980604,0.054158084094524,0.040818572044373],[-0.0028412353713065,-0.013331742957234,-0.013243563473225],[0.011467883363366,-0.014553132466972,-0.026221144944429]],[[0.069493509829044,0.087753415107727,-0.036568120121956],[-0.0011191325029358,-0.067765235900879,0.00038448144914582],[-0.0045926114544272,-0.031253252178431,-0.0051194047555327]],[[0.071534916758537,-0.0014047973090783,-0.0032265749759972],[-0.10807480663061,-0.066548675298691,-0.027461813762784],[-0.04093411564827,0.037168059498072,-0.045502543449402]],[[0.070105247199535,0.002963139442727,-0.055673412978649],[-0.020563516765833,0.013920305296779,0.014559344388545],[-0.1087952926755,-0.028128251433372,-0.093654498457909]],[[-0.0015622145729139,0.096193671226501,0.026575641706586],[0.031739830970764,0.00063595443498343,0.0096267741173506],[0.0051026842556894,-0.011059880256653,0.060288064181805]],[[0.014355986379087,0.037737976759672,0.0084769455716014],[-0.044063556939363,-0.061749514192343,0.034899808466434],[-0.094111651182175,-0.020767416805029,-0.0076971226371825]],[[-0.047920498996973,-0.048991169780493,0.14263896644115],[-0.13760578632355,-0.0080709801986814,0.050625085830688],[-0.13395141065121,0.04571607708931,-0.021817922592163]],[[-0.02956023812294,0.032413244247437,0.078908860683441],[-0.038881439715624,-0.037601813673973,-0.02566734701395],[0.028810596093535,-0.024492425844073,-0.018336346372962]],[[0.031016875058413,-0.045868840068579,-0.049865499138832],[0.035997916013002,0.032520204782486,0.0056928750127554],[0.062305055558681,-0.010744311846793,0.0075839958153665]],[[-0.029541254043579,0.089928142726421,-0.057967953383923],[-0.099735297262669,-0.040125172585249,-0.15955226123333],[0.07194060832262,0.022513723000884,0.094444118440151]],[[-0.094184070825577,0.012986950576305,0.091744743287563],[-0.044753897935152,0.063521906733513,-0.041468694806099],[-0.078499600291252,-0.077608481049538,-0.069385185837746]],[[0.053668685257435,-0.055677086114883,0.0006416596006602],[-0.023841744288802,-0.030684698373079,-0.022245805710554],[-0.0249063372612,0.049942187964916,-0.1400440633297]],[[-0.012044223025441,-0.028815265744925,0.031942371279001],[0.041392978280783,-0.038348287343979,-0.026633938774467],[0.010051143355668,0.01564047858119,-0.054390411823988]],[[-0.011153960600495,0.023844998329878,0.025597995147109],[0.087699830532074,0.034856650978327,-0.015891375020146],[-0.072065711021423,-0.03643935918808,0.10890012234449]],[[-0.042605269700289,0.080035209655762,-0.024836454540491],[-0.012333642691374,0.012712842784822,0.062477041035891],[-0.0063481945544481,-0.080810956656933,-0.02652976103127]],[[-0.073616534471512,-0.049354583024979,0.0067312433384359],[0.0021461339201778,0.022046539932489,0.0002874766360037],[-0.092917427420616,0.032074198126793,-0.013885964639485]],[[-0.074800260365009,0.029952177777886,-0.12378832697868],[0.078724540770054,-0.060349952429533,0.062394581735134],[0.0022675846703351,0.020963517948985,-0.10604547709227]],[[-0.020618759095669,0.057092756032944,-0.043266698718071],[0.026440223678946,-0.037123743444681,0.028593428432941],[0.0072121219709516,0.0086274854838848,-0.009405056014657]],[[0.046913955360651,-0.082416385412216,0.017322497442365],[0.0062866699881852,-0.026538321748376,-0.075979679822922],[0.10657728463411,0.084259197115898,-0.082383312284946]],[[-0.068871542811394,0.0047333403490484,0.022887527942657],[-0.095951110124588,0.0090421652421355,0.05321391671896],[0.026836706325412,0.027186539024115,0.017922574654222]],[[0.16378888487816,0.028590146452188,0.087871134281158],[-0.029771557077765,0.044195730239153,0.078526295721531],[0.10459168255329,0.033053744584322,0.03939763084054]],[[0.029807616025209,-0.05368484556675,-0.058997228741646],[0.054077804088593,0.052708279341459,-0.0041999919340014],[0.028684411197901,0.01201456040144,-0.04251891747117]],[[0.029347620904446,0.072096094489098,0.018570512533188],[-0.022519970312715,-0.053185634315014,0.025678675621748],[0.044479519128799,-0.090035453438759,0.012887078337371]],[[-0.033645063638687,-0.054288297891617,0.014665924943984],[-0.016054552048445,-0.0026023364625871,0.021933704614639],[-0.023147290572524,-0.069150827825069,-0.10124955326319]],[[0.025759667158127,-0.051842972636223,-0.029898952692747],[-0.007247541565448,0.015959814190865,-0.034571878612041],[0.016542367637157,0.02707377448678,0.0076318280771375]],[[-0.044591292738914,0.049068886786699,0.021661313250661],[0.0076143997721374,-0.00010896025196416,0.031082296743989],[-0.055979464203119,0.070288382470608,-0.015009672380984]]],[[[0.040315244346857,-0.020340170711279,0.011916787363589],[-0.0028596455231309,0.10296036303043,0.050380267202854],[-0.030934758484364,0.14287357032299,0.092434644699097]],[[-0.0013757204869762,0.07342392206192,0.11565835773945],[0.087356045842171,0.012464378029108,0.031546737998724],[-0.01641664840281,-0.051640827208757,-0.019877843558788]],[[-0.13806913793087,-0.021102547645569,-0.017601441591978],[-0.052565332502127,-0.02411126345396,0.059910207986832],[-0.11606821417809,-0.01044640224427,-0.033516924828291]],[[0.0037494585849345,-0.051712848246098,-0.073461584746838],[0.018882373347878,0.085441425442696,-0.071002788841724],[0.03612007573247,0.018419707193971,-0.012488665059209]],[[0.11666893959045,0.14654083549976,-0.077636025846004],[0.062575623393059,0.028431709855795,-0.072507359087467],[0.02582298591733,-0.038281988352537,-0.077101588249207]],[[0.039632074534893,0.047265078872442,0.12279794365168],[-0.031300652772188,-0.06080274283886,0.010752088390291],[-0.085729122161865,-0.09870607405901,-0.10115692764521]],[[-0.11346476525068,-0.017920333892107,-0.011346387676895],[0.028675539419055,0.087066620588303,0.036203421652317],[-0.0023459091316909,-0.0077475989237428,-0.054079607129097]],[[0.080993242561817,-0.12901064753532,-0.007004598621279],[0.069021739065647,0.046286553144455,0.025016646832228],[0.064241051673889,-0.038134764879942,0.060272037982941]],[[0.064470887184143,-0.062634781002998,-0.0031823944300413],[-0.013119178824127,-0.066032893955708,0.010061365552247],[0.014172669500113,-0.044581793248653,0.0062477369792759]],[[0.029999461025,0.092624306678772,-0.16780783236027],[0.049445740878582,0.052188143134117,0.0096658570691943],[0.070331625640392,0.045440286397934,0.00092050357488915]],[[-0.16303838789463,-0.058136094361544,0.064991749823093],[0.034158021211624,-0.083028510212898,-0.0031978930346668],[-0.012841396965086,-0.059705790132284,-0.026893094182014]],[[0.098617434501648,-0.10356757044792,0.10291108489037],[-0.084605477750301,-0.048893250524998,0.059288360178471],[-0.15970546007156,0.0086959768086672,-0.013944136910141]],[[0.021085003390908,-0.032722309231758,-0.047961361706257],[-0.081711128354073,-0.052854992449284,-0.068993575870991],[-0.12577655911446,-0.041455592960119,0.001077723922208]],[[-0.0074905576184392,-0.042422402650118,-0.045441560447216],[0.067626930773258,-0.0010957883205265,-0.037316672503948],[0.081142902374268,0.0065915859304368,-0.06146090850234]],[[-0.15487068891525,0.027778400108218,-0.009975278750062],[-0.081339322030544,0.09441015869379,-0.0065487800166011],[-0.057816609740257,-0.064968332648277,0.068491153419018]],[[0.069278553128242,-0.052028339356184,-0.0905746743083],[-0.0076909670606256,-0.0061602452769876,-0.0086384573951364],[0.019477786496282,-0.0073666116222739,-0.0042596687562764]],[[0.072567462921143,0.16234992444515,0.057815261185169],[0.08703751116991,-0.013837782666087,0.038296259939671],[-0.059801638126373,0.032028928399086,-0.0074801533482969]],[[0.031635031104088,0.038640052080154,-0.0034393400419503],[0.059342067688704,-0.014231103472412,0.087076872587204],[-0.05158880725503,-0.040719628334045,0.055923130363226]],[[0.012895874679089,-0.062687210738659,-0.13719746470451],[0.10137666761875,0.092435956001282,-0.043043114244938],[0.015494139865041,-0.033259805291891,0.029612388461828]],[[-0.021424101665616,-0.029800239950418,-0.018167324364185],[-0.0023579697590321,0.05166257917881,0.037438116967678],[-0.014017392881215,-0.013569304719567,0.019729448482394]],[[0.064408987760544,-0.011413088999689,0.0031544922385365],[-0.051199112087488,-0.03185498341918,-0.033419366925955],[-0.027911137789488,-0.16531100869179,-0.085899941623211]],[[0.030044533312321,-0.1308451294899,0.14143420755863],[-0.017621174454689,0.061928819864988,-0.066253572702408],[-0.077418632805347,-0.00076192116830498,0.080000504851341]],[[-0.045095156878233,-0.013806129805744,0.013956045731902],[-0.23481498658657,0.24561114609241,0.054800320416689],[-0.030302409082651,-0.017855318263173,-0.011745883151889]],[[-0.12405812740326,0.046983078122139,-0.071114979684353],[0.029247926548123,0.026725763455033,-0.0012322622351348],[0.1211179792881,-0.0048494744114578,0.022242581471801]],[[0.029233118519187,0.12275426834822,-0.0065532773733139],[-0.035088866949081,0.043966598808765,0.07357120513916],[-0.15957853198051,-0.098461396992207,-0.030243463814259]],[[0.011460857465863,0.033932600170374,0.13124816119671],[0.058459173887968,0.058524686843157,-0.0039369505830109],[0.024300971999764,-0.027936948463321,0.031848326325417]],[[-0.011307434178889,-0.034405872225761,-0.041959397494793],[-0.034788567572832,-0.099372483789921,0.04605720937252],[0.044359598308802,-0.016993138939142,-0.07031337916851]],[[-0.10144158452749,0.023069705814123,0.031089229509234],[-0.0053477808833122,0.035431142896414,0.0059938258491457],[-0.051576476544142,-0.039262089878321,-0.04080231115222]],[[0.062284015119076,-0.0066007780842483,0.0084652341902256],[0.067677386105061,-0.012009529396892,-0.047673773020506],[-0.051151163876057,-0.041591439396143,0.055371161550283]],[[-0.042380526661873,0.076121464371681,0.0092539340257645],[0.012280533090234,0.051221497356892,0.057383805513382],[-0.025472097098827,-0.04939591139555,0.027183556929231]],[[-0.014295051805675,-0.0091175641864538,-0.013389865867794],[-0.055069752037525,0.0081056784838438,0.026389133185148],[-0.034346155822277,0.056548293679953,0.066834054887295]],[[0.0068771727383137,0.019699288532138,-0.11687068641186],[-0.044862579554319,0.011836916208267,0.0087120346724987],[-0.054546676576138,0.10590667277575,-0.079822577536106]],[[-0.096962139010429,0.050550941377878,-0.091612227261066],[-0.053168255835772,-0.054917771369219,0.081448934972286],[0.0079323565587401,-0.026285450905561,0.010459989309311]],[[-0.052536569535732,-0.0076359631493688,-0.13590440154076],[-0.069360814988613,0.10127228498459,-0.073176875710487],[-0.078394778072834,0.12469424307346,0.10072216391563]],[[0.052592623978853,0.00567247858271,0.009033945389092],[-0.06747791916132,-0.021065711975098,0.0036919673439115],[-0.020472759380937,-0.13784058392048,-0.028311472386122]],[[-0.038731522858143,-0.050816871225834,0.025275260210037],[0.0052544753998518,-0.004314849153161,-0.056932497769594],[0.047725725919008,0.0047222357243299,-0.013127895072103]],[[0.035903967916965,0.010500120930374,-0.02829241193831],[-0.045364711433649,-0.04035060852766,-0.028648698702455],[0.062267385423183,0.03154369443655,0.048816964030266]],[[0.056886032223701,0.11408516019583,0.10362760722637],[0.045888084918261,-0.016904914751649,0.059790872037411],[0.0069834738969803,-0.028801910579205,0.039573021233082]],[[0.075027860701084,0.044594276696444,0.14909346401691],[-0.06739142537117,-0.073836281895638,0.029294526204467],[-0.071939401328564,-0.17708636820316,-0.20670327544212]],[[-0.01487572491169,-0.025393173098564,-0.012646452523768],[-0.14604260027409,-0.035327907651663,-0.057358331978321],[0.08286864310503,0.027376556769013,0.01643518730998]],[[0.020711136981845,-0.064701750874519,0.020572291687131],[0.056812394410372,-0.041872020810843,0.011404927819967],[0.10028357058764,-0.084764279425144,-0.0050327433273196]],[[0.032152954488993,-0.059554256498814,0.00054541818099096],[0.0474036000669,0.043454993516207,-0.017533611506224],[-0.0040474585257471,-0.068672925233841,-0.045761071145535]],[[0.0064873020164669,-0.035108670592308,-0.011768000200391],[-0.077673979103565,0.053320478647947,0.042754303663969],[-0.025148617103696,0.039416026324034,-0.070288799703121]],[[0.029792131856084,-0.10819762945175,0.016616309061646],[0.13336881995201,-0.010064472444355,0.039191961288452],[-0.1098602861166,-0.02484118938446,-0.037774614989758]],[[0.066855110228062,-0.097345232963562,-0.0059440191835165],[0.006423108279705,-0.030238365754485,0.024863563477993],[0.0051527707837522,-0.03951371088624,0.068382687866688]],[[-0.029061365872622,-0.010735695250332,0.056092608720064],[0.048691231757402,-0.052882950752974,-0.071587607264519],[-0.047808673232794,-0.01290743984282,-0.057935710996389]],[[-0.045203719288111,-0.046027842909098,-0.0016574589535594],[-0.12614233791828,-0.026589842513204,-0.002315343124792],[0.0042512407526374,0.067444436252117,0.018315836787224]],[[0.046442333608866,-0.09617891907692,-0.039532486349344],[0.012590305879712,-0.14628203213215,0.074043691158295],[0.012941430322826,-0.033687628805637,0.048604939132929]],[[0.0052288742735982,0.013126918114722,0.01588499173522],[-0.027630101889372,-0.021983800455928,0.078468844294548],[0.018429562449455,-0.096612848341465,-0.059997107833624]],[[-0.082386434078217,-0.021807542070746,-0.058461800217628],[-0.09002560377121,-0.0035381130874157,-0.025645831599832],[0.074935264885426,-0.0090085547417402,-0.030287267640233]],[[-0.063748091459274,-0.041677974164486,0.0048832851462066],[-0.11129089444876,0.0015227653784677,0.043210510164499],[0.030875226482749,0.027541676536202,0.071382306516171]],[[-0.021899012848735,-0.019746150821447,-0.025058511644602],[0.046987283974886,0.066309399902821,0.041846673935652],[0.055960666388273,0.092039503157139,0.10586320608854]],[[-0.015364154241979,0.040789060294628,-0.028081195428967],[-0.067761793732643,0.04049226641655,-0.0060570971108973],[-0.13098266720772,-0.031205296516418,-0.095035821199417]],[[-0.1141809001565,0.063279815018177,0.015366403385997],[0.019886100664735,0.025361530482769,0.045646242797375],[0.044611748307943,0.094663314521313,0.028972130268812]],[[-0.06780106574297,0.004139946307987,-0.06202744320035],[-0.018461255356669,-0.012797269038856,-0.032673943787813],[-0.077850818634033,0.033484678715467,0.010135386139154]],[[0.054083950817585,-0.0188909471035,0.0070854336954653],[0.05719068646431,0.03473823517561,-0.002919549588114],[-0.063626751303673,-0.11031607538462,-0.044828996062279]],[[-0.059268329292536,-0.030593594536185,-0.016978614032269],[-0.066870406270027,-0.066273368895054,-0.017303828150034],[-0.071360096335411,0.0014572720974684,0.086155138909817]],[[-0.14984336495399,0.023495072498918,0.011718583293259],[-0.21554374694824,-0.092438846826553,-0.030106384307146],[0.00067119026789442,-0.046601224690676,-0.12740409374237]],[[0.052189506590366,-0.038264013826847,-0.032189898192883],[-0.095757216215134,-0.089208230376244,-0.013943993486464],[0.14860343933105,-0.073007360100746,0.14050331711769]],[[0.032967254519463,0.069608964025974,-0.010081999003887],[-0.032530505210161,-0.015952466055751,0.0074364277534187],[0.023947026580572,-0.043902244418859,-0.012540983967483]],[[0.071980997920036,-0.051458287984133,0.050162974745035],[-0.072023503482342,0.01902393437922,-0.042110361158848],[0.048682861030102,0.034045692533255,0.054855063557625]],[[-0.1905293315649,0.084234565496445,0.030892772600055],[-0.13532446324825,0.016027502715588,0.012310777790844],[0.020540123805404,0.065006926655769,0.12115390598774]],[[0.013684127479792,-0.13975043594837,0.0040064565837383],[0.067662484943867,-0.078955806791782,-0.0054242629557848],[0.092251189053059,-0.0021726060658693,0.05841738730669]],[[-0.17447450757027,0.075646549463272,-0.063367113471031],[-0.02014628238976,0.073352873325348,-0.044086150825024],[-0.0095123816281557,0.032206699252129,0.050538953393698]]],[[[0.024618616327643,-0.008523122407496,-0.084197662770748],[-0.05141144618392,-0.012917371466756,-0.025808721780777],[-0.068445399403572,0.0092813428491354,-0.01241850014776]],[[-0.045198060572147,-0.032992288470268,-0.055313158780336],[-0.0065524694509804,0.037412330508232,0.058411926031113],[0.11220094561577,0.021703373640776,0.047364681959152]],[[-0.034631282091141,-0.025032175704837,-0.081253752112389],[0.032077018171549,-0.10239738225937,0.029584597796202],[-0.055098745971918,-0.0046284575946629,-0.05796480178833]],[[-0.047312993556261,-0.067998476326466,-0.021692685782909],[-0.18115201592445,-0.013524529524148,0.11940169334412],[-0.079004295170307,-0.052690602838993,-0.026585044339299]],[[0.004675131291151,0.0052740918472409,-0.044371344149113],[0.0013751287478954,0.038631908595562,0.076099224388599],[-0.038210801780224,0.032523363828659,0.015093094669282]],[[0.069565996527672,0.08791821449995,0.063886843621731],[-0.041222583502531,-0.11575738340616,-0.056347474455833],[0.010412313044071,0.067077860236168,-0.12192302942276]],[[0.0080239810049534,0.04484448581934,-0.0031354331877083],[-0.006543789524585,0.0080629410222173,0.045850552618504],[-0.066199339926243,-0.011430531740189,0.030128648504615]],[[-0.033426083624363,0.055983353406191,0.04831401258707],[-0.041369896382093,-0.11348912119865,-0.011766730807722],[0.1236475482583,0.065904505550861,-0.040773812681437]],[[0.065764628350735,0.052398879081011,0.0072124940343201],[-0.0036456899251789,-0.0033797938376665,0.09806115180254],[-0.026145845651627,0.05325286462903,-0.054182805120945]],[[0.046686962246895,0.0043383473530412,-0.062470160424709],[-0.089595668017864,-0.033107098191977,0.0027434709481895],[0.021071117371321,-0.0592374317348,0.039609767496586]],[[0.047812595963478,-0.1095924526453,0.029350288212299],[-0.0034882016479969,0.044493917375803,0.014414418488741],[-0.073708906769753,-0.028980048373342,0.088739544153214]],[[0.01019114907831,-0.098277755081654,0.026668222621083],[0.051665935665369,0.029856903478503,-0.043681319802999],[-0.14720050990582,0.061711218208075,0.036222785711288]],[[-0.046016953885555,-0.027267999947071,-0.052147347480059],[0.032276917248964,0.022720606997609,0.18751667439938],[-0.044586904346943,-0.07780010253191,-0.081894651055336]],[[0.11702710390091,-0.039601601660252,-0.03646656498313],[0.031214132905006,0.044675845652819,0.026012178510427],[-0.026088150218129,-0.078825056552887,-0.034727189689875]],[[0.02094485796988,-0.071151070296764,-0.10571388155222],[0.013672647066414,-0.1375098079443,-0.030713645741343],[0.046617813408375,0.019144684076309,-0.031629722565413]],[[0.073902696371078,0.1606333553791,0.069191299378872],[-0.073713503777981,-0.017951464280486,0.047958638519049],[-0.011514132842422,-0.045636579394341,-0.075994797050953]],[[0.026273479685187,0.0032306932844222,0.033870562911034],[-0.00087867013644427,0.0033680205233395,-0.093944452702999],[0.066969871520996,-0.056792046874762,-0.1135910525918]],[[0.059265524148941,0.10860140621662,-0.019379954785109],[-0.04716020449996,0.031701225787401,0.027123916894197],[-0.005969621706754,-0.042550068348646,0.034119043499231]],[[0.011473398655653,-0.097743332386017,-0.066775351762772],[0.05975105240941,0.067047640681267,-0.0085962917655706],[0.0034758804831654,-0.071576811373234,-0.05039082840085]],[[0.025058122351766,0.050286363810301,-0.012976460158825],[0.027223573997617,-0.062427364289761,-0.014640321023762],[-0.020740507170558,0.030952155590057,0.016942299902439]],[[0.040691994130611,0.0033530907239765,-0.051938664168119],[0.036445345729589,0.047340244054794,-0.029098438099027],[-0.036235447973013,-0.012339896522462,-0.079689264297485]],[[0.097270213067532,0.11670719832182,-0.032964404672384],[-0.0033387569710612,-0.054648172110319,-0.07316879928112],[0.032362312078476,-0.0028354395180941,0.10727761685848]],[[-0.051741074770689,-0.046737041324377,0.027619106695056],[-0.087658762931824,-0.093640431761742,-0.092237256467342],[0.027787376195192,-0.1005267649889,-0.017303571105003]],[[0.069577515125275,0.11698507517576,0.012571191415191],[0.041269280016422,-0.013874553143978,0.0082205003127456],[0.021656427532434,0.12726241350174,0.13712982833385]],[[0.00027902293368243,-0.057201899588108,-0.16882410645485],[-0.030643217265606,-0.012375629507005,-0.15218962728977],[-0.076782926917076,0.070033989846706,0.16728363931179]],[[-0.012689515016973,-0.030333384871483,0.078228339552879],[-0.020802803337574,0.0019335771212354,-0.01135167106986],[0.012658949941397,-0.07477056235075,0.0092193242162466]],[[-0.1131838336587,-0.024993060156703,-0.039878413081169],[0.0071045560762286,0.10093887150288,-0.0084924604743719],[-0.085683904588223,-0.017599172890186,-0.10977923125029]],[[0.084529787302017,0.026433680206537,-0.0015138325979933],[-0.015605417080224,0.074603535234928,-0.049002334475517],[-0.071705669164658,0.08101624250412,0.018514962866902]],[[-0.057941894978285,0.035334825515747,-0.023518238216639],[-0.020674478262663,-0.031011709943414,-0.021273870021105],[-0.04538245126605,0.023141721263528,0.027262389659882]],[[0.0055667804554105,0.034638848155737,0.033765640109777],[0.011116694658995,-0.046193309128284,-0.049775823950768],[-0.032367210835218,-0.044936180114746,-0.052080065011978]],[[0.062527075409889,0.028162254020572,0.0098259449005127],[0.035465732216835,0.041954893618822,0.019861051812768],[0.049677576869726,-0.127092435956,-0.050473339855671]],[[-0.015295725315809,0.099649585783482,0.1167506352067],[-0.027360083535314,0.044286891818047,0.0078190611675382],[0.018482530489564,-0.083334743976593,-0.14048783481121]],[[-0.025265851989388,-0.011479321867228,0.1264393478632],[0.025148754939437,-0.02015851996839,-0.012646047398448],[0.00020472350297496,-0.02111092209816,-0.017417177557945]],[[-0.087218329310417,0.031678900122643,0.053155891597271],[0.043762110173702,-0.067529246211052,0.0096526183187962],[-0.077135123312473,-0.073440946638584,0.02493098936975]],[[-0.14490561187267,0.018980942666531,0.0039749648422003],[0.011549405753613,-0.0701759532094,0.011757809668779],[-0.12893453240395,0.030999524518847,0.040454722940922]],[[0.024816107004881,-0.044456362724304,-0.0068708001635969],[-0.0087500447407365,0.079413987696171,-0.048334676772356],[0.017753114923835,0.027196662500501,0.03385803848505]],[[0.011044257320464,0.022266609594226,0.013024111278355],[0.011536543257535,0.051359817385674,-0.046565432101488],[-0.081782966852188,-0.032562736421824,0.098656959831715]],[[-0.11104910820723,0.02769567258656,-0.044249750673771],[-0.017037287354469,-0.036935348063707,-0.0022158622741699],[0.051250033080578,0.049475248903036,0.058409664779902]],[[-0.22404886782169,-0.16267174482346,-0.11514876037836],[0.0068609360605478,-0.067426793277264,0.1059038117528],[-0.017403692007065,-0.048891119658947,0.084027893841267]],[[-0.071297027170658,-0.12637422978878,-0.086727812886238],[0.061028201133013,0.059781305491924,-0.09581220895052],[-0.028133321553469,0.026890985667706,0.039750948548317]],[[0.0034334517549723,-0.002254553604871,-0.039555601775646],[0.03569458425045,0.13507208228111,0.027437964454293],[-0.018086696043611,0.0060895192436874,0.046270590275526]],[[-0.017168667167425,0.12223896384239,-0.05050303041935],[0.020139161497355,0.0034814001992345,-0.05798963457346],[0.014669422060251,0.044377095997334,-0.054572395980358]],[[-0.046056035906076,0.12374375760555,-0.0029255803674459],[-0.035024523735046,-0.002826685551554,0.064313881099224],[-0.063243895769119,-0.1037635654211,-0.042852364480495]],[[-0.059058666229248,0.075995542109013,-0.014307669363916],[0.044424626976252,0.072079576551914,-0.012881239876151],[0.016037531197071,0.010712837800384,-0.072656407952309]],[[-0.039615519344807,0.037843320518732,0.097375795245171],[-0.0020872505847365,-0.20314130187035,0.0078790551051497],[-0.047813180834055,0.0012786395382136,-0.034579426050186]],[[0.034484762698412,-0.038963105529547,0.031536571681499],[0.02026117965579,-0.023780761286616,-0.033395688980818],[0.015207774937153,-0.069756656885147,0.020288269966841]],[[0.019024075940251,-0.12532407045364,-0.020853132009506],[-0.0050748158246279,0.014342503622174,-0.12309131026268],[0.046017028391361,0.061173070222139,0.048913575708866]],[[0.020858865231276,0.099034018814564,0.066947430372238],[0.017636859789491,0.034155447036028,0.10571483522654],[0.082104153931141,-0.033360585570335,-0.0049024256877601]],[[-0.012613341212273,0.028769887983799,-0.016140569001436],[0.010773397982121,-0.074634112417698,0.024751853197813],[-0.010650797747076,-0.011850109323859,-0.030469616875052]],[[0.040838535875082,-0.0098900785669684,-0.13848666846752],[0.052463561296463,-0.032914109528065,-0.0012410000199452],[0.059930175542831,-0.014429926872253,-0.0026909895241261]],[[0.084296502172947,-0.023073734715581,-0.019129009917378],[0.073338553309441,0.11897344887257,-0.051375914365053],[0.031222952529788,0.057759460061789,-0.054188661277294]],[[0.053748823702335,-0.050180342048407,0.088820904493332],[0.077660985291004,0.12898470461369,0.10022157430649],[0.091121196746826,0.074034363031387,-0.048511527478695]],[[-0.012834537774324,0.024341471493244,0.0010331460507587],[-0.035348989069462,0.01218627858907,0.0040926584042609],[-0.037080150097609,-0.0076900888234377,0.015939002856612]],[[0.07823371887207,0.011482677422464,0.032438542693853],[0.076086454093456,-0.052429780364037,-0.03858271241188],[0.050496220588684,-0.11844838410616,-0.18433584272861]],[[0.06041345000267,-0.080027021467686,-0.0008119250414893],[0.066320590674877,0.00037452043034136,-0.09599344432354],[0.014095580205321,-0.060472708195448,-0.012097314931452]],[[0.0053209038451314,0.033756613731384,0.16123013198376],[0.024319164454937,-0.04401046782732,-0.099209055304527],[-0.032809320837259,-0.021741012111306,-0.018028063699603]],[[0.072835884988308,0.030428132042289,0.031067308038473],[0.03038271702826,0.028207080438733,-0.0052458546124399],[-0.070935636758804,-0.072532124817371,-0.013618992641568]],[[0.025542991235852,0.001753443502821,0.1011740937829],[0.022119101136923,-0.056631647050381,0.12779848277569],[-0.092339441180229,-0.13325403630733,-0.11673588305712]],[[-0.061524409800768,-0.029828377068043,0.011318278498948],[-0.046470731496811,0.032199688255787,-0.033511642366648],[0.17519564926624,0.025509066879749,-0.028551749885082]],[[0.00020848811254837,-0.014651802368462,0.0048068361356854],[0.010108972899616,0.037336390465498,-0.0014849359868094],[-0.045075427740812,0.014021317474544,0.0098139783367515]],[[0.02230322919786,-0.0457973331213,0.041895844042301],[-0.0057620871812105,0.078534074127674,0.066484719514847],[0.021396990865469,-0.034192658960819,-0.057832628488541]],[[0.033156685531139,0.045311909168959,0.00072383478982374],[-0.084734745323658,-0.041975613683462,-0.05902973562479],[-0.0059210360050201,0.073341794312,-0.028393741697073]],[[-0.0059971022419631,-0.047239955514669,-0.062456227838993],[0.17271968722343,-0.0001022111682687,-0.055788718163967],[-0.069849371910095,0.021411074325442,0.034261398017406]],[[-0.065795883536339,-0.032637674361467,0.096276767551899],[-0.05962723121047,-0.037875130772591,0.055180165916681],[0.025833871215582,0.047644700855017,-0.089634120464325]]]],"nOutputPlane":128,"kW":3,"kH":3,"bias":[-0.0060729621909559,-0.0075584230944514,-0.0050635864026845,-0.010743143968284,-0.0065512573346496,-0.0040383730083704,-0.003485381603241,-0.005608803126961,-0.0035527606960386,-0.0043208068236709,-0.006867048330605,-0.0033545738551766,-0.004121346399188,-0.0051185693591833,-0.0055931499227881,-0.0068400842137635,-0.0053770015947521,-0.0045643853954971,-0.0077449553646147,-0.008962094783783,-0.006558527238667,-0.0056482413783669,-0.0042197564616799,-0.0042963777668774,-0.012582081370056,-0.0040411204099655,-0.0035692020319402,-0.011156907305121,-0.0038775124121457,-0.0032644248567522,-0.0063020149245858,-0.0036894928198308,-0.0057316380552948,-0.0066056312061846,-0.0049013020470738,-0.0066411015577614,-0.0064917164854705,-0.0050797429867089,-0.00094825291307643,-0.0077852471731603,-0.0044743097387254,-0.0019356238190085,-0.0097550675272942,0.022910673171282,-0.0053226398304105,-0.012786231003702,-0.0085454490035772,-0.0090057859197259,-0.0032274769619107,-0.0052379984408617,-0.0069278609007597,-0.0088139250874519,-0.0024226221721619,-0.0055330842733383,-0.0078050303272903,-0.0063794692978263,-0.010450892150402,-0.0059227640740573,-0.0088756754994392,-0.0058760191313922,-0.012632774189115,-0.0060652405954897,-0.01023010071367,-0.0064723459072411,-0.0041410904377699,-0.0065630646422505,-0.003580906894058,-0.005468905903399,-0.0048657092265785,-0.0062696347013116,-0.0073576616123319,-0.0059736063703895,-0.0098399426788092,-0.0058331512846053,-0.0040033054538071,-0.0029082773253322,-0.011519204825163,-0.0095326732844114,-0.0059521873481572,-0.0050029568374157,-0.00079664518125355,-0.011395351961255,-0.0070508094504476,-0.0078534800559282,-0.0068211895413697,-0.0047865947708488,-0.0050317943096161,-0.0042928727343678,-0.0033242725767195,-0.0054035186767578,-0.0058547426015139,-0.0062556890770793,-0.005350292660296,-0.0093028824776411,-0.010019888170063,-0.0053072706796229,-0.0048407092690468,-0.0056059812195599,-0.0054912976920605,-0.01240633521229,-0.0080549167469144,-0.0037513903807849,-0.0079870885238051,-0.013800117187202,-0.0078378757461905,-0.0061794193461537,-0.0048623736947775,-0.0034344519954175,-0.0020862587261945,-0.0036728214472532,-0.015089794062078,-0.00062029174296185,-0.0051249866373837,-0.0045952945947647,-0.0030770120210946,-0.0051113730296493,-0.0083016492426395,-0.0055144759826362,0.0012891087681055,-0.0073870630003512,-0.0089474711567163,-0.0084188254550099,-0.0069119515828788,-0.0053348764777184,-0.0047226953320205,-0.0039902017451823,-0.005827717948705,-0.0076304255053401],"nInputPlane":64},{"weight":[[[[-0.01773027703166,0.014851888641715,0.056447047740221],[0.024807928130031,0.054935947060585,0.0039699501357973],[-0.00072717806324363,-0.044488456100225,-0.091922990977764]],[[0.039992421865463,-0.01283575873822,-0.026949701830745],[-0.0021517199929804,-0.033674895763397,0.066310949623585],[0.001202768762596,-0.027144296094775,0.017839880660176]],[[-0.007935581728816,0.054512973874807,-0.026072278618813],[-0.042769566178322,0.023290153592825,-0.081606261432171],[-0.14143881201744,0.039409086108208,0.020590903237462]],[[0.045428726822138,-0.026124501600862,0.031722281128168],[-0.034960243850946,0.10384876281023,0.0097421137616038],[0.015049675479531,0.020579056814313,-0.074919775128365]],[[-0.031176609918475,-0.0085249282419682,0.037199318408966],[-0.00017867583665065,-0.085517942905426,0.03871600702405],[0.0063220984302461,0.019629515707493,0.041901275515556]],[[0.07422311604023,-0.002804919378832,-0.032597556710243],[-0.028115510940552,0.019315535202622,-0.026352629065514],[0.026415834203362,-0.052446812391281,0.017150685191154]],[[0.046763807535172,0.0085768718272448,0.098126783967018],[-0.028378246352077,-0.037570647895336,0.015023996122181],[0.020538469776511,-0.015709407627583,-0.078776851296425]],[[0.037225946784019,0.057202622294426,-0.020534563809633],[-0.03082237392664,-0.082801543176174,0.021276095882058],[0.041667025536299,0.034975003451109,0.056065235286951]],[[0.027307944372296,0.0096858283504844,-0.044446382671595],[0.025046201422811,-0.017758557572961,0.049262315034866],[0.064039327204227,-0.040210660547018,0.012362256646156]],[[-0.030607676133513,0.079056166112423,0.10131196677685],[0.026848284527659,0.0022645103745162,-0.0020478926599026],[0.044054385274649,-0.060495674610138,-0.011019622907043]],[[-0.0016907620010898,-0.038177717477083,-0.030582940205932],[0.018696460872889,-0.05141893774271,0.008716463111341],[0.01229712087661,0.0067024263553321,0.0054853325709701]],[[-0.016241831704974,-0.034680135548115,0.037122260779142],[0.11043909192085,0.045346423983574,-0.020208019763231],[-0.048178147524595,0.018832828849554,0.014612402766943]],[[-0.076460979878902,0.038293588906527,-0.030480498448014],[0.0095716575160623,-0.0053965230472386,0.045877370983362],[-0.071173466742039,-0.01992566883564,-0.027812425047159]],[[-0.016940295696259,-0.015152738429606,-0.098036356270313],[-0.010917684994638,-0.062829717993736,0.007885224185884],[0.0080672977492213,-0.045051507651806,-0.046620655804873]],[[-0.056741159409285,0.0080914767459035,0.030967423692346],[-0.026626100763679,0.014981226995587,0.031962089240551],[0.05055845156312,-0.03254185244441,0.020844221115112]],[[-0.0082241948693991,-0.043989963829517,-0.0091018155217171],[0.0036883037537336,0.047425389289856,0.031729958951473],[0.084981091320515,-0.06433928757906,0.059718742966652]],[[-0.031798411160707,0.011323425918818,-0.050837483257055],[-0.049791764467955,0.011810469441116,0.080822229385376],[-0.001501923892647,0.087288178503513,-0.051989000290632]],[[-0.042371325194836,-0.033866804093122,0.072527326643467],[-0.033510096371174,-0.038344394415617,-0.090335704386234],[0.072749964892864,0.058674536645412,-0.052629940211773]],[[-0.063093207776546,-0.011754908598959,0.019297489896417],[-0.02234704233706,-0.029778121039271,0.023682067170739],[0.039863962680101,0.03694262355566,-0.026791967451572]],[[-0.027219217270613,0.0027726157568395,-0.023973777890205],[0.019935794174671,-0.054535418748856,-0.038046427071095],[-0.014712457545102,-0.015801234170794,-0.086997643113136]],[[-0.049862582236528,0.05838430672884,0.015270828269422],[0.088739335536957,-0.00019481155322865,0.044005703181028],[-0.019582713022828,-0.10337779670954,0.026769243180752]],[[0.024700654670596,-0.0075862566009164,0.016734173521399],[-0.026768838986754,-0.0044934074394405,-0.015579692088068],[0.010879911482334,0.026271145790815,-0.0011917261872441]],[[0.0045648002997041,-0.019716966897249,0.10535713285208],[-0.044400714337826,0.02061140909791,-0.020044259727001],[0.022523820400238,0.012551976367831,0.037926565855742]],[[0.065823450684547,0.0037766569294035,0.049914602190256],[-0.023545172065496,0.037233993411064,-0.039705082774162],[0.00098136509768665,0.044535722583532,0.0096134664490819]],[[0.054281514137983,0.066822968423367,-0.0082813715562224],[0.017476620152593,0.087900564074516,0.0052804560400546],[0.047558043152094,0.044393248856068,0.020288160070777]],[[-0.020878523588181,0.08801094442606,-0.012533804401755],[0.05199795588851,0.020923206582665,0.071602195501328],[0.0071968426927924,0.048765130341053,-0.070387944579124]],[[0.0024323049001396,-0.0073921415023506,0.057553973048925],[-0.02189863473177,-0.07038202881813,0.032899219542742],[0.039694532752037,0.13022243976593,0.11014415323734]],[[-0.017549334093928,-0.017412135377526,0.010098388418555],[0.0043225758709013,0.097554668784142,0.087504364550114],[0.042230535298586,0.0085088349878788,-0.017813106998801]],[[-0.010027510114014,0.023638455197215,-0.01375912129879],[-0.06018890812993,-0.010768618434668,-0.056914582848549],[0.011702677235007,-0.07931374758482,-0.029542777687311]],[[-0.030682912096381,-0.064887061715126,0.0055042211897671],[0.02227957546711,-0.019295413047075,0.045149866491556],[0.020371373742819,-0.012154888361692,0.02339032292366]],[[-0.0009491381351836,0.044083647429943,0.047582451254129],[0.04446678981185,-0.012976797297597,0.049505863338709],[-0.042202316224575,-0.083781585097313,-0.016721669584513]],[[-0.031881146132946,0.034440416842699,-0.039449017494917],[0.10996491461992,0.0034840675070882,0.019737284630537],[-0.016778072342277,0.057524710893631,0.026927268132567]],[[-0.032503239810467,-0.050509046763182,0.041184086352587],[-0.00016444730863441,-0.02075925283134,0.0045830435119569],[0.052333138883114,0.066670410335064,0.033730205148458]],[[0.02049607411027,-0.055101603269577,0.034310664981604],[0.0025720063131303,-0.097900055348873,-0.0089684342965484],[0.004250368103385,0.024084072560072,0.021534293889999]],[[-0.025119297206402,-0.034181471914053,-0.036097228527069],[0.079488389194012,-0.045199304819107,-0.035957656800747],[0.0043336749076843,0.030299168080091,-0.030294544994831]],[[0.029309356585145,0.027680238708854,-0.016469951719046],[-0.0083475932478905,0.016068253666162,-0.0052887443453074],[0.019844282418489,0.051299165934324,0.0087363822385669]],[[-0.065158769488335,0.0018076777923852,-0.0039879414252937],[0.02875953540206,0.011879180558026,-0.026091041043401],[0.058290131390095,-0.023295842111111,0.086658090353012]],[[0.060092635452747,0.0048351311124861,0.018120376393199],[-0.083044603466988,0.033281993120909,-0.037722762674093],[0.045616749674082,0.0015626067761332,-0.043897390365601]],[[-0.025079878047109,0.016224758699536,0.079602800309658],[0.044584799557924,0.035367451608181,0.10657370835543],[-0.02520065009594,-0.048763301223516,-0.012867908924818]],[[-0.050384070724249,-0.0041899331845343,0.0048492141067982],[0.0013375909766182,-0.055522404611111,0.020929019898176],[-0.036651946604252,0.031604558229446,0.064200967550278]],[[0.038008820265532,-0.098328202962875,0.016143634915352],[-0.019700875505805,0.0026137747336179,0.018661124631763],[-0.025251774117351,0.021298037841916,0.041093841195107]],[[0.041876725852489,-0.013410692103207,-0.069464281201363],[-0.023381698876619,0.013541880063713,-0.051190592348576],[0.079342700541019,0.10101383924484,0.0081998603418469]],[[-0.042656041681767,0.047697398811579,-0.078809440135956],[-0.065006092190742,0.025573005899787,0.052535552531481],[0.0053852959536016,-0.0051405555568635,-0.005917530041188]],[[-0.032911766320467,-0.007872792892158,0.0073698088526726],[-0.052089311182499,0.015980038791895,0.028387596830726],[-0.0045815813355148,-0.044921059161425,-0.0085445307195187]],[[0.0077812382951379,0.024859206750989,0.00097216572612524],[0.067487806081772,0.007769089192152,0.096867322921753],[-0.043362267315388,-0.036429401487112,-0.060614682734013]],[[0.039293613284826,-0.02844662219286,0.039528165012598],[-0.018964482471347,0.026418356224895,-0.0012981432955712],[0.014239159412682,-0.027579920366406,-0.044679865241051]],[[-0.033719457685947,-0.02279419079423,0.0066071450710297],[0.0030396920628846,-0.02383541688323,-0.0017943064449355],[0.032812684774399,0.018304746598005,-0.040995363146067]],[[0.0065801027230918,0.0095631228759885,-0.024999372661114],[0.037532553076744,0.025732351467013,-0.011571754701436],[-0.022447040304542,0.053519707173109,0.046246122568846]],[[0.068233639001846,-0.051287285983562,-0.016497137024999],[-0.06739467382431,0.058515623211861,0.076667331159115],[0.064913600683212,0.0052995653823018,0.029490284621716]],[[-0.018939487636089,0.074501678347588,0.002104252576828],[0.067231498658657,0.076141461730003,-0.031695157289505],[0.032418426126242,0.015544562600553,0.045735727995634]],[[0.033381313085556,0.04172083735466,0.036558050662279],[-0.025168845430017,0.0069336136803031,0.0034235990606248],[-0.0087873823940754,-0.070104204118252,0.06113475933671]],[[-0.022170182317495,0.046808999031782,0.010392455384135],[-0.079581506550312,-0.041029777377844,0.02304476313293],[0.051294699311256,-0.016442323103547,0.050178617238998]],[[-0.00075879710493609,-0.04986323043704,-0.040307734161615],[0.018787438049912,-0.011870543472469,-0.0056042266078293],[0.031160401180387,-0.049495685845613,0.031259655952454]],[[-0.0012959734303877,0.043769109994173,-0.047791074961424],[-0.023760626092553,-0.00038944580592215,-0.0062578031793237],[0.049915086477995,0.071509696543217,0.07116112858057]],[[0.091081194579601,-0.013403030112386,0.041191406548023],[-0.011021335609257,-0.048562992364168,-0.0092886872589588],[-0.042309463024139,-0.077988483011723,-0.0054247719235718]],[[0.038568187505007,0.03988191857934,-0.04775782302022],[-1.1881024875038e-05,-0.024621548131108,0.059444431215525],[-0.057970479130745,0.0010342135792598,0.051722373813391]],[[-0.0087819835171103,-0.03454690054059,0.027347914874554],[0.050669759511948,-0.036401815712452,0.037475697696209],[0.035255916416645,-0.025546073913574,-0.0012621019268408]],[[-0.049959138035774,-0.038356836885214,-0.0034978096373379],[-0.012977161444724,-0.038241866976023,-0.068808518350124],[-0.010601386427879,0.019701730459929,0.055225308984518]],[[0.05874115973711,0.046104930341244,0.078105606138706],[0.064195267856121,0.010153830982745,-0.036147486418486],[-0.036661792546511,-0.032834678888321,-0.0091767916455865]],[[0.037566900253296,-0.063068799674511,0.0062613291665912],[-0.017679713666439,0.0474535189569,-0.077759891748428],[0.060579989105463,-0.040898766368628,0.041833899915218]],[[-0.0048759304918349,0.033154156059027,0.016213458031416],[-0.052980192005634,-0.05583718419075,0.073258325457573],[0.018957514315844,0.016399431973696,-0.032515585422516]],[[0.007618322968483,-0.075749114155769,0.032543286681175],[-0.0053415088914335,-0.027745859697461,0.068781957030296],[-0.024879055097699,0.027893638238311,0.087626561522484]],[[0.0093324687331915,0.037290371954441,0.020673288032413],[0.016754167154431,0.077680267393589,0.0062338751740754],[0.0057864249683917,-0.032661061733961,-0.018497409299016]],[[-0.046666081994772,0.017953287810087,0.01733161509037],[-0.029417341575027,-0.042838502675295,-0.046082679182291],[-0.0058227339759469,-0.069180607795715,-0.044245198369026]],[[-0.01051870547235,-0.093486078083515,-0.039831694215536],[-0.012968223541975,-0.0080375401303172,-0.019898969680071],[-0.010645467787981,0.030814565718174,0.047373626381159]],[[-0.011714485473931,-0.070184357464314,0.095742233097553],[-0.0044626756571233,0.069096401333809,-0.031909178942442],[0.06565073132515,0.075962379574776,-0.01494216080755]],[[-0.0025101606734097,-0.059184212237597,0.0052639432251453],[0.021261131390929,-0.0094777476042509,0.019746134057641],[-0.030976813286543,-0.067634522914886,0.053965982049704]],[[-0.0062620998360217,0.030132027342916,0.041022010147572],[-0.078474789857864,0.012834049761295,-0.0025182380340993],[-0.037410996854305,0.071862444281578,-0.0071501978673041]],[[0.03018874488771,-0.027747493237257,0.028279837220907],[0.0061273789033294,-0.035086799412966,-0.021278642117977],[0.060888320207596,0.007683343719691,0.0057323528453708]],[[-0.087494365870953,-0.0064152362756431,0.011842074804008],[-0.054294064640999,0.0058142528869212,0.061006184667349],[0.068824835121632,0.005354642868042,-0.0045414813794196]],[[-0.049779683351517,-0.016248505562544,-0.017501661553979],[-0.013792138546705,0.022202480584383,0.049329243600368],[-0.029309192672372,-0.0060645421035588,0.05570961907506]],[[-0.042844045907259,0.015945162624121,0.040977202355862],[-0.015110456384718,-0.050455793738365,0.049154225736856],[-0.029968217015266,0.018878940492868,-0.0032749038655311]],[[-0.038192577660084,0.023360410705209,0.022057557478547],[-0.11797644942999,0.027219630777836,0.025525385513902],[0.096114620566368,0.0034498935565352,-0.03671969473362]],[[0.057609803974628,0.013652334921062,0.018040055409074],[0.049698885530233,0.025626093149185,-0.0027458779513836],[-0.026403293013573,0.027150692418218,-0.013404759578407]],[[-0.0015865999739617,0.062671400606632,0.027737528085709],[0.058079417794943,-0.0019693220965564,-0.03377740830183],[0.042777240276337,-0.022948771715164,-0.02661108225584]],[[-0.0268096588552,0.082500502467155,0.044811602681875],[-0.035534661263227,-0.057460363954306,0.053729712963104],[-0.00081057549687102,0.00036895574885421,0.011804555542767]],[[-0.046822469681501,0.0028117545880377,0.025809252634645],[-0.043691717088223,-0.027403514832258,0.0047937808558345],[-0.011701913550496,-0.0576714836061,-0.0074155167676508]],[[-0.0098200961947441,0.019900707527995,0.0051181823946536],[0.013303056359291,0.027007108554244,0.0080930050462484],[0.039073836058378,0.011926049366593,0.0071501708589494]],[[0.019744351506233,-0.00086616614134982,0.036350712180138],[0.020560124889016,-0.053249705582857,0.014296448789537],[0.10328881442547,-0.014540074393153,0.03846513479948]],[[-0.075420841574669,-0.022338900715113,0.092616073787212],[0.058057643473148,0.0096608372405171,0.0079070255160332],[0.038563575595617,-0.013807602226734,0.086092412471771]],[[0.041935943067074,-0.016606422141194,-0.018464414402843],[0.054984841495752,0.022344907745719,-0.0081730354577303],[-0.030556922778487,0.028322143480182,-0.0383640229702]],[[0.062431696802378,0.0085796061903238,0.011216597631574],[0.034677889198065,0.0066469307057559,-0.050357230007648],[0.0273273345083,0.024942563846707,0.051241789013147]],[[-0.025490371510386,0.019098589196801,-0.00080850720405579],[-0.017265236005187,-0.087014630436897,-0.072201557457447],[-0.011909763328731,0.0071024955250323,-0.059573259204626]],[[-0.065781384706497,-0.018087934702635,-0.041225276887417],[0.05025951936841,-0.00018368601740804,-0.051257610321045],[-0.0054988274350762,0.0085907597094774,0.0059072240255773]],[[0.033451620489359,0.0072898166254163,0.045344144105911],[-0.091936223208904,0.0061346609145403,-0.0042672632262111],[0.033076725900173,0.078915253281593,0.056341204792261]],[[0.021247431635857,0.058730203658342,0.0045076888054609],[-0.096172332763672,-0.018282746896148,0.060468588024378],[0.015145679935813,-0.014937383122742,-0.021641090512276]],[[0.07525459676981,0.032660845667124,0.017674066126347],[-0.023132164031267,-0.0496736317873,0.02501336298883],[-0.058720964938402,-0.025571674108505,-0.0024171371478587]],[[0.013006972149014,0.027065314352512,-0.00035307349753566],[0.064992092549801,-0.047699876129627,-0.011173251084983],[-0.015642683953047,0.018094442784786,0.022214196622372]],[[-0.0051217349246144,-0.040591698139906,0.012512019835413],[0.028289986774325,-0.098667554557323,-0.027647281065583],[0.0094129871577024,0.017423158511519,-0.076161414384842]],[[0.023664742708206,0.054978281259537,-0.028262779116631],[-0.049580693244934,-0.030978938564658,0.041492324322462],[-0.067415028810501,-0.03744575753808,0.074361525475979]],[[-0.07731319218874,-0.035058803856373,0.038984306156635],[0.057680193334818,-0.044235650449991,0.019762935116887],[0.0033586411736906,-0.02242524176836,-0.028500631451607]],[[-0.0036932923831046,0.060906980186701,0.015116872265935],[0.011114324443042,-0.022735824808478,-0.0019975199829787],[-0.076359555125237,-0.0090445457026362,0.033183287829161]],[[-0.028758868575096,-0.055368714034557,0.019145235419273],[0.0072277071885765,-0.031111035495996,0.024421652778983],[0.061027124524117,-0.063608512282372,-0.045865520834923]],[[-0.020241899415851,0.025046238675714,-0.036676354706287],[0.0087595051154494,-0.067136384546757,0.014685312286019],[0.019978256896138,0.046563636511564,-0.028254622593522]],[[0.01582077331841,-0.06415506452322,0.04000923037529],[-0.028410309925675,0.023739416152239,0.072935655713081],[0.07590389996767,0.046575330197811,-0.065109767019749]],[[-0.066314294934273,0.044776476919651,-0.022849306464195],[-0.0054460689425468,-0.0025665450375527,-0.0080433422699571],[0.099127925932407,-0.046718221157789,0.054822251200676]],[[-0.024869088083506,0.014511563815176,0.013552370481193],[0.063338860869408,0.0060775526799262,-0.056907407939434],[0.0019292174838483,0.017976390197873,0.0042404015548527]],[[0.051657006144524,-0.025646895170212,0.04871828109026],[0.060859907418489,-0.022071985527873,0.01904658600688],[-0.066946372389793,0.011123306117952,0.0019312195945531]],[[0.036487516015768,-0.0039674518629909,0.058592710644007],[0.04202638566494,0.025277718901634,-0.040173448622227],[0.028614226728678,0.0025582446251065,0.048231743276119]],[[0.0081389751285315,-0.0091124139726162,-0.038326501846313],[-0.068670488893986,0.041412495076656,0.084954991936684],[0.02756237052381,-0.031181950122118,0.019994460046291]],[[-0.043954260647297,-0.0097468607127666,-0.035327143967152],[0.033642306923866,-0.022117109969258,-0.092819042503834],[-0.027738083153963,-0.0046690898016095,0.012839916162193]],[[0.049508579075336,0.035404238849878,0.025352707132697],[-0.02978197671473,0.020370617508888,-0.02529002353549],[-0.013242400251329,0.066212274134159,-0.051615700125694]],[[0.089641518890858,0.042229197919369,-0.015217546373606],[-0.0092106610536575,-0.004381310660392,0.041815593838692],[0.049408283084631,0.038293227553368,0.041912350803614]],[[0.048422232270241,-0.076135344803333,0.038428690284491],[-0.0063829435966909,0.03615253791213,0.031094951555133],[-0.0013417492154986,-0.061662647873163,-0.015452144667506]],[[0.038640163838863,0.0043213255703449,-0.04754164069891],[0.0015693078748882,0.051963411271572,0.021029723808169],[-0.019960997626185,-0.016451107338071,-0.037905193865299]],[[-0.0071397684514523,0.033569563180208,-0.032778054475784],[-0.005413721781224,0.036176212131977,-0.078181691467762],[0.098463527858257,-0.073000989854336,0.0076859258115292]],[[-0.05908316001296,-0.042470864951611,-0.017635207623243],[0.048026412725449,-0.0090824933722615,-0.0042141634039581],[0.024708645418286,-0.024661395698786,-0.018623931333423]],[[0.07970167696476,-0.0073843342252076,-0.00032588961767033],[0.051647584885359,-0.063458152115345,0.043731939047575],[-0.015658499673009,0.018447674810886,-0.00036593287950382]],[[0.026622001081705,0.00093100371304899,0.022137949243188],[0.010152298957109,0.0031224931590259,0.0022515004966408],[-0.068587519228458,-0.035596873611212,-0.033469285815954]],[[0.10183953493834,-0.046297091990709,-0.022618448361754],[-0.025072300806642,0.012888237833977,0.010022745467722],[0.034589283168316,0.013902483507991,-0.010518638417125]],[[0.025491023436189,0.039534572511911,0.055899500846863],[0.03617799282074,-0.04592751711607,0.002658799989149],[0.057763714343309,0.045842710882425,0.029091320931911]],[[-0.023211074993014,0.053585909307003,0.0067641846835613],[0.0012779204407707,-0.0081195002421737,-0.07484021037817],[-0.012431105598807,0.022948415949941,0.057359170168638]],[[0.0084445392712951,0.03172417357564,0.01826055906713],[0.066260732710361,0.061283800750971,-0.072698451578617],[0.027039367705584,0.063137106597424,0.05665622279048]],[[-0.065362885594368,0.030457351356745,-0.011786956340075],[0.024482553824782,0.059953838586807,0.010648232884705],[-0.016105569899082,-0.030208600685,-0.052343960851431]],[[-0.092129863798618,-0.11852899938822,0.13070133328438],[-0.067491844296455,0.022078799083829,-0.0004269456549082],[0.076667688786983,0.052276864647865,0.050566613674164]],[[-0.022614924237132,-0.085043914616108,-0.033361122012138],[0.044757213443518,-0.0004355231358204,0.043767865747213],[-0.033897057175636,-0.0020932487677783,-0.11209674179554]],[[-0.010392246767879,-0.040896002203226,-0.023119380697608],[0.011432160623372,-0.067668363451958,0.056358870118856],[0.072582483291626,-0.029083022847772,-0.01151739154011]],[[0.043678313493729,0.0140909710899,0.017290176823735],[0.030502373352647,-0.02918846718967,-0.016595607623458],[-0.021406101062894,0.017562361434102,0.10584051162004]],[[0.0093463454395533,0.09393472969532,0.011248244903982],[0.010515933856368,0.019844571128488,0.030258797109127],[-0.045261923223734,-0.006541243288666,0.075032919645309]],[[0.018015427514911,0.0015499993460253,0.058987725526094],[-0.023579796776175,0.00096360180759802,0.065045312047005],[-0.05179513245821,0.016053568571806,0.037686944007874]],[[-0.037506610155106,-0.018059104681015,0.023446144536138],[0.05911572650075,-0.02109625376761,-0.0081435488536954],[0.05836808681488,-0.0070953834801912,-0.021651770919561]],[[0.061689417809248,0.01478323712945,0.028714463114738],[-0.068685345351696,-0.062198955565691,0.0040046502836049],[-0.045722648501396,0.10177706927061,0.020657243207097]],[[-0.028133423998952,-0.0081884805113077,0.11006224155426],[-0.01524203736335,-0.0015394847141579,0.016444182023406],[0.051860775798559,0.075883209705353,0.048902243375778]],[[0.059776607900858,-0.035017989575863,-0.048384021967649],[-0.082771383225918,0.021170688793063,0.073289602994919],[-0.028543939813972,0.027876982465386,0.026137940585613]],[[-0.019318781793118,0.0012449151836336,0.046150930225849],[0.0046420893631876,0.022788602858782,0.067680850625038],[-0.075675927102566,-0.047810968011618,0.043915700167418]],[[0.034692201763391,0.078849546611309,-0.036383580416441],[0.012775640934706,0.033378224819899,-0.022009950131178],[-0.023750480264425,-0.048561684787273,0.016249492764473]],[[-0.032448306679726,0.036212563514709,0.015150208026171],[-0.017059771344066,-0.0012789746979252,0.050307407975197],[0.025896605104208,0.042753484100103,-0.072239734232426]],[[-0.024100659415126,0.0294936504215,-0.040967378765345],[0.029420299455523,0.089200988411903,-0.038999766111374],[-0.070879429578781,0.018474064767361,0.001000753720291]]],[[[-0.01373981218785,-0.04943972080946,0.062009964138269],[-0.013044210150838,-0.0075704609043896,0.014689492061734],[-0.046664666384459,-0.015321165323257,0.063738703727722]],[[-0.0030557862482965,-0.020624408498406,-0.086449824273586],[0.078958787024021,-0.049745436757803,-0.062396537512541],[0.027401344850659,-0.094183869659901,-0.010634424164891]],[[-0.023970063775778,0.042967341840267,0.20534385740757],[-0.084082879126072,0.11503132432699,0.06543242931366],[-0.34594339132309,0.10691301524639,0.070286221802235]],[[0.017958289012313,0.0068871933035553,-0.03265144303441],[0.02929356135428,-0.0096859969198704,0.0013802978210151],[-0.050392687320709,0.045381542295218,-0.036879204213619]],[[-0.019153377041221,-0.023357640951872,0.010424934327602],[-0.045946251600981,-0.073900207877159,-0.03790346160531],[-0.092506796121597,-0.036422807723284,-0.072597496211529]],[[-0.042456716299057,-0.042877428233624,0.075150057673454],[-0.025078356266022,0.031149381771684,0.087464697659016],[0.019019337370992,-0.043002735823393,0.049512263387442]],[[0.057917702943087,0.0026355811860412,-0.078437119722366],[0.08352930098772,-0.0215820427984,0.0027089263312519],[-0.045348353683949,-0.087280310690403,-0.046879511326551]],[[0.070143572986126,0.035242687910795,0.060417827218771],[0.11321165412664,0.035680297762156,-0.053642693907022],[-0.079449512064457,-0.048964742571115,0.038080342113972]],[[-0.0095887733623385,-0.030973950400949,-0.049680113792419],[-0.060326039791107,0.028895769268274,0.050650909543037],[0.0024466221220791,-0.021554885432124,0.010747547261417]],[[0.044670902192593,0.048755243420601,0.10489343106747],[-0.052880439907312,-0.03402965888381,0.053048953413963],[0.048392783850431,-0.078294411301613,0.057086262851954]],[[0.0025248939637095,0.044147714972496,0.021029086783528],[-0.027570310980082,0.038312308490276,0.022400690242648],[0.0029905955307186,0.011566791683435,0.053332228213549]],[[0.059341549873352,0.093132756650448,-0.05208707973361],[-0.00084452098235488,-0.043005768209696,-0.038044687360525],[-0.05075516551733,0.02292599901557,-0.015684513375163]],[[0.014115209691226,0.022844914346933,-0.060390546917915],[0.050997216254473,-0.0026996517553926,-0.036419048905373],[0.033922959119081,0.025923069566488,0.0024156421422958]],[[-0.0038993500638753,0.045953810214996,-0.02696280553937],[0.07604043930769,-0.031206848099828,-0.045355036854744],[0.088313736021519,0.14352786540985,-0.016655499115586]],[[-0.042262546718121,-0.0017798044718802,-0.015446147881448],[0.015054622665048,-0.02894764021039,0.016380520537496],[0.013894359581172,0.026868073269725,-0.033459220081568]],[[0.043409541249275,0.057027015835047,0.090119332075119],[0.046453833580017,0.031903401017189,-0.0066323503851891],[-0.012457109056413,0.0020248712971807,0.0013788185315207]],[[0.02879736199975,0.058251641690731,-0.13105756044388],[-0.010917740873992,-0.081105969846249,-0.019755626097322],[-0.072695635259151,0.0084287002682686,0.068311646580696]],[[0.023174520581961,0.011462467722595,-0.064502909779549],[-0.024603003636003,-0.11416627466679,-0.025032311677933],[0.048010662198067,0.10037619620562,0.0696145221591]],[[-0.0090026371181011,0.03257342800498,-0.041877333074808],[0.02431951649487,-0.10042724013329,-0.099257774651051],[0.0036808100994676,-0.010258964262903,-0.0053380439057946]],[[-0.022871073335409,-0.011099513620138,-0.065379850566387],[-0.013499145396054,-0.01134436018765,0.042958498001099],[0.0066094272769988,0.084136962890625,0.0016924905357882]],[[-0.01511025801301,0.013333295471966,-0.03986931592226],[0.01239565666765,0.0069013093598187,-0.046121299266815],[-0.012486031278968,-0.045192584395409,-0.022231686860323]],[[0.063307166099548,0.017930807545781,-0.10315658152103],[0.10395561158657,0.040835924446583,-0.034328524023294],[0.11614798009396,-0.015566856600344,-0.025492519140244]],[[0.037230480462313,-0.0011454847408459,0.16596688330173],[0.014357409439981,-0.11271130293608,-0.0085937334224582],[-0.07991998642683,0.057028736919165,-0.0047224634326994]],[[-0.023793321102858,-0.041688043624163,0.044295348227024],[0.065330870449543,0.13610206544399,0.024623390287161],[0.065709434449673,0.055694229900837,-0.013712538406253]],[[-0.026895143091679,0.040030438452959,0.03277188912034],[-0.047887116670609,0.027847493067384,0.013808294199407],[-0.014644875191152,0.044927392154932,0.044569030404091]],[[-0.0054806238040328,0.024965794757009,0.042651418596506],[0.017137026414275,-0.01180868037045,-0.048044722527266],[-0.035702060908079,0.0094213858246803,0.091397292912006]],[[-0.013172127306461,0.12117167562246,0.041941925883293],[-0.056754406541586,0.018826559185982,-0.045138858258724],[-0.041830740869045,0.060525633394718,-0.021652581170201]],[[0.0041740676388144,-0.050477106124163,-0.050567414611578],[0.028902761638165,-0.0088268294930458,0.023290766403079],[0.044309590011835,-0.014183377847075,0.024164253845811]],[[-0.029042890295386,-0.038252327591181,-0.077927716076374],[-0.057536173611879,-0.035607118159533,0.10585129261017],[0.081477023661137,-0.015191073529422,-0.026156593114138]],[[-0.059392455965281,-0.0041167736053467,0.076876580715179],[0.026496520265937,-0.019136814400554,-0.030864553526044],[-0.016421768814325,-0.026257736608386,0.087698608636856]],[[-0.092942491173744,0.011355822905898,0.0032433832529932],[-0.064163982868195,0.027959190309048,0.064333654940128],[0.027217464521527,0.030256988480687,0.06995253264904]],[[-0.068435028195381,0.13119795918465,0.068026192486286],[0.020439172163606,0.010646420530975,0.077711313962936],[-0.047760754823685,-0.026812348514795,0.026845058426261]],[[-0.032454006373882,0.021757274866104,0.010678995400667],[0.071039982140064,0.031995382159948,0.029731288552284],[0.029311552643776,0.048883970826864,0.092472806572914]],[[-0.031906433403492,-0.035873584449291,-0.012603153474629],[0.13589714467525,0.057509064674377,0.014626086689532],[-0.0059464350342751,0.10296364873648,-0.0026068654842675]],[[-0.034444537013769,-0.051600016653538,-0.044452447444201],[-0.022143172100186,-0.011019440367818,-0.10299833863974],[0.10047525167465,0.057273827493191,-0.011395698413253]],[[-0.029587894678116,0.019922018051147,-0.033711917698383],[-0.010326682589948,-0.068975664675236,0.027573723345995],[0.018871553242207,-0.024412501603365,0.00061421317514032]],[[-0.069818109273911,-0.01177844684571,0.049760103225708],[-0.064143821597099,-0.02775539830327,-0.047365117818117],[0.031927909702063,0.024394137784839,0.040504407137632]],[[-0.057242546230555,0.01270355656743,-0.032460451126099],[0.047731596976519,-0.0090593788772821,0.015620647929609],[0.060428746044636,0.14629256725311,0.054394271224737]],[[-0.03260088339448,-0.0064093982800841,-0.016554795205593],[0.11304973810911,-0.096244275569916,-0.037954535335302],[-0.0069472300820053,-0.014209468849003,-0.02326768822968]],[[0.029353771358728,0.024765221402049,-0.064932443201542],[0.031519155949354,-0.042667161673307,0.046900026500225],[-0.095068164169788,0.037112236022949,0.11871409416199]],[[0.024538796395063,-0.0087910555303097,-0.024044463410974],[-0.0012024138122797,-0.055824629962444,-0.024411728605628],[0.092766933143139,-0.0086378771811724,0.05312380567193]],[[0.00091488671023399,0.062947705388069,0.13429653644562],[0.059698104858398,-0.087796814739704,0.05973382294178],[0.056226406246424,0.0063195978291333,-0.00037404533941299]],[[0.031950272619724,0.036144196987152,0.069969289004803],[0.03741043061018,0.0058068507350981,0.039667073637247],[-0.082600720226765,0.041224770247936,0.084123320877552]],[[0.069635115563869,0.027955498546362,-0.029164975509048],[-0.017757132649422,0.023316688835621,-0.082454651594162],[-0.0051278974860907,-0.017023494467139,-0.022234253585339]],[[-0.037804204970598,0.02074433863163,-0.0097749391570687],[0.0064924601465464,0.028473161160946,0.078924544155598],[-0.018471015617251,0.019320702180266,0.0024031391367316]],[[-0.034594275057316,-0.043771684169769,0.057772688567638],[0.04787140339613,0.014617287553847,0.040106695145369],[0.02893752977252,0.0073167909868062,-0.023701369762421]],[[0.083942949771881,0.020355585962534,-0.0013489263365045],[0.027898048982024,0.0082747964188457,-0.019845325499773],[0.0086630275472999,0.015940191224217,-0.0061126085929573]],[[0.074956737458706,0.0077518280595541,-0.057884227484465],[-0.1081280335784,-0.026126995682716,-0.082072392106056],[-0.015033161267638,0.0065347361378372,-0.16154529154301]],[[-0.054337199777365,-0.01046244893223,-0.060274470597506],[0.0039886143058538,-0.032843418419361,-0.085336044430733],[-0.094582609832287,0.099265910685062,0.044986046850681]],[[-0.015984199941158,0.0089514944702387,-0.019320571795106],[0.028894798830152,-0.053359877318144,0.035501230508089],[-0.070065073668957,-2.8764652597602e-05,-0.031468935310841]],[[0.090548969805241,-0.011835671029985,0.032171957194805],[0.057429444044828,0.02940522134304,0.0090468311682343],[0.053678400814533,-0.086829967796803,-0.029108611866832]],[[0.043476890772581,-0.033708091825247,0.037387736141682],[0.089359752833843,-0.0084949294105172,0.0030444720759988],[0.096839971840382,-0.035019226372242,-0.04362965002656]],[[0.0088200028985739,0.024736257269979,0.047069173306227],[0.079114735126495,-0.018223643302917,0.01444380171597],[-0.012100895866752,-0.038669429719448,-0.010624303482473]],[[0.091252043843269,0.060420833528042,-0.054813925176859],[0.01146596763283,0.010318190790713,0.059829656034708],[-0.04470869153738,0.057947386056185,-0.052710771560669]],[[-0.012455337680876,0.0055229878053069,0.043735846877098],[0.033893771469593,0.015003111213446,0.030068350955844],[0.042932625859976,-0.0066600646823645,-0.042920969426632]],[[0.11989468336105,0.050049908459187,0.041498199105263],[-0.061839427798986,-0.060880579054356,0.055609054863453],[-0.073676988482475,0.075457364320755,0.003832746297121]],[[0.027365993708372,-0.0046347426250577,0.084107175469398],[0.0037842819001526,0.028260400518775,0.0087198466062546],[0.0094285551458597,0.055272027850151,0.040385592728853]],[[-0.11462730169296,0.012250906787813,0.10054299980402],[0.014350231736898,-0.011576991528273,-0.083893813192844],[-0.011425916105509,-0.034284852445126,0.14808960258961]],[[0.016293546184897,0.12828889489174,-0.0039918827824295],[-0.069602027535439,0.12558868527412,-0.123998247087],[-0.094624906778336,-0.0011232019169256,0.03832646086812]],[[-0.010780159384012,0.0019727402832359,-0.015979258343577],[0.010213569737971,-0.024511056020856,-0.011015410535038],[0.038203727453947,0.016822623088956,0.064144134521484]],[[-0.0064912480302155,-0.069352596998215,0.029963478446007],[-0.037314455956221,0.034194145351648,-0.022294621914625],[-0.087601490318775,-0.041900224983692,-0.046361450105906]],[[-0.001369048259221,0.018987717106938,-0.039755053818226],[0.044698171317577,0.01971841417253,0.066374197602272],[0.0024092101957649,0.038203429430723,-0.056961365044117]],[[-0.0074659083038568,0.063428483903408,-0.14430464804173],[-0.1179197281599,0.0059494390152395,-0.020013514906168],[-0.034177612513304,-0.00044185062870383,0.047326806932688]],[[-0.0096841584891081,0.02897872403264,0.10608536750078],[0.0034897699952126,0.038151796907187,-0.053602691739798],[-0.011073197238147,-0.11203548312187,0.0030446080490947]],[[-0.035508926957846,0.048814199864864,0.020263209939003],[0.068740658462048,-0.046857718378305,-0.017372868955135],[-0.00151073676534,-0.12121085822582,-0.036095947027206]],[[-0.04356087371707,0.011215916834772,-0.006964098662138],[-0.02488350123167,0.0076432921923697,-0.049933187663555],[0.14814828336239,-0.08003031462431,-0.069622159004211]],[[0.013918746262789,-0.045178856700659,-0.054308366030455],[0.063365802168846,0.056269086897373,-0.016040956601501],[-0.064995959401131,0.018097756430507,0.067089013755322]],[[0.014065410010517,0.050208002328873,-0.11438342928886],[-0.051778011023998,-0.048760365694761,-0.043139904737473],[-0.053548865020275,-0.0089583126828074,0.054198078811169]],[[0.02581031806767,-0.010648785158992,0.046986810863018],[0.017753878608346,-0.018462328240275,0.078724853694439],[0.022446310147643,-0.0089786760509014,0.10805431008339]],[[-0.029725363478065,-0.021481608971953,-0.06929737329483],[0.026435513049364,0.0044288500212133,-0.047334138303995],[-0.011045250110328,0.0040632477030158,-0.074114710092545]],[[-0.010522897355258,-0.045092321932316,0.026788827031851],[0.043613810092211,0.081009700894356,0.15634180605412],[0.036428518593311,-0.15709465742111,0.033402003347874]],[[-0.029012270271778,0.0059092394076288,0.032100766897202],[0.054234586656094,0.052597165107727,0.14439648389816],[-0.11408205330372,-0.066190429031849,-0.090472310781479]],[[0.031586680561304,-0.049712587147951,-0.06097624823451],[-0.032870437949896,-0.069354899227619,-0.050188388675451],[-0.031823955476284,-0.097084008157253,-0.053052622824907]],[[0.032416723668575,-0.0771154910326,-0.036759559065104],[-0.15154522657394,-0.018344586715102,0.027066508308053],[-0.027649993076921,0.083551667630672,-0.056333858519793]],[[-0.073806680738926,0.025266187265515,-0.04967238008976],[-0.032842621207237,0.01368460431695,0.085411041975021],[-0.0074535212479532,0.01215769443661,-0.052913475781679]],[[-0.035859558731318,-0.050200544297695,-0.027637083083391],[0.017042240127921,-0.024646667763591,-0.0025358891580254],[-0.023818902671337,0.067054525017738,0.078800573945045]],[[-0.071300968527794,-0.11021663248539,0.066138751804829],[-0.046821255236864,-0.054286759346724,0.027262322604656],[-0.023793196305633,-0.072421960532665,0.042939636856318]],[[0.0060650496743619,0.030801748856902,0.050996113568544],[-0.011478958651423,0.10885988175869,0.059494841843843],[-0.062185499817133,0.14214330911636,0.020711578428745]],[[0.014980349689722,-0.016488078981638,-0.051312178373337],[0.17330524325371,0.014131182804704,-0.038435909897089],[0.065547809004784,-0.027413742616773,-0.12541721761227]],[[0.025562638416886,-0.059639237821102,-8.0901081673801e-06],[0.047413591295481,-0.0031138635240495,-0.08133427798748],[-0.002321663312614,0.05400076135993,0.048580497503281]],[[-0.026403496041894,-0.068924397230148,-0.030925322324038],[-0.030999736860394,-0.057580340653658,-0.032641347497702],[0.033059623092413,0.052222318947315,-0.013757109642029]],[[-0.050395932048559,0.042955610901117,0.012789064086974],[0.19099207222462,0.1866779178381,0.092876322567463],[0.054538987576962,-0.081403449177742,0.040091887116432]],[[-0.14642752707005,-0.039806962013245,-0.037096008658409],[-0.10552072525024,-0.023595618084073,0.065353959798813],[0.038069870322943,0.063082784414291,0.0039392118342221]],[[-0.046584121882915,0.035649541765451,0.074253432452679],[-0.021921906620264,0.042438682168722,0.069648876786232],[-0.052328158169985,0.028207678347826,0.091587543487549]],[[0.060294833034277,0.066691800951958,-0.0070080263540149],[0.10275211185217,0.049647636711597,-0.026067230850458],[0.035036932677031,-0.014735385775566,-0.06186942756176]],[[-0.14927117526531,-0.027630273252726,0.0091718984767795],[0.020415436476469,0.04637848213315,-0.0055334460921586],[0.026441676542163,-0.048154093325138,0.075870469212532]],[[0.02809801325202,0.088628992438316,-0.053675387054682],[0.10666406899691,0.070956945419312,0.087085947394371],[-0.025539068505168,0.054899144917727,0.104512155056]],[[0.084026850759983,0.02015651203692,-0.013518032617867],[0.052157323807478,0.0027871453203261,-0.12310168147087],[0.0053995936177671,-0.014370488002896,0.020058559253812]],[[0.024945909157395,0.10660497099161,-0.076966606080532],[0.082129932940006,-0.050991650670767,-0.018794352188706],[-0.013533171266317,0.040197178721428,0.069569572806358]],[[-0.029362818226218,0.060563921928406,0.11460956186056],[-0.038484804332256,0.05898617208004,0.081629939377308],[-0.062011823058128,-0.12547719478607,-0.012286246754229]],[[-0.10943941771984,0.076535493135452,0.01320518180728],[0.051383040845394,0.043185792863369,0.11986445635557],[0.018446862697601,0.014491935260594,0.099062785506248]],[[-0.02623326331377,0.038098141551018,0.032067190855742],[-0.034776326268911,-0.096302464604378,-0.020407246425748],[-0.034412886947393,-0.071710921823978,-0.086380690336227]],[[0.044348739087582,0.023162368685007,-0.027952114120126],[-0.014242943376303,-0.020753983408213,-0.0073905438184738],[-0.036143179982901,0.064197674393654,0.014970164746046]],[[-0.10200272500515,-0.16609145700932,0.065517790615559],[-0.011508184485137,0.085228532552719,0.093294262886047],[0.054168287664652,-0.0078280791640282,-0.01771018281579]],[[-0.036940935999155,-0.07112293690443,-0.06959767639637],[-0.065870456397533,-0.12172968685627,0.0049714157357812],[-0.083651505410671,-0.051264483481646,-0.040106769651175]],[[-0.023809129372239,0.009341630153358,-0.011735399253666],[0.12317933142185,-0.016563581302762,0.038619041442871],[0.029384599998593,-0.01572690717876,-0.061162173748016]],[[0.0419244132936,-0.01196913048625,-0.13587060570717],[-0.026666969060898,0.085432946681976,0.035485994070768],[-0.056196540594101,-0.035337895154953,-0.044802881777287]],[[0.086730845272541,0.071228869259357,0.02386193536222],[-0.056950841099024,0.068961165845394,0.13514298200607],[-0.017853960394859,0.028616670519114,0.077896125614643]],[[0.011142266914248,-0.033625140786171,0.079702638089657],[-0.02037800475955,-0.013981104828417,0.027073787525296],[-0.049284860491753,0.0064179641194642,0.082224480807781]],[[0.010433096438646,0.054052010178566,0.070036590099335],[0.01447731629014,-0.040113814175129,0.010425589978695],[0.037784699350595,0.033349126577377,0.050676792860031]],[[0.044184342026711,-0.057148922234774,0.10705803334713],[0.018945198506117,-0.13358119130135,-0.11482354253531],[-0.060105342417955,-0.078923217952251,0.033060435205698]],[[-0.10457706451416,-0.068716585636139,0.024850394576788],[0.0066844066604972,-0.0249497089535,-0.020759588107467],[0.029430579394102,0.016252923756838,-0.063013963401318]],[[0.10446677356958,0.090841114521027,-0.029174573719501],[-0.057630065828562,-0.044586930423975,0.034842483699322],[-0.028916526585817,-0.015326113440096,-0.14090836048126]],[[-0.083520196378231,-0.11310578882694,0.0093509387224913],[-0.025084637105465,0.0094820884987712,-0.054492615163326],[-0.009537355042994,-0.028107395395637,-0.040311228483915]],[[0.022292690351605,-0.064788781106472,-0.021511681377888],[0.029031530022621,-0.0054786303080618,-0.08659303188324],[0.23091566562653,0.069518387317657,-0.064589962363243]],[[-0.039360500872135,0.032087121158838,0.046761732548475],[0.0359819047153,0.001376259024255,0.053449276834726],[-0.022182274609804,-0.033656716346741,0.036905564367771]],[[0.11557900160551,0.06585805863142,-0.051013540476561],[0.018149845302105,0.03635062277317,-0.04631507024169],[-0.025281675159931,-0.017074996605515,0.11480409651995]],[[-0.058597840368748,-0.058280907571316,-0.034352205693722],[0.022413885220885,-0.03669448569417,-0.0084151336923242],[-0.0025191914755851,-0.0055119111202657,0.033455360680819]],[[0.057335745543242,-0.0053350478410721,-0.075955353677273],[-0.047626875340939,-0.068038053810596,0.020750377327204],[-0.050674840807915,0.055418450385332,-0.13408471643925]],[[0.053845606744289,-0.023554110899568,0.044819623231888],[0.04265508800745,0.096510209143162,-0.027241298928857],[0.0032781767658889,0.069394536316395,0.025583479553461]],[[-0.042515072971582,-0.057336989790201,0.027856597676873],[-0.053531780838966,-0.03410218283534,0.021139500662684],[0.034473493695259,0.013595592230558,0.026719093322754]],[[-0.037717025727034,0.030062889680266,-0.020224137231708],[0.036626499146223,-0.021823352202773,-0.03357258439064],[-0.10262993723154,0.017828244715929,-0.0025967583060265]],[[-0.070958517491817,-0.12977476418018,-0.066481538116932],[0.0026192981749773,-0.03776528686285,0.063737384974957],[-0.044572237879038,0.017303952947259,-0.00418058084324]],[[0.11346878856421,0.017036167904735,-0.076526075601578],[-0.046724170446396,-0.00051457580411807,-0.022512814030051],[-0.018448226153851,-0.055609222501516,-0.0015049076173455]],[[0.040631175041199,-0.010732237249613,-0.091070435941219],[0.1163347736001,0.019448881968856,0.0014256708091125],[0.12326090037823,-0.047767534852028,0.13666512072086]],[[-0.023514254018664,0.042312514036894,-0.030694471672177],[-0.05066055804491,-0.094304583966732,-0.12382383644581],[0.024606728926301,0.082883015275002,-0.019811937585473]],[[0.040457174181938,-0.081759922206402,-0.062464259564877],[0.010173767805099,0.016302721574903,-0.00025975445169024],[0.0036721343640238,-0.026480760425329,0.038841068744659]],[[-0.018754411488771,0.0084177842363715,-0.0072605074383318],[-0.0094476658850908,0.019611686468124,-0.0040771309286356],[-0.1227636039257,-0.1282614171505,0.021863479167223]],[[0.0065058749169111,-0.07175750285387,0.015911687165499],[-0.014120437204838,0.10115623474121,0.035645961761475],[0.013978755101562,-0.0040548737160861,-0.030438143759966]],[[0.028384562581778,0.080123893916607,-0.011205424554646],[0.012470055371523,0.1584852039814,0.044437397271395],[0.011195803061128,0.16749618947506,0.0015971775865182]],[[-0.025806479156017,-0.061555679887533,0.032542239874601],[0.092398539185524,-0.094037547707558,-0.023055983707309],[0.02766627818346,-0.039493698626757,-0.011264562606812]],[[-0.012921782210469,0.022497806698084,-0.077081114053726],[-0.024142976850271,0.030628364533186,-0.076055534183979],[0.059444107115269,-0.011292424984276,0.12335823476315]],[[0.085490889847279,0.064708210527897,-0.076789230108261],[0.073580585420132,-0.014470670372248,-0.048636414110661],[-0.036446519196033,0.032474111765623,-0.094033285975456]],[[-0.019966028630733,0.050885710865259,0.11087863147259],[0.10148381441832,-0.083451725542545,-0.031599242240191],[0.029122134670615,-0.15479040145874,-0.098043888807297]],[[0.034061077982187,-0.025346260517836,0.071492999792099],[0.093184284865856,0.017104530707002,-0.06584806740284],[-0.02054737880826,0.042946856468916,0.064950570464134]],[[-0.060926701873541,0.035318657755852,0.18566931784153],[0.12100215256214,0.0089842760935426,-0.10055670887232],[-0.05373227596283,-0.049993142485619,0.083878621459007]],[[-0.069965913891792,0.0011134373489767,0.091142982244492],[0.072738274931908,-0.026836840435863,0.09658020734787],[0.034152984619141,0.098586104810238,0.062457825988531]],[[0.070083491504192,-0.056961137801409,-0.072681531310081],[0.096762500703335,0.04738499969244,0.054093640297651],[0.089155256748199,0.033199124038219,-0.013821897096932]]],[[[0.047052588313818,-0.045392695814371,-0.024235034361482],[-0.006338709499687,0.013617132790387,0.0080835465341806],[-0.001131093245931,-0.057059850543737,-0.0033162175677717]],[[-0.037669099867344,0.057037189602852,0.018824737519026],[-0.0043713268823922,0.040251854807138,0.0062550390139222],[-0.056592345237732,-0.027257733047009,-0.0033845372963697]],[[-0.050910260528326,0.0074668377637863,0.069437719881535],[0.0051500322297215,0.011277662590146,-0.071782164275646],[-0.019040109589696,-0.037952728569508,0.020934378728271]],[[0.013520427048206,-0.010433356277645,0.0079322652891278],[-0.020799132063985,0.021617541089654,-0.0010137592907995],[-0.089245341718197,0.022078908979893,0.01625450514257]],[[-0.04628574475646,0.0044924677349627,-0.033994797617197],[0.10706818848848,0.016841044649482,-0.06749352812767],[-0.0047294581308961,0.030046245083213,-0.027802634984255]],[[0.077771604061127,0.028761461377144,0.018043220043182],[0.021136682480574,0.011589117348194,0.057405099272728],[-0.058875143527985,-0.01148378662765,-0.040075339376926]],[[-0.0035328699741513,-0.035439021885395,-0.038394346833229],[0.059469863772392,0.040789421647787,-0.0059652207419276],[0.010357263498008,0.028272127732635,-0.01608063839376]],[[0.060094453394413,0.013863823376596,0.0077045951038599],[-0.044742308557034,-0.018729593604803,-0.006088943220675],[0.089684069156647,0.0098364930599928,0.016544280573726]],[[0.050352431833744,0.0026953741908073,-0.028364831581712],[0.049492973834276,0.0057086739689112,-0.057615049183369],[-0.05087274312973,-0.064990997314453,0.10350935161114]],[[0.022863170132041,-0.05164846777916,0.014920081943274],[0.01337007433176,0.11075397580862,-0.0037189342547208],[0.062543459236622,0.023204743862152,-0.02289079874754]],[[0.018290776759386,-0.049403294920921,-0.0046451529487967],[0.065359652042389,0.091101713478565,0.032833613455296],[0.043749541044235,-0.025694094598293,-0.050917461514473]],[[0.0091949999332428,0.0082761570811272,0.058191075921059],[0.0068230461329222,0.011276965029538,0.013934406451881],[-0.010719250887632,-0.061922185122967,-0.010026410222054]],[[0.0013504676753655,0.015972597524524,0.0038473505992442],[-0.056469868868589,0.01792961359024,-0.038355339318514],[-0.011991410516202,-0.049521785229445,-0.029280606657267]],[[-0.025122893974185,0.043566297739744,0.026313541457057],[0.0099101886153221,-0.0022514548618346,-0.037906184792519],[0.079073138535023,0.024403663352132,-0.024120466783643]],[[-0.0075423140078783,0.0079641966149211,0.043597523123026],[-0.03200164809823,0.011141602881253,-0.01126747764647],[0.05940417945385,0.025181425735354,0.039528027176857]],[[0.032975010573864,0.02366360090673,0.083235383033752],[-0.076421357691288,-0.016280427575111,-0.0041509112343192],[0.031833376735449,-0.031840313225985,0.017548967152834]],[[0.0076539875008166,-0.053969144821167,0.02372027002275],[0.032351080328226,-0.0061058723367751,-0.017107967287302],[0.029872454702854,-0.019566105678678,-0.013849642127752]],[[0.011662434786558,0.071278110146523,0.0083497427403927],[-0.0062920092605054,-0.02391342073679,0.031753852963448],[-0.014017209410667,0.011711244471371,-0.055627342313528]],[[-0.027650035917759,-0.019008569419384,0.015326564200222],[0.0043594762682915,-0.05222624540329,-0.026545522734523],[-0.02118163369596,0.0570796020329,-0.0012898463755846]],[[0.0088318241760135,0.019286649301648,-0.052127305418253],[-0.025100253522396,0.030690824612975,0.025435011833906],[-0.0043918965384364,0.080190733075142,0.030928861349821]],[[-0.12529954314232,-0.0051948819309473,0.047308541834354],[0.029787752777338,0.016230570152402,0.0083905002102256],[0.024797899648547,0.043693613260984,0.060564894229174]],[[0.018802914768457,0.022213771939278,-0.029355579987168],[0.077089712023735,0.064585566520691,-0.099746592342854],[0.0070980065502226,0.032933693379164,-0.0035761124454439]],[[0.094423212110996,-0.018371867015958,-0.0073491320945323],[0.014423745684326,0.041134130209684,-0.10671555995941],[0.021788885816932,0.043653748929501,-0.028626948595047]],[[0.0047451718710363,-0.0074587855488062,-0.0015127123333514],[-0.032872505486012,0.045429922640324,-0.034513674676418],[-0.013747204095125,-0.014909621328115,0.0045119705609977]],[[-0.066349431872368,0.033013224601746,0.10033255815506],[-0.013749498873949,-0.081711411476135,0.0062644872814417],[0.025197669863701,0.059191811829805,0.039512880146503]],[[-0.018386567011476,-0.025431031361222,0.028650114312768],[0.0082483803853393,0.051562126725912,0.027072558179498],[-0.048739641904831,0.0045818882063031,0.015115280635655]],[[-0.01793447881937,0.082274988293648,-0.017191242426634],[0.018274638801813,0.084950476884842,-0.0022778192069381],[0.0561338737607,0.0049870079383254,0.08763337880373]],[[-0.010654308833182,0.074016474187374,0.049916695803404],[-0.040201056748629,-0.081923119723797,-0.0010184452403337],[-0.002890155185014,-0.075844146311283,-0.041902873665094]],[[0.021747648715973,0.0046561048366129,0.042979471385479],[0.017948262393475,-0.00373987830244,0.095732226967812],[0.034840650856495,0.035562135279179,-0.0024068064521998]],[[0.063356913626194,-0.02928196080029,-0.030575789511204],[-0.052294965833426,-0.0084373569115996,-0.00087054981850088],[0.011851747520268,-0.051211543381214,-0.031359013170004]],[[-0.052198376506567,-0.027626898139715,-0.0042570498771966],[0.067134656012058,0.065462902188301,0.026011997833848],[0.023934280499816,0.03451656550169,-0.040724135935307]],[[-0.0014662902103737,-0.0082244873046875,-0.077562004327774],[-0.068428061902523,0.020633956417441,0.033667124807835],[-0.056217614561319,-0.0021961762104183,-0.036454685032368]],[[-0.064666867256165,0.0795673802495,-0.0039610448293388],[-0.044617481529713,-0.073812492191792,0.010962145403028],[0.057842269539833,-0.035648979246616,0.035655077546835]],[[-0.065508373081684,-0.03937105089426,0.017605615779757],[-0.028945408761501,0.021932449191809,0.03771061822772],[0.048201207071543,0.028473131358624,0.035471823066473]],[[0.053698550909758,-0.072753809392452,-0.0097253657877445],[0.033121362328529,0.034427020698786,-0.076622128486633],[0.012450037524104,0.070075653493404,0.077839821577072]],[[-0.0011450281599537,0.00094190234085545,0.025768639519811],[-0.025860413908958,-0.021591259166598,-0.0047528743743896],[-0.060062412172556,-0.0077388654462993,0.010806548409164]],[[-0.034837450832129,-0.017528213560581,-0.042357224971056],[0.023644007742405,0.052844826132059,0.00035439027124085],[-0.01051118131727,-0.04213459789753,-0.00013362360186875]],[[0.0090625658631325,0.027122061699629,0.038191232830286],[0.0048577832058072,0.0048160515725613,0.023615600541234],[-0.011380027979612,-0.03408882394433,-0.060560505837202]],[[-0.0016777327982709,0.028400210663676,0.0015611829003319],[-0.013690578751266,0.064961105585098,-0.036367055028677],[0.034943610429764,0.032741773873568,-0.07296721637249]],[[-0.072523817420006,-0.018611084669828,-0.078624911606312],[-0.03018088079989,0.032294757664204,0.00012089486699551],[0.027295647189021,-0.080468438565731,-0.025441372767091]],[[-0.075984872877598,-0.0095778685063124,0.015564475208521],[0.036830496042967,-0.042213015258312,-0.043123126029968],[-0.014331826008856,-0.0490004979074,0.028349542990327]],[[-0.085809476673603,0.047981567680836,-0.0094032064080238],[0.024802865460515,0.033477421849966,-0.070467986166477],[-0.043803993612528,0.014361025765538,0.068274907767773]],[[-0.053501486778259,0.014109257608652,0.021118512377143],[-0.051981594413519,0.052500631660223,-0.09547471255064],[-0.050292659550905,0.044915769249201,-0.049597412347794]],[[0.037260893732309,-0.0036552436649799,-0.027483629062772],[-0.01647973805666,-0.064607672393322,-0.065316930413246],[-0.0054717166349292,-0.03253497928381,-0.022106047719717]],[[-0.012232286855578,-0.05659918487072,0.070177458226681],[-0.064057148993015,-0.016596516594291,0.017490681260824],[0.016041342169046,-0.042234886437654,0.031704388558865]],[[0.075209081172943,0.047071877866983,-0.054572742432356],[-0.048961244523525,-0.11636735498905,-0.003162500448525],[-0.059746138751507,0.057882439345121,0.058242633938789]],[[-0.067956052720547,-0.016024108976126,-0.011368417181075],[-0.029886769130826,-0.0088247051462531,-0.081777714192867],[-0.06570602953434,0.025745116174221,0.027604518458247]],[[-0.0088689457625151,-0.0084311878308654,0.032443594187498],[0.02994079887867,-0.040294617414474,0.089609183371067],[0.027654642239213,0.050390996038914,-0.014900167472661]],[[-0.0053303455933928,0.00049289845628664,-0.028452491387725],[-0.032557003200054,-0.042912915349007,-0.11385542154312],[0.0062562050297856,-0.032599154859781,0.031265038996935]],[[-0.026289211586118,-0.022421225905418,0.056450292468071],[-0.028029430657625,0.039273861795664,0.013438460417092],[-0.045571472495794,-0.026056094095111,-0.068150579929352]],[[0.070673696696758,0.022458029910922,0.0031004233751446],[0.015714205801487,-0.074585147202015,0.024545151740313],[0.062414716929197,-0.013805637136102,-0.049829874187708]],[[-0.018408020958304,-0.021622899919748,0.093204975128174],[0.0078445831313729,-0.050937674939632,-0.096727058291435],[0.022508988156915,0.021422488614917,-0.016044996678829]],[[-0.071716949343681,-0.0023976522497833,0.00062029523542151],[0.040508523583412,-0.080225355923176,0.033967956900597],[0.022029353305697,0.014500821009278,0.075307793915272]],[[0.036454442888498,-0.030032370239496,0.024328868836164],[-0.095657676458359,0.013664596714079,0.049047634005547],[0.0452960729599,-0.038776643574238,-0.022534171119332]],[[-0.065910965204239,-6.6719432652462e-05,-0.054554738104343],[0.066376216709614,0.033132579177618,-0.08252439647913],[0.010426643304527,-0.056839536875486,0.0079480865970254]],[[0.027025554329157,-0.083528451621532,-0.044876094907522],[0.017652280628681,0.071982033550739,0.035093616694212],[-0.028287578374147,-0.039828468114138,0.017484562471509]],[[-0.031929466873407,-0.042861230671406,0.034498535096645],[-0.020820371806622,-0.042266942560673,0.015542920678854],[0.072466962039471,-0.016274720430374,0.025871017947793]],[[-0.023527894169092,0.025853453204036,-0.011644065380096],[-0.0058241561055183,-0.045697592198849,-0.00054345582611859],[0.005020440556109,0.036134868860245,-0.057492468506098]],[[-0.0084189176559448,0.00099905533716083,-0.010586252436042],[0.031818594783545,-0.053940396755934,-0.070924296975136],[0.018081899732351,-0.043217204511166,0.014270523563027]],[[0.027173029258847,-0.029007080942392,-0.0044125658459961],[0.024383885785937,-0.15521903336048,-0.054541986435652],[-0.091142140328884,-0.027801400050521,-0.020634599030018]],[[-0.014704765751958,0.073384508490562,0.036314226686954],[-0.014885322190821,-0.082996405661106,0.01177083235234],[-0.064685501158237,-0.01566468551755,-0.034659907221794]],[[-0.0073170717805624,0.078751407563686,0.043061297386885],[-0.018000969663262,0.013416786678135,-0.087975807487965],[0.020688366144896,-0.035929340869188,0.055785942822695]],[[0.0056885466910899,0.092810302972794,0.029637457802892],[-0.049624368548393,0.041204050183296,-0.090808212757111],[-0.047507606446743,0.090317368507385,-0.023676086217165]],[[0.083520613610744,-0.040091555565596,-0.047308944165707],[-0.073882572352886,0.020960183814168,0.042268056422472],[0.03027319163084,-0.0068985102698207,-0.0080404048785567]],[[0.010730555281043,0.029879806563258,-0.038995675742626],[-0.0169179122895,0.046559553593397,0.015305556356907],[0.049278620630503,0.013027803972363,-0.066829457879066]],[[0.0077110081911087,-0.072491928935051,-0.023841168731451],[0.015891375020146,0.0089939506724477,0.02869026735425],[-0.054778899997473,-0.070058263838291,0.031840045005083]],[[0.059427570551634,-0.043721564114094,-0.022865390405059],[0.046606384217739,-0.022645408287644,-0.0162203758955],[-0.0054713869467378,-0.026529548689723,0.047519404441118]],[[0.033548004925251,-0.021126706153154,0.022024631500244],[0.037709753960371,0.0360307097435,0.046655282378197],[0.0067543676123023,-0.095457904040813,0.001440774067305]],[[0.038574486970901,-0.04305586963892,0.041603904217482],[0.012696449644864,-0.010832590982318,0.021975474432111],[-0.015530009754002,-0.016421020030975,0.072827264666557]],[[-0.021598899737,0.069120585918427,-0.071044370532036],[-0.027576211839914,0.0093789715319872,-0.025134513154626],[-0.051552504301071,0.013205814175308,-0.079126581549644]],[[-0.0060550202615559,-0.014716602861881,-0.0023296799045056],[0.024029403924942,-0.040780980139971,-0.024587644264102],[-0.015625270083547,-0.036596309393644,-0.032506283372641]],[[0.0071573266759515,-0.00040861862362362,-0.024260077625513],[-0.024309379979968,-0.048875719308853,0.050213944166899],[-0.02800720743835,-0.021153721958399,-0.092656753957272]],[[0.015673067420721,-0.041789885610342,-0.065300107002258],[-0.021604560315609,0.056243143975735,-0.083360210061073],[-0.025649651885033,0.055480562150478,0.006200454197824]],[[-0.03612682595849,0.010216485708952,0.020033419132233],[-0.0040538022294641,-0.06139350682497,-0.026100158691406],[0.01701420918107,0.043704401701689,0.046519707888365]],[[-0.012529266998172,0.00029834418091923,0.017271751537919],[-0.013102663680911,0.023217031732202,0.051729045808315],[0.065911382436752,0.041981935501099,0.075401410460472]],[[-0.05023005977273,-0.0048326319083571,-0.056369606405497],[-0.049491506069899,0.019987965002656,0.032508514821529],[0.014000226743519,0.038599833846092,0.036259349435568]],[[0.082498654723167,0.04985111951828,-0.00044978866935708],[0.032063413411379,0.014586744830012,0.0028479159809649],[-0.013162723742425,0.050277207046747,0.074705265462399]],[[-0.039461884647608,-0.029125571250916,-0.061850685626268],[0.027197701856494,-0.014102349057794,-0.054465852677822],[0.036012604832649,0.036524593830109,0.017078200355172]],[[-0.013258238323033,-0.076286509633064,-0.014586794190109],[-0.06104027479887,0.0093807997182012,0.057771403342485],[0.037271797657013,-0.058269307017326,0.01881786249578]],[[-0.034180469810963,-0.02368051186204,0.033773172646761],[-0.0013052809517831,0.090268172323704,0.0061351847834885],[0.07424508780241,0.0005211845273152,-0.012199039570987]],[[-0.087820895016193,-0.040233928710222,-0.015036822296679],[0.023656787350774,0.011776530183852,0.034726824611425],[-0.02849468588829,0.018890688195825,-0.029186146333814]],[[-0.051288112998009,0.0092755323275924,-0.00038361753104255],[-0.040403936058283,-0.011419680900872,-0.030695486813784],[-0.049792882055044,0.0072821252979338,0.024455105885863]],[[-0.050864644348621,-0.017934264615178,-0.00054252060363069],[0.061721064150333,-0.083780750632286,0.09087598323822],[-0.046005431562662,-0.020343286916614,0.019223649054766]],[[-0.0015338984085247,-0.0065987287089229,0.032119851559401],[0.049912892282009,0.026818534359336,-0.017540516331792],[-0.067735865712166,0.03116506524384,-0.013647549785674]],[[0.029343603178859,0.0036956255789846,0.0093786707147956],[0.038528900593519,0.05748151242733,-0.022004364058375],[0.0045396853238344,0.00075278873555362,-0.046846285462379]],[[-0.0066118221729994,-0.061005268245935,0.0018111943500116],[-0.022635253146291,-0.018393455073237,-0.028509505093098],[-0.033357951790094,-0.045062344521284,-0.03198816627264]],[[0.011181402020156,0.035604704171419,0.05575530603528],[0.065170861780643,-0.060530748218298,0.040737580507994],[0.05493701249361,0.025273663923144,0.051984306424856]],[[0.0088630076497793,0.081001706421375,-0.018000315874815],[-0.020094081759453,-0.014530309475958,-0.010278296656907],[0.010923212394118,0.011539158411324,-0.060892064124346]],[[0.021162696182728,0.0034910207614303,-0.0017909246962517],[-0.036474086344242,-0.051294926553965,0.013583277352154],[-0.1062970161438,-0.0073887757025659,-0.025424346327782]],[[0.0096052382141352,-0.084494575858116,-0.098129391670227],[-0.041982334107161,0.026939298957586,0.020895227789879],[-0.067284226417542,-0.051142044365406,-0.017088819295168]],[[-0.047001212835312,0.072893179953098,0.019128061830997],[0.058902781456709,-0.039705935865641,0.029659107327461],[0.00097293505677953,-0.031854536384344,-0.021855089813471]],[[-0.022351970896125,-0.0082214586436749,0.021741326898336],[0.084466174244881,-0.016043780371547,-0.074534609913826],[-0.14400447905064,-0.000862414133735,-0.043648898601532]],[[0.062508948147297,0.032584317028522,-0.016779405996203],[-0.026850389316678,-0.019562428817153,-0.030124386772513],[-0.0121487993747,0.010987407527864,0.039324946701527]],[[-0.03067715652287,-0.022171152755618,0.038636334240437],[-0.023724801838398,0.081854663789272,0.03519669175148],[0.033459316939116,0.01214733812958,-0.0028004562482238]],[[-0.04724795371294,0.016806226223707,0.022451942786574],[0.048194136470556,0.0042237224988639,-0.010000671260059],[-0.017615895718336,-0.053038369864225,0.025831013917923]],[[-0.0062195747159421,0.078060753643513,0.054917354136705],[0.024642504751682,-0.014029311016202,-0.01407057326287],[-0.091528676450253,0.03413799777627,-0.049780867993832]],[[-0.0089339576661587,0.010882954113185,-0.029208295047283],[-0.028953205794096,0.01206926163286,0.027554167434573],[0.010449558496475,0.0011053316993639,-0.077764585614204]],[[-0.05017314106226,0.034823678433895,0.02634366042912],[0.006627144291997,0.0015431278152391,-0.075192503631115],[0.028115646913648,-0.0079919174313545,-0.011710279621184]],[[0.0089461905881763,0.027608346194029,0.024706931784749],[-0.098102711141109,0.014904311858118,-0.0055217291228473],[0.0044566239230335,-0.017233019694686,0.038720488548279]],[[-0.029049094766378,-0.011847991496325,-0.00089944014325738],[0.011721652932465,0.0037772352807224,0.0044463439844549],[0.0031606620177627,0.05506718531251,0.010584675706923]],[[-0.023642269894481,0.0077569838613272,0.022016432136297],[0.0086576361209154,0.0096087735146284,-0.086163364350796],[0.072766460478306,-0.10078732669353,0.024213513359427]],[[-0.024777190759778,-0.025685684755445,-0.086770266294479],[-0.055741634219885,-0.0060506113804877,-0.083108343183994],[0.036534201353788,-0.030228769406676,0.0058664926327765]],[[0.029125699773431,-0.024290720000863,0.024861941114068],[0.051364380866289,0.040048390626907,0.0016695940867066],[0.017051860690117,-0.0047988994047046,0.040520638227463]],[[0.014704720117152,-0.013522082008421,0.040893077850342],[0.032859317958355,-0.03882048651576,-0.026801157742739],[-0.015228463336825,-0.0048632347024977,0.03613605350256]],[[-0.024756766855717,-0.0028605542611331,0.048831816762686],[-0.066726215183735,0.015721058472991,-0.053437832742929],[-0.0086048934608698,0.029647970572114,-0.014068062417209]],[[-0.032112699002028,0.044963698834181,0.024597976356745],[0.0046468516811728,-0.042577285319567,0.031435575336218],[-0.097029015421867,-0.048091143369675,0.013750740326941]],[[0.023618031293154,-0.038414850831032,0.049450974911451],[-0.078807532787323,-0.044829800724983,-0.0043096709996462],[0.091360680758953,-0.081550806760788,0.0059771900996566]],[[0.03007735311985,0.05161365494132,-0.051135197281837],[0.015437673777342,-0.041965626180172,0.034070663154125],[0.012878076173365,-0.037993252277374,0.018110862001777]],[[-0.013270272873342,0.0090178782120347,0.036719061434269],[-0.039054717868567,0.027141410857439,-0.0064583984203637],[0.016908032819629,0.020406691357493,-0.031310435384512]],[[-0.0099732857197523,0.0029373993165791,-0.0052626309916377],[0.037722036242485,0.0030870682094246,-0.0082206921651959],[-0.020886827260256,0.0032424728851765,0.017269719392061]],[[0.0035185092128813,-0.0037696738727391,0.043291281908751],[-0.014725345186889,0.030393581837416,0.094612829387188],[-0.015105240046978,-0.0077744857408106,0.075664035975933]],[[0.003807462984696,-0.043607953935862,-0.027681345120072],[-0.070855401456356,0.021420130506158,0.0030099796131253],[-0.053411923348904,0.045905288308859,-0.017785867676139]],[[-0.097852036356926,0.0016884409124032,-0.057678930461407],[-0.056591108441353,-0.044062525033951,-0.028106324374676],[0.016168765723705,0.033462751656771,-0.039993967860937]],[[-0.0087448637932539,-0.049227837473154,0.027314113453031],[0.022408258169889,0.0031064376235008,-0.056922432035208],[-0.024199502542615,0.0053614252246916,-0.06302797794342]],[[-0.073489472270012,-0.034498978406191,-0.023359179496765],[0.019653044641018,-0.078693479299545,0.053310461342335],[-0.017388561740518,0.020000778138638,0.013616364449263]],[[0.073777176439762,0.00014828369603492,-0.013203201815486],[0.0075313402339816,0.029477762058377,-0.063253492116928],[-0.0075880554504693,-0.027696227654815,0.024439001455903]],[[0.0071027660742402,-0.097970426082611,-0.039613571017981],[-0.0069632441736758,0.014266232028604,0.022968323901296],[0.011869143694639,-0.019807050004601,0.084296382963657]],[[-0.044271178543568,-0.057615868747234,0.058628335595131],[0.024131396785378,0.054210275411606,-0.067342907190323],[0.053972348570824,-0.087732948362827,0.0066263847984374]],[[-0.02218497171998,0.055905099958181,0.0066449539735913],[0.019345551729202,-0.0447320304811,0.00017662641766947],[-0.020556382834911,0.025374807417393,-0.037408094853163]],[[0.016207877546549,-0.0011991641949862,0.011238749139011],[0.0034972536377609,-0.00037622373201884,-0.053034592419863],[-0.0032517611980438,0.088515929877758,-0.0089136026799679]],[[-0.017842762172222,-0.046036545187235,-0.018888883292675],[0.028447661548853,-0.060262527316809,-0.0026927760336548],[-0.055762153118849,-0.041449662297964,0.025012068450451]],[[0.022550230845809,-0.018315009772778,-0.0061187697574496],[0.039238702505827,-0.014887453988194,-0.061772491782904],[0.021442791447043,-0.03832146525383,0.11094129085541]],[[0.024087620899081,0.059236820787191,-0.0090861422941089],[-0.068711064755917,0.031000068411231,-0.04367733374238],[-0.015398382209241,-0.070648521184921,-0.029471563175321]],[[0.020343277603388,0.069829732179642,-0.044447362422943],[-0.049066100269556,-0.032421536743641,-0.025543827563524],[0.023519331589341,-0.0099725257605314,-0.041334733366966]],[[0.045645996928215,-0.026768568903208,-0.007451182231307],[-0.029135581105947,-0.039113447070122,-0.013869896531105],[-0.096943981945515,0.025561820715666,-0.025169724598527]],[[-0.029983086511493,0.042828291654587,-0.0015535838901997],[-0.045230470597744,-0.034115854650736,0.04395904019475],[0.0003174738958478,0.054530132561922,-0.0097659770399332]],[[-0.089316338300705,0.060425747185946,0.075877711176872],[-0.028001202270389,0.027078244835138,0.015697734430432],[0.01361673977226,0.029276410117745,-0.018671784549952]],[[-0.028605345636606,-0.012475362047553,0.041023042052984],[-0.013332522474229,0.030627796426415,-0.055106297135353],[-0.023377075791359,0.047430403530598,-0.05278879776597]]],[[[0.049766592681408,-0.027046374976635,0.038805656135082],[0.011974391527474,0.023611733689904,-0.0015336092328653],[0.010953686200082,0.016630571335554,-0.039111483842134]],[[0.012748142704368,0.04092787578702,0.042467046529055],[-0.060479506850243,-0.0050885351374745,-0.025346223264933],[-0.018425224348903,-0.042828269302845,0.028377449139953]],[[0.013465769588947,0.0069235526025295,0.02426771260798],[0.032915726304054,-0.018120110034943,-0.001024526078254],[0.0038067055866122,-0.025489738211036,0.029087213799357]],[[-0.038230121135712,-0.012984096072614,-0.0049013337120414],[0.02764443680644,-0.025350315496325,0.031707614660263],[-0.032901629805565,-0.072285108268261,-0.014576497487724]],[[-0.053025137633085,-0.0041349763050675,-0.038657661527395],[0.036534950137138,0.05245753750205,-0.053198348730803],[-0.052870236337185,-0.094547837972641,0.045455377548933]],[[0.017467027530074,0.10041842609644,0.028805898502469],[-0.0071459575556219,-0.045713108032942,-0.0084490040317178],[-0.047900762408972,0.0058709094300866,0.079185180366039]],[[0.060631718486547,0.086806505918503,-0.10873384773731],[-0.018297323957086,0.0089805871248245,0.0082035148516297],[0.0028947775717825,0.024882005527616,0.0035219499841332]],[[0.036825604736805,-0.021869843825698,0.006506965495646],[0.0037387090269476,-0.033824075013399,-0.0018640505149961],[-0.022543728351593,0.078681871294975,0.06000168249011]],[[-0.028742169961333,-0.022740110754967,-0.05736144259572],[0.0068287625908852,0.048682510852814,0.025979969650507],[0.017462668940425,0.055943716317415,0.027001991868019]],[[0.041643552482128,-0.048398576676846,0.052198968827724],[-0.002944833599031,0.0091620264574885,-0.081797011196613],[0.013978792354465,0.047549594193697,0.053595509380102]],[[0.020812276750803,-0.0057230535894632,-0.016744766384363],[-0.012191331014037,0.05390216037631,0.017159966751933],[-0.0037325886078179,0.040375497192144,-0.054320313036442]],[[-0.036973766982555,0.0064870649948716,0.038773629814386],[-0.056787304580212,0.064390264451504,0.038868274539709],[-0.0468465462327,-0.031842857599258,0.0084733907133341]],[[0.043084502220154,-0.11354119330645,0.097446642816067],[-0.06785860657692,-0.002881973516196,-0.0020509397145361],[0.053372301161289,0.036222193390131,0.046082273125648]],[[-0.022041434422135,0.023687042295933,-0.00011367884872016],[0.021474352106452,-0.043165095150471,-0.0013274583034217],[0.016654523089528,-0.078718759119511,0.082785464823246]],[[-0.050971232354641,0.021809728816152,-0.000593927630689],[-0.023579455912113,-0.034182719886303,0.049979493021965],[0.020968167111278,0.1094117090106,0.023034695535898]],[[-0.0083042774349451,0.012967013753951,0.02322531491518],[-0.072498060762882,-0.038722887635231,0.027024274691939],[0.022016672417521,-0.013552415184677,0.0027188551612198]],[[-0.056144017726183,-0.037288092076778,-0.091668426990509],[0.0053834854625165,-0.033135674893856,-0.02107503823936],[-0.012931116856635,0.034253250807524,0.078595608472824]],[[0.020935485139489,-0.007635650690645,-0.037023041397333],[-0.0013934965245426,0.0095843207091093,-0.022049993276596],[0.024826757609844,0.011417672969401,0.032773207873106]],[[0.031096711754799,-0.0098658408969641,0.011161368340254],[0.091321066021919,0.056357186287642,0.055423367768526],[-0.081638753414154,0.06190013885498,0.061953391879797]],[[0.015618681907654,-0.05412582308054,-0.044380474835634],[-0.020772797986865,0.066255651414394,-0.027941150590777],[0.009172847494483,0.0032498938962817,0.077417232096195]],[[0.078695356845856,-0.049269385635853,0.015448153018951],[-0.069869957864285,-0.039184920489788,-0.027003571391106],[-0.0077042556367815,-0.070801332592964,0.025531969964504]],[[0.020634468644857,0.036562036722898,0.029515137895942],[0.082101814448833,0.016064174473286,0.0078419419005513],[-0.0066899699158967,0.045185014605522,-0.041889198124409]],[[0.038855485618114,-0.047215107828379,-0.0027183366473764],[-0.12317976355553,-0.0033887682948261,0.06251659989357],[-0.02868721447885,-0.10386295616627,0.020209362730384]],[[0.031924221664667,0.022258307784796,0.027549903839827],[0.073600232601166,-0.0025937939062715,0.040416374802589],[-0.013977270573378,-0.089311219751835,0.043339993804693]],[[0.061506036669016,-0.091329425573349,0.019811367616057],[0.011656195856631,-0.073083624243736,0.047759801149368],[0.0077765095047653,0.071298472583294,0.063650950789452]],[[-0.006233976688236,0.049073338508606,0.01993041485548],[0.015888689085841,-0.00045880183461122,0.015004445798695],[-0.010964456014335,0.025278963148594,0.0058429813943803]],[[0.022550860419869,0.060522075742483,-0.0045472681522369],[0.011930023320019,0.035191193223,-0.00017689412925392],[0.038859415799379,-0.028453769162297,0.020991638302803]],[[-0.019987588748336,0.0072642206214368,0.023909952491522],[0.022948762401938,-0.039248622953892,0.0081673143431544],[0.048714101314545,0.028026049956679,-0.065553352236748]],[[0.0007435514125973,0.011953908018768,0.0053380457684398],[0.032323077321053,-0.011088923551142,0.010273915715516],[0.028893740847707,-0.0030356056522578,-0.031372610479593]],[[-0.0057542133145034,-0.06012599170208,-0.087824143469334],[-0.033672038465738,0.032153315842152,-0.02225281111896],[0.023243997246027,0.066721133887768,0.0030885054729879]],[[0.017334742471576,0.015664273872972,0.0013004017528147],[0.035519868135452,0.042242273688316,0.0068293027579784],[0.029790841042995,-0.022141708061099,-0.065705209970474]],[[0.025185285136104,-0.036094054579735,-0.0060099116526544],[-0.066176258027554,0.043782595545053,0.029812306165695],[-0.046555262058973,-0.056213941425085,0.095522291958332]],[[-0.089964210987091,-0.00046689828741364,0.14972510933876],[0.040294881910086,0.071050018072128,-0.056680165231228],[0.0079396087676287,0.013838849961758,0.046548195183277]],[[-0.081361763179302,0.060749500989914,-0.011188335716724],[0.038835540413857,0.038700066506863,-0.019214019179344],[-0.0027914883103222,-0.0058437385596335,-0.036965403705835]],[[0.085739620029926,-0.055541206151247,0.01758599281311],[-0.0080598127096891,0.022976201027632,-0.011370575986803],[0.096970193088055,-0.021608669310808,-0.012766387313604]],[[-0.063370130956173,0.020062992349267,0.038267496973276],[-0.03516023978591,-0.0029807996470481,-0.04304002597928],[0.0048019564710557,-0.032648850232363,0.04314124211669]],[[0.01634855568409,0.016610395163298,-0.065586775541306],[-0.069666057825089,0.062278997153044,0.0081205768510699],[-0.012789657339454,-0.010323053225875,-0.023888938128948]],[[-0.023476919159293,-0.0019430877873674,-0.047553956508636],[0.0034428501967341,-0.099064365029335,-0.029718328267336],[-0.038059432059526,0.047966528683901,0.041628513485193]],[[-0.017395360395312,-0.0089277094230056,0.082368716597557],[-0.0015378275420517,0.024537187069654,0.067509450018406],[0.031599789857864,-0.098929636180401,0.0046557295136154]],[[-0.060731880366802,-0.078187584877014,-0.020255275070667],[0.041218314319849,0.079523146152496,-0.10156254470348],[0.037233378738165,0.02923358976841,0.018000015988946]],[[0.01691235229373,-0.11629489064217,-0.023622548207641],[0.12918291985989,0.01812269538641,-0.061067502945662],[-0.053655851632357,-0.052895925939083,0.055728767067194]],[[0.011415967717767,-0.028812093660235,0.024907693266869],[0.018933810293674,0.03516324236989,0.045259561389685],[-0.0018395135411993,0.0091026574373245,-0.037165846675634]],[[-0.037957493215799,0.010768514126539,-0.018704427406192],[0.045637477189302,0.10107643157244,-0.040851037949324],[-0.039023816585541,-0.041885584592819,0.0095755392685533]],[[-0.00028004695195705,0.042015664279461,0.055039029568434],[0.068596340715885,0.016156110912561,0.0025498229078948],[0.024554265663028,0.031890135258436,0.0094140470027924]],[[-0.024467770010233,0.042367555201054,-0.023099163547158],[-0.018801007419825,0.10170629620552,0.018550969660282],[-0.0062812361866236,-0.037695243954659,0.046090163290501]],[[0.022782228887081,0.039703246206045,-0.012169813737273],[-0.0028533567674458,0.036271143704653,-0.005466690286994],[-0.060605201870203,0.063166283071041,-0.045590903609991]],[[-0.024959260597825,0.093850910663605,-0.01922070235014],[0.054126791656017,0.025774341076612,0.040086764842272],[-0.043412864208221,0.030565341934562,-0.0039871060289443]],[[-0.0036020709667355,-0.059717282652855,0.031214948743582],[-0.025011908262968,0.018788797780871,-0.024467695504427],[0.018801404163241,-0.015594808384776,0.034817110747099]],[[0.010681573301554,-0.054710317403078,0.047295641154051],[0.070732846856117,0.0070949224755168,-0.0026658738497645],[0.00068950589047745,0.032627109438181,0.01297683082521]],[[0.0316839851439,-0.08918172866106,0.046631634235382],[-0.066432356834412,0.056960266083479,0.0012518228031695],[0.087559230625629,-0.011777614243329,0.036789994686842]],[[0.022388385608792,-0.072439610958099,0.034258030354977],[0.045567955821753,-0.030697567388415,0.032333552837372],[0.011868291534483,-0.033158630132675,0.070608370006084]],[[-0.040526401251554,-0.046906389296055,0.0422926209867],[0.031236581504345,0.026499012485147,0.013686419464648],[-0.035386256873608,0.006952403113246,0.096571885049343]],[[-0.06067756190896,0.038565956056118,-0.005373424384743],[0.043732091784477,0.036130249500275,-0.017260679975152],[-0.074898205697536,-0.083650574088097,-0.0056960443034768]],[[-0.037768270820379,0.028584586456418,0.026624431833625],[0.0037151563446969,-0.0044814278371632,0.094926781952381],[0.033097170293331,0.025979585945606,-0.0080160051584244]],[[0.025806859135628,0.076254904270172,0.0095888953655958],[0.03264344856143,-0.027746228501201,-0.054985377937555],[0.072185225784779,-0.010688579641283,-0.039785467088223]],[[-0.033542953431606,-0.016137953847647,-0.079028017818928],[0.031437255442142,0.048905286937952,0.0048020211979747],[0.084079042077065,0.031043646857142,-0.075762301683426]],[[-0.025435453280807,0.023094110190868,0.044584587216377],[0.020684698596597,-0.018230536952615,0.013102176599205],[0.028142249211669,-0.015653302893043,0.043617140501738]],[[-0.014955352991819,0.072375260293484,0.012067386880517],[-0.002715875627473,0.061670191586018,-0.084109038114548],[-0.004730517975986,-0.083477608859539,0.014131327159703]],[[0.042459659278393,0.019287176430225,0.028725838288665],[0.00056261260760948,0.016503540799022,0.034053560346365],[-0.054864589124918,-0.041934672743082,-0.058852061629295]],[[0.040907308459282,-0.0029537782538682,0.050685159862041],[-0.037053976207972,-0.015330713242292,-0.018067227676511],[0.0048993499949574,0.0081726713106036,-0.0032152039930224]],[[-0.040144816040993,-0.016221228986979,0.056598883122206],[-0.018571702763438,0.045344013720751,-0.012654733844101],[-0.04785555973649,-0.030329797416925,0.068816512823105]],[[0.010424782522023,0.093817114830017,0.0048717595636845],[-0.0096492692828178,-0.0095334528014064,0.034177858382463],[0.025798749178648,0.033224761486053,0.058870419859886]],[[0.017582895234227,-0.044295493513346,0.063287980854511],[-0.055951494723558,-0.041770607233047,0.0046985512599349],[0.024407006800175,0.0098657626658678,0.037853520363569]],[[-0.0073038367554545,-0.033796649426222,0.044149678200483],[0.039913047105074,-0.050647526979446,0.00047302601160482],[-0.0048878029920161,-0.01434784475714,-0.013006358407438]],[[0.031042961403728,0.02425062097609,-0.0052779954858124],[0.020463276654482,0.13337406516075,-0.076655447483063],[0.034330390393734,-0.05759659782052,0.013704038225114]],[[0.016989840194583,-0.023764172568917,0.0076671657152474],[0.022640556097031,-0.073851637542248,-0.022536959499121],[-0.027352949604392,-0.036258861422539,-0.010056756436825]],[[-0.00034830035292543,0.064369507133961,-0.033895663917065],[0.040948405861855,-0.014435003511608,-0.04194738343358],[0.035697784274817,-0.045205302536488,-0.05920073017478]],[[-0.011423487216234,-0.036500006914139,-0.026017984375358],[-0.060718640685081,0.027849143370986,0.024090131744742],[-0.035461220890284,0.018012128770351,-0.025310479104519]],[[-0.016017137095332,-0.021114116534591,0.047465089708567],[-0.0023521285038441,-0.040802136063576,-0.029380647465587],[-0.0062908981926739,0.11068397015333,-0.0080028362572193]],[[0.081564679741859,0.020029863342643,0.078904800117016],[0.021700276061893,-0.057799719274044,0.042242784053087],[0.057589206844568,-0.039581298828125,0.047118473798037]],[[-0.027157846838236,0.006842375267297,0.049793440848589],[0.043926760554314,-0.081028267741203,-0.011616130359471],[-0.020719848573208,-0.0090919202193618,0.081327080726624]],[[-0.0070916013792157,-0.073950961232185,0.0173898357898],[-0.0059512723237276,0.053626414388418,-0.017995540052652],[0.01934003084898,-0.0095859495922923,-0.083372533321381]],[[-0.019835345447063,-0.05558505654335,0.031585298478603],[-0.06390955299139,0.01077432371676,-0.077313713729382],[0.013760702684522,-0.016435021534562,0.022025737911463]],[[-0.10308671742678,0.094590090215206,0.021809862926602],[0.028867896646261,-0.034307699650526,0.032809711992741],[0.065804481506348,0.027644999325275,-0.04353454709053]],[[0.043504372239113,0.08041950315237,-0.017568925395608],[-0.018894299864769,-0.02056709676981,-0.063838936388493],[0.088551491498947,0.065641984343529,-0.086736552417278]],[[-0.023089118301868,0.063293717801571,-0.073086135089397],[0.016082787886262,-0.054815698415041,0.030958585441113],[-0.0064343502745032,-0.053295314311981,0.015192184597254]],[[0.055168867111206,0.043798979371786,0.047403827309608],[-0.01242496073246,-0.0096652489155531,0.018250247463584],[-0.025097969919443,-0.031833279877901,-0.027072248980403]],[[0.061363946646452,-0.0034042368642986,0.082687988877296],[-0.038937471807003,0.0043167062103748,0.010760842822492],[0.081310473382473,-0.080721944570541,0.04233418032527]],[[-0.0030790085438639,-0.077508822083473,0.0074792355298996],[-0.037297483533621,0.052697747945786,-0.082946002483368],[-0.048420451581478,-0.01294354442507,0.035444229841232]],[[-0.046173889189959,0.08992750197649,-0.0060051642358303],[0.069782353937626,-0.10260248184204,-0.060715112835169],[0.061226531863213,-0.0045299837365746,0.057707738131285]],[[-0.022854754701257,-0.019251029938459,0.05498980730772],[-0.029551295563579,0.030294112861156,0.014068833552301],[0.078396856784821,-0.064300671219826,0.029076306149364]],[[-0.044367227703333,-0.049314178526402,0.022808874025941],[-0.028591629117727,-0.0072384546510875,-0.022310711443424],[0.11094515025616,0.014969365671277,0.0013006132794544]],[[-0.033228669315577,-0.052200887352228,-0.018239766359329],[0.019841941073537,-0.0069272206164896,-0.0066912299953401],[0.019449155777693,-0.011753808706999,0.036705415695906]],[[-0.0032784787472337,-0.069307006895542,0.053141061216593],[0.040393318980932,-0.017316622659564,-0.072278812527657],[0.014246074482799,0.062344200909138,-0.03658114746213]],[[0.024110166355968,0.044806391000748,-0.030440486967564],[0.011245851404965,0.053497012704611,0.10746247321367],[-0.02948403172195,0.00040185771649703,-0.026392070576549]],[[-0.090146459639072,-0.0030920384451747,0.040454011410475],[-0.0019245124422014,0.052169091999531,-0.089958302676678],[0.03558799251914,-0.019749440252781,-0.042199030518532]],[[0.048478364944458,0.021135948598385,-0.049061372876167],[0.016827140003443,0.0067349881865084,-0.04282158985734],[0.032246120274067,0.027647435665131,0.00060083682183176]],[[-0.031995106488466,-0.0045128860510886,0.045881476253271],[-0.038059964776039,0.02514928765595,0.029684707522392],[0.085665173828602,-0.018808333203197,0.028693020343781]],[[0.030094550922513,0.013311117887497,-0.056522347033024],[-0.077791340649128,0.024903094395995,-0.0099030341953039],[0.0058065755292773,-0.035974331200123,-0.013873763382435]],[[-0.022824136540294,0.014261913485825,-0.0018068226054311],[0.043124791234732,-0.021486626937985,-0.00028837341233157],[-0.0050285505130887,-0.018349828198552,-0.0010860285256058]],[[-0.0033266886603087,-0.039529506117105,0.042875424027443],[0.010756981559098,-0.0030560970772058,-0.027619229629636],[-0.0056927693076432,0.008034436032176,-0.079484224319458]],[[-0.0058399448171258,-0.008767643943429,-0.11226420104504],[0.082066625356674,0.055844902992249,0.014128241688013],[0.0026221284642816,-0.020577687770128,-0.09569263458252]],[[-0.003876477945596,-0.021151406690478,0.035725075751543],[0.045514080673456,-0.004302300978452,-0.086662128567696],[0.014240412041545,0.044096622616053,0.0096637727692723]],[[-0.046317134052515,0.0038469259161502,0.008736988529563],[-0.0061091263778508,0.04314748570323,0.00045222492190078],[0.022498566657305,0.029216974973679,0.036630649119616]],[[-0.019900489598513,-0.075077347457409,-0.034470930695534],[0.06892341375351,-0.029395215213299,-0.017437927424908],[0.031034398823977,0.0032542271073908,0.036413103342056]],[[-0.010500580072403,-0.055256318300962,0.010348388925195],[-0.011637060903013,0.050992734730244,-0.016879446804523],[-0.067524038255215,0.055959489196539,0.013161514885724]],[[0.083994723856449,0.051797430962324,0.025645278394222],[-0.063745096325874,-0.049452342092991,0.013327076099813],[0.0012266462435946,0.003074647160247,-0.049939498305321]],[[0.0047888611443341,0.022113502025604,0.037231922149658],[0.0098215360194445,-0.040439415723085,-0.11657401919365],[-0.0080835707485676,0.079432234168053,0.043959151953459]],[[0.051401145756245,-0.077986069023609,0.01246097497642],[-0.043700587004423,-0.002954013645649,-0.030147772282362],[0.063060700893402,-0.029138453304768,-0.034295056015253]],[[0.037587884813547,-0.0037394918035716,0.014242419973016],[-0.0087451338768005,0.026031583547592,0.0065622967667878],[0.01568559743464,0.0076781716197729,-0.055572722107172]],[[-0.0013250719057396,0.034005995839834,-0.032445918768644],[-0.033820249140263,-0.10882291197777,0.053175665438175],[-0.011850325390697,0.077258370816708,-0.014106383547187]],[[-0.070627346634865,-0.005265548825264,-0.049696698784828],[0.044327281415462,0.043307643383741,-0.046351116150618],[0.0058698668144643,0.058788642287254,-0.073441326618195]],[[-0.071918860077858,0.066477075219154,0.022435732185841],[0.0027535606641322,0.016108591109514,0.13368602097034],[-0.0011308199027553,-0.016528505831957,0.047268845140934]],[[0.01501664891839,0.0076091922819614,0.0067439572885633],[0.014595480635762,-0.036262895911932,-0.015560330823064],[-0.040063612163067,-0.029734993353486,-0.029289433732629]],[[0.052508864551783,-0.02388602681458,-0.011803603731096],[0.0055728582665324,0.041643738746643,0.069409847259521],[-0.0022133174352348,-0.11686907708645,-0.02159284427762]],[[-0.061429552733898,0.02623450756073,0.061036597937346],[0.01962242461741,-0.020256103947759,0.04711227491498],[0.042128454893827,0.017740959301591,0.021921712905169]],[[0.033681564033031,0.034102391451597,0.038724958896637],[-0.019226377829909,-0.043364576995373,-0.0043341312557459],[-0.0079806568101048,-0.0038647095207125,-0.04525113850832]],[[0.027729215100408,-0.039384465664625,0.045868072658777],[-0.006149263586849,-0.00097486755112186,0.019538320600986],[-0.041377168148756,0.048740990459919,0.055924329906702]],[[-0.0086654098704457,-0.056792382150888,-0.036936715245247],[0.014080761931837,0.015434505417943,0.036676112562418],[0.035343259572983,-0.076846346259117,-0.0099078351631761]],[[-0.097709700465202,-0.0096376007422805,0.05296142026782],[-0.0048257894814014,-0.046353217214346,-0.048194348812103],[0.074481785297394,0.017556939274073,0.0097765997052193]],[[-0.038283754140139,-0.0018841180717573,0.097235910594463],[-0.010597510263324,-0.006097209174186,0.055769603699446],[-0.021535035222769,0.011296175420284,0.030570583418012]],[[0.047112096101046,-0.023106532171369,0.023380195721984],[-0.063815832138062,-0.0042700339108706,0.020958250388503],[0.07018630951643,-0.020772278308868,-0.016683857887983]],[[0.049237620085478,0.089900620281696,0.0177729614079],[-0.020120710134506,-0.053865008056164,-0.044627200812101],[0.026556978002191,-0.028678903356194,-0.015856999903917]],[[-0.017143884673715,0.0010705403983593,-0.028451828286052],[-0.0050002504140139,0.018923070281744,0.039986275136471],[-0.010791916400194,-0.0062640164978802,0.029623629525304]],[[0.035353854298592,0.011903671547771,0.040042337030172],[-0.073780745267868,0.015801416710019,-0.029298506677151],[-0.0044955085031688,0.04059911891818,-0.01937229372561]],[[-0.018882680684328,-0.0022572085727006,0.026629827916622],[-0.011177797801793,-0.029359476640821,0.12573517858982],[0.037521567195654,-0.037034418433905,-0.0099966209381819]],[[0.0045512369833887,-0.004896285943687,-0.06195804476738],[0.049469865858555,0.080756731331348,0.016492195427418],[0.0052982396446168,-0.034807648509741,0.036421425640583]],[[-0.03776628524065,-0.064355731010437,-0.069282293319702],[0.0047344071790576,-0.022430209442973,-0.038808364421129],[0.0036915852688253,0.061885178089142,-0.01955514959991]],[[-0.073446035385132,-0.049156628549099,-0.027994060888886],[0.01493361312896,0.0060715568251908,0.0057509248144925],[-0.040959522128105,-0.045281536877155,-0.051394429057837]],[[-0.097664639353752,-0.013585585169494,0.02223682962358],[-0.011305782012641,0.068082690238953,-0.017154162749648],[0.0055238148197532,-0.023496763780713,-0.00042937585385516]],[[-0.040257249027491,-0.0097199520096183,-0.0048478920944035],[-0.021989485248923,-0.036342673003674,0.0041479915380478],[-0.064830936491489,0.014540560543537,-0.12358153611422]],[[-0.0067814826034009,0.060368798673153,0.036058593541384],[0.0083287768065929,0.013637976720929,0.019001465290785],[-0.024780107662082,0.0035831236746162,0.073647484183311]],[[-0.013987538404763,-0.097931891679764,-0.045084487646818],[0.049636207520962,-0.014110636897385,-0.015525508671999],[0.012840006500483,-0.042361527681351,0.052480898797512]],[[-0.0025395737029612,0.040955066680908,-0.016715520992875],[-0.032984331250191,0.051629543304443,-0.041980247944593],[0.001212258823216,-0.076350018382072,0.023220863193274]],[[0.050284750759602,0.018558394163847,0.022020857781172],[-0.065761961042881,0.074576325714588,-0.094157762825489],[-0.012647535651922,-0.047171667218208,-0.018586419522762]],[[-0.0074720666743815,-0.039199460297823,0.048498395830393],[0.023235777392983,0.044298194348812,0.0023065784480423],[0.12338978797197,-0.079042807221413,-0.021293325349689]],[[0.036953497678041,0.052720244973898,-0.024542789906263],[-0.060377519577742,0.054054468870163,-0.0085679171606898],[-0.0068386415950954,-0.03536693751812,0.040617231279612]],[[-0.016512801870704,0.00032701680902392,-0.016925727948546],[0.0025678616948426,-0.034675851464272,-0.03518645465374],[6.6477288783062e-05,-0.089066125452518,-0.0032401841599494]]],[[[-0.017388569191098,-0.09014667570591,-0.23032627999783],[0.069170251488686,0.09712116420269,-0.0052894498221576],[0.19976502656937,0.18264493346214,-0.10142023861408]],[[0.042526792734861,-0.037304535508156,-0.14004634320736],[-0.028539383783937,-0.010982979089022,-0.2825753390789],[0.027149450033903,0.047669425606728,0.068803839385509]],[[0.08247072249651,0.0033589652739465,-0.043289195746183],[0.11895672231913,-0.0041254702955484,-0.10266292095184],[0.1659582555294,-0.024820538237691,-0.069934844970703]],[[0.049796711653471,-0.09008477628231,-0.0064399666152894],[0.20812940597534,0.049471195787191,-0.051532924175262],[0.1242188885808,-0.031659781932831,-0.017298193648458]],[[0.15181243419647,-0.013539253734052,-0.028973357751966],[-0.0027405295986682,-0.051424935460091,-0.072962142527103],[-0.033245496451855,-0.011556823737919,-0.066673427820206]],[[-0.091202281415462,-0.10749877244234,-0.11912231892347],[-0.010663824155927,-0.068792924284935,-0.13281434774399],[-0.012445772066712,-0.12218275666237,-0.24296878278255]],[[0.05647412315011,-0.013350719586015,-0.074438773095608],[0.024623613804579,-0.034749928861856,-0.0324492380023],[0.0026807859539986,0.045469839125872,0.15580415725708]],[[-0.025620426982641,-0.12261398136616,0.3351666033268],[-0.16955816745758,0.02415731549263,0.070714361965656],[0.057700641453266,-0.077638491988182,-0.083882883191109]],[[0.023572154343128,0.070585250854492,0.017611339688301],[-0.0077810999937356,-0.021057344973087,-0.0057056769728661],[-0.012232380919158,0.0039812810719013,-0.084827110171318]],[[0.10897103697062,0.0032643843442202,-0.10119105875492],[0.027667516842484,-0.18868187069893,-0.0019979702774435],[0.11628270894289,0.058662671595812,0.12546730041504]],[[-0.022723726928234,0.040814239531755,0.32051631808281],[0.022801814600825,-0.01622530631721,0.042117975652218],[-0.11032066494226,-0.075890630483627,-0.16655918955803]],[[0.029641874134541,-0.066974081099033,-0.027754366397858],[0.055029485374689,0.036601845175028,0.056074671447277],[0.0012817666865885,-0.14363440871239,0.055386949330568]],[[0.0031788824126124,-0.10086890310049,-0.039733164012432],[-0.040244035422802,0.045374013483524,-0.040847193449736],[-0.108761921525,0.016435770317912,-0.11479049921036]],[[-0.080185495316982,0.052291750907898,0.028087412938476],[0.0054303747601807,0.067711174488068,-0.098605297505856],[0.093768775463104,0.038296561688185,-0.10114282369614]],[[0.090897120535374,0.076151251792908,0.026737045496702],[-0.087063580751419,0.036628741770983,-0.10580922663212],[-0.02034998498857,0.033796388655901,0.11039160937071]],[[0.0018752651521936,0.097340308129787,-0.16232281923294],[-0.17920778691769,0.22832401096821,0.096623137593269],[0.036874536424875,-0.04275182262063,-0.017453148961067]],[[0.013231550343335,-0.067433714866638,-0.16298703849316],[-0.014182646758854,-0.094597510993481,-0.0068144700489938],[0.032597467303276,0.12969651818275,0.23736648261547]],[[0.025415547192097,-0.010213806293905,0.19049854576588],[0.0026437516789883,-0.0066844448447227,0.080632634460926],[-0.14784744381905,-0.093704380095005,-0.10008239001036]],[[0.10408153384924,0.0095840580761433,-0.14229342341423],[0.015109160915017,-0.14026856422424,-0.17860969901085],[-0.024223985150456,-0.13133926689625,0.019887421280146]],[[-0.047905530780554,0.028051059693098,0.038396205753088],[-0.038361601531506,0.10814750939608,0.029090886935592],[0.086376652121544,0.082093842327595,0.017430614680052]],[[-0.00028038409072906,0.014101170934737,-0.009993732906878],[0.065079502761364,0.14055335521698,-0.13982397317886],[0.0312659740448,-0.24545067548752,-0.12843404710293]],[[-0.090721890330315,0.046651337295771,0.10002426803112],[-0.17852249741554,-0.074000887572765,0.050107762217522],[-0.13311414420605,-0.057621371001005,0.09156197309494]],[[-0.13958524167538,0.11041084676981,-0.015233877114952],[0.038632411509752,-0.059982638806105,0.051601815968752],[0.010781311430037,0.12009619176388,0.0066929655149579]],[[0.14898839592934,0.035709086805582,0.0040010591037571],[0.019826222211123,-0.069769978523254,-0.11384710669518],[0.061499375849962,-0.11079606413841,0.12499182671309]],[[0.030347470194101,-0.078008726239204,0.003905771067366],[-0.036531120538712,0.064103335142136,-0.027630299329758],[-0.010249758139253,-0.010933085344732,-0.040746435523033]],[[-0.010979524813592,-0.095109336078167,-0.079385250806808],[-0.15453077852726,-0.20239362120628,-0.059283245354891],[-0.083300687372684,0.009147354401648,-0.078144550323486]],[[0.27615907788277,-0.025027979165316,0.0011267731897533],[-0.10469203442335,0.029081815853715,-0.077884532511234],[-0.04008761048317,-0.17368341982365,-0.21673576533794]],[[-0.0018828383181244,-0.019357403740287,-0.055895570665598],[-0.036119572818279,-0.17930901050568,-0.16376815736294],[0.028788879513741,0.066251918673515,-0.040480989962816]],[[0.12851044535637,-0.042823471128941,0.054071303457022],[-0.044285230338573,-0.19565784931183,0.14116828143597],[-0.12993313372135,-0.021404406055808,0.030035831034184]],[[-0.018820378929377,-0.034779533743858,-0.0011588544584811],[-0.0028680888935924,0.0098050395026803,-0.1187559068203],[-0.085329212248325,-0.080023646354675,0.18219374120235]],[[-0.059075392782688,0.015670146793127,-0.045439790934324],[0.0041981060057878,0.14194601774216,0.052943039685488],[0.17431719601154,-0.018458371981978,-0.11220960319042]],[[0.089818730950356,-0.068791165947914,0.16936329007149],[0.0024081545416266,0.08719290047884,-0.013935652561486],[0.043716177344322,-0.083219975233078,-0.086670413613319]],[[-0.12155736237764,-0.042687211185694,-0.025024723261595],[0.011274001561105,0.16339817643166,-0.067545890808105],[0.068853385746479,0.064967565238476,-0.13887532055378]],[[-0.13747508823872,-0.057643607258797,0.032956819981337],[-0.024784723296762,0.11986744403839,-0.01193886436522],[0.029146578162909,-0.013340710662305,0.0035883127711713]],[[-0.019855730235577,-0.025089927017689,-0.063286505639553],[0.026929851621389,-0.071007914841175,-0.19468800723553],[-0.074850864708424,-0.16943374276161,-0.10959376394749]],[[-0.051679566502571,0.050639700144529,-0.11722345650196],[-0.15330575406551,-0.16226945817471,-0.23458553850651],[-0.084831409156322,0.029674589633942,-0.45011267066002]],[[0.090070202946663,0.12297623604536,0.0466333553195],[-0.14157535135746,-0.092990517616272,0.083469398319721],[0.0079661346971989,0.20289099216461,0.003672918304801]],[[0.0084691327065229,-0.056337047368288,-0.040601417422295],[0.029512846842408,0.024334272369742,-0.034322757273912],[-0.060142662376165,-0.039630457758904,0.052073292434216]],[[0.055945802479982,0.11082135885954,0.12478328496218],[0.0022559217177331,-0.12122891098261,0.18291085958481],[-0.049991555511951,-0.23587293922901,-0.12939323484898]],[[-0.036624766886234,-0.25269237160683,0.011501537635922],[-0.021875850856304,0.1175372004509,-0.047216642647982],[0.056435644626617,0.29011705517769,-0.082513310015202]],[[-0.098344892263412,0.021749021485448,-0.076554052531719],[0.039645057171583,-0.041067332029343,-0.02817857824266],[0.027484467253089,0.10635507106781,0.213284522295]],[[0.029012801125646,0.071420550346375,0.058587595820427],[-0.013848599046469,-0.0077000944875181,-0.0073022255674005],[-0.11425430327654,-0.040442053228617,0.063977897167206]],[[-0.030726527795196,0.083201959729195,0.024385349825025],[0.070600800216198,0.11305182427168,0.054027605801821],[0.0351915769279,-0.031597424298525,0.0090525606647134]],[[0.078310623764992,0.1963624060154,0.014089885167778],[0.091719888150692,0.082821026444435,-0.2190081179142],[0.040434863418341,-0.081123940646648,-0.26194405555725]],[[0.07887015491724,0.083855330944061,-0.026507221162319],[0.10733968019485,0.12077997624874,0.030423441901803],[-0.041188884526491,0.050527434796095,-0.036313768476248]],[[0.05476626381278,0.011934723705053,-0.077439308166504],[0.11608636379242,-0.14353078603745,0.071878537535667],[-0.054213285446167,0.13408966362476,0.098121970891953]],[[0.031301353126764,0.068361133337021,-0.041073616594076],[0.17752568423748,-0.15010288357735,-0.025184080004692],[0.0092851631343365,-0.038202825933695,0.18241593241692]],[[-0.14140085875988,-0.35262677073479,-0.047794181853533],[0.055892251431942,0.076220095157623,0.14501586556435],[0.0034814393147826,-0.084717698395252,-0.30391815304756]],[[0.12485536187887,-0.07551945745945,-0.072401076555252],[0.0039399331435561,-0.002143990714103,-0.029411511495709],[-0.042692687362432,-0.035818930715322,-0.16979496181011]],[[-0.0038105968851596,0.040053442120552,0.07788647711277],[-0.041747022420168,0.076551370322704,-0.10287943482399],[0.010692569427192,0.02434540912509,-0.11375484615564]],[[0.053103219717741,0.060757521539927,-0.050246652215719],[0.01063125487417,0.035304926335812,0.0058895205147564],[-0.076224945485592,0.0056522944942117,-0.15359497070312]],[[-0.064634785056114,-0.057505380362272,-0.037652902305126],[0.040505204349756,0.042920492589474,0.043241955339909],[0.0083505949005485,0.029518291354179,0.094106681644917]],[[-0.017462994903326,0.063491642475128,-0.070280581712723],[-0.00014007794379722,0.065256856381893,-0.06727497279644],[-0.070046186447144,0.048874907195568,-0.16995966434479]],[[-0.15661209821701,-0.13892579078674,0.045246183872223],[-0.040045987814665,-0.087997898459435,0.10833587497473],[-0.023491280153394,-0.19667552411556,0.067586407065392]],[[-0.017987415194511,-0.1160586848855,0.050959974527359],[0.064698725938797,0.1306543648243,-0.034949723631144],[-0.019656030461192,-0.14244969189167,-0.094600655138493]],[[-0.0065657244995236,-0.001106200972572,0.030932368710637],[-0.1773991137743,0.05458540469408,0.053243674337864],[0.086971908807755,-0.023057302460074,0.0026208038907498]],[[-0.016746511682868,0.0037487028166652,-0.031885854899883],[-0.10620784759521,0.070273481309414,-0.059617925435305],[0.018564755097032,0.21953840553761,0.023870628327131]],[[0.028960490599275,0.019255002960563,0.02207830734551],[0.080804064869881,-0.082701824605465,-0.025591773912311],[0.037463270127773,-0.17975957691669,0.022587679326534]],[[0.18388043344021,0.029687989503145,0.066441744565964],[-0.013008181937039,-0.01412923168391,-0.1544134169817],[0.01009866502136,-0.05490554869175,0.17224487662315]],[[0.09290961176157,-0.099343486130238,-0.14234273135662],[0.066576741635799,0.20460079610348,-0.040241099894047],[-0.00012544765195344,0.15570810437202,-0.035638649016619]],[[-0.060969587415457,0.026547990739346,0.076746232807636],[0.012311516329646,-0.036091487854719,0.051646936684847],[-0.25294801592827,-0.012383490800858,-0.22000454366207]],[[0.019958425313234,-0.0019611471798271,0.017985790967941],[0.012908288277686,0.099624134600163,-0.22896657884121],[-0.00040210844599642,-0.11521797627211,0.0070294812321663]],[[0.11240758746862,0.030138125643134,0.02877982892096],[-0.0073974626138806,-0.084256887435913,0.020701365545392],[0.047352600842714,0.05803319439292,0.067338645458221]],[[0.13928115367889,0.19820342957973,0.069022007286549],[0.02288369461894,0.021665994077921,0.050240490585566],[-0.084520108997822,0.10985917598009,0.1133012548089]],[[-0.047223124653101,-0.15921710431576,0.036531403660774],[-0.11740455031395,-0.031406752765179,0.017130754888058],[-0.016219677403569,-0.12961295247078,0.19861148297787]],[[-0.036531429737806,0.024569615721703,-0.01320234965533],[0.11358121037483,-0.020259965211153,0.059123806655407],[0.15290752053261,-0.091214992105961,-0.035363335162401]],[[0.0091100055724382,0.021839749068022,0.0091360528022051],[-0.065089911222458,-0.076706223189831,-0.17222754657269],[-0.033435329794884,-0.021127147600055,-0.015596392564476]],[[-0.0086873499676585,0.089888989925385,0.010787484236062],[0.14114010334015,-0.047428634017706,0.069906242191792],[0.034784272313118,-0.084381818771362,0.16518086194992]],[[-0.13899549841881,-0.081826262176037,-0.016573855653405],[-0.027930853888392,0.016570448875427,-0.0024134174454957],[-0.016386095434427,0.06220081448555,0.0070598875172436]],[[0.012076748535037,-0.05027113109827,0.22193205356598],[-0.20387122035027,0.10759431868792,0.17977069318295],[-0.028297459706664,-0.17561320960522,-0.053830496966839]],[[-0.024738535284996,0.093801498413086,0.024899592623115],[0.046436686068773,0.13135722279549,0.12086968868971],[0.038662541657686,-0.019568748772144,0.057622730731964]],[[-0.087435685098171,0.031445562839508,-0.11871502548456],[0.12834231555462,0.013465035706758,-0.036148153245449],[-0.049396555870771,-0.035385724157095,-0.026800462976098]],[[-0.17915199697018,-0.075136050581932,0.088173672556877],[-0.22497762739658,0.030362647026777,-0.057602006942034],[-0.031137699261308,0.12657333910465,-0.26993003487587]],[[0.017497381195426,-0.027023581787944,0.019199468195438],[0.0020531301852316,0.02668241597712,-0.03376504778862],[0.10132081061602,0.14313666522503,-0.069646574556828]],[[0.098937317728996,0.025697043165565,-0.015593623742461],[0.089263439178467,-0.21981379389763,0.026626104488969],[-0.1546269506216,-0.15450569987297,-0.096000336110592]],[[-0.11840263754129,0.00047754953266121,0.05239562317729],[-0.21381404995918,-0.21359902620316,0.31002426147461],[-0.15707905590534,0.098594360053539,0.19189594686031]],[[-0.083372369408607,0.00074968324042857,0.025922816246748],[-0.12210714817047,0.035119611769915,0.014854759909213],[0.023160429671407,0.13021104037762,0.0012724528787658]],[[0.010436461307108,-0.026631582528353,0.027706919237971],[-0.066653393208981,0.080886572599411,-0.026075910776854],[0.12169767171144,0.10568831115961,0.042565312236547]],[[-0.044562380760908,-0.078616961836815,-0.028416853398085],[0.00046932094846852,0.0092039685696363,0.076288357377052],[-0.013980346731842,0.057843249291182,0.059781972318888]],[[-0.085965648293495,0.061087779700756,-0.18381597101688],[-0.11240645498037,-0.038068939000368,-0.020958399400115],[-0.088213190436363,0.0043090702965856,0.20416744053364]],[[-0.1336681842804,-0.063017055392265,0.04536884278059],[-0.041295923292637,0.053248964250088,0.056607328355312],[-0.071061596274376,0.18155620992184,0.0064912098459899]],[[-0.035607751458883,0.10171958804131,0.013161397539079],[0.057855777442455,-0.039055772125721,-0.1100742071867],[0.048073641955853,-0.038976695388556,0.22525259852409]],[[-0.050615075975657,-0.020835319533944,0.031117817386985],[0.10197475552559,0.2851402759552,-0.11732544004917],[0.17971628904343,-0.28159287571907,-0.15337356925011]],[[0.042890209704638,0.046948477625847,0.064040660858154],[0.014978602528572,0.077045626938343,0.027208562940359],[-0.09390053153038,-0.0041810725815594,-0.10179764777422]],[[-0.081320531666279,-0.037641055881977,-0.023932348936796],[-0.13346204161644,-0.025972591713071,0.025919232517481],[-0.077899754047394,0.21312049031258,0.2871261537075]],[[-0.064376071095467,-0.085931584239006,-0.04749058932066],[-0.00453622918576,0.065929569303989,-0.039787881076336],[0.022090373560786,0.014128319919109,-0.085209161043167]],[[-0.044382467865944,0.022592257708311,0.037454959005117],[0.022898720577359,-0.0098555684089661,-0.15684819221497],[0.0018103754846379,0.065517723560333,-0.044096868485212]],[[-0.070716738700867,-0.061310037970543,-0.039621762931347],[0.19476661086082,0.17593754827976,-0.058887008577585],[0.20830525457859,-0.0043030451051891,-0.040601924061775]],[[0.014511534012854,0.013023428618908,-0.032557647675276],[0.0059925513342023,-0.010433624498546,-0.024929877370596],[0.028049988672137,0.096790425479412,0.12133610993624]],[[0.0042695314623415,-0.031278926879168,0.069821059703827],[-0.045970857143402,0.0026946666184813,-0.053632028400898],[0.051951050758362,0.00082885462325066,-0.028798600658774]],[[0.058721035718918,0.065116636455059,-0.059320397675037],[-0.027417937293649,-0.10657723248005,0.038608439266682],[0.099535465240479,0.055142436176538,0.049840468913317]],[[0.076126284897327,-0.053577646613121,0.088999003171921],[0.06836275011301,-0.11167394369841,0.094846494495869],[-0.059365440160036,-0.00026760168839246,0.039399854838848]],[[-0.083539254963398,0.059684880077839,-0.14248041808605],[-0.0082251038402319,0.037783101201057,-0.11000373959541],[0.12457233667374,-0.076760500669479,0.18339975178242]],[[0.042933311313391,-0.060773003846407,-0.068760946393013],[0.045736044645309,0.045722488313913,0.22657351195812],[0.011402268894017,-0.019130162894726,0.080840103328228]],[[0.055637095123529,0.037693120539188,0.0038195236120373],[0.084025084972382,-0.070642620325089,-0.037815012037754],[0.06725151091814,-0.22245183587074,0.046624522656202]],[[0.012594853527844,-0.030171666294336,0.12232165038586],[0.034395046532154,0.035985086113214,0.081483714282513],[-0.10680847615004,-0.13132919371128,0.19625675678253]],[[-0.0042949253693223,-0.00030834361677989,0.0098792854696512],[-0.0454389937222,0.15996909141541,0.14499029517174],[-0.11330345273018,-0.20372024178505,-0.004116440191865]],[[0.092649050056934,0.10972259938717,-0.12316583842039],[0.13837516307831,-0.10363724082708,-0.016610516235232],[-0.14303840696812,-0.066377028822899,-0.034136448055506]],[[-0.11531329900026,-0.069214202463627,0.19996421039104],[0.083645552396774,-0.018988413736224,0.29683944582939],[-0.084819778800011,0.0028248045127839,0.089840024709702]],[[-0.027863916009665,0.057265676558018,0.023265505209565],[-0.040941461920738,0.0038472060114145,0.024389900267124],[0.019556473940611,-0.0072374963201582,-0.025204969570041]],[[-0.01846257597208,-0.18807695806026,0.026839472353458],[-0.10254245251417,-0.16214293241501,0.12545357644558],[0.015528375282884,0.12137198448181,-0.035530250519514]],[[-0.045574095100164,-0.062800079584122,-0.046246595680714],[0.027481354773045,-0.021725686267018,0.06130201742053],[0.025620460510254,0.092466972768307,0.052276834845543]],[[0.24196083843708,0.14440125226974,0.031624622642994],[0.027143666520715,-0.13015457987785,-0.19833140075207],[-0.077711544930935,-0.099498562514782,0.10805965960026]],[[-0.13327153027058,0.14162923395634,0.026958167552948],[0.034485373646021,0.082594767212868,0.00040144976810552],[-0.069520734250546,0.047115530818701,-0.12267784029245]],[[-0.10248415917158,0.018652321770787,-0.16088928282261],[0.10928152501583,0.013608153909445,-0.062187753617764],[0.045622885227203,-0.060778085142374,0.13477165997028]],[[0.056929100304842,0.12020099908113,-0.15528865158558],[0.050937935709953,-0.073498263955116,-0.12891453504562],[0.11908479779959,-0.10348357260227,0.040206026285887]],[[0.048316344618797,-0.064679361879826,0.00099202641285956],[-0.050309084355831,-0.080020554363728,-0.027973545715213],[-0.099985010921955,0.038189735263586,0.19271022081375]],[[0.062055516988039,0.031768571585417,0.012938877567649],[0.011067812331021,0.14336290955544,-0.14223164319992],[-0.037569038569927,0.01212275121361,-0.15015837550163]],[[-0.028182405978441,-0.088881306350231,-0.096871919929981],[-0.24098725616932,-0.0096994377672672,0.085813030600548],[-0.015404880046844,0.11279672384262,0.15434116125107]],[[-0.079792976379395,0.15978312492371,0.033889271318913],[0.099682308733463,0.055395632982254,-0.04723884537816],[-0.015457643195987,0.053704269230366,-0.14220404624939]],[[-0.074377879500389,-0.17586277425289,0.0051230527460575],[-0.034735511988401,-0.13732644915581,0.12251818925142],[-0.019047060981393,0.055718213319778,0.20118249952793]],[[-0.018434228375554,-0.0017055210191756,-0.051764409989119],[-0.04465864226222,0.026204492896795,-0.23115859925747],[-0.014889621175826,0.003458438673988,-0.38572260737419]],[[-0.044339142739773,0.087925635278225,-0.15842159092426],[0.0047540101222694,0.010875171981752,0.1783085167408],[-0.019995015114546,0.072675928473473,0.19747804105282]],[[-0.040820512920618,0.045352652668953,0.06992057710886],[-0.0039771622978151,0.044827498495579,-0.1128244549036],[-0.006346323993057,-0.013773207552731,0.058762613683939]],[[-0.061884801834822,-0.11855804920197,0.0013766499469057],[0.029247738420963,-0.0863042101264,-0.077211737632751],[0.095802895724773,0.13834472000599,-0.079537414014339]],[[-0.16097642481327,0.067967385053635,0.014664473943412],[-0.0089141903445125,-0.11398201435804,0.031811743974686],[-0.021841529756784,-0.0084973871707916,-0.021721199154854]],[[0.086842708289623,0.14791801571846,-0.0030251366551965],[0.079939931631088,0.01201153639704,0.028506632894278],[0.07710188627243,-0.24864374101162,-0.15096314251423]],[[-0.083870217204094,0.010256354697049,0.11088656634092],[0.030856179073453,0.13313572108746,0.13928130269051],[-0.18736715614796,-0.064131207764149,-0.021245187148452]],[[-0.14668688178062,-0.046955335885286,0.043381027877331],[0.072700396180153,0.018255682662129,0.0037906439974904],[0.070604577660561,-0.12812815606594,-0.10463453829288]],[[-0.015114835463464,0.058153383433819,0.028601873666048],[-0.047358836978674,-0.11944220215082,0.049090567976236],[-0.0061878152191639,-0.1178206205368,0.068175509572029]],[[0.097948610782623,-0.070713944733143,0.0081172902137041],[0.037537578493357,-0.14466559886932,0.019403018057346],[-0.012417856603861,-0.07117560505867,0.039595875889063]],[[-0.074467733502388,0.019696295261383,-0.070108525454998],[0.18713781237602,-0.0081301005557179,-0.064492635428905],[-0.084311351180077,-0.24805176258087,-0.023983456194401]],[[-0.091557666659355,-0.17819362878799,0.11408533900976],[-0.020008768886328,-0.17542664706707,-0.07184012234211],[0.049592390656471,-0.083351574838161,0.048160161823034]],[[0.096399575471878,-0.13966354727745,0.080611534416676],[-0.04909074306488,-0.10866866260767,0.10136940330267],[-0.15066711604595,0.081502348184586,0.11529364436865]],[[-0.022665420547128,0.050652999430895,-0.056563083082438],[-0.051030900329351,0.026993913576007,0.067961737513542],[-0.019878996536136,0.09861071407795,0.060800708830357]],[[-0.020074332132936,0.023133419454098,0.071950793266296],[-0.0082170395180583,-0.044200025498867,-0.051948755979538],[-0.0001961694797501,0.053584203124046,-0.093127250671387]],[[0.071608610451221,0.010013396851718,0.028713349252939],[-0.020220302045345,0.077680684626102,-0.082750357687473],[-0.058446656912565,0.10583351552486,-0.093653649091721]],[[-0.11660614609718,0.20868664979935,0.02949358522892],[-0.047641173005104,-0.15424978733063,-0.19684557616711],[-0.10596882551908,-0.0070466510951519,0.20845471322536]]],[[[0.078601963818073,0.04484686255455,0.017942795529962],[-0.061763510107994,-0.028379755094647,0.092515170574188],[0.0027891080826521,-0.068542890250683,0.037196878343821]],[[0.034961830824614,0.041949704289436,-0.010856654495001],[0.0025266709271818,-0.0058194887824357,0.01697694696486],[0.017843689769506,0.02303302846849,0.1107237264514]],[[-0.076649315655231,-0.021914886310697,0.003449228592217],[-0.031441930681467,-0.027834344655275,0.070634923875332],[0.035934917628765,0.036583110690117,-0.017112251371145]],[[0.033278867602348,0.017601089552045,-0.058163180947304],[0.06026803702116,0.025218753144145,0.068463258445263],[0.054003689438105,0.027342645451427,0.023020768538117]],[[-0.038540296256542,-0.071213364601135,-0.0305968336761],[0.021648062393069,-0.0090653132647276,0.082936361432076],[0.10177961736917,0.046478796750307,0.04733294993639]],[[0.048961624503136,0.012233883142471,0.0219601765275],[0.027429193258286,0.027637178078294,-0.033996839076281],[0.048126500099897,-0.013398743234575,0.051057644188404]],[[0.012689201161265,-0.054961424320936,0.033117368817329],[0.044685091823339,0.049867048859596,-0.049225963652134],[-0.028131525963545,0.018316784873605,-0.011206460185349]],[[0.067886956036091,-0.071942321956158,-0.028750682249665],[0.029495473951101,0.06688367575407,-0.032875586301088],[0.12319976836443,-0.0078494986519217,0.04873563721776]],[[-0.0075923847034574,-0.077340051531792,0.02521519176662],[-0.025902386754751,0.01468404661864,0.052073393017054],[0.031992256641388,0.0063736811280251,0.034661121666431]],[[0.025644853711128,0.067701958119869,0.089133128523827],[-0.039391055703163,0.0041476925835013,-0.0027994567062706],[0.039357867091894,0.041503217071295,-0.034612655639648]],[[0.011772061698139,-0.0017744987271726,-0.044308252632618],[0.063660718500614,0.0058105383068323,-0.036758299916983],[0.072732985019684,0.065209612250328,0.030756996944547]],[[-0.021997367963195,-0.0018376058433205,0.06298354268074],[0.034812498837709,-0.025567039847374,-0.10973170399666],[0.011081514880061,0.019671389833093,-0.026850141584873]],[[0.041029054671526,0.066883571445942,0.028765484690666],[0.047481667250395,0.038501288741827,0.0091084782034159],[0.066199749708176,0.011719722300768,0.034496027976274]],[[0.088485814630985,-0.043199487030506,-0.034593310207129],[0.018851708620787,0.10571966320276,0.015069735236466],[-0.031679477542639,-0.033169120550156,0.027991345152259]],[[0.0062523470260203,-0.023960527032614,-0.073161117732525],[0.051026687026024,0.091016411781311,0.10058459639549],[0.021256681531668,-0.017624234780669,0.0057688350789249]],[[-0.064509101212025,0.0028878855518997,-0.04358146712184],[-0.043575827032328,-0.026368867605925,-0.062490783631802],[-0.039667204022408,-0.026295010000467,0.024955049157143]],[[0.015703411772847,0.095258668065071,-0.039320677518845],[-0.003818524768576,0.10551518946886,-0.0028190701268613],[-0.030765788629651,0.0045989351347089,0.0010461561614648]],[[0.00016388803487644,-0.043042130768299,0.0019360358128324],[-0.029487976804376,-0.036282245069742,-0.03213220462203],[0.07538141310215,-0.010106186382473,-0.056303706020117]],[[-0.032597221434116,-0.076182000339031,0.012457428500056],[0.01332142483443,0.031700033694506,0.026593219488859],[-0.011562362313271,0.0083605004474521,-0.0023026901762933]],[[0.040817115455866,-0.053756926208735,0.042804405093193],[-0.019830392673612,-0.080473020672798,-0.019029023125768],[0.049862291663885,0.07222893089056,0.019446894526482]],[[0.022250976413488,-0.054434228688478,0.034073580056429],[-0.067900165915489,0.028905330225825,-0.046462338417768],[-0.0012410291237757,-0.048013962805271,0.077707335352898]],[[-0.020772280171514,0.04286178201437,-0.012409747578204],[0.030750708654523,0.069454558193684,0.028500648215413],[-0.0018851954955608,-0.034667696803808,0.058142125606537]],[[-0.028340082615614,0.038145657628775,0.042885087430477],[0.10054982453585,-0.022849209606647,0.0016552058514208],[-0.049634743481874,-0.037158872932196,-0.0033524977043271]],[[-0.013241753913462,-0.069930888712406,0.01266570482403],[0.076166771352291,0.030505040660501,0.1026299521327],[-0.03763247653842,0.0034709931351244,0.025134298950434]],[[-0.062794111669064,0.065936349332333,0.022743046283722],[-0.046917587518692,-0.0076807816512883,-0.0029877119231969],[0.034349791705608,0.047380607575178,0.084654696285725]],[[-0.050532441586256,-0.014232616871595,0.013694556429982],[-0.013560183346272,0.062604501843452,-0.020316887646914],[-0.0009955617133528,-0.011727879755199,-0.016983207315207]],[[-0.024846836924553,-0.019328106194735,0.047452338039875],[-0.014569138176739,0.0038790248800069,-0.037359949201345],[-0.012031811289489,0.031532406806946,0.034258365631104]],[[-0.092209868133068,0.012324204668403,-0.0047000804916024],[-0.0017826068215072,0.050333723425865,0.017290806397796],[-0.0694270581007,-0.0041133756749332,0.024351360276341]],[[0.019146032631397,-0.0085219098255038,0.044558838009834],[0.0093245580792427,0.015423229895532,-0.043108399957418],[-0.034662123769522,0.021402759477496,-0.0030674154404551]],[[-0.077677212655544,0.020633557811379,-0.10041674971581],[-0.017477091401815,-0.031505443155766,-0.0082493517547846],[0.070936910808086,0.058982215821743,0.066663019359112]],[[-0.00864820741117,0.070325247943401,0.054094150662422],[0.027217533439398,0.070367842912674,-0.0053918682970107],[-0.019135463982821,-0.033441379666328,0.043781939893961]],[[0.058205466717482,-0.0061625023372471,-0.022821867838502],[0.041111007332802,0.018252709880471,-0.058549158275127],[0.027346326038241,0.022555138915777,-0.013253029435873]],[[0.058452114462852,-0.014276994392276,0.042538948357105],[-0.082468792796135,0.03956551104784,0.02901011519134],[0.012104256078601,0.076374232769012,-0.11235903948545]],[[-0.035709250718355,-0.051655016839504,0.0019972829613835],[0.061622232198715,0.034682303667068,-0.025368064641953],[-0.0079093314707279,0.010021704249084,0.015506407245994]],[[-0.053256046026945,0.023353222757578,-0.050351772457361],[-0.038758959621191,-0.040431711822748,-0.02828343398869],[0.0063822725787759,0.0040197093039751,0.044556882232428]],[[0.065338917076588,-0.013151149265468,0.003246434731409],[0.075275488197803,-0.031808365136385,0.0033136536367238],[-0.023951211944222,0.035746950656176,0.081872537732124]],[[0.043156549334526,-0.032811842858791,0.0078300470486283],[0.050017151981592,-0.060725372284651,0.019799917936325],[-0.0010114194592461,-0.039760567247868,-0.02183167077601]],[[0.026362849399447,0.032351586967707,0.033225677907467],[-0.10508445650339,-0.035674087703228,-0.025826193392277],[0.050000626593828,0.012928445823491,-0.027366865426302]],[[-0.068267904222012,-0.063665628433228,-0.06453413516283],[0.0070065860636532,0.05662189796567,-0.048487640917301],[-0.0069417748600245,0.0061495145782828,-0.029312543570995]],[[0.083870753645897,0.048938684165478,0.023362349718809],[0.014635441824794,0.024781985208392,-0.049895085394382],[0.010704530403018,0.014484073966742,-0.04616454988718]],[[0.0078989015892148,-0.037840005010366,0.010671273805201],[-0.078627966344357,0.012454578652978,-0.0055131488479674],[-0.043614860624075,-0.021055523306131,0.037543129175901]],[[0.027701068669558,-0.028731076046824,-0.03736112639308],[0.025346243754029,0.07899621874094,0.017249662429094],[-0.01500297896564,0.009536306373775,0.075308635830879]],[[0.0018682013032958,0.04053046926856,0.0085649192333221],[0.055201392620802,0.098680540919304,0.017696898430586],[-4.6810746425763e-05,0.054489798843861,0.10153403878212]],[[-0.018878100439906,0.0025463898200542,0.019290007650852],[-0.030126221477985,-0.0047392165288329,-0.037877582013607],[0.020733492448926,-0.016264546662569,0.02003582008183]],[[0.044673901051283,-0.020113600417972,-0.009519531391561],[-0.0048677586019039,-0.011519287712872,-0.03565302118659],[0.054725326597691,-0.024656623601913,-0.12909686565399]],[[0.059293821454048,0.090459138154984,0.091480799019337],[0.057371962815523,-0.0080495309084654,-0.012678986415267],[0.024936556816101,0.046377841383219,0.087213307619095]],[[-0.032920051366091,-0.045283511281013,-0.028523501008749],[-0.018466738983989,-0.011926623992622,0.0076598054729402],[-0.049002278596163,-0.072466254234314,0.057184062898159]],[[-0.056187838315964,-0.030248031020164,-0.085027851164341],[-0.084827281534672,-0.0085475696250796,0.022933050990105],[-0.023478860035539,-0.024320119991899,-0.019861960783601]],[[-0.038197655230761,-0.086437746882439,0.0078079923987389],[0.030186980962753,-0.025156738236547,-0.036495767533779],[-0.044889304786921,-0.030267491936684,-0.035676911473274]],[[0.0095338514074683,0.033112548291683,-0.091125532984734],[0.009945192374289,0.030524617061019,-0.049238424748182],[-0.083937995135784,-0.062204506248236,0.049270823597908]],[[0.0077422768808901,0.0040781982243061,0.042921755462885],[0.020148750394583,0.056082215160131,-0.01825275272131],[0.022628884762526,0.0034468129742891,-0.019989687949419]],[[-0.00035766905057244,0.0074851061217487,0.059757690876722],[-0.0089698154479265,0.064074464142323,-0.0094251735135913],[-0.046875316649675,0.018439382314682,-0.028949845582247]],[[-0.061507325619459,-0.061999812722206,-0.04905242472887],[0.0085236122831702,0.028997676447034,-0.072460271418095],[0.0064876237884164,0.028847692534328,0.013738153502345]],[[0.061838440597057,0.041716434061527,0.12056625634432],[0.002508839359507,-0.038019176572561,0.041145995259285],[0.057575900107622,0.085449248552322,0.0070420717820525]],[[-0.011278742924333,-0.014233896508813,0.022189039736986],[0.053739812225103,0.0094581888988614,-0.016442213207483],[0.088959835469723,0.070907533168793,-0.036069300025702]],[[0.015681263059378,-0.0051177465356886,-0.012494186870754],[-0.038045682013035,0.039011362940073,0.10405879467726],[0.011314505711198,-0.085991837084293,0.046730928122997]],[[-0.037655606865883,0.11995636671782,0.058526780456305],[0.10377239435911,0.067842073738575,0.047256954014301],[-0.0026992629282176,-0.067093066871166,0.016259357333183]],[[-0.0467883720994,-0.035948865115643,-0.0166577976197],[0.036227680742741,-0.10169243812561,0.0039680916815996],[0.057990320026875,-0.060455702245235,-0.05501326918602]],[[-0.061962477862835,-0.0047526056878269,0.04082153737545],[0.063623175024986,0.026273248717189,0.08910708129406],[0.049014586955309,0.014603628776968,0.0084114875644445]],[[0.042383749037981,0.06451129168272,-0.050310801714659],[0.090617433190346,-0.0461858920753,-0.0091637251898646],[0.014862780459225,0.025226268917322,-0.036048348993063]],[[-0.063064843416214,0.02662880718708,0.008907999843359],[0.016176968812943,0.038912158459425,0.015428294427693],[0.034300610423088,-0.028077632188797,0.015587887726724]],[[-0.040829416364431,0.039426214993,0.10958247631788],[-0.013539111241698,0.034448474645615,-0.095653131604195],[-0.020531699061394,-0.006181180011481,0.015578267164528]],[[-0.00086849246872589,0.020618679001927,0.025096463039517],[-0.0031007749494165,0.027841001749039,0.0077453348785639],[-0.022990295663476,-0.0049353120848536,-0.025191826745868]],[[-0.031137557700276,-0.013821486383677,-0.10578632354736],[-0.030886080116034,0.013900334946811,0.067367486655712],[0.01046166755259,-0.056506726890802,-0.028057524934411]],[[0.0063197091221809,-0.011584306135774,0.0072648273780942],[0.010666195303202,0.020886359736323,0.020895039662719],[0.01678860001266,0.013964020647109,-0.046976119279861]],[[0.063720814883709,0.045843452215195,0.069206357002258],[0.017484668642282,-0.017129758372903,-0.027908246964216],[0.048360850661993,-0.052747800946236,0.047535166144371]],[[0.041981354355812,0.032374046742916,-0.079001195728779],[0.07248093187809,-0.01638213917613,0.022829134017229],[-0.02658473700285,-0.0056033693253994,0.11752899736166]],[[0.082894615828991,0.027813861146569,0.027018971741199],[-0.053055256605148,-0.041500754654408,0.031839720904827],[0.026181181892753,-0.0074203829281032,-0.031075268983841]],[[0.00048119001439773,0.028765892609954,-0.0012760644312948],[0.014039402827621,0.012027496472001,0.10799596458673],[0.12048224359751,-0.0048128678463399,-0.022438079118729]],[[0.016539124771953,0.050524026155472,0.036285907030106],[0.026504095643759,0.05385509878397,0.020846435800195],[-0.00024097300774883,-0.076385922729969,-0.07695185393095]],[[0.055641297250986,-0.012416607700288,-0.022307826206088],[-0.055953674018383,0.023605149239302,0.0005029842723161],[0.050699658691883,0.07969556748867,-0.0076843621209264]],[[0.0045914533548057,0.031046375632286,-0.010664361529052],[-0.021916545927525,0.0067496355623007,-0.062564007937908],[-0.087959490716457,-0.049070727080107,0.018287293612957]],[[0.059651598334312,0.052984286099672,-0.017553294077516],[0.01740674674511,-0.00030299081117846,-0.0070284283719957],[0.0031675468198955,0.06170367449522,0.0054577821865678]],[[0.012847633101046,-0.030076865106821,0.026918085291982],[0.0018657452892512,-0.010268953628838,-0.0021241777576506],[-0.016119787469506,-0.036315150558949,-0.033157803118229]],[[-0.050767384469509,-0.058722708374262,-0.045780722051859],[-0.020759725943208,-0.041376821696758,-0.066677190363407],[0.0026842404622585,0.068828925490379,0.048888828605413]],[[0.015615372918546,0.01884257979691,-0.050129473209381],[0.026107078418136,0.0099110146984458,-0.012726731598377],[0.004308067727834,-0.004184995777905,-0.041771985590458]],[[0.030893476679921,-0.071389392018318,-0.042532067745924],[0.052446126937866,-0.012229559011757,0.046749617904425],[0.0017800154164433,0.020984150469303,0.04868621379137]],[[-0.014427600428462,-0.0083664106205106,-0.062089014798403],[0.03348757699132,0.042380075901747,-0.010114840231836],[0.026687240228057,-0.05324188247323,0.10831103473902]],[[0.0058998465538025,0.089592717587948,-0.034203853458166],[0.031604118645191,0.071846798062325,-0.063279077410698],[-0.088703207671642,-0.073399908840656,-0.033496096730232]],[[0.041659735143185,-0.064332708716393,0.0017130085034296],[-0.029356433078647,0.038745328783989,-0.06185319647193],[0.0018504046602175,0.060872960835695,0.0070277508348227]],[[-0.00066588696790859,-0.0081228204071522,-0.035126276314259],[-0.02576925046742,-0.12858259677887,-0.015863582491875],[-0.052680898457766,-0.055275041610003,-0.010584800504148]],[[-0.020622635260224,-0.077338963747025,-0.065165460109711],[-0.066400066018105,0.071174293756485,-0.036624945700169],[0.0084115471690893,-0.048871252685785,-0.038227997720242]],[[-0.01834905333817,0.032508872449398,-0.014694320037961],[-0.043303187936544,-0.031154345721006,0.096610955893993],[0.082914337515831,0.053768899291754,0.020418267697096]],[[0.060384903103113,0.079302549362183,0.023388374596834],[-0.076284758746624,-0.047244768589735,0.06125221773982],[0.011272810399532,-0.0050393827259541,-0.064620889723301]],[[0.022597512230277,0.011195993050933,-0.028877440840006],[-0.040607642382383,-0.0093759503215551,0.06366715580225],[0.033898320049047,-0.0064851026982069,0.015443742275238]],[[-0.028951460495591,0.033663887530565,-0.0055771265178919],[0.019128084182739,0.013009771704674,-0.13173711299896],[-0.026709694415331,0.075725741684437,0.066524796187878]],[[-0.0029697408899665,-0.048734620213509,0.004908955655992],[-0.0021904178429395,0.010735420510173,0.010270310565829],[0.067349031567574,-0.035321228206158,0.050757292658091]],[[0.023283971473575,0.034687776118517,0.0068380078300834],[0.031645189970732,0.015066836960614,-0.077504500746727],[-0.019488414749503,-0.031237352639437,-0.0096624214202166]],[[0.016035508364439,0.014854535460472,-0.087806135416031],[0.04328541457653,0.02079657278955,0.058879047632217],[-0.012197409756482,-0.0097450213506818,0.0097527336329222]],[[-0.048606690019369,-0.036098416894674,-0.072757549583912],[0.0032138184178621,0.058664217591286,0.039651371538639],[0.001309787039645,-0.082831986248493,-0.0032589910551906]],[[0.029473030939698,0.026655210182071,-0.034361869096756],[0.078384943306446,0.040369909256697,0.032200265675783],[0.050348054617643,0.05395419895649,-0.050851821899414]],[[-0.15196537971497,-0.02590324729681,0.019142108038068],[0.018486233428121,-0.063012719154358,-0.093459315598011],[0.06927252560854,0.020955480635166,-0.069312565028667]],[[0.020120052620769,0.014617135748267,0.09742246568203],[0.013350578024983,-0.041922353208065,-0.045988205820322],[0.012871447950602,-0.0097891492769122,-0.053277567028999]],[[-0.050835076719522,0.042313508689404,-0.024046577513218],[0.04388740286231,0.071067102253437,-0.016385553404689],[-0.041521046310663,-0.02759594283998,0.0076077999547124]],[[-0.017359901219606,-0.0062744976021349,-0.0078305806964636],[0.01589510589838,-0.019023226574063,-0.029828267171979],[0.0078049711883068,-0.02671791613102,-0.046313013881445]],[[-0.0060592466033995,0.015113144181669,-0.029459465295076],[-0.088641852140427,0.10988584160805,0.033988524228334],[-0.036859776824713,0.0061862017028034,-0.073613688349724]],[[0.08690994977951,0.034265715628862,0.021849842742085],[-0.015455204062164,-0.097088679671288,0.037497602403164],[0.0045272316783667,0.013770923018456,0.07643399387598]],[[0.065040349960327,-0.010694121941924,0.020166153088212],[-0.012093951925635,0.041304975748062,-0.003461375599727],[0.054591257125139,0.047434873878956,-0.0037571531720459]],[[0.064229890704155,-0.015777377411723,-0.0036888222675771],[0.061403479427099,-0.020120510831475,0.041867826133966],[-0.021626500412822,-0.080946661531925,0.0063373139128089]],[[-0.06841517239809,-0.033095773309469,-0.012574636377394],[0.043914638459682,0.058575097471476,0.12396175414324],[0.084083154797554,-0.071578197181225,-0.084100641310215]],[[-0.028052987530828,-0.053867775946856,0.065901815891266],[0.046751290559769,-0.04837142303586,-0.0083958171308041],[-0.049906224012375,0.021008469164371,-0.0098337205126882]],[[-0.016731176525354,0.02947460860014,-0.054537359625101],[0.0087575847283006,-0.0026719325687736,0.035750262439251],[-0.023296782746911,0.076362170279026,0.090987086296082]],[[0.022511318325996,-0.008492854423821,0.0082837184891105],[0.025682497769594,0.0025794445537031,0.04527260735631],[0.057605609297752,0.056352496147156,0.034837380051613]],[[-0.083777651190758,-0.0098703382536769,-0.0032459783833474],[-0.010940046980977,-0.026557825505733,-0.094466730952263],[0.067425981163979,-0.05860798060894,-0.067980766296387]],[[0.060385193675756,-0.0078977243974805,0.011695347726345],[0.038009021431208,-0.075769923627377,0.022039443254471],[-0.0088503556326032,0.013975731097162,-0.072613917291164]],[[-0.0080160228535533,-0.037764880806208,-0.045961890369654],[0.13161338865757,0.048563547432423,0.019266372546554],[0.0061750086024404,0.046037781983614,-0.025785589590669]],[[0.055762317031622,-0.036245793104172,0.028181092813611],[0.074317596852779,-0.023107403889298,-0.0016916167223826],[-0.0050202566199005,0.079224422574043,0.023635592311621]],[[-0.044723518192768,0.050526823848486,-0.029516451060772],[-0.021930448710918,-0.087488055229187,0.0086899641901255],[-0.016252318397164,0.071008488535881,0.068440221250057]],[[0.013671390712261,0.025291554629803,-0.0050609055906534],[0.00095768814207986,-0.043647401034832,0.042269766330719],[0.039924383163452,-0.02725974842906,0.0095150051638484]],[[-0.049503158777952,-0.0058288527652621,-0.010215519927442],[-0.0058694705367088,0.075445510447025,0.029151037335396],[0.068486556410789,0.041374802589417,-0.0049082599580288]],[[-0.05794532969594,-0.115578584373,-0.05565033107996],[0.069100901484489,0.030870273709297,-0.025832058861852],[0.015208806842566,0.059236411005259,0.014029106125236]],[[0.039815187454224,-0.078836679458618,-0.098265923559666],[-0.018007202073932,-0.059231482446194,-0.037077307701111],[-0.041687738150358,0.026037946343422,0.036311879754066]],[[-0.040509186685085,-0.059848096221685,-0.024811208248138],[0.0062162042595446,-0.019070737063885,-0.021650090813637],[-0.047924380749464,-0.015719320625067,-0.042109090834856]],[[-0.09219017624855,-0.0033248071558774,-0.092585891485214],[0.0083159459754825,-0.014532760716975,0.030017666518688],[-0.030277736485004,-0.013160158880055,0.031562253832817]],[[-0.025883615016937,0.083768732845783,0.022217774763703],[-0.089209489524364,-0.0036721543874592,0.10178545862436],[-0.042663987725973,-0.053186189383268,0.043446686118841]],[[0.021443298086524,0.029384249821305,-0.051619157195091],[0.030114743858576,-0.031437207013369,-0.07370314002037],[3.0584658816224e-05,-0.049046956002712,-0.0043683997355402]],[[0.023139918223023,-0.072779096662998,-0.098120637238026],[0.022318312898278,-0.030236965045333,0.0016640002140775],[0.088522009551525,0.091819874942303,0.017074251547456]],[[0.050269063562155,-0.02519728243351,0.0052817002870142],[-0.0082663586363196,-0.048621919006109,-0.095363155007362],[0.011789397336543,-0.067112497985363,-0.017171375453472]],[[-0.15515385568142,-0.10629869997501,-0.05022032558918],[0.01374504249543,0.024117171764374,-0.02358422614634],[-0.073052063584328,0.027074314653873,-0.028657959774137]],[[-0.061507005244493,-0.0047899158671498,0.12302093952894],[0.027771629393101,0.063610747456551,0.036131847649813],[0.065458573400974,0.03132713958621,0.0014830126892775]],[[-0.026468245312572,-0.017989329993725,0.0043016918934882],[0.005176970269531,-0.056185565888882,0.074726834893227],[-0.066573098301888,-0.0079445792362094,-0.0629817917943]],[[-0.046977732330561,0.016732124611735,-0.097626008093357],[-0.041481573134661,0.027873637154698,0.016438668593764],[-0.016514059156179,0.03163643553853,-0.12483963370323]],[[-0.033376578241587,0.043607592582703,0.072128720581532],[-0.01250631455332,-0.018023462966084,0.012545142322779],[-0.035552952438593,-0.0048516266979277,-0.06453637778759]],[[0.085431896150112,0.048000875860453,0.046908602118492],[-0.034370996057987,0.015864768996835,-0.027181096374989],[0.062662281095982,-0.037781219929457,-0.064681448042393]],[[-0.016004884615541,-0.052995391190052,-0.027326280251145],[0.017257345840335,-0.020273579284549,0.0068941181525588],[0.024961924180388,-0.0046726199798286,0.014120243489742]],[[0.015010540373623,0.017938695847988,0.0059312009252608],[0.035870242863894,0.028475444763899,0.019556565210223],[-0.022867327556014,-0.0028339917771518,0.03777764365077]],[[0.035399071872234,0.034956559538841,0.0023851396981627],[0.033944480121136,0.016572909429669,0.03502182289958],[0.063091650605202,0.036899819970131,0.08324983716011]],[[-0.046483833342791,0.12754322588444,0.040196564048529],[0.053707424551249,-0.00087978225201368,0.1744686216116],[-0.047041263431311,-0.011595621705055,0.052951853722334]]],[[[-0.029178157448769,0.043277882039547,-0.045977853238583],[0.020123641937971,0.056655306369066,-0.011342932470143],[0.056212909519672,0.0082136979326606,-0.0027451645582914]],[[0.01996705122292,-0.061192739754915,0.010516435839236],[0.068683780729771,-0.022871209308505,-0.0013485626550391],[0.093989677727222,0.039815999567509,-0.0066894139163196]],[[-0.061868842691183,0.0494817905128,0.035723596811295],[0.033453207463026,0.0462511703372,-0.046876408159733],[-0.010248062200844,0.01127159036696,0.033682085573673]],[[0.040907826274633,-0.090332359075546,0.0013653670903295],[-0.0013094651512802,-0.04134476929903,0.013418823480606],[-0.03475421667099,0.0060529089532793,0.004741501994431]],[[-0.028342686593533,0.0178152192384,0.017041573300958],[0.016061136499047,0.030675925314426,0.0094938306137919],[-0.037624474614859,-0.035654675215483,-0.042539041489363]],[[-0.007446083240211,0.0045535331591964,0.038210891187191],[-0.00078553962521255,-0.024131812155247,0.048022359609604],[0.031407192349434,-0.0064047095365822,-0.0037800692953169]],[[-0.025305507704616,0.024314656853676,-0.017534375190735],[0.030325587838888,0.026125695556402,-0.027306998148561],[-0.020520217716694,0.02747605741024,-0.0085907839238644]],[[0.016564505174756,0.019792314618826,0.021865336224437],[-0.029177909716964,-0.044683463871479,-0.0021799479145557],[7.887421088526e-05,-0.03279522061348,0.0087144505232573]],[[0.0077277855016291,0.013172917068005,-0.044027086347342],[0.013125702738762,-0.0079940631985664,-0.010951577685773],[-0.025570899248123,0.047407437115908,0.04197396337986]],[[0.0012275768676773,-0.0056932214647532,-0.018205175176263],[0.031500525772572,-0.068727552890778,-0.041960589587688],[0.0060346955433488,0.069835595786572,0.079657204449177]],[[-0.010993224568665,0.017971886321902,0.0088300304487348],[0.045782890170813,0.05339002981782,-0.039354354143143],[0.0059977076016366,-0.042205695062876,-0.068001911044121]],[[-0.025375498458743,-0.0007778235594742,0.038692139089108],[-0.026738939806819,0.028897924348712,0.044742520898581],[-0.017491800710559,-0.020077649503946,-0.032786902040243]],[[-0.0072122407145798,-0.054119810461998,0.00091013632481918],[0.049325384199619,0.011088810861111,0.048149410635233],[-0.0011568343034014,0.0059752142988145,0.018432658165693]],[[0.013903919607401,-0.025048958137631,0.022909104824066],[0.013194099068642,0.066990278661251,-0.050054531544447],[0.036341622471809,0.028752196580172,-0.046784337610006]],[[-0.025767711922526,-0.03444929420948,-0.072383709251881],[0.026122506707907,0.025109875947237,0.056405574083328],[0.02617814950645,0.0016173939220607,0.024576012045145]],[[0.023162556812167,0.019139505922794,0.0027549229562283],[0.011108743026853,-0.052787497639656,-0.0024009793996811],[0.034532099962234,0.039191015064716,-0.020368235185742]],[[-0.037199970334768,0.024907505139709,-0.048616323620081],[0.018944969400764,0.043239034712315,-0.0328359156847],[-0.011964564211667,0.033327639102936,0.025271719321609]],[[-0.0083290794864297,0.035474453121424,0.07041759043932],[-0.03321011736989,-0.017119569703937,-0.073193944990635],[-0.052758295089006,-0.039455823600292,0.073023743927479]],[[0.013564142398536,0.027260489761829,-0.025952540338039],[0.0061473087407649,0.04318818077445,-0.024892967194319],[0.042478144168854,-0.022168437018991,0.018255023285747]],[[0.031773284077644,0.01394853182137,-0.067493759095669],[-0.016533520072699,0.016851613298059,-0.07991685718298],[0.020248800516129,0.040591988712549,-0.0070680752396584]],[[0.009448854252696,0.058587394654751,0.035677216947079],[-0.030367976054549,-0.018769668415189,-0.032232210040092],[-0.084000237286091,-0.077681638300419,-0.086311005055904]],[[-0.010814413428307,-0.0047371713444591,0.021717147901654],[-0.02980899438262,-0.042980309575796,0.052324641495943],[0.042777985334396,-0.013658088631928,-0.0084357997402549]],[[0.029333619400859,-0.023017985746264,0.011234584264457],[0.036450393497944,0.072976835072041,0.0042067407630384],[-0.0030521533917636,-0.03227761015296,-0.063022784888744]],[[0.02976986952126,-0.038451071828604,-0.045937042683363],[-0.0049227923154831,-0.025539238005877,-9.9737837444991e-05],[0.0073872595094144,-0.039981953799725,0.028954407200217]],[[-0.017640033736825,0.015752894803882,0.043422181159258],[0.0088948560878634,0.016674682497978,-0.022127728909254],[-0.048597153276205,0.016697211191058,0.024527173489332]],[[-0.010258025489748,0.072805315256119,0.01839136146009],[-0.030919793993235,-0.0050830002874136,0.028860365971923],[-0.028035731986165,-0.028518376871943,-0.025796899572015]],[[0.0082676392048597,-0.0075164651498199,0.026020590215921],[0.0041110054589808,-0.031272318214178,0.040899261832237],[-0.012541175819933,0.044423971325159,-0.044735241681337]],[[-0.013741316273808,0.0014157457044348,-0.022013733163476],[-0.020423779264092,0.022657353430986,0.031686779111624],[0.0028539977502078,0.040043011307716,0.025141272693872]],[[-0.035359650850296,0.00041572525515221,0.0079394830390811],[0.070404678583145,0.076196596026421,0.029029458761215],[0.00074816547567025,-0.053695861250162,-0.078816398978233]],[[0.038276821374893,0.0048494855873287,0.026237681508064],[0.033379033207893,0.0050558564253151,-0.020769935101271],[0.045588601380587,0.017111552879214,0.092908032238483]],[[0.0025175039190799,-0.039194915443659,-0.010304206050932],[-0.054303750395775,0.016814608126879,0.058682054281235],[0.039203356951475,-0.007537245284766,-0.025231275707483]],[[-0.010374015197158,-0.0062090908177197,-0.042539175599813],[-0.057900309562683,-0.032185528427362,0.033991139382124],[0.018356701359153,-0.01591388322413,0.072754271328449]],[[-0.056744024157524,-0.061288848519325,0.032120037823915],[-0.010082663968205,0.037495445460081,0.033778712153435],[0.013493914157152,-0.036130234599113,0.036542952060699]],[[0.0025109783746302,-0.073089517652988,-0.040078680962324],[-0.023602077737451,-0.023137014359236,0.004015679936856],[0.022705994546413,0.08357909321785,-0.036967966705561]],[[0.022751422598958,-0.013176289387047,-0.060588218271732],[-0.012614070437849,-0.0098313447088003,0.018264509737492],[0.014956245198846,-0.0031049645040184,0.03350805491209]],[[-0.077525027096272,0.049103174358606,0.031243439763784],[-0.019359333440661,0.012085288763046,0.045892182737589],[-0.00066536269150674,-0.0024299286305904,0.023103574290872]],[[-0.026005737483501,-0.063048027455807,0.039649307727814],[0.020290400832891,-0.038812778890133,-0.060134068131447],[0.018410883843899,0.025210570544004,-0.035455830395222]],[[0.026943294331431,-0.041733246296644,0.014371478930116],[-0.029696295037866,0.023291783407331,0.0018537421710789],[0.024228740483522,-0.038806617259979,0.030829476192594]],[[0.079708151519299,-0.034435778856277,0.005295961163938],[0.060235824435949,-0.021419990807772,-0.043716609477997],[0.049386169761419,-0.0096442522481084,0.03787587583065]],[[-0.0047971070744097,-0.0029832955915481,-0.014497922733426],[0.022280514240265,0.016362376511097,-0.013772601261735],[-0.043243203312159,-0.021030755713582,-0.006711395457387]],[[-0.014282961376011,-0.0010564882541075,0.049722611904144],[0.013158625923097,-0.0062085590325296,-0.0063217212446034],[0.00094856467330828,0.00020835423492827,0.017394559457898]],[[-0.0048509784974158,-0.011525962501764,-0.018105395138264],[0.015423938632011,0.024307949468493,0.010902318172157],[-0.072067372500896,-0.0025763236917555,0.047006651759148]],[[-0.056719582527876,-0.016603359952569,0.034995961934328],[-0.053212583065033,0.032473016530275,-0.03989015519619],[-0.0029029822908342,0.025009348988533,0.041401173919439]],[[-0.037369731813669,-0.00093614956131205,0.062279526144266],[-0.023658001795411,0.02292743884027,0.0001284555910388],[0.025832867249846,-0.021571923047304,0.0377894975245]],[[-0.049070823937654,-0.0041992249898612,0.0017763574142009],[0.011713442392647,-0.039451900869608,0.012823550030589],[0.04305400326848,0.062064856290817,-0.020373567938805]],[[-0.015070543624461,-0.038840044289827,0.055513974279165],[0.011272319592535,-0.034967713057995,-0.014289242215455],[-0.024073239415884,0.012662274762988,0.074386432766914]],[[-0.013390577398241,0.028356099501252,0.038655620068312],[0.049399774521589,0.0065619177184999,-0.037892583757639],[-0.022870453074574,-0.020255861803889,0.032196585088968]],[[-0.0097151482477784,-0.060411557555199,0.015599540434778],[0.07024884223938,0.0055542280897498,0.0026336847804487],[0.048347044736147,0.067056126892567,0.0022632034961134]],[[-0.010716957971454,-0.038568593561649,0.022279953584075],[0.056748278439045,-0.058941025286913,0.0065842322073877],[0.055933766067028,0.0070397420786321,0.021635271608829]],[[-0.033716630190611,-0.0070248092524707,0.043643984943628],[0.020494600757957,-0.034235842525959,-0.067817501723766],[-0.030149448662996,-0.017797809094191,0.060905635356903]],[[0.028005715459585,-0.048720356076956,-0.043589789420366],[0.1001141667366,0.025605162605643,-0.0035268904175609],[-0.0057038576342165,-0.038446631282568,-0.02649025991559]],[[-0.031961336731911,-0.004640297498554,0.016438292339444],[0.08683005720377,-0.013644388876855,-0.059125687927008],[0.0058374181389809,-0.022571323439479,-0.030050674453378]],[[-0.03939051926136,0.02113838121295,0.0037943942006677],[-0.076015315949917,-0.0095233805477619,0.13114176690578],[-0.012156679295003,0.057668302208185,-0.0097726788371801]],[[-0.00050303136231378,0.0025192885659635,-0.016902185976505],[0.028396839275956,0.011579212732613,0.013705318793654],[0.012699919752777,-0.010975908488035,-0.015773171558976]],[[-0.028061686083674,-0.050461869686842,0.022843651473522],[0.072944112122059,0.026674419641495,-0.045529119670391],[0.041251793503761,0.04570721462369,0.013140393421054]],[[-0.011395425535738,-0.015715710818768,0.0070518013089895],[-0.078474916517735,0.043914668262005,0.02592528052628],[0.040333762764931,-0.057725578546524,-0.0011439044028521]],[[-0.036569837480783,-0.0013866646913812,-0.087421409785748],[0.010775205679238,0.01614218018949,-0.026466635987163],[0.072841331362724,-0.0030375595670193,-0.018600139766932]],[[-0.030658569186926,0.077509254217148,0.020290186628699],[-0.027347315102816,-0.024967608973384,-0.015896789729595],[0.075613044202328,0.031778935343027,-0.0091302869841456]],[[0.042457807809114,-0.01402098312974,-0.031639788299799],[0.044822189956903,0.0093975774943829,0.042849991470575],[0.023627497255802,0.044544789940119,-0.029160354286432]],[[0.026435973122716,0.042205478996038,-0.072107791900635],[0.031749438494444,0.034954395145178,-0.018376303836703],[-0.0087577737867832,-0.030184654518962,-0.021044006571174]],[[0.034384619444609,0.011315356940031,0.013403033837676],[-0.027285309508443,-0.10281272232533,-0.035332623869181],[-0.0052793133072555,0.0060035199858248,-0.053103160113096]],[[0.027980092912912,-0.041658297181129,-0.003285198006779],[-0.00031298390240408,-0.0053040334023535,-0.036437939852476],[-0.012309405021369,-0.034032709896564,-0.044716361910105]],[[-0.012312263250351,0.0022875890135765,0.0066271857358515],[0.00029110378818586,0.010742865502834,-0.020403293892741],[0.015934474766254,0.0230030156672,-0.045383263379335]],[[0.051531314849854,0.057466931641102,0.0046340562403202],[-0.020379019901156,-0.055150039494038,0.030531024560332],[-0.023374922573566,-0.053404081612825,0.019205695018172]],[[0.026033405214548,-0.035385806113482,-0.011887011118233],[0.03851455450058,0.053365848958492,-0.076792202889919],[-0.020142855122685,-0.023686097934842,0.029051776975393]],[[-0.01597691886127,-0.062786214053631,0.0063480269163847],[0.084387958049774,-0.0072807567194104,0.042830791324377],[-0.0094657298177481,-0.022137872874737,-0.018511140719056]],[[0.0076912115328014,0.028446931391954,0.024745270609856],[0.00062143884133548,0.0034347160253674,-0.022089395672083],[0.014623260125518,-0.019301492720842,0.010143026709557]],[[-0.0046800537966192,-0.009249048307538,-0.0023489287123084],[0.020518098026514,-0.0064531918615103,-0.050760943442583],[-0.026737496256828,-0.0024289130233228,0.021046625450253]],[[0.034702830016613,-0.0033889093901962,0.019053591415286],[-0.0032858436461538,0.051628291606903,-0.012692752294242],[0.067591242492199,-0.018851265311241,-0.099369287490845]],[[-0.060678500682116,-0.015261542983353,-0.054200775921345],[0.020073007792234,0.077791072428226,0.039831887930632],[-0.007000139914453,0.011307359673083,0.006198603194207]],[[0.018445597961545,-0.00090373965213075,-0.033149383962154],[0.041424933820963,-0.034498050808907,0.031324904412031],[0.013367175124586,-0.081707574427128,0.014413271099329]],[[-0.049247961491346,-0.0028002343606204,-0.054681088775396],[-0.023167591542006,0.039377275854349,0.049944419413805],[0.00045704067451879,0.079196974635124,-0.011503486894071]],[[-0.017942892387509,-0.072887316346169,0.073388904333115],[-0.050474666059017,-0.029714504256845,0.076742455363274],[-0.063533991575241,0.066836878657341,0.0047194329090416]],[[-0.0055662672966719,0.0464868247509,0.044006951153278],[-0.04401421174407,0.063897393643856,-0.093269042670727],[-0.046626031398773,0.0078850425779819,0.075384005904198]],[[0.008872882463038,0.039926048368216,0.01020731870085],[0.0064155547879636,-0.024800941348076,-0.021982436999679],[-0.05080721154809,-0.0065997424535453,0.0032162750139832]],[[0.06280755251646,0.056144412606955,0.0097153289243579],[0.018362583592534,-0.022083038464189,-0.048283945769072],[-0.029562536627054,-0.0014082445995882,-0.050752650946379]],[[0.013449204154313,-0.064451783895493,0.0077259978279471],[-0.01889430731535,-0.011061831377447,0.040609523653984],[-0.012037883512676,-0.0013205922441557,0.051591891795397]],[[-0.029245583340526,-0.029406333342195,0.052313473075628],[0.039102792739868,0.01850195415318,0.01394123211503],[-0.0053210058249533,0.011127270758152,0.027451170608401]],[[0.056152280420065,0.02692487090826,0.011033493094146],[-0.0029971718322486,-0.025619665160775,-0.063916571438313],[-0.048666402697563,0.028248416259885,-0.03026369959116]],[[0.0062460135668516,0.034520201385021,-0.042728252708912],[0.012189482338727,-0.090729184448719,-0.0010625194991007],[0.083586990833282,0.0028495406731963,0.028663525357842]],[[0.012002630159259,-0.052136223763227,-0.029446065425873],[0.0020013938192278,0.027742559090257,-0.028760064393282],[0.014631579630077,0.043756742030382,-0.052399378269911]],[[0.022229285910726,0.041318479925394,-0.049733269959688],[0.0079742260277271,0.033860210329294,-0.014175763353705],[-0.01548795029521,-0.0012467341730371,-0.036023803055286]],[[0.004751362837851,-0.043814823031425,-0.024424066767097],[0.068321645259857,-0.0095030153170228,-0.004639205057174],[-0.0047264313325286,0.044430106878281,0.027370216324925]],[[-0.012984091416001,-0.052560567855835,-0.0046415529213846],[0.13266126811504,0.028767993673682,0.0015698074130341],[-0.037363383919001,0.0056342147290707,-0.04990541189909]],[[-0.013228894211352,0.0018230120185763,0.060360241681337],[0.016902536153793,0.010963786393404,0.0059618595987558],[-0.019562421366572,0.010358179919422,-0.020356703549623]],[[0.009855373762548,-0.038060873746872,-0.035873796790838],[-0.020782995969057,0.023450346663594,-0.031041061505675],[-0.020840493962169,0.021729243919253,0.065180897712708]],[[0.022818431258202,-0.001563627156429,-0.02705636061728],[0.039281934499741,-0.024416388943791,-0.017322920262814],[-0.05644666031003,0.048835087567568,0.050967149436474]],[[0.020943311974406,-0.059930447489023,0.023610308766365],[0.02579203248024,-0.029965303838253,0.019806366413832],[0.01102109439671,0.026576666161418,-0.035544157028198]],[[0.053228832781315,0.011249109171331,0.04801045358181],[-0.0017686842475086,0.010336132720113,-0.020911803469062],[0.022654846310616,-0.044164806604385,-0.093095541000366]],[[0.034460365772247,0.015327882021666,-0.053557835519314],[-0.016106745228171,0.011413507163525,-0.056629631668329],[0.022161742672324,0.02024319767952,-0.044303491711617]],[[-0.034594889730215,0.061046022921801,-0.041378159075975],[0.030274637043476,0.041258916258812,-0.043508101254702],[0.02359763532877,0.0057476246729493,0.02120546810329]],[[0.082032144069672,-0.030767306685448,0.085414953529835],[-0.011180519126356,0.0019764206372201,0.034471180289984],[0.01794621348381,-0.043611232191324,-0.061653185635805]],[[-0.088620185852051,0.050615295767784,-0.0094334278255701],[0.029221737757325,-0.026221703737974,0.067414306104183],[-0.027440337464213,-0.0023426928091794,-0.024755124002695]],[[0.06112078204751,-0.055017776787281,0.00041428068652749],[0.02481042034924,0.067194879055023,-0.01195917557925],[0.01999925263226,0.0079263895750046,-0.022085489705205]],[[-0.035536110401154,0.021913373842835,-0.020437410101295],[0.058275375515223,0.046922497451305,-0.059832464903593],[0.025344213470817,0.0050357421860099,-0.072858765721321]],[[-0.010283122770488,-0.0055633634328842,-0.045518275350332],[0.020621839910746,0.00065849488601089,-0.01516386307776],[0.029255140572786,0.024605982005596,0.063967935740948]],[[0.0059392317198217,-0.047788131982088,0.023018073290586],[-0.053141478449106,0.0017288702074438,-0.013874201104045],[0.0031629407312721,-0.004627148155123,0.054716188460588]],[[0.034816160798073,-0.018788758665323,-0.075586274266243],[0.065618090331554,0.066712990403175,-0.020653603598475],[-0.038422983139753,0.060280971229076,-0.020620528608561]],[[-0.031439058482647,-0.023924062028527,-0.029269205406308],[0.035970162600279,0.0030947832856327,0.011516007594764],[0.00072662363527343,-0.017169298604131,-0.068505354225636]],[[0.0050677102990448,0.036210551857948,-0.038793370127678],[-0.0035122164990753,-0.013690378516912,0.00019800895825028],[0.027299337089062,0.028429752215743,-0.017535116523504]],[[0.0050864391960204,0.0479158423841,0.02449837513268],[0.010749319568276,0.0032803826034069,0.024663729593158],[0.013966494239867,0.033006638288498,0.038028139621019]],[[0.014854633249342,0.045262731611729,-0.053569480776787],[-0.07203683257103,0.015946352854371,-0.041325327008963],[-0.011111157014966,0.094274289906025,0.026638239622116]],[[0.0095962500199676,-0.015199057757854,-0.027437854558229],[-0.0025298902764916,-0.051893040537834,0.0097023854032159],[-0.020751398056746,-0.0067960587330163,-0.008623393252492]],[[0.0073278388008475,-0.042190868407488,0.015923764556646],[-0.019848521798849,-0.058737341314554,0.039840310811996],[-0.00034482785849832,-0.041177432984114,0.091306068003178]],[[0.01252690795809,0.010723297484219,0.026417979970574],[0.081635020673275,-0.038631677627563,-0.037510748952627],[0.016221264377236,-0.072034120559692,0.048571456223726]],[[-0.0011545276502147,0.065746314823627,-0.060771737247705],[0.058730378746986,-0.040244985371828,0.013854725286365],[0.003936680033803,0.048873830586672,0.0151711050421]],[[-0.051020976155996,0.036537803709507,0.0019620023667812],[-0.00045899060205556,0.018794661387801,0.040986903011799],[-0.10466653853655,-0.0087911784648895,-0.031597018241882]],[[-0.026701802387834,0.077510729432106,-0.023099156096578],[-0.020030543208122,-0.023746715858579,0.052221145480871],[0.0022712992504239,-0.035853616893291,-0.052916508167982]],[[-0.043318476527929,0.010306821204722,-0.0018347766017541],[-0.023410754278302,0.012788535095751,0.026656553149223],[0.024834288284183,-0.077339120209217,0.065461479127407]],[[0.040458980947733,0.024729836732149,-0.013864167034626],[-0.049154084175825,0.027540687471628,0.047011591494083],[0.025431573390961,-0.05105110630393,2.306933311047e-05]],[[-0.019746042788029,-0.051009353250265,-0.11363746970892],[-0.084751069545746,-0.13573744893074,-0.22741591930389],[-0.060999765992165,-0.079963952302933,-0.12600928544998]],[[0.0060723703354597,0.0022841389290988,0.026878837496042],[0.01825256831944,-0.050545133650303,-0.070984207093716],[-0.0024059724528342,-0.0052999714389443,-0.0096336212009192]],[[-0.034586165100336,0.016965562477708,0.077991649508476],[-0.02768912166357,-0.067619971930981,0.019773637875915],[0.0013407664373517,-0.0056831939145923,-0.030996311455965]],[[-0.025610426440835,0.015532403253019,-0.096464417874813],[-0.0089678326621652,0.038870859891176,0.047608055174351],[0.03904278203845,-0.043417502194643,0.052493534982204]],[[0.014954522252083,-0.058443207293749,0.0022681343834847],[-0.0093310186639428,0.0082715302705765,-0.048328932374716],[0.017805153504014,0.06352461129427,0.0011169445933774]],[[0.028546903282404,-0.010087849572301,0.016210744157434],[-0.031470362097025,-0.013860825449228,-0.061319809406996],[0.039916772395372,0.028362933546305,-0.064392223954201]],[[1.5319819794968e-05,-0.073883704841137,-0.018504509702325],[0.020408231765032,0.05853434279561,-0.046982679516077],[0.052457436919212,0.090538017451763,0.072453089058399]],[[0.039032980799675,-0.04438541457057,-0.0051431721076369],[-0.058874499052763,0.10224595665932,-0.0058507085777819],[0.037868976593018,0.001284554018639,-0.003746441565454]],[[0.024837087839842,-0.017115190625191,0.016213081777096],[-0.04864788427949,0.081341817975044,-0.0088939350098372],[0.051232665777206,-0.023072661831975,0.032481037080288]],[[-0.044425755739212,0.03101566247642,0.012719700112939],[-0.041423194110394,-0.090465754270554,-0.025032548233867],[0.033196911215782,0.059693571180105,0.056749321520329]],[[0.037316400557756,-0.038970366120338,-0.017549969255924],[0.033453948795795,-0.055485900491476,-0.029938345775008],[-0.012131829746068,0.038757402449846,0.007701201364398]],[[0.046247713267803,-0.03147991746664,0.039183139801025],[0.062778078019619,0.02135550789535,-0.076358780264854],[-0.09600044041872,-0.11997105181217,-0.058955010026693]],[[-0.0069783707149327,-0.068690091371536,-0.018559575080872],[-0.068022809922695,-0.045362766832113,0.035918220877647],[0.049907833337784,-0.019901601597667,0.038157053291798]],[[-0.0039540124125779,-0.013570974580944,0.031346175819635],[0.029643375426531,-0.032454580068588,0.064162589609623],[0.027550643309951,-0.05924729257822,0.0021133464761078]],[[-0.0096647832542658,-0.056806072592735,-0.044401079416275],[0.012951399199665,0.086326137185097,0.0093536479398608],[-0.013550030998886,0.052975460886955,-0.045122746378183]],[[-0.032416712492704,0.0034562950022519,-0.0067285229451954],[0.094756327569485,0.029490927234292,0.0043719620443881],[-0.024206964299083,-0.02927497588098,-0.020746424794197]],[[0.022401629015803,-0.041384283453226,0.038412794470787],[-0.00939672999084,0.0033090410288423,-0.056350003927946],[0.029655385762453,0.020579278469086,-0.018806902691722]],[[0.071112297475338,-0.02607230655849,0.0011656389106065],[-0.032767336815596,0.077124387025833,0.031339474022388],[-0.01840073056519,0.016484750434756,0.014619224704802]]],[[[0.05042976886034,0.067077621817589,-0.043440967798233],[-0.012081893160939,-0.077720731496811,0.034662686288357],[-0.017348911613226,0.043416183441877,-0.012205478735268]],[[0.024507630616426,-0.01936754770577,-0.0022733481600881],[-0.060793645679951,-0.1503469645977,0.042109273374081],[-0.0079157538712025,0.017798356711864,-0.071988500654697]],[[0.12279359251261,0.10563462972641,0.034503798931837],[-0.012317987158895,-0.057633530348539,0.0024027111940086],[-0.086580395698547,-0.013354834169149,-0.058163650333881]],[[0.029965475201607,-0.059614393860102,-0.026012308895588],[0.061312049627304,0.020234182476997,-0.020581871271133],[0.032879319041967,-0.1020597666502,-0.008258699439466]],[[0.022290484979749,-0.028753845021129,0.011124444194138],[-0.017364824190736,0.049660723656416,-0.033329006284475],[0.028897201642394,-0.023399360477924,-0.024302382022142]],[[-0.048535034060478,0.05086999386549,0.040809039026499],[0.020108789205551,0.0083639612421393,0.10807504504919],[-0.046407945454121,0.012172049842775,-0.050125252455473]],[[-0.022953944280744,-0.0024155341088772,-0.0058117690496147],[-0.0061347335577011,-0.016826778650284,-0.037725370377302],[0.00034131066058762,0.058609016239643,0.071359403431416]],[[0.027767851948738,-0.063496202230453,-0.0099211977794766],[-0.020621413365006,-0.022048033773899,-0.00072733528213575],[-0.029499690979719,0.03971378877759,-0.027112323790789]],[[-0.0033614325802773,-0.011197535321116,0.072736822068691],[0.029145985841751,-0.031281620264053,0.073150835931301],[-0.06943054497242,0.059668555855751,0.029668120667338]],[[-0.017545508220792,-0.056568026542664,-0.0076666171662509],[-0.012708628550172,-0.026794133707881,-0.011034062132239],[-0.042815532535315,-0.055786516517401,0.043019160628319]],[[-0.033284489065409,0.014150597155094,-0.0093004684895277],[-0.0246691852808,-0.041357561945915,-0.022963082417846],[-0.0069214212708175,0.029611758887768,0.038626413792372]],[[0.086886584758759,-0.024938797578216,0.055466633290052],[-0.021228585392237,0.094140790402889,-0.011840600520372],[0.03177086263895,-0.02211893722415,0.039964009076357]],[[0.014238045550883,-0.063369065523148,0.026937894523144],[0.034159209579229,0.022717069834471,-0.023798067122698],[0.0045290952548385,0.015924947336316,-0.020098775625229]],[[0.0031282315030694,-0.029498014599085,-0.082321479916573],[0.11588908731937,0.08118624985218,-0.10026501864195],[-0.099650964140892,0.069962352514267,0.023940708488226]],[[-0.02310493029654,-0.054250903427601,0.030355969443917],[0.048389751464128,-0.031613398343325,-0.0042410385794938],[-0.011722926981747,-0.10491314530373,0.045516215264797]],[[0.0090257748961449,-0.01054687704891,0.075442962348461],[-0.037637919187546,-0.1170030683279,0.055854946374893],[-0.044427890330553,-0.034459784626961,-0.0034152355510741]],[[0.0012344706337899,-0.036649741232395,0.012414139695466],[-0.0072180372662842,-0.012421417050064,-0.023900179192424],[0.035781610757113,0.034274477511644,-0.0046177553012967]],[[-0.080183945596218,-0.065626285970211,0.01170723605901],[-0.0011301002232358,0.053593397140503,-0.027366869151592],[-0.0084199365228415,0.009360134601593,-0.011410833336413]],[[-0.019430160522461,0.024644758552313,-0.0065411697141826],[0.024192633107305,-0.01015221234411,0.05347329005599],[-0.008368568494916,-0.094917818903923,-0.040429193526506]],[[0.014449087902904,0.019044674932957,0.020921168848872],[0.008445450104773,0.011504474096,0.023509658873081],[0.031438771635294,-0.051233600825071,-0.01447722222656]],[[0.04522567614913,-0.014906282536685,-0.0077329762279987],[-0.043169155716896,0.031266495585442,0.061030324548483],[-0.053606070578098,-0.010914212092757,0.01689426228404]],[[0.069633230566978,0.047774959355593,-0.011362525634468],[-0.0097638787701726,-0.049949463456869,0.02938780747354],[0.027503840625286,0.0047639845870435,0.0041992678306997]],[[0.065411247313023,0.018162757158279,0.066697165369987],[-0.017737122252584,0.0079282745718956,-0.0037519610486925],[0.019651371985674,-0.045126996934414,0.035300083458424]],[[0.0095127262175083,0.065457053482533,-0.01099674962461],[0.0024004236329347,-0.009448254480958,0.094607926905155],[0.05559067428112,0.061076179146767,0.008169068954885]],[[0.017975300550461,0.091786541044712,0.045407857745886],[-0.05766598880291,0.00018097956490237,-0.057111959904432],[-0.04701454564929,0.020863976329565,0.011165174655616]],[[0.0074822357855737,-0.091929912567139,0.0681491792202],[-0.033063296228647,-0.0093277972191572,0.051794223487377],[-0.072892874479294,0.0089011387899518,0.0039197457954288]],[[-0.033667057752609,-0.030901500955224,-0.00040351803181693],[0.031414736062288,0.014515113085508,-0.014663710258901],[0.032783638685942,0.01976777985692,0.01654689386487]],[[-0.027851194143295,-0.03733117133379,0.016756122931838],[-0.081467553973198,-0.03320824727416,-0.0033512795343995],[0.0015712177846581,0.02578117698431,-0.014648522250354]],[[-0.086961768567562,0.018778881058097,0.0036382544785738],[-0.011634401977062,0.014925323426723,-0.029925215989351],[-0.0051677161827683,-0.0070158899761736,-0.018592512235045]],[[0.03667826578021,-0.015898814424872,-0.018407866358757],[-0.020113054662943,0.021459255367517,-0.011264706961811],[0.053850460797548,-0.0018035019747913,0.03236236423254]],[[-0.0092232618480921,0.016102153807878,0.03269699588418],[-0.044887222349644,-0.062426779419184,-0.00698187854141],[0.039295431226492,0.0017253418918699,-0.027709722518921]],[[-0.063062772154808,-0.021909510716796,-0.010236064903438],[0.02334163710475,-0.0067918035201728,0.022924216464162],[0.043126631528139,-0.02477446384728,0.11064016819]],[[0.000959676457569,-0.048601608723402,-0.0041975891217589],[0.00036081604775973,-0.029485408216715,0.039803441613913],[-0.028052691370249,0.0034364429302514,-0.04043510183692]],[[-0.020246177911758,-0.029062760993838,-0.0072538140229881],[-0.011365970596671,0.011733625084162,0.077591381967068],[-0.025378530845046,0.049900013953447,0.0564174503088]],[[0.0026259555015713,-0.064687564969063,-0.020379995927215],[-0.065294086933136,0.056065104901791,-0.022349053993821],[0.010143776424229,-0.018241224810481,-0.048020675778389]],[[-0.015921145677567,0.010731106624007,-0.0060671209357679],[0.011232567019761,0.022057861089706,0.0048524672165513],[-0.046201501041651,-0.062478605657816,-0.04764998331666]],[[0.024735575541854,-0.003175878431648,0.029664410278201],[0.025376334786415,-0.021119650453329,0.099242031574249],[0.0036842576228082,-0.0067989458329976,0.065144382417202]],[[0.054693572223186,0.013309177011251,-0.065498329699039],[0.042287394404411,0.041145488619804,0.0042436691001058],[0.022727752104402,0.02166498079896,0.046968407928944]],[[0.014158654026687,-0.054691586643457,0.0091473264619708],[0.068000353872776,-0.092332169413567,0.039181396365166],[-0.033941946923733,0.011155592277646,0.018561944365501]],[[0.0045541482977569,-0.0084275454282761,0.014733091928065],[0.035782795399427,0.054145354777575,0.0074170920997858],[-0.012498230673373,0.036563407629728,0.01836453564465]],[[-0.00066732382401824,-0.075476713478565,-0.026555564254522],[-0.0027289655990899,-0.040361199527979,-0.028257187455893],[0.046570736914873,0.061969038099051,-0.054566275328398]],[[0.011656057089567,0.069820910692215,-0.038651064038277],[0.0092642400413752,0.043447870761156,-0.021359005942941],[-0.086128182709217,-0.023486176505685,0.0011155784595758]],[[0.015142775140703,-0.05013682320714,0.052074279636145],[0.0084850415587425,0.068455815315247,0.0035692260134965],[0.0062626809813082,0.066599734127522,0.034756034612656]],[[-0.070998974144459,-0.039395716041327,-0.056438460946083],[-0.090407833456993,0.011298059485853,-0.045895360410213],[-0.046299003064632,-0.043472982943058,-0.087491400539875]],[[0.056003343313932,-0.039282575249672,0.024420807138085],[0.056040346622467,0.030901793390512,0.040399104356766],[-0.017012629657984,-0.006025314796716,-0.019494399428368]],[[-0.028673738241196,-0.076099537312984,-0.018604664131999],[0.068052165210247,-0.065350458025932,-0.019277274608612],[0.02693334966898,-0.071220137178898,-0.016611430794001]],[[-0.044079057872295,0.10926308482885,0.020492332056165],[-0.044868644326925,-0.0045249378308654,-0.023203667253256],[-0.0017128332983702,-0.001184465480037,-0.064461968839169]],[[-0.027586527168751,-0.024593630805612,-0.035374198108912],[0.031574063003063,-0.044145103543997,-0.027034459635615],[-0.067205123603344,-0.017657399177551,-0.016382174566388]],[[-0.026150763034821,-0.058659065514803,-0.0171874538064],[0.031635142862797,-0.0084526780992746,0.0085395565256476],[0.0044991234317422,0.089739970862865,0.04771463945508]],[[0.031212011352181,-0.027727019041777,0.030963724479079],[-0.10929501056671,0.029002586379647,0.0279202722013],[-0.0081030791625381,-0.012491644360125,0.085031643509865]],[[0.027283556759357,0.0096461493521929,-0.043572071939707],[0.051434881985188,0.045290261507034,0.031574346125126],[0.0067898663692176,0.03881398960948,0.029552591964602]],[[0.019616449251771,-0.009779111482203,-0.028878370299935],[-0.04868395626545,0.021027162671089,-0.048316683620214],[-0.01834362745285,0.03027780354023,0.04417635127902]],[[0.050230830907822,-0.049380149692297,0.02568319067359],[-0.11529538035393,0.080349415540695,0.041846685111523],[0.042420879006386,0.010671147145331,-0.003525105305016]],[[-0.018298106268048,0.061675731092691,0.015395613387227],[-0.0097182421013713,-0.0018865450983867,0.00018056281260215],[-0.027099112048745,0.025359746068716,-0.030166584998369]],[[0.070828378200531,-0.057949088513851,0.010934472084045],[-0.012941881082952,0.038265727460384,0.015830753371119],[0.022983012720942,0.0047897039912641,0.0083797164261341]],[[-0.040109250694513,-0.0280452221632,0.020929088816047],[0.018453577533364,0.040309883654118,0.0167007856071],[-0.0039294082671404,0.0435835942626,-0.013803302310407]],[[0.012614483013749,-0.046923227608204,-0.015540878288448],[-0.020496340468526,0.042120896279812,-0.035720512270927],[0.018534855917096,-0.0085671506822109,-0.050466619431973]],[[0.010809340514243,-0.017997978255153,-0.022864973172545],[-0.026414616033435,0.038819625973701,-0.054258722811937],[-0.036846846342087,0.028263038024306,0.006430393550545]],[[-0.076986104249954,-0.0098105370998383,0.0096637820824981],[0.032539144158363,0.013802745379508,-0.024223029613495],[0.033397454768419,0.018605044111609,-0.051279589533806]],[[0.075459472835064,0.038797188550234,0.027632156386971],[-0.040955007076263,0.022748600691557,-0.0085069835186005],[-0.005547552369535,0.025764042511582,0.023531595245004]],[[-0.0033943951129913,0.013624151237309,0.036989830434322],[-0.081583648920059,-0.011067576706409,-0.021740365773439],[0.019322434440255,-0.0069601419381797,0.063965477049351]],[[-0.10902582108974,0.0059454971924424,0.048151414841413],[0.031937509775162,-0.016119526699185,-0.030124951153994],[0.055430993437767,-0.0018839291296899,0.051227185875177]],[[-0.056123275309801,0.035744454711676,-0.073176637291908],[0.034075569361448,0.084499873220921,-0.043491680175066],[0.0047945152036846,0.043604832142591,-0.01842737942934]],[[-0.017370272427797,0.071714028716087,0.023455346003175],[0.038564573973417,-0.06151107698679,-0.0078353984281421],[0.012577920220792,-0.0018341649556533,0.004753575194627]],[[0.073459260165691,0.013635845854878,0.042113039642572],[0.051732204854488,-0.025449151173234,0.025967266410589],[-0.026624776422977,-0.042406145483255,0.020855359733105]],[[0.076732084155083,0.042503107339144,0.046268936246634],[-0.044479466974735,0.059318114072084,0.023653434589505],[0.040931191295385,-0.021708633750677,0.08269988745451]],[[-0.035184476524591,-0.048143234103918,-0.0084927063435316],[-0.02559582144022,-0.017812186852098,-0.019657704979181],[-0.044229220598936,0.0039914711378515,0.063994705677032]],[[0.035395871847868,0.023223271593451,-0.010800017975271],[-0.02480803988874,0.00020829141431022,0.0061518275178969],[0.030156994238496,-0.0067398077808321,-0.0090941544622183]],[[-0.020928852260113,-0.0031715224031359,0.017778759822249],[-0.0024238773621619,-0.032870434224606,-0.014718865975738],[-0.036600898951292,-0.020715704187751,0.028320347890258]],[[0.04716693982482,-0.038364768028259,-0.022791650146246],[-0.026877451688051,0.017335822805762,0.026812691241503],[-0.012299153022468,-0.026499105617404,-0.059768110513687]],[[0.010295781306922,-0.0014174369862303,-0.064385481178761],[0.0098182680085301,0.049586530774832,0.03662733733654],[0.0081172315403819,-0.013394603505731,0.091099835932255]],[[0.026702547445893,-0.049084406346083,0.011898821219802],[-0.0016562227392569,-0.022105738520622,0.044731523841619],[0.046129956841469,-0.010718840174377,0.045520029962063]],[[0.0075209392234683,-0.031029436737299,0.0014073421480134],[0.027310576289892,-0.086143314838409,0.078722387552261],[0.027433628216386,-0.082394331693649,-0.0045024533756077]],[[-0.061960309743881,0.0038065093103796,-0.035227261483669],[0.038372069597244,0.030549708753824,0.035945996642113],[0.0099052470177412,-0.069101981818676,-0.0037951993290335]],[[0.05047445371747,-0.018084643408656,-0.068748213350773],[-0.0050619728863239,-0.036594804376364,0.060810811817646],[-0.017988851293921,0.01500775758177,0.077982775866985]],[[0.0087463017553091,0.011378856375813,0.0024119657464325],[0.013448663055897,0.0048754988238215,-0.041622165590525],[-0.018740098923445,0.002498178742826,0.038443475961685]],[[-0.059524081647396,0.02192279137671,-0.027478147298098],[0.038764901459217,0.025227719917893,0.0068502021022141],[-0.031896281987429,-0.033729154616594,-0.013915260322392]],[[0.033845610916615,0.046870615333319,0.05617643520236],[0.00080970954149961,-0.002739385003224,0.025347348302603],[0.051463928073645,0.015534109435976,-0.034227192401886]],[[0.0075161838904023,-0.022291278466582,0.017193999141455],[0.052230052649975,-0.035447154194117,-0.01385082770139],[0.0027661435306072,-0.00022923933283892,0.013614717870951]],[[-0.0012436008546501,-0.042387556284666,0.048047423362732],[-0.00066826463444158,0.014500662684441,-0.0023586978204548],[-0.032060969620943,0.038313645869493,-0.0069355629384518]],[[-0.025584207847714,-0.10651809722185,-0.079868890345097],[0.025884410366416,-0.029521206393838,0.03680843859911],[0.0029243733733892,-0.0050249705091119,0.0014013997279108]],[[-0.047421734780073,0.068807244300842,0.0061194985173643],[0.028320513665676,-0.049917589873075,0.033381689339876],[-0.001653992338106,0.072489820420742,-0.062521405518055]],[[-0.029971050098538,0.063410513103008,0.055564418435097],[-0.058458410203457,0.029385630041361,-0.062042191624641],[0.031967144459486,0.10005342960358,-0.02763151191175]],[[0.012374730780721,-0.029253248125315,0.038616627454758],[0.053639054298401,-0.0075548267923295,0.0019236534135416],[0.011050760746002,0.010014384053648,-0.14451639354229]],[[-0.018950937315822,0.05919524282217,0.077997453510761],[-0.072344623506069,0.03049036860466,-0.031682882457972],[-0.035967133939266,0.046027150005102,0.028425164520741]],[[0.041459798812866,-0.046741839498281,-0.031499054282904],[-0.0091609032824636,-0.0058805514127016,-0.045883670449257],[-0.045792225748301,-0.026697851717472,-0.007944829761982]],[[0.051338210701942,0.020724501460791,0.028985505923629],[-0.031497541815042,0.023458678275347,0.057876821607351],[0.019005630165339,0.011905272491276,-0.031607456505299]],[[0.02223352715373,-0.080056965351105,0.020117554813623],[0.058068141341209,-0.013296973891556,-0.045280806720257],[-0.064271293580532,-0.05733847618103,0.099052645266056]],[[0.052489034831524,-0.060365084558725,-0.029536247253418],[-0.030806994065642,-0.013263616710901,-0.011967197060585],[0.035364203155041,0.063777968287468,-0.02000436745584]],[[-0.011017049662769,-0.088933162391186,0.02136554569006],[-0.0008683311752975,0.028018780052662,-0.005894270259887],[0.021699249744415,0.033278465270996,-0.063437476754189]],[[0.022574773058295,-0.075017929077148,-0.0058098384179175],[-0.021179426461458,-0.042339071631432,0.098347306251526],[-0.025008607655764,-0.0075975474901497,-0.015932781621814]],[[-0.032937236130238,0.089909374713898,-0.01646576076746],[-0.011739069595933,-0.053684014827013,-0.052166596055031],[0.050914756953716,0.016459241509438,-0.00071882584597915]],[[-0.0081664165481925,0.0061753122135997,-0.04061134532094],[0.091737739741802,-0.066807448863983,-0.044802635908127],[0.043022826313972,-0.10948538035154,0.042233690619469]],[[0.029467320069671,0.04353179037571,0.021489994600415],[-0.052192956209183,0.069069743156433,0.031829264014959],[-0.054753385484219,-0.0214464366436,0.0067739435471594]],[[-0.034411787986755,-0.012406745925546,0.016759445890784],[-0.061301194131374,-0.025290016084909,-0.0046813287772238],[-0.013313934206963,0.0060946349985898,0.032506052404642]],[[0.054633248597383,-0.042675212025642,0.070465177297592],[-9.7717624157667e-05,-0.067838042974472,-0.066549427807331],[0.02921356447041,-0.045567069202662,-0.0048525668680668]],[[0.050669588148594,0.0085264816880226,-0.0040993415750563],[-0.013625958003104,-0.0096144750714302,0.055726386606693],[0.019725494086742,-0.0057943966239691,-0.029685096815228]],[[-0.053980682045221,0.026310499757528,0.029479084536433],[0.0058387354947627,0.092439360916615,0.022848887369037],[-0.019015464931726,-0.023622157052159,0.01600594446063]],[[-0.032377257943153,-0.044062115252018,0.038850914686918],[0.015498962253332,-0.023304471746087,0.0418786033988],[-0.066879205405712,-0.030917268246412,-0.027190556749701]],[[-0.030760342255235,-0.076628975570202,-0.093811139464378],[-0.008300906047225,0.031955845654011,-0.011713949032128],[0.031760025769472,-0.038059290498495,-0.027734909206629]],[[0.013250553049147,0.00066720007453114,-0.064717791974545],[0.010175406001508,-0.020969850942492,-0.057709157466888],[-0.043817318975925,0.007143197581172,0.077129878103733]],[[-0.019927794113755,0.02682675793767,0.079816401004791],[0.0038916943594813,-0.026994647458196,-0.068646512925625],[0.088204339146614,-0.0057217464782298,0.00065942294895649]],[[0.050965301692486,-0.02850598283112,0.098026387393475],[-0.045455973595381,0.054446786642075,-0.0099694803357124],[-0.016953207552433,-0.012079858221114,-0.078071743249893]],[[0.032137166708708,-0.056759238243103,-0.0014807663392276],[-0.053367976099253,0.010363615117967,-0.015155005268753],[0.045649446547031,-0.025746863335371,0.03726576641202]],[[0.0058016204275191,-0.033474817872047,0.0091262524947524],[0.056979436427355,-0.063551634550095,-0.022137049585581],[0.014330144040287,0.017957933247089,-0.047863479703665]],[[-0.0088775428012013,0.0006468269857578,-0.012688057497144],[0.015048960223794,-0.027381151914597,-0.054151345044374],[0.0023428564891219,0.027397638186812,0.017126290127635]],[[-0.06318748742342,-0.022755309939384,0.034454882144928],[0.06979762762785,0.0039284895174205,-0.023021118715405],[-0.016720021143556,-0.017779024317861,0.037142865359783]],[[0.025481011718512,0.023525523021817,0.01662989705801],[-0.029240636155009,0.00082653132267296,-0.016700372099876],[-0.04914828389883,-0.01975305378437,-0.010800635442138]],[[0.040739938616753,0.036133721470833,-0.019769057631493],[-0.032726921141148,0.059140134602785,-0.013214482925832],[-0.02699108608067,0.040824256837368,-0.042665287852287]],[[-0.0026668964419514,0.12054503709078,0.049077294766903],[0.1044575497508,0.018378479406238,0.042832836508751],[-0.087832622230053,0.045230954885483,0.043823517858982]],[[-0.035005748271942,-0.016344647854567,0.016832493245602],[0.061515111476183,-0.0054242573678493,0.073943570256233],[0.038932256400585,0.034397177398205,0.044241409748793]],[[0.024179562926292,-0.010046039707959,0.02013530395925],[0.010150316171348,-0.031280443072319,-0.0032157357782125],[0.015979869291186,0.0047607771120965,-0.022210795432329]],[[0.014067384414375,-0.00082825007848442,0.073780827224255],[0.041595857590437,-0.0080831330269575,0.0096404915675521],[0.0040628365240991,0.052346631884575,0.00030035417876206]],[[0.045418959110975,-0.023505246266723,0.011771670542657],[-0.021009447053075,0.052640985697508,-0.02774553373456],[0.028364785015583,-0.065317548811436,0.033045347779989]],[[-0.017580656334758,-0.015676049515605,0.073447570204735],[0.024382635951042,-0.022354118525982,0.059116687625647],[0.073746748268604,-0.01967304199934,-0.01514657959342]],[[-0.043913904577494,-0.036226816475391,-0.032709829509258],[0.019632635638118,-0.030372783541679,-0.1206253990531],[0.006620027590543,0.020719103515148,-0.01325424015522]],[[0.037950713187456,-0.00027554359985515,0.037548545747995],[-0.0384153239429,0.022810554131866,-0.021601594984531],[-0.013488476164639,0.028657589107752,0.00067797547671944]],[[0.040511928498745,-0.015297633595765,-0.048626080155373],[0.0050736339762807,-0.04432363435626,0.015878200531006],[-0.017013389617205,-0.011845921166241,0.00070114224217832]],[[0.033432852476835,-0.024269105866551,-0.070424176752567],[-0.027482863515615,0.036775223910809,-0.078051440417767],[0.034222159534693,0.0057403240352869,-0.026075022295117]],[[0.0090500060468912,-0.002302166307345,-0.043462127447128],[-0.064945235848427,0.039706375449896,-0.022564606741071],[-0.0054474696516991,-0.015949716791511,0.0018156479345635]],[[-0.010632012039423,0.032872505486012,-0.0016697474056855],[0.065736889839172,-0.0087220910936594,-0.037782095372677],[0.0084870532155037,-0.012327944859862,0.0064066695049405]],[[-0.045409128069878,0.0083535118028522,0.010051832534373],[0.011588940396905,0.046492520719767,0.022305782884359],[0.037747245281935,0.0057836212217808,-0.11768931150436]],[[-0.058232087641954,0.015367298386991,0.021356023848057],[-0.047010216861963,-0.010520945303142,-0.034797057509422],[-0.07657902687788,0.0128328576684,0.026868272572756]],[[-0.021248923614621,0.021341199055314,0.060758378356695],[-0.011877090670168,0.044097576290369,-0.0041010417044163],[0.058454550802708,0.027881763875484,-0.0099941361695528]],[[-0.017067454755306,-0.019851669669151,0.01182032097131],[-0.013328555040061,-0.041654732078314,0.060317348688841],[0.0012567571830004,-0.10554368793964,-0.026914549991488]],[[0.007148617412895,-0.076611623167992,-0.043719727545977],[0.014822823926806,0.040682800114155,0.07081726193428],[-0.032751359045506,0.063530579209328,0.025035055354238]],[[0.053362566977739,0.02292300760746,0.043038330972195],[-0.037510305643082,0.025141937658191,-0.015845941379666],[0.0025821886956692,0.0067268330603838,-0.016929848119617]],[[0.013324905186892,-0.019486438483,0.01606135815382],[0.034264925867319,-0.056697282940149,-0.014467108994722],[-0.037453401833773,-0.052589613944292,0.018270621076226]]],[[[0.01706637442112,-0.024983068928123,0.0024160139728338],[-0.009175656363368,-0.031038926914334,0.021341828629375],[-0.063278324902058,-0.006180674303323,0.0085697695612907]],[[0.089257515966892,0.069851003587246,0.018478706479073],[-0.0086610149592161,0.046668794006109,-0.069516479969025],[-0.027852576225996,-0.029011530801654,0.007155395578593]],[[0.0014916836516932,-0.035749472677708,-0.0079142218455672],[-0.035697914659977,-0.024044793099165,0.014688340947032],[0.056113786995411,-0.0046640201471746,-0.04448352009058]],[[0.016208942979574,-0.055084675550461,-0.036194290965796],[0.0071278545074165,0.084955379366875,0.012507718987763],[-0.078169345855713,0.057386063039303,0.064535558223724]],[[0.0085292644798756,0.022761579602957,0.0029587401077151],[0.071327224373817,0.0039961878210306,-0.017728488892317],[-0.00056366494391114,0.049823973327875,0.0042967568151653]],[[0.037584215402603,0.024955173954368,-0.0054726283997297],[-0.051395796239376,-0.0010694561060518,0.034827586263418],[0.02932651899755,0.054085101932287,0.02472367323935]],[[0.0084320902824402,0.037755109369755,0.01273587718606],[0.02080418355763,-0.051056854426861,-0.045701213181019],[-0.030194705352187,-0.01967503502965,0.012656434439123]],[[0.006065858528018,-0.065683498978615,-0.020598484203219],[0.03640491142869,0.013738405890763,-0.0034807317424566],[-0.029063105583191,0.0070321257226169,0.0095081878826022]],[[0.013479823246598,0.033157762140036,-0.00035321537870914],[-0.054192312061787,0.019015038385987,0.027843661606312],[0.0055631548166275,-0.062105987221003,-0.067466795444489]],[[0.020450873300433,-0.0247921962291,0.037614233791828],[-0.07397149503231,-0.020476220175624,-0.020506696775556],[0.07107799500227,0.007462537381798,-0.0025476082228124]],[[-0.037323087453842,-0.014467442408204,0.023913839831948],[0.00019311904907227,0.06937350332737,0.040733870118856],[-0.028320344164968,-0.066410206258297,-0.0043135364539921]],[[-0.040680184960365,0.025384411215782,0.0069698286242783],[0.10335509479046,-0.00023726114886813,-0.021841708570719],[-0.046143490821123,-0.007154923863709,-0.0092850821092725]],[[0.034738931804895,-0.025890542194247,-0.039010178297758],[0.019079562276602,0.047179121524096,-0.03335152938962],[-0.001075014937669,-0.047821439802647,-0.0078290291130543]],[[0.013293009251356,-0.03393742069602,0.014703892171383],[0.012005250900984,0.021498495712876,-0.055078707635403],[0.031063659116626,0.067555233836174,-0.029574409127235]],[[-0.00086605869000778,0.025348035618663,0.01157003454864],[-0.028410654515028,0.070585355162621,0.053655635565519],[-0.078850716352463,0.057076193392277,0.05135727673769]],[[0.036633457988501,0.0011037009535357,0.0047200480476022],[-0.036086335778236,0.033211413770914,-0.0030526935588568],[0.026021229103208,-0.077080652117729,0.003796792589128]],[[0.014366196468472,-0.052448701113462,0.022264176979661],[0.017771035432816,0.048294175416231,-0.015041437000036],[0.008699381724,-0.022925147786736,-0.012451809830964]],[[0.010595045052469,-0.0029118976090103,-0.035965755581856],[0.0048061199486256,0.027971809729934,0.039301555603743],[-0.03325130045414,0.026152865961194,-0.050314605236053]],[[0.019212305545807,0.0069145984016359,-0.0053631006740034],[0.031421653926373,0.041535314172506,-0.063589081168175],[0.038236122578382,0.027786169201136,-0.086618714034557]],[[-0.0065049203112721,-0.036889191716909,0.018569776788354],[0.031078666448593,0.055942490696907,-0.049329083412886],[0.035670939832926,0.0058168452233076,0.022647682577372]],[[0.02162704244256,-0.027205266058445,0.03549063205719],[0.063030831515789,-0.029729545116425,-0.00013317952107172],[-0.007943389005959,0.11297377943993,0.026884654536843]],[[0.035746593028307,-0.031521439552307,-0.036234151571989],[0.063408747315407,0.032953098416328,0.031775131821632],[0.0049669886939228,0.049393635243177,-0.076664000749588]],[[0.029099781066179,0.037908907979727,-0.0055750263854861],[-0.076037898659706,-0.04272535815835,0.069531977176666],[0.040710050612688,0.014942516572773,-0.023771481588483]],[[0.0012206034734845,-0.035235214978456,-0.0087268929928541],[0.034415170550346,0.12362829595804,0.065298341214657],[-0.055111899971962,-0.026397705078125,-0.077414475381374]],[[-0.080385603010654,-0.040384490042925,0.072850741446018],[0.015465770848095,0.010111653245986,-0.0039458954706788],[-0.0015532199759036,-0.015952983871102,0.00034267068258487]],[[0.041760008782148,-0.059541810303926,0.016040194779634],[0.022338401526213,-0.044573415070772,0.050994180142879],[0.014039809815586,0.031691145151854,-0.0090689156204462]],[[-0.016867261379957,0.057244468480349,-0.047853995114565],[-0.058613173663616,0.0044983653351665,0.00085670978296548],[0.073107101023197,0.0089721316471696,-0.032048046588898]],[[0.034574002027512,0.036932598799467,-0.031860630959272],[-0.055179283022881,0.025148103013635,-0.0064721335656941],[0.010100597515702,0.0023047293070704,0.031484156847]],[[0.02903776243329,-0.012147770263255,-0.072265028953552],[0.049849342554808,0.023860052227974,0.033811308443546],[0.0019011517288163,-0.036008831113577,0.065627083182335]],[[-0.021207761019468,-0.023186273872852,0.0001840718468884],[-0.016718776896596,0.050531581044197,0.039133872836828],[0.017326699569821,-0.051621962338686,0.019384959712625]],[[-0.016062101349235,0.041048064827919,0.022793972864747],[-0.093754097819328,0.036101803183556,-0.0055626486428082],[-0.0020374059677124,-0.057096492499113,0.01959484629333]],[[-0.0083076478913426,-0.0047537954524159,0.038577146828175],[0.010106986388564,-0.044358961284161,0.051233798265457],[-0.018090482801199,0.071945533156395,0.010636212304235]],[[-0.012689975090325,0.03990676254034,-0.019408578053117],[-0.058900695294142,0.03636060655117,-0.015272601507604],[0.0015266122063622,-0.024879632517695,0.018172377720475]],[[0.00013977166963741,0.087963975965977,-0.017992513254285],[6.1579725297634e-05,0.059662092477083,0.046661842614412],[-0.13399156928062,0.017016943544149,-0.014338837005198]],[[-0.0076223141513765,0.0061066653579473,0.066587463021278],[-0.023093249648809,-0.018282374367118,-0.047538194805384],[0.053864743560553,0.046796929091215,-0.016972135752439]],[[0.010013633407652,-0.03163255751133,-0.042784560471773],[-0.032426010817289,0.014488882385194,-0.0077454382553697],[-0.04306972399354,0.15466307103634,-0.023205967620015]],[[0.078678101301193,-0.04347687587142,-0.042165398597717],[-0.055386118590832,0.001451852498576,0.033611454069614],[0.039598539471626,0.015942120924592,0.0047022523358464]],[[0.0022699607070535,-0.01005719229579,0.04080768674612],[-0.0090802386403084,-0.067920617759228,-0.021568993106484],[0.0039208419620991,0.041464790701866,0.03516423329711]],[[0.069303967058659,-0.012448528781533,0.023364365100861],[0.0078292423859239,-0.0070798392407596,-0.0032966926228255],[-0.0080761360004544,-2.1654705051333e-07,-0.0064686159603298]],[[-0.0071417861618102,0.05164410546422,-0.024832237511873],[0.022351449355483,-0.038572374731302,-0.028719430789351],[-0.030193259939551,0.021288845688105,-0.0072663663886487]],[[0.01954703964293,-0.0089354710653424,-0.022964751347899],[0.034090012311935,-0.041055243462324,-0.014758407138288],[-0.0019064635271206,-0.001308390754275,0.024074867367744]],[[-0.013810375705361,0.012168047949672,-0.0090907011181116],[-0.011174590326846,0.017770329490304,0.030508691444993],[-0.022219967097044,-0.024187795817852,0.019986543804407]],[[-0.086554042994976,-0.018673134967685,0.034829523414373],[-0.027452373877168,0.0083399629220366,-0.043201800435781],[0.076328158378601,-0.066033937036991,-0.010262534953654]],[[0.023352460935712,0.034314457327127,0.0012727172579616],[0.044420152902603,0.019806820899248,0.04380564764142],[-0.046898923814297,0.021966610103846,0.049792505800724]],[[-0.015233912505209,0.031138019636273,0.016310321167111],[-0.027055853977799,-0.0015174840809777,-0.022087601944804],[-0.013455871492624,0.034489270299673,-0.0065207914449275]],[[-0.030842630192637,-0.003431920427829,-0.0076427650637925],[0.036749582737684,-0.05038932338357,0.084874868392944],[-0.069110341370106,0.012172050774097,0.073058195412159]],[[0.032706681638956,0.026918126270175,0.057662073522806],[-0.0004496356123127,0.037505302578211,-0.048062693327665],[0.014344339258969,-0.04098404943943,0.029856096953154]],[[0.015917908400297,-0.0060676685534418,-0.028977662324905],[-0.026781490072608,-0.15924242138863,-0.076228603720665],[0.0091634495183825,0.1222909912467,0.0064953328110278]],[[0.051251888275146,2.5434746930841e-05,-0.014602522365749],[-0.018551306799054,0.0068793105892837,0.0040259663946927],[0.013791868463159,-0.10166507959366,0.00029319283203222]],[[0.033432502299547,0.030429610982537,-0.0039921714924276],[-0.034307353198528,0.01398694049567,-0.022561436519027],[-0.0094390884041786,0.051975261420012,0.039923142641783]],[[-0.0046624932438135,-0.010455587878823,-0.012760170735419],[-0.0017372705042362,-0.010516824200749,0.02378917299211],[-0.0086504984647036,0.012795109301805,-0.054939601570368]],[[-0.00029669460491277,-0.029394567012787,0.019973015412688],[0.01118943002075,-0.024844685569406,-0.0037793430965394],[0.0097879664972425,-0.067447058856487,-0.056755535304546]],[[-0.019260209053755,0.036300361156464,-0.06376539170742],[-0.00093255774118006,-0.0061964341439307,-0.045803058892488],[-0.02756555378437,0.0522770434618,0.031093692407012]],[[0.03535969555378,-0.0080405157059431,-0.036290220916271],[-0.11551170796156,-0.077604576945305,0.013532493263483],[0.032467179000378,0.0722880885005,-0.0091818822547793]],[[0.024624729529023,-0.033715892583132,0.036673046648502],[-0.044985733926296,-0.00038335518911481,0.062434867024422],[-0.067139737308025,0.020623352378607,0.0031692788470536]],[[-0.039508488029242,0.0052605797536671,-0.016347164288163],[-0.020394619554281,0.017265485599637,-0.031527440994978],[0.00018956603889819,-0.034402851015329,-0.029056761413813]],[[0.01897451095283,-0.00091600575251505,-0.0086697144433856],[-0.032685503363609,0.034715514630079,-0.015331197530031],[0.016025202348828,-0.010376272723079,0.0066412556916475]],[[-0.072055459022522,-0.036078311502934,0.020432842895389],[0.029643651098013,0.054086048156023,-0.044329579919577],[0.088428243994713,0.090737946331501,-0.076338328421116]],[[-0.0093178106471896,-0.018259547650814,0.010394765995443],[-0.0097775012254715,-0.012361641973257,0.079932950437069],[0.038243267685175,-0.096960835158825,-0.01307094655931]],[[0.01249408069998,0.028925105929375,0.053583957254887],[0.046656608581543,-0.063565887510777,-0.020844366401434],[0.010243911296129,-0.026505803689361,0.021844292059541]],[[0.010432492941618,-0.0099636279046535,0.0072864792309701],[0.021743712946773,0.023777578026056,0.067151263356209],[-0.08153872191906,0.004842643160373,0.093810617923737]],[[-0.016251154243946,-0.040319081395864,0.065227046608925],[0.047059401869774,-0.022094851359725,0.04568001255393],[0.063562966883183,0.020146667957306,-0.12095958739519]],[[0.038757104426622,0.0058318614028394,0.02327779866755],[-0.036092426627874,-0.017602726817131,-0.045332085341215],[-0.012825459241867,-0.035763286054134,0.045101933181286]],[[-0.019339686259627,-0.00204400671646,0.09980221092701],[-0.01680969260633,0.016116896644235,-0.11689174920321],[0.016648810356855,0.081894621253014,-0.039025813341141]],[[-0.049163609743118,0.014848400838673,0.012106888927519],[-0.0013259637635201,0.011732757091522,0.0052232765592635],[0.0024256464093924,-0.059429723769426,0.016810609027743]],[[-0.03379774838686,-0.015735862776637,0.024447156116366],[0.029695816338062,0.054221902042627,-0.024197062477469],[0.0076475292444229,-0.028878586366773,0.015735939145088]],[[-0.0099000558257103,-0.0013031216803938,0.018861992284656],[0.0067270221188664,0.00042669067624956,-0.029956808313727],[-0.02487532235682,0.095565646886826,-0.010760116390884]],[[-0.068181797862053,0.013364423066378,-0.020719308406115],[-0.0144122838974,-0.029081838205457,0.029290221631527],[0.018954696133733,0.0060067623853683,-0.00038356144796126]],[[-0.088815473020077,0.0077826608903706,-0.033007714897394],[-0.0090477736666799,-0.012571246363223,-0.027690645307302],[-0.031403623521328,0.098820395767689,-0.027227506041527]],[[-0.041079211980104,-0.032649304717779,0.067388005554676],[-0.036591272801161,0.011186215095222,-0.047187644988298],[-0.058600753545761,0.027827434241772,0.0066096791997552]],[[-0.035597186535597,0.054182775318623,0.03344938158989],[-0.0097904847934842,0.0081666437909007,-0.032443549484015],[-0.024691041558981,0.046004384756088,0.041714563965797]],[[0.034717705100775,0.011725305579603,0.053158726543188],[0.028896557167172,0.014848900027573,0.00045885090366937],[0.015764262527227,-0.034580077975988,-0.091570608317852]],[[0.0031690599862486,0.0078976862132549,0.0030324137769639],[-0.11076138168573,0.053614668548107,0.053473688662052],[-0.043886464089155,0.06040520593524,0.049400355666876]],[[0.031903266906738,-0.0017350531416014,0.0010668694740161],[0.018558012321591,0.078754141926765,-0.067201465368271],[-0.040186926722527,0.023736126720905,0.025470966473222]],[[-0.039376221597195,0.018024345859885,0.026916105300188],[0.0094514340162277,0.0014375752070919,-0.0077850604429841],[-0.02634472027421,0.08289959281683,-0.022231470793486]],[[-0.079839065670967,0.033926919102669,-0.016859831288457],[0.0079255281016231,-0.03609860688448,-0.054885972291231],[0.0096235722303391,0.043809175491333,0.080042749643326]],[[0.017928324639797,-0.0030390108004212,-0.0097245248034596],[-0.042049508541822,-0.01121994946152,-0.022397503256798],[-0.094977371394634,-0.0021272299345583,0.038630172610283]],[[0.023638248443604,-0.033620499074459,-0.021630890667439],[0.015106382779777,-0.016996588557959,0.064085647463799],[0.014945453964174,-0.030645187944174,-0.0015829207841307]],[[0.02107697352767,0.0017124564619735,0.024044543504715],[0.090330399572849,-0.011791967786849,0.0099015524610877],[-0.037490971386433,-0.017650919035077,-0.026972580701113]],[[-0.01111345179379,-0.019183488562703,-0.0073575400747359],[0.0092143286019564,-0.038835030049086,-0.020687976852059],[0.047105774283409,-0.077175907790661,0.0055409856140614]],[[0.009546834975481,-0.059412769973278,0.03555803373456],[0.021064000204206,-0.054296236485243,-0.018218982964754],[0.040448687970638,-0.017699299380183,-0.02012175694108]],[[-0.0089357858523726,-0.032595049589872,0.059287074953318],[0.019986839964986,0.066956028342247,0.021824713796377],[0.0046448591165245,-0.0014626528136432,-0.00067551917163655]],[[0.043520785868168,0.0059416629374027,-0.015941832214594],[-0.070405967533588,-0.010340755805373,0.0021407853346318],[0.046288002282381,-0.014867451973259,0.0066260281018913]],[[-0.0047184280119836,0.017662344500422,0.025753691792488],[0.016443928703666,-0.0087576434016228,-0.0039730183780193],[-0.030714118853211,0.003021732205525,-0.013023995794356]],[[0.034066196531057,0.032559733837843,0.017090199515224],[-0.026774657890201,-0.043613627552986,0.025092802941799],[0.053375847637653,-0.03003066778183,0.0091159008443356]],[[-0.035224255174398,-0.1067893654108,0.047646082937717],[-0.031415671110153,0.069246657192707,0.0054170382209122],[0.020976293832064,0.012511791661382,-0.036403585225344]],[[-0.04122282192111,0.040161222219467,0.0101926503703],[0.0052907895296812,-0.025768633931875,0.025341134518385],[0.029294740408659,-0.044886916875839,-0.042910423129797]],[[0.016802506521344,-0.0057441112585366,-0.034586969763041],[-0.032582487910986,0.0257309358567,0.013513840734959],[-0.028092812746763,0.054696526378393,0.020319288596511]],[[0.030797181650996,0.05297526717186,0.055556446313858],[0.0026496222708374,-0.024393448606133,-0.033003188669682],[0.034826293587685,-0.066476851701736,0.039048407226801]],[[0.014163914136589,-0.0095130624249578,-0.0091653512790799],[4.9040725571103e-05,0.027531379833817,0.026255222037435],[-0.052090555429459,0.046072572469711,0.054422996938229]],[[-0.053071223199368,0.008381387218833,0.044578820466995],[-0.037572991102934,0.057908233255148,0.058671671897173],[-0.051022604107857,-0.039987564086914,0.049684472382069]],[[0.0075656087137759,-0.046530839055777,-0.01989952288568],[-0.019494628533721,-0.027650527656078,0.086551241576672],[-0.001993328332901,0.062391929328442,0.10326915234327]],[[0.020625036209822,-0.04242105036974,-0.014685011468828],[-0.00060835829935968,0.08588907122612,0.033656485378742],[0.0025788941420615,-0.032075837254524,-0.00078062620013952]],[[0.056075394153595,-0.058795861899853,0.013573691248894],[-0.035670064389706,-0.045759152621031,-0.022718938067555],[0.020763613283634,0.030025567859411,0.0013932822039351]],[[-0.022342579439282,-0.015400399453938,0.028973154723644],[0.027050215750933,-0.039194457232952,-0.018043417483568],[0.014271892607212,-0.041142530739307,-0.01520779542625]],[[-0.016490779817104,-0.058644730597734,-0.054090779274702],[0.064862765371799,0.046318087726831,0.026383385062218],[0.0019764879252762,0.0098504992201924,0.010654709301889]],[[0.0072226948104799,0.038168732076883,0.040463007986546],[0.031379364430904,0.020633174106479,-0.059201594442129],[-0.026236185804009,-0.078102260828018,0.046850848942995]],[[0.050732724368572,-0.028355188667774,-0.025707414373755],[-0.021338388323784,-0.00091236300067976,0.05832589790225],[-0.020867429673672,0.067280933260918,0.0037816478870809]],[[0.040446229279041,-0.047651380300522,-0.0055627478286624],[-0.051415257155895,-0.020253280177712,0.024457214400172],[0.039199274033308,0.014191404916346,-0.044912446290255]],[[0.011223215609789,0.03149500861764,-0.0094744628295302],[-0.032433722168207,-0.10970636457205,0.010284347459674],[-0.060464229434729,0.057637587189674,0.046197883784771]],[[0.030924310907722,0.019999142736197,-0.070963576436043],[0.084576971828938,-0.030807815492153,0.014485253952444],[-0.091020621359348,-0.019314466044307,0.031296674162149]],[[-0.05488295853138,-0.0078402617946267,0.033148199319839],[-0.090220175683498,0.0064056157134473,0.054648749530315],[-0.067707128822803,0.070757009088993,0.046525247395039]],[[-0.031022068113089,-0.0042829960584641,0.03631280362606],[0.065448403358459,-0.026167148724198,0.031747933477163],[-0.007562093436718,-0.0071273911744356,0.035292431712151]],[[0.036040302366018,0.066122025251389,0.073940016329288],[-0.066533662378788,0.0070775835774839,0.0096056424081326],[-0.0097245527431369,0.040039524435997,0.026692235842347]],[[0.0027198477182537,-0.021821362897754,-0.016818286851048],[-0.015663681551814,-0.015806250274181,-0.01851774379611],[0.077310219407082,0.0027846160810441,0.041054628789425]],[[-0.031243400648236,-0.052313908934593,-0.015128349885345],[0.031930088996887,-0.0039736102335155,-0.0017789355479181],[-0.033560253679752,0.040800336748362,-0.020792612805963]],[[0.019163951277733,-0.00077547290129587,-0.035821713507175],[-0.015818007290363,0.029957786202431,0.0046346429735422],[0.019463609904051,0.04961371421814,-0.019030833616853]],[[-0.001186800072901,-0.010003209114075,0.064549349248409],[0.027831137180328,0.012058981694281,-0.039825566112995],[-0.043771896511316,-0.013138041831553,-0.043025348335505]],[[0.020719660446048,-0.025866353884339,-0.026704164221883],[-0.0077807898633182,-0.033285792917013,-0.0068467645905912],[-0.034811854362488,0.0051636332646012,0.021907398477197]],[[0.036243941634893,0.04028208553791,-0.037213142961264],[-0.018037974834442,-0.064374327659607,0.058730479329824],[-0.052357260137796,-0.051632139831781,-0.011415369808674]],[[0.033062130212784,-0.062058292329311,-0.052207168191671],[-0.020538315176964,-0.062019091099501,0.010071378201246],[-0.051466424018145,-0.14444486796856,-0.095413379371166]],[[0.0094835814088583,-0.018485277891159,-0.043610922992229],[0.040243614464998,0.029274689033628,0.081506684422493],[-0.059953704476357,0.024243788793683,0.020507493987679]],[[0.0011532481294125,0.0033758480567485,-0.0079719144850969],[0.034800857305527,-0.020843839272857,0.010959695093334],[-0.034272063523531,-0.040458187460899,0.10381174087524]],[[-0.061988446861506,-0.0033994533587247,0.012681708671153],[-0.036961484700441,0.01470804028213,-0.021078294143081],[0.0022255980875343,0.007723358925432,-0.039055373519659]],[[0.00036949923378415,-0.042466260492802,0.050790145993233],[0.055887226015329,0.0088575314730406,0.054882004857063],[-0.0037373583763838,-0.003273987211287,-0.016011161729693]],[[-0.037257555872202,-0.072629377245903,0.018034048378468],[-0.014614544808865,0.073699869215488,-0.032116711139679],[0.059151705354452,-0.021811863407493,-0.018040921539068]],[[-0.010129787027836,-0.052656132727861,-0.041955593973398],[-0.020614271983504,0.031950078904629,-0.11112701892853],[0.052052773535252,0.033835902810097,-0.017076279968023]],[[-0.015909191220999,-0.00075392791768536,-0.01630736514926],[0.068660281598568,0.047394223511219,-0.027160231024027],[-0.035032384097576,-0.032605033367872,-0.10233369469643]],[[-0.045449707657099,-0.049816716462374,0.028084009885788],[-0.060118947178125,0.042215835303068,0.0075167617760599],[-0.00020556010713335,-0.0066803344525397,0.043448582291603]],[[0.0056477272883058,0.055260512977839,0.0076268669217825],[0.038932301104069,-0.081211306154728,0.050600670278072],[0.035269435495138,-0.004377406090498,0.032387211918831]],[[0.040426999330521,0.096492648124695,0.061362355947495],[-0.059466361999512,0.035335641354322,0.044626098126173],[0.037809621542692,0.10566350072622,0.074742279946804]],[[0.0013533118180931,0.039804078638554,0.016822658479214],[0.011822349391878,0.013483150862157,0.045171409845352],[0.094278231263161,0.029241537675261,-0.073011808097363]],[[-0.015544886700809,0.069610938429832,0.025270707905293],[-0.058337230235338,0.039858933538198,0.021140307188034],[0.0060798660852015,-0.13935917615891,0.052734319120646]],[[0.011541285552084,0.012685356661677,-0.02939822152257],[-0.066261678934097,0.0039766160771251,0.034048933535814],[0.028397569432855,0.023696184158325,0.027666669338942]],[[-0.021924294531345,-0.0041459449566901,0.02722598053515],[0.013986435718834,0.051579181104898,-0.091041147708893],[0.080281421542168,-0.043284527957439,-0.017170777544379]],[[-0.022351851686835,-0.023753169924021,0.046882469207048],[0.043583579361439,0.025097534060478,0.020572930574417],[-0.0079833781346679,-0.068884551525116,0.017806647345424]],[[-0.05595563724637,-0.0045720809139311,-0.024934131652117],[0.01645415276289,-0.023502433672547,0.0041248006746173],[0.0047420798800886,0.045310385525227,0.035520274192095]],[[-0.036272868514061,0.04939978197217,0.039807446300983],[-0.049913890659809,0.010710462927818,-0.012351229786873],[-0.0091316597536206,-0.060309641063213,0.05108779296279]]],[[[0.025951331481338,0.051974311470985,0.082269810140133],[0.044951103627682,0.040228027850389,0.054858673363924],[-0.081470660865307,-0.071841701865196,0.053745113313198]],[[-0.050894130021334,-0.0075563085265458,0.0048788925632834],[0.0064613120630383,0.0084237344563007,-0.030519252642989],[0.044753953814507,0.098323792219162,0.002562357345596]],[[0.014037616550922,0.068561568856239,0.18858532607555],[-0.017569975927472,-0.095772981643677,0.0038968338631094],[-0.060431260615587,-0.0023736211005598,0.015097579918802]],[[0.036508847028017,0.026252014562488,0.039571300148964],[0.015727901831269,0.021173482760787,-0.0050585474818945],[0.13961105048656,0.15050473809242,-0.018951268866658]],[[0.01694861985743,0.060721080750227,0.026453724130988],[0.082613989710808,0.025788141414523,0.03142587095499],[-0.0098590245470405,-0.044483698904514,0.079363457858562]],[[0.053485758602619,-0.0079706208780408,0.058818887919188],[0.061354752629995,-0.035874094814062,-0.053480606526136],[0.00240528723225,0.020256670191884,0.031637821346521]],[[0.022214729338884,0.039554581046104,-0.091733932495117],[-0.012197348289192,-0.0018062723102048,0.0041201417334378],[0.12496592849493,0.16785414516926,-0.02236701361835]],[[-0.0042806253768504,-0.027083363384008,-0.0092255752533674],[-0.019600169733167,-0.039900541305542,-0.11337231099606],[0.034802295267582,0.024595441296697,0.035056374967098]],[[0.08555543422699,-0.019347231835127,0.073246657848358],[-0.066705211997032,0.011871349997818,0.013997388072312],[0.055859595537186,-0.0081678749993443,-0.012447672896087]],[[-0.0042584859766066,0.10679183155298,0.11144579201937],[-0.045483540743589,0.016727408394217,-0.0097683500498533],[-0.11662115156651,0.010366039350629,0.039071779698133]],[[0.053659111261368,-0.019014259800315,0.077684476971626],[0.01843998208642,-0.027220504358411,0.050606466829777],[0.072830349206924,0.02701286226511,0.14712643623352]],[[0.041869804263115,0.089135386049747,0.041193705052137],[0.087716780602932,0.039889968931675,-0.047320906072855],[-0.022205019369721,0.097229354083538,0.025658870115876]],[[0.045196309685707,0.02010484598577,0.011381158605218],[0.020146934315562,0.016219858080149,0.0091231390833855],[-0.10944048315287,-0.0091889593750238,0.022676941007376]],[[0.022288436070085,0.00934346485883,0.043852459639311],[0.0044167009182274,-0.049921654164791,-0.039318438619375],[-0.059574376791716,-0.0074544860981405,-0.054001152515411]],[[-0.13320051133633,-0.11486899852753,0.027761926874518],[-0.064382709562778,0.082666680216789,0.019719490781426],[-0.058802958577871,-0.05177791044116,-0.022042477503419]],[[0.067874550819397,0.083763785660267,0.028382955119014],[-0.018794510513544,0.01220827922225,0.013230144046247],[-0.020606698468328,-0.036273445934057,-0.031259834766388]],[[-0.0507647767663,-0.030167378485203,0.024882754310966],[-0.1174419298768,0.042825430631638,0.10602202266455],[-0.13731995224953,0.05603726580739,-0.045757029205561]],[[-0.0059752226807177,-0.0039852638728917,-0.22771887481213],[0.086732797324657,-0.019937731325626,-0.073236808180809],[0.26798951625824,0.024613613262773,-0.19738049805164]],[[0.10733045637608,0.014749217778444,-0.033511865884066],[0.032548200339079,-0.10871161520481,0.11005186289549],[0.0015743781113997,0.076494172215462,0.049639664590359]],[[0.080212779343128,-0.095450550317764,0.027398455888033],[-0.026279391720891,0.072072684764862,0.11867242306471],[0.095615208148956,0.051391843706369,0.029233068227768]],[[-0.0071382354944944,-0.08210875838995,0.032627981156111],[-0.011292767710984,0.030094165354967,-0.014064234681427],[-0.065624795854092,0.0053186253644526,-0.039107039570808]],[[0.075552254915237,-0.069256566464901,-0.060461424291134],[0.077895537018776,0.048097107559443,0.010587499476969],[0.0019490470876917,0.097860373556614,0.0015554637648165]],[[0.025613276287913,-0.031738478690386,-0.11386795341969],[0.038233775645494,0.010951779782772,0.047692522406578],[0.032120365649462,-0.076908014714718,0.05538783967495]],[[0.017592618241906,-0.039594005793333,0.025992194190621],[-0.05669553950429,0.01830830425024,-0.015584348700941],[-0.015632128342986,0.049210794270039,0.032415010035038]],[[-0.067813016474247,-0.0009309418965131,0.039280571043491],[0.0084491474553943,0.1195610165596,-0.016115460544825],[0.091838620603085,0.06045563146472,0.095537208020687]],[[0.0051844567060471,-0.037965457886457,0.043882347643375],[0.046522241085768,0.089662864804268,-0.036978933960199],[0.054348263889551,-0.056217595934868,-0.0087684439495206]],[[0.050028454512358,-0.00053939397912472,0.031283590942621],[-0.020521016791463,-0.021990094333887,0.01815296895802],[-0.0082845268771052,0.076651692390442,-0.0077687059529126]],[[0.028797470033169,-0.035746708512306,0.01358612254262],[-0.048698142170906,0.041909947991371,0.070693522691727],[0.02110063098371,0.06792950630188,0.025509145110846]],[[-0.068853691220284,0.073413327336311,-0.024593742564321],[-0.052385207265615,0.023380106315017,-0.0697256103158],[0.067312888801098,0.09914118796587,0.095630265772343]],[[-0.0067856260575354,0.029969895258546,-0.061687655746937],[-0.030620293691754,-0.017111573368311,-0.0067578782327473],[-0.0078883329406381,0.11827164888382,-0.024133944883943]],[[0.063144721090794,-0.01641109585762,-0.09296740591526],[-0.1249445527792,0.022491639479995,0.12955896556377],[-0.013309729285538,0.046583294868469,-0.0071428213268518]],[[0.0083008520305157,0.01004795730114,0.076675295829773],[0.027331991121173,0.037543278187513,-0.027408106252551],[0.086147651076317,-0.030394941568375,0.0063006156124175]],[[0.054559081792831,0.057644505053759,0.14383405447006],[0.064387552440166,-0.024764189496636,-0.065197937190533],[-0.010828102938831,0.023788889870048,0.027307771146297]],[[0.032853551208973,-0.050746787339449,-0.015879694372416],[-0.028394006192684,0.073869585990906,0.039423316717148],[0.015325874090195,0.0091716824099422,0.036324594169855]],[[0.0025005012284964,-0.023971606045961,-0.034817490726709],[-0.038605559617281,-0.060187112540007,0.088321663439274],[-0.0082247667014599,-0.018031362444162,0.014938991516829]],[[0.039599686861038,-0.01338669937104,-0.071605794131756],[-0.11728207021952,0.0752267614007,0.00060581933939829],[0.068123400211334,-0.04267281293869,0.046639956533909]],[[0.029545873403549,0.036800850182772,0.019855003803968],[-0.021326703950763,0.020284567028284,-0.056142192333937],[0.05642069876194,0.015188946388662,0.070778474211693]],[[0.015592819079757,0.0364750623703,-0.023157032206655],[0.069411508738995,-0.081053532660007,-0.019332898780704],[0.02647678181529,0.020966365933418,0.0030884090811014]],[[0.0019573776517063,0.074610136449337,0.065077021718025],[-0.03860005736351,-0.03060775436461,0.028595326468349],[0.036178439855576,-0.052845902740955,-0.023269398137927]],[[-0.049644742161036,0.069274269044399,-0.057829409837723],[-0.056791178882122,0.0015168688260019,0.015685059130192],[0.058225598186255,0.11443836987019,-0.011630548164248]],[[0.00073840795084834,-0.065440818667412,-0.024556770920753],[-0.044655989855528,0.021354630589485,-0.004940090700984],[0.089289605617523,-0.010996007360518,0.047135580331087]],[[0.039378602057695,-0.025091372430325,0.021574538201094],[-0.0027176083531231,-0.062581241130829,-0.00081270333612338],[0.0099884970113635,0.02809901535511,-0.018171196803451]],[[-0.01350318454206,0.037620596587658,0.02115061506629],[0.038965117186308,0.041700057685375,-0.019369395449758],[-0.025118976831436,0.06860288977623,0.027263814583421]],[[0.050284806638956,0.029029954224825,-0.02187355607748],[-0.0056344205513597,-0.11107566207647,-0.0030614263378084],[0.073109984397888,0.01361052878201,0.01159255951643]],[[0.10331241041422,0.077632486820221,-0.024184480309486],[-0.0087314657866955,0.14887303113937,0.0090247476473451],[0.064624801278114,0.053523000329733,0.15219502151012]],[[0.056029222905636,0.0047066900879145,-0.028844093903899],[0.043948002159595,-0.036794804036617,0.0051564001478255],[0.036360543221235,0.0034235420171171,0.039216667413712]],[[0.032592967152596,0.010795598849654,0.024918243288994],[0.035927776247263,0.064540766179562,0.050385411828756],[0.017403233796358,-0.015290228649974,-0.0081518059596419]],[[0.011929823085666,0.094152353703976,-0.060649182647467],[-0.040230102837086,-0.093085065484047,-0.0096083581447601],[0.056500103324652,-0.062164612114429,-0.090580783784389]],[[0.0068568671122193,-0.040252070873976,0.024931916967034],[-0.027063066139817,0.016011191532016,-0.0042301258072257],[-0.095363460481167,-0.078783243894577,-0.0085049355402589]],[[-0.022875649854541,-0.035295069217682,-0.0017083213897422],[-0.0020176377147436,0.0065365382470191,0.084511019289494],[0.013181331567466,0.0018272649031132,-0.0043386868201196]],[[-0.012705991975963,0.017731184139848,-0.02660795301199],[-0.072133339941502,0.056301023811102,-0.10240788757801],[0.084909610450268,0.0021591580007225,0.058890245854855]],[[0.06429760158062,-0.034116432070732,0.15373781323433],[0.039880868047476,-0.051744259893894,0.028756132349372],[0.040076453238726,0.046997416764498,0.13235047459602]],[[-0.013857120648026,0.0035955673083663,0.048105083405972],[-0.098701193928719,-0.0053791431710124,-0.11528065800667],[-0.057927377521992,0.0022233994677663,-0.06905709207058]],[[0.013850421644747,0.048385065048933,0.065762355923653],[-0.1037273183465,0.14501146972179,0.079756781458855],[0.14517179131508,0.024447007104754,0.019907657057047]],[[0.083373613655567,0.016733434051275,0.069793872535229],[-0.0069046160206199,0.058083921670914,0.012318615801632],[0.023090843111277,0.028517751023173,0.01682366989553]],[[-0.046093225479126,0.027749579399824,-0.021557426080108],[0.04940889030695,0.0065676490776241,0.081720463931561],[0.086209006607533,0.05817512050271,-0.012978647835553]],[[0.13708648085594,0.072051212191582,0.063785143196583],[0.12243318557739,-0.066165030002594,-0.0087019391357899],[0.040793169289827,-0.063607580959797,0.036830686032772]],[[-0.032709814608097,0.17083257436752,-0.036109659820795],[0.01863501034677,-0.038484841585159,0.095787316560745],[0.019888404756784,0.022895760834217,0.12316733598709]],[[0.02487083338201,0.075839892029762,0.029535312205553],[0.045790426433086,0.010093307122588,0.080567874014378],[0.021407624706626,-0.052389144897461,0.02280168235302]],[[0.086817033588886,-0.017646072432399,-0.038931708782911],[0.0090970303863287,0.10983395576477,0.0010442524217069],[-0.02746270224452,-0.063426062464714,0.019813135266304]],[[-0.06025954335928,0.037624828517437,0.054409179836512],[0.024844452738762,0.032074894756079,0.10075321793556],[0.024364089593291,-0.01635861210525,0.024823317304254]],[[0.07295224070549,-0.11510153114796,-0.021764263510704],[-0.0057357079349458,0.014585293829441,-0.003866309998557],[0.077085182070732,0.029699455946684,-0.089991845190525]],[[0.048761680722237,-0.070128858089447,-0.14929057657719],[0.0070407334715128,-0.0011497053783387,-0.056035507470369],[0.019282316789031,0.045758835971355,0.091979034245014]],[[0.02928120829165,0.045836888253689,0.084459856152534],[0.099556639790535,0.06668184697628,0.073945105075836],[0.11416669934988,0.1841079890728,0.056778267025948]],[[-0.024904211983085,0.027930084615946,0.069005273282528],[0.019946999847889,0.055771503597498,-0.017387259751558],[0.042780846357346,-0.01333112642169,0.0054256608709693]],[[0.11169110238552,-0.036028899252415,-0.052946574985981],[0.034091040492058,-0.095957443118095,0.0087945079430938],[0.021286815404892,-0.053268395364285,-0.059073720127344]],[[0.072330564260483,0.066746942698956,-0.0064566633664072],[-0.049339916557074,-0.012307487428188,0.023997092619538],[-0.054031908512115,-0.029180862009525,0.10222215205431]],[[-0.034367013722658,-0.036588404327631,0.082867883145809],[-0.043657273054123,0.016366355121136,-0.026527618989348],[0.0078581823036075,0.069823786616325,0.070166401565075]],[[-0.057265188544989,0.20609103143215,0.056193474680185],[0.00867975410074,-0.066401548683643,0.028617762029171],[0.075946152210236,0.0055263321846724,0.043989166617393]],[[-0.021032555028796,0.013870861381292,-0.032656271010637],[0.045875184237957,0.079943403601646,0.093970939517021],[0.05971734970808,-0.02474850974977,-0.036443848162889]],[[0.11274045705795,0.05922781676054,0.061038170009851],[0.047446388751268,0.18251429498196,0.006201081443578],[0.11531101167202,0.044845227152109,0.062646977603436]],[[0.0793232396245,0.087447509169579,0.1033122241497],[-0.0047114994376898,0.061446014791727,-0.057538896799088],[-0.042208477854729,-0.10503838211298,-0.040588717907667]],[[0.024824535474181,-0.092341467738152,-0.052560783922672],[-0.076117731630802,0.02869450673461,0.024635517969728],[0.041765037924051,-0.082193911075592,-0.005555187817663]],[[0.093049168586731,-0.0081569580361247,0.092275306582451],[0.045303776860237,0.024769175797701,0.082476392388344],[0.067217133939266,-0.078634791076183,-0.084724880754948]],[[-0.029916860163212,-0.0071088778786361,0.016784030944109],[0.038248542696238,-0.010444981977344,0.019785361364484],[-0.059617165476084,-0.043997447937727,0.035357613116503]],[[-0.037473239004612,-0.0069157616235316,-0.050236515700817],[0.027049023658037,-0.077658146619797,-0.056058332324028],[0.08201340585947,0.0091059068217874,0.0052055637352169]],[[-0.083841525018215,-0.040510054677725,-0.02764680236578],[0.12546601891518,0.036786649376154,0.043327543884516],[-0.060776136815548,-0.077162049710751,-0.070430904626846]],[[0.051910009235144,0.12417949736118,0.026446301490068],[0.00075195351382717,-0.058201860636473,0.055681012570858],[0.054137300699949,0.10517135262489,0.0021139159798622]],[[-0.010438420809805,0.0050785117782652,0.033874616026878],[-0.011640697717667,0.047941945493221,-0.0048620896413922],[0.065412372350693,0.018594739958644,0.091987505555153]],[[-0.043214604258537,0.083409152925014,0.12133927643299],[-0.05752157792449,0.045946873724461,-0.038036443293095],[0.0097019383683801,0.0097116017714143,0.083962611854076]],[[0.095970340073109,-0.054308779537678,0.022501327097416],[0.0083175152540207,0.047384269535542,0.001242178841494],[0.0073729334399104,0.019466154277325,0.0081763193011284]],[[-0.0072365291416645,-0.024299912154675,0.1273717135191],[0.17219860851765,0.19885754585266,-0.053142115473747],[0.17952947318554,-0.070005685091019,0.12720754742622]],[[0.18389381468296,-0.0056507186964154,0.0032040767837316],[0.064406722784042,0.054403573274612,0.082145638763905],[0.017764812335372,0.049674496054649,-0.16601745784283]],[[-0.071233667433262,0.04923839494586,-0.03602210059762],[0.0060865366831422,0.073229059576988,0.087525561451912],[0.042437344789505,0.0021820371039212,0.029190057888627]],[[0.097197197377682,0.039242338389158,-0.00034651081659831],[-0.023260712623596,-0.017791278660297,-0.02097811549902],[-0.014804587699473,0.059993855655193,0.038410045206547]],[[0.075984679162502,-0.031610950827599,0.019764533266425],[0.06284074485302,-0.022854266688228,0.030062021687627],[0.011555097065866,0.0028551558498293,0.0086856661364436]],[[-0.017348943278193,-0.038906008005142,0.028312426060438],[0.037854690104723,0.062893666327,0.077702336013317],[0.062847353518009,0.13591606914997,0.087793409824371]],[[-0.032325107604265,0.0068929656408727,-0.0055554956197739],[-0.16714517772198,-0.0094803534448147,0.029481753706932],[-0.039375849068165,0.13099773228168,-0.012906650081277]],[[0.036933198571205,-0.014861697331071,0.0038678147830069],[0.098352029919624,0.08952596783638,0.053740762174129],[0.20100405812263,-0.060068655759096,0.054662495851517]],[[0.0026747973170131,-0.0062266103923321,0.018810724839568],[-0.11179888248444,0.024906523525715,0.07281432300806],[-0.057525187730789,0.00053480156930164,-0.080828905105591]],[[-0.030602185055614,-0.00062024954240769,-0.048460856080055],[-0.014858095906675,0.019161300733685,0.069819889962673],[0.025606818497181,0.05782438442111,0.046653617173433]],[[-0.0220797508955,-0.00080963328946382,-0.016867280006409],[0.013872275128961,-0.072850160300732,0.03314395993948],[-0.036432076245546,-0.05861459672451,-0.022084672003984]],[[-0.033406767994165,0.041964150965214,-0.019413301721215],[0.091777749359608,0.030878338962793,-0.015151225961745],[0.12662002444267,0.037670228630304,0.084645964205265]],[[-0.13157323002815,-0.15457344055176,-0.10055330395699],[-0.058356858789921,-0.027493361383677,0.085629567503929],[0.088570348918438,-0.056154187768698,0.030692100524902]],[[-0.0087186098098755,0.02411481179297,-0.020564222708344],[0.031598065048456,-0.0027211087290198,0.076481506228447],[0.048653516918421,-0.096217051148415,-0.10359168052673]],[[0.028111135587096,-0.046116542071104,-0.00082988943904638],[-0.026445660740137,-0.019079227000475,0.014452857896686],[-0.026070315390825,-0.0045397337526083,0.020187642425299]],[[0.077806085348129,0.0013144614640623,0.034800309687853],[0.11362229287624,-0.0026374293956906,-0.091860890388489],[0.068835467100143,0.050285372883081,0.053948890417814]],[[0.033703669905663,0.012911041267216,0.027634903788567],[0.096757121384144,-0.0083685135468841,-0.002235991647467],[0.093800015747547,0.0064894040115178,0.026054861024022]],[[-0.074816159904003,0.046822410076857,0.062315095216036],[0.027233915403485,0.099163345992565,0.037748444825411],[-0.021963123232126,0.10721212625504,0.050449669361115]],[[-0.0022384119220078,-0.0074725020676851,0.029224373400211],[-0.0042375717312098,0.067805528640747,0.035008084028959],[-0.051436759531498,0.038842614740133,-0.029544094577432]],[[-0.10366020351648,0.071799762547016,0.054908666759729],[0.066453330218792,-0.1214407980442,-0.038160376250744],[-0.053950726985931,-0.050033796578646,0.083039797842503]],[[-0.028657291084528,-0.024590186774731,0.089988954365253],[0.017596755176783,-0.046610120683908,0.086881726980209],[0.091312579810619,0.026291072368622,0.066445536911488]],[[0.020089680328965,0.037382539361715,-0.040145646780729],[-0.019450481981039,-0.031016318127513,-0.0411182269454],[0.017941307276487,-0.085111796855927,0.0035225360188633]],[[-0.035254165530205,-0.035907912999392,-0.012250792235136],[-0.02535954862833,-0.033777847886086,0.061856839805841],[0.032825347036123,-0.026601165533066,0.029907850548625]],[[-0.024544946849346,0.049580913037062,-0.010667617432773],[0.042297579348087,-0.013742866925895,0.041456360369921],[0.027285477146506,0.04428880661726,0.017763886600733]],[[-0.019664339721203,-0.055071491748095,0.16607902944088],[-0.21471625566483,0.032994408160448,0.06605264544487],[-0.016922784969211,0.013703145086765,0.039394985884428]],[[0.028967199847102,-0.062232699245214,0.063033625483513],[0.020964598283172,-0.0032965738791972,-0.0058060339652002],[-0.039599232375622,-0.038577016443014,0.016879288479686]],[[-0.033914379775524,0.0069444025866687,0.065269760787487],[0.007392056286335,-0.075864337384701,0.041673682630062],[-0.0077604097314179,-0.037529096007347,0.12334960699081]],[[0.050554901361465,-0.066144727170467,0.018007602542639],[-0.021792560815811,0.064523190259933,0.029833287000656],[-0.055952202528715,0.055892411619425,0.0051745469681919]],[[-0.017002046108246,0.071863114833832,0.017000444233418],[-0.00048772661830299,0.035117462277412,-0.021940693259239],[0.011945623904467,0.040868084877729,-0.014745879918337]],[[-0.021261807531118,-0.0093896063044667,-0.067928284406662],[-0.0035559537354857,0.040513195097446,-0.05097284168005],[0.02288119867444,-0.0013689212501049,0.097565077245235]],[[-0.0069428472779691,-0.10019697993994,-0.025789026170969],[-0.09483990073204,0.065059646964073,0.0053622014820576],[-0.019447332248092,0.082983650267124,-0.0081540131941438]],[[-0.016509264707565,0.064264059066772,0.030356768518686],[0.046484269201756,0.050895377993584,0.014029463753104],[0.021918589249253,-0.0034189641010016,0.085952796041965]],[[-0.021129406988621,0.068091385066509,0.073887802660465],[-0.020229509100318,0.073945671319962,0.034581962972879],[0.055398643016815,-0.051864929497242,0.039244592189789]],[[0.037824776023626,-0.048170186579227,0.040152013301849],[0.077585488557816,-0.13868992030621,0.06361485272646],[-0.052103079855442,-0.024499531835318,-0.011621021665633]],[[0.006107886787504,0.03128058463335,-0.071888066828251],[0.015695950016379,-0.03877367451787,-0.17582440376282],[0.027168650180101,0.024053279310465,0.089712217450142]],[[0.037990249693394,0.048314351588488,-0.022231440991163],[-0.051880728453398,0.059513092041016,0.054174546152353],[-0.030483990907669,0.12348549813032,0.087775722146034]],[[0.019313968718052,0.0040644048713148,0.012181041762233],[0.043860107660294,0.023303689435124,0.043904807418585],[-0.030607542023063,-0.0055819377303123,0.070899583399296]],[[-0.098760232329369,-0.072485588490963,-0.032524675130844],[0.092267863452435,0.034515682607889,-0.065345980226994],[-0.010020714253187,0.054133750498295,-0.0091128395870328]],[[0.021380439400673,0.033574502915144,0.059230536222458],[0.012578906491399,-0.032159231603146,0.030820768326521],[0.041755527257919,0.03837813064456,0.17079804837704]],[[0.0040399320423603,0.05838867649436,0.10860171914101],[0.090339817106724,-0.061253130435944,-0.088059224188328],[-0.077375002205372,-0.034203868359327,-0.072007171809673]],[[0.051207538694143,0.011775617487729,-0.0053286980837584],[0.039707347750664,-0.016541246324778,0.067108333110809],[0.025879139080644,0.11468314379454,-0.065565556287766]],[[0.074552372097969,0.019706623628736,0.088781468570232],[-0.0053990809246898,-0.07156828045845,-0.00025199924129993],[0.030995054170489,0.10315133631229,-0.015632249414921]],[[-0.088901586830616,-0.088075824081898,-0.082852713763714],[-0.0034708769526333,0.030443670228124,0.0053776944987476],[-0.025871532037854,-0.0090621868148446,-0.019784830510616]],[[0.033525735139847,-0.028806615620852,-0.10381723195314],[0.00039332511369139,-0.075433909893036,0.019388657063246],[-0.034424178302288,0.0099592246115208,0.082918345928192]],[[-0.091356419026852,0.082385294139385,-0.04469745606184],[0.013833010569215,-0.049873098731041,0.016836989670992],[0.00080390844959766,0.025956144556403,-0.084787771105766]],[[0.057439163327217,0.073766402900219,0.0386673361063],[0.06850803643465,0.032770451158285,-0.05483840405941],[0.042391445487738,-0.089962095022202,0.028507744893432]],[[-0.057489857077599,0.088271155953407,-0.03731906041503],[0.13363538682461,-0.056783191859722,-0.0045749563723803],[-0.013070546090603,-0.086716309189796,0.025939831510186]]],[[[0.018027417361736,0.048607468605042,0.0004571930912789],[0.06172264367342,0.043222114443779,0.016083590686321],[-0.01734939776361,0.052965056151152,0.017306109890342]],[[0.086403012275696,-0.087072305381298,-0.094796843826771],[-0.060667887330055,-0.046319305896759,-0.012656470760703],[-0.031535357236862,-0.031427640467882,0.040089722722769]],[[-0.015992280095816,-0.056867700070143,-0.088945485651493],[-0.027823626995087,-0.0064841690473258,-0.02803055383265],[-0.062925681471825,0.031825888901949,0.028167229145765]],[[0.058809783309698,0.04510310292244,0.12104960530996],[0.025560267269611,-0.014776326715946,-0.078827656805515],[-0.017612820491195,-0.027378771454096,0.031557705253363]],[[-0.048945143818855,0.056382343173027,0.025329321622849],[-0.025771429762244,-0.05612812563777,0.043502356857061],[-0.11562100052834,-0.061787247657776,-0.024883242323995]],[[-0.0033412699121982,0.049551874399185,-0.058910239487886],[0.0030972922686487,-0.070839546620846,-0.028955455869436],[0.017528655007482,-0.019867783412337,-0.034775238484144]],[[0.037946127355099,0.048045702278614,0.13067092001438],[0.071888327598572,0.0053631742484868,-0.11183342337608],[-0.010203128680587,0.036208439618349,-0.032188415527344]],[[0.061796329915524,0.13980154693127,0.055136248469353],[0.0053859511390328,-0.039729844778776,0.095360279083252],[0.11470429599285,0.090764939785004,-0.046509064733982]],[[-0.036677625030279,0.034465711563826,0.030530709773302],[0.012636505067348,-0.033865485340357,0.004015174228698],[0.069217249751091,0.046353351324797,0.030706075951457]],[[0.042693495750427,0.0097137000411749,0.052497766911983],[0.02653138898313,0.073569297790527,0.050327505916357],[0.0041499133221805,-0.04157792404294,-0.029631495475769]],[[0.043755389750004,0.076985530555248,0.053582947701216],[-0.021706299856305,0.003711569821462,-0.024430766701698],[-0.048598721623421,-0.020813340321183,0.0049475058913231]],[[-0.077290028333664,-0.057857912033796,-0.01187602058053],[0.012339128181338,0.02751381509006,0.057640094310045],[-0.040633913129568,0.047283887863159,0.028265187516809]],[[-0.027284266427159,-0.10625575482845,0.01368104480207],[0.010678816586733,-0.031128505244851,-0.06860389560461],[-0.036338955163956,-0.0033002197742462,-0.12533138692379]],[[-0.06461725383997,-0.023711739107966,0.038077306002378],[-0.028363967314363,0.035254944115877,-0.016358248889446],[0.0078007318079472,-0.01667845249176,0.11251623928547]],[[0.018294032663107,0.060756158083677,-0.068985134363174],[0.015400275588036,-0.0073727429844439,-0.024829203262925],[-0.025809181854129,-0.011243482120335,0.10369700193405]],[[0.02522949129343,0.0013222086708993,0.045562401413918],[0.031133009120822,-0.02113725990057,-0.088245145976543],[-0.0090691968798637,0.028042366728187,-0.043037805706263]],[[0.031937964260578,0.0643440335989,0.051635585725307],[0.036250747740269,0.071616671979427,0.025384895503521],[0.0060540093109012,-0.011962823569775,-0.0039202393963933]],[[-0.042348492890596,-0.072008080780506,-0.091955713927746],[-0.06343686580658,-0.016875755041838,-0.018478428944945],[-0.044511415064335,0.0041597653180361,-0.0082413172349334]],[[-0.051779489964247,-0.0025355394463986,0.022012740373611],[0.007870489731431,-0.0060628191567957,-0.049881409853697],[0.038257297128439,0.0061841038987041,0.029172103852034]],[[0.096115484833717,0.016991719603539,0.011557410471141],[0.060417339205742,-0.0070876181125641,0.016783501952887],[-0.023199293762445,-0.055879812687635,0.048780806362629]],[[-0.059520643204451,-0.031391471624374,-0.060525208711624],[-0.10054600983858,-0.075718879699707,0.011866788379848],[-0.10767754167318,-0.034318026155233,0.030418433248997]],[[0.07545018941164,-0.012039680033922,0.041427448391914],[-0.041992470622063,0.050841838121414,-0.014765338972211],[0.082905516028404,0.040889818221331,-0.037737365812063]],[[-0.028964847326279,-0.0062169712036848,-0.082187227904797],[-0.020147552713752,0.015618969686329,0.08831986784935],[-0.023406965658069,0.069349832832813,0.0054956865496933]],[[0.0049056741409004,0.011996125802398,-0.021812491118908],[-0.0098339663818479,-0.032330632209778,-0.065146096050739],[0.0082401093095541,-0.050617553293705,-0.17287287116051]],[[0.058221086859703,0.067637927830219,-0.074529238045216],[-0.018372172489762,0.013570294715464,0.032306708395481],[-0.0087553029879928,-0.0081510292366147,-0.094619609415531]],[[0.059505056589842,-0.028077885508537,-0.032468616962433],[0.056638240814209,-0.031171528622508,0.055361218750477],[0.025208957493305,-0.047272525727749,-0.092758759856224]],[[0.040470473468304,-0.014639868400991,0.0021699152421206],[-0.089890949428082,-0.024633565917611,-0.019343938678503],[0.023563669994473,-0.034955941140652,-0.0098859230056405]],[[-0.058693245053291,-0.0083970259875059,0.056267809122801],[0.064259596168995,-0.034205824136734,-0.12558664381504],[-0.0049310871399939,0.025355855002999,0.0048598712310195]],[[-0.036551520228386,0.072946481406689,-0.064744286239147],[0.029845476150513,-0.050569530576468,0.061819903552532],[-0.053021945059299,7.5838317570742e-05,0.026859831064939]],[[0.02560362406075,0.027606835588813,0.066286534070969],[-0.012390620075166,-0.02348137460649,-0.021919876337051],[0.032885644584894,0.035592183470726,-0.037486109882593]],[[0.052997846156359,0.060573801398277,0.018540872260928],[0.034104682505131,0.00053303642198443,0.0044081127271056],[0.066399395465851,0.066691517829895,-0.022962421178818]],[[0.023326244205236,0.059632528573275,-0.00082421331899241],[0.040959153324366,0.051057234406471,-0.0058441306464374],[-0.087336555123329,0.05095935985446,-0.1092603802681]],[[0.0044470774009824,-0.10646825283766,0.077223367989063],[-0.0078206267207861,0.0068006459623575,-0.12416452914476],[-0.018336746841669,0.04488580673933,0.086591377854347]],[[-0.00088701583445072,0.0011392431333661,-0.044508963823318],[0.022503659129143,0.018508115783334,0.00017336134624202],[-0.048669964075089,-0.027604071423411,-0.0074422159232199]],[[0.051326472312212,-0.007736240979284,0.035518947988749],[-0.013420171104372,0.011939543299377,0.045490492135286],[-0.067109622061253,-0.05392973870039,-0.067967809736729]],[[0.0028185513801873,-0.023405905812979,-0.03288646042347],[0.024793490767479,-0.0077172722667456,-0.044482950121164],[-0.023022184148431,-0.0045756283216178,0.028018733486533]],[[0.12852492928505,-0.048445012420416,-0.049982745200396],[0.053462918847799,-0.014913157559931,0.09685979783535],[-0.007085457444191,0.039921678602695,0.093206994235516]],[[0.03118984401226,-0.0025588625576347,-0.10443207621574],[0.050407152622938,-0.041454002261162,-0.059967018663883],[0.01950404420495,-0.07973551005125,0.038398653268814]],[[0.043880842626095,-0.019951013848186,-0.0122379232198],[-0.088106423616409,-0.062425646930933,-0.040460169315338],[0.064216129481792,-0.043737851083279,0.025717193260789]],[[-0.00025036293664016,0.0015270080184564,0.093745075166225],[0.092669226229191,0.014722566120327,-0.03267015889287],[0.026471776887774,-0.074049554765224,-0.01221530046314]],[[-0.093206815421581,0.0011040378594771,-0.060646861791611],[0.092153489589691,0.0089177740737796,-0.02193646505475],[0.032279659062624,-0.012889694422483,0.13734376430511]],[[0.020387196913362,-0.010649965144694,0.078767448663712],[0.0026177032850683,0.065255925059319,0.009161020629108],[0.16621930897236,0.023305146023631,-0.015016223303974]],[[-0.018579108640552,-0.010441789403558,0.092898227274418],[0.033192299306393,0.060988999903202,0.097052708268166],[0.040505815297365,-0.024603394791484,-0.093951530754566]],[[-0.071790881454945,-0.04222571477294,0.014682508073747],[0.052251823246479,-0.016081053763628,0.0032585964072496],[0.018458977341652,0.00064143392955884,0.066654473543167]],[[-0.036669123917818,0.050625257194042,0.042957164347172],[0.057773780077696,0.05704290792346,0.028129424899817],[0.012089650146663,-0.0064985952340066,0.077732086181641]],[[0.045688953250647,0.10557233542204,-0.0067489123903215],[0.15463057160378,0.052192848175764,0.044672414660454],[-0.0060798223130405,-0.063959822058678,0.13861724734306]],[[-0.038937419652939,0.032481949776411,-0.053128615021706],[-0.060615416616201,-0.033586580306292,-0.031891513615847],[0.013932432048023,-0.043553043156862,0.0048778359778225]],[[-0.037539910525084,-0.015543145127594,-0.027758387848735],[-0.059988476336002,0.028582789003849,-0.013136035762727],[-0.06627444177866,0.0033624428324401,-0.021692482754588]],[[0.021452993154526,-0.041339736431837,0.011618070304394],[-0.023312387987971,-0.018790462985635,0.025067463517189],[0.026706470176578,-0.043039459735155,-0.042366206645966]],[[-0.061013802886009,0.056800831109285,-0.0095643624663353],[-0.047745749354362,-0.030874958261847,-0.012616412714124],[0.043906833976507,-0.039786521345377,-0.093703210353851]],[[-0.017609480768442,-0.042115151882172,0.034021273255348],[-0.071989171206951,-0.094272553920746,-0.068733192980289],[0.0071415356360376,0.0330607034266,-0.075445801019669]],[[0.036474771797657,-0.049952980130911,0.004848173353821],[-0.072807058691978,-0.018180269747972,0.010956756770611],[0.068641841411591,0.032840244472027,0.076953656971455]],[[-0.040024396032095,-0.024470264092088,0.033627729862928],[-0.012141779065132,0.032608672976494,0.042478933930397],[0.091075778007507,-0.057645913213491,-0.0062512261793017]],[[0.06300888210535,0.01457526627928,-0.004774899687618],[0.043449971824884,-0.028370523825288,0.028560301288962],[-0.0095602190122008,-0.0030247478280216,-0.03823958337307]],[[-0.01571873575449,0.050620499998331,0.072208307683468],[0.020018415525556,0.038398280739784,-0.0051310756243765],[0.077521987259388,0.13079825043678,0.075304217636585]],[[0.0046271649189293,0.018146798014641,-0.047429285943508],[0.0045405607670546,-0.027144292369485,-0.0078936303034425],[0.013927540741861,0.018940987065434,-0.01469181664288]],[[-0.065144024789333,0.0011151803191751,0.11121353507042],[0.046664003282785,0.030988389626145,0.017838936299086],[0.10587348043919,0.0031480505131185,0.032185774296522]],[[0.067275017499924,0.033648371696472,-0.059372674673796],[0.034311212599277,0.064145930111408,-0.018723953515291],[0.014274883083999,-0.067178875207901,0.0049113724380732]],[[-0.034607999026775,0.030298355966806,0.089511953294277],[0.041731558740139,0.057157546281815,-0.015961335971951],[0.031405411660671,0.090148821473122,0.099866941571236]],[[-0.064389862120152,0.038917358964682,-0.014967147260904],[-0.02897291071713,-0.011889325454831,0.031238377094269],[0.038856003433466,0.029426764696836,0.10120079666376]],[[-0.099112384021282,0.015625298023224,-0.021095031872392],[-0.016842501237988,0.011199896223843,0.051880929619074],[-0.096721418201923,-0.031787175685167,-0.05721340328455]],[[-0.058363527059555,-0.042625837028027,-0.077567242085934],[0.041729141026735,-5.086691089673e-05,-0.091785155236721],[-0.052172474563122,-0.04836181551218,0.069825418293476]],[[0.0036681133788079,0.021597778424621,-0.0030715558677912],[-0.00095147173851728,-0.020937118679285,-0.00209906604141],[0.047972850501537,0.011419896036386,0.023003218695521]],[[0.051760885864496,0.075351916253567,0.10539254546165],[0.16508468985558,-0.078049294650555,0.061689373105764],[0.051370687782764,0.06794285774231,0.032679971307516]],[[-0.064046874642372,-0.070690095424652,-0.058287363499403],[-0.085817292332649,-0.017885390669107,-0.04501299187541],[0.0046550245024264,0.065474852919579,0.063129484653473]],[[0.081144541501999,0.056438282132149,-0.0086765103042126],[-0.039972875267267,-0.032268520444632,0.00064486800692976],[-0.047760553658009,-0.015738984569907,-0.064630031585693]],[[0.0050267432816327,0.048173137009144,0.011059058830142],[0.052809379994869,-0.0083548575639725,-0.039779800921679],[-0.0055903913453221,0.088579714298248,0.029246289283037]],[[0.044596221297979,0.072522655129433,-0.027884909883142],[0.012414401397109,0.016158832237124,0.0053223869763315],[0.028148509562016,-0.0035776414442807,0.038892474025488]],[[0.055351320654154,0.018220135942101,0.029477285221219],[0.060888104140759,0.064387619495392,-0.022926989942789],[0.059252321720123,-0.014451561495662,0.12040071934462]],[[-0.067444108426571,0.024480301886797,0.023012146353722],[-0.041517458856106,0.03272931650281,0.031047370284796],[0.071606017649174,0.06360837072134,0.0059878011234105]],[[0.044201370328665,0.10940111428499,-0.020721009001136],[-0.014943454414606,0.14221982657909,0.044767756015062],[0.094907753169537,0.086497411131859,0.01043058373034]],[[-0.047283735126257,-0.14784474670887,-0.088849551975727],[0.010863400995731,-0.029173478484154,-0.020882457494736],[-0.02026866003871,0.019697809591889,0.041497569531202]],[[-0.028695141896605,0.038596350699663,-0.069407626986504],[-0.011179546825588,0.013132008723915,-0.044834744185209],[-0.052797731012106,-0.033874455839396,-0.058966718614101]],[[-0.02553434856236,-0.033205438405275,-0.014060292392969],[0.053274810314178,0.017898581922054,0.042533148080111],[-0.0069055557250977,0.026078445836902,0.062988042831421]],[[0.043960459530354,0.052659157663584,-0.034795373678207],[0.08685627579689,0.036699201911688,0.019427880644798],[0.035440638661385,-0.026543216779828,-0.016497708857059]],[[-0.02362515591085,-0.020340383052826,-0.012923523783684],[0.052112095057964,0.0067623597569764,-0.030048996210098],[0.066427417099476,0.011906649917364,-0.11802972108126]],[[-0.05492552369833,-0.082465663552284,0.085518151521683],[-0.063031099736691,-0.011415261775255,-0.0061635538004339],[-0.015945443883538,-0.034948084503412,-0.013056945987046]],[[-0.0074383015744388,0.042170692235231,0.17043688893318],[0.087676644325256,0.13970355689526,0.061445210129023],[0.0011839470826089,0.055403593927622,0.045260682702065]],[[0.046897232532501,0.0013384271878749,-0.027974165976048],[-0.11752547323704,-0.057544685900211,-0.046487390995026],[0.021592728793621,-0.051897402852774,0.068090066313744]],[[-0.036588709801435,0.013592338189483,-0.02171946503222],[-0.0017180274007842,-0.074936278164387,-0.076806403696537],[0.02134545147419,0.047904036939144,0.058583937585354]],[[-0.016315117478371,-0.094205126166344,-0.011658537201583],[0.0086045870557427,-0.022832751274109,-0.011491136625409],[-0.018945783376694,-0.034718152135611,0.036061849445105]],[[0.017311871051788,-0.044914521276951,-0.023973958566785],[-0.011366637423635,-0.074392691254616,-0.040602274239063],[0.0095505397766829,0.061139799654484,0.061166241765022]],[[-0.023316692560911,0.020789973437786,0.11002351343632],[-0.033691622316837,0.018334085121751,-0.051039986312389],[0.10092779994011,0.036985039710999,-0.0027171517722309]],[[-0.0063346247188747,0.02607686072588,0.025760533288121],[-0.02438653446734,-0.02816097997129,-0.074667401611805],[0.075721547007561,0.045637797564268,0.04634041339159]],[[0.011710193008184,0.071829967200756,0.15995651483536],[-0.011696877889335,-0.083678349852562,0.034926917403936],[-0.01935575902462,0.048875000327826,-0.0066108624450862]],[[0.090646103024483,0.037495445460081,0.093537971377373],[0.0519251935184,-0.013405404984951,0.073826715350151],[-0.015057388693094,-0.0056751221418381,-0.02468734793365]],[[0.044167529791594,0.12764130532742,0.1162923797965],[0.085996389389038,0.076547510921955,0.11881187558174],[-0.060159847140312,-0.047765772789717,0.080142438411713]],[[-0.12048194557428,-0.01061253529042,0.024299932643771],[0.025444122031331,0.086895346641541,0.073651172220707],[-0.11674300581217,0.019723808392882,0.048974066972733]],[[0.084209837019444,0.10038141161203,0.15915550291538],[0.024200232699513,0.021561522036791,-0.07453753054142],[0.14391852915287,0.038667634129524,-0.061257004737854]],[[-0.079152584075928,0.035277791321278,0.045707438141108],[0.076815791428089,0.065749399363995,0.0013495658058673],[0.02992463670671,-0.0027790286112577,-0.048402562737465]],[[-0.062812283635139,0.016633529216051,0.0073596769943833],[0.025938935577869,0.11310502141714,-0.043795835226774],[0.045585408806801,-0.052797760814428,0.1450751721859]],[[0.078466229140759,0.055170219391584,-0.099931746721268],[0.0066446959972382,0.019179239869118,-0.08169836550951],[0.033621836453676,-0.044371794909239,-0.027432160452008]],[[0.01589847356081,0.059226356446743,0.051321588456631],[-0.020743837580085,0.029691025614738,0.033088535070419],[0.015073692426085,0.031043002381921,-0.079446986317635]],[[0.037236899137497,-0.034649319946766,-0.036826089024544],[-0.0070100924931467,0.065652638673782,0.02308913692832],[0.065931111574173,0.044270295649767,0.05974043533206]],[[-0.12368469685316,-0.052332405000925,-0.035870354622602],[0.05631909519434,-0.04513131454587,-0.064740791916847],[0.028869669884443,-0.1719309091568,0.02477422170341]],[[0.073094353079796,0.060146011412144,-0.083583042025566],[0.043254241347313,-0.10635989904404,0.020433669909835],[0.035178620368242,0.041455991566181,-0.0059885582886636]],[[-0.021240457892418,-0.029728109017015,-0.016487348824739],[0.0044472189620137,-0.053410708904266,-0.017872083932161],[0.071098938584328,0.012301889248192,-0.0055596721358597]],[[-0.038492746651173,0.0022895995061845,0.036400925368071],[0.069063194096088,0.03849209472537,0.0041292170062661],[0.063565723598003,0.014650930650532,-0.10858332365751]],[[-0.0096734287217259,0.0038579413667321,-0.011919348500669],[-0.0052884365431964,0.03533012419939,-0.019208265468478],[0.06739454716444,0.035999204963446,-0.042696014046669]],[[0.063011921942234,0.034779623150826,0.041817557066679],[-0.0092994216829538,-0.040379025042057,-0.003199654398486],[0.021626381203532,-0.047262813895941,-0.023976780474186]],[[-0.062685325741768,-0.031557839363813,-0.069475159049034],[0.0024419114924967,-0.092671893537045,-7.8202814620454e-05],[0.02736228145659,0.040497492998838,0.041607711464167]],[[-0.0041352338157594,-0.0058482093736529,0.065940618515015],[0.05531270802021,0.10384405404329,0.069835186004639],[-0.053413800895214,0.043286994099617,-0.078884243965149]],[[-0.03594958409667,-0.016997275874019,-0.0030264433007687],[-0.067871145904064,-0.069537147879601,-0.024899933487177],[0.002751243300736,-0.039426013827324,0.022242546081543]],[[-0.028828471899033,-0.0036876080557704,-0.085259564220905],[-0.06464821845293,-0.085214629769325,-0.065156675875187],[0.019275717437267,0.0093063153326511,-0.064852856099606]],[[-0.068434491753578,0.012549816630781,0.021896135061979],[0.025502705946565,0.0091958614066243,-0.010244463570416],[0.11657259613276,-0.030596133321524,0.07919355481863]],[[0.00048200329183601,-0.057986874133348,0.061183478683233],[0.041705790907145,0.0096381632611156,0.015246580354869],[-0.02924937941134,0.029263084754348,-0.056502040475607]],[[0.0044672470539808,0.055437318980694,0.060219079256058],[0.017863295972347,0.0059849419631064,0.031235722824931],[0.00364048499614,-0.094840385019779,-0.0677784755826]],[[-0.12616780400276,-0.08940402418375,0.015463770367205],[0.0464095659554,-0.0092663755640388,-0.013143092393875],[-0.010891301557422,0.058855570852757,0.054094310849905]],[[0.011122906580567,-0.035545967519283,-0.026702174916863],[0.012706528417766,0.0082958471029997,-0.0016160086961463],[0.084889300167561,0.013188478536904,-0.03367093577981]],[[-0.056510038673878,-0.0028510394040495,0.067600205540657],[-1.6081998182926e-05,-0.053917367011309,0.078643679618835],[0.046876154839993,-0.060375466942787,-0.0071709589101374]],[[-0.019752059131861,0.12637534737587,0.0087917782366276],[0.016443032771349,-0.018103117123246,-0.038015548139811],[-0.058438796550035,-0.020624898374081,-0.010906155221164]],[[0.075996659696102,-0.0026345469523221,0.13751703500748],[0.020557414740324,0.020128712058067,-0.026205811649561],[-0.071031861007214,-0.082178436219692,0.051205649971962]],[[0.15680778026581,-0.027351751923561,-0.044691924005747],[0.048706512898207,0.054844189435244,-0.038255106657743],[0.077520333230495,0.025600155815482,-0.0076545155607164]],[[0.074478983879089,-0.0013763030292466,0.0423364341259],[-0.010430287569761,0.018206870183349,0.015998130664229],[-0.053767304867506,0.032814439386129,-0.068783931434155]],[[-0.030869327485561,-0.080629758536816,-0.038767289370298],[0.06744496524334,0.074747286736965,-0.046867690980434],[-0.01923743262887,-0.025915589183569,0.012698306702077]],[[-0.050427179783583,0.001691200886853,-0.027796648442745],[0.014983062632382,-0.068116329610348,-0.020601926371455],[0.0049396925605834,-0.022901335731149,-0.013397829607129]],[[0.006958597805351,0.018398700281978,0.13286158442497],[0.022611543536186,0.02243796736002,0.029689060524106],[0.044212717562914,0.06236868724227,0.045998685061932]],[[-0.050056573003531,-0.0013674378860742,0.0020062669645995],[-0.051002807915211,0.051510315388441,-0.059263553470373],[-0.010538086295128,0.042793542146683,0.010857836343348]],[[0.086384385824203,-0.034587133675814,-0.0099172201007605],[-0.015959402546287,-0.05169564858079,0.036458153277636],[-0.029175011441112,-0.07217563688755,0.10407737642527]],[[-0.077266745269299,0.0041393861174583,0.093278244137764],[-0.00492974370718,-0.045114737004042,0.04037307202816],[0.094424434006214,0.045320227742195,0.062125328928232]],[[-0.055553808808327,0.025742614641786,0.035159073770046],[-0.024587403982878,0.0080345859751105,-0.00032179252593778],[0.031603895127773,-0.0060445186682045,-0.046292096376419]],[[-0.05168442428112,0.011869478970766,-0.059616535902023],[-0.019539019092917,0.031377855688334,-0.0070292293094099],[0.022415721789002,-0.089988023042679,0.027842985466123]],[[-0.069814257323742,-0.065737403929234,0.020182006061077],[-0.037693340331316,0.038382466882467,0.0069764535874128],[0.0062753618694842,0.0089062247425318,0.080290943384171]],[[0.041263848543167,0.05342797935009,-0.10028104484081],[0.015229649841785,0.025860648602247,0.047324568033218],[-0.054338693618774,-0.043203342705965,-0.082910671830177]],[[0.0052590961568058,0.012328008189797,-0.008982727304101],[0.059393871575594,0.067687749862671,0.0090481359511614],[0.017253933474422,0.023353165015578,-0.071404382586479]],[[0.01211997680366,-0.057769317179918,0.072776131331921],[-0.026505788788199,-0.034230824559927,-0.0035721054300666],[0.012577678076923,0.0179412830621,-0.081372067332268]],[[0.036112114787102,0.12971174716949,0.098652511835098],[-0.087489284574986,0.0090243648737669,-0.00044898837222718],[0.011321446858346,-0.062563449144363,-0.077206276357174]],[[-0.075027853250504,-0.084402091801167,-0.14921300113201],[-0.038808416575193,-0.022834215313196,-0.079189747571945],[0.016442168504,-0.0040487637743354,-0.0857278034091]]],[[[-0.013534596189857,-0.050164230167866,0.025613754987717],[0.058232959359884,-0.01104835793376,0.037153489887714],[-0.013168410398066,0.041047681123018,-0.03003160096705]],[[-0.033244755119085,-0.040465068072081,-0.077853284776211],[-0.014423793181777,-0.0058517693541944,0.057954732328653],[0.018441841006279,0.014513713307679,-0.05521908774972]],[[0.050055388361216,-0.025899430736899,0.022233907133341],[-0.039917837828398,-0.071012198925018,-0.023419378325343],[-0.041402079164982,-0.027055388316512,-0.0053420602343976]],[[0.047446511685848,0.052513752132654,-0.1078033670783],[-0.070945180952549,0.036929968744516,0.035395495593548],[-8.1223857705481e-05,-0.057532045990229,0.020879557356238]],[[0.013170224614441,-0.029759665951133,-0.030924657359719],[-0.077264755964279,0.045394759625196,-0.037542581558228],[-0.0017474315827712,0.042866066098213,-0.094442419707775]],[[0.027005359530449,0.050863105803728,0.013752616010606],[-0.027201775461435,0.065311588346958,-0.03514363989234],[0.044305555522442,0.024542214348912,0.0084682526066899]],[[0.0015592300333083,0.024095600470901,0.079369008541107],[-0.02089049294591,0.039049170911312,-0.0035863628145307],[-0.048150438815355,0.011930732056499,-0.012212567962706]],[[0.04956879094243,0.032574910670519,0.014236135408282],[-0.01494462788105,0.011820806190372,0.034063581377268],[0.0011266281362623,0.021618578583002,-0.084878861904144]],[[0.046343602240086,0.054187305271626,0.015828786417842],[0.016215672716498,0.060726955533028,0.017052132636309],[-0.067363157868385,-0.034816555678844,-0.03559822961688]],[[-0.056008156388998,0.021068660542369,-0.03410691767931],[0.0043349983170629,0.049004249274731,0.029164578765631],[-0.021862516179681,-0.04491638764739,0.0032380577176809]],[[0.047776728868484,-0.063092097640038,0.034958299249411],[-0.094927348196507,-0.0018434060038999,-0.026975374668837],[0.0083942916244268,0.029144182801247,-0.03457222878933]],[[0.015805177390575,0.01873829588294,0.05534091591835],[0.12054324895144,0.052540514618158,0.053704243153334],[0.02660721167922,0.0011662481119856,-0.0046432623639703]],[[0.051316238939762,0.023365681990981,0.053800653666258],[-0.0044011399149895,0.083323642611504,0.036100514233112],[0.025927595794201,-0.049562431871891,-0.0018599798204377]],[[-0.038055796176195,-0.020919235423207,-0.022244827821851],[-0.035915575921535,0.073283918201923,-0.099912531673908],[0.051212519407272,-0.013315349817276,3.6357188946567e-05]],[[-0.028036594390869,-0.074527345597744,-0.048342939466238],[0.0078470464795828,-0.040282171219587,0.068641409277916],[0.069179937243462,0.014989023096859,0.010993993841112]],[[-0.01458871550858,-0.075300559401512,-0.040444597601891],[-0.011531142517924,0.00086222577374429,0.036699846386909],[-0.0072364252991974,0.027521945536137,-0.091114714741707]],[[0.030575847253203,0.062970079481602,-0.055149424821138],[-0.011597677133977,-0.066098228096962,-6.9338027969934e-05],[-0.060372162610292,-0.040644589811563,-0.010545969940722]],[[0.022410530596972,-0.01950217038393,0.046821143478155],[0.016234392300248,-0.029876004904509,0.015477383509278],[0.044853832572699,-0.10127909481525,-0.044372279196978]],[[0.047607660293579,-0.056463543325663,-0.051866315305233],[-0.040064200758934,-0.013056189753115,0.017740525305271],[-0.027280654758215,-0.063205160200596,0.056575793772936]],[[0.045767318457365,-0.012206180021167,0.030000096186996],[0.0012846129247919,0.035978619009256,0.078275069594383],[-0.031178656965494,-0.036972600966692,-0.053154654800892]],[[-0.037548147141933,-0.07383980602026,0.040574409067631],[-0.053051885217428,0.072811760008335,-0.031976241618395],[0.0015187219250947,-0.061206307262182,0.05672175437212]],[[0.0071194223128259,-0.0043763117864728,-0.010271149687469],[0.046780131757259,0.11436029523611,0.058501005172729],[-0.058152049779892,0.04052709788084,-0.005077273119241]],[[0.0095851859077811,-0.057646345347166,0.034108765423298],[0.019199034199119,0.049945931881666,0.10251956433058],[0.00092225288972259,-0.035260077565908,-0.046085581183434]],[[0.041400752961636,-0.046453449875116,0.040140230208635],[-0.061345614492893,-0.072468899190426,-0.013598056510091],[0.026608424261212,-0.079436436295509,-0.071297653019428]],[[0.088899806141853,-0.088556744158268,0.013943845406175],[0.038183815777302,0.06759787350893,-0.081040218472481],[0.03296722471714,0.054471969604492,0.066925339400768]],[[0.036004595458508,-0.017507096752524,0.027593212202191],[0.029844658449292,0.037201710045338,-0.013431904837489],[-0.041719816625118,-0.039419539272785,-0.075844094157219]],[[0.01756945066154,-0.010785356163979,0.028594279661775],[0.039818774908781,-0.010952915064991,-0.024474255740643],[0.02805413864553,-0.032018590718508,0.011575532145798]],[[0.043299529701471,0.10318651795387,0.071853868663311],[0.043163321912289,0.0048600933514535,-0.029724920168519],[-0.050246242433786,-0.0013894804287702,0.043900240212679]],[[-0.0072231446392834,0.0069334260188043,0.084777638316154],[0.0056899366900325,-0.022980300709605,-0.04757022112608],[-0.049491830170155,0.019590057432652,-0.0035725980997086]],[[-0.013317516073585,-0.018258199095726,-0.022496828809381],[-0.0060876053757966,-0.014704954810441,0.034569375216961],[0.029410069808364,0.020298464223742,0.015332772396505]],[[-0.02514486014843,-0.032657884061337,0.05651942640543],[0.021040555089712,-0.030770182609558,0.016830679029226],[0.056909453123808,0.021469172090292,0.030750773847103]],[[0.019292488694191,0.023802474141121,0.066648051142693],[-0.059921368956566,-0.012870439328253,-0.066946409642696],[0.040218211710453,-0.013499102555215,-0.089056566357613]],[[-0.004051020834595,0.03442196175456,0.035643611103296],[0.036661494523287,0.0039693545550108,-0.01906356215477],[0.075051732361317,0.0351289100945,-0.041474062949419]],[[-0.014764663763344,-0.046645626425743,-0.040229476988316],[-0.019120972603559,-0.006043020170182,-0.012674308381975],[0.047040563076735,0.025585940107703,0.014011517167091]],[[0.051530338823795,0.014280069619417,0.00065371952950954],[0.059063423424959,0.046998560428619,0.058690447360277],[-0.08079931139946,0.013313620351255,-0.040451999753714]],[[-0.050277758389711,0.022333908826113,-0.010532372631133],[0.04795790836215,-0.038151506334543,-0.02581531740725],[0.032092712819576,0.043710015714169,-0.011769607663155]],[[0.0079015959054232,-0.055841539055109,-0.036082964390516],[0.050553034991026,-0.075510986149311,-0.0063369935378432],[0.0042296987958252,0.041725136339664,-0.0075158844701946]],[[-0.075707487761974,0.028577597811818,-0.020111775025725],[-0.050891637802124,-0.11090497672558,0.013743312098086],[0.036199897527695,0.03099611774087,-0.0054819220677018]],[[-0.0036210597027093,-0.049970678985119,0.03207178786397],[0.019546227529645,0.027098326012492,-0.022946948185563],[-0.038790229707956,-0.0099054165184498,0.0012605867814273]],[[-0.064881436526775,0.020381156355143,-0.026916181668639],[0.027416117489338,-0.026460727676749,0.035061411559582],[0.070779487490654,-0.041313502937555,-0.031568922102451]],[[0.0075179431587458,0.025577113032341,-0.0048033823259175],[-0.04144636169076,-0.011258704587817,-0.027344323694706],[0.076039418578148,-0.0052245524711907,0.041660916060209]],[[-0.016482124105096,0.017852790653706,-0.027844177559018],[0.0054175951518118,0.016885498538613,0.03869217261672],[-0.014111476950347,0.025189001113176,-0.0091211162507534]],[[-0.066333763301373,0.012024085968733,-0.0047472752630711],[0.03450994938612,-0.02592652104795,-0.0055857766419649],[-0.015554619021714,0.065181739628315,-0.064870096743107]],[[-0.037620630115271,-0.014281435869634,0.0055142631754279],[0.03187557682395,-0.080182440578938,-0.03378052264452],[-0.0093529131263494,-0.041142463684082,-0.051622483879328]],[[-0.018419828265905,0.043675746768713,-0.01179816480726],[0.00095235806657001,0.015698742121458,-0.024577528238297],[0.063454128801823,0.046376649290323,0.11804594099522]],[[-0.12176614999771,0.011478302069008,-0.078490562736988],[0.0018766495632008,0.0013136480702087,0.016849249601364],[-0.0109938737005,0.011809128336608,-0.021993815898895]],[[-0.052138462662697,0.057336114346981,-0.083779074251652],[-0.046925880014896,-0.014912565238774,-0.0079761072993279],[-0.029353583231568,0.062771409749985,0.02951374463737]],[[0.029563212767243,-0.094764269888401,0.085104405879974],[-0.0026207659393549,-0.0068034832365811,-0.0088447909802198],[0.039629224687815,0.055534958839417,-0.044902216643095]],[[-0.033722378313541,-0.010615115985274,0.067098632454872],[-0.0085420403629541,-0.10279341042042,0.031380172818899],[0.034521639347076,0.035991471260786,0.004100407473743]],[[-0.012843066826463,-0.014543810859323,-0.014161479659379],[-0.036041684448719,-0.00058050232473761,0.042245205491781],[0.040835000574589,0.017777619883418,-0.027900099754333]],[[-0.024543145671487,0.056380081921816,-0.0702009126544],[-0.031416542828083,-0.09271402657032,-0.040509164333344],[0.073095366358757,0.05137899890542,-0.01061449572444]],[[0.0099397143349051,0.011330436915159,0.042758788913488],[-0.0015585474902764,-0.016683932393789,0.019564144313335],[0.04047804698348,-0.0079045575112104,0.021948024630547]],[[-0.03662807866931,-0.048464819788933,-0.066649287939072],[-0.037723727524281,-0.027622478082776,-0.015399144031107],[-0.013501027598977,-0.029333621263504,0.015363151207566]],[[-0.0488834194839,-0.017016617581248,0.015703096985817],[-0.042699120938778,0.025152713060379,-0.0062268902547657],[0.0063070980831981,0.032411236315966,0.061561085283756]],[[0.038065426051617,0.029801653698087,0.01225892920047],[-0.063833557069302,-0.012445864267647,-0.092499420046806],[-0.07099162787199,0.0027125622145832,-0.014402023516595]],[[0.029831063002348,0.045158453285694,0.088184930384159],[0.037190318107605,-0.016810534521937,-0.045283824205399],[0.075298696756363,-0.006621325854212,-0.011788277886808]],[[-0.034508254379034,0.074991077184677,0.0054683927446604],[0.014766618609428,0.004357764031738,-0.006568243727088],[0.0064130648970604,-0.018436830490828,-0.060206931084394]],[[0.045303385704756,0.031101871281862,-0.034245725721121],[-0.022366888821125,-0.0057382956147194,0.094864301383495],[-0.028580728918314,-0.030121501535177,-0.0074141267687082]],[[0.0023867890704423,-0.013193265534937,-0.037235230207443],[-0.013086365535855,-0.012667268514633,0.011073858477175],[0.0075781722553074,-0.019746152684093,0.077993795275688]],[[-0.0041254432871938,0.013118864968419,0.017898049205542],[-0.041498690843582,0.015132104046643,-0.06080361828208],[0.036719180643559,-0.01763909868896,0.012195048853755]],[[0.0057576377876103,0.0009100598981604,0.12851831316948],[-0.072603948414326,-0.073416136205196,0.060626201331615],[-0.16011726856232,-0.0084980893880129,0.0243622045964]],[[0.092072151601315,0.0067887390032411,-0.0029462464153767],[-0.030622702091932,-0.053233843296766,0.014786290936172],[0.020948745310307,0.0063604465685785,0.038305148482323]],[[0.026378661394119,-0.069808177649975,0.054006386548281],[0.003239358542487,0.013661233708262,-0.035060249269009],[-0.016125550493598,0.0015317352954298,0.037221118807793]],[[0.064980164170265,0.038915894925594,0.012704651802778],[-0.024692742154002,-0.021091533824801,-0.040201414376497],[0.0022531643044204,0.013540605083108,0.014624238014221]],[[-0.020502928644419,-0.066906057298183,-0.0048500089906156],[-0.0098093217238784,0.0032956555951387,-0.017034994438291],[0.022030176594853,0.072110146284103,0.049459293484688]],[[0.0065294471569359,-0.024381291121244,0.042523808777332],[0.026561062783003,-0.1104993224144,-0.054494608193636],[-0.041065771132708,0.039803862571716,-0.045467644929886]],[[-0.035261683166027,0.049870561808348,0.029121151193976],[0.056816529482603,-0.095232658088207,0.021604653447866],[-0.014802091754973,0.032272070646286,0.039265144616365]],[[0.023710381239653,0.011972880922258,0.016017092391849],[-0.082376390695572,0.012869413942099,0.067272737622261],[0.0015011462382972,0.051729705184698,0.008560081012547]],[[-0.013634667731822,0.028616361320019,0.0034416350536048],[0.0083641959354281,-0.07590052485466,0.027643585577607],[-0.061344731599092,0.056711308658123,0.087608508765697]],[[-0.029243027791381,0.014128526672721,0.00047014065785334],[-0.063619911670685,-0.04927859082818,0.044241223484278],[0.035165920853615,0.029901804402471,0.042791094630957]],[[0.0046395412646234,-0.053403716534376,-0.0090261548757553],[0.029343558475375,0.031292397528887,0.0073150796815753],[-0.01999325491488,-0.10090462863445,0.044704519212246]],[[0.0074460753239691,0.011815429665148,-0.0051896781660616],[-0.074217192828655,-0.021509705111384,0.023283580318093],[-0.0087448814883828,0.048607181757689,-0.03032991103828]],[[0.050980858504772,0.0013573457254097,0.0079738423228264],[0.054635431617498,0.092920228838921,-0.10509087890387],[-0.067396730184555,0.021016472950578,-0.012278510257602]],[[0.030989199876785,-0.0018211380811408,-0.033580899238586],[0.037158194929361,0.028266368433833,-0.047737646847963],[0.010926964692771,0.063208252191544,0.026578759774566]],[[-0.01746216788888,0.0099037764593959,0.038674641400576],[0.026507133617997,0.046020340174437,0.037098668515682],[0.13565535843372,0.025243114680052,0.021055299788713]],[[0.018154639750719,-0.018621530383825,-0.0011679833987728],[-0.050258547067642,0.11010216921568,-0.040315866470337],[-0.0088569894433022,-0.043003510683775,-0.0087954932823777]],[[-0.022218769416213,-0.017263447865844,0.065834760665894],[-0.010974625125527,0.042357254773378,-0.049271594733],[-0.01012410223484,-0.053383305668831,-0.044739317148924]],[[0.0080316988751292,0.056231867522001,0.017455713823438],[-0.032204817980528,0.0117650590837,-0.06041843816638],[-0.016581393778324,-0.022448597475886,-0.046273715794086]],[[-0.029248928651214,0.02805832028389,0.042906332761049],[0.018936276435852,0.054268889129162,-0.0078155482187867],[-0.026436811313033,-0.035307727754116,0.041644096374512]],[[0.0040660421364009,0.063073195517063,0.026531996205449],[0.081004336476326,0.028133003041148,-0.034349620342255],[0.058884784579277,0.0075518353842199,0.086912542581558]],[[0.03157339990139,-0.019860664382577,-0.0048709171824157],[-0.088453449308872,0.017252817749977,0.027592530474067],[-0.04156655818224,-0.041977871209383,-0.041810367256403]],[[-0.066863588988781,0.0052509238012135,0.01514602266252],[0.001417338848114,-0.075220830738544,0.035664733499289],[0.060350894927979,0.03638519346714,0.027191208675504]],[[0.0062583666294813,-0.078510381281376,0.062593013048172],[0.082861624658108,0.013310461305082,-0.018619948998094],[-0.009633757174015,0.030390551313758,0.029136193916202]],[[-0.036192759871483,-0.035377532243729,-0.0091958530247211],[0.016488401219249,-0.080150000751019,0.0080065056681633],[0.0087046194821596,0.031542915850878,-0.057340420782566]],[[-0.11369577050209,-0.015508229844272,0.032143205404282],[-0.011600704863667,-0.026114162057638,0.00067944737384096],[-0.060530327260494,-0.020197365432978,0.027584632858634]],[[0.0028390528168529,0.043899465352297,0.002529775025323],[0.0098149934783578,0.028719866648316,0.021497160196304],[0.025569725781679,0.029631713405252,-0.019593285396695]],[[-0.011265560984612,-0.017598604783416,0.033597536385059],[-0.043298579752445,-0.061384290456772,-0.016674015671015],[-0.0041161132976413,0.020444175228477,-0.0061241071671247]],[[-0.10302823781967,0.018975680693984,-0.0069794137962162],[0.010342430323362,0.016641084104776,0.042007803916931],[0.027971742674708,0.005704574752599,-0.0068877306766808]],[[0.039183080196381,0.032098866999149,-0.026639811694622],[-0.030666785314679,0.0047147609293461,-0.026616625487804],[-0.044849120080471,-0.034290336072445,-0.021222254261374]],[[0.095598146319389,-0.012417878955603,-0.0062585757113993],[-0.021065136417747,-0.025463158264756,-0.094080798327923],[-0.060703661292791,0.016005918383598,0.061811715364456]],[[0.021503394469619,-0.039615746587515,-0.012120445258915],[0.023124773055315,-0.062411345541477,0.030562689527869],[-0.095385335385799,-0.067151114344597,-0.018041711300611]],[[-0.0073777050711215,0.041116733103991,0.0089774848893285],[-0.045411966741085,0.005062447860837,-0.045614533126354],[0.010238749906421,-0.00032172101782635,-0.021591303870082]],[[-0.051093835383654,-0.04922704398632,-0.016719853505492],[-0.013912945985794,0.041616160422564,-0.01227712072432],[-0.039041522890329,-0.020185444504023,-0.02891637198627]],[[0.036238241940737,0.08985835313797,0.042140629142523],[0.055648319423199,-0.055177431553602,-0.040175471454859],[0.0084079084917903,0.029283540323377,0.01565158367157]],[[0.0081010665744543,0.011954453773797,-0.0046126386150718],[-0.020703183487058,-0.027886701747775,0.0072223730385303],[0.01168320607394,0.020493872463703,0.004200370516628]],[[0.083955161273479,-0.048578854650259,0.079138159751892],[0.048587877303362,0.083160147070885,-0.0098077086731791],[-0.00058380281552672,-0.067538700997829,-0.063261449337006]],[[0.040277026593685,-0.012796405702829,-0.041020791977644],[-0.00041887647239491,-0.061176612973213,-0.012538486160338],[0.0024982807226479,0.043159730732441,0.007400584872812]],[[0.050293419510126,-0.0026187603361905,-0.085017457604408],[0.025765884667635,0.089768595993519,0.0047465753741562],[-0.054015014320612,0.0091533791273832,-0.018498132005334]],[[0.090299651026726,0.02722916379571,0.028649371117353],[-0.022612506523728,-0.067951641976833,0.0046648280695081],[-0.021040454506874,-0.018801644444466,0.0042600627057254]],[[0.00040757298120297,-0.084267780184746,-0.042332541197538],[0.026009345427155,0.058018546551466,-0.014281446114182],[0.023867275565863,-0.035647928714752,-0.015664611011744]],[[-0.0060965572483838,0.046277590095997,-0.040445320308208],[-0.051985364407301,-0.090492121875286,-0.066318579018116],[-0.033364254981279,0.0064355782233179,-0.032039023935795]],[[-0.019398521631956,0.089584298431873,-0.11192681640387],[0.018261585384607,0.058112226426601,-0.0088076060637832],[0.048916231840849,0.019619857892394,-0.016138933598995]],[[0.020065711811185,0.036612570285797,0.027730090543628],[-0.070368394255638,0.0094746937975287,-0.013756534084678],[0.034103069454432,-0.091519452631474,0.036477871239185]],[[0.0020572578068823,-0.014937634579837,0.013515598140657],[0.028093310073018,0.010901877656579,0.051070749759674],[-0.055007990449667,0.012358935549855,-0.073213063180447]],[[0.024244813248515,-0.017040643841028,0.00091072235954925],[-0.059531427919865,0.021338125690818,-0.012999598868191],[-0.063438147306442,-0.037439852952957,0.048812016844749]],[[-0.0048259282484651,-0.035522691905499,0.032774087041616],[0.013307151384652,-0.022028632462025,0.033806581050158],[-0.0054827029816806,-0.021688615903258,-0.023897524923086]],[[0.060421288013458,-0.0097722467035055,-0.02062825858593],[-0.000747911632061,0.038327142596245,-0.028202157467604],[-0.041525200009346,-0.047243639826775,-0.038328986614943]],[[-0.064253032207489,-0.082251653075218,0.00568569265306],[-0.021340727806091,0.0090006971731782,-0.028230622410774],[0.010577470064163,0.018279647454619,-0.0034943644423038]],[[0.042421150952578,0.035091113299131,-0.025119481608272],[-0.004794055595994,0.048761453479528,0.0030619562603533],[-0.0286700502038,-0.089224457740784,0.013775648549199]],[[-0.024525877088308,-0.030274704098701,-0.0098210172727704],[0.027752675116062,-0.016172779724002,-0.017081435769796],[-0.090153843164444,0.029723262414336,0.055149208754301]],[[0.024417988955975,0.051302172243595,0.037470355629921],[0.026326034218073,0.048809122294188,0.0030932810623199],[0.055632792413235,-0.039041146636009,-0.001447930932045]],[[0.0095079988241196,0.033823452889919,0.026950389146805],[-0.0087989252060652,0.028806252405047,0.029619934037328],[0.033650733530521,0.10364453494549,-0.021511042490602]],[[-0.058867499232292,-0.068199470639229,0.037916041910648],[0.090429738163948,0.013801493681967,0.0024104139301926],[-0.0020746842492372,-0.035138141363859,-0.0033306907862425]],[[-0.068462237715721,0.07585459202528,-0.068269953131676],[0.094651408493519,-0.034329805523157,0.024015381932259],[-0.029064944013953,0.050493780523539,-0.076418533921242]],[[-0.037892814725637,0.016972299665213,0.0083976350724697],[-0.044644765555859,-0.020334780216217,-0.017304228618741],[-0.053781047463417,0.027832467108965,-0.028674948960543]],[[0.035589467734098,0.077115476131439,0.087421216070652],[0.000556543644052,-0.060721639543772,-0.045204717665911],[0.027009295299649,-0.0062941275537014,0.053434543311596]],[[0.013282340019941,0.068913698196411,-0.0067425114102662],[-0.09797964990139,-0.0094361137598753,-0.020013991743326],[0.04107404127717,-0.040179472416639,0.053164716809988]],[[-0.036446701735258,-0.083122953772545,-0.032421942800283],[-0.0028233830817044,-0.02487320266664,-0.013880357146263],[-0.010018701665103,-0.035318315029144,0.0091295083984733]],[[0.048222728073597,0.059333447366953,-0.00652567576617],[0.036686223000288,-0.071618407964706,-0.043452419340611],[-0.13066485524178,-0.012206352315843,0.00059275951934978]],[[-0.0049329735338688,0.007725739851594,-0.044805124402046],[-0.026758657768369,0.0016140601364896,-0.0017692239489406],[-0.0038893993478268,0.010367471724749,-0.03759727627039]],[[-0.081250704824924,-0.032034110277891,-0.013761986047029],[-0.041758511215448,-0.00012888667697553,-0.029243122786283],[0.002255322644487,0.028362648561597,0.0067096729762852]],[[0.015526582486928,0.025450700893998,-0.021111827343702],[0.11353121697903,-0.021020855754614,0.011069169268012],[-0.0043800626881421,0.070321388542652,-0.041150387376547]],[[-0.03110484033823,0.055951528251171,0.060570895671844],[0.029358403757215,-0.015611107461154,0.047312531620264],[0.009575909934938,0.026314873248339,0.040136333554983]],[[-0.064849369227886,0.0045908764004707,-0.012910074554384],[0.020660517737269,-0.06815842539072,-0.015930455178022],[-0.0021334949415177,-0.097635298967361,0.020098805427551]],[[-0.010573321022093,0.021290961652994,-0.062886580824852],[-0.016254466027021,0.079852655529976,-0.0076521351002157],[0.019215265288949,0.0024255299940705,0.0059002484194934]],[[-0.0060407035052776,-0.052889499813318,0.075404159724712],[0.064875580370426,-0.018519472330809,0.0096444981172681],[-0.012384865432978,0.0087334578856826,-0.011671613901854]],[[-0.029524210840464,0.024238891899586,-0.012713545002043],[-0.021223751828074,0.016187762841582,-0.0096589149907231],[-0.045261323451996,0.04973828420043,-0.024024914950132]],[[-0.021172421053052,0.037392359226942,-0.011975523084402],[-0.042059142142534,0.0079064350575209,-0.023704683408141],[0.0078422334045172,0.036405108869076,0.027186965569854]]],[[[-0.052054591476917,-0.032260216772556,0.059430807828903],[-0.0099726729094982,-0.039197973906994,0.044108703732491],[0.048819433897734,-0.0068387784995139,0.014015506953001]],[[0.035960126668215,-0.050820663571358,-0.020830092951655],[-0.01901233009994,-0.0026695800479501,0.022031802684069],[-0.04154696315527,0.0013932435540482,0.019510416314006]],[[-0.030044883489609,-0.04613421112299,-0.06550394743681],[0.10862965881824,-0.024156559258699,0.00049928930820897],[0.025078499689698,0.047362636774778,0.14628714323044]],[[-0.086998142302036,0.017478220164776,0.04015913233161],[-0.05944599211216,-0.0090098166838288,-0.032340865582228],[0.00051838014042005,-0.029357010498643,0.039106603711843]],[[0.014456512406468,0.049721736460924,-0.028515880927444],[0.032174132764339,-0.0012885053874925,-0.051511600613594],[-0.019293880090117,0.048422537744045,-0.066440559923649]],[[0.077980488538742,0.0024818039964885,0.010249897837639],[-0.008877957239747,-0.016575949266553,0.021783651784062],[0.052966613322496,-0.026840860024095,0.06837422400713]],[[-0.016878690570593,0.035591080784798,0.069198802113533],[-0.14891986548901,0.032477207481861,0.031924799084663],[-0.0014061933616176,-0.012629964388907,0.12979477643967]],[[0.076371058821678,-0.02062738314271,-0.034048486500978],[0.017922054976225,0.067055284976959,0.083818227052689],[-0.02023577131331,-0.017806930467486,0.011772253550589]],[[-0.029010949656367,-0.12567268311977,0.038031611591578],[-0.023547176271677,-0.043430898338556,-0.033156424760818],[-0.025546617805958,0.0056890095584095,-0.016954753547907]],[[0.040310513228178,-0.046420402824879,-0.00088979420252144],[0.0062761064618826,0.041830781847239,-0.0097377160564065],[-0.078820630908012,0.034494668245316,-0.04607480019331]],[[-0.0055088149383664,0.012016925960779,-0.063492864370346],[0.01654851436615,-0.043506171554327,0.064992003142834],[-0.016907311975956,0.0031018808949739,-0.050509553402662]],[[-0.041174773126841,-0.0040028453804553,-0.027895448729396],[-0.021445356309414,0.028378522023559,-0.045827329158783],[0.004153186455369,-0.055508106946945,-0.0060467356815934]],[[0.10014731436968,0.046352233737707,0.010740150697529],[-0.011098544113338,-0.11449389904737,0.061734188348055],[0.083849869668484,0.017234710976481,0.079568535089493]],[[0.046817272901535,0.013578073121607,-0.021956142038107],[-0.014168925583363,-0.024096483364701,0.010715846903622],[0.0037594581954181,0.13654686510563,0.028446020558476]],[[0.0068477890454233,-0.076421238481998,0.025184923782945],[-0.015903750434518,-0.024190474301577,-0.030115405097604],[0.025652833282948,0.081117555499077,0.0092774527147412]],[[0.065839722752571,0.028725415468216,-0.0023061255924404],[-0.045909944921732,0.027237299829721,0.022162575274706],[0.06137578189373,-0.06054811924696,0.074796818196774]],[[0.049447789788246,-0.044069327414036,0.060124766081572],[0.0053700255230069,0.076131604611874,-0.12750189006329],[-0.010434309020638,0.039420284330845,-0.0069928644225001]],[[0.060275867581367,0.043259970843792,0.05595438554883],[0.0096352770924568,-0.02708725631237,-0.018174236640334],[-0.04511746391654,-0.0093113677576184,0.0050410600379109]],[[-0.042923152446747,0.041720438748598,-0.048012491315603],[0.059676583856344,8.7866115791257e-05,0.042387515306473],[0.07313284277916,-0.013836779631674,0.028994586318731]],[[-0.017986780032516,0.098220437765121,-0.0020407524425536],[0.0065914699807763,0.012954710051417,0.019976623356342],[0.060352526605129,0.0088254194706678,0.029820322990417]],[[-0.072215773165226,-0.0076257069595158,0.059618063271046],[-0.012599671259522,-0.014433595351875,0.065462037920952],[-0.043596986681223,-0.054695207625628,-0.020264131948352]],[[-0.01431196834892,-0.026750229299068,-0.043533124029636],[-0.014820438809693,0.033377133309841,0.024367453530431],[0.059413198381662,0.042950287461281,0.0023260749876499]],[[-0.018652884289622,-0.0021964199841022,0.07313460111618],[-0.019091596826911,0.011493131518364,-0.00072219071444124],[0.032724775373936,-0.018138520419598,-0.0645991563797]],[[-0.065876789391041,-0.011844313703477,-0.036911852657795],[-0.028124768286943,0.0068746493197978,0.018823122605681],[0.041757415980101,0.011424670927227,-0.0091953380033374]],[[-0.027279576286674,0.0016055076848716,0.047124937176704],[-0.053507354110479,-0.05509564653039,-0.022988630458713],[0.011972028762102,0.052420366555452,0.032142668962479]],[[0.027714805677533,-0.019409086555243,0.028020272031426],[-0.065198183059692,0.039359144866467,0.07045815885067],[0.054714635014534,0.014110308140516,0.03510582074523]],[[-0.097683809697628,-0.052514169365168,-0.02825640887022],[0.025933936238289,0.11616054922342,0.040788680315018],[0.02609546855092,-0.030351521447301,-0.054175850003958]],[[-0.031042985618114,0.023820141330361,0.026608990505338],[0.0091796517372131,0.0025598786305636,-0.016388865187764],[0.036638129502535,-0.059234578162432,-0.07976520806551]],[[-0.00013314870011527,0.029618427157402,-0.043027333915234],[-0.083417117595673,0.080781295895576,0.003398914122954],[0.017154091969132,0.025696104392409,-0.042321775108576]],[[-0.085346713662148,0.046496503055096,0.025747265666723],[0.013962629251182,-0.10115500539541,0.028999019414186],[-0.036462195217609,-0.056642923504114,0.048562906682491]],[[0.0018881008727476,-0.0035500708036125,-0.045586075633764],[0.028170106932521,-0.0074704047292471,0.021818852052093],[0.019987815991044,-0.013194292783737,0.046327386051416]],[[0.089281193912029,-0.036142196506262,-0.0016819710144773],[-0.0060852617025375,-0.067434899508953,-0.030570887029171],[0.060686808079481,-0.041337713599205,-0.0033025594893843]],[[-0.005883299279958,-0.016637405380607,-0.059219133108854],[-0.034456424415112,-0.038420937955379,0.0027274889871478],[0.0097855823114514,-0.064027018845081,0.054790005087852]],[[0.018142081797123,0.0099602853879333,0.029751744121313],[-0.045328859239817,-0.0079988241195679,-0.018573945388198],[0.10517261922359,0.079073160886765,0.053508341312408]],[[0.060533411800861,0.018953612074256,0.0083953244611621],[0.0071576219052076,0.01402354054153,0.036815337836742],[0.046913836151361,0.017009630799294,-0.0015753549523652]],[[0.014742932282388,0.069056466221809,0.019330395385623],[-0.035543292760849,0.030403977259994,0.013550260104239],[0.042283967137337,0.030177626758814,0.067206621170044]],[[-0.061289317905903,0.045028258115053,0.015549878589809],[0.0050977976061404,0.1097693964839,-0.0069672679528594],[-0.0018858397379518,-0.019596954807639,-0.0050127077847719]],[[-0.039550203830004,0.0052257352508605,-0.010384414345026],[0.030313713476062,0.018376983702183,0.057351030409336],[-0.052343931049109,0.0016877228626981,0.017734088003635]],[[-0.0016043945215642,0.048061817884445,0.048232488334179],[-0.030262632295489,-0.038539297878742,-0.022120991721749],[-0.0094244703650475,0.061168286949396,-0.0066626574844122]],[[-0.048366095870733,0.00094647449441254,-0.06175446882844],[-0.012175777927041,-0.0080404439941049,-0.0079850386828184],[0.034262448549271,0.016720259562135,0.055200710892677]],[[-0.060490548610687,-0.002054997254163,-0.089921928942204],[0.0027627656236291,-0.02985861338675,-0.028021272271872],[0.058799244463444,0.048395272344351,-0.005676235537976]],[[-0.038366749882698,0.016899144276977,0.054892674088478],[0.030556492507458,-0.02716532163322,0.015015088021755],[0.097990326583385,0.01105260848999,0.054430261254311]],[[0.047369536012411,0.0012700139777735,0.025823313742876],[-0.031653471291065,-0.0068528088741004,0.011243688873947],[0.031863253563643,0.072410777211189,0.04224094375968]],[[-0.026932213455439,-0.012056795880198,-0.0083423191681504],[0.040933195501566,0.019270498305559,0.033326156437397],[0.10211520642042,-0.05140084028244,-0.065935030579567]],[[-0.035817608237267,-0.018515320494771,0.025107828900218],[-0.058345727622509,-0.013790319673717,0.033484127372503],[-0.0070096682757139,0.036298867315054,0.085010923445225]],[[0.0939105078578,0.010849699378014,-0.081340551376343],[0.082709349691868,0.11428936570883,-0.027567042037845],[-0.011009514331818,-0.0036548741627485,0.016474390402436]],[[-0.028058841824532,-0.012949395924807,0.072450801730156],[-0.020022531971335,-0.050577264279127,-0.021627262234688],[0.00060673872940242,-0.0027369146700948,0.10000960528851]],[[0.014846153557301,0.053079646080732,-0.046120095998049],[0.034665435552597,-0.066047914326191,-0.062191013246775],[0.1070162653923,-0.088922902941704,-0.072045058012009]],[[0.027882574126124,-0.025662632659078,0.01222647447139],[0.020167347043753,-0.039675641804934,-0.022956233471632],[0.027786750346422,-0.036151245236397,-0.011243505403399]],[[-0.032915320247412,-0.056350339204073,-0.02152899093926],[-0.055269159376621,-0.0066708540543914,0.021136848255992],[-0.051319167017937,0.062760770320892,0.11388978362083]],[[-0.064008004963398,0.0056758094578981,0.030680349096656],[-0.022781396284699,-0.0093983551487327,-0.014504517428577],[-0.00059490714920685,0.069407619535923,-0.0053671239875257]],[[0.0076770526356995,0.020055759698153,0.12787273526192],[0.036077577620745,-0.055018369108438,-0.016323266550899],[0.047913614660501,-0.04218090698123,0.0059743886813521]],[[0.028848864138126,-0.012490313500166,0.05459026992321],[0.0026433339808136,-0.07024310529232,-0.065734513103962],[-0.042345181107521,0.066597789525986,0.0049974475987256]],[[0.044859576970339,-0.042005885392427,-0.025726247578859],[0.022644588723779,0.020296901464462,0.11304999142885],[-0.079490676522255,0.0083841290324926,0.066714160144329]],[[-0.037546571344137,-0.030119055882096,0.00034268721356057],[0.025698367506266,-0.015659289434552,0.070855051279068],[0.055695556104183,-0.035056419670582,-0.045212265104055]],[[0.0357914455235,-0.06034154817462,-0.045620784163475],[0.057270020246506,0.01934852078557,0.0098173189908266],[0.02064611390233,0.019115312024951,0.056108374148607]],[[0.083714216947556,-0.010286667384207,0.00052970182150602],[0.080889843404293,0.067676462233067,0.045629799365997],[-0.021864159032702,0.043044604361057,-0.013035140000284]],[[-0.050153456628323,-0.0036160219460726,0.059871736913919],[-0.0023601928260177,-0.0062336716800928,0.03765531629324],[-0.020542053505778,0.010134883224964,0.008354976773262]],[[0.035271182656288,0.048420581966639,-0.071501202881336],[0.01373677328229,0.0030302326194942,0.0046724900603294],[0.047024883329868,0.021833753213286,-0.034396480768919]],[[0.0094143841415644,0.017121084034443,0.053651969879866],[0.048788141459227,0.021713191643357,-0.026380330324173],[0.031886089593172,0.030288811773062,0.010432280600071]],[[0.050135832279921,-0.008569460362196,-0.044877335429192],[-0.13012740015984,0.036853898316622,-0.014501247555017],[-0.069930821657181,-0.021708663552999,-0.050156123936176]],[[0.065240330994129,0.01446970552206,0.071124352514744],[0.002918632235378,-0.024033224210143,-0.036867290735245],[0.036735817790031,-0.042650830000639,-0.040540274232626]],[[-0.057873748242855,-0.015071623027325,0.024389991536736],[0.079125434160233,-0.033472720533609,0.080639056861401],[-0.061408407986164,0.05198996886611,0.023177394643426]],[[0.079389497637749,-0.060443814843893,-0.072926372289658],[-0.029257584363222,0.010770130902529,0.015855865553021],[-0.020276362076402,0.0044908015988767,0.047938987612724]],[[0.036265656352043,-0.0051454468630254,0.047213453799486],[-0.00096190063050017,0.041892323642969,0.019369119778275],[0.043433852493763,0.0010294315870851,-0.0092188306152821]],[[0.07321459800005,0.023106431588531,0.040984105318785],[0.092235058546066,0.058267671614885,0.074605964124203],[0.024109695106745,0.035483494400978,0.028362523764372]],[[0.070589229464531,0.049825001507998,-0.014723741449416],[-0.0046915463171899,-0.050439238548279,-0.026888977736235],[0.057379029691219,0.035320177674294,0.013743621297181]],[[-0.054560124874115,-0.0084357252344489,0.029523659497499],[-0.047093410044909,-0.03031605668366,-0.059891685843468],[0.027575451880693,-0.043666642159224,0.057613272219896]],[[0.12376229465008,-0.016678147017956,0.096608184278011],[-0.058547403663397,0.0098860999569297,0.082428283989429],[0.0029533174820244,0.056266501545906,0.012974904850125]],[[0.0054131965152919,-0.039358861744404,0.028681222349405],[0.080262564122677,-0.0020086956210434,0.0055256974883378],[0.0045697344467044,-0.015640195459127,0.033476080745459]],[[0.03509172424674,0.07502419501543,0.052440531551838],[0.074993468821049,0.01423385925591,0.051416635513306],[0.011430606245995,0.0078709488734603,0.015045626088977]],[[0.021425040438771,0.076586790382862,-0.0086106890812516],[-0.025614913552999,-0.042395796626806,0.0034099502954632],[-0.013406376354396,-0.082846768200397,0.041150011122227]],[[-0.021476363763213,-0.015989312902093,0.058414127677679],[0.059884905815125,-0.0052974610589445,-0.017260782420635],[0.034983098506927,-0.011219187639654,-0.022493787109852]],[[0.056722454726696,-0.0064552086405456,0.010630265809596],[-0.014807919040322,-0.027105798944831,0.042983911931515],[0.0086314976215363,-0.076610781252384,0.0021172987762839]],[[0.013091239146888,0.011132970452309,-0.013791195116937],[-0.038025911897421,-0.010846288874745,0.048521317541599],[0.02266526222229,0.099542930722237,0.065793238580227]],[[-0.035772800445557,0.0083622206002474,-0.028740936890244],[0.0086482558399439,-0.0097252810373902,-0.023014826700091],[-0.037477668374777,-0.021948158740997,0.019193882122636]],[[0.077550381422043,0.028768163174391,0.043392479419708],[-0.029563125222921,-0.051016572862864,-0.0070939622819424],[-0.043904211372137,-0.014391624368727,0.010121532715857]],[[-0.019871091470122,0.093834303319454,0.016137244179845],[0.095017567276955,0.060814533382654,0.029164552688599],[-0.018026646226645,0.033026408404112,0.075975842773914]],[[0.026565939188004,-0.033530905842781,0.021858939900994],[0.06016168743372,0.027998212724924,-0.023587832227349],[-0.0015554734272882,0.033598601818085,-0.093415595591068]],[[0.038758788257837,0.031610928475857,0.031228885054588],[0.031403079628944,0.05012484267354,-0.065942421555519],[-0.034644681960344,0.037060339003801,0.10531140863895]],[[0.032030019909143,0.016146576032043,-0.018668489530683],[-0.00030773822800256,0.027083357796073,-0.010538422502577],[-0.00045196211431175,0.02177026309073,-0.025003913789988]],[[-0.13228623569012,-0.021931691095233,-0.032585352659225],[-0.035877235233784,0.0093795666471124,0.056246422231197],[0.025281364098191,0.050032205879688,0.038973238319159]],[[0.06140698119998,-0.038859665393829,0.036800105124712],[-0.0057587833143771,-0.022413104772568,-0.040647700428963],[0.12447698414326,-0.062449112534523,0.037093687802553]],[[-0.00010158825898543,-0.027869950979948,-0.0015138712478802],[0.066270999610424,0.10340990126133,-0.026032572612166],[-0.018055822700262,0.039817053824663,0.084349945187569]],[[0.10313416272402,0.023295508697629,-0.049233615398407],[-0.072337977588177,0.055094670504332,0.076064340770245],[-0.032936975359917,0.039063073694706,0.025234406813979]],[[0.019625732675195,-0.040084965527058,-0.061765637248755],[0.003353686304763,0.050752442330122,-0.03050190769136],[-0.029735798016191,0.072768419981003,0.0017806633841246]],[[0.054856728762388,0.078579291701317,-0.0081955092027783],[0.076501555740833,0.033806651830673,-0.0018064613686875],[-0.0055134873837233,0.045182354748249,0.046364367008209]],[[0.018610937520862,0.058843098580837,-0.010348029434681],[0.022016180679202,0.029196806252003,0.026504451408982],[-0.061058208346367,-0.022790037095547,0.0099064707756042]],[[0.014996364712715,0.043657090514898,0.0076479408890009],[-0.028110738843679,-0.040832415223122,0.042519208043814],[0.032162562012672,-0.037481430917978,0.033141475170851]],[[-0.023377196863294,0.049257382750511,-0.047370206564665],[0.12336145341396,-0.014958279207349,0.0023995856754482],[0.030096460133791,-0.028368404135108,-0.04785342887044]],[[-0.041262544691563,0.0065648518502712,0.085215270519257],[0.00026487134164199,0.011500022374094,0.0048805437982082],[-0.02486358396709,-0.02943279966712,0.0074421064928174]],[[0.045286182314157,0.0014678360894322,-0.030956344678998],[-0.015157667919993,-0.032159857451916,0.0077516194432974],[-0.091115616261959,-0.011501836590469,-0.02510922215879]],[[-0.063722364604473,0.020785940811038,-0.0096469521522522],[-0.037970554083586,0.017450733110309,-0.043404918164015],[-0.034348633140326,0.024387914687395,-0.0068415561690927]],[[0.11287614703178,0.012751416303217,-0.022915048524737],[0.040872067213058,-0.031196290627122,-0.032581977546215],[0.037704478949308,0.046489100903273,0.019182473421097]],[[0.0098957717418671,-0.0049702594988048,0.0063385856337845],[-0.073149345815182,0.0042065735906363,-0.0046690772287548],[0.096058249473572,-0.12371079623699,0.0039853104390204]],[[0.0069541032426059,-0.033517114818096,-0.021930089220405],[0.00033729479764588,0.00065175461350009,-0.010932385921478],[0.028474375605583,0.019215965643525,0.022986009716988]],[[0.088802516460419,0.019806519150734,-0.018573112785816],[0.019081711769104,-0.01911317370832,0.012263827957213],[-0.04300507158041,0.045238628983498,-0.040920708328485]],[[0.067500606179237,-0.0043535381555557,-0.0055753942579031],[-0.03071092069149,0.0076552350074053,0.0046328869648278],[0.056185711175203,0.015542042441666,0.055992104113102]],[[0.040646977722645,0.063592806458473,0.016525164246559],[-0.054974038153887,0.00434515113011,-0.0098663503304124],[0.0028333077207208,-0.046353582292795,-0.033418331295252]],[[-0.035810086876154,0.02759070135653,0.12397937476635],[-0.0014499280368909,0.026612248271704,-0.008415600284934],[0.0088984062895179,0.0022877459414303,0.034480184316635]],[[0.03341094776988,0.04889615252614,-0.024997809901834],[0.043388236314058,-0.020975846797228,-0.026537127792835],[0.085525199770927,-0.0022748445626348,0.019680343568325]],[[-0.070559412240982,-0.024558754637837,0.00453200051561],[0.027784610167146,-0.020419431850314,-0.050704043358564],[0.054258368909359,-0.047214306890965,0.0090708043426275]],[[0.015937523916364,-0.037318270653486,0.0021462780423462],[0.0054634194821119,0.0025931575801224,0.00057392509188503],[0.00095891661476344,-0.003175831399858,0.013546735979617]],[[-0.05596062541008,-0.031284980475903,-0.044975332915783],[-0.0066218380816281,-0.055265109986067,0.0095865968614817],[0.0030056892428547,-0.067613832652569,-0.046925593167543]],[[0.053387083113194,0.076590783894062,0.0013374967966229],[-0.0040859687142074,0.075409196317196,-0.042224235832691],[0.043699257075787,0.042367808520794,-0.084834523499012]],[[-0.051142673939466,-0.052659891545773,0.068937987089157],[-0.0045060263946652,0.045743845403194,-0.027123177424073],[0.046402588486671,0.042808998376131,0.07474722713232]],[[0.017807358875871,-0.021021276712418,0.024248601868749],[0.070451110601425,-0.0042196186259389,0.017299331724644],[0.05799650773406,0.072318248450756,0.095048747956753]],[[-0.060657851397991,0.04611337557435,0.080438271164894],[-0.042677752673626,-0.025098018348217,-0.01485744304955],[0.062302846461535,-0.0020062804687768,0.01009448710829]],[[0.0043602497316897,0.037633158266544,-0.008533887565136],[0.060296773910522,-0.011371355503798,-0.029164249077439],[0.077065534889698,-0.02589437738061,0.034422248601913]],[[0.027415227144957,-0.0019690284971148,0.040040340274572],[-0.00529202260077,-0.0011604302562773,0.038371507078409],[-0.014285313896835,0.0019367672502995,0.0049913818947971]],[[0.030142191797495,0.062200389802456,-0.050911072641611],[-0.026178548112512,-0.02895649895072,0.026104938238859],[-0.018099393695593,-0.0084815295413136,0.017863985151052]],[[0.013459918089211,0.028709448873997,-0.090351514518261],[-0.04527310654521,0.012404640205204,0.016453616321087],[0.029757015407085,-0.036486849188805,0.038994982838631]],[[-0.083516962826252,-0.047801285982132,-0.050602972507477],[-0.0085987970232964,-0.019217109307647,-0.017310874536633],[-0.086547531187534,-0.028328828513622,0.020571233704686]],[[0.0085318898782134,-0.042970325797796,-0.030757775530219],[-0.036950565874577,-0.065771110355854,-0.020974151790142],[-0.040151339024305,-0.047347117215395,0.0091242045164108]],[[-0.00076137203723192,-0.012222283519804,0.0047601209953427],[0.0081680985167623,-0.020560031756759,0.032104443758726],[0.041875049471855,-0.0031067780219018,-0.058410972356796]],[[-0.015808513388038,-0.033044822514057,-0.038548689335585],[0.028415840119123,-0.088446564972401,-0.009613623842597],[-0.0022869664244354,-0.049289416521788,0.053472351282835]],[[-0.032670229673386,0.10891410708427,0.010595162399113],[-0.0017346238018945,0.022263681516051,-0.013719981536269],[-0.073426552116871,0.074496611952782,0.014771929010749]],[[-0.012343388982117,-0.011852418072522,0.010465598665178],[0.012972839176655,0.06153579801321,-0.051687814295292],[-0.039381325244904,-0.026125749573112,-0.00038832452264614]],[[-0.053797382861376,-0.10068412125111,-0.07512678951025],[-0.0054208138026297,0.015401623211801,0.054003354161978],[-0.063036516308784,-0.01798883639276,-0.057774037122726]],[[-0.022948086261749,0.081957504153252,0.040783919394016],[-0.039687290787697,0.050781417638063,-0.019864790141582],[0.058107871562243,0.15054050087929,-0.047788869589567]],[[-0.02560499869287,0.026427770033479,-0.0064830905757844],[0.032601594924927,-0.032490212470293,-0.041305914521217],[-0.0048523205332458,-0.01848778873682,0.011905202642083]],[[-0.026047976687551,-0.046106237918139,0.017373569309711],[-0.023139145225286,0.0028049058746547,-0.033368822187185],[0.0098207369446754,-0.050929881632328,0.070648677647114]],[[0.043638367205858,0.00471011409536,-0.030371641740203],[-0.020246392115951,0.014118488878012,0.024439536035061],[-0.050899147987366,0.0027064338792115,-0.02033756300807]],[[0.032336417585611,-0.024359663948417,-0.015174384228885],[0.020302753895521,-0.038014799356461,-0.010557853616774],[-0.0066843843087554,-0.0084304390475154,-0.086341850459576]],[[0.00033045629970729,-0.024231737479568,-0.0074393409304321],[0.043860550969839,-0.0067781344987452,0.036075953394175],[-0.0080230804160237,0.057719796895981,-0.071273982524872]],[[-0.0060855099000037,0.018324436619878,-0.025293234735727],[-0.036473665386438,-0.00017365871462971,-0.029360990971327],[-0.050914574414492,0.046179849654436,-0.0021556762512773]],[[0.037373077124357,0.019068036228418,0.0058563966304064],[0.067404702305794,8.7105960119516e-05,-0.049929335713387],[-0.028526578098536,-0.013060703873634,-0.0058779618702829]],[[-0.010949579998851,0.023855706676841,-0.033016119152308],[0.084518633782864,0.067504748702049,-0.084644138813019],[0.019683191552758,0.0058327876031399,-0.056070420891047]]],[[[-0.030116502195597,0.0027167724911124,0.040804445743561],[-0.039042022079229,-0.0051484652794898,0.012852613814175],[-0.0049856100231409,0.0027668478433043,-0.01980965398252]],[[0.057184621691704,-0.003621659707278,-0.024004312232137],[-0.087308034300804,0.032237824052572,-0.01396245136857],[-0.032289702445269,-0.028267454355955,0.005940938834101]],[[-0.010089742951095,0.042576961219311,0.093272604048252],[-0.0022369613870978,0.042321272194386,-0.0074591161683202],[-0.033726412802935,-0.0059825549833477,0.058646015822887]],[[-0.040964085608721,0.075800508260727,0.044942978769541],[-0.014882523566484,-0.023513777181506,-0.010472430847585],[-0.035918544977903,0.051855627447367,-0.008599397726357]],[[0.016555638983846,0.013322927057743,0.072464697062969],[-0.0094239600002766,-0.012051034718752,0.0037952638231218],[0.11329484730959,-0.021541435271502,0.017333175987005]],[[0.040962617844343,0.048254169523716,0.015016818419099],[0.024393040686846,-0.00031960714841262,-0.02748554572463],[-0.016949905082583,0.01958841830492,0.011650976724923]],[[0.046397943049669,-0.012966119684279,0.026861842721701],[0.011003255844116,0.019188791513443,0.066121086478233],[0.030466234311461,0.0017026826972142,0.044023439288139]],[[0.18213441967964,0.026144845411181,-0.01232395786792],[-0.0088045811280608,-0.035482611507177,0.064016617834568],[-0.010916016064584,-0.013377488590777,-0.022539867088199]],[[0.091327957808971,0.011549465358257,0.080799154937267],[0.008699961937964,-0.031272996217012,0.087734661996365],[0.05332001298666,0.017070386558771,0.026160210371017]],[[0.072262123227119,-0.027985904365778,0.035573419183493],[-0.018597364425659,0.0033784555271268,0.024032458662987],[0.040171541273594,0.0075036138296127,-0.010862362571061]],[[0.0018622950883582,-0.032983113080263,-0.019281243905425],[-0.034189946949482,0.014358518645167,-0.0070539866574109],[0.029470559209585,0.0397919267416,-0.0034174534957856]],[[-0.011578530073166,0.0017869175644591,0.035967197269201],[-0.036727819591761,-0.012357360683382,0.076160661876202],[0.012712330557406,0.053817082196474,-0.047533750534058]],[[0.052360933274031,-0.0039181336760521,-0.0086206560954452],[-0.0012267207494006,0.030373333021998,0.018442798405886],[0.094101816415787,0.030170334503055,0.096692271530628]],[[0.04514204710722,0.0085800951346755,-0.0084118088707328],[-0.03808132186532,0.035205107182264,0.01900202780962],[0.10462142527103,-0.024890840053558,-0.014210735447705]],[[0.0096111986786127,0.038943067193031,-0.011967081576586],[0.0091989878565073,-0.0031668667215854,-0.033374361693859],[0.0060224020853639,-0.021096207201481,0.016092834994197]],[[-0.037297442555428,-0.0042436853982508,0.010258288122714],[-0.079029902815819,0.023000966757536,-0.014427708461881],[-0.0079162055626512,-0.010558797046542,0.11051357537508]],[[0.043422412127256,0.053098566830158,0.060806266963482],[0.05406216531992,0.040723606944084,-0.013856914825737],[-0.014295490458608,-0.036494147032499,-0.0025081329513341]],[[0.0054660732857883,0.0094783613458276,-0.039502635598183],[-0.039907049387693,-0.019189624115825,-0.029746450483799],[0.034595862030983,-0.0084249302744865,-0.052298694849014]],[[-0.04241818189621,0.032548166811466,-0.088959060609341],[0.05819384381175,-0.01102211792022,0.02757122553885],[0.0096130426973104,0.052810184657574,0.013169500976801]],[[0.020857939496636,0.044656828045845,-0.032482516020536],[-0.065942004323006,0.026666546240449,-0.035179939121008],[0.013787222094834,0.00082812627078965,0.061434023082256]],[[0.0030894270166755,0.0030788606964052,0.03208950906992],[0.025564532727003,0.028055138885975,-0.045718807727098],[0.0016796493437141,-0.00048482196871191,0.019414182752371]],[[0.095510765910149,0.041613508015871,-0.038755644112825],[-0.055179584771395,-0.053584612905979,0.049937359988689],[-0.0042634732089937,0.065847717225552,0.096742734313011]],[[-0.020698793232441,-0.069593027234077,0.018228901550174],[-0.033744979649782,-0.01760845258832,0.0070487237535417],[-0.05252929776907,-0.010217513889074,-0.088727787137032]],[[-0.0051665566861629,0.040954150259495,0.015651734545827],[-0.046877786517143,0.042531490325928,0.0054949321784079],[-0.080405920743942,-0.0059357928112149,0.022053549066186]],[[-0.12850491702557,0.037057038396597,-0.036530312150717],[0.020120425149798,0.054053079336882,0.0092980032786727],[-0.014826322905719,-0.038675509393215,-0.0071601010859013]],[[0.053851973265409,-0.030400156974792,0.052008911967278],[-0.042281839996576,-0.027479413896799,-0.057416595518589],[-0.034577187150717,0.05609642714262,0.022838700562716]],[[-0.023895116522908,-0.053749650716782,0.027569316327572],[0.057859547436237,-0.017245475202799,0.0166353918612],[0.061749372631311,-0.013505309820175,-0.046111568808556]],[[-0.021078398451209,0.084786251187325,0.054635096341372],[0.028037408366799,0.024998692795634,0.051323588937521],[0.029225669801235,-0.053102813661098,-0.065599873661995]],[[0.022257812321186,-0.070427544414997,-0.079986862838268],[0.018536813557148,0.044516537338495,0.0077570346184075],[-0.080370098352432,-0.041025053709745,0.032779641449451]],[[-0.074126720428467,-0.017294866964221,-0.012770988978446],[0.02721281349659,0.028154304251075,0.017727138474584],[0.011725535616279,0.001842871424742,0.018630333244801]],[[-0.041697539389133,0.023350689560175,0.024624675512314],[0.00072227575583383,0.065490573644638,0.050570875406265],[0.016134914010763,0.026548322290182,0.013628119602799]],[[-0.0056564244441688,0.054258808493614,-0.053321190178394],[0.074228897690773,-0.096139311790466,0.10650841891766],[-0.11810649931431,0.014988413080573,0.0030235629528761]],[[0.038670927286148,-0.0091669149696827,0.0205048173666],[-0.015301928855479,-0.069147154688835,0.022056670859456],[0.061868447810411,0.066792778670788,0.0089175095781684]],[[0.077236406505108,-0.03963977843523,-0.030918197706342],[-0.026824783533812,-0.09270042181015,0.0029642502777278],[-0.0057526514865458,0.040625341236591,-0.038058452308178]],[[-0.10058140009642,-0.019252659752965,0.0015254329191521],[0.0032420579809695,-0.061678726226091,0.024217141792178],[0.078683987259865,0.050544183701277,0.014534246176481]],[[-0.036721896380186,0.037149004638195,0.0085644014179707],[0.012602356262505,0.064273722469807,0.020496958866715],[-0.028313459828496,0.020068453624845,0.015489044599235]],[[-0.020405113697052,0.01050447486341,-0.015908848494291],[0.068299680948257,-0.052498172968626,-0.014291825704277],[-0.035206571221352,0.049229390919209,-0.010643330402672]],[[0.0031724742148072,-0.020186088979244,0.018307961523533],[-0.10116722434759,0.073899388313293,0.02719365619123],[0.034780539572239,0.029407421126962,0.093276008963585]],[[0.0083255656063557,-0.034214999526739,-0.00063733721617609],[-0.027844117954373,-0.050054844468832,-0.036279980093241],[0.04894607514143,-0.063248053193092,-0.021701226010919]],[[0.042873065918684,0.092028558254242,0.019534584134817],[0.01457913313061,0.0096369264647365,-0.05569950863719],[0.054756179451942,0.016572142019868,0.0037823673337698]],[[0.042992394417524,0.079214759171009,-0.036076966673136],[-0.0065182028338313,-0.064353488385677,0.005627769511193],[-0.089902445673943,0.029039276763797,-0.015013990923762]],[[0.016753304749727,-0.077582061290741,0.090323396027088],[0.049532372504473,-0.01622511819005,0.084010176360607],[-0.021114999428391,-0.018248958513141,-0.026381853967905]],[[0.099974453449249,0.037483420222998,-0.0070973373949528],[-0.0048576476983726,0.060546569526196,0.033429451286793],[0.051543697714806,0.082241073250771,0.03094451315701]],[[0.038834892213345,-0.078414164483547,0.086323440074921],[0.020396569743752,-0.0043242634274065,-0.035838525742292],[0.064913459122181,-0.09569351375103,-0.02321376465261]],[[-0.014279983006418,0.038679856806993,0.055278368294239],[-0.051554277539253,-0.038963560014963,-0.041191849857569],[0.035342078655958,0.11529682576656,0.054578125476837]],[[0.10508036613464,-0.027808839455247,0.048966087400913],[0.017605591565371,-0.0074125328101218,-0.034496795386076],[0.0042346338741481,0.060308381915092,-0.014853358268738]],[[-0.026230989024043,-0.036118730902672,0.026731841266155],[-0.018520573154092,0.060576323419809,-0.010701122693717],[0.024551739916205,-0.03043569624424,0.034382902085781]],[[-0.01856517791748,-0.054448049515486,-0.01243282109499],[-0.017774280160666,-0.048873469233513,-0.027271674945951],[0.0017234053229913,0.0080683864653111,-0.026507243514061]],[[-0.088511623442173,0.011753432452679,-0.075029648840427],[0.0094420677050948,-0.01576729491353,-0.073149062693119],[-0.043816134333611,-0.021930320188403,-0.015751946717501]],[[-0.04159801453352,0.014224675484002,0.072756923735142],[-0.092183142900467,-0.006306909956038,-0.049984775483608],[-0.10406419634819,-0.039533901959658,0.041712634265423]],[[0.0087042888626456,0.030107265338302,0.019551146775484],[-0.015596115030348,0.043549075722694,-0.014631333760917],[-0.026647979393601,0.017472287639976,-0.010396260768175]],[[-0.0044234981760383,-0.038567673414946,0.089900687336922],[0.036935426294804,0.030910179018974,0.0080127585679293],[-0.028707221150398,0.016893155872822,-0.012586459517479]],[[0.031675886362791,-0.095587968826294,0.014077550731599],[-0.02460815757513,-0.028247449547052,-0.061638813465834],[-0.0048616835847497,-0.035482622683048,0.11211307346821]],[[0.066531233489513,0.037999782711267,0.013486213050783],[0.033122811466455,0.043338168412447,0.011693204753101],[-0.00064462987938896,0.035987608134747,0.074862226843834]],[[-0.0077760685235262,-0.037060979753733,0.018705537542701],[-0.00072005717083812,0.01665760949254,-0.0062140827067196],[0.09130847454071,-0.0055432906374335,-0.0097763426601887]],[[0.022460604086518,-0.13636089861393,-0.052521169185638],[-0.031267490237951,0.088384002447128,0.0093037160113454],[0.066536158323288,-0.035214722156525,-0.012135541066527]],[[-0.015592311508954,0.014989843592048,0.075682401657104],[0.025782443583012,0.064357399940491,0.073202937841415],[-0.036870684474707,0.060558628290892,0.020700862631202]],[[-0.00041673818486743,0.028536234050989,-0.014991600066423],[-0.020426154136658,-0.027116069570184,-0.049641963094473],[-0.038995686918497,0.03592636808753,-0.048015505075455]],[[-0.0072091077454388,0.021584041416645,0.063674204051495],[-0.0056092301383615,0.033968329429626,0.062379874289036],[0.081689961254597,0.037969071418047,-0.023267926648259]],[[0.026610612869263,0.086881496012211,-0.016310961917043],[0.0039780205115676,0.007401613984257,-0.012846194207668],[0.053261633962393,0.087069623172283,0.019161302596331]],[[-0.021047305315733,0.047608237713575,-0.022006807848811],[-0.016383346170187,0.052116893231869,0.02523947507143],[0.013082609511912,-0.0016634203493595,-0.017868772149086]],[[-0.00057844782713801,-0.0049341195262969,-0.11152628064156],[-0.028316361829638,-0.021239873021841,-0.034587439149618],[-0.040978841483593,-0.056201256811619,-0.08144836127758]],[[-0.039050783962011,-0.022506155073643,0.034826833754778],[0.039588879793882,0.045978382229805,0.03504791110754],[0.099805638194084,-0.018341563642025,-0.0068517429754138]],[[0.043121710419655,0.046118509024382,0.021268984302878],[-0.060923997312784,0.040359076112509,0.0075318291783333],[-0.021289555355906,-0.094651155173779,-0.0094824191182852]],[[0.052051521837711,-0.030781349167228,-0.056571088731289],[-0.0085133435204625,-0.018439203500748,0.099446900188923],[0.032198511064053,-0.024614572525024,0.021691834554076]],[[-0.017594419419765,0.13358642160892,0.0033632398117334],[-0.001969083910808,0.067886538803577,-0.048727244138718],[0.048552166670561,-0.020347194746137,0.082050763070583]],[[0.10528168827295,0.012999579310417,-0.044659100472927],[-0.019717404618859,-0.016329687088728,0.063575595617294],[0.005596982780844,0.054202936589718,-0.0048880903050303]],[[-0.02408117428422,0.0071671498008072,0.0099885696545243],[-0.034186743199825,-0.059240885078907,-0.030000828206539],[0.083739534020424,0.050922490656376,0.017945300787687]],[[0.026037734001875,-0.026024803519249,0.05391925573349],[0.0049463100731373,0.064500048756599,0.040476579219103],[-0.062589280307293,0.17302952706814,0.00062569609144703]],[[-0.03026882186532,0.018079733476043,-0.0058489805087447],[0.090853750705719,-0.067671559751034,0.061416048556566],[0.025773495435715,0.052418675273657,-0.042056683450937]],[[-0.029868779703975,0.041323758661747,0.085966862738132],[0.012625461444259,-0.0084261503070593,-0.028055243194103],[0.066126421093941,0.021079750731587,0.030964940786362]],[[-0.00024162675254047,0.0015755912754685,-0.025055166333914],[0.00011800898209913,-0.01965169981122,0.10467191785574],[0.0056424681097269,0.018057994544506,-0.074932083487511]],[[-0.023336477577686,0.00035274346009828,0.057511892169714],[-0.0031187429558486,0.020268283784389,-0.045866120606661],[0.023136617615819,-0.067990683019161,-0.0073437429964542]],[[0.024612924084067,0.050332117825747,0.013075186870992],[-0.041972268372774,-0.0070011792704463,0.044824525713921],[-0.0045392960309982,0.048411622643471,0.03019717335701]],[[-0.021819652989507,0.0064732800237834,0.005720975343138],[0.0068113836459816,0.0023946056608111,0.008292960934341],[0.010311522521079,0.046498119831085,0.083409704267979]],[[0.090521946549416,0.0094173345714808,0.015133715234697],[-0.022236932069063,-0.014963779598475,-0.01242755446583],[-0.043839912861586,0.015518868342042,0.054229512810707]],[[0.05389141663909,-0.038934782147408,-0.07646918296814],[-0.039401162415743,0.00077280460391194,0.068102158606052],[-0.073280572891235,-0.10582438856363,0.022062242031097]],[[0.039296358823776,0.058800913393497,0.0017763590440154],[0.04077173396945,0.11651182174683,0.030667740851641],[0.054094199091196,0.088030904531479,0.079094924032688]],[[0.066258661448956,0.0010983077809215,0.064341455698013],[-0.027231384068727,0.078757308423519,-0.04211413860321],[-0.015411106869578,-0.013016325421631,-0.061816476285458]],[[0.034234326332808,-0.055082980543375,0.093024559319019],[0.0097045572474599,-0.069748379290104,-0.02818900719285],[-0.031202860176563,0.013491955585778,-0.037103895097971]],[[-0.040946509689093,-0.0077211046591401,-0.045369442552328],[0.005956060718745,-0.029135627672076,-0.0028015931602567],[-0.025001600384712,-0.020377065986395,-0.019080076366663]],[[0.030258044600487,0.0096450438722968,-0.014121972024441],[0.0052441037259996,-0.0097474278882146,0.12544572353363],[-0.022579180076718,0.035461865365505,0.0026237822603434]],[[-0.01366863027215,0.043015614151955,0.0025857319124043],[0.037633378058672,0.0084038861095905,0.0605672262609],[-0.013239252381027,-0.013853914104402,0.054253820329905]],[[0.0038759778253734,-0.01445540972054,0.008728139102459],[0.035257283598185,0.039153277873993,-0.034250933676958],[-0.073751129209995,-0.0084194773808122,0.016384180635214]],[[0.049644466489553,0.033336035907269,-0.012552432715893],[-0.04251815751195,0.0741301253438,-0.029366079717875],[-0.056462217122316,-0.028112690895796,-0.05654476955533]],[[-0.013615392148495,-0.038188584148884,-0.028206752613187],[0.02662674896419,-0.094613537192345,0.014633768238127],[-0.038885366171598,0.0091317696496844,-0.023606760427356]],[[0.075080759823322,0.023780247196555,0.0006714157643728],[0.052920661866665,0.080045595765114,0.08618138730526],[0.027683751657605,0.0087325368076563,0.027246657758951]],[[0.097785227000713,-0.013011931441724,-0.025706032291055],[0.034818306565285,-0.054727025330067,-0.0064543928019702],[0.01572229899466,0.022278152406216,-0.077971287071705]],[[-0.038599126040936,0.044599074870348,0.06543181091547],[0.062255248427391,-0.0039161727763712,0.077784918248653],[-0.007316071074456,0.058326568454504,0.048817627131939]],[[-0.066762514412403,0.0074935173615813,-0.0058606807142496],[0.0077622677199543,-0.040195111185312,-0.011950389482081],[0.018704526126385,0.06169779971242,0.00016655593935866]],[[0.050748713314533,0.045367404818535,-0.022664567455649],[0.030387395992875,0.078167207539082,-0.022890483960509],[0.070091940462589,-0.0095814010128379,0.011449282057583]],[[-0.059976849704981,-0.0001716110855341,-0.073055602610111],[0.039982255548239,-0.042057026177645,-0.02753365598619],[-0.051274091005325,0.051395710557699,0.033362321555614]],[[0.06531485915184,0.046666465699673,-0.02145679667592],[-0.045155931264162,-0.062880091369152,0.026111293584108],[0.02391691878438,-0.056650128215551,0.029025757685304]],[[0.059672333300114,-0.011286712251604,-0.034088294953108],[0.028027245774865,0.01966667175293,-0.057902865111828],[0.099630370736122,0.0207409709692,0.0071408520452678]],[[0.014941425994039,0.011005827225745,-0.044979829341173],[-0.075977191329002,0.034385908395052,0.028169361874461],[0.068960912525654,-0.058753684163094,-0.01538709923625]],[[-0.03235662728548,0.030225273221731,-0.068653836846352],[-0.058645848184824,0.054912243038416,-0.030743286013603],[0.031019683927298,0.080292753875256,-0.0024225378874689]],[[0.031427640467882,-0.01838287897408,0.0082243103533983],[0.031596008688211,-0.010597301647067,0.016360506415367],[-0.060822069644928,-0.045272573828697,0.011809088289738]],[[0.027237990871072,0.075771450996399,0.020287675783038],[0.028616286814213,-0.017903260886669,0.057393353432417],[0.065661877393723,0.067223288118839,0.027750303968787]],[[0.050726838409901,0.060133349150419,-0.025382146239281],[0.0040540155023336,-0.014286176301539,-0.044605605304241],[0.036661598831415,0.023139927536249,-0.014328513294458]],[[-0.010725635103881,-0.016245791688561,0.057812429964542],[-0.023629210889339,-0.030587939545512,0.0084638856351376],[0.026094179600477,-0.021048439666629,-0.017053604125977]],[[-0.020146384835243,-0.061415154486895,0.037836063653231],[-0.0096091032028198,-0.011250977404416,-0.021699348464608],[-0.027832593768835,-0.028910169377923,-0.0092838983982801]],[[-0.020659279078245,0.079588800668716,-0.043726284056902],[0.046203069388866,0.035146504640579,-0.010856248438358],[0.044414967298508,0.042869962751865,0.018952187150717]],[[-0.00034611998125911,-0.025147311389446,0.060807593166828],[0.0089407535269856,-0.074098668992519,0.077369809150696],[0.058836288750172,0.030570538714528,0.013883377425373]],[[-0.062468882650137,-0.036583039909601,-0.045143093913794],[-0.011004316620529,-0.04988220334053,0.062164261937141],[-0.042535744607449,-0.088521026074886,-0.040126226842403]],[[-0.040725965052843,0.0040746848098934,0.079569481313229],[0.051972381770611,0.018352318555117,0.033418390899897],[0.013667241670191,0.0262013040483,0.0045908954925835]],[[0.076844803988934,-0.032856725156307,-0.0099608032032847],[-0.040094930678606,0.015175610780716,-0.032275307923555],[-0.036930371075869,-0.042816981673241,-0.021429294720292]],[[0.092588171362877,0.029310652986169,0.053816832602024],[0.02670924179256,0.018673392012715,0.048864513635635],[-0.012512949295342,-0.020743599161506,0.074335664510727]],[[-0.0034795519895852,0.014089846052229,-0.11830639839172],[-0.024929504841566,0.032027762383223,0.049738153815269],[0.083900727331638,0.0059889256954193,0.030484523624182]],[[0.0049057663418353,0.028522444888949,0.064787812530994],[0.0089158629998565,-0.013907209038734,-0.022759603336453],[0.072910621762276,-0.050378125160933,0.061044752597809]],[[-0.036130372434855,0.022291798144579,-0.01091555505991],[-0.011271346360445,-0.049716211855412,0.054695136845112],[-0.0062890667468309,0.040425568819046,-0.10050738602877]],[[0.011837277561426,-0.00036495746462606,-0.07090101391077],[0.0083543621003628,0.033828731626272,0.058274235576391],[-0.059972926974297,-0.022603826597333,0.019717633724213]],[[-0.013938230462372,-0.078549340367317,0.013651493936777],[-0.027999963611364,0.012666816823184,-0.0439083725214],[-0.067555472254753,-0.0056379963643849,-0.10380245745182]],[[-0.082916103303432,-0.0017930306494236,0.010482930578291],[-0.035715255886316,-0.038101695477962,-0.017939433455467],[0.035787884145975,-0.041920568794012,0.04720351472497]],[[0.039592657238245,0.0065223197452724,-0.050195645540953],[-0.011330752633512,-0.024514682590961,-0.0073157446458936],[-0.047156170010567,0.039943501353264,-0.059319641441107]],[[-0.079505130648613,-0.03651962056756,-0.0046072928234935],[-0.011287255212665,-0.090123325586319,-0.055896449834108],[-0.052666448056698,0.0040329624898732,0.027899973094463]],[[0.055724713951349,-0.0017076740041375,0.0040538618341088],[-0.048624601215124,-0.020686073228717,0.080546349287033],[-0.069823950529099,-0.035504564642906,0.016249150037766]],[[0.066371761262417,0.058625098317862,0.001615843269974],[-0.027118312194943,0.12989549338818,0.019508237019181],[0.062378402799368,0.073766686022282,0.015712082386017]],[[0.048084069043398,-0.068143106997013,-0.020507132634521],[0.015538014471531,0.015786819159985,-0.045312020927668],[0.028880452737212,0.014610279351473,-0.0037500876933336]],[[0.005201555788517,-0.10311642289162,-0.1117819622159],[-0.050551697611809,-0.025440495461226,-0.010015790350735],[-0.0080707333981991,0.046236138790846,0.060972161591053]],[[0.079341992735863,-0.0026188585907221,-0.053298648446798],[0.084902495145798,-0.010463201440871,0.09855130314827],[0.054819457232952,0.052644528448582,0.017015863209963]],[[0.0046052085235715,-0.033895045518875,-0.0024636038579047],[-0.060628797858953,-0.013705364428461,-0.026744946837425],[0.057221528142691,0.017418626695871,-0.011761567555368]],[[0.0091222319751978,-0.092133961617947,0.035766255110502],[-0.031410381197929,0.012543521821499,-0.031627878546715],[-0.030836181715131,0.065350376069546,-0.026711996644735]],[[0.024447739124298,-0.073850132524967,-0.027215447276831],[-0.011183978058398,-0.067265719175339,-0.041488990187645],[-0.039882823824883,0.0041795745491982,-0.051460437476635]],[[0.036178573966026,0.012022280134261,0.033813267946243],[0.023995094001293,-0.014857890084386,0.030506441369653],[0.0092788711190224,0.018571564927697,0.061628088355064]],[[-0.0015545093920082,-0.025025704875588,-0.027588052675128],[0.055917635560036,0.0064153363928199,0.047129638493061],[0.10839641094208,0.0056595974601805,0.065092995762825]],[[-0.018776088953018,-0.04251391813159,0.004508170299232],[-0.011119109578431,-0.013709126040339,-0.043537434190512],[-0.038285829126835,0.052687808871269,0.018165545538068]],[[0.0043619819916785,0.089611083269119,0.054706700146198],[0.068849936127663,0.050018597394228,-0.013547290116549],[0.015482353046536,0.055279940366745,0.09739612787962]],[[0.057886749505997,-0.029072429984808,0.060174476355314],[-0.042192235589027,0.028567351400852,0.11081691086292],[0.086005948483944,0.0015706743579358,0.0065804435871542]]],[[[-0.032908629626036,-0.095943242311478,-0.012055315077305],[-0.065686658024788,0.0055046151392162,-0.091158926486969],[0.12981244921684,0.055900976061821,-0.013598253019154]],[[-0.058944389224052,0.046228241175413,-0.026537185534835],[0.047739379107952,-0.11383086442947,-0.071073889732361],[-0.086844868957996,-0.082204014062881,-0.10335202515125]],[[0.081112511456013,-0.044843152165413,-0.086142264306545],[-0.056245222687721,-0.12313359975815,0.061070192605257],[0.062034454196692,-0.041948910802603,-0.013859812170267]],[[0.014352734200656,-0.029326386749744,-0.023287506774068],[-0.052074424922466,0.11840879172087,0.20894913375378],[-0.12187061458826,0.022192671895027,-0.016332382336259]],[[0.012557274661958,0.15437541902065,-0.057413849979639],[0.032251115888357,-0.088845327496529,0.044069174677134],[-0.015970913693309,0.041640017181635,-0.10004383325577]],[[0.028330767527223,-0.073886841535568,-0.057393498718739],[0.0086058899760246,0.010035228915513,0.042758278548717],[0.008591846562922,0.0014387272531167,0.039661627262831]],[[-0.064528375864029,-0.082722522318363,-0.017929185181856],[0.14631077647209,0.15661469101906,0.011694938875735],[0.015122921206057,0.038613818585873,0.011953601613641]],[[0.016513425856829,0.12684962153435,-0.13678728044033],[-0.042881835252047,-0.045889083296061,-0.033109340816736],[0.075463943183422,-0.031984452158213,-0.14921157062054]],[[0.022020250558853,0.098133452236652,0.069224461913109],[0.032696265727282,-0.070883989334106,0.0093470979481936],[-0.13205115497112,-0.071906849741936,-0.11266376078129]],[[0.031757734715939,-0.0026694715488702,0.014166129752994],[-0.077257066965103,0.029140245169401,-0.058346204459667],[-0.0036754044704139,-0.052504293620586,0.030855821445584]],[[-0.043914657086134,0.12866635620594,-0.096262030303478],[0.0058174398727715,-0.01270795520395,-0.030795257538557],[-0.012024586088955,-0.10448397696018,-0.18146523833275]],[[0.018643459305167,0.024984762072563,-0.12140254676342],[0.053201839327812,-0.077457427978516,0.0063943108543754],[0.03863025829196,0.040504321455956,0.0087463045492768]],[[0.062498968094587,-0.049107868224382,-0.040882341563702],[-0.012650239281356,-0.16499356925488,-0.085984081029892],[0.059756234288216,-0.073470048606396,0.0085451127961278]],[[-0.071677267551422,-0.092010721564293,-0.11083120107651],[0.020459767431021,0.18514184653759,-0.069107189774513],[0.043020594865084,-0.046148527413607,0.03459795191884]],[[0.14904983341694,0.10066170245409,0.10107006132603],[-0.14020033180714,-0.033323064446449,0.11715891212225],[0.10075820237398,0.022891748696566,-0.0077444082126021]],[[-0.055912353098392,-0.072244055569172,-0.01180433947593],[-0.04360905662179,0.11560285836458,-0.046376716345549],[-0.032253161072731,-0.11800511926413,-0.075999140739441]],[[-0.090893462300301,-0.10646995902061,-0.17279481887817],[0.11718901246786,-0.031484182924032,0.033378597348928],[-0.067950822412968,0.009861727245152,0.063484638929367]],[[-0.056843239814043,-0.064758718013763,0.11145389080048],[0.012435205280781,-0.002462794771418,-0.0060609742067754],[-0.20095904171467,0.037528116255999,-0.01414061896503]],[[-0.075588665902615,-0.011399656534195,0.10882233083248],[0.052988771349192,0.18033657968044,0.11760167777538],[-0.040393438190222,-0.014981317333877,-0.031686134636402]],[[0.07819339632988,0.18944065272808,0.049089659005404],[0.042004190385342,0.028290523216128,0.093995198607445],[0.014616777189076,-0.002913105301559,-0.15975481271744]],[[0.0017155935056508,-0.056686464697123,0.0078100683167577],[0.016305547207594,0.10669379681349,0.049763940274715],[-0.13095551729202,-0.15514811873436,-0.021074738353491]],[[0.015482408925891,0.016111159697175,0.1578528881073],[0.10424233973026,0.044040370732546,0.020036485046148],[0.018569653853774,0.008820379152894,-0.012166308239102]],[[0.043308507651091,-0.0022565959952772,-0.0086182337254286],[-0.032051023095846,0.029332907870412,0.029516637325287],[-0.062315687537193,-0.078198581933975,-0.007093105930835]],[[0.02561997435987,-0.068661399185658,0.018228985369205],[0.0051895431242883,0.096096284687519,0.066089764237404],[-0.012883869931102,-0.0075284265913069,-0.033052369952202]],[[-0.18904690444469,-0.21493801474571,-0.088425904512405],[-0.1138297393918,-0.20171079039574,-0.10254329442978],[-0.12672911584377,-0.098642952740192,-0.033258970826864]],[[0.024391705170274,-0.011163989081979,-0.0099650425836444],[-0.087872996926308,-0.025786897167563,-0.031483620405197],[0.10208214074373,0.053088564425707,0.022420765832067]],[[-0.017144065350294,0.096150197088718,0.039841562509537],[0.034195020794868,-0.03190678358078,-0.011643803678453],[0.006465629208833,0.040656305849552,-0.067014992237091]],[[0.065317235887051,0.12098599970341,-0.0017653612885624],[-0.098799325525761,0.057364922016859,0.078787937760353],[0.15119504928589,-0.096377022564411,0.088602647185326]],[[0.11580383777618,0.0046337693929672,-0.023477079346776],[0.016225339844823,0.00038587031303905,-0.03436441719532],[0.035738579928875,0.0072139608673751,0.0026754438877106]],[[0.0020515127107501,0.039919190108776,0.016502313315868],[-0.021791998296976,0.083763554692268,-0.093776226043701],[-0.0073873559013009,-0.056632310152054,-0.047999244183302]],[[-0.02545477822423,0.0007600185344927,-0.069627925753593],[-0.076509647071362,-0.035399939864874,0.013825346715748],[0.15641464293003,0.036713097244501,-0.029579492285848]],[[0.04673583433032,-0.10703967511654,0.012500199489295],[-0.083739772439003,-0.0291553940624,-0.01622399315238],[-0.00039911142084748,-0.021393457427621,-0.012569880113006]],[[-0.018066445365548,-0.02891493961215,-0.051274575293064],[-0.0025600644294173,-0.059511229395866,0.043266639113426],[0.041940629482269,0.088830217719078,0.061783786863089]],[[-0.074434772133827,-0.0075388089753687,-0.055561695247889],[-0.039644822478294,-0.038857743144035,-0.11064215749502],[0.031023662537336,0.0033119702711701,-0.016835013404489]],[[-0.089272610843182,-0.040066793560982,-0.078525960445404],[-0.026612848043442,-0.070270270109177,-0.024553069844842],[-0.025813698768616,-0.0017285968642682,-0.10266248881817]],[[0.11130380630493,-0.10924150794744,0.096928775310516],[0.0038813850842416,-0.051550939679146,-0.0035505946725607],[-0.10986060649157,0.044583629816771,0.046142268925905]],[[-0.05823989957571,-0.019161265343428,0.16033793985844],[-0.019670492038131,-0.090074174106121,-0.059448700398207],[-0.0074731595814228,-0.062684677541256,-0.067293904721737]],[[-0.054223258048296,-0.062857240438461,0.076335519552231],[-0.001558932592161,-0.013473992235959,-0.018922498449683],[0.080716118216515,-0.077630333602428,0.069960385560989]],[[-0.014967504888773,0.010466746985912,-0.039605233818293],[-0.027964703738689,0.16995847225189,0.17689529061317],[-0.053916290402412,0.040223531424999,-0.0024853192735463]],[[-0.076551832258701,-0.089642532169819,-0.098921895027161],[-0.043750662356615,0.065224260091782,0.037718933075666],[-0.1306075155735,-0.016251679509878,0.22281631827354]],[[-0.019687753170729,0.091439291834831,0.055065803229809],[0.008782354183495,0.018802884966135,0.096379064023495],[0.086766794323921,-0.031350191682577,-0.071487136185169]],[[-0.019599894061685,0.0077533908188343,0.01556290127337],[0.10855041444302,0.04803528636694,0.084652610123158],[0.0082235839217901,0.048652395606041,-0.0079304194077849]],[[0.032366272062063,-0.034521266818047,-0.043610032647848],[0.081138134002686,0.075130350887775,-0.012262825854123],[0.08096519857645,0.059557061642408,-0.066027425229549]],[[0.0031959265470505,-0.11234930157661,-0.040524784475565],[0.027593616396189,-0.0040961871854961,-0.034218847751617],[0.022329078987241,0.078819632530212,-0.0051408871077001]],[[-0.025814743712544,-0.062449336051941,0.072566673159599],[0.15722264349461,-0.04700618237257,0.099406257271767],[0.0097795128822327,-0.098215751349926,0.032374497503042]],[[-0.025548761710525,-0.10178637504578,-0.0720394551754],[-0.031736705452204,-0.096736744046211,-0.015358606353402],[-0.064149081707001,0.095036424696445,-0.044086690992117]],[[0.039368346333504,0.012985185720026,0.26790949702263],[-0.018942601978779,-0.076751112937927,-0.13143070042133],[-0.16546569764614,-0.094334065914154,0.0044490648433566]],[[-0.05193480104208,0.18977020680904,-0.022886717692018],[0.0025264052674174,0.092275895178318,-0.0831248909235],[-0.0030620833858848,0.037879087030888,-0.019013188779354]],[[-0.0032823034562171,-0.066086187958717,-0.14803291857243],[-0.10191152244806,-0.019630569964647,-0.024185018613935],[-0.086207516491413,-0.089055053889751,-0.085104592144489]],[[0.061074402183294,-0.018864814192057,-0.057705331593752],[0.066523812711239,0.026413163170218,0.023707959800959],[0.0021575447171926,0.0024956683628261,-0.087433755397797]],[[0.039217822253704,-0.0045985756441951,-0.044971998780966],[-0.10865023732185,-0.0022686803713441,0.11566468328238],[0.062200739979744,-0.11689892411232,-0.016136005520821]],[[0.041836481541395,0.10258101671934,0.073027946054935],[-0.034202374517918,0.04468847066164,0.03798021748662],[-0.01530753262341,-0.031490165740252,-0.11715482920408]],[[0.017880670726299,-0.060696795582771,-0.01115217898041],[0.039721015840769,-0.027246946468949,-0.030486973002553],[0.016241976991296,0.063741005957127,-0.055751759558916]],[[0.059609953314066,0.024424355477095,0.020284527912736],[0.0087801842018962,0.033189743757248,0.0137933883816],[-0.0013223569840193,0.23410624265671,-0.025167845189571]],[[0.0044542411342263,0.14174887537956,0.047124404460192],[0.11371402442455,0.085961028933525,-0.13891439139843],[-0.13394871354103,0.018047677353024,0.010192709043622]],[[-0.096544019877911,-0.078586757183075,-0.071629405021667],[0.15621760487556,-0.0062672509811819,-0.056571573019028],[-0.026227369904518,-0.0073711844161153,-0.067542836070061]],[[0.1024916023016,-0.11048693954945,-0.10845897346735],[0.098915494978428,-0.08008348941803,0.086041510105133],[-0.010434436611831,0.16883639991283,-0.035995479673147]],[[0.02335561439395,-0.026897700503469,-0.0007223536958918],[-0.086511172354221,-0.06775127351284,-0.1058891043067],[0.096759028732777,0.069502405822277,-0.043618436902761]],[[-0.15896093845367,-0.14749166369438,-0.17197060585022],[0.031133526936173,-0.010219406336546,0.13046565651894],[-0.21778470277786,0.0054751103743911,0.032686874270439]],[[0.030526062473655,0.052949395030737,0.040791120380163],[-0.14082823693752,-0.048891462385654,-0.0096935713663697],[-0.034360270947218,0.017594318836927,-0.0042705233208835]],[[0.075571484863758,-0.052196122705936,-0.072290860116482],[0.15017265081406,0.057440284639597,-0.0059432252310216],[-0.053734838962555,0.044770441949368,0.013584277592599]],[[-0.067296028137207,0.16197404265404,0.1384252756834],[0.12599062919617,0.062493905425072,0.096127934753895],[-0.0053157145157456,0.086995184421539,0.019012616947293]],[[0.11431888490915,0.054637208580971,0.15955924987793],[-0.016360415145755,0.043757904320955,-0.070007167756557],[-0.0030963341705501,0.11401882022619,0.1145004183054]],[[0.067634239792824,0.014348596334457,0.16460911929607],[0.044019438326359,0.040934436023235,0.052301563322544],[-0.0010299085406587,-0.1077916175127,0.049076817929745]],[[-0.0058632181026042,0.10279711335897,0.041377138346434],[-0.012222645804286,-0.041127614676952,-0.078262105584145],[-0.080259203910828,-0.031094469130039,0.0056830602698028]],[[0.020421477034688,0.056931249797344,0.00131081615109],[0.0018761125393212,0.011491836979985,0.040511660277843],[0.052798982709646,0.036727767437696,-0.015755426138639]],[[-0.0053648524917662,0.027036370709538,0.022270763292909],[-0.0055609410628676,0.015062168240547,-0.10151013731956],[-0.02784912660718,-0.044796206057072,0.0073788790032268]],[[-0.063147604465485,-0.1565246284008,0.016974236816168],[0.042662125080824,0.085592530667782,-0.058265764266253],[-0.0065453965216875,0.018363650888205,-0.021991750225425]],[[-0.07579942047596,0.058285117149353,0.049888223409653],[0.015689143911004,-0.0056378501467407,-0.037958420813084],[0.042707990854979,0.054720394313335,0.0023721519391984]],[[0.092829719185829,0.094537287950516,-0.044482093304396],[0.017100913450122,-0.037725351750851,-0.057472482323647],[-0.046641763299704,-0.0020814607851207,-0.024653349071741]],[[0.07077518850565,0.15216061472893,0.097412265837193],[0.041925944387913,-0.056079711765051,0.08764661103487],[-0.033834360539913,0.055119480937719,0.041007570922375]],[[0.0021848373580724,0.086987189948559,0.11187037080526],[-0.018524933606386,0.013644956983626,-0.1421485543251],[-0.00016572441381868,0.013080378063023,-0.10577439516783]],[[-0.013843237422407,-0.17971806228161,-0.036876853555441],[-0.080355033278465,-0.082449294626713,-0.016813760623336],[-0.078454650938511,0.07638230919838,-0.02900156006217]],[[0.0404332280159,0.053596615791321,0.071422338485718],[-0.049078229814768,0.056956429034472,-0.062327951192856],[0.053628344088793,0.013654805719852,-0.077662579715252]],[[-0.16760562360287,-0.23737463355064,-0.10418912768364],[-0.083782628178596,0.017152734100819,-0.073876209557056],[-0.055387400090694,-0.027700010687113,-0.071778953075409]],[[0.082810774445534,0.0097031742334366,0.01119021885097],[-0.032317206263542,0.050541400909424,0.071498058736324],[-0.07138653844595,-0.0041814870201051,0.015351751819253]],[[0.057423304766417,0.073830284178257,0.010969937779009],[-0.010880084708333,-0.044192668050528,-0.056725848466158],[-0.023098468780518,0.030455930158496,0.058701813220978]],[[-0.20253516733646,-0.098477959632874,-0.11829567700624],[0.134157076478,0.021818520501256,-0.075541816651821],[-0.022777009755373,0.11169723421335,0.027674781158566]],[[0.051096443086863,0.1176061630249,0.058700695633888],[0.019779136404395,0.025695864111185,-0.030472597107291],[-0.069199375808239,-0.058127846568823,-0.03004520945251]],[[-0.018600972369313,-0.13293965160847,-0.084000155329704],[0.075184650719166,-0.11174780130386,-0.059808656573296],[-0.025552529841661,-0.10830041021109,0.038763884454966]],[[0.015045495703816,-0.057261493057013,0.085289433598518],[-0.090389735996723,-0.081406228244305,-0.12666910886765],[-0.023881390690804,-0.01505540125072,-0.046045046299696]],[[0.072989635169506,0.17917896807194,0.13730730116367],[0.11498937010765,0.0092608947306871,-0.060970559716225],[0.021524315699935,0.13428442180157,0.082102574408054]],[[0.017840430140495,0.0097127817571163,-0.00568942213431],[0.11625499278307,0.055498048663139,-0.0620899759233],[-0.0060434518381953,-0.10071971267462,-0.01872393488884]],[[-0.096756659448147,-0.030384033918381,-0.062886640429497],[0.0063385856337845,0.0021558883599937,0.098064199090004],[-0.006974779535085,-0.037464305758476,0.097187198698521]],[[-0.0057429540902376,-0.02061565965414,0.026022961363196],[0.027093132957816,0.0066017922945321,-0.0032945317216218],[0.032320082187653,-0.031639035791159,-0.11634816229343]],[[0.0096798790618777,0.047342963516712,0.049708765000105],[-0.027900692075491,-0.079294480383396,-0.072111524641514],[0.0749287083745,0.0074962181970477,-0.039913453161716]],[[-0.029281172901392,-0.10898008197546,0.0383031219244],[-0.042313564568758,0.14411832392216,0.11781054735184],[-0.0447828322649,0.031593780964613,-0.0066331401467323]],[[0.20932380855083,-0.058371409773827,0.011630656197667],[-0.01534953340888,-0.072086073458195,-0.013404311612248],[0.080155692994595,0.055190827697515,-0.0053285588510334]],[[0.039526667445898,-0.10119121521711,-0.024601295590401],[-0.016167398542166,-0.0015029803616926,0.031282629817724],[-0.14328618347645,-0.052173122763634,0.0014825176913291]],[[0.018828453496099,0.010216386057436,-0.11619380116463],[0.088032461702824,0.025755900889635,0.046751212328672],[0.002912558382377,0.032381355762482,-0.039013482630253]],[[0.082505382597446,-0.014825152233243,0.028734900057316],[0.075166247785091,0.065287813544273,0.058760821819305],[-0.11961479485035,-0.10484945774078,-0.033369451761246]],[[-0.051239404827356,-0.058760344982147,-0.05442189052701],[-0.005394141189754,0.013998816721141,-0.045313458889723],[-0.019178196787834,0.021342987194657,0.044569410383701]],[[0.019871840253472,-0.010057565756142,-0.16740849614143],[0.039721999317408,-0.061334423720837,0.038692507892847],[-0.078714340925217,-0.0091912848874927,0.10497234016657]],[[0.0097620440647006,0.09348202496767,0.08603698015213],[0.043447989970446,0.061357654631138,-0.035568688064814],[-0.092361278831959,-0.069982469081879,0.042823057621717]],[[-0.13401040434837,0.033109415322542,-0.0017373383743688],[0.078612990677357,-0.094779796898365,-0.081545941531658],[0.12508128583431,-0.12352998554707,-0.021961111575365]],[[0.10771314054728,0.1578386425972,-0.028936622664332],[-0.24979484081268,-0.048322420567274,-0.026948666200042],[-0.0065321316942573,-0.026175666600466,-0.020742544904351]],[[0.12682671844959,0.12092991173267,0.016451047733426],[-0.028615275397897,-0.010440670885146,0.047890402376652],[-0.069205671548843,0.0053123538382351,-0.031737316399813]],[[0.018439054489136,0.0074415309354663,-0.030736476182938],[0.14641132950783,0.025116812437773,-0.068246439099312],[-0.06232837587595,-0.030945220962167,-0.016460103914142]],[[-0.047500606626272,-0.11475194245577,-0.0064558829180896],[0.0042809508740902,0.011762936599553,-0.0073819952085614],[0.025676293298602,0.05600855499506,0.14623712003231]],[[-0.019405972212553,-0.028416942805052,-0.074595846235752],[-0.137894064188,-0.050807561725378,-0.17417213320732],[0.02234092913568,-0.076581597328186,-0.052334614098072]],[[0.10049310326576,0.23266053199768,-0.036904945969582],[-0.0046632317826152,0.10775372385979,-0.02269809320569],[0.028542675077915,0.09794158488512,0.015639010816813]],[[-0.048227328807116,0.022200539708138,-0.089610651135445],[-0.013853210955858,-0.0038825019728392,-0.085644498467445],[0.013594981282949,0.071255296468735,0.15944761037827]],[[0.049320712685585,0.11966419965029,0.083770491182804],[0.058000482618809,-0.006832767277956,-0.020174192264676],[-0.11377843469381,-0.035920284688473,-0.064961098134518]],[[0.075446978211403,-0.012313481420279,-0.07758242636919],[0.016206882894039,-0.049595650285482,0.00069296080619097],[0.0078852782025933,-0.025823589414358,-0.012547060847282]],[[0.0089106326922774,-0.0046278815716505,-0.038176849484444],[-0.094542004168034,-0.08154221624136,0.036063060164452],[-0.079611591994762,0.032594330608845,0.02782660163939]],[[-0.11371171474457,-0.11735574156046,-0.039091605693102],[0.023970870301127,0.037919878959656,-0.0057628331705928],[-0.011607516556978,0.010991827584803,0.0600950345397]],[[-0.023894069716334,-0.083732679486275,0.044578339904547],[-0.0001917880581459,0.058712113648653,-0.035241760313511],[-0.013001907616854,-0.12949268519878,-0.036754589527845]],[[-0.051837287843227,0.018572069704533,0.0084506617859006],[0.017262039706111,0.12075064331293,-0.0082371784374118],[0.087763912975788,-0.032405789941549,-0.018085110932589]],[[-0.047450747340918,0.022834537550807,-0.0011407181154937],[-0.092303864657879,-0.042654428631067,0.073208473622799],[-0.012248983606696,0.16263099014759,0.026195954531431]],[[-0.061273798346519,-0.11989834904671,-0.083047911524773],[-0.0078960033133626,-0.008386941626668,0.027864990755916],[0.09477723389864,0.014297273941338,0.04607130214572]],[[0.005299614276737,0.055098030716181,0.00750443758443],[-0.025561030954123,-0.0059918607585132,-0.012594469822943],[-0.018518965691328,-0.052106641232967,0.0059845284558833]],[[-0.092214547097683,0.067338898777962,0.048041012138128],[0.019791632890701,0.062725350260735,-0.0026511959731579],[0.033011130988598,-0.043803505599499,0.14328090846539]],[[-0.035281851887703,-0.016966102644801,-0.066412381827831],[0.040061376988888,-0.030271561816335,-0.00065743119921535],[0.0047793556004763,0.027694016695023,-0.0690733268857]],[[-0.137511074543,-0.090214572846889,-0.027977673336864],[-0.012223742902279,-0.023502832278609,0.022932801395655],[-0.027239987626672,0.049391962587833,-0.014218738302588]],[[-0.054284907877445,0.034538622945547,-0.038430571556091],[-0.033896833658218,-0.081331647932529,0.10661171376705],[0.030881894752383,0.014332495629787,0.12638448178768]],[[0.037269398570061,0.10766689479351,0.0028813118115067],[0.036699324846268,0.062908746302128,0.089765459299088],[-0.025571785867214,-0.17001074552536,-0.10862288624048]],[[-0.14671993255615,-0.21613815426826,0.08450773358345],[-0.054528675973415,-0.2252225279808,-0.025187194347382],[0.062652759253979,-0.051742419600487,-0.037960018962622]],[[-0.05772302672267,0.089741244912148,0.1274781525135],[0.027950434014201,-0.17286424338818,-0.016371298581362],[-0.15873205661774,-0.043292135000229,-0.034691914916039]],[[-0.06695369631052,-0.11085887253284,-0.097457908093929],[-0.0017430773004889,-0.073550663888454,0.019455274567008],[0.028695851564407,-0.052120506763458,-0.0072941770777106]],[[-0.07478854060173,0.12784472107887,-0.060146927833557],[-0.035214088857174,-0.0032316299621016,0.0054502156563103],[0.091129057109356,0.058727409690619,0.0082730976864696]],[[0.029078451916575,0.11475583165884,0.0046094912104309],[-0.0035557395312935,-0.025797126814723,-0.0025121164508164],[-0.079979836940765,-0.042642828077078,0.010642860084772]],[[-0.0077972188591957,-0.028442598879337,0.055045444518328],[0.092995658516884,0.12540438771248,0.095422834157944],[0.042609833180904,-0.025429490953684,-0.12317131459713]],[[-0.093044191598892,0.13366582989693,-5.0144619308412e-05],[-0.028125951066613,-0.082890331745148,0.049004051834345],[0.046606291085482,0.0031789531931281,-0.057450335472822]],[[0.062787339091301,0.05347928032279,-0.0053034848533571],[0.0065660602413118,-0.034600183367729,-0.10989233106375],[0.028932126238942,0.0082967560738325,0.084528714418411]],[[-0.075318567454815,-0.13505564630032,-0.08574090898037],[-0.0242058057338,-0.098632797598839,0.034906007349491],[0.10678594559431,0.13961221277714,0.071984961628914]],[[0.060876656323671,-0.041241608560085,-0.17519615590572],[0.041689302772284,-0.10974563658237,-0.013632161542773],[0.10738509148359,0.06265414506197,0.016046589240432]],[[0.013533159159124,-0.0076925531029701,-0.037552244961262],[0.15904998779297,0.1497800797224,-0.04062357544899],[-0.17273247241974,0.12469226121902,0.070276446640491]],[[0.02564824745059,0.10520546883345,-0.044151473790407],[-0.037597898393869,-0.027028372511268,-0.022797372192144],[-0.083870366215706,-0.00969323143363,-0.057843517512083]]],[[[0.021697919815779,0.012991135008633,-0.0020009705331177],[0.028795711696148,0.020240847021341,-0.015383678488433],[-0.032410677522421,-0.022178012877703,0.033777490258217]],[[-0.02417697943747,-0.0013794163241982,0.012429757043719],[-0.044226549565792,0.068859562277794,-0.02000099606812],[-0.03868081048131,-0.070921249687672,0.014111296273768]],[[0.020507048815489,-0.015016013756394,0.072787895798683],[0.039759375154972,0.022238930687308,0.057054564356804],[0.036108355969191,0.064981900155544,-0.037804432213306]],[[-0.01573515124619,0.042822532355785,-0.032194569706917],[0.062613300979137,-0.026542214676738,-0.067942157387733],[-0.0076590152457356,0.026165729388595,0.016701163724065]],[[-0.033202957361937,-0.016694642603397,-0.0066753132268786],[-0.029867023229599,0.056692156940699,-0.016855219379067],[-0.015698708593845,-0.0071317963302135,-0.00070907536428422]],[[0.012323086149991,-0.0033761619124562,0.062163818627596],[0.012546861544251,0.057744577527046,0.0369883030653],[-0.011475639417768,-0.016390517354012,-0.043996840715408]],[[0.037173766642809,0.043544664978981,0.031706213951111],[-0.0044457172043622,0.0057110423222184,-0.020250901579857],[0.0047843367792666,-0.024413179606199,-0.021399807184935]],[[0.04117001965642,-0.0076524415053427,0.0049687069840729],[-0.039918970316648,0.021249480545521,0.022672882303596],[0.037795398384333,0.05506170168519,0.037562634795904]],[[0.037278722971678,-0.0025082391221076,0.0080660730600357],[-0.1027060598135,-0.0082084285095334,-0.037387985736132],[0.091480582952499,0.043462213128805,-0.019025716930628]],[[0.0078452536836267,0.013648649677634,0.0086110448464751],[-0.0098925400525331,0.0070358170196414,0.038665194064379],[0.03696271032095,0.015456482768059,0.0039271325804293]],[[0.078313417732716,0.024013329297304,0.025651305913925],[0.0213219858706,-0.060061126947403,0.013361776247621],[-0.00098537642043084,0.058890733867884,-0.038938838988543]],[[0.093210391700268,-0.037315897643566,-0.054487716406584],[0.0039092716760933,0.048904519528151,0.0081909038126469],[-0.023527456447482,0.00017606634355616,0.013634317554533]],[[0.043955206871033,0.040296882390976,-0.021196167916059],[0.071295991539955,0.040257647633553,0.053243070840836],[-0.0041411565616727,0.077257663011551,-0.071409076452255]],[[0.094204403460026,0.015163986943662,-0.071557655930519],[0.064125947654247,-0.024648193269968,-0.045923069119453],[-0.0026855433825403,0.039657462388277,-0.090044274926186]],[[0.010331524536014,0.027210265398026,-0.00672801816836],[-0.0043859486468136,0.073363922536373,-0.026169227436185],[-0.036872923374176,0.014096204191446,0.015254604630172]],[[0.0034812714438885,0.0095243770629168,0.02490371838212],[-0.027554269880056,0.030828209593892,-0.0025764082092792],[0.063616432249546,-0.021567199379206,0.050107378512621]],[[0.05016727745533,-0.029619257897139,0.060745034366846],[0.019536435604095,-0.005981333553791,-0.034442607313395],[0.0074965036474168,0.031856212764978,0.034583114087582]],[[-0.027359180152416,-0.026267804205418,-0.028418228030205],[0.023641940206289,0.014432227239013,0.0057585998438299],[-0.060368873178959,0.011779909953475,0.00068081560311839]],[[0.00058400986017659,0.0055363886058331,0.018774235621095],[0.029972553253174,0.042836952954531,0.051295854151249],[0.0029100792016834,-0.01477293856442,0.013464115560055]],[[0.063297994434834,0.038613028824329,0.041184470057487],[-0.008559700101614,-0.010132018476725,-0.0019582875538617],[0.041860464960337,0.023144023492932,0.06316214799881]],[[0.05995462462306,-0.075959503650665,-0.031892653554678],[-0.049349840730429,-0.050646457821131,0.0040397392585874],[-0.014461039565504,-0.021610585972667,0.00089942361228168]],[[0.034445863217115,0.031140210106969,0.037842124700546],[0.035334095358849,0.046818375587463,-0.037262227386236],[0.0012690769508481,-0.020121498033404,0.0051236459985375]],[[-0.018290638923645,0.031813662499189,0.013562818057835],[0.018933648243546,-0.046378318220377,-0.082394786179066],[-0.019534055143595,-0.073518648743629,0.018580209463835]],[[-0.018339598551393,-0.017393125221133,0.0085706925019622],[-0.035281993448734,0.012236963957548,0.027844224125147],[0.0817701369524,-0.027570201084018,0.013700707815588]],[[0.034819606691599,-0.05899365991354,0.05368909984827],[0.089516423642635,-0.013831915333867,-0.0014457285869867],[-0.0033946863841265,0.012859712354839,-0.086302541196346]],[[-0.03464862704277,-0.023388106375933,0.037051018327475],[0.006099168676883,0.0516835488379,-0.014383343979716],[-0.051854372024536,-0.0017645793268457,-0.056394550949335]],[[0.0056142038665712,0.021052189171314,0.0051934598013759],[0.002524031791836,-0.0032249644864351,0.025435669347644],[0.025565605610609,-0.027639653533697,0.0091996854171157]],[[0.0021955948323011,0.10475040227175,0.0081863850355148],[0.053028047084808,-0.0063648312352598,-0.016247032210231],[0.013721694238484,0.080433450639248,-0.0025821181479841]],[[-0.028371576219797,-0.022206945344806,-0.079081378877163],[0.031396623700857,-0.067529380321503,0.050481699407101],[0.060680951923132,0.018663633614779,-0.010897233150899]],[[-0.022381499409676,0.036781016737223,0.039851367473602],[-0.011449117213488,0.061010979115963,0.073495902121067],[0.043063011020422,-0.04637847840786,-0.0019303386798128]],[[0.027709674090147,0.033039700239897,-0.0096020950004458],[-0.037873741239309,0.0027005830779672,0.058391541242599],[-0.015901291742921,0.022095965221524,0.021349564194679]],[[0.05763403698802,-0.044640097767115,0.013953820802271],[0.027524799108505,0.014825275167823,-0.012711100280285],[0.0065535106696188,-0.0031430684030056,0.076889768242836]],[[0.03033384308219,0.045041047036648,0.0020583861041814],[-0.050611902028322,0.037748243659735,0.031400449573994],[0.0096759330481291,0.033833280205727,0.0902940928936]],[[-0.0060070361942053,-0.027761789038777,0.029537115246058],[0.035326566547155,0.0091140447184443,0.024754785001278],[-0.0065768947824836,-0.027160309255123,-0.016092484816909]],[[0.0015179559122771,-0.019668778404593,-0.0020592347718775],[-0.024106414988637,0.016209367662668,-0.028866544365883],[-0.0073091615922749,-0.023175053298473,0.0022424205671996]],[[0.053321458399296,-0.0034685721620917,-0.01519903447479],[0.052287440747023,0.025217525660992,-0.010741089470685],[0.041004940867424,0.016569387167692,0.026833971962333]],[[-0.044150877743959,0.082341946661472,-0.023614771664143],[0.026098608970642,0.02705935202539,-0.010560240596533],[-0.058432467281818,0.0038018759805709,0.043923262506723]],[[-0.017189465463161,-0.064468048512936,0.043950345367193],[-0.042889151722193,-0.049031138420105,-0.012482663616538],[0.0045688548125327,-0.031647186726332,-0.067204535007477]],[[-0.034508656710386,-0.0088651878759265,-0.052495703101158],[0.021441077813506,-0.029463801532984,0.010738539509475],[0.054330248385668,0.084973588585854,-0.055625226348639]],[[0.043353103101254,-0.054148886352777,-0.0575319416821],[0.0066814236342907,-0.03157851845026,-0.0072685778141022],[0.054537940770388,0.042977202683687,-0.066349431872368]],[[0.054694816470146,0.010169244371355,0.0095140561461449],[0.017581384629011,-0.033833246678114,0.013701758347452],[-0.001872853259556,0.0063448613509536,0.08444219827652]],[[-0.044626362621784,0.031821966171265,-0.015991382300854],[0.0069370921701193,0.047430869191885,-0.0094018531963229],[0.023577179759741,0.06984656304121,0.02325096540153]],[[0.014442986808717,0.015775145962834,-0.038869380950928],[-0.0084013305604458,0.063791051506996,0.081571869552135],[0.011919153854251,0.016451328992844,-0.074755668640137]],[[0.013253725133836,-0.0099102985113859,0.0086116278544068],[0.0051043829880655,-0.01195724029094,0.0036354260519147],[0.010187675245106,0.014413523487747,0.013520361855626]],[[0.040915369987488,-0.026256674900651,0.0036040656268597],[0.048867527395487,-0.012062253430486,-0.014597178436816],[0.014611987397075,0.0083402935415506,0.019136469811201]],[[-0.0067104152403772,0.0091209039092064,0.05755228176713],[-0.028161201626062,-0.0056811505928636,-0.0044780853204429],[0.0062024756334722,0.047803964465857,-0.0065262401476502]],[[-0.039778213948011,0.0091516654938459,-0.036938481032848],[0.0073770401068032,-0.014395670965314,0.065005086362362],[0.022506834939122,0.0068458244204521,0.020935330539942]],[[0.011635033413768,-0.0098133878782392,-0.084194548428059],[-0.0067672822624445,-0.0060604666359723,-0.019134851172566],[-0.0063778874464333,0.018282810226083,0.020708920434117]],[[-0.025414744392037,-0.015763837844133,0.010538943111897],[-0.0064850561320782,-0.025674091652036,0.0013126076664776],[0.033474627882242,-0.0015727888094261,-0.025506494566798]],[[-0.013648675754666,0.0036546592600644,0.0091904699802399],[-0.053325116634369,0.024860901758075,0.022819751873612],[-0.0095922816544771,-0.029696566984057,0.0044871312566102]],[[0.044795870780945,-0.037776615470648,-0.017419455572963],[-0.0057209418155253,-0.093782797455788,0.057251997292042],[0.054381508380175,0.017700202763081,-0.024512149393559]],[[-0.037035740911961,0.043165381997824,0.014970464631915],[-0.04017474129796,0.015578845515847,0.056778315454721],[0.032211974263191,0.0068192384205759,0.092708401381969]],[[0.0054045137949288,-0.034908875823021,-0.062968462705612],[0.048177629709244,0.011172771453857,-0.014089868403971],[-0.092722162604332,-0.041834142059088,-0.016304725781083]],[[-0.017006175592542,0.0034952517598867,-0.05338591337204],[-0.0030260924249887,0.015728987753391,0.0060983034782112],[0.094608284533024,-0.035333249717951,0.065094098448753]],[[0.032945457845926,0.041898932307959,-0.0072778319008648],[-0.024684814736247,-0.016167797148228,0.037096630781889],[0.032595526427031,0.01425491925329,0.060241848230362]],[[-0.040132392197847,-0.00083594559691846,0.077036067843437],[0.092503920197487,0.0076211299747229,0.02308252453804],[0.048349868506193,0.055409803986549,-0.012935936450958]],[[0.082833670079708,-0.048844937235117,0.020071782171726],[0.029817912727594,-0.019098974764347,-0.020414683967829],[-0.01213962584734,-0.015419655479491,-0.032205730676651]],[[-0.044298097491264,0.017115443944931,-0.040065590292215],[-0.0032688966020942,0.075553886592388,-0.0079059926792979],[0.031404543668032,0.031972602009773,-0.058026578277349]],[[-0.0064863129518926,0.010136640630662,-0.045402675867081],[0.021397862583399,0.039697397500277,0.016353847458959],[0.11425578594208,0.057439185678959,-0.027764404192567]],[[0.059990618377924,-0.0067996201105416,0.058606773614883],[0.017305493354797,0.057508368045092,-0.074340179562569],[-0.036849424242973,0.015269202180207,-0.021939167752862]],[[0.042571622878313,0.0012013193918392,0.063026651740074],[0.0060162572190166,0.026654366403818,0.044785026460886],[-0.020752741023898,0.025474255904555,0.020160628482699]],[[-0.029991000890732,-0.04892336577177,0.0027905029710382],[-0.072082117199898,-0.023183161392808,-0.012020298279822],[-0.041572686284781,-0.015387509018183,-0.010990232229233]],[[0.036280147731304,-0.014806935563684,0.05567628890276],[0.0085424119606614,-0.00025809032376856,0.021153967827559],[-0.025996346026659,0.056381568312645,0.028533574193716]],[[0.050477880984545,0.065313123166561,-0.0051534688100219],[-0.01537097338587,-0.018095534294844,-0.0057127745822072],[0.0079900594428182,0.0028366092592478,-0.00049043004401028]],[[0.013039448298514,-0.06912437826395,0.035079348832369],[-0.020779483020306,-0.048040360212326,-0.0037508315872401],[-0.01572529412806,0.0062750703655183,-0.039088372141123]],[[0.049166787415743,0.0080839721485972,0.014426492154598],[0.03665167465806,0.01495944801718,0.026989635080099],[0.044988758862019,0.037186156958342,0.034671664237976]],[[-0.013002160936594,-0.0017814565217122,0.023776290938258],[0.048093054443598,-0.0063252812251449,-0.0014743899228051],[-0.0046579483896494,-0.077551506459713,-0.011241952888668]],[[0.0012735599884763,-0.027481369674206,-0.010583281517029],[0.058085817843676,0.031243912875652,-0.03453278914094],[-0.054165951907635,0.010945807211101,-0.010749420151114]],[[0.094083398580551,-0.046389240771532,0.022971447557211],[0.026196690276265,0.040348559617996,-0.067263886332512],[0.015176961198449,-0.061845142394304,-0.015771901234984]],[[-0.0092724235728383,0.029919985681772,-0.04379703104496],[0.039677757769823,0.02063805423677,0.02530368976295],[-0.043624877929688,0.010018086060882,-0.036382365971804]],[[-0.0029822047799826,-0.015423648990691,0.039434749633074],[0.0044129006564617,-0.015468447469175,0.051829919219017],[0.033989515155554,0.046104036271572,0.047110944986343]],[[-0.015692507848144,-0.029908953234553,0.0022584891412407],[-0.019751884043217,-0.026630956679583,-0.02768786251545],[-0.023730784654617,0.0019402935868129,-0.0302077177912]],[[-0.02647015824914,0.01978006772697,-0.010927047580481],[0.011834140866995,0.083248093724251,0.037819009274244],[-0.054901707917452,0.0056654126383364,0.029840998351574]],[[0.076801761984825,0.0027666434179991,-0.026719441637397],[-0.043077640235424,-0.013983608223498,0.027053479105234],[-0.019355984404683,-0.034533709287643,0.0084507968276739]],[[0.00020226085325703,0.035293709486723,-0.013060529716313],[0.0093965204432607,-0.0022102033253759,-0.041530419141054],[0.0094177043065429,0.062493667006493,-0.0045865699648857]],[[0.049939345568419,-0.039790216833353,-0.02855746820569],[0.045572336763144,-0.031239353120327,-0.0037929306272417],[0.011744160205126,0.022288091480732,-0.017638832330704]],[[-0.043658267706633,-0.018262267112732,-0.0093752071261406],[-0.033036407083273,-0.0056755486875772,0.013471866957843],[-0.024666059762239,-0.0034507401287556,-0.044129699468613]],[[0.043726727366447,-0.0023761391639709,0.061123508960009],[0.0094990776851773,0.042815990746021,0.011192061007023],[0.026088220998645,0.039837878197432,-0.026441933587193]],[[0.04355001822114,0.0021668081171811,-0.059090726077557],[-0.017271131277084,-0.015298492275178,-0.017730619758368],[0.057945571839809,0.043227963149548,0.0056527578271925]],[[0.012996934354305,-0.057523272931576,0.0079186484217644],[0.010980256833136,-0.022205574437976,-0.075615875422955],[0.022465251386166,-0.043427757918835,0.039136484265327]],[[0.0092634139582515,-0.037703808397055,0.072602465748787],[-0.012235043570399,-0.010996061377227,0.037992741912603],[0.0065331654623151,0.04500687122345,-0.0056797093711793]],[[0.010402648709714,-0.011522465385497,0.018355643376708],[0.030271530151367,0.04581255838275,-0.0095344660803676],[0.0080307284370065,0.055880732834339,0.029191644862294]],[[-0.056328047066927,0.032203502953053,-0.01820725761354],[0.031731657683849,0.03061586804688,0.040111169219017],[0.00020320093608461,0.029385972768068,0.033890873193741]],[[-0.092713803052902,0.023716362193227,-0.009332406334579],[0.022642849013209,-0.0010402271291241,0.054385557770729],[-0.0095194568857551,0.032412234693766,-0.028847685083747]],[[-0.0061158007010818,0.0052720927633345,0.042544290423393],[-0.02162972278893,-0.025770088657737,0.0034612729214132],[0.0060155834071338,0.0050662057474256,0.017919475212693]],[[-0.011708000674844,0.029640091583133,0.0015187740791589],[-0.08745089918375,0.0067217783071101,0.0094427755102515],[0.023506512865424,0.028512230142951,-0.0148481791839]],[[-0.035688184201717,-0.032640516757965,0.046487912535667],[0.06043703481555,0.035876013338566,-0.026653651148081],[-0.016050426289439,-0.029429299756885,0.016694031655788]],[[-0.037562657147646,-0.048454951494932,0.034674629569054],[0.0051073334179819,0.012445604428649,0.051679067313671],[0.010976276360452,-0.017275661230087,0.0034015255514532]],[[0.01866758055985,-0.017454706132412,0.030191643163562],[0.030348746106029,0.011812309734523,-0.060079257935286],[0.05289276316762,-0.042522169649601,-0.015012910589576]],[[0.00027242177748121,0.01296579092741,-0.066534020006657],[-0.04983364418149,0.061672292649746,-0.010320802219212],[0.0069881957024336,-0.04865999892354,-0.024181921035051]],[[-0.018891327083111,0.013854512013495,-0.010400147177279],[0.049239594489336,0.017459388822317,0.017091244459152],[0.0033353783655912,0.025969084352255,-0.06983870267868]],[[-0.017350982874632,-0.11835142970085,0.063839174807072],[0.01990233361721,-0.014803159050643,0.0040303766727448],[0.075671873986721,0.038503754884005,0.087802700698376]],[[-0.015970246866345,-0.0032824680674821,-0.03847573697567],[0.029347324743867,0.012600708752871,-0.030220532789826],[0.017659014090896,-0.011397331953049,0.010562132112682]],[[0.0089176688343287,-0.00079905957682058,-0.01489389128983],[0.054582327604294,-0.00674510281533,0.03143160790205],[0.0067653763107955,0.018689436838031,-0.0036926742177457]],[[-0.05109866335988,-0.052999004721642,0.0005916974041611],[0.04146846011281,-0.06185119971633,-0.038900624960661],[-0.049848113209009,-0.038646850734949,-0.023283272981644]],[[0.064465694129467,0.030901221558452,0.0072227460332215],[-0.031420391052961,0.0048846020363271,0.012949916534126],[-0.005396940279752,0.029577638953924,-0.007070112042129]],[[-0.0054178824648261,-0.098369218409061,-0.011397901922464],[0.043384991586208,-0.0073986500501633,5.6825276260497e-05],[0.01053723320365,-0.0049783363938332,0.0027088432107121]],[[0.063601270318031,0.10312257707119,-0.0070431036874652],[0.048208646476269,-0.0076117590069771,-0.027097379788756],[0.067173734307289,0.014031075872481,0.021906405687332]],[[0.0029642551671714,0.0084772100672126,0.067111164331436],[0.0031664408743382,0.02079750597477,-0.010164586827159],[-0.0055525726638734,0.079247787594795,-0.049727961421013]],[[0.030704148113728,0.0047790785320103,0.019406139850616],[0.023850498721004,-0.079516679048538,0.0021035268437117],[0.067033641040325,0.045532070100307,0.029464101418853]],[[0.071243315935135,0.0060853641480207,-0.017168091610074],[0.095954567193985,-0.023929487913847,-0.017772473394871],[-0.029902627691627,0.0031572415027767,0.021524652838707]],[[0.0075902580283582,0.047468319535255,0.033203236758709],[0.034687589854002,0.092721596360207,-0.016606980934739],[0.040282346308231,0.042964778840542,-0.03066261857748]],[[0.066946066915989,0.012165216729045,0.0071554705500603],[0.022686891257763,-0.016511766240001,-0.021568465977907],[-0.039756145328283,0.02521125972271,0.024555431678891]],[[-0.032387524843216,-0.039100877940655,-0.028656087815762],[-0.015854122117162,0.0070120119489729,-0.0033286917023361],[0.072008118033409,0.0097012864425778,-0.039712868630886]],[[0.035790983587503,0.093469448387623,0.0012092497199774],[0.0059159612283111,0.0082397861406207,-0.014599956572056],[0.026207908987999,0.061621647328138,0.0058754491619766]],[[0.02706403285265,0.047102484852076,0.021528966724873],[0.0021331645548344,0.035498537123203,-0.0086031183600426],[-0.020990943536162,0.039042931050062,0.021314539015293]],[[0.029179453849792,0.082179740071297,0.049138806760311],[-0.02359938621521,0.0013287315377966,0.064378179609776],[0.11302302777767,-0.057169865816832,0.099992007017136]],[[0.035649430006742,0.042846985161304,0.020190229639411],[0.039102338254452,-0.039311684668064,-0.0075507205910981],[0.0045470530167222,-0.0036586944479495,0.014063675887883]],[[0.047102689743042,-0.032076247036457,-0.0060223522596061],[-0.025989273563027,0.015963478013873,-0.024339554831386],[0.044892463833094,-0.051877900958061,0.015286483801901]],[[0.092555075883865,-0.021867722272873,-0.0065366239286959],[0.044321082532406,0.007499654777348,-0.02287832275033],[-0.019561190158129,0.0057993703521788,-0.047921270132065]],[[0.051038414239883,0.056927517056465,-0.054014164954424],[-0.019699212163687,0.0016524941893294,0.0056186858564615],[-0.05152715742588,0.058962158858776,-0.012758821249008]],[[-0.075868181884289,0.011754238046706,-0.052319139242172],[-0.068066313862801,0.028102327138186,-0.022777825593948],[-0.0055477065034211,-0.011278274469078,0.017600620165467]],[[0.0114526161924,0.090940207242966,-0.0022514518350363],[-0.014515096321702,-0.024276467040181,-0.022379392758012],[0.020841795951128,0.012686510570347,-0.066334396600723]],[[-0.041358083486557,-0.0052483859471977,-0.025031980127096],[-0.015159760601819,0.0098095890134573,0.052968934178352],[-0.068753339350224,0.04128510132432,-0.080765046179295]],[[-0.084233708679676,-0.040922425687313,-0.050196271389723],[0.018145453184843,-0.032394271343946,0.029002608731389],[-0.051821779459715,0.016916241496801,-0.020540822297335]],[[0.0040219817310572,-0.0074160574004054,-0.026777766644955],[-0.027455734089017,0.0029422154184431,0.014732591807842],[-0.029910566285253,0.014492869377136,-0.012842409312725]],[[0.080792441964149,0.057684786617756,-0.05400001257658],[0.033940304070711,0.036368865519762,-0.076692439615726],[0.057531990110874,0.030456092208624,0.005613868124783]],[[0.024251686409116,0.035090573132038,0.0223434176296],[0.023969167843461,0.071624740958214,0.023797841742635],[-0.051368445158005,-0.019526490941644,0.0031407033093274]],[[-0.036806914955378,-0.0050817504525185,-0.004654775839299],[-0.055160909891129,0.0206144079566,-0.016407767310739],[-0.0127666098997,0.042167510837317,0.069777645170689]],[[0.015228719450533,0.038718946278095,-0.044471260160208],[0.025332545861602,0.012697223573923,0.045255344361067],[0.081500746309757,0.054627574980259,0.07226737588644]],[[-0.091475009918213,-0.022584592923522,0.050846897065639],[0.12491473555565,-0.0080945948138833,0.054571438580751],[-0.053274169564247,-0.019073110073805,0.054544761776924]],[[0.010677522048354,-0.020468128845096,-0.0077276919037104],[-0.0033421730622649,-0.056256022304296,-0.019586246460676],[-0.06745433807373,-0.038818303495646,-0.014478514902294]],[[-0.016578665003181,0.0084966542199254,0.039263039827347],[-0.011521679349244,-0.020704785361886,-0.035524070262909],[0.0048393686302006,-0.010985848493874,0.0094047756865621]],[[0.028950208798051,0.018751539289951,-0.053498774766922],[-0.0044468734413385,0.061904534697533,-0.007243771571666],[0.019095776602626,-0.0034573031589389,-0.0021937524434179]],[[0.0071370457299054,0.023099606856704,0.029441179707646],[0.017798017710447,0.012770994566381,-0.0030998243018985],[-0.028529344126582,-0.0027120159938931,-0.0070669972337782]],[[-0.02240757457912,0.057112451642752,-0.037814140319824],[-0.024044072255492,0.00046263326657936,0.017613777890801],[0.012298920191824,0.032040972262621,0.037528492510319]],[[-0.019462492316961,0.082357354462147,0.01837444677949],[-0.041089691221714,0.060638483613729,0.020968379452825],[0.027693644165993,-0.01392010692507,0.041157491505146]],[[-0.016611529514194,0.014151042327285,0.029814230278134],[-0.0062706344760954,0.048125620931387,0.015888687223196],[0.0047286082990468,0.017952658236027,0.0038637625984848]]],[[[-0.0011275368742645,-0.00061812734929845,-0.036693587899208],[-0.0069212056696415,-0.020912799984217,0.041685562580824],[-0.0022988345008343,-0.0041579720564187,0.039892766624689]],[[0.00050570862367749,-0.019146891310811,-0.0054285731166601],[0.02473090775311,0.015078153461218,0.070387825369835],[-0.026409417390823,0.011084181256592,-0.0023174788802862]],[[-0.032894395291805,0.088960833847523,-0.010531566105783],[-0.026625733822584,0.048781454563141,0.025186650454998],[-0.039921250194311,0.036566235125065,-0.040586818009615]],[[-0.022177336737514,-0.056372031569481,-0.060377046465874],[0.010669637471437,0.030447687953711,0.057026337832212],[-0.024898067116737,0.01771872676909,0.088778555393219]],[[-0.020636588335037,-0.0014671819517389,0.022356379777193],[-0.026553731411695,0.02188847027719,-0.079729877412319],[0.048780757933855,0.03126759454608,0.084922775626183]],[[0.047158669680357,0.020759306848049,0.064041368663311],[0.046581353992224,-0.073276147246361,0.034914642572403],[-0.002695074537769,-0.0015479383291677,0.00080133666051552]],[[0.072539255023003,0.0021121453028172,0.0032910516019911],[-0.038869507610798,0.041754983365536,-0.03350605070591],[-0.037185374647379,-0.13044507801533,0.055905025452375]],[[0.056882828474045,-0.051649369299412,-0.013233023695648],[-0.0029385362286121,-0.013686741702259,-0.078209653496742],[0.015600922517478,0.1055276915431,-0.020498922094703]],[[0.053662769496441,0.030101289972663,-0.0068405573256314],[0.0021803821437061,0.055031903088093,0.027238506823778],[0.0018285867990926,-0.084803715348244,-0.020349089056253]],[[-0.035831093788147,0.061854939907789,0.014406185597181],[-0.002801580587402,-0.031248604878783,0.012829619459808],[-0.090764090418816,-0.021562838926911,0.032540038228035]],[[-0.018127286806703,0.021775033324957,-0.011473594233394],[-0.042947720736265,-0.0034687446895987,-0.031935065984726],[0.03340020775795,0.0071444222703576,0.024992445483804]],[[0.0037194415926933,0.041633531451225,0.019717920571566],[-0.0019170879386365,0.014709538780153,-0.095037527382374],[0.0095196692273021,-0.0086176590994,-0.022488122805953]],[[0.018746130168438,0.032322484999895,-0.044102445244789],[0.043102793395519,-0.051208440214396,-0.017970770597458],[0.0097586028277874,0.0097253527492285,0.043719511479139]],[[0.016665082424879,0.076288618147373,0.007635110989213],[0.021015204489231,-0.0076373023912311,-0.043859522789717],[0.030221842229366,0.068592771887779,-0.03063584305346]],[[-0.031044228002429,-0.011398977600038,0.011017491109669],[-0.031724203377962,0.066180467605591,0.039065439254045],[-0.017026187852025,-0.024563709273934,-0.038920007646084]],[[-0.011346518993378,-0.003922002390027,0.021393893286586],[0.017356446012855,-0.018304800614715,0.01283947005868],[0.037312913686037,-0.025974180549383,-0.010791847482324]],[[0.032016783952713,0.06051217019558,-0.025498613715172],[0.02985611744225,-0.058947272598743,-0.033449195325375],[0.029768399894238,-0.0080931130796671,0.039334356784821]],[[-0.010300662368536,0.022972032427788,0.01655288785696],[-0.056406103074551,-0.014337791129947,-0.062855131924152],[-0.059993706643581,-0.032891184091568,-0.0040107700042427]],[[0.047441188246012,-0.0041924226097763,0.0090585127472878],[0.017336994409561,-0.028452420607209,0.050586346536875],[0.037058357149363,-0.023447681218386,-0.0060568787157536]],[[-0.020011872053146,0.02616323158145,0.05348739400506],[0.0015963059850037,-0.090880200266838,0.044554062187672],[-0.0081941531971097,0.092900775372982,-0.091229803860188]],[[0.019653346389532,-0.00056207907618955,-0.030036313459277],[0.014328647404909,0.038716733455658,-0.044862013310194],[0.060817286372185,0.01750966720283,-0.033629462122917]],[[0.01310212071985,0.019857972860336,0.013270013034344],[0.03366794064641,-0.051755379885435,-0.02447996661067],[0.040511891245842,-0.037871852517128,-0.0056161298416555]],[[-0.0074702301062644,0.010251789353788,0.036642823368311],[0.029097661375999,0.016958445310593,0.00075423758244142],[-0.024558989331126,-0.047737915068865,0.028985584154725]],[[-0.025224674493074,0.035950839519501,-0.024323841556907],[0.025897791609168,0.03285450860858,0.10355443507433],[0.021142473444343,0.0045618643052876,0.020413434132934]],[[0.021612986922264,-0.028374470770359,0.094733640551567],[-0.045789830386639,-0.06687293201685,0.0055726482532918],[0.096647568047047,0.04977760463953,-0.0085751432925463]],[[-0.035439874976873,-0.028795164078474,-0.0049784830771387],[-0.039574451744556,0.088040895760059,0.04174005240202],[0.02275237813592,0.0043219993822277,0.059998616576195]],[[-0.012389928102493,-0.059576317667961,0.079893231391907],[-0.03932498767972,0.05901600047946,0.0037863817997277],[0.051752563565969,0.035251624882221,0.011577734723687]],[[-0.019773012027144,0.013175769709051,-0.026162590831518],[0.018572730943561,-0.09143503755331,-0.036081425845623],[-0.056510996073484,-0.013663729652762,0.0075015979819]],[[0.016832545399666,-0.034717459231615,0.063031204044819],[-0.0093852942809463,-0.049156624823809,-0.037528280168772],[-0.054733898490667,-0.013946762308478,0.012583650648594]],[[-0.079253785312176,0.029606342315674,-0.0083708809688687],[-0.046253073960543,-0.081296615302563,-0.051070168614388],[-0.0045110494829714,-0.052482023835182,0.07012002915144]],[[-0.01477596256882,0.029040584340692,0.020172977820039],[-0.062153611332178,0.025674549862742,0.014153707772493],[0.070761688053608,0.056100506335497,-0.022176397964358]],[[-0.065353110432625,-0.0097556440159678,0.0099248299375176],[-0.04194512963295,-0.038296829909086,-0.092786058783531],[0.034777913242579,-0.031141808256507,0.025182606652379]],[[-0.016348116099834,0.056851342320442,0.052741900086403],[-0.079438202083111,0.011073556728661,0.050919525325298],[0.018939772620797,0.090682052075863,-0.039846822619438]],[[0.023167746141553,0.028732776641846,-0.03501209244132],[-0.073957212269306,-0.085585862398148,0.01073756814003],[0.030553139746189,0.051379822194576,0.14205704629421]],[[-0.011869878508151,-0.01852129586041,0.054350096732378],[0.016477471217513,-0.037832338362932,0.029223846271634],[0.059905715286732,0.021511094644666,0.049874097108841]],[[0.025527220219374,0.063063196837902,-0.016673054546118],[0.022891148924828,0.0063824225217104,0.059160925447941],[-0.017620161175728,-0.039268955588341,-0.029828341677785]],[[0.009220770560205,-0.022213092073798,0.018445432186127],[-0.025686383247375,0.016891926527023,0.004475072491914],[-0.0055596730671823,0.02792658470571,0.018205692991614]],[[-0.1059302687645,0.0282525382936,0.083226256072521],[0.017438508570194,-0.011785317212343,-0.083781100809574],[0.016214139759541,-0.045430831611156,0.013352698646486]],[[0.0087235793471336,-0.027725569903851,-0.012074475176632],[0.042711578309536,-0.045515518635511,0.0055181691423059],[0.02636375464499,-0.09955433011055,0.012871243990958]],[[0.017679633572698,-0.018320791423321,0.014766791835427],[0.032412130385637,-0.0092902071774006,0.036387447267771],[-0.018970614299178,0.008611804805696,0.040614631026983]],[[0.0025763174053282,0.047454535961151,0.019093904644251],[-0.0097633469849825,0.070959582924843,0.082093879580498],[-0.07141787558794,-0.099845014512539,-0.042618166655302]],[[-0.038865223526955,0.005043760407716,0.012945454567671],[0.032043993473053,0.02686426229775,0.046646047383547],[0.048587195575237,-0.10724923759699,0.075417414307594]],[[-0.056023128330708,0.062801212072372,0.098235376179218],[0.027923287823796,0.062254693359137,0.014535471796989],[-0.0033479649573565,0.091734230518341,0.10001674294472]],[[0.048648875206709,0.0059448364190757,-0.00020633143140003],[0.035134334117174,-0.011758523993194,-0.030932860448956],[0.025884352624416,0.0013362511526793,-0.066499479115009]],[[-0.019535731524229,0.077761933207512,-0.033737748861313],[0.0033188906963915,0.022215344011784,0.012324398383498],[0.018290800973773,0.010861586779356,-0.034041054546833]],[[0.076784834265709,0.063743598759174,0.016788564622402],[0.040585968643427,0.0097140045836568,0.00015841468120925],[-0.044495776295662,0.072671987116337,0.074437119066715]],[[-0.0024424279108644,-0.025239631533623,0.039301034063101],[0.10099305957556,0.034024674445391,0.01882098056376],[-0.054253283888102,0.073329091072083,-0.014593475498259]],[[0.0023647020570934,-0.056056391447783,-0.080728240311146],[-0.020842591300607,0.022017525509,-0.021028527989984],[-0.0026993185747415,0.0055245342664421,-0.078928396105766]],[[-0.081118457019329,-0.0097090229392052,-0.035572867840528],[-0.022972784936428,0.031328864395618,-0.078410044312477],[0.010271587409079,-0.06739604473114,0.026714146137238]],[[-0.017418712377548,-0.0095604797825217,-0.049168098717928],[0.0021472065709531,-0.020402833819389,0.016734447330236],[-0.046597789973021,0.035270638763905,0.018317326903343]],[[0.028252920135856,0.04516215249896,-0.05818498134613],[0.09696476906538,0.033544931560755,-0.010189659893513],[0.087055072188377,-0.0023299835156649,0.027476646006107]],[[0.065201692283154,0.020629046484828,0.020209245383739],[0.056495260447264,-0.023545563220978,-0.053865659981966],[0.017520815134048,0.02502185665071,-0.027485629543662]],[[-0.023975353688002,-0.056392103433609,0.039967782795429],[-0.1269636452198,0.0200668964535,0.024404108524323],[-0.055300429463387,-0.0089159235358238,-0.059488166123629]],[[0.064750112593174,-0.028205424547195,0.037558499723673],[-0.014418012462556,0.051807776093483,0.038195554167032],[0.042423464357853,0.094208262860775,0.070450469851494]],[[0.040424227714539,0.024396806955338,-0.037735156714916],[0.083987556397915,0.046569533646107,-0.0067852730862796],[0.050092231482267,0.010480700060725,0.01161715388298]],[[0.045358434319496,-0.036613676697016,-0.11676982790232],[0.030159736052155,0.017885724082589,0.00056357547873631],[0.051148448139429,-0.051037065684795,0.045643746852875]],[[-0.04253239557147,0.10959260910749,-0.034426543861628],[0.02466737665236,0.078193478286266,0.054392918944359],[0.012513488531113,0.03805997222662,0.019862277433276]],[[-0.063680849969387,-0.038339141756296,0.0053678825497627],[0.0075856442563236,-0.060165449976921,-0.035453416407108],[0.039015721529722,0.0060280719771981,-0.033472631126642]],[[-0.0093586314469576,-0.078938640654087,-0.025911429896951],[0.050201088190079,0.073169268667698,0.017543947324157],[-0.00074223265983164,0.0091797187924385,0.010513843968511]],[[0.075918026268482,0.051994130015373,0.079168818891048],[0.0025919540785253,0.02392054349184,-0.0018698297208175],[0.021244270727038,0.027307044714689,0.010387638583779]],[[-0.040674801915884,-0.083642810583115,0.062496446073055],[0.016978723928332,-0.0062857773154974,-0.044357217848301],[0.010936027392745,-0.026111928746104,-0.05263514071703]],[[0.029909120872617,-0.017384445294738,0.056259922683239],[0.018192825838923,-0.021324068307877,0.026485932990909],[0.030036585405469,-0.033006239682436,-0.0039701024070382]],[[-0.021484328433871,-0.017430577427149,-0.019957443699241],[-0.033640027046204,0.028706546872854,0.063356086611748],[0.043129663914442,-0.051767367869616,-0.042622949928045]],[[0.001470270100981,-0.071016401052475,-0.076141446828842],[0.034737404435873,0.022389994934201,-0.032993663102388],[-0.015536209568381,-0.027877394109964,0.0055504580959678]],[[0.05108954384923,0.024683235213161,0.024734407663345],[-0.043420072644949,-0.016794433817267,0.029774146154523],[-0.036386612802744,0.064306266605854,0.026799008250237]],[[0.04861781001091,-0.04449500516057,0.11227624118328],[0.057781834155321,0.022151915356517,0.020945662632585],[0.0067141936160624,0.022858275100589,0.069704599678516]],[[0.036422226577997,-0.0089231980964541,-0.012667738832533],[0.049956686794758,-0.019554598256946,-0.040466662496328],[0.041277050971985,0.079486757516861,0.0058092777617276]],[[-0.059898640960455,-0.00040994133451022,-0.0050391927361488],[-0.050423197448254,-0.0208476241678,-0.014890105463564],[-0.00027474531088956,-0.0079265162348747,-0.0013692363863811]],[[-0.014006664045155,0.067290782928467,0.060813896358013],[-0.02690595202148,0.050704948604107,0.0091563034802675],[0.0094074700027704,-0.019404504448175,0.04843320697546]],[[0.078512638807297,0.022840129211545,-0.029509328305721],[0.065364137291908,0.0056764734908938,0.074730582535267],[0.0063007976859808,0.0057909325696528,-0.039122685790062]],[[0.093326762318611,0.050789758563042,0.081816181540489],[-0.011197848245502,-0.00090374046703801,-0.002276323037222],[0.056392658501863,0.04231108725071,0.016981577500701]],[[0.047459803521633,0.037171583622694,0.015334442257881],[0.052664503455162,-0.078859619796276,-0.10719130933285],[-0.026508903130889,0.028998631983995,-0.019025344401598]],[[-0.079850442707539,-0.066294148564339,-0.013718262314796],[-0.0082294773310423,-0.082907974720001,-0.033410247415304],[0.017945116385818,-0.029951773583889,0.033464159816504]],[[-0.014250960201025,0.0027467331383377,-0.0058144014328718],[-0.00087242876179516,0.00065933377481997,-0.07189579308033],[0.023668691515923,-0.020470762625337,-0.052191816270351]],[[0.011230473406613,0.02535399235785,-0.0036038078833371],[-0.030555412173271,-0.0059940167702734,-0.037310138344765],[-0.0049090185202658,0.01983211748302,0.024754630401731]],[[0.065309785306454,-0.040085081011057,-0.0092972936108708],[0.040547426789999,-0.039171170443296,-0.060477178543806],[0.023581130430102,-0.081307493150234,-0.037355605512857]],[[0.017865845933557,-0.020318174734712,0.012005773372948],[-0.0060194977559149,-0.077084228396416,-0.050514247268438],[-0.040965661406517,-0.0055109127424657,-0.0091417394578457]],[[0.056549992412329,0.07808218896389,-0.033261839300394],[-0.033249668776989,0.0023705798666924,0.015858074650168],[-0.0092155989259481,0.020189052447677,0.066034071147442]],[[0.049778129905462,0.025765597820282,0.070495575666428],[0.11258883029222,-0.019731692969799,-0.00064532354008406],[0.05670302733779,-0.064872942864895,0.0099391108378768]],[[0.037239737808704,0.0067087612114847,0.042504478245974],[0.057902198284864,-0.058257486671209,0.025412445887923],[-0.0043958839960396,-0.040904108434916,-0.042605277150869]],[[-0.050312958657742,-0.0074821142479777,0.01754873432219],[-0.014219663105905,-0.03441496193409,-0.0094967028126121],[0.00056725268950686,0.012519456446171,-0.042854841798544]],[[0.022501200437546,0.013199239969254,0.041764583438635],[-0.0034189671278,0.097582720220089,0.035421747714281],[-0.026310319080949,0.011729594320059,-0.0028076816815883]],[[-0.09402334690094,-0.052304368466139,0.026551872491837],[0.025069462135434,0.0021873272489756,-0.053350292146206],[-0.014357915148139,0.035584278404713,0.04140231013298]],[[-0.03620083630085,0.023942243307829,-0.049332976341248],[-0.012612062506378,0.0020136549137533,0.032566368579865],[0.044129773974419,0.097989588975906,0.029559370130301]],[[0.0052163912914693,0.014661159366369,0.040632538497448],[-0.0056821908801794,0.035243902355433,-0.026840088889003],[0.08049663156271,0.024252261966467,0.01695260219276]],[[-0.026220396161079,0.0073643936775625,0.032441828399897],[-0.057783234864473,-0.015324039384723,-0.018286183476448],[-0.048911634832621,0.015088424086571,0.070535697042942]],[[0.10240313410759,0.11758707463741,0.022887270897627],[-0.012185941450298,-0.028146350756288,-0.039452288299799],[0.034075312316418,0.0804153829813,-0.010722115635872]],[[-0.019327383488417,0.015382764860988,-0.012961708940566],[0.03219610825181,0.070360325276852,-0.0264684073627],[-0.068335175514221,0.016968790441751,-0.033622212707996]],[[0.030172690749168,0.068979561328888,0.046041678637266],[-0.027721641585231,0.028644390404224,-0.012688597664237],[-0.010593159124255,-0.012645661830902,0.084852531552315]],[[-0.031141418963671,0.052163649350405,-0.02961940318346],[-0.0091595211997628,0.028103530406952,-0.0059989099390805],[-0.015908401459455,0.00036662965430878,-0.012213403359056]],[[0.025349227711558,-0.0012792701600119,-0.035596553236246],[0.042430236935616,0.029263513162732,0.019748516380787],[-0.050674069672823,0.0053008757531643,-0.024248572066426]],[[-0.051876995712519,-0.12353108823299,0.021606802940369],[0.03277949988842,0.05222337692976,-0.012504203245044],[-0.030967758968472,-0.028607277199626,-0.048710267990828]],[[-0.049233481287956,-0.053155761212111,0.027532048523426],[0.045516978949308,0.015498531982303,0.026358032599092],[0.0015572218690068,-0.010242572054267,-0.077178217470646]],[[-0.023681914433837,0.0027271972503513,0.040652986615896],[0.022241147235036,0.0014560871059075,0.040883556008339],[0.032208397984505,-0.01188038289547,0.019817208871245]],[[-0.034679602831602,-0.0045487391762435,-0.041096694767475],[0.019554223865271,-0.019426707178354,-0.033604688942432],[0.0059499908238649,-0.06485491245985,0.010738671757281]],[[-0.036472909152508,-0.032902229577303,0.027641016989946],[-0.0078634144738317,-0.0018645266536623,0.019832907244563],[-0.018573148176074,-0.021691132336855,-0.014246395789087]],[[0.049705117940903,0.083246566355228,-0.016498098149896],[-0.011577087454498,-0.026518659666181,-0.029274752363563],[0.035778660327196,0.05112861096859,0.0057215858250856]],[[0.019487867131829,-0.045139268040657,0.070352859795094],[0.018384465947747,-0.019749965518713,0.036933470517397],[-0.017419748008251,0.03267178311944,0.088343821465969]],[[0.071282662451267,0.023407161235809,0.047382019460201],[-0.017640488222241,-0.011810225434601,-0.026951219886541],[0.022844891995192,-0.026681086048484,-0.010995124466717]],[[0.036969352513552,-0.019074350595474,0.0056645316071808],[0.11745688319206,0.084486939013004,0.042753301560879],[-0.0037115912418813,-0.069636702537537,-0.018917767331004]],[[-0.059212706983089,0.0064471168443561,0.024814801290631],[0.010985634289682,-0.085352972149849,-0.045796319842339],[-0.02504968829453,0.019800053909421,0.016318308189511]],[[0.016965312883258,-0.042029768228531,-0.043150551617146],[0.013490366749465,-0.055757459253073,0.081330053508282],[0.00059947528643534,0.0031998704653233,0.054096914827824]],[[-0.038125738501549,0.018412401899695,0.015791930258274],[0.004765696823597,0.074110224843025,-0.019717546179891],[0.012046056799591,0.021548518911004,0.012013781815767]],[[-0.11940317600965,-0.046991392970085,-0.011063265614212],[-0.012094366364181,0.00029052639729343,-0.029384909197688],[-0.014915077015758,0.0012770482571796,-0.02723185531795]],[[0.0064364224672318,0.022779230028391,0.037419237196445],[0.069127939641476,-0.0094149885699153,0.026973310858011],[0.050552919507027,-0.032099656760693,0.024002274498343]],[[-0.017586192116141,0.049006562680006,-0.018016822636127],[-0.049926616251469,-0.044699065387249,0.0057171313092113],[-0.017346806824207,-0.0033902944996953,0.013893174938858]],[[0.049538169056177,0.064885035157204,-0.029989536851645],[0.093380443751812,0.02770865522325,-0.012069622986019],[0.0020879197400063,-0.066600322723389,0.041997782886028]],[[-0.070786483585835,-0.045288719236851,0.054783806204796],[-0.019113777205348,-0.0048407423309982,0.01999787800014],[0.010316411033273,-0.01216556597501,-0.042463131248951]],[[-0.039431009441614,-0.00445899926126,-0.041277889162302],[0.047307912260294,-0.035021763294935,-0.047365188598633],[-0.026527093723416,-0.04538194835186,-0.024235378950834]],[[-0.051387000828981,0.021926870569587,0.0044953017495573],[0.051296155899763,0.065519519150257,0.045386783778667],[0.012354634702206,0.016077894717455,0.0061487331986427]],[[-0.071404188871384,-0.020565968006849,0.010144107043743],[-0.044533330947161,0.010345477610826,0.047878473997116],[0.0062191621400416,0.027049519121647,-0.011809733696282]],[[-0.064128272235394,-0.05113772675395,0.010162524878979],[-0.037158939987421,0.012217943556607,0.097976744174957],[0.034586776047945,0.068054884672165,-0.045851528644562]],[[-0.029517695307732,-0.049823742359877,-0.075769692659378],[-0.034168548882008,0.022325752303004,0.0043432894162834],[-0.00021572937839665,-0.15663631260395,-0.026101898401976]],[[-0.078883893787861,-0.069560833275318,-0.031712051481009],[-0.046268198639154,-0.025186205282807,0.09670327603817],[0.021137619391084,0.0050923433154821,-0.036322608590126]],[[-0.0045592142269015,-0.02319023385644,-0.00076306820847094],[-0.011003280058503,0.02561960183084,-0.049114320427179],[0.010659356601536,-0.050398748368025,-0.032192025333643]],[[0.015668818727136,-0.036439828574657,0.079002365469933],[-0.022968713194132,0.033503513783216,-0.064325101673603],[0.017220977693796,-0.041987095028162,-0.031826667487621]],[[-0.029686653986573,0.011749680154026,-0.004518901463598],[0.010156631469727,0.034980498254299,-0.0033418405801058],[-0.0090225804597139,-0.047807201743126,0.014788630418479]],[[-0.031640015542507,0.019265597686172,-0.041914399713278],[0.026719672605395,-0.027777906507254,-0.085718661546707],[-0.028897123411298,-0.029088292270899,-0.010483387857676]],[[-0.077509365975857,-0.057280752807856,-0.036083921790123],[-0.064632371068001,0.051888193935156,0.027696052566171],[0.01713733933866,0.05678191408515,-0.010690638795495]],[[0.048853941261768,0.026060696691275,0.0086857872083783],[0.031130524352193,0.035344164818525,0.069317653775215],[0.024538978934288,0.0059433151036501,0.034401036798954]],[[0.0017976295202971,0.01026841904968,-0.049700003117323],[-0.0082557843998075,-0.02754639275372,-0.022617859765887],[-0.049932766705751,0.01846931502223,0.0063717607408762]],[[-0.061876103281975,-0.0096003552898765,-0.036382392048836],[0.0061799571849406,-0.0059999534860253,-0.018362961709499],[0.0013948518317193,0.010277712717652,0.034321919083595]],[[-0.021333836019039,-0.00068227417068556,0.014902899041772],[0.020763738080859,-0.037590052932501,-0.096944026648998],[-0.0050628236494958,0.0088034216314554,-0.0096290884539485]],[[0.019931605085731,0.019581664353609,0.024938220158219],[0.005648750346154,-0.036776077002287,-0.07873310893774],[0.041797406971455,-0.035860989242792,-0.0097087444737554]],[[-0.022536013275385,-0.10807315260172,0.052118502557278],[0.015120105817914,-0.0086944047361612,0.044623456895351],[0.074876263737679,0.019166270270944,0.043172009289265]],[[0.031791664659977,0.034189727157354,0.0040761125274003],[-0.048496793955564,0.046036373823881,0.032922022044659],[0.017969239503145,0.050667699426413,0.01089318934828]],[[-0.10086899995804,0.0037432899698615,0.0024547160137445],[0.032934013754129,0.0029465903062373,-0.034298729151487],[0.020685588940978,0.081159301102161,-0.057823557406664]],[[0.008342070505023,-0.0030304864048958,0.026891076937318],[0.072150513529778,0.084143251180649,-0.007022253703326],[0.033301789313555,-0.020487988367677,0.0052700312808156]]],[[[0.057665392756462,-0.025771209970117,0.080668888986111],[0.034705005586147,0.076501071453094,-0.04753427952528],[0.069102227687836,-0.068430006504059,0.060709532350302]],[[-0.077236361801624,0.01849746145308,0.010102080181241],[-0.01973937638104,-0.098397061228752,-0.048753887414932],[0.066608659923077,-0.035994838923216,-0.13842782378197]],[[0.0090791042894125,-0.12529630959034,0.0077503314241767],[0.05324424803257,-0.007249919231981,-0.089435175061226],[0.040430784225464,-0.013623996637762,0.00090499612269923]],[[0.098643891513348,0.043242000043392,0.064370535314083],[0.011682366020977,-0.013929483480752,-0.08195736259222],[0.022013677284122,-0.03377228602767,-0.012308927252889]],[[-0.025916242972016,0.048237182199955,0.035262402147055],[-0.054331757128239,0.029409678652883,0.0038922079838812],[-0.12394639849663,-0.049755278974771,0.044722072780132]],[[0.0024613887071609,0.0060024508275092,0.018049795180559],[-0.0058409818448126,-0.0064880577847362,0.038909517228603],[0.014889621175826,0.090123362839222,-0.036534987390041]],[[0.02242130972445,-0.0078658722341061,0.050766255706549],[0.013913008384407,-0.025542734190822,-0.020894631743431],[-0.074030503630638,0.013660371303558,0.016137842088938]],[[-0.093807093799114,0.12637677788734,-0.001255382434465],[-0.010547749698162,0.04297174140811,0.053648330271244],[-0.0088041583076119,0.022453842684627,0.071620017290115]],[[-0.099057391285896,0.008430459536612,0.025714321061969],[-0.017300529405475,-0.017034480348229,-0.038272578269243],[-0.012076407670975,0.035977229475975,0.035860236734152]],[[-0.074240922927856,-0.0062421052716672,0.045593347400427],[-0.058083642274141,0.022669857367873,-0.0025571659207344],[0.0035719047300518,0.037477277219296,0.047599241137505]],[[0.028129655867815,0.040961880236864,0.044950950890779],[-0.037396732717752,0.10279186069965,-0.079241245985031],[-0.025302033871412,-0.068992614746094,-0.024680269882083]],[[-0.065386034548283,0.016780540347099,-0.12254289537668],[-0.054391231387854,-0.03172517940402,0.041018772870302],[0.038130044937134,0.097401693463326,0.02560561709106]],[[-0.044112771749496,0.2228442132473,-0.0095354281365871],[0.0077378959394991,-0.021351497620344,0.035830676555634],[-0.029935235157609,-0.094031967222691,0.060922633856535]],[[0.020882740616798,-0.098737582564354,0.015070049092174],[0.027749320492148,-0.092966094613075,0.066804505884647],[-0.033949602395296,0.008955342695117,-0.023863729089499]],[[-0.073558554053307,0.00087342510232702,0.014705922454596],[-0.012647778727114,0.0019867457449436,-0.0018118418520316],[-0.024182867258787,0.021459488198161,-0.0086585087701678]],[[0.14886862039566,-0.070050500333309,0.0011140544665977],[-0.023342333734035,0.031915310770273,-0.049592949450016],[0.045064572244883,-0.015423157252371,0.0013892947463319]],[[-0.039235163480043,-0.085494659841061,-0.039271499961615],[0.01440195646137,-0.076264254748821,-0.036429740488529],[0.043777536600828,0.049371249973774,0.011945612728596]],[[-0.012288855388761,-0.0014956707600504,-0.049004141241312],[-0.088148601353168,-0.007266987580806,0.013396332040429],[-0.12381653487682,-0.049965184181929,-0.057305604219437]],[[-0.086171932518482,-0.089530423283577,-0.016309313476086],[-0.045408103615046,0.10728706419468,-0.061571087688208],[0.10800724476576,0.004420320969075,0.03778924420476]],[[-0.031878300011158,0.028178146108985,0.045728791505098],[-0.01537164952606,-0.0020986709278077,-0.019491109997034],[0.031025556847453,-0.10238273441792,0.054615207016468]],[[0.07958184927702,-0.094779297709465,-0.017065331339836],[0.021933363750577,-0.017955178394914,-0.10749018937349],[-0.016142131760716,0.018126599490643,-0.016987703740597]],[[0.063646979629993,-0.01020425837487,0.034232538193464],[-0.0052454005926847,0.02203119546175,0.0060555101372302],[0.033329613506794,-0.012869230471551,-0.12968887388706]],[[0.090148761868477,0.13389773666859,-0.086115524172783],[0.037668578326702,-0.09676156193018,-0.017930950969458],[0.010108539834619,-0.0072963614948094,0.026946375146508]],[[0.062574580311775,0.069557256996632,-0.031801849603653],[0.013049990870059,-0.090900041162968,0.014705735258758],[-0.070926986634731,-0.056458864361048,0.035101898014545]],[[0.050845306366682,-0.016185380518436,-0.048564091324806],[0.061187893152237,0.04980243742466,0.031037658452988],[0.0063958410173655,-0.057632077485323,-0.010538420639932]],[[-0.034069363027811,0.029750278219581,0.060869034379721],[0.010856023989618,0.033218059688807,-0.015370164066553],[-0.037526316940784,-0.0080170957371593,0.046231374144554]],[[0.055964011698961,0.11723877489567,-0.059025928378105],[0.068932250142097,0.0027073565870523,-0.045369576662779],[-0.083618834614754,0.072605818510056,-0.0031454681884497]],[[0.034268420189619,0.036068677902222,0.045905388891697],[0.024164551869035,-0.029657470062375,0.023498250171542],[0.018207870423794,0.081996127963066,-0.031151602044702]],[[-0.022707790136337,-0.076073333621025,-0.011814971454442],[0.020033927634358,-0.10239595174789,0.031677462160587],[0.014142788015306,-0.036324176937342,0.045299418270588]],[[0.023759497329593,-0.018683368340135,0.023963443934917],[0.07594433426857,-0.022158490493894,-0.0037726261653006],[0.010015862993896,-0.044228628277779,-0.097166001796722]],[[-0.0023086767178029,-0.030496859923005,0.033050391823053],[0.035415183752775,-0.0056868116371334,-0.0031406243797392],[-0.043694905936718,0.011410376057029,0.084119901061058]],[[-0.023524608463049,-0.011014930903912,0.037701729685068],[0.0052421456202865,-0.035460315644741,0.051815669983625],[0.050552412867546,0.0062890849076211,0.012134878896177]],[[0.081326529383659,0.1162828579545,-0.03791668638587],[0.011897520162165,-0.058466076850891,0.018929924815893],[-0.072524793446064,0.017963543534279,-0.059388771653175]],[[0.047833472490311,0.088908948004246,0.079148918390274],[0.065124966204166,-0.0096440780907869,0.092579446732998],[0.020907025784254,-0.0039743450470269,0.02361430041492]],[[0.031055202707648,-0.0056686871685088,-0.050390496850014],[0.00040208437712863,-0.10648592561483,0.089862734079361],[-0.022574154660106,0.067314706742764,-0.096227809786797]],[[0.081242360174656,-0.059826046228409,-0.070132240653038],[-0.11040034890175,0.0071685081347823,0.029673133045435],[-0.035261258482933,0.027648726478219,-0.018896343186498]],[[0.054836340248585,0.022992206737399,0.066068649291992],[0.090459533035755,-0.037687741219997,0.039073836058378],[0.01070782635361,-0.05190147459507,0.032083209604025]],[[0.063678652048111,0.033815912902355,0.064892329275608],[0.047391545027494,-0.055015537887812,-0.014665842056274],[-0.035918530076742,-0.055836893618107,0.023161446675658]],[[0.035626821219921,0.085116945207119,0.029501482844353],[-0.026380883529782,-0.0026841491926461,-0.10965346544981],[0.071048431098461,-0.011865466833115,-0.17149224877357]],[[0.030007025226951,-0.014199163764715,0.081776283681393],[0.089823603630066,0.035923060029745,0.062603063881397],[0.040497075766325,0.031785972416401,0.044092956930399]],[[0.12218515574932,-0.073869705200195,-0.00066966516897082],[-0.038196481764317,-0.0046643679961562,-0.028352215886116],[-0.048968106508255,0.04837392270565,0.033412333577871]],[[0.0065155597403646,0.07791406661272,0.089279152452946],[0.005988544318825,-0.008158759213984,0.031648069620132],[0.097184360027313,0.12674117088318,0.013475671410561]],[[0.1390855461359,-0.040149364620447,0.0081483954563737],[0.07483483850956,0.085056409239769,0.010836206376553],[0.10403524339199,0.010219197720289,0.044235538691282]],[[-0.042457658797503,0.019518297165632,-0.0017507909797132],[-0.034510351717472,0.054256252944469,0.019025214016438],[-0.037480022758245,0.0027945179026574,0.026986308395863]],[[0.10391065478325,-0.016838613897562,-0.01636578887701],[0.022637363523245,-0.013705087825656,0.016559030860662],[0.03252487257123,0.018761675804853,0.082817539572716]],[[-0.011617498472333,0.051141154021025,0.040411781519651],[-0.022746030241251,-0.039424806833267,-0.00827472563833],[-0.040848452597857,0.10016307979822,0.028959574177861]],[[0.060992613434792,-0.00079927779734135,-0.013510978780687],[0.049453899264336,-0.059129316359758,-0.020618665963411],[-0.04314760863781,-0.097304806113243,0.028009185567498]],[[-0.043052859604359,-0.082022652029991,-0.087902136147022],[-0.028073862195015,-0.06142470240593,-0.067390330135822],[-0.048783432692289,0.0064454665407538,-0.069274492561817]],[[0.018361680209637,-0.084713846445084,-0.065872810781002],[-0.068988598883152,-0.076251998543739,-0.024426655843854],[-0.0066354800947011,-0.00036155874840915,0.011205806396902]],[[-0.036655135452747,0.048857998102903,-0.013360847719014],[-0.074790984392166,-0.1235002502799,-0.011503593996167],[-0.024753719568253,0.030985534191132,-0.028215538710356]],[[0.076722577214241,-0.11819033324718,-0.013754732906818],[0.047614272683859,-0.050019592046738,-0.011125940829515],[0.013588231988251,-0.04936034604907,0.028243420645595]],[[0.036870017647743,0.03755072504282,0.072470769286156],[-0.012842213734984,-0.038545686751604,0.016731053590775],[-0.0090598063543439,0.04856450855732,0.055802676826715]],[[-0.063699461519718,0.019321082159877,0.028261970728636],[0.041896712034941,0.087660223245621,0.019887717440724],[-0.036793865263462,0.0288892891258,-0.0013110905420035]],[[-0.14390075206757,-0.029432777315378,0.083705820143223],[0.054903548210859,0.012849105522037,-0.0081767290830612],[-0.034980963915586,0.035177923738956,-0.030134148895741]],[[0.090787589550018,0.021044852212071,0.0065795560367405],[-0.013987218029797,-0.019800821319222,0.047246724367142],[-0.073858328163624,-0.063308134675026,0.046363972127438]],[[-0.045824512839317,-0.059299651533365,-0.042223609983921],[0.15960980951786,-0.048784509301186,0.08861818164587],[-0.022020697593689,-0.039346061646938,0.0072029032744467]],[[0.047016087919474,0.030041033402085,0.050256378948689],[-0.075233027338982,0.013162149116397,-0.011990056373179],[0.070508792996407,0.055734019726515,0.04428444057703]],[[0.01463015191257,-0.020051553845406,-0.035753473639488],[-0.03843754529953,-0.045467406511307,-0.086756773293018],[0.037674132734537,0.010503208264709,-0.074444308876991]],[[0.039332833141088,-0.0048196385614574,0.045021273195744],[-0.11810518801212,-0.019468786194921,0.017261274158955],[-0.0069337226450443,0.039733689278364,0.04890788346529]],[[-0.037370145320892,0.03582352399826,0.02533165551722],[-0.0055061969906092,0.068789057433605,0.02208149805665],[0.091362483799458,0.11529876291752,0.086753636598587]],[[0.13438327610493,0.057763334363699,0.035162139683962],[-0.061745375394821,-0.055898506194353,-0.056506145745516],[-0.0076246284879744,0.035560127347708,-0.030528636649251]],[[-0.046724800020456,-0.0038056385237724,0.056515481323004],[-0.018274279311299,-0.012045578099787,-0.050288219004869],[-0.041959520429373,-0.099498450756073,-0.044773202389479]],[[0.020817041397095,-0.0069116302765906,0.0027301306836307],[0.091731935739517,0.037057068198919,-0.03645209223032],[0.070716373622417,0.088293544948101,0.013564147986472]],[[0.093925677239895,-0.032397139817476,0.10047170519829],[-0.042446993291378,0.0073687415570021,0.038978587836027],[0.014487176202238,-0.037712201476097,-0.036614123731852]],[[-0.091244839131832,-0.0063990657217801,-0.051057107746601],[-0.053985211998224,0.019601700827479,0.037501685321331],[-0.017033567652106,-0.014740162529051,0.091540150344372]],[[0.014871292747557,0.025785926729441,0.016128761693835],[0.11090963333845,0.003653856460005,0.006364384200424],[0.0038730793166906,0.045811504125595,0.035670720040798]],[[-0.024030840024352,0.017482532188296,0.066492825746536],[0.0028724609874189,0.072564467787743,-0.012707913294435],[0.014509418047965,0.0053741568699479,-0.048592116683722]],[[0.0047216354869306,0.013469115830958,0.007817436940968],[0.085725538432598,0.004042387008667,-0.026202788576484],[0.043565578758717,-0.0079080704599619,-0.057464975863695]],[[0.065817095339298,-0.042125556617975,-0.01958198659122],[0.0012964369961992,0.0096425004303455,0.096312008798122],[0.059607461094856,0.042172860354185,-0.068155340850353]],[[-0.049644775688648,0.049160409718752,0.047809097915888],[-0.014134110882878,0.054727416485548,0.040012564510107],[0.032370667904615,-0.044465143233538,0.10564412176609]],[[0.025838449597359,-0.0069378381595016,0.099544622004032],[-0.015608297660947,0.04921467974782,0.11675360053778],[-0.060818932950497,-0.018196783959866,-0.003184657311067]],[[-0.085750453174114,-0.12731955945492,-0.046600643545389],[-0.016356013715267,0.049233794212341,0.091700300574303],[-0.15839105844498,-0.03668137639761,0.014663291163743]],[[0.050383120775223,-0.02114113047719,-0.007737381849438],[-0.085682637989521,0.088213533163071,0.010468781925738],[-0.025478912517428,-0.093040011823177,0.002372446237132]],[[0.075928322970867,0.0054217954166234,-0.019470049068332],[0.027200553566217,-0.051923923194408,0.098372057080269],[-0.055838644504547,0.032885741442442,0.035891465842724]],[[0.10319527238607,0.059897020459175,-0.05451150983572],[0.054463051259518,0.012693788856268,-0.010149681009352],[0.027899162843823,-0.012023591436446,0.024177173152566]],[[-0.041043046861887,-0.029317053034902,0.029419966042042],[0.007967640645802,-0.018958719447255,-0.041426677256823],[-0.015200255438685,0.012955420650542,-0.053389463573694]],[[-0.09293457120657,-0.018353855237365,0.090995520353317],[-0.070964217185974,-0.00070762174436823,0.031928062438965],[-0.031523708254099,-0.020932799205184,0.017944386228919]],[[0.12280222773552,0.021328782662749,-0.014103831723332],[0.024309407919645,0.022203413769603,0.039228409528732],[0.11619006842375,0.051496762782335,0.035673398524523]],[[-0.057503893971443,-0.078761503100395,-0.062296349555254],[-0.043356951326132,-0.02569842711091,0.041912093758583],[-0.01379141304642,0.045816019177437,0.004162494558841]],[[-0.068524464964867,0.042767196893692,-0.025650423020124],[0.080310992896557,0.073706284165382,0.0082296188920736],[-0.0039344201795757,-0.036829978227615,-0.07466396689415]],[[0.0075504253618419,-0.036359053105116,-0.045923870056868],[0.060742162168026,-0.065261028707027,-0.040099442005157],[0.027029391378164,-0.017968695610762,-0.01710008457303]],[[0.0053214579820633,0.018757693469524,-0.019449425861239],[0.03273218870163,-0.014570573344827,0.060876790434122],[-0.018437491729856,0.0022123348899186,0.0059473142027855]],[[-0.010264748707414,0.049020603299141,0.076540023088455],[-0.056032948195934,-0.059618432074785,0.057685539126396],[-0.0058562601916492,0.088188536465168,-0.037820886820555]],[[-0.023322582244873,0.02855084836483,0.0059719225391746],[0.051533497869968,-0.0061101769097149,0.054295357316732],[0.0018416329985484,0.028536070138216,0.05231973528862]],[[0.010680175386369,-0.018823936581612,-0.015476034022868],[-0.043903488665819,0.02035003900528,-0.043241281062365],[0.069725878536701,-0.088366642594337,-0.053937491029501]],[[-0.017211711034179,-0.018881157040596,0.13240361213684],[-0.010051496326923,0.041158638894558,0.052331443876028],[-0.040215469896793,-0.029705952852964,-0.052687659859657]],[[-0.025834944099188,0.057788029313087,0.0022838131990284],[0.034816063940525,0.062363170087337,0.087804183363914],[0.03508385643363,0.02154085598886,0.072830520570278]],[[0.032445713877678,-0.045058906078339,0.031055241823196],[-0.011273790150881,-0.11342153698206,0.012899385765195],[0.035683944821358,0.068713188171387,0.02694096416235]],[[0.083426721394062,-0.0064037330448627,-0.001750263152644],[0.024894060567021,0.012927842326462,-0.0066302390769124],[0.0091610504314303,-0.029687510803342,-0.012029373086989]],[[0.04456764087081,0.0144736263901,-0.0029070295859128],[-0.024674501270056,-0.056248486042023,-0.021026825532317],[-0.057798776775599,-0.010200574994087,-0.0030854132492095]],[[0.01726788841188,0.1077514514327,-0.083286613225937],[-0.043308604508638,-0.0018470875220373,-0.037572912871838],[0.079188860952854,0.0027206693775952,0.062594071030617]],[[0.011611991561949,0.048424277454615,-0.023128438740969],[-0.037296667695045,-0.013608251698315,-0.017662424594164],[-0.10484609752893,-0.017506062984467,0.030505737289786]],[[0.029594300314784,0.022887455299497,0.067099176347256],[-0.017082678154111,0.0095889307558537,0.0044802716001868],[-0.081738099455833,-0.017891155555844,-0.0054391580633819]],[[-0.10175827145576,0.0079372031614184,-0.0030012708157301],[-0.031385734677315,-0.0025260229595006,0.062066238373518],[0.015541398897767,-0.083676099777222,0.01519713178277]],[[-0.095414087176323,-0.014209553599358,-0.03215829282999],[-0.20609094202518,-0.099186934530735,-0.031656112521887],[0.031412251293659,-0.086491659283638,-0.023302661255002]],[[0.00025446247309446,0.05154725164175,0.025092115625739],[0.083092920482159,0.025980308651924,0.053144197911024],[0.048265732824802,-0.036162402480841,0.0096704363822937]],[[-0.11429208517075,-0.029610564932227,-0.02833210490644],[-0.027568850666285,0.18199348449707,-0.080372586846352],[-0.018821373581886,0.018183266744018,0.064199283719063]],[[0.037030022591352,-0.016984289512038,0.023676544427872],[-0.024770287796855,0.15690088272095,0.045470286160707],[0.078873783349991,0.063452757894993,0.044098641723394]],[[-0.067956954240799,-0.042828194797039,0.017673561349511],[0.036099620163441,-0.02707670070231,0.063837215304375],[-0.031508587300777,-0.14885257184505,0.042575247585773]],[[-0.027201272547245,-0.031039284542203,0.061972878873348],[0.0037742629647255,0.029546428471804,0.044866390526295],[-0.03265942633152,0.018197471275926,-0.00050921703223139]],[[-0.015686586499214,-0.072624921798706,-0.011681593954563],[0.088396705687046,-0.10395391285419,-0.039637979120016],[0.0029760228935629,0.0022140487562865,-0.041302014142275]],[[0.082233533263206,-0.014138147234917,0.087746180593967],[-0.0087738493457437,-0.026265349239111,0.082170091569424],[0.04460559040308,-0.063720293343067,-0.068083755671978]],[[-0.012505793944001,0.069574482738972,-0.049831125885248],[0.01808956451714,0.053002960979939,0.03551073372364],[-0.038992039859295,0.012219117023051,0.11032612621784]],[[0.015355126000941,-0.066643185913563,-0.070159986615181],[-0.037805736064911,-0.032069459557533,-0.023747529834509],[0.0035121717955917,-0.0098863746970892,0.12209228426218]],[[-0.05913058668375,-0.071333490312099,-0.043333429843187],[-0.014297669753432,-0.083107903599739,-0.087454542517662],[-0.025062330067158,0.047177445143461,-0.051758270710707]],[[-0.066996335983276,0.0034780018031597,0.15939195454121],[0.063253186643124,-0.024069914594293,-0.052614066749811],[0.099481120705605,0.094783894717693,-0.00034041079925373]],[[-0.016834823414683,0.0325558334589,0.06898145377636],[-0.044925220310688,0.13003864884377,-0.036246631294489],[0.048853240907192,0.019917864352465,-0.0003046480123885]],[[0.043292954564095,0.0026483198162168,0.014085929840803],[-0.039696909487247,0.00073658704059198,-0.0071956180036068],[-0.066362962126732,0.0058352262713015,-0.026265377178788]],[[-0.10838704556227,0.019373994320631,0.10494834184647],[-0.15460389852524,-0.014088678173721,-0.065197415649891],[-0.034042432904243,-0.043812099844217,0.07366993278265]],[[0.035066552460194,-0.051494807004929,0.046320799738169],[0.019600180909038,-0.0072231427766383,-0.07475758343935],[0.041912686079741,0.056268379092216,-0.019122501835227]],[[-0.036878284066916,0.05882516503334,0.030160492286086],[0.045097872614861,-0.015305243432522,-0.026598734781146],[0.038457527756691,-0.03288733586669,-0.070078417658806]],[[-0.06464359909296,-0.034434374421835,0.0071494593285024],[-0.037484508007765,-0.065162539482117,0.0044196941889822],[-0.041528727859259,-0.02038143016398,0.041740041226149]],[[-0.0030118757858872,-0.0094585111364722,0.00091910688206553],[0.050230160355568,-0.019792303442955,0.074239693582058],[-0.079846397042274,-0.0041912016458809,0.050658565014601]],[[0.037694446742535,-0.020924305543303,-0.0026708750519902],[-0.035398662090302,0.063072912395,-0.045870549976826],[-0.07603196054697,-0.08038180321455,-0.027358496561646]],[[-0.082200728356838,-0.005895096808672,0.017422450706363],[-0.064936935901642,-0.047701269388199,-0.071683168411255],[0.015444466844201,0.029673052951694,-0.030619109049439]],[[-0.035315457731485,-0.092654071748257,-0.0032005636021495],[-0.070590957999229,-0.11533387005329,-0.083600588142872],[-0.02696081250906,0.021987780928612,0.025488901883364]],[[-0.016430268064141,0.0094382595270872,0.096373058855534],[0.0041640442796052,0.01957056671381,0.020440008491278],[0.022486157715321,0.02431002818048,-0.060545716434717]],[[-0.033137939870358,-0.017642743885517,-0.0011566616594791],[0.061677806079388,-0.080197118222713,-0.13880325853825],[-0.08559388667345,-0.05343159288168,-0.0042100739665329]],[[-0.038705617189407,0.070631690323353,-0.033496122807264],[0.0077684773132205,0.00080038828309625,-0.039216279983521],[-0.028472799807787,0.038752060383558,0.026760483160615]],[[0.047050580382347,0.060925219208002,0.011157265864313],[0.001126294140704,0.021816028282046,-6.6583204898052e-05],[-0.024663144722581,0.07258003205061,0.028104204684496]],[[-0.054152328521013,-0.034237772226334,-0.056592505425215],[0.074094288051128,0.124287776649,-0.06433542817831],[-0.027744419872761,-0.033329635858536,0.081544831395149]],[[-0.0029594809748232,-0.032874636352062,0.024709109216928],[-0.02004361897707,-0.038386330008507,-0.051344342529774],[-0.029106453061104,-0.074726082384586,-0.13752838969231]],[[-0.018840759992599,0.013513679616153,-0.046022105962038],[-0.064312748610973,0.082081489264965,0.054193653166294],[-0.030284909531474,-0.032747112214565,0.10416793823242]],[[-0.004334238357842,0.026530688628554,0.051513459533453],[0.035653859376907,0.036351427435875,0.0021145418286324],[-0.01699048653245,0.030764736235142,0.13760280609131]],[[0.021514108404517,0.024272549897432,-0.018782233819366],[-0.056055795401335,0.053931288421154,0.026651641353965],[-0.069368742406368,0.029499175027013,-0.059579528868198]],[[0.11985975503922,0.08774670958519,0.073004953563213],[-0.033075165003538,0.019765181466937,-0.021842354908586],[0.024305641651154,0.020350579172373,0.0089656943455338]],[[0.078353047370911,-0.013644592836499,0.0043567018583417],[0.060366880148649,-0.016863726079464,0.033532254397869],[-0.04509524255991,-0.079290136694908,-0.0055446997284889]],[[-0.014625831507146,-0.10753629356623,0.012550016865134],[-0.033306732773781,-0.070704497396946,-0.10385766625404],[-0.065232135355473,0.038777105510235,0.0022797966375947]]],[[[0.074044212698936,-0.029602490365505,0.16895058751106],[0.14714384078979,-0.06537177413702,0.05256275087595],[0.064307548105717,-0.033477585762739,0.049393936991692]],[[0.13201071321964,0.080978095531464,0.042048793286085],[-0.038733273744583,0.10589569807053,-0.051240261644125],[0.0015835774829611,-0.09044374525547,-0.027593284845352]],[[0.013401290401816,0.071352176368237,0.019545836374164],[-0.099536962807178,-0.13752116262913,0.0026122373528779],[0.14823766052723,0.058056358247995,-0.067891605198383]],[[0.027650082483888,0.026557756587863,0.08024900406599],[0.023940302431583,0.017507407814264,-0.0084316600114107],[0.078427352011204,0.045727204531431,0.031585115939379]],[[0.11107551306486,-0.12089567631483,0.085638582706451],[0.015733178704977,-0.22461819648743,0.045682106167078],[-0.0058297039940953,0.14753526449203,0.06230740621686]],[[0.016152529045939,0.0050339614972472,0.1166842058301],[0.0084647685289383,0.033288817852736,-0.065109498798847],[0.10442344099283,0.03319438174367,0.079074926674366]],[[0.032898895442486,-0.10444604605436,0.018751122057438],[-0.048723727464676,-0.030353298410773,0.039177864789963],[-0.024075428023934,-0.08416373282671,-0.0015567288501188]],[[0.0057956683449447,0.043553024530411,-0.10955350846052],[-0.0053692082874477,0.085112646222115,0.0011428771540523],[0.054186470806599,0.091657809913158,-0.044869538396597]],[[-0.1124851629138,-0.088762007653713,0.10248747467995],[-0.044701728969812,-0.010822112672031,-0.016785735264421],[0.027954483404756,0.097555883228779,0.11259682476521]],[[-0.052430972456932,-0.10804009437561,-0.091750673949718],[-0.075280286371708,0.11100938171148,0.076364658772945],[-0.029469627887011,-0.025027804076672,0.075264111161232]],[[0.11595280468464,-0.065030880272388,0.011592471972108],[0.060840271413326,-0.049149051308632,0.067547351121902],[-0.048109080642462,-0.029288813471794,-0.020588330924511]],[[0.10467454791069,-0.10883316397667,-0.06154365837574],[-0.090664759278297,-0.030507383868098,-0.09148170799017],[-0.090753927826881,-0.047619268298149,0.15530316531658]],[[-0.046396967023611,0.06770421564579,0.054131552577019],[-0.025180649012327,-0.075682252645493,0.022474363446236],[-0.21275450289249,0.077692687511444,-0.011343537829816]],[[0.10184369236231,0.1393566429615,-0.0040570092387497],[-0.17108835279942,-0.02155103161931,-0.097814351320267],[-0.084533542394638,0.091604515910149,-0.091337762773037]],[[-0.044330280274153,0.064851149916649,-0.080812968313694],[-0.029263032600284,-0.089365541934967,-0.14514829218388],[0.11080206185579,-0.036384698003531,-0.039960239082575]],[[-0.043092709034681,0.041799187660217,0.0090686036273837],[-0.09707210958004,0.0047560795210302,0.01903036236763],[-0.077785655856133,-0.077473290264606,-0.014282983727753]],[[0.02044440060854,0.03561994433403,-0.059247545897961],[0.00048128631897271,-0.029395371675491,-0.14144790172577],[-0.14720457792282,-0.011324006132782,-0.13859769701958]],[[-0.072165578603745,0.12628142535686,0.11779554188251],[-0.073105961084366,0.062641777098179,-0.11600407212973],[0.090389162302017,0.090640768408775,-0.18798586726189]],[[0.018356319516897,0.14562380313873,-0.093379974365234],[-0.03298269584775,-0.083008542656898,-0.055457852780819],[-0.14670972526073,-0.043611016124487,-0.036535449326038]],[[-0.0034365826286376,0.0060647106729448,0.010112384334207],[-0.18588404357433,-0.022740738466382,-0.1147775053978],[-0.19097031652927,-0.060639601200819,-0.020515466108918]],[[0.039423204958439,-0.021111097186804,-0.17592962086201],[0.016547001898289,-0.1237136721611,-0.087134823203087],[-0.070654526352882,-0.051365118473768,-0.043206293135881]],[[0.019169377163053,-0.0041599543765187,-0.028665654361248],[-0.030314762145281,-0.042085371911526,0.11562249064445],[0.020885949954391,0.084897272288799,-0.042305242270231]],[[0.012157184071839,-0.016141025349498,0.079295098781586],[0.027185223996639,-0.01024391502142,-0.11619194597006],[0.0087254429236054,-0.047998130321503,0.011294328607619]],[[0.029141305014491,0.024765929207206,0.0054377298802137],[-0.0071591851301491,-0.13997238874435,-0.077194087207317],[-0.012451988644898,0.054340273141861,-0.025620521977544]],[[-0.038935638964176,-0.01706081815064,-0.0085860406979918],[-0.022027378901839,-0.0029371513519436,0.013137448579073],[-0.017326261848211,0.038254000246525,-0.10017763078213]],[[-0.034697279334068,-0.081415213644505,-0.050865948200226],[-0.039265982806683,-0.022671207785606,0.028702793642879],[-0.0096272639930248,-0.032946091145277,-0.0086864046752453]],[[-0.14235737919807,-0.13662575185299,-0.10041339695454],[-0.0060771503485739,0.051533780992031,-0.026413468644023],[0.023894030600786,-0.0052438783459365,-0.05089096352458]],[[0.11417210102081,0.044823825359344,-0.036435820162296],[0.075376264750957,0.053658343851566,0.028074910864234],[-0.0030136827845126,-0.019338315352798,-0.040615551173687]],[[-0.06728845089674,0.0043635470792651,-0.12349332869053],[0.043193966150284,0.015464400872588,0.050128974020481],[-0.040044862776995,-0.032988000661135,-0.043685641139746]],[[0.095925353467464,-0.04557329043746,-0.090993031859398],[-0.046637684106827,-0.06831568479538,-0.096314564347267],[-0.0036939652636647,-0.069211393594742,0.018441582098603]],[[-0.035226494073868,0.086319617927074,0.087621167302132],[0.11788255721331,0.015731371939182,0.011899251490831],[0.047152023762465,-0.037081375718117,0.034373380243778]],[[-0.030602248385549,-0.0091371983289719,0.0087310587987304],[0.032684024423361,-0.10409492999315,-0.075100034475327],[-0.02103922329843,-0.031151801347733,0.074018374085426]],[[0.033127956092358,0.0096820564940572,0.034094538539648],[0.06460889428854,-0.11024008691311,-0.062066022306681],[0.055036183446646,0.088531970977783,-0.16569784283638]],[[-0.089833930134773,0.0032352351117879,0.043319657444954],[-0.059548944234848,-0.0016806152416393,0.1442649513483],[0.044730365276337,0.045204810798168,-0.0059420797042549]],[[-0.048646491020918,0.1101937443018,0.051264703273773],[-0.032315950840712,0.031492605805397,0.13163132965565],[-0.044410333037376,-0.142145216465,-0.12685073912144]],[[-0.043360404670238,-0.020656742155552,0.0032235435210168],[-0.17676021158695,-0.028916260227561,-0.079267010092735],[0.043643668293953,0.0063192248344421,0.027040142565966]],[[0.10320836305618,0.031762562692165,-0.093081168830395],[0.071227200329304,0.037052232772112,0.030494699254632],[-0.18373902142048,-0.04825422167778,-0.068450629711151]],[[-0.020224116742611,-0.043314751237631,-0.16419631242752],[-0.090139180421829,0.13601692020893,0.03523101657629],[-0.071984902024269,-0.13662415742874,0.060862321406603]],[[0.16541963815689,-0.019518900662661,-0.014393686316907],[-0.058963876217604,-0.062017779797316,-0.060157708823681],[-0.050869718194008,-0.013507024385035,0.0063427267596126]],[[-0.061782985925674,0.065205149352551,0.13948756456375],[-0.0076992460526526,0.04625466838479,0.0099605415016413],[-0.067023202776909,-0.087380461394787,0.068900503218174]],[[-0.00080607697600499,-0.040100872516632,0.047923300415277],[-0.091455571353436,0.055048901587725,0.13502961397171],[-0.0053225597366691,0.072806879878044,0.065000265836716]],[[0.022671589627862,0.051984056830406,-0.1312193274498],[-0.019146010279655,0.034995350986719,0.10318506509066],[0.061556246131659,0.018915258347988,-0.090062081813812]],[[0.013459083624184,0.064250878989697,-0.0830202922225],[0.070612169802189,-0.0097596943378448,0.026699518784881],[0.029679358005524,0.00062578823417425,0.043685797601938]],[[-0.019346093758941,-0.052134815603495,0.0035700618755072],[-0.0088331140577793,-0.012354085221887,-0.0038381183985621],[0.034177228808403,-0.0021933233365417,0.005116225220263]],[[-0.09460860490799,-0.10295552015305,-0.092317290604115],[0.084245912730694,0.035250138491392,0.037090923637152],[0.096462577581406,-0.010434877127409,0.13866160809994]],[[0.045456267893314,0.075381480157375,0.089298084378242],[0.077251628041267,0.0061388844624162,-0.014498157426715],[-0.042167589068413,0.018340807408094,0.059223517775536]],[[0.012010057456791,0.076631620526314,0.078923627734184],[-0.095245003700256,0.010811678133905,-0.015579798258841],[-0.033526577055454,0.033757802098989,0.090705640614033]],[[-0.10594723373652,0.04946756362915,0.013159195892513],[-0.097189083695412,-0.091010257601738,-0.029459672048688],[-0.054206900298595,0.082496285438538,-0.045584604144096]],[[-0.17887464165688,-0.068790517747402,0.12353276461363],[-0.042216334491968,-0.10683940351009,0.082928255200386],[0.040365047752857,-0.019357910379767,0.037048108875751]],[[-0.11099241673946,-0.035709317773581,0.004374239128083],[0.030454171821475,-0.058320041745901,0.0029328314121813],[-0.019791753962636,0.048021264374256,-0.096756815910339]],[[-0.12209530174732,0.087067306041718,0.032847233116627],[0.084212705492973,0.0028889630921185,-0.013656091876328],[0.048375956714153,0.04141503199935,0.18227529525757]],[[0.06634883582592,0.0088563077151775,0.033349517732859],[0.058231819421053,-0.10946756601334,0.0055061560124159],[0.035822939127684,0.17322915792465,0.033894047141075]],[[-0.063453748822212,-0.0096280556172132,-0.067928969860077],[-0.091463580727577,-0.0097205992788076,0.024503752589226],[-0.013412864878774,-0.10566008836031,0.050855461508036]],[[-0.0090419678017497,0.013156116940081,0.1099491044879],[0.16921396553516,-0.069493129849434,0.053776994347572],[-0.0088837593793869,0.021886037662625,0.022031996399164]],[[-0.04757908731699,-0.028554279357195,-0.070959001779556],[0.08209016919136,-0.037876632064581,-0.037577532231808],[-0.088330052793026,0.023388376459479,0.15025943517685]],[[-0.030729571357369,0.16695791482925,-0.0021713168825954],[0.023032080382109,-0.06926017999649,-0.027201354503632],[0.031021373346448,0.014370106160641,-0.10374242067337]],[[0.00028750984347425,0.0049269977025688,0.018281126394868],[0.022479601204395,0.071789316833019,0.090557344257832],[-0.045483533293009,0.044317189604044,0.032602436840534]],[[-0.066561013460159,0.051239561289549,0.064132794737816],[-0.018132911995053,0.051963176578283,-0.010279544629157],[-0.033906865864992,-0.37245100736618,-0.045137442648411]],[[0.097582407295704,0.068911522626877,-0.011146207340062],[-0.065967164933681,0.057442981749773,0.0079605989158154],[-0.043966140598059,-0.00038923384272493,-0.045602884143591]],[[-0.084224008023739,-0.033902373164892,-0.047819867730141],[-0.10658220201731,-0.041746284812689,-0.037134099751711],[0.072431348264217,0.027931736782193,0.064190909266472]],[[-0.054657682776451,0.01625556871295,0.067306585609913],[-0.004239896312356,0.021572997793555,0.092089980840683],[0.054106473922729,0.0072031156159937,-0.0073341927491128]],[[0.011810284107924,-0.08133627474308,-0.19606217741966],[0.088680021464825,0.017901293933392,0.010412619449198],[-0.014117078855634,-0.02107572555542,-0.041395895183086]],[[0.072649858891964,-0.036443747580051,0.17991131544113],[-0.060344256460667,0.0009314026683569,0.092532642185688],[0.007563937921077,0.081880807876587,0.049733377993107]],[[0.044218670576811,-0.049316417425871,-0.00086076481966302],[-0.016244379803538,-0.052274756133556,-0.11965411901474],[0.0055358684621751,0.020705813542008,0.078072875738144]],[[0.024463271722198,-0.073635838925838,0.012466851621866],[-0.012663566507399,-0.00029828760307282,-0.15482157468796],[0.22369188070297,-0.084101110696793,-0.063391350209713]],[[-0.0070855491794646,0.079173065721989,0.015774592757225],[0.090172059834003,-0.025046836584806,0.068421080708504],[-0.05535701662302,0.15965068340302,0.048602312803268]],[[0.07841844856739,0.091001942753792,0.074553787708282],[0.077193588018417,-0.037154342979193,-0.018683206290007],[-0.013537776656449,0.044777054339647,-0.045963771641254]],[[0.023251265287399,-0.051030043512583,0.032264843583107],[-0.095289930701256,0.054631914943457,0.075497150421143],[0.040506854653358,-0.07199527323246,-0.086758203804493]],[[-0.0092306602746248,-0.10731367766857,-0.080946683883667],[-0.035943925380707,-0.074784338474274,0.028495144098997],[0.10218560695648,0.1133891120553,0.11987134814262]],[[-0.11983734369278,-0.036205191165209,-0.061870332807302],[0.060077887028456,0.17244450747967,0.11953075230122],[0.073496498167515,0.071761503815651,0.22121757268906]],[[0.031720690429211,0.10964230448008,0.092415675520897],[-0.0071605513803661,0.014278185553849,0.020184019580483],[0.11495558172464,0.0093744052574039,0.042457360774279]],[[0.061630442738533,-0.056827642023563,-0.036942221224308],[-0.030119610950351,0.10597638040781,-0.032573685050011],[-0.0058390754275024,-0.04010683298111,-0.038425695151091]],[[-0.0058004343882203,-0.015766691416502,0.029531026259065],[0.084716022014618,0.0011023520492017,-0.079106107354164],[-0.057693924754858,-0.0027694222517312,-0.047369446605444]],[[-0.051007982343435,-0.012309398502111,0.12722346186638],[-0.0060475296340883,-0.039103209972382,0.019003238528967],[0.051323227584362,-0.036096554249525,0.058991849422455]],[[-0.087807916104794,-0.023744558915496,0.12660972774029],[-0.050786953419447,-0.099343076348305,-0.0057871644385159],[0.041960824280977,-0.064782552421093,0.10485716164112]],[[-0.16945740580559,-0.014120407402515,-0.035779517143965],[-0.052375197410583,-0.12143587321043,0.075475506484509],[-0.093514524400234,-0.040920071303844,-0.031678259372711]],[[-0.056715738028288,0.016566619277,-0.0012253298191354],[0.02705323509872,-0.003475496545434,0.096834771335125],[0.063452318310738,0.019647490233183,0.03943632543087]],[[0.0013112782035023,0.0024062558077276,0.042303908616304],[0.057394430041313,0.13640989363194,0.069993786513805],[0.041844218969345,0.053309742361307,0.058829467743635]],[[0.0036103716120124,-0.045133896172047,0.0059519624337554],[-0.021479193121195,0.03042621165514,0.043775025755167],[0.060770317912102,0.010050556622446,-0.021717246621847]],[[-0.16172525286674,-0.014426856301725,-0.080561086535454],[0.014053371734917,0.043987408280373,0.067524120211601],[0.10700110346079,0.072440609335899,0.12930579483509]],[[-0.054473903030157,-0.085832417011261,-0.072533994913101],[-0.013780669309199,-0.0056670014746487,0.035167556256056],[0.037146732211113,-0.11921415477991,-0.067263431847095]],[[0.05783274769783,-0.054523132741451,0.0051758359186351],[-0.030900444835424,-0.033783629536629,-0.11805175989866],[-1.1146623364766e-05,-0.099335104227066,0.05444360896945]],[[0.11601328104734,0.036741610616446,-0.021940648555756],[0.01444236934185,-0.0074222045950592,-0.027809934690595],[0.04526498913765,0.028244020417333,0.038581281900406]],[[-0.018602134659886,-0.0051451097242534,-0.068508140742779],[0.0037030226085335,0.013999118469656,-0.0015913777751848],[0.023052766919136,0.072818115353584,0.012782369740307]],[[-0.017599640414119,-0.03652324154973,-0.15011844038963],[-0.082976162433624,-0.0096992291510105,-0.1880142390728],[-0.015505339019001,-0.01624140329659,-0.018659844994545]],[[0.057872552424669,0.20038397610188,-0.036718133836985],[-0.071174778044224,-0.14652571082115,0.068791732192039],[0.034045156091452,-0.10239721089602,-0.050141666084528]],[[-0.0015206219395623,-0.081435538828373,0.010627431795001],[-0.0095455721020699,0.0045685973018408,0.026399804279208],[0.033790305256844,0.026204222813249,-0.034472987055779]],[[-0.13092340528965,-0.11249022185802,0.014011424966156],[-0.068625077605247,0.082113832235336,-0.017595561221242],[-0.01492730434984,0.21432627737522,-0.01029443461448]],[[-0.021769061684608,0.077564187347889,-0.043326366692781],[-0.046899273991585,0.043926436454058,0.0020072713959962],[0.050076447427273,-0.17973193526268,0.048457164317369]],[[-0.059431437402964,-0.00832898914814,0.0017133619403467],[0.055256258696318,-0.024909414350986,-0.10030790418386],[0.10724378377199,-0.020991379395127,0.033654317259789]],[[0.11754740029573,0.072897985577583,-0.051458582282066],[-0.023798571899533,-0.045930620282888,0.010772166773677],[-0.12540012598038,-0.12001876533031,0.10512071102858]],[[0.042785864323378,0.16515415906906,0.087429858744144],[0.13388228416443,0.013586368411779,0.2125897705555],[-0.034731209278107,-0.15654394030571,-0.12010218948126]],[[-0.011633727699518,-0.047840461134911,0.016292182728648],[0.0018398035317659,-0.12819841504097,0.13657096028328],[-0.088379673659801,0.024547340348363,0.024035772308707]],[[0.022924223914742,0.025050794705749,-0.0029408677946776],[-0.078730531036854,0.2961103618145,0.16714225709438],[-0.0087613649666309,-0.089152537286282,0.048128314316273]],[[0.076436936855316,0.016372116282582,0.066117458045483],[0.060196477919817,0.012592571787536,-0.096584424376488],[-0.034169107675552,0.022423524409533,-0.069867342710495]],[[0.070231325924397,-0.20260395109653,-0.040268894284964],[0.067954011261463,0.016317695379257,-0.09127489477396],[0.092230625450611,-0.048778340220451,0.095031395554543]],[[0.0034312950447202,0.045234654098749,-0.11572305858135],[0.111114166677,0.027959322556853,0.10412729531527],[0.0023180975113064,-0.040508460253477,-0.028848085552454]],[[-0.1204097121954,0.097827382385731,-0.056113921105862],[-0.022857300937176,0.12080108374357,0.075025573372841],[-0.08928656578064,-0.023841874673963,0.0015757788205519]],[[-0.13594642281532,-0.0033347008284181,-0.047748059034348],[-0.0060625039041042,0.10554065555334,0.065495513379574],[-0.063924573361874,-0.20725753903389,-0.054014854133129]],[[0.022542126476765,0.049510676413774,-0.024640208110213],[0.0041889655403793,0.018305337056518,-0.058755654841661],[0.039422765374184,0.0091638518497348,0.051734406501055]],[[0.060572523623705,-0.053896017372608,-0.089168772101402],[-0.058030113577843,-0.065473482012749,0.01436382997781],[-0.024783750995994,0.0015717756468803,-0.028826167806983]],[[-0.031855281442404,0.041751015931368,-0.078972771763802],[0.062427528202534,0.03861253336072,0.020198306068778],[0.071024909615517,0.00078107963781804,-0.0050046159885824]],[[0.018839465454221,0.022359345108271,-0.062939114868641],[-0.07007809728384,0.0046079196035862,0.043701890856028],[-0.044456470757723,0.051098093390465,0.023504555225372]],[[0.0061489506624639,-0.019121266901493,0.0028361992444843],[0.02817714214325,-0.047096513211727,0.0007081656367518],[0.073700517416,-0.089240275323391,0.048252198845148]],[[0.093463853001595,0.14985778927803,-0.0094373561441898],[-0.023016273975372,-0.13006022572517,0.01912484690547],[0.018208848312497,0.0097037851810455,-0.073140688240528]],[[0.024917954578996,0.08368705958128,0.012135977856815],[-0.061937615275383,0.022324230521917,-0.024152042344213],[0.014083176851273,-0.048477526754141,-0.015133872628212]],[[-0.11176954954863,-0.04776144400239,0.030319655314088],[-0.039642203599215,-0.07135159522295,-0.17287592589855],[-0.045988105237484,-0.052004396915436,0.0076029389165342]],[[0.12969516217709,0.19677114486694,-0.016387294977903],[0.072599656879902,-0.057317465543747,0.07530851662159],[-0.069285020232201,-0.083377249538898,0.085666425526142]],[[-0.027706563472748,0.059689950197935,-0.010269401594996],[0.053667586296797,0.15021625161171,-0.10769595205784],[-0.027450174093246,-0.054780397564173,-0.074692204594612]],[[0.099653169512749,0.079889521002769,-0.097763083875179],[0.090087696909904,-0.055041145533323,-0.01309825014323],[0.00076341233216226,-0.11381304264069,0.021428460255265]],[[0.015869051218033,-0.005825087428093,-0.039771892130375],[-0.006947570014745,-0.046453200280666,-0.0011049980530515],[0.078619256615639,-0.071630910038948,0.028241984546185]],[[0.026573235169053,-0.12874791026115,0.018380165100098],[-0.092795066535473,0.036319676786661,-0.029218016192317],[-0.020545709878206,0.061207126826048,-0.029219387099147]],[[-0.17738096415997,-0.094783328473568,0.027587158605456],[-0.052697155624628,0.033997464925051,-0.020520897582173],[0.022060256451368,0.053088769316673,0.10037978738546]],[[-0.0053436663001776,-0.052604295313358,0.045022305101156],[-0.0087861754000187,-0.03596768155694,0.0032970129977912],[0.050555020570755,-0.10805753618479,0.032224897295237]],[[-0.04452458769083,-0.057469964027405,-0.11023707687855],[0.054137833416462,-0.079984068870544,-0.028664806857705],[0.0025128778070211,0.098228730261326,0.1013747677207]],[[0.039356224238873,0.091240838170052,-0.086415395140648],[-0.045726042240858,-0.040216509252787,-0.10426221042871],[-0.106371127069,0.061793185770512,0.14508798718452]],[[-0.095218576490879,0.078734800219536,-0.18482464551926],[-0.019774246960878,0.15769785642624,0.0095534380525351],[0.030866229906678,-0.0043355976231396,0.11361359804869]],[[-0.092420034110546,-0.15039302408695,-0.057095292955637],[-0.16173249483109,-0.023395918309689,-0.089300274848938],[-0.021150354295969,0.14055418968201,-0.068317972123623]],[[-0.078476019203663,-0.03636721149087,-0.0069922436960042],[-0.090005435049534,-0.043194387108088,0.14202462136745],[0.059746108949184,-0.18828131258488,0.035663217306137]],[[0.1881677955389,0.0034785701427609,0.031622909009457],[0.064763560891151,0.1041966304183,0.11132626235485],[-0.029753973707557,0.031096396967769,-0.019670473411679]],[[0.014395855367184,-0.12704157829285,0.00276128645055],[0.012840366922319,-0.08486882597208,0.01074268296361],[0.12888164818287,-0.032918807119131,0.022034635767341]],[[-0.10376863181591,-0.10918866842985,0.020166547968984],[-0.1388331502676,-0.022032516077161,-0.0011211126111448],[-0.12119146436453,-0.028991870582104,0.062717877328396]],[[-0.016946455463767,-0.13948822021484,0.0039098397828639],[0.074230454862118,0.098247416317463,-0.087016135454178],[-0.038455318659544,-0.030589992180467,0.18325865268707]],[[0.08175090700388,0.0038193990476429,0.021792184561491],[0.07561869174242,-0.021613201126456,-0.081000223755836],[-0.11563614010811,0.017477264627814,-0.0017893421463668]],[[-0.076939836144447,-0.078684784471989,-0.049861643463373],[0.028015207499266,-0.021489446982741,0.11168516427279],[0.08246948570013,0.10261575877666,0.053554527461529]],[[-0.026449184864759,-0.0093234274536371,-0.032087959349155],[-0.056376755237579,-0.010931666940451,-0.18772877752781],[0.069488398730755,0.012197556905448,0.17302732169628]],[[-0.11837847530842,-0.029340913519263,0.073307059705257],[-0.023928048089147,0.063135549426079,0.055027771741152],[0.0033199898898602,0.032869052141905,0.068004205822945]],[[0.24914179742336,-0.15254317224026,-0.085263296961784],[-0.16248343884945,0.11793694645166,-0.033147674053907],[0.033049829304218,-0.019501322880387,0.075176678597927]]],[[[-0.043923396617174,0.014939423650503,-0.032999824732542],[-0.015110792592168,-0.068036146461964,-0.0028845660854131],[0.035465985536575,-0.053118243813515,-0.024490723386407]],[[-0.067360103130341,-0.16874703764915,-0.020716672763228],[-0.12357442826033,-0.046664882451296,0.0097243851050735],[0.038692843168974,0.065990179777145,0.069808006286621]],[[-0.060792945325375,-0.010153623297811,0.10352113097906],[0.053932014852762,-0.074580617249012,-0.02110374160111],[-0.013805089518428,-0.043863240629435,0.0547727458179]],[[0.053106304258108,0.033188495784998,0.017315227538347],[-0.022583624348044,-0.0072291707620025,0.10047879815102],[-0.0081590684130788,-0.048040345311165,0.076821550726891]],[[0.0014037383953109,-0.036160837858915,-0.014865014702082],[0.090541325509548,-0.017626482993364,-0.07831484079361],[0.19271552562714,-0.012586132623255,-0.12895447015762]],[[-0.087208159267902,-0.06085205450654,-0.046987138688564],[0.052573751658201,-0.020576138049364,-0.117292329669],[-0.022679546847939,-0.082767590880394,-0.071442201733589]],[[0.039499294012785,-0.08572956174612,-0.046019162982702],[0.027581578120589,-0.086674079298973,0.0025738254189491],[0.13860903680325,0.06730192899704,-0.045748576521873]],[[-0.066267982125282,0.11278630048037,0.060216780751944],[-0.022107977420092,0.07632128149271,-0.035016074776649],[0.031761139631271,-0.053773567080498,0.026675552129745]],[[0.074895985424519,0.047136712819338,-0.043588392436504],[-0.043745297938585,-0.011400911025703,0.13881433010101],[-0.0088288271799684,-0.0067906016483903,0.045600529760122]],[[0.032448165118694,-0.036172799766064,-0.038547191768885],[-0.057307478040457,-0.08024899661541,-0.052498422563076],[0.012891416437924,0.077606573700905,0.029539488255978]],[[-0.024896185845137,0.086418785154819,-0.064667336642742],[0.029419582337141,0.038854666054249,-0.074644729495049],[0.092211604118347,-0.092859961092472,-0.078780181705952]],[[0.010081806220114,0.069495640695095,0.13362608850002],[-0.099764809012413,0.010587058030069,0.015711320564151],[-0.052295431494713,-0.03822223842144,0.11375712603331]],[[0.046128772199154,0.029690841212869,-0.018319886177778],[0.18049769103527,0.0014824357349426,-0.046195451170206],[0.082392305135727,-0.053319659084082,0.040737025439739]],[[0.053115129470825,-0.0095648299902678,-0.018073603510857],[0.15989805757999,-0.091844893991947,0.0030177186708897],[0.13427817821503,-0.03571205586195,0.020790547132492]],[[0.0040218257345259,-0.041433952748775,-0.038776379078627],[0.010408951900899,-0.022679969668388,-0.026693116873503],[-0.063203364610672,-0.044252410531044,-0.045802600681782]],[[0.13014164566994,-0.077317073941231,0.036261864006519],[0.16018369793892,-0.064710088074207,0.00096744886832312],[-0.050506118685007,0.026774987578392,-0.014005881734192]],[[0.14341314136982,-0.011701283045113,-0.1415606290102],[-0.007458770647645,-0.016108628362417,-0.081916056573391],[0.11071426421404,0.048652689903975,0.068386591970921]],[[-0.088698662817478,0.029432473704219,0.030717186629772],[-0.0096490057185292,0.092461995780468,0.031934928148985],[-0.028389321640134,-0.053478349000216,0.014006667770445]],[[0.032979786396027,-0.046989526599646,0.10626431554556],[-0.053740032017231,-0.055708535015583,0.061175279319286],[-0.019772730767727,0.049133040010929,0.063062034547329]],[[-0.081201754510403,-0.070019140839577,0.083697438240051],[0.12224765121937,0.019562171772122,-0.0089560123160481],[0.0089005809277296,-0.029015680775046,0.043186910450459]],[[-0.031475272029638,-0.06350140273571,0.016046496108174],[0.030468611046672,-0.00050601514521986,0.00028231853502803],[-0.06636780500412,-0.0018692220328376,0.013423797674477]],[[0.057634241878986,-0.05551353469491,-0.1250483840704],[0.012856662273407,-0.052128363400698,0.057921580970287],[-0.033742796629667,0.11061195284128,-0.029500845819712]],[[0.038385570049286,0.10930587351322,-0.0014856648631394],[-0.1304150223732,0.096859961748123,-0.10901837050915],[-0.014220479875803,-0.014699604362249,-0.1399239897728]],[[0.030296543613076,-0.040677901357412,-0.066693998873234],[0.0030539215076715,-0.14963907003403,-0.023381123319268],[-0.089431382715702,-0.058793909847736,0.023095047101378]],[[0.060919348150492,-0.0036501088179648,-0.041002579033375],[-0.11475022137165,0.045194298028946,-0.01566662825644],[0.034439437091351,0.013785442337394,-0.11683592945337]],[[0.022282162681222,0.0043634483590722,-0.074612371623516],[-0.023196497932076,-0.018396994099021,-0.043318755924702],[-0.01478588860482,-0.11500852555037,-0.11765652149916]],[[-0.086216256022453,0.032810904085636,-0.051579941064119],[0.049943927675486,-0.061173383146524,-0.071249827742577],[0.06341714411974,0.00065194431226701,-0.034748628735542]],[[0.044238660484552,-0.13678446412086,0.0031514598522335],[-0.20780356228352,0.1124555170536,-0.10773112624884],[-0.076549239456654,0.13842594623566,-0.00077870505629107]],[[-0.086494460701942,0.051350068300962,-0.0043531954288483],[0.036992896348238,0.028149975463748,0.019828733056784],[0.018709182739258,0.020307643339038,0.045016929507256]],[[-0.0012366729788482,0.0099722584709525,-0.036658525466919],[0.044065598398447,-0.020576713606715,-0.002639761660248],[-0.0040467581711709,0.14552710950375,0.058823674917221]],[[0.02144661359489,-0.031830854713917,-0.11300477385521],[0.12506225705147,-0.047614056617022,-0.022441234439611],[0.0089168399572372,-0.12684246897697,-0.084567047655582]],[[-0.019746851176023,0.13315676152706,-0.02722879499197],[0.038406331092119,-0.017138129100204,0.0041033453308046],[-0.062645480036736,-0.03748569637537,0.037628978490829]],[[0.019146403297782,0.0093377130106091,0.0094385975971818],[0.061635352671146,0.094824008643627,0.051327887922525],[0.05429370328784,-0.1099920347333,-0.040976524353027]],[[0.070337124168873,0.077391892671585,-0.014169791713357],[-0.046932984143496,0.019398974254727,0.0045022056438029],[-0.012244523502886,0.070311412215233,0.0044056922197342]],[[-0.042814657092094,-0.095098830759525,0.10476591438055],[-0.0088806077837944,-0.083276577293873,0.050800498574972],[-0.010324899107218,-0.080761596560478,0.05599782243371]],[[0.047725714743137,-0.035479731857777,0.011950100772083],[0.15506179630756,-0.04513980448246,0.045540604740381],[0.099066950380802,-0.043392084538937,-0.014562703669071]],[[-0.03600425645709,0.010196757502854,0.0097800903022289],[-0.050088681280613,0.056079495698214,-0.019105670973659],[-0.075387328863144,0.041538957506418,-0.052280526608229]],[[0.13617470860481,-0.059858687222004,0.05779242888093],[0.16462141275406,0.021608356386423,-0.017785897478461],[0.14941731095314,-0.031906615942717,-0.0048796236515045]],[[0.0241634901613,0.041273213922977,-0.044519253075123],[-0.01374903973192,0.090794332325459,-0.10764621943235],[-0.13646203279495,-0.00022769422503188,-0.074936464428902]],[[-0.062573589384556,-0.060271088033915,0.0027557695284486],[-0.045328240841627,0.0043203001841903,0.073390923440456],[-0.023165699094534,0.10181679576635,0.029695995151997]],[[0.024509157985449,0.027232803404331,-0.023972168564796],[-0.066709041595459,0.090033508837223,-0.0011833652388304],[0.01507683377713,-0.024526355788112,-0.051351103931665]],[[0.095044948160648,0.037218160927296,-0.036842953413725],[0.062718480825424,0.048459675163031,0.02265490218997],[-0.051100805401802,0.075004681944847,-0.086713686585426]],[[-0.039861083030701,-0.064259201288223,0.021760489791632],[0.070211872458458,0.011321653611958,-0.068354949355125],[0.039024081081152,0.0069559654220939,0.023568181321025]],[[0.088453039526939,-0.0090266894549131,-0.026719072833657],[0.1472904831171,0.002751890802756,-0.048065729439259],[0.026851734146476,-0.037921659648418,-0.014538574963808]],[[0.030260818079114,0.11185748875141,0.044535405933857],[0.032734572887421,0.017770476639271,0.010517310351133],[-0.041772425174713,-0.06796508282423,0.014313464984298]],[[0.08185226470232,-0.010501396842301,0.013109539635479],[0.043803747743368,-0.031173761934042,-0.018707469105721],[0.028898866847157,-0.050579346716404,0.042405281215906]],[[-0.053130477666855,-0.070006527006626,-0.014847851358354],[0.0083216745406389,0.037247378379107,0.084560804069042],[-0.07201474159956,0.083908326923847,0.058632731437683]],[[0.078526005148888,-0.14241650700569,-0.026423428207636],[0.060171689838171,-0.012294450774789,-0.015931349247694],[0.049403566867113,-0.011354505084455,-0.031088082119823]],[[0.06373693048954,-0.021466871723533,-0.062708757817745],[0.023786330595613,-0.021584060043097,-0.10405723750591],[0.084387481212616,-0.16766673326492,-0.10483554750681]],[[0.11999592930079,-0.01407216116786,-0.017680682241917],[0.056108165532351,0.029813108965755,-0.077214367687702],[-0.025143351405859,-0.12608084082603,-0.052956230938435]],[[-0.037024788558483,-0.00046835880493745,0.01066102925688],[-0.025095937773585,0.048784140497446,-0.03822385892272],[0.05917102470994,-0.13167636096478,-0.048758301883936]],[[-0.012367280200124,-0.014877483248711,-0.020621044561267],[-0.0066393231973052,-0.043684013187885,0.055167812854052],[-0.078887715935707,-0.073240414261818,0.014135939069092]],[[-0.018897222355008,0.023535395041108,-0.020281126722693],[0.055247001349926,-0.019595930352807,-0.037359688431025],[0.050475761294365,-0.037995427846909,-0.012258479371667]],[[-0.012142013758421,0.012326564639807,0.015432769432664],[0.045833703130484,0.023691119626164,0.0040802196599543],[0.022575171664357,-0.0030150269158185,-0.033511202782393]],[[-0.023210547864437,0.067198432981968,0.029610391706228],[0.052122730761766,-0.046955432742834,0.022131234407425],[-0.071569435298443,0.049711517989635,-0.0057022557593882]],[[-0.079745166003704,0.078410863876343,-0.016331374645233],[0.00303900311701,0.019718578085303,0.050126049667597],[0.052414838224649,-0.066664516925812,0.022068915888667]],[[-0.1043863222003,0.039315804839134,-0.039342615753412],[0.063058450818062,0.026060804724693,0.04089455679059],[0.23158514499664,-0.07377952337265,0.12238830327988]],[[-0.063907809555531,0.031862664967775,-0.069482736289501],[-0.045725893229246,-0.060421980917454,0.043815534561872],[-0.0063364305533469,-0.046344187110662,-0.061215855181217]],[[0.034384019672871,-0.056153044104576,0.016202168539166],[0.097971491515636,-0.067546777427197,0.016164300963283],[0.15063144266605,0.028766702860594,0.076095439493656]],[[-0.07001593708992,-0.13003794848919,0.1273825019598],[0.10805971175432,-0.035904463380575,-0.034083049744368],[-0.063238337635994,-0.10025522112846,0.00075168209150434]],[[-0.051387697458267,-0.021618904545903,-0.014318263158202],[0.03476594761014,0.053049419075251,-0.0047934241592884],[-0.17683757841587,0.028102319687605,-0.004267047625035]],[[-0.085116982460022,0.034068539738655,-0.089779563248158],[0.032070208340883,-0.13903786242008,0.027778951451182],[0.0013199273962528,-0.028312399983406,-0.056636307388544]],[[-0.0090210530906916,-0.056952472776175,0.017811449244618],[0.01187627390027,-0.080108039081097,-0.049103938043118],[0.086798004806042,0.11190127581358,-0.0076453941874206]],[[0.0033711877185851,-0.024100193753839,0.011557703837752],[0.03175088763237,0.054670959711075,0.026985544711351],[0.0436732172966,0.034677844494581,0.13601738214493]],[[-0.10032325983047,0.060009147971869,-0.0036343841347843],[-0.022919937968254,0.069350615143776,0.10406755656004],[0.04184278100729,0.11258367449045,-0.019019750878215]],[[0.11019363999367,0.059657081961632,-0.0029791020788252],[0.050091747194529,-0.015405922196805,-0.024665465578437],[-0.10210491716862,0.086275145411491,0.074377879500389]],[[-0.055404417216778,0.048436123877764,0.01851356215775],[0.046986147761345,-0.067110374569893,-0.09845245629549],[-0.03187470138073,0.056529246270657,0.0021340774837881]],[[-0.0022301601711661,-0.081385366618633,0.073415488004684],[-0.067469887435436,-0.047618847340345,0.048521555960178],[-0.039444983005524,0.069437906146049,0.054071772843599]],[[0.013826505281031,0.011766242794693,-0.053910650312901],[0.088762044906616,0.011427033692598,0.003445468377322],[-0.074048645794392,-0.10234641283751,0.05621836706996]],[[-0.089402459561825,0.15161556005478,0.052864771336317],[-0.048853702843189,0.025918126106262,0.049210213124752],[0.086380697786808,0.019857220351696,0.02483499981463]],[[0.00019395089475438,-0.072934105992317,-0.098414823412895],[0.10872356593609,-0.050831191241741,0.034517951309681],[0.040545806288719,0.18387289345264,0.037287130951881]],[[0.035670418292284,0.030245702713728,0.0084435883909464],[0.01717846468091,-0.024297317489982,0.035167906433344],[0.021130805835128,0.10053807497025,0.045376680791378]],[[0.041316315531731,0.053019464015961,0.0061236661858857],[0.180549710989,0.00090369005920365,-0.01780747808516],[0.077754303812981,-0.040728453546762,0.012048476375639]],[[-0.11188565194607,0.009630155749619,0.03652074560523],[-0.031166765838861,0.074343957006931,0.0091401664540172],[-0.053813677281141,0.079003371298313,0.081219635903835]],[[0.053607195615768,-0.042985092848539,0.0054548527114093],[-0.068343535065651,-0.099521018564701,0.072457000613213],[-0.03940025344491,-0.031612135469913,0.0050485022366047]],[[0.0055743749253452,0.017588969320059,-0.012049176730216],[0.0032113578636199,0.072830349206924,-0.1314567476511],[0.067535988986492,0.05327170342207,-0.030533824115992]],[[-0.068291611969471,-0.022485574707389,0.063655234873295],[-0.044301174581051,0.027696665376425,0.016599096357822],[-0.018889369443059,0.055779401212931,0.064812950789928]],[[-0.017277268692851,0.020508006215096,-0.060788080096245],[0.10990684479475,0.052371565252542,-0.046068269759417],[0.036016695201397,-0.053212195634842,0.052445281296968]],[[-0.01165694091469,-0.03150886297226,0.043385233730078],[-0.047358624637127,0.052823528647423,0.034205932170153],[0.043177533894777,-0.10791317373514,0.0076512708328664]],[[-0.061779204756021,-0.096608459949493,0.057520106434822],[-0.07069219648838,0.013550710864365,0.044940959662199],[0.087938100099564,0.15506584942341,-0.0054917791858315]],[[-0.039363153278828,0.054661203175783,-0.050204463303089],[0.12260360270739,-0.14353127777576,0.040702790021896],[0.061213947832584,-0.11576465517282,-0.099912002682686]],[[0.047106135636568,-0.011966792866588,-0.033463921397924],[-0.074500977993011,-0.026951998472214,0.093077220022678],[0.12532244622707,0.10772068053484,-0.011136933229864]],[[0.04192591458559,0.03498288616538,-0.08167764544487],[0.056377656757832,0.0063680508174002,-0.012358045205474],[-0.044054873287678,-0.035615630447865,0.06969092041254]],[[-0.0078559704124928,0.057899851351976,0.0011525504523888],[0.1259557902813,-0.096483215689659,0.01900034211576],[-0.034364446997643,0.060517378151417,-0.020039666444063]],[[-0.017052475363016,0.070141665637493,-0.039611849933863],[-0.078471980988979,0.14043042063713,-0.068582817912102],[0.073968805372715,-0.02625361084938,-0.029855325818062]],[[-0.072524480521679,-0.0039359931834042,0.0088820522651076],[0.035109773278236,0.021002523601055,0.027424233034253],[-0.0081568425521255,-0.044897507876158,0.047013618052006]],[[0.10918648540974,0.048917215317488,0.083150796592236],[0.041028641164303,-0.026546830311418,0.029314193874598],[-0.052681673318148,0.00055196415632963,-0.05534677579999]],[[0.050392150878906,0.066497467458248,0.072342336177826],[0.11125921458006,-0.0039219125173986,-0.085283435881138],[0.092969886958599,0.0028748100157827,0.0043875589035451]],[[-0.029243096709251,-0.0023869981523603,-0.0091548059135675],[0.025264825671911,0.052132606506348,0.0069275517016649],[0.032313220202923,0.042202014476061,0.060192801058292]],[[-0.034688413143158,-0.04902520775795,-0.12430921196938],[-0.037938926368952,-0.041456069797277,0.0026394384913146],[-0.14566734433174,0.10434425622225,0.049305208027363]],[[-0.0007946538971737,-0.0082769570872188,-0.043202854692936],[-0.047516595572233,0.039538387209177,0.11490719765425],[-0.10889849811792,0.042728878557682,0.11364234238863]],[[-0.06658810377121,0.14712262153625,0.0016453264979646],[-0.078826025128365,-0.061834361404181,0.011662508361042],[0.038383007049561,0.025957636535168,0.0041240495629609]],[[0.036996781826019,0.0091546168550849,-0.016344755887985],[-0.018103115260601,0.0073220827616751,0.013062176294625],[-0.011067037470639,0.062323279678822,0.02431764267385]],[[-0.030796663835645,-0.11988365650177,-0.01672306843102],[-0.10521071404219,0.08575339615345,0.0096043199300766],[0.0051882360130548,0.092532530426979,-0.010652246885002]],[[0.068474553525448,0.050938181579113,0.027345018461347],[-0.087541230022907,-0.0067252167500556,0.024134088307619],[-0.048638142645359,0.08326430618763,0.021889336407185]],[[-0.085448950529099,0.097657643258572,-0.049100242555141],[0.010524762794375,0.11731354892254,0.0080592902377248],[-0.0027441496495157,0.080196596682072,-0.037277448922396]],[[0.041611157357693,0.032584983855486,0.03402342274785],[0.14311407506466,0.0029646584298462,0.0012877370463684],[-0.027218213304877,-0.0073033212684095,0.051193222403526]],[[0.0062007284723222,-0.066616594791412,-0.041551273316145],[-0.025067480280995,0.048531964421272,0.033337034285069],[0.11557070165873,0.0089856302365661,0.0054077599197626]],[[-0.0055821458809078,0.16056577861309,-0.10777916014194],[0.037002645432949,-0.042554616928101,-0.038607526570559],[0.018062714487314,-0.061563421040773,0.003239965531975]],[[-0.047450628131628,0.11367660015821,-0.011417480185628],[-0.016016285866499,-0.026304084807634,-0.014544825069606],[-0.097443453967571,-0.065457701683044,0.10612967610359]],[[-0.074715457856655,0.039190132170916,0.076044239103794],[-0.0032992151100188,0.15614837408066,0.0050013018772006],[0.11325289309025,-0.018729196861386,0.0038889416027814]],[[0.068212099373341,0.0081962393596768,-0.06933057308197],[-0.1575867831707,0.22129668295383,-0.11689798533916],[0.12780214846134,0.22068464756012,0.089728817343712]],[[-0.00045148658682592,0.031851705163717,0.0001176189398393],[-0.047315072268248,-0.055253881961107,0.015519990585744],[-0.18807515501976,0.0087043568491936,0.042763590812683]],[[0.15869204699993,0.094713173806667,0.055465437471867],[0.091077759861946,0.046402744948864,0.068173035979271],[0.14574538171291,-0.005497835110873,0.061752364039421]],[[0.051407720893621,-0.046546000987291,0.09187838435173],[-0.068763270974159,-0.01135185174644,-0.0037216662894934],[0.045222796499729,0.10549464821815,-0.044410444796085]],[[0.0031402665190399,-0.16046863794327,-0.0030605173669755],[-0.040833044797182,-0.021053582429886,-0.05539508536458],[-0.049125209450722,0.047254636883736,0.051832992583513]],[[-0.045040879398584,-0.023924035951495,0.062581732869148],[-0.12885211408138,-0.072718732059002,0.030119743198156],[-0.08526585996151,0.12449404597282,-0.043197799474001]],[[0.09320467710495,-0.080473959445953,0.025246012955904],[0.057881478220224,0.029326979070902,0.044357161968946],[-0.16150332987309,0.011046546511352,-0.023366330191493]],[[-0.043835576623678,-0.025736130774021,-0.04438728094101],[-0.033263321965933,0.01425851136446,0.013065934181213],[-0.03262048214674,-0.0032119217794389,0.056196622550488]],[[0.051412172615528,0.019101912155747,-0.1317326426506],[0.0042776302434504,-0.060963913798332,-0.072220787405968],[-0.0028805930633098,-0.11945774406195,0.036250744014978]],[[0.03190129250288,-0.075467832386494,-0.026704689487815],[0.071723356842995,-0.13326984643936,0.033880267292261],[-0.037416275590658,-0.0076621351763606,0.013445665128529]],[[0.0469088293612,-0.05580210313201,0.0069800093770027],[-0.10226671397686,0.0043778773397207,0.049234170466661],[-0.085376158356667,0.037208721041679,-0.036525398492813]],[[-0.016927948221564,-0.046479858458042,0.0074407192878425],[-0.023462714627385,0.023321941494942,0.078563585877419],[0.092984057962894,0.10860724002123,0.035688459873199]],[[-0.018225740641356,-0.069954864680767,0.085433311760426],[-0.023029573261738,-0.066180646419525,-0.076318643987179],[0.080178022384644,0.050910592079163,0.045483626425266]],[[0.011924365535378,-0.071670241653919,-0.052958209067583],[0.042174398899078,0.008589562959969,-0.037138268351555],[0.089569710195065,0.048343397676945,0.021150717511773]],[[-0.0049314349889755,-0.087829828262329,-0.020131345838308],[0.12488283962011,-0.04068161174655,-0.014699936844409],[-0.17872931063175,0.11338393390179,-0.0095805916935205]],[[-0.010149967856705,-0.10089242458344,0.04471841827035],[-0.014826202765107,-0.040093969553709,-0.038857609033585],[-0.016744198277593,0.024871515110135,0.0094359507784247]],[[-0.019755268469453,-0.065548829734325,-0.0054314862936735],[0.04760167747736,0.014197167009115,0.056132331490517],[0.037203181535006,-0.032235074788332,0.060955580323935]],[[-0.06899680942297,-0.048902876675129,-0.065439336001873],[0.0018102012109011,0.039422806352377,-0.030711648985744],[0.05034015327692,-0.045546259731054,0.012431479990482]],[[-0.037070583552122,-0.02571495436132,0.020727276802063],[2.6667144993553e-05,0.027227992191911,0.017217699438334],[0.076988250017166,0.069582022726536,-0.033565804362297]],[[-0.13224467635155,0.069366738200188,0.02623438835144],[-0.19422470033169,0.12736366689205,0.087659992277622],[0.033793084323406,0.017717344686389,-0.0014761675847694]],[[0.02547494135797,0.024605385959148,-0.049571238458157],[0.028443727642298,-0.0426230058074,0.081366427242756],[-0.047066353261471,-0.004060938488692,0.026269169524312]],[[-0.021421279758215,0.074029184877872,-0.060972187668085],[-0.04854129999876,-0.07535407692194,0.091187655925751],[-0.0247404538095,-0.13447524607182,0.045380655676126]],[[-0.098438873887062,0.0017690709792078,0.084254525601864],[-0.038332041352987,0.001848995918408,-0.020701372995973],[0.057999853044748,0.023980503901839,-0.010976756922901]],[[0.12426315248013,0.046761550009251,-0.014735456556082],[0.034070365130901,0.067612983286381,-0.073553368449211],[-0.072718299925327,-0.18289330601692,-0.060754515230656]],[[-0.018033530563116,0.06074370443821,-0.044137105345726],[0.095624580979347,-0.013239885680377,-0.080038912594318],[-0.072350792586803,-0.098967723548412,-0.00043563221697696]],[[-0.018184166401625,-0.029898291453719,-0.0077770887874067],[-0.005311047192663,-0.071304492652416,-0.060925282537937],[-0.065701723098755,0.1075284704566,0.018007971346378]],[[0.15476544201374,-0.1213908046484,-0.01233291067183],[-0.15290215611458,0.052259549498558,0.059611473232508],[-0.060327127575874,0.11179406940937,0.10693054646254]]],[[[0.025139585137367,-0.0071288240142167,-0.087598465383053],[-0.045222334563732,-0.0016961264191195,0.025569537654519],[0.084088340401649,-0.11374010890722,-0.096391215920448]],[[0.018396601080894,0.034104898571968,0.035291831940413],[-0.05666359141469,0.020677056163549,0.054543316364288],[-0.053798779845238,-0.067574486136436,0.069710731506348]],[[0.00055337330559269,0.021252969279885,-0.010306116193533],[0.057174246758223,0.015224372968078,0.071561343967915],[0.037378624081612,-0.020740564912558,-0.046224735677242]],[[0.03109741024673,-0.038786869496107,-0.18662868440151],[-0.10875851660967,0.030632879585028,-0.0057134781964123],[0.039966225624084,0.0040740072727203,0.070361725986004]],[[-0.024634623900056,-0.083021074533463,0.011229496449232],[0.022862236946821,0.044158056378365,0.014912256039679],[-0.11774488538504,0.063079886138439,0.067930765450001]],[[-0.066112324595451,-0.075475841760635,-0.0221794154495],[0.080568663775921,0.10974062979221,0.082703538239002],[0.014683574438095,-0.009104685857892,-0.041685469448566]],[[-0.046865928918123,-0.068236440420151,-0.035367846488953],[0.043963946402073,0.022024167701602,-0.036652695387602],[-0.06892617046833,0.071272879838943,0.0027316985651851]],[[0.079146690666676,-0.071321845054626,-0.14295019209385],[0.0092988200485706,0.006177019327879,-0.022632380947471],[0.11797784268856,-0.0047768382355571,-0.00012388052709866]],[[-0.18084888160229,-0.054613877087831,-0.029305193573236],[-0.011733867228031,-0.087570376694202,0.05865166708827],[0.024809651076794,-0.065336599946022,-0.17147532105446]],[[-0.080920472741127,-0.027368810027838,-0.06399767100811],[-0.010125072672963,0.027885746210814,-0.068516775965691],[0.016095189377666,0.038510166108608,-0.018946245312691]],[[-0.01985059864819,0.13273061811924,0.09036735445261],[0.02297799475491,0.028833236545324,0.0089797871187329],[0.063824377954006,0.14534825086594,-0.012076610699296]],[[0.10687581449747,0.046213407069445,0.052309066057205],[-0.095893211662769,-0.037256069481373,-0.032653145492077],[0.16108293831348,0.046425130218267,-0.037357315421104]],[[-0.076204933226109,-0.0020980385597795,0.11031283438206],[-0.11044280230999,-0.13299724459648,-0.03275803104043],[0.16799613833427,-0.0303072668612,-0.087278127670288]],[[0.068428568542004,-0.026154860854149,-0.069095432758331],[0.010412988252938,0.11826518923044,0.028281733393669],[-0.029443450272083,-0.13308861851692,0.0042052585631609]],[[0.0099322609603405,0.11107445508242,-0.058187615126371],[-0.075392790138721,0.035150431096554,0.068760901689529],[-0.016182627528906,-0.01905969530344,0.048304315656424]],[[-0.063427060842514,-0.0096752857789397,-0.073967814445496],[-0.041050631552935,0.0062843984924257,-0.016186121851206],[0.1762512922287,0.083299420773983,0.0098270624876022]],[[-0.035135086625814,0.051267694681883,0.033506885170937],[0.11261289566755,-0.030922366306186,0.040898777544498],[-0.063566476106644,-0.055120650678873,0.02812160179019]],[[0.017592523247004,0.040603376924992,-0.041040532290936],[-0.053680449724197,0.013138423673809,-0.047146629542112],[-0.0074397572316229,0.074215039610863,-0.0090397456660867]],[[0.019672324880958,0.013254859484732,-0.042987428605556],[0.0124028082937,-0.059861894696951,-0.0076012038625777],[0.092095032334328,0.097135759890079,0.010316150262952]],[[0.18026147782803,0.085886672139168,0.012375589460135],[0.023101586848497,0.031159279868007,-0.06436225771904],[0.073408044874668,0.097284346818924,0.040228594094515]],[[0.048466935753822,-0.087677426636219,-0.056158225983381],[0.013690597377717,-0.02271668612957,0.097205087542534],[-0.11636475473642,-0.14767478406429,0.01854114793241]],[[-0.0064517855644226,0.10486190021038,0.054116196930408],[-0.050852756947279,0.01915972866118,-0.11244859546423],[0.092070579528809,0.034708902239799,-0.0073156687431037]],[[-0.015947986394167,0.012900795787573,0.091867804527283],[-0.12172871083021,-0.032181303948164,0.037252485752106],[-0.030663447454572,0.012641243636608,0.038119360804558]],[[0.024819362908602,0.11569508165121,0.087188325822353],[-0.048113975673914,0.072885267436504,-0.0032653948292136],[0.12542441487312,0.036289665848017,-0.015559587627649]],[[-0.036765526980162,-0.15648432075977,-0.20237626135349],[-0.018940286710858,-0.075136132538319,0.00026053466717713],[0.033551398664713,-0.20577892661095,-0.17768362164497]],[[0.067343853414059,0.05119090154767,0.053175121545792],[-0.011169743724167,0.046394743025303,0.042279988527298],[0.21293048560619,0.046367332339287,0.013550709933043]],[[-0.21853344142437,0.057189505547285,0.18721315264702],[0.065714552998543,-0.047167394310236,-0.085664555430412],[-0.0056158350780606,-0.0071733430959284,0.028104092925787]],[[-0.059811189770699,0.13478069007397,-0.077703647315502],[0.059727534651756,0.053819514811039,0.15492588281631],[0.11605548113585,-0.024069139733911,-0.011666471138597]],[[0.047742683440447,0.057290058583021,-0.051452599465847],[0.064063742756844,0.13183544576168,-0.025895206257701],[0.025340082123876,-0.05510227009654,-0.02514391951263]],[[-0.082055039703846,0.054874017834663,0.026444023475051],[0.10637757182121,0.043441511690617,0.051788751035929],[0.11292214691639,0.099982909858227,0.12757210433483]],[[-0.11454164981842,0.0011362332152203,-0.0083138234913349],[0.063276529312134,0.017925705760717,0.016655856743455],[0.030919149518013,-0.056775137782097,-0.034460432827473]],[[0.010315151885152,-0.064159825444221,0.052888106554747],[0.027747878804803,0.11615102738142,-0.0037323641590774],[-0.023108525201678,0.15866023302078,0.11901395022869]],[[-0.041373606771231,-0.012030256912112,0.02143288217485],[-0.04296201467514,-0.016953386366367,0.019233766943216],[0.05108368396759,-0.11619938164949,0.0025280718691647]],[[0.060020800679922,0.10720586031675,0.10686665773392],[-0.043401535600424,-0.079086542129517,-0.022690640762448],[-0.024806160479784,0.034793321043253,-0.0052662347443402]],[[0.013383949175477,-0.022545734420419,0.02949514426291],[-0.058092623949051,0.0056611527688801,-0.037506341934204],[0.076712667942047,0.038379289209843,0.015161204151809]],[[0.093453250825405,-0.015209205448627,-0.045145206153393],[-0.036273527890444,0.13605237007141,-0.077688537538052],[-0.17218554019928,0.042702313512564,0.024732932448387]],[[0.065945237874985,-0.065006501972675,-0.03987380489707],[0.018930964171886,-0.036451805382967,0.027861721813679],[0.031242270022631,0.02388459444046,0.15367455780506]],[[0.066442281007767,-0.029378643259406,-0.057900562882423],[-0.028320569545031,0.021971948444843,0.039109818637371],[-0.014517329633236,0.035166025161743,0.04462867602706]],[[0.0076061519794166,-0.0096528055146337,0.08476098626852],[-0.099797911942005,0.027896882966161,-0.012125478126109],[-0.035675186663866,-0.01569957472384,0.087810836732388]],[[0.092398926615715,-0.043463934212923,-0.024229990318418],[0.023448495194316,0.051700733602047,0.044683422893286],[0.21744312345982,-0.032456874847412,0.032106142491102]],[[0.015537964180112,0.026915770024061,0.074293777346611],[-0.0013089032145217,0.0052933194674551,0.014107838273048],[-0.023824498057365,0.021325517445803,-0.10160734504461]],[[0.053235206753016,0.042195409536362,0.089079618453979],[-0.026031056419015,-0.013544080778956,0.031778812408447],[0.032065913081169,0.0048369807191193,0.077630199491978]],[[-0.037801641970873,0.074596293270588,-0.10256595164537],[0.06853162497282,-0.0054066986776888,0.040216024965048],[0.19435419142246,0.11195282638073,0.022341065108776]],[[0.039394281804562,0.04668503254652,0.080833934247494],[-0.024540096521378,0.086776904761791,0.046135745942593],[-0.094452619552612,-0.10554514080286,-0.074797324836254]],[[0.048924561589956,-0.059817250818014,0.083630353212357],[0.049791730940342,-0.023567266762257,0.082453802227974],[-0.027184562757611,-0.10519082844257,-0.05320705845952]],[[0.02966826967895,0.07028041779995,0.092692196369171],[0.05143041908741,0.080759897828102,0.05231961607933],[0.11276113986969,0.070240192115307,0.089302875101566]],[[0.020777683705091,0.14183561503887,-0.1098854765296],[0.12382523715496,0.029529148712754,-0.024767719209194],[-0.15070593357086,-0.035197034478188,0.078541599214077]],[[-0.17501176893711,-0.28971564769745,-0.15889194607735],[-0.20584560930729,-0.28890725970268,-0.18502695858479],[-0.23832359910011,-0.40675032138824,-0.1505041718483]],[[-0.029717549681664,-0.043793220072985,-0.031430572271347],[-0.0039450200274587,-0.018806289881468,0.037112925201654],[-0.0019714783411473,0.059280022978783,0.0440873503685]],[[0.074427016079426,0.014621280133724,-0.039373721927404],[-0.0061877076514065,0.057002227753401,0.017963023856282],[-0.11861553043127,0.0074502527713776,0.014290704391897]],[[-0.089012175798416,-0.029524229466915,0.034765485674143],[-0.028901455923915,0.086840324103832,0.057577636092901],[-0.15876503288746,0.0091815330088139,-0.08026797324419]],[[-0.014498425647616,0.049455907195807,0.077249646186829],[-0.008466949686408,-0.039868544787169,-0.046418275684118],[0.063165061175823,0.048497784882784,0.036810886114836]],[[0.017365025356412,0.007972220890224,0.022178711369634],[0.032524157315493,0.0089881923049688,0.010806183330715],[-0.048866346478462,-0.052045699208975,-0.013737658038735]],[[0.0064326617866755,-0.013053178787231,0.035003080964088],[0.070602536201477,0.12427635490894,-0.094403795897961],[-0.22384838759899,-0.097662344574928,0.053584158420563]],[[-0.053029268980026,-0.13003249466419,-0.043590687215328],[-0.06022285670042,-0.060237061232328,-0.025121698155999],[-0.056687586009502,0.051545556634665,-0.10958664119244]],[[-0.067832134664059,0.11402598023415,0.01818217150867],[0.062213134020567,0.012999431230128,-0.096404351294041],[0.077121764421463,0.033991079777479,0.015210338868201]],[[-0.060266651213169,0.021999690681696,0.096398629248142],[0.17295974493027,0.18120464682579,0.099082827568054],[0.096677169203758,0.084054216742516,0.17670021951199]],[[0.055852714926004,0.088348411023617,0.048536766320467],[-0.01752339117229,-0.026246748864651,-0.09337155520916],[0.088362269103527,0.024840835481882,-0.032143626362085]],[[-0.026411762461066,-0.024403996765614,0.035996597260237],[0.12588994204998,0.12846376001835,0.097691528499126],[0.046334154903889,0.081768102943897,0.08106617629528]],[[-0.0713110268116,-0.11889983713627,-0.022334855049849],[-0.083099663257599,0.10105354338884,0.060512773692608],[-0.023801440373063,0.047189112752676,0.065302662551403]],[[0.069108709692955,0.044132854789495,0.046595066785812],[-0.0031792263034731,0.014698590151966,0.071833714842796],[-0.18614146113396,-0.12692587077618,0.022386493161321]],[[-0.17985811829567,-0.20988936722279,0.11740863323212],[-0.077838927507401,-0.067812874913216,-0.14947855472565],[-0.22407339513302,-0.22057165205479,-0.031568195670843]],[[-0.051942318677902,0.0068157953210175,0.06977517157793],[-0.03888027369976,-0.11811593174934,-0.10252109915018],[-0.045292723923922,-0.12624752521515,-0.042922023683786]],[[-0.032999806106091,-0.049501061439514,-0.004727880936116],[0.074637159705162,-0.013485673815012,0.029939135536551],[0.051851838827133,0.077053017914295,-0.0088082486763597]],[[0.017885541543365,-0.03312548622489,0.018157187849283],[0.0053541334345937,-0.093361936509609,-0.090050503611565],[-0.064202435314655,-0.046596504747868,0.029455436393619]],[[-0.063929446041584,0.11485221982002,0.13856907188892],[-0.05824813246727,-0.10940854996443,-0.048849415034056],[0.12433379888535,0.040701359510422,0.095195114612579]],[[-0.046095617115498,-0.026621332392097,-0.012650404125452],[-0.065136715769768,-0.020415550097823,0.0076827700249851],[-0.022799864411354,-0.079698242247105,0.077871590852737]],[[-0.092057205736637,0.070939570665359,-0.004761063028127],[0.12731213867664,0.055222984403372,-0.035314690321684],[-0.045605774968863,0.11341553926468,0.066820092499256]],[[0.056099992245436,-0.063425436615944,-0.076052501797676],[0.15377037227154,0.005539137404412,-0.052420478314161],[0.086629368364811,0.0087523981928825,-0.13364680111408]],[[0.016885481774807,-0.033137325197458,0.041163522750139],[-0.02341441065073,0.079636782407761,0.082097969949245],[-0.098225258290768,0.016126673668623,0.044152300804853]],[[-0.031127240508795,0.15987706184387,-0.052647780627012],[0.1098915413022,0.043049823492765,0.042359262704849],[0.05759909376502,0.055817950516939,0.066720433533192]],[[-0.0025009212549776,0.12326373904943,0.012759464792907],[0.15239587426186,0.019385058432817,-0.13282755017281],[0.02132480032742,0.11837116628885,-0.1500491797924]],[[0.062451120465994,0.039216067641973,0.072029322385788],[-0.011708626523614,0.13283485174179,0.019385386258364],[0.076458424329758,0.027750121429563,-0.0077108270488679]],[[0.011917255818844,0.055015724152327,-0.064986251294613],[-0.11271928995848,-0.023099381476641,-0.0018729036673903],[0.046925488859415,-0.044830661267042,0.067555218935013]],[[0.048185586929321,0.065215893089771,-0.032517891377211],[0.023891508579254,-5.2035662520211e-05,-0.0079311821609735],[-0.025215893983841,0.024916905909777,0.02890095859766]],[[0.080338381230831,0.05794532969594,-0.048982247710228],[0.02644107490778,0.068754464387894,-0.05011996999383],[-0.072708763182163,-0.089856959879398,-0.020714092999697]],[[-0.006837697699666,-0.017713265493512,-0.024244543164968],[-0.10081444680691,0.048186186701059,0.040404826402664],[0.050136983394623,-0.056221548467875,0.031182384118438]],[[0.015582795254886,-0.16118557751179,0.061186611652374],[0.066405408084393,0.03820763155818,0.11049514263868],[0.077139347791672,0.16586378216743,-0.057132016867399]],[[0.046424314379692,-0.02247422747314,0.0035614052321762],[0.084233239293098,-0.011567532084882,-0.10753377526999],[0.026761036366224,0.085246361792088,0.079278521239758]],[[0.039284002035856,-0.036759741604328,-0.01207285374403],[-0.025244200602174,-0.097287692129612,0.019626960158348],[-0.062792800366879,-0.082361705601215,0.083318263292313]],[[-0.050027549266815,-0.10416845977306,0.050825584679842],[0.042357571423054,-0.023890886455774,-0.057458929717541],[0.0071634449996054,0.037310764193535,0.054057754576206]],[[0.10119712352753,0.14310428500175,-0.046914327889681],[0.024099411442876,0.029105324298143,0.11510536819696],[-0.11830419301987,-0.08175178617239,-0.03418231382966]],[[-0.14166885614395,0.037984177470207,0.018004970625043],[-0.015750551596284,-0.025638364255428,-0.013317099772394],[-0.07065723836422,0.052204590290785,0.053502842783928]],[[0.083888217806816,-0.040414124727249,0.0090746833011508],[-0.017904501408339,0.031331673264503,-0.00092556595336646],[-0.02508438937366,0.01306529995054,-0.10976307094097]],[[-0.0085727581754327,-0.06729781627655,0.053373992443085],[0.043574772775173,0.084168188273907,0.030554762110114],[-0.0099673755466938,-0.0062806243076921,-0.065328381955624]],[[-0.039689235389233,-0.019243158400059,-0.0027165345381945],[-0.0015517092542723,-0.11065772920847,-0.039030726999044],[-0.062166031450033,0.045634545385838,0.057531539350748]],[[-0.017382830381393,0.068328015506268,-0.030656773597002],[0.024278677999973,-0.038530308753252,-0.030684072524309],[-0.13404095172882,-0.020013719797134,-0.00419144006446]],[[-0.036696020513773,0.075035057961941,0.091544225811958],[-0.046331636607647,-0.011913134716451,-0.0010464632650837],[-0.050156008452177,-0.051340255886316,0.020982068032026]],[[0.097602732479572,0.14496001601219,0.089026138186455],[0.016737205907702,-0.031461756676435,-0.013400399126112],[0.057282663881779,0.11144296824932,0.080671474337578]],[[0.010930017568171,0.044172629714012,-0.085720576345921],[0.00013709279301111,0.069926023483276,0.066352009773254],[-0.059939730912447,-0.071960642933846,-0.10276224464178]],[[0.016721848398447,0.056115612387657,-0.00046073540579528],[0.066871210932732,-0.0054291007108986,0.007116662338376],[-0.098014578223228,0.02926336042583,0.093519017100334]],[[0.057304356247187,-0.057403042912483,-0.030868206173182],[0.0074848057702184,-0.031245579943061,0.0080444039776921],[0.10012414306402,0.0018296663183719,0.081181094050407]],[[-0.077785186469555,-0.081772945821285,0.055539101362228],[0.051482569426298,0.053565945476294,0.055797681212425],[0.013200763612986,-0.090074516832829,0.050659466534853]],[[-0.015604049898684,0.01519253756851,-0.049393609166145],[0.090929366648197,-0.012750942260027,-0.11739295721054],[-0.076854176819324,0.024964183568954,-0.020477371290326]],[[-0.0567024089396,0.0066747539676726,0.030203126370907],[0.095339648425579,0.017407279461622,-0.024291841313243],[-0.060357250273228,-0.015638636425138,0.038018181920052]],[[0.027062345296144,0.008335811085999,-0.021762756630778],[-0.036510095000267,-0.083661861717701,-0.044101029634476],[0.091555789113045,0.029229681938887,0.048727698624134]],[[0.062644317746162,0.082719162106514,0.038137063384056],[-0.12782774865627,0.003171359654516,0.0039033947978169],[-0.01114274840802,-0.0054175974801183,-0.025505855679512]],[[-0.033876493573189,-0.05710157379508,0.016450909897685],[0.11523803323507,0.032254315912724,-0.033903632313013],[-0.017382165417075,0.011573694646358,0.014153274707496]],[[0.035227954387665,-0.015442401170731,0.029477585107088],[0.026501543819904,0.027850173413754,0.041558112949133],[-0.0021979564335197,0.061099380254745,0.067757621407509]],[[0.020775819197297,-0.21208618581295,0.023910097777843],[-0.097865626215935,-0.068266838788986,0.10730118304491],[0.015849849209189,0.19574338197708,0.077628172934055]],[[0.072289995849133,-0.069566249847412,-0.21962162852287],[-0.14161506295204,0.015823144465685,-0.17274868488312],[-0.18785932660103,-0.29204905033112,-0.16835333406925]],[[-0.0072499741800129,0.06730118393898,0.10147265344858],[-0.071854092180729,0.14312079548836,-0.0052210502326488],[0.03156329318881,0.042500391602516,0.014361975714564]],[[0.0044727749191225,-0.010401300154626,0.0011918067466468],[-0.018410002812743,-0.083548560738564,0.022791899740696],[0.091828696429729,0.1005284935236,0.051625683903694]],[[-0.046708930283785,-0.01835067011416,0.012502364814281],[0.029930012300611,-0.020120238885283,-0.012752962298691],[0.0033415749203414,0.070380955934525,0.009526695124805]],[[0.018251044675708,0.039780650287867,-0.083252660930157],[-0.041213694959879,-0.0065585831180215,-0.070620514452457],[0.075942881405354,0.055974338203669,-0.014361659064889]],[[-0.016293715685606,-0.13721203804016,-0.076461344957352],[0.08706846088171,0.063452899456024,0.033343873918056],[-0.0037557932082564,-0.00042636616853997,0.00016296675312333]],[[-0.001855353708379,0.048891231417656,0.021489357575774],[-0.0090108960866928,0.014715137891471,-0.067348569631577],[0.14871063828468,0.0079790409654379,-0.026053622364998]],[[0.10611686110497,-0.031508136540651,-0.091399997472763],[0.075907573103905,0.026944894343615,0.00083375204121694],[0.18468277156353,-0.032877083867788,-0.035837981849909]],[[-0.036261204630136,-0.0305080935359,-0.016639050096273],[-0.056324727833271,0.0090419240295887,0.059755250811577],[0.12454106658697,0.048362512141466,-0.0095816059038043]],[[0.095090635120869,0.016290705651045,-0.046653222292662],[0.062698930501938,0.0054812706075609,-0.029093023389578],[-0.010680768638849,-0.064869895577431,0.030574152246118]],[[-0.083859734237194,-0.096406720578671,-0.12479384988546],[0.013444095849991,0.0081344842910767,0.0014385492540896],[0.10659399628639,0.12233032286167,0.055785823613405]],[[-0.024618841707706,-0.027952462434769,0.032432500272989],[0.012006367556751,-0.10531630367041,-0.002381099620834],[0.00037849953514524,-0.082468368113041,0.091281324625015]],[[-0.10020971298218,-0.073119059205055,-0.026377188041806],[-0.032786503434181,-0.052978411316872,-0.03901944309473],[0.08667703717947,0.069133818149567,-0.015135925263166]],[[-0.044805362820625,0.018890529870987,0.057647615671158],[0.042518343776464,0.054734077304602,-0.039644535630941],[-0.11592520773411,0.046999577432871,-0.0035224058665335]],[[-0.026594592258334,0.052464298903942,0.059159025549889],[0.0057741710916162,0.024277163669467,0.1029240116477],[-0.034732557833195,-0.096651218831539,0.036521919071674]],[[-0.017657626420259,0.19472862780094,-0.02243878506124],[-0.021001253277063,0.01170460972935,-0.049478195607662],[-0.068755745887756,-0.060767564922571,-0.02936889603734]],[[0.025495562702417,-0.017639804631472,-0.16641756892204],[0.021890627220273,0.00079660024493933,-0.014095019549131],[0.011932777240872,-0.020669145509601,0.058173216879368]],[[0.13421596586704,0.16589006781578,0.05890729278326],[0.083439737558365,0.014594106934965,-0.075547531247139],[0.06923846155405,0.060317300260067,-0.024260919541121]],[[-0.11457250267267,-0.046572417020798,-0.093583896756172],[-0.0095139713957906,-0.11324936896563,-0.027041129767895],[0.062435496598482,0.0046212105080485,0.0012292041210458]],[[-0.00078229536302388,0.013061532750726,0.057210013270378],[0.086119741201401,0.018274310976267,-0.015551840886474],[0.1011331230402,0.10648638010025,0.03857809305191]],[[-0.18718561530113,-0.12870129942894,0.026102408766747],[0.02015089429915,-0.073799461126328,0.015720512717962],[-0.011619552969933,-0.025234322994947,0.062186017632484]],[[-0.022507175803185,0.049254614859819,0.072374582290649],[0.16915054619312,-0.041416272521019,-0.037144780158997],[-0.017002992331982,-0.23226901888847,-0.058038931339979]],[[-0.19815923273563,0.10092927515507,0.19855371117592],[-0.03270261362195,-0.13208001852036,0.08455465734005],[-0.010812595486641,0.13288037478924,-0.091790907084942]],[[-0.053986452519894,-0.036998827010393,-0.070604801177979],[0.0010686998721212,-0.028397040441632,-0.06488211452961],[-0.057263061404228,-0.012862483039498,-0.013408181257546]],[[-0.04476261138916,-0.02666381187737,0.043200131505728],[-0.11817394942045,-0.071070559322834,0.017003389075398],[0.10792306065559,0.044869765639305,-0.027659682556987]],[[0.13853418827057,-0.049102704972029,-0.017456352710724],[0.050739042460918,-0.0032585649751127,0.054295919835567],[0.026699367910624,-0.044420689344406,-0.0025773379020393]],[[-0.012397643178701,0.0095153572037816,-0.017088541761041],[-0.040319923311472,0.14488086104393,-0.021424129605293],[-0.10812117904425,0.0035485154949129,0.15715444087982]],[[-0.10548017919064,0.099433518946171,0.03530453145504],[0.01605280674994,-0.049283087253571,0.031813386827707],[0.067679569125175,-0.073695629835129,0.013144372962415]]],[[[-0.0045614358969033,-0.0456767603755,0.18947823345661],[0.022464612498879,0.014992678537965,0.0030168895609677],[-0.034517627209425,-0.011333337053657,-0.026230920106173]],[[0.080247655510902,0.10025552660227,-0.069173991680145],[-0.090922735631466,-0.00023173305089585,0.087851755321026],[0.034805983304977,-0.031757384538651,-0.033218249678612]],[[0.018250284716487,0.0012477268464863,-0.027737323194742],[-0.0029507833532989,-0.010653957724571,0.020150674507022],[-0.022645618766546,-0.11839028447866,0.036956194788218]],[[0.067109197378159,-0.00094024400459602,-0.038014467805624],[-0.11181602627039,-0.049090407788754,0.080594912171364],[0.067957155406475,-0.053788218647242,0.054264187812805]],[[-0.095418520271778,0.041769590228796,0.034520123153925],[0.02984412945807,0.027399079874158,-0.08520844578743],[-0.016440063714981,0.016211038455367,0.010719458572567]],[[0.02579920552671,0.043125793337822,-0.01819983124733],[0.015966491773725,0.041006647050381,0.0096485037356615],[0.04597220569849,-0.0015859032282606,0.10717505216599]],[[0.023633936420083,-0.10096912831068,-0.0063458210788667],[0.020247232168913,0.045662466436625,-0.025827519595623],[-0.018289651721716,0.12059488147497,-0.04258494079113]],[[-0.049651511013508,0.0094827925786376,-0.058630544692278],[0.036072324961424,-0.011205116286874,-0.043977629393339],[-0.11323923617601,-0.051912534981966,-0.00072414387250319]],[[-0.035830657929182,-0.052007831633091,0.046980377286673],[-0.01123246923089,-0.12550330162048,-0.064547121524811],[-0.032207176089287,-0.041809484362602,-0.039062850177288]],[[-0.039299361407757,-0.014749913476408,0.029860006645322],[0.041688341647387,-0.017238292843103,0.018926408141851],[-0.11011832952499,0.0023913327604532,-0.016456983983517]],[[0.030698463320732,0.0052181733772159,-0.019682805985212],[0.069909684360027,-0.023711504414678,-0.010750736109912],[-0.036907948553562,0.042677629739046,0.015596845187247]],[[0.065652534365654,0.0076945964246988,0.028121685609221],[-0.043975707143545,0.057916756719351,0.001481975778006],[0.10163172334433,-0.02234173193574,-0.018923040479422]],[[0.029763899743557,0.021446926519275,-0.086944848299026],[0.049309127032757,-0.026057599112391,-0.063960358500481],[0.0067712254822254,-0.10038801282644,-0.047649368643761]],[[-0.0013577004428953,0.10137071460485,-0.0050706281326711],[-0.010830410756171,0.079400740563869,0.050930246710777],[-0.051578391343355,-0.094773456454277,0.11700091511011]],[[0.072479940950871,0.062656410038471,-0.040018260478973],[0.01018384937197,-0.13126157224178,0.15786352753639],[0.21606512367725,-7.949308201205e-05,-0.036675073206425]],[[-0.043600529432297,0.032723415642977,-0.053181868046522],[-0.076341852545738,-0.041009116917849,0.17562468349934],[0.018062751740217,0.02234310656786,-0.04809395596385]],[[-0.04423489049077,-0.020912788808346,0.0038246433250606],[-0.068419314920902,-0.03252400457859,0.062324076890945],[-0.087103351950645,-0.094530157744884,-0.095665447413921]],[[-0.046717509627342,-0.094482995569706,-0.04899087920785],[0.0328748524189,-0.053162712603807,-0.061016619205475],[-0.0046010534279048,-0.018374480307102,0.047518409788609]],[[-0.077288828790188,0.013213527388871,0.048463765531778],[0.15240842103958,-0.10480369627476,-0.081411123275757],[-0.10821431875229,0.051725290715694,-0.068120613694191]],[[-0.059039298444986,0.024693852290511,-0.073071800172329],[-0.12575264275074,-0.065572425723076,-0.02894034050405],[-0.044785212725401,-0.085163414478302,-0.013028386048973]],[[0.010689981281757,-0.029740018770099,-0.1156183257699],[-0.068844117224216,0.034114450216293,-0.0053018177859485],[0.0050639775581658,-0.064837507903576,0.093620948493481]],[[0.026037205010653,-0.051705088466406,-0.016160201281309],[0.046102654188871,0.038975581526756,-0.14239370822906],[-0.052750866860151,0.0019647593144327,-0.12067627906799]],[[0.010931173339486,-0.024614311754704,-0.044553674757481],[-0.030317159369588,0.036542821675539,-0.01693064160645],[0.0004372081020847,-0.060372982174158,0.035590998828411]],[[0.031056279316545,-0.011700983159244,-0.053146451711655],[-0.04226129502058,0.036717087030411,-0.03938851505518],[-0.071593508124352,-0.052752390503883,-0.030492193996906]],[[0.24949690699577,-0.12514455616474,-0.066216595470905],[-0.034139059484005,0.24698694050312,-0.13305555284023],[-0.0085360817611217,0.02930616773665,0.20650768280029]],[[0.041694741696119,0.086346715688705,-0.023959657177329],[-0.14899353682995,0.025821542367339,0.031243354082108],[-0.071156322956085,-0.031021555885673,-0.10537949204445]],[[-0.0058922348544002,-0.017009759321809,-0.025568444281816],[-0.063006110489368,0.028382338583469,-0.12668907642365],[-0.10762266814709,-0.03050553612411,0.083510719239712]],[[-0.017783617600799,0.15155544877052,-0.011485058814287],[0.099254719913006,-0.032887175679207,0.12055566906929],[0.066715605556965,-0.081310160458088,0.041820622980595]],[[-0.019677812233567,0.092166319489479,-0.055969685316086],[0.041376005858183,0.063750520348549,0.027176726609468],[-0.0445790104568,0.10236851125956,0.03319001942873]],[[0.054132547229528,0.054834231734276,-0.076148070394993],[0.044186308979988,0.065855287015438,0.019654581323266],[-0.053245130926371,0.076175391674042,-0.081579454243183]],[[0.030916368588805,-0.066602416336536,-0.023482410237193],[0.056221049278975,-0.054583918303251,-0.052300423383713],[-0.054845698177814,-0.059754777699709,-0.0070503172464669]],[[-0.065830655395985,-0.080987438559532,-0.015633916482329],[-0.023165917024016,-0.0017606966430321,-0.02011171169579],[-0.027512144297361,-0.025728654116392,0.038656480610371]],[[0.043415870517492,0.15867075324059,0.069414220750332],[-0.038074918091297,0.078170508146286,0.14909315109253],[0.021357160061598,-0.16143441200256,-0.015126412734389]],[[0.032401785254478,0.083533801138401,-0.009890042245388],[-0.040828514844179,0.10956927388906,-0.0018612768035382],[0.041539330035448,-0.0082331812009215,-0.10965449362993]],[[-0.0080919992178679,0.05623622238636,-0.060871716588736],[-0.024579513818026,-0.03219947963953,0.078907109797001],[0.13158839941025,-0.026427844539285,0.099704593420029]],[[0.023363165557384,-0.033877938985825,-0.054155595600605],[-0.033988066017628,0.041165940463543,-0.031401932239532],[0.0025073704309762,-0.041377626359463,-0.03323033452034]],[[-0.13116256892681,0.1122680157423,-0.070013210177422],[-0.040410403162241,0.058700174093246,-0.004153857473284],[-0.037526253610849,-0.080737389624119,-0.064889162778854]],[[0.064576268196106,0.11588392406702,-0.032158527523279],[-0.064628355205059,0.082708358764648,0.10820702463388],[0.19191198050976,-0.04442461207509,-0.027691530063748]],[[0.042285811156034,0.033049508929253,-0.1053821593523],[-0.018491495400667,0.020304398611188,0.10885844379663],[0.1457926183939,0.0019691160414368,0.062608852982521]],[[0.11434353888035,0.080231085419655,-0.017500173300505],[0.013113071210682,-0.10660926252604,-0.05677454918623],[0.047753907740116,0.069308012723923,-0.035981606692076]],[[-0.067741870880127,-0.090237408876419,0.032910291105509],[0.060902960598469,-0.082091741263866,-0.044830068945885],[0.04247559607029,-0.12187015265226,-0.041104320436716]],[[-0.053845655173063,0.018911560997367,0.029029389843345],[0.067329369485378,-0.086904391646385,-0.078827209770679],[-0.088237397372723,0.051435220986605,-0.037458598613739]],[[-0.064911417663097,0.051698252558708,-0.066711984574795],[0.036296505481005,-0.010175628587604,0.22063188254833],[0.039116155356169,0.04502160102129,-0.11178636550903]],[[-0.013530574738979,-0.044500950723886,-0.017231836915016],[0.0055356025695801,0.078584678471088,-0.041616931557655],[-0.0093082645907998,-0.050273586064577,-0.023515027016401]],[[0.013644284568727,0.021528093144298,-0.0010595598723739],[0.086814373731613,-0.066565364599228,-0.13137948513031],[-0.011562495492399,-0.01369384676218,-0.064277395606041]],[[-0.1070404946804,0.085916243493557,-0.036097284406424],[0.055575463920832,-0.018529681488872,0.12793520092964],[0.0088007422164083,0.09804318100214,-0.11963342130184]],[[-0.040288992226124,-0.11426986008883,-0.010896465741098],[-0.081495679914951,0.039158340543509,0.017800468951464],[-0.069014385342598,-0.14522230625153,-0.040041286498308]],[[-0.068647861480713,-0.024974510073662,-0.034674823284149],[-0.15917280316353,0.10306207090616,-0.10125943273306],[-0.040841594338417,-0.064551822841167,-0.11359179764986]],[[0.039795972406864,0.015990974381566,-0.054898127913475],[-0.098944783210754,0.10246878117323,-0.045324523001909],[-0.024688629433513,0.0007341702003032,-0.036646045744419]],[[0.060541536659002,-0.0089031578972936,0.066877298057079],[-0.012889353558421,0.053594522178173,-0.073083952069283],[0.10561151057482,-0.016271766275167,-0.0086552165448666]],[[0.10807725042105,0.075925506651402,0.0042447447776794],[0.05351922288537,-0.045506466180086,0.038155525922775],[-0.021331418305635,0.028523543849587,0.002433592453599]],[[0.063633255660534,0.045400623232126,0.00020994080114178],[-0.022471059113741,-0.046319149434566,-0.018020195886493],[-0.064402438700199,0.0048870225436985,-0.0044050747528672]],[[0.083816088736057,-0.011395408771932,0.058301232755184],[-0.016079412773252,-0.086202472448349,0.067536987364292],[0.024537488818169,-0.035564072430134,-0.068049386143684]],[[-0.088810354471207,0.092740997672081,0.13397334516048],[-0.095003999769688,0.020756797865033,-0.050658993422985],[0.022564955055714,0.01622698828578,0.014567810110748]],[[0.097680225968361,-0.092837698757648,-0.040094289928675],[0.01141120120883,0.13969619572163,-0.032700106501579],[-0.044446334242821,-0.057864472270012,-0.039722867310047]],[[-0.037451956421137,-0.061897028237581,0.060845304280519],[-0.069819323718548,-0.013364410959184,-0.059605315327644],[0.05748588219285,0.051664035767317,-0.074238158762455]],[[0.10374727100134,0.0052201463840902,0.099902287125587],[-0.078292489051819,0.0087762288749218,0.10159410536289],[0.00055632158182561,0.09212589263916,-0.049387633800507]],[[-0.029934832826257,0.044297333806753,0.0070193279534578],[0.05320855230093,-0.059864617884159,0.014520825818181],[-0.022509010508657,-0.054990973323584,-0.093694791197777]],[[0.030474338680506,-0.016253819689155,-0.015901315957308],[0.028866792097688,-0.077255874872208,-0.077706731855869],[0.041527021676302,0.1382260620594,-0.038533888757229]],[[0.046238757669926,-0.017736352980137,-0.03956738486886],[-0.03415659815073,-0.10593823343515,-0.0081267692148685],[0.016272185370326,-0.00075513869524002,0.013890834525228]],[[-0.010037024505436,-0.039794072508812,0.15823769569397],[-0.0045163952745497,-0.096182934939861,0.020399985834956],[-0.11766186356544,0.082259856164455,-0.045008271932602]],[[0.082640171051025,-0.051024004817009,-0.0013403980992734],[0.010911118239164,0.093538321554661,-0.14867913722992],[-0.059127487242222,-0.070583246648312,0.16565963625908]],[[0.049159817397594,-0.041724901646376,0.089742697775364],[0.015315819531679,-0.0095932446420193,0.012029791250825],[0.041213124990463,0.07291667163372,0.092020399868488]],[[-0.015207686461508,0.028135301545262,-0.19705203175545],[-0.022367855533957,0.022212876006961,0.0080096153542399],[-0.11982744187117,-0.0082721365615726,-0.017344979569316]],[[-0.028979886323214,-0.076614581048489,-0.0094220191240311],[-0.036137845367193,-0.12233496457338,-0.013631691224873],[0.049267202615738,0.10378167033195,-0.0069168144837022]],[[0.07853227108717,0.011988669633865,-0.0047683049924672],[0.11258931457996,-0.026311667636037,0.039611794054508],[0.10754694789648,-0.060053832828999,0.052103560417891]],[[-0.010495110414922,0.014212097972631,-0.00036566911148839],[-0.13361851871014,0.062308680266142,0.034567631781101],[-0.030551413074136,-0.070011019706726,-0.062161304056644]],[[0.10435556620359,-0.032085075974464,0.015476387925446],[0.048220910131931,0.027593174949288,-0.023275814950466],[-0.12692387402058,-0.044045004993677,-0.045881595462561]],[[-0.034815177321434,0.099865168333054,-0.062208719551563],[0.040421616286039,0.050059244036674,-0.0010677282698452],[0.091253116726875,-0.04507302492857,-0.028226753696799]],[[-0.05597735196352,0.051358971744776,0.11573674529791],[0.13771739602089,0.055596061050892,-0.046548098325729],[-0.093428894877434,0.089996822178364,-0.048365958034992]],[[0.0075222025625408,-0.040276397019625,-0.015121763572097],[0.032392900437117,-0.035027269273996,0.06355693936348],[-0.087511233985424,0.073120050132275,-0.011317034251988]],[[-0.019318163394928,-0.081650838255882,0.040916867554188],[-0.032706826925278,-0.023116650059819,0.019493859261274],[-0.060857981443405,-0.072981536388397,-0.023181544616818]],[[-0.052393238991499,-0.028554001823068,-0.046151258051395],[-0.026672789826989,0.068001560866833,-0.031238516792655],[0.019753882661462,-0.10476317256689,-0.081043295562267]],[[-0.044200666248798,0.010991335846484,0.05148983374238],[0.029040919616818,-0.03037478774786,0.0058163129724562],[0.092327289283276,-0.16091756522655,-0.071582362055779]],[[-0.0011403971584514,-0.030476853251457,-0.0787133872509],[-0.10302399843931,0.00080135132884607,0.071013547480106],[-0.013934112153947,-0.20866951346397,-0.13442499935627]],[[0.043319884687662,-0.036937464028597,-0.12254340201616],[-0.038318071514368,0.11149721592665,-0.010954276658595],[0.016777791082859,-0.029846724122763,0.013547702692449]],[[-0.030327808111906,0.061285972595215,-0.15526248514652],[0.023836864158511,-0.013947935774922,0.030707206577063],[0.16363526880741,-0.069254912436008,-0.0093603488057852]],[[0.037593100219965,-0.068786770105362,0.043224014341831],[0.038574613630772,0.1424148529768,-0.0028617021162063],[-0.010954029858112,0.068673461675644,0.040572766214609]],[[-0.0086375866085291,-0.076214760541916,0.047147624194622],[-0.043219018727541,0.063793040812016,-0.042167898267508],[0.076138108968735,0.034282628446817,-0.031603030860424]],[[0.065266385674477,0.041432239115238,0.14167723059654],[-0.075304850935936,0.067309036850929,0.052883915603161],[-0.048533260822296,-0.020499849691987,-0.1765008866787]],[[0.052102480083704,-0.063350468873978,-0.056958615779877],[-0.025297977030277,-0.053401000797749,-0.13281819224358],[0.0083257462829351,0.009488433599472,0.08504968136549]],[[0.027844538912177,0.077643729746342,-0.058905303478241],[-0.056087713688612,0.018519373610616,-0.033393125981092],[0.038438323885202,-0.04922865703702,0.0593326613307]],[[-0.063487038016319,-0.035644996911287,-0.093026854097843],[-0.066373981535435,-0.055999863892794,-0.024869749322534],[-0.055991154164076,0.028892945498228,0.047022264450788]],[[0.10271885246038,0.019124858081341,0.080136157572269],[0.022474179044366,0.0063852109014988,-0.01926320232451],[0.022177662700415,-0.013083410449326,0.0035799336619675]],[[-0.025360679253936,0.010903783142567,0.038328364491463],[-0.0005828138673678,0.012444880791008,-0.032445557415485],[-0.071557395160198,-0.022337313741446,0.0056584379635751]],[[-0.051858298480511,-0.056065905839205,0.062723115086555],[0.0028801739681512,0.036189831793308,-0.090920671820641],[0.13348151743412,0.080113358795643,-0.044864561408758]],[[0.22221687436104,-0.059699393808842,0.0051116016693413],[-0.0095166815444827,-0.094657674431801,0.039783518761396],[0.0082989381626248,0.018079807981849,-0.10299657285213]],[[-0.12007913738489,0.12786594033241,0.0088062323629856],[0.10055931657553,0.020451880991459,0.096614830195904],[-0.07774942368269,-0.065273948013783,0.016273252665997]],[[-0.049821931868792,0.09774748980999,0.011204922571778],[0.12013250589371,-0.0014246271457523,-0.10685367137194],[0.035348668694496,-0.06389494240284,-0.087196581065655]],[[-0.0016592416213825,0.030692469328642,0.070772081613541],[-0.073654852807522,0.08799821138382,0.036657061427832],[-0.021249121055007,-0.053933810442686,-0.038600835949183]],[[0.005695132073015,-0.053376946598291,0.0015509617514908],[-0.0063970689661801,0.016325768083334,-0.095848344266415],[0.058737803250551,0.046216614544392,0.021784339100122]],[[-0.074557445943356,0.050242647528648,0.014912779442966],[-0.031965356320143,0.026759117841721,0.012614120729268],[-0.0069124246947467,0.070846654474735,0.078048974275589]],[[0.0062501858919859,0.13072085380554,0.084286354482174],[0.033413156867027,0.021126413717866,-0.018451303243637],[0.0017445811536163,-0.034895226359367,0.023433435708284]],[[-0.0037329182960093,-0.021779211238027,-0.069112382829189],[-0.075606971979141,-0.10528623312712,-0.054683092981577],[-0.01028311252594,-0.036795198917389,-0.0068465475924313]],[[-0.050920378416777,-0.077254951000214,-0.0061643961817026],[-0.021846001967788,0.035460207611322,-0.068970233201981],[-0.027705466374755,0.042414765805006,-0.0018801155965775]],[[0.0072540687397122,-0.045738719403744,-0.074394099414349],[0.0071862363256514,-0.1057448759675,0.012414363212883],[-0.028131786733866,-0.041114807128906,0.031321156769991]],[[0.021995717659593,0.09937322884798,-0.08986060321331],[0.060844708234072,0.036076918244362,0.049513049423695],[0.041996687650681,-0.07073563337326,-0.05686279386282]],[[0.030404744669795,-0.080220878124237,0.0026524777058512],[0.020500896498561,0.02266738563776,-0.041094321757555],[0.0079702967777848,-0.059424683451653,0.040087632834911]],[[-0.060424625873566,0.023985229432583,0.026634015142918],[0.067224681377411,0.026946501806378,0.0063418983481824],[-0.061359975486994,0.0055899787694216,-0.050346776843071]],[[0.28448307514191,-0.02022404037416,0.12285573780537],[-0.11478362977505,0.18828037381172,-0.094606891274452],[0.19689247012138,-0.0071891816332936,0.16549083590508]],[[-0.047629781067371,-0.11140805482864,-0.020728670060635],[-0.095507591962814,-0.067342080175877,-0.052027732133865],[0.015447672456503,-0.083034530282021,-0.064143881201744]],[[-0.011201363988221,0.030693480744958,0.098814345896244],[0.020949566736817,0.042403154075146,0.026255307719111],[-0.010891116224229,0.05892264470458,0.048464510589838]],[[-0.040645882487297,0.0010231191990897,-0.040590785443783],[-0.089950300753117,0.0012790161417797,-0.070640668272972],[-0.0026674563996494,-0.0072662848979235,-0.025708762928843]],[[-0.019294271245599,0.098597422242165,-0.0084068737924099],[-0.0012066269991919,0.030811827629805,0.039497017860413],[-0.055373668670654,-0.043783891946077,0.0072236261330545]],[[-0.043394330888987,-0.022949634119868,0.015842882916331],[0.031378380954266,0.13741062581539,-0.067292794585228],[0.039901845157146,0.031328581273556,-0.042140435427427]],[[0.07640478014946,-0.030164908617735,0.079123437404633],[-0.077553868293762,0.028087297454476,-0.013368918560445],[-0.0044853575527668,-0.049058392643929,-0.12919548153877]],[[-0.038695700466633,-0.05601704120636,0.089042320847511],[0.0358632132411,0.041359420865774,0.00034059025347233],[-0.076922662556171,-0.01691116951406,-0.0024139252491295]],[[-0.021327897906303,0.042816773056984,-0.0273860655725],[-0.041565876454115,-0.047482866793871,0.00085254292935133],[-0.00027700213831849,0.012204108759761,-0.018444648012519]],[[0.057245127856731,-0.050226632505655,-0.16166645288467],[-0.04606843367219,-0.10983499139547,0.090393245220184],[-0.027977334335446,0.022092312574387,0.033757846802473]],[[0.10340573638678,0.022529985755682,0.13938924670219],[0.11508671939373,-0.0055010160431266,-0.065823435783386],[-0.041672565042973,0.020416518673301,-0.053249575197697]],[[-0.021215392276645,-0.0014958844985813,-0.059281270951033],[-0.028020152822137,0.034286841750145,-0.016317084431648],[0.048887182027102,-0.037649836391211,0.028674209490418]],[[0.05974467471242,0.1237865164876,0.10474682599306],[-0.094648353755474,0.020410927012563,0.099264174699783],[-0.097409911453724,0.062018323689699,0.044322516769171]],[[-0.077195785939693,0.049146354198456,0.04494396597147],[-0.042925640940666,0.018193865194917,-0.060246255248785],[-0.037135697901249,-0.056731838732958,-0.016940705478191]],[[-0.010225807316601,-0.013110429979861,-0.060936205089092],[0.050833005458117,-0.058774683624506,0.0021432538051158],[0.034045550972223,-0.042622704058886,-0.023692166432738]],[[0.16082878410816,0.095208533108234,-0.030457727611065],[0.0008028952870518,-0.011276736855507,-0.10086781531572],[-0.05052125453949,0.0022457099985331,0.036950491368771]],[[-0.040076706558466,-0.012152997776866,0.021858049556613],[0.016504907980561,0.045762773603201,-0.054292909801006],[-0.059931799769402,-0.085160374641418,0.02385114133358]],[[-0.09696801006794,-0.081515409052372,0.0076207723468542],[-0.092158116400242,-0.011723697185516,-0.016593337059021],[-0.099735386669636,0.059842377901077,0.016377525404096]],[[-0.046921476721764,-0.082680605351925,0.032302912324667],[0.045114435255527,-0.093766458332539,-0.06469938158989],[0.01693231984973,-0.014068022370338,-0.060499168932438]],[[-0.058195739984512,-0.011501839384437,-0.069007687270641],[0.013637915253639,-0.14260038733482,0.095629706978798],[0.14917360246181,0.035861253738403,0.12328945845366]],[[0.096015393733978,-0.020055817440152,0.027022436261177],[-0.013978140428662,0.011780953034759,-0.082310199737549],[0.024412970989943,0.082822181284428,0.048588495701551]],[[-0.088856518268585,-0.067062735557556,-0.077950842678547],[-0.036117564886808,-0.055095214396715,-0.091910928487778],[-0.096675045788288,-0.084961533546448,-0.06244719773531]],[[-0.09121748059988,0.088255397975445,-0.10917452722788],[0.047912504523993,-0.061481930315495,-0.07402665168047],[0.01428050827235,-0.058783631771803,-0.0058525912463665]],[[-0.021706022322178,-0.11435043811798,-0.01653379201889],[-0.028094256296754,0.051046125590801,-0.049359496682882],[-0.079494796693325,-0.011011926457286,-0.014350763522089]],[[0.035772226750851,0.067014329135418,-0.063296400010586],[0.0013950288994238,0.040705095976591,-0.083496741950512],[-0.090122394263744,-0.10295674949884,0.051997926086187]],[[0.041095905005932,0.14387425780296,0.013914419338107],[-0.11922786384821,-0.0061953547410667,-0.092813156545162],[0.048739794641733,0.048756834119558,-0.10053704679012]],[[0.057028762996197,0.049074716866016,0.010770999826491],[-0.019154826179147,0.017485352233052,0.012873808853328],[-0.13977387547493,-0.0066007222048938,-0.051797300577164]],[[-0.036091007292271,-0.10294990241528,-0.0034895536955446],[0.11388013511896,0.090318717062473,-0.046226728707552],[0.029475726187229,0.0026974538341165,0.043415758758783]],[[-0.025779206305742,-0.039076186716557,-0.084810145199299],[0.0040254644118249,0.061801720410585,0.01253009121865],[0.00075611576903611,-0.09268119931221,0.040061254054308]]],[[[-0.085758782923222,0.01166816521436,0.03416983038187],[-0.14460577070713,-0.038375586271286,-0.080141589045525],[-0.04012094065547,-0.025781067088246,-0.0039947810582817]],[[0.0015672699082643,0.13624586164951,0.004369409289211],[0.061584711074829,-0.15922793745995,0.036503337323666],[-0.065330363810062,0.066747032105923,0.013003443367779]],[[-0.051037192344666,-0.008222671225667,0.066093377768993],[-0.051222484558821,-0.01882111094892,0.12114766985178],[0.00073296547634527,-0.038051340728998,0.10055384784937]],[[0.068982683122158,0.0035898888017982,0.029968410730362],[0.045920770615339,0.0195308085531,-0.089243873953819],[0.15503232181072,0.122025847435,0.01320634316653]],[[0.030394250527024,-0.042105864733458,0.10060002654791],[-0.12805812060833,0.064471505582333,0.078452102839947],[0.1072878241539,0.12214674800634,-0.057704523205757]],[[0.031445991247892,0.082596883177757,-0.016493815928698],[-0.11673497408628,-0.0019202661933377,-0.13541355729103],[-0.015915801748633,-0.0021503525786102,-0.00030237145256251]],[[-0.051696736365557,0.013175432570279,-0.012675099074841],[0.039111949503422,0.12690265476704,0.01670921035111],[-0.072269812226295,-0.062038369476795,-0.049622714519501]],[[0.12813918292522,-0.11975612491369,-0.27040913701057],[0.045384753495455,0.0994728282094,-0.18347288668156],[0.14065673947334,-0.022210540249944,0.011060294695199]],[[0.021160095930099,0.14884242415428,-0.065649285912514],[-0.14517515897751,-0.05425788462162,0.078004471957684],[-0.0020635628607124,-0.04920619353652,0.0047644516453147]],[[-0.088402606546879,-0.081333883106709,-0.043005801737309],[0.131412088871,0.0089575629681349,0.077348150312901],[0.17707432806492,0.047330897301435,0.055403102189302]],[[0.022447943687439,0.062254749238491,0.028037529438734],[0.0576431453228,0.070222713053226,0.019299617037177],[0.0061198244802654,-0.08213048428297,0.08708318322897]],[[-0.026108646765351,0.010082125663757,0.10611606389284],[-0.01347927749157,0.025394484400749,-0.098967894911766],[0.0077404594048858,-0.028575636446476,-0.0094198184087873]],[[-0.037250760942698,-0.096792943775654,0.019742894917727],[0.053851071745157,-0.11025885492563,-0.040995009243488],[-0.023229224607348,0.12457840144634,0.15987280011177]],[[-0.10814303904772,0.013187697157264,0.19014459848404],[0.086881622672081,-0.046201724559069,-0.11515755206347],[0.11107331514359,-0.11136022955179,0.0080895246937871]],[[-0.034966509789228,0.035875245928764,-0.13601271808147],[-0.069664970040321,0.0097142485901713,-0.106460288167],[0.061453223228455,-0.052699662744999,0.10421495884657]],[[0.075500279664993,-0.062442317605019,0.14686469733715],[-0.097941339015961,-0.063935406506062,0.050567749887705],[-0.082404278218746,-0.15880873799324,0.16057285666466]],[[-0.021385241299868,-0.011019094847143,0.18549624085426],[0.034495044499636,-0.051048789173365,0.077541157603264],[-0.22696916759014,-0.20830038189888,0.09257747232914]],[[0.068888381123543,0.037585757672787,-0.32502710819244],[-0.025981869548559,0.072661951184273,-0.089568950235844],[-0.067082695662975,0.014259233139455,-0.048312667757273]],[[0.070513859391212,0.053452789783478,-0.137600466609],[0.055618591606617,0.016722809523344,0.043363716453314],[0.056625224649906,0.08838564157486,0.047088611871004]],[[0.057824052870274,-0.012350578792393,-0.087372742593288],[0.11738580465317,0.097469188272953,-0.082980535924435],[-0.016666004434228,-0.04077585414052,-0.043140307068825]],[[-0.059202305972576,-0.028423186391592,-0.093766622245312],[-0.18307048082352,-0.15807904303074,-0.17101414501667],[-0.22103260457516,-0.13139978051186,0.0010058364132419]],[[0.070045121014118,0.055758610367775,-0.14724484086037],[0.053263451904058,0.065542727708817,0.15692156553268],[0.026717588305473,0.079393319785595,-0.022543899714947]],[[-0.090243741869926,-0.083380028605461,0.040097497403622],[0.058244813233614,0.064253836870193,0.03442570567131],[0.014335394836962,-0.095315180718899,0.0099284127354622]],[[0.050508666783571,0.025900632143021,-0.025321163237095],[0.031108368188143,0.071053370833397,0.043087996542454],[-0.096772901713848,0.052385780960321,0.1412236392498]],[[0.0044253338128328,-0.12040676921606,0.13626755774021],[-0.084546655416489,0.044950522482395,-0.061877697706223],[-0.13723114132881,-0.026033092290163,0.010420760139823]],[[-0.20194226503372,-0.08493261039257,0.048427820205688],[-0.16509583592415,-0.23759900033474,-0.023180121555924],[-0.062027614563704,-0.030452279374003,-0.07079566270113]],[[-0.03412713482976,0.14546672999859,0.029612047597766],[-0.025083556771278,-0.068370372056961,-0.038158293813467],[-0.011238120496273,-0.056739449501038,0.13242493569851]],[[-0.28320199251175,0.11423282325268,-0.15891781449318],[0.15925151109695,-0.061762813478708,-0.17700834572315],[0.10236240923405,0.33520743250847,0.039800893515348]],[[-0.068116873502731,0.085613951086998,-0.082042865455151],[-0.026240173727274,-0.17092111706734,0.095919266343117],[-0.03331932798028,-0.061140470206738,0.089065492153168]],[[-0.061276324093342,0.014269879087806,0.14074274897575],[0.0019274072255939,-0.0087750041857362,-0.13510937988758],[-0.06505224853754,-0.1831342279911,0.076476886868477]],[[-0.19543738663197,-0.12336906790733,-0.045798692852259],[0.16208863258362,0.084797993302345,-0.02268822491169],[-0.052431914955378,-0.11871646344662,0.0048958333209157]],[[-0.062694758176804,0.035496819764376,-0.035635396838188],[-0.05482354387641,-0.047670625150204,-0.06126619502902],[0.020508298650384,0.012761667370796,0.022760024294257]],[[0.048601619899273,0.15484338998795,0.014813329093158],[0.097177088260651,-0.060879644006491,-0.11575723439455],[0.054080553352833,0.040370497852564,0.02478982321918]],[[-0.15141129493713,-0.17690640687943,0.075872600078583],[0.051742479205132,-0.054126836359501,0.086800426244736],[0.06583209335804,-0.14236055314541,0.053293071687222]],[[0.11077496409416,0.041530523449183,0.041514698415995],[0.03990051150322,-0.051051951944828,-0.067694559693336],[-0.015263145789504,-0.019253758713603,0.081308789551258]],[[-0.00051858520600945,-0.035328730940819,-0.022964261472225],[-0.083789646625519,-0.081261202692986,0.034412052482367],[0.0012757448712364,0.072550274431705,-0.066252917051315]],[[0.23190993070602,0.06534931063652,-0.030447002500296],[-0.087789975106716,0.085780844092369,0.044100861996412],[-0.057141985744238,-0.034498855471611,-0.0077706668525934]],[[-0.088458336889744,0.08358259499073,0.051839221268892],[-0.058538503944874,0.21133562922478,-0.038160748779774],[-0.2152041643858,-0.086844444274902,-0.0035057531204075]],[[-0.0082253608852625,-0.036005690693855,0.069119922816753],[0.010084422305226,0.041630961000919,0.048899378627539],[0.066926084458828,-0.032645922154188,-0.075042366981506]],[[0.23404993116856,0.063391923904419,0.056271944195032],[-0.026419697329402,0.20204629004002,-0.12880784273148],[0.086047105491161,0.295754134655,-0.028968919068575]],[[0.048546869307756,-0.072426788508892,-0.029993768781424],[0.049247041344643,0.0417111068964,0.036077290773392],[0.16853086650372,-0.12565465271473,0.038039494305849]],[[0.10302301496267,0.16156208515167,-0.00033298303605989],[0.054336179047823,0.028161214664578,-0.023284325376153],[0.025862842798233,0.04772362858057,-0.10702546685934]],[[0.023311903700233,0.10090696811676,0.23795711994171],[0.069232821464539,-0.10476014763117,0.058708857744932],[0.020102521404624,0.20591704547405,0.24022620916367]],[[-0.016100727021694,0.061016157269478,-0.009436834603548],[0.00061489397194237,0.01224319729954,-0.033005233854055],[0.042418871074915,-0.048483245074749,-0.051326274871826]],[[-0.10685164481401,-0.072977766394615,-0.094838254153728],[-0.11724531650543,0.11857188493013,-0.058472625911236],[-0.20515823364258,0.023908622562885,0.041334368288517]],[[0.016420787200332,0.035384744405746,0.19519740343094],[0.11102247983217,0.031710758805275,0.084040425717831],[0.051707405596972,0.1471811234951,0.1077169701457]],[[0.052696008235216,-0.043913144618273,-0.16986288130283],[0.10069707781076,-0.18460580706596,-0.0905781686306],[-0.29550737142563,0.0025569391436875,-0.2262909412384]],[[-0.07951632142067,-0.2095912694931,-0.04548104852438],[-0.086284331977367,-0.059886354953051,-0.2349398881197],[0.058189999312162,-0.057472862303257,-0.09615121036768]],[[-0.14520291984081,-0.086859829723835,0.060520239174366],[-0.19246177375317,-0.0015248901909217,-0.010312072001398],[-0.063733354210854,-0.018917094916105,0.0034892640542239]],[[-0.032823037356138,0.063266605138779,-0.081094600260258],[-0.067989602684975,-0.059678725898266,-0.0054031806066632],[0.043887976557016,0.051105499267578,-0.051251452416182]],[[-0.0038859872147441,-0.097361825406551,0.1446917206049],[-0.028033215552568,0.019466258585453,-0.15458463132381],[0.022003624588251,-0.14917615056038,-0.018257975578308]],[[0.074945993721485,0.12527652084827,0.16049054265022],[0.03730658069253,0.10877399891615,0.11835575848818],[0.061938669532537,0.044091708958149,0.061565686017275]],[[-0.07712011039257,-0.031591638922691,-0.014839185401797],[-0.03865409642458,-0.017398554831743,-0.070968888700008],[-0.063099592924118,0.017363250255585,0.02770921215415]],[[-0.046619240194559,0.089627370238304,-0.02483337931335],[0.048644807189703,-0.12873011827469,-0.0036364737898111],[0.10724676400423,0.096143469214439,-0.071950569748878]],[[0.087229609489441,-0.080396816134453,-0.012479465454817],[0.18271541595459,0.021252298727632,-0.056158781051636],[-0.0121288029477,-0.060092680156231,-0.052086915820837]],[[0.049500782042742,-0.18416787683964,-0.070085488259792],[0.18418216705322,-0.12797962129116,-0.074016571044922],[0.051435362547636,-0.013845584355295,-0.018054010346532]],[[-0.058603957295418,0.17633600533009,0.20970785617828],[-0.039378006011248,0.10492931306362,0.27200323343277],[0.094132512807846,0.12037187814713,-0.037735540419817]],[[-0.014061235822737,-0.080131091177464,0.027700796723366],[-0.1554881632328,0.018800377845764,0.024495014920831],[-0.032524481415749,0.029701070860028,0.091781541705132]],[[0.12637905776501,0.040610671043396,0.19882187247276],[0.042203463613987,0.064776480197906,0.13212943077087],[0.046888265758753,-0.11359925568104,0.24398091435432]],[[0.078189209103584,-0.027809180319309,-0.042180676013231],[0.073121175169945,0.0072982078418136,0.023629203438759],[0.0073614828288555,-0.0048789414577186,0.035779464989901]],[[-0.067806929349899,0.15829560160637,-0.047967374324799],[-0.088465817272663,-0.040087223052979,-0.016378283500671],[-0.17356444895267,-0.084616929292679,-0.011255744844675]],[[0.16285732388496,-0.16164092719555,0.03955177590251],[0.13325905799866,0.056104116141796,-0.13107088208199],[0.046229213476181,0.11412403732538,0.044256411492825]],[[-0.072264857590199,-0.009515855461359,0.017677603289485],[0.075995892286301,0.14795698225498,0.023010771721601],[0.17748560011387,-0.04230684414506,-0.060727328062057]],[[0.16455772519112,-0.074266135692596,-0.11177177727222],[0.14472615718842,0.15713050961494,-0.046214994043112],[-0.029821271076798,-0.089376762509346,0.182632625103]],[[-0.041030138731003,-0.011870421469212,0.061708938330412],[0.007330818567425,0.032017696648836,0.053109861910343],[-0.13971418142319,0.034166850149632,-0.037060622125864]],[[0.13497021794319,-0.11411479115486,-0.095870412886143],[-0.039541870355606,0.073697812855244,0.25236114859581],[0.22478069365025,0.19174061715603,-0.016823487356305]],[[-0.09752144664526,-0.030310226604342,-0.069434136152267],[-0.08700443059206,0.079773612320423,-0.11164506524801],[-0.0055364719592035,-0.037339799106121,0.053229514509439]],[[0.088002398610115,0.017584845423698,0.095367729663849],[0.019965168088675,-0.0015956442803144,0.03781733289361],[0.040559936314821,-0.0032779313623905,0.12526693940163]],[[-0.035810552537441,0.02990398555994,-0.014518378302455],[-0.10699568688869,0.17201055586338,0.17038279771805],[0.095500998198986,-0.022129599004984,0.076517723500729]],[[0.038310125470161,0.09514282643795,0.034142635762691],[-0.12408731132746,0.041217491030693,-0.053452327847481],[0.094184279441833,0.06909716874361,0.065478280186653]],[[-0.082223899662495,0.022195005789399,0.04663460329175],[0.079612568020821,-0.082162410020828,0.032011818140745],[-0.068193234503269,0.13635830581188,0.023694740608335]],[[-0.057423327118158,-0.059738740324974,0.02683855034411],[-0.00051185756456107,-0.093003340065479,0.11112725734711],[-0.022378496825695,-0.14121247828007,-0.15837988257408]],[[-0.13671523332596,-0.11750069260597,-0.030034666880965],[-0.081109561026096,-0.21251393854618,-0.045780818909407],[0.060831405222416,-0.2636843919754,-0.014407336711884]],[[-0.0048864497803152,-0.080670371651649,0.038649454712868],[-0.11055497825146,-0.00494394171983,0.16251870989799],[0.28594020009041,0.073218882083893,0.066295638680458]],[[0.052791222929955,-0.13291294872761,-0.0010167153086513],[-0.15988174080849,0.011178953573108,0.010887051001191],[0.017820468172431,0.01572073623538,0.0018243060912937]],[[0.058072488754988,-0.061261679977179,-0.12333396077156],[0.043865919113159,-0.14598019421101,-0.030185878276825],[-0.064261093735695,0.1502650231123,-0.083168067038059]],[[-0.043149825185537,0.15796063840389,-0.0086306082084775],[-0.052425347268581,0.070536740124226,-0.055841874331236],[0.082724273204803,0.08596058934927,-0.036209672689438]],[[0.0061146812513471,-0.14435465633869,-0.037092786282301],[0.12442223727703,0.24291008710861,0.088447079062462],[0.065781593322754,-0.041507411748171,0.07891258597374]],[[0.090181842446327,0.025915330275893,0.011090870015323],[-0.071649216115475,-0.020448457449675,0.038886729627848],[-0.132144972682,-0.024962956085801,-0.030079575255513]],[[0.080472066998482,-0.19676668941975,-0.069430068135262],[0.021885143592954,0.0049269115552306,0.044944025576115],[-0.087345995008945,0.15206333994865,-0.10891921073198]],[[-0.11295979470015,0.069204576313496,0.012498956173658],[-0.036286640912294,0.075388319790363,0.08085610717535],[0.0070931301452219,0.037533644586802,0.016959661617875]],[[0.12176838517189,0.05214524269104,0.20311403274536],[0.067185133695602,0.12023478746414,0.14370064437389],[-0.00018865076708607,-0.060325637459755,-0.055927667766809]],[[-0.048647619783878,-0.019841283559799,0.014681312255561],[0.11150844395161,-0.013038058765233,0.047862399369478],[-0.09128750115633,0.023494994267821,0.1164387986064]],[[0.15057875216007,0.044663906097412,-0.071849063038826],[-0.035090878605843,-0.077673941850662,-0.033072747290134],[0.029358498752117,0.067774571478367,0.024506965652108]],[[-0.16815024614334,-0.19725838303566,-0.070005662739277],[0.050503540784121,-0.015281978063285,-0.030151391401887],[0.10750146210194,0.16293203830719,0.17713584005833]],[[-0.17723008990288,0.04583927989006,0.021686928346753],[-0.013448974117637,0.027230961248279,0.08209702372551],[-0.06979725509882,-0.052833121269941,0.14094151556492]],[[0.20839203894138,0.17074799537659,0.051626592874527],[-0.059825818985701,0.080837927758694,-0.071454592049122],[0.026061439886689,0.097876116633415,-0.027345595881343]],[[-0.10471617430449,-0.048314746469259,-0.14790230989456],[0.036504365503788,0.003924495074898,0.1492515206337],[0.072858102619648,0.10429532825947,0.12562450766563]],[[0.027565801516175,-0.044568959623575,0.0077654309570789],[-0.016225550323725,0.06145853549242,0.0089647546410561],[0.01031706854701,0.15774336457253,0.075833857059479]],[[0.14731118083,0.13280585408211,0.0090240705758333],[-0.080471262335777,0.085706800222397,0.094495572149754],[-0.025202702730894,-0.10854937881231,0.0058709592558444]],[[-0.0018022860167548,-0.072746470570564,0.097472570836544],[-0.063056960701942,-0.062005985528231,0.085316434502602],[-0.038208067417145,-0.090903386473656,-0.20443575084209]],[[-0.093151606619358,-0.1542593985796,0.001450221054256],[-0.012046609073877,0.077286764979362,-0.13626374304295],[-0.034836325794458,0.070828542113304,0.013813814148307]],[[0.090017132461071,0.19263038039207,0.018499800935388],[0.16392776370049,0.011510943993926,-0.046763088554144],[-0.21232210099697,0.13286960124969,0.10357565432787]],[[0.044631462544203,0.00091426377184689,0.2558012008667],[0.10597129911184,0.1068324521184,0.22209604084492],[-0.039544951170683,0.068022064864635,0.035657282918692]],[[0.11239347606897,0.094939611852169,-0.033731173723936],[0.16449858248234,-0.00106088782195,0.038866888731718],[0.10137341916561,0.22333420813084,0.057002183049917]],[[-0.0051735234446824,0.12309050559998,0.10329215973616],[-0.071864269673824,0.11585434526205,-0.013944764621556],[0.056661933660507,0.050468780100346,0.068474166095257]],[[0.11258076131344,-0.036762326955795,0.0043676332570612],[0.0078374147415161,-0.21811623871326,-0.027426216751337],[0.11969000846148,0.045223142951727,0.17081767320633]],[[0.039553783833981,-0.089616730809212,-0.093530647456646],[-0.10774275660515,-0.05893387272954,0.17149774730206],[-0.04078933224082,-0.0027452576905489,0.078927777707577]],[[-0.037386775016785,0.078841969370842,0.048849489539862],[-0.16024738550186,0.093756929039955,0.12821242213249],[0.07329834997654,-0.045660197734833,0.081908576190472]],[[-0.074527837336063,0.075254149734974,0.24464166164398],[-0.18395458161831,-0.0055179987102747,0.13962110877037],[0.015065957792103,-0.0087989699095488,0.036844056099653]],[[0.058627545833588,-0.00011303498467896,0.053853962570429],[-0.095668375492096,0.0094283679500222,-0.31153565645218],[-0.027658069506288,-0.17125545442104,-0.10741651803255]],[[-0.066312022507191,-0.027196273207664,0.088339097797871],[0.093796886503696,-0.1019271761179,0.051669359207153],[0.1138601526618,-0.050653349608183,0.046471811830997]],[[0.15436108410358,0.017639812082052,0.010886234231293],[0.12481286376715,0.03935943543911,0.026150655001402],[-0.063247546553612,-0.020965531468391,0.05560964345932]],[[-0.029219433665276,-0.034091744571924,-0.060590125620365],[-0.037289544939995,-0.055324640125036,0.048749852925539],[0.038960471749306,0.073280081152916,-0.0038101254031062]],[[-0.086809694766998,-0.024975391104817,0.080853313207626],[-0.14512903988361,0.071684494614601,0.095311157405376],[0.013666272163391,0.15299470722675,0.011981779709458]],[[0.01002649590373,-0.0029514310881495,-0.016565078869462],[0.069430552423,0.037306867539883,-0.050955761224031],[-0.00079714303137735,-0.034757129848003,-0.19664354622364]],[[0.050122186541557,0.015440996736288,-0.16005271673203],[-0.0098540307953954,0.009972183033824,0.023207997903228],[0.086997225880623,-0.061244685202837,0.1905362457037]],[[-0.049689888954163,-0.15607529878616,-0.11191798746586],[0.017335606738925,-0.019066285341978,0.050030879676342],[-0.028966709971428,0.044864140450954,-0.047246638685465]],[[0.094260133802891,0.011927553452551,0.060803193598986],[-0.0031840393785387,-0.023206518962979,-0.084279239177704],[0.028269512578845,-0.079110272228718,-0.11440118402243]],[[-0.11789567023516,-0.063146486878395,0.076304547488689],[-0.057279072701931,0.072020478546619,0.17438846826553],[-0.0091363601386547,0.060626015067101,0.057994343340397]],[[-0.034453943371773,-0.041581947356462,0.036089070141315],[-0.10000665485859,-0.0078567005693913,0.0080662239342928],[0.024478349834681,0.036296151578426,0.058206092566252]],[[-0.17818993330002,0.036967750638723,0.049780428409576],[-0.10520591586828,-0.072527155280113,0.049114007502794],[0.00095917732687667,0.13929097354412,-0.15057593584061]],[[-0.067084573209286,0.038060311228037,-0.040345542132854],[-0.03278711438179,-0.023059925064445,-0.052541483193636],[0.034592468291521,0.053887628018856,-0.048947583884001]],[[-0.035188436508179,-0.12312164902687,0.14246875047684],[-0.081464916467667,0.037474639713764,0.086210012435913],[-0.082888811826706,0.066206976771355,0.018355038017035]],[[-0.16167071461678,-0.032316390424967,-0.076077625155449],[-0.03036691993475,0.0054030837491155,-0.075932376086712],[-0.12386978417635,0.20077319443226,0.0078800339251757]],[[-0.062749020755291,0.019542627036572,0.017157459631562],[-0.012776395305991,-0.10170667618513,0.01577328145504],[-0.097583867609501,-0.1230197250843,-0.00068958487827331]],[[0.042434934526682,-0.031112812459469,-0.19488756358624],[-0.04092900082469,0.03628833219409,-0.11962518841028],[0.017133377492428,-0.01022092346102,-0.06168706715107]],[[0.040193129330873,-0.16952113807201,0.071553587913513],[0.020514234900475,-0.018418442457914,-0.0032813064754009],[-0.041995018720627,-0.15955811738968,0.050533927977085]],[[-0.13360750675201,-0.096434213221073,0.02312333881855],[0.0080841798335314,-0.026660103350878,-0.00034555833553895],[-0.13853941857815,-0.05855118855834,-0.014775699004531]],[[0.12627865374088,0.095831274986267,0.1711248010397],[-0.0050952518358827,0.15313759446144,-0.017128124833107],[-0.015709217637777,0.07338135689497,0.12111409008503]],[[-0.068012401461601,-0.11134641617537,0.0036204864736646],[-0.045862916857004,-0.15730820596218,-0.035256609320641],[-0.11550702154636,-0.13119870424271,-0.1259653866291]],[[-0.014411062933505,0.032358098775148,-0.011052765883505],[0.14193381369114,0.00068281928543001,0.10615459084511],[0.0142015600577,0.11991063505411,0.044034034013748]],[[-0.053319707512856,0.049530185759068,-0.023999588564038],[0.088076129555702,-0.037604827433825,0.12457400560379],[0.024189276620746,0.10348267108202,-0.016887234523892]],[[-0.043028794229031,0.033982113003731,0.099709197878838],[-0.046375129371881,-0.13356141746044,-0.10809052735567],[0.011480389162898,0.008331204764545,-0.0031566461548209]],[[0.024230476468801,-0.16435255110264,-0.06468104571104],[-0.04439577460289,-0.04353117197752,0.018439183011651],[0.068214736878872,0.15242779254913,0.088063955307007]],[[-0.087445810437202,0.073941454291344,0.24191211163998],[0.049168236553669,-0.014205160550773,-0.11071232706308],[-0.070270903408527,-0.099451594054699,0.13942749798298]],[[-0.12646052241325,-0.0018896622350439,0.075874924659729],[-0.11135134100914,-0.19472198188305,0.0047846669331193],[0.066800236701965,-0.11527679115534,0.087719082832336]],[[-0.062422528862953,0.080208450555801,0.033405046910048],[-0.017484251409769,-0.19482733309269,0.048770006746054],[0.027873000130057,0.046966310590506,-0.1258644759655]]],[[[0.007775355130434,0.056588675826788,0.0028742912691087],[-0.0083725498989224,0.026618514209986,-0.0078503536060452],[0.16300073266029,0.089676067233086,0.067218996584415]],[[-0.040642607957125,-0.10047093778849,0.05201444029808],[-0.11282297968864,-0.090551398694515,-0.051174364984035],[-0.018935307860374,-0.070538245141506,-0.1082648485899]],[[0.019654395058751,0.075077742338181,0.023858461529016],[-0.12446121126413,0.0087286364287138,0.090877689421177],[0.00032613208168186,0.0041206832975149,-0.21764312684536]],[[0.026208920404315,0.073147103190422,0.12628792226315],[0.00075894105248153,0.055742781609297,0.13501664996147],[-0.003378001274541,0.13720935583115,0.04913542047143]],[[-0.036391660571098,0.0067221494391561,-0.0082218796014786],[-0.045572686940432,0.052761949598789,0.018187886103988],[-0.051214307546616,0.021554416045547,0.03730608522892]],[[0.0095951119437814,0.046374205499887,-0.063334174454212],[0.023540649563074,0.060399830341339,0.010305934585631],[-0.026679990813136,-0.0074295713566244,-0.098464623093605]],[[0.011419891379774,0.013132899999619,0.033758752048016],[0.013689559884369,-0.10836240649223,0.021814074367285],[0.094385020434856,0.013175437226892,0.057719945907593]],[[0.03379300609231,-0.066456213593483,-0.11381392925978],[0.030593350529671,0.002988938242197,0.023913491517305],[0.069759681820869,0.077907256782055,-0.023265017196536]],[[-0.11590647697449,0.0080490168184042,0.083543941378593],[-0.002962470985949,-0.056126236915588,-0.061618186533451],[0.028544798493385,-0.016397392377257,0.036340583115816]],[[-0.0027771817985922,0.030258456245065,-0.010581294074655],[-0.040808234363794,0.016948331147432,-0.046947870403528],[0.13343107700348,-0.027829073369503,0.083661869168282]],[[0.012182069011033,0.06209409609437,0.053617287427187],[-0.035527478903532,0.098470747470856,-0.057097498327494],[0.11493285000324,0.10549943894148,-0.024517508223653]],[[-0.015669338405132,-0.085082516074181,-0.010356375947595],[0.024563603103161,-0.03989002853632,0.036323077976704],[0.014053436927497,-0.0042752306908369,0.06420074403286]],[[-0.0040418333373964,0.027668925002217,0.011126377619803],[-0.034011941403151,0.043894980102777,0.075275361537933],[0.050103262066841,0.020653549581766,-0.048055704683065]],[[0.010364646092057,0.0091666774824262,-0.026331216096878],[-0.078284405171871,0.033437862992287,0.0082998527213931],[-0.11593373119831,0.037146046757698,-0.021378742530942]],[[-0.13240443170071,0.056033302098513,0.13016077876091],[0.053986724466085,0.038206659257412,0.06524995714426],[-0.14181964099407,0.0383275821805,0.024077678099275]],[[0.070410333573818,0.0036941189318895,0.00092100165784359],[-0.14335469901562,-0.0044301482848823,-0.046083722263575],[0.030542498454452,0.0060180905275047,0.050539705902338]],[[0.058422520756721,-0.056907508522272,-0.096698671579361],[0.096603721380234,-0.026309203356504,0.022222010418773],[0.14705756306648,0.10953781753778,0.19363881647587]],[[-0.0014653489924967,0.0004077555204276,-0.052224881947041],[-0.059448249638081,0.067330792546272,-0.00074905331712216],[-0.078722737729549,0.11688266694546,0.061180513352156]],[[-0.0039943773299456,0.045194573700428,0.1211459711194],[-0.031156186014414,-0.010889851488173,0.033164750784636],[-0.045129492878914,0.10613206773996,-0.0075495904311538]],[[-0.062452115118504,-0.038550578057766,-0.0046933661215007],[0.011193905025721,0.048492580652237,0.067339539527893],[0.086392916738987,-0.097788773477077,0.03697095811367]],[[-0.020392274484038,-0.052273847162724,-0.055259149521589],[-0.11735540628433,-0.0075910636223853,0.00072227884083986],[0.050455003976822,0.028163835406303,-0.11471472680569]],[[0.033616323024035,-0.0002403909311397,0.13526684045792],[-0.0054002436809242,0.093767546117306,0.090694516897202],[-0.023323865607381,-0.045982234179974,0.17961840331554]],[[-0.016397915780544,-0.00070658209733665,0.02276174351573],[-0.091167896986008,0.001334193861112,0.076299324631691],[0.030097477138042,-0.1059528067708,-0.12039925158024]],[[0.026450561359525,0.046328093856573,0.12343475222588],[0.022525679320097,-0.0021367934532464,0.022093085572124],[0.072181068360806,0.0009757683146745,0.020119184628129]],[[0.033602569252253,-0.084417372941971,0.016984002664685],[0.01974162645638,0.037898439913988,0.023760674521327],[-0.10900738090277,0.12760005891323,-0.099452793598175]],[[0.083003170788288,-0.041840020567179,0.042927887290716],[0.10054617375135,0.035701744258404,0.033813919872046],[0.12342244386673,0.089772164821625,0.060839828103781]],[[-0.042506288737059,-0.14223623275757,0.011287790723145],[-0.040454216301441,-0.018044799566269,-0.037598133087158],[0.034758660942316,-0.042633138597012,-0.10527314245701]],[[-0.073699831962585,0.065349251031876,0.017440186813474],[-0.037295751273632,0.065429896116257,0.06990809738636],[0.0034956466406584,-0.018285006284714,-0.0050170770846307]],[[-0.075739353895187,0.041296165436506,-0.025318535044789],[0.093666657805443,-0.032165713608265,-0.0042786253616214],[0.10951162874699,0.08211425691843,0.034966040402651]],[[-0.042182773351669,0.039545122534037,-0.034131214022636],[-0.007825231179595,-0.040492054075003,-0.14301326870918],[-0.0061432751826942,-0.066597059369087,-0.020246731117368]],[[-0.044250994920731,-0.042955435812473,-0.048750385642052],[-0.068318516016006,-0.035636637359858,-0.0053770402446389],[-0.0063202907331288,0.065102703869343,-0.070595003664494]],[[0.096726223826408,-0.13571974635124,-0.0925522595644],[0.10119021683931,-0.056752402335405,-0.029388643801212],[-0.0046734837815166,-0.071063712239265,0.037608038634062]],[[0.1247528269887,-0.041781436651945,-0.060570277273655],[0.092518158257008,-0.10032719373703,-0.01115454826504],[0.027655800804496,0.037080526351929,0.0065638399682939]],[[-0.084037818014622,-0.0183021184057,-0.038115911185741],[-0.0089017348363996,0.09878783673048,0.0056499931961298],[-0.012231231667101,0.048479203134775,0.044194273650646]],[[-0.0096337776631117,-0.14372627437115,-0.062638454139233],[0.045288104563951,-0.057923164218664,-0.054013751447201],[0.0078588053584099,-0.063072271645069,-0.014896353706717]],[[0.042285773903131,0.0051111397333443,0.051382251083851],[-0.048318166285753,0.0047896434552968,0.070051446557045],[-0.037913680076599,-0.010019542649388,0.077712893486023]],[[0.094901762902737,-0.078212738037109,-0.081251829862595],[0.040553342550993,-0.091627970337868,0.029530396685004],[0.077961906790733,0.025369437411427,0.05454620718956]],[[0.12426166236401,0.033581264317036,0.023198902606964],[0.1338128298521,-0.0035961645189673,-0.15601961314678],[-0.029610441997647,-0.15044121444225,-0.050373941659927]],[[-0.033908579498529,0.09368247538805,0.08094510436058],[-0.14126789569855,-0.1136326789856,0.064322605729103],[-0.081175044178963,-0.022406084463,0.032261751592159]],[[-0.055314868688583,0.0094617502763867,0.0015574276912957],[0.001468671951443,0.031653694808483,0.087670639157295],[0.02074590139091,0.01801878772676,0.071457304060459]],[[0.043401837348938,0.0079687368124723,0.08434596657753],[-0.011082962155342,0.034973334521055,-0.10378392785788],[-0.01654333807528,-0.0090490700677037,0.10314433276653]],[[0.068675920367241,-0.011831304058433,-0.12264040857553],[0.089110478758812,-0.056902073323727,-0.025176726281643],[-0.069305501878262,-0.04653749242425,-0.015070813708007]],[[-0.018507504835725,0.10528033971786,0.155173137784],[0.077021203935146,-0.030805822461843,0.043934687972069],[0.099010966718197,0.15520086884499,0.087748602032661]],[[-0.021451108157635,-0.0016186591237783,-0.055056132376194],[-0.020312154665589,0.012689799070358,0.073117069900036],[-0.018780488520861,-0.047668371349573,-0.025353491306305]],[[0.04328766092658,0.01656243763864,-0.092633627355099],[-0.048179056495428,-0.061784844845533,-0.030684724450111],[-0.08347675204277,-0.066712878644466,-0.041131787002087]],[[-0.0026920894160867,0.10483186691999,0.083301045000553],[0.19584031403065,0.038355074822903,0.17547129094601],[0.1190731972456,0.28230863809586,0.24395915865898]],[[0.0073882210999727,-0.066245138645172,0.06989636272192],[0.098996959626675,-0.082259967923164,0.063615143299103],[0.056962881237268,-0.058366104960442,0.097659081220627]],[[-0.026081994175911,-0.06656901538372,-0.15969054400921],[-0.21601112186909,-0.035521250218153,0.041853990405798],[-0.13597355782986,-0.11402391642332,-0.13493967056274]],[[-0.10986784845591,-0.04601039364934,-0.043075505644083],[-0.077638611197472,-0.15140217542648,-0.12818670272827],[-0.086098276078701,-0.093203850090504,-0.17237851023674]],[[0.0078224781900644,0.10785768181086,0.029286187142134],[-0.083666257560253,-0.033924356102943,-0.00025957167963497],[0.027600638568401,0.0037023122422397,0.074524730443954]],[[0.043498132377863,0.035759415477514,0.010188722983003],[-0.15748792886734,0.086764320731163,0.051786195486784],[-0.067497119307518,-0.045552738010883,0.037519127130508]],[[-0.13413587212563,-0.10058628767729,0.081011272966862],[0.0061468626372516,-0.085939414799213,-0.023135263472795],[-0.023301286622882,-0.073234714567661,-0.041286591440439]],[[0.0021625161170959,-0.040990468114614,-0.040096871554852],[-0.017916886135936,0.0031919665634632,0.05708160251379],[0.0037157239858061,-0.053188800811768,-0.0045091388747096]],[[-0.072763189673424,0.033567704260349,0.068564049899578],[-0.044803142547607,-0.028278432786465,0.13516898453236],[-0.095794856548309,-0.038156565278769,0.11033000797033]],[[-0.024764759466052,0.1275486946106,-0.0061708209104836],[-0.0092494115233421,-0.049406252801418,0.041979294270277],[0.073287695646286,-0.031565390527248,0.028560964390635]],[[-0.048495907336473,0.032971136271954,-0.022057520225644],[0.028438374400139,-0.0037100510671735,-0.080243438482285],[0.045428033918142,0.034202508628368,-0.11218448728323]],[[-0.02923821285367,-0.037364970892668,0.029696831479669],[0.03394977375865,0.097244650125504,0.15043519437313],[-0.0539710521698,0.046930119395256,0.043193589895964]],[[-0.069233223795891,0.010375272482634,-0.058386269956827],[-0.026587372645736,0.085831217467785,-0.075117751955986],[-0.010911117307842,0.070962302386761,-0.06547699868679]],[[0.10695560276508,-0.070903122425079,0.16099151968956],[0.014689164236188,-0.0045747072435915,-0.075337596237659],[0.28478837013245,0.01324154343456,0.058207217603922]],[[0.002020129468292,-0.043943230062723,0.013696807436645],[-0.058885306119919,0.072856977581978,-0.014883550815284],[-0.052256271243095,-0.084130145609379,0.08548092097044]],[[-0.061492696404457,0.086531616747379,0.042049612849951],[-0.11139725893736,-0.083640486001968,-0.011987492442131],[-2.0473707991187e-05,-0.16628317534924,-0.096385635435581]],[[-0.017554571852088,-0.054204627871513,0.058402106165886],[-0.056381464004517,-0.012173539027572,-0.045525763183832],[-0.14137256145477,-0.077970765531063,0.074397161602974]],[[0.087001733481884,0.04947941750288,0.016915943473577],[0.017045484855771,0.095883131027222,0.16011981666088],[-0.021351903676987,0.0047274976968765,-0.011863777413964]],[[0.0011643766192719,-0.066071905195713,0.033481419086456],[0.0010755327530205,-0.0935263261199,0.087565690279007],[0.13076189160347,0.12274165451527,-0.068219281733036]],[[0.010871096514165,-0.035651370882988,0.023779306560755],[-0.020869959145784,0.034772746264935,0.03753299638629],[-0.017118107527494,-0.015259507112205,0.038455039262772]],[[0.032242614775896,-0.040418267250061,0.1336969435215],[-0.010115646757185,0.0094483224675059,0.008013273589313],[0.087648645043373,0.045997470617294,0.079351037740707]],[[0.02201147004962,0.092106223106384,-0.2148555368185],[-0.039125647395849,-0.020153207704425,0.088735200464725],[0.044726945459843,0.019349375739694,-0.033607259392738]],[[0.011592637747526,-0.017866816371679,0.092849664390087],[-0.020908718928695,0.057438842952251,-0.047342665493488],[-0.146648645401,-0.0024331717286259,-0.03452767431736]],[[0.062041088938713,0.016355536878109,-0.081318192183971],[0.063483901321888,0.096887603402138,0.08512794226408],[-0.004305160138756,-0.026905659586191,0.1177839115262]],[[0.045098781585693,0.073580875992775,0.11844044178724],[-0.023518824949861,-0.043504271656275,0.035875611007214],[-0.034029174596071,-0.12724781036377,0.0056908028200269]],[[0.062984474003315,0.056987091898918,0.025540847331285],[0.040369760245085,0.0057419491931796,-0.0013557018246502],[0.064057685434818,0.01897974871099,-0.010539771988988]],[[-0.11173801124096,-0.014870109967887,0.0054821274243295],[-0.033520627766848,-0.073060095310211,0.046185202896595],[-0.0083508510142565,-0.062430128455162,-0.065793059766293]],[[0.018952377140522,0.010965040884912,-0.056202106177807],[-0.043525535613298,0.026204293593764,0.041029907763004],[-0.14448802173138,0.10107365250587,0.023827815428376]],[[0.011945518665016,0.028929920867085,0.042328380048275],[-0.0074653280898929,0.025528203696012,-0.0006969355745241],[0.23640310764313,-0.021308453753591,0.034577250480652]],[[-0.12885162234306,-0.095058314502239,-0.064970999956131],[-0.073386035859585,0.12115783989429,-0.016257433220744],[-0.02405689842999,-0.074144326150417,-0.051956348121166]],[[-0.016185456886888,0.047690331935883,-0.0047491928562522],[0.030911307781935,-0.10388676077127,0.084655292332172],[-0.072681620717049,-0.060272578150034,-0.088399864733219]],[[0.0036496135871857,0.031596668064594,0.09996385127306],[0.05823951587081,-0.070152536034584,0.10475677251816],[0.015547325834632,0.10048302263021,0.11547282338142]],[[0.028344191610813,-0.10404988378286,-0.10980279743671],[0.13046261668205,0.046890631318092,0.048516847193241],[0.032356880605221,0.12772950530052,0.091330423951149]],[[0.049016047269106,0.0083963172510266,0.002495918655768],[-0.016384026035666,0.025279628112912,-0.014317668043077],[0.0027710604481399,0.067889474332333,-0.0090726753696799]],[[0.026318937540054,0.010282088071108,-0.040231473743916],[-0.003345642471686,0.11260933429003,-0.042400039732456],[-0.050672814249992,-0.11846243590117,-0.021038513630629]],[[-0.083849914371967,-0.10763922333717,-0.041261088103056],[-0.08962956815958,-0.033837523311377,-0.016625894233584],[-0.038229957222939,-0.10470571368933,-0.037487953901291]],[[-0.011090798303485,0.070856764912605,0.088484175503254],[-0.083460107445717,-0.1018383949995,-0.030734460800886],[-0.087941594421864,0.070940650999546,-0.059101779013872]],[[0.0032791949342936,-0.091729640960693,-0.13287515938282],[0.12344560772181,-0.094140291213989,-0.045948337763548],[0.13589653372765,-0.11018291860819,0.079687736928463]],[[0.11316819489002,-0.056301970034838,-0.049133401364088],[-0.01295786164701,-0.056489087641239,0.054331596940756],[0.031845632940531,0.081713058054447,0.017885571345687]],[[0.028401905670762,-0.063713416457176,-0.044545255601406],[0.026168871670961,0.039590284228325,-0.10474227368832],[-0.074134513735771,-0.016032196581364,-0.030626578256488]],[[-0.025415513664484,0.0007415009313263,0.062666527926922],[-0.078192800283432,0.012558857910335,0.12366461008787],[-0.10313251614571,-0.03996555134654,0.068687200546265]],[[0.11546083539724,-0.0090606240555644,0.071840360760689],[-0.012022881768644,0.15706232190132,0.093876197934151],[-0.066498808562756,0.060971405357122,-0.016873028129339]],[[0.13829417526722,-0.036333471536636,-0.0028558608610183],[-0.12215402722359,-0.014321074821055,0.077140800654888],[0.083504408597946,-0.024284809827805,-0.073502689599991]],[[-0.072822242975235,0.021011905744672,-0.014677567407489],[-0.055162087082863,-0.030802924185991,-0.071706682443619],[0.061356034129858,-0.045182462781668,-0.0012364144204184]],[[0.053492233157158,0.037491906434298,-0.18385541439056],[-0.11668325215578,0.0094188703224063,0.038801822811365],[-0.088081695139408,0.0038143245037645,-0.044302329421043]],[[0.053801599889994,-0.019986594095826,0.14272490143776],[0.0350625179708,0.0079784886911511,0.053789291530848],[0.060223635286093,0.0078359888866544,0.19287271797657]],[[0.097971506416798,-0.024606760591269,-0.019841354340315],[-0.075582318007946,-0.0014469312736765,-0.062893815338612],[-0.032616555690765,-0.11541976034641,-0.028847243636847]],[[0.016889560967684,0.045307360589504,-0.075984917581081],[0.096864968538284,-0.01086706854403,-0.0030368082225323],[0.26177608966827,-0.038668025285006,0.17801946401596]],[[0.10368762910366,0.061500988900661,0.10555271059275],[0.10220335423946,-0.069092132151127,-0.15487053990364],[-0.15145349502563,-0.096482448279858,-0.088267996907234]],[[-0.012013797648251,-0.029055379331112,0.0092646032571793],[-0.063126973807812,-0.01420078240335,0.030707933008671],[0.041998725384474,-0.081234581768513,-0.010108545422554]],[[-0.13566139340401,-0.061736654490232,-0.010258916765451],[-0.09528486430645,0.16444544494152,0.0023382364306599],[-0.036658875644207,-0.064491219818592,-0.043558329343796]],[[0.026523526757956,-0.014808507636189,0.034181203693151],[-0.065842032432556,-0.019507776945829,-0.11931236088276],[-0.020418146625161,0.01444146502763,-0.010329570621252]],[[0.092862047255039,0.072616547346115,-0.019523045048118],[0.050392229110003,-0.064691349864006,-0.016838014125824],[0.041754234582186,0.048318058252335,0.076787807047367]],[[0.10812316834927,-0.099857121706009,0.016319818794727],[0.10761797428131,-0.0050236736424267,0.05850288271904],[0.035009104758501,0.081523098051548,0.068603701889515]],[[0.091988503932953,0.054804962128401,-0.072950415313244],[-0.037084612995386,0.074486501514912,0.13482071459293],[-0.022675232961774,-0.014747968874872,0.14330092072487]],[[-0.042725246399641,0.09653677791357,-0.0029238134156913],[-0.099023602902889,0.012968122959137,-0.030165938660502],[0.026107704266906,0.054014042019844,-0.1868412643671]],[[0.034016091376543,0.045936897397041,-0.075174652040005],[-0.0076102344319224,-0.0017691075336188,0.045263022184372],[-0.073553115129471,0.023124027997255,0.081955291330814]],[[0.034195978194475,0.070450246334076,0.045105550438166],[0.030429091304541,0.026222594082355,-0.068299300968647],[-0.14725084602833,-0.0038568181917071,-0.055256046354771]],[[-0.079641774296761,-0.001679448178038,-0.029778029769659],[-0.018855284899473,-0.046006318181753,-0.017052926123142],[0.039603617042303,-0.057417716830969,0.041921243071556]],[[-0.072354339063168,0.035970352590084,0.015236354433],[-0.011985772289336,0.081816665828228,-0.029051618650556],[-0.039363712072372,-0.0015724106924608,-0.039853990077972]],[[0.02788707986474,0.071324564516544,0.026608325541019],[0.011549889110029,0.035327859222889,-0.041633572429419],[-0.1618953794241,-0.055608052760363,-0.0015623153885826]],[[0.032502360641956,-0.070133775472641,-0.038843646645546],[0.066588588058949,0.12244794517756,0.023835541680455],[0.1166203469038,0.017749898135662,0.077121689915657]],[[0.078334994614124,0.05654202029109,-0.018930234014988],[0.022490482777357,0.0451550334692,-0.060228172689676],[0.11554688215256,0.057057838886976,-0.016563726589084]],[[0.00025081867352128,0.019078481942415,-0.02386486902833],[-0.046790897846222,0.059591878205538,0.025453291833401],[-0.0095007168129086,-0.020635718479753,0.055692315101624]],[[-0.021999003365636,-0.035578597337008,-0.066686920821667],[-0.040810037404299,0.050851970911026,0.0042433673515916],[0.014693026430905,0.02099865861237,0.1181540414691]],[[-0.047569580376148,0.0010043849470094,0.0010332104284316],[-0.0011696376604959,-0.012188469991088,-0.047544419765472],[0.019547831267118,0.022535054013133,0.033538699150085]],[[0.016618438065052,-0.093651033937931,-0.038270559161901],[0.050081931054592,0.059009682387114,-0.0036416568327695],[-0.14525637030602,-0.1037867590785,0.079730443656445]],[[-0.17657299339771,0.077195890247822,-0.018879799172282],[0.0076002306304872,-0.043248448520899,-0.091545663774014],[-0.0019089633133262,-0.079197853803635,-0.076413504779339]],[[-0.019082643091679,-0.040404886007309,-0.12371318042278],[0.037632837891579,-0.10722362995148,0.054794285446405],[0.12712670862675,0.027827003970742,0.06171778216958]],[[-0.00023810597485863,-0.02717555500567,-0.028266346082091],[0.02512532286346,-0.056482590734959,0.032636918127537],[-0.022568402811885,-0.0096452999860048,0.071084626019001]],[[-0.030803073197603,0.16858485341072,0.20902483165264],[0.045385699719191,-0.14717020094395,0.030071856454015],[-0.0041105183772743,-0.11815299838781,-0.017281582579017]],[[0.078221969306469,0.090622305870056,-0.13689720630646],[0.012882594950497,0.13129881024361,-0.018892291933298],[-0.043667811900377,0.062534682452679,0.057098582386971]],[[-0.10751851648092,-0.099992521107197,0.061896394938231],[0.049840498715639,-0.024323221296072,0.0049701714888215],[-0.011631360277534,-0.048985540866852,-0.06651247292757]],[[-0.1792216449976,-0.045205872505903,-0.13663910329342],[-0.1206194460392,-0.12054348737001,-0.046645164489746],[-0.030839620158076,-0.032769449055195,0.076290771365166]],[[0.18296703696251,0.099596060812473,0.058528631925583],[0.20492027699947,0.01768739707768,-0.028327634558082],[0.12169280648232,0.082216672599316,-0.025972332805395]],[[-0.10788722336292,0.012808813713491,0.068887569010258],[-0.05458951741457,0.065533757209778,-0.038677755743265],[-0.055310405790806,-0.094286806881428,0.065341830253601]],[[0.011559525504708,0.035277258604765,-0.019182054325938],[0.038364797830582,0.054617624729872,0.028069952502847],[-0.055897928774357,-0.21569247543812,-0.0048593082465231]],[[-0.07445502281189,0.0023508805315942,0.1252529323101],[0.035049736499786,-0.074957862496376,-0.025653980672359],[-0.079259224236012,-0.063421338796616,-0.086226239800453]],[[0.049909345805645,0.12179014831781,0.057807184755802],[0.09105958789587,0.06834527105093,-0.0023535969667137],[-0.12095969170332,0.054911814630032,0.025570560246706]],[[-0.046767357736826,-0.012340813875198,-0.0057463739067316],[-0.048116471618414,-0.056321814656258,0.11401706933975],[0.017146637663245,0.048792324960232,-0.12787537276745]],[[-0.12178203463554,0.012451277114451,-0.20562864840031],[0.050269354134798,0.036684636026621,-0.073589324951172],[0.065055973827839,0.11638882011175,-0.052468191832304]],[[-0.047788109630346,0.0080277323722839,0.0099470065906644],[-0.009990394115448,-0.075790457427502,0.049012646079063],[0.12009886652231,-0.079938307404518,0.080646730959415]],[[-0.049419179558754,0.044321794062853,0.029738746583462],[0.032298430800438,0.0085733821615577,0.019473733380437],[0.031130855903029,-0.017653040587902,0.030958773568273]]],[[[0.079932011663914,-0.001345221651718,-0.06488561630249],[-0.11752785742283,-0.0041920570656657,0.043905578553677],[0.055116824805737,0.033751353621483,-0.051307749003172]],[[-0.072632350027561,-0.00083582813385874,0.012435346841812],[0.01356521807611,-0.10687576979399,0.040671177208424],[0.0078410552814603,-0.1631029099226,0.019226025789976]],[[0.13070093095303,0.02327973768115,-0.028977898880839],[0.084843941032887,-0.040460307151079,-0.022365106269717],[0.12163351476192,0.0032170251943171,-0.017339466139674]],[[0.075463093817234,0.030036896467209,0.0062991525046527],[0.059595942497253,0.016573356464505,0.0012581152841449],[0.044226251542568,0.031150335446,0.055943753570318]],[[-0.081018179655075,-0.022611292079091,0.12426951527596],[0.0006676857592538,-0.062764629721642,0.09366299957037],[-0.064590744674206,0.004694648552686,0.023391289636493]],[[-0.0075762616470456,-0.0090013677254319,0.012525019235909],[0.043503824621439,0.070883505046368,-0.045517522841692],[0.0077618844807148,-0.051045581698418,-0.080667652189732]],[[-0.044412851333618,0.044462315738201,-0.14115639030933],[-0.002017937367782,-0.18158535659313,-0.001589258434251],[-0.059937741607428,0.08763587474823,0.020281439647079]],[[-0.063167698681355,0.088943086564541,-0.051017884165049],[0.052607115358114,0.06058556213975,-0.063470363616943],[0.070476226508617,0.036810968071222,-0.026069520041347]],[[-0.19249458611012,0.10935254395008,-0.087541960179806],[-0.18887685239315,-0.015982097014785,-0.030761417001486],[-0.030714744701982,0.20124959945679,0.067335546016693]],[[0.052160494029522,-0.0088930306956172,0.048649940639734],[0.015699800103903,-0.18811331689358,0.0066107446327806],[0.02442024089396,0.066642850637436,0.031745675951242]],[[0.053242474794388,0.065364316105843,-0.021742779761553],[0.068374499678612,0.039166532456875,0.014211949892342],[-0.040157377719879,-0.081942021846771,0.11528009921312]],[[0.11789345741272,0.060280576348305,-0.096371985971928],[-0.10736402124166,-0.014669700525701,0.026150578632951],[-0.12117797881365,-0.090228587388992,-0.094449169933796]],[[0.052231412380934,0.18809147179127,-0.0011779024498537],[0.073202632367611,-0.0042572193779051,0.18825140595436],[-0.01595763489604,-0.16044439375401,-0.020476387813687]],[[0.024686589837074,-0.012511453591287,-0.087673090398312],[0.033781558275223,0.010488528758287,-0.0060260142199695],[-0.12955828011036,-0.047554805874825,0.058447882533073]],[[0.069851540029049,-0.009553368203342,0.064163520932198],[0.11928506195545,-0.08836854249239,0.015556244179606],[0.0084646362811327,-0.070969142019749,-0.026489950716496]],[[0.082552902400494,-0.16407051682472,-0.082493059337139],[-0.1465800255537,0.0073057156987488,-0.037991248071194],[-0.034221917390823,0.14924129843712,-0.051913794130087]],[[0.026416195556521,-0.08743941783905,0.11449940502644],[0.016951158642769,-0.051971528679132,-0.03532375395298],[0.039635851979256,0.03085152246058,-0.030476761981845]],[[-0.085498832166195,-0.069342598319054,-0.03601423278451],[-0.065652877092361,-0.033164270222187,-0.060816615819931],[0.034716702997684,-0.14851854741573,0.021707220003009]],[[-0.14520879089832,0.015572869218886,0.0237109772861],[-0.093670465052128,0.094821378588676,0.050824839621782],[-0.029751690104604,0.021082956343889,-0.043747413903475]],[[0.019212879240513,-0.012848574668169,-0.069412037730217],[0.018551519140601,-0.090083889663219,-0.020784754306078],[-0.0031918070744723,0.13427485525608,-0.0023395377211273]],[[0.099038697779179,-0.017034402117133,-0.056030217558146],[-0.20258177816868,0.014141307212412,-0.1066468283534],[0.020484637469053,0.071852207183838,-0.17017529904842]],[[0.02829709276557,0.030632561072707,0.013348146341741],[0.011390684172511,0.096430189907551,-0.029887134209275],[0.085915088653564,-0.058206554502249,0.040784500539303]],[[-0.033791076391935,0.20008820295334,0.011427872814238],[0.04822875931859,0.066163040697575,-0.024672152474523],[-0.063231445848942,-0.028019620105624,-0.074902720749378]],[[-0.041953388601542,-0.07256842404604,-0.067624986171722],[0.26551523804665,0.039341796189547,0.011351670138538],[-0.055757325142622,0.22937560081482,-0.034727856516838]],[[-0.056567039340734,-0.065674938261509,0.0014269761741161],[-0.035443160682917,0.048963949084282,0.028922280296683],[-0.0010217959061265,0.046635564416647,0.0083925761282444]],[[0.088592261075974,0.046355318278074,0.067248821258545],[-0.012799979187548,0.0011477272491902,0.015279699116945],[0.044131383299828,-0.078643545508385,0.033956859260798]],[[0.040073409676552,-0.028016643598676,0.045931220054626],[-0.12009375542402,-0.0032214608509094,0.11435656249523],[0.05950990691781,0.1204774081707,-0.11715592443943]],[[-0.00026272956165485,0.030100524425507,0.020727945491672],[0.036936637014151,-0.033096246421337,0.0011073790956289],[-0.044211305677891,0.036407236009836,-0.012597070075572]],[[0.047521021217108,-0.086129270493984,0.058394767343998],[-0.041497949510813,-0.015132453292608,0.05399963632226],[-0.11986914277077,-0.085325434803963,-0.052624817937613]],[[-0.14699196815491,0.065580561757088,-0.074396334588528],[-0.072976291179657,0.049695312976837,-0.11222025752068],[0.10568631440401,-0.15579970180988,0.030110560357571]],[[-0.074777968227863,0.058542527258396,0.057366292923689],[0.0051116026006639,0.075214870274067,-0.030871611088514],[0.038341872394085,-0.02500499971211,0.024803759530187]],[[-0.050069320946932,-0.12915779650211,-0.0031364914029837],[-0.068215817213058,-0.044176071882248,0.073387652635574],[-0.07804623991251,-0.11255740374327,0.012766251340508]],[[0.056144047528505,0.08797724545002,-0.059920746833086],[0.043869972229004,-0.054987855255604,0.03849121183157],[-0.049779668450356,0.11626988649368,0.15783086419106]],[[-0.046955540776253,-0.097746528685093,0.16030134260654],[-0.0039028010796756,0.049809865653515,-0.1117075830698],[0.075181283056736,-0.064948245882988,0.12758556008339]],[[-0.063097380101681,0.045694313943386,0.053537741303444],[0.0011906560976058,-0.14886893332005,0.052905719727278],[-0.036082979291677,-0.015366714447737,-0.0025352467782795]],[[-0.033734172582626,-0.074014015495777,0.010874837636948],[-0.14786747097969,-0.048523705452681,0.048870887607336],[-0.10318260639906,0.077879004180431,0.024126656353474]],[[0.035893879830837,0.046359427273273,0.1746269017458],[0.16777351498604,0.040999297052622,-0.012037214823067],[-0.048528097569942,-0.046003036201,-0.013025952503085]],[[-0.12085554748774,0.026405246928334,-0.052449341863394],[-0.048636522144079,0.071128264069557,0.094050817191601],[-0.015862476080656,-0.041697613894939,0.011662512086332]],[[-0.071698181331158,0.050348199903965,-0.060813345015049],[0.16133418679237,0.042421773076057,-0.065454162657261],[0.21701322495937,-0.20589834451675,-0.1765196621418]],[[-0.0051747658289969,0.06828611344099,0.13557542860508],[0.059648010879755,0.067183665931225,0.05623484775424],[-0.019205495715141,0.068493701517582,0.093336671590805]],[[0.028818311169744,0.058134708553553,-0.036152146756649],[0.11830106377602,-0.0038216537795961,-0.026156730949879],[0.0079508749768138,0.085147388279438,0.013613441959023]],[[0.029896449297667,0.040249530225992,-0.042362123727798],[-0.039588950574398,0.12077586352825,0.018103649839759],[0.06531672924757,0.078405611217022,-0.054057996720076]],[[0.013097934424877,-0.022475929930806,0.059809565544128],[0.034433417022228,-0.026349475607276,0.03078781068325],[0.015047826804221,0.041057735681534,0.027605155482888]],[[0.00066882494138554,-0.028335513547063,-0.084784433245659],[-0.010509317740798,0.090117037296295,-0.07088141143322],[-0.024826385080814,0.060718093067408,-0.086089439690113]],[[-0.088700190186501,0.031337141990662,0.12366314977407],[-0.21116645634174,0.01282200589776,0.057256571948528],[-0.029318423941731,0.042015444487333,-0.0074518253095448]],[[0.13971550762653,0.071470901370049,0.016706924885511],[0.066878162324429,0.0042608617804945,0.021056104451418],[0.0034882433246821,0.1305940002203,0.026865592226386]],[[-0.0041846185922623,-0.066235706210136,-0.0023870365694165],[-0.107511729002,-0.054335687309504,-0.01819085329771],[-0.087761245667934,-9.9010314443149e-05,0.048838157206774]],[[0.13615109026432,-0.087810009717941,-0.20308443903923],[-0.089042834937572,-0.19623304903507,0.085119806230068],[0.010975605808198,0.086111314594746,-0.14001443982124]],[[0.09919685125351,0.011816009879112,-0.0045361123047769],[0.066102154552937,-0.14190666377544,0.0058303331024945],[0.079083673655987,-0.1062590777874,-0.020269213244319]],[[-0.0080204736441374,-0.0049039386212826,-0.077496208250523],[-0.065889477729797,-0.043550547212362,0.016832312569022],[-0.099683746695518,0.055473066866398,0.0071504330262542]],[[-0.00079191627446562,0.0078689521178603,-0.018404208123684],[-0.085675105452538,-0.014848311431706,0.11693163961172],[0.062147974967957,0.1123436614871,-0.013780074194074]],[[0.11519485712051,-0.0075326906517148,-0.0030724878888577],[0.039624106138945,-0.10127771645784,-0.051356669515371],[0.06592333316803,-0.13463217020035,0.13331052660942]],[[-0.0037251757457852,0.0090289609506726,0.054873026907444],[0.029061317443848,0.025828244164586,0.050067905336618],[-0.081488609313965,-0.087922260165215,-0.015172781422734]],[[0.032689958810806,-0.089230112731457,0.040220472961664],[0.032618310302496,-0.042944490909576,0.094971552491188],[0.064153797924519,0.010078299790621,0.069924615323544]],[[0.078889861702919,-0.097032904624939,0.019204339012504],[-0.049324546009302,-0.065964862704277,-0.067083165049553],[-0.11650271713734,0.0059019988402724,-0.045467313379049]],[[0.13913397490978,-0.022994088009,-0.031113924458623],[-0.04408885166049,0.064781755208969,-0.29613927006721],[-0.09059464931488,0.12943504750729,0.041561670601368]],[[-0.047832150012255,-0.048654947429895,-0.045119155198336],[0.062079537659883,0.033951811492443,0.078953377902508],[-0.011760696768761,0.020542323589325,0.13852646946907]],[[0.011365512385964,0.039573699235916,-0.027841446921229],[0.11025656759739,-0.084694497287273,-0.052210353314877],[-0.088974699378014,0.15580688416958,0.027604784816504]],[[0.17172195017338,0.12813131511211,-0.0097432686015964],[-0.062871262431145,-0.010997232981026,-0.1076377555728],[-0.060773197561502,-0.017991695553064,-0.035589393228292]],[[-0.091191075742245,-0.085062205791473,0.1713285446167],[-0.04789562150836,0.075807847082615,-0.041827723383904],[0.10915380716324,0.026353906840086,-0.013538483530283]],[[0.00073759368387982,-0.014433174394071,-0.047070968896151],[0.034160882234573,-0.038179464638233,0.0231977943331],[0.203265234828,0.066590040922165,-0.069692961871624]],[[0.013234906829894,-0.11452157050371,-0.082680270075798],[0.025843426585197,0.044139422476292,0.12057273834944],[0.017200337722898,0.042556192725897,-0.067832514643669]],[[-0.21520507335663,0.030732585117221,-0.0057964855805039],[0.0076291752047837,-0.020832244306803,-0.22596316039562],[-0.015759211033583,0.057737275958061,-0.13014467060566]],[[0.024212174117565,0.016580292955041,-0.055403489619493],[-0.025647109374404,0.036652110517025,0.096637815237045],[-0.16584697365761,-0.1085217744112,-0.036690328270197]],[[-0.016207633540034,0.13440690934658,0.05491641908884],[-0.14977064728737,-0.080077961087227,0.012718798592687],[0.066165924072266,-0.11697386205196,-0.074127785861492]],[[-0.013073914684355,0.077395126223564,0.10031282901764],[-0.0030044585000724,-0.048243090510368,0.014209737069905],[0.028966654092073,0.071852475404739,0.0077659385278821]],[[-0.078261487185955,0.0092620411887765,0.039622187614441],[0.14465083181858,0.043240588158369,0.076804012060165],[-0.012709135189652,-0.060793295502663,-0.0071242828853428]],[[0.016142331063747,0.00034231171594001,0.017827343195677],[0.050558794289827,-0.10975186526775,0.17728014290333],[0.012965831905603,0.05451763048768,0.14431519806385]],[[0.10517607629299,-0.01474376115948,0.048805963248014],[-0.064039930701256,-0.029473062604666,0.12041669338942],[0.037715159356594,0.080214403569698,0.17939096689224]],[[-0.22895762324333,0.045860141515732,0.012674179859459],[-0.13354754447937,0.036284774541855,0.085589930415154],[0.061949852854013,0.044543597847223,-0.0092172333970666]],[[0.10410067439079,-0.039404861629009,0.040465701371431],[0.017258148640394,-0.0083534549921751,-0.012294941581786],[-0.036667946726084,0.045624542981386,0.054992761462927]],[[-0.084906578063965,-0.04552798718214,0.056819193065166],[0.06000842154026,0.071029812097549,0.031318828463554],[0.036844991147518,-0.015625987201929,0.073312155902386]],[[0.085631422698498,-0.060366034507751,-0.0015892265364528],[-0.059651620686054,-0.073939144611359,-0.082462623715401],[0.025593068450689,-0.04635464400053,-0.078980445861816]],[[-0.018563786521554,-0.019464768469334,0.035394489765167],[0.01035475358367,-0.049794238060713,0.13061602413654],[-0.036254718899727,-0.06967967748642,0.024721834808588]],[[-0.040565211325884,-0.01974319294095,0.083755925297737],[-0.0080225644633174,0.062923893332481,0.036601908504963],[-0.1056285277009,-0.034877192229033,0.041674643754959]],[[-0.029734207317233,0.13029393553734,0.051122598350048],[-0.10410476475954,-0.10020197927952,-0.0039858883246779],[0.042290356010199,-0.14428701996803,0.038041308522224]],[[0.076406620442867,0.026480806991458,-0.010052093304694],[0.072401650249958,-0.071545533835888,0.067621350288391],[-0.025710344314575,0.01498069241643,0.10042587667704]],[[-0.056828677654266,0.0031193937174976,0.012060336768627],[0.06740215420723,0.093801140785217,0.015597747638822],[0.018553406000137,0.077491208910942,0.15226073563099]],[[0.088305585086346,0.036692049354315,0.031687151640654],[0.046932499855757,-0.013238714076579,0.0083792665973306],[-0.052170287817717,0.039712503552437,0.023751573637128]],[[0.0062194657512009,-0.090834692120552,-0.018859455361962],[-0.21902354061604,0.002143690828234,-0.087365612387657],[-0.067959308624268,0.011784076690674,-0.11971741914749]],[[0.1208984926343,0.0053560947999358,0.09759858250618],[-0.025527680292726,-0.06515821069479,0.032078765332699],[-0.053878381848335,-0.21533460915089,0.1010365486145]],[[0.019591968506575,-0.11439515650272,-0.04388689622283],[-0.053581740707159,-0.058404386043549,0.12392877787352],[0.075491979718208,-0.0065778237767518,-0.019407391548157]],[[-0.012524078600109,-0.023139722645283,-0.073227912187576],[-0.019246969372034,-0.0065516671165824,-0.19424872100353],[-0.080113597214222,0.054147358983755,0.031919952481985]],[[0.036586713045835,0.14944475889206,-0.046905528753996],[0.010319280438125,0.062780559062958,-0.038194414228201],[0.014782721176744,0.10919732600451,-0.078502327203751]],[[0.041544675827026,-0.0013476164313033,0.017828261479735],[0.22482548654079,-0.16104827821255,-0.023422155529261],[-0.23867607116699,-0.1087547019124,0.01998321339488]],[[-0.010117794387043,-0.039047878235579,0.045263357460499],[-0.10181634873152,0.0022808618377894,0.030960701406002],[-0.061351243406534,-0.012069719843566,0.094808265566826]],[[-0.049537070095539,-0.010906282812357,0.16727775335312],[-0.017202768474817,0.059991054236889,-0.10152726620436],[0.041263211518526,0.078096225857735,0.10574471205473]],[[0.084673687815666,0.067470386624336,-0.046214263886213],[-0.048091422766447,0.01422718167305,-0.072397038340569],[0.05526765063405,-0.032770816236734,-0.054998409003019]],[[-0.048096995800734,0.098652929067612,-0.071459211409092],[-0.043172005563974,0.075272284448147,0.019385758787394],[-0.011661383323371,0.053943779319525,-0.077968053519726]],[[0.0062771295197308,-0.013266362249851,0.062230180948973],[0.051785338670015,-0.091091640293598,-0.074155546724796],[0.12947559356689,-0.15187276899815,-0.07353176176548]],[[0.057735212147236,-0.10438556969166,0.12751518189907],[-0.028713408857584,0.035469710826874,0.12718643248081],[-0.07996067404747,-0.13530516624451,0.072346970438957]],[[0.08975663036108,0.050577539950609,0.0037840695586056],[0.020570220425725,-0.01064829248935,-0.065642677247524],[-0.012852981686592,-0.11942425370216,-0.075032584369183]],[[-0.016730258241296,0.0017717162845656,0.11742834746838],[-0.054060950875282,0.010479646734893,0.030672082677484],[-0.035654474049807,-0.011644344776869,-0.0048312190920115]],[[-0.092760354280472,0.11634968966246,-0.016207728534937],[-0.0014500319957733,0.1663466989994,-0.085516773164272],[-0.015630261972547,0.087626159191132,0.037546247243881]],[[-0.054737586528063,0.0079274130985141,-0.15192593634129],[-0.18301317095757,-0.014721752144396,-0.096818141639233],[0.052834987640381,-0.058515444397926,-0.083957701921463]],[[0.0056563569232821,0.018706049770117,0.023533891886473],[0.011272677220404,-0.020856073126197,-0.10532393306494],[0.044091373682022,0.056454624980688,0.031817466020584]],[[-0.029763041064143,0.092734403908253,-0.064229816198349],[-0.018908796831965,0.0032287058420479,0.039099529385567],[0.0033111881930381,0.22005192935467,-0.14803226292133]],[[0.090296484529972,-0.057405564934015,0.015274224802852],[0.098246522247791,-0.0011289301328361,-0.011702517978847],[0.010245548561215,0.1576372385025,0.066089496016502]],[[-0.018026493489742,-0.091196320950985,0.008881276473403],[-0.04751155897975,-0.094563215970993,0.36038705706596],[-0.023049728944898,-0.12610630691051,-0.046725668013096]],[[-0.015903336927295,0.0043306071311235,-0.0024856014642864],[-0.087328933179379,-0.026408074423671,0.031466975808144],[-0.0438302308321,0.10942407697439,0.01264885533601]],[[-0.13549676537514,-0.023946721106768,-0.0049576163291931],[0.033936776220798,-0.012182410806417,-0.13025127351284],[-0.10726141184568,0.017739225178957,0.0015963814221323]],[[0.0083648962900043,-0.064904317259789,-0.0151427378878],[-0.062367614358664,-0.01905570551753,0.021782970055938],[-0.026655048131943,0.05749012902379,-0.0077339657582343]],[[0.053669907152653,0.026720082387328,-0.0095741003751755],[0.2992502450943,-0.059974458068609,0.0017826864495873],[-0.095671638846397,0.093662090599537,0.040660630911589]],[[0.19690756499767,-0.00054664484923705,0.12285195291042],[-0.077815294265747,-0.025449616834521,0.03744013607502],[-0.05499554425478,-0.054825637489557,-0.0054169395007193]],[[0.043416194617748,0.080741249024868,-0.020157383754849],[-0.010507714003325,-0.021976809948683,0.022794786840677],[-0.02316103130579,0.059540245682001,-0.086781695485115]],[[0.033338267356157,-0.006310966797173,0.031473781913519],[-0.049684558063745,-0.042695138603449,0.026612659916282],[0.043853003531694,0.00096666318131611,0.037422940135002]],[[-0.094449542462826,0.09441090375185,0.14662733674049],[0.010666076093912,-0.10212925076485,0.055923264473677],[-0.073454983532429,0.076320827007294,0.020507328212261]],[[0.03355823084712,0.073486424982548,-0.013923179358244],[-0.056379213929176,-0.038836594671011,0.081703394651413],[-0.06971438229084,0.068462669849396,0.0782405808568]],[[-0.1092192530632,0.050877299159765,0.034996379166842],[-0.063658632338047,-0.034788079559803,-0.006870286539197],[-0.048209086060524,-0.047310300171375,-0.10329459607601]],[[0.039089929312468,0.046204447746277,0.026224799454212],[-0.0097791450098157,0.10182970017195,-0.041725773364305],[0.086535200476646,0.047574307769537,-0.0213822722435]],[[-0.028053902089596,0.0083308853209019,-0.10653609782457],[0.071129970252514,-0.085856556892395,0.070812560617924],[0.052247576415539,-0.082342430949211,0.049312628805637]],[[-0.070708185434341,-0.091500118374825,0.019384618848562],[-0.14629206061363,-0.056261841207743,0.10763961821795],[-0.11026450246572,-0.052834890782833,-0.074996054172516]],[[0.048512112349272,0.0063394280150533,-0.089053772389889],[-0.093206606805325,-0.096139281988144,0.012926237657666],[-0.0088975867256522,0.04788950458169,0.0011199819855392]],[[0.07137543708086,-0.10664495080709,-0.13829091191292],[-0.033047556877136,-0.033555798232555,-0.021120551973581],[-0.085394971072674,-0.10230401903391,0.0067296754568815]],[[-0.1000318005681,-0.05346404761076,0.029179180040956],[-0.06868539005518,-0.055255327373743,0.049005128443241],[-0.03974162042141,0.021770935505629,-0.077354095876217]],[[-0.039739597588778,-0.16046087443829,0.023490395396948],[-0.074448697268963,0.01853309944272,-0.1384616792202],[0.055304035544395,0.061129309237003,-0.080822624266148]],[[-0.029154116287827,-0.096526108682156,0.11060424149036],[0.013367778621614,-0.044942401349545,-0.057194042950869],[0.0072695040144026,-0.070827998220921,0.0094057833775878]],[[-0.072691537439823,-0.28147038817406,0.015208028256893],[-0.056840308010578,-0.080439247190952,0.033171135932207],[-0.077809117734432,-0.092364735901356,0.0036836466751993]],[[0.0012042812304571,-0.11573829501867,-0.20184741914272],[-0.022732311859727,0.061112180352211,-0.05099031329155],[0.02816266939044,-0.14156554639339,0.08594673871994]],[[-0.12404782325029,-0.018827123567462,0.1021231636405],[0.018139051273465,0.025191528722644,-0.096073843538761],[-0.035168185830116,0.077309124171734,-0.069604113698006]],[[0.045108329504728,-0.0086437547579408,0.0013729702914134],[-0.053880367428064,0.045817539095879,-0.062552526593208],[0.081483595073223,0.16994376480579,-0.029824396595359]],[[0.054826207458973,0.024945437908173,-0.024987274780869],[-0.030443672090769,-0.0090382797643542,-0.059566333889961],[0.051631521433592,-0.18154898285866,0.017976101487875]],[[-0.015738610178232,0.015561424195766,-0.052274189889431],[-0.10836458951235,0.040743049234152,-0.02811754308641],[0.036635592579842,-0.058526135981083,-0.097888424992561]],[[0.034323427826166,0.012611024081707,0.034973185509443],[-0.15002970397472,-0.024781331419945,-0.087009698152542],[-0.039076991379261,-0.050637703388929,0.018728448078036]],[[0.054444693028927,0.11910597980022,0.055306974798441],[0.0095602255314589,0.061542980372906,-0.045226957648993],[-0.11817266047001,0.0014037467772141,-0.11902273446321]],[[-0.0066051371395588,0.041671652346849,0.17702162265778],[0.021422974765301,5.7356675824849e-05,-0.060673329979181],[0.016195148229599,-0.011772519908845,-0.0023588710464537]],[[-0.11056862771511,-0.011171201243997,-0.071028657257557],[0.030755085870624,-0.073236897587776,0.043259017169476],[0.1272380053997,0.050372868776321,0.10536608099937]],[[-0.058451071381569,-0.024716952815652,-0.015118986368179],[-0.091990120708942,-0.16403348743916,-0.097628757357597],[0.12843282520771,-0.17869110405445,0.13378459215164]]],[[[-0.038090109825134,0.10596009343863,-0.0025221428368241],[-0.12251903116703,0.056567009538412,0.018711823970079],[0.049891024827957,-0.021207133308053,0.045271430164576]],[[-0.053366512060165,0.15299853682518,-0.10976521670818],[-0.091604985296726,0.0095890471711755,0.071569174528122],[-0.10291337221861,0.081828124821186,-0.095719046890736]],[[0.053457658737898,0.017922189086676,-0.21751353144646],[-0.10070689022541,-0.065142869949341,0.016147593036294],[0.046232234686613,-0.049400836229324,0.024011272937059]],[[0.032777030020952,-0.031882256269455,0.1407292932272],[0.0033872732892632,0.024031955748796,0.12500880658627],[0.15615378320217,0.067967750132084,0.010389197617769]],[[0.017419995740056,0.056555535644293,-0.077992424368858],[0.090448372066021,-0.037372756749392,-0.058625113219023],[0.027164068073034,-0.035557448863983,-0.060395292937756]],[[0.088504284620285,0.03767391294241,0.015301293693483],[0.059393644332886,0.028291134163737,-0.082978092133999],[0.081496112048626,0.042320128530264,-0.063107147812843]],[[0.055888406932354,-0.030616821721196,-0.056649386882782],[-0.048053558915854,0.029159687459469,0.018838120624423],[-0.016883857548237,0.03684226423502,0.040000203996897]],[[-0.048715006560087,-0.078283958137035,0.10599471628666],[0.048315305262804,-0.092736549675465,0.11148729920387],[-0.039694231003523,0.0015005769673735,0.035164721310139]],[[0.018593318760395,-0.020365707576275,-0.10403569042683],[-0.077134922146797,0.021352348849177,0.01643269136548],[-0.10423211753368,-0.002475003246218,-0.011131571605802]],[[-0.10128262639046,-0.038896720856428,-0.20413261651993],[0.0076507972553372,0.074691541492939,0.090958580374718],[0.10199473798275,0.17934566736221,-0.027364693582058]],[[-0.026264583691955,-0.030723944306374,0.13534703850746],[0.032615344971418,-0.027463924139738,0.045038141310215],[0.082944445312023,0.14821393787861,-0.010274166241288]],[[0.11044803261757,0.35664474964142,-0.043093930929899],[-0.11495400965214,-0.079403772950172,-0.01815814897418],[0.062106363475323,0.081299640238285,0.013840204104781]],[[0.11599313467741,0.087292462587357,-0.0088374949991703],[0.022272249683738,0.12801937758923,-0.10989425331354],[0.016003601253033,0.013991247862577,-0.067455723881721]],[[0.10412692278624,0.00091352226445451,-0.068488083779812],[-0.054735958576202,-0.14643180370331,-0.028604477643967],[-0.033165082335472,-0.14663238823414,0.0080638937652111]],[[0.061069838702679,-0.062843531370163,0.058842696249485],[0.048472989350557,-0.11216340214014,-0.094595305621624],[0.0054450570605695,-0.0800666436553,0.041299659758806]],[[0.18849551677704,0.0035835639573634,-0.060004502534866],[0.094668306410313,0.015538929961622,0.034890506416559],[0.099162317812443,0.037210039794445,-0.027408383786678]],[[0.025995058938861,0.019405886530876,-0.03661946952343],[-0.068169951438904,0.14318008720875,-0.092621333897114],[0.1382392346859,-0.027520053088665,-0.15421149134636]],[[-0.091286435723305,0.018247783184052,0.050904560834169],[-0.021261179819703,-0.0010453697759658,0.11992090195417],[0.093958586454391,-0.00034432570100762,0.0640973970294]],[[-0.018177820369601,-0.035983797162771,0.10739733278751],[-0.19718015193939,0.083113104104996,0.00027424917789176],[-0.028444526717067,-0.065215706825256,0.010166417807341]],[[-0.07007697224617,-0.018874345347285,-0.045348685234785],[-0.0032271365635097,0.039078965783119,0.011770261451602],[-0.021397151052952,0.03192500397563,-0.032283842563629]],[[0.066715642809868,-0.013428948819637,-0.019988162443042],[0.0057014054618776,-0.017950363457203,-0.022021172568202],[0.029694994911551,0.071070700883865,-0.11404908448458]],[[0.0097146704792976,-0.0026428997516632,0.038496010005474],[0.068232052028179,-0.049388784915209,0.09185491502285],[0.021342815831304,-0.12023219466209,-0.068870641291142]],[[-0.1089950427413,0.046189650893211,0.09055669605732],[0.058708053082228,0.0098566487431526,-0.086513102054596],[-0.078147940337658,0.11894235759974,-0.025844473391771]],[[0.095541678369045,0.027781046926975,0.094578206539154],[-0.030596302822232,0.11663313210011,0.051775556057692],[-0.16429407894611,0.095394186675549,0.043285697698593]],[[-0.014505484141409,-0.089359693229198,0.095874533057213],[0.028975583612919,-0.016515769064426,-0.01846039481461],[0.11706442385912,0.051921054720879,0.16781356930733]],[[0.011501391418278,-0.022788563743234,-0.01736856251955],[0.01943745650351,-0.011961908079684,-0.049915045499802],[-0.11547363549471,-0.038294840604067,-0.087586596608162]],[[0.056792203336954,0.053564827889204,0.031132400035858],[0.12744329869747,0.015409249812365,-0.053408894687891],[0.053631253540516,0.056443747133017,-0.03466385602951]],[[-0.096464730799198,0.026348678395152,-0.035035226494074],[0.018232418224216,0.040531329810619,0.094696030020714],[0.058478780090809,0.065553471446037,-0.027036599814892]],[[0.082522079348564,0.060706317424774,-0.11443641036749],[0.045682709664106,-0.047761630266905,0.040904182940722],[-0.015208594501019,0.048267345875502,0.019053358584642]],[[-0.052680298686028,-0.067656278610229,-0.039803937077522],[-0.030089382082224,0.15354077517986,0.080182299017906],[0.079918712377548,0.077021755278111,-0.040937673300505]],[[0.012584250420332,-0.037171009927988,0.052692331373692],[0.17537574470043,0.087898939847946,0.15921288728714],[0.13877250254154,-0.029882602393627,0.0079476265236735]],[[-0.15336157381535,-0.005168255418539,0.13833352923393],[-0.12220818549395,-0.037993278354406,0.088005773723125],[0.03601186349988,0.082141794264317,-0.03549563139677]],[[0.11279714852571,0.19312603771687,-0.14555668830872],[-0.076304599642754,0.16675016283989,-0.03119327314198],[0.1365363150835,-0.010246867313981,0.055142063647509]],[[0.082151897251606,0.060190267860889,-0.0096424203366041],[-0.015578538179398,-0.077716939151287,0.0031883132178336],[-0.026982819661498,0.020767044275999,0.084960900247097]],[[0.088680304586887,-0.068004198372364,0.057321701198816],[-0.090146616101265,-0.059507381170988,0.033275276422501],[0.016711503267288,0.10874714702368,0.10090805590153]],[[0.17000062763691,-0.10159783810377,-0.11220759153366],[0.039136596024036,-0.070774115622044,0.038730256259441],[-0.084377445280552,-0.019482582807541,0.053800936788321]],[[-0.0056102517992258,0.16090129315853,-0.023365398868918],[-0.050733271986246,0.061204198747873,0.020236464217305],[0.042604193091393,0.026946330443025,0.12182931602001]],[[0.033075854182243,-0.089830040931702,0.0041084093973041],[-0.14888186752796,-0.092323482036591,-0.089082710444927],[-0.12288706749678,-0.035879626870155,-0.040084958076477]],[[-0.052551008760929,0.072863854467869,-0.063089400529861],[-0.035279706120491,0.016242643818259,0.02138077840209],[-0.039912678301334,-0.041131276637316,-0.055566906929016]],[[0.058476611971855,0.02431308850646,-0.0052971900440753],[-0.028818026185036,-0.0057607209309936,0.079789228737354],[0.10161882638931,-0.0045374594628811,0.051502257585526]],[[0.02201690711081,-0.0021914918906987,-0.065847188234329],[-0.018292229622602,-0.042296811938286,-0.060570534318686],[-0.030900903046131,0.0670051202178,-0.036468725651503]],[[0.17254960536957,0.020436285063624,-0.013660359196365],[-0.0033271084539592,0.062662273645401,-0.0066292653791606],[-0.00026177795371041,-0.039153158664703,0.029243631288409]],[[0.026468945667148,0.043555591255426,-0.044342566281557],[0.082561738789082,-0.051607597619295,-0.056457202881575],[-0.068937405943871,0.04894508048892,0.065222643315792]],[[-0.016525702551007,0.064984731376171,0.031179191544652],[-0.069521076977253,-0.015773244202137,-0.00068304390879348],[-0.055169340223074,0.010414648801088,0.03713446483016]],[[0.10373223572969,-0.0067303427495062,0.061760697513819],[0.08501810580492,0.070532448589802,0.0016822416801006],[0.10859885066748,0.047466576099396,0.01083526480943]],[[-0.060870811343193,-0.07184461504221,-0.019782220944762],[0.080515049397945,0.04042960703373,0.008340205065906],[0.17465244233608,-0.027632934972644,0.12131278961897]],[[-0.052958194166422,0.0610984377563,0.099375136196613],[-0.057977251708508,0.14029364287853,-0.050270166248083],[0.20176163315773,-0.17464008927345,-0.097468316555023]],[[-0.068862058222294,-0.01221832446754,-0.06827549636364],[-0.072694905102253,-0.018157579004765,0.033242177218199],[-0.017451485618949,-0.019398767501116,0.0084757814183831]],[[0.065519623458385,-0.074209213256836,-0.029717234894633],[-0.037150699645281,-0.056737929582596,-0.062639541924],[-0.053673710674047,-0.027422880753875,-0.064583897590637]],[[0.0033876562956721,0.034476697444916,-0.074108935892582],[0.024329429492354,-0.074240945279598,-0.052646737545729],[0.0058461069129407,-0.058017335832119,-0.052075397223234]],[[0.049174200743437,0.00010190642205998,0.083085916936398],[-0.023662468418479,0.040974792093039,0.030811602249742],[0.029665898531675,-0.01618853956461,0.22286818921566]],[[-0.0050855362787843,0.0094266356900334,0.097696401178837],[-0.072997115552425,0.02621248178184,0.035185988992453],[0.020151531323791,-0.06732764095068,0.044874656945467]],[[0.031804542988539,-0.076625891029835,-0.02970602363348],[0.054810628294945,-0.015569624491036,-0.037802692502737],[-0.014051487669349,-0.044060941785574,0.0031255988869816]],[[-0.0551030151546,0.091126412153244,-0.010535813868046],[0.010186466388404,-0.012953813187778,0.038819991052151],[-0.015170338563621,0.010244704782963,0.17706377804279]],[[0.058180369436741,0.0011015564668924,-0.11960071325302],[0.1127346009016,0.028758078813553,-0.025958279147744],[0.071045003831387,-0.065610803663731,0.015656910836697]],[[-0.06635619699955,0.12235921621323,0.0085830837488174],[0.030551612377167,0.067690394818783,0.023602981120348],[-0.0024176638107747,0.088725559413433,0.0091359596699476]],[[-0.027198335155845,0.069957859814167,-0.044928304851055],[0.067196935415268,0.0073900427669287,0.10792727023363],[-0.034580837935209,0.037798307836056,0.060242027044296]],[[-0.014076069928706,0.038370404392481,-0.03471727669239],[-0.0011205086484551,-0.02099821344018,0.0038826924283057],[-0.00038697404670529,-0.02239047922194,-0.10741025954485]],[[-0.030429599806666,-0.10072677582502,-0.042257267981768],[0.17231242358685,-0.0091394120827317,0.0054370919242501],[-0.056947160512209,0.032092250883579,-0.01418433431536]],[[0.13290986418724,0.043787889182568,0.044363297522068],[-0.15190882980824,-0.081954330205917,0.030191995203495],[-0.095867589116096,-0.050995443016291,-0.0022140122018754]],[[0.01192825473845,-0.025178398936987,-0.040174458175898],[0.12321892380714,0.027065986767411,0.011356110684574],[-0.040066350251436,0.0052317176014185,-0.047596391290426]],[[0.010751499794424,-0.044072136282921,0.068415053188801],[-0.066539734601974,-0.0017877734499052,0.0019207420991734],[-0.018256915733218,-0.036691129207611,-0.022342963144183]],[[0.033628847450018,-0.041866317391396,-0.075858801603317],[0.053677748888731,-0.026598419994116,-0.049941636621952],[-0.036565586924553,-0.011359056457877,-0.06712730973959]],[[0.0065356469713151,-0.016360335052013,0.07243923842907],[0.12761996686459,0.066752322018147,-0.0331777818501],[0.017929112538695,-0.05221613496542,-0.0022796972189099]],[[-0.044842395931482,-0.044323053210974,0.048745665699244],[-0.013338461518288,0.10985653102398,0.017149848863482],[0.04798961058259,0.0052658007480204,0.067820385098457]],[[0.08305948972702,-0.083332762122154,-0.0025102766230702],[0.045163746923208,-0.016922270879149,-0.049867980182171],[0.017843155190349,0.053583152592182,0.054842360317707]],[[-0.027204260230064,-0.012819461524487,-0.035524118691683],[0.028650335967541,-0.027100846171379,-0.02248041331768],[0.070746272802353,-0.066705077886581,0.062913075089455]],[[-0.016486059874296,-0.0740807056427,0.026556421071291],[-0.02655285038054,-0.072359971702099,-0.14480736851692],[0.067524954676628,0.12615305185318,0.10261943936348]],[[0.048176899552345,-0.018568897619843,-0.15350835025311],[0.023817628622055,-0.043378114700317,0.10037715733051],[-0.057895798236132,0.06674013286829,0.023014187812805]],[[0.058498285710812,0.14296698570251,0.016680017113686],[0.05004869773984,-0.074101649224758,-0.0052348370663822],[-0.070762291550636,0.13787107169628,0.017435947433114]],[[-0.083692587912083,0.080353304743767,0.0029370747506618],[-0.063733153045177,0.057096906006336,0.34496647119522],[0.31216463446617,0.057824872434139,0.026031013578176]],[[-0.018084768205881,0.10255572199821,0.0097769815474749],[0.018666861578822,-0.080025114119053,0.089618563652039],[0.1258250027895,-0.11608589440584,-0.013666102662683]],[[0.07001556456089,0.030805848538876,-0.019151780754328],[0.13262693583965,0.014087896794081,-0.01644535176456],[-0.056704737246037,0.04267829656601,0.085502199828625]],[[0.025174060836434,-0.068232104182243,-0.071252405643463],[0.0087581994011998,-0.0643195733428,0.057136107236147],[-0.058424398303032,0.093455009162426,-0.054934334009886]],[[0.017091965302825,-0.0014608288183808,-0.038283754140139],[-0.0040470845997334,0.0022112755104899,-0.047176364809275],[0.016897281631827,-0.0091514736413956,-0.10715299099684]],[[-0.027033507823944,0.040610078722239,-0.0013496128376573],[-0.027881344780326,-0.094308584928513,-0.0039292969740927],[0.057870827615261,0.057890579104424,0.10436976701021]],[[0.035369895398617,0.11171086132526,0.010132130235434],[0.011389386840165,0.026646550744772,0.026275891810656],[0.17201659083366,0.087195068597794,0.042906958609819]],[[0.076042599976063,-0.017962479963899,0.014795197173953],[0.0018551852554083,-0.018083659932017,-0.068654090166092],[0.028696984052658,0.085202805697918,0.049683276563883]],[[-0.018245814368129,0.10434734076262,-0.0036887626629323],[0.099497593939304,-0.069889575242996,0.028115345165133],[-0.065297730267048,-0.02293006144464,0.013977490365505]],[[-0.061845544725657,0.061031080782413,0.023556331172585],[-0.085852362215519,0.1145868897438,0.13936622440815],[0.0094690266996622,0.067134529352188,-0.11435680836439]],[[-0.03700727969408,-0.036048889160156,-0.082130759954453],[-0.062182072550058,-0.021350292488933,-0.019137542694807],[-0.070690669119358,-0.090674705803394,-0.048306409269571]],[[-0.057506628334522,0.02573112770915,0.10703198611736],[-0.011625683866441,0.032816432416439,-0.043093837797642],[0.079399526119232,0.062253911048174,0.11147055029869]],[[0.16174504160881,-0.042953711003065,0.067268021404743],[0.13331338763237,0.021078022196889,0.14476774632931],[-0.034699730575085,0.045461289584637,-0.012104480527341]],[[-0.035769529640675,0.11166290193796,0.040617078542709],[-0.069588966667652,-0.035949792712927,-0.076266266405582],[3.9440819818992e-05,0.057419292628765,0.0006794054643251]],[[-0.036542374640703,0.05647661164403,0.081727676093578],[0.0017490865429863,0.029646286740899,0.067796602845192],[0.070296809077263,0.024392204359174,-0.039691433310509]],[[-0.025074664503336,0.20260073244572,-0.02433574385941],[0.094791255891323,-0.07323544472456,0.0080653019249439],[-0.035377737134695,0.038704670965672,-0.049144152551889]],[[-0.0322125852108,-0.011681085452437,-0.066619776189327],[0.012566504999995,-0.06658436357975,0.020065620541573],[0.04978184401989,0.10374063253403,0.077475555241108]],[[-0.019887190312147,-0.1196499094367,-0.20568476617336],[-0.063534319400787,-0.018252650275826,-0.012696331366897],[0.086510173976421,-0.026408087462187,0.11621053516865]],[[-0.00451480736956,0.10328128188848,0.00022771990916226],[0.05618254840374,-0.056614775210619,-0.033337540924549],[-0.014891379512846,-0.013559208251536,0.0028514573350549]],[[-0.010122136212885,-0.13302473723888,-0.11150456219912],[-0.084089577198029,-0.19509083032608,0.077822610735893],[-0.012877458706498,-0.033414468169212,0.13690297305584]],[[0.022640524432063,0.01403421163559,0.010221503674984],[0.0044696596451104,-0.044068846851587,0.0025899584870785],[-0.067558236420155,0.03710426017642,-0.099582858383656]],[[-0.1466973721981,-0.048519734293222,0.027118181809783],[0.018488824367523,0.01465105637908,0.076880566775799],[0.053536627441645,0.018293008208275,-0.052250850945711]],[[0.042582008987665,-0.015793522819877,-0.016123978421092],[0.0042800828814507,0.076993927359581,0.0077560627833009],[0.075473994016647,-0.010460196062922,-0.038481622934341]],[[-0.084656812250614,-0.021987190470099,-0.029312172904611],[0.053302761167288,0.063551299273968,-0.0056652594357729],[0.050410844385624,0.077188976109028,0.028387783095241]],[[0.011458442546427,-0.038683410733938,-0.027272092178464],[-0.042180355638266,0.0139842024073,-0.10357091575861],[-0.040569227188826,-0.21381314098835,0.03440323844552]],[[0.025141660124063,0.16053764522076,-0.099721297621727],[0.033037073910236,0.015173561871052,0.07749355584383],[0.019545843824744,0.12305221706629,-0.0078402729704976]],[[0.037679228931665,0.061489388346672,-0.034328948706388],[0.025333039462566,0.084294028580189,0.050574526190758],[-0.14116524159908,-0.038430701941252,0.073188595473766]],[[-0.036191679537296,0.028616214171052,0.02161131426692],[0.14125999808311,0.014437541365623,-0.055393103510141],[0.12765525281429,-0.067358560860157,0.0052772592753172]],[[-0.055984005331993,0.037966161966324,0.0059873936697841],[-0.02766290679574,-0.087336741387844,0.047532167285681],[-0.037693556398153,-0.049959633499384,0.11987042427063]],[[0.081878155469894,0.033718410879374,-0.06069753319025],[-0.034230053424835,-0.014798696152866,0.14254185557365],[0.052621558308601,-0.1127698123455,-0.098641932010651]],[[-0.063948594033718,0.07286311686039,0.079404644668102],[0.12453892081976,-0.022604648023844,0.022363040596247],[-0.0053619528189301,-0.0479108504951,0.13216508924961]],[[0.057184223085642,0.054344438016415,-0.011272471398115],[-0.010911988094449,0.11986021697521,-0.070793502032757],[0.028936184942722,0.11107663810253,0.022026930004358]],[[-0.0081379022449255,0.042899921536446,-0.051694523543119],[0.078651145100594,0.10638438910246,0.11748933047056],[-0.013839087449014,0.025885311886668,0.035559009760618]],[[0.095685981214046,-0.037619967013597,-0.031598646193743],[-0.015282862819731,-0.078255526721478,-0.011229719035327],[-0.075192950665951,0.097759805619717,-0.014812872745097]],[[-0.033499989658594,0.0044315098784864,-0.11475560814142],[-0.098040126264095,0.010016143321991,-0.0070231333374977],[-0.096383042633533,-0.088153101503849,0.030983692035079]],[[0.004501196090132,0.064932987093925,-0.060859456658363],[-0.095579721033573,0.078567579388618,0.069244794547558],[0.00051680603064597,0.16193088889122,-0.06513736397028]],[[-0.0068915640003979,-0.064478062093258,0.086820870637894],[0.034139614552259,-0.041190471500158,0.0051975934766233],[-0.016943840309978,-0.0037502418272197,0.017535757273436]],[[0.10592848062515,-0.054115440696478,0.090385682880878],[-0.021597096696496,-0.03026345744729,0.12161123752594],[0.042493656277657,-0.16038703918457,0.03692938759923]],[[-0.021186832338572,0.01844204030931,-0.10123840719461],[0.044218078255653,-0.12093665450811,0.068307057023048],[0.0027035113889724,0.11005499213934,0.10964769124985]],[[0.00085127039346844,-0.060843594372272,-0.031824998557568],[-0.054342623800039,-0.047799937427044,0.032787803560495],[0.10041649639606,-0.0096787419170141,0.022358493879437]],[[0.019678497686982,-0.057622518390417,0.0057236887514591],[0.0092096719890833,0.10304172337055,-0.0034989102277905],[0.011104854755104,-0.019887750968337,-0.044370200484991]],[[-0.0047414605505764,-0.10320057719946,-0.041567735373974],[-0.021513614803553,-0.049645744264126,-0.010782093741],[-0.057396907359362,-0.0045245215296745,0.017324460670352]],[[0.0026320829056203,-0.0075092129409313,-0.18577633798122],[-0.044913459569216,0.037829533219337,-0.051443062722683],[0.024776022881269,0.016985312104225,0.0061330492608249]],[[-0.010114204138517,0.055817116051912,-0.003066707868129],[0.086944244801998,-0.0084250243380666,0.0099986810237169],[0.015945892781019,0.070444770157337,-0.07158163189888]],[[0.06619581580162,0.064122669398785,-0.0021026085596532],[0.069167166948318,-0.058160364627838,-0.11814143508673],[0.10235527902842,0.0011358296032995,-0.061693657189608]],[[-0.048126600682735,-0.029571952298284,0.041256293654442],[-0.045530632138252,0.038186553865671,-0.028690734878182],[-0.019293310120702,-0.08537532389164,-0.02674469538033]],[[-0.0019001167966053,-0.010957546532154,-0.024784198030829],[0.10825438052416,-0.027905104681849,-0.052413407713175],[0.091278433799744,-0.027924856171012,-0.079524889588356]],[[0.040264163166285,0.012165711261332,0.079079806804657],[-0.02161961235106,-0.092886157333851,-0.048118006438017],[-0.029904553666711,-0.092206984758377,-0.017745701596141]],[[-0.072248235344887,-0.053289156407118,0.053886093199253],[0.0055357897654176,-0.030373083427548,0.068457677960396],[0.066916011273861,0.066853627562523,0.045941632241011]],[[0.024498084560037,0.033911094069481,-0.20265644788742],[-0.018619297072291,-0.050156496465206,0.0029353140853345],[0.0064481501467526,-0.009994407184422,0.14801156520844]],[[-0.045187421143055,-0.052590843290091,0.052552942186594],[-0.033320233225822,0.021446699276567,0.079309836030006],[-0.014688272960484,0.10395476967096,-0.02183111384511]],[[-0.029595643281937,0.0041580647230148,-0.020639015361667],[-0.024944445118308,0.11809457093477,-0.02197627723217],[0.017266035079956,0.074162222445011,0.048333249986172]],[[-0.011795281432569,0.051548395305872,0.014553654007614],[-0.024961236864328,0.0060587250627577,-0.045216903090477],[-0.027620371431112,0.038833264261484,-0.061409015208483]],[[-0.076418593525887,-0.010877433232963,0.055432878434658],[0.025464318692684,0.11982519179583,-0.049620755016804],[0.03154668956995,-0.17894676327705,-0.063173890113831]],[[0.10044676810503,0.15211714804173,-0.039795093238354],[0.066529549658298,0.010446385480464,0.058171287178993],[0.033657915890217,0.0447749607265,0.087870843708515]],[[0.1572687625885,-0.095701724290848,-0.10803651064634],[-0.042420100420713,-0.14367640018463,-0.038101717829704],[-0.102154918015,-0.064950317144394,-0.064597249031067]],[[0.13666522502899,-0.00023309864627663,-0.040477223694324],[0.018763130530715,0.09837743639946,-0.044989425688982],[0.075712710618973,-0.0040086070075631,-0.19032402336597]],[[0.046213835477829,0.099299110472202,-0.12791894376278],[-0.027089443057775,0.061327040195465,0.1274266242981],[-0.034354582428932,-0.00053200090769678,-0.040531244128942]]],[[[0.035613033920527,-0.023122871294618,0.048701453953981],[-0.072691515088081,0.0056124720722437,-0.014241732656956],[0.097020104527473,-0.005097390152514,0.049891337752342]],[[-0.082468703389168,0.016093265265226,0.020258828997612],[0.03790170699358,-0.034095231443644,0.011075967922807],[-0.084109291434288,-0.00039690497214906,-0.038709469139576]],[[-0.042877566069365,0.0041853948496282,0.027912452816963],[-0.015813980251551,-0.037381794303656,0.004396291449666],[0.027404746040702,-0.021137587726116,0.035364378243685]],[[0.085094600915909,0.036232810467482,0.047667868435383],[0.062047488987446,0.055921971797943,0.060853250324726],[-0.045860003679991,0.046249803155661,-0.1289931088686]],[[-0.02967020496726,0.081528790295124,-0.053637932986021],[0.027843989431858,-0.009133031591773,0.087276257574558],[0.052606895565987,0.039814498275518,-0.019458433613181]],[[-0.0053203515708447,0.055091299116611,0.069142758846283],[0.047517396509647,-0.062371600419283,0.05702681094408],[0.075367145240307,-0.043321006000042,-0.014041987247765]],[[-0.032506264746189,0.064819365739822,0.0086379973217845],[-0.0037652999162674,-0.070660531520844,0.057209104299545],[-0.0027202540077269,0.0644476339221,-0.024534594267607]],[[-0.0030787147115916,0.021742587909102,-0.039314337074757],[-0.040162362158298,-0.052657973021269,0.069640085101128],[0.074567437171936,0.0048457020893693,0.048676174134016]],[[-0.025304326787591,0.077954463660717,0.067959666252136],[0.069272480905056,-0.043185636401176,0.052997197955847],[0.021334964782,0.037358209490776,-0.061520434916019]],[[-0.0058557698503137,0.023273702710867,-0.008391885086894],[0.022411487996578,0.031639564782381,-0.015319329686463],[0.048603851348162,0.012073470279574,0.023697735741735]],[[0.052096240222454,-0.0092565799131989,-0.045192316174507],[0.010745506733656,0.11885652691126,0.036289755254984],[0.013509314507246,-0.087876014411449,0.060401663184166]],[[0.046559829264879,0.045693390071392,-0.01108040753752],[-0.029097566381097,0.0024173704441637,0.021173626184464],[0.056632567197084,0.036776475608349,-0.015511259436607]],[[0.0737614184618,0.02647615596652,0.030207917094231],[0.042723502963781,-0.004616264719516,-0.018769018352032],[0.018048970028758,0.097184419631958,0.032089326530695]],[[0.041987288743258,0.084301382303238,0.029192298650742],[0.019563993439078,0.010841142386198,-0.059762015938759],[0.005771086551249,0.010864178650081,0.038971271365881]],[[-0.037446480244398,0.063222587108612,-0.028972392901778],[0.014774925075471,-0.081904791295528,0.019580150023103],[-0.056895863264799,0.060598388314247,0.0018325253622606]],[[-0.067404553294182,-0.012093680910766,0.062301486730576],[-0.10724020004272,-0.044873308390379,-0.039710175246],[-0.02306336723268,-0.080423273146152,-0.0041653164662421]],[[0.016215067356825,0.1023680716753,0.003065585391596],[-0.045794643461704,-0.052454113960266,0.066145926713943],[0.021712830290198,-0.016714483499527,0.00930857937783]],[[-0.013221521861851,-6.1239719798323e-05,-0.047863613814116],[0.0062667317688465,-0.014681960456073,0.0013771302765235],[-0.083205424249172,-0.08415399491787,-0.0052587552927434]],[[0.065648667514324,-0.036682274192572,-0.019948350265622],[0.039849765598774,0.0051236967556179,-0.043306060135365],[0.013271254487336,0.026040745899081,-0.036052364856005]],[[-0.016957130283117,0.043391384184361,0.057663436979055],[-0.011348445899785,0.010067345574498,0.047403857111931],[0.022908555343747,0.040169388055801,-0.045584630221128]],[[0.0065194265916944,-0.039630398154259,0.048380501568317],[-0.0053045833483338,-0.0047754375264049,-0.030750323086977],[0.04275880381465,-0.0049010682851076,-0.02257608063519]],[[0.055048111826181,0.079164318740368,0.039343848824501],[0.09618902951479,0.032794117927551,0.087445206940174],[0.028833650052547,0.023038594052196,-0.0384122133255]],[[0.089931927621365,-0.02507203258574,-0.015595895238221],[-0.098050132393837,-0.074962213635445,-0.0033648174721748],[0.05098820105195,0.0020299272146076,0.053240433335304]],[[0.050938535481691,0.018083482980728,0.022501768544316],[-0.054996944963932,0.077534385025501,0.038266517221928],[-0.058640141040087,-0.0027772162575275,0.0019865487702191]],[[0.066902324557304,-0.019698038697243,-0.089295335114002],[0.042108774185181,0.055695883929729,0.039748802781105],[-0.021531194448471,0.02825621329248,0.092683888971806]],[[-0.016001196578145,0.01330235414207,0.065187506377697],[-0.0070493267849088,-0.0019446808146313,0.00092964328359812],[0.015189185738564,-0.0090460851788521,0.1447124928236]],[[-0.021593876183033,0.0097112553194165,0.027962168678641],[0.052526872605085,-0.017047453671694,0.07219797372818],[-0.031537290662527,0.021926851943135,0.070875935256481]],[[0.075397245585918,-0.017857378348708,0.029308466240764],[-0.031852226704359,-0.079442776739597,0.037407994270325],[-0.064757704734802,-0.014474656432867,-0.041904151439667]],[[0.0063386913388968,-0.046510521322489,0.033903200179338],[-0.08333620429039,0.054278392344713,-0.023738540709019],[0.10734181106091,-0.019364878535271,0.045191127806902]],[[-0.027977349236608,0.028437312692404,0.0064207720570266],[0.039030317217112,-0.014775765128434,0.0640609562397],[-0.0041996049694717,-0.1229013800621,-0.053313836455345]],[[-0.01652317494154,0.066195018589497,-0.033404987305403],[-0.044073347002268,-0.029543759301305,0.031603086739779],[0.059162180870771,0.028944818302989,-0.009683933109045]],[[-0.0068204710260034,-0.024607127532363,-0.019880140200257],[-0.04541103169322,0.0071262158453465,0.0512710288167],[0.060284648090601,0.034419771283865,-0.038264058530331]],[[0.02635651640594,0.0073537728749216,0.15214432775974],[-0.028099164366722,0.10318456590176,0.0034986194223166],[0.061873469501734,0.095646925270557,0.034513294696808]],[[-0.022349530830979,0.099405206739902,0.029012056067586],[0.03946303203702,-0.041612844914198,0.01489741448313],[0.11218553781509,-0.070074513554573,0.046779729425907]],[[-0.045861519873142,0.026752717792988,-0.044550888240337],[0.01907117664814,-0.056459121406078,0.027426475659013],[-0.030101601034403,0.027094839140773,0.038227684795856]],[[-0.060645915567875,-0.029115408658981,0.019681591540575],[-0.050147633999586,0.0032689007930458,-0.0069506848230958],[0.063459366559982,-0.018312839791179,0.027976064011455]],[[0.036418724805117,-0.025536829605699,0.03637308254838],[-0.0090068997815251,0.01683896407485,0.055094949901104],[-0.042699035257101,0.065674021840096,-0.053359296172857]],[[0.012022200040519,-0.043632928282022,-0.019303679466248],[0.041959095746279,0.085888110101223,0.015530698932707],[-0.028664095327258,0.021946599707007,0.045382626354694]],[[0.048003882169724,-0.034186955541372,-0.04416437074542],[0.029779400676489,0.004823187366128,-0.035352930426598],[-0.040312059223652,-0.037528742104769,-0.04348436743021]],[[-0.05848940089345,0.10127425938845,0.046981785446405],[-0.0031197092030197,0.003138353349641,-0.00090784073108807],[0.015884326770902,0.21327497065067,0.064172931015491]],[[-0.009719735942781,0.019955532625318,0.030733434483409],[-0.059550050646067,0.011829062364995,0.072129756212234],[0.010577480308712,0.058239605277777,-0.063679493963718]],[[0.057104419916868,0.12111255526543,0.11340176314116],[0.0043201697990298,0.0093134706839919,0.057227708399296],[0.030874093994498,0.024658769369125,0.018453681841493]],[[0.048920296132565,-0.024945141747594,-0.011887243948877],[-0.037586592137814,0.049815788865089,0.022889548912644],[0.082631580531597,-0.10096061229706,0.011231527663767]],[[0.035123556852341,-0.042078454047441,0.090578824281693],[0.10740545392036,-0.027764493599534,-0.022726710885763],[0.0032908082939684,-0.093094676733017,-0.043934442102909]],[[0.068418219685555,-0.02101487852633,0.055567819625139],[0.023639483377337,0.041728042066097,-0.078526131808758],[0.082297377288342,0.027771824970841,0.019097361713648]],[[0.0094430707395077,0.10462287068367,-0.014496000483632],[-0.012182716280222,-0.11035116016865,0.020457843318582],[0.024025542661548,0.055766571313143,0.077192381024361]],[[0.023918719962239,-0.00024190876865759,-0.020248888060451],[0.082539245486259,-0.022308766841888,-0.039598673582077],[-0.041678544133902,0.019683215767145,-0.028147852048278]],[[0.0315250903368,-0.04416623711586,0.0020830046851188],[-0.025239743292332,-0.042966332286596,-0.10370442271233],[-0.00010939784988295,-0.010218225419521,-0.065820604562759]],[[0.05761456489563,-0.028308382257819,-0.077203065156937],[-0.11278495937586,0.018860165029764,-0.029200613498688],[0.0060189999639988,-0.019027499482036,-0.0031852899119258]],[[0.039226870983839,0.032672792673111,0.039937898516655],[-0.082291878759861,0.00091179471928626,0.045336674898863],[-0.032061446458101,-0.023418886587024,0.0027449042536318]],[[-0.01113192923367,0.042048405855894,-0.066264688968658],[0.016642710193992,-0.0021914928220212,-0.026789128780365],[-0.0037484846543521,0.027200376614928,-0.0021213572472334]],[[-0.0003810643684119,0.087333999574184,0.04607642069459],[0.027689605951309,0.03095405548811,-0.015563381835818],[-0.017759365960956,-3.1660605600337e-05,-0.038532432168722]],[[-0.0077795679681003,-0.038705673068762,-0.0075077712535858],[-0.040778696537018,0.085399456322193,-0.0004142377874814],[0.041854217648506,0.010333114303648,-0.0090063475072384]],[[-0.046611595898867,0.041496586054564,0.013792794197798],[0.10029374063015,-0.0077884783968329,0.038950812071562],[0.095760591328144,0.085143432021141,0.038809400051832]],[[0.037034474313259,-0.047098319977522,0.02207419835031],[0.098680876195431,-0.055962163954973,0.023726673796773],[0.044022615998983,0.012944722548127,-0.014590059407055]],[[-0.074350476264954,0.11188738793135,-0.037893272936344],[0.089261397719383,-0.11511597782373,-0.018283825367689],[0.035121358931065,0.03834593296051,0.03899335488677]],[[0.13937699794769,0.0024355142377317,0.074063770473003],[-0.077656425535679,0.074757844209671,-0.018634082749486],[0.12138566374779,-0.072735249996185,0.042924553155899]],[[0.033040974289179,0.02402557618916,-0.013922000303864],[0.036075316369534,0.012983353808522,-0.090982049703598],[-0.0019320182036608,-0.034589670598507,-0.0078401835635304]],[[0.002279601758346,0.055045735090971,0.016289968043566],[0.070383742451668,0.020593116059899,0.081539772450924],[0.074284598231316,0.079827077686787,-0.033151779323816]],[[0.0037125160451978,0.00021557172294706,0.0050710742361844],[-0.075818963348866,0.029265087097883,-3.4160424547736e-05],[0.010804506018758,0.050999131053686,0.027280712500215]],[[0.014494627714157,0.039562355726957,0.063243329524994],[-0.065356276929379,-0.012701756320894,-0.055055677890778],[-0.0065903295762837,0.0010919575579464,0.038756772875786]],[[-0.0069394945167005,-0.11959449201822,-0.0084437066689134],[-0.011679447256029,0.051697108894587,-0.013894378207624],[-0.014369249343872,-0.031058885157108,-0.11312329024076]],[[0.027473019436002,-0.010163356550038,0.007546822540462],[0.016781741753221,-0.030927866697311,0.028554206714034],[-0.018613234162331,-0.0048818592913449,-0.052191592752934]],[[0.076080642640591,0.097046740353107,0.10142651945353],[-0.0052309725433588,-0.027445748448372,-0.016106219962239],[0.03693013265729,0.050963491201401,-0.039181392639875]],[[0.0079493504017591,0.0072815460152924,-0.099677354097366],[-0.030951630324125,-0.056268077343702,0.0014913642080501],[-0.0065475264564157,-0.045668642967939,-0.02152762003243]],[[0.061880741268396,-0.015716126188636,-0.049358531832695],[-0.072765357792377,0.05847480520606,0.088207416236401],[-0.0023424231912941,0.017109809443355,-0.016680167987943]],[[0.032447315752506,0.1248519346118,0.03824657946825],[0.029675932601094,0.016955440863967,-0.051293723285198],[0.031088657677174,-0.02207950502634,-0.020401688292623]],[[0.025055462494493,-0.011052448302507,-0.0084474524483085],[0.14042976498604,-0.0039236028678715,0.04722660779953],[-0.023231552913785,0.059391994029284,-0.018817344680429]],[[-0.075452081859112,0.017325757071376,-0.055187907069921],[0.036402400583029,0.047648146748543,0.086919687688351],[-0.024599255993962,0.089967131614685,-0.051161233335733]],[[-0.017845794558525,0.090032055974007,0.021278506144881],[-0.033953119069338,0.020477037876844,-0.012910312972963],[0.049614191055298,-0.033247407525778,0.035953368991613]],[[-0.030078997835517,0.0031069710385054,0.0077940034680068],[0.07173065841198,0.0245994143188,0.056376274675131],[0.042019087821245,0.059472594410181,0.052536610513926]],[[-0.074307717382908,-0.053840007632971,-0.028364676982164],[0.02775133959949,-0.075484909117222,0.019388243556023],[0.036139860749245,0.04906302690506,-0.058769136667252]],[[0.017488883808255,-0.076449565589428,0.030555445700884],[-0.062394920736551,-0.070238173007965,-0.044178683310747],[0.042103111743927,-0.0077223442494869,0.0017822360387072]],[[-0.0070232744328678,0.019010001793504,0.044854063540697],[0.071084342896938,-0.059750534594059,-0.043953746557236],[1.9369814253878e-05,0.012620512396097,0.037932731211185]],[[0.038317237049341,0.012650939635932,-0.032440476119518],[-0.0075532901100814,-0.010607847012579,-0.023727474734187],[0.074252359569073,0.041938666254282,0.038798853754997]],[[-0.0039429171010852,0.080524802207947,-0.0010381034808233],[0.0039231711998582,0.024919690564275,0.048812001943588],[-0.086428970098495,0.046505179256201,0.06292486935854]],[[0.061144020408392,-0.045102953910828,0.042318534106016],[-0.020671973004937,0.01718083769083,0.022123519331217],[-0.022829053923488,-0.025643769651651,-0.053872659802437]],[[0.094654612243176,0.018661666661501,0.03340021520853],[0.097785256803036,-0.077895417809486,0.014946662820876],[0.041099663823843,-0.0089738480746746,0.045238386839628]],[[0.044014930725098,-0.046735599637032,0.070271722972393],[-0.073323555290699,-0.031767044216394,-0.015654638409615],[-0.07744313031435,-0.016077749431133,-0.0051550227217376]],[[-0.05240947380662,0.0047586150467396,-0.048979755491018],[0.027961069718003,-0.0580641515553,-0.058082971721888],[-0.030191499739885,0.028027242049575,-0.12362036854029]],[[-0.04661025851965,0.060037143528461,-0.052138071507215],[-0.008338994346559,-0.020746394991875,-0.046512544155121],[-0.056779813021421,0.065215639770031,0.0062649711035192]],[[-0.019856600090861,0.054875295609236,0.039792213588953],[0.054240144789219,0.0038557066582143,-0.0044198841787875],[0.026588540524244,0.0075963754206896,0.014322300441563]],[[-0.0012340904213488,-0.0080627948045731,-0.080467894673347],[0.12818920612335,-0.058916825801134,0.06809064000845],[-0.031843867152929,0.086610957980156,-0.094984978437424]],[[-0.032165717333555,0.063568644225597,0.039208468049765],[0.011721165850759,0.024867383763194,0.022454556077719],[-0.018063969910145,0.086246952414513,0.020095886662602]],[[0.078681714832783,-0.049193825572729,0.026188956573606],[-0.016572682186961,0.077454477548599,-0.024988392367959],[-0.024356255307794,0.0098875751718879,-0.012691427022219]],[[0.0068309386260808,-0.014351569116116,-0.061618514358997],[0.019789315760136,-0.0016250832704827,-0.0049753137864172],[0.010197449475527,-0.0012403615983203,-0.041386343538761]],[[0.055996645241976,0.061651043593884,-0.045030977576971],[0.023123929277062,0.011837851256132,0.032466381788254],[0.083207815885544,0.14802365005016,0.016876867040992]],[[-0.070372588932514,-0.057101145386696,-0.037893328815699],[0.0090662306174636,-0.060300037264824,-0.016082497313619],[0.055807147175074,-0.040135078132153,0.042481128126383]],[[0.070748582482338,0.0070695425383747,-0.075493261218071],[0.077380880713463,-0.029643090441823,0.093101806938648],[0.0087099373340607,0.033013842999935,0.002067044377327]],[[-0.014081149362028,0.073370754718781,-0.0035572573542595],[-0.014278002083302,0.066810213029385,0.039417926222086],[-0.055943254381418,0.0095352726057172,0.041316092014313]],[[-0.01856024004519,0.0080387126654387,0.046392690390348],[-0.038556784391403,0.10476500540972,0.069644100964069],[-0.0052422462031245,0.01152385212481,0.027199618518353]],[[0.026899522170424,-0.06577255576849,-0.053735051304102],[-0.06652308255434,0.019188577309251,0.025397282093763],[-0.081539958715439,-0.010636531747878,-0.12662081420422]],[[-0.024068638682365,0.024658497422934,-0.11055735498667],[-0.022080441936851,-0.049235973507166,-0.030235569924116],[0.025951730087399,0.013562806881964,-0.0045021749101579]],[[-0.021695375442505,0.032646380364895,-0.0025379415601492],[0.070410564541817,-0.013411463238299,0.028833448886871],[-0.013670503161848,-0.07722695171833,-0.01332644931972]],[[-0.009309571236372,-0.0569170974195,0.046807527542114],[-0.060628887265921,-0.024483298882842,-0.035146921873093],[0.033101383596659,0.064634792506695,-0.026171240955591]],[[0.082139439880848,0.09033264964819,0.038909528404474],[-0.072420038282871,0.012025772593915,-0.028730507940054],[0.027126345783472,-0.021972842514515,0.013608128763735]],[[-0.015575085766613,-0.0067451451905072,0.056799292564392],[0.014160675927997,0.067236818373203,0.017244122922421],[-0.076329156756401,-0.086276277899742,0.015045456588268]],[[-0.011542078107595,0.051469102501869,0.034490928053856],[0.013499310240149,0.0088717984035611,0.080455772578716],[0.054731145501137,0.057028658688068,0.10216391086578]],[[0.0081192208454013,-0.078807480633259,-0.00032127549638972],[0.0051199672743678,0.021930875256658,0.092455014586449],[-0.011510201729834,0.020552035421133,0.042430706322193]],[[-0.019395297393203,0.01876350864768,-0.049728248268366],[0.066636629402637,0.035180926322937,0.043148640543222],[0.0002296788879903,0.065695896744728,-0.038577061146498]],[[0.0089767994359136,-0.021871941164136,-0.016506228595972],[0.083655141294003,-0.030615635216236,0.020438883453608],[-0.041578765958548,-0.053828321397305,-0.043527815490961]],[[0.057728998363018,0.0083202878013253,-0.070204980671406],[-0.060470562428236,0.035329408943653,0.015060563571751],[0.094876900315285,-0.040021572262049,-0.039954904466867]],[[-0.0021453362423927,0.10533630102873,0.031550344079733],[0.027125898748636,0.034703250974417,0.056558925658464],[0.02682676166296,-0.026579732075334,-0.027304038405418]],[[-0.031289432197809,0.0081560993567109,-0.0020870370790362],[-0.053471498191357,-0.03604057431221,-0.038911584764719],[0.024377664551139,-0.00081791641423479,-0.10936730355024]],[[-0.013786521740258,0.04111372679472,0.054063726216555],[0.096344880759716,0.034746017307043,0.098813004791737],[-0.0049671144224703,0.10843642055988,0.019061684608459]],[[0.040395002812147,0.063120327889919,0.038200572133064],[-0.047628056257963,-0.042501758784056,0.073231995105743],[0.03996903449297,0.087111704051495,0.022338427603245]],[[0.0028030851390213,0.039935167878866,-0.0080307880416512],[-0.018823659047484,0.014401437714696,-0.010158674791455],[0.080697782337666,-0.0062735327519476,0.049879584461451]],[[0.055725306272507,0.0014775688759983,0.079242892563343],[-0.036562509834766,0.068419694900513,-0.030577555298805],[-0.011577571742237,-0.049389388412237,-0.023779813200235]],[[0.037971198558807,-0.0055726440623403,-0.062614627182484],[-0.0043882713653147,-0.031825125217438,-0.016281245276332],[0.044401459395885,0.001898838672787,0.056816253811121]],[[0.050751861184835,0.016662074252963,0.12655673921108],[0.037048786878586,-0.01668736897409,-0.030180351808667],[0.13400226831436,0.071519657969475,-0.011640484444797]],[[0.044389005750418,0.025317708030343,0.0046507325023413],[-0.038826502859592,0.020766032859683,-0.007402419578284],[-0.013892946764827,-0.047824144363403,0.0052574137225747]],[[-0.064737901091576,0.01139407325536,-0.088394597172737],[-0.053853984922171,-0.014680410735309,-0.031194601207972],[-0.07683040201664,0.05574744567275,-0.15076200664043]],[[-0.02781075052917,0.029976401478052,-0.062776707112789],[0.019391477108002,-0.087702855467796,0.02718367613852],[0.017141466960311,0.052304409444332,-0.024560585618019]],[[-0.069891639053822,-0.038429487496614,-0.055108465254307],[0.014971663244069,-0.031008018180728,-0.014212754555047],[0.030087847262621,0.018919894471765,0.045674674212933]],[[-0.037066385149956,-0.0192243270576,-0.063901215791702],[-0.004830616991967,0.017261756584048,0.041756026446819],[0.0047674952074885,-0.0078556770458817,-0.083173722028732]],[[-0.039929699152708,0.081619009375572,-0.036309752613306],[-0.065379038453102,-0.084733508527279,0.0082852896302938],[-0.019724192097783,0.0080079901963472,-0.07016932964325]],[[0.016454096883535,0.07853539288044,0.062446743249893],[-0.02674214169383,0.097409553825855,-0.032486706972122],[0.040734075009823,0.059291668236256,-0.0099370824173093]],[[-0.035771101713181,-0.019973289221525,-0.0034298289101571],[-0.0047860690392554,-0.049710053950548,-0.020637067034841],[0.01504183281213,0.0057238526642323,0.020019261166453]],[[-0.016581231728196,-0.011551503092051,-0.077876701951027],[0.045533020049334,0.092097923159599,0.032223455607891],[-0.043701197952032,0.025561630725861,-0.019524531438947]],[[0.016432832926512,-0.010552993044257,0.058160342276096],[0.071450777351856,0.03669747710228,0.029962612316012],[0.012450920417905,0.00016819997108541,0.042233675718307]],[[-0.088937997817993,0.042258396744728,-0.057943563908339],[0.029686570167542,0.023336129263043,-0.027538016438484],[-0.032724738121033,0.09260543435812,-0.031933106482029]],[[0.00021003777510487,0.022246871143579,0.050946142524481],[0.025482129305601,-0.070957832038403,-0.012282004579902],[-0.042495880275965,0.060510218143463,0.0060760397464037]],[[0.013596905395389,-0.0053281225264072,0.033687550574541],[-0.030563587322831,0.050932630896568,-0.11227179318666],[0.0030917432159185,-0.034462086856365,0.0047316923737526]],[[-0.045228857547045,-0.045766487717628,-0.041680227965117],[0.019222466275096,-0.013738150708377,0.062576949596405],[0.053256776183844,0.05781976506114,-0.023266017436981]],[[0.0002935350057669,0.056225407868624,0.022934813052416],[0.042845241725445,0.050643227994442,-0.014945501461625],[0.055667392909527,0.12978057563305,0.047671161592007]],[[0.002184962388128,-0.020217573270202,0.049373719841242],[-0.020394278690219,-0.0067419563420117,-0.06311547011137],[0.016930753365159,0.059622373431921,0.08713772892952]],[[-0.037351567298174,0.078170634806156,-0.067786552011967],[0.13160280883312,0.021053370088339,0.012377259321511],[0.02028395421803,0.027562035247684,0.04987046122551]],[[-0.058070007711649,0.068150885403156,0.05101165547967],[0.018913850188255,-0.047753192484379,0.016980508342385],[-0.027242494747043,-0.036568455398083,-0.11818427592516]]],[[[0.013324774801731,-0.0063061504624784,0.052045430988073],[0.042288322001696,0.074604906141758,0.063091032207012],[-0.040893346071243,-0.030378084629774,-0.07954028993845]],[[-0.03226313367486,0.0058054095134139,0.027586407959461],[0.066512122750282,0.019683182239532,0.034488063305616],[0.020944407209754,0.068157233297825,-0.037817310541868]],[[0.010458150878549,-0.051206488162279,0.015106399543583],[-0.017866421490908,-0.03877255320549,-0.068974308669567],[-0.061073336750269,-0.056063190102577,0.0049491846002638]],[[-0.1004194766283,0.042760156095028,-0.0094741778448224],[-0.075541228055954,-0.081578239798546,0.019123334437609],[0.0071306996978819,-0.032480295747519,0.042050678282976]],[[-0.0016386226052418,-0.092237234115601,0.034014970064163],[-0.0093210786581039,-0.061367969959974,-0.018397804349661],[0.018507467582822,0.0035543015692383,0.033381972461939]],[[-0.00072060711681843,-0.028295921161771,-0.028305768966675],[0.067980639636517,-0.06726335734129,0.014937731437385],[-0.05417600646615,-0.076413422822952,0.054775103926659]],[[-0.0047282595187426,0.031119352206588,0.01327823381871],[0.023773679509759,0.0049743577837944,0.0049069849774241],[0.015820421278477,0.020262286067009,0.053582709282637]],[[-0.063343144953251,-0.022085359320045,-0.057633295655251],[0.10024831444025,0.044387374073267,-0.021638412028551],[-0.047350324690342,-0.0076116747222841,-0.067371658980846]],[[-0.020721416920424,-0.055119965225458,-0.02637055143714],[-0.018074387684464,-0.02644070237875,0.053767655044794],[-0.0033196178264916,0.032031342387199,-0.103151910007]],[[-0.054968953132629,0.003455420024693,-0.054320510476828],[0.070926398038864,0.037931896746159,0.0016112748999149],[-0.033281397074461,0.0070035802200437,0.055113255977631]],[[0.00056464970111847,-0.014486965723336,0.039146147668362],[-0.057012382894754,0.017446007579565,-0.002445321297273],[-0.03343503549695,0.029088694602251,-0.070713587105274]],[[-0.013570420444012,-0.011352363973856,-0.064345896244049],[-0.0039744698442519,0.020710023120046,0.039087232202291],[-0.036794353276491,-0.096511639654636,-0.016395952552557]],[[-0.037785403430462,-0.012235588394105,0.15154433250427],[0.089529603719711,-0.040072832256556,0.069411665201187],[-0.036740742623806,-0.021836329251528,-0.019759984686971]],[[0.066607117652893,-0.025305552408099,-0.018683083355427],[0.06577717512846,-0.020440336316824,0.01239191647619],[-0.053478755056858,0.013355427421629,0.031955398619175]],[[-0.026105940341949,-0.024767354130745,0.029796045273542],[-0.0082173431292176,-0.030389275401831,0.0034971535205841],[-0.0051690670661628,-0.017687464132905,0.001795676886104]],[[-0.094157561659813,0.045220017433167,0.027716539800167],[0.041833225637674,-0.03982500359416,0.0079406620934606],[-0.0047020185738802,-0.084248557686806,0.062424328178167]],[[-0.056580379605293,0.057969782501459,-0.0059707993641496],[0.014483907260001,-0.054962795227766,0.016102056950331],[-0.058795563876629,0.015827341005206,0.03084728308022]],[[-0.047740083187819,0.10263381153345,-0.043979480862617],[-0.023347122594714,0.027337869629264,-0.0041423356160522],[0.042056277394295,0.090707369148731,-0.056666165590286]],[[-0.032235667109489,0.057433031499386,0.0077359895221889],[0.095351174473763,0.067662559449673,-0.018027069047093],[-0.053374033421278,-0.015931626781821,-0.053740400820971]],[[0.027811681851745,-0.0092285862192512,-0.022431371733546],[-0.086911536753178,0.08351919054985,0.03716741129756],[-0.061742380261421,0.018518818542361,-0.016380140557885]],[[-0.0043116249144077,0.032309532165527,-0.017453426495194],[0.040212664753199,0.043507285416126,0.064093358814716],[0.046450417488813,-0.029964046552777,-0.041598949581385]],[[0.011294912546873,0.015437032096088,0.056668926030397],[0.074355103075504,0.069549582898617,0.061749760061502],[0.046855207532644,-0.036397956311703,-0.018047673627734]],[[0.019657708704472,0.041313286870718,-0.011552951298654],[-0.014887400902808,0.05750784650445,0.033781323581934],[-0.017191756516695,-0.015118103474379,-0.0062157739885151]],[[0.0011693530250341,-0.025465806946158,-0.0034187845885754],[0.013930350542068,-0.068196125328541,-0.049156278371811],[0.12347737699747,-0.043078243732452,-0.056199345737696]],[[-0.04641080647707,-0.03559360280633,-0.042430136352777],[0.002830485580489,-0.029215293005109,-0.0066944430582225],[0.04829740151763,0.036639917641878,-0.074792616069317]],[[-0.01244371663779,0.015914155170321,-0.024165742099285],[-0.063139945268631,0.031793393194675,0.060461550951004],[-0.082195550203323,0.033680640161037,0.038004625588655]],[[0.038677722215652,-0.0037542791105807,-0.0040229125879705],[0.029901023954153,0.065798446536064,0.028880188241601],[-0.0070936065167189,0.0065781818702817,0.028718827292323]],[[0.015936953946948,0.038422618061304,0.071472726762295],[0.043699894100428,-0.048689503222704,-0.032186534255743],[-0.048711780458689,0.058749582618475,0.025650026276708]],[[-0.02347269654274,-0.030633378773928,0.016176050528884],[-0.047344662249088,-0.062422063201666,0.041083462536335],[-0.011284688487649,-0.03565214574337,0.12157521396875]],[[0.029113933444023,0.03312124311924,-0.031443350017071],[-0.013843852095306,-0.023361183702946,-0.085269309580326],[0.062768876552582,-0.074328951537609,0.0052779316902161]],[[-0.0083744889125228,0.074232637882233,0.077523022890091],[-0.022175578400493,0.00043520695180632,-0.019670028239489],[-0.00017464383563492,0.073427967727184,0.0099411746487021]],[[0.012465866282582,0.016418969258666,0.034052807837725],[0.073166109621525,-0.034408573061228,-0.013357227668166],[-0.035980168730021,0.0093610445037484,0.01127681042999]],[[0.006905188318342,-0.032151095569134,0.00040501763578504],[0.0081604048609734,-0.05904433131218,-0.00046313210623339],[0.029972534626722,-0.062009576708078,0.027088690549135]],[[-0.013138690032065,-0.019435703754425,-0.0084575125947595],[-0.018183210864663,-0.058067098259926,0.025610337033868],[0.005856575910002,-0.0080609153956175,0.0026939613744617]],[[-0.052238810807467,-0.012314428575337,0.055530987679958],[0.049652215093374,0.0926453769207,-0.022052707150578],[-0.0034924489445984,0.033010728657246,0.012559531256557]],[[-0.037236999720335,-0.0029611382633448,0.024070840328932],[0.030787020921707,0.00023928555310704,0.013447849079967],[0.15238061547279,0.01896570622921,-0.031964514404535]],[[0.03179282695055,0.022301154211164,0.061628211289644],[-0.0043908548541367,0.070980653166771,0.0088459569960833],[0.029261482879519,-0.041517037898302,0.032354202121496]],[[0.026257410645485,0.03427566960454,0.0018286117119715],[-0.010871675796807,-0.0073782452382147,-0.066001534461975],[0.0042338450439274,-0.034419175237417,0.021421743556857]],[[0.029978582635522,0.010684944689274,-0.021245507523417],[-0.020094495266676,0.071183644235134,0.029556797817349],[0.029351847246289,-0.023594813421369,-0.076108552515507]],[[-0.067798115313053,-0.0074943001382053,-0.035020906478167],[0.0060913353227079,0.024683624505997,0.048656184226274],[-0.084369607269764,0.010722226463258,-0.0004246773023624]],[[-0.073656357824802,0.0078824972733855,0.020475585013628],[0.028414195403457,0.031903181225061,0.050741817802191],[0.036473505198956,-0.027949780225754,-0.015913270413876]],[[0.015720020979643,-0.089441023766994,0.021638389676809],[-0.057506676763296,-0.052958272397518,0.065886087715626],[0.044632121920586,-0.027969988062978,0.0092201018705964]],[[0.037460420280695,-0.047127321362495,0.067322842776775],[-0.037824187427759,0.027551440522075,0.053940620273352],[0.061696756631136,-0.046060353517532,-0.03171930834651]],[[-0.019232818856835,-0.10638987272978,-0.020824244245887],[-0.037932187318802,-0.051876697689295,-0.017591711133718],[-0.026977010071278,-0.075304582715034,-0.055419232696295]],[[-0.025252571329474,-0.042380783706903,0.025748061016202],[-0.045957062393427,0.08959236741066,-0.014908428303897],[-0.0030982887838036,0.064200282096863,-0.057946357876062]],[[-0.039507694542408,-0.027995387092233,-0.010181820951402],[0.0038480663206428,0.0058407257311046,0.02908687479794],[0.0088326120749116,0.053254291415215,0.049064464867115]],[[-0.092470169067383,-0.071230612695217,0.038929287344217],[-0.033111412078142,0.051053915172815,0.0059712375514209],[0.075215846300125,0.01555579341948,-0.0041447295807302]],[[0.026525357738137,0.0080194100737572,-0.046761590987444],[0.03023356385529,-0.02329040132463,-0.052007157355547],[-0.036294527351856,0.024765074253082,0.01855000667274]],[[0.032370775938034,-0.010917915962636,-0.020920816808939],[0.039255477488041,0.031415782868862,-0.028854357078671],[0.026237962767482,0.019997434690595,-0.013196548447013]],[[0.0025721355341375,-0.04649705067277,0.045606475323439],[0.046386681497097,0.0028495995793492,-0.0041803400963545],[-0.098744563758373,-0.033264175057411,-0.020032983273268]],[[0.016470652073622,-0.02338151447475,0.039046823978424],[0.031764972954988,-0.025501577183604,-0.00168044003658],[-0.0033783500548452,0.022378664463758,-0.013583527877927]],[[-0.045641448348761,-0.027147544547915,0.0033938456326723],[0.023362103849649,-0.011222781613469,-0.056690622121096],[-0.0021155069116503,0.031626272946596,0.034654688090086]],[[-0.037156410515308,-0.014996161684394,-0.04941313713789],[0.0021423944272101,-0.019386446103454,0.010183608159423],[-0.042569559067488,0.015879526734352,-0.011755454353988]],[[0.015919329598546,-0.035954609513283,0.032524507492781],[0.025117950513959,-0.057874623686075,0.031921193003654],[0.052810732275248,0.034798044711351,0.029705431312323]],[[0.015373195521533,-0.053226463496685,0.01924947462976],[-0.044468261301517,0.010785659775138,0.05867213010788],[-0.028794026002288,-0.029056904837489,-0.0085398145020008]],[[0.012512275949121,0.059980627149343,-0.0017927397275344],[-0.025679178535938,-0.016602888703346,0.0060079353861511],[0.065466940402985,-0.095213733613491,0.035005539655685]],[[-0.010430403053761,-0.018761424347758,-0.016327049583197],[0.070123963057995,0.043824829161167,0.027591571211815],[-0.0056090778671205,0.035099305212498,-0.045190781354904]],[[0.048616211861372,0.025596410036087,-0.06088400259614],[0.053784396499395,-0.016647275537252,-0.0095942886546254],[-0.078065551817417,0.011865142732859,-0.0027110276278108]],[[-0.054581832140684,-0.021685771644115,-0.036105621606112],[-0.03466185182333,-0.0012554916320369,0.067578434944153],[-0.023612963035703,0.036605957895517,0.073260806500912]],[[0.033827766776085,0.057064455002546,0.052173156291246],[-0.037772104144096,0.038093492388725,0.071699239313602],[-0.072572626173496,-0.033158287405968,-0.00057821610243991]],[[0.040103428065777,-0.014151606708765,-0.022396560758352],[0.004619428422302,-0.017212385311723,0.027918400242925],[0.0054982043802738,-0.012822734192014,0.029213335365057]],[[0.019538408145308,-0.031008893623948,-0.037659782916307],[0.003745716996491,0.062198612838984,-0.0071092573925853],[0.0040557226166129,0.02025899477303,-0.057633828371763]],[[0.047578513622284,0.018488788977265,-0.062011227011681],[-0.082931064069271,-0.013211851008236,0.052985392510891],[-0.013723390176892,0.037179104983807,-0.058095689862967]],[[-0.018364513292909,-0.023346051573753,0.043462079018354],[0.023210098966956,-0.043146401643753,0.0086346631869674],[-0.0088173365220428,0.025502402335405,-0.048810921609402]],[[-0.0035314655397087,-0.07769089192152,0.017122590914369],[0.02521943487227,-0.071258150041103,-0.0068860538303852],[-0.0055018435232341,0.03597754240036,0.061172686517239]],[[0.019208382815123,-0.0073584434576333,-0.053260292857885],[0.041920848190784,0.0041148043237627,0.0020521588157862],[0.011908448301256,-0.0093565871939063,-0.074585109949112]],[[-0.014603233896196,0.052354533225298,0.063495248556137],[-0.0037105376832187,0.0043288860470057,-0.039916150271893],[0.030856087803841,-0.028704598546028,0.10237743705511]],[[0.031434006989002,-0.03733142837882,0.013337855227292],[0.092136539518833,-0.045636426657438,0.0070106661878526],[-0.033169813454151,-0.01069634500891,-0.027035722509027]],[[-0.052615061402321,0.039371345192194,0.040217913687229],[0.040043499320745,0.0036294749006629,0.012108068913221],[0.014229232445359,0.029619598761201,0.040506314486265]],[[0.019247364252806,-0.031938966363668,0.032354697585106],[0.006645361892879,0.022186821326613,0.0097210220992565],[-0.029887270182371,0.10343940556049,0.0017656337004155]],[[0.036184020340443,0.025357406586409,-0.090043120086193],[-0.064672999083996,-0.060223050415516,-0.054425429552794],[-0.00033914431696758,0.0027356839273125,0.0033743022941053]],[[0.013550949282944,0.032453678548336,0.034359633922577],[0.074574448168278,0.0020369105041027,-0.042915321886539],[-0.042481061071157,0.0034466274082661,0.015397785231471]],[[0.0088599994778633,0.019070932641625,-0.0070104668848217],[0.0072142346762121,-0.028657682240009,0.045746773481369],[0.088663190603256,-0.0077279144898057,-0.03835055232048]],[[0.051493231207132,0.044477928429842,-0.007477018982172],[-0.011618511751294,-0.025371076539159,-0.032476782798767],[-0.026091035455465,-0.039552252739668,-0.00091299862833694]],[[-0.020201509818435,-0.0771454423666,-0.068073078989983],[-0.024169323965907,-0.03293389081955,0.0190305467695],[-0.023034416139126,-0.056920487433672,-0.039944868534803]],[[0.038247186690569,0.0098834885284305,-0.054548487067223],[-0.023273756727576,-0.069971352815628,-0.059809148311615],[-0.06468503177166,0.024146990850568,0.028756711632013]],[[0.087317079305649,-0.013331862166524,0.030112294480205],[-0.06143107265234,0.063922382891178,0.069859214127064],[0.040607456117868,0.023648837581277,-0.035439163446426]],[[0.00069375656312332,0.0062383101321757,-0.024461219087243],[-0.0057301679626107,0.014409656636417,0.070709064602852],[-0.078391931951046,-0.027196036651731,0.0053354022093117]],[[0.027931977063417,-0.021219024434686,-0.051075395196676],[-0.040348883718252,-0.11042704433203,-0.0079747019335628],[-0.050083111971617,0.0092899901792407,-0.03432209789753]],[[0.035438273102045,0.031213574111462,0.056903969496489],[0.011837140657008,0.038362015038729,0.038369279354811],[-0.018507055938244,0.016586380079389,-0.00027057266561314]],[[0.067328944802284,-0.082207791507244,-0.039970815181732],[0.012421521358192,-0.056783001869917,-0.034032788127661],[0.039209190756083,-0.014143980108202,0.0091270385310054]],[[-0.043786402791739,0.0063598193228245,0.035000927746296],[-0.013372598215938,0.029994821175933,-0.037045538425446],[0.11441319435835,0.079285226762295,-0.080663599073887]],[[0.066538289189339,0.057937368750572,0.027425719425082],[0.030485784634948,-0.015754083171487,-0.022285433486104],[0.031448863446712,-0.031307026743889,-0.013365968130529]],[[-0.049757536500692,-0.02924232557416,-0.0051330840215087],[0.02766427770257,-0.049782004207373,0.02336085960269],[0.0043144673109055,0.024987882003188,-0.021014677360654]],[[-0.031814858317375,0.024084266275167,0.036073766648769],[-0.027718299999833,-0.021161096170545,-0.0620002374053],[-0.018921088427305,-0.034215670078993,0.024385886266828]],[[0.017962453886867,0.11403489112854,-0.036921285092831],[0.024400107562542,0.019138995558023,-0.028469774872065],[-0.01798146776855,-0.067509017884731,-0.027585864067078]],[[0.05318970233202,-0.0088073341175914,-0.038748178631067],[0.032588128000498,0.022524761036038,-0.043708626180887],[0.0012784758582711,0.026278248056769,0.042345210909843]],[[-0.037428297102451,-0.063841097056866,0.028379261493683],[0.071033343672752,0.014610632322729,-0.05427473410964],[-0.027269786223769,-0.03117429278791,0.048309545964003]],[[-0.031505800783634,-0.034647714346647,0.02751437202096],[0.065363243222237,0.036001570522785,0.037612643092871],[0.038164880126715,0.0021903866436332,0.023465698584914]],[[-0.023920629173517,0.036162223666906,-0.052995637059212],[-0.031992271542549,0.063919462263584,0.11451075971127],[0.061045572161674,-0.059839446097612,-0.11821066588163]],[[-0.049167558550835,0.025330372154713,0.025220330804586],[-0.028257882222533,0.058103818446398,-0.046068053692579],[-0.019366333261132,0.05982518568635,0.0013152771862224]],[[0.012828208506107,0.026316460222006,0.018115440383554],[-0.035649240016937,-0.034081909805536,-0.030435219407082],[0.021694054827094,-0.00063695100834593,-0.01253851223737]],[[-0.074566498398781,-0.029624098911881,0.017903378233314],[-0.0073376046493649,-0.030190911144018,-0.010762259364128],[0.071523331105709,-0.038271237164736,0.069250650703907]],[[0.068411074578762,-0.050326887518167,-0.011772342957556],[-0.055291838943958,-0.056881066411734,0.014128630049527],[0.10075165331364,-0.0042216889560223,-0.024922983720899]],[[-0.053785338997841,-0.024532550945878,0.051949985325336],[0.0040815849788487,-0.045167282223701,0.048692293465137],[-0.069218255579472,0.034977070987225,0.02810606919229]],[[-0.038092575967312,-0.02538531832397,0.013827629387379],[0.055238474160433,0.0018363036215305,-0.030874783173203],[0.0030301255173981,0.029253786429763,-0.01699317060411]],[[-0.056993961334229,0.012790243141353,0.0002952256181743],[-0.011492590419948,-0.0058182668872178,0.080354362726212],[-0.044873580336571,0.050945229828358,0.013434992171824]],[[0.008112289942801,-0.046338673681021,-0.011475156992674],[-0.089215829968452,0.098103143274784,0.0028606045525521],[-0.078579396009445,0.076064795255661,-0.023519003763795]],[[0.022842947393656,0.033461276441813,-0.050142582505941],[0.046235378831625,-0.096265979111195,-0.034455552697182],[-0.037198901176453,0.027643507346511,-0.0017215276602656]],[[0.10989386588335,0.04359282925725,0.071478098630905],[-0.086049899458885,-0.019971396774054,0.0081808278337121],[0.01059634052217,0.026762330904603,0.011454692110419]],[[0.018327824771404,0.00084903091192245,-0.069660343229771],[-0.016471233218908,0.046268567442894,0.014698883518577],[-0.037503205239773,-0.039489135146141,0.047246545553207]],[[-0.023135621100664,-0.026452645659447,-0.0024884112644941],[-0.013929613865912,-0.0063970610499382,-0.0045849024318159],[-0.011126863770187,-0.066612534224987,-0.027141509577632]],[[0.043744273483753,-0.014968059957027,0.0069905649870634],[0.021967021748424,0.037815317511559,0.0085914712399244],[0.0079869367182255,-0.0055053802207112,-0.023874595761299]],[[0.061300560832024,-0.01786732673645,-0.091284550726414],[-0.023174105212092,0.086452081799507,0.039881382137537],[-0.022665098309517,0.035660866647959,0.01882659457624]],[[0.057602144777775,0.0098742246627808,-0.049983441829681],[0.037505615502596,-0.0028534079901874,0.010493171401322],[0.035401068627834,-0.050114277750254,-0.019060634076595]],[[0.0020223811734468,0.034690286964178,0.024164756760001],[0.0033133907709271,0.050519730895758,0.023762635886669],[0.059359319508076,-0.018445435911417,0.047114528715611]],[[-0.001170908100903,0.080073639750481,-0.057604420930147],[0.011687714606524,0.11570219695568,-0.0043656071648002],[-0.024834644049406,-0.036767110228539,-0.00046674790792167]],[[0.014744432643056,-0.028753774240613,-0.025033634155989],[-0.059846695512533,0.046021778136492,-0.082106709480286],[-0.0061101200990379,-0.035491045564413,-0.05352146551013]],[[-0.03306320682168,-0.065374381840229,0.066511549055576],[0.038403399288654,-0.017032479867339,0.018678547814488],[0.038590807467699,0.022685993462801,0.014178116805851]],[[-0.019914714619517,-0.055528454482555,0.011449101381004],[0.035327233374119,-0.019129779189825,-0.03213295340538],[0.10687611252069,-0.00086524919606745,0.023194510489702]],[[0.036524210125208,-0.046216517686844,0.038923915475607],[0.011164306662977,0.067808337509632,0.057057067751884],[0.021980309858918,-0.010200931690633,0.04273022711277]],[[-0.061455871909857,-0.0355603992939,-0.017414813861251],[-0.030001483857632,0.030821433290839,-0.011023741215467],[0.014164056628942,6.3340266933665e-05,-0.0016415767604485]],[[-0.043630119413137,-0.013382214121521,-0.031467832624912],[-0.026148172095418,0.01749000325799,0.044223863631487],[0.030516143888235,0.01192032545805,-0.003781974548474]],[[-0.034431092441082,0.010614296421409,-0.06908030807972],[-0.014473434537649,0.087751045823097,-0.027653787285089],[0.030521804466844,-0.011333188042045,-0.013997533358634]],[[-0.030659483745694,0.004296354483813,0.056383967399597],[0.04732870310545,-0.032960813492537,0.061335470527411],[0.033018741756678,0.030148386955261,-0.013805813156068]],[[0.037694942206144,0.03913963586092,0.034006830304861],[-0.019507208839059,0.038427829742432,0.021552311256528],[0.021614154800773,0.0085364785045385,-0.11105354130268]],[[0.067519523203373,0.022122416645288,0.020762572064996],[-0.058652598410845,-0.021816084161401,0.012656808830798],[0.028250686824322,-0.042352996766567,-0.022826999425888]],[[-0.030361946672201,0.012749866582453,0.0074431570246816],[0.014369999058545,0.036121670156717,-0.02409865707159],[-0.045144911855459,-0.061037089675665,0.019238609820604]],[[-0.0093590952455997,0.0047446927055717,-0.03498463332653],[-0.0045329136773944,-0.10370597243309,-0.004320225212723],[-0.034404251724482,0.01808949932456,-0.037929587066174]],[[0.088192477822304,-0.050545111298561,0.0024630764964968],[-0.091286599636078,-0.0014815544709563,0.030485756695271],[-0.017236331477761,0.0098552890121937,0.040657669305801]],[[-0.026122646406293,-0.010258533991873,0.012673967517912],[-0.01273235771805,-0.092074155807495,-0.028536129742861],[-0.071762159466743,0.067295126616955,0.040339637547731]],[[0.041025642305613,0.080307617783546,0.045104671269655],[-0.03490549698472,0.018624048680067,0.0082647847011685],[0.022061446681619,0.030269766226411,-0.018311513587832]],[[0.069803096354008,0.00010739505523816,-0.018863953649998],[-0.037805061787367,-0.081497691571712,-0.059680424630642],[0.015192768536508,0.051605880260468,-0.013221950270236]],[[-0.031734697520733,7.8141092672013e-05,0.02253669500351],[-0.0060048401355743,0.010787458159029,-0.0025200163945556],[0.082194305956364,-0.058745887130499,0.017933433875442]],[[0.019230140373111,0.070005729794502,0.0096749747171998],[-0.074019573628902,-0.0083170235157013,0.024576233699918],[-0.0015765927964821,-0.012750319205225,-0.0094302063807845]],[[-0.071862138807774,-0.034900356084108,0.031383860856295],[-0.0047226925380528,-0.035556748509407,-0.00631871400401],[0.051734130829573,-0.017008839175105,-0.00087565334979445]],[[-0.050986502319574,0.032024677842855,-0.042360249906778],[0.037521783262491,0.038113087415695,-0.0018151944968849],[0.090075865387917,0.069704219698906,0.032693527638912]],[[0.042912807315588,0.061652686446905,0.051464784890413],[0.035336207598448,-0.026483939960599,0.042125165462494],[-0.039061792194843,-0.041793495416641,-0.05060301721096]]],[[[0.02160937525332,-0.014106481336057,0.019760228693485],[0.0088188964873552,-0.017099309712648,0.018422758206725],[-0.029055008664727,-0.0097386091947556,-0.033492077142]],[[-0.095781654119492,0.017115807160735,-0.033255204558372],[-0.047458980232477,0.1079226732254,0.0059627774171531],[0.028233092278242,-0.027867158874869,0.034009911119938]],[[0.0036593538243324,-0.006020066794008,0.096614137291908],[-0.029914947226644,0.011842000298202,0.047529265284538],[-0.038717340677977,0.014369197189808,0.0016107806004584]],[[-0.039145965129137,-0.017478551715612,0.0060711810365319],[0.071164682507515,-0.067718751728535,0.03032953850925],[0.0026448569260538,0.010015446692705,-0.036397118121386]],[[0.037812702357769,-0.034902021288872,-0.0098227020353079],[0.017303634434938,-0.0038621437270194,0.05090007185936],[0.026578176766634,0.055270910263062,0.066107586026192]],[[-0.039485651999712,0.043444950133562,0.067698188126087],[-0.00083142751827836,-0.03270610049367,-0.0068832603283226],[0.097981758415699,0.049374658614397,-0.073655419051647]],[[0.0054928474128246,-0.00094046350568533,-0.00063688179943711],[0.04898115247488,-0.02353810146451,-0.0017936093499884],[0.011835404671729,-0.017199041321874,0.050702914595604]],[[0.0038386972155422,0.0099904146045446,0.043010234832764],[-0.0025876085273921,0.027857607230544,-0.0030311392620206],[-0.046517685055733,0.043822098523378,0.01444061845541]],[[-0.0025996300391853,0.003458478488028,-0.059221286326647],[0.057538352906704,-0.013999083079398,-0.022750560194254],[0.01906094700098,-0.067459113895893,0.064890339970589]],[[0.015104427933693,-0.042111799120903,0.052497938275337],[-0.057515636086464,-0.023794570937753,0.042247582226992],[-0.034266427159309,-0.0012199083575979,0.044034592807293]],[[-0.031396917998791,0.033999420702457,0.0027066168840975],[-0.055651269853115,0.022070618346334,0.055985346436501],[0.0080754021182656,-0.010276752524078,0.019603006541729]],[[-0.023262903094292,-0.037567768245935,-0.0085457824170589],[-0.036205910146236,0.063972644507885,0.065010830760002],[0.089502304792404,0.094563581049442,-0.04327705129981]],[[0.0024851558264345,0.056832537055016,0.087043829262257],[0.0026957546360791,0.074514329433441,-0.024619419127703],[0.036268260329962,-0.059033073484898,-0.0045499219559133]],[[-0.051586955785751,-0.051431726664305,-0.060440082103014],[0.0030384969431907,-0.04760730266571,0.0054389536380768],[-0.099985793232918,-0.01397473923862,0.0052993386052549]],[[0.043529611080885,0.084112748503685,0.017855774611235],[0.023055462166667,-0.015695318579674,-0.038227248936892],[-0.060397814959288,0.03951571136713,-0.021906450390816]],[[-0.062879577279091,0.039902027696371,-0.019958080723882],[-0.014697482809424,-0.083680957555771,-0.038193043321371],[0.037513058632612,-0.010100524872541,-0.0274394210428]],[[-0.020225005224347,-0.042599752545357,-0.055339887738228],[-0.056962963193655,0.020375460386276,-0.016263078898191],[-0.01091206073761,0.016159944236279,-0.022789346054196]],[[-0.048023570328951,-0.040971674025059,0.0050887824036181],[0.029525481164455,-0.052605226635933,-0.018096331506968],[0.060702662914991,0.064156115055084,0.04082415625453]],[[-0.017107428982854,-0.062831602990627,-0.013743796385825],[0.039026658982038,-0.074986897408962,-0.031414907425642],[-0.0076962695457041,0.030163161456585,-0.024783125147223]],[[-0.080329537391663,0.0049590039998293,-0.0081177847459912],[-0.075807638466358,-0.061760399490595,-0.0024875800590962],[-0.067778401076794,-0.075335562229156,-0.0075643979944289]],[[-0.025910779833794,-0.031599655747414,-0.0094256289303303],[0.028643099591136,0.00611502956599,0.021805098280311],[0.041730508208275,0.024307321757078,-0.040826018899679]],[[0.023998269811273,-0.021863391622901,0.081083260476589],[-0.033262927085161,0.054033622145653,-0.0097312387079],[-0.038448713719845,-0.026972912251949,0.014862766489387]],[[-0.10970631241798,0.010708102025092,0.065213643014431],[0.018493041396141,-0.020261712372303,-0.026114214211702],[0.014935220591724,-0.0034212481696159,0.0011218659346923]],[[0.00015907605120447,-0.023741703480482,-0.070299305021763],[0.022643147036433,0.010054281912744,-0.052056901156902],[-0.05946758762002,-0.0041060443036258,-0.037236589938402]],[[-0.070843413472176,-0.00068161665694788,0.069879330694675],[0.02903987839818,0.034978356212378,-0.021002240478992],[-8.3864215412177e-05,0.011165959760547,-0.030128752812743]],[[-0.046624232083559,-0.045353181660175,-0.027413509786129],[0.16456291079521,0.066497415304184,0.03667014092207],[0.032004747539759,0.023529630154371,0.054736971855164]],[[0.09475927054882,0.043141905218363,-0.0054984828457236],[0.026968471705914,0.00216468796134,0.072215758264065],[0.037233829498291,-0.034703504294157,0.067979790270329]],[[-0.0028740197885782,-0.023570140823722,0.091424815356731],[0.049236584454775,-0.0326843932271,0.012749966233969],[-0.057822611182928,-0.037134505808353,-0.028634713962674]],[[-0.02581400796771,-0.032555148005486,0.00032152849598788],[-0.067842461168766,0.039074491709471,-0.005444164853543],[0.015354061499238,0.0080535039305687,-0.0054436330683529]],[[-0.0192880500108,-0.0067755323834717,0.026309307664633],[-0.10172664374113,-0.013908291235566,-0.019202437251806],[0.034143544733524,0.033945340663195,0.04902695119381]],[[-0.067035771906376,0.082040749490261,-0.048992715775967],[-0.029656678438187,-0.029238592833281,-0.013896069489419],[0.052969574928284,0.012943234294653,0.044678028672934]],[[-0.072374373674393,-0.0053501813672483,0.023788245394826],[-0.027262710034847,-0.028077123686671,0.041020736098289],[-0.023200089111924,0.01809555105865,-0.053155291825533]],[[0.050269827246666,-0.013969700783491,-0.042745642364025],[0.0076894997619092,-0.074993044137955,0.0014192812377587],[0.061010841280222,-0.0019272783538327,-0.041721414774656]],[[-0.027594115585089,-0.067910581827164,0.094707123935223],[0.039669342339039,0.046806905418634,0.059785202145576],[-0.036682642996311,-0.025492025539279,-0.0043207630515099]],[[-0.0084645990282297,-0.020159669220448,-0.048070792108774],[0.065403647720814,0.0035714735276997,-0.0089701162651181],[0.055524636059999,-0.094398334622383,0.020223472267389]],[[0.0063909338787198,0.053415935486555,0.00086171092698351],[0.054321944713593,0.0067378180101514,-0.01986450329423],[0.045613396912813,0.017930911853909,-0.044809401035309]],[[0.039280235767365,-0.015755793079734,0.035445231944323],[0.049689844250679,-0.036319747567177,-0.0094194887205958],[-0.044498991221189,-0.065147459506989,0.035841170698404]],[[-0.036396227777004,-0.043920420110226,0.026394700631499],[-0.031450711190701,-0.042115397751331,-0.028546635061502],[-0.0033019876573235,-0.015730736777186,0.072955697774887]],[[-0.043257392942905,-0.030753962695599,0.0004374553100206],[0.0054447269067168,-0.024548036977649,0.084906592965126],[-0.017771527171135,0.061855606734753,-0.020150821655989]],[[-0.015800230205059,0.04569324478507,0.035064939409494],[0.025294374674559,-0.026561811566353,-0.037839338183403],[0.017584327608347,-0.0061137899756432,-0.039537340402603]],[[0.007217304315418,-0.00504444912076,0.063573285937309],[0.00072563497815281,0.0003568708198145,-0.062548719346523],[-0.050985969603062,0.046419709920883,-0.046261675655842]],[[0.045330837368965,0.00048907892778516,-0.013528919778764],[-0.019455619156361,-0.029618673026562,0.013132391497493],[-0.014736195094883,-0.05488383024931,-0.019331086426973]],[[0.015631597489119,-0.0025910974945873,0.029915573075414],[-0.03657341748476,0.054698534309864,-0.051805920898914],[-0.056092601269484,-0.011959169991314,-0.036698948591948]],[[0.027689168229699,0.026370376348495,0.013959900476038],[-0.047071691602468,-0.079707816243172,-0.13097850978374],[-0.066752783954144,-0.014832707121968,-0.018182767555118]],[[-0.021794214844704,0.035633709281683,-0.025919239968061],[0.082244649529457,-0.02803966589272,0.016164915636182],[-0.024679420515895,-0.021067012101412,-0.017889631912112]],[[0.0027063991874456,-0.0062040891498327,-0.05024016648531],[0.074790544807911,0.047479216009378,-0.03726327046752],[-0.044812556356192,0.031541433185339,0.0022091681603342]],[[-0.02746220305562,0.00020417531777639,-0.0062574394978583],[-0.031422358006239,-0.02356898970902,0.024292415007949],[-0.021090283989906,-0.01565745472908,0.053439635783434]],[[0.0010926236864179,0.053939908742905,-0.039112698286772],[-0.028136750683188,0.051597911864519,0.039151079952717],[-0.015972459688783,-0.039893623441458,0.0043690078891814]],[[-0.019090889021754,-0.032365847378969,-0.04448751732707],[-0.039330169558525,-0.00084312714170665,-0.024428743869066],[-0.024364303797483,0.04276754334569,-0.031285181641579]],[[-0.069169625639915,0.02796140126884,-0.033108167350292],[-0.030018987134099,0.059987787157297,0.024598695337772],[-0.06952939927578,0.026033306494355,-0.023782599717379]],[[-0.013617748394608,-0.065811067819595,-0.015491287223995],[-0.03963041305542,0.021432330831885,0.022179959341884],[0.029306154698133,0.024627953767776,0.03306519985199]],[[0.018666187301278,0.02804671227932,-0.028962375596166],[-0.066729560494423,0.041261587291956,0.051884397864342],[-0.04720851406455,-0.050440024584532,-0.0080548645928502]],[[0.013509722426534,0.036562032997608,-0.022091366350651],[0.15202915668488,0.0094125233590603,0.0022715663071722],[0.043267387896776,-0.10915426909924,-0.06554064899683]],[[0.073238544166088,0.023319557309151,0.020751316100359],[0.025230662897229,-0.051130276173353,0.044819492846727],[-0.020506698638201,-0.0073997550643981,-0.034676805138588]],[[-0.047655861824751,0.016253309324384,-0.024471241980791],[0.039158776402473,-0.0090754330158234,-0.077200807631016],[-0.0076388153247535,0.01998944953084,-0.06383178383112]],[[-0.0070330970920622,0.029466655105352,0.046787589788437],[0.042514868080616,0.020762166008353,-0.030723622068763],[0.014403312467039,-0.037616260349751,0.013929164037108]],[[-0.018940791487694,0.016895279288292,0.020530560985208],[-0.019190166145563,0.0464923158288,0.022842682898045],[-0.031248688697815,0.036659356206656,-0.010730558075011]],[[0.0086479894816875,-0.0081099281087518,0.017673715949059],[0.022068785503507,-0.052188944071531,0.0040092607960105],[0.0074483593925834,-0.020268812775612,-0.011119638569653]],[[-0.020011972635984,0.019203089177608,-0.022909961640835],[-0.094804294407368,-0.054300557821989,0.012690807692707],[-0.065517544746399,0.02738505974412,0.055653840303421]],[[0.0055439998395741,-0.019550329074264,0.028445022180676],[-0.034286629408598,-0.023553546518087,0.022803083062172],[0.0070628258399665,-0.0051051350310445,-0.033869463950396]],[[0.025841567665339,0.053672805428505,0.066136166453362],[-0.017199786379933,-0.034045729786158,0.024687420576811],[0.03203796222806,0.05525366589427,0.05846119299531]],[[-0.013113529421389,0.015164658427238,0.037081878632307],[0.011663718149066,-0.0023294612765312,0.022027524188161],[-0.038008909672499,-0.020876048132777,0.072276726365089]],[[0.039210833609104,-0.0043292101472616,0.054698910564184],[0.011386564932764,-0.01829082891345,-0.021788129583001],[-0.025801168754697,-0.030477860942483,0.036547251045704]],[[-0.0034014391712844,-0.048100315034389,-0.013978189788759],[-0.091758713126183,-0.026304135099053,0.0061047114431858],[-0.0015591761330143,0.012160429731011,0.030117884278297]],[[-0.038626752793789,0.046914234757423,0.074169993400574],[0.037009879946709,-0.045301277190447,-0.012760985642672],[0.0010183992562816,0.065372221171856,-0.025319125503302]],[[-0.002372627845034,-0.0080786682665348,0.049021780490875],[-0.010016114450991,-0.003474032972008,0.016471467912197],[-0.011015400290489,-0.056606978178024,-0.022950187325478]],[[-0.062693931162357,0.12001936137676,-0.0336624532938],[-0.066366262733936,0.046676523983479,-0.015416758134961],[0.03017876856029,0.009328244253993,-0.036429304629564]],[[-0.011786578223109,-0.0043512540869415,0.025396248325706],[-0.031776588410139,-0.044127203524113,-0.019789488986135],[0.01416581030935,0.12765255570412,0.026730947196484]],[[-0.016762549057603,0.0088426368311048,0.018803445622325],[0.022384490817785,-0.021055934950709,0.023707693442702],[0.020821422338486,-0.0098977461457253,0.01199116744101]],[[-0.045283123850822,-0.013340920209885,-0.091655842959881],[-0.1147595718503,-0.059861313551664,0.007843978703022],[-0.01733979023993,0.010212411172688,-0.0300865303725]],[[0.027256410568953,0.036881297826767,0.065932221710682],[0.027657464146614,-0.019362377002835,0.014490409754217],[0.0056568193249404,-0.070552334189415,-0.027847666293383]],[[0.065357111394405,0.024208763614297,0.034381788223982],[-0.04762839153409,-0.087784625589848,0.064456060528755],[0.050812799483538,-0.105198957026,-0.016276590526104]],[[-0.003428376512602,0.083626143634319,-0.023206571117043],[-0.012015240266919,-0.010067643597722,0.011997811496258],[-0.14814323186874,0.055181562900543,-0.055997863411903]],[[-0.073274351656437,-0.0022327147889882,0.037565469741821],[-0.0018874688539654,-0.0123704187572,0.067702315747738],[0.0095611019060016,-0.020809885114431,0.025746788829565]],[[-0.044879395514727,-0.069147348403931,-0.039935443550348],[0.035252928733826,0.013658742420375,-0.0072954725474119],[0.015379901975393,-0.049605261534452,0.00070480915019289]],[[0.059404939413071,0.050181914120913,-0.026601281017065],[-0.0048524704761803,-0.030274068936706,0.081303760409355],[-0.011420874856412,-0.0096807824447751,0.020974166691303]],[[0.077376946806908,-0.0022955778986216,0.043906986713409],[-0.045585196465254,-0.0068208985030651,0.045326206833124],[-0.064389437437057,0.038506180047989,-0.043518982827663]],[[0.02724052220583,0.091762021183968,0.040925543755293],[0.037490833550692,0.037893246859312,-0.043884091079235],[0.07184936106205,-0.042722467333078,0.020150326192379]],[[-0.0061447732150555,0.0050058080814779,-0.0044375783763826],[0.022512821480632,0.034225407987833,0.024066157639027],[0.062978446483612,0.036631777882576,-0.0079764816910028]],[[-0.01294423174113,0.060774464160204,-0.022052060812712],[-0.014140380546451,-0.0044837738387287,-0.0094227697700262],[0.070137947797775,-0.042176064103842,-0.030436119064689]],[[-0.013527411036193,-0.014804147183895,0.051372233778238],[-0.055811367928982,0.01758386567235,-0.0087141543626785],[-0.023111067712307,0.056198347359896,-0.049295701086521]],[[0.00634781178087,0.0089739738032222,-0.010795818641782],[0.021120626479387,-0.0067383265122771,0.0033486925531179],[-0.037598349153996,0.0024960325099528,-0.010736240074039]],[[0.023882698267698,-0.06356094032526,0.011461100541055],[-0.054147835820913,0.032117944210768,-0.037182748317719],[-0.012862363830209,0.074217312037945,0.013519574888051]],[[0.047528598457575,0.0329026915133,0.047629959881306],[0.015320047736168,-0.065141342580318,-0.095086805522442],[-0.047523133456707,-0.015216374769807,0.038797933608294]],[[-0.054590202867985,0.0084210466593504,0.015286686830223],[-0.0045861015096307,0.12246135622263,-0.01102449465543],[-0.017224386334419,-0.042517818510532,0.020336432382464]],[[-0.0033090233337134,0.0073730279691517,-0.017980352044106],[0.010225040838122,0.019254617393017,0.060772679746151],[0.037269607186317,0.02456090413034,0.017260272055864]],[[-0.040774080902338,0.079408951103687,-0.010753115639091],[-0.0066112433560193,0.099300429224968,-0.048251807689667],[-0.01220987457782,0.02593594416976,0.033342275768518]],[[0.079832807183266,-0.051120340824127,0.079749219119549],[-0.067430563271046,0.033466909080744,0.012731022201478],[-0.011200774461031,0.026733545586467,-0.027130369096994]],[[0.053181082010269,0.025353526696563,-0.056439399719238],[0.016544973477721,-0.083792626857758,-0.022286122664809],[0.024185601621866,-0.034652277827263,-0.071601755917072]],[[0.041323617100716,0.026806129142642,-0.11988534778357],[-0.068552523851395,0.018663810566068,-0.04030817002058],[-0.076390765607357,0.006102233659476,0.015953529626131]],[[0.060209486633539,-0.043699830770493,0.034509118646383],[-0.061611108481884,0.05844385176897,0.037433795630932],[0.0438267365098,-0.00068310153437778,-0.014760891906917]],[[-0.015902115032077,0.001025018747896,0.053654514253139],[0.016044965013862,0.025064710527658,0.076615132391453],[0.013445474207401,0.039886303246021,-0.012671831995249]],[[0.0078679984435439,0.020137798041105,0.013913032598794],[-0.057974215596914,-0.00055924413027242,0.017807746306062],[0.031864441931248,0.0047518629580736,0.018537245690823]],[[-0.0012530662352219,0.0059205684810877,0.010779722593725],[-0.045644260942936,0.0049458644352853,-0.013211774639785],[-0.021906243637204,0.036775007843971,-0.0070159784518182]],[[0.025709670037031,0.059826634824276,-0.027904633432627],[0.010208467021585,0.0086442492902279,0.0046882308088243],[0.083226971328259,0.013890519738197,0.0034001267049462]],[[-0.049113284796476,-0.011746107600629,0.021424429491162],[0.039476975798607,0.03716941550374,0.011681233532727],[0.016160681843758,-0.022092686966062,0.073468036949635]],[[0.026455689221621,-0.045110315084457,0.0073543419130147],[-0.037411075085402,-0.023186502978206,-0.03698531165719],[-0.087186366319656,-0.045304253697395,-0.04061758890748]],[[0.054505344480276,-0.098214499652386,0.024063009768724],[0.035983692854643,-0.019827336072922,0.048924226313829],[-0.072127640247345,-0.054452195763588,0.021907094866037]],[[-0.033552754670382,-0.018804201856256,0.05931618437171],[0.088519394397736,-0.0050796833820641,0.050128169357777],[-0.0093807429075241,0.031441546976566,-0.057091936469078]],[[-0.057673193514347,0.032767556607723,0.011585735715926],[0.026983691379428,-0.028416309505701,0.072099804878235],[0.093397825956345,-0.052632324397564,-0.079020500183105]],[[0.054076060652733,-0.033770658075809,0.010386357083917],[0.010931806638837,-0.070727564394474,-0.0089258104562759],[-0.071909084916115,-0.010664322413504,0.046837836503983]],[[0.026441948488355,0.029158774763346,0.065480135381222],[-0.064203873276711,0.036537602543831,0.060764901340008],[-0.031874272972345,-0.068634495139122,0.0070167216472328]],[[-0.034744910895824,-0.10613822937012,0.044231072068214],[-0.041711930185556,0.0077024614438415,-0.094253987073898],[-0.13057778775692,0.031932398676872,-0.047733135521412]],[[0.04279487580061,0.042228445410728,-0.027121493592858],[-0.0039794738404453,-0.027358651161194,-0.036155514419079],[-0.0030783184338361,0.0045296400785446,-0.011735285632312]],[[0.011922854930162,0.050906665623188,-0.026801194995642],[-0.04403979331255,0.032806858420372,-0.012887093238533],[0.0069063142873347,0.03597667068243,0.012215614318848]],[[0.067032612860203,-0.019078237935901,-0.06812459975481],[-0.0068267779424787,0.0020445799455047,0.03402478992939],[0.02005635201931,0.0063150571659207,0.018650723621249]],[[0.047566369175911,-0.021503802388906,-0.043376602232456],[-0.04235502332449,0.034368928521872,0.016110226511955],[-0.063978306949139,0.018763633444905,-0.016777960583568]],[[0.081007473170757,0.035968724638224,0.01921121776104],[-0.066069483757019,0.017180934548378,-0.0043565374799073],[-0.0043334173969924,0.029535258188844,0.067618295550346]],[[-0.042797960340977,-0.03130741044879,0.015979714691639],[0.068177595734596,0.010594488121569,0.021334566175938],[-0.032339550554752,-0.085372097790241,-0.061077892780304]],[[-0.068355455994606,-0.062852554023266,0.026806924492121],[-0.029492259025574,-0.037031728774309,-0.032794117927551],[-0.0099859517067671,0.053193412721157,-0.044606193900108]],[[0.007051388733089,0.094631731510162,0.031223103404045],[0.041142381727695,0.023567657917738,0.0057710269466043],[0.019263900816441,0.0087127042934299,0.022009000182152]],[[0.026637991890311,0.011817323043942,-0.040859516710043],[0.0081001901999116,-0.021040117368102,-0.034352257847786],[0.010522074997425,-0.0068519781343639,0.12401250004768]],[[-0.047195293009281,0.012845968827605,0.031370636075735],[0.029452273622155,0.056096747517586,-0.026309529319406],[-0.02834016084671,-0.0067531312815845,-0.063508540391922]],[[-0.069602109491825,0.064677409827709,-0.0038824863731861],[-0.00082439638208598,0.02013024315238,-0.024017529562116],[-0.040373045951128,-0.024816391989589,-0.022744912654161]],[[0.038338679820299,-0.046371545642614,0.015940995886922],[-0.054850690066814,-0.074843063950539,0.065893642604351],[-0.040640059858561,0.075698859989643,0.070437617599964]],[[0.032247822731733,-0.022283591330051,-0.051400147378445],[0.030421009287238,0.055338986217976,-0.027489611878991],[0.024478066712618,-0.014133613556623,-0.046370331197977]],[[0.082803763449192,-0.023126073181629,0.014324984513223],[0.026163337752223,-0.041283812373877,-0.0065307938493788],[-0.012760767713189,0.0048211752437055,0.017160972580314]],[[-0.060614418238401,-0.039977546781301,0.034517593681812],[-0.023158499971032,-0.056859623640776,0.027975773438811],[-0.0031209292355925,0.062010459601879,-0.056844640523195]],[[0.0062731862999499,0.043941870331764,-0.10685300827026],[-0.017120582982898,0.024944672361016,0.012494531460106],[-0.00053533108439296,-0.043271120637655,-0.044884450733662]],[[0.00025509827537462,0.005605767481029,-0.036792226135731],[-0.028303045779467,0.016899166628718,0.029273416846991],[0.0045620603486896,0.074328355491161,0.0042483974248171]],[[0.0093438709154725,-0.03046103194356,0.02299134992063],[0.0073445783928037,-0.011821554042399,0.025871027261019],[-0.039589256048203,-0.0026260248851031,-0.0091435210779309]],[[-0.027881637215614,0.04622545465827,0.070354856550694],[0.0072773485444486,-0.033640757203102,0.010944299399853],[0.071160040795803,-0.045175895094872,0.0033802972175181]],[[-0.01593954116106,0.060729127377272,-0.090912863612175],[-0.014241462573409,-0.022789631038904,-0.059665314853191],[0.00735431490466,-0.028748612850904,0.01117941737175]],[[0.0071534523740411,-0.052376605570316,-0.028013575822115],[0.022270383313298,0.063770979642868,0.013983752578497],[-0.047492995858192,-0.050425615161657,0.037689428776503]],[[0.00091640499886125,-0.030064841732383,0.058516066521406],[-0.049357656389475,-0.031501989811659,-0.0029951147735119],[-0.022819926962256,-0.032825205475092,0.051505718380213]],[[0.023262646049261,0.041060693562031,-0.033798474818468],[-0.0043612695299089,0.030896132811904,0.057527106255293],[-0.045538283884525,-0.00042062386637554,0.0055928258225322]],[[-0.0054549970664084,0.0025546194519848,0.0036958286073059],[0.02544249035418,0.064683258533478,0.0078664720058441],[-0.079308018088341,-0.041349925100803,0.01125749759376]],[[-0.031504828482866,-0.030370760709047,0.037223421037197],[-0.016112683340907,0.083961918950081,0.052649743855],[-0.015135762281716,-0.0066363792866468,0.020054433494806]]],[[[0.063231140375137,0.010887255892158,0.020799539983273],[0.013442230410874,0.055849261581898,-0.047945946455002],[0.07951682060957,0.0021164426580071,0.019130304455757]],[[-0.04279275983572,0.054649028927088,-0.019678633660078],[0.0056258207187057,0.086833626031876,0.011410053819418],[0.013208220712841,0.02101475559175,-0.10413687676191]],[[-0.057482950389385,0.087711572647095,0.018347194418311],[0.039996393024921,0.040971547365189,0.022429520264268],[0.055926352739334,0.064610108733177,-0.05869048833847]],[[0.068038150668144,-0.0069224671460688,-0.036152936518192],[0.02636862359941,0.03822048380971,0.031145617365837],[0.052810102701187,0.023239614441991,-0.0036162140313536]],[[-0.069479048252106,0.0065192985348403,-0.0066779810003936],[0.053599420934916,0.048574902117252,0.11607970297337],[0.015583802945912,0.0050087915733457,0.016365209594369]],[[0.075504988431931,0.0091649414971471,0.026248849928379],[0.026775099337101,-0.0066617447882891,0.005870699416846],[0.060511518269777,0.023895114660263,0.053295738995075]],[[0.035379149019718,0.022332703694701,0.06886400282383],[-0.032287865877151,0.019136127084494,-0.0026289995294064],[0.067973755300045,-0.021163770928979,0.027186911553144]],[[0.08522405475378,-0.026805916801095,0.040375210344791],[0.019562896341085,-0.0095325289294124,0.049753587692976],[0.081334702670574,0.040721293538809,0.058681406080723]],[[0.081958875060081,0.049531560391188,0.018300229683518],[0.045561507344246,-0.019302243366838,0.043457787483931],[0.077598862349987,-0.0084389457479119,-0.037327583879232]],[[0.079749390482903,0.045549225062132,0.077657982707024],[-0.021830836310983,0.018156880512834,0.070124208927155],[-0.02349229902029,-0.055793803185225,0.076322078704834]],[[-0.044233445078135,0.055619116872549,-0.032464563846588],[-0.012866207398474,-0.1224040389061,0.059332866221666],[0.049730580300093,0.049855794757605,-0.021747732535005]],[[0.023301986977458,0.0064037404954433,0.039718225598335],[0.053784515708685,0.043452490121126,0.055886004120111],[-0.071142844855785,-0.00017453730106354,0.04685078188777]],[[0.058270998299122,0.079536825418472,0.079825930297375],[-0.032219100743532,0.031186727806926,0.025615658611059],[0.056372366845608,0.050637479871511,0.042571846395731]],[[0.073035463690758,-0.0038663160521537,-0.040592432022095],[0.011127347126603,-0.043123535811901,0.028461009263992],[-0.037306319922209,0.011683967895806,0.0034207594580948]],[[-0.01401022542268,-0.031116243451834,-0.0839664041996],[-0.00064229912823066,0.031114839017391,0.0039791064336896],[-0.026670439168811,-0.097183026373386,0.019557897001505]],[[-0.050642974674702,0.013302330859005,0.0082982247695327],[-0.051834344863892,-0.0031987382099032,0.017202608287334],[-0.030561519786716,-0.0068863243795931,-0.051545683294535]],[[0.054603207856417,-0.0067554102279246,0.04408635944128],[0.078384675085545,0.049040533602238,0.037826649844646],[0.035181656479836,-0.024696873500943,0.0072304145433009]],[[0.00045428314479068,-0.0071749174967408,-0.024116337299347],[0.040227897465229,0.011526945047081,-0.0083000529557467],[0.073255859315395,-0.017904879525304,0.0097948834300041]],[[0.062692746520042,0.026071952655911,-0.022953951731324],[-0.049867060035467,0.048671618103981,0.041725751012564],[-0.0032567344605923,-0.076816610991955,-0.0089508080855012]],[[0.048161190003157,0.059053305536509,0.051207832992077],[0.026606002822518,0.010037872940302,-0.08683206140995],[-0.050643909722567,0.070295907557011,0.019727293401957]],[[-0.023499205708504,-0.058000162243843,-0.0065118679776788],[0.031055938452482,-0.041435051709414,0.031263407319784],[0.076557993888855,-0.0438322275877,0.0003126515657641]],[[0.06513224542141,0.060963019728661,0.05088672414422],[0.049910895526409,0.10676676779985,0.05754616484046],[0.025324661284685,0.018729638308287,0.029738014563918]],[[-0.016479471698403,0.028173254802823,0.058483563363552],[-0.010700883343816,-0.012559643946588,0.010272910818458],[0.045125726610422,-0.01092690974474,0.026591857895255]],[[0.043188370764256,-0.025398908182979,0.054167926311493],[0.0036215817090124,0.10678038746119,0.035113159567118],[0.072289451956749,0.016151903197169,0.053529262542725]],[[0.13734650611877,0.0085714543238282,0.073772564530373],[-0.034919068217278,0.0090876910835505,0.025396998971701],[0.013894944451749,0.058502621948719,0.025116661563516]],[[0.063244938850403,-0.02664883621037,0.036878041923046],[0.081983633339405,0.0010634497739375,0.01364800799638],[0.080012142658234,-0.062139824032784,0.031095761805773]],[[-0.0011882557300851,-0.0033757656347007,0.02046444453299],[0.061934731900692,0.049163229763508,0.00025715923402458],[0.038800578564405,0.032488472759724,-0.0089651960879564]],[[0.054328113794327,0.014775305986404,0.017375733703375],[0.066436484456062,0.043913252651691,0.061855643987656],[0.022845817729831,0.073005087673664,0.084756299853325]],[[-0.065715812146664,-0.01319788955152,-0.044119171798229],[0.054710790514946,-0.058091029524803,0.029760064557195],[0.050975456833839,-0.0085622146725655,-0.022842755541205]],[[-0.0098617793992162,-0.047336544841528,0.0048700524494052],[-0.011760094203055,-0.035275839269161,0.061210103332996],[0.063226170837879,0.072167403995991,0.054762672632933]],[[0.068286083638668,0.039048835635185,-0.03804986923933],[0.089719921350479,0.037044800817966,0.074405625462532],[0.00044259274727665,0.052961502224207,0.037301763892174]],[[0.019139315932989,0.062511302530766,0.091587655246258],[0.011867435649037,0.029167655855417,0.040804147720337],[-0.011711601167917,-0.019377324730158,0.012186290696263]],[[0.017813885584474,0.054289482533932,-0.009850419126451],[-0.0071821552701294,0.053139448165894,0.045865539461374],[0.02288056537509,0.062053870409727,0.031597901135683]],[[0.087790824472904,0.049792136996984,-0.04147931560874],[0.057052936404943,-0.065123207867146,0.017895860597491],[0.041392706334591,-0.038985773921013,0.0098110577091575]],[[0.0093971844762564,-0.0091222999617457,-0.031187012791634],[-0.016468979418278,0.017833000048995,0.015258410945535],[-0.089012801647186,-0.0074441018514335,-0.05472045764327]],[[-0.01893631927669,-0.0027321828529239,-0.02449606359005],[0.051367361098528,-0.0013986944686621,-0.020899204537272],[-0.036653336137533,-0.05697562918067,0.0035909204743803]],[[-0.025805611163378,-0.00035139848478138,-0.010820528492332],[0.033560547977686,0.053045049309731,0.066974021494389],[0.059785690158606,0.054542887955904,-0.076056718826294]],[[-0.032231617718935,0.048335608094931,-0.01831441372633],[0.0071157901547849,0.053872037678957,0.026688721030951],[0.0253796428442,-0.03971578925848,0.016452334821224]],[[0.058323413133621,0.056814964860678,0.010475338436663],[0.11986688524485,-0.013869757764041,0.02390712313354],[-0.0075616110116243,0.0088806860148907,0.060959234833717]],[[0.022865887731314,0.083461992442608,-0.006887917406857],[0.0077586900442839,0.049825686961412,0.0093146460130811],[0.0039126113988459,0.054506752640009,-0.01738272421062]],[[0.0078991055488586,0.04496681317687,-0.027387633919716],[-0.0070955939590931,0.070253409445286,-0.012536068446934],[-0.019147165119648,0.0060466467402875,-0.023757126182318]],[[0.099831692874432,0.053672254085541,0.031679209321737],[0.05559354275465,0.041675794869661,0.079381048679352],[0.12754771113396,0.039642702788115,0.04999989643693]],[[-0.017688177525997,0.054200746119022,0.088566184043884],[-0.00066129403421655,0.077412143349648,0.083385452628136],[0.053237516433001,0.071323730051517,-0.010924389585853]],[[-0.048391841351986,-0.0095919100567698,-0.092311814427376],[-0.0066034751944244,0.09942240267992,-0.00024432913050987],[-0.05011248216033,-0.048384979367256,-0.040964815765619]],[[0.034128475934267,0.07876193523407,0.0059410650283098],[-0.013501116074622,0.11036255955696,0.095791757106781],[0.047013722360134,0.061557650566101,0.047715228050947]],[[0.073379635810852,0.096769750118256,0.0071910540573299],[0.04078246280551,0.04541277885437,0.073556073009968],[-0.0085189072415233,0.042203463613987,-0.03875820338726]],[[0.030212899670005,-0.055865958333015,-0.00037661771057174],[-0.0011061746627092,0.027008695527911,0.006946568377316],[0.10193563252687,0.064108476042747,0.0072325603105128]],[[0.080509178340435,-0.024758864194155,-0.0035353053826839],[-0.02945320494473,0.017926603555679,-0.0051949629560113],[0.01476086769253,-0.053180061280727,-0.032319467514753]],[[-0.0097634885460138,0.0097876638174057,0.080997593700886],[-0.018342368304729,0.046678896993399,0.016231628134847],[-0.0028148628771305,-0.062499046325684,-0.028082385659218]],[[0.016660260036588,0.012798639014363,0.0024466910399497],[0.044115103781223,-0.028080834075809,0.031341828405857],[-0.014591794461012,-0.0082822609692812,-0.011688289232552]],[[-0.013063970021904,0.040174689143896,-0.023111935704947],[0.029832903295755,-0.00049860024591908,0.00083977199392393],[-0.075709544122219,0.0634491071105,-0.013058719225228]],[[-0.046103958040476,0.033468939363956,0.074978440999985],[-0.019439555704594,0.085087560117245,0.041846435517073],[-0.0026186720933765,0.025190606713295,0.0045097251422703]],[[-0.10030241310596,-0.0034585315734148,-0.076566830277443],[-0.064565904438496,0.016868336126208,-0.013313811272383],[-0.093403808772564,-0.014333128929138,-0.094557754695415]],[[0.13539029657841,0.080290824174881,0.053978323936462],[-0.0066324332728982,0.050821926444769,0.077838696539402],[0.0038103647530079,-0.025241920724511,0.024684388190508]],[[0.064665526151657,0.039566792547703,0.012394327670336],[-0.025361735373735,-0.017390351742506,0.006577214691788],[0.022479511797428,-0.01842588186264,-0.033521730452776]],[[0.0356908403337,-0.048165146261454,-0.065107971429825],[0.02027796022594,0.037769950926304,0.0004489986167755],[0.044723335653543,-0.054411355406046,0.045745402574539]],[[0.030847495421767,-0.0082097370177507,-0.053361251950264],[0.010543271899223,0.0665228292346,0.0048072789795697],[0.013995879329741,-0.0084377536550164,0.060576651245356]],[[0.12407478690147,0.10329630225897,0.021448949351907],[0.035664591938257,0.039455037564039,0.017761938273907],[-0.026783289387822,0.037654057145119,0.040747731924057]],[[-0.053761783987284,0.07643635571003,0.0042299614287913],[-0.0046136933378875,0.063907101750374,0.042091406881809],[-0.019487956538796,0.028130004182458,0.015614297240973]],[[0.0019751125946641,0.046875763684511,0.064407415688038],[0.077056340873241,0.020101388916373,0.0071538905613124],[0.061653703451157,-0.021762339398265,0.050760559737682]],[[-0.032097723335028,0.037303000688553,0.023033477365971],[0.069119825959206,0.047498367726803,-0.054809506982565],[0.055809576064348,0.0072145825251937,0.048344407230616]],[[-0.035856924951077,-0.067121483385563,-7.7605109254364e-05],[-0.039255101233721,-1.2161044651293e-05,0.0081362929195166],[0.024610554799438,0.030228847637773,0.0057631065137684]],[[0.035482067614794,0.041694633662701,0.066455639898777],[0.037437919527292,0.035890985280275,-0.011765813454986],[0.0033447125460953,-0.053344920277596,0.064597383141518]],[[0.010683060623705,-0.036314401775599,0.06682825088501],[0.0072817988693714,0.078981205821037,0.065082639455795],[0.018827941268682,0.0029575496446341,0.017074432224035]],[[-0.074443750083447,0.030908854678273,-0.045947138220072],[0.022536067292094,0.036843553185463,0.077944926917553],[-0.069162331521511,0.077588342130184,0.027349963784218]],[[0.011341194622219,0.024039544165134,0.02268373593688],[0.065841369330883,-0.024521308019757,0.035455625504255],[0.015405959449708,0.012626417912543,-0.059780791401863]],[[0.074874244630337,0.051209475845098,0.015403177589178],[-0.0017772007267922,-0.079565137624741,0.055431865155697],[0.013157876208425,-0.013798948377371,0.02223545871675]],[[0.064728803932667,0.085086390376091,0.035571977496147],[0.097943291068077,0.067889496684074,-0.01652429997921],[0.057918567210436,0.044113978743553,0.017267353832722]],[[0.01801354251802,0.095090471208096,-0.036221131682396],[0.046046696603298,0.035187743604183,0.033269535750151],[0.039635110646486,-0.018807604908943,0.017647318542004]],[[0.089384719729424,-0.0053728083148599,0.050809517502785],[0.015209309756756,-0.017467265948653,0.095747500658035],[0.069578289985657,0.020239157602191,-0.011283993721008]],[[0.0011608606437221,0.10283225029707,0.016625385731459],[0.099097207188606,-0.0075873336754739,0.056855943053961],[0.033562194555998,0.023479277268052,0.028693202883005]],[[0.066304579377174,0.0005696946172975,-0.0040738987736404],[0.007065094076097,0.022257367148995,-0.029589621350169],[0.034163277596235,-0.0081073213368654,-0.01134573109448]],[[-0.00036565863410942,0.020296031609178,0.001197557314299],[-0.00075655407272279,-0.051962289959192,-0.023870909586549],[0.037069894373417,-0.062864318490028,0.069845445454121]],[[-0.015781296417117,0.02434722520411,0.023037269711494],[-0.0026996182277799,0.021642131730914,0.0025149611756206],[-0.01835267804563,0.098947063088417,0.027965908870101]],[[0.028465736657381,0.039898537099361,0.042990539222956],[0.050882667303085,0.051481086760759,0.042068313807249],[-0.063209049403667,-0.041120026260614,-0.035813607275486]],[[-0.032722920179367,0.053819999098778,-0.016509780660272],[-0.01609698869288,-0.0063279061578214,0.097961224615574],[0.0077371587976813,0.038161300122738,-0.0089378682896495]],[[-0.014440137892962,-0.024144323542714,0.095583088696003],[0.099863268435001,-0.019690152257681,-0.092423930764198],[0.11194744706154,-0.0055758818052709,0.02366198413074]],[[0.050260044634342,-0.042208388447762,0.039924282580614],[0.053856562823057,0.017121102660894,0.067517898976803],[-0.062622100114822,0.049176789820194,0.017134642228484]],[[-0.00090703729074448,-0.052369147539139,0.0080705881118774],[0.052530977874994,0.0055883955210447,-0.0043115513399243],[-0.098384611308575,0.064468622207642,0.015975534915924]],[[0.047164905816317,0.00074371340451762,0.019034028053284],[-0.063461475074291,0.077020674943924,0.06339068710804],[0.012425573542714,0.052240010350943,0.021344652399421]],[[0.07520567625761,0.018228048458695,-0.00029817485483363],[-0.033665712922812,-0.02024027146399,0.034934416413307],[0.021595863625407,-0.010713971219957,-0.071784853935242]],[[-0.0072364094667137,0.099813677370548,0.020389867946506],[-0.015607371926308,0.022516820579767,0.047272868454456],[0.0013172015314922,0.0072088553570211,0.021384021267295]],[[-0.0033257592003793,0.077547393739223,-0.0044164881110191],[0.018326302990317,-0.030577851459384,0.038593381643295],[0.0122513724491,-0.051324035972357,0.092134453356266]],[[-0.020441699773073,0.067366912961006,0.10364900529385],[0.063551157712936,-0.0029786205850542,-0.019494026899338],[0.039664033800364,0.013629280030727,-0.0092537961900234]],[[0.053830280900002,0.013319045305252,-0.011034955270588],[0.042431250214577,0.0073850122280419,0.011242250911891],[-0.025168182328343,0.083038136363029,0.025742741301656]],[[-0.017741439864039,0.11132326722145,0.052200835198164],[-0.0052480716258287,-0.0091252848505974,0.027901466935873],[0.08174891769886,-0.019625971093774,0.059902258217335]],[[-0.014545663259923,0.059071753174067,0.088172599673271],[0.16380667686462,0.057925850152969,0.044906079769135],[0.071795023977757,0.0013257990358397,-0.0010664848377928]],[[-0.027315698564053,0.058231677860022,0.0040157502517104],[0.017732074484229,0.075596995651722,-0.0093976017087698],[-0.028962107375264,-0.032627012580633,0.039304368197918]],[[0.095242112874985,0.032180741429329,0.036254890263081],[0.031392775475979,0.032895162701607,0.097081109881401],[0.028659000992775,0.065217912197113,0.087520517408848]],[[0.075594797730446,0.049237865954638,-0.086027778685093],[0.017385156825185,0.0060860952362418,-0.015889823436737],[0.053559672087431,-0.010861190035939,0.0015543076442555]],[[0.03256806358695,-0.043482232838869,-0.028721626847982],[0.088322460651398,-0.016555642709136,0.057064544409513],[0.0054741268977523,-0.022663420066237,0.044260565191507]],[[0.027770863845944,0.014495172537863,-0.031324584037066],[-0.030205387622118,0.077745124697685,0.097751595079899],[0.010594267398119,-0.034558527171612,0.0013370031956583]],[[0.038601476699114,0.0097619360312819,-0.055386617779732],[0.0043295929208398,-0.044634804129601,0.068008720874786],[0.045313697308302,-0.032762058079243,-0.072410099208355]],[[0.034003879874945,0.090401709079742,-0.031856972724199],[0.032828215509653,0.020172346383333,0.070401258766651],[0.10524418205023,0.076302602887154,0.031017556786537]],[[-0.023743225261569,0.0019616619683802,0.01267391256988],[-0.024991976097226,0.016643626615405,0.0084417285397649],[-0.045230124145746,0.095321804285049,0.023519787937403]],[[0.077428966760635,0.03312074393034,0.063817277550697],[0.078040540218353,0.056166876107454,0.038007754832506],[-0.0022476105950773,0.067771196365356,0.026716457679868]],[[0.10902390629053,0.054515846073627,-0.033526048064232],[-0.0076530389487743,-0.0016736739780754,0.079497560858727],[0.029120847582817,0.020816177129745,0.051147639751434]],[[0.02319355122745,0.008107372559607,0.082095012068748],[0.003451214870438,0.019774796441197,0.016912275925279],[0.055198207497597,0.036593280732632,0.062604360282421]],[[-0.0070260451175272,-0.092726245522499,0.076582752168179],[-0.018030090257525,-0.024246076121926,0.049047142267227],[-0.018565710633993,-0.035965863615274,0.025022907182574]],[[0.0053963093087077,-0.011788443662226,0.043751835823059],[0.081516392529011,0.019940286874771,0.083764761686325],[-0.018158122897148,0.099385596811771,-0.05750110372901]],[[-0.052100088447332,-0.019571704789996,0.05649197474122],[0.031246468424797,0.032045215368271,0.04194026812911],[-0.035188585519791,0.059141054749489,0.053412824869156]],[[0.046012535691261,0.043408934026957,0.03603183478117],[0.058851350098848,0.0021267128176987,0.081865064799786],[0.10936259478331,0.048039145767689,0.078815646469593]],[[-0.060761723667383,0.0050945426337421,-0.01932961307466],[0.015267206355929,0.016241589561105,0.051496494561434],[0.060443270951509,0.06452688574791,0.045627508312464]],[[0.047661155462265,-0.035204410552979,-0.038992360234261],[0.0028579789213836,-0.0006595118320547,0.041356705129147],[0.043180972337723,-0.054183956235647,0.06317562609911]],[[0.082683704793453,0.015191099606454,-0.020168747752905],[0.033041745424271,0.029772086068988,-0.019798615947366],[-0.013675756752491,0.05114408954978,0.048920080065727]],[[0.055033456534147,-0.004382265266031,-0.015016486868262],[-0.011240668594837,-0.0057642795145512,-0.02243478782475],[-0.013119443319738,0.016024943441153,0.023266280069947]],[[-0.003546497784555,0.024731559678912,0.081898465752602],[0.08109575510025,-0.010918986052275,0.048462729901075],[-0.01536977570504,-0.0035667594056576,0.053204283118248]],[[0.043041545897722,0.025730066001415,-0.0097736902534962],[-0.025748677551746,-7.5541633123066e-05,-0.003267161315307],[0.054255563765764,-0.046186313033104,-0.044709760695696]],[[-0.071542307734489,-0.026542283594608,0.015189726836979],[-0.028378758579493,0.046703442931175,-0.0010664428118616],[0.046102788299322,0.061905108392239,-0.033874601125717]],[[0.0036847766023129,-0.014090192504227,0.010338357649744],[-0.057347174733877,-0.055776067078114,0.00014371429278981],[0.061849068850279,0.051151238381863,0.051817137748003]],[[-0.10142592340708,-0.13237781822681,-0.057709310203791],[-0.12199500948191,-0.17121094465256,-0.1668077558279],[-0.11275894939899,-0.13118426501751,-0.16430781781673]],[[0.00065519101917744,0.031939893960953,0.055713649839163],[-0.00074411608511582,0.027480697259307,-0.10876979678869],[0.04348624125123,0.0029967124573886,0.0056244069710374]],[[0.042126856744289,0.09155148267746,0.040489267557859],[0.018016261979938,0.030022202059627,0.19298560917377],[-0.024247152730823,0.012922400608659,0.017015438526869]],[[-0.037439160048962,0.019598919898272,0.0079424949362874],[-0.017110904678702,-0.03695984557271,0.051562178879976],[-0.041930366307497,-0.024134531617165,-0.0094569623470306]],[[0.019151609390974,0.0010538586648181,-0.05270379036665],[0.043731436133385,-0.038453161716461,0.013763304799795],[-0.021877313032746,0.027291068807244,-0.0027127920184284]],[[-0.036561865359545,0.0073592257685959,-0.0077826860360801],[-0.018510261550546,0.041019063442945,-0.022058224305511],[-0.010274110361934,-0.02135131508112,-0.026441533118486]],[[0.028947537764907,0.074575267732143,-0.041415497660637],[0.057109605520964,-0.027635771781206,-0.039352584630251],[0.057112514972687,0.096672438085079,0.022866932675242]],[[-0.03101159632206,0.06169656291604,-0.026304742321372],[-0.016705511137843,0.026233736425638,-0.063504911959171],[-0.016522025689483,-0.0057745999656618,-0.036547295749187]],[[0.035831186920404,0.071959771215916,0.026608727872372],[0.0021759588271379,0.087386451661587,-0.01005401648581],[-0.037535462528467,0.033268690109253,0.008818568661809]],[[0.042914859950542,0.045491933822632,0.034251850098372],[0.09028947353363,0.027754118666053,0.10639497637749],[0.073227591812611,0.10149168968201,0.038825437426567]],[[-0.035340908914804,0.0022623343393207,-0.012418133206666],[-0.049973614513874,0.059862557798624,-0.033066220581532],[-0.015142074786127,-0.036152794957161,-0.016812050715089]],[[0.074581019580364,0.046557694673538,-0.040717538446188],[-0.034488946199417,-0.0088489633053541,-0.010561036877334],[-0.032896533608437,0.0032412649597973,-0.06227882951498]],[[0.0016128820134327,0.030912883579731,-0.042985636740923],[0.036291006952524,-0.0024595928844064,0.048706840723753],[0.050918869674206,0.050733271986246,0.079331383109093]],[[-0.010756672360003,-0.00082650955300778,-0.0026422538794577],[0.039468310773373,-0.032914988696575,0.039035342633724],[0.018023427575827,-0.028413416817784,-0.044979389756918]],[[0.029621193185449,0.077019408345222,0.041311502456665],[0.08478682488203,0.029540009796619,-0.023946447297931],[0.038275428116322,0.02427583001554,0.027256563305855]],[[0.0064984760247171,0.072742193937302,0.0083539113402367],[0.028035866096616,-0.021684061735868,-0.018626151606441],[0.077547185122967,0.070119492709637,-0.055366203188896]],[[0.053681816905737,0.016551531851292,0.042024228721857],[0.078970596194267,0.0091311298310757,0.010999327525496],[0.040057275444269,0.052574705332518,-0.0064563355408609]],[[-0.0022066989913583,-0.031522914767265,-0.056484248489141],[-0.0087064206600189,-0.031807202845812,0.079861737787724],[0.016226490959525,-0.063838049769402,-0.0021374067291617]]],[[[-0.061306640505791,-0.044966410845518,-0.06587640941143],[0.071204736828804,-0.073853693902493,-0.02975046262145],[0.055042948573828,-0.012044304050505,-0.027008565142751]],[[0.012804265134037,-0.057094186544418,-0.021651117131114],[0.069452457129955,0.073349311947823,0.046279430389404],[-0.17924475669861,0.079019919037819,-0.11084623634815]],[[0.12589858472347,0.041817668825388,-0.18463826179504],[-0.086220450699329,-0.046211872249842,-0.21102611720562],[0.029946928843856,-0.00069031672319397,-0.090151973068714]],[[0.035734504461288,0.054426092654467,0.06602181494236],[-0.037035394459963,0.096350938081741,0.016485603526235],[-0.010820248164237,0.041685700416565,0.075859151780605]],[[0.032780021429062,-0.061143644154072,-0.043544542044401],[0.030112642794847,0.090501718223095,-0.0029023170936853],[0.079685509204865,-0.029510920867324,0.05060313269496]],[[0.097295016050339,-0.10198305547237,-0.088052682578564],[-0.026386469602585,0.066451720893383,-0.080595880746841],[0.050144735723734,0.0019617027137429,0.086831584572792]],[[0.021602317690849,-0.051992934197187,0.049521531909704],[-0.0093765687197447,-0.0030331308953464,-0.047276340425014],[-0.082770578563213,-0.084419772028923,-0.069035306572914]],[[-0.00118873862084,-0.084742210805416,0.065828830003738],[-0.0068748625926673,0.031611461192369,0.082607589662075],[-0.024663381278515,-0.035254810005426,0.092467740178108]],[[-0.11150409281254,-0.047585006803274,-0.048987906426191],[0.01251467783004,-0.067830286920071,0.024747427552938],[-0.062255948781967,0.052003245800734,0.054344143718481]],[[-0.013490694575012,0.13735401630402,0.023340500891209],[0.0022334600798786,0.021008824929595,-0.090926826000214],[0.04938131198287,-0.042676649987698,0.035597778856754]],[[0.023194937035441,-0.094678461551666,-0.0076408674940467],[0.078065976500511,0.024876371026039,-0.076603978872299],[0.015303115360439,0.044570591300726,-0.12879948318005]],[[0.12132551521063,0.038602568209171,-0.0057703531347215],[-0.12494399398565,-0.053653795272112,0.0090677915140986],[0.29987791180611,-0.025503437966108,-0.12794862687588]],[[-0.016905749216676,-0.029417080804706,-0.062318705022335],[0.09785058349371,-0.10243130475283,0.0076466244645417],[-0.023307923227549,-0.029036393389106,-0.047827735543251]],[[-0.077820234000683,-0.059578660875559,-0.093178652226925],[0.14453360438347,0.049835439771414,-0.26581636071205],[0.19299271702766,-0.10577062517405,-0.078692570328712]],[[0.061542574316263,0.014419741928577,0.011414532549679],[-0.011328104883432,0.0046748165041208,-0.019078120589256],[-0.041676722466946,-0.083601348102093,-0.013225459493697]],[[0.031242962926626,0.13250301778316,-0.013832378201187],[-0.088521599769592,0.0046758358366787,-0.038705710321665],[-0.14668133854866,-0.01455135922879,0.0083306794986129]],[[0.030308352783322,-0.0014099989784881,-0.023758443072438],[-0.02650354988873,-0.00042052296339534,0.047946192324162],[0.0085234045982361,0.025030238553882,0.083157546818256]],[[-0.0024049791973084,-0.11487098783255,0.12163586914539],[0.015023052692413,-0.066015481948853,0.0779774710536],[-0.15676525235176,-0.073967106640339,-0.0858254134655]],[[-0.063244327902794,0.026453448459506,-0.1196320950985],[-0.025799170136452,-0.0815424695611,-0.057563226670027],[-0.0044992621988058,0.031800448894501,0.10719063133001]],[[0.14852675795555,0.038634300231934,-0.050222411751747],[-0.039354111999273,-0.022940279915929,0.075109384953976],[-0.038507558405399,0.042258061468601,-0.00014914697385393]],[[0.02940203435719,0.024730589240789,-0.046785406768322],[-0.014078761450946,-0.013936081901193,-0.012514069676399],[0.057082161307335,0.063200734555721,0.031707212328911]],[[0.086698219180107,-0.029579676687717,0.065090969204903],[0.10596260428429,0.048657223582268,0.047723058611155],[0.0058311210013926,-0.048488542437553,0.092236593365669]],[[-0.085785701870918,-0.037373244762421,0.13023681938648],[0.05542029812932,-0.015614136122167,-0.034329131245613],[0.028792886063457,-0.06366840004921,-0.053909990936518]],[[0.023007992655039,-0.030923578888178,-0.046001892536879],[-0.03745448961854,-0.0083880443125963,0.11132423579693],[-0.12063159793615,-0.033853109925985,0.02763869613409]],[[-0.011397470720112,-0.034262642264366,-0.065108582377434],[-0.023762019351125,0.080500833690166,0.0018625430529937],[-0.032823890447617,0.065895013511181,0.017365491017699]],[[0.021519858390093,0.0032416970934719,0.037769336253405],[-0.015710990875959,-0.0087229367345572,0.0095984265208244],[-0.07578856498003,0.015588705427945,0.0094882296398282]],[[0.047709286212921,-0.098272234201431,-0.063935801386833],[0.017298988997936,0.10005185753107,-0.074909009039402],[0.11519545316696,0.044242605566978,-0.11701335012913]],[[-0.029533850029111,-0.0082166651263833,-0.039402466267347],[0.093566961586475,-0.10796415805817,-0.027774399146438],[0.019053999334574,-0.098510131239891,-0.044490057975054]],[[-0.041584920138121,-0.102070979774,-0.14014053344727],[0.067382298409939,0.097090899944305,-0.084481187164783],[0.12306355684996,0.0384541451931,-0.090837195515633]],[[0.0071405777707696,-0.030190842226148,0.017185065895319],[-0.073334231972694,0.13769169151783,-0.066595770418644],[-0.067526139318943,-0.057073339819908,-0.067622564733028]],[[-0.090753197669983,-0.067096255719662,0.065596260130405],[0.12291220575571,0.03679096326232,-0.026383902877569],[-0.12285750359297,0.0025205051060766,0.0052066813223064]],[[-0.14478571712971,-0.097335778176785,-0.060900326818228],[0.051832482218742,-0.035490736365318,-0.097406826913357],[-0.15719386935234,0.0304652210325,0.095132999122143]],[[0.057187516242266,0.15946544706821,-0.027790896594524],[-0.071859665215015,-0.062440197914839,0.047967985272408],[0.00046521879266948,0.02525095269084,-0.14979714155197]],[[-0.077134191989899,-0.023825941607356,-0.023662958294153],[-0.082839637994766,-0.065742321312428,0.052824094891548],[0.047493636608124,-0.016237284988165,0.056976206600666]],[[-0.015318010933697,-0.0020574426744133,-0.018623178824782],[-0.020822171121836,-0.047208026051521,-0.0071826418861747],[0.060762919485569,0.072116680443287,0.13199563324451]],[[-0.020663859322667,0.023977154865861,-0.073891550302505],[0.013001325540245,-0.15125241875648,-0.0077881356701255],[-0.003489441704005,0.02772125788033,-0.063172608613968]],[[0.12224225699902,0.11125342547894,0.07923287153244],[0.043123155832291,-0.028755949810147,0.089904747903347],[0.052722420543432,-0.044628731906414,0.051064677536488]],[[-0.048089973628521,-0.05781077593565,0.0076871425844729],[0.046483281999826,0.0033086086623371,-0.12369641661644],[0.063461892306805,0.040834218263626,0.0097512938082218]],[[-0.082199946045876,0.053244981914759,-0.03216478228569],[-0.031865455210209,0.0081532904878259,-0.094172574579716],[-0.12888027727604,0.093231111764908,0.073881760239601]],[[0.014573190361261,-0.081269957125187,-0.089528158307076],[0.14013680815697,-0.026680020615458,-0.048776779323816],[0.023296600207686,0.20973041653633,0.19344756007195]],[[0.0038186653982848,-0.020747810602188,0.0098525071516633],[-0.052591059356928,-0.073624901473522,0.10294276475906],[-0.055387835949659,-0.0064353873021901,0.064136929810047]],[[0.15806737542152,0.023485591635108,5.6939952628454e-05],[0.016249069944024,-0.013210126198828,-0.064671561121941],[-0.044746823608875,0.066058732569218,0.093372464179993]],[[0.00019552101730369,0.087434507906437,-0.04424636438489],[0.05125555023551,-0.064001649618149,0.011474192142487],[0.03938901796937,0.085530065000057,0.093392349779606]],[[0.027898836880922,0.014340914785862,0.015424760058522],[-0.035151593387127,0.069852247834206,-0.052263490855694],[0.077382035553455,-0.057865358889103,-0.047773089259863]],[[0.1040616184473,0.022935578599572,-0.014779807068408],[0.028260117396712,0.020417639985681,-0.020036363974214],[0.017643380910158,0.058073509484529,0.040811154991388]],[[-0.010656802915037,0.0036763513926417,0.026225164532661],[-0.029324293136597,0.024224167689681,-0.016329890117049],[-0.019629880785942,0.043455474078655,0.054323758929968]],[[0.078299261629581,0.0031860964372754,0.10865830630064],[-0.039326127618551,0.048721794039011,-0.09553025662899],[0.012111583724618,-0.038258869200945,0.0252132024616]],[[-0.011311573907733,0.0019546095281839,-0.085526145994663],[-0.056174974888563,-0.039771981537342,0.0016587920254096],[0.044052522629499,-0.033137775957584,0.0041569331660867]],[[0.031966123729944,-0.0084743341431022,-0.16482980549335],[0.078663818538189,0.048063598573208,-0.026759939268231],[0.024116279557347,-0.049394551664591,-0.085717163980007]],[[-0.056584849953651,-0.0093763545155525,0.01214550063014],[0.15610188245773,0.061681855469942,-0.05039931461215],[-0.1058853790164,0.086728163063526,-0.0092515954747796]],[[0.027055542916059,0.056755550205708,0.086270958185196],[0.080649003386497,0.022453160956502,0.077963203191757],[-0.0024965186603367,-0.15783509612083,-0.079167313873768]],[[-0.0078977411612868,-0.067968957126141,0.066525235772133],[-0.025736311450601,-0.064675956964493,-0.06080836430192],[0.054060868918896,-0.14004020392895,-0.2752434015274]],[[0.016819100826979,0.0425167940557,0.059662070125341],[0.027474289759994,0.034771710634232,-0.015612977556884],[0.054815620183945,0.00070687726838514,0.039925128221512]],[[0.044177703559399,-0.10925096273422,-0.010108176618814],[-0.019571024924517,0.02604965865612,0.079812973737717],[0.062910571694374,0.033247143030167,0.12465570122004]],[[-0.085218735039234,0.016983766108751,-0.11007283627987],[0.050467807799578,-0.013299643062055,0.010408466681838],[-0.11888284981251,-0.046411395072937,0.055201966315508]],[[0.088794119656086,-0.11487993597984,0.064060568809509],[0.016467958688736,0.14645382761955,-0.16842050850391],[0.096453167498112,0.022003786638379,-0.070987939834595]],[[0.030648447573185,0.016444275155663,-0.01829799823463],[-0.026140954345465,0.096391476690769,-0.072035297751427],[0.029954191297293,0.063529819250107,-0.052097983658314]],[[-0.036576416343451,-0.033397138118744,-0.043897163122892],[-0.040154006332159,0.041025042533875,-0.067176707088947],[-0.011959049850702,-0.051164694130421,0.014809562824667]],[[-0.00044729403452948,0.026968756690621,-1.3274413504405e-05],[-0.037780940532684,0.20638583600521,-0.041634306311607],[-0.0036280711647123,-0.043775275349617,-0.076671905815601]],[[0.0011948611354455,-0.083236739039421,0.0010273354128003],[-0.026307061314583,0.084567986428738,0.07476457208395],[-0.010687870904803,-0.0082820076495409,0.060124341398478]],[[-0.038453947752714,-0.035293616354465,-0.12081488966942],[-0.044569794088602,-0.040748808532953,-0.025566695258021],[0.049446940422058,-0.0065580261871219,0.042648751288652]],[[-0.15488334000111,0.0068394159898162,-0.016842311248183],[-0.026393694803119,-0.009898791089654,0.12786802649498],[-0.018915103748441,-0.035502534359694,-0.015326098538935]],[[0.20663940906525,0.054427016526461,0.044275030493736],[-0.09078910946846,-0.15186131000519,0.027364803478122],[-0.025215085595846,0.049082402139902,-0.029017208144069]],[[-0.034189943224192,-0.004366984590888,0.080551698803902],[0.039489924907684,0.040259905159473,0.060134708881378],[0.10413421690464,-0.016504092141986,-0.0073864706791937]],[[-0.030483778566122,-0.073628723621368,0.061746835708618],[-0.049381043761969,-0.079735666513443,-0.092031568288803],[-0.031076705083251,0.10027282685041,-0.12153682112694]],[[0.031639039516449,0.070740535855293,0.032217368483543],[-0.059942163527012,0.028605381026864,0.11839548498392],[0.072251342236996,0.070079579949379,0.03209151700139]],[[0.11762579530478,-0.087853983044624,0.059938225895166],[0.081642962992191,-0.020110992714763,-0.017274651676416],[0.031780373305082,0.019643481820822,0.083118632435799]],[[-0.095056384801865,0.028801238164306,0.0086757028475404],[-0.10115691274405,0.065708607435226,0.21778021752834],[0.041281770914793,-0.059576701372862,-0.03420427441597]],[[0.12986087799072,-0.035239238291979,0.044790253043175],[0.083716109395027,-0.019925640895963,0.012908007949591],[0.020285964012146,-0.0014060819521546,-0.053971458226442]],[[-0.061387706547976,0.10131874680519,0.09414080530405],[-0.010925458744168,0.1472437530756,0.093216881155968],[-0.070569813251495,-0.079751342535019,0.097043238580227]],[[0.037398815155029,-0.1276498734951,0.11306668817997],[0.053909569978714,0.078776106238365,0.0021609116811305],[0.032364748418331,-0.055679522454739,0.0089507484808564]],[[-0.099848717451096,0.03054128959775,0.048727560788393],[-0.11742771416903,-0.10099057853222,-0.0053447778336704],[0.022816164419055,-0.023632749915123,-0.07441870123148]],[[-0.047910276800394,0.023360770195723,-0.12423197925091],[0.10134942084551,-0.21826526522636,0.041096184402704],[-0.091409757733345,-0.11091810464859,-0.1393591016531]],[[-0.16548070311546,-0.0047526373527944,-0.062084004282951],[-0.082763306796551,0.043774239718914,-0.0096920998767018],[-0.0080209458246827,0.026484537869692,0.025856738910079]],[[-0.043175086379051,0.048760522156954,0.035100094974041],[-0.05432004109025,0.016567884013057,-0.074907906353474],[-0.043016728013754,0.021856833249331,0.081834696233273]],[[0.11401096731424,-0.033864859491587,0.0019802686292678],[-0.048596072942019,-0.023631839081645,-0.067689724266529],[-0.026327567175031,0.055234745144844,0.026817901059985]],[[-0.016077795997262,0.060624778270721,0.090050399303436],[0.06930098682642,-0.10994438827038,-0.0059725428000093],[-0.025444038212299,-0.17997817695141,-0.095617651939392]],[[0.030470035970211,-0.043286837637424,0.094263948500156],[0.1154875010252,0.13014775514603,0.040753554552794],[0.0081275422126055,0.071217767894268,0.093985393643379]],[[-0.018739406019449,0.032539587467909,0.087972544133663],[-0.03525123000145,0.051945313811302,-0.068170249462128],[-0.086811453104019,-0.08593887835741,-0.069323472678661]],[[-0.081004574894905,-0.045679483562708,-0.1016546562314],[-0.0091448733583093,-0.032142702490091,0.032753635197878],[-0.087362825870514,-0.093787550926208,-0.18208560347557]],[[-0.11738841235638,-0.083853170275688,-0.036936204880476],[-0.0331528224051,0.013510156422853,0.033311355859041],[0.037715051323175,0.054162457585335,-0.025433661416173]],[[0.025286914780736,0.11361342668533,0.071825757622719],[0.018875889480114,0.023814158514142,0.01785453595221],[-0.068392589688301,-0.046813800930977,-0.010594892315567]],[[0.22278901934624,-0.06989599019289,0.0035763473715633],[0.010551043786108,0.079450905323029,-0.0034677544608712],[0.17105098068714,-0.067581012845039,-0.16282747685909]],[[0.022657418623567,-0.033148091286421,-0.06589213758707],[-0.075213529169559,0.092818520963192,-0.026829292997718],[0.01639224216342,-0.083118185400963,0.017316626384854]],[[0.0093337092548609,-0.10053658485413,-0.072408445179462],[-0.17738871276379,0.16822156310081,0.060587152838707],[0.21739727258682,0.097340792417526,-0.085985921323299]],[[0.18539121747017,0.057414025068283,0.0032444773241878],[-0.077777944505215,-0.026969844475389,0.0047911573201418],[0.041859194636345,-0.003632053732872,0.10061302036047]],[[-0.0036223398055881,-0.051682081073523,0.0085443602874875],[-0.0039894003421068,0.049223449081182,-0.0072291227988899],[0.042219031602144,0.038876432925463,-0.036200389266014]],[[-0.033357627689838,-0.12526281177998,-0.20745067298412],[-0.046526778489351,0.081863753497601,-0.029782023280859],[0.06310249119997,0.075060360133648,-0.056180622428656]],[[0.0040452075190842,0.023327531293035,0.050278279930353],[0.0068049086257815,0.050405856221914,0.083086714148521],[-0.10619436949492,-0.044762823730707,-0.040829066187143]],[[0.10289415717125,-0.043072436004877,0.030953586101532],[0.10733933001757,-0.079620733857155,0.023970510810614],[0.040948495268822,0.0064562340267003,-0.0039616245776415]],[[0.091134138405323,-0.0029780354816467,-0.049769159406424],[0.0040311757475138,-0.096469514071941,-0.0051973015069962],[0.011319546028972,-0.010604587383568,-0.063559465110302]],[[-0.017094733193517,-0.046145290136337,0.099176689982414],[-0.061516206711531,-0.04400086030364,-0.011028125882149],[-0.086143389344215,-0.038177236914635,0.0032596183009446]],[[0.082268208265305,0.029904650524259,-0.027147267013788],[0.01870528422296,-0.10636126995087,-0.024743512272835],[0.058261632919312,0.029729422181845,0.01993721537292]],[[0.0519700050354,-0.12022488564253,-0.068547278642654],[0.010575376451015,0.011390176601708,-0.0098780384287238],[-0.016801100224257,0.11075779050589,0.042472034692764]],[[0.0062641175463796,-0.042808778584003,-0.0054288082756102],[-0.01024920027703,-0.0024177026934922,-0.033431049436331],[-0.047816749662161,-0.13048176467419,-0.020157093182206]],[[-0.037043213844299,0.069097407162189,-0.10629051178694],[-0.020565578714013,0.041201323270798,-0.024844201281667],[0.11829160153866,0.039935879409313,0.014331746846437]],[[0.083219297230244,-0.0001503479143139,-0.048442758619785],[-0.10423594713211,-0.15564219653606,-0.074389331042767],[-0.15978389978409,-0.062512680888176,-0.10682891309261]],[[0.050923027098179,0.069752871990204,0.028627609834075],[0.002352574840188,0.072624176740646,-0.047564897686243],[0.018882540985942,0.024373959749937,0.0007655315566808]],[[-0.012805725447834,-0.10267999768257,-0.079564772546291],[0.01642763055861,-0.046362839639187,-0.10292414575815],[0.029950553551316,-0.038831651210785,-0.10782621055841]],[[-0.033092323690653,0.16683751344681,-0.036230605095625],[-0.00012026708282065,0.0088190045207739,-0.021325539797544],[0.01650458201766,0.037002883851528,0.029482817277312]],[[-0.15430292487144,0.032076083123684,-0.003089876845479],[-0.14530554413795,0.074517488479614,-0.050030946731567],[0.035813070833683,-0.067684262990952,-0.019754091277719]],[[-0.0038191829808056,-0.11658771336079,0.0064021139405668],[0.012619190849364,-0.044055007398129,-0.075011119246483],[0.040277920663357,-0.10354967415333,0.094987377524376]],[[0.016537200659513,-0.011177052743733,-0.043829876929522],[0.074555136263371,0.058270715177059,0.0012545289937407],[0.09396144002676,0.13459829986095,0.015667648985982]],[[-0.0074708731845021,-0.015978641808033,0.050685789436102],[-0.03662134334445,-0.0027336517814547,-0.083581693470478],[-0.084688015282154,-0.046662546694279,0.043652467429638]],[[-0.0042482577264309,0.015043489634991,-0.011632169596851],[-0.034032788127661,0.036655619740486,-0.029597282409668],[-0.020657723769546,-0.12149941921234,-0.058259665966034]],[[0.017744557932019,-0.0375418625772,-0.081614397466183],[0.060563817620277,-0.013104935176671,0.064548335969448],[0.041626624763012,0.045628938823938,0.041092567145824]],[[0.040006969124079,-0.0074960240162909,-0.007340946700424],[0.0294508934021,-0.037217859178782,-0.0048319608904421],[0.051526993513107,0.030093232169747,0.083034619688988]],[[0.088647939264774,0.01460081897676,-0.035621266812086],[0.12587562203407,0.030796505510807,-0.039872944355011],[0.026483844965696,0.029288930818439,-0.023546123877168]],[[0.12765726447105,-0.016693886369467,0.079685926437378],[0.056569904088974,-0.21721622347832,-0.071001298725605],[-0.051445461809635,0.03973426669836,0.16867274045944]],[[-0.01366454642266,0.040504086762667,0.069709718227386],[-0.023929953575134,0.014672219753265,0.0074190669693053],[-0.051128529012203,-0.14604890346527,-0.057584051042795]],[[-0.069622792303562,-0.047843765467405,0.057771474123001],[0.036626689136028,-0.040583919733763,0.03728199377656],[0.027164464816451,-0.0091798845678568,-0.019897008314729]],[[-0.14684773981571,-0.14262799918652,-0.037830289453268],[0.070377930998802,-0.11383982002735,0.10597804933786],[0.02976992353797,0.077665515244007,0.026608346030116]],[[-0.026513608172536,-0.050630804151297,0.24667812883854],[0.0029496666975319,0.0049173105508089,0.058709230273962],[-0.10166224092245,-0.0024535523261875,0.12274198979139]],[[-0.079318657517433,-0.18441320955753,-0.0022869165986776],[0.0097088348120451,-0.016391625627875,0.05524892359972],[0.021742885932326,-0.031015906482935,0.026057647541165]],[[0.078236244618893,0.037330590188503,0.10177376121283],[-0.048359461128712,-0.021454870700836,-0.024514980614185],[-0.19182994961739,0.015418350696564,0.13122846186161]],[[0.078618273139,-0.067980840802193,-0.03731669858098],[0.0011723169591278,0.071907050907612,-0.094076782464981],[-0.070976607501507,-0.1460525393486,-0.072050355374813]],[[-0.023171143606305,0.019408484920859,-0.10754612088203],[0.007910936139524,0.0085062328726053,-0.030724544078112],[0.018435938283801,0.026949256658554,0.069501161575317]],[[0.02652420476079,0.038385469466448,0.068328037858009],[-0.10732565820217,0.11127136647701,-0.14750237762928],[0.056423522531986,0.045701071619987,-0.099715143442154]],[[-0.022623816505075,-0.17340913414955,-0.17829610407352],[-0.058662440627813,0.057595763355494,0.0074841431342065],[-0.013721362687647,-0.07386876642704,-0.11674483865499]],[[0.16370536386967,0.039241157472134,0.088741309940815],[0.035667717456818,0.082598008215427,0.11166150122881],[0.023897865787148,-0.028753833845258,0.061026446521282]],[[-0.096498221158981,0.078841976821423,0.1128516420722],[-0.063072048127651,0.02811455540359,-0.028068238869309],[-0.07229670137167,0.0012279717484489,0.016518216580153]],[[-0.044740311801434,-0.059298500418663,-0.019152771681547],[-0.04533552005887,0.019451849162579,-0.030586445704103],[0.022296044975519,-0.018379727378488,-0.05683159455657]],[[0.017659826204181,-0.10466976463795,0.0041158380918205],[0.02732309140265,0.010906454175711,0.0014245315687731],[0.018783681094646,-0.011440171860158,0.07836127281189]],[[-0.044728089123964,-0.11256117373705,0.032738015055656],[0.04729737341404,-0.020960973575711,-0.019140359014273],[0.018657639622688,0.052179556339979,0.082818396389484]],[[0.022190183401108,-0.04659691080451,0.011684107594192],[-0.070732347667217,-0.068603582680225,0.026962134987116],[0.10594027489424,0.047562647610903,0.13594894111156]],[[-0.025919558480382,-0.0010485698003322,0.070239178836346],[0.020735276862979,0.069843947887421,0.028540255501866],[-0.042246963828802,-0.012876369990408,0.086156405508518]],[[0.031999137252569,0.11119782924652,0.05681287124753],[-0.054731894284487,1.9458442693576e-05,0.0055956966243684],[-0.053598403930664,-0.10086692869663,0.090342544019222]],[[-0.15831470489502,0.034261208027601,-0.10783857852221],[0.11028607189655,0.012388484552503,-0.1183505281806],[-0.17250630259514,0.0065694064833224,0.032297100871801]]],[[[0.05620714277029,0.067745715379715,-0.040445309132338],[-0.011986912228167,0.022246938198805,0.052247289568186],[-0.026252856478095,0.045849099755287,0.06501591950655]],[[-0.035582758486271,-0.001322133350186,-0.030007313936949],[-0.0032231730874628,-0.016044139862061,-0.015578025951982],[-0.11588690429926,-0.041245102882385,0.011254742741585]],[[0.0049106506630778,-0.024921225383878,0.0049464707262814],[-0.092813678085804,0.076739795506001,0.035143252462149],[0.0044948440045118,-0.044587779790163,0.016133476048708]],[[-0.0039103492163122,0.041904978454113,0.042794179171324],[-0.023672889918089,-0.076166719198227,-0.011503257788718],[0.0014777086907998,0.029622813686728,0.054465502500534]],[[-0.10874802619219,-0.0061807809397578,-0.02311010286212],[0.027801569551229,0.019942948594689,-0.089937895536423],[-0.0020371684804559,0.08385156840086,0.066813006997108]],[[0.0088363839313388,-0.044635079801083,0.019707746803761],[0.074477173388004,0.069634608924389,0.0078812688589096],[0.034562058746815,0.04067001491785,0.009575811214745]],[[0.019729200750589,-0.046457752585411,-0.019534388557076],[-0.083339758217335,0.049515031278133,0.0015692870365456],[-0.024327788501978,0.025495918467641,-0.028121357783675]],[[0.038506433367729,0.055627670139074,0.082416109740734],[0.030219586566091,0.026069624349475,0.098392702639103],[0.041898995637894,0.007255288772285,0.027162188664079]],[[-0.015295213088393,0.0036483069416136,0.047727737575769],[-0.042066339403391,0.058278206735849,-0.07661410421133],[0.019646681845188,-0.018612392246723,-0.021168859675527]],[[-0.02643882855773,-0.084634274244308,0.04752204567194],[0.028988461941481,0.00047876214375719,-0.024766085669398],[0.024671617895365,0.0035769243258983,-0.016799559816718]],[[-0.0038810654077679,-0.01635299064219,-0.034955188632011],[0.0019863462075591,-0.055369570851326,0.080738708376884],[0.031710676848888,-0.013861160725355,-0.050326876342297]],[[0.02293330989778,-0.03993409126997,0.039877261966467],[-0.0090612722560763,-0.01378917042166,0.0021443124860525],[-0.019069923087955,0.010079112835228,0.0045525636523962]],[[0.014192886650562,-0.066896714270115,-0.048061106353998],[-0.0075515569187701,0.066951140761375,0.053893577307463],[1.5439691196661e-06,-0.03781545907259,-0.019787730649114]],[[-0.028967898339033,0.0026887319982052,-0.0052733533084393],[-0.022522110491991,-0.063273996114731,0.019027326256037],[0.036977879703045,-0.026098046451807,-0.0041788253001869]],[[0.028125246986747,-0.031541608273983,0.048885315656662],[-0.012140607461333,-0.017804283648729,-0.014608227647841],[-0.1399200707674,0.05302307754755,0.037039708346128]],[[-0.026096079498529,-0.0058858380652964,0.027560273185372],[-0.038410037755966,0.033924452960491,-0.026206420734525],[-0.068780735135078,0.034153766930103,-0.082875870168209]],[[-0.00038848543772474,-0.0011505348375067,0.02387335896492],[-0.002948671579361,0.013121855445206,0.015243152156472],[0.042322229593992,0.038575574755669,0.027578338980675]],[[-0.092314302921295,-0.0049781738780439,-0.07957711815834],[0.021206321194768,-0.052917245775461,-0.011204310692847],[0.00099313771352172,-0.093273289501667,0.0097967525944114]],[[0.094154670834541,-0.060291841626167,-0.016589624807239],[-0.00083446578355506,0.082259967923164,-0.00028694610227831],[0.0056896470487118,-0.0010999487712979,0.098068781197071]],[[-0.04584277048707,-0.077392853796482,-0.047375902533531],[0.014008701778948,0.015536261722445,-0.030834998935461],[0.0048472350463271,-0.017517019063234,0.028992190957069]],[[-0.029907738789916,-0.025639101862907,-0.075106345117092],[-0.05554237216711,-0.069820739328861,0.045001540333033],[-0.11923132836819,0.0026918959338218,-0.072438277304173]],[[-0.015589108690619,0.081421941518784,0.015777627006173],[-0.01870777644217,0.037427973002195,0.083313450217247],[-0.018159918487072,0.04898614063859,0.0025431092362851]],[[-0.0094723710790277,0.02814350835979,0.031881477683783],[-0.022454811260104,-0.01812650077045,0.076468288898468],[0.028834002092481,-0.063902877271175,0.061739936470985]],[[-0.017556140199304,-0.027072770521045,-0.065991275012493],[-0.007061802316457,0.065670236945152,0.022291598841548],[-0.099383592605591,-0.024715015664697,-0.031416300684214]],[[0.021844668313861,0.027311889454722,-0.015407214872539],[-0.00067269935971126,0.042536851018667,0.021829929202795],[-0.0011081119300798,-0.0035700604785234,-0.019016679376364]],[[-0.0015562288463116,-0.0063731740228832,0.018616130575538],[0.04010271653533,0.024035101756454,0.032914433628321],[-0.011618086136878,0.0089427018538117,-0.033663012087345]],[[0.042235184460878,-0.042149994522333,0.013300385326147],[0.105255022645,0.0040533989667892,0.0098681161180139],[-0.03578295186162,0.040392074733973,-0.046693988144398]],[[-0.0012587554519996,0.0028376157861203,-0.032134015113115],[-0.0075189098715782,-0.0030016447417438,0.016841096803546],[-0.053522612899542,0.040237460285425,0.0090776681900024]],[[-0.018193295225501,0.07780259847641,0.010980283841491],[-0.049563203006983,-0.0014304065844044,-0.040093705058098],[0.047653704881668,-0.033341459929943,0.008150439709425]],[[0.065419636666775,0.016875024884939,-0.016645627096295],[0.042281415313482,0.0077144117094576,-0.027088766917586],[0.094216361641884,-0.13799388706684,0.019645996391773]],[[-0.0033150780946016,0.019274029880762,0.072324208915234],[0.050660986453295,0.0018465670291334,-0.015571426600218],[0.084230199456215,0.053748480975628,0.022212509065866]],[[0.060375493019819,0.019754137843847,-0.023816032335162],[-0.0092700654640794,-0.067532017827034,-0.021141190081835],[0.087910398840904,0.09098756313324,-0.047689817845821]],[[0.0096939643844962,0.029071493074298,0.022814551368356],[-0.037855196744204,0.042451415210962,0.051159743219614],[0.073076494038105,0.024530705064535,0.13154584169388]],[[0.030122438445687,-0.025217762216926,0.018433446064591],[-0.035440023988485,0.0058147902600467,0.045871425420046],[0.0029205833561718,-0.025905400514603,0.062891088426113]],[[-0.0096746757626534,0.076731503009796,0.040864549577236],[0.01799738779664,0.024776855483651,0.028861053287983],[-0.01149704772979,-0.094292044639587,-0.01608781516552]],[[-0.04239047318697,0.051292862743139,0.039445038884878],[0.025280708447099,-0.027575714513659,0.019554316997528],[-0.036104302853346,0.013261754997075,-0.03759390860796]],[[0.00097855553030968,0.015421827323735,0.019302504137158],[0.0068964692763984,-0.02459653839469,0.068314746022224],[-0.0061722728423774,0.018199747428298,0.046315684914589]],[[-0.0080255009233952,0.038207076489925,-0.015016160905361],[-0.0018678155029193,0.0032528210431337,-0.057308983057737],[0.02879442460835,0.037568263709545,-0.095205217599869]],[[0.033035051077604,0.035343073308468,-0.040750458836555],[-0.036090966314077,-0.027321171015501,-0.087392345070839],[-0.064961791038513,-0.025403715670109,-0.024039017036557]],[[0.038857873529196,0.061289485543966,0.069541096687317],[0.01761469990015,-0.003507167333737,0.031622119247913],[0.051593173295259,-0.089523762464523,-0.071055665612221]],[[-0.014845407567918,-0.012507570907474,0.00077283679274842],[-0.050267782062292,0.018127094954252,-0.041574452072382],[0.06831406056881,0.066960647702217,0.065046779811382]],[[0.06496799737215,0.047416716814041,0.065944842994213],[0.060967665165663,0.053506277501583,0.049491252750158],[0.044339966028929,0.039632525295019,0.024383384734392]],[[0.0354143679142,-0.0020993978250772,0.0090801762416959],[0.054105062037706,0.0062430752441287,0.056167088449001],[0.061122950166464,0.017243076115847,-0.037852317094803]],[[0.034935969859362,0.0043372861109674,0.015441463328898],[-0.029638830572367,-0.089411236345768,0.012494625523686],[0.042765151709318,0.028587186709046,0.0018627988174558]],[[0.010571194812655,0.0672747194767,0.028045332059264],[0.030706258490682,-0.038012277334929,0.0097435265779495],[-0.0024703009985387,0.037699770182371,0.053350858390331]],[[0.13649922609329,0.048464171588421,-0.011883161962032],[0.11845970898867,-0.03285425901413,-0.038589794188738],[-0.042754851281643,0.037235889583826,-0.031868856400251]],[[-0.0035410523414612,-0.020294420421124,-0.064215116202831],[-0.0074649550952017,-0.016672799363732,-0.042521309107542],[-0.072425819933414,-0.028142411261797,0.047517269849777]],[[-0.041885655373335,-0.043800286948681,-0.00042538015986793],[-0.057437624782324,0.063903741538525,0.020511228591204],[-0.076719976961613,0.019119556993246,0.0030638601165265]],[[-0.030123844742775,-0.068874090909958,0.051856931298971],[0.023292172700167,-0.065262466669083,-0.08786091953516],[0.016406465321779,0.027434287592769,-0.053027920424938]],[[-0.042519092559814,-0.097373798489571,-0.038887269794941],[-0.064862720668316,0.03578070178628,0.016847623512149],[0.0059085739776492,-0.017462521791458,-0.026726746931672]],[[-0.073123745620251,0.029860133305192,0.00200723297894],[0.0039705354720354,-0.041949868202209,0.0029539864044636],[-0.029099674895406,0.0057978616096079,0.0062109264545143]],[[-0.0068527180701494,-0.11785495281219,0.054562717676163],[0.060040738433599,-0.016324523836374,0.015501934103668],[-0.046845801174641,0.03729884698987,0.040153328329325]],[[0.04626577720046,0.030838968232274,0.017000446096063],[-0.024161467328668,-0.04730861634016,-0.038433723151684],[-0.016518913209438,0.0050498116761446,-0.0047985105775297]],[[0.035328440368176,-0.0020498854573816,-0.056327942758799],[-0.018153036013246,0.041906889528036,0.027164427563548],[-0.039203815162182,-0.028255827724934,0.0088650407269597]],[[-0.038919985294342,0.036825690418482,0.0096707949414849],[0.019629618152976,0.010955337435007,0.028827967122197],[0.049182150512934,0.073938138782978,0.052072998136282]],[[0.040015880018473,-0.0019865513313562,0.043622005730867],[-0.058330103754997,0.014842823147774,-0.097441464662552],[0.067207388579845,0.055182222276926,-0.0087872501462698]],[[0.026900751516223,-0.050218895077705,0.050059992820024],[0.021643348038197,0.046151805669069,-0.062288150191307],[-0.070679411292076,0.096425019204617,0.004081211052835]],[[-0.021774919703603,-0.004905070643872,-0.034312352538109],[0.080128036439419,-0.00014022739196662,-0.080441489815712],[0.0016909491969272,-0.060119461268187,-0.09770318120718]],[[0.016355603933334,0.030065963044763,0.095662161707878],[-0.032645363360643,-0.0052068536169827,0.032209545373917],[0.057725574821234,0.057572260499001,-0.0049639344215393]],[[0.060843829065561,0.018720293417573,-0.007541443221271],[-0.038219667971134,-0.047804173082113,-0.011117620393634],[-0.017220743000507,0.0021508119534701,-0.027711989358068]],[[0.02012019790709,-0.0060421046800911,0.015001562424004],[0.015447525307536,0.064052261412144,0.046867582947016],[-0.04428818821907,-0.0149290189147,0.026927322149277]],[[0.031470708549023,-0.033088579773903,0.049399606883526],[0.072176799178123,-0.072472684085369,-0.01244078669697],[-0.03147704154253,-0.0059968368150294,0.021581763401628]],[[0.092259660363197,-0.0078050498850644,0.017091609537601],[0.016541687771678,-0.0028108509723097,-0.0074689495377243],[0.010674648918211,-0.080800242722034,0.068640612065792]],[[0.027127239853144,0.086020216345787,0.024598514661193],[0.066211044788361,0.010002383030951,0.066968269646168],[0.028309335932136,0.01208832859993,0.048038862645626]],[[0.0042311889119446,-0.030475202947855,0.0053363828919828],[-0.0079554812982678,0.065246611833572,-0.027318552136421],[-0.089015953242779,-0.034544423222542,0.024208376184106]],[[0.028786793351173,0.05901649966836,0.016642853617668],[0.064453691244125,0.055700823664665,0.01352926902473],[0.023005468770862,0.038570668548346,-0.02715333737433]],[[0.0203628949821,-0.04197982698679,-0.036770228296518],[0.040381886065006,0.012098968960345,0.019823923707008],[-0.050769247114658,0.057023514062166,-0.056487414985895]],[[0.029085882008076,0.046682976186275,-0.036503225564957],[0.0061137420125306,0.012356470339,0.019259184598923],[-0.0030904284212738,-0.046125058084726,0.083717420697212]],[[0.0071834679692984,0.010270833037794,0.015862964093685],[0.048799481242895,0.04848862439394,0.0092477966099977],[0.021810118108988,0.11166451126337,-0.082933805882931]],[[-0.0033629785757512,0.094042219221592,-0.053840342909098],[0.019372437149286,-0.022893991321325,0.039993181824684],[0.060521673411131,0.16489678621292,0.014767019078135]],[[0.028507817536592,0.034271713346243,-0.0026396054308861],[0.014632425270975,0.028138939291239,0.12635953724384],[0.022167593240738,0.0071361535228789,-0.015848442912102]],[[-0.0056459689512849,0.014215731061995,0.057861432433128],[0.053995959460735,-0.057629998773336,-0.0096002481877804],[0.061256233602762,0.0071193082258105,-0.035756539553404]],[[-0.060007505118847,0.0046653277240694,0.0066795032471418],[0.026234710589051,-0.042924970388412,0.02370416931808],[-0.054773543030024,-0.032416526228189,0.032387852668762]],[[-0.045854203402996,0.031923022121191,-0.025715062394738],[0.013511435128748,0.019743388518691,0.04537895694375],[0.040553484112024,-0.072032228112221,0.062063053250313]],[[0.033420529216528,-0.022308651357889,-0.060773469507694],[0.0062700542621315,-0.012132960371673,0.011682074517012],[0.023176813498139,0.025834212079644,-0.028753306716681]],[[-0.038108717650175,-0.0014676722930744,-0.048079743981361],[0.011276764795184,0.051741674542427,-0.088759534060955],[0.10495875775814,0.010844184085727,-0.078946374356747]],[[-0.027507303282619,0.04070633277297,-0.037139520049095],[-0.053507331758738,0.012129831127822,-0.058564595878124],[-0.03174102678895,-0.016427591443062,0.048593785613775]],[[0.049608688801527,0.052334357053041,0.11086754500866],[0.048001427203417,0.047491248697042,-0.02282452583313],[0.12590681016445,-0.032584741711617,0.014940828084946]],[[0.0030611506663263,-0.0074102547951043,0.074161201715469],[-0.0061669014394283,-0.094285190105438,-0.0034751479979604],[-0.048682752996683,0.047425482422113,0.025094324722886]],[[0.080841571092606,0.017331749200821,0.042359352111816],[0.12076885998249,-0.07499835640192,-0.023199412971735],[0.079985857009888,-0.014447868801653,0.011498358100653]],[[-0.028098443523049,-0.05460487678647,0.024059750139713],[-0.013080287724733,0.05045010894537,0.039953969419003],[0.021377021446824,-0.03333218023181,-0.0064466209150851]],[[-0.035903498530388,-0.055574804544449,-0.079998269677162],[-0.030359670519829,-0.022601762786508,-0.0088447881862521],[-0.02363877184689,0.014782456681132,0.042417541146278]],[[0.037035476416349,0.00028402148745954,-0.0019867185037583],[-0.018477899953723,0.011760702356696,0.060593798756599],[0.069288298487663,-0.083957105875015,0.04297286272049]],[[-0.034476201981306,0.11341600865126,0.037371970713139],[0.018806988373399,0.0098754605278373,-0.050355233252048],[0.0023842791561037,0.02594661898911,-0.064540408551693]],[[0.095506109297276,0.044790502637625,0.0059454212896526],[0.03383707255125,0.027368729934096,0.077053926885128],[0.065863862633705,-0.051410883665085,0.029614310711622]],[[0.034145563840866,0.0031644920818508,-0.0093426229432225],[0.058632645756006,0.018641464412212,-0.032861474901438],[-0.0025276192463934,-0.017204336822033,-0.12422681599855]],[[0.067285634577274,-0.072511114180088,0.016794640570879],[-0.012630666606128,-0.036815460771322,0.039251878857613],[0.021535018458962,0.07088290899992,0.046197909861803]],[[0.056093126535416,0.078100897371769,0.069041915237904],[0.082232251763344,0.059493146836758,0.0037121518980712],[-0.025715785101056,0.058323219418526,0.066970504820347]],[[-0.005063715390861,0.048147678375244,0.019672762602568],[0.025514367967844,0.013216852210462,0.067558147013187],[0.0001530278386781,0.014975651167333,-0.0047106649726629]],[[-0.048570860177279,0.024430472403765,0.020018182694912],[-0.058260671794415,-0.0063857827335596,-0.040355004370213],[0.090391784906387,0.0085614761337638,-0.061398737132549]],[[-0.0026532867923379,-0.011124812066555,0.068360738456249],[-0.0054746363312006,0.047167789191008,0.025672797113657],[0.049931235611439,0.021142553538084,-0.023074077442288]],[[-0.046657741069794,0.013779970817268,0.070345968008041],[0.011886620894074,0.01313587743789,-0.026125678792596],[0.048881985247135,-0.047679238021374,0.011012399569154]],[[0.016281984746456,0.043748907744884,0.0090733263641596],[0.069379277527332,-0.013447485864162,0.013142248615623],[-0.082589969038963,0.0052514309063554,0.056483075022697]],[[0.063511893153191,-0.010027497075498,-0.022103635594249],[-0.020322347059846,-0.021977679803967,-0.040493402630091],[0.015074851922691,0.020306196063757,0.059836335480213]],[[-0.0047288900241256,0.024533409625292,0.012114898301661],[-0.037983886897564,0.019814418628812,0.018859097734094],[0.10123632103205,-0.087396115064621,0.10345997661352]],[[0.039218060672283,0.010371273383498,-0.018721919506788],[-0.0040299268439412,-0.015951419249177,0.076937608420849],[-0.0077138021588326,0.047351516783237,0.039596632122993]],[[-0.023139977827668,0.041651744395494,0.023824337869883],[-0.019233575090766,-0.017122415825725,0.065013013780117],[-0.03695322573185,-0.028883721679449,-0.029376888647676]],[[0.076230719685555,0.044472519308329,0.037587318569422],[0.072424881160259,-0.018861420452595,0.065502569079399],[0.038968406617641,0.077602975070477,0.053525742143393]],[[0.022973276674747,-0.00089582049986348,0.016298232600093],[0.052063331007957,-0.02069042250514,-0.040506675839424],[0.10720263421535,0.0027113689575344,-0.03274067491293]],[[-0.068086080253124,0.036810874938965,-0.0067364554852247],[-0.015359819866717,0.075792640447617,0.065247610211372],[0.0086331674829125,0.045851025730371,-0.027997957542539]],[[-0.031245075166225,-0.12275642901659,-0.013168124482036],[-0.028903394937515,0.015649540349841,-0.017360154539347],[-0.050906531512737,0.075276039540768,0.030813962221146]],[[0.056962713599205,0.029005398973823,0.024581430479884],[0.033971443772316,0.075038492679596,0.01833038777113],[-0.03174177184701,-0.014324758201838,0.00014907777949702]],[[0.043968040496111,0.0010048133553937,0.021476035937667],[0.049040019512177,-0.019881024956703,-0.0059662698768079],[0.053163196891546,0.025383854284883,0.02480137348175]],[[-0.019800636917353,-0.056132726371288,-0.063096411526203],[-0.11022020876408,0.024318896234035,-0.0091016264632344],[-0.093853116035461,0.061658322811127,0.022764589637518]],[[-0.017445573583245,0.0021371194161475,0.061700183898211],[-0.040620297193527,-0.0039589339867234,-0.05340301245451],[0.057034078985453,-0.018373696133494,0.10947224497795]],[[0.025544723495841,-0.054755337536335,-0.033514842391014],[0.071205109357834,0.0063090184703469,0.043954908847809],[-0.044696677476168,0.050678953528404,0.0010338420979679]],[[0.13535389304161,-0.0076733068563044,0.017712393775582],[-0.035507950931787,0.027278957888484,-0.039065327495337],[0.090658515691757,-0.045853722840548,-0.044617045670748]],[[0.033559698611498,0.048290658742189,-0.049952927976847],[-0.010343136265874,0.011478858068585,-0.02168994396925],[-0.095011591911316,-0.032010942697525,0.0058048968203366]],[[0.0067291124723852,-0.059221364557743,0.028846058994532],[-0.0012250660220161,-0.038922961801291,-0.062748432159424],[0.0027049784548581,0.022496473044157,-0.084930814802647]],[[0.057790420949459,-0.029905552044511,-0.042884197086096],[0.013203821144998,0.0042947502806783,0.074708074331284],[0.11152210831642,0.045843370258808,-0.013317117467523]],[[0.063368022441864,-0.033901106566191,0.004181104246527],[0.0025394291151315,0.081287674605846,-0.0083868820220232],[-0.047304432839155,-0.035316053777933,-0.020963219925761]],[[0.014926339499652,-0.072229757905006,-0.012970784679055],[-0.01941192895174,-0.047278586775064,-0.010010745376348],[-0.032916761934757,-0.021165346726775,0.080352015793324]],[[-0.015083823353052,0.011446063406765,-0.023891279473901],[-0.029640544205904,0.042444534599781,-0.027711881324649],[0.053815323859453,-0.018397009000182,-0.1044764816761]],[[0.07655893266201,-0.010968648828566,0.030615413561463],[0.041820637881756,-0.029262913390994,-0.0056053935550153],[0.057826917618513,0.03533698245883,0.016080910339952]],[[-0.051523018628359,0.020689910277724,-0.00094532693037763],[-0.032263293862343,0.015484698116779,-0.045221883803606],[-0.10019683837891,-0.046796075999737,-0.074014127254486]],[[-0.049270950257778,-0.0157963745296,0.018866097554564],[-0.023106863722205,-0.023618588224053,0.0076637105084956],[-0.03983810916543,-0.063331283628941,-0.0043104398064315]],[[0.095895856618881,0.034753147512674,0.04343469440937],[0.012927686795592,-0.038841668516397,0.02973654307425],[0.014599688351154,0.030949965119362,0.071815229952335]],[[-0.017788995057344,-0.056250851601362,0.1031408905983],[-0.025696244090796,0.016008943319321,-0.053672552108765],[-0.018066190183163,-0.0043597696349025,-0.082010477781296]],[[0.040192726999521,-0.10844050347805,0.012276593595743],[-0.07548450678587,-0.050979979336262,0.0077957953326404],[0.018061364069581,-0.013237786479294,0.054855614900589]],[[-0.064686097204685,0.058510567992926,0.011236651800573],[0.034679464995861,0.065215304493904,0.069922916591167],[0.024476576596498,-0.020723747089505,0.036005489528179]],[[0.031078580766916,-0.025644386187196,0.0087509229779243],[-0.067971274256706,-0.066217847168446,-0.084884323179722],[0.0587168186903,-0.047051008790731,0.019032642245293]],[[0.055800341069698,-0.040734633803368,0.025497326627374],[-0.0048970854841173,0.084937259554863,-0.00765939662233],[-0.033221926540136,-0.045285530388355,0.058574866503477]],[[0.0068436563014984,-0.041548725217581,-0.042521610856056],[0.0040883659385145,-0.078716605901718,-0.024686941877007],[-0.01306825876236,-0.10509766638279,0.033665966242552]],[[-0.033648766577244,-0.0077991560101509,0.044634971767664],[0.0095376819372177,0.080906003713608,0.019477812573314],[-0.01732574775815,0.023398438468575,0.0015168088721111]],[[0.038608852773905,-0.022872930392623,0.029126783832908],[-0.038388799875975,0.012810687534511,0.025939466431737],[0.050796143710613,0.024699268862605,0.050343215465546]],[[0.063295103609562,-0.032941214740276,-0.025534929707646],[-0.022187482565641,-0.023015327751637,-0.059737205505371],[0.010813479311764,-0.050323098897934,-0.01097833365202]],[[0.015018649399281,-0.0056575876660645,0.05319831520319],[0.075905717909336,-0.031538110226393,0.0081931576132774],[-0.026582304388285,0.023265738040209,0.037964269518852]],[[-0.015321883372962,0.008756804279983,0.028328852728009],[-0.020431803539395,-0.045140296220779,-0.0031726222950965],[0.053946435451508,-0.0085383281111717,-0.053040381520987]]],[[[0.043775554746389,0.014094026759267,0.0035528615117073],[-0.074001058936119,0.013152084313333,0.044314824044704],[-0.031024860218167,-0.033097084611654,-0.022358166053891]],[[0.038623929023743,-0.030658986419439,0.0061340974643826],[0.0018426498863846,-0.0039163888432086,-0.068751230835915],[-0.0039057289250195,-0.076519444584846,-0.076790682971478]],[[-0.0042318976484239,-0.03483260422945,0.035826977342367],[0.025897081941366,0.043596912175417,-0.017400054261088],[0.011867512017488,-0.094054758548737,-0.0091120405122638]],[[-0.0055560488253832,0.0060844258405268,-0.059355411678553],[0.071520984172821,-0.028746334835887,-0.066245257854462],[0.02438847720623,0.0058281277306378,-0.048038754612207]],[[-0.055385030806065,-0.016093289479613,-0.042935840785503],[-0.030439699068666,-0.0030667204409838,0.047862086445093],[0.011006226763129,0.015945985913277,0.10307908803225]],[[-0.0016994705656543,0.055275544524193,0.027293773368001],[0.011323895305395,0.053667310625315,-0.011856791563332],[-0.054537612944841,-0.0088901510462165,0.080940589308739]],[[0.019383300095797,0.062554925680161,-0.033502887934446],[0.037011753767729,-0.024131109938025,0.0079262191429734],[-0.01731625944376,-0.023787217214704,-0.0040796650573611]],[[0.018998434767127,0.037361703813076,0.0061173029243946],[0.0052795214578509,0.050943735986948,0.0093285329639912],[-0.031098000705242,-0.00035437705810182,0.05444672703743]],[[0.015874374657869,-0.030130933970213,-0.084897361695766],[0.0061098500154912,-0.026513453572989,0.034921064972878],[-0.025708897039294,0.02546701207757,0.03183613345027]],[[0.085729815065861,-0.023835772648454,0.025153936818242],[0.038747940212488,-0.061798982322216,-0.026755776256323],[0.038738775998354,0.00047354304115288,0.028810789808631]],[[0.00029486184939742,-0.036371000111103,-0.01183910574764],[0.033385314047337,0.020974766463041,-0.078384637832642],[0.017243089154363,-0.0034715787041932,-0.017257584258914]],[[-0.026966642588377,-0.016167478635907,-0.0016696538077667],[0.02963974699378,-0.041527781635523,-0.063655376434326],[-0.05339428037405,-0.012917847372591,0.063996948301792]],[[-0.053029380738735,-0.11905262619257,-0.023221598938107],[-0.031151592731476,0.059358589351177,-0.025401778519154],[0.0014968935865909,0.032146260142326,-0.0091656651347876]],[[-0.021820867434144,-0.0081197088584304,-0.06820922344923],[-0.026168594136834,-0.060960967093706,0.057087924331427],[0.077946618199348,0.023696711286902,0.018997117877007]],[[-0.020191699266434,-0.014148619957268,0.018035238608718],[-0.012327347882092,0.0022434720303863,0.03792255744338],[-0.0094400430098176,0.027389211580157,0.022183416411281]],[[0.033433694392443,0.078583508729935,-0.040654484182596],[-0.025963854044676,0.014948681928217,0.0092547675594687],[-0.0084734950214624,0.027130208909512,-0.024095820263028]],[[-0.0030559867154807,0.11776882410049,-0.023263446986675],[-0.0088755255565047,-0.026318192481995,0.018963990733027],[-0.036958873271942,0.0220035482198,-0.055667456239462]],[[0.044537525624037,0.027216104790568,-0.069909684360027],[0.0075337085872889,-0.0020597078837454,-0.016670871526003],[0.030148651450872,0.070358335971832,-0.040329977869987]],[[0.15237709879875,0.022738624364138,-0.0095625044777989],[0.0061249719001353,-0.051643222570419,-0.052937462925911],[-0.0049871550872922,-0.062616243958473,-0.037276178598404]],[[-0.024395579472184,-0.065607026219368,-0.088518567383289],[-0.0017667297506705,0.0083563709631562,0.0036254925653338],[-0.0017945310100913,-0.0013006926747039,0.016578951850533]],[[0.063315764069557,-0.020496437326074,0.0403021723032],[0.018946904689074,0.025456542149186,0.11746443063021],[-0.031907275319099,0.0040116556920111,-0.0080860694870353]],[[-0.03543334081769,-0.0039531118236482,0.054613959044218],[-0.041354399174452,-0.010223729535937,0.025438381358981],[0.0024305279366672,-0.0010791142703965,0.0078747421503067]],[[-0.056088659912348,-0.053074438124895,-0.02506441809237],[-0.051633182913065,-0.0090218484401703,0.050304420292377],[0.053922664374113,0.024530719965696,-0.027421025559306]],[[-0.030899154022336,-0.018115509301424,0.026878004893661],[-0.056600656360388,-0.02365006133914,-0.0072296722792089],[0.015178049914539,-0.03882709518075,-0.0041495701298118]],[[0.038802023977041,0.019494071602821,-0.057339936494827],[0.013745443895459,0.013513015583158,-0.030436210334301],[0.07671182602644,0.036011453717947,-0.018226752057672]],[[-0.040818922221661,0.01221006270498,-0.031183961778879],[0.015794549137354,0.021721171215177,0.10050482302904],[0.024274248629808,0.05805841833353,0.018842941150069]],[[-0.027233622968197,0.071984305977821,-0.062670685350895],[-0.026164410635829,0.0056721880100667,0.097176268696785],[0.011313790455461,0.017056230455637,0.014200954698026]],[[0.050038561224937,-0.022434029728174,0.065165519714355],[0.031632866710424,-0.019949980080128,-0.064325585961342],[-0.0065225311554968,-0.012054722756147,0.00094697362510487]],[[0.027460783720016,-0.027835216373205,-0.00041237878031097],[0.006511184386909,-0.052301857620478,0.043150220066309],[0.022113626822829,-0.04254088550806,0.042436324059963]],[[0.043215833604336,-0.043447989970446,0.021547745913267],[0.027288872748613,-0.0021925179753453,-0.026806585490704],[-0.035077273845673,0.030332274734974,0.01182671263814]],[[-0.043079301714897,-2.7746455089073e-05,-0.0037390494253486],[0.01660792529583,-0.02712769806385,-0.01476919837296],[0.0017080584075302,0.044140323996544,-0.037113308906555]],[[0.05537848174572,-0.07317553460598,-0.056082859635353],[-0.02050974778831,-0.014543617144227,0.098975643515587],[-0.055194083601236,0.063290499150753,0.0063406629487872]],[[-0.055124584585428,0.015741236507893,-0.066615916788578],[-0.020569482818246,-0.018922217190266,0.045060459524393],[-0.0074069621041417,0.019369384273887,0.071658864617348]],[[0.0068613295443356,-0.050049427896738,-0.023223524913192],[0.030021535232663,-0.0028633363544941,-0.016746196895838],[0.09246664494276,0.051989957690239,-0.020817151293159]],[[0.038638900965452,-0.03936517611146,-0.082502402365208],[0.0035196784883738,-0.00063064298592508,-0.022898843511939],[0.013030357658863,-0.084954753518105,-0.081663362681866]],[[-0.040225978940725,-0.05482080951333,-0.038628950715065],[0.093240574002266,-0.01553107611835,0.0027216742746532],[-0.033186659216881,-0.031941018998623,0.053161777555943]],[[-0.065861865878105,0.004310023970902,0.0030762508977205],[-0.0025808345526457,-0.017137162387371,0.024755971506238],[0.078248202800751,0.015279604122043,-0.0026503247208893]],[[-0.036210175603628,0.038238681852818,0.0019655041396618],[0.00029205804457888,-0.14001907408237,-0.009913794696331],[0.09353057295084,-0.057288210839033,-0.020307196304202]],[[0.048504132777452,0.016962857916951,0.024056971073151],[-0.039821077138186,-0.038602169603109,-0.0050772652029991],[0.012507062405348,0.01958723179996,-0.031861826777458]],[[0.047945119440556,-0.031672980636358,-0.017468735575676],[-0.045295417308807,-0.0010864576324821,-0.030263721942902],[0.012957599014044,-0.10121283680201,0.032238531857729]],[[0.011161992326379,0.016897981986403,0.051200542598963],[-0.018689583986998,4.433134017745e-05,0.020793255418539],[-0.016221657395363,-0.052811287343502,-0.01517700124532]],[[0.047196924686432,0.018187941983342,0.0083121582865715],[0.043573752045631,-0.018685938790441,-0.041974987834692],[-0.062210250645876,-0.059869509190321,-0.051770184189081]],[[-0.065191775560379,0.066430933773518,-0.032978586852551],[0.028173800557852,0.040842954069376,0.015581717714667],[-0.024014955386519,-0.070614971220493,0.02673620916903]],[[-0.086239442229271,-0.053156275302172,-0.021528979763389],[-0.077213883399963,-0.024370277300477,0.040406759828329],[-0.08155483007431,-0.00028388612554409,-0.040232330560684]],[[0.034010078758001,0.05732100084424,0.012721501290798],[-0.063036821782589,-0.0092189833521843,0.052207056432962],[-0.00018338150402997,0.02819805406034,0.013596693985164]],[[0.002776192734018,0.02619656547904,-0.045061625540257],[-0.033083330839872,0.083475425839424,0.0060165729373693],[-0.0099026840180159,0.045808367431164,-0.04160013794899]],[[0.00162517814897,0.0099091865122318,0.013816692866385],[0.064990989863873,-0.026495987549424,-0.089501567184925],[0.054388668388128,-0.0077252802439034,0.0032892518211156]],[[0.014088872820139,0.019797384738922,0.015078249387443],[-0.0061813443899155,-0.10054410994053,0.045463014394045],[0.016060231253505,0.020952498540282,0.042745802551508]],[[-0.039141584187746,0.032882638275623,-0.063059121370316],[0.019122315570712,-0.020093968138099,0.012483689002693],[0.044451080262661,0.017804622650146,-0.018213773146272]],[[0.019848154857755,-0.039750661700964,-0.023944232612848],[-0.018601402640343,0.038467019796371,-0.038343794643879],[0.075101904571056,0.040041241794825,-0.0023154423106462]],[[0.0063365511596203,-0.020716991275549,-0.01423473097384],[0.017123676836491,0.11289060115814,0.040605593472719],[0.027608245611191,0.033920973539352,0.028345070779324]],[[-0.066524937748909,0.033767201006413,0.036737661808729],[-0.063436813652515,-0.0086525408551097,0.035221513360739],[-0.0068496260792017,-0.04559975489974,0.01976147480309]],[[-0.078141912817955,0.014736358076334,-0.028485529124737],[0.086097031831741,-0.049045994877815,-0.006371608003974],[0.042991779744625,0.015018045902252,0.044766742736101]],[[-0.024725375697017,0.016718044877052,0.0043074027635157],[-0.0033599475864321,-0.047009989619255,-0.0094182658940554],[0.0026802821084857,0.076673127710819,-0.080808512866497]],[[-0.039477914571762,-0.0086185839027166,0.0049078450538218],[-0.0044291689991951,0.051699589937925,0.056656241416931],[0.0012308307923377,0.00060701463371515,-0.023303395137191]],[[0.0026422759983689,-0.003664183197543,-0.01614928804338],[-0.0079783294349909,0.042735692113638,-0.0078894477337599],[-0.026190971955657,0.062559798359871,-0.011337644420564]],[[-0.0012879887362942,-0.026618968695402,0.038574177771807],[0.026636080816388,-0.058293201029301,0.023364955559373],[0.015499669127166,-0.0089908363297582,-0.06648413091898]],[[-0.12189335376024,0.01856343075633,-0.019949005916715],[-0.052027206867933,-0.047489430755377,-0.001584830111824],[0.053678762167692,0.025010703131557,-0.004587163683027]],[[0.0063265962526202,-0.015836069360375,0.073791041970253],[-0.0047237845137715,-0.0026889694854617,-0.048653587698936],[-0.064577996730804,-0.036871809512377,0.0467499345541]],[[-0.089410655200481,-0.0028191835153848,0.03797971457243],[-0.038436774164438,-0.05469885468483,-0.018271053209901],[0.031948957592249,0.0088667180389166,0.087520338594913]],[[0.021762194111943,-0.060277253389359,0.023198338225484],[-0.068675197660923,0.029353043064475,-0.029833463951945],[-0.033891715109348,-0.11456043273211,0.13857872784138]],[[-0.092041850090027,0.045750949531794,-0.05711666867137],[0.023477414622903,0.011991043575108,-0.029176967218518],[0.052927669137716,0.077645815908909,-0.083319090306759]],[[0.036725893616676,0.021114395931363,-0.0034009118098766],[-0.0092837736010551,-0.0017123735742643,0.016678672283888],[0.044074799865484,0.095280103385448,0.039812456816435]],[[0.028700774535537,0.041381154209375,-0.054462615400553],[-0.023124346509576,0.017413789406419,0.015968447551131],[-0.029674319550395,-0.0099871372804046,0.046590145677328]],[[-0.039425559341908,-0.038545548915863,-0.048885833472013],[-0.060140330344439,-0.010215737856925,0.0276491176337],[0.02181394957006,0.016720492392778,-0.022673506289721]],[[0.020481051877141,-0.038560781627893,-0.051533676683903],[0.0063313287682831,-0.0065397117286921,0.0032360625918955],[0.00067591428523883,0.052739918231964,0.026329182088375]],[[0.031725838780403,-0.014687246643007,0.001402864116244],[0.015679940581322,-0.073963545262814,0.012547028250992],[-0.0072418171912432,-0.017401954159141,-0.069051958620548]],[[-0.009607806801796,-0.035691622644663,0.014593923464417],[-0.028199896216393,0.038499847054482,0.01147235929966],[-0.051189340651035,-0.0013567195273936,0.078769981861115]],[[0.037826299667358,0.015639828518033,0.074402689933777],[0.07335402816534,-0.0040156422182918,-0.0038157294038683],[-0.020552095025778,-0.031818777322769,0.0014764160150662]],[[0.0060996082611382,-0.078531034290791,0.029853878542781],[-0.021044785156846,-0.042573098093271,-0.0365932546556],[0.012244361452758,-0.023687964305282,0.00068477191962302]],[[-0.021143294870853,0.045336127281189,0.040034845471382],[-0.069403924047947,0.053611177951097,0.022506061941385],[0.0095645096153021,0.025740994140506,-0.013942033983767]],[[-0.031328316777945,-0.014741756953299,-0.053821917623281],[-0.047085419297218,0.036577872931957,-0.014818610623479],[-0.065245673060417,-0.015259171836078,-0.00049102224875242]],[[0.019946340471506,0.05948369204998,0.067934565246105],[0.0066821309737861,-0.02960598655045,-0.032240301370621],[-0.028060218319297,0.042416974902153,-0.0060753133147955]],[[-0.013533605262637,0.083159483969212,-0.051721423864365],[-0.013869665563107,-0.020184349268675,0.004076125100255],[-0.051547449082136,-0.065504007041454,0.025089364498854]],[[0.076981484889984,0.060040820389986,0.047957293689251],[0.047400683164597,-0.026873277500272,0.076394736766815],[0.041174009442329,0.034135311841965,0.0099173067137599]],[[0.016237298026681,-0.017294626682997,0.0057316585443914],[-0.019186954945326,0.032933793962002,-0.0045081106945872],[0.049835834652185,0.024064712226391,-0.03824395686388]],[[-0.024067420512438,-0.028145492076874,0.022532818838954],[-0.013931537047029,-0.0055701821111143,-0.015728272497654],[0.060519780963659,-0.013234793208539,-0.060812726616859]],[[-0.014352488331497,-0.0053879534825683,-0.010175577364862],[0.0014399290084839,-0.072656013071537,-0.0095505136996508],[-0.023358773440123,0.037511941045523,0.012847393751144]],[[-0.046972922980785,0.0053893732838333,0.01984528824687],[-0.071997344493866,0.019135139882565,0.022089537233114],[0.074785277247429,0.02899025939405,0.029103649780154]],[[-0.017979554831982,-0.047009345144033,-0.043430868536234],[0.029076311737299,0.1138553917408,-0.053552884608507],[-0.029090233147144,-0.017217501997948,0.037667337805033]],[[-0.066842794418335,-0.0088982004672289,0.0081541277468204],[0.017439652234316,-0.092751368880272,0.02967800758779],[0.011856607161462,-0.024692857638001,0.053989719599485]],[[0.00093620119150728,0.019580150023103,-0.044820722192526],[-0.042620878666639,-0.021275186911225,0.048123966902494],[0.01677618548274,-0.043302983045578,0.069255627691746]],[[0.028488790616393,-0.043499451130629,-0.065760105848312],[0.040051225572824,0.029552793130279,0.072866916656494],[0.024900939315557,-0.12249993532896,0.015314675867558]],[[0.02868383564055,0.11050097644329,-0.0072640799917281],[0.040177583694458,-0.085387662053108,0.02322000823915],[-0.006050581112504,-0.03091287612915,-0.096690461039543]],[[0.022996978834271,0.04592240229249,-0.0038221953436732],[0.036319024860859,-0.021819965913892,0.059102993458509],[-0.050459504127502,0.0028477660380304,0.040916547179222]],[[0.025757839903235,-0.020192278549075,0.0060082944110036],[-0.054940816015005,-0.0042055891826749,0.04176277667284],[-0.075572319328785,0.021392289549112,0.033232629299164]],[[-0.012245140969753,0.034486897289753,-0.0032924064435065],[0.021026659756899,-0.015534355305135,0.0045663109049201],[-0.1299659460783,-0.030207825824618,0.017764030024409]],[[-0.084714278578758,0.014648493379354,0.0251455437392],[0.0044797612354159,0.04901921376586,0.039578214287758],[-0.011229602620006,0.069337204098701,-0.024981860071421]],[[0.038081247359514,-0.022511668503284,0.079362347722054],[-0.041703771799803,0.075320579111576,0.0076170545071363],[0.056411143392324,0.010520005598664,-0.031961761415005]],[[0.022633014246821,-0.010145278647542,0.098415076732635],[-0.032180331647396,0.036585379391909,0.038341905921698],[-0.0093639772385359,0.043237943202257,0.0099094482138753]],[[-0.0050357710570097,-0.060456026345491,-0.021645737811923],[-0.01636783964932,0.034040626138449,0.013395074754953],[0.026175580918789,-0.015655955299735,0.036676675081253]],[[0.024512954056263,-0.0069290995597839,-0.052883382886648],[-0.0019623686093837,0.025053692981601,-0.089981190860271],[-0.0054720845073462,0.0061670322902501,0.038343913853168]],[[-0.045192778110504,-0.020924361422658,0.089173100888729],[-0.037207845598459,0.080794371664524,-0.017059782519937],[-0.040293492376804,-0.0091132987290621,-0.034871898591518]],[[0.050453741103411,-0.039775282144547,-0.053119737654924],[0.01127681042999,-0.035178303718567,-0.029709685593843],[0.021959329023957,-0.023019786924124,-0.01805454865098]],[[0.01367540564388,-0.067116372287273,0.010359612293541],[0.038607873022556,0.084813334047794,0.022634755820036],[0.017960073426366,0.030637608841062,-0.0097633777186275]],[[-0.0074111307039857,-0.052365411072969,0.0554089397192],[-0.032525137066841,0.032360889017582,0.013283725827932],[0.014696940779686,0.031217852607369,-0.011712991632521]],[[-0.074785351753235,-0.026734227314591,0.010252988897264],[0.016938099637628,-0.0035583954304457,-0.027724590152502],[-0.059800002723932,0.09728667140007,-0.10692238807678]],[[0.027233719825745,-0.0085650477558374,0.050586581230164],[-0.057676531374454,0.0011318419128656,0.061945576220751],[-0.092325821518898,-0.02417603880167,0.039633624255657]],[[-0.030506426468492,0.078088991343975,-0.054467551410198],[0.015715468674898,0.011653370223939,-0.011040143668652],[0.04353841766715,0.061361007392406,-0.0209288187325]],[[0.0136115308851,-0.02848195284605,-0.0091710705310106],[-0.053088322281837,0.0097442334517837,0.0245057400316],[0.032267361879349,-0.027252515777946,-0.013744981959462]],[[-0.0115746865049,0.0257468521595,-0.018735645338893],[-0.003821121994406,0.0014486863510683,-0.049727026373148],[-0.035553131252527,0.05006817355752,0.034062571823597]],[[-0.002588122850284,-0.060754109174013,0.029043048620224],[0.017659841105342,-0.084313206374645,-0.021535912528634],[-0.01130083668977,-0.049267217516899,-0.07658364623785]],[[0.031210988759995,0.011879519559443,0.021414874121547],[0.029846543446183,0.0028742721769959,-0.046715658158064],[-0.10009084641933,-0.02789119631052,0.0049997395835817]],[[-0.0032067629508674,-0.0032209341879934,0.11032526195049],[-0.047332562506199,-0.017740655690432,-0.046226006001234],[-0.061505869030952,0.019568517804146,0.045793119817972]],[[-0.010950884781778,0.00079769309377298,-0.0042685982771218],[-0.067734219133854,0.011920473538339,0.024425055831671],[0.029342046007514,-0.014803093858063,-0.0076777692884207]],[[-0.014467571862042,0.040860421955585,-0.082297630608082],[-0.024678399786353,-0.008296218700707,0.018115917220712],[0.039009921252728,0.05034800991416,0.028652297332883]],[[-0.085140250623226,-0.021772505715489,-0.035226657986641],[0.00048083861474879,0.01018582470715,0.074569851160049],[-0.0038765030913055,-0.0012571706902236,-0.071203105151653]],[[0.015480121597648,0.036710973829031,-0.015713756904006],[0.011669428087771,-0.055096287280321,0.012941874563694],[-0.076669543981552,-0.0038587630260736,0.0072705270722508]],[[0.022630145773292,-0.070157691836357,0.0017028818838298],[-0.024194290861487,-0.060849495232105,-0.084858767688274],[0.00053077266784385,-0.079499378800392,-0.08398824930191]],[[-0.005777211394161,0.059866070747375,0.012315289117396],[0.03775928914547,-0.018889078870416,0.054661098867655],[-0.063467964529991,-0.0035979219246656,-0.0043488326482475]],[[-0.039477191865444,0.04827881231904,0.082758851349354],[0.058275356888771,-0.021101968362927,0.011863028630614],[0.041212499141693,0.00067649525590241,0.026987647637725]],[[0.061405379325151,0.037506364285946,-0.0059121833182871],[0.030576435849071,-0.04696786031127,0.0058906930498779],[-0.056913111358881,-0.015555915422738,-0.017131062224507]],[[0.0054913982748985,0.0031566973775625,0.0076999636366963],[0.017636865377426,-0.021692827343941,-0.015645854175091],[-0.032710500061512,-0.033358324319124,0.01111457683146]],[[0.0068474761210382,0.057653591036797,0.0084012513980269],[-0.041080884635448,-0.06676359474659,0.070238776504993],[0.082843504846096,-0.075045771896839,-0.013244333676994]],[[0.053460411727428,0.075334675610065,-0.014499727636576],[-0.038062691688538,0.042297411710024,0.012189193628728],[-0.049465697258711,-0.045577514916658,0.0039621088653803]],[[0.013514550402761,0.014795228838921,-0.025361614301801],[0.022063836455345,0.078721553087234,0.013657809235156],[-0.005628555547446,-0.03353725746274,-0.0094514414668083]],[[0.025996293872595,-0.036855109035969,0.0016104448586702],[-0.0056420373730361,-0.026539526879787,-0.016661839559674],[-0.025679068639874,-0.031913552433252,0.0010594304185361]],[[-0.010306734591722,-0.035664919763803,0.056572545319796],[-0.086927838623524,-0.022899826988578,0.0029698852449656],[0.0021904446184635,-0.05422143265605,0.040221981704235]],[[0.077258475124836,0.01486256532371,0.033102463930845],[-0.087553136050701,-0.026433154940605,0.0078352931886911],[-0.040440015494823,-0.00017524436407257,-0.061455547809601]],[[-0.0044866753742099,0.032511305063963,-0.078896142542362],[0.023569462820888,-0.016005015000701,0.042423669248819],[0.045255657285452,-0.024077160283923,-0.011578644625843]],[[0.054667629301548,0.02644257247448,-0.043681498616934],[0.0073108626529574,-0.087244279682636,0.085659556090832],[0.0046642068773508,-0.024631839245558,-0.041857853531837]],[[-0.04069733992219,0.033331274986267,0.084370546042919],[0.014661114662886,0.024042308330536,-0.035217735916376],[0.0040171509608626,-0.050199385732412,-0.025661623105407]],[[-0.065904542803764,0.040701780468225,0.062019616365433],[-0.0034250447060913,0.0090196896344423,-0.084166012704372],[0.077046170830727,-0.020212810486555,0.046819072216749]],[[0.0059284772723913,-0.022717220708728,-0.053659994155169],[-0.022045386955142,-0.032409340143204,-0.011456280015409],[-0.048576876521111,-0.0032233477104455,-0.081335306167603]],[[-0.022984106093645,0.034502875059843,0.010379378683865],[-0.0084649082273245,-0.047159101814032,0.011545623652637],[-0.0095018371939659,-0.025910671800375,0.043580416589975]],[[0.058868736028671,-0.022756325080991,-0.065217353403568],[0.024868277832866,0.010442793369293,0.0093723777681589],[0.018860844895244,-0.037970274686813,0.060649178922176]],[[-0.038149815052748,0.050244685262442,0.081877537071705],[-0.044156417250633,0.066828832030296,0.013376713730395],[-0.04036757722497,-0.020475732162595,-0.06462038308382]],[[-0.010524048469961,0.036234728991985,0.050657670944929],[-0.046441588550806,-0.076426796615124,0.039042912423611],[0.046451278030872,-0.01561011467129,-0.0034301006235182]]],[[[-0.035258021205664,0.0043174843303859,0.049143642187119],[0.013272750191391,0.0043898546136916,-0.038860592991114],[-0.00037153804441914,-0.029883649200201,-0.014204571954906]],[[0.025997959077358,-0.0039532110095024,0.0074174790643156],[0.012611947953701,-0.051088724285364,0.0077110254205763],[-0.037857703864574,-0.00055593799334019,0.034390199929476]],[[-0.017060250043869,0.053615432232618,-0.018148714676499],[-0.02762714214623,-0.030730444937944,-0.010605175048113],[-0.0083249323070049,0.014588994905353,-0.050951819866896]],[[-0.045539397746325,-0.016044281423092,-0.026250408962369],[-0.013830578885972,0.042015708982944,-0.066073551774025],[0.0029627927578986,-0.04734456166625,0.01973538659513]],[[0.0012880689464509,-0.013503236696124,0.0069281994365156],[0.013047501444817,-0.047580249607563,-0.032106716185808],[0.021144339814782,-0.013367518782616,-0.019946170970798]],[[-0.058877367526293,-0.012164600193501,0.018241494894028],[-0.00141038489528,-0.099043734371662,-0.061027333140373],[1.382172376907e-05,0.10043217986822,0.017683358862996]],[[-0.062794364988804,0.021469401195645,0.0021260227076709],[0.01632802374661,-0.0081227459013462,0.021903784945607],[-0.010400841012597,0.05319344624877,-0.072013445198536]],[[-0.026004862040281,0.0094057749956846,0.0067180916666985],[0.001696084975265,-0.014657584019005,0.0099828485399485],[-0.0048599173314869,0.046054638922215,0.029327088966966]],[[0.0063463291153312,0.071305610239506,0.012504709884524],[-0.030916830524802,-0.016687117516994,-0.045887913554907],[-0.054416913539171,-0.0044665466994047,0.028634143993258]],[[0.024712895974517,0.027852641418576,-0.036425985395908],[0.00049010891234502,-0.059895735234022,-0.019983572885394],[0.030934179201722,-0.0023889329750091,-0.0046851211227477]],[[0.056563943624496,-0.034896779805422,0.021961254999042],[-0.098966181278229,0.013665179722011,0.062899142503738],[-0.012360610999167,-0.084514506161213,0.028963230550289]],[[-0.036104682832956,0.0028211146127433,-0.0086618131026626],[-0.0048600328154862,0.015510247088969,-0.060302842408419],[0.026262849569321,-0.047035187482834,0.0055177402682602]],[[0.0017958508105949,0.027019495144486,-0.0012624930823222],[0.0090185320004821,0.097696505486965,-0.032519493252039],[-0.079627238214016,0.011865988373756,-0.035470310598612]],[[0.048015464097261,-0.044630896300077,-0.0094035947695374],[-0.029798386618495,-0.097445294260979,0.026352727785707],[-0.012432833202183,-0.024598073214293,0.0047558303922415]],[[0.07269648462534,0.0099440282210708,-0.043067831546068],[-0.024289522320032,0.055824965238571,0.00056720990687609],[-0.080530487000942,0.012866117991507,-0.051443189382553]],[[-0.018739337101579,-0.089214228093624,-0.027690645307302],[0.028819601982832,0.088537208735943,-0.061001341789961],[-0.001693056547083,0.039472214877605,0.013612876646221]],[[-0.0018611134728417,-0.09050676971674,-0.050043221563101],[0.0033952745143324,0.0012517457362264,-0.031598221510649],[-0.01244952250272,0.058024279773235,0.042103197425604]],[[0.027653453871608,0.085704922676086,-0.0095951864495873],[-0.015120149590075,0.03121118620038,0.027712995186448],[-0.070273190736771,-0.01795482262969,-0.027430200949311]],[[-0.025819482281804,0.0045713954605162,0.072593726217747],[-0.00046415728866123,-0.038596469908953,-0.074274085462093],[0.028566565364599,-0.086223416030407,0.026859110221267]],[[-0.019247360527515,-0.0055678808130324,0.04338751360774],[-0.014147077687085,-0.066499300301075,0.054970685392618],[0.01894180290401,-0.038705971091986,-0.014049850404263]],[[0.0035148893948644,0.04472653567791,-0.026450650766492],[0.0064902235753834,0.12648469209671,0.037548866122961],[0.032538741827011,-0.13349582254887,-0.0028533474542201]],[[-0.044419180601835,0.017907379195094,0.020624544471502],[-0.013186366297305,-0.022648122161627,-0.014478543773293],[0.10336571931839,0.0047023468650877,-0.026112284511328]],[[0.001877004862763,-0.05057867616415,0.052176237106323],[0.012083053588867,0.020836625248194,-0.023372190073133],[-0.058378998190165,-0.035478882491589,0.053745660930872]],[[0.0072496952489018,0.051416721194983,-0.0064299223013222],[0.072898618876934,0.093174576759338,-0.041546206921339],[0.021268587559462,0.0318010635674,-0.081931799650192]],[[-0.051347780972719,-0.033624265342951,0.033287834376097],[0.029698122292757,-0.056698113679886,-0.10162004828453],[-0.081885911524296,-0.0058144335635006,0.032989144325256]],[[0.016140904277563,-0.036813639104366,-0.056584648787975],[0.028031012043357,0.012282079085708,0.016562029719353],[0.017835395410657,-0.0030782672110945,0.042433120310307]],[[0.0098515255376697,-0.03137718513608,0.066879279911518],[-0.018586557358503,0.043274451047182,-0.033581763505936],[-0.005460427608341,0.0066355396993458,0.01019156165421]],[[0.013169446960092,0.0087868943810463,0.0045167631469667],[-0.06134045124054,-0.011608379893005,0.022302370518446],[-0.0011357525363564,-0.025703884661198,-0.0031294720247388]],[[0.013706989586353,-0.064531810581684,-0.028520870953798],[-0.017902445048094,-0.041680172085762,-0.0080050537362695],[0.0063219834119081,0.066980607807636,0.067852929234505]],[[-0.044482477009296,0.03461791202426,0.025075033307076],[0.041799675673246,-0.069349318742752,-0.014463854022324],[0.039608523249626,-0.053502958267927,0.010543464682996]],[[0.034615762531757,-0.013906860724092,-0.095330625772476],[-0.014921395108104,0.034509249031544,0.017907559871674],[0.0019792097155005,0.0050218370743096,-0.021464366465807]],[[0.042982414364815,-0.091048911213875,-0.0091646900400519],[0.024123599752784,-0.0045669805258512,-0.075202748179436],[0.010062114335597,-0.02490477450192,0.039060596376657]],[[-0.0087611265480518,0.03318777680397,0.070119947195053],[-0.014310635626316,-0.0025969315320253,-0.063033044338226],[-0.012891981750727,-0.01031331717968,-0.079084634780884]],[[0.033754047006369,0.014167162589729,0.03666665405035],[0.012804369442165,-0.037354949861765,-0.027637716382742],[-0.050215624272823,0.022845068946481,0.029890483245254]],[[-0.016228850930929,-0.057345330715179,-0.02908936329186],[0.0055180205963552,0.077895388007164,-0.034223362803459],[-0.0085780955851078,-0.017050439491868,-0.0075504081323743]],[[0.013834169134498,-0.028545802459121,0.077456429600716],[0.0069766617380083,0.091158956289291,-0.028284976258874],[-0.00030618012533523,0.046078342944384,-0.021477932110429]],[[0.00089334062067792,0.01905625872314,-0.027647145092487],[-0.029073970392346,-0.013672612607479,-0.00046850435319357],[-0.0049639535136521,0.046877037733793,0.0059893052093685]],[[-0.01225321739912,-0.010797046124935,0.058190666139126],[0.044370222836733,-0.037436123937368,-0.052440267056227],[0.055220119655132,-0.038660123944283,0.0044433958828449]],[[-0.028085831552744,0.046251244843006,-0.03918918594718],[0.020789092406631,-0.0021504387259483,0.02044116333127],[-0.018178671598434,-0.035005360841751,-0.0038399705663323]],[[0.01856479793787,0.0039373505860567,0.055295780301094],[0.00093073549214751,-0.00048727498506196,-0.056978307664394],[-0.007658495567739,-0.041545793414116,0.043152514845133]],[[-0.011109146289527,-0.018066396936774,-0.00016262220742647],[0.035458344966173,-0.051755785942078,0.0038286948110908],[0.013103345409036,0.024262640625238,-0.062187511473894]],[[-0.0014760403428227,0.032650511711836,-0.028399862349033],[0.022912316024303,-0.020671918988228,-0.0032260459847748],[0.013789603486657,-0.062602423131466,-0.00071224145358428]],[[0.012233112938702,0.02266351133585,-0.04740896448493],[0.048953879624605,-0.0010454938746989,-0.0063920519314706],[-0.024101024493575,0.024092553183436,0.014587846584618]],[[0.10096669197083,0.068129636347294,0.01184335257858],[0.14184966683388,0.0065649771131575,0.12298874557018],[0.015187406912446,0.039782058447599,-0.0039823707193136]],[[0.046082906424999,0.035270411521196,-0.0041068089194596],[-0.029214860871434,-0.016513941809535,0.028625525534153],[-0.067919202148914,0.033693615347147,-0.059284307062626]],[[-0.10739574581385,0.026953939348459,0.0044320686720312],[-0.027355862781405,0.0093326382339001,0.018773997202516],[-0.029734831303358,0.11736480891705,-0.041584096848965]],[[0.015781296417117,0.049095030874014,-0.01012168917805],[-0.018718080595136,0.032952640205622,0.013858665712178],[-0.075318656861782,-0.019065983593464,-0.067416109144688]],[[-0.058145612478256,-0.1081879734993,-0.081105448305607],[-0.0012069513322785,0.02856476791203,0.031992767006159],[0.021022966131568,0.065722674131393,0.037777654826641]],[[-0.015899607911706,0.031899552792311,-0.011007272638381],[0.038889031857252,-0.048159688711166,0.039383012801409],[-0.037005975842476,0.0024952290114015,-0.027632582932711]],[[0.011919475160539,-0.046312309801579,-0.0028928550891578],[-0.0094779264181852,0.05906131118536,-0.052751708775759],[0.050672393292189,0.040221601724625,0.027744807302952]],[[-0.019774211570621,-0.0097278095781803,0.0086398888379335],[-0.0060292878188193,-0.10678879916668,0.042617447674274],[0.1259321719408,-0.041879676282406,-0.0023781543131918]],[[0.022254832088947,0.0041846698150039,0.031496491283178],[-0.033521693199873,0.017567584291101,-0.0031227967701852],[-0.026569616049528,0.00097699218895286,0.04205285385251]],[[-0.077857047319412,-0.023723512887955,-0.045593000948429],[-0.0084022218361497,0.06438272446394,-0.04037344828248],[0.011774386279285,0.018756842240691,0.019815638661385]],[[-0.03576285764575,0.069481737911701,-0.028657589107752],[-0.02284119091928,-0.0044336384162307,-0.002711565233767],[-0.025685610249639,0.034573771059513,0.001751659438014]],[[0.022940956056118,0.053030278533697,0.0052149603143334],[-0.0099733369424939,0.042032841593027,-0.050432939082384],[0.013229944743216,-0.027947645634413,-0.05337592586875]],[[0.0025992628652602,0.020924357697368,-0.013244862668216],[0.047965437173843,0.027241269126534,-0.04082453623414],[-0.0016727537149563,0.048735268414021,-0.041760358959436]],[[-0.038163233548403,-0.026086421683431,0.015565619803965],[-0.040257375687361,-0.060662794858217,0.048819478601217],[0.024507464841008,0.046305626630783,-0.040720529854298]],[[-0.0048742275685072,-0.06358639895916,0.012902752496302],[0.040261942893267,-0.028179423883557,0.037419892847538],[0.012251518666744,-0.031789146363735,-0.056307055056095]],[[-0.05263464525342,-0.051296193152666,-0.055211052298546],[-0.075649470090866,0.012436837889254,0.0043006464838982],[0.080648578703403,-0.078697681427002,0.043325260281563]],[[0.015542020089924,0.029083156958222,-0.01011582929641],[-0.028034782037139,-0.077169992029667,0.055249202996492],[0.0048039080575109,-0.016982296481729,0.037305273115635]],[[-0.033269807696342,-0.069055415689945,0.03985845670104],[0.032111462205648,0.0046314699575305,0.031783569604158],[-0.012729840353131,-0.046673126518726,0.051480781286955]],[[-0.0034954722505063,0.04907563701272,0.031783223152161],[0.001644256291911,0.12583847343922,0.061219818890095],[0.03867681697011,-0.083514049649239,-0.0084778172895312]],[[-0.050086595118046,-0.008230903185904,0.010760810226202],[-0.0304722674191,0.0020771569106728,-0.04493074119091],[0.015989936888218,-0.045846581459045,0.03453978523612]],[[0.013826170004904,-0.039024394005537,0.0073043419979513],[0.0051911580376327,0.013114417903125,0.030669322237372],[-0.007776943501085,0.04161598533392,-0.0090626953169703]],[[0.0033639904577285,-0.065988779067993,0.024304002523422],[-0.05718295276165,0.03150999546051,0.022619714960456],[-0.013931042514741,0.065554551780224,-0.033268768340349]],[[0.033720962703228,-0.049824248999357,-0.022574434056878],[-0.010743628256023,0.0047463197261095,-0.044351816177368],[-0.0080279968678951,-0.0064317937940359,-0.038116570562124]],[[0.015579880215228,-0.042288102209568,0.074898682534695],[0.036124959588051,-0.037276357412338,-0.043873086571693],[0.0099706267938018,-0.055399142205715,0.0052013299427927]],[[0.02026110701263,-0.025450496003032,-0.018836596980691],[0.01401498913765,-0.072313010692596,0.066073819994926],[-0.014512943103909,0.026299664750695,0.035770457237959]],[[0.0097277667373419,0.0026802143547684,0.0052282284013927],[0.094026125967503,0.0023065044078976,-0.078150257468224],[0.0010259923292324,-0.042721383273602,-0.013217460364103]],[[0.020307688042521,-0.037382338196039,0.030541965737939],[-0.079658232629299,0.0469342879951,0.046964515000582],[-0.0083636175841093,0.0264901984483,-0.01819696649909]],[[0.009867100045085,-0.0073444112204015,-0.097994603216648],[-0.012399133294821,-0.00423489138484,0.050614982843399],[-0.052145291119814,0.018418392166495,0.061377868056297]],[[-0.027755111455917,-0.0089212628081441,-0.023067573085427],[0.02989805303514,0.045698791742325,-0.037464287132025],[-0.016640594229102,-0.042741149663925,0.030325505882502]],[[-0.084922507405281,-0.018233766779304,-0.018082352355123],[-0.11085869371891,0.018808506429195,0.025785425677896],[-0.10220507532358,0.12894287705421,0.020866505801678]],[[0.034085847437382,0.028067979961634,-0.098163552582264],[-0.064467079937458,0.05628352239728,0.01536547858268],[0.014103126712143,-0.06566971540451,0.050872463732958]],[[0.0012193478178233,-0.030031394213438,0.028303530067205],[-0.048659898340702,0.013751302845776,-0.0015834568766877],[-0.014919007197022,0.046665441244841,0.022490290924907]],[[0.055779386311769,0.0016153366304934,-0.019178003072739],[-0.058658890426159,0.051315046846867,0.0057819429785013],[-0.031424548476934,-0.027402348816395,-0.014523766934872]],[[-0.006664234213531,-0.016745459288359,-0.013929185457528],[-0.052724506705999,-0.0038416085299104,0.0025271233171225],[0.0034830835647881,0.018288077786565,-0.0083711035549641]],[[0.0077167614363134,0.0046397149562836,-0.087503179907799],[0.020156411454082,0.015718355774879,0.028292061761022],[-0.11909036338329,0.022548917680979,-0.059150189161301]],[[0.13935780525208,0.04359770193696,0.051905356347561],[-0.076805628836155,0.1026484593749,-0.062786482274532],[-0.045933589339256,-0.010918683372438,-0.060805443674326]],[[-0.027113951742649,-0.032300855964422,0.044173184782267],[0.018636329099536,0.0047796298749745,-0.011034809052944],[-0.040666360408068,0.031378883868456,0.029789946973324]],[[-0.0028265314176679,0.007448791526258,0.084702007472515],[-0.036111507564783,-0.003537169424817,0.027437312528491],[-0.047604832798243,0.040097750723362,-0.10234376043081]],[[-0.010908394120634,0.061903916299343,0.043707381933928],[-0.083192326128483,-0.0062205498106778,0.016388537362218],[0.0056088985875249,-0.054579973220825,-0.041086371988058]],[[-0.034391950815916,-0.027961064130068,-0.03728748485446],[-0.064221113920212,0.058288723230362,0.023447344079614],[0.0042024622671306,0.0091795558109879,-0.054752059280872]],[[0.071392849087715,-0.09462159126997,0.0025589258875698],[-0.019304072484374,-0.020208502188325,0.035204958170652],[-0.036896944046021,-0.0037092277780175,0.02112090587616]],[[0.030313646420836,-0.022456763312221,-0.021518031135201],[-0.039099328219891,-0.026771700009704,0.026103436946869],[0.037709444761276,0.0061995382420719,-0.059534095227718]],[[-0.072416827082634,0.019037719815969,-0.027668783441186],[0.004570955876261,-0.017093209549785,0.074741743505001],[0.063800752162933,-0.028828604146838,0.0022376936394721]],[[0.037644952535629,0.018964949995279,-0.034572038799524],[0.012913103215396,-0.01492268498987,-0.063370749354362],[0.0072629009373486,0.028127294033766,0.0085129989311099]],[[0.023775046691298,0.0042989612556994,-0.060383025556803],[0.042160831391811,-0.018242301419377,-0.022253161296248],[0.0081412382423878,-0.01529114227742,-0.00015333892952185]],[[-0.011930135078728,0.040010508149862,-0.029578639194369],[-0.048316512256861,0.031689208000898,0.063611276447773],[0.092591196298599,-0.014192915521562,-0.12081745266914]],[[-0.030567519366741,-0.0090424297377467,-0.029079556465149],[0.013492913916707,0.058153875172138,-0.036648981273174],[0.0022787093184888,0.019018772989511,-0.018524682149291]],[[-0.059001833200455,0.0047982460819185,-0.0061938259750605],[-0.018908705562353,-0.0022664272692055,0.053184699267149],[-0.022539364174008,-0.0077697904780507,-0.029890405014157]],[[0.014288830570877,-0.0070273499004543,-0.040489107370377],[0.0065434067510068,0.044946432113647,0.025968367233872],[-0.044278901070356,-0.066126950085163,0.012318931519985]],[[0.10240319371223,-0.076858341693878,0.0062426184304059],[-0.023874765262008,0.077191323041916,-0.036618709564209],[-0.034786868840456,-0.0033845494035631,0.020110040903091]],[[-0.046796653419733,0.041663479059935,-0.016404351219535],[-0.038443844765425,-0.024997174739838,0.021161913871765],[-0.011690032668412,-0.0091224741190672,-0.033188764005899]],[[0.088723219931126,0.02506298199296,0.012782686389983],[0.052077908068895,0.032452922314405,-0.047711506485939],[0.052121784538031,-0.13610351085663,-0.03799681738019]],[[-0.03608775883913,-0.026110077276826,0.021919392049313],[-0.021546963602304,-0.01699473708868,0.056480512022972],[-0.075208425521851,0.011388165876269,0.047737956047058]],[[0.028908681124449,-0.0044241202995181,0.01136358268559],[0.011495327576995,0.075768306851387,-0.056076642125845],[-0.01094086561352,0.003328844672069,0.058696288615465]],[[-0.005610482301563,-0.091039039194584,-0.049334567040205],[-0.048372205346823,0.029534608125687,-0.019817564636469],[0.013571597635746,-0.0043621570803225,0.030044702813029]],[[0.044644471257925,0.070335306227207,-0.023557899519801],[0.021684097126126,0.048323102295399,0.034316826611757],[0.013775524683297,-0.029235849156976,-0.05508454144001]],[[-0.014689766801894,-0.019646229222417,-0.075029730796814],[-0.021701466292143,-0.070064358413219,0.020865207538009],[0.034542765468359,0.02755780890584,0.030802216380835]],[[0.017430189996958,-0.10813817381859,-0.059754863381386],[-0.027044121176004,-0.018416279926896,-0.033034093677998],[-0.039770640432835,0.019843768328428,-0.0077998442575336]],[[0.023530321195722,-0.094305075705051,-0.0055081387981772],[-0.02794454805553,-0.015566666610539,-0.022854059934616],[0.010127144865692,-0.020742734894156,0.075665637850761]],[[-0.063215412199497,0.013117634691298,0.042352940887213],[0.029456237331033,-0.02735036239028,0.006041478831321],[-0.032701589167118,0.033166959881783,-0.093265973031521]],[[-0.067497223615646,-0.034533467143774,0.051826350390911],[-0.0015849506016821,-0.013190349563956,0.015871053561568],[0.0016378439031541,-0.032623879611492,0.016008879989386]],[[-0.011926397681236,-0.010659579187632,-0.015435798093677],[0.048918262124062,-0.087051324546337,0.044846467673779],[-0.0058107608929276,-0.038013637065887,0.043951001018286]],[[-0.0024488826747984,-0.091551996767521,-0.010374930687249],[0.024939265102148,-0.0063222702592611,-0.043712522834539],[-0.053752388805151,0.032741654664278,0.040371555835009]],[[0.051794603466988,-0.022022007033229,-0.010249251499772],[-0.024167075753212,0.00046138840843923,0.0010418498422951],[0.024840209633112,-0.049520727247,-0.0059980018995702]],[[0.024041324853897,-0.0036932225339115,0.038554862141609],[0.0589859187603,0.094272598624229,-0.082320280373096],[-0.029097024351358,-0.054851461201906,-0.019801599904895]],[[0.028106331825256,-0.083722524344921,-0.026800846680999],[-0.055524788796902,0.0067882584407926,0.012780285440385],[-0.0010928274132311,0.01570999622345,0.0096619408577681]],[[0.020151084288955,0.010682512074709,-0.024681977927685],[0.0028947871178389,-0.056542307138443,0.010790727101266],[-0.0039412197656929,0.077067352831364,-0.049369338899851]],[[-0.056878380477428,-0.17611199617386,-0.085108429193497],[-0.047319166362286,-0.083775632083416,-0.035811640322208],[-0.082865171134472,-0.088854618370533,-0.11541250348091]],[[0.0047958241775632,0.0068087200634181,-0.028524581342936],[-0.027292495593429,0.024986792355776,-0.020899912342429],[-0.024004232138395,0.049621995538473,-0.022051811218262]],[[5.9346595662646e-05,-0.01388546731323,0.022587480023503],[-0.11659744381905,0.019547615200281,-0.0028635303024203],[0.061747439205647,0.018080299720168,0.022397698834538]],[[-0.057613540440798,0.028642291203141,0.013278470374644],[0.034609232097864,-0.014392660930753,-0.0089945467188954],[-0.041295602917671,0.035525094717741,0.0042188768275082]],[[-0.019154764711857,-0.00014422732056119,0.025607701390982],[-0.0082903923466802,0.026066333055496,-0.095020323991776],[-0.017127171158791,-0.017871486023068,0.049861144274473]],[[0.023529872298241,-0.0092810159549117,0.012200533412397],[-0.031395431607962,0.0080938655883074,0.0037205377593637],[-0.039905212819576,0.039893694221973,0.012080513872206]],[[-0.022590590640903,-0.013541388325393,-0.010798404924572],[-0.027989530935884,0.030684834346175,0.01220138091594],[0.0088518783450127,0.020794447511435,0.033178377896547]],[[0.073887839913368,0.031848099082708,-0.016372675076127],[0.072608433663845,-0.092123001813889,0.080607227981091],[-0.067910477519035,0.007503645028919,-0.065758973360062]],[[-0.12675656378269,0.027662733569741,-0.013554995879531],[-0.052827872335911,0.056701883673668,0.086617842316628],[-0.023251172155142,0.080196619033813,-0.028801765292883]],[[-0.0019283067667857,0.03267702460289,0.021698663011193],[-0.042307313531637,-0.020764311775565,0.017043320462108],[-0.021545358002186,-0.048740025609732,0.049961015582085]],[[-0.004163830075413,0.048808544874191,0.02721226029098],[0.028559604659677,-0.068984620273113,0.053213708102703],[-0.022159766405821,0.070337221026421,0.020213734358549]],[[-0.028538424521685,0.0091324951499701,-0.027518844231963],[0.14292719960213,0.10439205169678,0.1074767485261],[-0.028848569840193,-0.10730784386396,-0.05791037529707]],[[0.0034886391367763,-0.058454681187868,0.051912147551775],[-0.069536648690701,0.027755791321397,0.11840483546257],[0.073234930634499,-0.082878232002258,0.036137729883194]],[[-0.027817653492093,-0.029123779386282,-0.011488039046526],[0.025744685903192,-0.016692640259862,-0.048249181360006],[0.039352249354124,0.024089174345136,-0.075481370091438]],[[-0.013322525657713,0.049864951521158,-0.025927616283298],[-0.056213449686766,-0.015787191689014,-0.022341880947351],[-0.029901234433055,0.042783468961716,0.010988815687597]],[[-0.024773605167866,0.079519726336002,-0.0031628021970391],[0.0025764130987227,0.031229447573423,-0.022813936695457],[-0.012279540300369,-0.061891220510006,-0.010063254274428]],[[0.014838551171124,-0.064973101019859,-0.015419301576912],[0.014064186252654,-0.033975515514612,-0.025962794199586],[0.0052818031981587,0.068741902709007,-0.021913643926382]],[[0.017163665965199,0.052552703768015,-0.041910938918591],[-0.0069101741537452,-0.036039918661118,-0.027186091989279],[-0.047534145414829,-0.032197862863541,0.0075021954253316]]],[[[-0.0086411759257317,-0.055269759148359,-0.045509956777096],[-0.018110295757651,0.070120215415955,0.058303475379944],[0.0079101016744971,0.068083271384239,0.073555618524551]],[[0.00025972296134569,-0.051373101770878,-0.0042653335258365],[0.025461176410317,-0.053734984248877,0.04083950817585],[-0.00054304458899423,0.0061511839739978,-0.040234617888927]],[[-0.049017168581486,0.095917448401451,0.0086871823295951],[-0.025794867426157,-0.016738498583436,-0.021675869822502],[-0.040696453303099,0.089855641126633,0.018114982172847]],[[0.019187642261386,0.058201156556606,0.042366594076157],[0.0040884548798203,-0.04067462682724,-0.035943906754255],[-0.031785316765308,-0.020732345059514,0.06625460088253]],[[0.04570622369647,-0.027492364868522,0.053223200142384],[0.0612150169909,0.00028108266997151,0.089143246412277],[0.01394853554666,0.042002815753222,-0.046942997723818]],[[0.016793318092823,0.028865046799183,0.0072748553939164],[-0.011654359288514,0.0026463335379958,0.013741327449679],[0.018407236784697,0.025720810517669,0.0031865139026195]],[[0.034408152103424,-0.0019634182099253,0.044697050005198],[0.048436485230923,0.10253569483757,0.024040263146162],[-0.012771394103765,-0.018395069986582,0.020842863246799]],[[0.10551476478577,0.073450833559036,0.001500203856267],[0.098547853529453,0.0058879088610411,-0.0060966610908508],[-0.023438971489668,0.0067869233898818,-0.058332722634077]],[[-0.043959595263004,-0.02497817017138,0.069038346409798],[-0.0054939524270594,0.056250244379044,-0.013246424496174],[0.0086519997566938,-0.027732167392969,-0.0072778803296387]],[[0.00037734062061645,-0.043559700250626,0.0063444063998759],[-0.018278669565916,0.031876429915428,0.026342103257775],[0.061245426535606,-0.00053256552200764,-0.0061974641866982]],[[0.12348160892725,0.0069929156452417,0.059918913990259],[0.024376241490245,-0.012187625281513,0.029164398089051],[-0.10131593793631,0.012838808819652,0.02413934469223]],[[0.029202979058027,-0.033078953623772,-0.0044881138019264],[-0.013106516562402,0.0047237193211913,-0.067105136811733],[0.032939784228802,-0.029432635754347,-0.02288025803864]],[[0.053422503173351,-0.036393340677023,0.0064430059865117],[0.071617372334003,-0.01607577688992,-0.033563915640116],[-0.068107202649117,0.046901389956474,0.087245307862759]],[[0.01991386897862,0.034568130970001,-0.040179245173931],[-0.081576444208622,0.060959622263908,0.022280773147941],[0.011343971826136,0.031389225274324,-0.023954415693879]],[[0.060290917754173,0.066650614142418,-0.061469834297895],[-0.012108192779124,0.023711796849966,-0.058487929403782],[-0.052174419164658,0.022085644304752,-0.0099109280854464]],[[0.058240134268999,-0.036728363484144,0.055591981858015],[-0.022854145616293,-0.023878524079919,0.041752524673939],[-0.029911007732153,0.017098404467106,-0.062857143580914]],[[-0.016829980537295,-0.07107038795948,0.015989916399121],[0.040182542055845,-0.06434491276741,-0.036432024091482],[0.045647550374269,-0.021133758127689,-0.011977487243712]],[[0.066094651818275,0.012039803899825,0.0018089778022841],[0.026748629286885,-0.0094436360523105,0.0030923874583095],[-0.07658676803112,0.046975903213024,0.034058138728142]],[[-0.055443465709686,0.0096953837200999,0.045499157160521],[-0.018480660393834,0.021353043615818,0.016300251707435],[-0.055136989802122,0.025730468332767,0.013492209836841]],[[-0.026946907863021,0.0062468028627336,-0.027974173426628],[-0.019532885402441,-0.020452996715903,-0.087769985198975],[-0.031355999410152,-0.00013563709217124,0.002317450940609]],[[-0.046929370611906,-0.010218560695648,0.027758911252022],[-0.032199513167143,-0.087042883038521,-0.014843768440187],[-0.024288274347782,0.0078910961747169,0.033699635416269]],[[-0.0041668144986033,0.013115229085088,0.011131684295833],[-0.0084723010659218,0.012043681927025,-0.041832037270069],[0.02068243548274,0.097483173012733,0.035639066249132]],[[0.03346948698163,0.0096994396299124,-0.0011833771131933],[0.0038094636984169,0.017206212505698,0.0039077657274902],[-0.052687391638756,-0.046048782765865,-0.0068631563335657]],[[-0.051414091140032,0.0042795706540346,-0.033835094422102],[-0.0084810853004456,0.022794254124165,-0.0052106427028775],[-0.024755163118243,-0.043496061116457,-0.0075393198058009]],[[-0.090756550431252,0.058992441743612,-0.029794240370393],[0.058026231825352,0.023621547967196,0.040279880166054],[-0.016836678609252,-0.068285390734673,-0.024748915806413]],[[0.039788577705622,-0.017038084566593,0.028705960139632],[0.0090175112709403,0.0038718692958355,0.048424623906612],[-0.029431132599711,-0.037742480635643,0.066012002527714]],[[0.033574257045984,0.046465042978525,0.028681607916951],[0.086391367018223,0.049643665552139,0.035800028592348],[-0.010090594179928,0.0052381595596671,-0.028631580993533]],[[-0.13220252096653,-0.043831411749125,0.011269907467067],[0.054655998945236,-0.052827578037977,-0.063211612403393],[0.061233554035425,-0.046477928757668,0.031345441937447]],[[0.010866763070226,-0.034653853625059,-0.0058009224012494],[-0.038756802678108,0.020862182602286,0.011774704791605],[-0.030043307691813,-0.0094398027285933,0.036465346813202]],[[-0.054339099675417,-0.017791578546166,-0.0080202165991068],[-0.082344524562359,-0.031857613474131,0.053685735911131],[-0.033498410135508,-0.036318831145763,-0.00391895044595]],[[-0.015432203188539,0.042633447796106,-0.0095974477007985],[0.023884519934654,0.019705826416612,0.064756095409393],[-0.0022300679702312,-0.0048894104547799,-0.011172567494214]],[[0.05788854137063,-0.023875752463937,-0.043013364076614],[-0.021974364295602,-0.036656387150288,-0.013760851696134],[-0.077174723148346,-0.05015704408288,-0.012597317807376]],[[0.070778779685497,-0.021766902878881,0.076459281146526],[0.040726810693741,-0.025303734466434,0.032579977065325],[-0.023181553930044,0.042860418558121,-0.067536763846874]],[[-0.054029103368521,0.019690597429872,0.079527229070663],[-0.0084836930036545,-0.034419368952513,0.036365516483784],[0.067410089075565,0.010118843056262,0.030595809221268]],[[-0.0056153163313866,-0.097648911178112,-0.0025184082332999],[0.10313396155834,-0.0014105103909969,0.081429913640022],[-0.01225108653307,-0.010189267806709,0.020414926111698]],[[0.02268572896719,-0.0026690049562603,0.081596113741398],[0.011578189209104,0.068781346082687,-0.035825535655022],[-0.059015087783337,0.02612104639411,-0.010282708331943]],[[0.010309514589608,0.02277148514986,0.046135697513819],[0.063372887670994,-0.011305467225611,-0.011148384772241],[0.020130209624767,-0.012813229113817,0.085564076900482]],[[0.034643143415451,0.035478252917528,-0.042185515165329],[-0.057636626064777,0.061471838504076,0.047021258622408],[0.056633412837982,-0.096041090786457,0.0036180349998176]],[[-0.061855532228947,0.037082765251398,-0.071503512561321],[-0.0068026552908123,0.029281739145517,0.031739637255669],[0.030721811577678,0.036309219896793,-0.056868847459555]],[[-0.047190826386213,0.034060284495354,0.046741038560867],[0.01591488160193,-0.017115361988544,0.054989479482174],[0.0056300456635654,0.051723588258028,-0.019134763628244]],[[-0.029189541935921,-0.029225330799818,0.0044477167539299],[-0.00082982273306698,-0.017640218138695,-0.01837844774127],[-0.0086078122258186,-0.027030473574996,0.086353570222855]],[[-0.026120889931917,-0.0090688737109303,0.11424135416746],[0.070445820689201,0.049721349030733,-0.018200054764748],[-0.0082402490079403,0.023128524422646,0.0079639386385679]],[[0.024026550352573,-0.01469830237329,0.024488048627973],[-0.081933401525021,0.050182342529297,0.025816176086664],[-0.04720938205719,0.0066362791694701,-0.074854284524918]],[[0.041082583367825,0.041879095137119,0.0022497568279505],[0.0078644901514053,0.019033884629607,-0.054054167121649],[0.067984282970428,0.015901107341051,-0.013462150469422]],[[-0.10166373848915,0.060783084481955,-0.032948426902294],[-0.077424645423889,-0.050688534975052,0.021837811917067],[-0.018239850178361,0.017727730795741,0.046115811914206]],[[0.0079023605212569,-0.013919161632657,-0.027478190138936],[-0.021188272163272,0.0096898684278131,0.064796082675457],[-0.011680011637509,0.034552861005068,0.091019630432129]],[[-0.068611018359661,0.041443679481745,-0.038066703826189],[0.053673893213272,-0.0042617935687304,-0.05805667117238],[0.01305225212127,-0.04156818985939,0.0045607541687787]],[[0.02518954873085,0.04720950499177,-0.040897373110056],[0.0065900241024792,-0.024684319272637,0.031238818541169],[0.040975723415613,-0.065043486654758,0.051566556096077]],[[-0.024036714807153,-0.0065091019496322,0.022080758586526],[-0.02346607670188,-0.03089464828372,-0.0032286189962178],[0.02566671743989,-0.087978772819042,-0.085134595632553]],[[0.011312041431665,-0.0089615806937218,-0.053485427051783],[-0.058695167303085,0.016223527491093,-0.018195481970906],[-0.026781341060996,0.023329610005021,-0.022873558104038]],[[-0.02066364698112,-0.039797428995371,0.087878338992596],[0.047861192375422,0.051014170050621,0.031858261674643],[0.015997596085072,0.064216583967209,-0.041628193110228]],[[0.098461151123047,0.071295090019703,-0.0012183906510472],[0.040975600481033,0.048782717436552,0.060468126088381],[-0.009776514954865,-0.050795651972294,-0.0030399987008423]],[[-0.016685171052814,-0.01243238709867,-0.0040888842195272],[-0.02911658026278,0.038842171430588,-0.00046623317757621],[-0.069881357252598,-0.052225030958652,-0.059308130294085]],[[0.087248735129833,-0.037944912910461,0.055689133703709],[0.035118538886309,-0.024829188361764,0.015300017781556],[0.049779057502747,0.023240825161338,0.038744688034058]],[[0.031922023743391,-0.017834195867181,-0.070981353521347],[0.00047190193436109,0.065537765622139,-0.06952953338623],[0.014181490987539,-0.01786264963448,-0.045493967831135]],[[0.049767278134823,-0.015599383041263,0.020960837602615],[-0.016214579343796,0.021066714078188,0.015300335362554],[-0.020021485164762,0.025107849389315,-0.042509239166975]],[[0.0031470556277782,-0.06356904655695,0.04130332171917],[-0.014959583990276,0.067853927612305,0.022111847996712],[0.012008517049253,0.1043469235301,-0.11102706193924]],[[-0.048424068838358,-0.012987280264497,-0.0028011212125421],[0.023815801367164,0.025400523096323,-0.033130943775177],[0.042341068387032,0.036031872034073,0.056726079434156]],[[-0.010604866780341,0.020544985309243,-0.082219742238522],[-0.022362189367414,-0.0055194613523781,0.035953067243099],[-0.052404168993235,0.050382141023874,-0.088802464306355]],[[-0.02861151471734,0.021187905222178,0.0040922635234892],[-0.016698930412531,0.030439836904407,0.030863763764501],[0.017316088080406,-0.012079400010407,0.038498289883137]],[[-0.0094928545877337,0.040287271142006,-0.0090040182694793],[-0.045982409268618,0.045252338051796,0.017029168084264],[-0.010828567668796,-0.038656819611788,0.011160779744387]],[[-0.051527433097363,-0.0082886638119817,-0.020220508798957],[0.027744792401791,-0.041324697434902,0.029970260336995],[0.045305836945772,-0.054318357259035,0.051512312144041]],[[0.027020530775189,-0.035058151930571,0.001662956783548],[-0.025222450494766,0.051338255405426,-0.036688968539238],[0.0042017321102321,-0.062540374696255,0.0608124807477]],[[0.018772965297103,0.030822494998574,-0.018390757963061],[-0.023354038596153,-0.0091690057888627,-0.026838701218367],[0.032013021409512,0.016886435449123,0.067447081208229]],[[0.025211002677679,-0.022765256464481,-0.020720375701785],[-0.011109058745205,0.00085085694445297,0.02136342972517],[0.052627991884947,0.027037236839533,-0.081595361232758]],[[-0.048084292560816,0.013431708328426,0.048149064183235],[0.01727450452745,0.060996778309345,0.030096191912889],[-0.02045439556241,-0.011633975431323,0.00069752836134285]],[[0.055368430912495,0.017607497051358,0.040101673454046],[0.01218397449702,0.016838010400534,0.012249763123691],[0.026560541242361,0.047484517097473,-0.01686136610806]],[[-0.017163624987006,0.035369671881199,0.085898958146572],[-0.0067294384352863,0.033806625753641,-0.0021876716054976],[-0.001563893049024,0.033861801028252,-0.060711722820997]],[[0.018427040427923,-0.021581266075373,0.047020919620991],[0.027336431667209,0.060268461704254,-0.03175849840045],[-0.017859030514956,-0.016578044742346,0.04649979621172]],[[0.064915046095848,0.0083216363564134,-0.055598739534616],[-0.031550724059343,0.057692535221577,0.013536476530135],[-0.08382560312748,-0.019721677526832,-0.023398950695992]],[[0.063091896474361,0.071502581238747,0.025245269760489],[-0.046520330011845,0.048641707748175,0.0050409641116858],[0.045418687164783,-0.046729404479265,0.026532799005508]],[[0.0036816617939621,0.0064283278770745,0.024029046297073],[-0.016252469271421,-0.0049091386608779,-0.040686428546906],[0.017006948590279,0.032184023410082,0.017995985224843]],[[0.018518451601267,0.03568797186017,0.024894734844565],[0.085860848426819,0.061802066862583,0.023213492706418],[-0.022231668233871,0.021436039358377,-0.021839184686542]],[[0.029311696067452,0.045091606676579,0.032732509076595],[-0.029917296022177,-0.059839531779289,0.060564447194338],[0.01683802343905,0.0097881080582738,-0.013782118447125]],[[-0.011417341418564,-0.035564750432968,0.0073616309091449],[0.013996076770127,-0.022712768986821,0.040118131786585],[0.00035207220935263,0.032314952462912,0.072626106441021]],[[0.062240276485682,0.024772567674518,0.03258366510272],[-0.0069839172065258,-0.014503739774227,0.038392178714275],[-0.036946810781956,-0.0012879079440609,-0.047298118472099]],[[0.077411815524101,0.00087510631419718,-0.0027069943025708],[0.032404005527496,0.018119759857655,0.076964810490608],[-0.042955812066793,-0.0038845592644066,0.012000379152596]],[[-0.050920691341162,0.056691654026508,0.01803894340992],[0.00086270913016051,0.0077375085093081,-0.030870476737618],[0.069569192826748,-0.056500788778067,0.082585461437702]],[[0.038798432797194,0.041620030999184,-0.01508585177362],[-0.02488268725574,0.069731451570988,0.0033743320964277],[0.091328740119934,0.021711314097047,-0.022334702312946]],[[0.018885960802436,0.025451067835093,0.027669358998537],[-0.014415361918509,0.0048969993367791,0.014540815725923],[0.00472108181566,0.0031491029076278,0.016496751457453]],[[-0.036956574767828,-0.034529484808445,0.02958613075316],[0.041266329586506,-0.067931830883026,0.034102734178305],[-0.0071205808781087,0.063371002674103,0.076164215803146]],[[0.023585040122271,0.010805794037879,0.0050467583350837],[-0.082477383315563,-0.016913762316108,0.039574161171913],[0.00068365701008588,0.092464819550514,0.020243426784873]],[[-0.10953902453184,-0.0087853260338306,-0.059785813093185],[0.0039387736469507,-0.087420985102654,-0.012416562996805],[-0.014934970065951,0.032274663448334,0.013406002894044]],[[0.046136055141687,-0.032775182276964,0.041120074689388],[0.010776041075587,-0.030430369079113,0.022401014342904],[-0.018266221508384,0.017441662028432,-0.045224938541651]],[[-0.06086277961731,-0.040579207241535,0.0033479330595583],[-0.039551854133606,0.04490477964282,0.080701150000095],[0.047205440700054,0.065213695168495,-0.084828741848469]],[[0.018342303112149,-0.0081013888120651,-0.070081889629364],[-0.021885994821787,0.0090272473171353,-0.042037844657898],[0.01529021281749,0.019196795299649,-0.030821081250906]],[[0.039922893047333,-0.037298370152712,0.016028732061386],[0.048098843544722,0.016258575022221,0.068372070789337],[-0.0022743802983314,0.024452028796077,0.028979504480958]],[[0.070558816194534,0.012054135091603,0.024629171937704],[-0.0099369566887617,0.036368973553181,-0.0010980971856043],[-0.024652795866132,0.036215454339981,-0.020293181762099]],[[-0.045534588396549,0.057105462998152,-0.068656742572784],[-0.022265756502748,0.017908832058311,0.056034546345472],[-0.011962786316872,0.043720915913582,0.012244185432792]],[[-0.031259510666132,0.024412535130978,0.0012664439855143],[0.029530705884099,-0.011213063262403,-0.0059774299152195],[-0.0050988658331335,0.050411362200975,0.020975701510906]],[[-0.031373284757137,-0.025468043982983,0.014057711698115],[0.066649451851845,0.017509719356894,0.024252751842141],[-0.085724651813507,0.014326967298985,-0.017347559332848]],[[-0.022673754021525,-0.0074958885088563,0.034965079277754],[-0.060062870383263,-0.0047735241241753,-0.034061744809151],[-0.026731014251709,0.027739768847823,-0.0024426199961454]],[[0.036842331290245,0.0047465646639466,0.023708328604698],[0.01383213698864,0.023005792871118,0.0038324613124132],[-0.03208877146244,0.0067291134037077,-0.0023426508996636]],[[-0.060620673000813,-0.049655321985483,0.02570278942585],[0.030342804268003,0.10313230752945,0.031332328915596],[-0.015445277094841,0.043910712003708,0.046896249055862]],[[0.015423099510372,-0.00090173480566591,-0.057033285498619],[-0.035216875374317,-0.044449787586927,-0.0056410534307361],[0.040106516331434,-0.035452157258987,0.00044032203732058]],[[-0.0062289363704622,0.02583377994597,0.035638451576233],[-0.022098476067185,0.0041593834757805,0.062357734888792],[-0.003143762005493,-0.019973777234554,-0.10484604537487]],[[0.0059105497784913,0.07434669137001,0.0073046172037721],[0.027525242418051,-0.026827000081539,0.023351872339845],[-0.035392720252275,0.021991258487105,0.0070519498549402]],[[-0.045393474400043,0.11845271289349,-0.040563851594925],[0.047958217561245,-0.018445130437613,-0.026377147063613],[-0.05052636936307,-0.017161641269922,-0.022594232112169]],[[0.0053521106019616,-0.029394088312984,-0.024042665958405],[-0.04211762174964,0.056260827928782,-0.063231311738491],[0.019195437431335,0.039836499840021,0.028309512883425]],[[0.012167307548225,0.045221962034702,0.00018492004892323],[-0.011255649849772,-0.0080816755071282,-0.0029441714286804],[-0.015748562291265,0.0062710344791412,-0.022727524861693]],[[-0.0023911071475595,0.022970272228122,0.034784685820341],[0.035908561199903,0.082559265196323,0.0089078871533275],[0.047483891248703,0.027511704713106,0.016768474131823]],[[-0.005468288436532,0.019722901284695,0.023360658437014],[-0.04303677380085,-0.057972151786089,-0.042012173682451],[-0.0016307011246681,-0.084061771631241,0.039626643061638]],[[-0.033210407942533,-0.015564765781164,-0.018652822822332],[0.027407564222813,0.024048883467913,0.03008727170527],[-0.026374069973826,0.062670491635799,0.011297672055662]],[[0.0019102429505438,0.0023370734415948,-0.066244311630726],[-0.028255648910999,-0.043786991387606,-0.0094905719161034],[0.010471239686012,0.045642200857401,0.00062038702890277]],[[0.051107786595821,0.035970538854599,-0.0095267426222563],[-0.029120866209269,-0.03028653934598,0.035337600857019],[0.031630504876375,0.07661347836256,-0.022847199812531]],[[0.0076741524972022,0.049617029726505,-0.0021004346199334],[-0.027022704482079,-0.046715762466192,0.025807669386268],[-0.026287717744708,0.0063608614727855,0.042456828057766]],[[0.028917388990521,0.009530721232295,0.0019310136558488],[-0.0075923106633127,0.045303110033274,0.027133734896779],[0.034482382237911,-0.021299999207258,-0.030720986425877]],[[0.0036810205783695,0.063513241708279,-0.0076854657381773],[-0.055628564208746,0.053970500826836,0.051177360117435],[-0.012846822850406,0.014452014118433,0.0013408430386335]],[[0.0096090761944652,0.034153301268816,0.082416221499443],[0.058162197470665,-0.079770177602768,-0.079555712640285],[0.033056508749723,-0.0062419199384749,-0.012434524483979]],[[-0.032339677214622,-0.023042052984238,0.011826824396849],[-0.014318755827844,-0.070357866585255,-0.017554480582476],[0.0064711053855717,0.044836904853582,-0.028653874993324]],[[0.032452810555696,0.075095683336258,-0.050374008715153],[-0.053922731429338,0.041209120303392,-0.025619577616453],[0.0044830027036369,0.0074673118069768,0.019132202491164]],[[-0.0032262757886201,-0.032826758921146,-0.0070248912088573],[0.053501162678003,0.02649263292551,-0.00063123169820756],[-0.08475948125124,0.058153230696917,0.013334181159735]],[[-0.0016330933431163,-0.026248794049025,-0.032659988850355],[-0.00016416367725469,-0.093911409378052,0.011098124086857],[0.034043349325657,-0.04810493439436,-0.0035932906903327]],[[-0.034535475075245,-0.021176818758249,0.0022581189405173],[-0.029150145128369,-0.049070671200752,0.086815662682056],[0.0033842257689685,0.024089559912682,0.0051160329021513]],[[0.046153217554092,0.030148983001709,0.010971341282129],[0.022294871509075,-0.0039012243505567,-0.023281171917915],[-0.012350539676845,0.0096877831965685,0.0064970660023391]],[[0.055081814527512,-0.012328818440437,-0.020151620730758],[0.013074270449579,0.076972797513008,-0.0089393528178334],[-0.0099621145054698,-0.0030232060234994,0.051295261830091]],[[-0.023605920374393,0.04793032631278,-0.036149069666862],[-0.0066331163980067,0.043293971568346,-0.027449475601315],[0.00019127273117192,0.091645710170269,-0.027827357873321]],[[0.016639096662402,0.059047132730484,0.011446680873632],[0.017425458878279,0.055854219943285,-0.060168873518705],[-0.024232730269432,-0.026449389755726,-0.065739996731281]],[[-0.11475037038326,0.022959962487221,-0.062523283064365],[-0.033663123846054,-0.052721191197634,-0.010809443891048],[-0.031836155802011,-0.010005882941186,-0.024399800226092]],[[-0.00012450598296709,0.024561492726207,0.011310451664031],[0.070477291941643,-0.027233794331551,0.0037620237562805],[-0.084786973893642,-0.0087457671761513,-0.025610422715545]],[[-0.0071684964932501,-0.052027836441994,-0.044571690261364],[-0.086290664970875,-0.053634695708752,0.018595481291413],[-0.10552067309618,-0.053734626621008,-0.057090736925602]],[[-0.05250633507967,-0.0008765030070208,0.0055960854515433],[0.060597516596317,-0.0169896800071,0.010577463544905],[0.033495031297207,-0.061545353382826,-0.066623210906982]],[[0.0050586559809744,-0.071280062198639,0.01336960028857],[-0.011976878158748,0.032028287649155,0.017725421115756],[-0.004889789968729,0.058103814721107,-0.0057776970788836]],[[-0.017176641151309,0.053146030753851,0.0044784597121179],[0.041251078248024,-0.017986077815294,-0.014841889031231],[0.05253766104579,0.054453510791063,-0.01610129326582]],[[0.031375672668219,-0.027014337480068,0.084588937461376],[0.0505978949368,-0.019176507368684,0.066387169063091],[-0.017884913831949,0.054770644754171,0.025150805711746]],[[0.015506251715124,0.033091690391302,-0.066700913012028],[-0.022940184921026,-0.048438619822264,0.011349678970873],[0.062997415661812,0.040841091424227,-0.022964159026742]],[[0.037727542221546,-0.04200429096818,-0.025610050186515],[0.031714465469122,0.00019642943516374,-0.0021877950057387],[0.064188912510872,0.0019505646778271,0.032903026789427]],[[0.0056638750247657,0.00037289666943252,0.044858541339636],[-0.030667198821902,0.026773683726788,-0.017515746876597],[0.012563729658723,-0.0071998625062406,0.02538332901895]]],[[[-0.043435849249363,0.0093614105135202,-0.021454481408],[-0.026669785380363,0.020761929452419,0.018118051812053],[0.03104599379003,0.027500614523888,-0.036666598170996]],[[-0.012912075035274,0.012307499535382,0.025880536064506],[-0.014552092179656,-0.0052412743680179,-0.013167280703783],[0.037859741598368,-0.017117466777563,-0.036986958235502]],[[-0.086974062025547,-0.024791168048978,-0.018376190215349],[-0.0061207697726786,-0.054250057786703,0.0064415740780532],[0.054013341665268,0.032713431864977,0.022011434659362]],[[-0.012903754599392,-0.018690649420023,-0.098668336868286],[0.049401592463255,0.057526256889105,0.026055166497827],[0.030997587367892,0.065184570848942,0.10872536152601]],[[-0.014115730300546,0.018127037212253,0.0066883405670524],[0.0080952756106853,0.025312334299088,-0.0089636351913214],[-0.014789051376283,-0.029619373381138,-0.040060050785542]],[[-0.0047140335664153,-0.05064420774579,0.027261584997177],[0.040822334587574,0.015485776588321,-0.04179747402668],[0.014905248768628,0.026153879240155,-0.0072174891829491]],[[-0.015396814793348,0.019933586940169,-0.026191150769591],[0.020513838157058,0.0016570122679695,-0.05771155282855],[-0.0064431931823492,-0.025681404396892,0.0038844845257699]],[[-0.0079866936430335,0.028868256136775,-0.033667057752609],[-0.048958621919155,0.064294636249542,-0.041940819472075],[0.0083555951714516,0.021998895332217,0.024048903957009]],[[0.095044426620007,0.0286585688591,0.058669786900282],[0.033861022442579,-0.039725180715322,0.067393764853477],[-0.022744081914425,0.012966131791472,0.031887661665678]],[[0.0015848709736019,-0.013579181395471,0.044213488698006],[-0.033214550465345,0.02359352633357,-0.013497180305421],[-0.019948279485106,0.041527878493071,0.0051326584070921]],[[-0.050131376832724,0.014499821700156,-0.05976814031601],[0.040056135505438,0.024845454841852,0.0033025573939085],[-0.037414863705635,-0.01409921143204,-0.025291759520769]],[[-0.0017564388690516,-0.041889280080795,0.020064510405064],[-0.0061311274766922,0.086811274290085,-0.0088042672723532],[-0.027169046923518,0.0052025537006557,-0.073849394917488]],[[0.066159829497337,0.071316383779049,0.023552801460028],[0.098990760743618,0.042159292846918,0.070723123848438],[0.032251473516226,0.067387484014034,0.19469930231571]],[[0.040817994624376,0.010097757913172,-0.029469573870301],[0.082022592425346,-0.0064646257087588,-0.052772805094719],[-0.040408905595541,0.13821844756603,0.013370202854276]],[[0.034410037100315,0.0072675221599638,0.062295150011778],[0.11160416156054,0.11656802147627,0.048040561378002],[0.12737646698952,0.01071307156235,-0.0012414107332006]],[[0.0024011400528252,0.0044429856352508,0.023426717147231],[0.030791729688644,0.033545851707458,-0.034017760306597],[0.080963999032974,0.0041470201686025,0.084377266466618]],[[-0.0076538808643818,0.046596258878708,0.0050918818451464],[-0.059062652289867,-0.0002517721732147,0.027157684788108],[0.029290016740561,-0.075951181352139,0.0031425296328962]],[[0.027697369456291,-0.035084813833237,-0.035334747284651],[-0.027552610263228,0.015483054332435,-0.048557676374912],[0.014001688919961,0.040799919515848,-0.026710104197264]],[[0.020076522603631,-0.0051870751194656,-0.0012993997661397],[0.014691466465592,-0.0056088105775416,-0.014453195035458],[0.0082287956029177,-0.01395760755986,0.038460671901703]],[[0.06033344194293,0.022330325096846,-0.012134623713791],[0.079170256853104,0.011955040507019,-0.052176222205162],[-0.011177092790604,0.066125057637691,-0.050458829849958]],[[0.0017526347655803,0.016247104853392,0.0042739231139421],[-0.00051969749620184,0.015006796456873,0.0050431513227522],[0.017779443413019,-0.013212447986007,0.016319805756211]],[[0.0549556016922,0.022833170369267,0.0076226023957133],[0.051545932888985,-0.019229805096984,0.0088442387059331],[-0.0024866701569408,0.013153566047549,0.062512584030628]],[[-0.047928467392921,0.0003161400090903,0.065904460847378],[-0.043343085795641,-0.018812417984009,0.046105492860079],[0.038665041327477,0.039428897202015,-0.0056666936725378]],[[-0.046238210052252,-0.021929703652859,0.044579777866602],[-0.051512561738491,0.031346309930086,0.002711811568588],[0.0058060926385224,-0.059536676853895,0.093063145875931]],[[0.026577923446894,-0.056159801781178,0.049198493361473],[0.089349962770939,-0.0034495773725212,0.018691157922149],[0.086397789418697,0.085998527705669,-0.057390246540308]],[[0.012419536709785,0.014949569478631,-0.00093906797701493],[-0.028165981173515,-0.07414934784174,-0.015418353490531],[-0.017806297168136,-0.025450037792325,0.032482016831636]],[[0.080119237303734,0.045147959142923,0.039000552147627],[0.054906342178583,0.090219482779503,0.096888437867165],[0.043094910681248,0.053974248468876,0.073148876428604]],[[-0.0041020084172487,-0.0052321697585285,-0.0022215710487217],[-0.015508634969592,-0.036657977849245,-0.015124733559787],[0.0035962136462331,-0.0091694993898273,0.01000580471009]],[[0.095238044857979,0.13405391573906,-0.011546081863344],[-0.014421727508307,-0.026059037074447,0.083118863403797],[0.013242991641164,0.062390293926001,0.0040515474975109]],[[-0.063000239431858,0.039818540215492,0.0091916089877486],[0.025060076266527,-0.013184922747314,0.052054904401302],[0.020745562389493,-0.016823841258883,-0.032312676310539]],[[0.0063042738474905,0.034252166748047,-0.015798965469003],[-0.00085184985073283,0.050270233303308,-0.0134022757411],[0.008972474373877,0.02098055370152,0.029198845848441]],[[0.05117042735219,0.010553800500929,0.011487416923046],[-0.050329755991697,-0.012651433236897,0.014020094648004],[0.078520506620407,0.017167372629046,0.047636929899454]],[[-0.019126458093524,0.044600285589695,0.037571620196104],[-0.038903295993805,0.040381249040365,0.041191201657057],[0.027489308267832,-0.015410902909935,-0.048407949507236]],[[-0.016345800831914,-0.024940984323621,0.10123393684626],[9.2357295216061e-06,-0.0078076743520796,0.013506853953004],[-0.019493240863085,0.034060377627611,-0.018885027617216]],[[-0.035733137279749,-0.020727012306452,0.056910216808319],[0.025639476254582,-0.026162164285779,-0.015843601897359],[0.032299499958754,-0.032234773039818,0.05290324613452]],[[0.035485669970512,-0.043499130755663,0.011320468038321],[-0.048625528812408,-0.018040493130684,-0.036321315914392],[-0.006811220664531,0.0030828074086457,0.031801264733076]],[[-0.012017311528325,0.042924523353577,0.072000794112682],[-0.04549602791667,0.016153499484062,0.041432071477175],[-0.019124794751406,-0.045402128249407,0.029288563877344]],[[-0.14273951947689,-0.03845301643014,0.034113790839911],[-0.012643745169044,0.024047622457147,-0.028622806072235],[-0.0032353808637708,-0.042203966528177,0.023015350103378]],[[-0.051144350320101,0.055087465792894,-0.020122788846493],[-0.09131184220314,0.10945719480515,-0.0022815293632448],[0.025561440736055,-0.067921742796898,-0.045200388878584]],[[-0.043146908283234,0.019584219902754,0.0023946303408593],[-0.0040959143079817,0.032838765531778,-0.0066219330765307],[0.023362625390291,0.040282744914293,0.036932963877916]],[[0.14310726523399,0.013923751190305,0.048112887889147],[0.05185130611062,-0.002796912798658,0.067534163594246],[0.069572985172272,-0.013078537769616,-0.12805923819542]],[[-0.063665881752968,0.050031840801239,-0.022405114024878],[0.02931010723114,-0.0024667079560459,-0.0012830388732255],[-0.041818775236607,-0.040591258555651,0.045835487544537]],[[-0.0059023615904152,0.02636525593698,0.026664491742849],[0.045813992619514,0.029769307002425,-0.019081436097622],[0.025579612702131,-0.024961745366454,0.07947102189064]],[[0.0098606962710619,0.0029739630408585,-0.045726630836725],[-0.0085040312260389,0.0014744522050023,0.032109580934048],[-0.013511096127331,0.019395273178816,-0.033951748162508]],[[0.047670099884272,0.102175809443,0.068500891327858],[-0.14635297656059,0.019560033455491,0.086274549365044],[-0.020310901105404,-0.0024504174944013,0.031938664615154]],[[0.02084905654192,-0.080321401357651,0.069689184427261],[-0.011163407936692,0.04669551551342,-0.037365712225437],[-0.034095302224159,0.036672260612249,-0.024756867438555]],[[0.050031684339046,-0.017571985721588,-0.037827838212252],[0.035597711801529,0.021466152742505,0.083404123783112],[-0.0032936260104179,-0.0005407800199464,-0.011757431551814]],[[0.024288225919008,0.019872879609466,-0.01271206792444],[-0.088378541171551,0.0033602460753173,-0.079405151307583],[-0.025968506932259,0.055843025445938,-0.0069353403523564]],[[-0.029397552832961,-0.063877515494823,0.010799075476825],[-0.048515129834414,-0.039195090532303,-0.037227056920528],[0.023617813363671,-0.092424221336842,-0.05814054608345]],[[-0.070566244423389,-0.035109736025333,-0.031761612743139],[0.0038563774432987,0.0054236240684986,-0.036109954118729],[0.016666857525706,-0.0020504426211119,0.03062536008656]],[[0.042802795767784,0.05880668759346,0.031002642586827],[0.0082107782363892,0.032345239073038,0.082996807992458],[-0.0089750671759248,-0.014836846850812,-0.039506074041128]],[[0.0045919353142381,-0.043120063841343,0.0076406607404351],[0.04834521189332,-0.013835633173585,0.033645369112492],[-0.022039946168661,-0.0028388297650963,-0.052072357386351]],[[0.015946265310049,0.009010692127049,-0.063572019338608],[-0.026226675137877,-0.078481458127499,0.0055630966089666],[-0.058309845626354,0.0078276880085468,-0.0064412802457809]],[[-0.015419604256749,0.062540307641029,0.0029601193964481],[0.046502683311701,-0.059244658797979,0.021791623905301],[-0.019906824454665,0.10715088993311,0.00083304429426789]],[[-0.023031651973724,-0.030259856954217,-0.0010505396639928],[0.12620317935944,0.0028117869514972,0.045941483229399],[0.16043031215668,0.06263479590416,-0.0013527936534956]],[[-0.088251106441021,-0.0082809776067734,0.011752065271139],[0.091790199279785,0.0024482505396008,-0.02316509373486],[-0.012437084689736,0.055006310343742,0.0055905836634338]],[[-0.017569264397025,0.046094201505184,-0.054814863950014],[0.055495020002127,0.06363433599472,0.045424491167068],[-0.018787072971463,-0.0089016268029809,0.02960941940546]],[[0.010730741545558,0.035615973174572,0.020885610952973],[0.015587037429214,0.016906468197703,-0.031419266015291],[0.025239268317819,-0.043067153543234,-0.064169071614742]],[[0.016819547861814,0.055192030966282,0.0050416430458426],[-0.04282583296299,0.10162661969662,0.027209399268031],[0.02965628169477,-0.044486459344625,0.015347188338637]],[[0.074065953493118,0.042825229465961,0.044282212853432],[-0.070537246763706,0.0089192474260926,-0.027758797630668],[0.079662851989269,-0.024118479341269,0.022557264193892]],[[0.0075232344679534,-0.046098526567221,-0.014290704391897],[0.055970497429371,0.026355965062976,0.020941406488419],[0.00087837153114378,0.037507865577936,0.069204770028591]],[[0.028214488178492,-0.021152034401894,0.043474555015564],[0.080085568130016,-0.015595871955156,0.02898296713829],[0.083060286939144,0.029103951528668,-0.07574562728405]],[[0.017572635784745,0.008976299315691,0.0089697623625398],[0.037792827934027,0.0050379671156406,0.020180314779282],[0.016397170722485,-0.019555630162358,0.046594370156527]],[[0.01937891729176,0.032560683786869,-0.067550957202911],[-0.052371203899384,0.028234036639333,0.074990049004555],[0.0015343968989328,-0.017445743083954,-0.0049634897150099]],[[0.023784335702658,0.039184466004372,0.00063594605308026],[-0.019912354648113,-0.031207112595439,0.0043155970051885],[0.0048978002741933,0.060549613088369,0.062301594763994]],[[0.020770289003849,0.022700794041157,0.044001575559378],[-0.011868849396706,0.0085491435602307,-0.014869015663862],[0.042955379933119,0.043126508593559,0.026158381253481]],[[-0.002553757512942,-0.053115602582693,0.018768560141325],[0.037966396659613,0.068139962852001,-0.01295424811542],[-0.012005049735308,-0.043915931135416,0.083204850554466]],[[-0.063137345016003,-0.011260661296546,0.012737769633532],[-0.013514835387468,0.05924990400672,0.0083923861384392],[-0.022029278799891,0.066879794001579,-0.026658440008759]],[[-0.015337995253503,-0.1122399866581,0.028833720833063],[0.0092241587117314,0.12971480190754,-0.0067320596426725],[0.045418202877045,0.053239561617374,0.082153484225273]],[[-0.037427876144648,0.022210085764527,-0.0086535774171352],[0.0014693943085149,0.020828975364566,-0.077197551727295],[-0.012610553763807,0.06653555482626,0.0023723999038339]],[[-0.027795970439911,0.085253350436687,-0.010026560164988],[0.015339352190495,0.0074541862122715,-0.049860384315252],[0.027185842394829,0.031296592205763,0.069224946200848]],[[0.029917990788817,0.071742989122868,0.02414982393384],[-0.0014515875373036,-0.10656019300222,-0.018991287797689],[0.011107516475022,-0.0064090108498931,-0.079977042973042]],[[-0.023739017546177,0.017525222152472,0.0084272855892777],[0.040690336376429,-0.069732703268528,-0.016535108909011],[-0.024334257468581,-0.0085990931838751,-0.027142036706209]],[[0.03100379742682,0.0059477086178958,0.0037446874193847],[0.023952644318342,0.0036641403567046,-0.0095392717048526],[-0.026503033936024,-0.039775267243385,0.0523193590343]],[[-0.030846234411001,-0.036031313240528,0.01873654872179],[0.025298239663243,-0.040245000272989,-0.019103871658444],[0.076217852532864,-0.0025473546702415,0.073084138333797]],[[0.024926109239459,0.00235814624466,-0.0054585142061114],[-0.049529880285263,-0.020041497424245,0.084787115454674],[-0.068673357367516,0.032463669776917,0.018631586804986]],[[0.058653056621552,0.0020083552226424,-0.0012666814727709],[0.03016434237361,0.022258082404733,0.049098040908575],[0.024156445637345,0.029029432684183,0.050771526992321]],[[-0.098666206002235,0.080798909068108,0.020233310759068],[0.014554151333869,0.0050172051414847,-0.089830547571182],[0.063953377306461,0.058283571153879,-0.0041453302837908]],[[-0.0054663899354637,0.017348602414131,-0.025892406702042],[0.019621420651674,0.023294491693377,-0.039965201169252],[0.025595296174288,-0.0089965825900435,0.010078703053296]],[[0.039277467876673,-0.034809187054634,0.018983336165547],[0.076321609318256,-0.016115238890052,-0.016779335215688],[-0.012440732680261,0.044815011322498,-0.00050399143947288]],[[0.12321990728378,0.056733168661594,0.036272875964642],[0.082344599068165,0.051226850599051,-0.053955923765898],[-0.015697680413723,-0.017028871923685,-0.0087069384753704]],[[-0.0086483648046851,0.077104270458221,-0.018229722976685],[0.058726113289595,0.090452745556831,0.076038330793381],[-0.0080298101529479,0.042889885604382,0.028776248916984]],[[-0.079453207552433,0.032414633780718,0.040048014372587],[0.039335004985332,-0.016643669456244,0.026598634198308],[0.043638043105602,0.0034847685601562,-0.025811960920691]],[[-0.087246924638748,0.0038665854372084,-0.013537351973355],[0.062602050602436,-0.013442681171,0.042404219508171],[-0.022375779226422,0.067267797887325,0.059228327125311]],[[0.010411855764687,0.067719712853432,0.05530483648181],[-0.055429734289646,-0.0060126478783786,-0.045580204576254],[-0.00426682876423,0.0025624989066273,-0.13146509230137]],[[-0.063834436237812,-0.055118601769209,-0.045025873929262],[0.033281289041042,-0.042946584522724,-0.014994439668953],[0.024012304842472,-0.011365180835128,0.039961036294699]],[[-0.012962864711881,-0.013841778039932,0.055301479995251],[0.081107757985592,-0.023372728377581,-0.043079350143671],[0.034236669540405,0.095295168459415,0.040767434984446]],[[-0.019508019089699,-0.0083780139684677,0.030027439817786],[-0.042190484702587,-0.052335541695356,0.015847872942686],[-0.068040043115616,-0.025710791349411,0.0001772892428562]],[[0.0052347923628986,-0.019276237115264,-0.043582074344158],[0.067866787314415,0.077861964702606,0.058189421892166],[-0.005186871625483,-0.058677677065134,0.027784563601017]],[[0.027242127805948,0.057421404868364,-0.080886878073215],[-0.017784120514989,0.040229078382254,-0.0070589557290077],[-0.039976723492146,-0.071925692260265,0.0061488091014326]],[[-0.0053987363353372,0.04220812395215,0.045351903885603],[-0.048173394054174,0.046229973435402,0.051804732531309],[0.019994039088488,-0.0067632705904543,0.046191029250622]],[[-0.049275498837233,-0.059005204588175,0.028508827090263],[-0.035156197845936,-0.016067054122686,-0.04090553149581],[-0.055299613624811,-0.039971277117729,-0.021733999252319]],[[0.035342309623957,-0.053053695708513,0.057309370487928],[0.042389534413815,-0.0057843853719532,-0.012601599097252],[-0.0074853585101664,0.034236270934343,0.01903304643929]],[[0.01879309117794,-0.0044202418066561,-0.026032591238618],[-0.078226089477539,0.004703433252871,0.014612911269069],[-0.013210708275437,0.022488271817565,-0.028315175324678]],[[-0.0082355998456478,0.0044060875661671,0.033218465745449],[0.00041841226629913,-0.030494680628181,-0.0074637336656451],[-0.015795923769474,0.0021226084791124,-0.022601064294577]],[[-0.042224954813719,0.0090519795194268,0.0011712601408362],[-0.019741412252188,0.055406536906958,-0.030816560611129],[-0.035026852041483,-0.002838522195816,-0.023493172600865]],[[0.030199863016605,0.097489431500435,0.043273702263832],[0.022637881338596,-0.088095381855965,0.027231007814407],[0.028888845816255,0.010831130668521,0.051179736852646]],[[0.074918553233147,0.052513103932142,-0.00013071353896521],[-0.00022983978851698,-0.0043215788900852,0.061315797269344],[0.079257406294346,0.003692889586091,0.13440573215485]],[[0.02650965936482,-0.0011342306388542,0.043935503810644],[-0.060033090412617,-0.0015243840171024,0.010470932349563],[-0.023666143417358,-0.062339920550585,-0.034722320735455]],[[0.014424102380872,0.08930154889822,0.028839202597737],[0.081150881946087,0.022273169830441,-0.014761599712074],[0.047749757766724,-0.029197506606579,0.11789671331644]],[[0.072184346616268,-0.044288769364357,0.010871272534132],[-0.025154873728752,-0.0051876036450267,-0.04886632412672],[-0.036187473684549,0.0059096976183355,-0.061597999185324]],[[-0.013592121191323,0.015126713551581,0.04799072816968],[-0.055516842752695,-0.0022764354944229,0.0025706051383168],[0.059702899307013,-0.0013731402577832,0.011866887100041]],[[0.021026700735092,0.028474893420935,-0.037684932351112],[0.04867247864604,0.019515695050359,0.0037364093586802],[0.051928907632828,-0.07109310477972,0.025817787274718]],[[-0.039940506219864,-0.037892483174801,0.012254933826625],[0.021608242765069,-0.002890671370551,-0.0081032244488597],[-0.041939463466406,-0.027488961815834,-0.0015164003707469]],[[0.019033020362258,0.040272951126099,0.022401766851544],[-0.02212155610323,-0.074630990624428,-0.001443832879886],[0.041362889111042,-0.011890473775566,0.0027356061618775]],[[0.026792826130986,0.056096196174622,-0.050806239247322],[-0.023565091192722,0.023830533027649,0.026735058054328],[0.021236771717668,0.038683760911226,-0.0053622899577022]],[[0.007102532312274,0.0033555577974766,0.0054419068619609],[0.013824512250721,-0.011254063807428,0.064225405454636],[0.083400897681713,-0.0010899191256613,0.073296822607517]],[[-0.0052371104247868,-0.010701142251492,-0.029810395091772],[0.024616532027721,-0.047074988484383,-0.0015283287502825],[0.051132414489985,0.0028729857876897,0.053914956748486]],[[0.0080534052103758,-0.014335357584059,-0.028034549206495],[-0.020942263305187,0.0055101974867284,-0.052996505051851],[-0.066777497529984,-0.013615191914141,0.049514926970005]],[[-0.077016711235046,0.071722507476807,0.0093547757714987],[0.01675832644105,-0.023425506427884,0.0017828634008765],[-0.018692536279559,0.014087803661823,-0.030527206137776]],[[0.013705370947719,-0.0077387876808643,-0.008769016712904],[-0.057859670370817,0.04190431162715,-0.021907607093453],[0.011584689840674,-0.033082745969296,0.039064735174179]],[[-0.081971295177937,-0.0076473653316498,-0.014996074140072],[-0.021276909857988,-0.019153608009219,-0.019770592451096],[-0.010697487741709,0.11369769275188,0.05393373593688]],[[0.027253279462457,-0.013655968941748,-0.029205866158009],[-0.063703373074532,-0.085752449929714,-0.084662236273289],[0.066867083311081,0.064518764615059,0.038793221116066]],[[-0.037461128085852,0.011343342252076,-0.0021271805744618],[-0.0081234220415354,-0.071667477488518,0.010333855636418],[-0.024347359314561,-0.042801469564438,-0.011793506331742]],[[0.038750518113375,-0.0054150121286511,0.014940171502531],[-0.00080186111154035,-0.06470875442028,0.0093761924654245],[0.064108304679394,-0.05683221668005,-0.04247747734189]],[[-0.0038118853699416,-0.020989339798689,-0.038678959012032],[-0.08060597628355,-0.013117913156748,0.0098942145705223],[-0.013166535645723,-0.07313048094511,0.016977371647954]],[[0.016637505963445,-0.018570946529508,-0.057219561189413],[-0.022458942607045,0.027839876711369,-0.026742959395051],[0.021223748102784,0.062971130013466,-0.031712222844362]],[[-0.016409074887633,0.011521756649017,-0.010966776870191],[0.055685121566057,0.014489341527224,-0.029946953058243],[-0.008206794038415,0.049133792519569,0.047808807343245]],[[-0.066391564905643,-0.0090673072263598,-0.021674668416381],[-0.055055037140846,-0.010797432623804,0.0019680960103869],[-0.0093575706705451,-0.010763772763312,-0.035188309848309]],[[0.079947285354137,-0.00061956379795447,-0.022857459262013],[0.053441133350134,-0.035262789577246,0.004071035888046],[0.033827934414148,0.027776828035712,-0.024718947708607]],[[0.03520930185914,0.028790825977921,0.032319363206625],[-0.036917079240084,-0.046261485666037,-0.052890289574862],[0.098305746912956,-0.009128013625741,-0.0052841161377728]],[[-0.089177794754505,0.0028638776857406,0.0095887258648872],[0.028238942846656,-0.00026108769816346,-0.038536459207535],[-0.088145978748798,-0.030742578208447,-0.014171761460602]],[[-0.003783309366554,-0.031764719635248,-0.04113482311368],[0.04083664342761,-0.075131297111511,0.053743086755276],[0.0037876269780099,-0.014568719081581,-0.017294118180871]],[[0.0045110317878425,0.082920156419277,-0.023580122739077],[-0.049312446266413,-0.0084894234314561,0.025036867707968],[-0.070064134895802,-0.025229496881366,-0.039796996861696]],[[0.076158165931702,-0.023518994450569,0.0046116504818201],[0.035526763647795,-0.0076305088587105,0.012019456364214],[-0.044162709265947,-0.041719991713762,-0.058962114155293]],[[0.041200719773769,-0.063834741711617,-0.038685668259859],[0.0029451299924403,0.082831956446171,-0.051643952727318],[0.021314565092325,0.02616318129003,0.021897479891777]],[[0.031470399349928,0.008621146902442,0.071399964392185],[0.077909640967846,0.00071896583540365,-0.047844864428043],[0.018689557909966,0.030004434287548,0.051460146903992]],[[-0.11652965843678,0.021376023069024,0.0066662547178566],[0.051349256187677,-0.042586233466864,0.027841551229358],[0.079631395637989,0.034906137734652,0.010139608755708]]],[[[0.1046447455883,-0.011740357615054,-0.089948780834675],[0.034622643142939,0.093335323035717,0.048736363649368],[-0.021727032959461,0.026710014790297,-0.0976457670331]],[[0.0087792547419667,-0.094433344900608,0.046655640006065],[-0.042935881763697,-0.014285312965512,-0.035667769610882],[-0.046796772629023,0.0038097717333585,-0.012709994800389]],[[0.077761821448803,0.0086999600753188,-6.8912973802071e-05],[-0.016252167522907,0.10747481137514,0.032501488924026],[0.0062310732901096,0.10606381297112,-0.18370279669762]],[[0.0019734611269087,-0.0072962711565197,0.05540069937706],[-0.036311957985163,0.055755667388439,-0.029077537357807],[-0.077055528759956,-0.0091670388355851,-0.041094116866589]],[[-0.015325141139328,0.027849145233631,-0.0017056778306141],[-0.089832581579685,0.01232987921685,0.016788115724921],[-0.0539311170578,0.09108380228281,-0.091712817549706]],[[-0.009513477794826,-0.015123365446925,0.070123128592968],[-0.049516592174768,-0.053596597164869,0.032578572630882],[0.013585553504527,-0.034986302256584,0.016919378191233]],[[-0.017094485461712,-0.0074490462429821,0.093471519649029],[0.021877612918615,0.05648223683238,-0.098231621086597],[-0.054737165570259,-0.036384843289852,-0.22334471344948]],[[0.055218324065208,0.073067538440228,-0.0065327230840921],[0.03529542312026,-0.054732248187065,-0.023155957460403],[0.022869357839227,0.003633355954662,-0.018462965264916]],[[0.010198574513197,-0.094982266426086,-0.059171829372644],[0.030082648620009,-0.10833042114973,0.087226338684559],[-0.014971283264458,-0.016966024413705,0.040306698530912]],[[0.035060130059719,0.06197614967823,0.018481455743313],[-0.008721879683435,-0.06074545159936,-0.075995095074177],[-0.021797738969326,-0.087352968752384,-0.044614091515541]],[[-0.052574995905161,-0.046155277639627,0.1179892718792],[-0.053610436618328,0.0010965339606628,0.0044294549152255],[-0.010258393362164,-0.097142860293388,-0.068090684711933]],[[0.076491557061672,0.053452521562576,-0.01996966637671],[-0.0023503766860813,-0.012360809370875,0.069136396050453],[-0.035402283072472,0.069766953587532,0.18531706929207]],[[0.1028024405241,0.013408774510026,0.057828426361084],[0.080540560185909,0.054402116686106,-0.035559114068747],[-0.015204189345241,-0.11381124705076,-0.141527146101]],[[0.012749104760587,0.0083943149074912,0.013942101970315],[-0.05934814363718,-0.012107672169805,-0.054614070802927],[0.020248448476195,-0.083160236477852,0.18680097162724]],[[-0.075962498784065,-0.031535271555185,0.0094065451994538],[-0.032678779214621,-0.099437639117241,0.02125065587461],[-0.010079123079777,0.043397504836321,-0.02076649479568]],[[-0.0024277751799673,0.053933225572109,0.054802518337965],[0.10164270550013,-0.028479728847742,-0.058725841343403],[0.027744444087148,-0.029092287644744,-0.071232907474041]],[[0.045207694172859,-0.0033045178279281,-0.083061262965202],[-0.032063324004412,0.08819530159235,-0.10302311182022],[-0.072605527937412,0.074882537126541,0.0069709881208837]],[[0.02838291041553,-0.0049571408890188,0.092604875564575],[0.080148279666901,0.078704498708248,-0.019987374544144],[-0.065947033464909,-0.018230652436614,-0.094557002186775]],[[0.07675363868475,-0.071559138596058,-0.12639875710011],[-0.11974085867405,-0.019024377688766,-0.011540281586349],[0.084737822413445,0.027454501017928,0.099602900445461]],[[0.10478898882866,0.15950952470303,-0.041734922677279],[0.045542526990175,0.035673994570971,0.09671837836504],[0.021371820941567,-0.0869160592556,-0.048103109002113]],[[0.069043815135956,-0.11048649996519,0.02546831779182],[-0.045496769249439,-0.071541003882885,-0.063645578920841],[-0.047627694904804,0.076778344810009,0.087209723889828]],[[0.060038413852453,0.01560356747359,0.11815354973078],[0.024462101981044,0.066350929439068,0.070097401738167],[0.024370240047574,-0.071847729384899,-0.02594742923975]],[[-0.11845841258764,-0.038078173995018,0.094438754022121],[-0.097728312015533,0.066425785422325,0.068082503974438],[-0.12760877609253,0.076975211501122,-0.02314991876483]],[[0.036692507565022,-0.055157117545605,0.015811186283827],[0.033449348062277,0.0023939695674926,0.083789922297001],[0.016833251342177,-0.12545144557953,-0.14863955974579]],[[-0.12940460443497,-0.020404029637575,0.18616622686386],[0.054048955440521,0.22745999693871,-0.043061163276434],[0.093365222215652,-0.024464940652251,0.29991713166237]],[[-0.024771127849817,-0.0048050452023745,-0.048218879848719],[-0.018183495849371,-0.11356649547815,-0.020081918686628],[-0.027585426345468,0.012665717862546,-0.095980018377304]],[[0.018205046653748,-0.035307440906763,-0.0081631997600198],[-0.00769426766783,-0.093537472188473,0.014653909951448],[-0.024016663432121,-0.02363532781601,0.041331235319376]],[[-0.014041158370674,0.061049237847328,0.048668127506971],[0.017404109239578,-0.055636018514633,-0.073610730469227],[-0.045089427381754,-0.022340405732393,-0.023667303845286]],[[0.013192627578974,0.06337509304285,0.089190237224102],[-0.084665633738041,0.081715181469917,0.10494212061167],[-0.12984852492809,0.017237111926079,0.038077984005213]],[[-0.058196168392897,-0.046966049820185,-0.042419262230396],[-0.20375363528728,-0.011402434669435,-0.013296860270202],[-0.00083135161548853,0.058825496584177,-0.075536176562309]],[[0.073800817131996,0.03134623169899,-0.11502902954817],[0.17425936460495,0.16104625165462,0.015516128391027],[0.043470125645399,0.09390202909708,-0.048466440290213]],[[-0.036329656839371,-0.021148012951016,0.014440625905991],[-0.0061858440749347,-0.082662351429462,0.019093943759799],[-0.11732094734907,0.087546356022358,-0.027898132801056]],[[0.05384037643671,0.026238273829222,0.062714822590351],[-0.02368931658566,-0.037893187254667,0.22490426898003],[0.11111110448837,-0.10709190368652,0.052403137087822]],[[-0.016327943652868,-0.031137440353632,-0.07268388569355],[-0.0062632984481752,-0.084821298718452,0.026379870250821],[-0.11322500556707,0.1398212313652,-2.4136665160768e-05]],[[-0.026647347956896,0.0084118470549583,-0.0074555776081979],[0.0065947081893682,-0.11747441440821,0.048958942294121],[-0.07980664819479,0.035589121282101,-0.042967163026333]],[[0.032635621726513,-0.044158719480038,0.028793210163713],[0.037191923707724,-0.04118986427784,-0.0088748307898641],[0.023212535306811,-0.11505655199289,-0.019492149353027]],[[-0.011221945285797,0.113067060709,-0.0067380047403276],[-0.026676410809159,-0.035336721688509,-0.055261664092541],[-0.05816338956356,0.0064556458964944,-0.067917548120022]],[[-0.092026017606258,0.033165048807859,-0.23187007009983],[-0.079939357936382,-0.055846814066172,-0.0096749095246196],[0.014643877744675,0.10773607343435,0.076556071639061]],[[0.017756847664714,0.0015418267576024,-0.083570048213005],[-0.065736494958401,0.067147523164749,0.10377089679241],[-0.088766828179359,-0.048588238656521,-0.24064925312996]],[[-0.07486467063427,0.13734413683414,-0.070060655474663],[-0.039672691375017,0.10878747701645,-0.040188625454903],[0.028240714222193,-0.07993870973587,0.12926098704338]],[[0.013708094134927,0.046019401401281,0.0018699276261032],[0.020071715116501,0.052981026470661,0.052521117031574],[0.10579992830753,-0.086087636649609,0.025655278936028]],[[0.0094238091260195,-0.029406173154712,-0.041194148361683],[-0.002055628458038,0.028728295117617,-0.083918005228043],[0.038768790662289,0.022785861045122,-0.1540894061327]],[[0.062377978116274,0.13669115304947,-0.062966778874397],[0.10497114807367,-0.063887864351273,0.059330094605684],[-0.027641978114843,-0.009933146648109,-0.063692927360535]],[[0.088056772947311,0.03561470285058,-0.0036356027703732],[0.055403798818588,0.014501786790788,0.019048860296607],[0.0082957586273551,-0.020362762734294,-0.042844664305449]],[[-0.040688045322895,-0.0013898678589612,-0.008018484339118],[0.053280025720596,-0.034097481518984,0.0084038656204939],[-0.0037480390165001,-0.041779842227697,0.13424298167229]],[[-0.038413628935814,0.088835574686527,0.01657253690064],[0.11175480484962,-0.009136569686234,0.022947728633881],[0.071172654628754,-0.0063909804448485,-0.0010038093896583]],[[0.019940383732319,-0.065241537988186,0.0028881342150271],[0.053491733968258,-0.022313725203276,-0.10155164450407],[-0.032699216157198,-0.045538637787104,-0.030867112800479]],[[-0.12934276461601,-0.10125090181828,0.077502727508545],[-0.02040340937674,-0.038070842623711,0.059732764959335],[0.062578365206718,-0.11763777583838,-0.006646073423326]],[[-0.028522884473205,-0.01105940528214,-0.10021430999041],[0.040759604424238,-0.039283849298954,-0.005779623053968],[-0.019430106505752,0.018056383356452,0.036770191043615]],[[-0.067532166838646,0.10151169449091,-0.0017537942621857],[0.092866443097591,-0.067611537873745,-0.070291697978973],[-0.23427584767342,-0.12087175250053,0.10597214102745]],[[0.046160224825144,-0.0099473102018237,0.10401054471731],[-0.042698040604591,-0.11767377704382,0.024220345541835],[-0.070365332067013,0.046771381050348,-0.010335161350667]],[[0.046866901218891,0.025990672409534,0.082407481968403],[0.022526549175382,-0.037253648042679,0.071663752198219],[-0.018810754641891,0.00049491808749735,-0.097855821251869]],[[0.0074114692397416,-0.028971239924431,-0.018142115324736],[0.018912306055427,-0.071385227143764,0.034601222723722],[-0.0019697665702552,-0.027864448726177,0.1968636661768]],[[0.13935595750809,-0.012209182605147,-0.014987451955676],[0.008390748873353,-0.053377404808998,-0.0080800214782357],[-0.003785707289353,-0.016751833260059,-0.026615627110004]],[[0.042947374284267,0.0018067207420245,0.00560840126127],[0.054643489420414,0.090986847877502,-0.094454757869244],[-0.066492520272732,-0.070263251662254,0.064638257026672]],[[0.027834432199597,-0.06796357780695,-0.1106149405241],[-0.046273373067379,-0.041668199002743,0.059475213289261],[0.043128747493029,-0.00086439988808706,0.03599014505744]],[[-0.13196249306202,0.17727352678776,-0.043294198811054],[0.21517109870911,-0.16634956002235,0.057668715715408],[0.077789142727852,0.037753615528345,0.18945817649364]],[[-0.048854228109121,-0.071440808475018,0.0049853888340294],[-0.069717936217785,0.049174174666405,-0.0099298106506467],[-0.021866438910365,0.009364147670567,0.056619010865688]],[[0.066911555826664,0.0058320877142251,-0.038773816078901],[-0.043468378484249,0.10220670700073,0.057445853948593],[-0.060294587165117,0.17146170139313,-0.15896719694138]],[[0.10906508564949,-0.056922998279333,-0.092976845800877],[-0.032996743917465,0.026925025507808,-0.074774287641048],[-0.045103937387466,0.0087380800396204,-0.066029623150826]],[[-0.022736778482795,0.009093152359128,0.014035953208804],[0.096340410411358,-0.047234483063221,0.0066080032847822],[-0.032282453030348,-0.00094958348199725,0.051668550819159]],[[0.15222235023975,-0.022995619103312,-0.0046707941219211],[0.027322148904204,0.078575201332569,-0.012529665604234],[0.021980570629239,-0.0049915127456188,0.063502252101898]],[[0.12904880940914,0.0054356181062758,-0.010071789845824],[0.042972590774298,-0.031934831291437,-0.020119028165936],[0.21872469782829,0.046447657048702,-0.12821507453918]],[[-0.049943029880524,0.029040409252048,0.12294983863831],[0.048999682068825,0.0061703319661319,0.047005467116833],[-0.091953910887241,-0.10067818313837,-0.00805420614779]],[[-0.0043399212881923,-0.049834441393614,-0.075144402682781],[-0.0040054460987449,-0.048427518457174,-0.024649847298861],[-0.099464505910873,0.0032211130019277,0.11522078514099]],[[0.12054025381804,0.0033660104963928,-0.033816106617451],[0.037337377667427,0.018722699955106,-0.023697070777416],[0.063874423503876,-0.059641499072313,-0.1068132519722]],[[-0.054256930947304,-0.041210871189833,0.029777247458696],[0.05020035803318,0.0062558357603848,-0.00060283625498414],[0.074517510831356,-0.032885916531086,0.097402162849903]],[[0.016864171251655,-0.0035349347162992,0.14999608695507],[-0.04219951108098,0.051348190754652,-0.11615573614836],[-0.014374416321516,0.14499001204967,0.033817056566477]],[[0.046739973127842,0.054362960159779,0.10405928641558],[0.020789440721273,0.010634141042829,-0.057043544948101],[0.0022967651020736,0.006705863866955,-0.008680216036737]],[[0.14809539914131,0.0579699203372,0.032659143209457],[-0.097503617405891,0.097678117454052,0.091417923569679],[-0.07527070492506,0.0078302742913365,-0.072936072945595]],[[-0.037471123039722,0.0082058198750019,0.15587201714516],[0.14313341677189,0.065479651093483,-0.031770590692759],[0.11065094172955,0.03365782648325,0.070302873849869]],[[-0.065644934773445,0.11244288831949,0.033137310296297],[0.093366354703903,-0.073357157409191,-0.11009675264359],[-0.16085137426853,0.030720144510269,0.053356479853392]],[[-0.011956588365138,-0.15659055113792,-0.085729166865349],[0.018209256231785,0.004851111676544,0.054745197296143],[0.035176511853933,-0.066230893135071,-0.023689465597272]],[[-0.079130277037621,0.061866715550423,-0.0013344715116546],[-0.016096815466881,0.031860806047916,0.058401457965374],[-0.00090420950436965,0.035325422883034,-0.067733749747276]],[[0.12170216441154,0.032002128660679,-0.052537929266691],[-0.1113371476531,-0.015874614939094,-0.070840433239937],[-0.12048207223415,-0.043295603245497,0.0070394068025053]],[[0.02323473803699,-0.093962013721466,-0.034531477838755],[0.037039145827293,-0.026356462389231,-0.017324544489384],[0.060629561543465,0.029866956174374,-0.053375702351332]],[[0.023101268336177,-0.0013909199042246,-0.1103570535779],[-0.069102942943573,0.035928532481194,0.036882638931274],[-0.017033638432622,0.018176574259996,0.020517949014902]],[[0.05934938788414,0.059603434056044,-0.0036744892131537],[0.21038337051868,-0.071745730936527,0.073602259159088],[0.10623117536306,0.066728375852108,0.12527997791767]],[[0.017596311867237,0.14621217548847,0.11190532892942],[-0.015402871184051,-0.011060955934227,0.0035782675258815],[0.023446528241038,0.013950208202004,0.075402840971947]],[[0.021370524540544,0.054465338587761,0.03373609110713],[0.014448260888457,0.00024005208979361,-0.010861850343645],[-0.035883035510778,0.030919305980206,-0.061230950057507]],[[0.0035920313093811,-0.055148683488369,-0.049845475703478],[-0.011742883361876,-0.024948941543698,-0.03605567663908],[0.036481600254774,0.024557838216424,0.0081787165254354]],[[-0.0023911430034786,0.054397102445364,0.077619440853596],[0.03575012460351,0.038523979485035,0.035392452031374],[-0.019624408334494,-0.05585040897131,0.03520243242383]],[[0.077673994004726,0.12724600732327,0.043367311358452],[-0.075256198644638,0.057703126221895,0.045871470123529],[0.029516587033868,-0.082165569067001,0.069271869957447]],[[0.0020309539977461,-0.088054940104485,-0.021722162142396],[0.0047128787264228,0.0024011842906475,-0.070938102900982],[0.064936637878418,-0.10343276709318,-0.034505732357502]],[[-0.016481921076775,-0.0077975187450647,0.062374994158745],[-0.021255198866129,-0.015834299847484,-0.18537513911724],[0.053387403488159,0.0061668530106544,-0.076719649136066]],[[-0.046611927449703,-0.0045721209608018,-0.099895901978016],[-0.15123127400875,-0.066568218171597,-0.11659500002861],[0.11174497008324,-0.021500639617443,0.03500384837389]],[[0.034543689340353,0.050961531698704,0.078447066247463],[0.042711969465017,-0.038674131035805,0.030932832509279],[0.012432512827218,-0.023771511390805,0.089009255170822]],[[-0.07627709209919,0.064712934195995,-0.069307215511799],[-0.16810616850853,-0.052863940596581,-0.01392940338701],[-0.012261092662811,-0.075773812830448,0.035604432225227]],[[0.01977625861764,-0.075857535004616,0.052563451230526],[-0.022052735090256,0.019475804641843,-0.069659933447838],[-0.033048022538424,0.0062011335976422,0.057499188929796]],[[0.12520553171635,-0.068461552262306,-0.20649614930153],[0.046915169805288,0.018702341243625,-0.17485536634922],[-0.078862302005291,0.0073827169835567,-0.19712892174721]],[[-0.03545368462801,-0.065186120569706,-0.055538780987263],[-0.089416980743408,-0.0098124835640192,-0.11793977767229],[0.062299139797688,0.018562408164144,-0.14711558818817]],[[0.0049546672962606,0.02697236277163,-0.068841010332108],[-0.025797922164202,0.072659328579903,0.047135498374701],[0.0029316744767129,-0.0060654925182462,0.068649843335152]],[[0.030189828947186,-0.047194223850965,0.051461111754179],[-0.029034197330475,-0.065986692905426,-0.051581129431725],[0.094179235398769,-0.08997668325901,-0.0040337713435292]],[[0.0028048374224454,0.01013589091599,0.13409411907196],[0.062728226184845,-0.0048113139346242,-0.038231607526541],[0.031720831990242,0.048836320638657,-0.016888445243239]],[[-0.036397162824869,0.023750239983201,0.0161491073668],[0.027213277295232,0.018290609121323,-0.05019074305892],[0.1143302321434,-0.041818514466286,0.0032906972337514]],[[-0.0034642487298697,0.13071618974209,-0.0463528893888],[0.01013997849077,0.10898531228304,-0.041067980229855],[-0.022685019299388,-0.094607330858707,0.11447141319513]],[[0.095523998141289,0.017654927447438,-0.016996316611767],[0.078120097517967,-0.073121055960655,-0.015036556869745],[-0.042111899703741,-0.17163281142712,-0.124626070261]],[[-0.050823818892241,0.040296401828527,-0.079645976424217],[-0.048162296414375,0.021010205149651,-0.076674230396748],[-0.018387693911791,-0.0059009939432144,-0.026410365477204]],[[-0.070397272706032,-0.02653606981039,-0.032129339873791],[0.028568902984262,-0.074687317013741,-0.048278421163559],[-0.0783556625247,-0.0074864267371595,0.04572631791234]],[[0.021926544606686,0.048759669065475,-0.026515707373619],[-0.055505491793156,-0.14848151803017,0.00041408330434933],[0.0032654153183103,-0.090669147670269,0.091049045324326]],[[-0.073519267141819,0.042104072868824,0.04686301201582],[-0.020574245601892,-0.011060657911003,0.021072460338473],[-0.12702399492264,-0.067095369100571,0.025751013308764]],[[-0.11557413637638,-0.039132162928581,0.13455042243004],[-0.09016964584589,-0.11912850290537,0.021876059472561],[-0.023883705958724,-0.0044024819508195,-0.093416482210159]],[[-0.027405221015215,-0.052635725587606,-0.11341966688633],[-0.0054341522045434,-0.032197743654251,-0.077920511364937],[0.053528372198343,0.045742113143206,-0.15174180269241]],[[0.03076933324337,-0.09885485470295,-0.043758861720562],[0.011142581701279,-0.019987244158983,0.045788861811161],[-0.077362276613712,0.065735131502151,0.06656214594841]],[[0.13043855130672,0.063046649098396,0.022571496665478],[-0.017182530835271,-0.011312373913825,0.1361583173275],[0.14324526488781,-0.019834283739328,0.044139537960291]],[[0.023014418780804,0.0086145754903555,0.033475574105978],[-0.044910214841366,-0.083622939884663,0.040411334484816],[0.15002630650997,0.17676152288914,-0.067034371197224]],[[-0.0064208949916065,0.0086416527628899,0.046804092824459],[0.011358186602592,-0.049072213470936,0.067386768758297],[-0.01128763705492,0.095907315611839,-0.062071237713099]],[[-0.065033748745918,0.024591069668531,-0.081976667046547],[0.066894084215164,-0.13286155462265,0.073731005191803],[0.0057374238967896,0.078211694955826,-0.15603093802929]],[[0.040455494076014,-0.022171394899487,-0.094455853104591],[0.027667421847582,-0.0082073612138629,-0.034201044589281],[-0.06442579627037,-0.084452390670776,-0.11833473294973]],[[0.036668870598078,0.074547193944454,0.060968782752752],[0.009656366892159,-0.14079833030701,0.077095910906792],[0.021388383582234,-0.064638175070286,0.051425401121378]],[[-0.023570917546749,-0.0053839506581426,-0.020756561309099],[0.023329544812441,0.015732521191239,-0.015232311561704],[-0.0037311839405447,0.045283194631338,0.01485157199204]],[[-0.021749706938863,-0.10271180421114,-0.14447730779648],[0.034367855638266,-0.13972961902618,-0.06841191649437],[0.0049916645511985,-0.044113475829363,0.12893863022327]],[[-0.037784814834595,-0.080943405628204,-0.097569413483143],[0.027420802041888,0.068368807435036,0.060782846063375],[0.11424826085567,0.0085468087345362,-0.046560328453779]],[[-0.0034060240723193,-0.1951005011797,0.0082316566258669],[-0.11375156790018,-0.0087804663926363,-0.038727831095457],[-0.094878293573856,-0.067678563296795,0.0046163452789187]],[[0.19581693410873,0.071937553584576,0.11256726831198],[0.05814940482378,0.072677463293076,-0.13296101987362],[0.051015388220549,-0.050717230886221,-0.073768869042397]],[[-0.053142294287682,-0.054385557770729,0.064075253903866],[0.04807311668992,-0.0049624899402261,-0.018781634047627],[0.044679969549179,0.066916912794113,-0.058017559349537]],[[-0.066311433911324,-0.024693226441741,0.026019025593996],[-0.00025464384816587,-0.00053116818889976,-0.076318308711052],[-0.021257875487208,0.0061129699461162,0.019373757764697]],[[-0.012084111571312,0.046013738960028,-0.025951644405723],[-0.0093634938821197,-0.086614869534969,0.059852305799723],[0.01626012660563,-0.062659941613674,0.042877171188593]],[[-0.059580538421869,-0.020013641566038,-0.088571190834045],[0.015777956694365,0.010877186432481,-0.04913167655468],[-0.039145287126303,-0.032010655850172,0.0532531067729]],[[-0.022281302139163,0.14981973171234,-0.021886302158237],[-0.14609867334366,-0.013141420669854,0.17487372457981],[-0.10086920112371,0.072576753795147,0.044185698032379]],[[-0.17881245911121,-0.00041758484439924,-0.13657283782959],[-0.12882405519485,-0.1957848072052,0.051293075084686],[-0.063566520810127,-0.052922837436199,0.085695125162601]],[[-0.076233677566051,-0.06089087203145,0.019970864057541],[-0.0029403357766569,0.012340484187007,-0.0074922475032508],[0.048975419253111,0.021431004628539,-0.037927772849798]],[[0.018713165074587,-0.0085486564785242,-0.021750945597887],[-0.030739899724722,0.068447731435299,0.048929020762444],[0.058971926569939,-0.036075845360756,0.093011930584908]],[[-0.16026523709297,0.020518751814961,0.0021960688754916],[-0.0046702581457794,0.025961775332689,-0.057947758585215],[0.022747943177819,-0.056398082524538,-0.10929176956415]],[[-0.020492738112807,-0.013422351330519,-0.017391653731465],[-0.050415683537722,-0.019149795174599,0.078589424490929],[-0.0037391604855657,-0.0040626605041325,0.1021207049489]],[[-0.033112615346909,0.062734797596931,0.077969051897526],[0.051289048045874,0.10575801879168,0.044851522892714],[-0.12058982253075,-0.025658531114459,-0.11724348366261]],[[0.12296362966299,0.026907367631793,-0.0049413978122175],[-0.062939554452896,0.013431769795716,-0.034503571689129],[0.09171599149704,-0.072077952325344,-0.011150103993714]],[[0.19659546017647,-0.12134171277285,-0.055137485265732],[-0.10072875767946,-0.029957450926304,-0.014066169969738],[-0.075550399720669,-0.0021633021533489,0.022349702194333]]],[[[-0.078589200973511,0.015600394457579,0.062337644398212],[-0.00085714110173285,-0.12854953110218,0.0535928606987],[-0.047894757241011,-0.098293304443359,0.064286932349205]],[[-0.077105768024921,0.045017328113317,-0.0016669341130182],[-0.05541030690074,-0.021124495193362,-0.057925455272198],[-0.039007324725389,-0.019123811274767,-0.0068715149536729]],[[0.18187446892262,0.020544160157442,-0.125353500247],[0.13598853349686,-0.091137692332268,-0.11111276596785],[-0.055371571332216,-0.046694058924913,-0.042483147233725]],[[-0.083764135837555,0.053524024784565,0.034505765885115],[0.079118803143501,0.067371591925621,0.10343977063894],[-0.083411194384098,-0.0030665635131299,0.081446200609207]],[[-0.0078363521024585,0.0487275198102,0.022057138383389],[0.061330463737249,-0.066223882138729,0.024182122200727],[-0.0460514575243,0.040355876088142,-0.0018573278794065]],[[-0.03665703907609,-0.047673478722572,0.073740638792515],[0.06370797008276,0.022314414381981,0.063134402036667],[0.046125799417496,-0.013979319483042,0.037531215697527]],[[0.035075217485428,0.1335067898035,-0.02032302506268],[-0.091482728719711,0.014850122854114,-0.011166793294251],[0.13404436409473,-0.042397484183311,0.046172004193068]],[[-0.033213932067156,0.10195644944906,-0.064478896558285],[0.12884026765823,0.055556684732437,0.031864505261183],[-0.10455397516489,0.048163700848818,0.07878415286541]],[[0.031773112714291,-0.025333473458886,-0.18817937374115],[-0.018584771081805,-0.022325368598104,0.067199893295765],[-0.1734411418438,-0.029353329911828,-0.030715558677912]],[[0.0064640971831977,-0.15321139991283,0.087965704500675],[0.071250058710575,-0.029446234926581,-0.082362852990627],[0.059342090040445,-0.027551205828786,0.046034783124924]],[[0.037862256169319,0.13672561943531,0.13806253671646],[0.025821510702372,0.17342527210712,-0.024963228031993],[-0.10865086317062,-0.038068890571594,-0.060755588114262]],[[0.021947741508484,0.071581795811653,-0.015029521659017],[-0.072635136544704,-0.097258292138577,0.032314352691174],[0.049097444862127,0.07969094067812,0.056385010480881]],[[0.046063538640738,0.087810099124908,-0.10593123733997],[0.13495011627674,-0.064627893269062,0.062556244432926],[-0.04276891425252,0.055754244327545,-0.036143455654383]],[[-0.044257018715143,-0.07702425122261,0.061564199626446],[-0.074165433645248,-0.030081164091825,-0.11234422773123],[0.16523997485638,-0.017124203965068,0.020141948014498]],[[-0.0028639046940953,0.023883290588856,0.043336745351553],[0.050638295710087,-0.05179213732481,0.017246959730983],[-0.024581711739302,-0.05665610358119,0.0069206529296935]],[[-0.0024136197753251,0.012845997698605,-0.045539412647486],[0.037178911268711,-0.034330800175667,-0.016240881755948],[-0.017316088080406,-0.15161062777042,-0.11367502063513]],[[-0.073618046939373,-0.040549367666245,0.12275715917349],[-0.11908692121506,0.023901270702481,0.0049988990649581],[0.12027268111706,0.02532297000289,-0.031898722052574]],[[0.11149761080742,0.016673248261213,0.064788974821568],[-0.081658147275448,-0.033853866159916,-0.024246199056506],[-0.043230313807726,-0.074738636612892,-0.023445503786206]],[[0.00069336185697466,0.041032996028662,0.048338554799557],[0.1156113371253,0.0062857270240784,0.011418939568102],[0.17345224320889,0.064957827329636,0.0065152607858181]],[[-0.14234113693237,-0.058281224220991,0.059534445405006],[0.048288725316525,0.011408883146942,0.015353859402239],[0.19720250368118,-0.098319962620735,-0.00059662951389328]],[[-0.001986009767279,0.11741787195206,-0.040199439972639],[-0.072826057672501,-0.013416422531009,-0.042312853038311],[0.063892230391502,-0.0015088627114892,-0.11917312443256]],[[0.12524384260178,-0.053619522601366,-0.013238541781902],[-0.0040596150793135,0.13360856473446,-0.02569049037993],[-0.11655607074499,0.046006862074137,-0.06065184995532]],[[0.14626911282539,0.1909427344799,-0.025087937712669],[0.084977202117443,-0.050273679196835,0.0082186227664351],[-0.1107587441802,-0.13372308015823,0.017319621518254]],[[-0.047155264765024,-0.031854096800089,-0.037683799862862],[-0.032570984214544,-0.10646316409111,0.1083527803421],[-0.11282985657454,-0.12395510822535,-0.064088821411133]],[[0.042053274810314,0.031582746654749,-0.10407455265522],[-0.073858045041561,-0.0044058146886528,0.030219381675124],[-0.011807628907263,-0.043742567300797,-0.02085168659687]],[[0.082975968718529,0.022895734757185,-0.033338092267513],[-0.017066126689315,-0.064544849097729,0.0049403659068048],[-0.043613385409117,-0.022869868203998,0.069582439959049]],[[-0.081731513142586,-0.063969075679779,-0.005393436178565],[-0.0060688643716276,0.084062203764915,0.054466426372528],[0.004786538425833,0.012407137081027,-0.019884252920747]],[[0.079334087669849,0.014776381663978,-0.032656013965607],[0.024614676833153,-0.061816271394491,-0.029269205406308],[-0.05983505398035,-0.062782511115074,0.033006671816111]],[[0.0119324978441,0.18453989923,0.019702220335603],[-0.035012379288673,0.012620741501451,-0.058786224573851],[0.078477591276169,-0.13703934848309,0.12774778902531]],[[-0.049301508814096,-0.047608379274607,0.0090029593557119],[-0.11246762424707,0.075100928544998,-0.12937481701374],[-0.022597070783377,-0.036153070628643,-0.11684936285019]],[[0.020714120939374,0.11226422339678,0.013561242260039],[-0.021039664745331,0.0040024616755545,0.020628988742828],[0.0066470094025135,0.0089164152741432,-0.02492636628449]],[[0.033011842519045,-0.12483137845993,-0.014066262170672],[-0.054332904517651,0.12808245420456,0.039901375770569],[-0.093835785984993,-0.046263590455055,0.038737684488297]],[[-0.0017319368198514,0.11700657755136,0.13495524227619],[0.24641706049442,0.06786522269249,-0.015289420261979],[-0.17977049946785,-0.11889554560184,0.0002071785274893]],[[0.012954413890839,-0.063167966902256,0.049476731568575],[-0.12697106599808,-0.10262267291546,0.10528412461281],[-0.030680762603879,0.0031612084712833,0.11114101111889]],[[-0.06505574285984,0.062056265771389,0.035588562488556],[-0.096147246658802,-0.054537706077099,-0.037441063672304],[0.067991681396961,0.11724691838026,0.13259346783161]],[[-0.005801860243082,0.005824544467032,0.032777346670628],[-0.027094250544906,0.065884009003639,-0.105921626091],[-0.017637079581618,0.027417404577136,-0.009875800460577]],[[0.082574352622032,0.10990768671036,0.086913526058197],[0.10142496228218,0.054030179977417,-0.0080396216362715],[0.057321395725012,-0.012046474032104,0.11051970720291]],[[0.041170570999384,0.013578412123024,0.073347464203835],[-0.054191272705793,-0.016857843846083,-0.056213043630123],[-0.05606572329998,0.035004895180464,0.042395308613777]],[[0.0984026491642,0.039142109453678,0.034774404019117],[0.0028450982645154,-0.060593634843826,-0.040806382894516],[-0.12957349419594,-0.10165220499039,-0.052567381411791]],[[0.16078467667103,0.11853884905577,0.10117842257023],[0.06362846493721,-0.10110225528479,0.017787827178836],[-0.088018134236336,-0.0019450053805485,0.037147723138332]],[[0.024807490408421,0.029021747410297,0.006403736770153],[-0.12933018803596,-0.067270062863827,0.0021995129063725],[-0.12101795524359,0.094787076115608,-0.045681659132242]],[[0.059177171438932,-0.023441420868039,0.12078765779734],[0.010312258265913,0.012793353758752,0.035800706595182],[-0.010506982915103,0.0087821492925286,0.021890604868531]],[[0.10733369737864,0.0055901096202433,0.079121172428131],[-0.0029817854519933,0.012740372680128,-0.021987905725837],[-0.089988224208355,-0.0063971201889217,-0.017298294231296]],[[-0.019186738878489,-0.028805242851377,-0.0046865763142705],[0.01021236833185,0.00083268317393959,-0.009649446234107],[0.038902327418327,0.024023167788982,0.016620395705104]],[[-0.0050719529390335,-0.055182885378599,-0.00049693725304678],[0.1050816103816,0.098739326000214,-0.043515995144844],[0.031291149556637,0.10407999902964,0.025378176942468]],[[0.04801669716835,0.11673521995544,0.065822169184685],[0.11212653666735,0.098431468009949,0.036709632724524],[-0.0091891176998615,0.075042851269245,0.003210132708773]],[[-0.087465405464172,-0.14469268918037,0.0079215401783586],[0.014502536505461,-0.063047163188457,-0.062178641557693],[0.087659507989883,0.017742399126291,0.00073287734994665]],[[0.014189657755196,-0.063142895698547,-0.13686266541481],[0.053680818527937,-0.08613970130682,-0.04581543803215],[0.016376491636038,0.027872057631612,-0.059131149202585]],[[-0.01289691682905,0.00015090804663487,0.084537841379642],[-0.079987712204456,-0.087147198617458,0.071936711668968],[0.0011639017611742,-0.027301216498017,0.027546793222427]],[[0.047586277127266,-0.10918094962835,-0.019625889137387],[0.0019930412527174,0.045634865760803,-0.0092335250228643],[-0.13801059126854,0.0084588844329119,0.058654740452766]],[[0.032206606119871,0.08634315431118,-0.0088404072448611],[-0.0048418766818941,0.019285602495074,0.088975839316845],[0.057402636855841,-0.025940224528313,-0.050836950540543]],[[0.010000504553318,-0.049082919955254,0.044249426573515],[0.039980344474316,0.067794784903526,-0.071223519742489],[0.019011812284589,-0.022844506427646,0.04470432177186]],[[0.046691320836544,0.033042017370462,-0.090648882091045],[-0.054348334670067,-0.030004765838385,0.046380210667849],[-0.044769264757633,0.021184770390391,0.1218613088131]],[[0.067473478615284,0.011075560003519,0.057660717517138],[0.036814738065004,-0.015420903451741,0.018835330381989],[-0.012250344268978,0.024689979851246,0.099669009447098]],[[0.091801606118679,-0.12020941078663,0.03708678856492],[-0.057216931134462,0.010868331417441,-0.051969565451145],[0.088827766478062,0.042139284312725,0.044013731181622]],[[-0.22529681026936,0.08486020565033,-0.0039111990481615],[-0.052012857049704,-0.078474216163158,0.0065141483210027],[0.26402738690376,0.042585775256157,0.010720442980528]],[[0.0830447524786,0.012765139341354,-0.041142154484987],[-0.089869119226933,0.050078768283129,0.028417171910405],[-0.15484641492367,0.062373127788305,-0.035419709980488]],[[-0.10874458402395,0.047427870333195,-0.024916015565395],[-0.20224267244339,-0.097293041646481,-0.099136956036091],[-0.012288578785956,0.046287789940834,0.042483169585466]],[[-0.036758780479431,-0.13381426036358,-0.010622397996485],[-0.14704188704491,0.056387901306152,-0.066527388989925],[-0.027432156726718,-0.011891626752913,0.02237905934453]],[[-0.064493834972382,0.0040160398930311,0.010761798359454],[0.080100141465664,0.10292337089777,0.054463922977448],[-0.034693963825703,-0.072849899530411,-0.055790916085243]],[[-0.012562296353281,-0.04268766567111,0.037190098315477],[0.08435794711113,0.0064943763427436,0.019471980631351],[-0.063201487064362,0.065695837140083,-0.032323811203241]],[[-0.023923601955175,-0.048603646457195,0.040220156311989],[0.10856912285089,-0.073808029294014,-0.072422012686729],[0.0091382544487715,-0.0262461733073,0.022598091512918]],[[-0.016085654497147,-0.048481740057468,-0.034849215298891],[0.015359241515398,-0.014914412982762,-0.10393966734409],[-0.089748531579971,-0.14923644065857,-0.18992415070534]],[[-0.067196689546108,-0.079415902495384,0.058803178369999],[-0.09572859108448,-0.13710926473141,-0.016958102583885],[0.16074807941914,0.10193543881178,-0.064186625182629]],[[0.0045279311016202,0.015123578719795,0.050456304103136],[0.088590435683727,0.0017222377937287,-0.046936877071857],[0.15975172817707,0.05516404286027,-0.069744154810905]],[[0.13287435472012,0.047662287950516,0.04675342515111],[0.047878175973892,0.08462655544281,-0.032095853239298],[-0.085365578532219,0.017221247777343,0.016946801915765]],[[0.17356742918491,0.0062426840886474,0.016040395945311],[0.034146212041378,0.074931398034096,0.049648441374302],[-0.02895031683147,0.030160399153829,-0.0018634574953467]],[[0.050120938569307,0.14715312421322,0.005730445496738],[-0.022625816985965,0.095884442329407,0.062988169491291],[-0.070238582789898,0.0028868764638901,0.072836972773075]],[[0.039202965795994,0.040955368429422,0.073126882314682],[-0.018097868189216,0.083604596555233,-0.083375357091427],[-0.015327023342252,0.0032211104407907,-0.028061117976904]],[[-0.024286460131407,0.0098562762141228,-0.01195449847728],[-0.031998846679926,-0.050388667732477,0.02461008913815],[-0.10468207299709,-0.050110939890146,0.18504333496094]],[[0.015022179111838,0.13745048642159,-0.028871849179268],[-0.17948691546917,-0.0057267271913588,-0.013578654266894],[-0.00051364250248298,-0.067369408905506,0.090637594461441]],[[-0.0059624002315104,-0.068345740437508,-0.0049296738579869],[-0.10287448018789,-0.098010942339897,0.09975641220808],[-0.053637973964214,0.028764009475708,-0.0026389027480036]],[[-0.034411996603012,0.015413059853017,-0.046413794159889],[-0.0040082819759846,0.075962081551552,0.038756303489208],[-0.04150527343154,0.0023742169141769,-0.0046189995482564]],[[0.040078420192003,-0.02706016227603,0.072212137281895],[-0.096666596829891,0.057026971131563,-0.0040279063396156],[-0.10354223102331,0.0063247345387936,0.13188955187798]],[[-0.048873171210289,0.034383125603199,-0.028340177610517],[0.059082459658384,3.0692681320943e-05,0.036773540079594],[0.02566396817565,0.012365870177746,-0.027492050081491]],[[-0.067937210202217,0.10185161978006,-0.065663225948811],[0.01853116042912,0.081871017813683,-0.031412240117788],[-0.0083531243726611,0.068629838526249,-0.023563977330923]],[[0.029705489054322,-0.0035889281425625,0.018069565296173],[0.0041722860187292,0.027975650504231,0.084728009998798],[0.012729998677969,-0.00037508460809477,0.11358376592398]],[[0.059001080691814,0.030995478853583,0.083837307989597],[-0.070294819772243,0.03799007460475,0.16650776565075],[0.040985763072968,-0.11757963895798,0.092641144990921]],[[-0.06585455685854,0.013238782063127,-0.041374888271093],[0.12766958773136,0.0041992007754743,-0.013267454691231],[0.052857615053654,0.048251587897539,0.02933806180954]],[[-0.12179359048605,0.063354149460793,0.055276326835155],[0.052178122103214,-0.1445709913969,0.036796253174543],[0.15105408430099,0.0016239414690062,-0.041143760085106]],[[0.098257184028625,0.019224436953664,-0.10150872915983],[-0.08984611928463,0.20986977219582,-0.057565674185753],[-0.092060513794422,0.18286167085171,-0.043202638626099]],[[-0.0008807021076791,-0.14532643556595,-0.046674288809299],[0.013322738930583,0.023188756778836,0.10887181013823],[0.11206063628197,0.030756121501327,-0.093039385974407]],[[-0.067150145769119,0.047145761549473,-0.061158619821072],[-0.043491650372744,-0.051102969795465,0.02259467728436],[0.026436546817422,0.01542289648205,-0.0024118304718286]],[[0.052880380302668,-0.016407763585448,0.0034427877981216],[0.0012096936115995,-0.14836595952511,-0.0419090539217],[-0.004405097104609,0.093697302043438,-0.016824316233397]],[[-0.068457037210464,0.10011913627386,0.02753228507936],[-0.018105214461684,-0.10212537646294,-0.017208471894264],[0.039577204734087,0.018405046314001,-0.065291583538055]],[[-0.15378355979919,-0.015035756863654,-0.046352490782738],[0.15491189062595,0.046662457287312,-0.01730103045702],[-0.036013379693031,-0.068181827664375,0.044569663703442]],[[0.10092027485371,0.070017799735069,-0.0084507521241903],[-0.038745105266571,0.057685170322657,-0.070960707962513],[0.053659044206142,0.030703226104379,-0.020252032205462]],[[0.12552407383919,0.047007340937853,0.13824647665024],[0.040848806500435,-0.079922810196877,-0.083486117422581],[0.002723126905039,-0.0040576877072453,-0.072144694626331]],[[0.019097650423646,0.076013065874577,-0.023127662017941],[-0.17139922082424,-0.12142617255449,0.054187722504139],[-0.033447563648224,-0.022691017016768,0.085160978138447]],[[0.082953400909901,-0.084350734949112,-0.17550836503506],[0.019689736887813,-0.0015658552292734,-0.020496536046267],[-0.12035239487886,-0.052436731755733,0.04057963937521]],[[-0.089210376143456,0.0081562735140324,0.12351740151644],[-0.032340511679649,-0.038118574768305,0.085387095808983],[-0.067208178341389,-0.10431917011738,0.019857564941049]],[[0.028665894642472,0.0025965317618102,-0.05992229282856],[0.11058723926544,-0.102812923491,0.018467262387276],[-0.076958946883678,-0.10088885575533,0.072368808090687]],[[0.047341227531433,-0.061254467815161,-0.066230751574039],[0.051424890756607,-0.041480857878923,0.10576152056456],[0.090822875499725,-0.054125595837831,-0.0050069144926965]],[[0.02989224717021,-0.079245053231716,-0.022895272821188],[-0.06403061747551,-0.075695857405663,0.015441042371094],[0.10177432000637,0.052145656198263,-0.008797587826848]],[[-0.056591782718897,-0.05345793440938,-0.011983000673354],[-0.08108277618885,-0.07541099190712,-0.035539399832487],[0.088705405592918,-0.11458187550306,-0.027838930487633]],[[0.092017501592636,0.024816354736686,-0.13944475352764],[0.034217402338982,0.043346986174583,-0.0024363896809518],[-0.05379419028759,0.012469102628529,0.037067174911499]],[[-0.0077438103035092,-0.073640309274197,0.021571477875113],[0.19813014566898,0.024108307436109,-0.075883343815804],[-0.056442465633154,-0.13405185937881,0.022263443097472]],[[-0.027208408340812,0.0022657949011773,0.004330207593739],[-0.082780212163925,0.14555981755257,-0.053690370172262],[0.12297160923481,-0.046491418033838,-0.042221292853355]],[[0.0084112081676722,0.036133591085672,0.025113221257925],[-0.055051621049643,-0.01721247844398,0.001765794120729],[-0.078563578426838,-0.083129420876503,0.056172050535679]],[[0.10039967298508,0.059779822826385,0.043316528201103],[0.013839651830494,0.059908039867878,0.019538950175047],[-0.017242170870304,0.0031799406278878,-0.032780788838863]],[[0.11446949839592,0.092298172414303,-0.048011016100645],[0.07727012783289,-0.014149652794003,-0.026872860267758],[-0.093854822218418,-0.017928630113602,-0.004088175483048]],[[0.03521728143096,0.061871632933617,0.060542188584805],[-0.046957712620497,0.082336641848087,0.030583195388317],[-0.12202999740839,-0.14391447603703,0.10036513954401]],[[0.03566899523139,-0.15258039534092,-0.023733872920275],[0.0010488939005882,-0.020739417523146,-0.070984363555908],[-0.062436770647764,0.16537976264954,0.061322823166847]],[[0.09861746430397,-0.037843510508537,0.02068324200809],[0.057517629116774,-0.15082557499409,0.023708894848824],[0.090376116335392,-0.12389151751995,0.050695136189461]],[[-0.049207411706448,0.16641227900982,0.025427501648664],[-0.035989183932543,0.050433225929737,0.075487785041332],[-0.097082987427711,0.015520641580224,-0.006367155816406]],[[-0.060071676969528,-0.17647355794907,-0.23638765513897],[-0.032318238168955,0.050839297473431,-0.029432879760861],[0.2676874101162,0.097772680222988,0.057995241135359]],[[0.029882647097111,0.039408929646015,0.083532206714153],[0.00093606772134081,-0.095936492085457,0.011267525143921],[0.037961304187775,-0.010077108629048,-0.015810681506991]],[[-0.11238704621792,-0.0016688158502802,-0.018796302378178],[-0.15752637386322,-0.072591632604599,-0.10780698806047],[-0.079189702868462,0.12608782947063,0.0014040900859982]],[[-0.06634970754385,-0.078126944601536,-0.023820584639907],[-0.067253053188324,-0.013354446738958,-0.024684933945537],[0.0089236460626125,0.10375674068928,0.04062694311142]],[[-0.044584400951862,-0.070131152868271,-0.058350559324026],[-0.099732883274555,-0.066426299512386,-0.020213507115841],[0.0060401493683457,0.22044466435909,-0.13292761147022]],[[0.10318126529455,-0.044171378016472,-0.13986544311047],[-0.069092467427254,0.049312762916088,0.0519680082798],[-0.075178138911724,0.11153238266706,0.018011359497905]],[[0.11044216901064,0.017479211091995,-0.11293763667345],[-0.042569573968649,-0.073172301054001,0.05078174546361],[-0.15478087961674,-0.0006269087898545,-0.024100264534354]],[[-0.20804853737354,-0.049501918256283,-0.0082022398710251],[0.0012466519838199,-0.0077691413462162,-0.036549009382725],[0.038922868669033,-0.072855338454247,-0.0035385505761951]],[[-0.1201293617487,-0.10118765383959,0.019489414989948],[0.052644919604063,0.041214901953936,-0.079369187355042],[-0.10696516185999,-0.02164307795465,-0.0085553247481585]],[[0.04890164360404,-0.03428228572011,0.030318390578032],[-0.13669171929359,-0.076008081436157,0.063139252364635],[-0.035457652062178,-0.043490998446941,-0.093655727803707]],[[-0.028638558462262,-0.19017870724201,0.064084887504578],[-0.078112900257111,0.14799971878529,0.1714248508215],[0.081545919179916,-0.15314166247845,-0.14693313837051]],[[0.096110016107559,0.11134856194258,-0.051007706671953],[-0.080235689878464,0.087927289307117,-0.19688886404037],[-0.15226501226425,-0.011494142003357,-0.026401141658425]],[[-0.0024641181807965,-0.10024500638247,0.018188759684563],[0.1175025627017,0.050553169101477,-0.018067933619022],[-0.075376637279987,0.0016644529532641,-0.13007768988609]],[[-0.21192821860313,0.02249519340694,-0.054055038839579],[-0.17335139214993,-0.032332979142666,-0.12295903265476],[-0.11824795603752,0.058795262128115,0.17482949793339]],[[-0.31782746315002,0.19515785574913,0.019322540611029],[0.201844856143,-0.038697212934494,0.037380371242762],[-0.014023598283529,-0.02234560623765,0.050017520785332]],[[-0.08321125805378,-0.033005762845278,0.0536446608603],[-0.030863273888826,0.019842574372888,-0.0054881675168872],[-0.0049027865752578,-0.025527911260724,-0.0046877884306014]],[[0.015340853482485,0.056960623711348,-0.047009829431772],[-0.12109190225601,-0.14111819863319,0.038678500801325],[0.21323272585869,-0.0082584880292416,-0.12684804201126]],[[0.0065141748636961,-0.032484889030457,0.019855512306094],[-0.091674514114857,-0.022751430049539,-0.080984905362129],[0.021214369684458,-0.011535901576281,-0.017565384507179]],[[0.0034519748296589,-0.026691982522607,0.019057929515839],[-0.066987752914429,-0.087106347084045,-0.0040759025141597],[-0.034891534596682,0.061737027019262,0.011097921989858]],[[0.064678035676479,-0.017694799229503,0.024908982217312],[0.13085654377937,-0.043688073754311,-0.023555250838399],[0.0037263364065439,-0.035113405436277,-0.026678197085857]],[[-0.13710744678974,-0.027485834434628,0.017691098153591],[0.048679739236832,0.089514389634132,0.043078884482384],[0.017046084627509,0.076214857399464,0.037692200392485]],[[0.02068568021059,0.071503952145576,0.089143477380276],[-0.093786843121052,-0.0048304749652743,0.030343117192388],[-0.069161407649517,0.0093150129541755,0.0010785292834044]],[[0.024286871775985,0.06684548407793,0.023692613467574],[-0.094606824219227,-0.087135374546051,-0.033397626131773],[0.084281727671623,0.010624287649989,-0.060014016926289]]],[[[-0.046946790069342,-0.0090332422405481,-0.054100085049868],[-0.010781002230942,-0.014744709245861,-0.0068070567212999],[-0.049228958785534,0.013466309756041,0.017061080783606]],[[0.018507855013013,0.016357073560357,0.017443023622036],[-0.0021548289805651,-0.044936940073967,-0.058128830045462],[0.0044743451289833,-0.0058641373179853,0.013896558433771]],[[-0.0091285118833184,0.056069362908602,0.019463600590825],[0.03861616179347,-0.027337480336428,-0.046703081578016],[-0.08651265501976,0.0095015522092581,0.024454392492771]],[[-0.045185785740614,0.033938068896532,0.007416826672852],[-0.038953725248575,0.05868373811245,-0.0054720691405237],[0.0060157491825521,0.047431882470846,0.035080149769783]],[[0.028824279084802,-0.053946021944284,-0.017741410061717],[0.037654723972082,-0.026616664603353,-0.027898378670216],[0.016109708696604,-0.0020773014985025,-0.0086800213903189]],[[0.022690817713737,0.015725873410702,0.017488786950707],[0.025591434910893,-0.030466835945845,-0.058761969208717],[0.025126816704869,0.036405313760042,0.030338427051902]],[[0.0033486292231828,-0.031450979411602,0.01418508309871],[-0.052700612694025,0.00048821393284015,0.017591372132301],[0.063686594367027,0.038578022271395,0.032790865749121]],[[0.051152024418116,-0.035829652100801,0.012760510668159],[-0.012649317272007,0.010832938365638,0.002018861239776],[-0.068757630884647,-0.008333939127624,0.0766781270504]],[[0.0030071164947003,0.031276095658541,0.11103586107492],[0.0029988915193826,-0.058177687227726,0.0027300543151796],[0.052489623427391,0.0051320758648217,0.077375203371048]],[[-0.023961098864675,-0.090021573007107,0.064033098518848],[-0.0012793127680197,0.027047598734498,0.011517597362399],[0.015361956320703,0.017735127359629,0.10071983933449]],[[0.0075988559983671,0.084045186638832,0.006064279936254],[0.034816332161427,-0.025051716715097,-0.025568168610334],[-0.01229958422482,-0.069689698517323,0.045076251029968]],[[-0.059328515082598,-0.023932853713632,0.084270186722279],[0.007976702414453,-0.014547574333847,-0.0015544808702543],[-0.076962530612946,-0.0302161462605,-0.0057612312957644]],[[-0.064317211508751,-0.024525405839086,-0.0070015252567828],[-0.074557274580002,0.0036313910968602,0.0031519657932222],[0.033261600881815,0.086652420461178,-0.092856839299202]],[[-0.030743086710572,-0.016180692240596,0.0280173830688],[-0.080180943012238,0.030007155612111,-0.096635334193707],[0.062490407377481,0.035504877567291,0.017298508435488]],[[-0.084023743867874,0.0047808093950152,0.016880910843611],[-0.0055505717173219,-0.048601504415274,-0.034626502543688],[-0.091526307165623,-0.071583077311516,0.00023322469496634]],[[-0.018863590434194,0.044475726783276,0.024129966273904],[-0.04304938018322,-0.042758427560329,0.050204955041409],[-0.047322131693363,0.054458681493998,0.066693626344204]],[[-0.013048272579908,-0.015186033211648,-0.010298673063517],[0.00011706551595125,-0.02778297290206,-0.071042649447918],[0.027046909555793,-0.03144970536232,0.0055907536298037]],[[-0.0056993667967618,0.035186927765608,-0.055777572095394],[-0.0041339676827192,0.043987099081278,-0.052869066596031],[-0.058205541223288,0.081984631717205,0.052387982606888]],[[0.099390864372253,0.0073351031169295,0.0032569805625826],[0.093805983662605,-0.050324451178312,-0.044049527496099],[0.026968879625201,0.024544510990381,-0.00062873360002413]],[[-0.033346801996231,0.0482497215271,-0.0071529690176249],[0.017424326390028,0.067158818244934,-0.038100030273199],[-0.017655292525887,0.026241451501846,-0.05412357673049]],[[0.030053304508328,-0.02181282825768,-0.010125571861863],[0.070458061993122,0.039474166929722,0.021600352600217],[-0.0037169938441366,-0.011909987777472,-0.031687051057816]],[[-0.0035664548631757,-0.048044338822365,-0.00099985580891371],[0.0061398562975228,-0.052236899733543,-0.088907390832901],[0.0011069832835346,0.025811180472374,-0.0081679979339242]],[[-0.033526249229908,0.045376315712929,0.024248026311398],[-0.01056941319257,-0.024544464424253,-0.01175581663847],[0.093050062656403,-0.012578408233821,-0.052643749862909]],[[-0.018728327006102,0.0068253572098911,0.075591519474983],[-0.0056272302754223,0.00060439732624218,0.030603373423219],[0.012412570416927,-0.03286374732852,0.0031728881876916]],[[0.035029802471399,-0.014981480315328,-0.055717520415783],[-0.018219854682684,0.00064666394609958,-0.028224255889654],[0.033071309328079,-0.045057404786348,0.029321450740099]],[[-0.013408150523901,0.043310333043337,0.035112615674734],[-0.04435571283102,0.054481245577335,-0.006425067782402],[0.026590509340167,-0.029824299737811,-0.044489312916994]],[[-0.044517990201712,-0.086771413683891,-0.038575209677219],[0.038647819310427,-0.034807588905096,-0.016178263351321],[0.053175862878561,-0.049864135682583,0.053689692169428]],[[-0.015002519823611,-0.023710681125522,0.048733670264482],[0.043364718556404,-0.017852451652288,0.033134717494249],[-0.048094380646944,0.049196928739548,0.015582866966724]],[[0.04427844658494,0.00459756096825,0.013075370341539],[-0.10622130334377,-0.0026439842768013,0.044719353318214],[-0.031354192644358,-0.020503545179963,-0.010914046317339]],[[0.030186174437404,0.022774698212743,0.021725988015532],[0.03857009485364,-0.093017503619194,-0.025524197146297],[-0.016636142507195,-0.031634524464607,0.078275226056576]],[[0.018593810498714,0.02038842998445,0.011769357137382],[-0.023716356605291,-0.047753699123859,-0.024958183988929],[-0.03174364566803,0.028840232640505,-0.028077436611056]],[[-0.036742962896824,-0.010236371308565,-0.023556245490909],[0.02069092169404,0.034696109592915,0.10409297794104],[0.016833979636431,-0.066989198327065,-0.036429855972528]],[[0.025769716128707,-0.048077560961246,0.024423956871033],[0.0027475596871227,-0.013273805379868,-0.029951198026538],[-0.017574885860085,0.012907541356981,0.030263798311353]],[[0.057584807276726,0.0072831916622818,-0.04283582046628],[0.019205518066883,0.0034905360080302,0.0097152944654226],[-0.0036021727137268,-0.021154269576073,-0.020103756338358]],[[0.038644216954708,-0.025089027360082,0.044034015387297],[0.0080772638320923,-0.030930675566196,-0.023638997226954],[0.017541797831655,0.001491874223575,0.032791748642921]],[[-0.024206167086959,-0.05925203114748,0.026581779122353],[0.030663853511214,0.016522746533155,0.047616805881262],[-0.043934099376202,-0.0096301734447479,0.012203072197735]],[[-0.063685871660709,-0.01670490577817,0.035720858722925],[-0.026664404198527,0.061164781451225,0.01090937294066],[0.058373123407364,-0.038169637322426,-0.03351304680109]],[[-0.013991692103446,0.025585496798158,-0.060346849262714],[0.01622473821044,-0.06555288285017,-0.086295828223228],[-0.022994926199317,0.0081764329224825,0.01939987950027]],[[-0.001749410526827,0.047370433807373,0.055902935564518],[-0.048652928322554,-0.017009124159813,0.042666360735893],[0.020194135606289,-0.021496860310435,0.010910574346781]],[[-0.027052991092205,0.00089013471733779,-0.050921227782965],[-0.0088004544377327,0.050297025591135,0.0047346306964755],[0.038581851869822,-0.019875094294548,-0.0056593483313918]],[[0.01396494731307,-0.11388515681028,-0.014993482269347],[0.0293486174196,0.039250455796719,-0.0066957813687623],[0.027681086212397,-0.056810829788446,0.073536120355129]],[[0.0030005001462996,0.03150412067771,-0.023811213672161],[-0.013919586315751,0.026207165792584,0.070053085684776],[-0.034989863634109,0.020374163985252,-0.019555868580937]],[[-0.0029698791913688,0.098434314131737,-0.082977995276451],[0.0059128464199603,0.0077085313387215,0.039751030504704],[-0.031474769115448,0.047621831297874,-0.024121733382344]],[[0.063265524804592,-0.055826589465141,0.0038442846853286],[0.037504490464926,-0.090030893683434,-0.041567388921976],[-0.072370901703835,-0.047932896763086,-0.0019913036376238]],[[-0.051546301692724,0.044318906962872,-0.045389428734779],[-0.013563557527959,-0.062716022133827,0.02013778872788],[-0.10327654331923,0.026911128312349,0.016456358134747]],[[0.031338047236204,-0.0035002343356609,0.013338551856577],[-0.021112240850925,0.025728961452842,0.019490452483296],[0.049139689654112,0.069952182471752,0.063336461782455]],[[0.003600359428674,-0.01387597899884,0.0055395029485226],[-0.036004681140184,0.046067170798779,-0.032111849635839],[0.037126269191504,-0.012388003990054,0.019583649933338]],[[0.014829273335636,-0.030887469649315,0.0015032765222713],[-0.0093098618090153,-0.018498841673136,-0.076630167663097],[-0.048960816115141,-0.0075347791425884,0.0034121349453926]],[[0.013348293490708,-0.012996264733374,-0.069313883781433],[-0.035069156438112,0.018304407596588,-0.030078463256359],[0.062309090048075,0.026528440415859,0.032565474510193]],[[0.029765063896775,-0.039747327566147,0.031795632094145],[-0.0022042747586966,0.011741989292204,0.021994389593601],[0.039103791117668,-0.023532915860415,-0.072293020784855]],[[-0.028834104537964,-0.07837863266468,0.01233393792063],[-0.045830857008696,-0.024161824956536,-0.062768392264843],[0.017132902517915,-0.0074577978812158,0.038424540311098]],[[-0.037968039512634,-0.039853923022747,0.0033261205535382],[0.098285064101219,-0.027821037918329,-0.020241308957338],[-0.0054553993977606,0.016386138275266,-0.041321031749249]],[[0.097753830254078,0.014422500506043,-0.021166775375605],[-0.02585357427597,-0.0023911376483738,0.033480275422335],[0.030222095549107,-0.010339242406189,0.048113480210304]],[[-0.012543698772788,-0.041799273341894,-0.016340875998139],[0.038219045847654,0.10150097310543,0.029363993555307],[-0.038336455821991,-0.039765696972609,0.042214259505272]],[[0.00077545584645122,0.063344515860081,0.034759517759085],[0.028424568474293,-0.0044428403489292,-0.00076510669896379],[-0.044048395007849,0.04448426514864,0.00044143307604827]],[[0.077714778482914,-0.042175684124231,0.0046647503040731],[-0.034799747169018,-0.004563121125102,0.0024592615664005],[0.0083778817206621,-0.049853593111038,-0.024474645033479]],[[0.0080614173784852,-0.008514023385942,0.064379267394543],[-0.053253475576639,0.044870492070913,-0.021172372624278],[0.085492134094238,-0.03796648979187,-0.0067389090545475]],[[0.059666391462088,0.07737073302269,-0.022853469476104],[0.058494828641415,-0.05737229436636,-0.070890575647354],[-0.020375553518534,-0.023707387968898,0.083232887089252]],[[-0.0018726231064647,0.038069393485785,0.050946831703186],[0.00693927006796,-0.046447087079287,0.052469562739134],[0.041931189596653,0.068914465606213,0.0173863414675]],[[-0.01051380019635,-0.029145987704396,-0.010879465378821],[0.04440113902092,-0.003255789866671,0.055711295455694],[0.018831660971045,0.071762159466743,0.0078246826305985]],[[0.07351915538311,-0.09134204685688,-0.031304035335779],[-0.010675242170691,-0.053208824247122,-0.036211423575878],[0.012649977579713,-0.052216406911612,0.069776557385921]],[[0.041196133941412,-0.050172217190266,-0.0053763715550303],[0.056493014097214,-0.05147597566247,0.0070400713011622],[0.0047417636960745,-0.031003132462502,-0.043653175234795]],[[-0.061405260115862,-0.058136183768511,0.028984740376472],[0.02736746892333,-0.017321834340692,-0.050442546606064],[-0.11216355860233,0.048036862164736,-0.016498520970345]],[[0.067469626665115,0.0036494839005172,0.01468981988728],[0.012848714366555,0.041386108845472,-0.025254333391786],[-0.050576470792294,0.053310558199883,-0.034604839980602]],[[0.0031565837562084,-0.067202337086201,0.010968736372888],[-0.037595089524984,-0.030971771106124,0.0020742339547724],[-9.5494833658449e-05,-0.027928661555052,-0.079909019172192]],[[-0.06946512311697,0.022024121135473,0.022335538640618],[-0.0051019783131778,-0.0022946833632886,-0.024023978039622],[-0.027241613715887,-0.060531627386808,-0.014329702593386]],[[-0.041849095374346,-0.045432355254889,0.0095839444547892],[0.03084978275001,0.0024899661075324,-0.063261963427067],[-0.044339522719383,0.046619307249784,-0.040915295481682]],[[-0.019099608063698,0.029746510088444,-0.011093316599727],[0.0016313045052812,0.094029702246189,0.024565713480115],[-0.025631666183472,-0.060989316552877,-0.035634934902191]],[[-0.039051502943039,-0.022292179986835,0.0094044804573059],[-0.10708729177713,-0.025622548535466,-0.056774031370878],[-0.0038119782693684,-0.015904188156128,-0.019571421667933]],[[0.072338201105595,-0.026307867839932,-0.03557239100337],[-0.084693908691406,-0.028827054426074,0.083652190864086],[0.057174865156412,-0.012808584608138,-0.04834970459342]],[[-0.062643371522427,-0.02053358219564,0.045570593327284],[0.0022363730240613,0.020193247124553,-0.020306348800659],[0.0029950537718832,0.044940747320652,0.02079770155251]],[[0.073347143828869,0.020844049751759,0.0094776768237352],[0.0055935783311725,-0.03123258240521,-0.031108304858208],[-0.030044620856643,-0.021875446662307,0.013047519139946]],[[0.072425045073032,-0.03447624668479,0.012736851349473],[0.0080834776163101,-0.024480771273375,-0.020921314135194],[-0.02677839808166,-0.13276527822018,-0.056864596903324]],[[0.055242460221052,0.026973854750395,-0.013121273368597],[-0.055068951100111,0.042071226984262,-0.050233379006386],[-0.042768765240908,0.018759807571769,0.062784515321255]],[[0.016257118433714,0.07871451228857,-0.0411441847682],[0.014192285947502,0.008258500136435,0.026738503947854],[0.050049282610416,0.059284821152687,-0.053344909101725]],[[0.0072889933362603,-0.0048108375631273,-0.0030482965521514],[-0.042375706136227,0.084825173020363,0.031865779310465],[-0.010369023308158,0.0023636205587536,-0.04261652380228]],[[-0.043803934007883,-0.054838199168444,-0.053271494805813],[-0.038370810449123,0.0010439034085721,-0.025094669312239],[-0.01551145222038,-0.096918568015099,-0.0067936768755317]],[[0.045532934367657,-0.033038802444935,0.08942786604166],[0.0012586732627824,0.035339847207069,-0.017860684543848],[-0.027425711974502,-0.032312143594027,0.010921780951321]],[[0.0082093868404627,0.00013679126277566,-0.0054909810423851],[0.046817321330309,0.037373520433903,0.071607768535614],[0.046499762684107,-0.037525825202465,0.0075561152771115]],[[0.03198380023241,0.013401265256107,-0.01221552491188],[-0.01654258929193,-0.074924483895302,0.07308954000473],[0.055777013301849,-0.084955580532551,-0.030734308063984]],[[-0.051203224807978,-0.027944568544626,0.01527682878077],[0.066896609961987,0.025600178167224,-0.0063577052205801],[-0.049248147755861,0.037607211619616,-0.014485979452729]],[[-0.034695457667112,0.078519605100155,-0.059583958238363],[-0.0043429573997855,0.024298790842295,-0.04133765026927],[-0.038403820246458,-0.034747108817101,0.06068355217576]],[[-0.087448090314865,0.00055886636255309,0.047972109168768],[-0.025632094591856,0.022567741572857,0.034590110182762],[0.0057476139627397,0.0148989809677,-0.018744859844446]],[[-0.015674544498324,0.00083319121040404,-0.012624882161617],[0.037911083549261,-0.025216775014997,0.027787478640676],[0.048682846128941,-0.032033171504736,0.1032133474946]],[[-0.057518791407347,-0.034163139760494,0.078634947538376],[-0.045651942491531,-0.024473167955875,-0.065834783017635],[0.028404368087649,-0.030641194432974,0.026833958923817]],[[-0.034143202006817,-0.014720492064953,-0.027516754344106],[0.022599142044783,-0.015285245142877,0.0062254001386464],[0.020112255588174,-0.0088865347206593,0.035837158560753]],[[0.001096578896977,-0.027799444273114,0.025594484061003],[0.020189298316836,-0.0056161158718169,0.035604670643806],[0.04187623783946,0.018573885783553,-0.0040571289137006]],[[-0.052299153059721,-0.076682314276695,-0.057426773011684],[-0.043971955776215,0.064989142119884,0.025323072448373],[-0.036355815827847,0.032426405698061,0.0081043131649494]],[[-0.020165357738733,-0.019242553040385,0.00052822678117082],[0.092229731380939,0.026804046705365,-0.032135184854269],[-0.016327811405063,0.074494570493698,-0.0014149722410366]],[[-0.00053125683916733,-0.0086501864716411,-0.0091154864057899],[0.017141355201602,-0.0045381947420537,-0.01909152045846],[-0.041577890515327,0.00058926787460223,-0.037806186825037]],[[-0.035035412758589,-0.025784105062485,-0.0054720649495721],[0.015686584636569,-0.0067631755955517,-0.047526385635138],[0.0085715735331178,-0.027238462120295,0.014667714014649]],[[-0.0015590082621202,0.065632589161396,-0.011367953382432],[-0.072220988571644,-0.042390771210194,-0.0038767263758928],[-0.0034659239463508,-0.004104498308152,0.0028563959058374]],[[-0.084432378411293,-0.0026787577662617,0.018483685329556],[-0.015580832026899,-0.073431760072708,0.030446514487267],[-0.0039118360728025,0.022442171350121,-0.06575008481741]],[[0.020845578983426,0.056016575545073,-0.0090899467468262],[-0.11122395843267,0.040009025484324,-0.0017809136770666],[-0.04281459748745,0.075819700956345,-0.022329391911626]],[[-0.043022256344557,-0.024140521883965,0.02982821688056],[-0.091015636920929,0.0042085438035429,0.071474954485893],[0.024578122422099,-0.052585136145353,0.0031787031330168]],[[0.01246926560998,0.02558415196836,0.055954650044441],[0.075937986373901,-0.042665615677834,0.062387969344854],[-0.030320109799504,0.015351828187704,0.066164568066597]],[[-0.044148050248623,-0.01588754542172,0.0029516771901399],[0.034408677369356,-0.010854416526854,-0.050768412649632],[-0.039337646216154,-0.052978493273258,-0.019588122144341]],[[-0.010412620380521,-0.039687652140856,0.086875811219215],[-0.010738228447735,0.042497891932726,0.01001735124737],[-0.01807926595211,-0.029664913192391,0.03085464797914]],[[-0.018317580223083,0.060077857226133,-0.022603357210755],[0.021426193416119,0.021872159093618,-0.022166144102812],[-0.081027574837208,0.11030907928944,0.030794631689787]],[[-0.050454515963793,-0.01543078571558,0.0045782960951328],[0.084700129926205,-0.021039670333266,-0.014528870582581],[0.015009441412985,0.022297352552414,-0.014301059767604]],[[-0.0063469926826656,-0.03943695500493,0.044115964323282],[-0.067928351461887,-0.022121479734778,-0.02705349214375],[0.035858064889908,-0.085975311696529,-0.061439979821444]],[[-0.0795908421278,0.044174879789352,0.063782431185246],[-0.01300001423806,0.052128750830889,0.066399991512299],[-0.05598446726799,-0.032916456460953,-0.0056571415625513]],[[-0.023739278316498,-0.015305808745325,0.02058095857501],[-0.011450067162514,0.022034835070372,0.032926820218563],[0.058253135532141,-0.067737862467766,0.012017399072647]],[[-0.019173247739673,-0.021232575178146,-0.0035192221403122],[0.011012660339475,0.032786067575216,-0.013792727142572],[-0.028730237856507,-0.024900689721107,0.015254967845976]],[[0.018905218690634,-0.017985867336392,0.010006339289248],[0.005183266941458,-0.014160267077386,-0.01896109431982],[0.057035751640797,0.0081304712221026,-0.056809477508068]],[[0.047777060419321,0.020085537806153,0.030540430918336],[-0.024407854303718,0.0077961385250092,-0.032608650624752],[0.014397637918591,-0.10037074238062,-0.076680526137352]],[[-0.04901796579361,-0.025486897677183,-0.00097331136930734],[-0.00046901233145036,0.015140395611525,0.079458720982075],[0.03011661209166,-0.089670039713383,-0.0035130793694407]],[[-0.057927403599024,-0.016796739771962,-0.085732512176037],[-0.022986186668277,-0.016903577372432,0.045200046151876],[0.0082891536876559,0.068690627813339,-0.033074092119932]],[[0.00076216942397878,0.0047212643548846,0.0005663579213433],[-0.0066391010768712,0.038621615618467,-0.090017475187778],[-0.010834735818207,-0.010927912779152,-0.078968867659569]],[[-0.011311993002892,0.038089439272881,0.042983669787645],[-0.044086810201406,0.03949610888958,0.016735162585974],[0.023262171074748,0.034013397991657,-0.064846269786358]],[[-0.041588239371777,-0.027400171384215,0.035074464976788],[0.059006955474615,0.054586086422205,0.033005177974701],[0.030273457989097,0.047635849565268,0.054955925792456]],[[0.014420569874346,-0.042993061244488,0.030578449368477],[0.0067890691570938,0.029053099453449,0.043387550860643],[0.025323826819658,0.0089317569509149,-0.094118937849998]],[[-0.017716089263558,0.018804881721735,0.017260195687413],[-0.013796404004097,0.0071839550510049,-0.019155038520694],[0.0099785104393959,0.0055041112937033,0.068146772682667]],[[0.033213056623936,0.029730727896094,-0.0040863575413823],[0.032618753612041,0.087517447769642,0.018916103988886],[-0.02826850861311,0.0086082303896546,-0.0078803012147546]],[[0.10799804329872,0.014557611197233,0.035842396318913],[-0.028841203078628,-0.046013135462999,-0.042130116373301],[0.0045369802974164,-0.021395411342382,-0.036390289664268]],[[-0.015489689074457,-0.0038534346967936,-0.0051414193585515],[0.0010572819737718,-0.0066756121814251,0.045336179435253],[0.046647798269987,-0.00029710165108554,-0.038989339023829]],[[0.035249497741461,-0.024336336180568,-0.10217905044556],[-0.030683180317283,-0.014476935379207,-0.014701720327139],[0.038834050297737,0.013904520310462,0.053070295602083]],[[0.011866448447108,-0.12575305998325,0.042699251323938],[0.026268592104316,0.0055579328909516,-0.065725728869438],[-0.014421447180212,-0.024192603304982,0.031609985977411]],[[0.026835601776838,-0.057094037532806,0.018992399796844],[-0.042681064456701,-0.016767367720604,-0.060111917555332],[0.027151400223374,0.01814391836524,0.0022871133405715]],[[0.10673709958792,0.045817136764526,0.011330405250192],[-0.039428979158401,-0.027833592146635,-0.00038209857302718],[0.012534506618977,0.017017586156726,-0.026121452450752]],[[-0.011865721084177,-0.049887858331203,-0.061365470290184],[-0.059922695159912,0.019828006625175,-0.040840186178684],[0.024803249165416,0.010879617184401,0.059330329298973]],[[-0.020152168348432,0.034646529704332,0.067056924104691],[0.040231645107269,0.061563991010189,0.030008731409907],[-0.030962958931923,-0.060355313122272,0.0077046528458595]],[[0.021304758265615,-0.019115507602692,-0.051187813282013],[-0.073248408734798,-0.012377869337797,-0.010900671593845],[0.013996213674545,0.031207259744406,-0.026248412206769]],[[0.0067920293658972,0.017830746248364,-0.038816496729851],[0.00012474988761824,-0.063811868429184,0.032609034329653],[-0.033813174813986,0.0042774365283549,-0.032348044216633]],[[0.10041221231222,-0.051454674452543,-0.10375591367483],[0.0077106370590627,0.040174685418606,0.079419635236263],[-0.034596379846334,0.031636264175177,-0.056164033710957]],[[0.014536478556693,-0.049856994301081,0.054465547204018],[-0.077959075570107,0.043106768280268,0.049561616033316],[0.0035114730708301,-0.0062064500525594,0.066050581634045]],[[-0.012929709628224,-0.0023262146860361,0.068930715322495],[-0.056857723742723,0.044361591339111,-0.078007809817791],[0.0259357560426,-0.030171720311046,-0.017805814743042]],[[0.055129155516624,-0.034698225557804,0.046654429286718],[0.032874241471291,-0.0050663114525378,-0.047299783676863],[0.044912952929735,-0.017508631572127,-0.072676546871662]]],[[[-0.003452249802649,0.0095228552818298,0.052903085947037],[0.0015131016261876,0.0088717695325613,0.02523828484118],[0.059610601514578,-0.10483228415251,0.028190448880196]],[[0.014959597028792,-0.068680040538311,0.0059881908819079],[-0.068438410758972,-0.016515888273716,-0.045560136437416],[0.050274100154638,-0.012523582205176,0.0029393713921309]],[[-0.051625497639179,0.015461407601833,-0.041696842759848],[0.019531663507223,0.040280114859343,-0.05953161790967],[0.008288056589663,0.017394371330738,-0.031941082328558]],[[0.027426404878497,0.0088007757440209,0.048900671303272],[0.0030841957777739,0.041967153549194,-0.0078939637169242],[-0.012558857910335,0.0097330221906304,-0.096406243741512]],[[0.12412490695715,-0.086999356746674,-0.025874944403768],[0.042805317789316,-0.035416875034571,-0.028613125905395],[-0.075937926769257,-0.019292451441288,-0.030559990555048]],[[0.05757138133049,-0.0033353890758008,-0.018329814076424],[-0.071887753903866,-0.076321795582771,-0.010514126159251],[-0.026182362809777,-0.031710419803858,0.0089203147217631]],[[-0.020737310871482,-0.016312405467033,0.10821879655123],[-0.036035496741533,-0.029573526233435,0.034416675567627],[-0.11019002646208,0.03986070305109,0.027016915380955]],[[0.025875590741634,0.0093663251027465,0.030542012304068],[0.1150766685605,-0.0032198447734118,0.051522754132748],[-0.12245954573154,0.0055665434338152,0.090155519545078]],[[-0.0014381953515112,0.055113106966019,-0.018411429598927],[0.017851242795587,-0.02446660771966,-0.0062656598165631],[-0.021756803616881,0.093062475323677,-0.06049745157361]],[[-0.037338394671679,-0.006843370385468,-0.010442161001265],[-0.053577046841383,0.02749439701438,0.022864639759064],[-0.045370612293482,-0.065207771956921,0.12609297037125]],[[0.028181698173285,0.040251944214106,0.041632551699877],[-0.079587303102016,-0.048842187970877,0.0094483681023121],[-0.012556862086058,0.0068315686658025,-0.067688778042793]],[[-0.03049641661346,-0.063194744288921,-0.082805640995502],[-0.07662458717823,-0.0060443445108831,0.081931240856647],[0.030514232814312,-0.02922985330224,0.077088601887226]],[[-0.040203753858805,-0.088379055261612,0.0041606021113694],[-0.039376772940159,0.0060666748322546,0.054270029067993],[0.047653455287218,-0.03563517332077,-6.2801642343402e-05]],[[-0.02186357229948,0.047771032899618,0.082912184298038],[0.035059802234173,-0.0005620209267363,0.028156656771898],[-0.045724686235189,-0.051625210791826,0.063523605465889]],[[-0.040107663720846,-0.08226566016674,0.017317684367299],[0.018695237115026,-0.044153105467558,-0.0097128506749868],[0.041730474680662,-0.024149933829904,-0.049202285706997]],[[0.067537330091,0.027757788076997,-0.027354996651411],[0.058464087545872,-0.057442292571068,-0.036312196403742],[0.035682249814272,0.123928129673,-0.054526198655367]],[[-0.0066458978690207,0.0083896862342954,0.010056695900857],[0.10817313939333,0.055309377610683,-0.0070005832239985],[0.029531745240092,0.026165418326855,0.032292604446411]],[[-0.017523612827063,-0.039468344300985,-0.028429485857487],[-0.12383618950844,-0.051220271736383,0.0018750004237518],[-0.065560936927795,-0.1017901301384,0.033545948565006]],[[0.017668783664703,0.047179136425257,-0.00037814490497112],[-0.010018728673458,0.088582292199135,-0.083221904933453],[-0.008889309130609,-0.056503560394049,-0.013838535174727]],[[0.024422416463494,-0.064746417105198,0.14049133658409],[-0.06463360786438,0.051060233265162,0.04826583340764],[0.0067243603989482,-0.042440623044968,-0.0094622708857059]],[[0.031371936202049,-0.017003767192364,-0.040794104337692],[-0.06534980237484,-0.020264901220798,-0.0078572994098067],[-0.0038455857429653,-0.074404962360859,-0.034698527306318]],[[0.016783136874437,0.11144304275513,0.039382237941027],[-0.035391326993704,-0.055105444043875,0.03826466947794],[0.035164948552847,0.057282045483589,0.014389744959772]],[[-0.022862900048494,0.040860589593649,-0.097823977470398],[-0.083335116505623,-0.039099767804146,-0.062143534421921],[0.047831382602453,0.015463242307305,0.04341858997941]],[[0.080169796943665,-0.033906817436218,0.012148573994637],[-0.088386245071888,0.018065743148327,-0.016830381006002],[0.089965261518955,0.028850307688117,-0.068924702703953]],[[0.040177803486586,0.00027970073278993,-0.021726548671722],[0.021427806466818,0.0073780603706837,0.0400708951056],[0.017784034833312,-0.058532383292913,0.0051576583646238]],[[0.030300378799438,0.076138496398926,0.01942415907979],[-0.01223545242101,-0.061123844236135,-0.027837080881],[0.017406038939953,-0.0062720621936023,-0.08278526365757]],[[0.03702225908637,0.043482847511768,-0.073832459747791],[0.046661980450153,-0.071853153407574,0.018611067906022],[0.10059558600187,-0.0057953200303018,0.016043523326516]],[[-0.0066942078992724,0.01640248671174,-0.082688599824905],[-0.0016107875853777,0.039703078567982,-0.058780919760466],[0.020272467285395,-0.0041336314752698,0.030666969716549]],[[-0.083042375743389,-0.0027539818547666,-0.010605806484818],[0.010443388484418,-0.032450821250677,-0.02714147977531],[0.02639888972044,-0.080910094082355,-0.0054324148222804]],[[0.0096791470423341,-0.0074101812206209,0.062414385378361],[-0.050129406154156,-0.047837447375059,-0.05944112688303],[-0.05579436570406,0.037441372871399,0.047015283256769]],[[-0.0058070048689842,0.02675873041153,0.046123683452606],[-0.032182764261961,0.051829647272825,0.0049786767922342],[-0.0099205151200294,0.024611053988338,0.02288943529129]],[[-0.020972972735763,-0.021274976432323,0.030564619228244],[-0.00089187535922974,-0.03110864199698,0.0054057752713561],[0.036709524691105,0.017306998372078,0.0050964173860848]],[[-0.039643872529268,0.025697361677885,-0.024897359311581],[0.11921368539333,0.027956223115325,-0.099885888397694],[0.030350549146533,-0.028270242735744,-0.028605200350285]],[[0.028445227071643,0.019259762018919,-0.047772582620382],[0.039858631789684,-0.00018614070722833,0.0027617951855063],[-0.044238671660423,-0.001174523262307,0.017677130177617]],[[0.084677040576935,-0.017650792375207,0.0089846691116691],[0.02215600758791,0.060336761176586,0.032365463674068],[-0.085239835083485,-0.012711848132312,-0.040331397205591]],[[-0.04285467043519,-0.05597086250782,-0.018027437850833],[-0.01567772962153,-0.033133316785097,-0.067706763744354],[0.1067667901516,-0.024833308532834,0.045967657119036]],[[0.041416175663471,-0.0456309504807,0.0152278970927],[0.0058327461592853,0.082217112183571,0.034152936190367],[-0.0031085158698261,0.08013641089201,0.0094871176406741]],[[0.018880954012275,-0.045340705662966,-0.00068937439937145],[0.068633064627647,0.022559486329556,0.055298656225204],[-0.051501598209143,0.0365822724998,-0.019375056028366]],[[-0.13926632702351,0.023949757218361,-0.047675780951977],[-0.057444185018539,-0.024916714057326,-0.056265752762556],[0.032455421984196,0.089179717004299,-0.017711725085974]],[[0.025032136589289,-0.072184793651104,-0.023857560008764],[0.081006184220314,-0.027278130874038,0.079717352986336],[0.048794690519571,0.025524068623781,0.0259352568537]],[[-0.049779232591391,-0.029189523309469,0.0021106137428433],[0.028928052634001,-0.0013982908567414,-0.024102918803692],[0.070197358727455,0.013272508047521,-0.036170404404402]],[[0.011443154886365,0.070570714771748,-0.020137945190072],[0.012805453501642,-0.02131381444633,0.011673180386424],[0.21189793944359,0.1373488008976,-0.050675414502621]],[[0.065211430191994,0.046375256031752,0.014418910257518],[0.087865568697453,0.10937017202377,0.10427778214216],[0.15172059834003,-0.048458427190781,0.019517913460732]],[[-0.036860074847937,-0.0032229262869805,-0.097582250833511],[-0.0034503822680563,0.039126817137003,0.032790865749121],[-0.0020610422361642,0.030698066577315,0.039609614759684]],[[0.010149934329093,-0.029950208961964,0.015268151648343],[0.03462890535593,-0.012616267427802,0.020125716924667],[0.069379583001137,0.0099562397226691,0.019786227494478]],[[-0.036959949880838,0.063378177583218,0.033292423933744],[0.0043855314143002,0.094397433102131,0.053741481155157],[0.11320240050554,0.0018801972037181,-0.071968451142311]],[[0.040197189897299,-0.032859578728676,-0.067715220153332],[0.0021609223913401,0.01200377382338,0.035484850406647],[0.016643553972244,0.041111532598734,-0.063963502645493]],[[-0.043956357985735,-0.03399271145463,-0.01957474835217],[-0.048988245427608,-0.0095815351232886,0.0034392785746604],[-0.021780554205179,0.057660326361656,-0.063947938382626]],[[0.0057714711874723,-0.046884093433619,-0.086386136710644],[-0.045632161200047,0.0038572715129703,-0.01975635252893],[0.026142796501517,-0.052501704543829,0.044225540012121]],[[-0.015964468941092,0.067631520330906,0.061158083379269],[-0.094236232340336,-0.0020491555333138,-0.033723119646311],[0.06278532743454,0.024806775152683,0.013277089223266]],[[-0.048516843467951,0.0085646621882915,-0.036206312477589],[0.016188630834222,-0.083865247666836,-0.0056039332412183],[-0.083278082311153,-0.041158761829138,-0.079607270658016]],[[0.05884438380599,-0.01068951934576,-0.039915043860674],[-0.050030950456858,-0.040683910250664,0.0051396191120148],[0.063056081533432,0.0046747820451856,0.04661813005805]],[[-0.016177603974938,0.0023616943508387,-0.013619215227664],[-0.003783272812143,0.060481779277325,0.014757750555873],[0.017141478136182,-0.045028626918793,0.098282441496849]],[[-0.04973179101944,0.06990160793066,0.039699200540781],[0.012905380688608,0.0026418454945087,0.010600854642689],[-0.015602075494826,0.017565419897437,0.1083148419857]],[[0.039201892912388,0.065196096897125,0.086898237466812],[0.02909598685801,0.01851124688983,0.017441965639591],[-0.010702354833484,0.020636493340135,-0.039161775261164]],[[0.048992060124874,-0.021442299708724,0.0024625472724438],[0.013937467709184,0.034243661910295,-0.050699010491371],[-0.12066677957773,0.022628938779235,-0.033533833920956]],[[0.044936701655388,0.11700451374054,0.097889870405197],[0.1015498265624,-0.01626337133348,0.035522785037756],[0.05149745196104,0.11288294941187,-0.019832359626889]],[[0.054538279771805,-0.01743271574378,0.038124512881041],[0.042281109839678,0.02882893383503,-0.0185706038028],[-0.077625900506973,-0.099474750459194,0.033192280679941]],[[0.018076974898577,0.0047839554026723,0.044899992644787],[-0.023055247962475,0.044967655092478,0.00012360002438072],[0.0074560777284205,0.019578041508794,0.10256651043892]],[[-0.020386012271047,-0.0043823774904013,0.043648779392242],[-0.036490648984909,0.028385559096932,-0.069975085556507],[0.015334172174335,0.011557651683688,0.05469162017107]],[[-0.089355893433094,-0.025328084826469,-0.023791663348675],[-0.038495291024446,-0.074498705565929,-0.020116619765759],[0.0053667742758989,-0.069059446454048,-0.079678945243359]],[[-0.0023746234364808,-0.030690889805555,-0.07419965416193],[-0.021569984033704,-0.056380283087492,-0.088064163923264],[-0.092508412897587,-0.062427438795567,-0.036304280161858]],[[0.033410497009754,-0.026407852768898,0.010100388899446],[0.024134904146194,0.01770355924964,-0.0043699340894818],[0.0030203540809453,0.02036883495748,0.028374446555972]],[[0.048172380775213,0.053908318281174,0.069267570972443],[0.021433724090457,0.011816401034594,-0.016525831073523],[0.038740161806345,0.014172293245792,0.01242430973798]],[[-0.092986017465591,-0.097689159214497,-0.014073156751692],[-0.025205459445715,0.011432161554694,0.036574903875589],[-0.0014496224466711,-0.0063148578628898,-0.011189023964107]],[[-0.057123590260744,-0.039732899516821,0.039870727807283],[-0.029718734323978,-0.016110537573695,-0.037178169935942],[0.043403178453445,-0.014874285086989,-0.042682752013206]],[[-0.04926448315382,0.0057646878995001,0.036477603018284],[-0.1115373596549,0.046381078660488,-0.0040177763439715],[-0.026770206168294,0.0056362533941865,-3.5346420190763e-05]],[[0.017925165593624,-0.010928828269243,0.053033035248518],[0.042172998189926,-0.012209071777761,0.028597742319107],[-0.054110016673803,0.017576355487108,-0.063924789428711]],[[-0.013508391566575,-0.0063870372250676,0.096670411527157],[-0.019236797466874,0.05037159845233,0.072517514228821],[0.0069591156207025,0.030407914891839,0.013058514334261]],[[-0.095313787460327,0.014426716603339,-0.014664736576378],[0.02974234893918,-0.04753240570426,-0.051793772727251],[0.046493619680405,0.0023289769887924,0.004530240315944]],[[0.0073023340664804,0.035991292446852,0.020916346460581],[0.065663166344166,0.10050109773874,-0.025947887450457],[0.036253966391087,0.041413746774197,0.11226209998131]],[[-0.018635550513864,-0.082145527005196,-0.051148734986782],[0.017407326027751,0.05116007104516,-0.044543407857418],[-0.067185513675213,0.0044663860462606,-0.0066024735569954]],[[0.0073447930626571,0.0026487784925848,-0.00023412556038238],[-0.047700699418783,0.042166456580162,-0.04929718375206],[-0.015782261267304,0.035824045538902,-0.001497003249824]],[[0.06680303812027,0.010697244666517,0.0054958262480795],[-0.025212809443474,0.045332826673985,-0.045875929296017],[-0.014094308018684,0.083558984100819,-0.0027035500388592]],[[0.06932120770216,0.018839072436094,0.027680201455951],[0.047315258532763,0.0092570083215833,0.066049672663212],[0.037561479955912,-0.049966279417276,0.013674284331501]],[[-0.008359088562429,0.079861156642437,-0.034436743706465],[-0.03737984597683,0.004847299773246,-0.041627623140812],[-0.096745222806931,0.026632025837898,0.079439952969551]],[[-0.10119642317295,0.0065265060402453,-0.044915433973074],[0.012348682619631,0.0031398681458086,-0.056219276040792],[-0.071632996201515,-0.010972533375025,0.022328142076731]],[[0.024390179663897,-0.022715197876096,0.025962501764297],[0.14941340684891,0.0026785105001181,0.076619394123554],[-0.019151633605361,0.039760246872902,0.072683431208134]],[[0.070172660052776,-0.015418090857565,-0.011613745242357],[-0.04146371036768,-0.11206671595573,0.05300335586071],[-0.039191659539938,-0.021427411586046,-0.046959575265646]],[[0.04203324764967,0.01342052500695,-0.033782988786697],[0.028100669384003,0.0077481572516263,0.04081167653203],[0.056644789874554,-0.042250495404005,0.030060008168221]],[[0.021938994526863,-0.081754237413406,-0.00090999208623543],[-0.025556420907378,-0.093433521687984,-0.054297998547554],[0.046408802270889,0.010908856987953,-0.065934479236603]],[[0.05668118968606,-0.000763253076002,-0.0088408458977938],[0.01646844483912,0.041473552584648,0.051832992583513],[-0.038696151226759,0.008430109359324,-0.022236742079258]],[[0.036068979650736,-0.009758492000401,0.053916078060865],[0.0032375175505877,0.003905248362571,-0.0080640083178878],[0.099776118993759,0.024757228791714,-0.01260619983077]],[[-0.012050881050527,-0.02211925201118,-0.00097713875584304],[0.020438447594643,0.030417080968618,-0.0201854724437],[0.063556618988514,0.052090786397457,0.10296445339918]],[[0.016514714807272,0.062986239790916,0.044651385396719],[0.042386692017317,-0.035946048796177,-0.025075651705265],[-0.021100267767906,-0.031932700425386,0.034398905932903]],[[-0.012822638265789,0.060271095484495,0.004610360134393],[0.022795664146543,-0.010300074703991,0.026587918400764],[0.029470110312104,-0.027857111766934,-0.02989474311471]],[[0.078595899045467,0.0065613798797131,0.07160934060812],[0.10882452130318,0.033169306814671,0.10279171168804],[-0.044720061123371,-0.052738081663847,0.077638320624828]],[[-0.03822623565793,0.032735802233219,0.0061761867254972],[-0.039362698793411,0.0039802552200854,0.01450558938086],[-0.034246407449245,-0.029749140143394,-0.0062300353311002]],[[0.087777256965637,-0.0091412765905261,0.066580712795258],[0.033510588109493,0.018212839961052,-0.0047923508100212],[0.05640621855855,-0.028673440217972,0.059220653027296]],[[0.052393361926079,-0.08679760992527,0.069109871983528],[-0.059220742434263,-0.0091027896851301,0.041746910661459],[0.069760337471962,-0.021874506026506,0.01082812063396]],[[-0.063480406999588,0.026379927992821,0.031971286982298],[-0.037110067903996,-0.036340147256851,0.011487348936498],[0.0055167451500893,-0.045532073825598,0.053299598395824]],[[0.096620626747608,0.05487373098731,0.010856477543712],[0.012426699511707,-0.083483494818211,-0.081381186842918],[-0.099614523351192,-0.078161954879761,-0.010456321761012]],[[-0.0081059830263257,0.060986287891865,0.01815634034574],[-0.059999778866768,-0.010025691241026,-0.0055264630354941],[-0.064660921692848,0.045163098722696,0.05300011113286]],[[0.029884528368711,0.0026727640070021,0.0040031359530985],[0.11782394349575,0.056359067559242,0.024111056700349],[-0.0084787867963314,0.12467651814222,-0.039352238178253]],[[-0.04814225435257,-0.017437256872654,-0.047813639044762],[0.012545985169709,0.010723201557994,-0.011225428432226],[-0.10154582560062,-0.03166476637125,-0.056199956685305]],[[-0.052437201142311,-0.0046074325218797,0.036289963871241],[0.069710291922092,0.010222884826362,-0.081857450306416],[0.13147492706776,-0.032466124743223,0.018468344584107]],[[-0.060191161930561,0.00090840755729005,-0.0061861150898039],[-0.021194946020842,-0.027104686945677,0.088937252759933],[-0.010835117660463,0.045325577259064,0.019498204812407]],[[0.14916421473026,0.060704059898853,-0.063541576266289],[-0.0059128068387508,0.0015478858258575,0.046501901000738],[-0.01503446791321,0.077538475394249,0.16911447048187]],[[0.0010734868701547,-0.0042955963872373,-0.029482837766409],[-0.059181068092585,-0.025806818157434,-0.00070672063156962],[-0.039781745523214,0.010425780899823,0.075419925153255]],[[0.0068512889556587,0.017095621675253,0.022548884153366],[0.019839394837618,-0.035161927342415,-0.030520467087626],[0.073811702430248,0.066858738660812,0.013263391330838]],[[0.017160713672638,-0.06458555161953,0.0053394413553178],[-0.011903955601156,-0.034420628100634,0.040909975767136],[0.026271615177393,0.02018148265779,-0.0025870003737509]],[[-0.03923886269331,-0.032312545925379,-0.025863483548164],[0.056033208966255,0.087090089917183,0.02413497492671],[-0.023275492712855,0.071840986609459,-0.12993323802948]],[[0.090187899768353,0.021558843553066,0.06158035993576],[-0.049610443413258,-0.0089909145608544,-0.091547280550003],[-0.033409595489502,0.038685351610184,-0.056025564670563]],[[0.021485514938831,-0.092503078281879,-0.08609239757061],[-0.02726118825376,-0.0044578863307834,-0.036701761186123],[-0.071203008294106,0.03645009920001,-0.044613465666771]],[[-0.057194285094738,-0.1017766520381,-0.076509140431881],[0.13539327681065,0.05187651515007,0.046449650079012],[0.015535113401711,0.13221248984337,0.088183455169201]],[[-0.026792116463184,0.0025906395167112,0.064118273556232],[-0.068177558481693,0.068864859640598,0.039549734443426],[-0.023696161806583,0.084471836686134,-0.023183027282357]],[[0.062811240553856,0.10582415759563,0.083941146731377],[-0.0076022702269256,0.010734866373241,0.0074353637173772],[-0.031158512458205,0.033291600644588,0.019794961437583]],[[0.034133035689592,-0.068768113851547,0.045046057552099],[0.027365565299988,-0.096141390502453,-0.0070392088964581],[-0.0086432453244925,-0.035224005579948,-0.13561142981052]],[[0.0039481618441641,0.053767058998346,-0.035225562751293],[-0.039211511611938,0.030209273099899,0.004279631190002],[-0.08481302857399,0.040332306176424,-0.0022655823267996]],[[0.11937642842531,0.0037202765233815,0.076945677399635],[0.084905557334423,0.028871636837721,0.025999125093222],[-0.037439309060574,-0.0049147759564221,0.15390323102474]],[[-0.023132806643844,0.017137344926596,0.11137603968382],[-0.029092241078615,-0.0011069141328335,-0.020837942138314],[0.02677913941443,-0.023405190557241,-0.082695841789246]],[[0.0071259192191064,0.031597714871168,0.10279839485884],[0.019324222579598,-0.034736070781946,0.0035093971528113],[-0.015754517167807,-0.019949795678258,-0.043672293424606]],[[0.010992216877639,-0.08566415309906,0.032870940864086],[0.035178855061531,0.0086990464478731,0.053168907761574],[0.027297738939524,0.0076909894123673,-0.023471746593714]],[[-0.020630955696106,0.060829970985651,0.029204582795501],[0.026279672980309,0.019122058525681,0.0166398845613],[0.011539593338966,-0.10033986717463,0.029670506715775]],[[0.0028936655726284,-0.043426875025034,0.034055516123772],[0.004252883605659,-0.049586992710829,-0.026224663481116],[0.04659041389823,0.095227584242821,0.049910623580217]],[[-0.01651618257165,-0.026819251477718,-0.029367730021477],[0.034812342375517,-0.030117936432362,-0.078659944236279],[0.027645671740174,0.01427922770381,0.015800021588802]],[[0.021821720525622,0.035710178315639,0.077166981995106],[0.069068513810635,0.0072707403451204,0.0350701212883],[-0.027047332376242,-0.015185517258942,0.051645576953888]],[[-0.01005154196173,-0.043899156153202,-0.0023776129819453],[-0.037192869931459,-0.027150614187121,-0.048528000712395],[-0.06036989018321,-0.059828612953424,0.022431544959545]],[[0.038801368325949,0.048812612891197,0.038494691252708],[-0.032632701098919,0.014256587252021,-0.040273755788803],[-0.055921122431755,0.047355368733406,-0.00026171450736001]],[[0.053410984575748,0.097475327551365,-0.034834954887629],[0.0422438159585,0.082659743726254,-0.031723041087389],[-0.022718649357557,0.095617264509201,0.074898950755596]],[[-0.059450633823872,-0.044299956411123,-0.030110122635961],[-0.046832282096148,-0.070908933877945,-0.0025438859593123],[0.085978098213673,0.10546004772186,0.044489547610283]],[[0.0048832134343684,-0.068616718053818,0.064090415835381],[-0.010558066889644,-0.084360606968403,-0.053602661937475],[0.016853019595146,-0.064930059015751,-0.045754663646221]],[[-0.042135965079069,0.045618582516909,-0.07242551445961],[-0.034529790282249,-0.034315817058086,-0.017733864486217],[0.052950941026211,0.01596312597394,0.050165634602308]],[[0.065729700028896,-0.041422750800848,-0.027757845818996],[0.063685365021229,0.058306209743023,-0.0075141880661249],[0.030380755662918,-0.025410871952772,0.0031181995291263]],[[0.057959709316492,-0.046169441193342,0.021974822506309],[0.029746158048511,0.014192385599017,-0.059708442538977],[-0.064294159412384,-0.023346934467554,-0.02894327044487]],[[-0.031665030866861,0.024814628064632,-0.020759269595146],[-0.07393142580986,-0.027913337573409,-0.049322534352541],[-0.020826116204262,0.029190704226494,-0.024764735251665]],[[0.058225307613611,-0.048504367470741,0.084220074117184],[5.4171221563593e-05,0.033811122179031,0.046096883714199],[-0.1011510565877,0.088588871061802,0.040389347821474]],[[-0.0084384204819798,-0.061293005943298,-0.055368468165398],[0.011289030313492,-0.1020595729351,0.025378059595823],[-0.021005656570196,0.033858194947243,0.0036548925563693]]],[[[0.076688945293427,0.040444489568472,0.022797089070082],[-0.0010778304422274,-0.021240901201963,-0.016831312328577],[-0.049935478717089,-0.041359912604094,-0.053781874477863]],[[-0.032143384218216,0.048740841448307,-0.0059881592169404],[0.01192353758961,-0.020680002868176,-0.1349912583828],[0.0085792252793908,0.020637344568968,-0.047018192708492]],[[0.12423215806484,0.024276215583086,-0.061570752412081],[0.18178535997868,0.11848893016577,0.086188361048698],[-0.17242416739464,-0.056649848818779,0.11957217007875]],[[0.016049973666668,-0.1182923913002,0.047181781381369],[-0.21109676361084,0.05166682600975,0.068090945482254],[0.030089382082224,0.22979578375816,-0.015223013237119]],[[-0.013537168502808,-0.0075547331944108,-0.17838425934315],[0.096669085323811,0.16202883422375,-0.20160683989525],[0.048599362373352,0.064278624951839,-0.18386985361576]],[[0.086043611168861,-0.019680490717292,0.045091558247805],[-0.041514001786709,-0.018631767481565,-0.074271693825722],[-0.010950867086649,-0.060240343213081,0.0065138493664563]],[[-0.0027676492463797,-0.03674840927124,0.019765749573708],[0.0044836346060038,0.063326731324196,0.035710904747248],[-0.12617807090282,0.025322590023279,0.029391329735518]],[[0.18273313343525,0.11159700900316,-0.23238334059715],[0.077703066170216,0.068945273756981,-0.25673744082451],[0.14900302886963,-0.13763077557087,0.12698404490948]],[[-0.010931484401226,-0.075167410075665,0.0027420299593359],[-0.10143348574638,0.077888935804367,0.021151937544346],[-0.016309287399054,0.023278942331672,-0.074678346514702]],[[0.033669784665108,0.071026705205441,0.16735346615314],[-0.0076103582978249,0.010154343210161,0.03484608232975],[-0.15810269117355,0.057683918625116,-0.031683094799519]],[[-0.11323452740908,-0.13102918863297,-0.10495279729366],[-0.087491370737553,-0.12831369042397,-0.019388128072023],[0.042870059609413,0.0066309827379882,0.1043946146965]],[[-0.059685334563255,-0.011944071389735,0.039399024099112],[-0.038497611880302,0.14195090532303,-0.0020683603361249],[-0.092065066099167,-0.022700190544128,-0.023933190852404]],[[0.18370135128498,0.13248614966869,0.053796797990799],[0.059400256723166,-0.011286149732769,-0.046716384589672],[-0.0022874886635691,0.013143363408744,0.00015638310287613]],[[0.026577657088637,-0.063924916088581,0.037578497081995],[0.034627728164196,0.017936719581485,-0.20418319106102],[0.093311704695225,-0.072089344263077,0.072676226496696]],[[-0.053306557238102,-0.05361009016633,-0.039757806807756],[-0.084542974829674,0.081981547176838,0.056746888905764],[0.13247211277485,-0.13875760138035,-0.22404910624027]],[[0.064127415418625,0.078270494937897,0.093718327581882],[-0.007030020467937,0.0086266752332449,0.054060745984316],[-0.10052654147148,-0.11067329347134,0.1777231991291]],[[0.0086336694657803,0.035028290003538,0.074733719229698],[-0.016877420246601,0.0044859652407467,0.067216396331787],[-0.081703178584576,0.070347279310226,0.073525808751583]],[[0.011796798557043,-0.029307330027223,-0.0504828132689],[-0.045427821576595,-0.039358794689178,-0.026896657422185],[0.10864119231701,-0.095358185470104,-0.0027118218131363]],[[0.05468812957406,0.13775803148746,0.0900719165802],[0.049093250185251,0.18645283579826,-0.012511880137026],[-0.034584723412991,-0.017784610390663,0.028105406090617]],[[-0.0025400521699339,-0.022635901346803,0.0071674264036119],[-0.069465190172195,0.0039535975083709,-0.092955648899078],[-0.0012201712233946,0.042701005935669,0.11630007624626]],[[0.0169169716537,-0.072335124015808,-0.061806373298168],[-0.011862816289067,0.04586286842823,-0.039355028420687],[-0.078238651156425,-0.098145738244057,0.10390819609165]],[[-0.0044573373161256,-0.1052058339119,0.027197696268559],[0.0047549423761666,0.077091157436371,0.058356631547213],[0.032784782350063,-0.032348472625017,0.065789386630058]],[[-0.02328391559422,-0.016304034739733,-0.16762848198414],[0.095749489963055,-0.046247232705355,0.018855400383472],[0.013006718829274,0.025652285665274,0.0092181088402867]],[[-0.0089778024703264,0.026507928967476,-0.036762610077858],[0.017180729657412,0.078560762107372,0.037193037569523],[-0.027179138734937,-0.038487952202559,0.038880504667759]],[[0.36251220107079,-0.12046867609024,0.26592817902565],[-0.17271421849728,0.081561163067818,-0.01681100577116],[0.085558459162712,-0.0068034739233553,-0.095249466598034]],[[-0.083369553089142,-0.07468082010746,-0.14652426540852],[-0.035944346338511,-0.12882627546787,-0.18321593105793],[0.0030537617858499,-0.12156692147255,-0.022136924788356]],[[-0.0071742758154869,0.028615724295378,0.11483155190945],[-0.12403619289398,-0.10410641878843,-0.16716574132442],[-0.069022826850414,-0.13544952869415,-0.13691501319408]],[[-0.065710254013538,-0.082366317510605,-0.10735963284969],[0.072324253618717,-0.14413630962372,0.07441246509552],[-0.0027610552497208,0.006504088640213,-0.041586425155401]],[[0.0028210352174938,0.03285114094615,0.063846930861473],[-0.075230918824673,0.043709494173527,-0.045965015888214],[0.077862843871117,-0.072656646370888,0.0010253981454298]],[[-0.098212189972401,-0.021300528198481,-0.1061977148056],[-0.063478603959084,0.054497625678778,-0.028561111539602],[0.021195752546191,0.14803110063076,0.063357576727867]],[[0.13560344278812,0.066984489560127,-0.14685051143169],[0.11057525128126,-0.11535443365574,-0.12026949971914],[-0.059348706156015,0.11921755969524,-0.042165189981461]],[[0.064007259905338,0.035906594246626,-0.046627283096313],[0.00063934904756024,-0.023187253624201,0.077606230974197],[0.097518362104893,-0.12437220662832,0.15697763860226]],[[0.092362500727177,-0.011075204238296,-0.0045451275072992],[0.01736662723124,-0.19997709989548,-0.071156568825245],[-0.085023485124111,0.011274980381131,0.060583792626858]],[[0.010512078180909,0.028460524976254,0.019850045442581],[0.02182350307703,0.016662027686834,-0.063940204679966],[0.012737534940243,0.041545778512955,-0.025958780199289]],[[-0.29962068796158,-0.14834506809711,-0.033701870590448],[-0.067793749272823,-0.2041043639183,0.045570887625217],[-0.16026009619236,-0.063572309911251,0.028604123741388]],[[0.023518938571215,0.049838028848171,0.071480236947536],[0.0049258316867054,-0.067783683538437,0.03009058535099],[-0.024425685405731,0.011585128493607,-0.049001056700945]],[[0.023001078516245,0.073707684874535,-0.18867006897926],[0.17492792010307,0.047786980867386,0.021055534482002],[0.079411558806896,-0.010767990723252,0.013329948298633]],[[0.0088945757597685,-0.14695307612419,-0.02236327342689],[-0.035603791475296,0.0069054132327437,0.032262086868286],[0.06416118144989,0.041107848286629,-0.12908215820789]],[[0.00027111862436868,0.056931708008051,-0.022440768778324],[-0.10980889201164,-0.12908855080605,0.065687820315361],[0.033478755503893,0.0097547965124249,0.044040322303772]],[[-0.025385158136487,0.013208017684519,-0.038770001381636],[-0.023283353075385,0.047119826078415,-0.04070084169507],[0.024724526330829,0.055914830416441,-0.051072802394629]],[[-0.092237696051598,-0.083001554012299,-0.087124794721603],[-0.063129603862762,0.087817028164864,0.024202113971114],[-0.087470173835754,0.046656429767609,-0.079174220561981]],[[0.033288650214672,0.022858627140522,-0.10251743346453],[0.064770124852657,-0.0046000122092664,0.087500780820847],[0.090846575796604,0.010921631008387,0.041045933961868]],[[0.014951437711716,-0.051486570388079,-0.10986290127039],[-0.086551241576672,-0.030092723667622,0.11731193214655],[0.11452050507069,-0.012198206968606,-0.13799768686295]],[[-0.048232086002827,0.024776637554169,0.041644260287285],[-0.059266280382872,0.046106349676847,-0.058436390012503],[0.021901942789555,-0.034622192382812,0.0048669502139091]],[[-0.11667069792747,-0.17888422310352,-0.063041545450687],[-0.17010043561459,-0.040386971086264,-0.083605729043484],[-0.035968668758869,0.13676722347736,0.039109073579311]],[[-0.066312722861767,0.028839804232121,-0.16490744054317],[0.065138414502144,-0.12081675231457,0.068582892417908],[-0.042222294956446,0.05804617702961,-0.11282201856375]],[[-0.095055155456066,0.046177253127098,0.19226475059986],[-0.14123344421387,0.23810398578644,0.15900330245495],[0.11712973564863,0.21228961646557,-0.055804640054703]],[[0.020408255979419,-0.071490623056889,0.05281250551343],[0.041653204709291,0.014511064626276,-0.043104168027639],[-0.039217993617058,0.017780382186174,-0.060554016381502]],[[-0.0031906068325043,0.077972538769245,-0.033020012080669],[0.048851508647203,-0.094618126749992,-0.16874122619629],[-0.092459425330162,-0.19584235548973,-0.21875821053982]],[[0.0121836271137,-0.017555519938469,-0.019549926742911],[0.0073673999868333,0.02071856148541,0.0089074308052659],[-0.040867436677217,-0.022917237132788,0.10666672885418]],[[0.052062548696995,0.027796845883131,-0.10912687331438],[0.088453717529774,-0.024928929284215,0.042213778942823],[0.009291572496295,-0.065401040017605,0.025030758231878]],[[-0.16733485460281,-0.11046832799911,-0.0030149596277624],[-0.040327433496714,0.0072850002907217,0.13702324032784],[-0.11540380865335,0.018293675035238,0.05865665152669]],[[0.035187710076571,-0.0098253823816776,-0.054449107497931],[-0.0012453220551834,0.013768183998764,0.046808041632175],[-0.017662150785327,-0.041071735322475,0.0050523225218058]],[[0.068217255175114,0.0064424746669829,-0.0065036350861192],[0.031827956438065,-0.02704506739974,-0.0067490446381271],[-0.084533467888832,-0.072256967425346,-0.1697573363781]],[[-0.019160026684403,0.068141207098961,0.15953940153122],[0.071976311504841,0.049257546663284,-0.11900293827057],[-0.032723255455494,0.072372913360596,0.15159480273724]],[[-0.037107992917299,-0.065788589417934,0.10232271254063],[0.031013008207083,-0.013990897685289,-0.0020516121294349],[-0.023566240444779,-0.01995899528265,0.032585401087999]],[[-0.058902382850647,-0.049881510436535,-0.01513094175607],[-0.068542636930943,0.048388827592134,-0.063128255307674],[0.10081011801958,-0.11279877275229,-0.031443178653717]],[[-0.062930501997471,0.016153397038579,0.075842171907425],[0.067346297204494,0.0014870357699692,0.012379471212626],[-0.15267494320869,-0.0012536941794679,-0.066484317183495]],[[0.017468705773354,0.092184878885746,0.067716635763645],[-0.11883932352066,0.15795719623566,-0.10339562594891],[0.059234291315079,0.068918041884899,0.073537357151508]],[[0.096695721149445,0.061803013086319,0.060939460992813],[0.0026951669715345,0.03314695879817,-0.16042146086693],[-0.09425513446331,-0.038130283355713,0.038226902484894]],[[-0.027737583965063,0.00055577541934326,-0.062453627586365],[0.001273809815757,0.0068512824364007,-0.085912644863129],[-0.21870018541813,-0.014881174080074,0.027306390926242]],[[0.01390000898391,-0.08847451210022,-0.057319398969412],[-0.016677986830473,-0.17357312142849,-0.079814419150352],[-0.14663226902485,-0.10916911065578,0.011290802620351]],[[0.0011074190260842,0.14118257164955,0.17746916413307],[0.043435022234917,-0.0046615535393357,0.048957716673613],[-0.033854130655527,-0.041678056120872,0.016314400359988]],[[-0.024388607591391,-0.11873604357243,0.017221743240952],[-0.067085698246956,0.11024471372366,0.099558115005493],[-0.025975029915571,-0.092840671539307,0.02590174973011]],[[0.020210092887282,0.064190573990345,0.05603926628828],[0.018303230404854,0.076196663081646,-0.022610876709223],[0.059212047606707,0.00091407995205373,-0.11489030718803]],[[0.06133421510458,-0.079062826931477,-0.026630403473973],[-0.04090329259634,0.033434018492699,0.095937214791775],[0.11173445731401,0.086563169956207,0.085828222334385]],[[0.14043726027012,0.071255326271057,0.072089336812496],[0.070709258317947,-0.031686797738075,-0.089585244655609],[0.078722387552261,-0.077918857336044,-0.14890091121197]],[[-0.013852274045348,0.079655833542347,0.058278657495975],[-0.063573092222214,0.064138688147068,0.024827448651195],[-0.02774808742106,0.089692257344723,0.050059773027897]],[[0.10740070044994,-0.040463209152222,0.13088104128838],[0.076388075947762,0.12354949861765,-0.15337085723877],[-0.00077979586785659,-0.1282821893692,-0.16520693898201]],[[-0.052788097411394,0.027718732133508,-0.053365468978882],[0.036965079605579,-0.055921372026205,-0.11201079189777],[0.10758000612259,-0.0012220037169755,-0.039375893771648]],[[0.019843135029078,-0.0084501346573234,-0.0085771037265658],[0.061045031994581,-0.17888309061527,-0.02468641102314],[0.00024663002113812,0.092109031975269,0.042801570147276]],[[-0.063438788056374,-0.037564221769571,0.076618060469627],[-0.14140771329403,-0.040645677596331,0.21111139655113],[-0.0091390367597342,0.18609870970249,-0.032073341310024]],[[0.10566277801991,0.0026413071900606,-0.064369231462479],[0.12773491442204,-0.065762080252171,-0.00012058637366863],[0.09285306930542,0.042867578566074,-0.0041851429268718]],[[0.071366362273693,-0.14482846856117,-0.0053447438403964],[0.037758771330118,-0.0075563383288682,-0.11623830348253],[0.042803522199392,-0.012274689041078,-0.018774420022964]],[[-0.10211585462093,-0.097432315349579,-0.0024870852939785],[-0.086229905486107,-0.020607205107808,-0.032023914158344],[-0.097089923918247,-0.024863930419087,-0.056360755115747]],[[-0.059422440826893,0.052204754203558,0.017988638952374],[-0.069609843194485,0.027752306312323,-0.062164701521397],[0.098213396966457,0.080043986439705,0.04758159071207]],[[0.0096705621108413,0.11942659318447,0.042379591614008],[-0.02249169908464,0.12904182076454,-0.023882376030087],[0.034237559884787,0.0081788981333375,0.008887923322618]],[[0.17366851866245,-0.086560450494289,0.12804289162159],[-0.0040023596957326,0.17932692170143,-0.19630636274815],[0.0026231410447508,0.041537269949913,0.077291361987591]],[[-0.005271440371871,0.066483475267887,-0.046076744794846],[-0.10904301702976,-0.037963002920151,-0.082637593150139],[-0.029473828151822,0.035016629844904,0.022844862192869]],[[-0.049570932984352,0.0067963316105306,0.17006315290928],[0.043456707149744,-0.0018620559712872,-0.09177166223526],[-0.067301444709301,0.067733876407146,-0.10769732296467]],[[-0.049845196306705,0.015360576100647,-0.036351814866066],[-0.03123489767313,-0.12940146028996,0.040523171424866],[-0.20949250459671,-0.12107061594725,-0.21808987855911]],[[0.04272723197937,0.029278971254826,0.092275597155094],[0.12132558971643,0.13473330438137,0.17370946705341],[0.054754547774792,0.027981733903289,0.054794002324343]],[[0.1585463732481,0.11233413219452,-0.028024127706885],[0.0060803522355855,-0.1605229228735,0.039820268750191],[0.0022920812480152,0.039051577448845,0.026014626026154]],[[-0.022418951615691,-0.054290328174829,0.0078222202137113],[0.060696870088577,0.039134986698627,-0.016415668651462],[0.0017288983799517,-0.0058393515646458,-0.032393116503954]],[[-0.0046053407713771,-0.032001435756683,0.011222395114601],[-0.10496983677149,-0.11602775007486,-0.00027040473651141],[-0.11670710146427,0.057843755930662,0.12136244773865]],[[-0.044800203293562,0.054443396627903,-0.02110960893333],[0.11776362359524,-0.048280466347933,-0.15276257693768],[0.099932551383972,0.022956570610404,-0.032463740557432]],[[0.10336460918188,0.051341488957405,0.058621495962143],[0.026342626661062,0.051059376448393,-0.11099297553301],[0.037166148424149,-0.034963700920343,-0.068065881729126]],[[0.1026765704155,0.033577337861061,0.054273098707199],[0.018638851121068,-0.031363394111395,0.095099650323391],[-0.084292232990265,0.02383872680366,0.035306442528963]],[[-0.13511411845684,-0.032414872199297,-0.016021000221372],[-0.022633051499724,0.0078896265476942,-0.096691332757473],[0.042569663375616,0.090130127966404,0.18489466607571]],[[0.070946231484413,-0.031095173209906,-0.025648316368461],[0.040452338755131,0.01566369831562,0.01276814006269],[-0.0042942445725203,-0.0046158223412931,-0.011552391573787]],[[0.13725563883781,0.073877044022083,0.10476812720299],[0.08584688603878,-0.015311190858483,0.015292624942958],[-0.024448223412037,-0.047922618687153,-0.18173426389694]],[[-0.087939530611038,-0.085372999310493,-0.050606045871973],[0.030682347714901,0.12417128682137,0.055953472852707],[-0.061078779399395,-0.086896933615208,-0.044157523661852]],[[0.034724351018667,0.015703858807683,-0.049912482500076],[-0.029516903683543,0.02813064865768,0.04199929907918],[-0.24123957753181,0.18779468536377,0.049188248813152]],[[0.0076140561141074,0.075099542737007,0.13547475636005],[0.060729097574949,0.065527573227882,0.10064050555229],[0.045475646853447,-0.04008412733674,-0.025788728147745]],[[-0.10360591858625,-0.019379315897822,-0.015592432580888],[-0.028064819052815,0.10547112673521,-0.010817888192832],[-0.13386160135269,0.1214834600687,-0.0043804198503494]],[[-0.089552074670792,0.063372477889061,0.16797883808613],[-0.032920747995377,-0.061091437935829,0.11088670790195],[0.16008128225803,0.014632191509008,0.0042667905800045]],[[0.13893823325634,0.076098307967186,-0.010431995615363],[-0.16128630936146,-0.024537168443203,0.028151152655482],[0.14715513586998,-0.01665697619319,-0.075910940766335]],[[-0.021530961617827,-0.0070806429721415,0.16432802379131],[0.089750587940216,-0.0084082819521427,0.061399798840284],[-0.0029123327694833,0.079528741538525,0.01362057775259]],[[0.054399788379669,-0.065810069441795,-0.097625851631165],[-0.0075887446291745,0.065383099019527,-0.046942289918661],[-0.013232364319265,0.035755265504122,0.024729592725635]],[[0.093589253723621,-0.13993208110332,0.037093225866556],[-0.222860917449,0.14882987737656,-0.14716197550297],[0.17799715697765,-0.21365855634212,0.11651965230703]],[[0.1072713136673,0.23637808859348,0.11948238313198],[0.14480911195278,0.12623761594296,-0.027623075991869],[0.099363297224045,0.00052559550385922,0.095615603029728]],[[-0.079898647964001,0.066428355872631,0.055226679891348],[-0.14054258167744,-0.045102212578058,0.065461307764053],[0.02237556502223,-0.034173060208559,-0.0008879845845513]],[[-0.056680824607611,-0.023874485865235,0.04793257266283],[-0.010837100446224,0.25305762887001,0.18829703330994],[0.062179904431105,0.11954287439585,-0.11194621026516]],[[0.068519614636898,-0.024897675961256,-0.11064528673887],[0.029848484322429,0.023756267502904,0.034735403954983],[-0.032011434435844,0.063192747533321,-0.090458795428276]],[[0.014565827324986,0.086240768432617,0.1055593341589],[-0.0046731759794056,-0.10803905874491,-0.02732022292912],[-0.0039069280028343,0.022632448002696,-0.023466508835554]],[[0.14121150970459,-0.087127216160297,0.1531545817852],[0.0038825569208711,-0.088780410587788,0.14536461234093],[-0.11502783745527,-0.024465685710311,0.063622891902924]],[[-0.062755763530731,0.0025338206905872,0.062447596341372],[0.03283878415823,0.011370188556612,0.16188043355942],[-0.046061381697655,-0.0098513923585415,0.10597860068083]],[[0.028223430737853,0.015631087124348,-0.1085923537612],[0.096204005181789,-0.032694708555937,0.022771768271923],[-0.017401212826371,0.0050356788560748,-0.011547774076462]],[[-0.19958198070526,0.076019540429115,-0.11227009445429],[0.059556007385254,-0.088725127279758,-0.0068985973484814],[-0.012855973094702,0.0088401660323143,0.080539137125015]],[[-0.017915142700076,0.057127736508846,-0.0431137830019],[-0.0094060366973281,0.020027872174978,-0.04211138188839],[0.020210452377796,0.020907886326313,0.019432267174125]],[[0.054309364408255,-0.022397324442863,-0.03395427390933],[-0.037423938512802,-0.043407630175352,0.032743617892265],[-0.068534918129444,0.016299759969115,0.046947155147791]],[[-0.16281943023205,-0.013670161366463,-0.06020025536418],[-0.077811390161514,0.015406768769026,-0.10945465415716],[-0.13897655904293,-0.11421723663807,-0.074120856821537]],[[0.019800404086709,-0.020357379689813,-0.18137922883034],[0.015204223804176,0.049069672822952,0.071743465960026],[0.03221258148551,-0.057400867342949,-0.038239318877459]],[[-0.14198653399944,0.025491716340184,-0.030281756073236],[-0.040521010756493,-0.05464019626379,0.013056189753115],[0.010624312795699,0.13226330280304,0.014054494909942]],[[-0.040032170712948,-0.014285271987319,0.056068483740091],[0.0039829183369875,-0.056737769395113,-0.097161792218685],[0.040765229612589,0.029916575178504,-0.018412288278341]],[[0.04906890168786,-0.10200102627277,0.020243767648935],[0.023708933964372,-0.086541093885899,0.040747672319412],[0.025933038443327,0.023942936211824,-0.00092691177269444]],[[-0.097187168896198,0.05745779722929,-0.067747183144093],[-0.12085577100515,0.015629947185516,-0.054323319345713],[-0.095632866024971,0.026595329865813,-0.073607370257378]],[[0.011162934824824,0.044356673955917,-0.048973690718412],[0.033628806471825,0.10659443587065,-0.026021745055914],[0.033088132739067,0.076962873339653,-0.024112798273563]],[[-0.047552466392517,-0.041627168655396,0.0096200192347169],[-0.080096408724785,-0.020706489682198,-0.015055359341204],[-0.074179388582706,0.018614934757352,0.12373016774654]],[[0.072066098451614,0.16271075606346,0.084732785820961],[0.10558771342039,-0.057755190879107,-0.0039168964140117],[-0.031493537127972,-0.038356993347406,-0.13926365971565]],[[0.097314193844795,-0.070409364998341,0.0048694969154894],[-0.061402194201946,-0.052743665874004,-0.14153759181499],[-0.046240296214819,-0.088799692690372,-0.05331764370203]],[[-0.050889071077108,-0.0030180353205651,-0.076116301119328],[-0.09472843259573,0.025888023898005,0.10720309615135],[0.026905277743936,0.17057791352272,0.10978317260742]],[[-0.012966372072697,-0.10648634284735,0.00266630994156],[0.010901696048677,-0.22176690399647,0.01593860052526],[-0.0091732032597065,-0.10034091770649,0.081413887441158]],[[-0.11393304169178,0.041844483464956,-0.10366731137037],[-0.0071352496743202,0.095984905958176,-0.02907838113606],[0.073930978775024,0.080300763249397,-0.11504112184048]],[[0.069276928901672,-0.0081695085391402,0.0035385051742196],[0.071593187749386,-0.042412977665663,0.058821689337492],[-0.028949145227671,0.11102639138699,0.05045223981142]],[[-0.0069008180871606,0.071510963141918,0.05692108348012],[-0.026249973103404,-0.095509268343449,-0.04737227037549],[-0.040696162730455,-0.020646201446652,0.018059680238366]],[[0.1236519291997,0.011792700737715,-0.14717763662338],[0.068417094647884,0.022314894944429,0.028495356440544],[0.12841632962227,0.023502992466092,0.0041916752234101]],[[0.021312950178981,-0.0018498547142372,-0.15216068923473],[-0.075602680444717,-0.017867999151349,0.22633844614029],[-0.088237881660461,0.054675195366144,-0.14428186416626]]],[[[-0.079159639775753,0.018304543569684,-0.011873597279191],[-0.0051750116981566,0.060139931738377,-0.034540168941021],[-0.043168488889933,-0.043809477239847,0.0067386953160167]],[[0.005124356597662,0.053782530128956,0.0036621592007577],[-0.073789693415165,0.043157659471035,0.0083108814433217],[0.043745219707489,0.017324209213257,0.039298195391893]],[[-0.009412718936801,0.0025660279206932,0.00322859082371],[-0.0088215563446283,0.027962313964963,0.045545056462288],[0.038668401539326,0.022296575829387,0.071593225002289]],[[0.059083204716444,-0.040865957736969,0.059393860399723],[0.0021761467214674,-0.024864109233022,-0.046115897595882],[-0.070029698312283,0.034501854330301,0.054643154144287]],[[-0.065785698592663,0.011755472049117,0.017677633091807],[0.014599815011024,0.053707156330347,0.0024394900538027],[-0.059867158532143,-0.066964209079742,-0.037966419011354]],[[0.088955283164978,0.011803326196969,0.006870161741972],[7.6887372415513e-05,0.017961191013455,0.036941472440958],[-0.026783972978592,-0.0070577953010798,-0.07439499348402]],[[0.030580351129174,-0.0054233181290329,0.085054092109203],[-0.0027954841498286,-0.016726614907384,-0.0082500763237476],[-0.051694296300411,-0.017842881381512,0.044493366032839]],[[0.085298635065556,0.046052727848291,0.00065908668329939],[0.036887858062983,0.027299787849188,-0.02744604088366],[0.0041121845133603,-0.0095588555559516,0.040454220026731]],[[0.056628812104464,0.033838957548141,-0.023372007533908],[-0.049979720264673,-0.13279922306538,-0.02630627900362],[0.04853306338191,-0.00040636127232574,-0.0081267980858684]],[[-0.025166181847453,-0.048055876046419,0.099712923169136],[0.012851435691118,-0.014454088173807,-0.011633602902293],[-0.011397067457438,-0.032482832670212,0.061570458114147]],[[-0.015003402717412,0.020886337384582,-0.05087324231863],[0.043467681854963,0.076268278062344,0.012595481239259],[-0.0269342251122,-0.0019864856731147,0.014689638279378]],[[-0.047287240624428,0.00042011693585664,-0.046090416610241],[-0.021642940118909,0.012383412569761,0.033247403800488],[0.0075585981830955,0.050165057182312,-0.11787809431553]],[[0.11293712258339,0.087202697992325,-0.016106197610497],[-0.0062108687125146,-0.017308484762907,-0.028904879465699],[0.070777855813503,0.03560758382082,-0.028599420562387]],[[0.11388652026653,0.028865847736597,0.0065644457936287],[0.023510672152042,0.031104471534491,0.017350537702441],[0.029757061973214,-0.038861278444529,0.03709451854229]],[[-0.045545145869255,0.026482725515962,0.031211523339152],[0.054825995117426,-0.060755666345358,-0.021445164456964],[-0.015487202443182,-0.0075294706039131,-0.0083849672228098]],[[-0.041328672319651,-0.013933123089373,0.02295171841979],[0.012909648008645,-0.0032426675315946,-0.013090918771923],[0.045867171138525,-0.032698936760426,0.038634933531284]],[[-0.042961504310369,0.0090770069509745,0.041560515761375],[-0.00406350241974,0.033509783446789,-0.026503713801503],[0.0088456617668271,-0.028749605640769,0.0089953532442451]],[[-0.014352823607624,-0.026067301630974,-0.046474173665047],[0.00870256498456,0.090002708137035,0.047083243727684],[-0.0055076442658901,-0.052351474761963,-0.0099994605407119]],[[-0.0018390255281702,0.022326750680804,0.0081327026709914],[0.064131565392017,0.027661330997944,-0.021540498360991],[-0.039448574185371,0.12636281549931,0.049091190099716]],[[-0.0030973306857049,0.03213720023632,0.026059640571475],[-0.011791958473623,-0.004560065921396,0.0044695036485791],[-0.029941754415631,-0.012030157260597,0.017786668613553]],[[0.011265324428678,0.029032539576292,-0.094305880367756],[-0.0029467414133251,0.010698179714382,-0.040567137300968],[-0.064627438783646,-0.0049924291670322,-0.036658309400082]],[[-0.0013930663699284,0.14068709313869,-0.0041784634813666],[-0.0027246007230133,0.0066198762506247,0.019231367856264],[0.036410227417946,-0.071478441357613,0.043028559535742]],[[0.08712412416935,-0.034967128187418,-0.044456779956818],[0.02612205222249,-0.029199881479144,0.057348120957613],[-0.056145146489143,-0.037149008363485,-0.04112720489502]],[[-0.030599212273955,-0.026910679414868,0.0078735034912825],[0.058774963021278,-0.013464463874698,0.0069327233359218],[-0.016628529876471,0.06414157897234,0.015081027522683]],[[-0.018789622932673,0.035937089473009,-0.14334474503994],[-0.066067039966583,-0.01312046404928,0.098387710750103],[0.044275145977736,-0.028997931629419,0.021162336692214]],[[0.034428182989359,0.026182923465967,0.00018272150191478],[-0.089893691241741,-0.070848286151886,0.10682599246502],[0.028264841064811,-0.083542682230473,-0.019892213866115]],[[-0.084670297801495,-0.0016801696037874,-0.072783179581165],[0.046212375164032,0.018915122374892,0.007195689715445],[0.066399052739143,-0.027011681348085,0.065440595149994]],[[-0.041933666914701,-0.0055903689935803,0.0554194226861],[0.051532186567783,0.013685308396816,0.025459993630648],[0.055248774588108,-0.0042873173952103,-0.013366815634072]],[[0.00067836232483387,-0.033662367612123,-0.029736924916506],[-0.041910778731108,-0.066510945558548,-0.05806976929307],[-0.0019545252434909,0.048662561923265,0.0045123137533665]],[[-0.07121903449297,-0.06732489168644,0.013857297599316],[-0.079277992248535,0.044147785753012,0.029682476073503],[-0.046106997877359,-0.052585422992706,0.0079839937388897]],[[0.0022763011511415,-0.035087630152702,0.031639728695154],[0.041171826422215,-0.0244749058038,-0.0090515064075589],[-0.039213668555021,0.024884823709726,0.00039030378684402]],[[0.019872123375535,-0.0099598821252584,-0.029436647891998],[-0.013575739227235,0.015911161899567,0.023239348083735],[0.060169622302055,0.042293313890696,-0.063653074204922]],[[0.037511263042688,-0.025765553116798,-0.0059469346888363],[-0.046785589307547,-0.010615859180689,-0.029342548921704],[-0.012771994806826,-0.043847054243088,0.075433701276779]],[[0.016976974904537,-0.05306737869978,-0.038162272423506],[0.025522140786052,0.07340357452631,0.029834289103746],[0.059375446289778,0.0099480003118515,0.014866374433041]],[[-0.026735471561551,-0.038397692143917,0.065090008080006],[0.069182313978672,0.062467206269503,0.0083855148404837],[0.0031542787328362,0.072667583823204,-0.012623202055693]],[[-0.069578804075718,-0.0066976076923311,0.02604241296649],[0.043642971664667,0.081548362970352,0.048653703182936],[0.010810001753271,0.0020084171555936,0.0047876290045679]],[[-0.052892744541168,-0.012842307798564,0.041127793490887],[0.069805614650249,0.054391894489527,0.0058921785093844],[0.010262636467814,-0.030199924483895,-0.054830402135849]],[[-0.022461835294962,-0.041738130152225,0.024256283417344],[0.015927080065012,0.018033901229501,0.023232828825712],[-0.03151336684823,0.037604715675116,0.11002371460199]],[[0.078995563089848,-0.035736616700888,0.028119115158916],[-0.026697648689151,0.086290761828423,0.0013899066252634],[-0.075897172093391,0.011752930469811,-0.08063643425703]],[[0.023456806316972,0.099937297403812,0.0041749412193894],[0.049872923642397,-0.028739785775542,0.026297781616449],[0.0028160852380097,-0.058020263910294,0.028572974726558]],[[-0.030639754608274,-0.0054827793501318,-0.024882555007935],[0.025510773062706,-0.074818670749664,-0.02547824382782],[-0.034552536904812,0.048908580094576,-0.028363818302751]],[[-0.050939451903105,0.050392329692841,0.064125210046768],[0.0086336685344577,-0.037686012685299,0.053977224975824],[0.018253291025758,0.029563179239631,0.016092991456389]],[[0.079503387212753,0.020774880424142,-0.042537212371826],[-0.056708037853241,0.11510536074638,0.097584821283817],[-0.0088126389309764,-0.080070324242115,0.023939330130816]],[[0.08590692281723,0.03980628401041,-0.027650162577629],[0.033361561596394,-0.034138090908527,-0.0550237596035],[0.066249571740627,-0.016195576637983,0.0064013265073299]],[[-0.09839078783989,0.050146117806435,0.028122568503022],[0.021691389381886,0.034235954284668,0.0072821630164981],[-0.029029909521341,0.038048356771469,0.058343134820461]],[[-0.010095928795636,0.0023962978739291,-0.045311894267797],[0.021875774487853,-0.0052081728354096,0.018182042986155],[0.024440076202154,0.11651884019375,0.043025698512793]],[[0.010216671973467,-0.019067797809839,-0.0053502758964896],[0.051984701305628,0.0338383205235,-0.047122456133366],[0.0029538413509727,0.049379654228687,0.001980310305953]],[[0.010872583836317,-0.018477229401469,-0.025587109848857],[0.090356804430485,-0.075821362435818,-0.077895604074001],[0.068360462784767,-0.068446330726147,0.029794041067362]],[[-0.010403675958514,-0.03272783011198,-0.084495738148689],[0.02056491188705,-0.035413835197687,0.025675678625703],[-0.044290736317635,-0.0014981272397563,-0.020448062568903]],[[-0.00079981901217252,-0.014040224254131,0.058913074433804],[-0.028631499037147,-0.070464834570885,0.0099205560982227],[-0.019959684461355,-0.045871734619141,0.031381618231535]],[[-0.0086991544812918,0.10165726393461,-0.0091560482978821],[0.0016408069059253,0.046487227082253,-0.004267246928066],[0.10057902336121,-0.015838507562876,-0.096090652048588]],[[0.038144491612911,-0.028900433331728,-0.043828915804625],[0.060286823660135,-0.0225276555866,0.031129684299231],[0.039055828005075,-0.0052704513072968,-0.06881333142519]],[[-0.037495821714401,0.043551545590162,-0.056154258549213],[-0.079581044614315,-0.023079104721546,0.016163157299161],[-0.06259261071682,0.0024216684978455,-0.071183070540428]],[[0.044288240373135,0.013239501044154,-0.019719379022717],[0.069854624569416,0.0097247548401356,0.055772319436073],[-0.049049757421017,0.084883786737919,0.069388851523399]],[[-0.0055802008137107,-0.044395130127668,0.010775794275105],[-0.11905996501446,0.035340219736099,-0.013086222112179],[0.034986026585102,-0.036856830120087,-0.055323105305433]],[[0.049988139420748,0.015149195678532,-0.055091198533773],[0.071245796978474,0.03545293956995,-0.053541082888842],[0.006955030374229,0.065111473202705,-0.030732646584511]],[[-0.051082666963339,0.053665161132812,-0.022320527583361],[0.0037814131937921,0.017083682119846,-0.04674906283617],[0.030635120347142,0.028360398486257,0.012411762960255]],[[-0.04063143581152,-0.094025023281574,-0.05519525706768],[0.0049609798006713,0.042156919836998,-0.014923223294318],[0.065310396254063,0.057649090886116,0.074183091521263]],[[0.0038188425824046,0.023107981309295,-0.029274998232722],[-0.07089301943779,-0.017227133736014,-0.068457469344139],[0.00015228377014864,-0.04729039222002,0.043872699141502]],[[0.0023376003373414,0.044254820793867,0.021597990766168],[0.0080197574570775,-0.028916791081429,0.01409434620291],[0.012351249344647,-0.01631847396493,-0.047242771834135]],[[0.047700047492981,-0.019382651895285,-0.012106728740036],[-0.022789940237999,-0.04070508107543,-0.049603454768658],[-0.036790505051613,-0.033128995448351,-0.013157390058041]],[[-0.018355060368776,-0.025543972849846,-0.020172262564301],[-0.0035833253059536,-0.021789059042931,-0.008250686340034],[-0.062804937362671,-0.078026458621025,-0.073752395808697]],[[-0.033355228602886,0.017865151166916,0.017526203766465],[-0.038896385580301,0.025412648916245,0.074605450034142],[-0.021806813776493,-0.010428508743644,-0.040117178112268]],[[-0.017457975074649,0.052291598170996,-0.049790870398283],[0.0021725445985794,-0.062586314976215,-0.020609021186829],[0.041593488305807,-0.022395309060812,0.028741128742695]],[[0.093682534992695,-0.035141356289387,-0.04040265083313],[-0.011736674234271,-0.021231362596154,0.081163793802261],[0.0052293781191111,0.027578197419643,-0.032214529812336]],[[0.039778407663107,0.035545285791159,0.14117221534252],[-0.008106485940516,0.016229417175055,0.086192265152931],[-0.017447285354137,-0.0057579460553825,0.11645223200321]],[[0.095958977937698,0.015354341827333,0.014136399142444],[0.018780622631311,-0.044154606759548,0.026066133752465],[0.074039824306965,0.028167802840471,0.014831271022558]],[[-0.076991640031338,0.017599767073989,0.011206445284188],[-0.0044823074713349,-0.0090133044868708,-0.022501930594444],[-0.031190766021609,0.043045919388533,0.030932603403926]],[[-0.034104485064745,-0.038670551031828,-0.024467080831528],[-0.0013806323986501,-0.0032528673764318,0.036307532340288],[0.024678006768227,-0.034454330801964,0.0718634724617]],[[0.014822983182967,0.05685818195343,-0.033635620027781],[0.013424695469439,0.054235402494669,-0.011686157435179],[-0.0058119930326939,0.0071251634508371,-0.0026057108771056]],[[0.07546741515398,0.049844842404127,0.010713636875153],[-0.060194239020348,-0.028877038508654,0.039379172027111],[-0.06349640339613,0.066033273935318,0.032447837293148]],[[-0.004809323232621,0.043362785130739,-0.036578219383955],[-0.041816722601652,0.0037907501682639,-0.018452022224665],[0.058896359056234,-0.011576725170016,-0.0019692140631378]],[[-0.02932958304882,-0.033581003546715,0.039078094065189],[0.0079623330384493,-0.069274246692657,-0.029340436682105],[0.0077312057837844,0.065029002726078,-0.063377112150192]],[[0.010398482903838,0.058327127248049,-0.069578483700752],[-0.0083517646417022,-0.013736427761614,-0.0046514514833689],[0.034705128520727,-0.017171420156956,-0.010959926992655]],[[-0.018138132989407,-0.0024629416875541,-0.038509156554937],[0.037735600024462,0.016608254984021,0.03605629503727],[0.0063034663908184,-0.0056124543771148,0.049321446567774]],[[0.00015983010234777,0.024157440289855,0.012757829390466],[0.093874998390675,0.061025410890579,-0.0083165634423494],[-0.015859058126807,0.025610286742449,0.089776545763016]],[[0.082057550549507,0.023260533809662,-0.026034519076347],[-0.074815586209297,-0.10226075351238,-0.013386775739491],[-0.05240385979414,-0.01652810908854,-0.028597535565495]],[[-0.056548420339823,0.079114519059658,0.039965130388737],[0.0045525748282671,0.16935223340988,0.12214523553848],[0.042539030313492,-0.00069993874058127,-0.010242020711303]],[[0.015005200169981,0.0015399567782879,-0.024135481566191],[0.086432591080666,0.090254679322243,0.026185858994722],[0.010620466433465,-0.015334744937718,0.044431291520596]],[[0.041938867419958,-0.0030183403287083,0.050808183848858],[0.061978723853827,-0.0039686192758381,0.041119083762169],[0.026672426611185,0.0072220326401293,-0.028567431494594]],[[0.020292993634939,-0.04294415563345,0.039687316864729],[-0.013265457004309,0.042684204876423,0.081242024898529],[0.00054737669415772,-0.072737745940685,0.015920873731375]],[[0.10243766009808,-0.015288182534277,0.039497371762991],[0.012390191666782,-0.035514742136002,0.092182606458664],[-0.068382725119591,0.01122547313571,0.035661108791828]],[[-0.12448154389858,0.0039994148537517,-0.0087146665900946],[-0.067866541445255,0.02536179497838,0.069589734077454],[-0.062521554529667,0.031937230378389,-0.032224345952272]],[[0.062830895185471,0.0097328629344702,0.087137781083584],[-0.008204223588109,0.025191115215421,0.044432263821363],[-0.062309235334396,0.047672752290964,-0.0089162699878216]],[[-0.0013605827698484,-0.045546341687441,0.026008281856775],[-0.062563426792622,0.078583225607872,0.10373257100582],[0.0041146348230541,0.023552106693387,0.0030324680265039]],[[0.097935825586319,-0.019195199012756,0.019297372549772],[-0.023053381592035,0.040428828448057,0.022578991949558],[0.013069281354547,-0.035338092595339,-0.03951034322381]],[[0.032801732420921,0.0071849105879664,0.029923742637038],[0.028942193835974,0.11263235658407,0.014524487778544],[-0.0036234937142581,0.017695739865303,0.031335741281509]],[[0.02866811864078,0.044739603996277,0.091043882071972],[-0.016203356906772,0.078735418617725,0.069810263812542],[-0.042327839881182,-0.062492728233337,0.027597829699516]],[[0.0056455619633198,0.14377787709236,-0.018163239583373],[0.0090084951370955,0.078745737671852,-0.029189120978117],[0.075209721922874,-0.032141953706741,0.11007633805275]],[[-0.022253347560763,0.051899582147598,0.0069896350614727],[0.0028978111222386,0.071881495416164,-0.018949758261442],[0.022876156494021,0.034285373985767,0.026464052498341]],[[-0.05860872939229,0.086519911885262,0.044578161090612],[-0.049638878554106,-0.016356844455004,0.035708706825972],[0.03424035012722,-0.029844332486391,0.028463331982493]],[[0.013397379778326,-0.017685245722532,-0.057577021420002],[0.079825915396214,0.011014704592526,0.039020631462336],[-0.035496659576893,-0.0040050162933767,0.031557768583298]],[[0.039672244340181,0.009920041076839,0.0091486489400268],[0.03483447059989,0.016238572075963,0.049652609974146],[-0.041128221899271,0.020377324894071,-0.0067378631792963]],[[0.012416314333677,-0.011456156149507,-0.0088443690910935],[0.044553145766258,0.065052516758442,-0.017904276028275],[0.061115615069866,-0.054417595267296,-0.0065583004616201]],[[0.027285322546959,0.011225821450353,-0.071925960481167],[0.060434859246016,-0.023441694676876,-0.043651230633259],[0.012190632522106,0.0076354285702109,0.020914666354656]],[[-0.0044623925350606,0.053100243210793,-0.072620399296284],[0.04145198687911,0.021470762789249,0.03740768134594],[0.059578120708466,0.050483971834183,-0.051629610359669]],[[0.094244621694088,0.044877640902996,-0.012862974777818],[0.035349443554878,-0.01655462756753,0.0032183616422117],[0.0024688332341611,0.016266867518425,0.0068845860660076]],[[0.048275854438543,-0.043601773679256,0.030773121863604],[-0.052183885127306,-0.07648877799511,0.0071924184449017],[0.035748790949583,0.06425216794014,0.043897390365601]],[[0.051794167608023,-0.039096780121326,-0.066793940961361],[0.030652165412903,0.0080682439729571,0.012045818381011],[-0.00059264962328598,0.0021353384945542,0.016856478527188]],[[0.038888178765774,0.0066683641634881,0.0082210134714842],[-0.073915041983128,0.090348176658154,-0.01138062030077],[0.0052957651205361,-0.010833547450602,0.027562502771616]],[[-0.014127926900983,0.061650980263948,-0.020353171974421],[0.06106486544013,0.028225811198354,0.064710400998592],[0.022746847942472,0.0022638549562544,0.054599154740572]],[[-0.012707307003438,-0.056532576680183,-0.0962018892169],[-0.032539408653975,-0.035110510885715,0.0048543028533459],[-0.07398846000433,-0.0019573515746742,-0.059200018644333]],[[-0.024508966132998,0.0059889508411288,-0.068276576697826],[-0.004114952404052,-0.042704407125711,0.051510773599148],[0.040691416710615,0.027546776458621,-0.013283574022353]],[[-0.073087207973003,-0.038211070001125,0.023703187704086],[-0.045634649693966,0.0013201080728322,-0.057787071913481],[0.027668425813317,-0.070606127381325,-0.015431667678058]],[[0.0026736008003354,0.062688708305359,0.0032030984293669],[0.059043515473604,0.073315188288689,0.065565824508667],[0.013129668310285,0.030519718304276,0.015350523404777]],[[0.026428952813148,0.093461193144321,0.0059638521634042],[-0.018410738557577,-0.0080320537090302,-0.032917659729719],[0.014427546411753,0.042936500161886,0.014962121844292]],[[0.067583546042442,0.054256811738014,0.034774415194988],[0.0065552708692849,0.0046929637901485,0.069551683962345],[0.069473832845688,0.0062312819063663,0.094174109399319]],[[-0.036538951098919,0.035629697144032,0.074499987065792],[0.019058883190155,-0.013384892605245,0.042579434812069],[0.026636889204383,0.015156275592744,0.021317945793271]],[[-0.0050873924046755,0.047712717205286,-0.0014198947465047],[0.083557836711407,-0.12004088610411,0.022718304768205],[0.02457008883357,-0.072831653058529,-0.036458920687437]],[[-0.0015958037693053,0.05278642848134,-0.028417348861694],[0.084930524230003,0.054618287831545,0.043508909642696],[-0.020002100616693,0.012596985325217,-0.11001861840487]],[[0.022330611944199,0.0069398796185851,0.010269636288285],[-0.02761579118669,0.017693085595965,-0.020484030246735],[-0.024633964523673,-0.037587713450193,0.06402326375246]],[[-0.047202218323946,-0.035502664744854,-0.056894648820162],[-0.023553734645247,0.017252339050174,0.06987189501524],[0.0066902246326208,0.003529173322022,0.062018021941185]],[[0.011272157542408,0.016837818548083,0.068000487983227],[0.034634552896023,-0.074741579592228,-0.093281522393227],[0.016536502167583,-0.075011909008026,-0.039522401988506]],[[0.042257603257895,0.011313188821077,-0.10589350014925],[-0.025344233959913,-0.055286563932896,-0.052791070193052],[-0.047131426632404,0.034975625574589,0.017426453530788]],[[0.0065009570680559,-0.010555190034211,0.0074027804657817],[-0.034955058246851,-0.020607303828001,0.0046753222122788],[0.071486435830593,-0.0011792172444984,0.017214316874743]],[[0.046249784529209,-0.010933234356344,0.03099294193089],[0.017620325088501,0.0096460925415158,0.053183525800705],[-0.030911210924387,0.0038196013774723,-0.122752584517]],[[-0.06873544305563,0.045173145830631,0.013063747435808],[0.028692318126559,0.0012894461397082,-0.0082986056804657],[-0.04634740203619,0.040232542902231,-0.024691523984075]],[[-0.051724418997765,0.014194261282682,0.0053839730098844],[-0.027810813859105,-0.041969638317823,-0.031327493488789],[-0.03437128290534,-0.073886223137379,0.0047241877764463]],[[-0.051795814186335,-0.062713705003262,-0.021208208054304],[-0.13769407570362,-0.056143939495087,-0.0020473268814385],[-0.027609262615442,0.054885286837816,0.071940578520298]],[[0.042082604020834,0.028609624132514,0.088181838393211],[0.032850790768862,-0.05128675699234,0.055191978812218],[0.036920059472322,-0.030583068728447,0.04542651027441]],[[-0.081480629742146,0.033932067453861,-0.0024898673873395],[-0.047790125012398,-0.005353738553822,-0.05773688852787],[-0.056836351752281,-0.049051810055971,0.0054976465180516]],[[-0.10016630589962,-0.0019341956358403,0.029752152040601],[-0.013344136998057,-0.023320313543081,-0.016182785853744],[0.048982545733452,0.047200664877892,-0.05280078202486]],[[0.044865287840366,-0.010109421797097,-0.013698477298021],[0.07607801258564,0.035976145416498,-0.044522006064653],[0.0052472837269306,-0.058975834399462,-0.01146246958524]],[[0.06156949698925,-0.055497150868177,-0.010354712605476],[-0.078163824975491,0.033771403133869,0.012602098286152],[0.066229216754436,0.014613168314099,-0.015762029215693]],[[-0.010637794621289,0.0092021282762289,0.036455970257521],[0.0078135374933481,-0.03392917662859,-0.0024454512167722],[0.022483490407467,0.013390095904469,0.026358189061284]],[[-0.0080557717010379,-0.009514844045043,0.039286445826292],[0.077026650309563,0.0073620500043035,0.011545104905963],[0.038326021283865,-0.078138902783394,0.004387691617012]],[[0.061645366251469,-0.036078993231058,0.058897566050291],[0.020392697304487,-0.012555353343487,-0.092321678996086],[-0.037680458277464,0.0372504144907,0.09004245698452]],[[-0.0070357345975935,-0.096016615629196,-0.040323249995708],[0.0015304220141843,0.065192654728889,-0.062639147043228],[0.0017144024604931,-0.065401673316956,-0.0065649072639644]]],[[[-0.040834069252014,-0.031987529247999,0.031350161880255],[-0.029064850881696,0.023098016157746,0.063372269272804],[-0.025470526888967,0.025162955746055,0.072365380823612]],[[-0.0018871739739552,0.050854243338108,0.00082228699466214],[-0.036839842796326,-0.015907801687717,-0.0062977047637105],[0.06108395382762,0.018906157463789,0.065516240894794]],[[0.0071385311894119,0.025736089795828,0.056862991303205],[-0.018530387431383,0.033435579389334,0.051396645605564],[0.087760359048843,0.053590908646584,-0.017828494310379]],[[-0.0081438301131129,-0.068180337548256,-0.0026065532583743],[-0.067499928176403,0.032359909266233,-0.032017197459936],[0.065715327858925,0.016423031687737,0.054959986358881]],[[0.0093392431735992,-0.072873167693615,0.047639235854149],[-0.040468789637089,-0.042047154158354,-0.10081975162029],[-0.016552643850446,-0.01952900364995,-0.0334860868752]],[[0.031024729833007,0.027463585138321,-0.045146536082029],[-0.015525954775512,-0.012378703802824,0.039857599884272],[0.013428089208901,0.04984275251627,0.04193776473403]],[[-0.08577673882246,-0.022620784118772,0.021278657019138],[0.038363222032785,-0.060928072780371,0.014665568247437],[-0.037281803786755,-0.019301554188132,-0.023324321955442]],[[0.060816187411547,0.046190991997719,0.035619597882032],[-0.0045331851579249,0.051570676267147,-0.023357901722193],[0.028413141146302,-0.0028570096474141,0.025163849815726]],[[-0.033157963305712,-0.009714818559587,0.0089664934203029],[-0.068466611206532,0.0020309356041253,-0.0054559973068535],[0.0035101366229355,0.13986760377884,0.074927642941475]],[[0.026218850165606,0.045717503875494,-0.017312776297331],[0.0079072769731283,0.0072756349109113,-0.046856705099344],[0.0065489946864545,0.0041264062747359,0.025783255696297]],[[0.0064942799508572,0.042675126343966,-0.074867121875286],[-0.0019139982759953,-0.054852172732353,0.017688430845737],[0.064992554485798,-0.021330991759896,-0.026952071115375]],[[0.0055782431736588,-0.027036277577281,0.028537597507238],[0.033838387578726,0.005379599519074,0.049106050282717],[-0.013589677400887,-0.033512782305479,0.013859648257494]],[[0.00938771199435,-0.0010888481047004,0.096651837229729],[0.079951718449593,-0.046336803585291,0.058927215635777],[0.06091595441103,-0.022556958720088,-0.051586151123047]],[[0.019591005519032,0.071432165801525,0.072641387581825],[0.037058155983686,0.12138441205025,-0.019785093143582],[0.075407616794109,-0.029026061296463,-0.026199977844954]],[[-0.03869079425931,-0.0082052061334252,-0.016304748132825],[-0.0060016894713044,0.022753208875656,-0.023470079526305],[-0.042934164404869,-0.022434094920754,-0.068597011268139]],[[0.0063790194690228,0.021296134218574,-0.025726240128279],[0.0085939848795533,-0.057537987828255,0.063183024525642],[0.077137961983681,0.024350179359317,-0.022791689261794]],[[0.049681466072798,0.010649163275957,-0.031009141355753],[0.077168941497803,-0.025216244161129,-0.046939961612225],[0.026631819084287,0.065081007778645,0.023644983768463]],[[0.036093525588512,0.023654915392399,0.0066903061233461],[0.043892413377762,0.037632863968611,0.063746124505997],[-0.11732421815395,-0.0039227828383446,0.0091707715764642]],[[0.0095060532912612,0.023522114381194,0.068287096917629],[0.037140477448702,-0.0050582108087838,0.13026505708694],[-0.052086751908064,0.0020517338998616,-0.010423054918647]],[[0.019162157550454,-0.07413811981678,0.059950157999992],[0.016131356358528,-0.0068101920187473,0.0028753578662872],[0.046251866966486,-0.045786160975695,0.042729258537292]],[[-0.045298006385565,-0.070736572146416,0.032355360686779],[0.070262618362904,-0.024367474019527,-0.049189936369658],[-0.058160476386547,0.012454826384783,-0.036618415266275]],[[0.1003897190094,0.041535336524248,0.056381892412901],[0.053972221910954,0.022345092147589,0.027742613106966],[0.026608124375343,-0.042347714304924,0.042774274945259]],[[0.039902660995722,-0.051628537476063,-0.0045408215373755],[-0.027845045551658,0.03943370655179,-0.028819762170315],[-0.062277901917696,-0.008068947121501,-0.01299199834466]],[[-0.047897294163704,0.054611567407846,0.047731138765812],[0.012591778300703,0.042892318218946,-0.012969497591257],[0.05281338468194,0.011274375021458,-0.018094765022397]],[[-0.095231510698795,0.0033468112815171,-0.041022270917892],[-0.012527420185506,0.056960728019476,-0.0020995303057134],[-0.016392963007092,0.02672628313303,0.022557424381375]],[[-0.024625528603792,-0.042017661035061,0.026111256331205],[0.0072646881453693,0.010091778822243,-0.0018598815659061],[0.018466133624315,-0.014522210694849,0.069469854235649]],[[0.03855099901557,0.011134231463075,0.045899126678705],[0.031387161463499,0.075435996055603,-0.037127621471882],[0.064553320407867,-0.0010689853224903,0.0029974551871419]],[[0.031870849430561,-0.016556642949581,0.0042900913394988],[0.0021529607474804,-0.013989681378007,0.00029260810697451],[0.032795239239931,0.020835774019361,-0.032197445631027]],[[0.024707898497581,0.025502888485789,0.026691623032093],[-0.041758839040995,-0.011266453191638,0.035455942153931],[-0.028694225475192,-0.0608837492764,0.047378599643707]],[[-0.016117565333843,0.0034948918037117,0.074753820896149],[0.033021003007889,-0.043352849781513,-0.031080720946193],[0.01473552454263,0.033035524189472,-0.017311293631792]],[[-0.02264541387558,0.022685395553708,-0.039316486567259],[-0.016669185832143,0.027954438701272,0.074702978134155],[0.0094037046656013,0.023261021822691,0.082022987306118]],[[0.0014098540414125,-0.042568225413561,0.0080603724345565],[-0.020439656451344,0.0032686095219105,0.024556186050177],[0.059360478073359,-0.13743342459202,0.056506220251322]],[[0.0043790070340037,-0.0059142983518541,0.080175250768661],[0.033753231167793,-0.0385667309165,0.10873673856258],[0.020131846889853,0.077915340662003,0.015891740098596]],[[-0.051900647580624,-0.071205019950867,0.07544532418251],[0.024776745587587,0.039564125239849,0.05608781799674],[0.013402208685875,0.061445239931345,-0.082533799111843]],[[0.0219103153795,0.025155303999782,-0.03896975889802],[-0.041833322495222,0.015400602482259,0.016322458162904],[0.0059059276245534,-0.0047107455320656,0.063690528273582]],[[0.036013375967741,0.011795156635344,0.031054008752108],[-0.052159994840622,-0.013600712642074,-0.019355867058039],[0.016690639778972,-0.066454224288464,0.056031655520201]],[[-0.029133129864931,0.02532778121531,-0.054206512868404],[0.054008651524782,0.015966504812241,-0.047499466687441],[0.0029530071187764,0.048392176628113,-0.058744858950377]],[[-0.024430463090539,0.035092629492283,0.011178378015757],[-0.051476906985044,0.084321312606335,-0.013548377901316],[-0.039080467075109,0.010298465378582,0.051458206027746]],[[0.013136216439307,0.067757524549961,-0.033116664737463],[0.0052405307069421,-0.031379710882902,-0.0446792319417],[0.041260380297899,0.072993718087673,-0.070240952074528]],[[0.073739498853683,-0.056496579200029,-0.070651084184647],[-0.0044625238515437,-0.0097492272034287,0.018302917480469],[0.05796804279089,0.040505722165108,0.026646122336388]],[[-0.021124865859747,-0.016150757670403,-0.0015442509902641],[-0.041792839765549,-9.7560259746388e-05,-0.0093995714560151],[0.012202280573547,-0.018125550821424,-0.011611784808338]],[[0.034282233566046,-0.052723191678524,0.051330398768187],[-0.025416495278478,-0.005295155569911,-0.00018732839089353],[0.09114883095026,0.014770588837564,0.03153120726347]],[[-0.090960629284382,0.14474976062775,0.052426766604185],[0.010264315642416,0.10624372959137,0.03279397636652],[0.030350647866726,0.087485730648041,0.073231182992458]],[[0.049626871943474,-0.021481689065695,-0.043242771178484],[0.10493405163288,0.011466064490378,-0.12486244738102],[0.029458992183208,-0.016166085377336,-0.00081523117842153]],[[0.018745696172118,0.054082911461592,0.039833027869463],[-0.018550053238869,0.018319766968489,0.04917585849762],[-0.079362504184246,-0.027752226218581,-0.058238387107849]],[[-0.024498973041773,-0.035309430211782,0.092851124703884],[-0.011701276525855,0.03216665238142,0.058390758931637],[0.0086580868810415,0.023518169298768,0.035552054643631]],[[0.065806455910206,0.046900819987059,0.029925806447864],[0.043476272374392,-0.023855555802584,0.039747819304466],[0.046150740236044,0.037516180425882,-0.01131550502032]],[[0.029846854507923,-0.0226098485291,-0.079636685550213],[0.016020927578211,-0.045659512281418,-0.029825935140252],[-0.016374383121729,0.028657093644142,-0.1078178435564]],[[0.005908798892051,-0.01057609077543,0.0049943793565035],[0.054537776857615,-0.0040146037936211,0.0030673206783831],[-0.021198373287916,-0.055449642241001,0.0043575805611908]],[[-0.12808178365231,-0.05425975471735,-0.039244070649147],[-0.046342182904482,-0.023039534687996,-0.034099135547876],[0.11366786807775,-0.011756640858948,-0.043399844318628]],[[-0.039855383336544,0.0418810993433,-0.033118940889835],[0.019204469397664,-0.007803036365658,0.016698831692338],[0.052541885524988,0.0035946334246546,0.0091870259493589]],[[0.023917522281408,-0.0023378459736705,-0.017444159835577],[0.066812478005886,-0.029317243024707,-0.004349120426923],[0.065388604998589,-0.028756495565176,-0.067859008908272]],[[-0.10454943776131,0.043516356498003,0.057847615331411],[-0.052453730255365,-0.060177352279425,0.0029019720386714],[-0.045862391591072,0.047520995140076,-0.029811067506671]],[[0.040346749126911,-0.0035670869983733,-0.005290265660733],[0.066927835345268,0.013141034170985,0.028710402548313],[-0.011733281426132,0.076762691140175,0.061627998948097]],[[-0.0086983628571033,0.01698661968112,-0.016337426379323],[-0.0035165236331522,-0.029513543471694,0.0030582144390792],[-0.014372419565916,0.007558673620224,0.032117009162903]],[[-0.038992989808321,-0.017085313796997,-0.034157935529947],[-0.0050229779444635,0.0054825427941978,-0.028515988960862],[-0.0070690242573619,0.070575937628746,0.050506737083197]],[[0.05889954417944,0.029210135340691,-0.031661994755268],[0.025752751156688,0.064539514482021,0.025108702480793],[0.092182375490665,0.0040092011913657,0.064672566950321]],[[-0.067731812596321,-0.059443559497595,0.080418556928635],[0.0032854890450835,0.061164375394583,0.023221025243402],[0.041852861642838,-0.035320624709129,-0.012652393430471]],[[-0.015933126211166,0.046595312654972,0.010712309740484],[0.034024331718683,0.07012128084898,-0.010548285208642],[0.076700314879417,0.0058684144169092,0.097640998661518]],[[0.042629841715097,0.079098396003246,0.067972645163536],[0.016178853809834,0.034950856119394,-0.019293697550893],[0.048724640160799,-0.0024940622970462,-0.025577062740922]],[[-0.044353704899549,0.0024373054038733,0.039118528366089],[-0.025955960154533,-0.030934937298298,-0.022516215220094],[-0.052386589348316,-0.043194394558668,-0.025660196319222]],[[-0.052104201167822,-0.057629488408566,-0.01624083891511],[0.012390330433846,-0.047117784619331,-0.10134245455265],[-0.0003687352873385,-0.034372255206108,0.00082662148633972]],[[-0.038981027901173,0.032647881656885,0.030934235081077],[0.018283160403371,-0.015015220269561,0.05274523049593],[-0.022937400266528,0.041126526892185,0.11036859452724]],[[0.036519519984722,0.039172749966383,-0.02110219374299],[0.041486326605082,0.020798875018954,-0.076875381171703],[0.0068805473856628,0.034971658140421,-0.0067445556633174]],[[-0.010425994172692,0.0071076983585954,-0.025946138426661],[0.043087024241686,-0.032951191067696,0.022220401093364],[-0.036832083016634,-0.077437154948711,-0.0721580311656]],[[0.012253446504474,0.027143329381943,0.021686863154173],[-0.026563823223114,0.033901277929544,0.081690333783627],[-0.018134437501431,0.032024662941694,0.03105903044343]],[[0.10904736816883,0.0063259187154472,0.1231275498867],[0.025710700079799,-0.050785128027201,-0.014456775039434],[0.015178888104856,0.053686566650867,0.080565832555294]],[[-0.00059494900051504,-0.017989939078689,0.022790931165218],[0.022787841036916,0.0081330537796021,0.0096880411729217],[-0.012081293389201,0.051245678216219,-0.042050920426846]],[[0.060609120875597,0.026802873238921,-0.049152594059706],[0.015243067406118,0.052205853164196,0.089183285832405],[0.047689910978079,-0.034442320466042,0.051392950117588]],[[-0.022658141329885,0.037108719348907,0.040171720087528],[-0.039396245032549,-0.02503839507699,-0.015506389550865],[0.080357924103737,-0.045123249292374,0.019552603363991]],[[-0.062000337988138,0.054159615188837,0.041959408670664],[0.0016974088503048,0.07855661213398,-0.034114576876163],[0.038630004972219,-0.036764837801456,-0.029421996325254]],[[-0.021565457805991,-0.061168402433395,-0.10057476907969],[0.02220606058836,-0.057910483330488,-0.05702992528677],[0.036850124597549,-0.005494630895555,-0.035422760993242]],[[-0.044710613787174,-0.092439025640488,-0.028291068971157],[-0.03614779561758,-0.027124909684062,0.00036430062027648],[-0.036530986428261,-0.081705704331398,-0.0067286547273397]],[[0.02819599956274,-0.010384954512119,-0.028704086318612],[0.027380649000406,0.021405575796962,-0.0042271753773093],[0.0095512140542269,-0.024176072329283,-0.020856026560068]],[[-0.071313492953777,0.067598260939121,0.01104015763849],[0.035635352134705,0.030018648132682,-0.0071985824033618],[-0.01392737403512,0.012314972467721,0.05654551461339]],[[0.06868477165699,-0.0058398898690939,-0.0032878485508263],[-0.001172665739432,0.067538566887379,-0.026491174474359],[0.0071874409914017,0.045380502939224,-0.015628751367331]],[[-0.041695948690176,-0.11180617660284,0.019465819001198],[-0.11986815184355,-0.00077169726137072,-0.00022458758030552],[-0.089487820863724,-0.096874386072159,-0.06511177867651]],[[-0.025510527193546,0.030005088075995,0.0036821798421443],[0.043549668043852,-0.015154454857111,0.036270018666983],[0.0057421852834523,0.085771039128304,-0.024617565795779]],[[-0.039400603622198,0.11639245599508,0.026340605691075],[0.053082842379808,0.0050875907763839,-0.017464900389314],[0.023227289319038,0.038854345679283,-0.043223921209574]],[[-0.019688816741109,-0.040408734232187,-0.020989950746298],[0.082701504230499,0.046215903013945,0.0069535714574158],[-0.018957870081067,0.041970852762461,-0.023566260933876]],[[-0.047752045094967,0.02102435939014,-0.066066600382328],[0.0068198218941689,0.022856269031763,-0.043614320456982],[-0.068557217717171,0.01877910271287,-0.014688274823129]],[[-0.032145023345947,0.065923385322094,0.068204700946808],[-0.019511945545673,0.057097159326077,0.089643485844135],[0.028778549283743,-0.030704565346241,0.027232527732849]],[[-0.085003517568111,-0.021492555737495,-0.0042594340629876],[0.024156337603927,-0.013198363594711,0.033227179199457],[-0.033535566180944,0.062216207385063,0.095015600323677]],[[-0.012446686625481,0.046077609062195,0.0099799279123545],[0.03131602704525,0.11495511233807,0.075682707130909],[-0.019498653709888,0.059964708983898,0.076374351978302]],[[0.057471245527267,0.0018091212259606,0.11040398478508],[0.0062194187194109,0.055060356855392,-0.017774485051632],[0.018688321113586,-0.028401345014572,-0.03095461986959]],[[0.013666216284037,-0.040559779852629,0.032355550676584],[-0.020443415269256,-0.0095906155183911,0.038313541561365],[-0.066371448338032,-0.010299116373062,0.068249322474003]],[[-0.019527757540345,0.06197252869606,0.072445370256901],[0.039723042398691,0.014962108805776,0.085721112787724],[0.05599706619978,0.010233913548291,0.065767712891102]],[[-0.0039650262333453,0.015053438022733,0.065310761332512],[-0.07897812128067,-0.049181364476681,0.060024634003639],[0.017403161153197,-0.033155549317598,0.020361911505461]],[[0.10779939591885,0.056045312434435,0.097702637314796],[0.015857500955462,0.0541464202106,0.070385478436947],[0.056570895016193,-0.08133690059185,0.11129509657621]],[[0.031204620376229,0.079025134444237,-0.032445412129164],[0.085727207362652,-0.0075125209987164,0.03100030682981],[-0.05384398624301,0.020451799035072,-0.0087412782013416]],[[0.079559311270714,0.052958451211452,0.037279717624187],[-0.036768551915884,0.024042740464211,-0.040589340031147],[-0.028221420943737,0.014736267738044,0.11649861186743]],[[0.018897622823715,-0.0035940096713603,-0.00010727927292464],[-0.077191591262817,-0.069746196269989,0.058611944317818],[0.0093870647251606,-0.034139327704906,-0.0082901353016496]],[[-0.080740556120872,-0.0086315777152777,-0.045413468033075],[0.043845281004906,0.019349861890078,0.027962917461991],[-0.023795133456588,-0.0081698931753635,-0.0567327439785]],[[0.047537598758936,0.025585137307644,0.011618409305811],[0.043542262166739,0.0166533049196,0.071968235075474],[0.11047460883856,0.001411669771187,0.023752324283123]],[[-0.069411464035511,0.0079555250704288,-0.026804195716977],[0.025036882609129,-0.011260074563324,-0.048555996268988],[0.06418140232563,0.018186843022704,-0.029243702068925]],[[0.026786807924509,-0.047830350697041,0.044113822281361],[0.036932870745659,0.00054391683079302,-0.066372245550156],[0.021537184715271,0.039477720856667,-0.0051513845100999]],[[0.054583966732025,-0.021047744899988,-0.028619544580579],[-0.0070922607555985,0.0063481112010777,-0.079459108412266],[-0.031228210777044,0.042884726077318,-0.1033121868968]],[[-0.01537673547864,0.051092386245728,0.0064458777196705],[0.0029034500475973,0.075396314263344,0.023004418238997],[0.061220932751894,-0.0064152269624174,0.045261330902576]],[[-0.027583967894316,0.017323458567262,0.016278022900224],[0.029974538832903,-0.015319352969527,0.00056323228636757],[-0.031761478632689,0.027973227202892,-0.012947089970112]],[[0.019425395876169,-0.034206710755825,0.032821100205183],[0.1016279309988,-0.045209348201752,0.077628955245018],[-0.019726408645511,0.025476586073637,0.16449427604675]],[[0.043553583323956,0.027617005631328,-0.032424341887236],[-0.040564753115177,-0.054140951484442,-0.0060400925576687],[0.025666981935501,-0.041255343705416,-0.044074613600969]],[[-0.055352758616209,-0.060336019843817,-0.052103601396084],[0.050859816372395,-0.0051893219351768,-0.023618895560503],[0.093832284212112,-0.026154261082411,-0.024350503459573]],[[-0.0043041310273111,-0.037793517112732,0.056594658643007],[-0.058358386158943,0.0053959195502102,0.04406364262104],[0.046901047229767,0.014638846740127,-0.023924382403493]],[[-0.045860879123211,-0.016625821590424,-0.0064009944908321],[-0.0034203650429845,0.032234147191048,-0.013478142209351],[0.035488098859787,-0.012347320094705,-0.060601737350225]],[[0.029692532494664,0.09788616746664,-0.0037350980564952],[0.024005061015487,-0.0081178462132812,-0.083608657121658],[0.068253889679909,0.029238382354379,0.028382463380694]],[[-0.035246100276709,0.019169023260474,0.021207582205534],[0.029621716588736,0.010505631566048,0.0036341985687613],[0.04112895578146,-0.064460255205631,0.0045638424344361]],[[-0.036453112959862,0.066666461527348,-0.0031188924331218],[0.038360442966223,0.03910930082202,0.051833055913448],[0.030093807727098,0.029008593410254,-0.023479228839278]],[[0.013205979950726,0.039771616458893,0.051003113389015],[-0.041464295238256,0.080569624900818,0.024632796645164],[0.017252661287785,-0.044094908982515,0.027880484238267]],[[0.058154635131359,-0.020993551239371,0.00013160829257686],[-0.006469736341387,-0.070064216852188,-0.054435305297375],[0.00084109202725813,-0.10110770910978,0.071384117007256]],[[-0.0029254464898258,0.062416635453701,-0.0098118735477328],[0.043437879532576,-0.054597299546003,0.046748153865337],[-0.054896909743547,0.054407835006714,0.002851759083569]],[[-0.085779085755348,0.0041357944719493,0.034849550575018],[-0.096291206777096,0.020946303382516,0.057731922715902],[0.058907125145197,-0.048939388245344,0.0078730816021562]],[[-0.02364582195878,0.028447981923819,0.05716584995389],[-0.025769919157028,-0.069723695516586,-0.0068313227966428],[0.0075245718471706,0.0099597349762917,-0.13495078682899]],[[0.026922389864922,0.0078387912362814,-0.017021140083671],[-0.033436395227909,0.052862349897623,0.020304979756474],[-0.054699458181858,-0.057169187813997,0.054262205958366]],[[-0.029561087489128,-0.098967708647251,0.019133023917675],[-0.042335890233517,-0.0089523419737816,-0.015471248887479],[-0.08830800652504,-0.042856231331825,0.010961833409965]],[[-0.056371364742517,-0.056651100516319,0.0040943082422018],[0.031077980995178,-0.043043859302998,0.027037054300308],[0.057530447840691,0.011291005648673,0.0084234522655606]],[[0.017569465562701,-0.042044524103403,-0.044360537081957],[-0.048771575093269,-0.057785782963037,-0.044245585799217],[0.013436100445688,0.0094702998176217,-0.08734180778265]],[[-0.007257011719048,0.12049767374992,-0.059969823807478],[-0.0040040905587375,0.036246716976166,0.074907347559929],[-0.027105517685413,-0.026560572907329,0.052461113780737]],[[-0.029629491269588,0.021685587242246,0.047564171254635],[0.0055196741595864,0.017156494781375,-0.019827814772725],[-0.0089709116145968,-0.0350221991539,0.0065119424834847]],[[-0.003859743475914,-0.0095902476459742,0.098605237901211],[-0.036741200834513,0.031254421919584,0.018712177872658],[0.010576505213976,0.023451695218682,-0.0030406869482249]],[[0.062126293778419,-0.021917939186096,0.04706634953618],[0.072766155004501,0.039680358022451,0.032294444739819],[0.094995133578777,0.027148114517331,0.048105835914612]],[[-0.01142115611583,-0.02540217153728,0.0028116016183048],[-0.015444288961589,-0.04085136950016,0.048852115869522],[-0.019209269434214,0.028280830010772,-0.034999720752239]],[[-0.022262474521995,0.045598302036524,0.0048072137869895],[0.050353739410639,0.051651798188686,-0.014281658455729],[0.033247377723455,-0.074221812188625,-0.042197454720736]],[[-0.032262947410345,-0.013595028780401,-0.078324571251869],[-0.034876480698586,0.025920901447535,0.038999311625957],[-0.052623696625233,0.012689753435552,-0.048197273164988]],[[0.0044311471283436,-0.0138153238222,-0.020139822736382],[0.0064241508953273,0.028302328661084,0.059870265424252],[0.021214434877038,-0.065202005207539,-0.080429293215275]],[[-0.009669492021203,0.0350844822824,0.077804744243622],[0.011880375444889,0.00021193618886173,0.049043335020542],[0.016916010528803,0.034979097545147,-0.026623424142599]],[[0.053268272429705,-0.037443153560162,-0.027730938047171],[-0.0038605500012636,-0.038977757096291,0.041574262082577],[-0.063842684030533,0.025575701147318,-0.0025293331127614]],[[0.074261873960495,0.010641462169588,0.059701457619667],[-0.035163700580597,0.05234557762742,0.11136878281832],[0.016860714182258,0.010434065945446,0.03568858653307]],[[0.057286024093628,0.011127829551697,-0.06419925391674],[0.060251079499722,-0.049998674541712,-0.080374300479889],[-0.0075714909471571,0.019710849970579,-0.029016191139817]]],[[[0.06266587972641,0.022050116211176,0.05802384018898],[-0.0737169906497,-0.036398824304342,0.066142462193966],[-0.008108171634376,0.023269515484571,-0.013057313859463]],[[0.026479749009013,-0.033163547515869,0.014347027055919],[-0.0067704953253269,0.05332351103425,-0.029467882588506],[-0.054771352559328,0.024831825867295,0.013652849942446]],[[0.011744159273803,0.0016956399194896,0.038349561393261],[-0.011085418052971,0.011096996255219,0.059830479323864],[0.01994176954031,-0.032812438905239,-0.07055626064539]],[[-0.0054068649187684,0.059953145682812,0.0087490044534206],[-0.0065817395225167,0.036477115005255,0.12531048059464],[0.013855670578778,0.0028305200394243,-0.068127490580082]],[[-0.0040200860239565,0.0076104993931949,-0.06119566783309],[0.041937034577131,0.041105825453997,-0.024137759581208],[0.027191324159503,0.04081742092967,0.03051782771945]],[[0.037036795169115,0.020547466352582,0.018380872905254],[0.048665478825569,-0.033372607082129,0.048305820673704],[0.029690768569708,-0.016152404248714,0.048681508749723]],[[0.045526120811701,0.014531649649143,-0.010852426290512],[-0.029269775375724,-0.017726181074977,-0.058597907423973],[-0.014176112599671,0.0043160975910723,-0.020424528047442]],[[0.028935318812728,-0.032928813248873,0.00041518043144606],[0.040023803710938,-0.0007847665110603,-0.00062298332341015],[0.044812716543674,0.036028042435646,0.028182249516249]],[[0.010530989617109,-0.044149339199066,-0.046610172837973],[0.010919930413365,0.00058198225451633,0.082513995468616],[-0.02212473936379,-0.021885197609663,0.086825340986252]],[[0.031666781753302,-0.020008211955428,0.065045073628426],[-0.01428365893662,0.021914023905993,0.033757846802473],[0.021183706820011,0.017533412203193,0.049711391329765]],[[0.025732507929206,-0.010674341581762,-0.044781889766455],[0.039083924144506,0.051342841237783,0.041122648864985],[0.068903103470802,-0.049211639910936,0.03393193334341]],[[-0.108363725245,0.02390718087554,-0.01002490427345],[-0.012060859240592,0.030865432694554,-0.044455174356699],[-0.041083984076977,0.051276307553053,0.0065836408175528]],[[0.084381178021431,0.063149109482765,0.017176313325763],[-0.012003452517092,0.018888246268034,0.052576199173927],[-0.0055259242653847,0.024869890883565,0.15639570355415]],[[0.034347273409367,0.030946362763643,-0.054780021309853],[0.011004751548171,-0.01784442178905,-0.077871210873127],[-0.045619148761034,-0.066732972860336,-0.068993896245956]],[[-0.033776499330997,0.048538878560066,-0.058490477502346],[0.051588233560324,0.022504201158881,0.01729286275804],[0.017962319776416,0.038771856576204,-0.065346010029316]],[[-0.03856335952878,0.0075166467577219,-0.011093430221081],[0.026203524321318,-0.10673350840807,0.024449530988932],[-0.051283121109009,-0.02971507422626,0.010725130327046]],[[0.08275318145752,0.040224190801382,0.020082077011466],[-0.031269103288651,0.037145722657442,0.014949471689761],[-0.0032884248066694,0.032977350056171,0.060523051768541]],[[-0.0080202566459775,-0.044369012117386,0.067196555435658],[0.11117229610682,-0.01467049587518,-0.041111148893833],[-0.033199913799763,0.0029764880891889,-0.09185341745615]],[[-0.014244838617742,0.0012787415180355,-0.056944370269775],[0.11699534952641,-0.018193908035755,-0.011114846915007],[0.03647505864501,-0.015895625576377,0.0090341223403811]],[[-0.0051391832530499,0.042792037129402,0.044563323259354],[-0.074434846639633,-0.008330169133842,-0.085385106503963],[0.051036760210991,0.0402279086411,-0.013519884087145]],[[-0.079326659440994,0.01598446816206,-0.013801480643451],[-0.033345270901918,-0.049042403697968,-0.028893170878291],[-0.00075618957635015,0.0080238645896316,0.055153824388981]],[[0.026578677818179,-0.031469862908125,0.0086420988664031],[0.067457668483257,0.10009595751762,0.012944051995873],[0.020253030583262,0.082788035273552,0.039033502340317]],[[-0.0086803967133164,0.035375837236643,0.00075501750689],[0.16400684416294,-0.04833947122097,0.0064941910095513],[-0.0074852048419416,0.0026361297350377,0.052603386342525]],[[0.0012035893741995,0.010329057462513,0.030000600963831],[-0.0055720182135701,0.039203364402056,0.062979802489281],[-0.096861377358437,0.056429747492075,0.067996926605701]],[[0.032103165984154,-0.074186414480209,-0.025253936648369],[-0.031572692096233,-0.027670592069626,-0.065782807767391],[0.022425955161452,-0.015309358015656,0.010320507921278]],[[-0.0049128835089505,-0.032784983515739,-0.033146299421787],[-0.037718944251537,0.038015179336071,0.034601669758558],[0.094544395804405,-0.0087356781587005,0.012233084067702]],[[-0.013781951740384,-0.01911055482924,-0.012563614174724],[0.046126503497362,-0.029606096446514,-0.061926901340485],[0.025504434481263,-0.0037692685145885,-0.023326491937041]],[[0.041905742138624,0.037477988749743,-0.038815155625343],[-0.02856901474297,0.078847587108612,0.022914338856936],[-0.035508677363396,0.0088992798700929,-0.042921613901854]],[[0.063156500458717,0.0075920755043626,-0.019308933988214],[0.032684102654457,0.051030706614256,0.045089472085238],[-0.021311117336154,-0.064146220684052,0.021669128909707]],[[-0.082745298743248,-0.068203121423721,-0.035838712006807],[0.0062770936638117,0.021746614947915,0.020193841308355],[-0.050175700336695,0.0012724784901366,0.015434170141816]],[[-0.04062482342124,0.022900130599737,0.074861936271191],[0.024495864287019,-0.040669288486242,0.026582790538669],[-0.04227352887392,0.079993523657322,0.047079741954803]],[[-0.031143141910434,-0.015162416733801,0.00040937715675682],[-0.029859615489841,0.050426948815584,-0.085955493152142],[0.079273946583271,0.053075633943081,0.030792756006122]],[[0.10699765384197,0.064189307391644,0.06683624535799],[0.04899387806654,0.093122728168964,0.05889130756259],[0.01828303001821,0.16493399441242,-0.085413567721844]],[[0.034897532314062,0.023286875337362,0.047227893024683],[-0.017319766804576,0.010381652973592,0.01099821832031],[0.090572744607925,0.038059793412685,0.034311909228563]],[[-0.079115085303783,0.0244031380862,0.0017140138661489],[0.032358154654503,-0.015657544136047,-0.0086283814162016],[0.0084096509963274,0.048621859401464,-0.045676350593567]],[[0.030984189361334,0.056605834513903,0.044780664145947],[-0.01852916367352,-0.023305280134082,-0.041809368878603],[0.1021768078208,0.045836381614208,-0.00061640731291845]],[[0.13850770890713,-0.00017318474419881,-0.03380336612463],[-0.028063558042049,0.1102936938405,-0.00069059227826074],[-0.063992992043495,0.015614056028426,-0.068984732031822]],[[0.0085275946184993,0.026329847052693,0.036638516932726],[0.12213266640902,-0.017415666952729,0.083669893443584],[0.010426752269268,0.056026231497526,0.02067500911653]],[[0.010725111700594,-0.12566469609737,-0.049831375479698],[0.13166634738445,0.023797059431672,-0.0039520598948002],[0.0043432139791548,-0.024000750854611,-0.012194378301501]],[[0.012005527503788,0.058189187198877,0.0042822621762753],[-0.024053487926722,0.075109384953976,0.11480972915888],[-0.10997829586267,0.025626562535763,0.032051920890808]],[[0.035321172326803,0.041702937334776,0.035569313913584],[0.0021916385740042,-0.010824495926499,0.021589528769255],[-0.044250633567572,0.041216190904379,-0.091481529176235]],[[-0.037714567035437,0.070346586406231,0.0091652991250157],[0.029058767482638,0.019388183951378,0.069188937544823],[-0.012102646753192,0.035130951553583,0.042263336479664]],[[0.099701784551144,0.058090589940548,0.024020094424486],[0.036095939576626,0.053226575255394,0.062912851572037],[0.12104030698538,0.014402346685529,0.14897876977921]],[[0.079619191586971,-0.061947148293257,0.0005266732769087],[-0.049585919827223,0.02923545986414,0.087280683219433],[-0.031926587224007,-0.043265588581562,-0.042625904083252]],[[-0.026417186483741,0.034562762826681,0.030783528462052],[-0.085812084376812,-0.015302340500057,-0.0074186809360981],[0.0032315987627953,-0.056210447102785,-0.00020171412324999]],[[-0.042537052184343,0.083353392779827,0.065374754369259],[0.10612966120243,0.07234176248312,0.047417066991329],[0.1301061809063,0.079696469008923,0.042765308171511]],[[-0.075445763766766,0.019011817872524,0.011226845905185],[-0.016571650281549,0.022751487791538,-0.08213447034359],[-0.070321425795555,-0.033273939043283,-0.014236655086279]],[[0.02912399917841,-0.11707431077957,-0.036294147372246],[-0.028219128027558,-0.0050090947188437,0.016915457323194],[-0.076318360865116,-0.019697578623891,-0.044633109122515]],[[-0.071762882173061,-0.056759420782328,-0.00087365391664207],[-0.020492190495133,0.030499400570989,-0.002822078531608],[-0.038868814706802,-0.019295921549201,-0.033726241439581]],[[-0.011654638685286,-0.046975288540125,0.013357046991587],[0.0050072357989848,0.013273306190968,0.02893140912056],[0.01639374345541,0.0046464083716273,-0.0084110591560602]],[[0.036280579864979,0.033816795796156,-0.032175291329622],[-0.021617718040943,0.043490346521139,0.056067295372486],[0.043591931462288,0.04642978310585,0.018391905352473]],[[-0.035876046866179,-0.05909875780344,0.047075942158699],[0.039932489395142,-0.0051656947471201,-0.052221059799194],[-0.056545853614807,0.07376928627491,0.063065081834793]],[[0.0016944670351222,0.04801432788372,-0.0016957371262833],[0.054766405373812,0.013110601343215,-0.0020464141853154],[0.044990580528975,-0.048908680677414,-0.079722218215466]],[[0.0096856849268079,-0.0089235650375485,0.0018375501967967],[0.031417105346918,0.060963653028011,0.04506504535675],[0.044712796807289,0.11263566464186,0.084162652492523]],[[-0.022334365174174,-0.083827070891857,0.041969045996666],[0.035255320370197,-0.031961008906364,-0.0046567241661251],[-0.0069232187233865,-0.025285786017776,0.018216285854578]],[[-0.0045797135680914,0.038910526782274,0.0038582901470363],[-0.012990155257285,0.038261380046606,0.037719622254372],[-0.026245657354593,0.010462830774486,0.017452416941524]],[[0.027008840814233,0.060180589556694,-0.013663504272699],[0.061650093644857,0.045375682413578,0.044907737523317],[0.014647448435426,0.012858260422945,0.040732972323895]],[[-0.02058962546289,-0.022753598168492,0.023652361705899],[-0.025504566729069,-0.12296817451715,-0.07360016554594],[0.020924374461174,-0.0065422062762082,0.0056128376163542]],[[-0.026900216937065,0.10587753355503,0.061859682202339],[-0.019803442060947,-0.019933998584747,0.016751706600189],[-0.015195244923234,-0.055370416492224,-0.027319226413965]],[[0.028958385810256,0.10685390979052,-0.079338476061821],[-0.036404881626368,0.013361094519496,0.0037472131662071],[-0.043857980519533,-0.0077840192243457,-0.015200141817331]],[[-0.047482132911682,-0.04971069842577,-0.0036935531534255],[-0.028999334201217,0.072299793362617,0.053935613483191],[0.0089626926928759,0.056759405881166,-0.04918859899044]],[[-0.017920110374689,-0.022305311635137,0.039220951497555],[-0.05273662507534,0.004153675865382,0.056538537144661],[-0.035981588065624,-0.072656996548176,-0.037983410060406]],[[0.017667377367616,-0.018481971696019,0.023047659546137],[0.028077872470021,0.024207998067141,-0.078559391200542],[-0.0051530241034925,-0.0092496508732438,-0.022960470989347]],[[-0.089482665061951,0.013752068392932,-0.054119128733873],[-0.054633893072605,-0.04465526714921,0.10970229655504],[0.015022421255708,-0.074638068675995,-0.04261265322566]],[[-0.0084187863394618,-0.049186252057552,0.074921660125256],[-0.015377988107502,0.018088087439537,0.10711238533258],[0.013714144937694,-0.018000928685069,-0.05255426838994]],[[0.034157872200012,0.014126431196928,0.050362043082714],[0.016387486830354,0.02835332043469,-0.011862313374877],[-0.099038168787956,0.10774151235819,0.062413215637207]],[[0.078875184059143,-0.059850215911865,-0.0099957603961229],[0.081603333353996,0.0087000904604793,0.02096320874989],[0.042246803641319,-0.011995948851109,0.02343125641346]],[[0.010885692201555,0.062868565320969,-0.00018977414583787],[-0.010900384746492,-0.048365578055382,0.050880394876003],[-0.010975269600749,-0.018907921388745,0.090370737016201]],[[0.021160624921322,-0.066546343266964,0.01828883215785],[0.027654143050313,-0.08814687281847,0.038283679634333],[0.096150614321232,0.053575541824102,-0.014657191000879]],[[-0.023950921371579,-0.0099400831386447,-0.024186847731471],[-0.024417042732239,0.024215947836637,0.01413301192224],[-0.044879883527756,-0.040684316307306,-0.021486779674888]],[[0.1307518184185,0.010239527560771,-0.002208978170529],[0.067454524338245,-0.0017952431226149,-0.06917305290699],[0.013242733664811,0.029663342982531,0.05026164278388]],[[-0.0085247131064534,0.0019825424533337,0.093876577913761],[-0.019465943798423,0.0099057331681252,0.025737712159753],[-0.016077948734164,-0.047472458332777,0.0033625597134233]],[[-0.054505690932274,0.0088665373623371,0.023308536037803],[0.04518286511302,0.046149499714375,0.012213340960443],[-0.0021700055804104,0.02704618871212,0.024953184649348]],[[-0.0069669033400714,0.021867889910936,-0.006179426331073],[0.013057130388916,-0.012808137573302,-0.070829957723618],[0.016410483047366,0.0092285312712193,0.041905742138624]],[[-0.029238214716315,-0.041755747050047,-0.09175606071949],[-0.03466672077775,-0.013110117055476,-0.034867078065872],[0.027567649260163,0.082659505307674,0.010260824114084]],[[0.007435729727149,-0.073751404881477,-0.039927620440722],[0.048486333340406,-0.050199780613184,-0.022603550925851],[0.029355788603425,0.038925055414438,-0.013153301551938]],[[0.019940925762057,-0.0040674558840692,-0.076205350458622],[0.054681457579136,0.0079632280394435,0.0035683123860508],[0.036994073539972,-0.0026108650490642,0.043517205864191]],[[-0.036953557282686,0.047904897481203,-0.044942609965801],[0.047207541763783,0.056422356516123,0.010541924275458],[0.22654117643833,0.0065565854310989,0.047838054597378]],[[0.028261745348573,-0.027253007516265,0.038331232964993],[-0.038328245282173,0.028021346777678,0.0047610672190785],[-0.059375572949648,-0.027138601988554,-0.10121461004019]],[[0.052463363856077,0.013580731116235,0.014582637697458],[-0.04366459697485,-0.026595486328006,0.020607732236385],[0.013769469223917,0.020096214488149,-0.075027585029602]],[[0.012543360702693,-0.045334134250879,-0.061094891279936],[0.057729624211788,0.057290870696306,-0.051073547452688],[0.024430429562926,0.030100421980023,-0.14831088483334]],[[0.039061937481165,0.015005765482783,0.013549553230405],[-0.010892482474446,0.028994105756283,-0.027210487052798],[0.076526179909706,-0.01076599676162,-0.078629530966282]],[[0.055128742009401,-0.0046618827618659,0.029898757115006],[0.02454143948853,0.019802374765277,-0.00044944349792786],[0.024651372805238,-0.028646418824792,0.045611549168825]],[[0.070026464760303,0.10162024945021,0.090040504932404],[0.047394458204508,0.0079073226079345,0.034272320568562],[-0.011579320766032,-0.03141487762332,0.067468516528606]],[[-0.067454323172569,-0.034101281315088,-0.012984259985387],[0.040021020919085,0.027976598590612,-0.0063954978249967],[0.01739034242928,0.035072211176157,0.002157935872674]],[[-0.031890261918306,-0.070535272359848,-0.092756316065788],[-0.047440506517887,0.0046652867458761,0.026850769296288],[0.0336569622159,0.067846156656742,0.017049727961421]],[[0.045875489711761,0.047722350805998,-0.0047476477921009],[0.080115579068661,-0.0039182584732771,-0.045633465051651],[0.12778720259666,0.08674406260252,-0.021122664213181]],[[-0.041790146380663,0.00054752069991082,0.018829483538866],[-0.050810068845749,-0.068961024284363,-0.079888850450516],[-0.027207670733333,0.0037381539586931,-0.0069380970671773]],[[0.077890977263451,-0.041820958256721,-0.110889069736],[0.026454482227564,0.036734707653522,0.037618760019541],[-0.00066371069988236,0.023801283910871,-0.018323071300983]],[[-0.022040253505111,-0.05908827483654,-0.12873031198978],[-0.032964911311865,-0.0055728545412421,-0.0023675251286477],[-0.0075395382009447,-0.026034338399768,-0.020848659798503]],[[0.00082348939031363,0.074968427419662,-0.0070604630745947],[0.04467174783349,-0.0098865050822496,0.048509210348129],[-0.015437074936926,0.013036279939115,0.027962062507868]],[[-0.090097859501839,-0.074450455605984,-0.060759551823139],[0.014094310812652,0.010147354565561,0.022945791482925],[0.07136807590723,0.0065999049693346,0.041675932705402]],[[0.019184660166502,0.002669254085049,-0.048337638378143],[-0.026637576520443,0.04461732506752,0.014841329306364],[-0.018164740875363,0.017494136467576,0.027182342484593]],[[0.028260413557291,-0.032158456742764,0.038103241473436],[0.044896252453327,0.016244856640697,-0.032721158117056],[0.059559173882008,0.055162813514471,-0.027823692187667]],[[-0.013519084081054,-0.04434659704566,-0.018618579953909],[0.072082571685314,-0.0096785807982087,-0.03437514975667],[-0.01979617215693,-0.0098235094919801,-0.024426117539406]],[[0.063695572316647,-0.042426392436028,-0.052793204784393],[0.034470677375793,0.095304749906063,0.014094451442361],[-0.02197321690619,0.00047238427214324,0.058246217668056]],[[0.084185667335987,0.012018792331219,-0.0012899057473987],[0.016090171411633,-0.067116320133209,0.015780918300152],[0.060803066939116,0.053490091115236,0.057275887578726]],[[0.010533586144447,0.033556193113327,0.058384962379932],[-0.026929702609777,0.064230874180794,0.049217231571674],[0.024753065779805,-0.021846119314432,0.11213677376509]],[[-0.067640252411366,-0.04378866404295,0.05225320905447],[0.032832562923431,-0.018254129216075,-0.041429705917835],[-0.00045047342428006,-0.0037138822954148,-0.026483077555895]],[[0.053665649145842,-0.016657704487443,0.010185332968831],[0.019546950235963,-0.049207769334316,0.051009144634008],[0.0080032926052809,0.033432558178902,0.077901549637318]],[[-0.031327191740274,0.018418809399009,0.01495264749974],[0.011554633267224,-0.023495186120272,0.0070844618603587],[-0.0078962100669742,-0.012749487534165,-0.08029093593359]],[[-0.039204351603985,0.05022295191884,0.043989777565002],[-0.054828785359859,0.0097368061542511,0.0074505200609565],[0.04195211827755,0.069545336067677,0.15500184893608]],[[-0.01533454656601,0.061505690217018,0.010675959289074],[-0.014884105883539,0.053358271718025,0.033015877008438],[0.04739061743021,0.026516251266003,-0.031860239803791]],[[-0.039419677108526,0.053019292652607,0.042160201817751],[-0.048989180475473,-0.034284006804228,-0.045113611966372],[-0.028885005041957,-0.051570970565081,-0.022395299747586]],[[0.11322129517794,0.066622346639633,-0.0016737318364903],[0.0062236366793513,-0.0096269659698009,-0.014672356657684],[0.025371542200446,-0.057803340256214,-0.020710909739137]],[[0.05412282794714,0.050989709794521,-0.12193724513054],[0.0073604714125395,0.025561548769474,0.050812806934118],[-0.012159795500338,0.10890905559063,0.059366036206484]],[[0.0021831763442606,0.047791160643101,0.00040066058863886],[0.11575943976641,0.10042519122362,0.065845020115376],[0.047806292772293,0.065693065524101,0.11664059758186]],[[6.4685846155044e-06,0.0018585220677778,0.0086085088551044],[0.039478331804276,-0.016609020531178,-0.033506948500872],[0.032747615128756,-0.068366482853889,0.10089468210936]],[[-0.04801956191659,-0.0090758726000786,0.032246775925159],[-0.058259177953005,-0.051362901926041,0.013724287040532],[0.01804793253541,0.0011072620982304,-0.028957730159163]],[[0.043331671506166,0.011619968339801,-0.064975269138813],[0.083246447145939,0.04660975933075,0.077232837677002],[0.11121057718992,0.092027500271797,0.019605744630098]],[[-0.065739579498768,-0.050861664116383,-0.063331358134747],[0.08259666711092,0.017958680167794,-0.037542078644037],[-0.016775727272034,0.09859711676836,-0.018604192882776]],[[-0.045113790780306,-0.10475806891918,-0.11542964726686],[-0.010552394203842,0.0096008209511638,-0.089387483894825],[0.022491643205285,0.029755653813481,0.045379817485809]],[[-0.044214971363544,-0.021038684993982,-0.0061537441797554],[-0.054918080568314,-0.064255848526955,0.010185116901994],[-0.0086986497044563,-0.07006573677063,-0.064245387911797]],[[-0.049683731049299,-0.10560653358698,-0.08198819309473],[0.037818036973476,0.027446364983916,-0.031234847381711],[0.017864309251308,-0.050779089331627,0.0060111191123724]],[[0.038541071116924,0.022107802331448,0.052058972418308],[-0.091101884841919,0.041966337710619,-0.023342879489064],[-0.08171185106039,-0.0044977311044931,-0.01906412653625]],[[-0.072878696024418,-0.029319377616048,-0.00013340378063731],[-0.018995342776179,0.042015131562948,-0.015274903737009],[-0.023540357127786,-0.12343894690275,-0.051903583109379]],[[-0.016365712508559,-0.10343223065138,-0.015881206840277],[-0.01225399505347,0.00051713135326281,0.004333927296102],[0.021099161356688,-0.0040899096056819,-0.053703151643276]],[[0.0032924183178693,-0.04734530672431,0.014191290363669],[-0.034530363976955,-0.041061360388994,0.0097597967833281],[0.11961641162634,-0.038638383150101,0.015456136316061]],[[-0.025905970484018,-0.12943249940872,-0.071387208998203],[-0.05108218640089,0.023922219872475,-0.099922426044941],[0.048980940133333,-0.028168547898531,0.035306930541992]],[[0.063643224537373,0.0056074969470501,0.012031864374876],[-0.030500026419759,-0.011187517084181,0.051108323037624],[0.031753245741129,0.0011554511729628,0.049238681793213]],[[0.049821469932795,-0.0083176996558905,0.026548562571406],[-0.032822202891111,-0.083291612565517,0.0018000168493018],[-0.010754692368209,-0.072667442262173,-0.023651083931327]],[[0.011217328719795,0.033280972391367,-0.0060176816768944],[-0.032949384301901,0.0011074298527092,0.014272831380367],[0.019738739356399,-0.053195890039206,0.016053032130003]],[[-0.037548258900642,0.010393167845905,0.086413837969303],[0.05511512607336,0.0098980022594333,-0.079225435853004],[-0.035913784056902,-0.031838215887547,-0.11924979835749]],[[0.013468046672642,-0.035500343888998,0.062475971877575],[-0.050903219729662,-0.11120048165321,0.024010308086872],[0.017855843529105,0.064817100763321,0.013853971846402]],[[-0.020108448341489,-0.0059552509337664,0.062967605888844],[0.042868420481682,-0.003398505738005,0.017866460606456],[0.023675058037043,0.035534378141165,0.024213880300522]],[[-0.068192832171917,-0.00069435749901459,-0.0085918186232448],[0.14672926068306,0.082517527043819,-0.096599295735359],[0.030280593782663,0.015674214810133,0.074692025780678]],[[-0.026222696527839,-0.017818721011281,-0.042794641107321],[0.082487560808659,0.06086303293705,-0.024829803034663],[0.066181391477585,0.092238925397396,0.056738335639238]],[[0.073347888886929,-0.03842955827713,0.077533297240734],[-0.036212734878063,0.038762383162975,0.072056703269482],[0.083825908601284,-0.043110597878695,0.071133017539978]]],[[[0.0071416590362787,-0.034587051719427,-0.050530113279819],[-0.013652676716447,0.10626736283302,0.027827983722091],[-0.012972296215594,0.0030910233035684,-0.049413442611694]],[[0.070924431085587,0.048112254589796,-0.035747233778238],[-0.0092198364436626,-0.046541061252356,-0.0030463708098978],[-0.087429605424404,0.018723422661424,0.013841239735484]],[[-0.0063593108206987,0.050106305629015,-0.0041308840736747],[0.017476093024015,-0.012647527270019,0.064372390508652],[-0.0041351434774697,-0.0037094857543707,0.047322362661362]],[[0.013763353228569,0.044934563338757,-0.027350291609764],[-0.019287705421448,0.020670544356108,-0.024880673736334],[0.01922102086246,-0.03294188156724,0.036496039479971]],[[0.021936850622296,0.011116535402834,0.058696005493402],[0.055455330759287,-0.078127168118954,0.012931036762893],[0.042667631059885,-0.022816201671958,0.0071013499982655]],[[-0.016514886170626,-0.021113820374012,-0.028911210596561],[0.016376338899136,-0.024810746312141,-0.0083267511799932],[0.037203054875135,0.0099595701321959,0.017891205847263]],[[-0.0023640261497349,0.032528065145016,0.012881126254797],[0.087591283023357,-0.040387786924839,0.097876809537411],[-0.016496093943715,0.028766242787242,0.0013962727971375]],[[-0.053460463881493,0.022172996774316,0.083607561886311],[-0.061550315469503,-0.055946722626686,0.041401565074921],[-0.014345518313348,-0.00095365493325517,0.014728893525898]],[[-0.013436284847558,0.007137993350625,0.0088628847151995],[0.063011154532433,-0.019528906792402,-0.040185663849115],[0.013592711649835,0.02577898837626,-0.065451748669147]],[[0.026266539469361,0.0033562881872058,0.088398478925228],[0.016202740371227,0.0024555788841099,-0.057608630508184],[0.022993955761194,-0.062101226300001,-0.038329679518938]],[[0.031030045822263,-0.0062286048196256,-0.018064014613628],[-0.023388564586639,0.014751787297428,0.019640604034066],[0.0011125832097605,0.021533653140068,0.01177763659507]],[[0.093638323247433,0.063372611999512,0.019846864044666],[-0.066492043435574,-0.0082096355035901,-0.056813459843397],[0.030791597440839,-0.05388468503952,-0.019539050757885]],[[0.014418845064938,0.0025192545726895,-0.028386870399117],[-0.0077825980260968,-0.0593550093472,-0.025736879557371],[-0.019416652619839,-0.074952654540539,0.025339934974909]],[[0.044737730175257,0.068694494664669,-0.0065676015801728],[0.01353142503649,0.032936725765467,-0.023736365139484],[0.0037845147307962,-0.028293864801526,0.0013487285468727]],[[-0.055157274007797,0.015232302248478,0.026062207296491],[0.028972009196877,0.069371797144413,-0.02287183329463],[0.035666979849339,-0.0071206246502697,0.0088119320571423]],[[-0.022626975551248,0.010129005648196,0.051965892314911],[0.016886340454221,-0.015956480056047,-0.028447614982724],[-0.011892767623067,0.0074762185104191,0.0041036731563509]],[[0.028677843511105,-0.060931939631701,0.00088294217130169],[-0.041816297918558,0.010350016877055,0.00010151218884857],[0.032205123454332,0.01395121961832,0.0026423977687955]],[[0.0045109707862139,0.053240355104208,0.067930467426777],[0.055806692689657,0.006100794300437,-0.019311271607876],[0.00096041517099366,0.0084541970863938,0.012962917797267]],[[0.050958320498466,0.0085161523893476,-0.040482245385647],[0.03335190564394,0.057892587035894,-0.048349995166063],[-0.067930839955807,-0.0048936158418655,0.025692775845528]],[[-0.024762615561485,-0.0045758574269712,0.014413165859878],[-0.035928651690483,0.048213493078947,-0.038678299635649],[0.046847570687532,-0.018167987465858,-0.067174233496189]],[[-0.029242791235447,0.051986079663038,0.015151111409068],[-0.016602426767349,-0.014566992409527,0.058125972747803],[-0.05355516821146,-0.069093987345695,-0.026634804904461]],[[-0.0031748220790178,-0.015020666643977,-0.027628406882286],[0.0026821559295058,0.024866167455912,0.0067827575840056],[0.036346893757582,-0.027422208338976,0.04477608948946]],[[-0.0068033766001463,-0.033928744494915,-0.010174537077546],[-0.052085507661104,0.00081014027819037,-0.027728199958801],[0.045610476285219,-0.020984744653106,-0.029760995879769]],[[0.013185963965952,-0.002435889095068,-0.0010413225973025],[0.044809706509113,0.034452605992556,-0.019217288121581],[0.0056633343920112,0.0087488992139697,0.047648761421442]],[[-0.032043516635895,-0.086090676486492,-0.028640549629927],[0.066260814666748,0.027005132287741,-0.042059443891048],[0.00086279580136761,-0.0062561286613345,-0.030495673418045]],[[-0.044630534946918,0.066805079579353,0.036283560097218],[-0.017941607162356,0.04588969796896,-0.0061139166355133],[-0.065380848944187,0.030546052381396,-0.014653661288321]],[[-0.0040860106237233,-0.054439295083284,0.039144776761532],[-0.025319073349237,-0.05437021329999,-0.045051358640194],[-0.026355208829045,-0.090283811092377,-0.0061100828461349]],[[0.0054211323149502,-0.035379033535719,0.026766395196319],[0.068527743220329,-0.022955507040024,0.069724775850773],[0.042806558310986,0.017744772136211,0.019972242414951]],[[0.037019729614258,-0.027395693585277,0.040662746876478],[0.022820489481091,0.0030775177292526,-0.024258997291327],[-0.044503577053547,0.051013041287661,-0.0062281605787575]],[[0.023501561954618,0.043409261852503,-0.047122500836849],[-0.027230342850089,0.044602982699871,0.029668673872948],[-0.027952136471868,-0.00011029129382223,0.018329121172428]],[[-0.057349607348442,0.0042852303013206,0.047900475561619],[-0.014964500442147,-0.011100012809038,0.024383453652263],[-0.006806805729866,-0.0044314367696643,0.040593061596155]],[[-0.013844018802047,-0.082583539187908,0.046058770269156],[0.023275496438146,-0.029489325359464,-0.0064746700227261],[0.023640813305974,0.0044283377937973,0.0060891611501575]],[[-0.10616619884968,-0.0055659813806415,0.063355952501297],[-0.030011903494596,-0.002224431373179,0.0068110199645162],[0.068253129720688,0.079200349748135,0.026493011042476]],[[0.045580647885799,0.014728225767612,-0.011746725067496],[0.023391285911202,0.023899892345071,0.01273528393358],[0.0029218832496554,-0.039971575140953,0.026999516412616]],[[0.049636274576187,0.077507957816124,-0.042705323547125],[0.017873922362924,-0.042052716016769,0.0086145251989365],[-0.019969983026385,-0.022384295240045,-0.02547044865787]],[[0.068414822220802,0.051471773535013,0.048654798418283],[0.061762064695358,0.004909067414701,-0.0081389518454671],[-0.012395142577589,-0.045839015394449,-0.032567739486694]],[[0.052809629589319,-0.04472242295742,-0.024508774280548],[0.0011961057316512,0.0091993724927306,0.036115076392889],[0.072734527289867,-0.012123943306506,-0.042224001139402]],[[-0.0068935099989176,-0.07126209884882,-0.041162315756083],[-0.014704904519022,0.0081294476985931,0.016579393297434],[-0.012836493551731,0.0052142501808703,0.01870926655829]],[[0.05987311527133,0.034622475504875,-0.064628027379513],[0.00093729386571795,-0.048957359045744,-0.050309363752604],[-0.075206182897091,-0.013521373271942,0.0051944809965789]],[[-0.0090213064104319,0.01467265561223,0.013717885129154],[-0.0034552079159766,-0.079946741461754,-0.036517340689898],[-0.033140677958727,0.06304294615984,0.02328833937645]],[[-0.0038905004039407,0.033043447881937,0.028496194630861],[0.021972332149744,0.011062412522733,0.0027045742608607],[0.011905775405467,-0.041674803942442,-0.037465956062078]],[[0.021345367655158,-0.003489266615361,0.05803395062685],[0.082144923508167,0.0019176879432052,0.054410740733147],[-0.037322852760553,0.0024731771554798,0.0375283844769]],[[-0.0080422339960933,-0.03199078515172,0.071797713637352],[-0.027992090210319,0.026706105098128,0.025573913007975],[-0.013521450571716,0.022892186418176,0.00026456170598976]],[[-0.024996761232615,-0.0065007079392672,-0.030947394669056],[-0.029301445931196,-0.14389804005623,-0.090113773941994],[-0.067267149686813,0.022527970373631,-0.11044219881296]],[[0.033105112612247,-0.046005181968212,0.00028526762616821],[0.012453924864531,-0.026018662378192,-0.012174702249467],[0.017620354890823,-0.078056707978249,0.01768739707768]],[[0.020522380247712,0.074371963739395,-0.091748431324959],[0.022757809609175,0.016498504206538,-0.013512187637389],[0.0066496427170932,0.015864780172706,-0.0057468242011964]],[[0.067770190536976,0.037970717996359,-0.01838063262403],[-0.047059640288353,-0.02080287411809,0.035505048930645],[0.12557569146156,0.010359722189605,0.046431992202997]],[[0.012692834250629,-0.053683631122112,-0.033933851867914],[-0.053111486136913,-0.06901840120554,-0.004026310518384],[-0.026413021609187,0.05725759640336,0.019541716203094]],[[0.0078865559771657,0.07840371131897,-0.017845584079623],[-0.0088574727997184,-0.049708899110556,-0.033605005592108],[0.019061118364334,0.028829477727413,0.043730430305004]],[[0.017726315185428,-0.02013779245317,0.036901962012053],[0.021731570363045,-0.014114424586296,0.0041887098923326],[-0.027011577039957,-0.005298042204231,-0.079019315540791]],[[0.088749811053276,-0.078828655183315,-0.029939716681838],[-0.045890785753727,-0.019980598241091,-0.0050060218200088],[0.078640557825565,-0.05319831520319,0.03602321818471]],[[0.0013107699342072,0.017204223200679,-0.051406797021627],[-0.06418127566576,0.026204964146018,0.061023090034723],[-0.0058199372142553,-0.02799023501575,0.025419307872653]],[[0.056785441935062,-0.077168650925159,-0.0058207274414599],[-0.049170888960361,-0.04592115432024,0.030461959540844],[-0.036213755607605,-0.033542554825544,0.049426414072514]],[[-0.013240844011307,0.0763149112463,0.055906608700752],[-0.01465218141675,-0.012542015872896,0.12927676737309],[-0.041784830391407,-0.046495195478201,0.023066055029631]],[[-0.052105240523815,-0.028151808306575,0.0067917401902378],[0.019232450053096,0.024024687707424,0.07049074023962],[-0.023849243298173,0.03002249635756,-0.052732665091753]],[[0.032533127814531,0.033307246863842,0.04353267326951],[0.0028510277625173,-0.023975815623999,0.044055730104446],[-0.099803492426872,-0.010867699049413,-0.053390517830849]],[[0.02151770144701,-0.060045059770346,0.01306074578315],[-0.021882120519876,0.07293114066124,-0.010142057202756],[0.058520719408989,-0.0026445663534105,-0.049092210829258]],[[-0.038240905851126,0.12799383699894,0.10988236963749],[0.012544794939458,0.028018493205309,0.03910144418478],[-0.054792184382677,0.003504675347358,-0.043070711195469]],[[0.05003934726119,0.039287626743317,0.0045865960419178],[0.046922411769629,-0.033124823123217,-0.038303960114717],[0.073067277669907,0.0032369773834944,0.022809496149421]],[[0.024877849966288,0.028190648183227,-0.041558653116226],[0.011879373341799,-0.036724489182234,0.040512263774872],[0.021495053544641,-0.069474443793297,-0.063195280730724]],[[0.04517088085413,0.056134294718504,0.049551002681255],[-0.074373580515385,0.044791907072067,0.021268963813782],[0.081542707979679,-0.099524855613708,-0.095665290951729]],[[0.01047008484602,0.05951514095068,0.081944398581982],[-0.0055348752066493,0.012614662759006,-0.039129767566919],[0.042141996324062,0.070643819868565,-0.071219526231289]],[[-0.044340074062347,-0.093807823956013,0.02525426261127],[0.026134731248021,-0.025040473788977,0.067924804985523],[-0.038736388087273,0.037972640246153,0.004321401938796]],[[0.011474811471999,0.0011575795942917,0.0037511689588428],[-0.017757479101419,0.045605596154928,-0.023745499551296],[-0.076652012765408,0.037606325000525,0.072939336299896]],[[0.0023404981475323,0.08277527987957,0.020451180636883],[0.04430665448308,0.0075537418015301,0.025374073535204],[0.0062549891881645,-0.025729142129421,-0.0040080188773572]],[[0.019883565604687,0.0012363120913506,0.039625305682421],[-0.043397504836321,0.0079072499647737,-0.019495859742165],[0.046321641653776,-0.062213964760303,0.048333670943975]],[[0.020670479163527,0.049293484538794,-0.043421998620033],[0.02152325026691,-0.069701001048088,0.062198337167501],[0.043510884046555,-0.026910081505775,-0.00067199469776824]],[[0.030033254995942,-0.041749320924282,0.033123504370451],[0.0017407441046089,0.0089187677949667,-0.048025272786617],[-0.0099888499826193,0.0018617443274707,-0.022067354992032]],[[-0.020610794425011,-0.016687799245119,-0.021711362525821],[0.037727739661932,0.060518361628056,0.037189297378063],[-0.010834239423275,0.018462054431438,-0.078848384320736]],[[-0.027946680784225,0.038797322660685,0.0045274924486876],[0.054979540407658,0.051969572901726,0.036487814038992],[0.0028460519388318,-0.0024085724726319,0.02756311930716]],[[0.0020373379811645,0.0062732682563365,0.031462285667658],[0.026078263297677,0.043275736272335,-0.0241030883044],[-0.031622298061848,0.10690850764513,-0.090116016566753]],[[-0.05280602350831,0.017801009118557,-0.050464645028114],[-0.055685613304377,0.041544303297997,0.02564143948257],[0.0012632503639907,0.0021886713802814,0.042281057685614]],[[0.058463368564844,-0.0062890439294279,0.030450042337179],[0.019816799089313,-0.040123239159584,0.0046833446249366],[-0.03075092472136,0.020145239308476,-0.019429633393884]],[[0.0029154997318983,0.0024169303942472,0.014158296398818],[-0.022412676364183,0.039058580994606,0.0067376149818301],[0.01207878254354,0.019813908264041,-0.018116522580385]],[[-0.034511137753725,-0.020614989101887,-0.029663873836398],[0.070730067789555,-0.016529906541109,-0.036527823656797],[0.021621147170663,0.030986569821835,-0.070325993001461]],[[-0.009429007768631,0.016365366056561,-0.017433712258935],[-0.00079594209091738,0.01422974653542,-0.020237503573298],[-0.034021001309156,0.022114409133792,0.025445338338614]],[[-0.023496687412262,0.0022808054927737,0.032964251935482],[0.011727941222489,-0.020077032968402,-0.018934436142445],[-0.00033600840833969,-0.018195325508714,0.03194722533226]],[[0.021237682551146,0.01762242987752,0.058649219572544],[-0.089089386165142,-0.0062240092083812,-0.066645883023739],[0.039527215063572,0.0086453538388014,0.0096512772142887]],[[-0.043758653104305,0.033530961722136,0.06201645731926],[-0.051708161830902,0.029682664200664,-0.00084046501433477],[0.046668406575918,0.087118275463581,0.012143670581281]],[[-0.057500869035721,-0.0053502134978771,0.051245491951704],[-0.012159926816821,-0.028484040871263,-0.056553658097982],[1.8486367480364e-05,0.023007301613688,0.0045207776129246]],[[-0.023982144892216,0.014024348929524,0.061431974172592],[-0.066444292664528,0.037724711000919,0.052207224071026],[-0.009849401190877,-0.083018451929092,0.038262732326984]],[[0.0035123834386468,0.02657525986433,0.021640386432409],[0.016452366486192,-0.0948246717453,0.027620064094663],[0.076568096876144,0.049121085554361,-0.046269457787275]],[[-0.033932060003281,0.050097513943911,-0.015725301578641],[0.030943717807531,-0.011191030032933,-0.01237884350121],[-0.016513727605343,-0.022511750459671,0.083693288266659]],[[-0.015386367216706,0.0039108111523092,0.036947697401047],[-0.010601881891489,0.0095930136740208,0.041644975543022],[-0.044330637902021,-0.031008524820209,0.069685131311417]],[[-0.047833487391472,-0.0033247363753617,0.083038039505482],[0.0030685283709317,0.014530638232827,-0.024410754442215],[-0.068987250328064,0.048568785190582,0.014189025387168]],[[-0.008349284529686,0.03367879614234,0.055653478950262],[0.0016452509444207,0.0031214887276292,-0.060644965618849],[-0.0084717208519578,0.06739266961813,0.019390985369682]],[[0.098017103970051,0.00085842929547653,-0.0022247647866607],[-0.036192432045937,-0.0097460951656103,0.032364256680012],[-0.0044660721905529,-0.034121960401535,0.079953737556934]],[[-0.0031363011803478,0.0027333574835211,0.040924601256847],[-0.019747486338019,0.030438974499702,0.0037849359214306],[-0.0015980949392542,0.043791923671961,0.015848450362682]],[[0.0080241886898875,-0.12477891147137,-0.034932427108288],[0.045003268867731,-0.0080749560147524,0.0027363006956875],[0.031200094148517,0.048522043973207,-0.041924398392439]],[[0.015428819693625,0.036144033074379,-0.017923980951309],[-0.083504624664783,0.023410148918629,0.063213765621185],[-0.014218349941075,0.054164137691259,-0.061519660055637]],[[-0.0076404176652431,0.029999168589711,0.033712062984705],[0.038692258298397,0.02571914345026,-0.0074728764593601],[0.029116144403815,-0.04378841817379,-0.048426195979118]],[[0.011505551636219,0.0078051812015474,0.024076443165541],[0.018523931503296,-0.0052373199723661,-0.029272628948092],[-0.073591850697994,-0.0096913613379002,-0.015187729150057]],[[0.015728775411844,-0.0070063546299934,0.048790872097015],[-0.055580321699381,0.07073301076889,-0.023723190650344],[-0.055409658700228,0.04931828379631,-0.019683692604303]],[[-0.019474603235722,-0.0060527361929417,-0.024514829739928],[-0.037386942654848,0.074318058788776,-0.025472881272435],[0.027644274756312,-0.037616729736328,0.0020709312520921]],[[-0.0047813267447054,-0.046012420207262,0.061813984066248],[0.032378658652306,0.021922826766968,0.015126706101],[-0.042750913649797,0.029147943481803,-0.013289872556925]],[[0.056853752583265,0.0061575747095048,-0.00029176799580455],[-0.01165406871587,-0.060052819550037,-0.010156542062759],[-0.047971788793802,0.055469695478678,-0.014067972078919]],[[0.023258617147803,-0.010433752089739,-0.01228860206902],[0.033104512840509,-0.020232317969203,0.070440374314785],[0.036730270832777,-0.0040059126913548,-0.0095216641202569]],[[-0.035236325114965,0.0037082554772496,0.014418923296034],[-0.034182626754045,0.012081033550203,0.05124880746007],[0.10068829357624,-0.014946720562875,0.012065131217241]],[[0.029356848448515,-0.03713671118021,0.057131227105856],[0.00095089169917628,-0.07142598181963,-0.01773832924664],[0.0066331401467323,0.01680907048285,0.01568784378469]],[[-0.011911728419363,0.067396193742752,-0.037315513938665],[-0.091179832816124,0.013468506745994,-0.010967643000185],[0.054856527596712,0.052529990673065,0.0093986354768276]],[[-0.037691455334425,0.058050338178873,-0.023908715695143],[0.030427735298872,0.055148396641016,0.026239860802889],[0.025029553100467,0.018095392733812,0.03319663926959]],[[-0.01940163038671,0.029159650206566,-0.024570876732469],[0.028475444763899,-0.045979369431734,0.01442061830312],[-0.015405121259391,-0.018355315551162,-0.051042847335339]],[[-0.010515323840082,0.01107198279351,0.022758506238461],[0.014376769773662,0.025544133037329,-0.070945434272289],[-0.048188831657171,0.029684063047171,0.017721120268106]],[[0.052576001733541,0.022100711241364,0.044570285826921],[-0.02911800891161,0.024498023092747,-0.037436656653881],[0.016786521300673,-0.019274037331343,0.02214870415628]],[[-0.058538351207972,0.016189249232411,0.0010905822273344],[0.01096179895103,0.048586439341307,-0.0070460215210915],[-0.049453873187304,0.026578191667795,0.036487597972155]],[[-0.021043101325631,0.0047989194281399,-0.010901954956353],[0.030409559607506,2.0000767108286e-05,-0.0022792727686465],[0.053876169025898,-0.01442644931376,0.024505401030183]],[[0.046541444957256,0.029529148712754,-0.0072968997992575],[-0.073261670768261,0.067063346505165,-0.020402926951647],[-0.014901912771165,0.017652118578553,-0.016714131459594]],[[0.012653332203627,0.041564095765352,0.040368214249611],[0.042136061936617,0.063497766852379,0.0040197297930717],[-0.078865699470043,-0.013799290172756,-0.012598698958755]],[[-0.00068342935992405,-0.046007841825485,-0.03307655826211],[-0.028622368350625,-0.018579786643386,0.02474014274776],[0.0087011661380529,-0.04124816134572,-0.040206808596849]],[[-0.020426528528333,0.022641053423285,0.023923641070724],[-0.02234548330307,-0.042193606495857,0.053417515009642],[-0.0086737275123596,0.028945172205567,-0.009563366882503]],[[0.015203991904855,-0.034135352820158,0.063459888100624],[-0.011809697374701,0.072393260896206,0.042137198150158],[0.013318490236998,0.041872873902321,0.0098373889923096]],[[-0.057138651609421,-0.0116200838238,0.02724215388298],[0.024572750553489,-0.046639002859592,0.022330677136779],[-0.04589581489563,-0.0058019640855491,0.068523667752743]],[[0.0051829502917826,-0.036186117678881,0.034216716885567],[0.090500317513943,-0.0070588802918792,-0.059816803783178],[-0.022955093532801,-0.010216563008726,0.012105721980333]],[[0.0029530196916312,-0.054438136518002,-0.052268736064434],[-0.099099352955818,0.009036872535944,0.013921367935836],[-0.022881992161274,-0.028244161978364,0.034539941698313]],[[-0.062480550259352,0.021890195086598,-0.077305309474468],[-0.013152338564396,0.079382590949535,-0.026893191039562],[-0.018279146403074,0.040585104376078,0.0182078871876]],[[0.045014765113592,0.003649631049484,0.020277842879295],[0.0079736160114408,0.0019767170306295,0.046037007123232],[-0.032618030905724,-0.032884530723095,0.0095676733180881]],[[0.065435975790024,0.083197705447674,-0.020058942958713],[-0.010207320563495,-0.033402051776648,0.0068025114014745],[-0.029433673247695,0.0031046820804477,0.031151007860899]],[[-0.013207363896072,-0.0033277857583016,0.018211301416159],[0.010944393463433,-0.0090422183275223,0.0028898289892823],[-0.034734509885311,0.050958666950464,-0.039493594318628]],[[0.012829153798521,-0.044102426618338,0.018888121470809],[0.032993789762259,0.01506688632071,0.12489932775497],[0.044350579380989,-0.035317245870829,0.0080147897824645]],[[-0.025928476825356,0.026867136359215,0.023574849590659],[-0.021826796233654,0.011214257217944,0.021036615595222],[0.054867118597031,0.029595984145999,-0.039857003837824]],[[0.076328665018082,-0.016620747745037,-0.040769953280687],[0.031453285366297,0.018065053969622,-0.018180826678872],[-0.050890024751425,0.014018796384335,-0.044161535799503]],[[-0.0082977060228586,-0.030743388459086,-0.062940269708633],[0.021323131397367,0.049972556531429,0.052835162729025],[-0.012465119361877,0.065306164324284,0.046531226485968]],[[-0.0054571651853621,-0.042039733380079,-0.0024515953846276],[0.0018495836993679,0.010410025715828,0.024944880977273],[0.031828638166189,0.090911485254765,0.058127883821726]],[[-0.011433241888881,-0.00065658352104947,0.070619806647301],[-0.0060400106012821,-0.013974575325847,0.017660671845078],[0.023411761969328,0.01334169972688,-0.0011752297868952]],[[0.0077900835312903,0.042269214987755,0.010323815979064],[-0.026519676670432,-0.0068457596935332,-0.036738339811563],[0.10307927429676,-0.053244523704052,0.069865234196186]],[[-0.010524781420827,-0.033686362206936,0.002628109883517],[0.010333873331547,-0.089595586061478,-0.01920966245234],[0.057347383350134,-0.044840402901173,0.042180005460978]],[[-0.053805500268936,0.015579734928906,0.0062582571990788],[0.01126023568213,-0.088262744247913,0.043088026344776],[-0.0066598495468497,-0.01110010035336,0.0039797103963792]],[[-0.061597395688295,-0.034881882369518,0.054344542324543],[-0.055421926081181,0.067902714014053,0.060042109340429],[0.0239929985255,-0.029335234314203,-0.11010769754648]]],[[[0.00092284299898893,0.0015470365760848,-0.021933317184448],[0.057377342134714,-0.012087464332581,-0.055859010666609],[0.013648932799697,0.089890971779823,0.0021140701137483]],[[0.03929590433836,-0.04111709445715,0.051613420248032],[0.053070124238729,-0.013826216571033,-0.018040170893073],[-0.037764132022858,0.091856330633163,-0.052861824631691]],[[-0.065412051975727,0.01427108142525,0.017130116000772],[0.01965837366879,-0.026621667668223,-0.10966518521309],[-0.055212706327438,-0.11097130924463,-0.074043944478035]],[[-0.19518913328648,-0.091671764850616,-0.21550215780735],[0.11682426929474,-0.083237834274769,-0.11135768145323],[-0.040393061935902,-0.026535529643297,-0.2133990675211]],[[-0.049904316663742,0.0020074548665434,0.044337052851915],[0.023486139252782,0.068990580737591,0.06359139829874],[0.070329174399376,-0.018667291849852,0.028277836740017]],[[0.048084583133459,-0.028752671554685,-0.043930277228355],[-0.057116575539112,0.013647534884512,-0.0022024584468454],[0.0023314540740103,0.060030415654182,-0.095709502696991]],[[-0.019684869796038,0.078718565404415,-0.089364245533943],[0.065027758479118,0.047992497682571,0.10243650525808],[-0.029149182140827,-0.1201313957572,0.12273600697517]],[[-0.0022011913824826,0.13248874247074,0.015479077585042],[0.014454896561801,0.053801394999027,0.073110669851303],[0.094467885792255,0.05995474383235,-0.00015794156934135]],[[-0.14662477374077,-0.13136301934719,-0.061620503664017],[-0.027058759704232,0.02047311142087,-0.014383161440492],[0.066315777599812,0.033058300614357,0.025250267237425]],[[0.013409599661827,0.045021254569292,-0.15608771145344],[0.044400282204151,0.072934508323669,-0.10017313808203],[0.081439517438412,0.021488865837455,-0.013051426038146]],[[0.070307061076164,0.13316316902637,0.0068386700004339],[0.0027615029830486,0.047432780265808,0.017868319526315],[-0.0040890974923968,0.037021685391665,-0.061952594667673]],[[0.091930896043777,-0.015454994514585,0.020546374842525],[-0.019075999036431,-0.089122824370861,0.020472915843129],[0.040901429951191,-0.030942721292377,-0.052981968969107]],[[-0.015179028734565,0.039309605956078,0.014841487631202],[-0.016586523503065,0.0081059457734227,0.12968423962593],[0.18878982961178,0.17864468693733,0.075174897909164]],[[0.0021229099947959,0.019752623513341,-0.017002841457725],[0.069445677101612,0.12979178130627,-0.034234646707773],[0.04993948340416,0.024458324536681,-0.051158707588911]],[[-0.14566585421562,-0.1847371160984,0.096276246011257],[-0.025091048330069,-0.076134487986565,-0.12563766539097],[0.033429209142923,0.026281349360943,-0.15021400153637]],[[-0.0018454897217453,0.060949563980103,0.023172795772552],[0.12113366276026,-0.05016628280282,0.11028203368187],[0.06822495162487,-0.14493942260742,-0.10774441063404]],[[0.097218446433544,-0.033870149403811,-0.37054324150085],[0.16625244915485,-0.072024323046207,-0.12745685875416],[0.012630574405193,-0.15767967700958,0.0064229071140289]],[[0.028357066214085,-0.11648658663034,0.21339708566666],[-0.072115890681744,-0.051635172218084,0.15673576295376],[-0.14569438993931,-0.091307625174522,0.039753802120686]],[[-0.024406455457211,-0.020019013434649,0.063741579651833],[0.029261808842421,0.0061570219695568,-0.019744465127587],[0.07048624753952,0.010949736461043,0.043764874339104]],[[-0.069215334951878,-0.023155871778727,-0.072094149887562],[0.036409251391888,-0.070895709097385,-0.11492945253849],[0.030834374949336,0.073521099984646,-0.05865578353405]],[[0.035135086625814,0.066159747540951,0.048007804900408],[-0.044336915016174,-0.12275138497353,0.11777129769325],[-0.15189395844936,-0.33657225966454,-0.26129218935966]],[[-0.0092359911650419,-0.15365013480186,-0.062813855707645],[-0.095750153064728,-0.092697493731976,0.039646491408348],[0.017109028995037,-0.079541146755219,0.075330898165703]],[[0.13183537125587,-0.0049479752779007,0.022736391052604],[-0.027961017563939,-0.027454275637865,0.034980643540621],[0.076676338911057,-0.0016641126712784,-0.038413044065237]],[[-0.029150646179914,0.023039216175675,-0.0054048388265073],[0.11615755409002,0.032918594777584,0.078147873282433],[-0.0009298735531047,-0.032363705337048,-0.081000909209251]],[[-0.092061214148998,-0.10758543759584,-0.096246853470802],[-0.035424701869488,-0.13547860085964,0.051923390477896],[-0.0092457449063659,0.0058787502348423,-0.2623299062252]],[[0.021984769031405,0.079605869948864,0.038513280451298],[-0.046408992260695,-0.053503919392824,0.039541218429804],[0.048602536320686,0.0086097186431289,0.07417169958353]],[[-0.067361168563366,-0.083515979349613,-0.11084129661322],[-0.026487873867154,0.0054190745577216,-0.13801763951778],[0.0082750571891665,0.099135957658291,-0.12535513937473]],[[0.10796874761581,-0.046887803822756,0.062950745224953],[0.063795693218708,0.083615608513355,-0.013652441091835],[0.0016133286990225,0.080615743994713,-0.049640461802483]],[[-0.011790806427598,0.00018781586550176,0.023308359086514],[-0.090587668120861,-0.0062278779223561,-0.026495380327106],[-0.033941317349672,0.018957024440169,-0.061242219060659]],[[-0.0025043142959476,-0.026570249348879,-0.059524614363909],[0.031254582107067,-0.054450958967209,0.069201096892357],[0.0048178238794208,0.037834297865629,-0.13566675782204]],[[-0.027650753036141,0.072275288403034,0.045715615153313],[0.048690617084503,-0.01382549200207,-0.03803925216198],[-0.04134526848793,0.039470501244068,-0.044936493039131]],[[-0.0044180885888636,0.048050656914711,-0.18779841065407],[0.058356519788504,-0.051892288029194,0.065785206854343],[-0.033633563667536,0.029083754867315,-0.028592258691788]],[[0.065051175653934,-0.028439171612263,-0.13120838999748],[0.072743341326714,0.064703240990639,-0.027014747262001],[-0.024192333221436,0.027979591861367,-0.047170463949442]],[[0.060177933424711,0.060158796608448,0.023127719759941],[0.0026017772033811,-0.0032604727894068,-0.027158575132489],[-0.016475453972816,0.034694988280535,-0.093211099505424]],[[0.088763013482094,-0.034791737794876,-0.03039145283401],[0.19202327728271,0.10757254809141,-0.0042561427690089],[0.21990916132927,-0.0059049618430436,0.045411761850119]],[[-0.093620114028454,-0.019930580630898,0.022481938824058],[-0.085726238787174,-0.033291440457106,0.12158045172691],[-0.035115230828524,-0.034394651651382,0.031099429354072]],[[0.0049105011858046,-0.035296771675348,0.12510795891285],[-0.022859275341034,0.0091740470379591,0.035389125347137],[0.14456854760647,-0.023334370926023,-0.025999389588833]],[[-0.0067200306802988,0.032529700547457,-0.013763027265668],[-0.090814240276814,0.01957930251956,-0.04345852509141],[0.035518262535334,-0.15668803453445,0.038044080138206]],[[0.017932979390025,0.036980431526899,0.048499625176191],[0.016955576837063,5.1167244237149e-06,0.016465995460749],[-0.05549443885684,-0.13254752755165,-0.0584906488657]],[[-0.06772868335247,0.062657833099365,0.15652750432491],[0.0078102299012244,0.025394586846232,0.097546450793743],[-0.081206865608692,0.15296997129917,0.096833370625973]],[[-0.060667298734188,-0.029744859784842,-0.054057791829109],[0.096900887787342,-0.051441058516502,-0.078881241381168],[0.030888622626662,0.037561256438494,-0.028166215866804]],[[-0.00012329743185546,-0.076930053532124,0.032863527536392],[-0.0057582017034292,0.020582130178809,0.037506893277168],[-0.046615738421679,-0.0095901023596525,0.021291900426149]],[[0.069449290633202,-0.075859293341637,-0.008016487583518],[-0.10201448947191,0.12354702502489,-0.16434082388878],[0.037790942937136,0.01567336730659,0.071388408541679]],[[0.038826890289783,-0.061682660132647,0.0094737475737929],[-0.0077626225538552,-0.034375872462988,-0.014605523087084],[0.030724734067917,0.017132980749011,0.020849967375398]],[[-0.24972984194756,0.12611016631126,0.057101018726826],[-0.086636953055859,-0.11564406007528,0.044436909258366],[0.014966931194067,-0.047106131911278,-0.019977532327175]],[[0.12180519104004,-0.030969275161624,0.06980811804533],[-0.12920068204403,-0.047823172062635,-0.0034358538687229],[0.086140163242817,-0.070113718509674,0.10873392224312]],[[-0.084857322275639,-0.17399927973747,0.056906301528215],[-0.11666651815176,-0.16859915852547,-0.010811286978424],[-0.16051390767097,-0.10948270559311,0.027665762230754]],[[0.013312264345586,0.15201751887798,-0.033577058464289],[-0.064817167818546,0.0085539240390062,-0.031756408512592],[0.0493523478508,0.012934728525579,0.045653034001589]],[[0.011548016220331,0.019556844606996,-0.011465192772448],[0.061119269579649,-0.076677896082401,-0.023394925519824],[-0.063388966023922,0.11306469887495,0.080752968788147]],[[-0.019185712561011,-0.029376864433289,-0.020977647975087],[-0.05168154835701,-0.018126673996449,-0.017408851534128],[0.069950737059116,-0.086060911417007,-0.051881439983845]],[[-0.074940286576748,0.092824898660183,-0.030562970787287],[-0.045671138912439,0.11914973706007,0.081011407077312],[0.0081438003107905,0.047083627432585,0.086353287100792]],[[0.049008443951607,0.015534999780357,0.0099488776177168],[0.039805170148611,0.031145973131061,-0.02664852514863],[0.017533356323838,0.02580401673913,0.059488896280527]],[[0.13947600126266,-0.03860941529274,-0.023229151964188],[-0.017539003863931,0.043199069797993,0.01603146083653],[-0.050159595906734,-0.020029967650771,0.077238872647285]],[[0.11470001190901,0.12468329071999,-0.038627628237009],[0.036485191434622,0.059569105505943,0.061273254454136],[0.020664794370532,-0.0040963711217046,-0.026811877265573]],[[0.13019506633282,0.12176992744207,-0.044468473643064],[0.034205984324217,0.035257440060377,-0.0087037244811654],[0.0022831971291453,0.092299818992615,-0.067836992442608]],[[0.12147628515959,-0.0062332102097571,0.0042989877983928],[-0.077318258583546,0.06628442555666,-0.026613416150212],[0.0075881127268076,0.0041119731031358,-0.0013883931096643]],[[-0.076995000243187,0.098534904420376,0.0061428574845195],[-0.10564134269953,-0.0085825426504016,0.01122699957341],[0.11113350093365,-0.0082857077941298,0.10686652362347]],[[-0.03478828817606,-0.056790217757225,0.013343706727028],[0.028439963236451,0.014357784762979,-0.030333813279867],[0.024281302466989,0.077481493353844,0.10065723955631]],[[0.076507531106472,0.017356760799885,-0.0079166116192937],[0.0083889374509454,-0.10008919984102,-0.009798115119338],[0.052581682801247,0.035489521920681,0.057830538600683]],[[0.023006254807115,-0.017029916867614,0.011819556355476],[0.049763929098845,0.087694525718689,0.033879667520523],[0.12407782673836,0.0014632277889177,-0.093079522252083]],[[-0.015341961756349,-0.02636831253767,-0.014858745038509],[-0.030363580211997,0.042786598205566,0.0059564393013716],[0.031823132187128,-0.10131139308214,0.049941550940275]],[[0.029280478134751,0.020504822954535,-0.11581706255674],[0.037119623273611,0.095316812396049,0.077614039182663],[0.050886284559965,0.017516892403364,-0.093983538448811]],[[0.028051789849997,-0.10901887714863,-0.034300290048122],[0.033205702900887,-0.049962051212788,-0.0028387194033712],[-0.010474624112248,-0.042497605085373,-0.0023191871587187]],[[-0.069650262594223,0.05608045309782,0.040406655520201],[0.0034243348054588,0.027308724820614,-0.079029463231564],[-0.013787468895316,0.087766528129578,0.00053554063197225]],[[0.062114551663399,0.063634999096394,0.048827659338713],[-0.011973973363638,-0.039538405835629,0.064112178981304],[-0.086562737822533,0.085711650550365,-0.08205272257328]],[[-0.048833131790161,-0.017374077811837,0.084747537970543],[-0.021090019494295,0.053387336432934,0.018838375806808],[-0.1308121830225,-0.17320288717747,-0.0002897790109273]],[[0.11554843187332,0.052172966301441,0.023761393502355],[0.027690770104527,0.13564413785934,0.10506313294172],[0.048912540078163,0.056330848485231,-0.11611068993807]],[[0.0926863104105,-0.023270156234503,0.073916047811508],[0.017286725342274,0.010192569345236,0.05520137399435],[-0.076916240155697,-0.05464905500412,0.10953350365162]],[[0.067605577409267,-0.029189016669989,-0.03657303377986],[0.10248237848282,-0.08501960337162,0.067797161638737],[0.048099089413881,0.00020535768999252,-0.0085096219554543]],[[-0.18873633444309,0.0090644424781203,-0.051115602254868],[-0.11828104406595,-0.1082165017724,-0.029168235138059],[0.045532766729593,0.08107054233551,0.037480641156435]],[[-0.088923908770084,-0.044692069292068,0.021257610991597],[-0.039872515946627,-0.0088278409093618,0.073197759687901],[-0.062248233705759,0.036680277436972,0.051746983081102]],[[-0.041220646351576,-0.13177365064621,-0.039038825780153],[-0.074154034256935,-0.10661317408085,-0.040172901004553],[-0.065074756741524,-0.048688065260649,0.048820205032825]],[[0.10194998979568,-0.0010279105044901,-0.0015996667789295],[0.018116990104318,-0.009686129167676,-0.024155460298061],[-0.10366966575384,0.015923179686069,0.043269563466311]],[[-0.0015047404449433,-0.0013891039416194,-0.053691606968641],[-0.038386292755604,0.056922990828753,-0.012832991778851],[-0.002596240490675,0.047030288726091,0.0059731444343925]],[[-0.03038758225739,-0.023272305727005,0.082297846674919],[-0.062769502401352,-0.064020775258541,0.019608037546277],[0.030318742617965,0.12456254661083,0.09265099465847]],[[-0.060990933328867,-0.0023423808161169,-0.014866785146296],[-0.068753145635128,-0.062623016536236,0.054495580494404],[-0.099487952888012,-0.05795419216156,0.10663129389286]],[[0.017361240461469,-0.0083519220352173,-0.020876549184322],[0.0036245540250093,-0.066178016364574,0.022218653932214],[-0.12067231535912,-0.094516046345234,0.0092083159834146]],[[-0.044345181435347,0.057732909917831,0.047878231853247],[0.10455100238323,-0.049073059111834,0.038385264575481],[0.10372713208199,0.057376354932785,-0.030048837885261]],[[-0.044911954551935,0.051388718187809,0.039425082504749],[-0.020309530198574,0.039937678724527,0.012589521706104],[-0.038440484553576,-0.019687907770276,0.026444768533111]],[[-0.0614571608603,-0.01104277279228,-0.10251417756081],[0.033680360764265,0.056819599121809,0.023323403671384],[-0.049902897328138,-0.0050494745373726,-0.025469265878201]],[[0.1394948810339,0.015058443881571,0.0035751031246036],[-0.017751008272171,-0.063994213938713,0.007975285872817],[-0.085625357925892,-0.039677459746599,0.09038084000349]],[[-0.098483338952065,-0.011292529292405,-0.11267863959074],[0.0096808420494199,-0.038186147809029,0.12711153924465],[-0.096438385546207,0.0050294063985348,0.080997288227081]],[[-0.058861140161753,0.056521978229284,0.040380567312241],[-0.036122001707554,0.05593029409647,-0.041895046830177],[-0.074991270899773,0.015774173662066,0.029651384800673]],[[-0.075711891055107,-0.026505207642913,-0.016793329268694],[0.1131874397397,0.051027465611696,-0.014966815710068],[0.055216953158379,0.053225431591272,-0.081429146230221]],[[0.036897238343954,0.044325906783342,-0.010006781667471],[0.020771536976099,-0.024388795718551,-0.042984787374735],[0.040089748799801,-0.037766799330711,-0.12417781352997]],[[0.024360159412026,0.036435186862946,-0.00070594192948192],[-0.054546415805817,-0.010085216723382,0.084379412233829],[-0.015072653070092,0.067906506359577,0.027214674279094]],[[0.021362069994211,0.074841916561127,-0.026495607569814],[0.0075525166466832,0.078613512217999,0.076581709086895],[-0.088025264441967,-0.0079497527331114,0.051833186298609]],[[0.0077624288387597,-0.067393198609352,-0.0035228368360549],[-0.02128435857594,-0.019988873973489,-0.0074046500958502],[0.046351194381714,-0.014425315894186,0.055139347910881]],[[0.048939507454634,0.016805309802294,0.042664803564548],[-0.031865317374468,-0.0017847436247393,0.039747849106789],[-0.02280636318028,-0.025494901463389,0.019559260457754]],[[0.00038615230005234,-0.000871712109074,0.024691708385944],[-0.053682290017605,0.039141390472651,-0.11527922749519],[-0.04780549928546,0.080302312970161,-0.036061685532331]],[[-0.074259579181671,-0.10695837438107,0.048836223781109],[-0.080725312232971,-0.073807097971439,0.10303239524364],[-0.11036712676287,0.14926098287106,0.12508299946785]],[[0.040943969041109,0.017016865313053,0.018289336934686],[0.047994751483202,-0.029300827533007,-0.047364983707666],[-0.00095333368517458,0.0057941740378737,-0.091328456997871]],[[0.11607340723276,-0.03208664059639,-0.047767098993063],[0.16620875895023,0.019398065283895,0.022515058517456],[0.087053500115871,-0.034701872617006,0.039339195936918]],[[-0.0082293376326561,-0.10316559672356,0.031658861786127],[-0.020047312602401,0.038127142935991,-0.0061753815971315],[0.0068575870245695,0.0020749215036631,-0.0057440884411335]],[[-0.014741796068847,0.066188313066959,0.04336054623127],[0.057652775198221,0.043376173824072,-0.062361411750317],[-0.00053571059834212,0.036099784076214,-0.086530052125454]],[[-0.016550574451685,0.053833156824112,-0.078101873397827],[-0.075149513781071,0.003944861702621,-0.022170668467879],[-0.086643405258656,0.073075227439404,0.0084414426237345]],[[0.019949501380324,-0.042379830032587,0.066426895558834],[0.1108571216464,-0.0027428651228547,-0.083064749836922],[-0.0060508865863085,0.10283384472132,-0.022635824978352]],[[-0.10008892416954,-0.018658455461264,-0.0089176893234253],[-0.040430553257465,0.042710080742836,-0.012071495875716],[0.033508516848087,0.11784741282463,0.14205828309059]],[[0.10517904162407,-0.024339908733964,0.023694468662143],[-0.12660393118858,0.027667310088873,-0.04745489358902],[0.10856798291206,-0.028295481577516,-0.056087300181389]],[[-0.16848428547382,0.075610876083374,-0.10552076250315],[0.083938330411911,-0.144929215312,-0.053466200828552],[-0.058787681162357,0.057469677180052,0.03844340890646]],[[-0.0024429680779576,0.016002865508199,-0.0024630210828036],[-0.089230433106422,0.051929883658886,0.11889124661684],[-0.014335314743221,-0.0015895725227892,-0.030113806948066]],[[-0.023219967260957,-0.036170680075884,-0.12366976588964],[-0.15249203145504,-0.0084849828854203,-0.056575555354357],[0.075983010232449,0.079710282385349,0.076964758336544]],[[-0.12555432319641,-0.15356995165348,-0.091535344719887],[-0.16928921639919,-0.087144255638123,-0.15517073869705],[-0.096942074596882,-0.057367149740458,-0.1600307226181]],[[-0.039220433682203,-0.093147717416286,0.068247243762016],[-0.00094139360589907,-0.072176069021225,-0.01779548637569],[-0.073899500072002,-0.054757371544838,0.041237946599722]],[[-0.044088035821915,0.04352955520153,0.034384351223707],[-0.052457921206951,0.03321784734726,-0.021656047552824],[-0.0044340630993247,0.02464765496552,-0.034336820244789]],[[-0.040711462497711,0.11059339344501,0.0025359138380736],[0.044338051229715,-0.015580874867737,-0.071744680404663],[0.07518182694912,-0.016331505030394,0.010916376486421]],[[0.045787006616592,-0.082846648991108,0.0463623739779],[-0.038017261773348,-0.019842103123665,-0.031186558306217],[-0.014423516578972,-0.056177232414484,-0.0086989291012287]],[[-0.13646775484085,0.081634499132633,0.019579790532589],[-0.0096754282712936,0.079723969101906,0.041922610253096],[-0.0016113929450512,0.018133709207177,-0.010590682737529]],[[0.040114067494869,0.052150148898363,-0.010172300972044],[0.065880589187145,-0.07527782022953,-0.058308936655521],[0.038128320127726,-0.08289061486721,-0.041211266070604]],[[0.035494722425938,0.001667121425271,0.042690888047218],[-0.020118521526456,0.062735885381699,-0.014086573384702],[6.9175475800876e-05,0.013811467215419,0.01953431405127]],[[-0.0028219057712704,0.10108993202448,-0.051350306719542],[-0.028028145432472,0.02561735548079,0.013791684992611],[-0.030112002044916,-0.071530804038048,-0.00056691275676712]],[[0.054712507873774,-0.0053858542814851,-0.027778876945376],[-0.048929627984762,0.030983325093985,0.065965056419373],[0.076856292784214,0.05746215954423,0.088063731789589]],[[0.064319610595703,0.0048411637544632,-0.053591802716255],[0.015494532883167,-0.07997403293848,-0.0023847057018429],[0.033570729196072,-0.0065930713899434,-0.052747126668692]],[[-0.027564812451601,0.0015780765097588,-0.023819979280233],[-0.078426219522953,-0.12610603868961,-0.025227773934603],[0.0058143902570009,0.078246720135212,0.0297273080796]],[[-0.046028427779675,0.077445067465305,0.091013923287392],[-0.0059082452207804,-0.0791871920228,0.063026748597622],[0.006460530217737,0.044505834579468,0.011760542169213]],[[-0.064205460250378,-0.035759147256613,-0.076865881681442],[-0.00048766125109978,-0.06761172413826,0.0074388673529029],[-0.056446749716997,-0.1095105111599,-0.033199567347765]],[[0.035908635705709,0.054212085902691,0.1612192094326],[0.01874378696084,-0.053469359874725,0.015313389711082],[-0.034943737089634,-0.026069711893797,-0.057705342769623]],[[-0.014469253830612,0.020009120926261,-0.0022388615179807],[-0.036791998893023,0.06651558727026,-0.030386220663786],[0.01331964880228,-0.028892816975713,0.090802662074566]],[[-0.030271178111434,-0.029306177049875,-0.024894397705793],[-0.12554509937763,-0.026054779067636,0.0070161274634302],[-0.091108419001102,0.052460860460997,0.017088428139687]],[[0.071845889091492,0.029050063341856,-0.024279993027449],[-0.076082929968834,-0.036493454128504,-0.072941482067108],[0.10634552687407,0.031403936445713,0.0070852334611118]],[[0.024988384917378,-0.029146710410714,-0.012463732622564],[0.04816010594368,0.051336221396923,0.018374565988779],[0.040035475045443,0.05560290440917,0.11095746606588]],[[0.032614402472973,-0.054253093898296,-0.030435603111982],[-0.025898160412908,-0.19719050824642,-0.032759059220552],[-0.35852777957916,-0.3126021027565,-0.12592758238316]],[[0.08538718521595,-0.034737836569548,-0.085854798555374],[0.031626023352146,0.073527812957764,-0.0092101190239191],[0.0190619379282,-0.060309939086437,-0.023776080459356]],[[0.11168751865625,-0.010963188484311,0.0067225252278149],[-0.03247119858861,0.071415074169636,0.0208182875067],[0.060310792177916,0.038786917924881,0.042939424514771]],[[-0.084680452942848,-0.023471435531974,0.020516121760011],[0.026049135252833,0.051252387464046,-0.040807846933603],[-0.08477096259594,-0.051287677139044,0.074183903634548]],[[-0.044083926826715,-0.10317169129848,-0.070505931973457],[0.047125492244959,-0.083269856870174,0.06969041377306],[0.032410573214293,-0.057673759758472,0.0086445119231939]],[[0.027356719598174,0.010960566811264,0.10700535029173],[-0.0072240312583745,0.003931081853807,0.085881166160107],[-0.013127455487847,0.02166698500514,-0.0075172861106694]],[[0.073042951524258,-0.087155885994434,0.0656758248806],[-0.0016706021269783,-0.031331971287727,-0.031918682157993],[-0.092829562723637,0.049183946102858,0.0036958805285394]]],[[[-0.0055656684562564,0.069974735379219,-0.012722980231047],[0.14857843518257,-0.14728011190891,-0.034084986895323],[0.088647417724133,0.092600800096989,0.045427117496729]],[[-0.0099073518067598,0.067685969173908,-0.043510150164366],[-0.060039281845093,-0.24139833450317,-0.21269926428795],[0.088393934071064,0.04549228772521,-0.034736059606075]],[[-0.044610965996981,-0.03660948574543,-0.061619035899639],[-0.15535315871239,0.0033163791522384,0.051546648144722],[0.12765251100063,0.074729204177856,-0.040890198200941]],[[0.013746787793934,0.057977497577667,0.097634248435497],[0.025529945269227,0.075434289872646,0.021986866369843],[0.0033860967960209,-0.014513733796775,0.090092286467552]],[[0.03584561124444,-0.06046449393034,-0.040250301361084],[0.00302964146249,-0.041298817843199,0.074504144489765],[0.34958079457283,-0.073527410626411,0.031008133664727]],[[-0.0049969130195677,0.048534870147705,-0.14502374827862],[0.014149568043649,0.039678413420916,0.079436607658863],[-0.016850693151355,-0.15430065989494,0.034825883805752]],[[-0.10146971046925,-0.04877906665206,0.086836829781532],[0.019807290285826,0.0081819463521242,-0.089086785912514],[0.12541580200195,-0.056873254477978,0.13596928119659]],[[0.074024029076099,-0.05515456572175,0.066478341817856],[0.078247487545013,-0.065973617136478,0.10697671771049],[-0.15679715573788,0.054046176373959,0.046805936843157]],[[-0.14616161584854,-0.12250535190105,0.2493661493063],[-0.034942865371704,-0.014889037236571,8.4884472016711e-05],[-0.079290851950645,0.14472499489784,0.21971854567528]],[[0.0072347223758698,-0.026806557551026,-0.096739433705807],[-0.054518532007933,0.037719644606113,-0.039020109921694],[0.058464121073484,0.041063271462917,0.029427696019411]],[[0.059669781476259,-0.019317355006933,0.14798575639725],[0.0842419937253,-0.011875523254275,0.10739486664534],[-0.062104888260365,-0.095579899847507,0.059247594326735]],[[0.058693755418062,-0.11727620661259,0.20501333475113],[-0.084798447787762,-0.052582494914532,-0.057791393250227],[-0.18644361197948,0.0001070951402653,-0.11836175620556]],[[-0.082620605826378,0.071251906454563,0.011715142987669],[-0.15264429152012,0.073017574846745,0.041246797889471],[0.037714254111052,-0.013109066523612,0.17731913924217]],[[-0.072322435677052,-0.058307848870754,0.029087752103806],[0.10555244237185,0.14087815582752,-0.030826400965452],[0.19842906296253,-0.13794068992138,-0.24062117934227]],[[0.0094058811664581,0.072413243353367,-0.021166687831283],[0.064010336995125,0.0038307525683194,-0.079752996563911],[-0.024475706741214,-0.1382865011692,-0.0082703623920679]],[[-0.053085081279278,0.062727972865105,0.023921899497509],[-0.030122455209494,-0.092740446329117,-0.015549297444522],[-0.072048082947731,-0.032270412892103,-0.026688922196627]],[[-0.046021431684494,-0.012012235820293,0.021849248558283],[-0.021087739616632,0.091713011264801,-0.094779931008816],[-0.0080131329596043,-0.047121960669756,0.11500834673643]],[[0.031966667622328,-0.034531876444817,0.01754086650908],[-0.056578539311886,0.09573757648468,-0.091336205601692],[0.0016328467754647,0.03889949247241,-0.036654740571976]],[[-0.058092813938856,0.0073739555664361,0.0017576027894393],[-0.07425083220005,-0.060198914259672,-0.054235119372606],[-0.096052676439285,-0.016773816198111,-0.09229202568531]],[[-0.057689171284437,-0.066426500678062,0.014182019978762],[-0.093997001647949,0.043131936341524,-0.11305917799473],[-0.028666561469436,0.12103873491287,-0.10882807523012]],[[-0.11994181573391,-0.0053031267598271,0.080928012728691],[0.040238309651613,-0.12458968162537,-0.0049252761527896],[-0.20444066822529,0.045467048883438,0.071038223803043]],[[0.079147584736347,-0.021946910768747,0.019188981503248],[0.080336041748524,0.029637712985277,0.081255167722702],[-0.050880551338196,0.0726198554039,-0.030659046024084]],[[0.19292958080769,0.059044055640697,0.16437934339046],[-0.13044404983521,0.016573829576373,0.0038595912046731],[-0.19028994441032,-0.11293682456017,-0.043036192655563]],[[0.040716379880905,-0.052734721451998,-0.021674470975995],[0.32449322938919,-0.082744292914867,-0.053114790469408],[0.056297548115253,-0.070984832942486,0.062281329184771]],[[-0.035748790949583,0.024481613188982,-0.04178212210536],[0.082462400197983,0.01150721963495,-0.071011021733284],[-0.028779473155737,-0.031498584896326,-0.063968122005463]],[[0.039766453206539,0.064325392246246,0.11576578021049],[0.1072119474411,-0.077578976750374,-0.011735539883375],[0.023750439286232,-0.051294699311256,0.11412619799376]],[[-0.065814472734928,0.14114315807819,0.085270270705223],[0.053861990571022,-0.022617781534791,-0.14500966668129],[-0.01088391058147,0.044881664216518,0.081410817801952]],[[0.096706099808216,-0.074109017848969,0.078907586634159],[-0.20061798393726,-0.025520125404,0.064439445734024],[0.033294826745987,-0.096417233347893,0.0035174821969122]],[[-0.0058308597654104,-0.071735121309757,0.12104748934507],[0.055901169776917,0.03970068693161,-0.0038473550230265],[-0.12784397602081,-0.0094588436186314,-0.028754707425833]],[[0.085188060998917,0.095663748681545,-0.021028928458691],[-0.18115611374378,-0.14046186208725,0.070372484624386],[0.039958454668522,-0.026816671714187,-0.15807582437992]],[[-0.049414619803429,-0.014876769855618,0.024985577911139],[-0.040236938744783,-0.059231761842966,0.097720198333263],[0.14332078397274,0.061052959412336,-0.0030444536823779]],[[-0.046332739293575,0.18150947988033,0.014138960279524],[0.072222083806992,0.019375383853912,-0.040259577333927],[-0.17502655088902,-0.028796575963497,-0.072006031870842]],[[-0.21008731424809,0.12873947620392,-0.20915293693542],[-0.17740203440189,0.2465113401413,0.065246276557446],[0.041956316679716,-0.14102007448673,0.028144773095846]],[[-0.087711490690708,0.072309151291847,-0.016121830791235],[0.0010409291135147,-0.054691635072231,-0.0028282350394875],[0.030994514003396,0.033634476363659,-0.053364541381598]],[[-0.023571712896228,-0.013147524558008,0.10884906351566],[-0.04474176466465,-0.10986520349979,-0.053396746516228],[-0.039001002907753,0.040890075266361,0.15823864936829]],[[-0.058979149907827,-0.015902850776911,0.09211066365242],[0.059726264327765,-0.10928349196911,-0.055105980485678],[0.045802302658558,-0.14839078485966,0.060173217207193]],[[0.050041798502207,0.098656751215458,0.1114389076829],[0.081718847155571,0.22399100661278,-0.026764007285237],[0.028840942308307,-0.015078987926245,-0.22584736347198]],[[0.017344489693642,0.075915664434433,-0.033759482204914],[-0.0045686438679695,-0.013586523942649,-0.039473477751017],[-0.00088982394663617,0.021871689707041,-0.088656462728977]],[[0.052302211523056,-0.098167553544044,0.088364578783512],[-0.1647290289402,-0.041880082339048,-0.067996218800545],[0.07518558204174,0.20006470382214,-0.059842854738235]],[[-0.066692993044853,0.12953412532806,0.071160443127155],[0.11059965193272,0.0078434888273478,0.002259842120111],[-0.044367756694555,-0.014029679819942,0.050740338861942]],[[0.034816399216652,-0.0036020111292601,0.17564660310745],[-0.062789313495159,0.074302986264229,0.027719955891371],[-0.037961792200804,0.022187570109963,-0.18781080842018]],[[0.061476796865463,-0.003256163559854,0.05402097851038],[-0.010634063743055,-0.10025556385517,0.045785747468472],[0.039065018296242,-0.020843388512731,-0.023726284503937]],[[-0.043568000197411,0.015903966501355,0.094127684831619],[0.024668594822288,0.0349245890975,0.027312897145748],[0.11355089396238,0.093296118080616,0.11450295895338]],[[-0.088366113603115,-0.047433350235224,-0.037163555622101],[0.0098922681063414,0.076541818678379,0.054793298244476],[-0.049591809511185,0.020595237612724,-0.050055898725986]],[[-0.057196594774723,-0.11347488313913,-0.0067637311294675],[0.030405201017857,0.048220936208963,-0.082194544374943],[0.19454082846642,-0.016310287639499,0.079441666603088]],[[0.021867621690035,-0.032527569681406,0.10892412811518],[-0.0041461912915111,0.023932697251439,-0.029297119006515],[-0.017376761883497,0.0011266738874838,0.062639012932777]],[[-0.013736013323069,0.02220482006669,-0.030287314206362],[0.050014950335026,-0.068777598440647,-0.027684291824698],[-0.0059979031793773,0.028749471530318,-0.018081985414028]],[[-0.24658082425594,0.071465820074081,0.0091806929558516],[0.073686704039574,-0.083038285374641,-0.26646581292152],[0.0073796543292701,-0.068781636655331,0.11813642829657]],[[0.036060329526663,-0.054399404674768,-0.10222816467285],[-0.0043984157964587,-0.078395821154118,-0.097513638436794],[0.18206560611725,0.0012852905783802,0.03934707865119]],[[0.066852882504463,0.074020236730576,0.003656406654045],[-0.10874252766371,-0.01216012891382,-0.032124724239111],[0.13483153283596,-0.0016657074447721,-0.10614348948002]],[[-0.10227602720261,-0.06987202167511,-0.17454728484154],[0.035985860973597,-0.048919212073088,-0.036692515015602],[0.060001898556948,-0.084041073918343,0.041170559823513]],[[0.13775768876076,-0.11233606934547,0.20535670220852],[-0.037122070789337,0.050225183367729,-0.022390091791749],[0.032549329102039,-0.027282707393169,-0.10908866673708]],[[-0.079042762517929,-0.052768617868423,-0.0085852229967713],[0.017532939091325,-0.048792749643326,0.076682031154633],[-0.14777064323425,-0.015047278255224,-0.052836813032627]],[[-0.044707946479321,0.064011707901955,0.1440307945013],[0.0013650285545737,-0.036618702113628,-0.007732599042356],[0.057701606303453,0.028085306286812,0.028315994888544]],[[0.030160702764988,0.043973583728075,-0.061666984111071],[-0.0034133389126509,-0.0066226292401552,-0.12956061959267],[-0.071395002305508,-0.076125860214233,-0.024784218519926]],[[0.076029844582081,0.019319649785757,-0.21269997954369],[-0.093586206436157,-0.14978435635567,0.28976571559906],[0.068784534931183,-0.12250124663115,0.067068167030811]],[[-0.17935016751289,0.035994298756123,0.035890713334084],[-0.16282753646374,0.13985332846642,0.086475543677807],[-0.053302481770515,-0.031717799603939,0.052969604730606]],[[0.14944517612457,0.027520649135113,-0.021231884136796],[0.041000463068485,-0.12706838548183,-0.24092522263527],[-0.029752068221569,-0.07083523273468,0.24368923902512]],[[-0.036176823079586,0.23679430782795,-0.072109878063202],[-0.034926313906908,-0.17094026505947,-0.31341052055359],[0.17646898329258,-0.026294963434339,0.014069663360715]],[[-0.10924570262432,0.15265516936779,-0.11640572547913],[-0.14217658340931,0.011288463138044,0.025617619976401],[-0.10442626476288,0.09047881513834,-0.086474500596523]],[[0.11583901196718,0.019561948254704,-0.10384520888329],[0.13530659675598,-0.17179791629314,-0.098512150347233],[-0.043624211102724,0.11197111010551,-0.077219180762768]],[[0.0021763774566352,-0.0039046360179782,-0.22061449289322],[-0.03709764778614,0.03809954598546,-0.080749005079269],[0.013131566345692,0.076489180326462,0.038908898830414]],[[0.036855444312096,-0.16355961561203,-0.048092287033796],[-0.011074095964432,0.12378371506929,-0.079716734588146],[-0.071721404790878,-0.067181378602982,-0.028458476066589]],[[-0.025894353166223,0.092772275209427,0.05355104804039],[-0.071552366018295,-0.076434664428234,0.092632666230202],[-0.08772249519825,-0.040278147906065,-0.25037962198257]],[[0.11140479147434,-0.016634821891785,-0.092694886028767],[-0.023386167362332,-0.11714947223663,-0.00024931368534453],[-0.086591966450214,-0.091770425438881,-0.12063132971525]],[[-0.038675609976053,-0.0045859185047448,0.064570508897305],[0.11556846648455,0.012522763572633,0.030643053352833],[0.067818015813828,0.08740645647049,0.04561934620142]],[[-0.13558883965015,0.0029451698064804,0.041390631347895],[-0.021189579740167,0.047202911227942,0.22300611436367],[0.094655185937881,-0.023052871227264,-0.010126924142241]],[[-0.12635536491871,-0.11081083118916,-0.088301002979279],[0.049020703881979,-0.045644525438547,-0.094964601099491],[0.13008780777454,-0.11075498908758,0.010070357471704]],[[0.034702189266682,-0.051676020026207,-0.0086935386061668],[-0.046498473733664,-0.033924087882042,0.019822411239147],[0.066185653209686,0.071281529963017,0.036028239876032]],[[-0.056927938014269,0.081413067877293,-0.043197460472584],[0.049844354391098,-0.051854733377695,0.082221299409866],[0.073012612760067,0.074630469083786,0.10646153986454]],[[-0.10042000561953,-0.0049702571704984,-0.23889108002186],[0.080356299877167,0.098885886371136,-0.13114604353905],[-0.14889179170132,-0.062571696937084,0.077927708625793]],[[-0.035458464175463,-0.078653730452061,-0.092021413147449],[-0.069224260747433,0.074717625975609,0.038872677832842],[0.17903779447079,-0.097344920039177,-0.12159502506256]],[[-0.29961520433426,0.087432250380516,-0.044477444142103],[0.010803829878569,-0.07840596139431,-0.0033900081180036],[-0.013403573073447,0.085751906037331,0.034940302371979]],[[0.020030384883285,0.17719595134258,-0.0020066315773875],[-0.21522589027882,0.0029921005479991,0.0089844120666385],[-0.19104398787022,0.10574164241552,-0.0053079933859408]],[[0.17242974042892,0.13289166986942,0.10336544364691],[-0.05906168743968,-0.078726433217525,0.065816789865494],[0.018958898261189,-0.0060926359146833,0.025908380746841]],[[0.066973000764847,-0.055820699781179,0.034653093665838],[-0.15375711023808,-0.045565836131573,0.14532555639744],[0.13058419525623,-0.01862046122551,-0.091675400733948]],[[-0.1912457793951,0.029972851276398,0.036870751529932],[-0.10507047176361,0.16909436881542,0.002892651129514],[-0.12238942831755,0.045217625796795,-0.035833902657032]],[[0.07181204855442,-0.0074732853099704,0.063270807266235],[0.075919836759567,-0.017948007211089,0.18302856385708],[0.089488781988621,0.12255331873894,0.10658038407564]],[[-0.022295691072941,-0.028356453403831,0.0012954098638147],[-0.069034166634083,-0.0047962642274797,0.042392570525408],[-0.085746437311172,-0.069146424531937,0.013594602234662]],[[0.082059748470783,-0.12240643054247,-0.25310632586479],[-0.0054256455041468,0.020683128386736,0.061539236456156],[-0.042473111301661,-0.0078487703576684,-0.048853620886803]],[[-0.11522581428289,0.16795875132084,0.065925501286983],[-0.012908354401588,0.0093887057155371,0.027168359607458],[0.080366335809231,-0.10198631882668,-0.015718836337328]],[[0.025322278961539,0.022605760022998,0.058838631957769],[-0.06859827786684,-0.038398277014494,-0.070814423263073],[-0.015113006345928,-0.048789724707603,-0.018256887793541]],[[0.15846505761147,-0.080095089972019,-0.075785227119923],[-0.054769549518824,-0.059586584568024,0.057709626853466],[0.11744469404221,-0.026088550686836,-0.055582277476788]],[[0.083672426640987,0.048306725919247,0.0091685829684138],[0.0032688160426915,-0.068194031715393,-0.10901807248592],[0.021311914548278,-0.032188896089792,-0.085264608263969]],[[-0.090576641261578,-0.061019781976938,-0.044704750180244],[0.04236213862896,0.21940749883652,-0.096758686006069],[0.15265725553036,0.09215272963047,-0.22017884254456]],[[-0.0025302597787231,-0.068641021847725,0.012568225152791],[0.068911507725716,-0.082383498549461,-0.038183085620403],[-0.041812155395746,0.18075883388519,-0.081785053014755]],[[0.06925155967474,-0.0012149211252108,-0.15067887306213],[0.11468650400639,0.03446327522397,0.12297637760639],[0.12366233021021,0.077560499310493,0.010830819606781]],[[-0.045597538352013,-0.10520321875811,-0.012677377089858],[-0.00090986146824434,-0.054687980562449,0.0695980489254],[0.12175311893225,0.024976307526231,0.003436274593696]],[[0.081561580300331,0.012420743703842,0.079139612615108],[0.081179916858673,0.039156503975391,-0.034295376390219],[0.025713754817843,-0.0086990501731634,0.0086583280935884]],[[-0.068103894591331,0.075888976454735,0.12712976336479],[-0.085171341896057,-0.035059228539467,-0.01785777695477],[-0.13057391345501,-0.012386314570904,-0.11727245897055]],[[-0.035404529422522,0.11557037383318,0.14502619206905],[-0.052564989775419,-0.023153726011515,-0.017592130228877],[-0.029043819755316,-0.096587114036083,-0.16212965548038]],[[0.14306640625,0.243542060256,0.16155664622784],[-0.13925340771675,-0.15681591629982,0.080581404268742],[0.039815042167902,-0.05945198610425,-0.042584281414747]],[[-0.0759496986866,-0.016723599284887,-0.0069912578910589],[0.091480918228626,-0.041828595101833,0.1530422270298],[0.062031790614128,0.010951329022646,-0.024911077693105]],[[0.044932171702385,-0.031321831047535,-0.049375306814909],[0.073624461889267,0.0013972442829981,0.024775924161077],[0.030177250504494,-0.047389324754477,-0.0043666642159224]],[[0.047045923769474,-0.043957740068436,0.090854965150356],[-0.31937232613564,-0.43838754296303,-0.05893087387085],[-0.11779320240021,0.14064620435238,-0.060110688209534]],[[0.09632895886898,-0.021433921530843,0.033762767910957],[-0.038284912705421,-0.10049720108509,-0.12472275644541],[0.090882547199726,-0.11498892307281,0.054685603827238]],[[-0.019459441304207,-0.083149038255215,-0.023269060999155],[-0.055086474865675,-0.23485107719898,0.1335986405611],[0.079454883933067,-0.13466612994671,0.022757617756724]],[[0.044343840330839,0.046469755470753,-0.024082494899631],[0.043592691421509,0.19860672950745,-0.049887556582689],[0.016075629740953,-0.00014184019528329,0.099891468882561]],[[-0.041415460407734,0.33720484375954,-0.094700135290623],[-0.022727118805051,-0.060022514313459,-0.14204195141792],[-0.0069182221777737,-0.01725928671658,-0.24424023926258]],[[-0.061320275068283,0.10258765518665,0.070150226354599],[-0.041443094611168,0.034937281161547,-0.010848146863282],[-0.058987867087126,-0.11929860711098,0.10866801440716]],[[0.029038362205029,-0.11434905230999,-0.087700054049492],[-0.13080415129662,0.018097944557667,-0.092165306210518],[0.060393635183573,-0.045587960630655,0.0043218550272286]],[[0.015864614397287,0.10667674988508,0.067919343709946],[-0.10539914667606,-0.027223659679294,0.049254536628723],[0.006197274196893,0.14065413177013,0.15075771510601]],[[0.064932577311993,0.078962780535221,-0.086727894842625],[-0.040842022746801,-0.10270995646715,-0.067031368613243],[0.057001352310181,-0.20821440219879,0.21502740681171]],[[0.15491084754467,-0.0051399106159806,0.14762723445892],[0.0014512450434268,-0.040651697665453,-0.23154245316982],[0.055629145354033,0.046690203249454,-0.065887324512005]],[[-0.041361715644598,-0.070770382881165,0.055604610592127],[0.033838704228401,0.0006947664078325,0.028813673183322],[0.036087419837713,0.066880434751511,0.012523399665952]],[[-0.14186857640743,-0.024161139503121,-0.14192922413349],[0.0026355909649283,-0.12057345360518,-0.046022996306419],[-0.0013066080864519,0.024613885208964,-0.011505470611155]],[[0.032134033739567,-0.010644629597664,0.12540474534035],[-0.090796299278736,0.029649220407009,-0.022393567487597],[-0.10348305851221,-0.019388010725379,0.27209007740021]],[[-0.056604579091072,-0.094539858400822,-0.038563840091228],[0.024120673537254,-0.022089701145887,-0.029924102127552],[0.0079882740974426,-0.11580872535706,0.097076907753944]],[[-0.049587357789278,-0.094519540667534,0.22974774241447],[0.066294506192207,-0.11694394052029,-0.11686623841524],[-0.095359869301319,-0.01216634362936,0.1104134246707]],[[-0.00023220625007525,0.031088840216398,-0.091420963406563],[0.13304647803307,0.044852137565613,0.0153191043064],[-0.010635221377015,0.028391040861607,-0.13806296885014]],[[0.017733411863446,-0.04047142714262,0.06675973534584],[-0.013786039315164,0.03888339176774,-0.025705324485898],[-0.02627625502646,0.062973149120808,-0.061020892113447]],[[-0.1122809201479,-0.1868102401495,-0.004666589666158],[0.083983667194843,-0.085862144827843,0.056268520653248],[-0.081019133329391,-0.045732386410236,0.10212931036949]],[[-0.13406851887703,-0.10255301743746,0.053831532597542],[-0.17684234678745,0.021082429215312,-0.0034497755113989],[-0.072540789842606,0.0400753878057,0.16981044411659]],[[-0.068960122764111,0.10284142941236,0.076758585870266],[0.0041834893636405,-0.09938433021307,0.038784883916378],[-0.15131393074989,0.097505897283554,-0.092751048505306]],[[-0.012365030124784,-0.037477388978004,-0.12540961802006],[-0.077117845416069,0.038446728140116,0.10509189218283],[0.021571561694145,0.099284522235394,-0.041041940450668]],[[0.029513388872147,-0.064987979829311,-0.043735906481743],[-0.043836582452059,-0.043806921690702,0.1070117354393],[0.010830475948751,-0.12410985678434,-0.14273442327976]],[[-0.060954630374908,0.035989094525576,-0.055010017007589],[-0.070909969508648,-0.010115938261151,0.28222864866257],[0.045641146600246,-0.051780890673399,0.015873933210969]],[[-0.024597156792879,0.11367968469858,-0.17915987968445],[0.082169525325298,-0.097003370523453,0.015965402126312],[0.15408048033714,-0.027361910790205,-0.08367145806551]],[[-0.10423810780048,-0.025530951097608,-0.1209924146533],[-0.027136707678437,-0.10738924890757,0.064494766294956],[0.13857451081276,0.079056866466999,-0.12420073151588]],[[-0.10731177031994,-0.0082615250721574,-0.15992110967636],[-0.040564730763435,-0.038402780890465,0.0071246447041631],[0.073697194457054,-0.030957274138927,-0.045090228319168]],[[-0.01170402020216,0.12487532198429,-0.10524981468916],[0.06523572653532,-0.10356958210468,0.0061900238506496],[0.077559061348438,0.10327149927616,0.012174936942756]],[[0.035698644816875,0.081304877996445,-0.014690252020955],[-0.10044118762016,-0.028065973892808,-0.061801828444004],[-0.1679829955101,0.07070667296648,-0.025047026574612]],[[0.010810630396008,-0.089144334197044,-0.051849871873856],[-0.08461195230484,-0.10813707113266,-0.20773865282536],[-0.096353009343147,-0.14299203455448,-0.045414622873068]],[[-0.080912880599499,0.039659697562456,-0.028255475685],[-0.017771305516362,-0.18012894690037,-0.17649240791798],[0.061114132404327,0.12627711892128,0.030708586797118]],[[0.0077177621424198,-0.15458980202675,0.084300741553307],[0.076837457716465,-0.024309914559126,-0.0070427060127258],[0.073521293699741,0.044666033238173,-0.041654493659735]],[[0.0084206517785788,0.016284145414829,0.011746642179787],[-0.10099473595619,-0.08199355751276,0.05172199010849],[-0.050065640360117,-0.066282607614994,-0.063397571444511]],[[-0.23035007715225,-0.044726151973009,-0.046195048838854],[0.089100740849972,-0.016296984627843,0.031512904912233],[-0.17252267897129,0.34625005722046,-0.069989375770092]],[[0.13305830955505,-0.099516846239567,-0.10687510669231],[-0.0596166215837,-0.18195241689682,-0.038388680666685],[-0.016333797946572,0.12803985178471,-0.18756306171417]]],[[[-0.047713119536638,-0.03799544647336,-0.058392211794853],[0.019473453983665,0.06397008150816,0.0113679273054],[0.030989311635494,-0.026570674031973,0.0025880429893732]],[[-0.012823079712689,0.014918896369636,0.0064003020524979],[-0.040793314576149,-0.042298786342144,0.0099098412320018],[-0.072705499827862,0.0079402597621083,0.050487276166677]],[[0.0047590979374945,0.001681910129264,-0.0025306737516075],[-0.00073813926428556,-0.020881645381451,0.049867577850819],[-0.003190248971805,0.047762338072062,-0.091448299586773]],[[-0.042683534324169,0.011109668761492,-0.11517962068319],[0.015782302245498,-0.043021950870752,-0.024933196604252],[0.023738013580441,0.010911446064711,0.082717947661877]],[[0.067723952233791,0.077404640614986,-0.043741308152676],[-0.022482862696052,0.063482135534286,0.09019148349762],[-0.02473671361804,-0.043957564979792,0.057319067418575]],[[-0.031278058886528,0.012483080849051,0.040334090590477],[0.034254759550095,0.011967524886131,0.052187472581863],[0.092810086905956,-0.032821118831635,-0.0030405330471694]],[[-0.0050903400406241,0.072233393788338,-0.037322726100683],[0.036265142261982,0.012935070320964,0.027882372960448],[-0.016192849725485,0.023968491703272,-0.0073103853501379]],[[-0.023487523198128,0.0067503126338124,0.021251557394862],[0.010287635028362,0.072586730122566,0.0090665984898806],[0.030521236360073,0.027511268854141,0.011019338853657]],[[-0.023430252447724,0.024254187941551,-0.039901230484247],[0.0055293827317655,0.038368962705135,0.01022154185921],[0.076347783207893,-0.0076200542971492,-0.068506993353367]],[[0.012079536914825,-0.050536319613457,0.085915260016918],[-0.0098890755325556,0.014930826611817,0.02113557048142],[0.08589893579483,0.043482564389706,-0.02713999338448]],[[0.050743404775858,-0.011077176779509,0.019323132932186],[-0.02509237639606,0.0075076934881508,0.056829303503036],[0.051157183945179,-0.013252083212137,-0.038549676537514]],[[0.0087283384054899,-0.017725186422467,0.01049324683845],[-0.011015461757779,0.056680094450712,0.03752750903368],[0.057452622801065,0.069328144192696,-0.065289787948132]],[[0.1311980932951,0.044971946626902,0.051108777523041],[-0.045675981789827,-0.01177966594696,-0.038940370082855],[0.088702514767647,0.14424991607666,0.06510253995657]],[[0.056699253618717,0.022916922345757,0.061591431498528],[-0.0025402801111341,0.066639088094234,0.022160798311234],[0.034697394818068,0.084086671471596,0.031666848808527]],[[0.014132231473923,0.037602566182613,-0.073261387646198],[-0.019121080636978,0.02224032394588,-0.03683577477932],[0.03736536949873,0.044881865382195,0.024234395474195]],[[-0.032495245337486,-0.0064634815789759,0.020365938544273],[-0.011919313110411,-0.01285701058805,-0.032740265130997],[-0.083385542035103,0.01660567522049,0.017564363777637]],[[0.033169340342283,-0.017362838611007,-0.053168326616287],[-0.019159495830536,0.018894350156188,-0.042147845029831],[-0.046133764088154,0.029747512191534,-0.037947405129671]],[[0.0201805382967,-0.034776858985424,-0.02448695525527],[0.070971995592117,-0.036560300737619,0.0082652680575848],[-0.00027238772599958,0.048496920615435,0.014576005749404]],[[-0.0095793576911092,-0.020490199327469,0.028206387534738],[0.0016760816797614,-0.0071678296662867,0.04423476755619],[0.023173438385129,-0.037289414554834,0.016497779637575]],[[-0.012721798382699,-0.014061415567994,0.036306742578745],[-0.011695334687829,0.01473677996546,0.034459497779608],[0.036493610590696,-0.052196033298969,0.010511415079236]],[[0.010136020369828,0.045035343617201,-0.10251402109861],[-0.012204395607114,-0.011758076027036,-0.015814933925867],[-0.075506985187531,-0.03413188830018,0.043082129210234]],[[0.0071793375536799,-0.0096899075433612,-0.01589192263782],[0.079805143177509,0.079975463449955,0.012894773855805],[-0.026686174795032,0.089400723576546,-0.026981975883245]],[[0.0087735159322619,-0.043005306273699,-0.00096795067656785],[-0.022938780486584,0.021592523902655,0.018651241436601],[-0.016062958166003,-0.007062332239002,0.018144490197301]],[[0.059143055230379,-0.0080746412277222,0.10269366204739],[0.025825183838606,0.018046651035547,-0.011069386266172],[0.024964926764369,0.0084831714630127,0.035009648650885]],[[-0.066555313766003,0.0070272134616971,0.014411925338209],[-0.019699823111296,0.026890363544226,-0.034836299717426],[0.036007039248943,-0.0022990510333329,-0.061131875962019]],[[0.07105678319931,0.027819974347949,-0.036619946360588],[-0.034622054547071,-0.0069543621502817,-0.025376848876476],[0.053827088326216,0.054799783974886,0.003813931485638]],[[0.0081901187077165,0.024359712377191,0.056882914155722],[-0.023067960515618,-0.012792294844985,0.043778855353594],[0.02549003623426,0.018847526982427,0.0101313656196]],[[-0.028578231111169,0.061035372316837,0.026620678603649],[0.038804218173027,0.011366067454219,0.024083212018013],[0.040716432034969,-0.041791874915361,-0.00023203861201182]],[[0.01841651275754,0.043849818408489,-0.040714379400015],[-0.067059025168419,-0.01151682715863,0.017197955399752],[0.037709411233664,0.056527871638536,-0.02314331009984]],[[0.070174247026443,0.0083019090816379,-0.0043213726021349],[0.051227163523436,0.050347931683064,0.07457110285759],[-0.03085514716804,-0.063375383615494,-0.0029562611598521]],[[0.017944294959307,-0.018675653263927,0.072698906064034],[0.049154933542013,-0.052408952265978,0.020141547545791],[-0.0049482388421893,0.051664371043444,0.0035066660493612]],[[0.0041724164038897,0.060205839574337,0.011574540287256],[-0.019754871726036,-0.016048446297646,-0.068243466317654],[-0.0081391138955951,0.031038561835885,-0.0032603861764073]],[[0.019559701904655,-0.010960313491523,-0.021941993385553],[0.0067945728078485,0.036032419651747,-0.039955165237188],[0.062687903642654,-0.0056669507175684,0.039614956825972]],[[-0.042896408587694,-0.10025503486395,-0.010203494690359],[-0.054605275392532,0.0078597292304039,0.0048350738361478],[0.085884004831314,-0.015419749543071,-0.00030897051328793]],[[-0.044865742325783,-0.017145408317447,-0.025989001616836],[-0.033200372010469,-0.051178604364395,-0.053836204111576],[0.063898421823978,0.027975764125586,-0.030010908842087]],[[-0.019149973988533,0.067498199641705,-0.017868177965283],[-0.012202527374029,-0.058049224317074,-0.021749285981059],[-0.0098320627585053,0.023970520123839,0.0071050333790481]],[[0.046607859432697,-0.018761238083243,-0.065286949276924],[-0.0014910135651007,-0.037939202040434,-0.0036022372078151],[0.082987435162067,0.039249420166016,0.01150359865278]],[[-0.0088069289922714,-0.0021701520308852,-0.022189643234015],[0.043407279998064,-0.013121996074915,0.01335627771914],[0.062750481069088,-0.062659956514835,-0.010913167148829]],[[-0.034905254840851,-0.036448184400797,-0.0066211447119713],[-0.043824899941683,0.086314000189304,-0.0049884747713804],[-0.11224990338087,-0.012907945550978,0.032308675348759]],[[-0.026139087975025,-0.0043557020835578,-0.01535217743367],[-0.024287698790431,0.0049586747772992,0.00023492134641856],[0.03936630487442,0.021391365677118,-0.057432495057583]],[[0.037295073270798,-0.0070906803011894,0.050393521785736],[0.00017438514623791,0.030307065695524,-0.059390816837549],[-0.0049329525791109,0.014681121334434,-0.022404871881008]],[[0.030968502163887,0.11055415868759,0.026945350691676],[-0.0049424064345658,0.068142421543598,0.020532852038741],[-0.030849266797304,0.070110082626343,-0.0088711567223072]],[[0.0152851305902,0.02806238271296,0.040336206555367],[-0.025845896452665,0.067963540554047,0.1087910681963],[0.078284054994583,0.11367252469063,0.05820856615901]],[[-0.014028190635145,-0.019747488200665,-0.0039260983467102],[-0.028957661241293,-0.075250707566738,0.058604832738638],[0.10359915345907,-0.080763302743435,0.019718701019883]],[[0.092031069099903,-0.028812736272812,0.027077035978436],[0.0097227562218904,0.018903374671936,0.00738984066993],[0.033485021442175,0.08233555406332,-0.043156553059816]],[[0.054223448038101,0.17346841096878,0.04541327804327],[0.14963485300541,-0.03902293369174,0.052965510636568],[0.018765619024634,0.074064210057259,0.11014498770237]],[[-0.031235560774803,-0.0088917203247547,0.017839530482888],[0.038129232823849,-0.0073726554401219,-0.026263078674674],[-0.044684048742056,-0.0019225716823712,0.012412863783538]],[[-0.019676644355059,-0.07093371450901,-0.035639874637127],[-0.044381357729435,-0.012471763417125,0.0029980109538883],[-0.01116859074682,0.013252786360681,0.048927910625935]],[[-0.013550505973399,0.0029545503202826,0.051477294415236],[0.014376611448824,-0.06314093619585,0.059166088700294],[-0.034846980124712,-0.02405434474349,-0.059768255800009]],[[-0.011153834871948,-0.022057151421905,-0.030092319473624],[-0.0080683333799243,0.010926358401775,-0.088988699018955],[-0.084909811615944,-0.036368481814861,-0.012610742822289]],[[0.079600945115089,0.011284964159131,0.044241543859243],[-0.052854731678963,0.010428536683321,-0.019063638523221],[0.034791488200426,-0.063572980463505,0.017133850604296]],[[0.020706340670586,-0.055549375712872,0.037323724478483],[0.050576642155647,0.036632016301155,-0.012546397745609],[-0.066890455782413,-0.0020456411875784,0.029466325417161]],[[0.046881087124348,0.02763831615448,0.044840108603239],[-0.04565030708909,-0.064254432916641,-0.025054289028049],[-0.004634571261704,0.027214569970965,0.046391125768423]],[[0.01741817034781,0.023181403055787,-0.030040629208088],[0.013657229021192,-0.010381314903498,0.069148607552052],[0.031736988574266,0.089381389319897,0.068985983729362]],[[0.010442652739584,-0.0079583786427975,-0.038480263203382],[-0.01239391695708,0.017293781042099,0.042854316532612],[0.067208848893642,0.0848498493433,-0.03132813051343]],[[-0.0037712636403739,0.027988914400339,0.0050065657123923],[-0.045292600989342,-0.023472869768739,-0.042544901371002],[-0.0071057886816561,-0.10100881010294,-0.0061287237331271]],[[0.040900066494942,-0.024254564195871,0.0057425983250141],[0.084628716111183,0.00090153550263494,0.17777687311172],[0.0061196782626212,-0.047118183225393,0.031034614890814]],[[0.074853643774986,-0.045947898179293,0.011015647090971],[0.0062021315097809,0.1103477627039,-0.082174971699715],[0.024636110290885,0.0020416823681444,-0.05161864310503]],[[0.033056654036045,0.090916305780411,0.04211262986064],[0.010312797501683,-0.053616896271706,0.0067757475189865],[0.044556651264429,-0.028888961300254,-0.035604182630777]],[[-0.033809911459684,0.029627520591021,-0.034319665282965],[0.040783796459436,0.029800288379192,0.050944693386555],[0.082219831645489,-0.0051723229698837,-0.0010909012053162]],[[0.0035591004416347,0.02740889787674,0.024361616000533],[-0.0067970706149936,0.023755418136716,0.068524472415447],[-0.004790301900357,0.012416258454323,-0.027837250381708]],[[-0.083437114953995,-0.02671192586422,-0.0085460618138313],[-0.021747451275587,-0.04590056091547,0.01714401692152],[0.03072046674788,0.0008273072890006,-0.033722262829542]],[[-0.012398644350469,-0.039513535797596,-0.02071494795382],[0.035206720232964,0.040603213012218,0.011688903905451],[-0.024924261495471,0.046139359474182,0.010605291463435]],[[-0.025829834863544,0.035571914166212,0.0021120188757777],[0.026361875236034,0.00084937090286985,0.069431141018867],[0.023333149030805,0.012839013710618,-0.0067152618430555]],[[-0.024344714358449,-0.0076289493590593,0.026268852874637],[-0.080517917871475,-0.0039311423897743,-0.029222486540675],[0.027836747467518,0.057708028703928,-0.050373647361994]],[[0.0053794393315911,0.043865188956261,0.056625183671713],[-0.017609877511859,-0.034061275422573,0.058452896773815],[0.028506530448794,-0.012084705755115,0.0097512975335121]],[[0.073500223457813,-0.0084039615467191,-0.003400755347684],[0.018727138638496,0.0095987422391772,-0.053442861884832],[0.027329249307513,-0.035804405808449,-0.018021080642939]],[[-0.020594453439116,0.038324225693941,0.027722883969545],[0.11381410062313,-0.01628702506423,0.00039527175249532],[0.046253487467766,0.055652197450399,0.044985491782427]],[[0.05265985429287,-0.0096001885831356,0.031323835253716],[-0.026203453540802,0.10185606777668,0.024438554421067],[0.095608420670033,0.076296254992485,-0.041691012680531]],[[0.046787559986115,0.067611210048199,-0.0012553571723402],[0.0080517465248704,0.067535854876041,0.033001661300659],[0.03166451305151,0.0018281423253939,0.076632894575596]],[[-0.074436493217945,0.11567946523428,-0.036295883357525],[0.059353154152632,0.045708917081356,0.032803382724524],[0.03841956704855,0.022209266200662,0.03317978233099]],[[0.020305540412664,-0.0054481886327267,0.010773829184473],[0.028679942712188,-0.029304578900337,-0.016680488362908],[-0.0069356178864837,-0.067719921469688,0.01536934543401]],[[0.034567873924971,-0.0079035153612494,-0.032191094011068],[-0.00030719835194759,0.032834615558386,0.049546290189028],[-0.068787410855293,0.055190283805132,0.028572546318173]],[[0.023075686767697,-0.020241215825081,0.074928745627403],[-0.059088621288538,0.021533530205488,0.010160620324314],[0.014657306484878,-0.050849802792072,-0.041730992496014]],[[-0.097860902547836,0.020827716216445,-0.022430263459682],[-0.0097460383549333,-0.019241930916905,0.030809080228209],[0.054634772241116,0.057243049144745,-0.0078345090150833]],[[0.042789645493031,0.014048950746655,-0.066243097186089],[0.024370979517698,-0.0268235784024,-0.098546162247658],[-0.0083325281739235,0.011462381109595,0.011035772971809]],[[-0.070389680564404,0.087863802909851,-0.0109619833529],[-0.0072722490876913,0.058097124099731,0.049735710024834],[0.075582668185234,-0.00063623930327594,-0.01707555167377]],[[-0.065112687647343,0.086095750331879,-0.021157745271921],[0.0026584323495626,0.089321881532669,0.026894951239228],[0.033087883144617,0.033876538276672,0.075481444597244]],[[-0.03560808300972,0.036358367651701,0.025570064783096],[0.060616221278906,-0.030186513438821,0.011884579434991],[-0.017266156151891,-0.023203732445836,-0.046996276825666]],[[0.002695101313293,-0.044656749814749,0.022432180121541],[-0.051998566836119,0.022778660058975,-0.065753929316998],[0.053279489278793,0.011754034087062,-0.042509943246841]],[[-0.00055791466729715,-0.07815232872963,-0.027578350156546],[-0.0010958084603772,-0.052001368254423,0.033762343227863],[0.0012619550107047,-0.023601338267326,0.02521120198071]],[[0.004561257082969,-0.07404026389122,-0.0010643146233633],[0.039830278605223,0.069815583527088,0.012621489353478],[-0.01780110411346,-0.056410577148199,-0.065367683768272]],[[0.025292357429862,0.016442423686385,0.08821789175272],[0.024156490340829,0.094711244106293,0.055582355707884],[-0.004564986564219,0.048014592379332,0.002361198188737]],[[0.031132033094764,0.01431833487004,0.053706757724285],[0.027009949088097,0.018525257706642,0.0074652289040387],[-0.0505784265697,0.076136291027069,0.043027799576521]],[[0.0049619418568909,-0.034854657948017,-0.031213767826557],[0.03855474665761,-0.012786420062184,0.058783691376448],[0.10246759653091,-0.052922200411558,0.019007500261068]],[[0.0056055034510791,-0.031085221096873,-0.011957717128098],[0.067155346274376,-0.085092633962631,0.042442761361599],[-0.06343175470829,0.043908931314945,-0.06385837495327]],[[-0.019858552142978,0.0064980480819941,-0.022083738818765],[-0.0063636968843639,0.011584005318582,-0.001590782427229],[0.080238126218319,0.042428962886333,0.0023301120381802]],[[0.066977381706238,0.0022782038431615,-0.020998997613788],[-0.026550928130746,-0.00066754018189386,0.008166485466063],[0.060386303812265,0.055577166378498,-0.0091582974418998]],[[0.029262134805322,0.015440158545971,0.047338329255581],[0.045326042920351,0.020791927352548,-0.025141801685095],[-0.0069352961145341,-0.014576150104403,0.0044612516649067]],[[0.018506582826376,-0.023358460515738,0.029268467798829],[0.025014124810696,0.0069350046105683,-0.024016790091991],[-0.068714328110218,0.056860163807869,-0.039196208119392]],[[0.03051788918674,0.043657299131155,0.039425700902939],[0.049543041735888,0.0023420352954417,-0.0022182539105415],[0.018795004114509,-0.022182142361999,0.056548748165369]],[[0.048316575586796,-0.011295796371996,0.036484219133854],[-0.086161598563194,0.0042741596698761,0.012309520505369],[0.0057746791280806,-0.010274922475219,0.037440672516823]],[[0.0092209009453654,0.0027253422886133,0.002369070192799],[0.027788864448667,0.038932044059038,0.0062740324065089],[-0.020116440951824,-0.07298181951046,0.015530681237578]],[[0.03239619359374,-0.0023066133726388,0.039689656347036],[-0.024030826985836,-0.030415035784245,-0.0038443857338279],[0.039221368730068,-0.0071678138338029,0.037264917045832]],[[-0.021770918741822,0.018277958035469,-0.019043065607548],[-0.022918151691556,-0.025704568251967,-0.013298911042511],[0.035341683775187,-0.06862485408783,0.014497930184007]],[[-0.0032266355119646,0.018750449642539,0.032758306711912],[0.0036637240555137,0.052055578678846,0.062862396240234],[-0.0039426144212484,0.011957952752709,-0.022064886987209]],[[-0.014177653007209,-0.046685557812452,0.035817090421915],[-0.056761234998703,0.005899126175791,-0.035597130656242],[-0.018733058124781,-0.077390931546688,0.049258649349213]],[[0.0099570248275995,0.016416370868683,0.046538140624762],[0.051688931882381,-0.011698869988322,0.014150836504996],[0.053065627813339,-0.0036457430105656,-0.026840697973967]],[[-0.0078264679759741,0.030142949894071,-0.021023465320468],[-0.061424620449543,-0.010241481475532,0.0086829382926226],[0.077006861567497,0.0033689995761961,-0.075911678373814]],[[0.082147769629955,0.011615212075412,0.045755866914988],[0.0048406040295959,0.025439631193876,0.03156516700983],[0.031158404424787,0.034959021955729,0.031433597207069]],[[-0.052214946597815,-0.025083081796765,-0.073635660111904],[-0.097096137702465,0.052988294512033,-0.037207346409559],[-0.0036834187339991,0.031724810600281,0.0049927150830626]],[[-0.018234459683299,0.072619356215,0.10497258603573],[0.005571823567152,0.044070847332478,0.023943634703755],[-0.053703606128693,0.065617203712463,0.0025109120178968]],[[0.042082455009222,0.011507839895785,-0.00010870792903006],[0.0059050740674138,0.035265486687422,0.030720246955752],[-0.03190940618515,-0.014503365382552,-0.0063794679008424]],[[-0.003897761926055,0.029999958351254,0.0092382533475757],[-0.0099243130534887,-0.037062752991915,-0.08072354644537],[-0.014985859394073,0.00067600485635921,0.021924465894699]],[[0.027227399870753,-0.015734311193228,0.050392426550388],[-0.04253464192152,-0.012381063774228,0.015877190977335],[0.010561021976173,-0.015695506706834,0.11736675351858]],[[0.060513503849506,0.0017063932027668,-0.016697125509381],[-0.0021825078874826,0.013248646631837,0.024344293400645],[-0.0022166953422129,0.030003910884261,0.03693451359868]],[[-0.033382385969162,0.068297892808914,0.037634763866663],[0.025433463975787,0.046887904405594,0.055115278810263],[0.046287730336189,0.018915245309472,0.041533336043358]],[[0.0052769132889807,-0.028817925602198,0.0020629211794585],[-0.02017287351191,-0.013104128651321,-0.0312569886446],[-0.049925785511732,0.049340911209583,0.024529995396733]],[[-0.038197111338377,-0.063243620097637,0.024627059698105],[-0.039978377521038,-0.04851495474577,-0.062086839228868],[-0.022174991667271,0.022920824587345,0.018431045114994]],[[-0.036126244813204,0.066306136548519,0.078179322183132],[0.0083754761144519,-0.0096270153298974,0.13833951950073],[-0.0062023992650211,-0.020553240552545,0.035345681011677]],[[-0.026031993329525,-0.022437978535891,-0.046613022685051],[0.064867876470089,0.05091355741024,0.070310577750206],[-0.014634785242379,0.013499942608178,-0.086247399449348]],[[0.011954544112086,-0.08155233412981,0.0083125000819564],[-0.097272403538227,-0.012878987938166,0.031830664724112],[0.044195923954248,-0.034695725888014,0.084134206175804]],[[0.072015166282654,0.029259610921144,-0.033283963799477],[-0.016625292599201,0.0047198096290231,-0.062409088015556],[0.02925238199532,0.078961327672005,0.039127591997385]],[[-0.0047076866030693,-0.025761719793081,-0.082014545798302],[0.082200489938259,-0.013136994093657,0.0075532430782914],[0.025094134733081,0.065857984125614,0.0093627097085118]],[[0.0083379726856947,0.095890499651432,0.015667974948883],[-0.077835783362389,0.030467178672552,-0.015096340328455],[-0.0078542800620198,-0.046071171760559,0.010405985638499]],[[-0.054923575371504,0.0058314008638263,0.023661302402616],[0.010735400021076,-0.059915151447058,-0.053727749735117],[0.012269888073206,0.042343612760305,0.034710578620434]],[[0.034004274755716,0.058121856302023,0.01209643855691],[-0.015458155423403,0.032100427895784,-0.022515254095197],[0.050162941217422,0.10951542109251,0.063347965478897]],[[-0.0045268186368048,-0.039531979709864,0.0018320828676224],[0.064662747085094,-0.029252361506224,0.027466718107462],[0.065744154155254,0.13951225578785,-0.046151135116816]],[[-0.027481604367495,-0.04491163417697,-0.06203892454505],[0.093426294624805,0.019418409094214,0.0094754006713629],[0.042034182697535,-0.04779464006424,-0.015242679975927]],[[-0.00051168771460652,0.13103277981281,-0.022192871198058],[0.0046380874700844,0.03364234790206,0.066869892179966],[0.041111271828413,-0.0041698003187776,0.012350247241557]],[[0.051096249371767,-0.023395288735628,-0.063102416694164],[-0.068194851279259,-0.044119995087385,0.02388764731586],[0.026188470423222,0.032355219125748,-0.0034315744414926]],[[-0.018386110663414,-0.043834052979946,0.015146556310356],[0.029837952926755,0.087680146098137,-0.10046498477459],[-0.021211691200733,-0.043542787432671,0.02953739091754]],[[-0.028056241571903,-0.031633239239454,0.021691236644983],[0.02777305804193,0.081392861902714,-0.012527142651379],[-0.05920871719718,-0.053407624363899,-0.03001905977726]],[[0.023722037672997,-0.028907999396324,-0.078331500291824],[0.038632936775684,-0.018827756866813,0.037210170179605],[-0.031639110296965,-0.057679150253534,0.086258471012115]],[[0.086902119219303,-0.029424488544464,0.029646817594767],[-0.00057766155805439,-0.013910393230617,0.081463739275932],[0.0017589849885553,0.052103318274021,-0.017067505046725]],[[0.020491449162364,0.014689999632537,0.0021971962414682],[0.058570150285959,0.012972135096788,-0.035943560302258],[0.094230815768242,0.049255050718784,0.042651537805796]],[[0.082348302006721,-0.043137010186911,0.023744182661176],[-0.017069268971682,-0.012685930356383,0.024519430473447],[-0.031894110143185,0.0038394867442548,0.008526093326509]],[[-0.011901555582881,0.050842579454184,-0.0057416008785367],[-0.018210932612419,-0.048403814435005,-0.0084979506209493],[0.001643766881898,0.044648084789515,0.01427293382585]]],[[[-0.050038997083902,0.061047859489918,-0.026824902743101],[0.039828427135944,-0.093420423567295,0.064570248126984],[0.058874845504761,-0.021968236193061,-0.0053660925477743]],[[0.045027483254671,0.051515277475119,0.070467010140419],[-0.054615013301373,-0.027461277320981,0.0012837051181123],[0.011160597205162,-0.019957570359111,-0.0038784591015428]],[[0.064306892454624,-0.033089607954025,-0.050114613026381],[-0.01517026592046,0.017550928518176,-0.056641921401024],[0.085801526904106,0.063550852239132,-0.026455061510205]],[[-0.1548730134964,-0.06181413680315,0.10161872208118],[-0.063395522534847,-0.033901933580637,-0.0026517175137997],[0.010924143716693,-0.019828660413623,-0.072605617344379]],[[0.028037216514349,-0.0099970456212759,0.0048598293215036],[-0.013210573233664,-0.033696614205837,0.0055363783612847],[0.046025771647692,-0.011061057448387,-0.0090153096243739]],[[0.013664230704308,0.045783683657646,-0.057432718575001],[0.020869502797723,-0.047117244452238,0.0077944984659553],[-0.022881630808115,-0.009944923222065,-0.024291530251503]],[[-0.014102479442954,-0.025727393105626,0.016490435227752],[0.0078669954091311,0.0057331379503012,-0.018762933090329],[-0.00068251439370215,-0.036975242197514,-0.03540712594986]],[[0.01121080853045,5.1924580475315e-06,-0.056317798793316],[-0.052845008671284,-0.022320706397295,0.052708115428686],[0.010775176808238,0.070401556789875,0.00011361507495167]],[[-0.015118656679988,-0.061006560921669,0.0041152648627758],[-0.02501923404634,0.050387766212225,-0.006559569388628],[-0.035351425409317,-0.024360284209251,0.04764723777771]],[[0.033444885164499,-0.04055954888463,-0.0752162784338],[0.057313613593578,-0.032170332968235,-0.11466667056084],[0.10130253434181,0.091293774545193,-0.062560267746449]],[[0.0049884347245097,0.0071203811094165,0.0010219370014966],[-0.030149614438415,-0.018805649131536,0.040601272135973],[0.0025462803896517,-0.042225290089846,0.075137086212635]],[[-0.0072271088138223,-0.0041389348916709,-0.0034432790707797],[-0.039787575602531,-0.044336024671793,0.018379608169198],[-0.0049595427699387,0.05169552564621,-0.047301657497883]],[[-0.028937576338649,-0.030347054824233,-0.021342987194657],[-0.0092091793194413,0.021380240097642,0.047837290912867],[-0.055808961391449,0.014556759037077,0.1181348413229]],[[-0.034647099673748,0.082524850964546,-0.018400629982352],[-0.015923943370581,0.0054514724761248,-0.12837615609169],[-0.0063282893970609,0.010456159710884,-0.021856667473912]],[[-0.047067776322365,0.0044919615611434,0.085463024675846],[0.11070185154676,-0.027250986546278,-0.06089036911726],[0.04386967420578,-0.021492302417755,-0.059526074677706]],[[0.014278707094491,-0.088416948914528,-0.026416774839163],[-0.024764155969024,-0.068219214677811,-0.013612162321806],[0.013783490285277,0.08166391402483,-0.014968731440604]],[[-0.0070860935375094,-0.0035645561292768,-0.044799897819757],[0.034310907125473,0.026989798992872,0.019574815407395],[-0.017363082617521,0.028375739231706,0.048139318823814]],[[0.0072289099916816,0.046079818159342,-0.03811801970005],[0.0062086535617709,-0.0069212489761412,0.027228269726038],[-0.064977467060089,-0.093710169196129,0.0002132686204277]],[[-0.003141105407849,0.022348860278726,0.066446296870708],[-0.030845079571009,-0.00072635139804333,-0.0076304660178721],[0.0073098759166896,-0.026084868237376,-0.0040979692712426]],[[-0.0050631747581065,-0.01099116448313,-0.035362619906664],[0.021890951320529,-0.050162382423878,-0.051886323839426],[0.044015634804964,-0.0073461690917611,-0.0049508796073496]],[[0.02493885345757,0.0098075019195676,0.065791733562946],[0.0061688278801739,-0.022880084812641,0.048660296946764],[-0.027005529031157,-0.037868335843086,-0.081145614385605]],[[-0.011641330085695,0.021846620365977,-0.064042888581753],[0.02727440930903,-0.038332667201757,-0.041852697730064],[-0.0053890137933195,-0.028258359059691,0.019624074921012]],[[0.0024011023342609,-0.001613354193978,0.074690654873848],[0.0087515134364367,-0.020075472071767,0.015598548576236],[-0.078559391200542,-0.057622902095318,-0.056048989295959]],[[0.030074961483479,-0.017728084698319,-0.0065206382423639],[0.050575777888298,-0.012252966873348,-0.048845659941435],[0.050407592207193,0.048221413046122,-0.11763142049313]],[[-0.20051649212837,0.0062363990582526,-0.083693489432335],[-0.02180259861052,0.0011361401993781,-0.054111756384373],[0.052500300109386,-0.19636246562004,0.074654601514339]],[[0.028271296992898,0.02483550272882,0.070135436952114],[0.036424446851015,-0.052100669592619,-0.022372307255864],[0.028938325121999,-0.0066788801923394,-0.069272421300411]],[[-0.038075119256973,-0.030510017648339,-0.0083526326343417],[0.023343509063125,-0.017477627843618,-0.05996972694993],[-0.0053777932189405,0.033455081284046,0.053816452622414]],[[-0.020705407485366,-0.068499267101288,0.06693447381258],[-0.034367375075817,0.014606574550271,-0.020918730646372],[0.058211978524923,0.0047554243355989,-0.0083358529955149]],[[0.022695479914546,-0.0187301132828,0.063320718705654],[-0.017617590725422,-0.0053246328607202,-0.03786014392972],[-0.02635346353054,0.0016734451055527,0.0044704526662827]],[[0.024114534258842,-0.076412044465542,0.094959892332554],[-0.0047666751779616,0.1088897511363,0.017293035984039],[0.010054991580546,-0.010894765146077,-0.028036465868354]],[[0.020244991406798,-0.083897516131401,-0.016762373968959],[-0.039251949638128,0.067509829998016,0.067062586545944],[-0.049177214503288,-0.0062897461466491,-0.029767476022243]],[[0.030254313722253,-0.0030075316317379,-0.0015826922608539],[-0.038601689040661,-0.055486779659986,0.0772315710783],[0.0044580036774278,-0.0095566315576434,0.017630472779274]],[[-0.033873349428177,-0.041467562317848,-0.062370974570513],[-0.039329081773758,0.059077076613903,0.067344173789024],[0.08534599840641,-0.022512773051858,-0.018529998138547]],[[-0.14070245623589,-0.080196291208267,-0.053414944559336],[0.04739486426115,0.089035481214523,0.021964577957988],[0.057002924382687,0.061667155474424,0.044348366558552]],[[0.030385255813599,-0.01201419532299,0.016846792772412],[-0.010872810147703,-0.012991027906537,-0.052378468215466],[0.0010379892773926,-0.010771381668746,-0.027819022536278]],[[0.022218322381377,0.022438909858465,0.055610530078411],[0.012683805078268,0.09971584379673,-0.0045437845401466],[0.025968579575419,0.001319236936979,0.0057185408659279]],[[0.025778342038393,0.10422915965319,0.03692976757884],[-0.080161273479462,-0.01961961388588,0.056865267455578],[-0.032490123063326,-0.008902145549655,-0.073607638478279]],[[-0.014357404783368,0.010784680955112,-0.033595487475395],[-0.020218815654516,0.025584707036614,0.032131016254425],[0.027502143755555,0.013222286477685,-0.013077487237751]],[[-0.0099522024393082,0.033821016550064,0.044093232601881],[-0.057622328400612,-0.043421491980553,0.004358472302556],[-0.065098166465759,0.018861846998334,-0.030690688639879]],[[-0.011864836327732,0.086084887385368,-0.028022926300764],[0.053272724151611,-0.012083612382412,-0.028072169050574],[0.0031427498906851,0.022379966452718,-0.047622568905354]],[[-0.088402450084686,-0.041205737739801,0.021308256313205],[0.021909758448601,-0.0097541138529778,-0.047747533768415],[0.061378970742226,-0.00084918219363317,-0.08687761425972]],[[0.0099737737327814,0.032789710909128,0.069753617048264],[-0.0016786741325632,-0.040577869862318,-0.031190987676382],[0.00073285837424919,-0.02686920017004,-0.079883098602295]],[[-0.0717608705163,0.030312011018395,-0.031428664922714],[-0.03036436997354,-0.0039362031966448,0.041808743029833],[-0.037617828696966,-0.043748021125793,0.10160698741674]],[[-0.011377402581275,-0.038179133087397,-0.0092733027413487],[-0.015708945691586,-0.019147906452417,0.056375496089458],[-0.0070072906091809,0.014168599620461,-0.038213700056076]],[[-0.033419124782085,0.085779003798962,0.0085528194904327],[-0.060922540724277,-0.019569193944335,0.082792609930038],[0.040992118418217,-0.10226595401764,-0.033940859138966]],[[0.11976502090693,-0.0030016826931387,0.063457898795605],[0.018438886851072,0.095774166285992,0.039255023002625],[0.12818394601345,-0.0080989673733711,0.02375365793705]],[[-0.033415760844946,-0.049809280782938,-0.093699604272842],[-0.0046460232697427,-0.017384890466928,-0.16567832231522],[-0.011006202548742,-0.02224000915885,-0.088479548692703]],[[-0.021450659260154,0.023878782987595,-0.11882044374943],[0.016606913879514,0.04899837821722,0.038990329951048],[0.020768661051989,-0.015055720694363,0.030032774433494]],[[0.0672342851758,0.00043848366476595,-0.065379276871681],[0.00083700771210715,-0.0090233832597733,0.0039679505862296],[0.037577886134386,-0.010317876003683,-0.0064000133424997]],[[-0.050081301480532,-0.002418844262138,0.0038059409707785],[-0.042995449155569,-0.0060550086200237,0.020867921411991],[0.0012571898987517,-0.031979709863663,-0.032730244100094]],[[0.022664148360491,-0.085242748260498,0.055472042411566],[0.015049827285111,0.045488510280848,0.0098986271768808],[-0.0034231697209179,0.040875293314457,-0.016284620389342]],[[0.021331060677767,-0.019230527803302,-0.020123220980167],[0.0049613658338785,-0.0013079133350402,-0.07233427464962],[0.023146664723754,-0.02173020131886,-0.039864894002676]],[[-0.028459914028645,-0.038137167692184,0.02900393679738],[-0.0087540792301297,0.030503431335092,-0.055570233613253],[0.026750473305583,0.075934536755085,0.021275449544191]],[[0.034384038299322,-0.019594209268689,0.021847223863006],[0.042964652180672,-0.022784613072872,-0.010073902085423],[-0.039304807782173,0.033367529511452,-0.029062878340483]],[[-0.052355848252773,-0.011485191062093,-0.048609506338835],[0.058610137552023,0.062027372419834,0.030078835785389],[0.016182785853744,-0.032262854278088,-0.048576690256596]],[[-0.037174303084612,0.12208446860313,-0.039174728095531],[0.023043714463711,0.071093238890171,-0.096956662833691],[0.0026768303941935,0.018503660336137,-0.030018640682101]],[[-0.1225001886487,0.055828381329775,0.010128075256944],[0.067830920219421,-0.12068352103233,0.067314088344574],[-0.069444961845875,0.018691582605243,0.0030183289200068]],[[0.02190107665956,0.026232765987515,0.028563756495714],[0.011735208332539,-0.049636270850897,-0.026852464303374],[0.065745994448662,-0.0072895381599665,-0.039457593113184]],[[0.04000611230731,0.018879640847445,-0.072743304073811],[-0.016817644238472,0.05999518558383,-0.088238418102264],[-0.0084746619686484,-0.0091581325978041,-0.021751059219241]],[[0.0068864417262375,-0.027571473270655,-0.077871166169643],[0.05995487421751,-0.078494712710381,0.087869100272655],[-0.052645724266768,-0.046934261918068,-0.021870674565434]],[[0.037037078291178,0.001743053435348,0.0021758128423244],[-0.020846832543612,0.036115344613791,-0.021982606500387],[0.020976783707738,-0.0026757968589664,0.060156770050526]],[[0.041796468198299,0.010905785486102,-0.079178333282471],[-0.031317513436079,-0.016609087586403,0.030040452256799],[0.0036259205080569,-0.059804584830999,0.028583256527781]],[[-0.059354592114687,-0.015447965823114,-0.050664231181145],[-0.021247589960694,-0.011470916680992,-0.0697031468153],[-0.021790843456984,-0.057452563196421,0.053590465337038]],[[-0.020757785066962,0.015628047287464,0.070997186005116],[-0.047205328941345,-0.039429519325495,0.041076306253672],[0.0081313690170646,0.043046534061432,0.076424270868301]],[[0.010543178766966,0.070044532418251,0.00090396811719984],[-0.00099463108927011,0.037887431681156,0.043216362595558],[-0.003167626215145,-0.027744011953473,0.026329623535275]],[[-0.0025031042750925,0.053820602595806,-0.016399385407567],[-0.029843240976334,-0.015987819060683,0.075145691633224],[-0.10371217876673,-0.029673513025045,0.052380539476871]],[[-0.057212665677071,-0.030134065076709,-0.021251283586025],[0.043205358088017,-0.035648334771395,0.04555382579565],[0.015512652695179,-0.01207787450403,-0.02055724337697]],[[-0.020077187567949,-0.021671919152141,-0.044677998870611],[-0.015934579074383,-0.023639256134629,-0.0012547285296023],[0.045802667737007,-0.0034351523499936,-0.026953326538205]],[[-0.025959923863411,0.097418770194054,-0.073099203407764],[0.0056499326601624,-0.073797680437565,0.077154844999313],[-0.023137295618653,0.0034815946128219,0.0044657178223133]],[[-0.055701848119497,-0.024852121248841,0.041737597435713],[-0.074876502156258,-0.033671010285616,0.021899614483118],[-0.0049859946593642,-0.003385771997273,0.058709032833576]],[[-0.06281478703022,-0.057323571294546,0.0061031747609377],[0.0068195392377675,0.079348981380463,0.017966043204069],[0.0048995357938111,-0.039861936122179,-0.048922557383776]],[[-0.001377759501338,-0.024223914369941,-0.0010966800618917],[0.029956975951791,0.002137252362445,0.01208237465471],[0.020410729572177,0.027866847813129,0.018135828897357]],[[-0.022300947457552,-0.0032362800557166,0.087370559573174],[0.020962622016668,-0.029616648331285,0.063593432307243],[0.02264860086143,0.043313689529896,0.022081330418587]],[[0.0016557049239054,-0.0057421028614044,-0.024261377751827],[-0.027413628995419,-0.040899321436882,-0.00014574790839106],[-0.039320435374975,-0.0001145734131569,0.025946049019694]],[[-0.041802637279034,0.066961191594601,-0.038914453238249],[0.027058171108365,0.047063499689102,0.03335340693593],[0.10796008259058,-0.011913334019482,0.084040902554989]],[[-0.043798103928566,0.033792216330767,0.040928639471531],[-0.03086755797267,0.023403864353895,-0.010950767435133],[-0.015577214770019,-0.0048344600945711,0.0092556923627853]],[[0.018184820190072,-0.0032777662854642,0.043858643621206],[-0.0057926038280129,-0.026605971157551,-0.0068393955007195],[0.010345738381147,0.008388701826334,-0.023035690188408]],[[-0.049021624028683,0.09068388491869,-0.028086328878999],[-0.069668643176556,0.039391726255417,-0.05453922227025],[0.064419530332088,-0.045620527118444,0.05495523661375]],[[-0.076902225613594,-0.014773156493902,-0.0033783172257245],[0.04009772837162,-0.028002904728055,-0.0056572137400508],[0.020631300285459,-0.021014139056206,-0.044680405408144]],[[-0.015665199607611,-0.0044147996231914,-0.072596445679665],[-0.0066791195422411,-0.0099476668983698,0.06359001994133],[0.046081192791462,0.00076517130946741,0.036322671920061]],[[0.0474540181458,-0.10507293045521,0.035504717379808],[-0.027512235566974,-0.0023946925066411,-0.034003391861916],[-0.0057461955584586,-0.0072342250496149,-0.021040169522166]],[[-0.0050625107251108,0.011976555921137,0.029171995818615],[-0.062684305012226,-0.1315485984087,-0.10996536910534],[-0.09834436327219,-0.015952218323946,0.052863631397486]],[[-0.01947064884007,-0.050257343798876,-0.020152520388365],[-0.056663330644369,0.050346057862043,0.057839773595333],[0.040164943784475,-0.10152419656515,-0.0059453332796693]],[[-0.004712768830359,-0.010499875992537,0.047189462929964],[-0.029113594442606,0.035508863627911,0.036818414926529],[0.023683546110988,-0.0027910347562283,-0.047675300389528]],[[0.060968026518822,-0.063449524343014,0.024732194840908],[0.030750349164009,0.027721457183361,0.045352697372437],[0.01946378685534,0.01629870198667,-0.091286234557629]],[[0.0052733831107616,0.00035141449188814,-0.067811407148838],[0.023113897070289,0.047804117202759,0.060176577419043],[-0.022973230108619,0.0054215239360929,-0.022064313292503]],[[-0.062470447272062,-0.034489300101995,0.0068560438230634],[0.0060224328190088,0.005063044372946,0.004178530536592],[0.043963626027107,0.035625223070383,0.021699981763959]],[[-0.044485233724117,0.022547459229827,0.014831558801234],[-0.038275994360447,-0.036990281194448,-0.018428547307849],[0.036488771438599,0.066336207091808,-0.036642797291279]],[[0.0011195802362636,0.051299948245287,-0.018216570839286],[0.052973590791225,0.051669962704182,-0.071561135351658],[0.012094599194825,-0.0086699323728681,0.044678747653961]],[[0.0031994585879147,0.0016730623319745,-0.052511267364025],[0.033320665359497,-0.055749893188477,-0.061535898596048],[0.053241606801748,0.057955481112003,-0.06257201731205]],[[0.015676438808441,0.053110059350729,0.030776105821133],[-0.004768927115947,0.020304163917899,0.024615556001663],[-0.042695190757513,-0.030268432572484,0.035561710596085]],[[0.072785295546055,-0.0091239362955093,0.020514074712992],[-0.051949571818113,-0.071161799132824,-0.029917338863015],[0.033144060522318,-0.031776033341885,-0.012380794622004]],[[-0.024961592629552,-0.00038257494452409,-0.0054956623353064],[-0.038752246648073,0.0078337891027331,0.011340463533998],[-0.056124892085791,0.04412842169404,0.030959028750658]],[[0.0060329879634082,0.03260524943471,-0.011680396273732],[0.032701313495636,0.044291485100985,-0.00014120207924861],[0.0079747205600142,-0.016165880486369,-0.0044839400798082]],[[0.030881717801094,-0.0024137292057276,-0.051309198141098],[0.041561234742403,-0.046388760209084,-0.081788301467896],[-0.024981817230582,-0.040846969932318,-0.044085714966059]],[[0.043778195977211,-0.027115745469928,0.017968103289604],[0.068793304264545,-0.010657173581421,-0.0051302001811564],[0.041333459317684,-0.023370673879981,0.0024266405962408]],[[0.050161492079496,-0.029813701286912,-0.024579642340541],[0.019368540495634,-0.023114735260606,-0.039432477205992],[0.0047733555547893,-0.020112985745072,0.0079311775043607]],[[-0.011262403801084,-0.0034791333600879,-0.088098123669624],[-0.0012791668996215,0.0069948863238096,-0.062366660684347],[0.013090405613184,0.010938978753984,0.083880394697189]],[[-0.013973200693727,0.010496023111045,0.028155209496617],[0.047696188092232,0.01033537555486,0.036901693791151],[-0.0067150434479117,-0.061701793223619,-0.028906721621752]],[[-0.13433262705803,0.049806762486696,-0.087815344333649],[0.11991014331579,-0.08644026517868,0.066950879991055],[0.012867949903011,0.10274413228035,-0.050131760537624]],[[-0.040194496512413,-0.012374611571431,-0.078265443444252],[-0.011884389445186,-0.10073215514421,-0.03289944678545],[0.024003464728594,0.015696093440056,-0.0038055428303778]],[[-0.014013337902725,-0.019454808905721,0.063144400715828],[-0.00034677336225286,-0.013054581359029,0.011475778184831],[0.033538065850735,0.035475123673677,0.040784630924463]],[[-0.037512224167585,-0.0085179870948195,0.029722502455115],[-0.05949904024601,-0.061582189053297,0.025341322645545],[0.032326679676771,0.0049574505537748,0.033986877650023]],[[0.0034075386356562,-0.010136114433408,0.0050280909053981],[0.080953910946846,-0.03544619679451,-0.074651964008808],[0.065166041254997,0.061385747045279,-0.020038705319166]],[[-0.01146933902055,-0.013169168494642,-0.023032285273075],[0.058043919503689,0.003974842838943,-0.0017971766646951],[0.074746005237103,0.016829648986459,0.074446476995945]],[[-0.028843743726611,0.015133360400796,-0.027564456686378],[-0.076116517186165,-0.0044937245547771,0.030119052156806],[0.041563473641872,0.053457736968994,0.034901708364487]],[[0.062171872705221,0.086386300623417,-0.068758681416512],[0.010142430663109,0.024146802723408,-0.096331670880318],[-0.037267290055752,-0.018392827361822,0.0051417499780655]],[[0.030034516006708,0.00097993982490152,-0.029849112033844],[-0.063983514904976,-0.05231910571456,0.092162281274796],[-0.021991768851876,-0.022704441100359,-0.091538913547993]],[[0.023138837888837,0.0070109707303345,-0.052129689604044],[-0.018652839586139,0.052196234464645,-0.071433417499065],[-0.032009199261665,0.0011030123569071,0.012215836904943]],[[-0.05159118399024,-0.031835354864597,0.049155466258526],[0.044318675994873,-0.023363808169961,0.015472261235118],[0.03445652499795,0.013949363492429,0.0039501842111349]],[[0.0056632766500115,0.049150947481394,-0.038602419197559],[-0.010429637506604,-0.0075655463151634,-0.0952472910285],[0.018480747938156,0.007830198854208,-0.0071027083322406]],[[-0.023173475638032,0.069298438727856,-0.017152793705463],[-0.013893062248826,0.043769095093012,-0.070410311222076],[0.069476373493671,0.020795380696654,-0.025568732991815]],[[0.025522854179144,-0.061982870101929,-0.021770158782601],[0.039173718541861,-0.0036295265890658,-0.0038307984359562],[0.038424085825682,0.027184700593352,0.042223032563925]],[[0.0021350446622819,-0.079294137656689,0.0095641314983368],[-0.041202291846275,0.027308478951454,0.018172262236476],[0.015224752016366,0.031939830631018,0.016722900792956]],[[-0.018415424972773,-0.0029353559948504,-0.050809729844332],[0.054555885493755,0.0083448961377144,0.0037707486189902],[-0.0028982465155423,-0.0040233144536614,0.035531919449568]],[[-0.0042449277825654,0.0067315963096917,-0.0070259547792375],[-0.030960781499743,-0.02419750764966,-0.0018996513681486],[0.0053944163955748,0.019693061709404,-0.0098061729222536]],[[-0.012599291279912,0.043325338512659,0.018810758367181],[0.014681471511722,-0.012478380464017,-0.0088354563340545],[0.025978792458773,0.077687859535217,0.0079029016196728]],[[-0.010986281558871,0.024973241612315,0.0065177399665117],[0.029348419979215,0.02569249458611,0.019551696255803],[0.015327911823988,0.032958153635263,0.015477356500924]],[[0.012197097763419,-0.057816620916128,0.027649525552988],[0.0017889695009217,0.062492422759533,-0.073900766670704],[0.032992411404848,0.012718381360173,-0.0034170234575868]],[[-0.043591231107712,0.011396740563214,0.025189267471433],[0.052653767168522,0.036310169845819,-0.035217955708504],[-0.02636507153511,0.009403470903635,0.0091742007061839]],[[-0.016059620305896,-0.059310417622328,-0.015673130750656],[0.065386436879635,-0.086825452744961,-0.018662296235561],[0.034064583480358,-0.025911066681147,0.0512450709939]],[[-0.033530786633492,0.021344346925616,-0.030451619997621],[-0.010138235986233,0.020726546645164,-0.058150433003902],[-0.018362475559115,-0.031414959579706,-0.12273506820202]],[[-0.0071771387010813,-0.066986002027988,0.0017843621317297],[-0.017747268080711,0.050354886800051,-0.006748013664037],[-0.021072275936604,-0.036871798336506,0.0060368808917701]],[[0.024253016337752,0.013180995360017,0.059355102479458],[0.016510786488652,0.011698707938194,-0.0028407659847289],[-0.037960734218359,-0.0075657516717911,-0.055552236735821]],[[0.054779469966888,0.051887273788452,0.038237307220697],[-0.0025412745308131,-0.061290133744478,0.016891958191991],[-0.035331089049578,0.040643848478794,0.01350215729326]],[[-0.062556058168411,-0.025901470333338,0.025245107710361],[0.0050478056073189,0.024939058348536,0.082151785492897],[-0.074479132890701,0.015922151505947,-0.048764526844025]],[[0.01773383282125,-0.028934353962541,0.042155027389526],[0.031236669048667,-0.046056400984526,-0.011856907047331],[0.0062112445011735,0.056562129408121,-0.060333706438541]],[[0.039163801819086,-0.036661215126514,-0.02932645753026],[-0.0068831159733236,0.017900943756104,-0.034302048385143],[-0.023025773465633,0.045801486819983,0.016485061496496]]],[[[-0.061126586049795,0.053569935262203,-0.011078740470111],[-0.017540378496051,0.039539180696011,0.00087173213250935],[0.034472662955523,0.094592228531837,-0.047872383147478]],[[0.027264967560768,0.019881030544639,-0.017332958057523],[-0.029699994251132,-0.019492320716381,-0.05883864313364],[0.026659809052944,0.0033400086686015,0.037720002233982]],[[0.031927209347486,-0.0098653100430965,0.0037478934973478],[-0.023061934858561,0.016986463218927,-0.036570094525814],[-0.031875189393759,0.040337596088648,-0.037104677408934]],[[0.034786656498909,0.039125677198172,0.048445545136929],[0.011479654349387,0.0073257344774902,-0.041019853204489],[0.036015801131725,-0.0085261454805732,0.028522023931146]],[[0.052956860512495,-0.036921739578247,-0.022383578121662],[-0.021645050495863,-0.023999037221074,0.017455298453569],[0.030215281993151,-0.019884034991264,-0.0028340280987322]],[[0.039545103907585,0.091122753918171,0.067992717027664],[-0.051473006606102,-0.011056764051318,0.012593944557011],[-0.035587601363659,0.016228817403316,0.041967146098614]],[[0.00066941336262971,0.014667467214167,-0.013579762540758],[-0.065328665077686,-0.0049633458256721,0.063440389931202],[0.008000161498785,0.058711260557175,-0.053782567381859]],[[0.020907903090119,-0.065678745508194,0.01189542375505],[-0.0093907006084919,-0.018326729536057,0.039102610200644],[-0.035634882748127,0.029487801715732,0.0015559636522084]],[[-0.048596937209368,0.021946536377072,0.090855941176414],[0.010067656636238,0.072552196681499,-0.014896214939654],[0.0025082975625992,0.0074711763300002,-0.046938981860876]],[[-0.0030994624830782,-0.0075833001174033,-0.00011040378012694],[0.0078943111002445,-0.047413289546967,0.053277920931578],[-0.038710560649633,-0.0051534785889089,-0.0057687829248607]],[[0.010716677643359,0.020582471042871,0.084384962916374],[-0.010567096993327,-0.030562851577997,-0.011945284903049],[-0.014374840073287,0.013698453083634,0.023302363231778]],[[0.028450649231672,-0.0061464924365282,0.019941363483667],[0.027642164379358,-0.017261626198888,0.072032541036606],[-0.025105535984039,-0.063249565660954,-0.011044232174754]],[[0.043631576001644,0.021026642993093,-0.00077440752647817],[0.056095261126757,0.050873652100563,0.021911460906267],[-0.004769038874656,-0.02037656493485,-0.064577475190163]],[[-0.017627434805036,0.021439801901579,-0.06650897860527],[-0.014420256018639,0.027847344055772,0.0082194358110428],[0.027074910700321,-0.046930238604546,0.013608770444989]],[[0.02160732075572,-0.022613106295466,0.016676148399711],[0.013859861530364,-0.055761948227882,-0.044468346983194],[0.03786713629961,0.015576438046992,-0.040874991565943]],[[-0.030635613948107,0.067736618220806,0.0014051520265639],[-0.0046183643862605,0.016757665202022,0.017473747953773],[-0.026717826724052,0.035477742552757,0.02542425878346]],[[0.11471214145422,-0.014822431840003,0.037425432354212],[0.030609292909503,0.038048803806305,0.022968042641878],[0.038938026875257,-0.016366070136428,-0.010088942945004]],[[-0.036526266485453,-0.042066287249327,-0.019135676324368],[-0.016952512785792,0.081948950886726,0.013442602939904],[-0.022726243361831,-0.083070553839207,-0.00052899197908118]],[[0.010380274616182,-0.025397930294275,-0.022768640890718],[-0.10352402925491,0.0073457639664412,0.054493363946676],[-0.014366509392858,0.020775772631168,0.03162208199501]],[[-0.0097359782084823,0.020867396146059,-0.057207267731428],[0.033912815153599,0.039444483816624,0.026066428050399],[0.037806235253811,0.02827363461256,0.00051447248551995]],[[0.015443216077983,0.014306664466858,0.0013164894189686],[0.012934675440192,0.035157039761543,-0.056580618023872],[-0.07280757278204,0.0025296385865659,0.061008509248495]],[[-0.0046208878047764,0.025184277445078,0.016483712941408],[0.039483681321144,0.087500020861626,0.069171898066998],[-0.021679271012545,0.0030569571536034,-0.034177869558334]],[[0.049463957548141,0.1096251681447,-0.03519156947732],[0.048998489975929,0.02959406748414,-0.0073027559556067],[-0.047928310930729,-0.006200497969985,-0.012756274081767]],[[0.013239942491055,-0.039073906838894,-0.046623405069113],[0.055557955056429,-0.019655879586935,-0.016426660120487],[0.031522441655397,0.11755234003067,0.025046486407518]],[[0.021386591717601,0.014045747928321,0.0045486427843571],[0.050689201802015,0.033835612237453,-0.081107400357723],[-0.017161287367344,0.013418652117252,0.00032366919913329]],[[-0.030891662463546,0.043199226260185,0.056880615651608],[-0.017600081861019,-0.10061755031347,-0.047556705772877],[0.0070176473818719,-0.0016652988269925,0.0019911755807698]],[[0.031598456203938,0.030103087425232,-0.01072315685451],[0.037402879446745,0.00031938473694026,0.016097513958812],[0.016058083623648,-0.036029245704412,-0.012616119347513]],[[0.061521101742983,-0.094626776874065,-0.048335805535316],[0.054264403879642,0.066503711044788,0.0034566642716527],[0.053001064807177,0.015507170930505,-0.054943896830082]],[[-0.016475217416883,-0.02267337962985,-0.027596097439528],[0.019163075834513,-0.014558843336999,-0.01449482049793],[0.022033795714378,0.10358600318432,-0.020774321630597]],[[0.079972520470619,-0.021216189488769,-0.061109941452742],[-0.0035566710866988,0.0025883303023875,-0.029071783646941],[-0.078376792371273,0.04505717381835,0.0035056280903518]],[[0.050672702491283,-0.091618612408638,-0.041493538767099],[0.031746599823236,-0.0043770475313067,0.043065123260021],[-0.058207973837852,-0.029632490128279,-0.021438840776682]],[[0.038668263703585,-0.045112282037735,-0.064714893698692],[-0.064574532210827,-0.031753361225128,-0.0039653521962464],[0.089923799037933,-0.013831707648933,-0.03318303078413]],[[0.090672194957733,0.0357447527349,-0.054148271679878],[-0.0054740943014622,0.095334827899933,-0.025155628100038],[-6.5926928073168e-05,-0.0028969421982765,0.0093724317848682]],[[0.0082620345056057,0.0036565116606653,0.010094979777932],[0.047328051179647,-0.033645763993263,-0.097727179527283],[0.0024153955746442,0.018457224592566,0.066958352923393]],[[0.051276247948408,0.0025400663726032,-0.033897157758474],[-0.0068971584551036,0.084631614387035,0.0097683239728212],[0.047370437532663,-0.0082787740975618,0.011747697368264]],[[0.039639480412006,0.077845804393291,-0.075339764356613],[-0.024115882813931,0.057426374405622,0.024607989937067],[0.078184433281422,-0.0097049521282315,-0.033488396555185]],[[0.07498575001955,-0.041940215975046,-0.046745803207159],[-0.074982389807701,0.028053976595402,0.080203026533127],[0.042427636682987,-0.021300407126546,-0.072573490440845]],[[-0.032288238406181,0.024712555110455,0.02684978581965],[-0.025157529860735,0.028039339929819,0.08317905664444],[0.021990597248077,0.035004679113626,0.03836028650403]],[[-0.053522616624832,-0.0017732998821884,-0.020557241514325],[-0.07016134262085,0.026032762601972,-0.030582390725613],[0.092236123979092,0.036335073411465,-0.015160820446908]],[[0.046703960746527,-0.012919164262712,0.019132919609547],[0.092700503766537,0.02208916656673,0.0081553710624576],[-0.051323048770428,-0.0026105432771146,0.041267339140177]],[[0.068881295621395,0.063315875828266,-0.09236953407526],[-0.012507369741797,-0.029391219839454,-0.091390244662762],[0.032694227993488,-0.056294795125723,-0.026091575622559]],[[0.029139874503016,0.072449274361134,0.010680889710784],[0.015429988503456,-0.039674200117588,-0.032204899936914],[0.061091780662537,-0.062844686210155,0.11247128993273]],[[-0.027722561731935,-0.013933185487986,0.061097946017981],[0.028488963842392,-0.009841219522059,0.026799207553267],[0.043137811124325,0.046764019876719,0.042203743010759]],[[0.0065430449321866,-0.031007332727313,-0.031492218375206],[0.014908292330801,-0.042646821588278,-0.055909790098667],[0.0029930968303233,0.00089898507576436,-0.01893475279212]],[[-0.042185325175524,0.0035198254045099,0.0014976728707552],[0.017043147236109,0.034584429115057,0.01179775968194],[0.061912231147289,-0.066015131771564,0.024563055485487]],[[0.034378975629807,0.0049409377388656,0.023028127849102],[-0.067264154553413,0.044328104704618,-0.066048763692379],[-0.023712888360023,0.010514783672988,0.022603852674365]],[[0.048205446451902,-0.051187634468079,-0.0065848948433995],[-0.018731810152531,-0.017183100804687,0.057070501148701],[0.07272220402956,0.033148467540741,-0.026045432314277]],[[-0.040172513574362,-0.031775124371052,0.021857030689716],[0.038269840180874,0.044916912913322,-0.024433676153421],[-0.097712986171246,-0.056754119694233,0.069924965500832]],[[0.00075334153370932,0.013096854090691,0.032113119959831],[0.058421045541763,0.045391477644444,-0.014167510904372],[0.06489622592926,0.0065103811211884,0.066977635025978]],[[0.038310490548611,0.084176577627659,-0.10828952491283],[-0.0073893368244171,-0.030084203928709,0.018674204126],[0.04325245320797,-0.080473408102989,-0.11521008610725]],[[0.039885450154543,-0.071225851774216,-0.024461327120662],[-0.069342724978924,0.035129446536303,-0.034299802035093],[0.03137680888176,0.01109001878649,0.038969751447439]],[[-0.0096887294203043,0.087628878653049,-0.032466236501932],[0.034512862563133,0.00043575547169894,-0.0056544579565525],[0.026700733229518,-0.0057923165149987,0.089469403028488]],[[0.033506061881781,-0.010652677156031,-0.015719586983323],[-0.031260866671801,0.043550431728363,-0.0054310094565153],[0.027040854096413,0.036857828497887,-0.0083095291629434]],[[-0.029564902186394,-0.025332281365991,-0.026143115013838],[0.035043023526669,0.0044913804158568,-0.031614817678928],[-0.047034595161676,-0.020933523774147,0.057680118829012]],[[0.081791073083878,-0.045636106282473,0.038391388952732],[0.041904293000698,-0.031936913728714,0.0082317581400275],[-0.061600476503372,0.09239586442709,-0.025659386068583]],[[0.0035374604631215,-0.034536384046078,0.045769441872835],[-0.016791917383671,0.022233188152313,-0.11289162933826],[0.14202140271664,-0.06078602746129,0.02841130271554]],[[0.019770883023739,0.032804653048515,0.0020968394819647],[0.01044796500355,0.02104614302516,-0.014255496673286],[0.018166108056903,0.060275975614786,-0.052199307829142]],[[0.036841779947281,-0.015399261377752,-0.032979983836412],[0.028335740789771,0.0084358807653189,0.0020656336564571],[0.02426927909255,-0.031736366450787,-0.026385998353362]],[[-0.068786315619946,0.039221849292517,0.057332150638103],[-0.075495555996895,0.020751209929585,0.042340781539679],[0.029290912672877,0.013446467928588,-0.058452609926462]],[[-0.013328454457223,0.040586929768324,-0.0058861500583589],[0.12933380901814,0.063916087150574,0.040387958288193],[0.070471994578838,-0.065841630101204,-0.030284240841866]],[[-0.057139798998833,0.06657325476408,0.032601792365313],[-0.022929187864065,0.013260847888887,0.021930193528533],[-0.028836330398917,0.033346615731716,-0.039627753198147]],[[0.051821753382683,0.00030407091253437,0.011729978956282],[-0.023740280419588,-0.024776889011264,-0.0094855753704906],[-0.021914323791862,0.058231372386217,0.034549556672573]],[[0.0097552351653576,0.013833597302437,0.073520980775356],[-0.01779399253428,0.0041939024813473,-0.0074941217899323],[0.00082024658331648,0.047719299793243,0.069321401417255]],[[-0.044831976294518,-0.0036570471711457,0.038066782057285],[0.0087736183777452,-0.022148812189698,-0.027474680915475],[0.01522855181247,0.0026632680092007,0.010739075951278]],[[-0.0066938493400812,-0.043058600276709,-0.034551575779915],[0.096770361065865,0.058610580861568,-0.0078986966982484],[0.006439995020628,0.013382541947067,-0.041826941072941]],[[0.0016774480463937,0.053510501980782,-0.03369140997529],[-0.10943192243576,0.060140449553728,0.0031717447564006],[0.021467814221978,0.0042889760807157,0.095218770205975]],[[-0.052647221833467,-0.009632402099669,0.028191851451993],[-0.057395540177822,-0.05454184487462,-0.079369634389877],[-0.018112564459443,0.0055356691591442,0.026530534029007]],[[0.010129022412002,-0.033061824738979,-0.034867532551289],[-0.03392493352294,-0.017368257045746,-0.01122734695673],[0.012073047459126,0.038724090903997,-0.025152705609798]],[[0.0018151707481593,0.0083822160959244,0.038937047123909],[-0.03228472545743,-0.029196372255683,0.02195093780756],[-0.01449353992939,-0.039340373128653,0.04269814491272]],[[-0.01561385486275,0.0029331997502595,0.018695862963796],[-0.077384427189827,-0.0029003969393671,0.017699914053082],[0.015561887994409,-0.025294106453657,-0.031658761203289]],[[0.0084902578964829,-0.045951388776302,0.035922680050135],[-0.023291982710361,-0.021659752354026,0.038483109325171],[-0.015021828003228,-0.01748345606029,-0.032940354198217]],[[-0.003043599659577,-0.04609689861536,0.028783056885004],[0.028208333998919,0.035753227770329,0.030553741380572],[-0.063189104199409,0.059356402605772,-0.043203435838223]],[[0.020629271864891,0.024560743942857,0.019123809412122],[-0.017433078959584,-0.075069516897202,0.048866398632526],[-0.044206812977791,-0.013963310047984,-0.064487293362617]],[[-0.027146643027663,-0.054355222731829,-0.055656272917986],[-0.016741221770644,0.028227165341377,-0.037363164126873],[-0.033660724759102,0.073300890624523,0.036158002912998]],[[0.037700686603785,-0.0083921058103442,0.089024752378464],[0.076697111129761,-0.0070582092739642,-0.010243114084005],[-0.023789094761014,-0.026739785447717,-0.0093914484605193]],[[-0.021228980273008,0.019887348636985,-0.021225174888968],[-0.023782193660736,0.011233928613365,-0.035498913377523],[-0.041404515504837,-0.016483759507537,0.025456918403506]],[[0.018006253987551,-0.025096775963902,-0.011056547984481],[-0.038361087441444,0.014717547222972,-0.035376776009798],[-0.036679472774267,0.038812056183815,-0.021202182397246]],[[-0.022245481610298,0.054551105946302,0.021170830354095],[-0.0081026209518313,0.0023843611124903,-0.021850869059563],[0.01748775318265,-0.026122458279133,0.049203235656023]],[[0.0030081206932664,-0.05154712870717,-0.0083883441984653],[-0.034509863704443,-0.0035944455303252,-0.036598823964596],[0.028133921325207,0.0085949087515473,-0.0055923955515027]],[[0.016562281176448,0.025158051401377,-0.023679103702307],[0.007827770896256,0.014434775337577,-0.024618377909064],[0.024444755166769,-0.060061033815145,0.0086593246087432]],[[-0.069162502884865,-0.048489674925804,0.040345028042793],[0.019871693104506,-0.017594953998923,-0.0054513136856258],[-0.0059989830479026,0.00073823699494824,-0.0039475313387811]],[[0.043923731893301,0.0073836729861796,0.073161534965038],[-0.012181189842522,-0.07931150496006,0.0012265860568732],[-0.1199344843626,-0.0290313847363,0.031144965440035]],[[0.014933138154447,-0.0094981491565704,0.048482723534107],[-0.01264660526067,-0.041486468166113,0.026893896982074],[0.013578939251602,-0.0014243596233428,0.040585156530142]],[[0.080724857747555,0.066248156130314,-0.0014381285291165],[0.027122220024467,-0.02077511139214,0.035902041941881],[0.021030977368355,-0.051926530897617,0.053780376911163]],[[-0.0016162972897291,-0.014468719251454,-0.023238511756063],[0.011694046668708,-0.10840670019388,0.088403508067131],[-0.020851340144873,0.015342456288636,0.053847309201956]],[[-0.066560186445713,0.019278263673186,0.041585572063923],[0.010044330731034,0.029523199424148,-0.043637119233608],[0.0089296316727996,0.041955340653658,0.030132813379169]],[[-0.01597348228097,0.02429173886776,-0.028967482969165],[-0.034325886517763,-0.022011859342456,0.039884921163321],[-0.023886578157544,0.072233602404594,-0.00072303152410313]],[[0.0045890435576439,0.028540754690766,-0.086747944355011],[-0.035720802843571,0.027224184945226,-0.0015455007087439],[0.037125892937183,0.037323247641325,0.041527424007654]],[[0.09051825106144,-0.013212381862104,-0.064700126647949],[-0.025424862280488,0.0064132413826883,0.035234563052654],[0.053692031651735,-0.050136275589466,0.042153619229794]],[[-0.019526552408934,0.010143043473363,-0.06969315558672],[0.046829111874104,0.0024082271847874,-0.037439167499542],[0.018541172146797,-0.0031869916711003,0.0078822607174516]],[[0.0018705558031797,-0.0068303365260363,0.0087218526750803],[-0.0025514776352793,0.096618980169296,0.054605573415756],[0.052354283630848,-0.00016777153359726,0.054396487772465]],[[0.013024010695517,0.032255198806524,-0.036727242171764],[-0.051025658845901,0.025347108021379,-0.016187051311135],[-0.090932816267014,0.025895839557052,0.057517927139997]],[[-0.022228138521314,0.0097197368741035,-0.00017777846369427],[-0.051413610577583,0.011427552439272,0.01223879866302],[-0.022180469706655,-0.048624519258738,0.029600016772747]],[[-0.054336309432983,0.043281480669975,0.0024736549239606],[0.030364019796252,-0.040677588433027,-0.050379313528538],[0.034260232001543,-0.060415178537369,-0.0016193278133869]],[[-0.016794092953205,-0.018826693296432,-0.044085070490837],[-0.073210023343563,0.028829120099545,-0.087805040180683],[-0.02580731920898,0.065071821212769,-0.034305606037378]],[[0.0029704938642681,-0.0034109579864889,-0.0096263848245144],[0.053117983043194,0.004192422144115,0.032003078609705],[0.011951084248722,0.092564381659031,0.01523285266012]],[[0.0076175956055522,0.012691766023636,-0.033657174557447],[0.06710658967495,0.0064939497970045,-0.0040983110666275],[0.07499648630619,0.038179781287909,-0.013699212111533]],[[0.017672300338745,-0.08413103222847,0.056063111871481],[-0.08260390907526,-0.049066293984652,-0.021130634471774],[0.096729636192322,-0.013312083669007,-0.030785599723458]],[[-0.047678902745247,-0.044093575328588,0.017558431252837],[0.018800349906087,0.048198074102402,-0.0035573770292103],[-0.001424339832738,0.030886590480804,-0.01250356528908]],[[-0.047600980848074,-0.049369223415852,0.032814517617226],[-0.017592946067452,-0.017245320603251,-0.021852884441614],[-0.037034749984741,-0.0010610549943522,0.0074513051658869]],[[0.012250665575266,0.038873367011547,0.036362744867802],[-0.082782737910748,-0.058969717472792,-0.0044256313703954],[0.057698640972376,0.071886591613293,1.0172361726291e-05]],[[-0.027908651158214,-0.047415945678949,0.028915582224727],[0.0076018911786377,-0.065147340297699,0.0059368507936597],[-0.045349948108196,-0.014319164678454,0.017004380002618]],[[0.009239406324923,0.02351788431406,0.074887730181217],[-0.033678572624922,0.0082141477614641,0.0064897695556283],[-0.057116348296404,-0.0694230645895,0.0030634345021099]],[[-0.00074675842188299,-0.0079704383388162,-0.051812283694744],[0.025438081473112,0.015480161644518,-0.023212365806103],[-0.041511684656143,-0.086361557245255,0.020498527213931]],[[0.01023658271879,0.066048592329025,-0.037923242896795],[-0.0052603236399591,0.060020923614502,-0.024911796674132],[-0.043689057230949,0.025679664686322,-0.0036701592616737]],[[-0.033327221870422,-0.022831466048956,-0.0091504473239183],[-0.059714544564486,-0.062937118113041,-0.079249739646912],[0.0083148153498769,-0.042636856436729,-0.026623785495758]],[[-0.047609858214855,0.02837635949254,0.067519851028919],[0.0031799282878637,-0.025432230904698,0.013726675882936],[-0.047998759895563,0.08190481364727,-0.0097276968881488]],[[-0.01149495691061,-0.069667793810368,0.052536495029926],[0.057025872170925,-0.031419735401869,0.02940527908504],[0.0018521354068071,-0.044160101562738,0.0044126943685114]],[[0.026447415351868,0.0038126187864691,0.013512783683836],[0.020150225609541,0.071009837090969,-0.01595801115036],[-0.055182080715895,0.045372318476439,-0.064881131052971]],[[-0.04232844337821,0.008398350328207,0.0010574763873592],[0.0026981455739588,0.0068992762826383,0.03593859449029],[0.006319587584585,0.0072419266216457,-0.028895650058985]],[[0.036938052624464,0.021344181150198,0.084286198019981],[0.0068734246306121,-0.031198455020785,0.032824423164129],[0.0097123058512807,0.064170733094215,0.02244389615953]],[[-0.025311533361673,0.0075512086041272,-0.0036224089562893],[-0.03410442173481,0.084470085799694,-0.014543636702001],[-0.013411187566817,-0.0073709040880203,-0.041126776486635]],[[0.017562698572874,0.04086359590292,-0.038109574466944],[0.014710800722241,0.0051095439121127,-0.053753145039082],[0.091114394366741,-0.024367373436689,-0.011274099349976]],[[0.023284709081054,-0.044866055250168,0.00090875977184623],[0.025021687150002,-0.015904482454062,-0.00076740683289245],[0.036973889917135,-0.049654047936201,0.027143998071551]],[[-0.0025308497715741,0.028773637488484,-0.013121169060469],[0.0036237866152078,0.036018256098032,-0.045107070356607],[0.025028087198734,-0.0033214201685041,-0.016499506309628]],[[-0.047621291130781,-0.042828932404518,-0.058838985860348],[0.063670113682747,-0.0080349976196885,-0.026410505175591],[-0.13890251517296,-0.099117487668991,0.023927748203278]],[[0.015635969117284,0.010850630700588,0.0087138647213578],[-0.0071910158731043,-0.044464770704508,0.061334166675806],[0.0025843845214695,0.045287504792213,0.0096853822469711]],[[0.046637423336506,-0.020439274609089,-0.015706889331341],[0.025435725226998,-0.040139649063349,0.027381671592593],[-0.012038166634738,-0.0023385714739561,0.025052243843675]],[[0.027943000197411,-0.012694496661425,0.0087982341647148],[-0.059890914708376,0.00031386970658787,0.013339689932764],[-0.050770744681358,0.0019091548165306,-0.019618047401309]],[[0.066813252866268,-0.06006034091115,-0.023091495037079],[-0.0046133133582771,0.049518764019012,0.060733821243048],[0.035836834460497,-0.031404282897711,0.010421336628497]],[[0.022299589589238,-0.03506039455533,-0.012764084152877],[0.052417181432247,0.07157015055418,0.038392975926399],[-0.012305379845202,-0.025418847799301,-0.072971358895302]],[[-0.068659424781799,0.02530900016427,0.11312821507454],[0.069538474082947,-0.0015848061302677,0.064258836209774],[-0.019227089360356,-0.026872156187892,0.026065928861499]],[[-0.0074776918627322,0.042878597974777,0.029470946639776],[-0.05377584695816,0.011735966429114,-0.030781960114837],[0.015872456133366,0.072330832481384,0.032402161508799]],[[0.075967684388161,-0.0046307006850839,-0.078285813331604],[-0.05480995029211,-0.038820821791887,0.015158542431891],[0.022838739678264,0.010978550650179,-0.050963569432497]],[[0.018976531922817,0.028566919267178,0.012248787097633],[-0.019240621477365,-0.024932656437159,-0.076223231852055],[-0.016402600333095,-0.02837879024446,0.020398749038577]],[[-0.025978859513998,-0.043489214032888,0.06327410787344],[-0.074570178985596,0.0013597296783701,0.016332691535354],[-0.013999950140715,0.039117354899645,-0.0014929480385035]],[[-0.048934355378151,-0.0041391332633793,0.013055413030088],[-0.010816996917129,0.035963132977486,-0.12530283629894],[-0.0014227589126676,-0.046348545700312,0.0020457848440856]],[[0.040682755410671,-0.0448357462883,0.013449617661536],[0.056422732770443,-0.037084776908159,-0.048479955643415],[0.018723869696259,-0.030292863026261,-0.087379463016987]]],[[[-0.00070305331610143,-0.098556831479073,-0.28271010518074],[0.0068134944885969,-0.048162862658501,-0.016707630828023],[-0.0057796034961939,0.057926390320063,0.0027602093759924]],[[-0.14893689751625,-0.035304099321365,0.012458242475986],[-0.027269272133708,0.16864231228828,0.0040879677981138],[0.039602447301149,0.061972208321095,-0.043505862355232]],[[-0.030217533931136,-0.073118470609188,0.0021139727905393],[0.16477818787098,0.018341371789575,-0.052913259714842],[0.051500681787729,0.0014889676822349,0.0023162344004959]],[[0.087375789880753,0.053878083825111,0.024974655359983],[0.035235434770584,-0.069855682551861,-0.11716421693563],[0.06548535078764,0.12978817522526,0.015289769507945]],[[0.25747212767601,-0.17869351804256,0.052332952618599],[0.13996900618076,-0.058048073202372,0.081733666360378],[-0.045958574861288,-0.028576198965311,-0.012818360701203]],[[-0.086327262222767,0.03443307057023,0.096409775316715],[0.0054235900752246,-0.052721720188856,0.19739492237568],[-0.0029500115197152,-0.020827896893024,0.10059869289398]],[[0.025191692635417,-0.051561489701271,-0.011711203493178],[-0.029742343351245,0.002955564064905,-0.067752823233604],[-0.05914719030261,0.034490033984184,0.040658548474312]],[[0.29962056875229,0.097557581961155,0.28491735458374],[-0.0089981779456139,0.056130144745111,0.081629939377308],[-0.12377074360847,-0.041834946721792,-0.16762463748455]],[[-0.24122588336468,-0.08226627856493,0.25267985463142],[-0.072637967765331,0.021529570221901,0.11891232430935],[0.057111244648695,-0.078229114413261,0.12248273938894]],[[-0.060799289494753,0.054821468889713,-0.16484659910202],[-0.029769863933325,0.0023917627986521,-0.078416548669338],[-0.071013405919075,0.069903612136841,-0.060460668057203]],[[0.16608934104443,0.077979601919651,0.11398677527905],[0.063007675111294,-0.0041169766336679,0.045604102313519],[-0.061520617455244,-0.023543084040284,-0.15473482012749]],[[0.10915891081095,-0.054020762443542,0.07235237210989],[-0.12810821831226,-0.026320172473788,0.099383242428303],[0.047446183860302,-0.0036654088180512,-0.096333093941212]],[[0.013763280585408,-0.013587596826255,0.0018320466624573],[0.098358437418938,-0.029640953987837,0.090530976653099],[-0.049394890666008,-0.0036646574735641,0.12585580348969]],[[0.017289279028773,0.05085114389658,0.010312067344785],[0.0015209657140076,0.11139243841171,0.015301410108805],[0.019382519647479,-0.012597306631505,0.011322818696499]],[[-0.10992431640625,-0.072645932435989,-0.02661550976336],[-0.046346820890903,0.08671996742487,0.10032992810011],[0.076944723725319,-0.030732719227672,-0.10502745956182]],[[-0.093624800443649,-0.039945635944605,0.021234676241875],[-0.070578292012215,-0.21326665580273,-0.10243967920542],[0.31218108534813,-0.12768906354904,-0.038128077983856]],[[-0.077256135642529,-0.098070897161961,0.0028137709014118],[0.043917313218117,-0.028635930269957,-0.0085782501846552],[0.31207105517387,0.1828857511282,-0.014807543717325]],[[-0.0083124050870538,0.25934213399887,0.094393022358418],[-0.03222880512476,0.010832254774868,-0.077392548322678],[-0.30998262763023,-0.085188798606396,0.062068335711956]],[[0.12309445440769,0.24766273796558,-0.10121947526932],[-0.046547338366508,0.130460485816,-0.094981074333191],[-0.0099634621292353,-0.14522659778595,-0.032056387513876]],[[0.014826570637524,0.044182326644659,0.078258961439133],[-0.096562288701534,-0.11770267784595,-0.068169109523296],[0.035316832363605,0.10377375781536,-0.007193913217634]],[[-0.072508186101913,0.052499085664749,0.089655265212059],[-0.22758251428604,-0.012752380222082,0.10547571629286],[0.10278584808111,-0.25954174995422,-0.016138564795256]],[[-0.12668824195862,0.057491086423397,0.066895835101604],[-0.19748774170876,0.082031928002834,-0.042352113872766],[-0.12272153794765,0.064618766307831,0.14576950669289]],[[-0.012645959854126,-0.0020367468241602,0.036031901836395],[-0.025362590327859,-0.0054024569690228,0.12835364043713],[-0.013959676958621,-0.051785182207823,-0.012197851203382]],[[-0.029675817117095,-0.034542724490166,0.059407308697701],[-0.12437693029642,0.064963638782501,-0.025654701516032],[0.097314953804016,-0.053603425621986,-0.11464408040047]],[[-0.048245169222355,-0.024494813755155,0.025949278846383],[-0.10324776917696,0.040661063045263,-0.018404753878713],[0.07960606366396,0.0078596705570817,-0.11656524986029]],[[-0.12729381024837,-0.087484754621983,-0.016482803970575],[-0.046086400747299,-0.04357261583209,0.027658207342029],[-0.05829343944788,-0.086221717298031,0.0034931509289891]],[[-0.094628319144249,0.24181887507439,0.071244671940804],[-0.15759015083313,0.10504603385925,0.011675134301186],[0.029017325490713,0.067881777882576,-0.18137216567993]],[[0.13740032911301,0.031880129128695,-0.098142459988594],[-0.014871495775878,-0.0023220111615956,-0.10539558529854],[-0.039694759994745,0.010055528022349,-0.043682616204023]],[[-0.025188146159053,0.018360523506999,0.056277923285961],[-0.14212520420551,-0.036300398409367,0.14358422160149],[0.03782432153821,-0.12052626907825,-0.047637041658163]],[[0.030766198411584,-0.11092111468315,-0.0027565690688789],[0.19091719388962,-0.08404703438282,-0.0027180453762412],[-0.011056868359447,-0.098088704049587,0.085937693715096]],[[0.18032690882683,-0.17258164286613,-0.11880034953356],[-0.1223935931921,-0.24266722798347,-0.060086440294981],[-0.19166314601898,-0.39899006485939,-0.056250441819429]],[[-0.078803688287735,0.07906299829483,0.15817488729954],[0.021986482664943,0.14213544130325,-0.05005894228816],[-0.059808395802975,0.17415164411068,-0.093069724738598]],[[-0.097566522657871,0.23896306753159,0.080505922436714],[-0.072276376187801,0.028946226462722,0.10829944163561],[-0.1076559945941,-0.017813166603446,-0.047063417732716]],[[0.12424147874117,-0.015669159591198,-0.10322519391775],[0.096106372773647,-0.11560681462288,-0.052977841347456],[0.10334013402462,-0.033753227442503,0.085888400673866]],[[-0.092179991304874,-0.043516755104065,-0.099042974412441],[-0.012109524570405,0.065019018948078,-0.1167618855834],[-0.044852338731289,0.1049528196454,-0.027328722178936]],[[-0.093883313238621,0.02727104909718,-0.085462935268879],[-0.19612807035446,0.20110940933228,-0.021138295531273],[-0.068116538226604,0.13702562451363,-0.017826227471232]],[[-0.14084273576736,0.18685165047646,-0.036134097725153],[0.019346665591002,0.057929564267397,0.043402899056673],[-0.01540469750762,-0.25831043720245,-0.083626002073288]],[[-0.058533865958452,0.060038838535547,0.11107283085585],[-0.095516890287399,0.11099178344011,-0.12331592291594],[-0.026217127218843,0.085116229951382,0.043883837759495]],[[-0.042758665978909,-0.016124365851283,0.054141264408827],[0.093960717320442,-0.046842966228724,-0.019542181864381],[0.16340592503548,-0.080028235912323,-0.12846331298351]],[[-0.13371105492115,-0.010207139886916,-0.024541299790144],[-0.044949296861887,0.1048590913415,0.06822207570076],[0.090650245547295,0.18737733364105,0.13685278594494]],[[-0.11016470193863,0.012958757579327,-0.044627707451582],[0.066722504794598,-0.047723278403282,-0.022884152829647],[-0.10225854814053,0.03476857021451,0.026762492954731]],[[0.014905855059624,0.049318719655275,0.071975365281105],[0.087286196649075,-0.023305157199502,0.088749662041664],[0.057298194617033,0.1031484156847,0.030935879796743]],[[0.051778361201286,0.05722177401185,0.017138205468655],[0.057017479091883,-0.060008630156517,-0.013081866316497],[0.027473274618387,0.0078149288892746,0.033132743090391]],[[-0.19003854691982,0.0076350644230843,0.090797610580921],[-0.17657466232777,0.077325999736786,0.099620327353477],[-0.080115772783756,0.12826818227768,-0.01169113535434]],[[-0.15306727588177,-0.11975651234388,-0.047600541263819],[-0.14491671323776,-0.13645385205746,0.0031305553857237],[-0.019356098026037,-0.003671069862321,0.082412302494049]],[[0.14446502923965,0.10135837644339,0.044012572616339],[0.13674288988113,0.09485599398613,0.087782248854637],[0.051127448678017,0.18271107971668,0.072703897953033]],[[-0.032259725034237,-0.0047923317179084,-0.34700900316238],[0.070909112691879,-0.0718142837286,-0.081084564328194],[0.24274398386478,0.11173091828823,0.023155603557825]],[[0.031012520194054,-0.24075630307198,-0.019906280562282],[-0.2491801828146,0.015273754484951,0.065488710999489],[-0.10929951071739,0.098554410040379,-0.009156646206975]],[[0.10173181444407,-0.15559330582619,-0.059646807610989],[-0.054134156554937,-0.014646887779236,-0.024121316149831],[-0.1175125837326,-0.055276583880186,-0.0014851315645501]],[[-0.070186428725719,-0.012122531421483,0.0046064546331763],[0.025090448558331,-0.051002245396376,-0.048414312303066],[-0.02549365721643,-0.022231046110392,0.090848565101624]],[[-0.047410625964403,0.15425202250481,-0.022644786164165],[-0.12003134191036,0.029030028730631,-0.033435575664043],[0.0018317558569834,0.0097344303503633,0.14458835124969]],[[0.012709309346974,0.10119223594666,-0.072003051638603],[-0.035627283155918,0.064909547567368,-0.11019137501717],[-0.11117728054523,-0.06981935352087,-0.036937087774277]],[[-0.075820751488209,0.019577985629439,-0.017547447234392],[-0.088732570409775,0.020116640254855,0.01109067350626],[0.033434823155403,0.059880297631025,0.028955053538084]],[[0.019141158089042,0.0042724930681288,0.024484571069479],[0.081460259854794,-0.022033467888832,0.059930998831987],[-0.018866797909141,0.023143386468291,-0.019852383062243]],[[0.15677514672279,0.067615546286106,-0.11997830867767],[0.075675912201405,0.075222805142403,0.01839666441083],[-0.098747074604034,-0.17450971901417,0.0012114117853343]],[[-0.084789603948593,0.079353496432304,0.090663589537144],[-0.033987153321505,0.022295542061329,0.0024440954439342],[0.11550698429346,-0.052378032356501,-0.078055076301098]],[[-0.063566327095032,0.067586421966553,0.02856233716011],[0.005693472456187,0.067953705787659,-0.039118718355894],[0.10932583361864,0.0028617652133107,-0.089298233389854]],[[0.085914254188538,0.16279174387455,-0.0039977035485208],[-0.057143040001392,-0.031722161918879,-0.050806526094675],[-0.16565605998039,0.042368840426207,-0.050608318299055]],[[0.22912137210369,-0.1600508838892,0.16566073894501],[0.1892656236887,-0.032363586127758,-0.036162637174129],[0.018742522224784,-0.11563134938478,0.20988658070564]],[[0.17279526591301,-0.026381947100163,-0.02162859775126],[-0.12088613957167,0.14506374299526,-0.08583977073431],[0.010695641860366,-0.065281197428703,0.00081337580922991]],[[0.059091120958328,-0.28968232870102,0.062970198690891],[0.15989948809147,-0.12462517619133,0.079526126384735],[0.019297081977129,-0.086550533771515,0.12164806574583]],[[-0.30112808942795,-0.018552346155047,-0.084335148334503],[-0.10566192120314,-0.049944683909416,-0.17641346156597],[-0.085577145218849,-0.097062438726425,-0.34503757953644]],[[0.1272320151329,0.024123180657625,-0.010796815156937],[0.10312233120203,-0.15325720608234,0.0025694284122437],[-0.11171663552523,0.17974714934826,0.14330489933491]],[[-0.017779299989343,0.00058998307213187,-0.052377067506313],[-0.029555108398199,0.033232517540455,-0.079267919063568],[-0.13100242614746,-0.11002585291862,-0.18871280550957]],[[0.036775846034288,-0.12005878984928,-0.016131708398461],[0.11536572128534,-0.072610773146152,-0.054647680372],[0.028177656233311,-0.0099015617743134,0.080123536288738]],[[-0.016681022942066,0.074794717133045,-0.02115092612803],[-0.066164262592793,-0.025244396179914,0.010054085403681],[-0.026983175426722,0.023877583444118,0.12064532935619]],[[0.014026075601578,0.10111393779516,0.019049240276217],[0.054670874029398,-0.034748360514641,-0.045406363904476],[0.0084155490621924,-0.034017596393824,0.036139246076345]],[[0.061771031469107,0.065520964562893,-0.007844447158277],[-0.045597597956657,0.033479142934084,-0.11825429648161],[0.088332638144493,-0.088080130517483,-0.13252364099026]],[[0.053132750093937,-0.088434517383575,-0.025391530245543],[-0.093267358839512,0.10255394876003,0.10489927232265],[0.02234804444015,0.11445695161819,-0.085939295589924]],[[0.088659353554249,-0.076585106551647,0.061421047896147],[-0.046904046088457,-0.037067718803883,0.15969362854958],[-0.035572998225689,-0.13171149790287,0.025263020768762]],[[-0.06067269295454,-0.10364759713411,-0.19825661182404],[0.055918324738741,-0.04182281345129,0.094755828380585],[0.033832307904959,-0.015511445701122,-0.0099128000438213]],[[-0.11468683928251,-0.21472230553627,-0.053783662617207],[0.088027626276016,0.22998106479645,-0.11624959856272],[0.1536553800106,0.1266958117485,-0.03864398598671]],[[0.11803694069386,0.077581912279129,0.063014715909958],[-0.11793527752161,0.16948294639587,0.026135981082916],[-0.16784892976284,0.23410597443581,-0.10879468172789]],[[0.084155313670635,-0.059280417859554,-0.23802080750465],[-0.13443075120449,0.044361896812916,0.0090452739968896],[-0.033564411103725,0.059250745922327,0.011587182059884]],[[-0.12613999843597,-0.050204109400511,-0.01214428152889],[-0.028837008401752,0.019846331328154,-0.021861778572202],[-0.042536646127701,-0.01935863494873,-0.0026710426900536]],[[0.17442941665649,0.050937794148922,-0.082262702286243],[0.047398060560226,-0.19231040775776,-0.079019129276276],[-0.045595142990351,0.042639575898647,0.095113225281239]],[[0.052565332502127,-0.076040551066399,-0.0036833768244833],[-0.056166548281908,-0.095881178975105,0.011580729857087],[-0.19640062749386,-0.17530807852745,0.31723633408546]],[[-0.03744463250041,0.036464892327785,0.067574381828308],[0.00089070928515866,0.09920147061348,0.067386530339718],[0.092912517488003,-0.0082279415801167,0.066925249993801]],[[0.00065269030164927,-0.034902926534414,-0.088845558464527],[-0.011149496771395,-0.049201332032681,-0.051875784993172],[0.018897656351328,-0.040371667593718,0.06383939832449]],[[0.058058381080627,0.16931706666946,0.074135318398476],[-0.09942914545536,-0.0070451940409839,0.11555156111717],[-0.0037512383423746,-0.01400768943131,-0.099714830517769]],[[-0.12847377359867,-0.034052044153214,-0.015170389786363],[-0.09835284948349,0.067452736198902,-0.076840981841087],[-0.082939483225346,0.038290560245514,0.0032513912301511]],[[-0.14433041214943,-0.032566905021667,-0.24273094534874],[0.032552599906921,-0.051547568291426,0.098211131989956],[-0.0093240020796657,0.0091469939798117,0.11281266063452]],[[0.040508851408958,0.1522115021944,0.0042714229784906],[-0.11196656525135,0.0031103433575481,-0.15231853723526],[-0.0058901649899781,-0.06783214956522,-0.086895525455475]],[[0.071071282029152,0.013867534697056,-0.0075355297885835],[-0.028278028592467,0.066625729203224,0.038434773683548],[-0.050974287092686,-0.057112563401461,-0.11375487595797]],[[0.032804448157549,-0.20412160456181,0.01966437138617],[-0.11216076463461,-0.016654966399074,-0.028261328116059],[0.014913990162313,-0.105727866292,-0.055952548980713]],[[0.021477287635207,-0.01242658495903,-0.12260576337576],[0.078019328415394,-0.08509973436594,-0.00091883807908744],[-0.034389890730381,0.044062547385693,0.072523608803749]],[[-0.02992826141417,-0.09769793599844,-0.05530409142375],[-0.015424306504428,-0.041419245302677,-0.017104640603065],[0.011515278369188,0.099839635193348,0.085498511791229]],[[0.43003642559052,0.11927612870932,-0.14130887389183],[0.19243006408215,-0.098891347646713,-0.11219269782305],[-0.088582262396812,0.068511039018631,-0.096673741936684]],[[-0.038086637854576,0.07291279733181,0.021687217056751],[0.0021503467578441,-0.00387541227974,-0.0016993252793327],[0.12282137572765,-0.10498470067978,0.002556910738349]],[[0.020122723653913,0.0057996748946607,-0.085366502404213],[-0.062731757760048,0.03118190728128,0.05595038831234],[0.019831808283925,-0.10559371113777,0.10690466314554]],[[0.015630921348929,-0.050190806388855,0.016614645719528],[0.13665680587292,0.041860766708851,-0.013587298803031],[-0.11804225295782,-0.10379131883383,-0.06107447296381]],[[0.0061585395596921,-0.023662846535444,0.074578337371349],[-0.054351065307856,-0.051653232425451,-0.20211251080036],[-0.055406026542187,-0.047552496194839,0.21806114912033]],[[-0.095450073480606,-0.077607706189156,-0.0068692653439939],[0.07857646048069,-0.00010931611905107,-0.042416013777256],[0.2699861228466,0.12111426889896,-0.050240777432919]],[[-0.11075242608786,0.035529214888811,-0.015827944502234],[-0.21831727027893,-0.074289560317993,0.068275310099125],[-0.16696332395077,0.015810165554285,0.12441947311163]],[[0.01903985440731,0.052347429096699,-0.010052894242108],[0.0044593294151127,-0.088886238634586,-0.051287218928337],[0.11072631925344,-0.083019442856312,0.06355844438076]],[[-0.10188830643892,0.11681108921766,0.028406428173184],[-0.10064554959536,-0.04235190525651,0.0057650520466268],[-0.075878851115704,-0.027629313990474,-0.01275092177093]],[[0.070608295500278,0.19248621165752,-0.074189253151417],[0.084071442484856,-0.13268329203129,-0.099967978894711],[0.033349670469761,0.086189404129982,-0.025205362588167]],[[0.042584028095007,0.34300181269646,-0.045532312244177],[0.19744583964348,0.13932053744793,-0.15374973416328],[-0.0080665852874517,-0.090105168521404,-0.10188359767199]],[[-0.12904511392117,-0.073402404785156,-0.048761125653982],[0.035228721797466,-0.033315815031528,-0.05920410528779],[0.12661072611809,-0.092464305460453,-0.084862791001797]],[[0.060528490692377,0.13758426904678,-0.0034843157045543],[0.035938132554293,-0.041663460433483,-0.022894948720932],[-0.0056322263553739,0.088863089680672,-0.034307327121496]],[[0.06287482380867,-0.14966888725758,-0.054930441081524],[0.17281912267208,-0.0989920347929,0.065386146306992],[-0.14232768118382,0.11031775176525,-0.082049861550331]],[[0.081091091036797,-0.023757837712765,-0.013722425326705],[-0.0054626297205687,-0.020977204665542,-0.050722494721413],[0.018833056092262,-0.0038071738090366,-0.0046071740798652]],[[-0.095303609967232,0.08177450299263,-0.064734220504761],[0.035722017288208,0.0192731320858,0.00074781413422897],[0.052238862961531,-0.10176675766706,0.017651550471783]],[[0.084559798240662,-0.121192663908,0.032603085041046],[-0.03740194439888,-0.19600069522858,-0.12882894277573],[0.016875728964806,-0.0926658436656,-0.067855387926102]],[[0.044362295418978,-0.016956785693765,0.11205881088972],[0.031228268519044,-0.033939637243748,-0.027109041810036],[0.01359879411757,0.014688582159579,-0.04866100102663]],[[-0.025991147384048,-0.0085385357961059,-0.050775695592165],[-0.028943587094545,0.051208477467299,0.015730168670416],[0.15086300671101,0.014802769757807,-0.0012941883178428]],[[-0.022523809224367,0.14146065711975,0.11732545495033],[0.0093032168224454,0.15507757663727,-0.065568082034588],[0.11101588606834,0.048746570944786,-0.0027633183635771]],[[0.13561251759529,0.073615297675133,-0.013567175716162],[0.10389887541533,-0.07126297801733,0.036987245082855],[-0.10479987412691,-0.062126308679581,0.039682984352112]],[[-0.053808387368917,-0.062866643071175,0.019460001960397],[0.026091875508428,-0.031459148973227,-0.017162244766951],[-0.086125582456589,0.018557250499725,0.015885276719928]],[[-0.10439973324537,-0.001230297377333,-0.002907422138378],[-0.050511788576841,0.087991334497929,-0.07221607863903],[-0.064992360770702,-0.0040960572659969,0.025762423872948]],[[0.12814247608185,-0.00060340063646436,-0.048931490629911],[0.056258127093315,-0.097941987216473,-0.085418939590454],[0.11005686223507,-0.13927827775478,0.040738914161921]],[[-0.096754372119904,-0.00090187473688275,0.015516703948379],[-0.067440003156662,0.058083817362785,-0.013313229195774],[-0.12504757940769,-0.006725627463311,0.065427482128143]],[[-0.19559307396412,-0.083855032920837,-0.091158524155617],[0.013607109896839,0.016570311039686,0.059460926800966],[-0.03199801966548,0.11363199353218,0.072510257363319]],[[0.039730932563543,-0.068637043237686,-0.037218287587166],[-0.02088856883347,-0.023384615778923,0.089137263596058],[-0.044635374099016,-0.0042326427064836,-0.046196211129427]],[[-0.071700967848301,0.11011712253094,-0.097415030002594],[-0.071264989674091,-0.02251148968935,-0.015081680379808],[-0.023237841203809,0.19270412623882,-0.037381835281849]],[[-0.086078897118568,0.1193418353796,0.18551521003246],[0.023594718426466,0.057231467217207,0.050632573664188],[-0.013737484812737,-0.15414792299271,-0.10485059022903]],[[-0.030667912214994,0.13366006314754,0.092848435044289],[-0.014255926012993,0.065589986741543,-0.097400724887848],[-0.023007735610008,0.041882041841745,-0.04278676956892]],[[0.060170222073793,0.22057881951332,-0.04263761267066],[0.027852807193995,-0.034279655665159,-0.12758058309555],[-0.11850241571665,0.083858162164688,-0.053874723613262]],[[-0.0094813583418727,0.013320387341082,0.070732109248638],[-0.16700509190559,-0.11108869314194,-0.086195930838585],[-0.012662349268794,0.035781048238277,-0.0095622465014458]],[[0.015247792005539,-0.026149431243539,0.13770079612732],[-0.0052188439294696,-0.0044975527562201,0.033418081700802],[-0.039604071527719,-0.033474702388048,0.062803156673908]],[[-0.093189366161823,0.048948962241411,0.035996444523335],[-0.02764842659235,0.062402788549662,0.0084956623613834],[-0.049510560929775,-0.0036170557141304,0.078241661190987]],[[-0.16165335476398,0.054170526564121,-0.046339184045792],[-0.20883265137672,-0.082386687397957,-0.15674310922623],[0.05414130166173,-0.22101929783821,-0.17412376403809]],[[0.18041983246803,0.029229037463665,0.24862314760685],[0.049087546765804,-0.035505965352058,0.15168379247189],[0.029155377298594,-0.033477108925581,-0.029093764722347]],[[0.0051787937991321,-0.13554601371288,0.019608227536082],[0.077343471348286,-0.014546901918948,0.046684663742781],[-0.002599585801363,-0.1085766851902,-0.013753255829215]],[[0.093516789376736,-0.059483308345079,0.096057943999767],[0.067609645426273,-0.093643888831139,0.024488842114806],[0.053716372698545,-0.18147628009319,-0.066515080630779]],[[-0.022624293342233,-0.12985146045685,-0.094041682779789],[0.098556950688362,0.10431577265263,0.1107314452529],[0.16015574336052,0.18901787698269,-0.15311197936535]],[[-0.059291258454323,0.023141922429204,0.065295137465],[0.02570872195065,0.18103857338428,-0.048265483230352],[0.13984695076942,-0.066156320273876,-0.031854778528214]],[[0.055036976933479,-0.10770966857672,-0.014080873690546],[0.039484489709139,-0.05481943115592,-0.068868398666382],[0.28096976876259,0.0022869405802339,-0.036054644733667]]],[[[-0.0070609208196402,-0.0071012005209923,0.01373007427901],[-0.043269548565149,0.0060907248407602,-0.019466251134872],[0.020604072138667,-0.074666954576969,-0.019479038193822]],[[-0.060086518526077,0.001409808639437,-0.068274758756161],[-0.015802348032594,-0.015986377373338,0.016112059354782],[-0.043196894228458,-0.036855045706034,-0.035509962588549]],[[0.019576339051127,-0.064919598400593,-0.062947690486908],[0.052866086363792,0.034169986844063,-0.0038703389000148],[-0.026774616912007,-0.10171256959438,0.07660136371851]],[[0.10887512564659,-0.039027977734804,-0.018211673945189],[-0.10384178161621,-0.11217338591814,-0.038606610149145],[-0.080869287252426,-0.029650373384356,0.07366094738245]],[[-0.051794223487377,-0.019927985966206,0.049514621496201],[0.019679835066199,-0.043273653835058,0.030018722638488],[-0.011838397011161,0.059773188084364,-0.10833455622196]],[[0.054138977080584,0.019736964255571,0.035541765391827],[-0.0088509852066636,0.00027317443164065,-0.034924972802401],[-0.01005451194942,0.0044797039590776,-0.054316401481628]],[[-0.012278937734663,0.01347793918103,0.0051014204509556],[0.02714198641479,-0.021144552156329,-0.026835223659873],[0.024374840781093,0.032843209803104,-0.033841367810965]],[[0.0061896927654743,0.12057390809059,0.036173649132252],[0.015408323146403,0.065131105482578,-0.013629049062729],[0.025195490568876,-0.093509286642075,0.011814657598734]],[[-0.01502495072782,-0.055173855274916,-0.0060147391632199],[-0.011297424323857,-0.020439991727471,0.067936025559902],[0.021281033754349,-0.036834668368101,0.027102053165436]],[[0.0016924299998209,0.0012914566323161,0.044001162052155],[0.035197462886572,-0.043026983737946,0.011828721500933],[0.025445982813835,0.019521420821548,0.017804624512792]],[[-0.043206121772528,0.071106933057308,0.054335411638021],[-0.0095241731032729,-0.024550266563892,-0.023544682189822],[-0.010595086961985,0.010760811157525,0.00072265736525878]],[[0.019459400326014,-0.024229526519775,-0.026701817288995],[0.029322201386094,0.059399891644716,-0.0017897330690175],[0.07529953122139,0.054352503269911,-0.096555806696415]],[[-0.022202048450708,-0.069176010787487,-0.025913977995515],[-0.021515199914575,-0.034003332257271,-0.021335408091545],[0.043186165392399,-0.024946441873908,0.0520324036479]],[[-0.058520525693893,-0.025758298113942,-0.0016394731355831],[0.031825676560402,-0.07028766721487,0.036642290651798],[-0.017514141276479,0.028394112363458,0.15424740314484]],[[0.082768067717552,-0.053249023854733,-0.12349615246058],[-0.07530015707016,0.097657471895218,0.069432385265827],[0.033347483724356,-0.051495883613825,-0.036037441343069]],[[-0.03444442152977,-0.029380548745394,0.036618959158659],[0.040873847901821,0.0047926167026162,-0.13750374317169],[-0.0065475613810122,-0.0087875807657838,0.064926624298096]],[[0.04925686866045,0.003811692353338,-0.085571065545082],[0.048101503401995,0.0723020657897,0.053221456706524],[-0.023385552689433,0.061433557420969,0.063864335417747]],[[0.0039250161498785,-0.019223894923925,0.062907233834267],[0.011464083567262,0.02093081921339,0.033140357583761],[-0.0010297455592081,-0.022390373051167,0.012751099653542]],[[-0.010477058589458,-0.043095525354147,0.0095382416620851],[0.016626283526421,-0.027482140809298,-0.033535793423653],[-0.023539377376437,-0.038198091089725,-0.020940348505974]],[[0.0093188984319568,0.023885160684586,-0.00087595888180658],[-0.059976238757372,-0.079780340194702,0.04924638196826],[-0.047224100679159,0.02493136934936,-0.021048549562693]],[[-0.017548868432641,-0.065047986805439,0.0020186556503177],[-0.016407122835517,-0.018441284075379,-0.1606263667345],[-0.038383960723877,-0.12087777256966,0.0031302133575082]],[[-0.0048042661510408,-0.038400467485189,-0.032073009759188],[0.032361533492804,0.0025388053618371,0.083050057291985],[0.033468849956989,0.0077085522934794,0.039813544601202]],[[0.0028210622258484,0.024000380188227,0.012691502459347],[-0.075981572270393,0.025355754420161,-0.079625092446804],[-0.037148665636778,-0.0085087595507503,0.12227285653353]],[[-0.0080375866964459,-0.025722663849592,-0.052771408110857],[0.0081071574240923,-0.032562833279371,-0.0064050024375319],[-0.0060528740286827,0.047781944274902,0.021059801802039]],[[0.096069619059563,-0.21852578222752,-0.0047386912629008],[-0.24313765764236,0.0011444306001067,-0.17003473639488],[-0.30300018191338,0.015860751271248,-0.069875568151474]],[[-0.035476393997669,-0.033220041543245,-0.060646787285805],[-0.11110352724791,0.016408046707511,-0.042682234197855],[-0.021766170859337,-0.066974349319935,-0.064012862741947]],[[0.021682737395167,0.1032749414444,-0.03710750490427],[-0.037164963781834,-0.022691391408443,0.05497907474637],[0.068705633282661,-0.021680414676666,0.0041903220117092]],[[-0.022806035354733,0.098337106406689,-0.031078489497304],[0.062498029321432,0.028595937415957,0.054549936205149],[0.10058705508709,-0.019794259220362,0.041331116110086]],[[0.062390245497227,-0.021097091957927,0.028341479599476],[0.039371620863676,-0.0098649449646473,-0.027649972587824],[-0.039932541549206,0.018193412572145,-0.016955107450485]],[[0.017135081812739,-0.0017854822799563,-0.04600065946579],[-0.018859030678868,-0.06691437214613,-0.015470727346838],[-0.075387626886368,-0.11462687700987,-0.028698364272714]],[[-0.044702049344778,0.049436744302511,-0.0079686911776662],[0.11621935665607,-0.027906736359,0.023598806932569],[0.046119578182697,-0.038889370858669,0.042698197066784]],[[0.0063804797828197,0.025865271687508,0.038866896182299],[0.014253571629524,0.0097382245585322,-0.080325946211815],[-0.022529112175107,0.042833555489779,0.0018893466331065]],[[0.043334949761629,-0.0058967168442905,-0.11731669306755],[0.050892196595669,-0.039617512375116,0.05530709028244],[0.050763301551342,-0.083892211318016,-0.029563769698143]],[[-0.030015766620636,0.050920769572258,-0.055916622281075],[-0.040126789361238,0.062209561467171,-0.011540625244379],[-0.044539500027895,0.012699644081295,0.0081887254491448]],[[-0.030375260859728,-0.010239522904158,-0.045331165194511],[-0.0098336329683661,-0.082338221371174,-0.097544595599174],[-0.019278306514025,-0.063850827515125,-0.063724160194397]],[[0.0034695283975452,-0.00066090957261622,-0.0077712936326861],[-0.039632767438889,0.054780036211014,-0.055185452103615],[0.006039063911885,0.058959789574146,-0.0367236956954]],[[-0.020273899659514,0.094246998429298,0.099491998553276],[0.045108314603567,0.038669884204865,0.11102695763111],[0.021372659131885,-0.011754772625864,0.056932225823402]],[[-0.044231191277504,-0.00096259341808036,-0.12728337943554],[0.015918372198939,0.021451640874147,-0.0010814238339663],[0.037446666508913,-0.013715787790716,-0.024471823126078]],[[0.0042997938580811,0.024530623108149,-0.069673053920269],[0.017333900555968,-0.0037583627272397,0.012809165753424],[0.0038738748989999,-0.035710196942091,0.017522612586617]],[[0.013980637304485,0.028798036277294,0.01779150031507],[-0.036915238946676,0.084795869886875,0.072029538452625],[-0.017734317108989,0.044588226824999,0.081615716218948]],[[0.021935245022178,-0.040040027350187,0.0034774178639054],[0.071991495788097,-0.016643017530441,0.021161852404475],[0.030591340735555,-0.030363118276,0.048602405935526]],[[-0.026897368952632,0.028024451807141,-0.0030168511439115],[-0.027886832132936,0.037802066653967,0.020842676982284],[-0.053199362009764,0.0085255252197385,-0.025903202593327]],[[-0.062992669641972,0.019946195185184,-0.14137831330299],[0.058649122714996,-0.015217655338347,0.045869305729866],[-0.0037052128463984,0.064701534807682,-0.081421948969364]],[[0.050383891910315,-0.048288226127625,-0.083121724426746],[0.04289024323225,-0.071641035377979,-0.18432991206646],[-0.0096933115273714,0.055006474256516,-0.016598572954535]],[[-0.019078264012933,-0.10874005407095,0.023963313549757],[0.099186956882477,-0.019671721383929,0.022887840867043],[-0.023793501779437,0.10071972757578,0.031887117773294]],[[-0.099783048033714,0.051073495298624,-0.15215444564819],[-0.048005677759647,-0.04760879278183,0.12072234600782],[-0.14608995616436,0.054765783250332,-0.089275054633617]],[[0.062570862472057,-0.014519049786031,0.0036979746073484],[0.0013211123878136,-0.057340320199728,0.10333491116762],[-0.078135766088963,0.030884029343724,0.1333774626255]],[[0.012247021310031,0.014654716476798,-0.017469024285674],[-0.048883818089962,-0.037803839892149,-0.063670866191387],[-0.006913005374372,0.003965170122683,-0.01707261428237]],[[-0.049711007624865,0.044121701270342,0.0039542242884636],[-0.037409231066704,0.065613970160484,-0.013464879244566],[-0.029122373089194,-0.0063380463980138,-0.067882195115089]],[[0.02723627910018,-0.0033905426971614,-0.0019702161662281],[0.056060865521431,0.048386011272669,0.023775074630976],[-0.018735207617283,-0.023349031805992,0.0061446209438145]],[[-0.12412339448929,-0.018147805705667,-0.016640176996589],[-0.062022913247347,0.055342730134726,0.046013589948416],[0.04961147531867,-0.053059078752995,-0.010175880044699]],[[0.045074220746756,-0.032988399267197,-0.02452595718205],[0.046271961182356,-0.0018776331562549,-0.040641501545906],[0.027332417666912,0.070851922035217,-0.050270922482014]],[[0.0008230326930061,0.061982978135347,-0.053794357925653],[0.01307360548526,0.062691211700439,0.0045745032839477],[-0.034694451838732,0.053549524396658,-0.048011742532253]],[[-0.024234412238002,0.025240946561098,0.0013742584269494],[-0.012548382394016,-0.04516339674592,0.0082485070452094],[-0.017077853903174,-0.075761087238789,-0.0020266838837415]],[[0.055554188787937,-0.0067069488577545,0.10987325012684],[0.11715164035559,-0.02172146178782,-0.06102866306901],[0.072118565440178,0.096342720091343,0.057710491120815]],[[0.013515179976821,0.082219824194908,0.058548178523779],[0.008061483502388,-0.080125607550144,-0.074974335730076],[-0.05694967508316,0.042055457830429,-0.025649258866906]],[[0.070489704608917,-0.051978334784508,0.020363539457321],[-0.062565304338932,0.085435301065445,-0.046202544122934],[-0.053141754120588,-0.069817461073399,-0.070583090186119]],[[-0.061754066497087,-0.025789545848966,-0.047563213855028],[0.024150304496288,-0.055071663111448,0.071166999638081],[0.012286147102714,-0.050486050546169,-0.08431688696146]],[[0.056478567421436,-0.058104485273361,0.094723790884018],[0.059261057525873,0.010590292513371,0.06220693513751],[0.01522709056735,0.065726473927498,-0.046443738043308]],[[-0.052132368087769,-0.035019092261791,0.04983938112855],[0.0051827309653163,0.022098889574409,-0.009682934731245],[0.044472243636847,0.057258803397417,0.055313166230917]],[[0.0040409327484667,-0.041361082345247,-0.046482738107443],[0.018454110249877,-0.004500980488956,0.01945379935205],[-0.0076785483397543,0.059155151247978,-0.044571343809366]],[[0.040208093822002,-0.029629360884428,0.059498108923435],[0.036965310573578,-0.011440813541412,-0.052767857909203],[-0.021670717746019,0.029591523110867,-0.012853916734457]],[[0.0427565574646,-0.004689721390605,0.047662708908319],[0.12396548688412,0.04334756731987,0.070083640515804],[0.037257947027683,0.018930424004793,-0.094227910041809]],[[0.05587849766016,-0.015017255209386,-0.025163730606437],[0.033504359424114,0.054565470665693,0.0049802823923528],[-0.059906661510468,-0.042500261217356,0.064987622201443]],[[-0.032713830471039,0.0091229882091284,-0.015068076550961],[0.006830545142293,-0.023670464754105,-0.0052272393368185],[0.0059334957040846,-0.023449836298823,0.0044506718404591]],[[-0.016548458486795,0.028543516993523,0.031814232468605],[0.024967717006803,0.022866768762469,0.10928032547235],[-0.10903639346361,0.030468218028545,0.018021203577518]],[[0.036508247256279,-0.05337630584836,-0.0055880732834339],[0.027230309322476,0.02799766138196,-0.1076136380434],[-0.0047405199147761,-0.040246292948723,-0.024135729297996]],[[0.059506721794605,0.038023918867111,0.11785709112883],[0.062678888440132,-0.047430422157049,0.074403703212738],[-0.10320427268744,0.041817855089903,0.10334807634354]],[[0.0097037572413683,-0.03254722058773,0.028369281440973],[-0.015430993400514,0.055549949407578,-0.0409743078053],[0.011211374774575,-0.0033922260627151,0.013812964782119]],[[-0.084701478481293,-0.044094163924456,0.034212078899145],[0.05756688863039,-0.073734983801842,0.0078951371833682],[0.066510677337646,0.04548355191946,-0.010462532751262]],[[0.032043930143118,0.020586462691426,-0.022448964416981],[-0.0021182128693908,-0.071215011179447,0.08198768645525],[-0.01095175743103,0.037136800587177,-0.04031178727746]],[[-0.0036730798892677,-0.03364048153162,-0.050745517015457],[0.043535251170397,-0.024367632344365,0.0050338953733444],[0.03895902261138,-0.024134894832969,0.011925026774406]],[[0.0089720198884606,0.0067678885534406,-0.0090212738141418],[0.044233348220587,0.099486760795116,-0.031341414898634],[0.045255586504936,0.031635738909245,-0.045316964387894]],[[-0.029164958745241,0.023387737572193,0.071444116532803],[0.02808728069067,0.042364776134491,0.018761938437819],[0.0095470491796732,0.0027417959645391,-0.03712522238493]],[[-0.0048350347205997,-0.056412614881992,-0.076371669769287],[-0.060454897582531,-0.0045028124004602,-0.06585680693388],[-0.042341347783804,-0.026587832719088,-0.015243095345795]],[[0.032262217253447,0.010191178880632,0.019096564501524],[-0.0019364827312529,-0.014269816689193,0.0015292454045266],[-0.058498304337263,-0.029356015846133,0.080990195274353]],[[0.035904657095671,0.073472045361996,-0.063034906983376],[0.018157538026571,0.047249041497707,0.030545154586434],[0.081955291330814,-0.023272749036551,-0.027179107069969]],[[0.032842934131622,-0.044048361480236,0.11566103249788],[-0.056625947356224,0.030420692637563,-0.021583525463939],[-0.10031904280186,-0.007030576467514,0.030355341732502]],[[-0.046808294951916,-0.055326417088509,0.0092270839959383],[-0.049972087144852,-0.0047187181189656,0.10226058214903],[-0.013234979473054,-0.028779743239284,0.020312102511525]],[[-0.049696058034897,-0.0008986146422103,0.015856569632888],[-0.055078033357859,-0.050477266311646,0.0431411229074],[-0.05398315936327,0.059064783155918,-0.041616555303335]],[[0.017794983461499,0.038670167326927,-0.027508106082678],[-0.021535387262702,-0.07812163233757,-0.068209461867809],[0.01859899237752,0.035194404423237,0.031114466488361]],[[0.036611802875996,-0.060283709317446,-0.12458512932062],[-0.033019158989191,-0.0024886364117265,0.058761768043041],[0.079673998057842,0.038771875202656,-0.021494822576642]],[[-0.012159160338342,0.048581205308437,-0.023490244522691],[0.086325258016586,-0.060409996658564,-0.0060550095513463],[-0.045276682823896,0.044308051466942,0.066609308123589]],[[0.01354712061584,0.00012580220936798,-0.055632490664721],[0.019278712570667,0.037231627851725,0.058823525905609],[0.024982091039419,-0.046050384640694,-0.022680517286062]],[[0.0077454959973693,-0.020321685820818,0.012688026763499],[-0.032670963555574,-0.066940113902092,-0.020655330270529],[0.0076112179085612,-0.009638262912631,0.00032593955984339]],[[-0.024274280294776,0.0043431711383164,0.022712856531143],[-0.036731146275997,0.011884077452123,0.0056102215312421],[-0.024880452081561,-0.0021516992710531,0.02587791159749]],[[0.047261860221624,0.016952279955149,-0.049757085740566],[0.047163773328066,0.085489258170128,0.063767828047276],[-0.0075887963175774,0.093400701880455,0.028711432591081]],[[0.039889827370644,0.15510678291321,0.0021098449360579],[0.091218933463097,0.042582679539919,-0.07508884370327],[-0.032887782901525,0.026445683091879,0.00021881832799409]],[[0.015716521069407,0.027856281027198,0.039132498204708],[0.02254743874073,-0.0030206213705242,0.035620234906673],[-0.048977054655552,0.027857329696417,0.040621269494295]],[[0.012853907421231,-0.010144951753318,-0.030120722949505],[-0.020202709361911,0.036012746393681,-0.01432450208813],[0.039158586412668,0.031515467911959,0.032082252204418]],[[-0.053040221333504,-0.025700390338898,-0.016874879598618],[0.0260298717767,-0.12259294092655,0.0029805244412273],[-0.048243157565594,0.03193885833025,0.10707890987396]],[[-0.020678130909801,-0.021466730162501,-0.028754817321897],[0.0055784471333027,0.089820541441441,-0.033922433853149],[0.018040604889393,0.055443830788136,0.04156756028533]],[[0.0070080594159663,0.025260807946324,-0.030772712081671],[0.090156629681587,0.072647824883461,0.0037908160593361],[0.10882443189621,-0.049216154962778,0.045913722366095]],[[0.0041530374437571,0.0013033869909123,0.021811012178659],[-0.017850114032626,-0.033349242061377,0.1118124499917],[0.039751891046762,0.052703741937876,0.024501442909241]],[[0.034166242927313,0.019616393372416,0.031722232699394],[0.088538698852062,-0.027943355962634,0.022817941382527],[0.051905933767557,0.0042505897581577,0.083386488258839]],[[-0.028741018846631,0.048897836357355,-0.055304244160652],[-0.028867039829493,0.095575265586376,0.059358723461628],[-0.089885473251343,0.00080984871601686,-0.038475342094898]],[[-0.004972230643034,0.049014814198017,-0.014208126813173],[-0.036162223666906,0.045766085386276,0.022125221788883],[-0.019876677542925,-0.021929807960987,-0.062890402972698]],[[-0.023440884426236,-0.059439100325108,0.046311918646097],[-0.011547867208719,-0.034456834197044,0.031238421797752],[0.032976906746626,0.10266394913197,0.0085956994444132]],[[-0.053763937205076,-0.019106194376945,0.083340138196945],[0.017757713794708,-0.028634054586291,-0.060127321630716],[0.046992551535368,-0.0067030768841505,0.060445204377174]],[[-0.067564316093922,-0.22332102060318,0.029258666560054],[-0.13684193789959,0.19951258599758,-0.12794850766659],[0.026349976658821,-0.19546036422253,0.08136897534132]],[[-0.014315084554255,-0.010739356279373,0.057316657155752],[-0.030728964135051,0.080239504575729,-0.038905546069145],[0.027014469727874,-0.036305386573076,-0.068124696612358]],[[0.011267485097051,-0.078037478029728,0.065312333405018],[-0.085247285664082,0.032910753041506,0.07960832118988],[-0.049299735575914,-0.062914244830608,-0.073376722633839]],[[0.055106163024902,-0.020343326032162,0.0055133304558694],[0.040077790617943,0.029609218239784,0.06904436647892],[0.0098099848255515,0.026784155517817,-0.090808168053627]],[[-0.016743931919336,0.00021667627152056,-0.032803576439619],[-0.045246325433254,-0.046612568199635,-0.039491087198257],[-0.038819581270218,-0.049858678132296,-0.08687262237072]],[[0.012736708857119,-0.067024208605289,0.0013256991514936],[-0.016760854050517,0.083661660552025,0.056469310075045],[-0.015046535991132,0.057534884661436,0.05596686899662]],[[0.048294737935066,0.014005710370839,-0.029092468321323],[0.01129745785147,0.01494328211993,-0.037905927747488],[0.0053100795485079,0.068856187164783,-0.018162913620472]],[[-0.0098591465502977,0.076211206614971,-0.010014710947871],[0.0038919781800359,-0.0046031214296818,-0.041055962443352],[0.020355049520731,-0.025651507079601,0.0025961536448449]],[[-0.028776869177818,0.034836664795876,0.048148363828659],[-0.032318759709597,0.06753496825695,0.060083579272032],[0.040315072983503,-0.016626531258225,0.016931688413024]],[[0.030186409130692,-0.0026747682131827,0.038465831428766],[-0.0030630549881607,0.035522382706404,-0.0097568798810244],[-0.036372110247612,-0.053925387561321,-0.11009899526834]],[[-0.040163341909647,-0.076509401202202,0.029971141368151],[-0.029133213683963,0.016257137060165,0.0049612242728472],[0.0017753716092557,-0.010445242747664,-0.020637359470129]],[[-0.039780020713806,0.033402640372515,0.034364614635706],[-0.046063855290413,0.021634951233864,-0.017804335802794],[0.029372634366155,-0.028139794245362,-0.034408904612064]],[[0.0046972590498626,0.064369812607765,-0.043505262583494],[-0.0073070474900305,-0.024947836995125,0.019089275971055],[-0.00035067735007033,0.024636251851916,-0.02633292041719]],[[-0.00072690920205787,0.085332542657852,-0.071320176124573],[-0.016585478559136,0.021989684551954,0.045848339796066],[0.0031486030202359,-0.04333833232522,2.4488319468219e-05]],[[-0.07232192158699,0.024003272876143,0.016013009473681],[-0.032541140913963,-0.021779732778668,-0.034015417098999],[-0.024422908201814,-0.0050937491469085,-0.079011887311935]],[[-0.010832824744284,-0.039714451879263,0.058125831186771],[-0.040605053305626,-0.057872883975506,0.022932276129723],[-0.069909393787384,-0.043198816478252,0.051659312099218]],[[0.015314352698624,-0.0036147369537503,0.03315694257617],[0.022994318976998,-0.0093101402744651,-0.032912410795689],[-0.0039380397647619,0.0457983314991,0.054067209362984]],[[-0.0019856174476445,0.018639422953129,0.055151373147964],[-0.029046783223748,0.031999759376049,-0.040386114269495],[-0.018062811344862,-0.0061814277432859,-0.039571225643158]],[[-7.7030301326886e-05,-0.020579870790243,0.02822507917881],[0.021547993645072,-0.073812924325466,0.026309076696634],[-0.00022190058371052,-0.037220541387796,-0.0061805099248886]],[[0.011322441510856,0.057584092020988,-0.032341867685318],[0.032359424978495,-0.043534271419048,-0.10268295556307],[0.014776884578168,-0.060515850782394,-0.15377214550972]],[[-0.053612135350704,0.0028331975918263,0.11010035127401],[-0.038189481943846,-0.095316559076309,0.051242288202047],[0.003064040094614,-0.093310557305813,-0.053457856178284]],[[0.0088348127901554,0.067824684083462,0.081231892108917],[0.013978958129883,-0.0046127256937325,0.076296463608742],[0.035648591816425,-0.027141099795699,-0.024431655183434]],[[0.013823615387082,0.0041657602414489,-0.044235732406378],[-0.0077044321224093,-0.11128716915846,-0.01289798785001],[-0.03053673915565,0.023788668215275,0.011498472653329]],[[-0.021680908277631,0.045730419456959,0.063586287200451],[0.065691344439983,-0.009532755240798,0.029552631080151],[0.045821767300367,0.01388896163553,-0.045939296483994]],[[-0.044153451919556,0.0045939208939672,0.041508015245199],[-0.088758707046509,0.0062165050767362,0.031058458611369],[-0.05957755446434,-0.00484738079831,-0.037328664213419]],[[-0.017015906050801,-0.0200863070786,0.022195758298039],[-0.024582607671618,0.078209444880486,-0.054410468786955],[0.008386692032218,-0.032604765146971,0.010872904211283]],[[-0.029103793203831,0.040702939033508,0.030971558764577],[-0.0032304008491337,0.005292525049299,-0.0099591938778758],[0.065587185323238,0.0057079652324319,0.0022074377629906]],[[-0.012112359516323,0.015026951208711,0.015546457841992],[-0.070200972259045,0.057959645986557,-0.047927185893059],[-0.0069626048207283,0.043992590159178,0.005811186041683]],[[-0.012969891540706,0.046372890472412,-0.10680898278952],[-0.06425079703331,-0.069820009171963,0.044473957270384],[-0.041712064296007,-0.051915556192398,0.046805161982775]]],[[[-0.060419447720051,-0.11036266386509,0.028882127255201],[-0.11233505606651,-0.10753618180752,0.10105785727501],[0.091527558863163,0.067544214427471,0.24452669918537]],[[-0.26777443289757,0.26802548766136,0.081035450100899],[0.028405372053385,-0.12530875205994,0.045283816754818],[0.018423421308398,0.02398344501853,-0.1673863530159]],[[0.0017993056681007,-0.14266861975193,-0.27088534832001],[0.1008717045188,-0.17134849727154,-0.33460277318954],[0.0085392743349075,-0.089998014271259,-0.10398273169994]],[[-0.10521935671568,-0.093467846512794,-0.32147073745728],[0.021101383492351,-0.31380131840706,-0.077083632349968],[-0.10851582884789,-0.13867515325546,-0.040662486106157]],[[0.33781865239143,-0.05901250988245,-0.085123762488365],[-0.045993756502867,-0.20342963933945,0.11048034578562],[-0.30720108747482,-0.1292640119791,0.11880562454462]],[[-0.037917010486126,-0.19063547253609,-0.057452209293842],[-0.14481887221336,-0.054329730570316,0.26500681042671],[-0.049274235963821,0.073071546852589,0.27181166410446]],[[-0.16149087250233,0.17125578224659,0.055528502911329],[0.068479619920254,0.0034667672589421,-0.17894162237644],[0.047541312873363,-0.13544838130474,0.023671146482229]],[[0.14824189245701,-0.096576832234859,0.22480300068855],[0.14171154797077,0.0095415338873863,0.031170424073935],[0.14390487968922,0.1679071187973,-0.0095529528334737]],[[-0.24710305035114,0.1009009629488,0.25989532470703],[0.036914493888617,-0.16474743187428,0.10584628582001],[-0.023928109556437,0.033470526337624,0.1564776301384]],[[-0.0024082660675049,-0.033509269356728,-0.037792764604092],[0.20027139782906,-0.10650195926428,9.2930655227974e-05],[0.073159568011761,0.076577618718147,-0.11634750664234]],[[-0.043961990624666,-0.21125574409962,0.23868826031685],[-0.050017409026623,0.14983026683331,-0.092019841074944],[0.0035094863269478,0.15595734119415,-0.015668349340558]],[[0.11786411702633,-0.18141333758831,0.019562810659409],[0.18688569962978,-0.087203651666641,0.017818251624703],[-0.067715279757977,0.10726161301136,-0.10212580114603]],[[-0.12396991997957,0.18309345841408,-0.14065392315388],[-0.011769646778703,0.089016154408455,0.076566062867641],[0.071309797465801,0.1214474439621,0.15242378413677]],[[0.16963416337967,0.07198877632618,-0.14414854347706],[0.071515165269375,0.037685982882977,-0.077407553792],[-0.17565609514713,0.16524821519852,-0.11731868237257]],[[-0.046360000967979,-0.19275952875614,-0.023548729717731],[-0.2484946846962,-0.05196724832058,-0.017105713486671],[-0.15293064713478,-0.092930391430855,-0.24391813576221]],[[0.040566544979811,-0.010212031193078,0.056345593184233],[0.039302464574575,-0.21346697211266,-0.055949047207832],[0.15907625854015,-0.22513388097286,0.13295716047287]],[[-0.087621904909611,-0.13171125948429,0.28888785839081],[0.12787558138371,0.20719979703426,0.014345825649798],[0.18378251791,0.017468310892582,-0.010233666747808]],[[-0.046633113175631,0.14620949327946,0.25358346104622],[-0.09946946054697,0.024795886129141,0.046300951391459],[-0.17019833624363,-0.048561111092567,-0.16536331176758]],[[0.020974531769753,0.1544137597084,-0.010361595079303],[-0.0042285076342523,0.2421061694622,-0.15305280685425],[0.055825658142567,-0.18878600001335,-0.083379484713078]],[[-0.35280305147171,0.036595694720745,-0.054921519011259],[0.19305217266083,-0.097048923373222,-0.21947309374809],[-0.12256918102503,0.12191477417946,-0.082923270761967]],[[0.22804632782936,-0.16437029838562,-0.042103234678507],[-0.23854218423367,-0.11010517179966,-0.086338199675083],[0.00058284151600674,-0.19373863935471,0.04624555259943]],[[0.010930805467069,-0.048172120004892,0.1772018969059],[0.17204384505749,0.12997098267078,0.039755865931511],[-0.067720457911491,0.070701099932194,0.0010207010200247]],[[0.08670537173748,-0.067397400736809,0.18535551428795],[-0.12468402832747,0.070323012769222,-0.086121156811714],[0.089248776435852,-0.086626663804054,-0.17668958008289]],[[-0.21361549198627,0.021281812340021,-0.11598432064056],[0.0026398801710457,0.025579558685422,-0.21421964466572],[0.20568525791168,-0.17126002907753,-0.26941341161728]],[[-0.27332839369774,-0.18766501545906,-0.064662754535675],[-0.16043299436569,-0.099421016871929,-0.069725915789604],[0.063475921750069,-0.023273915052414,-0.32021552324295]],[[-0.27037805318832,-0.12151523679495,-0.19295494258404],[-0.24386022984982,-0.23958815634251,0.012373422272503],[-0.22624644637108,-0.21891574561596,0.057314086705446]],[[-0.21490050852299,0.050792790949345,-0.039762772619724],[-0.015597518533468,0.11249569058418,-0.036471992731094],[-0.099497430026531,-0.095866821706295,-0.14869444072247]],[[-0.066625326871872,0.14977064728737,-0.22969616949558],[0.054606478661299,-0.15259318053722,0.023141540586948],[-0.25256031751633,-0.020748257637024,-0.12200941890478]],[[0.36875766515732,0.13598001003265,0.036718145012856],[-0.2068380266428,-0.20620673894882,0.11235632002354],[-0.032520033419132,-0.055771481245756,-0.11513943225145]],[[0.08616229146719,-0.046315506100655,-0.044810384511948],[0.45607829093933,-0.11235214024782,-0.0641103759408],[0.0170884039253,-0.12743191421032,0.17581467330456]],[[-0.12479991465807,-0.027235524728894,-0.042218595743179],[-0.21604239940643,-0.16986593604088,-0.099622368812561],[-0.3376250565052,-0.099019318819046,-0.23835019767284]],[[0.042432073503733,0.094693221151829,0.20852530002594],[-0.24315749108791,0.21358561515808,-0.0071520428173244],[-0.077110484242439,-0.03063664957881,-0.015023508109152]],[[-0.13131678104401,0.12827405333519,-0.061454381793737],[-0.23467215895653,0.087586842477322,0.085943192243576],[-0.10755541175604,0.11543774604797,-0.036482993513346]],[[0.068988598883152,-0.03627547621727,-0.078639149665833],[-0.00057025480782613,-0.02795834839344,-0.10447213053703],[0.034336816519499,0.070655308663845,0.047976206988096]],[[-0.30146163702011,0.08630958199501,-0.0049204034730792],[-0.16044475138187,-0.063740611076355,-0.016754947602749],[-0.14205628633499,0.0083368392661214,0.05446369946003]],[[0.088565409183502,-0.014033642597497,0.04778091236949],[-0.34673908352852,0.29151323437691,-0.085852719843388],[-0.19170078635216,0.033195659518242,0.042366068810225]],[[0.027293439954519,-0.013251446187496,-0.057313494384289],[-0.11464926600456,-0.29374915361404,-0.1088927462697],[0.19618245959282,-0.00048221187898889,-0.14879570901394]],[[-0.088089779019356,-0.054944835603237,0.10561947524548],[-0.040788237005472,0.15112268924713,-0.019608292728662],[-0.089045062661171,-0.047809448093176,0.1389647424221]],[[0.01304133888334,-0.34799385070801,0.13268974423409],[0.11337777972221,-0.10547637194395,-0.13038210570812],[0.1633867174387,0.0049639432691038,-0.062995485961437]],[[0.024498598650098,-0.037829138338566,-0.25575134158134],[0.11395736783743,0.0097548756748438,-0.097874596714973],[0.0073991557583213,0.063915714621544,-0.045899786055088]],[[-0.21215552091599,0.070423848927021,-0.012061899527907],[0.061141315847635,-0.09676206856966,0.13336674869061],[-0.1161837130785,-0.19271077215672,-0.011949952691793]],[[-0.13462089002132,-0.004009060561657,-0.049655802547932],[0.10335206240416,0.073434539139271,0.12159811705351],[0.0043145264498889,0.12331642955542,0.18119287490845]],[[0.055185429751873,-0.023886209353805,0.034960303455591],[-0.14181646704674,0.02856520190835,-0.016664130613208],[0.021187260746956,-0.03085901401937,0.080033622682095]],[[0.045063532888889,-0.07403264939785,-0.040113728493452],[-0.19146417081356,-0.032277852296829,0.039798069745302],[-0.038986917585135,0.00018036675464828,0.052635204046965]],[[0.02776151150465,-0.0090479487553239,0.11184122413397],[-0.14506091177464,-0.17906159162521,-0.086416363716125],[0.050672389566898,-0.21738997101784,-0.1336966753006]],[[-0.024863202124834,0.050737492740154,-0.061415880918503],[-0.078172273933887,-0.11005414277315,0.052792064845562],[0.021781140938401,0.13954111933708,-0.011331673711538]],[[0.24414351582527,0.16660319268703,-0.16286611557007],[0.4517334997654,0.15998351573944,-0.16382464766502],[0.053241230547428,0.0014185183681548,0.18350794911385]],[[0.064053267240524,-0.1973118185997,0.0059152254834771],[-0.18249705433846,0.0097572458907962,-0.1174291819334],[-0.014488543383777,-0.036883607506752,-0.0064732278697193]],[[-0.19625069200993,-0.22924137115479,0.14157947897911],[-0.10522423684597,-0.22810094058514,-0.058985080569983],[-0.066349640488625,-0.062336344271898,-0.14622983336449]],[[-0.17743319272995,0.063073553144932,-0.066204488277435],[0.049635030329227,-0.099563375115395,0.020490502938628],[-0.054716017097235,0.01982525922358,-0.009630985558033]],[[-0.054868351668119,0.035510677844286,-0.079646617174149],[-0.29636400938034,0.038227155804634,0.13335198163986],[-0.056135505437851,0.065814062952995,-0.12976956367493]],[[0.1533227711916,0.26564490795135,0.0026858942583203],[-0.20334319770336,-0.1653305888176,-0.16046914458275],[-0.15139521658421,-0.11215108633041,-0.29321995377541]],[[0.016645384952426,0.010744264349341,-0.074088409543037],[-0.052811849862337,-0.07667537778616,0.022692028433084],[-0.073506779968739,-0.17322671413422,-0.00081941357348114]],[[-0.092164278030396,-0.043278682976961,0.031354915350676],[-0.028334446251392,-0.0260269343853,0.0034520151093602],[0.024328388273716,-0.081246629357338,0.05635767057538]],[[0.19984892010689,0.078061074018478,-0.046683005988598],[0.12826631963253,0.26886561512947,-0.11185774207115],[-0.084399610757828,0.017210595309734,-0.12286497652531]],[[0.010777521878481,0.14969164133072,-0.12330671399832],[0.15541830658913,-0.12828962504864,-0.12029705941677],[-0.054660297930241,-0.19308197498322,-0.13154867291451]],[[-0.17611676454544,-0.17247106134892,-0.100376740098],[-0.14384989440441,0.028077088296413,-0.11382938921452],[0.025655545294285,0.047024112194777,-0.18499627709389]],[[-0.31137427687645,-0.0076476130634546,-0.053074963390827],[-0.066541239619255,-0.092034429311752,0.094234332442284],[-0.0042052869684994,0.32758241891861,-0.014116832055151]],[[0.15630231797695,-0.31469509005547,0.011430061422288],[0.32577070593834,0.033177252858877,0.063869930803776],[0.0068825865164399,-0.015704121440649,0.039065711200237]],[[0.15242150425911,-0.027289317920804,-0.04431090131402],[-0.17230096459389,0.10151829570532,0.0079845348373055],[0.025619966909289,-0.042765036225319,0.039807207882404]],[[-0.14241850376129,-0.17312353849411,-0.023394392803311],[-0.14122168719769,-0.25931918621063,0.10266520828009],[0.23080058395863,-0.035637557506561,0.052809536457062]],[[0.061118543148041,-0.034660890698433,0.025987945497036],[-0.084209494292736,-0.05171712487936,-0.18756346404552],[-0.17001254856586,-0.2800487279892,-0.10887153446674]],[[-0.010878015309572,-0.032793149352074,0.18094466626644],[0.080840520560741,-0.16700698435307,-0.11103723198175],[-0.10378437489271,0.010880802758038,0.015884082764387]],[[0.12678548693657,-0.0084132282063365,0.060720708221197],[0.035791102796793,0.023389462381601,-0.065809190273285],[0.10324610024691,-0.032304309308529,-0.17698015272617]],[[0.13312549889088,-0.056778524070978,0.2836052775383],[0.28038993477821,-0.066132158041,-0.021174473688006],[-0.089230336248875,-0.097196713089943,0.1089016571641]],[[0.067799843847752,0.069768592715263,0.35133823752403],[-0.040310986340046,-0.0038782279007137,-0.18861949443817],[0.050729300826788,-0.14161409437656,-0.10658510029316]],[[0.15612572431564,-0.10909795761108,0.09632670134306],[0.093376971781254,0.015432325191796,0.004129046574235],[-0.070329084992409,0.045657448470592,-0.018707621842623]],[[0.14614652097225,0.15318076312542,-0.071707263588905],[0.060430493205786,-0.10023219138384,-0.15170684456825],[0.16666941344738,0.064511351287365,0.087956853210926]],[[-0.14356949925423,-0.10011916607618,0.046415776014328],[0.087653271853924,0.0068415477871895,0.17890480160713],[0.041353311389685,-0.079845108091831,-0.089493058621883]],[[0.092992298305035,0.095490455627441,0.06061502546072],[-0.20072849094868,0.01160233374685,0.15544831752777],[0.033618990331888,-0.090919375419617,0.19264702498913]],[[-0.18952319025993,0.32437270879745,0.056011170148849],[0.14532436430454,-0.062653377652168,0.074091158807278],[-0.1746398806572,0.12977337837219,-0.10704480111599]],[[-0.15325337648392,0.007240611128509,-0.037192035466433],[0.17816299200058,0.17034927010536,-0.22078241407871],[-0.061285734176636,0.22002467513084,0.0073721115477383]],[[-0.053116664290428,-0.060649700462818,0.08417797088623],[-0.064405597746372,0.21071708202362,-0.038536414504051],[-0.1814432144165,0.063689887523651,-0.016271060332656]],[[0.057698171585798,0.11641570925713,0.083920568227768],[0.072698473930359,0.015993675217032,-0.16145543754101],[0.11587495356798,-0.10471696406603,-0.13100810348988]],[[-0.18390606343746,-0.016058256849647,0.15417593717575],[-0.11365695297718,-0.24014227092266,0.10595487058163],[0.041420370340347,-0.13073691725731,-0.0077842082828283]],[[-0.029997216537595,0.029557602480054,-0.089352943003178],[0.34958192706108,-0.11061096936464,0.051181890070438],[-0.037693064659834,0.1455193310976,-0.051195453852415]],[[0.11692764610052,0.091048158705235,0.11198280006647],[-0.13305635750294,-0.10905900597572,-0.0040132873691618],[-0.24059104919434,-0.058603622019291,0.18720293045044]],[[-0.024931821972132,0.18268457055092,-0.027886835858226],[-0.0041011483408511,0.037539251148701,-0.01114493701607],[0.1185145303607,-0.12986189126968,0.15639950335026]],[[0.050869416445494,0.040101103484631,-0.13558821380138],[-0.038840621709824,0.050136607140303,0.012993796728551],[0.078943200409412,0.060077764093876,-0.10676620900631]],[[0.074590511620045,0.11827649921179,0.033252999186516],[0.052620444446802,0.092380203306675,0.13606092333794],[-0.063672333955765,-0.088208541274071,-0.0057957177050412]],[[-0.10823104530573,0.0068363309837878,-0.024419452995062],[-0.20841062068939,0.16238924860954,0.043715298175812],[-0.21726629137993,0.035114891827106,0.20154905319214]],[[-0.093024522066116,0.47597452998161,0.15316116809845],[0.12207523733377,-0.047605630010366,0.064122170209885],[-0.088232547044754,0.26764714717865,0.21250602602959]],[[-0.11990676820278,0.0079192370176315,0.0017431488959119],[0.15286412835121,0.010570853948593,-0.12894833087921],[0.0013665688456967,-0.20672352612019,-0.034783951938152]],[[0.081377945840359,-0.13423827290535,-0.082619868218899],[-0.0093242954462767,0.003065662458539,-0.029481319710612],[-0.0033864586148411,-0.022523878142238,-0.0098936688154936]],[[-0.056029882282019,0.0077611804008484,0.26080760359764],[0.03573340550065,0.079927690327168,0.04908299446106],[0.041719261556864,-0.24717307090759,-0.029168361797929]],[[0.075802162289619,0.049587611109018,-0.14519445598125],[0.030963353812695,-0.048600096255541,-0.0042960122227669],[-0.15154026448727,0.0097158113494515,0.15070059895515]],[[-0.053920105099678,-0.14656494557858,0.099131867289543],[-0.037911355495453,-0.042061850428581,-0.067149482667446],[-0.0067397812381387,-0.11023108661175,-0.041797183454037]],[[0.0798674300313,-0.05564396455884,-0.091534897685051],[0.21651244163513,-0.017488243058324,-0.017097763717175],[0.099385172128677,-0.011739617213607,0.021734748035669]],[[0.092043250799179,-0.081852041184902,0.0096518574282527],[-0.06039834395051,-0.047859512269497,-0.0059538744390011],[0.019055027514696,0.064528256654739,-0.0044444161467254]],[[-0.076570838689804,-0.0028220803942531,-0.18393307924271],[-0.15925198793411,-0.11188923567533,0.10158985108137],[0.068217188119888,0.06695917993784,-0.041259407997131]],[[-0.040599927306175,-0.11234920471907,0.022922672331333],[-0.052569501101971,-0.088991783559322,-0.11995784193277],[0.070592887699604,0.1475640386343,0.27590864896774]],[[-0.09248998016119,-0.011582183651626,0.13680851459503],[-0.10250113159418,-0.18806266784668,-0.13669541478157],[-0.023291034623981,-0.34153512120247,0.016929807141423]],[[0.1724524050951,-0.1553560346365,0.039979804307222],[0.11454458534718,0.16045497357845,-0.064831584692001],[0.20990243554115,0.19616243243217,-0.12474028766155]],[[0.27333748340607,0.15626415610313,-0.043275140225887],[-0.19127684831619,-0.18928544223309,-0.16096086800098],[-0.066619239747524,-0.08114293217659,0.069498740136623]],[[0.05103812739253,0.15796619653702,-0.020948803052306],[0.041704710572958,0.069871068000793,-0.042540248483419],[0.017286693677306,-0.17661049962044,0.054184522479773]],[[-0.014184256084263,0.20700173079967,-0.093043066561222],[-0.14632032811642,0.069172970950603,-0.19329556822777],[-0.11171270906925,0.045185174793005,0.00059779739240184]],[[0.074506364762783,-0.017057307064533,-0.079715132713318],[0.055855564773083,0.070089064538479,-0.070764198899269],[0.053175304085016,0.16768033802509,0.066395163536072]],[[-0.018643638119102,0.11389265954494,-0.18734483420849],[0.07264681905508,0.050835825502872,0.046450115740299],[0.029061302542686,0.010990273207426,0.1268265247345]],[[-0.14177456498146,-0.07973725348711,0.12845887243748],[-0.01012447476387,-0.014977199956775,-0.083323985338211],[0.04342595487833,-0.19804455339909,-0.19570276141167]],[[0.037437211722136,-0.020754907280207,0.017577270045877],[0.022671975195408,-0.099961332976818,-0.083603568375111],[0.012520772404969,0.0088261310011148,-0.035254616290331]],[[0.23297166824341,-0.053321730345488,0.019459612667561],[-0.03601410984993,-0.039220165461302,0.16383175551891],[-0.17242388427258,0.26681447029114,0.14223466813564]],[[0.1246203482151,0.058596856892109,0.079947732388973],[-0.015031726099551,0.043562013655901,0.10398168116808],[0.14337162673473,0.02431314624846,-0.096009030938148]],[[0.1723491102457,0.066080495715141,0.054687470197678],[0.11807833611965,-0.14887183904648,0.030654173344374],[0.00047049109707586,0.019914377480745,-0.014241431839764]],[[0.16973753273487,-0.037215899676085,0.098283484578133],[-0.0067836293019354,-0.036479506641626,-0.2421290576458],[0.14195093512535,-0.18185336887836,-0.16681359708309]],[[-0.06260622292757,-0.059689082205296,-0.19602024555206],[0.06249787658453,-0.085461974143982,0.033725704997778],[0.071182556450367,0.093779340386391,0.10254812240601]],[[0.20758208632469,0.021735554561019,-0.16678689420223],[0.038311649113894,-0.035615619271994,-0.018977198749781],[-0.082039602100849,0.022445509210229,-0.092469222843647]],[[0.017000691965222,0.10354022681713,0.031656369566917],[-0.03763972222805,0.26982486248016,0.19212348759174],[0.10723514854908,0.029308125376701,0.13899701833725]],[[0.076547011733055,0.018228396773338,-0.23698173463345],[-0.12592424452305,-0.013329559937119,-0.068703562021255],[-0.07194646447897,-0.066138602793217,0.066423922777176]],[[-0.14290443062782,-0.053467515856028,-0.10393910109997],[-0.02407218515873,0.060173142701387,0.1563536375761],[0.15353952348232,-0.011728496290743,0.097774691879749]],[[-0.10163135826588,-0.18509683012962,0.052439004182816],[-0.099916763603687,-0.14839595556259,0.060180529952049],[0.12512212991714,0.25834739208221,-0.13689997792244]],[[-0.017693962901831,-0.050071112811565,0.016185803338885],[-0.040621604770422,-0.044892366975546,-0.0070478189736605],[0.030901804566383,0.036545395851135,-0.031037393957376]],[[-0.11969240009785,-0.073424518108368,0.013423124328256],[-0.00066319119650871,-0.18929059803486,-0.029620623216033],[-0.17937256395817,-0.20956362783909,0.15567052364349]],[[-0.29999098181725,-0.16525326669216,-0.059067081660032],[0.10824055224657,-0.027264453470707,0.22638618946075],[-0.21516214311123,0.41045293211937,0.2246947735548]],[[-0.088965713977814,-0.017109060660005,0.098209545016289],[0.19058793783188,-0.15391072630882,0.10144935548306],[-0.14421379566193,0.058015942573547,0.084872744977474]],[[-0.0067275809124112,0.14505057036877,-0.081021256744862],[-0.20224064588547,0.16859383881092,-0.14376154541969],[0.10969629883766,0.22572766244411,-0.17843741178513]],[[-0.089447692036629,0.26502805948257,0.17287208139896],[0.092633448541164,0.098933525383472,0.044165007770061],[-0.083394691348076,0.047981455922127,-0.27065262198448]],[[0.0014654952101409,0.10424967855215,0.12242238223553],[-0.088253512978554,0.16430868208408,0.063315764069557],[-0.30586615204811,0.076239310204983,0.1130450591445]],[[-0.066473081707954,0.21502065658569,0.16662161052227],[0.24267184734344,0.101302690804,-0.220370054245],[-0.17994524538517,-0.16697092354298,-0.10841847211123]],[[-0.2855504155159,0.044706963002682,0.078157745301723],[-0.25694471597672,-0.064762428402901,0.095807835459709],[-0.18594239652157,0.18595442175865,0.10701363533735]],[[0.12383792549372,0.15955691039562,0.009056992828846],[0.12945759296417,-0.21428316831589,0.069383509457111],[0.0076017607934773,-0.025873076170683,-0.001183387124911]],[[-0.30872827768326,-0.085086293518543,0.032687608152628],[-0.0074249822646379,0.1457527577877,-0.16627329587936],[-0.12663358449936,-0.029516803100705,0.055960316210985]],[[-0.057410378009081,0.08774434030056,0.082507990300655],[0.15015923976898,0.20643453299999,0.024506622925401],[0.038031913340092,-0.20958179235458,-0.033199392259121]],[[-0.04247410595417,-0.043237771838903,0.012038172222674],[0.05156197398901,-0.026520421728492,0.094914555549622],[-0.25998792052269,-0.0090173007920384,0.013398507609963]],[[0.022514667361975,-0.0087118027731776,-0.034585811197758],[-0.21301686763763,-0.0042718383483589,-0.1033164486289],[0.18909767270088,-0.11457484215498,0.016036450862885]],[[-0.13764542341232,-0.041579376906157,0.036105047911406],[-0.0052506770007312,0.04800171032548,-0.034864567220211],[0.18972326815128,0.14111004769802,-0.11168642342091]],[[0.018004709854722,-0.18399992585182,0.077522464096546],[-0.17290389537811,0.15077142417431,0.085290491580963],[0.053882721811533,0.011918279342353,-0.28820368647575]],[[0.12206882238388,0.23978373408318,-0.11421681940556],[-0.16555804014206,0.083896413445473,-0.12193392962217],[-0.092920988798141,0.027943082153797,0.035443220287561]],[[0.020512795075774,0.011783800087869,0.04424961283803],[0.34239733219147,0.069183006882668,0.036344908177853],[0.13191895186901,0.10955349355936,-0.036449149250984]]],[[[0.0840919688344,0.083779104053974,-0.040872175246477],[0.045746251940727,0.030089296400547,-0.045943964272738],[0.070667907595634,0.17036554217339,0.042557746171951]],[[-0.079556025564671,-0.027798468247056,0.11134925484657],[0.073664128780365,-0.20165701210499,-0.12326754629612],[-0.12412732839584,-0.11105009168386,-0.078294403851032]],[[-0.0089711649343371,-0.00076704460661858,0.036136653274298],[0.16370636224747,0.12211126089096,-0.018652198836207],[-0.13880299031734,0.169877409935,0.08401570469141]],[[0.080392882227898,0.040140390396118,-0.003399400273338],[-0.025061164051294,-0.012504372745752,0.011798115447164],[0.011406748555601,-0.022265762090683,0.0084471199661493]],[[0.11748875677586,0.0088851135224104,0.043826643377542],[0.10872811824083,0.013094808906317,0.033753633499146],[0.054737024009228,0.059520479291677,-0.012210503220558]],[[-0.037553686648607,0.073845319449902,-0.03421700745821],[-0.033842336386442,0.098537400364876,0.057280417531729],[0.10967582464218,0.10220827162266,-0.012893236242235]],[[0.043731193989515,0.0028960281051695,0.0044072498567402],[0.0057297837920487,-0.038763660937548,-0.032770149409771],[-0.024139434099197,-0.02532347291708,0.056929834187031]],[[0.29677772521973,0.02146902680397,-0.022172786295414],[0.1284706890583,0.11011414974928,0.037405554205179],[0.1402862071991,0.024073569104075,0.020326538011432]],[[-0.02170642465353,-0.20511277019978,0.018769916146994],[0.093984417617321,-0.022601647302508,-0.111338801682],[-0.11810845881701,0.0090992068871856,0.057964216917753]],[[0.080394111573696,-0.032904632389545,-0.055094957351685],[-0.034704685211182,-0.060239899903536,-0.13387258350849],[-0.022245166823268,-0.11724682897329,0.037269834429026]],[[0.075373187661171,-0.024477431550622,0.038248538970947],[0.077124610543251,0.087257191538811,-0.01230857335031],[-0.04560587182641,-0.00092417327687144,-0.052854411303997]],[[0.04323972761631,0.024211706593633,-0.049118965864182],[0.049435008317232,0.098670914769173,-0.014934506267309],[-0.085915863513947,-0.10656236857176,-0.040018994361162]],[[0.0056077381595969,0.089136533439159,0.013570805080235],[-0.1160841807723,0.001341519295238,-0.064217008650303],[-0.15035936236382,-0.029932744801044,0.048269659280777]],[[0.024321831762791,-0.020447760820389,-0.089777357876301],[0.048942163586617,0.040783040225506,-0.056689523160458],[0.0061371116898954,-0.13040333986282,-0.015915067866445]],[[0.014078516513109,-0.00019352507661097,0.10439612716436],[-0.058684021234512,0.065502800047398,-0.055896878242493],[-0.16537526249886,-0.095830291509628,-0.16966055333614]],[[-0.026310516521335,-0.012068248353899,0.069684073328972],[0.27221068739891,0.082731232047081,0.13546745479107],[0.054924741387367,-0.0074317576363683,0.0072745252400637]],[[0.11671733111143,-0.11874438077211,0.15833878517151],[0.048712722957134,-0.043877832591534,0.051005143672228],[0.057995297014713,0.094074122607708,0.074566625058651]],[[-0.12328006327152,0.029848901554942,0.11339657753706],[-0.20827800035477,0.056482952088118,0.073556646704674],[-0.1956132799387,-0.060547322034836,-0.002811090555042]],[[0.072421759366989,-0.068802490830421,0.032052297145128],[0.095767304301262,0.07547590136528,0.044459041208029],[-0.038264743983746,-0.18507367372513,-0.043033339083195]],[[-0.028225710615516,-0.06440881639719,0.055580485612154],[0.009778861887753,0.022692419588566,-0.20882418751717],[-0.094053961336613,0.02364225499332,0.018660390749574]],[[0.0039881188422441,0.06382143497467,0.021110320463777],[-0.025203850120306,0.021379640325904,0.15583452582359],[0.015256406739354,0.011043869890273,0.0064881052821875]],[[-0.044103682041168,-0.035753149539232,0.12621226906776],[0.021503204479814,-0.014828816056252,-0.083328805863857],[-0.066609859466553,-0.12245717644691,0.018534194678068]],[[-0.049363270401955,-0.030243894085288,0.041131049394608],[-0.019135231152177,-0.050414372235537,0.091151088476181],[-0.10197477042675,-0.059603855013847,0.035047974437475]],[[-0.027587629854679,0.020771974697709,-0.03378564119339],[0.079933807253838,0.12256440520287,-0.067876502871513],[-0.00023984165454749,0.046073686331511,-0.10981933772564]],[[0.011640882119536,-0.151670768857,-0.013568380847573],[-0.053573541343212,-0.051201481372118,-0.085594236850739],[-0.061061926186085,0.0228784494102,-0.047366313636303]],[[0.047146875411272,-0.029585875570774,0.045117743313313],[0.058595314621925,0.068447396159172,0.041321564465761],[-0.14892861247063,0.0065247877500951,0.077950291335583]],[[0.027454668655992,-0.1379929035902,0.096199631690979],[-0.17671766877174,-0.1268068253994,-0.10603710263968],[0.17820928990841,-0.019442729651928,0.056492544710636]],[[-0.054225116968155,0.017076445743442,0.13283345103264],[-0.022788088768721,-0.10122892260551,0.0027486886829138],[0.060874979943037,-0.10257469117641,0.064457379281521]],[[-0.0092810597270727,0.044234868139029,0.10406439006329],[-0.03909857198596,-0.080199092626572,-0.067675597965717],[0.054231528192759,0.0082538332790136,-0.018689449876547]],[[0.0029511854518205,-0.064803190529346,0.00048868026351556],[0.0049058725126088,0.069189809262753,-0.06722766906023],[0.033590607345104,-0.047441441565752,-0.012067744508386]],[[0.13544553518295,0.03161858767271,-0.010703515261412],[-0.093762591481209,0.048372033983469,-0.061437640339136],[0.024738647043705,0.15870423614979,0.031836960464716]],[[0.11781545728445,-0.089469246566296,0.12502348423004],[-0.0063408114947379,-0.0031988064292818,-0.08867946267128],[0.24408036470413,0.14298024773598,0.18927752971649]],[[-0.059025298804045,0.078930750489235,0.043402820825577],[-0.038704473525286,0.035920824855566,0.11302442848682],[0.058728005737066,-0.018401440232992,-0.013102108612657]],[[0.075571067631245,0.11126044392586,0.142507776618],[0.13011890649796,0.077909789979458,0.13080210983753],[-0.0080009736120701,-0.041713427752256,-0.077535562217236]],[[-0.030232409015298,0.0049100951291621,-0.01545484084636],[-0.0014930964680389,0.05199758335948,7.3578979936428e-05],[0.027837553992867,0.086105972528458,-0.087148420512676]],[[0.043699976056814,0.086787149310112,0.015045174397528],[-0.13051269948483,0.0056256079114974,0.028488488867879],[0.1131766885519,0.052879210561514,-0.049009006470442]],[[0.14301808178425,0.14142583310604,0.066235065460205],[0.090852543711662,-0.022951040416956,-0.014929637312889],[-0.082110457122326,-0.052052039653063,-0.018745547160506]],[[0.043633613735437,-0.042870055884123,0.072958014905453],[0.1237915456295,-0.029111055657268,-0.016258616000414],[-0.032329335808754,-0.0038209387566894,-0.038632467389107]],[[0.01079472899437,0.038437716662884,0.21118670701981],[0.10967734456062,0.073802262544632,0.087034612894058],[0.046207692474127,0.059901729226112,0.058716159313917]],[[-0.021535642445087,-0.038443695753813,-0.049030981957912],[-0.052509564906359,0.045607767999172,-0.063720040023327],[0.027533864602447,0.035053439438343,-0.016863122582436]],[[0.027146367356181,-0.074954830110073,0.044874034821987],[-0.17266841232777,0.025929734110832,0.092254780232906],[0.055006917566061,-0.13669183850288,-0.018480565398932]],[[-0.037288535386324,0.01858539134264,-0.087471485137939],[0.068252295255661,0.016459126025438,0.03312211856246],[-0.12171701341867,-0.015146225690842,0.0024234475567937]],[[0.025249134749174,-0.017947290092707,0.027230957522988],[0.098087295889854,-0.0015037183184177,0.0095684751868248],[0.022118287160993,-0.046429723501205,0.10482310503721]],[[0.012352698482573,-0.01836434751749,0.047876264899969],[-0.11219428479671,0.01773989200592,-0.0043338402174413],[-0.014774223789573,0.07414648681879,-0.083695530891418]],[[-0.028283243998885,-0.059379424899817,0.050551824271679],[0.098421394824982,-0.042087726294994,-0.037806201726198],[0.076302923262119,0.19930920004845,0.016972184181213]],[[0.028326507657766,0.069879442453384,0.11070667952299],[0.042268972843885,0.029965734109282,0.049407951533794],[0.052344150841236,0.061031498014927,0.042222298681736]],[[-0.20504407584667,0.055032152682543,0.15843960642815],[-0.07872599363327,0.062768764793873,-0.053209703415632],[-0.12881326675415,0.087512165307999,0.024980556219816]],[[-0.032230373471975,-0.060276973992586,-0.067769974470139],[-0.17519146203995,-0.06467267870903,-0.0025266984011978],[0.047770079225302,-0.058760162442923,-0.049873277544975]],[[-0.061127856373787,-0.067398525774479,-0.027017362415791],[-0.052300557494164,-0.097806967794895,-0.064036406576633],[-0.043332606554031,-0.011478964239359,0.021306561306119]],[[0.011750727891922,-0.047327868640423,0.053522754460573],[0.036832369863987,-0.0051182573661208,-0.079640276730061],[-0.060095023363829,-0.10070264339447,0.10630382597446]],[[0.12277880311012,0.110490642488,-0.039274197071791],[-0.13570107519627,-0.039661757647991,-0.015730131417513],[-0.10762073844671,0.078683689236641,0.022137710824609]],[[0.015172137878835,0.044751975685358,-0.16815847158432],[-0.014198560267687,-0.018076930195093,-0.081850402057171],[0.029815066605806,-0.0053852801211178,0.050320375710726]],[[-0.083186164498329,-0.060854502022266,-0.080385975539684],[-0.082845441997051,-0.04479493945837,0.10200937092304],[-0.046388458460569,0.0014416972408071,0.035929195582867]],[[0.015431728214025,-0.025380961596966,0.050224035978317],[0.08115354180336,0.036914467811584,0.03959920629859],[0.063167594373226,-0.057546325027943,0.021715903654695]],[[-0.14582169055939,0.079428896307945,0.017700748518109],[-0.013681098818779,0.059631768614054,0.098121263086796],[0.028375314548612,-0.022242253646255,0.1380812972784]],[[0.15831948816776,0.0071055223233998,0.060005359351635],[-0.10374980419874,0.084784552454948,0.075542271137238],[-0.041209444403648,-0.028926432132721,-0.094230346381664]],[[0.030971260741353,0.041416477411985,-0.016160905361176],[-0.028751457110047,0.0041598379611969,0.11159311980009],[0.029753951355815,0.035658422857523,0.017844665795565]],[[0.064207389950752,0.0078130718320608,0.0073727983981371],[0.098470538854599,-0.043884076178074,-0.024860585108399],[0.11903022229671,0.047354713082314,0.070190116763115]],[[0.027491955086589,0.016460344195366,-0.080908618867397],[0.13449831306934,0.22340832650661,0.16154463589191],[-0.11746370047331,-0.030098728835583,0.03601461648941]],[[0.046703908592463,0.073600172996521,-0.076837159693241],[-0.21858927607536,-0.067101091146469,0.034337636083364],[0.013693721964955,0.06444438546896,0.058235410600901]],[[-0.063604898750782,-0.092742919921875,-0.050172604620457],[-0.073894307017326,-0.065490648150444,-0.065082997083664],[-0.034399829804897,-0.086151488125324,-0.032175630331039]],[[0.12056666612625,0.12119973450899,0.034050490707159],[-0.037798129022121,-0.15872427821159,-0.070613116025925],[0.087437905371189,-0.09183757007122,-0.157510638237]],[[0.099562205374241,0.086569018661976,0.059832625091076],[-0.013469095341861,0.043621473014355,0.030175890773535],[-0.012186321429908,0.12166620790958,0.11799780279398]],[[0.045109171420336,0.24854481220245,0.044925387948751],[-0.049364920705557,0.0069815488532186,0.0020240005105734],[-0.036539260298014,-0.014011821709573,0.04176339879632]],[[0.19541642069817,-0.093554064631462,0.0069421869702637],[-0.041803542524576,0.020812038332224,-0.063117690384388],[0.034314464777708,0.038661252707243,-0.029613368213177]],[[-0.0095542594790459,0.046528771519661,0.14973410964012],[0.065723650157452,-0.024006571620703,-0.023342836648226],[0.021372593939304,-0.10732135921717,0.10342343151569]],[[0.052046686410904,-0.070692874491215,-0.036866337060928],[-0.12552601099014,0.012585144490004,0.063042610883713],[-0.065143063664436,-0.03314096480608,1.5705367331975e-05]],[[-0.096732601523399,-0.073258586227894,-0.14254447817802],[0.12417696416378,0.046942077577114,0.0071449400857091],[0.046178866177797,-0.00033549751969986,-0.10591386258602]],[[0.16138848662376,-0.059241656213999,-0.14034786820412],[0.12879312038422,0.06152181699872,-0.049200270324945],[-0.00038220273563638,-0.13112723827362,0.015915980562568]],[[0.054847598075867,-0.054607536643744,0.0085426680743694],[0.035672836005688,0.0039287698455155,0.092084556818008],[0.073482759296894,0.096094280481339,0.18415260314941]],[[0.13952730596066,0.17933386564255,0.011902159079909],[0.022520150989294,0.025218496099114,0.10942728072405],[0.031753342598677,0.089442223310471,0.10697823762894]],[[0.063936963677406,0.1501273214817,0.11755163967609],[-0.041560113430023,-0.22674344480038,-0.09119988232851],[0.062776163220406,-0.031243715435266,0.078717917203903]],[[0.031626887619495,0.0042071458883584,0.099606357514858],[-0.12292896211147,0.073478534817696,0.075698047876358],[0.016465211287141,-0.0095983557403088,-0.089264698326588]],[[0.075177401304245,-7.2374117735308e-05,0.023433763533831],[-0.0092969862744212,-0.12944127619267,-0.099152721464634],[-0.087916240096092,-0.029804246500134,-0.068195678293705]],[[-0.1139966621995,0.104398265481,0.0041540819220245],[0.039143566042185,-0.043298967182636,0.046495672315359],[-0.044130638241768,0.014059604145586,0.017502352595329]],[[0.041735678911209,0.08711951225996,-0.029736436903477],[0.18360123038292,0.052185598760843,0.17042353749275],[0.016657296568155,-0.11709439009428,0.0857223123312]],[[-0.038790248334408,-0.0099087757989764,-0.047872930765152],[-0.037057980895042,-0.012155042029917,0.0018338869558647],[-0.033539056777954,0.12312087416649,0.15215475857258]],[[-0.038369100540876,-0.023592656478286,0.020311439409852],[0.03746423125267,-0.028317734599113,0.019848275929689],[0.018846515566111,0.011786110699177,0.056524466723204]],[[-0.001696381601505,-0.062461920082569,-0.11007444560528],[-0.088974937796593,-0.009395026601851,0.034051537513733],[-0.060065306723118,-0.018917396664619,-0.062294367700815]],[[-0.093427143990993,-0.0523841381073,-0.12075198441744],[-0.095504231750965,-0.10863602906466,0.0053289956413209],[-0.059257917106152,-0.10601259768009,-0.1061189994216]],[[-0.074681393802166,-0.063421562314034,0.030744997784495],[0.016127184033394,0.073261670768261,-0.014535433612764],[0.063845880329609,0.071273125708103,-0.034838069230318]],[[-0.062711536884308,-0.076423615217209,0.00088878173846751],[-0.054772146046162,0.024514820426702,0.022908858954906],[-0.013237562030554,0.056103151291609,0.057216495275497]],[[-0.093176998198032,-0.12732599675655,-0.083123244345188],[-0.19732701778412,-0.10936243087053,-0.0072319735772908],[0.015711242333055,-0.026928439736366,0.034066170454025]],[[-0.14499309659004,-0.098165743052959,0.099036760628223],[-0.0046229111030698,0.13668283820152,0.15443487465382],[-0.057897455990314,0.035449985414743,-0.013295378535986]],[[0.14157377183437,0.084494389593601,0.13490445911884],[-0.024490239098668,0.063498958945274,0.054745994508266],[-0.0019313036464155,-0.018208654597402,-0.09400350600481]],[[-0.08992999792099,-0.11622899025679,-0.10454417020082],[0.083361357450485,-0.033777665346861,-0.091645501554012],[0.061821926385164,-0.088103599846363,-0.019355053082108]],[[0.081927105784416,0.020524643361568,0.083452045917511],[0.087261378765106,0.18632814288139,-0.051763322204351],[-0.042287364602089,-0.020010519772768,0.01110843103379]],[[0.026801792904735,-0.024552848190069,0.061420492827892],[-0.038652583956718,0.027578376233578,-0.048026263713837],[-0.080860041081905,0.043772425502539,0.042604796588421]],[[0.010491132736206,-0.036779880523682,0.058448798954487],[-0.0035703186877072,0.017531650140882,-0.08392708748579],[0.064461603760719,-0.09281200915575,-0.0015231813304126]],[[-0.13024793565273,-0.11877528578043,-0.16123077273369],[0.075105212628841,-0.11152806133032,-0.0088542280718684],[-0.011710445396602,-0.019031753763556,-0.088401414453983]],[[0.014559778384864,0.049208667129278,-0.010801454074681],[-0.099751807749271,0.068822585046291,0.1179112419486],[-0.077544786036015,-0.014324054121971,-0.023004868999124]],[[0.0019362126477063,0.034007325768471,-0.011883989907801],[0.059882331639528,0.054595421999693,-0.052108388394117],[0.11611418426037,0.31201648712158,0.091389305889606]],[[0.18110653758049,-0.044578321278095,0.041419114917517],[0.073917657136917,0.11846429109573,0.024508785456419],[0.088664919137955,-0.02060261555016,-0.053983900696039]],[[-0.031742095947266,0.031258974224329,-0.061368010938168],[0.018065476790071,0.014899853616953,-0.069826439023018],[0.19241474568844,0.078041404485703,0.10035661607981]],[[0.051550976932049,-0.0064467038027942,-0.074211053550243],[0.053266540169716,0.033611882477999,-0.097960963845253],[0.14581161737442,-0.015389272011817,0.064390018582344]],[[0.10102423280478,0.090765044093132,0.087283752858639],[0.075934521853924,-0.1717384159565,-0.039208926260471],[0.22890797257423,0.14136675000191,0.16786201298237]],[[0.015250044874847,0.058943428099155,0.058233562856913],[0.13680462539196,-0.15742999315262,-0.060731593519449],[-0.027203150093555,0.03123876452446,-0.024028794839978]],[[0.076487429440022,0.031640838831663,0.094512492418289],[0.10806999355555,0.010229174979031,0.092261739075184],[0.11147838830948,0.064763024449348,0.043702982366085]],[[0.066232845187187,-0.0053797094151378,0.0095360269770026],[0.076175026595592,0.074813894927502,-0.093958422541618],[0.023562734946609,0.039396654814482,-0.017140299081802]],[[0.076654531061649,0.016463156789541,-0.0046595325693488],[0.050309304147959,0.04857387766242,-0.073422722518444],[0.046757467091084,0.02780875749886,-0.0047072651796043]],[[-0.05031830444932,-0.016991863027215,-0.10226193070412],[-0.18677593767643,-0.14301931858063,-0.062065646052361],[-0.092828668653965,0.024438675493002,-0.16788619756699]],[[0.036801263689995,-0.056987911462784,0.1213329359889],[0.0093727810308337,-0.12293693423271,0.20082932710648],[0.029897129163146,-0.070268154144287,0.018713453784585]],[[0.002313616219908,0.0092983273789287,-0.032070085406303],[0.012469216249883,0.019558237865567,0.016877228394151],[0.052588161081076,0.026770381256938,-0.065338283777237]],[[0.0031123044900596,-0.020858693867922,-0.023388212546706],[-0.075183779001236,-0.044963661581278,0.042073305696249],[0.054086815565825,0.017404746264219,0.11579692363739]],[[-0.0091671738773584,0.061282888054848,-0.053257901221514],[-0.057965259999037,-0.011608303524554,0.0074532357975841],[-0.02262713573873,0.055352203547955,-0.019705168902874]],[[0.023148683831096,0.0013022413477302,-0.085467591881752],[0.043040998280048,-0.18272598087788,0.024113539606333],[0.12651559710503,0.010321531444788,0.055985666811466]],[[-0.024382926523685,0.096955694258213,0.030690580606461],[0.038510646671057,0.0060211112722754,0.10996770858765],[0.032727140933275,-0.067123465240002,-0.020664039999247]],[[-0.032381907105446,0.050592631101608,0.044277545064688],[0.082450337707996,0.019650341942906,-0.084125138819218],[-0.038681142032146,-0.024136247113347,-0.071530036628246]],[[-0.059003956615925,-0.049857255071402,0.079399302601814],[-0.073256306350231,-0.044730897992849,0.024599285796285],[0.026668399572372,-0.11595966666937,-0.03489300981164]],[[-0.066890977323055,-0.022704539820552,-0.084708951413631],[-0.063990406692028,-0.047234300523996,-0.0386026725173],[-0.0205850712955,0.057376611977816,0.038929011672735]],[[-0.0030961828306317,0.037322208285332,-0.10552925616503],[0.012546516954899,0.0027034236118197,0.0021471090149134],[-0.089126445353031,0.018587412312627,0.051950227469206]],[[0.071224004030228,0.016498548910022,0.016220377758145],[0.050861999392509,0.0089216688647866,-0.059625953435898],[0.038321517407894,0.063950538635254,-0.005568528547883]],[[-0.1065232232213,-0.018664140254259,-0.070073023438454],[-0.099182553589344,-0.081949278712273,0.00033123858156614],[0.047011468559504,0.08547855168581,-0.046070359647274]],[[-0.066415265202522,-0.0087405201047659,-0.034509416669607],[0.06657187640667,0.040742319077253,0.21428608894348],[-0.013253449462354,0.047927707433701,0.00059069780400023]],[[-0.05053236708045,-0.075919479131699,-0.015553088858724],[-0.089315965771675,-0.079357117414474,-0.060081094503403],[-0.14809291064739,-0.12657837569714,0.014357552863657]],[[-0.051567077636719,0.045448668301105,0.032706316560507],[0.00097313342848793,0.092984549701214,0.048854924738407],[-0.081396333873272,-0.2033716738224,-0.21340779960155]],[[0.010151539929211,0.1438006311655,-0.0027103440370411],[0.027552947402,-0.025707298889756,-0.053728580474854],[0.086703881621361,0.10835641622543,0.0046046795323491]],[[-0.016639363020658,-0.1574117988348,-0.032354105263948],[-0.036655645817518,-0.061662305146456,-0.16786746680737],[0.12101834267378,-0.053878411650658,0.080987095832825]],[[0.032097440212965,-0.11649571359158,0.034285385161638],[0.047149743884802,-0.0025983080267906,-0.065061926841736],[-0.054713301360607,-0.045026578009129,-0.0085424100980163]],[[0.079149059951305,0.033800840377808,-0.017440849915147],[-0.015696708112955,-0.035183407366276,-0.0037801379803568],[-0.017408197745681,0.033748388290405,-0.078913629055023]],[[-0.06453238427639,-0.10938496142626,-0.033151421695948],[-0.1823256611824,-0.04430915042758,-0.024490399286151],[-0.039995085448027,-0.087971672415733,-0.089616216719151]],[[0.0050235958769917,0.022202551364899,0.028628889471292],[0.017177859321237,-0.044996194541454,-0.063780553638935],[-0.037561796605587,0.062850132584572,-0.10465835779905]],[[-0.062778376042843,-0.045327227562666,0.054062500596046],[-0.13040891289711,-0.12124581634998,0.061068631708622],[-0.1408517062664,-0.051051493734121,-0.079501196742058]],[[-0.062536969780922,-0.083861745893955,-0.11288474500179],[0.041079200804234,0.0033569498918951,-0.082696504890919],[-0.12808659672737,-0.035073589533567,-0.13683424890041]],[[0.072323098778725,0.071722403168678,0.13505266606808],[0.10459625720978,0.030563564971089,0.088599875569344],[0.072156518697739,0.048487823456526,0.027536662295461]],[[0.0065586930140853,-0.13688623905182,-0.049562282860279],[-0.077584467828274,-0.097980067133904,0.041415829211473],[-0.0062992223538458,-0.055333983153105,-0.010288478806615]],[[-0.022002348676324,-0.060109611600637,-0.0065367906354368],[0.029274314641953,-0.045494008809328,-0.036174569278955],[0.032109912484884,-0.010585406795144,-0.088429465889931]],[[-0.066873677074909,0.0072562638670206,0.00015968375373632],[0.037817686796188,0.048310212790966,-0.034858647733927],[0.00032715700217523,0.086470149457455,0.024566385895014]]],[[[0.091845311224461,-0.02155676484108,0.060409422963858],[-0.021901289001107,-0.0094346981495619,0.019496532157063],[-0.075567223131657,0.030978556722403,-0.041024722158909]],[[-0.048561166971922,-0.0035542533732951,-0.0096032517030835],[0.015905570238829,-0.048081398010254,0.050438854843378],[0.067385479807854,0.066413924098015,0.091419637203217]],[[-0.045339964330196,0.055356174707413,0.033949658274651],[0.080243416130543,0.004261979367584,-0.051629304885864],[0.015868030488491,-0.054339703172445,-0.0043968856334686]],[[0.065779529511929,-0.036428477615118,-0.012293788604438],[-0.060408890247345,0.038688313215971,0.037114284932613],[0.039349216967821,0.041186966001987,-0.025396222248673]],[[-0.087148956954479,-0.04477509111166,0.050717279314995],[0.078492626547813,-0.059710416942835,-0.0062530059367418],[-0.0070134969428182,-0.0091319484636188,-0.022370195016265]],[[-0.022910432890058,0.047927543520927,-0.042816918343306],[0.030564397573471,-0.04626390337944,0.018673775717616],[0.0006770261679776,0.016325168311596,0.069128528237343]],[[-0.016324914991856,0.046281948685646,-0.0091913416981697],[0.0021600057370961,0.0027755664195865,-0.014095790684223],[-0.0028749846387655,0.0033685099333525,-0.016254335641861]],[[-0.063259027898312,-0.0096332719549537,0.008024400100112],[-0.014749815687537,0.093615934252739,0.0077213202603161],[-0.0065493006259203,0.028541112318635,0.032369628548622]],[[0.059561885893345,-0.051675703376532,0.054026771336794],[0.012937125749886,0.051464587450027,0.00016077843611129],[0.0097605232149363,-0.045719485729933,0.034402385354042]],[[-0.05982244759798,-0.0088756997138262,0.021350676193833],[-0.064621530473232,0.048802156001329,0.018478030338883],[-0.0049369847401977,0.02470919303596,0.044980183243752]],[[0.006507215090096,-0.014938370324671,0.035307738929987],[-0.042170323431492,-0.058178033679724,0.047191552817822],[-0.016629515215755,-0.016705796122551,-0.039063639938831]],[[-0.015108588151634,0.056545834988356,-0.055493604391813],[0.012136313132942,0.040636111050844,0.00014615373220295],[0.037560202181339,-0.025618094950914,0.026515467092395]],[[0.018327305093408,0.054178349673748,0.0074380831792951],[-0.054034102708101,0.01176305487752,-0.010529279708862],[-0.015953009948134,0.037138950079679,0.0071732462383807]],[[-0.035059954971075,0.051372341811657,0.038712717592716],[0.016614332795143,0.0020526794251055,0.04040427878499],[0.031941510736942,0.047676265239716,-0.047197181731462]],[[0.070788182318211,0.0075420262292027,-0.023490848019719],[-0.039459362626076,0.10580538958311,-0.027370387688279],[-0.049518100917339,0.078373946249485,0.0076048658229411]],[[-0.051914725452662,-0.028111405670643,0.071195989847183],[-0.015561990439892,0.03247594460845,0.013751642778516],[0.0057693608105183,0.0027903306763619,-0.03967272862792]],[[0.011180921457708,0.0022662538103759,-0.077266104519367],[0.056427970528603,0.0054393233731389,-0.051181733608246],[-0.0070572686381638,0.010950806550682,0.065958797931671]],[[0.010940589010715,-0.0026113875210285,0.028265057131648],[-0.0045779380016029,-0.012377766892314,-0.02582729794085],[-0.041113778948784,-0.027165522798896,-0.054324775934219]],[[0.039412539452314,-0.033168088644743,0.042275343090296],[0.020578399300575,0.062947072088718,-0.008478962816298],[0.018372045829892,0.025377465412021,0.019750388339162]],[[0.0046135145239532,0.0060335327871144,0.0019910247065127],[0.036505099385977,0.015435543842614,-0.028406230732799],[0.02287208661437,0.059647463262081,0.024197939783335]],[[-0.041069146245718,-0.027716815471649,0.012392566539347],[-0.059225935488939,0.010960905812681,-0.015944331884384],[-0.0058568036183715,-0.072894670069218,0.037611406296492]],[[0.06037824228406,0.090141370892525,-0.020463122054935],[-0.08344579488039,0.013990384526551,-0.047717154026031],[-0.032568145543337,-0.072735898196697,0.018338097259402]],[[-0.078275665640831,0.11047254502773,-0.05474229156971],[0.043438091874123,0.034184101969004,0.02125951834023],[-0.077829569578171,0.035921148955822,0.0035421913489699]],[[0.020970797166228,-0.040681552141905,0.049029335379601],[0.041694790124893,-0.0089904824271798,-0.049870099872351],[0.095661602914333,0.034700870513916,0.037219367921352]],[[-0.020683875307441,-0.03114908002317,0.057748895138502],[0.006486854981631,0.038712222129107,-0.0034900333266705],[-0.047459416091442,-0.0033054337836802,0.028956791386008]],[[0.015537604689598,0.0092028984799981,0.098948180675507],[0.011685756035149,-0.047894310206175,0.044021680951118],[-0.0018521066522226,-0.028353303670883,0.056654922664165]],[[0.072948582470417,0.015163173899055,-0.083280861377716],[-0.080765686929226,-0.009016290307045,-0.020219333469868],[-0.010744234547019,-0.00016489179688506,-0.083408333361149]],[[-0.022558989003301,-0.065178908407688,-0.0034230994060636],[0.0065954416058958,0.03465997427702,-0.024159986525774],[0.06571439653635,0.077314458787441,-0.026797624304891]],[[-0.04187098518014,-0.036334965378046,0.017456626519561],[-0.044605027884245,0.016841061413288,-0.012124337255955],[0.078230790793896,0.012261835858226,-0.019290523603559]],[[-0.033261843025684,-0.06101831048727,-0.022373801097274],[-0.026848150417209,0.022512521594763,-0.022026473656297],[-0.0050932615995407,0.061982993036509,-0.05497607961297]],[[0.044431511312723,0.026901012286544,0.0077805500477552],[0.035916693508625,-0.036711592227221,-0.026742512360215],[-0.02110568806529,0.041810229420662,-0.0098686870187521]],[[-0.046415694057941,0.01784504763782,-0.077355802059174],[0.044621370732784,-0.01857915520668,-0.028987852856517],[-0.014247412793338,0.0020443266257644,0.00030094728572294]],[[-0.019892804324627,0.009001424536109,-0.0018974671838805],[-0.0032358882017434,0.034058399498463,-0.046374551951885],[0.012174879200757,0.029470957815647,-0.032275661826134]],[[0.060563273727894,0.010699046775699,0.014558627270162],[0.044966794550419,-0.056620236486197,0.026843840256333],[0.019184375181794,-0.0021201681811363,-0.017946364358068]],[[0.0099975755438209,-0.0043118721805513,0.0158706959337],[0.071362681686878,0.049184527248144,0.028985608369112],[0.040489941835403,-0.010478426702321,-0.097149260342121]],[[0.012400542385876,-0.0017240688903257,-0.011108489707112],[0.01457345765084,-0.039945043623447,0.047070518136024],[0.01868075504899,-0.036170944571495,-0.04732084274292]],[[-0.0095925917848945,-0.034589026123285,0.030458627268672],[-0.031928326934576,0.014849375933409,0.051049385219812],[0.033825874328613,-0.023206470534205,-0.04659528285265]],[[0.068817980587482,0.013823298737407,0.013085231184959],[0.030634677037597,-0.061947889626026,0.0031376464758068],[0.012173946946859,-0.0057579539716244,0.0032863121014088]],[[-0.053476341068745,-0.01666902936995,-0.040788002312183],[0.073299780488014,-0.035479426383972,0.049052957445383],[-0.017902130261064,0.037018187344074,0.054255917668343]],[[-0.023460924625397,-0.043875049799681,0.0075612063519657],[-0.017623545601964,0.034122966229916,-0.016447730362415],[-0.02200117520988,-0.037637360394001,-0.039025235921144]],[[0.015783445909619,-0.00053595204371959,0.031514566391706],[-0.020710308104753,-0.031250018626451,0.050274811685085],[-0.0031346667092294,-0.021839072927833,-0.012925310991704]],[[0.0022514350712299,0.060520522296429,-0.07172480225563],[-0.027888834476471,-0.032918933779001,0.066009141504765],[-0.019367421045899,-0.0079315202310681,-0.0099321017041802]],[[0.09275645762682,-0.0099988300353289,0.030271908268332],[0.014024029485881,0.032334085553885,-0.075896024703979],[0.0085095409303904,-0.097687467932701,0.10495540499687]],[[-0.053344115614891,-0.042716331779957,-0.0012721971143037],[-0.11307954788208,-0.1005063354969,-0.080864377319813],[-0.015148372389376,-0.084075108170509,-0.038318667560816]],[[-0.023735763505101,0.0020832282025367,-0.011171178892255],[0.01652617380023,-0.059841655194759,0.062544718384743],[0.022016912698746,0.013578152284026,0.0040996526367962]],[[0.051359985023737,0.016272874549031,0.065285742282867],[-0.054798249155283,0.00066604622406885,-0.045377776026726],[0.064365066587925,0.041350189596415,0.039345927536488]],[[0.03443293645978,-0.015539262443781,-0.038450792431831],[0.018206462264061,0.047126855701208,-0.013174782507122],[-0.0019551580771804,0.025526138022542,0.026260145008564]],[[-0.0085972053930163,-0.015022957697511,-3.7257144867908e-05],[0.093104340136051,0.034223556518555,0.054316937923431],[0.012986111454666,0.012745751999319,-0.0063341544009745]],[[0.024713484570384,0.0020197953563184,0.042954705655575],[-0.073757752776146,-0.072016321122646,0.010259930975735],[-0.018847147002816,0.048066906630993,0.0071032112464309]],[[0.005987458396703,0.04902209341526,-0.042966160923243],[-0.0047188573516905,-0.0022210020106286,0.083863347768784],[0.043848849833012,0.029029790312052,0.0045105651952326]],[[0.00231659039855,0.0073472582735121,0.025930307805538],[0.0024958809372038,0.044773053377867,0.033441137522459],[0.040378756821156,-0.03676875680685,0.00030458040419035]],[[-0.084415145218372,0.018243106082082,0.0078229960054159],[-0.03870365768671,0.033197514712811,0.029480215162039],[0.042492091655731,-0.031810838729143,0.030104307457805]],[[0.067002892494202,-0.037069607526064,0.04636488109827],[0.023377425968647,0.045455798506737,-0.034970197826624],[-0.051793526858091,-0.018132109194994,-0.02522929571569]],[[-0.016306856647134,-0.011740060523152,0.030092028900981],[-0.011434162035584,0.01883645914495,0.011403150856495],[0.010004950687289,-0.013115206733346,-0.058294259011745]],[[0.12843592464924,-0.01869641058147,-0.043008483946323],[0.03964664414525,0.079652696847916,-0.029686806723475],[0.073525346815586,-0.0037711733020842,-0.0029908705037087]],[[-0.028397841379046,0.056055035442114,-0.014788360334933],[-0.050772350281477,-0.050226572901011,-0.044665396213531],[-0.042038038372993,0.0074686878360808,0.046880479902029]],[[-0.0011796116596088,0.053455404937267,0.022228265181184],[-0.046408984810114,-0.014306213706732,-0.050062101334333],[-0.016414899379015,-0.0073235714808106,0.0063723847270012]],[[0.028968442231417,0.055631879717112,0.0564982034266],[0.04664309322834,0.0039184782654047,-0.035078592598438],[-0.026412468403578,-0.062934376299381,0.038211792707443]],[[0.089175514876842,0.026075383648276,-0.079746626317501],[-0.012082109227777,-0.016135359182954,0.018096104264259],[0.02407312206924,-0.043418999761343,-0.0079599497839808]],[[-0.00089835998369381,-0.033171072602272,-0.05290812253952],[-0.03067409619689,-0.0027212807908654,-0.056676518172026],[-0.024624478071928,0.0095889223739505,0.10246086865664]],[[0.055350635200739,0.020953040570021,0.022357907146215],[-0.020132379606366,0.0071923425421119,0.0044614588841796],[-0.035158019512892,-0.11327324807644,0.039673246443272]],[[0.021442722529173,0.069398358464241,-0.0066067683510482],[-0.10712270438671,0.042335968464613,0.0071991416625679],[0.013546358793974,-0.018187275156379,0.02541222423315]],[[0.023859707638621,0.0079474141821265,0.025240128859878],[0.0016742862062529,0.0059813838452101,-0.0053741112351418],[0.021856108680367,-0.0058343899436295,0.0039676460437477]],[[-0.092598058283329,-0.04476810246706,0.035168301314116],[0.052650455385447,0.031275376677513,-0.066181868314743],[0.056964475661516,0.0024114712141454,0.023141356185079]],[[-0.087147630751133,-0.031350050121546,0.062510713934898],[-0.0040980102494359,0.052019964903593,0.039005506783724],[0.004067178349942,-0.047793578356504,0.054232835769653]],[[-0.068837396800518,-0.024287344887853,0.10197702795267],[0.00094457267550752,-0.017003580927849,-0.0019902565982193],[0.056089751422405,0.05394346639514,-0.012364830821753]],[[-0.012624789960682,-0.043808821588755,0.01664474606514],[-0.0024219793267548,-0.0212067887187,-0.014036201871932],[0.024129819124937,-0.064164839684963,0.06148124486208]],[[-0.00052949867676944,0.027530102059245,-0.084467589855194],[-0.024140512570739,-0.056275214999914,-0.023789661005139],[0.03652061149478,0.0252232439816,0.016523042693734]],[[-0.0034203834366053,-0.051978372037411,0.03089814260602],[0.024188559502363,-0.015030633658171,-0.024285400286317],[-0.014294065535069,0.0098648741841316,0.031228480860591]],[[-0.010330936871469,-0.02526861615479,-0.027739956974983],[-0.015368334949017,0.033082816749811,-0.084171749651432],[-0.049328461289406,-0.11386989802122,0.035580657422543]],[[0.030023222789168,-0.027922624722123,-0.014529781416059],[0.031013879925013,-0.0088695390149951,0.02312770485878],[-0.042472004890442,0.074735037982464,-0.039774149656296]],[[0.00091431540204212,0.022191563621163,-0.04164207354188],[0.048133943229914,0.047720707952976,-0.068144209682941],[-0.021750800311565,0.020808907225728,0.029194597154856]],[[0.045038305222988,0.08733095228672,0.013572477735579],[-0.059513062238693,0.04680360481143,-0.051360812038183],[0.019302040338516,0.059460744261742,0.013305895961821]],[[-0.050075568258762,0.0064438804984093,0.00072674703551456],[-0.034114997833967,-0.018265169113874,-0.0064394976943731],[-0.01896301843226,0.013243857771158,-0.07698930054903]],[[0.072957158088684,-0.046677485108376,0.05896282568574],[-0.040489081293344,-0.039120398461819,0.030420746654272],[0.0087165487930179,-0.03793091699481,0.030919052660465]],[[-0.025526223704219,0.0054638329893351,-0.03632390126586],[-0.054822336882353,-0.039000984281301,-0.033137232065201],[-0.12376856058836,-0.014069923199713,-0.052807435393333]],[[-0.058766849339008,-0.0035947284195572,0.012237102724612],[0.049122296273708,0.050745785236359,0.011627352796495],[0.043363824486732,-0.00473687145859,-0.0070954812690616]],[[-0.0072292285040021,-0.011924473568797,0.04507702589035],[0.024401796981692,-0.053812436759472,-0.056509848684072],[0.033004745841026,0.051357861608267,-0.024075550958514]],[[0.037573534995317,-0.043221812695265,0.0075338985770941],[0.032889597117901,-0.014849870465696,-0.063240483403206],[-0.024609779939055,0.027237694710493,-0.027235796675086]],[[0.038324344903231,-0.038269236683846,0.027726281434298],[-0.019588105380535,0.0098529495298862,-0.013747787103057],[-0.0041564209386706,-0.0098581928759813,-0.044178158044815]],[[-0.016354370862246,0.044751938432455,0.031396418809891],[-0.041705477982759,-0.0055674873292446,-0.0074005243368447],[0.049995172768831,-0.011008003726602,0.040677458047867]],[[0.087966658174992,0.086679972708225,0.091480225324631],[0.014989893883467,0.03194410726428,-0.084467709064484],[-0.0047783479094505,-0.062898769974709,0.061073038727045]],[[-0.10781993716955,0.0070035038515925,-0.038588296622038],[0.037113189697266,0.012021261267364,-0.044158451259136],[-7.4207171564922e-05,-0.0076984260231256,0.011520026251674]],[[0.027239374816418,-0.0018703020177782,-0.015488931909204],[0.03039631433785,-0.019528890028596,0.020168287679553],[-0.0093786977231503,0.037738725543022,0.002868372015655]],[[-0.0546132363379,0.0303909573704,0.05621450766921],[0.079276368021965,-0.0091444179415703,-0.032078616321087],[-0.0013580730883405,0.017502222210169,-0.0026470243465155]],[[-0.008242511190474,-0.0050542536191642,-0.07729809731245],[-0.065444000065327,0.045752990990877,-0.038244303315878],[0.0020108872558922,0.080395124852657,-0.033279146999121]],[[-0.034558784216642,-0.02213878184557,-0.041578847914934],[-0.030964314937592,-0.090062186121941,0.031064067035913],[0.028768992051482,0.11089757829905,0.0080885672941804]],[[-0.055490992963314,-0.035965863615274,0.074779376387596],[0.0226716902107,0.010773774236441,-0.084573566913605],[-0.016627609729767,-0.015531927347183,0.00081658887211233]],[[0.025693960487843,-0.0059980000369251,0.079722300171852],[-0.0061978148296475,-0.027886526659131,0.029969301074743],[0.015456823632121,-0.014495017006993,0.038542248308659]],[[0.00026864738902077,-0.043793756514788,-0.038778204470873],[-0.046633705496788,-0.027865927666426,0.0027069104835391],[0.062102913856506,0.020433763042092,-0.029208052903414]],[[-0.071983017027378,-0.022580362856388,-0.065582416951656],[0.038076795637608,-0.046140119433403,-0.01267222687602],[-0.0012027325574309,-0.0043477588333189,0.012104542925954]],[[-0.049696806818247,0.039406146854162,-0.04084512963891],[0.024558406323195,-0.047958470880985,-0.057700954377651],[-0.072231583297253,-0.016220944002271,0.020349379628897]],[[-0.017795089632273,-0.004021255299449,0.013459425419569],[0.081046856939793,-0.0095381010323763,-0.053503420203924],[0.00039791438030079,-0.068432375788689,-0.021701967343688]],[[-0.038752511143684,-0.0089210495352745,-0.014688440598547],[0.046308908611536,-0.028979344293475,0.011224213987589],[-0.024040749296546,0.03470578789711,-0.082895435392857]],[[0.0091104805469513,0.0033360577654094,-0.067623816430569],[-0.071049697697163,-0.018683258444071,0.037607654929161],[0.074722066521645,0.017978040501475,0.012974445708096]],[[-0.031752061098814,0.0063774394802749,0.064818225800991],[0.021423831582069,-0.0009107377845794,0.050263281911612],[-0.037171069532633,-0.034160550683737,0.036182731389999]],[[-0.043227601796389,0.026172401383519,0.027084819972515],[-0.12768043577671,-0.021441260352731,0.014956974424422],[-0.025729764252901,-0.013612430542707,0.026892635971308]],[[0.08992975205183,0.017921194434166,-0.033514551818371],[0.0052792294882238,0.025811869651079,0.030021714046597],[0.048456802964211,0.017039239406586,-0.16782569885254]],[[-0.023389533162117,-0.028964517638087,0.049759145826101],[-0.012819235213101,-0.01770881190896,-0.034608338028193],[0.015396903268993,-0.0261568762362,-0.010643783025444]],[[0.090522259473801,-0.025081371888518,-0.028176976367831],[0.059592064470053,0.035479586571455,-0.0041324635967612],[-0.027618451043963,-0.00020282457990106,-0.058754619210958]],[[0.054138604551554,-0.045691840350628,-0.020138682797551],[0.034396611154079,-0.020260140299797,-0.022943763062358],[0.065355844795704,-0.04032776877284,0.0035441699437797]],[[0.021075885742903,0.027887906879187,0.0080304173752666],[0.005603501573205,0.10004460066557,-0.035153560340405],[-0.033648628741503,0.0028867560904473,-0.0053695808164775]],[[0.033393476158381,0.035559993237257,-0.00032331584952772],[0.026788987219334,-0.073549017310143,0.041577883064747],[-0.079146131873131,-0.0075503843836486,-0.057544607669115]],[[0.042370829731226,-0.06622339785099,-0.021418824791908],[0.03224641084671,-0.0017926007276401,0.018023066222668],[0.058310098946095,-0.026615345850587,-0.061347354203463]],[[0.028941540047526,-0.056991927325726,0.045198623090982],[-0.062169317156076,-0.074708595871925,-0.0044647036120296],[0.0074434285052121,0.068543024361134,0.013460793532431]],[[0.025473531335592,0.019658030942082,0.032195702195168],[0.04558952152729,-0.026531985029578,0.033135253936052],[-0.025986263528466,0.032994106411934,-0.017234707251191]],[[0.039171051234007,0.043085034936666,0.015629170462489],[-0.0037556204479188,0.054412961006165,-0.041669987142086],[-0.014595341868699,-0.0034527641255409,0.01058661006391]],[[-0.042692761868238,-0.015268892981112,-0.020556788891554],[0.0040317894890904,-0.040401544421911,0.035914976149797],[-0.027567414566875,0.0075214472599328,0.070917509496212]],[[0.032022681087255,-0.005080820992589,0.077852018177509],[0.0093263741582632,-0.036090649664402,0.0052019678987563],[-0.04638846218586,0.076737262308598,-0.06509954482317]],[[-0.067004628479481,-0.018759351223707,-0.015722254291177],[-0.00771455001086,-0.012170877307653,0.064027324318886],[-0.018510319292545,0.025254864245653,0.025128191336989]],[[0.053928971290588,0.051010578870773,0.013234206475317],[0.016256552189589,0.067592561244965,0.020864024758339],[0.029273714870214,0.0020545262377709,0.0027022727299482]],[[-0.0094848936423659,-0.065697997808456,-0.042147766798735],[0.00097579363500699,0.0034752851352096,-0.036593373864889],[-0.0038799168542027,-0.0052944319322705,0.040666781365871]],[[-0.097789995372295,0.014792121946812,0.0083990655839443],[-0.0056184772402048,-0.026630191132426,-0.0064508500508964],[-0.045742835849524,0.040124572813511,0.020076788961887]],[[-0.00048193251132034,-0.040266089141369,-0.01530079357326],[0.08076436817646,0.0137476073578,0.055704563856125],[-0.0042526908218861,-0.046097032725811,-0.025851704180241]],[[0.039770592004061,-0.013707457110286,-0.015546911396086],[0.01678254455328,-0.0068958685733378,0.014183945953846],[0.071152076125145,-0.014861326664686,-0.010165056213737]],[[0.056719306856394,0.015342964790761,-0.05207534506917],[-0.050301983952522,-0.018977930769324,0.062636435031891],[0.058197110891342,0.049270994961262,0.033947091549635]],[[-0.026758635416627,0.0074092145077884,0.045440644025803],[-0.055611159652472,0.050769310444593,0.0068093128502369],[0.020494375377893,0.015290535986423,0.026848074048758]],[[0.062534369528294,0.031206863000989,0.0070373695343733],[-0.051574178040028,0.079091899096966,-0.059617012739182],[-0.068240106105804,-0.08598568290472,0.017674265429378]],[[-0.014601873233914,0.047359768301249,0.039121516048908],[0.0076555558480322,0.033193681389093,-0.018158262595534],[-0.036707453429699,0.042513515800238,0.039318189024925]],[[-0.027425289154053,-0.040494617074728,-0.048316333442926],[0.028026925399899,-0.040712729096413,-0.014018230140209],[-0.089680187404156,-0.0083830058574677,0.030872102826834]],[[-0.024903748184443,-0.017389474436641,0.0079871164634824],[-0.017365386709571,-0.034712050110102,0.04181307554245],[-0.018355628475547,-0.010463367216289,0.03807358071208]],[[-0.0061156842857599,-0.016017721965909,-0.047919873148203],[0.012696939520538,-0.0026295715942979,-0.012742326594889],[0.045790292322636,0.099865823984146,0.021960848942399]],[[-0.0033165195491165,-0.059890195727348,0.056669343262911],[0.012553783133626,-0.038163650780916,-0.10191123187542],[0.058467969298363,-0.0082235457375646,0.02412111312151]],[[-0.012479219585657,-0.006026188377291,0.033056486397982],[-0.00099277507979423,-0.049520742148161,-0.014173667877913],[-0.01109229400754,0.010093268938363,0.051043558865786]],[[0.033408150076866,-0.083884067833424,0.040628898888826],[-0.051234733313322,-0.0073963347822428,-0.04394843801856],[0.019794594496489,0.084402441978455,-0.030638912692666]],[[-0.032232671976089,-0.07297956943512,-0.0099649075418711],[0.042238615453243,-0.029766568914056,0.0089484341442585],[0.084785357117653,0.006637544836849,-0.016837377101183]],[[-0.023095566779375,0.016712289303541,0.074175916612148],[0.0091989599168301,0.044803146272898,0.035169567912817],[-0.032794341444969,0.015398042276502,0.0010935304453596]],[[-0.059598255902529,0.030454538762569,-0.028804015368223],[0.040717095136642,0.032805718481541,-0.013590238057077],[-0.017562093213201,-0.033799458295107,-0.04277428239584]]],[[[0.0037718217354268,0.085487395524979,0.0060592610388994],[-0.00085986632620916,0.01069069840014,-0.082743361592293],[0.1091940253973,0.031380105763674,0.072169311344624]],[[-0.059794206172228,0.023474501445889,-0.091326348483562],[-0.0014349011471495,0.008032669313252,0.057775661349297],[-0.0074812429957092,0.053428255021572,-0.130605712533]],[[0.0043779378756881,0.019837833940983,-0.040204342454672],[-0.11124561727047,-0.0041405851952732,0.0042821452952921],[-0.051510240882635,-0.038082957267761,0.04130981490016]],[[-0.0085519505664706,0.0083893751725554,-0.0025075033772737],[0.0082814814522862,0.0042800516821444,0.0036543463356793],[-0.0071801822632551,0.0013199181994423,0.11050519347191]],[[-0.044725801795721,-0.057385738939047,-0.034274205565453],[-0.049139406532049,0.057530250400305,0.094294361770153],[-0.038017224520445,-0.001022087992169,0.063785068690777]],[[0.033912062644958,0.036820996552706,0.06580213457346],[0.097908996045589,-0.0086449831724167,0.025058692321181],[0.036068771034479,0.0045417188666761,-0.012933289632201]],[[-0.022837096825242,0.065724030137062,-0.046460714191198],[-0.060874052345753,0.063084118068218,-0.068164885044098],[-0.0078366659581661,-0.039639469236135,0.0049515198916197]],[[0.034895643591881,-0.0043850634247065,0.073099538683891],[0.093770742416382,-0.041766040027142,0.072441302239895],[0.065010569989681,-0.0056043085642159,-0.10820335149765]],[[-0.073619239032269,-0.13817772269249,-0.044387567788363],[-0.03674953058362,0.0042405114509165,0.056440029293299],[0.039291456341743,0.080916605889797,0.027366273105145]],[[-0.0312674716115,-0.0012892823433504,0.017555514350533],[-0.0064109284430742,-0.03599339351058,-0.037141945213079],[0.068657487630844,-0.039387758821249,-0.046625901013613]],[[0.062831729650497,0.01079483050853,-0.0014464744599536],[-0.015771077945828,0.043081313371658,-0.080686673521996],[0.011370232328773,0.039357539266348,0.010627786628902]],[[0.027403105050325,-0.018090663477778,0.048079129308462],[-0.051243886351585,-0.010232044383883,-0.015296415425837],[0.049729205667973,0.075203955173492,-0.066292777657509]],[[0.17469203472137,-0.083106592297554,0.051074184477329],[0.0026709535159171,0.016588389873505,0.08973391354084],[-0.00097783177625388,0.088916644454002,-0.019051004201174]],[[-0.076585583388805,0.053307864814997,0.0098561905324459],[-0.024446073919535,0.055440202355385,-0.026031637564301],[-0.037436835467815,0.011840200982988,0.010261246934533]],[[0.016709474846721,-0.083080433309078,-0.067896775901318],[0.01065856590867,-0.032084945589304,0.034548986703157],[0.044335663318634,-0.0044573480263352,-0.037972707301378]],[[-0.04524052515626,-0.038953319191933,-0.019936723634601],[-0.0023065952118486,0.025441393256187,-0.008177931420505],[-0.041717078536749,0.073004491627216,-0.05268857255578]],[[-0.0038993409834802,0.027767825871706,0.069888405501842],[0.020382596179843,0.019338509067893,-0.084419652819633],[-0.02247634716332,0.014531728811562,0.081002794206142]],[[0.0098814480006695,0.023042051121593,-0.026212995871902],[-0.094632960855961,-0.070337355136871,-0.036594178527594],[-0.020711353048682,-0.054566316306591,0.0010547254933044]],[[-0.038106087595224,0.090898811817169,-0.073324672877789],[0.016184501349926,0.0065341326408088,0.048352602869272],[0.023112436756492,-0.0013433527201414,0.029263567179441]],[[0.020254420116544,0.047895587980747,-0.08994946628809],[0.035449150949717,0.033386569470167,0.012617629021406],[-0.0074583133682609,0.043086912482977,-0.022094342857599]],[[-0.032780401408672,-0.04558090493083,-0.0035143026616424],[0.0091927284374833,-0.038803592324257,0.10681857913733],[-0.012464979663491,-0.07422786206007,0.0046330778859556]],[[0.092886179685593,0.057122945785522,0.026107937097549],[0.033748492598534,0.085103638470173,0.042131382972002],[0.021480277180672,0.052994899451733,-0.0025443388149142]],[[-0.090402476489544,-0.039020545780659,-0.028456648811698],[0.12130878865719,-0.01726814173162,0.040508568286896],[-0.012642392888665,-0.12814040482044,0.022624157369137]],[[-0.091533415019512,0.016448775306344,-0.017225129529834],[-0.003135863924399,0.071035489439964,0.083432622253895],[-0.096915580332279,-0.084994368255138,-0.084262005984783]],[[0.11453434079885,-0.055331744253635,-0.023231046274304],[0.06415992975235,-0.028325131163001,0.041276410222054],[-0.010241067036986,0.013709598220885,0.014609286561608]],[[-0.010320203378797,-0.069995708763599,0.030360098928213],[0.01883009262383,0.034121382981539,0.040608193725348],[-0.0068628955632448,0.015292326919734,0.0039331400766969]],[[-0.047524940222502,0.039617408066988,0.1279524564743],[0.0045848493464291,-0.046193853020668,0.014752610586584],[-0.053279470652342,0.025216018781066,0.012069563381374]],[[-0.023723926395178,0.017627460882068,0.028952369466424],[-0.064512982964516,0.035044964402914,-0.0045539410784841],[0.032957524061203,-0.054816655814648,-0.007231489289552]],[[0.032266180962324,-0.026183422654867,-0.067555151879787],[-0.054399956017733,-0.01815365627408,0.07909569144249],[0.020614888519049,0.00052857369882986,0.033440314233303]],[[0.072798684239388,0.024749862030149,0.032801512628794],[-0.050124041736126,-0.054806109517813,0.051569204777479],[-0.016675274819136,-0.09742946177721,0.049875974655151]],[[0.02089892886579,0.095868788659573,-0.026406038552523],[-0.052525069564581,0.03895140811801,-0.0019123209640384],[-0.02124654315412,0.027105594053864,0.0059388065710664]],[[0.041665855795145,-0.04404104501009,-0.011913276277483],[-0.02952660433948,0.0067813452333212,0.0039424942806363],[0.00071078212931752,0.010183262638748,0.0044036004692316]],[[0.0037633255124092,0.038037065416574,-0.0001774354459485],[-0.038907621055841,0.15771181881428,-0.033148560672998],[0.11136777698994,0.088540464639664,0.088416509330273]],[[-0.00051511329365894,0.028417548164725,0.0038475012406707],[0.032722529023886,-0.024933133274317,0.0051331338472664],[0.013751494698226,-0.055927213281393,0.042865909636021]],[[-0.0028465113136917,-0.069314658641815,0.018914755433798],[-0.0015990294050425,0.03545630723238,0.016005447134376],[-0.031495869159698,-0.070171877741814,-0.024046085774899]],[[-0.11556089669466,0.046617023646832,-0.041621614247561],[-0.0090313022956252,0.060279194265604,-0.015818554908037],[0.010073219425976,0.040001533925533,0.045459199696779]],[[-0.05473018810153,-0.018258903175592,0.11127082258463],[-0.052380997687578,0.094607338309288,-0.082214772701263],[-0.058189570903778,-0.022647662088275,-0.068171553313732]],[[0.042203977704048,0.1107212677598,0.0011177056003362],[0.083061553537846,0.099656015634537,-0.066323719918728],[-0.010117578320205,0.0020176852121949,-0.054165404289961]],[[0.026145244017243,-0.089669033885002,-0.10914721339941],[-0.011868296191096,-0.055529315024614,-0.052169982343912],[-0.010247611440718,-0.04459186643362,0.014597363770008]],[[-0.040886268019676,0.062699735164642,-0.00014853321772534],[0.056682892143726,0.0094349663704634,-0.053069818764925],[-0.019042229279876,0.010709455236793,0.026913870126009]],[[0.021579811349511,0.038376022130251,-0.034456543624401],[0.00048541335854679,0.057624287903309,-0.047187462449074],[-0.031827352941036,-0.057517722249031,0.054003439843655]],[[0.0010094427270815,0.060834996402264,0.16642485558987],[0.048325512558222,0.029784556478262,0.048541136085987],[-0.020270131528378,-0.0072757373563945,0.10418064147234]],[[-0.0029874928295612,0.092375479638577,0.09753479808569],[0.1164814978838,0.063726618885994,-0.096554093062878],[0.037277419120073,-0.013736392371356,0.0002606114721857]],[[-0.019133325666189,-0.021029323339462,0.23620757460594],[0.0069659175351262,-0.13607840240002,0.00010148627188755],[-0.0081845503300428,0.0009027537307702,-0.052804335951805]],[[0.035496558994055,-0.04395417869091,0.047186329960823],[0.0036554085090756,0.031693693250418,0.034597836434841],[-0.021375045180321,0.029254639521241,0.050314735621214]],[[0.039239831268787,0.059783630073071,-0.049580499529839],[0.00081710208905861,-0.02097818814218,0.061023335903883],[0.069533757865429,0.13228110969067,-0.0091972975060344]],[[0.0011876608477905,-0.0032605740707368,-0.02490303479135],[0.021991021931171,-0.031048582866788,-0.026532938703895],[-0.04945232719183,0.00034679716918617,0.035000421106815]],[[-0.032471910119057,-0.064060769975185,-0.1407188475132],[-0.065582066774368,-0.091105110943317,-0.011706462129951],[-0.011385962367058,0.036495227366686,-0.12542530894279]],[[-0.016492802649736,-0.01690998673439,-0.051063898950815],[-0.020720129832625,-0.024773987010121,-0.025373071432114],[-0.036870699375868,0.064776867628098,-0.07819651812315]],[[-0.040127586573362,-0.035846527665854,-0.0087274936959147],[-0.045001402497292,-0.097040802240372,0.024738572537899],[0.056832209229469,-0.070115596055984,-0.073840118944645]],[[-0.016373569145799,-0.0041021895594895,0.038253001868725],[-0.018105404451489,-0.053233150392771,0.013120700605214],[-0.0037018535658717,0.017371447756886,0.051709596067667]],[[0.0068812253884971,-0.043993026018143,0.047045662999153],[0.0051960130222142,0.018272509798408,-0.063861601054668],[0.024200636893511,0.098254807293415,-0.00051770632853732]],[[-0.076903223991394,0.066665910184383,-0.003850354347378],[-0.043118093162775,0.0059985662810504,0.08244764059782],[0.084323734045029,-0.070392496883869,-0.065676175057888]],[[0.010427866131067,-0.0032856003381312,-0.073805272579193],[0.026031710207462,-0.029033599421382,0.081994004547596],[0.076934359967709,0.016382846981287,0.020953657105565]],[[0.043437741696835,-0.0096609191969037,-0.039247594773769],[-0.020891727879643,-0.0072187399491668,-0.0038558992091566],[0.021738758310676,0.0049605802632868,0.069776311516762]],[[0.010268063284457,0.022913575172424,0.035906258970499],[0.071983188390732,-0.095714017748833,0.0010106130503118],[0.046784348785877,0.061182223260403,-0.048399452120066]],[[0.037536006420851,0.031891260296106,0.057805817574263],[-0.064096130430698,0.079009383916855,-0.042930092662573],[0.0040502897463739,-0.014639505185187,0.041411694139242]],[[-0.018488137051463,-0.013901828788221,0.0082164024934173],[0.026369100436568,-0.010804799385369,-0.020196137949824],[0.02571053430438,-0.053439676761627,-0.012960431165993]],[[0.047268755733967,-0.053548097610474,0.023585623130202],[0.030044220387936,0.025506477802992,0.0088268937543035],[0.085948400199413,0.085141129791737,-0.051888026297092]],[[0.021097203716636,0.044028606265783,-0.041509374976158],[0.075651049613953,-0.012083682231605,0.055385954678059],[0.059869088232517,0.048592008650303,0.062081657350063]],[[0.094919383525848,0.014960910193622,0.057138539850712],[0.03742540627718,0.021255388855934,0.069797284901142],[-0.075593084096909,-0.0049064252525568,0.045593816787004]],[[-0.023126985877752,-0.064130574464798,-0.01274336874485],[-0.054010152816772,-0.066023357212543,-0.040030799806118],[-0.050886958837509,-0.063225097954273,-0.049896087497473]],[[0.011089791543782,-0.013649474829435,0.12020867317915],[-0.049642942845821,-0.018443182110786,-0.04935809597373],[0.0078484192490578,-0.065430670976639,0.097470588982105]],[[0.022559136152267,0.027221815660596,0.010794367641211],[0.092906773090363,-0.018987793475389,0.043847117573023],[0.06295307725668,0.066770605742931,0.030244598165154]],[[0.036564007401466,-0.0071795932017267,-0.0021156938746572],[-0.0032721785828471,0.094962663948536,-0.021833557635546],[0.13448703289032,0.08048453181982,-0.011214192956686]],[[0.07840433716774,-0.022052448242903,0.039381619542837],[0.10365819185972,0.020057519897819,0.019300347194076],[0.0086737144738436,0.037782367318869,-0.047387391328812]],[[0.069244876503944,-0.026963513344526,0.055053789168596],[-0.0084894318133593,-0.082954399287701,-0.051651511341333],[0.071466669440269,0.014578180387616,-0.05357064679265]],[[0.03506937250495,0.033693373203278,-0.066544257104397],[0.13894161581993,0.17246451973915,0.0683723539114],[0.0089130755513906,0.15542632341385,0.18752688169479]],[[0.016101894900203,0.08466100692749,-0.095525838434696],[0.0011096830712631,-0.017779989168048,-0.036662913858891],[-0.019180590286851,0.037733744829893,-0.0093257408589125]],[[0.030996520072222,-0.0075787361711264,-0.045450028032064],[-0.012541427277029,0.068511255085468,0.12078455835581],[0.038942705839872,-0.027766406536102,0.063624925911427]],[[0.038664158433676,-0.01320986635983,-0.074529156088829],[0.043210498988628,0.053885776549578,0.12871438264847],[-0.013142116367817,-0.024408482015133,0.046670358628035]],[[0.0044474392198026,-0.093300059437752,0.090821124613285],[-0.05233321711421,-0.080479368567467,-0.058900441974401],[0.047344781458378,0.055946379899979,0.044472377747297]],[[-0.020335188135505,0.0032732400577515,0.013556377030909],[0.032104529440403,-0.032707508653402,-0.011272246949375],[-0.032955151051283,-0.027582995593548,0.025722892954946]],[[0.035689368844032,0.08895668387413,0.015218985266984],[-0.086718872189522,-0.038979023694992,-0.0050242245197296],[0.063003875315189,0.035767659544945,-0.04170198366046]],[[-0.0013189079472795,0.010584755800664,-0.017305973917246],[-0.010602443479002,-0.0095538562163711,0.01679652556777],[-0.019270122051239,0.12139142304659,-0.0019454301800579]],[[-0.049386281520128,-0.024073088541627,0.026456346735358],[0.012355359271169,0.036877334117889,0.053312212228775],[0.0030263531953096,-0.07192251086235,0.07598140090704]],[[-0.021053750067949,0.048408072441816,0.057626478374004],[-0.0021520110312849,0.0023234349209815,-0.042382448911667],[0.017851153388619,-0.015226799063385,0.017626898363233]],[[0.12027201801538,0.010644821450114,0.10545674711466],[0.0091686425730586,-0.059585187584162,0.052870165556669],[0.04945744946599,-0.07134223729372,0.034997206181288]],[[0.011970506049693,-0.015708450227976,-0.038291618227959],[-0.0037479775492102,8.3120161434636e-05,0.053611792623997],[-0.064481869339943,0.037880178540945,0.15419383347034]],[[0.012147911824286,-0.024275785312057,0.042470496147871],[-0.0041865240782499,-0.050877522677183,-0.0040158955380321],[-0.074208252131939,-0.079345710575581,-0.05876162648201]],[[0.045092027634382,0.014215532690287,-0.013727218843997],[0.019556399434805,-0.034452721476555,0.015300210565329],[-0.069745607674122,-0.020953424274921,0.05267534032464]],[[-0.0090979477390647,0.036634728312492,0.079223245382309],[0.042828738689423,0.019990105181932,-0.0030513016972691],[0.087628081440926,0.017128080129623,0.0078582148998976]],[[0.092242255806923,-0.020843736827374,-0.10130251199007],[0.032626897096634,-0.08049564063549,0.020681723952293],[0.008296636864543,-0.056887999176979,0.04406450688839]],[[0.018386259675026,-0.072750896215439,-0.029113413766026],[0.035824608057737,0.046354193240404,0.019920969381928],[0.025692977011204,0.065807491540909,-0.063865102827549]],[[0.094469487667084,-0.010053393431008,0.072547420859337],[0.0019024618668482,0.028467917814851,0.023931615054607],[0.041686791926622,-0.025247853249311,-0.0041211121715605]],[[0.0025438077282161,0.022484058514237,0.037330746650696],[-0.091727524995804,-0.077211514115334,-0.016390763223171],[-0.049237962812185,-0.031219193711877,-0.01732312887907]],[[-0.018294736742973,0.080189123749733,-0.059521943330765],[-0.0279291998595,-0.0033064384479076,-0.025935044512153],[-0.011684387922287,0.013599280267954,0.077004887163639]],[[-0.024107096716762,-0.018830271437764,0.020453045144677],[0.0022221424151212,-0.11203088611364,-0.0080007407814264],[0.034491006284952,-0.032644525170326,0.099826134741306]],[[0.070057094097137,-0.018091924488544,0.059976872056723],[0.020467298105359,0.015244393609464,0.032990779727697],[0.075905047357082,0.062810160219669,0.010007140226662]],[[-0.013045650906861,-0.027355479076505,0.041497729718685],[-0.007873548194766,-0.021583050489426,0.061051551252604],[-0.06571314483881,0.030946718528867,0.082135811448097]],[[-0.019145872443914,0.091533437371254,0.015952810645103],[0.06566546857357,-0.058002114295959,0.072026059031487],[-0.06483306735754,0.14853292703629,0.2112418115139]],[[-0.041779659688473,0.02577037923038,0.035662665963173],[-0.11109352111816,0.013928961008787,0.029735166579485],[-0.0019723677542061,0.031548820436001,-0.0014787103282288]],[[0.0062995357438922,-0.058496717363596,-0.052215568721294],[-0.072707049548626,0.060673762112856,0.035104036331177],[-0.019541973248124,0.0099440505728126,0.025900574401021]],[[0.022790849208832,-0.018536183983088,-0.01727594062686],[0.04210551828146,-0.031076766550541,0.086364224553108],[-0.017717396840453,0.023828057572246,0.02355139516294]],[[-0.047997988760471,-0.038159117102623,-0.028489302843809],[-0.015978200361133,-0.044520918279886,0.042635194957256],[-0.043488271534443,-0.048225808888674,0.062410555779934]],[[0.032209552824497,0.041944831609726,-0.14702039957047],[-0.016571328043938,-0.021531756967306,0.034736581146717],[0.00010381887841504,0.0019329802598804,0.011745860800147]],[[-0.030187642201781,0.078235186636448,-0.041884567588568],[0.016248682513833,-0.037218883633614,-0.037744827568531],[-0.03023031167686,0.016408514231443,-0.066140107810497]],[[-0.038881219923496,0.0035335912834853,-0.0050277072004974],[0.066724233329296,0.042812157422304,0.051038093864918],[0.097422763705254,0.0046547655947506,0.010189147666097]],[[-0.12525354325771,0.021277574822307,0.0027624638751149],[-0.073252022266388,-0.14184077084064,-0.058490019291639],[0.0034109493717551,0.038302268832922,0.12599651515484]],[[-0.0046425317414105,0.020741494372487,-0.014153963886201],[0.047844428569078,-0.034665927290916,0.026625340804458],[-0.0054105566814542,0.008079407736659,-0.10558656603098]],[[-0.01864299364388,0.0094366418197751,-0.01549478340894],[0.067551791667938,-0.042209610342979,-0.006934407632798],[-0.022562263533473,-0.041120123118162,-0.014842133969069]],[[-0.048085808753967,0.068240076303482,0.001720285625197],[-0.0025463216006756,0.043886765837669,0.00014065287541598],[0.0097046252340078,0.0057182707823813,0.011594421230257]],[[-0.012744346633554,-0.037576716393232,0.0018802947597578],[0.050444293767214,0.026398483663797,0.032000508159399],[0.024302845820785,0.078767754137516,-3.9100006688386e-05]],[[-0.13256375491619,-0.036008361726999,-0.0022397625725716],[-0.057199828326702,-0.0043211947195232,-0.061478860676289],[-0.0069309151731431,-0.027759168297052,-0.002777008805424]],[[-0.089287057518959,-0.011672073975205,-0.013070864602923],[0.0012026668991894,-0.046836707741022,0.062998369336128],[0.04668889939785,0.030213745310903,-0.046283107250929]],[[-0.0026136976666749,0.044016510248184,0.029768761247396],[0.033723462373018,-0.0019363195169717,-0.019164966419339],[-0.076709650456905,0.047233767807484,0.02445755712688]],[[0.087277360260487,0.016446193680167,0.029083909466863],[0.015990929678082,-0.058696787804365,0.075701840221882],[0.056093472987413,0.038722757250071,-0.095429204404354]],[[-0.016104251146317,-0.0016940175555646,0.074624128639698],[0.089460529386997,0.047995150089264,0.0047571775503457],[0.011908142827451,-0.056783091276884,0.035448741167784]],[[0.0021478803828359,-0.057514753192663,-0.027947947382927],[0.018215078860521,-0.062497992068529,-0.061312135308981],[-0.02808466181159,0.0056695868261158,-0.064576923847198]],[[-0.043371822685003,0.0073729301802814,-0.011285845190287],[0.018094586208463,0.0058059385046363,0.096417084336281],[0.022952193394303,0.01797154173255,-0.019251849502325]],[[0.088357023894787,-0.011809661984444,-0.058691099286079],[-0.0549709610641,0.012182008475065,0.076728194952011],[-0.081020936369896,0.050086628645658,-0.015465109609067]],[[-0.006730092689395,-0.052483722567558,-0.085513271391392],[0.0036179632879794,0.011887785047293,-0.068670988082886],[-0.12625095248222,-0.046162206679583,-0.0064736353233457]],[[-0.079552516341209,-0.081168800592422,0.014503905549645],[-0.068277478218079,-0.032188702374697,-0.056335065513849],[-0.0087497066706419,-0.078715749084949,0.033877395093441]],[[-0.069320753216743,-0.094270154833794,0.011390119791031],[-0.10699446499348,-0.037570014595985,0.14187183976173],[0.040419012308121,-0.047751121222973,0.015302295796573]],[[0.012067823670805,-0.072869628667831,0.042029172182083],[-0.019962649792433,0.050015266984701,0.05040268227458],[0.038578193634748,0.056271471083164,-0.090693421661854]],[[-0.075601696968079,0.10310927778482,0.0053274319507182],[-0.028319558128715,-0.085196636617184,0.01688215136528],[-0.073111087083817,-0.037419028580189,-0.052094366401434]],[[0.10870788991451,0.0014315048465505,0.035222608596087],[0.030002918094397,0.0059692421928048,-0.021036960184574],[0.028678761795163,0.030663784593344,0.01140571013093]],[[0.10201961547136,-0.058820571750402,-0.061706434935331],[0.024354884400964,-0.045300159603357,-0.14163239300251],[-0.025594957172871,0.037459917366505,-0.067195564508438]],[[-0.054919317364693,-0.027253055945039,-0.028731618076563],[0.024540521204472,0.00014987283793744,0.024269508197904],[-0.080875247716904,0.0084537034854293,0.02359551563859]],[[0.097249507904053,-0.016909359022975,0.069613240659237],[-0.0072587840259075,0.036278173327446,-0.0087853418663144],[0.13661606609821,-0.072854027152061,-0.039965156465769]],[[0.01651112921536,0.035764466971159,-0.015632605180144],[-0.047304324805737,-0.069462463259697,-0.014757848344743],[-0.069286704063416,-0.0033602276816964,-0.0095362290740013]],[[-0.042197827249765,-0.012957798317075,0.033047407865524],[-0.017618533223867,-0.0021911652293056,-0.063905246555805],[-0.044017437845469,0.020621232688427,0.025548486039042]],[[-0.064164333045483,-0.043199278414249,-0.018289091065526],[-0.042422037571669,-0.013715171255171,-3.5020471841563e-05],[0.028440935537219,0.0080739948898554,0.0080718593671918]],[[0.05984116718173,0.038620453327894,-0.0076533164829016],[0.034567672759295,-0.025507159531116,0.020850045606494],[0.04735342040658,0.015075419098139,-0.082452423870564]],[[-0.064526334404945,0.085347905755043,0.064557477831841],[0.0080397156998515,0.05973357707262,-0.022830275818706],[0.016735188663006,0.013329203240573,-0.062355428934097]],[[0.011626443825662,0.094465047121048,-0.062444776296616],[-0.063825204968452,-0.025778954848647,0.013918409124017],[0.039795726537704,-0.060678493231535,-0.038226313889027]],[[0.073553375899792,0.082526549696922,-0.066140785813332],[-0.0031048303935677,-0.023037908598781,0.041947696357965],[-0.010863102972507,0.055699802935123,-0.064807236194611]],[[-0.047640834003687,0.0088772838935256,0.0010494801681489],[0.10747914016247,-0.082674540579319,0.01918626204133],[0.012322584167123,0.074758872389793,0.0085304165259004]]],[[[-0.058768853545189,0.037409376353025,-0.039321929216385],[0.046109206974506,-0.052213039249182,0.04909947887063],[0.015186652541161,0.022998178377748,0.091201350092888]],[[-0.088477335870266,0.057328201830387,-0.011875249445438],[-0.011842360720038,-0.052357129752636,-0.02707744948566],[-0.0035946741700172,-0.021085942164063,0.02541140280664]],[[0.019814059138298,0.03525223955512,-0.0047880173660815],[-0.010184987448156,0.013925861567259,0.022949974983931],[-0.024679746478796,-0.013020547106862,-0.026415534317493]],[[0.006621927022934,-0.017849821597338,0.043479014188051],[-0.062663175165653,-0.01480582728982,0.0065442039631307],[-0.042148821055889,0.0070791272446513,0.053483132272959]],[[0.042094264179468,-0.024127887561917,0.0037114259321243],[0.024881826713681,-0.042370617389679,-0.018013698980212],[-0.045288510620594,-0.0064900214783847,-0.061053894460201]],[[-0.033515732735395,0.023987889289856,-0.058790937066078],[-0.016334360465407,-0.037790853530169,-0.019334673881531],[-0.039346091449261,-0.056536868214607,0.029165368527174]],[[0.015767801553011,-0.0027057721745223,0.091934390366077],[0.025871282443404,-0.0045298459008336,-0.0086234081536531],[-0.10419970750809,0.015397286042571,0.0067638410255313]],[[0.020246153697371,0.011745536699891,0.013382787816226],[-0.031749922782183,0.014392225071788,0.0012832983629778],[-0.034783624112606,0.013825322501361,-0.044952999800444]],[[-0.065128542482853,-0.043561957776546,-0.012527416460216],[0.041450753808022,0.020478267222643,-0.065139405429363],[-0.10661927610636,-0.033167961984873,0.04943323135376]],[[0.020235052332282,0.0073694544844329,0.028282463550568],[-0.04743417724967,-0.037088520824909,0.043161112815142],[-0.058917511254549,-0.059833709150553,-0.042475894093513]],[[-0.076085932552814,0.0061324164271355,0.049751337617636],[-0.0056690541096032,0.012970763258636,0.021497460082173],[-0.005248396191746,0.072411328554153,-0.048887327313423]],[[0.025722991675138,-0.016791487112641,-0.0083653442561626],[-0.0012883415911347,-0.022972293198109,0.005556607618928],[-0.00078339868923649,0.029382672160864,-0.011178196407855]],[[-0.011873909272254,0.092442639172077,0.01020189281553],[0.035636518150568,-0.0063169528730214,-0.0134680531919],[0.029304744675756,-0.026958893984556,-0.046566311269999]],[[0.043350040912628,-0.041523866355419,-0.0085916202515364],[0.039586927741766,-0.0088167134672403,-0.038346111774445],[-0.011024543084204,0.015324052423239,-0.021682221442461]],[[0.059876073151827,-0.031675823032856,0.049192119389772],[0.021664729341865,-0.062414325773716,0.020523699000478],[0.040112920105457,0.032092347741127,0.0066535696387291]],[[-0.018630938604474,0.031721346080303,0.072604417800903],[0.038191631436348,0.063629165291786,-0.035520479083061],[0.017852170392871,0.045227248221636,-0.019079580903053]],[[0.11562824994326,-0.013137573376298,-0.017808204516768],[-0.037702929228544,0.0087073259055614,-0.041278604418039],[0.079654552042484,0.0046440088190138,0.02219364233315]],[[-0.090753190219402,0.023777958005667,0.033570069819689],[-0.023154465481639,-0.024277688935399,-0.016499696299434],[-0.10498430579901,-0.059711668640375,0.060063954442739]],[[0.0037453742697835,-0.011656224727631,-0.035993687808514],[-0.021151402965188,-0.031806219369173,0.066919952630997],[0.0054283137433231,-0.025335039943457,0.00011444847041275]],[[0.022097688168287,0.0067184926010668,-0.019763706251979],[-0.068456746637821,-0.0083612641319633,0.038815405219793],[-0.0036233745049685,0.0013477224856615,0.0024160121101886]],[[0.018677175045013,-0.02016737870872,-0.0069252466782928],[0.00084193184738979,-0.010388209484518,-0.0083877518773079],[0.0026507042348385,0.0069773811846972,-0.0061413305811584]],[[0.064541131258011,0.035869788378477,0.066044330596924],[0.019278399646282,0.012731562368572,-0.044345006346703],[0.056977789849043,0.064271911978722,0.0053138518705964]],[[0.030626343563199,-0.13172461092472,0.0092914057895541],[-0.081527277827263,-0.098752342164516,-0.03353176638484],[0.033510342240334,-0.0053080054931343,0.055716749280691]],[[-0.0058039142750204,0.010361480526626,0.053489439189434],[-0.021513324230909,-0.02341016754508,0.055353976786137],[0.039427127689123,0.035077910870314,-0.0068794158287346]],[[-0.053197141736746,0.010821951553226,0.038584157824516],[0.050013530999422,0.0037498755846173,0.066842570900917],[-0.012702484615147,0.015635764226317,-0.011227402836084]],[[0.050149481743574,-0.013664201833308,0.05140732973814],[-0.025793362408876,-0.01501589268446,-0.021749814972281],[-0.046892147511244,-0.066550806164742,-0.022320576012135]],[[0.026581114158034,0.10721393674612,-0.0026809968985617],[0.067006997764111,-0.021940717473626,0.073675192892551],[0.049926873296499,0.071803413331509,-0.020916206762195]],[[-0.0093877017498016,-0.054845150560141,-0.036842044442892],[0.0059768450446427,-0.014913166873157,0.032115705311298],[-0.070549987256527,-0.0045820232480764,0.048233136534691]],[[-0.037348087877035,-0.10654058307409,-0.073268435895443],[0.039561226963997,-0.00060933490749449,0.0035936944186687],[-0.0023169168271124,0.022774741053581,0.034161910414696]],[[-0.099700681865215,-0.053314067423344,0.010124219581485],[-0.08550038933754,-0.013293204829097,-0.0047748629003763],[-0.00044952219468541,-0.062336847186089,-0.019157718867064]],[[-0.077791310846806,0.019768023863435,-0.038422215729952],[0.029702041298151,0.035782050341368,0.032116517424583],[0.0013330186484382,0.0001994950871449,-0.031466901302338]],[[-0.0057095945812762,0.008879036642611,0.019273553043604],[0.061774656176567,-0.0063984752632678,0.065889909863472],[0.035077024251223,-0.00017349580593873,-0.072688214480877]],[[0.069027692079544,0.035023771226406,0.0038122867699713],[-0.0080909701064229,-0.021385969594121,0.044794533401728],[0.038355477154255,-0.019799459725618,-0.05291198566556]],[[0.057086389511824,0.034196097403765,-0.0163987390697],[0.046532079577446,0.038541626185179,0.0063366889953613],[0.0022766701877117,0.03985109180212,-0.04365087673068]],[[0.033458545804024,0.037446476519108,0.0249083340168],[0.1109816133976,-0.011913300491869,-0.0015931556699798],[-0.075495041906834,-0.026310814544559,-0.070441126823425]],[[-0.043423276394606,-0.019356358796358,0.013948983512819],[-0.029509792104363,-0.0099097108468413,0.022938726469874],[0.024143172428012,-0.035663370043039,0.059393640607595]],[[-0.00017038721125573,-0.0079795978963375,0.098400503396988],[-0.018490808084607,0.0025948411785066,0.036076784133911],[0.020075699314475,-0.052338674664497,0.024726919829845]],[[-0.0043976996093988,0.016906566917896,-0.0006521157338284],[-0.036661416292191,0.0090056285262108,-0.036683186888695],[0.076612830162048,-0.036872614175081,0.038635708391666]],[[-0.047196581959724,-0.0080541260540485,0.010686401277781],[-0.0047964509576559,-0.039477534592152,-0.076156057417393],[0.078228153288364,-0.058435048907995,-0.031923979520798]],[[-0.13414087891579,-0.027935951948166,0.060943990945816],[-0.0057483995333314,-0.025596011430025,0.052363913506269],[-0.015021542087197,0.024716982617974,0.029943883419037]],[[-0.043950941413641,0.086779110133648,-0.029090719297528],[0.039948750287294,0.062760278582573,-0.0087779788300395],[0.00063578353729099,0.054029982537031,-0.023888684809208]],[[0.055923983454704,-0.061659850180149,-0.0072583043947816],[0.073889791965485,0.02688997797668,0.010187615640461],[0.047607980668545,-0.03385804221034,0.056584157049656]],[[0.033996101468801,0.038144692778587,0.0056049111299217],[-0.029668400064111,0.061749815940857,0.095130324363708],[0.080309875309467,-0.0096627352759242,0.049308132380247]],[[-0.018131159245968,-0.011369965039194,0.0077631534077227],[0.037781830877066,0.041417349129915,0.018373670056462],[0.00086310767801479,0.019693179056048,-0.019563829526305]],[[0.047713134437799,0.017724877223372,-0.0056034652516246],[0.011227743700147,0.050464410334826,0.02450954541564],[-0.046837631613016,-0.002753441920504,-0.013167968951166]],[[-0.017932314425707,0.025815155357122,0.011418960988522],[-0.024642737582326,0.024434352293611,0.061975546181202],[0.069610767066479,0.003556513460353,0.07854101061821]],[[0.065068237483501,-0.022930508479476,-0.030765747651458],[0.023540770635009,0.017256220802665,-0.012183882296085],[0.007490610703826,0.091097958385944,-0.029794882982969]],[[-0.023342432454228,-0.063445955514908,-0.027283200994134],[0.0085303569212556,-0.03854251280427,-0.050994325429201],[0.0043609701097012,-0.013950638473034,-0.074018448591232]],[[0.051570620387793,0.048562109470367,-0.00080362276639789],[0.014544609934092,-0.0073452242650092,-0.012789932079613],[-0.0055553722195327,0.041196584701538,0.029116069898009]],[[-0.028705831617117,0.015686355531216,-0.025635130703449],[-0.029273184016347,0.0089081209152937,-0.060723505914211],[0.0068948306143284,-0.014006865210831,-0.087126277387142]],[[-0.0069856527261436,0.046123202890158,-0.05369059741497],[0.058907866477966,-0.053025986999273,-0.02839201502502],[-0.00055326812434942,0.048151057213545,0.025295177474618]],[[0.001003795186989,0.013509415090084,-0.035793751478195],[-0.056534692645073,-0.0072258613072336,-0.059738550335169],[0.087522886693478,0.0059131262823939,0.041869275271893]],[[-0.023400338366628,-0.029513642191887,0.020008366554976],[-0.036243855953217,-0.018097646534443,-0.01949536986649],[-0.074542053043842,-0.012233419343829,-0.008275618776679]],[[0.033082731068134,0.032565049827099,-0.017405377700925],[0.019380491226912,0.050591051578522,-0.0073925042524934],[-0.036749128252268,0.061153341084719,0.032256714999676]],[[0.052553042769432,0.017948882654309,-0.012055923230946],[-0.017842788249254,-0.022112416103482,0.04148468002677],[-0.10322424769402,0.044370345771313,-0.050945818424225]],[[0.046450775116682,0.080509066581726,0.044216949492693],[0.038923043757677,0.01336810644716,0.026848891749978],[-0.0096917143091559,0.033380962908268,-0.044645056128502]],[[0.050075873732567,0.086955942213535,0.018660081550479],[0.050432574003935,-0.050664588809013,0.025201799347997],[-0.0078669730573893,0.010162965394557,0.013574046082795]],[[0.052752241492271,0.017511701211333,-0.047686390578747],[-0.063035249710083,0.018244158476591,0.025458408519626],[-0.068497590720654,-0.080034255981445,-0.010946406051517]],[[-0.0088251000270247,0.020831488072872,0.070605024695396],[0.0076020108535886,-0.054008007049561,-0.010839084163308],[-0.055110085755587,-0.049482308328152,0.051716808229685]],[[0.020007045939565,0.0087774563580751,-0.10088232904673],[0.036087781190872,-0.048532523214817,-0.0068030077964067],[0.025926331058145,-0.018736371770501,0.0098515953868628]],[[0.026203669607639,-0.0086252363398671,-0.037846438586712],[-0.018296780064702,0.010621859692037,-0.021592263132334],[-0.046185128390789,-0.030002746731043,-0.03732093423605]],[[-0.0013628182932734,0.029362166300416,-0.037946198135614],[-0.0018779523670673,-0.071262054145336,-0.018511164933443],[0.0072578834369779,0.063202381134033,0.04539218172431]],[[0.039704088121653,-0.024095268920064,-0.016057362779975],[0.05283185839653,-0.011593290604651,0.025883045047522],[0.006439910735935,-0.056611992418766,0.037904221564531]],[[0.080205164849758,0.057374387979507,-0.0090787960216403],[0.064809828996658,0.074727386236191,-0.085760042071342],[0.031076727434993,-0.019429078325629,0.048156104981899]],[[-0.070093773305416,0.050949659198523,-0.026229912415147],[-0.019376646727324,0.025120045989752,0.0071812169626355],[0.002545244526118,0.025801289826632,-0.023867473006248]],[[-0.019056065008044,-0.047091215848923,-0.031285293400288],[0.026985917240381,0.033812765032053,-0.019486591219902],[-0.0057826633565128,-0.01080413069576,-0.039589714258909]],[[-0.013147187419236,-0.054565656930208,0.038434121757746],[0.068421646952629,0.0075541553087533,0.020490895956755],[-0.071909934282303,0.01074737124145,-0.022949930280447]],[[0.026790587231517,-0.073229655623436,-0.040399290621281],[0.10376480966806,0.036443531513214,0.051148429512978],[-0.023501643911004,-0.0063896123319864,-0.0063522630371153]],[[0.049538809806108,-0.01581659168005,0.022712038829923],[0.01161883585155,0.014798815362155,0.11629988998175],[-0.02638285793364,-0.026348941028118,-0.016196317970753]],[[-0.083253540098667,0.015271014533937,0.040938928723335],[-0.046979662030935,-0.0226811747998,0.010184942744672],[-0.082400791347027,-0.090107858181,-0.024286644533277]],[[0.019549377262592,-0.029771793633699,-0.044653993099928],[-0.0072538801468909,0.016738574951887,0.035339049994946],[-0.0033252667635679,-0.028713515028358,0.017130590975285]],[[0.051986083388329,0.019056083634496,0.021667595952749],[-0.028280649334192,0.009110614657402,0.029853414744139],[-0.021433781832457,0.00030339724617079,-0.011887266300619]],[[0.00091790652368218,-0.037844385951757,-0.058292631059885],[-0.083636730909348,0.034194342792034,-0.10301411151886],[0.021390805020928,0.0034635064657778,-0.015714950859547]],[[0.005537033546716,-0.02468528598547,-0.046069398522377],[0.022668704390526,-0.0060507161542773,-0.026787895709276],[-0.063267104327679,0.042300470173359,0.0087198447436094]],[[0.005311390850693,-0.036911442875862,0.052818261086941],[0.030986627563834,0.045723732560873,0.0251992829144],[-0.012262620963156,-0.015468133613467,0.05025515332818]],[[-0.0059046889655292,0.017362166196108,-0.014445426873863],[-0.019951513037086,-0.050094395875931,-0.069892704486847],[0.086557060480118,-0.01514745131135,0.0065640085376799]],[[-0.0032497167121619,-0.0056552370078862,-0.0086718974635005],[-0.041148833930492,-0.015398356132209,0.052890937775373],[-0.022497236728668,0.045926440507174,-0.049086634069681]],[[0.026160474866629,0.04707869514823,0.007542320061475],[0.083765998482704,0.021400297060609,0.040624219924212],[0.030140494927764,0.035810023546219,0.058623135089874]],[[0.010584798641503,-0.04100289195776,0.022306799888611],[0.02284961566329,-0.030992191284895,-0.014114584773779],[0.054143846035004,0.055056255310774,0.031120231375098]],[[0.0037359870038927,-0.005089033395052,-0.028256233781576],[0.075950711965561,0.069320961833,0.032719239592552],[0.051950499415398,-0.0055117546580732,0.07321921736002]],[[0.030253538861871,-0.051280207931995,-0.028185892850161],[0.0047076023183763,0.004977676551789,-0.016809493303299],[-0.0027538849972188,0.00204470125027,-0.026593564078212]],[[0.017429679632187,0.021115448325872,0.035601168870926],[0.0032442002557218,0.026394737884402,0.039754312485456],[0.019662693142891,0.083759739995003,0.01528104301542]],[[0.0098924012854695,0.010550018399954,0.013196888379753],[-0.064673632383347,-0.005300301592797,0.027690740302205],[0.044565822929144,0.013259816914797,0.038827434182167]],[[0.0037945297081023,0.029378551989794,-0.0073626125231385],[-0.017807541415095,-0.0045634247362614,0.066542074084282],[0.042708750814199,0.026224616914988,0.025021970272064]],[[0.053401757031679,0.0012367715826258,0.098750419914722],[-0.044769730418921,-0.0057865288108587,-0.0050384206697345],[0.0087858624756336,-0.035604994744062,0.020975543186069]],[[0.095474898815155,-0.011792302131653,0.0024767641443759],[0.019004192203283,0.035442143678665,0.010541047900915],[-0.07853177189827,0.052821800112724,0.023540934547782]],[[-0.028285278007388,0.011538071557879,0.0160913746804],[0.10972678661346,0.05540855973959,0.067756228148937],[0.032209292054176,0.02414907515049,0.017254274338484]],[[-0.019237305969,-0.031219897791743,0.092146426439285],[0.0034760464914143,0.018791073933244,0.00089820846915245],[0.045265041291714,-0.0093447305262089,0.092722818255424]],[[0.022925155237317,-0.023980366066098,0.023015577346087],[0.010146831162274,0.058760095387697,0.080354727804661],[-0.033414661884308,0.065955810248852,0.07270573079586]],[[-0.031842723488808,0.091622449457645,0.016551155596972],[0.0044906074181199,0.0052694855257869,-0.039557348936796],[0.029265535995364,0.03886641561985,0.0025259745307267]],[[-0.038612555712461,-0.02305755764246,-0.059000238776207],[0.055739901959896,0.072763450443745,-0.060924123972654],[0.05424615368247,-0.010527452453971,-0.069428205490112]],[[0.015932692214847,0.011202468536794,-0.013814839534461],[0.0054562101140618,0.032714791595936,-0.025889599695802],[-0.033855177462101,0.0074325641617179,-0.016440721228719]],[[-0.064253032207489,0.11479450762272,0.0059860157780349],[-0.052535876631737,0.058187112212181,-0.021869963034987],[-0.098418734967709,0.022652516141534,0.035282906144857]],[[0.013321069069207,-0.013118766248226,0.019999196752906],[0.048686902970076,-0.038863148540258,0.009138154797256],[0.004664046689868,0.012630553916097,0.04211712628603]],[[-0.050321117043495,0.0098377950489521,-0.0069143744185567],[-0.006690741982311,0.019068460911512,0.065696947276592],[-0.015356315299869,-0.024518376216292,-0.002941912971437]],[[0.011405942030251,-0.01241893414408,0.050137355923653],[-0.00084684393368661,0.021434245631099,0.051700096577406],[0.093499481678009,0.038222264498472,-0.019507180899382]],[[-0.048291720449924,0.010617785155773,-0.059358295053244],[0.057976067066193,0.06304657459259,0.072381004691124],[0.0091693000867963,0.078611515462399,-0.096641816198826]],[[-0.039176844060421,0.021403493359685,0.078256644308567],[0.016336768865585,0.070042937994003,0.033338308334351],[0.018568269908428,0.034329060465097,-0.013948484323919]],[[0.026086140424013,0.0015121486503631,-0.00079208181705326],[0.012424192391336,0.038507368415594,0.017048204317689],[-0.0081945834681392,0.006286340765655,0.074364461004734]],[[-0.010297582484782,0.038908883929253,-0.041634645313025],[0.042688723653555,-0.0090856226161122,-0.032717492431402],[-0.0021887733601034,-0.016709914430976,-0.010002285242081]],[[0.025719596073031,-0.040572330355644,0.033483721315861],[0.059195954352617,-0.016007296741009,-0.022815426811576],[0.099657624959946,0.024930875748396,-0.026866007596254]],[[-0.0059565147385001,-0.057738095521927,0.08011107891798],[0.018067101016641,0.046992745250463,-0.023614812642336],[0.034702837467194,-0.0470863096416,0.038181576877832]],[[-0.0038337965961546,0.044386733323336,0.058226924389601],[0.017707595601678,0.098652571439743,-0.033969536423683],[-0.02398387901485,-0.060920417308807,-0.0047439807094634]],[[0.068422935903072,-0.034478519111872,-0.01082248147577],[0.0046151620335877,-0.088244825601578,0.0032195304520428],[0.015343517065048,0.0062786927446723,-0.047845307737589]],[[-0.025180730968714,0.062821589410305,-0.011221607215703],[0.053737483918667,-0.03754898160696,0.090663872659206],[-0.018817419186234,0.0017598626436666,-0.026685990393162]],[[0.0051352758891881,-0.017129793763161,0.066628329455853],[-0.0036102035082877,-0.02683038637042,-0.013862992636859],[0.015250341966748,-0.037178561091423,-0.012669161893427]],[[0.010208582505584,0.016104362905025,0.086126804351807],[0.0038706669583917,0.011234084144235,-0.019086427986622],[-0.015268695540726,-0.039686940610409,0.037938222289085]],[[-0.002223334973678,-0.031430352479219,0.077744103968143],[-0.03692738711834,-0.010189236141741,-0.0025537100154907],[-0.031689312309027,-0.029628086835146,0.013596910052001]],[[-0.013107066042721,0.059125047177076,0.030898155644536],[-0.085304692387581,-0.078604087233543,0.050661981105804],[-0.096264995634556,0.029858751222491,-0.031865939497948]],[[0.046892169862986,0.0047032525762916,0.0073741716332734],[0.00042048841714859,0.10102669149637,-0.044310625642538],[-0.023371616378427,-0.017504183575511,0.05021058768034]],[[-0.043059010058641,0.024295931681991,0.052860856056213],[-0.027027068659663,0.023040931671858,-0.033817477524281],[-0.013173500075936,-0.013896194286644,0.046003557741642]],[[-0.02744716592133,0.0097308456897736,0.02691512554884],[0.025864394381642,0.019587967544794,0.021132953464985],[-0.04299209266901,-0.066961772739887,0.022217616438866]],[[-0.070292495191097,-0.025255272164941,-0.053515307605267],[0.007726700976491,-0.01570344902575,0.0011853686301038],[0.022709529846907,-0.021673139184713,-0.054348967969418]],[[-0.042636178433895,-0.063129045069218,0.0029005450196564],[0.0060298531316221,-0.0066181570291519,0.063356786966324],[-0.0032774605788291,-0.014395093545318,-0.0071086576208472]],[[0.007803721819073,-0.020297853276134,0.053476583212614],[0.006006836425513,0.048700999468565,-0.038859147578478],[0.098168790340424,0.055306904017925,0.033176470547915]],[[-0.046252556145191,-0.035402160137892,0.031310264021158],[-0.014347654767334,0.037924479693174,0.030973855406046],[0.060185633599758,-0.1050460934639,-0.087711535394192]],[[0.044582702219486,0.051853973418474,-0.0011994354426861],[0.0072287041693926,0.021566968411207,0.080048143863678],[-0.064023539423943,-0.14668941497803,0.066701725125313]],[[-0.030294144526124,0.0119150262326,0.044763844460249],[-0.026884090155363,0.033251523971558,-0.042261209338903],[-0.014780906960368,-0.010449930094182,-0.047607488930225]],[[-0.052766844630241,0.053999029099941,-0.00055377575336024],[-0.022290430963039,-0.073765449225903,0.046518862247467],[-0.055926084518433,-0.052985809743404,0.054684162139893]],[[0.048692427575588,-0.015405350364745,-0.070111736655235],[0.0092173023149371,0.023625373840332,-0.019735429435968],[-0.036292809993029,0.099240645766258,-0.072353683412075]],[[-0.036901921033859,-0.015038376674056,-0.042132373899221],[-0.043946553021669,-0.036236990243196,0.012354116886854],[-0.01317077409476,-0.07106190174818,-0.029360352084041]],[[0.079571187496185,0.0066997990943491,-0.0086015770211816],[0.0081340381875634,0.030367899686098,0.011706557124853],[0.025514842942357,-0.026386210694909,-0.021391026675701]],[[0.027214664965868,0.018232360482216,-0.033718574792147],[0.0049409745261073,-0.011933529749513,-0.069616198539734],[0.045744381844997,-0.0073637301102281,0.055679343640804]],[[-0.037485361099243,0.0031980127096176,-0.014412174932659],[0.046239253133535,-0.00095649145077914,-0.014065848663449],[-0.084649845957756,-0.034646943211555,0.013406218960881]],[[0.041957385838032,0.019767798483372,-0.0532421246171],[-0.018427403643727,0.022920109331608,0.064549662172794],[-0.025304663926363,-0.030844788998365,-0.0078465566039085]],[[-0.011473213322461,0.1096143424511,-0.02177763544023],[0.0072483532130718,-0.01094504352659,0.01427061483264],[-0.038297243416309,0.015329223126173,0.060257833451033]],[[-0.08673457801342,0.055845815688372,0.0020166772883385],[-0.013082339428365,-0.07632490247488,0.011649081483483],[-0.034241139888763,0.065161809325218,-0.018303288146853]],[[0.03225639462471,-0.065900959074497,-0.047494929283857],[-0.01646189764142,0.0277965888381,0.021682970225811],[0.055955611169338,-0.0028619312215596,-0.0019451174885035]]],[[[-0.06392727047205,-0.033371191471815,-0.033372417092323],[0.033154662698507,-0.0068341786973178,0.085024386644363],[0.077204890549183,0.050680965185165,-0.023803826421499]],[[0.07566449791193,-0.070292577147484,-0.039142865687609],[-0.034404400736094,-0.046122260391712,-0.092424362897873],[0.019470768049359,-0.04832286387682,0.0081035392358899]],[[0.054486501961946,-0.029934836551547,0.094106175005436],[0.094357319176197,0.029929580166936,0.0038442318327725],[-0.034972302615643,0.036077369004488,-0.10967171937227]],[[0.021241074427962,0.080975584685802,0.049773786216974],[0.084062591195107,0.11353827267885,0.11967820674181],[0.040365051478148,-0.0013267784379423,0.025738030672073]],[[0.091883979737759,0.064767584204674,0.04255011305213],[0.033748399466276,-0.11836054176092,0.03213419765234],[0.080961711704731,-0.089761853218079,-0.10644403845072]],[[-0.011525960639119,0.049479253590107,0.075066678225994],[0.038480363786221,-0.062816455960274,0.027689473703504],[-0.027214417234063,-0.036547675728798,0.060155980288982]],[[0.077447563409805,0.027256520465016,0.023872433230281],[-0.092871479690075,0.069055080413818,0.089323595166206],[-0.0067433873191476,-0.026720682159066,0.046519726514816]],[[0.017173895612359,-0.072285883128643,0.022661026567221],[0.13167685270309,0.081689029932022,0.067867130041122],[-0.047296300530434,-0.0063957097008824,-0.017247978597879]],[[-0.039870399981737,-0.0080388812348247,-0.085095539689064],[-0.0020318131428212,0.019101548939943,0.012039606459439],[-0.040244318544865,0.0021125068888068,0.017404895275831]],[[-0.082109272480011,0.0003611504798755,-0.0017147599719465],[-0.017042128369212,0.1062780097127,-0.032005880028009],[0.020798414945602,-0.11560760438442,0.035415783524513]],[[-0.017256934195757,0.0066475407220423,0.091771468520164],[-0.02585631236434,0.0013015503063798,0.092353761196136],[0.0054039945825934,-0.062654323875904,0.0028596909251064]],[[-0.01161583699286,-0.014474602416158,-0.013304832391441],[0.017180679365993,-0.15139532089233,-0.037501692771912],[-0.038229629397392,-0.039015233516693,-0.036760691553354]],[[0.020174771547318,0.018438262864947,0.042491860687733],[-0.0020028797443956,-0.0032709145452827,-0.027745688334107],[0.024207625538111,0.066837288439274,-0.088723555207253]],[[0.0052146515809,0.033384349197149,0.063664950430393],[-0.01425842102617,-0.12833954393864,-0.14185233414173],[0.095518447458744,-0.007665004581213,0.025912448763847]],[[0.03558337315917,0.024014124646783,-0.0013655174989253],[-0.013695874251425,0.063853353261948,-0.019764229655266],[-0.041224155575037,0.051353275775909,0.0085608027875423]],[[0.066108547151089,0.00063565268646926,-0.026131734251976],[-0.070756047964096,-0.031816061586142,0.031336508691311],[-0.012850162573159,-0.0022110636346042,-0.0078794378787279]],[[0.021284243091941,-0.12251944094896,-0.117655582726],[-0.0017584441229701,-0.039872225373983,-0.022246787324548],[-0.1028750538826,0.13364516198635,0.0042739538475871]],[[0.058431372046471,0.065607808530331,0.035555981099606],[-0.019442418590188,0.0025191225577146,0.030672386288643],[-0.014874249696732,-0.12788118422031,-0.10516478121281]],[[-0.035388968884945,0.031564030796289,-0.050656091421843],[0.013264429755509,0.018136456608772,0.19497764110565],[-0.065689638257027,0.1299954354763,0.0079912282526493]],[[0.028249310329556,0.013814957812428,-0.019351119175553],[-0.1230923384428,0.028442643582821,0.0041471640579402],[0.023072181269526,-0.013326278887689,0.064448766410351]],[[-0.037167899310589,0.035163264721632,-0.056471921503544],[-0.015220784582198,-0.079581767320633,0.1871088296175],[-0.015573811717331,-0.038368094712496,-0.058007128536701]],[[0.10805122554302,0.015260714106262,0.10465624183416],[-0.03024628572166,-0.048786133527756,0.042753078043461],[0.033449403941631,0.073025092482567,0.087040148675442]],[[0.12989808619022,-0.019219573587179,0.056214269250631],[-0.048812299966812,-0.14589290320873,0.025974115356803],[-0.038415733724833,-0.05819558724761,-0.067213915288448]],[[-0.030209066346288,0.0017789332196116,0.00435132952407],[0.0072809862904251,0.0046555213630199,0.020150920376182],[-0.08424200117588,-0.037011504173279,-0.048787392675877]],[[-0.036551248282194,0.076801180839539,-0.037486657500267],[-0.02428100630641,-0.062475506216288,0.040768761187792],[0.02633243240416,-0.021018356084824,0.05070586502552]],[[0.011095602996647,0.056278467178345,0.067935578525066],[0.004359467420727,0.0014989873161539,-0.0075188772752881],[-0.029676679521799,-0.035822123289108,-0.049657713621855]],[[0.067508347332478,0.020908541977406,0.08603797107935],[0.036616623401642,0.046223949640989,0.07505689561367],[0.044743943959475,-0.048379119485617,0.037541970610619]],[[0.084472797811031,0.047035377472639,0.11849018186331],[-0.09022206813097,0.057585522532463,0.0035845700185746],[0.06873944401741,-0.083317644894123,0.068848565220833]],[[-0.012514504604042,0.083661057054996,-0.0047928206622601],[0.040537029504776,-0.048576921224594,-0.073919802904129],[-0.013078030198812,0.079155638813972,-0.056042078882456]],[[-0.01609955355525,0.041068706661463,0.0043604453094304],[-0.029999310150743,-0.045410163700581,-0.029037283733487],[0.051197029650211,0.010603094473481,-0.0093249715864658]],[[0.096521623432636,0.1509824693203,0.12698291242123],[0.13332763314247,-0.0048123467713594,0.023474004119635],[0.032453067600727,-0.006967366207391,-0.043544564396143]],[[0.033769782632589,0.022860260680318,-0.007651343010366],[0.027771312743425,-0.02129035256803,-0.071960143744946],[-0.087543651461601,0.028584711253643,-0.023193087428808]],[[0.081297777593136,0.016471173614264,0.077338024973869],[0.099601477384567,0.042381346225739,-0.034706313163042],[0.039476249366999,0.1017856374383,0.0060636666603386]],[[0.05693494156003,0.024416266009212,-0.10006979107857],[0.01123421639204,0.037186820060015,0.055377751588821],[0.068006336688995,0.014119040220976,-0.075786061584949]],[[0.070864833891392,0.002775982953608,0.039162322878838],[0.002096741925925,0.034310597926378,-0.0025976656470448],[-0.045011028647423,-0.068620234727859,-0.0038934119511396]],[[-0.049076780676842,-0.043307293206453,-0.046619545668364],[0.023050896823406,-0.071774132549763,0.084299139678478],[-0.051118560135365,-0.0332768894732,-0.14159978926182]],[[-0.040166791528463,0.00093153276247904,0.029513992369175],[0.010107703506947,-0.003902159165591,0.10721845924854],[-0.015349747613072,-0.031307443976402,0.1195517629385]],[[0.01366313174367,0.0084383366629481,-0.0028043880593032],[-0.088983863592148,0.0046035246923566,0.033738389611244],[0.091619566082954,0.031328178942204,0.030089054256678]],[[-0.018720842897892,0.04769504442811,-0.044193919748068],[-0.085004813969135,-0.016759684309363,0.15723378956318],[-0.061683312058449,0.084027260541916,-0.018863189965487]],[[0.09887907654047,0.056717220693827,0.087330222129822],[-0.018781438469887,0.051006022840738,0.040542498230934],[0.030830550938845,0.033100392669439,0.10399223864079]],[[0.028715657070279,-0.029012024402618,-0.027151953428984],[-0.020587081089616,0.10428696870804,-0.0011566487373784],[0.033040467649698,-0.017696613445878,-0.00011730872211047]],[[0.12233300507069,0.093464061617851,0.054223209619522],[0.060727175325155,-0.011715102009475,0.019875477999449],[0.054360430687666,0.12975507974625,0.078920744359493]],[[0.036335602402687,0.064313530921936,-0.072753846645355],[0.068201415240765,0.12106717377901,-0.022400449961424],[0.015620174817741,0.042409438639879,0.02881589345634]],[[-0.043114762753248,-0.020012628287077,0.035775721073151],[-0.027832726016641,-0.016789330169559,0.075311325490475],[0.01831073872745,0.014204850420356,0.035201378166676]],[[0.015531565994024,0.11746668815613,-0.062057193368673],[0.13557554781437,0.043940249830484,-0.063186772167683],[-0.019105415791273,0.088511250913143,0.024900671094656]],[[0.034191772341728,-0.057498015463352,0.043236922472715],[-0.082216121256351,-0.0085181314498186,0.016101244837046],[-0.029706884175539,0.011729086749256,-0.019583957269788]],[[0.041482906788588,-0.014203968457878,0.095770172774792],[-0.05452237278223,0.026040997356176,-0.063670888543129],[0.010139821097255,0.069839894771576,0.079193919897079]],[[-0.084548160433769,0.0047562001273036,-0.071111224591732],[-0.09775048494339,-0.11814294010401,0.040293339639902],[0.020497219637036,0.01120906509459,-0.11179329454899]],[[0.0072685466147959,0.013372654095292,-0.0596893876791],[0.18260936439037,-0.011117635294795,-0.052845671772957],[0.12020070850849,-0.058329932391644,-0.11577408015728]],[[0.013316531665623,0.034700494259596,-0.050088070333004],[0.023107619956136,-0.026913363486528,-0.017728894948959],[0.014199437573552,0.012574981898069,0.0079465564340353]],[[0.061667133122683,-0.018136389553547,0.043500982224941],[-0.035751946270466,0.017564363777637,-0.049992620944977],[0.012732812203467,-0.027198078110814,-0.050133269280195]],[[0.064044244587421,-0.072998285293579,-0.036798253655434],[0.067140907049179,0.093170814216137,-0.040634714066982],[-0.013072083704174,0.012729791924357,0.13219034671783]],[[-0.04874224960804,0.09921658039093,-0.0032082716934383],[0.025552030652761,-0.020585685968399,0.054624900221825],[-0.049270782619715,-0.034858386963606,0.0085829282179475]],[[0.078459039330482,-0.055659200996161,0.0013350415974855],[0.062848001718521,0.042595487087965,0.021954532712698],[-0.091440781950951,-0.00079442444257438,0.031646382063627]],[[-0.0010110748698935,0.015331410802901,-0.02881776727736],[-0.085136212408543,-0.041834957897663,0.0061161764897406],[0.066289938986301,0.030445277690887,0.023384571075439]],[[0.026305997744203,0.073675952851772,-0.0069633387029171],[-0.070302464067936,0.078300572931767,-0.038027349859476],[-0.10936287790537,0.011858907528222,-0.0096517847850919]],[[0.0071816015988588,-0.021990003064275,0.030195850878954],[0.014050982892513,0.04426621645689,-0.037710431963205],[-0.070516586303711,0.093258827924728,-0.026773691177368]],[[0.062390200793743,-0.10738898068666,-0.079296559095383],[0.030766891315579,-0.016943914815784,0.10624534636736],[-0.12471320480108,0.044205266982317,-0.015563995577395]],[[-0.034464292228222,0.0081763165071607,-0.035286903381348],[-0.065529100596905,-0.07614454627037,0.035161826759577],[0.04840612411499,0.083094604313374,-0.014682093635201]],[[-0.084973469376564,0.000142882738146,0.0095270099118352],[-0.033300951123238,-0.074967637658119,-0.022071342915297],[-0.098471708595753,0.14736871421337,-0.06313818693161]],[[0.01300023496151,0.06621378660202,0.0045547145418823],[0.040716215968132,0.038892671465874,0.091634437441826],[-0.0028982490766793,0.0088019473478198,-0.056873604655266]],[[-0.058923404663801,-0.0046128602698445,0.037806410342455],[-0.017425857484341,-0.029184848070145,0.020917076617479],[-0.0023559255059808,0.040194753557444,0.045081771910191]],[[-0.023409908637404,-0.017003417015076,0.023587927222252],[-0.017484810203314,0.043865725398064,-0.08694214373827],[-0.011929415166378,-0.085811458528042,0.18413724005222]],[[0.030933048576117,-0.044635269790888,0.081335246562958],[-0.049405533820391,0.016017321497202,0.012986369431019],[-0.03261161968112,0.01638862118125,0.089325152337551]],[[-0.060125015676022,-0.023113433271646,0.23157212138176],[-0.088715881109238,-0.030761269852519,-0.053489033132792],[0.031607337296009,-0.01819958165288,-0.038856204599142]],[[0.0093869566917419,0.071692205965519,-0.018655261024833],[0.085172191262245,-0.053506959229708,0.068248279392719],[0.024321649223566,-0.0010489624692127,-0.061831381171942]],[[0.077402181923389,0.10077654570341,0.034149758517742],[0.058597404509783,0.071123138070107,-0.011466939002275],[-0.030603146180511,-0.016149634495378,0.026238311082125]],[[-0.04426184669137,0.00689867278561,0.04920294508338],[0.0016750941285864,0.022661492228508,-0.054815884679556],[0.018722638487816,-0.042409580200911,0.0017718832241371]],[[0.033054359257221,0.036700267344713,0.043082397431135],[0.054896920919418,0.0036836261861026,-0.090017981827259],[0.032218180596828,-0.027759427204728,0.022757396101952]],[[0.018756289035082,0.019617291167378,0.030584970489144],[0.046993087977171,0.0097679095342755,0.039218604564667],[-0.019975295290351,0.032245740294456,-0.025121189653873]],[[-0.078353486955166,0.073639020323753,0.10934019833803],[0.036953780800104,0.047544669359922,0.086174167692661],[-0.055417276918888,0.02110175602138,-0.12319421768188]],[[0.051993239670992,0.01572871953249,-0.023229870945215],[-0.091942310333252,-0.056364424526691,-0.059816848486662],[-0.10109966993332,-0.0079125221818686,-0.00037037770380266]],[[0.0073327892459929,0.0082008996978402,0.0017611214425415],[-0.020437786355615,-0.035195205360651,0.12236819416285],[0.025869216769934,-0.047851014882326,-0.096249900758266]],[[-0.12689012289047,-0.019513400271535,-0.02769978903234],[0.024389073252678,0.068058133125305,0.046141654253006],[-0.073555126786232,-0.042437460273504,-0.0011796627659351]],[[0.13083550333977,0.017213197425008,0.017421565949917],[-0.085643783211708,0.070884391665459,0.053024940192699],[0.0035541479010135,-0.051015794277191,-0.026210650801659]],[[-0.039499163627625,0.061686955392361,-0.025097353383899],[0.066643461585045,0.021003771573305,0.00071728532202542],[-0.0077991578727961,0.027911694720387,-0.026767019182444]],[[-0.0733492821455,-0.022213196381927,-0.012225010432303],[-0.022805219516158,0.021753275766969,0.090656876564026],[-0.083174332976341,0.048785150051117,-0.017893055453897]],[[0.090316325426102,0.011218619532883,0.019175108522177],[0.072368621826172,0.082578331232071,0.10949150472879],[0.03789147734642,0.041717141866684,0.053587436676025]],[[-0.10193188488483,0.0085473703220487,-0.046943116933107],[0.055395182222128,-0.032357435673475,-0.001115407096222],[0.053245529532433,0.020756240934134,0.037515439093113]],[[-0.058728378266096,0.039236076176167,0.0072334646247327],[-0.062070980668068,-0.04843832179904,-0.067183665931225],[-0.021179495379329,0.023729266598821,0.054094545543194]],[[0.021083317697048,0.10659316927195,-0.0030109975486994],[0.054808393120766,0.026460142806172,-0.00039994373219088],[0.029670123010874,0.10648307204247,0.072480045258999]],[[0.055055812001228,0.00078495795605704,-0.0050854636356235],[-0.037212092429399,0.069841034710407,0.040494937449694],[-0.047180190682411,0.018074359744787,0.016841826960444]],[[0.06825065612793,-0.04427045583725,-0.044552654027939],[-0.022182121872902,0.12702068686485,0.029833385720849],[-0.012022357434034,-0.0073018544353545,-0.0051642172038555]],[[-0.012279270216823,0.078259408473969,0.071849592030048],[0.093538708984852,-0.00605259090662,0.018114788457751],[-0.027292184531689,0.017098963260651,0.024585282430053]],[[0.055111654102802,-0.0030700271017849,-0.037831254303455],[0.037831418216228,-0.0061494167894125,-0.043944600969553],[-0.043527621775866,0.030050216242671,0.076941594481468]],[[-0.040630858391523,0.053059756755829,0.0023606852628291],[-0.020183399319649,0.024106802418828,0.032019302248955],[-0.023808861151338,-0.087205268442631,-0.026663813740015]],[[0.093287661671638,-0.049140393733978,-0.080084703862667],[-0.013163359835744,0.20143137872219,0.063058063387871],[0.044992927461863,-0.011633486486971,-0.032374884933233]],[[0.017742378637195,-0.064213335514069,-0.0096769845113158],[0.078040711581707,-0.046242736279964,0.053922493010759],[-0.0090545602142811,-0.042842321097851,-0.055491339415312]],[[0.0017548599280417,0.071282722055912,0.059393521398306],[0.0061816722154617,-0.020397076383233,-0.10419598221779],[0.048790618777275,-0.10455568879843,-0.0076333791948855]],[[0.035445254296064,-0.031869933009148,0.024615040048957],[0.028677428141236,-0.041729006916285,-0.00095012865494937],[0.043709844350815,-0.026892034336925,0.08417684584856]],[[0.014249870553613,-0.015589687041938,0.017926746979356],[0.084927387535572,0.02577099762857,-0.036913964897394],[-0.043806798756123,-0.0059108659625053,-0.014018186368048]],[[0.010791244916618,0.061620585620403,-0.01756938174367],[0.014598566107452,-0.039055563509464,0.025599416345358],[-0.046599134802818,-0.036890987306833,-0.044923279434443]],[[-0.020570816472173,-0.0020674995612353,0.18970812857151],[0.011231335811317,0.018943229690194,0.033997152000666],[-0.0059588304720819,-0.1106950044632,-0.10187217593193]],[[-0.0015228486154228,0.0093081146478653,0.030876241624355],[-0.0019334509270266,-0.014717912301421,0.0023259606678039],[0.050468768924475,-0.064075440168381,0.0098014092072845]],[[0.031842343509197,-0.10656270384789,0.13550037145615],[-0.005868187174201,0.018188687041402,0.078146412968636],[0.077500879764557,0.00028591556474566,-0.13534134626389]],[[0.0081100482493639,-0.007503118366003,0.031646002084017],[0.11037426441908,0.056463897228241,0.0094408961012959],[0.030113577842712,0.025417538359761,-0.0050820768810809]],[[-0.055839747190475,-0.028882360085845,0.12333401292562],[0.032163135707378,-0.097261309623718,-0.043075364083052],[-0.042753756046295,-0.039896577596664,-0.027763068675995]],[[0.10561673343182,-0.011696272529662,-0.052147105336189],[-0.01895110681653,0.031323052942753,0.16458758711815],[-0.0029358328320086,0.12845614552498,0.025047173723578]],[[0.0068026972003281,0.016554586589336,-0.0090289600193501],[0.011428785510361,-0.018388031050563,-0.076509766280651],[-0.03293464332819,0.070662423968315,-0.017887905240059]],[[0.048432789742947,0.039488185197115,-0.017865994945168],[-0.034991193562746,-0.054959669709206,-0.029192309826612],[-0.023590615019202,0.072686024010181,0.014292346313596]],[[-0.065741553902626,-0.035276781767607,-0.020597141236067],[-0.09172248840332,0.030771072953939,-0.056463275104761],[0.0001642242714297,-0.084558129310608,0.11927209049463]],[[0.061263862997293,-0.022826239466667,-0.01941161789],[0.012269594706595,-0.013222160749137,0.058611951768398],[0.042320564389229,0.042425740510225,0.0046009365469217]],[[0.024033987894654,-0.08548004925251,0.050939798355103],[0.070903427898884,-0.054907854646444,-0.014449348673224],[-0.053611237555742,-0.052847169339657,0.016358405351639]],[[0.12540605664253,0.028069213032722,-0.10146149992943],[-0.00087400799384341,-0.050755992531776,0.032216478139162],[0.051856700330973,-0.053098522126675,-0.058484088629484]],[[-0.096838213503361,0.084880515933037,-0.018399471417069],[0.041125204414129,0.0052605220116675,-0.063780099153519],[0.056432280689478,-0.032295044511557,0.034911826252937]],[[0.091247960925102,-0.018253915011883,1.0928495612461e-05],[0.02870393358171,0.0074675432406366,-0.0095223234966397],[0.071088671684265,0.031519420444965,0.18429075181484]],[[0.032246716320515,-0.057413317263126,0.041525859385729],[-0.072057262063026,-0.0031343156006187,0.18803414702415],[-0.04430541023612,-0.057021841406822,0.025223510339856]],[[-0.077313624322414,-0.037718255072832,0.024892937391996],[0.013574266806245,-0.11546579748392,-0.0024685605894774],[-0.011472947895527,-0.039555110037327,-0.03848048299551]],[[0.0081001510843635,-0.056158594787121,-0.025516895577312],[-0.0099046742543578,-0.0027498505078256,-0.015989895910025],[-0.070120118558407,-0.016068397089839,0.0056591802276671]],[[0.10794981569052,0.027913469821215,0.11403284221888],[-0.0088842716068029,-0.029821028932929,0.023362200707197],[0.052193630486727,0.015893928706646,0.027567848563194]],[[-0.018966486677527,-0.0085861422121525,0.027479782700539],[0.012271413579583,0.0214589163661,-0.052485540509224],[-0.027679465711117,0.049176469445229,0.054175764322281]],[[-0.050102706998587,0.015098786912858,-0.090832494199276],[-0.018640663474798,-0.039971828460693,-0.019782124087214],[-0.04974203556776,-0.0095891188830137,-0.028614152222872]],[[0.007916234433651,-0.075536049902439,-0.017626570537686],[-0.044233962893486,0.020849816501141,0.021807169541717],[-0.016298983246088,-0.0024073030799627,0.070444986224174]],[[-0.05170464143157,-0.04733457788825,0.06252433359623],[0.014526166953146,-0.0043055559508502,0.039456143975258],[0.064852982759476,0.0014034500345588,-0.043728351593018]],[[0.010771452449262,0.019442958757281,-0.029387999325991],[-0.002601349260658,0.033069461584091,0.028214197605848],[-0.035916142165661,0.062529683113098,0.028021786361933]],[[-0.072340741753578,0.032523658126593,0.017878163605928],[0.0020700006280094,-0.060913078486919,0.027225099503994],[-0.059372141957283,-0.14572477340698,-0.027937775477767]],[[-0.0012344554997981,0.0064498139545321,0.0057934084907174],[0.031311437487602,0.040467251092196,-0.0044042868539691],[-0.071898393332958,0.068018391728401,0.04211775586009]],[[0.084648296236992,-0.06732252240181,0.01230358146131],[-0.064506195485592,-0.0702855437994,-0.065696984529495],[-0.0077486424706876,0.045218739658594,0.063175886869431]],[[-0.005952519364655,-0.039345450699329,-0.06657762825489],[-0.055183939635754,-0.058748871088028,-0.021846301853657],[-0.050054244697094,-0.060960046947002,-0.032172735780478]],[[0.023532837629318,0.021067595109344,0.039502419531345],[-0.02831987477839,0.054899744689465,-0.01132317725569],[0.0044258595444262,-0.029868125915527,0.0084152529016137]],[[0.040388032793999,-0.08653949201107,0.12841753661633],[-0.020446676760912,-0.07165864855051,0.11956026405096],[0.074816547334194,0.018452668562531,-0.030570080503821]],[[0.043863724917173,-0.078700341284275,0.030091995373368],[-0.099931463599205,0.0059416173025966,-0.027507914230227],[0.010476601310074,0.025468934327364,0.0042663621716201]],[[-0.01041143015027,0.0092194033786654,-0.035454660654068],[-0.050436969846487,-0.054361302405596,0.097042098641396],[-0.0028204291593283,-0.033330004662275,-0.022617440670729]],[[0.0045917704701424,0.030617265030742,-0.022875631228089],[-0.0017515134532005,-0.017855117097497,0.05433102324605],[-0.019672513008118,0.028027372434735,-0.053803715854883]],[[0.12449841201305,0.032673995941877,0.031275220215321],[0.097186699509621,-0.0076267723925412,-0.0082186246290803],[0.033958204090595,0.01352795958519,0.036557875573635]],[[0.0073737185448408,0.032375477254391,-0.061143506318331],[-0.12038850039244,0.0047900583595037,0.0048570446670055],[-0.065266512334347,-0.021774217486382,-0.019696030765772]],[[0.021694907918572,-0.018674416467547,-0.019411973655224],[-0.11585146933794,0.0063468841835856,-0.16073140501976],[-0.05717484280467,0.048242673277855,0.009194428101182]],[[-0.059809118509293,0.0083599276840687,-0.067165948450565],[-0.094120062887669,0.02804159745574,0.028203083202243],[0.0097172148525715,-0.058587670326233,0.037697624415159]]],[[[-0.051368918269873,-0.020104782655835,-0.041692491620779],[-0.045222077518702,-0.0082937218248844,-0.059344917535782],[-0.013465561904013,-0.02066202647984,-0.039890058338642]],[[0.058382224291563,-0.077062129974365,0.037903286516666],[0.0046211923472583,0.019695015624166,0.014890746213496],[0.081794790923595,-0.0016018826281652,-0.017384247854352]],[[-0.021730521693826,-0.0093729123473167,0.011796745471656],[0.0020035279449075,0.013650323264301,-0.10133983939886],[0.023162383586168,0.03998289629817,-0.011392596177757]],[[0.037049632519484,0.025453478097916,0.061889987438917],[0.060909297317266,-0.020520955324173,-0.066138230264187],[0.032088384032249,-0.044074308127165,0.025139857083559]],[[-0.0026409383863211,-0.01087448745966,0.014515468850732],[-0.01210605353117,0.077636912465096,-0.060457024723291],[-0.0091172168031335,0.013094803318381,-0.04090878739953]],[[-0.022302919998765,-0.0047236578539014,0.072841763496399],[0.0047274604439735,0.0644556209445,-0.047739751636982],[0.0091722719371319,0.056208394467831,-0.043058775365353]],[[-0.012834363617003,0.017490124329925,-0.0073978547006845],[-0.05015691369772,0.032844845205545,0.014896849170327],[-0.027311952784657,-0.0091760568320751,0.012431021779776]],[[0.0097773652523756,-0.014102905988693,-0.01146671269089],[0.035922396928072,-0.0027090949006379,0.023705221712589],[0.031958684325218,0.011738375760615,0.0028978097252548]],[[0.039169508963823,-0.014079720713198,-0.056274518370628],[0.023981085047126,0.0065175821073353,-0.018701389431953],[-0.064158909022808,0.014975840225816,0.10273495316505]],[[0.014575493521988,0.021371984854341,-0.076376304030418],[-0.0068042958155274,-0.032345175743103,-0.038365364074707],[-0.016758915036917,0.032896496355534,0.019103704020381]],[[0.085608087480068,0.017247069627047,-0.0045680585317314],[-0.034567467868328,-0.05168778821826,-0.065836660563946],[-0.035351596772671,0.026799432933331,0.0086928112432361]],[[0.054118029773235,0.043290726840496,-0.0038062965031713],[-0.019039096310735,0.024709057062864,-0.031047657132149],[-0.11775591224432,-0.078866571187973,-0.0060472693294287]],[[0.033925481140614,0.015888361260295,-0.036330059170723],[-0.017299178987741,0.01627934910357,0.019998800009489],[-0.028341906145215,-0.0079498337581754,-0.04792758077383]],[[0.025006134063005,0.011441865004599,-0.003536500968039],[-0.017339657992125,0.027913535013795,-0.005737901199609],[0.016604788601398,-0.044522076845169,-0.004717736504972]],[[0.019595572724938,-0.011599501594901,0.019421067088842],[0.066269114613533,0.01615584641695,0.019597051665187],[0.01332441624254,-0.035820946097374,0.033787157386541]],[[-0.041834570467472,0.0033816539216787,0.0058913691900671],[-0.056156557053328,-0.060484167188406,-0.039763435721397],[-0.014159932732582,0.036202110350132,-0.044891387224197]],[[-0.016817277297378,0.023655891418457,-0.034340143203735],[0.038987819105387,-0.0044547473080456,-0.020821783691645],[-0.014552571810782,0.017231974750757,-0.020468305796385]],[[0.038914047181606,-0.019315756857395,0.042941581457853],[0.0046859616413713,-0.0043677529320121,0.032254122197628],[-0.028778053820133,0.011721552349627,0.059377886354923]],[[0.072975434362888,-0.02133434638381,0.037807062268257],[0.033746019005775,-0.019889354705811,0.025659969076514],[0.036073755472898,-0.09139010310173,-0.022136252373457]],[[0.049102090299129,0.06513362377882,0.0023276819847524],[0.0017959396354854,0.021818779408932,0.00010776688577607],[0.043050102889538,0.091915383934975,0.021394543349743]],[[0.033578097820282,-0.039020955562592,0.020925533026457],[0.02333464846015,0.027451660484076,-0.014797716401517],[0.043890673667192,0.064147174358368,-0.059677645564079]],[[-0.0038240654394031,-0.022417895495892,-0.014637586660683],[0.0058613778091967,-3.3037904358935e-06,0.0042538279667497],[0.030319936573505,0.089057318866253,-0.015180982649326]],[[0.020417094230652,0.020791290327907,-0.0046454407274723],[0.018629973754287,-0.062901325523853,0.063292294740677],[0.011122005060315,0.01409291755408,-0.0075377528555691]],[[-0.028829708695412,-0.029308749362826,-0.05210031196475],[-0.016672728583217,0.0013851003022864,-0.065525949001312],[-0.045980732887983,-0.075277052819729,-0.068581894040108]],[[-0.095422700047493,-0.00028171163285151,-0.045535542070866],[0.037388049066067,-0.013636137358844,-0.0066035469062626],[0.00040264803101309,0.0063394196331501,0.019904201850295]],[[-0.034090403467417,-0.049248538911343,0.025169020518661],[-0.035053130239248,0.011702746152878,0.023383812978864],[-0.0083293542265892,-0.022239431738853,-0.0051764757372439]],[[-0.0099160922691226,0.020573327317834,-0.040973611176014],[0.01334682572633,0.017220880836248,-0.019003286957741],[0.00018872735381592,-0.03982512280345,-0.015734322369099]],[[-0.0036200315225869,-0.020404774695635,-0.027304816991091],[-0.025690618902445,0.034266520291567,-0.030445791780949],[-0.059637185186148,0.058239743113518,0.0057720090262592]],[[-0.037409253418446,-0.080942399799824,0.01110643427819],[-0.057494934648275,-0.036792621016502,0.069798678159714],[0.045349035412073,0.022324785590172,-0.055725436657667]],[[0.032723192125559,0.018530499190092,0.0011037944350392],[-0.018285246565938,-0.070345722138882,0.023795073851943],[-0.0015342601109296,0.03074293024838,0.047099601477385]],[[0.0087773008272052,-0.0083207730203867,0.0011040279641747],[-0.026130799204111,-0.047422081232071,0.059977225959301],[-0.026970278471708,-0.041876599192619,0.030692730098963]],[[-0.0016217506490648,0.0043469658121467,-0.02980182133615],[0.083154559135437,0.045003104954958,0.0045850998722017],[-0.051697224378586,-0.030093340203166,-0.0079639600589871]],[[0.0062850113026798,0.026725210249424,0.015463228337467],[-0.019032767042518,-0.096098072826862,0.014525771141052],[-0.092662125825882,0.040738541632891,0.011615619063377]],[[-0.019145039841533,0.016621973365545,0.00044483417877927],[-0.047164596617222,0.054402198642492,0.019752593711019],[-0.06297205388546,-0.0052397893741727,-0.0043213022872806]],[[0.017264103516936,-0.01073114015162,0.0055132461711764],[-0.036221362650394,0.0059869694523513,0.029401058331132],[0.0043466142378747,0.019558310508728,-0.049597065895796]],[[0.04535835981369,-0.0088909612968564,-0.021038996055722],[0.096378341317177,0.088000744581223,-0.0066868560388684],[-0.014773387461901,0.021773625165224,-0.012744380161166]],[[0.079984664916992,-0.037962347269058,0.042156554758549],[-0.080358274281025,-0.027174588292837,-0.0065578622743487],[-0.01021318230778,-0.034720219671726,-0.0021926134359092]],[[-0.026553919538856,-0.06966844201088,0.046074811369181],[0.066007666289806,-0.03611372038722,-0.021208574995399],[-0.04902096837759,0.018929993733764,0.066113315522671]],[[0.013116738758981,-0.07730233669281,-0.008730455301702],[-0.0034529468975961,-0.052910793572664,-0.02648519538343],[-0.013630375266075,0.010565687902272,0.0041412455029786]],[[-0.10530439019203,0.00025946029927582,-0.029816308990121],[-0.039572115987539,0.0021928711794317,-0.022863978520036],[-0.033952787518501,0.015658773481846,-0.02402563393116]],[[0.021406054496765,0.021284755319357,-0.0098821064457297],[0.0039289467968047,0.026723550632596,-0.068555727601051],[-0.0052845696918666,0.015310529619455,0.0046520982868969]],[[0.0016134401084855,-0.020521635189652,0.051099214702845],[0.0089632701128721,0.064629219472408,0.007515124976635],[0.043971598148346,-0.049573455005884,-0.025180591270328]],[[0.049669951200485,-0.05273512750864,0.074360936880112],[-0.012394558638334,0.026423634961247,-0.037464331835508],[0.026604164391756,-0.038303662091494,-0.016637075692415]],[[-0.019610814750195,-0.03698942065239,-0.0016389022348449],[0.0089799640700221,-0.016816053539515,-0.033254101872444],[-0.067574679851532,0.022689348086715,-0.010524292476475]],[[-0.010765552520752,-0.030317351222038,-0.012426674365997],[0.00046794477384537,0.011314039118588,0.019477143883705],[-0.043878760188818,0.037499081343412,-0.043275389820337]],[[0.0097819957882166,0.028280353173614,-0.014275772497058],[0.0085252588614821,0.0014943606220186,-0.012362881563604],[-0.016758948564529,0.0040359976701438,-0.01088809967041]],[[-0.041498832404613,-0.011390006169677,-0.042538963258266],[0.00035393063444644,0.012922984547913,-0.017481248825788],[-0.010546672157943,-0.0066009941510856,0.040858004242182]],[[0.034748274832964,-0.027634177356958,0.04010134935379],[-0.043575629591942,-0.062123242765665,0.011245703324676],[0.060235783457756,0.031968545168638,0.0059721060097218]],[[0.018858233466744,-0.018016569316387,-0.0087382942438126],[0.029924932867289,-0.015852456912398,-0.0029083907138556],[0.014733616262674,-0.028052683919668,0.016669681295753]],[[-0.010619906708598,0.00056024576770142,0.00068263203138486],[0.061223715543747,0.017794044688344,-0.005599326454103],[-0.090069562196732,0.034420683979988,0.016498811542988]],[[-0.033648919314146,0.0060916743241251,-0.078955605626106],[0.03561807051301,0.045081581920385,-0.026242697611451],[-0.00055330194300041,0.035120822489262,-0.021260065957904]],[[0.038115199655294,-0.028780162334442,0.01383475586772],[-0.0081022754311562,0.039288032799959,0.027494322508574],[-0.014150760136545,0.035421654582024,0.068097800016403]],[[-0.0033860811963677,0.063833318650723,0.042725626379251],[0.036326486617327,-0.061605740338564,-0.022234711796045],[0.005405236966908,0.045443419367075,-0.011024873703718]],[[-0.028004696592689,0.011382783763111,-0.012343447655439],[-0.033614549785852,-0.034145098179579,0.077353663742542],[-0.087999068200588,0.055356286466122,-0.021124752238393]],[[0.028073349967599,-0.072829559445381,0.017988512292504],[-0.025183856487274,-0.072754241526127,0.049375090748072],[0.0148004014045,-0.036306671798229,-0.036790169775486]],[[0.034719452261925,0.015958169475198,-0.045084193348885],[-0.017375454306602,-0.012089579366148,0.023347862064838],[0.024839758872986,-0.017272517085075,0.023054925724864]],[[-0.057661451399326,0.012184094637632,-0.017354404553771],[0.080480262637138,0.029370682314038,0.013734053820372],[-0.009858027100563,0.033747605979443,0.056439053267241]],[[0.048385988920927,-0.026928959414363,0.045392345637083],[-0.0019654727075249,0.0031626191921532,0.026442723348737],[-0.045458521693945,0.012821827083826,-0.0035213022492826]],[[-0.019212117418647,-0.0646688118577,-0.087612852454185],[-0.071684464812279,0.053836461156607,-0.0066716787405312],[-0.11451943963766,0.0098424777388573,-0.017767403274775]],[[-0.030412547290325,0.030474178493023,-0.02346976287663],[0.02346390299499,0.031921703368425,-0.034539215266705],[0.0028610120061785,-0.015346045605838,-0.013557830825448]],[[-0.022874658927321,-0.037587810307741,0.051839042454958],[0.094936653971672,-0.0074627124704421,-0.012626260519028],[0.030032193288207,0.03282568231225,-0.00096389761893079]],[[-0.0040347320027649,-0.045788872987032,-0.018659824505448],[0.016752546653152,-0.032083366066217,0.017023310065269],[-0.054203946143389,0.019987424835563,-0.0040165344253182]],[[-0.0024556207936257,0.043968297541142,-0.033160995692015],[-0.033935714513063,0.045381870120764,0.057494968175888],[0.0017343400977552,0.0081422682851553,0.025121334940195]],[[-0.023329662159085,0.060340531170368,-0.0079162288457155],[-0.004903550259769,0.0062673939391971,0.063347823917866],[-0.023404708132148,0.073170937597752,-0.031575802713633]],[[-0.033768981695175,0.0070018754340708,-0.0033020097762346],[-0.059250831604004,0.06057733297348,0.0093735381960869],[-0.0070361946709454,-0.071364939212799,-0.02789843082428]],[[0.022874822840095,-0.036758407950401,-0.048672925680876],[-0.031554266810417,-0.028923718258739,-0.029011251404881],[-0.039753690361977,-0.011926122941077,-0.018569363281131]],[[-0.029729498550296,0.057433549314737,-0.044293902814388],[-0.034276861697435,0.051129229366779,-0.029381383210421],[0.026074320077896,-0.017417728900909,-0.083699308335781]],[[0.037223242223263,-0.0085180755704641,0.0041913073509932],[-0.11619292199612,-0.05853945761919,0.045666057616472],[-0.0068187769502401,0.0030735833570361,-0.0078297071158886]],[[-0.006904877256602,0.0069034523330629,-0.0058072204701602],[0.028573401272297,0.083185657858849,0.09341798722744],[0.011177690699697,-0.033510014414787,-0.1518886089325]],[[0.014611820690334,-0.0080218426883221,-0.040812078863382],[0.017028419300914,-0.0060979132540524,0.045919857919216],[0.0011847676942125,0.014136014506221,0.077248521149158]],[[0.014270243234932,0.026821246370673,0.055086158216],[0.045182697474957,0.057771891355515,-0.069640293717384],[-0.027308721095324,-0.032354731112719,0.0014039821689948]],[[0.017218912020326,0.0079114492982626,0.052102975547314],[-0.026041548699141,-0.033251509070396,-0.010119086131454],[0.085186697542667,0.014058282598853,0.092107608914375]],[[0.027710136026144,-0.038477879017591,0.042655318975449],[-0.00405064644292,0.046116843819618,-0.0031838188879192],[-0.096389517188072,0.070930413901806,-0.03530940413475]],[[-0.040533948689699,-0.013152261264622,0.017344072461128],[-0.019467633217573,0.0025004793424159,0.055835627019405],[0.017818873748183,-0.057175636291504,-0.0011977270478383]],[[0.029687905684114,0.00028460170142353,0.06072735786438],[0.044339153915644,0.032024104148149,0.029388001188636],[-0.071364842355251,-0.018655592575669,0.032790515571833]],[[-0.06107796356082,-0.0067235683090985,0.012093369849026],[0.010269421152771,0.00405791727826,0.07200875878334],[-0.025857450440526,-0.024672573432326,0.026026651263237]],[[0.041490815579891,-0.039773870259523,0.009852428920567],[-0.026924885809422,0.011013387702405,0.02126532420516],[-0.10513914376497,0.0061727282591164,0.050884965807199]],[[-0.086724326014519,0.015288333408535,-0.10839596390724],[0.013380794785917,-0.052375804632902,-0.0095246201381087],[0.032233532518148,0.017129309475422,0.05002811178565]],[[0.047706443816423,0.062490858137608,0.019629266113043],[-0.049517173320055,-0.037949375808239,-0.035312943160534],[-0.12849271297455,-0.039456617087126,0.097867637872696]],[[-0.021741440519691,0.040096834301949,0.025260360911489],[0.037671536207199,-0.085386484861374,0.048981584608555],[-0.013629306107759,-0.074207976460457,-0.0008794481982477]],[[-0.06200297549367,0.04837978631258,-0.013002389110625],[-0.0026704561896622,-0.0011322813807055,0.068407997488976],[0.013461495749652,-0.025252735242248,0.020549723878503]],[[-0.027409402653575,-0.00059349555522203,0.011289270594716],[0.02300713956356,-0.077920377254486,-0.031662225723267],[0.0042323740199208,-0.0071354364044964,0.070840537548065]],[[-0.030363768339157,0.020970717072487,0.032294798642397],[-0.0037876735441387,0.027532374486327,-0.032702978700399],[-0.037889294326305,0.038996648043394,0.0089214676991105]],[[-0.015257312916219,0.0122897811234,0.01140543539077],[0.032685577869415,0.015529543161392,0.027946665883064],[0.014649114571512,-0.029933890327811,0.043431367725134]],[[-0.0015665119281039,0.055788785219193,-0.020594703033566],[-0.00027808925369754,-0.018154930323362,-0.082266286015511],[0.028732500970364,-0.017897086217999,-0.0020692138932645]],[[0.084648869931698,0.052091397345066,-0.010807577520609],[-0.019830340519547,-0.045400585979223,-0.025611221790314],[-0.0013295935932547,0.065240189433098,0.00092873210087419]],[[-0.06335823982954,-0.028498597443104,-0.03147316724062],[0.030937120318413,-0.013028123416007,-0.029340138658881],[-0.054004423320293,-0.014453943818808,-0.030067631974816]],[[-0.017728393897414,0.026392426341772,0.0067827850580215],[0.01815534196794,0.051100868731737,-0.021811593323946],[0.027324765920639,0.097292765974998,-0.062482491135597]],[[-0.0029238637071103,-0.0068730381317437,0.021468341350555],[0.052780654281378,0.036173943430185,-0.033434111624956],[0.038660481572151,-0.007638743147254,-0.012897823005915]],[[-0.050517451018095,0.0056773303076625,-0.007682082708925],[0.018788540735841,0.014390463940799,-0.0026777628809214],[0.02870867960155,0.026522053405643,-0.012535572983325]],[[-0.027854401618242,-0.065446063876152,-0.021311700344086],[-0.020497621968389,0.018853204324841,0.01244437135756],[-0.08950936794281,-0.022328604012728,0.055641863495111]],[[0.025292534381151,-0.010761821642518,0.022040821611881],[0.01393813919276,0.0019332715310156,-0.012464770115912],[-0.018901530653238,-0.029713317751884,-0.039413001388311]],[[-0.055518761277199,-0.013099351897836,0.043594654649496],[-0.011808187700808,-0.0021328695584089,0.068937122821808],[-0.040596831589937,0.0043064928613603,0.0096537414938211]],[[0.015012915246189,0.055999353528023,-0.089098334312439],[-0.0044698775745928,0.0080061256885529,0.0094984592869878],[-0.015575474128127,-0.012684657238424,-0.018110580742359]],[[0.022804981097579,-0.012154766358435,-0.00035147910239175],[0.039375830441713,-0.011197990737855,0.025442903861403],[-0.012202954851091,-0.051016915589571,0.023323113098741]],[[0.0083116870373487,-0.015024133957922,0.020683413371444],[-0.017871908843517,0.014973469078541,-0.032109417021275],[-0.036564629524946,-0.073629282414913,0.033536601811647]],[[-0.021694486960769,-0.05487996339798,0.0081267133355141],[-0.028147211298347,0.0081830061972141,0.082839623093605],[-0.029513090848923,0.020255142822862,0.02659197896719]],[[0.028590843081474,-0.038050372153521,0.030315903946757],[0.046062536537647,-0.05566319078207,0.026014562696218],[-0.060917537659407,-0.024317223578691,-0.015203368850052]],[[0.014207314699888,0.024873618036509,0.0079338448122144],[0.057730488479137,-0.078207992017269,0.017808839678764],[0.031590182334185,0.045431084930897,-0.005347206722945]],[[-0.014200329780579,-0.045604377985001,0.016997089609504],[-0.002803465584293,-0.034898985177279,0.043973799794912],[0.033447206020355,0.054126087576151,0.020351314917207]],[[0.031529381871223,-0.0067405384033918,0.013107359409332],[0.034119263291359,0.0072404518723488,0.050889614969492],[-0.016464097425342,-0.011589552275836,-0.0086306668817997]],[[-0.0016008603852242,-0.038691014051437,-0.040989644825459],[-0.049656741321087,-0.1246522217989,-0.0076422262936831],[-0.0020873686298728,-0.03283392265439,0.030077740550041]],[[0.00097056914819404,-0.023150308057666,0.037128046154976],[-0.0092066023498774,0.037278335541487,-0.0055040335282683],[-0.034416481852531,-0.047832790762186,-0.042286407202482]],[[-0.010207260027528,0.027968719601631,0.0041603064164519],[0.0067162322811782,0.019540004432201,-0.00074843870243058],[-0.026488449424505,-0.021879244595766,-0.017899682745337]],[[0.02907570451498,-0.013288697227836,0.01434881053865],[-0.062206074595451,0.069179020822048,0.023528851568699],[-0.11360964179039,-0.056053854525089,-0.041062261909246]],[[0.00074529577977955,0.035264533013105,0.0023169787600636],[0.067434348165989,-0.006059005856514,-0.061080262064934],[-0.031036263331771,0.04085511341691,-0.012707898393273]],[[0.014198279008269,0.0061327908188105,0.072089217603207],[0.04902858287096,0.0074611119925976,0.05928049236536],[0.012028461322188,-0.027496583759785,0.029429759830236]],[[-0.023715261369944,-0.048618044704199,0.069813527166843],[0.063563615083694,-0.045731157064438,-0.0059523996897042],[-0.028651043772697,-0.010443115606904,0.014486586675048]],[[-0.057062681764364,0.015615560114384,0.034850597381592],[0.0016469382680953,-0.023563070222735,0.023481300100684],[-0.027939096093178,0.00031050245161168,0.011755931191146]],[[0.014095381833613,-0.044155456125736,-0.028008785098791],[0.03677099198103,-0.034072779119015,-0.033398296684027],[0.026318466290832,-0.022588802501559,-0.035792842507362]],[[0.0053271758370101,-0.0025741271674633,-0.045259196311235],[-0.061413377523422,-0.082855105400085,-0.030965944752097],[-0.15929175913334,-0.11593379080296,-0.017820786684752]],[[0.022990759462118,-0.008607629686594,0.0035891977604479],[0.020621215924621,-0.0089904079213738,-0.053347453474998],[-0.046019360423088,-0.034592159092426,0.072746947407722]],[[-0.086272813379765,-0.05093277990818,-0.0024718607310206],[-0.009135514497757,-0.064432479441166,0.0053757140412927],[-0.026387736201286,0.010150534100831,-0.0414182767272]],[[-0.13237777352333,0.042074713855982,0.018774438649416],[-0.10002636164427,0.023071464151144,0.0043229917064309],[-0.025859840214252,0.062151581048965,0.01714088767767]],[[0.019257804378867,0.0187728703022,-0.014948379248381],[-0.067324131727219,-0.0017394977621734,-0.10944487899542],[0.034033171832561,-0.057300806045532,-0.029169924557209]],[[0.058488044887781,-0.0044369036331773,-0.020895160734653],[0.053630862385035,-9.4699698820477e-06,0.013494054786861],[-0.030780881643295,-0.049677360802889,-0.08145459741354]],[[0.044267073273659,0.033529054373503,-0.036116871982813],[-0.0079411957412958,-0.074257865548134,-0.011170005425811],[0.016474774107337,-0.022330036386847,-0.054674196988344]],[[-0.033681895583868,0.01068396307528,-0.031491223722696],[-0.0062166727147996,-0.027275513857603,-0.017805544659495],[0.011813620105386,-0.053667787462473,0.021494911983609]],[[0.037081256508827,-0.024759018793702,-0.010206536389887],[0.038561277091503,-0.00544094434008,0.0057534440420568],[0.036461047828197,-0.007141372654587,-0.0075464462861419]],[[0.018310435116291,-0.03555491194129,-0.065095290541649],[0.093160398304462,-0.0026847717817873,0.055228345096111],[-0.0063462220132351,-0.016026079654694,0.052368246018887]],[[-0.00065058830659837,0.012956640683115,0.016949281096458],[0.063433036208153,-0.03571580722928,0.046494923532009],[0.011775818653405,-0.0094397496432066,0.067619636654854]],[[-0.0049737035296857,0.005970187485218,-0.022900260984898],[0.014290473423898,0.086080573499203,-0.024353107437491],[-0.0022979436907917,0.072253167629242,-0.014666071161628]],[[0.00341513636522,0.047387003898621,0.020494390279055],[-0.019142046570778,0.10236228257418,0.025134403258562],[-0.0231718942523,0.0017528861062601,0.096599169075489]],[[0.00069251848617569,0.0075857345946133,-0.015853764489293],[0.02280168607831,-0.014041219837964,-0.017373947426677],[0.039678532630205,-0.054129626601934,-0.048630833625793]],[[-0.016278397291899,0.061073772609234,0.0058326139114797],[-0.013746335171163,0.092368304729462,-0.033754967153072],[-0.1037168353796,0.043401647359133,0.033180721104145]],[[0.018795674666762,-0.023690216243267,0.0052484828047454],[0.00092390296049416,-0.0061472184024751,-0.0078996745869517],[0.053065773099661,0.062336131930351,-0.040420398116112]],[[-0.0020948385354131,-0.026809530332685,-0.026082269847393],[0.0046873157843947,-0.071147851645947,-0.032365802675486],[0.034409694373608,-0.0050859581679106,-0.059075750410557]],[[-0.020202958956361,-0.022119667381048,-0.067628689110279],[0.028458742424846,0.034485444426537,-0.016917577013373],[-0.019299542531371,-0.044192310422659,-0.035547431558371]]],[[[-0.022690281271935,0.0070617478340864,0.0047127767466009],[0.028370739892125,0.033304065465927,-0.0095186093822122],[-0.063477285206318,-0.009173977188766,-0.075249090790749]],[[0.0076062185689807,0.061773329973221,0.045048579573631],[0.0099092843011022,-0.037494976073503,0.05729067325592],[-0.052157070487738,-0.028997542336583,-0.060708574950695]],[[-0.013452156446874,-0.0001302105083596,0.1078797057271],[-0.033953852951527,-0.0938840508461,-0.059022258967161],[-0.052516173571348,-0.053713615983725,0.014901704154909]],[[-0.0092869205400348,-0.017014916986227,0.050618216395378],[-0.023608330637217,-0.012814477086067,0.0047900737263262],[0.0017869959119707,-0.0099281594157219,-0.072130806744099]],[[-0.023321310058236,-0.050433680415154,0.037145730108023],[-0.054845001548529,-0.062021106481552,0.02399168163538],[-0.0029061795212328,0.030151832848787,-0.037509724497795]],[[0.017953772097826,0.022569969296455,0.0060833436436951],[-0.059950206428766,-0.0077766142785549,0.039112955331802],[-0.085207998752594,-0.0047393604181707,-0.012342342175543]],[[0.023475946858525,-0.030139748007059,-0.027876205742359],[0.014656695537269,0.024467268958688,0.061589919030666],[-0.069549076259136,0.018218455836177,0.045020755380392]],[[0.025903725996614,0.0085474792867899,-0.0048296898603439],[-0.0080872476100922,0.044802196323872,0.040873445570469],[-0.060521446168423,0.0091296434402466,-0.013970407657325]],[[-0.077540658414364,-0.068073250353336,0.049195725470781],[0.0022401921451092,-0.017379751428962,-0.02224281989038],[0.0016743026208133,0.036239448934793,-0.080969125032425]],[[0.011096253059804,0.019031025469303,-0.045933146029711],[-0.0069630644284189,0.0012204381637275,-0.0018037226982415],[0.0033717665355653,0.036552999168634,0.027244418859482]],[[0.03792741894722,0.10484034568071,0.010874486528337],[0.014781291596591,0.00077219132799655,0.025608163326979],[-0.016207251697779,-0.10439215600491,-0.0068221678957343]],[[0.034188311547041,0.0083618313074112,0.0036503146402538],[0.021516351029277,-0.082481428980827,-0.035271998494864],[-0.051244057714939,-3.517372533679e-05,0.038142260164022]],[[-0.012279731221497,-0.031070183962584,-0.0065149422734976],[0.022655621170998,-0.058853521943092,0.0094851469621062],[-0.005738609470427,0.044319100677967,-0.01728749461472]],[[-0.042846422642469,0.045793198049068,-0.045368116348982],[0.024445120245218,-0.063690386712551,-0.049002457410097],[-0.011210040189326,-0.033207565546036,-0.015810523182154]],[[0.03697345405817,-0.02649325504899,-0.0068051461130381],[-0.083214640617371,0.038780566304922,-0.067792139947414],[0.055548265576363,0.014022673480213,-0.024122674018145]],[[-0.0095535386353731,-0.005519503261894,-0.027113977819681],[0.032195702195168,0.048067688941956,0.044415466487408],[-0.039539955556393,0.013833498582244,0.028681652620435]],[[0.010937357321382,0.041798073798418,0.023653915151954],[0.070825360715389,-0.030501613393426,-0.042648412287235],[0.036203850060701,0.012188126333058,-0.045928921550512]],[[0.029789404943585,0.00309485103935,-0.042771629989147],[0.01210770662874,-0.047512367367744,-0.069728434085846],[-0.030714776366949,0.032669488340616,0.01028155721724]],[[0.079816497862339,0.004394169896841,0.0011782820802182],[-0.0091384183615446,-0.018304195255041,-0.0026846861001104],[0.0045420001260936,-0.030602768063545,0.028809905052185]],[[-0.015462584793568,-0.010282123461366,0.00050612818449736],[0.090035371482372,0.04244676977396,-0.010461535304785],[0.012355827726424,-0.018463110551238,-0.032534159719944]],[[-0.0034604743123055,0.013481875881553,-0.0058537982404232],[0.014322690665722,0.014587950892746,-0.09111949801445],[0.064168617129326,0.032687086611986,0.035858448594809]],[[0.060568194836378,-0.019514087587595,0.032335210591555],[0.0017865637782961,0.018014220520854,0.046509943902493],[-0.025022702291608,0.045692462474108,0.025018259882927]],[[-0.03146243840456,-0.018593035638332,0.025077352300286],[-0.003447653260082,0.028203019872308,0.049401309341192],[0.029474802315235,-0.0071310070343316,0.010016565211117]],[[0.0094665624201298,0.050771176815033,0.11149766296148],[-0.045012347400188,0.0069704367779195,0.041649423539639],[-0.086449421942234,-0.00068147206911817,-0.063266463577747]],[[-0.0066765644587576,-0.0012369278119877,0.082661099731922],[-0.016267506405711,-0.06542082875967,0.010441067628562],[0.043755788356066,-0.046278011053801,0.021056961268187]],[[0.073808915913105,0.013431029394269,0.058554425835609],[-0.034008227288723,0.024018283933401,0.080740854144096],[0.0035148782189935,0.015920760110021,-0.044813584536314]],[[-0.015873281285167,-0.021817721426487,-0.030243597924709],[-0.018456425517797,0.080658666789532,0.056254796683788],[-0.022952111437917,0.07825468480587,0.033501490950584]],[[0.010216145776212,-0.013666014187038,0.15025529265404],[0.0023670960217714,0.019298626109958,0.0091652171686292],[-0.00031120982021093,-0.0068999682553113,0.024401389062405]],[[0.01035036239773,-0.051343772560358,0.013747676275671],[-0.054760929197073,0.020046768710017,0.020385293290019],[-0.061490561813116,-0.093665882945061,0.1038501188159]],[[0.065654210746288,-0.024000059813261,-0.033398762345314],[0.0039411946199834,-0.073881775140762,-0.07048187404871],[-0.0033864935394377,0.055239610373974,-0.026408491656184]],[[-0.0046466337516904,-0.031178886070848,0.096539340913296],[-0.0029340796172619,0.0024204375222325,0.065485320985317],[-0.020958475768566,0.01148565672338,-0.021817313507199]],[[0.023326450958848,-0.0074954726733267,-0.049076851457357],[-0.053419314324856,0.021508691832423,0.070621021091938],[-0.054336126893759,0.037747636437416,0.061070658266544]],[[-0.0052221626974642,0.0026438103523105,0.073596268892288],[0.020917309448123,0.0097354929894209,0.0040402431041002],[0.02023901604116,0.044679515063763,-0.06418514996767]],[[0.050812777131796,-0.054285179823637,0.02991502918303],[0.014747388660908,0.00053919793572277,-0.033799469470978],[0.061618633568287,0.0099777588620782,-0.024097325280309]],[[-0.0071981213986874,-0.032406430691481,-0.0049963099882007],[0.034627914428711,0.055119503289461,0.010608407668769],[0.053362496197224,-0.025189697742462,0.032787777483463]],[[0.027317864820361,-0.02688030153513,0.011224606074393],[-0.074470929801464,-0.049504924565554,-0.040694646537304],[0.039143674075603,0.018836883828044,0.066323533654213]],[[-0.0076377638615668,0.075983472168446,-0.017374468967319],[0.010826638899744,-0.050810471177101,-0.02716863900423],[-0.018548056483269,-0.055107451975346,0.046793255954981]],[[0.035257082432508,-0.065476953983307,0.027722518891096],[0.010937014594674,0.0088423015549779,0.026518503203988],[0.024992948397994,-0.038723975419998,0.036888599395752]],[[-0.043920785188675,0.051302645355463,-0.022919736802578],[0.078956365585327,-0.070113554596901,0.025969531387091],[-0.045068453997374,-0.075466930866241,-0.011139877140522]],[[-0.052365239709616,0.073103941977024,-0.015030721202493],[0.031347025185823,0.048968583345413,-0.046523008495569],[0.018181713297963,0.08491325378418,-0.017355201765895]],[[0.0012018665438518,-0.013397760689259,-0.0011175837134942],[-0.016021590679884,0.01370248105377,0.054865263402462],[0.009843410924077,0.029740916565061,0.003767219837755]],[[-0.053211461752653,0.10377817600965,0.0021987902000546],[0.017442753538489,0.070802815258503,-0.0065146111883223],[-0.027725225314498,-0.031893346458673,-0.049671191722155]],[[0.025849062949419,0.029652958735824,-0.011058223433793],[-0.0005113193183206,-0.087644219398499,0.016754243522882],[0.04587334394455,0.015181720256805,-0.021246451884508]],[[0.044521532952785,-0.0066186049953103,-0.069714657962322],[-0.042089134454727,0.026802821084857,-0.024608682841063],[-0.020534662529826,0.001943722483702,-0.056386604905128]],[[0.022293865680695,-0.033526074141264,0.044928640127182],[0.019087094813585,0.016562921926379,0.036039583384991],[0.003704478032887,-0.04484398663044,0.048150554299355]],[[-0.0701003074646,-0.02330157160759,0.083413004875183],[0.026410793885589,0.006040520966053,-0.018341636285186],[-0.039086919277906,0.019829668104649,0.04584551602602]],[[-0.0089867832139134,-0.048030868172646,-0.024666277691722],[0.014247324317694,0.0148796280846,-0.016493847593665],[-0.015898583456874,-0.039538167417049,0.016901563853025]],[[0.0029253605753183,-0.040825057774782,0.011862155050039],[-0.064920090138912,-0.056366216391325,-0.032545190304518],[0.0026156888343394,-0.014288008213043,0.010468601249158]],[[0.0065083252266049,-0.071160763502121,-0.050367273390293],[0.023265764117241,-0.036438468843699,-0.074318662285805],[-0.060075595974922,0.012626629322767,0.007684491109103]],[[-0.023684721440077,0.014211231842637,0.0013052863068879],[0.017198715358973,0.044322494417429,0.066150240600109],[-0.027678431943059,-0.0062355371192098,-0.06062414124608]],[[0.047663077712059,-0.049217473715544,0.0051643499173224],[0.044029925018549,0.001944575458765,-0.10099827498198],[-0.036491576582193,0.00077135802712291,0.045671537518501]],[[0.026341918855906,-0.04139544442296,-0.015133775770664],[0.052444513887167,0.01730502769351,0.027559664100409],[0.030328910797834,0.0011542512802407,0.028575601056218]],[[0.061124041676521,-0.0085376007482409,0.017404779791832],[0.023155596107244,0.037765823304653,-0.082946792244911],[0.029150258749723,-0.066592007875443,-0.044004119932652]],[[-0.027223853394389,0.013507118448615,0.053663838654757],[-0.11077814549208,0.093048483133316,0.035426672548056],[-0.052894901484251,0.057111293077469,-0.084551684558392]],[[-0.01678116992116,-0.023567333817482,0.034136362373829],[0.031420882791281,-0.063398905098438,0.0051287356764078],[-0.022326236590743,0.058616664260626,-0.0059888395480812]],[[-0.038689862936735,-0.0030171575490385,-0.0031242882832885],[0.010301279835403,0.04448314383626,0.033682961016893],[0.027970844879746,0.006763297598809,-0.018664596602321]],[[0.0036489486228675,0.030699286609888,-0.039838813245296],[-0.041971743106842,-0.011518100276589,0.031469956040382],[0.038519211113453,-0.020930355414748,-0.035458318889141]],[[0.04717542976141,-0.0054145907051861,-0.044508822262287],[0.006491778884083,-0.051161833107471,0.010533626191318],[0.0061405496671796,-0.052886258810759,-0.030601156875491]],[[-0.039164710789919,0.023076755926013,0.037879399955273],[-0.022618997842073,-0.031386252492666,0.029175193980336],[0.071035273373127,0.0082190986722708,-0.052142277359962]],[[0.011982499621809,0.10966227948666,0.0062234764918685],[0.0035767229273915,0.07223978638649,-0.058309536427259],[-0.02667948231101,0.057398475706577,0.010591275058687]],[[0.068380072712898,0.068235345184803,-0.021146189421415],[0.0062399515882134,0.048980321735144,0.0057285679504275],[-0.011300917714834,-1.8014079614659e-05,-0.037062905728817]],[[-0.023766560479999,-0.072077296674252,-0.042031023651361],[0.0078645851463079,-0.055680867284536,-0.0054408698342741],[-0.021552124992013,-0.037991408258677,0.0092046586796641]],[[-0.066167443990707,0.035533241927624,-0.062197886407375],[-0.0086026014760137,-0.06014595925808,-0.036777127534151],[0.010170171968639,-0.017760924994946,-0.01811720058322]],[[-0.023618003353477,0.0091829216107726,0.020856058225036],[-0.0020642676390707,0.060762785375118,-0.074051901698112],[0.01245195325464,-0.015704847872257,-0.039545122534037]],[[-0.017793126404285,-0.0031166835688055,-0.02557030133903],[0.033334761857986,-0.013286233879626,0.018576145172119],[0.0099905906245112,0.06043990328908,-0.06113101541996]],[[-0.041381280869246,-0.014813823625445,0.072645358741283],[-0.074608184397221,0.017092121765018,-0.079017922282219],[0.041614223271608,0.0360320918262,-0.045719802379608]],[[-0.0018526420462877,-0.014890344813466,0.066164396703243],[0.04735879227519,-0.072698839008808,0.0061007915064692],[0.039917226880789,0.0031833811663091,-0.019097696989775]],[[0.072152733802795,0.055130589753389,0.031051645055413],[0.074701480567455,0.061995338648558,0.015714282169938],[0.054617542773485,-0.03061455488205,-0.0052186651155353]],[[0.012876160442829,0.032627660781145,-0.078537799417973],[-0.013634934090078,0.048726122826338,-0.038782186806202],[-0.073855899274349,-0.00045738558401354,-0.025223409757018]],[[0.10600847005844,0.027212264016271,0.019799310714006],[-0.018619708716869,-0.022522933781147,0.041545767337084],[0.08706583827734,-0.054765798151493,0.034314341843128]],[[0.012618098407984,0.011726112104952,0.0032996281515807],[-0.0027447070460767,0.069723732769489,0.033448077738285],[-0.024059625342488,0.023668708279729,0.0072043407708406]],[[0.018880734220147,-0.06655515730381,0.035708744078875],[-0.024784419685602,0.011182812973857,0.064950831234455],[-0.039275042712688,0.036962851881981,-0.087574496865273]],[[0.060222670435905,-0.049819801002741,0.023499816656113],[0.054655410349369,-0.061100400984287,0.0039894222281873],[-0.05345044657588,0.012042075395584,-0.029987318441272]],[[0.041569318622351,-0.051016636192799,0.027643498033285],[-0.016133861616254,0.029504626989365,0.069652788341045],[-0.01421307399869,-0.028288666158915,-0.05934476852417]],[[0.021740173920989,-0.0040324679575861,-0.030492752790451],[-0.022383572533727,0.0066296411678195,-0.0069225709885359],[0.012733788229525,0.041437808424234,0.066183649003506]],[[0.091692112386227,-0.033734392374754,-0.037567123770714],[0.037047475576401,0.0082350540906191,-0.015287100337446],[0.0047880536876619,0.0453583560884,-0.026174871250987]],[[-0.015767224133015,-0.017705617472529,-0.0030365874990821],[0.016177091747522,-0.062711633741856,-0.1166158169508],[-0.057821001857519,0.013760394416749,-0.020967287942767]],[[0.011137714609504,0.067153990268707,0.033093474805355],[0.026369873434305,-0.082697153091431,0.027671808376908],[-0.084761016070843,-0.015102511271834,-0.053929220885038]],[[-0.0026061302050948,0.046447191387415,-0.03898411989212],[-0.02094965800643,-0.0069789057597518,0.08188770711422],[0.034419894218445,0.024338647723198,0.0042062350548804]],[[-0.031907558441162,-0.032354027032852,-0.075930021703243],[-0.018349599093199,-0.063737474381924,-0.04346850886941],[0.042269520461559,0.10160601139069,-0.056394390761852]],[[0.031675178557634,-0.084764003753662,-0.076582327485085],[0.020327808335423,-0.013357485644519,0.00776979746297],[-0.081785343587399,0.064110100269318,0.039066307246685]],[[0.0076570007950068,0.011753177270293,-0.0031485666986555],[0.0029970232862979,0.0048904484137893,-0.053549163043499],[0.043649595230818,0.0026643446180969,0.054555054754019]],[[-0.0097340838983655,-0.010085152462125,-0.062129881232977],[0.0018781983526424,-0.078776016831398,-0.043462675064802],[-0.054218336939812,0.025947201997042,-0.001982505666092]],[[0.00066585338208824,-0.075716905295849,-0.011171441525221],[0.039403729140759,-0.025929933413863,0.074320003390312],[0.090831063687801,0.019721059128642,-0.036649368703365]],[[0.0011789853451774,0.081367433071136,0.068625055253506],[-0.036916974931955,0.028877949342132,0.050293475389481],[0.020486600697041,0.026391435414553,-0.022366492077708]],[[-0.0080723725259304,-0.10665635764599,-0.052926629781723],[0.041182395070791,-0.047622840851545,-0.018837232142687],[0.015451130457222,0.065188623964787,0.074769504368305]],[[0.015385184437037,-0.039551585912704,-0.054165154695511],[0.051324058324099,0.023156452924013,-0.074595421552658],[-0.0097804013639688,-0.0088131753727794,-0.019552439451218]],[[0.045006234198809,-0.04945395514369,0.054016586393118],[-0.034188345074654,-0.0072414185851812,-0.045071989297867],[0.007882515899837,0.056426141411066,0.0046237707138062]],[[0.087773814797401,-0.036033309996128,0.02038212120533],[0.064493745565414,-0.0080843726173043,-0.010659604333341],[-0.057632278650999,0.025254029780626,0.0054016169160604]],[[-0.036847531795502,-0.0079231606796384,-0.023789307102561],[-0.018752971664071,0.061229970306158,0.0062843295745552],[0.067987971007824,-0.011153198778629,0.040833249688148]],[[-0.020676909014583,0.017954433336854,-0.032036293298006],[0.030016079545021,-0.029942100867629,0.029010903090239],[-0.0014366901014,0.03200239688158,0.05252081528306]],[[-0.047179661691189,0.023394597694278,0.026914443820715],[-0.077240012586117,-0.0067701190710068,0.066406942903996],[-0.044372372329235,0.025811217725277,0.038213431835175]],[[0.047839120030403,0.051470551639795,-0.011411920189857],[-0.016581969335675,-0.011936691589653,0.013475587591529],[0.05211241170764,-0.044903561472893,-0.0026910610031337]],[[-0.032873377203941,0.0088509311899543,0.04911856725812],[0.079824924468994,0.026579782366753,-0.031603276729584],[-0.050784409046173,0.079592369496822,0.0042032841593027]],[[0.045423477888107,-0.069880843162537,-0.044147230684757],[-0.087641477584839,-0.025508334860206,-0.018269354477525],[0.054011557251215,0.057816728949547,0.0058042779564857]],[[-0.016256475821137,0.034245062619448,0.029561446979642],[-0.040472019463778,-0.037038691341877,0.026733445003629],[-0.071314185857773,-0.061819717288017,0.0019800900481641]],[[0.025618188083172,-0.0050831786356866,-0.069005034863949],[-0.087237671017647,0.034908480942249,0.022516364231706],[0.056759629398584,0.040479630231857,-0.037209697067738]],[[-0.045265760272741,0.080184124410152,-0.046842627227306],[-0.039718739688396,-0.025820896029472,0.0061408211477101],[-0.025601780042052,-0.032886609435081,-0.06677334010601]],[[0.038923792541027,-0.014816605485976,0.030823588371277],[-0.061718165874481,0.026534505188465,0.0028785190079361],[0.056041479110718,0.0019689137116075,-0.0042118104174733]],[[0.021558137610555,0.017933167517185,-0.065350331366062],[-0.041608177125454,-0.0088513055816293,0.015105190686882],[-0.00399931659922,-0.018877442926168,0.0091972751542926]],[[-0.037355370819569,-0.035127799957991,-0.023998672142625],[0.038691245019436,0.019995182752609,-0.0018568427767605],[-0.045518808066845,-0.031617406755686,0.023625450208783]],[[0.013724927790463,-0.018113536760211,0.050479624420404],[-0.032876491546631,-0.026057319715619,0.0064929774962366],[-0.024814693257213,4.3225802073721e-05,0.03385666012764]],[[0.0066332379356027,0.012145731598139,0.033783573657274],[-0.020873932167888,-0.055796016007662,0.036121744662523],[-0.022010555490851,-0.062319342046976,0.02820379845798]],[[0.035430699586868,-0.039658971130848,0.024382403120399],[-0.023464653640985,0.032751001417637,0.026650438085198],[-0.0021157434675843,-0.052303485572338,-0.017175020650029]],[[0.072312466800213,0.078431561589241,-0.043239135295153],[0.0051348777487874,-0.03515899553895,0.012475606054068],[0.024051925167441,-0.0024974357802421,-0.075621597468853]],[[0.043575823307037,0.04048814997077,0.0050617577508092],[-0.0040827235206962,-0.026205746456981,-0.016189778223634],[-0.033414267003536,-0.022772260010242,0.064203105866909]],[[-6.2116032495396e-06,0.0088398735970259,0.029987219721079],[0.0059526567347348,0.00010812615801115,-0.039748497307301],[0.051836546510458,0.011695140041411,0.037268068641424]],[[0.021579956635833,-0.0043335594236851,0.016192635521293],[-0.045883301645517,-0.043660886585712,-0.002879673615098],[0.088893823325634,0.015135392546654,-0.017788175493479]],[[-0.054992821067572,0.016758123412728,-0.05655849352479],[0.056712027639151,-0.035020899027586,0.00053413410205394],[0.03764209523797,0.031080162152648,-0.02840299718082]],[[0.058472145348787,-0.022865606471896,0.00020316080190241],[-0.0086888959631324,-0.054196428507566,0.034530069679022],[-0.066832527518272,0.010362640023232,0.028452413156629]],[[0.0047594229690731,0.038195468485355,-0.01749299839139],[0.0010620333487168,0.072515711188316,0.010105268098414],[0.027605472132564,0.099990181624889,-0.040385186672211]],[[-0.041598696261644,-0.0251330062747,-0.01908577978611],[-0.017052115872502,0.011191567406058,0.03130804002285],[0.0022320279385895,-0.022786371409893,0.027197813615203]],[[5.5757886002539e-05,-0.058579362928867,-0.0065967524424195],[0.069955475628376,0.067644782364368,0.048309210687876],[-0.019979173317552,0.050320398062468,-0.029919153079391]],[[0.0046854866668582,-0.014851167798042,0.033109698444605],[0.072104454040527,-0.020390456542373,-0.04204735904932],[0.007761103566736,0.01236133929342,-0.065501011908054]],[[0.053162205964327,0.023450223729014,0.010944874957204],[-0.039161667227745,0.056979328393936,-0.092822581529617],[-0.050595037639141,-0.06212604790926,0.0039017691742629]],[[0.014285304583609,0.01253396179527,-0.010445268824697],[-0.11602709442377,0.0068262950517237,-0.002148793078959],[0.033211696892977,-0.07130228728056,0.017187749966979]],[[-0.067282140254974,0.046971913427114,-0.079709313809872],[0.040158752351999,0.045425713062286,0.040214087814093],[0.000257042091107,-0.014656133949757,0.023111436516047]],[[-0.017517210915685,-0.039577096700668,0.018315684050322],[-0.012282892130315,0.019183401018381,-0.0028371207881719],[-0.068484626710415,0.067166030406952,0.019320512190461]],[[0.03506987541914,0.011416845954955,-0.057248517870903],[0.10534524172544,0.0011096651433036,-0.081701442599297],[-0.050343874841928,-0.021067036315799,-0.04756635427475]],[[-0.10851643979549,0.0098707852885127,-0.024239173159003],[0.0085304323583841,-0.10618549585342,0.072648033499718],[-0.097525209188461,0.019261153414845,0.066014863550663]],[[0.057967651635408,-0.020624103024602,-0.0071275918744504],[-0.024072464555502,-0.01927850022912,-0.010662885382771],[-0.027118911966681,-0.015962870791554,0.0057447580620646]],[[-0.040506847202778,0.040448918938637,0.022906389087439],[-0.025128873065114,-0.0089422091841698,0.034985888749361],[0.019209321588278,-0.020075239241123,-0.0059748431667686]],[[0.06817139685154,-0.036464516073465,-0.031149646267295],[0.0068496647290885,-0.023175477981567,-0.061265837401152],[-0.034320842474699,-0.021753584966063,0.04693429172039]],[[0.008887117728591,-0.089404672384262,0.032718613743782],[0.038466844707727,0.019305560737848,-0.037273425608873],[-0.0073186894878745,-0.067640021443367,0.022386882454157]],[[-0.05296416208148,-0.013243301771581,0.017743786796927],[-0.053458724170923,-0.016838166862726,-0.082547053694725],[-0.036644231528044,0.014762976206839,-0.065176270902157]],[[0.027604790404439,0.027239819988608,0.017827020958066],[0.035566981881857,0.010994585230947,-0.053439594805241],[-0.027493180707097,-0.032168593257666,-0.040336329489946]],[[0.017464833334088,0.021748043596745,0.012097216211259],[0.0022222811821848,0.0025650395546108,-0.0089762415736914],[-0.038124732673168,0.04244489222765,0.027423413470387]],[[0.036201450973749,0.035390291363001,-0.063738390803337],[0.00064819777617231,-0.022037256509066,0.053566806018353],[0.079871088266373,0.025446327403188,-0.09466540813446]]],[[[0.081018045544624,0.075535111129284,0.056541614234447],[-0.12152056396008,-0.072918199002743,0.078313082456589],[-0.28591924905777,0.022052731364965,0.12726885080338]],[[0.059329226613045,-0.061448007822037,-0.16872724890709],[-0.0304219648242,-0.099478207528591,-0.039057914167643],[-0.048915237188339,-0.05150955170393,0.066889561712742]],[[0.012856921181083,-0.044776052236557,0.024660315364599],[-0.066327087581158,-0.16706214845181,-0.022263009101152],[-0.13589285314083,-0.19569911062717,-0.093011423945427]],[[0.049047421664,-0.079451464116573,0.045380145311356],[-0.022999718785286,0.16255682706833,0.011674142442644],[-0.025711433961987,0.13200119137764,-0.0545938834548]],[[0.035119142383337,0.26871213316917,-0.25443679094315],[-0.088408447802067,0.13561192154884,-0.15060284733772],[0.14239791035652,0.16606937348843,-0.134556889534]],[[0.053875014185905,-0.051626566797495,-0.011895183473825],[0.099534496665001,-0.052457273006439,-0.16943711042404],[0.086550332605839,-0.13036707043648,-0.081291280686855]],[[0.025818960741162,0.078791782259941,-0.19424472749233],[0.12668681144714,-0.083015501499176,0.089998692274094],[0.027373360469937,0.035780906677246,-0.033715803176165]],[[-0.036888144910336,0.32099506258965,0.083560787141323],[0.13002145290375,0.052845243364573,0.043464750051498],[0.17376661300659,0.27008005976677,0.15923112630844]],[[-0.041373398154974,-0.13739119470119,-0.090848319232464],[0.00077540933853015,0.071600802242756,-0.072663687169552],[0.049722000956535,-0.025954194366932,-0.16189180314541]],[[0.058130450546741,-0.11655293405056,0.038071393966675],[-0.071729637682438,0.0036559535656124,-0.023447284474969],[-0.17233507335186,-0.0030304507818073,-0.065932892262936]],[[-0.035838562995195,0.027173912152648,-0.21848033368587],[0.046216949820518,0.089425064623356,-0.027421312406659],[0.1084263920784,0.11921021342278,0.066144622862339]],[[-0.15385176241398,0.2013421356678,0.017847122624516],[-0.077187456190586,0.093360461294651,-0.0028208643198013],[-0.14645318686962,-0.10416220128536,0.06305693089962]],[[0.041472479701042,0.047873456031084,-0.11969467252493],[0.025107316672802,0.032891888171434,-0.045501530170441],[-0.074023835361004,-0.028392404317856,-0.075251802802086]],[[0.10321294516325,-0.019923949614167,0.11558569222689],[-0.019278047606349,-0.35929131507874,0.14661966264248],[-0.039752840995789,-0.028259743005037,-0.1880070567131]],[[-0.038221869617701,-0.04193914309144,0.13733008503914],[0.060769531875849,0.029045650735497,-0.094818636775017],[-0.019914591684937,0.17427478730679,-0.00072120956610888]],[[0.093605861067772,-0.0082687456160784,-0.082215413451195],[-0.11562678962946,-0.032340582460165,-0.1249718144536],[-0.095727294683456,0.039266183972359,-0.11489416658878]],[[0.11272358894348,-0.14764440059662,0.0088840089738369],[0.11550930887461,0.095517739653587,0.12735207378864],[-0.00026961695402861,-0.11774422228336,0.024030098691583]],[[-0.12198749929667,-0.16696582734585,0.032004587352276],[0.11510213464499,-0.10726611316204,0.15805742144585],[0.33196130394936,0.0925547555089,-0.080332234501839]],[[0.062759473919868,0.0015558631857857,0.2081177085638],[-0.025739248842001,-0.028971051797271,0.0028611493762583],[0.052425164729357,-0.13239309191704,-0.052135951817036]],[[-0.13328111171722,-0.050874568521976,-0.010178444907069],[0.011085846461356,-0.060955468565226,0.083663746714592],[-0.10691556334496,-0.19025824964046,-0.03286886587739]],[[-0.044021189212799,0.063670560717583,-0.079334624111652],[-0.048577457666397,-0.067538656294346,-0.014355750754476],[-0.15467070043087,0.0046816770918667,-0.08704836666584]],[[0.074467428028584,-0.11805199831724,-0.0097325434908271],[0.07711423188448,0.15046218037605,0.13260355591774],[0.20715962350368,-0.1841212362051,-0.035808015614748]],[[0.014980169944465,0.18917240202427,-0.12355971336365],[-0.023955935612321,0.081650525331497,0.041852261871099],[0.039605308324099,0.056390635669231,-0.097162768244743]],[[-0.053599275648594,-0.059242196381092,-0.058473918586969],[0.010256594978273,-0.072292149066925,0.0058076293207705],[-0.061433579772711,0.092535741627216,-0.13334600627422]],[[-0.088875308632851,0.043312206864357,0.28680434823036],[0.01976397074759,0.13125415146351,0.23967128992081],[0.27762517333031,-0.11535943299532,-0.0042650466784835]],[[0.18923506140709,-0.11424537748098,-0.16575944423676],[0.11626493930817,-0.1360981464386,-0.098950944840908],[0.018702080473304,-0.026893295347691,-0.15369501709938]],[[-0.0638098269701,-0.15241208672523,-0.15085582435131],[-0.090416356921196,-0.048170439898968,0.13009829819202],[0.0016116218175739,-0.010717895813286,-0.1161010786891]],[[0.038562912493944,-0.0037322696298361,-0.090104714035988],[-0.028487164527178,0.042002201080322,-0.083944298326969],[-0.037457812577486,0.035057496279478,-0.10236325860023]],[[0.033502880483866,-0.030316511169076,-0.085731200873852],[0.013292114250362,0.13074937462807,0.080012209713459],[0.087192550301552,0.024860946461558,0.049818251281977]],[[-0.094925507903099,0.19130855798721,-0.058921780437231],[-0.053735230118036,0.29737129807472,-0.024629084393382],[0.12888868153095,0.017048859968781,-0.10730546712875]],[[0.12689052522182,0.024312181398273,-0.092832110822201],[0.031552243977785,-0.008772486820817,-0.023495230823755],[0.067078411579132,0.26522567868233,-0.025477726012468]],[[0.059686250984669,0.14682674407959,-0.1586299687624],[-0.017470005899668,0.029951259493828,0.067008063197136],[-0.050860099494457,-0.045431509613991,-0.050222367048264]],[[0.050799634307623,-0.0020574210211635,0.063164815306664],[0.013763116672635,-0.024433936923742,0.086464524269104],[-0.14005833864212,-0.010059100575745,-0.028021426871419]],[[-0.012828868813813,-0.014447495341301,0.051980767399073],[0.042223121970892,0.087914735078812,0.011164207011461],[0.086289077997208,0.10585466772318,-0.12154642492533]],[[-0.050551272928715,-0.14644023776054,-0.057879522442818],[0.015415962785482,-0.11136890202761,0.21317802369595],[-0.028934590518475,0.0080744093284011,0.12949785590172]],[[0.0029473740141839,-0.3136148750782,0.16123256087303],[-0.18072775006294,-0.065766237676144,0.1123218536377],[-0.13974864780903,-0.081287391483784,-0.064477175474167]],[[-0.13612611591816,0.044607929885387,0.123311676085],[0.014355955645442,-0.054676953703165,0.19186662137508],[-0.042588293552399,0.1286728233099,0.18565380573273]],[[-0.11666220426559,-0.021145490929484,0.26972860097885],[0.13294610381126,0.082921952009201,-0.017840107902884],[-0.015298690646887,-0.10154674202204,-0.12341565638781]],[[0.029908603057265,0.070354431867599,-0.15283006429672],[0.070803806185722,0.024444838985801,-0.13095243275166],[0.20805977284908,0.077283576130867,-0.10417138040066]],[[-0.095809392631054,0.10592016577721,0.036452598869801],[0.032708261162043,0.1612900942564,-0.084119752049446],[-0.14277110993862,0.035015396773815,0.021049516275525]],[[0.038718566298485,-0.066401213407516,0.07004527002573],[-0.024718603119254,-0.010346645489335,-0.066989123821259],[-0.035132803022861,0.057029888033867,-0.032571047544479]],[[0.071049489080906,0.043334741145372,-0.0088186413049698],[0.048803482204676,0.019848207011819,-0.1437640786171],[0.094779394567013,0.036261115223169,-0.11416818201542]],[[0.077891208231449,-0.085786670446396,0.25740963220596],[-0.0843291208148,0.066589586436749,-0.13013833761215],[0.10710058361292,-0.018667353317142,0.092062443494797]],[[0.013091539032757,0.037603944540024,-0.09224147349596],[0.028187794610858,0.02890644967556,-0.018556335940957],[0.040769591927528,0.023167172446847,0.0022025052458048]],[[0.00084566889563575,-0.11738606542349,-0.088804177939892],[-0.21841835975647,0.014114364981651,-0.088237427175045],[-0.055310055613518,0.044306211173534,-0.088499404489994]],[[0.076041162014008,0.056470707058907,0.10756623744965],[-0.002322010230273,0.1223012059927,-0.14341947436333],[0.096586257219315,0.01149626262486,-0.027339302003384]],[[-0.1338562220335,-0.20958761870861,0.32412034273148],[0.0097960736602545,0.16366946697235,0.028429312631488],[-0.062943212687969,0.1522071659565,-0.049783691763878]],[[-0.099193155765533,0.090896189212799,-0.1673341691494],[-0.081569857895374,-0.15902850031853,-0.023560721427202],[-0.013677580282092,-0.021611345931888,0.011319874785841]],[[0.012375993654132,0.08977647870779,0.029011435806751],[-0.031512681394815,0.010429888963699,0.085888221859932],[0.087150298058987,0.071388207376003,0.04363476485014]],[[-0.0078457091003656,0.098155200481415,0.079523734748363],[-0.056231286376715,0.159278601408,0.006785346660763],[-0.10375364869833,0.080880999565125,-0.11870770901442]],[[0.033751793205738,-0.044636346399784,0.036842424422503],[-0.069709837436676,-0.077209047973156,-0.11449139565229],[0.12085240334272,-0.030264833942056,-0.027871571481228]],[[-0.19040334224701,-0.14715884625912,-0.010950786061585],[-0.063901826739311,-0.18312045931816,0.060104891657829],[-0.13934816420078,-0.17129726707935,0.15571947395802]],[[0.17716687917709,-0.053083341568708,0.073431827127934],[0.021978659555316,-0.04832911118865,0.0056343581527472],[-0.013824632391334,-0.036703199148178,0.098374933004379]],[[0.23658174276352,0.15751546621323,-0.20232072472572],[0.085425980389118,0.12133085727692,-0.051951598376036],[0.069427981972694,-0.051629077643156,-0.080568671226501]],[[0.10700245946646,0.16369184851646,-0.038184080272913],[-0.044677656143904,-0.024601409211755,0.18244333565235],[-0.055119134485722,0.11571503430605,0.12015351653099]],[[0.010976963676512,-0.07657116651535,0.14336203038692],[0.0143520263955,-0.036626845598221,0.11405919492245],[-0.051526520401239,-0.13657896220684,0.0090033141896129]],[[-0.010129537433386,0.12642239034176,0.15208020806313],[0.19147928059101,0.013185883872211,-0.004985008854419],[-0.011072007007897,-0.03868168964982,0.30967012047768]],[[-0.12728831171989,0.0078135319054127,0.075157560408115],[-0.032012593001127,-0.019958429038525,0.077855013310909],[0.057490531355143,-0.096407368779182,-0.1717227101326]],[[-0.097008928656578,0.043229229748249,-0.057938072830439],[-0.083290480077267,0.20647563040257,0.013144104741514],[-0.10962896794081,-0.098327346146107,-0.05011485144496]],[[0.004395226482302,-0.1087648421526,0.0027095843106508],[0.063819065690041,-0.054041791707277,0.083422124385834],[-0.11119093745947,-0.022272266447544,0.039554912596941]],[[-0.081115677952766,-0.10454897582531,-0.06806705892086],[-0.25825920701027,-0.012741324491799,0.0096938805654645],[-0.040841661393642,0.010326842777431,0.044849637895823]],[[-0.0044076787307858,-0.0016378549626097,-0.042091522365808],[0.069439768791199,-0.16516903042793,0.29651334881783],[0.10905940830708,-0.0068876147270203,-0.05843348801136]],[[0.016302848234773,-0.080342769622803,0.095902636647224],[0.036265704780817,0.011503728106618,-0.096659898757935],[0.087200485169888,-0.16894072294235,-0.17267635464668]],[[-0.20963197946548,0.018043931573629,0.059524796903133],[-0.060015980154276,-0.018472451716661,0.16169604659081],[-0.035603050142527,-0.10211961716413,0.060027379542589]],[[0.065643586218357,0.055046178400517,-0.12817443907261],[-0.08864289522171,0.20164984464645,0.0052845641039312],[-0.068905003368855,0.23200836777687,-0.16165636479855]],[[0.045941393822432,-0.017232919111848,-0.00994389411062],[0.10477031767368,0.01005092728883,-0.0041893301531672],[0.10916176438332,0.11578619480133,-0.11590937525034]],[[-0.088886193931103,-0.0044888430275023,0.11186321824789],[0.013487435877323,-0.023351589217782,-0.035681936889887],[-0.037577915936708,0.15274646878242,-0.12077602744102]],[[0.0031023109331727,-0.037570618093014,0.15967701375484],[-0.064176104962826,0.01752402074635,0.11239392310381],[0.078581176698208,-0.053472805768251,0.077393777668476]],[[-0.019085317850113,0.085615180432796,-0.019756697118282],[0.1740777939558,-0.097399152815342,-0.20111918449402],[0.075434021651745,-0.061098076403141,0.022865045815706]],[[0.075854435563087,0.074108332395554,-0.22373682260513],[-0.07246657460928,0.029508247971535,-0.13556689023972],[0.025342112407088,0.08921156078577,-0.12914767861366]],[[0.13694183528423,0.04469957575202,0.0090905940160155],[0.0092853540554643,-0.02672079205513,0.022540153935552],[0.0092210536822677,0.072015479207039,0.071221001446247]],[[-0.099786624312401,-0.081564038991928,-0.16193597018719],[-0.089181713759899,-0.027880629524589,0.17977014183998],[-0.014108704403043,0.012316185981035,0.092102162539959]],[[0.11420756578445,0.16477887332439,-0.14398327469826],[0.29701885581017,0.0080332048237324,-0.076839402318001],[-0.003409223863855,0.19274780154228,-0.06231589987874]],[[-0.0043485523201525,-0.029813192784786,0.035147447139025],[0.13031452894211,0.065449982881546,0.058678202331066],[0.13304081559181,0.11726887524128,0.032078217715025]],[[-0.26169115304947,-0.026615127921104,0.22345969080925],[-0.029958879575133,0.11236175149679,-0.066692568361759],[0.14075772464275,-0.016476590186357,-0.10767807811499]],[[-0.099236287176609,0.16350056231022,-0.014536895789206],[-0.12523528933525,0.021959604695439,-0.015993606299162],[0.072845153510571,0.098635494709015,0.087198704481125]],[[0.024077108129859,0.17336194217205,-0.075089104473591],[0.13050130009651,0.031678695231676,-0.13151830434799],[-0.076921157538891,-0.13088497519493,-0.029240289703012]],[[-0.032331943511963,0.093071542680264,-0.059731408953667],[0.18553674221039,0.23378191888332,0.016629660502076],[0.29162737727165,-0.063389532268047,0.012447874061763]],[[-0.044371105730534,0.084290623664856,-0.003620668547228],[-0.066357977688313,0.170982375741,-0.030222278088331],[0.010100899264216,0.017991673201323,0.069423779845238]],[[0.001430754782632,0.074173897504807,0.02122001722455],[-0.084511771798134,-0.05702668428421,-0.0093277906998992],[-0.14218616485596,-0.012081494554877,0.029790975153446]],[[0.10704085975885,-0.077121049165726,0.0009507475188002],[-0.11518687009811,-0.043678965419531,0.13232751190662],[-0.11818018555641,-0.010253676213324,-0.15326462686062]],[[-0.042688634246588,-0.059656146913767,0.070453435182571],[0.10502427071333,-0.046907905489206,-0.06319921463728],[-0.28442081809044,-0.050763737410307,0.10737282782793]],[[0.088498890399933,-0.12802256643772,0.12695424258709],[-0.11597272008657,0.067658379673958,0.11931120604277],[0.056408766657114,0.17026689648628,-0.088795572519302]],[[-0.088086888194084,0.097207903862,-0.028297277167439],[0.0072040157392621,-0.049265049397945,0.056376531720161],[-0.082885675132275,0.14333528280258,0.090609289705753]],[[0.028692271560431,-0.015348457731307,-0.057145401835442],[-0.074690595269203,-0.026986895129085,0.029020071029663],[-0.10409948974848,-0.12702690064907,-0.018970772624016]],[[0.035918720066547,0.10928586125374,0.16538666188717],[0.019410824403167,0.0027397270314395,-0.13905391097069],[0.11559345573187,-0.1374274045229,-0.096546724438667]],[[-0.024624045938253,0.0055807582102716,0.22328655421734],[0.024054290726781,0.070572294294834,0.076082371175289],[0.11610294878483,-0.064092591404915,0.025420485064387]],[[0.13058660924435,-0.069488659501076,-0.036604177206755],[0.022242866456509,-0.13266478478909,0.13401651382446],[0.040492281317711,0.063060291111469,0.032447583973408]],[[0.050869226455688,0.065280400216579,-0.0071967896074057],[-0.066003315150738,0.032684743404388,-0.077487289905548],[0.031904142349958,0.1706862449646,0.011405744589865]],[[0.0098692551255226,-0.15573671460152,-0.086231991648674],[0.13155503571033,-0.09578125923872,-0.24302883446217],[-0.10047743469477,0.040482226759195,-0.071315862238407]],[[-0.012646548449993,-0.059188175946474,-0.13353669643402],[-0.0068745873868465,-0.010631427168846,-0.07449346780777],[0.072664819657803,0.21692961454391,-0.039622377604246]],[[-0.040438577532768,0.20591926574707,-0.0095911473035812],[-0.16466736793518,0.096552059054375,0.053539495915174],[0.018864471465349,0.10820183902979,0.079704649746418]],[[0.22219516336918,-0.10786162316799,-0.10072159022093],[0.020595282316208,-0.050461497157812,0.059648714959621],[-0.098533317446709,0.086163207888603,0.10519783943892]],[[-0.16762380301952,-0.046517305076122,0.02432276494801],[-0.02509668469429,0.12307021766901,0.022395186126232],[0.11024781316519,-0.042098835110664,-0.21942184865475]],[[-0.011430518701673,0.15068989992142,0.1283977329731],[-0.020146103575826,0.10906025022268,0.19473972916603],[0.012446398846805,0.097121842205524,0.046131264418364]],[[0.0027290626894683,0.02280193939805,0.056951262056828],[-0.19353184103966,0.016986332833767,-0.025175286456943],[-0.039746396243572,0.048728782683611,0.030898546800017]],[[-0.030050637200475,-0.053176108747721,0.029052333906293],[0.04844718053937,0.099139332771301,0.11006762832403],[0.0044905636459589,-0.13976019620895,-0.031845740973949]],[[-0.089584790170193,-0.0017677226569504,0.18616223335266],[0.056272607296705,0.045171774923801,0.17116548120975],[0.099215164780617,-0.11682902276516,0.17708379030228]],[[0.016661817207932,0.019427562132478,-0.039333932101727],[-0.0021933452226222,0.096140205860138,0.019711678847671],[0.048920154571533,-0.066689409315586,-0.21776229143143]],[[-0.14151060581207,0.10880414396524,-0.085143156349659],[0.26913014054298,-0.13357186317444,-0.03593871742487],[0.034951526671648,0.061278980225325,-0.12236990779638]],[[0.043676819652319,0.22083887457848,0.078452914953232],[-0.022577943280339,-0.070158608257771,-0.041004974395037],[-0.208022326231,-0.12259574979544,0.25570687651634]],[[0.047866992652416,0.16119940578938,-0.066204033792019],[-0.046634703874588,-0.056749522686005,-0.042222261428833],[-0.14839063584805,0.035257928073406,-0.06574123352766]],[[0.008963119238615,0.026782253757119,-0.05446270853281],[0.018947247415781,-0.081411793828011,0.021130112931132],[-0.18861925601959,-0.061423379927874,-0.051928225904703]],[[-0.13191431760788,-0.15768778324127,-0.0074242339469492],[-0.11558383703232,-0.049013238400221,-0.0025963489897549],[-0.10019694268703,0.027393709868193,-0.11017445474863]],[[-0.045447245240211,0.10583908855915,-0.077511474490166],[0.096086055040359,0.043951418250799,-0.068843975663185],[-0.11889426410198,-0.11698616296053,-0.071079574525356]],[[0.14336623251438,-0.0049824668094516,0.22356973588467],[0.11899723112583,0.13811220228672,0.045842260122299],[-0.016863819211721,-0.12187649309635,-0.035382580012083]],[[0.042124733328819,0.050589505583048,0.16868463158607],[0.030382234603167,-0.073274292051792,-0.024253949522972],[0.081847675144672,-0.14306533336639,-0.038044437766075]],[[0.055196937173605,-0.052974309772253,0.21039262413979],[0.086032390594482,0.10134409368038,0.053120899945498],[0.054415069520473,0.025539357215166,0.020262073725462]],[[-0.11423744261265,0.03261535987258,-0.059743169695139],[0.0057111755013466,-0.015717580914497,-0.018112257122993],[0.082675583660603,0.10481734573841,0.130330696702]],[[-0.016598764806986,-0.029900984838605,-0.048513226211071],[-0.000998146366328,0.043098602443933,-0.00045007324661128],[0.057262487709522,0.022704608738422,0.049372728914022]],[[0.036026332527399,0.0020286112558097,0.003812741721049],[0.0089752385392785,0.098926775157452,-0.028028000146151],[-0.042561911046505,0.034759912639856,-0.095869570970535]],[[0.0061259889043868,0.14800497889519,0.064627394080162],[-0.029402690008283,0.099917136132717,0.072631135582924],[-0.0093741929158568,0.069697640836239,-0.20035387575626]],[[-0.033193215727806,0.1756450086832,-0.0051434277556837],[-0.058847993612289,0.10832614451647,-0.23733013868332],[-0.13385611772537,-0.087980821728706,-0.082117758691311]],[[0.11602025479078,-0.094206251204014,0.027265124022961],[-0.10400947928429,0.043083362281322,0.043637551367283],[-0.040693357586861,-0.030063753947616,-0.091333888471127]],[[-0.094473086297512,-0.00084639235865325,0.059766750782728],[0.038258332759142,0.057511106133461,0.103535823524],[-0.10486813634634,0.08418670296669,0.1553180962801]],[[-0.096451558172703,-0.085796825587749,0.0023166453465819],[0.054916672408581,0.068960636854172,0.0053033363074064],[-0.025638492777944,0.019879061728716,0.054641734808683]],[[-0.036256827414036,-0.14079035818577,0.030739827081561],[-0.092545568943024,-0.01171297300607,-0.11556361615658],[-0.077360190451145,-0.062429212033749,-0.23523785173893]],[[0.0060218391008675,0.030642602592707,0.086639314889908],[0.074220731854439,0.079536400735378,-0.10103783756495],[-0.066137418150902,-0.015243332833052,0.13694863021374]],[[-0.047348529100418,-0.20704925060272,-0.030505135655403],[-0.10194676369429,-0.0229771155864,-0.089185036718845],[-0.068516813218594,0.040947943925858,0.021548734977841]],[[-0.02822489105165,-0.039884563535452,0.032652739435434],[-0.060094829648733,0.09624756872654,-0.038346815854311],[0.054221216589212,-0.044124253094196,0.0013236727099866]],[[0.0047285044565797,-0.001587848062627,-0.03048687800765],[0.10474313050508,-0.040371172130108,-0.11031565070152],[0.035206560045481,0.038549412041903,-0.11523162573576]],[[0.035170428454876,-0.10839660465717,-0.13651266694069],[-0.018255809322,-0.14124368131161,-0.013809448108077],[-0.14669105410576,0.09595613181591,-0.12873503565788]],[[-0.20299361646175,-0.15181446075439,-0.031442064791918],[-0.092351637780666,0.028585372492671,-0.083632193505764],[-0.10352995991707,-0.10958668589592,-0.1502755433321]],[[0.084969572722912,0.060633666813374,-0.027287770062685],[-0.041151266545057,0.1049000993371,-0.10364014655352],[0.076014436781406,0.1080823764205,0.070151604712009]],[[0.018484788015485,-0.015331245027483,0.057402048259974],[0.099577084183693,-0.030058246105909,-0.084811314940453],[0.013737319037318,-0.014632410369813,0.045184165239334]],[[0.075030066072941,0.17714589834213,-0.074174076318741],[0.16986827552319,-0.097479477524757,-0.0081345643848181],[-0.077440090477467,0.0097035448998213,0.12472688406706]],[[0.026270883157849,-0.087142795324326,-0.1174728050828],[0.030146757140756,-0.062273982912302,-0.023727901279926],[0.081202246248722,-0.025747179985046,-0.10446182638407]],[[-0.016507724300027,-0.16890500485897,-0.04395791888237],[0.011712913401425,0.08554083108902,-0.035812880843878],[-0.11228485405445,-0.012772434391081,-0.051156792789698]]],[[[-0.029243739321828,0.065938048064709,-0.080627076327801],[0.069288067519665,-0.016771778464317,0.023935547098517],[-0.0032544452697039,0.030970472842455,0.10157912969589]],[[0.021676430478692,-0.058862634003162,-0.10608441382647],[-0.039311811327934,0.0018328134901822,0.034428611397743],[0.051573649048805,0.011384515091777,-0.0025796666741371]],[[-0.045943357050419,-0.021992085501552,-0.055436186492443],[-0.017770083621144,0.013508406467736,0.0046445010229945],[-0.085315689444542,-0.0030316871125251,-0.019219297915697]],[[0.011161280795932,-0.023067923262715,0.0018580337055027],[-0.052339974790812,0.049989584833384,-0.020078292116523],[0.020710159093142,-0.0041035627946258,0.066267512738705]],[[-0.061276018619537,0.054755479097366,0.011889680288732],[-0.022989405319095,0.023910399526358,-0.034222569316626],[-0.073623903095722,-0.077248826622963,-0.0088039701804519]],[[-0.013611998409033,0.000869462674018,0.061883334070444],[-0.007237893063575,-0.031387913972139,-0.067763179540634],[0.061617229133844,0.0077589228749275,0.033161211758852]],[[0.025833398103714,0.021282758563757,0.037672605365515],[0.0016266223974526,0.021507434546947,-0.019236501306295],[0.023013880476356,-0.055840373039246,0.0003637584450189]],[[-0.04002345725894,-0.0042799222283065,0.095371775329113],[0.13033954799175,0.034742463380098,0.11330227553844],[-0.011156817898154,-0.016668882220984,-0.029142348095775]],[[-0.0073824808932841,-0.069925844669342,-0.013253444805741],[-0.0062415166758001,0.0051312614232302,0.0036736796610057],[0.009969144128263,0.0011801823275164,0.020050780847669]],[[0.02477989718318,0.014515322633088,0.045570883899927],[0.009652771987021,-0.057387184351683,0.051691722124815],[-0.009209263138473,-0.015756394714117,0.0083511443808675]],[[-0.0044767474755645,0.05318271741271,-0.028919314965606],[-0.14333771169186,-0.093100979924202,-0.01201790664345],[0.032838221639395,0.050941914319992,0.012180771678686]],[[-0.026780592277646,-0.078218072652817,0.044673096388578],[0.014688334427774,0.021784650161862,-0.056000724434853],[-0.00091615377459675,0.012617059983313,0.053217943757772]],[[0.035512197762728,-0.035696730017662,-0.02239690348506],[0.038183249533176,0.066196456551552,0.0082352589815855],[-0.048476967960596,0.016800658777356,-0.037976678460836]],[[-0.022356674075127,0.016269009560347,0.0063289967365563],[0.019831458106637,0.0086934696882963,0.0032868580892682],[0.057077433913946,-0.036952905356884,0.0036344930995256]],[[0.011555506847799,-0.087872505187988,-0.016955528408289],[0.047424729913473,-0.015137466602027,-0.015744157135487],[-0.03214942663908,-0.043575152754784,0.0032614960800856]],[[-0.02949870750308,-0.046379871666431,-0.073680877685547],[-0.0023689172230661,-0.022020941600204,0.028202868998051],[0.022586921229959,-0.017925618216395,-0.059164676815271]],[[-0.0054601826705039,0.082856327295303,0.028332838788629],[-0.012307170778513,-0.026617608964443,0.0014166809851304],[0.040393952280283,-0.00026324644568376,0.045231811702251]],[[-0.023366820067167,-0.037398543208838,-0.095655232667923],[-0.061680238693953,-0.03442482277751,-0.046511285007],[0.011664907447994,0.023816151544452,0.019297540187836]],[[0.068436600267887,-0.010139649733901,-0.056184288114309],[-0.023873154073954,-0.021508917212486,-0.0025896513834596],[0.0034264295827597,0.0043909437954426,0.056854449212551]],[[-0.0036174559500068,-0.029544565826654,0.059975735843182],[-0.00083884631749243,0.026479460299015,-0.014713721349835],[-0.0059592588804662,0.04227178171277,0.10446680337191]],[[-0.020014086738229,0.021629141643643,0.010068641975522],[0.041763603687286,-0.018023500218987,-0.035927105695009],[-0.10557429492474,-0.00084293511463329,-0.081332184374332]],[[0.029650835320354,0.014994904398918,0.037407100200653],[0.056638833135366,-0.036642894148827,0.046075873076916],[0.021639809012413,0.018952790647745,-0.070140324532986]],[[-0.061110492795706,-0.073138572275639,0.024026310071349],[0.043074488639832,0.031614929437637,0.043981410562992],[0.036973431706429,-0.074471086263657,0.053362958133221]],[[0.0024127804208547,-0.027257895097136,-0.0052264640107751],[0.05899403244257,-0.035299375653267,0.018957952037454],[0.011149973608553,-0.0052557568997145,-0.067572802305222]],[[0.063685551285744,0.0078776758164167,0.014673355966806],[-0.039846286177635,-0.073028720915318,0.011438910849392],[0.033166665583849,0.011999068781734,-0.055651593953371]],[[-0.0054414989426732,-0.011669787578285,-0.042838145047426],[-0.048177421092987,-0.011882507242262,-0.043125439435244],[0.010253455489874,0.029533563181758,-0.04159514978528]],[[-0.064647890627384,0.038156345486641,0.097502686083317],[-0.011208796873689,0.032554488629103,0.012523478828371],[0.080332584679127,-0.06034954637289,-0.046814288944006]],[[0.026096429675817,0.014089802280068,-0.008408272638917],[0.018855882808566,0.088351428508759,-0.014887222088873],[0.054244317114353,-0.024386130273342,0.024659488350153]],[[0.08582815527916,0.045506928116083,-0.065058261156082],[0.068326808512211,0.0314707942307,0.012106434442103],[-0.0679697021842,-0.013218576088548,-0.036697041243315]],[[0.010805185884237,-0.034432407468557,0.04343668743968],[-0.043726548552513,-0.065165087580681,-0.068610586225986],[-0.020944079384208,0.028961520642042,0.023195503279567]],[[0.042449217289686,-0.0059453104622662,0.060813304036856],[0.010988423600793,0.041683211922646,0.016975620761514],[0.069239117205143,0.044956002384424,-0.0081010228022933]],[[0.029839986935258,-0.000621335755568,0.072985023260117],[0.020379321649671,0.012763176113367,0.019223826006055],[-0.016022859141231,0.055066641420126,-0.079565517604351]],[[0.033982966095209,0.048958901315928,0.0016912082210183],[0.019440416246653,0.082355409860611,0.036874782294035],[0.02216562256217,-0.028079118579626,0.052453853189945]],[[-0.028085732832551,0.029242629185319,0.029972214251757],[-0.026444116607308,0.010976225137711,0.033649045974016],[-0.0035852717701346,0.034652125090361,0.060269463807344]],[[0.074885308742523,0.0011129754129797,0.062582656741142],[0.033363524824381,-0.0066140741109848,-0.018155515193939],[0.0081152794882655,-0.062157183885574,-0.13919325172901]],[[-0.015846159309149,0.024608042091131,-0.021143579855561],[-0.039379641413689,-0.087927229702473,-0.019276849925518],[-0.047040913254023,0.03549075871706,0.021402675658464]],[[-0.026309845969081,0.035911504179239,0.040084134787321],[0.076780714094639,0.037886921316385,-0.047807361930609],[0.020369945093989,0.096572004258633,0.053006362169981]],[[0.028122132644057,-0.00065336271654814,0.0096238506957889],[0.041008852422237,-0.030838035047054,-0.023900864645839],[-0.051427364349365,-0.074137724936008,-0.063197053968906]],[[0.0030090622603893,-0.08069708943367,-0.091601505875587],[-0.014580662362278,0.031319253146648,-0.041603960096836],[0.033837586641312,0.029898535460234,-0.0064201350323856]],[[0.0044975425116718,0.0028609889559448,-0.035714957863092],[-0.0042012417688966,0.036077350378036,0.061912100762129],[-0.013332395814359,0.014052911661565,-0.041545331478119]],[[-0.064583152532578,-0.0096309343352914,-0.087100885808468],[0.058429941534996,0.055378902703524,-0.013506171293557],[-0.026255235075951,0.036642499268055,0.039103515446186]],[[0.0098861623555422,0.028924703598022,0.04005554318428],[0.070112995803356,-0.017876010388136,0.044357564300299],[0.06970851123333,0.0063310959376395,0.028213886544108]],[[0.06569454818964,0.021040113642812,0.027588909491897],[0.070809662342072,0.054167620837688,0.067380152642727],[-0.036176882684231,0.059832096099854,0.05523943156004]],[[-0.0042545576579869,-0.042844228446484,0.073258966207504],[-0.072403237223625,-0.058381430804729,0.025561168789864],[-0.003484919667244,0.056112792342901,0.043147828429937]],[[0.0841930732131,0.028244080021977,-0.021668247878551],[0.057236194610596,0.08959287405014,0.099780112504959],[-0.035943038761616,-0.0281370151788,0.067311994731426]],[[0.077552631497383,0.074320435523987,-0.021693013608456],[0.051322098821402,-0.051430061459541,0.12084897607565],[0.044969100505114,0.088001251220703,0.00053214957006276]],[[0.033044774085283,-0.012665879912674,0.012839407660067],[-0.032663352787495,0.052591122686863,-0.026371883228421],[-0.050955597311258,-0.058823172003031,0.034947153180838]],[[-0.0021722672972828,-0.087534330785275,-0.049461551010609],[-0.039780583232641,-0.072630241513252,-0.03662072122097],[-0.033587291836739,-0.071840234100819,-0.043627817183733]],[[-0.0085458867251873,-0.042044293135405,0.044472150504589],[-0.062193766236305,0.032241400331259,0.027146546170115],[-0.050633169710636,-0.0069554368965328,-0.050124831497669]],[[-0.14429026842117,-0.053013533353806,-0.013102634809911],[0.025852968916297,0.0049137552268803,-0.064830221235752],[0.021169247105718,0.030280055478215,-0.096963167190552]],[[-0.0053587909787893,0.004873750731349,0.018827667459846],[-0.039340250194073,-0.027235897257924,-0.038186758756638],[-0.070618040859699,-0.019198974594474,-0.013794131577015]],[[-0.017681464552879,0.016064522787929,0.037193112075329],[-0.018968440592289,-0.065184213221073,0.042112004011869],[0.063470587134361,-0.029699450358748,0.097754344344139]],[[-0.021945215761662,-0.014795484952629,0.00062932807486504],[0.019908482208848,-0.013085244223475,-0.015445763245225],[0.018606698140502,0.0034964461810887,0.099368959665298]],[[0.086198881268501,-0.015795251354575,-0.0077926157973707],[0.015129845589399,-0.042759962379932,0.084415726363659],[0.029436243698001,-0.033404510468245,-0.034786231815815]],[[0.081944346427917,0.0026242875028402,0.047667376697063],[0.07534921169281,0.019759748131037,-0.022167889401317],[0.030946565791965,0.02133877389133,0.079385697841644]],[[0.026598835363984,-0.04249019920826,-0.0014058910310268],[-0.03399833291769,-0.044530011713505,0.042568076401949],[-0.10784648358822,0.048860497772694,-0.07727687805891]],[[0.012437474913895,0.0086450045928359,0.0026849922724068],[0.02359070815146,0.068155989050865,0.041993413120508],[0.05150181800127,-0.0073806140571833,0.0090442430227995]],[[0.10323082655668,-0.044517293572426,0.06407380849123],[-0.0026469528675079,-0.0067488928325474,0.042299050837755],[-0.027334839105606,-0.088282629847527,0.02204385958612]],[[0.04599392414093,-0.045625187456608,-0.05551490560174],[-0.033085968345404,0.028781451284885,-0.054839063435793],[0.019255327060819,0.11604051291943,0.033249709755182]],[[-0.017915088683367,0.034182775765657,-0.007930819876492],[0.014367070049047,0.037561275064945,-0.02627575583756],[0.12003793567419,0.0012371898628771,0.068193487823009]],[[0.033568479120731,-0.097658634185791,0.051898438483477],[-0.034260123968124,-0.068861313164234,0.0555634573102],[-0.066772773861885,0.037568960338831,0.11652754992247]],[[-0.033346395939589,-0.082429341971874,-0.02937575429678],[-0.030130220577121,-0.066216364502907,-0.039144117385149],[-0.062931403517723,-0.0088257743045688,0.0091229295358062]],[[0.027823571115732,-0.024498960003257,0.092522040009499],[0.01389466971159,0.022521715611219,-0.021187949925661],[-0.031270917505026,0.094048120081425,0.089373879134655]],[[0.040339894592762,0.046796690672636,-0.031435821205378],[0.030870322138071,-0.00035341293551028,0.039990901947021],[0.027382032945752,0.013021777383983,0.056922107934952]],[[-0.030953861773014,-0.057970102876425,0.018295258283615],[-0.027878256514668,-0.0041119186207652,-0.052142892032862],[0.014416428282857,0.031096156686544,0.11423810571432]],[[0.062290661036968,-0.0019027524394915,0.047148436307907],[0.036988560110331,0.04259904101491,-0.03364185616374],[0.12148788571358,-0.038934160023928,-0.033855136483908]],[[-0.030692558735609,0.017644410952926,-0.027800627052784],[0.032585605978966,0.062105420976877,0.0064008445478976],[0.0013851046096534,0.053048901259899,-0.018293257802725]],[[0.0023801908828318,0.066748663783073,-0.010644317604601],[0.027361599728465,-0.016958728432655,0.014809165149927],[-0.00020462844986469,-0.058599546551704,0.061734598129988]],[[0.13942475616932,0.0037942246999592,0.0084033533930779],[-0.051512155681849,0.042738750576973,0.0050595449283719],[0.043647911399603,0.042947594076395,-0.010123564861715]],[[0.034143324941397,-0.06277384608984,-0.033365707844496],[0.054722033441067,0.036094307899475,0.010890368372202],[0.010248589329422,0.085115760564804,0.040889371186495]],[[0.093071483075619,0.012215751223266,-0.025384787470102],[-0.065135546028614,0.083933636546135,0.072769187390804],[0.10045959800482,-0.0015814473154023,-0.032349538058043]],[[0.053160641342402,-0.014095226302743,0.090361699461937],[0.026231622323394,0.013520188629627,-0.086377590894699],[-0.039222415536642,0.035840835422277,0.018546838313341]],[[-0.046900104731321,0.038081541657448,-0.024513784796],[-0.010781338438392,-0.025112893432379,-0.014523422345519],[0.025195084512234,-0.0294503942132,-0.043691091239452]],[[0.01722170598805,0.036240484565496,-0.044433835893869],[0.033893767744303,0.022660609334707,0.060453590005636],[0.037499696016312,-0.013875374570489,0.038708321750164]],[[0.068308979272842,0.027632741257548,0.019724616780877],[-0.0096386326476932,0.021470768377185,-0.02881838940084],[-0.0028003354091197,0.023626931011677,-0.082448065280914]],[[0.039780009537935,-0.025131685659289,-0.037145681679249],[0.0025289964396507,-0.04013105481863,0.045200414955616],[0.069310426712036,0.0035234799142927,-0.015397634357214]],[[-0.045279081910849,-0.019191851839423,0.0020384828094393],[-0.046504039317369,0.030241627246141,-0.043295580893755],[-0.032367985695601,-0.01651444658637,0.0097668953239918]],[[0.10323169827461,0.072007797658443,0.11274457722902],[0.010873474180698,0.016230138018727,0.056767366826534],[-0.0021158652380109,-0.08896816521883,0.0018407580209896]],[[0.041486315429211,-0.0053264084272087,-0.018506120890379],[-0.043191030621529,-0.0062165167182684,-0.031745243817568],[0.0059488536790013,0.053615063428879,0.047956805676222]],[[-0.032607786357403,0.016644651070237,-0.022211454808712],[-0.038835126906633,0.015815841034055,-0.078532122075558],[-0.035657159984112,-0.06304245442152,0.052007179707289]],[[-0.0099596697837114,-0.016259122639894,0.068718418478966],[0.016285924240947,-0.094675846397877,-0.023431770503521],[0.012983463704586,-0.031666062772274,0.025415934622288]],[[0.0010669267503545,0.080766879022121,0.021039424464107],[-0.01517491787672,0.038210146129131,5.2325682190713e-05],[0.016853280365467,-0.0085412403568625,0.073496364057064]],[[0.048008318990469,0.019418260082603,-0.078460037708282],[0.018736971542239,0.026586091145873,-0.018860936164856],[0.097892820835114,0.027543127536774,0.020942835137248]],[[0.086077377200127,-0.014365302398801,0.0016180922975764],[0.027308685705066,0.062077078968287,-0.064567193388939],[0.015276959165931,0.028119582682848,0.034095842391253]],[[-0.0084045231342316,-0.044214423745871,0.061264116317034],[0.0068963998928666,0.050216522067785,-0.023587493225932],[0.015664821490645,0.0015480133006349,-0.0033819847740233]],[[0.062293358147144,0.0058044362813234,0.11366498470306],[-0.05648048222065,0.05511213093996,-0.023569997400045],[0.051780935376883,0.031241692602634,-0.039108704775572]],[[-0.0082950871437788,0.046494081616402,-0.012491999194026],[0.11553598195314,-0.039697390049696,0.006565107498318],[-0.095978945493698,-0.073055446147919,0.034269079566002]],[[0.018966156989336,-0.026595352217555,0.036945633590221],[0.0013224713038653,0.047193229198456,0.066917285323143],[0.010027637705207,-0.045460537075996,0.047670733183622]],[[0.054860442876816,-0.01274286583066,0.037731789052486],[-0.038923460990191,0.038746789097786,-0.0081424098461866],[0.027347849681973,0.035750906914473,0.048706945031881]],[[0.033998358994722,0.029696587473154,-0.0073641040362418],[0.008873057551682,0.028363540768623,-0.057597987353802],[-0.012659788131714,-0.0092901261523366,-0.070469565689564]],[[-0.1016192138195,0.034939005970955,-0.04383646696806],[0.025626949965954,-0.0072955279611051,0.044878821820021],[0.053699392825365,-0.071682676672935,-0.039098985493183]],[[-0.0084875412285328,-0.06134545058012,0.026839742437005],[-0.062629014253616,0.033139925450087,0.041305676102638],[0.038100626319647,-0.020054969936609,0.02064261212945]],[[0.036895912140608,0.028959067538381,-0.037772830575705],[-0.012897490523756,0.073031932115555,0.090438224375248],[-0.026273753494024,-0.081019967794418,-0.058443613350391]],[[0.05268981307745,-0.034537427127361,0.048391088843346],[0.056950818747282,0.0574956163764,0.0024769611191005],[0.0077461255714297,-0.013569087721407,0.033708438277245]],[[-0.077045872807503,-0.045572146773338,-0.087028838694096],[-0.062361240386963,-0.078868098556995,0.021623663604259],[-0.02727672085166,-0.12257971614599,-0.005734144244343]],[[-0.0044578369706869,0.052936464548111,0.011439144611359],[-0.047178242355585,0.0026806639507413,0.026253195479512],[0.1015260964632,0.015769129619002,0.024848518893123]],[[-0.030477533116937,0.12713812291622,0.016503168269992],[-0.074575155973434,-0.067447558045387,0.004391620401293],[0.069570034742355,0.059011038392782,-0.011979842558503]],[[-0.024895748123527,0.083082988858223,-0.029028436169028],[0.0348807759583,0.044280599802732,0.056181937456131],[-0.026046195998788,-0.04688261076808,0.017731290310621]],[[0.0031846107449383,0.037039067596197,-0.08565890789032],[0.0078651448711753,0.012153413146734,-0.029026325792074],[-0.051673375070095,-0.041942268610001,0.0026174953673035]],[[0.029090417549014,-0.0044348989613354,-0.015817930921912],[-0.021707544103265,-0.021869735792279,0.10922740399837],[-0.0096732834354043,0.038779031485319,-0.054524064064026]],[[-0.022003432735801,-0.045361626893282,0.039278496056795],[0.014099911786616,-0.0033839647658169,-0.026474533602595],[-0.015528013929725,-0.04843844473362,0.039976313710213]],[[-0.0071695470251143,0.11234993487597,0.10270892083645],[-0.051751304417849,0.06449493765831,-0.041096784174442],[-0.076147727668285,0.12557229399681,0.071687296032906]],[[-0.066022150218487,-0.02286078594625,0.03356483951211],[-0.023612400516868,-0.016084060072899,0.017428945749998],[0.0021123201586306,-0.011352259665728,0.0031412427779287]],[[-0.033578407019377,-0.04297960922122,0.025305461138487],[-0.048965003341436,-0.080475881695747,-0.067283533513546],[-0.043287925422192,-0.06386724114418,0.030381519347429]],[[0.031886927783489,-0.0406813621521,0.038282100111246],[0.098842307925224,-0.0013112606247887,-0.0012563515920192],[0.021890951320529,-0.0074051436968148,-0.046273410320282]],[[-0.044971492141485,-0.025021811947227,-0.0063211866654456],[0.00083243695553392,0.080614119768143,0.03817105665803],[-0.044516585767269,-0.082031555473804,-0.012456942349672]],[[0.00090041407383978,-0.027871672064066,-0.043478291481733],[0.035352692008018,-0.050083186477423,0.0084682274609804],[-0.010311506688595,0.040600966662169,-0.098190821707249]],[[-0.045608978718519,0.070228464901447,-0.068062208592892],[0.014565961435437,0.048994090408087,0.027527414262295],[-0.036487877368927,0.060753498226404,-0.071727685630322]],[[0.015794744715095,0.011062434874475,0.031495969742537],[-0.064018897712231,-0.019975176081061,0.0087308343499899],[-0.019705174490809,-0.088130056858063,-0.10433799773455]],[[0.090918213129044,-0.037027359008789,0.076419949531555],[0.040801148861647,0.05044599249959,-0.020619234070182],[0.063429825007915,-0.052188977599144,-0.014166343957186]],[[0.057661049067974,-0.023506850004196,-0.020200906321406],[-0.0053561395034194,0.0099774738773704,-0.03718788549304],[-0.076028771698475,0.090161718428135,0.020225254818797]],[[-0.027902720496058,0.051630098372698,0.0014642025344074],[0.030178101733327,0.022274361923337,0.023711387068033],[-0.10070081055164,-0.0040539754554629,-0.021169174462557]],[[0.023782493546605,-0.099169053137302,-0.024795595556498],[0.052962120622396,-0.052658151835203,-0.022209100425243],[0.005233196541667,0.030523836612701,-0.017451241612434]],[[-0.0071831867098808,-0.019636871293187,0.0012093250406906],[0.012942871078849,0.015955099835992,0.066165685653687],[-0.028258604928851,-0.023875370621681,-0.031732227653265]],[[-0.0022838439326733,-0.038894817233086,-0.066290587186813],[0.019963415339589,0.04878506064415,0.032541688531637],[-0.0081190001219511,-0.021882269531488,-0.0085212737321854]],[[-0.03033110126853,-0.018029939383268,-0.046138547360897],[-0.055185467004776,-0.022366853430867,-0.002693694550544],[-0.023068830370903,-0.037579368799925,0.12467392534018]],[[0.057376507669687,0.047038666903973,-0.0047823735512793],[0.043970678001642,-0.022419597953558,-0.080069251358509],[-0.0025185029953718,0.10301246494055,-0.0021250005811453]],[[-0.054935216903687,-0.026638524606824,-0.0599161721766],[-0.023044934496284,0.052271462976933,-0.002225219970569],[-0.010772526264191,0.051046073436737,-0.027655631303787]],[[-0.041725657880306,0.0541977211833,0.011240341700613],[0.0053507904522121,0.055660523474216,-0.083253391087055],[-0.004679418168962,-0.0032653165981174,0.060872729867697]],[[-0.023599933832884,0.024992663413286,0.062117144465446],[0.032250087708235,0.03212857991457,0.11350541561842],[0.11168684065342,0.014428189024329,0.12288579344749]],[[-0.035093583166599,0.025015218183398,-0.034524150192738],[-0.0027758211363107,0.0070758746005595,0.033544518053532],[0.039478361606598,-0.0027346627321094,-0.095395691692829]],[[0.030251435935497,0.017635680735111,-0.047728378325701],[-0.087526544928551,-0.014093553647399,-0.00029801938217133],[-0.032430063933134,-0.11715695261955,0.049856048077345]],[[0.016159527003765,0.0039387140423059,0.090009786188602],[-0.060295473784208,-0.0071738730184734,0.0040465113706887],[0.029061840847135,0.0096184117719531,0.10272058844566]],[[-0.027225056663156,-0.0062616430222988,0.010527774691582],[0.065818659961224,0.013967050239444,0.026399029418826],[-0.04766783118248,-0.014319789595902,-0.14232397079468]],[[0.071670666337013,0.09364315122366,-0.018346877768636],[-0.0030100452713668,0.02743742801249,0.060146499425173],[-0.023454144597054,-0.052561648190022,-0.040403835475445]],[[-0.10691918432713,0.029571045190096,-0.071718774735928],[-0.066369526088238,0.025164434686303,-0.026531845331192],[0.031696557998657,0.00031238762312569,0.0077017266303301]],[[0.0044816760346293,0.023775529116392,-0.022281765937805],[0.016715245321393,0.038476154208183,-0.0067311488091946],[0.023433336988091,0.086062483489513,-0.0018643267685547]],[[-0.050111535936594,-0.03047719784081,-0.10270217061043],[0.012800285592675,-0.030735399574041,-0.072817482054234],[-0.026907114312053,0.016015084460378,0.01127701997757]]],[[[0.035881776362658,-0.036097221076488,0.077494844794273],[-0.013222033157945,0.0091085461899638,0.028925621882081],[0.013925208710134,0.020033748820424,-0.069413058459759]],[[0.05782388523221,-0.046424463391304,0.0082732178270817],[0.0078568691387773,0.10814399272203,0.043730426579714],[-0.01175192464143,-0.0094056893140078,0.035242263227701]],[[-0.003070731414482,-0.029197270050645,-0.012144858948886],[0.05343060567975,0.039893195033073,-0.066019900143147],[-0.030936449766159,0.0058569135144353,0.049728952348232]],[[-0.063969060778618,-0.021896954625845,0.011430694721639],[0.01688170991838,-0.080378375947475,0.044192954897881],[-0.032742090523243,-0.033906418830156,-0.012882181443274]],[[0.064756155014038,0.036199737340212,0.024880496785045],[-0.026347732171416,0.033831208944321,0.023181540891528],[0.027379298582673,-0.022631481289864,0.033033229410648]],[[-0.013748639263213,0.041097573935986,-0.032260674983263],[-0.026444066315889,-0.039281282573938,-0.10758287459612],[-0.015890073031187,0.092759877443314,0.03510370105505]],[[0.06148499250412,0.022970888763666,-0.044310856610537],[-0.033772367984056,-0.011029428802431,-0.042179472744465],[0.030460497364402,-0.02306155487895,0.10969972610474]],[[-0.050350718200207,0.0070784543640912,-0.041025925427675],[-0.022905232384801,0.0064164744690061,0.065003246068954],[-0.014799993485212,0.068081341683865,0.021731534972787]],[[-0.0094480803236365,0.021029153838754,-0.00032394635491073],[0.03338224068284,0.036584138870239,-0.02948559448123],[-0.070089533925056,-0.010211371816695,0.00066515157232061]],[[0.035929530858994,-0.0402737185359,0.097271278500557],[0.040974494069815,0.0062256986275315,0.014883391559124],[0.020499460399151,-0.014790375716984,-0.083545729517937]],[[-0.014878205023706,-0.022671293467283,0.026965854689479],[0.0099914893507957,-0.043616082519293,0.010035920888186],[0.074321582913399,0.01310308277607,-0.027182970196009]],[[-0.0041535892523825,0.0051867291331291,0.023617252707481],[-0.0047865151427686,-0.079050816595554,0.025233183056116],[-0.045289147645235,0.035878792405128,0.059356939047575]],[[0.088100768625736,0.0065067587420344,0.022202249616385],[0.057480238378048,0.0595493465662,0.048893112689257],[-0.020289860665798,-0.030331827700138,-0.019593745470047]],[[-0.026211280375719,-0.014853562228382,-0.026577308773994],[0.039022520184517,0.0067513566464186,-0.0036026407033205],[-0.036181211471558,0.057023741304874,-0.03625126183033]],[[-0.039111785590649,-0.015669045969844,-0.0017714471323416],[0.062412697821856,0.020013643428683,0.0011932749766856],[-0.0049568312242627,-0.039758183062077,-0.032158091664314]],[[-0.015086649917066,0.014917811378837,-0.015313738957047],[0.014104974456131,-0.010792094282806,-0.075132384896278],[0.00020227250934113,0.052854992449284,-0.09848278015852]],[[-0.031969118863344,0.024940099567175,-0.04472604393959],[-0.055862203240395,-0.035632099956274,0.031305972486734],[-0.081345044076443,0.031421024352312,0.0079990569502115]],[[-0.019786909222603,-0.0031757191754878,0.038164913654327],[-0.034286174923182,-0.020752981305122,-0.034425590187311],[0.04652114957571,-0.0026118245441467,-0.05051339045167]],[[0.065799303352833,0.058913569897413,0.048813179135323],[0.041211735457182,0.011589022353292,0.021998846903443],[-0.023395977914333,0.001079129287973,-0.080807343125343]],[[0.023445980623364,0.059503246098757,-0.027570018544793],[-0.062928192317486,0.010209382511675,-0.0092156184837222],[-0.022850796580315,0.027115058153868,0.051818575710058]],[[-0.038299866020679,0.030212262645364,0.026930246502161],[0.053839042782784,0.022786119952798,0.065485119819641],[-0.0036514196544886,0.010615737177432,0.017494685947895]],[[-0.009101745672524,0.039545733481646,0.0083643458783627],[0.00806331820786,0.039063822478056,-0.037014860659838],[0.049715761095285,0.066572435200214,0.031322795897722]],[[0.039945855736732,0.033908732235432,0.034145765006542],[0.071326650679111,0.085093393921852,0.070921778678894],[0.0041508376598358,-0.054063152521849,-0.046322282403708]],[[0.029933022335172,0.034655272960663,0.0061213937588036],[0.053480856120586,-0.010810158215463,0.036483231931925],[0.075461521744728,0.018388485535979,0.051814381033182]],[[-0.08464989811182,0.079782880842686,-0.017697500064969],[-0.046418394893408,0.017789088189602,-0.028576327487826],[0.060933791100979,-0.0059881280176342,-0.0062057636678219]],[[0.00010039981134469,0.089396402239799,-0.012139618396759],[0.019645990803838,0.10500895231962,0.024751706048846],[-0.053445674479008,0.017855836078525,-0.080867700278759]],[[0.016522707417607,0.015595396980643,0.032213438302279],[-0.033330660313368,-0.12208124995232,0.02943779155612],[0.028611928224564,0.037716679275036,-0.027749275788665]],[[0.074933476746082,0.021822396665812,0.053176324814558],[0.018252106383443,-0.0038888975977898,-0.04916101321578],[0.079115249216557,0.016047161072493,-0.049163792282343]],[[-0.00095566373784095,-0.011274360120296,0.033492263406515],[-0.013973214663565,0.050465278327465,-0.033961743116379],[0.011715068481863,0.027402445673943,-0.04881352186203]],[[0.027484633028507,-0.051125202327967,-0.012431204319],[-0.0061807245947421,0.0082856919616461,-0.025104882195592],[0.010401302948594,0.036204043775797,-0.0814263895154]],[[-0.077292576432228,0.034495543688536,0.061579763889313],[0.036869399249554,-0.025906439870596,-0.0820482224226],[0.092999130487442,-0.019224591553211,-0.062623925507069]],[[-0.064568780362606,0.078306309878826,-0.04496830701828],[-0.043107371777296,-0.058611355721951,-0.048949178308249],[-0.030475465580821,0.0079898778349161,0.034267961978912]],[[0.029954688623548,0.044834598898888,0.020324654877186],[-0.012831961736083,0.042891908437014,0.014493118971586],[0.054735027253628,0.040606167167425,-0.0023532987106591]],[[-0.019495669752359,-0.069389164447784,-0.025608697906137],[0.082528918981552,0.0036416398361325,0.019730664789677],[-0.016402807086706,-0.03462752327323,0.01824982278049]],[[0.02060030028224,0.041795700788498,-0.035032797604799],[0.033492878079414,0.04064678773284,-0.060965176671743],[-0.0074543734081089,0.055683072656393,0.0061821518465877]],[[0.073735639452934,-0.001220187288709,0.0042875842191279],[-0.023142024874687,-0.040931325405836,-0.0055868858471513],[0.027509896084666,-0.089858204126358,0.0016174812335521]],[[-0.011602034792304,-0.011531131342053,0.056306269019842],[-0.053867626935244,-0.045864839106798,-0.022547958418727],[-0.029332902282476,0.017799198627472,0.042203657329082]],[[-0.020495617762208,0.042779393494129,0.00063340441556647],[0.001038427464664,0.0045359772630036,0.062740847468376],[-0.052876356989145,-0.054447881877422,-0.04036420583725]],[[0.0083542289212346,0.0044816578738391,0.073224790394306],[-0.024724405258894,0.036088533699512,-0.065289326012135],[0.020448006689548,-0.019004540517926,0.010824938304722]],[[-0.01163084898144,0.011177936568856,0.027989318594337],[-0.040933284908533,-0.020912854000926,0.016405196860433],[-0.06269022077322,-0.081307880580425,0.080694198608398]],[[0.0025067280512303,0.051371898502111,-0.028618583455682],[-0.021984858438373,-0.026660462841392,0.020712558180094],[0.013556730002165,-0.041419513523579,-0.071290910243988]],[[0.029739098623395,-0.0055950861424208,-0.030215347185731],[0.026984073221684,0.054080732166767,-0.028993902727962],[-0.018218513578176,-0.047969743609428,-0.066438093781471]],[[0.02757453545928,0.0012966084759682,0.047223217785358],[-0.081814132630825,-0.041764624416828,0.039312325417995],[0.019944738596678,0.044684324413538,-0.077243484556675]],[[0.030496066436172,-0.068193852901459,0.016383808106184],[-0.014907023869455,-0.0042200135067105,-0.021280290558934],[-0.038928080350161,-0.036527246236801,-0.01952089369297]],[[-0.016820857301354,0.066640950739384,-0.0094322534278035],[0.0060852612368762,0.0087546659633517,0.063529998064041],[-0.032183643430471,-0.042959351092577,0.0095196301117539]],[[0.019424682483077,0.00013367585779633,-0.021505005657673],[0.077170558273792,0.062570139765739,-0.016357688233256],[0.039509143680334,-0.084093302488327,0.071455143392086]],[[-0.031649619340897,0.075413696467876,0.0018614946166053],[0.06036751717329,-0.0094192214310169,-0.069866389036179],[0.0034457191359252,0.059512611478567,-0.018116515129805]],[[0.055696416646242,0.019983513280749,0.020594947040081],[0.037418860942125,-0.040755126625299,-0.060388304293156],[0.043370760977268,-0.019980313256383,-0.08208966255188]],[[-0.072174772620201,-0.0095010194927454,0.030025681480765],[0.0069231796078384,0.0069417259655893,-0.026771325618029],[0.016124689951539,0.0053239143453538,0.058135971426964]],[[0.025034960359335,0.0036228932440281,0.048026781529188],[-0.037971876561642,0.018169641494751,-0.00085833889897913],[0.075922094285488,-0.0087360152974725,0.0498255379498]],[[0.041081100702286,0.024638643488288,0.078330360352993],[0.032523419708014,0.0087884990498424,-0.029496254399419],[0.023261334747076,0.031258687376976,0.016076292842627]],[[-0.016062958166003,-0.075620606541634,0.011225380934775],[0.0087071489542723,-0.043559860438108,0.048083957284689],[0.03920141980052,0.050162766128778,0.022454304620624]],[[0.01541506499052,-0.013823555782437,0.053944651037455],[-0.0048599550500512,0.010615451261401,-0.049750670790672],[0.04015389084816,-0.0024648355320096,0.020698485895991]],[[-0.057709395885468,0.057141099125147,0.024801570922136],[0.023635927587748,-0.0096710892394185,0.070457823574543],[-0.09191171079874,-0.0073668477125466,0.10758879780769]],[[0.0034308191388845,0.07077768445015,0.0015775979263708],[0.015002258121967,-0.057624816894531,-0.055334992706776],[-0.038261067122221,0.073040530085564,0.002845743438229]],[[-0.044604800641537,0.03527370467782,-0.048451241105795],[0.027921374887228,0.022477358579636,-0.022983161732554],[0.02052616328001,0.060736477375031,0.0044537605717778]],[[0.041734453290701,-0.0066149942576885,0.0848228931427],[-0.02496487274766,-0.073886230587959,0.070104286074638],[-0.0086292186751962,-0.041838899254799,0.0098007507622242]],[[0.017248263582587,-0.045865144580603,0.03898436576128],[-0.012761685065925,0.030366810038686,-0.053601436316967],[0.062567017972469,0.004864658229053,0.024641942232847]],[[0.0068931500427425,-0.055479787290096,0.031210428103805],[-0.055594757199287,0.024445997551084,0.024614786729217],[-0.017953854054213,-0.083440892398357,0.011391423642635]],[[-0.008205640129745,0.014912339858711,0.021254913881421],[-0.069152548909187,0.070170432329178,0.054959516972303],[-0.04967388510704,0.019440280273557,0.014917388558388]],[[-0.061384499073029,0.026545852422714,-0.0022992470767349],[-0.0068980972282588,-0.0074236849322915,0.012410505674779],[-0.053634740412235,-0.0077521372586489,0.049010563641787]],[[-0.023098785430193,-0.056681737303734,-0.046144161373377],[0.061868287622929,-0.013634026050568,0.1102028042078],[0.010418215766549,-0.00018049489881378,0.023964457213879]],[[0.018055498600006,0.037260092794895,-0.038399171084166],[-0.026427526026964,0.036037396639585,-0.013900192454457],[-0.0089811515063047,-0.020082185044885,-0.011737626977265]],[[-0.040589347481728,0.036412224173546,-0.040091164410114],[0.10821062326431,-0.025784332305193,-0.0085865026339889],[-0.0020734872668982,0.03950335457921,-0.042120635509491]],[[0.054954547435045,0.012961082160473,0.064149357378483],[0.03158438578248,-0.010312102735043,-0.068572126328945],[-0.0033608598168939,0.055957872420549,0.014879785478115]],[[0.029496360570192,0.012447205372155,0.010409594513476],[-0.018219286575913,0.00041052707820199,0.060199096798897],[-0.037517134100199,-0.096963204443455,-0.033471520990133]],[[0.032484080642462,-0.00573770981282,-0.06646154820919],[0.035797365009785,-0.00079299369826913,-0.067037552595139],[-0.0017865314148366,-0.0077455737628043,0.0039168153889477]],[[-0.032136108726263,0.013982256874442,0.061033360660076],[0.028296256437898,-0.028492828831077,-0.051556967198849],[0.050343364477158,0.008966532535851,0.011836672201753]],[[-0.045747119933367,-0.015916354954243,0.016983345150948],[0.02695881947875,0.027255203574896,0.028134793043137],[-0.018046531826258,0.0081555936485529,-0.00033070260542445]],[[0.012787325307727,-0.02539280988276,0.033027537167072],[-0.04254388064146,-0.012126765213907,-0.030965778976679],[-0.046277359127998,-0.032543577253819,0.051394090056419]],[[0.03689806163311,0.022168107330799,-0.068915843963623],[-0.036646153777838,0.015816260129213,-0.015943201258779],[-0.068835318088531,0.013649760745466,0.048251267522573]],[[0.087581053376198,-0.0687400624156,0.01572715677321],[0.01982494816184,-0.03330834954977,0.011425012722611],[-0.030399452894926,-0.093865118920803,0.021809147670865]],[[0.05730377137661,0.083502054214478,0.086016543209553],[0.086173564195633,0.031181236729026,-0.064001210033894],[0.026001811027527,0.064561814069748,-0.0056279255077243]],[[0.051124386489391,0.0074016265571117,0.021696569398046],[0.0047516720369458,0.0048621180467308,0.055381771177053],[0.059044718742371,-0.010409962385893,0.039577227085829]],[[-0.043366406112909,-0.021514436230063,0.022850623354316],[0.0061264587566257,-0.016582211479545,0.1058449447155],[0.010220206342638,0.080404877662659,0.020004840567708]],[[0.069070756435394,0.036184247583151,0.00043077269219793],[0.060573663562536,0.052822913974524,-0.017019031569362],[0.0075559094548225,-0.014350602403283,0.030772797763348]],[[0.020366251468658,0.056228559464216,0.024242915213108],[0.069719076156616,0.029124557971954,-0.022715570405126],[-0.013186319731176,0.028835818171501,0.017048360779881]],[[-0.021109880879521,0.052224420011044,0.010770454071462],[-0.049017511308193,-0.052134405821562,-0.010958798229694],[0.02708762139082,0.011429412290454,0.024900080636144]],[[0.028646778315306,-0.01409799605608,-0.050221331417561],[0.00045885308645666,-0.050093114376068,0.023215847089887],[-0.044896673411131,0.060334406793118,-0.071258567273617]],[[-0.038921684026718,0.083913750946522,0.034106284379959],[-0.018520798534155,0.006131611764431,0.029238833114505],[-0.088735744357109,0.063519179821014,-0.021644778549671]],[[-0.0069951456971467,0.0046212398447096,-0.03569757193327],[0.022928025573492,-0.033917911350727,-0.017429722473025],[0.0020692944526672,-0.014180604368448,-0.042329240590334]],[[-0.021229213103652,0.061885640025139,0.015172281302512],[-0.013262159191072,-0.036474354565144,0.031579587608576],[-0.010486607439816,0.053831864148378,-0.046700686216354]],[[-0.086557276546955,0.012964782305062,-0.034880757331848],[0.043971199542284,-0.078533887863159,-0.060617808252573],[0.10259330272675,0.05381478369236,-0.082126036286354]],[[-0.040908128023148,0.0009768515592441,-0.0083673438057303],[-0.00097376928897575,0.060063842684031,0.034972090274096],[-0.010166104882956,-0.045146256685257,0.079120554029942]],[[-0.001280962722376,0.063567854464054,0.010618064552546],[-0.050112664699554,0.017024431377649,-0.015846524387598],[0.00073559430893511,0.032821387052536,0.014639985747635]],[[0.040420684963465,-0.033136289566755,0.028747126460075],[-0.039448779076338,-0.10729093104601,0.010394040495157],[0.010706138797104,0.009829985909164,-0.019602674990892]],[[0.089261434972286,0.030837835744023,-0.046733025461435],[-0.037166982889175,0.040794260799885,0.045964680612087],[0.034274164587259,-0.033372204750776,-0.0039052066858858]],[[0.022811314091086,0.013285342603922,-0.021094765514135],[0.057898379862309,-0.046997841447592,0.036549527198076],[0.015253177843988,0.016427826136351,-0.011814791709185]],[[-0.002009499585256,-0.033106941729784,-0.043484799563885],[-0.084648728370667,0.058954931795597,0.020020753145218],[0.049567729234695,0.067732565104961,0.016873370856047]],[[-0.078169159591198,0.034502308815718,-0.0076665002852678],[-0.036733783781528,0.081663280725479,0.042909428477287],[-0.016989214345813,0.0186039917171,0.0043088076636195]],[[-0.0064406604506075,-0.014416381716728,0.071362495422363],[0.052405763417482,-0.0014764808584005,-0.043278880417347],[0.0098429955542088,-0.043753050267696,-0.012797981500626]],[[0.0487454906106,0.086020961403847,-0.06846559792757],[-0.073955126106739,0.078549295663834,-0.032245803624392],[-0.05083404481411,0.010838842019439,0.03926769271493]],[[0.03330310061574,-0.021502366289496,-0.012030589394271],[0.049457646906376,0.016959670931101,-0.020748196169734],[-0.0041450099088252,0.023782566189766,0.039548743516207]],[[-0.0071158157661557,0.01734796538949,0.010631036013365],[0.039122730493546,-0.0058817896060646,0.015267594717443],[0.026591774076223,-0.043008591979742,0.044847425073385]],[[0.041139900684357,0.10825850069523,-0.021163677796721],[0.036091215908527,-0.0026421742513776,-0.085665233433247],[-0.043912794440985,0.012029260396957,0.021777708083391]],[[0.052290927618742,0.034538380801678,0.04308794438839],[-0.033669348806143,-0.025196094065905,0.015354285016656],[-0.065714344382286,0.0056180278770626,0.00092243775725365]],[[-0.021641751751304,0.048301845788956,0.1180614605546],[-0.065429799258709,0.003563966602087,0.007727081887424],[-0.074093528091908,0.050522334873676,0.027995003387332]],[[-0.036479238420725,0.060191474854946,-0.0057487012818456],[0.020532291382551,-0.10683197528124,0.009624901227653],[0.099803030490875,0.0095909144729376,0.058083690702915]],[[0.010999451391399,-0.032399997115135,0.03112661652267],[0.032649833709002,-0.032030217349529,-0.023189149796963],[-0.048511926084757,0.068286061286926,0.014302328228951]],[[-0.0052532311528921,-0.04774996638298,-0.051357544958591],[-0.055940598249435,0.047268431633711,0.013741692528129],[0.057120092213154,0.057887300848961,-0.019611984491348]],[[0.072429776191711,0.04340984672308,-0.001006685430184],[0.086634531617165,-0.0061757597140968,-0.017540294677019],[0.016612689942122,-0.0052099404856563,0.038581229746342]],[[-0.027161598205566,-0.043770588934422,-0.021952852606773],[0.082096979022026,0.064630649983883,-0.032151434570551],[-0.0032769839745015,0.067490644752979,-0.0030270554125309]],[[-0.067134998738766,0.0025580278597772,-0.0045241834595799],[0.0017632187809795,-0.00074625603156164,0.041131120175123],[0.058143202215433,0.0329943113029,-0.043314557522535]],[[-0.0051269535906613,-0.079605430364609,0.013614873401821],[0.046666081994772,-0.011997536756098,-0.083610713481903],[-0.069281898438931,0.040008883923292,-0.036682311445475]],[[-0.010125025175512,-0.0014675174606964,-0.030244098976254],[-0.13687641918659,0.014646983705461,0.029010532423854],[0.069450750946999,0.021395420655608,0.045424725860357]],[[0.040084920823574,0.060755178332329,0.042600497603416],[-0.035406738519669,0.0040696142241359,0.11732617020607],[0.034733090549707,0.038021709769964,-0.069090902805328]],[[0.060964427888393,0.029595548287034,-0.013507732190192],[0.060224384069443,0.001749298768118,0.049825202673674],[0.02879492752254,0.034502137452364,0.069082207977772]],[[0.016700452193618,0.053881853818893,0.0072006522677839],[-0.012836345471442,0.094084888696671,-0.043737579137087],[-0.042141813784838,0.023030484095216,-0.041926454752684]],[[0.018792359158397,-0.030892135575414,0.068892203271389],[-0.040681757032871,-0.013492848724127,0.030897706747055],[0.011081869713962,0.017742922529578,0.0024414097424597]],[[-0.0081421546638012,-0.012709910981357,-0.040269564837217],[0.062664866447449,-0.0056961458176374,-0.054582398384809],[-0.095852196216583,-0.040280662477016,0.010945953428745]],[[-0.0016821615863591,0.015080743469298,0.042951714247465],[0.041479505598545,0.021396117284894,0.037199858576059],[0.03363598510623,-0.020995587110519,0.021832298487425]],[[0.034996144473553,-0.051915653049946,-0.0063569713383913],[-0.023807849735022,-0.0075558214448392,0.057119194418192],[0.057564713060856,-0.024015743285418,-0.008241212926805]],[[0.037541791796684,0.0091147674247622,0.045456137508154],[0.013064020313323,-0.02098473533988,0.0077089597471058],[0.0032484622206539,0.020989838987589,-0.021544523537159]],[[0.030432919040322,-0.038225386291742,-0.0086926613003016],[-0.015944456681609,0.06154740229249,-0.06281989812851],[0.0037559771444649,-0.032155439257622,-0.022355167195201]],[[-0.016150472685695,-0.046315286308527,-0.014378501102328],[-0.024464979767799,-0.00054326973622665,-0.018686069175601],[0.037935893982649,0.052354525774717,-0.021931761875749]],[[0.017119472846389,0.055512733757496,0.033934891223907],[0.027833666652441,-0.016341466456652,0.039504140615463],[-0.00087949383305386,0.0092376312240958,-0.08488280326128]],[[-0.025270344689488,-0.044804468750954,-0.0084093557670712],[-0.0071032610721886,0.0034972240682691,-0.027803970500827],[0.035768605768681,0.014315660111606,0.0033354142215103]],[[-0.067260652780533,-0.059003710746765,0.039699047803879],[-0.014095366932452,-0.014999960549176,0.021129515022039],[-0.024029387161136,0.038390681147575,0.024131800979376]],[[0.028337398543954,0.026144713163376,-0.023043027147651],[-0.026155548170209,0.015336872078478,-0.045930445194244],[-0.017593761906028,-0.092762850224972,-0.015810674056411]],[[0.066467300057411,0.047438256442547,0.050570428371429],[-0.035925682634115,0.011978163383901,0.050043813884258],[-0.043660819530487,-0.053621545433998,0.00027920986758545]],[[-0.003573969239369,-0.018720733001828,0.02861450612545],[-0.084519773721695,-0.024522583931684,-0.0075597860850394],[-0.043359890580177,0.041746292263269,-0.043450806289911]],[[0.0063403905369341,-0.039397999644279,0.010431903414428],[0.067491851747036,-0.012797459959984,-0.002226164098829],[0.0063811829313636,-0.078602410852909,-0.02595591172576]],[[0.0010201883269474,0.020438499748707,-0.026744043454528],[-0.066364243626595,0.060211572796106,0.012216564267874],[0.049556657671928,0.012172352522612,0.0054884008131921]],[[-0.010511914268136,0.044470831751823,0.038071230053902],[-0.064622208476067,-0.023942353203893,-0.0083651505410671],[0.037388123571873,-0.03173416852951,-0.081444792449474]],[[0.014672760851681,0.029188521206379,-0.036331240087748],[0.027463467791677,-0.021246353164315,0.015435353852808],[0.073190554976463,0.036853354424238,0.0075700711458921]],[[0.050370659679174,-0.032686751335859,0.00040195917245001],[0.014046874828637,-0.012552364729345,0.021328402683139],[0.024306310340762,0.042068019509315,0.040486361831427]],[[-0.024568157270551,0.066079437732697,-0.016402989625931],[0.031940970569849,0.01747484318912,0.07656405121088],[-0.021504597738385,0.039204996079206,-0.02546314150095]],[[0.0086389416828752,0.026950752362609,-0.050024408847094],[0.035795379430056,0.036985013633966,0.032826006412506],[0.0038898091297597,-0.037608530372381,0.082772247493267]]],[[[-0.037550952285528,0.037795938551426,0.11152362823486],[0.14518941938877,-0.096229813992977,-0.0074159642681479],[0.040304388850927,-0.01795507222414,0.012341145426035]],[[0.017701769247651,-0.22750130295753,0.10228130966425],[0.12812595069408,0.13566574454308,-0.14162661135197],[0.06880309432745,-0.049404814839363,-0.10604597628117]],[[-0.055369019508362,-0.073417223989964,-0.056756138801575],[0.11003111302853,-0.10224641114473,-0.10841223597527],[-0.035478617995977,0.061290204524994,-0.034990429878235]],[[-0.066270284354687,-0.15950086712837,0.030486864969134],[-0.00079251895658672,-0.10816895216703,-0.19642895460129],[-0.054928164929152,0.15765365958214,-0.10736609995365]],[[0.027413934469223,0.078755162656307,-0.051304705440998],[0.011613724753261,-0.0032494103070349,-0.022132085636258],[0.11624974757433,-0.17599436640739,0.0085537731647491]],[[0.0017019083024934,-0.0010232796194032,0.019030369818211],[0.012227885425091,-0.018524218350649,-0.12771463394165],[0.066162966191769,-0.069646179676056,0.0039937593974173]],[[0.010643900372088,0.038720551878214,0.1252316981554],[-0.12042213231325,-0.051578443497419,0.088439121842384],[0.031085789203644,-0.087017774581909,0.01791825145483]],[[0.017303138971329,0.14085647463799,-0.048559419810772],[-0.0045759156346321,-0.022472558543086,0.064613275229931],[-0.12626788020134,-0.033008061349392,-0.0074505074881017]],[[-0.17956687510014,-0.0032162023708224,0.048678457736969],[-0.12309620529413,0.11017556488514,0.068459779024124],[0.019661761820316,0.050841987133026,0.033085595816374]],[[-0.026263032108545,-0.051630910485983,-0.031056696549058],[0.007639376912266,-0.0066553400829434,-0.016386738047004],[-0.00072851777076721,0.1047612503171,0.10295221954584]],[[0.10401333868504,0.12844860553741,-0.032452844083309],[0.0099053289741278,-0.0092448070645332,0.04082103073597],[-0.11161303520203,-0.10323584079742,-0.11238771677017]],[[-0.050913594663143,-0.032144792377949,0.063554145395756],[0.043824285268784,0.097616575658321,-0.17080974578857],[-0.014874015934765,-0.10720284283161,-0.070421256124973]],[[-0.10974550247192,-0.027073252946138,0.029009496793151],[0.13328729569912,0.079181008040905,-0.055562820285559],[0.028814166784286,0.1290353089571,-0.040884468704462]],[[0.16022752225399,-0.017435779795051,0.013882259838283],[0.0098908599466085,0.0057411468587816,-0.039642702788115],[0.020665302872658,0.0039223260246217,0.015087042935193]],[[-0.086463242769241,-0.16054394841194,0.064054988324642],[0.020226841792464,0.014978528954089,-0.18705299496651],[-0.21386680006981,-0.045388676226139,0.043393544852734]],[[0.16424359381199,0.021731715649366,0.050131555646658],[0.17916455864906,-0.19460244476795,-0.026254251599312],[-0.086972333490849,0.17775456607342,0.07140938937664]],[[-0.056550949811935,-0.046621587127447,-0.091367594897747],[0.033375788480043,0.12320851534605,0.0061858803965151],[0.045165941119194,0.086687617003918,-0.035584837198257]],[[-0.01708821579814,0.070667937397957,0.14728537201881],[-0.085129119455814,-0.040312591940165,0.12094823271036],[-0.10580044239759,-0.19350530207157,-0.036730565130711]],[[-0.079154491424561,-0.025893684476614,0.081778146326542],[0.0067337462678552,0.054444216191769,0.11434323340654],[-0.0064012911170721,0.1251275986433,-0.11722192913294]],[[0.0093517377972603,-0.10006759315729,0.043564133346081],[-0.004622237291187,0.14220276474953,0.027860056608915],[0.069041632115841,0.05578650534153,0.072171919047832]],[[-0.109409481287,-0.0073705753311515,-0.0096555463969707],[-0.087877236306667,-0.14812390506268,-0.093968167901039],[0.13454106450081,0.19998648762703,-0.089394263923168]],[[-0.033046938478947,-0.17731761932373,-0.039956871420145],[-0.041899126023054,0.00098525150679052,0.11685977131128],[0.033563293516636,0.01038527674973,0.015883447602391]],[[0.086628802120686,0.060106258839369,0.060488156974316],[0.06637866795063,-0.11151978373528,-0.013551705516875],[-0.090763844549656,0.087978594005108,0.012219728901982]],[[-0.16471630334854,-0.20747826993465,-0.10460384190083],[0.044909313321114,-0.16331031918526,-0.060771487653255],[0.10578562319279,0.18430463969707,0.03120538033545]],[[-0.1621909737587,-0.048896823078394,0.043903056532145],[-0.082714982330799,-0.16210028529167,-0.1194436326623],[0.068483412265778,-0.075782231986523,-0.11529213190079]],[[-0.016754684969783,-0.052593838423491,0.057981979101896],[-0.0152826635167,-0.072863273322582,-0.017596321180463],[-0.27077329158783,-0.063458047807217,-0.012841001152992]],[[0.11051688343287,-0.17116720974445,-0.10357107967138],[-0.064188659191132,-0.0020107587333769,0.094894327223301],[-0.11664215475321,0.0016697292448953,0.093463324010372]],[[0.13203449547291,-0.20548321306705,0.028062656521797],[-0.071569122374058,0.087934717535973,-0.13051173090935],[-0.091368593275547,-0.057786718010902,-0.071483172476292]],[[-0.071432553231716,0.10020986199379,0.051308304071426],[0.083298236131668,-0.084665276110172,-0.048558585345745],[-0.058804828673601,0.022119471803308,-0.03392006456852]],[[0.038293212652206,0.031551238149405,-0.031959947198629],[0.028103247284889,0.084114380180836,0.011817040853202],[-0.020155888050795,-0.085978016257286,-0.12637138366699]],[[0.13522177934647,0.13474003970623,-0.038137272000313],[0.0074799694120884,-0.057779092341661,-0.013626178726554],[-0.17617376148701,0.0031642783433199,-0.015266601927578]],[[0.055348291993141,0.16981612145901,-0.027517715469003],[0.040131472051144,-0.21013630926609,0.082674562931061],[-0.0081055108457804,-0.045848354697227,0.0035739976447076]],[[0.035610217601061,-0.029436541721225,0.0046286769211292],[0.034030608832836,0.2087667286396,-0.044815421104431],[-0.14555831253529,0.019131172448397,0.058522116392851]],[[-0.042095068842173,0.025018529966474,-0.12835493683815],[0.0414261482656,-0.0011992653599009,0.058003030717373],[-0.024083681404591,-0.062333460897207,0.030716264620423]],[[-0.13048757612705,-0.054642073810101,-0.10860551893711],[-0.22109632194042,-0.0015445541357622,-0.08308968693018],[-0.21425427496433,-0.14568303525448,0.10833586007357]],[[-0.18638834357262,-0.072517931461334,0.033433232456446],[0.062247436493635,-0.11723262071609,0.044008478522301],[0.18295587599277,-0.16741690039635,-0.050701569765806]],[[-0.027228742837906,-0.030332000926137,0.031311511993408],[0.054338052868843,-0.007132959086448,-0.029002385213971],[-0.15823517739773,-0.066499419510365,-0.074896343052387]],[[-0.042422823607922,-0.066934362053871,0.03905788436532],[0.035152982920408,0.065410986542702,0.026717931032181],[-0.05567292496562,-0.058916814625263,0.012840371578932]],[[0.096475385129452,-0.061596103012562,-0.0020593686494976],[0.030578782781959,-0.19572554528713,-0.082934342324734],[0.031389206647873,0.081741221249104,-0.00075175712117925]],[[-0.10247317701578,0.0033752345480025,0.12864507734776],[0.016987735405564,0.022889262065291,-0.061563607305288],[0.082393832504749,0.13897503912449,-0.029195377603173]],[[-0.080223836004734,-0.1077203899622,0.013767716474831],[-0.060602948069572,-0.044864788651466,0.030740410089493],[0.0021160515025258,0.031048091128469,0.15759971737862]],[[-0.011469418182969,0.018015258014202,0.0011277878656983],[-0.060520347207785,-0.10815876722336,0.0031534091103822],[0.050558976829052,-0.010973806492984,-0.0047726058401167]],[[0.10480511188507,-0.18415279686451,0.043263152241707],[-0.16281393170357,0.14311935007572,-0.11547622829676],[0.11510160565376,-0.093898124992847,0.07991835474968]],[[-0.041393488645554,0.12725664675236,-0.026610570028424],[-0.13486523926258,0.081487894058228,-0.067849516868591],[-0.063669845461845,-0.11198031157255,-0.011078515090048]],[[-0.19400531053543,0.08685190230608,0.067060731351376],[-0.134392157197,0.020969389006495,0.022226808592677],[0.054453365504742,0.10696478933096,-0.013229491189122]],[[0.1162968724966,-0.15300171077251,0.064094625413418],[-0.091232299804688,0.21258673071861,-0.15589170157909],[0.13191705942154,-0.11755606532097,0.10627750307322]],[[-0.20796808600426,-0.16754119098186,0.058314248919487],[-0.16256909072399,0.0091743934899569,0.00075156975071877],[-0.048503208905458,0.018610473722219,-0.11885204911232]],[[0.041961513459682,0.2834058701992,0.076840855181217],[-0.10234884172678,-0.16835884749889,0.0947105884552],[-0.081097893416882,-0.123928360641,-0.012004806660116]],[[-0.049891620874405,-0.067211255431175,-0.058017212897539],[0.047918245196342,0.048151377588511,0.0097384871914983],[0.081314660608768,0.0045049139298499,0.033194199204445]],[[-0.011239320039749,-0.096739292144775,0.020060198381543],[0.21955472230911,-0.16008052229881,-0.061310902237892],[0.073293156921864,-0.066982567310333,-0.030265944078565]],[[-0.14908105134964,-0.017455257475376,-0.047947812825441],[0.1719733774662,0.039393771439791,-0.079714670777321],[0.012645084410906,0.070396557450294,-0.0031140041537583]],[[0.012021725066006,0.063393875956535,-0.026149470359087],[0.042911894619465,0.16745615005493,-0.025956137105823],[0.020100861787796,-0.04344130679965,0.098048411309719]],[[-0.036558847874403,-0.0088806748390198,-0.043006345629692],[-0.15633048117161,0.048145659267902,-0.010545578785241],[-0.059157826006413,-0.056363627314568,-0.067737177014351]],[[-0.019001420587301,-0.073916494846344,0.011976166628301],[-0.024723412469029,0.090023778378963,-0.065503269433975],[-0.089105188846588,0.040136009454727,-0.060482658445835]],[[0.0037058340385556,0.206862449646,-0.0062726950272918],[-0.030647540464997,-0.12143807113171,0.064774177968502],[0.092748463153839,-0.025916330516338,-0.071033269166946]],[[0.1267596334219,0.044950481504202,-0.041285239160061],[-0.13669934868813,0.058195948600769,-0.037805546075106],[0.063517995178699,0.028449757024646,-0.048455469310284]],[[-0.096053428947926,-0.049700532108545,-0.016544433310628],[0.019963622093201,-0.015673005953431,0.08238522708416],[0.092698790132999,-0.22603802382946,0.087545737624168]],[[-0.017510794103146,-0.02286583930254,0.090575434267521],[-0.046269606798887,0.017587581649423,0.044821474701166],[-0.056154023855925,-0.23756465315819,0.21209964156151]],[[0.005843079648912,0.15847918391228,-0.023357721045613],[0.053243491798639,0.043774206191301,0.079828128218651],[0.12641207873821,-0.11143621057272,0.037622295320034]],[[0.0090787736698985,0.0414033010602,0.1273679882288],[0.028188521042466,-0.080352962017059,-0.021875044330955],[0.10882107913494,0.045899458229542,0.044411294162273]],[[0.056968744844198,-0.00422986689955,-0.058341927826405],[0.045035246759653,-0.095411740243435,-0.13341319561005],[0.24301396310329,0.15033599734306,-0.081546202301979]],[[-0.099821843206882,0.0068852100521326,0.047931220382452],[-0.28262054920197,-0.15476109087467,0.14736585319042],[0.040759351104498,-0.19198082387447,-0.011193088255823]],[[-0.074238233268261,-0.057308133691549,-0.0058511751703918],[0.064185224473476,0.093703173100948,-0.041482072323561],[0.012557618319988,-0.031063683331013,-0.037667449563742]],[[-0.024102976545691,0.12194778770208,0.0067586773075163],[0.055753745138645,-0.13773150742054,-0.050322264432907],[-0.001307007856667,0.043295931071043,-0.11283139139414]],[[0.014800013974309,0.10997326672077,-0.01059952750802],[-0.025895465165377,0.19987821578979,-0.10799206793308],[-0.008938480168581,-0.051418282091618,-0.1394270658493]],[[-0.055268030613661,-0.0095980186015368,-0.095310047268867],[-0.049773558974266,0.042952496558428,0.08524015545845],[-0.059705182909966,-0.036743696779013,-0.037587445229292]],[[0.021359011530876,0.1232675164938,0.12939079105854],[-0.011495545506477,0.065110191702843,-0.12887911498547],[-0.0042698723264039,-0.012201823294163,-0.13466927409172]],[[-0.050236336886883,-0.071788638830185,0.0079967891797423],[-0.057444356381893,-0.054935026913881,0.15887694060802],[0.016773534938693,-0.043305031955242,-0.072547949850559]],[[0.050595816224813,-0.010957569815218,0.11082853376865],[0.0019545604009181,-0.040432866662741,-0.039311848580837],[-0.058269917964935,0.0023097810335457,0.059929855167866]],[[-0.026604160666466,0.07969019562006,-0.057809717953205],[-0.077021740376949,0.08884434401989,0.057611096650362],[-0.089744590222836,-0.022658739238977,0.088104553520679]],[[-0.056203696876764,0.016680218279362,0.05204950645566],[0.009971016086638,0.16069012880325,-0.097075529396534],[-0.016905790194869,-0.038818549364805,0.076579056680202]],[[0.0074584954418242,-0.25802379846573,-0.1552402973175],[0.022906800732017,0.085332997143269,0.18705502152443],[-0.031799424439669,-0.06507732719183,0.085204787552357]],[[0.084571868181229,-0.054674532264471,-0.073526583611965],[0.24547486007214,-0.26479059457779,-0.06879223883152],[0.035656683146954,-0.070893563330173,0.036494709551334]],[[0.045632440596819,0.072268918156624,0.15871649980545],[-0.062083639204502,-0.054775457829237,0.0078292405232787],[-0.093266829848289,0.00020080481772311,-0.0071953535079956]],[[-0.19221864640713,-0.061897806823254,0.17675611376762],[-0.039362102746964,-0.10768397152424,-0.056075196713209],[0.0093115856871009,-0.092950075864792,-0.023120729252696]],[[-0.069777101278305,0.031810503453016,0.075737126171589],[0.0060599795542657,-0.021508337929845,0.0033813503105193],[0.028106825426221,-0.11401779949665,0.021957062184811]],[[-0.10481277853251,-0.12326258420944,-0.024099824950099],[0.1343260705471,0.0058844024315476,0.014453219249845],[-0.057822186499834,-0.061068341135979,-0.03207766264677]],[[-0.047787073999643,0.16834942996502,-0.05582594498992],[-0.011865735054016,0.042434621602297,0.11720506846905],[-0.049027409404516,-0.12373795360327,0.025258580222726]],[[-0.11915495991707,0.038872111588717,0.044527597725391],[-0.020358275622129,0.022256772965193,0.021813929080963],[-0.050784468650818,0.027015093713999,-0.079948477447033]],[[-0.14772965013981,-0.10863732546568,-0.019027540460229],[-0.087197668850422,0.1737856566906,0.014536301605403],[0.10267470031977,-0.085219137370586,0.075884632766247]],[[0.13469409942627,-0.10085535049438,-0.018198920413852],[0.064253933727741,-0.14361509680748,0.050383530557156],[0.065624982118607,-0.053312860429287,0.010459620505571]],[[-0.14850774407387,-0.23736031353474,0.056959934532642],[-0.043638054281473,0.17925253510475,-0.054559223353863],[0.0093637071549892,-0.20410799980164,-0.016621531918645]],[[0.17382173240185,-0.088287092745304,-0.056577757000923],[-0.17181867361069,-0.0055057145655155,-0.0088631976395845],[-0.013270962052047,0.073008455336094,-0.085973612964153]],[[0.16789525747299,0.1059144064784,0.048474248498678],[0.085502125322819,-0.060501553118229,0.028226587921381],[-0.094555921852589,-0.11180244386196,0.088619634509087]],[[0.016003113240004,0.03210735693574,-0.083081312477589],[0.018210405483842,0.037367183715105,0.054843835532665],[-0.0015220914501697,-0.047977481037378,0.064054027199745]],[[0.013967577368021,0.027781505137682,-0.043486818671227],[0.036121807992458,0.069676861166954,0.024023316800594],[-0.1606097817421,0.013847704045475,-0.028611900284886]],[[-0.058162774890661,-0.061476062983274,-0.070804931223392],[-0.027469744905829,0.054778195917606,0.021301094442606],[-0.053799707442522,0.094025455415249,0.1180704459548]],[[0.1765012294054,-0.0053208051249385,-0.10092730820179],[0.13270637392998,-0.14598512649536,-0.051066718995571],[0.00094329827697948,-0.053210381418467,-0.023153586313128]],[[-0.0045064836740494,-0.066831678152084,0.021300069987774],[-0.017849195748568,-0.020117998123169,-0.018596690148115],[-0.018958194181323,0.064983241260052,0.027909083291888]],[[-0.0345772318542,-0.11754305660725,0.00022850444656797],[0.011737103573978,-0.10787664353848,-0.075329385697842],[0.069414779543877,0.10212071985006,0.053296830505133]],[[-0.03678497672081,0.078747041523457,-0.0027851806953549],[-0.03969344124198,0.0012354721548036,-0.00253413640894],[-0.040369957685471,0.080920979380608,0.090494759380817]],[[0.018633484840393,0.16160015761852,-0.088864989578724],[0.063040226697922,-0.026663405820727,-0.059027750045061],[-0.064124554395676,-0.040999412536621,-0.15533210337162]],[[0.0034055227879435,-0.0084628127515316,-0.066827565431595],[-0.083941571414471,-0.073357567191124,0.033074919134378],[-0.0090156197547913,0.059875771403313,0.046936642378569]],[[0.03166901320219,0.021289924159646,0.070452228188515],[-0.095924727618694,0.074841842055321,0.087880954146385],[0.024912536144257,-0.0057370965369046,-0.031979162245989]],[[-0.059887580573559,0.026059584692121,0.054828073829412],[-0.14853325486183,0.030898436903954,0.024710558354855],[-0.060266382992268,0.27243629097939,-0.032484121620655]],[[-0.043329078704119,-0.053449608385563,0.084867186844349],[0.037334304302931,0.10743260383606,-0.078317083418369],[-0.10477440059185,0.046423591673374,-0.056556824594736]],[[-0.046235483139753,-0.049391463398933,0.010532779619098],[0.098797291517258,0.053938869386911,0.026774022728205],[-0.14598590135574,-0.02119973115623,0.094192020595074]],[[-0.096228137612343,-0.029182258993387,0.016094751656055],[-0.026713700965047,0.10406152158976,-0.019002830609679],[-0.034788403660059,-0.00022686952434015,-0.055415622889996]],[[0.20281568169594,0.16588141024113,-0.055852521210909],[0.054515939205885,-0.06902901083231,-0.033941365778446],[0.0067663504742086,-0.035638466477394,-0.082624532282352]],[[-0.16189081966877,0.012945999391377,-0.073308020830154],[0.048857513815165,-0.12392870336771,-0.071730338037014],[-0.12975516915321,0.087739855051041,-0.099306590855122]],[[0.023369872942567,0.15728703141212,-0.026138281449676],[0.13157126307487,-0.010760200209916,-0.20219151675701],[0.092919334769249,-0.19732603430748,0.041585694998503]],[[0.14310309290886,-0.024284422397614,-0.090521611273289],[0.13162367045879,-0.11405417323112,-0.011421606875956],[0.045122995972633,-0.12458358705044,-0.12468154728413]],[[-0.050129011273384,-0.036978460848331,0.063222840428352],[-0.1074298247695,0.046956423670053,-0.0029149518813938],[-0.013237641192973,-0.11074074357748,-0.034844417124987]],[[0.12699736654758,0.058098036795855,-0.022774929180741],[0.10000068694353,-0.022761696949601,-0.05313964933157],[-0.012592281214893,-0.0092222783714533,-0.060531470924616]],[[-0.047842256724834,0.067884966731071,0.037278890609741],[0.057167880237103,-0.031042812392116,0.069193579256535],[0.18362064659595,0.051648773252964,-0.058210223913193]],[[0.0245859362185,-0.12261027097702,-0.030506864190102],[-0.013353241607547,-0.090283162891865,-0.030978845432401],[0.086346626281738,-0.004393529612571,-0.027579752728343]],[[-0.11377850919962,-0.029787072911859,0.093526408076286],[-0.12712998688221,-0.16154533624649,0.23975463211536],[-0.067256473004818,0.12940643727779,0.025939816609025]],[[-0.027413405478001,0.105867870152,0.067427024245262],[0.038957353681326,-0.079365715384483,-0.0097287436947227],[-0.15176865458488,0.099052526056767,-0.04011220112443]],[[-0.031450569629669,-0.043220441788435,-0.046768229454756],[-0.002568966941908,-0.10280123353004,-0.18337680399418],[-0.064006842672825,0.027358926832676,0.19429455697536]],[[0.020315969362855,0.089355923235416,-0.11608083546162],[0.02511597238481,-0.020886734127998,-0.0867018699646],[-0.001630186685361,0.045826844871044,0.085450142621994]],[[-0.016270244494081,0.27442583441734,-0.0012527678627521],[0.035529222339392,0.27372473478317,-0.023136772215366],[-0.0304921194911,0.061737291514874,-0.027203179895878]],[[0.10977009683847,-0.078513629734516,-0.017316045239568],[0.014518613927066,-0.011192480102181,-0.021385265514255],[0.036649376153946,0.0139822345227,-0.16338063776493]],[[-0.038874540477991,-0.027696656063199,0.09120474755764],[-0.12960864603519,0.1423501521349,0.00033353516482748],[-0.15880842506886,0.011275037191808,0.23180727660656]],[[-0.0048447768203914,-0.10100562125444,0.070496797561646],[0.059761229902506,-0.030590137466788,-0.0078239711001515],[-0.049642596393824,-0.16183367371559,0.034229170531034]],[[-0.087515287101269,0.017136970534921,0.050303731113672],[0.023968474939466,0.018592284992337,-0.049465022981167],[-0.050780046731234,0.07116212695837,0.053890604525805]],[[-0.013298881240189,-0.03912715613842,0.14535421133041],[-0.18723399937153,-0.0020006350241601,0.10335904359818],[0.032234936952591,0.019799673929811,-0.093008629977703]],[[0.00024693045997992,-0.046690747141838,0.075164720416069],[0.04070945084095,-0.018188124522567,0.043490193784237],[-0.079889081418514,-0.016815107315779,-0.06147750839591]],[[-0.060325942933559,0.0055192839354277,0.11384052038193],[-0.038364481180906,0.18290624022484,0.12630105018616],[-0.0077438745647669,-0.20613272488117,0.046810079365969]],[[0.058504093438387,-0.074982725083828,-0.091958597302437],[-0.032257743179798,0.026139173656702,-0.18002347648144],[-0.061345189809799,-0.10718950629234,-0.032428827136755]],[[0.086914651095867,0.032127309590578,-0.0054295710287988],[-0.084996454417706,0.21830214560032,0.072796121239662],[-0.15961134433746,-0.0775331184268,0.014528990723193]],[[0.14899455010891,0.069270476698875,0.075003139674664],[0.079283088445663,0.10427781939507,-0.0088477246463299],[0.10300149768591,-0.051168788224459,0.025482170283794]],[[-0.0090816067531705,-0.091822609305382,-0.026954354718328],[-0.13636852800846,-0.19220687448978,-0.00308543513529],[0.037606582045555,0.2704838514328,0.057835217565298]],[[0.10707903653383,-0.014348128810525,-0.1973667293787],[0.024442272260785,0.1339076757431,-0.16028366982937],[-0.061452008783817,0.00039850891334936,0.12026900053024]],[[-0.044268518686295,0.13635958731174,-0.068484984338284],[-0.013944637961686,0.046022087335587,-0.030339390039444],[0.073135197162628,0.02248652279377,0.0090512940660119]],[[0.11082881689072,0.046440105885267,-0.03984696790576],[-0.015700044110417,-0.068858556449413,-0.12389462441206],[-0.10816550254822,0.018612459301949,0.084799692034721]],[[0.06031608954072,0.056572861969471,-0.016429366543889],[-0.030948543921113,-0.14909973740578,-0.099249444901943],[0.011830109171569,0.068177953362465,-0.009786194190383]],[[-0.092529252171516,0.059399235993624,0.013469368219376],[0.037026677280664,-0.098012819886208,0.032569881528616],[0.16201165318489,0.089953415095806,-0.012347659096122]],[[0.13853326439857,-0.18106612563133,-0.023320345208049],[-0.085914127528667,0.16182279586792,-0.078459098935127],[-0.044133692979813,0.1527686715126,-0.0041891406290233]]],[[[-0.016887353733182,-0.059507679194212,0.036099757999182],[-0.015884814783931,0.12517234683037,-0.0021470575593412],[0.097687244415283,0.12226209044456,-0.083807520568371]],[[-0.012541722506285,-0.037592586129904,-0.043916404247284],[0.12090450525284,0.12636275589466,0.11324064433575],[0.0012023001909256,0.020641904324293,-0.21111252903938]],[[-0.01353476382792,0.033824145793915,0.065867520868778],[-0.02666949853301,0.029144430533051,-0.011268828064203],[-0.084064766764641,0.060382232069969,-0.061169508844614]],[[0.027800131589174,0.044075723737478,-0.06228381767869],[0.011267001740634,0.045042704790831,0.050715949386358],[0.066302411258221,0.011927752755582,0.069138906896114]],[[0.07852128893137,-0.015161151066422,-0.071683123707771],[-0.058400042355061,0.038072817027569,0.14667418599129],[-0.0064836884848773,0.11182797700167,0.045132178813219]],[[0.085274390876293,-0.027690205723047,-0.040742602199316],[0.0061295577324927,-0.035961873829365,-0.038088593631983],[0.026323586702347,0.048912201076746,-0.044482510536909]],[[-0.013897841796279,-0.050429478287697,0.030778830870986],[-0.084937788546085,0.00094406120479107,0.063024766743183],[-0.11231855303049,-0.046767123043537,0.065698340535164]],[[-0.066987536847591,-0.13525113463402,0.15303756296635],[-0.089420348405838,0.11895279586315,0.067914873361588],[-0.096836574375629,0.033980891108513,0.022155530750751]],[[-0.11651675403118,0.031100369989872,-0.1004840284586],[-0.0028438626322895,0.05973432213068,0.058591742068529],[0.031928084790707,-0.047207441180944,0.1444106400013]],[[-0.0030356626957655,0.068363375961781,-0.045243825763464],[0.074377812445164,-0.028076164424419,-0.066356338560581],[-0.0076994486153126,-0.15675017237663,-0.091099314391613]],[[-0.037346985191107,0.019264565780759,0.085519649088383],[-0.011948052793741,0.10867986083031,-0.0088602043688297],[0.0023763738572598,-0.032917346805334,-0.036832176148891]],[[-0.004238654859364,0.006506368983537,0.1063132584095],[-0.033941131085157,-0.17460452020168,0.018450981006026],[0.060686487704515,-0.032715033739805,-0.026428649201989]],[[0.028681227937341,-0.038412936031818,0.025104302912951],[-0.062903977930546,0.16405011713505,0.099261544644833],[-0.032250445336103,-0.016869911924005,-0.076826296746731]],[[-0.017323732376099,-0.059416808187962,0.045359786599874],[-0.030032662674785,-0.061106029897928,0.060918360948563],[0.10906110703945,0.034478548914194,-0.14886355400085]],[[-0.0093147614970803,-0.034875709563494,0.014157740399241],[0.015461944043636,0.0020009493455291,0.0054776235483587],[-0.073945075273514,0.037729702889919,-0.046160772442818]],[[-0.029098253697157,0.098925404250622,-0.098297663033009],[-0.019074726849794,0.15979543328285,-0.15338650345802],[0.024032112210989,-0.049186959862709,0.18713670969009]],[[-0.13880616426468,0.02584383636713,0.0053922962397337],[0.052407328039408,0.0024965796619654,0.055520065128803],[0.080952636897564,-0.022247960790992,0.039694163948298]],[[0.036920372396708,0.067180499434471,0.015055365860462],[-0.085328668355942,-0.046444810926914,0.019371790811419],[0.027227371931076,-0.10829093307257,-0.037756334990263]],[[-0.026978949084878,0.039322920143604,0.049890533089638],[-0.0071690264157951,0.061156790703535,-0.0055623375810683],[-0.071874029934406,0.0066048405133188,0.079225100576878]],[[-0.031011743471026,0.038649380207062,-0.10021038353443],[-0.014858369715512,-0.0031286031007767,-0.13864597678185],[0.073957338929176,0.062011297792196,-0.069633185863495]],[[0.072086751461029,0.0451271943748,-0.048946212977171],[-0.057915218174458,0.056081634014845,0.0045939614064991],[-0.040538106113672,-0.063807316124439,0.11163884401321]],[[-0.021813394501805,-0.096279263496399,-0.019185237586498],[-0.010325089097023,0.064377024769783,0.044588036835194],[0.022503828629851,0.018084563314915,-0.037658251821995]],[[-0.016050888225436,0.10621435195208,0.049570273607969],[0.0049999416805804,0.076357789337635,-0.097889073193073],[0.0024754027836025,-0.0090524712577462,-0.04384732618928]],[[0.046647872775793,0.039527259767056,-0.052195195108652],[0.053214851766825,-0.011624844744802,0.0091133899986744],[-0.043112255632877,-0.036596938967705,0.042174328118563]],[[0.017652880400419,-0.075279198586941,0.11911879479885],[-0.038780558854342,-0.074995525181293,0.017721090465784],[0.058383855968714,-0.14729176461697,0.038889411836863]],[[-0.020917125046253,0.04293617233634,-0.0080491518601775],[0.051847957074642,-0.021492831408978,0.01161592733115],[0.041918203234673,-0.057796414941549,0.024574752897024]],[[0.061177909374237,0.024876870214939,-0.023991428315639],[-0.01014940533787,-0.026899933815002,-0.0053551574237645],[-0.058054130524397,0.0076872250065207,0.012887147255242]],[[-0.038405328989029,0.012778848409653,-0.063356563448906],[-0.046187721192837,0.031670987606049,0.11516886204481],[-0.097608894109726,-0.043957132846117,0.014486633241177]],[[0.05033740773797,0.0096011962741613,0.026396794244647],[0.057291436940432,-0.0095216324552894,0.011358265765011],[-0.00085806875722483,0.023404320701957,0.003348363796249]],[[0.016688102856278,-0.01466813031584,0.02189202606678],[0.094121851027012,-0.050967898219824,-0.048837274312973],[-0.00058072607498616,0.074718430638313,-0.1015984043479]],[[-0.014917020685971,-0.0001017365793814,-0.034508787095547],[-0.044632531702518,-0.069281958043575,-0.032720733433962],[0.14936944842339,-0.10220541059971,-0.024317381903529]],[[0.082818813621998,-0.016649719327688,0.10691966116428],[-0.079922370612621,0.064508780837059,0.035762462764978],[0.04873901233077,0.01665124297142,-0.010148718953133]],[[0.10916725546122,0.044049695134163,-0.089617803692818],[0.13173964619637,0.1144220456481,-0.11029757559299],[-0.024955034255981,0.020132699981332,-0.04764561355114]],[[0.0095817511901259,-0.064893953502178,0.085175134241581],[0.079218856990337,-0.10089157521725,0.048407480120659],[-0.0026632356457412,0.011027973145247,0.0029055126942694]],[[0.020674794912338,0.047377545386553,0.045469801872969],[0.0074886516667902,0.050649352371693,-0.046019479632378],[-0.070041246712208,-0.0040305312722921,-0.110272154212]],[[0.079413883388042,-0.066656090319157,-0.073695234954357],[-0.029774850234389,0.1090981811285,-0.03262971714139],[0.016223641112447,-0.01636079698801,0.0052670007571578]],[[0.047284588217735,0.11887856572866,0.064231865108013],[0.014802239835262,0.10031511634588,-0.0078917611390352],[0.003205691697076,0.062677852809429,-0.0015264778630808]],[[0.094560153782368,0.031926393508911,0.016946209594607],[0.014680528081954,0.034030441194773,0.062128074467182],[-0.034710817039013,0.026918785646558,-0.024215372279286]],[[0.10352976620197,0.00018126959912479,0.029946634545922],[0.016000078991055,0.055631417781115,-0.052328586578369],[0.0072950669564307,-0.023181514814496,-0.0052017993293703]],[[0.0044172210618854,-0.10277415812016,-0.01454708725214],[-0.05113584920764,-0.028508028015494,0.06186306849122],[-0.021376494318247,0.017203209921718,0.082990489900112]],[[0.014227638952434,-0.00066300947219133,-0.03844628483057],[0.061523772776127,0.0041408981196582,0.013548905961215],[-0.10308633744717,-0.059438232332468,-0.048202943056822]],[[0.025410659611225,0.027841283008456,0.054563332349062],[0.054714720696211,-0.021536169573665,0.079151183366776],[0.10469325631857,0.133376121521,0.034020572900772]],[[-0.016767451539636,-0.0066195530816913,0.053299397230148],[0.095774710178375,-0.058040902018547,-0.0037320316769183],[-0.057567395269871,0.069257475435734,0.052285201847553]],[[-0.041328739374876,0.051777001470327,0.007829018868506],[-0.03397773578763,-0.0077529503032565,0.11165362596512],[-0.026317797601223,-0.066889464855194,-0.028870604932308]],[[0.11479809880257,0.08419831097126,-0.063482291996479],[0.034295909106731,-0.090176485478878,0.014938360080123],[0.075461097061634,0.015237553976476,0.011757373809814]],[[-0.049905925989151,0.17679347097874,0.032233782112598],[0.062438517808914,0.0090300356969237,0.11363194137812],[0.16430267691612,0.03995343670249,0.084449589252472]],[[0.02645480260253,0.067077897489071,0.0076696346513927],[0.13373433053493,-0.026388138532639,0.022676235064864],[0.099030397832394,0.0084480820223689,0.019064934924245]],[[-0.0085572171956301,-0.08196733891964,-0.087791301310062],[-0.022948648780584,0.01341497246176,0.059100940823555],[-0.051589515060186,-0.078265927731991,-0.018858933821321]],[[0.055710978806019,-0.005947622936219,-0.088679239153862],[-0.044521570205688,0.051488671451807,-0.00018386110605206],[-0.0032186305616051,-0.038449797779322,-0.050525840371847]],[[0.0010671087075025,-0.0016707719769329,-0.084347352385521],[0.0027129927184433,0.0070324228145182,-0.00033897254616022],[-0.028214300051332,0.10277763009071,0.10129861533642]],[[0.034525364637375,0.10220539569855,-0.10349993407726],[-0.0061251390725374,-0.021015454083681,-0.11092542111874],[-0.0032596446108073,0.039663322269917,0.03870901465416]],[[0.14014700055122,0.080083034932613,0.067385889589787],[0.039702571928501,-0.022283187136054,-0.028296120464802],[0.042271792888641,-0.068820141255856,-0.028376843780279]],[[-0.067979641258717,-0.043392341583967,-0.032967254519463],[0.087216839194298,0.027881966903806,-0.010580538772047],[0.033114913851023,0.028752811253071,-0.059126924723387]],[[0.043016243726015,-0.022805728018284,0.073175981640816],[0.099630549550056,0.063541226089001,-0.0082071088254452],[0.11775896698236,0.063033699989319,0.038023479282856]],[[-0.01566918566823,-0.043553486466408,-0.021134519949555],[-0.026778576895595,0.15791015326977,0.053603488951921],[0.0028356667608023,-0.055152405053377,-0.0097708310931921]],[[0.0090225590392947,0.015034672804177,0.038359865546227],[0.13309647142887,0.046103116124868,0.0021756137721241],[-0.19447164237499,0.26681470870972,-0.017866088077426]],[[0.11187693476677,-0.037002146244049,-0.026785723865032],[-0.0031392415985465,0.11201614886522,0.054709933698177],[-0.014863391406834,-0.050921965390444,0.068237878382206]],[[0.015775382518768,0.017409374937415,0.025778211653233],[-0.058823462575674,-0.03347247466445,0.02572226524353],[0.080574616789818,0.11570960283279,0.023753954097629]],[[0.03726190328598,-0.032051265239716,0.0032659168355167],[0.055789239704609,0.071470595896244,0.11914119124413],[-0.0018028090707958,-0.17572286725044,0.039924018085003]],[[0.041836600750685,-0.077218674123287,0.044978894293308],[-0.042696747928858,0.024114953354001,0.020906910300255],[0.013877098448575,0.045004297047853,-0.08150689303875]],[[-0.022326601669192,-0.022294944152236,-0.044262010604143],[-0.033526055514812,0.055988598614931,-0.051325149834156],[0.16407500207424,0.0061346981674433,0.021321088075638]],[[-0.10991257429123,0.06206201761961,-0.0024941477458924],[-0.038223210722208,0.026718378067017,0.014229981228709],[-0.045859947800636,0.021926952525973,0.0077708456665277]],[[0.03960756957531,0.00096396933076903,-0.041044533252716],[-0.057986255735159,-0.0002018670347752,-0.014816365204751],[-0.06245869025588,-0.089727982878685,-0.13234859704971]],[[-0.070012040436268,0.035212013870478,0.018990203738213],[0.024117587134242,0.076591782271862,0.0068392721004784],[0.0066746324300766,-0.015061758458614,-0.034297272562981]],[[0.0050047230906785,-0.085710488259792,0.051048595458269],[0.055176872760057,-0.055252198129892,0.0050938832573593],[0.019173478707671,-0.063513860106468,-0.034674532711506]],[[-0.026029175147414,-0.037913471460342,0.022721979767084],[0.023819113150239,0.076036542654037,-0.056198928505182],[0.027583003044128,0.040116745978594,0.0050960201770067]],[[-0.084410198032856,-0.077643297612667,0.18029229342937],[-0.034910395741463,0.070348396897316,0.056335669010878],[0.054363083094358,0.078411616384983,0.055684603750706]],[[0.029729954898357,0.084576569497585,-0.025369329378009],[0.012851502746344,0.016932150349021,-0.10696246474981],[0.12636917829514,-0.029389144852757,0.080186121165752]],[[-0.039371456950903,-0.042938087135553,0.11757085472345],[-0.07438050955534,-0.043942213058472,0.0082548465579748],[0.070413194596767,-0.036570146679878,0.041307877749205]],[[0.00053277495317161,-0.042734835296869,-0.016911026090384],[-0.10486481338739,-0.043698348104954,0.060754746198654],[-0.017965683713555,0.11510507017374,0.010700263082981]],[[0.030997632071376,-0.10267239063978,-0.023425593972206],[0.031496342271566,0.012042632326484,0.064317189157009],[-9.8026648629457e-05,-0.051932416856289,0.0047308378852904]],[[0.099817156791687,0.040468949824572,-0.015162089839578],[-0.043412432074547,0.044747233390808,0.0035613542422652],[-0.13400486111641,-0.08133540302515,0.0076795374043286]],[[0.010693240910769,0.051055662333965,0.07104554772377],[-0.060338504612446,0.10994520783424,-0.063780307769775],[0.05492702499032,0.027025755494833,0.054300710558891]],[[-0.015322706662118,-0.08345077931881,-0.048840660601854],[-0.02501854300499,-0.0097243171185255,0.0046221148222685],[-0.045286972075701,-0.0494374781847,0.02640144340694]],[[0.1369718760252,0.031191756948829,-0.036435917019844],[0.043704200536013,-0.087100222706795,0.015002143569291],[0.016413062810898,-0.034290935844183,-0.047907683998346]],[[-0.020459610968828,-0.01613792963326,-0.050585128366947],[0.016377046704292,-0.12210909277201,-0.02337995916605],[0.020483868196607,-0.14271435141563,0.015549904666841]],[[-0.068947054445744,0.0017332269344479,-0.0060836258344352],[-0.11390726268291,-0.075783148407936,0.031544122844934],[-0.025547262281179,0.03874284029007,0.11918340623379]],[[0.016735952347517,0.085068240761757,-0.097168050706387],[0.034912075847387,-0.069689117372036,-0.030970657244325],[0.036418039351702,0.013158439658582,0.031907133758068]],[[0.027718268334866,-0.06260684132576,0.059090241789818],[-0.013721615076065,-0.088232353329659,0.032758213579655],[0.0040999283082783,-0.027151059359312,-0.00084819691255689]],[[-0.040049020200968,-0.096573904156685,0.088878639042377],[0.00045896452502348,-0.0092315087094903,0.095989346504211],[-0.063904173672199,-0.0218575168401,-0.030039260163903]],[[0.015610806643963,-0.00097984436433762,0.024181354790926],[0.054564692080021,-0.015617138706148,-0.0018821592675522],[0.032948896288872,0.032898865640163,-0.066257260739803]],[[-0.020778054371476,0.024877198040485,-0.067215338349342],[0.11522025614977,-0.0057308180257678,-0.043683975934982],[-0.097565926611423,-0.079599671065807,-0.088070407509804]],[[-0.05246689543128,-0.007061846088618,-0.063852891325951],[0.18174767494202,0.026381306350231,-0.013461076654494],[0.048695717006922,0.023132711648941,-0.01459089294076]],[[0.1146511733532,-0.094249434769154,0.098539598286152],[-0.027629742398858,-0.0067134597338736,-0.0087348129600286],[-0.063119381666183,0.089842766523361,-0.0043068453669548]],[[-0.10062237083912,-0.015450905077159,0.040436659008265],[-0.0694300532341,-0.038698226213455,-0.028186585754156],[0.00069135439116508,0.026036905124784,-0.027904085814953]],[[-0.018695404753089,0.062680825591087,-0.055740121752024],[-0.047393564134836,-0.012311579659581,-0.088397905230522],[-0.069209769368172,-0.051533531397581,-0.082278952002525]],[[-0.029670564457774,0.029775204136968,0.001150329480879],[-0.02975813485682,-0.021711869165301,0.015134766697884],[0.026070225983858,0.0095893125981092,0.046453829854727]],[[0.02136074192822,0.028333649039268,0.019024422392249],[0.13496363162994,-0.097488813102245,0.010111412964761],[0.011495694518089,-0.080025911331177,0.12278045713902]],[[0.11413289606571,-0.031883325427771,-0.022779474034905],[0.10712292045355,-0.076793126761913,0.035553961992264],[0.0098435841500759,0.097802922129631,-0.038658794015646]],[[-0.10115108639002,-0.057696755975485,-0.0065536568872631],[-0.028863575309515,0.033710349351168,-0.052809234708548],[0.058175954967737,0.11013222485781,0.071338251233101]],[[0.015164798125625,-0.055589471012354,-0.12146740406752],[-0.0085215540602803,-0.024559527635574,0.058064125478268],[0.1058836504817,-0.1010023355484,0.073565497994423]],[[0.10126024484634,0.02592614851892,0.053371302783489],[-0.034819185733795,-0.0032109871972352,0.026693487539887],[-0.06505873799324,-0.026113841682673,0.076035499572754]],[[-0.009679819457233,-0.033504299819469,0.19369803369045],[0.022730896249413,-0.010626167990267,0.047237798571587],[0.18033799529076,-0.070710457861423,0.063888788223267]],[[-0.042287386953831,0.10139544308186,0.043358288705349],[0.052089493721724,0.031767476350069,0.017824387177825],[0.0068894289433956,0.08145060390234,-0.25171744823456]],[[-0.037733532488346,0.03522727265954,-0.013020164333284],[0.065355777740479,-0.081191025674343,0.029046373441815],[-0.11009024828672,-0.089271791279316,-0.038797028362751]],[[0.023287549614906,0.017208153381944,0.073312111198902],[0.029761830344796,-0.052894297987223,0.088363416492939],[-0.069135136902332,0.058645412325859,0.15719100832939]],[[0.048140458762646,0.069662600755692,0.081444837152958],[-0.0050771031528711,0.019785782322288,-0.060570832341909],[0.021002251654863,-0.0032451648730785,-0.075833775103092]],[[0.0024514689575881,-0.072882167994976,-0.02618108317256],[0.088979348540306,0.019823558628559,0.11114033311605],[-0.036880787461996,0.0034376354888082,0.097239695489407]],[[0.020141433924437,0.04868546128273,0.076493106782436],[0.074466571211815,-0.083070985972881,0.015601005405188],[0.04548854008317,0.040042143315077,-0.0017485948046669]],[[0.0083886310458183,-0.11551393568516,-0.030852291733027],[-0.092312887310982,-0.055679243057966,0.079613521695137],[0.08489978313446,-0.049422364681959,0.016786316409707]],[[-0.066785208880901,-0.014825936406851,-0.024885294958949],[0.019578881561756,-0.0046864855103195,0.11411581933498],[-0.071757845580578,0.10392759740353,0.0061357989907265]],[[-0.078401327133179,0.12584328651428,-0.012505327351391],[-0.0083112688735127,0.11212249100208,-0.098246462643147],[-0.073802106082439,0.027356149628758,0.032662209123373]],[[0.054278209805489,-0.0045983055606484,-0.01883403211832],[0.062931552529335,0.00043393761734478,0.065407030284405],[0.041163865476847,0.069816894829273,0.067276693880558]],[[0.04493348672986,0.02093848772347,-0.012149968184531],[0.057659886777401,-0.081777848303318,0.0276591014117],[-0.072913490235806,0.079003259539604,-0.0023393041919917]],[[-0.038947019726038,0.083748050034046,0.080634586513042],[0.016937654465437,-0.063481502234936,-0.085286505520344],[-0.08454629778862,0.028938004747033,0.033882420510054]],[[-0.14307759702206,-0.03938952460885,-0.0055886320769787],[0.034223135560751,-0.00092617952032015,-0.10050371289253],[0.097960196435452,-0.0060218726284802,0.040586162358522]],[[-0.026997087523341,-0.069980226457119,-0.049771293997765],[0.0072451159358025,-0.065422996878624,0.055068958550692],[-0.016578931361437,-0.09158780425787,0.0808385014534]],[[-0.051029581576586,-0.034601848572493,-0.02105962485075],[-0.046540260314941,0.030458182096481,-0.041870839893818],[0.05894398316741,0.030848629772663,0.028655296191573]],[[-0.013199750334024,-0.0074092377908528,-0.10433258861303],[-0.033632170408964,-0.032482646405697,0.027682539075613],[-0.055789671838284,-0.041475988924503,0.033087931573391]],[[0.029117237776518,0.042220294475555,0.038589272648096],[0.046357415616512,-0.018293442204595,0.085925057530403],[0.042405594140291,-0.030162245035172,-0.069327339529991]],[[0.022119220346212,-0.084995239973068,0.080959804356098],[0.046498015522957,-0.02636344730854,0.011422068811953],[0.011257326230407,-0.00034432037500665,-0.059673313051462]],[[-0.0093641532585025,0.03869004920125,-0.062497064471245],[0.069386079907417,0.07584960013628,0.047589991241693],[-0.022770863026381,0.051102954894304,-0.1118800342083]],[[-0.029605694115162,-0.063042402267456,-0.022798245772719],[-0.092743486166,-0.13517825305462,-0.05451337620616],[-0.010127856396139,-0.072462342679501,-0.031974170356989]],[[-0.088186360895634,0.15218816697598,0.01113648712635],[-0.016534941270947,-0.0037446282804012,-0.043796181678772],[0.086766757071018,0.047980207949877,0.11857911199331]],[[0.075014129281044,-0.033971264958382,-0.037296310067177],[0.057765603065491,-0.086805894970894,0.0086897546425462],[-0.062015160918236,-0.0721425563097,0.017172522842884]],[[-0.040623012930155,-0.052773840725422,-0.098544090986252],[0.0088249677792192,-0.04648420587182,-0.010227739810944],[-0.03653621673584,-0.042980745434761,-0.043372072279453]],[[-0.0062563810497522,-0.091641709208488,-0.029264910146594],[0.080372117459774,-0.13160549104214,0.020096231251955],[0.036216422915459,0.0062903757207096,0.034773092716932]],[[0.036921981722116,-0.10339272767305,-0.093805864453316],[0.025176558643579,0.056446343660355,-0.039606418460608],[0.024780178442597,-0.094323739409447,0.049467351287603]],[[0.01702094450593,0.00028963116346858,0.045247104018927],[0.0769417360425,0.025858011096716,0.054788112640381],[0.0084841856732965,-0.015954179689288,-0.044318672269583]],[[0.068391770124435,0.10032337903976,-0.085920058190823],[0.059961255639791,-0.07152646780014,0.030818762257695],[0.001940930611454,-0.019667703658342,0.0059838909655809]],[[0.030162435024977,-0.027787555009127,0.043663237243891],[0.060211859643459,-0.0033192418050021,-0.001669698045589],[-0.017906434834003,0.022233091294765,0.11487194895744]],[[-0.025545021519065,0.075928866863251,-0.051026657223701],[0.0646668151021,-0.092236161231995,-0.0083189606666565],[-0.16062061488628,0.057970106601715,-0.0859285145998]],[[0.002124274848029,0.0017055828357115,-0.033198494464159],[0.015085723251104,-0.029740741476417,-0.060473494231701],[0.0047199055552483,0.011731138452888,0.012371513992548]],[[0.010691023431718,0.040532823652029,-0.017891876399517],[-3.5410477721598e-05,0.13888001441956,-0.011337366886437],[0.0084176203235984,-0.13115528225899,0.034315124154091]],[[-0.026899440214038,0.019166819751263,-0.028449522331357],[-0.10560597479343,-0.032604284584522,0.016132839024067],[0.087351508438587,0.048930138349533,0.044835012406111]],[[0.037590328603983,-0.022838842123747,0.095221169292927],[0.041169300675392,-0.035701185464859,0.043357316404581],[-0.033785160630941,0.031358506530523,0.028862545266747]],[[0.007074864115566,0.063217587769032,-0.031993925571442],[0.0065240152180195,0.020150160416961,-0.035449605435133],[0.072880707681179,0.01910238340497,-0.062694355845451]],[[-0.069503054022789,0.061267655342817,-0.12163427472115],[0.06165637075901,-0.039090264588594,0.18728703260422],[-0.048920832574368,-0.022007873281837,-0.077542781829834]]],[[[0.043117992579937,0.0050069475546479,-0.036927349865437],[0.026433592662215,0.051844149827957,-0.012431318871677],[-0.047648802399635,0.022867390885949,0.042699534446001]],[[0.0018133765552193,-0.04567189142108,-0.034775193780661],[-0.024398170411587,-0.01941292360425,-0.034027516841888],[0.04416324198246,-0.053811866790056,-0.047431014478207]],[[0.045871861279011,-0.0061735515482724,0.054630450904369],[0.041265778243542,-0.064049050211906,-0.012440976686776],[-0.0095298998057842,0.030311919748783,-0.068575449287891]],[[0.094520457088947,0.038047481328249,-0.096817992627621],[-0.027352405712008,0.029617896303535,0.031066570430994],[0.027906164526939,0.02016282081604,0.008925867266953]],[[-0.028904814273119,-0.027565110474825,-0.013255979865789],[-0.080285720527172,-0.099851302802563,0.019382392987609],[-0.029905766248703,-0.031320065259933,-0.015943858772516]],[[0.070149503648281,0.067727811634541,0.039198003709316],[0.00070314825279638,0.065310046076775,-0.033252455294132],[0.069678232073784,0.10402395576239,0.032314222306013]],[[0.048407029360533,0.079765409231186,-0.034183856099844],[-0.033642753958702,-0.078542985022068,-0.068528264760971],[0.036542382091284,0.033198740333319,-0.023085599765182]],[[-0.039320465177298,0.052849844098091,0.028185334056616],[-0.035219702869654,-0.0071545797400177,0.058289099484682],[0.032303564250469,0.059442158788443,0.035230305045843]],[[0.018288629129529,-0.12506009638309,0.01804630830884],[0.067795895040035,0.015700547024608,0.01998415030539],[0.060692299157381,-0.0070070158690214,0.023341089487076]],[[0.013357249088585,0.062111832201481,-0.0046100658364594],[0.021913789212704,-0.0021837004460394,0.035325832664967],[-0.073116719722748,0.049876846373081,0.024739997461438]],[[-0.0030625660438091,-0.0056278086267412,0.045956443995237],[-0.014788121916354,-0.045508466660976,0.074431359767914],[-0.035590633749962,-0.023083280771971,0.034987356513739]],[[0.065356627106667,0.045445639640093,0.075591325759888],[-0.023768737912178,-0.074844837188721,-0.018640074878931],[0.040580429136753,-0.017627278342843,0.089261896908283]],[[-0.08527584373951,-0.0042198090814054,-0.00042327828123234],[0.042616702616215,-0.04450860992074,0.050453018397093],[-0.00053285493049771,0.014822695404291,-0.0042351083829999]],[[-0.061569023877382,0.034732930362225,-0.074847914278507],[-0.042725753039122,-0.015889899805188,-0.029367286711931],[-0.007299714256078,0.038639694452286,-0.089865371584892]],[[0.029374895617366,0.0434165969491,-0.08180109411478],[-0.041955333203077,0.0066439043730497,-0.039660699665546],[0.032757911831141,0.046302203088999,0.01757088676095]],[[0.051046654582024,0.073567695915699,0.036364499479532],[-0.04415437951684,0.072823978960514,-0.029594590887427],[0.031021874397993,-0.026127906516194,-0.03254384920001]],[[-0.0085685616359115,-0.082931987941265,-0.053061105310917],[0.085715629160404,0.059335306286812,-0.043408345431089],[-0.02830052934587,0.03076272085309,-0.0015114853158593]],[[-0.022413937374949,0.0038521280512214,0.059736654162407],[0.066718719899654,-0.10632494837046,-0.01934677362442],[0.0067006764002144,-0.025543196126819,0.073308639228344]],[[-0.0084811309352517,-0.03329499438405,0.045672915875912],[0.046802654862404,0.0047963745892048,0.040242671966553],[-0.035100199282169,0.046169929206371,0.074254930019379]],[[0.001009427360259,0.043765772134066,-0.029492875561118],[-0.086350224912167,0.012001696042717,-0.098753988742828],[-0.055913362652063,-0.033467940986156,-0.081953406333923]],[[-0.0017650625668466,-0.051675848662853,0.0076337680220604],[-0.048001665621996,0.077510975301266,-0.047292739152908],[0.013845670036972,-0.025996077805758,-0.0021525996271521]],[[0.037410445511341,-0.0023969179019332,0.091567434370518],[0.095123149454594,0.037457037717104,0.052270706743002],[0.034050699323416,0.10037646442652,-0.021003600209951]],[[0.05593441054225,0.019763384014368,0.042390897870064],[-0.02054232917726,0.029726399108768,-0.015807438641787],[0.015500953420997,0.0061362092383206,-0.0099794110283256]],[[0.080675937235355,0.036946278065443,-0.06311509013176],[0.039058264344931,0.023874057456851,0.074297174811363],[0.072785645723343,0.02742531336844,-0.073741219937801]],[[0.034546654671431,-0.026421150192618,0.076279409229755],[-0.030290819704533,-0.03203684464097,-0.093583427369595],[0.023986998945475,0.01392640452832,-0.025020249187946]],[[-0.014719786122441,0.048839692026377,0.064421072602272],[-0.044878780841827,0.065472163259983,-0.044522289186716],[0.10102540254593,-0.056700836867094,-0.018593175336719]],[[0.10688284784555,-0.010239373892546,-0.019708843901753],[0.0097122890874743,0.021652240306139,-0.0012081442400813],[0.034337002784014,0.0014720158651471,0.07590139657259]],[[0.039880979806185,0.058815818279982,0.026706870645285],[0.0083253961056471,0.070574931800365,0.076267637312412],[-0.047969844192266,-0.006327364128083,0.11216247081757]],[[0.072876892983913,0.015373919159174,-0.0089342845603824],[0.015359718352556,-0.086557611823082,-0.0059776892885566],[0.0069818124175072,0.03699354082346,0.013825374655426]],[[0.0047312770038843,-0.025281837210059,-0.040212370455265],[0.07390782982111,-0.022404823452234,-0.061617106199265],[-0.057396490126848,-0.030585655942559,0.070823818445206]],[[-0.023315386846662,-0.024169132113457,0.00018461277068127],[0.0060540945269167,0.077095173299313,0.068457596004009],[0.0099918432533741,0.0059029464609921,0.04667891189456]],[[0.022389212623239,-0.012479132972658,0.025401739403605],[-0.0094536524266005,-0.024047907441854,-0.061377849429846],[0.0013673382345587,-0.0041621159762144,0.043681591749191]],[[0.054287422448397,0.094425342977047,-0.00084703182801604],[0.067430280148983,-0.034161258488894,0.003804792650044],[0.023095278069377,0.074081227183342,-0.038966335356236]],[[0.063535667955875,0.065823785960674,0.017318833619356],[0.061336297541857,0.020816065371037,0.087941877543926],[-0.07220159471035,-0.071013830602169,-0.03184712305665]],[[-0.018139496445656,0.030932294204831,-0.10744868963957],[0.018770594149828,0.001237399992533,-0.018114039674401],[0.057035695761442,-0.043815687298775,-0.03630019724369]],[[0.067895136773586,-0.024636944755912,-0.079904355108738],[-0.0071859275922179,-0.041473168879747,0.069631703197956],[-0.014124774374068,-0.075020335614681,0.05187988653779]],[[0.0074257352389395,0.077833525836468,0.023392762988806],[-0.0059973616153002,0.020921299234033,0.0054835663177073],[0.071497730910778,-0.077771261334419,0.075098529458046]],[[-0.048588361591101,-0.013846310786903,-0.071141839027405],[0.031413417309523,-0.053451273590326,-0.17357708513737],[0.049642473459244,-0.0018216676544398,0.0071031493134797]],[[-0.038431838154793,-0.02203893661499,0.017312165349722],[-0.015834541991353,0.0038432313594967,-0.065688662230968],[-0.060130208730698,0.021457936614752,0.089214749634266]],[[-0.031513996422291,-0.076665788888931,0.069430269300938],[0.042892280966043,0.098847039043903,0.096725061535835],[0.052724450826645,0.0094962399452925,-0.040784738957882]],[[0.012984617613256,-0.028679501265287,-0.024786952883005],[0.00018996231665369,-0.0076548587530851,0.024822356179357],[0.012630427256227,0.033951066434383,0.049041442573071]],[[0.09935512393713,0.064711153507233,0.063790492713451],[0.037458326667547,0.093990877270699,0.0020499820820987],[0.11000273376703,0.0073916353285313,0.058353077620268]],[[-0.019086964428425,0.072264388203621,0.13032369315624],[0.19469986855984,0.033507131040096,-0.0057362169027328],[0.042022217065096,0.075275219976902,0.016209315508604]],[[-0.06977379322052,0.106718711555,-0.077043198049068],[-0.010213167406619,0.033096361905336,0.0065333233214915],[-0.086671188473701,0.037435960024595,0.019793529063463]],[[0.050379540771246,0.019828571006656,0.12327048927546],[0.027472635731101,-0.020905900746584,0.03090526163578],[0.048578873276711,0.043968345969915,-0.023281082510948]],[[0.12399995326996,0.064509600400925,0.14031201601028],[0.056736886501312,-0.0056269019842148,0.097057953476906],[0.02904025092721,0.041695229709148,-0.021876461803913]],[[0.08452008664608,-0.0060506113804877,-0.013244562782347],[-0.027594359591603,-0.031030703336,0.015983667224646],[-0.045659974217415,-0.008798411116004,-0.027693435549736]],[[-0.063474953174591,-0.036343898624182,0.013234193436801],[-0.052556794136763,0.052678845822811,-0.026231344789267],[-0.10169512778521,-0.031036581844091,-0.012064168229699]],[[0.019824573770165,-0.0045832693576813,0.036319606006145],[0.0040906700305641,-0.0011367360129952,0.030460862442851],[-0.078638806939125,0.05542940273881,0.030226353555918]],[[-0.0016513845184818,0.072160735726357,-0.074904955923557],[0.0053119603544474,-0.054516475647688,-0.03858594596386],[-0.017514906823635,0.053276263177395,0.027541922405362]],[[0.047146379947662,-0.069930195808411,-0.0063780657947063],[-0.0084420647472143,-0.076385140419006,0.010307757183909],[-0.056789770722389,-0.040514167398214,-0.0039552464149892]],[[-0.0033779903315008,0.052985731512308,-0.052299521863461],[0.065511472523212,0.013150596059859,0.00022625119891018],[0.019270222634077,-0.014212658628821,-0.0085995811969042]],[[-0.0086245248094201,0.093056745827198,0.04288462549448],[0.0075145815499127,-0.030910085886717,0.032480012625456],[0.11779065430164,-0.052830167114735,0.019317213445902]],[[0.064196690917015,0.018381370231509,0.028380189090967],[-0.010857415385544,0.10846521705389,0.026289187371731],[0.083606898784637,-0.020339777693152,0.025011172518134]],[[0.02007514052093,0.008758045732975,0.020504027605057],[-0.049064066261053,0.0036453390493989,-0.00046778193791397],[-0.040495064109564,-0.00087346060900018,0.014190793968737]],[[-0.09648858755827,-0.040372129529715,0.030656218528748],[0.097032688558102,0.074573017656803,-0.0074970345012844],[-0.044253468513489,0.051524367183447,-0.0057572452351451]],[[0.010283282957971,-0.0085083758458495,0.034424968063831],[0.080419301986694,0.046689607203007,0.024596782401204],[0.042869474738836,0.0039695678278804,0.014906267635524]],[[0.01387532427907,-0.0271324403584,-0.031663179397583],[-0.057788293808699,0.025846751406789,0.10239835828543],[-0.014911810867488,-0.085444502532482,-0.0061992825940251]],[[-0.060802169144154,-0.0039762211963534,0.031560845673084],[0.047252275049686,0.035343401134014,0.083956368267536],[0.045898836106062,0.07613180577755,0.014454176649451]],[[-0.089557319879532,-0.099868811666965,0.055161777883768],[-0.0065100332722068,0.055620517581701,0.0032185795716941],[0.045171838253736,-0.019409336149693,0.01660393178463]],[[0.065989308059216,0.030962655320764,-0.017563020810485],[0.041641436517239,0.010166774503887,0.030494986101985],[0.053445901721716,0.048077236860991,-0.019189056009054]],[[-0.020167272537947,-0.014566366560757,-0.062493983656168],[-0.017191490158439,-0.025485266000032,-0.014821883291006],[-0.022895993664861,-0.074008077383041,0.095172539353371]],[[0.016790026798844,-0.018371822312474,-0.043303042650223],[0.049194693565369,0.026873173192143,0.016036355867982],[-0.084996096789837,0.047127071768045,0.032344359904528]],[[0.035561449825764,0.044595215469599,0.056554917246103],[0.042021881788969,0.062424018979073,-0.03587893396616],[-0.027129651978612,0.019274432212114,0.026154451072216]],[[-0.078839659690857,-0.0038447512779385,0.076193921267986],[0.024520836770535,-0.047967948019505,-0.015105656348169],[-0.0027105822227895,-0.046817667782307,0.018439190462232]],[[0.013557486236095,0.070309214293957,0.061022531241179],[0.065828673541546,0.098429344594479,-0.012953733094037],[-0.070538319647312,0.069178611040115,0.035318490117788]],[[-0.11400168389082,-0.069019414484501,0.055671162903309],[-0.018970044329762,0.0051812548190355,0.073516741394997],[-0.0070173805579543,0.012397793121636,0.062838777899742]],[[0.048004560172558,0.027504252269864,-0.081650421023369],[0.038068171590567,-0.019586587324739,0.017661660909653],[0.037993177771568,0.030249305069447,-0.084232658147812]],[[0.072195366024971,0.011292591691017,-0.0031786714680493],[0.066245876252651,-0.085558705031872,0.06521550565958],[0.086331553757191,-0.045498952269554,0.0010280570713803]],[[-0.043586060404778,0.018217995762825,0.020763672888279],[0.031773198395967,0.015258976258337,0.032437648624182],[0.048302557319403,0.017090506851673,-0.042256888002157]],[[0.0037051739636809,0.10357689857483,0.048827104270458],[0.02574092335999,0.057277321815491,0.096830666065216],[-0.010651312768459,0.079848051071167,-0.0093672964721918]],[[0.10093988478184,-0.025030931457877,0.011581865139306],[0.0026591161731631,-0.025914238765836,0.0176807846874],[-0.060564152896404,-0.051043782383204,0.10501230508089]],[[0.037247251719236,0.0046051358804107,-0.027642495930195],[-0.050837144255638,-0.0034990254789591,-0.017293894663453],[-0.049418319016695,0.036385055631399,0.068271927535534]],[[0.045139037072659,0.064741395413876,-0.040245991200209],[0.04814762249589,0.0091588450595737,0.043815262615681],[-0.040586058050394,0.0095363622531295,-0.0017117034876719]],[[-0.026698738336563,0.019342325627804,0.075537346303463],[0.00064193928847089,0.02562359534204,0.012576368637383],[0.026654679328203,0.0025015890132636,-0.042886342853308]],[[0.038200490176678,0.03295374661684,0.0095661748200655],[0.068272821605206,-0.01760813780129,0.079694867134094],[0.0062062162905931,0.035388492047787,-0.023232223466039]],[[-0.0069612707011402,0.015526605769992,0.035792868584394],[0.0377092435956,-0.016010081395507,-0.070964060723782],[-0.0251484233886,0.052774555981159,0.036071803420782]],[[0.062425129115582,0.054366797208786,-0.013470884412527],[0.10731422156096,0.092589527368546,-0.027144836261868],[0.10522753000259,-0.016544867306948,-0.0059408149681985]],[[-0.055559609085321,0.028726330026984,0.022594822570682],[-0.035125575959682,0.0049891695380211,0.045592661947012],[-0.056537520140409,0.031160276383162,0.039710380136967]],[[0.012810510583222,0.00088408694136888,-0.054670594632626],[0.0091879572719336,-0.020885270088911,0.11271993070841],[-0.0038338846061379,-0.056517340242863,0.071882307529449]],[[0.0047005605883896,-0.038886222988367,-0.10129954665899],[0.030890861526132,-0.010161817073822,0.050296876579523],[-0.10927284508944,0.0049910955131054,-0.0071491971611977]],[[-0.028946220874786,0.021123424172401,0.014891709201038],[0.044484820216894,0.004425214137882,-0.00066326704109088],[0.055918637663126,0.0031503704376519,0.01532072480768]],[[0.02059574984014,-0.032375011593103,0.12036518752575],[0.081163480877876,-0.10419944673777,0.032049212604761],[-0.044244341552258,0.015352903865278,-0.021858245134354]],[[-0.059224259108305,0.0046543558128178,-0.031836573034525],[-0.017068523913622,0.024035081267357,0.016747962683439],[-0.001755544450134,-0.072442121803761,0.022403106093407]],[[-0.011486428789794,0.089603289961815,0.0061190468259156],[-0.033170390874147,0.040113002061844,0.0083956131711602],[0.041460912674665,0.039567302912474,0.043716441839933]],[[-0.020982142537832,0.082660175859928,0.015566658228636],[0.049685500562191,-0.079976066946983,0.017027448862791],[-0.033115901052952,0.002215061802417,-0.063002035021782]],[[-0.063540138304234,-0.016845298931003,0.0179950799793],[0.033624611794949,-0.013456616550684,-0.016845945268869],[0.014044148847461,0.015167973935604,0.048663273453712]],[[-0.0038481818046421,-0.010891153477132,-0.043087143450975],[0.016263661906123,-0.074488028883934,0.02912675589323],[-0.038757797330618,0.07279309630394,0.038884341716766]],[[0.10970176011324,-0.035729989409447,0.05398129299283],[0.013287696987391,-0.003995890263468,0.060159865766764],[0.032867681235075,0.0095634125173092,0.0025446664076298]],[[0.0014316277811304,-0.12604941427708,-0.060086376965046],[0.065325029194355,-0.10233386605978,0.038314029574394],[0.025426747277379,0.043374739587307,0.019628267735243]],[[-0.023595111444592,-0.04084711894393,0.016360308974981],[0.037604097276926,0.058245159685612,0.056952033191919],[-0.0058955163694918,0.11016280204058,0.069054923951626]],[[-0.10924682021141,0.026398181915283,-0.036918938159943],[0.086344681680202,-0.069791533052921,-0.090525522828102],[-0.024315403774381,-0.019554324448109,0.0069143031723797]],[[0.034548159688711,-0.0082427393645048,0.075455963611603],[-0.0052516967989504,-0.0053687910549343,0.086884632706642],[-0.0075826696120203,0.012219564989209,-0.057084731757641]],[[-0.0031339873094112,0.11677579581738,0.049786295741796],[-0.064507126808167,-0.04947592318058,0.019541306421161],[0.028438868001103,-0.037181153893471,0.078189738094807]],[[-0.13841980695724,0.0007175225764513,-0.01512449234724],[0.024556843563914,-0.010287159122527,0.023400563746691],[-0.05560515448451,-0.066549576818943,-0.025737289339304]],[[-0.068769067525864,-0.0097871301695704,0.030768964439631],[0.05249547958374,0.064708523452282,0.026961671188474],[0.045323830097914,0.04561061039567,0.058502543717623]],[[-0.036288119852543,0.037055928260088,-0.028121707960963],[-0.015895770862699,-0.0050427354872227,0.0021848587784916],[-0.00056632590712979,0.052023489028215,0.017226377502084]],[[0.070272505283356,0.048398658633232,0.108992010355],[0.034022837877274,-0.0091936308890581,0.048254426568747],[0.12168511003256,0.065253287553787,-0.027081497013569]],[[-0.0019319532439113,-0.012499336153269,0.0091846268624067],[0.024641219526529,-0.079014927148819,-0.035053946077824],[0.023218352347612,-0.020077532157302,-0.010140615515411]],[[0.046796850860119,0.0052649369463325,-0.0042544128373265],[-0.024668173864484,-0.013936225324869,0.052963502705097],[0.045190084725618,-0.071602545678616,0.036111325025558]],[[0.033543955534697,-0.063724093139172,-0.046937942504883],[-0.036494117230177,-0.012424285523593,-0.0093907685950398],[-0.068082094192505,0.015884581953287,0.013671462424099]],[[0.10172535479069,0.064280904829502,-0.039191283285618],[0.033122897148132,-0.0081047611311078,0.080630831420422],[0.046643555164337,-0.023566862568259,0.039196193218231]],[[0.00056306441547349,0.011161932721734,0.10584633797407],[-0.0069890785962343,-0.091070763766766,0.016499079763889],[0.078563429415226,-0.034680251032114,0.08296575397253]],[[-0.018271569162607,0.03303824737668,-0.064667105674744],[0.014757040888071,-0.078619837760925,-0.052684705704451],[-0.085767291486263,-0.037857364863157,0.011238122358918]],[[-0.038969669491053,-0.047264445573092,-0.0055821361020207],[0.020945880562067,0.090003617107868,-0.019478121772408],[-0.051042210310698,0.022026503458619,-0.0059465323574841]],[[0.055148713290691,0.0069851623848081,-0.024227282032371],[0.13682422041893,0.033022660762072,-0.045570343732834],[0.025688705965877,0.035239782184362,-0.076546095311642]],[[0.060481462627649,0.011160420253873,0.068330809473991],[-0.062809005379677,-0.0015178284374997,-0.061274323612452],[0.046411730349064,-0.020975587889552,-0.049570515751839]],[[0.011624194681644,0.0017714332789183,-0.10793823748827],[-0.040260046720505,0.0084799807518721,0.034095961600542],[-0.013015551492572,-0.059372615069151,0.02775046415627]],[[-0.0061995894648135,-0.012337950058281,-0.033741787075996],[-0.0063529047183692,5.6922304793261e-05,0.041430968791246],[-0.033552344888449,-0.087116874754429,-0.10130248963833]],[[0.1030340641737,0.041174855083227,-0.050250992178917],[0.0169170293957,-0.021248834207654,-0.032930877059698],[0.030130881816149,0.057653218507767,0.060692064464092]],[[0.0098162647336721,0.013619133271277,-0.059315394610167],[0.078280121088028,-0.078272268176079,-0.032435361295938],[0.052595723420382,0.00034987617982551,-0.021671270951629]],[[-0.084259897470474,-0.062401901930571,-0.0095167718827724],[0.093340866267681,-0.052840132266283,-0.075087331235409],[0.022623540833592,-0.048670951277018,0.0078707421198487]],[[-0.0091146416962147,-0.051196355372667,-0.065299607813358],[-0.035539600998163,0.014144987799227,0.067905090749264],[0.031571555882692,0.063028387725353,-0.050761912018061]],[[-0.0012918198481202,0.02926186285913,0.025314075872302],[0.038485866039991,-0.035563606768847,-0.0096994368359447],[0.018793065100908,0.008772543631494,-0.0008948264294304]],[[-0.018909901380539,0.031516019254923,-0.028076203539968],[-0.036941517144442,0.066471844911575,-0.079300679266453],[0.0041979257948697,-0.069662690162659,-0.088901683688164]],[[-0.0024414989165962,0.083562187850475,-0.11379764974117],[-0.057403068989515,0.044384513050318,-0.086997292935848],[-0.025682399049401,-0.0060798609629273,0.090251788496971]],[[0.048796765506268,-0.090360641479492,0.015028825961053],[-0.022272093221545,0.017474414780736,0.01320568099618],[0.059524916112423,-0.013082748278975,0.032766036689281]],[[-0.072005674242973,0.01183479744941,-0.038379676640034],[-0.037766188383102,-0.05550130084157,0.037958696484566],[0.0034546696115285,-0.11792960762978,0.067796654999256]],[[0.048526238650084,-0.055401723831892,-0.071838922798634],[-0.019531011581421,-0.076192885637283,-0.025144366547465],[-0.092260673642159,-0.038114674389362,0.0066799591295421]],[[0.04916563257575,0.063444547355175,-0.011676734313369],[0.036695826798677,-0.027804693207145,0.030312715098262],[-0.024161547422409,-0.0019569490104914,-0.044817395508289]],[[-0.037803780287504,0.082957722246647,0.038677901029587],[0.038447786122561,0.033819530159235,0.0078949853777885],[0.01412495970726,0.038600493222475,0.097283884882927]],[[-0.038567792624235,0.046487435698509,9.2564201622736e-05],[0.017565390095115,0.023559406399727,-0.0048187961801887],[-0.031514156609774,-0.1095255240798,0.021798223257065]],[[0.037727996706963,0.038982126861811,0.061350546777248],[-0.0038709784857929,-0.065504290163517,0.0098301591351628],[-0.019793421030045,-0.010001296177506,0.014782004058361]],[[0.0060739433392882,0.0074123223312199,0.039117529988289],[-0.041854485869408,0.034637838602066,-0.049367371946573],[-0.082447938621044,-0.018788073211908,-0.10863003879786]],[[0.031796485185623,0.014408093877137,0.049508772790432],[0.0099569782614708,0.04899225383997,-0.021142026409507],[-0.021586710587144,0.060942865908146,-0.055525951087475]],[[-0.042017601430416,0.02895649895072,-0.0074508362449706],[0.003140062559396,-0.078381337225437,0.0034054417628795],[0.019231220707297,0.051545467227697,-0.047556456178427]],[[0.048817738890648,-0.0015273729804903,0.13022704422474],[0.013931008987129,0.013637932948768,0.064325504004955],[0.031483966857195,0.030142106115818,-0.029021302238107]],[[-0.018356891348958,-0.10109493136406,-0.027660032734275],[0.048790119588375,0.026027824729681,0.099550671875477],[-0.072507575154305,-0.0048009096644819,-7.5073927291669e-05]]],[[[0.092056892812252,0.080966949462891,0.08480154722929],[-0.018318112939596,0.044321820139885,0.0077604232355952],[-0.0064646988175809,0.080294482409954,0.021433109417558]],[[0.048067901283503,0.041693147271872,0.075029216706753],[-0.0029425870161504,0.0075840265490115,0.11257823556662],[-0.027053920552135,-0.012730011716485,-0.04510260745883]],[[-0.013190812431276,0.12455821782351,-0.08345053344965],[-0.023053478449583,-0.052458856254816,-0.018324166536331],[0.03967696800828,0.15328943729401,-0.089264333248138]],[[-0.20834754407406,0.22523674368858,0.17997461557388],[0.0062667401507497,-0.0081850001588464,0.12486553192139],[0.18557657301426,-0.1056105569005,-0.22078405320644]],[[0.028416883200407,0.047937016934156,-0.00028662162367254],[0.011391975916922,0.035810522735119,0.0043175490573049],[0.084958262741566,-0.034612044692039,0.094575360417366]],[[-0.057717598974705,-0.035378441214561,0.055906523019075],[-0.012786774896085,0.059270743280649,0.074259303510189],[0.058600340038538,-0.057804346084595,-0.020738638937473]],[[0.095042407512665,-0.0052106501534581,0.063250347971916],[-0.07836952060461,0.010021112859249,0.037430621683598],[-0.13963255286217,-0.12959088385105,0.072253651916981]],[[-0.0016062472714111,0.026759805157781,-0.11801803857088],[-0.076001346111298,-0.028818618506193,-0.10831455886364],[-0.075696587562561,0.035002671182156,0.0531359128654]],[[-0.032190531492233,0.092876851558685,0.087878495454788],[-0.13156844675541,0.069552674889565,-0.13470886647701],[0.12580993771553,-0.034192133694887,0.046957671642303]],[[-0.02244670689106,0.0018585057696328,-0.10366573929787],[0.11746392399073,0.069428145885468,-0.0053000366315246],[0.065461345016956,0.10819062590599,-0.042138192802668]],[[0.077569112181664,-0.011131345294416,0.045536175370216],[0.014460981823504,0.02071487903595,0.098385512828827],[0.0044663650915027,0.021115396171808,0.017096918076277]],[[-0.046146120876074,0.075877770781517,0.11674300581217],[0.071560248732567,-0.027525432407856,-0.068304792046547],[-0.038752660155296,0.010106933303177,-0.087846912443638]],[[-0.033168934285641,-0.11208149790764,-0.045572433620691],[0.0063626193441451,-0.061111319810152,0.11647541821003],[-0.084384426474571,-0.0025046004448086,0.0873718932271]],[[0.083186008036137,0.010395693592727,-0.19621808826923],[0.087039522826672,0.10393463075161,-0.019103154540062],[-0.055645648390055,-0.08761166036129,0.049572959542274]],[[-0.21384112536907,0.07293263822794,0.071711346507072],[0.0023062049876899,-0.22508937120438,0.098820298910141],[0.070359848439693,0.026806369423866,-0.30323114991188]],[[0.035347107797861,0.11091163754463,0.014791564084589],[-0.056701224297285,0.045383129268885,0.083656571805477],[0.032028585672379,-0.040725711733103,-0.090909503400326]],[[-0.028907461091876,-0.0082305707037449,-0.096542581915855],[0.0010922498768196,0.0032362183555961,-0.0079244319349527],[-0.014045180752873,0.063422381877899,0.035286270081997]],[[0.020899446681142,0.038038901984692,-0.0071583767421544],[-0.04570635035634,-0.054499708116055,0.12107211351395],[-0.079777091741562,-0.12512418627739,0.12927943468094]],[[-0.0035081554669887,0.18720243871212,0.10977653414011],[0.013258730992675,0.0097353309392929,0.01421576179564],[-0.047331534326077,-0.10584332048893,0.086308233439922]],[[0.0093110995367169,0.027567388489842,-0.052134063094854],[0.0099104531109333,0.085678577423096,0.037478666752577],[0.050425484776497,0.14528401196003,-0.081938445568085]],[[0.040515411645174,0.031300954520702,0.068327099084854],[-0.073865823447704,-0.026356162503362,0.15600790083408],[-0.030457871034741,-0.17849619686604,-0.17030660808086]],[[0.047514446079731,-0.01115436013788,0.047704882919788],[0.017596004530787,0.033131506294012,0.039070919156075],[-0.11261948943138,0.021029388532043,0.024438556283712]],[[0.038290981203318,0.11104572564363,0.031714659184217],[0.058673903346062,0.099026180803776,0.09089220315218],[-0.10963103920221,-0.11424261331558,-0.1248407959938]],[[0.060744851827621,0.021523101255298,0.091114811599255],[0.02402713149786,0.12468887120485,-0.062415681779385],[0.070376046001911,-0.10973413288593,-0.10718779265881]],[[0.38021421432495,0.24498738348484,-0.27305275201797],[-0.11091398447752,-0.085934065282345,0.25015842914581],[-0.18759995698929,-0.03959583491087,-0.055576551705599]],[[-0.0031642443500459,0.050505254417658,0.097048193216324],[0.19416365027428,-0.055990245193243,-0.062730543315411],[0.057149142026901,0.050924137234688,-0.036227475851774]],[[-0.062585592269897,0.078040309250355,-0.049798086285591],[-0.065832108259201,-0.099278181791306,-0.13820350170135],[-0.0080368565395474,0.052685391157866,0.023054074496031]],[[-0.079811863601208,-0.053530547767878,0.080442100763321],[-0.058429349213839,-0.14726980030537,-0.17919108271599],[-0.18819123506546,0.045393116772175,-0.2183653563261]],[[-0.088049001991749,0.026498105376959,0.039881255477667],[0.035762686282396,0.039745148271322,0.002728400984779],[-0.11939637362957,0.0014201099984348,-0.032963175326586]],[[-0.10718593001366,-0.040186461061239,-0.0064249755814672],[-0.046093802899122,0.099495083093643,0.018988884985447],[-0.0097595425322652,-0.10871808230877,0.013142885640264]],[[-0.049649775028229,-0.093527749180794,-0.033537410199642],[-0.073793061077595,-0.023550419136882,0.079756215214729],[-0.069975964725018,0.15152558684349,0.092114567756653]],[[0.0028968162368983,-0.071948185563087,0.028915548697114],[-0.025497289374471,-0.021555686369538,-0.017694426700473],[0.0093572176992893,-0.16688878834248,-0.021926272660494]],[[-0.062109757214785,-0.023081131279469,0.009506918489933],[0.0089161889627576,0.057929109781981,0.16881433129311],[-0.076857581734657,-0.0085631469264627,0.030002448707819]],[[-0.028038768097758,-0.056179635226727,0.018753910437226],[0.051028560847044,0.0091287009418011,0.18448336422443],[0.051459476351738,-0.084254302084446,0.07005313783884]],[[-0.035056717693806,0.0014440577942878,0.069007731974125],[-0.061890423297882,-0.01304226834327,-0.03533985838294],[-0.042410872876644,-0.013911576941609,0.012672828510404]],[[-0.085838221013546,0.043522384017706,0.0011760002234951],[-0.060329414904118,-0.070848613977432,0.13321721553802],[-0.044995553791523,-0.18255496025085,0.08585873991251]],[[-0.067154958844185,0.16197054088116,-0.016859866678715],[-0.045656617730856,0.011127907782793,0.035701628774405],[0.013690356165171,0.041361223906279,-0.12844027578831]],[[0.026957027614117,0.018682220950723,-0.080677203834057],[-0.037963502109051,-0.0039659603498876,0.044499628245831],[-0.050308082252741,0.12633337080479,-0.054314028471708]],[[0.040134571492672,0.063019894063473,-0.065193712711334],[0.062610775232315,-0.040659874677658,-0.062461018562317],[-0.071508623659611,-0.024803344160318,-0.043773971498013]],[[-0.022501856088638,0.054911505430937,-0.083909243345261],[-0.0047545842826366,0.048702906817198,-0.008188926614821],[0.094734683632851,-0.013087298721075,0.044075228273869]],[[0.022680958732963,0.011051150970161,-0.0093340259045362],[-0.061017800122499,0.008879710920155,-0.027100345119834],[-0.14633399248123,0.023083426058292,0.10575820505619]],[[0.04639295488596,0.10074661672115,-0.042531110346317],[0.024305030703545,-0.029626205563545,0.10532750934362],[-0.020831249654293,-0.075042873620987,-0.00072179775452241]],[[-0.032602399587631,0.03222294151783,-0.085417203605175],[0.050789635628462,-0.14175742864609,0.3337567448616],[-0.14689919352531,0.24294777214527,-0.050791803747416]],[[-0.0081549407914281,-0.013801787048578,0.15627770125866],[-0.0071112224832177,0.069597788155079,0.19439266622066],[0.0069448594003916,0.024371968582273,0.124381698668]],[[-0.058235052973032,0.017466887831688,-0.021862968802452],[-0.044304419308901,0.063774332404137,0.015546691603959],[-0.0043267337605357,-0.043054699897766,-0.086127564311028]],[[0.010662510059774,0.02343468926847,0.022864995524287],[0.083691619336605,-0.11436276137829,0.040824748575687],[-0.010425535961986,0.11338836699724,-0.04880091920495]],[[-0.13997228443623,-0.00028631457826123,0.035346165299416],[0.07609398663044,0.0097739137709141,-0.18417897820473],[0.052547667175531,0.0079214796423912,-0.1421665251255]],[[-0.078671537339687,-0.12285956740379,-0.02407400496304],[0.0040798182599247,0.00046956940786913,0.17862936854362],[0.0021367291919887,0.038228038698435,0.059413220733404]],[[0.14870272576809,-0.0055689020082355,0.078070394694805],[0.020145501941442,0.018623964861035,-0.057825930416584],[0.087560750544071,-7.6106152846478e-05,0.024320339784026]],[[-0.060236874967813,0.028549632057548,0.0053504747338593],[-0.024588171392679,-0.17181190848351,-0.033410292118788],[-0.076688922941685,-0.064672708511353,-0.12195735424757]],[[0.020287791267037,-0.023569900542498,-0.058246582746506],[0.032936315983534,0.11635822057724,0.005641832947731],[-0.03101853094995,0.03369253501296,-0.050384514033794]],[[0.0151851112023,0.076764978468418,-0.055084738880396],[0.077341377735138,-0.035125181078911,-0.021533492952585],[0.060290422290564,0.014849600382149,0.06548336148262]],[[-0.019877010956407,-0.069634400308132,-0.030636191368103],[-0.088878601789474,-0.068648122251034,0.01120506413281],[-0.11687231808901,0.047108415514231,0.011002765037119]],[[-0.02377936989069,-0.057277347892523,-0.018104923889041],[-0.012599333189428,0.025897236540914,0.025153959169984],[0.018427073955536,-0.004589784424752,0.13651722669601]],[[-0.051362968981266,-0.13918617367744,-0.13700371980667],[-0.078553587198257,0.060724295675755,-0.097750172019005],[-0.0764230042696,-0.054277639836073,0.033330760896206]],[[-0.15703426301479,-0.074540674686432,-0.10807585716248],[0.10042831301689,0.018822014331818,-0.021635264158249],[-0.0022863612975925,0.019842423498631,0.0082812905311584]],[[-0.015110743232071,-0.086634926497936,0.00042704399675131],[-0.20111884176731,-0.16103067994118,-0.0069806291721761],[0.1046535000205,0.039833232760429,-0.10713872313499]],[[0.019884092733264,0.035521108657122,0.10134541988373],[0.10285096615553,0.040996164083481,-0.11349418759346],[0.10261592268944,0.023919012397528,-0.076152384281158]],[[0.033710148185492,-0.050668936222792,-0.087650716304779],[-0.020495222881436,0.069589532911777,-0.063110440969467],[0.059479970484972,0.15381720662117,-0.020573230460286]],[[0.0068736355751753,-0.077465713024139,0.0047763050533831],[0.07843817025423,0.12810207903385,0.13072310388088],[0.052051700651646,-0.14796425402164,-0.21453370153904]],[[-0.070978164672852,-0.055405747145414,0.048666164278984],[-0.081809774041176,-0.04532254114747,-0.06030485033989],[-0.072220146656036,-0.21508587896824,-0.18555116653442]],[[0.014106673188508,0.032240893691778,0.029277823865414],[-0.0038741738535464,-0.064035579562187,-0.097543053328991],[-0.023044170811772,-0.053519409149885,0.0044536488130689]],[[-0.10519658774137,-0.046530704945326,-0.12252476811409],[-0.10486457496881,-0.31692719459534,-0.1496404260397],[0.038841124624014,-0.019199427217245,0.15847451984882]],[[0.010909712873399,0.057410936802626,0.053298037499189],[-0.043732091784477,-0.012103943154216,-0.0089802984148264],[-0.0025233712513,0.014398837462068,0.016041381284595]],[[-0.089328311383724,-0.13125631213188,-0.0022222734987736],[0.0046503413468599,0.0052496171556413,-0.085383057594299],[0.0021449609193951,0.0017284869682044,0.077344246208668]],[[-0.08962793648243,0.006458280608058,-0.097176000475883],[-0.064543187618256,-0.16134533286095,-0.021001109853387],[-0.1511255800724,-0.01795962639153,0.097106128931046]],[[-0.1322370916605,0.010671955533326,-0.11205739527941],[0.10052345693111,-0.043449502438307,0.14660093188286],[-0.030518636107445,0.11141420155764,0.005686828866601]],[[-0.03025933355093,-0.15315696597099,-0.081721052527428],[-0.089534588158131,0.01309802941978,-0.037332713603973],[0.10101279616356,-0.0030916347168386,-0.023179668933153]],[[0.060588452965021,-0.049658827483654,-0.14975062012672],[0.051528710871935,0.02274120785296,0.049947287887335],[0.020309010520577,-0.051431395113468,0.013400178402662]],[[-0.11028028279543,-0.11294314265251,0.1895859092474],[-0.23338186740875,0.024437056854367,-0.029657362028956],[0.10525247454643,0.070927746593952,0.11215825378895]],[[-0.029384518042207,-0.13638079166412,-0.026149369776249],[-0.02592627517879,0.026886345818639,0.065679989755154],[-0.0079823508858681,0.032188944518566,0.093997612595558]],[[0.06352324783802,0.047924216836691,0.10481041669846],[0.098057329654694,0.079530820250511,-0.056403402239084],[0.053338948637247,0.16357961297035,-0.1189126893878]],[[-0.022789424285293,-0.089882127940655,0.0043885810300708],[-0.028662079945207,-0.041152745485306,0.071581020951271],[-0.058079279959202,-0.14464338123798,0.11063723266125]],[[0.020643036812544,-0.091197341680527,0.010182064957917],[0.050617091357708,0.066899836063385,0.098194606602192],[0.039285209029913,0.052424427121878,0.059700772166252]],[[0.056248921900988,0.11050375550985,0.0045577292330563],[-0.07383020222187,0.014386699534953,-0.03037585131824],[0.0051546595059335,-0.038555219769478,-0.01082250289619]],[[-0.0964425355196,-0.038099389523268,0.0023472893517464],[-0.033129267394543,-0.11654749512672,0.024267196655273],[0.0088475747033954,0.01675402931869,-0.055367063730955]],[[-0.076066076755524,-0.068803764879704,-0.042528584599495],[-0.065922439098358,-0.16905556619167,-0.030690064653754],[-0.017055222764611,-0.10299225151539,0.030216842889786]],[[0.24048951268196,-0.0026531096082181,0.26824632287025],[-0.14871446788311,0.15252669155598,0.0190774127841],[0.14948202669621,0.12660220265388,0.028718002140522]],[[-0.045745249837637,0.019589284434915,-0.038177620619535],[-0.037120461463928,0.046629626303911,0.10240094363689],[0.10274664312601,0.08331173658371,0.040159415453672]],[[0.056761369109154,0.080103062093258,-0.075197242200375],[-0.038133595138788,-0.084354422986507,-0.063681095838547],[0.041622284799814,0.028805861249566,0.021960470825434]],[[-0.10599830001593,-0.10109634697437,0.13055491447449],[-0.065442942082882,0.021206758916378,0.029650507494807],[0.024331131950021,-0.0034657169599086,0.046210873872042]],[[-0.081547982990742,0.0069390367716551,-0.16180288791656],[-0.14966620504856,-0.14815108478069,-0.026793610304594],[-0.13289351761341,0.026589166373014,0.042418956756592]],[[-0.11216041445732,0.01659363694489,-0.018743224442005],[-0.0082508129999042,0.0034329409245402,0.099219724535942],[-0.064714893698692,0.013758886605501,0.012419121339917]],[[0.0077186990529299,0.13454496860504,0.0092808688059449],[0.038407284766436,-0.065961822867393,0.028125561773777],[0.039004012942314,0.032894160598516,0.036314129829407]],[[0.042964059859514,0.019245615229011,0.15405297279358],[0.078703925013542,0.10953473299742,0.080763317644596],[0.057029880583286,0.12409824132919,0.02431551553309]],[[-0.00029079604428262,-0.043523099273443,-0.10572889447212],[0.0065545286051929,0.058062806725502,-0.017616353929043],[-0.065160647034645,-0.045055873692036,-0.026535397395492]],[[0.17161214351654,0.068531423807144,0.039468061178923],[-0.016205867752433,-0.045119848102331,0.091031044721603],[-0.039861686527729,-0.010652912780643,0.022815074771643]],[[-0.071773938834667,-0.037890840321779,0.091341607272625],[-0.014171244576573,0.040298044681549,0.17772901058197],[0.016411824151874,0.16406007111073,0.0054970122873783]],[[0.023683529347181,0.075595818459988,-0.013479852117598],[0.03244560956955,0.10745807737112,-0.11789167672396],[0.034650895744562,-0.072382442653179,-0.087162703275681]],[[0.046717021614313,-0.0070718000642955,0.032868452370167],[-0.10973206162453,-0.023711757734418,0.11296639591455],[-0.07781832665205,-0.018202615901828,-0.032744530588388]],[[0.030111161991954,0.042421761900187,-0.013788710348308],[-0.013305577449501,-0.019780293107033,6.8023087806068e-05],[-0.042516868561506,-0.0043578804470599,0.053522769361734]],[[0.07950334250927,0.096712209284306,0.098944596946239],[0.00463633146137,-0.034677855670452,-0.090358436107635],[-0.05789402872324,-0.086233802139759,0.035451471805573]],[[-0.033673699945211,0.010560315102339,-0.043812047690153],[-0.021037118509412,0.027290226891637,-0.0023629998322576],[-0.14038686454296,0.084840551018715,-0.070990100502968]],[[0.056423094123602,0.033532168716192,0.034411381930113],[0.074998207390308,0.044211614876986,-0.0010133484611288],[0.046641383320093,-0.12039357423782,0.05358636751771]],[[-0.012044630944729,0.015317529439926,0.043761670589447],[-0.0881372615695,0.033277180045843,-0.12388934195042],[-0.076052077114582,0.022111056372523,-0.11831829696894]],[[0.03451370075345,-0.02814756333828,0.079378969967365],[-0.00041095257620327,0.068694524466991,-0.001583484117873],[0.14089180529118,0.075118489563465,0.13638970255852]],[[-0.042698882520199,0.050514508038759,0.00813018810004],[-0.0046203238889575,-0.0098315812647343,-0.017232786864042],[-0.029853528365493,0.1198498532176,-0.039357710629702]],[[-0.019220914691687,0.014088796451688,0.044501271098852],[-0.030902706086636,0.023763781413436,-0.053707949817181],[-0.053219642490149,0.068510964512825,-0.043796814978123]],[[-0.049389075487852,-0.031168172135949,0.036566093564034],[0.024435445666313,0.037648107856512,0.0039195064455271],[-0.0048869987949729,0.12457349896431,-0.025340991094708]],[[0.048157773911953,-0.20841068029404,-0.060462437570095],[-0.18629150092602,0.37235566973686,-0.20855258405209],[0.27075019478798,-0.17081420123577,-0.042702589184046]],[[0.0098674586042762,-0.09839178621769,-0.043974664062262],[0.037410974502563,-0.10461977124214,0.045764900743961],[-0.052048847079277,0.13728258013725,0.19140376150608]],[[-0.022930333390832,-0.087085388600826,-0.076974675059319],[-0.053074050694704,0.017342835664749,-0.1229582875967],[-0.030682386830449,0.03650039806962,0.069928519427776]],[[0.02563407830894,0.017756761983037,-0.014850086532533],[-0.066312320530415,-0.01844054274261,-0.048696085810661],[0.034187134355307,-0.050959695130587,-0.039994765073061]],[[0.15502202510834,-0.002468385733664,-0.021699372678995],[0.078659296035767,-0.028473475947976,-0.06636418402195],[0.1201676428318,0.038326255977154,0.087663248181343]],[[0.11970460414886,0.043519292026758,0.042976390570402],[0.12379455566406,-0.025903031229973,0.03091168217361],[0.089042484760284,-0.039979536086321,0.0037169388961047]],[[-0.075630821287632,0.19630588591099,0.18962804973125],[-0.064091749489307,0.087866328656673,-0.0079951602965593],[-0.12511280179024,-0.0056545287370682,-0.08547642827034]],[[0.04452321305871,0.045312754809856,0.032759059220552],[-0.0067563611082733,0.039647947996855,-0.012077415362],[0.021453760564327,-0.077071405947208,0.012712747789919]],[[0.05064769089222,-0.042968425899744,0.053548377007246],[-0.050524599850178,-0.067370712757111,0.20621418952942],[-0.15339118242264,0.021518412977457,-0.047679577022791]],[[0.02819998562336,-0.023884199559689,0.08962044864893],[-0.013300700113177,-0.032335199415684,0.11191865056753],[0.025902209803462,-0.056459534913301,0.042258374392986]],[[-0.078212030231953,0.035576481372118,0.076999850571156],[0.027895648032427,0.062536403536797,0.010194822214544],[-0.02605920098722,-0.077527329325676,-0.035233534872532]],[[-0.0070795696228743,-0.046689063310623,0.095788188278675],[0.009083915501833,-0.045129738748074,0.19030426442623],[0.031197557225823,-0.11038601398468,-0.013118492439389]],[[0.03242165595293,0.03152434155345,-0.056868389248848],[0.00093762984033674,-0.046088170260191,-0.1235716342926],[0.031951200217009,-0.056335940957069,0.015588719397783]],[[-0.053811583667994,-0.016275469213724,-0.00044800713658333],[0.072302110493183,-0.16389542818069,0.017974209040403],[-0.018342984840274,0.14211465418339,0.058860652148724]],[[0.044825777411461,-0.055178474634886,-0.10332255810499],[-0.05563373118639,0.10717091709375,-0.11358145624399],[0.13457565009594,-0.10715975612402,0.10496713221073]],[[-0.1175646930933,0.019982406869531,-0.072988040745258],[-0.066901654005051,-0.045418340712786,0.044383753091097],[0.05440404638648,0.1298343539238,0.082593061029911]],[[-0.0034404825419188,0.090667113661766,0.040893763303757],[0.014805121347308,0.032679785043001,-0.08932014554739],[-0.01865977793932,0.051201306283474,-0.10865734517574]],[[-0.0022973162122071,-0.049053512513638,-0.12016221135855],[-0.033306550234556,0.09203178435564,-0.0026868481654674],[0.030220231041312,0.08064241707325,0.095082834362984]],[[0.061158049851656,0.053879328072071,-0.061483427882195],[-0.057278010994196,0.034613158553839,-0.02614364773035],[0.12487515807152,-0.0024828484747559,0.014029688201845]],[[-0.12844976782799,-0.1235479041934,-0.14265049993992],[-0.089013636112213,-0.018243290483952,-0.066021800041199],[-0.0039680013433099,-0.10291413217783,0.014269463717937]],[[-0.10679367929697,-0.048096459358931,-0.054550118744373],[0.11273903399706,-0.051262885332108,-0.13975423574448],[-0.010342793539166,0.095511004328728,0.048320453613997]],[[0.066175140440464,-0.042950451374054,-0.065273799002171],[0.092757403850555,-0.075128018856049,-0.080613866448402],[0.18904034793377,-0.03246521577239,-0.098047889769077]],[[-0.065727688372135,-0.0016250740736723,0.022433258593082],[-0.023024959489703,-0.062070362269878,-0.0032938090153039],[-0.017188476398587,-0.015113550238311,-0.19296012818813]],[[-0.021996911615133,-0.049791011959314,-0.10581534355879],[0.1143573820591,-0.021535003557801,-0.056085303425789],[-0.080600634217262,0.08867160230875,-0.077829882502556]],[[-0.019013294950128,0.039078239351511,0.005445265211165],[0.044936902821064,0.063027396798134,0.048721060156822],[0.050560299307108,0.020364619791508,0.012369377538562]],[[-0.05849427357316,0.022771060466766,0.0022874497808516],[-0.024325013160706,0.045414753258228,0.098773472011089],[-0.10432271659374,-0.065624319016933,-0.18814727663994]],[[-0.012147253379226,-0.075710542500019,0.10688678920269],[-0.030494645237923,0.15022547543049,0.0011111840140074],[0.025513442233205,-0.068226091563702,-0.0034300163388252]],[[0.027700101956725,-0.033909685909748,0.052998296916485],[0.038504801690578,-0.014841894619167,0.072862185537815],[0.085950776934624,-0.093158788979053,-0.042875237762928]],[[-0.013412301428616,0.11364148557186,-0.028626320883632],[0.013482445850968,-0.19104158878326,0.05018450319767],[0.01662802696228,-0.023711564019322,-0.0080737508833408]]],[[[0.064344152808189,-0.024005174636841,0.0083425035700202],[0.014661061577499,-0.047453608363867,0.026366516947746],[0.0082428110763431,-0.011645973660052,-0.035345282405615]],[[0.0043539819307625,-0.0085283555090427,0.024392252787948],[0.017370691522956,0.081247046589851,-0.023989425972104],[0.028738779947162,0.015293668024242,-0.025598682463169]],[[0.056714773178101,0.024374242872,-0.019624711945653],[0.080169126391411,-0.0066530341282487,0.0048879091627896],[0.019400898367167,0.01715013384819,-0.0024612403940409]],[[-0.029082832857966,-0.017788061872125,0.015964349731803],[0.062247358262539,0.028285820037127,0.075792148709297],[0.077647112309933,-0.036263983696699,-0.086153700947762]],[[0.014390152879059,0.0076778405345976,0.041139714419842],[0.023982994258404,0.034410081803799,-0.028719458729029],[0.015636280179024,-0.067678682506084,0.051244545727968]],[[-0.00075811607530341,0.016209902241826,0.0024075352121145],[0.058318693190813,-0.012584432028234,-0.021721571683884],[0.053773667663336,-0.010953490622342,-0.010140775702894]],[[0.029110934585333,-0.059535291045904,-0.016720814630389],[-0.0081916712224483,0.0017446633428335,0.016451550647616],[0.014550513587892,-0.03728024661541,-0.039910856634378]],[[-0.0073243053629994,-0.019922833889723,-0.10811484605074],[-0.015476558357477,0.021310020238161,-0.036090359091759],[0.029496623203158,0.058458182960749,-0.026742994785309]],[[-0.035557128489017,-0.047902591526508,-0.024978911504149],[-0.038333971053362,-0.038041818886995,-0.0028092477004975],[-0.02043866738677,0.035172455012798,-0.0035884599201381]],[[-0.051615260541439,0.0082295928150415,-0.020579565316439],[0.00063345534726977,0.021724110469222,-0.028711063787341],[-0.019361620768905,0.033968903124332,0.00083946029189974]],[[-0.025381958112121,-0.024561293423176,-0.04377231746912],[0.034555342048407,0.025302048772573,-0.074791096150875],[0.030262276530266,0.010890882462263,0.086729384958744]],[[0.016572661697865,-0.0049879406578839,-0.050401799380779],[0.010862782597542,-0.010983450338244,-0.04480879753828],[0.01475352793932,-0.074674040079117,-0.025739526376128]],[[-0.051689397543669,-0.020086882635951,-0.033476900309324],[0.094156555831432,0.0069557521492243,-0.0034208113793284],[0.071786895394325,0.078789137303829,0.031933143734932]],[[-0.0046023982577026,-0.0310278236866,0.0028598615899682],[0.069205574691296,0.039008006453514,-0.0076338201761246],[0.029373731464148,0.038794968277216,-0.094632811844349]],[[-0.11043673753738,-0.01685874350369,0.043960560113192],[-0.001339815906249,-0.0066074691712856,0.016991071403027],[0.011640128679574,0.044069908559322,-0.016959493979812]],[[-0.0057948082685471,-0.044812951236963,-0.02858123742044],[0.002353552961722,-0.12346936762333,-0.023707838729024],[-0.055596854537725,-0.035949744284153,-0.025846462696791]],[[-0.034478954970837,-0.040114384144545,0.065449595451355],[-0.017939435318112,0.033779662102461,0.02057371661067],[-0.053839717060328,0.074166662991047,0.027805604040623]],[[-0.025975810363889,0.031970053911209,-0.020137833431363],[-0.041654422879219,-0.010054007172585,-0.068722441792488],[-0.011850552633405,-0.020847028121352,0.082291767001152]],[[0.048470459878445,-0.0013629872119054,-0.028855342417955],[0.017695628106594,-0.042243130505085,0.011183861643076],[-0.014072633348405,0.011014713905752,0.0095711965113878]],[[-0.01398242264986,-0.0030872467905283,-0.032188083976507],[0.093477457761765,0.093079835176468,0.16123692691326],[-0.01511028315872,0.077480420470238,-0.0045171231031418]],[[-0.039684742689133,0.051711056381464,-0.030638137832284],[-0.029961811378598,0.0031462856568396,0.018963569775224],[-0.024952780455351,-0.0022336104884744,-0.059979874640703]],[[0.01918139308691,0.049151126295328,-0.026530859991908],[-0.020462334156036,-0.023598097264767,-0.017444718629122],[-0.02808097191155,-0.04388216137886,0.033903520554304]],[[-0.080016627907753,-0.0068114819005132,-0.034417480230331],[0.087021075189114,0.032241906970739,0.074035421013832],[-0.006659522652626,-0.018246419727802,-0.064071528613567]],[[0.013027167879045,-0.039106529206038,-0.052302051335573],[0.023926537483931,-0.009373502805829,-0.041163519024849],[0.073555059731007,0.0091866739094257,-0.055334679782391]],[[-0.008623018860817,-0.026352327316999,-0.067508541047573],[-0.075491480529308,0.026211235672235,0.036509029567242],[0.037876047194004,0.0097962636500597,0.039737217128277]],[[0.013245847076178,0.0070585017092526,0.072811476886272],[0.010330153629184,-0.019797230139375,-0.027789033949375],[-0.010997170582414,-0.01079731900245,-0.014794654212892]],[[-0.022248947992921,-0.087721347808838,-0.045003823935986],[0.06498022377491,0.029122460633516,-0.12015157192945],[0.020911665633321,-0.020721798762679,0.0061425743624568]],[[0.035721153020859,0.054522227495909,0.016886124387383],[-0.015320603735745,-0.00098212365992367,0.042775347828865],[0.003488841932267,0.018621457740664,0.035636007785797]],[[-0.073471963405609,-0.012538976036012,0.045729856938124],[0.034627176821232,-0.048559445887804,0.0002304938971065],[0.033617295324802,-0.023192515596747,-0.070588693022728]],[[-0.018271211534739,0.071733377873898,-0.0054714777506888],[0.044738881289959,-0.031281743198633,-0.013852546922863],[0.035185776650906,0.026291249319911,0.098557204008102]],[[0.022705394774675,0.072004340589046,0.042168103158474],[-0.033512204885483,0.058922920376062,0.0058788289315999],[-0.064630754292011,-0.047828368842602,-0.029617609456182]],[[0.025528369471431,0.053808599710464,0.02019483037293],[-0.13126111030579,-0.1420164257288,0.096757709980011],[-0.044361487030983,-0.031948857009411,0.013792032375932]],[[0.011055145412683,0.076409012079239,-0.013869169168174],[0.056219156831503,-0.052671797573566,0.049965936690569],[-0.0050578927621245,-0.003273333190009,-0.070078745484352]],[[-0.10266604274511,-0.053205080330372,-0.0072966576553881],[-0.071965433657169,-0.032294046133757,0.0029383744113147],[0.022068053483963,0.0025188068393618,-0.013768921606243]],[[-0.0017843865789473,0.041412822902203,-0.030352765694261],[-0.084989696741104,-0.0084464224055409,-0.0049576386809349],[-0.017598196864128,0.05149594694376,0.052058573812246]],[[-0.04583640396595,-0.025366084650159,-0.0094476584345102],[0.064335212111473,0.0035139336250722,0.013645170256495],[0.031481713056564,-0.049166470766068,-0.021388452500105]],[[-0.01710819080472,0.026883587241173,0.0061721475794911],[-0.016022818163037,-0.039193715900183,0.056883417069912],[0.0068829050287604,0.0037344419397414,0.050208136439323]],[[-0.038333266973495,0.0010513049783185,0.044861041009426],[0.0021922255400568,-0.057964533567429,0.04458337649703],[0.016977271065116,0.065382070839405,0.026770323514938]],[[0.068385675549507,-0.047627724707127,-0.02476042881608],[0.067239135503769,-0.046220641583204,0.031736422330141],[0.038391344249249,-0.018057471141219,-0.039794851094484]],[[0.0040091765113175,0.072033241391182,-0.015160284005105],[0.011797018349171,-0.014818602241576,-0.025713209062815],[-0.076294980943203,-0.046187151223421,0.045509867370129]],[[0.014268493279815,0.022428708150983,0.0022272360511124],[-0.0037791728973389,-0.02318805642426,0.024571556597948],[-0.038208998739719,0.011858182959259,-0.073883377015591]],[[-0.0028017982840538,-0.019226141273975,-0.043483044952154],[0.037082493305206,0.018554866313934,-0.050224158912897],[-0.034696213901043,-0.004289441742003,-0.050599932670593]],[[0.012913083657622,-0.048675782978535,-0.047027640044689],[-0.073538318276405,-0.046478603035212,-0.012239839881659],[0.056393776088953,0.11366454511881,0.034947887063026]],[[-0.023536019027233,-0.037412375211716,-0.02964617870748],[0.011240308173001,0.0072231879457831,-0.092976041138172],[-0.043067004531622,-0.012294602580369,0.013099036179483]],[[-0.043842371553183,0.066773936152458,0.081247046589851],[0.00022674247156829,0.017043922096491,0.10102769732475],[0.12985627353191,-0.025963269174099,0.032176371663809]],[[-0.022092813625932,-0.011523338034749,0.020953897386789],[0.014591874554753,0.03363011777401,-0.035583063960075],[0.042636275291443,-0.0052127181552351,-0.031129777431488]],[[0.0044147819280624,-0.0554742179811,0.030752899125218],[-0.027627307921648,0.051948241889477,0.013280246406794],[0.0018696195911616,0.11868814378977,-0.0035994392819703]],[[-0.0089329537004232,0.015455858781934,-0.038922563195229],[0.011091587133706,0.014570340514183,0.049346011132002],[0.01508099399507,-0.037847623229027,-0.00093231431674212]],[[-0.0045437077060342,-0.03692027926445,-0.0063980324193835],[0.04420930147171,-0.006842324975878,0.026854807510972],[-0.0066306926310062,0.045217610895634,-0.012503990903497]],[[-0.042723778635263,-0.021077306941152,0.028386190533638],[0.010579431429505,-0.089267618954182,-0.03893980383873],[0.0016456579323858,0.051359411329031,-0.010177338495851]],[[0.16541732847691,-0.024414138868451,-0.056315936148167],[-0.033703528344631,0.077123947441578,0.055027697235346],[-0.02184266038239,-0.072580918669701,0.037340171635151]],[[0.019520491361618,0.0082814758643508,0.00060339382616803],[0.092938251793385,-0.046312466263771,-0.0046139946207404],[0.044551745057106,0.0047655343078077,-0.015991657972336]],[[-0.028803702443838,0.026669450104237,0.0077017201110721],[-0.040531188249588,-0.015218028798699,-0.017749473452568],[0.033407356590033,-0.041683979332447,-0.0029428072739393]],[[-0.038528725504875,0.022649759426713,0.074050508439541],[0.046887595206499,-0.023484719917178,-0.016052510589361],[-0.035249907523394,0.069915570318699,0.10342147946358]],[[-0.0078497407957911,-0.031087376177311,-0.029987221583724],[0.049658298492432,-0.0099812876433134,-0.027456240728498],[0.035490483045578,0.024650778621435,-0.056901711970568]],[[0.060136344283819,0.081437215209007,-0.013062686659396],[-0.043732553720474,-0.027011880651116,-0.029859876260161],[-0.0015513472026214,-0.047994274646044,-0.011057619005442]],[[0.02818345092237,-0.00070083903847262,-0.076401092112064],[0.067717790603638,0.0060818297788501,0.049559313803911],[0.027958177030087,-0.012403563596308,0.01950877904892]],[[0.026024470105767,0.022264670580626,0.024724330753088],[0.0023781228810549,-0.017809372395277,-0.030523370951414],[0.025771923363209,-0.043850470334291,-0.029355730861425]],[[-0.076086021959782,0.0026972088962793,-0.045747578144073],[-0.09250171482563,-0.045984793454409,-0.046213861554861],[-0.012159308418632,0.0078770387917757,0.078421726822853]],[[-0.012808259576559,0.027564600110054,0.023988282307982],[-0.028237011283636,-0.049407746642828,-0.016060454770923],[-0.04516189545393,0.041231736540794,-0.079653069376945]],[[-0.031430285423994,-0.0061701247468591,-0.036413051187992],[0.0010239835828543,0.019769137725234,-0.026318466290832],[0.059211444109678,-0.049722578376532,0.01986744068563]],[[0.028388323262334,0.050993446260691,-0.057075317949057],[0.020892569795251,0.079961210489273,-0.018151745200157],[0.068900145590305,-0.016696332022548,0.072438560426235]],[[0.0017853180179372,-0.04101038724184,-0.083245366811752],[-0.069520480930805,-0.0072095119394362,-0.044093657284975],[-0.038674671202898,-0.022691387683153,-0.019472701475024]],[[0.0062654665671289,0.064041137695312,0.10239378362894],[-0.040039569139481,-0.056115098297596,0.018960637971759],[-0.008044003508985,-0.0831558406353,-0.0068001952022314]],[[-0.028286393731833,0.0076099564321339,-0.073102124035358],[-0.033684752881527,0.025924319401383,0.002288862131536],[-0.048782933503389,-0.012325005605817,0.040105257183313]],[[-0.064229905605316,-0.015037794597447,0.012723348103464],[-0.015106106176972,-0.047413237392902,-0.0274278819561],[-0.030558090656996,-0.0091365901753306,0.023371562361717]],[[-0.023147270083427,0.071576900780201,-0.087364763021469],[0.0036714777816087,-0.037208188325167,0.02765822969377],[-0.012393402867019,-0.019017091020942,-0.038185387849808]],[[-0.055622491985559,-0.035236001014709,-0.010997200384736],[0.0074362852610648,0.032223124057055,0.059755425900221],[0.0093621117994189,-0.0105668194592,-0.033564370125532]],[[-0.0088795311748981,0.013190196827054,-0.030673466622829],[0.048511404544115,-0.018074881285429,-0.05398028716445],[-0.0091559886932373,-0.03695809468627,0.018717154860497]],[[-0.1256897598505,-0.020847821608186,0.070435382425785],[-0.052692901343107,-0.0097092501819134,0.026913218200207],[-0.045066513121128,0.017205329611897,0.064225539565086]],[[-0.043677352368832,-0.025632340461016,0.039815686643124],[-0.06158247590065,0.060294840484858,-0.012730997055769],[-0.063787624239922,-0.030031690374017,-0.03118085488677]],[[0.065736778080463,0.038240343332291,-0.027791118249297],[0.05341824516654,-0.078170835971832,0.013616543263197],[-0.0054882359690964,-0.020982638001442,-0.022076118737459]],[[0.056025177240372,0.019073754549026,-0.029018938541412],[0.050337225198746,-0.0029619890265167,-0.018866894766688],[-0.021234994754195,0.067664206027985,-0.049412056803703]],[[-0.057177748531103,0.04459360986948,-0.017877548933029],[-0.077253311872482,0.012385129928589,-0.0032511500176042],[-0.018789384514093,0.046006396412849,0.048861589282751]],[[-0.028153892606497,0.005329183768481,-0.0049741207621992],[-0.021687753498554,-0.040256083011627,0.032663114368916],[-0.021502057090402,-0.017868841066957,0.025132842361927]],[[-0.00096725032199174,-0.051677495241165,-0.045462746173143],[-0.018470311537385,-0.049636464565992,0.021391874179244],[0.00051997974514961,-0.08295015245676,0.039186712354422]],[[0.044884648174047,-0.016711017116904,-0.018175458535552],[0.023041568696499,0.041840549558401,0.060213685035706],[-0.031654741615057,0.063213847577572,0.025315601378679]],[[-0.039105694741011,0.016428757458925,-0.020624784752727],[-0.027728060260415,0.0066630411893129,-0.045671626925468],[0.085867546498775,-0.036816328763962,-0.019036415964365]],[[0.043284747749567,-0.017120532691479,-0.052771411836147],[-0.030596021562815,-0.065665252506733,-0.0082860309630632],[0.017659338191152,-0.04068323969841,0.087291568517685]],[[0.037430800497532,-0.020502654835582,-0.063987143337727],[-0.039295457303524,-0.062712430953979,0.047165650874376],[0.049912448972464,0.0045123994350433,-0.017749570310116]],[[-0.00042197361472063,-0.011509052477777,-0.064818039536476],[0.022657277062535,0.013729867525399,-0.011646864935756],[0.020095724612474,0.0082737831398845,0.049160812050104]],[[0.030437445268035,-0.012058871798217,-0.02990291826427],[-0.03884419798851,0.030063152313232,-0.047105364501476],[0.0099464477971196,-0.082260623574257,0.014790926128626]],[[0.053187169134617,-0.037152968347073,0.053874336183071],[0.016339430585504,0.0076110134832561,0.022136574611068],[-0.020163748413324,0.048721566796303,-0.0011838874779642]],[[-0.024632055312395,0.036664504557848,0.026017075404525],[-0.0016244072467089,-0.016166368499398,-0.0052399546839297],[-0.028437923640013,-0.023670487105846,-0.044834144413471]],[[-0.046331785619259,-0.0014125755988061,-0.027267638593912],[0.035589464008808,0.027239944785833,-0.079541601240635],[0.0091938329860568,-0.013516147620976,-0.033628288656473]],[[0.0063086682930589,-0.045725308358669,0.011390871368349],[-0.057839043438435,-0.0084345377981663,-0.0080380020663142],[-0.011451035737991,0.039619978517294,0.0018372758058831]],[[-0.052012592554092,-0.066035196185112,0.030618956312537],[0.027621442452073,-0.1186621338129,0.010994678363204],[0.071294546127319,-0.053107909858227,0.0027613192796707]],[[0.065248213708401,-0.0075138863176107,0.011111838743091],[0.024897562339902,-0.0072583248838782,-0.052442703396082],[-0.059098061174154,-0.030717032030225,-0.015050234273076]],[[0.010616389103234,0.053230881690979,0.02807835675776],[-0.10655884444714,0.010665766894817,0.016642680391669],[-0.019887810572982,-0.0053101009689271,-0.031473986804485]],[[0.024224625900388,0.04513281583786,0.0089481212198734],[0.0075434925965965,-0.024161687120795,-0.030402397736907],[0.016377368941903,0.011889478191733,-0.0055372072383761]],[[-0.039663210511208,0.090497016906738,0.03358643501997],[-0.028735065832734,-0.0020520354155451,0.062891624867916],[-0.009268993511796,-0.03971241414547,0.017673553898931]],[[0.068667054176331,0.0085103157907724,-0.079431012272835],[0.068640068173409,0.039862595498562,0.019887171685696],[-0.015941627323627,0.0055178022012115,-0.0098445909097791]],[[0.027609216049314,-0.0017890396993607,-0.029827009886503],[0.0085552148520947,0.071282297372818,0.014427874237299],[-0.013200541958213,0.045708704739809,-0.059441510587931]],[[-0.027968768030405,0.0066980537958443,-0.0058577144518495],[-0.027742492035031,-0.0002830219164025,-0.0076642464846373],[0.00051558413542807,-0.02794074639678,-0.024065298959613]],[[0.015155475586653,0.03955677524209,-0.016711510717869],[-0.032956846058369,-0.067813940346241,0.022945713251829],[-0.015447564423084,0.00065254641231149,-0.03773957490921]],[[-0.010292659513652,-0.036272205412388,0.010663005523384],[-0.015043636783957,-0.036955256015062,-0.050345607101917],[0.024025972932577,-0.024972226470709,0.00046338801621459]],[[-0.023901676759124,0.0077937939204276,0.024000722914934],[0.062433455139399,0.064546406269073,0.025897627696395],[0.030675120651722,0.0050559369847178,0.035531900823116]],[[-0.044672466814518,-0.03377166762948,0.02359214797616],[0.0016139480285347,0.048843435943127,0.025921354070306],[-0.05202504619956,0.098775818943977,0.080119669437408]],[[-0.073143310844898,0.081363119184971,-0.079226128757],[0.039568621665239,-0.051438570022583,-0.12515966594219],[-0.030767759308219,-0.06196378916502,-0.038559768348932]],[[-0.075981043279171,0.075265131890774,-0.012058455497026],[-0.010061798617244,0.027167180553079,0.09356515109539],[0.034429244697094,0.09744867682457,0.024886501953006]],[[-0.037489507347345,-0.029119284823537,0.02822320535779],[-0.0054673398844898,0.033826399594545,0.054680120199919],[0.06531573086977,0.0031582461670041,0.0031373396050185]],[[0.021076684817672,-0.035713400691748,0.049913849681616],[-0.04832649230957,-0.0097371097654104,-0.048718988895416],[0.037406302988529,0.035902317613363,0.02273784019053]],[[0.017977965995669,-0.084239900112152,-0.042597476392984],[0.01573895290494,0.0093065472319722,0.01533143222332],[-0.015624803490937,0.011164630763233,0.01153243612498]],[[0.11878829449415,0.019701281562448,-0.00095738802338019],[-0.0061064008623362,0.027867686003447,-0.071505323052406],[0.0078067909926176,0.0021835081279278,-0.021832628175616]],[[0.05303455889225,0.023274399340153,0.0088605070486665],[-0.028266282752156,0.030804881826043,-0.0047996947541833],[0.048615220934153,0.0033750240691006,0.028379550203681]],[[-0.035276852548122,0.018862657248974,-0.0091915540397167],[0.045163031667471,0.032971423119307,0.016867361962795],[0.038635708391666,-0.023166883736849,0.0024276471231133]],[[0.021755110472441,-0.07894392311573,-0.034825023263693],[0.011227451264858,0.049739368259907,-0.005989933386445],[-0.013832428492606,-0.0091463569551706,-0.052678778767586]],[[0.0034041870385408,-0.005517412442714,-0.011440934613347],[-0.02160070464015,-0.080034390091896,0.035510521382093],[0.0091020753607154,0.090144969522953,0.035792507231236]],[[-0.0051678926683962,-0.064471177756786,-0.018670029938221],[0.013752629049122,-0.011100799776614,0.015144117176533],[-0.041104640811682,-0.0013036922318861,-0.036361407488585]],[[0.082324288785458,0.027967305853963,0.045343317091465],[-0.036293052136898,-0.015551131218672,-0.069992043077946],[0.048884004354477,-0.059027962386608,-0.014983368106186]],[[0.031527791172266,-0.041274312883615,0.0099544590339065],[0.024880537763238,-0.042987689375877,-0.043781761080027],[-0.012078107334673,-0.028855796903372,-0.037437949329615]],[[-0.016093650832772,-0.042353846132755,0.050579741597176],[0.0029412326402962,0.032311856746674,-0.045470252633095],[-0.00034789662458934,0.0068852743133903,0.083789244294167]],[[-0.013744989410043,-0.066093102097511,0.0054795742034912],[-0.054600797593594,-0.0023343241773546,0.00065787532366812],[0.02973966114223,0.017836470156908,0.071414321660995]],[[-0.01333777885884,-0.029717342928052,0.026227233931422],[-0.066792286932468,0.07004302740097,-0.037868224084377],[0.1148778423667,-0.045908395200968,0.053091268986464]],[[-0.050008840858936,-0.029206454753876,-0.010263342410326],[-0.041081845760345,-0.032102271914482,0.059604194015265],[-0.041208352893591,0.040809538215399,0.014038632623851]],[[0.0092669818550348,-0.045544922351837,0.011063266545534],[-0.031939327716827,-0.003659361274913,0.0080486545339227],[0.023506874218583,-0.0053078439086676,-0.018557015806437]],[[-0.015573552809656,0.0031942438799888,0.043373867869377],[-0.052152872085571,0.028168577700853,-0.04448751360178],[0.010544827207923,-0.049536012113094,-0.012531611137092]],[[-0.063611231744289,-0.0076407832093537,-0.14286114275455],[0.03921177983284,0.013088870793581,-0.032530304044485],[0.057846609503031,-0.016785845160484,0.00037883952609263]],[[-0.069276839494705,0.068752698600292,-0.0377561673522],[-0.016884531825781,0.014009709469974,-0.028850100934505],[0.013716924935579,-0.031542349606752,0.016889087855816]],[[0.043914068490267,-0.031821224838495,-0.016236392781138],[-0.022477652877569,-0.023452505469322,0.046737942844629],[0.03978569060564,-0.025896072387695,0.046241961419582]],[[0.064580574631691,0.048641804605722,-0.006646285764873],[0.078205801546574,0.0060370764695108,-0.00095127028180286],[-0.0026621143333614,0.088545933365822,0.021746262907982]],[[0.028506845235825,-0.022923860698938,-0.00097428838489577],[-0.023995807394385,-0.079532079398632,-0.033013366162777],[-0.019469708204269,-0.033950205892324,-0.073624923825264]],[[0.039476647973061,0.0063956412486732,-0.066890224814415],[-0.046090573072433,-0.017545590177178,-0.022868709638715],[-0.027239628136158,-0.04326868802309,-0.029387297108769]],[[-0.047113046050072,0.045149005949497,0.066455081105232],[0.061284761875868,-0.0064575565047562,-0.015311767347157],[-0.032787967473269,0.00068160804221407,-0.058861613273621]],[[0.00470100203529,-0.062354918569326,0.073879428207874],[0.017623532563448,0.010555830784142,-0.0085024060681462],[-0.078581072390079,0.05173622071743,-0.037846125662327]],[[0.080166772007942,0.021445328369737,-0.049466490745544],[0.015247005969286,0.09340476244688,0.041976924985647],[-0.043645169585943,-0.025288289412856,-0.035051882266998]],[[-0.050456929951906,-0.021563094109297,0.096204154193401],[0.006395966745913,-0.09670864790678,-0.033657807856798],[-0.028838908299804,0.0081547033041716,0.044378481805325]],[[0.039398021996021,-0.012048688717186,0.03679221868515],[0.025039564818144,0.062416754662991,-0.047140318900347],[-0.0004770023515448,0.013214382342994,0.00422407919541]]],[[[-0.024499764665961,-0.035132512450218,0.020731881260872],[0.013740801252425,0.096588164567947,-0.074727892875671],[-0.011137062683702,0.10713621973991,-0.006523400079459]],[[-0.028623588383198,-0.011958599090576,-0.058368027210236],[-0.06932694464922,-0.10238526016474,-0.14451810717583],[-0.13566511869431,0.030555814504623,-0.042448498308659]],[[0.018752193078399,-0.042229872196913,-0.05899915844202],[0.047343861311674,-0.0035180428531021,0.21702535450459],[-0.02966221421957,-0.027727661654353,-0.0077986363321543]],[[0.010347261093557,0.10726998001337,-0.076380982995033],[0.032211512327194,0.050116550177336,0.066542610526085],[0.052158705890179,0.032420068979263,-0.0048133223317564]],[[-0.071483753621578,-0.085001826286316,0.036081302911043],[-0.093596704304218,-0.038869883865118,0.04844718053937],[-0.072935536503792,-0.024054136127234,-0.020694576203823]],[[0.022581964731216,0.077535435557365,0.055418223142624],[0.11862750351429,0.070712596178055,0.019826302304864],[0.10991851240396,0.022302411496639,-0.064209587872028]],[[0.073620311915874,-0.079154215753078,-0.037976663559675],[-0.002701164688915,0.084313057363033,-0.0044943653047085],[0.011749046854675,0.057729817926884,0.0042841513641179]],[[-0.036135122179985,0.017714042216539,0.0022048717364669],[-0.015857934951782,-0.069189451634884,0.095820412039757],[0.05525778979063,0.048267897218466,0.024947604164481]],[[-0.028043562546372,-0.072009362280369,0.030407605692744],[0.075402863323689,0.0098105436190963,-0.044829092919827],[0.10545388609171,-0.0020596953108907,0.015373825095594]],[[-0.00096660363487899,0.032586470246315,-0.049204342067242],[-0.034085616469383,-0.014420745894313,0.014176869764924],[-0.028326869010925,0.018870769068599,0.028631253167987]],[[0.10737835615873,-0.015798635780811,0.008720419369638],[0.0074243280105293,-0.040823630988598,-0.027956504374743],[0.06534980982542,0.069555729627609,0.087280683219433]],[[0.0007440775516443,-0.045163806527853,0.038419593125582],[0.072874829173088,-0.00022408690711018,-0.057934030890465],[0.055707972496748,-0.11896803975105,0.090421132743359]],[[0.045404750853777,0.021833773702383,0.1096884906292],[0.051956713199615,0.164311632514,0.027085376903415],[-0.025349488481879,0.057999942451715,0.083873122930527]],[[-0.0074768280610442,-0.029942007735372,-0.022969264537096],[-0.0091175148263574,-0.062566325068474,-0.0098642418161035],[-0.056413169950247,0.031495530158281,0.061684418469667]],[[-0.057036362588406,0.015177158638835,-0.0043260944075882],[-0.0014824053505436,0.035825613886118,-0.054515641182661],[-0.038369063287973,0.099710203707218,0.056503780186176]],[[0.048129618167877,0.10743948817253,-0.1356418132782],[-0.024757081642747,0.01031662337482,0.027135841548443],[-0.0092239668592811,0.025095801800489,0.014916467480361]],[[0.032947722822428,0.027241639792919,-0.092346929013729],[-0.024407902732491,-0.051221583038568,0.039736535400152],[0.035710982978344,0.11595658957958,0.048541370779276]],[[0.03685762360692,-0.046717792749405,0.018893225118518],[-0.033358782529831,-0.0157231669873,-0.058159600943327],[-0.047427803277969,0.0095294248312712,-0.051995109766722]],[[0.058471828699112,0.029187545180321,-0.059547945857048],[-0.02253457531333,0.045301023870707,-0.018595837056637],[0.018489157781005,-0.022559793666005,0.10364719480276]],[[0.061151243746281,0.05630786344409,-0.008782684803009],[-0.058785535395145,0.080523885786533,-0.065150514245033],[-0.0035714388359338,0.022198462858796,0.15475504100323]],[[0.04053432866931,-0.025919746607542,0.029393119737506],[0.054552782326937,-0.0085981301963329,0.043291933834553],[-0.072662562131882,-0.017895638942719,0.03291617706418]],[[0.072150863707066,-0.016503976657987,0.05621325597167],[0.11878811568022,0.094160869717598,-0.010211065411568],[0.088213503360748,0.053995430469513,-0.0018620752962306]],[[0.0011737681925297,0.041147619485855,0.10229300707579],[-0.034364592283964,0.013357880525291,-0.0068391337990761],[-0.053212113678455,-0.036231208592653,0.029839754104614]],[[-0.0096293315291405,0.027396459132433,0.10806055366993],[0.023148823529482,0.049645829945803,-0.02211756631732],[-0.0027088841889054,-0.1379202902317,-0.094823785126209]],[[0.073817081749439,-0.035423032939434,0.040013693273067],[0.0071204854175448,-0.082495704293251,-0.12079851329327],[0.036508295685053,0.036392152309418,-0.024947902187705]],[[-0.013524128124118,0.074065111577511,0.025254022330046],[-0.010897863656282,0.0074868686497211,0.035326667129993],[-0.054499696940184,-0.024115726351738,0.056156061589718]],[[0.080453723669052,0.093411289155483,0.074881553649902],[0.074772842228413,0.073160603642464,-0.078097604215145],[0.038901075720787,-0.026096334680915,-0.017934510484338]],[[-0.054001089185476,0.017290312796831,0.033306941390038],[0.0070622349157929,0.08108201622963,0.051768120378256],[0.03516536578536,0.034416332840919,0.032897211611271]],[[0.066819079220295,-0.11036489903927,0.13904756307602],[-0.0049621714279056,-0.016125598922372,0.09512934833765],[0.018508084118366,0.069961883127689,-0.012827277183533]],[[0.058786474168301,-0.0057053058408201,-0.11644472926855],[0.018374284729362,0.053576678037643,0.17466077208519],[-0.00595348700881,0.013697138987482,0.06921573728323]],[[0.01844759657979,0.056048918515444,0.052943293005228],[-0.069032408297062,-0.060138277709484,1.6656318621244e-05],[0.015717804431915,0.0010030773701146,0.050755184143782]],[[0.013739597052336,-0.039977625012398,-0.0036240820772946],[0.089083842933178,0.025072118267417,0.068669132888317],[0.043058671057224,-0.0055164019577205,0.025099162012339]],[[0.016583796590567,0.16412426531315,-0.04462831094861],[0.050933357328176,-0.013657334260643,-0.092695437371731],[-0.030155962333083,-0.011833543889225,0.072698064148426]],[[0.012978033162653,-0.047446496784687,0.034419197589159],[0.011828522197902,-0.032099097967148,0.0185975600034],[0.031469617038965,0.016848878934979,0.023477431386709]],[[-0.036115754395723,0.0019009991083294,-0.14530715346336],[-0.019586026668549,0.0018882206641138,-0.052778504788876],[0.0069871218875051,-0.038445916026831,-0.12051625549793]],[[0.045126520097256,0.052774902433157,-0.034657593816519],[0.00829943921417,-0.0045113046653569,-0.043827038258314],[0.0016230623004958,0.0018912382656708,0.015482068993151]],[[-0.0093184858560562,0.031502578407526,-0.0017546139424667],[0.036630868911743,0.030415533110499,-0.01368113886565],[0.052463445812464,-0.02186669036746,-0.0014477418735623]],[[-0.02517538331449,-0.014915989711881,-0.041340712457895],[0.06601594388485,-0.068222917616367,0.017361480742693],[0.12161335349083,0.017210952937603,0.019881626591086]],[[0.013184901326895,-0.092494003474712,-0.074878841638565],[-0.050445690751076,-0.037495546042919,-0.13550539314747],[0.025702986866236,-0.075938165187836,0.0876404941082]],[[0.032225396484137,0.024155518040061,0.072742074728012],[-0.00026948019512929,0.016122583299875,-0.014892012812197],[0.0072318841703236,0.12846000492573,-0.001227677683346]],[[-0.016984224319458,-0.039677906781435,-0.062999181449413],[-0.0015728208236396,0.081036664545536,-0.0061098071746528],[-0.091719217598438,0.065637849271297,-0.060703456401825]],[[0.14068415760994,0.13545273244381,0.047821298241615],[0.023842850700021,0.12350212037563,0.16066823899746],[0.03122247941792,0.087835885584354,0.016198147088289]],[[-0.060341209173203,0.068129777908325,0.17148214578629],[0.097129508852959,0.024053379893303,0.011714852415025],[0.059901162981987,0.063281141221523,0.042620666325092]],[[-0.050783637911081,0.051239930093288,-0.0034707933664322],[-0.089627534151077,-0.0094557320699096,-0.015988225117326],[-0.082467749714851,0.035021506249905,0.069245979189873]],[[0.01587781868875,0.026170102879405,0.0051646023057401],[-0.0029260539449751,-0.026767712086439,-0.041663557291031],[0.084838576614857,0.1404891461134,0.034918274730444]],[[0.023018965497613,0.011493241414428,0.003767944406718],[0.1002558618784,0.063246563076973,0.082017630338669],[0.064832419157028,0.062719896435738,0.035593461245298]],[[-0.011070353910327,-0.055871490389109,0.018796334043145],[0.0080826291814446,0.053907427936792,-0.010136923752725],[-0.038021612912416,-0.10237955302,-0.046393752098083]],[[-0.047996155917645,-0.050890889018774,0.049540940672159],[-0.053819742053747,0.053674444556236,-0.048782896250486],[-0.012261807918549,-0.034216292202473,-0.039483487606049]],[[-0.074205242097378,-0.00081626826431602,-0.038944307714701],[-0.073967404663563,-0.091102816164494,0.011857817880809],[-0.081239975988865,-0.016650365665555,0.011281325481832]],[[-0.068459674715996,-0.022998617962003,-0.037331249564886],[0.0022122550290078,-0.035169623792171,-0.075354106724262],[0.082463182508945,0.028336329385638,-0.038052216172218]],[[-0.052838172763586,-0.019516039639711,-0.10751003026962],[-0.0099612167105079,0.031632054597139,-0.053531128913164],[-0.064721636474133,-0.10598784685135,0.069320343434811]],[[-0.041782084852457,-0.0061171525157988,-0.032640401273966],[0.026399435475469,0.029021393507719,-0.030769536271691],[0.055790141224861,-0.0014082227135077,-0.014308623969555]],[[-0.00035052906605415,-0.034058846533298,-0.037299782037735],[-0.018937189131975,-0.078273013234138,0.081460811197758],[-0.010073463432491,0.016850845888257,0.058803532272577]],[[-0.038947939872742,0.050998140126467,0.06384215503931],[0.03840309008956,0.075032062828541,0.040119752287865],[0.077091127634048,-0.015949131920934,0.0091530624777079]],[[-0.011801881715655,-0.0565399043262,0.034497000277042],[-0.080883108079433,-0.10271086543798,-0.063708312809467],[0.01722170598805,0.11772389709949,0.049637090414762]],[[-0.096893519163132,-0.0087738446891308,0.078034847974777],[-0.052349921315908,-0.088511802256107,-0.012089617550373],[0.043390102684498,-0.059852279722691,0.09063720703125]],[[0.07191476225853,0.035995051264763,0.0093487417325377],[0.039422392845154,-0.030702125281096,-0.0015117734437808],[-0.017206067219377,0.014792890287936,0.02106125280261]],[[-0.013663301244378,-0.010095046833158,-0.041720405220985],[-0.030076015740633,-0.0089627169072628,-2.874343044823e-05],[-0.027849623933434,-0.089770346879959,-0.065533764660358]],[[-0.068939596414566,0.036727745085955,0.082318760454655],[0.0064651621505618,-0.018216839060187,0.0030370734166354],[0.026272347196937,-0.016642296686769,0.06303009390831]],[[0.011370581574738,0.0040478054434061,-0.01191695407033],[0.053948599845171,0.096395835280418,-0.030527073889971],[0.01025702059269,-0.041291080415249,0.063911586999893]],[[0.047638431191444,0.044638145714998,0.024188416078687],[0.042069975286722,0.031896226108074,0.026276530697942],[0.030478378757834,-0.057146538048983,0.005380833055824]],[[-0.09430930018425,0.011179833672941,-0.085087731480598],[-0.056636039167643,-0.09363067895174,-0.098740540444851],[-0.012845708988607,-0.1233863607049,0.043142765760422]],[[-0.029647320508957,-0.0099981818348169,0.094213224947453],[0.034508384764194,-0.0046174330636859,0.067089386284351],[0.021977519616485,-0.016817390918732,0.05283235758543]],[[0.024841004982591,-0.062956564128399,-0.0095588797703385],[-0.037073973566294,0.054453976452351,0.014356400817633],[0.051579691469669,-0.00045978539856151,0.055459704250097]],[[-0.05513283982873,0.01214836165309,0.052524078637362],[-0.07462078332901,-0.074485935270786,-0.044083178043365],[-0.021564206108451,-0.028710100799799,-0.016430275514722]],[[0.077904172241688,0.1552816927433,0.086469486355782],[0.055209420621395,0.067909628152847,0.05276507511735],[-0.11177007108927,0.046674326062202,0.00075493147596717]],[[-0.045784518122673,-0.019875878468156,-0.049842029809952],[0.064775310456753,0.042538736015558,-0.0049246163107455],[0.018598994240165,0.040348619222641,0.058327481150627]],[[0.074007973074913,0.039299126714468,0.012342484667897],[0.0334064476192,0.014159743674099,-0.042127054184675],[0.031947489827871,0.080629341304302,-0.098246060311794]],[[0.048750247806311,-0.064097814261913,-0.021347671747208],[0.021883524954319,-0.014075910672545,0.020096950232983],[0.014816362410784,0.053363382816315,-0.097838222980499]],[[-0.032870937138796,-0.10101897269487,-0.030471136793494],[-0.02578991279006,-0.0074655935168266,-0.029551930725574],[0.037895988672972,-0.024138459935784,-0.045759666711092]],[[0.09411833435297,0.097259506583214,-0.03214705735445],[0.0076160533353686,0.065184950828552,0.013362253084779],[0.13707323372364,0.045192826539278,0.11858224123716]],[[0.028912151232362,0.061060894280672,0.070735663175583],[-0.056867152452469,0.028904730454087,-0.075198717415333],[-0.046345200389624,0.081031084060669,-0.024916529655457]],[[-0.042597100138664,-0.051524862647057,-0.010069146752357],[-0.069290645420551,0.038108799606562,0.032653655856848],[-0.022723816335201,-0.050546959042549,0.084100253880024]],[[0.032431859523058,0.094264164566994,-0.11165945976973],[-0.055553343147039,0.033635299652815,0.18784591555595],[-0.0052421712316573,-0.0079436432570219,-0.078562021255493]],[[-0.06745234131813,0.087872602045536,0.03395377099514],[-0.0082504758611321,0.049917735159397,0.01355264429003],[-0.081173941493034,0.037733558565378,0.018903583288193]],[[0.038712251931429,-0.065147250890732,-0.063008442521095],[0.078401573002338,0.0028070772532374,0.022962534800172],[0.0069179669953883,-0.13221643865108,0.015087763778865]],[[-0.11334501951933,0.061401538550854,0.02436757273972],[0.02482289634645,-0.064276039600372,0.0055318521335721],[-0.063321724534035,-0.0072322157211602,0.024167500436306]],[[0.081521213054657,0.093446776270866,-0.075781054794788],[0.042163912206888,0.092775784432888,-0.054117374122143],[0.073295123875141,0.016721848398447,-0.064249761402607]],[[-0.027591252699494,-0.039653480052948,0.01495077367872],[0.10625010728836,0.0063698054291308,-0.054080124944448],[-0.038028851151466,0.055236879736185,-0.02404959499836]],[[0.012965720146894,0.030052637681365,-0.016195975244045],[0.16393612325191,0.15449687838554,-0.094886422157288],[-0.00021318990911823,-0.076299615204334,0.096017569303513]],[[0.00012150936527178,-0.045871313661337,-0.1179676502943],[0.022975692525506,-0.020945020020008,-0.050607904791832],[-0.0010154200717807,-0.04370230063796,-0.018397696316242]],[[0.060206010937691,-0.027664862573147,-0.043494839221239],[0.054762721061707,-0.057916551828384,-0.038656033575535],[-0.038704477250576,-0.07788872718811,-0.0025774643290788]],[[0.050687987357378,-0.022657658904791,0.12065213173628],[0.027949577197433,-0.027125528082252,-0.016944114118814],[0.072492271661758,0.063981361687183,-0.016237355768681]],[[0.00055610039271414,0.011852578260005,-0.026179745793343],[0.06444787979126,-0.0072366427630186,0.028020473197103],[0.078620634973049,0.099178172647953,-0.050399333238602]],[[0.019032219424844,0.021070793271065,0.0025279538240284],[-0.021184673532844,0.025027262046933,0.021587133407593],[0.016405617818236,-0.011538231745362,0.010187074542046]],[[-0.084764659404755,0.014654640108347,0.096265777945518],[-0.017881756648421,-0.035251084715128,-0.03245659917593],[-0.086127482354641,-0.06184708699584,-0.04790435358882]],[[0.0019258855609223,0.041487582027912,0.098970219492912],[0.069692492485046,0.041079469025135,-0.06128228828311],[0.047436237335205,0.035391081124544,-0.066128395497799]],[[0.06374829262495,-0.072499848902225,0.21291296184063],[0.015183994546533,-0.020883427932858,0.10828687995672],[-0.061519995331764,-0.0035239581484348,0.02892436645925]],[[0.012525671161711,-0.045386280864477,0.0090691512450576],[-0.0019748557824641,-0.0055515272542834,0.011233912780881],[0.053612437099218,-0.024440394714475,0.043340127915144]],[[0.10274515300989,-0.036173149943352,-0.048486586660147],[0.034259025007486,-0.034888602793217,-0.063921056687832],[0.021108333021402,0.11848679929972,-0.024763122200966]],[[0.15109026432037,0.010115231387317,-0.0052722957916558],[-0.01691628433764,-0.0082504684105515,0.027449999004602],[0.049844827502966,0.055741708725691,-0.037412140518427]],[[-0.025579797104001,-0.017424223944545,0.0099500212818384],[-0.077467106282711,-0.12210325151682,0.090313196182251],[0.026340361684561,-0.077776074409485,0.016510516405106]],[[-0.0083659756928682,-0.08430490642786,0.075194403529167],[0.015996444970369,0.018720354884863,0.045133844017982],[0.066507712006569,-0.06805045902729,0.10196302831173]],[[-0.024729197844863,0.036261279135942,0.010280995629728],[-0.037074867635965,-0.020249500870705,-0.12244460731745],[0.0086305467411876,-0.0051984675228596,-0.014301563613117]],[[-0.057954270392656,-0.030083622783422,-0.052390817552805],[-0.019876271486282,-0.03934259340167,-0.065070427954197],[-0.0027400255203247,-0.033973075449467,0.043528702110052]],[[-0.00452098576352,0.087985083460808,0.024142369627953],[0.00066609116038308,0.055987898260355,-0.06454049795866],[0.060832306742668,0.10763612389565,-0.0013308627530932]],[[-0.082863412797451,-0.0016212263144553,0.031036844477057],[0.16593161225319,0.0096310172230005,-0.043511103838682],[-0.089844532310963,0.10882664471865,-0.014762854203582]],[[-0.008370048366487,0.11112736165524,0.099221989512444],[-0.017447160556912,0.077819660305977,0.031375363469124],[0.1077212318778,0.03999362513423,0.029788188636303]],[[0.11115910857916,-0.054622210562229,-0.049506273120642],[-0.066561862826347,-0.051071304827929,0.034988962113857],[0.076179891824722,0.10873088985682,-0.015631085261703]],[[0.10347601771355,0.037899900227785,-0.031966157257557],[0.0051048356108367,0.015866231173277,0.0079003097489476],[-0.041030619293451,0.030585046857595,-0.051542386412621]],[[-0.084969565272331,-0.11411084234715,-0.048055291175842],[0.01546155847609,0.051022756844759,0.19964994490147],[-0.01149769499898,-0.064991049468517,0.052849538624287]],[[0.060629319399595,0.072434730827808,0.049135182052851],[0.1338859051466,0.067389607429504,-0.013767811469734],[0.12849117815495,0.012151126749814,0.050546672195196]],[[-0.040510680526495,0.082274220883846,0.072371229529381],[0.041526969522238,-0.043204858899117,0.020458929240704],[0.096861883997917,-0.090660020709038,-0.0058106742799282]],[[-0.00018506406922825,0.076403990387917,-0.04521843418479],[-0.015885818749666,-0.064785979688168,-0.079797141253948],[0.011987291276455,-0.033849116414785,0.035752099007368]],[[-0.069710746407509,-0.032777350395918,-0.070136390626431],[0.0092697907239199,-0.12857910990715,0.083767347037792],[0.034564562141895,-0.087533853948116,-0.053385823965073]],[[0.12326897680759,-0.018017208203673,-0.068107664585114],[0.12722869217396,0.015885824337602,0.0043735797517002],[0.0093054939061403,-0.047085881233215,-0.038708705455065]],[[0.065470770001411,0.024371061474085,0.074529252946377],[-0.015823720023036,0.026703514158726,0.099341422319412],[0.017406096681952,0.071016050875187,0.027448730543256]],[[0.024152677506208,0.065180085599422,0.039815559983253],[-0.030853955075145,-0.052468195557594,0.01233097165823],[-0.051839977502823,0.078581817448139,0.07631416618824]],[[0.0086754988878965,0.063137292861938,-0.029733654111624],[0.012296387925744,-0.0082602128386497,-0.10843077301979],[-0.0089412741363049,0.0077364388853312,-0.12474627047777]],[[0.04070496186614,-0.011007295921445,-0.016215935349464],[0.062247350811958,0.039752077311277,-0.037746477872133],[0.078882679343224,-0.0066598048433661,0.132896900177]],[[-0.025244308635592,-0.086264409124851,-0.063929565250874],[0.087369292974472,0.09894160926342,-0.061178497970104],[-0.0039068469777703,0.049669556319714,-0.076251111924648]],[[-0.019316071644425,-0.088426657021046,-0.088838592171669],[-0.064114585518837,-0.062414765357971,-0.072843201458454],[0.012655636295676,-0.076242856681347,-0.008488099090755]],[[-0.036591410636902,-0.016227895393968,0.049699176102877],[-0.083700180053711,-0.0072744865901768,0.074816048145294],[0.062192749232054,-0.062032748013735,0.013014297932386]],[[-0.0096178147941828,0.021736131981015,0.0052406145259738],[0.079014137387276,0.024403324350715,0.023313134908676],[0.047527585178614,-0.004990846849978,-0.008793861605227]],[[-0.066369913518429,-0.0084508918225765,-0.069966949522495],[0.12427215278149,0.025222765281796,-0.022819949313998],[-0.048080757260323,-0.013319901190698,-0.049208596348763]],[[0.024401284754276,0.011501170694828,-0.028294960036874],[-0.080655135214329,0.03240642696619,0.051003351807594],[-0.022748477756977,-0.0089822430163622,0.0014958988176659]],[[-0.053563550114632,-0.08203300088644,-0.052843529731035],[0.069019488990307,0.047486506402493,-0.059009920805693],[0.083856053650379,0.062390320003033,-0.0031629870645702]],[[-0.081389628350735,-0.077926531434059,-0.11635820567608],[-0.057303909212351,-0.033066380769014,-0.10198812931776],[0.014523935504258,-0.037816047668457,-0.01490368321538]],[[0.027319652959704,-0.0016113652382046,-0.019549014046788],[0.065290972590446,-0.037505492568016,-0.099366299808025],[-0.033557951450348,-0.054994605481625,0.051984168589115]],[[0.051535855978727,0.0026091991458088,0.16899651288986],[-0.034822333604097,-0.12836214900017,0.15410633385181],[0.029679635539651,0.1191923469305,0.049726169556379]],[[-0.015664549544454,-0.028800586238503,0.092878811061382],[-0.13368006050587,-0.021834533661604,-0.050837211310863],[-0.063467770814896,-0.019150272011757,-0.07062353938818]],[[-0.025728605687618,-0.054296437650919,-0.037729352712631],[-0.10258373618126,0.0016528174746782,-0.032011207193136],[-0.023353390395641,0.042970113456249,0.048115573823452]],[[0.011821293272078,0.071030929684639,0.055490292608738],[-0.045636847615242,-0.0058023552410305,-0.012495579198003],[0.11641716957092,-0.012414793483913,-0.047176904976368]],[[0.065603703260422,-0.082469023764133,0.10302041471004],[-0.036658987402916,0.0071722082793713,0.03929091617465],[-0.13317547738552,0.017692010849714,-0.011751149781048]],[[-0.024221612140536,0.078590132296085,0.096256375312805],[-0.044643186032772,0.058904998004436,0.085826776921749],[-0.027674717828631,0.020170960575342,0.063433147966862]],[[0.019191730767488,-0.040880233049393,-0.044147804379463],[0.059843011200428,0.0061883926391602,-0.02447421848774],[-0.020313208922744,0.033708300441504,0.011816608719528]],[[0.11628996580839,0.11192293465137,0.06261307746172],[0.040890358388424,0.029757536947727,0.068781845271587],[0.054846111685038,-0.014348807744682,0.018052950501442]],[[0.049065243452787,0.0091974390670657,0.058089219033718],[-0.0080337319523096,-0.022094877436757,0.027754366397858],[-0.04695563018322,-0.018991366028786,0.00081303040497005]]],[[[-0.028652654960752,-0.0022236057557166,0.027994403615594],[0.00012566935038194,-0.017355870455503,0.011736976914108],[-0.033815700560808,0.027443267405033,0.079532235860825]],[[0.040152959525585,-0.0028790854848921,-0.078776650130749],[-0.11193327605724,-0.0071331216022372,0.012229445390403],[0.0056235147640109,-0.013390643522143,0.033674638718367]],[[-0.031768709421158,-0.039631761610508,-0.075273796916008],[0.02892099507153,-0.057813007384539,-0.078239686787128],[-0.061834204941988,-0.027780516073108,-0.0036731276195496]],[[0.029641347005963,0.062822349369526,0.051051031798124],[-0.033926792442799,-0.050585940480232,-0.032158747315407],[0.015665594488382,-0.067687086760998,0.0074887098744512]],[[-0.041629280894995,0.02762370929122,-0.041345182806253],[0.0098134055733681,0.049937900155783,0.056053165346384],[-0.07254159450531,0.051468830555677,0.011775334365666]],[[0.037788461893797,0.043073438107967,0.04471118748188],[0.016561148688197,0.062827341258526,0.095404528081417],[0.019208936020732,-0.021982632577419,0.00039566052146256]],[[0.022684594616294,-0.010400430299342,0.01272566895932],[0.096100397408009,-0.051987390965223,-0.042788453400135],[-0.010355816222727,-0.018711132928729,-0.0073666297830641]],[[-0.056972172111273,-0.036675825715065,0.00042372188181616],[0.058488134294748,0.048470973968506,0.047156799584627],[-0.039170678704977,0.060863293707371,0.015536921098828]],[[-0.028243776410818,-0.04450611397624,0.045144002884626],[0.021735936403275,-0.019749600440264,-0.047685489058495],[0.051480531692505,0.055449873209,0.029355701059103]],[[-0.036005470901728,0.031969420611858,0.055677939206362],[0.017888503149152,0.0066360672935843,0.0096040992066264],[0.13047967851162,-0.0081393560394645,0.00052263087127358]],[[-0.0077013610862195,-0.015264043584466,0.034814700484276],[-0.05780465900898,0.058289732784033,0.034996494650841],[-0.040093511343002,0.012921293266118,0.021595694124699]],[[0.046342048794031,-0.096540778875351,-0.0049214516766369],[-0.034065343439579,-0.072681702673435,0.030498845502734],[-0.011219031177461,0.012946956790984,0.0025330660864711]],[[0.053160507231951,-0.024887409061193,0.014238422736526],[-0.0081720855087042,0.0088652260601521,-0.045445382595062],[-0.01097019482404,-0.00200648419559,0.063732944428921]],[[0.074827648699284,0.053854640573263,-0.085934430360794],[-0.063019476830959,-0.035832576453686,-0.061915535479784],[-0.00079969182843342,-0.015018335543573,0.030110184103251]],[[0.085495509207249,0.077993705868721,0.050285141915083],[-0.039576970040798,-0.013063083402812,-0.043030887842178],[-0.0094367153942585,0.07349394261837,0.031136710196733]],[[0.017997715622187,-0.0025649631861597,-0.021347003057599],[-0.0032292418181896,0.048335235565901,-0.05510263517499],[0.0084958467632532,-0.016248689964414,-0.04336941242218]],[[0.026902511715889,-0.017511986196041,0.084168843924999],[0.051686700433493,-0.0060185641050339,0.06538974493742],[-0.012113803066313,0.0095594031736255,-0.06113089248538]],[[0.018009599298239,-0.0059423870407045,-0.064043685793877],[-0.016398573294282,-0.03812250494957,-0.083667375147343],[-0.035661574453115,0.034545570611954,-0.077819794416428]],[[0.029703065752983,-0.041829876601696,0.066643767058849],[0.036216758191586,-0.088702917098999,-0.035841297358274],[-0.027391817420721,-0.047350879758596,0.058433949947357]],[[-0.018314832821488,-0.011799141764641,-0.053268413990736],[-0.0032740421593189,-0.033917427062988,0.066375136375427],[-0.007644263561815,-0.030591359362006,0.00095043051987886]],[[0.052178602665663,-0.031816776841879,0.063865087926388],[-0.060996476560831,0.011001555249095,-0.082488544285297],[0.096307724714279,0.044169742614031,-0.048638127744198]],[[0.11767306923866,-0.0025737872347236,-0.014844011515379],[0.049929607659578,0.040312007069588,0.066147662699223],[0.042509887367487,0.10374753177166,0.027851276099682]],[[0.021778089925647,-0.020515102893114,-0.029816700145602],[-0.056772246956825,-0.0030942354351282,-0.06602044403553],[-0.031293492764235,-0.082588501274586,0.045209176838398]],[[0.01270017772913,0.057535506784916,-0.044780239462852],[-0.035850360989571,0.083831332623959,0.026931351050735],[0.044355813413858,-0.0089479917660356,0.041844077408314]],[[0.042755115777254,0.036026686429977,-0.045809593051672],[0.084899261593819,-0.022645957767963,0.0056818346492946],[-0.010405327193439,-0.037501692771912,0.028058247640729]],[[-0.016037138178945,0.086689792573452,0.061638280749321],[0.0083515467122197,0.063375055789948,-0.01784148439765],[0.0035209115594625,-0.073582507669926,-0.0080804144963622]],[[0.050780907273293,-0.028107382357121,-0.04270076751709],[0.0048883142881095,0.0089411651715636,0.044843655079603],[-0.042417388409376,0.070701636373997,0.016320824623108]],[[0.03066086769104,0.061009973287582,-0.0037783039733768],[0.022680198773742,-0.012919972650707,-0.028016664087772],[0.072059527039528,0.068943366408348,-0.010162533260882]],[[-0.090522766113281,-0.015667453408241,0.024556241929531],[-0.0004023679648526,-0.066451169550419,0.072916336357594],[0.040858253836632,0.093308731913567,0.010299821384251]],[[0.019852103665471,-0.020328694954515,-0.016890285536647],[-0.04563594609499,0.040624875575304,0.064457550644875],[-0.0022601035889238,0.044002011418343,-0.03913813829422]],[[-0.016304280608892,-0.0066305832006037,-0.033372592180967],[0.040964607149363,0.04799460247159,-0.059756942093372],[-0.015464334748685,0.035541050136089,0.004442089702934]],[[0.086267583072186,0.060973968356848,-0.050428047776222],[-0.0051993583329022,0.03637058660388,-0.0071049500256777],[0.065475434064865,0.042899776250124,-0.032003693282604]],[[0.054737787693739,0.032530263066292,-0.0055874423123896],[0.0035977165680379,-0.00030045380117372,-0.0070230308920145],[0.033416710793972,0.087020479142666,0.0037026144564152]],[[0.017409486696124,0.056924618780613,-0.016378086060286],[-0.0056398441083729,-0.031627248972654,-0.051215991377831],[0.032843351364136,-0.0084482226520777,0.011835894547403]],[[0.065310180187225,-0.029377227649093,-0.0018005856545642],[0.016844561323524,0.0996925085783,-0.033058524131775],[-0.046692557632923,-0.091635003685951,0.043167479336262]],[[-0.0065013263374567,0.05045685172081,0.043386232107878],[-0.032907258719206,-0.017826601862907,-0.017716409638524],[-0.0015792335616425,0.0096709104254842,-0.0063978633843362]],[[0.045561455190182,0.00029193522641435,0.014361358247697],[0.053026761859655,-0.028715809807181,0.072270318865776],[0.023265248164535,0.041912820190191,0.0091917794197798]],[[0.01772484369576,-0.043744225054979,0.015602038241923],[-0.0058419303968549,0.012605433352292,-0.027354504913092],[0.052928991615772,0.016039662063122,-0.039184395223856]],[[-0.013300257734954,-0.032539878040552,0.0093834642320871],[-0.029006885364652,0.030514968559146,-0.070450447499752],[0.02945290133357,-0.017253110185266,-0.029590401798487]],[[0.055592399090528,-0.0064801694825292,0.076773017644882],[-0.054245211184025,0.038940597325563,0.045878034085035],[0.0041286768391728,0.068456672132015,0.042837586253881]],[[-0.035317171365023,0.044235289096832,0.012280368246138],[0.016714809462428,-0.013916467316449,-0.013170425780118],[0.039381042122841,0.0046478374861181,0.062280885875225]],[[0.030369123443961,0.013543960638344,0.053012680262327],[-0.0019586693961173,0.079429924488068,-0.018932016566396],[0.051359634846449,0.076325975358486,0.036653742194176]],[[0.031049447134137,0.073410898447037,0.057535376399755],[0.05622823536396,0.019055902957916,0.1040225699544],[0.085249409079552,0.064071998000145,0.081201612949371]],[[-0.011700090952218,0.083823338150978,-0.011465910822153],[-0.02102473564446,0.035387519747019,-0.02831556648016],[0.0091868853196502,-0.0047543770633638,-0.0022639345843345]],[[0.043275814503431,0.083977557718754,0.018275020644069],[-0.039435517042875,0.0019630251917988,-0.034004807472229],[0.079634942114353,0.035430315881968,0.08412292599678]],[[0.021203653886914,0.012548657134175,0.025683214887977],[0.051440801471472,0.010794520378113,-0.00356061081402],[0.091004237532616,-0.11151181161404,0.0037718652747571]],[[0.033990133553743,0.016107881441712,-0.019304489716887],[0.064520724117756,-0.072629444301128,-0.025532392784953],[0.016281105577946,0.059113472700119,-0.028041750192642]],[[-0.066163651645184,-0.018026957288384,-0.028599042445421],[0.032731287181377,0.097869880497456,-0.086221270263195],[-0.013677271082997,-0.006530930288136,0.050341889262199]],[[0.050415154546499,-0.036623988300562,-0.0068115382455289],[0.078177355229855,-0.057981941848993,0.003224776359275],[0.0668029114604,-0.025663740932941,0.04873413592577]],[[-0.049431886523962,-0.0323879532516,0.017178826034069],[-0.015123349614441,0.049787569791079,0.018129579722881],[0.012667007744312,0.031008856371045,0.02151669934392]],[[0.061010800302029,-0.0035256969276816,0.02939161658287],[-0.028241133317351,-0.022719433531165,0.016260797157884],[0.0096337804570794,0.038474503904581,0.021454742178321]],[[0.0045063644647598,-0.0025895365979522,-0.069106869399548],[0.050317618995905,-0.054901987314224,0.021919079124928],[0.052614543586969,0.007483571767807,0.013167636469007]],[[0.05211042240262,-0.015213570557535,-0.073109276592731],[-0.072998039424419,-0.024419035762548,-0.073033630847931],[0.0062100943177938,-0.035139493644238,-0.01250628195703]],[[0.035681676119566,0.028319140896201,-0.016450699418783],[0.013381972908974,0.015792412683368,0.0035352306440473],[0.048228360712528,0.021887812763453,0.0018691535806283]],[[0.049000445753336,0.039001353085041,-0.047947261482477],[0.018472583964467,-0.030948776751757,-0.056605517864227],[-0.018032057210803,0.028538748621941,0.025094479322433]],[[-0.035554759204388,-0.0067251278087497,0.056881543248892],[0.046575970947742,0.012221599929035,0.027709988877177],[-0.0048736049793661,-0.039972867816687,-0.011878251098096]],[[0.067803129553795,0.037830233573914,0.1078267171979],[0.0096754506230354,0.028877038508654,0.04119661077857],[-0.035589952021837,0.010145967826247,-0.022940682247281]],[[0.022647986188531,-0.072728857398033,0.082310684025288],[0.018756628036499,0.00075585179729387,-0.029319809749722],[-0.036428663879633,-0.099406383931637,-0.021394956856966]],[[0.037885740399361,0.023276126012206,0.046016406267881],[0.01436651404947,0.0029672204982489,-0.043930429965258],[0.043110072612762,-0.10298835486174,0.01597298309207]],[[0.04547306895256,-0.045485902577639,-0.079158112406731],[0.00043917656876147,-0.024050418287516,0.029577007517219],[-0.036754328757524,-0.051969345659018,0.00059868767857552]],[[0.047266777604818,0.01397867873311,-0.043514065444469],[0.022252924740314,0.041721519082785,0.019864743575454],[-0.055866092443466,0.037556651979685,0.0034000424202532]],[[0.034982226788998,0.08434721827507,-0.049725290387869],[-0.060011554509401,0.022881578654051,0.057627085596323],[0.025708258152008,-0.0016530209686607,-0.083978578448296]],[[0.050906665623188,-0.045099813491106,0.010975341312587],[-0.020670814439654,-0.017000740393996,-0.014539146795869],[0.046865157783031,-0.017465563490987,-0.080890841782093]],[[-0.0051572164520621,0.060943759977818,0.054097171872854],[0.045162945985794,0.060010977089405,0.027195984497666],[0.054649975150824,0.032419092953205,6.070426752558e-05]],[[-0.041162140667439,-0.050636373460293,-0.0029942512046546],[-0.10500876605511,-0.080246269702911,-0.016386596485972],[0.003641051473096,-0.010352454148233,-0.056346699595451]],[[-0.03018643707037,0.05321404337883,-0.057749532163143],[0.061512466520071,0.036737445741892,-0.029101705178618],[0.11900226771832,-0.0019532083533704,0.014371925964952]],[[-0.042046006768942,0.020443711429834,0.032645598053932],[-0.013707912527025,-0.052189011126757,-0.010946393013],[0.042070705443621,0.079511404037476,-0.020878333598375]],[[-0.024496840313077,0.021166369318962,0.013511531054974],[0.09222212433815,0.0059816078282893,-0.033849872648716],[-0.061807680875063,0.064627669751644,0.021956047043204]],[[0.053392309695482,0.021108794957399,0.068307593464851],[-0.0049094930291176,0.012479050084949,0.0076251327991486],[0.030872011557221,0.03738334774971,0.022600321099162]],[[0.12885144352913,0.01296722702682,0.0390440300107],[-0.018344461917877,0.0086862305179238,0.046695351600647],[-0.010908144526184,-0.010514945723116,0.045033525675535]],[[-0.0046856733970344,0.033523250371218,0.041918553411961],[0.01072411891073,0.059162627905607,0.0096454089507461],[-0.034142185002565,0.065406776964664,0.054535716772079]],[[0.031080421060324,0.0077430391684175,0.013233128003776],[-0.13209861516953,0.040715884417295,0.0097683258354664],[-0.066957496106625,-0.033465649932623,-0.044252600520849]],[[0.012927253730595,0.05164585262537,-0.0047695999965072],[0.02129996009171,0.10919748991728,0.029821423813701],[-0.034084964543581,0.026446433737874,-0.0033255070447922]],[[-0.014684257097542,-0.045624561607838,0.056380424648523],[0.0081917913630605,0.056402642279863,0.031830888241529],[-0.026338439434767,0.034053765237331,0.030962470918894]],[[0.0039270836859941,0.12233554571867,-0.044139474630356],[0.018445989117026,-0.0080429185181856,-0.026551650837064],[0.080008208751678,-0.0033391965553164,0.057956043630838]],[[-0.054387971758842,-0.062037784606218,0.032317690551281],[-0.0022601285018027,-0.0076110037043691,0.012908970937133],[-0.0538663379848,0.029941314831376,0.037312120199203]],[[-0.043846141546965,-0.081798128783703,0.074576534330845],[-0.046599008142948,0.045003846287727,0.076525926589966],[-0.016020659357309,-0.036211121827364,-0.072821363806725]],[[0.076918609440327,-0.030881410464644,0.046267159283161],[0.044217210263014,0.036272715777159,0.024352358654141],[-0.022516001015902,0.014347895048559,-0.0049515548162162]],[[-0.095757737755775,-0.0046373433433473,0.021399915218353],[-0.016564374789596,0.031550753861666,-0.039173770695925],[0.012829451821744,0.013883854262531,0.0074263988062739]],[[-0.018627885729074,0.060188893228769,0.067948535084724],[0.03381722420454,-0.025191333144903,0.0014569262275472],[0.041805479675531,-0.0050278380513191,0.026687560603023]],[[-0.05886048078537,0.055862359702587,0.0013904753141105],[0.052894115447998,-0.056894220411777,-0.029506478458643],[0.002276323037222,-0.054364219307899,0.07724279910326]],[[-0.011072256602347,0.10829170048237,0.055871706455946],[0.015803938731551,-0.041748229414225,-0.017861252650619],[0.047755874693394,0.052210867404938,-0.0025079066399485]],[[-0.079897686839104,-0.057759124785662,0.1314412355423],[0.010273749008775,0.095489174127579,-0.019530916586518],[0.039096664637327,-0.015553107485175,-0.017269317060709]],[[-0.0049575204029679,0.029490415006876,0.063075728714466],[0.02187729999423,0.038573164492846,0.0010681218700483],[-0.074969820678234,0.044332858175039,0.068288862705231]],[[-0.0081461286172271,0.021419394761324,-0.0021105716004968],[0.033988904207945,0.038881175220013,0.05937922373414],[-0.042783442884684,-0.03504528477788,0.0098548587411642]],[[0.045707833021879,0.0095378318801522,-0.022581819444895],[0.032599605619907,-0.019739151000977,-0.00091651815455407],[-0.039138935506344,-0.053232077509165,0.035928577184677]],[[0.0071900961920619,0.00036208025994711,-0.012029186822474],[0.043913289904594,0.044607724994421,0.0026170713827014],[-0.020010696724057,0.03059396892786,0.0025956614408642]],[[-0.023397447541356,0.037977419793606,0.043236222118139],[-0.020782368257642,0.043343096971512,-0.011935853399336],[-0.025307221338153,-0.010549218393862,0.020154187455773]],[[0.0325922742486,-0.025304956361651,0.045162532478571],[0.030433773994446,0.0057459007948637,0.011488165706396],[-0.038838323205709,0.011115617118776,0.010888613760471]],[[0.028861589729786,0.002841527108103,0.066933251917362],[0.029195344075561,-0.047818966209888,0.0078210178762674],[0.037952270358801,0.033149342983961,-0.067895352840424]],[[0.00096123211551458,0.01151563692838,-0.033521112054586],[-0.05813043564558,0.0064018256962299,0.05539333820343],[0.054946471005678,-0.0050343205220997,0.13230909407139]],[[-0.013200870715082,0.018108246847987,-0.011020745150745],[0.020463457331061,-0.0014003928517923,0.032404918223619],[-0.018131408840418,0.028556538745761,-0.05379518866539]],[[0.016074793413281,-0.01188032887876,0.0076365410350263],[0.02227570861578,-0.044828169047832,0.059045787900686],[0.048204191029072,0.060170270502567,0.043407499790192]],[[0.068221747875214,0.0014357351465151,0.038430508226156],[-0.021592965349555,-0.0037016042042524,0.002936385339126],[0.016671020537615,0.049495298415422,0.073231652379036]],[[-0.062590561807156,0.033784650266171,0.029511503875256],[-0.023773588240147,-0.019344341009855,-0.075670458376408],[0.03631304949522,0.075089551508427,0.0044570337049663]],[[0.023594211786985,-0.02139138430357,0.0099573042243719],[0.0011082217097282,0.031797222793102,0.020961536094546],[-0.013643346726894,0.030578656122088,-0.0030575678683817]],[[-0.12221869081259,-0.053678333759308,-0.0017963338177651],[0.020153613761067,0.044911362230778,0.021145228296518],[0.044591948390007,-0.068528987467289,-0.0047786356881261]],[[-0.006624155677855,0.013327088207006,-0.0094631351530552],[0.051116187125444,-0.011978861875832,0.011575938202441],[0.02900218218565,-0.0095678390935063,0.064185038208961]],[[-0.065330073237419,0.0687615275383,-0.018154669553041],[-0.011100871488452,0.054499845951796,0.063356421887875],[0.025954384356737,0.059025879949331,-0.059262812137604]],[[0.040057964622974,0.094454653561115,0.048552457243204],[-0.040898308157921,-0.061183013021946,0.0014621120644733],[0.042837884277105,0.13385589420795,0.026199886575341]],[[-0.064524695277214,0.053062118589878,-0.01505630556494],[-0.041394423693419,-0.038418736308813,0.067437246441841],[-0.01440323330462,-0.10999841988087,-0.0099797714501619]],[[-0.039784617722034,-0.012647243216634,-0.040084514766932],[0.10437670350075,0.054559879004955,-0.027370968833566],[0.013003216125071,0.031718347221613,-0.019613100215793]],[[0.10717578977346,0.029376352205873,0.021533865481615],[0.025607021525502,-0.040890354663134,0.066165395081043],[-0.0068908534012735,0.020137852057815,-0.0070344698615372]],[[0.076721891760826,0.011096595786512,-0.03840459138155],[-0.04476322978735,-0.08550263941288,-0.046025972813368],[-0.047840211540461,-0.0072425408288836,0.00039159247535281]],[[-0.039586152881384,-0.054320979863405,0.027348432689905],[0.026978900656104,-0.0051680323667824,0.024532256647944],[0.029460409656167,0.059125863015652,0.023673316463828]],[[0.02736696228385,-0.036482766270638,0.011456374078989],[0.10599078983068,0.076339535415173,-0.064816512167454],[0.062358759343624,0.021431546658278,0.01973713003099]],[[-0.0024753084871918,0.0429920963943,-0.0031949130352587],[-0.036897651851177,0.062018778175116,0.026405278593302],[0.0026222709566355,0.024731984362006,-0.045591771602631]],[[0.076554194092751,-0.046598538756371,-0.020315518602729],[0.042665880173445,0.14782343804836,-0.043077278882265],[0.043069541454315,0.0092975441366434,-0.061384208500385]],[[0.020999137312174,0.056894868612289,-0.040798146277666],[0.022376408800483,-0.04078896343708,0.019668696448207],[-0.025826515629888,-0.063742756843567,0.049760021269321]],[[0.10893969237804,0.10482782125473,0.033391539007425],[-0.03528980910778,-0.025796180590987,0.007948599755764],[-0.020974727347493,0.11985551565886,0.059965584427118]],[[0.01930858194828,0.081799380481243,0.00077572144800797],[0.025610737502575,-0.042973961681128,-0.026177821680903],[-0.014547606930137,0.012195305898786,-0.039653636515141]],[[0.025074668228626,0.024394186213613,-0.022018995136023],[-0.0054847025312483,-0.029316443949938,-0.01069235149771],[-0.024303952232003,0.049858540296555,6.2794279074296e-05]],[[-0.058213282376528,-0.074528455734253,-0.042449083179235],[-0.087068349123001,0.079372704029083,0.089086897671223],[-0.012629576958716,-0.04365548864007,0.048964206129313]],[[-0.087144158780575,0.060171198099852,0.0036879293620586],[0.0089968936517835,0.067251048982143,0.012499819509685],[0.021856578066945,-0.053926851600409,0.063934400677681]],[[-0.046199701726437,0.056744158267975,-0.02622994594276],[0.036606378853321,0.016536695882678,0.0096660768613219],[0.0056482246145606,0.0056462250649929,0.016210086643696]],[[-0.034213420003653,0.020104341208935,-0.1016378775239],[-0.041550140827894,-0.056874517351389,0.058332141488791],[-0.016072785481811,0.028951726853848,0.028196776285768]],[[-0.045857280492783,0.023473121225834,0.0085246926173568],[0.08075712621212,0.080528028309345,0.030427698045969],[0.0096555212512612,0.0091985706239939,-0.018251178786159]],[[-0.037334877997637,0.031960103660822,-0.072769016027451],[-0.011329653672874,-0.0073560327291489,-0.036070790141821],[8.2740683865268e-05,0.028432609513402,0.0061405235901475]],[[0.039776246994734,-0.011555914767087,-0.083325140178204],[0.026909481734037,-0.020886177197099,-0.012263550423086],[-0.013197347521782,-0.092777661979198,-0.053419817239046]],[[0.039449617266655,0.055734757333994,0.015837535262108],[-0.027615727856755,0.007681502494961,-0.061513435095549],[-0.022085934877396,0.0019020923646167,0.010768007487059]],[[-0.059643782675266,-0.096452042460442,0.014009260572493],[-0.060590412467718,0.0050375708378851,-0.052160065621138],[0.00048882176633924,0.0050278040580451,-0.00093228288460523]],[[-0.07256893068552,-0.0040733199566603,0.03248568624258],[-0.053983382880688,-0.01960126683116,0.052440315485001],[-0.03102208673954,0.037156939506531,-0.047113265842199]],[[0.024443434551358,-0.028008105233312,0.0072218617424369],[0.0031019554007798,0.032764535397291,0.046207275241613],[0.067734956741333,-0.011143512092531,0.037493154406548]],[[-0.015687113627791,-0.064139381051064,-0.082950182259083],[-0.06147725880146,-0.018983796238899,0.045336227864027],[0.044310841709375,0.043872140347958,-0.033480457961559]],[[0.036832232028246,0.0035952145699412,0.052691947668791],[-0.0080861886963248,0.0038221725262702,-0.0043013859540224],[-0.034065056592226,-0.042868535965681,0.08104569464922]],[[-0.0083969896659255,-0.026750667020679,-0.039755403995514],[0.011365316808224,0.005170991178602,-0.0097392117604613],[-0.014698068611324,0.058193009346724,0.049796402454376]],[[0.080286845564842,0.0030081479344517,-0.012229931540787],[-0.047376576811075,0.0015614378498867,0.060191299766302],[0.026085315272212,0.0021587449591607,0.018643531948328]],[[0.019982656463981,0.03378001973033,0.01138145942241],[-0.010627954266965,-0.083864346146584,-0.037959296256304],[-0.01942297630012,0.030295472592115,-0.039959441870451]]],[[[-0.031555201858282,0.0022287981119007,-0.056668136268854],[0.010613762773573,0.041680749505758,0.015518147498369],[0.018968505784869,-0.0031736649107188,-0.039799422025681]],[[-0.00043155910680071,-0.076609425246716,-0.04344030469656],[0.016121879220009,-0.035141799598932,-0.13533255457878],[-0.011471967212856,-0.069610446691513,0.035253994166851]],[[-0.0017607131740078,-0.0078465221449733,-0.018922168761492],[-0.0091306678950787,0.010684227570891,-0.03487491607666],[-0.07891034334898,-0.045769263058901,0.066114284098148]],[[0.017876885831356,0.016137192025781,0.017208103090525],[0.0030120124574751,0.085689432919025,0.02670482173562],[0.080526120960712,0.045353755354881,0.050964880734682]],[[-0.063269019126892,-0.01712879166007,-0.046914838254452],[0.029873019084334,-0.0039420002140105,0.06305980682373],[-0.11504770815372,-0.041873149573803,-0.010461420752108]],[[0.070396140217781,0.068668819963932,-0.056246947497129],[0.036982789635658,-0.0016425084322691,0.0014254635898396],[0.093728184700012,0.0042512705549598,-0.0019724334124476]],[[0.024517178535461,-0.015614670701325,-0.075135119259357],[-0.026086192578077,0.037593431770802,-0.037109203636646],[0.010644202120602,0.020426439121366,0.063716188073158]],[[-0.050704546272755,0.042651768773794,0.06761310249567],[0.030478408560157,-0.0043795425444841,0.073753200471401],[-0.0089883664622903,0.039916168898344,0.10563073307276]],[[-0.04245413467288,0.0046366020105779,0.068163901567459],[0.011767306365073,-0.050294313579798,-0.075473479926586],[0.094151876866817,0.066663429141045,-0.0066317087039351]],[[0.075106173753738,-0.078334778547287,0.00618637772277],[0.020680543035269,-0.024272346869111,0.082460232079029],[0.00037560245255008,-0.043617222458124,0.025277201086283]],[[-0.063386492431164,0.014434918761253,-0.016034759581089],[-0.019515659660101,-0.048686731606722,-0.0090556787326932],[0.04966451972723,0.012756945565343,0.008884359151125]],[[-0.043656904250383,-0.014262360520661,0.03755821287632],[0.024302458390594,-0.070285685360432,-0.083366051316261],[0.062585681676865,0.051654014736414,0.03018463589251]],[[0.0081977471709251,0.0050956360064447,0.11403715610504],[0.03752476349473,0.046651873737574,0.038196299225092],[0.043645173311234,0.12329811602831,0.041369292885065]],[[0.012386037968099,-0.056735672056675,0.025387847796082],[-0.047574538737535,-0.085882373154163,0.012983154505491],[-0.05035312473774,0.016527742147446,0.03536407276988]],[[0.011806628666818,-0.031284935772419,-0.084992505609989],[-0.0079114232212305,0.021241057664156,-0.074543558061123],[0.053715549409389,-0.015051779337227,-0.037637632340193]],[[-0.026981741189957,0.025899186730385,-0.014096933417022],[-0.048526953905821,0.02648039907217,-0.018166517838836],[0.052460331469774,0.10720447450876,-0.065107330679893]],[[0.018778035417199,-0.019881587475538,0.052162740379572],[0.044447954744101,0.016780953854322,-0.01213772315532],[0.029778432101011,-0.0027860507834703,0.04069134965539]],[[-0.023051513358951,-0.079572379589081,0.011513779871166],[-0.027181969955564,-0.1345029771328,-0.084486827254295],[0.0050411564297974,0.02569543197751,0.010261921212077]],[[0.02547824382782,0.015037751756608,0.069194950163364],[0.074877992272377,0.0016624015988782,-0.012596611864865],[0.093315742909908,-0.0017408956773579,-0.040249545127153]],[[-0.0081768417730927,0.043813604861498,-0.033336911350489],[0.035258233547211,0.064770102500916,-0.046824537217617],[-0.01585865393281,-0.05679102614522,-0.072438769042492]],[[0.0051598660647869,-0.024510098621249,-0.056617014110088],[-0.023956298828125,-0.022364761680365,-0.04766508191824],[0.024203725159168,-0.03194385766983,-0.037158593535423]],[[0.037784747779369,0.0063570025376976,0.038243103772402],[0.062805436551571,0.019114268943667,-0.018209490925074],[-0.0059495461173356,-0.035902705043554,-0.0057628815993667]],[[0.0056025320664048,0.073148861527443,-0.039718419313431],[-0.080717831850052,0.019820259884,-0.048544451594353],[0.011028598062694,-0.016527533531189,0.082118287682533]],[[-0.0084238108247519,0.023826675489545,-0.019018054008484],[0.0058268196880817,-0.0047180503606796,-0.028526080772281],[0.051903456449509,-0.043103199452162,-0.036266628652811]],[[0.010981660336256,-0.026298252865672,0.060433629900217],[0.036276999861002,-0.019418442621827,-0.082832783460617],[0.0079639097675681,-0.021160254254937,-0.11267459392548]],[[0.015660202130675,-0.0083008967339993,0.062273189425468],[0.0027361519169062,0.083528988063335,-0.0063411421142519],[-0.061958879232407,-0.022498099133372,-0.016201235353947]],[[-0.019527485594153,0.10029246658087,0.030507303774357],[0.081763722002506,0.0020075398497283,-0.045126520097256],[-0.01322081964463,0.081644169986248,-0.055114254355431]],[[0.039485074579716,0.0092629445716739,0.059542994946241],[0.051719486713409,0.025165807455778,0.041588723659515],[0.030357798561454,-0.021774163469672,0.041431926190853]],[[0.0023179543204606,0.01871988736093,-0.041612528264523],[0.085787229239941,-0.030732039362192,-0.092415668070316],[-0.012035973370075,0.029434248805046,-0.010558859445155]],[[0.043253380805254,-0.027171913534403,0.014914806932211],[-0.0045420709066093,0.023491824045777,0.017844932153821],[0.014157861471176,-0.014242379926145,0.050078835338354]],[[0.042297210544348,0.046355944126844,0.0041105258278549],[0.013917345553637,-0.01660292968154,0.065224833786488],[0.060222558677197,0.04017486050725,0.01597355119884]],[[0.039787415415049,0.016175637021661,0.047533132135868],[0.0025565498508513,0.013444001786411,-0.013334681279957],[-0.0036895896773785,0.047170646488667,-0.0045147160999477]],[[0.029515080153942,0.081554129719734,-0.023481389507651],[0.16508983075619,0.02970065549016,-0.024057047441602],[0.03010075353086,0.091998353600502,0.0031813969835639]],[[0.051914785057306,0.049253057688475,0.078990556299686],[0.00181989884004,-0.063420116901398,0.056946285068989],[-0.02142247185111,0.023030206561089,0.012678362429142]],[[-0.0037244693376124,-0.020111372694373,-0.062509588897228],[0.0059187770821154,-0.061846110969782,-0.051444448530674],[-0.0068253697827458,-0.084908947348595,-0.10821723937988]],[[-0.084996372461319,0.023995570838451,-0.043391026556492],[0.027739496901631,-0.078589126467705,-0.020324060693383],[0.069462195038795,0.044125836342573,0.036275759339333]],[[-0.043432373553514,0.011697304435074,-0.018235625699162],[0.035049505531788,-0.064131543040276,-0.03750778362155],[-0.016527626663446,-0.03909420594573,0.070333480834961]],[[0.060479998588562,-0.011494375765324,0.026496808975935],[0.10576338320971,-0.0048245745711029,0.016565991565585],[-0.033671911805868,-0.050838448107243,-0.010754941962659]],[[-0.060986313968897,-0.036271002143621,0.050908457487822],[-0.17569847404957,-0.10310011357069,-0.032622985541821],[-0.020549917593598,0.059499248862267,0.066436626017094]],[[0.01959484629333,0.0075980518013239,-0.0056156036444008],[-0.007350686006248,0.081675797700882,0.0090455301105976],[0.0460559502244,0.066971734166145,-0.041550435125828]],[[0.026204215362668,-0.086632154881954,-0.045400775969028],[0.0052085616625845,-0.017731186002493,0.0015706672566012],[0.029838202521205,-0.036269724369049,0.0070251896977425]],[[0.084094017744064,0.069379091262817,-0.0045033902861178],[0.066498942673206,0.13336339592934,0.010570691898465],[0.083627574145794,0.024666607379913,0.010695933364332]],[[0.04650754109025,0.01484801620245,0.011851730756462],[0.10129168629646,0.0048822690732777,-0.0036627964582294],[0.088046289980412,0.088725462555885,-0.043438103049994]],[[-0.07510669529438,0.038924936205149,-0.046315636485815],[-0.042683213949203,0.021837016567588,0.051472526043653],[-0.036016695201397,0.00468321563676,0.052850805222988]],[[0.016260031610727,-0.0032595223747194,0.044173520058393],[0.04503171145916,0.05444810539484,0.017364725470543],[-0.020959870889783,0.018166448920965,-0.094256013631821]],[[0.061480101197958,0.010851870290935,-0.0026346184313297],[0.068771652877331,0.090554878115654,0.023058172315359],[-0.040400564670563,-0.051760479807854,0.02717337012291]],[[0.0041742334142327,-0.022155791521072,0.0059722284786403],[-0.053354602307081,-0.056876212358475,-0.10282047092915],[0.0080406339839101,-0.013052089139819,0.012561107054353]],[[-0.027465496212244,-0.0080358842387795,-0.0042080502025783],[-0.031825494021177,0.024949572980404,0.039503030478954],[-0.020716762170196,-0.004485952667892,-0.030325530096889]],[[-0.096001215279102,-0.091775149106979,-0.02590037882328],[-0.043996445834637,-0.082269683480263,0.028619684278965],[-0.081565625965595,0.022537907585502,-0.014274073764682]],[[0.035983551293612,-0.0049723479896784,-0.016048079356551],[-0.026553347706795,-0.0160181671381,0.052964370697737],[-0.026878692209721,0.0029658337589353,-0.037120528519154]],[[0.037321392446756,-0.011496411636472,-0.058572195470333],[-0.0066886655986309,0.040849175304174,-0.0059279003180563],[0.016463864594698,0.02949277125299,0.096505746245384]],[[-0.0086754690855742,-0.040742978453636,-0.012118982151151],[-0.081526435911655,0.056233711540699,-0.011145834811032],[0.062778957188129,-0.036589041352272,0.058063052594662]],[[0.061586927622557,0.028305759653449,0.026662562042475],[0.022916479036212,0.0047337976284325,0.081327334046364],[0.074619933962822,0.024010898545384,-0.053217470645905]],[[0.0058588921092451,0.052820447832346,0.081378743052483],[0.065135471522808,0.084279976785183,-0.010994117707014],[0.076478280127048,-0.095107421278954,-0.014928622171283]],[[-0.013008982874453,0.080990262329578,0.11120003461838],[-0.094983153045177,-0.017764596268535,0.069245487451553],[-0.0016228886088356,0.042734324932098,-0.050162047147751]],[[-0.066830188035965,-0.0025033915881068,-0.040462326258421],[-0.13281871378422,-0.055692330002785,-0.015169251710176],[0.016125094145536,0.050375036895275,-0.011681110598147]],[[0.025402490049601,0.013819478452206,0.025080574676394],[0.051618665456772,0.092424437403679,0.099770270287991],[-0.00045966342440806,0.00035906935227104,0.071652717888355]],[[0.036312069743872,0.08021903783083,0.027683421969414],[0.099249511957169,-0.041497122496367,-0.046272289007902],[0.022286312654614,-0.054132506251335,-0.018396139144897]],[[-0.0010194578208029,0.054850313812494,0.065425887703896],[0.036220699548721,-0.028803519904613,0.051318734884262],[0.012265258468688,0.097052522003651,0.068910695612431]],[[-0.014910630881786,-0.0087370276451111,0.075909718871117],[0.011028515174985,-0.027607725933194,-0.020019875839353],[0.082596227526665,0.0031792623922229,0.00083701265975833]],[[0.028129292652011,0.036516956984997,0.027289653196931],[-0.024611255154014,-0.011867926456034,0.018226616084576],[0.086215123534203,0.016977727413177,0.027996709570289]],[[0.0036656258162111,-0.011169707402587,0.01625682041049],[-0.018184060230851,-0.072837978601456,0.023705817759037],[-0.042272798717022,-0.0062315161339939,-0.023935157805681]],[[0.025098888203502,-0.014119799248874,-0.0077732321806252],[0.07555440813303,-0.020588681101799,0.068458594381809],[0.09301245957613,-0.039522171020508,0.066863611340523]],[[0.0025833079125732,0.014812368899584,-0.024353876709938],[0.097161427140236,-0.026856571435928,0.025984497740865],[-0.050728421658278,0.068118177354336,0.015974348410964]],[[-0.049624789506197,-0.0019948771223426,-0.041935931891203],[0.041768811643124,-0.028414243832231,0.078410178422928],[-0.069933645427227,-0.080504775047302,-0.0077730040065944]],[[0.052111115306616,0.067764960229397,0.018523612990975],[0.012921743094921,-0.0034501869231462,-0.0040966211818159],[0.013302338309586,0.053003698587418,-0.0064530251547694]],[[-0.10160148888826,0.054198928177357,0.054958716034889],[0.08960884809494,0.01526094507426,0.02108365483582],[0.053872492164373,0.050258509814739,-0.028828501701355]],[[-0.017696443945169,0.00031283049611375,0.042125452309847],[0.11343927681446,0.079137794673443,-0.02224381454289],[0.010632397606969,-0.018807558342814,0.0094417817890644]],[[0.055646553635597,-0.003013092558831,-0.038166165351868],[0.031843174248934,0.036991465836763,-0.017224699258804],[0.11528366804123,-0.028359267860651,-0.010284749791026]],[[-0.0028519099578261,-0.01137022767216,0.042749710381031],[0.081083610653877,-0.018826398998499,-0.0033579189330339],[0.056934185326099,0.043803613632917,-0.021142370998859]],[[0.083794631063938,0.099426083266735,0.13061237335205],[0.02452801913023,0.05531357601285,0.045004598796368],[0.018585849553347,0.01253277156502,0.16634561121464]],[[-0.078038044273853,0.05481805279851,-0.035968668758869],[-0.015833454206586,-0.061589680612087,0.049475692212582],[-0.0064296717755497,0.047146342694759,0.17538997530937]],[[-0.044965341687202,-0.012739541940391,-0.048956252634525],[-0.014649159274995,0.0057761645875871,0.026907717809081],[-0.047094851732254,0.020497776567936,0.021918112412095]],[[0.0015264020767063,-0.0097368396818638,0.027018075808883],[-0.022808104753494,0.0098786745220423,0.091931544244289],[-0.043423682451248,0.059185232967138,0.086426265537739]],[[-0.035610672086477,-0.010042522102594,0.055274397134781],[-0.0098988767713308,0.023225864395499,0.037248957902193],[-0.04364326223731,0.014125540852547,-0.0064391172491014]],[[-0.0070712631568313,-0.0049505634233356,0.029965274035931],[0.0073282015509903,-0.012787828221917,0.027007929980755],[-0.010145124979317,-0.063458554446697,-0.053240064531565]],[[-0.005785618443042,-0.017371455207467,0.061017021536827],[0.020032819360495,0.0071998904459178,0.048890046775341],[-0.021030543372035,0.033396605402231,0.030393768101931]],[[0.026789261028171,-0.0024504153989255,-0.015326971188188],[-0.03137207403779,0.036242730915546,0.051197655498981],[-0.0029882686212659,0.12202358990908,0.084516443312168]],[[-0.0068354248069227,-0.041849069297314,0.019036985933781],[-0.043728020042181,-0.01799526438117,0.059702422469854],[0.011731928214431,0.05167094618082,-0.063545100390911]],[[-0.039883587509394,0.0012838619295508,-0.064088575541973],[0.01085024420172,0.082096442580223,0.10927425324917],[-0.059977106750011,-0.051200088113546,0.052760779857635]],[[0.088466882705688,-0.062001820653677,-0.037813920527697],[-0.018999060615897,0.0014194152317941,0.038735017180443],[0.029020067304373,-0.048160888254642,-0.0092729646712542]],[[0.063764676451683,-0.02514386177063,0.0056159142404795],[0.064019076526165,-0.011248613707721,-0.014978658407927],[-0.0042512007057667,0.054292503744364,0.052857089787722]],[[0.072655290365219,0.013726157136261,0.069365113973618],[0.015194041654468,0.022163037210703,0.060720294713974],[0.020705813542008,0.012634485028684,0.028221141546965]],[[0.047568384557962,-0.036245789378881,-0.029981365427375],[0.017892025411129,-0.035887379199266,0.041274610906839],[0.071088150143623,-0.039365764707327,-0.0077566676773131]],[[-0.01049077231437,0.073052540421486,0.096636041998863],[-0.051708772778511,-0.043199151754379,0.0049266535788774],[0.013424853794277,-0.073182247579098,0.012315606698394]],[[0.11736635863781,0.064526990056038,0.055860046297312],[-0.041906889528036,-0.0081705329939723,0.035484325140715],[-0.016313806176186,-0.039571609348059,-0.067311279475689]],[[0.0083109959959984,-0.042945899069309,0.053080596029758],[0.069120936095715,0.0099401269108057,0.065740704536438],[0.046380612999201,-0.031844031065702,-0.0050457357428968]],[[-0.016762513667345,-0.023945260792971,-0.016168454661965],[-0.053236033767462,-0.015075392089784,-0.0051402258686721],[-0.030247647315264,0.021667843684554,0.082396298646927]],[[0.01325343362987,-0.044596072286367,-0.032630566507578],[0.042919490486383,0.057901617139578,0.013974910601974],[0.061092339456081,0.04405764862895,-0.0068981721997261]],[[-0.025184113532305,-0.10493513941765,-0.037337481975555],[0.06457681208849,-0.02042543143034,-0.049001730978489],[-0.011213390156627,-0.070998847484589,-0.021335199475288]],[[0.084212854504585,-0.012646798975766,0.052513211965561],[0.049904227256775,0.0081297094002366,-0.032246563583612],[0.046378035098314,0.05979847162962,0.029969779774547]],[[-0.097091682255268,0.021590014919639,0.043401401489973],[-0.0094376429915428,-0.046552516520023,-0.081431053578854],[-0.01466606464237,0.022669227793813,0.023638293147087]],[[-0.04953870922327,-0.027388034388423,0.046077325940132],[0.019535332918167,0.068454511463642,0.017557628452778],[-0.0050579318776727,-0.062101189047098,-0.026129050180316]],[[-0.0010833559790626,-0.032516118139029,0.069578565657139],[0.1045668721199,0.035955987870693,0.048916168510914],[0.0024919472634792,-0.052851103246212,0.13057416677475]],[[-0.019172001630068,-0.052260648459196,-0.039248000830412],[-0.026057595387101,-0.065110951662064,-0.0029377981554717],[-0.10063294321299,-0.066862858831882,0.006127692759037]],[[-0.033230058848858,0.024626992642879,0.030837344005704],[0.14619901776314,0.020754940807819,0.04495008289814],[0.015581003390253,0.0048775225877762,-0.02909174002707]],[[0.013413678854704,-0.040450930595398,-0.053974699229002],[0.067902483046055,-0.063060902059078,0.06231651827693],[0.11061026901007,-0.0046043745242059,-0.014106121845543]],[[0.054049104452133,0.048396535217762,0.16290038824081],[0.0053851106204093,0.11144460737705,0.071761980652809],[0.094814717769623,-0.0054530072957277,-0.048680245876312]],[[0.047409877181053,0.024203475564718,-0.0088135860860348],[0.078225709497929,-0.11391197890043,-0.043529622256756],[0.044756893068552,0.050504539161921,-0.054297104477882]],[[0.072755351662636,0.049191635102034,-0.032741084694862],[0.0093112466856837,0.06865119189024,0.0061540217138827],[0.10242529213428,0.034379500895739,-0.0077210455201566]],[[-0.048947088420391,-0.11069007217884,-0.013916905038059],[-0.036812674254179,-0.0063403020612895,-0.06253457069397],[-0.016504107043147,-0.0039272080175579,0.02377962321043]],[[0.11287953704596,-0.030642168596387,0.0028291358612478],[0.034500010311604,-0.0079845506697893,-0.039707213640213],[0.083758004009724,-0.045408401638269,0.0060775731690228]],[[-0.0028783611487597,0.045165747404099,-0.033219669014215],[-0.072342284023762,-0.030074220150709,-0.054834008216858],[-0.0025478014722466,0.11029770225286,0.059915084391832]],[[0.031202167272568,0.041271343827248,-0.069305777549744],[-0.069217406213284,-0.043004292994738,-0.080622971057892],[-0.082248948514462,-0.011084307916462,0.082758061587811]],[[0.013951091095805,0.017736585810781,0.054246459156275],[0.042636346071959,0.02649499475956,-0.043909687548876],[-0.075241975486279,0.088271051645279,-0.0092883529141545]],[[0.061439640820026,0.014444114640355,-0.031571708619595],[0.084186054766178,-0.050896864384413,-0.0055391807109118],[0.038243435323238,0.031819172203541,0.008939815685153]],[[0.035712126642466,0.022410832345486,0.032157812267542],[0.0054811886511743,0.059661846607924,0.034074176102877],[-0.048292271792889,0.0244663041085,-0.010581178590655]],[[0.016816115006804,-0.0021332702599466,-0.02473965100944],[-0.0017600927967578,-0.04797400161624,0.05677642673254],[-0.035936150699854,-0.030310040339828,0.0023139866534621]],[[0.018294921144843,-0.010561413131654,0.008593344129622],[-0.019224701449275,0.017891593277454,-0.062693320214748],[-0.077733278274536,-0.01086685154587,-0.084712229669094]],[[-0.057875324040651,-0.0015809291508049,0.009217981249094],[-0.043373540043831,0.053649686276913,0.03378438949585],[-0.0060658301226795,-0.011926226317883,0.061210181564093]],[[0.048656482249498,-0.030577963218093,0.024481019005179],[0.0059592719189823,0.065779335796833,-0.04698633775115],[0.030125400051475,-0.038869395852089,-0.066241681575775]],[[-0.04441737383604,-0.071033746004105,-0.041455898433924],[-0.027294639497995,-0.071975849568844,-0.057229589670897],[-0.047301318496466,-0.032418429851532,-0.022182118147612]],[[0.029538867995143,0.13741706311703,0.059725478291512],[-0.056323859840631,-0.010283601470292,0.077592492103577],[-0.030091399326921,0.014105690643191,-0.0012859794078395]],[[-0.015306007117033,0.012051365338266,-0.0023311679251492],[0.062274124473333,0.0011461725225672,0.040241219103336],[-0.02987302094698,-0.024461342021823,-0.013534956611693]],[[0.0011223966721445,-0.078992404043674,-0.07169733196497],[-0.019637800753117,0.011097794398665,-0.045035999268293],[-0.014557482674718,-0.10437408089638,-0.047173473984003]],[[0.058615211397409,0.022475248202682,-0.011115277186036],[-0.057181853801012,-0.0043218964710832,-0.11018753051758],[-0.072101593017578,-0.04023664444685,-0.011281114071608]],[[-0.047600317746401,-0.02826602011919,-0.0046377354301512],[0.056585859507322,-0.004182371776551,0.020681554451585],[0.083506904542446,0.046092852950096,0.059050980955362]],[[0.0017852851888165,-0.057934623211622,-0.011285608634353],[0.035915233194828,-0.045964580029249,0.01097203977406],[0.0030228008981794,-0.069516591727734,-0.021158741787076]],[[0.0026647800114006,-0.056194491684437,-0.006911201402545],[-0.0077326176688075,0.013154038228095,-0.066190913319588],[-0.0082247890532017,-0.034164849668741,-0.01529523357749]],[[0.012759015895426,0.10804460942745,0.10900912433863],[0.14122992753983,0.0095746740698814,0.041841942816973],[0.0045341784134507,0.071041360497475,0.10507066547871]],[[-0.019267553463578,-0.066408082842827,0.0023615134414285],[-0.021404774859548,-0.0041561648249626,-0.00020742871856783],[-0.015231758356094,-0.053124777972698,0.022039450705051]],[[0.0078937215730548,-0.043179996311665,-0.0063541079871356],[-0.027271885424852,-0.03905163705349,-0.021756112575531],[-0.044662460684776,-0.055520687252283,0.012644945643842]],[[-0.068672366440296,0.0046431221999228,0.057597361505032],[0.088957265019417,-0.068114288151264,0.024146994575858],[0.0018202603096142,0.063998863101006,0.080263458192348]],[[0.055093441158533,0.020095970481634,0.10434164851904],[-0.029445979744196,0.086007758975029,0.043685186654329],[-0.021390974521637,-0.053270813077688,0.028375035151839]],[[0.0095021147280931,0.080445393919945,0.074813485145569],[0.051355559378862,-0.028132680803537,-0.00015968913794495],[0.056710563600063,0.014039778150618,0.066918209195137]],[[-0.018236462026834,-0.058437578380108,-0.062802687287331],[0.020770378410816,-0.040259193629026,0.030764952301979],[0.031670290976763,-0.025507291778922,-0.038199029862881]],[[0.025861378759146,0.027138888835907,0.022688567638397],[-0.010197636671364,0.05855867266655,0.067380644381046],[0.22017249464989,-0.075078934431076,0.028969652950764]],[[-0.07218986749649,0.019492894411087,-0.0043086218647659],[0.012356200255454,-0.01508807297796,0.0052967122755945],[-0.016970269382,0.013276962563396,0.043344333767891]]],[[[-0.057160973548889,-0.0051648914813995,0.016913793981075],[-0.046353492885828,-0.034841816872358,-0.10320372879505],[-0.13309320807457,-0.031903691589832,0.030679056420922]],[[-0.012170907109976,0.11975168436766,0.044570792466402],[0.077679850161076,-0.030470637604594,-0.059239119291306],[0.010167740285397,-0.10306491702795,-0.14917640388012]],[[-0.023535307496786,0.05025515332818,-0.0624690502882],[-0.033938232809305,0.020550733432174,-0.018902387470007],[0.0066446466371417,0.13350991904736,0.048006016761065]],[[0.068487390875816,0.099909916520119,0.020765725523233],[0.29819995164871,0.0053886999376118,0.17650218307972],[0.0074219759553671,-0.048686124384403,0.094875514507294]],[[0.06075681000948,0.026466907933354,-0.052108082920313],[-0.081410050392151,0.051342934370041,0.057682536542416],[-0.033759605139494,-0.091579727828503,0.071108967065811]],[[0.040481649339199,0.028255941346288,0.057210266590118],[0.030786994844675,0.041809298098087,0.13102295994759],[0.035831987857819,-0.010217666625977,0.10666365921497]],[[-0.015406139194965,0.059886809438467,0.055465642362833],[-0.028836326673627,-0.021908706054091,-0.067578412592411],[0.015280661173165,-0.046423994004726,0.045794758945704]],[[-0.092287436127663,-0.011685716919601,-0.083597056567669],[-0.0099947340786457,-0.0033242604695261,0.020830299705267],[0.10138408094645,-0.032342180609703,0.037540785968304]],[[0.042561504989862,0.038965214043856,0.03908509016037],[0.047564953565598,0.0055535528808832,-0.051605936139822],[0.069579049944878,0.11374363303185,0.060190852731466]],[[-0.022079249843955,0.04180259257555,-0.04965702444315],[-0.065928928554058,0.025515452027321,-0.066203959286213],[0.0083477552980185,-0.0066894455812871,-0.066604159772396]],[[-0.062590509653091,-0.15787070989609,-0.0054097287356853],[-0.0014584485907108,-0.012238590978086,0.011603579856455],[-0.096759989857674,0.038019731640816,-0.066263355314732]],[[0.006851518061012,0.028026780113578,0.1021432057023],[-0.042756851762533,-0.17426787316799,-0.034274000674486],[-0.091668084263802,0.034229882061481,-0.032583974301815]],[[0.13336256146431,0.041255079209805,-0.03700016066432],[0.20458097755909,0.11057934165001,0.12003269046545],[0.054178062826395,0.14202357828617,0.119070969522]],[[0.021111454814672,0.0099937077611685,-0.049218278378248],[0.055988535284996,-0.023877933621407,0.0031554645393044],[0.029645852744579,0.0055055394768715,-0.015818309038877]],[[0.16482397913933,0.095218479633331,0.15094155073166],[0.070384845137596,0.057127337902784,0.060230772942305],[-0.012372069060802,0.072304151952267,-0.03453154489398]],[[0.08593612164259,-0.025564860552549,-0.067098014056683],[0.058841120451689,-0.09318919479847,0.061479281634092],[0.087264090776443,-0.0018053852254525,0.11474780738354]],[[-0.033582184463739,-0.046555463224649,-0.054839428514242],[0.011795195750892,0.031951986253262,0.0016792045207694],[-0.0093094073235989,0.052311636507511,-0.056731276214123]],[[0.045391872525215,0.022486234083772,-0.011037779971957],[-0.027210673317313,0.058930154889822,-0.021800339221954],[-0.10030239075422,-0.047311518341303,-0.0079376893118024]],[[0.003166685346514,0.026521349325776,0.076400838792324],[-0.079622529447079,-0.17715242505074,-0.0071164006367326],[0.098358049988747,0.09115556627512,-0.040152866393328]],[[-0.0041473675519228,-0.057735823094845,-0.096877858042717],[-0.018757794052362,0.013651964254677,-0.017057817429304],[0.084588035941124,0.027476605027914,-0.037301424890757]],[[-0.073778212070465,0.073725134134293,-0.0088574700057507],[0.044505693018436,-0.018992254510522,0.16542913019657],[0.1079760491848,0.11325693130493,-0.01716317795217]],[[0.069403752684593,0.002611244795844,-0.0057262782938778],[-0.10692519694567,-0.00071374245453626,-0.0077364630997181],[-0.056113131344318,0.076125293970108,-0.0040722247213125]],[[0.027931870892644,-0.021318219602108,0.096797369420528],[-0.020942831411958,-0.020363358780742,0.003747719572857],[-0.03790045902133,-0.050187569111586,0.011286465451121]],[[0.015632452443242,0.025895282626152,0.028884572908282],[0.050222642719746,0.035476587712765,0.060382761061192],[0.01127094309777,0.059747692197561,0.0097169131040573]],[[-0.18928551673889,0.02647421695292,-0.041230041533709],[0.029428580775857,-0.092759624123573,-0.072620868682861],[0.048262782394886,-0.016116896644235,0.027666963636875]],[[0.046460967510939,0.088922448456287,0.05586114898324],[0.079075329005718,0.0070361527614295,0.052334848791361],[0.076317250728607,0.031530946493149,-0.011455773375928]],[[0.096083804965019,0.16133935749531,0.093350984156132],[0.040720973163843,0.10149709135294,0.10275228321552],[0.01183502189815,0.07940237224102,0.10071825236082]],[[-0.13709585368633,0.0049605667591095,0.23380084335804],[-0.18993133306503,0.0053105093538761,-0.12266682833433],[0.0021215202286839,-0.18689616024494,-0.17248344421387]],[[0.023102851584554,0.043138422071934,0.034591298550367],[0.015290904790163,-0.040528044104576,-0.067851074039936],[0.025419509038329,-0.022884402424097,-0.057979501783848]],[[0.035797577351332,0.095693819224834,0.099298164248466],[-0.010101806372404,0.11148478835821,-0.037369001656771],[0.13066194951534,-0.15951380133629,0.034415867179632]],[[0.03720586001873,0.018276588991284,-0.00078734080307186],[-0.026876043528318,-0.15955071151257,-0.084444649517536],[-0.088466487824917,-0.037292651832104,0.024994257837534]],[[0.033703904598951,-0.033198073506355,-0.040240909904242],[0.020601304247975,0.096663936972618,-0.020965667441487],[-0.029045691713691,0.12862692773342,-0.024393949657679]],[[-0.10423970967531,0.081513531506062,0.058485936373472],[-0.027582231909037,0.050517585128546,0.0024324269033968],[0.086185440421104,0.044150471687317,-0.0042852209880948]],[[0.13239026069641,0.062317594885826,0.045796822756529],[0.03732106089592,-0.074399411678314,-0.030161157250404],[0.02204655110836,-0.03507649153471,0.06358341127634]],[[0.019249144941568,0.014884816482663,-0.020588681101799],[0.019716018810868,0.059431690722704,0.0085191978141665],[-0.075475379824638,-0.0030000433325768,0.033474635332823]],[[-0.1173977330327,0.012779785320163,-0.018912663683295],[0.036458916962147,-0.00087408133549616,0.10952538251877],[0.033797305077314,-0.068735264241695,0.11053789407015]],[[-0.18776558339596,-0.010439376346767,-0.036348272114992],[-0.01430341321975,-0.013459364883602,0.023091463372111],[0.13355101644993,0.049153160303831,-0.052504662424326]],[[-0.092115700244904,-0.075194239616394,0.059970665723085],[0.06828498840332,-0.050164900720119,-0.05786619335413],[0.11943797767162,0.059272676706314,-0.07145644724369]],[[0.04246537014842,0.020259307697415,-0.013038526289165],[-0.026935061439872,0.0030158222652972,-0.097334966063499],[0.07040686160326,-0.089418776333332,-0.065077066421509]],[[-0.061086315661669,0.046335510909557,-0.061633720993996],[0.086902037262917,-0.02918304502964,0.05232060700655],[0.065967381000519,-0.17378006875515,-0.088504493236542]],[[-0.045915171504021,0.026934677734971,0.024829007685184],[-0.040962718427181,-0.017613101750612,-0.16136352717876],[-0.027309527620673,0.049233350902796,-0.15910512208939]],[[0.044248919934034,-0.021583689376712,0.11797162145376],[0.014967107214034,0.018884712830186,0.05955483391881],[0.16025196015835,-0.067136980593204,0.049729466438293]],[[0.087483078241348,-0.051160231232643,-0.063348978757858],[0.1076338738203,0.051206570118666,0.022470062598586],[0.095709003508091,0.01501009054482,0.16679365932941]],[[-0.072819359600544,-0.047928243875504,0.07780284434557],[-0.080730982124805,0.023226242512465,0.14822044968605],[-0.060470182448626,-0.037705421447754,0.098911620676517]],[[-0.08390474319458,0.10826591402292,0.053559675812721],[-0.11689949035645,-0.041957940906286,0.055741500109434],[0.15134714543819,-0.0011339512420818,-0.02342870272696]],[[0.15606947243214,0.095601946115494,0.17444474995136],[0.14810821413994,0.19144120812416,0.16402705013752],[0.20148988068104,0.14481134712696,0.13947063684464]],[[0.071971453726292,0.013310275971889,-0.22004652023315],[-0.13304610550404,-0.088874414563179,0.14644493162632],[-0.1291488558054,0.0061083328910172,-0.015152251347899]],[[-0.024364825338125,0.027714462950826,-0.15349812805653],[-0.015845436602831,0.036857005208731,-0.0043562697246671],[-0.063739463686943,-0.026490170508623,0.083746962249279]],[[0.050872936844826,-0.085862807929516,-0.016183840110898],[0.0043313335627317,-0.037016555666924,0.049532983452082],[0.06925968080759,0.071376956999302,0.00014548601757269]],[[-0.073446661233902,-0.050417114049196,0.039981972426176],[-0.09611102938652,-0.22446070611477,-0.059088826179504],[-0.031820360571146,-0.15194524824619,-0.0065325666218996]],[[-0.039398480206728,0.03446763381362,0.04585599526763],[-0.024542693048716,-0.0034084662329406,-0.043428149074316],[0.056838646531105,0.074656471610069,0.044707212597132]],[[-0.014580242335796,0.026111617684364,-0.13689658045769],[-0.073745809495449,0.075291872024536,-0.10895163565874],[0.025544257834554,0.023567158728838,-0.10969590395689]],[[-0.061333443969488,-0.016436032950878,-0.020373916253448],[0.045077454298735,0.031371407210827,0.029788088053465],[-0.019236084073782,-0.16235476732254,0.03642563521862]],[[0.13332031667233,-0.10069242119789,-0.05050515383482],[0.010380221530795,0.034795809537172,0.023834798485041],[-0.013979555107653,-0.027208598330617,0.24227534234524]],[[0.031956292688847,-0.018594652414322,0.018613601103425],[-0.0017893244512379,-0.085942551493645,0.039437778294086],[0.023754812777042,0.095182552933693,0.11849164962769]],[[0.00054075266234577,0.11155535280704,0.042626161128283],[-0.012139094993472,0.051576711237431,-0.12159242480993],[-0.084289647638798,-0.025446496903896,0.034082148224115]],[[0.076910443603992,-0.051391363143921,-0.040631141513586],[0.066508151590824,0.0084693590179086,0.14475250244141],[-0.041020002216101,0.06511528044939,-0.074570573866367]],[[0.041207291185856,0.055244505405426,-0.023196622729301],[0.040713027119637,0.066378779709339,-0.055727317929268],[-0.013557938858867,0.036484576761723,-0.002433190587908]],[[0.050742968916893,-0.033707719296217,0.16937828063965],[-0.055384062230587,-0.011174554936588,0.040056318044662],[0.14890603721142,-0.078749388456345,0.21477116644382]],[[0.10854294896126,0.13482908904552,-0.089601717889309],[-0.057319354265928,-0.098438009619713,0.034018389880657],[-0.065153494477272,-0.1527037769556,-0.031697478145361]],[[0.00017228396609426,-0.052757773548365,0.047751609236002],[0.14830143749714,-0.076060406863689,0.016281662508845],[0.070549845695496,-0.12899117171764,-0.022692980244756]],[[-0.26008543372154,-0.0090196933597326,0.047121476382017],[-0.12892559170723,-0.040907196700573,-0.12553638219833],[0.079346157610416,0.01430223044008,-0.062095407396555]],[[0.082582004368305,-0.017451381310821,0.0031110292766243],[0.027047114446759,0.030386289581656,-0.14640308916569],[-0.032417438924313,-0.083914302289486,0.16343067586422]],[[-0.1096103861928,-0.021220993250608,0.080893985927105],[-0.086789458990097,-0.0072992793284357,-0.014298497699201],[0.02278876490891,0.043428760021925,-0.16684487462044]],[[-0.10233912616968,-0.07736087590456,-0.086812205612659],[0.012061364017427,-0.085274569690228,0.0030566870700568],[0.019976045936346,0.062979891896248,0.01247023511678]],[[-0.024439772590995,0.098145827651024,0.085134603083134],[-0.020445264875889,-0.021287400275469,-0.020870491862297],[0.049197245389223,0.015918463468552,0.029340548440814]],[[0.0060861073434353,-0.040878836065531,0.018903370946646],[0.15448467433453,0.05534940212965,0.10875515639782],[0.026552937924862,0.068853124976158,0.061798915266991]],[[0.029650768265128,-0.022477822378278,0.028115313500166],[-0.070868596434593,0.095263287425041,-0.011527862399817],[-0.051728472113609,0.0069020232185721,-0.23685768246651]],[[0.086771227419376,-0.058196488767862,0.016807656735182],[0.097084999084473,-0.0041363555938005,0.035834524780512],[0.0085342796519399,0.022713433951139,-0.071975596249104]],[[-0.028215348720551,-0.030410362407565,-0.028298715129495],[-0.076334893703461,-0.023225836455822,-0.060816444456577],[0.0082104671746492,0.02595255151391,0.1247257143259]],[[0.037505835294724,-0.0011336044408381,-0.00015472211816814],[-0.032451312988997,0.10368328541517,0.031325593590736],[-0.042255237698555,0.018911538645625,-0.0052003837190568]],[[0.030664680525661,-0.11483243107796,0.067776434123516],[0.016676252707839,-0.055059146136045,-0.012729937210679],[0.023975813761353,0.0010601190151647,0.035112116485834]],[[-0.030504075810313,-0.09957741945982,-0.024890821427107],[0.031078113242984,-0.096746407449245,0.0315499342978],[0.018908711150289,-0.051951121538877,0.10924325883389]],[[0.034599870443344,-0.083238005638123,-0.063878163695335],[-0.066665463149548,0.052301149815321,0.0065767136402428],[-0.10418588668108,-0.0040426538325846,0.066036604344845]],[[-0.048207383602858,0.032569788396358,-0.054765187203884],[-0.020616393536329,0.030420882627368,0.044096268713474],[0.045503165572882,0.08395092189312,0.089790858328342]],[[0.10990893095732,0.056284740567207,0.022609762847424],[0.10389946401119,0.11880902200937,0.06960391253233],[0.0097071528434753,0.015800811350346,-0.0044737760908902]],[[0.0040040924213827,0.035326790064573,0.046904221177101],[0.15670190751553,-0.098660044372082,0.01865852996707],[0.12181358039379,-0.030512619763613,0.027810098603368]],[[0.076043762266636,0.067996561527252,-0.028754705563188],[0.10058387368917,0.060839522629976,0.0080498764291406],[-0.035310879349709,0.03924897685647,-0.027277648448944]],[[0.0015445206081495,-0.071192264556885,-0.061662282794714],[-0.071464516222477,-0.00049317121738568,-0.086341708898544],[0.10898637026548,0.0646947696805,0.0043440801091492]],[[0.022210421040654,0.0095909610390663,-0.0098325842991471],[0.037099968641996,-0.056233197450638,-0.077795892953873],[0.025669040158391,-0.038533683866262,-0.022074384614825]],[[0.21658442914486,-0.012315322645009,-0.047308668494225],[0.018209800124168,0.046525295823812,0.029176549986005],[0.028119992464781,-0.10336669534445,0.13979898393154]],[[0.020890880376101,0.0290448050946,-0.012793097645044],[0.0043838880956173,-0.024832209572196,-0.006678253877908],[0.10161266475916,0.069909043610096,0.054704278707504]],[[-0.0015935669653118,-0.02092457935214,-0.010672840289772],[0.026725623756647,0.017431663349271,0.029708111658692],[-0.011457570828497,0.032605923712254,0.0044726394116879]],[[-0.13874219357967,-0.12744875252247,0.13971494138241],[0.034615531563759,-0.096134439110756,-0.0045765382237732],[0.042374543845654,-0.02205166220665,-0.010831590741873]],[[0.036659557372332,-0.022231198847294,0.048473048955202],[-0.055614527314901,-0.050191327929497,-0.087996296584606],[-0.0050096358172596,-0.042220368981361,-0.071002848446369]],[[0.051527556031942,0.034739606082439,0.046495638787746],[0.037356816232204,-0.043733056634665,-0.033898703753948],[-0.076226145029068,0.0046930122189224,0.11857895553112]],[[-0.098267428576946,-0.0051159039139748,-0.12704396247864],[-0.087691843509674,-0.027169317007065,-0.025255585089326],[0.012278869748116,0.036432173103094,0.10421362519264]],[[0.13008469343185,0.012847458943725,0.099737174808979],[0.147575750947,0.028790401294827,0.092445120215416],[0.076073944568634,-0.013141801580787,0.053358871489763]],[[-0.13182343542576,0.0026799363549799,0.053673304617405],[0.025838442146778,-0.028497613966465,-0.010419655591249],[0.047119844704866,-0.22002239525318,-0.10938905179501]],[[0.0015298458747566,-0.034776348620653,0.0054208631627262],[-8.8155327830464e-05,-0.015769582241774,0.038027036935091],[0.040918868035078,-0.046867713332176,-0.090302675962448]],[[-0.019003294408321,0.018856400623918,0.050849083811045],[0.036510486155748,0.038188520818949,0.084265701472759],[-0.0028780351858586,-0.035012397915125,-0.017150061205029]],[[-0.15055184066296,-0.081356391310692,-0.17999120056629],[0.12860378623009,0.028716634958982,-0.039902295917273],[0.091294944286346,-0.0050972872413695,0.016710966825485]],[[0.013692286796868,-0.012486259452999,-0.11515378206968],[0.047476254403591,0.052355863153934,-0.00055440771393478],[-0.29834282398224,0.027238830924034,-0.030283503234386]],[[-0.002531724749133,-0.017176760360599,-0.09425950050354],[-0.027500497177243,0.04473515227437,-0.044972326606512],[-0.0009325080900453,0.066739149391651,0.0098807318136096]],[[-0.1928291618824,-0.23622813820839,-0.10876802355051],[-0.2753182053566,-0.30340772867203,-0.013461595401168],[-0.34334668517113,-0.38814190030098,-0.10273136943579]],[[-0.050207789987326,0.0063149933703244,0.0077079795300961],[0.05979447811842,0.067260041832924,-0.12736365199089],[-0.038160469383001,0.0064539136365056,-0.10582344979048]],[[-0.023458126932383,0.015422909520566,0.069106489419937],[0.051871672272682,0.018715130165219,0.019722921773791],[0.015343945473433,-0.0029291133396327,0.0032468035351485]],[[0.048482775688171,0.17144578695297,-0.0099252173677087],[0.03486742079258,0.11862554401159,0.035679146647453],[0.021395836025476,0.22657862305641,0.00060958217363805]],[[-0.078294649720192,-0.1047628223896,-0.037472784519196],[0.07661958783865,-0.015191162005067,-0.13353942334652],[0.058062806725502,0.0073908595368266,-0.015675721690059]],[[0.11777445673943,0.11556691676378,0.037871025502682],[0.18619950115681,0.085345380008221,-0.047935176640749],[0.10167744755745,-0.051167350262403,-0.038248304277658]],[[-0.081964962184429,0.080432914197445,0.013737123459578],[-0.014057506807148,0.077460840344429,-0.13128416240215],[0.036600545048714,-0.11714514344931,0.1111618205905]],[[0.084337532520294,0.067194521427155,0.011001043953001],[0.029961064457893,-0.0022780189756304,-0.07285363972187],[-0.083546049892902,0.0044650989584625,0.011891312897205]],[[-0.16273437440395,0.0096190189942718,0.12324471026659],[-0.053916551172733,-0.029208989813924,-0.074698820710182],[0.073384463787079,0.028280628845096,-0.14136058092117]],[[-0.0029612658545375,-0.014233467169106,0.025707153603435],[-0.00053011230193079,0.029655518010259,-0.055500525981188],[0.034123752266169,-0.035811223089695,0.00032566505251452]],[[-0.13948251307011,-0.013553684577346,-0.082164332270622],[0.043014977127314,-0.002460538642481,-0.035303518176079],[0.027194311842322,0.047713033854961,0.010434054769576]],[[0.026023704558611,-0.0038884845562279,0.056660484522581],[0.0018994311103597,0.10696122050285,0.073611557483673],[-0.00044396877638064,0.0015517853898928,-0.016397828236222]],[[0.022024277597666,0.081241622567177,-0.07992497831583],[-0.0027233564760536,-0.0035667684860528,0.04313151165843],[0.05887234583497,-0.071317099034786,0.073168888688087]],[[-0.089282520115376,-0.029538873583078,0.040220938622952],[-0.035110764205456,-0.059860285371542,0.0050456817261875],[-0.072948701679707,-0.047205053269863,-0.082446411252022]],[[0.028481636196375,0.0055042244493961,-0.052242558449507],[0.030141558498144,-0.17084774374962,-0.061995815485716],[-0.13791736960411,-0.069021001458168,0.071109667420387]],[[-0.069558970630169,0.065231464803219,-0.065543606877327],[0.089909262955189,0.024076582863927,-0.10348163545132],[-0.051075577735901,0.038499888032675,-0.052571572363377]],[[0.036133412271738,0.084009163081646,-0.059792637825012],[-0.022979302331805,0.013553714379668,-0.072976782917976],[0.035958349704742,0.057769618928432,-0.068834602832794]],[[-0.035638604313135,-0.0375503487885,0.01421729568392],[0.063256442546844,-0.029145000502467,-0.025758132338524],[-0.015845159068704,-0.074951387941837,0.01987318508327]],[[-0.032844491302967,-0.072622232139111,0.072936832904816],[-0.060348726809025,-0.12632328271866,-0.024726804345846],[-0.020365424454212,-0.004987817723304,0.089476712048054]],[[0.06895600259304,-0.03279485553503,0.0083528608083725],[0.023533394560218,-0.0069251977838576,0.049708366394043],[0.094939187169075,-0.018877919763327,0.026296135038137]],[[-0.0095930490642786,0.0540133677423,-0.038372043520212],[-0.083650395274162,0.079590253531933,-0.0047833882272243],[0.073680713772774,0.006604028865695,-0.06263429671526]],[[-0.056997157633305,-0.023877767845988,-0.081516452133656],[0.0016923776129261,-0.10498865693808,-0.023951241746545],[0.093113765120506,0.11597912013531,-0.031643711030483]],[[-0.081378020346165,-0.011434151791036,-0.034715812653303],[0.023930238559842,-0.13307201862335,-0.035515677183867],[-0.058467715978622,-0.019848776981235,-0.021497432142496]],[[0.062345035374165,0.067946366965771,-0.022118424996734],[-0.016764501109719,0.040504030883312,-0.038870953023434],[0.0072143897414207,-0.041491620242596,0.0034711139742285]],[[0.044590212404728,-0.13391163945198,-0.056793343275785],[-0.045968227088451,-0.010770137421787,-0.013124848715961],[-0.0064710276201367,0.071045599877834,-0.10954812914133]],[[0.010515133850276,0.002876166254282,-0.03234950825572],[-0.19043973088264,0.057756319642067,-0.091468214988708],[-0.038362886756659,0.032786305993795,0.11026464402676]],[[0.07170706987381,0.015470231883228,-0.030839027836919],[-0.060846392065287,-0.011395080015063,-0.059131719172001],[0.017332762479782,-0.026949634775519,0.026718363165855]],[[0.01912783831358,0.049231488257647,0.027475710958242],[-0.16212490200996,-0.093158550560474,-0.028618456795812],[-0.16175006330013,-0.11952542513609,-0.046169128268957]],[[0.13617262244225,0.048416383564472,-0.00022347706544679],[-0.066418781876564,0.10076121985912,-0.13264119625092],[-0.14843112230301,-0.0017607416957617,-0.14855264127254]],[[0.0019378036959097,-0.055734343826771,-0.0075525483116508],[-0.016191501170397,0.032212194055319,-0.024688843637705],[-0.033509980887175,0.076068431138992,0.020546877756715]],[[0.070385113358498,0.023321529850364,0.076492935419083],[0.0020746276713908,0.051910053938627,0.043765064328909],[-0.05842611938715,-0.087588347494602,-0.059535302221775]],[[-0.050081208348274,-0.030466148629785,0.044066209346056],[-0.0092739630490541,-0.0052879145368934,0.032762825489044],[0.10615284740925,-0.025071820244193,0.015756262466311]],[[0.029933286830783,-0.063315339386463,-0.019782470539212],[0.073095448315144,0.12212590873241,-0.018178468570113],[-0.0047487723641098,0.0043518864549696,0.17935410141945]],[[0.050614133477211,-0.091726236045361,0.12591041624546],[0.075904868543148,-0.038908321410418,-0.0024044304154813],[-0.065993584692478,-0.0071124155074358,-0.01130005158484]]],[[[0.021690642461181,0.071263864636421,-0.036275573074818],[0.040030177682638,-0.084489792585373,0.014525728300214],[0.00024130934616551,0.02705411426723,0.014761661179364]],[[-0.012909143231809,-0.10531962662935,-0.061693608760834],[-0.073757737874985,0.00068071729037911,0.083195701241493],[-0.091578885912895,-0.068825498223305,-0.037383027374744]],[[0.027258902788162,-0.086643926799297,-0.057609912008047],[-0.048928871750832,-0.029809990897775,0.019243886694312],[0.0042432169429958,0.0080424165353179,-0.070685312151909]],[[0.036962110549212,0.019600789994001,-0.072299771010876],[0.041093405336142,0.0079635689035058,-0.037630826234818],[0.024278977885842,0.084504060447216,0.050947066396475]],[[0.019588988274336,-0.069717608392239,0.029576318338513],[-0.023492723703384,-0.08169274777174,0.071251846849918],[0.085003338754177,-0.0010923020308837,-0.00034619879443198]],[[0.040508504956961,-0.012813057750463,0.0094070639461279],[0.0022006283979863,-0.070176906883717,-0.019285220652819],[0.017128685489297,0.0053465701639652,0.068769700825214]],[[0.028841324150562,-0.016355631873012,-0.03367118164897],[0.0044520841911435,0.054102946072817,0.020523607730865],[0.080807097256184,-0.018954938277602,0.0091802002862096]],[[0.071880452334881,0.10656163096428,0.034173902124166],[-0.01050450000912,0.019238654524088,-0.0017302881460637],[0.044132146984339,0.017269164323807,0.085031650960445]],[[0.031412173062563,-0.033362600952387,0.044046513736248],[0.012282487004995,0.070995055139065,0.099023222923279],[0.0040396344847977,0.022356459870934,0.084287159144878]],[[0.072029359638691,-0.017330329865217,0.041774343699217],[0.0058279791846871,0.060846883803606,-0.024476597085595],[0.075152598321438,-0.03506912663579,0.0098697980865836]],[[-0.052123352885246,0.011242468841374,-0.027366133406758],[0.078867301344872,-0.028284562751651,0.054690916091204],[0.012523080222309,0.010679963044822,0.020575711503625]],[[0.0029388112016022,0.015081709250808,0.095080085098743],[0.020971287041903,0.026748657226562,-0.11397031694651],[0.081146277487278,-0.027693029493093,0.024812990799546]],[[-0.027063991874456,0.050579942762852,0.11729200184345],[0.082044154405594,0.10585889220238,0.12203244864941],[0.055529557168484,0.048632990568876,0.11310299485922]],[[-0.029487891122699,-0.0052722510881722,-0.098084710538387],[-0.034545797854662,-0.025371257215738,-0.018189717084169],[-0.039060026407242,0.13094516098499,-0.083957821130753]],[[0.0011589628411457,-0.024969097226858,-0.0074572018347681],[0.041909150779247,-0.016119619831443,-0.039557728916407],[0.070587165653706,-0.046226635575294,0.0060924338176847]],[[-0.13954456150532,0.035148158669472,-0.082693733274937],[-0.090389892458916,-0.037457898259163,0.035870462656021],[-0.032775588333607,-0.0842065513134,0.14599364995956]],[[0.038460317999125,-0.065728925168514,0.010061065666378],[-0.025619136169553,-0.048296056687832,-0.019099244847894],[0.017822798341513,0.037712920457125,-0.048023663461208]],[[-0.079557999968529,0.0063379593193531,0.006372612901032],[0.070028707385063,-0.10351202636957,-0.056604668498039],[0.015126223675907,0.015546188689768,-0.044363524764776]],[[0.033301748335361,0.052786495536566,-0.0093660680577159],[0.00071372737875208,0.018489416688681,0.027256378903985],[0.0037329448387027,0.0087356511503458,0.0019729717168957]],[[0.033076722174883,0.034999471157789,-0.075241453945637],[0.0095474002882838,-0.021279867738485,-0.018050007522106],[-0.031969971954823,0.022248277440667,0.030974125489593]],[[-0.082158088684082,0.060900330543518,-0.008286913856864],[0.10299194604158,0.02537383697927,-0.029415557160974],[-0.13214117288589,-0.037509698420763,0.056772042065859]],[[0.011387733742595,-0.0074224765412509,0.072956256568432],[0.047022484242916,-0.061148043721914,-0.021490691229701],[0.053013514727354,0.061375349760056,0.083156228065491]],[[-0.075064845383167,-0.019347002729774,-0.039862506091595],[0.059339385479689,0.019147738814354,0.07822372764349],[-0.020258203148842,-0.024976346641779,-0.053427956998348]],[[-0.0087101832032204,0.022294722497463,-0.019916258752346],[0.012985513545573,0.013768778182566,0.047087110579014],[-0.011150682345033,-0.01229798514396,-0.00022940870258026]],[[-0.13298052549362,-0.007790831848979,0.031123256310821],[-0.029692444950342,-0.017383016645908,-0.065563648939133],[-0.018371876329184,0.022304199635983,-0.024331506341696]],[[0.057161495089531,-0.045052319765091,-0.0045911390334368],[-0.010199717245996,0.015645034611225,-0.045347776263952],[-0.016973854973912,0.0075072585605085,0.021748155355453]],[[0.0050416844896972,-0.0017440059455112,0.13332560658455],[0.025199273601174,0.015157616697252,0.0084596900269389],[-0.011061139404774,0.077134035527706,0.021612280979753]],[[-0.063252948224545,0.039962790906429,-0.011387746781111],[0.02043054625392,-0.0026393465232104,0.021847773343325],[0.045180063694715,-0.056256417185068,-0.028547078371048]],[[-0.017187153920531,-0.0077903331257403,-0.014631723053753],[-0.02076955512166,-0.020493764430285,-0.00072106212610379],[0.035215381532907,0.025490636005998,0.00055880640866235]],[[0.020720595493913,-0.051885832101107,0.081930704414845],[-0.06419725716114,0.033118903636932,0.081462219357491],[0.069647565484047,-0.013208529911935,0.050260648131371]],[[0.0015450876671821,-0.047043543308973,0.014662501402199],[0.096536085009575,-0.0058564296923578,0.029813475906849],[0.015532176010311,0.062972791492939,0.038965199142694]],[[-0.03795001655817,0.036220517009497,-0.001778106437996],[0.089527636766434,-0.025990365073085,0.0060240691527724],[0.062941871583462,-0.058326251804829,0.076632894575596]],[[0.11130072176456,-0.0050134845077991,-0.022446196526289],[0.082400187849998,0.05158057436347,0.043066546320915],[-0.018431477248669,0.018044861033559,0.019409935921431]],[[0.046938464045525,-0.054087683558464,0.016071502119303],[-0.054076753556728,-0.052749089896679,-0.0069766119122505],[0.031408477574587,0.029694249853492,0.0063625597395003]],[[-0.0093786660581827,-0.0091001894325018,-0.055302415043116],[-0.043417051434517,0.032865736633539,-0.1420855820179],[0.029105981811881,-0.0051940958946943,-0.01268090121448]],[[0.04465688765049,0.036772169172764,-0.010099972598255],[-0.051929298788309,0.04198469594121,0.020819896832108],[0.016753580421209,0.067847870290279,0.0017493221675977]],[[0.012418560683727,0.12359311431646,-0.026698200032115],[0.027293372899294,-0.0011939888354391,-0.018065627664328],[0.047386709600687,-0.041568130254745,0.024924498051405]],[[-0.03346823900938,-0.052906729280949,-0.10410253703594],[0.017472572624683,0.051889035850763,-0.039360951632261],[-0.027895094826818,-0.049466155469418,-0.045972071588039]],[[-0.0039252699352801,-0.026765134185553,-0.018795797601342],[0.03230220451951,0.0017869796138257,0.1159120798111],[-0.07686747610569,-0.08737875521183,0.04148667678237]],[[0.033199850469828,-0.034438002854586,0.055290784686804],[-0.028110265731812,0.026101192459464,0.0089338710531592],[0.012027363292873,-0.0066755404695868,-0.029249340295792]],[[-0.096215344965458,-0.046408571302891,-0.030331913381815],[-0.011865429580212,0.03519693762064,0.067500479519367],[0.03821811825037,0.098834529519081,-0.06422071903944]],[[0.066812947392464,0.059195522218943,-0.030995290726423],[0.11227033287287,0.093099005520344,0.046762999147177],[-0.10780124366283,0.072256229817867,0.0049586710520089]],[[-0.022158317267895,0.056748282164335,0.048583898693323],[0.057574193924665,0.0047373133711517,0.033355083316565],[-0.0026659222785383,0.073974430561066,0.013218711130321]],[[-0.055947970598936,0.039834134280682,-0.038298599421978],[-0.125204205513,0.12343417853117,0.015355563722551],[-0.011657590977848,-0.00068568380083889,0.0086506493389606]],[[-0.002757775131613,0.05412419885397,0.037251006811857],[-0.052062951028347,0.00052026950288564,-0.0048492602072656],[0.013169206678867,-0.029120279476047,0.037297833710909]],[[-0.092281453311443,-0.004471190739423,0.0035027198027819],[0.089826598763466,0.083821691572666,-0.051814589649439],[-0.032566543668509,0.033671166747808,0.047984406352043]],[[0.0023966382723302,-0.073414154350758,-0.028174344450235],[-0.083059906959534,0.028223710134625,-0.10117017477751],[0.030693076550961,-0.10624252259731,0.044752798974514]],[[-0.040974650532007,-0.014352954924107,-0.040201757103205],[-0.048008542507887,-0.011200285516679,0.0024879162665457],[-0.047666314989328,0.024567436426878,-0.11660972237587]],[[-0.081076249480247,-0.050861701369286,0.022375395521522],[-0.092223308980465,-0.07597328722477,-0.044951405376196],[0.014629853889346,-0.032558772712946,-0.0074141793884337]],[[-0.087422408163548,0.038236379623413,-0.074068188667297],[-0.02078047208488,-0.030921531841159,0.015305239707232],[-0.095071017742157,0.031922843307257,-0.062366586178541]],[[-0.065683156251907,0.063747674226761,-0.079604156315327],[0.0058098412118852,0.046116195619106,0.11080580204725],[-0.0046137413010001,-0.014663865789771,0.039999850094318]],[[-0.012182159349322,0.032012239098549,-0.04516814276576],[-0.014067669399083,-0.054864961653948,0.018590768799186],[0.052881885319948,-0.015295185148716,0.027747103944421]],[[0.040639363229275,0.067345999181271,0.04151638224721],[0.062191747128963,0.09295367449522,0.050030048936605],[0.010144700296223,0.023814944550395,-0.0080942930653691]],[[0.042541582137346,-0.036212656646967,0.033511854708195],[0.0064532952383161,0.048490274697542,0.0068722576834261],[0.026404920965433,0.0066209230571985,-0.019916610792279]],[[0.0022421390749514,0.057460468262434,0.0057745692320168],[0.10537716001272,-0.069172188639641,-0.001306815771386],[0.012089309282601,0.070916794240475,0.014320554211736]],[[-0.028592206537724,-0.012054576538503,0.03511381521821],[-0.063599437475204,0.045764148235321,-0.081905581057072],[0.06798629462719,-0.010735305957496,0.029074233025312]],[[-0.025991376489401,0.11538974940777,0.049016293138266],[0.032384030520916,0.100192733109,0.063449434936047],[-0.070133417844772,0.017417311668396,0.047520831227303]],[[0.048309005796909,-0.019518567249179,-0.091165527701378],[0.032479360699654,-0.0033038919791579,-0.013843788765371],[0.012415126897395,-0.0091015724465251,-0.074044235050678]],[[0.025329435244203,0.0014216508716345,0.11406117677689],[0.032834995537996,0.072722472250462,0.043726243078709],[0.012084193527699,0.050989363342524,-0.03169684484601]],[[0.026795905083418,-0.01223829202354,1.8994371203007e-05],[-0.056997884064913,-0.044789787381887,-0.0032339228782803],[0.068316914141178,-0.0062400158494711,0.039918515831232]],[[-0.0028264080174267,0.045488495379686,0.0040583233349025],[-0.060881100594997,-0.0365886464715,-0.014242965728045],[0.031878903508186,0.077419854700565,-0.0091887740418315]],[[-0.011741653084755,-0.042598810046911,-0.12342826277018],[-0.03381996229291,0.014749553054571,-0.074448965489864],[0.0047499556094408,-0.019501931965351,0.014441857114434]],[[0.0073466375470161,0.10154969990253,0.035638969391584],[0.031633753329515,-0.011817284859717,-0.0065964441746473],[0.020209988579154,-0.026210851967335,0.031998489052057]],[[-0.068147152662277,-0.052983704954386,-0.0087701296433806],[-0.055452838540077,-0.027116186916828,0.0060311192646623],[0.045006148517132,0.060042321681976,0.050968337804079]],[[0.025794330984354,0.04176602512598,0.007703407201916],[-0.031227212399244,-0.071487374603748,0.087620340287685],[0.0024487327318639,0.019492704421282,0.011997783556581]],[[0.070136718451977,0.024258818477392,0.045416489243507],[0.04536036029458,0.10229266434908,0.016953140497208],[0.062013573944569,0.10142026096582,0.012636939994991]],[[-0.086282588541508,0.002813104307279,0.03670235350728],[-0.0020896126516163,-0.052351102232933,0.02820791862905],[-0.045208606868982,0.0031039614696056,0.068548463284969]],[[-0.026255156844854,-0.028812380507588,-0.008635587990284],[-0.0035131818149239,0.062285214662552,-0.026769526302814],[0.05206361040473,0.046644926071167,-0.050659697502851]],[[0.081313155591488,-0.010602276772261,0.11116705089808],[-0.018430661410093,-0.022153597325087,-0.012002445757389],[-0.011645521037281,-0.028376361355186,0.08992575854063]],[[-0.0083304718136787,0.015959810465574,0.10478164255619],[0.039034444838762,0.052938055247068,-0.036283198744059],[0.035514980554581,0.081740893423557,-0.033979013562202]],[[-0.021648975089192,0.071543358266354,0.10844159126282],[0.05667557567358,0.014910584315658,0.026113232597709],[0.031727444380522,0.039787076413631,-0.016596756875515]],[[-0.007717396132648,0.0024704071693122,-0.051123291254044],[-0.10113071650267,-0.076617307960987,0.092767760157585],[-0.0022848213557154,-0.016594868153334,0.019756140187383]],[[-0.069288663566113,-0.010272251442075,-0.014212086796761],[0.062689311802387,0.057742267847061,-9.1616013378371e-05],[0.05896082893014,-0.0047896378673613,-0.02352430485189]],[[0.026821780949831,0.074664086103439,0.012748984619975],[-0.033079214394093,-0.02726573869586,0.041166238486767],[0.068892739713192,-0.044333893805742,0.073422215878963]],[[-0.0054121022112668,0.0149458469823,0.037821590900421],[0.061980713158846,0.001610514242202,0.0077452887780964],[-0.037824463099241,0.09236828237772,-0.044769708067179]],[[0.015487981960177,-0.0052071390673518,0.042302247136831],[-0.014874315820634,0.057159319519997,0.057435765862465],[-0.1206414103508,-0.047412920743227,-0.049110468477011]],[[0.059807416051626,-0.0071046808734536,0.047924537211657],[0.015261325985193,0.059691246598959,0.066965103149414],[0.03790470585227,0.09037422388792,-0.0043664211407304]],[[-0.088542893528938,0.079696498811245,-0.0006424177554436],[-0.004880144726485,0.018033798784018,-0.0028427769429982],[0.10520518571138,0.016648307442665,0.046488370746374]],[[0.0048892660997808,0.02895382232964,-0.05785496532917],[-0.020247114822268,-0.059506271034479,0.0052123442292213],[-0.029849009588361,0.032881382852793,0.049545954912901]],[[-0.010529331862926,-0.019918963313103,0.021029489114881],[-0.066422201693058,-0.075359724462032,-0.04231484234333],[-0.048644904047251,-0.036238182336092,0.024403978139162]],[[-0.0050897938199341,0.015381157398224,-0.038028344511986],[-0.0012892330996692,-0.01138458494097,-0.018853958696127],[0.014023550786078,-0.021828670054674,-0.012738804332912]],[[0.074171483516693,0.040615763515234,0.029947333037853],[-0.054145839065313,-0.01617812179029,0.016249839216471],[-0.020086362957954,0.020888920873404,-0.04182917997241]],[[0.035171627998352,-0.10060849040747,0.018736433237791],[-0.034613359719515,0.065055280923843,0.058369789272547],[0.039572216570377,0.10706124454737,0.032578866928816]],[[0.077222794294357,0.10270940512419,0.045588694512844],[-0.017839729785919,0.0083028757944703,0.075645737349987],[-0.078242458403111,0.030637735500932,0.057042744010687]],[[-0.0040658432990313,-0.027452839538455,0.027819158509374],[-0.0086235497146845,-0.035557311028242,0.074369125068188],[-0.025393452495337,-0.024199761450291,-0.028843665495515]],[[-0.02104963734746,-0.024173356592655,0.047663252800703],[-0.038846414536238,-0.025406423956156,-0.077278897166252],[0.015604879707098,0.016036996617913,-0.031921125948429]],[[0.019091906026006,-0.031866107136011,0.085688151419163],[0.031523134559393,0.044482577592134,0.09984914213419],[0.042376130819321,-0.025569956749678,0.091578483581543]],[[0.065307728946209,0.046222273260355,0.04019633308053],[-0.012305137701333,-0.023738116025925,0.027885366231203],[-0.018872728571296,0.060773093253374,-0.030194725841284]],[[-0.058875739574432,-0.020901307463646,-0.015793923288584],[0.058273807168007,0.098740465939045,0.036100678145885],[-0.061689287424088,-0.00059831287944689,-0.017126105725765]],[[-0.03188356384635,-0.055077891796827,-0.070475310087204],[0.0065906615927815,0.013522421941161,0.0366525426507],[-0.086734436452389,-0.026327218860388,0.10842110961676]],[[-0.016073383390903,-0.030075315386057,0.043610852211714],[0.031960938125849,-0.035990785807371,-0.010180303826928],[-0.059136994183064,-0.01271331589669,-0.048021659255028]],[[0.0075299576856196,-0.044857613742352,-0.053994029760361],[-0.024729650467634,0.062799893319607,-0.016481142491102],[-0.008249388076365,0.037746943533421,-0.017092933878303]],[[0.063069567084312,-0.022280031815171,0.012721410952508],[0.14262324571609,-0.055208224803209,-0.062757439911366],[-0.012810621410608,0.011413077823818,-0.024789791554213]],[[0.052082050591707,0.018185768276453,0.053686827421188],[-0.0083153797313571,0.047226268798113,0.021675415337086],[0.029182374477386,0.010050070472062,-0.048698030412197]],[[-0.055043660104275,-0.029418693855405,-0.070451371371746],[-0.063011467456818,0.013654001057148,0.050338447093964],[-0.052754342556,-0.010755209252238,-0.020248105749488]],[[-0.027900131419301,0.0072576049715281,0.065142445266247],[-0.021869283169508,-0.059909425675869,-0.039978679269552],[0.01644510962069,0.00042244599899277,-0.037325706332922]],[[-0.031061284244061,0.057413700968027,0.03112412057817],[-0.020263882353902,-0.088106893002987,0.021949613466859],[-0.047026507556438,0.019474983215332,0.0644735917449]],[[-0.0059902868233621,0.027410438284278,0.03990064561367],[-0.072736352682114,0.066777214407921,-0.012169907800853],[0.099237211048603,-0.015789916738868,-0.058298725634813]],[[0.0095400670543313,-0.012920890934765,-0.014235468581319],[-0.031484190374613,-0.042146295309067,0.033049017190933],[-0.033974673599005,-0.020170604810119,-0.052573699504137]],[[-0.025992903858423,0.045208465307951,0.057416718453169],[-0.0024252911098301,-0.01128486264497,-0.027106216177344],[-0.023595960810781,-0.00039095978718251,-0.012227330356836]],[[-0.064511992037296,0.022900862619281,0.026785956695676],[-0.0072472603060305,-0.051034864038229,-0.023657144978642],[-0.080200269818306,-0.055891375988722,-0.026919038966298]],[[-0.0056721707805991,0.070365831255913,0.055768214166164],[0.048827923834324,-0.020002545788884,0.022224565967917],[0.10103390365839,0.052569672465324,0.062133848667145]],[[0.048310711979866,-0.013334446586668,0.028854565694928],[0.061442233622074,0.067161202430725,0.036271881312132],[-0.034373708069324,-0.054245889186859,-0.0061187222599983]],[[-0.035786356776953,-0.027905806899071,-0.038781329989433],[0.0044105411507189,-0.048196353018284,0.035641636699438],[-0.011712598614395,0.0026954687200487,-0.046068664640188]],[[0.086056314408779,-0.031080067157745,0.064648076891899],[-0.085189297795296,-0.073893398046494,-0.0043971589766443],[0.0031063379719853,0.00018301216186956,0.034877561032772]],[[0.062264241278172,0.01238152384758,-0.097859129309654],[0.027102027088404,0.028179937973619,0.0087316315621138],[0.061995387077332,0.027646895498037,0.065035603940487]],[[0.012153740972281,-0.013008360750973,0.04929606243968],[-0.035963293164968,-0.014350572600961,-0.068333141505718],[0.067369118332863,-0.041092053055763,0.058639019727707]],[[-0.053300004452467,0.016241051256657,-0.11824744939804],[-0.017028782516718,-0.019340291619301,-0.021106392145157],[0.002462854841724,0.011808168143034,0.12134630233049]],[[0.016415728256106,-0.031293347477913,-0.082654036581516],[-0.083425618708134,0.075553394854069,-0.091596052050591],[-0.031974539160728,0.0081706652417779,0.0061057549901307]],[[-0.014448562636971,0.062221273779869,0.00055521086324006],[-0.0076301065273583,-0.037354666739702,0.026133183389902],[0.01675908267498,-0.0031701764091849,0.036199867725372]],[[0.010522125288844,0.037649653851986,-0.055458974093199],[-0.038156855851412,-0.0033950263168663,-0.08745127171278],[0.057451199740171,0.032828278839588,0.032393280416727]],[[0.012677581980824,-0.070524416863918,-0.089828245341778],[0.0030530653893948,-0.074620760977268,-0.041942920535803],[-0.0028307610191405,-0.034615874290466,0.072568245232105]],[[-0.03561893850565,-0.083224944770336,0.041303887963295],[-0.043432500213385,-0.038722489029169,-0.014016666449606],[-0.030107546597719,0.0025759090203792,-0.015248468145728]],[[0.0019204795826226,0.00060933380154893,0.039184741675854],[-0.051896750926971,0.057673647999763,-0.04796451702714],[0.027407361194491,0.032561995089054,-0.053985439240932]],[[0.036080967634916,-0.025008801370859,0.034793701022863],[0.02064260840416,-0.057681623846292,-0.06778696924448],[-0.0047395676374435,-0.027935521677136,-0.056455183774233]],[[-0.035153746604919,-0.027366202324629,-0.023654356598854],[-0.068282894790173,-0.047480739653111,-0.0024544871412218],[0.0059040798805654,-0.063150867819786,0.091397523880005]],[[0.07000844180584,-0.012923084199429,-0.056265525519848],[0.065758004784584,-0.032054170966148,-0.068473398685455],[0.04910883679986,0.025972405448556,0.0011241299798712]],[[-0.061379078775644,-0.045492313802242,-0.026831589639187],[0.032610733062029,-0.036652386188507,0.019249400123954],[-0.065086722373962,-0.043744973838329,-0.02358291298151]],[[0.011941122822464,-0.026157820597291,-0.046003594994545],[-0.019271701574326,-0.069824442267418,0.026694742962718],[-0.034475106745958,-0.041027974337339,-0.028769265860319]],[[0.02701792307198,0.13942548632622,0.10370495915413],[0.0077763176523149,-0.028865681961179,0.10849702358246],[0.029249764978886,0.049617938697338,0.028213711455464]],[[-0.04321027547121,0.0072334283031523,0.047907758504152],[-0.03264057636261,-0.066731378436089,0.0026019832585007],[0.0031886401120573,-0.035241231322289,0.029849356040359]],[[-0.017176432535052,-0.023121304810047,-0.017710201442242],[-0.060384750366211,0.0010828773956746,-0.069447934627533],[-0.036359187215567,0.015995543450117,0.052149087190628]],[[-0.013481643982232,0.024318819865584,0.061894904822111],[0.0055533875711262,-0.051304895430803,0.035227511078119],[-0.014761916361749,0.02484811283648,-0.060788154602051]],[[0.006723546423018,-0.034835331141949,0.073230370879173],[-0.025541812181473,0.040782678872347,-0.022105803713202],[-0.044319871813059,-0.00088786846026778,0.042549829930067]],[[0.045254152268171,0.053087331354618,-0.019227603450418],[-0.065526030957699,-0.03477231413126,0.11789903789759],[0.031197320669889,-0.052022505551577,0.037706200033426]],[[0.0023358501493931,0.019916774705052,-0.0092724440619349],[0.057019043713808,0.052544090896845,0.089974299073219],[0.0090626794844866,0.0072409347631037,0.046580765396357]],[[-0.016990201547742,-0.047578923404217,-0.0094356248155236],[0.05802495777607,0.0010268809273839,0.077052742242813],[-0.033160980790854,-0.0054949312470853,0.032711591571569]],[[0.053754437714815,-0.0029574024956673,0.028971603140235],[-0.10298456996679,0.0083086024969816,0.12546530365944],[0.09541168063879,-0.074244558811188,0.093270227313042]]],[[[-0.068239897489548,0.022105662152171,0.0047607184387743],[0.017635786905885,-0.031514011323452,-0.036450460553169],[0.035703547298908,-0.016444923356175,0.050283741205931]],[[-0.02235221862793,0.012042910791934,0.093096435070038],[-0.014589786529541,0.061294548213482,-0.027201836928725],[0.088917151093483,-0.021405532956123,-0.024274231866002]],[[0.020568674430251,0.016809897497296,-0.026761122047901],[-0.045561708509922,0.009650026448071,-0.025748198851943],[-0.069109745323658,0.016581809148192,0.04086697474122]],[[-0.061717942357063,-0.025051748380065,-0.0087818698957562],[0.033825613558292,-0.028419505804777,-0.074503637850285],[-0.04255598038435,0.096044957637787,-0.092776462435722]],[[-0.10922718048096,-0.030402518808842,0.030028151348233],[-0.027750868350267,0.027352726086974,-0.033179461956024],[-0.06280080229044,0.011565741151571,0.065362840890884]],[[-0.015595163218677,0.039172824472189,0.066040098667145],[-0.025484059005976,-0.048326957970858,0.052633263170719],[-0.089632801711559,-0.046504072844982,-0.015978626906872]],[[0.023685712367296,0.0677235648036,0.0046356040984392],[0.014357949607074,0.010373959317803,0.0035787795204669],[-0.032939594238997,-0.060910061001778,0.025338029488921]],[[0.015372879803181,0.0051918355748057,0.0068042986094952],[0.057623472064734,0.019221259281039,0.008789568208158],[0.0038320168387145,0.0053753983229399,-0.055544663220644]],[[0.053294986486435,-0.062407076358795,0.0049243289977312],[0.018896156921983,0.0068367677740753,0.025777984410524],[0.010802133008838,-0.039079170674086,0.052773386240005]],[[0.088402263820171,-0.041994780302048,-0.025202998891473],[0.039104498922825,0.022924138233066,-0.076758235692978],[-0.051660139113665,-0.042013723403215,0.055662173777819]],[[-0.014034466817975,0.071187615394592,-0.074348174035549],[-0.0034743063151836,0.0026577210519463,-0.083935104310513],[0.05585964769125,-0.014877254143357,0.031788662075996]],[[-0.0090486109256744,-0.023938685655594,0.029138531535864],[0.052158191800117,-0.037852466106415,0.00014691206160933],[-0.0056511834263802,-0.050848122686148,-0.038143519312143]],[[-0.040715917944908,-0.0067291711457074,0.039922721683979],[0.0074072876013815,0.015540706925094,0.049252923578024],[-0.058466460555792,0.080767646431923,-0.041930820792913]],[[0.037923008203506,0.021807018667459,0.015028078109026],[0.002278788946569,0.034405075013638,0.028589373454452],[-0.055003918707371,-0.08162958920002,-0.015437921509147]],[[-0.064331479370594,0.0028381876181811,0.034658394753933],[0.12516483664513,-0.0082646608352661,0.025746526196599],[-0.0068368054926395,-0.0063309674151242,-0.010145214386284]],[[-0.044379062950611,-0.025719117373228,0.077754303812981],[0.055588729679585,-0.0018958162982017,0.017823293805122],[0.032829642295837,0.096288308501244,-0.021183235570788]],[[0.10006645321846,0.043119937181473,0.005422639194876],[-0.033877465873957,-0.018302300944924,-0.062356270849705],[0.10353600978851,0.016882590949535,-0.0067327003926039]],[[0.022039420902729,0.027783216908574,-0.050964418798685],[-0.084219798445702,0.016550593078136,0.04102411493659],[0.028589291498065,-0.010410418733954,-0.063509210944176]],[[-0.090631209313869,-0.055492043495178,0.023115061223507],[0.044482834637165,0.10236819833517,0.051949068903923],[0.066988080739975,0.040879189968109,-0.023618135601282]],[[-0.024107407778502,-0.08107902854681,-0.074068069458008],[0.063577510416508,0.040731206536293,-0.014926671981812],[-0.031820382922888,0.037917703390121,-0.014591245912015]],[[0.04406888410449,-0.096266061067581,0.0090075526386499],[0.0038823154754937,-0.018131712451577,-0.01996230147779],[0.023909235373139,0.10713261365891,-0.016378428786993]],[[-0.012540206313133,0.0041742380708456,-0.019115699455142],[0.04184515029192,0.020857710391283,-0.028323382139206],[-0.035541724413633,-0.039247557520866,0.047422256320715]],[[0.020465293899179,0.040745608508587,0.022182585671544],[-0.025970719754696,0.037935230880976,0.01132589392364],[0.030627783387899,0.013338548131287,0.099631763994694]],[[0.010181576944888,-0.029539650306106,-0.041541010141373],[-0.043055132031441,0.0070222783833742,-0.061191510409117],[0.0054447031579912,-0.024137331172824,0.0058485795743763]],[[0.066974177956581,0.0086585376411676,-0.031397841870785],[0.01058566197753,0.02075082436204,-0.010378410108387],[-0.036232553422451,-0.0034445296041667,0.092573575675488]],[[-0.067877434194088,0.006148882675916,-0.0057019274681807],[0.040721382945776,0.0099148405715823,0.0027052101213485],[0.012757260352373,0.063922978937626,0.043476287275553]],[[-0.020061058923602,-0.04371277987957,0.034927558153868],[-0.0068167136050761,0.049300640821457,0.034803804010153],[0.031526304781437,-0.057038713246584,-0.0032018469646573]],[[0.11766417324543,-0.040990021079779,0.016172042116523],[0.12768578529358,0.0076809176243842,-0.049860086292028],[-0.00041825853986666,0.044447306543589,-0.049405265599489]],[[-0.040799554437399,0.067104801535606,0.00939757283777],[0.001379833323881,0.021900050342083,-0.059492357075214],[0.00028491599368863,0.022787498310208,0.033543314784765]],[[-0.046342261135578,-0.038905322551727,0.016749897971749],[-0.041273765265942,0.010194232687354,-0.04415313526988],[-0.023767286911607,0.00012644482194446,0.051477625966072]],[[-0.041407562792301,-0.031103333458304,-0.012174177914858],[-0.039665699005127,0.070063196122646,0.072974018752575],[-0.0083552431315184,0.012355530634522,-0.0034908978268504]],[[0.060291513800621,-0.10486163944006,0.012880129739642],[-0.019774975255132,0.090374872088432,-0.026363056153059],[0.015622055158019,0.045742157846689,-0.028005562722683]],[[-0.0071245208382607,-0.092484578490257,0.0069259544834495],[-0.090137578547001,0.0014170778449625,-0.018559975549579],[-0.12238412350416,-0.089688844978809,0.023750832304358]],[[0.0031756334938109,0.05793110281229,0.031893081963062],[0.028198983520269,-0.033129710704088,0.013987830840051],[-0.042031262069941,-0.0036147937644273,-0.014268863014877]],[[0.058352291584015,-0.0043990891426802,-0.034151166677475],[0.027652557939291,0.0024329274892807,-0.047612309455872],[-0.042953412979841,0.019866177812219,-0.031890418380499]],[[-0.030376745387912,0.022677982226014,-0.022667832672596],[0.0093717267736793,-0.071253530681133,-0.015423339791596],[0.1413027793169,0.0048956442624331,0.0058469283394516]],[[0.03836003318429,-0.077623665332794,-0.071353927254677],[-0.0010974720353261,-0.046893417835236,0.031011447310448],[0.024851342663169,-0.057702928781509,0.035575699061155]],[[-0.025849727913737,-0.050956234335899,0.0013814183184877],[-0.046421833336353,-0.037506025284529,-0.028940817341208],[0.038665805011988,-0.075094878673553,0.026226237416267]],[[0.019041113555431,-0.034032218158245,0.027002165094018],[0.017983991652727,0.033818393945694,-0.01513216085732],[0.02480361610651,0.044236086308956,0.029516471549869]],[[-0.0089192492887378,-0.012814622372389,0.025753103196621],[-0.013443903066218,0.010386867448688,0.0013283654116094],[0.03843642771244,-0.083802565932274,0.030330963432789]],[[0.04013741388917,0.0066402424126863,0.023656221106648],[0.040352262556553,0.031572870910168,-0.045058973133564],[-0.018190458416939,-0.036341696977615,-0.050943113863468]],[[0.014267821796238,0.095667280256748,-0.054936479777098],[0.0089372135698795,0.035513289272785,-0.081691399216652],[0.098259605467319,0.011037736199796,0.0276402477175]],[[-0.035066410899162,-0.14803560078144,0.050762381404638],[0.045460727065802,0.035679332911968,0.010661248117685],[-0.043193463236094,-0.034838195890188,-0.067699082195759]],[[-0.036275882273912,0.018565913662314,-0.044459860771894],[-0.017481671646237,0.012863767333329,0.038521252572536],[-0.037517666816711,-0.14828802645206,-0.028145307675004]],[[-0.030136041343212,-0.020450809970498,-0.020467817783356],[0.046043213456869,0.006346182897687,0.068278774619102],[0.082580000162125,-0.063542321324348,0.050447806715965]],[[0.0075815278105438,0.026821358129382,-0.0036429851315916],[0.026821913197637,-0.0201117079705,0.0053574512712657],[0.05331838876009,0.0099012088030577,0.0052268928848207]],[[0.0066729998216033,0.067032590508461,-0.034836083650589],[-0.019407011568546,-0.060470979660749,0.056650891900063],[0.065790504217148,-0.0067621925845742,-0.11280433088541]],[[0.037612836807966,0.016105730086565,0.072389967739582],[-0.070864781737328,-0.075073346495628,0.050639767199755],[-0.055700074881315,0.0012439856072888,0.0041244416497648]],[[0.022381227463484,0.03223679214716,-0.085562847554684],[0.068015806376934,-0.016632430255413,0.039012756198645],[-0.0604840926826,0.077068366110325,0.018017396330833]],[[-0.12015859782696,0.0051154759712517,-0.046541664749384],[0.0035453205928206,0.0068590482696891,-0.021820435300469],[0.049795910716057,-0.031536255031824,0.015960523858666]],[[-0.0060258144512773,-0.060936152935028,0.023394208401442],[0.047231312841177,-0.049789257347584,-0.053743045777082],[-0.047077462077141,0.0281085614115,0.010649493895471]],[[-0.019751816987991,-0.0086243497207761,-0.022388208657503],[0.03361464291811,-0.046979509294033,0.042272046208382],[-0.063924983143806,0.0041579455137253,0.017752792686224]],[[-0.052476469427347,0.012784229591489,0.009021058678627],[0.080013237893581,0.07813549041748,0.099842354655266],[-0.048684943467379,-0.023945383727551,-0.069665357470512]],[[-0.021051647141576,0.057442653924227,0.065792411565781],[-0.032282259315252,-0.031561691313982,-0.013337763957679],[-0.047670122236013,0.042195163667202,0.0099493404850364]],[[0.0041397167369723,0.0179756693542,0.059857126325369],[-0.075846694409847,0.056397616863251,-0.01802035421133],[-0.037233483046293,-0.074871383607388,0.050935342907906]],[[0.064209029078484,0.12458173185587,-0.011166057549417],[0.073175668716431,0.046986192464828,0.0044159907847643],[-0.015095975250006,-0.031596202403307,-0.00039570263470523]],[[-0.027637442573905,0.023117898032069,-0.044482719153166],[0.024053988978267,-0.023964671418071,0.00090351584367454],[0.033024325966835,-0.036488134413958,-0.0052312258630991]],[[0.039665248245001,0.044813051819801,0.01784709841013],[-0.036852646619081,-0.047291301190853,0.030468108132482],[0.0081238048151135,-0.030199740082026,0.010416344739497]],[[-0.042883731424809,-0.018098453059793,0.056680161505938],[-0.088508471846581,-0.061929166316986,-0.038404271006584],[-0.032114464789629,0.021567167714238,0.0073849428445101]],[[0.039109114557505,-0.032484386116266,0.0027965023182333],[0.011489947326481,0.036742649972439,0.062242098152637],[0.016814026981592,-0.096152879297733,0.063287973403931]],[[-0.0044369967654347,0.012629360891879,-0.0085590602830052],[0.068259879946709,0.019568430259824,0.066396914422512],[0.14097253978252,-0.065673433244228,0.020205333828926]],[[-0.076963789761066,0.054794140160084,-0.029531555250287],[0.02151863463223,-0.020770248025656,0.076756581664085],[0.048610437661409,-0.044437296688557,0.056263219565153]],[[-0.0056693130172789,-0.054978732019663,0.018152391538024],[-0.042182840406895,-0.061110612004995,0.029339818283916],[-0.011767164804041,0.020475707948208,0.055717267096043]],[[0.042739037424326,-0.052918709814548,-0.05879495665431],[-0.022248519584537,-0.031272046267986,-0.041056171059608],[0.024353079497814,-0.01435062661767,-0.011002134531736]],[[0.0035247679334134,0.049361925572157,0.032774228602648],[-0.00025278615066782,0.0012605057563633,0.032115004956722],[-0.038005203008652,-0.035437241196632,-0.036797072738409]],[[-0.029575010761619,0.036902155727148,0.066623494029045],[0.018598865717649,-0.032339304685593,-0.0043478035368025],[-0.028853548690677,-0.031290795654058,-0.032735101878643]],[[0.022661594673991,-0.0052855489775538,0.0379060767591],[0.051612298935652,-0.034790683537722,-0.022791553288698],[-0.028344830498099,0.017516547814012,-0.0259058624506]],[[-0.013738163746893,0.021958217024803,0.017563065513968],[-0.043884634971619,0.027251852676272,0.0059774429537356],[-0.010176671668887,-0.049642406404018,0.025007793679833]],[[0.099013403058052,0.037159211933613,0.0069901272654533],[0.084689736366272,-0.011520995758474,-0.02769647911191],[-0.047674607485533,-0.0095768067985773,0.058346390724182]],[[0.045410647988319,-0.018180254846811,-0.037228003144264],[0.024222295731306,-0.014995963312685,0.058224633336067],[-0.020016029477119,0.040651455521584,-0.045761376619339]],[[-0.048033233731985,-0.0045358762145042,-0.036842327564955],[0.029371622949839,-0.0018354586791247,0.032939951866865],[0.07522651553154,0.052240885794163,-0.001592292683199]],[[-0.080513618886471,0.025905091315508,0.053191211074591],[-0.022250441834331,0.030608961358666,0.020854283124208],[0.048140019178391,0.021499255672097,0.01301546394825]],[[0.10717460513115,-0.05974330380559,0.010831554420292],[0.048527747392654,0.071617178618908,-0.027477949857712],[0.086087040603161,0.019523927941918,0.02183323353529]],[[-0.0010443119099364,0.033221479505301,-0.040353536605835],[0.080250039696693,0.014638635329902,0.076609872281551],[-0.036639560014009,0.033802319318056,-0.030629301443696]],[[0.038279883563519,-0.017071450129151,-0.022708592936397],[0.0033842320553958,-0.086774840950966,0.0068806810304523],[-0.034728441387415,-0.032156452536583,-0.05408776178956]],[[-0.017086699604988,0.029216397553682,0.021395303308964],[0.036889534443617,0.04635751247406,-0.095891393721104],[-0.019747618585825,0.036604586988688,0.003627881873399]],[[-0.070728480815887,0.061800710856915,0.018369572237134],[0.06753259152174,0.021455500274897,0.071026235818863],[-0.054968729615211,0.046344861388206,-0.0094659859314561]],[[-0.02595691755414,0.022522682324052,-0.053310725837946],[-0.014270674437284,0.021919939666986,-0.0026885534171015],[0.040007118135691,-0.012951968237758,-0.086753003299236]],[[0.068801820278168,0.031136902049184,0.022099081426859],[-0.06459329277277,-0.066303797066212,0.0064991330727935],[0.0037962729111314,0.036654092371464,-0.015899743884802]],[[0.049923319369555,0.00053984904661775,-0.039668466895819],[0.077187582850456,0.012455420568585,0.057282395660877],[-0.030202144756913,-0.013039479963481,0.0056141773238778]],[[-0.041763491928577,-0.041822165250778,0.036160595715046],[-0.0094835013151169,0.030381456017494,-0.016754262149334],[-0.055790416896343,-0.086314797401428,0.050827454775572]],[[-0.073504433035851,0.058049540966749,-0.041892722249031],[-0.021422553807497,-0.057085316628218,0.035458717495203],[-0.010738558135927,-0.018693679943681,-0.0097541948780417]],[[0.11918990314007,-0.00041277435957454,0.053360428661108],[-0.064552634954453,0.038095083087683,0.022969901561737],[0.096748821437359,0.040307596325874,-0.021554449573159]],[[0.028048176318407,0.084039978682995,0.055988699197769],[-0.095145732164383,-0.05036998167634,0.019318804144859],[0.023290872573853,0.023658853024244,-0.071183167397976]],[[0.014522145502269,-0.11291322112083,-0.019695565104485],[-0.017040295526385,-0.040906108915806,0.010093910619617],[-0.0099387615919113,0.0088590951636434,0.0052789011970162]],[[0.0023670790251344,0.0079712243750691,0.014512280933559],[-0.014895118772984,-0.032193649560213,-0.0012081027962267],[-0.057156134396791,0.03312399238348,0.020726542919874]],[[-0.037680305540562,-0.068696454167366,-0.034015912562609],[-0.034808252006769,-0.0070608044043183,0.0015439555281773],[-0.00211057276465,0.048362977802753,-0.071512565016747]],[[0.0025305852759629,-0.074870944023132,-0.04002146422863],[-0.081798762083054,0.052110314369202,0.028442438691854],[0.017428325489163,0.070367351174355,-0.03136396035552]],[[-0.014427498914301,0.0119858244434,-0.0029007727280259],[-0.022657549008727,0.013977992348373,0.014571596868336],[0.031256597489119,0.063684657216072,-0.012247575446963]],[[0.027233814820647,0.014426643960178,0.067740879952908],[-0.0030860628467053,0.046993993222713,-0.028796514496207],[0.016217501834035,0.035703249275684,0.00015144633653108]],[[-0.027692079544067,-0.070167317986488,-0.018581867218018],[-0.025517746806145,-0.090197518467903,0.01382639631629],[-0.022767679765821,0.048533946275711,0.011920733377337]],[[0.068079926073551,-0.017574463039637,0.027314245700836],[0.0038006464019418,0.020243491977453,-0.037826955318451],[-0.00057910184841603,0.013201103545725,-0.038238823413849]],[[0.01069254335016,0.032822702080011,0.06969103962183],[-0.003005153266713,0.015582144260406,0.026788478717208],[-0.032294284552336,-0.011244481429458,-0.023291924968362]],[[0.055558558553457,0.0092598320916295,0.037687972187996],[0.0033233920112252,-0.024005388841033,-0.081493347883224],[-0.023740813136101,0.018982242792845,-0.012952176854014]],[[-0.033255286514759,-0.034844104200602,-0.0013850076356903],[0.042407788336277,0.058980334550142,-0.048478975892067],[0.013354887254536,-0.025687014684081,0.026935225352645]],[[-0.02667037025094,-0.023297119885683,0.050443690270185],[0.038682013750076,-0.029684202745557,0.096087843179703],[-0.11654042452574,0.0090710641816258,-0.0024824650026858]],[[0.020569244399667,0.023308841511607,-0.058828759938478],[0.067690834403038,0.054632849991322,-0.070225320756435],[0.016664488241076,0.0048273648135364,0.038539074361324]],[[0.024280019104481,-0.094026580452919,0.0084922928363085],[-0.061253979802132,-0.020107323303819,-0.05590733513236],[-0.032487858086824,-0.063721753656864,0.06311047822237]],[[0.012279683724046,0.0853401273489,0.012701325118542],[0.028829053044319,0.058572132140398,0.04908425360918],[-0.00093244819436222,0.090139210224152,0.072436764836311]],[[0.12011507153511,-0.0080183381214738,-0.056389696896076],[-0.0089070238173008,0.025150382891297,-0.01312860660255],[0.011300833895802,-0.082441285252571,0.0096327913925052]],[[0.076659552752972,-0.0025707380846143,-0.020826937630773],[-0.024455994367599,-0.010658785700798,-0.029860569164157],[0.029501680284739,0.023822179064155,-0.026257053017616]],[[0.012989805079997,0.0054357042536139,0.034814924001694],[0.023256508633494,0.025220360606909,0.044695597141981],[-0.027814798057079,-0.0016059090849012,-0.013448184356093]],[[-0.014177521690726,-0.010787408798933,0.057704318314791],[-0.025782385841012,-0.032030817121267,-0.048307627439499],[-0.014564755372703,-0.018260916694999,-0.047085333615541]],[[-0.02284568361938,0.025596395134926,-0.033713582903147],[0.048607423901558,0.034493450075388,0.010134070180357],[0.0072334208525717,-0.0066022300161421,0.019709959626198]],[[0.06155102327466,-0.019000269472599,0.014685398899019],[-0.051895417273045,0.00091390562010929,0.0016060038469732],[0.015286901965737,0.012424379587173,-0.016051763668656]],[[0.021685751155019,0.0030509526841342,0.019342428073287],[0.037433762103319,0.062214884907007,0.049177203327417],[0.036532059311867,-0.0042596091516316,-0.043326448649168]],[[0.006925952155143,0.012822827324271,-0.05522995442152],[0.027233911678195,0.008912798948586,0.061353322118521],[-0.024495463818312,0.027777979150414,0.037519861012697]],[[-0.015627395361662,-0.037979513406754,-0.025376684963703],[0.0075335972942412,-0.024031274020672,0.11114340275526],[0.0066020307131112,-0.0044364272616804,0.023467563092709]],[[0.0023736464791,0.036140482872725,-0.06132435053587],[0.079627834260464,-0.010073219425976,0.022083010524511],[-0.01079627033323,0.0085705211386085,0.02888398617506]],[[-0.01638688147068,-0.015747489407659,0.0086913397535682],[0.020139273256063,-0.010748829692602,0.011562181636691],[-0.028251456096768,-0.062421329319477,0.027700308710337]],[[-0.01257505454123,0.067789971828461,0.055378288030624],[0.020427577197552,-0.0078375786542892,0.053680490702391],[0.032324340194464,0.03153995424509,-0.010829603299499]],[[0.026582401245832,-0.0044269389472902,0.018786335363984],[-0.00016132747987285,0.082207776606083,-0.063362076878548],[0.0012120179599151,0.03568783774972,-0.035852380096912]],[[0.017254682257771,-0.0015422772848979,-0.082027152180672],[-0.10081998258829,0.025369171053171,0.018987946212292],[-0.011050553992391,-0.015991844236851,0.020459873601794]],[[0.053219825029373,0.0027050212956965,0.045270670205355],[-0.063396356999874,-0.039916947484016,-0.018086079508066],[-0.0049080769531429,-0.031095804646611,-0.0040083895437419]],[[-0.0061258161440492,0.045540869235992,0.05526027828455],[0.0096270758658648,-0.018573133274913,-0.030924361199141],[0.012788142077625,-0.07543259114027,-0.017011027783155]],[[0.020641496405005,-0.010883347131312,0.068850390613079],[0.067691132426262,-0.0050218715332448,0.025910675525665],[0.022230725735426,0.00018467514018994,-0.042687054723501]],[[0.027320651337504,0.019366370514035,0.056790061295033],[0.0064612468704581,0.087952099740505,-0.001074256724678],[-0.058042336255312,-0.017030416056514,0.011132401414216]],[[0.022755464538932,0.028579441830516,0.036630384624004],[0.030381165444851,-0.016264021396637,0.043845798820257],[-0.062428221106529,-0.05321016907692,-0.0058640358038247]],[[-0.057407326996326,-0.035504300147295,0.029129687696695],[0.034054841846228,0.038905929774046,0.015162380412221],[-0.10209734737873,-0.027049675583839,0.017893295735121]],[[0.014257615432143,0.036559458822012,-0.0070888199843466],[-0.020957937464118,-0.0044468156993389,-0.03521304577589],[0.047529451549053,-0.027480041608214,-0.0036599072627723]],[[-0.0045924470759928,-0.042768467217684,0.029174238443375],[-0.032401517033577,-0.12397710233927,-0.0029068593867123],[0.049988321959972,0.036743603646755,-0.0021883135195822]],[[0.06216911226511,-0.093727558851242,0.015702465549111],[0.0012360577238724,-0.024631464853883,-0.0019846609793603],[0.0034215294290334,-0.0077538499608636,-0.0054525244049728]],[[0.19593738019466,0.0043240240775049,-0.0093005504459143],[-0.037386234849691,0.17601004242897,-0.053471196442842],[-0.032340381294489,0.032705292105675,0.063362389802933]],[[0.029236238449812,0.018665459007025,0.032940436154604],[-0.050494596362114,-0.020772950723767,-0.0027482020668685],[-0.014114576391876,0.095445685088634,0.0078176390379667]],[[0.00028122449293733,0.0074675194919109,0.0014534967485815],[0.035100877285004,0.036268595606089,0.0051344451494515],[0.086776882410049,-0.048466991633177,-0.0020256841089576]],[[0.053115710616112,-0.066785216331482,0.048921957612038],[-0.0092108035460114,-0.018207652494311,0.020819962024689],[0.011793507263064,-0.059546604752541,0.05657697468996]],[[-0.070147156715393,0.00099640246480703,-0.0092854369431734],[0.068333007395267,-0.0047038923949003,0.037783276289701],[0.063208520412445,0.0087963324040174,-0.072443634271622]],[[0.029765017330647,-0.014143456704915,-0.051889143884182],[-0.0582036934793,0.038546454161406,0.0046398281119764],[0.00084706384222955,-0.020323302596807,-0.03491884469986]]],[[[0.015765989199281,-0.024846956133842,0.059659741818905],[0.096220232546329,0.0049118543975055,-0.060007207095623],[-0.037164937704802,-0.051225051283836,0.045924425125122]],[[0.0089462967589498,-0.012385350652039,0.028437733650208],[-0.054802354425192,-0.043372541666031,-0.035239558666945],[0.012138203717768,-0.018855556845665,0.014924987219274]],[[-4.1488896385999e-05,0.011642111465335,0.065400995314121],[0.024159666150808,0.012779397889972,-0.059139333665371],[-0.014174318872392,-0.040385764092207,0.081113018095493]],[[0.015027893707156,0.081823945045471,0.038595642894506],[0.0062966085970402,-0.013339942321181,0.027569092810154],[0.026801062747836,0.040413707494736,-0.017008848488331]],[[-0.0043436666019261,-0.0077054761350155,-0.030954169109464],[0.00040518087917008,-0.0048383013345301,-0.016542494297028],[-0.00015289982547984,-0.027150800451636,-0.004266852978617]],[[0.0065940711647272,0.0038426970131695,0.033293735235929],[0.005437608808279,0.034182742238045,0.021526267752051],[0.069839045405388,-0.0012187415268272,0.057736709713936]],[[0.02643833309412,-0.0087546808645129,0.014272179454565],[0.00801757350564,0.03353064879775,-0.0064837099052966],[-0.055906306952238,0.0031544147059321,0.0014989613555372]],[[-0.0022754496894777,-0.013540914282203,0.026295900344849],[0.063529588282108,0.04004879295826,0.049334440380335],[0.02265896461904,-0.078484706580639,0.082581743597984]],[[0.052418027073145,0.00015041315054987,0.078563421964645],[0.026641827076674,0.013504485599697,0.072114318609238],[-0.068954087793827,-0.045085944235325,-0.065806537866592]],[[0.019952705129981,-0.042690139263868,0.075558871030807],[0.0074269594624639,0.060011364519596,-0.02327137440443],[-0.022431502118707,-0.01278845500201,0.02224532328546]],[[0.030866680666804,-0.028521507978439,0.082125641405582],[0.034094236791134,0.090696521103382,0.00070539233274758],[-0.0072587258182466,-0.025005120784044,0.021989852190018]],[[0.0046416372060776,-0.0093803582713008,-0.068675182759762],[0.044327396899462,0.11289131641388,0.045580942183733],[0.019987540319562,-0.0046371049247682,-0.049923963844776]],[[0.11712051182985,0.034245349466801,0.034496657550335],[-0.089724898338318,0.12178880721331,0.057357750833035],[0.017758645117283,0.034646980464458,-0.043810520321131]],[[0.01296809501946,-0.033805329352617,-0.012741701677442],[0.012888649478555,0.087381541728973,-0.018381208181381],[0.013140172697604,-0.03121973760426,0.047925613820553]],[[-0.046131826937199,0.01238567661494,-0.022666512057185],[0.067103140056133,-0.064981691539288,0.0056839999742806],[-0.0053317216224968,0.016276866197586,-0.082108125090599]],[[-0.090401709079742,0.022278467193246,-0.071672879159451],[0.066947020590305,-0.081525079905987,0.024128766730428],[-0.045173078775406,-0.0064237206242979,-0.02354240603745]],[[-0.014864449389279,0.018890803679824,0.087741687893867],[-0.045002553611994,0.038999617099762,0.011732103303075],[0.042669456452131,0.0060976427048445,0.031917411834002]],[[0.007911479100585,-0.05254490673542,-0.024928426370025],[-0.084176585078239,-0.053858157247305,0.022208718582988],[0.026246508583426,0.016674214974046,-0.035607915371656]],[[-0.0095269307494164,0.02767550945282,-0.0051439953967929],[-0.039339479058981,0.032348819077015,0.016976684331894],[0.017967343330383,0.03715106472373,0.037385389208794]],[[-0.0046677812933922,0.015299360267818,-0.004961047321558],[0.02878400310874,0.040763355791569,7.4314455559943e-05],[-0.014683093875647,-0.05290013179183,0.085272662341595]],[[0.021062983199954,0.022603990510106,0.010078461840749],[-0.11184635013342,0.0056576984934509,0.0010810946114361],[0.069110922515392,-0.036801844835281,-0.08410570025444]],[[0.050016336143017,0.075233452022076,-0.015777761116624],[0.018140491098166,-0.030020767822862,0.063064947724342],[0.10698223859072,0.058204673230648,0.047562543302774]],[[-0.14430025219917,0.030062915757298,-0.052965916693211],[-0.026967544108629,0.0034892517141998,0.039407137781382],[-0.014787419699132,0.0050474349409342,-0.0035173851065338]],[[-0.039668638259172,-0.017998874187469,-0.025569882243872],[0.0060593839734793,0.04381500184536,0.040424104779959],[-0.053495597094297,0.0014342948561534,-0.0061960201710463]],[[0.041953019797802,-0.036846309900284,-0.045262534171343],[0.041382748633623,-0.017092918977141,0.050935044884682],[-0.032875224947929,-0.0013032119022682,0.014752722345293]],[[-0.021384488791227,-0.0089947897940874,0.021309725940228],[0.0051655517891049,-0.025074535980821,0.022465299814939],[0.0063146213069558,0.09462421387434,-0.069150328636169]],[[-0.0023678299039602,0.037831645458937,-0.0079341297969222],[0.0017725047655404,0.055064026266336,0.027627844363451],[0.030289862304926,0.010001364164054,0.025484837591648]],[[0.050595603883266,0.066153064370155,0.022837821394205],[-0.025525977835059,0.044047672301531,0.044060774147511],[0.0018757187062874,0.028970170766115,-0.0084680505096912]],[[-0.086761206388474,-0.013973334804177,0.027096820995212],[-0.014474340714514,0.071781404316425,-0.018732385709882],[0.0010264661395922,-0.087133280932903,0.090106934309006]],[[-0.0028245868161321,-0.092046119272709,0.03012859262526],[0.047001585364342,0.01636016741395,-0.008829434402287],[-0.0088429236784577,0.06153442338109,0.043400824069977]],[[0.032765179872513,-0.0035127073060721,0.041865799576044],[-0.0012887861812487,0.0076954355463386,-0.0023109039757401],[-0.010603605769575,0.091550014913082,0.016610819846392]],[[-0.019046168774366,0.023697664961219,0.016216401010752],[0.0098542841151357,-0.02508894726634,0.056987948715687],[0.07954653352499,-0.01520914118737,-0.0070231012068689]],[[0.013910155743361,-0.020987030118704,0.039758242666721],[-0.070836439728737,0.084355100989342,0.011461487971246],[-0.009128606878221,0.056010641157627,0.010891905985773]],[[-0.028955329209566,0.0083340015262365,-0.019439687952399],[0.018584337085485,0.10240029543638,-0.0070504005998373],[-0.020577531307936,-0.016837861388922,-0.016074568033218]],[[-0.0057741282507777,-0.015154305845499,0.070677660405636],[0.023766005411744,0.053408704698086,-0.01719381287694],[-0.026238506659865,0.045697666704655,0.02420843206346]],[[0.0056486702524126,0.018124952912331,0.0063454462215304],[0.024650631472468,0.016576699912548,0.054303485900164],[-0.017191087827086,-7.7930344559718e-05,0.026726726442575]],[[0.021293817088008,0.0018870810745284,0.070558041334152],[-0.0029034451581538,0.025485273450613,-0.019079055637121],[-0.095395930111408,-0.014689517207444,0.041335944086313]],[[0.0062172678299248,0.053752306848764,-0.0067688459530473],[0.03401406109333,0.010009185411036,0.074490010738373],[-0.025925694033504,-0.020526917651296,0.047191970050335]],[[-0.111817099154,-0.057749710977077,-0.014893246814609],[0.055221617221832,0.054793313145638,0.015224586240947],[0.03946889564395,-0.028765128925443,0.11535319685936]],[[0.018018109723926,0.0046020159497857,0.00078606599709019],[0.0034642529208213,0.08192902058363,0.017422262579203],[-0.039213661104441,0.005588186904788,0.023303970694542]],[[0.022858740761876,0.032559633255005,0.032924517989159],[-0.043784733861685,0.058233812451363,0.039574928581715],[-0.0095043675974011,0.015210060402751,-0.13236655294895]],[[-0.013494268059731,0.038902945816517,0.057572193443775],[0.031600072979927,0.0025264360010624,0.037771444767714],[0.07752151787281,-0.027543816715479,0.056538332253695]],[[0.045849658548832,-0.0036470873747021,0.014686997979879],[-0.05128600820899,0.015229360200465,0.055432789027691],[0.13462659716606,-0.019906284287572,0.045170020312071]],[[-0.014301006682217,0.01810253597796,0.07364884018898],[0.00068574235774577,-0.049120623618364,-0.0062110899016261],[-0.057273298501968,-0.018835160881281,-0.008079401217401]],[[0.076121360063553,0.0078585930168629,0.005752463825047],[-0.045891959220171,-0.023890437558293,0.015322288498282],[0.026447417214513,-0.047651648521423,0.016237739473581]],[[0.10314685106277,0.038612477481365,-0.0088116843253374],[0.036666620522738,0.12196373939514,0.13158418238163],[0.15030112862587,0.037441898137331,-0.055211070924997]],[[0.0023272160906345,-0.040209237486124,0.00024236318131443],[0.027257231995463,-0.02584120631218,-0.013482690788805],[-0.034677665680647,-0.016473094001412,0.0073257423937321]],[[-0.01490063033998,-0.0056737759150565,-0.02001147903502],[-0.0822634100914,-0.037350088357925,-0.090085156261921],[-0.0095547940582037,-0.027048325166106,-0.016609018668532]],[[0.049869060516357,0.0010477879550308,0.0091957943513989],[-0.081466846168041,-0.063418947160244,0.0031393594108522],[0.0060539888218045,-0.008015226572752,-0.018876934424043]],[[0.08103634417057,-0.10204833745956,0.017487188801169],[0.070954978466034,-0.099403381347656,0.0065272240899503],[-0.046942315995693,-0.095980040729046,0.030333941802382]],[[0.059341493993998,0.0077201789245009,-0.052409894764423],[-0.0073107327334583,0.03877941146493,0.0027552009560168],[-0.070759147405624,0.058803237974644,0.040083322674036]],[[-0.059840150177479,-0.010175187140703,0.017956025898457],[0.028841279447079,-0.0062875659205019,-0.0090284636244178],[0.0014014138141647,0.031292974948883,0.055427018553019]],[[-0.0087363990023732,-0.037869639694691,-0.043528947979212],[-0.041182700544596,-0.013164574280381,0.0672507584095],[0.028569225221872,-0.0012948079966009,-0.053389899432659]],[[0.012349423021078,0.062950119376183,0.049348600208759],[0.042449831962585,-0.031433925032616,0.02758246473968],[-0.02422521263361,0.034560956060886,0.082665108144283]],[[-0.0072022918611765,-0.054630696773529,0.040367610752583],[0.024787371978164,0.00033276423346251,-0.027101961895823],[-0.027093008160591,-0.020396567881107,-0.0011551722418517]],[[0.021958541125059,-0.034364569932222,-0.0045632147230208],[-0.052482541650534,0.029115367680788,-0.10068719089031],[-0.0032480815425515,0.058937180787325,-0.0068005239591002]],[[0.063772425055504,0.039316799491644,0.066943943500519],[-0.018431255593896,-0.044217795133591,0.0069619407877326],[-0.0073394561186433,-0.061529085040092,-0.029622847214341]],[[-0.024671135470271,0.005243381485343,-0.017602615058422],[-0.010485202074051,0.018362643197179,-0.11136696487665],[-0.046213179826736,-0.028715303167701,-0.034486051648855]],[[0.010991454124451,0.010756593197584,0.055064804852009],[-0.02744197845459,-0.011010523885489,0.014606596902013],[0.036449305713177,0.012599371373653,0.014582780189812]],[[-0.0072055510245264,0.019522005692124,-0.030177410691977],[0.026683555915952,0.12822824716568,0.08500574529171],[0.070939548313618,-0.0099159982055426,0.035083569586277]],[[0.0016327807679772,-0.059519443660975,0.027064630761743],[0.068382680416107,-0.047186981886625,0.044106151908636],[-0.089377485215664,0.026923004537821,-0.014752042479813]],[[-0.019681176170707,-0.059443037956953,0.030788077041507],[-0.025014227256179,-0.082397058606148,-0.010583456605673],[-0.12150490283966,-0.12258774787188,-0.10538690537214]],[[-0.015159228816628,0.027348728850484,0.011971117928624],[-0.017554335296154,-0.031866196542978,0.015026890672743],[0.018798233941197,0.021589105948806,0.011417058296502]],[[0.0072561297565699,0.010127345100045,-0.017010122537613],[0.060466758906841,0.080928638577461,-0.014401949942112],[0.030445029959083,-0.007511992007494,-0.041846960783005]],[[-0.01862077228725,0.035193383693695,0.07294650375843],[-0.0026455295737833,0.027770595625043,-0.058167543262243],[-0.01086157746613,0.0038450846914202,-0.0010687665781006]],[[0.086815625429153,0.045490425080061,-0.0021838650573045],[0.059526905417442,0.0030697635374963,0.058300171047449],[0.022748243063688,0.017568469047546,0.069848567247391]],[[0.054521333426237,-0.053725089877844,0.0017841544467956],[-0.038970626890659,0.0046299048699439,0.022219680249691],[-0.046964768320322,-0.014289071783423,0.006851474288851]],[[0.026221290230751,0.080699995160103,0.021859478205442],[-0.022138893604279,0.045043502002954,0.068305589258671],[0.05906405672431,-0.073270499706268,0.041473712772131]],[[0.015411314554513,0.020574005320668,0.066994346678257],[0.076501309871674,0.042007118463516,0.0057914154604077],[0.099381491541862,-0.018873149529099,-0.02528565749526]],[[0.039728779345751,0.013183801434934,0.0081414859741926],[0.025444682687521,-0.044933348894119,0.086403377354145],[0.0091995159164071,0.028392115607858,0.053420439362526]],[[0.063808172941208,0.071526952087879,0.087614946067333],[-0.036147639155388,0.049189474433661,0.033713944256306],[0.06906720250845,-0.041441962122917,0.0020585169550031]],[[-0.047941956669092,0.020406033843756,0.0063040913082659],[-0.088727593421936,0.014020126312971,-0.027749916538596],[-0.0070413164794445,-0.012721586972475,-0.044840935617685]],[[-0.063676483929157,0.039830230176449,-0.023861665278673],[-0.07490636408329,0.072760090231895,0.015692608430982],[0.0052146464586258,0.041179459542036,-0.0055098542943597]],[[-0.0093772644177079,-0.013229809701443,0.025334116071463],[0.032073646783829,0.064264081418514,-0.0027540936134756],[-0.026872355490923,0.0023085649590939,0.039230491966009]],[[-0.036273304373026,-0.016186779364944,-0.048129212111235],[0.014976484701037,-0.0074515654705465,0.0042933449149132],[0.0054919952526689,0.044515155255795,0.046046942472458]],[[0.0038615737576038,0.048653092235327,-0.090954385697842],[0.0075210160575807,0.0017105635488406,-0.021626247093081],[0.056390788406134,0.0043261088430882,0.01938808336854]],[[0.031459987163544,-0.0607022754848,0.013267273083329],[0.069072671234608,-0.044530611485243,-0.043831255286932],[0.012651144526899,0.035892646759748,0.078372687101364]],[[0.048906143754721,-0.02692955173552,-0.0037147917319089],[0.0076482091099024,0.024902168661356,0.053391095250845],[0.039236344397068,-0.030905226245522,0.076676055788994]],[[0.032340671867132,-0.034301850944757,0.0031429252121598],[-0.015370542183518,0.031409107148647,0.10508005321026],[-0.031749375164509,-0.04447678476572,0.0053929416462779]],[[0.0072700325399637,-0.038820546120405,0.06288306415081],[0.014286426827312,-0.050984129309654,0.055444333702326],[0.013092137873173,-0.077384531497955,0.021623969078064]],[[0.048178385943174,-0.014385282061994,-0.022510973736644],[0.038012523204088,0.029946815222502,-0.035024784505367],[-0.0033179800957441,-0.090492591261864,-0.043461363762617]],[[0.062130816280842,-0.015955895185471,0.02018790319562],[-0.0039195539429784,0.003632890060544,-0.0046795117668808],[-0.016730112954974,0.030340237542987,-0.074391834437847]],[[0.0062476880848408,0.019465064629912,0.081611432135105],[-0.016433661803603,-0.032607607543468,0.00088441284606233],[0.02905460074544,-0.04094697907567,0.087370216846466]],[[0.058898642659187,-0.082951754331589,0.086078785359859],[-0.0076262485235929,0.0065441997721791,0.057465612888336],[0.024234147742391,0.072196215391159,0.00098311481997371]],[[0.02293904311955,0.036830704659224,0.040731754153967],[0.0013656825758517,0.039424303919077,-0.029483569785953],[0.053523570299149,0.043294467031956,-0.018506780266762]],[[0.0025829386431724,0.023227464407682,-0.052699021995068],[0.069234102964401,-0.014992327429354,0.039384681731462],[0.044432517141104,-0.036237109452486,0.019134167581797]],[[0.057975348085165,0.014313905499876,0.010794905014336],[0.011808277107775,0.066465377807617,-0.019700724631548],[-0.0048426007851958,0.03203384205699,0.032142832875252]],[[0.043964419513941,-0.017501451075077,-0.0065655838698149],[0.015994103625417,0.055768445134163,-0.052761763334274],[0.024324174970388,-0.044621869921684,0.035595126450062]],[[0.057879902422428,-0.0091512119397521,-0.027126094326377],[0.013680882751942,-0.01790352538228,0.060915477573872],[-0.020828822627664,0.044440802186728,0.043845903128386]],[[0.037281055003405,0.035265654325485,-0.0104561727494],[-0.0031473806593567,-0.047484651207924,0.017585283145308],[0.016220957040787,-0.029346155002713,-0.022565819323063]],[[-0.059912901371717,-0.0027121142484248,-0.034721579402685],[0.022740827873349,0.010657660663128,0.0087081817910075],[0.047197632491589,-0.039087396115065,0.0050691096112132]],[[0.010068094357848,-0.0087860319763422,-0.018825959414244],[0.031617909669876,0.067530281841755,0.051169253885746],[0.058797158300877,0.096719600260258,-0.068668849766254]],[[-0.035335756838322,-0.033637993037701,0.033689118921757],[0.027604632079601,0.051431152969599,-0.07959671318531],[-0.029674669727683,0.042765587568283,-0.012655233964324]],[[-0.0094009563326836,0.0010657631792128,-0.024870337918401],[0.032061826437712,0.013745538890362,0.0356077067554],[0.073778092861176,0.037691108882427,-0.023440055549145]],[[-0.035563733428717,-0.086416199803352,-0.065163262188435],[-0.070461101830006,0.0029356109444052,0.013445627875626],[-0.060910951346159,-0.032307650893927,0.029002889990807]],[[0.0022945229429752,0.030916640534997,-0.027704499661922],[0.028000172227621,-0.058981563895941,0.00912478659302],[-0.0082309357821941,0.00093047902919352,-0.035349629819393]],[[-0.022002082318068,-0.044709946960211,0.046659104526043],[-0.031236236914992,0.03880638256669,0.028637129813433],[0.028450470417738,-0.043140325695276,0.036366544663906]],[[0.052645299583673,-0.023638341575861,0.02269478701055],[0.024977762252092,0.062666580080986,-0.037896763533354],[0.065039984881878,0.036321002990007,0.098958477377892]],[[0.065174907445908,-0.015424305573106,-0.051422592252493],[0.035187885165215,0.010284641757607,0.040070321410894],[-0.01871756836772,0.012349274009466,-0.039158713072538]],[[0.01087237149477,0.0301010645926,-0.044276099652052],[0.022579548880458,-0.0088920509442687,0.0014145551249385],[0.01495243050158,0.036535140126944,0.0096364598721266]],[[-0.0067106243222952,-0.053688328713179,-0.025792293250561],[0.0091116325929761,0.097114518284798,-0.007798277772963],[-0.084513507783413,-0.049258187413216,-0.032898426055908]],[[0.0093984911218286,0.034127555787563,0.068831190466881],[0.025012511759996,0.056377112865448,0.010330588556826],[-0.052867237478495,0.04941313713789,0.042574845254421]],[[-0.0094187557697296,0.0047600129619241,0.0092194816097617],[0.077180951833725,0.010095247998834,0.057831063866615],[0.055817876011133,0.046090137213469,0.01831709779799]],[[-0.010738343000412,-0.07273230701685,-0.0059735155664384],[-0.015549604780972,-0.045849721878767,-0.034489847719669],[-0.042924199253321,-0.049765273928642,-0.024161737412214]],[[0.048116646707058,0.043824966996908,-0.020757177844644],[-0.062627263367176,-0.048279978334904,0.091930821537971],[-0.044003028422594,0.00084886240074411,0.020794957876205]],[[0.0072353924624622,-0.046248462051153,0.0076272590085864],[0.020314458757639,0.013994882814586,0.039686966687441],[-0.01794464699924,0.045691542327404,-0.033310707658529]],[[0.07488626986742,-0.034209225326777,-0.038858868181705],[-0.0031314613297582,0.098452374339104,0.0027192328125238],[0.088369444012642,-0.025082133710384,0.14799854159355]],[[0.030519442632794,0.011515688151121,-0.029225340113044],[-0.015184512361884,-0.00096222257707268,0.021565498784184],[-0.011832640506327,0.078498877584934,-0.052269130945206]],[[-0.015310492366552,0.076664187014103,-0.023001041263342],[-0.039624866098166,-0.033421091735363,-0.0077968146651983],[-0.096159785985947,0.01449522562325,-0.071716792881489]],[[-0.047585468739271,0.028698498383164,-0.01641183719039],[-0.005080240778625,0.071922138333321,0.015911936759949],[0.058716185390949,-0.0011339901247993,0.088077045977116]],[[0.024351393803954,-0.035352230072021,-0.056640140712261],[0.059365328401327,0.02537377551198,-0.033039920032024],[-0.061087962239981,0.01858707331121,0.013623679988086]],[[-0.064847372472286,-0.039275031536818,-0.062781348824501],[0.03381335362792,-0.020711172372103,0.0013640359975398],[-0.026403957977891,-0.047335065901279,0.002936499658972]],[[-0.057864245027304,-0.0086702546104789,-0.030172120779753],[0.024476451799273,0.023789530619979,0.052335701882839],[0.01807364448905,-0.069797873497009,-0.056255377829075]],[[-0.0057435450144112,-0.029233587905765,-0.028076922520995],[-0.060501027852297,-0.046570476144552,-0.068528458476067],[0.072955675423145,-0.024915600195527,0.031248992308974]],[[0.0022434012498707,-0.034155886620283,0.056976918131113],[-0.046431161463261,0.0063312873244286,-0.096232198178768],[0.0010189877357334,-0.032861206680536,0.028977919369936]],[[-0.036604229360819,-0.082177765667439,-0.058106355369091],[0.018739907070994,-0.0071249138563871,0.022879222407937],[-0.0047858161851764,-0.037208147346973,-0.066915571689606]],[[-0.007655740249902,-0.024462716653943,-0.01988760381937],[0.017655532807112,0.035930637270212,0.045778907835484],[0.0110919540748,0.068946972489357,-0.029311530292034]],[[0.02656839415431,-0.08739610761404,-0.025554738938808],[-0.051428213715553,-0.041018594056368,0.00027741293888539],[0.024564057588577,-0.0038298019208014,-0.047547031193972]],[[-0.01582451350987,-0.0017592528602108,-0.04928432404995],[-0.016658611595631,0.058399587869644,0.0042963097803295],[-0.025784276425838,0.072061508893967,-0.049858666956425]],[[0.046897020190954,0.075855657458305,0.099265746772289],[0.0069726738147438,-0.022338517010212,0.053802993148565],[0.0078939395025373,0.021171579137444,0.10247696191072]],[[0.016558023169637,0.044393554329872,0.046207934617996],[-0.059389851987362,0.017322912812233,-0.036143492907286],[-0.0091413678601384,-0.026061510667205,0.039951097220182]],[[-0.010797220282257,-0.023009285330772,-0.02444844506681],[-0.065115347504616,0.031692676246166,-0.013918999582529],[0.0061075976118445,-0.0014087659073994,-0.042702484875917]],[[-0.010369051247835,-0.025823013857007,0.096808150410652],[-0.026190172880888,-0.058163296431303,-0.057163707911968],[-0.0023103200364858,-0.0045066806487739,-0.044929154217243]],[[-0.055806126445532,0.019199524074793,0.012232252396643],[0.060691088438034,-0.10628941655159,0.0002437042130623],[0.055806994438171,-0.025669382885098,0.05679028481245]],[[-0.011881043203175,0.041891243308783,-0.01558031141758],[0.034034535288811,0.048713471740484,0.026209371164441],[0.029120730236173,0.0042213359847665,0.0041272374801338]],[[-0.035965628921986,0.020934041589499,0.02570959366858],[0.014734295196831,0.001984556671232,-0.083692513406277],[0.023948652669787,-0.011846169829369,0.026982843875885]],[[0.0080233281478286,0.022744417190552,0.032345056533813],[0.045433472841978,0.040589939802885,0.0028148053679615],[-0.036060266196728,0.036386650055647,0.037073284387589]],[[0.014011699706316,0.0006490129744634,0.023429617285728],[0.047779012471437,0.036870025098324,-0.016641093418002],[-0.054480977356434,0.06134882196784,0.017437154427171]]],[[[0.027509169653058,0.030206119641662,0.00060219963779673],[0.0094283828511834,-0.020203942433,-0.034328568726778],[-0.033249441534281,-0.02619388513267,-0.0037065595388412]],[[0.053287982940674,0.00058360630646348,-0.0165692307055],[-0.019381770864129,-0.059094306081533,0.026525920256972],[-0.024152267724276,-0.0055214115418494,-0.019450206309557]],[[0.01621905900538,0.054331298917532,-0.050459247082472],[0.069967314600945,-0.016146916896105,0.012949079275131],[0.0605623498559,-0.074481070041656,-0.0076808049343526]],[[0.017867224290967,-0.021737556904554,0.029086278751493],[0.014172585681081,-0.011188670992851,-0.051722161471844],[0.010544707067311,-0.017656775191426,0.0041267611086369]],[[0.061536379158497,-0.014263772405684,0.055627625435591],[-0.06158747151494,-0.064055204391479,0.054778676480055],[-0.017130872234702,0.06330119818449,-0.012095873244107]],[[0.00066645670449361,0.037523869425058,-0.075675338506699],[0.004398126155138,-0.070861637592316,-0.0073655913583934],[0.029695529490709,0.035770386457443,-0.099260181188583]],[[-0.026078954339027,0.011016448028386,-0.02295963652432],[-0.028760420158505,-0.028103081509471,-0.022960333153605],[-0.0072306315414608,-0.013157877139747,-0.016327450051904]],[[0.015252160839736,-0.0085450215265155,0.018730934709311],[0.030638542026281,0.0089643690735102,0.036770723760128],[0.04563083127141,0.06107884645462,-0.0039023847784847]],[[-0.050899881869555,0.072007656097412,0.024684527888894],[-0.0023553518112749,0.0042391372844577,-0.052177526056767],[-0.062180452048779,0.057525150477886,0.038506221026182]],[[0.020334973931313,0.012082363478839,0.015886675566435],[0.040295708924532,0.0057923626154661,-0.0080423345789313],[-0.0010841549374163,0.025444436818361,-0.021418219432235]],[[-0.024362348020077,-0.010036698542535,0.036561027169228],[0.010343790054321,0.030491687357426,0.042380753904581],[0.079382725059986,0.060836356133223,-0.016426650807261]],[[-0.038371779024601,0.00057932222262025,0.11897519230843],[-0.015867192298174,0.0064020240679383,0.10660561174154],[-0.044757377356291,-0.025985201820731,-0.072256773710251]],[[0.067208342254162,0.013721570372581,-0.066153109073639],[-0.013085084035993,0.11068771034479,0.053535245358944],[0.047993205487728,0.034834899008274,0.048252135515213]],[[-0.031396009027958,0.013792968355119,-0.043553076684475],[0.017360456287861,-0.074617303907871,0.016457915306091],[0.081523142755032,0.02469621039927,-0.012909176759422]],[[0.027484487742186,-0.022734355181456,0.050488147884607],[-0.030861999839544,-0.031442619860172,0.0083613554015756],[-0.049826253205538,0.046503651887178,0.014340601861477]],[[0.0023622789885849,0.025906788185239,0.069188840687275],[-0.0384879745543,0.024097353219986,-0.038781583309174],[0.086895249783993,-0.02697472833097,0.017443602904677]],[[0.0033346328418702,0.026005491614342,-0.027580499649048],[0.050990864634514,0.064353518188,0.041879594326019],[0.028004754334688,-0.070144668221474,0.041741635650396]],[[0.02924813143909,0.066071234643459,-0.040285475552082],[-0.011367694474757,0.01966343075037,-0.0059567843563855],[-0.055467654019594,0.02302360907197,0.043088432401419]],[[0.042936611920595,-0.062001138925552,-0.058306630700827],[-0.032619819045067,-0.017726980149746,0.0017119647236541],[0.0080527765676379,0.050472799688578,-0.005778731778264]],[[0.097628690302372,0.02730461768806,0.02934954315424],[0.034627381712198,-0.029552910476923,-0.028969412669539],[0.027108618989587,0.11860650777817,0.019183892756701]],[[-0.0033399234525859,-0.021758873015642,-0.037234645336866],[-0.041029840707779,0.062081109732389,-0.0038967907894403],[0.04660988599062,0.01140408590436,-0.030775915831327]],[[-0.015487617813051,0.019684428349137,0.010817329399288],[0.072633184492588,0.06970888376236,-0.0094981677830219],[0.013035199604928,0.018874812871218,-0.052241157740355]],[[-0.026991909369826,0.05490355938673,-0.0029288984369487],[-0.045754354447126,0.04270238801837,-0.027546990662813],[-0.033219281584024,-0.042119491845369,-0.045038387179375]],[[0.07854175567627,0.028097059577703,-0.010881932452321],[0.0017980135744438,0.053864318877459,-0.017788099125028],[-0.064126960933208,-2.8252747142687e-05,0.053583439439535]],[[0.055203475058079,-0.023226449266076,0.042787414044142],[-0.022273300215602,-0.050353139638901,-0.011624289676547],[-0.050622053444386,-0.029621446505189,0.067556351423264]],[[-0.013093918561935,0.038191922008991,0.023327428847551],[-0.062399126589298,-0.054337341338396,0.012176832184196],[0.0044423579238355,-0.0060797780752182,-0.025520619004965]],[[-0.028816970065236,-0.030173854902387,0.013331746682525],[0.018363106995821,0.029036048799753,0.0078786984086037],[0.0089375078678131,0.062586292624474,-0.03601998090744]],[[0.0085466653108597,-0.0070364866405725,0.018881475552917],[-0.02454105950892,-0.013561960309744,-0.041566394269466],[0.066932789981365,-0.021739283576608,-0.00020799055346288]],[[0.083877004683018,-0.03342579677701,-0.01232719887048],[0.032642100006342,-0.0015596924349666,-0.01956300996244],[0.0061498750001192,0.026027219370008,0.098093144595623]],[[0.0047720205038786,0.061688147485256,0.047563653439283],[0.099780216813087,0.048741210252047,-0.007714977953583],[0.034132428467274,0.078680507838726,0.093154229223728]],[[-0.005262647755444,-0.01578619889915,-0.029471745714545],[-0.12027237564325,-0.050154644995928,0.0066794920712709],[-0.0084504475817084,0.05824901163578,0.0062478426843882]],[[0.037351377308369,0.0092950463294983,0.080670863389969],[0.026422902941704,0.057151533663273,0.10168828070164],[-0.029826566576958,0.05226293951273,-0.037349469959736]],[[0.049543142318726,0.063100837171078,0.010826905258],[0.040160838514566,0.044369887560606,0.012259440496564],[0.0015159178292379,0.086641050875187,0.0092393746599555]],[[-0.00070261483779177,0.050341732800007,-0.039091691374779],[0.072080798447132,0.029529612511396,0.078743360936642],[0.038673669099808,-0.015417118556798,-0.026587521657348]],[[-0.078616045415401,0.0083818128332496,-0.011540676467121],[0.0036602234467864,0.031849101185799,-0.014944466762245],[-0.031018923968077,-0.022607054561377,-0.025559030473232]],[[0.02656015753746,-0.019683130085468,-0.043470747768879],[-0.074968129396439,0.034670040011406,0.0054070120677352],[-0.0088017117232084,0.0032555088400841,0.0012183749349788]],[[0.12953895330429,0.013021462596953,0.025468604639173],[-0.010979604907334,-0.066696591675282,0.055074069648981],[0.01873155683279,0.020879182964563,-0.0088464645668864]],[[-0.0063311015255749,-0.062283907085657,-0.011414545588195],[0.14026662707329,-8.7783526396379e-05,0.034603212028742],[0.0024793122429401,-0.030908238142729,0.015875024721026]],[[-0.024620089679956,-0.0609210729599,-0.031063348054886],[0.016707815229893,-0.039117339998484,-0.01433087605983],[-0.052142333239317,0.016366209834814,0.070249646902084]],[[0.036299198865891,0.048102684319019,-0.0073802834376693],[-0.0016715981764719,-0.011679760180414,0.024515578523278],[0.033549908548594,0.014555002562702,0.070562601089478]],[[0.019654778763652,0.033651296049356,-0.0019730285275728],[0.019237499684095,-0.031538553535938,-0.014462439343333],[-0.031478583812714,0.054021995514631,0.013244202360511]],[[0.057946462184191,0.074827171862125,0.032443404197693],[0.031320340931416,0.017585802823305,0.044391348958015],[-0.027581820264459,0.026791859418154,0.023008530959487]],[[0.056025374680758,0.040103308856487,0.017622135579586],[0.092771500349045,-0.0047321491874754,-0.037913620471954],[-0.0066620125435293,0.081843160092831,0.04556730389595]],[[-0.017522403970361,0.0030934675596654,-0.030026556923985],[-0.044659875333309,0.030512476339936,0.0083511350676417],[-0.011099533177912,0.0071697924286127,-0.0035146293230355]],[[0.06495376676321,0.046189043670893,0.041736014187336],[0.0070780660025775,0.058498464524746,-0.039614960551262],[-0.044461257755756,-0.018747169524431,0.096195690333843]],[[0.041140977293253,-0.026330849155784,0.0056355302222073],[0.13757102191448,0.041804779320955,0.059769049286842],[0.060094948858023,0.066214576363564,-0.08835469186306]],[[0.031261011958122,-0.0040138796903193,-0.033107507973909],[0.023395085707307,-0.048305045813322,0.049551881849766],[-0.014775618910789,0.026426607742906,0.021304439753294]],[[-0.030331199988723,-0.041719194501638,-0.031424775719643],[0.0060759489424527,0.036819066852331,-0.0014869685983285],[0.010215278714895,0.034595847129822,-0.07543607801199]],[[0.045335318893194,0.049779482185841,0.019306724891067],[-0.022315707057714,-0.037925723940134,-0.0025022511836141],[-0.04384621232748,0.0045391796156764,0.051726069301367]],[[0.022157354280353,0.017996763810515,-0.053666405379772],[-0.023792296648026,0.044057197868824,0.09904845058918],[0.009373183362186,0.024462852627039,-0.03915723785758]],[[0.066569849848747,0.04208480194211,-0.085950896143913],[0.010872412472963,0.037046458572149,0.031938418745995],[-0.052526548504829,-0.013806373812258,-0.003032693406567]],[[-0.039877410978079,0.02478869445622,-0.012865277938545],[0.079447582364082,-0.0083735939115286,0.0055287173017859],[-0.012029910460114,0.016466954723001,-0.016837656497955]],[[-0.12761752307415,-0.034943301230669,-0.054472990334034],[0.02006478048861,-0.018744083121419,-0.048450350761414],[0.0042521194554865,0.015589661896229,0.03581316396594]],[[0.016241243109107,-0.0075964056886733,0.029935033991933],[0.024416921660304,-0.015241698361933,0.064199551939964],[0.034575629979372,-0.020832514390349,-0.017819354310632]],[[-0.0033165295608342,-0.029964245855808,0.01949810795486],[0.0061458633281291,0.007188627962023,-0.03493532538414],[0.0036237593740225,0.048766758292913,0.016420410946012]],[[-0.016351731494069,-0.017835754901171,-0.044707328081131],[0.12114564329386,0.059245493263006,0.025164194405079],[0.051146559417248,0.0099849896505475,-0.019511492922902]],[[0.031858209520578,0.046851251274347,-0.010114092379808],[-0.031038757413626,0.043530732393265,0.0036091555375606],[0.049925643950701,0.035631164908409,0.029289135709405]],[[0.048642672598362,-0.0062571875751019,-0.042090870440006],[0.032189313322306,-0.03800904750824,-0.091372974216938],[0.050703421235085,-0.020745320245624,-0.032313790172338]],[[0.11337307095528,0.082354329526424,0.097804017364979],[0.012915509752929,-0.079906113445759,-0.06765279173851],[0.084073081612587,0.1711927652359,0.071835041046143]],[[0.035442166030407,0.014556428417563,0.023959245532751],[-0.091957680881023,0.098598904907703,0.018724851310253],[0.027142470702529,0.04023140668869,-0.014267549850047]],[[0.03454539552331,0.033889852464199,0.059331092983484],[0.01461342535913,-0.020119499415159,0.011884466744959],[-0.011335165239871,0.046253371983767,0.0086911786347628]],[[-0.073009245097637,-0.047876246273518,-0.018250353634357],[0.031888525933027,-0.032575014978647,-0.027519619092345],[-0.059627439826727,-0.022550484165549,-0.0072335675358772]],[[0.10093744844198,0.099706642329693,0.063992783427238],[-0.093686982989311,0.054077234119177,-0.0048557496629655],[0.062551185488701,0.053838893771172,0.11655551940203]],[[-0.062597505748272,-0.0046040844172239,-0.014487431384623],[-0.03267328441143,0.018747791647911,-0.0070332833565772],[0.075054362416267,0.072125770151615,0.063082970678806]],[[0.034436408430338,0.023806257173419,-0.0077676889486611],[-0.058702267706394,-0.071753442287445,-0.052531853318214],[0.011200535111129,-0.014800273813307,0.0033273319713771]],[[-0.034735359251499,-0.007012749556452,-0.015686772763729],[0.015015549957752,0.070047438144684,0.040877901017666],[0.0058331871405244,0.024062465876341,0.088726624846458]],[[-0.017641980201006,-0.074338391423225,-0.051634714007378],[0.023859892040491,0.014894644729793,-0.0031842384487391],[-0.012072532437742,-0.050827920436859,0.019709350541234]],[[-0.026460692286491,-0.04083800688386,0.014940172433853],[-0.0026971339248121,-0.015684386715293,-0.05596774071455],[0.018818022683263,-0.058318242430687,0.054769948124886]],[[0.030916016548872,0.053361639380455,-0.0088263610377908],[-0.025213662534952,0.038060262799263,0.060175064951181],[0.10418279469013,0.030339723452926,-0.024664869531989]],[[-0.039029270410538,0.091134779155254,0.085713267326355],[0.029057756066322,0.052169442176819,0.050151772797108],[-0.062203276902437,0.0070442506112158,-0.052193060517311]],[[0.10028220713139,-0.014818698167801,0.018624944612384],[0.077138818800449,0.060658853501081,0.0024372865445912],[0.057913444936275,0.084852620959282,0.063529700040817]],[[0.019405778497458,0.06033693253994,0.049156557768583],[-0.0017326575471088,0.034765426069498,-0.019156947731972],[-0.0093266563490033,-0.025904064998031,-0.0090286936610937]],[[-0.056483291089535,-0.0085908928886056,0.062903344631195],[0.034564927220345,0.025369625538588,-0.016382396221161],[-0.038865201175213,-0.032965153455734,0.014914338476956]],[[0.0024647898972034,0.018966685980558,0.019132459536195],[-0.013829842209816,-0.047981854528189,-0.0025507602840662],[-0.014153426513076,-0.086046352982521,-0.0050187730230391]],[[-0.046174190938473,0.028507668524981,0.027569932863116],[0.073401518166065,0.046413950622082,0.033292531967163],[0.012407130561769,-0.041288759559393,0.090468607842922]],[[0.058807838708162,0.045053947716951,-0.054659061133862],[0.040176682174206,-0.064673759043217,0.01608837582171],[0.037216920405626,-0.048523850739002,-0.064941942691803]],[[-0.04010421410203,-0.034107927232981,0.023213099688292],[-0.0033490960486233,0.045114561915398,0.013369712978601],[-0.031721711158752,0.012192429974675,0.063352778553963]],[[0.027611721307039,-0.024759979918599,0.014396579936147],[-0.0015449530910701,0.052333984524012,0.053482197225094],[0.047656357288361,0.061263561248779,0.083719730377197]],[[-0.078952349722385,-0.031091684475541,-0.095095828175545],[0.083354882895947,0.059157617390156,-0.029902929440141],[-0.052377842366695,-0.014267574995756,-0.036935321986675]],[[0.0078080995008349,0.013749361038208,-0.057985324412584],[-0.033903650939465,-0.026253530755639,0.016217444092035],[0.0077509810216725,-0.021109245717525,-0.023352516815066]],[[0.010610109195113,0.0021262429654598,0.025966573506594],[0.039874374866486,-0.013504470698535,-0.074454069137573],[0.016496231779456,-0.011416246183217,-0.034403461962938]],[[-0.014603246934712,0.046722412109375,-0.0019069656264037],[0.022771257907152,0.035351518541574,0.017556544393301],[-0.021630864590406,0.0091595808044076,0.066674210131168]],[[-0.12823325395584,-0.069638907909393,-0.019057812169194],[-0.017352847382426,0.014013172127306,0.0035711394157261],[0.018366504460573,0.00017495213251095,0.0030977476853877]],[[0.10487499088049,0.058835458010435,0.011287524364889],[0.032607033848763,-0.018399612978101,-0.048527561128139],[0.02875730022788,0.0063997805118561,-0.0099535323679447]],[[0.063877366483212,-0.01698424294591,0.021002564579248],[-0.023291688412428,-0.01784604601562,0.047930680215359],[0.038395639508963,-0.0088184615597129,-0.012417843565345]],[[0.032206062227488,-0.011596959084272,0.045476850122213],[0.0024465911556035,-0.025834262371063,0.084887519478798],[-0.045135803520679,0.04717680066824,0.0071444427594543]],[[-0.037609618157148,0.064681075513363,-0.058367237448692],[0.01655750721693,0.023889636620879,-0.039626158773899],[0.0061697391793132,-0.019699582830071,0.064977310597897]],[[7.6000378612662e-07,-0.023372435942292,-0.051078911870718],[0.10828128457069,-0.023521538823843,-0.034234706312418],[0.056793097406626,-0.078433655202389,-0.0075489436276257]],[[0.02146883495152,0.019857503473759,-0.012730911374092],[0.01053349673748,-0.056609313935041,0.071996591985226],[0.0094862151890993,0.083293229341507,-0.022753458470106]],[[0.044515572488308,0.014157149940729,-0.085553526878357],[0.074657514691353,-0.017590008676052,0.0051817549392581],[-0.020999601110816,0.043228335678577,-0.0027255699969828]],[[0.056027218699455,0.026495849713683,0.042113646864891],[0.053465146571398,0.027666809037328,0.012033712118864],[-0.046874541789293,-0.066215351223946,-0.027122430503368]],[[0.02973772957921,-0.029540609568357,0.021036349236965],[-0.020803244784474,-0.028815966099501,0.0088610667735338],[-0.007075231987983,0.040090277791023,-0.034592762589455]],[[-0.019741624593735,0.063404969871044,0.023191029205918],[-0.008365529589355,-0.0073247556574643,-0.033989038318396],[0.062602013349533,-0.013413543812931,0.0082355439662933]],[[0.056163221597672,-0.03071222640574,-0.060417074710131],[-0.042701222002506,-0.021400174126029,0.0042196726426482],[-0.093011550605297,0.038328554481268,0.02616024762392]],[[-0.016975516453385,0.016508765518665,-0.028186732903123],[0.016874162480235,-0.020670097321272,0.033723596483469],[0.062011074274778,0.020015740767121,-0.010182498954237]],[[-0.048704136162996,-0.060501113533974,-0.051054123789072],[0.13054695725441,0.074735909700394,-0.0010123933898285],[-0.0065448475070298,-0.016807412728667,-0.069532386958599]],[[-0.033369243144989,0.03078880533576,-0.044781014323235],[0.027229312807322,0.011862535960972,-0.015411648899317],[-0.0075720832683146,0.021683206781745,0.043124128133059]],[[0.029666747897863,0.0035771229304373,-0.029477741569281],[0.018549188971519,-0.03027268871665,0.039679534733295],[0.018472889438272,0.022765647619963,0.089276947081089]],[[0.00010927970288321,-0.060272954404354,0.064408726990223],[0.099023789167404,0.056041732430458,-0.024220049381256],[-0.019533012062311,0.035756323486567,-0.005579779855907]],[[0.02486602589488,0.015256810002029,0.025896517559886],[-0.016574488952756,-0.022910948842764,-0.020255198702216],[-0.0067890798673034,-0.04165231063962,0.027897551655769]],[[0.04937269538641,-0.024470651522279,0.028254272416234],[0.0029940046370029,-0.04545982927084,-0.026543298736215],[-0.025095466524363,-0.0035839108750224,-0.054257217794657]],[[0.0078545976430178,-0.057191856205463,0.015076791867614],[-0.043744523078203,-0.028626607730985,0.048764493316412],[-0.04181769862771,-0.062579862773418,-0.058052033185959]],[[0.051918171346188,0.023143094033003,0.026272689923644],[-0.045749202370644,0.051408402621746,-0.069524854421616],[0.03547403588891,-0.0095201749354601,0.034193530678749]],[[-0.04000922665,-0.02747561968863,0.018561497330666],[0.015501025132835,0.020467318594456,0.061353828758001],[-0.057578731328249,-0.020730786025524,-0.059225175529718]],[[0.055167257785797,0.042990021407604,0.054523792117834],[-0.0012298853835091,0.0083932662382722,0.11958939582109],[-0.083963334560394,0.0050104451365769,0.04866898432374]],[[-0.026788299903274,-0.064142465591431,0.020605031400919],[0.058474615216255,-0.048829738050699,-0.019490780308843],[0.067866735160351,-0.06343100219965,-0.037018284201622]],[[0.01457620318979,-0.045019902288914,-0.024623991921544],[0.033764313906431,0.036523781716824,0.028546830639243],[0.066062174737453,0.024551577866077,0.037302900105715]],[[0.013350059278309,-0.025471104308963,-0.016556531190872],[-0.0045084939338267,0.024358401075006,-0.007652394939214],[0.021589590236545,0.033299755305052,-0.0014811758883297]],[[-0.042217507958412,-0.036068823188543,-0.031694464385509],[-0.0013536112383008,-0.043783940374851,-0.0055931457318366],[0.016503248363733,0.041593655943871,-0.029724910855293]],[[0.004602381028235,0.017706710845232,-0.086819469928741],[0.099831998348236,-0.010940533131361,-0.046380870044231],[-0.055110037326813,0.016114767640829,-0.077822349965572]],[[0.009078748524189,-0.034508183598518,0.035771440714598],[-0.048229467123747,0.015362384729087,-0.07633675634861],[0.016973312944174,-0.00092449033400044,0.050546936690807]],[[-0.019909683614969,-0.010144405066967,0.035094261169434],[-0.054291792213917,-0.075712136924267,-0.016183018684387],[-0.04155183210969,-0.000579415820539,0.038879968225956]],[[-0.066196978092194,0.0071617099456489,-0.0098480386659503],[-0.050385527312756,-0.10878809541464,0.056107185781002],[-0.012190109118819,0.018836092203856,-0.00053291645599529]],[[-0.017568530514836,-0.013608953915536,-0.070532321929932],[0.073996938765049,-0.10000893473625,0.11603619903326],[-0.007362874224782,0.0030819431412965,-0.021215625107288]],[[-0.040752418339252,-0.094167925417423,0.0054504536092281],[0.031366806477308,0.056341025978327,0.064705327153206],[0.13815103471279,0.055043812841177,0.071857199072838]],[[-0.0051160943694413,-0.019284728914499,-0.036646578460932],[0.043905951082706,0.076509781181812,-0.013239427469671],[0.033811707049608,-0.036232605576515,0.033954948186874]],[[0.022836249321699,0.0024223295040429,-0.032841481268406],[-0.0024484465830028,0.019197320565581,-0.044252924621105],[0.056231416761875,0.022138690575957,-0.001796787371859]],[[-0.01821806281805,0.0053608911111951,0.00057770335115492],[0.069631896913052,-0.00087879277998582,0.033849012106657],[-0.033567972481251,0.074149586260319,-0.023388281464577]],[[-0.016140177845955,-0.029441175982356,-0.026263019070029],[-0.017955200746655,0.036058507859707,-0.037353977560997],[-0.024052271619439,0.038055952638388,-0.060250379145145]],[[-0.012117264792323,0.004957368131727,-0.002551132813096],[0.043316967785358,-0.061195015907288,0.048198629170656],[0.063041619956493,0.099735900759697,0.064992509782314]],[[-0.010993137955666,0.033802457153797,0.021413806825876],[0.014777277596295,-0.032625399529934,-0.059210572391748],[-0.044590033590794,0.0034492753911763,-0.010218381881714]],[[-0.041423805058002,0.026261020451784,0.0064316210336983],[0.014038676396012,0.030706869438291,-0.040750049054623],[0.019437482580543,-0.0052905837073922,-0.029312133789062]],[[0.053751073777676,0.010890137404203,0.055782061070204],[-0.04199006408453,0.013302890583873,-0.009083854034543],[-0.012548137456179,-0.02589713409543,-0.0076144640333951]],[[-0.015149993821979,-0.015877334401011,0.019449463114142],[0.0047173742204905,-0.0043357638642192,-0.046342808753252],[-0.022236021235585,0.002214245731011,0.061987031251192]],[[-0.041851714253426,-0.04471019282937,0.051802817732096],[0.056952271610498,-0.010363342240453,-0.018907969817519],[-0.028229711577296,-0.04020481929183,0.038653790950775]],[[0.045689802616835,-0.00095102825434878,-0.052744809538126],[-0.019767425954342,-0.031950481235981,-0.042853005230427],[0.061153884977102,0.001497101970017,-0.049386437982321]],[[-0.0052625723183155,-0.027179466560483,-0.0074656456708908],[0.047217208892107,0.01482848264277,0.012416413985193],[0.0018208600813523,0.03253423795104,0.030991237610579]],[[-0.046003255993128,0.046405706554651,0.00060688331723213],[0.069932334125042,-0.0040842955932021,0.028769781813025],[-0.028752334415913,-0.017826251685619,0.044971108436584]]],[[[0.012553700245917,0.0010812849504873,-0.032811760902405],[0.024589886888862,-0.00088654988212511,0.044581521302462],[-0.031748056411743,0.0060296873562038,-0.044492710381746]],[[0.0010984322289005,-0.060083951801062,-0.037361472845078],[0.019842749461532,0.030184185132384,0.026573983952403],[0.038304574787617,0.018091659992933,-0.00088537472765893]],[[0.026288976892829,-0.017231585457921,0.03340657055378],[-0.00017086644947995,-0.016553334891796,-0.00094386062119156],[0.013529156334698,0.0086065819486976,0.037910878658295]],[[0.024950524792075,-0.0051673837006092,-0.027921190485358],[-0.04395979642868,0.0043098530732095,0.045685332268476],[-0.0096804760396481,0.047894854098558,0.016328070312738]],[[0.073128119111061,-0.010995890013874,0.0091047631576657],[-0.034443903714418,0.036489617079496,0.01331330742687],[-0.016779968515038,-0.0069862939417362,0.023533787578344]],[[-0.10399779677391,-0.0061009260825813,-0.050532292574644],[-0.038890168070793,0.016447758302093,0.020329087972641],[-0.11345419287682,0.054842665791512,-0.01603227853775]],[[0.012240633368492,-0.047404538840055,0.085659086704254],[-0.083638601005077,0.05274997651577,-0.0038624526932836],[-0.00070528825744987,-0.0059162769466639,-0.0055703422985971]],[[-0.046949591487646,-0.086566805839539,0.061540342867374],[0.10577550530434,0.0093240346759558,0.015095206908882],[-0.037704158574343,-0.0043638446368277,0.0073306802660227]],[[-0.046050526201725,-0.060879766941071,-0.027132228016853],[-0.0081931799650192,0.020026683807373,0.002870457014069],[-0.033105589449406,-0.063290633261204,-0.029038989916444]],[[-0.035928383469582,-0.0015023314626887,-0.00248944433406],[0.058371692895889,0.0046396595425904,0.020673720166087],[-0.031836103647947,0.017597917467356,0.049103654921055]],[[-0.013161369599402,-0.039688851684332,0.024028286337852],[-0.026481563225389,-0.062073387205601,-0.028218498453498],[0.003627268364653,-0.063290886580944,0.062806494534016]],[[0.068446107208729,0.035547759383917,0.026339668780565],[0.010208262130618,-0.063807658851147,-0.017948042601347],[-0.077668517827988,-0.026973500847816,0.045559793710709]],[[0.088711075484753,0.031803593039513,0.040603172034025],[0.0083419596776366,-0.045348942279816,-0.038238566368818],[-0.0083118993788958,-0.070195764303207,-0.059980366379023]],[[-0.069813691079617,0.043854970484972,-0.012772463262081],[0.069472961127758,-0.029064076021314,-0.034423943608999],[-0.054234355688095,-0.016500432044268,-0.00066634162794799]],[[-0.011648117564619,0.019327649846673,-0.066449448466301],[-0.064515754580498,-0.050204534083605,0.083940714597702],[0.012495300732553,0.052686754614115,-0.0090855378657579]],[[0.033975824713707,0.020135294646025,0.01454053632915],[0.043289329856634,-0.015528370626271,-0.033125590533018],[-0.052833013236523,0.01161365583539,-0.087268449366093]],[[-0.0044671669602394,-0.0019624368287623,-0.00059492251602933],[0.039529573172331,-0.029786940664053,-0.010864359326661],[0.044737935066223,0.0088445516303182,0.049746036529541]],[[-0.015388643369079,-0.032911084592342,-0.042500253766775],[0.020247569307685,-0.046709563583136,0.017977623268962],[-0.018051305785775,-0.0012845185119659,-0.056809172034264]],[[-0.044719148427248,0.018431834876537,0.023443948477507],[0.04487594217062,-0.028747050091624,0.015583708882332],[0.064818166196346,0.047186650335789,0.025223940610886]],[[-0.023499993607402,-0.084786295890808,-0.010891011916101],[0.0010716313263401,-0.049813389778137,0.066721208393574],[0.062410570681095,-0.025318890810013,0.00094544049352407]],[[-0.04733818769455,0.0054356134496629,0.11330403387547],[-0.0060483664274216,-0.020379673689604,-0.0082379635423422],[0.069287195801735,0.010614832863212,0.022020559757948]],[[0.0087466444820166,0.01698680408299,0.079877324402332],[0.053603246808052,-0.0010358588770032,0.0073376884683967],[0.00076236785389483,-0.020008826628327,0.0092060742899776]],[[-0.041609171777964,0.06405633687973,0.028806431218982],[0.015300491824746,-0.017685415223241,-0.006810124963522],[-0.031584870070219,-0.062190141528845,-0.020218586549163]],[[0.059316568076611,0.043994721025229,0.059702567756176],[0.06907793879509,-0.0038913113530725,0.071675799787045],[-0.022704496979713,-0.046488888561726,-0.015324800275266]],[[0.001843610429205,0.03838799521327,-0.021107679232955],[0.011463389731944,0.043684605509043,0.01062161847949],[0.0020983333233744,0.042465720325708,-0.035389617085457]],[[0.077976055443287,-0.031673684716225,0.030471287667751],[-0.057128697633743,-0.018973264843225,-0.011611267924309],[-0.092983312904835,-0.066365197300911,0.074967175722122]],[[0.0097718955948949,-0.058369047939777,-0.0055498029105365],[0.0029642300214618,-0.018582670018077,0.043100453913212],[-0.052428983151913,0.081587307155132,0.070402637124062]],[[-0.12268149107695,-0.0504798181355,0.056142117828131],[0.063783429563046,-0.035377778112888,-0.051521755754948],[-0.00052627304103225,0.01808575540781,-0.025614412501454]],[[0.0092325545847416,0.010490971617401,-0.042261783033609],[-0.018916370347142,0.00010651443881216,0.064603440463543],[0.0065402588807046,0.006970576941967,-0.010239866562188]],[[-0.031499139964581,0.047586109489202,0.063894607126713],[-0.053281057626009,0.0064843823201954,0.036449212580919],[0.028890497982502,-0.028048444539309,0.029186800122261]],[[0.023166066035628,0.049287535250187,0.02532765828073],[-0.04962420463562,0.035976581275463,0.023314544931054],[-0.093974307179451,-0.06726898252964,0.043363984674215]],[[0.054205823689699,0.079395860433578,0.020744560286403],[0.007940866984427,-0.012541049160063,-0.048100855201483],[-0.01108343526721,0.039852850139141,-0.079295873641968]],[[0.0009706913260743,-0.02592889405787,0.051445424556732],[0.070117257535458,0.035290867090225,-0.055601228028536],[-0.028371201828122,-0.068208761513233,0.0052233557216823]],[[-0.089070156216621,0.037221919745207,0.067533880472183],[-0.016959559172392,0.027829278260469,-0.017762783914804],[-0.032383881509304,0.0054779727943242,0.014175680465996]],[[0.045576542615891,0.040331769734621,0.030754903331399],[0.052093561738729,0.039617396891117,-0.076344549655914],[0.068658657371998,0.021770061925054,-0.01749318651855]],[[-0.0047703343443573,-0.0097387880086899,0.036685016006231],[-0.0021645550150424,-0.0094809159636497,-0.044987518340349],[-0.059797216206789,-0.052897956222296,0.066218085587025]],[[-0.0393789075315,0.010178592987359,0.032932136207819],[0.015092812478542,-0.049732312560081,-0.013934960588813],[-0.072374135255814,-0.043095663189888,-0.0046413452364504]],[[0.015483882278204,-0.028051327914,0.050328012555838],[0.065677486360073,-0.039536885917187,0.0018162220949307],[0.00040603120578453,-0.049251891672611,-0.086507953703403]],[[0.013859283179045,-0.014599962159991,-0.082054562866688],[-0.0065561477094889,0.021951176226139,0.014250804670155],[0.021467324346304,-0.092446655035019,0.048823844641447]],[[0.021877218037844,-0.00096548825968057,0.039545956999063],[-0.065266482532024,-0.0055496590211987,0.020735865458846],[-0.019238315522671,0.056097541004419,0.069173067808151]],[[-0.085938915610313,-0.037018731236458,-0.012078954838216],[-0.024894662201405,-0.045779440551996,0.052644710987806],[0.034823302179575,0.056300677359104,0.022437546402216]],[[0.010485909879208,0.025265036150813,0.019141180440784],[-0.0055877636186779,-0.036476325243711,0.015013976953924],[0.011742325499654,0.02873433381319,-0.021150428801775]],[[0.021823547780514,-0.062469761818647,-0.011283001862466],[0.018253952264786,-0.018272096291184,-0.0051048472523689],[-0.0030564004555345,0.044002339243889,0.070414640009403]],[[0.058377604931593,-0.025662735104561,-0.089322060346603],[-0.057571232318878,-0.079262666404247,-0.04686226323247],[-0.049122005701065,0.0035565427970141,-0.053552020341158]],[[0.022485544905066,-0.098497159779072,0.0044929767027497],[-0.071014098823071,-0.029658818617463,0.063555814325809],[0.023910228163004,0.00094357086345553,-0.014087157323956]],[[0.043681666254997,0.16228958964348,0.034300781786442],[-0.0081881349906325,0.019450563937426,0.025261625647545],[-0.043374929577112,-0.049348827451468,-0.018458982929587]],[[0.030602250248194,-0.041134156286716,0.036600150167942],[0.099281065165997,-0.0054658860899508,-0.010926436632872],[0.097599171102047,0.13412861526012,-0.012175994925201]],[[-0.075648047029972,-0.015104045160115,-0.07279048115015],[-0.11730909347534,-0.015176800079644,-0.023488201200962],[-0.0061059421859682,-0.012505288235843,0.0033595163840801]],[[-0.052501104772091,0.01956682652235,0.036108713597059],[-0.011488686315715,0.035737667232752,0.0063726045191288],[0.035971041768789,0.020315539091825,-0.049514327198267]],[[0.029343890026212,0.013920601457357,0.084286414086819],[0.078785754740238,-0.037212930619717,0.026603342965245],[-0.030324842780828,-0.0056236619129777,-0.033669397234917]],[[-0.014768523164093,-0.044682078063488,-0.055436812341213],[0.0030148939695209,0.032856926321983,0.038049563765526],[0.0363351367414,0.086372666060925,0.023859802633524]],[[-0.086512729525566,0.032563574612141,-0.057841327041388],[-0.011272887699306,-0.068471401929855,-0.017938662320375],[0.052606396377087,0.0097056906670332,0.047074291855097]],[[-0.041582759469748,0.0244907643646,-0.0060673016123474],[0.040251467376947,0.034151963889599,-0.042849633842707],[0.027461348101497,9.6463765657973e-05,-0.051107492297888]],[[-0.036326486617327,-0.063218504190445,0.0032929056324065],[-0.0077416943386197,-0.030439838767052,-0.057149056345224],[-0.03680033609271,-0.0072935461066663,0.015563545748591]],[[0.052500110119581,-0.028338035568595,-0.022325670346618],[-0.019013335928321,0.046870999038219,0.048033233731985],[-0.004535224288702,-0.033172473311424,-0.023582009598613]],[[0.076699376106262,-0.023570436984301,-0.0068089817650616],[0.035836298018694,-0.013355025090277,0.057345770299435],[0.038883179426193,-0.03164703771472,0.091093771159649]],[[-0.00018737446225714,0.032709185034037,0.024324081838131],[-0.03094227053225,-0.071229688823223,-0.00023040165251587],[0.027157774195075,-0.036063499748707,0.051315244287252]],[[-0.0083826053887606,0.06911239027977,-0.013082761317492],[-0.050799272954464,0.035408232361078,-0.029478803277016],[0.056862689554691,0.0020920529495925,0.086931295692921]],[[0.056843381375074,0.014491914771497,0.043293818831444],[-0.043562110513449,-0.027112036943436,-0.024271987378597],[0.033387470990419,-0.083648681640625,0.033003997057676]],[[0.059620007872581,0.066968180239201,-0.016634186729789],[-0.027521401643753,-0.034773729741573,0.067299969494343],[0.01104168407619,0.094302542507648,-0.096665449440479]],[[0.010079899802804,-0.047427073121071,0.0575314424932],[0.021932583302259,0.006124067120254,-0.03391171246767],[0.018534954637289,0.055265173316002,0.014739564619958]],[[-0.03119776956737,-0.069307014346123,0.017447022721171],[0.011946668848395,-0.0095017300918698,-0.016196357086301],[-0.0027515103574842,-0.057387743145227,-0.028425818309188]],[[-0.031296201050282,0.039522461593151,-0.13872845470905],[-0.051238048821688,0.035804733633995,0.013926364481449],[-0.04524552449584,-0.098224014043808,0.0039226743392646]],[[0.013490349985659,-0.052229046821594,0.07319038361311],[0.023054134100676,-0.034655883908272,-0.016759898513556],[-0.10598443448544,0.066167145967484,-0.084001503884792]],[[0.095744326710701,0.01302320882678,-0.010458488948643],[-0.036308638751507,-0.054423909634352,0.091830737888813],[-0.026059729978442,0.0021762880496681,-0.013861267827451]],[[0.032608132809401,0.0023778153117746,0.015781989321113],[-0.035114906728268,0.0090328250080347,0.012864467687905],[0.088982418179512,-0.038505051285028,-0.0065382472239435]],[[-0.06431533396244,0.042530406266451,-0.010360902175307],[0.078511662781239,0.047797068953514,0.038206938654184],[-0.0068377396091819,0.0092565529048443,0.030065599828959]],[[0.030485978350043,-0.047728020697832,0.012629065662622],[0.0092103201895952,0.024132950231433,0.011185114271939],[-0.020618006587029,0.033833533525467,-0.058853253722191]],[[-0.019819954410195,-0.030806878581643,-0.0089734122157097],[0.083161234855652,0.071442246437073,0.014571212232113],[0.041326474398375,-0.020514847710729,0.026737196370959]],[[0.030979219824076,-0.00066506391158327,0.046166632324457],[-0.038149006664753,0.010559938848019,0.01812606677413],[0.073609255254269,0.026168400421739,-0.022128853946924]],[[-0.010037966072559,0.010280659422278,-0.043781209737062],[0.024325590580702,-0.024941513314843,0.0070350267924368],[-0.054236643016338,-0.021037397906184,0.014792480506003]],[[-0.047504886984825,-0.062533393502235,0.04204561188817],[-0.020289845764637,-0.032946012914181,-0.027721541002393],[0.019242957234383,-0.023848066106439,0.006765881087631]],[[0.031855743378401,-0.092399835586548,0.027246110141277],[0.0084104612469673,-0.075466901063919,0.0063748424872756],[0.025476040318608,-0.027801832184196,-0.058942444622517]],[[0.053327452391386,-0.022136975079775,-0.010055065155029],[-0.077666960656643,0.0069729844108224,0.054356437176466],[-0.012174163945019,-0.070776745676994,-0.013757870532572]],[[-0.0567337423563,-0.012246181257069,-0.0064244237728417],[0.047857593744993,0.060587808489799,0.011177937500179],[-0.071566052734852,0.0022619755472988,0.0082058971747756]],[[0.019799709320068,-0.060358591377735,0.010514097288251],[-0.014162831008434,-0.030118612572551,-0.011321570724249],[0.0035056010819972,0.010753566399217,0.0077909384854138]],[[0.00023986193991732,-0.075017437338829,-0.056489422917366],[0.039978388696909,0.01624645665288,0.023628912866116],[-0.059453744441271,-0.00720135262236,-0.047411851584911]],[[0.019723452627659,-0.013295218348503,-0.0033546725753695],[-0.0059456848539412,-0.0016752437222749,0.017299329861999],[0.0066885682754219,-0.013831912539899,-0.0096670277416706]],[[0.019293079152703,-0.061371814459562,-0.089731425046921],[-0.025565460324287,0.011231893673539,-0.034724425524473],[-0.053087584674358,0.001868020510301,-0.031922161579132]],[[0.083018444478512,-0.06968579441309,0.02225905098021],[0.0020353246945888,-0.010128328576684,0.05146286636591],[0.055360171943903,0.015302409417927,-0.065958715975285]],[[0.00038275413680822,-0.023821245878935,0.0029760049656034],[-0.063140034675598,0.06164176762104,0.011979502625763],[-0.050204582512379,-0.019146371632814,-0.037401136010885]],[[-0.0068232552148402,0.028643241152167,0.0081973653286695],[0.049621194601059,0.030211897566915,-0.025166699662805],[0.062386881560087,0.036608785390854,0.034335002303123]],[[0.038960117846727,0.034311790019274,0.0097895674407482],[0.025705143809319,0.017056377604604,0.027830196544528],[0.077846392989159,-0.040288992226124,-0.028609180822968]],[[0.043541669845581,-0.040341451764107,0.079319439828396],[-0.031759783625603,0.014955651946366,-0.010920306667686],[-0.049315068870783,-0.0041518951766193,-0.0049878279678524]],[[0.050004601478577,-0.0092831533402205,0.019965052604675],[0.025533368811011,-0.044742628931999,0.00063459819648415],[-0.00067491072695702,-0.0024089619982988,-0.069185048341751]],[[0.00925263017416,-0.029964838176966,-0.016156697645783],[-0.0024237595498562,0.051590010523796,-0.01597555167973],[-0.0019185210112482,0.039097055792809,0.02702646329999]],[[-0.040185052901506,0.011450065299869,0.057089049369097],[-0.0014762140344828,0.023427218198776,-0.022799205034971],[-0.015517809428275,0.065630398690701,-0.078848123550415]],[[0.010281701572239,-0.034250903874636,-0.050355762243271],[0.017431732267141,0.050992585718632,-0.055071331560612],[0.09256324917078,-0.016418039798737,0.0020654785912484]],[[-0.0059096948243678,-0.074593126773834,0.036891933530569],[0.025712966918945,-0.001974465791136,-0.045758221298456],[-0.0085427854210138,-0.042637098580599,0.0081475265324116]],[[-0.10909616202116,0.0096051692962646,0.019183352589607],[-0.037160508334637,0.0050144190900028,0.059737619012594],[0.060602802783251,-0.028905555605888,0.10784042626619]],[[0.0054891728796065,0.025769736617804,-0.0076711736619473],[0.00054721400374547,-0.028150629252195,0.060483269393444],[-0.0068350215442479,-0.041640188544989,0.018505711108446]],[[0.011386042460799,-0.0081694927066565,0.066383272409439],[0.0038531681057066,0.00498570734635,0.016306543722749],[-0.011704987846315,-0.053119819611311,0.01191408932209]],[[-0.003747325623408,0.057586025446653,-0.092064522206783],[0.050392810255289,-0.020457098260522,0.056370340287685],[0.026659362018108,0.056390836834908,-0.053743675351143]],[[0.0072105471044779,0.018167374655604,-0.074219658970833],[-0.031557694077492,-0.040129091590643,0.049094136804342],[0.044985730201006,0.058341052383184,-0.016452701762319]],[[0.033849541097879,-0.055396538227797,-0.054284673184156],[0.0060028596781194,-0.018141316249967,-0.013138798065484],[0.061053369194269,0.011405270546675,0.015610390342772]],[[-0.016611712053418,-0.040877297520638,0.031422153115273],[0.038968026638031,-0.03108804486692,-0.036739431321621],[0.034370649605989,0.027962809428573,-0.0087034264579415]],[[0.060463164001703,0.0063070175237954,0.0087484801188111],[-0.037759132683277,-0.075493395328522,0.027726722881198],[0.00046543619828299,0.0069899107329547,0.020159335806966]],[[0.0074754916131496,0.037084612995386,-0.082699693739414],[-0.048217184841633,-0.022164853289723,-0.038240037858486],[-0.013455734588206,0.021786130964756,-0.020136522129178]],[[-0.014798758551478,-0.036720339208841,0.0021231665741652],[0.0242112390697,-0.071582093834877,-0.0028615947812796],[0.0411934889853,-0.019746817648411,0.038302838802338]],[[-0.051910940557718,-0.031949948519468,0.037408802658319],[0.017306338995695,0.0302579626441,0.015113876201212],[0.038155432790518,0.012178236618638,-0.037883970886469]],[[0.024486962705851,0.034131556749344,-0.0041174688376486],[-0.0050553036853671,0.054314516484737,0.016976522281766],[0.00098463927861303,0.027838269248605,-0.067123331129551]],[[-0.0098404828459024,0.051392696797848,-0.0077995439060032],[0.053126484155655,0.073380343616009,0.037895079702139],[-0.036344218999147,-0.039935953915119,-0.067747861146927]],[[-0.025952510535717,-0.051659774035215,0.06893865019083],[0.0095926430076361,0.0064798458479345,-0.019000269472599],[-0.10214250534773,0.051621358841658,0.013944459147751]],[[0.015293899923563,0.025723125785589,0.013392030261457],[0.03936243057251,-0.0047826222144067,0.066299021244049],[-0.01696889474988,-0.01980840973556,-0.0017423782264814]],[[0.0059720734134316,-0.1051534563303,-0.017011821269989],[-0.043005857616663,0.043900769203901,-0.020803950726986],[0.10202429443598,0.036965880542994,0.0073683015070856]],[[0.016959898173809,0.037488985806704,0.029372299090028],[-0.034047652035952,-0.017776923254132,0.031119158491492],[-0.004259014967829,0.064312040805817,-0.054779391735792]],[[0.028820727020502,-0.039418965578079,-0.023404989391565],[-0.047843653708696,0.049038153141737,0.029651971533895],[0.0031048671808094,0.0070056077092886,0.025764193385839]],[[-0.023542342707515,0.016602158546448,0.066286839544773],[0.12605239450932,-0.027681538835168,0.035025894641876],[0.035445921123028,-0.060095716267824,-0.043341729789972]],[[0.085936546325684,0.0066804508678615,-0.014792563393712],[0.052198980003595,0.029434219002724,-0.035085618495941],[0.041927233338356,0.02846821770072,-0.042998604476452]],[[-0.029197011142969,0.045511867851019,0.018706899136305],[-0.0415173843503,0.01843024045229,-0.032606277614832],[0.01272679772228,0.018109953030944,0.020742889493704]],[[0.071972504258156,0.026400526985526,-0.06832130253315],[0.0056962566450238,0.043993499130011,0.015276798978448],[0.026068117469549,0.11944326758385,-0.012524676509202]],[[0.012328363023698,0.038643732666969,-0.08070033043623],[0.00059330061776564,0.016824269667268,-0.013314516283572],[0.024056166410446,0.076602928340435,-0.0097456388175488]],[[0.0027137852739543,-0.060699436813593,0.046712204813957],[-0.0010056289611384,-0.023124471306801,-0.011801524087787],[-0.040895026177168,-0.047886580228806,0.052018128335476]],[[-0.061768691986799,0.072410315275192,0.0042019137181342],[0.0013784959446639,-0.0039527518674731,0.01140068192035],[-0.050319269299507,-0.060178853571415,-0.047636833041906]],[[0.050605110824108,-0.035065997391939,-0.012744332663715],[0.040296360850334,0.053169012069702,-0.029980069026351],[-0.028239918872714,0.040925335139036,0.070644602179527]],[[-0.013683635741472,0.00022316568356473,0.00016895201406442],[0.0010794141562656,-0.02531661093235,0.033352311700583],[-0.020113669335842,-0.040675844997168,0.0359858982265]],[[0.034103408455849,1.7300691979472e-05,-0.017793696373701],[-0.04644414037466,0.066077291965485,0.037400104105473],[-0.054375950247049,-0.030030390247703,0.030733482912183]],[[0.078709952533245,-0.080523744225502,-0.0098172249272466],[0.019263861700892,-0.066031202673912,0.044691629707813],[0.063757807016373,0.037865605205297,0.052908480167389]],[[0.0021432966459543,-0.013248916715384,-0.028051193803549],[-0.051657766103745,0.036131668835878,-0.0038952557370067],[-0.00033377460204065,-0.011160437949002,-0.041915602982044]],[[0.044149346649647,-0.027077844366431,0.030167734250426],[0.029428832232952,0.033486977219582,0.049879889935255],[-1.3082353689242e-05,0.06135143712163,0.012699536047876]],[[-0.0042036981321871,0.0016421333421022,-0.009064044803381],[-0.035895708948374,0.055315546691418,-0.0024395203217864],[-0.034570831805468,-0.018640523776412,0.02131032012403]],[[0.023269729688764,0.054354649037123,-0.058936268091202],[0.042113896459341,-0.013378170318902,0.04556780308485],[-0.071030035614967,-0.030776966363192,-0.082272581756115]],[[-0.080012232065201,0.032885149121284,-0.056450497359037],[-0.068341717123985,0.073109038174152,-0.016694074496627],[0.033603847026825,-0.0072334785945714,0.034231957048178]],[[0.077578105032444,-0.013854247517884,-0.038944240659475],[-0.018705496564507,0.020985133945942,-0.084424078464508],[-0.0085155507549644,-0.0010417847661301,-0.032940581440926]],[[0.050353270024061,0.014068838208914,-0.019179025664926],[0.0058036576956511,0.037982475012541,-0.080153778195381],[0.03575224429369,-0.060506656765938,0.013431459665298]],[[0.010291659273207,0.0057896613143384,0.055047810077667],[-0.0085446070879698,-0.0010983344400302,-0.0036707825493068],[0.012171528302133,-0.0992326810956,0.02715758793056]],[[0.074051894247532,0.0009064584155567,0.058673895895481],[-0.012610618956387,0.0048657590523362,0.034192189574242],[0.025338288396597,-0.059251703321934,-0.011917697265744]],[[0.033807199448347,-0.0024223441723734,0.041337568312883],[-0.074940875172615,0.048336066305637,0.030681543052197],[0.021206138655543,0.025189157575369,0.064026296138763]]],[[[0.029233049601316,0.056328117847443,-0.032844047993422],[-0.080190286040306,-0.02074315212667,0.042046751827002],[0.01937323063612,0.021559942513704,-0.054235894232988]],[[0.073175370693207,-0.015866713598371,-0.032445382326841],[-0.0086546968668699,0.075981482863426,-0.035429414361715],[-0.019196078181267,-0.066938534379005,-0.060252025723457]],[[0.021269341930747,0.10177568346262,-0.021294360980392],[0.0047576972283423,-0.020006403326988,0.082263633608818],[0.060812920331955,-0.1345216780901,-0.16456836462021]],[[0.27517035603523,-0.32271689176559,0.076993197202682],[0.083975970745087,0.32274776697159,-0.19706892967224],[-0.13541369140148,0.22860524058342,0.22353364527225]],[[0.079280480742455,-0.054743841290474,-0.10452439635992],[0.10624790936708,-0.11691723763943,-0.036044519394636],[-0.010899977758527,-0.083515800535679,-0.085800565779209]],[[-0.098294280469418,-0.0646857842803,0.056657399982214],[-0.00088828336447477,-0.11432798951864,-0.0046196295879781],[-0.12523399293423,-0.093430861830711,0.16534051299095]],[[-0.019560350105166,-0.0080114938318729,0.0065805092453957],[0.045290894806385,-0.010069918818772,0.028859378769994],[0.14039327204227,0.029158579185605,-0.15479715168476]],[[0.01284431759268,-0.055498424917459,0.0090583013370633],[0.069127514958382,-0.13055680692196,0.15535758435726],[-0.049125198274851,0.0085541484877467,-0.083924390375614]],[[0.10370243340731,0.050408776849508,-0.093200959265232],[-0.060169849544764,0.0091926399618387,0.11858872324228],[-0.020965216681361,-0.075003914535046,-0.057370509952307]],[[0.010494258254766,0.008668078109622,-0.0070178532041609],[-0.062637023627758,0.015798645094037,-0.079733572900295],[0.034927036613226,-0.040465291589499,0.01958012022078]],[[-0.033902909606695,-0.039344232529402,0.066902622580528],[-0.088670164346695,0.039917267858982,0.057200767099857],[-0.082345984876156,-0.0268200840801,0.0023663151077926]],[[-0.035057362169027,0.022137699648738,-0.025410957634449],[-0.01158825866878,-0.0077121667563915,0.11268601566553],[0.00028353810193948,-0.066602230072021,0.027784636244178]],[[-0.07312223315239,-0.093441225588322,0.0052281017415226],[-0.042676847428083,-0.039835769683123,-0.010642696171999],[0.050132252275944,0.07030638307333,0.096718035638332]],[[0.054665621370077,0.00933279376477,0.072162121534348],[0.059554282575846,-0.060522127896547,-0.15873850882053],[0.12479831278324,0.0076639787293971,-0.026773035526276]],[[0.15896464884281,0.0041987653821707,-0.034886140376329],[-0.11189793050289,0.29461672902107,-0.11229803413153],[-0.31264153122902,-0.091640636324883,0.23356135189533]],[[-0.0097809480503201,-0.0052006551995873,-0.040973514318466],[0.027427688241005,0.012757970020175,-0.11727080494165],[-0.13541562855244,0.048133656382561,0.099835991859436]],[[-0.065750241279602,-0.021817343309522,0.10540371388197],[0.020675977692008,-0.071627490222454,0.11786627024412],[-0.066176235675812,0.052594676613808,-0.013652768917382]],[[-0.046227533370256,0.12952828407288,0.091918081045151],[0.012330329045653,0.031738057732582,0.080377340316772],[-0.055550333112478,-0.017367789521813,-0.1075394153595]],[[0.11052273213863,0.068518035113811,-0.020654190331697],[0.032408609986305,-0.054351646453142,-0.096913188695908],[0.0020905989222229,-0.034990575164557,-0.10742194950581]],[[-0.055113669484854,-0.094479523599148,-0.02751730568707],[0.051105640828609,-0.029620183631778,-0.095954574644566],[0.052525065839291,0.094970479607582,0.02742887660861]],[[0.0011531143682078,-0.053273748606443,-0.0081931790336967],[0.17967574298382,0.029694341123104,-0.031942758709192],[-0.11675720661879,0.27346020936966,-0.0095245856791735]],[[-0.031134543940425,-0.0599320307374,0.074808649718761],[-0.014271722175181,0.039261389523745,0.063422009348869],[0.064277105033398,-0.0013454323634505,-0.08346775919199]],[[-0.026557296514511,-0.03419678658247,0.020920634269714],[0.0091097261756659,0.061698101460934,0.0041840332560241],[-0.1335286796093,-0.021129945293069,0.060258656740189]],[[0.098118774592876,-0.045158036053181,-0.0019266131566837],[0.06566260010004,0.044819906353951,0.040139026939869],[-0.041068758815527,-0.012204366736114,-0.167495906353]],[[-0.3480162024498,-0.11481282860041,0.42841172218323],[0.3764736354351,-0.084035776555538,-0.222263276577],[0.077778890728951,0.11249037832022,-0.24656355381012]],[[-0.013051832094789,-0.012572282925248,0.031424045562744],[-0.073642298579216,0.019478242844343,0.036931127309799],[-0.14542660117149,-0.067102432250977,0.070689387619495]],[[0.11428351700306,0.11137352883816,0.017394891008735],[-0.033893417567015,-0.062699720263481,0.018507389351726],[-0.068117462098598,0.052303615957499,-0.17176297307014]],[[-0.095592550933361,0.076108150184155,-0.093481414020061],[-0.17262546718121,0.14556361734867,-0.0037900283932686],[0.0061585991643369,-0.13695380091667,0.17821751534939]],[[0.015123923309147,-0.079971008002758,0.027303971350193],[-0.06737045198679,0.031977038830519,0.065099500119686],[-0.093723885715008,-0.010309688746929,0.038574859499931]],[[-0.054864134639502,0.08479717373848,-0.007710728328675],[0.03228385746479,0.060157995671034,0.0097952866926789],[0.051357109099627,-0.043551817536354,0.024463990703225]],[[0.024156756699085,0.051297422498465,-0.044058926403522],[-0.037445098161697,-0.12044766545296,-0.025213479995728],[0.086517862975597,0.075388096272945,-0.074166558682919]],[[-0.036396771669388,-0.11897545307875,0.036968111991882],[0.066407471895218,-0.016048477962613,0.1277769356966],[-0.17079383134842,0.0010613166959956,0.049142438918352]],[[-0.077271968126297,-0.0015393905341625,0.016153378412127],[0.028865775093436,0.090536154806614,-0.074575915932655],[-0.0038541525136679,0.00067467911867425,-0.009394041262567]],[[-0.016895828768611,0.050318527966738,-0.04013217613101],[-0.015885259956121,-0.12994399666786,0.032784018665552],[0.06123448163271,-0.015643194317818,0.0056655746884644]],[[-0.092175804078579,-0.0146843791008,0.0081249913200736],[-0.034428138285875,0.053582169115543,-0.036151137202978],[0.042284768074751,0.032880250364542,-0.019963359460235]],[[0.050876591354609,0.020951226353645,-0.091096997261047],[0.14799438416958,0.011109219864011,-0.12118028104305],[-0.09900163859129,0.23569875955582,-0.049964733421803]],[[0.1113338470459,-0.13729570806026,0.029534043744206],[0.16405612230301,-0.045719083398581,-0.061590548604727],[-0.036477483808994,0.055407542735338,-0.034767672419548]],[[0.044990714639425,-0.083742551505566,0.029384609311819],[0.066882960498333,0.037012171000242,-0.18866761028767],[0.013288690708578,0.0078632533550262,0.050401128828526]],[[-0.02247828617692,-0.022275066003203,0.020987147465348],[0.10613984614611,0.032827470451593,-0.0099484808743],[-0.054789241403341,0.012786460109055,0.059129167348146]],[[-0.0047191474586725,-0.07863187789917,0.063512064516544],[-0.031225316226482,-0.09530833363533,0.055130854249001],[0.002139228163287,0.016051011160016,-0.024173691868782]],[[0.042894925922155,0.066954798996449,0.0054375105537474],[0.042904045432806,0.020666817203164,0.04960872605443],[0.15168428421021,-0.21257890760899,-0.12483766674995]],[[-0.015824750065804,-0.007261258084327,0.014191787689924],[-0.085889734327793,-0.020136140286922,0.083536945283413],[-0.072552867233753,-0.016837224364281,0.074073553085327]],[[0.049616549164057,-0.14417853951454,0.11009396612644],[-0.24262243509293,0.20542402565479,-0.2249701321125],[0.14565786719322,-0.20717519521713,0.14898081123829]],[[0.078786924481392,0.057669945061207,0.071905821561813],[0.12586216628551,0.097492545843124,0.13572023808956],[0.14288540184498,0.16938026249409,0.055694404989481]],[[-0.02884110249579,-0.025628795847297,0.050535429269075],[0.096693120896816,-0.03281607106328,-0.051634751260281],[0.034762922674417,0.034563027322292,0.020720101892948]],[[0.032570108771324,-0.080320574343204,-0.0019935928285122],[-0.16592985391617,0.048834074288607,-0.15977263450623],[0.031375344842672,-0.14151908457279,0.0043745515868068]],[[0.060085449367762,0.13015875220299,-0.018792886286974],[0.033495906740427,0.18769654631615,-0.034967534244061],[0.35834109783173,-0.33171170949936,-0.010248905047774]],[[-0.081594176590443,-0.0025864229537547,-0.015019321814179],[-0.0108258780092,-0.24966929852962,-0.17264373600483],[0.13769306242466,0.11723167449236,-0.019375938922167]],[[0.11830331385136,0.16093876957893,0.090505510568619],[-0.049072097986937,-0.16671933233738,0.021706748753786],[-0.16478981077671,-0.14384768903255,-0.084567584097385]],[[-0.091970905661583,0.0062088314443827,-0.065594255924225],[0.065017715096474,0.090050339698792,0.017966751009226],[-0.043069444596767,0.085940286517143,-0.038645803928375]],[[0.02593176998198,-0.037919480353594,0.022650109604001],[0.021356223151088,0.00032667562481947,-0.030414482578635],[0.061121754348278,0.037632599473,-0.099557034671307]],[[-0.014305589720607,0.02055642567575,0.043048888444901],[-0.06241512671113,-0.06010852009058,0.16883490979671],[-0.071710854768753,-0.20914706587791,0.018398797139525]],[[0.07322183996439,0.018792139366269,-0.0081136040389538],[0.047096841037273,-0.039595510810614,-0.022777855396271],[0.0072196982800961,0.019961955025792,-0.0087242815643549]],[[-0.0083674332126975,0.05062784999609,0.079933397471905],[-0.017311641946435,-0.13444294035435,0.046321339905262],[-0.030788889154792,-0.087285093963146,0.026259809732437]],[[-0.091112323105335,0.0096511673182249,0.054508034139872],[-0.038378842175007,-0.18150241672993,-0.053028486669064],[0.075056150555611,0.23400743305683,-0.058579429984093]],[[-0.044314846396446,0.067025288939476,-0.018709173426032],[-0.075266167521477,-0.049349304288626,-0.0035739350132644],[0.10208945721388,-0.094585105776787,0.057940952479839]],[[-0.011968865059316,-0.039893262088299,0.012957746163011],[0.073672495782375,-0.004618345759809,-0.021924294531345],[-0.092804878950119,-0.10139634460211,0.0044339476153255]],[[-0.039943359792233,-0.00031999684870243,-0.0064962841570377],[-0.029972366988659,-0.015202828682959,0.044423460960388],[0.023195428773761,-0.020691923797131,-0.041626680642366]],[[-0.031189318746328,-0.019750168547034,-0.047872167080641],[0.02714136429131,-0.08204448223114,0.029415169730783],[0.08449898660183,-0.041623912751675,-0.012090827338398]],[[-0.047580014914274,0.010507476516068,0.065319880843163],[0.058040656149387,-0.097692139446735,0.060076173394918],[-0.058749731630087,0.051284290850163,-0.01287579908967]],[[0.025680158287287,0.0070607205852866,-0.073827244341373],[0.014378356747329,0.047038871794939,0.099451497197151],[-0.086605057120323,-0.15016248822212,0.042820896953344]],[[-0.06817951798439,-0.053830865770578,0.16953434050083],[0.15650513768196,-0.24541842937469,0.18729667365551],[0.14885297417641,0.032519869506359,-0.20404800772667]],[[0.036295849829912,0.064999669790268,0.12398531287909],[-0.051550395786762,-0.18319986760616,0.00013629737077281],[-0.033334635198116,-0.11759928613901,-0.058835137635469]],[[-0.0002811087470036,-0.034921482205391,-0.0098690241575241],[-0.044106587767601,0.016614938154817,0.033963851630688],[-0.022560570389032,0.076854549348354,-0.032763298600912]],[[0.0080222133547068,0.020989844575524,0.082795985043049],[-0.082766979932785,-0.052473168820143,0.1057982891798],[0.021018350496888,-0.083579063415527,0.0066888285800815]],[[-0.033025242388248,0.0063165808096528,-0.10018786787987],[0.002274802653119,-0.024208793416619,0.03677287325263],[0.042302716523409,0.0047276611439884,0.028727760538459]],[[0.019635552540421,0.031671222299337,0.13942930102348],[-0.12137489765882,0.00223887572065,-0.053195729851723],[-0.093355737626553,-0.034664507955313,-0.033884480595589]],[[0.00010220243711956,0.06830807775259,0.035364586859941],[0.0054513672366738,-0.041638448834419,-0.10151097923517],[0.068299032747746,0.073711380362511,-0.061592001467943]],[[-0.064379937946796,0.036491271108389,0.1031277179718],[0.11655205488205,-0.082788407802582,-0.082228437066078],[-0.06773054599762,0.087689988315105,-0.071445927023888]],[[-0.015504946000874,-0.024256194010377,0.051943562924862],[0.062647834420204,-0.069672584533691,0.091025792062283],[-0.048589523881674,-0.027772719040513,0.032229922711849]],[[-0.081923730671406,0.027202188968658,0.03455239161849],[-0.05851186439395,-0.033094115555286,-0.090372212231159],[0.016597533598542,0.10398375988007,0.068790107965469]],[[0.067368723452091,0.11996471136808,0.08737525343895],[-0.040988229215145,-0.034243013709784,-0.083839081227779],[0.08077722042799,-0.14808271825314,-0.13383197784424]],[[-0.061199482530355,0.00457464158535,0.059561111032963],[-0.142623513937,-0.013385863043368,0.074310772120953],[-0.36042964458466,0.25613540410995,-0.057005617767572]],[[-0.015970267355442,0.069956958293915,0.089440710842609],[0.032839298248291,0.05538222938776,-0.030878188088536],[-0.21768446266651,-0.10858357697725,0.071152910590172]],[[-0.020107610151172,0.017314648255706,0.017051938921213],[0.14298975467682,-0.012539093382657,-0.1127160564065],[-0.092832714319229,-0.12471801042557,-0.038034971803427]],[[-0.045464355498552,-0.031167099252343,0.056191045790911],[0.11429180204868,0.065571293234825,-0.073476478457451],[-0.10291048139334,0.03745411708951,0.0018828044412658]],[[-0.022011090070009,-0.061051305383444,0.0059895711019635],[-0.063125655055046,0.064914934337139,-0.058877069503069],[-0.20895241200924,0.024480067193508,0.08845742046833]],[[-0.18221487104893,0.14981676638126,-0.13340345025063],[0.088480994105339,-0.15717636048794,0.018886066973209],[0.11925917118788,-0.040321182459593,-0.085117816925049]],[[0.049298301339149,0.041567746549845,0.017780283465981],[0.0003094824787695,-0.035127133131027,-0.030984524637461],[-0.011601068079472,-0.087158337235451,-0.0050110989250243]],[[0.046104524284601,0.094630338251591,0.10448225587606],[-0.00032400654163212,-0.084866084158421,-0.1239403411746],[0.024543561041355,-0.12196829915047,0.097342535853386]],[[0.05339065939188,0.050482723861933,-0.0026762997731566],[-0.029459433630109,0.080850720405579,-0.028777558356524],[-0.16283839941025,0.23848789930344,-0.18747055530548]],[[-0.050079774111509,-0.087435834109783,0.19518975913525],[0.041130475699902,0.052603378891945,0.0096896896138787],[-0.049390658736229,-0.2692229449749,-0.053045619279146]],[[0.030591389164329,-0.031740438193083,0.063926674425602],[-0.14075256884098,-0.052722603082657,-0.039461504667997],[0.18897938728333,0.11688663065434,-0.04149341583252]],[[0.04563982412219,-0.039717901498079,0.040902283042669],[0.0017009440343827,0.066673964262009,0.00037003715988249],[-0.095785938203335,0.047798689454794,-0.073467403650284]],[[0.0035624820739031,-0.0080049317330122,0.0015889678616077],[-0.13844580948353,-0.019731460139155,0.0692398250103],[0.04850235581398,-0.011143237352371,-0.035000964999199]],[[0.027901092544198,-0.040168955922127,-0.044165723025799],[0.14168418943882,-0.046548709273338,-0.088537871837616],[-0.014624328352511,0.089626133441925,0.029688553884625]],[[0.0027986352797598,0.0088150845840573,0.039822924882174],[0.049522012472153,0.052268758416176,-0.12192294001579],[0.056571941822767,0.019544158130884,-0.09120087325573]],[[0.13479256629944,-0.010461220517755,0.049861520528793],[-0.067967228591442,-0.0028316855896264,-0.013608166947961],[-0.047623209655285,-0.014074264094234,-0.0048749032430351]],[[0.021780429407954,-0.00014030524471309,-0.06919564306736],[0.069181770086288,0.00042433149064891,0.063772864639759],[0.039810258895159,-0.056367546319962,-0.12139222025871]],[[0.0099008055403829,0.021860541775823,-0.15256978571415],[0.02338394895196,-0.0071730515919626,0.017085989937186],[-0.13172163069248,0.075233899056911,0.084105052053928]],[[-0.0053152348846197,0.036576598882675,0.029140401631594],[-0.071911945939064,0.023902386426926,-0.042355060577393],[-0.040431547909975,0.021946644410491,8.1141806731466e-05]],[[-0.016222737729549,0.069476246833801,0.025017807260156],[0.083005279302597,-0.018354868516326,0.10402169078588],[-0.14843951165676,-0.058816600590944,0.012198470532894]],[[0.048355098813772,-0.022756606340408,-0.079531691968441],[0.050713423639536,0.0090930117294192,0.0055696088820696],[0.12078196555376,-0.048786368221045,-0.050154704600573]],[[-0.021754387766123,0.027456130832434,0.14834305644035],[0.12773443758488,-0.061160422861576,-0.025120748206973],[-0.040189769119024,-0.12705889344215,-0.055702615529299]],[[0.026300789788365,-0.072676010429859,-0.070936739444733],[0.18302355706692,-0.10379680991173,-0.14292167127132],[0.44960871338844,-0.22362026572227,-0.12728726863861]],[[-0.060166273266077,-0.053577531129122,0.011798411607742],[-0.058420706540346,0.14221154153347,0.025339141488075],[-0.15260948240757,-0.077603757381439,0.10024806857109]],[[0.011049182154238,0.020735470578074,-0.017405854538083],[-0.015334943309426,0.067718133330345,-0.0574891269207],[-0.089934289455414,0.03727912902832,-0.066606514155865]],[[0.039998035877943,-0.067394115030766,-0.097318515181541],[0.1109986230731,-0.027241976931691,-0.10569243878126],[0.13783782720566,-0.0060648070648313,-0.10975817590952]],[[0.088220298290253,0.078346364200115,-0.05870283767581],[0.045446757227182,0.0084276041015983,-0.0042719431221485],[-0.051530946046114,-0.059153433889151,0.020924294367433]],[[-0.18659381568432,0.025886727496982,0.025872841477394],[0.27270632982254,-0.15487438440323,-0.045089211314917],[-0.35346364974976,0.20042414963245,0.0012079365551472]],[[0.002899365965277,0.071392945945263,-0.083438903093338],[0.12828876078129,0.02424300648272,-0.00093478569760919],[-0.20262266695499,-0.17713318765163,0.27358436584473]],[[-0.026864161714911,0.065851747989655,0.025586450472474],[-0.053523667156696,0.027451174333692,0.0060375579632819],[-0.0018869909690693,-0.076080970466137,-0.024042015895247]],[[-0.022802053019404,-0.023452918976545,0.074997305870056],[0.050033360719681,0.14359575510025,-0.005146065261215],[-0.0069467308931053,-0.25021541118622,-0.056664098054171]],[[-0.090507611632347,-0.06528902053833,0.06939885020256],[-0.15760593116283,-0.13071483373642,-0.0014909006422386],[-0.18211422860622,-0.18623957037926,-0.071408495306969]],[[0.038133312016726,0.0048593743704259,0.0018054293468595],[0.14078943431377,-0.014299740083516,-0.026644954457879],[-0.13513427972794,-0.016148801892996,-0.001241022371687]],[[-0.0063620405271649,0.040113292634487,-0.052454091608524],[0.071625359356403,-0.018551856279373,0.0031013714615256],[-0.021743064746261,0.049439523369074,-0.062134794890881]],[[0.08336565643549,0.057624820619822,-0.039879471063614],[-0.014004995115101,0.064191952347755,0.0084580974653363],[-0.20332555472851,-0.065296731889248,0.0044851056300104]],[[0.031099842861295,0.05977151170373,-0.021493330597878],[0.05924080312252,-0.0078185126185417,0.0048478315584362],[-0.10861580818892,0.081699691712856,-0.0679000467062]],[[-0.10330843180418,-0.14965710043907,0.068344287574291],[-0.037838827818632,-5.2699506341014e-06,0.0090827587991953],[-0.035232055932283,0.10281175374985,0.12345989048481]],[[-0.029544496908784,-0.0050855162553489,-0.096009477972984],[-0.013334843330085,0.056712847203016,0.018445417284966],[0.033276859670877,0.16033597290516,-0.065013855695724]],[[-0.0085756555199623,-0.041733581572771,0.02127124555409],[-0.05098032951355,0.065578795969486,0.0082206921651959],[-0.10963398218155,0.042149022221565,-0.017009735107422]],[[0.042514182627201,0.036582257598639,-0.091771364212036],[-0.001477136160247,-0.038207810372114,0.095424167811871],[-0.039768468588591,0.039280921220779,0.021701144054532]],[[-0.051629584282637,0.037372075021267,0.057531856000423],[-0.057714834809303,0.044097170233727,0.017979521304369],[-0.061899524182081,-0.061351235955954,0.11972414702177]],[[-0.11636454612017,-0.11541189998388,0.012266784906387],[-0.16031949222088,0.046887949109077,-0.0077615836635232],[0.068249963223934,0.094901621341705,0.13855250179768]],[[0.036548167467117,-0.060209088027477,0.006784678902477],[0.021423440426588,-0.023779604583979,-0.0419478751719],[0.11485480517149,-0.084818728268147,0.021754747256637]],[[-0.0042960229329765,0.041634533554316,0.10678754746914],[0.0096153393387794,0.083618193864822,-0.021526431664824],[-0.081089280545712,0.02584589831531,-0.10479623824358]],[[0.0014620637521148,-0.052920334041119,-0.057340487837791],[-0.029628546908498,0.13230822980404,-0.22884595394135],[0.020760601386428,0.079296410083771,-0.05236491933465]],[[-0.036705065518618,-0.080478332936764,0.024485344067216],[0.02334182523191,0.05447955057025,-0.015620232559741],[0.016782477498055,0.0055998382158577,-0.014153425581753]],[[-0.10859023779631,-0.10752838850021,-0.089426182210445],[-0.056151103228331,0.0097027104347944,0.028043203055859],[0.11731462925673,0.2189506739378,0.12720572948456]],[[-0.04229898005724,0.11235377937555,0.051222078502178],[-0.080408297479153,-0.063590288162231,0.024083463475108],[0.034216430038214,-0.088791951537132,-0.034410629421473]],[[0.061217091977596,0.018327917903662,0.046313818544149],[-0.0053762439638376,-0.010488110594451,-0.08556179702282],[0.045128878206015,-0.08638459444046,0.021890556439757]],[[0.02051872946322,-0.0085852239280939,0.035683419555426],[-0.085178427398205,0.2552504837513,0.08514679223299],[0.32397496700287,0.12992249429226,-0.066359020769596]],[[-0.033166866749525,0.11301375180483,0.061791386455297],[-0.016150087118149,-0.058395273983479,0.1117425635457],[0.031502354890108,-0.11208779364824,-0.11829495429993]],[[0.060131877660751,-0.074122674763203,-0.016146244481206],[0.02081485837698,-0.054412215948105,0.06840392947197],[-0.059219405055046,0.028367917984724,0.040661476552486]],[[-0.037565514445305,-0.025950912386179,-0.0051113548688591],[0.10990635305643,-0.017260739579797,0.074741251766682],[-0.10916768014431,0.038108915090561,-0.014867180027068]],[[-0.020335583016276,0.020972438156605,-0.01826879568398],[-0.02476661093533,-0.0519097186625,0.09574144333601],[0.012604192830622,0.048453342169523,-0.00096098223002627]],[[0.036010541021824,-0.02276455424726,-0.079160124063492],[-0.068234145641327,0.027804046869278,-0.0095562050119042],[-0.0090259406715631,0.079811215400696,-0.045909482985735]],[[-0.00026839453494176,0.036446828395128,0.043876394629478],[-0.035789489746094,0.12213126569986,-0.013221804052591],[-0.013103338889778,-0.10357382148504,-0.053502943366766]]],[[[0.0086181089282036,0.016953209415078,0.030523408204317],[0.010839132592082,0.0083786090835929,0.037285324186087],[0.022376406937838,-0.11250009387732,0.0023320429027081]],[[0.062151532620192,-0.01820638589561,0.065630398690701],[0.075669966638088,-0.058990634977818,-0.046015933156013],[-0.12076806277037,-0.082794658839703,-0.044123146682978]],[[-0.0070760701783001,-0.057242900133133,-0.037772569805384],[-0.0063584097661078,0.020286394283175,-0.070952080190182],[-0.052131369709969,-0.036921299993992,0.17205855250359]],[[-0.032129727303982,0.0068464749492705,-0.10992369055748],[-0.20133602619171,-0.0021792470943183,0.0022746070753783],[-0.029055064544082,-0.31499114632607,-0.05792036652565]],[[-0.028747348114848,-0.053724199533463,0.050118785351515],[0.051116093993187,0.076757155358791,0.02999259904027],[0.021707028150558,-0.01055961009115,-0.063083574175835]],[[-0.022247884422541,-0.057175181806087,-0.031667917966843],[0.051531609147787,0.19032895565033,0.062358014285564],[0.027388945221901,-0.0038028019480407,-0.069194369018078]],[[0.052600130438805,0.01892501115799,0.0020177415572107],[0.052431035786867,0.038331624120474,0.03707417473197],[-0.096060559153557,0.06855534017086,0.03881922736764]],[[0.091655492782593,-0.054612029343843,-0.073850311338902],[0.10812844336033,0.0054221232421696,0.061894752085209],[0.1066435649991,-0.095303907990456,0.00099642493296415]],[[-0.047956816852093,-0.049397189170122,0.07563566416502],[-0.055466007441282,-0.030141709372401,0.031220994889736],[0.032074742019176,0.025352731347084,-0.04211563616991]],[[-0.028723200783134,0.035898830741644,-0.13844013214111],[0.014090686105192,0.071520403027534,-0.035868663340807],[0.081591069698334,0.0096759088337421,-0.059148319065571]],[[0.057681363075972,0.077889017760754,0.076281532645226],[0.083894178271294,0.052682392299175,-0.0039859861135483],[0.056799583137035,0.019574483856559,-0.053630039095879]],[[-0.0059621473774314,0.087212070822716,-0.056802801787853],[0.085245691239834,-0.040148288011551,-0.00079224962973967],[0.025444410741329,0.007116402965039,-0.010651285760105]],[[-0.04067537933588,-0.060415644198656,-0.015564689412713],[0.027711754664779,-0.051192209124565,0.033855531364679],[0.052926208823919,0.064229264855385,0.041940081864595]],[[0.01782195456326,-0.0020796651951969,-0.022006802260876],[-0.079630441963673,0.042574569582939,0.035601072013378],[0.011864916421473,-0.079102464020252,0.047075424343348]],[[-0.0059471167623997,-0.0041120233945549,-0.11963718384504],[-0.18045324087143,-0.20360992848873,0.0031741834245622],[0.013333746232092,-0.10648849606514,-0.24566122889519]],[[0.057010862976313,-0.015706738457084,0.04440825805068],[-0.022804662585258,-0.011411160230637,0.037468671798706],[-0.060822725296021,-0.0064381062984467,-0.02821371331811]],[[0.0046099727042019,-0.1371950507164,0.03772646188736],[0.11746878921986,0.0089350966736674,0.070719391107559],[-0.0095806838944554,0.016548981890082,0.053412411361933]],[[0.012876329943538,-0.0031399156432599,0.0064698229543865],[0.052592851221561,0.116563975811,-0.081477999687195],[-0.011676476337016,0.10537965595722,0.026948908343911]],[[-0.073769450187683,-0.079636499285698,0.03023517690599],[0.042221516370773,-0.030084207653999,-0.079868726432323],[0.04808497428894,-0.0047261784784496,0.045974466949701]],[[0.016205862164497,0.031854305416346,-0.023054480552673],[0.028571767732501,-0.035458039492369,0.040144819766283],[-0.019458699971437,-0.025637742131948,-0.05771753564477]],[[-0.0061872838996351,-0.03406123444438,0.013251602649689],[-0.073660910129547,0.032353926450014,-0.024318994954228],[0.016527414321899,-0.11778953671455,-0.10134320706129]],[[-0.01991730183363,-0.00083183328388259,0.061724614351988],[0.017207300290465,-0.0888866558671,0.043649524450302],[0.041819345206022,0.023545973002911,-0.03265355527401]],[[0.020552968606353,-0.070336014032364,0.0692955031991],[-0.087251454591751,-0.049198251217604,-0.012376978993416],[0.025048945099115,-0.020176958292723,0.032411191612482]],[[0.060437180101871,-0.01822429522872,0.020652251318097],[0.033039461821318,0.031896408647299,-0.017965467646718],[-0.10509952902794,-0.016168894246221,0.031264632940292]],[[0.095809042453766,-0.15200598537922,0.030503815039992],[-0.16352406144142,0.096514329314232,-0.019568080082536],[0.035916723310947,-0.10047072917223,-0.16558554768562]],[[0.063734367489815,0.022738279774785,0.044165350496769],[-0.043832797557116,-0.057118445634842,0.068187683820724],[0.021247733384371,-0.060747168958187,-0.026226999238133]],[[-0.0024289223365486,-0.0046517038717866,-0.049193225800991],[-0.041873216629028,-0.024179009720683,-0.13651974499226],[0.040471855551004,-0.024880347773433,-0.061201930046082]],[[-0.057904787361622,-0.25214695930481,-0.044539514929056],[-0.05335259437561,-0.12140595912933,0.08558115363121],[-0.049057729542255,-0.25508999824524,0.10825730860233]],[[0.047457687556744,-0.0046745873987675,-0.034538798034191],[0.022653996944427,-0.058439310640097,-0.04881365224719],[-0.0056832022964954,0.027119044214487,-0.043132800608873]],[[-0.020618865266442,0.08708768337965,0.084783509373665],[0.017975511029363,0.075134761631489,0.049702569842339],[-0.037998840212822,-0.01851986348629,0.00055019737919793]],[[-0.062977239489555,-0.034285802394152,-0.015648441389203],[0.021916009485722,-0.063369370996952,-0.02916425652802],[0.10200577974319,-0.0053140576928854,0.12239910662174]],[[0.026036174967885,0.00045773893361911,-0.001444719848223],[-0.049462296068668,-0.050602529197931,0.0019201358081773],[0.0028254031203687,0.088822819292545,0.078218102455139]],[[0.072707027196884,-0.10968372225761,0.00027286366093904],[0.0020041468087584,-0.010355088859797,-0.046512816101313],[0.015822310000658,0.092724800109863,-0.026982672512531]],[[-0.0091951601207256,-0.061382845044136,-0.041262183338404],[-0.056957118213177,0.082419782876968,-0.025845944881439],[0.078612215816975,0.095223665237427,0.016248526051641]],[[0.012947077862918,0.050070978701115,-0.013102299533784],[0.12304593622684,0.098573684692383,-0.014043493196368],[0.13862973451614,0.079248011112213,-0.042229242622852]],[[-0.093445144593716,-0.012599192559719,-0.029150350019336],[-0.081247828900814,0.038894336670637,-0.024838110432029],[-0.11811818927526,-0.030297435820103,-0.0074285920709372]],[[-0.023143464699388,0.16784471273422,0.061271656304598],[-0.033704273402691,0.030531227588654,-0.019252998754382],[0.026237487792969,-0.13403050601482,0.0049516879953444]],[[0.025091527029872,0.025381160899997,0.063596300780773],[0.035212371498346,0.0089209638535976,-0.059557538479567],[0.049559462815523,-0.079966671764851,-0.01202782522887]],[[0.039105292409658,0.061150815337896,0.072389028966427],[-0.01865790784359,-0.0283716134727,-0.0064449794590473],[-0.0036103834863752,0.020448883995414,0.020712211728096]],[[-0.046354964375496,0.039116241037846,-0.04235965013504],[-0.030906796455383,0.11999396979809,0.091740839183331],[-0.1235012114048,0.13989944756031,0.25528603792191]],[[-0.11172132194042,-0.021649235859513,0.041172809898853],[0.0092224515974522,-0.0034567087423056,0.0083894124254584],[-0.016651872545481,-0.11521705985069,-0.085861310362816]],[[0.021564479917288,0.12586534023285,0.16281661391258],[-0.0049438397400081,0.05583143979311,0.058379616588354],[-0.068217702209949,0.053724713623524,0.0010393928969279]],[[0.05972471088171,-0.076467923820019,0.049753434956074],[0.0097080208361149,0.059506636112928,0.024639498442411],[0.15407936275005,0.097393214702606,0.014012783765793]],[[-0.03152072802186,0.012598848901689,-0.0046241777017713],[0.0043482598848641,-0.021163303405046,-0.04141878336668],[-0.012693879194558,0.052663430571556,0.010175094008446]],[[-0.098247669637203,-0.093063078820705,0.017091942951083],[-0.06867703795433,0.0045009641908109,-0.035438060760498],[0.11301230639219,0.027824785560369,0.062424007803202]],[[0.030286045745015,0.036404199898243,0.047488927841187],[0.022833701223135,0.060858692973852,0.01314161811024],[0.089226022362709,0.053755965083838,0.076600797474384]],[[0.040557041764259,0.05648847669363,0.067635498940945],[0.0013289072085172,0.054213747382164,0.056853502988815],[-0.0028336108662188,0.078571856021881,-0.067041888833046]],[[0.035291690379381,-0.09677417576313,-0.10612501204014],[-0.037002641707659,-0.11926008760929,-0.10271802544594],[0.017614267766476,-0.029159095138311,-0.020150896161795]],[[0.015255155973136,-0.04519023373723,-0.064542755484581],[-0.0039992569945753,-0.039885710924864,-0.056080691516399],[0.020544376224279,0.013051749207079,0.053073849529028]],[[0.026889532804489,-0.024841737002134,0.060109984129667],[0.0041444203816354,0.058250028640032,0.065825991332531],[-0.094460777938366,-0.10853987187147,0.041214853525162]],[[-0.027247415855527,-0.013349360786378,-0.12022496014833],[0.070678785443306,0.064381398260593,-0.019231071695685],[0.057089768350124,-0.035457644611597,-0.051951561123133]],[[0.066553123295307,0.068347334861755,0.1002180352807],[0.069063127040863,-0.0021648542024195,-0.054032538086176],[0.017010638490319,-0.052074830979109,-0.096052795648575]],[[-0.075334310531616,-0.05394396558404,-0.024337871000171],[0.020635955035686,0.038409490138292,0.069930545985699],[0.040560100227594,0.076793983578682,0.01039588265121]],[[-0.060311920940876,-0.18283227086067,-0.03689106926322],[-0.0016759230056778,0.018660079687834,-0.020308347418904],[-0.081871546804905,0.10104326158762,-0.045052617788315]],[[0.045805830508471,-0.13452050089836,-0.1113915592432],[0.087533093988895,0.081742487847805,-0.062749691307545],[-0.032315041869879,0.03676138445735,0.041118260473013]],[[-0.00354835530743,0.11795751750469,-0.0067942379973829],[-0.011199032887816,0.0036010080948472,-0.054821647703648],[-0.059321615844965,-0.087588749825954,-0.065761685371399]],[[-0.015956928953528,-0.024122009053826,0.061652198433876],[0.036476857960224,-0.0011210946831852,0.028331805020571],[0.025851637125015,-0.14608427882195,0.11998346447945]],[[0.034344613552094,-0.0043431012891233,0.03824619948864],[-0.010244631208479,0.0064665442332625,-0.037437163293362],[0.033286094665527,0.026067350059748,0.011518779210746]],[[-0.0082894144579768,-0.12960331141949,-0.12413029372692],[0.012719562277198,0.0027195948641747,-0.08748235553503],[0.0030730639118701,0.0097662527114153,-0.052516747266054]],[[0.011174158193171,-0.072533845901489,-0.11879748851061],[-0.055688079446554,0.0054733767174184,0.1423536837101],[-0.03818803653121,0.027368972077966,-0.0077311820350587]],[[-0.024213107302785,-0.033421758562326,0.0043842867016792],[0.01020834594965,0.056282505393028,-0.10177529603243],[-0.025073146447539,0.04040739685297,-0.033815260976553]],[[0.040594711899757,0.03509621322155,-0.10573657602072],[0.010059309192002,0.011524543166161,-0.17606496810913],[-0.0043472554534674,-0.015230723656714,-0.17746658623219]],[[-0.014328897930682,-0.06667136400938,-0.040949735790491],[-0.041267409920692,-0.052578680217266,-0.08253937214613],[0.0017827448900789,-0.0066203796304762,0.036406189203262]],[[0.036420118063688,0.072818741202354,0.076266720890999],[0.018605520948768,-0.0036556753329933,-0.0059288647025824],[0.0054974872618914,-0.021111235022545,-0.0013959454372525]],[[0.071491822600365,-0.068128772079945,0.014820265583694],[-0.047118671238422,-0.0070255110040307,-0.070818178355694],[0.061219252645969,-0.021599436178803,0.053895607590675]],[[0.033564474433661,0.12769588828087,0.081706002354622],[-0.16464388370514,-0.08107802271843,0.12738490104675],[-0.028007779270411,0.028655026108027,0.0050953705795109]],[[0.042825616896152,0.092142380774021,-0.10437081754208],[0.052146077156067,0.043372571468353,0.10143068432808],[0.025521459057927,-0.077261358499527,-0.042144794017076]],[[0.09551340341568,-0.0012946913484484,0.015702661126852],[0.039250515401363,0.01761613227427,0.047038301825523],[0.0046154973097146,0.084513671696186,0.0080730048939586]],[[0.037085942924023,0.034235388040543,-0.040117003023624],[0.016290633007884,-0.015719143673778,0.072902835905552],[-0.015182101167738,-0.061410203576088,0.051170378923416]],[[-0.05901075899601,0.025274164974689,0.032441046088934],[-0.13098227977753,0.042725041508675,0.13262356817722],[0.091223865747452,0.03344576433301,0.0069470885209739]],[[0.10047455132008,-0.0026172236539423,0.13226023316383],[-0.032564014196396,0.048548448830843,-0.012489955872297],[0.0065933801233768,0.023570410907269,0.011686021462083]],[[-0.032546903938055,-0.072167955338955,-0.069805629551411],[-0.042326524853706,-0.1004381403327,-0.023514168336987],[-0.018569085747004,-0.075645722448826,0.028790881857276]],[[0.0054017119109631,-0.12909196317196,0.040932811796665],[0.01405842974782,0.0028453671839088,0.015097064897418],[0.017849301919341,0.090076237916946,-0.046877775341272]],[[0.055786963552237,-0.011732213199139,0.03539802134037],[-0.043731223791838,-0.040091417729855,-0.01183395460248],[-0.037830907851458,0.019380744546652,0.016257386654615]],[[0.039791382849216,-0.006955751683563,-0.04612635448575],[-0.042250394821167,0.012500782497227,0.029689172282815],[0.040677540004253,0.0039095962420106,0.045851971954107]],[[-0.00062432221602648,0.034830424934626,0.063824661076069],[-0.045335903763771,-0.079627029597759,0.05157271400094],[-0.054324921220541,0.02412355877459,-0.032016381621361]],[[0.018983118236065,-0.02247634716332,-0.011979488655925],[0.054622080177069,0.014433142729104,0.047588989138603],[0.011834658682346,0.063249990344048,0.0032222184818238]],[[0.077819056808949,0.03672281652689,0.13148076832294],[-0.07193586230278,0.07315968722105,0.01020716689527],[0.071521617472172,0.0273456890136,0.099413119256496]],[[0.036141857504845,0.062023278325796,-0.077791094779968],[-0.006555253174156,0.0086783301085234,0.024779783561826],[-0.046392105519772,-0.022231314331293,-0.026858225464821]],[[-0.048693526536226,-0.1177733540535,0.045216251164675],[-0.032284531742334,-0.048523381352425,0.023226192221045],[-0.018509797751904,0.01654108427465,0.17991006374359]],[[-0.030737306922674,0.048365097492933,-0.0066733830608428],[-0.012329906225204,-0.021385507658124,-0.054671254009008],[0.019501697272062,0.029046462848783,-0.070876650512218]],[[3.6016026569996e-05,0.0008541542920284,-0.02968873269856],[0.013194117695093,0.043651945888996,0.17600989341736],[0.047849450260401,-0.074329107999802,-0.055723622441292]],[[0.065499685704708,0.016888650134206,-0.0015138633316383],[-0.033979095518589,0.038977313786745,0.12831218540668],[0.055064924061298,0.0037497971206903,0.007036566734314]],[[0.071489997208118,-0.012522932142019,-0.0010806083446369],[0.066629745066166,0.030865343287587,0.0019117523916066],[-0.013682486489415,-0.018227377906442,-0.054632764309645]],[[-0.015141430310905,0.014000697992742,0.029566466808319],[0.059945847839117,-0.049605656415224,-0.081845805048943],[0.09238937497139,0.045180905610323,-0.066238410770893]],[[-0.057036980986595,-0.055631369352341,-0.045051492750645],[-0.10742424428463,0.0068234545178711,0.058277003467083],[0.019510578364134,-0.019223028793931,0.060210846364498]],[[-0.0061756428331137,-0.024335267022252,-0.11305080354214],[0.024158397689462,0.0074184620752931,-0.090223208069801],[0.041429042816162,-0.019308952614665,0.056151822209358]],[[0.054681520909071,-0.13834366202354,-0.067397341132164],[-0.0080563062801957,-0.055339574813843,0.028493899852037],[-0.0032640984281898,0.0048028402961791,-0.034719485789537]],[[-0.057910434901714,0.15417346358299,0.078759111464024],[-0.088922813534737,0.098796740174294,0.14808993041515],[-0.11227871477604,0.070353038609028,0.10574098676443]],[[0.051849573850632,0.02767776325345,-0.038507647812366],[-0.041604917496443,-0.0086654024198651,0.073540568351746],[0.012835861183703,0.0055101495236158,-0.018516376614571]],[[-0.028910266235471,0.077672250568867,-0.0060883592814207],[-0.14444160461426,-0.023535314947367,0.019949035719037],[-0.014583751559258,-0.0031417259015143,0.053274519741535]],[[0.078202903270721,0.00033655966399238,-0.010126110166311],[0.01384293474257,-0.010451388545334,-0.059570837765932],[0.020952891558409,0.01291514467448,-0.073117077350616]],[[0.021722408011556,0.032291162759066,-0.11656906455755],[0.067394264042377,-0.028945840895176,-0.039703872054815],[0.076586082577705,0.10794797539711,0.10017742216587]],[[0.0093812318518758,-0.012428669258952,-0.029287572950125],[-0.0083353593945503,-0.023777002468705,-0.10581174492836],[0.0069422596134245,-0.032285682857037,0.015707992017269]],[[-0.021092968061566,0.0095828203484416,-0.082955189049244],[-0.036759283393621,0.011575722135603,-0.016957357525826],[-0.0064011141657829,-0.15902900695801,0.11025656759739]],[[0.081015981733799,0.014958824031055,0.036540240049362],[-0.00031302074785344,-0.082016162574291,0.01968452706933],[0.036741733551025,-0.035992428660393,-0.02834708057344]],[[-0.030085027217865,-0.0462984777987,-0.0835802257061],[0.047096658498049,0.012367000803351,-0.017716016620398],[-0.025778938084841,-0.070600815117359,0.0031518558971584]],[[0.057235229760408,-0.030461236834526,-0.0043058916926384],[0.0594682097435,-0.0098909623920918,0.0035953894257545],[-0.12791135907173,-0.056327644735575,-0.014841288328171]],[[-0.10203133523464,-0.086802922189236,0.025167195126414],[-0.081059016287327,-0.059709504246712,0.0081616127863526],[0.035866715013981,0.012765689752996,0.12345112115145]],[[-0.049918234348297,-0.0088621620088816,0.034775577485561],[0.0095442133024335,0.043255470693111,-0.054830402135849],[0.16670279204845,0.038739297538996,0.043523799628019]],[[-0.025966618210077,0.026778295636177,0.081687197089195],[-0.092793121933937,0.080368049442768,-0.060627918690443],[0.060687880963087,-0.048948984593153,0.015414501540363]],[[-0.065057791769505,-0.027081083506346,-0.015106087550521],[0.059051271528006,-0.04728639498353,-0.14322777092457],[0.019039448350668,0.034911088645458,0.11167991906404]],[[-0.0092308185994625,0.039305903017521,-0.024078311398625],[-0.03121298737824,-0.048986360430717,0.0031586110126227],[0.015093315392733,0.014799725264311,0.03174976631999]],[[-0.06322219222784,-0.076099969446659,-0.023525580763817],[-0.025034748017788,-0.04639321193099,-0.036951158195734],[-0.091790750622749,-0.093290574848652,0.045544154942036]],[[-0.045409880578518,0.032125379890203,0.0077471118420362],[-0.038316201418638,0.0198885332793,-0.018012324348092],[0.010367324575782,0.076527461409569,0.06736946105957]],[[0.098020412027836,0.0087689282372594,-0.021952277049422],[0.093859851360321,0.12964105606079,0.054556593298912],[0.053144447505474,0.082333914935589,-0.02943778783083]],[[0.065517365932465,0.14009444415569,0.040303524583578],[0.053550288081169,0.066368073225021,-0.053748667240143],[0.034859664738178,-0.031139571219683,-0.013235408812761]],[[0.072722993791103,0.043479945510626,0.010056871920824],[-0.052910890430212,-0.070126622915268,0.013249981217086],[0.0009021982550621,-0.11084831506014,-0.00043421387090348]],[[-0.063592471182346,0.01787231490016,0.027977015823126],[0.10069010406733,0.0051607098430395,-0.023855792358518],[0.025315156206489,-0.034009445458651,-0.0496338121593]],[[-0.0052200742065907,-0.023708751425147,0.034348681569099],[0.0021212282590568,-0.036520946770906,-0.042194046080112],[0.10653244704008,-0.059909377247095,0.01484115049243]],[[0.051394805312157,0.0087812263518572,-0.037829857319593],[-0.045343525707722,-0.032414987683296,0.043297361582518],[0.021860169246793,-0.040884397923946,0.012509511783719]],[[-0.083640120923519,0.063280962407589,0.053366024047136],[0.049838524311781,0.0095303989946842,-0.022338813170791],[-0.033259980380535,0.036652620881796,-0.10388176143169]],[[0.10799122601748,0.086152479052544,-0.053783014416695],[0.0028598513454199,-0.12962846457958,-0.063387423753738],[-0.0058511812239885,-0.037268925458193,0.091781564056873]],[[-0.0035060723312199,0.027941524982452,-2.5765530153876e-05],[0.031802009791136,0.017058731988072,-0.036451000720263],[-0.049662530422211,0.024026948958635,0.040507528930902]],[[0.010976084508002,-0.0095561118796468,0.061419483274221],[0.039930123835802,-0.098576307296753,0.025376860052347],[-0.084383510053158,0.072329856455326,0.068524613976479]],[[0.093741558492184,-0.017765309661627,-0.060989256948233],[-0.00076807785080746,0.012692903168499,0.055258262902498],[0.0099894879385829,-0.011202499270439,-0.048392910510302]],[[0.04024351760745,0.047912996262312,0.070391982793808],[0.065880827605724,-0.012777397409081,-0.052228279411793],[-0.070083744823933,-0.025121273472905,-0.05872567743063]],[[0.0047955764457583,-0.11028624325991,-0.062980443239212],[-0.064338132739067,-0.092513881623745,-6.980375474086e-05],[-0.014953395351768,0.0011965589364991,0.034517511725426]],[[0.054158311337233,0.0017946496373042,-0.04132666811347],[0.0061351787298918,0.041082851588726,-0.0021040032152086],[0.10373425483704,-0.041671831160784,-0.0024172086268663]],[[0.094741635024548,0.015480324625969,-0.081276267766953],[0.033923074603081,0.10903695970774,-0.075433939695358],[-0.03191102668643,0.015249750576913,-0.11344011873007]],[[0.011211956851184,-0.081233948469162,-0.01635641977191],[-0.054413944482803,0.019410444423556,-0.022248482331634],[0.013310885056853,0.014870352111757,-0.034287378191948]],[[-0.010287255048752,0.015198683366179,0.087471194565296],[-0.059683155268431,0.034084495157003,-0.0091854874044657],[-0.018851809203625,-0.042686257511377,-0.056182686239481]],[[0.0074975327588618,-0.075388617813587,-0.02783302590251],[-0.062420926988125,-0.17721255123615,-0.10431262105703],[-0.01591669768095,-0.054553408175707,-0.12518770992756]],[[-0.035155173391104,0.038988817483187,0.0075669181533158],[0.067154437303543,0.0063126785680652,-0.015067186206579],[-0.0055266609415412,0.014336519874632,0.012991342693567]],[[-0.035049498081207,0.02778042294085,0.013029235415161],[-0.040812749415636,-0.011094496585429,0.057519931346178],[-0.011530347168446,0.040818825364113,-0.021840158849955]],[[-0.029285566881299,-0.045030578970909,0.05832152813673],[0.08218064904213,0.086194984614849,0.083851777017117],[0.049328420311213,0.06040721014142,0.091940455138683]],[[0.0019947160035372,0.020414208993316,-0.0035142316482961],[0.023744434118271,0.020446119830012,0.016966385766864],[-0.11058317869902,-0.06995315104723,0.049556840211153]],[[-0.03209425881505,-0.10024678707123,0.001701972563751],[-0.048895508050919,-0.010775537230074,0.003992575686425],[-0.0025857409927994,0.022418763488531,0.021058736369014]]],[[[-0.02673751488328,0.049708716571331,0.097849898040295],[0.12011361122131,-0.0023370415437967,-0.071787253022194],[0.038262888789177,0.020344700664282,-0.0016727953916416]],[[0.0027096339035779,-0.055222019553185,-0.022357236593962],[-0.0065918988548219,-0.016208026558161,0.07811526954174],[-0.024560023099184,0.071514047682285,0.0382712893188]],[[0.013817983679473,0.033218387514353,-0.039620507508516],[0.044934041798115,0.038898579776287,0.016239719465375],[-0.020095501095057,0.006940015591681,0.014513945207]],[[0.0092581892386079,-0.030409967526793,0.0013805183116347],[0.023830950260162,-0.012562327086926,-0.041422087699175],[-0.00024458020925522,0.016080541536212,0.0036729832645506]],[[-0.012278512120247,0.0066867778077722,-0.001400753390044],[0.072248518466949,-0.050808064639568,0.021314794197679],[0.043899022042751,0.10509158670902,-0.055003583431244]],[[0.0010612152982503,-0.012955429032445,0.04060285910964],[-0.045300744473934,0.012005039490759,0.0011736957821995],[-0.017584249377251,-0.025586580857635,-0.0080478554591537]],[[0.027193220332265,-0.062619052827358,-0.0036924690939486],[-0.041509870439768,0.071076720952988,-0.010278362780809],[-0.037200152873993,0.079270228743553,-0.075015544891357]],[[-0.010628364980221,0.025811526924372,-0.025866147130728],[-0.026739472523332,0.00085024326108396,-0.11373957246542],[0.0080881314352155,0.04772637039423,0.017711708322167]],[[-0.046052891761065,0.030249733477831,-0.033732414245605],[0.059316422790289,-0.025237260386348,-0.013023521751165],[-0.01586758159101,0.011078671552241,0.029798807576299]],[[-0.031063664704561,0.061988983303308,0.03519931063056],[0.028631336987019,0.0047486876137555,-0.022827722132206],[-0.021195845678449,-0.050373192876577,0.065669871866703]],[[0.088490262627602,0.015679579228163,-0.062704153358936],[0.064704224467278,-0.020547416061163,-0.043353971093893],[-0.010650488547981,-0.083642445504665,-0.061825782060623]],[[-0.038134254515171,0.067116715013981,0.013394273817539],[-0.051880329847336,0.047867156565189,0.032105527818203],[-0.010953483171761,0.033413115888834,0.060030996799469]],[[-0.020673321560025,-0.004120534285903,0.017006544396281],[0.037505269050598,0.0061949179507792,-0.049619011580944],[0.042500957846642,0.023717468604445,-0.026691183447838]],[[0.031711172312498,0.011144229210913,-0.064823493361473],[0.063121229410172,-0.054925214499235,0.0051975748501718],[-0.0053505310788751,0.018343597650528,-0.022033289074898]],[[-0.1102512255311,-0.010639094747603,0.0029027147684246],[-0.10829295217991,-0.011823726817966,-0.0049116164445877],[0.0075657814741135,-0.029076104983687,0.049138575792313]],[[-0.044010557234287,0.046319164335728,0.0025676370132715],[-0.083231002092361,0.068756066262722,-0.0084765432402492],[-0.047270581126213,-0.076035529375076,0.11002770811319]],[[-0.025015154853463,-0.010929325595498,0.036864787340164],[0.085303097963333,0.0091966828331351,-0.039366684854031],[0.060542475432158,0.075679875910282,0.082495391368866]],[[-0.014031833037734,0.11819548904896,0.025836331769824],[0.051612127572298,0.099379934370518,0.028602661564946],[-0.056708764284849,-0.04907962679863,0.010723391547799]],[[0.020990600809455,0.047068186104298,-0.022701794281602],[0.0025905482470989,-0.059983614832163,-0.080543532967567],[-0.012986274436116,-0.055499583482742,0.061914052814245]],[[0.06559406965971,-0.034479167312384,-0.085701338946819],[0.032229512929916,0.014307755976915,-0.033575002104044],[-0.027644880115986,-0.045133981853724,-0.072055697441101]],[[-0.029082264751196,-0.029744321480393,-0.026645729318261],[0.041465073823929,-0.038528941571712,-0.015144421719015],[-0.11292758584023,-0.069939792156219,0.08201315253973]],[[-0.048539366573095,0.074244849383831,-0.016021553426981],[0.0030853219795972,-0.048235010355711,-0.068376153707504],[0.075298756361008,-0.023695878684521,-0.032210160046816]],[[-0.039177168160677,0.06066757440567,0.027907311916351],[0.0021589749958366,0.012069556862116,-0.0026589839253575],[0.017070846632123,0.0043720775283873,0.021563161164522]],[[0.04282857850194,-0.091259077191353,-0.091816909611225],[-0.017145903781056,-0.00130450935103,-0.074108012020588],[-0.089661940932274,0.013810694217682,0.0013081453507766]],[[0.033275187015533,-0.046824369579554,0.061777770519257],[-0.027582693845034,-0.024127064272761,0.039081618189812],[0.0041031059809029,0.043754797428846,0.07294075191021]],[[0.038176916539669,-0.015407435595989,0.030749449506402],[-0.015565850771964,0.10029132664204,-0.03635736182332],[0.048915266990662,-0.0054272208362818,-0.016316775232553]],[[0.047005336731672,0.046003799885511,0.039221063256264],[0.053111765533686,-0.052846901118755,-0.0088951298967004],[0.0032303619664162,0.026796715334058,0.081795558333397]],[[0.033295460045338,0.0059211347252131,-0.0060535529628396],[-0.032534800469875,0.018943835049868,-0.037007816135883],[-0.063713110983372,-0.019247846677899,0.050792690366507]],[[0.0040002381429076,-0.065659381449223,0.0032451816368848],[0.049842558801174,0.031233074143529,0.052818242460489],[-0.0087678916752338,-0.023049581795931,0.074126578867435]],[[-0.045370846986771,-0.00052769354078919,-0.097484648227692],[0.013526843860745,-0.059866461902857,0.001482100924477],[-0.02383884601295,-0.0084443567320704,-0.044258520007133]],[[-0.052157416939735,0.089568741619587,0.021907929331064],[0.013972904533148,-0.0088918088003993,-0.023313263431191],[0.067361138761044,-0.088652729988098,-0.043802864849567]],[[-0.087496370077133,0.018157573416829,0.06203880906105],[0.003772130003199,-0.054008886218071,-0.015520241111517],[-0.018058706074953,-0.038173582404852,0.015673873946071]],[[-0.044119786471128,-0.047505147755146,-0.025975443422794],[0.02482170984149,0.018890380859375,0.042466923594475],[0.02016082033515,0.01572516001761,0.05319107323885]],[[-0.016835667192936,-0.067844085395336,-0.0043859062716365],[0.0026640824507922,0.0098257325589657,-0.046605452895164],[-0.0030839815735817,0.012847842648625,0.0089605087414384]],[[0.062143392860889,0.035353887826204,0.024764537811279],[0.0195481646806,-0.068465165793896,-0.052682459354401],[0.011361450888216,-0.096004910767078,-0.043572720140219]],[[0.039284370839596,-0.0053638070821762,-0.077278085052967],[-0.0031325817108154,0.11731829494238,-0.011135626584291],[-0.021408315747976,0.14193953573704,-0.033578652888536]],[[-0.011184954084456,0.060949269682169,0.012586449272931],[-0.01641059666872,-0.084745861589909,-0.063748881220818],[-0.090908452868462,0.035419933497906,-0.077019549906254]],[[0.031722858548164,-0.016249412670732,-0.034632336348295],[0.060466140508652,-0.011877430602908,-0.023287937045097],[0.019778234884143,-0.038545243442059,0.0043616690672934]],[[-0.066049657762051,0.10748334974051,-0.087410792708397],[-0.03591088950634,-0.048774562776089,0.064162880182266],[-0.054959736764431,-0.019538838416338,0.01524711586535]],[[-0.05199620872736,0.0051906867884099,-0.05732785910368],[-0.035569131374359,-0.015555740334094,0.076606519520283],[0.036317486315966,-0.0024988646619022,-0.0615214407444]],[[-0.021070824936032,-0.028179893270135,0.0015948571963236],[0.02337802015245,-0.043256010860205,-0.0031041451729834],[-0.0065404903143644,-0.010224212892354,0.068292260169983]],[[-0.036246929317713,-0.02729076333344,-0.002820234047249],[-0.028862534090877,0.049944590777159,0.027529142796993],[0.031713791191578,-0.0027396909426898,0.034065425395966]],[[-5.4275038564811e-05,-0.02058039791882,0.042016234248877],[0.015022282488644,0.059218343347311,-0.037250354886055],[0.046411231160164,-0.044271640479565,-0.031455174088478]],[[0.016412386670709,-0.10035198926926,-0.023505223914981],[0.051947738975286,-0.04914940148592,0.0089837005361915],[-0.057782329618931,-0.030135104432702,-0.072521924972534]],[[-0.014696468599141,-0.055496335029602,-0.070600248873234],[0.028019599616528,0.016087533906102,-2.275293081766e-05],[-0.019983580335975,0.0051745343953371,-0.0050507234409451]],[[0.0079875690862536,0.048638936132193,0.0010746532352641],[-0.011063534766436,0.0042230822145939,0.0060920775867999],[-0.012240940704942,-0.055837206542492,-0.066272601485252]],[[0.010391344316304,-0.079831875860691,-0.11446143686771],[0.024158347398043,-0.093801327049732,0.19095841050148],[0.046309370547533,0.10458412021399,0.24451811611652]],[[-0.033834431320429,0.056072283536196,0.10360677540302],[0.022818222641945,-0.022983476519585,-0.015098844654858],[-0.046557143330574,-0.026087807491422,-0.10992255806923]],[[-0.047529485076666,0.082993142306805,0.092162944376469],[-0.060233566910028,-0.027890963479877,0.042190864682198],[-0.081377506256104,-0.049159903079271,-0.081803597509861]],[[0.073801286518574,0.061397276818752,-0.078746825456619],[0.056951683014631,0.012226228602231,0.026913560926914],[-0.04436568915844,-0.017117502167821,-0.011616080068052]],[[-0.015725802630186,-0.084356635808945,-0.010471129789948],[0.012622370384634,0.032345876097679,0.0026702533941716],[-0.023526595905423,-0.021545363590121,-0.096775472164154]],[[0.10841569304466,0.017915645614266,-0.038096375763416],[0.00084841891657561,-0.057280547916889,-0.066920213401318],[-0.023733036592603,-0.080445863306522,0.061157066375017]],[[0.005099942907691,0.041263002902269,-0.026932893320918],[0.0049843029119074,-0.05575056001544,-0.0098126102238894],[-0.00094764970708638,-0.020201886072755,-0.013678034767509]],[[0.015328612178564,-0.074653282761574,0.020325042307377],[0.0070341802202165,-0.011110576801002,0.0066248695366085],[-0.025664664804935,0.0026170518249273,-0.076214000582695]],[[-0.1219530031085,-0.060163330286741,-0.020945973694324],[0.028685681521893,-0.028180876746774,-0.022680170834064],[0.082088783383369,-0.016860632225871,0.068081393837929]],[[-0.028142957016826,-0.041231360286474,-0.051762290298939],[0.03381297364831,0.034960426390171,-0.01763790845871],[0.044731143862009,0.022970756515861,-0.022022608667612]],[[0.071581318974495,-0.065504640340805,-0.019033268094063],[0.0082721598446369,0.062798589468002,0.014874561689794],[-0.057424154132605,0.011336161755025,-0.019376799464226]],[[-0.051275320351124,-0.0094972858205438,-0.026486771181226],[0.022012364119291,0.065517015755177,0.0044353399425745],[0.076843559741974,-0.087156675755978,-0.062456410378218]],[[-0.068613812327385,-0.033395059406757,-0.01602135039866],[-0.0090425303205848,-0.058862186968327,-0.00083080166950822],[-0.021255979314446,0.074309282004833,0.015108573250473]],[[0.0022816865239292,0.040596596896648,-0.017111150547862],[-0.05145175755024,-0.016241863369942,0.045106250792742],[0.014763806015253,-0.014230407774448,-0.0071683349087834]],[[0.041952129453421,0.019583601504564,-0.032698012888432],[-0.011946705169976,0.035553973168135,-0.089216858148575],[-0.10209265351295,0.045919448137283,0.066937960684299]],[[0.040174633264542,-0.0024043435696512,-0.088738225400448],[0.0040640723891556,-0.058423921465874,-0.036287236958742],[0.00199244171381,0.054423693567514,-0.023638373240829]],[[-0.032793786376715,0.01240208465606,-0.038163736462593],[0.003829154651612,-0.0060700490139425,-0.020651699975133],[-0.0053108590655029,-0.058761581778526,-0.0096422052010894]],[[-0.01559017971158,-0.031960390508175,-0.0096032954752445],[0.00069951987825334,-0.082931645214558,-0.060460314154625],[-0.026098158210516,-0.082740552723408,-0.0073273493908346]],[[-0.099651142954826,-0.011227233335376,-0.002386974869296],[-0.091631896793842,-0.037150427699089,-0.027475960552692],[-0.11413751542568,0.12057060003281,0.066292084753513]],[[0.011989565566182,0.03352190181613,-0.068819433450699],[0.0040989136323333,0.031832750886679,-0.017782656475902],[0.055466581135988,0.02844550833106,0.029906250536442]],[[0.028658088296652,0.010465327650309,0.035096116364002],[0.040166825056076,-0.042826168239117,0.014814940281212],[0.0040501016192138,-0.03891184926033,-0.041163742542267]],[[0.037558816373348,0.020029390230775,0.065855614840984],[0.056605257093906,0.010582469403744,0.0060755503363907],[0.049215707927942,-0.024348214268684,0.020392324775457]],[[0.015898765996099,-0.049833696335554,0.014942719601095],[0.049439989030361,0.0092361615970731,0.01118478178978],[0.046463377773762,-0.0064935707487166,0.023621140047908]],[[-0.0083466004580259,-0.0038376788143069,-0.0053119277581573],[0.10026668012142,0.068669624626637,-0.099911503493786],[-0.016169818118215,-0.023410029709339,-0.10705012083054]],[[-0.066378623247147,0.037459891289473,-0.095880895853043],[-0.040757358074188,-0.042167760431767,-0.057008426636457],[-0.030781416222453,-0.028274884447455,-0.0072863330133259]],[[-0.026644947007298,0.06313644349575,-0.0076929787173867],[-0.030167466029525,0.072117671370506,0.035743400454521],[0.040444541722536,0.035928159952164,-0.013186533004045]],[[-0.067961789667606,0.019677944481373,-0.054134853184223],[0.011067315004766,0.059868738055229,-0.093561843037605],[0.02983695268631,0.084835968911648,-0.090989924967289]],[[-0.0002082004211843,0.02645300142467,0.0031015910208225],[0.079502210021019,0.077042855322361,-0.012582762166858],[0.013123985379934,-0.057544901967049,0.025890652090311]],[[0.019364431500435,-0.08948377519846,-0.027927167713642],[-0.019075682386756,-0.054389134049416,-0.17639416456223],[0.051027189940214,-0.015748236328363,-0.021221881732345]],[[-0.062082182615995,0.034420117735863,0.10375138372183],[0.083563275635242,0.068325348198414,-0.043148696422577],[-0.049836069345474,-0.091174103319645,0.013560609892011]],[[-0.057076793164015,-0.055162381380796,-0.01082110311836],[0.016298770904541,0.0033457071986049,-0.02891849167645],[0.047038048505783,0.027611786499619,-0.12467107921839]],[[0.024579428136349,0.011940089054406,-0.017289066687226],[-0.045713689178228,-0.11107583343983,-0.00096381304319948],[-0.012323465198278,-0.029786987230182,-0.042399164289236]],[[0.037295930087566,-0.017479384317994,-0.035329528152943],[-0.046471484005451,-0.034851975739002,-0.020549830049276],[0.048536904156208,0.087631031870842,-0.0013399565359578]],[[-0.11171729117632,-0.054839391261339,-0.026427309960127],[0.028247093781829,0.0034227862488478,0.046233754605055],[-7.6400319812819e-06,-0.0064340964891016,0.0072955009527504]],[[0.026472175493836,-0.054773546755314,-0.023660494014621],[-0.01843842677772,-0.03472300991416,-0.027812832966447],[0.018146947026253,0.058017123490572,-0.0089208176359534]],[[0.047584228217602,-0.049381867051125,-0.076643966138363],[0.051433108747005,-0.10403901338577,0.06205890327692],[-0.010671247728169,0.04650504142046,-0.14264310896397]],[[0.0037089511752129,0.13423135876656,0.028618760406971],[0.050160381942987,-0.012038361281157,-0.059397336095572],[0.0066694999113679,0.032524671405554,0.030054219067097]],[[-0.0082354871556163,-0.038411572575569,0.041595239192247],[-0.018195239827037,0.01665854640305,-0.032095972448587],[0.025779346004128,-0.011498144827783,0.047311946749687]],[[-0.026687258854508,-0.07683152705431,0.034295480698347],[-0.028386084362864,0.031564924865961,0.028405217453837],[-0.011334516108036,0.0055610635317862,-0.023542605340481]],[[-0.10249419510365,-0.029942039400339,-0.052337009459734],[0.075132124125957,-0.029025930911303,0.0056536821648479],[0.070408910512924,-0.061800561845303,0.037552066147327]],[[0.026648620143533,-0.017406927421689,0.03063103556633],[-0.019321449100971,-0.039934974163771,-0.0099777290597558],[0.06451441347599,-0.035365480929613,-0.033399727195501]],[[-0.024769064038992,-0.029672788456082,-0.070570886135101],[0.02397664822638,-0.063614383339882,0.0084005231037736],[0.031178822740912,-0.07159211486578,-0.014819181524217]],[[0.0058289314620197,-0.036314886063337,-0.022870736196637],[-0.0012517006834969,-0.036304257810116,0.027279710397124],[0.012280330993235,0.025764374062419,-0.087371304631233]],[[0.00036226990050636,0.094178289175034,-0.077629655599594],[0.02646316960454,-0.0060958317480981,-0.064891614019871],[-0.0045826933346689,-0.0087033370509744,-0.041853234171867]],[[-0.045613277703524,0.077466920018196,0.048575587570667],[-0.013227654621005,0.030662678182125,-0.066936194896698],[-0.059420421719551,-0.029330521821976,0.016649732366204]],[[0.051785655319691,-0.039952088147402,0.0041036293841898],[-0.035962041467428,0.028600046411157,-0.031286526471376],[0.0019980825018138,-0.0089838746935129,-0.0083965146914124]],[[0.047463003546,-0.010542935691774,0.034667789936066],[0.067145183682442,0.010407823137939,-0.050982352346182],[0.029730459675193,-0.043565467000008,-0.030135668814182]],[[-0.049038037657738,0.043818909674883,-0.0042296564206481],[0.017408885061741,-0.048340149223804,0.029684813693166],[0.027075799182057,-0.013239853084087,0.031877137720585]],[[-0.038925088942051,0.076479181647301,-0.085733287036419],[-0.03286012634635,0.044195983558893,-0.0021806524600834],[-0.054460149258375,-0.040225710719824,0.23999853432178]],[[0.0074697895906866,-0.012103707529604,-0.045157864689827],[0.014291112311184,0.052491292357445,-0.010778957046568],[-0.053017966449261,0.012782109901309,0.058957427740097]],[[0.08993111550808,-0.11406829208136,0.027612900361419],[-0.050753820687532,-0.023049922659993,-0.037672135978937],[0.055620457977057,0.043112799525261,0.072141543030739]],[[0.067204065620899,-0.030227897688746,-0.010714293457568],[0.016470344737172,-0.056080225855112,0.045660395175219],[-0.017592966556549,-0.045249495655298,-0.05037534981966]],[[0.11085556447506,-0.058903075754642,0.1054143384099],[-0.017919577658176,0.013006074354053,0.0013013079296798],[-0.025985602289438,0.044036172330379,-0.045202281326056]],[[-0.050579190254211,0.027436269447207,-0.0028222468681633],[0.015547497197986,-0.027983151376247,-0.0042685265652835],[-0.0012487866915762,-0.011502487584949,-0.029829418286681]],[[0.046561453491449,0.019220158457756,0.16963766515255],[-0.067355312407017,0.059862330555916,-0.069030895829201],[-0.020908337086439,0.051938373595476,-0.082933336496353]],[[-0.015741003677249,0.012664667330682,0.012267716228962],[0.035882040858269,0.070743538439274,0.021863035857677],[0.0055414284579456,0.058498632162809,0.026233673095703]],[[0.036968994885683,0.011814411729574,0.04438067227602],[0.013832286931574,0.059839434921741,0.015937298536301],[-0.024014614522457,0.032282844185829,-0.12633417546749]],[[-0.011115447618067,0.055788774043322,-0.034959483891726],[0.030203143134713,0.031173605471849,-0.022320574149489],[0.0095535926520824,0.0048939352855086,0.011605830863118]],[[0.047568894922733,-0.037357728928328,-0.001465636654757],[0.015716556459665,-0.07614129781723,0.085497543215752],[-0.015848524868488,0.0079942373558879,0.064798608422279]],[[0.070539183914661,-0.044001258909702,-0.071820072829723],[0.14212574064732,-0.02837329544127,-0.00066469906596467],[-0.063433475792408,-0.010954922996461,-0.047474402934313]],[[-0.0088372444733977,-0.10542001575232,-0.019046558067203],[0.011283907108009,-0.023743476718664,-0.0548858307302],[-0.027133919298649,-0.042995039373636,-0.031536091119051]],[[-0.031056357547641,0.028181890025735,-0.028955865651369],[-0.050121616572142,0.10374020785093,0.038959536701441],[-0.069794028997421,0.016556857153773,0.007121535949409]],[[0.031000949442387,0.063294343650341,-0.041281934827566],[0.066578395664692,0.030016524717212,-0.009719580411911],[0.013781170360744,-0.020255986601114,-0.010487383231521]],[[-0.034532342106104,0.050275303423405,0.076196372509003],[0.03928005322814,0.013123771175742,0.049434415996075],[0.071796551346779,-0.011891624890268,-0.047778107225895]],[[0.074215725064278,0.078004315495491,0.059274345636368],[0.0010880547342822,-0.085159294307232,0.0073087839409709],[0.032990217208862,-0.0077428077347577,0.0016342519083992]],[[0.047375913709402,-0.080652683973312,-0.090008817613125],[0.038947053253651,0.011035043746233,-0.0070697069168091],[-0.021456869319081,-0.049826066941023,-0.016056576743722]],[[-0.010851518251002,0.0022076175082475,0.04289023950696],[0.053624644875526,-0.018065044656396,0.080906085669994],[-0.0061953859403729,0.070352129638195,0.031276125460863]],[[-0.031988672912121,0.030664499849081,-0.020089266821742],[0.033251877874136,0.028366152197123,-0.008102660998702],[-0.069479674100876,0.017169089987874,0.0026782243512571]],[[-0.0018556985305622,0.028215445578098,-0.065277941524982],[0.035005241632462,0.023062480613589,0.067185319960117],[-0.031107315793633,-0.01879963837564,0.058847486972809]],[[-0.0089786918833852,0.012477756477892,-0.033794973045588],[0.029989352449775,0.015532813966274,-0.012715852819383],[-0.032620511949062,-0.029286095872521,-0.016862295567989]],[[0.028863674029708,-0.041582219302654,-0.10444813966751],[-0.026637773960829,-0.0073492755182087,0.054096251726151],[0.0052565825171769,0.0042601656168699,0.031240779906511]],[[-0.015128241851926,-0.054386027157307,0.033671390265226],[0.011461325921118,-0.010944043286145,-0.015578308142722],[0.021118013188243,0.003334112232551,-0.044065989553928]],[[-0.025707360357046,-0.035035975277424,0.0092521877959371],[-0.018480621278286,-0.025081822648644,-0.030376257374883],[0.03377503529191,0.012938206084073,-0.013348740525544]],[[0.083061829209328,-0.052698854357004,0.00088265002705157],[-0.0070881438441575,-0.003838422242552,0.01325414236635],[-0.021043675020337,0.029688315466046,-0.13295470178127]],[[-0.13201747834682,-0.035491608083248,0.00028704514261335],[-0.030730281025171,-0.0038246100302786,-0.020574677735567],[-0.043409083038568,0.048279743641615,-0.030808512121439]],[[0.07862464338541,-0.052355844527483,0.010286594741046],[-0.10803870856762,0.019348541274667,-0.080337300896645],[-0.037868563085794,0.025938766077161,0.3463434278965]],[[0.030188294127584,-0.01233814842999,0.00064364593708888],[-0.055850967764854,-0.14445647597313,-0.106446005404],[0.058498118072748,-0.034454997628927,0.015864960849285]],[[0.04308844730258,-0.020177628844976,0.041498988866806],[0.010450326837599,-0.053183581680059,0.019590899348259],[-0.069186016917229,0.023684322834015,-0.038038786500692]],[[-0.0043425583280623,0.062178380787373,-0.046201188117266],[-0.011784861795604,0.028230214491487,0.067561782896519],[-0.0047993273474276,-0.021645557135344,-0.04650916159153]],[[-0.026945689693093,-0.023331377655268,-0.13067445158958],[0.01285005081445,0.0025269167963415,-0.10294464975595],[0.018327983096242,-0.040574364364147,0.035858001559973]],[[0.029610747471452,0.016161870211363,-0.0063021895475686],[0.025315972045064,-0.10040340572596,-0.050715897232294],[0.05704478174448,0.048100482672453,0.067715547978878]],[[0.014998575672507,0.062303353101015,0.057234656065702],[0.084991604089737,0.056425590068102,-0.013286768458784],[0.057146165519953,0.039824217557907,0.031089479103684]]],[[[-0.057961732149124,-0.0035543444100767,0.019174812361598],[-0.063941925764084,0.048887599259615,0.0046453904360533],[0.028089614585042,0.034071020781994,0.01447540987283]],[[-0.08018346875906,-0.026056161150336,-0.042678851634264],[0.070172473788261,-0.078184463083744,0.031150108203292],[0.0051238751038909,-0.040184687823057,0.011112094856799]],[[-0.0089480904862285,0.028372770175338,0.042693920433521],[0.029695849865675,-0.031099569052458,0.0098030343651772],[0.040262136608362,0.015840331092477,-0.025790844112635]],[[0.01396557316184,-0.032591082155704,-0.077472113072872],[-0.031749788671732,0.096248582005501,-0.026208359748125],[0.00060897547518834,-0.014394896104932,0.040650654584169]],[[0.043247055262327,0.037819255143404,-0.047099806368351],[-0.065229564905167,-0.034000780433416,0.085660129785538],[0.014230391010642,-0.014231648296118,0.031316049396992]],[[0.091972760856152,0.020668966695666,0.032096546143293],[0.070792861282825,0.046727571636438,-0.017439464107156],[0.059285156428814,0.048809614032507,0.01718944311142]],[[0.076237730681896,-0.030425246804953,0.018509047105908],[0.044114008545876,-0.017529873177409,0.057311199605465],[0.068524494767189,0.015908151865005,-0.070499807596207]],[[0.020647663623095,0.07113204151392,0.012655548751354],[-0.0089624170213938,-0.050165109336376,0.054136238992214],[0.058128010481596,0.033405117690563,0.031416792422533]],[[-0.058423303067684,-0.016318021342158,-0.031210459768772],[0.027668006718159,0.026248939335346,0.0036012260243297],[-0.068433009088039,0.042083065956831,0.098327964544296]],[[-0.015060428529978,0.013961690478027,-0.064188234508038],[0.027952702715993,-0.014510661363602,0.0089624207466841],[0.040522642433643,0.07450870424509,-0.022540444508195]],[[0.0042016683146358,-0.013384655117989,-0.042089838534594],[0.0081551624462008,-0.016656711697578,0.0035509138833731],[0.048069305717945,0.026925256475806,0.080463878810406]],[[-0.018886610865593,0.0073850015178323,0.05126266553998],[0.0082030557096004,-0.044227212667465,-0.012915118597448],[0.0077168885618448,-0.011566555127501,0.039546739310026]],[[-0.065504774451256,0.081592172384262,0.089575342833996],[0.058517027646303,0.00087947596330196,0.010927890427411],[-0.034916341304779,-0.02821565233171,0.10178718715906]],[[-0.0077081057243049,0.10502044856548,-0.029917616397142],[0.031573787331581,0.0013212832855061,0.021632261574268],[0.010914386250079,0.016699342057109,0.0066263969056308]],[[-0.027542138472199,-0.0594537332654,0.0094905626028776],[-0.03548414260149,0.069951720535755,0.039765942841768],[-0.0043866629712284,-0.0012423024745658,-0.053815700113773]],[[0.049197096377611,-0.0075653195381165,0.0058653457090259],[-0.12099000811577,0.033948939293623,-0.060334227979183],[-0.0068402527831495,0.061230227351189,-0.060406591743231]],[[0.023169405758381,0.020120821893215,-0.032832052558661],[-0.062396582216024,0.06144231185317,-0.0094827972352505],[0.060586489737034,0.017361802980304,0.053057804703712]],[[0.018596209585667,-0.060824420303106,0.076153233647346],[0.036688752472401,-0.016965446993709,0.017968313768506],[-0.0030799387022853,-0.01745530217886,-0.063510932028294]],[[0.0033887911122292,0.061311170458794,0.048641018569469],[0.0099947117269039,-0.024241883307695,0.057451847940683],[-0.005188996437937,-0.073384754359722,-0.066946439445019]],[[-0.042694397270679,-0.066228315234184,0.055494092404842],[-0.020153494551778,-0.012387341819704,-0.0066331261768937],[-0.05795368924737,0.059395633637905,0.04913717135787]],[[-0.057750187814236,-0.029427887871861,-0.016209421679378],[-0.0092005794867873,-0.01470135524869,0.035239197313786],[0.0066183893941343,-0.090397417545319,0.052887499332428]],[[-0.040118761360645,-0.08541601151228,-0.044326730072498],[0.078662656247616,0.074445180594921,0.055795550346375],[0.0034521990455687,-0.029825957491994,0.050923652946949]],[[-0.018470130860806,-0.040750674903393,0.0067757903598249],[-0.0037876137066633,0.087298460304737,-0.039697859436274],[0.047438982874155,-0.065150640904903,-0.046327918767929]],[[0.058270130306482,0.019464349374175,-0.02170092985034],[0.045162588357925,0.001695686718449,-0.014618050307035],[0.044614847749472,-0.019633652642369,-0.063235104084015]],[[0.020148815587163,0.032368514686823,0.059626542031765],[-0.08015850931406,0.0055131358094513,-0.12020061910152],[0.010889638215303,0.07807095348835,-0.036712680011988]],[[-0.022831944748759,-0.044245548546314,-0.0012210869463161],[0.0075248372741044,0.04305486753583,0.019677618518472],[0.007703528739512,-0.041972041130066,0.011832198128104]],[[0.003188269212842,-0.0024396635126323,0.056644182652235],[0.06223426014185,-0.0082461312413216,0.021014334633946],[0.02386605553329,0.003671052865684,-0.006020525470376]],[[-0.019512251019478,0.060153923928738,-0.029474232345819],[-0.086929075419903,0.051301959902048,0.053130831569433],[-0.013671523891389,0.056357093155384,0.011177816428244]],[[0.025379274040461,-0.050345033407211,0.023856123909354],[-0.046361390501261,-0.01776584610343,0.0046351156197488],[0.093142785131931,0.096341863274574,0.0025796762201935]],[[-0.061609257012606,-0.033098232001066,-0.11501683294773],[-0.053501412272453,-0.072588317096233,0.018112789839506],[-0.048328053206205,-0.030125046148896,0.018134746700525]],[[-0.0024093706160784,0.051853273063898,0.03877092897892],[-0.057562902569771,-0.012741687707603,0.12461489439011],[0.0237095952034,0.0032559563405812,-0.0078052463941276]],[[0.030939385294914,-0.0054011880420148,0.027687091380358],[0.032964628189802,0.010202250443399,0.0023896740749478],[-0.033288016915321,0.10883047431707,0.011846538633108]],[[0.015402824617922,0.024230355396867,0.012995389290154],[-0.0095686130225658,0.068174190819263,0.02994248829782],[-0.020144037902355,0.080541841685772,0.05946072191]],[[0.019464652985334,-0.032032202929258,-0.011336880736053],[0.00015870972129051,-0.017316212877631,0.028566060587764],[-0.023988869041204,0.022381218150258,-0.027221236377954]],[[-0.029556136578321,0.0013161776587367,-0.056639730930328],[-0.059427157044411,-0.024278165772557,-0.011471309699118],[0.066207468509674,-0.013196786865592,-0.061407070606947]],[[0.017895629629493,-0.021567428484559,-0.015855800360441],[-0.043831624090672,-0.065017074346542,-0.06270057708025],[0.073654316365719,-0.073872648179531,0.025910258293152]],[[0.0075118117965758,0.068984247744083,0.10490749031305],[0.063871867954731,0.0067938775755465,-0.012087781913579],[-0.075075633823872,0.0072404239326715,0.056797534227371]],[[0.0062930583953857,0.056164488196373,-0.039693269878626],[0.04705922305584,-0.051912914961576,0.0011161066358909],[0.048065669834614,-0.001188604044728,-0.04290709644556]],[[-0.053162027150393,0.015473396517336,-0.059796467423439],[0.0049255695194006,0.01930389739573,0.024580121040344],[-0.030504932627082,0.027542578056455,-0.0074707651510835]],[[0.051559157669544,-0.03593935072422,0.012605186551809],[-0.079901345074177,0.015110312961042,-0.0029757376760244],[0.0013408127706498,-0.10348453372717,-0.012553792446852]],[[-0.0039206305518746,0.071927309036255,0.027428986504674],[0.027868580073118,-0.035947866737843,0.0063626850023866],[0.030909020453691,0.001881718984805,0.024374483153224]],[[0.010602700524032,0.079581052064896,0.014714887365699],[0.049762796610594,0.11022064089775,0.062008704990149],[-0.033875454217196,0.055731203407049,0.048650152981281]],[[0.0056280791759491,0.036184150725603,0.027398224920034],[0.046010937541723,-0.033617254346609,0.026324095204473],[0.016776796430349,0.061314329504967,0.021912449970841]],[[-0.0065303891897202,0.02113220654428,-0.059575263410807],[-0.081371515989304,0.093321219086647,0.072364911437035],[-0.0037706994917244,0.0044798352755606,-0.06340729445219]],[[0.0024136819411069,0.042364154011011,0.027182817459106],[-0.10391441732645,-0.03084328584373,-0.022685052827001],[0.037125237286091,-0.025335371494293,-0.033785540610552]],[[0.042620897293091,-0.0086215371266007,0.084058590233326],[0.051434155553579,0.016842689365149,0.03932786360383],[0.042324371635914,-0.00049433077219874,0.012073216959834]],[[0.070497132837772,-0.049377769231796,-0.028390847146511],[-0.035326283425093,-0.007462230976671,-0.0040362081490457],[-0.038722440600395,-0.021335100755095,0.0078259408473969]],[[0.018063241615891,-0.023325527086854,0.0077747460454702],[-0.028189025819302,0.040982395410538,0.0076802619732916],[-0.072651155292988,-0.053194504231215,-0.019169310107827]],[[0.05380030721426,-0.0063276006840169,0.071188017725945],[0.0089004402980208,-0.037175372242928,-0.036504857242107],[-0.025339467450976,-0.019469082355499,-0.046367444097996]],[[0.014658567495644,-0.0066362763755023,-0.025938393548131],[0.018827864900231,-0.042622815817595,0.02382193505764],[-0.028161687776446,-0.035867102444172,-0.031097399070859]],[[0.039401493966579,-0.060391165316105,-0.047665003687143],[-0.021340109407902,-0.03126410767436,-0.049090776592493],[0.017534973099828,0.0094965798780322,0.083385474979877]],[[0.024759192019701,0.012365593574941,-0.045898295938969],[0.017131583765149,-0.00065966183319688,0.043894082307816],[-0.010150774382055,0.031267147511244,0.0020005241967738]],[[0.021370405331254,-0.0078931273892522,0.053623057901859],[0.026523584499955,0.022230004891753,-0.05898679420352],[0.052424907684326,0.013649050146341,-0.016511356458068]],[[0.0057052387855947,0.018674340099096,0.004329273942858],[-0.0013148160651326,0.0083227036520839,0.013264595530927],[0.037473700940609,-0.021391697227955,0.039220340549946]],[[-0.047219805419445,0.049775969237089,-0.011337078176439],[0.017659058794379,0.029422929510474,0.017808442935348],[-0.066042639315128,0.028463954105973,-0.024726338684559]],[[-0.094941027462482,0.0071158548817039,0.059439353644848],[0.02545079216361,0.00070594763383269,0.023791611194611],[0.048623282462358,-0.03552982583642,0.034219954162836]],[[-0.03573202714324,0.044178377836943,0.041855815798044],[0.064123272895813,0.021443329751492,0.053227659314871],[-0.038444019854069,-0.0053091193549335,0.049509271979332]],[[-0.033193446695805,-0.0069785369560122,0.01042402535677],[-0.083838425576687,-0.068833239376545,0.042554788291454],[0.071966014802456,-0.00062095740577206,0.013405746780336]],[[-0.016075432300568,0.026303054764867,-0.038035877048969],[8.7859974883031e-05,-0.019661033526063,0.08801457285881],[0.041476354002953,0.012414038181305,0.02287195250392]],[[0.053755365312099,-0.022313559427857,-0.017399193719029],[-0.015432682819664,0.048306804150343,-0.074808284640312],[-0.029379226267338,-0.073671296238899,0.028980823233724]],[[-0.018304781988263,0.024538680911064,0.028745830059052],[0.073461204767227,0.026691498234868,-0.024238515645266],[-0.036846153438091,0.038016505539417,0.059181313961744]],[[-0.030453654006124,0.13566283881664,0.03320350497961],[0.050711493939161,0.0097115440294147,-0.02959842979908],[0.022051295265555,-0.067104615271091,0.054934144020081]],[[-0.061212413012981,-0.013226799666882,0.0052871108055115],[0.1094746440649,-0.090197034180164,-0.031985949724913],[-0.022663876414299,0.039125498384237,0.0069176289252937]],[[0.014641140587628,-0.048661772161722,0.019968191161752],[0.017827929928899,-0.060046657919884,0.097062647342682],[0.012389184907079,0.021253285929561,-0.00026764476206154]],[[0.040558028966188,0.015600933693349,0.096221208572388],[0.015639238059521,-0.025083720684052,0.0027074867393821],[-0.024445051327348,-0.0018796456279233,0.0021666898392141]],[[0.054690275341272,0.013922591693699,0.054295863956213],[0.00017281259351876,0.03187433257699,0.091536939144135],[-0.0201993342489,0.059565734118223,0.033977635204792]],[[-0.015281136147678,-0.028113355860114,0.048084121197462],[-0.083109200000763,0.064179167151451,-0.03888238966465],[0.086715325713158,0.021192204207182,0.012522114440799]],[[-0.04141715914011,0.055312313139439,-0.017912782728672],[0.0078354747965932,0.042475242167711,0.019151091575623],[0.043678790330887,0.040645185858011,0.036218699067831]],[[0.030726607888937,-0.0052298647351563,-0.00054818735225126],[-0.010814927518368,0.041591763496399,0.063507623970509],[-0.035872239619493,-0.020895261317492,-0.016400033608079]],[[0.034798629581928,0.024601535871625,0.010571434162557],[0.021998954936862,0.074568033218384,-0.041949085891247],[0.022562373429537,0.0039190240204334,0.082837775349617]],[[-0.042944438755512,0.016354214400053,0.043024532496929],[0.038550239056349,0.050264660269022,0.0065221446566284],[0.048985976725817,0.059867650270462,0.024200037121773]],[[0.040693193674088,0.03246907889843,0.003014761256054],[-0.014726554043591,-0.04322113469243,0.048302330076694],[-0.06797944009304,0.038971640169621,0.051827426999807]],[[0.040878936648369,0.030759731307626,-0.049273118376732],[0.022062135860324,-0.0085869627073407,-0.04229074716568],[-0.0032863619271666,-0.019183151423931,0.037743777036667]],[[-0.017459189519286,0.046632379293442,-0.0057949302718043],[0.015761181712151,-0.014813457615674,-0.028519980609417],[-0.033396072685719,0.07150649279356,-0.028936266899109]],[[-0.025430962443352,-0.10628494620323,0.012134430930018],[0.01260095462203,-0.029888303950429,0.039459217339754],[0.11159565299749,0.0053633628413081,0.031784079968929]],[[-0.040967833250761,-0.036462713032961,-0.037803817540407],[-0.089197896420956,-0.071361362934113,-0.017323879525065],[-0.017247227951884,0.021556397899985,-0.10970023274422]],[[0.0025219745002687,0.069631062448025,0.078344650566578],[0.047318339347839,0.030368570238352,0.013213042169809],[0.015741020441055,0.029905183240771,-0.019361227750778]],[[-0.0094663491472602,-0.0088876271620393,-0.079531446099281],[0.1531987041235,-0.0011570033384487,0.031161867082119],[0.025834750384092,0.11181279271841,0.025215039029717]],[[0.0327376909554,0.038409914821386,0.047794036567211],[-0.024304827675223,-0.052262809127569,-0.031894888728857],[-0.124407812953,0.029958412051201,-0.0058132335543633]],[[-0.043843656778336,0.027286337688565,0.026939976960421],[-0.039467446506023,0.032844308763742,-0.066737487912178],[0.029315836727619,0.0030290114227682,0.026343276724219]],[[-0.0095543060451746,0.01153900846839,-0.013803312554955],[-0.0075374636799097,0.0041487864218652,0.033653039485216],[0.011784726753831,-0.050693333148956,0.030769104138017]],[[0.0086122928187251,-0.013343837112188,0.046630531549454],[-0.0082812337204814,0.057961188256741,-0.047269895672798],[-0.030602792277932,0.014917506836355,0.025814268738031]],[[0.019107328727841,-0.0010263615986332,0.051871117204428],[0.042591653764248,0.026833534240723,0.026017801836133],[-0.018948486074805,0.047859564423561,-0.0093098180368543]],[[0.019217409193516,0.074616156518459,0.024274986237288],[-0.053876608610153,-0.014057451859117,0.041558593511581],[0.046649593859911,0.0015969900414348,0.020818443968892]],[[-0.033306654542685,-0.01734634116292,0.050372686237097],[0.00037336701643653,-0.022932585328817,0.041902564466],[0.057755347341299,-0.069938935339451,-0.030348362401128]],[[0.019709382206202,-0.0069505674764514,-0.035069454461336],[0.0053809657692909,-0.016819521784782,-0.045111227780581],[0.01762362010777,0.022281968966126,0.035362582653761]],[[0.030132215470076,0.092841401696205,0.08808159083128],[0.048015948385,-0.041142482310534,-0.018992446362972],[0.014761438593268,0.066130630671978,0.020872378721833]],[[-0.058310780674219,0.10570471733809,0.0033661061897874],[0.052844565361738,0.01937610283494,-0.035558022558689],[0.034640081226826,-0.0059521365910769,-0.038765780627728]],[[0.057776611298323,0.04454305768013,-0.070261582732201],[-0.010378876700997,0.020102733746171,0.01228837762028],[0.11161343753338,0.030761925503612,0.031139772385359]],[[-0.015300420112908,-0.0066761178895831,-0.027211567386985],[0.030979895964265,0.0055438503623009,-0.0025458980817348],[-0.0024195038713515,0.00014167184417602,0.027956625446677]],[[0.092650234699249,0.0046247993595898,-0.017257243394852],[0.049116421490908,-0.0080543532967567,-0.011515198275447],[0.013935974799097,-0.011305690743029,0.0032174503430724]],[[-0.053388085216284,-0.035305202007294,-0.086160697042942],[0.025439674034715,-0.069109581410885,0.001624749507755],[0.055494897067547,-0.050958923995495,-0.012722590006888]],[[0.036257356405258,0.040869325399399,-0.049391772598028],[-0.026331650093198,0.019772196188569,0.054467845708132],[-0.0073790000751615,-0.057155281305313,0.051311448216438]],[[0.0040337573736906,0.0077748144976795,0.01264741178602],[0.016899824142456,0.046368695795536,-0.029503559693694],[0.0086543513461947,-0.023834962397814,0.0346485003829]],[[-0.035628292709589,0.0010534279281273,0.060490127652884],[-0.021884463727474,0.030735777691007,0.0024420791305602],[0.0070731234736741,-0.041580762714148,-0.045317500829697]],[[0.048686474561691,-0.030337139964104,0.041806515306234],[0.02368325740099,-0.078751623630524,-0.092864103615284],[-0.017123339697719,-0.00071383686736226,-0.015542157925665]],[[0.04427207633853,-0.022868167608976,0.022573374211788],[0.032232496887445,0.039605345577002,-0.020296616479754],[-0.015578110702336,0.099786050617695,-0.035675745457411]],[[0.0069294888526201,-0.056615374982357,0.059561215341091],[0.020638359710574,0.01554414909333,0.10156575590372],[-0.019132323563099,0.064238138496876,-0.0074292439967394]],[[0.02151152305305,0.0030536430422217,-0.044158346951008],[0.014216663315892,-0.074288249015808,0.037849251180887],[0.025016516447067,0.036430805921555,-0.033286944031715]],[[-0.004787293728441,-0.021006828173995,0.006701294798404],[0.027667952701449,0.039238799363375,0.038077913224697],[0.0088861593976617,0.032088629901409,0.036050397902727]],[[-0.025309786200523,-0.03211097791791,-0.020754421129823],[-0.035102382302284,-0.019927700981498,-0.060161702334881],[-0.0073321401141584,0.021143320947886,0.036169044673443]],[[-0.033979319036007,0.028897006064653,0.12211710959673],[-0.070546619594097,0.06910016387701,-0.019278230145574],[0.035245910286903,0.0023816528264433,-0.015224224887788]],[[0.014648737385869,-0.034973554313183,0.078526072204113],[-0.043278560042381,0.062805488705635,0.039107825607061],[0.0042106476612389,-0.068750113248825,0.10868705064058]],[[-0.030401246622205,0.041417259722948,0.038434557616711],[-0.060232032090425,-0.053217597305775,0.040402710437775],[-0.046936582773924,-0.048537757247686,-0.075444467365742]],[[0.028525216504931,0.0010889584664255,-0.022825511172414],[-0.014029261656106,0.0041075013577938,-0.063148707151413],[0.022114591673017,0.0054267551749945,-0.016216669231653]],[[0.024488229304552,0.060694810003042,-0.02837092615664],[0.0056509282439947,0.029508715495467,-0.041599456220865],[-0.067246705293655,0.021220242604613,0.051234971731901]],[[-0.019590497016907,0.12519027292728,0.087704859673977],[-0.015351916663349,-0.01671963557601,0.033814702183008],[0.073194727301598,0.021729225292802,-0.063735283911228]],[[0.020817680284381,0.08568350225687,-0.020150171592832],[-0.025784963741899,-0.0063035828061402,-0.004828026983887],[0.028815496712923,-0.020275626331568,0.0068161194212735]],[[0.015625240281224,-0.059783220291138,-0.043425250798464],[-0.052277453243732,-0.015170789323747,0.02770135179162],[0.049325842410326,-0.00029427206027322,-0.038599882274866]],[[0.051879022270441,0.062383066862822,-0.032799798995256],[0.080844476819038,-0.046462889760733,0.03599688410759],[0.060299307107925,0.051278308033943,-0.0083707068115473]],[[-0.03118708729744,-0.036595653742552,0.027025148272514],[0.0022455295547843,-0.047685150057077,0.04827967658639],[0.06659272313118,0.020306073129177,-0.055838461965322]],[[-0.065457679331303,-0.042528890073299,-0.0057996017858386],[-0.033801704645157,0.028260581195354,0.01495074108243],[-0.02729800902307,-0.033494554460049,0.059521846473217]],[[0.0085554104298353,-0.025645503774285,-0.027496134862304],[-0.016744460910559,0.014939714223146,-0.021215924993157],[-0.026227181777358,-0.046414449810982,0.018067380413413]],[[0.022512292489409,0.0034260773099959,-0.069943286478519],[-0.0066293552517891,0.036831501871347,0.054092921316624],[-0.021964790299535,0.054839797317982,0.0016287950566038]],[[-0.039675567299128,-0.040099699050188,-0.0091451480984688],[-0.029054051265121,-0.0019536474719644,0.035569179803133],[0.0039541819132864,-0.012158717028797,-0.053437702357769]],[[-0.025329004973173,-0.035721238702536,-0.029482822865248],[0.0022803565952927,0.035014815628529,-0.060674510896206],[-0.043970659375191,-0.065198823809624,-0.012776589952409]],[[-0.058780740946531,-0.025267379358411,0.023268066346645],[0.045423604547977,-0.0074047180823982,0.011927805840969],[0.10402720421553,-0.079651616513729,0.022369228303432]],[[0.011501708999276,0.0082481922581792,0.013843857683241],[-0.067483134567738,0.090841121971607,0.026388183236122],[0.013986391946673,-0.033758640289307,0.10333395004272]],[[-0.039331506937742,-0.056521888822317,-0.053197801113129],[-0.012520191259682,-0.060257952660322,-0.038520894944668],[0.015694646164775,0.0010194049682468,-0.026683434844017]],[[-0.042316738516092,0.0056419102475047,-0.040451806038618],[0.037450853735209,0.049092467874289,0.090206608176231],[0.017482900992036,0.067991495132446,0.069276757538319]],[[-0.016875248402357,-0.040238939225674,-0.002765683690086],[0.011750412173569,0.0054593249224126,-0.029970828443766],[-0.013382180593908,-0.0030356289353222,-0.038616992533207]],[[0.07090999186039,0.0069804112426937,-0.0065781241282821],[-0.036850389093161,0.050532907247543,-0.011946374550462],[-0.0057242852635682,0.006083641666919,-0.020732399076223]],[[-0.045584835112095,-0.0144412079826,0.037795562297106],[-0.0046549211256206,0.036725733429193,-0.022473119199276],[0.018328992649913,0.024595979601145,0.013727094978094]],[[-0.0044695464894176,-0.062445964664221,0.015639252960682],[-0.0625359416008,0.016776707023382,-0.00025115930475295],[-0.011075667105615,-0.10757522284985,0.020831383764744]],[[0.060102712363005,0.0089768627658486,0.036114096641541],[-0.021487560123205,-0.051307111978531,0.033471096307039],[0.047721996903419,-0.048235680907965,0.020797785371542]],[[0.032805748283863,0.00066810025600716,-0.011971777305007],[0.051868591457605,-0.054083090275526,0.066620588302612],[0.0079925255849957,0.055285442620516,-0.07186570763588]],[[-0.011616699397564,0.0072557153180242,-0.0089495200663805],[0.050266195088625,0.02904624119401,0.006037917919457],[-0.029095735400915,0.04860145971179,0.015261025168002]],[[-0.017704162746668,0.059194933623075,0.038457479327917],[-0.019426578655839,0.026514669880271,-0.038686756044626],[-0.024838820099831,0.041559714823961,-0.017418522387743]]],[[[0.018401814624667,0.090708136558533,0.12108455598354],[-0.045669451355934,-0.013800786808133,-0.04223558306694],[-0.08844456076622,0.026337256655097,-0.012127283029258]],[[-0.01436220575124,-0.080883778631687,-0.020456079393625],[-0.10759353637695,-0.059553723782301,-0.12865480780602],[-0.084605753421783,-0.040564242750406,0.010018507950008]],[[-0.16569817066193,-0.12020621448755,-0.026720179244876],[-0.049919161945581,0.012124833650887,-0.082053616642952],[0.057966448366642,0.076403364539146,-0.0016725836321712]],[[0.046820338815451,0.092241309583187,0.097095906734467],[0.056081932038069,0.098787948489189,-0.010939564555883],[0.076351679861546,0.0038254207465798,-0.018570778891444]],[[-0.069043926894665,0.088976755738258,0.10039081424475],[0.034961555153131,0.055627256631851,-0.052538357675076],[0.027574561536312,-0.021332271397114,-0.02968830242753]],[[0.023594435304403,-0.033848732709885,-0.10543854534626],[-0.025849875062704,-0.007967671379447,-0.055557459592819],[-0.037124540656805,0.028302950784564,0.094008445739746]],[[-0.054965056478977,-0.0041461195796728,0.0071771801449358],[0.0035822046920657,-0.12575195729733,-0.038468558341265],[-0.093874357640743,-0.097918696701527,-0.10683491826057]],[[-0.070008829236031,0.14579901099205,-0.15225611627102],[0.030154379084706,-0.00088148395298049,0.12147157639265],[0.081682212650776,0.075347140431404,0.076661564409733]],[[0.016268603503704,0.062206923961639,0.047418396919966],[0.0042577525600791,-0.10937266796827,0.06031521037221],[0.0058346246369183,-0.031917937099934,-0.0053053284063935]],[[-0.087358996272087,-0.0089094182476401,0.10692416131496],[-0.050269421190023,0.042729128152132,-0.072809010744095],[-0.078979417681694,-0.001509431633167,0.00095395307289436]],[[0.11835064738989,0.064308159053326,-0.0096432222053409],[0.025684211403131,0.10099096596241,0.087789341807365],[-0.059400264173746,-0.01259957998991,0.042390186339617]],[[0.029112812131643,-0.1004648655653,-0.012403890490532],[-0.014238590374589,-0.077061846852303,-0.016868818551302],[0.073166891932487,-0.12319694459438,-0.023631459102035]],[[0.1963783800602,0.12983676791191,0.18904282152653],[0.17011816799641,0.071260124444962,0.052937693893909],[0.077268518507481,0.11987079679966,0.014416658319533]],[[0.10933678597212,0.15207836031914,0.060163524001837],[-0.020918186753988,0.11273949593306,0.013954753056169],[0.016130778938532,-0.01686867326498,-0.078240789473057]],[[-0.096097581088543,0.030218666419387,-0.016144521534443],[0.022990450263023,-0.0059618526138365,-0.037654463201761],[0.091399155557156,0.0035862524528056,0.050246015191078]],[[0.039278510957956,-0.020617440342903,0.028619773685932],[-0.035929217934608,-0.060488313436508,-0.031260810792446],[0.0044397870078683,-0.097851417958736,-0.1074355468154]],[[0.036595560610294,0.061602842062712,-0.097233556210995],[0.014450572431087,0.13367208838463,0.039728730916977],[0.0077060903422534,0.001437577418983,0.039102729409933]],[[-0.033973898738623,-0.15668839216232,-0.039559047669172],[0.048650398850441,-0.01646176353097,0.070958189666271],[-0.042967338114977,-0.046132370829582,0.038792759180069]],[[0.00515739293769,-0.033284828066826,-0.0065666777081788],[0.064970195293427,0.044694762676954,-0.096798099577427],[0.080621257424355,0.0084534911438823,-0.040431033819914]],[[-0.024901289492846,-0.0020219404250383,-0.00049846986075863],[-0.047029051929712,-0.10008216649294,-0.011137201450765],[-0.039696399122477,-0.043816279619932,0.03747134655714]],[[-0.060745570808649,-0.038856148719788,-0.089752331376076],[-0.15250119566917,-0.1117328107357,-0.048598498106003],[-0.02636861987412,-0.11371641606092,-0.14950217306614]],[[0.013326146639884,-0.0079153859987855,0.063143648207188],[-0.061112273484468,0.034049555659294,0.12453785538673],[-0.03512192890048,0.035295329988003,-0.1327248364687]],[[0.014773262664676,-0.077217362821102,0.029694678261876],[-0.11039204150438,-0.17506872117519,0.029351705685258],[-0.013144173659384,0.068253055214882,-0.0082450918853283]],[[0.017734494060278,0.070294491946697,0.049874804913998],[-0.030450711026788,0.0074249189347029,0.028166083618999],[-0.025787647813559,-0.065829694271088,-0.26075601577759]],[[0.10186773538589,-0.095580115914345,-0.16653047502041],[0.02300470508635,-0.059407591819763,-0.064370818436146],[-0.074797928333282,0.0025675112847239,-0.051927950233221]],[[0.069915682077408,0.040134619921446,0.0031856084242463],[0.042470578104258,-0.097871169447899,-0.04684853926301],[0.0054290858097374,-0.097780600190163,-0.091353751718998]],[[-0.060200523585081,-0.052752643823624,0.10717313736677],[0.038911070674658,0.033308476209641,0.044834766536951],[0.067650392651558,0.03684614226222,0.0092564886435866]],[[0.2469292730093,-0.042041026055813,0.066832914948463],[0.089043132960796,0.018532196059823,-0.034773658961058],[-0.016310982406139,-0.12123966962099,-0.030817961320281]],[[0.039828766137362,-0.034230638295412,0.0018076100386679],[-0.028568649664521,-0.10603430867195,0.00082682952051982],[-0.062912002205849,0.015168479643762,0.028796032071114]],[[-0.088119611144066,-0.072083584964275,0.015666974708438],[-0.077491641044617,-0.046242151409388,-0.068444140255451],[0.0033448212780058,-0.14315004646778,-0.018864061683416]],[[0.074072368443012,-0.011940924450755,-0.011168274097145],[0.011269657872617,-0.028139594942331,0.055377494543791],[0.01011267863214,0.1494374871254,0.019795160740614]],[[-0.02577331662178,0.092003732919693,0.011506215669215],[0.0059252553619444,0.0091239269822836,0.096988223493099],[0.054460447281599,-0.021983852609992,-0.0017508553573862]],[[0.1934023052454,-0.01967603340745,0.048447746783495],[0.093913115561008,-0.0012259419308975,-0.065472848713398],[-0.046691190451384,0.041743777692318,0.24829685688019]],[[-0.0027312631718814,-0.053843662142754,-0.074166685342789],[0.060619130730629,0.022012934088707,-0.019394403323531],[0.10754851251841,0.030257567763329,2.3525328288088e-05]],[[-0.017875092104077,-0.016708262264729,0.00090132048353553],[0.0073041650466621,0.02189289405942,-0.078299276530743],[0.017085427418351,0.018113814294338,-0.16107460856438]],[[-0.072071775794029,-0.043013036251068,0.049450326710939],[-0.03739831969142,-0.017784932628274,0.020557260140777],[-0.039380040019751,0.11441899836063,0.0041828835383058]],[[-0.084211222827435,0.17770405113697,0.083909057080746],[-0.15734557807446,-3.2350129913539e-05,0.092482231557369],[-0.023798245936632,-0.010483157821,-0.076281204819679]],[[0.14020159840584,0.0079941004514694,-0.081543825566769],[0.017322987318039,0.060007631778717,-0.13449966907501],[-0.093038663268089,-0.027551453560591,-0.038350809365511]],[[-0.089037925004959,-0.025519331917167,-0.013769681565464],[-0.0026513400953263,-0.060684386640787,-0.10323821753263],[-0.063356518745422,0.050793923437595,-0.075144343078136]],[[0.0074075344018638,0.19290201365948,0.067728132009506],[0.024512743577361,0.032608672976494,0.077752619981766],[0.017810260877013,-0.089354053139687,0.011359421536326]],[[-0.025394514203072,0.0840068385005,-0.061781171709299],[-0.072206690907478,-0.10659009218216,-0.01532004121691],[-0.055920772254467,-0.11386338621378,-0.12067983299494]],[[8.0881800386123e-06,-0.067849017679691,0.0074206432327628],[0.070188999176025,-0.019624244421721,0.027567949146032],[0.031232653185725,0.042218334972858,0.12840799987316]],[[0.010661945678294,0.11163570731878,0.031803671270609],[0.16621407866478,0.087459579110146,-0.098793536424637],[0.1337983161211,0.013298556208611,0.040567882359028]],[[-0.086256556212902,-0.052966691553593,0.022076096385717],[-0.057788792997599,0.024735761806369,0.018234070390463],[0.003253576811403,0.085637554526329,-0.036946438252926]],[[-0.08555181324482,0.074351757764816,0.036716740578413],[-0.14678902924061,-0.041388403624296,-0.0058298837393522],[-0.050447814166546,-0.17268718779087,-0.095119990408421]],[[-0.0015349590685219,0.080734767019749,0.066591016948223],[0.091168083250523,0.061381876468658,0.090734526515007],[0.11623250693083,0.025285378098488,0.1067890226841]],[[-0.080557182431221,-0.088543243706226,0.16460055112839],[-0.07514276355505,0.031629290431738,0.0093489680439234],[-0.1078150421381,-0.071412831544876,0.043095517903566]],[[0.0027904745656997,-0.054941315203905,-0.24430891871452],[-0.042502906173468,-0.017009010538459,-0.037545934319496],[0.0099417455494404,0.031038153916597,0.028846815228462]],[[0.0036911403294653,0.065040402114391,0.051759477704763],[0.047900274395943,0.010799414478242,0.052613481879234],[0.027896016836166,-0.0060082012787461,0.057201530784369]],[[-0.010209841653705,-0.059233844280243,-0.0071898722089827],[-0.07142436504364,-0.041596204042435,0.0016471876297146],[-0.07465872913599,-0.037739872932434,0.00049886287888512]],[[0.0072481036186218,0.028886189684272,0.065308079123497],[-0.0067432979121804,0.14613534510136,-0.10038419812918],[-0.0036499027628452,0.16468757390976,0.016389736905694]],[[0.045462734997272,-0.046912129968405,-0.075631484389305],[-0.024611907079816,-0.085007205605507,-0.15751819312572],[-0.084466107189655,-0.12180724740028,-0.071999207139015]],[[-0.014551104046404,-0.044569548219442,-0.090094029903412],[0.076374650001526,0.025356456637383,-0.083044365048409],[0.01361265219748,-0.075086914002895,-0.0042041996493936]],[[0.18179480731487,0.077093407511711,-0.057190123945475],[0.15103277564049,0.057551063597202,0.0055598034523427],[0.12471217662096,0.020183108747005,-0.11878553032875]],[[0.097774691879749,0.0062243798747659,-0.016868021339178],[0.0010027232347056,-0.10434348881245,-0.083514839410782],[-0.011419591493905,0.218665599823,0.12930858135223]],[[0.1775811612606,0.01987755484879,0.035246130079031],[-0.063929922878742,0.049657169729471,0.035663388669491],[0.0094544542953372,-0.059519730508327,-0.029612917453051]],[[0.16761776804924,0.015763567760587,0.20494690537453],[-0.018330527469516,0.019757626578212,0.04068648815155],[0.013162926770747,0.046486627310514,0.07959521561861]],[[0.008900074288249,0.037075854837894,-0.060800351202488],[-0.0044772503897548,0.10672112554312,-0.053710293024778],[-0.046179492026567,0.061567787081003,-0.14252458512783]],[[0.037805616855621,0.036251433193684,0.19385099411011],[0.12818369269371,0.019839692860842,0.086405262351036],[0.064301803708076,-0.0063449954614043,0.094000563025475]],[[0.069835275411606,0.020935025066137,-0.079033620655537],[-0.0008470849134028,0.060884319245815,0.16640511155128],[0.028183562681079,0.01434691529721,0.14255727827549]],[[0.0075120604597032,-0.095597498118877,-0.064921848475933],[-0.041395705193281,-0.10389145463705,0.050041347742081],[0.032859724014997,-0.13685961067677,-0.033185627311468]],[[0.024112362414598,0.055749274790287,-0.12576103210449],[-0.060881860554218,-0.0045828763395548,-0.088865138590336],[-0.052463784813881,0.025533899664879,-0.11041874438524]],[[-0.024982459843159,-0.039221614599228,-0.06052041053772],[-0.073854602873325,-0.031566273421049,-0.12633366882801],[0.010792938061059,-0.043152689933777,0.12305324524641]],[[0.040237158536911,0.010836366564035,0.12456698715687],[0.0055445139296353,-0.028284719213843,0.097908042371273],[0.054134979844093,-0.13426181674004,-0.034808542579412]],[[0.12487778067589,0.080464005470276,-0.010085456073284],[0.058359380811453,0.083831816911697,-0.017483303323388],[0.031909875571728,0.045570377260447,0.0079787978902459]],[[0.022849533706903,0.031700544059277,0.0266795437783],[0.065758734941483,0.18726190924644,0.12931433320045],[0.06397407501936,0.014148634858429,-0.017688589170575]],[[0.035873528569937,-0.029998000711203,-0.069773763418198],[-0.023181416094303,-0.0030555529519916,-0.030521832406521],[-0.05600780621171,0.033297784626484,-0.044946242123842]],[[-0.0049466621130705,-0.13657611608505,0.13969480991364],[-0.042171828448772,0.054082099348307,-0.016149768605828],[0.027478534728289,0.033988639712334,0.011937973089516]],[[0.10690474510193,-0.034057751297951,-0.013715990819037],[0.07240080088377,0.064336597919464,0.034338265657425],[0.062459472566843,0.07576410472393,-0.015925593674183]],[[0.03079180046916,0.0028232906479388,0.012340305373073],[0.038200952112675,-0.002579894149676,0.062890350818634],[0.011982901021838,0.0043029738590121,0.15073396265507]],[[0.098485738039017,-0.0059917629696429,-0.1440127491951],[0.038962982594967,-0.041535507887602,-0.078824050724506],[0.0031281195115298,0.11144427210093,0.0223383679986]],[[-0.029411274939775,0.0023818796034902,0.015828179195523],[-0.083876989781857,-0.096699990332127,-0.0027739277575165],[0.021874165162444,-0.083465084433556,0.047422040253878]],[[0.14274981617928,0.06937650591135,0.0083266291767359],[0.16847355663776,0.017203835770488,0.089800745248795],[0.018963729962707,0.22252202033997,-0.064459085464478]],[[-0.097530618309975,-0.043117295950651,-0.059812847524881],[0.027547253295779,0.0073066866025329,-0.053044863045216],[0.017759643495083,0.10945628583431,-0.0041895392350852]],[[-0.080849327147007,-0.027663312852383,0.052592527121305],[-0.089350119233131,-0.016484797000885,0.006962479557842],[0.051290400326252,-0.086400680243969,0.083352088928223]],[[0.037439607083797,0.048293206840754,0.053971089422703],[0.045533835887909,0.084881752729416,-0.0077738687396049],[0.048802137374878,0.038531791418791,0.10686630010605]],[[0.15727688372135,0.015224470756948,-0.027480183169246],[0.10730478167534,0.069224983453751,0.073602318763733],[0.038573578000069,0.11769554764032,0.15241646766663]],[[0.25939574837685,0.020638298243284,-0.039284888654947],[0.098987244069576,-0.032208919525146,0.15583437681198],[-0.066429659724236,-0.006006533280015,0.028285514563322]],[[0.0015038455603644,-0.064363792538643,0.01664231903851],[0.041872579604387,-0.061602115631104,-0.057056542485952],[0.019566474482417,-0.094941653311253,0.08852081745863]],[[0.041448589414358,0.0099647920578718,-0.047910518944263],[-0.011623210273683,0.02024782449007,-0.040338989347219],[-0.073557943105698,-0.054632846266031,0.072875052690506]],[[0.0465451143682,-0.01862945407629,0.0087295630946755],[0.066447168588638,-0.063023157417774,0.0063617047853768],[0.044512815773487,0.023482630029321,-0.084774054586887]],[[0.072588942945004,-0.070909731090069,-0.063046164810658],[-0.031352903693914,0.08684066683054,-0.083154201507568],[-0.0046064150519669,-0.13744536042213,0.1849490404129]],[[-0.042777620255947,-0.12172415852547,0.033733524382114],[-0.14917321503162,0.022529689595103,0.084256395697594],[0.09368933737278,-0.048813279718161,0.074359335005283]],[[0.11566197127104,0.08934760838747,-0.0045424778945744],[0.023884994909167,-0.047420587390661,-0.057577028870583],[0.045303735882044,0.025984590873122,-0.0043630823493004]],[[0.059590477496386,-0.1342288851738,-0.039729457348585],[0.066162206232548,0.096512034535408,0.050642348825932],[-0.044674567878246,-0.16028282046318,-0.21662609279156]],[[0.044705219566822,0.0042132954113185,0.076213963329792],[0.0094570033252239,0.04500737786293,0.02124978415668],[0.0019883748609573,0.035607226192951,0.054504502564669]],[[0.065923444926739,0.10909360647202,0.13767336308956],[0.062253557145596,0.01488730777055,0.026489734649658],[-0.054456282407045,0.059874124825001,0.018030844628811]],[[0.043025564402342,-0.012170703150332,-0.082704357802868],[-0.12636283040047,0.064007721841335,0.071441076695919],[-0.038992200046778,0.0340406447649,0.03769875317812]],[[-0.03105685301125,-0.04340111091733,0.092393532395363],[0.0035924217663705,-0.035651478916407,-0.0055826157331467],[0.0087682800367475,-0.071627855300903,0.074539549648762]],[[-0.071963965892792,0.041188072413206,0.078608304262161],[-0.08276142179966,-0.061942968517542,0.082866862416267],[-0.10404388606548,-0.005711433943361,-0.027416795492172]],[[-0.0078377090394497,0.008911119773984,0.090168997645378],[0.00098993594292551,-0.13644954562187,-0.020651230588555],[0.01670909114182,0.0056765074841678,0.087842158973217]],[[0.012839871458709,0.04700668156147,-0.056333806365728],[-0.0585997402668,-0.045694824308157,0.050597306340933],[-0.011919578537345,-0.048554461449385,-0.15645730495453]],[[0.14078789949417,0.075127050280571,-0.046504564583302],[-0.004092182032764,0.074376121163368,0.076576940715313],[-0.0224718619138,0.0075254184193909,0.049592483788729]],[[-0.014260440133512,-0.088717922568321,-0.11530433595181],[0.0089850248768926,-0.046603869646788,-0.1635545194149],[0.070044130086899,-0.0095228189602494,-0.014943728223443]],[[-0.048440020531416,0.0040818359702826,0.083597123622894],[-0.18852126598358,-0.0062907603569329,0.059615124017],[-0.034994851797819,-0.10992080718279,-0.069068595767021]],[[-0.010248446837068,-0.0078920982778072,0.037780348211527],[0.015416041016579,0.0047068521380424,0.010556928813457],[-0.032485015690327,-0.033398393541574,0.14047792553902]],[[-0.0081227626651525,0.040679462254047,0.11109796911478],[0.092453464865685,0.07172716408968,-0.067815944552422],[0.090714007616043,0.059998981654644,0.02382642775774]],[[0.03845002502203,0.10334493219852,0.071240425109863],[0.1626875847578,0.093022540211678,0.013052891008556],[0.14316239953041,0.19880886375904,0.12960812449455]],[[0.012445976957679,0.0059976326301694,0.066213741898537],[0.046902816742659,-0.0059085474349558,-0.091431602835655],[0.07422848790884,0.037802238017321,-0.0357725918293]],[[0.13026742637157,-0.031993925571442,0.10018292814493],[-0.018660746514797,0.086973108351231,0.0015164676588029],[0.065790265798569,-0.029813764616847,-0.034944791346788]],[[-0.20483966171741,-0.06766651570797,-0.18542712926865],[-0.1601294875145,-0.11504512280226,-0.011716402135789],[-0.17782264947891,0.049450810998678,0.19562052190304]],[[0.091234520077705,0.05189822986722,0.13794568181038],[0.16035145521164,-0.0097435796633363,-0.035155698657036],[0.085637845098972,-0.028899852186441,-0.021144639700651]],[[-0.16856607794762,-0.0038783545605838,0.11341464519501],[-0.046188402920961,0.059562440961599,0.15274955332279],[-0.024354910477996,0.060659691691399,0.036238636821508]],[[-0.090818122029305,-0.11367327719927,0.052831709384918],[-0.13387893140316,-0.23953796923161,0.012343786656857],[-0.038857374340296,0.012370197102427,0.0099203577265143]],[[-0.077410690486431,-0.060545276850462,0.13240011036396],[-0.070614755153656,-0.071673415601254,0.12630520761013],[0.0014307899400592,-0.034820050001144,0.042014166712761]],[[-0.0014471058966592,0.020349431782961,0.17999422550201],[-0.054658655077219,-0.00072252901736647,0.11806257069111],[-0.092631630599499,0.049807157367468,0.092940665781498]],[[0.020831702277064,0.024392887949944,0.16425517201424],[-0.032133933156729,0.014837215654552,-0.05211166664958],[0.019112348556519,0.052931576967239,-0.16819559037685]],[[0.0072826510295272,0.052399437874556,0.12890736758709],[-0.017116881906986,-0.053899671882391,-0.024767242372036],[-0.037276443094015,0.048778191208839,-0.1049066260457]],[[0.055605735629797,0.039646483957767,-0.038819942623377],[-0.02460265532136,-0.02749140560627,-0.099079057574272],[-0.032358035445213,0.088614769279957,-0.012730990536511]],[[0.11734589189291,-0.10021231323481,-0.0449921451509],[0.0055146203376353,0.019742680713534,0.044753666967154],[-0.001258147880435,0.023874690756202,0.002151663415134]],[[0.056059911847115,0.035061787813902,0.023370683193207],[0.021407276391983,-0.013338628225029,-0.0487453751266],[-0.0039519062265754,-0.089072957634926,-0.0065587409771979]],[[0.046334695070982,0.070337571203709,0.031067276373506],[-0.12650828063488,-0.0022529475390911,-0.16403266787529],[-0.092271082103252,-0.11169161647558,-0.18124276399612]],[[-0.047479666769505,-0.016951885074377,0.013816026970744],[-0.024791408330202,-0.0028309407643974,0.025340672582388],[0.030336320400238,0.043164901435375,0.058344941586256]],[[-0.12416949123144,-0.030421262606978,0.03835329785943],[-0.054040346294641,-0.034003954380751,-0.036945622414351],[0.020048409700394,0.026108520105481,-0.037077594548464]],[[0.040390465408564,0.019056284800172,-0.0294483974576],[-0.058476079255342,-0.0066476101055741,-0.048648715019226],[-0.059341803193092,0.056448999792337,-0.012592832557857]],[[0.07277125120163,-0.071364276111126,-0.12491679936647],[0.011938071809709,-0.045066919177771,0.031170392408967],[0.022596810013056,0.0017146239988506,-0.049551013857126]],[[-0.055666573345661,0.019400212913752,0.072164840996265],[-0.0093623707070947,0.0020013530738652,0.065061189234257],[-0.0029050896409899,0.041843723505735,0.041562888771296]],[[-0.018284004181623,-0.050412733107805,0.08006901293993],[0.016949083656073,-0.087923176586628,-0.089915156364441],[0.0022311783395708,-0.045777551829815,-0.075726799666882]],[[-0.091438427567482,-0.0090902913361788,-0.067211516201496],[-0.077869310975075,-0.074723161756992,-0.1371243596077],[-0.014020862989128,-0.076999709010124,-0.065348751842976]],[[0.092210583388805,0.070571467280388,0.090476810932159],[0.011621334590018,0.0043215341866016,0.051085870712996],[-0.050888542085886,-0.15921521186829,0.035830974578857]],[[-0.07992984354496,-0.10830101370811,-0.05800649151206],[-0.028418440371752,-0.039647310972214,0.002596000675112],[-0.060380041599274,0.017427301034331,0.047995839267969]],[[-0.0086374301463366,-0.18922990560532,-0.22473596036434],[-0.21482308208942,-0.12302658706903,0.011317542754114],[-0.18889339268208,-0.10435498505831,-0.13813117146492]],[[0.11403930187225,0.050807405263186,-0.20256073772907],[0.046056933701038,0.0046607227995992,-0.14671595394611],[-0.016829313710332,-0.091714516282082,-0.15186674892902]],[[-0.011333591304719,-0.012494351714849,-0.12001956254244],[0.023176582530141,-0.18710438907146,-0.08809170871973],[0.12995278835297,-0.097316287457943,0.012464441359043]],[[0.072772055864334,0.017294814810157,-0.038300983607769],[0.048273712396622,0.042843993753195,-0.00029637821717188],[-0.084588326513767,0.076616622507572,-0.010672806762159]],[[0.024722779169679,-0.054102655500174,-0.26442500948906],[0.028727632015944,-0.044665217399597,0.036883398890495],[-0.093076206743717,0.090688794851303,0.11230970919132]],[[-0.049483928829432,0.13114137947559,0.058776564896107],[0.031486492604017,0.069116078317165,0.10792669653893],[0.14758135378361,0.073353096842766,0.027877599000931]],[[-0.072482034564018,0.080601960420609,0.063848219811916],[-0.031853571534157,0.019054815173149,-0.065528683364391],[-0.048095721751451,0.0031835902482271,0.025662003085017]]],[[[0.0041132383048534,-0.021198054775596,0.046949043869972],[-0.0032494815532118,0.03359642252326,0.047677990049124],[-0.0014928283635527,-0.019587168470025,0.086462073028088]],[[0.0055214590393007,0.004998495336622,-0.074280381202698],[-0.027568552643061,-0.085580267012119,0.030660403892398],[0.023285374045372,-0.031027238816023,0.0073117935098708]],[[0.029282551258802,0.056614305824041,0.0065393620170653],[0.12100199609995,-0.0043194615282118,0.011607106775045],[0.022485040128231,-0.030860617756844,-0.096139632165432]],[[-0.047059949487448,0.018067747354507,0.073762930929661],[-0.011742177419364,-0.011329632252455,-0.027344120666385],[0.0097950417548418,-0.010996702127159,0.017982762306929]],[[0.014286770485342,0.055975016206503,-0.026274742558599],[-0.0030541273299605,-0.017240736633539,-0.037207785993814],[-0.021799020469189,-0.0005829141009599,0.0046950355172157]],[[-0.033824164420366,-0.038513503968716,-0.039341252297163],[-0.028507394716144,0.058827511966228,0.012571359053254],[0.0029309696983546,0.040168318897486,-0.040400754660368]],[[0.034801200032234,0.007797128520906,-0.0034099956974387],[-0.0044246511533856,-0.076588608324528,-0.028603171929717],[-0.070217333734035,-0.041348118335009,-0.042156688868999]],[[-0.0236492510885,0.03305945545435,-0.01092707272619],[0.074618995189667,-0.024618519470096,-0.050196941941977],[-0.023333456367254,0.053540278226137,0.0081496713683009]],[[0.029061447829008,0.013589388690889,0.0099997138604522],[-0.053802657872438,-0.016102775931358,0.020015377551317],[0.039482235908508,-0.020734144374728,0.020497778430581]],[[0.024682901799679,-0.0063395835459232,0.017727069556713],[0.05284946039319,0.0074130306020379,0.047581098973751],[-0.026544960215688,-0.011114869266748,-0.046535953879356]],[[-0.048950728029013,0.038833200931549,0.048404633998871],[0.052547924220562,-0.1051142886281,0.031081810593605],[0.082694165408611,-0.049110401421785,0.02861949428916]],[[-0.0091560622677207,-0.0028689184691757,0.054303571581841],[-0.050204124301672,0.0036584043409675,-0.035370878875256],[0.064601682126522,-0.027732526883483,0.085740730166435]],[[-0.035654678940773,0.080450475215912,0.038122545927763],[0.0479338131845,-0.0068625127896667,0.066827468574047],[-0.046453580260277,0.025347825139761,-0.013960820622742]],[[-0.0022932649590075,0.016433773562312,0.032992426306009],[0.066213227808475,0.042629819363356,-0.051072333008051],[-0.068698205053806,-0.009942164644599,0.012539309449494]],[[-0.047058537602425,-0.068763352930546,-0.036854851990938],[-0.01857740432024,0.0392991527915,0.011093387380242],[0.013269052840769,0.0066955052316189,-0.07217912375927]],[[0.015897385776043,-0.022719951346517,0.040194436907768],[0.021433694288135,-0.035028554499149,-0.0066590094938874],[0.076030261814594,0.043852027505636,-0.032442837953568]],[[0.015371192246675,2.731514723564e-05,-0.0052991551347077],[0.061937440186739,-0.01252441201359,-0.020668486133218],[0.010553047060966,0.030326500535011,-0.0018158967141062]],[[-0.064398095011711,0.037441708147526,-0.033778440207243],[-0.0015568290837109,-0.082628160715103,0.021315660327673],[0.032462999224663,0.0091262655332685,-0.0015887421322986]],[[0.018789837136865,0.057859372347593,0.10994632542133],[-0.043379250913858,-0.053661085665226,0.06670469045639],[0.022554671391845,-0.067275032401085,-0.09073269367218]],[[-0.080534808337688,0.079050697386265,0.067701883614063],[-0.019983261823654,0.025017915293574,-0.015844210982323],[0.051379915326834,0.083842612802982,-0.070457562804222]],[[-0.023101126775146,-0.030085323378444,0.02494939789176],[0.020048245787621,0.031433321535587,0.0034529177937657],[0.022418718785048,-0.081738419830799,-0.055584378540516]],[[0.045173790305853,0.012296460568905,0.0047494266182184],[0.039167866110802,-0.030251370742917,0.0076131783425808],[-0.013873378746212,-0.033370357006788,0.0042408253066242]],[[-0.058245278894901,-0.02283900231123,0.046386543661356],[-0.089696176350117,-0.016410000622272,-0.014518621377647],[-0.078842505812645,-0.038014832884073,0.095066472887993]],[[-0.023787165060639,-0.015210787765682,0.027588920667768],[0.053395878523588,-0.037845436483622,0.011782605201006],[0.032340921461582,-0.013952617533505,-0.03301590681076]],[[0.03187907487154,0.020780522376299,0.0071512055583298],[-0.0048229601234198,0.0026974484790117,-0.0050365827046335],[-0.0050971480086446,0.068624250590801,0.059468135237694]],[[0.022670982405543,-0.016453674063087,-0.022030461579561],[-0.039298593997955,-0.024118114262819,0.0087295090779662],[0.057032190263271,0.05491029843688,0.0052399300038815]],[[0.069343633949757,0.0092170191928744,-0.03435456007719],[0.0024216398596764,0.059697732329369,-0.0054854638874531],[0.1383348107338,0.037770420312881,-0.033242117613554]],[[0.0038314182311296,0.02024001441896,0.050118871033192],[0.069786310195923,-0.035852700471878,-0.032805319875479],[0.063154019415379,0.098892837762833,-0.022007213905454]],[[0.066290162503719,0.084980219602585,0.12630547583103],[0.14874039590359,0.10082317143679,0.051518656313419],[-0.085757575929165,0.069437444210052,0.0053171892650425]],[[-0.0032315254211426,0.03689506649971,0.015468558296561],[-0.090761959552765,-0.014515686780214,-0.01218943297863],[-0.0013933933805674,-0.057049911469221,-0.043280284851789]],[[0.027459375560284,0.073166891932487,-0.010162169113755],[0.06174349412322,0.0027856554370373,-0.065688714385033],[-0.031318590044975,0.033139828592539,0.020972218364477]],[[-0.036179564893246,-0.010927759110928,0.0064366655424237],[-0.038376964628696,-0.071083195507526,0.050489656627178],[0.015730185434222,-0.04858323186636,-0.070061460137367]],[[0.006094038952142,-0.059953927993774,-0.0571612380445],[0.12350849062204,0.0073316297493875,0.090508840978146],[0.038622718304396,0.13867916166782,0.01870434731245]],[[-0.050884377211332,-0.039680708199739,-0.046997103840113],[-0.0041612633503973,0.0036176105495542,-0.053970459848642],[0.013237678445876,0.085727848112583,0.021629523485899]],[[0.033527743071318,0.011083481833339,0.058767087757587],[-0.019291117787361,-0.0065333866514266,0.021886914968491],[-0.010812349617481,0.063709780573845,0.025121096521616]],[[-0.078828498721123,-0.062891080975533,-0.036199286580086],[0.07604056596756,0.026927378028631,0.015761315822601],[-0.066947370767593,-0.058340687304735,0.018045922741294]],[[-0.025328988209367,0.064768433570862,0.028790572658181],[0.046779192984104,-0.046990182250738,-0.03892419859767],[0.040206220000982,0.060763314366341,-0.067481592297554]],[[-0.066152520477772,-0.050791077315807,0.024349927902222],[-0.030223168432713,0.011199578642845,0.059051990509033],[-0.10776600241661,-0.038802795112133,0.051209267228842]],[[-0.018122743815184,-0.024634612724185,0.013868077658117],[0.032097764313221,-0.071488857269287,-0.043393470346928],[0.06110192835331,0.0124048627913,-0.064173854887486]],[[-0.041665144264698,0.0095731867477298,-0.0017925326246768],[-0.011039618402719,-0.011189953424037,0.050776787102222],[0.01030966732651,0.01488718483597,0.053390376269817]],[[-0.012454614043236,-0.04352006316185,0.046355564147234],[0.059514742344618,0.0021762724500149,0.071211814880371],[0.084972336888313,0.027102921158075,-0.026086993515491]],[[-0.0046182167716324,0.011807705275714,-0.021000053733587],[-0.015078417025506,-0.04945882409811,0.051329776644707],[0.10588672012091,0.039184965193272,0.11545287817717]],[[0.090889491140842,-0.047591675072908,0.048099525272846],[-0.02451135404408,0.061117731034756,0.1211434006691],[0.071940869092941,-0.019807726144791,0.016451539471745]],[[0.030508441850543,-0.043412905186415,0.052870992571115],[-0.01369034871459,0.012004177086055,-0.050138041377068],[0.018720483407378,0.05809273198247,-0.055025618523359]],[[-0.002167298225686,-0.033348120748997,0.030860895290971],[-0.034796670079231,0.049207642674446,0.073380641639233],[-0.053722765296698,0.02691594325006,0.015520268119872]],[[-0.019017681479454,0.042685884982347,0.070737458765507],[-0.048834443092346,0.057176008820534,0.095758467912674],[-0.00066464208066463,0.033758856356144,0.025751654058695]],[[0.024570044130087,0.0084200883284211,0.014293654821813],[-0.029716439545155,-0.023759331554174,0.0074659804813564],[0.072189845144749,0.076626896858215,-0.041369244456291]],[[-0.0099145686253905,0.063779130578041,-0.038980722427368],[0.047228083014488,-0.028332909569144,-0.099405825138092],[0.025555901229382,-0.053207240998745,-0.054297763854265]],[[-0.01491979137063,-0.049717627465725,-0.02932108938694],[0.0048896754160523,-0.0043960004113615,-0.074237287044525],[-0.0049976212903857,0.036820851266384,0.013626367785037]],[[-0.06187217310071,-0.028294835239649,-0.053532052785158],[0.013456623069942,0.056601874530315,-0.018471255898476],[0.026675825938582,-0.024795357137918,0.061835672706366]],[[-0.075617551803589,0.10166369378567,-0.015981851145625],[0.0043248799629509,-0.062967948615551,0.0081353140994906],[0.08972293138504,0.018383605405688,-0.065054409205914]],[[0.034452691674232,-0.01490612514317,-0.016520561650395],[0.0040729963220656,-0.020011618733406,-0.041218902915716],[0.096134066581726,0.035633247345686,0.014219142496586]],[[-0.05236329510808,0.0046891318634152,-0.061923358589411],[-0.035483945161104,-0.044105708599091,-0.0029561913106591],[-0.042042333632708,-0.015031045302749,0.0078896917402744]],[[0.040804464370012,0.054596018046141,0.016641661524773],[0.0012977193109691,0.038583539426327,0.011001585051417],[0.030209820717573,-0.017184795811772,-0.0057016531936824]],[[0.014590981416404,0.042636997997761,0.020024193450809],[-0.011637524701655,-0.030972899869084,0.017175270244479],[0.016415482386947,-0.034701526165009,0.051921579986811]],[[0.036092095077038,-0.021842941641808,-0.0018362998962402],[0.015545078553259,0.0096286218613386,0.0072182756848633],[-0.04778303951025,0.022848177701235,-0.051796961575747]],[[-0.085926465690136,0.027963666245341,-0.058018330484629],[-0.019430227577686,0.0075558456592262,0.028684148564935],[0.025706980377436,0.10034171491861,-0.021522972732782]],[[-0.011922071687877,0.032982956618071,-0.0083992201834917],[-0.026423430070281,0.020738646388054,0.014930216595531],[-0.012895492836833,-0.048619322478771,0.026606254279613]],[[0.0046101887710392,0.020776258781552,0.013763860799372],[0.015949001535773,0.033406637609005,-0.057701300829649],[-0.041484601795673,0.035557337105274,0.02861631847918]],[[-0.038716945797205,-0.0021940008737147,-0.025789275765419],[-0.088639408349991,0.019727937877178,0.094660274684429],[0.007669678889215,-0.0048680491745472,0.057183291763067]],[[-0.037781368941069,-0.061436638236046,0.0097308438271284],[-0.035140115767717,0.062180049717426,-0.012843838892877],[-0.01060330402106,0.051704317331314,-0.044326327741146]],[[-0.048907272517681,-0.031770169734955,-0.058776590973139],[-0.027829704806209,0.038548581302166,-0.021149720996618],[-0.020573910325766,0.038977649062872,-0.03329898789525]],[[-0.026066955178976,-0.0085460189729929,-0.091175779700279],[-0.0018397794337943,0.0017797129694372,0.091898947954178],[0.041218120604753,-0.015318980440497,0.046715315431356]],[[0.061308160424232,-0.0063083777204156,0.023195302113891],[0.041066143661737,0.052996713668108,-0.065000280737877],[-0.049979589879513,0.0090260673314333,0.046791523694992]],[[0.044066961854696,-0.042867045849562,0.077894479036331],[0.023904541507363,0.060825608670712,0.041978869587183],[-0.043644327670336,0.0098599931225181,-0.055849615484476]],[[-0.022086987271905,0.0065212552435696,0.014605258591473],[0.059264671057463,0.04160862416029,-0.017970001325011],[0.031365614384413,0.074685603380203,0.027129678055644]],[[-0.048021260648966,-0.030444871634245,-0.012427907437086],[0.10183919221163,-0.018111828714609,-0.02030267752707],[0.062077172100544,0.017884878441691,-0.014503636397421]],[[-0.0029400929342955,-0.004465349484235,-0.02987464517355],[-0.00078863184899092,-0.0053852051496506,0.023623311892152],[0.015216151252389,0.00102072826121,-0.047381494194269]],[[0.00092535285511985,0.014660367742181,0.060958106070757],[0.033227108418941,0.10467402637005,0.010236290283501],[0.039724782109261,0.023813864216208,-0.024383965879679]],[[-0.017061861231923,-0.04462431371212,0.035307012498379],[-0.062263213098049,0.023936782032251,-0.040084287524223],[-0.0088343024253845,-0.0025164256803691,-0.040009029209614]],[[0.019545489922166,-0.051100425422192,-0.0064282696694136],[0.14595854282379,0.027712048962712,0.029847227036953],[0.073654994368553,-0.038259837776423,-0.0072254724800587]],[[0.040983241051435,-0.024242917075753,-0.01331935916096],[0.0016625763382763,0.02690270729363,-0.080326169729233],[-0.013235479593277,0.043519895523787,0.11197412014008]],[[-0.0030758429784328,-0.13431000709534,-0.003982690628618],[-0.049686785787344,-0.029935117810965,0.017252366989851],[0.00026612012879923,0.0076277237385511,-0.094573453068733]],[[0.00097586930496618,0.039837457239628,0.043796844780445],[0.048698887228966,-0.063128858804703,-0.083359532058239],[-0.00098936341237277,-0.018564086407423,-0.062683187425137]],[[0.013926835730672,-0.018705505877733,0.052757926285267],[0.046278961002827,0.019668402150273,0.049580551683903],[0.01154759246856,0.0071797226555645,-0.034664656966925]],[[-0.056710001081228,-0.05601143091917,0.038085095584393],[0.0080574518069625,-0.028708498924971,0.051118422299623],[0.021926363930106,0.0033825985156,-0.045508109033108]],[[-0.013895468786359,0.009133099578321,-0.044375516474247],[0.027345495298505,0.016498938202858,-0.011851204559207],[-0.0022867578081787,-0.065913327038288,0.044824507087469]],[[0.019908668473363,0.016237994655967,-0.0019428500672802],[0.053213976323605,0.020933931693435,0.084352970123291],[-0.007036333438009,-0.0192940402776,-0.018587443977594]],[[0.021662119776011,0.041134390980005,-0.0093929041177034],[-0.060923732817173,0.032254356890917,0.014107218012214],[0.1217011064291,-0.009681367315352,0.027025066316128]],[[0.068746097385883,0.068088620901108,-0.0042524030432105],[0.06150708347559,0.044930566102266,0.011625961400568],[0.11891178041697,0.0037130834534764,-0.0069233789108694]],[[-0.057201396673918,0.03932748734951,0.0047411294654012],[-0.065607942640781,-0.016659636050463,0.0011384405661374],[-0.057648584246635,0.016581488773227,-0.081125304102898]],[[-0.022798845544457,0.0053514721803367,0.056364957243204],[-0.017436215654016,0.055298238992691,0.09091978520155],[-0.07817867398262,-0.043589435517788,0.021179059520364]],[[0.063423372805119,0.026620954275131,-0.013895944692194],[-0.029818305745721,-0.007326565682888,-0.0007639077375643],[0.11255982518196,-0.0050325230695307,0.023242777213454]],[[0.07365844398737,0.0062243109568954,-0.0099278278648853],[0.03494431450963,-0.027978910133243,0.02693753503263],[0.028901502490044,-0.040485791862011,0.021880969405174]],[[0.11084504425526,-0.015967747196555,0.02032164297998],[-3.2961284887278e-05,0.055894702672958,-0.0046449545770884],[-0.025407502427697,0.0029195265378803,-0.04101238399744]],[[-0.0243204459548,-0.039427138864994,0.018485184758902],[-0.032555609941483,-0.065594755113125,0.067607663571835],[-0.034721352159977,0.086466617882252,-0.026607614010572]],[[-0.001022418611683,0.12814517319202,0.021850273013115],[0.023668007925153,0.010032933205366,0.031688913702965],[0.014174146577716,0.046793069690466,-0.05651031434536]],[[-0.010998167097569,0.078834183514118,-0.0039901812560856],[-0.0027971302624792,0.031086340546608,0.0043674507178366],[-0.0028632904868573,-0.034857209771872,0.046018689870834]],[[-0.06572088599205,-0.022146221250296,0.057404171675444],[-0.046229787170887,-0.069723166525364,0.12655152380466],[0.059969998896122,0.033154714852571,0.074187688529491]],[[0.066648319363594,0.033795963972807,-0.040688615292311],[-0.028311710804701,0.05808449909091,-0.097553625702858],[0.044518433511257,0.015711704269052,-0.015629166737199]],[[-0.014745404012501,0.015570395626128,-0.02722967416048],[0.088774420320988,0.045212242752314,0.029230892658234],[-0.031813468784094,-0.011103940196335,-0.038992580026388]],[[-0.011161509901285,0.1138354241848,-0.020321419462562],[-0.0066461632959545,0.0049006585031748,0.050285585224628],[-0.0037115255836397,-0.042771462351084,0.00011102845746791]],[[0.024437144398689,-0.028941133990884,-0.0058286460116506],[0.0055669085122645,0.083506464958191,0.030684703961015],[0.0027943626046181,-0.0056774327531457,-0.051655329763889]],[[0.082831919193268,-0.028544498607516,0.0052596917375922],[0.098067820072174,0.02843808196485,3.5825360100716e-06],[0.046805083751678,0.020789619535208,-0.015829937532544]],[[-0.044264651834965,-0.021272366866469,-0.070551812648773],[0.029483538120985,-0.093094237148762,-0.0044974996708333],[-0.039561871439219,-0.01481384690851,-0.0083002345636487]],[[0.037698946893215,0.065886646509171,0.11018691956997],[0.073222316801548,-0.057318225502968,-0.026487644761801],[-0.009194316342473,0.013419597409666,0.03248243033886]],[[-0.012361659668386,-0.014750882051885,-0.0075357281602919],[-0.012863229028881,-0.062841817736626,-0.10679311305285],[0.042396418750286,-0.03486043214798,0.045400395989418]],[[0.095662146806717,0.0013015172444284,-0.11228768527508],[0.13795834779739,-0.0057050986215472,0.026287274435163],[-0.01077869720757,0.018916355445981,-0.009784048423171]],[[-0.0020790898706764,-0.024664249271154,-0.040609661489725],[-0.022163968533278,-0.00016730178322177,0.019602613523602],[-0.019457470625639,-0.00064012373331934,0.025169089436531]],[[0.044604104012251,0.039473053067923,-0.10127529501915],[0.06299065798521,0.08918546885252,-0.013721957802773],[0.057686116546392,0.071637243032455,0.037336193025112]],[[-0.012168113142252,-0.083272404968739,-0.028087267652154],[-0.00029159238329157,0.057248309254646,-0.011720254085958],[-0.0082539794966578,0.05542054772377,-0.10343848913908]],[[-0.019561052322388,-0.0097761619836092,-0.014261459000409],[0.059673722833395,-0.040284916758537,0.072429083287716],[0.020471962168813,-0.011096332222223,0.046170637011528]],[[-0.097914591431618,0.067005030810833,0.044815968722105],[-0.052955683320761,-0.059388738125563,0.02742438390851],[0.0013297873083502,0.011055772192776,0.004332703538239]],[[-0.066076777875423,0.014527287334204,0.018427617847919],[0.018688645213842,-0.15792237222195,-0.002020396059379],[-0.035259865224361,-0.052629582583904,0.0029489318840206]],[[0.12261172384024,0.027826156467199,-0.023271933197975],[0.039500869810581,-0.019218062981963,-0.038846760988235],[0.066726990044117,-0.017736164852977,-0.065271034836769]],[[-0.0097359362989664,-0.0066111613996327,0.0022209389135242],[-0.02220855653286,-0.018309092149138,0.072043307125568],[-0.010067135095596,-0.072818301618099,-0.0036421879194677]],[[-0.0037324929144233,0.0051427162252367,0.012356803752482],[0.024587797001004,0.058539733290672,0.025900842621922],[0.061961099505424,0.031569991260767,0.056243948638439]],[[-0.013841233216226,0.059976782649755,0.0041299480944872],[-0.0021767010912299,-0.024394918233156,0.016299717128277],[0.14942832291126,0.047629501670599,-0.030415603891015]],[[0.057863347232342,-0.020932784304023,-0.031429588794708],[-0.0090577946975827,-0.02552318200469,0.010751599445939],[-0.049837321043015,-0.035909838974476,-0.012793431989849]],[[0.020029909908772,0.0081432890146971,-0.016995579004288],[-0.0010975834447891,0.023598559200764,-0.043125189840794],[-0.020524533465505,0.027721527963877,0.074404127895832]],[[-0.058266956359148,0.045670885592699,0.017307268455625],[-0.053258378058672,-0.012347812764347,0.041094209998846],[-0.0014587370678782,-0.0088627310469747,0.0039154700934887]],[[-0.018665773794055,0.055010113865137,-0.031681772321463],[0.01029615290463,-0.0073014260269701,-0.043439764529467],[-0.032087862491608,0.04119860753417,-0.089489087462425]],[[0.032968379557133,-0.0087084751576185,-0.064922906458378],[-0.033708058297634,0.010711629875004,0.041985940188169],[-0.057144701480865,-0.13426752388477,0.0093557499349117]],[[-0.070964485406876,-0.08553309738636,-0.04579009488225],[-0.056322362273932,-0.033557184040546,-0.0017390722641721],[-0.066017061471939,-0.051802519708872,-0.018692081794143]],[[-0.0029436750337481,0.0049080369062722,-0.10436394810677],[0.072413302958012,0.031108025461435,-0.036162476986647],[-0.0025653208140284,-0.095058433711529,0.03480751812458]],[[-0.017989272251725,-0.15224391222,-0.035435147583485],[-0.038212008774281,-0.046256441622972,0.056689910590649],[-0.050681747496128,-0.085343509912491,-0.059773165732622]],[[0.00027922680601478,0.0032644555903971,0.0016714270459488],[-0.037752147763968,-0.054206784814596,0.032666765153408],[0.026330519467592,0.02402414008975,0.0082044303417206]],[[0.010881004855037,0.02999653108418,-0.0076138032600284],[-0.057316090911627,0.021069778129458,0.103669911623],[-0.017710374668241,-0.031350262463093,0.12733179330826]],[[-0.020486949011683,0.094533815979958,-0.0060090553015471],[-0.044530618935823,-0.048513904213905,-0.056477084755898],[-0.0080171208828688,0.050797544419765,0.11122293770313]],[[0.067413069307804,0.05194528773427,0.10624539852142],[0.038025096058846,-0.053407687693834,0.048553273081779],[-0.015286575071514,-0.022652065381408,-0.018897462636232]],[[0.021082274615765,-0.053766541182995,0.016544768586755],[-0.034047462046146,-0.054155368357897,-0.049837157130241],[0.015004351735115,0.038195766508579,0.001392662175931]],[[0.040678080171347,-0.0093425698578358,-0.011154854670167],[-0.035589285194874,-0.026815766468644,0.031153237447143],[-0.025103766471148,-0.050346158444881,-0.074822753667831]],[[-0.074462033808231,-0.039085805416107,-0.09487184882164],[-0.061313044279814,-0.024953860789537,-0.027144975960255],[0.014000804163516,-0.028847765177488,-0.034517236053944]],[[-0.026488231495023,0.041719172149897,0.030793454498053],[-0.0095815062522888,0.070053406059742,-0.061963841319084],[-0.028450565412641,-0.017073158174753,-0.050685223191977]],[[-0.0020306981168687,0.028936721384525,-0.03679333627224],[-0.031593784689903,-0.019656727090478,0.0095485942438245],[0.03218686580658,-0.010275858454406,-0.026373228058219]],[[-0.030037142336369,0.033216867595911,0.0036151090171188],[-0.065828405320644,-0.0075082005932927,-0.07460743188858],[0.0098026823252439,0.074898444116116,0.022224560379982]],[[0.061129115521908,0.04113483056426,0.047005623579025],[0.041800819337368,0.086602181196213,-0.023461053147912],[0.035193175077438,-0.025620967149734,-0.011602880433202]],[[0.0082151833921671,-0.050489187240601,-0.02201521769166],[-0.080278128385544,-0.040412686765194,-0.065469615161419],[-0.029511937871575,-0.021832708269358,-0.020132699981332]]],[[[-0.0088370759040117,-0.014958185143769,-0.0095363631844521],[0.052537512034178,-0.079097986221313,-0.10630165040493],[-0.047448825091124,-0.052700001746416,-0.10291162878275]],[[0.0079843802377582,-0.034985717386007,0.072320833802223],[-0.025426030158997,0.0042163706384599,-0.030795235186815],[0.1573970913887,-0.072502605617046,-0.10400810837746]],[[-0.062766350805759,-0.02864670753479,-0.093770459294319],[-0.084935814142227,-0.065333567559719,0.044530041515827],[-0.11806105077267,-0.12998335063457,-0.13671708106995]],[[0.21348978579044,0.089001081883907,-0.012732135131955],[-0.14425684511662,0.039185427129269,0.085025064647198],[-0.019295049831271,-0.018592868000269,-0.27349081635475]],[[-0.064992837607861,0.05779542028904,0.0004927046247758],[-0.079199559986591,0.024823805317283,-0.063983611762524],[-0.11790480464697,-0.039949640631676,-0.010420401580632]],[[0.0077533558942378,0.016896188259125,-0.059912849217653],[-0.032765779644251,-0.073646672070026,0.052304551005363],[-0.020660085603595,-0.081520222127438,-0.066845364868641]],[[-0.099128849804401,-0.030676672235131,-0.040072452276945],[0.147914275527,0.11771938949823,-0.015215849503875],[-0.3144012093544,-0.068404793739319,0.0079353544861078]],[[-0.17817240953445,-0.0015120320022106,-0.0092005701735616],[-0.070181414484978,0.0060528996400535,-0.016338808462024],[0.039004530757666,0.064247384667397,0.075220480561256]],[[0.14879880845547,0.099022187292576,-0.061296585947275],[0.0062348614446819,0.010259266011417,-0.058811511844397],[-0.039083611220121,0.031543500721455,0.0012965024216101]],[[-0.19115895032883,-0.040041849017143,-0.00093187612947077],[0.079692214727402,-0.14592219889164,-0.040712278336287],[0.11642480641603,0.21959893405437,-0.030269857496023]],[[-0.20170238614082,0.32706627249718,-0.14119565486908],[-0.076225019991398,0.023270284757018,-0.061949476599693],[-0.021236680448055,0.0020150209311396,0.27334713935852]],[[0.040609613060951,0.13058237731457,-0.00081513490295038],[0.093744337558746,-0.042720481753349,-0.0062188878655434],[0.11947126686573,-0.029183717444539,-0.1094634309411]],[[0.095021992921829,0.19315929710865,0.21003387868404],[-0.044685360044241,0.061204638332129,0.21473781764507],[-0.036670792847872,0.09829556196928,0.032024774700403]],[[-0.057369779795408,0.030211431905627,0.057674929499626],[0.069547720253468,-0.050727464258671,0.03030270524323],[0.0052987849339843,-0.044321812689304,-0.006928205024451]],[[0.11491484194994,0.088794402778149,-0.049650762230158],[-0.12361597269773,-0.059598729014397,-0.07710163295269],[0.01662752777338,0.089360274374485,-0.14889499545097]],[[-0.086341373622417,0.032132610678673,0.017712146043777],[-0.079944171011448,0.0005598995485343,-0.080615177750587],[0.019907426089048,-0.11194407194853,-0.11455153673887]],[[0.013160895556211,-0.0013896834570915,-0.1485933214426],[-0.005923239979893,0.006658919621259,-0.13465046882629],[-0.13492152094841,0.074707008898258,-0.15492503345013]],[[-0.072784930467606,-0.19847469031811,-0.23281942307949],[0.023136630654335,-0.10043436288834,-0.094002239406109],[-0.13925091922283,-0.20092023909092,0.033253531903028]],[[0.032222077250481,-0.060191098600626,-0.062025126069784],[0.0044649210758507,-0.036973658949137,-0.034449260681868],[0.010082442313433,0.1047710031271,0.086923152208328]],[[0.071171395480633,0.037591073662043,0.17788501083851],[-0.012001152150333,0.007415063213557,0.035386398434639],[0.037775356322527,-0.062314175069332,0.0075310338288546]],[[-0.066542737185955,-0.28758645057678,0.014366975054145],[0.060467276722193,-0.049473021179438,-0.059192214161158],[-0.058975905179977,-0.047621909528971,-0.28241348266602]],[[0.038871522992849,-0.06673701107502,-0.033730234950781],[0.073015004396439,0.02999279089272,-0.046338174492121],[0.01730222441256,-0.039130419492722,0.10439223051071]],[[-0.040927611291409,0.024209192022681,-0.033920411020517],[-0.057086903601885,-0.049298416823149,0.022570576518774],[0.0047891288995743,0.074824422597885,0.068771421909332]],[[0.056860219687223,-0.044099133461714,0.018400840461254],[0.0087625561282039,0.035538140684366,0.10954430699348],[-0.015361439436674,0.010062952525914,-0.26445150375366]],[[-0.017776308581233,0.049615941941738,-0.075217492878437],[-0.089823208749294,0.04282059147954,0.10506692528725],[0.022277131676674,-0.038978073745966,0.07831584662199]],[[-0.057866953313351,0.13296960294247,0.01201803330332],[-0.11723379790783,-0.16425387561321,0.0017003798857331],[-0.012983874417841,0.099568828940392,0.042137194424868]],[[0.021822992712259,-0.10001102089882,-0.20079413056374],[-0.033088888972998,-0.021609757095575,-0.037298519164324],[0.037878561764956,-0.16546204686165,0.070527009665966]],[[0.050050996243954,0.15198294818401,0.060035608708858],[0.048064492642879,0.058790728449821,0.12178988754749],[0.10521672666073,0.11651834845543,0.0808986723423]],[[-0.030911086127162,0.075088411569595,0.0015964946942404],[-0.040558077394962,0.0022628998849541,0.024564368650317],[0.022292954847217,-0.029955031350255,-0.12703602015972]],[[-0.042195681482553,-0.063276804983616,0.050101183354855],[-0.0092242378741503,0.023150889202952,0.018036028370261],[-0.030052755028009,0.014024942182004,0.014221332967281]],[[0.15911187231541,-0.04391960054636,0.033025022596121],[0.099673539400101,-0.13259214162827,0.0057831662707031],[-0.03606366366148,0.19974271953106,-0.053474750369787]],[[0.027380470186472,-0.0086230710148811,-0.12472139298916],[-0.10823299735785,0.075980015099049,-0.034800548106432],[-0.064311683177948,-0.023206051439047,-0.019217424094677]],[[0.15802225470543,-0.13572655618191,-0.02014765329659],[0.04524402692914,0.032625272870064,0.023895688354969],[0.023042080923915,0.19890904426575,-0.0035148079041392]],[[-0.11027895659208,0.23547740280628,0.12857772409916],[-7.4822186434176e-05,0.031102906912565,0.045685663819313],[-0.04247810319066,-0.086286433041096,-0.010181235149503]],[[-0.06276723742485,-0.11571272462606,-0.081643886864185],[0.044676505029202,-0.050560414791107,-0.19323259592056],[0.014139193110168,0.039571851491928,0.03774693608284]],[[0.24191384017467,0.028869500383735,0.040931608527899],[0.015511451289058,0.17836207151413,0.0090215113013983],[0.0027039279229939,-0.14125517010689,0.077184170484543]],[[0.22035218775272,-0.2102365642786,0.27545621991158],[0.03649627417326,0.05678728595376,0.026277426630259],[-0.0076398230157793,0.01997890882194,-0.0040197223424911]],[[0.084235727787018,-0.009475770406425,-0.05852222815156],[0.010276575572789,0.032902739942074,-0.12205977737904],[0.014442399144173,-0.02261570468545,-0.045413102954626]],[[-0.13812811672688,0.011251166462898,-0.035318724811077],[-0.035782285034657,0.06214889138937,-0.01085842680186],[-0.070949032902718,-0.062169842422009,0.011251352727413]],[[0.0009555253200233,-0.22613944113255,0.2021596878767],[0.1712536662817,0.06383889913559,-0.059391472488642],[0.074729472398758,0.030728654935956,0.037609346210957]],[[0.024716874584556,-0.13058412075043,-0.023337127640843],[0.02811224013567,-0.029967688024044,-0.19765986502171],[0.031677063554525,0.049679942429066,-0.023103721439838]],[[-0.002391014713794,0.14103424549103,0.069086246192455],[-0.090053826570511,0.10595025867224,-0.065181352198124],[-0.016448896378279,0.010699423030019,-0.043013516813517]],[[0.12242325395346,0.075834140181541,0.093620926141739],[0.024043785408139,0.0011301067424938,0.063569411635399],[0.070435799658298,0.089691020548344,0.019325111061335]],[[-0.026454545557499,-0.0041417479515076,0.068580649793148],[-0.0059532523155212,0.006638762075454,-0.047365967184305],[-0.035269182175398,-0.028356168419123,-0.028898201882839]],[[0.10807559639215,-0.27944788336754,-0.024660313501954],[0.23911719024181,-0.097706869244576,-0.14320170879364],[0.028804315254092,-0.012742904014885,-0.11108377575874]],[[0.17289979755878,0.084127493202686,0.14778123795986],[-0.054255232214928,0.041134659200907,0.077705562114716],[0.06433729827404,0.061588935554028,0.08807235956192]],[[0.020149435847998,0.030199149623513,-0.015858625993133],[0.037618968635798,-0.021584279835224,-0.04049476608634],[-0.060334905982018,-0.061297092586756,0.026476375758648]],[[-0.18418516218662,-0.15179014205933,-0.1817946434021],[-0.051826365292072,-0.0047605601139367,-0.1215767338872],[-0.0023390091955662,-0.051999676972628,0.021013913676143]],[[-0.031104719266295,-0.11580647528172,0.054426964372396],[-0.090983122587204,-0.10393282771111,-0.094124920666218],[0.047525145113468,-0.046223726123571,-0.027598695829511]],[[0.0086473990231752,-0.058833368122578,-0.13621969521046],[-0.029991082847118,0.040532335639,0.004646965302527],[-0.012687399983406,-0.019254378974438,0.10410220175982]],[[-0.14638586342335,0.038411729037762,0.10913879424334],[-0.075059108436108,-0.036011945456266,0.18181665241718],[0.072951719164848,0.021372115239501,0.13459330797195]],[[-0.010920590721071,0.083884082734585,0.059440933167934],[0.039745133370161,0.079494349658489,0.0035202731378376],[0.047373320907354,0.094981417059898,0.054226879030466]],[[0.16043628752232,0.014397257007658,0.0035688260104507],[-0.048936031758785,0.069175660610199,-0.070546396076679],[-0.065214112401009,-0.027319947257638,-0.0047986465506256]],[[-0.044199392199516,0.20977628231049,0.14515151083469],[-0.029493972659111,-0.035434160381556,0.079921811819077],[-0.02794505469501,0.041517477482557,0.035476353019476]],[[-0.015061995014548,-0.029978530481458,0.053758393973112],[0.092913322150707,0.066888377070427,-0.038588866591454],[0.026790073141456,0.12051539123058,-0.0090862084180117]],[[-0.20372821390629,-0.081729561090469,0.0016303793527186],[-0.055504720658064,0.019045578315854,0.092370882630348],[-0.024780100211501,0.0075519592501223,0.13618205487728]],[[-0.086279205977917,0.14115917682648,0.11229279637337],[0.10996855050325,-0.064902156591415,0.039910327643156],[0.086762428283691,0.11533879488707,-0.081379726529121]],[[-0.18523573875427,0.05028573051095,-0.0051456871442497],[-0.041159715503454,-0.12967896461487,-0.050761386752129],[-0.06221879273653,-0.17340944707394,-0.03324144333601]],[[-0.028252495452762,0.046014353632927,0.028172556310892],[0.0037623627576977,0.06225373223424,-0.038682609796524],[0.09294743090868,0.012786109931767,0.237110003829]],[[-0.16677752137184,-0.066206827759743,-0.032242812216282],[-0.047190248966217,-0.016608092933893,0.057735525071621],[-0.061177846044302,-0.082313351333141,0.060129154473543]],[[0.055000983178616,0.1133805513382,0.028950393199921],[0.01562630571425,0.21615171432495,0.010600159876049],[-0.012738773599267,-0.04273484274745,-0.0065765301696956]],[[-0.039026543498039,-0.054815299808979,0.13556033372879],[0.12032077461481,0.045628536492586,0.013276346959174],[0.068744510412216,0.060609150677919,0.26531934738159]],[[0.10972983390093,0.045486744493246,-0.073228135704994],[-0.088361188769341,0.11996319890022,0.0098285768181086],[0.028382511809468,-0.048617534339428,-0.11820747703314]],[[0.07570044696331,0.0005576871917583,0.038572818040848],[0.06670293211937,0.08583378046751,-0.06858915835619],[-0.020913438871503,0.11595224589109,0.016427835449576]],[[-0.18362855911255,0.11441943794489,0.048534397035837],[-0.061531905084848,-0.015056741423905,0.036346692591906],[0.008989698253572,-0.039311073720455,-0.019387109205127]],[[-0.067237883806229,0.016383742913604,0.012241499498487],[0.0098175564780831,-0.0039384067058563,0.051534410566092],[0.1590169519186,0.11347699910402,-0.037311602383852]],[[-0.058805406093597,0.036257211118937,0.068592064082623],[-0.040912855416536,-0.0029603664297611,0.21260789036751],[0.07052405923605,-0.034259684383869,0.0012012695660815]],[[0.11532229930162,-0.058077678084373,0.022460946813226],[-0.067325830459595,-0.084601312875748,0.0061909728683531],[-0.0080929044634104,0.047718808054924,0.054680317640305]],[[0.029015397652984,-0.0012550567043945,0.036059439182281],[-0.031462606042624,0.026284167543054,0.14814998209476],[0.056825868785381,0.054593607783318,0.11855816841125]],[[0.2502276301384,0.12095234543085,-0.10996229946613],[-0.10099045932293,0.037026926875114,-0.14134798943996],[-0.072498343884945,-0.04153648018837,-0.068890973925591]],[[0.10264538228512,0.17082877457142,0.021313168108463],[0.041372753679752,0.014332069084048,0.10160572081804],[0.067223578691483,-0.042946580797434,-0.049180638045073]],[[0.085204869508743,-0.097570396959782,-0.15441925823689],[0.060548577457666,-0.067032232880592,-0.039628367871046],[0.0046676523052156,0.040172778069973,-0.11364735662937]],[[0.054738432168961,0.040959838777781,-0.06862049549818],[-0.079455934464931,-0.1390171200037,-0.0096147442236543],[-0.10176862776279,-0.15300381183624,0.080346114933491]],[[0.046608414500952,0.046707212924957,0.038917124271393],[0.046651780605316,-0.028646234422922,0.0061046215705574],[0.0210389085114,-0.0816460698843,0.021277526393533]],[[-0.0030797210056335,0.021943252533674,-0.11341258138418],[-0.025784166529775,0.0066013159230351,0.055822461843491],[0.12201600521803,-0.028405727818608,0.083094656467438]],[[-0.28408101201057,-0.018240792676806,-0.020059848204255],[-0.06693672388792,-0.016813792288303,0.028456926345825],[-0.038164392113686,-0.056750193238258,-0.24494861066341]],[[-0.010135435499251,0.012692369520664,0.018654456362128],[0.02430478297174,-0.034554779529572,-0.0094286510720849],[0.078057073056698,-0.063266918063164,0.05144964158535]],[[0.13224640488625,0.1495423167944,0.14026400446892],[-0.039538487792015,0.051215119659901,0.012761539779603],[0.20887157320976,-0.0075937574729323,0.12417230755091]],[[-0.039576530456543,0.011324138380587,0.01629226282239],[-0.011023130267859,0.029103253036737,0.044297702610493],[-0.043684534728527,0.0006380231352523,0.047133263200521]],[[0.024320686236024,-0.074088558554649,-0.042125392705202],[-0.040047146379948,0.13976728916168,0.056320756673813],[0.13559402525425,-0.2115990370512,0.12001766264439]],[[0.052709054201841,0.056009989231825,0.039361014962196],[0.041436418890953,-0.028850801289082,-0.016642861068249],[0.073160171508789,-0.079262934625149,-0.12842704355717]],[[0.10056486725807,0.066557534039021,0.057841833680868],[0.14333130419254,0.043764676898718,0.13116379082203],[0.04771014302969,0.11398282647133,0.049298912286758]],[[0.074787989258766,-0.11465898156166,0.049780420958996],[0.033833529800177,-0.048251137137413,-0.00010405026841909],[0.00362016283907,-0.0074285040609539,0.13391208648682]],[[-0.028585439547896,0.00544557813555,0.09980109333992],[-0.074232220649719,0.075488522648811,-0.030613739043474],[-0.053954727947712,0.1102294921875,0.057780437171459]],[[-0.097588658332825,-0.14643549919128,-0.10121582448483],[0.024578496813774,0.0028332548681647,-0.20877157151699],[-0.057162143290043,-0.077546186745167,-0.041749451309443]],[[-0.039328828454018,0.039122853428125,0.030228482559323],[-0.044403366744518,0.019366359338164,0.058131936937571],[-0.13206036388874,-0.011015147902071,0.050302337855101]],[[0.0092499740421772,-0.066377937793732,-0.094226494431496],[-0.045739434659481,0.052385434508324,0.034849368035793],[0.025519367307425,0.043031614273787,0.17135804891586]],[[0.049923494458199,0.053530037403107,-0.097531370818615],[-0.042115487158298,-0.036391951143742,0.031238507479429],[-0.13773941993713,-0.05695366114378,-0.019875576719642]],[[0.17139700055122,0.098024487495422,0.014664814807475],[0.029289627447724,0.031151741743088,-0.086172960698605],[0.049746744334698,0.025234032422304,0.015516092069447]],[[0.089076280593872,0.043179843574762,-0.1383358836174],[0.050061270594597,-0.0014057323569432,-0.0080289728939533],[0.021530322730541,0.017141330987215,-0.16535674035549]],[[-0.046918846666813,-0.00084774586139247,0.018610097467899],[-0.030507383868098,-0.063006557524204,0.0032361096236855],[-0.094888605177402,0.01393658015877,-0.036109894514084]],[[-0.079474486410618,-0.20334070920944,-0.001496457029134],[-0.12523487210274,-0.086230628192425,0.028486939147115],[-0.115498714149,-0.018914366140962,0.063937000930309]],[[-0.043631125241518,0.054856840521097,0.12077929079533],[0.028531614691019,-0.055922869592905,0.078017003834248],[-0.070039242506027,-0.068914830684662,-0.11884563416243]],[[-0.22300805151463,-0.16241560876369,-0.061800979077816],[-0.076723016798496,0.078905202448368,-0.0057879257947206],[-0.049002449959517,0.0027467769104987,-0.029288528487086]],[[-0.11095267534256,-0.097483359277248,0.0501728951931],[-0.035260863602161,-0.12498644739389,0.047546464949846],[0.010381638072431,-0.09255638718605,-0.11089414358139]],[[0.03149776533246,0.17810529470444,0.11009936779737],[-0.030669424682856,0.12240055948496,-0.0089851804077625],[0.11308188736439,0.066325359046459,-0.058498945087194]],[[0.1310720294714,-0.082097299396992,-0.05104885995388],[-0.08852843940258,-0.14211356639862,-0.0025423804763705],[0.106440320611,0.068399846553802,0.050789147615433]],[[-0.0089847454801202,-0.069773480296135,-0.027265375480056],[-0.12105191498995,0.049024827778339,0.17940999567509],[-0.053520806133747,0.19565737247467,0.18608552217484]],[[0.0471366122365,0.09317484498024,0.024150509387255],[-0.080268457531929,0.080112606287003,-0.010008173063397],[0.020494556054473,0.047017849981785,-0.021019419655204]],[[0.015856279060245,-0.035735629498959,0.062446404248476],[-0.10070947557688,-0.052088722586632,0.12515848875046],[0.086895234882832,-0.034551247954369,0.029239598661661]],[[-0.045228112488985,0.010303778573871,-0.001773739582859],[-0.041744492948055,-0.061549577862024,-0.062001526355743],[-0.097839616239071,0.015906918793917,-0.028789229691029]],[[0.075429268181324,-0.040336817502975,0.15370340645313],[0.048959296196699,-0.068778440356255,0.026954017579556],[-0.025057015940547,0.055109404027462,0.11179134994745]],[[0.019637105986476,-0.084040373563766,-0.082467786967754],[-0.010094398632646,0.070555083453655,-0.096899665892124],[-0.040833801031113,0.026386097073555,0.065353065729141]],[[-0.026481453329325,0.0022329133935273,-0.23821769654751],[0.021542053669691,-0.07948199659586,-0.07694599032402],[-0.024866720661521,-0.078388571739197,-0.012871799059212]],[[0.17781047523022,0.082032576203346,-0.09254539757967],[0.053442109376192,0.034707881510258,-0.077067501842976],[0.0065408139489591,-0.097845412790775,0.14673800766468]],[[0.036923114210367,-0.24279724061489,-0.073355086147785],[0.070753112435341,-0.2276469618082,-0.14424605667591],[0.11792727559805,-0.13698019087315,0.027771474793553]],[[0.057167526334524,-0.0030738820787519,0.052094303071499],[0.0056950217112899,0.0038782190531492,0.080951251089573],[0.076309137046337,-0.045178312808275,0.031150110065937]],[[0.014742218889296,-0.11067560315132,-0.15617111325264],[-0.014975933358073,0.0731086358428,-0.057913135737181],[0.092138931155205,-0.1533167809248,-0.035819746553898]],[[-0.047123461961746,-0.18357886373997,-0.045266814529896],[-0.11451493948698,0.024183820933104,-0.1449316740036],[-0.037184823304415,0.037494078278542,0.024172781035304]],[[0.010389591567218,0.072854734957218,0.16312426328659],[0.021536635234952,0.025731706991792,0.025638367980719],[-0.035454135388136,0.10702144354582,0.083464667201042]],[[-0.0034302428830415,0.036231968551874,-0.058256220072508],[-0.036819141358137,0.037245471030474,-0.033366944640875],[0.026033982634544,-0.025599379092455,-0.011323670856655]],[[0.1327600479126,0.0093385335057974,-0.077755033969879],[-0.028333120048046,-0.038487154990435,0.055933635681868],[0.021393690258265,-0.11412008106709,0.15190996229649]],[[0.1205517500639,0.14505738019943,0.0084627857431769],[0.031415294855833,-0.047981280833483,-0.048540879040956],[-0.054258052259684,0.052058488130569,0.044098515063524]],[[-0.016059227287769,0.014922038652003,-0.017463888972998],[-0.099904887378216,-0.072183839976788,-0.014615435153246],[0.018767600879073,0.045176785439253,0.024460464715958]],[[-0.11732931435108,0.023865902796388,-0.033944495022297],[0.032540813088417,-0.097314678132534,-0.0072658332064748],[-0.018901808187366,0.10772748291492,-0.20981578528881]],[[-0.020073493942618,0.11102476716042,-0.097893431782722],[0.063707418739796,0.074000030755997,-0.04131443053484],[0.05603726580739,0.040427960455418,-0.16405121982098]],[[-0.040705751627684,-0.12611083686352,0.090133585035801],[-0.0079267015680671,-0.033517807722092,-0.075577847659588],[0.023589588701725,0.029777335003018,-0.042299773544073]],[[0.097042545676231,-0.066234290599823,-0.032374210655689],[-0.013497001491487,0.09146886318922,-0.096472203731537],[-0.025777140632272,0.0030086734332144,-0.083415284752846]],[[0.024863436818123,-0.20307107269764,-0.074155606329441],[-0.035465635359287,-0.081213176250458,-0.13390293717384],[0.15722642838955,-0.15978242456913,0.022239031270146]],[[-0.1049570441246,-0.0032929177395999,0.061509978026152],[0.0012136574368924,-0.090378940105438,0.03917395696044],[0.029538417235017,-0.030715066939592,-0.026408368721604]],[[0.0060834819450974,0.0017151781357825,0.021329309791327],[-0.034470308572054,-0.079408250749111,-0.11247865855694],[-0.043099448084831,0.028563246130943,0.086097829043865]],[[0.069759093225002,-0.032152228057384,-0.0077230990864336],[0.019276482984424,-0.28881311416626,-0.098566889762878],[0.057590525597334,-0.078239776194096,-0.061004091054201]],[[-0.10119899362326,0.1090974137187,0.14656968414783],[-0.031604401767254,-0.051768954843283,0.0030407023150474],[0.058146275579929,0.16155113279819,0.10527650266886]],[[0.024574154987931,-0.05100180208683,0.021527569741011],[0.050739038735628,-0.082005433738232,-0.028749577701092],[-0.022292273119092,0.10786711424589,-0.10934788733721]],[[-0.089748755097389,-0.027397144585848,-0.01517216488719],[0.061980582773685,-0.062360569834709,-0.10406271368265],[-0.068076692521572,0.16349741816521,-0.042521949857473]],[[0.12532587349415,0.057473540306091,0.060118217021227],[0.092674620449543,0.11310464888811,-0.034224171191454],[0.0068802954629064,0.019085362553596,0.078242667019367]],[[0.18505127727985,0.19458693265915,0.093925520777702],[-0.066227145493031,0.13740235567093,0.044459566473961],[-0.099594108760357,-0.16101458668709,0.093526557087898]],[[-0.17707712948322,-0.054331738501787,-0.10042726248503],[0.061216119676828,0.018001761287451,-0.031653773039579],[0.035743977874517,-0.10857331752777,-0.082142747938633]]],[[[-0.13692347705364,-0.075040839612484,0.022185478359461],[0.021830597892404,0.012875746004283,0.022367242723703],[0.0049561220221221,0.088337667286396,0.036041270941496]],[[0.066323086619377,-0.020971922203898,-0.025005478411913],[-0.045323956757784,0.031766600906849,0.028223052620888],[-0.01599876396358,-0.088545419275761,0.024740308523178]],[[-0.024266637861729,0.03966261819005,-0.022474093362689],[0.039507169276476,0.048262968659401,0.0068991351872683],[0.048094939440489,-0.035555247217417,0.0071690939366817]],[[0.0016536979237571,0.071453772485256,-0.1140917763114],[-0.011868728324771,0.078358165919781,-0.027170982211828],[-0.0029601058922708,-0.030670693144202,-0.053361531347036]],[[-0.049882225692272,-0.061831783503294,-0.011934801004827],[-0.050601899623871,0.04951448366046,-0.0031088241375983],[0.0054553174413741,-0.059240128844976,-0.0019533517770469]],[[-0.036082364618778,0.0015823873691261,-0.060567431151867],[-0.014059322886169,0.018412228673697,-0.12090212851763],[-0.037352826446295,-0.0091597875580192,0.025408901274204]],[[-0.0017985353479162,-0.0087112439796329,-0.006599944550544],[-0.00034723104909062,-0.023934051394463,0.048051476478577],[-0.05876998603344,0.064716316759586,-0.046745643019676]],[[-0.013384074904025,-0.04968761280179,0.0055862637236714],[-0.043618638068438,0.07685287296772,-0.0036540310829878],[-0.0022640530951321,-0.020302455872297,0.0076208966784179]],[[-0.036297712475061,-0.023242730647326,0.068688198924065],[0.053561370819807,0.079598270356655,-0.017906369641423],[-0.027653235942125,0.019043799489737,0.00047193624777719]],[[0.028694586828351,0.025759467855096,-0.0075488812290132],[0.046626608818769,-0.021260572597384,-0.05448842048645],[-0.014471668750048,0.00027459205011837,0.036205481737852]],[[-0.0092121316120028,-0.0064623225480318,-0.023612761870027],[-0.042925797402859,0.010178974829614,0.011414264328778],[0.037020858377218,-0.055202804505825,-0.014096333645284]],[[-0.0068823234178126,0.0096498765051365,-0.031812466681004],[0.028825784102082,-0.040091294795275,-0.032559737563133],[0.036819871515036,-0.048463687300682,0.017682425677776]],[[-0.021659532561898,0.0073835584335029,-0.011286909691989],[0.0352803170681,-0.063581690192223,-0.08926635235548],[-0.024435168132186,0.10738947242498,0.070826202630997]],[[0.02403305657208,0.028268707916141,0.0075619495473802],[-0.037678923457861,-0.016761591657996,-0.013634825125337],[0.020426955074072,-0.041588626801968,0.025191219523549]],[[0.015072115696967,-0.00071714841760695,-0.072777830064297],[0.041181102395058,-0.031543169170618,-0.030791012570262],[-0.0085384799167514,-0.017817810177803,-0.066255308687687]],[[-0.025751570239663,0.011167869903147,0.0081256357952952],[-0.040735874325037,0.017448229715228,0.069999776780605],[0.0037737893871963,-0.07197455316782,-0.034661814570427]],[[-0.0062493467703462,-0.045593623071909,0.019464673474431],[0.069391041994095,0.008980643004179,0.012191104702652],[-0.025030296295881,0.0041221724823117,-0.012058121152222]],[[0.031421612948179,0.018785141408443,0.0048074433580041],[0.081326834857464,0.00011383698438294,0.0022441549226642],[-0.0049654343165457,0.0063238474540412,-0.0046455767005682]],[[-0.056639820337296,0.035791698843241,-0.055051028728485],[-0.052170947194099,0.045343805104494,0.00075798307079822],[0.015686390921474,-0.060382913798094,0.016737578436732]],[[0.11295503377914,-0.057227689772844,-0.087482996284962],[0.091060362756252,-0.04601900652051,-0.068998701870441],[0.057446282356977,0.053928665816784,-0.046983525156975]],[[-0.0011527184396982,0.0084125222638249,0.0092701986432076],[-0.068310759961605,0.044350184500217,0.093190617859364],[0.023207603022456,0.039272919297218,0.017359226942062]],[[0.067584052681923,0.028089126572013,-0.021028362214565],[-0.094865046441555,-0.029861131682992,-0.019916281104088],[-0.069187231361866,-0.027534587308764,-0.0031041754409671]],[[-0.04613771289587,0.032745279371738,0.037814229726791],[0.030615827068686,-0.019011804834008,0.077582940459251],[-0.049991097301245,0.0015591359697282,-0.0044309003278613]],[[-0.02355894446373,-0.0047574732452631,-0.02042243257165],[-0.016633525490761,0.073870584368706,0.013589705340564],[-0.11131899803877,-0.02595529332757,-0.022723430767655]],[[0.06299951672554,-0.048287164419889,-0.0011129447957501],[-0.03208227828145,0.073426201939583,0.040054313838482],[-0.022990928962827,-0.067080922424793,0.059698976576328]],[[-0.085823155939579,-0.0069796810857952,0.013578329235315],[-0.033746264874935,-0.0594821870327,0.03585834056139],[-0.065239384770393,-0.042226679623127,-0.017650289461017]],[[-0.057920824736357,-0.025213107466698,-0.042084440588951],[0.019470343366265,0.010786036960781,0.022156255319715],[-0.034092579036951,0.050819844007492,-0.0059659876860678]],[[-0.084773004055023,0.082792930305004,-0.028605211526155],[-0.048531241714954,-0.057797431945801,0.017180733382702],[0.051969766616821,-0.041225139051676,-0.027029862627387]],[[0.0044580330140889,0.031589161604643,0.0040090708062053],[-0.092309795320034,-0.040104802697897,0.062987834215164],[0.0003746040747501,-0.0039196279831231,-0.02043248899281]],[[0.028148466721177,-0.028713656589389,0.01178399194032],[-0.0028214179910719,-0.045768205076456,0.03490623831749],[-0.037952657788992,-0.02330618724227,0.05193105712533]],[[0.026331773027778,-0.03183064237237,0.040555149316788],[0.019151367247105,0.0040732519701123,-0.05356403440237],[0.0038206393364817,-0.062669642269611,0.068095937371254]],[[-0.075265936553478,0.010503991506994,-0.00095395836979151],[0.03403503075242,0.0070322253741324,-0.055011589080095],[0.059878781437874,0.033056929707527,-0.030906790867448]],[[-0.077129445970058,-0.05110665038228,-0.051450632512569],[-0.036896161735058,0.024097505956888,0.0025837714783847],[-0.0042022839188576,0.042865235358477,0.075727969408035]],[[0.003526444779709,0.0002349534915993,-0.0058710486628115],[-0.039050802588463,-0.0093270260840654,-0.0022127879783511],[0.011984997428954,0.031184243038297,-0.01093490421772]],[[0.045163378119469,-0.029660224914551,-0.060093060135841],[0.0088646439835429,-0.040789235383272,-0.052925992757082],[-0.11796965450048,-0.10202465206385,0.081524580717087]],[[-0.029587475582957,0.034757647663355,-0.08351144939661],[-0.094923309981823,0.078159973025322,-0.032305724918842],[-0.11771143972874,0.092617362737656,0.020933488383889]],[[-0.022603824734688,0.048756923526525,-0.041881572455168],[-0.028072929009795,-0.005216212477535,0.020312761887908],[-0.077414400875568,0.048224899917841,-0.041508864611387]],[[-0.055540692061186,-0.031471349298954,-0.037265706807375],[-0.04108639061451,0.0032098356168717,-0.038989920169115],[0.017100669443607,0.044853769242764,0.046169139444828]],[[-0.02947516925633,0.038570556789637,-0.053350571542978],[-0.072064518928528,0.044561624526978,0.001316522131674],[-0.025461118668318,0.029118783771992,-0.035988867282867]],[[-0.0027418828103691,0.011319564655423,0.00055255240295082],[0.0030124797485769,-0.05114534497261,0.0024827357847244],[-0.00086487527005374,0.047289453446865,-0.011837747879326]],[[0.037278350442648,-0.0090829888358712,0.018342262133956],[0.010874395258725,-0.055449206382036,-0.068166561424732],[-0.024688892066479,0.017672749236226,0.010671238414943]],[[0.018082400783896,-0.055550631135702,0.067581154406071],[0.016671365126967,-0.0036952625960112,0.026492178440094],[0.0013280444545671,-0.055213343352079,0.023712445050478]],[[-0.022998856380582,-0.040437527000904,-0.030186919495463],[-0.052277028560638,0.025613935664296,0.014928180724382],[0.03641652315855,0.029325487092137,0.039028067141771]],[[0.024535186588764,0.044799890369177,-0.026477618142962],[0.080428093671799,0.07893692702055,-0.032811161130667],[0.065525494515896,0.033407431095839,0.091751277446747]],[[-0.079047165811062,0.038664720952511,0.00040641007944942],[-0.086987845599651,0.046861488372087,-0.02949876897037],[-0.02707052975893,0.036788817495108,0.035673506557941]],[[0.029188022017479,-0.047656275331974,-0.047952763736248],[-0.037193607538939,-0.0015034435782582,-0.0011133018415421],[-0.016144961118698,-0.0091328471899033,0.031897008419037]],[[0.004968099296093,0.0093917604535818,0.010730003006756],[0.016234766691923,-0.032082796096802,-0.011218019761145],[-0.037636116147041,0.012748829089105,-0.057567194104195]],[[0.02675555460155,-0.084324657917023,0.0026033057365566],[-0.0094804260879755,0.074800878763199,-0.020261563360691],[0.047993753105402,0.0086232926696539,0.073376804590225]],[[-0.03704309463501,-0.00082353223115206,0.014798269607127],[-0.017839759588242,0.044581722468138,-0.044750038534403],[-0.0062219831161201,-0.021746769547462,-0.021227983757854]],[[-0.022513775154948,0.054673098027706,-0.052015829831362],[-0.012248051352799,0.10345289856195,-0.081906147301197],[-0.091816887259483,0.0040712994523346,-0.007836333476007]],[[-0.065707005560398,0.034683141857386,-0.011644311249256],[-0.030190251767635,-0.0040214550681412,-0.010455088689923],[0.021745795384049,0.023050365969539,0.028691316023469]],[[0.016891796141863,-0.011990760453045,0.032952580600977],[-0.010803830809891,0.042226232588291,-0.0078532295301557],[-0.027538226917386,-0.024765333160758,0.031590711325407]],[[-0.017516925930977,-0.021103462204337,0.0084087932482362],[0.032283443957567,-0.047659650444984,0.10198253393173],[-0.055825561285019,-0.0011853952892125,0.029730660840869]],[[-0.028164315968752,0.0020732136908919,-0.091506935656071],[0.038461875170469,0.050589270889759,-0.016283966600895],[0.028286077082157,-0.016632625833154,0.058464247733355]],[[-0.039285354316235,-0.017410472035408,0.032543756067753],[-0.0076057128608227,0.0319654494524,0.04239946603775],[-0.049722261726856,-0.037529695779085,-0.012055732309818]],[[-0.095251955091953,-0.0086321234703064,0.012696570716798],[0.0018432781798765,0.064976669847965,-0.0050272718071938],[0.081039816141129,0.037734340876341,-0.043962612748146]],[[0.0022181798703969,0.06304494291544,0.032666213810444],[0.0049536325968802,-0.031460493803024,-0.029396707192063],[0.016763657331467,-0.044066578149796,-0.02665476873517]],[[-0.041623882949352,-0.014471191912889,-0.012850634753704],[0.0018650725251064,0.037458036094904,-0.0062340414151549],[0.06256652623415,-0.028002610430121,0.016721531748772]],[[0.048881981521845,0.015373394824564,0.019521491602063],[-0.044920369982719,-0.047485116869211,-0.030592616647482],[0.036202576011419,-0.048096925020218,-0.073147319257259]],[[0.010353543795645,0.032754633575678,0.058021582663059],[-0.0067594274878502,-0.067129760980606,-0.0662726983428],[-0.071735456585884,0.05644067376852,0.044057667255402]],[[-0.017376888543367,-0.035416103899479,0.037518113851547],[-0.065118469297886,0.060954980552197,0.064518287777901],[-0.16003939509392,-0.030774073675275,0.074069045484066]],[[0.028870599344373,-0.059763506054878,0.0036324174143374],[0.0013770480873063,0.025633851066232,-0.060242366045713],[-0.0096610505133867,0.012665587477386,-0.10156823694706]],[[-0.030408073216677,-0.014349682256579,-0.034933399409056],[-0.0258275475353,0.063811101019382,-0.011199165135622],[-0.01263643335551,0.00042156950803474,0.032421488314867]],[[-0.018082987517118,0.0013027911772951,-0.04833760112524],[-0.0265296921134,-0.006067203823477,0.025508372113109],[-0.030291594564915,0.012265287339687,-0.064708083868027]],[[0.0090384399518371,-0.027904340997338,-0.0035666795447469],[-0.017671728506684,-0.0082506351172924,-0.026871681213379],[-0.042826756834984,0.025693422183394,0.05868449062109]],[[0.041831817477942,0.025477906689048,0.032806552946568],[-0.08381076157093,-0.043092958629131,-0.015044373460114],[0.03698069229722,-0.049441926181316,0.025775531306863]],[[-0.031488578766584,0.0082499608397484,-0.028497660532594],[0.023559145629406,-0.037452060729265,0.050491143018007],[-0.0081430776044726,-0.0091046132147312,0.082267433404922]],[[0.033034585416317,-0.02804496884346,-0.038868669420481],[0.046523962169886,-0.01554189901799,0.022459598258138],[0.036719374358654,-0.053778294473886,-0.00034033716656268]],[[0.010835092514753,-0.0092276781797409,-0.020534746348858],[-0.0022129570133984,0.0052267010323703,0.035236489027739],[-0.029034812003374,0.03405999392271,0.019141795113683]],[[-0.023473635315895,-0.05491204559803,0.0068354387767613],[0.071053229272366,0.033230323344469,0.00038296193815768],[-0.0017290855757892,0.044908814132214,0.01259209215641]],[[0.036784790456295,-0.033967383205891,-0.011898718774319],[0.036904983222485,0.044315323233604,-0.013464613817632],[-0.044629260897636,-0.0061761043034494,0.013802141882479]],[[-0.0082509014755487,0.043739676475525,0.044381275773048],[-0.026172237470746,-0.074605204164982,0.0083384672179818],[-0.0024615540169179,0.054526895284653,-0.027236130088568]],[[-0.062840014696121,0.081434667110443,0.022183490917087],[-0.10423586517572,-0.0025496820453554,-0.014984695240855],[-0.073166392743587,0.15447527170181,0.038281716406345]],[[-0.067612074315548,0.092979356646538,-0.019339768216014],[-0.052001148462296,0.053679276257753,0.015815325081348],[0.011012186296284,-0.024756787344813,0.023455386981368]],[[-0.034119762480259,-0.093743689358234,-0.0017987012397498],[-0.049602992832661,0.08726716786623,-0.089303888380527],[-0.061907865107059,0.063027940690517,0.059886656701565]],[[-0.027461597695947,0.007141575217247,-0.029671862721443],[-0.0073074554093182,0.048915378749371,0.028400840237737],[0.026882393285632,0.02402519248426,-0.0095766894519329]],[[0.04985050112009,-0.025605073198676,0.0095146484673023],[0.010949148796499,-0.021583160385489,0.020862961187959],[0.0041855438612401,0.0030360631644726,0.040222592651844]],[[-0.023682916536927,0.11336047947407,0.033799175173044],[0.061578340828419,0.031586684286594,-0.052756439894438],[0.0095368213951588,-0.090418204665184,-0.13712754845619]],[[-0.0073917172849178,0.012001750990748,0.057766284793615],[-0.026392340660095,0.013209740631282,0.010531879030168],[-0.017815025523305,0.0075674573890865,-0.015559151768684]],[[0.017986193299294,-0.099428951740265,0.013393236324191],[0.053212229162455,-0.015034884214401,-0.030369414016604],[-0.024734662845731,0.058914709836245,0.0087070679292083]],[[0.078884042799473,0.040566403418779,0.0016522969817743],[0.016290538012981,0.0086754830554128,-0.068688966333866],[-0.03175587952137,0.047366909682751,-0.040539477020502]],[[-0.0096563147380948,-0.021940080448985,-0.0051268539391458],[-0.037814997136593,-0.002139538526535,0.020683052018285],[-0.051168717443943,-0.038502860814333,0.0075498023070395]],[[-0.03993658348918,0.026013934984803,0.069213211536407],[0.037936024367809,-0.016324087977409,0.020092975348234],[0.019950749352574,-0.0059983679093421,-0.031307708472013]],[[-0.0011476792860776,-0.0015192971331999,0.037597823888063],[0.0026972014456987,0.0071121379733086,-0.045332841575146],[0.037844683974981,-0.03838337957859,-0.0066249440424144]],[[0.048129241913557,0.046546164900064,0.0031507073435932],[-0.060784235596657,0.041225273162127,-0.080794706940651],[-0.0081818960607052,-0.076682850718498,-0.0010614052880555]],[[-0.0010539060458541,0.039566293358803,-0.011931815184653],[0.065170302987099,0.0018138262676075,-0.10060356557369],[0.063706927001476,0.040158558636904,-0.046862475574017]],[[-0.015903731808066,0.03414399549365,0.0045845191925764],[-0.0063921664841473,-0.015969410538673,0.010226928628981],[-0.021414164453745,0.040622841566801,-0.035136766731739]],[[-0.042327094823122,0.031004939228296,0.03021970205009],[-0.022958701476455,0.014353443868458,-0.029191602021456],[0.044840134680271,0.0085267731919885,-0.0036998183932155]],[[-0.028098272159696,0.024957360699773,0.040184784680605],[0.0064409296028316,-0.071340695023537,-0.018193271011114],[0.048705354332924,-0.029069365933537,0.079995714128017]],[[-0.0053158164955676,0.042352307587862,-0.027170043438673],[-0.0013942285440862,0.058363076299429,-0.011507479473948],[-0.011875249445438,0.055965173989534,-0.033727258443832]],[[0.021912669762969,0.019411394372582,0.03581403195858],[0.0062634074129164,-0.01680900529027,-0.066893726587296],[-0.080007694661617,0.0031637889333069,0.044347066432238]],[[0.031528353691101,-0.050106335431337,0.0096198143437505],[0.0006045147893019,0.0035279630683362,-0.0044203228317201],[-0.07006036490202,0.0050059086643159,0.010792121291161]],[[-0.061870660632849,-0.040043417364359,-0.011401180177927],[0.0010130476439372,-0.047120157629251,-3.7661367969122e-05],[-0.07080714404583,0.022104626521468,0.046254847198725]],[[0.017868686467409,0.027912262827158,-0.012805973179638],[-0.045838970690966,0.02261009067297,-0.039842687547207],[-0.0023786309175193,-0.0020002259407192,0.044406693428755]],[[0.031346134841442,-0.0025733108632267,-0.088103868067265],[0.077903889119625,-0.12389219552279,-0.058673582971096],[-0.028714869171381,-0.074998140335083,-0.071530438959599]],[[0.018564004451036,0.026911912485957,-0.0012960599269718],[-0.042086638510227,-0.012656513601542,-0.017084324732423],[-0.031414687633514,0.00020729517564178,-0.03448898717761]],[[0.07002679258585,-0.021613910794258,-0.0063998084515333],[0.023099543526769,-0.038858227431774,-0.0026858286000788],[-0.051550999283791,-0.040283028036356,0.026430295780301]],[[-0.043322905898094,-0.046204328536987,-0.015707209706306],[0.029705485329032,-0.020666671916842,-0.0074702403508127],[0.053365178406239,-0.029194159433246,0.02666237950325]],[[-0.013264704495668,0.065215811133385,0.037041127681732],[0.0064437026157975,-0.046810545027256,-0.049247734248638],[0.0018336462089792,-0.0070708841085434,-0.00019251428602729]],[[-0.028430068865418,0.035532739013433,-0.031813837587833],[-0.034828033298254,-0.021699707955122,0.053092688322067],[-0.031071275472641,-0.020887929946184,-0.0085660126060247]],[[0.017340172082186,0.012021765112877,0.030057730153203],[-0.015366397798061,-0.0087484177201986,-0.018549386411905],[0.078252829611301,0.028000393882394,-0.0025980020873249]],[[-0.058842569589615,0.046112231910229,0.038874316960573],[-0.038316942751408,-0.020128520205617,0.040917228907347],[-0.04541327431798,-0.019440336152911,0.015295039862394]],[[0.049818988889456,-0.032714147120714,0.0026825901586562],[0.066368706524372,-0.02850659750402,0.0053709424100816],[-0.078392378985882,-0.039367388933897,0.023995362222195]],[[-0.062285609543324,-0.082243166863918,-0.0079490067437291],[-0.0030497328843921,0.027938270941377,-0.065902218222618],[-0.024479875341058,-0.056028988212347,0.062096834182739]],[[-0.055202446877956,-0.074148736894131,0.0039669214747846],[-0.037018984556198,-0.020486196503043,0.021310061216354],[0.028665140271187,0.042641393840313,0.097094796597958]],[[-0.013468274846673,0.034132461994886,-0.065312579274178],[-0.0077410927042365,0.0063043190166354,0.064300619065762],[0.030078047886491,-0.057291306555271,0.01795475371182]],[[0.0049509857781231,-0.019533196464181,-0.015995742753148],[-0.054399583488703,0.03796298801899,-0.045188769698143],[0.0088121006265283,0.057742562144995,-0.019550697878003]],[[-0.030866341665387,-0.0079877898097038,-0.06818825751543],[0.037975873798132,0.0015849398914725,0.054475761950016],[0.0099209817126393,0.00079646951053292,-0.037969395518303]],[[-0.017653116956353,-0.016929870471358,-0.042660754173994],[-0.036272462457418,0.06225823611021,-0.0082808844745159],[0.016391972079873,0.00039305764948949,0.023913227021694]],[[0.0048840418457985,-0.013032373972237,-0.0091125825420022],[-0.012064749374986,-0.030891893431544,0.060364812612534],[0.017640141770244,-0.064285986125469,0.088390775024891]],[[-0.042687147855759,-0.016322825103998,-0.049405384808779],[-0.065656065940857,-0.09099280834198,-0.0132538061589],[-0.12512998282909,-0.054129332304001,-0.0339744836092]],[[-0.038003515452147,-0.017822563648224,-0.053311381489038],[-0.042973071336746,0.0089118564501405,0.0039549241773784],[0.0026580283883959,0.014442869462073,0.0067933215759695]],[[-0.041247561573982,-0.0063778185285628,0.0398093983531],[-0.0055337441153824,-0.041562154889107,0.017153199762106],[0.090799264609814,-0.042841468006372,0.044874515384436]],[[-0.028301738202572,0.062360372394323,0.013940223492682],[-0.05685056746006,0.032936241477728,0.014516576193273],[-0.0026625702157617,-0.0060041230171919,-0.013681466691196]],[[-0.041196566075087,-0.067157611250877,-0.024393877014518],[0.012181746773422,0.051818784326315,0.024838507175446],[0.015519665554166,0.0021755350753665,-0.038331493735313]],[[-0.039272356778383,0.020190889015794,-0.031179096549749],[-0.0056427554227412,0.05205399915576,-0.047194179147482],[0.046870943158865,-0.0049813436344266,0.050242349505424]],[[0.0030909234192222,0.041902016848326,-0.058237720280886],[-0.036099161952734,0.043095290660858,-0.073847897350788],[0.052035491913557,0.096212074160576,-0.095022886991501]],[[0.068242266774178,0.0096245426684618,-0.084513999521732],[-0.0013616905780509,0.024207405745983,-0.059123162180185],[-0.0060027600266039,0.077011875808239,0.0098745217546821]],[[0.015043254941702,0.0068620797246695,-0.010560241527855],[-0.0026986529119313,-0.011197029612958,-0.048026498407125],[0.015768928453326,0.079147048294544,0.036063708364964]],[[-0.045221265405416,0.030209952965379,0.025998240336776],[0.023949636146426,-0.05100966617465,-0.00012746939319186],[-0.013424758799374,-0.032327085733414,-0.0095632039010525]],[[-0.038700424134731,0.053664356470108,0.022319199517369],[-0.034976609051228,-0.015399192459881,-0.06420112401247],[0.048326719552279,0.057722169905901,-0.030604135245085]],[[0.0057060653343797,0.0046742558479309,0.079070709645748],[-0.029004009440541,-0.098167985677719,0.0034795093815774],[0.060131594538689,0.019577644765377,-0.0078382836654782]],[[0.0066732121631503,-0.088637135922909,0.035556893795729],[-0.007563766092062,-0.051976874470711,0.043323174118996],[0.099542900919914,-0.051713421940804,0.037837941199541]],[[0.018923606723547,-0.071256741881371,0.0046926913782954],[-0.0021867558825761,0.0243358053267,0.01552427560091],[-0.0069532957859337,-0.023433590307832,-0.0047629284672439]],[[-0.045129556208849,-0.006081382278353,-0.012883217073977],[-0.027669304981828,0.022820387035608,-0.0042496710084379],[-0.044000923633575,0.027162991464138,0.036972556263208]],[[-0.050559781491756,-0.064050033688545,0.042371816933155],[0.030351538211107,-0.016320131719112,0.034893192350864],[-0.020361734554172,0.042539577931166,-0.015163958072662]],[[0.0033196078147739,-0.011831223033369,0.041676335036755],[0.013323287479579,0.047289997339249,-0.0095708128064871],[-0.03448785468936,-0.031708978116512,-0.055194590240717]],[[0.043313290923834,0.046707428991795,-0.019947957247496],[-0.066379770636559,-0.065218329429626,-0.027601575478911],[-0.1060378998518,0.031713843345642,0.11158062517643]]],[[[0.044792272150517,0.047237779945135,-0.049060951918364],[0.078279174864292,-0.016249457374215,0.013700652867556],[-0.0022449928801507,-0.021360278129578,-0.048968650400639]],[[0.015227695927024,0.059404723346233,-0.017638724297285],[-0.015793010592461,0.068345732986927,0.0074873734265566],[-0.0036107613705099,0.040445286780596,0.015020021237433]],[[-0.0089193293824792,-0.038329221308231,-0.048547755926847],[0.062060095369816,-0.00038537409272976,-0.031040728092194],[-0.026875581592321,-0.016252785921097,0.0029115432407707]],[[-0.048224486410618,0.036734957247972,0.066123574972153],[-0.036494612693787,0.02747568488121,-0.037030790001154],[-0.027862258255482,-0.10975958406925,-0.041089035570621]],[[0.03515811637044,-0.012685034424067,0.019036941230297],[-0.00013028961257078,0.10787412524223,-0.04358559474349],[-0.0053361277095973,-0.017844162881374,0.057058047503233]],[[0.0051901377737522,0.15591189265251,-0.042859591543674],[-0.023929368704557,0.045272763818502,-0.03188805654645],[0.029759023338556,0.053999356925488,-0.031537309288979]],[[-0.013006732799113,0.0013335675466806,0.037588268518448],[0.00049294700147584,0.020484810695052,-0.017675179988146],[-0.025134909898043,-0.034407060593367,-0.017846973612905]],[[0.049837652593851,0.027590457350016,-0.019666578620672],[0.064719699323177,0.074949309229851,-0.035855036228895],[-0.015278119593859,-0.019262438639998,-0.037311390042305]],[[0.026260267943144,0.020064609125257,0.05609717220068],[0.019209455698729,-0.065855003893375,0.052032291889191],[-0.057095970958471,0.015352415852249,0.047100696712732]],[[-0.01443353202194,-0.030389251187444,0.020859016105533],[0.0030831047333777,0.0573970079422,-0.028959842398763],[-0.042245525866747,-0.041940577328205,-0.0078763654455543]],[[-0.07551583647728,-0.0076193297281861,-0.057041622698307],[-0.029523449018598,-0.021144652739167,-0.032444313168526],[0.0026840332429856,-0.01912766136229,-0.059421591460705]],[[-0.028298260644078,0.0019498617621139,0.065566562116146],[-0.035316172987223,-0.01314024720341,0.011837898753583],[-0.036859858781099,-0.01599651016295,0.11363454908133]],[[0.03348895162344,0.0068700225092471,-0.025236522778869],[0.030118750408292,0.028514681383967,-0.008383140899241],[0.026031594723463,-0.082340784370899,-0.13202945888042]],[[0.02398000843823,-0.020839121192694,-0.020600451156497],[0.020266043022275,-0.093671850860119,-0.01672843657434],[0.020775441080332,-0.048900075256824,0.0078592821955681]],[[0.020713154226542,0.082432836294174,-0.07180692255497],[0.045199427753687,0.08726405352354,0.092631220817566],[-0.0043718153610826,0.0074874046258628,0.085581459105015]],[[-0.016185756772757,-0.033934541046619,0.01725871488452],[0.043833408504725,-0.065789848566055,0.0001250802888535],[0.0017802042420954,0.060771238058805,0.038374666124582]],[[-0.044652342796326,-0.0088670402765274,-0.067390717566013],[0.036024909466505,0.043241858482361,-0.035101447254419],[0.016200916841626,-0.040968026965857,0.017587330192327]],[[0.041883118450642,-0.020283158868551,-0.03432509675622],[-0.0188631657511,0.084194950759411,-0.053390268236399],[0.0014670199016109,0.01109510101378,0.0048032798804343]],[[-0.053188890218735,0.053975187242031,-0.0094616869464517],[-0.011948516592383,-0.020519264042377,-0.076128490269184],[-0.031490139663219,-0.047712106257677,0.018305076286197]],[[0.0099513810127974,-0.10848279297352,-0.0037769873160869],[0.057459224015474,0.0021428624168038,-0.082119919359684],[-0.037970632314682,-0.051389906555414,-0.0078849755227566]],[[0.022396124899387,0.018448175862432,-0.0061119045130908],[-0.031988576054573,-0.037967897951603,0.079008385539055],[-0.049498803913593,0.0044133849442005,-0.030442178249359]],[[0.032329373061657,-0.023678496479988,0.02602525241673],[-0.049361295998096,0.0073570818640292,0.0082648107782006],[0.080027692019939,-0.0030354841146618,-0.026485377922654]],[[-0.034214794635773,0.019335532560945,-0.083529137074947],[-0.065188035368919,0.06637617200613,0.071950674057007],[-0.052034176886082,-0.049400895833969,0.032455153763294]],[[-0.0017786163371056,-0.029333988204598,-0.05567529052496],[0.026464125141501,0.097281470894814,0.040588267147541],[0.10955031961203,-0.086536854505539,-0.015283961780369]],[[0.041899930685759,0.037937790155411,-0.0044891973957419],[-0.052218709141016,-0.065754249691963,-0.029826274141669],[-0.012115528807044,-0.022592207416892,-0.032536841928959]],[[-0.077854432165623,0.043851751834154,-0.038011994212866],[0.04194437712431,0.038872543722391,0.0042193583212793],[-0.00062842183979228,-0.070296458899975,-0.0706837028265]],[[0.06376913189888,0.029980583116412,0.058767538517714],[0.10222587734461,-0.015521279536188,0.047102320939302],[0.01729947142303,-0.017600949853659,-0.0099201323464513]],[[-0.023805350065231,-0.018061313778162,-0.076202176511288],[-0.06172065064311,0.0047079427167773,0.024276746436954],[0.037529241293669,0.0024567898362875,-0.04271887242794]],[[0.04127699509263,0.060732468962669,-0.012604489922523],[0.053838480263948,0.066751375794411,0.025838064029813],[-0.046086233109236,-0.038941763341427,0.020797129720449]],[[0.043404869735241,-0.037998430430889,-0.033853691071272],[-0.047748498618603,0.028871048241854,0.043003968894482],[-0.088489376008511,-0.040959592908621,0.028858816251159]],[[0.027643183246255,0.054340772330761,0.038086015731096],[-0.025377316400409,0.015764264389873,-0.020987410098314],[0.0010640810942277,0.050845291465521,0.00050323846517131]],[[0.027191769331694,-0.038422290235758,-0.016184408217669],[0.013436158187687,0.045676615089178,0.039491567760706],[-0.02095128968358,0.077035181224346,0.0077470182441175]],[[-0.044291820377111,0.019135065376759,0.0014022922841832],[0.013619090430439,-0.027983296662569,0.0031456365250051],[-0.028083415701985,0.085668295621872,0.02851521037519]],[[-0.031007835641503,0.016537260264158,0.054737005382776],[0.062874600291252,0.050667785108089,0.012634550221264],[0.034364558756351,-0.043983172625303,-0.057460356503725]],[[0.0015220447676256,-0.019672907888889,-0.092298716306686],[0.043662745505571,-0.018146989867091,-0.062866538763046],[-0.033583492040634,-0.066617101430893,-0.011492173187435]],[[0.0085504818707705,-0.020909037441015,0.0032173059880733],[0.002819191198796,-0.030302694067359,0.013546979054809],[-0.0021939733996987,-0.031066874042153,-0.015191597864032]],[[-0.036069188266993,0.0038785052020103,-0.011727835051715],[0.040574088692665,0.02743830345571,0.018420994281769],[-0.0014461945975199,0.01210561580956,0.044869162142277]],[[0.0063364105299115,-0.10963279753923,-0.095317371189594],[0.00014133783406578,0.031695600599051,0.0023399980273098],[0.02542214654386,-0.022199919447303,-0.069520018994808]],[[0.058582965284586,0.047102887183428,0.054021190851927],[0.042781122028828,0.09638174623251,0.048847828060389],[0.014233408495784,0.039505209773779,0.041879080235958]],[[0.034989237785339,0.048605900257826,0.027190988883376],[-0.013236734084785,0.027342200279236,0.017357433214784],[0.024729045107961,0.0015831380151212,-0.025185177102685]],[[0.0019728492479771,0.038678344339132,-0.036534432321787],[-0.025595366954803,0.0047321608290076,0.037195019423962],[-0.019573329016566,-0.022477254271507,0.059941947460175]],[[0.0023441405501217,0.058517191559076,-0.031648084521294],[-0.022234227508307,-0.0041525783017278,-0.046054519712925],[0.038251403719187,-0.033956412225962,0.012636392377317]],[[3.404848757782e-05,0.044096019119024,-0.12079203128815],[-0.037206988781691,0.030724760144949,0.022275371477008],[0.031788282096386,-0.041410505771637,-0.055782545357943]],[[0.03404301032424,0.0047632236965001,-0.076395981013775],[-0.051505424082279,0.015795102342963,-0.0066575496457517],[-0.12051888555288,-0.067064307630062,-0.025205876678228]],[[0.034558314830065,0.03711299598217,-0.025550696998835],[0.02118301205337,-0.062695823609829,-0.016724703833461],[0.058250818401575,0.029603946954012,0.014104017987847]],[[-0.015939695760608,-0.072587981820107,-0.014446182176471],[0.068285167217255,-0.055395063012838,-0.0077684996649623],[-0.017345136031508,-0.02970365434885,0.05489656329155]],[[0.025152251124382,0.043561030179262,-0.022840602323413],[0.042944353073835,-0.11837292462587,0.0015157503075898],[0.014734193682671,-0.063505880534649,-0.01082818582654]],[[0.016078455373645,0.092298120260239,0.10245671868324],[-0.075591072440147,-0.14464536309242,0.011573204770684],[-0.13305555284023,-0.018668185919523,0.022792557254434]],[[0.089265242218971,0.023559909313917,-0.056740410625935],[0.0092413909733295,2.5101704522967e-05,-0.055752336978912],[0.040141932666302,-0.0049271495081484,0.018366347998381]],[[-0.036896038800478,0.0067380866967142,0.011780918575823],[0.015548234805465,0.048540119081736,0.034302372485399],[-0.062192615121603,0.03881860896945,0.04891411960125]],[[-0.11798924952745,0.0026639145798981,-0.043778669089079],[0.046995881944895,0.012690072879195,-0.064041785895824],[0.0090764630585909,-0.028234899044037,-0.045437678694725]],[[-0.081928558647633,0.019792595878243,-0.026293948292732],[-0.063252225518227,-0.069608874619007,-0.044105175882578],[-0.01141170412302,-0.059320010244846,-0.014909234829247]],[[0.0091855982318521,-0.028797687962651,-0.0075115440413356],[0.044906836003065,0.019173664972186,-0.020445797592402],[0.025922743603587,-0.006517207249999,-0.00046225468395278]],[[-0.020546155050397,0.056301731616259,-0.0089211501181126],[-0.018856694921851,0.041930954903364,-0.0051985834725201],[-0.0018382743000984,0.06593968719244,-0.02920607663691]],[[-0.0025589379947633,-0.0057438989169896,-0.029901318252087],[0.017908332869411,-0.037325765937567,-0.0040311212651432],[-0.086228378117085,-0.011208674870431,0.063174679875374]],[[-0.061105731874704,-0.02730331197381,0.082882948219776],[0.0015233135782182,-0.046823222190142,-0.036706682294607],[0.008126319386065,0.078012205660343,0.061538446694613]],[[-0.010337770916522,-0.03491124138236,0.033608857542276],[-0.026627033948898,0.025289824232459,0.0069140777923167],[-0.077150262892246,0.062553502619267,-0.021907199174166]],[[0.017495239153504,0.065201260149479,-0.0027650217525661],[0.015516834333539,-0.051711726933718,-0.011255612596869],[-0.073146983981133,0.015811368823051,-0.020802738144994]],[[0.048884432762861,-0.020930832251906,0.00019515799067449],[0.10185881704092,-0.033084150403738,0.040984522551298],[-0.018964651972055,0.031211508437991,0.032801426947117]],[[-0.0069912183098495,0.0045060962438583,-0.072344332933426],[-0.020415278151631,0.017508462071419,0.025204313918948],[0.052805528044701,0.042865749448538,0.0030067530460656]],[[-0.032642759382725,-0.045308299362659,-0.042580798268318],[-0.019227482378483,0.0095504932105541,-0.06775388866663],[0.036463048309088,0.0078091369941831,0.012456457130611]],[[0.038325447589159,0.10978665947914,-0.012167358770967],[0.0068016811273992,0.03337712213397,-0.0041734767146409],[-0.030727047473192,-0.073561049997807,0.047871820628643]],[[0.058754567056894,0.060955267399549,0.045625437051058],[-0.051952119916677,0.041001174598932,0.038831699639559],[0.045913245528936,0.056020941585302,-0.031457509845495]],[[-0.0023837657645345,0.03264669328928,0.064983181655407],[-0.016736585646868,-0.026522617787123,-0.021558789536357],[-0.023052282631397,0.059118840843439,-0.010606588795781]],[[-0.036679871380329,-0.019940936937928,-0.0091984774917364],[0.014886754564941,0.033160753548145,0.024296963587403],[-0.1140324473381,0.0064162779599428,0.039567936211824]],[[0.028802320361137,0.0024838596582413,-0.025079110637307],[-0.00025198969524354,-0.030996564775705,0.0092408806085587],[-0.022009879350662,0.01203300524503,-0.040993336588144]],[[0.0055522765032947,-0.029788179323077,0.061132602393627],[-0.013284715823829,0.020657390356064,-0.00090604939032346],[0.045705541968346,-0.072727255523205,-0.055329896509647]],[[0.070251509547234,0.01294834446162,-0.022707061842084],[0.0037829554639757,-0.010984883643687,-0.04227314889431],[-0.048681832849979,0.031678538769484,0.064049586653709]],[[0.065147288143635,0.0069672912359238,-0.064136438071728],[-0.044201891869307,-0.044669285416603,-0.047336280345917],[-0.067966878414154,0.018909899517894,0.031223593279719]],[[-0.022726533934474,-0.044601630419493,-0.041119445115328],[0.0030516744591296,0.068978898227215,-0.07332019507885],[-0.017248038202524,0.10772880166769,0.084190629422665]],[[0.020549623295665,-0.038367044180632,0.017483748495579],[0.018431508913636,0.045425795018673,0.056331086903811],[-0.020963024348021,0.048401292413473,-0.045683216303587]],[[-0.02942069619894,0.100442096591,0.057005729526281],[-0.10779520869255,-0.022735934704542,-0.013522970490158],[0.036488749086857,-0.04717093333602,0.0027029172051698]],[[-0.02095590531826,-0.035286739468575,-0.020792916417122],[-0.053128752857447,0.06579165905714,0.079793691635132],[-0.042136557400227,-0.079017773270607,0.036816071718931]],[[-0.034721564501524,0.049504566937685,0.043738976120949],[-0.0090535283088684,-0.006719877012074,0.015325428918004],[-0.00051954766968265,0.020327987149358,-0.020443389192224]],[[0.0092919925227761,0.026821242645383,0.078197002410889],[0.058476943522692,-0.011445038951933,-0.031042231246829],[-0.010206434875727,0.0093052657321095,-0.0799875035882]],[[0.039666406810284,0.051152866333723,0.02214221470058],[-0.042674615979195,-0.021516613662243,0.027794059365988],[-0.011494590900838,0.030177919194102,0.0071934880688787]],[[0.0089589199051261,0.036943763494492,-0.023849265649915],[-0.022707192227244,-0.0074605816043913,-0.0077961324714124],[-0.053493145853281,0.062567286193371,0.018354399129748]],[[-0.025765627622604,-0.010061969980597,0.02650754712522],[-0.061587177217007,0.076214522123337,-0.047873001545668],[0.037739977240562,0.024726720526814,-0.051606860011816]],[[-0.033440351486206,-0.0037106384988874,0.0010388114023954],[0.016054470092058,-0.052340522408485,-0.029100837185979],[-0.030590835958719,-0.060090012848377,-0.025703087449074]],[[0.034942131489515,-0.017565041780472,0.06119903549552],[0.041224859654903,-0.050216764211655,0.047922346740961],[0.030177095904946,-0.030668757855892,0.034977048635483]],[[0.065874487161636,0.068771444261074,0.022809576243162],[-0.0090759489685297,-0.024742158129811,-0.0040969140827656],[0.032525654882193,-0.024155763909221,0.030585575848818]],[[0.060556396842003,0.09731787443161,-0.060693230479956],[-0.045024063438177,-0.025229575112462,0.092782758176327],[-0.054490529000759,-0.041131395846605,0.077619604766369]],[[0.0025462503544986,0.021002227440476,0.047122176736593],[-0.069269619882107,0.016966147348285,-0.029658868908882],[-0.014340540394187,-0.005426777061075,0.0051678973250091]],[[0.0077834455296397,-0.047821417450905,0.039617374539375],[0.0066780271008611,0.029256654903293,-0.0082029579207301],[-0.00012238346971571,-0.077348113059998,-0.0083980700001121]],[[-0.044364862143993,-0.0043295007199049,0.0069602727890015],[-0.03608950600028,0.010085959918797,0.0080566825345159],[0.041013285517693,0.0065145860426128,0.092716135084629]],[[-0.0034384822938591,0.061934672296047,-0.015597983263433],[0.002366284141317,-0.020800670608878,-0.018993088975549],[-0.038809195160866,-0.034428607672453,-0.007741040084511]],[[0.025302682071924,-0.082660973072052,-0.0066827302798629],[-0.0026176346000284,-0.016940275207162,-0.076290093362331],[0.018722295761108,-0.037506740540266,-0.056934390217066]],[[-0.00037335703382269,0.015016221441329,0.0048867291770875],[-0.024568730965257,-0.066740721464157,-0.017537303268909],[0.020856292918324,0.047640133649111,0.040819190442562]],[[0.030971782281995,0.010198119096458,-0.010830607265234],[-0.0089021343737841,0.0065741622820497,0.003337336005643],[0.068913824856281,0.11044342815876,-0.017395455390215]],[[-0.056749004870653,-0.0044368784874678,-0.037996578961611],[-0.025457873940468,-0.046033412218094,0.035270735621452],[0.009585790336132,-0.03368902951479,0.025107692927122]],[[0.019530141726136,0.0033014849759638,-0.047512643039227],[0.017824418842793,-0.005054394248873,0.056801076978445],[-0.031690876930952,-0.032561417669058,0.047130785882473]],[[0.016306784003973,-0.032369300723076,0.0061937891878188],[-0.043333612382412,0.06451104581356,-0.036315873265266],[-0.0065201953984797,0.049228064715862,0.0077700880356133]],[[-0.048074427992105,0.049502976238728,0.0239223446697],[0.017707137390971,0.0082065463066101,0.0024571102112532],[0.050540998578072,-0.074646636843681,0.009756937623024]],[[0.0067898114211857,-0.0017553844954818,-0.052814263850451],[0.024419503286481,-0.067130297422409,-0.013109023682773],[-0.039266258478165,-0.018365554511547,-0.069911397993565]],[[-0.033240210264921,0.0059629431925714,0.024728901684284],[-0.015711868181825,0.012109126895666,0.0079899895936251],[-0.0083511220291257,-0.0013603307306767,0.010422619059682]],[[0.029739988967776,-0.02693397551775,0.028136949986219],[0.033103786408901,0.053697817027569,0.063625521957874],[0.014449456706643,-0.026130896061659,0.068819686770439]],[[-0.029424395412207,-0.025081731379032,0.002380033954978],[0.0035436353646219,0.032475929707289,0.04743878915906],[-0.063291765749454,-0.038635279983282,0.062098652124405]],[[-0.019267316907644,-0.040747687220573,-0.0097012426704168],[0.060762230306864,0.049215212464333,0.073067411780357],[0.0070075006224215,-0.063989013433456,-0.074876219034195]],[[0.017839772626758,0.027172921225429,-0.050085429102182],[0.002944475505501,-0.024910103529692,-0.055221129208803],[0.0086315525695682,0.0044137961231172,-0.027516169473529]],[[-0.021503617987037,-0.018282009288669,0.052259765565395],[-0.089549452066422,-0.060224376618862,0.024206912145019],[-0.014232310466468,-0.03516848757863,-0.02194076217711]],[[0.0046282582916319,-0.02631701529026,0.0027061351574957],[-0.014456267468631,-0.047542840242386,-0.0556346103549],[0.010899626649916,0.042069118469954,0.055651213973761]],[[-0.024606537073851,-0.098778367042542,0.079014897346497],[0.021663673222065,0.044095113873482,-0.062620088458061],[-0.084363467991352,0.034663379192352,0.071427032351494]],[[0.015601159073412,0.040586210787296,0.032795839011669],[0.020124834030867,0.0038457126356661,-0.015903120860457],[0.0060160895809531,0.068952299654484,-0.045506060123444]],[[0.067940138280392,-0.0086972024291754,0.041906345635653],[-0.0091546606272459,-0.01019574701786,0.056620296090841],[-0.05880269035697,0.079946704208851,-0.043165538460016]],[[-0.017674887552857,0.0037346000317484,0.050914380699396],[-0.026974691078067,0.035030875355005,-0.014481169171631],[0.06943229585886,0.032667096704245,-0.035652160644531]],[[-0.021916823461652,0.035493105649948,-0.020539639517665],[-0.014969232492149,-0.084609091281891,-0.049471981823444],[-0.043323904275894,0.038575239479542,-0.049047790467739]],[[0.0046369703486562,-0.076927617192268,0.015722561627626],[0.0076665440574288,-0.03410942107439,-0.0066441330127418],[0.025571558624506,-0.019124204292893,0.063678860664368]],[[0.010123305954039,0.015658561140299,0.0097888819873333],[-0.085507519543171,-0.0022970975842327,0.0062537463381886],[0.0040150713175535,0.024307111278176,-0.012973293662071]],[[-0.029599076136947,0.0015207469696179,-0.092995554208755],[-0.046366639435291,-0.080853395164013,-0.062848806381226],[-0.037618167698383,-0.10626411437988,-0.064076736569405]],[[-0.078124389052391,0.039749942719936,0.020903643220663],[-0.02988912537694,-0.013925153762102,0.026230551302433],[-0.026792602613568,-0.024707118049264,0.033325545489788]],[[0.049789421260357,0.020198950544,-0.0082054557278752],[0.006338944658637,-0.015470585785806,0.094466008245945],[0.07289719581604,-0.033592324703932,0.023729061707854]],[[0.015527030453086,-0.11840172857046,-0.093104630708694],[0.023350020870566,0.0045049986802042,-0.062250670045614],[-0.066011905670166,-0.063502870500088,-0.03460455685854]],[[-0.042982123792171,-0.028389705345035,0.083411492407322],[0.045399833470583,-0.040527425706387,0.11488223075867],[-0.067202806472778,0.035174895077944,0.060699760913849]],[[-0.0077428352087736,0.064628206193447,0.03897001221776],[0.049974098801613,-0.047145135700703,-0.02406164072454],[-0.002835278166458,-0.052018962800503,0.058857511729002]],[[0.035206019878387,0.041901588439941,-0.020630300045013],[0.032707013189793,-0.0048032770864666,0.039861597120762],[-0.013933824375272,-0.019695743918419,-0.03475734218955]],[[-0.020883575081825,-0.040748484432697,-0.084193989634514],[-0.019246440380812,-0.041763123124838,-0.045399460941553],[-0.026831727474928,0.065540373325348,0.050401352345943]],[[-0.01014643535018,-0.026580404490232,-0.064016692340374],[0.0045716408640146,0.063526406884193,0.067909643054008],[0.016079153865576,-5.6413860875182e-05,0.058891132473946]],[[0.06191061809659,-0.023873910307884,0.031505178660154],[-0.066194705665112,-0.013393605127931,0.0130700385198],[0.056307759135962,0.005123286973685,0.066334553062916]],[[-8.010463352548e-05,-0.0016749675851315,-0.04012494161725],[-0.036700755357742,-0.012366808019578,-0.044686064124107],[-0.025794342160225,0.004813794977963,-0.0037280737888068]],[[0.062527850270271,-0.025161787867546,0.025985054671764],[-0.0068854270502925,0.0017028532456607,0.0071593732573092],[-0.0096764275804162,0.036916378885508,0.014150183647871]],[[-0.011411668732762,-0.0046046753413975,0.0091907400637865],[-0.008675436489284,-0.052574750036001,-0.0038647977635264],[0.0037526283413172,-0.061948210000992,-0.030060291290283]],[[-0.018776927143335,0.021846732124686,0.0035645966418087],[0.035231564193964,0.0061370437033474,0.065724097192287],[-0.014065742492676,0.015762407332659,0.018679443746805]],[[-0.052862521260977,-0.070524029433727,0.11130443960428],[-0.08890076726675,0.0071978680789471,0.031830545514822],[0.064268164336681,-0.035842344164848,-0.0036326413974166]],[[0.07412277162075,-0.062584795057774,-0.045133292675018],[-0.011091645807028,-0.027337227016687,-0.0087362695485353],[-0.0018319719238207,-0.026479665189981,-0.051601357758045]],[[0.039597153663635,0.0794408172369,0.048702761530876],[0.0070678470656276,-0.099079631268978,-0.00061908102361485],[-0.06859328597784,-0.043011225759983,-0.0046107079833746]],[[0.064350552856922,-0.016107581555843,0.016724184155464],[-0.018627665936947,0.0035439045168459,-0.025234604254365],[0.012506885454059,-0.010597852058709,0.063839197158813]],[[-0.009326764382422,0.030165692791343,-0.018670557066798],[-0.0017671070527285,0.081443339586258,0.022285910323262],[0.016726786270738,-0.046572774648666,0.069742552936077]],[[0.046359207481146,-0.022453997284174,0.035480462014675],[0.0020600825082511,-0.0058755408972502,-0.0065277572721243],[-0.062213752418756,-0.025608936324716,0.057884819805622]]],[[[-0.085888475179672,0.040858056396246,-0.09888081997633],[-0.0040285042487085,-0.013622909784317,0.016343273222446],[0.02124460414052,0.064181484282017,0.050999622792006]],[[0.031861700117588,-0.0065865172073245,0.026350436732173],[0.031304590404034,-0.008721680380404,-0.022514024749398],[-0.001364771858789,-0.029981896281242,-0.029870878905058]],[[-0.0025805963668972,-0.0065201446413994,0.051298186182976],[-0.062955036759377,-0.019804894924164,0.031385879963636],[0.044057119637728,0.020062768831849,-0.032301507890224]],[[0.019075298681855,-0.026165630668402,-0.039155464619398],[0.018474126234651,-0.023821953684092,0.030843188986182],[-0.035186812281609,-0.0041731703095138,0.074159674346447]],[[-0.078477308154106,0.064856074750423,0.039746910333633],[0.037304379045963,0.019119536504149,0.01373905595392],[-0.080170206725597,-0.066092394292355,0.10751857608557]],[[0.077945202589035,-0.0087267691269517,0.034287191927433],[-0.034008875489235,0.032694090157747,-0.0072633372619748],[0.030248733237386,0.014884309843183,-0.025015035644174]],[[-0.03494630381465,0.034318868070841,-0.041136100888252],[0.017229646444321,0.036672543734312,0.061252303421497],[0.032472688704729,-0.0030346519779414,0.0012678682105616]],[[0.050377704203129,0.012252782471478,-0.010792239569128],[0.046142872422934,0.0056028622202575,0.072492860257626],[0.019142126664519,0.03378190100193,-0.02504731528461]],[[-0.033327713608742,-0.012806002981961,0.048007473349571],[-0.041940361261368,0.03185985609889,-0.013883936218917],[-0.049861222505569,-0.062457405030727,0.035066287964582]],[[0.065105192363262,0.10506845265627,0.070464499294758],[0.044003620743752,0.017716152593493,0.014647184871137],[-0.029230318963528,-0.043161530047655,-0.046807605773211]],[[0.058101903647184,0.0066664307378232,0.053368631750345],[-0.042915266007185,-0.015457848086953,0.13239549100399],[0.023857809603214,0.015166629105806,0.071567237377167]],[[0.030462486669421,0.065492697060108,-0.0075047677382827],[-0.034845314919949,-0.05955508351326,-0.0015650311252102],[0.043673329055309,0.061997395008802,0.035710338503122]],[[-0.083810642361641,0.0016446331283078,0.0057543702423573],[0.037746906280518,0.045636046677828,0.020601222291589],[0.056044090539217,0.029509793967009,0.00036560592707247]],[[0.024662589654326,-0.0049945879727602,0.0094804596155882],[-0.024241527542472,0.025219859555364,0.023804603144526],[0.066393822431564,0.067056074738503,-0.0190897770226]],[[-0.080179303884506,0.042316950857639,0.026828920468688],[-0.060438755899668,-0.067799016833305,-0.033678133040667],[0.0097039360553026,-0.050426952540874,-0.0046961922198534]],[[-0.045015871524811,-0.0033548774663359,0.080875568091869],[0.018840447068214,0.045412585139275,-0.025879617780447],[-0.014072059653699,-0.02068898268044,0.030906345695257]],[[0.018196415156126,0.058316759765148,-0.026302268728614],[0.02529020793736,-0.060492023825645,0.058764562010765],[0.030985726043582,0.069038078188896,0.044891312718391]],[[-0.033033534884453,-0.05056182295084,-0.021812481805682],[-0.0077048712410033,0.049803256988525,-0.048613823950291],[-0.031896315515041,-0.026928359642625,-0.01969395019114]],[[-0.023206459358335,0.055444397032261,-0.0076623973436654],[0.011462986469269,0.0099554415792227,-0.053202942013741],[-0.0059087532572448,-8.4246275946498e-05,-0.063066959381104]],[[0.071840226650238,0.0091811679303646,0.022041264921427],[0.10402727127075,0.020988028496504,-0.042694773525],[0.0016895248554647,0.022532353177667,0.031154712662101]],[[-0.043086674064398,-0.0283058937639,0.059677846729755],[-0.021983472630382,-0.021636398509145,-0.057685736566782],[-0.038845025002956,0.019514709711075,-0.033088225871325]],[[0.073024861514568,0.054099142551422,0.058659698814154],[0.065606854856014,-0.031740669161081,0.045459814369678],[-0.031063586473465,0.07941010594368,0.090053357183933]],[[0.050923306494951,-0.095371104776859,-0.022498317062855],[-0.027635391801596,-0.052154757082462,-0.066254802048206],[-0.033161647617817,-0.012660395354033,0.01572347804904]],[[0.084065206348896,0.11941825598478,0.009726082906127],[0.011035832576454,0.011783770285547,0.031992994248867],[0.040658857673407,-9.9327160569374e-05,0.13292267918587]],[[0.0097624156624079,0.0070751812309027,-0.046538252383471],[-0.039119400084019,0.044080469757318,0.1112787425518],[-0.055932115763426,-0.015268569812179,0.011279359459877]],[[-0.05227217450738,-0.030450139194727,0.052972353994846],[-0.010033232159913,-0.028433453291655,0.0071536931209266],[-0.069317415356636,-0.046370577067137,0.066728383302689]],[[0.030846023932099,0.0086115309968591,0.037465870380402],[-0.11098375171423,0.037315644323826,0.019191773608327],[-0.012099893763661,0.0058269924484193,0.016937093809247]],[[-0.020467814058065,0.051827818155289,-0.03271646425128],[0.11249662190676,0.023451261222363,0.0028887279331684],[-0.0024077892303467,0.051189836114645,-0.079306855797768]],[[-0.0046612410806119,0.070703268051147,-0.016151072457433],[-0.055779755115509,0.032711811363697,-0.029379840940237],[0.12770290672779,-0.0037008412182331,-0.022325018420815]],[[-0.046392329037189,0.066045835614204,-0.063400939106941],[0.086861997842789,-0.05968689545989,-0.027097098529339],[-0.09552763402462,-0.04347812756896,-0.049580488353968]],[[0.041035328060389,-0.0052937110885978,-0.029841231182218],[0.022901155054569,0.051196083426476,0.052827849984169],[-0.02716569788754,0.055295810103416,-0.0060505475848913]],[[0.037092830985785,-0.045474339276552,0.026701264083385],[-0.037522286176682,0.093823924660683,-0.08886581659317],[0.046090852469206,-0.013131481595337,0.084546111524105]],[[0.001916071982123,0.014877195470035,0.025008387863636],[-0.0038507729768753,-0.011887584812939,0.0062496531754732],[-0.084816403687,0.01166082918644,-0.071857452392578]],[[-0.014393375255167,-0.029332084581256,0.088559195399284],[0.014430808834732,0.0032852084841579,-0.0062055299058557],[0.014459324069321,0.031973864883184,-0.012935961596668]],[[0.07904651761055,0.059145666658878,-0.039697408676147],[-0.018440390005708,-0.019847486168146,-0.03082025423646],[0.080129511654377,-0.013275817967951,-0.029061233624816]],[[-0.059219289571047,0.015739737078547,0.029935397207737],[0.044688299298286,0.046410176903009,-0.021122191101313],[0.048590794205666,-0.0011466159485281,0.019013822078705]],[[-0.060626406222582,-0.0019814828410745,-0.065756849944592],[-0.079742006957531,0.067771963775158,0.069680579006672],[-0.016022650524974,-0.063096925616264,-0.034605424851179]],[[-0.03784703835845,-0.043486729264259,-0.021439665928483],[-0.039056736975908,-0.07527507096529,0.11103422194719],[-0.047764040529728,0.021876765415072,-0.0012451179791242]],[[0.0092475721612573,-0.029795866459608,0.12863184511662],[0.038569293916225,0.033404916524887,0.009592778980732],[0.050149265676737,-0.056855160742998,0.026832407340407]],[[-0.088191278278828,0.10702789574862,-0.011840579099953],[-0.038757756352425,0.048218585550785,0.04881452023983],[-0.012770617380738,0.025244235992432,0.053393051028252]],[[-0.0041506863199174,0.015052891336381,-0.059263817965984],[-0.0091108866035938,-0.0085142413154244,0.020842721685767],[0.017922868952155,-0.058268174529076,0.035462319850922]],[[0.013717081397772,-0.028260434046388,0.076187752187252],[0.027781449258327,0.070697538554668,0.032775394618511],[0.024745972827077,0.022981183603406,0.014187359251082]],[[-0.098261043429375,-0.059613909572363,0.030905922874808],[-0.076017208397388,0.041861593723297,-0.045665860176086],[0.0081352367997169,-0.016487373039126,0.04907713830471]],[[0.093993656337261,-0.032638888806105,0.01420184969902],[0.047525867819786,0.017413970082998,0.055529549717903],[0.06321357935667,0.0089533068239689,0.028464507311583]],[[-0.019843665882945,0.017785431817174,-0.054019346833229],[0.022242415696383,0.068474248051643,-0.03830411285162],[-0.01216434314847,0.079468473792076,0.11692656576633]],[[-0.0057414211332798,0.051473326981068,-0.086994327604771],[0.023088177666068,0.0007958157802932,0.0088524296879768],[0.049301348626614,0.00068528734846041,-0.029020149260759]],[[-0.045019038021564,0.007518504280597,-0.061812315136194],[0.025351880118251,-0.093810141086578,0.077471740543842],[-0.0017301776679233,-0.011759829707444,0.03166788071394]],[[-0.016950795426965,-0.047444026917219,-0.020943460986018],[-0.00064855412347242,-0.022245915606618,-0.050852172076702],[0.035548720508814,-0.056890986859798,-0.074309937655926]],[[-0.14062131941319,-0.034487921744585,-0.065680347383022],[-0.0082675572484732,-0.0054150717332959,-0.016865873709321],[0.014892685227096,0.0033376275096089,0.031534925103188]],[[0.041998352855444,-0.016227724030614,0.083356991410255],[-0.11606802046299,-0.075799480080605,0.012448340654373],[-0.08759380877018,-0.083153896033764,0.0064331809990108]],[[-0.004328197799623,-0.062794484198093,0.047851722687483],[-0.095272421836853,0.0066871796734631,0.00041369590326212],[0.041874658316374,-0.038041140884161,-0.058960009366274]],[[0.039319839328527,-0.010902815498412,0.033718049526215],[-0.0018501712474972,-0.015215301886201,0.01166910212487],[-0.036017816513777,-0.020346680656075,-0.02125309407711]],[[0.054528351873159,0.019702250137925,0.079050958156586],[-0.056104905903339,0.052778299897909,0.045913707464933],[-0.04743354767561,0.02171410061419,-0.06359988451004]],[[0.005325370002538,0.12944766879082,0.0090745175257325],[0.01440173946321,0.13877287507057,0.060988646000624],[0.062994211912155,0.048449821770191,-0.011312009766698]],[[-0.038920879364014,-0.086904741823673,0.046474289149046],[0.019387982785702,-0.046489093452692,0.029284616932273],[0.011003308929503,-0.013013730756938,-0.02829778380692]],[[0.018444674089551,-0.0039571509696543,-0.0087466659024358],[0.039065957069397,-0.0080385766923428,-0.042965572327375],[0.037469990551472,-0.013145989738405,0.02201678417623]],[[-0.027468154206872,0.016593467444181,0.01301865465939],[-0.047804735600948,0.019151091575623,0.060820899903774],[0.07179731875658,-0.093534491956234,0.069038659334183]],[[-0.049332071095705,0.051826078444719,-0.023708930239081],[-0.056653756648302,0.019708370789886,0.0084568085148931],[-0.04466075822711,0.024139419198036,0.0020147522445768]],[[-0.032146476209164,-0.016241900622845,-0.01693413220346],[-0.056469738483429,-0.049069803208113,-0.07257305085659],[0.025476951152086,-0.049104087054729,0.061201825737953]],[[0.013427650555968,0.041303034871817,0.025025060400367],[-0.044415853917599,0.066081218421459,0.036481894552708],[-0.072649702429771,-0.020336272194982,-0.079914346337318]],[[0.0098159592598677,0.12087923288345,-0.057838391512632],[0.03435143828392,0.024761052802205,-0.012697333469987],[-0.029750611633062,-0.0040889363735914,-0.021746477112174]],[[-0.0047538354992867,-0.041551776230335,0.05802971124649],[0.0373848490417,-0.015521508641541,0.061582952737808],[0.03642014414072,-0.018401119858027,-0.0601726770401]],[[0.0511324852705,-0.015829395502806,0.037874482572079],[0.057840045541525,-0.036048889160156,-0.020838625729084],[-0.026930505409837,-0.042898166924715,-0.005871431902051]],[[0.033640753477812,-0.035970844328403,-0.063272923231125],[0.014542300254107,-0.073583208024502,0.002386765787378],[-0.032492373138666,0.024230848997831,0.0028557276818901]],[[0.069121904671192,-0.041365414857864,0.05256325379014],[-0.03510894626379,-0.12121524661779,-0.083876743912697],[0.048282992094755,0.064599201083183,-0.039791353046894]],[[0.042840048670769,0.033466782420874,0.039989463984966],[0.018818149343133,0.00054991815704852,0.061791215091944],[-0.0066514010541141,-0.07662670314312,0.065690465271473]],[[-0.0067969239316881,0.057719767093658,0.059268340468407],[-0.011980837211013,-0.069849595427513,-0.0063818958587945],[0.020536184310913,-0.11846013367176,-0.055784579366446]],[[-0.013010432943702,0.0458614975214,-0.025764182209969],[0.055575899779797,0.090222537517548,0.0071330107748508],[-0.020743085071445,-0.054903298616409,-0.043883211910725]],[[0.036066006869078,-0.046104785054922,-0.031357556581497],[0.052601877599955,-0.049287289381027,-0.09291822463274],[-0.060305248945951,-0.058319799602032,-0.017237961292267]],[[-0.016661671921611,0.010770721361041,0.064216986298561],[-0.053917862474918,0.060410007834435,-0.021570656448603],[0.021267903968692,-0.044054303318262,0.047977771610022]],[[-0.094448059797287,0.020225921645761,-0.021080262959003],[-0.0021585919894278,0.010308709926903,0.017909115180373],[-0.05091406032443,-0.020630460232496,-0.031268641352654]],[[0.0021983867045492,-0.097833313047886,0.043885346502066],[0.015776008367538,0.064893461763859,-0.05595875531435],[-0.079902514815331,-0.052501242607832,-0.030269464477897]],[[0.020291281864047,-0.070525042712688,0.043422359973192],[0.03730833157897,-0.065790429711342,0.010044059716165],[0.065080672502518,-0.073233850300312,-0.0050674718804657]],[[0.00048737577162683,-0.010391784831882,0.014111182652414],[-0.03596917539835,-0.0035938729997724,0.048122551292181],[-0.0015268615679815,0.030101019889116,0.012826264835894]],[[0.0097152953967452,0.021738119423389,0.064346849918365],[-0.049955528229475,-0.0036527207121253,-0.062268823385239],[-0.038927372545004,0.081621050834656,0.038393367081881]],[[0.016675462946296,0.10526098310947,0.049494288861752],[0.072433687746525,0.0092335371300578,-0.053550060838461],[-0.037036214023829,-0.020326836034656,0.022035973146558]],[[0.0049515306018293,-0.087392292916775,-0.046194911003113],[-0.010150551795959,0.053093053400517,0.044088743627071],[0.029945651069283,0.040842089802027,-0.033659137785435]],[[0.0036493912339211,0.011439349502325,-0.05036972463131],[-0.079567037522793,-0.029554139822721,-0.10708842426538],[0.061383258551359,-0.0096670761704445,-0.0204804148525]],[[0.0058072158135474,-0.026582047343254,-0.051928512752056],[0.10535062104464,0.0013501821085811,0.072941467165947],[-0.0077246502041817,-0.040162537246943,-0.036078967154026]],[[0.022135583683848,0.063412360846996,-0.01548236515373],[-0.0012537573929876,0.054212890565395,0.016790363937616],[-0.050684995949268,0.078780718147755,-0.016924757510424]],[[-0.027678830549121,0.0076190885156393,-0.025364564731717],[0.0065415147691965,0.057188268750906,-0.0043214969336987],[0.038814309984446,0.041562601923943,0.035877387970686]],[[-0.0059737069532275,0.072114333510399,0.091632850468159],[0.027063665911555,-0.027351085096598,-0.05935737118125],[-0.055066872388124,0.030725624412298,-0.038828395307064]],[[-0.047454670071602,0.032007552683353,-0.02127736620605],[-0.065066367387772,-0.015531953424215,-0.03566388040781],[0.072824865579605,0.065863974392414,0.019243609160185]],[[0.031256262212992,-0.031300641596317,-0.048484805971384],[0.055719342082739,0.070238642394543,-0.035269722342491],[-0.0029876141343266,-0.00074563000816852,0.04588970169425]],[[-0.008223912678659,-0.012684998102486,0.018873188644648],[-0.0034164804965258,-0.024885410442948,-0.049792841076851],[-0.012299785390496,0.017708299681544,-0.028906447812915]],[[0.017560990527272,0.011312555521727,0.0014476784272119],[0.0006246478878893,-0.01984473131597,-0.054356783628464],[0.068773657083511,0.01067213807255,0.061184823513031]],[[-0.022115429863334,0.029402172192931,-0.049231946468353],[0.022190073505044,0.056838598102331,-0.042497221380472],[0.035980440676212,0.0023839664645493,0.033059060573578]],[[0.029596848413348,-0.055257022380829,-0.042112741619349],[-0.037205260246992,0.0055874246172607,-0.0030129763763398],[0.073961704969406,0.057302813977003,-0.033917345106602]],[[0.018642885610461,-0.057976707816124,-0.00012245078687556],[-0.086167804896832,0.062319047749043,-0.06686620414257],[-0.035677574574947,0.0041944859549403,0.052510004490614]],[[0.049239404499531,-0.067273534834385,0.0034066932275891],[0.0058074509724975,0.033481251448393,-0.024863436818123],[0.075493335723877,0.0080873453989625,-0.04872627556324]],[[-0.017790941521525,-0.0070408307947218,0.012014660984278],[-0.020618341863155,0.027300594374537,0.01329933386296],[-0.092969797551632,0.031022014096379,-0.059902869164944]],[[-0.044412191957235,0.0010552230523899,-0.047801181674004],[-0.075302176177502,0.030549332499504,0.049964442849159],[-0.014023565687239,-0.022998131811619,-0.024236397817731]],[[0.056675113737583,0.0046990937553346,-0.044649124145508],[0.048471163958311,0.033299382776022,-0.042282376438379],[0.071485549211502,-0.0062054214067757,-0.0017893414478749]],[[-0.0033371148165315,0.033674746751785,0.03580005839467],[0.032363690435886,-0.035762939602137,-0.067846268415451],[-0.072861224412918,0.028227150440216,-0.059849821031094]],[[-0.041303485631943,-0.012765367515385,-0.0035594082437456],[0.065654948353767,-0.031210154294968,0.03107488900423],[-0.055237662047148,-0.019037913531065,-0.0083296466618776]],[[-0.031501095741987,-0.026463892310858,0.036916833370924],[0.00014866951096337,0.005189610645175,0.042250446975231],[-0.011280031874776,-0.12070499360561,-0.023102333769202]],[[-0.020955307409167,-0.035279214382172,0.022429184988141],[0.06374279409647,0.054521627724171,-0.10268698632717],[0.012214322574437,0.025311347097158,0.029718551784754]],[[0.021677197888494,-0.054201647639275,-0.070587731897831],[0.021506970748305,-0.048270672559738,-0.069117479026318],[-0.023712139576674,0.019726052880287,0.023519955575466]],[[-0.015365418978035,0.054088644683361,0.0054968944750726],[0.065106362104416,-0.010815023444593,-0.00662891427055],[0.021156191825867,-0.084942765533924,0.014308796264231]],[[0.049088340252638,0.033831275999546,0.065080039203167],[0.0010538275819272,0.10668486356735,-0.055040799081326],[-0.05586713925004,-0.049612183123827,0.050508517771959]],[[0.055077724158764,-0.023559113964438,-0.063057795166969],[0.01235640514642,0.011495660990477,0.11132315546274],[0.076567843556404,-0.059040777385235,0.028219327330589]],[[0.014918203465641,0.049220386892557,0.038818351924419],[0.0031890769023448,-0.010895112529397,0.1000782251358],[0.027840688824654,-0.060587085783482,0.0079423552379012]],[[0.03520567342639,0.001858944655396,-0.080812521278858],[-0.00027002961724065,-0.0040743923746049,0.026181682944298],[0.0042016515508294,-0.0031033412087709,-0.039575804024935]],[[-0.040832504630089,-0.0045083458535373,-0.040308680385351],[-0.016259638592601,0.010189487598836,0.093031734228134],[-0.035456616431475,-0.084053531289101,0.0021316325291991]],[[-0.017791859805584,-0.034623645246029,-0.003552814014256],[-0.0047301566228271,0.054564960300922,0.0137032661587],[0.08821801841259,0.013949511572719,-0.013062752783298]],[[0.009489968419075,-0.023237993940711,-0.011435736902058],[0.052246190607548,0.04855190590024,0.042224630713463],[0.017724219709635,0.0047050812281668,0.039470471441746]],[[0.059320006519556,0.034023556858301,0.03148640692234],[0.0959677323699,-0.020479900762439,0.055524758994579],[0.070812605321407,-0.04427981749177,-0.022196771577001]],[[0.011947839520872,0.052361764013767,-0.038912888616323],[0.077574104070663,0.0458671040833,-0.029762057587504],[-0.062553785741329,-0.035247966647148,-0.0087548932060599]],[[0.02593114040792,0.041125427931547,-0.051581747829914],[0.079501643776894,0.033477205783129,0.10591656714678],[0.080655992031097,-0.033420883119106,-0.01254013646394]],[[-0.10707445442677,0.020924778655171,0.005096975248307],[-0.07430811226368,0.060702666640282,0.050907243043184],[0.056689281016588,-0.014211687259376,-0.025554019957781]],[[0.034289449453354,0.0089608589187264,0.043403662741184],[0.042486470192671,-0.016198396682739,0.012145195156336],[-0.054603934288025,0.0077351341024041,0.016118727624416]],[[0.064434304833412,-0.02061839401722,-0.10995360463858],[-0.029854141175747,0.036329325288534,-0.02841779589653],[0.11315897852182,0.00051380100194365,-0.0030076676048338]],[[-0.03222705796361,0.02880853228271,-0.02962389960885],[-0.0055540539324284,-0.049215126782656,-0.041569419205189],[-0.051577493548393,0.0013587899738923,0.059982273727655]],[[-0.0082637351006269,-0.022899521514773,-0.0072015197947621],[-0.077843226492405,-0.0077907699160278,-0.030544813722372],[-0.013939684256911,0.046619191765785,0.022849760949612]],[[-0.045529495924711,-0.041488230228424,-0.025908906012774],[8.1670819781721e-05,-0.042794350534678,0.016542177647352],[-0.074752986431122,-0.003232424845919,0.031218312680721]],[[0.022862935438752,0.035402443259954,-0.031730119138956],[-0.025483295321465,-0.079815857112408,-0.029829613864422],[-0.045477341860533,-0.055580742657185,-0.036216840147972]],[[0.025070065632463,-0.058217458426952,-0.02339044585824],[0.005620151758194,0.068012058734894,0.0097964983433485],[0.0055120419710875,0.0557751506567,0.039346698671579]],[[-0.069950275123119,0.058893017470837,-0.016298715025187],[-0.1002634614706,-0.038754291832447,-0.012820612639189],[-0.034792933613062,-0.022558791562915,-0.02609440498054]],[[-0.052680723369122,-0.054908983409405,0.070244506001472],[0.045547686517239,-0.01671876385808,-0.11351688951254],[0.026571543887258,-0.044208377599716,0.018061770126224]],[[-0.015887521207333,-0.00012481736484915,0.097875669598579],[0.052297495305538,0.013366179540753,-0.037562038749456],[0.029004361480474,0.0052279373630881,-0.0052205179817975]],[[-0.035234849900007,-0.061297900974751,-0.088778868317604],[-0.063294671475887,0.030193690210581,0.0049205552786589],[0.00253209262155,-0.084520652890205,-0.041866507381201]],[[-0.011473037302494,0.025217540562153,0.084696874022484],[-0.044052582234144,0.012627011165023,-0.067879244685173],[0.020031934604049,0.058083046227694,0.027637111023068]],[[0.040815804153681,0.042165957391262,-0.044795509427786],[0.021239703521132,0.026194930076599,-0.050427868962288],[-0.025817070156336,-0.021728005260229,-0.0069000916555524]],[[0.021549476310611,-0.032156735658646,-0.071610845625401],[-0.018054177984595,-0.046356298029423,0.011833283118904],[-0.002972322748974,-0.016402330249548,0.001265675527975]],[[-0.069301672279835,0.0015598087338731,0.054805308580399],[-0.019676638767123,0.02888129465282,0.01306947786361],[-0.049510154873133,-0.035712748765945,0.10838694870472]],[[0.00012473974493332,-0.071002945303917,-0.0026561967097223],[-0.0092235896736383,-0.0031006555072963,0.02950182557106],[0.010935411788523,0.02518211863935,-0.01192310359329]],[[0.03754847496748,0.011334924958646,0.069281652569771],[-0.021243561059237,-0.072673738002777,0.062174417078495],[0.020531928166747,-0.02601214312017,0.074220158159733]],[[-0.035103403031826,0.030891241505742,0.018689524382353],[-0.016396069899201,0.013124919496477,-0.030233567580581],[-0.012591647915542,-0.056066945195198,-0.083171814680099]]],[[[-0.036882050335407,0.019183849915862,-0.037432819604874],[0.0013984281104058,0.043809201568365,0.028723357245326],[-0.04681184142828,0.054761346429586,0.010706488974392]],[[-0.021115034818649,0.024840138852596,0.077345497906208],[-0.017769508063793,-0.046729221940041,0.0066870711743832],[-0.073817230761051,-0.020814811810851,-0.01228501368314]],[[0.0040131388232112,-0.034090209752321,0.017934948205948],[-0.019800901412964,0.043013665825129,0.048879291862249],[-0.015698038041592,-0.0025253852363676,-0.00013715302338824]],[[-0.0042957863770425,-0.070562519133091,0.0083892196416855],[-0.037392672151327,0.07299643009901,0.041766457259655],[-0.0061854934319854,-0.0045675225555897,0.069412782788277]],[[-0.045776817947626,-0.002442609751597,-0.023148618638515],[0.004230382386595,0.051670733839273,-0.012200595811009],[-0.013525859452784,0.071579128503799,0.0079485476016998]],[[-0.046690840274096,-0.011540741659701,0.020943645387888],[-0.0014879103982821,0.032109759747982,-0.089368239045143],[0.05378220975399,0.041427168995142,-0.059091821312904]],[[0.0077709406614304,0.033494606614113,0.050067123025656],[0.035725865513086,0.0017257713479921,-0.041976042091846],[0.0041502206586301,0.031208837404847,0.032978590577841]],[[0.00057011551689357,-0.078763984143734,-0.0085446666926146],[0.027094066143036,-0.016539115458727,0.0076708593405783],[-0.069447554647923,-0.0015744999982417,0.057943269610405]],[[-0.045010723173618,-0.038450922816992,-0.0065032355487347],[-0.022428767755628,-0.060641799122095,-0.0014121491694823],[0.0045372038148344,-0.01664899289608,-0.052668772637844]],[[-0.091344356536865,0.0047504380345345,0.038245186209679],[-0.01867813616991,0.048923660069704,0.0076842159032822],[0.073682971298695,0.038097411394119,0.030023612082005]],[[-0.010290758684278,0.006694451905787,0.088123008608818],[-0.019795019179583,0.028957469388843,-0.026933670043945],[-0.0018519051373005,-0.026348089799285,-0.052612129598856]],[[-0.012975689023733,-0.02020307816565,0.00015753442130517],[-0.00010656887025107,0.052983660250902,0.045094162225723],[-0.058174341917038,-0.023797564208508,-0.029363468289375]],[[0.037254765629768,0.077307321131229,0.012483701109886],[-0.089096777141094,0.035555582493544,0.075310483574867],[0.084016278386116,0.07003265619278,-0.0048661394976079]],[[0.00077469769166782,-0.029195763170719,-0.038283258676529],[-0.015532565303147,0.041383028030396,-0.050290938466787],[0.009293251670897,0.020516686141491,-0.024391751736403]],[[0.05772964656353,0.056906335055828,0.055267281830311],[0.0055805556476116,-0.0076623326167464,0.0080860462039709],[0.050707805901766,0.018322322517633,-0.025738732889295]],[[-0.069988273084164,0.0020038841757923,-0.035810180008411],[0.046864479780197,0.062493290752172,0.041282910853624],[0.023674070835114,-0.017618432641029,-0.029289558529854]],[[-0.079951904714108,-0.016047993674874,0.016162632033229],[0.073125444352627,-0.034423679113388,0.018125768750906],[-0.017719846218824,-0.036651737987995,0.0050530745647848]],[[-0.0042273360304534,-0.021211432293057,-0.024696856737137],[-0.029199393466115,0.032144289463758,-0.052369378507137],[-0.025878312066197,-0.030125575140119,0.050440419465303]],[[0.031661503016949,0.031024813652039,-0.060676574707031],[0.038139447569847,0.031036173924804,-0.011638480238616],[-0.021829344332218,0.033386822789907,0.035907492041588]],[[0.066113941371441,0.021947585046291,0.0031557090114802],[0.08240557461977,-0.022621605545282,-0.061415169388056],[-0.030746242031455,0.0044236127287149,0.031286485493183]],[[-0.0075988913886249,-0.052250023931265,0.014687568880618],[0.032664161175489,0.04661412909627,0.0089323502033949],[-0.030860468745232,-0.16348749399185,-0.032166365534067]],[[-0.0092037254944444,0.032511007040739,-0.038615774363279],[0.0097173852846026,0.050330474972725,-0.021715231239796],[-0.00081770349061117,-0.036076851189137,-0.035904724150896]],[[-0.0580850020051,-0.0047556571662426,-0.040877431631088],[-0.061010394245386,-0.013761992566288,-0.0041686850599945],[0.039136584848166,-0.066358335316181,0.034996170550585]],[[0.087109848856926,0.097435899078846,0.091302283108234],[0.027633685618639,0.054507572203875,-0.02659010887146],[-0.054101075977087,-0.18400599062443,-0.028871178627014]],[[-0.0083885500207543,-0.042284972965717,0.03033210709691],[0.054036863148212,0.071264117956161,-0.08589993417263],[-0.11926879733801,0.010340598411858,0.066228054463863]],[[0.0035177019890398,0.020133594051003,0.065646730363369],[0.039202369749546,0.011320942081511,0.041458789259195],[0.019073236733675,0.027963917702436,-0.012974438257515]],[[0.014486353844404,-0.0014208981301636,0.041356835514307],[0.016476187855005,2.2845051717013e-07,-0.0059814634732902],[-0.01275987457484,0.029049633070827,-0.052979934960604]],[[0.029527669772506,0.038772877305746,-0.030378380790353],[-0.049263130873442,0.027042772620916,0.036152981221676],[0.035230554640293,0.043642595410347,0.021070227026939]],[[0.043728489428759,0.012989513576031,-0.03410566970706],[-0.0085535999387503,-0.015656152740121,0.0087093086913228],[0.07455837726593,-0.013866512104869,0.0066328151151538]],[[0.096452109515667,-0.0073683285154402,-0.028706533834338],[0.015262895263731,-0.066764406859875,-0.017037248238921],[0.012642088346183,0.00042045608279295,0.033723052591085]],[[-0.074520736932755,-0.037521220743656,-0.0041832234710455],[0.0068454304710031,-0.027636552229524,0.064520105719566],[0.073560684919357,0.049550089985132,0.028148092329502]],[[-0.038616180419922,-0.0027598007582128,0.05459363758564],[0.030098317191005,0.026636397466063,-0.039923079311848],[-0.058287385851145,0.056526273488998,0.045081581920385]],[[-0.043392796069384,-0.0023627616465092,-0.046200904995203],[-0.068502895534039,-0.040116157382727,-0.002345920773223],[-0.015718679875135,0.023861089721322,0.060384187847376]],[[0.031334549188614,0.0056486274115741,-0.042080350220203],[-0.012350048869848,0.0045468541793525,0.024814022704959],[0.040506467223167,0.060479108244181,-0.08762189000845]],[[-0.012113034725189,-0.062203347682953,-0.0077465125359595],[-0.007048521656543,0.057328291237354,0.017742952331901],[0.081518732011318,0.057490359991789,-0.043296501040459]],[[-0.026138508692384,0.036049596965313,-0.044967282563448],[0.061211138963699,-0.033169988542795,-0.030184434726834],[-0.0058993818238378,0.04121421277523,-0.01069881953299]],[[0.050236023962498,0.031811024993658,0.014746960252523],[0.0027798069640994,-0.015976216644049,-0.044524990022182],[-0.074526727199554,0.053292877972126,0.037715084850788]],[[0.046228867024183,0.066001407802105,-0.063725329935551],[0.034609593451023,0.019773572683334,-0.042458597570658],[-0.028661835938692,-0.001114055630751,-0.073693342506886]],[[0.0057538328692317,0.026987910270691,0.060584109276533],[-0.079300604760647,0.040108446031809,-0.0092740692198277],[-0.093176320195198,-0.043671160936356,0.042313877493143]],[[0.044071737676859,-0.090230979025364,0.011736172251403],[0.032579112797976,-0.037554305046797,0.0035398497711867],[0.041608974337578,-0.021151449531317,-0.0018981583416462]],[[0.0120485778898,-0.025560520589352,0.023633413016796],[0.021210908889771,-0.017559271305799,0.00020314939320087],[-0.0048827473074198,-0.018822785466909,-0.015629097819328]],[[-0.039578881114721,-0.061622761189938,-0.039757460355759],[0.0085665257647634,-0.024057812988758,-0.0044482103548944],[-0.035537499934435,-0.045545991510153,0.075288563966751]],[[0.052908658981323,0.030620759353042,-0.047916527837515],[-0.067199409008026,0.030558908358216,-0.0068993954919279],[0.042374141514301,-0.051008697599173,0.011697834357619]],[[-0.037602689117193,0.037889152765274,0.10364946722984],[0.025357285514474,0.0034210223238915,0.048486407846212],[-0.025535009801388,0.022828614339232,0.032194092869759]],[[0.017496414482594,-0.00012359535321593,-0.02658018656075],[0.016633151099086,-0.020435988903046,0.0035753271076828],[-0.029590053483844,0.01870228163898,0.035640574991703]],[[0.070001326501369,-0.06610094755888,-0.039106249809265],[-0.052148781716824,0.0088355876505375,0.047271944582462],[-0.081925600767136,-0.017458815127611,-0.017248395830393]],[[0.043505351990461,-0.0011272636475042,-0.026439106091857],[0.021517965942621,0.036126632243395,0.0042324811220169],[0.00037676907959394,-0.054561268538237,-0.070878557860851]],[[-0.03526808694005,-0.067574024200439,-0.00082631100667641],[-0.008491538465023,0.052482377737761,0.0067296586930752],[0.022786663845181,0.10333260148764,0.019444849342108]],[[0.0035092136822641,0.10093750804663,0.061956666409969],[-0.04508663713932,0.0031317987013608,0.0095034213736653],[0.070472307503223,0.057569697499275,0.04442535713315]],[[-0.021326607093215,0.010636067017913,0.010376579128206],[-0.019611235707998,0.0096349343657494,0.063738025724888],[-0.034433823078871,0.013761046342552,0.062954440712929]],[[-0.020204834640026,0.028551276773214,-0.00029394752345979],[-0.017076892778277,-0.00011831540905405,0.0075292265973985],[0.015142578631639,0.02340785972774,0.055739011615515]],[[0.070073381066322,0.013189969584346,0.015804752707481],[0.021747751161456,-0.005227786488831,-0.0061691822484136],[0.03446976095438,-0.065361365675926,-0.08500050753355]],[[0.039264865219593,-0.0094113517552614,-0.050984188914299],[0.02231851965189,-0.02510093152523,0.060294717550278],[0.024451008066535,0.0053643295541406,0.058654595166445]],[[0.013827418908477,0.030542572960258,0.04342183098197],[0.048445921391249,-0.0095797488465905,-0.020500399172306],[-0.027818374335766,-0.08983463793993,-0.0041708331555128]],[[0.0076058581471443,-0.024491995573044,-0.0094492463395],[-0.044977262616158,0.030459087342024,0.031489849090576],[0.019912792369723,0.033012039959431,0.082174949347973]],[[-0.0056472960859537,0.029560875147581,0.012615529820323],[0.045807406306267,-0.059285957366228,-0.045454457402229],[0.050760518759489,0.023128096014261,0.022340247407556]],[[-0.015321228653193,0.052502498030663,0.0061135529540479],[0.015498160384595,-0.0075594335794449,0.013260333798826],[-0.0040643671527505,0.071328699588776,-0.030615419149399]],[[-0.033482115715742,0.001594745204784,-0.051209878176451],[0.019027445465326,0.0093298004940152,-0.047997988760471],[0.062567003071308,-0.017899811267853,-0.00029158397228457]],[[0.020063910633326,-0.043729387223721,-0.051135778427124],[0.058643650263548,0.0042978166602552,-0.039522960782051],[-0.045287996530533,0.041616033762693,-0.022138372063637]],[[0.0013784548500553,-0.0059846341609955,-0.0050925128161907],[-0.019705686718225,-0.0037280356045812,-0.053429841995239],[-0.036744698882103,0.026641761884093,0.005024041980505]],[[0.019287316128612,-0.027493281289935,-0.025530990213156],[-0.014785156585276,0.074223190546036,0.0191869456321],[-0.074662610888481,-0.039314307272434,-0.0039846496656537]],[[-0.026447569951415,0.011031932197511,0.035162784159184],[-0.012138206511736,-0.0016335175605491,-0.045752562582493],[-0.041194014251232,0.10242258012295,-0.0086045498028398]],[[0.017434746026993,0.04940202459693,0.0097206402570009],[-0.045023530721664,0.010948515497148,-0.0095398323610425],[0.01171712204814,-0.020878039300442,-0.0032893284223974]],[[0.028721136972308,-0.040919557213783,-0.0250299051404],[0.015233275480568,0.037219006568193,0.040631949901581],[-0.033825989812613,-0.043251074850559,0.014173750765622]],[[-0.010554055683315,0.022898243740201,-0.0057616387493908],[0.035610873252153,-0.047876533120871,-0.051938988268375],[-0.011354807764292,0.037631340324879,0.0046012289822102]],[[0.002399823628366,-0.040491655468941,-0.0058001214638352],[-0.029977716505527,0.013789977878332,-0.026184126734734],[0.03476220369339,-0.021339556202292,0.0039535025134683]],[[-0.042228508740664,-0.055739171802998,-0.00056089751888067],[-0.069643571972847,-0.033171691000462,0.0018336898647249],[0.089671567082405,-0.0038946454878896,0.053690146654844]],[[-0.050169233232737,0.0011765512172133,0.0022202481050044],[-0.035791244357824,0.033497679978609,0.028675733134151],[-0.06163227558136,-0.033260677009821,0.010648158378899]],[[0.059526365250349,0.0051921135745943,-0.035610735416412],[-0.0071727349422872,0.017943605780602,-0.04652601853013],[0.054581087082624,0.054046493023634,0.011138504371047]],[[-0.037536647170782,-0.02610562928021,-0.051961626857519],[0.053535133600235,-0.065685950219631,0.044792264699936],[-0.027895817533135,-0.029626434668899,0.011234224773943]],[[0.011585017666221,0.050766292959452,-0.043077606707811],[-0.02102273888886,0.029339618980885,-0.045335918664932],[0.0054123639129102,-0.03681667894125,0.032890375703573]],[[0.032317742705345,-0.00098611484281719,0.0150106260553],[-0.030454773455858,-0.068145111203194,-0.023559493944049],[0.027071941643953,-0.038573820143938,-0.0056598554365337]],[[-0.011840015649796,-0.010940317064524,0.022129192948341],[-0.16024474799633,0.090348489582539,0.01888825558126],[-0.076776877045631,0.034613151103258,0.014685725793242]],[[-0.00082487869076431,0.12875306606293,0.05045099183917],[-0.082887716591358,0.075332447886467,0.01539056841284],[0.0083715450018644,-0.0030956440605223,0.022779259830713]],[[-0.017913978546858,-0.020282421261072,-0.065493904054165],[0.033588200807571,0.028102686628699,0.059518188238144],[0.010843029245734,-0.032551534473896,0.035849504172802]],[[-0.00032994858338498,-0.012173404917121,-0.04524115473032],[-0.021413514390588,0.045783966779709,0.0050242780707777],[0.0017231903038919,0.10400035232306,0.024045739322901]],[[0.0055106235668063,0.093543082475662,-0.010621988214552],[0.0015141540206969,0.048385966569185,-0.0055270711891353],[0.026954578235745,-0.012942339293659,0.031615994870663]],[[-0.045236080884933,0.04259616881609,-0.021380335092545],[0.00095871888333932,-0.020155729725957,0.032151397317648],[-0.043626628816128,-0.021746451035142,0.030713964253664]],[[0.011135297827423,-0.011770471930504,0.00088487425819039],[0.016359062865376,-0.015650972723961,0.005176258739084],[0.024644976481795,0.015490872785449,0.021629000082612]],[[0.045394390821457,-0.0091248126700521,0.025451395660639],[0.04518073797226,-0.044760458171368,-0.014778957702219],[-0.048131238669157,-0.063404597342014,0.0098409540951252]],[[0.068640373647213,0.065143257379532,-0.068698741495609],[0.056330721825361,-0.033448379486799,-0.015296653844416],[-0.0015169006073847,-0.046312212944031,-0.042460512369871]],[[0.025422295555472,0.058195672929287,-0.049456607550383],[0.021372713148594,-0.0080513022840023,0.032069161534309],[0.024041287600994,0.037405762821436,-0.014583375304937]],[[-0.031256772577763,0.0059645376168191,-0.017235664650798],[0.033328708261251,-0.017286026850343,-0.045611917972565],[0.0028979922644794,0.036570005118847,0.089896231889725]],[[-0.00065348885254934,-0.053618557751179,-0.0026915143243968],[0.057499960064888,-0.023437233641744,0.015565081499517],[-0.0053838393650949,0.024016872048378,-0.10760540515184]],[[0.0056297150440514,-0.065026521682739,-0.040238469839096],[0.036177232861519,-0.028625974431634,0.021720269694924],[0.036022093147039,-0.02668746933341,-0.081504657864571]],[[-0.057786516845226,0.032854788005352,0.011443952098489],[0.0038033497985452,0.011434307321906,0.037902191281319],[0.027986038476229,0.026906592771411,0.0025137602351606]],[[-0.044229745864868,-0.0039655594155192,-0.052134208381176],[-0.022554749622941,-0.019255362451077,-0.03918644785881],[-0.011099656112492,-0.0042510316707194,0.078877650201321]],[[-0.12442324310541,0.0040239095687866,-0.010892985388637],[-0.015863709151745,0.13056997954845,0.0059857019223273],[-0.045900631695986,0.063285231590271,0.00076890538912266]],[[0.0078931488096714,-0.042913604527712,0.038016643375158],[0.0090860808268189,-0.032566793262959,0.017304245382547],[-0.014659686945379,-0.024369953200221,-0.078898653388023]],[[0.013561773113906,0.012975907884538,0.02928538993001],[-0.041144460439682,-0.0071970061399043,0.048120517283678],[-0.033350128680468,-0.027470199391246,0.032171130180359]],[[-0.020548326894641,-0.01950248517096,-0.0037136455066502],[0.077191837131977,-0.072816774249077,0.034962270408869],[-0.024905757978559,-0.025730479508638,-0.029344720765948]],[[-0.0069409464485943,-0.045540846884251,0.076202124357224],[0.018641710281372,-0.032677799463272,0.073391653597355],[0.014660969376564,-0.028512051329017,0.041469607502222]],[[0.013043833896518,0.0032596045639366,0.027744917199016],[0.11193593591452,0.061651073396206,0.07287459820509],[-0.011979817412794,-0.045432988554239,0.010193078778684]],[[-0.019930403679609,0.0076923402957618,-0.0039400663226843],[0.02852070517838,0.014920920133591,0.02642266266048],[-0.039135660976171,0.078030861914158,-0.018275875598192]],[[0.039593253284693,0.021027971059084,0.024247488006949],[0.12696433067322,-0.047351662069559,-0.014235462062061],[-0.0070565016940236,-0.052167098969221,0.067977398633957]],[[-0.007435979321599,-0.062514513731003,-0.014874278567731],[0.089116908609867,-0.016735607758164,-0.047476056963205],[0.058342836797237,-0.086955793201923,-0.0019347912166268]],[[0.015375046990812,0.0017088650492951,0.022268902510405],[-0.084781982004642,-0.050647709518671,0.061087176203728],[-0.0038842025678605,-0.053992230445147,-0.022168105468154]],[[0.030365951359272,0.030094953253865,-0.0011142698349431],[-0.02506572753191,-0.061849761754274,-0.025849528610706],[0.074022836983204,0.035386327654123,0.038878582417965]],[[0.048516694456339,-0.0056302305310965,-0.045964576303959],[0.058259528130293,0.029900593683124,0.027943026274443],[0.022713549435139,-0.0064511741511524,-0.073939174413681]],[[0.02819399908185,0.029876321554184,-0.031191157177091],[0.015101036988199,0.097668647766113,0.02686751075089],[-0.0245590955019,-0.031439241021872,0.049956895411015]],[[0.0076398979872465,-0.10442271083593,0.0004130880406592],[-0.08625602722168,-0.023816950619221,0.052006203681231],[-0.032033361494541,0.03216952085495,0.08924662321806]],[[-0.017296286299825,0.097708344459534,0.038747921586037],[-0.079268150031567,0.054818004369736,0.073556832969189],[-0.09544350206852,0.014662397094071,0.064189478754997]],[[0.025800632312894,0.015868987888098,-0.026348834857345],[0.023718504235148,0.0523921251297,-0.0027821785770357],[-0.075179249048233,0.043998923152685,-0.0054255970753729]],[[-0.038899213075638,0.01181516982615,0.027723681181669],[-0.047959297895432,0.0025069168768823,0.041100103408098],[-0.006491887383163,-0.0032832440920174,-0.034907419234514]],[[0.066653557121754,0.052879512310028,-0.02239496819675],[-0.047136373817921,-0.072061143815517,-0.013103602454066],[0.036565437912941,-0.076566621661186,-0.042870510369539]],[[0.01410142891109,0.07785302400589,0.046814493834972],[0.011179050430655,-0.018321085721254,0.029399668797851],[-0.064220681786537,0.01760027371347,0.0015081193996593]],[[0.00927759334445,0.032103154808283,-0.013635293580592],[0.05308835208416,0.074272952973843,-0.050136640667915],[-0.00313660944812,-0.088151320815086,-0.051358714699745]],[[0.011239741928875,0.030991829931736,-0.023782268166542],[0.077946953475475,0.035617757588625,-0.042855262756348],[0.042375802993774,-0.10160014033318,0.024922182783484]],[[-0.019321603700519,0.016278041526675,-0.010747882537544],[-0.032343048602343,-0.043796595185995,-0.010316664353013],[-0.017979476600885,0.01262332033366,-0.075207374989986]],[[0.026474250480533,-0.03972177579999,-0.0061093708500266],[0.021344443783164,-0.064179435372353,0.047173608094454],[0.02374678850174,-0.054824825376272,-0.031826823949814]],[[-0.0033817803487182,-0.067914083600044,0.017183309420943],[-0.022032368928194,-0.0087265679612756,0.027160428464413],[-0.030412700027227,-0.073305867612362,-0.017123863101006]],[[0.011366381309927,0.078393399715424,0.011213825084269],[0.027205221354961,-0.014363552443683,-0.035228010267019],[-0.081478998064995,0.038991447538137,0.017090523615479]],[[0.011100496165454,-0.039834134280682,-0.01727063395083],[0.018408393487334,-0.017769323661923,0.0043069166131318],[0.091766446828842,0.048747252672911,-0.010096395388246]],[[-0.011929037049413,0.026754969730973,0.0024427797179669],[-0.011400979943573,0.025808213278651,0.054995108395815],[-0.066694051027298,0.022315127775073,0.019466878846288]],[[-0.028830422088504,-0.029350893571973,-0.028479496017098],[-0.046390943229198,0.019498830661178,-0.034944772720337],[-0.012003728188574,-0.03497950732708,-0.013144015334547]],[[-0.0058351783081889,-5.3685595048591e-05,-0.053635574877262],[0.015059682540596,0.0058876615948975,-0.014112833887339],[0.0064404709264636,-0.018268100917339,-0.0051025822758675]],[[0.00012638288899325,0.0091786962002516,-0.097614333033562],[-0.00044662918662652,0.0046663773246109,-0.082795403897762],[0.02270626090467,0.05845732241869,0.027258209884167]],[[0.020658256486058,0.090279400348663,-0.079716682434082],[0.0090081999078393,0.026234837248921,-0.048739660531282],[0.069084517657757,0.039089415222406,-0.082392320036888]],[[0.033653188496828,-0.01329333242029,-0.07854525744915],[0.023924570530653,-0.032264724373817,-0.031669247895479],[0.028215290978551,0.017612494528294,0.038065444678068]],[[-0.067853078246117,-0.086475409567356,-0.01843649148941],[0.063864439725876,-0.033809967339039,0.01133384834975],[0.11948014050722,0.022776201367378,0.058946132659912]],[[-0.12493401020765,-0.0046642003580928,0.0033919604029506],[-0.12768815457821,-0.036938767880201,-0.022488435730338],[-0.044987265020609,-0.0092492457479239,0.029282512143254]],[[0.063638992607594,0.003474457655102,-0.0077306325547397],[0.031742766499519,0.044284898787737,-0.054271724075079],[-0.047767829149961,-0.13128024339676,-0.033244349062443]],[[-0.027885410934687,0.00079859746620059,0.021290238946676],[0.012267967686057,-0.10755751281977,0.044705085456371],[0.023785926401615,-0.020709896460176,0.026496160775423]],[[0.019553339108825,0.017746090888977,-0.022546546533704],[0.0085228187963367,0.0113126616925,-0.011296391487122],[-0.03141750022769,-0.033834088593721,0.023006491363049]],[[-0.059837576001883,0.047787830233574,-0.012172164395452],[0.011923133395612,-0.01921477727592,-0.04359257593751],[0.025171812623739,0.026701161637902,0.02460615709424]],[[0.036220334470272,-0.0035781259648502,-0.010433360002935],[-0.051231183111668,0.023244842886925,0.027544835582376],[0.017649421468377,0.0097972331568599,0.02434597723186]],[[0.0074699074029922,0.071772389113903,0.067169539630413],[0.0016312550287694,-0.036192391067743,-0.042360480874777],[-0.016944400966167,-0.020410355180502,0.086580060422421]],[[-0.050418954342604,0.016840159893036,0.014919554814696],[0.010641970671713,0.011462571099401,0.0097969556227326],[0.042095094919205,0.026473412290215,-0.062153462320566]]],[[[0.057848405092955,-0.035303134471178,0.011091839522123],[-0.020414033904672,-0.044100392609835,-0.0067443405278027],[-0.0062231747433543,-0.015903271734715,0.050497930496931]],[[0.11130610108376,-0.044047422707081,0.026227479800582],[0.013410637155175,-0.037930365651846,0.061165012419224],[0.013104719109833,0.034850921481848,-0.01331590488553]],[[0.040340777486563,-0.060950394719839,0.011871666647494],[-0.0094063188880682,0.061087287962437,0.020205345004797],[0.06114375218749,-0.018931787461042,0.0014852127060294]],[[0.0025720186531544,0.033066857606173,0.070351041853428],[0.019593983888626,0.0013595892814919,0.022341361269355],[-0.024262994527817,0.047192845493555,0.028031583875418]],[[-0.01830693334341,-0.022397523745894,-0.017829593271017],[0.040141191333532,0.016288369894028,0.042097188532352],[-0.040212422609329,-0.026879444718361,0.0032172072678804]],[[-0.034533776342869,-0.008656213991344,0.012487744912505],[-0.00089884485350922,-0.0091261565685272,-0.0080734295770526],[-0.060050245374441,0.065015003085136,-0.053081296384335]],[[0.02181376889348,-0.054100096225739,-0.038854911923409],[-0.019752817228436,-0.024403376504779,0.011150189675391],[0.052368368953466,-0.025453265756369,-0.014516990631819]],[[0.01984747685492,-0.0081695141270757,0.022357065230608],[-0.013339252211154,0.0047368970699608,-0.0010619821259752],[-0.022547606378794,0.013494234532118,0.028894439339638]],[[0.020745478570461,0.019752411171794,0.0085620041936636],[-0.014881758950651,-0.090161815285683,0.035082202404737],[0.0059048729017377,0.086066745221615,0.032034207135439]],[[-0.037754729390144,0.13521787524223,-0.01433034427464],[-0.04261402413249,-0.019595958292484,0.041020181030035],[0.001344199758023,0.043243523687124,0.032810568809509]],[[0.011230078525841,0.045939467847347,-0.0068075493909419],[0.04718841984868,-0.034243684262037,-0.046177171170712],[-0.023491283878684,0.033079296350479,0.017200915142894]],[[-0.015280672349036,0.053134329617023,0.025672763586044],[0.01530007366091,0.046016689389944,0.018946850672364],[-0.013233656994998,0.02903907187283,-0.015120322816074]],[[0.01907766237855,-0.047759685665369,0.026723368093371],[0.053682249039412,0.065502889454365,-0.005543686915189],[-0.0082972012460232,-0.023325476795435,0.0025804187171161]],[[0.054460201412439,0.037325039505959,0.047568861395121],[0.05970311164856,0.032694898545742,0.032851733267307],[-0.043915994465351,0.026866983622313,0.01897550933063]],[[0.06371233612299,0.031451597809792,0.02898770943284],[0.052255962044001,0.0054214266128838,-0.013647425919771],[0.02692399173975,0.079882875084877,-0.0029105241410434]],[[0.036285411566496,0.0088094463571906,-0.01828264631331],[-0.02359371073544,-0.004639376886189,-0.023188898339868],[-0.052452605217695,0.063213117420673,0.04471630603075]],[[0.066473506391048,0.0039794268086553,0.00097997288685292],[-0.039706707000732,0.00010207373270532,-0.040235128253698],[-0.068111099302769,0.065084509551525,-0.037526182830334]],[[0.033915147185326,0.045505285263062,0.018946291878819],[-0.011728595010936,0.070976577699184,0.0037052794359624],[0.00093711854424328,-0.020079469308257,6.2480146880262e-05]],[[-0.034631483256817,0.0045282281935215,0.018322514370084],[-0.014989342540503,-0.067515805363655,0.0099787730723619],[-0.0034032044932246,0.0049054473638535,0.063357263803482]],[[0.0047585922293365,0.066734872758389,-0.040553018450737],[-0.024158077314496,0.042495828121901,-0.0035787329543382],[0.049698796123266,0.0012018930865452,-0.072236642241478]],[[-0.081246979534626,0.044129427522421,0.076538018882275],[-0.026031654328108,-0.033307623118162,0.0036017228849232],[0.095740050077438,-0.031718712300062,-0.059539247304201]],[[0.023205123841763,-0.0521708317101,0.026476543396711],[0.0079067554324865,0.0080494312569499,-0.011070413514972],[0.073101587593555,0.010530498810112,-0.020735224708915]],[[-0.014658763073385,-0.05522657558322,-0.014436289668083],[0.016685640439391,-0.0041909171268344,-0.039331581443548],[-0.034790392965078,0.039783757179976,-0.0056236214004457]],[[-0.019149864092469,0.013662716373801,-0.029236486181617],[-0.07512167096138,0.076155506074429,-0.0017939624376595],[-0.076498188078403,0.0057285036891699,-0.00020004356338177]],[[0.0024801252875477,-0.0012371628545225,0.046607386320829],[-0.046561881899834,0.039615102112293,0.021076284348965],[0.028619185090065,0.041646666824818,0.06243746727705]],[[0.016962377354503,0.096678629517555,-0.0097591057419777],[-0.037127919495106,0.035440169274807,0.049419268965721],[0.033067755401134,0.032801788300276,0.0016831497196108]],[[-0.022790426388383,0.055485017597675,-0.013513663783669],[0.0067552230320871,0.035925049334764,-0.023144325241446],[0.042238980531693,-0.071911841630936,0.011306351050735]],[[-0.050656359642744,-0.080822840332985,0.016455445438623],[0.0022520306520164,0.046443819999695,-0.054876327514648],[-0.014365675859153,-0.051187835633755,0.012084977701306]],[[0.019640162587166,0.023194994777441,-0.054251905530691],[0.089740559458733,-0.0064562503248453,-0.026379199698567],[-0.036985028535128,0.001462756539695,0.0014811813598499]],[[-0.1035688444972,0.072791889309883,-0.0066122710704803],[0.039138365536928,-0.042246431112289,0.0091104405000806],[-0.034874927252531,0.076515324413776,-0.036471776664257]],[[-0.0037908744998276,-0.057738374918699,0.021561006084085],[-0.028299167752266,-0.022596661001444,0.0016694610239938],[-0.038311719894409,0.070325404405594,0.014208395965397]],[[-0.045437827706337,0.026506219059229,0.046145305037498],[0.038553528487682,-0.011459379456937,-0.060805723071098],[0.029185615479946,-0.086412779986858,0.017913138493896]],[[0.032735828310251,0.01001416798681,0.06250786781311],[-0.038148272782564,0.00019386413623579,0.048898760229349],[0.031967394053936,-0.031325299292803,-0.018081791698933]],[[-0.043210707604885,0.051385935395956,0.04326730966568],[0.014933913014829,0.0050640706904233,0.054153688251972],[-0.030831625685096,0.031146196648479,-0.054369997233152]],[[0.041846856474876,0.036238204687834,0.018664702773094],[0.05366088822484,0.040644574910402,-0.026695508509874],[-0.032441988587379,0.031303383409977,0.014281331561506]],[[0.031868472695351,-0.017859064042568,-0.022898521274328],[0.021264841780066,0.03343328088522,-0.011148307472467],[-0.054853055626154,0.065954893827438,-0.0036434251815081]],[[-0.068538337945938,0.038546647876501,-0.032411053776741],[0.012802361510694,-0.11679684370756,0.0053343973122537],[-0.036889981478453,0.061869975179434,0.0095074661076069]],[[-0.087840765714645,-0.029311386868358,0.02509661950171],[0.0049058035947382,0.055864609777927,0.064739361405373],[0.042821183800697,0.017415374517441,-0.0030304868705571]],[[-0.026861133053899,0.020265556871891,-0.028236489742994],[0.026791363954544,-0.010975957848132,0.022331582382321],[0.0018533116672188,-0.0066902060061693,0.032357834279537]],[[-0.062375128269196,-0.071596018970013,0.012383951805532],[-0.065205283463001,-0.0026134529616684,0.0096866404637694],[0.00074796692933887,0.044747825711966,0.011775387451053]],[[-0.041265234351158,-0.0024116383865476,-0.039927262812853],[-0.0015298873186111,0.059234626591206,0.045196212828159],[-0.014040324836969,0.070254229009151,-0.081039614975452]],[[0.016817085444927,-0.011528178118169,-0.0030700706411153],[0.017062462866306,-0.040422040969133,-0.062274403870106],[0.0037519151810557,-0.010348290205002,0.032578509300947]],[[-0.03392318636179,0.099856540560722,-0.0016654392238706],[0.040358252823353,0.0054993792437017,0.034044831991196],[0.028716370463371,0.0022131146397442,-0.063606195151806]],[[-0.026292145252228,-0.058964151889086,-0.028256753459573],[-0.0064577292650938,0.027962632477283,-0.10527660697699],[-0.035700894892216,0.069086126983166,-0.042638540267944]],[[-0.00061621761415154,0.095863930881023,-0.0028430793900043],[-0.023936253041029,0.05308872833848,-0.078678846359253],[-0.011703490279615,0.050380956381559,0.097526714205742]],[[-0.0057615009136498,-0.043948408216238,0.0079056257382035],[-0.014377801679075,-0.092201508581638,0.03697507083416],[0.058260191231966,0.01256303396076,0.041405510157347]],[[0.06347431242466,-0.017682945355773,-0.01737123914063],[-0.051487572491169,-0.0058153606951237,0.0089892232790589],[-0.011507794260979,-0.014952341094613,0.051293727010489]],[[-0.0026985562872142,0.042609710246325,0.036900959908962],[-0.0093539301306009,0.058590568602085,-0.04823936522007],[-0.036374036222696,0.027753014117479,0.065715491771698]],[[-0.05588847771287,0.032563045620918,0.016730576753616],[0.029478631913662,-0.083154931664467,0.0043829353526235],[-0.013265620917082,-0.055743396282196,0.0053151082247496]],[[-0.039614051580429,0.016735959798098,0.032031528651714],[-0.061933819204569,0.019658472388983,-0.0112463561818],[-0.054337073117495,-0.037351809442043,-0.049274448305368]],[[-0.001293905894272,0.05236578732729,0.039615668356419],[0.020736217498779,0.0092504527419806,-0.0032411175779998],[-0.026246318593621,0.051704291254282,-0.065673835575581]],[[-0.077024377882481,0.042702317237854,0.041362501680851],[-0.048643592745066,-0.016475420445204,0.024415256455541],[0.050611164420843,-0.076994962990284,-0.073277197778225]],[[-0.030474554747343,-0.043315701186657,-0.015471891500056],[0.0033346293494105,0.0174838937819,-0.031082384288311],[-0.045719720423222,0.033912025392056,0.02665613219142]],[[0.05033602938056,0.022711593657732,-0.058370362967253],[0.08523216098547,-0.11202547699213,0.048831958323717],[-0.019737044349313,0.022444400936365,-0.0086808456107974]],[[0.0061267744749784,-0.045444879680872,-0.016099726781249],[-0.024628080427647,-0.0052364598959684,0.054126963019371],[0.0068108648993075,-0.022896789014339,-0.030452560633421]],[[-0.0983522310853,-0.014556085690856,0.0059822699986398],[-0.0058609703555703,0.036260761320591,0.051161576062441],[0.0087162032723427,0.032721858471632,0.0027634971775115]],[[0.081375196576118,-0.00087288283975795,-0.019088411703706],[0.029944581910968,-0.064085461199284,-0.03422237932682],[0.0028869449160993,0.028397319838405,0.071770250797272]],[[0.018682951107621,-0.017767628654838,-0.017623391002417],[-0.046431828290224,0.021143231540918,-0.0090049868449569],[-0.047958478331566,-0.012452652677894,-0.019544389098883]],[[-0.019856574013829,0.067016623914242,0.015881126746535],[-0.017735082656145,0.018554762005806,-0.019499640911818],[-0.0016698212129995,0.021138537675142,0.058773197233677]],[[-0.038395885378122,0.010334693826735,0.0013315529795364],[-0.028609441593289,0.014252227731049,0.049186170101166],[0.0216627959162,-0.049393590539694,-0.028930960223079]],[[-0.0089777512475848,0.044853620231152,0.078264340758324],[0.058708276599646,0.01302510779351,0.097892224788666],[-0.028662420809269,0.036559443920851,0.017257153987885]],[[-0.08446504175663,0.044259045273066,0.026027223095298],[-0.05166669562459,0.0037412813398987,0.010279236361384],[0.0022955713793635,-0.073911227285862,0.028042806312442]],[[0.01483562681824,0.035628445446491,0.024010792374611],[-0.028228187933564,-0.020038088783622,0.0073845214210451],[0.017693160101771,0.12329965829849,0.042765259742737]],[[-0.0496562756598,0.0055038328282535,-0.013239087536931],[0.013099789619446,0.085118263959885,0.020053215324879],[0.016905626282096,0.031119944527745,0.010271344333887]],[[0.060554184019566,0.0096446825191379,-0.033534251153469],[0.021386843174696,0.017878174781799,0.021593369543552],[-0.088526532053947,0.0082167182117701,0.039475351572037]],[[-0.099677406251431,0.0076709543354809,0.13569967448711],[-0.057437568902969,0.083447933197021,0.035653166472912],[-0.06680916249752,0.035847924649715,0.04041063785553]],[[0.050435502082109,0.05561576411128,-0.062083747237921],[0.068741612136364,-0.029994398355484,0.06912138313055],[-0.039904318749905,-0.039908073842525,0.066688142716885]],[[0.013750473037362,0.012981738895178,0.10760653018951],[0.024237386882305,8.7728440121282e-06,0.027161715552211],[0.018754532560706,0.014669619500637,-0.00095349049661309]],[[0.035644434392452,-0.013818002305925,0.0034777082037181],[-0.050290569663048,0.004437196534127,-0.026038464158773],[-0.0053429836407304,0.060180678963661,0.0328100733459]],[[0.05388567596674,0.06568256020546,0.053748425096273],[0.0033234073780477,-0.040382068604231,-0.0008153123781085],[-0.042131714522839,0.043152265250683,-0.064913295209408]],[[0.01418375223875,0.00076024956069887,0.024687372148037],[-0.054672788828611,0.059972953051329,-0.0024697163607925],[0.078932568430901,0.0014006104320288,0.040356885641813]],[[-0.041418075561523,-0.057798516005278,-0.010048498399556],[0.017003312706947,0.064815290272236,0.057956844568253],[-0.029395505785942,-0.0054706283845007,-0.023801129311323]],[[-0.072349719703197,0.021808652207255,0.06487949192524],[0.018577111884952,-0.015573254786432,0.029588811099529],[-0.0069748610258102,0.0092411553487182,0.049180880188942]],[[0.05965481325984,-0.067411758005619,0.026390988379717],[0.040467087179422,0.016699261963367,0.0027968320064247],[0.084727898240089,0.0035814528819174,0.057132236659527]],[[0.021343952044845,-0.0093180481344461,-0.085157744586468],[-0.058393839746714,-0.044861331582069,0.029100347310305],[0.029838297516108,0.029832364991307,0.028327452018857]],[[-0.048962131142616,0.0087829204276204,0.068492524325848],[-0.026507439091802,0.099666818976402,-0.036466255784035],[-0.0085079874843359,0.0035579779651016,0.053748190402985]],[[0.0083293179050088,0.003201070940122,0.015339440666139],[-0.008742923848331,-0.037259690463543,-0.019618287682533],[0.037598229944706,0.10981716215611,0.018893742933869]],[[-0.018417906016111,0.029297837987542,-0.078636102378368],[-0.059070758521557,-0.012935840524733,-0.011757852509618],[-0.049356274306774,0.021501153707504,0.077572450041771]],[[-0.075940363109112,0.030114073306322,-0.030676422640681],[0.042767703533173,-0.034506715834141,-0.04695500433445],[0.10089953988791,0.011651311069727,0.045949716120958]],[[-0.00078857532935217,0.028610015287995,0.035036347806454],[-0.050711948424578,0.033805046230555,0.073505163192749],[0.028510997071862,-0.11913128942251,0.066009268164635]],[[-0.043214306235313,0.0052157654426992,-0.048931244760752],[-0.020622400566936,-0.020633533596992,0.012767774052918],[-0.018424868583679,-0.067857570946217,0.022979680448771]],[[0.0011263651540503,0.032212596386671,-0.0014410237781703],[-0.029968541115522,-0.089734829962254,0.049984157085419],[-0.0095824403688312,0.017013916745782,0.031671229749918]],[[0.031409602612257,-0.0082800816744566,0.035670600831509],[0.015921875834465,-0.026634097099304,-0.0049000475555658],[-0.043850213289261,0.081452421844006,0.05122260376811]],[[0.011010987684131,0.037752356380224,0.052281849086285],[-0.0011689984239638,-0.080663368105888,-0.045170929282904],[-0.061853189021349,0.029758790507913,0.010856878012419]],[[-0.061884339898825,-0.032678451389074,-0.0025557789485902],[0.020673586055636,-0.10439176112413,0.033475037664175],[0.037238601595163,0.025861322879791,-0.0374556183815]],[[0.090416789054871,-0.01353448908776,-0.0078538917005062],[0.03429751098156,-0.040059454739094,-0.061799984425306],[-0.045791041105986,0.07945254445076,0.077572718262672]],[[-0.026615289971232,-0.026783388108015,0.061432242393494],[0.015718605369329,0.061689868569374,0.023193458095193],[0.020918175578117,-0.031239211559296,-0.001040298724547]],[[0.014073737896979,0.060527563095093,-0.07634662091732],[-0.072540573775768,0.0087497513741255,-0.031949333846569],[0.0037097495514899,0.02346570417285,0.01965095475316]],[[-0.0073173879645765,-0.0025307857431471,0.026634134352207],[-0.052778217941523,-0.0042045321315527,-0.00064530316740274],[-0.032594904303551,-0.0018087814096361,0.02039903216064]],[[0.034267127513885,-0.031144767999649,0.023582834750414],[0.0015574459685013,-0.069640293717384,0.052175171673298],[-0.012456311844289,0.031745690852404,-0.035876967012882]],[[-0.013160564936697,0.010256564244628,-0.084613412618637],[-0.00024105233023874,0.015886122360826,0.016770081594586],[0.038479771465063,0.021439354866743,-0.0050773560069501]],[[-0.0051861512474716,-0.015190236270428,0.038214672356844],[0.0016505678649992,0.00091691286070272,0.042765330523252],[0.035956088453531,0.0076493290252984,0.023629372939467]],[[0.030822966247797,-0.030611405149102,0.030877998098731],[0.034975346177816,0.048459023237228,-0.015283371321857],[-0.061408162117004,0.0021400889381766,0.037738353013992]],[[0.067524120211601,0.025431698188186,0.090152509510517],[-0.036120522767305,0.060694444924593,-0.0038392120040953],[0.0051712826825678,0.012090084142983,0.0060303132049739]],[[0.018425906077027,-0.006509920116514,0.041516236960888],[-0.0068478267639875,0.047095254063606,0.034172873944044],[0.013742280192673,0.0015995391877368,0.024120561778545]],[[-0.017286293208599,0.031834624707699,0.038549557328224],[-0.054376170039177,-0.0012014905223623,-0.03108368627727],[0.010579185560346,0.0236457567662,0.048127342015505]],[[0.032934211194515,0.0065323850139976,0.03080040588975],[-0.0043748165480793,0.01729579642415,-0.0083077158778906],[0.033487323671579,-0.035701885819435,0.035953357815742]],[[0.021126728504896,0.015854561701417,-0.024056505411863],[-0.034834016114473,0.018719907850027,0.01618355512619],[-0.005692495033145,0.020955571904778,0.039284825325012]],[[0.04675130546093,-0.012091975659132,-0.03713645786047],[-0.046078648418188,0.038287468254566,-0.031701546162367],[0.051402647048235,0.012472077272832,-0.030001986771822]],[[0.024337165057659,0.0075830393470824,0.0039409566670656],[-0.0078221978619695,0.029024261981249,-0.016948416829109],[0.035259041935205,-0.018368935212493,-0.0044025257229805]],[[0.023660717532039,0.032450594007969,-0.01442748401314],[-0.0052896365523338,-0.081922799348831,-0.049401093274355],[0.027428466826677,-0.013283342123032,0.023611485958099]],[[-0.078389339148998,-0.049291349947453,-0.012696349993348],[0.065450921654701,0.023179933428764,0.020080238580704],[-0.0046512265689671,-0.013936037197709,-0.0020782339852303]],[[0.02689572609961,-0.041003942489624,0.017570251598954],[-0.029122451320291,-0.0087885102257133,0.060596596449614],[-0.10771802067757,-0.0037185410037637,-0.021891182288527]],[[-0.076134420931339,0.0046329507604241,0.0039858175441623],[-0.014477826654911,-0.030224803835154,0.017010416835546],[-0.031967513263226,0.048467185348272,-0.084789164364338]],[[-0.00012598383182194,0.063803069293499,0.0075470418669283],[-0.021253108978271,0.010481378994882,-0.044152211397886],[0.05798352509737,-0.053430117666721,-0.0062427194789052]],[[0.013402161188424,-0.011380773037672,0.054647106677294],[0.028222393244505,0.044599700719118,-0.08601039648056],[-0.062007058411837,-0.038757529109716,-0.04518198594451]],[[0.05564196407795,0.0070111127570271,-0.070968776941299],[-0.023027433082461,0.060284975916147,0.0075966361910105],[0.028915705159307,0.0077283107675612,0.036744549870491]],[[-0.014253832399845,0.051975935697556,-0.071566440165043],[0.0012899517314509,-0.01940606534481,-0.030938278883696],[-0.012990221381187,-0.041984509676695,-0.010953576304018]],[[0.030992431566119,0.044494278728962,-0.011248216964304],[0.082288771867752,-0.021893696859479,-0.017371989786625],[-0.028317116200924,0.015931995585561,-0.076998896896839]],[[0.020255582407117,-0.00011763436486945,0.050838951021433],[-0.033982843160629,0.061819680035114,-0.056702069938183],[0.12555687129498,0.0036943748127669,-0.052668951451778]],[[-0.027367383241653,-0.0025980691425502,0.041112039238214],[0.064444154500961,0.016098879277706,0.0069528920575976],[0.09742197394371,0.0056503326632082,0.0024529157672077]],[[-0.053572714328766,0.015775851905346,-0.01133967936039],[-0.012539001181722,-0.0030560111626983,-0.075450636446476],[-0.0013696763198823,-0.025841951370239,0.070298999547958]],[[-0.071223013103008,-0.054594092071056,0.039891444146633],[-0.031186046078801,-0.038554165512323,0.049869481474161],[0.025345295667648,0.06485553830862,-0.018906850367785]],[[-0.075458735227585,0.065805420279503,0.013122744858265],[-0.007360199932009,-0.020821914076805,0.0098245209082961],[0.04020943120122,-0.0044968179427087,0.043006896972656]],[[-0.068184353411198,0.016220141202211,0.0024236391764134],[0.035043757408857,-0.019613260403275,-0.028040558099747],[0.0049104639329016,-0.041728686541319,-3.1824471079744e-05]],[[-0.026931224390864,0.034477815032005,0.018307007849216],[-0.050419963896275,-0.019335018470883,0.019960422068834],[0.0066366582177579,0.061503808945417,0.022802578285336]],[[-0.0060243280604482,-0.0098676150664687,-0.024444514885545],[0.046014130115509,0.020769964903593,-0.015464747324586],[0.02069178968668,0.039322979748249,-0.017773672938347]],[[0.039618592709303,-0.031262595206499,0.017970772460103],[-0.063729144632816,0.0019986594561487,-0.028469098731875],[-0.014963845722377,-0.0013041237834841,-0.0045842695981264]],[[-0.031865794211626,0.10965938866138,-0.06999946385622],[0.052183985710144,-0.0048276521265507,0.0053601106628776],[0.047542251646519,-0.024082325398922,-0.020231936126947]],[[-0.047659087926149,-0.026209065690637,-0.0033567361533642],[0.029409220442176,0.03885006532073,0.011084004305303],[0.005470072850585,0.03912902623415,-0.042177304625511]],[[-0.081565901637077,-0.03474872559309,0.027381600812078],[0.029603831470013,-0.006531230174005,0.0026050540618598],[0.0012524224584922,-0.015275909565389,0.019476370885968]],[[-0.019589260220528,0.090255476534367,0.018665032461286],[0.00086843955796212,-0.016325388103724,0.028439447283745],[0.041080418974161,-0.0057692052796483,0.048517733812332]],[[-0.027225572615862,-0.023493343964219,-0.017265699803829],[-0.0077150226570666,0.0023788106627762,-0.051489669829607],[0.0025051012635231,-0.056305274367332,-0.046710319817066]],[[-0.017701638862491,-0.032382883131504,0.012097926810384],[-0.051542289555073,0.071709357202053,-0.022831572219729],[0.054129432886839,0.046311933547258,0.045975528657436]],[[-0.051445759832859,-0.026266951113939,0.034780964255333],[-0.040096875280142,-0.019834389910102,0.082387201488018],[-0.023311000317335,-0.023842776194215,0.092507489025593]],[[0.044592414051294,0.066208489239216,-0.012303792871535],[0.0051557337865233,-0.0009364818688482,0.054985947906971],[-0.051845986396074,-0.020087828859687,0.048934124410152]],[[0.015633910894394,0.0013131453888491,0.015866806730628],[0.10570307821035,-0.010441818274558,0.059921536594629],[-0.016075864434242,-0.04473739862442,-0.031600892543793]],[[0.048567619174719,0.049526017159224,-0.012695705518126],[0.037564437836409,-0.027275523170829,0.0020442213863134],[-0.058601379394531,-0.029865887016058,-0.051572609692812]]],[[[-0.0043848203495145,0.049943339079618,-0.08493310958147],[0.016444100067019,0.010571691207588,0.061342865228653],[0.017322821542621,0.03674253448844,-0.043378476053476]],[[-0.031568083912134,0.063335113227367,-0.001110827899538],[0.027202140539885,0.013051157817245,-0.045062929391861],[0.074945375323296,0.1246759518981,0.052323136478662]],[[-0.05549381300807,0.018805606290698,0.040318284183741],[0.06350488960743,0.040919158607721,0.034457057714462],[-0.02146028727293,-0.081144310534,-0.0014390285359696]],[[-0.02924595400691,0.029029957950115,0.072611421346664],[0.11667785048485,-0.010025250725448,0.011517166160047],[0.19034460186958,0.15563474595547,-0.083264201879501]],[[0.018388671800494,0.030605763196945,0.0042192284017801],[-0.054035920649767,-0.065377369523048,-0.017291508615017],[-0.018597638234496,0.0040417169220746,-0.002670275978744]],[[-0.024363046512008,-0.073868706822395,0.0077163153328001],[-0.093537166714668,-0.057736188173294,0.079519405961037],[0.088932499289513,0.06412785500288,0.049288529902697]],[[-0.024266475811601,-0.044060632586479,0.016307204961777],[-0.083705104887486,0.00092038698494434,-0.033475525677204],[-0.11542761325836,-0.054823879152536,-0.043782889842987]],[[0.069835476577282,0.068479023873806,0.087489418685436],[0.02816055342555,0.067607462406158,0.036215502768755],[-0.012056317180395,0.039413914084435,0.10909278690815]],[[0.038440715521574,-0.040571339428425,0.094945996999741],[0.054749775677919,0.024636810645461,-0.0563222207129],[-0.081792838871479,-0.13995483517647,-0.11108489334583]],[[0.030247710645199,0.040461853146553,0.099676840007305],[0.014764538034797,0.044891051948071,0.096410721540451],[-0.11135008186102,-0.015883337706327,0.11288310587406]],[[-0.064164832234383,0.025922175496817,-0.049682214856148],[-0.020027441903949,-0.031168349087238,-0.032926890999079],[-0.041303806006908,0.076545603573322,0.030833523720503]],[[0.032109379768372,0.064439974725246,0.08260402828455],[0.031598720699549,-0.032814454287291,0.01779423840344],[-0.0076432386413217,0.014677232131362,-0.010408054105937]],[[0.073076784610748,0.078556045889854,0.035083528608084],[0.16561618447304,0.10603862255812,-0.042251899838448],[0.035444803535938,-0.0043320208787918,-0.097127333283424]],[[-0.11362450569868,-0.10808181017637,0.032042257487774],[0.00043185363756493,-0.090153209865093,-0.090155772864819],[-0.025395799428225,0.054206807166338,-0.012699483893812]],[[0.028441706672311,-0.074034944176674,-0.084319971501827],[0.044968992471695,0.082091860473156,-0.05055945366621],[-0.01629943959415,0.12566518783569,0.10928592830896]],[[-0.0094048976898193,0.0096957786008716,0.16540983319283],[0.097993418574333,-0.015051406808197,-0.033412288874388],[0.067402102053165,0.019573528319597,-0.019448325037956]],[[-0.023024393245578,-0.044811051338911,0.06372857093811],[-0.012660527601838,-0.070305220782757,-0.040314320474863],[0.014253368601203,0.0576984398067,-0.034556951373816]],[[-0.069930486381054,0.0012584705837071,-0.036381125450134],[-0.17702470719814,-0.013042936101556,-0.06105624884367],[0.0051912497729063,-0.029728615656495,-0.13203658163548]],[[0.10871953517199,0.13592392206192,-0.093317747116089],[-0.10371676832438,-0.02183229662478,0.1067713201046],[0.10303245484829,0.026944305747747,-0.062644302845001]],[[-0.0077426163479686,-0.071208409965038,-0.00074107467662543],[-0.048250950872898,-0.015836725011468,-0.0098867323249578],[0.023956313729286,-0.035965550690889,0.073313064873219]],[[0.055948704481125,0.12937785685062,-0.0050375629216433],[0.13114488124847,-0.045424312353134,0.0037923350464553],[0.072599358856678,0.12681949138641,-0.050239890813828]],[[0.058089330792427,0.037341970950365,-0.056007865816355],[-0.013839116320014,0.071869373321533,0.043976347893476],[0.026437474414706,-0.027853092178702,0.046883556991816]],[[0.031685724854469,0.051119640469551,0.0057328925468028],[-0.0046190628781915,-0.012918839231133,-0.032759234309196],[0.069070920348167,-0.091451235115528,0.036094762384892]],[[-0.071444623172283,0.081242769956589,-0.038085084408522],[-0.011585833504796,0.025084691122174,0.042585227638483],[-0.059542004019022,-0.0072695221751928,0.010190860368311]],[[0.048882216215134,-0.023676004260778,0.0095027768984437],[-0.013766358606517,-0.063481964170933,-0.029778344556689],[0.076880790293217,0.067502610385418,0.04866961017251]],[[-0.017970532178879,-0.11744245886803,-0.12063077837229],[-0.032345063984394,-0.06118480488658,-0.042155958712101],[0.050441734492779,0.077006459236145,0.025732142850757]],[[0.11424022912979,0.16397294402122,0.076871789991856],[-0.082255870103836,0.10663361847401,0.10833280533552],[0.016745582222939,0.024290412664413,0.048900961875916]],[[-0.032501995563507,0.024187888950109,0.030494995415211],[0.029137654229999,-0.031243728473783,0.015254368074238],[0.013357240706682,0.047209724783897,-0.019900357350707]],[[-0.066026389598846,-0.026569059118629,0.16538754105568],[-0.028958110138774,-0.090087175369263,-0.002105759922415],[0.040632102638483,0.043733678758144,0.019657578319311]],[[0.11611260473728,-0.027545234188437,-0.059932511299849],[0.041708312928677,0.022764015942812,0.024200307205319],[0.0058809197507799,0.022997153922915,-0.05879220739007]],[[0.10951931774616,0.032940022647381,-0.06335074454546],[0.013567400164902,0.047821160405874,0.024040583521128],[-0.045893616974354,-0.0029321021866053,0.034262731671333]],[[-0.0084561156108975,0.0073994728736579,0.012072212994099],[-0.0019141234224662,0.023387894034386,-0.0023834777530283],[-0.058041896671057,0.019168579950929,-0.023113507777452]],[[-0.0089407125487924,0.017983639612794,0.10095801204443],[0.050487987697124,-0.018275439739227,-0.02174961566925],[-0.019433815032244,0.0091982334852219,-0.019167978316545]],[[-0.00061258842470124,-0.051814008504152,-0.088804200291634],[0.023290133103728,0.004087639041245,0.039402939379215],[-0.083628833293915,-0.013045873492956,0.013761151582003]],[[-0.04563781991601,-0.0011057207593694,0.16457679867744],[-0.026918739080429,-0.017019353806973,-0.04228387773037],[-0.057515986263752,0.03158251568675,-0.0082532707601786]],[[0.0793297290802,0.12196127325296,0.037230279296637],[-0.062085103243589,0.011543755419552,-0.044482029974461],[0.068915955722332,0.059172466397285,-0.049273643642664]],[[-0.047373689711094,-0.10604028403759,0.010852699168026],[-0.020509930327535,0.097687289118767,0.080205045640469],[0.076451748609543,-0.023953324183822,0.096085481345654]],[[0.03550036251545,-0.0095024267211556,0.11649325489998],[0.053151931613684,0.020291430875659,0.014373547397554],[0.017600975930691,0.0011893340852112,0.014268081635237]],[[0.034723076969385,-0.10308902710676,0.036227867007256],[0.01260974816978,0.0048544947057962,-0.031484883278608],[-0.0075082699768245,-0.0030328508000821,0.08169399946928]],[[0.049833938479424,0.034671634435654,0.032753385603428],[0.02697834558785,-0.032730102539062,-0.091254040598869],[0.017714293673635,0.013428496196866,-0.079653099179268]],[[0.11802491545677,-0.043849971145391,-0.066679760813713],[0.062660872936249,0.047356840223074,-0.036302130669355],[-0.024992788210511,0.040148951113224,0.062078684568405]],[[0.051917053759098,0.013620789162815,-0.025059636682272],[0.11931949853897,0.064813755452633,0.096350498497486],[0.1326596736908,0.033392623066902,-0.0016686008311808]],[[0.091948717832565,0.090047158300877,0.10131219774485],[0.012827351689339,-0.077878713607788,0.077406823635101],[0.059447590261698,-0.035291109234095,0.0078064859844744]],[[-0.0023337481543422,0.053363930433989,0.027985241264105],[-0.012501342222095,-0.093432739377022,0.030210519209504],[-0.029045300558209,-0.011196904815733,-0.03972977027297]],[[0.10437977313995,0.060397639870644,-0.03831983730197],[0.013976435177028,-0.0608243457973,-0.0078132366761565],[0.046667616814375,0.097099795937538,-0.17004024982452]],[[-0.0094745000824332,0.012490786612034,-0.036254618316889],[0.014164100401103,0.14349539577961,0.055747881531715],[0.050752330571413,0.045748427510262,0.066498391330242]],[[0.04565617442131,0.012223040685058,-0.028973989188671],[0.065598279237747,0.075125902891159,-0.022351982071996],[-0.036874879151583,0.010065126232803,-0.012243579141796]],[[-0.025193277746439,0.08738762140274,0.029419982805848],[-0.035283304750919,-0.0091319242492318,-0.012069996446371],[-0.039066705852747,-0.0056728245690465,-0.066085964441299]],[[-0.015088042244315,0.024581171572208,0.073967769742012],[-0.1222140416503,-0.085584484040737,0.04159053042531],[-0.036582734435797,-0.022576821967959,-0.06122225150466]],[[0.0098329959437251,0.0041908868588507,0.038047164678574],[0.072537660598755,-0.02784120105207,0.019813824445009],[0.028641566634178,0.0092157870531082,0.0376191213727]],[[-0.040647815912962,-0.084855042397976,-0.011282814666629],[-0.027814326807857,-0.015496039763093,-0.057323582470417],[-0.032772097736597,-0.051692102104425,-0.050258841365576]],[[-0.079748623073101,0.037743326276541,0.093236602842808],[-0.0033607478253543,0.047357689589262,0.068142026662827],[-0.026469565927982,-0.067391939461231,0.056233257055283]],[[-0.040438186377287,0.094036281108856,0.025012619793415],[0.013128356076777,0.017047345638275,-0.022099388763309],[0.072606116533279,-0.016999473795295,-0.023847725242376]],[[0.13349193334579,0.071722909808159,0.12661473453045],[-0.029052916914225,-0.033923950046301,0.014427715912461],[-0.073632963001728,0.014558881521225,-0.016699092462659]],[[0.020365385338664,0.13439847528934,0.11969695240259],[-0.025855707004666,0.013819732703269,0.097550705075264],[0.18186581134796,0.064063139259815,-0.018958544358611]],[[0.013260873034596,0.11335911601782,0.057057727128267],[-0.0099047655239701,-0.079004056751728,0.18548092246056],[0.056935481727123,0.081691384315491,0.042082220315933]],[[0.012094773352146,0.026948533952236,0.072596229612827],[0.20232316851616,0.057183217257261,-0.053301237523556],[0.026970824226737,-0.0098110260441899,0.064188368618488]],[[0.0022942542564124,0.0060213250108063,-0.0046541853807867],[0.026718957349658,0.16432785987854,-0.05685193836689],[-0.019699305295944,-0.062562569975853,0.0578324906528]],[[0.17111368477345,0.044409036636353,0.078557699918747],[-0.05241122096777,-0.0068397051654756,0.098000451922417],[0.072252437472343,0.091171249747276,0.10126726329327]],[[0.087108001112938,0.13744580745697,0.0056733069941401],[-0.070657461881638,0.0083515997976065,0.0054685557261109],[0.011174346320331,-0.019215010106564,0.027680551633239]],[[-0.010002729482949,-0.022725258022547,0.067523062229156],[-0.026048980653286,-0.05246964097023,0.029552588239312],[0.059598419815302,0.080614052712917,0.16046100854874]],[[0.029279910027981,0.053500235080719,-0.049131143838167],[-0.031249349936843,0.10282833874226,0.0097080375999212],[-0.042374670505524,-0.10136733204126,-0.064976342022419]],[[-0.019139217212796,-0.009335620328784,0.13275784254074],[0.074380174279213,0.12504835426807,0.069968692958355],[0.046439036726952,-0.0026088773738593,0.01298851147294]],[[-0.047352217137814,0.0022738920524716,-0.026151655241847],[0.052703801542521,-0.040317840874195,0.03358306363225],[0.038902450352907,0.016042748466134,-0.04997631534934]],[[0.047935139387846,0.050770074129105,-0.027886608615518],[-0.084802351891994,-0.044501755386591,0.02046069689095],[-0.035676851868629,-0.06091234087944,-0.032227728515863]],[[-0.046417757868767,0.01551503315568,0.02028732933104],[0.067320495843887,-0.00043150980491191,0.057784121483564],[0.08397438377142,0.059977550059557,-0.080758273601532]],[[-0.09606060385704,0.001453444478102,0.016571896150708],[0.014969808980823,-0.063593789935112,0.047133915126324],[0.037863977253437,0.015977149829268,-0.0016433103010058]],[[0.10535212606192,0.046886086463928,0.029388871043921],[-0.075683370232582,-0.050444442778826,0.032190527766943],[0.056890163570642,-0.018393022939563,0.026293765753508]],[[0.052236933261156,0.025555951520801,0.052176132798195],[0.090653814375401,0.079449519515038,-0.047431088984013],[0.054502096027136,0.0025250695180148,-0.01052354555577]],[[0.073404803872108,0.017756992951035,-0.069432355463505],[0.036175217479467,0.03523313626647,-0.10313330590725],[0.059882003813982,0.025926621630788,-0.083160646259785]],[[0.0034920596517622,-0.17250874638557,-0.01487007457763],[-0.089974254369736,0.014346706680954,-0.036606259644032],[0.045764777809381,0.043285079300404,0.009939581155777]],[[0.041699275374413,0.065451428294182,0.057072162628174],[-0.028872177004814,0.045019809156656,-0.15264527499676],[0.057619534432888,-0.064735107123852,-0.052722536027431]],[[-0.062144070863724,0.072804607450962,0.054155010730028],[0.025947475805879,0.045432761311531,0.0026233200915158],[0.0046584466472268,0.074684008955956,0.00045579951256514]],[[-0.034528698772192,-0.010691562667489,-0.030775625258684],[0.027847409248352,0.037868350744247,0.0032970595639199],[0.022667091339827,0.10361354798079,0.11929968744516]],[[0.012660008855164,0.13554501533508,0.096702463924885],[-0.073048666119576,0.012305391952395,0.053134400397539],[-0.11887779086828,-0.018996523693204,-0.020406205207109]],[[0.045536410063505,0.068290188908577,-0.013092827983201],[0.027101680636406,-0.013485961593688,-0.080076523125172],[0.01400460768491,0.060047131031752,-0.0082347514107823]],[[-0.05865953117609,-0.053823456168175,0.021517999470234],[0.090015292167664,-0.034924354404211,0.019047360867262],[-0.013154407031834,0.033535167574883,0.0033659033942968]],[[-0.068997010588646,0.022936746478081,-0.043792605400085],[0.031254749745131,-0.015243105590343,0.03778088465333],[0.032519318163395,-0.035716887563467,0.004466372076422]],[[0.042701382189989,-0.020195703953505,0.07086543738842],[0.0062250108458102,-0.030455075204372,-0.036477211862803],[-0.0034704960417002,-0.034142047166824,0.02621273137629]],[[0.0027509424835443,-0.0080962032079697,-0.012171071022749],[-0.11366204172373,0.079108320176601,0.064223006367683],[-0.048846993595362,-0.044137757271528,-0.070222496986389]],[[0.032713353633881,0.02996739372611,-0.080609738826752],[-0.10074643790722,-0.073620557785034,0.076096087694168],[-0.062754087150097,-0.12501953542233,-0.070814333856106]],[[-0.027310322970152,0.031334649771452,-0.0039561851881444],[0.018495880067348,0.038406010717154,-0.016740368679166],[-0.014659464359283,0.029527166858315,0.033955227583647]],[[0.12387982010841,-0.010272390209138,0.058777220547199],[-0.053330667316914,0.043542928993702,-0.0010642397683114],[0.021211145445704,0.043532520532608,-0.090636789798737]],[[-0.0030445787124336,-0.0038579432293773,0.034156281501055],[-0.036857392638922,0.13073873519897,0.080897226929665],[0.035822365432978,-0.010235218331218,0.088596269488335]],[[0.085175909101963,0.044181101024151,-0.02853955514729],[-0.050578206777573,0.15617582201958,0.056959919631481],[0.059752613306046,-0.010834520682693,-0.048035398125648]],[[0.031293582171202,-0.038918439298868,0.0081444466486573],[0.072919689118862,0.040303390473127,-0.090764030814171],[-0.081649273633957,0.037816628813744,-0.089039124548435]],[[-0.099668800830841,0.0063488576561213,0.023137325420976],[0.035585727542639,-0.033106666058302,0.07486730068922],[0.0080079585313797,0.049841661006212,-0.063142664730549]],[[-0.044539265334606,0.03797996416688,0.02087364718318],[0.10378908365965,0.0067981132306159,0.041342504322529],[0.0037513715215027,-0.0033284018281847,0.067027896642685]],[[-0.028803674504161,0.062199380248785,0.080132164061069],[0.029269611462951,-0.033780846744776,-0.096271775662899],[0.099641583859921,-0.016571646556258,-0.011613229289651]],[[-0.065249912440777,0.01111158169806,0.034401927143335],[0.024289079010487,-0.14460973441601,-0.075260736048222],[-0.016788607463241,-0.00872952491045,-0.059755183756351]],[[0.041098885238171,-0.06181425601244,0.018450727686286],[0.10216961801052,-0.035340167582035,0.0063651115633547],[0.18657596409321,0.014830348081887,-0.16928622126579]],[[0.0063211093656719,0.013595389202237,0.066841810941696],[-0.12877650558949,0.031837627291679,0.081317186355591],[-0.14454729855061,-0.071979746222496,-0.053934324532747]],[[-0.029117733240128,0.026514548808336,-0.045461483299732],[-0.018683280795813,-0.041241273283958,-0.0081421360373497],[0.018371846526861,-0.15416207909584,0.031333968043327]],[[0.010611372999847,0.12378458678722,0.048354506492615],[-0.067977838218212,0.013308640569448,0.082732312381268],[-0.037829831242561,-0.10255928337574,-0.06644132733345]],[[0.022607568651438,0.023567287251353,0.042799066752195],[0.0095197167247534,-0.093024909496307,0.078183874487877],[-0.016651142388582,-0.026343015953898,-0.016769219189882]],[[-0.015689097344875,0.11590110510588,0.089638821780682],[0.011669519357383,0.029798677191138,0.079106189310551],[-0.047617688775063,-0.067878186702728,-0.039378721266985]],[[0.027250044047832,-0.013518136925995,0.0011298954486847],[0.033955976366997,-0.0013281133724377,-0.030515471473336],[0.12686365842819,0.054565411061049,-0.038910765200853]],[[-0.02156626060605,0.016084039583802,-0.037139393389225],[0.0079373214393854,-0.066233083605766,-0.053207572549582],[0.19160345196724,-0.020167425274849,0.03142349794507]],[[0.07885617017746,0.0084871826693416,-0.026779148727655],[-0.0079423682764173,0.06870660930872,0.031649142503738],[0.045105304569006,0.0020252326503396,-0.020172152668238]],[[0.048455093055964,0.032111816108227,-0.045524969696999],[-0.061913929879665,0.010256922803819,0.079409278929234],[-0.059036072343588,0.069516003131866,-0.060436721891165]],[[0.039919577538967,0.01490568369627,0.1351080685854],[0.017310168594122,0.08680921792984,0.051206804811954],[0.03530265390873,0.028633505105972,0.066892303526402]],[[-0.062093775719404,-0.048321560025215,0.039539832621813],[0.044856030493975,0.027075974270701,0.05549318343401],[0.012087619863451,-0.0076521392911673,-0.065168395638466]],[[-0.013679627329111,0.0539327301085,0.024930013343692],[-0.058374051004648,-0.015968298539519,-0.0076626827940345],[0.057880096137524,-0.04970221593976,0.0661451369524]],[[0.024166274815798,0.034311577677727,0.041802924126387],[0.055023897439241,-0.029361175373197,0.18885140120983],[0.13577951490879,0.053111381828785,0.079178221523762]],[[0.068131573498249,-0.13638518750668,-0.035130806267262],[0.034317411482334,-0.073710441589355,0.024660371243954],[0.0043643582612276,0.13580480217934,-0.026193849742413]],[[-0.066792018711567,-0.023548329249024,0.10058876127005],[-0.026775928214192,-0.024523990228772,-0.021658996120095],[0.0141057735309,-0.050038050860167,-0.0042339833453298]],[[0.065615922212601,0.087059430778027,0.040242560207844],[-0.0024776926729828,-0.013882745988667,0.050375238060951],[0.014628991484642,0.058134220540524,0.18883775174618]],[[0.0012975588906556,-0.055135130882263,-0.050811294466257],[-0.054905895143747,-0.030410826206207,0.02014185488224],[0.021489072591066,-0.063279025256634,-0.011416562832892]],[[0.04171783849597,0.068804875016212,0.029705580323935],[0.064229294657707,-0.028151370584965,-0.015313145704567],[0.0042823953554034,0.0024844389408827,0.039343498647213]],[[0.012992949225008,0.083371117711067,-0.023880556225777],[-0.043550956994295,-0.026574136689305,-0.045273490250111],[0.030649024993181,0.059955295175314,-0.00040719902608544]],[[-0.084935285151005,0.010514877736568,0.012129753828049],[0.08275642991066,0.016992067918181,-0.082534536719322],[-0.034239508211613,0.06183922663331,-0.072848923504353]],[[-0.11371407657862,-0.062156289815903,0.065702587366104],[-0.026443278416991,-0.084385007619858,-0.043143078684807],[-0.018572550266981,-0.029201390221715,0.023542601615191]],[[-0.0073016919195652,-0.048775382339954,0.061474326997995],[0.019075587391853,0.04487232118845,-0.072486408054829],[0.08491688221693,-0.00047748934593983,-0.036931321024895]],[[-0.011737930588424,0.062620177865028,-0.094852566719055],[-0.0098676662892103,-0.0031476111616939,-0.030490029603243],[-0.021676665171981,-0.0034743612632155,-0.042704578489065]],[[0.10201655328274,-0.041025780141354,-0.0091653689742088],[0.025918148458004,0.11895199120045,-0.10664666444063],[0.091527439653873,-0.0059699486009777,-0.024204518646002]],[[-0.024388143792748,-0.078100517392159,-0.020711055025458],[0.033895194530487,0.080631040036678,0.047023247927427],[-0.0058139432221651,-0.056668717414141,-0.013323922641575]],[[0.0097250584512949,0.14089564979076,-0.066291160881519],[-0.011465326882899,-0.013278134167194,0.058495432138443],[0.042076926678419,-0.030284347012639,-0.042230039834976]],[[0.062441103160381,-0.050841856747866,-0.073083773255348],[-0.0057886471040547,0.11090438812971,-0.060370128601789],[0.025778505951166,-0.061717618256807,-0.0004990323795937]],[[-0.047913011163473,0.04604622349143,0.02478875592351],[-0.094733983278275,0.0070548304356635,0.012731137685478],[-0.010256678797305,-0.030690491199493,-0.020530860871077]],[[0.12158577144146,0.088889621198177,0.066525675356388],[0.0077959396876395,-0.0012424839660525,0.069890268146992],[-0.031844653189182,-0.014023675583303,0.031523007899523]],[[-0.028742367401719,-0.087583430111408,-0.13297079503536],[-0.032291848212481,-0.033069610595703,-0.0045307776890695],[-0.10339076817036,-0.037708390504122,-0.0042896238155663]],[[0.0081753497943282,0.044713400304317,-0.024339962750673],[-0.069268986582756,0.018303386867046,-0.024593094363809],[-0.041870065033436,0.0036376556381583,-0.088282518088818]],[[0.12020270526409,-0.048978537321091,-0.0032525470014662],[0.061371713876724,0.10379132628441,-0.01477343775332],[0.043441224843264,-0.031314536929131,0.088938683271408]],[[-0.027749435976148,0.0041938875801861,-0.014841225929558],[0.015018510632217,-0.095164902508259,0.10318845510483],[-0.042249217629433,0.057601056993008,-0.024019408971071]],[[-0.014387391507626,0.0032781162299216,-0.030698820948601],[0.065282560884953,-0.044772293418646,0.0066020688973367],[-0.0371088758111,-0.067520745098591,-0.095676496624947]],[[-0.03195471689105,-0.011782292276621,0.016703885048628],[-0.013125413097441,-0.033267084509134,-0.047270186245441],[0.11015164107084,0.015462310984731,0.0139384213835]],[[-0.0064698113128543,0.1155162230134,0.0086344853043556],[0.01808306761086,-0.02577943354845,-0.06867354363203],[0.12431009113789,0.064860165119171,-0.085546351969242]],[[0.07044081389904,-0.056093737483025,-0.010927935130894],[-0.0076969764195383,0.086110696196556,0.12082924693823],[0.0063611017540097,0.088105529546738,0.026248514652252]]],[[[0.021230878308415,-0.00073504546890035,-0.040225144475698],[0.020917568355799,-0.0059784478507936,0.045238416641951],[0.021025961264968,-0.02610925771296,0.019502632319927]],[[-0.067723847925663,0.051063153892756,-0.00047089721192606],[0.020832939073443,0.036922913044691,-0.061880119144917],[0.0079146148636937,0.0047025140374899,0.01032533403486]],[[0.0047342991456389,-0.0011858934303746,-0.022065775468946],[0.052783530205488,0.0086245639249682,-0.05393061414361],[0.013892728835344,-0.0054104044102132,-0.011148502118886]],[[-0.058880157768726,0.053494464606047,0.036986324936152],[0.022951999679208,0.015407183207572,0.024658231064677],[0.036864999681711,0.064001768827438,-0.023138986900449]],[[-0.041702449321747,-0.029245678335428,0.066261738538742],[0.065666668117046,0.086512289941311,-0.021159363910556],[0.014296199195087,-0.0076068332418799,-0.032075371593237]],[[-0.0079679964110255,0.038178708404303,-0.025167921558022],[-0.026687623932958,-0.00072745874058455,0.029660824686289],[0.045999359339476,0.053835835307837,0.0029206485487521]],[[-0.0083990273997188,0.021465055644512,0.0074149216525257],[0.046219907701015,0.016927789896727,0.011869444511831],[-0.1088050827384,0.0091885235160589,0.010189396329224]],[[0.029021495953202,-0.0077610514126718,0.033969834446907],[-0.027708726003766,-0.0010946900583804,-0.0078628193587065],[0.055528450757265,-0.084070853888988,0.017976060509682]],[[-0.051900204271078,0.019478272646666,-0.031781941652298],[0.0038832786958665,-0.027578305453062,0.10632596164942],[-0.021180272102356,-0.067366808652878,0.012637124396861]],[[0.039915859699249,-0.062474146485329,-0.0071344771422446],[0.0035665666218847,-0.028263146057725,0.019053194671869],[-0.020551158115268,-0.0045537473633885,0.0013862090418115]],[[-0.0098226023837924,-0.029649136587977,-0.0081647820770741],[-0.021768087521195,0.024686897173524,0.015431877225637],[0.0041543571278453,-0.023282371461391,0.09273374825716]],[[-0.079527765512466,-0.033815797418356,0.039010249078274],[0.010046392679214,-0.060064740478992,0.031428191810846],[0.036074787378311,0.073556311428547,0.0015527151990682]],[[-0.020665250718594,-0.06542095541954,-0.028644092381001],[-0.021730287000537,0.019643880426884,0.062438458204269],[0.027003511786461,-0.0034225210547447,-0.04518361389637]],[[-0.00077127199620008,-0.0059018163010478,-0.049278657883406],[0.022978277876973,0.047285337001085,0.06150458753109],[0.020786717534065,-0.039874996989965,-0.019884815439582]],[[0.04855103045702,0.062157992273569,0.020297402516007],[0.032316170632839,-0.077661402523518,0.001781398546882],[-0.016481893137097,0.028590170666575,-0.0048126145265996]],[[0.036542806774378,-0.0096205407753587,0.0068147648125887],[-0.0080357799306512,-0.016482695937157,0.027107913047075],[-0.011684287339449,0.015942862257361,-0.024832803755999]],[[0.045011915266514,0.021434381604195,-0.0033937697298825],[-0.039947926998138,0.013616325333714,-0.056505616754293],[0.03030451759696,-0.013484762050211,0.019850332289934]],[[-0.0028937857132405,-0.04257794842124,-0.0050206026062369],[-0.025971628725529,0.00030726680415682,-0.029477931559086],[-0.0092055043205619,0.01612881757319,0.013621930964291]],[[0.087237738072872,-0.034704279154539,0.049939319491386],[0.016857387498021,0.022479245439172,-0.01852217502892],[0.064590066671371,-0.0087336851283908,-0.063658691942692]],[[-0.0084840264171362,-0.020438922569156,0.023006057366729],[0.058164361864328,-0.028515577316284,0.030159508809447],[0.015708127990365,-0.0043004797771573,0.024578239768744]],[[0.014574794098735,-0.044852338731289,-0.0056527405977249],[-0.030541704967618,0.032389439642429,-0.021831747144461],[-0.048588082194328,0.069470196962357,-0.043996639549732]],[[0.024155538529158,0.0057336939498782,-0.028615105897188],[0.027151854708791,0.08270201086998,0.028373891487718],[0.05463645234704,-0.0078567583113909,-0.083813227713108]],[[0.020916566252708,0.005799796897918,-0.025529142469168],[-0.0028231325559318,-0.009415308944881,0.0132443793118],[-0.01763772405684,0.015143684111536,-0.015131233260036]],[[0.017369125038385,0.029268953949213,-0.033957302570343],[-0.05943551659584,0.036567710340023,0.023536747321486],[-0.05637713521719,-0.040636371821165,0.0077169137075543]],[[0.026534553617239,-0.005843938793987,-0.061453897505999],[0.022901343181729,-0.01427829824388,0.032172046601772],[0.052545636892319,-0.017929140478373,0.075534820556641]],[[0.035202238708735,-0.030169615522027,-0.016151856631041],[0.055088296532631,0.0089825494214892,0.059248860925436],[0.077715165913105,0.025388415902853,-0.05721952021122]],[[-0.03272083774209,0.03455638885498,-0.065299548208714],[-0.016169797629118,0.042957749217749,-0.0080877356231213],[0.040835026651621,0.062543883919716,-0.023105094209313]],[[-0.00089925015345216,-0.031557116657495,-0.025771580636501],[0.013911980204284,0.087576076388359,-0.041164182126522],[0.0072310813702643,0.0027283173985779,0.050685025751591]],[[-0.0098623186349869,-0.037397120147943,-0.070820666849613],[0.035239540040493,0.023572931066155,0.0028828291688114],[-0.023865930736065,0.047085147351027,0.033744309097528]],[[0.031414095312357,0.0089904135093093,-0.0099486988037825],[-0.024630067870021,0.053374968469143,-0.010990545153618],[0.0051504387520254,-0.072265818715096,0.032183408737183]],[[0.020409274846315,-0.05978649482131,0.0143724642694],[-0.041193433105946,0.016644703224301,0.03579330816865],[-0.019996313378215,0.051720183342695,-0.019462827593088]],[[-0.005066504701972,-0.020276490598917,0.031896948814392],[-0.038797583431005,0.014448169618845,0.015630286186934],[-0.044634476304054,0.010755750350654,0.011527033522725]],[[0.020480200648308,0.056854758411646,0.039268359541893],[0.050062015652657,0.016250347718596,-0.029602298513055],[0.039496444165707,-0.024228131398559,-0.044931691139936]],[[-0.073647744953632,0.03406697884202,-0.036774922162294],[-0.033830363303423,-0.038398921489716,0.12276405841112],[-0.047402814030647,0.046671148389578,-0.013922186568379]],[[-0.071469739079475,0.035277020186186,-0.011718919500709],[0.060845710337162,0.00046869873767719,0.093545667827129],[-0.0030744164250791,0.026322638615966,-0.095506004989147]],[[0.046358287334442,0.037336070090532,0.041553169488907],[-0.0021937417332083,-0.014360081404448,0.016282103955746],[-0.076204769313335,0.01955795660615,-0.027664873749018]],[[0.030294565483928,0.017021857202053,0.013700406067073],[0.02626471593976,0.011330502107739,-0.010031715035439],[-0.0095214182510972,-0.022222807630897,-0.0095653645694256]],[[-0.039142709225416,0.015763545408845,-0.050417006015778],[0.062530219554901,0.050076249986887,0.086440205574036],[-0.019871743395925,-0.021453002467752,0.017100404947996]],[[-0.0003467776987236,-0.026545930653811,0.065416976809502],[0.018600527197123,-0.032830562442541,0.063971728086472],[0.0030660931952298,0.043275855481625,0.0067078387364745]],[[-0.030005188658834,0.02580283395946,-0.012487953528762],[-0.019458716735244,-0.014743656851351,-0.012492434121668],[-0.026166340336204,0.03079167753458,0.045747771859169]],[[0.021159183233976,-0.03278162330389,-0.0049403309822083],[0.015027044340968,-0.00052654062164947,0.019759073853493],[0.046786788851023,0.0039352271705866,0.032906468957663]],[[0.0033069592900574,-0.0070984424091876,0.047971811145544],[0.012552347034216,-0.021779742091894,-0.033245090395212],[-0.042998436838388,-0.0068909409455955,0.048319708555937]],[[0.015011003240943,0.030061012133956,0.022423231974244],[0.022696472704411,0.0005293475696817,-0.039508614689112],[0.00010844103962881,0.0076005053706467,-0.01495414879173]],[[0.012436573393643,0.035620264708996,-0.0087921917438507],[0.008753071539104,0.023234453052282,0.058108180761337],[-0.0068300613202155,0.069474600255489,0.062446426600218]],[[0.0084973871707916,0.048153471201658,0.0027393151540309],[0.0060647670179605,-0.029248153790832,-0.037649977952242],[-0.01160457637161,0.011773330159485,0.0039182803593576]],[[-0.0064574875868857,0.017955908551812,-0.0089901033788919],[-0.034184977412224,-0.082839675247669,0.022968877106905],[-0.023196903988719,0.035751484334469,0.046524945646524]],[[-0.026238998398185,0.044595070183277,0.013795167207718],[-0.04402294382453,0.012481020763516,0.025501042604446],[0.019787857308984,0.032135639339685,-0.028801897540689]],[[0.043169431388378,0.0085832979530096,-0.04432724416256],[0.0036455795634538,-0.18358619511127,-0.017065547406673],[-0.014689997769892,0.10085871070623,0.014094759710133]],[[0.042952567338943,0.017713041976094,-0.028271120041609],[0.042601156979799,-0.038507699966431,-0.034176614135504],[0.014891879633069,-0.026844115927815,-0.0096697695553303]],[[-0.01241016574204,-0.025630440562963,-0.016302058473229],[0.050463162362576,0.080041795969009,-0.065714173018932],[0.041787389665842,-0.0423544049263,0.0018551594112068]],[[0.021505763754249,-0.013767709955573,-0.0071936184540391],[-0.034047652035952,0.056367613375187,-0.056123077869415],[0.0027771161403507,0.11283595860004,-0.043695650994778]],[[-0.062848053872585,0.012786440551281,-0.017436938360333],[0.016712132841349,-0.057125575840473,0.02178779989481],[-0.03516036644578,-0.018904259428382,0.022137202322483]],[[-0.03931625559926,-0.02700287103653,-0.025932818651199],[0.043622471392155,0.040607258677483,0.014299657195807],[-0.034045618027449,-0.00258957920596,0.003377438755706]],[[0.011548222973943,0.00848039239645,0.043682981282473],[-0.059361327439547,-0.016954900696874,0.03710400313139],[0.037427134811878,-0.014241309836507,-0.016786586493254]],[[0.01776459813118,-0.0012737479992211,-0.014035449363291],[-0.043248489499092,-0.061571799218655,-0.0030294742900878],[-0.055195067077875,0.034950491040945,0.065431773662567]],[[0.037805911153555,0.027116648852825,-0.046120434999466],[-0.0027637991588563,-0.050571534782648,0.01880138553679],[0.044698886573315,-0.047408815473318,0.026688246056437]],[[-0.092448689043522,-0.010391486808658,0.047527965158224],[-0.0021603722125292,0.044026497751474,-0.063661135733128],[0.018444495275617,0.048846945166588,0.035886310040951]],[[-0.045402329415083,0.029161656275392,-0.047409530729055],[-0.041225038468838,0.044475175440311,-0.016656197607517],[0.04074165597558,0.023640925064683,-0.022891042754054]],[[0.0028933039866388,0.055130369961262,0.031767133623362],[0.054209023714066,0.043427485972643,0.045466907322407],[0.058294549584389,0.00500817457214,-0.034723319113255]],[[0.00483308872208,-0.022293185815215,0.0033443830907345],[0.035529542714357,-0.052982844412327,0.022203905507922],[-0.051882639527321,0.029496235772967,-0.0061360141262412]],[[-0.0054644891060889,0.069759897887707,0.016009533777833],[0.033558703958988,0.0026021557860076,0.0075201042927802],[-0.071175388991833,0.016771672293544,0.046697597950697]],[[0.02932914532721,0.044393435120583,0.066856473684311],[-0.0095006981864572,0.023054664954543,0.062139272689819],[0.065253086388111,-0.038326069712639,-0.072941161692142]],[[-0.026354005560279,-0.016119433566928,0.031294446438551],[0.0080495858564973,0.019822785630822,-0.037557553499937],[0.031767059117556,0.035067591816187,0.014335292391479]],[[0.028275817632675,-0.028722396120429,0.0030888239853084],[-0.070247463881969,-0.0015997900627553,-0.037628326565027],[0.079422682523727,-0.0010642643319443,0.075190126895905]],[[0.00040590579737909,0.050608620047569,0.044916775077581],[0.0030649248510599,-0.02384726703167,-0.062629543244839],[0.017360880970955,0.0016599475638941,0.008088493719697]],[[0.0048511573113501,-0.063686721026897,0.0059708682820201],[0.038275800645351,-0.013325358740985,0.0041056107729673],[0.033484756946564,0.051064752042294,0.044590558856726]],[[-0.057473797351122,-0.0088933445513248,0.014288865961134],[0.057726457715034,-0.0018316209316254,-0.0054702186025679],[-0.064846888184547,-0.042198222130537,0.017239144071937]],[[-0.046650361269712,-0.037351317703724,-0.018578764051199],[0.010530062019825,0.036104910075665,-0.019156653434038],[0.045291654765606,-0.012563413009048,0.042344436049461]],[[0.015779219567776,-0.00088554550893605,-0.031969644129276],[-0.046030677855015,0.010888977907598,0.013927159830928],[0.068722896277905,0.017687864601612,0.0031625172123313]],[[-0.027889784425497,-0.01539911981672,-0.0046314722858369],[-0.024882623925805,0.063719965517521,0.023804182186723],[-0.046861924231052,0.0084593622013927,-0.0046806810423732]],[[-0.013745073229074,-0.0131142931059,0.028279103338718],[-0.03641564399004,-0.043638493865728,-0.036509595811367],[0.013818868435919,0.029875012114644,-0.023005537688732]],[[-0.04205209389329,-0.0076002022251487,0.043528441339731],[0.0095124263316393,0.082620456814766,0.031697887927294],[0.0025377124547958,0.0067893001250923,-0.010635817423463]],[[-0.0056304247118533,0.03462628275156,-0.040363281965256],[-0.071877710521221,0.015170132741332,0.024516401812434],[-0.085319988429546,0.053013224154711,-0.027296802029014]],[[-0.073905892670155,0.031571887433529,-0.042755972594023],[0.032339937984943,-0.038328863680363,-0.034881174564362],[-0.029533438384533,-0.0062502124346793,0.0046872650273144]],[[0.0019014136632904,0.015801656991243,0.056858688592911],[0.033427130430937,-0.041535589843988,0.0349848754704],[-0.0057409578002989,0.013421299867332,-0.004987308755517]],[[0.03246758878231,-0.011484181508422,-0.0043316972441971],[-0.04582716152072,-0.016654990613461,-0.063761733472347],[-0.015580055303872,0.052450768649578,0.033349052071571]],[[-0.044628728181124,-0.010203919373453,-0.00015459509450011],[-0.028100945055485,0.03896264731884,0.018829692155123],[-0.018293939530849,0.0023042517714202,0.0010098969796672]],[[0.0058201970532537,-0.00025367451598868,-0.039358958601952],[0.050397273153067,0.015290562063456,-0.024539088830352],[0.045334476977587,-0.013449512422085,0.014253352768719]],[[0.047328803688288,-0.0022336661349982,-0.007995636202395],[-0.01325105316937,0.026917839422822,0.0017180647701025],[-0.066905543208122,-0.036698423326015,-0.073632918298244]],[[0.066436983644962,-0.088997378945351,-0.020470043644309],[0.054011471569538,0.013633005321026,0.016067648306489],[0.056929737329483,-0.021633313968778,0.020129289478064]],[[0.019936529919505,-0.0014339195331559,-0.0023212961386889],[-0.04204286634922,0.016798306256533,-0.014528635889292],[-0.0021615047007799,0.017694497480989,0.010194088332355]],[[-0.067696519196033,0.015959260985255,-0.0058411215431988],[-0.026412684470415,0.0090907299891114,0.032513782382011],[0.029256287962198,-0.057007655501366,0.055648177862167]],[[0.019016023725271,-0.015989046543837,-0.04710616543889],[0.017917675897479,-0.045031886547804,0.047927245497704],[-0.02332803234458,0.029567994177341,-0.010337982326746]],[[0.046838611364365,-0.019828462973237,-0.035939566791058],[-0.04612660780549,0.017692353576422,0.038183968514204],[-0.014736015349627,-0.0068748877383769,0.013239752501249]],[[0.011686274781823,0.0082456720992923,0.027035806328058],[-0.015917154029012,-0.048691909760237,0.0059008235111833],[0.0431610904634,-0.069580733776093,0.10365525633097]],[[-0.029504761099815,-0.069326460361481,0.018711466342211],[0.017068652436137,0.052718464285135,-0.04541777074337],[-0.012769317254424,0.021186400204897,0.046663157641888]],[[0.0033870129846036,0.01402073726058,-0.047968756407499],[-0.015742899850011,-0.050987031310797,-0.0040884362533689],[0.022692771628499,0.095022931694984,-0.0073020337149501]],[[0.018612772226334,-0.023613728582859,-0.028782423585653],[-0.012520457617939,-0.014540637843311,-0.029539400711656],[0.02567663602531,0.0090464493259788,-0.039063949137926]],[[-0.015844751149416,-0.067340329289436,-0.0057286475785077],[0.069764964282513,-0.00026037340285257,0.0074445670470595],[0.018028575927019,-0.014441178180277,-0.0074089542031288]],[[-0.0047141024842858,0.02801757492125,-0.013573851436377],[-0.017167784273624,0.0027555560227484,-0.035283237695694],[-0.038733027875423,0.011855580843985,-0.026091219857335]],[[0.04175628349185,-0.032732866704464,0.03558598831296],[0.00059203919954598,-0.033250294625759,0.025010779500008],[0.0014022309333086,0.036369368433952,0.0056191305629909]],[[-0.018788123503327,-0.01708204858005,-0.024819267913699],[-0.02102523855865,-0.0260259360075,0.06007207557559],[-0.016451276838779,0.069600507616997,0.029386024922132]],[[0.082249917089939,-0.0273710899055,0.04676353931427],[-0.0019763219170272,-0.0087904753163457,-0.047385074198246],[0.022197453305125,0.027527451515198,-0.003052523592487]],[[-0.0021064970642328,-0.0014436385827139,0.032527945935726],[0.0013745508622378,0.0091291842982173,-0.044774271547794],[0.075151577591896,0.0082919355481863,0.0091474214568734]],[[0.036767836660147,0.057686302810907,-0.0037915587890893],[0.013142739422619,0.050536718219519,0.085547052323818],[0.088936753571033,-0.010653872042894,0.044459458440542]],[[0.039706360548735,-0.039605144411325,0.018480140715837],[-0.036180756986141,0.00087585306027904,0.0092957317829132],[0.0057947658933699,0.025874774903059,-0.010946900583804]],[[-0.0017200886504725,0.082691162824631,-0.060706786811352],[0.031252518296242,-0.03515513241291,0.033816572278738],[0.0088162664324045,-0.045244500041008,0.013258568011224]],[[0.011992312036455,0.0083022648468614,-0.037368133664131],[-0.0062483283691108,-0.0060354326851666,-0.05019573867321],[0.050974823534489,0.040521539747715,-0.037001449614763]],[[0.015532895922661,-0.023495445027947,-0.013241418637335],[0.044629011303186,-0.043818239122629,0.051302038133144],[0.030316356569529,-0.019112136214972,-0.071519084274769]],[[0.0032652600202709,-0.014419417828321,0.027891635894775],[0.012360728345811,0.034032315015793,0.034190371632576],[0.091436937451363,-0.048052877187729,0.018334476277232]],[[0.064405046403408,-0.0043376353569329,-0.045160360634327],[0.076592162251472,-0.07952918112278,-0.0060662711039186],[-0.058145083487034,-0.011950246058404,0.077925860881805]],[[-0.015555175021291,-0.0077140666544437,0.034942869096994],[-0.041389487683773,-0.02020382322371,0.010668327100575],[-0.0097577730193734,0.082784287631512,0.04990017414093]],[[0.0015164955984801,0.0089164413511753,0.043823543936014],[0.015332056209445,-0.073159486055374,0.097802735865116],[-0.0071730646304786,0.018092961981893,-0.019923653453588]],[[0.0035090090241283,-0.034793671220541,0.061722293496132],[-0.041493330150843,0.058672405779362,-0.028173677623272],[0.034307096153498,-0.078957639634609,0.043627835810184]],[[0.064500667154789,-0.025838891044259,-0.020326921716332],[-0.00024546176427975,0.0019663216080517,0.071244157850742],[-0.017304345965385,-0.025195015594363,-0.055444840341806]],[[-0.0032709792722017,-0.055833104997873,-0.0081850476562977],[0.082397192716599,-0.0059657441452146,0.067372255027294],[-0.014141517691314,0.032355528324842,0.018940631300211]],[[-0.052435860037804,0.066781125962734,-0.031431969255209],[-0.063292965292931,-0.029077056795359,-0.029962690547109],[0.019720550626516,0.064649544656277,0.024976225569844]],[[0.018443927168846,0.0097164791077375,0.014726660214365],[0.012054810300469,0.078689701855183,-0.038461659103632],[0.012235433794558,-0.055701520293951,0.065755479037762]],[[0.055097330361605,-0.031241908669472,-0.016407376155257],[-0.081351935863495,-0.020931582897902,-0.049301363527775],[-0.033108197152615,0.027133388444781,0.089021474123001]],[[0.033463411033154,0.018507346510887,-0.043057799339294],[-0.019641190767288,-0.0044758557341993,0.033796466886997],[-0.044378001242876,0.069540701806545,0.0059254826046526]],[[0.07329948246479,-0.055444724857807,-0.033223237842321],[-0.07014986872673,-0.11923828721046,-0.0029061320237815],[-0.02761747315526,-0.085021771490574,-0.058836419135332]],[[0.0527080334723,0.020852314308286,-0.036014538258314],[-0.044868364930153,-0.034488931298256,0.035312116146088],[-0.0072814645245671,-0.034864578396082,0.018654976040125]],[[-0.063080355525017,-0.021508120000362,0.071813620626926],[-0.064123764634132,0.024091299623251,0.0086852675303817],[-0.022872976958752,-0.064706593751907,0.03880699723959]],[[0.0074512124992907,0.0089652137830853,-0.029488731175661],[0.0051207677461207,0.010193563997746,-0.094569377601147],[0.019771035760641,0.060787387192249,0.015419363975525]],[[-0.03059321269393,-0.014389781281352,-0.0044076484628022],[-0.036121316254139,-0.038436099886894,0.085104078054428],[-0.023295423015952,0.048543650656939,0.039831899106503]],[[0.026212768629193,0.034822504967451,-0.022970031946898],[-0.020589219406247,0.030367229133844,-0.016392445191741],[-0.0096441386267543,0.044030770659447,-0.059002332389355]],[[0.037087921053171,0.0039213742129505,-0.052996277809143],[-0.043880555778742,-0.012696350924671,-0.081727176904678],[0.048411771655083,-0.023617293685675,0.0034833191893995]],[[0.062675908207893,0.016016760841012,-0.033955998718739],[-0.023342961445451,0.058180913329124,-0.010087345726788],[0.0016455809818581,0.007875332608819,-0.066244170069695]],[[-0.079579971730709,0.018611630424857,-0.0083091091364622],[-0.010626723989844,-0.035579606890678,-0.010776471346617],[0.036986958235502,0.019001999869943,-0.010656881146133]],[[-0.010222385637462,0.046940088272095,-0.0065777101553977],[-0.019978545606136,-0.086723044514656,0.06925567984581],[0.017952233552933,-0.019232202321291,0.04054557159543]],[[-0.028854010626674,0.074030913412571,0.056425776332617],[-0.06243073195219,0.052586674690247,0.060507826507092],[-0.031091507524252,0.10326774418354,0.087711974978447]],[[-0.010066458024085,-0.0027537939604372,-0.013278367929161],[-0.00070297316415235,0.0082434797659516,-0.017082668840885],[0.016188777983189,0.028402047231793,-0.064472272992134]],[[-0.0011494259815663,-0.030617458745837,0.029545677825809],[-0.018368676304817,-0.028267061337829,0.048363719135523],[0.05006742849946,-0.096577748656273,0.007490221876651]],[[0.058555047959089,-0.048515636473894,0.073744893074036],[-0.049845151603222,-0.001972968922928,-0.050527062267065],[0.065816782414913,0.035657819360495,-0.037853967398405]],[[0.035670638084412,0.022799303755164,0.0088839884847403],[0.091418892145157,-0.081991203129292,-0.035789530724287],[0.081055738031864,0.018452906981111,0.023788681253791]],[[0.00080246804282069,0.024563597515225,0.054832879453897],[-0.028393628075719,-0.0038810251280665,0.032868765294552],[0.03592736646533,-0.092394761741161,-0.031987838447094]],[[-0.024683659896255,0.015269012190402,-0.033201862126589],[-0.00096981972455978,-0.048152271658182,0.039701052010059],[0.006795656401664,-0.0074965008534491,0.0081843100488186]],[[-0.025303941220045,0.030303057283163,0.076683551073074],[-0.049400571733713,0.011331019923091,0.05690398439765],[0.063666462898254,-0.051290605217218,0.021511614322662]]],[[[-0.064101167023182,-0.013545647263527,-0.00043860205914825],[-0.03803689032793,-0.012428475543857,0.059775348752737],[-0.018738785758615,0.033142730593681,0.013169632293284]],[[0.023106792941689,0.039892360568047,0.0095775034278631],[0.087021470069885,0.01611016690731,-0.078946731984615],[0.0066932970657945,0.044143386185169,-0.025257132947445]],[[0.0088565116748214,0.0495272167027,0.024875206872821],[-0.014803430996835,0.087101668119431,-0.021788457408547],[0.015105073340237,-0.057108327746391,0.014197282493114]],[[-0.019349806010723,0.030619252473116,0.0041633942164481],[0.0029237407725304,-0.024671647697687,0.033526331186295],[0.03184711560607,0.061187528073788,-0.035726979374886]],[[-0.037519700825214,0.057390466332436,-0.068675875663757],[-0.035278171300888,-0.046595264226198,0.018849002197385],[-0.02552343159914,-0.033193290233612,-0.086103193461895]],[[0.011485314927995,-0.030570765957236,0.037676729261875],[-0.015492306090891,0.0047184498980641,0.037830695509911],[-0.12203308194876,-0.021970031782985,-0.020258383825421]],[[0.029267586767673,-0.0076854568906128,0.051196895539761],[-0.016157228499651,0.0092357192188501,0.038665011525154],[-0.15036725997925,0.013007229194045,-0.0084265861660242]],[[0.072658039629459,-0.020616883412004,0.043233308941126],[0.045284453779459,0.12257051467896,-0.063755020499229],[-0.039787266403437,0.0016622364055365,0.020770059898496]],[[-0.0088805463165045,-0.020773433148861,0.11435434967279],[-0.0041750459931791,0.04184827208519,-0.05273912101984],[0.012535376474261,0.028001019731164,0.071889579296112]],[[0.035372760146856,0.026121659204364,0.02019046805799],[-0.0032699792645872,-0.013083496131003,0.013294017873704],[0.026951810345054,-0.0084152696654201,-0.01829532161355]],[[0.00028832635143772,0.037250284105539,0.045185588300228],[0.011165409348905,0.011582394130528,-0.056251246482134],[-0.032050024718046,-0.024474713951349,-0.032850086688995]],[[0.015854516997933,0.064588598906994,0.10263341665268],[-0.007715065497905,0.047530986368656,-0.092585161328316],[-0.021764401346445,0.049119044095278,-0.04418708384037]],[[0.043592754751444,-0.0053520952351391,0.032070174813271],[0.01370195299387,0.045958634465933,-0.0053838999010623],[0.031716518104076,0.10339838266373,0.018906926736236]],[[0.0032672781962901,0.060393888503313,0.033061299473047],[0.06935965269804,0.018238792195916,-0.02893191203475],[0.01370348315686,0.031987302005291,0.044188264757395]],[[-0.061684641987085,0.01010204013437,0.050274714827538],[-0.0051917722448707,0.0015174755826592,-0.031085971742868],[-0.072009243071079,-0.068151660263538,-0.0063743568025529]],[[-0.016837563365698,-0.023786036297679,-0.037025820463896],[0.028004953637719,0.0017325370572507,-0.022414352744818],[0.017694137990475,-0.036479059606791,-0.050720766186714]],[[0.04682020097971,0.028993453830481,-0.02608604170382],[0.037594422698021,-0.0099216438829899,-0.010071220807731],[0.045295186340809,-0.0082505727186799,0.019099364057183]],[[-0.03672855719924,-0.0045661125332117,0.0037727279122919],[-0.061864469200373,-0.025799529626966,0.00031507198582403],[-0.03218437731266,-0.031500358134508,-0.022988613694906]],[[-0.015743276104331,-0.00020199324353598,0.031385041773319],[-0.031149342656136,0.040529411286116,-0.047234311699867],[0.011147846467793,-0.024248447269201,-0.014069029130042]],[[0.0086429193615913,-0.021683348342776,0.033217824995518],[0.021504597738385,0.068420320749283,0.07650800049305],[-0.035872273147106,0.0015575985889882,-0.0011853219475597]],[[-0.025715719908476,0.021087393164635,-0.072098717093468],[0.0164391156286,-0.023170828819275,-0.014250974170864],[-0.012961938045919,-0.02025998942554,0.015836250036955]],[[0.090770214796066,-0.02840856090188,-0.01802415214479],[0.021547641605139,0.024669604375958,-0.038893528282642],[0.032439041882753,-0.0017062454717234,0.083855286240578]],[[-0.025882875546813,0.014489848166704,0.034190159291029],[-0.023778529837728,-0.04612647742033,-0.012933041900396],[0.051631290465593,-0.067065045237541,0.030593283474445]],[[-0.042650729417801,0.0034764891024679,0.08548890799284],[0.026105146855116,-0.042851381003857,0.027948766946793],[0.028328182175756,0.10532528907061,0.040145922452211]],[[0.06115610525012,-0.040583156049252,0.013691916130483],[-0.059293925762177,0.021952660754323,0.094423532485962],[-0.013230741024017,-0.0040653818286955,0.046246577054262]],[[-0.092915259301662,0.015738567337394,0.054283712059259],[-0.055012587457895,0.063289910554886,0.027261987328529],[0.032268654555082,-0.016534941270947,0.037706449627876]],[[0.053618054836988,0.0046359822154045,0.05535226687789],[0.043754603713751,-0.0017105485312641,-0.078543566167355],[0.051453053951263,0.041843108832836,0.077296152710915]],[[0.043367572128773,-0.010823322460055,-0.04573718085885],[-0.0064168013632298,-0.025304140523076,-0.087155006825924],[0.06306441873312,-0.058798082172871,-0.01257117651403]],[[-0.061191532760859,0.024589808657765,-0.00053170102182776],[-0.0017197701381519,-0.035638030618429,0.014581674709916],[0.014470838941634,-0.031996466219425,-0.028289031237364]],[[-0.00084153306670487,0.063074089586735,0.012464040890336],[-0.0099169462919235,-0.034031439572573,-0.00022336309484672],[-0.052043907344341,0.027150465175509,0.020674744620919]],[[0.026779295876622,-0.0080260559916496,0.034299954771996],[-0.057164158672094,0.012207829393446,-0.001014263369143],[-0.042040299624205,-0.035771418362856,0.10385343432426]],[[-0.04732296988368,-0.044494025409222,0.028872564435005],[0.059040937572718,-0.070398822426796,-0.02749428153038],[-0.055737685412169,0.037466149777174,-0.0078379167243838]],[[-0.1217949539423,0.011739881709218,0.032911378890276],[0.043493792414665,-0.0016171662136912,-0.052539762109518],[0.014815953560174,0.051229756325483,0.019736079499125]],[[-0.012837971560657,0.055350486189127,-0.045707896351814],[0.10447436571121,-0.051853597164154,-0.01448383089155],[-0.07153245806694,0.048187036067247,0.050606038421392]],[[0.054972805082798,-0.022573167458177,0.045589309185743],[-0.066480197012424,0.069544658064842,-0.0076218280009925],[0.0073451627977192,0.037826292216778,-0.014536180533469]],[[0.073557935655117,0.039849162101746,-0.032876458019018],[-0.057513300329447,-0.060074623674154,0.010020184330642],[-0.02175061032176,0.0094703296199441,0.065462909638882]],[[-0.046155467629433,-0.015712384134531,0.036705929785967],[0.015682179480791,0.014199403114617,0.022906074300408],[-0.071411453187466,0.069837272167206,0.04905828461051]],[[0.066792920231819,0.048688981682062,0.036869842559099],[-0.020049521699548,-0.00081094162305817,0.11539950966835],[0.013095373287797,0.019704230129719,0.15993143618107]],[[-0.066490091383457,-0.040969051420689,-0.060119636356831],[0.013012107461691,-0.020960735157132,-0.032714188098907],[0.036783311516047,0.10301001369953,-0.029473388567567]],[[0.04770689457655,-0.019210888072848,0.028452968224883],[-0.019632745534182,0.00089702440891415,-0.024155052378774],[0.068255633115768,0.04913442581892,0.0253373272717]],[[0.008203730918467,0.046098947525024,0.032874464988708],[0.017885116860271,0.0040049953386188,-0.0058991876430809],[0.010853008367121,-0.0086110234260559,0.036380007863045]],[[-0.00611353199929,0.046389114111662,0.090050712227821],[0.04323149099946,-0.032892916351557,0.013110435567796],[0.082597300410271,-0.00021302286768332,0.099087908864021]],[[0.018789974972606,0.08980069309473,0.024012325331569],[0.031311616301537,0.033356759697199,0.052942592650652],[0.032829433679581,0.017863819375634,0.099483877420425]],[[0.11782278120518,0.0051095141097903,-0.078450933098793],[0.036186825484037,-0.02558097243309,-0.094995655119419],[0.03566537424922,0.03032499179244,-0.023057321086526]],[[0.027324266731739,-0.024281658232212,0.0084882518276572],[0.0093682920560241,-0.072832107543945,0.07560707628727],[-0.075480416417122,-0.070731192827225,0.054720472544432]],[[-0.033932235091925,0.008416629396379,0.031176852062345],[0.031303524971008,-0.0023933600168675,0.11289864778519],[0.063205800950527,0.047189109027386,0.057806305587292]],[[0.028724199160933,-0.041794937103987,-0.023193186149001],[-0.011047445237637,-0.0050418637692928,-0.041332058608532],[-0.0030159479938447,0.02917025052011,0.015526778064668]],[[-0.075926192104816,-0.11685935407877,-0.032240379601717],[0.024663655087352,-0.035916615277529,-0.018309384584427],[0.038615498691797,-0.0082252267748117,-0.090587414801121]],[[0.036686547100544,-0.080945737659931,0.035384837538004],[-0.024159042164683,-0.012079889886081,0.0045686713419855],[0.028112789615989,-0.057514067739248,-0.017797296866775]],[[-0.098207756876945,-0.078773967921734,-0.024560052901506],[0.032932363450527,-0.13390423357487,0.017024334520102],[0.063111200928688,-0.019942445680499,-0.042602129280567]],[[0.033462729305029,0.059012245386839,-0.11974266171455],[0.14137947559357,0.024418221786618,-0.009597267024219],[0.031284403055906,-0.014913501217961,-0.092715784907341]],[[0.090903423726559,0.048411693423986,-0.035279631614685],[0.02477927878499,0.027373885735869,-0.065409362316132],[0.082855060696602,-0.00026758364401758,0.01662934012711]],[[-0.02913961187005,0.0057043503038585,0.0091647272929549],[-0.054796364158392,-0.044364620000124,-0.046873267740011],[-0.049347653985023,-0.035000912845135,-0.051691569387913]],[[0.052811820060015,0.026650553569198,0.035231184214354],[0.090520173311234,-0.028313424438238,0.066898211836815],[0.0076795895583928,0.085578911006451,0.085296913981438]],[[0.03630854934454,0.032501082867384,0.033994801342487],[-0.012968830764294,0.025339869782329,0.061109207570553],[0.022891774773598,0.055052652955055,-0.016001576557755]],[[0.019490415230393,-0.052457626909018,-0.014388848096132],[-0.011043180711567,-0.010640027932823,0.0064733144827187],[-0.043589517474174,0.039168108254671,-0.085906393826008]],[[0.060536667704582,0.058483999222517,-0.0042488863691688],[0.068534709513187,0.046272005885839,-0.031598825007677],[0.043741438537836,-0.021852657198906,0.044794734567404]],[[0.0050415229052305,0.029858339577913,0.035857271403074],[-0.047799132764339,0.010167824104428,-0.029948737472296],[-0.02065990306437,-0.069569580256939,0.012899147346616]],[[0.0042900587432086,0.024171760305762,-0.044128675013781],[0.065980821847916,0.026250150054693,0.039056558161974],[0.041813492774963,0.074879817664623,0.093968287110329]],[[0.051676750183105,0.012298136018217,0.052776105701923],[0.040507923811674,0.026081882417202,0.00093017419567332],[0.010578730143607,0.031084036454558,-0.11473583430052]],[[0.0019347766647115,-0.09328393638134,-0.0090449675917625],[-0.089644677937031,0.0043835174292326,-0.023024283349514],[-0.033928517252207,-0.0021933207754046,-0.10447155684233]],[[0.047498650848866,0.0047958791255951,-0.034605599939823],[-0.042305525392294,-0.0004627209273167,0.0083961756899953],[-0.081439286470413,-0.065712183713913,-0.0092761758714914]],[[0.040497444570065,-0.013472532853484,0.080975227057934],[0.030298614874482,-0.056151580065489,-0.059323508292437],[-0.017158253118396,-0.015492665581405,0.083494283258915]],[[0.057979434728622,0.08851532638073,0.0093375062569976],[0.042868003249168,0.026216868311167,0.023136822506785],[0.051990818232298,0.029675865545869,-0.016015743836761]],[[-0.035212490707636,0.019079642370343,-0.11666141450405],[0.017673777416348,0.017331514507532,-0.052044313400984],[0.042263206094503,-0.079131424427032,0.050185929983854]],[[0.055707544088364,-0.085788726806641,0.10599580407143],[-0.011878442019224,-0.010725957341492,0.0041478923521936],[-0.011366478167474,0.020590184256434,0.001834889408201]],[[0.032211270183325,-0.0069284923374653,0.0074157924391329],[-0.034450110048056,0.034647352993488,0.0064528444781899],[0.03332981839776,0.0043408395722508,-0.034516766667366]],[[0.029727917164564,-0.036557625979185,0.017675388604403],[-0.016289312392473,0.025719271972775,-0.029675494879484],[-0.041112694889307,0.033672660589218,0.024569354951382]],[[-0.077679067850113,0.11459589004517,-0.021159790456295],[0.008993674069643,0.056882534176111,0.04254812374711],[0.07246483117342,-0.05616245046258,0.03096260689199]],[[0.015680216252804,0.091660335659981,-0.066873304545879],[0.076475344598293,0.037276100367308,-0.070290341973305],[0.076568730175495,-0.0041630337946117,-0.015116524882615]],[[0.064437851309776,-0.0084497211501002,0.035508181899786],[0.02074196562171,-0.082164861261845,0.018537240102887],[-0.0058014765381813,0.059116698801517,-0.044830061495304]],[[0.064308352768421,0.029476419091225,-0.097786851227283],[-0.031633928418159,0.094680033624172,-0.09491752833128],[0.01400700584054,0.0236910674721,-0.024408411234617]],[[-0.1360285282135,-0.034554693847895,-0.050476081669331],[-0.077136561274529,-0.045246202498674,-0.029946045950055],[0.0067610237747431,-0.028823783621192,-0.036054152995348]],[[-0.011008293367922,-0.011261343024671,0.017009759321809],[0.0057566580362618,-0.035429738461971,-0.022528141736984],[-0.025989081710577,-0.075924552977085,0.00017792863945942]],[[-0.049569603055716,-0.00014129745250102,0.028703387826681],[0.074711628258228,0.021598041057587,0.040506072342396],[0.14757212996483,-0.073468707501888,0.076068535447121]],[[-0.02631969936192,-0.0027845583390445,-0.043572373688221],[0.089010089635849,-0.081473998725414,0.0013867026427761],[-0.0025598730426282,0.0062997988425195,-0.039244640618563]],[[-0.021875651553273,-0.11284970492125,-0.026840720325708],[-0.053577903658152,-0.10981962829828,-0.0307253357023],[-0.012908591888845,-0.034056149423122,0.043288733810186]],[[0.10406128317118,0.08881201595068,0.09525203704834],[-0.010855855420232,-0.031226307153702,0.084912806749344],[0.046413272619247,-0.064402855932713,0.060242380946875]],[[0.026572423055768,0.10861117392778,0.011121643707156],[0.047170039266348,0.041609544306993,-0.0013412804109976],[0.029184112325311,0.040364511311054,-0.0081634363159537]],[[0.079618379473686,-0.043219532817602,-0.0025667140726],[0.022421708330512,0.0048196059651673,-0.065814189612865],[0.052467428147793,-0.037731938064098,-0.020520210266113]],[[-0.053929898887873,0.0027972413226962,0.0065878252498806],[-0.0079653868451715,0.013990177772939,-0.004543558228761],[-0.021981168538332,0.021213989704847,0.017992498353124]],[[0.0028354325331748,0.11115134507418,0.03132900595665],[0.072079390287399,0.1008920148015,0.047719873487949],[-0.027704006060958,0.066180177032948,0.0085353832691908]],[[-0.012472524307668,-0.059356592595577,-0.046680051833391],[0.005782101303339,0.0036664439830929,0.03508684784174],[0.072711780667305,-0.080065198242664,0.037006214261055]],[[-0.017203701660037,0.035146050155163,0.0058054700493813],[0.01178971119225,0.10635978728533,0.02889128960669],[0.10122399777174,-0.026129702106118,-0.032427851110697]],[[0.065581984817982,0.070876516401768,-0.019694484770298],[0.038869976997375,0.028668103739619,-0.059216544032097],[-0.023117579519749,-0.061743460595608,-0.043552327901125]],[[0.045017402619123,-0.0011901577236131,0.11215423047543],[-0.035850588232279,0.0038771908730268,0.019607469439507],[-0.056976906955242,-0.022023374214768,0.054635040462017]],[[0.038948446512222,0.075382463634014,0.059273704886436],[-0.024715542793274,0.041897669434547,0.11314010620117],[-0.036178294569254,-0.0011574944946915,0.085316680371761]],[[-0.020719213411212,-0.0005162360612303,0.036565970629454],[0.022922098636627,-0.042799092829227,-0.00096671405481175],[-0.014401809312403,-0.0954629778862,0.0081050526350737]],[[0.030721323564649,0.066707611083984,0.064482033252716],[-0.019552566111088,0.021125921979547,0.0092305485159159],[0.018993947654963,0.04766358435154,0.083772987127304]],[[0.046462118625641,0.058700766414404,0.031083613634109],[0.016722444444895,-0.017438663169742,0.001961437985301],[0.062405325472355,0.0046500051394105,-0.010487210005522]],[[0.018511371687055,0.038290191441774,-0.016975115984678],[0.055044088512659,0.021709743887186,0.026848779991269],[-0.039775028824806,0.045960053801537,-0.018802845850587]],[[-0.020756013691425,-0.0018483482999727,-0.043976336717606],[-0.02692967094481,-0.0005233291303739,0.037192650139332],[-0.0010046621318907,-0.038097757846117,-0.084420695900917]],[[-0.0032285617198795,0.028935065492988,-0.10012294352055],[0.03587881103158,0.0044242856092751,-0.021619137376547],[-0.015582319349051,0.061196092516184,-0.095699720084667]],[[0.067374341189861,0.0032775504514575,0.053625900298357],[0.028004806488752,0.014416882768273,0.037076223641634],[0.078249469399452,0.052137836813927,0.09867238253355]],[[-0.027994807809591,0.010563761927187,-0.033990044146776],[0.016789216548204,-0.070377022027969,-0.098664067685604],[0.027626825496554,-0.039615727961063,0.035060722380877]],[[0.046235173940659,-0.017561562359333,-0.016279313713312],[0.058823324739933,0.034147698432207,0.021257573738694],[0.0096590304747224,-0.0099479621276259,0.0046096043661237]],[[0.0032338637392968,0.021378632634878,-0.061081942170858],[0.016066689044237,0.012772176414728,-0.049115262925625],[0.010135492309928,0.0051545202732086,-0.11064400523901]],[[0.056975934654474,0.058618020266294,0.0061394479125738],[0.10483012348413,0.031057115644217,0.060741234570742],[0.037402503192425,0.04261214658618,0.049624528735876]],[[0.092658773064613,0.020892797037959,-0.0024368029553443],[-0.019628684967756,-0.0013415570138022,-0.11155370622873],[0.067570887506008,-0.025304324924946,0.032116521149874]],[[-0.00090478785568848,0.0036057245451957,0.07500571757555],[0.082748174667358,-0.031457901000977,0.043170437216759],[-0.050437342375517,0.013241365551949,0.019222805276513]],[[-0.05373914912343,-0.024293007329106,-0.011050034314394],[-0.00092797639081255,-0.01377119217068,-0.042836859822273],[-0.035766113549471,-0.0092993322759867,-0.027245968580246]],[[-0.046187929809093,-0.022231264039874,-0.035960536450148],[0.010017869994044,-0.015152697451413,-0.035393491387367],[0.024184163659811,-0.022305503487587,-0.051985390484333]],[[0.0054545737802982,-0.039744794368744,0.034734036773443],[-0.011581419967115,0.032580990344286,-0.019316297024488],[-0.017247574403882,0.0086557259783149,-0.003254913026467]],[[-0.069187618792057,-0.03083511069417,-0.045360289514065],[0.0090705640614033,-0.023486625403166,-0.032085631042719],[-0.0018679873319343,-0.030202779918909,-0.011943144723773]],[[0.043939270079136,-0.024038199335337,-0.032809946686029],[0.023507991805673,0.028888341039419,0.052131105214357],[0.023791644722223,0.12303310632706,-0.019385077059269]],[[-0.026079334318638,-0.054474852979183,-0.041571255773306],[-0.020263966172934,-0.0504688359797,0.0066999536938965],[-0.026577305048704,0.014045650139451,0.022132726386189]],[[0.033235251903534,0.037749294191599,-0.040197644382715],[0.04423214122653,-0.014974740333855,-0.061590887606144],[-0.030243385583162,0.013140898197889,-0.038179710507393]],[[-0.02111760340631,0.00077466899529099,0.0029459369834512],[-0.013320912607014,0.022616650909185,-0.045636132359505],[-0.045477159321308,-0.048887349665165,-0.021737471222878]],[[0.056617151945829,-0.053158052265644,0.0031201434321702],[0.026831213384867,0.021094454452395,-0.032057031989098],[0.014526977203786,-0.024934105575085,-0.016543336212635]],[[0.017584290355444,0.041605848819017,-0.0074444157071412],[0.011701404117048,0.070468828082085,0.026352180168033],[0.0052896658889949,0.0030288191046566,-0.0040222629904747]],[[-0.08280149102211,0.048562776297331,0.07632277905941],[-0.042811296880245,-0.010428285226226,-0.030321108177304],[-0.0093025676906109,0.018467616289854,-0.0044241151772439]],[[-0.031871404498816,-0.030880657956004,0.049198668450117],[-0.077165596187115,-0.026280775666237,-0.0059814509004354],[0.0064257346093655,0.044187471270561,-0.030802300199866]],[[-0.0076503986492753,-0.069920942187309,0.0096072508022189],[0.019767774268985,-0.050164069980383,-0.015729984268546],[0.011931118555367,-0.063095793128014,0.054423473775387]],[[-0.062668420374393,-0.0079501168802381,-0.0093767503276467],[-0.048896044492722,0.041127175092697,-0.031595673412085],[-0.05456455796957,-0.029829137027264,-0.0028031710535288]],[[-0.06228993833065,-0.0085875960066915,0.055325694382191],[-0.025389282032847,0.037628244608641,-0.061447143554688],[0.033570323139429,-0.03214118629694,0.072615407407284]],[[0.008593806065619,-0.035846129059792,-0.011751436628401],[-0.019691329449415,-0.015547500923276,-0.027946824207902],[0.03920429572463,-0.066638320684433,0.07389160990715]],[[-0.043377120047808,-0.035826198756695,-0.052768256515265],[-0.031575180590153,0.0025329920463264,0.070291042327881],[-0.0065133813768625,-0.010130176320672,0.010338534601033]],[[-0.020620046183467,0.041742891073227,0.013742436654866],[0.0085429474711418,0.065859787166119,-0.001224197098054],[-0.0081666568294168,-0.026851253584027,-0.0074522420763969]],[[-0.018981484696269,0.020672470331192,0.048623617738485],[-0.10498471558094,-0.011103467084467,0.025322899222374],[-0.11142396181822,0.097126439213753,-0.018900234252214]],[[0.020110636949539,0.019038334488869,0.077773742377758],[0.027070702984929,0.087564401328564,0.02481304295361],[0.14036411046982,0.032405264675617,0.021731035783887]],[[0.012975448742509,-0.0017859807703644,-0.036358784884214],[-0.021371910348535,-0.00086268875747919,-0.0038269578944892],[0.021556032821536,-0.022490724921227,-0.050073347985744]],[[0.010305689647794,-0.0089895036071539,0.053081274032593],[0.0060628722421825,-0.046365201473236,-0.043604057282209],[-0.038630343973637,-0.085034169256687,-0.04547156020999]],[[-0.035486727952957,-0.019299563020468,-0.10493576526642],[0.014569986611605,-0.037293191999197,-0.046330142766237],[0.046987075358629,0.029610469937325,-0.020466323941946]],[[0.0094229551032186,0.015008352696896,0.062765762209892],[0.035887859761715,-0.032159574329853,0.0059409770183265],[0.011288974434137,0.0012767502339557,-0.0018158191815019]],[[0.00020197840058245,0.031275738030672,-0.0650440081954],[0.051080085337162,-0.039873458445072,-0.021344618871808],[0.019486103206873,-0.021485472097993,-0.075531728565693]],[[0.0019595299381763,0.034799955785275,0.04134814068675],[-0.081753000617027,-0.029374368488789,0.050267498940229],[0.066603310406208,-0.027335472404957,0.00043887415085919]],[[0.018805289641023,0.0053865392692387,-0.012506385333836],[-0.029308142140508,0.051323428750038,0.029373858124018],[-0.085104256868362,0.018941655755043,0.012311056256294]],[[0.018890915438533,0.0083151776343584,0.036812018603086],[0.075358420610428,-0.047723706811666,-0.031365964561701],[-0.034522239118814,0.060165170580149,-0.0069056367501616]]],[[[-0.11170262098312,-0.044067986309528,-0.0028890876565129],[-0.14596699178219,0.022907773032784,0.095501229166985],[-0.050931468605995,-0.0389742590487,-0.091985635459423]],[[-0.012987744994462,-0.016528006643057,-0.070940211415291],[0.043631948530674,-0.011509424075484,-0.034896161407232],[-0.040834255516529,0.045754313468933,0.118766233325]],[[-0.089304119348526,0.024651171639562,0.0042607174254954],[0.0065796817652881,0.07338359951973,0.060077328234911],[0.051029145717621,0.086886361241341,-0.080142579972744]],[[-0.023648900911212,-0.064783595502377,0.066928893327713],[0.012964735738933,-0.080465517938137,-0.079530529677868],[-0.096617706120014,-0.074415124952793,-0.091696172952652]],[[0.059175662696362,0.0681257173419,-0.058140747249126],[0.0018060867441818,0.069743074476719,0.063476704061031],[-0.13944530487061,-0.063882738351822,-0.015604882501066]],[[-0.076188333332539,-0.056805565953255,-0.020514838397503],[0.077150233089924,-0.049967914819717,0.0086954487487674],[-0.0065915915183723,0.0058258487842977,-0.028454838320613]],[[-0.0056709195487201,0.10027503222227,-0.11560137569904],[-0.097633816301823,-0.043312717229128,-0.023728065192699],[-0.055365134030581,-0.025580929592252,0.10238333791494]],[[0.04201453179121,0.0016877392772585,0.038291424512863],[-0.087572894990444,-0.027794370427728,-0.040266968309879],[-0.054808337241411,-0.052070386707783,0.056295361369848]],[[0.058041501790285,-0.0097798090428114,-0.015836315229535],[-0.020441584289074,0.0037439258303493,0.012282654643059],[-0.056441307067871,0.080685041844845,0.079111464321613]],[[-0.10107934474945,0.0029212133958936,0.036727476865053],[-0.04520295932889,0.0231843739748,0.11325242370367],[-0.080470651388168,0.015479410067201,0.020646322518587]],[[-0.022745603695512,-0.015602011233568,0.036756183952093],[0.05529972165823,0.0042387079447508,0.040239211171865],[-0.071331344544888,0.053775083273649,0.0054498505778611]],[[0.00332992663607,0.027317365631461,0.030339708551764],[-0.025931062176824,-0.035297751426697,0.0066193705424666],[0.030760614201427,0.04612609744072,-0.047189429402351]],[[0.045386034995317,0.10767903923988,0.098934076726437],[-0.005831278860569,0.043793208897114,0.03453715890646],[-0.027926431968808,-0.019007520750165,0.036537185311317]],[[-0.0044241617433727,-0.017323581501842,0.032435547560453],[0.10100530087948,0.0091698290780187,-0.10844700038433],[-0.028787910938263,0.011779779568315,0.023155862465501]],[[0.062354791909456,-0.10152332484722,-0.06414520740509],[-0.011808062903583,0.065726257860661,-0.062071863561869],[0.094172775745392,-0.093689471483231,-0.013905560597777]],[[0.013604287058115,-0.077308170497417,0.078900173306465],[0.12852166593075,0.059691067785025,-0.048413991928101],[-0.012257324531674,0.013418565504253,0.11339094489813]],[[-0.053045630455017,0.019872708246112,0.021177949383855],[-0.020784744992852,-0.038734827190638,-0.0238705445081],[0.0071226954460144,0.043626450002193,0.017897734418511]],[[-0.097178503870964,-0.0035415298771113,-0.049416698515415],[-0.031026383861899,0.043664053082466,-0.032334517687559],[0.090815044939518,-0.048242677003145,-0.054983519017696]],[[-0.0034193566534668,0.010542332194746,-0.041156899183989],[-0.024903438985348,-0.040969111025333,-0.051437184214592],[0.0052565531805158,0.087629809975624,-0.0040742596611381]],[[0.010468731634319,0.046410262584686,0.053166352212429],[-0.068852841854095,-0.076988950371742,0.026104150339961],[0.036539442837238,0.024879837408662,0.011186305433512]],[[-0.023070966824889,0.010291993618011,0.11786591261625],[-0.026239616796374,-0.0071255778893828,-0.063942350447178],[-0.063944965600967,-0.070980124175549,-0.008680447936058]],[[0.097737446427345,0.09176629036665,0.046313233673573],[0.067983224987984,-0.047149509191513,-0.1080621406436],[0.0071189696900547,0.069597259163857,0.11441239714622]],[[0.016923204064369,0.072933055460453,0.0064738439396024],[0.075526900589466,0.022040899842978,-0.11420590430498],[-0.039797477424145,0.0012894760584459,-0.052256803959608]],[[-0.051993392407894,-0.042005747556686,-0.014386904425919],[-0.065147459506989,-0.065183684229851,-0.048665419220924],[0.044141605496407,-0.02333465591073,0.012697883881629]],[[-0.021583767607808,0.18974724411964,-0.045835912227631],[0.25464925169945,-0.10399232804775,0.053499277681112],[-0.040111623704433,0.25923588871956,0.006248920224607]],[[0.060074478387833,-0.1119689643383,-0.10655619204044],[-0.052271649241447,0.060339223593473,-0.027983758598566],[-0.047897420823574,-0.11803942173719,0.017698900774121]],[[0.080242574214935,-0.0142119275406,-0.011016965843737],[0.022935902699828,0.091804355382919,-0.074089087545872],[-0.0072326241061091,-0.042236249893904,-0.024564325809479]],[[-0.030460441485047,0.043954085558653,-0.12470753490925],[-0.018041163682938,0.0090611111372709,-0.028540523722768],[0.059902288019657,0.098431698977947,-0.041949450969696]],[[-0.012507492676377,-0.0088452640920877,0.067095756530762],[0.00015191468992271,-0.15491001307964,0.030235815793276],[0.03643586859107,0.049194477498531,0.072112582623959]],[[-0.087152570486069,0.087030120193958,-0.006482245400548],[0.031879883259535,-0.091629803180695,0.01883402094245],[-0.0057315463200212,0.058152757585049,-0.0112479114905]],[[0.1032305136323,-0.035569570958614,-0.040304843336344],[-0.064231604337692,0.11063124239445,-0.13804058730602],[0.17617572844028,-0.04560187831521,-0.06598924100399]],[[0.045213013887405,-0.028828209266067,0.070353724062443],[-0.023484624922276,0.0035827122628689,-0.08593063056469],[-0.026369901373982,-0.0099695017561316,0.043721649795771]],[[0.055625766515732,-0.043138284236193,0.013873453252017],[-0.034443184733391,0.015027654357255,0.085953623056412],[-0.017673710361123,-0.029684275388718,0.04289835691452]],[[0.047193367034197,-0.033326227217913,-0.053387187421322],[0.035462852567434,-0.021783262491226,0.02952941134572],[-0.070813603699207,0.014351491816342,0.04894856736064]],[[-0.05597036331892,-0.027706675231457,0.027256378903985],[-0.10737017542124,-0.046106014400721,-0.025039860978723],[-0.072392322123051,-0.13271866738796,0.03435817733407]],[[-0.019389847293496,0.056339405477047,0.12911108136177],[0.023748124018312,-0.097340494394302,-0.0091967592015862],[0.039202552288771,-0.079009786248207,-0.01422347035259]],[[-0.00431491388008,-0.088843606412411,-0.0084276357665658],[-0.0078214518725872,-0.0031716267112643,-0.0071745710447431],[0.0099634872749448,0.038702987134457,0.05653640255332]],[[0.040380403399467,-0.03731931000948,-0.11659505963326],[0.1086739897728,0.099671185016632,0.056876674294472],[0.052574057132006,0.033919140696526,-0.041787289083004]],[[-0.023780018091202,-0.092716135084629,0.029333243146539],[0.037133868783712,0.13519836962223,-0.033549971878529],[0.051693294197321,-0.064140975475311,0.026227938011289]],[[0.13269913196564,-0.029455004259944,-0.0048392424359918],[0.081447027623653,0.021899534389377,0.033299420028925],[-0.067323975265026,0.01426097098738,0.042537618428469]],[[0.068050742149353,0.039471391588449,-0.046859618276358],[-0.084134161472321,-0.04987769946456,-0.078117199242115],[0.037948284298182,-0.038326792418957,0.040420897305012]],[[0.048957224935293,0.015337604098022,-0.030538734048605],[0.02212287299335,0.033239904791117,-0.060700092464685],[0.06831356883049,-0.015659887343645,0.10232837498188]],[[-0.018599273636937,0.007283752784133,-0.097539886832237],[0.066244527697563,0.0036005333531648,-0.094566442072392],[0.029355704784393,0.038645304739475,-0.097658671438694]],[[0.003799291793257,-0.0015437876572832,0.066892817616463],[-0.071662537753582,0.065001256763935,0.014612040482461],[0.023635987192392,-0.0016756758559495,-0.011470397934318]],[[0.079521909356117,0.0058698398061097,-0.026475833728909],[0.0296560395509,0.1054031252861,0.11110412329435],[0.028593305498362,-0.08906377106905,0.043285828083754]],[[0.026087114587426,0.010365425609052,-0.032665111124516],[-0.0044513796456158,-0.019868101924658,0.1081432774663],[-0.051859457045794,0.026908565312624,-0.055102396756411]],[[-0.07049971818924,-0.035013433545828,-0.046950399875641],[-0.095448523759842,-0.042474154382944,-0.26426911354065],[-0.004037391860038,-0.00076298200292513,0.062310341745615]],[[-0.073425203561783,0.046161528676748,0.11193254590034],[-0.012047780677676,0.062437251210213,-0.030372383072972],[-0.03126111254096,-0.033315259963274,0.019383031874895]],[[-0.016532510519028,-0.051056940108538,-0.057428020983934],[0.034027829766273,-0.09884911775589,-0.029019026085734],[-0.020500607788563,0.018374048173428,-0.048334967344999]],[[0.027389569208026,0.033178441226482,-0.11862169206142],[0.027952974662185,0.074037946760654,0.0020286648068577],[-0.073906801640987,-0.065246276557446,0.08089492470026]],[[0.048950705677271,0.0087920073419809,-0.062327340245247],[-0.0040823868475854,-0.0056913024745882,0.0091975219547749],[0.053290545940399,0.10642200708389,-0.051124293357134]],[[0.024365788325667,0.051177572458982,-0.052802558988333],[-0.033776182681322,-0.089226670563221,0.077612787485123],[0.030914090573788,-0.034479051828384,0.042246285825968]],[[0.0022355399560183,0.056190006434917,0.081165716052055],[0.05453772097826,0.043410040438175,0.014274343848228],[0.093934506177902,0.060264021158218,-0.033287856727839]],[[0.022136071696877,-0.020291624590755,0.1007491350174],[0.02905660867691,-0.0053800260648131,-0.049926854670048],[0.02271712012589,-0.043580800294876,-0.010124703869224]],[[-0.046609349548817,0.085000857710838,0.020592205226421],[0.12317594140768,0.03044749982655,0.035671450197697],[0.082611665129662,0.14148671925068,0.036423236131668]],[[0.049100484699011,-0.038224007934332,-0.051768973469734],[0.00051993748638779,-0.051228042691946,0.073453053832054],[-0.080059126019478,0.0097020454704762,0.07035955786705]],[[0.12552045285702,-0.060570642352104,-0.027935922145844],[-0.010865108110011,0.057332508265972,0.2153072655201],[0.17724686861038,0.02134626545012,-0.052716419100761]],[[0.10567768663168,0.028701439499855,0.0055254553444684],[-0.02657332457602,0.14174698293209,-0.14383798837662],[0.06742338091135,-0.015669230371714,0.09370593726635]],[[-0.053080789744854,0.044602155685425,-0.010668070986867],[0.098016895353794,0.096029296517372,0.067220874130726],[-0.022170262411237,-0.014062373898923,-0.0016162869287655]],[[0.10246646404266,-0.041622556746006,0.1544034332037],[-0.043227635324001,-0.064532294869423,0.022484747692943],[0.1221354752779,0.013128628954291,-0.055718090385199]],[[-0.056114971637726,0.098767787218094,-0.11324076354504],[0.054329358041286,-0.046642109751701,0.028735607862473],[-0.11605098098516,0.038535311818123,-0.03875906765461]],[[-0.018056908622384,0.06590873003006,-0.012419521808624],[0.028550332412124,-0.012907765805721,-0.096680514514446],[-0.041995115578175,-0.014779394492507,-0.087692052125931]],[[-0.027441039681435,0.060429517179728,-0.020407507196069],[0.069097526371479,0.058054909110069,0.02047023922205],[-0.12473548203707,0.00011316744348733,-0.027600809931755]],[[0.084569841623306,-0.021778639405966,0.011749679222703],[0.003994211088866,0.017296899110079,0.046958107501268],[-0.013878537341952,-0.024542527273297,0.08300019800663]],[[-0.040641084313393,0.0077276513911784,-0.060954816639423],[-0.046167224645615,0.051944304257631,-0.0085570085793734],[-0.037164647132158,-0.012175241485238,-0.015023873187602]],[[0.14954890310764,0.096217900514603,-0.033449683338404],[-0.0059818187728524,0.02883829548955,-0.075907178223133],[0.021505579352379,0.079158328473568,0.016512190923095]],[[-0.0015885095344856,-0.07352638989687,-0.0093954289332032],[-0.038340475410223,-0.0043646930716932,-0.02910527959466],[-0.011073119938374,-0.10724079608917,-0.16559338569641]],[[-0.088590815663338,0.0058338902890682,-0.071234166622162],[0.19214463233948,-0.045336183160543,-0.034842621535063],[-0.06459528952837,0.012630117125809,0.0093615893274546]],[[0.018877165392041,0.0035490952432156,-0.11856010556221],[0.14244985580444,0.071562878787518,-0.00052909919759259],[0.015024081803858,0.082358159124851,-0.026450546458364]],[[0.079247519373894,0.0027382688131183,-0.028563482686877],[-0.095171965658665,-0.022416967898607,0.041186440736055],[0.046021550893784,0.053972002118826,-0.026377452537417]],[[0.030565215274692,-0.034066464751959,0.0010948862181976],[0.090147666633129,0.019645756110549,0.13116507232189],[-0.062321148812771,-0.044943194836378,-0.01939619332552]],[[0.0053219776600599,0.069788403809071,-0.050848707556725],[0.019891105592251,-0.050733238458633,0.002875404432416],[-0.058626420795918,0.036565337330103,-0.019764048978686]],[[0.089763723313808,-0.075388215482235,0.045803532004356],[-0.1327973306179,0.013034489937127,0.051350422203541],[-0.0065762270241976,-0.023912917822599,-0.17048524320126]],[[-0.017548982053995,-0.079181507229805,8.390897710342e-05],[-0.035435505211353,0.019084356725216,-0.063815139234066],[0.034778602421284,-0.051927879452705,0.085571266710758]],[[0.022421041503549,0.081811495125294,-0.12047312408686],[-0.030668590217829,-0.13791593909264,-0.010825339704752],[-0.061238568276167,0.029784947633743,0.05468763038516]],[[0.0055274735204875,-0.036307614296675,0.047313641756773],[-0.022130355238914,-0.070679150521755,-0.068927302956581],[0.080518335103989,0.010003598406911,-0.11001636087894]],[[0.030079236254096,-0.09369907528162,-0.0052960473112762],[-0.12156308442354,0.029421372339129,0.025802509859204],[0.029406893998384,0.097501486539841,-0.029160555452108]],[[-0.041140373796225,0.10091840475798,0.036961674690247],[0.061440009623766,0.034209936857224,0.11910759657621],[0.064914301037788,0.1428610086441,0.082446038722992]],[[0.0049086795188487,0.010250312276185,-0.071619480848312],[-0.035185046494007,0.06601245701313,0.024110874161124],[-0.030713621526957,-0.065014198422432,-0.015747580677271]],[[0.0035115112550557,-0.069209590554237,0.0073040965944529],[-0.0037855529226363,0.0066709094680846,-0.01186296902597],[-0.07860192656517,-0.034354489296675,-0.15469138324261]],[[0.090058743953705,-0.0052387095056474,0.028166770935059],[0.023504367098212,-0.033260721713305,0.009858856908977],[0.027780340984464,-0.053998786956072,-0.083604350686073]],[[0.096294067800045,0.04102360829711,-0.10969121009111],[0.055227562785149,-0.081749193370342,0.22109411656857],[0.1239396110177,0.17389200627804,-0.040911488234997]],[[-0.17898474633694,0.045439269393682,0.074061930179596],[0.025315875187516,0.029527021571994,0.047065392136574],[-0.017194788902998,-0.11036820709705,0.093301810324192]],[[-0.056294437497854,-0.024533512070775,-0.014278496615589],[-0.079322993755341,-0.012312086299062,0.065099373459816],[-0.017040230333805,-0.13330838084221,-0.0317602455616]],[[0.015426155179739,0.036670800298452,0.0045020366087556],[0.057674206793308,-0.080968402326107,-0.0070477020926774],[-0.021396650001407,-0.015515704639256,-0.15327228605747]],[[0.042706269770861,-0.077644012868404,-0.042255654931068],[-0.098820835351944,-0.017671298235655,-0.010327000170946],[-0.05495248362422,0.15867307782173,0.10038578510284]],[[0.018067821860313,0.00056264898739755,0.020645564422011],[0.077340357005596,0.012837655842304,-0.025112116709352],[0.050837237387896,0.13208198547363,0.087596461176872]],[[-0.011480199173093,0.054405923932791,0.10445134341717],[0.10337667912245,0.12509517371655,-0.014113012701273],[-0.0031379412394017,-0.064552135765553,0.10233670473099]],[[-0.015832509845495,0.030726389959455,-0.023953009396791],[0.030573815107346,-0.0050536855123937,0.019432378932834],[0.14699594676495,0.031683538109064,0.094868063926697]],[[0.052320834249258,0.061242587864399,0.12639781832695],[-0.065876178443432,0.0052748997695744,-0.073652192950249],[-0.063103936612606,-0.1322456151247,0.046322327107191]],[[0.072996072471142,0.12611953914165,0.034689873456955],[0.10039251297712,0.12849715352058,0.010255112312734],[0.019059430807829,0.01354222279042,-0.062689580023289]],[[-0.04535810649395,0.067040018737316,-0.047201350331306],[-0.058490972965956,-0.15361702442169,-0.079531125724316],[0.078229852020741,0.0079466495662928,-0.063715100288391]],[[0.029603520408273,-0.085354767739773,0.061623021960258],[-0.039467114955187,-0.056496858596802,0.033988501876593],[-0.063022159039974,0.045199640095234,-0.073188185691833]],[[0.024599766358733,-0.07761312276125,0.0053351880051196],[-0.067950524389744,-0.036524809896946,0.045013625174761],[0.069674454629421,0.061234287917614,-0.031273636966944]],[[-0.010711761191487,-0.030459867790341,-0.040476024150848],[-0.013793103396893,0.054837707430124,-0.058045752346516],[-0.02655023522675,-0.089599080383778,0.0063466345891356]],[[0.06091358140111,-0.040736120194197,0.04563881829381],[0.17343370616436,-0.04691044986248,-0.13372850418091],[0.0056071500293911,0.063236355781555,0.061854150146246]],[[-0.093410059809685,-0.063428424298763,0.07588604837656],[0.0054205441847444,-0.0046173329465091,-0.03695435076952],[0.0067680049687624,0.093792334198952,-0.092276021838188]],[[0.098695248365402,0.060472551733255,0.043513957411051],[-0.01716442592442,-0.10841643810272,0.098764441907406],[0.035524364560843,0.0075997039675713,0.040401935577393]],[[0.066411562263966,0.084782190620899,-0.032555229961872],[-0.0077486126683652,0.12148065119982,-0.0060594920068979],[0.038137599825859,0.11604405194521,-0.019367601722479]],[[0.13135030865669,-0.093587048351765,0.089545540511608],[-0.068408712744713,0.068515688180923,-0.096049346029758],[0.03068826906383,0.059533905237913,-0.024471908807755]],[[-0.0073172068223357,-0.052303619682789,-0.092145271599293],[-0.16435243189335,0.11163192987442,0.17682218551636],[-0.021243698894978,0.014594377949834,0.044595018029213]],[[-0.0027119207661599,-0.031197374686599,-0.055354293435812],[-0.012701444327831,-0.058294672518969,0.043385844677687],[-0.017824972048402,-0.02263299189508,0.072197549045086]],[[-0.024191550910473,0.035153437405825,-0.010953926481307],[-0.0080030085518956,0.007892114110291,0.039448294788599],[-0.087992064654827,-0.035049952566624,-0.095733553171158]],[[0.09735269099474,0.035331338644028,0.080527946352959],[-0.033341404050589,0.036079935729504,-0.028608860448003],[-0.017480557784438,-0.042938895523548,-0.0050222990103066]],[[-0.0044358419254422,-0.13363853096962,-0.053912784904242],[-0.013210587203503,-0.1052076742053,-0.012081240303814],[0.036281108856201,-0.11537699401379,0.047195140272379]],[[0.017372732982039,-0.0084737204015255,-0.029409661889076],[-0.099567323923111,-0.03102383390069,-0.086993977427483],[-0.11257693171501,0.015908196568489,-0.07988690584898]],[[0.047394663095474,-0.069086067378521,0.037761852145195],[-0.012130619026721,-0.0090151522308588,-0.072360396385193],[-0.0002327815600438,-0.038942687213421,-0.088963955640793]],[[0.11666873842478,-0.00606201402843,0.012586570344865],[-0.0051726438105106,0.075269363820553,-0.084855958819389],[0.0006277539068833,0.022258069366217,-0.077167451381683]],[[-0.067157201468945,-0.020034648478031,-0.015165751799941],[-0.0055294018238783,-0.035308532416821,0.063895732164383],[-0.075444035232067,-0.0031994504388422,0.039563111960888]],[[0.11525943875313,0.039034727960825,-0.052449032664299],[-0.036963313817978,0.0068064262159169,-0.032784227281809],[-0.01827903278172,-0.073261082172394,-0.062771648168564]],[[-0.0054134889505804,0.056288354098797,0.028822436928749],[-0.017452895641327,-0.026410080492496,0.0074357036501169],[-0.057793710380793,0.030257757753134,-0.027707042172551]],[[-0.13192276656628,0.038912799209356,0.12536863982677],[-0.010326934978366,0.030209319666028,0.010405858047307],[-0.11274798959494,-0.048210803419352,0.097465261816978]],[[0.077063590288162,-0.087274990975857,-0.00070236704777926],[0.0094372108578682,0.0045832674950361,0.076317027211189],[0.085372060537338,0.0058710896410048,-0.031007612124085]],[[-0.066578678786755,0.026911042630672,0.081590957939625],[-0.046410530805588,-0.040822844952345,0.044648259878159],[-0.0084479777142406,0.052291363477707,0.00010399570601294]],[[0.0045320633798838,-0.11068625748158,-0.0081909261643887],[-0.021659906953573,0.055153895169497,0.12965036928654],[-0.048232693225145,0.04076661914587,0.061001367866993]],[[-0.1124609708786,-0.061727833002806,0.027656063437462],[0.017464751377702,-0.027176521718502,0.08481539785862],[0.032048504799604,-0.034661844372749,-0.011910785920918]],[[0.017501661553979,0.025110382586718,-0.022027364000678],[0.069629810750484,0.11737318336964,0.039993491023779],[-0.010605273768306,0.085819162428379,0.034721937030554]],[[0.029658889397979,0.090609468519688,0.13518059253693],[0.012334001250565,-0.001091071520932,0.048577334731817],[0.039528172463179,0.0073717390187085,0.14345243573189]],[[-0.015175412409008,-0.030976496636868,0.10533586889505],[-0.096068069338799,-0.01158868521452,0.016069097444415],[-0.067631259560585,0.061132915318012,0.034247785806656]],[[0.0098694311454892,-0.032007798552513,-0.075581334531307],[-0.014732061885297,0.15021732449532,0.072026394307613],[-0.032764155417681,0.01762942969799,0.015455906279385]],[[-0.09983416646719,-0.012957432307303,-0.15101312100887],[-0.054252222180367,-0.06694719940424,-0.016924772411585],[-0.086016520857811,-0.14333735406399,-0.12355632334948]],[[-0.033978052437305,0.016561832278967,0.069725684821606],[-0.075166165828705,0.0084580332040787,0.034769870340824],[-0.086425311863422,-0.071877211332321,0.10308041423559]],[[-0.0503812097013,0.0068739037960768,-0.010734243318439],[-0.019703600555658,0.024953931570053,-0.093981683254242],[-0.007170494645834,0.048235040158033,0.04970458522439]],[[-0.053586356341839,-0.059721283614635,-0.035283867269754],[-0.0020573798101395,0.07484358549118,-0.013311724178493],[-0.075986921787262,-0.041191082447767,-0.042349141091108]],[[0.002493339125067,-0.03659126535058,0.026634339243174],[-0.055233735591173,-0.0024274662137032,0.0084562338888645],[0.032716002315283,-0.13101804256439,-0.11249697208405]],[[0.056768823415041,-0.028145993128419,0.089152626693249],[-0.15805667638779,0.097366541624069,0.052635878324509],[-0.059867348521948,-0.10679099708796,-0.06561403721571]],[[-0.025062179192901,0.037504725158215,-0.021568581461906],[0.088885851204395,-0.017812548205256,-0.035992633551359],[0.012857985682786,0.0077336123213172,-0.11495249718428]],[[-0.011702512390912,-0.04406851157546,-0.067235343158245],[-0.13933348655701,-0.11113066971302,-0.080875374376774],[0.031891856342554,-0.044747833162546,0.057937629520893]]],[[[0.034317184239626,-0.041736386716366,-0.0094099752604961],[-0.036630339920521,0.01450489461422,-0.00044733259710483],[0.029886424541473,-0.041928522288799,0.072106279432774]],[[0.078544735908508,0.041899532079697,-0.0041022072546184],[0.054605338722467,-0.10929485410452,0.01229698676616],[0.01007282640785,0.002299758605659,0.059528209269047]],[[-0.0059584770351648,0.040122091770172,0.011471509002149],[0.013050169683993,-0.012641046196222,0.10073105245829],[-0.10173323005438,-0.0409751906991,-0.0024233695585281]],[[0.0081987557932734,-0.0087174857035279,0.029162278398871],[0.062944479286671,-0.09278728812933,0.032663766294718],[-0.018896428868175,0.039948053658009,0.011969167739153]],[[0.03886329382658,0.023488786071539,-0.029455963522196],[0.11999137699604,0.061547927558422,0.17036464810371],[-0.013779642991722,0.0087924776598811,-0.0017016767524183]],[[0.031901776790619,-0.015765262767673,0.0013466265518218],[0.021207708865404,-0.02381775714457,0.053403034806252],[0.030861200764775,0.015211441554129,0.064697541296482]],[[-0.00097187742358074,0.04598380625248,-0.0077855684794486],[0.060873955488205,0.029756039381027,-0.014960466884077],[0.030309604480863,0.018638610839844,-0.045453120023012]],[[0.010755789466202,-0.013298406265676,0.066433191299438],[-0.012449021451175,-0.018471455201507,0.065462492406368],[0.025633800774813,0.059961125254631,0.0071649081073701]],[[0.035602502524853,0.024545811116695,0.044197358191013],[-0.10422683507204,-0.085741281509399,0.0037434487603605],[-0.060144174844027,0.045473091304302,-0.050493888556957]],[[0.036022830754519,-0.032543685287237,-0.018693421036005],[-0.02637555450201,-0.032678931951523,-0.013439863920212],[0.028522001579404,0.063563100993633,-0.026860015466809]],[[-0.088738784193993,-0.010458734817803,0.077603600919247],[-0.026716969907284,0.091433666646481,0.099002003669739],[-0.040017109364271,-0.050265036523342,0.0073623405769467]],[[0.03530053421855,0.10729057341814,0.050979595631361],[0.047816716134548,0.050867941230536,0.089617878198624],[0.064011767506599,0.11708377301693,-0.083561070263386]],[[0.054454993456602,0.15169137716293,-0.0910998955369],[-0.040376283228397,-0.038614831864834,0.037249997258186],[0.034816354513168,0.072981491684914,-0.034710388630629]],[[-0.0068997144699097,0.10800278931856,0.020579636096954],[-0.035810917615891,0.11147383600473,0.092729449272156],[0.01737554743886,-0.10257897526026,0.045285888016224]],[[0.098884344100952,-0.042697507888079,-0.034907650202513],[-0.01848017051816,-0.067579500377178,-0.028241362422705],[-0.00052567425882444,-0.0053366385400295,-0.00026403882657178]],[[0.082214623689651,-0.053277976810932,-0.04986659809947],[-0.021031385287642,0.1796265989542,0.031109901145101],[-0.095048628747463,-0.18326488137245,-0.025028366595507]],[[-0.040097434073687,0.00061107624787837,-0.14297656714916],[-0.0022804229520261,-0.00084369425894693,-0.021457934752107],[0.0089784879237413,0.0073565864004195,-0.024660656228662]],[[0.019458999857306,0.013844892382622,0.03130017966032],[-0.013865485787392,-0.044660784304142,0.014853054657578],[0.0057605351321399,-0.083360381424427,-0.0063169579952955]],[[-0.055869333446026,0.0079357177019119,0.058156102895737],[0.030737016350031,0.0031492859125137,-0.08327179402113],[-9.8462434834801e-05,-0.029778787866235,0.031161272898316]],[[-0.052054405212402,-0.05029496178031,0.019773432984948],[-0.066127307713032,-0.01572247967124,-0.027564328163862],[-0.0093333637341857,0.073254376649857,0.0049609816633165]],[[-0.012807289138436,-0.0011514184297994,0.034538641571999],[0.05471283197403,0.064411923289299,0.012515944428742],[0.0029451358132064,-0.018947696313262,-0.070946246385574]],[[0.0046417093835771,0.035517849028111,-0.08487481623888],[0.080281242728233,-0.001802466227673,0.046103600412607],[-0.093502126634121,-0.0037850681692362,0.14748466014862]],[[-0.042030069977045,0.11966096609831,-0.035167191177607],[-0.0066996226087213,-0.034835312515497,-0.12629532814026],[-0.011180810630322,0.013746392913163,-0.07210573554039]],[[-0.037569053471088,0.02092194929719,-0.023382229730487],[-0.045144639909267,-0.03168598935008,0.00057396583724767],[-0.036048498004675,-0.012425618246198,-0.015227281488478]],[[0.011280812323093,-0.0089746182784438,-0.042157661169767],[-0.0033071734942496,0.03239968046546,0.062469843775034],[0.028447277843952,0.0078616086393595,0.10799394547939]],[[0.021770374849439,-0.0039976146072149,0.064437918365002],[-0.0052084834314883,-0.083555176854134,-0.028560362756252],[-0.038703735917807,0.012169140391052,0.013152864761651]],[[-0.013821456581354,-0.029487101361156,0.12675119936466],[-0.069939978420734,0.012052637524903,0.025952331721783],[-0.036858707666397,0.04539430513978,-0.0034118976909667]],[[-0.030823718756437,0.10051061958075,-0.0003602810902521],[-0.030024997889996,-0.02683306671679,-0.018937386572361],[0.11320647597313,-0.064063392579556,0.071786224842072]],[[0.027083992958069,0.10570275038481,-0.051966786384583],[-0.04148617759347,0.052828516811132,0.03239618986845],[0.0086760688573122,-0.070637054741383,0.035748708993196]],[[-0.072771914303303,0.04263998940587,-0.016829591244459],[0.0028820601291955,0.087232500314713,0.042852971702814],[-0.099191203713417,-0.10741309821606,0.034814219921827]],[[-0.060475382953882,0.029123907908797,-0.033782597631216],[0.040607947856188,0.0039195301942527,-0.028516795486212],[0.041262831538916,0.029144253581762,0.032740294933319]],[[0.10279751569033,0.060749236494303,-0.020864959806204],[-0.022407138720155,-0.16961398720741,0.046763811260462],[0.046668816357851,0.0026988501194865,0.11197949200869]],[[-0.024155469611287,0.0017207426717505,0.039967305958271],[0.13772751390934,-0.063534051179886,0.10593115538359],[0.035835433751345,-0.082366824150085,0.046130776405334]],[[-0.07066435366869,0.025718059390783,-0.041448209434748],[-0.035194121301174,0.01460034865886,0.020632205531001],[0.0069107124581933,-0.023546364158392,0.059125959873199]],[[-0.065264515578747,-0.034657072275877,0.063677906990051],[0.06434141099453,-0.030840961262584,0.061709709465504],[0.02004487067461,0.0050403494387865,-0.016122158616781]],[[0.10188508778811,0.049957673996687,-0.026105234399438],[0.048275347799063,-0.041744392365217,0.079602941870689],[-0.19826562702656,0.072516292333603,0.0030854700598866]],[[0.01294875331223,0.0085562132298946,0.023980408906937],[-0.00054038478992879,-0.044482078403234,-0.069026321172714],[-0.032591722905636,-0.012221238575876,-0.1477367579937]],[[-0.018113166093826,-0.044198874384165,-0.070231594145298],[-0.005091511644423,0.12439922243357,0.075224824249744],[-0.047754768282175,0.00039739275234751,0.021250462159514]],[[0.07851792126894,0.14972004294395,-0.099892698228359],[-0.063764467835426,-0.061685506254435,-0.066027939319611],[-0.017960706725717,0.032776635140181,-0.011448109522462]],[[0.0090172188356519,0.014293795451522,-0.022995512932539],[-0.0045800670050085,-0.049004308879375,0.0013459689216688],[-0.011255341582,0.032571665942669,0.010183604434133]],[[-0.021075513213873,0.0020152535289526,-0.02874524332583],[0.066724769771099,-0.049438815563917,-0.020596561953425],[-0.007156225387007,0.02668622136116,0.044871281832457]],[[0.028770761564374,0.054383013397455,0.14674523472786],[0.037850428372622,0.1013346016407,-0.037444673478603],[-0.081042215228081,0.044161852449179,0.00049827684415504]],[[0.022486312314868,-0.050226360559464,-0.054842740297318],[0.038893572986126,0.068204030394554,0.11538106948137],[0.067627131938934,0.085423111915588,0.10952289402485]],[[-0.020297385752201,0.054864645004272,0.077328011393547],[0.0542903393507,-0.069610670208931,-0.055053196847439],[0.054827004671097,-0.03186122700572,-0.0020788938272744]],[[-0.031870547682047,-0.044662788510323,-0.044570542871952],[-0.10110780596733,0.013475950807333,-0.042311452329159],[0.006328022107482,0.085933066904545,0.095353752374649]],[[0.076295681297779,0.093146122992039,-0.10673773288727],[0.060067340731621,-0.025892939418554,0.028966976329684],[-0.058466959744692,0.09254927188158,0.079589314758778]],[[-0.030259964987636,-0.091820411384106,-0.025871023535728],[0.061509180814028,0.041427958756685,-0.049751330167055],[-0.045534901320934,0.015415384434164,-0.046716254204512]],[[0.029827171936631,-0.067279286682606,-0.12567175924778],[-0.045444071292877,-0.052473876625299,-0.017563108354807],[0.063017547130585,-0.041755020618439,-0.044945806264877]],[[-0.049684766680002,0.0038689265493304,0.030623389407992],[-0.076500996947289,-0.0056167682632804,-0.053107332438231],[-0.053487222641706,-0.060186818242073,-0.063058383762836]],[[0.059705838561058,-0.016412876546383,-0.10504158586264],[-0.018830547109246,0.01028017885983,-0.021024173125625],[0.066261067986488,0.0096643920987844,0.037390507757664]],[[-0.052360322326422,-0.040769409388304,-0.048263374716043],[-0.014889312908053,0.17771904170513,-0.02275188267231],[0.16259077191353,0.12490642815828,-0.11889612674713]],[[-0.032994035631418,-0.034844145178795,-0.0021531376987696],[0.031023602932692,0.077717423439026,-0.030669717118144],[0.083650723099709,0.0779884532094,-0.028613738715649]],[[0.1105070412159,0.027313578873873,-0.042961273342371],[-0.0060876621864736,0.059966906905174,-0.01826704852283],[-0.074614480137825,-0.069632038474083,0.026224223896861]],[[0.0079583059996367,0.00036272205761634,-0.015908107161522],[0.024600928649306,0.079841144382954,0.030295392498374],[0.034724932163954,0.046651158481836,0.14304752647877]],[[0.065252617001534,-0.061292983591557,0.0014391962904483],[-0.037425946444273,0.092695385217667,0.043421179056168],[0.0081409914419055,0.0053977640345693,0.11387460678816]],[[-0.073871277272701,-0.15577504038811,0.030202681198716],[0.062406498938799,0.0077296905219555,0.034009024500847],[0.03775292634964,0.013009854592383,-0.030327195301652]],[[0.11034850031137,-0.06134795024991,-0.028346909210086],[0.081806138157845,-0.013276220299304,-0.0038445445243269],[0.061658605933189,0.055778861045837,0.068453446030617]],[[-0.061372496187687,0.0050149587914348,-0.096610933542252],[-0.024137672036886,0.010307708755136,0.14345535635948],[0.083618678152561,-0.037775352597237,-0.035911615937948]],[[0.020563075318933,-0.015244522131979,0.016613649204373],[0.13747797906399,0.03395739197731,-0.011404071003199],[0.039628379046917,0.061239566653967,-0.0090591898187995]],[[-0.024015164002776,0.07106701284647,0.063658230006695],[-0.063674323260784,-0.13140095770359,0.11500405520201],[0.17547339200974,-0.030591901391745,-0.028963236138225]],[[0.022124189883471,-0.071141704916954,0.066062077879906],[-0.033115893602371,0.075609683990479,0.0043371445499361],[-0.058377273380756,-0.06458355486393,0.094905950129032]],[[-0.0051582572050393,-0.029778737574816,-0.028583211824298],[-0.034730195999146,-0.04641404747963,-0.072753995656967],[-0.028301000595093,-0.019736452028155,-0.03080970607698]],[[0.022654986009002,-0.011629538610578,0.0096719916909933],[0.051944345235825,0.048444878309965,-0.050836201757193],[0.043293412774801,-0.056052025407553,0.0441491343081]],[[-0.036534443497658,0.03104885481298,0.035775978118181],[-0.13526052236557,-0.026737472042441,0.065014317631721],[0.052962508052588,0.037722896784544,-0.030693305656314]],[[-0.035083502531052,-0.00035793398274109,-0.074532270431519],[0.010323324240744,-0.054164536297321,-0.095501571893692],[-0.08210427314043,0.16083468496799,0.0099962456151843]],[[0.015423176810145,0.064815975725651,0.014858520589769],[-0.010996793396771,0.018203176558018,0.069253116846085],[0.057985529303551,-0.014719964005053,0.029798267409205]],[[0.10440999269485,0.065853334963322,-0.07076208293438],[-0.041128370910883,0.030628945678473,-0.019723687320948],[0.044313881546259,0.0041521559469402,0.036483615636826]],[[0.091438069939613,0.10341158509254,-0.046013437211514],[0.085830524563789,0.069587141275406,0.047741945832968],[-0.014876505360007,0.034340381622314,0.059135720133781]],[[-0.0035668278578669,0.038654256612062,-0.018403502181172],[0.027984263375401,0.10711352527142,-0.11706164479256],[0.00031655089696869,0.016946053132415,-0.081052921712399]],[[0.041714251041412,0.081929557025433,-0.041020829230547],[-0.0058393687941134,0.090185813605785,0.021944135427475],[0.059267729520798,-0.011982973664999,0.039787918329239]],[[0.1048870459199,-0.059208501130342,-0.12827962636948],[-0.16557084023952,-0.031593210995197,0.024194585159421],[-0.087249755859375,0.11086761206388,-0.028815547004342]],[[-0.10998254269361,-0.11743851006031,-0.073682226240635],[0.054903741925955,0.099736988544464,0.11910154670477],[-0.065631434321404,-0.069595485925674,0.030393525958061]],[[0.099339947104454,0.019337920472026,0.01097737532109],[-0.019518550485373,-0.015082122758031,0.021144552156329],[-0.060094587504864,-0.013242486864328,-0.028603343293071]],[[-0.021703783422709,0.080594822764397,-0.00052238046191633],[-0.148063108325,-0.047745324671268,0.12031406909227],[0.04372725635767,-0.094110175967216,0.013972301967442]],[[-0.11033946275711,-0.066435307264328,-0.041071839630604],[-0.043831571936607,-0.013702645897865,0.070887453854084],[0.066453844308853,0.10217166692019,0.063504807651043]],[[0.030488107353449,0.10388115793467,0.076653398573399],[-0.030134681612253,0.0033184587955475,-0.071638025343418],[0.0092141972854733,-0.030855385586619,0.034884791821241]],[[-0.044414360076189,0.038940500468016,-0.011891349218786],[0.037649545818567,0.025095360353589,0.016183959320188],[-0.05873640999198,-0.034880500286818,0.013160944916308]],[[-0.055221375077963,0.044745877385139,-0.0006875975523144],[-0.016333783045411,0.025047581642866,0.070493653416634],[0.017182542011142,0.058186262845993,0.049472838640213]],[[0.063387088477612,0.12233480066061,-0.046790920197964],[0.016437700018287,0.05262391641736,0.015018372796476],[-0.014081632718444,0.016824450343847,0.044474542140961]],[[-0.055157169699669,-0.086355641484261,-0.0034599197097123],[0.1147557720542,0.12857089936733,0.12973703444004],[-0.03858920186758,-0.076616212725639,-0.0046892026439309]],[[-0.021344197914004,-0.11655563861132,-0.011269016191363],[0.00030739168869331,-0.0053586731664836,-0.028277300298214],[0.043687529861927,0.049158778041601,-0.01264529582113]],[[0.076953448355198,-0.015793537721038,-0.043234381824732],[-0.042775128036737,-0.038602761924267,0.096966192126274],[-0.016471106559038,-0.06610593944788,0.034195058047771]],[[-0.048865478485823,-0.064444415271282,-0.033125642687082],[-0.078913412988186,-0.0068845562636852,-0.0035705633927137],[-0.027426231652498,-0.020509298890829,0.029594779014587]],[[0.065510503947735,0.075441271066666,0.031210873275995],[0.065981954336166,-0.030705332756042,-0.095971897244453],[-0.025967421010137,0.007266809232533,-0.038810987025499]],[[0.0053619486279786,0.090179979801178,-0.061247006058693],[-0.041052725166082,-0.050943277776241,-0.068185873329639],[-0.038106374442577,0.0048904353752732,-0.017216440290213]],[[-0.033508595079184,-0.023662688210607,-0.050289191305637],[-0.009900625795126,0.050254359841347,0.0669234842062],[0.025055285543203,-0.012892761267722,-0.043028030544519]],[[0.17801614105701,0.053395926952362,-0.024417798966169],[0.069452188909054,0.044139560312033,0.016527984291315],[0.037092629820108,0.085866414010525,0.074971586465836]],[[-0.070791564881802,0.061014041304588,0.045995518565178],[0.0083464793860912,-0.064331829547882,-0.044548310339451],[0.01365883462131,0.11607958376408,0.021894242614508]],[[-0.11528524011374,0.061910409480333,0.11965120583773],[0.02643177844584,0.076706983149052,0.0042608994990587],[-0.035977933555841,0.021155994385481,-0.077020019292831]],[[-0.031041122972965,0.078454740345478,0.11226622015238],[-0.034722223877907,0.04607318341732,0.1525255292654],[-0.061020962893963,0.060716036707163,0.11907050013542]],[[0.064217798411846,2.5630808522692e-05,-0.012121070176363],[-0.0072140302509069,-0.037190981209278,0.01396559830755],[0.09546584635973,0.046503219753504,-0.1421096175909]],[[0.052547998726368,0.042616542428732,-0.0049097659066319],[-0.036224957555532,0.030993124470115,0.040591195225716],[0.048522006720304,-0.057910643517971,-0.10973234474659]],[[0.029843226075172,-0.016394283622503,-0.12555193901062],[-0.0097478218376637,0.15481558442116,-0.095213308930397],[0.032717376947403,0.03086170181632,-0.019409466534853]],[[0.026705447584391,-0.020920081064105,-0.02829516120255],[-0.071640826761723,0.086151137948036,-0.11127153038979],[0.1479070186615,0.021361254155636,-0.035063989460468]],[[0.040570583194494,0.024997731670737,-0.030130656436086],[0.042022168636322,0.040681861341,-0.052896328270435],[0.0084429746493697,0.057273231446743,0.059955701231956]],[[0.094947397708893,0.091734506189823,-0.09743408113718],[-0.0010431702248752,0.004229683894664,-0.013923481106758],[-0.0049879718571901,0.0079483157023787,-0.056850366294384]],[[0.064114764332771,0.078474603593349,0.0859130397439],[0.11936888098717,0.02504007704556,0.062697909772396],[-0.081045135855675,-0.082398645579815,-0.068309530615807]],[[-0.011977508664131,-0.010770563967526,-0.089362628757954],[0.075925007462502,-0.030920032411814,-0.056605398654938],[0.029775429517031,0.050335500389338,0.16983918845654]],[[0.020680403336883,-0.043576404452324,0.041097864508629],[0.082047514617443,0.095261096954346,-0.041277755051851],[0.090902723371983,0.060205016285181,0.018719794228673]],[[-0.024863475933671,0.022788973525167,0.060888610780239],[0.079387500882149,0.04965865239501,-0.03383457288146],[-0.018446233123541,-0.019005935639143,0.014622702263296]],[[0.024422541260719,0.023796729743481,0.021863088011742],[-0.096019744873047,0.01156239118427,0.056960176676512],[0.061813049018383,-0.040121972560883,-0.030180608853698]],[[-0.056560803204775,-0.04484298825264,-0.06362921744585],[0.09102538228035,0.012887359596789,0.0040197726339102],[-0.12634804844856,-0.030431292951107,0.083122409880161]],[[-0.041316226124763,-0.0066867843270302,-0.0097487876191735],[0.056298945099115,0.014560774900019,0.0042534936219454],[0.17770971357822,-0.015525411814451,-0.042188227176666]],[[-0.027709826827049,-0.05953473597765,0.030052563175559],[-0.081823833286762,-0.045853178948164,-0.016114328056574],[0.0019508462864906,-0.054175831377506,-0.11770366877317]],[[0.077970117330551,0.030837340280414,0.032896958291531],[0.074325256049633,0.01121234241873,-0.089973665773869],[-0.060232315212488,-0.017342178151011,0.038305275142193]],[[0.023401251062751,0.029269505292177,-0.042608022689819],[-0.10208831727505,0.032383218407631,0.048079326748848],[-0.086262755095959,0.027487773448229,0.02744940109551]],[[-0.047022700309753,0.05720528960228,0.053292948752642],[-0.019302561879158,-0.017957320436835,0.063092015683651],[0.080090701580048,0.10430552810431,0.079840302467346]],[[0.055847886949778,-0.043305557221174,0.050453096628189],[-0.023534655570984,0.029066050425172,0.055643104016781],[0.034374248236418,0.073496200144291,0.0043393685482442]],[[-0.014688826166093,-0.10293664038181,0.080840930342674],[0.014607375487685,0.032153509557247,0.010065471753478],[-0.03785964101553,-0.0063117882236838,0.01438095793128]],[[0.038931075483561,0.046610046178102,0.046621214598417],[0.030351025983691,0.021739844232798,0.090723052620888],[0.069142609834671,-0.033390607684851,0.0042163943871856]],[[-0.0084876418113708,0.030053747817874,-0.064919680356979],[-0.02104059420526,0.13353230059147,-0.0090957656502724],[-0.08070096373558,0.0026155733503401,0.031946044415236]],[[0.035635411739349,-0.033926080912352,-0.11277202516794],[-0.097827218472958,0.074665293097496,0.060816638171673],[0.010287557728589,-0.029045598581433,0.088171169161797]],[[-0.10828225314617,-0.022513266652822,-0.036900263279676],[-0.03329573944211,-0.12627577781677,-0.073270782828331],[-0.052216999232769,0.11558403819799,-0.059881813824177]],[[0.033202186226845,-0.011015586555004,-0.10941710323095],[0.015861140564084,-0.034026082605124,0.063399791717529],[-0.039580371230841,0.018108015879989,0.002997926203534]],[[-0.040834706276655,0.11411882936954,0.071099810302258],[-0.040108021348715,-0.069044999778271,0.026042893528938],[0.022282980382442,-0.075163625180721,-0.0018015063833445]],[[0.031248340383172,-0.051030706614256,0.012881844304502],[-0.055588725954294,-0.021334201097488,-0.0041356105357409],[-0.090382404625416,-0.10809129476547,0.020566709339619]],[[-0.00791279040277,-0.069369733333588,0.0085060801357031],[0.065462537109852,0.11276765167713,0.02963912114501],[-0.020703684538603,0.0604636259377,-0.084652692079544]],[[-0.048157665878534,-0.052092269062996,0.019258508458734],[-0.02374305576086,0.011096521280706,0.17707945406437],[-0.042541269212961,0.067405924201012,-0.042614761739969]],[[-0.0046670851297677,-0.10536281019449,-0.14063842594624],[-0.069506853818893,-0.0057868803851306,0.061765719205141],[0.022827791050076,0.015345619060099,-0.092488706111908]],[[0.035311788320541,0.014545454643667,-0.073616780340672],[0.011431816034019,-0.061687182635069,0.069116115570068],[0.086076334118843,0.066293649375439,0.028522379696369]],[[-0.021786943078041,-0.045183729380369,0.0026677106507123],[-0.0027604412753135,-0.010765726678073,0.018587101250887],[0.016190979629755,-0.15366984903812,-0.038157004863024]],[[-0.061974737793207,-0.04339736700058,-0.026267647743225],[-0.041610430926085,-0.087348915636539,-0.0633544921875],[0.084975861012936,0.012945766560733,0.043393366038799]],[[-0.0082791512832046,-0.028519319370389,-0.0063457917422056],[-0.010875036008656,-0.039742235094309,-0.021225837990642],[-0.016248043626547,0.008781872689724,-0.043851144611835]],[[-0.011345515958965,0.055004190653563,-0.1136716157198],[0.027153415605426,-0.030870361253619,-0.11117347329855],[0.028715321794152,-0.0067362212575972,-0.017121931537986]],[[0.03862128034234,0.01869098097086,0.030595380812883],[-0.012930589728057,0.038398399949074,-0.10791891813278],[0.067221872508526,-0.0097466381266713,0.034673765301704]],[[0.0055264621041715,-0.053700629621744,0.08502484112978],[0.025994716212153,-0.016608340665698,0.0074450112879276],[0.03835416957736,-0.004251157399267,0.05675882846117]],[[-0.0036887135356665,0.07489337772131,0.039736561477184],[-0.013988518156111,0.099785506725311,-0.020757500082254],[-0.096654087305069,-0.018845064565539,0.081527680158615]],[[0.13258974254131,0.14633572101593,0.054561339318752],[-0.10515886545181,0.01734328083694,-0.016305703669786],[-0.021525748074055,-0.016198100522161,0.030079754069448]]],[[[-0.039454709738493,0.047185473144054,-0.021427996456623],[-0.047710534185171,-0.037620205432177,-0.12000238150358],[-0.051636926829815,0.048411518335342,0.1244550049305]],[[0.043817684054375,0.08690620213747,-0.19217963516712],[0.099097743630409,0.036458350718021,-0.060203425586224],[-0.019800197333097,-0.056935340166092,0.055804073810577]],[[0.099775239825249,0.10564479231834,0.1184448376298],[-0.036786913871765,0.0072167385369539,0.12090439349413],[-0.0033714652527124,0.062723010778427,-0.011645785532892]],[[0.24245245754719,-0.073280476033688,0.072953552007675],[-0.033370081335306,-0.21372105181217,-0.10372081398964],[0.11892078816891,0.033577278256416,-0.042988765984774]],[[0.033542413264513,-0.10022909939289,0.1041758954525],[0.12064742296934,-0.032219279557467,0.046378526836634],[0.08720688521862,0.035292960703373,-0.1871225386858]],[[0.077370569109917,0.028202751651406,-0.081657111644745],[0.073132507503033,0.16609248518944,-0.022200014442205],[-0.028478151187301,-0.061741299927235,-0.016157707199454]],[[-0.15175722539425,0.025421818718314,-0.15286175906658],[-0.0092145055532455,0.016550034284592,0.0056071486324072],[0.020551197230816,-0.012465330772102,0.11252062767744]],[[0.080482371151447,-0.051817715167999,-0.046979546546936],[0.11257196217775,0.0071943351067603,0.068672671914101],[0.073992624878883,0.13069966435432,-0.023793742060661]],[[-0.21178694069386,-0.17229177057743,0.14161598682404],[-0.075928382575512,-0.043758723884821,-0.20678336918354],[0.073505878448486,0.077013865113258,0.029656782746315]],[[0.062926732003689,-0.030130071565509,0.089259631931782],[-0.10647720843554,-0.010040833614767,-0.043968006968498],[0.24912576377392,0.065944395959377,0.023532891646028]],[[0.044563859701157,-0.099103376269341,-0.041780892759562],[0.088024005293846,-0.03441459313035,-0.089369744062424],[-0.061027593910694,0.014038161374629,-0.017291244119406]],[[-0.16855652630329,0.076798722147942,0.10941058397293],[0.1253314614296,0.040216531604528,-0.19713400304317],[-0.062878958880901,0.0006276480271481,-0.0064025488682091]],[[0.15543402731419,0.20193855464458,0.16995075345039],[-0.089846566319466,0.013597154989839,0.15201273560524],[0.10660503804684,0.065370440483093,-0.051779754459858]],[[-0.0089587103575468,-0.19656050205231,-0.12239882349968],[0.042446151375771,0.086495146155357,0.13139383494854],[0.1102748811245,0.012719440273941,-0.051847904920578]],[[0.12132945656776,-0.1138671413064,-0.073349729180336],[0.024970751255751,0.023355398327112,-0.14613130688667],[0.004011619836092,0.010707915760577,-0.033432349562645]],[[0.034472450613976,0.13647238910198,-0.14714688062668],[0.053463350981474,0.02409203350544,0.22167843580246],[-0.089504852890968,-0.051251411437988,-0.11050639301538]],[[-0.13914704322815,-0.14041012525558,0.10924585908651],[-0.01603159494698,-0.083988405764103,0.13252045214176],[0.034446854144335,0.090297840535641,0.029563760384917]],[[0.014920001849532,0.017422754317522,0.12519980967045],[-0.085888773202896,0.062004316598177,0.0010838507441804],[-0.2095155864954,0.11652966588736,-0.012556789442897]],[[-0.18177792429924,0.10417956858873,0.08817146718502],[0.009164840914309,0.0074360962025821,0.098488859832287],[-0.048512980341911,0.0026654261164367,0.040100276470184]],[[-0.014568922109902,0.075688689947128,0.10071184486151],[-0.025436367839575,0.094382084906101,0.11953271180391],[-0.064486443996429,0.021309856325388,-0.10049226880074]],[[0.098698116838932,0.008718709461391,-0.065119870007038],[0.050046816468239,0.091811656951904,0.11486224830151],[-0.089243575930595,-0.083864979445934,-0.13734140992165]],[[-0.080635637044907,-0.063123613595963,0.14591439068317],[-0.038066100329161,-0.052423615008593,0.074335604906082],[-0.27636313438416,-0.14993196725845,0.030167806893587]],[[0.09432003647089,-0.02208062261343,0.0042698658071458],[-0.008433761075139,0.050083547830582,-0.052004706114531],[0.011801075190306,0.0082927057519555,-0.19488826394081]],[[-0.0034865087363869,-0.036727927625179,0.11333338171244],[-0.011560249142349,-0.053466539829969,0.038962591439486],[-0.074233375489712,-0.17642068862915,-0.17957462370396]],[[0.010035115294158,-0.061986975371838,-0.086044557392597],[-0.035622335970402,-0.13207377493382,-0.12247026711702],[-0.12994301319122,-0.055611453950405,-0.086702242493629]],[[-0.090321399271488,-0.23375695943832,-0.32911002635956],[-0.015770297497511,-0.121332205832,-0.095864921808243],[0.04865338280797,0.15411496162415,0.14734245836735]],[[0.06055161729455,-0.039187379181385,0.044249460101128],[-0.044469445943832,0.020069424062967,-0.22669564187527],[-0.031492877751589,0.10978776216507,0.15378415584564]],[[0.040220577269793,-0.051844667643309,-0.013241298496723],[-0.019643742591143,0.044096596539021,-0.059961717575788],[-0.10034224390984,-0.09600905328989,0.12494643777609]],[[0.0072646262124181,0.072517514228821,0.036249693483114],[0.052602559328079,0.10766054689884,0.094067625701427],[-0.064521156251431,-0.017633555456996,0.099390164017677]],[[-0.10008081793785,-0.29165256023407,0.073760487139225],[-0.043115843087435,0.14536170661449,-0.15423360466957],[0.064879760146141,-0.10021954774857,-0.011985655874014]],[[0.16256602108479,0.0058985720388591,-0.063966386020184],[0.094151251018047,0.090589813888073,-0.03660786896944],[-0.062070604413748,0.10774495452642,0.091284111142159]],[[0.015258120372891,-0.022630358114839,-0.0052700573578477],[-0.042097583413124,-0.099938362836838,-0.027270814403892],[0.0045877173542976,-0.017807289958,0.0024098306894302]],[[0.10056152194738,0.073282860219479,-0.11941014975309],[0.035498015582561,0.18008325994015,0.024186860769987],[-0.01335970684886,0.047856360673904,0.01022019982338]],[[0.0061666439287364,0.054390195757151,-0.017219372093678],[-0.15014374256134,-0.086588002741337,-0.12445452809334],[-0.023375606164336,0.13142375648022,0.025659523904324]],[[-0.18680669367313,-0.13056011497974,-0.32913193106651],[-0.044146209955215,-0.10122758150101,-0.10676600784063],[0.20085720717907,0.14428070187569,0.11667074263096]],[[0.20729805529118,0.0044942907989025,-0.16329424083233],[0.073282063007355,0.082042507827282,-0.13570725917816],[-0.034995935857296,-0.041192498058081,0.13545928895473]],[[0.04906116053462,-0.014187946915627,-0.14929017424583],[0.079182714223862,0.11164509505033,-0.027848102152348],[0.037850987166166,0.008573860861361,-0.079619169235229]],[[0.033946100622416,-0.02653993293643,0.015887685120106],[-0.01471580658108,0.083974353969097,-0.044680148363113],[-0.024081086739898,0.015583976171911,0.0049283090047538]],[[-0.053145453333855,0.051264852285385,-0.0096342694014311],[0.088197991251945,-0.33633148670197,0.16904029250145],[-0.032946974039078,-0.022866953164339,0.0065557220950723]],[[-0.079078413546085,-0.092779010534286,-0.16560220718384],[0.064097039401531,-0.018558323383331,-0.094504155218601],[-0.0160594265908,-0.0057507529854774,0.20065774023533]],[[-0.061326254159212,0.0038333290722221,0.032937254756689],[-0.11768613755703,0.22329841554165,-0.053023256361485],[-0.060662847012281,0.085793599486351,-0.035030737519264]],[[0.069664247334003,0.027344569563866,-0.031160300597548],[0.036426842212677,-0.046372357755899,0.044579058885574],[-0.15425427258015,-0.11392851918936,-0.070867575705051]],[[0.027168292552233,0.1568556278944,-0.13230049610138],[0.073979787528515,0.058520376682281,0.040491081774235],[-0.05074717104435,0.13873234391212,0.027752280235291]],[[-0.125348970294,-0.14088520407677,-0.13976383209229],[0.023652222007513,0.045241948217154,0.048589870333672],[0.056691966950893,0.055756874382496,0.040391515940428]],[[-0.1926117837429,-0.25713166594505,0.042359974235296],[-0.068674467504025,-0.05297565087676,-0.16598288714886],[-0.083703823387623,0.0034683868288994,-0.037645820528269]],[[-0.039495475590229,-0.0010521815856919,0.083012543618679],[0.13637107610703,-0.026165163144469,0.019653657451272],[-0.019160008057952,0.060203328728676,-0.0033788671717048]],[[-0.14215442538261,-0.12245715409517,-0.070724599063396],[-0.10923387855291,-0.21985051035881,-0.073288694024086],[-0.29180330038071,-0.27639156579971,0.06963112950325]],[[0.1046257764101,0.18578612804413,0.057933013886213],[0.080449432134628,0.031078360974789,0.059413507580757],[0.036824017763138,0.056455515325069,0.035617463290691]],[[-0.00049207493430004,0.10037294775248,-0.20574945211411],[-0.08780075609684,0.024023024365306,-0.15731091797352],[-0.09585840255022,-0.02356811799109,-0.018777702003717]],[[0.057574927806854,-0.036661218851805,-0.22872713208199],[0.050392422825098,0.022416722029448,0.047347594052553],[0.074076183140278,0.016262086108327,0.037891693413258]],[[-0.0041334549896419,0.025722768157721,-0.040995575487614],[-0.0102235712111,-0.0044415723532438,0.13845856487751],[-0.073805600404739,-0.0049141985364258,0.1594276279211]],[[0.048552315682173,-0.090471938252449,-0.037474572658539],[-0.016173092648387,-0.025151286274195,-0.12482294440269],[0.0019870228134096,0.010688913986087,-0.0025822424795479]],[[-0.049600105732679,-0.05521022900939,-0.15529181063175],[-0.069766223430634,-0.089350581169128,-0.066200517117977],[0.078406974673271,-0.01815951988101,0.0495365858078]],[[-0.11166418343782,0.125991538167,0.068436473608017],[-0.0073710749857128,0.035134769976139,-0.04490115866065],[0.13890907168388,0.049517501145601,0.0040969671681523]],[[-0.035616278648376,0.060917261987925,0.14164350926876],[0.023814240470529,0.16101975739002,-0.061507642269135],[-0.045720040798187,-0.051601443439722,0.036241009831429]],[[0.14520336687565,0.099546000361443,0.013516814447939],[0.075728736817837,0.07779723405838,0.092004127800465],[-0.15582105517387,-0.12976856529713,0.015355662442744]],[[-0.059492982923985,0.01383422408253,-0.17450399696827],[0.0064167366363108,0.068737603724003,-0.13232913613319],[-0.07694797962904,-0.11268642544746,-0.016333974897861]],[[0.0075256139971316,0.03322321549058,-0.070764265954494],[-0.13249008357525,-0.12098517268896,0.00067806558217853],[0.0072678718715906,0.1542854309082,0.12828692793846]],[[-0.2360347956419,-0.1911750882864,-0.11661493033171],[0.13051567971706,0.13613574206829,-0.01942921616137],[-0.087701141834259,-0.009027804248035,-0.015391605906188]],[[0.029578022658825,0.034261576831341,-0.010441171936691],[-0.15022592246532,0.1202819570899,-0.0013370445230976],[-0.13935616612434,-0.093671776354313,0.013202441856265]],[[0.057522337883711,-0.024237871170044,-0.1521125882864],[0.067220233380795,-0.021127155050635,-0.094173334538937],[-0.11015868932009,-0.28016740083694,-0.2623108625412]],[[0.0095628201961517,0.049660943448544,-0.1521127820015],[-0.063090972602367,0.027824802324176,0.053161848336458],[-0.034550167620182,-0.0069567393511534,0.11590576171875]],[[0.16891621053219,0.045327253639698,0.16470110416412],[0.17997118830681,0.20463678240776,0.21647526323795],[0.019037799909711,0.11605281382799,0.24398516118526]],[[0.13239367306232,-0.030845433473587,-0.14788445830345],[-0.061263788491488,-0.00066392251756042,0.037263263016939],[-0.084379911422729,-0.18614289164543,-0.16707280278206]],[[-0.095814935863018,-0.076765961945057,0.11267846077681],[0.076115861535072,-0.048782180994749,-0.022174187004566],[0.03964177146554,0.030307011678815,-0.0027991244569421]],[[-0.053367488086224,-0.019937330856919,0.31844621896744],[-0.043116547167301,-0.005680569447577,-0.043705981224775],[-0.070422321557999,-0.12228484451771,0.16987660527229]],[[0.12611317634583,0.067138023674488,0.17267127335072],[0.12134064733982,-0.027169117704034,-0.023574493825436],[0.033771544694901,-0.036103963851929,0.039914522320032]],[[-0.046873364597559,0.082212515175343,-0.012689240276814],[-0.036229372024536,0.049988228827715,0.1271820962429],[0.091301195323467,0.00067273061722517,-0.024694141000509]],[[0.13737854361534,0.037831228226423,0.026277711614966],[0.061996325850487,-0.070134721696377,-0.15544472634792],[-0.11636655032635,0.045457482337952,0.039158206433058]],[[0.10692451894283,-0.025473099201918,-0.10797172784805],[-0.18514077365398,0.07132151722908,-0.11837073415518],[-0.076195366680622,-0.037730101495981,0.24676208198071]],[[-0.07877954095602,0.044952683150768,0.092650286853313],[-0.051440604031086,-0.12932734191418,-0.033503543585539],[-0.0564901009202,0.043905533850193,0.024356123059988]],[[0.014355600811541,-0.13962748646736,0.14643153548241],[-0.11894097179174,-0.13369597494602,-0.029148511588573],[0.057419143617153,-0.031611602753401,-0.0032314988784492]],[[0.023005640134215,0.13817875087261,-0.0099981194362044],[-0.02194993570447,0.2495854049921,0.043710712343454],[-0.084734231233597,0.055405411869287,0.04840411990881]],[[-0.034019827842712,-0.0027738909702748,-0.041170790791512],[-0.055824711918831,-0.040842935442924,0.17774100601673],[0.10539445281029,0.034839201718569,-0.12607084214687]],[[-0.012594319880009,-0.081928446888924,-0.15351615846157],[-0.31035751104355,-0.35218560695648,-0.26814761757851],[-0.085412308573723,-0.13317140936852,0.0074898172169924]],[[0.024678939953446,0.087997868657112,0.083457447588444],[-0.041013296693563,0.067882470786572,0.25364911556244],[-0.014178873971105,-0.080709032714367,0.007674116641283]],[[0.15127508342266,0.14495927095413,0.086143225431442],[0.041287135332823,0.20044898986816,0.049197174608707],[-0.0022066335659474,0.12025730311871,0.29587164521217]],[[0.037410274147987,-0.10198368132114,-0.050366193056107],[0.076538525521755,0.060882266610861,0.11601474881172],[-0.28723043203354,0.076351352035999,-0.011101990006864]],[[0.004641710780561,0.049749542027712,0.038201417773962],[-0.13821676373482,0.079560406506062,0.017597407102585],[-0.017973262816668,0.027814719825983,0.030240198597312]],[[0.05079310759902,0.026410512626171,-0.15609265863895],[0.031963981688023,-0.050202921032906,0.030379926785827],[0.020370671525598,-0.13595432043076,-0.037189297378063]],[[-0.13213196396828,0.055145397782326,0.0016219913959503],[-0.041804615408182,-0.051049768924713,-0.10870049893856],[0.034676320850849,0.066503256559372,-0.098560556769371]],[[0.035717599093914,0.13441382348537,0.26701313257217],[0.047942396253347,0.081977382302284,0.068344324827194],[0.048995446413755,0.16973340511322,0.17293672263622]],[[0.044148206710815,0.098688378930092,0.05451250821352],[0.039558064192533,-0.011530060321093,-0.042786240577698],[-0.057297430932522,-0.2187629789114,-0.12649050354958]],[[0.0065937908366323,0.0048678917810321,-0.04638247936964],[0.13253073394299,-0.067675553262234,-0.063729397952557],[0.016331154853106,0.07908883690834,-0.014007077552378]],[[-0.21510437130928,-0.123142182827,-0.050643127411604],[0.035053174942732,0.050052560865879,0.080713145434856],[0.10906886309385,0.031864877790213,-0.12875904142857]],[[0.083668798208237,0.075163595378399,0.066378220915794],[0.012737176381052,0.071375340223312,-0.13829851150513],[-0.1021831035614,-0.0042726364918053,-0.11026740819216]],[[0.16120314598083,0.052626326680183,0.076191373169422],[0.097091540694237,-0.018365692347288,0.07622455060482],[-0.030355013906956,-0.008396646939218,0.046739496290684]],[[0.21723879873753,-0.016171908006072,0.121128693223],[-0.0038138278760016,0.01700459048152,0.028067994862795],[0.11198704689741,0.13155317306519,-0.13863590359688]],[[-0.024453802034259,-0.20914606750011,-0.1738278567791],[-0.081118114292622,-0.14448374509811,0.035084415227175],[-0.10816561430693,-0.11630206555128,0.091796942055225]],[[0.05726296454668,-0.041220031678677,-0.13959141075611],[0.021915765479207,-0.10543482005596,-0.11915469169617],[-0.10871823877096,-0.01902861520648,0.011778677813709]],[[0.20102502405643,0.11696104705334,-0.069341666996479],[0.12124717980623,0.047088708728552,0.058858301490545],[0.051928244531155,0.086352743208408,-0.089434631168842]],[[0.070604734122753,-0.1008195951581,-0.01620277762413],[0.038529753684998,0.093033000826836,0.06703744828701],[0.0039972341619432,-0.02319560572505,-0.068246200680733]],[[0.13814653456211,0.10870691388845,0.081249453127384],[0.083222016692162,0.088029265403748,-0.16825443506241],[-0.063270337879658,-0.284648001194,-0.078661553561687]],[[0.031933907419443,0.11279577761889,0.20581017434597],[0.067949518561363,0.050412110984325,-0.04515391215682],[0.15927930176258,-0.071159079670906,0.051545958966017]],[[-0.11589904874563,-0.11669411510229,0.070662707090378],[0.024414172396064,-0.016780896112323,-0.20744933187962],[0.10469588637352,-0.084609545767307,-0.1651651263237]],[[0.12224707007408,0.13220861554146,0.046727858483791],[-0.17643094062805,-0.11015895009041,0.12026181817055],[0.09759782999754,-0.0043159457854927,0.017842249944806]],[[0.1253369897604,0.10394944995642,0.050611138343811],[0.032051026821136,-0.0037050219252706,0.092547528445721],[-0.054602723568678,0.035516507923603,-0.069753803312778]],[[0.061683498322964,0.081528648734093,0.13091260194778],[0.042530044913292,0.09590819478035,-0.038239900022745],[-0.1138426810503,0.12870009243488,0.17077913880348]],[[-0.043533768504858,0.085634313523769,0.086038134992123],[-0.093894459307194,-0.081500127911568,-0.058986093848944],[-0.024327952414751,-0.072522327303886,0.079540722072124]],[[0.074673049151897,-0.031612932682037,-0.0024009626358747],[-0.089738786220551,-0.054009843617678,0.0010503571247682],[-0.062445856630802,-0.053797237575054,-0.12740862369537]],[[0.021391762420535,-0.087258584797382,0.110396489501],[0.015509910881519,0.17752867937088,0.042168457061052],[-0.012427939102054,0.071183979511261,0.085964538156986]],[[-0.10551488399506,0.029233606532216,-0.034263528883457],[0.12138193100691,0.017051389440894,-0.1667413264513],[-0.078532218933105,-0.11906193941832,0.23821827769279]],[[-0.05798526480794,0.14586260914803,0.18425688147545],[0.0046081035397947,0.17633767426014,-0.093181602656841],[-0.12407110631466,-0.077392376959324,-0.06892841309309]],[[0.095618657767773,0.099864237010479,-0.0044465870596468],[-0.036499459296465,-0.093368344008923,-0.24340461194515],[-0.041521709412336,-0.0060175820253789,-0.0090224118903279]],[[-0.13741809129715,-0.067450530827045,-0.012391407974064],[-0.01416913792491,-0.10072485357523,0.017198896035552],[-0.003969082608819,0.029508948326111,0.14774206280708]],[[-0.035711891949177,0.096511892974377,-0.085199870169163],[0.17519484460354,0.0810836404562,0.026779485866427],[0.049487438052893,0.07972090691328,0.05967665836215]],[[-0.036440141499043,-0.075480081140995,-0.05000277236104],[0.012674323283136,0.10899818688631,0.099752351641655],[0.071645177900791,0.055719379335642,0.075359329581261]],[[0.019646737724543,0.12218755483627,-0.13176041841507],[-0.052152872085571,0.020616693422198,0.049396224319935],[-0.14443016052246,0.11604212969542,-0.026830565184355]],[[-0.22860339283943,-0.023812675848603,-0.09172748029232],[-0.020993553102016,-0.04583552479744,0.16299366950989],[0.10375193506479,-0.029036901891232,0.031692858785391]],[[0.026194496080279,-0.0034524679649621,-0.097378924489021],[0.012698658742011,0.027085475623608,-0.0576709844172],[0.043445114046335,0.044271558523178,-0.024254094809294]],[[0.090478487312794,0.10630820691586,0.028947284445167],[-0.037397503852844,-0.06493653357029,-0.07933747023344],[-0.057643059641123,-0.040842797607183,-0.012754258699715]],[[-0.19452980160713,-0.15187032520771,-0.021164525300264],[0.054510399699211,0.03816831856966,-0.22412601113319],[-0.0099667441099882,0.049799367785454,0.20393447577953]],[[-0.0068779271095991,-0.010647999122739,-0.06179866194725],[0.12905895709991,-0.087871439754963,-0.10061259567738],[0.032950893044472,0.046411916613579,0.080175146460533]],[[0.13686873018742,0.10490427911282,-0.180459856987],[0.015636004507542,-0.11156883835793,-0.0074107353575528],[0.10786245763302,-0.014137633144855,-0.0066664526239038]],[[0.046919640153646,-0.042314697057009,-0.10004986077547],[0.04862155020237,-0.059372145682573,0.083228006958961],[-0.009324349462986,-0.12339478731155,-0.03220209851861]],[[-0.065430119633675,-0.11325085908175,0.13090804219246],[-0.017822006717324,0.06975094974041,0.18537297844887],[-0.088885799050331,-0.087162613868713,0.026008915156126]],[[-0.055702619254589,-0.065975360572338,-0.023297537118196],[-0.13716143369675,-0.14871363341808,-0.16031920909882],[0.088881142437458,0.11292597651482,0.17767319083214]],[[-0.0024502801243216,0.0010884518269449,0.15111434459686],[0.020668430253863,-0.15400186181068,-0.043306969106197],[-0.097485452890396,0.13874027132988,-0.036389224231243]],[[0.074399322271347,0.03496452793479,0.18831875920296],[-0.063969686627388,-0.076748564839363,-0.11079479008913],[-0.00075443973764777,0.049701992422342,-0.06962475925684]],[[-0.01838468760252,0.074613764882088,-0.072336800396442],[0.034519471228123,0.092791199684143,0.11308594793081],[-0.084878876805305,0.1403356641531,0.019625188782811]],[[0.087177991867065,-0.11974766105413,-0.025935681536794],[-0.043715242296457,-0.11377234756947,-0.069593206048012],[0.01466685347259,-0.012420455925167,-0.0053688543848693]],[[-0.035122502595186,-0.077914908528328,0.029032930731773],[-0.049373511224985,0.08307359367609,0.20178313553333],[-0.004602191504091,-0.25252914428711,-0.12651906907558]],[[0.045127805322409,-0.07774318754673,-0.12105828523636],[0.020047158002853,-0.097848631441593,-0.10456639528275],[0.003506506793201,0.023930877447128,-0.066399455070496]],[[-0.11772501468658,-0.041239243000746,-0.004599672742188],[0.11626373231411,0.0477649345994,-0.062247049063444],[0.12207743525505,0.12414093315601,-0.057335056364536]],[[-0.086930967867374,0.035420462489128,-0.036469217389822],[0.023686537519097,0.091673158109188,0.24744817614555],[-0.0059412466362119,-0.0046161985956132,0.053826238960028]],[[0.054843578487635,-0.063862696290016,-0.0086866235360503],[-0.032098386436701,0.085857093334198,-0.047322876751423],[-0.054534003138542,0.030471049249172,-0.081599935889244]],[[-0.04623107612133,-0.1047548353672,0.03087866678834],[0.063816644251347,0.088386885821819,-0.011521563865244],[-0.076781235635281,-0.049409490078688,-0.1002883836627]],[[0.0012395060621202,0.13019751012325,0.093651384115219],[0.066661216318607,0.071358785033226,0.091581739485264],[0.042292971163988,0.0090183801949024,0.071261122822762]]],[[[-0.043265391141176,-0.10646849870682,-0.071066074073315],[-0.03768365085125,-0.07880961894989,0.021873377263546],[-0.017423802986741,-0.010536518879235,-0.0083658965304494]],[[-0.058606889098883,-0.019979866221547,0.012208323925734],[-0.016832027584314,-0.0025444901548326,0.029160985723138],[0.033464808017015,-0.030050853267312,-0.055128067731857]],[[-0.047067355364561,0.021621817722917,0.026031592860818],[0.017412696033716,-0.067032642662525,-0.028116434812546],[0.021137796342373,0.029427221044898,-0.019617963582277]],[[-0.049379535019398,0.050086047500372,0.075907401740551],[-0.0038686292245984,-0.010326788760722,0.020187076181173],[-0.021563339978456,0.044508885592222,-0.0034094760194421]],[[0.0026844863314182,0.026275150477886,0.040174145251513],[-0.035136613994837,0.0062616220675409,-0.038994878530502],[-0.018486138433218,-0.018869752064347,0.0072551472112536]],[[-0.013668403960764,-0.050879653543234,0.090008072555065],[-0.020638894289732,0.038967896252871,-0.020876163616776],[-0.0086248312145472,-0.022978819906712,-0.006353163626045]],[[0.024724077433348,0.077334336936474,0.0064854333177209],[-0.0062422957271338,0.052983593195677,-0.0037278437521309],[-0.050287343561649,0.040359262377024,-0.067081943154335]],[[-0.023167572915554,0.025472775101662,0.013214753009379],[0.036366656422615,0.033263418823481,0.0025669541209936],[0.068719208240509,0.092315450310707,0.0057494160719216]],[[0.048093345016241,0.044705659151077,0.039487138390541],[-0.053619101643562,0.04740959405899,0.0021420726552606],[-0.018282983452082,-0.036070469766855,-0.008788226172328]],[[-0.055057138204575,-0.0018888300983235,0.0042819124646485],[0.049485504627228,-0.06930536031723,-0.013958264142275],[-0.0036507151089609,0.060287334024906,-0.023811651393771]],[[-0.0023049041628838,-0.0046075568534434,-0.015554087236524],[-0.054856069386005,0.010229484178126,0.0065844240598381],[0.0065848063677549,0.004044882953167,0.027810288593173]],[[-0.065923273563385,0.056342553347349,-0.054396659135818],[-0.011481617577374,-0.074855662882328,0.0021204191725701],[0.019626956433058,-0.050704255700111,0.061477769166231]],[[-0.074214197695255,0.032694634050131,0.052609767764807],[0.059176079928875,-0.10124040395021,-0.021379249170423],[-0.0089854514226317,-0.0068942690268159,0.0048631145618856]],[[0.049553751945496,0.0288788639009,-0.059758760035038],[0.029039198532701,-0.013717315159738,0.016142591834068],[-0.050630364567041,-0.020713772624731,-0.022881945595145]],[[-0.0042993538081646,0.034199327230453,0.0546003729105],[-0.014050816185772,0.03666415810585,-0.028888689354062],[-0.040679302066565,0.019599420949817,0.04495495185256]],[[-0.048675179481506,-0.0049031660892069,-0.018674602732062],[-0.061822861433029,-0.020697187632322,-0.035469934344292],[-0.070150747895241,0.043798144906759,0.0087193595245481]],[[-0.023199617862701,0.043235711753368,0.059904389083385],[-0.01974831148982,0.065185479819775,-0.017776906490326],[-0.013827948831022,-0.069019250571728,0.04925674572587]],[[0.0099356053397059,0.050916213542223,-0.038177967071533],[0.097410589456558,-0.024790378287435,-0.0069924723356962],[-0.048291396349669,0.068032041192055,-0.043480463325977]],[[-0.022507870569825,-0.014587783254683,-0.050594832748175],[-0.0327651463449,-0.015107786282897,0.033911917358637],[-0.087649196386337,0.01349987834692,0.060500152409077]],[[-0.045166030526161,0.017008578404784,-0.097597263753414],[0.044410277158022,0.020767891779542,0.027365114539862],[0.043453577905893,-0.0038884959649295,0.053400386124849]],[[-0.013316528871655,0.02111523412168,-0.041333381086588],[0.0020289733074605,-0.032251920551062,-0.040298886597157],[0.021085418760777,-0.10002283751965,0.0027033928781748]],[[0.040189281105995,-0.070378191769123,-0.01800075173378],[-0.075905680656433,-0.083864264190197,-0.019499046728015],[0.079802885651588,0.078433848917484,-0.046218249946833]],[[-0.015741040930152,0.046561233699322,-0.0091431485489011],[-0.087975673377514,-0.039425440132618,-0.002051203045994],[-0.04425336048007,-0.02021511271596,0.028316508978605]],[[0.014121258631349,0.0066820909269154,0.026211166754365],[0.0097640445455909,-0.013432871550322,0.018146039918065],[-0.022748451679945,0.03139316290617,-0.010990126989782]],[[-0.044925186783075,-0.064130701124668,-0.034003335982561],[0.018234439194202,-0.023934399709105,0.099186837673187],[0.054092761129141,-0.021808447316289,0.0011332612484694]],[[-0.051545366644859,0.019536502659321,0.00011146103497595],[0.017372794449329,0.066656149923801,0.029034836217761],[-0.061413705348969,0.03562119230628,0.054145433008671]],[[0.0046837613917887,-0.037559363991022,-0.024069664999843],[0.0049318834207952,0.035923540592194,0.083446152508259],[-0.045526824891567,-0.027665523812175,0.0060178027488291]],[[0.039777297526598,-0.0050490135326982,-0.045025110244751],[0.013321852311492,-0.046869438141584,-0.025029361248016],[0.086884170770645,0.048049174249172,0.10289650410414]],[[-0.024785170331597,0.0024558738805354,-0.031538810580969],[-0.027160121127963,0.045915104448795,0.11340510845184],[-0.13272452354431,-0.045331954956055,-0.0065917619504035]],[[-0.0057779927738011,-0.035643130540848,0.016573211178184],[-0.024415479972959,-0.045837204903364,-0.0076983189210296],[-0.030296308919787,0.034565627574921,0.021388353779912]],[[-0.0012345802970231,-0.044664591550827,-0.017055187374353],[0.001888029044494,-0.00056086044060066,-0.04094024002552],[0.029798990115523,0.025790818035603,0.035293783992529]],[[-0.010065408423543,-0.089003279805183,0.042313054203987],[0.021523619070649,-0.031223250553012,0.10909119993448],[-0.033904351294041,0.014313086867332,-0.055257502943277]],[[0.0030320612713695,-0.0010520077776164,-0.0018218937329948],[0.045061133801937,-0.027138043195009,-0.021263925358653],[-0.070651561021805,-0.034251838922501,0.033973440527916]],[[0.073965683579445,-0.027901846915483,-0.02070970274508],[-0.0098710050806403,0.075824245810509,0.052478596568108],[-0.028582001104951,0.0054379622451961,-0.031564224511385]],[[-0.041702121496201,-0.01646126806736,-0.096441954374313],[0.063334964215755,0.0058896909467876,-0.091230683028698],[-0.052762150764465,0.020131800323725,-0.0053619421087205]],[[0.049614317715168,0.083052925765514,0.0034634973853827],[-0.042042307555676,0.0070311287418008,-0.063173368573189],[-0.040485873818398,-0.0070594209246337,-0.021974619477987]],[[0.0035422842483968,-0.0040475837886333,0.0042079212144017],[-0.060740161687136,-0.088696666061878,-0.0063751460984349],[-0.097726568579674,0.050495319068432,-0.0025737744290382]],[[0.0034630473237485,-0.0100690536201,-0.028809826821089],[-0.10366635024548,0.026444990187883,0.039469618350267],[0.034788150340319,0.014109403826296,0.026022264733911]],[[-0.063684798777103,-0.065912164747715,0.006157748401165],[0.058509606868029,-0.060249093919992,-0.080327942967415],[-0.032566417008638,-0.03038826584816,0.0035716460552067]],[[-0.020109904929996,-0.017691029235721,0.018771849572659],[0.0076279495842755,0.01840541139245,-0.10555274784565],[-0.019730938598514,0.015818458050489,0.052800644189119]],[[-0.01006905734539,0.014431469142437,-0.040192425251007],[0.0025296623352915,-0.023462848737836,0.026626816019416],[-0.019601495936513,-0.026246273890138,0.084328897297382]],[[-0.012037573382258,-0.035249948501587,-0.072859033942223],[0.0096467733383179,0.013715552166104,0.010823091492057],[0.055989809334278,0.020580172538757,0.054129112511873]],[[0.0042049493640661,-0.0098077598959208,0.045991972088814],[-0.0069719096645713,-0.030807215720415,-0.01872324757278],[0.0075327097438276,0.036826491355896,-0.034061718732119]],[[-0.035480238497257,-0.052242163568735,-0.076536491513252],[-0.033445451408625,-0.060501538217068,0.044708050787449],[-0.14499405026436,-0.067231312394142,-0.020769549533725]],[[0.014869228005409,-0.089602418243885,0.0061663915403187],[-0.046584226191044,0.023692615330219,-0.0028500000480562],[0.028105493634939,-0.052919130772352,-0.018512712791562]],[[0.0074523612856865,-0.0075753591954708,0.037606317549944],[0.096619106829166,-0.030407490208745,0.019025141373277],[-0.001483365893364,0.068283371627331,-0.056656815111637]],[[0.027378115803003,0.0017662786412984,-0.053938921540976],[0.013164324685931,0.025360360741615,-0.04478107765317],[-0.013249540701509,0.034273002296686,0.038778305053711]],[[-0.0045127794146538,-0.0015899335267022,0.024458913132548],[-0.09426411986351,-0.011564840562642,0.12269352376461],[-0.014836040325463,-0.090284578502178,-0.060751240700483]],[[0.053433936089277,-0.067400045692921,0.017859764397144],[-0.083745636045933,0.061951514333487,0.043750856071711],[0.014586956240237,0.018367186188698,-0.017645357176661]],[[-0.0032307943329215,0.035105563700199,0.011173989623785],[0.033531457185745,0.0053478027693927,-0.014133778400719],[0.02248271368444,0.0010557563509792,0.0049766809679568]],[[-0.0014057394582778,0.029024619609118,0.032476872205734],[0.060645639896393,-0.033488988876343,0.1000727340579],[0.033185351639986,-0.013295347802341,0.036881592124701]],[[0.07035144418478,0.001357096596621,-0.056158982217312],[-0.024062164127827,0.028332429006696,0.036608010530472],[-0.013825765810907,-0.042102593928576,-0.11572755873203]],[[-0.020395005121827,-0.051097612828016,-0.027044339105487],[-0.039810255169868,0.018674002960324,0.025029107928276],[-0.028253739699721,0.00040896364953369,0.04342982545495]],[[-0.0095160901546478,-0.062738217413425,0.051070485264063],[-0.091600008308887,-0.067598193883896,0.00078946439316496],[-0.015182076953351,0.024349804967642,-0.037332318723202]],[[-0.023183204233646,-0.015331869013608,-0.064990125596523],[0.032623764127493,0.0084456084296107,0.0064321849495173],[-0.0025782373268157,-0.020898597314954,0.089390389621258]],[[-0.015606636181474,-0.029666412621737,0.030436046421528],[-0.025975748896599,-0.020573165267706,0.010207379236817],[-0.035135477781296,0.063816137611866,-0.046265576034784]],[[-0.0016372617101297,-0.0248705111444,0.068017363548279],[-0.0256313290447,-0.053708732128143,-0.023398807272315],[0.0096162920817733,-0.016507662832737,0.021083939820528]],[[-0.054496455937624,0.041683372110128,-0.041310980916023],[0.1122517362237,-0.030119817703962,0.0081548914313316],[0.016864124685526,0.018508752807975,0.026552928611636]],[[-0.045187622308731,0.024657303467393,0.004908848553896],[0.0051403674297035,-0.011179084889591,-0.037905924022198],[0.010535212233663,-0.012254854664207,0.0094485441222787]],[[-0.028951505199075,0.056767750531435,-0.033348761498928],[-0.048148836940527,0.017570991069078,-0.016680693253875],[0.0013173118932173,-0.016452748328447,0.028050636872649]],[[0.044513497501612,-0.032342128455639,-0.038032557815313],[0.030108714476228,-0.0045849941670895,-0.014782797545195],[-0.066097907721996,-0.036235351115465,0.0066179023124278]],[[0.041529279202223,-0.019041428342462,0.031622741371393],[0.017664039507508,-0.032599486410618,-0.0254265666008],[0.018738120794296,-0.066569052636623,0.018914187327027]],[[0.031595148146152,-0.060108438134193,-0.0079343430697918],[0.05005007982254,0.045584991574287,0.026556104421616],[-0.0053350459784269,-0.00054971058852971,0.027309915050864]],[[0.046290654689074,-0.026960805058479,0.066806741058826],[0.048827685415745,-0.058191440999508,0.081683270633221],[-0.01856336556375,-0.010861267335713,0.056266259402037]],[[-0.035874858498573,-0.052544958889484,0.0029628393240273],[0.035089295357466,-0.044511627405882,0.024649485945702],[-0.036963526159525,-0.034323994070292,-0.053960803896189]],[[0.015205239877105,0.067566052079201,-0.095618151128292],[0.0037988815456629,-0.060816805809736,0.01881100051105],[0.044578921049833,-0.025396514683962,0.10909685492516]],[[0.026730988174677,-0.024241333827376,-0.027965098619461],[-0.0067761107347906,0.060983788222075,0.035400737076998],[-0.011772350408137,0.004778734408319,0.01942640542984]],[[-0.069298014044762,-0.10896822810173,-0.013821854256094],[0.012047104537487,-0.029280871152878,0.020642234012485],[0.028863895684481,0.081932567059994,-0.017052857205272]],[[0.052875719964504,0.046277835965157,-0.006970651447773],[-0.072329051792622,-0.010435982607305,0.057158153504133],[-0.09844446927309,0.075779534876347,-0.011961289681494]],[[-0.013329369947314,0.053501266986132,0.082288347184658],[0.095513187348843,0.059195589274168,-0.012202773243189],[-0.041360951960087,0.071454420685768,0.019606972113252]],[[-0.027759058400989,-0.10242500901222,-0.028253741562366],[-0.011622090823948,-0.00075030932202935,0.08521842956543],[-0.030548298731446,0.018087537959218,0.07489138096571]],[[-0.11960487067699,0.048522770404816,-0.0059273191727698],[0.029897639527917,-0.0036542464513332,-0.033555090427399],[-0.083668693900108,-0.015649404376745,0.0078722611069679]],[[0.0086242752149701,0.020147128030658,0.012914068065584],[0.017509581521153,-0.030857371166348,-0.032842840999365],[0.0077754356898367,-0.078696519136429,-0.13399635255337]],[[-0.031803093850613,-0.017183249816298,0.029214693233371],[-0.026219330728054,-0.0035248324275017,0.058803033083677],[0.017972772940993,-0.046253699809313,-0.070849865674973]],[[-0.068873040378094,-0.061394296586514,-0.029522106051445],[0.035852778702974,-0.058247100561857,0.027956517413259],[-0.049401007592678,-0.02489516697824,-0.012376348488033]],[[0.014410297386348,0.018437173217535,-0.0032229523640126],[0.044103097170591,-0.050671324133873,0.1012309640646],[0.080924794077873,0.033598143607378,-0.048691641539335]],[[0.011935831978917,0.0084795709699392,0.065650515258312],[0.0085496762767434,0.0097152199596167,0.028545387089252],[-0.06113426014781,0.010661411099136,-0.011132032610476]],[[-0.012188256718218,0.019000738859177,0.015500329434872],[0.01966748945415,-0.014303667470813,-0.052002225071192],[-0.016137959435582,-0.068377926945686,0.070992462337017]],[[0.015081598423421,0.085222192108631,0.0070177428424358],[-0.029375525191426,0.042968235909939,0.01237340644002],[-0.021856103092432,-0.035852521657944,-0.054879270493984]],[[0.021026134490967,-0.027413859963417,0.068169876933098],[0.035882014781237,-0.059135984629393,0.026483280584216],[0.039269361644983,0.10106166452169,0.024523386731744]],[[0.060139618813992,-0.01416193973273,-0.04521893337369],[0.026696348562837,0.0093883350491524,-0.029931358993053],[-0.025122778490186,0.019513953477144,-0.02090322971344]],[[0.0037279454991221,-0.040690459311008,0.061664327979088],[0.055121224373579,0.052282460033894,0.0047539388760924],[-0.021431157365441,0.028939347714186,0.035382587462664]],[[-0.041272066533566,-0.068225644528866,0.028769636526704],[0.0069267353974283,-0.00403190869838,-0.034875769168139],[0.043949745595455,-0.00082414137432352,0.03587943315506]],[[-0.0032678747083992,0.08174005895853,0.11785395443439],[-0.068151399493217,0.028845071792603,-0.032667081803083],[0.025490958243608,0.065457493066788,0.065455175936222]],[[-0.048134680837393,-0.013086283579469,0.066083624958992],[-0.019678775221109,-0.010297987610102,-0.0052009602077305],[-0.0045515396632254,0.012705879285932,0.0061919176951051]],[[0.024652106687427,0.014405623078346,0.03742328286171],[-0.0074148452840745,0.10376182943583,-0.022514600306749],[0.067264713346958,-0.0057934331707656,-0.022424465045333]],[[-0.028655173256993,-0.016480635851622,-0.019921246916056],[0.019973669201136,0.062995567917824,0.021510902792215],[-0.03797335550189,0.015416977927089,0.037659682333469]],[[0.05087810382247,-0.09391238540411,0.016160406172276],[-0.028143811970949,-0.04514142498374,-0.012800442054868],[0.012523551471531,-0.04862504452467,-0.0074404710903764]],[[-0.02790167555213,0.045809775590897,0.053481590002775],[-0.043843358755112,0.016443988308311,-0.016899118199944],[-0.011649065651,0.0046918871812522,-0.015559010207653]],[[-0.042690105736256,0.010276497341692,-0.084207877516747],[0.043373569846153,-0.056063611060381,-0.024246722459793],[0.010381302796304,-0.039491672068834,0.01911261305213]],[[0.016273917630315,0.027781762182713,0.038041785359383],[-0.0061868708580732,0.020722893998027,0.018513472750783],[-0.04069746285677,-0.061429619789124,0.023418122902513]],[[0.054706141352654,0.031531523913145,-0.029752610251307],[-0.029855005443096,-0.028276825323701,-0.072904959321022],[-0.016629338264465,0.032543648034334,0.014930259436369]],[[0.022032668814063,-0.037889234721661,-0.0010301312431693],[-0.069006592035294,-0.023838190361857,-0.010386945679784],[-0.020662674680352,-0.094658724963665,0.014965419657528]],[[0.042578417807817,0.002549119759351,0.012956442311406],[0.00026573325158097,0.091820195317268,0.049766842275858],[0.0037865517660975,0.027890264987946,-0.10535068064928]],[[-0.048166338354349,-0.016982415691018,0.03973900154233],[0.035279761999846,-0.039397340267897,-0.057513117790222],[0.010676492005587,0.040850203484297,0.05869909375906]],[[-0.050210770219564,-0.044896800071001,-0.01181432697922],[-0.0057775871828198,0.0057549420744181,0.094076439738274],[0.063024200499058,-0.071887724101543,-0.029728006571531]],[[-0.038186863064766,0.054378375411034,0.019086880609393],[0.02090179361403,0.04050899669528,-0.071705125272274],[-0.015709286555648,-0.015566986985505,0.0097711142152548]],[[0.055732872337103,-0.016881465911865,0.0027194572612643],[0.011758402921259,0.072567693889141,0.050956226885319],[-0.051475368440151,0.11027830094099,0.052221234887838]],[[-0.011725032702088,-0.010002329014242,-0.0041517182253301],[-0.043681532144547,0.032563205808401,0.029989033937454],[0.016088308766484,0.015764223411679,0.062211334705353]],[[0.0055275238119066,0.015464748255908,0.093128465116024],[-0.014361691661179,0.015237572602928,-0.052631381899118],[0.034688621759415,-0.015222353860736,0.039157845079899]],[[0.020449230447412,0.0021079841535538,0.043495297431946],[0.061808321624994,0.0064887381158769,-0.027427460998297],[0.03734502196312,0.021744776517153,0.033395774662495]],[[0.042731590569019,0.059979159384966,0.051795776933432],[0.0057359430938959,0.0010721392463893,-0.059180948883295],[0.019856348633766,0.015510963276029,-0.022285843268037]],[[0.0093692615628242,-0.0093629276379943,0.016597867012024],[0.097367212176323,0.023918405175209,-0.040155712515116],[-0.027843052521348,0.015861803665757,0.014015675522387]],[[-0.010798455215991,0.04978559538722,-0.014158749952912],[-0.051587473601103,-0.049012761563063,0.029562907293439],[0.0013442564522848,0.026130516082048,-0.038704168051481]],[[0.055503323674202,0.097941853106022,-0.036109328269958],[0.032972507178783,0.0017089141765609,-0.039398021996021],[-0.0075192847289145,-0.06479649990797,-0.025909019634128]],[[0.066513553261757,-0.030450716614723,0.01663507334888],[-0.032507017254829,0.0051207267679274,0.0021797586232424],[-0.011428110301495,0.024128507822752,-0.043697346001863]],[[-0.0011897953227162,-0.098444685339928,0.030118694528937],[-0.00028409442165866,0.12932722270489,0.048448193818331],[0.023420182988048,-0.062151972204447,0.060357011854649]],[[-0.018079578876495,0.021206544712186,-0.086937591433525],[-0.018910674378276,-0.019048387184739,-0.0027448893524706],[-0.035384818911552,0.012970415875316,-0.034823507070541]],[[0.061343174427748,0.041009556502104,-0.014690047129989],[0.021485129371285,0.0089502548798919,0.0016688262112439],[-0.025382032617927,-0.0047980002127588,0.047205109149218]],[[-0.028529210016131,-0.05224559083581,-0.027110369876027],[0.048248928040266,-0.014531480148435,0.0077273859642446],[0.076506711542606,0.011158289387822,0.05290237814188]],[[0.055468861013651,0.014090904965997,0.032994728535414],[0.017986604943871,0.025348009541631,-0.022154398262501],[0.0024164249189198,0.058259598910809,0.046344179660082]],[[0.0080931773409247,-0.10573565214872,-0.064942799508572],[-0.053206853568554,-0.029148874804378,0.019841842353344],[-0.039047814905643,0.01525376085192,-0.0082561289891601]],[[0.012308133766055,-0.04999778047204,-0.0017026497516781],[0.0049060261808336,0.042048793286085,-0.012655763886869],[-0.0084432559087873,-0.05201930180192,-0.021918315440416]],[[-0.014296794310212,0.070900246500969,0.0071078184992075],[0.036704823374748,-0.062217775732279,0.062054976820946],[0.017646178603172,0.018840663135052,-0.068300686776638]],[[0.061773937195539,0.029655274003744,-0.049614973366261],[-0.045916128903627,-0.012809696607292,-0.0033613399136811],[-0.057021357119083,0.03120313771069,-0.0026999302208424]],[[0.038865774869919,0.084956720471382,0.03395264968276],[-0.059151541441679,0.0016477887984365,0.014008369296789],[0.0093487659469247,-0.023784710094333,0.028778566047549]],[[-0.010542106814682,0.031685516238213,-0.047285079956055],[-0.0089819226413965,0.075804777443409,0.03594645857811],[0.0076298876665533,0.019295481964946,0.045539982616901]],[[-0.034850791096687,-0.044702656567097,-0.026783624663949],[0.075703047215939,-0.0055792173370719,0.0027276366017759],[0.052271030843258,-0.014261446893215,0.020510835573077]],[[-0.0014963172143325,0.056908193975687,0.028724778443575],[-0.010650858283043,-0.012300481088459,-0.0052618230693042],[0.077604621648788,0.03874783962965,-0.011111302301288]],[[0.0080809378996491,-0.037472348660231,-0.031644832342863],[-0.0079026436433196,0.045048844069242,0.03776927292347],[-0.02062526345253,0.053837191313505,0.0026483919937164]],[[-0.040252506732941,-0.070152208209038,0.030243905261159],[0.0062838117592037,-0.019522832706571,0.034728787839413],[-3.565609222278e-05,0.052388798445463,0.0051941773854196]],[[0.054362054914236,0.044383604079485,-0.026512330397964],[0.00016358194989152,-0.0033792059402913,-0.084625750780106],[0.0019895636942238,-0.13301020860672,-0.0045986087061465]],[[-0.070893786847591,-0.046975165605545,-0.031478866934776],[-0.030136441811919,0.017060503363609,-0.027873126789927],[0.0122144902125,-0.020579775795341,0.064243197441101]],[[-0.0042858943343163,-0.031733117997646,0.011896052397788],[0.0079216491430998,-0.025408135727048,0.034085191786289],[-0.027122523635626,-0.10029520094395,-0.056759063154459]],[[-0.038933340460062,-0.019076013937593,-0.022147625684738],[0.003328129183501,0.04724445939064,0.07006973773241],[0.0023952717892826,0.057119142264128,-0.00089815788669512]],[[0.018885245546699,-0.0049156034365296,-0.022862683981657],[0.039339300245047,-0.05337955057621,0.062716893851757],[0.081601031124592,-0.011615430004895,-0.0036483297590166]],[[-0.00067097134888172,0.027509229257703,0.067035093903542],[-0.00421978905797,0.072665691375732,-0.05223223567009],[-0.014907687902451,-0.091002948582172,-0.03024092502892]],[[-0.017000721767545,-0.0063519892282784,-0.011981738731265],[0.045905914157629,-0.083939217031002,0.068450152873993],[-0.094965204596519,-0.0060700695030391,-0.075888574123383]]],[[[0.0069420421496034,-0.024084415286779,0.13697820901871],[0.032407280057669,-0.030564876273274,0.012064263224602],[-0.0078370375558734,-0.020103773102164,0.039367362856865]],[[0.0087364828214049,0.015434062108397,-0.031737733632326],[-0.090892881155014,-0.035206966102123,-0.10108607262373],[0.040685124695301,0.011636896058917,-0.15053926408291]],[[0.096136644482613,0.076956674456596,-0.019625544548035],[-0.057345114648342,-0.048995167016983,-0.0055579217150807],[0.080220870673656,0.024186424911022,0.075416222214699]],[[-0.031675599515438,-0.13100676238537,0.025590868666768],[-0.077612422406673,-0.053921658545732,-0.035746142268181],[-0.019186034798622,-0.011795811355114,-0.01210618019104]],[[0.063169799745083,-0.0074149593710899,0.12545400857925],[0.035782624036074,-0.065331175923347,-0.0016505122184753],[-0.0091623300686479,-0.078863978385925,-0.059818487614393]],[[0.047437101602554,0.034496176987886,-0.0099887298420072],[0.011696223169565,0.10269027203321,0.066951766610146],[-0.0059827943332493,-0.033428076654673,0.075655244290829]],[[-0.022003039717674,-0.0047457315959036,0.11583387106657],[-0.022390322759748,-0.043831896036863,0.0042950012721121],[-0.038199231028557,-0.062137898057699,0.05376797914505]],[[0.10130631178617,0.050170555710793,-0.038126692175865],[0.058686312288046,0.079894542694092,0.080319330096245],[0.026313919574022,-0.0029610365163535,-0.037039380520582]],[[-0.074287921190262,0.017261723056436,-0.014360030181706],[-0.087180890142918,-0.0061928280629218,-0.083970911800861],[0.0529401935637,0.018519455567002,-0.0081446878612041]],[[0.022723447531462,0.03959759324789,-0.012737049721181],[-0.049251101911068,0.0038187026511878,0.0044934549368918],[0.042033988982439,-0.0353047773242,0.020533531904221]],[[-0.006638694088906,0.0048903618007898,0.0033831091132015],[0.033188387751579,-0.044905561953783,-0.049522239714861],[-0.0098382821306586,0.087617985904217,-0.024246720597148]],[[0.034351032227278,-0.0032217283733189,-0.059176407754421],[-0.039557546377182,0.081082731485367,0.06275736540556],[-0.037219483405352,-0.0043671601451933,-0.031542759388685]],[[0.0090378923341632,0.068373471498489,0.046699799597263],[0.088986776769161,0.040517389774323,-0.0082277832552791],[0.020009476691484,-0.02561729028821,0.038423880934715]],[[-0.0082275755703449,0.0063964682631195,-0.059861198067665],[0.030736090615392,-0.0084977401420474,-0.01234277151525],[-0.024429935961962,0.0060576531104743,-0.0091464659199119]],[[-0.038639228790998,-0.040897313505411,0.021471805870533],[-0.030356511473656,-0.031027179211378,-0.0056194700300694],[-0.0079706525430083,0.037694048136473,-0.092238754034042]],[[-0.00071253895293921,0.021752899512649,0.019064662978053],[0.036611746996641,0.027710581198335,0.032914187759161],[-0.015049511566758,0.0012332267360762,-0.046571340411901]],[[0.011038077995181,-0.083407342433929,-0.063725374639034],[0.07897624373436,0.079997539520264,0.042087405920029],[0.047143913805485,0.058402702212334,0.0547955930233]],[[0.11992678791285,0.10464559495449,0.034557960927486],[-0.073719888925552,0.049425974488258,0.012865219265223],[-0.04675867035985,-0.052940845489502,-0.014252698048949]],[[-0.032718107104301,-0.034641567617655,-0.0060542500577867],[0.022092731669545,-0.029086504131556,0.029069321230054],[0.032048616558313,-0.038862660527229,-0.053867980837822]],[[0.1776949763298,0.050145708024502,-0.0045354552567005],[0.0037651273887604,0.060667533427477,-0.049005921930075],[0.0060625933110714,0.0036713974550366,0.065591759979725]],[[-0.0010716890683398,-0.035033535212278,0.08512868732214],[0.048856440931559,0.05527089163661,0.03366132080555],[0.12235432118177,-0.012016619555652,-0.024168040603399]],[[0.063926830887794,0.016627551987767,0.026447828859091],[0.054407756775618,0.032758522778749,0.0060436693020165],[0.021673766896129,-0.01378664933145,0.040166839957237]],[[0.016382317990065,-0.015379555523396,0.12319631129503],[0.00972462259233,-0.047028314322233,0.021809164434671],[-0.049835864454508,-0.068166665732861,0.078459665179253]],[[0.045450698584318,0.094645321369171,0.15591181814671],[0.079997502267361,-0.025466209277511,0.035428371280432],[-0.065167173743248,0.047898571938276,-0.10053585469723]],[[-0.1632139980793,-0.072031863033772,0.06738144159317],[0.017203085124493,-0.01769221201539,-0.046678133308887],[-0.04613634198904,0.012540774419904,0.02487388625741]],[[0.032010439783335,-0.076424889266491,-0.0092222858220339],[-0.093083508312702,0.061420727521181,0.031851731240749],[0.058319199830294,-0.034601014107466,0.056256849318743]],[[0.016233230009675,-0.030905738472939,0.0063153929077089],[0.020284941419959,-0.077346235513687,-0.0056492891162634],[0.060551304370165,0.09263277053833,0.010998227633536]],[[-0.0053988369181752,-0.075460687279701,0.034593522548676],[0.09943151473999,-0.037859309464693,-0.032916709780693],[0.0083837369456887,0.019567605108023,0.00072259572334588]],[[0.040258251130581,-0.062716625630856,0.011469036340714],[-0.026054093614221,0.04836717993021,0.065243504941463],[0.037889387458563,0.020766885951161,0.021701069548726]],[[0.074103452265263,0.047096770256758,0.076427459716797],[-0.10246270149946,-0.024154473096132,0.0075946249999106],[-0.029819874092937,0.08657781034708,0.027419552206993]],[[0.0013176236534491,0.055490471422672,-0.028876850381494],[-0.043889921158552,-0.11147150397301,0.049459606409073],[-0.01756114885211,0.037940438836813,0.011962316930294]],[[0.011160491965711,-0.013048530556262,0.0057908990420401],[0.025614956393838,-0.099900208413601,-0.080141738057137],[0.0037190141156316,-0.04786267131567,0.011493337340653]],[[-0.1734861433506,-0.081418476998806,0.0091603398323059],[0.086426302790642,0.068717457354069,0.049757372587919],[-0.05439829453826,-0.010375466197729,-0.029997201636434]],[[-0.049718972295523,0.058549787849188,0.00084433978190646],[0.038799650967121,0.059156358242035,0.044429458677769],[0.054910570383072,-0.034050296992064,0.062578819692135]],[[-0.012564986944199,-0.011837386526167,-0.066214367747307],[0.065266080200672,-0.028727300465107,-0.020052576437593],[0.046644408255816,0.044425074011087,0.076628290116787]],[[-0.0078196069225669,0.007481889333576,0.044456209987402],[0.0003038787690457,-0.11059312522411,-0.023268215358257],[0.026167893782258,-0.012015870772302,-0.063419930636883]],[[0.029124261811376,0.10787831246853,-0.0039595868438482],[0.058823507279158,-0.027051525190473,0.042375560849905],[-0.053188998252153,-0.0068223169073462,-0.058312024921179]],[[-0.096738420426846,-0.074177719652653,-0.0055640800856054],[0.062144834548235,0.013479602523148,0.049555584788322],[-0.043878529220819,0.034479424357414,0.04942600056529]],[[-0.046652376651764,-0.056594304740429,-0.099331490695477],[0.039057038724422,-0.034131001681089,-0.010475400835276],[0.039917130023241,0.0010911431163549,0.0060931108891964]],[[0.0035948681179434,-0.0062140170484781,-0.090567640960217],[0.017984736710787,-0.020159434527159,0.060807067900896],[0.038604468107224,-0.0040028961375356,0.098791778087616]],[[-0.083114020526409,-0.025969300419092,-0.0028474074788392],[0.045530185103416,-0.032970856875181,-0.033992286771536],[-0.023542849346995,-0.048839565366507,-0.099389158189297]],[[0.0016537033952773,0.055677317082882,0.12242174893618],[-0.024837272241712,0.010273652151227,0.10019655525684],[-0.007995031774044,-0.013782919384539,-0.0015540402382612]],[[0.0062358733266592,-0.0066594160161912,0.035111226141453],[0.032045383006334,0.013968615792692,0.055677734315395],[-0.031450413167477,0.016525946557522,-0.024234287440777]],[[0.077616490423679,-0.042865749448538,-0.024505605921149],[0.028731541708112,0.040717281401157,0.026674898341298],[0.015879990532994,-0.055038332939148,0.0075604296289384]],[[0.047633938491344,0.017139786854386,-0.013639339245856],[-0.0079258996993303,0.010505001991987,-0.031702965497971],[-0.040031168609858,0.019643008708954,-0.020367406308651]],[[0.0055443155579269,0.067381590604782,0.045693814754486],[-0.050726931542158,-0.015743931755424,0.044133502990007],[0.046948086470366,0.056887958198786,0.071150928735733]],[[0.020855976268649,-0.031832430511713,0.035587221384048],[-0.019896609708667,-0.094234891235828,-0.06461975723505],[-0.032171070575714,0.059318039566278,-0.018314236775041]],[[-0.059299398213625,-0.037105925381184,0.084983885288239],[0.028378563001752,-0.077731169760227,0.046564094722271],[0.016596855595708,0.053487230092287,-0.012529806233943]],[[-0.0058905491605401,-0.093878492712975,-0.074642226099968],[-0.021793624386191,-0.03658327832818,-0.047293063253164],[0.0024349819868803,-0.051364380866289,0.061195179820061]],[[0.004708519205451,-0.060039322823286,0.1126267388463],[-0.0086059728637338,-0.049688011407852,-0.058416739106178],[-0.0080771427601576,-0.0040561757050455,0.068744279444218]],[[0.041158549487591,-0.11724346131086,-0.064890213310719],[0.045452937483788,0.022071288898587,-0.052878674119711],[0.13839186728001,-0.037095978856087,0.035493467003107]],[[0.08528083562851,-0.10473459213972,-0.069450877606869],[-0.0065322536975145,-0.0035331777762622,-0.10547537356615],[-0.023541495203972,0.035891074687243,-0.013312178663909]],[[-0.0014186608605087,-0.029526611790061,0.015036669559777],[0.075402371585369,0.0037860926240683,0.058467790484428],[0.069480925798416,0.013887350447476,0.033190563321114]],[[0.029030682519078,0.035939145833254,-0.10277338325977],[0.051961958408356,0.054104622453451,0.028598656877875],[-0.066524252295494,0.097416549921036,0.058354545384645]],[[0.013441685587168,-0.088625699281693,-0.056384932249784],[0.081224128603935,-0.022367423400283,0.010666496120393],[0.06197115406394,0.043260801583529,0.041721686720848]],[[0.089238494634628,-0.0045330412685871,-0.086885489523411],[0.12715931236744,0.029517311602831,0.093630783259869],[-0.024378238245845,-0.033118560910225,-0.017643213272095]],[[0.0370202511549,-0.034331530332565,-0.077034302055836],[0.040830656886101,0.071951627731323,0.0706817060709],[0.0041786264628172,0.00087807682575658,0.09019897133112]],[[-0.054518923163414,0.0084833446890116,0.031860422343016],[-0.0015279242070392,0.073682978749275,0.058525491505861],[-0.026737503707409,0.048435993492603,-0.085993424057961]],[[0.0060877380892634,0.058339547365904,-0.028601689264178],[0.033670235425234,0.08994347602129,0.066988453269005],[0.044041387736797,0.095425441861153,-0.0036252418067306]],[[-0.037507127970457,-0.03698705136776,-0.021222345530987],[-0.01707785576582,-0.067784175276756,0.085172727704048],[-0.066897235810757,0.015852980315685,0.023964837193489]],[[-0.050886034965515,0.026218641549349,-0.075819320976734],[-0.080756910145283,-0.11394131183624,-0.095517493784428],[-0.0035176905803382,-0.039232902228832,-0.080549746751785]],[[0.036458767950535,-0.048206951469183,-0.069459572434425],[-0.0052221273072064,-0.020502716302872,-0.09041166305542],[0.020696582272649,-0.094432763755322,-0.029891390353441]],[[0.10424526035786,0.051840979605913,0.10720692574978],[0.013493253849447,-0.013900309801102,-0.0088476380333304],[-0.027528297156096,-0.049165461212397,-0.019032264128327]],[[0.1419200450182,0.031306639313698,0.016951683908701],[0.12826544046402,-0.056058380752802,-0.077123358845711],[-0.0098130702972412,-0.057604685425758,-0.042263798415661]],[[0.027845336124301,0.051893018186092,0.0083317020907998],[-0.013584708794951,-0.086870118975639,0.027130715548992],[-0.024101175367832,0.052247323095798,-0.081303484737873]],[[-0.099323302507401,0.076087117195129,0.12751993536949],[-0.13939252495766,-0.0060243108309805,-0.0068472581915557],[0.04881301894784,0.049426395446062,0.17831920087337]],[[0.041981462389231,0.01312983315438,-0.131954818964],[0.0076414765790105,-0.027825925499201,-0.011242088861763],[-0.012854926288128,0.05876100435853,0.015471551567316]],[[-0.040085628628731,0.037005811929703,-0.021021898835897],[-0.08923564851284,0.09511898458004,-0.047217786312103],[-0.013681260868907,0.012071226723492,0.010152084752917]],[[0.038853842765093,0.0070929792709649,0.065600261092186],[-0.03973938152194,0.026171365752816,-0.049583703279495],[0.082691803574562,0.072069458663464,-0.063919045031071]],[[-0.053499512374401,-0.13390427827835,-0.1032444909215],[-0.054523453116417,0.053648751229048,0.023291734978557],[-0.021001420915127,0.081478647887707,0.1413394510746]],[[-0.0014109414769337,0.030881032347679,0.10006935149431],[0.030685935169458,-0.0051939594559371,0.015535002574325],[-0.05570163205266,0.0086275245994329,0.012593568302691]],[[0.019006181508303,0.036756046116352,0.016171384602785],[-0.084806874394417,-0.087764382362366,-0.087786488234997],[0.04899463057518,0.036824323236942,-0.022273885086179]],[[-0.0033461302518845,0.010174414142966,0.072242133319378],[-0.026576327160001,0.013566458597779,-0.014812449924648],[0.066130578517914,0.025191269814968,0.043266113847494]],[[0.072421558201313,0.083377368748188,-0.02184502966702],[-0.045963764190674,0.016392935067415,-0.031230563297868],[0.013772690668702,0.031845293939114,0.045862454921007]],[[0.06537688523531,0.031885553151369,0.0078173130750656],[-0.020859075710177,-0.019831255078316,0.063965663313866],[0.071624808013439,-0.018047718331218,0.03686548769474]],[[-0.0066526322625577,0.062301877886057,-0.062088266015053],[0.072475232183933,-0.01332498434931,0.013678072951734],[-0.10119094699621,-0.1165274232626,-0.022501923143864]],[[0.085746891796589,-0.020604066550732,0.098358631134033],[-0.027457220479846,-0.016251023858786,-0.02646754309535],[-0.09703204780817,-0.0064482865855098,0.012074807658792]],[[0.0098290564492345,0.056579224765301,0.090776763856411],[0.030404699966311,-0.021358910948038,0.03174801543355],[-0.0053589008748531,-0.01841096393764,0.077862665057182]],[[0.16177235543728,-0.0081182429566979,0.024204773828387],[-0.018831232562661,0.0054385326802731,-0.070933721959591],[-0.06184858083725,-0.12263276427984,-0.034657586365938]],[[-0.034018311649561,-0.066142931580544,-0.0043100425973535],[-0.0060149230994284,0.039635051041842,-0.016708305105567],[-0.040472481399775,-0.013265196233988,0.011730661615729]],[[0.013059320859611,-0.011538858525455,-0.012869195081294],[0.14653393626213,0.050219140946865,0.026083305478096],[-0.023761488497257,-0.0084111597388983,-0.015533252619207]],[[-0.081675380468369,0.00024660670896992,-0.12290162593126],[-0.052703443914652,-0.047285988926888,0.033478442579508],[0.062127728015184,-0.003771445248276,-0.019877348095179]],[[-0.036375794559717,-0.0036802929826081,-0.085138082504272],[-0.0087204398587346,0.030999070033431,-0.017799997702241],[0.011753932572901,0.014103094115853,0.030441716313362]],[[0.027936628088355,-0.05812306329608,-0.015047994442284],[-0.030069606378675,-0.021944526582956,-0.0855652987957],[0.0777193531394,-0.03789147362113,-0.032253440469503]],[[0.012485241517425,-0.057305153459311,0.018024755641818],[0.076232969760895,-0.045091260224581,0.042520191520452],[-0.059365354478359,-0.095783278346062,0.01902511715889]],[[0.039323706179857,0.1055431291461,0.085114136338234],[0.039650790393353,0.038512468338013,0.026243180036545],[-0.01298932172358,-0.082269430160522,-0.003127142554149]],[[-0.03166201338172,0.041332568973303,-0.0075528807938099],[0.099038973450661,0.0026257068384439,0.14160272479057],[0.061158776283264,0.051566518843174,0.033498078584671]],[[0.09586351364851,0.14857219159603,-0.017562050372362],[-0.02040490321815,-0.040170162916183,-0.06290103495121],[0.040683563798666,0.021717974916101,-0.041810531169176]],[[0.015095161274076,0.079393319785595,-0.018986793234944],[0.071386717259884,-0.039204634726048,-0.020842585712671],[0.03177047893405,0.011529172770679,0.082669876515865]],[[-0.093757107853889,0.046274032443762,-0.12822549045086],[0.023996118456125,-0.0045494702644646,-0.042952436953783],[-0.046785581856966,-0.069840148091316,0.074787206947803]],[[0.051520463079214,0.054942864924669,0.059929966926575],[-0.13144634664059,0.090079881250858,-0.056316304951906],[-0.023754499852657,-0.10708481818438,-0.021440679207444]],[[0.056134324520826,0.13589827716351,0.095804981887341],[-0.10846945643425,-0.04057103022933,0.085148900747299],[-0.0058292644098401,-0.030789382755756,0.020101947709918]],[[0.057214576750994,0.070670016109943,0.027410546317697],[0.038913205265999,0.0023713654372841,-0.017669748514891],[0.01201093941927,0.052676077932119,-0.037644196301699]],[[-0.11321970075369,-0.053208015859127,0.10732150822878],[-0.04592003673315,-0.090619966387749,0.062528289854527],[0.03481661900878,-0.038251157850027,0.056123923510313]],[[0.018133604899049,0.0017276104772463,-0.072390802204609],[-0.057859394699335,0.009703541174531,-0.048247762024403],[0.036060139536858,-0.035367492586374,-0.0020426195114851]],[[0.084507800638676,-0.026396652683616,0.034625560045242],[-0.025395691394806,0.010587780736387,0.081275694072247],[-0.014197398908436,-0.061515539884567,0.02014072611928]],[[0.041331186890602,0.032336860895157,-0.061092335730791],[0.0080421064049006,-0.051129806786776,0.013113305903971],[-0.043855778872967,-0.022683618590236,0.052606798708439]],[[0.085616573691368,0.10305536538363,0.07265343517065],[0.00068075704621151,0.038740895688534,0.048250786960125],[0.055119756609201,0.098141543567181,0.092731222510338]],[[0.012051939964294,0.0052119055762887,-0.13485124707222],[-0.059884808957577,0.038164339959621,0.034109324216843],[0.034381818026304,0.041780237108469,-0.015420983545482]],[[-0.006117217708379,0.040505785495043,-0.023993965238333],[-0.0049482882022858,0.0024198179598898,0.022684685885906],[-0.034912142902613,-0.0039604897610843,-0.012781701050699]],[[0.026378840208054,0.056234940886497,-0.055602643638849],[-0.013815715909004,0.0554682277143,-0.0099164191633463],[0.0002162296732422,0.022166959941387,-0.045960031449795]],[[-0.028154199942946,-0.097158037126064,-0.021726122125983],[-0.072975993156433,-0.085982665419579,0.08411680907011],[0.018580615520477,0.018706640228629,0.020920101553202]],[[0.01341238245368,0.12941293418407,0.10755147784948],[-0.019151968881488,0.038721363991499,0.034977376461029],[0.084930635988712,0.097065128386021,0.03331570699811]],[[-0.024775803089142,-0.04111697524786,-0.11827972531319],[0.032430481165648,-0.0591173581779,0.016918897628784],[-0.008919782936573,-0.058398727327585,0.064933851361275]],[[-0.049398090690374,-0.008816909044981,-0.070174507796764],[0.072721734642982,-0.027529833838344,0.021105697378516],[0.053945168852806,0.10927047580481,-0.015146181918681]],[[0.0027471373323351,-0.065599851310253,-0.021614929661155],[-0.01436448097229,0.0059742107987404,0.060003757476807],[-0.026043554767966,0.033912818878889,0.04979320988059]],[[-0.012060417793691,-0.0054721473716199,-0.056362450122833],[0.073855876922607,0.1047486141324,-0.011144173331559],[0.0074785090982914,0.012266864068806,0.052675411105156]],[[-0.039939273148775,0.054191704839468,-0.027467815205455],[-0.056644018739462,-0.051976162940264,0.0078103076666594],[-0.011706234887242,-0.030666530132294,0.021739900112152]],[[-0.069120921194553,0.042296782135963,-0.034636538475752],[0.05864967033267,-0.017631936818361,-0.13217544555664],[0.0058624912053347,-0.011253654956818,0.13311821222305]],[[-0.071782514452934,-0.10894056409597,-0.011600600555539],[0.072093054652214,0.099168635904789,0.064145892858505],[0.048575956374407,0.042202685028315,0.0017318425234407]],[[-0.079821214079857,0.022917464375496,-0.0026255014818162],[0.025289978832006,-0.015480320900679,0.04718941450119],[0.044289078563452,-0.02199742756784,0.0079716565087438]],[[-0.04034911096096,-0.042665231972933,-0.033384945243597],[-0.10455476492643,0.0042368681170046,0.09002036601305],[-0.028971681371331,0.018126284703612,-0.059335954487324]],[[-0.057593043893576,-0.030451003462076,-0.010989689268172],[-0.066771529614925,0.0071203517727554,-0.034359909594059],[0.0098101478070021,-0.066599443554878,0.10634662955999]],[[-0.013779326342046,-0.01234245300293,0.024494456127286],[-0.0054254452697933,0.014165626838803,0.107222892344],[0.039063271135092,0.033279560506344,0.051229950040579]],[[-0.068407364189625,-0.072023563086987,-0.088635258376598],[0.020542761310935,-0.019948044791818,-0.017706498503685],[0.084723018109798,-0.035510141402483,0.014593256637454]],[[-0.065115839242935,0.030571674928069,-0.068433046340942],[0.053804066032171,0.18407133221626,0.16173052787781],[-0.059100084006786,-0.02846204303205,-0.029182897880673]],[[0.037905771285295,0.039810925722122,-0.017929928377271],[-0.087024539709091,0.011035790666938,0.066986106336117],[0.022178480401635,0.09716072678566,0.022354708984494]],[[0.030407350510359,-0.018692465499043,0.051425002515316],[-0.037857167422771,-0.0635771676898,-0.033904906362295],[-0.024353222921491,-0.037182800471783,0.052021369338036]],[[0.012226900085807,-0.053146582096815,-0.12626181542873],[-0.054403390735388,-6.7175911681261e-05,0.034245833754539],[-0.01834306679666,-0.025855308398604,-0.0017993306973949]],[[0.034405492246151,-0.085044927895069,0.034521784633398],[0.023793298751116,-0.0094432765617967,0.032805357128382],[0.030239524319768,0.031235175207257,0.021853160113096]],[[-0.08429953455925,-0.0039108074270189,0.036102741956711],[0.022849638015032,-0.048994299024343,-0.020248010754585],[-0.056266568601131,-0.016934275627136,-0.024680942296982]],[[-0.04779964312911,0.0091015957295895,0.014411603100598],[0.1271675080061,0.11110052466393,-0.082053422927856],[0.020265879109502,0.035873558372259,0.027490643784404]],[[-0.028561232611537,0.015791494399309,-0.10647611320019],[-0.051918782293797,0.0094702821224928,-0.048091720789671],[-0.02110381051898,-0.050063952803612,-0.014687348157167]],[[-0.057520490139723,-0.033127315342426,-0.074096940457821],[0.03032448142767,0.058442272245884,-0.043576810508966],[0.065380491316319,-0.029427114874125,0.0045777661725879]],[[0.015600367449224,0.10673410445452,0.052618596702814],[0.096139430999756,0.017587024718523,0.027106700465083],[0.15515573322773,-0.058621764183044,0.082163512706757]],[[0.0589878000319,-0.023273006081581,-0.046775374561548],[-0.023106846958399,0.043505404144526,-0.006022013258189],[0.095847405493259,-0.064475372433662,-0.027982395142317]],[[-0.049767311662436,0.055583696812391,0.13993254303932],[0.091324202716351,-0.11991754919291,0.06208598613739],[0.047209907323122,-0.010741625912488,-0.0038927546702325]],[[0.054157752543688,-0.024280251935124,-0.045439042150974],[0.019146669656038,0.035918634384871,-0.039516754448414],[0.0095937810838223,-0.019673241302371,-0.057115323841572]]],[[[0.040219314396381,-0.048698630183935,0.031198374927044],[0.091776669025421,0.13474866747856,0.052081443369389],[-0.051907226443291,0.0080149443820119,0.018511286005378]],[[0.030935985967517,-0.026456151157618,0.19420087337494],[-0.04041850939393,-0.02677882835269,-0.092977032065392],[-0.013826069422066,0.023152096197009,-0.15187881886959]],[[-0.04821564629674,-0.038467694073915,0.0013852956471965],[-0.14730389416218,0.0077533083967865,0.024297388270497],[0.0080121336504817,-0.033014915883541,0.046584066003561]],[[-0.051409658044577,-0.065739475190639,-0.020443880930543],[-0.068993486464024,-0.089564800262451,-0.12357738614082],[-0.013986026868224,-0.10471713542938,0.0033934914972633]],[[-0.063208311796188,-0.07958398014307,-0.10125195980072],[-0.014461582526565,-0.024320058524609,-0.055791396647692],[0.015624530613422,0.02652838267386,0.017580905929208]],[[0.026086932048202,-0.025686476379633,-0.025131525471807],[-0.03190990164876,0.041671756654978,-0.10999263823032],[0.0068686972372234,-0.031113725155592,-0.014837190508842]],[[-0.02872359380126,-0.10787055641413,-0.018465295433998],[0.017493581399322,0.090726286172867,-0.049015384167433],[-0.27832761406898,-0.003729811636731,0.014738521538675]],[[-0.021109018474817,0.24957291781902,0.044065397232771],[0.02848288230598,0.0082027986645699,-0.018368769437075],[-0.012283376418054,-0.00089769723126665,0.072352282702923]],[[0.12110623717308,-0.036619652062654,-0.096466183662415],[-0.11377800256014,0.11402881145477,0.058747608214617],[-0.056234590709209,-0.068054206669331,0.052545715123415]],[[0.067355334758759,-0.032727193087339,0.087893627583981],[-0.045052010565996,-0.029843874275684,-0.10631597042084],[-0.12324860692024,-0.080807186663151,-0.036000359803438]],[[0.014532122761011,0.10605319589376,-0.13480915129185],[-0.020843029022217,-0.059449337422848,0.038153316825628],[-0.14149375259876,-0.041396919637918,-0.13490916788578]],[[0.042459208518267,0.043446753174067,0.10677436739206],[-0.079936288297176,-0.059856630861759,-0.016400899738073],[0.065031923353672,-0.012389088980854,-0.0075675235129893]],[[-0.023009091615677,-0.10401520133018,-0.094519563019276],[0.033312633633614,-0.080430455505848,-0.056964714080095],[-0.017855145037174,0.15837913751602,-0.076461121439934]],[[-0.040666554123163,-0.0027550109662116,-0.079130209982395],[0.0045243818312883,0.14414101839066,0.019698543474078],[-0.036218110471964,0.088574506342411,0.01525878533721]],[[0.018133401870728,-0.10219574719667,-0.037396363914013],[-0.049448013305664,0.003953579813242,-0.049543481320143],[-0.081133753061295,0.019576305523515,0.16541004180908]],[[0.14656476676464,-0.12511546909809,-0.021172316744924],[0.048372402787209,-0.090191245079041,-0.052456725388765],[0.14553669095039,0.065649315714836,0.10574818402529]],[[0.079839795827866,0.16464805603027,-0.17249488830566],[-0.066232666373253,0.1499247699976,-0.070129610598087],[0.15922395884991,0.13825419545174,-0.12435538321733]],[[-0.0065347878262401,0.039733223617077,0.04210776463151],[-0.049608986824751,-0.086912542581558,0.071212373673916],[0.052275814116001,-0.19164603948593,-0.0019802297465503]],[[-0.057529285550117,-0.193962469697,-0.055435501039028],[0.052580248564482,0.015217574313283,0.025133039802313],[0.059201315045357,0.16187192499638,-0.094312474131584]],[[0.06894563138485,0.017941862344742,-0.10225768387318],[0.029970427975059,0.095092199742794,0.0129374852404],[0.03566112741828,0.062507793307304,0.038472525775433]],[[-0.1248312741518,-0.074201866984367,-0.07739982008934],[0.069212004542351,-0.28775557875633,-0.12035252898932],[-0.071275554597378,-0.035834185779095,0.035546716302633]],[[0.0031971877906471,0.05121249333024,-0.10326224565506],[-0.025146797299385,-0.03027006238699,0.058877557516098],[-0.10410885512829,0.0067919916473329,-0.068776182830334]],[[0.076374858617783,0.027129620313644,0.013281881809235],[0.094612799584866,-0.02276667766273,0.0093078501522541],[0.0014987604226917,-0.031215958297253,-0.051245387643576]],[[-0.038262840360403,-0.086350411176682,0.00099097297061235],[0.015614131465554,0.045196175575256,-0.021733310073614],[0.031071899458766,0.0010605246061459,-0.005838715005666]],[[-0.0063761156052351,0.016423705965281,-0.090731561183929],[-0.0065826382488012,-0.065727099776268,-0.077456936240196],[-0.023727979511023,-0.11161635071039,-0.08017410337925]],[[-0.15748199820518,0.030882893130183,-0.013302398845553],[-0.04938655719161,-0.093744099140167,-0.024104308336973],[-0.14311540126801,-0.17507690191269,-0.0019856269937009]],[[-0.057249613106251,-0.070739686489105,-0.20991110801697],[0.029589466750622,-0.091143697500229,0.11280224472284],[0.026808306574821,0.10209247469902,-0.013379321433604]],[[0.034179322421551,-0.26230359077454,-0.033300273120403],[0.051721084862947,-0.0099859284237027,-0.038039281964302],[0.084530048072338,-0.12365821748972,0.11821004003286]],[[0.096741147339344,0.12643590569496,0.09373551607132],[-0.18773101270199,-0.095087833702564,0.053410194814205],[0.040330614894629,-0.036443669348955,-0.05364577844739]],[[-0.11943278461695,0.070450879633427,-0.031333893537521],[-0.029338980093598,-0.044511497020721,-0.087590970098972],[-0.067512281239033,-0.066537842154503,-0.022906567901373]],[[-0.029661180451512,0.085441023111343,0.0082003036513925],[0.089301533997059,-0.025311345234513,-0.087669670581818],[-0.1475792825222,-0.049285240471363,0.027376085519791]],[[0.0025669555179775,0.21911205351353,-0.22510561347008],[0.021638259291649,0.007851087488234,0.021105971187353],[0.02813645452261,-0.028800027444959,0.05292035266757]],[[-0.013995638117194,0.032004840672016,0.026518000289798],[0.1584744155407,0.077022939920425,0.061642408370972],[-0.041601181030273,-0.06123960763216,-0.030840346589684]],[[-0.10834378004074,0.055311098694801,-0.050449836999178],[-0.10725904256105,0.069723553955555,-0.045689225196838],[-0.13438642024994,0.07400107383728,0.048141703009605]],[[0.043931495398283,0.085804291069508,-0.082225129008293],[-0.061466004699469,-0.098751299083233,-0.06776038557291],[-0.039248883724213,-0.00021201469644438,0.036278251558542]],[[-0.2069977670908,-0.14272819459438,-0.057595703750849],[-0.061201579868793,-0.1970354616642,-0.025841573253274],[-0.042857754975557,-0.0090826768428087,-0.094377554953098]],[[0.034078143537045,-0.14312605559826,-0.051232386380434],[-0.017119240015745,-0.10030816495419,-0.044826701283455],[-0.16137117147446,-0.14627556502819,-0.14541463553905]],[[-0.088970601558685,0.072409071028233,0.042103167623281],[-0.0086612245067954,-0.016832903027534,-0.025220558047295],[-0.014845667406917,0.025733800604939,0.048309002071619]],[[-0.20509365200996,-0.014241288416088,-0.083369769155979],[0.096763268113136,0.049544610083103,-0.012377920560539],[0.046408712863922,-0.12014619261026,-0.04903919249773]],[[-0.055401343852282,0.074312038719654,-0.030290361493826],[-0.01306370459497,-0.065620727837086,-0.058499954640865],[-0.16446100175381,-0.20034903287888,0.05868611112237]],[[0.041435856372118,0.082235775887966,-0.021223358809948],[0.0093311024829745,-0.016573563218117,0.062040653079748],[0.052956379950047,0.026890153065324,0.10303068906069]],[[-0.028163688257337,-0.029598202556372,-0.063136458396912],[0.013663919642568,0.053629327565432,-0.11479742079973],[0.051488701254129,0.075348272919655,0.062616504728794]],[[-0.014127686619759,0.033523961901665,0.17687883973122],[0.091908060014248,0.065666735172272,0.044224850833416],[0.078389629721642,0.028925698250532,0.086157098412514]],[[0.044408813118935,-0.043650224804878,-0.040174271911383],[-0.054039768874645,-0.020924337208271,-0.056474722921848],[-0.016207661479712,0.0014525626320392,0.024188257753849]],[[-0.31389302015305,-0.0021588965319097,-0.014605139382184],[-0.013048018328846,0.072138927876949,-0.013483486138284],[-0.13884508609772,0.077479027211666,0.1395507901907]],[[0.10253503918648,0.04382698237896,0.12020277231932],[-0.068998038768768,0.058177597820759,-0.014157117344439],[-0.012953227385879,0.092003978788853,0.1560320109129]],[[0.087161250412464,0.096913352608681,0.20521734654903],[0.092833548784256,0.069916218519211,-0.012707490473986],[0.13143713772297,0.087693430483341,-0.017552806064487]],[[-0.083073154091835,-0.1296584457159,0.01137987524271],[-0.11051168292761,-0.15708240866661,-0.088054828345776],[-0.0380764529109,-0.045403402298689,-0.066218167543411]],[[0.032109271734953,0.036391258239746,0.0058871591463685],[-0.046272099018097,-0.048546280711889,-0.017015643417835],[0.038944624364376,0.0019781440496445,0.068802326917648]],[[-0.12948720157146,0.013298839330673,-0.0050206505693495],[-0.064300335943699,-0.077638313174248,-0.081611327826977],[0.057743400335312,0.0070189177058637,-0.028299761936069]],[[-0.13798487186432,-0.024997863918543,0.062621742486954],[0.033556222915649,0.080161966383457,0.049561854451895],[-0.014793183654547,-0.08212286233902,-0.0004278865235392]],[[-0.016338502988219,0.021563932299614,0.061526853591204],[0.037426766008139,0.17656840384007,0.074907407164574],[0.060707286000252,0.11091773211956,0.037596225738525]],[[-0.035723753273487,-0.029902873560786,0.069930166006088],[-0.1445749104023,-0.062044773250818,-0.071220591664314],[-0.022468250244856,-0.01146811619401,-0.015386578626931]],[[0.053766299039125,0.10391319543123,0.0030908358749002],[0.013452098704875,0.00054177676793188,-0.037942547351122],[0.068172559142113,0.14306956529617,-0.07084946334362]],[[-0.0034666999708861,-0.020305354148149,-0.11183097213507],[0.068183362483978,0.10665026307106,-0.044837713241577],[0.093455918133259,0.015452449209988,0.0050598802044988]],[[0.069544836878777,-0.024627462029457,-0.0035535043571144],[0.081511363387108,-0.099589429795742,-0.056570529937744],[0.10128481686115,0.011295075528324,0.020419631153345]],[[0.019735924899578,0.076045580208302,-0.012237723916769],[-0.11464235186577,0.018740847706795,-0.040437560528517],[0.031254176050425,0.08136197924614,0.090851858258247]],[[0.027283411473036,-0.11690854281187,-0.1487188488245],[0.012948986142874,0.050619121640921,-0.047731816768646],[-0.10505396127701,-0.078310407698154,0.045553006231785]],[[0.086793020367622,0.067958913743496,0.19480417668819],[-0.11674369126558,-0.026972306892276,-0.054855510592461],[0.03974213078618,-0.25530412793159,0.051491111516953]],[[-0.093089818954468,-0.18231208622456,-0.057939179241657],[0.034047815948725,-0.016156377270818,0.011641588062048],[0.031036768108606,-0.066954128444195,-0.014017014764249]],[[0.02073385566473,0.059335555881262,-0.032792285084724],[-0.097821362316608,0.17797473073006,0.0049852700904012],[-0.11109727621078,-0.080531232059002,-0.04623444005847]],[[-0.020843086764216,0.028938151896,0.0071451021358371],[0.038187630474567,-0.048200890421867,0.035421434789896],[-0.035629440099001,-0.043437927961349,-0.12182354927063]],[[-0.073293462395668,-0.15476486086845,0.0076030665077269],[-0.022406969219446,-0.047315742820501,-0.0015785901341587],[0.14463995397091,0.021391652524471,-0.064725652337074]],[[0.034439120441675,0.11688078939915,0.028194578364491],[-0.081470586359501,0.061265327036381,-0.017697827890515],[-0.01687783934176,-0.10492612421513,0.027945531532168]],[[-0.11818089336157,0.017477076500654,-0.0124800093472],[-0.016269225627184,-0.044586207717657,-0.022408530116081],[-0.0029566315934062,0.01168960891664,-0.077435553073883]],[[-0.0074469717219472,-0.01765382476151,0.026700796559453],[0.091488376259804,0.11962289363146,0.040678758174181],[-0.092972055077553,0.055184625089169,0.051622994244099]],[[-0.017554469406605,-0.048622626811266,0.072979733347893],[-0.050569247454405,-0.030911384150386,-0.10127830505371],[0.054448764771223,-0.029537715017796,0.0204584505409]],[[0.032070752233267,-0.10382194072008,0.091159798204899],[-0.083784446120262,0.080231495201588,-0.042107578366995],[0.082196116447449,0.13601398468018,0.0225470662117]],[[-0.043838605284691,0.0044296253472567,-0.031056324020028],[-0.0035345379728824,-0.050691343843937,0.20022539794445],[-0.058654021471739,0.02037282474339,0.041960548609495]],[[-0.013461392372847,0.043288938701153,-0.054877679795027],[-0.059871044009924,0.064314097166061,0.19488443434238],[-0.0014899651287124,0.031277619302273,0.0071205776184797]],[[-0.046590331941843,0.0027514065150172,0.058003012090921],[0.06738518178463,0.14158102869987,-0.014723739586771],[-0.0094459280371666,-0.11660632491112,-0.0090711796656251]],[[0.02349728345871,-0.16817846894264,0.11432422697544],[0.10377143323421,0.067029967904091,-0.029086595401168],[0.091327324509621,0.060708396136761,0.027412751689553]],[[-0.12530505657196,0.030223149806261,-0.1126429438591],[-0.049719244241714,-0.20514497160912,0.077942579984665],[-0.084212526679039,-0.13299365341663,0.046588070690632]],[[0.03632539883256,-0.0080576473847032,-0.0025768843479455],[-0.11749593913555,0.0029070782475173,0.055292569100857],[-0.12126640230417,0.040543507784605,-0.14028878509998]],[[0.010776546783745,-0.045550659298897,0.14816322922707],[0.00056085817050189,0.081674516201019,-0.062080305069685],[0.019541809335351,-0.001135362079367,0.014536871574819]],[[0.0070829004980624,-0.014140064828098,-0.024926939979196],[-0.080103009939194,-0.024666827172041,-0.10823884606361],[0.050892807543278,-0.06236170977354,0.073422230780125]],[[-0.047706063836813,0.08710702508688,0.01249354146421],[0.062816955149174,0.10988263040781,-0.052973654121161],[0.073355816304684,0.00011036629439332,0.089837998151779]],[[0.10368571430445,0.11348389834166,0.073101535439491],[0.090937063097954,-0.024303112179041,0.22762723267078],[0.098608076572418,0.081221356987953,0.03948886692524]],[[-0.055369421839714,-0.057660758495331,0.050366129726171],[0.018986718729138,0.0774846971035,0.060221914201975],[-0.023103706538677,-0.077290520071983,0.055246122181416]],[[0.013402829878032,0.025373063981533,0.0050865653902292],[0.048000510782003,-0.10050282627344,0.056328747421503],[0.095331788063049,-0.013808955438435,0.061367493122816]],[[0.19649378955364,0.012692546471953,-0.07903678715229],[-0.061888828873634,-0.01760177873075,0.013657535426319],[0.053015846759081,0.061417732387781,-0.026157224550843]],[[-0.030724607408047,-0.0035380492918193,0.072511091828346],[-0.052662171423435,-0.0030959923751652,-0.075199820101261],[-0.038586713373661,-0.092449687421322,0.0072973049245775]],[[0.059403195977211,0.042271144688129,-0.11572872847319],[-0.092174500226974,0.021632544696331,0.054681781679392],[-0.17934380471706,-0.099458277225494,-0.11002061516047]],[[0.079633958637714,-0.083505861461163,0.021851452067494],[0.051376096904278,-0.056846026331186,-0.073402613401413],[-0.035361431539059,0.11360840499401,0.039381068199873]],[[-0.027412809431553,0.069115966558456,-0.048624008893967],[-0.1034654006362,-0.048170279711485,-0.07845713943243],[0.11100166290998,-0.044215351343155,0.03058448061347]],[[0.047908410429955,-0.14391505718231,-0.031413521617651],[0.010467659682035,-0.11202211678028,-0.023990973830223],[-0.21872621774673,0.053696699440479,0.091918013989925]],[[0.0014828511048108,0.052145998924971,0.048387482762337],[-0.088210485875607,0.086028471589088,-0.040749706327915],[-0.14649495482445,0.062419731169939,0.00093554880004376]],[[-0.098974525928497,-0.01238271035254,-0.023062171414495],[-0.16567778587341,-0.0189527887851,-0.011954759247601],[-0.087805092334747,0.0012839920818806,-0.010589191690087]],[[0.076044715940952,0.034248612821102,-0.0095715271309018],[0.0043414947576821,0.03236935287714,-0.07159873098135],[0.16542637348175,-0.012195786461234,0.11034476011992]],[[0.021796867251396,-0.03654570505023,0.14071422815323],[-0.015700336545706,0.083997420966625,-0.063300877809525],[-0.052744228392839,0.016204982995987,0.093898020684719]],[[-0.056472230702639,0.076023861765862,0.12065093964338],[-0.18684490025043,-0.11142323166132,-0.028534028679132],[-0.085140913724899,-0.041793573647738,-0.019616093486547]],[[0.12679371237755,0.17605976760387,0.050923369824886],[0.025643162429333,0.11843717843294,-0.020901912823319],[-0.068600609898567,-0.13181911408901,-0.11527507007122]],[[0.037544380873442,-0.1078499853611,0.20204699039459],[-0.06015295535326,0.027237873524427,-0.0077119674533606],[0.17101526260376,0.21015229821205,-0.03430538251996]],[[-0.1123501509428,-0.094794824719429,-0.056865844875574],[0.027795853093266,0.07202760130167,-0.065565332770348],[-0.034754015505314,0.075492613017559,0.018360020592809]],[[-0.057357624173164,-0.058132652193308,0.082179486751556],[-0.11859644204378,0.022621750831604,-0.052597064524889],[0.019251465797424,0.029798606410623,-0.047016125172377]],[[0.010255046188831,-0.028649769723415,0.069869972765446],[-0.055265184491873,0.17158658802509,0.035494562238455],[0.082582235336304,-0.10979473590851,0.018738327547908]],[[0.094426095485687,-0.025597518309951,0.056935735046864],[-0.047139570116997,0.043845310807228,0.022572366520762],[0.036696128547192,0.11463694274426,0.030419336631894]],[[-0.056865096092224,-0.040843565016985,-0.038464609533548],[-0.047191936522722,0.010312086902559,-0.032032202929258],[-0.018675787374377,0.04247722029686,-0.0018987545045093]],[[-0.063449062407017,-0.027353143319488,-0.011464359238744],[0.1192465275526,0.00076026882743463,0.0014619998401031],[0.038584124296904,-0.074074678122997,-0.16377371549606]],[[0.025290172547102,0.1795253008604,-0.093046650290489],[0.11538206040859,0.0148223657161,0.033318269997835],[-0.054314233362675,0.023077622056007,-0.046318013221025]],[[0.041243135929108,0.027885647490621,-0.045190174132586],[0.072049453854561,-0.018783876672387,-0.055798906832933],[0.040885914117098,-0.020418390631676,0.032864570617676]],[[-0.23287999629974,-0.064807303249836,0.08613171428442],[0.049958880990744,0.074055753648281,-0.092306979000568],[-0.0014519090764225,-0.09743233025074,0.014822351746261]],[[0.22539430856705,0.034012190997601,-0.035097703337669],[-0.0086554670706391,-0.016257107257843,-0.090268157422543],[-0.089318580925465,-0.13706335425377,0.036178935319185]],[[0.019374631345272,-0.022255398333073,-0.01634942740202],[0.077343784272671,0.0056170751340687,0.048344574868679],[-0.06183310225606,-0.11275923252106,-0.017626354470849]],[[0.039554875344038,-0.055597733706236,-0.041233036667109],[0.15848940610886,0.0059129875153303,-0.037921503186226],[-0.032686583697796,0.10776910185814,-0.033732324838638]],[[-0.018393198028207,-0.17088836431503,-0.020091902464628],[-0.034815967082977,0.024978443980217,0.081190094351768],[0.12776760756969,0.0039551160298288,0.020863145589828]],[[0.15199294686317,-0.044184379279613,0.025591503828764],[-0.043822336941957,0.010079239495099,-0.012195573188365],[0.052676878869534,0.066407635807991,0.074154630303383]],[[-0.046587705612183,-0.016471762210131,0.10841806232929],[-0.10988546907902,0.087600454688072,0.12996728718281],[-0.15293218195438,0.20051491260529,0.061350107192993]],[[0.014225627295673,0.048125974833965,0.012834120541811],[-0.10949136316776,-0.054279569536448,-0.098684139549732],[0.10051179677248,-0.00099671341013163,0.06918115913868]],[[-0.011000127531588,-0.0080781728029251,-0.033677700906992],[-0.025334930047393,0.012652401812375,0.023482466116548],[-0.11811676621437,0.016526693478227,0.11668960005045]],[[-0.048346240073442,0.0088479230180383,0.018664704635739],[0.0041515063494444,-0.19442969560623,0.063685923814774],[0.08720014244318,-0.00079834670759737,0.0074781663715839]],[[0.014102566987276,0.0057738069444895,-0.042456034570932],[-0.01073604542762,0.015415932051837,0.016310708597302],[0.0016693727811798,0.0083798235282302,-0.12500803172588]],[[-0.27954405546188,-0.02382605150342,0.016805766150355],[-0.056388482451439,0.0087053868919611,-0.066763363778591],[0.049148499965668,0.094102784991264,-0.035073071718216]],[[-0.038610406219959,0.16207896173,0.17871959507465],[-0.16950923204422,-0.014969388954341,-0.035641841590405],[0.052800618112087,0.040808957070112,0.023536520078778]],[[-0.10560454428196,0.053688861429691,-0.021318767219782],[-0.089090436697006,-0.074450694024563,0.00097453128546476],[0.026070572435856,0.14724868535995,0.026442648842931]],[[0.18613117933273,-0.16879135370255,-0.15416485071182],[0.074731990695,-0.11626625061035,-0.074204251170158],[0.062038011848927,-0.014693386852741,0.086151018738747]],[[-0.058238074183464,-0.18490661680698,-0.073169775307178],[0.0003326658916194,-0.14207947254181,-0.11759505420923],[-0.054921582341194,-0.046487554907799,-0.077363289892673]],[[-0.026176076382399,-0.16065001487732,0.098134346306324],[-0.045602567493916,-0.0044714780524373,0.045237388461828],[-0.017329752445221,0.012446845881641,-0.1925627887249]],[[-0.15727093815804,-0.012870303355157,-0.042670357972383],[-0.12586277723312,-0.12369082123041,0.098054930567741],[-0.037405796349049,-0.070316977798939,0.056815885007381]],[[0.079946398735046,-0.21565873920918,0.044582761824131],[0.084370911121368,-0.050083987414837,-0.061427485197783],[0.022768447175622,-0.11550047248602,0.049542963504791]],[[0.027000309899449,0.044341493397951,0.049336731433868],[-0.043883390724659,0.0025684428401291,-0.024249523878098],[0.0758261308074,0.022064253687859,-0.038631774485111]],[[0.0215436629951,-0.039306830614805,-0.043198738247156],[-0.11760696023703,-0.0011194782564417,0.02624436467886],[0.0089505761861801,-0.081026650965214,0.057532440871]],[[-0.019818598404527,0.019022675231099,-0.28264260292053],[0.087305404245853,-0.095235772430897,0.081632897257805],[0.095259100198746,0.10385975986719,0.060608375817537]],[[-0.050632860511541,-0.097828187048435,-0.10116547346115],[-0.032823923975229,-0.011485615745187,0.045377045869827],[0.07405760884285,-0.080229394137859,0.030237769708037]],[[0.10779358446598,0.040342170745134,-0.013574125245214],[-0.044372655451298,0.075257919728756,0.063862562179565],[-0.10617889463902,-0.055987473577261,0.0020852305460721]],[[-0.025245094671845,-0.035850096493959,-0.15756157040596],[0.13679584860802,0.052405908703804,-0.080517917871475],[0.12020403891802,0.096266515552998,-0.015027660876513]],[[0.067763023078442,0.043990351259708,-0.039757009595633],[0.047347214072943,-0.05050752684474,0.019795959815383],[-0.058755528181791,-0.1010203063488,-0.084836594760418]],[[0.057775434106588,-0.027646044269204,0.020605290308595],[0.090605467557907,-0.06526954472065,-0.067866414785385],[0.04033736884594,0.12138126045465,-0.12403708696365]]],[[[0.0357551202178,0.013867367058992,0.031271036714315],[0.029660226777196,-0.033114973455667,0.011909996159375],[0.031821668148041,-0.051847618073225,0.03828701376915]],[[0.023588441312313,0.01735800690949,0.0088247796520591],[-0.028789328411222,0.032578133046627,0.0076551055535674],[-0.0088169500231743,0.070944063365459,-0.082203611731529]],[[0.024257738143206,0.0049222698435187,0.049193691462278],[0.016094515100121,0.016288800165057,0.0079361302778125],[0.010382959619164,0.03203671425581,-0.021894343197346]],[[0.019422652199864,0.089142389595509,0.053700320422649],[-0.019011141732335,0.047813396900892,-0.036985658109188],[0.03465973585844,0.0025675108190626,-0.0066218017600477]],[[-0.033942066133022,-0.0040817749686539,0.020838614553213],[0.034263856709003,0.046255242079496,0.021599158644676],[-0.010041818954051,-0.0058630425482988,-0.0039574345573783]],[[0.019002243876457,-0.028548924252391,-0.03134923055768],[0.0268211401999,-0.014221125282347,0.013147309422493],[0.0042146085761487,0.017350411042571,0.017006736248732]],[[0.018771922215819,0.0055390768684447,0.0026137928944081],[-0.0012945139314979,-0.018965600058436,0.032646499574184],[0.0012761846883222,-0.014993612654507,0.0092780413106084]],[[0.020719977095723,0.026568820700049,-0.065912358462811],[0.053101651370525,0.031381264328957,0.0012462574522942],[0.018057256937027,5.4725096561015e-05,-0.0068279900588095]],[[-0.057879984378815,-0.019020656123757,0.00309116858989],[-0.047765016555786,0.038567751646042,0.0072927391156554],[-0.0072499690577388,0.003213174873963,0.00091011164477095]],[[-0.035045456141233,0.029187213629484,0.025415284559131],[0.024810925126076,-0.028506426140666,0.054266627877951],[-0.018186200410128,0.036482624709606,-0.018650352954865]],[[0.02936253324151,0.0028220654930919,0.048376511782408],[-0.00076527788769454,-0.0042728441767395,-0.064143441617489],[0.0084442710503936,-0.0067352810874581,0.037751477211714]],[[0.0075422367081046,-0.031533010303974,-0.027741778641939],[-0.039827197790146,0.069069050252438,-0.011113313026726],[0.021262351423502,-0.023690780624747,-0.018556045368314]],[[0.054196231067181,0.039177808910608,0.070360369980335],[0.077169395983219,0.055820547044277,0.039201535284519],[0.037223313003778,0.04351194947958,0.017166927456856]],[[0.0071433051489294,-0.014061860740185,-0.0016145966947079],[-0.00904874317348,-0.028912432491779,-0.0028948436956853],[0.05798290297389,-0.054195396602154,0.049122653901577]],[[-0.042082838714123,0.033742297440767,-0.032485127449036],[0.00025223236298189,0.0053715631365776,0.04838714748621],[-0.021934971213341,-0.00024474790552631,0.0097198756411672]],[[-0.003838250413537,0.014240191318095,-0.02537988498807],[0.024942090734839,0.060895182192326,-0.019540403038263],[-0.049903966486454,0.026678770780563,0.050680946558714]],[[-0.018328327685595,0.016957018524408,-0.0040478217415512],[0.041784275323153,0.017787765711546,-0.042111467570066],[-0.023405507206917,0.035761475563049,0.016813077032566]],[[0.0052376911044121,-0.031835090368986,0.0078138764947653],[0.0064126555807889,0.0053305081091821,-0.075077056884766],[0.011227761395276,-0.026209244504571,-0.023355666548014]],[[0.0059612267650664,0.024439997971058,0.01718576066196],[0.0063076983205974,0.021603586152196,-0.057555593550205],[0.029291203245521,0.059417098760605,0.044512990862131]],[[0.062009155750275,0.01281238719821,0.022923808544874],[0.0038624603766948,-0.073199644684792,-0.0014454680494964],[0.052350983023643,0.0012656875187531,0.021966122090816]],[[-0.019765904173255,-0.084849081933498,0.029737072065473],[0.018498573452234,-0.062413088977337,0.013571562245488],[-0.02926180139184,-0.023049090057611,-0.061333376914263]],[[0.022047363221645,0.018998757004738,0.050603788346052],[0.034377042204142,0.059400856494904,0.045776728540659],[0.012946397066116,-0.0034640314988792,0.039072785526514]],[[0.027001542970538,0.046813275665045,-0.053166560828686],[0.0086827771738172,-0.010997414588928,0.048114068806171],[0.035363934934139,-0.054183658212423,-0.0031580496579409]],[[0.01526817958802,-0.012315522879362,0.053239192813635],[-0.00077229947783053,0.0021190936677158,0.03736624494195],[-0.0033302207011729,-0.048410013318062,0.014640424400568]],[[0.032974522560835,-0.0052997292950749,0.010578280314803],[0.025074126198888,0.0027795943897218,-0.0010330639779568],[0.011802948080003,-0.010085094720125,-0.0020880654919893]],[[-0.0251236371696,-0.013965823687613,0.0052245073020458],[-0.012693866156042,0.0089034335687757,0.019527304917574],[-0.011242237873375,0.003768460592255,0.0046859052963555]],[[0.011365824379027,0.041184309870005,-0.0062184249982238],[-0.018847607076168,0.085482016205788,0.023567073047161],[-0.018330359831452,0.040593840181828,0.029499622061849]],[[0.039832953363657,-0.015336187556386,0.036023367196321],[-0.053872417658567,-0.0011508094612509,-0.0072649549692869],[0.048144143074751,0.046683076769114,-0.02832836844027]],[[-0.02453632466495,0.013513255864382,0.035476543009281],[0.028695644810796,-0.027005296200514,-0.039609801024199],[0.013229114003479,-0.10726363956928,-0.019812958315015]],[[0.059208896011114,0.053828429430723,-0.027581114321947],[0.028024280443788,-0.056435201317072,0.005378027446568],[-0.032647870481014,0.10387358814478,0.015004918910563]],[[0.05075079202652,0.0093654925003648,-0.00072299590101466],[0.002085066633299,-0.016920991241932,0.034788191318512],[-0.037983018904924,0.027519749477506,-0.014330770820379]],[[-0.055648248642683,0.04698832705617,0.0016931534046307],[0.031302943825722,-0.021642010658979,0.049021754413843],[0.025593068450689,-0.036856912076473,0.03348645940423]],[[0.038631465286016,0.02350383810699,0.0089676575735211],[0.0038826856762171,0.12850488722324,-0.0058850166387856],[0.059000756591558,-0.067974746227264,0.0029555931687355]],[[-0.0082770418375731,0.037038207054138,-0.00029890213045292],[0.045731324702501,0.0092362556606531,0.038098979741335],[-0.015844823792577,-0.037603568285704,0.06098647788167]],[[-0.017830869182944,-0.028825480490923,-0.012294412590563],[0.01312265265733,-0.069288685917854,-0.028217781335115],[-0.051417570561171,-0.0209691375494,-0.010868838988245]],[[-0.028249334543943,-0.037285074591637,-0.018490908667445],[-0.011897165328264,-0.011413229629397,-0.020644210278988],[0.00084100686945021,0.023124441504478,-0.032120112329721]],[[0.014520835131407,0.017605874687433,0.01744850166142],[-0.0125711876899,0.0050088441930711,0.0024734055623412],[0.024203257635236,0.015338775701821,-0.018951861187816]],[[-0.01656174659729,0.023210888728499,0.0094846403226256],[0.048652447760105,0.014546424150467,0.029229730367661],[-0.03134211152792,-0.020346362143755,0.044384226202965]],[[0.0013800887390971,-0.022063508629799,-0.034210558980703],[-0.011922313831747,0.032655689865351,-0.07661210745573],[-0.055699143558741,-0.0013226346345618,-0.048718679696321]],[[-0.01455944776535,-0.030085382983088,0.0025546622928232],[0.024013390764594,0.050871524959803,-0.0034920282196254],[0.058751430362463,0.08022353798151,0.037005700170994]],[[0.024990107864141,-0.0011524998117238,0.031367473304272],[0.01832353323698,-0.0078783696517348,0.019355408847332],[0.026860440149903,0.035010252147913,0.0091459443792701]],[[0.056079290807247,0.0013896172167733,0.053358927369118],[0.018574010580778,0.020397141575813,0.034652393311262],[-0.0014842712553218,0.048261407762766,-0.038166347891092]],[[0.058623883873224,0.011612431146204,-0.0095725310966372],[0.015440125018358,0.017222987487912,0.0050362395122647],[-0.0041581219993532,0.082741461694241,0.018577316775918]],[[-0.065715126693249,0.030596017837524,-0.017299624159932],[0.0016621364047751,-0.0018372642807662,0.004898183979094],[-0.040167387574911,-0.020684756338596,0.018975520506501]],[[0.036338165402412,0.0070289950817823,0.048129949718714],[0.028860326856375,0.037924528121948,0.0078383525833488],[-0.01629713177681,0.094828173518181,0.033614076673985]],[[-0.0095649417489767,-0.02296999655664,0.041616797447205],[0.024502398446202,0.013455646112561,-0.049934413284063],[0.043152615427971,0.12641774117947,-0.006994211114943]],[[0.0034569911658764,0.0060457275249064,0.0077150999568403],[-0.024810139089823,-0.0006305740098469,0.0010525810066611],[0.019615050405264,0.041131842881441,-0.0013399235904217]],[[-0.051939453929663,-0.0072819516062737,-0.026572566479445],[0.0051707951352,0.0060821264050901,-0.063899777829647],[-0.00073564675403759,0.021527748554945,0.0035491820890456]],[[-0.012021289207041,0.034321673214436,-0.066412456333637],[-0.039238408207893,0.0018225978128612,0.0061089117079973],[0.015001298859715,-0.031248599290848,0.0028876443393528]],[[0.025584526360035,0.0042258389294147,0.028856333345175],[0.011242807842791,0.0071404883638024,0.031189922243357],[-0.014703438617289,0.036649785935879,-0.0085648018866777]],[[0.043833330273628,0.068619765341282,-0.0079524153843522],[0.036253225058317,-0.0030089146457613,-0.030796019360423],[-0.034256167709827,-0.00065566203556955,0.013463808223605]],[[0.064147062599659,0.018702631816268,0.020286375656724],[-0.018791031092405,0.060148071497679,0.0071776164695621],[-0.031607680022717,0.022310702130198,8.8100441644201e-06]],[[-0.015750471502542,0.016027988865972,-0.034914936870337],[-0.10354278981686,-0.072287030518055,0.044495042413473],[0.019158182665706,-0.037640307098627,-0.013846319168806]],[[-0.017521513625979,-0.064598120748997,-0.0077909412793815],[-0.0034754553344101,-0.03120026178658,0.0093951243907213],[0.053893115371466,0.010407309047878,0.0082930028438568]],[[-0.0027906231116503,0.016365136951208,0.011899849399924],[0.048274789005518,-0.012322878465056,-0.0042328257113695],[0.016989808529615,-0.0098648853600025,-0.049670904874802]],[[0.018993904814124,0.068357899785042,-0.024138571694493],[-0.039711304008961,-0.026156915351748,-0.02141553722322],[0.032036904245615,-0.015264549292624,-0.046425797045231]],[[0.011717044748366,0.047617297619581,0.0031579944770783],[0.023696897551417,0.078562751412392,0.045365888625383],[0.043058138340712,0.036524694412947,0.069518446922302]],[[0.025658996775746,0.065847158432007,0.023213682696223],[0.040354527533054,0.01987249776721,0.0099018746986985],[0.0047301598824561,-0.031490914523602,-0.052070360630751]],[[0.04738025739789,0.034668307751417,0.066634200513363],[0.015480584464967,-0.021723760291934,0.021966058760881],[-0.024727484211326,0.00061668391572312,0.054515089839697]],[[-0.015781052410603,0.030409216880798,0.063381478190422],[0.013739452697337,-0.029976150020957,0.0088606895878911],[-0.041132930666208,-0.021674184128642,0.023316232487559]],[[0.0547752417624,-0.011942448094487,0.016142837703228],[0.0091620683670044,0.040366761386395,-0.00091187725774944],[0.0078875599429011,0.0020675994455814,0.019955037161708]],[[0.01311968266964,0.038924656808376,0.020323803648353],[-0.0024629128165543,0.02872278355062,0.040022876113653],[0.012838079594076,-0.061609569936991,-0.055252052843571]],[[0.050600755959749,0.01571723818779,0.021140215918422],[-0.0032750440295786,-0.001408475684002,0.011969818733633],[0.01611939445138,-0.034972757101059,-0.025394417345524]],[[0.051583644002676,0.051086332648993,0.074096709489822],[0.012362137436867,0.04337901994586,0.0079565532505512],[-0.031867984682322,0.028953777626157,-0.024560704827309]],[[-0.015707433223724,-0.054500479251146,-0.00076581293251365],[-0.052545513957739,-0.0088731599971652,0.016909198835492],[-0.045700937509537,-0.030463585630059,-0.051851037889719]],[[-0.03817094117403,0.021244561299682,0.0090774716809392],[-0.001582553726621,-0.037664711475372,0.0027560531161726],[-0.043070949614048,0.067774571478367,0.010692899115384]],[[-0.040554076433182,0.060085918754339,-0.034578330814838],[0.016323354095221,-0.04186025634408,0.046711206436157],[0.022786805406213,-0.01009972114116,-0.010465729050338]],[[-0.00036404692218639,0.016625566408038,-0.024517755955458],[0.020156675949693,0.012334880419075,0.041002698242664],[-0.034269958734512,0.019701460376382,-0.010904596187174]],[[0.045306667685509,0.092178143560886,0.03254484385252],[0.052971366792917,0.031581062823534,0.084425464272499],[-0.027639713138342,0.030960474163294,-0.049024242907763]],[[-0.0209034178406,0.045515675097704,0.010768670588732],[0.0082833915948868,0.057349372655153,0.062083106487989],[-0.0034151580184698,0.027115041390061,0.0072579584084451]],[[0.035863369703293,0.01526852697134,0.010626497678459],[0.013690648600459,0.024221369996667,0.12738375365734],[0.011189195327461,0.070853032171726,0.018978932872415]],[[0.015694931149483,-0.023611672222614,0.0049954629503191],[0.02093661762774,-0.012539434246719,0.0018367661396042],[0.018200194463134,-0.06439957767725,-0.011647690087557]],[[-0.050138041377068,-0.010678868740797,0.001965444535017],[0.024269329383969,0.017611719667912,0.070023633539677],[-0.0045848512090743,0.00090711028315127,-0.010829068720341]],[[0.022840589284897,-0.014603963121772,0.020442191511393],[0.045183058828115,-0.005979438778013,0.034184094518423],[-0.01095093972981,0.076838158071041,0.010743139311671]],[[0.029329469427466,0.046743523329496,0.0039762421511114],[-0.020572114735842,-0.0021914904937148,-0.0032014253083616],[0.0099645927548409,0.0083496887236834,0.015802280977368]],[[-0.013833285309374,0.034551031887531,0.035053856670856],[0.022977212443948,-0.0084506934508681,-0.048488762229681],[-0.033931244164705,0.021627524867654,-0.028435153886676]],[[0.0075897928327322,0.0037972368299961,0.0077253766357899],[-0.013805797323585,-0.0070368591696024,-0.0067062065936625],[0.053793299943209,-0.023037893697619,0.016060676425695]],[[0.007185828872025,-0.06457445025444,-0.059105299413204],[0.066501744091511,0.016832197085023,0.019639333710074],[-0.070003725588322,-0.0062367748469114,0.0077695176005363]],[[-0.020113650709391,-0.020001532509923,0.026398714631796],[0.039105977863073,-0.078597329556942,-0.044438410550356],[0.0063281338661909,-0.029938075691462,-0.078186497092247]],[[-0.020695883780718,0.010648095048964,-0.04328877478838],[0.0050327405333519,0.011380659416318,-0.011987471953034],[0.0064897583797574,-0.042948111891747,-0.017761258408427]],[[-0.038782153278589,-0.037854094058275,-0.0088260378688574],[0.010774682275951,0.020688632503152,-0.057064302265644],[-0.0054490314796567,0.020782761275768,0.034402247518301]],[[0.011407112702727,0.030134424567223,0.020031681284308],[-0.0046190251596272,0.05521933734417,0.047042153775692],[0.039653912186623,0.0041565289720893,0.051909442991018]],[[0.028012081980705,0.048437245190144,-0.016759676858783],[0.013860456645489,-0.062083162367344,-0.015219489112496],[0.011940382421017,-0.015641834586859,0.050013542175293]],[[0.044351346790791,-0.044343844056129,-0.03602085635066],[-0.047802951186895,-0.017455549910665,0.023888647556305],[0.048030059784651,0.017015216872096,-0.029327612370253]],[[0.011221850290895,0.036506470292807,-0.022636003792286],[0.062153983861208,-0.014506707899272,0.050595160573721],[0.055648788809776,-0.052212242037058,0.020740298554301]],[[0.0081598581746221,-0.028184469789267,-0.030019061639905],[-0.068482778966427,-0.026984238997102,0.0070674228481948],[-0.026489943265915,-0.032167449593544,0.04737613722682]],[[-0.014414089731872,0.044403817504644,0.0031627845019102],[-0.012623062357306,0.092168398201466,-0.0057395994663239],[-0.0047773253172636,0.019419088959694,0.028723454102874]],[[0.0037378000561148,0.0017490901518613,0.01422124914825],[-0.04127860814333,0.0049765384756029,-0.039633471518755],[0.019521180540323,0.012891709804535,0.02900062687695]],[[-0.003842635313049,-0.0022698831744492,0.01147557515651],[-0.023156678304076,0.0019570759031922,-0.040770567953587],[0.057897984981537,-0.073582969605923,-0.030650077387691]],[[0.010998201556504,-0.029506595805287,0.026045758277178],[-0.0023968641180545,0.0092592360451818,0.016788169741631],[0.030263893306255,0.044161044061184,0.005779717117548]],[[0.024629596620798,0.015672842040658,0.0084129245951772],[0.019939070567489,-0.001599389128387,0.016454430297017],[0.0038438991177827,0.057488549500704,0.018765138462186]],[[-0.039509497582912,0.089258924126625,-0.0088007496669888],[-0.019784385338426,-0.0047054891474545,0.034952558577061],[0.0067315087653697,0.038350611925125,-0.024594407528639]],[[0.029775431379676,-0.0071522416546941,-0.021737845614552],[0.015253298915923,0.032681293785572,0.028881441801786],[-0.005439069122076,0.011619263328612,0.026917353272438]],[[0.00028472469421104,-0.003638049820438,0.0094447797164321],[0.025955285876989,0.026612998917699,0.004871531855315],[0.0057642553001642,0.049542251974344,-0.00077217788202688]],[[0.0028653591871262,0.033520188182592,-0.013475613668561],[-0.042348224669695,-0.035708922892809,0.00016871298430488],[0.00032139799441211,-0.066576018929482,-0.050581194460392]],[[0.015219721011817,-0.037669479846954,-0.055196519941092],[0.029692895710468,0.02068617194891,0.023215726017952],[-0.0051956232637167,0.072259835898876,0.013629777356982]],[[0.030008733272552,-0.016952933743596,0.026423346251249],[0.047474034130573,0.025083497166634,0.041359700262547],[-0.0087711680680513,0.021680446341634,0.017262205481529]],[[-0.021188028156757,-0.0069689429365098,0.10897734761238],[0.029421569779515,0.043646328151226,0.012949585914612],[0.012433080933988,-0.042687192559242,0.048067793250084]],[[-0.073472566902637,0.05062398687005,0.051084272563457],[0.055396623909473,-0.0090433889999986,-0.0038533674087375],[0.019832560792565,0.0075742043554783,0.026249032467604]],[[0.0051687574014068,0.030185403302312,-0.0094183012843132],[-0.028799347579479,0.035260256379843,0.0088988235220313],[-0.026827443391085,0.050501942634583,0.032444134354591]],[[-0.029501212760806,-0.015067332424223,-0.019268868491054],[-0.00073806924046949,-0.012378359213471,-0.022626858204603],[-0.0078676184639335,0.0018463531741872,-0.015084004029632]],[[0.061768785119057,0.01771754771471,-0.021079679951072],[-0.021610697731376,-0.035821788012981,-0.012049363926053],[-0.012015264481306,0.00167842337396,0.022137459367514]],[[0.035661172121763,-0.010008856654167,0.04024900123477],[0.025662509724498,0.00069148890906945,0.052285142242908],[0.0010904320515692,0.045541979372501,-0.01683309674263]],[[0.059414524585009,0.0078942570835352,-0.021470885723829],[-0.031420834362507,-0.031469471752644,-0.026115462183952],[-0.0048571480438113,0.014247566461563,0.01275029964745]],[[-0.015364711172879,-0.044361032545567,-0.02091309055686],[0.0082702273502946,-0.034917507320642,0.032654765993357],[-0.046345699578524,0.043884553015232,0.05564472079277]],[[0.0016640323447064,-0.056364174932241,-0.031226079910994],[0.042146317660809,0.023348672315478,-0.044678311794996],[-0.0028362795710564,0.037073317915201,0.021266460418701]],[[-0.0037748527247459,-0.022999214008451,-0.0062051550485194],[-0.053906816989183,0.024835653603077,-0.042974065989256],[0.037506628781557,-0.0013474650913849,-0.083645842969418]],[[0.029462052509189,-0.012462308630347,0.016380568966269],[0.028606530278921,-0.0062890704721212,0.0026514851488173],[-0.020089726895094,-0.029333226382732,0.044124633073807]],[[-0.027584901079535,0.027792261913419,-0.021393487229943],[0.053644672036171,0.0071107735857368,-0.02035347558558],[-0.054255984723568,0.022103244438767,-0.055244974792004]],[[-0.037177558988333,-0.01662895642221,0.0095341103151441],[0.092580921947956,-0.032177604734898,0.05067940428853],[-0.010485388338566,0.037947684526443,0.038962502032518]],[[-0.017704099416733,-0.033297128975391,0.015467599965632],[0.046641182154417,0.026695672422647,-0.02298541739583],[-0.025778187438846,0.044706933200359,-0.059722289443016]],[[-0.0055025699548423,-0.03406860306859,0.012770784087479],[-0.039074767380953,0.031771559268236,0.00022394898405764],[-0.064673885703087,-0.057924617081881,-0.0014087284216657]],[[-0.081872709095478,-0.070284932851791,0.023943040519953],[-0.025968201458454,-0.024061251431704,0.010174301452935],[0.016282269731164,-0.021245768293738,0.0038229173514992]],[[-0.0079691288992763,-0.037058904767036,-0.021447312086821],[-0.013718455098569,-0.041427623480558,-0.0016618727240711],[0.014540463685989,-0.03725615516305,-0.020930903032422]],[[0.013832900673151,-0.024463767185807,-0.021769834682345],[-0.015641340985894,-0.0094530815258622,-0.033611122518778],[0.026860283687711,0.029360797256231,-0.0028922010678798]],[[-0.0067089698277414,-0.0057484712451696,-0.031732257455587],[-0.041671521961689,-0.051545269787312,-0.034275021404028],[-0.053270939737558,-0.0047154133208096,-0.04017711058259]],[[0.0078594982624054,-0.032860212028027,0.048192013055086],[0.0080980695784092,-0.035801440477371,0.0072652567178011],[0.015636561438441,0.014774429611862,-0.022076839581132]],[[-0.029983786866069,0.029120001941919,-0.052177213132381],[0.040137074887753,-0.052222438156605,-0.038513980805874],[-0.024283656850457,0.039021033793688,0.031333897262812]],[[0.012610401958227,-0.048123098909855,-0.028646716848016],[-0.11221466958523,-0.058582097291946,-0.02868328243494],[-0.021527105942369,0.023230573162436,-0.015939824283123]],[[0.024242334067822,0.016474818810821,0.079258516430855],[-0.0031783247832209,0.10727684944868,0.014002955518663],[0.002600914100185,-0.045374289155006,0.031060202047229]],[[0.020947946235538,0.058272555470467,-0.005637118127197],[-0.0074588479474187,0.04454480111599,0.025880388915539],[0.0094810472801328,0.027659114450216,0.021849431097507]],[[-0.015354845672846,-0.0038480469956994,0.017818510532379],[-0.046698711812496,-0.0092450454831123,-0.009204039350152],[-0.0062902569770813,-0.037889435887337,-0.055348422378302]],[[-0.0057974080555141,0.010886312462389,0.029740359634161],[0.0083001907914877,0.010549210943282,0.044547319412231],[0.0020269248634577,-0.038185298442841,0.013879301957786]],[[-0.0056250691413879,0.04074689373374,0.023735905066133],[0.020266648381948,0.032443575561047,-0.056345257908106],[0.018148351460695,0.00072198640555143,0.024125140160322]],[[0.082081519067287,-0.022864839062095,-0.016833566129208],[0.038929302245378,0.022909039631486,-0.0032297358848155],[0.044868901371956,0.0084467167034745,0.018834348767996]],[[-0.054259326308966,-0.021797591820359,0.044677134603262],[-0.0068264864385128,0.042182110249996,0.060462724417448],[0.0010716086253524,0.035241648554802,-0.022138984873891]],[[-0.016290709376335,-0.0004996603820473,-0.011822700500488],[0.0031566717661917,-0.0085252579301596,0.0050718258135021],[0.0076821534894407,0.052042685449123,-0.018519517034292]],[[0.067074097692966,0.019212085753679,-0.046918660402298],[-0.056472599506378,0.040192171931267,-0.0015513392863795],[0.015801090747118,-0.006195024587214,-0.0039549963548779]]],[[[-0.038929253816605,-0.052192252129316,0.084806993603706],[0.017798878252506,0.045791305601597,-0.014548635110259],[0.015399404801428,0.022958474233747,-0.079656541347504]],[[-0.034858908504248,-0.016683395951986,-0.08885433524847],[-0.22670997679234,-0.084295734763145,0.011849668808281],[-0.15650829672813,-0.031697262078524,-0.033238686621189]],[[0.21605652570724,-0.015509072691202,-0.052278183400631],[-0.052576832473278,0.045883916318417,0.061680104583502],[-0.01332123298198,-0.0098009901121259,0.01459302380681]],[[0.11597016453743,0.069455496966839,0.076781511306763],[0.030193006619811,-0.020804286003113,0.017509197816253],[0.03291867300868,-0.034240923821926,0.027360079810023]],[[-0.081148289144039,0.027700742706656,0.062646195292473],[-0.17838083207607,-0.043861620128155,-0.012249492108822],[-0.007048605941236,-0.021675139665604,0.03650114685297]],[[0.046372845768929,0.080501958727837,0.19503350555897],[-0.0043575488962233,0.03314022347331,-0.012062919326127],[-0.033856716006994,-0.0080819521099329,-0.0077859223820269]],[[-0.078012026846409,-0.067429222166538,-0.015758497640491],[0.024720419198275,0.072044372558594,0.038156624883413],[0.11578543484211,0.0074126189574599,-0.03230918571353]],[[0.081404581665993,0.11983589828014,0.089802294969559],[0.042440947145224,0.023651542142034,0.063519217073917],[0.089356392621994,-0.016584448516369,0.040463492274284]],[[-0.092930935323238,-0.062062464654446,0.037539083510637],[0.072631753981113,-0.015388920903206,0.049225877970457],[-0.042402599006891,-0.038214296102524,0.03113866224885]],[[-0.041460048407316,0.087142400443554,-0.072076804935932],[0.032099284231663,0.026952078565955,0.096885196864605],[0.036822538822889,-0.034717716276646,-0.0059294081293046]],[[-0.018991800025105,0.05393011868,-0.0044885687530041],[0.029846034944057,0.035396549850702,-0.0020439713262022],[-0.06011438369751,0.04071044921875,0.03751527145505]],[[-0.059589572250843,0.045118067413568,0.097503192722797],[-0.084600113332272,-0.0028196095954627,-0.016231838613749],[-0.038247678428888,0.10152235627174,0.055105291306973]],[[-0.00062143831746653,0.043555155396461,-0.044924169778824],[-0.11074253171682,0.070586822926998,-0.0038918710779399],[-0.016297642141581,-0.04628562182188,-0.036089338362217]],[[0.026730226352811,0.073271691799164,-0.056640144437551],[-0.25108233094215,0.0026638463605195,0.050823535770178],[-0.039163887500763,0.053385365754366,-0.026612415909767]],[[0.038980066776276,0.079718351364136,-0.0074799144640565],[-0.017892429605126,-0.0066059594973922,0.0011393968015909],[-0.013185195624828,-0.026591960340738,0.042787823826075]],[[0.047378204762936,-0.044113334268332,0.074042640626431],[-0.12391027808189,0.00051317684119567,-0.14747260510921],[0.11870547384024,-0.086905546486378,-0.091466560959816]],[[-0.014369956217706,-0.045835185796022,0.060575496405363],[0.11431009322405,0.042366571724415,0.036842502653599],[-0.039121590554714,0.056062605232,0.015531572513282]],[[-0.074670307338238,-0.065853856503963,-0.08963431417942],[-0.17696741223335,0.15185309946537,0.039418362081051],[-0.075816959142685,0.031731370836496,0.050370454788208]],[[-0.025825804099441,-0.10294834524393,0.061793804168701],[-0.079310029745102,0.03623403981328,-0.028542215004563],[0.026920471340418,0.012703355401754,0.055497664958239]],[[-0.081402122974396,0.011788877658546,-0.12113378942013],[0.13148272037506,-0.036642886698246,-0.057845178991556],[0.023974616080523,0.010772118344903,0.013698910363019]],[[0.059597488492727,-0.11530019342899,0.012080210261047],[0.11404863744974,0.14090721309185,-0.30652797222137],[-0.077339112758636,-0.10228922963142,0.0002695971634239]],[[-0.03005363792181,0.063696458935738,0.06886450201273],[0.094872273504734,-0.019363081082702,-0.044482264667749],[0.080336689949036,-0.0042998632416129,-0.015674395486712]],[[0.025627709925175,-0.18847557902336,0.083868287503719],[-0.15720768272877,-0.043217185884714,0.098536938428879],[-0.050061963498592,-0.045307800173759,-0.14568065106869]],[[0.027276957407594,-0.3142529129982,0.22642379999161],[-0.017571315169334,0.089185498654842,0.028227629140019],[0.033461723476648,-0.05426562204957,0.075987368822098]],[[0.055390849709511,0.015293147414923,0.046399317681789],[-0.0196971911937,-0.019169429317117,-0.031902652233839],[0.014817298389971,-0.028727075085044,-0.027570987120271]],[[-0.03690842166543,0.08026546984911,0.085147097706795],[-0.11086611449718,-0.049186088144779,0.0053541325032711],[-0.022762944921851,0.077720120549202,0.058599714189768]],[[-0.0083926459774375,-0.006902031134814,-0.20070953667164],[0.097809098660946,0.097534291446209,0.048196762800217],[-0.026576707139611,0.026255575940013,0.06320059299469]],[[0.061261177062988,0.041664279997349,0.070575751364231],[0.094623073935509,-0.038418535143137,0.01375428121537],[0.036091171205044,-0.012516065500677,0.012422308325768]],[[-0.068055294454098,-0.15263959765434,-0.1483521014452],[-0.05907217040658,0.0049432488158345,0.026717741042376],[0.076655276119709,-0.028289014473557,0.065990008413792]],[[-0.05359610170126,0.11568884551525,0.023064913228154],[-0.04617752507329,-0.13270123302937,0.058507390320301],[0.058841038495302,0.060368407517672,0.018606603145599]],[[-0.036648388952017,-0.024026788771152,0.092542171478271],[0.053805246949196,-0.048395659774542,-0.020640192553401],[0.064823761582375,-0.019852735102177,0.006851997692138]],[[-0.016508568078279,-0.087252058088779,-0.036247957497835],[-0.026809120550752,-0.021426634863019,-0.018765546381474],[-0.034391287714243,-0.0071560614742339,-0.035919364541769]],[[-0.013792266137898,-0.017035948112607,0.083011694252491],[-0.032836511731148,0.062050756067038,0.030828971415758],[0.074521012604237,0.051903791725636,0.10299740731716]],[[-0.0095148403197527,0.090152807533741,0.094834052026272],[-0.037959430366755,0.067945532500744,-0.0076817367225885],[0.12266876548529,-0.032003536820412,-0.00798349827528]],[[0.045313883572817,-0.065925300121307,-0.084645204246044],[0.031543366611004,0.067969150841236,-0.049873873591423],[0.19077323377132,-0.05329042673111,-0.15785072743893]],[[-0.023277182132006,-0.048577174544334,0.07281843572855],[0.097433552145958,-0.033785406500101,0.12573654949665],[-0.062815748155117,0.019374275580049,-0.0074832532554865]],[[0.0056766197085381,-0.017964581027627,0.13824059069157],[0.042013417929411,0.042473696172237,0.022919500246644],[-0.027540128678083,0.029740273952484,-0.020014453679323]],[[0.06003824993968,0.0088048428297043,0.061392959207296],[0.026959603652358,0.0081658167764544,0.012967007234693],[-0.0050819930620492,-0.030665179714561,0.048109579831362]],[[0.14283372461796,-0.13660964369774,0.10355747491121],[0.031662188470364,-0.095858447253704,-0.09796891361475],[-0.015102547593415,-0.01645078137517,0.056367628276348]],[[0.010039824992418,0.15311893820763,0.044960640370846],[0.065567389130592,0.097977079451084,0.0050632786005735],[-0.0018444684101269,0.039194244891405,0.043056156486273]],[[-0.020715959370136,0.057103276252747,0.048079174011946],[0.039206627756357,-0.013396403752267,0.049347467720509],[-0.066197425127029,0.0041458387859166,0.085873149335384]],[[0.039076238870621,0.11202701181173,0.15774342417717],[0.10358102619648,0.079451262950897,0.11347974836826],[-0.071487367153168,0.044010143727064,0.0069708824157715]],[[-0.0069513879716396,0.066247470676899,0.01847979798913],[0.037800367921591,0.055549532175064,0.047118086367846],[0.025609340518713,0.034544415771961,0.11313427239656]],[[-0.050104230642319,0.056417427957058,0.071889989078045],[-0.0066500501707196,-0.080593772232533,-0.0056082471273839],[-0.041103772819042,-0.021032012999058,0.031607232987881]],[[0.12093048542738,-0.086892671883106,0.050792925059795],[0.034416578710079,0.071850553154945,-0.0027244079392403],[-0.031838089227676,0.015435820445418,0.055306259542704]],[[0.00044190208427608,-0.025262957438827,-0.020950768142939],[0.027875993400812,-0.020112695172429,0.049490459263325],[0.048042226582766,0.11797048896551,0.021983562037349]],[[-0.06904736161232,0.0057770628482103,-0.053241528570652],[-0.059771452099085,-0.01161989569664,0.069174446165562],[-0.041716054081917,-0.05377059802413,-0.028920097276568]],[[0.0077288737520576,-0.082807220518589,-0.044080708175898],[-0.060206945985556,-0.036891613155603,-0.0043358965776861],[0.026262022554874,0.041857991367579,-0.020170837640762]],[[-0.030788360163569,0.044555015861988,-0.056037671864033],[-0.00075950298923999,0.10703954845667,-0.0064101759344339],[-0.028498146682978,0.032610841095448,0.0085032414644957]],[[0.041147403419018,-0.02250337973237,0.018139358609915],[-0.060867920517921,-0.041240878403187,-0.11050092428923],[-0.031101368367672,-0.029174279421568,-0.024280609562993]],[[0.31505900621414,-0.13399977982044,0.049315650016069],[-0.075250320136547,0.0058060251176357,-0.1663640588522],[-0.10212734341621,0.097430668771267,0.060820993036032]],[[-0.043433487415314,0.017015838995576,-0.095801778137684],[0.17141070961952,0.027537241578102,0.032467849552631],[-0.049276158213615,-0.052626892924309,-0.042486820369959]],[[-0.020295817404985,0.052455000579357,0.022635668516159],[0.044049512594938,0.0090278927236795,-0.025310087949038],[0.033669866621494,0.085723020136356,0.11189395189285]],[[0.054868366569281,0.10160457342863,-0.047950744628906],[0.0060416283085942,0.019895659759641,-0.0051347715780139],[0.095217034220695,-0.059389136731625,0.045071627944708]],[[0.053389318287373,-0.06248901411891,0.25472527742386],[-0.073006875813007,0.15756513178349,0.077649131417274],[-0.13347864151001,-0.0040326463058591,0.013255001977086]],[[0.059774532914162,-0.081716634333134,-0.15714605152607],[0.12901625037193,0.00083309825276956,0.013435507193208],[-0.011524438858032,-0.079346157610416,-0.021524630486965]],[[-0.07084658741951,0.048144020140171,0.010225036181509],[-0.018169160932302,0.0729655995965,-0.019289778545499],[0.039649114012718,-0.05918338522315,0.028984712436795]],[[0.019700286909938,-0.14765787124634,-0.10665372759104],[-0.10492558777332,-0.0428426861763,-0.011390876024961],[-0.026504792273045,-0.014683016575873,-0.20687678456306]],[[-0.021745692938566,0.082440420985222,-0.026584872975945],[0.11380537599325,-0.11690685898066,0.14863772690296],[0.14598809182644,-0.051247715950012,-0.061296999454498]],[[-0.0067954547703266,-0.053726803511381,0.075599111616611],[-0.033979315310717,-0.057128593325615,-0.083006106317043],[-0.039660219103098,-0.03927418962121,0.0043537253513932]],[[0.0093848668038845,0.023182464763522,-0.01951047219336],[0.14134441316128,-0.021906174719334,0.044452328234911],[-0.044040843844414,0.0067213634029031,-0.025358077138662]],[[-0.031847987323999,0.017460886389017,-0.075825601816177],[-0.054237194359303,0.0012563228374347,-0.087275072932243],[-0.12830121815205,-0.068775936961174,0.00059469533152878]],[[0.085467822849751,-0.099851347506046,-0.13122196495533],[-0.033992927521467,-0.027015393599868,-0.021746195852757],[-0.023319315165281,0.055340655148029,-0.077722124755383]],[[-0.02096982486546,0.051301147788763,0.029060089960694],[-0.0092401392757893,-0.049085948616266,-0.057841826230288],[0.075487107038498,0.035756412893534,-0.010943561792374]],[[-0.18764974176884,0.15193636715412,0.012298936024308],[-0.087098397314548,-0.12562251091003,0.088699094951153],[-0.012705150060356,-0.092882990837097,0.063253127038479]],[[-0.11591845005751,-0.25476810336113,0.39753153920174],[0.0069388533011079,-0.0045985314063728,0.075114294886589],[0.055999778211117,0.16573439538479,0.027145078405738]],[[0.14826300740242,0.016357382759452,-0.043945804238319],[-0.094660371541977,0.052683763206005,-0.007390359416604],[0.040504325181246,0.019264105707407,-0.047324854880571]],[[-0.011050924658775,-0.064815245568752,-0.091053731739521],[0.034091766923666,-0.099232338368893,0.090105503797531],[0.033984292298555,0.067788228392601,0.04588832706213]],[[0.006647122092545,0.021043121814728,0.0009445667383261],[0.11127591878176,0.10347218811512,0.035451885312796],[-0.0037761998828501,0.012263824231923,-0.031422171741724]],[[0.023767404258251,-0.015138079412282,0.10424235463142],[0.0052819456905127,0.067523948848248,-0.013807515613735],[0.037626352161169,-0.19792574644089,0.053649868816137]],[[-0.11093669384718,-0.010903235524893,0.11771325021982],[0.037583097815514,0.057853061705828,0.13107714056969],[0.047163035720587,-0.023959206417203,-0.059389110654593]],[[-0.22348581254482,-0.17740862071514,0.026567317545414],[-0.026357324793935,-0.20928797125816,0.020488722249866],[-0.027233337983489,0.049068808555603,-0.0091250035911798]],[[-0.040082670748234,-0.063376799225807,0.13812392950058],[-0.072554402053356,-0.025544408708811,0.014527588151395],[-0.14492192864418,-0.013552056625485,-0.041530448943377]],[[-0.059965956956148,0.09911136329174,-0.075749166309834],[0.031214023008943,-0.0021360784303397,0.095590993762016],[0.088312655687332,-0.024348417297006,-0.052054382860661]],[[0.027116410434246,0.064628519117832,-0.075184114277363],[-0.021666884422302,-0.03309652581811,0.03949261456728],[-0.10460690408945,0.026176244020462,0.064558312296867]],[[-0.081365473568439,0.079253412783146,-0.064887456595898],[-0.050766248255968,-0.087235517799854,0.018289726227522],[-0.0054797399789095,0.0091657862067223,-0.022875420749187]],[[-0.051203832030296,-0.075623288750648,0.02201578579843],[0.087637946009636,0.0034750385675579,-0.015304567292333],[0.15535187721252,0.074081726372242,0.13360580801964]],[[0.12518641352654,-0.02733076363802,0.17625673115253],[0.095618098974228,0.057342074811459,0.09722163528204],[0.13516499102116,0.095298521220684,0.058977898210287]],[[0.084347859025002,0.029642626643181,-0.051291592419147],[-0.0081453202292323,-0.057694736868143,0.10618313401937],[0.074229136109352,0.03188718855381,0.058301035314798]],[[-0.039626777172089,-0.064213968813419,-0.12216340005398],[0.028517117723823,0.066378399729729,0.06016318872571],[-0.0020303265191615,0.099482528865337,0.0080320928245783]],[[-0.00075050082523376,0.10236243158579,0.034973695874214],[-0.062447030097246,0.030362179502845,-0.024860380217433],[0.036050461232662,0.06404685229063,0.08431688696146]],[[-0.13040371239185,-0.17531387507915,-0.0068716490641236],[0.05196563526988,-0.067556172609329,0.071056827902794],[0.013396747410297,-0.015387360937893,-0.018479892984033]],[[0.0052262544631958,-0.0087805464863777,-0.17225228250027],[0.070111833512783,-0.028129510581493,0.0044105006381869],[-0.088283486664295,0.02730624563992,-0.030148137360811]],[[0.016117399558425,0.077421277761459,0.016789671033621],[0.082963071763515,0.056025564670563,0.11321428418159],[-0.0072390954010189,0.048442631959915,-0.043248545378447]],[[0.064715333282948,-0.23101598024368,0.20128972828388],[0.060070291161537,-0.064549900591373,-0.015074077993631],[0.13575309514999,-0.027305772528052,0.088903002440929]],[[0.02483931556344,-0.029842151328921,-0.031410127878189],[-0.024499980732799,-0.081971667706966,0.06775951385498],[-0.038280170410872,-0.047047112137079,0.041036065667868]],[[-0.060060359537601,0.26252219080925,-0.075516253709793],[-0.065747119486332,-0.016802038997412,0.12842068076134],[-0.024536427110434,0.090843796730042,-0.012894372455776]],[[0.21439835429192,-0.08959686756134,0.010911006480455],[0.039079446345568,-0.001526192529127,0.00086921791080385],[0.049601409584284,0.05000864341855,0.034097995609045]],[[0.15030421316624,-0.13814526796341,0.042374990880489],[0.090448528528214,0.050619311630726,0.14274798333645],[-0.059929713606834,0.094740241765976,0.080910988152027]],[[-0.16914415359497,-0.0049962983466685,-0.044751547276974],[-0.035613674670458,-0.098496802151203,0.030226647853851],[-0.023396784439683,0.086633659899235,0.038298439234495]],[[0.034861333668232,0.14635516703129,-0.012406224384904],[-0.061952564865351,0.10921891778708,-0.14345996081829],[-0.10043409466743,-0.050686977803707,0.031944595277309]],[[-0.10064189136028,0.067257329821587,-0.047348011285067],[0.18783508241177,-0.031362056732178,-0.097025275230408],[0.052814327180386,-0.077986031770706,0.0028989389538765]],[[0.036448437720537,-0.00049556751037017,0.010639550164342],[0.081338375806808,0.11923190206289,0.10340648889542],[0.04499126970768,-0.028936309739947,-0.10538214445114]],[[-0.0063126157037914,-0.17011474072933,0.10828553885221],[0.034494023770094,-0.095466502010822,0.067346967756748],[0.027199754491448,-0.068189054727554,0.016296893358231]],[[-0.1566222012043,-0.037455096840858,-0.048570416867733],[-0.092124074697495,-0.033277779817581,-0.06258000433445],[-0.084038436412811,-0.1581787019968,0.041241399943829]],[[-0.020818082615733,-0.10412642359734,-0.11235490441322],[0.025128602981567,0.04650741443038,0.050011452287436],[0.077947720885277,0.15388834476471,0.04562346637249]],[[-0.0091506456956267,-0.026909587904811,0.078458324074745],[0.048373270779848,-0.10754403471947,-0.043919764459133],[-0.045961413532495,-0.11218863725662,-0.1111203879118]],[[0.036268502473831,-0.043983224779367,-0.00073969835648313],[0.0059314798563719,0.089353516697884,0.11243043839931],[0.10726759582758,0.055393651127815,0.027073714882135]],[[0.15199612081051,-0.067638769745827,-0.060831680893898],[-0.024153778329492,0.058656450361013,0.017514411360025],[-0.015927063301206,0.0040004877373576,0.14714074134827]],[[0.092070296406746,0.093967728316784,0.012804783880711],[0.0096029918640852,-0.0037553680595011,0.020074328407645],[-0.00029321596957743,0.036804918199778,0.024496680125594]],[[-0.16263815760612,0.041925169527531,0.015838576480746],[-0.045913960784674,-0.034125536680222,0.017575167119503],[-0.0027990646194667,-0.069164209067822,-0.051148697733879]],[[0.0030522102024406,0.0091492487117648,0.055074755102396],[0.058322090655565,-0.089886032044888,0.078332647681236],[0.05011236295104,0.044236615300179,0.11560242623091]],[[-0.15699411928654,0.080731399357319,0.05724149569869],[-0.012642565183342,0.11560460180044,0.12418241798878],[0.13958646357059,-0.029252542182803,-0.030325131490827]],[[-0.0044713257811964,-0.06712257117033,-0.040277987718582],[-0.079799078404903,-0.14405691623688,-0.12372117489576],[0.02290384285152,0.11568523943424,0.07013039290905]],[[-0.12876945734024,0.092266246676445,0.029590642079711],[-0.0086262952536345,0.10466288775206,-0.0072577884420753],[0.12962421774864,-0.012442278675735,-0.023388866335154]],[[0.13585379719734,-0.022572075948119,-0.027191765606403],[0.015953708440065,0.011964536271989,0.038793653249741],[0.0079392464831471,0.025662491098046,0.071316450834274]],[[0.038498867303133,0.030259652063251,-0.087324731051922],[-0.1603932082653,0.053111802786589,-0.035599302500486],[0.025920214131474,0.046591207385063,-0.052622761577368]],[[-0.10010222345591,-0.12926371395588,0.18969908356667],[-0.053231496363878,-0.040605239570141,-0.0072467010468245],[0.033017184585333,-0.13646237552166,-0.039700802415609]],[[0.041189894080162,-0.10205301642418,-0.21039986610413],[0.024510119110346,0.23548236489296,0.073569677770138],[0.086129859089851,0.040903691202402,-0.047721777111292]],[[-0.080735072493553,0.1192342042923,-0.11876185238361],[0.081890642642975,-0.018894968554378,-0.031617894768715],[-0.086115598678589,-0.030039805918932,0.046746671199799]],[[0.082779809832573,-0.022517438977957,-0.034766361117363],[0.0017705135978758,-0.054683677852154,-0.04985573142767],[-0.006901369895786,0.031877506524324,0.013757822103798]],[[-0.011629019863904,-0.043236095458269,-0.15476259589195],[-0.082562901079655,-0.03448049351573,0.0065816277638078],[-0.0041107703000307,-0.0047759721055627,-0.030744867399335]],[[-0.18167607486248,0.069256193935871,0.036245308816433],[-0.0090204868465662,-0.059597749263048,0.07237397134304],[0.03143598139286,0.095497220754623,0.021521452814341]],[[0.089132994413376,0.063003584742546,0.0035994495265186],[0.07220134884119,-0.047846425324678,-0.016201876103878],[-0.014183205552399,0.010752801783383,0.0076772402971983]],[[-0.03843667730689,-0.066321022808552,-0.034184269607067],[-0.039565369486809,-0.15088137984276,-0.02947854809463],[-0.0044288658536971,0.029047645628452,0.076414942741394]],[[-0.098983705043793,-0.23950761556625,0.16995589435101],[-0.15269826352596,-0.02536422200501,-0.030329195782542],[-0.095515921711922,-0.05299636349082,-0.0085778515785933]],[[0.069314181804657,0.062085915356874,-0.04491151124239],[-0.049251142889261,0.045692466199398,0.047315448522568],[-0.024735739454627,0.12172469496727,0.039278533309698]],[[0.034184493124485,0.057114165276289,-0.10000945627689],[-0.080228365957737,-0.061327915638685,0.03600974753499],[0.072814591228962,0.059501588344574,0.038888067007065]],[[0.056112118065357,-0.095250278711319,-0.085310012102127],[-0.0082995481789112,0.0092343371361494,0.09175430983305],[0.018874954432249,-0.066166833043098,0.04966888204217]],[[0.08393806219101,0.06365068256855,0.071066349744797],[-0.021742910146713,0.013052279129624,0.11567627638578],[-0.10837437212467,0.030763141810894,-0.031252402812243]],[[-0.042264997959137,0.061157640069723,0.11522904783487],[0.00086285726865754,0.017234768718481,0.050159074366093],[-0.10611315071583,-0.0052066873759031,-0.060655415058136]],[[-0.074042730033398,-0.061709173023701,0.037281945347786],[0.13817471265793,0.090241521596909,-0.19449520111084],[-0.21125471591949,-0.019506206735969,0.069508567452431]],[[0.010337065905333,-0.04279699921608,0.0081373490393162],[-0.033349443227053,-0.018882498145103,0.026125134900212],[-0.045172519981861,0.08172769099474,-0.022449936717749]],[[-0.0043500792235136,0.030259750783443,-0.0064007509499788],[0.094784647226334,0.11724234372377,-0.037491105496883],[0.023651948198676,0.10855824500322,-0.14273519814014]],[[0.05656722933054,0.052595734596252,0.077048450708389],[0.022430591285229,-0.10076940059662,-0.056563969701529],[0.026487708091736,0.066505022346973,-0.11626555025578]],[[0.023723676800728,0.0039334357716143,0.0086793722584844],[0.037359919399023,0.14206422865391,0.016789205372334],[-0.029625447466969,-0.041129991412163,0.055259294807911]],[[-0.02532803080976,-0.12816002964973,0.47693499922752],[0.1431971937418,-0.099374987185001,-0.03117273375392],[-0.012805777601898,-0.016534959897399,-0.12934938073158]],[[-0.18214520812035,0.056205317378044,0.020433047786355],[0.020304542034864,-0.091327466070652,-0.015257046557963],[0.020607255399227,-0.080912970006466,-0.067386701703072]]],[[[-0.073454685509205,-0.17221823334694,-0.077068440616131],[0.090029366314411,-0.03395651653409,0.049776829779148],[0.12626928091049,0.033889852464199,0.0068706851452589]],[[0.0043144132941961,0.11180754750967,0.18018010258675],[0.039921622723341,0.033895809203386,-0.15720139443874],[-0.094548992812634,-0.051325734704733,0.030102239921689]],[[0.059699267148972,0.021872771903872,-0.11935545504093],[-0.012056481093168,-0.073254510760307,-0.1250222325325],[-0.012929803691804,0.11299528926611,-0.046033676713705]],[[0.016792248934507,-0.0023268258664757,-0.010016522370279],[0.023827658966184,0.038422543555498,-0.036765802651644],[-0.026914529502392,-0.23318780958652,0.092854790389538]],[[-0.085911720991135,-0.1283318400383,0.038637056946754],[-0.034537822008133,0.0097674578428268,0.057815056294203],[0.0098421908915043,-0.0099989091977477,0.034912247210741]],[[-0.027729287743568,-0.015124100260437,-0.046632178127766],[-0.0031514011789113,0.048751160502434,-0.015842953696847],[-0.0263880956918,0.0094231590628624,-0.059168759733438]],[[-0.023497013375163,-0.029890256002545,0.0050964872352779],[-0.013266268186271,0.078487396240234,-0.085105270147324],[-0.0046447603963315,0.045835323631763,-0.0004966106498614]],[[-0.024392284452915,-0.10594795644283,-0.0090523716062307],[0.012868655845523,-0.014533662237227,-0.017479615285993],[-0.00029248557984829,-0.04142189770937,-0.1051349490881]],[[-0.030424343422055,-0.040005408227444,0.018697161227465],[0.017135705798864,-0.021422076970339,0.048469420522451],[0.0079454742372036,-0.062828026711941,0.073030680418015]],[[0.13945807516575,0.0075255590490997,-0.16835966706276],[0.01578495465219,-0.028807613998652,-0.10873771458864],[0.18353207409382,0.089906737208366,-0.0057579637505114]],[[0.02905391715467,0.068901114165783,0.019960146397352],[0.059300974011421,0.021277336403728,-0.047257740050554],[-0.025387741625309,-0.063952006399632,-0.18451473116875]],[[0.0075389235280454,0.0011674979468808,-0.03876518830657],[-0.019669873639941,0.071327023208141,-0.026348730549216],[0.064621061086655,0.0030628198292106,-0.098498545587063]],[[-0.075091347098351,0.03152409568429,0.0042591853998601],[-0.011109354905784,0.0011193386744708,-0.095699764788151],[-0.059235893189907,0.023366978392005,0.078655675053596]],[[-0.0080156978219748,0.0014132525539026,-0.12932729721069],[-0.076293110847473,-0.033941701054573,-0.097654327750206],[0.10830529779196,0.036950651556253,0.010695848613977]],[[0.041431296616793,0.070503577589989,-0.024191904813051],[-0.090183474123478,-0.089012414216995,-0.0050910338759422],[-0.03232391551137,-0.098252326250076,0.016555218026042]],[[0.097427524626255,0.11686599254608,-0.06811760365963],[-0.088049858808517,0.041160527616739,-0.036063440144062],[-0.017458261922002,-0.063599541783333,0.025609876960516]],[[-0.027852475643158,-0.029199667274952,0.10674306750298],[0.0057731997221708,-0.0079134609550238,0.027368841692805],[-0.017537923529744,0.017257463186979,0.018813328817487]],[[0.038246192038059,0.10555218160152,0.18048894405365],[-0.0077927936799824,-0.013085993938148,0.050397083163261],[-0.17680922150612,0.039168421179056,-0.00089480588212609]],[[-0.094335928559303,-0.11763513088226,0.10406175255775],[0.014351586811244,0.025984991341829,0.069650188088417],[-0.061008475720882,0.099763460457325,0.014155277982354]],[[0.06339155882597,0.027009900659323,-0.02824978530407],[0.089437015354633,0.039884343743324,-0.048706594854593],[0.042022626847029,0.078506790101528,-0.039644323289394]],[[0.016216978430748,-0.0015575459692627,0.030108442530036],[-0.090862274169922,-0.069391898810863,0.039022330194712],[-0.10992129892111,-0.23389372229576,0.032193560153246]],[[-0.019883669912815,0.11384358257055,-0.00413060747087],[0.066131353378296,0.08013104647398,-0.061182640492916],[0.07333105057478,-0.16617415845394,-0.0026432843878865]],[[0.12604403495789,0.065816663205624,0.17354016005993],[0.045566260814667,-0.01247710455209,-0.030545273795724],[-0.13408705592155,-0.02600684762001,-0.074661567807198]],[[-0.058239616453648,-0.018484748899937,0.0093563143163919],[0.15300638973713,0.03670097142458,-0.037851210683584],[0.06818626075983,-0.092986382544041,-0.026381187140942]],[[0.034423913806677,0.067787311971188,-0.33654886484146],[0.086122311651707,0.0055443691089749,-0.05730688944459],[-0.094209663569927,-0.059326462447643,0.070743627846241]],[[0.043572839349508,0.079804934561253,-0.066909648478031],[-0.073261216282845,-0.058426704257727,0.0331164970994],[-0.037345446646214,-0.035546932369471,-0.060712274163961]],[[-0.05823078006506,-0.14252735674381,0.033696345984936],[-0.068378143012524,-0.036255449056625,-0.05600930005312],[0.041744943708181,-0.063082963228226,-0.0082327993586659]],[[-0.11638107150793,-0.014799514785409,-0.028839951381087],[-0.093465015292168,-0.052255935966969,-0.045090243220329],[-1.4419219951378e-05,-0.13203845918179,0.08189407736063]],[[0.073290482163429,0.21833354234695,-0.0070666805841029],[0.049252346158028,0.046585608273745,0.0020988923497498],[-0.073936514556408,-0.085704028606415,-0.041286837309599]],[[0.024963160976768,0.025107441470027,0.1152887493372],[0.042705703526735,-0.027725651860237,0.0079313544556499],[-0.0088598886504769,-0.042842902243137,0.061248831450939]],[[0.023237800225616,-0.013583064079285,-0.031953360885382],[-0.018382981419563,-0.072430022060871,0.021685875952244],[0.036879982799292,0.037904374301434,0.063784457743168]],[[-0.036098044365644,-0.013421557843685,0.095584727823734],[-0.0087901828810573,-0.021375449374318,-0.089582800865173],[-0.060883831232786,-0.048186268657446,0.090882375836372]],[[-0.005163159687072,-0.083746537566185,-0.076185047626495],[0.085446141660213,-0.025159686803818,-0.01752326823771],[-0.033594392240047,0.054722331464291,-0.0067264246754348]],[[-0.16766862571239,-0.043367322534323,-0.02200348675251],[0.026472264900804,-0.038966719061136,0.032544832676649],[-0.0066654193215072,0.031252264976501,0.1391369998455]],[[0.045844756066799,-0.079550482332706,0.0090322159230709],[0.010581441223621,-0.028630865737796,-0.045518133789301],[0.075396828353405,0.060842148959637,0.01077083684504]],[[-0.0068721384741366,0.013148208148777,-0.017971009016037],[-0.021001996472478,-0.025062374770641,-0.008049514144659],[-0.12443731725216,0.0039865700528026,0.010934107936919]],[[0.15097874403,0.081315331161022,0.07082860916853],[-0.015353583730757,0.02775989100337,0.069170691072941],[-0.027135398238897,-0.099937327206135,-0.036168787628412]],[[0.024594731628895,0.0038930561859161,-0.18637536466122],[-0.0090038385242224,-0.042797077447176,0.042808830738068],[0.028803806751966,0.070333324372768,-0.083312295377254]],[[0.061621189117432,0.015129311010242,-0.0091061079874635],[0.029717827215791,-0.18346199393272,0.048319708555937],[-0.026791952550411,-0.13241176307201,-0.039169084280729]],[[-0.016056250780821,-0.011067945510149,0.0028492740821093],[0.017746182158589,0.040916658937931,-0.083500541746616],[-0.014712472446263,0.018662678077817,0.028684180229902]],[[-0.035142052918673,-0.005247903522104,-0.016861226409674],[-0.0089921681210399,-0.091630697250366,-0.00739606609568],[0.065395891666412,0.042982902377844,-0.020136890932918]],[[-0.06372094899416,0.0046776565723121,0.10960283130407],[0.024127542972565,0.093137256801128,0.04121970385313],[0.020647101104259,0.042942114174366,0.054731089621782]],[[-0.05261504650116,0.10504457354546,-0.16502384841442],[-0.051320116966963,-0.053241811692715,0.13297414779663],[-0.11038137972355,0.069554626941681,-0.13560868799686]],[[-0.030292296782136,-0.033536363393068,-0.023549001663923],[0.024143358692527,0.033274363726377,-0.080941289663315],[0.012561551295221,0.00048642672481947,-0.019472913816571]],[[-0.15221640467644,-0.016977995634079,-0.006612129509449],[-0.0093476306647062,0.010377569124103,0.012915131635964],[0.025526089593768,0.03169571980834,-0.037529069930315]],[[-0.15480454266071,0.072832249104977,-0.13444383442402],[0.054487068206072,-0.15319135785103,0.040689941495657],[-0.021428233012557,0.050923738628626,-0.13424815237522]],[[-0.013174950145185,0.044684555381536,-0.049123968929052],[0.063151381909847,-0.16498810052872,-0.069861456751823],[-0.075536027550697,-0.14219217002392,0.03363037481904]],[[-0.013953278772533,-0.1715120524168,-0.03721135109663],[-0.051296196877956,-0.065692327916622,0.028941126540303],[0.057585712522268,-0.0058783506974578,-0.019583100453019]],[[-0.070967689156532,-0.018569778650999,-0.030910203233361],[-0.083922825753689,-0.01358294673264,-0.064755417406559],[0.019825680181384,-0.02525107562542,-0.024314409121871]],[[-0.00030916347168386,-0.0022465863730758,0.054702013731003],[-0.093806713819504,-0.055710706859827,0.073468960821629],[-0.048461481928825,-0.029502145946026,0.052505418658257]],[[0.031513646245003,0.011575245298445,-0.029130214825273],[-0.013554733246565,0.015017630532384,-0.0072273076511919],[-0.026344543322921,-0.016119040548801,-0.11099481582642]],[[0.027246192097664,0.087554335594177,0.0072546117007732],[0.057857114821672,-0.040759779512882,-0.064224146306515],[0.00077305600279942,-0.045055765658617,-0.11129379272461]],[[-0.029194321483374,-0.0028831264935434,-0.05759884417057],[-0.10002414137125,0.094627648591995,-0.048612751066685],[-0.028521941974759,0.087971769273281,-0.052853431552649]],[[0.027234425768256,-0.0094916447997093,-0.014056950807571],[0.01448879763484,0.093411318957806,-0.021512063220143],[-0.0050329701043665,-0.022239942103624,-0.014517118223011]],[[0.053183190524578,0.013270941562951,-0.051271095871925],[-0.021401239559054,-0.0035546903964132,-0.029369451105595],[-0.048312790691853,0.046333201229572,0.079043708741665]],[[0.0289093144238,-0.080178625881672,0.1058614179492],[-0.015727968886495,0.040378406643867,-0.055737894028425],[0.0037001266609877,0.018534047529101,-0.031703647226095]],[[0.056715071201324,-0.040193572640419,-0.017148209735751],[-0.17128355801105,0.011064562015235,0.019572848454118],[-0.063889801502228,0.10200126469135,0.00035965366987512]],[[0.060380075126886,-0.11565856635571,0.051119085401297],[-0.017791636288166,-0.049551792442799,0.010587121360004],[0.11937166750431,0.08486171066761,-0.067849300801754]],[[-0.04320827126503,-0.086029037833214,-0.15342691540718],[-0.025932744145393,0.080256752669811,-0.07206404209137],[0.017796158790588,-0.063958257436752,-0.062748789787292]],[[-0.15119513869286,-0.0050993543118238,-0.038672648370266],[-0.016897710040212,0.024742180481553,-0.081410892307758],[0.12084662914276,-0.059814739972353,0.056069016456604]],[[0.033238101750612,0.016644256189466,-0.020019073039293],[0.037476491183043,-0.027797626331449,-0.07735238224268],[-0.11425574868917,-0.032585144042969,0.032006338238716]],[[0.023767193779349,-0.032070472836494,-0.012594717554748],[-0.01973931491375,0.024761350825429,-0.099000759422779],[-0.0083905085921288,-0.0056569296866655,-0.010644291527569]],[[-0.0023863657843322,0.020686101168394,-0.055537883192301],[-0.077173866331577,-0.21610574424267,-0.16507151722908],[0.079375006258488,0.031369987875223,-0.098729118704796]],[[0.074418567121029,0.016923662275076,0.02460465580225],[0.11945952475071,0.025974202901125,0.069705814123154],[-0.0030543126631528,0.01007523201406,-0.053439848124981]],[[-0.028777133673429,-0.05059252679348,0.036742009222507],[-0.02258369140327,-0.032988652586937,-0.0095092281699181],[0.06953588873148,0.074995085597038,0.076255694031715]],[[-0.10508427023888,0.012514796108007,0.10113836824894],[-0.016274074092507,-0.046732809394598,-0.050109218806028],[0.0616644769907,-0.029232041910291,0.067216448485851]],[[-0.029730757698417,-0.042273126542568,0.0067032813094556],[-0.05182734131813,-0.00089808815391734,0.04726891964674],[0.083960838615894,0.024030234664679,0.04199181124568]],[[0.0023187061306089,-0.020429929718375,-0.083029441535473],[-0.010343058034778,-0.0098561560735106,-0.0048468024469912],[0.023896753787994,-0.029675340279937,-0.025459058582783]],[[0.086798474192619,-0.071396738290787,-0.022247234359384],[-0.050924383103848,-0.042946998029947,0.028482524678111],[0.089492611587048,0.023289266973734,0.0081697655841708]],[[-0.10205484181643,-0.1010806709528,0.083330929279327],[0.035612683743238,0.034525312483311,0.10262948274612],[-0.02659852989018,-0.060212936252356,0.069811552762985]],[[-0.022843901067972,0.052603386342525,0.084941305220127],[-0.038725506514311,0.10522300004959,-0.0043060034513474],[0.016875453293324,0.075883418321609,-0.085275486111641]],[[0.067952811717987,-0.044000007212162,-0.051709767431021],[-0.028034949675202,-0.050797358155251,-0.0052930656820536],[0.039629515260458,-0.04214870557189,0.14486795663834]],[[-0.048906780779362,-0.12865127623081,-0.020091691985726],[-0.20909038186073,-0.054429698735476,-0.061958465725183],[-0.072051808238029,0.0021962353494018,0.030363934114575]],[[-0.0157665386796,0.0071969325654209,0.1071630269289],[-0.027289662510157,-0.074177928268909,-0.0048370789736509],[0.0345598757267,0.058481719344854,0.0021413150243461]],[[-0.045478913933039,-0.029412010684609,0.016172176226974],[-0.041726477444172,-0.055731281638145,0.042929597198963],[0.019998731091619,0.0051597212441266,0.010156862437725]],[[-0.053377382457256,0.011742070317268,0.067015685141087],[-0.038013733923435,0.020330220460892,0.031420741230249],[-0.024434458464384,-0.004037223290652,-0.083295360207558]],[[0.071038126945496,0.010127088055015,0.020453898236156],[-0.055532272905111,-0.037651501595974,0.0079104518517852],[0.0019754678942263,-0.041954312473536,-0.049162201583385]],[[0.0141730774194,-0.052529413253069,0.056682847440243],[0.024375379085541,0.014866378158331,-0.049993418157101],[0.029405068606138,0.087374597787857,0.010788920335472]],[[0.046859931200743,-0.061535313725471,0.010771906003356],[-0.048634316772223,-0.041114795953035,0.08257918804884],[-0.0082128802314401,0.043579645454884,-0.0045947209000587]],[[-0.063956446945667,-0.056412812322378,-0.064281411468983],[-0.02298204600811,-0.02151463739574,0.078391812741756],[0.11835385859013,0.083851903676987,-0.014579026959836]],[[-0.02759007550776,-0.014527483843267,-0.037053264677525],[-0.0090417265892029,-0.083004884421825,-0.070908896625042],[-0.012383364140987,-0.039141681045294,-0.091406650841236]],[[0.0062420265749097,0.07655968517065,0.037934418767691],[-0.043163605034351,-0.11939340829849,-0.060847483575344],[-0.2287650257349,-0.020109329372644,0.0025325957685709]],[[-0.050140660256147,-0.05792398005724,-0.067014664411545],[0.0094290468841791,0.0079537145793438,0.021401608362794],[0.071804404258728,0.050085242837667,0.050491560250521]],[[-0.0030838316306472,-0.07934695482254,-0.0069608991034329],[0.011723401024938,0.041095912456512,-0.11209301650524],[-0.0021946057677269,0.038397219032049,-0.011991676874459]],[[0.038299769163132,0.058812838047743,0.062216766178608],[0.016863638535142,-0.079138062894344,0.046582117676735],[0.021474335342646,-0.050576563924551,-0.08404216915369]],[[-0.0094839092344046,-0.17393735051155,0.042478021234274],[-0.0069909086450934,0.086779348552227,0.014788734726608],[0.031729206442833,0.080062292516232,0.04340873286128]],[[-0.065158866345882,0.012586497701705,-0.08647708594799],[0.071705274283886,-0.040430583059788,-0.045146498829126],[0.1486264616251,0.079111911356449,0.00082728080451488]],[[0.058305028825998,-0.041369158774614,0.018390936776996],[-0.0584925301373,0.003754181554541,-0.048272524029016],[0.0099057694897056,0.036166485399008,-0.043767660856247]],[[0.069944307208061,0.05973831191659,-0.036808263510466],[0.044914651662111,0.029946058988571,0.05335533246398],[-0.055564671754837,-0.05052262544632,0.033870957791805]],[[0.037250954657793,-0.016284516081214,-0.13986606895924],[0.068525277078152,0.065096914768219,-0.0081121996045113],[-6.3392231822945e-05,-0.017621899023652,0.029551411047578]],[[-0.019588459283113,0.0063324356451631,-0.0079074110835791],[-0.089144460856915,-0.0057057766243815,0.022210376337171],[-0.13915388286114,-0.039652213454247,0.067963466048241]],[[0.12067742645741,0.045908324420452,0.051985800266266],[0.027884311974049,-0.086299255490303,-0.18142968416214],[-0.091216966509819,0.0015954190166667,-0.071320258080959]],[[-0.038655005395412,-0.13893918693066,-0.084150351583958],[-0.025207214057446,-0.079463966190815,0.0023359919432551],[-0.012936599552631,0.017487054690719,0.0045069325715303]],[[0.078555308282375,-0.047760240733624,-0.005957739893347],[0.066806212067604,-0.060006938874722,-0.047250557690859],[0.011724757030606,0.036341216415167,-0.042351327836514]],[[0.022772755473852,-0.047070968896151,0.011942250654101],[0.00053287536138669,-0.10338106006384,-0.055873136967421],[-0.059109076857567,-0.19444777071476,0.12230776250362]],[[0.093171983957291,0.10042464733124,-0.0029617946129292],[-0.02888629026711,-0.065195441246033,-0.058231186121702],[0.04921518266201,-0.012755308300257,0.048929460346699]],[[0.052029766142368,-0.028189919888973,-0.055976122617722],[0.053850203752518,-0.045772578567266,-0.022290792316198],[-0.071160718798637,-0.056850146502256,0.0012487451313064]],[[0.0057237544097006,-0.056848861277103,0.0083289798349142],[-0.038858272135258,-0.021668896079063,0.073978304862976],[-0.0087207062169909,0.035142619162798,0.025918815284967]],[[-0.017704458907247,0.10995718836784,0.024509167298675],[-0.068320617079735,0.11526824533939,-0.075996182858944],[-0.059964746236801,-0.046513240784407,0.00041649481863715]],[[0.19746780395508,-0.061242144554853,0.030094090849161],[-0.091695390641689,0.15712594985962,-0.023277869448066],[0.090658210217953,-0.13613444566727,0.021528318524361]],[[0.023521589115262,-0.048549883067608,0.047335602343082],[-0.054441217333078,-0.073170222342014,0.036641608923674],[-0.061611033976078,0.028298674151301,-0.078598506748676]],[[-0.094216346740723,-0.21461220085621,-0.0023085246793926],[0.0089221689850092,0.02525625564158,-0.065898895263672],[0.19575317203999,-0.006757965311408,0.092060789465904]],[[-0.019392192363739,-0.052413277328014,-0.05386509001255],[0.0017688471125439,-0.084256134927273,0.067404970526695],[0.029759330675006,0.020433688536286,0.064789116382599]],[[0.097748689353466,0.034905727952719,-0.00574696296826],[-0.019735213369131,-0.033681694418192,-0.04537557810545],[0.083775624632835,0.093616902828217,-0.04366497322917]],[[-0.084374964237213,-0.083345055580139,-0.014759265817702],[0.033337198197842,-0.013779307715595,-0.023395244032145],[0.0050333989784122,0.044577740132809,0.018804647028446]],[[-0.066136658191681,0.04246086999774,-0.11253328621387],[0.058694791048765,-0.011807230301201,-0.070942811667919],[0.067178830504417,0.10918310284615,0.0099783549085259]],[[0.027865866199136,-0.026777485385537,-0.0085225850343704],[0.002068625530228,0.021144540980458,-0.012694372795522],[0.012690655887127,-0.15575455129147,0.0029145062435418]],[[-0.035724636167288,-0.053315505385399,0.032075222581625],[-0.16890187561512,0.13450901210308,-0.0070766257122159],[-0.015188496559858,-0.089681416749954,0.072212688624859]],[[0.027492014691234,0.079267710447311,-0.032416962087154],[-0.040268868207932,0.012235225178301,-0.10293459147215],[0.010084711946547,-0.078262001276016,-0.0647307112813]],[[-0.0068614766933024,0.0099109215661883,-0.058126993477345],[0.004210954066366,-0.0051621752791107,-0.0099263219162822],[-0.013889564201236,0.021612608805299,-0.021497510373592]],[[0.042811196297407,-0.060526970773935,-0.037071567028761],[-0.044205371290445,-0.12653629481792,0.040360052138567],[0.014521047472954,-0.038189724087715,0.012092430144548]],[[-0.015138561837375,0.023758394643664,0.0060470355674624],[0.01171191688627,-0.044426865875721,0.01409094594419],[0.0056987507268786,-0.039900965988636,-0.043420553207397]],[[-0.056928310543299,-0.13370023667812,0.020499533042312],[0.0068035516887903,-0.017484068870544,0.083971694111824],[-0.015000020153821,0.12082982808352,0.10017966479063]],[[0.020094059407711,-0.012775363400578,0.17049232125282],[0.04412804543972,0.02374804392457,-0.052902329713106],[-0.059786159545183,-0.041596777737141,0.042312797158957]],[[-0.035785231739283,-0.066781878471375,-0.0027868875768036],[0.0091988313943148,-0.033753037452698,-0.034964255988598],[-0.018149625509977,0.11710849404335,0.1118990033865]],[[0.060163892805576,0.029833959415555,-0.071787402033806],[-0.11226585507393,-0.10938888043165,0.033542226999998],[-0.029135994613171,-0.002070750342682,0.031341709196568]],[[0.03335590288043,-0.077725529670715,0.049394577741623],[0.041575852781534,0.041461914777756,-0.095178663730621],[-0.093206189572811,-0.028680920600891,-0.056163296103477]],[[0.032875970005989,0.028717920184135,0.020598821341991],[0.047431237995625,-0.040054108947515,0.066940896213055],[0.12180595844984,-0.044011626392603,0.13117769360542]],[[-0.031480293720961,-0.02789569273591,-0.060713969171047],[0.0033566418569535,-0.055188152939081,-0.011540007777512],[0.047875061631203,0.10410025715828,0.038250837475061]],[[0.054959915578365,0.029392639175057,0.0024768824223429],[-0.077942214906216,-0.0077719870023429,-0.056566596031189],[-0.0029045883566141,0.026827508583665,-0.023352799937129]],[[-0.030239623039961,-0.080215103924274,0.087323762476444],[0.010290808044374,-0.074546471238136,0.058538198471069],[0.0094571299850941,-0.0059368633665144,0.018529267981648]],[[0.02966514416039,0.04834808036685,0.052808556705713],[-0.0011948049068451,0.09171250462532,0.10517405718565],[0.0026074601337314,-0.23324964940548,0.013687830418348]],[[-0.068441711366177,-0.031415835022926,-0.077946111559868],[-0.064370043575764,-0.11895396560431,-0.049188613891602],[0.02717013284564,-0.073386006057262,-0.13022494316101]],[[0.026115888729692,0.037377085536718,0.025346402078867],[-0.052175935357809,-0.088692151010036,0.1497011333704],[-0.091437801718712,0.051451485604048,-0.018310574814677]],[[-0.025088254362345,0.039792750030756,0.030445463955402],[-0.01748013868928,0.02329476736486,-0.0042351949959993],[0.005125701893121,0.021095927804708,-0.011593885719776]],[[0.083746463060379,-0.0031003574840724,0.04528920724988],[-0.082175999879837,0.012709745205939,-0.058384381234646],[-0.025099476799369,0.068614363670349,-0.10687267035246]],[[-0.039128556847572,0.026042837649584,0.017756970599294],[-0.087467923760414,-0.060390930622816,0.028657162562013],[-0.024286011233926,-0.11902000755072,0.13102163374424]],[[0.062178988009691,0.13761828839779,-0.028312878683209],[-0.029403068125248,-0.093326687812805,0.038516104221344],[-0.081847943365574,-0.084602661430836,0.046661302447319]]],[[[-0.0045081796124578,0.10727776587009,-0.016918517649174],[0.057418540120125,0.069173231720924,-0.044784508645535],[-0.11801053583622,-0.011961276642978,-0.0064013246446848]],[[-0.053521942347288,-0.070313043892384,0.013828238472342],[-0.070353306829929,0.01568128913641,0.047537807375193],[-0.08053570240736,-0.12383739650249,-0.075804263353348]],[[-0.027215795591474,0.0059524099342525,0.030152546241879],[0.018209900707006,-0.14101508259773,-0.21714450418949],[-0.27370470762253,0.067799359560013,0.011383634060621]],[[0.095668226480484,0.013775915838778,-0.20288792252541],[0.016900299116969,-0.01429914496839,0.20566321909428],[-0.079764015972614,-0.15717315673828,0.11440819501877]],[[-0.20678693056107,0.012585450895131,-0.040105938911438],[-0.12788881361485,-0.0041188267059624,0.01917776837945],[-0.13656920194626,-0.1482744961977,0.0085366647690535]],[[-0.0091216377913952,0.10405439138412,-0.026278810575604],[-0.061456426978111,-0.036621063947678,0.032588191330433],[-0.040844917297363,-0.083674088120461,0.078338719904423]],[[0.028260491788387,0.045341454446316,0.0081604262813926],[-0.093070954084396,-0.011236046440899,0.047248285263777],[0.039382200688124,-0.047666773200035,-0.04326343908906]],[[0.0014848232967779,0.16599552333355,-0.16084738075733],[0.10068212449551,0.048274639993906,-0.0286845844239],[0.059292618185282,0.058937765657902,0.02882625721395]],[[-0.070324540138245,-0.1703884601593,-0.0011815963080153],[0.14457541704178,0.066792957484722,0.012232954613864],[0.11312730610371,0.10989964753389,-0.010808882303536]],[[-0.011303273029625,-0.0044855955056846,-0.0064097507856786],[-0.058177132159472,0.10076243430376,-0.051412537693977],[0.0025377871934325,0.020815562456846,0.057591952383518]],[[-0.068375252187252,-0.033071592450142,0.04600628465414],[-0.0068316464312375,-0.030210692435503,-0.04677440226078],[-0.18934214115143,-0.050660405308008,0.006371411960572]],[[-0.052317928522825,-0.051449682563543,-0.00041351467370987],[0.058747287839651,0.10488212108612,0.092297308146954],[-0.045702815055847,0.0030688273254782,-0.0096452627331018]],[[0.036283854395151,-0.029057590290904,-0.051433186978102],[0.013706296682358,0.048958972096443,-0.01029003970325],[0.036914873868227,0.0023829990532249,0.15277297794819]],[[-8.8056003733072e-05,0.028554480522871,0.023450657725334],[0.0040522539056838,0.057938616722822,-0.035378027707338],[-0.020965253934264,-0.0066812611185014,-0.082220114767551]],[[0.010144573636353,0.055807594209909,-0.06985055655241],[0.077194876968861,0.11910156905651,0.034817606210709],[-0.15169903635979,0.1319285184145,-0.091787025332451]],[[0.071494922041893,0.099736459553242,-0.12063375115395],[0.11326726526022,-0.050920002162457,-0.014327367767692],[-0.034454926848412,-0.0027596221771091,0.017996449023485]],[[0.11642142385244,-0.081364743411541,-0.024016039445996],[0.074389286339283,-0.066331580281258,-0.093999609351158],[0.25395402312279,0.037478607147932,-0.040536820888519]],[[-0.024986151605844,-0.064704455435276,0.027654016390443],[0.08402843028307,0.097318924963474,0.0023137112148106],[0.056279640644789,0.11977726221085,0.055854961276054]],[[-0.045067418366671,-0.13649828732014,0.0057639176957309],[-0.025722408667207,0.1497620344162,-0.013709654100239],[0.0088078379631042,0.040400851517916,0.032718531787395]],[[0.03770188242197,-0.037480343133211,-0.027894105762243],[-0.015906684100628,-0.085896760225296,-0.14804103970528],[-0.048874698579311,-0.050454679876566,0.13925901055336]],[[0.00018899259157479,-0.12884999811649,0.016994589939713],[-0.096737153828144,-0.095829084515572,-0.049584064632654],[-0.062310047447681,-0.12629474699497,-0.059002462774515]],[[-0.0053272573277354,0.0071505522355437,0.13912788033485],[0.10230976343155,0.072597786784172,0.15277534723282],[-0.033259734511375,0.0039161485619843,0.020349619910121]],[[-0.036134362220764,0.13147360086441,0.0056087407283485],[0.04017772898078,-0.00023473339388147,-0.038468737155199],[0.0067970207892358,-0.027371594682336,0.054574318230152]],[[-0.05653990060091,0.030054995790124,-0.051761958748102],[0.039909984916449,0.068153746426105,-0.044119045138359],[-0.041921820491552,-0.012932282872498,0.069873698055744]],[[-0.062727890908718,-0.14808730781078,-0.049552831798792],[-0.26368713378906,-0.08091413974762,-0.15780921280384],[-0.1247885376215,0.079171277582645,-0.035059940069914]],[[-0.0046316804364324,-0.059636250138283,0.018427336588502],[-0.0026305827777833,-0.0023050992749631,-0.076937414705753],[-0.21789215505123,-0.072140708565712,-0.018693113699555]],[[-0.11431729793549,0.061811104416847,0.082238525152206],[0.064632721245289,-0.023606665432453,-0.075455792248249],[-0.017329366877675,-0.061488166451454,-0.10121405869722]],[[-0.053790990263224,0.068842962384224,-0.10034864395857],[0.036371920257807,0.044549182057381,-0.049482014030218],[0.051133148372173,-0.045709539204836,0.0070570157840848]],[[0.041084725409746,-0.06191324442625,0.22083804011345],[0.071788273751736,0.068889603018761,0.092763982713223],[-0.078600615262985,-0.013947926461697,-0.037140559405088]],[[0.029208431020379,-0.084625832736492,0.009868691675365],[-0.13330465555191,-0.038287755101919,0.092816427350044],[-0.18540653586388,-0.084486797451973,0.0024045980535448]],[[0.14838060736656,0.017418954521418,-0.091561682522297],[-0.052988048642874,-0.039191033691168,-0.018196260556579],[-0.16946455836296,-0.02114625275135,-0.074446484446526]],[[-0.0025368102360517,0.1382309794426,0.0087663233280182],[0.066721849143505,-0.089160360395908,-0.026210548356175],[-0.060413643717766,-0.055852271616459,-0.025481881573796]],[[0.086461395025253,0.080775693058968,0.10646426677704],[-0.080820329487324,-0.038532808423042,0.034898299723864],[0.090075865387917,-0.061627388000488,0.053493306040764]],[[-0.19560942053795,-0.010956523939967,0.076848737895489],[-0.11729507893324,0.0418482683599,0.00069721299223602],[-0.10888981819153,0.06225448846817,0.031382013112307]],[[-0.049918673932552,0.012832227163017,-0.0064365467987955],[-0.024216232821345,-0.17434448003769,0.033868297934532],[-0.091628454625607,0.012078646570444,0.022535359486938]],[[-0.013271663337946,-0.12463094294071,-0.16843982040882],[-0.050103589892387,0.18654854595661,0.018551249057055],[-0.15214651823044,0.060428880155087,-0.067616209387779]],[[0.068715691566467,-0.077401347458363,-0.060913242399693],[-0.045827053487301,-0.15030324459076,-0.11587475240231],[-0.024706905707717,-0.16872844099998,0.03433258458972]],[[0.13214085996151,-0.073816120624542,-0.16865292191505],[0.057170502841473,0.0062805498018861,-0.057103648781776],[0.020611738786101,0.071481816470623,0.04446641728282]],[[0.056925855576992,-0.0075508840382099,0.053509082645178],[-0.10126914829016,-0.063853427767754,0.069436721503735],[-0.10814898461103,-0.060422733426094,0.064284637570381]],[[-0.13690365850925,-0.10907071083784,-0.050680920481682],[-0.15322402119637,-0.13675521314144,0.02205160073936],[-0.00050921645015478,-0.23578098416328,-0.0011600120924413]],[[0.086416617035866,0.079545967280865,-0.033697683364153],[0.032864782959223,-0.039936516433954,-0.15991823375225],[0.025412105023861,0.1253864467144,-0.083397381007671]],[[0.041180171072483,0.078810229897499,0.039400637149811],[-0.01942290738225,0.021461112424731,-0.035545028746128],[0.059698935598135,-0.064023606479168,-0.039917305111885]],[[0.019930908456445,-0.099686972796917,0.04929781332612],[-0.0059375767596066,0.06689490377903,0.11570461839437],[-0.043281383812428,0.10939682275057,0.089493945240974]],[[0.088388629257679,0.017470525577664,0.030317530035973],[-0.094627492129803,-0.054988265037537,0.022950554266572],[-0.082096755504608,-0.0030349045991898,0.008073496632278]],[[-0.10012604296207,-0.12980836629868,-0.0022135565523058],[-0.1223953589797,-0.18193066120148,-0.068921267986298],[0.070736221969128,-0.019415263086557,0.059173360466957]],[[-0.05120699852705,0.083419382572174,0.14152346551418],[0.10123523324728,0.050160605460405,0.056898038834333],[-0.061593547463417,0.10834834724665,0.078678399324417]],[[0.10392735898495,0.1025100722909,0.029359623789787],[0.089350081980228,0.04305175319314,0.009155067615211],[0.035331573337317,0.010225333273411,-0.005602371878922]],[[-0.041598964482546,0.00050119363004342,-0.041242823004723],[-0.075315088033676,0.011138253845274,0.0031085980590433],[-0.032202504575253,-0.012462527491152,-0.041437808424234]],[[-0.1135438606143,0.012885144911706,0.057603608816862],[-0.03078269213438,-0.04235128685832,0.02225648984313],[-0.098107658326626,-0.037022847682238,-0.01242068130523]],[[0.040343344211578,0.015917330980301,0.11283617466688],[-0.0017197013366967,-0.046137027442455,-0.15318880975246],[-0.026567114517093,0.026730844751,-0.0091277938336134]],[[-0.082145892083645,-0.034751631319523,0.036553207784891],[-0.0062096086330712,-0.0019333178643137,-0.044795006513596],[-0.062322646379471,-0.051824476569891,-0.023077255114913]],[[-0.087993361055851,0.051680397242308,0.14010284841061],[0.033056162297726,0.01473290193826,0.013929271139205],[-0.040589172393084,0.052830830216408,-0.22420774400234]],[[0.067869059741497,0.056946463882923,0.0076102428138256],[-0.028223944827914,0.025027498602867,0.0050326907075942],[-0.10678292810917,0.0019942850340158,0.0052589797414839]],[[-0.021546188741922,0.04603248462081,0.054246366024017],[-0.072665587067604,-0.055768050253391,0.07860853523016],[0.06138376519084,-0.021250441670418,0.058935824781656]],[[0.11651531606913,-0.037500627338886,-0.059941116720438],[-0.051238227635622,0.043774623423815,-0.062153309583664],[0.054423935711384,0.031723499298096,-0.0033331038430333]],[[-0.043047327548265,0.049169111996889,-0.092098325490952],[0.14927892386913,0.04444220662117,-0.093878328800201],[0.081045985221863,-0.072865836322308,-0.031431403011084]],[[0.062595278024673,-0.073153935372829,-0.017322439700365],[-0.058933898806572,0.10316682606936,0.18586239218712],[0.097106121480465,-0.13121522963047,-0.057550065219402]],[[-0.23562447726727,-0.04098330065608,-0.073454312980175],[0.029121587052941,-0.056898381561041,-0.034790076315403],[-0.10452618449926,0.1328783929348,-0.12020863592625]],[[0.0046557197347283,-0.11015459895134,0.13034138083458],[0.14430846273899,-0.19026218354702,0.16069665551186],[0.099529981613159,0.075009420514107,0.12254630029202]],[[0.050531096756458,-0.10416720807552,0.077296927571297],[0.18201281130314,0.094149321317673,0.04008361697197],[0.085541427135468,0.010484531521797,-0.027729224413633]],[[0.021428570151329,0.067799516022205,0.02308808080852],[-0.084386922419071,-0.26275125145912,0.036164380609989],[0.094093255698681,-0.18592546880245,-0.17686589062214]],[[-0.064167827367783,-0.14625711739063,-0.16088135540485],[-0.1162276044488,-0.084938891232014,-0.20333285629749],[-0.046204008162022,-0.0093370191752911,-0.058784652501345]],[[0.012864938937128,-0.072328582406044,-0.15291066467762],[-0.017450777813792,0.047742202877998,0.059370864182711],[-0.084275469183922,0.030009960755706,-0.029992364346981]],[[0.091148026287556,0.054455921053886,-0.026490233838558],[0.11014905571938,-0.046296987682581,0.0014642172027379],[0.040119040757418,-0.040337242186069,-0.1527377218008]],[[0.017440684139729,-0.19625477492809,-0.043856404721737],[0.080666996538639,0.032836135476828,-0.0010373563272879],[-0.084794901311398,-0.022051695734262,-0.0073691201396286]],[[-0.07219609618187,-0.042802099138498,-0.19932702183723],[0.082978792488575,0.034315790981054,-0.048896037042141],[0.14471852779388,0.17758968472481,0.13040456175804]],[[0.12946371734142,0.01962729357183,0.039328098297119],[0.09742671251297,0.042767461389303,0.04275968670845],[0.010416501201689,-0.070348754525185,0.11352676153183]],[[0.015864102169871,0.060905437916517,0.025068752467632],[0.053733941167593,-0.10094255954027,-0.039492968469858],[0.11146748811007,0.098960764706135,-0.036379311233759]],[[-0.062654219567776,0.10109851509333,0.079731866717339],[-0.052704561501741,0.073540277779102,-0.04123954474926],[-0.036267206072807,-0.094577297568321,0.0035161664709449]],[[-0.17958897352219,-0.042611762881279,-0.079596497118473],[0.0021786841098219,-0.022042259573936,0.092862583696842],[-0.018253283575177,-0.015512231737375,0.12358917295933]],[[-0.070130318403244,-0.12295804917812,-0.081189893186092],[0.0041842791251838,-0.0842509791255,-0.018595986068249],[0.0087528703734279,-0.033928405493498,-0.13713333010674]],[[0.15140368044376,-0.00034555926686153,-0.1827103048563],[-0.00049358466640115,0.0045081502757967,-0.0085268625989556],[0.04203587397933,-0.00023921029060148,0.019681349396706]],[[0.078703708946705,0.067768596112728,-0.023407759144902],[0.063483342528343,0.0096561368554831,0.015496106818318],[-0.10351617634296,0.076991483569145,0.070755921304226]],[[-0.04612098634243,0.046285167336464,0.026676762849092],[-0.0089411716908216,-0.037427175790071,0.10642250627279],[0.014864705502987,0.033075034618378,-0.092545554041862]],[[-0.028866577893496,-0.012743292376399,0.030071571469307],[-0.023041902109981,0.10213802754879,0.018955551087856],[-0.038360483944416,-0.0090039409697056,0.046555992215872]],[[-0.12594728171825,0.037479095160961,-0.14132225513458],[-0.084911815822124,-0.011296662501991,-0.036975659430027],[0.050635747611523,-0.0044033313170075,0.082442492246628]],[[0.056004386395216,0.030922709032893,-0.024634670466185],[0.12303557246923,0.11031437665224,0.02902789413929],[0.031310014426708,0.050227247178555,0.022991739213467]],[[0.033466868102551,-0.0095188906416297,0.076373837888241],[0.096384972333908,0.16490678489208,0.038851372897625],[-0.013642606325448,0.036926504224539,-0.009614298120141]],[[0.053853046149015,-0.030167834833264,0.022510472685099],[0.051515389233828,0.020677641034126,0.01194694172591],[0.047334272414446,0.026562299579382,0.0091840215027332]],[[0.075863033533096,-0.057875767350197,-0.10959085822105],[0.20042006671429,-0.01338869240135,-0.021128730848432],[-0.014356718398631,-0.098206132650375,-0.0011146814795211]],[[-0.0084636630490422,-0.0068428535014391,-0.056432973593473],[-0.077914610505104,-0.012635336257517,0.0057734549045563],[0.068497754633427,0.022099617868662,0.097448281943798]],[[0.022816555574536,-0.019603352993727,-0.019429136067629],[0.16959607601166,0.12529410421848,0.26369526982307],[0.060321658849716,-0.019025111570954,0.084769763052464]],[[-0.019012866541743,0.16043736040592,-0.057569533586502],[0.049971375614405,-0.13202391564846,-0.00072895630728453],[0.0084167588502169,-0.0038793322164565,0.033690292388201]],[[0.09938570857048,-0.099102668464184,0.054529096931219],[0.1027989089489,0.049857310950756,0.027740117162466],[0.069541431963444,-0.050069328397512,-0.15553811192513]],[[-0.10278183966875,-0.024287851527333,0.029141707345843],[-0.060277409851551,-0.13064889609814,0.039722967892885],[0.011953609995544,-0.0243836697191,0.14729538559914]],[[0.042571026831865,-0.022921973839402,-0.023355629295111],[-0.10370466858149,-0.024718638509512,-0.09714088588953],[-0.11023925989866,-0.09213549643755,0.020504621788859]],[[0.10752032697201,-0.14602839946747,0.073612816631794],[0.085714757442474,0.052365999668837,0.0070056384429336],[0.023228505626321,0.050733886659145,0.07118484377861]],[[0.16692991554737,0.080315157771111,0.035623051226139],[-0.12871268391609,-0.0019944086670876,-0.021654406562448],[-0.13440884649754,0.032947570085526,0.018282940611243]],[[0.11337949335575,-0.078508354723454,0.034790404140949],[0.086175106465816,0.024034263566136,-0.015149939805269],[0.011839588172734,-0.14268137514591,0.0009328217129223]],[[-0.0013488626573235,0.17298053205013,0.16734831035137],[-0.055397398769855,-0.011532889679074,0.13854958117008],[-0.099582977592945,-0.11765637248755,0.027596035972238]],[[0.10243840515614,-0.099948830902576,-0.047069426625967],[-0.04361966997385,0.11098609864712,0.14187921583652],[-0.075452156364918,-0.11335950344801,0.057889144867659]],[[-0.12685903906822,-0.052930306643248,-0.023840513080359],[0.061344001442194,-0.053864363580942,-0.10796029120684],[0.037083480507135,0.069973066449165,0.078510649502277]],[[0.097880482673645,0.018212098628283,-0.11583822220564],[-0.018375635147095,0.09013906866312,-0.10536364465952],[-0.0021478990092874,0.1041369587183,-0.04223096370697]],[[-0.028738498687744,-0.13035786151886,-0.17987163364887],[0.02063568122685,0.10110932588577,0.071640037000179],[0.050197262316942,0.0084743201732635,0.050262987613678]],[[-0.056067746132612,-0.051935460418463,-0.0066828364506364],[-0.043584790080786,-0.027436686679721,0.017692968249321],[0.06217909604311,0.0047905198298395,-0.1445422321558]],[[-0.079599015414715,0.076534524559975,-0.039110701531172],[-0.0031103368382901,0.014577824622393,0.10727156698704],[-0.027695911005139,0.085150621831417,-0.029641589149833]],[[-0.032517574727535,0.039980169385672,-0.032321415841579],[0.020884692668915,0.0049268128350377,0.02350096963346],[0.067976281046867,0.079177938401699,0.043434906750917]],[[-0.13995382189751,-0.007711214479059,0.026865568011999],[0.058691699057817,0.031614452600479,-0.02807953953743],[0.043857093900442,-0.085023149847984,-0.088955201208591]],[[-0.020485425367951,0.054970879107714,-0.006851255428046],[0.047210354357958,-0.012064320966601,0.0082057332620025],[-0.013638550415635,0.017492737621069,-0.17789289355278]],[[-0.037967186421156,-0.037041328847408,0.1039347872138],[0.032133545726538,-0.036478288471699,0.042875859886408],[0.044713161885738,0.051106013357639,-0.024343710392714]],[[-0.020089995115995,0.095557831227779,0.085881896317005],[0.069801241159439,0.044232420623302,0.028365159407258],[-0.056359373033047,0.0075836600735784,0.074309751391411]],[[0.080681689083576,-0.092235550284386,0.015895603224635],[0.030441254377365,0.033579520881176,0.047298401594162],[-0.025951536372304,-0.035542991012335,-0.0098527548834682]],[[-0.093639843165874,0.0045709344558418,0.068177573382854],[0.2277859300375,0.069923005998135,0.068536572158337],[0.025144232437015,0.07289581745863,0.031748723238707]],[[0.10917850583792,-0.072071447968483,-0.098574809730053],[-0.0097048236057162,0.018820991739631,0.032126292586327],[-0.028671169653535,-0.049966558814049,-0.03185810521245]],[[0.072222620248795,-0.040782701224089,0.13540948927402],[-0.0090691046789289,0.073571249842644,-0.029803067445755],[-0.0627681016922,-0.032142572104931,-0.10367575287819]],[[0.049425937235355,0.00094899063697085,0.046827182173729],[0.070950910449028,0.075966663658619,0.078448757529259],[0.040792565792799,-0.1307118833065,0.075097382068634]],[[-0.20157034695148,0.049949042499065,-0.011569522321224],[0.009988340549171,0.076030537486076,0.01545153465122],[0.05884912610054,0.11262463778257,0.061929985880852]],[[-0.095241948962212,0.02442117407918,0.060821197926998],[-0.064629010856152,0.12118040770292,0.047095119953156],[-0.15305444598198,0.051525443792343,-0.044033445417881]],[[0.0070689036510885,0.083030939102173,-0.032850556075573],[-0.025960674509406,-0.00057816033950076,-0.074233666062355],[0.08310779184103,0.056519150733948,0.13102348148823]],[[0.045124847441912,0.12167607992887,0.074153274297714],[-0.083184897899628,0.019343478605151,-0.040075369179249],[0.0071519711054862,0.038532920181751,0.015793595463037]],[[-0.077663518488407,0.027189109474421,-0.0262092910707],[0.0038402813952416,0.051922436803579,-0.0031146763358265],[0.0030091309454292,-0.022449258714914,-0.001904911827296]],[[-0.022936163470149,-0.079119928181171,-0.060628209263086],[0.10975033044815,0.0083902282640338,-0.024200681596994],[0.0060946247540414,-0.013656746596098,0.1236337274313]],[[-0.080679878592491,-0.01180565636605,0.035514891147614],[0.069154649972916,0.093416199088097,0.042412977665663],[0.059167262166739,0.054391730576754,0.036770261824131]],[[-0.090409249067307,0.019851557910442,0.040833454579115],[-0.016619801521301,0.028775716200471,0.061857022345066],[0.0085508590564132,0.020583374425769,0.077011719346046]],[[0.057133559137583,0.052762597799301,-0.042027555406094],[0.040691316127777,-0.043905321508646,-0.031517334282398],[0.1445267945528,-0.060973517596722,0.017937956377864]],[[-0.044475127011538,0.071452550590038,0.14876908063889],[-0.031389687210321,0.043152425438166,0.024911407381296],[0.1088864132762,-0.054232511669397,-0.080455206334591]],[[0.15543079376221,-0.020405862480402,-0.23087018728256],[-0.049346268177032,0.045640040189028,0.12982168793678],[-0.044373869895935,-0.032410800457001,0.086114004254341]],[[-0.14402070641518,0.041732762008905,0.15733428299427],[0.033578805625439,-0.085029266774654,-0.014300992712379],[0.04409771412611,0.015733528882265,-0.053680282086134]],[[-0.062144916504622,0.098960511386395,0.045138027518988],[-0.055175106972456,0.017197649925947,-0.034753281623125],[-0.069560758769512,-0.073406904935837,-0.028800256550312]],[[0.12307129055262,0.10928394645452,0.041103675961494],[-0.020045330747962,0.13994361460209,-0.0031929116230458],[-0.03510931506753,-0.11054971069098,0.055026333779097]],[[-0.072800114750862,0.038479134440422,-0.050540782511234],[-0.079238288104534,-0.030123429372907,-0.058040603995323],[0.050391301512718,0.057642210274935,0.011671169660985]],[[0.016009109094739,0.017923600971699,-0.018227025866508],[-0.024443408474326,-0.083293624222279,-0.027371359989047],[0.15077528357506,0.12932536005974,0.030330386012793]],[[-0.0040863608010113,-0.27687218785286,0.15439058840275],[-0.056349664926529,-0.1630237698555,-0.14411057531834],[-0.081082887947559,0.024845642969012,-0.13653209805489]],[[-0.057840436697006,0.0065573370084167,-0.020987145602703],[0.049479082226753,0.0039360849186778,-0.048236470669508],[0.075553327798843,-0.12805853784084,0.017588108778]],[[-0.11964339017868,0.0092638432979584,-0.070109494030476],[-0.031323153525591,-0.03094294667244,-0.039162538945675],[0.0018850341439247,-0.0064028571359813,-0.0042031370103359]],[[0.15998210012913,0.03905762732029,0.038879882544279],[0.085147716104984,0.019851062446833,-0.013019206002355],[-0.12130773812532,-0.028909573331475,0.034771472215652]],[[0.02685135602951,0.0017516650259495,-0.015343636274338],[0.017551228404045,-0.021718377247453,0.070608265697956],[-0.031121229752898,-0.00079067511251196,-0.045451793819666]],[[0.12898001074791,-0.17111691832542,0.10711237043142],[0.01584323681891,-0.01960719563067,0.093889713287354],[0.042677126824856,-0.031185349449515,0.032155409455299]]],[[[0.27469390630722,0.10945618897676,0.046788837760687],[0.12955646216869,-0.060922306030989,-0.055734388530254],[0.028534242883325,-0.054818980395794,-0.099318765103817]],[[-0.038367982953787,-0.20791845023632,-0.068301446735859],[0.060753703117371,-0.1650480479002,-0.15544834733009],[0.063722893595695,-0.029651695862412,0.042602065950632]],[[-0.057549245655537,0.088241390883923,0.028507465496659],[0.27441248297691,0.14739660918713,-0.059861317276955],[0.065915584564209,0.06020513176918,0.10037238895893]],[[-0.12816894054413,0.11057764291763,-0.012169381603599],[-0.13530254364014,0.094976149499416,-0.0043852413073182],[0.099431477487087,-0.02742750197649,0.22723595798016]],[[0.02277696877718,0.019545329734683,-0.077466867864132],[-0.08710540831089,-0.065433092415333,-0.085039153695107],[-0.04885245859623,-0.059804182499647,-0.039041139185429]],[[-0.052927881479263,-0.049124829471111,-0.040624585002661],[0.0086946673691273,0.0055521298199892,-0.15860886871815],[0.077229842543602,0.067447736859322,0.27188870310783]],[[0.0059765260666609,-0.069307684898376,0.038010243326426],[-0.028511345386505,0.028306758031249,-0.038864720612764],[-0.14253877103329,0.054759815335274,0.0024782759137452]],[[0.1260801255703,-0.0047840564511716,-0.0007782251923345],[-0.0060512954369187,-0.077516973018646,-0.0022575845941901],[-0.11489993333817,-0.0066321697086096,0.028538035228848]],[[0.035697523504496,-0.077156014740467,-0.019722064957023],[0.14997325837612,0.077981106936932,0.10469929128885],[-0.018658649176359,0.028086431324482,0.02233630977571]],[[-0.045695200562477,-0.015290511772037,0.080731943249702],[0.2254204005003,0.020953783765435,-0.032326173037291],[-0.030183536931872,-0.058844834566116,-0.054686862975359]],[[-0.14111268520355,-0.11250731348991,0.0017417639028281],[-0.006204120349139,-0.11845976114273,-0.012588106095791],[0.016662299633026,-0.050957653671503,0.11440162360668]],[[0.052228696644306,0.03678585588932,0.075084537267685],[-0.13180667161942,-0.00015215630992316,0.0056885275989771],[-0.10930896550417,-0.0055886660702527,-0.068366914987564]],[[-0.10620240867138,-0.027857933193445,-0.082041330635548],[0.076278388500214,0.0046622375957668,0.12119951099157],[0.1248872205615,-0.058345824480057,-0.037074632942677]],[[0.11145765334368,-0.043958857655525,-0.0004537291242741],[-0.097206376492977,-0.082230478525162,0.03113617375493],[0.1299624145031,-0.013248007744551,0.058962766081095]],[[-0.21517042815685,-0.018970038741827,-0.18492069840431],[0.13021646440029,0.04826532676816,0.11158704012632],[0.29443094134331,-0.17918962240219,0.029940843582153]],[[0.23816123604774,0.26263520121574,0.23930549621582],[-0.052404589951038,-0.076947681605816,0.15559883415699],[-0.016401436179876,-0.03262010961771,0.069193072617054]],[[-0.20891198515892,-0.02773535810411,-0.0048740659840405],[-0.13190357387066,0.024702914059162,0.090402230620384],[-0.077444478869438,-0.12394871562719,0.029913714155555]],[[-0.027832236140966,-0.13436055183411,-0.072675362229347],[-0.13575080037117,-0.018322315067053,-0.15005832910538],[-0.015523548237979,0.023887299001217,0.011904403567314]],[[-0.017268359661102,-0.2817200422287,-0.024569382891059],[0.063485823571682,0.052575539797544,0.21221390366554],[0.081775337457657,-0.048029091209173,0.061802394688129]],[[-0.079550586640835,0.076629720628262,0.085650578141212],[0.096387162804604,0.063300669193268,0.062733441591263],[-0.0286327265203,0.067408174276352,0.018557898700237]],[[0.13601464033127,0.18829271197319,-0.034914046525955],[-0.0518550388515,0.19088058173656,0.11967669427395],[0.080674827098846,-0.019262380897999,0.14944519102573]],[[-0.078631326556206,-0.24736680090427,-0.16207098960876],[0.060036513954401,0.048708029091358,0.037051882594824],[0.042362492531538,0.046462327241898,0.0239073690027]],[[-0.067244663834572,-0.13713981211185,-0.065062269568443],[-0.18508465588093,0.00022387501667254,-0.075446113944054],[0.0060491021722555,0.0044246399775147,0.054633568972349]],[[0.072919130325317,0.035466626286507,0.041323322802782],[-0.20178531110287,0.031229719519615,0.1250261515379],[0.13874891400337,0.11665826290846,0.021774683147669]],[[0.046647842973471,-0.12167355418205,0.0074455039575696],[-0.080897994339466,-0.056056421250105,-0.011752434074879],[-0.057482335716486,-0.042652789503336,-0.024378387257457]],[[-0.1451208293438,0.1592842489481,0.12380900233984],[0.03280821070075,-0.033847745507956,0.048317670822144],[0.074047721922398,-0.063976891338825,0.033885411918163]],[[0.075945012271404,-0.030462652444839,0.064198412001133],[0.22807484865189,0.19084432721138,0.137217476964],[0.12080320715904,0.14955417811871,0.15414273738861]],[[-0.036748293787241,-0.058341771364212,-0.054230522364378],[-0.059542823582888,-0.060805380344391,-0.077644199132919],[0.084711804986,-0.0046011195518076,-0.054931938648224]],[[-0.099244870245457,-0.041186057031155,-0.029170077294111],[-0.18010479211807,0.0020850717555732,0.016552703455091],[0.020960716530681,0.035181634128094,-0.040634971112013]],[[-0.07980427891016,0.035979695618153,0.077463120222092],[0.026133626699448,0.11875203996897,-0.080906435847282],[0.033403564244509,-0.16690862178802,0.19859556853771]],[[0.0056152548640966,-0.11057724803686,-0.035251446068287],[0.13013343513012,0.11780620366335,0.017942909151316],[0.011492676101625,-0.02195256575942,0.040912888944149]],[[0.15728487074375,0.091519013047218,0.033132933080196],[-0.018444688990712,-0.053775861859322,0.035459082573652],[-0.0096466094255447,0.061998095363379,0.11003038287163]],[[0.25019332766533,-0.26227253675461,-0.14255860447884],[-0.069391623139381,-0.096527442336082,-0.1182920858264],[0.0082844030112028,0.085704356431961,0.22355365753174]],[[-0.01207132358104,-0.017984783276916,0.07217626273632],[0.11455948650837,0.090077638626099,0.1277341991663],[0.043351892381907,-0.090840831398964,-0.062139134854078]],[[0.076889581978321,-0.084362678229809,0.010514899156988],[-0.0054095438681543,-0.067980445921421,0.025355832651258],[0.020037323236465,0.050340853631496,0.0084822922945023]],[[-0.080020420253277,-0.029081601649523,0.079918228089809],[-0.031623158603907,-0.16750754415989,0.10047441720963],[0.001298249932006,0.11010289937258,-0.044357005506754]],[[-0.094623453915119,0.11829239875078,0.046397436410189],[0.10065284371376,0.020650228485465,0.053825043141842],[0.055539976805449,-0.045232195407152,0.18706265091896]],[[0.055289588868618,0.019693771377206,-0.031204616650939],[-0.0092780143022537,0.046976093202829,0.086730815470219],[0.029766293242574,0.025715949013829,-0.015339748002589]],[[-0.016619296744466,0.061348330229521,-0.10560511052608],[-0.049474593251944,0.10718400776386,0.19325834512711],[0.035980589687824,-0.030505955219269,-0.1540801525116]],[[0.040346205234528,0.095696173608303,-0.11443620920181],[-0.096759602427483,0.04074690118432,-0.045088067650795],[-0.10479190945625,-0.025082942098379,-0.044779028743505]],[[0.21232752501965,-0.18933321535587,-0.095298357307911],[0.28656974434853,-0.038117162883282,0.49909391999245],[0.10397674888372,-0.15053531527519,-0.32919606566429]],[[-0.13847890496254,-0.032541841268539,-0.034409694373608],[0.011953979730606,0.11896536499262,0.079889252781868],[0.028859581798315,0.10669261962175,-0.02738880366087]],[[0.053815063089132,0.078139021992683,0.039436481893063],[0.075739204883575,0.0020181103609502,0.13552112877369],[0.044155452400446,0.085183322429657,-0.0057800794020295]],[[0.084370151162148,-0.0046477997675538,-0.010457055643201],[0.0027342743705958,-0.034958884119987,-0.031378138810396],[0.0060200360603631,-0.0026258914731443,0.021932935342193]],[[0.34637266397476,0.25371962785721,0.056284889578819],[-0.40159818530083,-0.0091030532494187,0.10207960009575],[0.045777402818203,-0.16823095083237,-0.21617467701435]],[[0.073135815560818,0.060891717672348,0.056718468666077],[0.0452218092978,0.09703815728426,0.18836432695389],[0.048193577677011,0.081579223275185,0.080535046756268]],[[-0.043468859046698,0.1337733566761,-0.12073287367821],[0.069686330854893,-0.058300621807575,-0.075851283967495],[-0.069577001035213,-0.079789869487286,-0.046227257698774]],[[0.17179995775223,0.014908640645444,-0.088334582746029],[0.13343980908394,0.06032232567668,-0.13036946952343],[-0.0067314212210476,0.065867312252522,0.029419142752886]],[[-0.021794999018312,0.069004200398922,0.071412168443203],[-0.013150047510862,0.010079185478389,0.11951057612896],[-0.0076098856516182,0.079951919615269,0.0049509215168655]],[[-0.046309411525726,-0.018989330157638,-0.082599848508835],[0.001019898452796,-0.13974937796593,0.038037933409214],[-0.0057634254917502,-0.043155312538147,-0.096504837274551]],[[0.093871101737022,0.047503836452961,-0.082874096930027],[0.14342744648457,-0.10991476476192,-0.086468078196049],[0.086763866245747,0.2035610973835,0.0085630547255278]],[[0.12172488123178,0.0074107828550041,0.18469280004501],[0.058066476136446,-0.02904112264514,0.11233413219452],[0.094353780150414,0.13360264897346,-0.024267600849271]],[[0.12790659070015,0.16958032548428,0.039635110646486],[-0.082823388278484,-0.08122993260622,-0.038911040872335],[-0.04106504842639,0.030579917132854,-0.027775434777141]],[[-0.079743325710297,-0.14225992560387,-0.19694368541241],[0.087272144854069,0.033374328166246,-0.34033510088921],[0.041219990700483,0.16212470829487,-0.12705700099468]],[[0.18766257166862,-0.10619592666626,0.066543839871883],[-0.02264841645956,0.030710631981492,-0.099052362143993],[-0.027495535090566,0.25027376413345,0.17111018300056]],[[-0.11687794327736,-0.019702756777406,0.12185154110193],[-0.078236743807793,0.051037471741438,-0.12400283664465],[-0.061003260314465,-0.10705403983593,0.050021078437567]],[[0.13792033493519,-0.0025146265979856,0.18564368784428],[0.26186320185661,0.1807376742363,0.0065536466427147],[-0.015526697970927,0.17992897331715,-0.0075548929162323]],[[0.044852711260319,-0.099114947021008,0.076529212296009],[0.038056500256062,-0.17446640133858,-0.14297810196877],[0.017791880294681,0.081182971596718,-0.055911637842655]],[[-0.065210327506065,0.106584854424,-0.023926764726639],[0.14609365165234,0.11079563945532,0.10330826044083],[-0.05863868445158,-0.032196905463934,-0.024712754413486]],[[0.11442613601685,0.076029352843761,-0.18564927577972],[-0.085184097290039,-0.2419740408659,-0.081655435264111],[-0.064168408513069,0.065142065286636,-0.043587286025286]],[[-0.17615333199501,-0.074761435389519,-0.088627837598324],[-0.1339665800333,0.050811935216188,-0.20713996887207],[-0.1383590400219,-0.043569844216108,0.059525430202484]],[[-0.029915122315288,-0.10425011068583,-0.095842003822327],[0.030229857191443,-0.13836732506752,-0.11638858914375],[0.058094955980778,0.0032510093878955,-0.21039862930775]],[[-0.094019547104836,0.15097491443157,0.36291241645813],[0.17489071190357,0.024497617036104,-0.24560648202896],[-0.072248138487339,-0.088729865849018,0.1737409979105]],[[-0.091558314859867,0.11733809858561,-0.02066264487803],[-0.032900270074606,0.079142786562443,0.15994411706924],[-0.15716247260571,-0.14529652893543,0.14318941533566]],[[0.0044420440681279,-0.021483771502972,-0.15127509832382],[0.15206409990788,0.0034395272377878,-0.19247700273991],[-0.052305165678263,-0.015890361741185,-0.098085179924965]],[[-0.027953362092376,-0.17457613348961,0.32927793264389],[-0.10919418185949,0.044692549854517,0.32439655065536],[-0.14258792996407,0.06469489634037,0.019769603386521]],[[0.097522012889385,-0.3208159506321,-0.22752729058266],[-0.0074701369740069,0.31998082995415,-0.10415014624596],[0.042489636689425,0.048707280308008,0.2561419904232]],[[0.078131176531315,0.025687133893371,-0.12721830606461],[-0.054054718464613,-0.088094875216484,-0.064294300973415],[0.0056516453623772,-0.10345818847418,-0.16159296035767]],[[-0.065862528979778,0.027894115075469,0.14733447134495],[0.10490590333939,0.09296078234911,0.037197608500719],[0.13662631809711,-0.059003286063671,0.14629569649696]],[[0.093070581555367,0.01504547521472,0.11853582412004],[0.14787571132183,-0.12747040390968,-0.062569446861744],[0.035245910286903,0.080127015709877,-0.043208945542574]],[[0.23709507286549,0.12430123239756,-0.055952187627554],[0.031009458005428,-0.038251969963312,-0.077342204749584],[-0.03481113165617,0.059596847742796,0.074393004179001]],[[-0.22542856633663,-0.23449411988258,0.038140118122101],[0.059905465692282,-0.13300916552544,0.073083244264126],[0.05912209302187,-0.063496589660645,-0.0937395170331]],[[-0.22194881737232,-0.24040149152279,-0.0033504790626466],[-0.019854353740811,-0.003343618940562,0.025123296305537],[0.010265881195664,0.15334038436413,0.073044888675213]],[[-0.087081260979176,0.025857320055366,-0.028785547241569],[-0.02360655926168,-0.033456448465586,-0.026995258405805],[-0.14143213629723,-0.021623307839036,-0.031603749841452]],[[0.054957736283541,0.056881114840508,0.16647452116013],[0.076824858784676,0.11870235204697,0.047844678163528],[0.063167370855808,0.05102726072073,0.11126116663218]],[[0.13482023775578,-0.19232013821602,-0.016811670735478],[0.16539213061333,0.043931182473898,-0.088669314980507],[-0.037373822182417,0.15320871770382,0.091827765107155]],[[-0.1517573595047,-0.1834451854229,-0.20025753974915],[-0.05943350866437,-0.0047844438813627,-0.053550776094198],[0.14930893480778,0.075875028967857,-0.040026694536209]],[[0.12810687720776,0.025018304586411,0.094107270240784],[0.17653006315231,0.08683218061924,0.11310844123363],[0.04547331854701,0.0031865171622485,0.1098959222436]],[[-0.064092338085175,0.098060376942158,0.12117044627666],[0.12183599919081,0.057447802275419,0.010409373790026],[0.060264300554991,-0.050671096891165,-0.044293683022261]],[[0.071328826248646,-0.062440566718578,-0.12621086835861],[0.019307009875774,0.045600026845932,-0.17617870867252],[-0.12613767385483,-0.070241503417492,-0.014946025796235]],[[0.10614342987537,-0.1252898722887,-0.014309332706034],[0.071085147559643,0.092068560421467,-0.056342732161283],[-0.067621350288391,0.067379087209702,-0.055273801088333]],[[-0.12808093428612,0.086050197482109,0.11922590434551],[-0.20946006476879,-0.01623859629035,-0.25988125801086],[0.080521263182163,-0.038190893828869,-0.03265542909503]],[[-0.051300909370184,-0.071024142205715,-0.054671231657267],[0.064414083957672,0.13873387873173,-0.074400097131729],[0.0020585989113897,0.023870976641774,-0.0066571370698512]],[[0.01100808288902,0.056881502270699,-0.12280622124672],[0.033727254718542,-0.13502079248428,-0.083380863070488],[0.063758082687855,0.050240442156792,0.066407240927219]],[[0.26350849866867,0.080148182809353,0.15594567358494],[0.054186835885048,0.05582482367754,0.19024668633938],[0.044297032058239,-0.0082002840936184,-0.018486030399799]],[[-0.035364367067814,0.03529966622591,-0.0010625869035721],[0.097325228154659,-0.062457628548145,-0.034694533795118],[-0.022470358759165,0.045557498931885,0.11734481155872]],[[-0.0014514728682116,0.10859321057796,0.31727266311646],[0.10167530179024,0.13245187699795,0.14235484600067],[0.14963780343533,0.046560697257519,-0.048513550311327]],[[-0.1353961378336,0.0025168899446726,0.12434688210487],[0.10267633199692,0.028611386194825,0.009702798910439],[0.072594232857227,-0.041481848806143,0.025847239419818]],[[-0.012077443301678,0.078778721392155,0.0097445901483297],[-0.11708377301693,-0.035672076046467,-0.092681460082531],[-0.10762555152178,-0.058597259223461,0.029014794155955]],[[0.057882379740477,-0.012603525072336,-0.26199087500572],[-0.010761003941298,0.033596735447645,0.0077419020235538],[0.096672467887402,-0.036692842841148,-0.054237015545368]],[[-0.12008003890514,0.051128000020981,-0.15363097190857],[-0.023746483027935,-0.035248629748821,-0.042208444327116],[0.12922233343124,-0.012597252614796,-0.031537819653749]],[[0.060118466615677,0.22207142412663,0.19574408233166],[0.015907185152173,-0.030236717313528,0.0012195581803098],[0.038118936121464,-0.039096165448427,-0.12028452008963]],[[0.044031918048859,-0.13803771138191,-0.098072707653046],[0.012012313120067,0.021598882973194,-0.048281315714121],[0.10139103233814,0.055767137557268,-0.055184919387102]],[[0.34482342004776,0.18525259196758,0.29280903935432],[0.033080413937569,0.080811873078346,-0.12825438380241],[-0.042353224009275,0.083398297429085,0.074572443962097]],[[-0.13982324302197,-0.05238788574934,-0.13803844153881],[-0.11839037388563,-0.1242868155241,-0.2925973534584],[-0.039499513804913,-0.27004286646843,0.12320960313082]],[[0.11974822729826,0.13006490468979,0.10241959989071],[0.038589086383581,0.021449755877256,0.13921898603439],[0.10292678326368,-0.090580351650715,0.033646494150162]],[[-0.10237520188093,-0.069900222122669,0.081243738532066],[-0.049214288592339,-0.10253246873617,0.10222315043211],[0.028963619843125,-0.13665705919266,-0.04774733632803]],[[0.28319948911667,0.082813538610935,0.0095312120392919],[0.0823043435812,0.11830339580774,0.21977631747723],[0.16134533286095,0.069078914821148,0.2255949229002]],[[-0.13317614793777,0.11886850744486,-0.00029414033633657],[0.13129889965057,0.011245793662965,0.037317849695683],[0.018780440092087,-0.1844467073679,-0.16396562755108]],[[0.082805708050728,0.090004041790962,0.091130651533604],[-0.077547393739223,0.094848841428757,0.089258059859276],[0.075038611888885,0.010121083818376,0.031784202903509]],[[-0.18683342635632,-0.20379142463207,-0.29301404953003],[0.0067007038742304,-0.097684197127819,-0.013287052512169],[0.12862400710583,0.057464338839054,0.043411962687969]],[[-0.023982705548406,0.0039466475136578,0.077344410121441],[0.19492839276791,0.2162076830864,0.057916164398193],[0.032799653708935,-0.038803022354841,0.017255108803511]],[[-0.076252982020378,-0.045117288827896,-0.0051125450991094],[-0.019411550834775,0.017796309664845,0.087423108518124],[0.08484523743391,-0.084182471036911,-0.12161941826344]],[[-0.00085569906514138,0.020099356770515,0.10655385255814],[0.021501677110791,0.0084126191213727,0.1051477715373],[-0.0031396842096001,-0.10029454529285,-0.0085221212357283]],[[0.088718600571156,0.12412691116333,0.0055179228074849],[-0.0043590199202299,-0.070689916610718,0.040493812412024],[-0.058896742761135,0.044820580631495,0.047041445970535]],[[-0.049286983907223,-0.0029666516929865,0.06334512680769],[-0.054003279656172,-0.017525494098663,0.044476244598627],[0.058346692472696,0.10878227651119,0.068131096661091]],[[-0.027962336316705,-0.013218068517745,0.095487147569656],[-0.20813417434692,0.09981170296669,0.038030557334423],[0.096703588962555,0.088628441095352,0.13505148887634]],[[0.038630224764347,-0.054080255329609,-0.18800693750381],[0.091742195188999,-0.062934935092926,-0.059599187225103],[0.22026345133781,-0.032122366130352,0.070553280413151]],[[0.027895895764232,-0.12219797074795,-0.12630878388882],[-0.089779235422611,-0.037656165659428,0.15186633169651],[-0.11645986884832,-0.040831338614225,-0.13954807817936]],[[0.11109418421984,0.0049361702986062,0.0031726025044918],[0.088995404541492,-0.074472166597843,0.020411564037204],[0.10665655881166,0.061334274709225,-0.11921959370375]],[[-0.092739939689636,0.063578933477402,0.014996065758169],[-0.03216652199626,0.03398097679019,0.022545294836164],[0.0014644240727648,0.0032120693940669,-0.0010991459712386]],[[-0.26046970486641,-0.069903992116451,0.051083702594042],[-0.061291910707951,-0.13733460009098,-0.16539545357227],[-0.097292169928551,0.26058757305145,0.015554768033326]],[[-0.27280578017235,0.0013236018130556,-0.036199010908604],[0.045081682503223,-0.078691944479942,-0.03859020024538],[-0.13316628336906,-0.11044919490814,0.0037242448888719]],[[0.12849174439907,0.00089134520385414,-0.0013379702577367],[0.035619955509901,0.07123377174139,-0.068915650248528],[-0.055123519152403,-0.016812972724438,0.00033976553822868]],[[0.1307759732008,-0.16582137346268,0.020387528464198],[-0.073743134737015,-0.11641734838486,-0.1516910046339],[0.12999849021435,-0.039658028632402,-0.14079362154007]],[[-0.02706540748477,-0.24922387301922,-0.20426915585995],[0.042141519486904,0.09493114054203,-0.081802889704704],[0.12207128107548,0.01979479379952,-0.012984644621611]],[[-0.097124628722668,-0.21974003314972,-0.36985197663307],[-0.010805855505168,-0.051807068288326,-0.17643594741821],[-0.013509447686374,-0.057263892143965,-0.043293911963701]],[[-0.053763207048178,0.069110848009586,0.049985505640507],[0.041252303868532,0.036068860441446,0.19365967810154],[0.033090107142925,-0.024737503379583,0.093792833387852]],[[0.11549714207649,0.069929592311382,-0.15052072703838],[0.068339474499226,0.11114104837179,-0.033952850848436],[0.069039061665535,0.088794864714146,0.048791982233524]],[[-0.18129131197929,-0.049773644655943,-0.073719829320908],[0.1617236584425,0.1944969445467,0.13115455210209],[-0.077979281544685,0.09949266910553,0.19399799406528]],[[-0.083513244986534,-0.17748728394508,-0.0004098993667867],[-0.10620550066233,-0.071984328329563,-0.090843200683594],[0.052072647958994,-0.047007817775011,-0.036070305854082]],[[0.012837030924857,-0.11891721189022,-0.054389324039221],[-0.26176163554192,-0.058976743370295,0.091273494064808],[-0.10331013053656,-0.021104294806719,-0.1347481906414]],[[-0.13585537672043,0.074594616889954,-0.26197129487991],[0.008738910779357,-0.072622828185558,0.15117539465427],[0.066969655454159,-0.011814915575087,-0.019239949062467]],[[-0.0046310876496136,-0.061582133173943,-0.20164559781551],[-0.10073762387037,0.020469352602959,-0.003168003866449],[0.054165162146091,0.20939761400223,0.094742074608803]],[[0.1791672706604,0.017926301807165,-0.0046123159117997],[0.26382002234459,0.073231555521488,0.29064667224884],[0.12784656882286,-0.018990311771631,-0.095311492681503]],[[-0.10163312405348,-0.091764099895954,-0.088091187179089],[-0.092098191380501,-0.048788249492645,0.019765917211771],[0.080648504197598,0.10708364844322,0.23649056255817]],[[-0.1777149438858,-0.054357327520847,-0.07745186239481],[-0.43037444353104,-0.088854685425758,-0.086856089532375],[0.068346776068211,0.15161903202534,0.069320701062679]],[[-0.19959758222103,0.0024681852664798,0.073193252086639],[0.087106235325336,0.01090082526207,0.088067136704922],[0.041979841887951,0.16572411358356,0.10479298233986]]],[[[0.012676387093961,0.0017139235278592,-0.041859325021505],[0.010556162334979,0.038507100194693,-0.021658578887582],[-0.016440497711301,0.0024779131636024,0.037366464734077]],[[0.015848457813263,-0.00051969441119581,-0.031167479231954],[-0.01819271966815,-0.064898997545242,-0.069497264921665],[0.02000349573791,0.035161051899195,0.0071142357774079]],[[-0.016525456681848,0.0044939704239368,0.052649240940809],[-0.049675423651934,-0.090343296527863,0.0059986324049532],[-0.0019235564395785,0.033590253442526,-0.053992580622435]],[[0.025894982740283,0.0043567423708737,-0.013753236271441],[-0.0045521436259151,-0.0024803238920867,0.028153827413917],[-0.074470177292824,-0.056314241141081,0.071711421012878]],[[0.0074345348402858,-0.090621918439865,-0.035957049578428],[-0.04094048961997,0.032006911933422,0.005955783650279],[-0.00022040569456294,0.0053248102776706,0.027672154828906]],[[0.056641224771738,0.013838490471244,0.044305980205536],[0.028228424489498,0.04845879971981,-0.0033320751972497],[-0.058627035468817,-0.05895859003067,0.03042858466506]],[[0.089740723371506,0.072489768266678,-0.033260121941566],[-0.089979447424412,0.047129396349192,-0.011878756806254],[-0.092898227274418,0.01457445230335,-0.066251486539841]],[[0.047771904617548,0.067260891199112,-0.094937458634377],[-0.033969841897488,-0.01865585707128,-0.020250506699085],[0.046717822551727,-0.042801260948181,-0.012128457427025]],[[0.00047027197433636,-0.011331185698509,0.03390995413065],[0.04460621997714,0.073629379272461,-0.0084044020622969],[-0.044668812304735,-0.093601427972317,-0.04149241745472]],[[-0.03267003968358,-0.0011398344067857,0.0099945804104209],[0.010308598168194,0.032084297388792,0.069556102156639],[-0.091643504798412,0.022301908582449,-0.0080598583444953]],[[0.038833424448967,-0.022960005328059,0.01679408736527],[-0.067984715104103,-0.054326586425304,-0.01424100715667],[0.028127256780863,-0.04718454927206,-0.014022645540535]],[[-0.00076099974103272,0.032040845602751,0.022955378517509],[0.027288760989904,0.0042296899482608,0.0052015096880496],[-0.059750340878963,0.015452472493052,-0.0668755620718]],[[0.042092986404896,0.084587506949902,0.019806863740087],[0.039185229688883,0.047562509775162,-0.01020974945277],[-0.011346964165568,0.045858290046453,-0.07546416670084]],[[0.020633686333895,0.01028635725379,-0.016470812261105],[0.00036090685171075,-0.03079205006361,0.0087306452915072],[0.030524672940373,0.027123063802719,0.025530610233545]],[[-0.0273720882833,0.00018033661763184,-0.017303934320807],[-0.0054202089086175,-0.062556587159634,-0.017346166074276],[-0.033137962222099,0.00065462110796943,-0.011843922547996]],[[-0.0094818044453859,-0.0091422069817781,0.015032122842968],[-0.076023422181606,-0.098981387913227,0.084379442036152],[0.016681952401996,0.042230132967234,0.028958553448319]],[[-0.026256280019879,-0.042421519756317,-0.019064081832767],[0.031467236578465,0.024755222722888,-0.042639266699553],[-0.029555827379227,0.016505740582943,0.055958341807127]],[[-0.059810034930706,0.040632601827383,-0.023125555366278],[-0.07527732104063,-0.016873767599463,0.0098046781495214],[-0.0098023461177945,0.00043350472697057,-0.067775830626488]],[[0.027311444282532,-0.017853200435638,-0.0020244682673365],[0.033599730581045,-0.063179574906826,0.024688871577382],[-0.044308073818684,0.00073898234404624,0.01705115661025]],[[0.047607485204935,0.026044799014926,0.085250295698643],[-0.049423173069954,0.022866535931826,0.019247353076935],[-0.036133531481028,0.01296538952738,0.10663016140461]],[[0.049351416528225,-0.046536013484001,-0.00095278880326077],[0.0089691830798984,0.002865995047614,-0.017622927203774],[-0.026279116049409,-0.065389335155487,0.041476279497147]],[[0.012724775820971,0.035469923168421,-0.072508037090302],[-0.0245246514678,-0.039264753460884,0.013274539262056],[0.024468742311001,-0.017789911478758,0.04713636264205]],[[-0.012953488156199,-0.070294812321663,-0.077775701880455],[-0.04820691794157,-0.02957265265286,-0.059728365391493],[0.02905835583806,0.0064837676472962,-0.02880721911788]],[[0.015482801944017,0.035846028476954,0.048657599836588],[-0.035948622971773,-0.07869778573513,0.05097857862711],[0.048227779567242,0.054693460464478,-0.022390404716134]],[[0.046349246054888,0.043558180332184,0.056688640266657],[0.033238332718611,0.0871277526021,0.017176596447825],[-0.082517512142658,-0.073987029492855,0.02859716117382]],[[-0.029003527015448,-0.031045058742166,-0.030438374727964],[-0.026640862226486,-0.0011807433329523,0.087457217276096],[0.014355367980897,-0.028226131573319,0.088102512061596]],[[0.019006632268429,0.043360028415918,0.076033808290958],[0.010288161225617,0.026001239195466,-0.013902802020311],[-0.014637530781329,-0.026806240901351,-0.030211161822081]],[[-0.023730576038361,-0.044806811958551,-0.013225080445409],[0.016618423163891,-0.0075270961970091,0.056807588785887],[-0.016563242301345,0.043469253927469,0.077444911003113]],[[-0.017275929450989,-0.036105062812567,0.0065629323944449],[-0.023396724835038,-0.023939354345202,0.11891280114651],[-0.065616726875305,0.054357700049877,0.014990653842688]],[[-0.0024244505912066,-0.014871922321618,0.043011479079723],[-0.025706954300404,-0.039472941309214,-0.084406442940235],[-0.042053926736116,-0.0090663209557533,0.03997154161334]],[[0.078085325658321,-0.013252614066005,-0.025203974917531],[-0.00053731584921479,0.038311529904604,0.03828189522028],[0.0085830390453339,0.029789436608553,-0.064181365072727]],[[0.0036973550450057,-0.055831015110016,0.015717390924692],[-0.0055379699915648,-0.023622507229447,-0.010840381495655],[-0.0071967565454543,-0.028262073174119,-0.0076386113651097]],[[0.03657815232873,0.019961673766375,-0.029135128483176],[0.013205502182245,0.018961802124977,0.012177566997707],[0.017319491133094,0.064893186092377,-0.10729612410069]],[[-0.025060890242457,0.0098909959197044,0.013138360343874],[-0.032248068600893,0.033459439873695,-0.0022586956620216],[-0.0073178121820092,-0.0028788009658456,-0.0046077892184258]],[[0.045804549008608,0.017535787075758,0.018579054623842],[0.04685228317976,0.048171643167734,0.04180534183979],[-0.070242390036583,0.063945770263672,-0.050648737698793]],[[0.032097183167934,0.050714623183012,-0.034420378506184],[0.010259050875902,-0.090298779308796,0.02447678335011],[-0.052224952727556,-0.047102358192205,0.053310818970203]],[[0.022334977984428,0.037789903581142,-0.0006517909350805],[-0.053202539682388,0.026821719482541,-0.0056086513213813],[0.048554874956608,-0.017317183315754,0.0043496894650161]],[[0.044148940593004,-0.0069613796658814,-0.020428160205483],[-0.023027312010527,-0.028102258220315,0.059253115206957],[-0.078551180660725,0.0061489189974964,0.003237760392949]],[[-0.009196256287396,0.030779480934143,-0.023422580212355],[0.037576712667942,-0.037069585174322,-0.057714980095625],[0.020480437204242,0.050910338759422,-0.054370533674955]],[[-0.012671654112637,-0.028796138241887,0.0086720902472734],[-0.0050830231048167,-0.028073620051146,0.092078745365143],[0.010556030087173,0.00018320088565815,0.001935497391969]],[[0.0110207432881,7.2676113632042e-05,-0.014901985414326],[-0.021208990365267,-0.032686378806829,-0.020120888948441],[0.018029822036624,0.052885510027409,0.01480221375823]],[[0.024896040558815,-0.061162516474724,-0.0048546562902629],[-0.020319314673543,-0.032151903957129,0.029813397675753],[0.0061021861620247,0.074274286627769,-0.0032936686184257]],[[0.017417194321752,-0.046011257916689,-0.056697864085436],[0.0063550150953233,0.030156968161464,-0.048516195267439],[-0.041964925825596,0.031198969110847,-0.0034693412017077]],[[-0.016082564368844,0.02589344419539,0.0068145464174449],[-0.03444192931056,-0.13597777485847,-0.04191192612052],[0.020340379327536,-0.072971403598785,-0.050154939293861]],[[-0.02592053823173,-0.016339212656021,-0.010368135757744],[0.021743681281805,0.092580318450928,0.079662628471851],[0.019429657608271,-0.057970821857452,-0.011217908002436]],[[-0.014035911299288,-0.0038769168313593,-0.029134722426534],[0.11876145750284,-0.020428739488125,0.023314975202084],[-0.013393989764154,-0.024134257808328,-0.016046613454819]],[[0.055272605270147,-0.023645300418139,0.0025633510667831],[0.010554689913988,-0.025587100535631,-0.022129526361823],[0.092695705592632,-0.053474307060242,0.019582869485021]],[[-0.019281765446067,-0.046425342559814,0.011430639773607],[-0.001559424563311,-0.0074985064566135,-0.062985844910145],[0.0064993179403245,0.016045017167926,-0.073891885578632]],[[0.042082354426384,2.3368957045022e-05,-0.011452237144113],[-0.016569003462791,0.0035910450387746,0.053357288241386],[0.034515827894211,-0.036676410585642,-0.0061738817021251]],[[-0.000113919886644,-0.019628247246146,0.03354600071907],[-0.045421436429024,0.043261870741844,0.010686465539038],[0.045237172394991,0.056484818458557,-0.032471287995577]],[[-0.010436906479299,0.055075578391552,-0.043322119861841],[0.044022846966982,0.029583480209112,-0.03935993462801],[0.0052430583164096,0.030470445752144,0.032033085823059]],[[-0.026603447273374,-0.035286657512188,0.031974468380213],[-0.033550512045622,0.03193562105298,0.074406497180462],[-0.054624237120152,-0.0070071760565042,0.022911394014955]],[[-0.031098119914532,-0.071385949850082,0.0039040620904416],[0.015456480905414,0.048078298568726,-0.039776299148798],[-0.021819895133376,0.089890122413635,0.032541383057833]],[[-0.034432467073202,-0.0045761223882437,0.052157554775476],[-0.00036367314169183,-0.053589187562466,-0.026653252542019],[0.052378557622433,0.0014978011604398,-0.030760779976845]],[[-0.0077346479520202,0.041316997259855,0.024074764922261],[-0.043753679841757,-0.034185986965895,0.068223647773266],[-0.075181595981121,-0.038361441344023,0.00066057842923328]],[[0.019136846065521,-0.0040156063623726,0.0056106126867235],[-0.005920841358602,-0.033928301185369,-0.0014489598106593],[0.029076727107167,-0.035865049809217,0.10761040449142]],[[-0.002441365737468,-0.00026296215946786,0.010414665564895],[0.0039252084679902,0.031072495505214,-0.099002085626125],[0.05383114144206,0.004733803216368,-0.056196089833975]],[[-0.050634734332561,0.090707324445248,-0.041245605796576],[0.034178707748652,-0.020125843584538,0.054399702697992],[-0.030236266553402,0.024083852767944,-0.017843559384346]],[[0.069212809205055,0.030957993119955,0.014558263123035],[0.0019180449889973,6.6651802626438e-05,0.022748874500394],[0.05660442635417,-0.015827612951398,-0.079906992614269]],[[0.03315082937479,-0.026821410283446,-0.028422625735402],[-0.011693758890033,-0.036063607782125,-0.051856722682714],[0.040552973747253,-0.012862077914178,0.017182361334562]],[[-0.093139976263046,-0.012585704214871,-0.032812390476465],[0.015480010770261,-0.051687076687813,-0.052468691021204],[0.014304965734482,0.05706138163805,0.01361268106848]],[[-0.095852322876453,-0.013851060532033,0.008481727913022],[-0.015015431679785,-0.066187731921673,0.023380495607853],[0.0078269802033901,0.067575871944427,-0.022283079102635]],[[0.018215537071228,-0.026239696890116,0.040478635579348],[0.075844466686249,0.047980062663555,0.005673318170011],[-0.061097957193851,0.046522613614798,0.021142844110727]],[[0.03462104126811,0.030542191118002,-0.024695137515664],[0.015468867495656,-0.095211647450924,0.056602369993925],[-0.043724182993174,-0.066746838390827,0.040027361363173]],[[-0.00038314471021295,-0.041032370179892,-0.0022701448760927],[0.09283234924078,0.040108326822519,-0.045141443610191],[-0.053664643317461,0.0040265670977533,0.02273883484304]],[[-0.075737819075584,-0.018190762028098,0.0089373076334596],[0.0034122839570045,0.022762471809983,-0.035414695739746],[-0.050544526427984,-0.0012101532192901,-0.0017467056168243]],[[-0.039750855416059,0.036922711879015,-0.027478247880936],[-0.028041392564774,-0.03277001157403,0.019456014037132],[-0.012630571611226,0.032792132347822,-0.030880192294717]],[[0.011731300503016,0.0059213102795184,0.013541198335588],[0.016880908980966,-0.010514956898987,0.080724030733109],[-0.02521413564682,0.025059342384338,-0.043746437877417]],[[2.4242708605016e-06,0.003063176991418,0.058306865394115],[-0.050753869116306,0.081453293561935,0.039303224533796],[-0.14031951129436,0.0052145984955132,0.062131464481354]],[[-0.026299325749278,0.057261798530817,0.077856488525867],[-0.058333300054073,0.003430315060541,0.076579257845879],[0.050170037895441,-0.067580692470074,0.042390462011099]],[[0.01531688682735,0.035765659064054,0.067104786634445],[-0.023925049230456,-0.010165513493121,0.010838849470019],[0.026378929615021,0.1119571775198,0.005138773471117]],[[0.058853831142187,0.053002692759037,0.038017887622118],[0.010627208277583,0.004880478605628,-0.012466388754547],[-0.014504631049931,0.074426047503948,0.042998176068068]],[[0.045610528439283,-0.09518188983202,0.0080187479034066],[-0.0007699309499003,0.10574778169394,-0.024745408445597],[-0.0012202671496198,-0.081210784614086,0.01631055213511]],[[0.048825707286596,-0.033843100070953,0.049826681613922],[-0.077869705855846,0.039047323167324,0.078788183629513],[0.046570435166359,0.051071990281343,-0.06691487878561]],[[0.15462383627892,0.0074062831699848,-0.033833634108305],[0.01476062182337,0.0098213599994779,0.074040569365025],[-0.014914765954018,-0.079346895217896,0.026581328362226]],[[-0.030587874352932,-0.046783424913883,0.030602673068643],[0.026439333334565,-0.071269832551479,0.016273217275739],[0.0071561168879271,-0.063681729137897,-0.041393499821424]],[[-0.013423862867057,-0.010438685305417,0.0033625748474151],[0.0042854296043515,0.039767026901245,-0.038329221308231],[0.0037155183963478,0.017869686707854,-0.02520745433867]],[[0.027520643547177,0.0021484189201146,0.078084424138069],[-0.023232825100422,0.03223418071866,-0.028644524514675],[0.039200458675623,-0.045835863798857,0.0068041859194636]],[[-0.017131574451923,-0.011982498690486,-0.0022708855103701],[0.0064586568623781,-0.01610647328198,0.029961679130793],[0.040414229035378,0.0074318707920611,0.0279376283288]],[[0.016500795260072,0.025882814079523,-0.016899403184652],[-0.0097210118547082,-0.027968812733889,-0.020291533321142],[-0.00054489175090566,0.013255474157631,0.01901438087225]],[[-0.03343278542161,0.030181156471372,-0.032021034508944],[0.0084451735019684,-0.0084638120606542,0.036966405808926],[0.03785365819931,0.010860209353268,0.083904877305031]],[[-0.020000660791993,0.051253132522106,0.0057697976008058],[-0.059957914054394,0.0028511448763311,0.084130823612213],[0.04853941872716,-0.035239167511463,0.037437193095684]],[[-0.0062348344363272,0.0040918225422502,0.024357905611396],[1.7062560800696e-05,0.066507838666439,-0.018773600459099],[-0.044525798410177,0.059629708528519,-0.043379530310631]],[[0.056748740375042,0.020798094570637,-0.020932801067829],[-0.034350901842117,-0.03748170286417,0.0024346043355763],[0.032531801611185,-0.00538579095155,0.038242042064667]],[[0.0069242450408638,-0.0097766648977995,-0.067050352692604],[0.023428704589605,-0.041001785546541,0.029539389535785],[-0.025563372299075,-0.045927572995424,0.096481740474701]],[[-0.058675598353148,-0.01291036605835,0.017163094133139],[-0.012792105786502,0.006667890585959,-0.024158019572496],[-0.048106491565704,-0.023127160966396,0.061481028795242]],[[-0.066490679979324,0.033742219209671,0.03617300465703],[-0.079257532954216,-0.019335282966495,0.072101593017578],[-0.020405719056726,0.0161746237427,0.073645479977131]],[[0.0079829385504127,-0.013386755250394,0.049888972193003],[-0.017427401617169,-0.0033207023516297,-0.00045490474440157],[-0.088209323585033,0.050262358039618,0.021201971918344]],[[-0.064544171094894,-0.048494789749384,-0.0043508112430573],[0.043873529881239,0.0077366740442812,0.023843536153436],[0.043994840234518,0.045274514704943,0.013487916439772]],[[0.060972861945629,-0.050204839557409,-0.053161639720201],[0.052469573915005,0.016559476032853,-0.025227632373571],[-0.012317581102252,-0.027070347219706,-0.016709933057427]],[[-0.0137854013592,-0.032735262066126,0.081399448215961],[-0.030649099498987,-0.026490461081266,-0.056159608066082],[0.044985745102167,0.045066803693771,-0.030148593708873]],[[-0.022433694452047,-0.023595537990332,0.087189987301826],[-0.0036974984686822,-0.070568688213825,0.049689058214426],[-0.014088865369558,-0.0071106678806245,0.063586749136448]],[[0.030309295281768,-0.048910446465015,-0.030711442232132],[-0.04424150288105,0.088602140545845,-0.0066930861212313],[-0.012735872529447,0.030150346457958,-0.049699231982231]],[[-0.043310359120369,-0.058574445545673,0.0075965765863657],[0.080101706087589,-0.050181355327368,-0.074072130024433],[0.0077774124220014,-0.017725044861436,-0.0032624821178615]],[[0.036672245711088,-0.041086997836828,-0.00069794023875147],[-0.0087993200868368,0.0046169734559953,0.0010995966149494],[-0.002401856938377,0.0023603134322912,-0.052812810987234]],[[-0.032000593841076,-0.024224523454905,0.0019930007401854],[0.060142047703266,0.012933946214616,-0.033406410366297],[-0.017046317458153,-0.0015674794558436,-0.038752865046263]],[[0.036754798144102,0.045000333338976,0.045139446854591],[-0.066377118229866,0.020752940326929,0.039636380970478],[-0.029132708907127,0.049973342567682,-0.02586780115962]],[[-0.0027362927794456,0.027129231020808,-0.048891544342041],[-0.024052454158664,-0.020276673138142,-0.047659359872341],[-0.059485509991646,0.098464176058769,0.0011320029152557]],[[-0.011579412035644,0.048950981348753,-0.0060279602184892],[0.060450714081526,-0.025832328945398,0.013023847714067],[-0.021693291142583,0.014697247184813,0.035291604697704]],[[0.04026859998703,-0.059047941118479,0.042794033885002],[-0.016293872147799,0.10300870239735,-0.0595688149333],[-0.016312496736646,-0.038807388395071,0.078745134174824]],[[0.012463746592402,0.039283882826567,-0.12166580557823],[0.042189154773951,0.0059473942965269,0.03279647603631],[-0.079448938369751,0.031580880284309,0.023787505924702]],[[-0.033813320100307,0.026532411575317,0.021027948707342],[0.0077296453528106,-0.095067895948887,0.055715929716825],[0.041457589715719,-0.057283993810415,-0.012960294261575]],[[-0.03173067048192,-0.062926381826401,0.062985777854919],[-0.0031140472274274,-0.012664545327425,-0.052059203386307],[-0.031579747796059,-0.025889923796058,0.013457327149808]],[[-0.005518885795027,0.026698367670178,0.08576849848032],[0.046293348073959,-0.024354171007872,-0.017128951847553],[-0.031540334224701,-0.0048013343475759,-0.048378359526396]],[[0.019796945154667,0.032651912420988,0.0017908639274538],[0.031726390123367,0.079083271324635,-0.054144389927387],[-0.053383126854897,0.049327924847603,0.0081413425505161]],[[0.01662278547883,-0.030030507594347,-0.0056212381459773],[-0.033418215811253,0.01787631213665,-0.00076520832953975],[0.053929530084133,0.051555469632149,-0.014783637598157]],[[-0.010433434508741,-0.008386149071157,0.0439657792449],[0.022136624902487,0.029972026124597,0.046646934002638],[-0.047434736043215,0.021526103839278,-0.078793987631798]],[[-0.0065329577773809,0.004111472517252,-0.062891185283661],[-0.015839643776417,0.053694181144238,0.034730404615402],[0.021068388596177,-0.0068342820741236,0.036464728415012]],[[0.0044002123177052,0.027620619162917,0.023907944560051],[-0.036763165146112,0.0074606635607779,-0.0095657370984554],[-0.032152891159058,-0.00063026393763721,-0.0068261725828052]],[[-0.059125617146492,-0.083741307258606,0.068913154304028],[0.08447677642107,-0.062283776700497,-0.012894262559712],[-0.0059214220382273,0.030771581456065,-0.019695473834872]],[[0.049915619194508,-0.043278247117996,0.01606635004282],[-0.0010202504927292,0.021122330799699,0.08994223177433],[0.0099168866872787,0.052659638226032,0.014294170774519]],[[-0.098216257989407,0.00010177653894061,-0.0077065015211701],[0.00015422989963554,-0.046948980540037,-0.0070685953833163],[-0.040788609534502,0.0016931894933805,-0.022918023169041]],[[-0.03642475605011,-0.019226524978876,-0.085218906402588],[-0.020791990682483,-0.018288439139724,0.0036354358308017],[0.021988593041897,-0.0075298054143786,0.0024414942599833]],[[0.039172541350126,0.024925801903009,0.045676410198212],[0.0030356699135154,0.027997184544802,0.018873039633036],[-0.057392574846745,0.019300922751427,0.035504389554262]],[[0.0052987029775977,0.018956735730171,-0.035827577114105],[-0.022181909531355,-0.024305775761604,0.055375017225742],[-0.00037789394264109,-0.02077392116189,-0.023066442459822]],[[-0.026726946234703,0.025935204699636,0.029485395178199],[0.030413435772061,-0.052263174206018,-0.0055748485028744],[0.026072030887008,-0.0013645685976371,-0.012842020019889]],[[0.00049191160360351,0.013077940791845,-0.017818911001086],[-0.068800449371338,-0.0050996579229832,-0.046956691890955],[-0.020178981125355,0.057712830603123,0.00023678797879256]],[[-0.0087718712165952,0.043359372764826,-0.050727657973766],[0.064607709646225,-0.071291364729404,0.033218398690224],[-0.010525234043598,-0.025035940110683,0.013580621220171]],[[-0.0099946670234203,-0.05248561128974,-0.044577270746231],[0.014575221575797,0.02818619273603,0.0120545681566],[-0.025736957788467,0.0082544675096869,-0.0041979374364018]],[[0.071630515158176,-0.031789984554052,0.04678788036108],[0.035720679908991,-0.017022622749209,0.010704373940825],[-0.022182375192642,-0.046407397836447,0.041421696543694]],[[-0.01417482830584,-0.065256580710411,-0.0015183967771009],[0.044214934110641,-0.042400270700455,0.0083184912800789],[0.00087695993715897,-0.068269401788712,-0.001662964001298]],[[0.012918786145747,0.054462168365717,-0.05470148473978],[0.022219842299819,0.10121008008718,0.053573217242956],[-0.018273994326591,-0.021353552117944,-0.066647432744503]],[[0.040798857808113,-0.042926337569952,0.015500846318901],[0.032865408807993,-0.0026786259841174,0.032587200403214],[0.068225219845772,0.12226940691471,0.034068144857883]],[[0.06388246268034,-0.0083393743261695,0.059387046843767],[0.032101318240166,0.085369244217873,-0.074142396450043],[-0.034886449575424,-0.0046646501868963,0.047859363257885]],[[0.034646742045879,0.0018337622750551,0.04757871851325],[-0.079245366156101,-0.017137717455626,-0.034405913203955],[-0.043726660311222,-0.011620114557445,-0.027257395908237]],[[-0.07378825545311,0.011294382624328,0.081358075141907],[-0.022951815277338,0.040514472872019,0.023270105943084],[0.046718172729015,-0.0016372834797949,-0.084562085568905]],[[0.0063527002930641,0.033940207213163,-0.018252439796925],[-0.019940741360188,-0.0156245296821,-0.042759731411934],[0.11016768217087,-0.028950229287148,0.025050448253751]],[[-0.045696705579758,-0.02016987092793,-0.027711087837815],[-0.031971473246813,0.016549939289689,0.022258898243308],[0.0088203186169267,0.042391005903482,-0.018245158717036]]],[[[0.10834587365389,-0.001616712892428,-0.24229435622692],[0.045732289552689,-0.060620665550232,-0.083053976297379],[0.060575667768717,-0.0084086386486888,0.068949855864048]],[[-0.069265089929104,-0.040105771273375,-0.020143371075392],[-0.05962285399437,0.017869524657726,-0.23657584190369],[0.21407502889633,0.060658950358629,-0.091752596199512]],[[0.1649336963892,0.071643561124802,-0.049320351332426],[0.39857724308968,0.15571227669716,-0.16196623444557],[0.4721243083477,0.05512784793973,-0.38811203837395]],[[0.092130869626999,0.1218901053071,-0.14001893997192],[-0.24889740347862,-0.13200068473816,-0.17736040055752],[0.023904597386718,0.066577710211277,-0.028329787775874]],[[0.078290320932865,-0.012605718336999,-0.1386696100235],[-0.1298960596323,-0.058037463575602,-0.1165013089776],[0.087825268507004,4.7911038564052e-05,0.0061091990210116]],[[-0.025782117620111,-0.034696880728006,-0.024354891851544],[0.10169596970081,0.11785876005888,0.03688258305192],[0.15560929477215,-0.095300704240799,-0.026574054732919]],[[-0.060584302991629,0.046370577067137,-0.083499193191528],[-0.10199439525604,-0.066475547850132,-0.061362538486719],[-0.030439401045442,-0.10451967269182,-0.19688619673252]],[[0.06770171970129,-0.043111406266689,-0.1034293025732],[0.0039203981868923,-0.07537192851305,-0.10454352945089],[0.020603528246284,-0.11047533899546,0.080241844058037]],[[-0.17028281092644,0.056728340685368,0.26375952363014],[-0.14499451220036,-0.097756743431091,0.10680033266544],[-0.13329562544823,-0.21929812431335,0.032064989209175]],[[-0.07085257768631,0.043764594942331,-0.1501235216856],[0.18491618335247,-0.040333572775126,0.0180146060884],[-0.069325186312199,-0.040217973291874,-0.1108730584383]],[[0.13763377070427,0.0070431726053357,0.24023120105267],[-0.054388631135225,-0.082356214523315,-0.023939292877913],[0.02259674295783,-0.042674329131842,-0.031890865415335]],[[-0.037889897823334,-0.026478657498956,0.046688813716173],[0.030357332900167,0.038306415081024,-0.026891052722931],[0.076064683496952,0.1324085444212,-0.00050304707838222]],[[-0.018286166712642,0.050506319850683,-0.14060558378696],[-0.053100612014532,-0.1346827596426,-0.20332282781601],[0.12478410452604,-0.062960550189018,-0.12242301553488]],[[0.036284700036049,-0.063151501119137,-0.02377307228744],[-0.054656740278006,-0.1357409209013,-0.090172842144966],[-0.031000101938844,0.091105543076992,-0.017931504175067]],[[-0.23898904025555,0.096590280532837,0.023739626631141],[-0.38695022463799,-0.13882870972157,-0.10110118240118],[0.10637274384499,0.19353625178337,0.22555910050869]],[[0.21120841801167,0.022930497303605,-0.16365329921246],[0.19722165167332,-0.12341363728046,-0.077854476869106],[0.24831256270409,0.055578004568815,0.10844963788986]],[[0.080428309738636,-0.075363524258137,-0.024749662727118],[0.12542247772217,-0.061006594449282,0.097942598164082],[-0.14710982143879,0.012935505248606,-0.016340842470527]],[[0.068461865186691,0.16061234474182,0.00057404191466048],[-0.11814801394939,0.0034287581220269,-0.070366725325584],[-0.40568900108337,-0.34255808591843,-0.16861329972744]],[[-0.13220359385014,-0.067213349044323,-0.23106290400028],[-0.17071636021137,-0.048204801976681,0.089032620191574],[-0.062637820839882,0.012526234611869,0.28855422139168]],[[-0.020569298416376,-0.047495894134045,0.064016133546829],[0.098895892500877,0.16540269553661,0.029226856306195],[0.0068345218896866,0.10350306332111,0.10869174450636]],[[0.032691933214664,-0.045704696327448,-0.1327511370182],[0.013064169324934,0.064575642347336,0.033568631857634],[0.13817410171032,0.038713961839676,-0.015899259597063]],[[-0.0050613256171346,-0.037657704204321,0.017433548346162],[0.0027579637244344,-0.049501307308674,0.044999439269304],[-0.011168980039656,0.010440342128277,0.14197535812855]],[[-0.048826556652784,-0.0034007700160146,0.013619814999402],[-0.21647670865059,-0.057431731373072,0.095762275159359],[-0.11334525793791,0.064960062503815,0.02328734099865]],[[-0.010878203436732,0.07735700905323,0.1653303951025],[-0.14445245265961,-0.11040215939283,-0.13176834583282],[0.044930595904589,-0.076486140489578,-0.1428856998682]],[[-0.15037846565247,-0.079034142196178,-0.10943492501974],[-0.098657339811325,0.0068050492554903,-0.12596718966961],[0.035386480391026,0.047530695796013,-0.076173014938831]],[[-0.11309608817101,-0.14329054951668,-0.0026833722367883],[-0.16873459517956,-0.18291276693344,-0.20567134022713],[0.017948957160115,0.14422452449799,0.015417383983731]],[[0.082406789064407,-0.065474569797516,-0.017478616908193],[0.16002948582172,0.063697502017021,0.1660642772913],[-0.33947321772575,-0.0072961482219398,0.12358102202415]],[[-0.0039253048598766,0.10049903392792,0.10679128021002],[-0.018788194283843,-0.097945660352707,0.032617766410112],[-8.6690059106331e-05,0.022963542491198,-0.016037562862039]],[[-0.19366554915905,-0.052972752600908,0.1474888920784],[0.034982316195965,-0.12314643710852,-0.056912548840046],[0.17945021390915,0.081591568887234,-0.11181949079037]],[[0.052276860922575,0.049940533936024,0.14454457163811],[0.012231467291713,0.066138379275799,-0.056061983108521],[-0.11857032775879,-0.060595043003559,0.02507471293211]],[[-0.15850038826466,-0.13901719450951,-0.040923330932856],[0.043867714703083,0.31816494464874,0.19161039590836],[-0.04753290116787,-0.20448672771454,-0.18799279630184]],[[-0.02075120061636,0.066590815782547,0.024972308427095],[-0.0052679944783449,-0.026267291978002,0.029339009895921],[0.029419479891658,-0.052472278475761,-0.14421306550503]],[[0.031212715432048,0.13747039437294,-0.072375513613224],[-0.046344812959433,0.065210923552513,0.061018068343401],[0.0030657525639981,-0.10167270153761,-0.09718368947506]],[[-0.031224966049194,0.025895591825247,0.23982983827591],[0.053529400378466,-0.0183987878263,0.12325015664101],[-0.12792305648327,-0.085045531392097,-0.007570767775178]],[[-0.028354298323393,-0.075459621846676,-0.12189776450396],[-0.1140609011054,-0.13993880152702,-0.21318726241589],[-0.2855452299118,-0.20246183872223,-0.30411985516548]],[[0.027783574536443,0.042297516018152,0.047108974307775],[0.0065162479877472,-0.19472596049309,0.25832903385162],[0.22604228556156,0.10203409194946,-0.26883298158646]],[[0.12323552370071,0.096380546689034,-0.03816632181406],[-0.028340687975287,-0.20174652338028,-0.035216331481934],[-0.089705169200897,0.16158084571362,0.14386227726936]],[[0.0025201430544257,-0.024434858933091,-0.023405272513628],[-0.086210004985332,0.01039229426533,0.021113406866789],[-0.095944002270699,0.12188520282507,0.1127192825079]],[[-0.085967555642128,-0.10407537221909,-0.077903293073177],[-0.0032538673840463,0.018833497539163,-0.01558790449053],[0.050959307700396,0.13603322207928,-0.17031802237034]],[[0.012079909443855,-0.1295767724514,0.028306970372796],[0.045799292623997,-0.022270640358329,-0.03751578181982],[0.12312411516905,-0.045980054885149,0.16019253432751]],[[-0.051573276519775,0.011340053752065,-0.010790017433465],[-0.034956332296133,0.002738201059401,-0.1539431810379],[-0.12541696429253,0.20142139494419,0.41773980855942]],[[0.01370981708169,0.098897829651833,0.013448975980282],[-0.0078202905133367,-0.032820172607899,0.032742291688919],[0.081650495529175,0.15817441046238,-0.0034947500098497]],[[0.068416625261307,0.02862810716033,0.098433397710323],[0.014413836412132,-0.0050479834899306,0.085944347083569],[-0.12728245556355,-0.10027515888214,-0.108935944736]],[[0.071879133582115,0.069104582071304,0.14901384711266],[-0.054255358874798,-0.087840408086777,-0.044320501387119],[0.0035679759457707,-0.14445817470551,-0.11738093197346]],[[0.13447399437428,0.051031343638897,-0.17123213410378],[0.05340313911438,0.30451086163521,0.11129714548588],[-0.12331592291594,0.082215666770935,0.25774243474007]],[[0.10701961070299,0.046472817659378,0.083377279341221],[0.080494739115238,0.13924746215343,0.1589777469635],[0.068879976868629,0.011608464643359,0.10827603936195]],[[-0.012473976239562,0.16940402984619,0.18271327018738],[0.047666549682617,0.061556965112686,0.055247616022825],[-0.018643278628588,-0.058984775096178,0.046961292624474]],[[0.062326077371836,-0.27988186478615,-0.24474430084229],[0.021737335249782,0.19534778594971,0.12330531328917],[-0.043106947094202,-0.12867660820484,-0.061135780066252]],[[-0.025770584121346,-0.28005456924438,-0.027438113465905],[-0.010224378667772,-0.041852194815874,-0.22402815520763],[-0.023452626541257,-0.026491288095713,-0.087587177753448]],[[0.05359098315239,0.10632665455341,0.11691385507584],[0.043000910431147,-0.0378099642694,-0.25241613388062],[0.2046392261982,0.02496219240129,0.0028208964504302]],[[-0.068233340978622,-0.13335710763931,-0.013569858856499],[-0.018452920019627,-0.022919585928321,0.020147753879428],[-0.16210669279099,-0.043225839734077,-0.023346433416009]],[[0.25365275144577,0.19566302001476,0.20284105837345],[0.09153874963522,0.020483138039708,-0.013560167513788],[0.042017955332994,0.10573394596577,-0.11026217788458]],[[0.02248820848763,0.033919524401426,0.005996941588819],[0.068957954645157,0.087069571018219,-0.081061989068985],[-0.04072181135416,-0.002458723494783,-0.030469805002213]],[[-0.31898191571236,-0.025360194966197,-0.045265682041645],[-0.137790620327,0.014348569326103,0.12338158488274],[0.05233907699585,-0.1360546797514,-0.15367443859577]],[[0.28400573134422,-0.13544134795666,-0.26954439282417],[0.058590918779373,0.37179118394852,0.2121104747057],[-0.0076476274989545,-0.1893395781517,-0.081361584365368]],[[0.24706280231476,-0.1310428828001,0.027847373858094],[0.20177653431892,0.20459970831871,-0.13707515597343],[0.0048063700087368,-0.25564709305763,-0.19968283176422]],[[-0.085479393601418,-0.0068929176777601,0.075345300137997],[-0.14963328838348,0.039532218128443,0.068371810019016],[-0.041648857295513,0.39124357700348,0.015437678433955]],[[-0.07002841681242,-0.0015691375592723,-0.028140801936388],[-0.068268366158009,-0.048361744731665,0.024344515055418],[-0.071907803416252,-0.25218787789345,-0.1341595351696]],[[0.22338892519474,0.083800233900547,0.042282205075026],[-0.33961975574493,-0.18116517364979,-0.080248221755028],[0.034774534404278,0.019661782309413,0.25738173723221]],[[-0.077313937246799,-0.10089180618525,-0.02515722438693],[-0.090048491954803,-0.11239380389452,0.23153886198997],[-0.10784347355366,0.048953413963318,0.071259438991547]],[[0.040539138019085,0.088215515017509,0.12537349760532],[-0.14303636550903,-0.058656726032495,-0.19715519249439],[0.05105946585536,-0.066164821386337,-0.22055324912071]],[[-0.18376016616821,-0.59390872716904,-0.11106704175472],[-0.092344127595425,0.027089146897197,-0.1789870262146],[-0.17589780688286,-0.3280434012413,-0.071116253733635]],[[-0.027252927422523,-0.12751454114914,0.029372779652476],[0.17885585129261,0.082066014409065,0.19954815506935],[0.069858185946941,0.13397261500359,0.23679476976395]],[[0.11108222603798,-0.016210736706853,-0.00060005154227838],[0.077072776854038,-0.072188191115856,-0.088373802602291],[0.095729500055313,0.25563511252403,-0.1640145778656]],[[-0.16231732070446,-0.21680223941803,-0.049833081662655],[-0.056147802621126,-0.12759938836098,-0.15285298228264],[0.005494792945683,0.058127980679274,0.029348792508245]],[[-0.098662301898003,0.053319565951824,0.36897292733192],[-0.062432605773211,0.10230121016502,0.27891743183136],[-0.21491742134094,-0.057050488889217,0.069032169878483]],[[-0.091765180230141,-0.27754187583923,-0.036648724228144],[0.065438829362392,-0.10681848227978,0.1211511194706],[0.078529588878155,-0.054631572216749,-0.30984172224998]],[[-0.058457341045141,0.10002660751343,-0.085765838623047],[0.054396271705627,0.016909994184971,0.069785863161087],[0.0061255381442606,0.11380606144667,0.014314718544483]],[[-0.014571946114302,0.047066301107407,0.11905777454376],[-0.045218121260405,-0.045810766518116,0.062019269913435],[0.21510933339596,0.10011684149504,-0.16243244707584]],[[-0.1181290820241,0.1045104265213,0.11448368430138],[-0.16358880698681,0.018362401053309,0.30263620615005],[-0.13227090239525,0.11858814954758,0.36816948652267]],[[0.019966525956988,0.11214371025562,0.11706560105085],[0.14572001993656,0.11774723976851,0.028548654168844],[-0.016132475808263,0.037091612815857,-0.084394678473473]],[[-0.012494250200689,0.028332278132439,-0.034370079636574],[-0.0053980993106961,0.079223684966564,0.047351863235235],[-0.15436840057373,-0.065440580248833,0.099089808762074]],[[-0.03372685611248,-0.037415266036987,-0.003597391070798],[-0.34907060861588,-0.031562257558107,0.05309909209609],[0.12694419920444,-0.10570975393057,-0.22596998512745]],[[-0.027720913290977,0.18791881203651,0.12923410534859],[-0.049636863172054,-0.092033378779888,-0.030380783602595],[-0.13851152360439,-0.15799896419048,-0.15909296274185]],[[0.21915566921234,0.14680802822113,0.11373563855886],[-0.12413863837719,-0.080591112375259,-0.024564027786255],[-0.27217355370522,-0.16165645420551,-0.18181397020817]],[[-0.16391423344612,0.13690216839314,0.014154507778585],[-0.18543861806393,-0.098694913089275,0.44745579361916],[0.044155359268188,0.038289304822683,0.026012530550361]],[[-0.18685275316238,0.0060223904438317,0.031324159353971],[-0.22968193888664,-0.19725020229816,-8.0192046880256e-05],[0.14172323048115,0.094079323112965,0.059380758553743]],[[0.043826788663864,-0.082297049462795,-0.081227511167526],[-0.017528370022774,0.14161238074303,-0.042475488036871],[0.096474096179008,0.0051484550349414,0.043484561145306]],[[-0.01212365925312,0.0076784258708358,-0.11384285986423],[0.12432906031609,0.14320610463619,0.020300948992372],[0.089059628546238,-0.010341527871788,-0.027902480214834]],[[-0.019131638109684,-0.10512891411781,-0.011275991797447],[-0.10847924649715,-0.015953840687871,0.082155227661133],[-0.012283987365663,0.10068587213755,0.26538401842117]],[[0.027521643787622,-0.12958711385727,0.22387160360813],[-0.023333806544542,-0.13290591537952,0.054853450506926],[-0.083071775734425,0.020373282954097,0.045201763510704]],[[-0.13139846920967,0.024235403165221,0.029341083019972],[-0.11221391707659,-0.082518354058266,-0.30285033583641],[0.18297816812992,0.077485166490078,0.0055156857706606]],[[-0.08265358954668,-0.3510739505291,-0.17295567691326],[0.2510167658329,0.087591990828514,-0.11751140654087],[-0.26198577880859,-0.16773180663586,-0.040020644664764]],[[0.0523033849895,0.072131089866161,0.029723120853305],[-0.21645712852478,-0.047631863504648,0.039518978446722],[0.037007514387369,0.030379520729184,0.092326194047928]],[[-0.13882450759411,-0.26404532790184,0.015936436131597],[0.050257097929716,0.17368166148663,-0.069338358938694],[-0.090187817811966,-0.17527857422829,0.284653455019]],[[-0.090318582952023,0.045256532728672,0.19372668862343],[-0.15779213607311,-0.08944033831358,0.0024889637716115],[0.03531413897872,-0.1162798628211,-0.054740678519011]],[[-0.15409982204437,-0.10790661722422,-0.10408610850573],[0.023583630099893,-0.045703046023846,-0.10400183498859],[0.051407963037491,0.17427924275398,0.023541091009974]],[[-0.16645313799381,-0.053472708910704,0.021042685955763],[0.19470490515232,0.026767168194056,0.050872102379799],[0.11766827851534,-0.084578983485699,0.0072859125211835]],[[-0.062761448323727,-0.025410568341613,0.1063592210412],[-0.0052053388208151,0.045708194375038,0.082427963614464],[0.0081038624048233,0.12345819920301,0.10391405969858]],[[0.036444593220949,0.069865368306637,0.0048373183235526],[0.067555390298367,-0.078927762806416,-0.087856203317642],[0.16246156394482,0.093416549265385,-0.16751912236214]],[[0.0036049140617251,0.030663093551993,-0.13729827105999],[0.18659161031246,-0.04789811372757,-0.31272459030151],[0.36513251066208,0.12817092239857,0.037311248481274]],[[0.14664189517498,0.017775366082788,0.00070903822779655],[-0.0024839430116117,0.097544558346272,-0.26565876603127],[0.10388945043087,-0.059276189655066,-0.090972304344177]],[[-0.084859676659107,-0.028172470629215,-0.098670400679111],[0.013880589045584,-0.073859706521034,-0.076149694621563],[-0.15234713256359,-0.040365617722273,0.023904429748654]],[[0.11979568004608,0.08168987929821,-0.41472578048706],[-0.075458861887455,0.042890533804893,0.077809281647205],[-0.35918840765953,0.0064359977841377,0.22594447433949]],[[0.16193687915802,0.026429288089275,0.013098638504744],[0.015986563637853,0.062116000801325,-0.021495437249541],[-0.24955347180367,-0.5105397105217,-0.26631230115891]],[[-0.012321980670094,-0.10012627393007,0.032763529568911],[0.14743420481682,0.17555592954159,0.083365969359875],[-0.25616902112961,-0.087939716875553,-0.013596789911389]],[[0.070888251066208,-0.11656510829926,0.11408877372742],[0.02726043201983,0.084379859268665,-0.12083247303963],[0.14740751683712,-0.076252803206444,-0.12793059647083]],[[-0.058049481362104,0.16006553173065,0.29005160927773],[-0.092319905757904,0.1281418800354,-0.055384755134583],[0.071056894958019,0.013782885856926,0.053974397480488]],[[0.072006873786449,-0.083415143191814,-0.1393658965826],[0.1403995603323,0.21359710395336,-0.031452592462301],[0.1020624563098,0.073163874447346,-0.070342838764191]],[[0.13535167276859,0.014967949129641,-0.028849873691797],[-0.10649412870407,-0.18049629032612,0.14275346696377],[-0.10317654907703,-0.040630418807268,-0.10519216954708]],[[-0.045428149402142,-0.22245243191719,-0.51271891593933],[-0.088607959449291,-0.1898635327816,-0.2127690911293],[0.14016212522984,0.050666742026806,-0.16555413603783]],[[0.092928357422352,0.094844438135624,0.0092110177502036],[-0.011385934427381,0.0063868970610201,-0.03812001645565],[0.070289745926857,-0.1512196213007,-0.084527589380741]],[[0.13461431860924,0.17197445034981,0.27132093906403],[-0.0083801466971636,-0.15291519463062,-0.072359763085842],[-0.026131201535463,-0.1237021163106,-0.10516384243965]],[[-0.010675811208785,-0.099596731364727,0.12735041975975],[0.17365945875645,0.19818465411663,0.034395296126604],[-0.010263943113387,-0.041311141103506,-0.23509718477726]],[[-0.034865282475948,0.045515775680542,-0.065829679369926],[0.035938058048487,0.023026842623949,-0.056271452456713],[-0.10583758354187,0.086082510650158,0.070192329585552]],[[-0.0073931915685534,-0.22018830478191,-0.3171581029892],[0.012665344402194,-0.014398995786905,-0.13280266523361],[0.13794827461243,0.047974690794945,0.040579125285149]],[[-0.051168169826269,0.09528710693121,0.18581189215183],[0.0030727260746062,0.068115502595901,0.015231065452099],[0.036849416792393,0.038319569081068,0.084449678659439]],[[0.16707664728165,0.070239529013634,-0.0094672664999962],[0.030935036018491,0.051951710134745,-0.17780132591724],[-0.0038122120313346,-0.068736687302589,-0.083175979554653]],[[-0.11461050063372,-0.052581734955311,-0.077403277158737],[-0.043785147368908,-0.048154227435589,-0.040520153939724],[-0.14949381351471,-0.074430271983147,-0.11075406521559]],[[0.13136929273605,0.096972107887268,0.038070909678936],[0.10911621153355,-0.0018712809542194,-0.17138609290123],[-0.14700762927532,-0.11454651504755,-0.013464994728565]],[[-0.093396127223969,-0.044274486601353,-0.12697219848633],[0.01185997389257,-0.066013500094414,-0.055499754846096],[0.075790077447891,0.049317292869091,0.13767720758915]],[[-0.07075173407793,0.077938593924046,0.12080512195826],[-0.15881544351578,-0.12035722285509,0.1270976215601],[-0.082477852702141,-0.2529736161232,-0.097555190324783]],[[-0.23121440410614,-0.047553971409798,-0.042555782943964],[0.04452084377408,-0.072920873761177,-0.0021170028485358],[-0.06551031768322,0.051456559449434,0.14176584780216]],[[0.0031254121568054,0.07583174854517,0.17385026812553],[0.062250092625618,-0.05782562494278,-0.049207679927349],[-0.12673822045326,-0.096537373960018,-0.15800251066685]],[[-0.18626606464386,-0.11608978360891,-0.005557426251471],[0.13390076160431,0.061970509588718,0.0026413735467941],[-0.016970114782453,0.24137124419212,0.0070598064921796]],[[-0.095639929175377,0.051067754626274,-0.035354528576136],[-0.064056918025017,-0.03840596228838,-0.11367174237967],[0.005527057684958,-0.14690987765789,0.090966448187828]],[[0.047547779977322,0.13403506577015,-0.1131342202425],[-0.050280649214983,-0.12605999410152,0.074517942965031],[-0.22269223630428,-0.05620313808322,-0.014613728970289]],[[-0.051240477710962,0.026294406503439,0.081124804913998],[-0.060035675764084,0.027135649695992,-0.054510768502951],[-0.031077839434147,-0.052926652133465,0.0787687972188]],[[0.062748096883297,-0.0073578110896051,-0.071800611913204],[0.24325558543205,0.035180568695068,0.027544653043151],[0.022852171212435,-0.21407169103622,-0.24727022647858]],[[-0.0065447455272079,-0.098704285919666,0.082651846110821],[-0.04367907717824,0.012287459336221,-0.14513617753983],[-0.079480968415737,0.30714198946953,0.20935912430286]],[[-0.022447913885117,-0.091351680457592,0.065398029983044],[0.066341005265713,0.087718151509762,0.018097897991538],[-0.092043057084084,-0.1531343460083,0.047392901033163]],[[-0.07239031791687,0.023814031854272,0.10355722159147],[0.094733782112598,0.10705012083054,0.034519325941801],[-0.13311043381691,-0.046314440667629,-0.12480439990759]],[[-0.11154285818338,0.017852880060673,0.30400231480598],[0.044808354228735,-0.1264404207468,-0.076923795044422],[-0.039779670536518,0.0053018131293356,-0.084302604198456]],[[-0.060288362205029,0.045377340167761,-0.090545281767845],[-0.2180153131485,-0.11636018007994,-0.072323448956013],[-0.17588612437248,-0.075604602694511,0.11684936285019]],[[-0.024021038785577,-0.038601890206337,0.2735558450222],[-0.31414607167244,-0.16235925257206,0.018044840544462],[-0.1452941596508,-0.10072936862707,-0.074509918689728]],[[0.087897501885891,0.017214998602867,-0.074598141014576],[0.10742748528719,0.013762190006673,-0.041339639574289],[0.035356897860765,0.029150426387787,-0.037673886865377]],[[0.07488901168108,0.088013477623463,0.11760011315346],[-0.076997615396976,-0.22059334814548,-0.23847275972366],[-0.024202700704336,-0.065714374184608,-0.2084703296423]],[[-0.084626108407974,-0.073280535638332,0.083971455693245],[0.079023197293282,-0.080180041491985,-0.030650120228529],[-0.027571326121688,0.081493899226189,-0.039922773838043]]],[[[-0.0051017715595663,0.040861189365387,0.024241048842669],[0.014912771992385,0.030600871890783,0.016014318913221],[0.091356411576271,-0.0076434011571109,-0.029383270069957]],[[-0.0044152331538498,0.042279906570911,0.061343614012003],[-0.069193862378597,-0.0039317165501416,-0.0089154550805688],[-0.078887820243835,-0.02402070723474,0.032992370426655]],[[0.051356684416533,-0.030053060501814,-0.0095971142873168],[-0.010323810391128,0.027843467891216,0.03638206794858],[0.094176724553108,0.0074178134091198,0.052840411663055]],[[-0.030962331220508,-0.0092084892094135,0.00094923068536445],[0.046252835541964,-0.047411475330591,0.048713952302933],[0.0054043992422521,0.0063103209249675,0.036707784980536]],[[0.067280061542988,-0.0021916681434959,0.018369479104877],[0.00034457203582861,-0.039707411080599,0.056620389223099],[0.083498105406761,-0.013206926174462,0.0023476826027036]],[[-0.0080722291022539,0.064243666827679,-0.0086539844051003],[0.11224946379662,-0.053300324827433,-0.037675756961107],[0.0071820826269686,0.024638889357448,0.026695393025875]],[[0.026740929111838,0.10668861865997,0.0091677652671933],[-0.010700606741011,0.022306932136416,0.12090077996254],[-0.017937414348125,0.046744268387556,-0.018621720373631]],[[0.10845451056957,-0.016366071999073,-0.015113078989089],[-0.0071615688502789,0.026584858074784,0.043338846415281],[0.099745728075504,0.036769095808268,-0.013313505798578]],[[0.00092264654813334,-0.025608161464334,0.007113722153008],[-0.017186922952533,-0.014356590807438,-0.089681431651115],[-0.071483813226223,0.010972373187542,-0.0025957163888961]],[[0.06943367421627,0.073003433644772,0.0559460259974],[-0.025364371016622,-0.052362203598022,0.062001556158066],[0.09496233612299,0.07637769728899,0.0035556755028665]],[[-0.037519078701735,-0.049856215715408,-0.044991731643677],[0.034641731530428,0.026455709710717,0.060618780553341],[0.11989740282297,-0.028083609417081,-0.02522400021553]],[[-0.0099661611020565,0.027973068878055,0.030779357999563],[0.093798384070396,-0.072679921984673,0.066853433847427],[0.077413618564606,0.0018501686863601,0.0062769912183285]],[[0.083309940993786,-0.0041262372396886,0.079421743750572],[-0.018604272976518,-0.028993947431445,0.076957523822784],[0.10153567045927,0.0040644723922014,0.011385012418032]],[[-0.021707240492105,-0.020504079759121,0.082041345536709],[0.041042726486921,0.011394768022001,-0.01389020588249],[0.050755586475134,0.0056658214889467,0.018453350290656]],[[-0.015246489085257,0.043438080698252,-0.089971162378788],[-0.025926319882274,-0.081423729658127,0.016228841617703],[-0.090810813009739,0.064875610172749,0.054069302976131]],[[-0.019121196120977,0.015054614283144,-0.066833637654781],[-0.0014269818784669,-0.0082293851301074,0.099760144948959],[-0.078293591737747,-0.052642665803432,-0.071010999381542]],[[0.087689369916916,0.00427829567343,0.045942671597004],[0.02757827565074,0.05000502243638,0.024786069989204],[0.023994160816073,-0.0063840942457318,-0.046481765806675]],[[0.0024356923531741,0.0083665456622839,-0.014781135134399],[-0.020465092733502,0.078641973435879,0.081576324999332],[-0.059260241687298,-0.13106000423431,-0.018376152962446]],[[-0.011415630578995,0.038136452436447,-0.017089411616325],[-0.040029615163803,0.021386779844761,0.071180455386639],[-0.0057199019938707,0.023889698088169,-0.021406078711152]],[[0.0067355586215854,-0.0069077154621482,0.011040553450584],[0.06568443775177,-0.00033278641058132,0.081185676157475],[0.07578743994236,0.0087882606312633,-0.070863977074623]],[[-0.0085529405623674,-0.03402441740036,0.08644662797451],[-0.035529159009457,-0.056812416762114,0.019473023712635],[-0.070127584040165,0.070943117141724,0.054366175085306]],[[0.089882604777813,0.059601478278637,-0.05250308662653],[0.03940487280488,0.054792162030935,0.069811642169952],[0.046777110546827,0.046080093830824,-0.0091308690607548]],[[0.03867295011878,0.053944822400808,-0.0090015847235918],[-0.011334231123328,0.0094546359032393,-0.025110585615039],[0.00442476850003,-0.041095972061157,0.048142749816179]],[[0.057202387601137,-0.026779260486364,0.085970439016819],[-0.0075747263617814,0.021064873784781,0.097695417702198],[-0.045987121760845,-0.034140899777412,0.026386857032776]],[[-0.092620067298412,0.016117857769132,-0.057122822850943],[-0.0064652916043997,0.087171085178852,-0.0096346950158477],[0.072482094168663,0.010270172730088,0.14585766196251]],[[-0.032130807638168,-0.072241052985191,0.024519687518477],[0.016875831410289,0.018495194613934,-0.020625472068787],[-0.031774323433638,-0.032141204923391,0.023897578939795]],[[0.0044279722496867,-0.061598889529705,0.023244820535183],[0.0068570454604924,0.021251620724797,-0.010283070616424],[0.086658947169781,-0.0094571225345135,0.12264189124107]],[[-0.046070367097855,-0.014009775593877,0.053965631872416],[-0.010896232910454,-0.097609385848045,0.036473304033279],[0.095778271555901,0.055836495012045,-0.11556398123503]],[[-0.052071798592806,0.05391027033329,0.032671917229891],[-0.06919277459383,0.053338520228863,0.051305700093508],[0.042183641344309,-0.072682619094849,-0.0083245411515236]],[[-0.059981860220432,-0.035404868423939,0.14960038661957],[-0.0050485585816205,0.021912705153227,-9.5987124950625e-05],[0.14307497441769,-0.082039006054401,-0.10613749176264]],[[0.001951138721779,-0.032616950571537,0.035355173051357],[0.050365522503853,0.051028273999691,0.037029653787613],[-0.084983348846436,-0.0091839246451855,-0.049087230116129]],[[0.0054553579539061,-0.0036772610619664,0.047990117222071],[0.0035160537809134,-0.0062914052978158,0.0061101447790861],[-0.02538381703198,0.043418873101473,-0.028995400294662]],[[0.086364448070526,0.043351888656616,0.054451230913401],[-0.030735146254301,-0.011073676869273,0.051121063530445],[-0.093247905373573,0.11335505545139,0.057747915387154]],[[0.010469022206962,0.01631679572165,-0.044776547700167],[-0.099010482430458,0.017243474721909,0.015560645610094],[0.051720961928368,0.00038200893322937,0.011336961761117]],[[-0.06416167318821,0.00090338592417538,-0.10709388554096],[-0.057284332811832,-0.080568008124828,0.015420734882355],[0.020114578306675,0.098405003547668,-0.014051785692573]],[[0.014691482298076,0.028033310547471,0.028836406767368],[-0.022828044369817,-0.017141789197922,0.0062630688771605],[0.013056450523436,-0.072179302573204,0.017954155802727]],[[0.05936898291111,-0.051459655165672,0.023736326023936],[0.024635329842567,-0.018891362473369,0.00048635859275237],[0.0029215284157544,0.051909022033215,0.067289225757122]],[[0.053506813943386,-0.078605189919472,-0.11375383287668],[-0.050753332674503,0.09576503932476,-0.066259525716305],[-0.098146207630634,0.090110674500465,-0.0090380720794201]],[[-0.024761687964201,0.042047679424286,0.0025292942300439],[0.013777266256511,0.015242331661284,-0.010458232834935],[-0.048696279525757,0.037450630217791,-0.085867881774902]],[[0.012277407571673,0.080685019493103,0.067682713270187],[-0.038747392594814,-0.005480554420501,0.0052828630432487],[0.12549638748169,0.07471664249897,-0.079368501901627]],[[0.053124248981476,0.007955982349813,0.024672226980329],[0.061730220913887,0.085789814591408,-0.059578146785498],[-0.00095607194816694,0.02049015276134,0.093691900372505]],[[0.010107819922268,0.025358073413372,0.044018611311913],[0.015755424275994,0.095243602991104,0.077637813985348],[-0.067868709564209,0.051559675484896,-0.032617028802633]],[[0.061020530760288,-0.01792411878705,-0.089441366493702],[0.065872058272362,0.028933947905898,0.019277067855],[-0.013760055415332,0.030891070142388,-0.054701626300812]],[[-0.026860199868679,-0.011285830289125,0.019778227433562],[0.054595198482275,-0.050056029111147,0.073299236595631],[0.051863200962543,-0.016288638114929,-0.083331242203712]],[[0.038932915776968,0.033507656306028,0.026561042293906],[0.031841568648815,0.10929170995951,-0.040452461689711],[0.025546612218022,0.021467290818691,0.023520942777395]],[[0.043112371116877,0.11236930638552,0.029526140540838],[-0.029019571840763,0.044262852519751,0.040753323584795],[0.085224568843842,0.035251639783382,0.0049164057709277]],[[0.0030353094916791,0.010737856850028,-0.014223395846784],[-0.032205179333687,-0.044048018753529,-0.035905290395021],[0.006823608186096,-0.043300807476044,-0.0058782338164747]],[[-0.014645266346633,-0.02630109526217,0.01302510406822],[-0.021667128428817,-0.033255103975534,-0.0070079648867249],[0.035169500857592,-0.0117291752249,-0.026048868894577]],[[-0.036086190491915,0.025348469614983,-0.077403515577316],[-0.00042509933700785,-0.11442486941814,-0.14821530878544],[0.10303474962711,0.042836185544729,-0.11209225654602]],[[0.055790096521378,0.051847014576197,-0.0028860445600003],[-0.046419259160757,0.0018395432271063,0.047025006264448],[-0.011626175604761,-0.042136512696743,0.084757775068283]],[[0.01032913569361,0.11963932961226,-0.001541780657135],[-0.012210859917104,0.059986859560013,0.051410347223282],[-0.049801096320152,-0.022938419133425,-0.069376550614834]],[[0.038226086646318,-0.043067868798971,0.02321420237422],[0.050037179142237,0.018973454833031,-0.015656169503927],[-0.066503919661045,0.022613868117332,0.076127916574478]],[[0.024726392701268,0.030466241762042,-0.11542085558176],[-0.018540546298027,-0.075062118470669,-0.10247354209423],[-0.055988568812609,0.014364829286933,0.04083188995719]],[[0.04524527490139,0.08185688406229,0.095361605286598],[0.014200454577804,-0.012207794934511,0.071486815810204],[0.085463345050812,-0.030141388997436,0.012535765767097]],[[0.062796346843243,0.0033470864873379,-0.01565832644701],[-0.02414689026773,0.088944144546986,-0.024424800649285],[0.01082615647465,-0.038746885955334,0.054967906326056]],[[0.0088300872594118,-0.076401382684708,0.057948268949986],[-0.032335676252842,0.12154342234135,-0.022268189117312],[-0.03154781460762,-0.0079763811081648,-0.044724985957146]],[[0.032172530889511,0.17032217979431,0.012833178974688],[0.04201190546155,-0.044697031378746,0.051476575434208],[0.07847860455513,0.013775671832263,0.039189931005239]],[[-0.0057644401676953,-0.046804513782263,-0.092233449220657],[0.012144828215241,-0.017848445102572,0.046537403017282],[0.010709735564888,0.06143257021904,0.05320543423295]],[[0.069435305893421,0.012130792252719,0.075218290090561],[0.094078466296196,-0.016424480825663,-0.018508391454816],[-0.0054656406864524,-0.045095223933458,0.0708938986063]],[[0.055781044065952,0.063459426164627,0.042739052325487],[0.041604686528444,0.074392981827259,0.067610532045364],[0.033468049019575,-0.015068605542183,0.014896438457072]],[[0.046517144888639,-0.00055764691205695,-0.025731544941664],[-0.019268395379186,0.069932766258717,0.050846990197897],[0.0049742544069886,-0.05117242410779,-0.033901251852512]],[[-0.0094515923410654,-0.067780077457428,-0.042398620396852],[-0.0097504826262593,0.022116111591458,-0.017624197527766],[0.074631534516811,-0.075255990028381,0.0486229211092]],[[0.002758156042546,0.030858485028148,-0.0696881711483],[0.12788836658001,0.0092349480837584,-0.03036611713469],[-0.045232441276312,0.021657034754753,-0.017482290044427]],[[-0.11107461154461,0.076248064637184,-0.010645143687725],[0.024825811386108,0.0043069012463093,0.041093353182077],[0.098421163856983,0.022279305383563,0.0021062798332423]],[[0.037923313677311,0.032817836850882,0.064021103084087],[-0.013461823575199,-0.023444933816791,-0.055695608258247],[0.062435634434223,-0.087830804288387,0.046581350266933]],[[0.035271368920803,0.028523057699203,-0.095618359744549],[0.11327645927668,-0.025722790509462,-0.049179341644049],[0.04957178607583,-0.055363945662975,-0.026388918980956]],[[0.0087160635739565,0.055528741329908,9.7362943051849e-05],[-0.0066449563018978,-0.083773761987686,0.07364447414875],[-0.01175622548908,-0.09319231659174,0.020263137295842]],[[0.018017560243607,0.024789169430733,-0.083753943443298],[-8.8223532657139e-05,-0.034111205488443,0.013884974643588],[0.033531427383423,0.030640322715044,0.028989560902119]],[[0.066215351223946,-0.025017827749252,0.013871738687158],[0.0092480964958668,0.10206836462021,0.058248996734619],[0.11125876009464,-0.036117609590292,0.02982378192246]],[[0.035534415394068,0.017751902341843,-0.039986610412598],[0.016337253153324,0.034892473369837,0.047087263315916],[-0.055149771273136,-0.0036467264872044,0.016709676012397]],[[0.019711449742317,0.095470674335957,0.043822109699249],[-0.020821031183004,0.090384304523468,-0.02238355204463],[0.048977237194777,-0.0049692234024405,0.092030912637711]],[[0.00095485686324537,-0.032501664012671,0.05845669656992],[-0.036839250475168,0.052204713225365,-0.029926965013146],[0.0048926454037428,0.078946344554424,-0.041938085108995]],[[0.0097709894180298,0.067080028355122,0.00081623095320538],[0.0042443131096661,-0.015073250047863,0.036235608160496],[-0.13884124159813,-0.028733054175973,0.015837205573916]],[[0.0093149691820145,-0.012574888765812,-0.0051566166803241],[0.04651391133666,0.00060875207418576,0.016811335459352],[0.059455063194036,0.07115426659584,-0.054225355386734]],[[-0.070426218211651,-0.026963239535689,0.031530544161797],[-0.074286818504333,-0.0025401529856026,-0.042373534291983],[-0.011012352071702,0.029692385345697,0.043568380177021]],[[0.033522840589285,-0.0074147130362689,-0.031204000115395],[-0.028372824192047,-0.056966375559568,-0.049234066158533],[-0.029795384034514,-0.015692252665758,-0.020247941836715]],[[0.011866902932525,0.089775957167149,-0.028522569686174],[0.0074689784087241,0.011722417548299,0.023175351321697],[-0.020749444141984,0.0036695699673146,-0.022437985986471]],[[0.037336464971304,-0.032431948930025,-0.08920419216156],[-0.0077099949121475,-0.054709911346436,-0.0068631190806627],[0.045638658106327,0.032071333378553,0.11701140552759]],[[-0.017492491751909,0.041797500103712,-0.0030359800439328],[0.087148994207382,-0.057997293770313,0.040446061640978],[0.0044097909703851,-0.061744946986437,0.054576713591814]],[[0.030684188008308,-0.040213368833065,0.069022513926029],[-0.021487571299076,0.079717211425304,0.043750591576099],[-0.076444834470749,0.0057574049569666,-0.071778677403927]],[[-0.074324749410152,-0.039684422314167,-0.003892571432516],[0.02711277268827,0.0161839928478,0.0080405091866851],[-0.044458471238613,0.0080769946798682,-0.009876967407763]],[[-0.011587443761528,0.050603363662958,0.037799865007401],[-0.069161236286163,-0.023600267246366,-0.0022491232957691],[0.083572432398796,0.039050679653883,0.10585851222277]],[[-0.0055525191128254,0.043437164276838,0.042375970631838],[0.0085033848881721,-0.046545226126909,0.0069099492393434],[-0.044470455497503,0.08222147077322,-0.018136778846383]],[[0.05278105288744,-0.033545471727848,0.00017525057774037],[-0.065560482442379,0.1116296350956,0.041329361498356],[-0.093813553452492,-0.0066669550724328,-0.037492502480745]],[[0.018772454932332,0.0019357319688424,0.031306456774473],[0.0096456194296479,0.021298447623849,0.04807087033987],[0.12171123921871,0.11152100563049,0.022567627951503]],[[0.027843121439219,-0.041324429214001,-0.064824998378754],[-0.037240445613861,0.10254360735416,0.020292792469263],[-0.092798262834549,0.038014903664589,-0.054823357611895]],[[0.12622426450253,0.0079072620719671,0.011463322676718],[-0.030382649973035,-0.02563202008605,0.01207163836807],[0.076886028051376,0.10754650086164,0.046390533447266]],[[0.073324307799339,-0.015660222619772,0.03560359030962],[-0.094153873622417,-0.048136372119188,0.062180787324905],[0.025563573464751,0.037791684269905,-0.013950753025711]],[[0.076827883720398,0.022568820044398,-0.006490093190223],[0.038947813212872,0.015102081000805,0.048323046416044],[-0.021268622949719,0.028667533770204,-0.023208472877741]],[[0.021024061366916,-0.052696142345667,0.013589298352599],[0.014421227388084,0.048596613109112,0.0031034660059959],[-0.0088613536208868,0.031049408018589,-0.0095101650804281]],[[0.047909568995237,0.0032766566146165,0.025724513456225],[0.070644296705723,0.060312557965517,-0.020943989977241],[-0.032815176993608,0.042546287178993,0.0062561659142375]],[[0.052697237581015,-0.099884785711765,-0.064209282398224],[-0.033394251018763,0.030440689995885,-0.0038211052305996],[0.032892897725105,0.059392798691988,0.047012142837048]],[[-0.026549216359854,0.00067974079865962,-0.032634936273098],[-0.017456153407693,0.028601991012692,0.01747858710587],[0.070423059165478,-0.026941945776343,0.071532398462296]],[[-0.014960402622819,-0.012035759165883,0.020054938271642],[-0.0021623719949275,0.028961591422558,0.0078401826322079],[-0.085982225835323,-0.072159089148045,0.077083192765713]],[[-0.055209957063198,0.0085491240024567,-0.088581748306751],[-0.012660192325711,-0.01134629920125,0.037599500268698],[0.075392454862595,0.079447828233242,0.0059725856408477]],[[-0.014192865230143,-0.0095559656620026,0.0054135359823704],[-0.017787514254451,0.046609070152044,-0.013581151142716],[0.023786965757608,-0.0029500564560294,-0.0041291690431535]],[[-0.021816086024046,0.050249945372343,0.019347282126546],[0.042851731181145,-0.031886585056782,0.010775439441204],[-0.076490521430969,-0.050759524106979,0.021451734006405]],[[-0.012214303947985,0.10573455691338,0.031263694167137],[-0.0030396599322557,-0.051979441195726,-0.0085920998826623],[0.048933494836092,0.082492724061012,0.068507164716721]],[[0.052081808447838,0.021870419383049,0.026334960013628],[0.072876244783401,-0.02747211791575,-0.046366214752197],[-0.024996351450682,0.062585957348347,-0.027010269463062]],[[-0.040186502039433,0.071023054420948,0.061489645391703],[0.011779117397964,-0.074443176388741,0.1355717331171],[-0.019444169476628,-0.057779833674431,-0.064820043742657]],[[0.010562602430582,0.092690415680408,-0.050361968576908],[-0.012142334133387,-0.092661887407303,-0.03678261116147],[-0.081161469221115,-0.03419229015708,-0.031537249684334]],[[-0.014673700556159,0.11552347242832,-0.0010525232646614],[0.049589317291975,-0.060014851391315,0.063442520797253],[-0.030676366761327,0.073816396296024,0.083501011133194]],[[0.05740862339735,-0.060047850012779,0.021732043474913],[0.046114008873701,0.015702113509178,-0.031316451728344],[0.026909166947007,-0.073998481035233,0.097260132431984]],[[-0.13465096056461,-0.026256842538714,0.0060525350272655],[-0.014998980797827,-0.053761791437864,-0.066343054175377],[-0.043543998152018,0.070858031511307,-0.082856066524982]],[[-0.0041269161738455,0.042196664959192,0.04728814214468],[-0.07180480659008,-0.04298148676753,0.033474329859018],[0.009574431926012,0.014313391409814,-0.03927993029356]],[[-0.0013219395186752,0.095250390470028,-0.025896064937115],[-0.017512241378427,-0.0060979789122939,-0.03530890494585],[-0.043763462454081,0.0024369489401579,-0.0049296892248094]],[[0.049110561609268,-0.00085891992785037,0.0058030029758811],[0.041686229407787,-0.038210064172745,-0.018131747841835],[0.054104179143906,-0.046743959188461,-0.0092554688453674]],[[0.0078153014183044,0.054442558437586,-0.18554873764515],[0.033709179610014,0.030735373497009,0.072989650070667],[0.034262914210558,0.037970561534166,0.03164941072464]],[[-0.00060556875541806,-0.013478705659509,0.0098855253309011],[-0.082012608647346,-0.0081898989155889,-0.018368298187852],[0.10087614506483,-0.013026454485953,0.08503108471632]],[[0.020618237555027,-0.0017363263759762,-0.028379991650581],[0.037669725716114,0.065415449440479,0.042146567255259],[0.046431727707386,-0.028483720496297,0.0080746859312057]],[[0.09210542589426,-0.00077682791743428,-0.12283737957478],[-0.072948932647705,-0.012144829146564,0.036137234419584],[-0.01282458472997,0.063687659800053,0.015570287592709]],[[-0.032672241330147,-0.10640548169613,-0.033639743924141],[-0.14114825427532,-0.032837152481079,0.0067499983124435],[-0.087974689900875,-0.0040762014687061,-0.036628175526857]],[[0.065926000475883,0.029304319992661,-0.015842678025365],[0.0092905610799789,0.03299505263567,-0.025258349254727],[-0.016086965799332,0.03045960702002,0.05502563342452]],[[0.0051377261988819,-0.046092160046101,0.06059992685914],[-0.030705412849784,0.085064895451069,-0.043002210557461],[-0.0097739771008492,-0.00010645105066942,0.026599377393723]],[[-0.051139622926712,0.097287207841873,-0.0090880766510963],[-0.051111910492182,-0.026866771280766,-0.033964365720749],[-0.037283282727003,0.024228496477008,-0.061286028474569]],[[-0.044642951339483,0.052842270582914,0.003870262298733],[-0.037828758358955,-0.062934659421444,0.044497147202492],[-0.032856348901987,0.058287966996431,0.049075700342655]],[[0.015054600313306,0.011496439576149,-0.053716029971838],[0.061150193214417,0.0091193187981844,0.005208931863308],[-0.045205984264612,0.13260661065578,0.023460572585464]],[[0.10127686709166,0.016057623550296,0.086628042161465],[0.090739659965038,0.044828362762928,0.014224245212972],[0.032313395291567,0.069500610232353,0.063366211950779]],[[0.040824051946402,-0.012377314269543,0.028345653787255],[-0.05923980101943,0.0011288226814941,-0.0027544375043362],[0.036495737731457,0.062329959124327,0.13037633895874]],[[0.016544809564948,0.09190945327282,0.056464619934559],[0.037964940071106,-0.027866706252098,0.019702130928636],[0.075764484703541,0.10467427223921,0.070801317691803]],[[-0.005257049575448,0.10067926347256,0.011604732833803],[-0.022068366408348,-0.062307540327311,0.065315261483192],[-0.072829179465771,0.0061032231897116,-0.072126381099224]],[[-0.12258303165436,0.026458479464054,-0.078686982393265],[-0.026257406920195,0.0086327213793993,-0.017196329310536],[-0.020986001938581,0.020696446299553,0.034809552133083]],[[-0.037809785455465,-0.031498577445745,0.031004566699266],[-0.035785265266895,-0.029596222564578,-0.020618775859475],[-0.015421319752932,-0.017659803852439,-0.026636091992259]],[[-0.023380493745208,-0.019546467810869,0.0030171589460224],[0.049253363162279,-0.064613863825798,-0.016131216660142],[0.05206548795104,-0.0098284520208836,0.029538316652179]],[[-0.02366130053997,-0.01539621502161,0.020230583846569],[-0.052919369190931,0.053669609129429,-0.060113988816738],[0.052395865321159,0.043942432850599,-0.01499286480248]],[[0.0019891113042831,0.044681753963232,0.061545107513666],[-0.035994850099087,0.044543657451868,0.044723227620125],[0.021223729476333,0.061635140329599,-0.064991235733032]],[[0.0099631175398827,-0.019033469259739,0.032834511250257],[0.037837628275156,0.067705690860748,-0.0148835927248],[-0.015839859843254,-0.0042849909514189,0.012155655771494]],[[-0.038083743304014,0.045169100165367,0.12554426491261],[-0.043781217187643,-0.049237657338381,0.0074851894751191],[0.014288816601038,0.026104731485248,0.031999256461859]]],[[[0.11509834975004,0.031639941036701,-0.12152206897736],[-0.034962810575962,0.11319038271904,0.036453295499086],[0.0056985653936863,-0.029252201318741,-0.085598096251488]],[[-0.0077636879868805,0.092404030263424,0.0030252072028816],[-0.1338706612587,0.005885458085686,-0.029908508062363],[-0.0057227862998843,0.14122925698757,-0.089861869812012]],[[0.19967685639858,-0.026044772937894,0.28440454602242],[0.066911026835442,-0.1087129637599,-0.094885900616646],[0.04374822229147,0.18012996017933,-0.11137663573027]],[[-0.071415551006794,-0.076872006058693,0.062540858983994],[0.078679397702217,-0.036102369427681,-0.056979570537806],[0.01071743760258,-0.017916874960065,-0.014544971287251]],[[0.080828033387661,-0.0067114438861609,0.014878857880831],[0.038254480808973,-0.18296629190445,-0.00325988070108],[-0.19223526120186,-0.10993152111769,-0.075831890106201]],[[-0.082706667482853,0.059487603604794,-0.0098018432036042],[0.0867874994874,-0.047830790281296,0.05149358138442],[0.035483058542013,0.045557551085949,0.14891238510609]],[[0.022243969142437,0.038578048348427,0.041388396173716],[0.018770262598991,-0.051034480333328,0.024501241743565],[0.072143316268921,0.043929617851973,-0.12714231014252]],[[-0.022383559495211,-0.063527397811413,-0.023740528151393],[-0.095231831073761,0.0028037200681865,-0.089236326515675],[-0.0091838417574763,0.044647898525,-0.13371130824089]],[[-0.057061649858952,-0.0055915750563145,-0.21688060462475],[-0.042562894523144,0.11173123121262,-0.10015469044447],[-0.069931447505951,-0.12469879537821,-0.15973395109177]],[[0.12206847965717,0.023259421810508,0.031726736575365],[-0.090581133961678,0.001740641426295,0.012045473791659],[0.068683385848999,0.084794923663139,0.04708831384778]],[[-0.030786320567131,0.12628050148487,0.065126746892929],[-0.023434380069375,-0.029247688129544,-0.019161134958267],[-0.087960816919804,-0.14478875696659,0.028725881129503]],[[-0.088358014822006,-0.11773499846458,-0.0053047924302518],[-0.031609497964382,0.032415073364973,0.0092030726373196],[0.06693159788847,0.002526318654418,-0.077552735805511]],[[0.0049969716928899,0.15249168872833,-0.041701935231686],[0.010395748540759,-0.1467023640871,-0.017503032460809],[-0.003995391074568,0.0040811034850776,-0.0080527272075415]],[[-0.16526725888252,0.055572245270014,0.045989315956831],[-0.05026787891984,-0.095941588282585,0.047133892774582],[0.0082877902314067,0.13324949145317,-0.13313527405262]],[[0.078229777514935,-0.082376420497894,0.034618984907866],[-0.050893791019917,0.1046045795083,-0.034126199781895],[-0.030810963362455,0.041074734181166,0.015744457021356]],[[-0.066722400486469,-0.17270159721375,0.0085179731249809],[0.093630015850067,0.11272066086531,-0.039860345423222],[-0.0071996208280325,-0.15843436121941,-0.099408835172653]],[[-0.1380298435688,-0.0019983621314168,-0.014750146307051],[-0.1654199808836,0.041811548173428,0.021257285028696],[-0.22791171073914,0.015986751765013,-0.010491210967302]],[[0.060912370681763,0.067712336778641,-0.046185109764338],[-0.22457250952721,-0.016241807490587,0.1911476701498],[-0.11826997995377,-0.11727138608694,-0.10003953427076]],[[0.049227200448513,-0.029359638690948,0.11394570767879],[0.10387635976076,-0.0059140329249203,0.10400245338678],[-0.015738639980555,-0.10698851197958,0.031414296478033]],[[0.21939097344875,-0.040883224457502,-0.022848030552268],[0.073092542588711,0.0084436889737844,-0.075811177492142],[0.0092648528516293,-0.020325032994151,0.089530631899834]],[[-0.080609492957592,0.011053539812565,0.091715790331364],[0.1343689262867,0.077698461711407,-0.030377622693777],[-0.021765414625406,-0.019311666488647,-0.010682760737836]],[[-0.071557812392712,0.057011753320694,-0.057509463280439],[-0.049974992871284,0.032852757722139,0.027467016130686],[0.019917912781239,0.018274122849107,0.17972931265831]],[[0.0085034798830748,-0.020754704251885,0.05297714844346],[0.093232147395611,-0.056738827377558,0.080865435302258],[-0.076275534927845,-0.05273637548089,-0.023035563528538]],[[0.034047555178404,-0.063691236078739,-0.1096338108182],[0.17671021819115,0.19325643777847,0.077333621680737],[-0.080085188150406,-0.15279135107994,-0.052821315824986]],[[-0.021727470681071,-0.13992753624916,0.027551589533687],[-0.050265073776245,-0.012942746281624,0.045442093163729],[-0.016752114519477,-0.00049696007044986,-0.0047440584748983]],[[0.04215157404542,-0.00014929324970581,-0.012472548522055],[-0.14339856803417,-0.10441505163908,-0.084628902375698],[0.022223213687539,0.0055020158179104,-0.14255258440971]],[[-0.12760336697102,-0.014519080519676,-0.017729355022311],[-0.037150107324123,0.0094064036384225,-0.014496977441013],[0.15012134611607,0.023731661960483,0.09851199388504]],[[0.0074017951264977,-0.047658983618021,0.058211114257574],[-0.062478743493557,-0.03761750087142,0.03138654306531],[0.072127863764763,0.06028913334012,0.048917938023806]],[[0.0310975369066,0.12369609624147,-0.012836736626923],[-0.052468296140432,-0.12032596021891,0.0094976546242833],[-0.025406438857317,0.028980964794755,0.06209884211421]],[[0.06317350268364,0.047161906957626,-0.014143225736916],[-0.065311498939991,-0.037782847881317,0.0082906018942595],[-0.097632676362991,-0.014608729630709,-0.070783831179142]],[[0.0023685593623668,-0.017405051738024,0.042112287133932],[0.058791488409042,0.0031018278095871,-0.0085394149646163],[0.12891875207424,0.18496726453304,0.0021784382406622]],[[0.016560792922974,-0.026338085532188,-0.072826378047466],[-0.088219948112965,0.0068249749019742,-0.10476796329021],[0.028026964515448,-0.14213411509991,-0.061624359339476]],[[0.049095012247562,0.18396179378033,0.12401924282312],[-0.058617688715458,0.093113847076893,-0.20220912992954],[0.043329481035471,0.076322108507156,-0.098342552781105]],[[0.11246941238642,0.0075617218390107,0.054901696741581],[0.0127824395895,0.022062754258513,0.14955788850784],[0.040709897875786,-0.027188571169972,0.078406110405922]],[[-0.051452796906233,-0.04669176414609,0.013800044544041],[-0.12496598064899,-0.15628056228161,-0.12117573618889],[0.10614467412233,0.060038983821869,-0.02368669398129]],[[-0.02637005224824,0.090643920004368,-0.064691372215748],[0.0018041013972834,-0.2118551582098,0.080418340861797],[-0.052560351788998,-0.054091405123472,-0.0021920860745013]],[[0.20061206817627,0.10949333012104,0.04386693239212],[-0.0012519062729552,0.0078604705631733,0.0041698678396642],[0.021358776837587,-0.049716372042894,0.0094630038365722]],[[0.061903648078442,0.089626230299473,0.056197926402092],[0.13168299198151,0.19896391034126,-0.054888192564249],[0.0027371847536415,-0.010027645155787,-0.002659322693944]],[[0.14270207285881,-0.014762649312615,-0.014649637043476],[0.0093632750213146,-0.0070098377764225,0.033064819872379],[-0.096370205283165,0.016578525304794,0.13834942877293]],[[-0.1173652857542,0.051288407295942,-0.01165040768683],[0.0051164417527616,0.10123011469841,-0.013242540881038],[0.031818442046642,0.21113379299641,0.036048356443644]],[[-0.017369026318192,0.00043497435399331,-0.11055311560631],[0.015498510561883,0.058247573673725,-0.023795519024134],[-0.040343660861254,0.13957439363003,0.19151285290718]],[[0.014822574332356,0.11728842556477,0.2038486301899],[0.047421433031559,0.019359901547432,0.1477542668581],[-0.046511229127645,-0.023016426712275,0.037063486874104]],[[0.029927084222436,-0.018789062276483,0.033809550106525],[0.10175135731697,0.0087063405662775,0.023695712909102],[0.059457201510668,-0.058957181870937,0.031220812350512]],[[0.09113521873951,0.16642183065414,0.069622352719307],[-0.080313816666603,-0.087552398443222,-0.081843607127666],[-0.040994845330715,0.023065209388733,0.044409111142159]],[[0.13627581298351,0.068127781152725,-0.20492485165596],[0.085675798356533,0.014555101282895,-0.12225965410471],[-0.0015724113909528,-0.052842278033495,-0.12260080873966]],[[-0.0092312740162015,0.061271950602531,-0.018641052767634],[0.0076311766169965,-0.015927514061332,-0.06379596889019],[-0.015070389956236,0.0048085059970617,0.0063204010948539]],[[-0.12044412642717,0.042533200234175,0.02296019718051],[-0.044558748602867,0.071898862719536,-0.10525723546743],[-0.040884450078011,0.017693638801575,-0.041541561484337]],[[-0.018234254792333,-0.058891229331493,0.0036741776857525],[-0.085819326341152,-0.074872694909573,-0.14760357141495],[-0.019087987020612,-0.029986375942826,0.0055761281400919]],[[-0.14749246835709,-0.17815010249615,-0.18579024076462],[-0.15082460641861,-0.12440372258425,0.031340658664703],[-0.075555108487606,-0.1170380115509,-0.047627426683903]],[[0.053929701447487,-0.0047243167646229,-0.19544020295143],[0.06207212805748,0.022083321586251,0.082510858774185],[-0.0048476103693247,0.015080447308719,-0.012535971589386]],[[0.15018352866173,0.024687049910426,0.086626105010509],[0.029796879738569,0.029150635004044,-0.042786754667759],[-0.046187877655029,0.087541356682777,-0.078715212643147]],[[0.18920795619488,-0.04227676987648,0.092770427465439],[0.057460326701403,-0.052621319890022,0.11079417914152],[-0.06039285287261,-0.091898277401924,-0.083670623600483]],[[0.095883175730705,-0.045764986425638,-0.011439845897257],[0.06023745983839,0.056426182389259,-0.056350007653236],[0.060153096914291,0.10495138913393,0.049328345805407]],[[-0.048029772937298,-0.031376164406538,-0.006735548377037],[0.088793136179447,0.0058229910209775,-0.019328076392412],[0.077423110604286,-0.025438670068979,0.11168076097965]],[[0.11136075854301,0.1341535449028,-0.1262816041708],[0.041943538933992,0.024447131901979,0.042194530367851],[-0.13452464342117,0.079502642154694,0.015786712989211]],[[0.16644491255283,-0.018898535519838,0.091007977724075],[0.060858573764563,0.069653809070587,-0.016201686114073],[0.086635053157806,-0.0028340860735625,0.0036369666922837]],[[0.055486503988504,0.016715070232749,0.060063142329454],[0.030979160219431,-0.0045779123902321,0.091435708105564],[0.080345876514912,0.012377104721963,0.075318202376366]],[[0.1825156211853,0.060019560158253,-0.1085420101881],[-0.082699738442898,-0.039790701121092,0.0098754549399018],[0.062526978552341,-0.13272139430046,0.050782971084118]],[[0.021124934777617,-0.16742572188377,-0.11653558909893],[-0.068301893770695,0.071991942822933,-0.10307101905346],[0.050583500415087,-0.076484553515911,0.043725535273552]],[[0.034973669797182,-0.086438417434692,0.041040007025003],[-0.14950406551361,0.096700802445412,-0.069860123097897],[-0.10490501672029,-0.058750286698341,-0.1281433403492]],[[-0.00085827760631219,-0.023830818012357,-0.024668233469129],[0.12796545028687,0.024580530822277,-0.022117169573903],[0.0033635622821748,0.030091129243374,-0.037479560822248]],[[-0.013038608245552,0.010690369643271,-0.078827574849129],[-0.088759712874889,-0.098058693110943,0.094684176146984],[-0.0441505163908,-0.033276602625847,0.013845355249941]],[[0.077321618795395,0.054017968475819,0.13334958255291],[-0.036577861756086,0.021665560081601,-0.052776217460632],[0.042758025228977,0.03628171235323,-0.052617657929659]],[[0.12260203063488,-0.0027780109085143,0.061108633875847],[-0.033058252185583,-0.062021300196648,0.019579226151109],[-0.130744561553,-0.062137328088284,0.040382847189903]],[[0.12074907869101,-0.12826922535896,-0.043312668800354],[-0.0043466780334711,-0.053303059190512,-0.0068351258523762],[0.047528386116028,-0.096275560557842,0.069252468645573]],[[0.13003918528557,0.07087180763483,0.03394491225481],[-0.01100205630064,-0.056821454316378,-0.060295920819044],[-0.096088379621506,-0.075052030384541,-0.00052527064690366]],[[0.10719358175993,0.21949324011803,0.15213431417942],[-0.028907982632518,-0.065874300897121,0.039736818522215],[-0.0080482410266995,-0.0082515412941575,-0.029032006859779]],[[0.070399232208729,0.071857526898384,0.12472681701183],[-0.068873405456543,-0.0065789758227766,0.11121582984924],[-0.01052977796644,0.045045241713524,0.022420743480325]],[[0.084249392151833,-0.00093975447816774,0.005448286421597],[-0.0057429894804955,-0.017819182947278,0.0066393539309502],[0.032847333699465,0.084549881517887,0.137496098876]],[[0.057175271213055,0.092007555067539,-0.084796831011772],[-0.02037245221436,-0.085323601961136,-0.060561552643776],[0.10508818179369,0.098096802830696,-0.0022312556393445]],[[0.077670902013779,-0.1163731738925,-0.078004725277424],[0.023440051823854,-0.053909715265036,0.026912683621049],[-0.036359291523695,0.051303252577782,0.0057924385182559]],[[0.096141919493675,0.11914616078138,0.094063073396683],[-0.036135133355856,-0.040282379835844,0.028909254819155],[-0.025194227695465,0.064626187086105,0.010480117984116]],[[0.026231100782752,0.11947222054005,-0.025713915005326],[-0.070611380040646,-0.081090524792671,-0.012290842831135],[-0.017309837043285,-0.0019793307874352,0.016090419143438]],[[-0.079866364598274,-0.088483810424805,-0.0075492626056075],[-0.082256108522415,0.029502091929317,-0.034423686563969],[-0.0052379071712494,-0.089156955480576,-0.046897873282433]],[[0.11738884449005,0.049012593924999,-0.0066590085625648],[0.017545064911246,0.027008734643459,0.031810466200113],[0.0041035222820938,0.037008516490459,-0.067636489868164]],[[-0.042604297399521,0.075411900877953,0.026300275698304],[-0.0025980067439377,-0.0077302502468228,0.067675344645977],[-0.094404332339764,0.19834493100643,0.16143037378788]],[[0.17918568849564,0.046609859913588,0.12113718688488],[-0.035251211374998,-0.046637505292892,0.04912094771862],[0.0063484101556242,-0.042715575546026,-0.037729918956757]],[[0.032520182430744,0.013006656430662,0.03317853063345],[-0.078484922647476,-0.064306855201721,0.025761030614376],[0.00022144413378555,-0.062922768294811,-0.0093945190310478]],[[0.030732445418835,0.02338957414031,0.066615164279938],[0.0092798806726933,0.01367396209389,0.097360864281654],[-0.10912722349167,-0.11857396364212,-0.16924683749676]],[[0.0068525322712958,0.054391626268625,0.066568680107594],[0.1045770868659,-0.068163275718689,-0.08995570987463],[0.093281596899033,0.043456256389618,-0.027168728411198]],[[-0.055528402328491,-0.021214481443167,-0.055043425410986],[0.052052270621061,-0.022860895842314,-0.0060752122662961],[-0.033273126929998,-0.037613686174154,-0.025336023420095]],[[-0.10848922282457,-0.09155336022377,-0.049754459410906],[-0.059979222714901,0.031789783388376,-0.037659831345081],[-0.027621876448393,-0.025751577690244,-0.019036460667849]],[[0.046048525720835,0.046220280230045,0.080448240041733],[0.084846869111061,0.07253360003233,0.081198275089264],[-0.043096378445625,0.062122490257025,-0.068638667464256]],[[-0.021876906976104,-0.051233496516943,0.013529920019209],[-0.044803086668253,0.085258260369301,0.051989324390888],[0.011221442371607,-0.011309781111777,-0.01349638029933]],[[0.04667355120182,0.0050982940010726,0.075521387159824],[-0.085411168634892,-0.061841335147619,0.12897892296314],[-0.048774056136608,-0.0093277795240283,0.13397064805031]],[[0.062185913324356,0.011245969682932,0.061152543872595],[-0.037748735398054,-0.0036124316975474,-0.028383698314428],[-0.13761080801487,-0.15974415838718,0.098428323864937]],[[0.046088427305222,-0.048619128763676,-0.13688963651657],[-0.062653534114361,0.061603911221027,-0.013575213961303],[0.094121031463146,-0.072378627955914,0.024955751374364]],[[0.060353636741638,0.0075928717851639,0.15151081979275],[0.023367077112198,-0.089505687355995,0.00075777620077133],[0.13856527209282,0.041557863354683,0.10830862820148]],[[0.14782191812992,0.13221400976181,0.003474616445601],[-0.051461800932884,-0.052777554839849,-0.039987917989492],[-0.10906859487295,-0.088264212012291,0.029725445434451]],[[0.04308845102787,-0.044455613940954,0.042264252901077],[0.13477545976639,-0.090978391468525,0.098966851830482],[0.093507431447506,-0.041011396795511,0.12182746082544]],[[0.15128506720066,0.027347119525075,-0.040160097181797],[0.11401458829641,-0.16960135102272,-0.069970726966858],[0.11747568845749,0.04062782600522,0.069188117980957]],[[-0.075666673481464,-0.02448058500886,0.18009948730469],[-0.0079917339608073,-0.074313044548035,0.09479159116745],[0.017811872065067,-0.079189106822014,0.0064688269048929]],[[-0.093202129006386,-0.058588415384293,0.14277173578739],[0.057892877608538,-0.011931438930333,-0.018726114183664],[-0.042762696743011,-0.018842143937945,-0.035787556320429]],[[0.056391775608063,0.042126934975386,0.001466357964091],[-0.19495177268982,0.26973715424538,-0.1301521062851],[0.052092466503382,-0.002184780780226,-0.03598303720355]],[[-0.10296539217234,-0.025850648060441,0.15388561785221],[-0.088620476424694,-0.0077105020172894,-0.030267756432295],[-0.064655967056751,-0.011516611091793,-0.079261608421803]],[[0.10430101305246,-0.036763802170753,0.12000523507595],[-0.028025154024363,0.014904133975506,0.0040883938781917],[-0.055694449692965,-0.096935734152794,-0.025564355775714]],[[0.23169158399105,0.10083506256342,-0.086866319179535],[0.048841930925846,0.078256994485855,0.14069405198097],[-0.078762374818325,0.006370254792273,0.040241900831461]],[[0.12655049562454,0.040823433548212,0.055293370038271],[0.076109647750854,-0.015568079426885,0.09593803435564],[0.025216698646545,-0.078501366078854,-0.030632877722383]],[[0.24698916077614,0.088068813085556,-0.019483001902699],[0.05166632682085,0.022185387089849,0.021830474957824],[0.081766232848167,0.074878446757793,0.071649335324764]],[[0.011999507434666,0.023627741262317,0.0020530861802399],[0.011678721755743,-0.11485348641872,0.087310172617435],[-0.037303142249584,-0.10550497472286,0.039992868900299]],[[0.10281273722649,-0.018526900559664,-0.083327263593674],[0.13454878330231,-0.013352645561099,-0.11382099241018],[-0.076238855719566,0.038003634661436,0.018774254247546]],[[-9.796262747841e-05,-0.042859770357609,-0.023721473291516],[-0.054529648274183,0.019612515345216,-0.0010485803941265],[-0.070866838097572,0.019254416227341,0.15047995746136]],[[0.077788390219212,0.076023831963539,-0.032758504152298],[-0.058338318020105,-0.11562311649323,0.058195281773806],[0.0065448633395135,-0.098774053156376,-0.10214614868164]],[[-0.014083394780755,0.050462726503611,0.025284830480814],[-0.029852336272597,0.003851925721392,-0.0064661735668778],[-0.12812936306,-0.12333484739065,-0.093143403530121]],[[-0.072225719690323,-0.016772085800767,-0.044143039733171],[-0.084183506667614,0.086045175790787,0.010198105126619],[0.18042701482773,-0.0066436533816159,-0.035850025713444]],[[-0.054851952940226,-0.073891140520573,0.19539047777653],[0.049480222165585,0.20983074605465,-0.099431157112122],[0.20744876563549,0.038532562553883,0.15119336545467]],[[0.0018771955510601,-0.094235226511955,0.12591338157654],[0.068775832653046,0.0056599876843393,0.024987816810608],[0.057640176266432,-0.14508303999901,0.014357833191752]],[[0.028218675404787,0.062374331057072,-0.1158746778965],[0.014493771828711,0.082102075219154,-0.080396004021168],[-0.054211366921663,0.017975037917495,0.052618898451328]],[[-0.11322750151157,0.021495599299669,-0.087086886167526],[0.10689591616392,0.10208022594452,-0.013498097658157],[-0.025890596210957,-0.2203321903944,-0.02494141086936]],[[-0.18985866010189,0.073139540851116,-0.070763975381851],[0.005383628886193,-0.067114748060703,-0.12946319580078],[0.11853206157684,-0.067770682275295,-0.0018654448213056]],[[0.034895233809948,0.16351090371609,-0.036344558000565],[0.04954307153821,-0.068146698176861,-0.075771927833557],[-0.0084042809903622,-0.0070616248995066,0.0047546583227813]],[[-0.091594323515892,-0.19846281409264,-0.02233581058681],[-0.031013092026114,-0.007513087708503,-0.16953912377357],[-0.081820495426655,-0.071960143744946,-0.041712883859873]],[[-0.075669229030609,-0.069224342703819,-0.07810814678669],[0.056133653968573,-0.038336846977472,-0.026762941852212],[-0.010398123413324,-0.16141158342361,0.027351731434464]],[[-0.048945970833302,0.048178974539042,0.012078731320798],[0.030245302245021,-0.095388308167458,0.014309942722321],[0.13345694541931,0.10586239397526,0.015845183283091]],[[0.0052989264950156,0.12955591082573,0.017510004341602],[0.025355709716678,0.065372996032238,-0.1378148496151],[-0.084261499345303,0.099749952554703,0.021391155198216]],[[-0.19162379205227,-0.02891644090414,0.031047271564603],[0.15152388811111,0.078484676778316,-0.076853364706039],[-0.15633048117161,-0.09434150159359,-0.002368007786572]],[[-0.016139948740602,0.0060908528976142,-0.097406446933746],[0.042414575815201,-0.039178185164928,-0.0015238093910739],[-0.045118153095245,-0.059554670006037,0.14594165980816]],[[-0.044202696532011,-0.096357673406601,-0.010958782397211],[0.0033450936898589,-0.12786470353603,-0.039541069418192],[-0.11682972311974,-0.072441756725311,-0.048547025769949]],[[0.075721226632595,0.076666936278343,-0.022428620606661],[-0.021997770294547,-0.032160807400942,-0.096887081861496],[0.040479585528374,0.015134567394853,-0.080497093498707]],[[0.0033915468957275,0.13891877233982,0.14393235743046],[0.003719441127032,0.0023581075947732,0.090723924338818],[0.036460533738136,0.068811826407909,0.021413791924715]],[[-0.20603863894939,-0.030685897916555,0.07332294434309],[-0.0905377343297,-0.034563265740871,0.16549810767174],[-0.098936296999454,-0.095585457980633,-0.0064399600960314]],[[0.028270652517676,-0.020365040749311,-0.084701351821423],[0.038749527186155,-0.0005810217699036,0.042844116687775],[0.019824795424938,-0.19501841068268,0.0014815338654444]],[[-0.1392307728529,-0.026965236291289,-0.14254233241081],[-0.0067887469194829,-0.031821340322495,0.039268173277378],[0.0733832269907,-0.014929197728634,0.11379680037498]],[[-0.068492606282234,0.0040541365742683,0.1019209548831],[-0.054669544100761,0.034663196653128,-0.11041878163815],[0.046741932630539,-0.13482883572578,-0.037238541990519]],[[0.0017994033405557,0.020112216472626,-0.0064715314656496],[0.058331806212664,0.040976576507092,0.11381658166647],[0.04660077393055,0.060455694794655,0.21695104241371]],[[-0.022911809384823,-0.03714145720005,0.0094588762149215],[-0.0094882259145379,-0.021804248914123,-0.05454570427537],[-0.041485171765089,0.051288835704327,0.039464190602303]],[[0.10794366151094,-0.045299131423235,-0.06586953997612],[0.046448208391666,-0.048496022820473,-0.033180098980665],[-0.03077389113605,0.014632598496974,-0.10482461750507]],[[0.007474753074348,0.037558868527412,-0.051196679472923],[0.029351230710745,-0.036998625844717,0.09236466139555],[-0.018115201964974,-0.084172651171684,0.043153461068869]]],[[[-0.023353895172477,0.018128203228116,-0.02373450435698],[0.015191749669611,0.036842245608568,0.045889522880316],[0.17707775533199,0.048680197447538,0.070733785629272]],[[0.05554312095046,0.049324706196785,-0.29243421554565],[0.056290272623301,0.03470005095005,-0.25224849581718],[0.071514785289764,-0.014709007926285,-0.1193241328001]],[[0.11194600909948,-0.023187855258584,-0.14064072072506],[0.12412053346634,0.18039989471436,-0.053022842854261],[-0.2243378162384,0.016383526846766,-0.029427863657475]],[[-0.13355652987957,-0.14543135464191,-0.15530025959015],[0.099524095654488,0.027490166947246,-0.027664193883538],[-0.28530412912369,0.079619117081165,0.010931089520454]],[[-0.019980268552899,-0.033044405281544,0.052073277533054],[-0.0080912429839373,-0.082894913852215,0.0069814771413803],[0.021460151299834,-0.062158364802599,0.040864784270525]],[[0.11162889748812,-0.039495985955,-0.045423455536366],[0.0077634672634304,-0.027699772268534,-0.055684052407742],[-0.092960342764854,0.036958310753107,0.2696231007576]],[[-0.065739311277866,-0.13755947351456,0.051986917853355],[-0.090201213955879,0.021501835435629,0.065813958644867],[0.069737121462822,0.090913951396942,0.05133106186986]],[[0.0092644263058901,0.1660797894001,0.032396342605352],[0.068665325641632,-0.046146862208843,-0.0080225421115756],[-0.084563098847866,-0.19854055345058,-0.18662546575069]],[[-0.11773786693811,0.066944986581802,-0.038136798888445],[0.055830836296082,0.042823918163776,0.036593344062567],[-0.022687604650855,0.022767517715693,0.11132634431124]],[[-0.0058480929583311,0.087811812758446,0.073315232992172],[-0.052512153983116,-0.049110397696495,-0.072880931198597],[0.10264351963997,0.21844153106213,-0.026617228984833]],[[0.082226999104023,0.0644511282444,0.010032181628048],[-0.019592029973865,-0.027249585837126,-0.098396129906178],[-0.015240422450006,0.041827481240034,-0.24048162996769]],[[-0.02958251349628,0.10929124057293,-0.0088142501190305],[0.047916125506163,-0.096621863543987,-0.060485102236271],[-0.077700652182102,-0.076624438166618,-0.044705182313919]],[[0.09765961766243,0.16006697714329,0.049310259521008],[0.048423536121845,0.19680680334568,0.081671454012394],[0.063206851482391,-0.016311252489686,0.030135910958052]],[[-0.062568813562393,-0.074594460427761,-0.0091733569279313],[0.034649930894375,-0.042242258787155,-0.0029154205694795],[0.1619645357132,-0.13632021844387,0.11220403015614]],[[0.14437857270241,-0.10851756483316,-0.17607368528843],[0.01109526772052,0.070014402270317,0.088880084455013],[-0.020818281918764,0.03555453941226,-0.14756445586681]],[[0.035598948597908,-0.15820214152336,-0.0024565134663135],[0.01114890165627,0.020196288824081,0.00573789793998],[0.0013203184353188,0.0057420865632594,0.048553202301264]],[[-0.042297702282667,-0.068965494632721,-0.13680575788021],[-0.0049120490439236,0.12836393713951,0.0074705402366817],[0.064482353627682,-0.07138879597187,0.036005154252052]],[[0.031237110495567,-0.034762546420097,0.1176947504282],[0.037035826593637,-0.0329355224967,0.08362291008234],[-0.13805912435055,-0.098695255815983,0.020409885793924]],[[-0.15183766186237,-0.17468400299549,0.062907636165619],[0.11510688066483,-0.0065197735093534,-0.014765435829759],[0.10971299558878,0.16807743906975,0.026985608041286]],[[0.047421392053366,-0.0058901757001877,-0.14085821807384],[-0.0054754698649049,-0.05132918804884,-0.12276769429445],[-0.035549212247133,0.0099816750735044,-0.13141718506813]],[[-0.0064325048588216,-0.046316370368004,0.016015445813537],[-0.033216811716557,-0.0083915861323476,0.014441239647567],[-0.050600834190845,-0.042114354670048,-0.0014304503565654]],[[-0.10042881965637,-0.14166624844074,0.21872454881668],[0.042780216783285,-0.0025294437073171,0.1100036278367],[0.01799089461565,0.046498280018568,-0.031742926687002]],[[0.023315908387303,-0.0087594036012888,-0.038140494376421],[0.022815411910415,0.13277795910835,-0.02454786002636],[-0.078287966549397,-0.10239381343126,-0.13078986108303]],[[-0.016821535304189,-0.045674853026867,-0.020519383251667],[-0.037245262414217,0.094851054251194,0.068355925381184],[-0.066492706537247,-0.015362853184342,-0.057674665004015]],[[0.17921125888824,0.1176036298275,0.24694366753101],[-0.058732774108648,0.12255224585533,0.054262798279524],[-0.07963202893734,-0.078403189778328,0.02375583909452]],[[0.0026703157927841,-0.11607917398214,-0.11130584031343],[-0.041202422231436,0.0093419775366783,-0.10006123781204],[-0.031421516090631,-0.080206491053104,0.027103681117296]],[[0.22493641078472,0.13821572065353,0.035254266113043],[0.049363918602467,-0.095935568213463,-0.097027197480202],[0.050042815506458,0.068737424910069,-0.070804364979267]],[[0.079273715615273,-0.1035316362977,-0.11224725842476],[0.1087881475687,-0.10762868076563,0.041969809681177],[0.089036181569099,-0.037962518632412,-0.08654148131609]],[[0.117531940341,0.041754130274057,0.00053482741350308],[0.0049230516888201,0.030910544097424,-0.10550309717655],[0.12368294596672,-0.058492708951235,0.098306365311146]],[[-0.10425366461277,0.015349140390754,-0.059841141104698],[-0.013170969672501,0.026710888370872,-0.12704879045486],[-0.092671900987625,-0.10978358238935,-0.13993099331856]],[[0.16718871891499,-0.021911161020398,-0.023220017552376],[-0.14047130942345,-0.18513920903206,-0.068027973175049],[0.083747409284115,0.049833241850138,-0.012867958284914]],[[-0.033374428749084,-0.0095881065353751,-0.081441134214401],[0.088081412017345,-0.037426739931107,0.18153394758701],[-0.013916226103902,-0.10379557311535,-0.060005724430084]],[[-0.12072217464447,0.10900568217039,-0.084701247513294],[-0.0053125713020563,0.14610609412193,-0.0058376491069794],[0.090621307492256,0.06807254999876,0.036289379000664]],[[0.04948004335165,-0.03158462792635,-0.067795552313328],[0.052061211317778,-0.068451888859272,-0.12127983570099],[0.051365256309509,0.03916810080409,0.0083682611584663]],[[-0.18189041316509,-0.17763519287109,-0.20798459649086],[-0.013108426705003,0.0117780957371,-0.11942365765572],[0.043822515755892,0.075402937829494,0.1235219091177]],[[0.048147864639759,-0.26557865738869,0.081735193729401],[0.17686370015144,-0.30043870210648,0.0063654631376266],[-0.11826116591692,0.0051175272092223,-0.031679268926382]],[[0.0027528416831046,0.0080287680029869,0.12121517211199],[-0.14062860608101,0.0034566705580801,-0.039709463715553],[0.033238921314478,-0.089897148311138,-0.085054039955139]],[[-0.022121202200651,-0.0031234554480761,0.022743366658688],[-0.066127121448517,-0.12239738553762,0.030808022245765],[0.07523337751627,0.070251353085041,0.041127923876047]],[[0.05544600263238,0.020637044683099,0.0059144091792405],[-0.094368115067482,-0.013682228513062,0.13453747332096],[0.0035284424666315,-0.096142381429672,0.13436222076416]],[[-0.2340197712183,-0.15883514285088,0.084938727319241],[-0.19164763391018,-0.14435018599033,0.063575826585293],[0.1087302416563,-0.03644946962595,0.12818022072315]],[[-0.10726567357779,-0.11090892553329,-0.072561904788017],[-0.086711585521698,0.039638161659241,0.046235159039497],[-0.074629008769989,0.05518352240324,-0.032441306859255]],[[0.10186526179314,0.028550755232573,-0.072114869952202],[0.12580581009388,0.10492108762264,0.0028250222094357],[-0.12036404013634,-0.1414185911417,0.13080282509327]],[[0.12107797712088,0.070032574236393,-0.019720293581486],[0.10031756013632,0.061118237674236,-0.016910281032324],[0.082285329699516,-0.090974442660809,0.068651095032692]],[[-0.13720621168613,-0.29861330986023,-0.081460691988468],[-0.020671926438808,-0.016013814136386,0.020638592541218],[0.098416350781918,0.16826048493385,0.21504290401936]],[[-0.34519505500793,0.073691345751286,0.1148993447423],[-0.052602048963308,-0.1564861536026,0.16672134399414],[0.17580680549145,-0.17517320811749,-0.14870807528496]],[[0.068891398608685,0.050937663763762,0.04768643155694],[0.10330054163933,0.028489762917161,-0.0037389802746475],[-0.030570833012462,0.024221425876021,-0.0018667331896722]],[[-0.39738976955414,-0.15015912055969,0.055048283189535],[0.070327363908291,0.04063730686903,-0.098691627383232],[0.023222589865327,-0.25430503487587,-0.11404924094677]],[[0.081967949867249,0.18898537755013,0.10504066944122],[-0.055123038589954,-0.18250575661659,-0.061971258372068],[0.013646512292325,0.230762347579,0.098394870758057]],[[0.02592720836401,0.050102215260267,0.058731365948915],[0.01434176042676,-0.01621294207871,-0.057815562933683],[-0.17498570680618,-0.11396336555481,-0.13164234161377]],[[-0.057142104953527,-0.10243435204029,-0.033588822931051],[0.02849043905735,0.10858698189259,-0.099154114723206],[0.17366206645966,-0.12618136405945,-0.015407716855407]],[[-0.02742956392467,0.020931705832481,-0.0020543972495943],[0.092823684215546,0.088332481682301,0.045196298509836],[-0.087134525179863,0.11281771212816,0.048685785382986]],[[0.042042169719934,-0.050795197486877,0.00074014195706695],[0.052352394908667,0.091901473701,0.02507896348834],[-0.032179962843657,-0.03198516741395,-0.25782543420792]],[[0.0059937038458884,-0.025205697864294,-0.026924297213554],[-0.046587396413088,-0.027194568887353,0.035171553492546],[0.049384705722332,0.050540830940008,0.040331419557333]],[[0.12389323115349,0.13372275233269,0.07502106577158],[0.0048230192624032,0.16510996222496,-0.0048411907628179],[-0.047796964645386,0.086245611310005,0.040758695453405]],[[-0.20674511790276,0.039632931351662,-0.10173440724611],[-0.051606699824333,-0.091436237096786,-0.096614688634872],[0.16743184626102,0.10985393822193,-0.015750261023641]],[[-0.10061893612146,0.12760947644711,0.060861483216286],[-0.17670279741287,-0.017094656825066,-0.13263742625713],[0.15424513816833,0.058703351765871,0.048895969986916]],[[0.074055150151253,0.11292897164822,0.080487236380577],[0.019443782046437,-0.011288475245237,0.017035519704223],[0.028870902955532,0.057703115046024,-0.154452085495]],[[-0.010001099668443,0.036936976015568,-0.069938875734806],[-0.0070870779454708,0.042546775192022,0.092467576265335],[-0.030921278521419,0.07393155246973,0.1209410354495]],[[-0.12955725193024,0.17092244327068,0.089347660541534],[-0.13493831455708,-0.12124969065189,0.041659124195576],[0.15778182446957,0.16945905983448,0.096407793462276]],[[0.17904427647591,0.04266994446516,0.047052513808012],[-0.044526897370815,0.052679538726807,-0.10419533401728],[-0.21931955218315,-0.12159772217274,-0.15170337259769]],[[-0.095596492290497,-0.067462109029293,-0.21407847106457],[0.11706690490246,0.070066705346107,-0.030472535640001],[-0.11881238222122,-0.070798203349113,0.055693089962006]],[[-0.1747355312109,0.14641524851322,0.063134163618088],[0.1068235039711,0.08878730982542,0.086399964988232],[0.030283721163869,0.1734826862812,-0.009401592426002]],[[0.020281886681914,0.0054761320352554,0.0057385037653148],[-0.10654617846012,-0.086993701756001,-0.012539545074105],[-0.13123258948326,-0.26266005635262,-0.1788614988327]],[[0.054916340857744,0.0056563522666693,0.083961486816406],[-0.024855349212885,-0.14411193132401,-0.032163444906473],[-0.17488352954388,-0.12294176965952,-0.23227092623711]],[[0.056370511651039,0.48303216695786,0.081069014966488],[-0.10421289503574,0.11471626907587,0.15571184456348],[0.019980924203992,-0.12558589875698,-0.076631270349026]],[[-0.036327678710222,0.022083885967731,-0.025661272928119],[0.12226904928684,0.22893777489662,0.22953642904758],[-0.002859816653654,-0.11181878298521,0.042516931891441]],[[0.27136495709419,0.16354338824749,0.042927399277687],[0.085223369300365,0.14648650586605,-0.0021496084518731],[0.050667185336351,-0.083279438316822,-0.075206026434898]],[[-0.13966916501522,-0.058099906891584,0.074696518480778],[0.050330366939306,-0.051295503973961,-0.24572685360909],[-0.11590196192265,-0.054795201867819,-0.12275267392397]],[[0.23603734374046,0.20218031108379,0.030826788395643],[0.063397370278835,0.044125452637672,0.071975104510784],[-0.080544508993626,-0.064875155687332,-0.060699068009853]],[[-0.022907571867108,-0.11720152944326,0.014758774079382],[0.019570622593164,-0.059596925973892,0.028578050434589],[-0.0076343277469277,0.033004805445671,0.058342285454273]],[[-0.027918037027121,0.14486010372639,-0.1308681666851],[-0.05640983581543,0.015172259882092,-0.19842873513699],[-0.0062441653572023,-0.01216143835336,-0.040056824684143]],[[-0.16798783838749,0.046998288482428,0.22705420851707],[-0.21808998286724,0.0069587524048984,0.24319566786289],[-0.027472535148263,-0.12481822818518,-0.030595667660236]],[[0.069097831845284,-0.18701337277889,-0.069696709513664],[0.034813236445189,-0.090728096663952,0.046426694840193],[-0.14078363776207,0.27147635817528,0.11781481653452]],[[0.09804593026638,0.034281242638826,0.11988136172295],[0.082998417317867,0.11498498916626,0.14380510151386],[0.02583822235465,-0.076905615627766,-0.12380915880203]],[[-0.13252572715282,-0.047849550843239,-0.031712971627712],[-0.051327355206013,-0.1105133742094,-0.24272722005844],[-0.17947170138359,-0.1839823871851,-0.20753893256187]],[[-0.12337692826986,-0.016205312684178,0.0037474581040442],[-0.019225986674428,0.096275180578232,0.0094863520935178],[-0.035437177866697,0.049849931150675,0.24181002378464]],[[0.1733043640852,0.084771275520325,0.0051077920943499],[0.060935579240322,-0.0084019498899579,-0.089616499841213],[-0.24108731746674,-0.072161540389061,0.034045044332743]],[[0.051033552736044,0.01830643042922,0.061607137322426],[-0.013024176470935,-0.0014906770084053,0.09897618740797],[-0.012702232226729,0.016141349449754,-0.060229498893023]],[[-0.0036750184372067,0.078764021396637,0.11591503769159],[-0.051458455622196,0.07716927677393,0.084641024470329],[-0.13711170852184,-0.14986300468445,-0.083179600536823]],[[0.043374892324209,0.22578002512455,0.070319928228855],[-0.0027170774992555,-0.16934055089951,-0.030136991292238],[0.065065510571003,-0.068052247166634,0.1334515362978]],[[0.12978042662144,-0.15179708600044,-0.0094588659703732],[-0.079687990248203,-0.042227134108543,-0.013707428239286],[-0.057702511548996,0.058336440473795,0.14417462050915]],[[-0.039152033627033,0.15476149320602,0.18066504597664],[0.18554404377937,-0.075230285525322,-0.15211802721024],[0.0057446290738881,-0.11283529549837,-0.038085378706455]],[[0.12543804943562,-0.096262164413929,-0.026148559525609],[-0.0026759805623442,0.11144087463617,0.027446487918496],[0.10642818361521,0.091542989015579,0.0084372386336327]],[[-0.10114871710539,0.046505931764841,-0.076257631182671],[-0.072933450341225,0.0024493711534888,0.044867128133774],[-0.017597880214453,0.014720715582371,-0.10810436308384]],[[-0.16864132881165,-0.059967823326588,0.077777914702892],[0.016868205741048,-0.03202947601676,0.11797924339771],[0.17550483345985,-0.037476234138012,0.030294131487608]],[[0.11410403996706,0.069214351475239,-0.01495467312634],[0.17379161715508,0.0174939353019,-0.10687728971243],[0.064554624259472,-0.022809626534581,0.0096806641668081]],[[-0.061521615833044,-0.019135611131787,-0.048270475119352],[0.16732011735439,0.21191382408142,0.15314845740795],[-0.049497101455927,0.045861132442951,0.028781048953533]],[[0.29002469778061,-0.14777052402496,-0.050013646483421],[0.0033626821823418,-0.084566876292229,-0.12185812741518],[0.15982364118099,-0.024910621345043,-0.12246974557638]],[[-0.13273087143898,-0.24762332439423,-0.23254038393497],[-0.048619154840708,-0.16953864693642,-0.118553198874],[0.18603186309338,-0.11382759362459,-0.027156142517924]],[[0.022551756352186,-0.15855325758457,-0.086796991527081],[0.18002684414387,0.09723949432373,-0.054690591990948],[0.11575468629599,0.081336088478565,0.1346460133791]],[[0.26020285487175,0.07756919413805,0.062232419848442],[0.12980711460114,-0.025873163715005,-0.052083499729633],[-0.084563501179218,-0.09920709580183,-0.11727016419172]],[[-0.0070169847458601,0.066339962184429,-0.088515996932983],[0.015588477253914,-0.0404062718153,-0.1294652223587],[-0.075164996087551,0.02351713553071,0.0055792136117816]],[[-0.077393919229507,-0.15165862441063,-0.034341581165791],[0.0011561722494662,-0.039821613579988,-0.012893874198198],[0.18806672096252,-0.069929838180542,-0.017254650592804]],[[-0.11075585335493,0.26997298002243,0.2591245174408],[-0.14929020404816,0.10679416358471,0.15212796628475],[-0.0039410693570971,-0.12420631200075,0.0020479497034103]],[[-0.3447345495224,-0.1366078555584,0.043912764638662],[-0.25602021813393,-0.095357485115528,-0.051818199455738],[0.16105297207832,-0.15519700944424,-0.021701658144593]],[[0.083013191819191,0.042812503874302,-0.068491816520691],[0.045116897672415,0.17275632917881,-0.046441670507193],[-0.22174720466137,-0.077005349099636,-0.067956119775772]],[[-0.00020309304818511,-0.012341558001935,-0.030123563483357],[-0.19340561330318,0.12435681372881,0.11044415086508],[-0.042349852621555,0.0067491489462554,0.17174965143204]],[[0.047486893832684,0.16868671774864,0.051354065537453],[0.10712327063084,-0.043522953987122,-0.026565531268716],[-0.063678681850433,0.039365027099848,0.065732635557652]],[[-0.00426692282781,-0.02659135684371,-0.087065525352955],[0.047568541020155,-0.043467126786709,-0.054713167250156],[0.055779412388802,-0.068808890879154,-0.067370660603046]],[[0.11383303999901,-0.082334414124489,0.087377645075321],[0.0046165105886757,0.066340424120426,0.047494236379862],[-0.056511595845222,0.12367653101683,0.056167993694544]],[[-0.0026192876975983,0.14543688297272,0.042275078594685],[-0.013021632097661,-0.0086866207420826,0.013970009982586],[-0.084097243845463,-0.047444570809603,0.02380409091711]],[[0.086210340261459,0.0034651719033718,-0.032223250716925],[0.094911485910416,0.021459396928549,0.081398196518421],[0.11787492781878,0.062049921602011,-0.010347345843911]],[[0.023286422714591,0.039506167173386,0.18967008590698],[0.18648074567318,0.17699480056763,0.091585770249367],[0.15924625098705,0.052286393940449,0.045330438762903]],[[0.136021271348,-0.16020166873932,-0.073515333235264],[-0.052925162017345,4.0433580579702e-05,-0.040046248584986],[-0.08512557297945,-0.06037088483572,-0.12773521244526]],[[0.13640689849854,0.15788619220257,-0.0061604660004377],[0.059485588222742,-0.11989858001471,0.0046498104929924],[-0.017666148021817,0.041099727153778,0.023316582664847]],[[-0.0043182196095586,0.19964015483856,0.2580483853817],[0.0060891793109477,0.057441189885139,0.035378251224756],[-0.13853472471237,-0.086817279458046,0.0090314820408821]],[[-0.091298423707485,-0.092382095754147,0.0051144547760487],[-0.05824276804924,-0.043280035257339,-0.069400250911713],[-0.16147616505623,0.10277670621872,-0.035902105271816]],[[-0.019142832607031,-0.069030076265335,0.023300968110561],[-0.04175753891468,0.0052577368915081,0.012579371221364],[0.10232147574425,-0.063001178205013,0.069898709654808]],[[-0.18083004653454,-0.058586020022631,0.042676348239183],[-0.081674993038177,0.050143323838711,0.1371856033802],[0.026520507410169,0.32874849438667,0.10632725805044]],[[-0.11176715046167,-0.016759755089879,-0.0085320733487606],[0.054812088608742,-0.0053357593715191,0.072209790349007],[0.0006514165434055,0.088640630245209,0.068941451609135]],[[0.12476854026318,0.065218538045883,0.14991834759712],[0.049016293138266,-0.046971518546343,-0.023825343698263],[-0.075157046318054,-0.18472570180893,-0.097858890891075]],[[-0.23985740542412,-0.33515447378159,-0.12461242824793],[0.028138456866145,-0.087415002286434,-0.23832906782627],[0.076208300888538,-0.028374196961522,0.070287011563778]],[[-0.082491755485535,0.092709146440029,-0.20077066123486],[-0.081994153559208,0.056111980229616,-0.0029902476817369],[-0.041198331862688,0.07972577214241,-0.14287777245045]],[[-0.021941628307104,-0.03565589338541,-0.092788644134998],[-0.0026827664114535,0.017101779580116,0.053045570850372],[-0.027020115405321,0.099921189248562,0.031951822340488]],[[-0.09366150945425,0.051278095692396,0.0027426488231868],[-0.078601464629173,-0.05987885594368,0.031449899077415],[0.0085567990317941,0.004699737764895,0.037128426134586]],[[-0.091633811593056,-0.10423573106527,0.024570852518082],[0.096913136541843,0.22018723189831,0.1442319303751],[-0.13979078829288,0.14383955299854,0.063682414591312]],[[-0.095696300268173,0.022589322179556,0.1207630187273],[-0.18169552087784,-0.2611029446125,-0.1718789935112],[-0.097778007388115,-0.18788492679596,-0.15904392302036]],[[-0.15612825751305,-0.066044628620148,0.11979063600302],[-0.096463039517403,-0.11105128377676,-0.024562370032072],[-0.19696581363678,-0.037008799612522,-0.056115433573723]],[[-0.016528839245439,-0.1083942502737,0.048040777444839],[-0.027519259601831,0.047413557767868,-0.02035378664732],[0.1452978849411,0.05364852771163,-0.038486752659082]],[[0.016192032024264,0.29169154167175,0.10384513437748],[-0.092563889920712,-0.061186227947474,0.046383187174797],[-0.043186943978071,-0.089170798659325,-0.13841904699802]],[[0.019713735207915,0.045455239713192,-0.011276038363576],[0.07696071267128,-0.0043103145435452,-0.038079656660557],[0.0077296197414398,-0.011178636923432,0.050425119698048]],[[-0.10589452087879,-0.10765659809113,0.017557945102453],[-0.0124785983935,0.012114659883082,0.06585767865181],[0.088536649942398,0.11247280985117,-0.074598528444767]],[[0.091748520731926,-0.023297276347876,-0.19772051274776],[-0.05682260543108,-0.024743994697928,0.027793494984508],[-0.04824198782444,-0.20259530842304,-0.32889768481255]],[[0.035943821072578,0.055154226720333,0.11150081455708],[0.071273200213909,-0.062164638191462,-0.043764527887106],[0.012382824905217,0.04174405708909,-0.16754518449306]],[[0.028507439419627,0.0024590990506113,-0.010997651144862],[-0.045056130737066,-0.11263697594404,0.29139098525047],[0.023068692535162,0.19149102270603,0.15971407294273]],[[0.14135281741619,0.090010672807693,-0.10614513605833],[-0.049798749387264,-0.0021190359257162,0.017964981496334],[-0.043169211596251,-0.038223348557949,-0.17918801307678]],[[-0.041076608002186,-0.092984803020954,-0.0058117737062275],[0.13247717916965,0.13079234957695,0.02285292558372],[0.056671123951674,0.036321502178907,0.15538477897644]],[[0.064550973474979,0.1131619438529,-0.12486415356398],[0.0011401523370296,0.13591760396957,0.062376357614994],[-0.062220454216003,-0.10377492010593,-0.0045820446684957]]],[[[-0.053232755511999,-0.10608668625355,0.023984802886844],[-0.061149246990681,0.013655801303685,0.0084219640120864],[-0.016834665089846,-0.01052238792181,0.10709447413683]],[[-0.013784549199045,0.030782591551542,-0.010108709335327],[0.039824862033129,-0.055213462561369,-0.02026154473424],[-0.023453528061509,0.082666076719761,0.11478414386511]],[[-0.026675470173359,-0.020086487755179,0.008822220377624],[0.021429659798741,0.021956708282232,-0.059854876250029],[-0.13834780454636,-0.020570615306497,0.031685244292021]],[[-0.035172261297703,-0.0025273386854678,0.018392058089375],[-0.050934974104166,-0.043346781283617,0.025127079337835],[0.10264780372381,0.048420988023281,0.011656972579658]],[[-0.0064807874150574,-0.032596960663795,-0.072656728327274],[-0.066058255732059,0.015668742358685,0.031036395579576],[-0.081278003752232,-0.015666926279664,-0.034149810671806]],[[-0.0014497180236503,0.024390606209636,-0.019493913277984],[-0.0016614984488115,-0.0065699685364962,8.5183564806357e-05],[-0.07599987834692,-0.050802152603865,-0.019717194139957]],[[0.012920164503157,0.024554703384638,-0.024566493928432],[0.059858433902264,0.028287416324019,-0.021675942465663],[0.04496805742383,0.064496241509914,-0.018281545490026]],[[0.013946637511253,-0.041393019258976,0.062357727438211],[-0.014814442954957,0.016347901895642,0.0011080119293183],[-0.066102750599384,-0.036721885204315,-0.021359071135521]],[[0.01208140142262,-0.012670195661485,-0.047848962247372],[0.0044682500883937,-0.025032974779606,0.056715123355389],[0.057382795959711,-0.014168472029269,-0.071592718362808]],[[0.054850585758686,0.10667111724615,0.03430112823844],[-0.0055245766416192,-0.053448121994734,0.062163654714823],[0.033003054559231,-0.020155537873507,0.073617301881313]],[[-0.028927899897099,0.054014932364225,0.01314230915159],[-0.001701166620478,-0.03877367824316,0.023094307631254],[0.051581855863333,0.012759787961841,-0.012361197732389]],[[-0.021312300115824,0.011791407130659,0.039663504809141],[-0.0343904979527,0.0011421274393797,-0.044951491057873],[-0.033245250582695,0.039239898324013,-0.010830353014171]],[[0.048652745783329,0.037176914513111,-0.011038600467145],[0.03357807174325,0.039179097861052,0.032383847981691],[-0.059374921023846,-0.00028225663118064,0.02012612298131]],[[0.046362061053514,0.015611288137734,0.060266751796007],[-0.087147690355778,0.0030709439888597,-0.068109169602394],[-0.082693055272102,0.042349863797426,0.013772494159639]],[[0.01772048138082,0.04204486310482,-0.056680623441935],[0.013912499882281,-0.060963589698076,0.035157054662704],[0.026139114052057,0.021040022373199,0.0088316714391112]],[[-0.0050945566035807,0.015856644138694,-0.0078693460673094],[0.0063861589878798,-0.037417728453875,0.047034796327353],[-0.017830841243267,0.055586528033018,-0.069126822054386]],[[0.030819682404399,0.053629849106073,0.10046944022179],[0.0021552415564656,0.0045738243497908,0.016460850834846],[0.0240283831954,-0.027424434199929,-0.056290362030268]],[[0.044841974973679,-0.05108580738306,-0.1120972186327],[0.016667626798153,-0.089801631867886,-0.058961920440197],[0.076258808374405,0.032257989048958,0.042145870625973]],[[0.0085093788802624,0.01459941174835,-0.014815473929048],[0.021762855350971,-0.0024033910594881,0.050163146108389],[-0.009471207857132,0.0090232938528061,0.002126389183104]],[[-0.039505295455456,0.027259675785899,0.053383145481348],[0.053263794630766,0.040529780089855,-0.071435332298279],[0.051637474447489,-0.011521724052727,-0.056705255061388]],[[0.014493400231004,-0.022915054112673,-0.022608678787947],[-0.011091095395386,-0.024078784510493,-0.045730248093605],[-0.03653820976615,-0.018442798405886,-0.025325804948807]],[[0.078769698739052,0.077205374836922,-0.01559817045927],[0.040867432951927,0.035243809223175,0.10865976661444],[0.021728483960032,0.1125840395689,0.09291011095047]],[[-0.039905913174152,-0.0061286091804504,-0.0076691792346537],[-0.072347022593021,-0.0021258604247123,0.020976547151804],[-0.0029888262506574,-0.091024577617645,0.0011199144646525]],[[-0.046926256269217,-0.035013519227505,-0.041386105120182],[0.0039267563261092,0.025475757196546,-0.010185670107603],[0.0064013837836683,0.04172471165657,0.012266900390387]],[[-0.01189087703824,-0.02302567102015,-0.050557684153318],[0.050980743020773,-0.030031777918339,0.022073125466704],[0.025325434282422,-0.035542488098145,-0.00070432771462947]],[[0.0079120043665171,-0.0029519258532673,-0.040851064026356],[0.029926037415862,-0.0083446959033608,0.022932559251785],[-0.0034008417278528,-0.050579231232405,-0.016580946743488]],[[0.014787912368774,0.018225500360131,0.0011728561948985],[0.0028468556702137,-0.049221213907003,-0.0040112873539329],[0.03622043132782,0.031456060707569,0.010335193015635]],[[-0.011893890798092,0.035942252725363,0.0019743209704757],[0.014033207669854,0.02270358428359,-0.0085094608366489],[0.046188317239285,0.016527187079191,-0.032523714005947]],[[0.0087600946426392,-0.043034687638283,-0.019005576148629],[0.019008085131645,0.036186140030622,-0.053321588784456],[-0.036308255046606,0.011717769317329,-0.01647661998868]],[[0.040861930698156,0.010404565371573,-0.017788397148252],[-0.060872241854668,0.049591582268476,0.026285611093044],[-0.11005355417728,-0.082892432808876,-0.0067162699997425]],[[-0.052221886813641,-0.042188871651888,0.031326893717051],[-0.07871986925602,-0.010193288326263,0.014277226291597],[-0.034321412444115,-0.027793055400252,0.0091440128162503]],[[-0.042741388082504,-0.061546180397272,0.019025592133403],[-0.05713751539588,0.0085143214091659,0.022020876407623],[-0.0064243287779391,0.0013069960987195,-0.0045688096433878]],[[0.0067823054268956,-0.048381775617599,-0.017074126750231],[-0.017035730183125,0.03298906236887,0.022175027057528],[0.07565900683403,0.078055128455162,-0.0035599935799837]],[[0.002178477589041,-0.066678874194622,0.0028732446953654],[0.025189569219947,-0.014783713966608,0.032983299344778],[-0.029725972563028,0.0246163867414,0.0061745252460241]],[[0.046139366924763,-0.0046560848131776,0.043969389051199],[-0.036503806710243,0.0044733281247318,-0.025548238307238],[-0.0066591729409993,-0.0026238837745041,-0.020895583555102]],[[0.011915922164917,0.0037757507525384,0.015765570104122],[-0.016139388084412,-0.066938921809196,0.044185481965542],[-0.078034080564976,-0.0001928812416736,-0.0093143656849861]],[[0.040633480995893,-0.01874571852386,0.027636660262942],[0.046184059232473,0.025802494958043,-0.087001338601112],[-0.074545197188854,0.015854023396969,0.08083014190197]],[[0.0099866380915046,-0.0055877701379359,-0.043526887893677],[-0.029618630185723,0.058362316340208,0.055356059223413],[-0.024321157485247,0.0031706914305687,-0.074738100171089]],[[-0.013670302927494,-0.039536647498608,-0.0088853510096669],[-0.031092330813408,-0.036555130034685,-0.045450937002897],[-0.097041063010693,-0.02636956050992,0.028294708579779]],[[0.06636805832386,-0.030499519780278,0.021431652829051],[0.027417482808232,-0.004675168544054,0.01981727220118],[-0.048898030072451,0.019489718601108,-0.071618840098381]],[[-0.063776880502701,-0.024188438430429,0.036295138299465],[-0.0062976735644042,0.055167965590954,-0.036404274404049],[0.056757170706987,-0.050769791007042,-0.059588301926851]],[[0.0082411412149668,0.034922361373901,0.083912841975689],[-0.022409867495298,0.057940110564232,0.065601877868176],[0.064083583652973,0.074337393045425,0.050743367522955]],[[0.061051856726408,-0.03512866795063,-0.028347497805953],[-0.051170218735933,0.039524134248495,0.079117588698864],[0.15037539601326,0.0011926607694477,0.057788845151663]],[[0.026471611112356,-0.00026374246226624,0.0066452212631702],[-0.028752841055393,0.00045040983241051,-0.046769164502621],[-0.055386748164892,-0.0027939528226852,0.002581624314189]],[[-0.044251248240471,0.039499063044786,-0.011632736772299],[0.032704014331102,0.021624514833093,-0.019949026405811],[-0.0073709241114557,-0.027205053716898,0.044448804110289]],[[-0.0095326323062181,0.14649952948093,-0.052269641309977],[0.090137310326099,0.032911032438278,0.12011252343655],[0.11764947324991,0.069594703614712,0.12222432345152]],[[0.056748948991299,0.017508454620838,-0.07431460916996],[0.015098826959729,-0.013128683902323,0.021892186254263],[0.12741215527058,0.043347079306841,0.027796814218163]],[[-0.027514655143023,-0.066059224307537,0.026211397722363],[-0.04066339507699,-0.035748295485973,-0.0011342744110152],[-0.038053996860981,-9.128860256169e-05,-0.021351333707571]],[[-0.0082231536507607,-0.097467482089996,0.0048261806368828],[-0.067456714808941,-0.00020494854834396,0.014813721179962],[-0.0045909145846963,0.019910641014576,0.078726761043072]],[[-0.041829008609056,-0.030995512381196,-0.0022105204407126],[-0.086692601442337,-0.028967093676329,-0.020501935854554],[0.032385256141424,0.020394288003445,0.0017993886722252]],[[0.043475184589624,0.052580114454031,-0.0043506580404937],[0.0085637550801039,0.0167375523597,-0.043664392083883],[-0.066795617341995,-0.055786594748497,0.003537961980328]],[[0.013494867831469,-0.025343913584948,0.029350131750107],[0.017081927508116,0.0031182102393359,-0.012790442444384],[0.029414527118206,-0.017705470323563,0.013863467611372]],[[-0.13465604186058,-0.047849822789431,0.02422946318984],[0.016261100769043,-0.008194393478334,-0.01998489163816],[-0.026591161265969,-0.025393268093467,-0.13346916437149]],[[0.045407216995955,0.0025775623507798,0.06683661788702],[0.071366891264915,0.053315006196499,0.030307235196233],[-0.013083222322166,0.03735014423728,-0.017738869413733]],[[-0.0026530304457992,-0.048968270421028,-0.0060492581687868],[0.005421138368547,-0.032751474529505,0.036872282624245],[0.019248446449637,0.019729007035494,-8.9089895482175e-05]],[[0.010476993396878,0.038708474487066,0.024896273389459],[0.0088461404666305,-0.011177686043084,0.07072427123785],[-0.019990926608443,0.027675969526172,0.023390108719468]],[[-0.0001799169840524,-0.0055248881690204,0.045770898461342],[0.019650710746646,0.062812454998493,0.039993986487389],[0.050236761569977,-0.0064534679986537,-0.042970385402441]],[[0.007847242988646,0.027132583782077,0.039339389652014],[0.02269584685564,-0.02110899426043,0.010290876962245],[-0.038682572543621,-0.0021150612737983,-0.038598775863647]],[[0.040435113012791,-0.014780174940825,-0.015633776783943],[0.037517912685871,0.061922162771225,0.040433395653963],[0.035523399710655,0.011833404190838,-0.043592482805252]],[[0.0011781638022512,0.026251694187522,-0.0044901547953486],[-0.01711586304009,-0.029042663052678,0.064015537500381],[0.06620779633522,-0.0045513319782913,-0.03833108022809]],[[0.0081868078559637,-0.02556836605072,0.029671542346478],[-0.040168579667807,0.025838414207101,0.012192364782095],[-0.016210852190852,-0.047410219907761,0.003927415702492]],[[-0.06356917321682,0.017925530672073,0.007906636223197],[0.023657852783799,-0.0044897366315126,0.069760479032993],[0.021564073860645,0.035192709416151,-0.078754298388958]],[[0.05482754856348,-0.0057209376245737,-0.082561105489731],[-0.047272592782974,-0.01067600492388,0.0147600537166],[0.0470080524683,-0.026183035224676,-0.027336951345205]],[[-0.012157449498773,0.021767236292362,0.017164766788483],[0.060663849115372,-0.022598238661885,-0.0016098426422104],[0.014122229069471,0.041635237634182,0.057629819959402]],[[0.050816763192415,-0.051827348768711,-0.024053612723947],[0.037917207926512,0.05746541172266,-0.040729943662882],[-0.046952228993177,-0.037103459239006,0.042495876550674]],[[0.057942364364862,0.00041458575287834,-0.089989930391312],[0.034455068409443,-0.012354394420981,0.018434097990394],[0.0042703561484814,0.044286463409662,0.074567288160324]],[[0.021191984415054,0.014014700427651,0.045430772006512],[-0.012337639927864,0.019695080816746,0.064879722893238],[0.018869301304221,0.0004527204146143,-0.046813432127237]],[[-0.010897951200604,-0.011334498412907,-0.032664693892002],[0.0011335930321366,-0.0096250623464584,0.076494298875332],[0.033457562327385,0.049884214997292,0.10682633519173]],[[0.014299693517387,-0.058381456881762,0.096239537000656],[0.020185861736536,0.017363434657454,-0.010473639704287],[0.054529279470444,-0.007077656686306,0.031083948910236]],[[-0.017458559945226,-0.082434080541134,0.03583961352706],[-0.076241128146648,0.017920425161719,0.11581744253635],[0.058140896260738,0.052109804004431,0.068313308060169]],[[0.026146344840527,0.072213619947433,0.017944872379303],[0.024559674784541,-0.041406039148569,0.072296023368835],[0.064955793321133,0.10362370312214,-0.022385446354747]],[[-0.0085275741294026,0.001895712222904,-0.015763159841299],[0.011935165151954,-0.050430987030268,0.08635202050209],[0.018462745472789,0.029156170785427,-0.021919630467892]],[[-0.014644352719188,-0.0043841167353094,0.019649840891361],[-0.0029522709082812,-0.036114793270826,-0.058823477476835],[-0.072479911148548,0.028375325724483,0.007998707704246]],[[0.082275480031967,-0.0067301304079592,0.016508704051375],[0.0091488528996706,-0.034579865634441,0.052233353257179],[-0.029134342446923,0.053451750427485,0.073062501847744]],[[0.065394029021263,0.06129464879632,0.011966305784881],[0.0066166897304356,-0.05606098100543,0.026094891130924],[0.044469472020864,-0.0020684369374067,-0.010796038433909]],[[-0.05839915946126,-0.050282377749681,-0.012205044738948],[-0.070306055247784,-0.054541315883398,0.022355182096362],[-0.071565985679626,-0.010798675939441,-0.0037634803447872]],[[-0.024971056729555,-0.038376607000828,0.025164799764752],[-0.010409551672637,0.064475975930691,0.054366867989302],[0.044171273708344,-0.01856429874897,-0.02635839022696]],[[0.024452392011881,0.047811415046453,0.052499234676361],[0.046306297183037,0.026301747187972,0.057664502412081],[0.096767023205757,-0.051380418241024,0.0076357773505151]],[[-0.032410357147455,-0.020261051133275,0.028187634423375],[0.011825376190245,-0.026610577479005,0.036378987133503],[0.098868303000927,0.01812688075006,-0.0046400404535234]],[[0.026075875386596,0.061359062790871,0.021304873749614],[0.031450532376766,-0.045231267809868,0.11477707326412],[0.0054744696244597,-0.028440892696381,0.042501628398895]],[[0.0077790692448616,-0.066341027617455,0.048165392130613],[-0.03153870254755,-0.079461932182312,-0.005163487046957],[-0.070841208100319,0.003960735630244,0.0018367419252172]],[[0.0080560017377138,0.034179743379354,-0.073364891111851],[0.032114163041115,0.07533010840416,0.077954068779945],[-0.032232701778412,-0.052751172333956,0.014945948496461]],[[-0.035793840885162,0.012473832815886,-0.019093798473477],[0.012487455271184,0.039280705153942,0.035739749670029],[0.045170851051807,0.055898983031511,0.076777137815952]],[[-0.027549080550671,0.028259295970201,0.013663218356669],[0.0039311829023063,0.018223004415631,0.0028272932395339],[-0.0040433900430799,-0.015676241368055,0.025479415431619]],[[0.0034950242843479,0.020972663536668,0.053179252892733],[0.070712774991989,-0.030968222767115,-0.0045325043611228],[-0.0099608823657036,-0.050044059753418,-0.03511855378747]],[[-0.025112530216575,0.07731831818819,0.075712837278843],[-0.026132389903069,0.0057545653544366,-0.011790629476309],[0.040395885705948,0.032545741647482,0.027219226583838]],[[-0.0037130762357265,0.036126829683781,-0.078435674309731],[0.055038351565599,-0.0051029762253165,-0.0016192122129723],[0.015675280243158,0.004239559173584,0.078367337584496]],[[-0.014175388030708,-0.012524124234915,-0.006332472898066],[-0.022551959380507,0.01463408023119,-0.0506491959095],[-0.073847644031048,0.018815625458956,0.082513928413391]],[[0.010271167382598,0.065823413431644,-0.060745760798454],[0.021510891616344,-0.005039896350354,-0.089451782405376],[-0.030097108334303,0.038101766258478,-0.0039052020292729]],[[0.046472080051899,0.022423593327403,0.12493697553873],[0.026956252753735,-0.0029093660414219,-0.0263751745224],[-0.0040931734256446,-0.026633709669113,-0.0156878400594]],[[-0.0083614941686392,0.042040042579174,0.010201289318502],[-0.013608054257929,0.029192609712481,-0.007551645860076],[0.036454640328884,0.028007660061121,-0.025740213692188]],[[-0.033433839678764,-0.077962554991245,0.10752003639936],[0.0036274534650147,-0.042016044259071,-0.0090276151895523],[-0.0026920286472887,-0.059274025261402,-0.040572807192802]],[[-0.0037676806095988,-0.045996021479368,0.016745025292039],[-0.036315217614174,0.050977107137442,-0.013150366023183],[-0.062715411186218,0.085797682404518,-0.071839921176434]],[[0.02155333943665,-0.12141254544258,-0.11049687862396],[-0.016860492527485,0.01755746267736,0.014198669232428],[0.028201317414641,0.0038570463657379,-0.012955320999026]],[[0.014112270437181,0.0021053501404822,-0.008112134411931],[0.010722651146352,0.055757146328688,-0.01994938775897],[-0.0049395714886487,-0.058058988302946,-0.019598800688982]],[[-0.016736779361963,0.007569863460958,-0.0013014691649005],[0.030713746324182,-0.069591946899891,0.01253517717123],[-0.0035388318356127,-0.011706217192113,-0.024247072637081]],[[0.022535728290677,-0.048944585025311,-0.078700736165047],[-0.051947329193354,0.011193176731467,-0.043173678219318],[0.024274170398712,-0.095135189592838,-0.0032233551610261]],[[-0.00067309371661395,0.072980411350727,0.011136420071125],[-0.022441320121288,0.068111680448055,0.018183195963502],[0.016406131908298,0.066805273294449,0.014257601462305]],[[0.0068034576252103,0.036225847899914,-0.029380613937974],[0.031622800976038,-0.037931587547064,-0.066817782819271],[0.0018779579550028,-0.018129091709852,0.036966826766729]],[[0.10545387119055,-0.022134868428111,0.061203081160784],[0.029409822076559,0.072067983448505,0.10245962440968],[0.010102702304721,0.029591282829642,0.039909832179546]],[[0.068201296031475,-0.1261510103941,0.072139851748943],[0.1215472817421,-0.0051718624308705,0.12730297446251],[-0.034218788146973,-0.090435326099396,0.054921362549067]],[[-0.078621335327625,-0.016875697299838,0.018059592694044],[-0.035238906741142,0.1096578836441,0.039543464779854],[-0.030511539429426,-0.0095643484964967,0.034792486578226]],[[-0.085340328514576,-0.049129959195852,-0.031858921051025],[0.035146661102772,-0.053825572133064,0.031036715954542],[-0.0073975655250251,0.042300697416067,0.04356987029314]],[[-0.02954389154911,0.022068116813898,0.016296429559588],[-0.093186356127262,0.031592883169651,-0.039033465087414],[-0.047526802867651,0.00012150519614806,0.024115240201354]],[[0.068790428340435,-0.036842949688435,-0.0077561126090586],[-0.0037600183859468,-0.048775594681501,0.0075364364311099],[0.072549782693386,0.019181726500392,0.053083814680576]],[[-0.028017247095704,0.082899183034897,0.12437716126442],[0.0059404256753623,0.040363509207964,-0.00024518449208699],[0.036730546504259,-0.0645597204566,-0.0117372199893]],[[0.079034805297852,0.084039635956287,0.032045785337687],[0.025733835995197,-0.0074980459176004,-0.013369141146541],[-0.016713859513402,-0.0083551267161965,-0.0056282305158675]],[[0.043789844959974,0.019598420709372,-0.087879784405231],[-0.037613414227962,-0.053457386791706,0.031540643423796],[0.029941787943244,-0.016381856054068,-0.078263714909554]],[[-0.030946398153901,0.01205185148865,-0.050939377397299],[-0.0038843881338835,-0.060024160891771,-0.025271670892835],[-0.088737279176712,-0.037653632462025,0.069431275129318]],[[-0.10844146460295,-0.0052830898202956,0.053890895098448],[0.018477723002434,-0.03600861504674,-0.049152739346027],[0.026626631617546,-0.036252703517675,0.049966190010309]],[[-0.021989600732923,0.026799838989973,-0.013638904318213],[-0.035949617624283,0.014951517805457,0.0008323373622261],[-0.0083260834217072,0.034308966249228,-0.010593703947961]],[[-0.031052203848958,0.018029034137726,-0.0098804337903857],[-0.032528057694435,-0.0014441934181377,-0.012209003791213],[0.012538604438305,-0.047930259257555,-0.035736784338951]],[[0.10224605351686,0.0036383788101375,-0.036786157637835],[-0.047530520707369,-0.12111685425043,0.075511537492275],[0.056968580931425,0.057030562311411,0.04018272459507]],[[-0.10785055160522,-0.0080061629414558,0.088930986821651],[0.045923437923193,-0.040882330387831,0.024356301873922],[0.015520169399679,-0.046397667378187,0.011610271409154]],[[-0.041785035282373,0.044453911483288,-0.032993566244841],[-0.0084891086444259,-0.025040671229362,-0.057790149003267],[-0.068601526319981,0.006709196139127,-0.033882517367601]],[[0.0053432262502611,-0.096918523311615,-0.033582128584385],[-0.037780001759529,-0.0075822430662811,-0.098530694842339],[-0.011590639129281,0.014467055909336,-0.020976493135095]],[[-0.025438519194722,-0.083073183894157,-0.012762447819114],[0.04395604133606,-0.056798193603754,-0.067563451826572],[-0.014962320216,-0.012228516861796,0.0051776035688818]],[[0.080277770757675,-0.0037408855278045,-0.067450895905495],[-0.048468660563231,0.042260557413101,-0.050395611673594],[-0.057277753949165,0.028131190687418,-0.023126380518079]],[[-0.062969096004963,-0.11516135931015,-0.013487614691257],[-0.02286983653903,0.010394338518381,-0.061241295188665],[-0.09112836420536,0.0092057399451733,-0.0032597093377262]],[[-0.0030205028597265,-0.016649229452014,-0.00062711053760722],[0.035136874765158,0.087332867085934,0.12552773952484],[0.06757752597332,0.065767101943493,0.067190863192081]],[[-0.024640763178468,0.032791312783957,0.09124244004488],[-0.010027093812823,-0.087604127824306,0.057049438357353],[-0.022876799106598,0.019747225567698,-0.0085761696100235]],[[-0.017343524843454,0.042496673762798,0.012050274759531],[-0.048085130751133,-0.049744829535484,0.015786793082952],[0.0069208606146276,0.02491245046258,0.047606498003006]],[[-0.033866669982672,-0.045142244547606,-0.075255632400513],[-0.034271080046892,-0.01075935550034,-0.023809686303139],[0.07016908377409,-0.046574365347624,0.0055053448304534]],[[-0.026253718882799,-0.052154399454594,0.13466782867908],[0.055901907384396,-0.024466605857015,0.01384608540684],[0.14986264705658,-0.01321678981185,-0.016641490161419]],[[0.023554410785437,-0.021090200170875,-0.00048595160478726],[-0.032529443502426,0.020131964236498,-0.0017121916171163],[0.011089525185525,-0.015418399125338,0.088960863649845]],[[0.036902472376823,-0.033697225153446,0.079128593206406],[0.11398658156395,0.070667870342731,-0.04185476526618],[0.11003697663546,-0.012853497639298,-0.065582744777203]],[[-0.023334573954344,0.0435183160007,-0.03729286044836],[-0.045936781913042,-0.036332320421934,0.012187007814646],[-0.048199959099293,0.011262461543083,0.021751394495368]],[[0.01795114018023,-0.021836189553142,-0.016024550423026],[-0.035037275403738,0.0047642248682678,0.037864781916142],[0.029831727966666,0.035885732620955,0.10656524449587]]],[[[-0.067789055407047,-0.052779369056225,0.017466815188527],[0.061014655977488,0.074867717921734,-0.096532493829727],[0.020087543874979,-0.016636371612549,0.069599136710167]],[[-0.055207807570696,-0.040543172508478,-0.015938786789775],[-0.077067419886589,-0.098163470625877,-0.076494164764881],[-0.056609779596329,0.011076755821705,0.039191585034132]],[[0.032786279916763,0.047319028526545,-0.015908231958747],[-0.037824511528015,-0.025467382743955,0.024236159399152],[-0.047509849071503,0.012694793753326,-0.012266110628843]],[[-0.0060221995227039,0.094204738736153,0.072422161698341],[-0.03946191072464,0.060735136270523,-0.042135175317526],[0.018787827342749,0.054906725883484,-0.053971156477928]],[[-0.071126125752926,0.03982850164175,-0.055787265300751],[-0.011981901712716,0.0042684143409133,0.082326903939247],[-0.046189431101084,-0.088967643678188,-0.0018069699872285]],[[0.010253909043968,0.060730945318937,0.070418804883957],[0.030935997143388,0.034723173826933,0.0023447095882148],[-0.038368925452232,0.0088753066956997,-0.045764725655317]],[[-0.01626948453486,0.12402233481407,0.010594574734569],[-0.0291598290205,-0.0089082289487123,0.0048675071448088],[0.040278818458319,-0.024237180128694,-0.04058850184083]],[[-0.025879129767418,0.071637764573097,0.088778667151928],[0.040593236684799,-0.01887228526175,0.091124847531319],[0.080908186733723,0.053672961890697,0.063496872782707]],[[-0.028015453368425,0.032724063843489,-0.095589570701122],[-0.036577053368092,0.020747549831867,0.024322910234332],[0.069029465317726,-0.047040410339832,-0.029904801398516]],[[-0.025156253948808,0.028010753914714,0.006115410476923],[-0.0062647494487464,0.048535283654928,0.044821970164776],[-0.05279678478837,-0.023319393396378,0.071084283292294]],[[0.025267161428928,-0.064440622925758,-0.0040072253905237],[-0.065491616725922,0.074650384485722,-0.021015731617808],[-0.0048305420204997,-0.0011780449422076,-0.0038346094079316]],[[-0.084293372929096,-0.0056045334786177,-0.014667450450361],[-0.06420761346817,-0.068081356585026,-0.040998265147209],[-0.027412923052907,0.032371778041124,0.047340590506792]],[[0.0021473104134202,-0.08611111342907,0.029800375923514],[-0.02405895665288,0.024891942739487,-0.031257785856724],[-0.040987875312567,0.048751048743725,0.025776494294405]],[[-0.0029436405748129,-0.098622933030128,0.017339015379548],[0.054460197687149,-0.063839502632618,-0.024743059650064],[0.030770357698202,-0.052180018275976,0.017358813434839]],[[-0.039418395608664,0.0064639043994248,-0.056632038205862],[0.050523173063993,-0.0089905504137278,-0.098382420837879],[-0.045536328107119,-0.020055530592799,0.02546820230782]],[[0.020010575652122,-0.015858763828874,0.038466468453407],[0.018648454919457,0.045012388378382,0.016263652592897],[0.0367776080966,-0.040934756398201,0.01598853059113]],[[-0.034752316772938,0.025416681542993,-0.01160376612097],[0.045083120465279,0.049242485314608,0.012099311687052],[0.052306335419416,0.023751588538289,-0.023278808221221]],[[-0.0098522966727614,-0.037781409919262,-0.064261607825756],[-0.040398132055998,-0.02113251760602,-0.011183293536305],[-0.044881168752909,-0.03791806101799,-0.029079545289278]],[[0.093352168798447,0.02974390797317,-0.040363933891058],[0.00011653971887426,-0.038181807845831,0.0062596038915217],[0.016569776460528,0.059145156294107,0.053883168846369]],[[-0.020672786980867,0.019873511046171,0.077177785336971],[0.010696592740715,0.051234818994999,-0.019760362803936],[-0.03980253636837,-0.070833496749401,-0.020806590095162]],[[0.039545472711325,-0.045411225408316,-0.015643773600459],[-0.030323436483741,0.021329071372747,0.018395487219095],[-0.012633019126952,0.016155481338501,-0.0010721901198849]],[[0.025452656671405,-0.0055064996704459,-0.073403745889664],[0.0029276374261826,-0.0030353139154613,0.059374786913395],[0.025937849655747,-1.1320698831696e-06,0.074990272521973]],[[-0.035822816193104,-0.03350368142128,-0.002995913149789],[-0.0027738926000893,-0.003669178346172,0.04792694747448],[0.018848178908229,-0.043863452970982,-0.011979677714407]],[[0.018274661153555,0.0011247597867623,0.073224261403084],[0.02474613301456,0.013976439833641,0.059770680963993],[-0.002427970757708,-0.051494769752026,-0.13575409352779]],[[0.11012996733189,-0.014630171470344,-0.14237894117832],[0.035385303199291,-0.00062195141799748,0.085586868226528],[-0.021089507266879,-0.056364733725786,0.0094410758465528]],[[-0.019564844667912,0.059237889945507,0.0036954197566956],[-0.035926770418882,-0.017840661108494,0.016865003854036],[0.06379522383213,-0.019224725663662,0.012298927642405]],[[0.0544193983078,0.041785582900047,-0.013859721831977],[-0.03994083404541,0.069407977163792,0.054132807999849],[-0.016105860471725,-0.0019220617832616,-0.072231285274029]],[[-0.008345628157258,0.044976528733969,0.059964407235384],[0.044056102633476,-0.027544315904379,0.0065458049066365],[0.030807740986347,-0.0026955655775964,0.014960222877562]],[[0.012397565878928,-0.068178460001945,-0.064683265984058],[-0.024194775149226,0.031619448214769,-0.037055145949125],[-0.042743477970362,-0.056481782346964,0.069469220936298]],[[0.067010074853897,0.081129714846611,0.082333751022816],[0.034020137041807,-0.083991475403309,0.0034687349107116],[0.01394974719733,-0.017333127558231,-0.018406564369798]],[[-0.017994264140725,0.029878932982683,0.067244656383991],[-0.069484226405621,-0.017358576878905,0.0023359088227153],[0.069436810910702,-0.026356926187873,0.034555867314339]],[[0.066290676593781,0.058376684784889,0.019176412373781],[-0.10843421518803,0.011290053837001,0.075159259140491],[0.044611677527428,-0.03625350445509,-0.042111344635487]],[[0.075989671051502,0.078560799360275,-0.026160974055529],[0.021753570064902,0.086622327566147,0.045917812734842],[0.080070339143276,-0.025469796732068,0.063702508807182]],[[0.055617060512304,0.077873289585114,0.032936252653599],[0.049666348844767,0.0012861988507211,0.029552578926086],[0.051875729113817,-0.074231445789337,-0.017974549904466]],[[0.031484469771385,-0.0099405217915773,-0.041066955775023],[0.030586343258619,-0.047417566180229,0.020546527579427],[-0.11561703681946,-0.088575065135956,-0.027317820116878]],[[-0.057904720306396,-0.075618706643581,0.054314482957125],[0.003922329749912,0.016783582046628,0.0035816300660372],[0.048801358789206,0.004510591737926,0.045620862394571]],[[-0.051030278205872,-0.031888194382191,0.019643504172564],[-0.020101886242628,-0.017706379294395,0.043680317699909],[0.02378262206912,0.037039633840322,-0.043260999023914]],[[0.098145082592964,0.056899778544903,0.022784303873777],[0.012118683196604,0.011320515535772,-0.016439056023955],[-0.095479801297188,0.016376389190555,-0.0056925783865154]],[[0.010600444860756,0.019013179466128,-0.057946354150772],[-0.04385307431221,-0.059930007904768,0.01777526922524],[0.033652883023024,-0.055529218167067,0.0055182706564665]],[[-0.00069475523196161,0.034506782889366,0.012583557516336],[-0.023866925388575,0.091597199440002,-0.059897411614656],[-0.014149663038552,0.062247306108475,0.077546060085297]],[[0.083057023584843,-0.027408804744482,-0.048790264874697],[-0.067483492195606,0.046284724026918,0.004501816816628],[0.0083661023527384,0.023848786950111,0.047089219093323]],[[0.078378409147263,0.075874283909798,0.11365635693073],[0.045576483011246,0.043802209198475,0.061696995049715],[0.071057476103306,-0.022325705736876,0.080319851636887]],[[0.11038149893284,0.043704181909561,0.04790036007762],[0.0012668065028265,0.062815122306347,-0.030754018574953],[0.039739739149809,-0.046549253165722,0.035583708435297]],[[-0.021924566477537,-0.077402606606483,0.08865712583065],[-0.050694677978754,-0.062502726912498,0.08448339253664],[-0.0031503480859101,0.025332406163216,0.0089965770021081]],[[0.092067763209343,-0.046005714684725,0.037324711680412],[0.00099903380032629,0.026610907167196,0.055487610399723],[0.021485051140189,0.032610442489386,0.062544152140617]],[[-0.033626608550549,0.078396514058113,-0.016673816367984],[0.12489951401949,0.015458542853594,-0.021342674270272],[0.034816600382328,0.015828017145395,0.018202353268862]],[[-0.021877408027649,-0.052393637597561,-0.039423428475857],[-0.035533126443624,0.0029271435923874,0.047558132559061],[0.011946680955589,-0.025096768513322,0.0079466076567769]],[[-0.077443920075893,-0.066126443445683,0.017249139025807],[-0.023408344015479,0.071849711239338,-0.09466190636158],[-0.083367526531219,-0.0056932508014143,0.026070863008499]],[[0.036241441965103,-0.02539723739028,0.030320860445499],[-0.014136530458927,-0.018127446994185,0.046754617244005],[-0.0085359970107675,0.06142945215106,-0.0017570117488503]],[[0.035799145698547,-0.087089121341705,0.059653505682945],[-0.010446573607624,-0.011935636401176,-0.02446318231523],[-0.026633558794856,0.047778856009245,0.013578096404672]],[[-0.038571238517761,0.04022228717804,0.10648730397224],[-0.051546730101109,-0.076121814548969,-0.015409333631396],[-0.082781031727791,-0.0094399768859148,0.038230065256357]],[[-0.029069196432829,0.055460259318352,0.055916085839272],[-0.051247369498014,-0.048218104988337,-0.023191316053271],[0.083964109420776,0.058036215603352,-0.00096332258544862]],[[-0.0083702988922596,0.0186299495399,0.0031149974092841],[-0.0051071238704026,0.034262135624886,0.032810736447573],[0.061379883438349,0.019314140081406,-0.056667186319828]],[[0.031608879566193,0.036896333098412,0.088039688766003],[0.065475299954414,0.011390456929803,0.016475319862366],[0.021420020610094,0.038344010710716,-0.068601854145527]],[[0.0073921415023506,0.044269286096096,0.082644999027252],[0.026257442310452,0.011948737315834,0.0057341465726495],[-0.072966486215591,-0.0045751053839922,0.069577254354954]],[[0.038854781538248,-0.014210868626833,-0.01034052670002],[-0.025045895949006,-0.1129078567028,0.0083064008504152],[0.043976355344057,-0.03408956900239,0.051669340580702]],[[0.098888136446476,0.056432373821735,0.053560588508844],[-0.0071203634142876,0.008092756383121,0.051454298198223],[0.061785183846951,0.05126877874136,0.022137682884932]],[[0.064488224685192,0.049847926944494,-0.064093127846718],[-0.028371660038829,0.032553508877754,-0.075614996254444],[-0.044982649385929,-0.0027614620048553,-0.017841989174485]],[[0.003650362836197,0.034265041351318,0.03101397678256],[0.040130939334631,-0.011148651130497,0.049845118075609],[0.032490383833647,0.034462086856365,0.033780246973038]],[[-0.049644228070974,-0.041159637272358,-0.035494677722454],[-0.02717861533165,-0.031812008470297,-0.044919971376657],[0.045409511774778,0.088634498417377,0.037660777568817]],[[0.02541964314878,-0.024597071111202,0.032852809876204],[0.005147026386112,0.048519805073738,0.037601113319397],[-0.074606575071812,0.046399176120758,-0.068405672907829]],[[-0.014332316815853,-0.054166480898857,-0.031124072149396],[-0.064672097563744,-0.04901060089469,-0.028895130380988],[-0.0051947385072708,-0.04758720472455,-0.052219782024622]],[[-0.024436570703983,-0.075327664613724,-0.0040020234882832],[0.041333265602589,-0.0075741657055914,0.0060219583101571],[0.026201922446489,0.014216906391084,-0.028239592909813]],[[0.045988660305738,0.063817240297794,0.11100984364748],[0.024352183565497,0.04642179608345,0.082114838063717],[0.084227323532104,0.060540415346622,0.0057077780365944]],[[0.044849287718534,-0.060813438147306,-0.0672592446208],[-0.033298466354609,0.0054707052186131,-0.011917350813746],[0.02048235014081,-0.087531201541424,0.014364554546773]],[[0.055703204125166,0.0045660506002605,0.045308254659176],[-0.0642314478755,0.025629347190261,-0.0010768694337457],[-0.02368644811213,-0.022777853533626,0.0099418880417943]],[[-0.010654381476343,-0.056469582021236,0.0012389306211844],[-0.077510446310043,-0.033093307167292,0.011643624864519],[0.022972911596298,0.034788958728313,-0.010555391199887]],[[0.0065887435339391,-0.019475830718875,-0.022964429110289],[-0.010494347661734,0.04365736618638,0.035224981606007],[0.017215145751834,0.031422708183527,0.0745018273592]],[[-0.0073474254459143,0.064590193331242,-0.016385784372687],[0.055902730673552,0.013769171200693,-0.029432639479637],[0.0749676451087,0.099441558122635,0.011172138154507]],[[0.034057799726725,-0.0054433699697256,0.0032900867518038],[-0.032741643488407,-0.06207375600934,0.022890206426382],[0.090416133403778,0.064890593290329,0.028132017701864]],[[0.0068775406107306,0.1309001147747,0.088261008262634],[0.090813189744949,0.028088072314858,0.02270501293242],[0.01075336150825,0.087245434522629,0.028404206037521]],[[0.0035024986136705,-0.022353133186698,-0.055773083120584],[-0.026671931147575,-0.010992825962603,-0.010911473073065],[-0.01283155195415,-0.024226015433669,-0.083708845078945]],[[0.019008729606867,-0.059171766042709,-0.053868476301432],[-0.021168535575271,-0.08981766551733,-0.0041896007023752],[0.0012314323103055,-0.053589683026075,-0.031298235058784]],[[0.02885309420526,0.015901546925306,-0.034861829131842],[0.065262541174889,0.067091323435307,0.050650231540203],[0.040710646659136,0.038983069360256,-0.02482851035893]],[[0.0072114751674235,0.011700791306794,-0.010906652547419],[-0.0096021052449942,-0.0090405931696296,0.031094241887331],[-0.03748769685626,0.015604089945555,0.02835932187736]],[[-0.067101813852787,-0.014103249646723,0.0092109311372042],[0.061308559030294,-0.092058464884758,0.047017082571983],[0.037826705724001,-0.021819153800607,0.040798798203468]],[[-0.0077052293345332,0.0043659918010235,0.048108410090208],[-0.00031870193197392,-0.013903842307627,-0.014377934858203],[-0.051746163517237,0.008652014657855,-0.0025353841483593]],[[0.13537929952145,-0.003993911202997,0.0086739426478744],[0.11764359474182,-0.07581639289856,0.10440555214882],[0.033592447638512,-0.035068191587925,0.077731154859066]],[[0.025251522660255,-0.054544441401958,-0.038922492414713],[-0.021512614563107,-0.0054127061739564,-0.020271550863981],[-0.02548305131495,-0.046457324177027,-0.02931659668684]],[[-0.029866401106119,-0.046169880777597,-0.025856491178274],[-0.063934363424778,-0.030591951683164,-0.015034794807434],[-0.053916539996862,0.041629213839769,0.020431565120816]],[[0.056543730199337,0.014471845701337,-0.055189333856106],[0.0068165417760611,0.0092327548190951,-0.021998949348927],[0.028211055323482,-0.039615489542484,-0.031064255163074]],[[0.042237918823957,-0.013195076957345,-0.016524851322174],[0.05577178299427,0.057622112333775,-0.0081028947606683],[0.049231264740229,-0.031234851107001,0.020258165895939]],[[-0.000269166106591,0.0072878417558968,-0.013862458989024],[0.090722315013409,0.031762406229973,-0.016672413796186],[-0.070908889174461,0.075456708669662,0.0097240833565593]],[[0.040014911442995,0.022126300260425,0.072861842811108],[0.00048680091276765,-0.010977989062667,-0.061096478253603],[0.020099489018321,0.0099847428500652,0.044769514352083]],[[0.047984983772039,0.04975376650691,0.046308055520058],[0.0053389081731439,0.017257338389754,0.068282596766949],[-0.059539385139942,0.038444768637419,-0.040070317685604]],[[-0.086672477424145,-0.011918403208256,-0.023351835086942],[0.015178315341473,0.030392844229937,0.067560531198978],[-0.10831009596586,-0.037066787481308,-0.051826313138008]],[[0.051160726696253,0.08925037831068,-0.014387425966561],[0.1402700394392,0.12893937528133,0.07678946852684],[-0.053616207093,0.067656263709068,-0.029895860701799]],[[0.040869988501072,-0.052046772092581,0.0094217611476779],[0.084764800965786,-0.020963778719306,0.01476885471493],[0.054687861353159,0.017626874148846,0.060135055333376]],[[0.07451094686985,0.036217477172613,0.086135856807232],[0.062384732067585,-0.0102843279019,0.15333330631256],[0.058028090745211,0.03433034196496,0.021445071324706]],[[0.046217054128647,0.060654170811176,0.0036201775074005],[0.032995488494635,0.041542693972588,-0.0011944007128477],[0.032572850584984,-0.0081552295014262,-0.022966492921114]],[[-0.023470494896173,0.058641027659178,0.05297003313899],[0.069873474538326,-0.075262956321239,0.03486268222332],[0.068077854812145,0.019113838672638,0.042180325835943]],[[0.052339855581522,-0.047656998038292,-0.027180856093764],[-0.042204476892948,0.011301903054118,-0.011175061576068],[-0.12495803833008,-0.056473147124052,0.013306151144207]],[[-0.0043085697107017,-0.021110190078616,-0.030839513987303],[-0.0020367449615151,0.033573862165213,0.050572667270899],[-0.019172720611095,-0.067131265997887,-0.038000606000423]],[[0.042392432689667,-0.022138848900795,-0.025454480201006],[0.020348209887743,0.11371586471796,-0.017847053706646],[0.023617468774319,0.057164516299963,-0.0099788131192327]],[[-0.065834239125252,-0.0095257963985205,-0.04876359924674],[-0.029756331816316,-0.088121704757214,0.042396049946547],[-0.10467923432589,-0.014904007315636,-0.038718488067389]],[[0.029155574738979,0.1265125721693,-0.018432401120663],[-0.03196070715785,0.0016788636567071,-0.032698471099138],[0.024109302088618,0.016333470121026,0.081846982240677]],[[0.0087164249271154,-0.054671619087458,0.060054395347834],[-0.00013341003796086,0.030395157635212,-0.033470638096333],[0.00073244568193331,-0.010997766628861,-0.011812012642622]],[[0.08449973911047,-0.011760137975216,-0.0032038548961282],[0.058091081678867,0.02552780136466,-0.039486519992352],[0.044103518128395,0.029719918966293,0.10180087387562]],[[-0.080890670418739,-0.11900082975626,-0.029476961120963],[0.024157367646694,-0.058687973767519,0.041810780763626],[0.036774639040232,-0.055272959172726,0.038265824317932]],[[0.0468256957829,-0.013077109120786,0.011078484356403],[-0.01297443639487,0.0014545985031873,0.08665257692337],[-0.08790572732687,0.0053270747885108,-0.0060028843581676]],[[0.031232113018632,-0.035541161894798,0.0081596169620752],[-0.046950116753578,-0.11085963994265,-0.019602688029408],[0.015154237858951,-0.079227291047573,0.019644450396299]],[[0.050965093076229,0.012593956664205,-0.048040397465229],[0.069289520382881,0.041490770876408,0.032643012702465],[0.028009722009301,-0.037715766578913,0.054950714111328]],[[0.046394612640142,0.080140493810177,0.032311450690031],[-0.016318425536156,0.034370694309473,-0.031464152038097],[-0.0046693333424628,-0.02619806677103,-0.0067788367159665]],[[0.0076763844117522,-0.10181090980768,-0.051020495593548],[-0.058716338127851,-0.045056603848934,0.050524491816759],[0.0004269864584785,-0.064140781760216,-0.035761080682278]],[[-0.069142855703831,-0.00073724985122681,0.061010789126158],[-0.081314116716385,-0.029341891407967,0.068839505314827],[-0.010767473839223,-0.010554078035057,-0.022654050961137]],[[-0.017049817368388,-0.011322438716888,0.073315173387527],[0.045011844485998,0.012351719662547,0.092706352472305],[0.063537493348122,-0.028797160834074,-0.054604064673185]],[[0.014305721968412,-0.040937189012766,-0.0053384900093079],[-0.01868550106883,0.028619172051549,0.092495262622833],[-0.002342842053622,0.070821821689606,0.028024716302752]],[[0.013452677987516,0.039109468460083,-0.012316799722612],[-0.023683201521635,0.0033869484905154,-0.016946515068412],[0.010415547527373,-0.030201874673367,0.01271443720907]],[[0.00046037277206779,-0.042050808668137,-0.035954628139734],[-0.025053830817342,-0.033070780336857,0.0050192601047456],[0.024220259860158,0.033610295504332,-0.061715468764305]],[[0.0058324281126261,0.032206114381552,0.027655279263854],[-0.026038004085422,0.11426842212677,-0.031857520341873],[-0.067991010844707,0.071177706122398,-0.001995985629037]],[[0.013498166576028,0.0064532514661551,0.0057973666116595],[0.031274922192097,0.05163211748004,-0.020101573318243],[-0.03705932572484,-0.069536849856377,0.026055727154016]],[[0.034824382513762,-0.03792779147625,-0.010211368091404],[0.0050648041069508,0.04076037928462,-0.078361622989178],[-0.075627222657204,-0.068293772637844,-0.049599058926105]],[[0.026886604726315,0.02536890283227,0.022227257490158],[0.0077199069783092,0.02582847699523,-0.0012452283408493],[-0.0007278835400939,0.087101027369499,-0.017952468246222]],[[0.03398210927844,0.016285037621856,0.028012728318572],[-0.018206341192126,0.020228631794453,0.086883127689362],[-0.04457713663578,0.0091745257377625,0.032417815178633]],[[-0.060915559530258,-0.10861228406429,-0.11757458746433],[-0.0041104150004685,-0.04881452023983,0.0040326463058591],[0.030057322233915,0.061004687100649,-0.099395073950291]],[[-0.1302572786808,-0.0036480440758169,-0.069328919053078],[-0.059289883822203,-0.029813062399626,0.0052669211290777],[-0.020530177280307,-0.056606873869896,0.067829921841621]],[[0.053675677627325,0.038721464574337,0.064363613724709],[0.039911299943924,0.02719833701849,0.0029113409109414],[0.02430528588593,0.088959038257599,0.0061023556627333]],[[0.017916487529874,-0.055831018835306,-0.03712398186326],[0.0036276015453041,0.0052458844147623,0.012310761958361],[-0.053748775273561,-0.028930211439729,0.0046604429371655]],[[-0.0023549657780677,-0.029594980180264,0.04171746596694],[0.0084204059094191,0.0069411331787705,-0.02529639005661],[-0.084563948214054,0.010719086974859,0.0030539529398084]],[[0.082148797810078,-0.049826342612505,0.058797359466553],[0.0046166297979653,-0.088269665837288,0.067780926823616],[0.095869928598404,0.039837725460529,0.065280094742775]],[[0.0071216933429241,0.041621264070272,-0.073436498641968],[0.015843447297812,-0.02346864156425,0.0055037755519152],[0.046725049614906,0.06857168674469,-0.029939755797386]],[[-0.037874363362789,-0.019406402483582,0.028887713328004],[-0.0038620380219072,-0.046394791454077,-0.039045635610819],[-0.083917237818241,-0.050323534756899,-0.049828439950943]],[[-0.0057290503755212,-0.03861716017127,0.038191046565771],[-0.016253184527159,-0.01720293238759,-0.086079977452755],[-0.0007191386539489,-0.015650758519769,0.065820053219795]],[[-0.0033585836645216,0.054251052439213,-0.037736643105745],[-0.033946577459574,0.073735594749451,0.038336046040058],[-0.042058456689119,-0.041528210043907,0.073951333761215]],[[0.010793568566442,0.023944584652781,0.041285403072834],[-0.013274703174829,0.036773633211851,0.095976173877716],[-0.016268279403448,-0.011480082757771,-0.08086770772934]],[[0.0020932981278747,-0.038559503853321,-0.057236924767494],[-0.019220411777496,0.026751302182674,-0.081620618700981],[-0.046136673539877,-0.051303457468748,-0.005035855807364]],[[0.078438282012939,0.071286775171757,-0.02873657271266],[0.066206827759743,0.00020816348842345,0.010829685255885],[0.0085783125832677,0.037581700831652,-0.013442225754261]],[[-0.07061704993248,0.029066517949104,-0.09614647179842],[0.0093766460195184,-0.088712550699711,0.0031059694010764],[-0.0012860101414844,0.033759854733944,-0.004736490547657]]],[[[-0.012418986298144,-0.032799392938614,0.003538592485711],[-0.0052015059627593,-0.026408275589347,0.0053724246099591],[-0.051682531833649,0.041394095867872,-0.026938935741782]],[[-0.034329663962126,0.016856418922544,0.0151447057724],[-0.04695638269186,-0.0030259019695222,0.069163553416729],[-0.050804495811462,0.10324609279633,0.041181873530149]],[[0.018606247380376,-0.048288706690073,-0.074968613684177],[0.020302819088101,0.0011757414322346,0.040514193475246],[0.093330264091492,0.10357037931681,0.0067046140320599]],[[0.070887304842472,0.078936904668808,0.068187870085239],[-0.011304141953588,-0.057402394711971,0.014605210162699],[-0.003902078140527,0.011543865315616,-0.022711779922247]],[[0.11054050177336,-0.034806989133358,-0.036952286958694],[-0.080862998962402,-0.031794063746929,0.022046890109777],[0.033752620220184,0.035143420100212,-0.052239291369915]],[[-0.0039688074029982,0.060530796647072,0.018892906606197],[0.010464975610375,-0.039986718446016,0.055272493511438],[-0.027429230511189,-0.013953061774373,0.0021286108531058]],[[-0.011265148408711,0.0045298249460757,0.041273944079876],[0.0094533581286669,0.023880144581199,-0.039836440235376],[0.011945139616728,-0.045423090457916,-0.024079388007522]],[[-0.018914554268122,-0.0062190773896873,0.011695424094796],[0.017180735245347,0.04013605043292,-0.033067338168621],[0.017867416143417,0.051657635718584,0.035434849560261]],[[0.017253449186683,0.055793181061745,-0.083464406430721],[0.04714136198163,-0.050609041005373,-0.022971989586949],[-0.04879204928875,-0.027873342856765,0.034972939640284]],[[0.014883972704411,-0.0099033853039145,0.054205249994993],[0.0033745402470231,-0.03548451140523,0.036001101136208],[0.0369375012815,0.0031892093829811,-0.008229810744524]],[[0.005076352506876,0.030882297083735,0.10791264474392],[-0.021144639700651,0.050067562609911,-0.019921386614442],[0.006361170206219,-0.0084034437313676,-0.029073951765895]],[[0.015407382510602,-0.062641702592373,-0.05383674800396],[-0.12515904009342,-0.047714382410049,0.090036131441593],[0.022330734878778,0.022744568064809,0.037057783454657]],[[-0.036828029900789,0.016983829438686,0.030946183949709],[0.061796329915524,0.054293785244226,0.094716548919678],[0.10714133828878,0.055099241435528,-0.035040680319071]],[[0.10129338502884,-0.0022200741805136,0.043421998620033],[0.019485341385007,0.0021445278543979,0.10034105181694],[-0.034684780985117,-0.051507990807295,-0.03787624835968]],[[0.024060539901257,-0.035037610679865,-0.07293401658535],[0.04938742518425,-0.039868827909231,-0.061663378030062],[0.0039163399487734,0.035273771733046,0.061086989939213]],[[0.070400886237621,-0.0078758960589767,0.03911454975605],[0.15397721529007,0.017930248752236,0.02634503878653],[-0.018920486792922,-0.038420535624027,-0.017950164154172]],[[0.0057687065564096,-0.041167799383402,-0.043800264596939],[0.0062027084641159,-0.0057981824502349,0.038522537797689],[-0.01507571619004,0.056289874017239,0.06848930567503]],[[-0.097937539219856,-0.017762526869774,0.085665047168732],[-0.040409088134766,0.026081580668688,0.0048249596729875],[-0.0079267555847764,-0.053984731435776,-0.017904045060277]],[[0.019734771922231,0.057059358805418,0.063186176121235],[-0.0340367667377,-0.080728739500046,0.021742656826973],[-0.076719164848328,0.015770485624671,0.004766599740833]],[[-0.045313164591789,-0.036497183144093,0.014088436029851],[0.1004575714469,-0.080573819577694,-0.017646882683039],[0.026589248329401,-0.047315198928118,-0.062211684882641]],[[0.052099477499723,0.0061791674233973,0.014377439394593],[0.054790649563074,-0.084830291569233,-0.028961131349206],[-0.054818272590637,0.04708843678236,-0.029493512585759]],[[0.11934155970812,0.045053701847792,0.045894958078861],[0.026223637163639,0.020706696435809,-0.027132203802466],[-0.034178636968136,0.063000880181789,0.077535197138786]],[[0.014758788980544,-0.04699569195509,0.011822229251266],[0.02488992549479,0.094904087483883,0.037078630179167],[-0.15915665030479,-0.076295033097267,-0.04746625572443]],[[0.043045181781054,0.015857828781009,0.026042619720101],[-0.087949566543102,-0.083947099745274,-0.011892064474523],[-0.021574864163995,-0.033399533480406,-0.065499238669872]],[[-0.060507945716381,0.033337417989969,-0.22418287396431],[-0.024020079523325,-0.028910623863339,0.047242477536201],[0.027884313836694,-0.080247513949871,-0.014188723638654]],[[-0.023531688377261,0.056185260415077,-0.038774702697992],[-0.02188503742218,0.0097921891137958,0.019705193117261],[-0.026580650359392,-0.010753395967185,-0.057823307812214]],[[0.028813075274229,0.036922045052052,0.028240812942386],[-0.065854355692863,0.073043689131737,0.03441321477294],[-0.0023055570200086,-0.035562466830015,-0.027051636949182]],[[-0.09096521884203,0.06218895316124,0.048725701868534],[-0.069963917136192,-0.025985434651375,0.018232353031635],[0.032498557120562,0.045237638056278,-0.0024467089679092]],[[-0.035675249993801,0.089595571160316,-0.040853466838598],[-0.0080978693440557,-0.017565688118339,-0.028042152523994],[-0.00017095083603635,0.06827736645937,0.077246859669685]],[[-0.052396446466446,0.029511742293835,0.048555191606283],[-0.048267919570208,-0.078687340021133,-0.10348916053772],[-0.017133709043264,-0.034384302794933,-0.030086221173406]],[[-0.064687192440033,0.023796180263162,0.013012879528105],[0.006690586451441,-0.02637092769146,0.030295973643661],[-0.01821949146688,-0.036486875265837,-0.033939853310585]],[[-0.031505446881056,0.084728203713894,-0.0018227945547551],[-0.037998281419277,0.0083007700741291,0.014671164564788],[-0.038906373083591,0.034354478120804,0.021321251988411]],[[0.0183139834553,0.034267611801624,0.05303044244647],[0.13594497740269,-0.022002033889294,0.042458195239305],[0.094788178801537,0.014259249903262,0.029690815135837]],[[-0.043074745684862,-0.060062650591135,0.071966096758842],[0.023138681426644,-0.017731642350554,-0.041409004479647],[0.061697859317064,0.05529497936368,0.034913904964924]],[[0.033538360148668,-0.03300291672349,-0.013105853460729],[0.014392221346498,0.0058706700801849,0.028814489021897],[-0.001546154730022,-0.019266063347459,-0.013170629739761]],[[0.04969384893775,0.015380509197712,0.051556162536144],[0.099669508635998,-0.056333895772696,0.0052930796518922],[0.02090041898191,-0.025595910847187,0.0064507708884776]],[[0.11665903031826,-0.060141362249851,-0.006379147991538],[-0.020383847877383,-0.10412418097258,-0.017830930650234],[0.11728870123625,-0.035080831497908,0.065884687006474]],[[-0.00025839396403171,0.11523585766554,-0.051220268011093],[-0.041814275085926,0.071086451411247,-0.031276389956474],[-0.0020157974213362,-0.011152303777635,-0.013889838941395]],[[0.00014413768076338,0.029210805892944,-0.0398367382586],[0.0177699085325,-0.010697405785322,-0.017307374626398],[-0.10386687517166,0.066779933869839,-0.022101787850261]],[[0.015263275243342,-0.037826895713806,-0.0051974155940115],[0.0054728924296796,-0.010705044493079,0.057210419327021],[0.064398713409901,0.044609379023314,0.0050007244572043]],[[-0.052681732922792,-0.020651137456298,-0.0045892465859652],[0.043432004749775,-0.025094756856561,-0.017833156511188],[-0.042325384914875,0.018707413226366,0.038711652159691]],[[0.0094049610197544,-0.016706705093384,0.029975097626448],[-0.040162410587072,0.074820548295975,0.066833220422268],[-0.0246542673558,-0.026699353009462,0.01754554361105]],[[0.11134621500969,0.050194650888443,-0.027443105354905],[-0.011442792601883,0.028182564303279,0.040505561977625],[0.10263955593109,-0.06495562940836,-0.045180134475231]],[[-0.052401214838028,-0.01794938929379,0.020208498463035],[-0.011263708584011,-0.028175057843328,0.035290207713842],[-0.033442132174969,0.011509431526065,-4.0338643884752e-05]],[[-0.0073803775012493,-0.027522316202521,0.093317866325378],[0.015289059840143,0.0022332039661705,-0.051832035183907],[-0.083115369081497,-0.039689656347036,-0.045210763812065]],[[0.0046267169527709,0.0076326243579388,-0.070647060871124],[0.011728886514902,-0.028743490576744,0.041825223714113],[0.054189898073673,0.0038051393348724,0.02581949532032]],[[-0.045509051531553,0.062518708407879,0.031170254573226],[-0.048039186745882,-0.057217851281166,0.031709033995867],[-0.049021910876036,-0.038641098886728,0.026980189606547]],[[0.0087133767083287,0.023449957370758,-0.0033236497547477],[0.02821890451014,-0.00026716574211605,-0.0043924110941589],[0.015732493251562,-0.02308020927012,0.038662154227495]],[[-0.037055358290672,-0.026294151321054,0.0002096583484672],[-0.025688597932458,0.048472303897142,-0.018524391576648],[-0.019902786239982,-0.061572302132845,-0.013899469748139]],[[0.0026219447609037,-0.027919648215175,-0.014582457952201],[-0.077427200973034,0.047295056283474,-0.012478327378631],[0.046900060027838,-0.069860950112343,-0.030766496434808]],[[-0.069542087614536,0.075768254697323,0.0126236313954],[-0.025523563846946,0.02925824560225,0.063528165221214],[-0.021263018250465,0.026262190192938,-0.0038777582813054]],[[0.047371163964272,0.045387540012598,-0.037782117724419],[0.03378252312541,-0.029614279046655,-0.032948084175587],[-0.043602038174868,-0.021790966391563,-0.021706445142627]],[[-0.013563397340477,-0.024632152169943,-0.083459042012691],[-0.094485580921173,-0.072170361876488,-0.069524563848972],[-0.057177260518074,0.012767649255693,-0.028025612235069]],[[0.058688476681709,0.058162819594145,-0.0060349311679602],[-0.014650739729404,0.033304408192635,0.035776007920504],[0.018873326480389,0.023127268999815,0.04991414770484]],[[-0.0054065580479801,0.04597806930542,0.018318509683013],[0.00083235744386911,0.0050521758385003,0.032880555838346],[0.057799030095339,-0.02295527793467,-0.048971302807331]],[[0.042413912713528,0.0085751302540302,-0.012953997589648],[-0.020976025611162,-0.048056218773127,-0.016008168458939],[-0.021623438224196,-0.083226352930069,-0.11376194655895]],[[0.11442139744759,0.079145766794682,0.030337687581778],[-0.044757880270481,0.043281596153975,0.081818386912346],[0.014574537985027,0.033192258328199,0.006582039874047]],[[0.026780780404806,-0.040506262332201,0.098434396088123],[0.013960638083518,-0.045528784394264,-0.018623514100909],[-0.0058108489029109,0.066906712949276,0.03882560133934]],[[0.026559509336948,0.063817836344242,0.047245897352695],[0.13249295949936,0.0046163271181285,0.11531761288643],[0.090365901589394,0.073840089142323,-0.021462447941303]],[[-0.11731661856174,-0.011785215698183,0.016158938407898],[0.10904828459024,-0.051706232130527,0.1079983189702],[0.015913819894195,0.04517163708806,0.00034621517988853]],[[-0.023417124524713,0.0049905255436897,-0.068826697766781],[-0.013170505873859,-0.018532574176788,0.0064339400269091],[-0.036328844726086,-0.064773343503475,-0.046717394143343]],[[0.056627124547958,-0.069422289729118,-0.01272108219564],[0.040306933224201,0.036887682974339,0.00019020971376449],[-0.073747642338276,-0.01231812313199,0.0083637358620763]],[[-0.050770245492458,-0.021182732656598,0.022971395403147],[-0.006473972927779,0.056689195334911,0.04552723094821],[0.043097667396069,-0.027076907455921,0.0051770126447082]],[[0.0519984588027,-0.041903141885996,-0.026013122871518],[0.043301437050104,-0.013307086192071,-0.030913347378373],[0.010653667151928,0.026348860934377,-0.05335059016943]],[[0.019886309280992,0.020789010450244,-0.03665005415678],[0.041232358664274,0.015671955421567,-0.0028997552581131],[-0.025293324142694,0.026561517268419,-0.023996736854315]],[[0.00010497531911824,-0.065438240766525,0.068530105054379],[0.09886185079813,0.06471136957407,0.16590224206448],[0.056810110807419,-0.079347193241119,0.088088542222977]],[[-0.033392086625099,-0.032756812870502,0.07993596047163],[-0.0078178690746427,0.084513485431671,0.078608855605125],[0.03839822486043,0.010369983501732,0.043110534548759]],[[0.024808583781123,0.1062017083168,-0.026244657114148],[0.11424628645182,0.091346725821495,0.041154514998198],[0.015596894547343,-0.030031513422728,-0.044566996395588]],[[0.0046387915499508,0.037591487169266,0.023238658905029],[0.048802878707647,0.020921619608998,0.00085290765855461],[-0.01025227829814,0.047930039465427,0.073678120970726]],[[0.027089536190033,-0.0058827945031226,0.021695554256439],[0.05896120518446,0.025341518223286,-0.051610354334116],[0.054339095950127,0.14752523601055,0.011002887971699]],[[-0.078716337680817,0.089535795152187,0.025823762640357],[0.053863737732172,0.07562904804945,0.064956456422806],[-0.0025263768620789,-0.01454421505332,0.001005231635645]],[[0.074011854827404,-0.033530227839947,-0.02822870016098],[-0.035606652498245,0.0075636608526111,-0.0050369850359857],[-0.060978978872299,-0.033612553030252,0.060044184327126]],[[-0.066250994801521,0.047344628721476,0.014189401641488],[-0.0093588223680854,0.011227861046791,-0.013797430321574],[0.052383366972208,-0.043439868837595,0.051702477037907]],[[-0.050255987793207,-0.064447142183781,-0.0031640196684748],[-0.013328793458641,0.0092780878767371,0.0077019589953125],[0.089218087494373,-0.039510652422905,0.067331425845623]],[[0.065742060542107,0.043512709438801,-0.039817724376917],[-0.055964820086956,-0.089735969901085,-0.019994145259261],[0.067008174955845,0.086808905005455,-0.02399224229157]],[[0.012982200831175,-0.027873439714313,0.0039170193485916],[-0.0052393712103367,0.047283601015806,-0.040507435798645],[-0.0025919997133315,0.0043900930322707,0.04434160143137]],[[0.043846771121025,0.056933049112558,-0.0287099853158],[-0.0039137336425483,-0.052845843136311,0.042487312108278],[0.011694064363837,0.088293604552746,-0.0013078415067866]],[[0.021420322358608,0.10224574804306,-0.0080599738284945],[0.034862361848354,0.016854997724295,-0.023468950763345],[0.024194305762649,0.043100155889988,-0.027666768059134]],[[0.055423896759748,-0.047920729964972,0.043666373938322],[0.035471480339766,-0.037897661328316,0.0033592947293073],[0.025849048048258,0.068987309932709,0.071628458797932]],[[-0.022011484950781,-0.029479810968041,-0.0034184129908681],[0.0065848976373672,0.0011840206570923,-0.1430452466011],[-0.029747437685728,0.057677492499352,0.02545172534883]],[[-0.036022156476974,0.017718300223351,-0.061468712985516],[0.12172496318817,0.053074091672897,0.0027681197971106],[0.011580081656575,0.018445426598191,-0.028496397659183]],[[0.024092279374599,0.0081557603552938,0.12683080136776],[0.022478738799691,0.06793837249279,0.065062664449215],[0.027395825833082,0.044375255703926,0.040012329816818]],[[-0.086671747267246,0.026992361992598,0.016698965802789],[-0.016135219484568,-0.014953166246414,-2.9223896490294e-05],[-0.086658880114555,0.0071476344019175,0.034938376396894]],[[-0.00055884313769639,0.029401432722807,0.044154733419418],[0.10300697386265,-0.017667263746262,0.13066025078297],[0.075564116239548,0.014717543497682,-0.019468270242214]],[[0.035637650638819,0.040369603782892,-0.020411688834429],[-0.032940369099379,0.032999597489834,0.025711372494698],[-0.036714617162943,-0.063306748867035,0.0083447052165866]],[[0.048203062266111,-0.016333859413862,0.03260700404644],[0.0033533808309585,0.040023192763329,-0.0063281329348683],[0.039452839642763,-0.035496432334185,-0.027831746265292]],[[0.04246836528182,-0.00027994491392747,-0.02021929807961],[0.0038485266268253,0.05138373747468,0.056358724832535],[0.020737919956446,0.056028064340353,-0.060260940343142]],[[-0.043721780180931,-0.040678162127733,0.041507359594107],[-0.023020310327411,0.072567343711853,0.015439891256392],[0.022570237517357,-0.058285523205996,-0.006700599566102]],[[0.026747405529022,-0.0020224987529218,0.053675297647715],[-0.026863243430853,-0.018207054585218,-0.021448517218232],[-0.0039593135006726,0.040404621511698,-0.0084592010825872]],[[-0.0046435804106295,0.012541890144348,0.083356440067291],[0.064273908734322,0.029264720156789,-0.033034905791283],[0.030478803440928,0.065717779099941,0.059420511126518]],[[0.0034142786171287,-0.024441776797175,0.016803614795208],[0.053550414741039,0.082555413246155,0.070997752249241],[0.067038998007774,0.042771801352501,0.0019862642511725]],[[0.037554580718279,0.02774347551167,-0.058047957718372],[-0.029514426365495,-0.06781429797411,0.06562028080225],[0.023870266973972,-0.00026149084442295,0.040722917765379]],[[0.066110789775848,0.069981649518013,0.042968116700649],[-0.031745009124279,-0.054374430328608,0.0084972912445664],[-0.04668303206563,-0.089552998542786,0.048034410923719]],[[0.039887394756079,0.044758047908545,0.082970082759857],[0.076423607766628,0.034208346158266,-0.10769755393267],[0.048036549240351,0.057031694799662,0.09509651362896]],[[-0.045621898025274,-0.061340264976025,-0.0028270864859223],[-0.026812193915248,-0.060759946703911,0.019880061969161],[-0.063116461038589,-0.096580624580383,-0.030160998925567]],[[0.036630567163229,0.047435894608498,-0.050880208611488],[0.025759886950254,0.074616998434067,-0.018232235684991],[0.0219412073493,0.12541253864765,0.047346167266369]],[[-0.027145594358444,-0.060628432780504,0.066023334860802],[0.060931354761124,-0.015083136968315,-0.021438142284751],[0.070627816021442,0.014092759229243,-0.013186878524721]],[[0.055362064391375,0.067288771271706,0.036744587123394],[-0.0048133856616914,0.054610934108496,-0.0085023855790496],[0.031803946942091,-0.0038617914542556,0.053437240421772]],[[-0.033217329531908,0.024546222761273,-0.05211803689599],[-0.017428072169423,0.07974524050951,-0.088716097176075],[0.091177850961685,0.10525973141193,-0.015007322654128]],[[-0.0078116236254573,0.012160581536591,0.0038451291620731],[0.020038526505232,0.043312676250935,0.073690041899681],[0.011424641124904,0.062002755701542,-0.036719236522913]],[[-0.015738422051072,7.2670736699365e-06,-0.027093136683106],[-0.075332254171371,0.024094810709357,-0.053041964769363],[0.022836351767182,-0.044912178069353,0.023255979642272]],[[0.0065540224313736,0.054462745785713,0.0069348574616015],[-0.029474996030331,0.021436918526888,-0.01307366695255],[0.12493159621954,0.04092575982213,-0.017515808343887]],[[0.033410429954529,0.085075087845325,-0.0015013307565823],[-0.0055671557784081,0.038050621747971,0.050543606281281],[0.013890378177166,0.0011299282778054,-0.00047915725735947]],[[-0.023830655962229,-0.088712081313133,-0.0072069549933076],[0.054268430918455,-0.011902340687811,-0.015702899545431],[0.060398895293474,0.032512914389372,-0.011138620786369]],[[0.019339632242918,-0.028755821287632,0.034496188163757],[-0.1240598410368,-0.021749790757895,-0.083793826401234],[0.043945152312517,0.039246674627066,0.080309368669987]],[[-0.063078865408897,0.06430322676897,-0.099553160369396],[0.065643206238747,-0.0092894872650504,0.023211603984237],[-0.055116042494774,0.044602334499359,0.040261723101139]],[[0.02847989089787,-0.028715321794152,0.030436171218753],[0.0049883215688169,0.009411864914,0.03609161823988],[-0.0064570042304695,0.0030012403149158,0.0062828715890646]],[[0.047126062214375,-0.064148604869843,0.030061507597566],[-0.021450310945511,0.023744851350784,-0.0019487870158628],[-0.044402398169041,-0.086340099573135,0.0010271404171363]],[[0.025821682065725,-0.045278038829565,-0.0050488659180701],[-0.0027180996257812,0.0089536858722568,-0.026198875159025],[-0.0074266041629016,-0.0068747377954423,-0.038036987185478]],[[0.096079871058464,0.063557252287865,-0.011808645911515],[0.0280786678195,-0.020656056702137,0.051007300615311],[0.02980425581336,0.01452018506825,-0.0089231003075838]],[[-0.008415381424129,0.018199833109975,0.0068649756722152],[0.027864558622241,-0.026725500822067,-0.035034414380789],[-0.0007608201703988,-0.034815937280655,0.025796523317695]],[[-0.036874383687973,-0.026098612695932,-0.0592504106462],[-0.056736100465059,-0.047133103013039,0.0027603397611529],[-0.051235664635897,-0.1578516960144,0.032479509711266]],[[-0.062764540314674,-0.10216514766216,0.027768928557634],[0.065286733210087,-0.010346035473049,0.01918469183147],[0.010656080208719,0.09750959277153,0.058385260403156]],[[-0.04463042318821,0.1105398312211,-0.024053456261754],[0.034952219575644,-0.011807180941105,-0.016988340765238],[0.072377756237984,0.035050868988037,0.045109167695045]],[[-0.0221311673522,-0.024553660303354,0.018771380186081],[-0.008450354449451,-0.0046119489707053,-0.044619392603636],[0.05695366859436,0.019416630268097,-0.026702798902988]],[[0.014077345840633,0.0030229059047997,0.034467939287424],[0.010270496830344,0.022139459848404,-0.066358678042889],[-0.10464942455292,-0.012795444577932,-0.031232437118888]],[[0.017148423939943,0.029249927029014,0.11846855282784],[-0.0077912346459925,-0.00039719717460684,0.077761113643646],[0.041418023407459,0.045497719198465,0.017884735018015]],[[-0.050709325820208,-0.10150323063135,-0.0032306611537933],[0.0078313564881682,-0.1053174212575,-0.039131119847298],[0.031878802925348,0.0053402408957481,0.025589622557163]],[[-0.038383040577173,0.031494054943323,-0.050024267286062],[0.053233433514833,-0.10840422660112,-0.098798640072346],[-0.068582683801651,0.047701075673103,0.0031683391425759]],[[0.25105133652687,0.097881250083447,0.011407513171434],[0.12519207596779,0.055615216493607,0.098592795431614],[-0.087579995393753,0.019045751541853,0.065895691514015]],[[-0.068638026714325,-0.059448037296534,0.01903099194169],[0.025139702484012,0.011880445294082,0.049661096185446],[-0.040969103574753,0.054144091904163,0.019150678068399]],[[0.020830973982811,-0.062842048704624,-0.011331190355122],[-0.025443768128753,-0.029384799301624,-0.0035556766670197],[-0.079519674181938,0.031114656478167,-0.0070497905835509]],[[-0.075896166265011,-0.0091068632900715,-0.010904518887401],[-0.00097487517632544,0.011470871977508,-0.046960439532995],[-0.026014180853963,-0.040773674845695,0.018393093720078]],[[0.040736969560385,0.022388042882085,0.019629618152976],[-0.060263562947512,0.083182215690613,-0.0031621812377125],[0.049184083938599,0.024624658748507,0.031856305897236]],[[0.033286586403847,0.0098641254007816,0.048436503857374],[0.04551861807704,0.020862437784672,0.014273305423558],[-0.014431087300181,0.0174152366817,-0.053149405866861]],[[-0.052734699100256,-0.089377783238888,-0.036950867623091],[0.036225184798241,-0.028638223186135,-0.022794492542744],[-0.024876056239009,0.02440377138555,-0.015000910498202]],[[0.099189519882202,0.035194247961044,0.08702552318573],[-0.021939733996987,0.020343331620097,0.045515298843384],[-0.048201125115156,-0.007897799834609,0.035499967634678]],[[0.10621929168701,0.014226998202503,0.011403792537749],[-0.013042086735368,0.041901417076588,0.022398959845304],[-0.00084191258065403,0.09283172339201,-0.03470915555954]]],[[[-0.045381754636765,0.046307850629091,0.0068729324266315],[-0.0011672757100314,0.014838254079223,-0.076811857521534],[-0.10214842110872,0.0075622987933457,-0.052346959710121]],[[-0.0047760275192559,-0.012459017336369,0.049463272094727],[-0.015820767730474,0.0065526650287211,-0.012248105369508],[0.096746906638145,-0.047078419476748,-0.034527137875557]],[[-0.030956968665123,0.0001399783504894,0.061258524656296],[0.047884479165077,0.068274296820164,-0.00035658231354319],[-0.037048641592264,0.02504432760179,-0.03882147371769]],[[-0.00042406682041474,0.027697457000613,-0.012251423671842],[-0.07488364726305,-0.076700255274773,-0.033940341323614],[-0.031613670289516,0.0018669597338885,-0.023308552801609]],[[-0.088282942771912,0.023419748991728,0.032475780695677],[-0.023444650694728,0.0057458095252514,-0.016141563653946],[-0.004030856769532,-0.080557525157928,0.041620537638664]],[[-0.085409641265869,-0.0049272095784545,0.016124764457345],[-0.027812901884317,-0.08944184333086,0.0082773389294744],[-0.050889257341623,-0.1027863919735,-0.083698004484177]],[[0.026946384459734,-0.0037192138843238,0.0031624410767108],[0.023626945912838,0.044736463576555,0.042939867824316],[-0.036618880927563,-0.022559577599168,-0.041902773082256]],[[-0.048896111547947,-0.014443254098296,0.066898420453072],[-0.081925816833973,-0.010568796657026,-0.040534451603889],[-0.031467776745558,0.031528364866972,0.032756980508566]],[[-0.015510967932642,0.03776566311717,0.0066440575756133],[0.003464592853561,-0.086936824023724,0.068651087582111],[-0.0071485303342342,0.052318759262562,-0.00051924696890637]],[[-0.033210825175047,0.018563529476523,0.01068845950067],[0.023306369781494,0.071262404322624,0.040211342275143],[0.015098616480827,0.0019138130592182,-0.034751616418362]],[[-0.0050764982588589,-0.006452864035964,0.005085832439363],[-0.039561491459608,-0.0054132142104208,0.020932633429766],[-0.043381325900555,-0.027381239458919,0.018816810101271]],[[-0.016354421153665,0.012560200877488,0.026170555502176],[-0.046273920685053,-0.085848785936832,0.005445403046906],[-0.034895349293947,0.0037502651102841,-0.00028403347823769]],[[0.011300893500447,-0.060278989374638,0.055490758270025],[-0.022758431732655,0.012952373363078,-0.0084590464830399],[0.031650375574827,-0.068886898458004,0.020225238054991]],[[0.0098514771088958,0.023895366117358,0.030176848173141],[0.036213885992765,0.029459921643138,-0.067835532128811],[-0.01901519112289,0.044474329799414,0.031977288424969]],[[-0.051119334995747,-0.010381392203271,-0.015008853748441],[-0.019625579938293,0.0089699570089579,-0.048689849674702],[0.01081832498312,-0.074734099209309,0.0040024807676673]],[[0.014260340481997,-0.0066895135678351,0.077349722385406],[0.048993058502674,-0.061765588819981,0.019390696659684],[0.026581512764096,0.058987908065319,0.031995724886656]],[[-0.024354880675673,-0.013233420439065,0.025317337363958],[0.00015836782404222,-0.080473624169827,-0.041166707873344],[-0.0066841868683696,0.10061921924353,-0.0022890181280673]],[[0.039310269057751,0.05620513856411,-0.013691920787096],[-0.031590580940247,-0.052775759249926,0.0052915005944669],[-0.076354652643204,0.033320091664791,0.014966543763876]],[[-0.037310928106308,0.0047844997607172,-0.025005588307977],[-0.094444274902344,-0.0018863558070734,-0.05180187523365],[-0.039268549531698,0.0073647946119308,-0.013593546114862]],[[0.0094945784658194,-0.027236776426435,-0.061311595141888],[0.027831971645355,0.048667453229427,0.043117005378008],[0.027917977422476,0.0041657323017716,0.019164994359016]],[[0.027314074337482,0.054528385400772,0.077961109578609],[0.053784724324942,0.021658943966031,-0.019146520644426],[-0.00071443023625761,0.013747226446867,0.079954020678997]],[[0.012799910269678,0.070592522621155,-0.1046848744154],[0.034678913652897,0.022672226652503,-0.0094467625021935],[0.01853914372623,0.046604577451944,0.11097012460232]],[[0.010103620588779,-0.0071760891005397,0.00633325567469],[-0.071764446794987,-0.066805839538574,-0.032703772187233],[0.02341883815825,0.01217366848141,0.035860996693373]],[[0.05475091189146,-0.018547881394625,0.070758871734142],[0.026337135583162,-0.0055221077054739,-0.042817130684853],[0.077097743749619,0.00095394777599722,-0.013025429099798]],[[0.035537075251341,-0.0029180983547121,-0.024039538577199],[0.08849773555994,0.030267808586359,-0.0075085172429681],[0.021831521764398,-0.051121298223734,0.048557374626398]],[[-0.015915544703603,0.060944743454456,-0.025258783251047],[-0.005839173682034,-0.064115174114704,0.019935589283705],[0.058917433023453,0.009027561172843,-0.035057831555605]],[[0.06924332678318,-0.044790357351303,-0.039092507213354],[0.031111827120185,-0.018025996163487,0.1407663077116],[0.013885576277971,0.041867848485708,0.01186525542289]],[[-0.0032514790073037,0.056323189288378,-0.028481418266892],[-0.012605150230229,0.001629636855796,-0.040581077337265],[-0.012105263769627,0.048328716307878,-0.012805938720703]],[[-0.022745875641704,-0.025263538584113,0.00816760212183],[0.040068447589874,0.0039694523438811,0.0035392455756664],[0.04181420430541,0.013159170746803,-0.01451470144093]],[[0.080127470195293,0.010749433189631,-0.020831856876612],[-0.0040173954330385,-0.052914340049028,0.02490103431046],[-0.011914679780602,0.081386014819145,0.059669349342585]],[[0.030933886766434,-0.032099839299917,-0.039276756346226],[0.06033556163311,-0.015574571676552,-0.0071717910468578],[-0.006889583542943,-0.047139137983322,0.0084861451759934]],[[0.048483427613974,-0.013029799796641,0.007328849285841],[-0.019055977463722,0.042382765561342,-0.014193798415363],[0.024748077616096,-0.093815825879574,0.079227887094021]],[[-0.064054898917675,-0.074917420744896,0.0038113719783723],[-0.0063954489305615,-0.023677941411734,-0.046861313283443],[-0.03380586206913,0.029566647484899,0.032594949007034]],[[0.064736351370811,0.026176312938333,0.067434348165989],[-0.029065739363432,0.072597168385983,-0.0052558640018106],[0.014755014330149,-0.098744280636311,0.049575965851545]],[[0.1170978397131,0.032118301838636,-0.015665527433157],[-0.01093593146652,-0.015682453289628,0.011141212657094],[-0.004025780595839,-0.055212818086147,0.022325679659843]],[[0.0054330779239535,-0.047189563512802,0.046803079545498],[0.014393229968846,0.050601493567228,-0.062855914235115],[-0.061152461916208,0.035373285412788,0.059123553335667]],[[0.035086404532194,0.0061355507932603,-0.027432296425104],[0.036468174308538,-0.052024900913239,-0.03386327624321],[0.076759368181229,-0.050824116915464,-0.017151778563857]],[[-0.002650469308719,-0.049990214407444,-0.0050181490369141],[0.074659183621407,-0.013681896030903,-0.0073555409908295],[-0.024562167003751,0.017822431400418,-0.035887081176043]],[[-0.03986881673336,0.015797974541783,0.008758096024394],[0.051726419478655,0.052667658776045,-0.0031968900002539],[0.046848766505718,-0.055123671889305,-0.026557164266706]],[[0.0015467588091269,-0.06965322047472,0.017211716622114],[0.040416851639748,-0.033064052462578,0.021983796730638],[-0.014459763653576,-0.036266785115004,0.065625578165054]],[[-0.014027822762728,-0.0092565175145864,0.058999042958021],[0.013016643933952,-0.033791594207287,0.019545590505004],[0.017209906131029,-0.03943920135498,-0.015128045342863]],[[-0.052844859659672,-9.8266020359006e-05,-0.012848492711782],[-0.027915293350816,-0.013457677327096,-0.0041689677163959],[0.07374282926321,0.068507254123688,0.056863270699978]],[[-0.022156670689583,0.023027405142784,-0.011719577945769],[0.026143096387386,0.0021383066195995,0.052243627607822],[0.037991899996996,-0.078130051493645,-0.012242550961673]],[[-0.0018454730743542,0.025668386369944,-0.045191913843155],[-0.016984425485134,-0.071522161364555,-0.051189739257097],[-0.040252264589071,0.025617564097047,-0.016840552911162]],[[-0.049382969737053,0.067415244877338,0.0054430775344372],[-0.0049326717853546,0.051860459148884,-0.043516777455807],[-0.057535193860531,0.04821927472949,0.02764643356204]],[[0.029181979596615,0.051311809569597,0.004896366968751],[0.0019330091308802,0.02296756953001,-0.02713468670845],[0.03220634162426,-0.0050933929160237,0.030997056514025]],[[0.051800169050694,-0.022534077987075,-0.016600163653493],[0.014189396053553,-0.00019063171930611,0.0097198281437159],[0.043296758085489,0.061288185417652,0.027171492576599]],[[0.042247116565704,-0.085707560181618,0.02231508679688],[0.045026488602161,-0.066138871014118,-0.017728237435222],[0.073755912482738,-0.011217541061342,-0.024762695655227]],[[0.058910112828016,-0.012274275533855,-0.0132104633376],[0.015177768655121,-0.0023815222084522,0.032050423324108],[0.020412791520357,-0.039672780781984,-0.0096828434616327]],[[-0.020845457911491,0.017312359064817,-0.033236999064684],[0.018645266070962,-0.04355901107192,-0.0028441222384572],[0.024337621405721,-0.030989099293947,-0.0040392633527517]],[[0.034373793751001,0.062536984682083,-0.019472675397992],[0.053234167397022,0.0057542803697288,0.083441153168678],[-0.046145338565111,0.030743751674891,-0.072902664542198]],[[0.00091265072114766,0.14321209490299,-0.054408099502325],[-0.067709878087044,0.0052865301258862,-0.019859140738845],[0.017038336023688,-0.0069571556523442,-0.074997946619987]],[[0.01271363068372,-0.070863611996174,-0.040475986897945],[0.048394318670034,-0.0417510420084,-0.014451232738793],[0.018160266801715,0.021780665963888,0.035798877477646]],[[0.057318344712257,0.046084295958281,-0.070808120071888],[0.0094652026891708,-0.017281593754888,-0.0027632669080049],[0.023699527606368,0.026551196351647,0.06784188747406]],[[0.0204844083637,-0.05645015090704,0.016003618016839],[0.049023523926735,-0.053084746003151,-0.0958536490798],[-0.068979069590569,0.022901045158505,-0.057681359350681]],[[0.0099159684032202,0.022447740659118,0.017957044765353],[0.039370898157358,0.027924854308367,-0.025048606097698],[-0.023132719099522,-0.049397204071283,0.0014972866047174]],[[0.013144100084901,-0.0040690512396395,-0.0097483452409506],[0.0064916489645839,0.00014026706048753,0.010446542873979],[0.0038853001315147,0.058196894824505,-0.060646176338196]],[[0.026263264939189,0.070913635194302,-0.033560458570719],[0.0053509175777435,-0.024667792022228,0.0060912449844182],[-0.016269609332085,0.028896767646074,-0.0096446201205254]],[[-0.086183689534664,0.035319488495588,-0.0086898738518357],[-0.01656430400908,0.030956923961639,-0.016036856919527],[-0.014099342748523,-0.0052303592674434,0.0090622846037149]],[[0.038141533732414,0.016454441472888,0.010596767067909],[0.043103273957968,-0.012649420648813,-0.020905671641231],[-0.043217297643423,0.054271705448627,-0.082929603755474]],[[-0.0084593156352639,0.0017002436798066,-0.022812517359853],[-0.010200425051153,0.028163373470306,0.023308604955673],[-0.010306688956916,0.017359346151352,0.060970287770033]],[[0.026647595688701,-0.0049906284548342,-0.074795268476009],[-0.0053040813654661,-0.045062318444252,0.02253832295537],[0.0046620527282357,0.010291235521436,-0.0058859740383923]],[[0.062105096876621,0.0028270736802369,-0.036841195076704],[-0.014855246990919,-0.0019867504015565,0.034302350133657],[0.03967447206378,-0.039537739008665,0.016169991344213]],[[0.05247300863266,-0.045469850301743,-0.074871838092804],[0.032461494207382,-0.025952275842428,0.00014719231694471],[0.047976598143578,0.0033031178172678,-0.009037546813488]],[[0.012758302502334,0.0098208375275135,-0.030369641259313],[-0.050437092781067,0.028226483613253,-0.041105333715677],[-0.0068986695259809,0.033730793744326,-0.079023212194443]],[[0.0098368683829904,-0.06712993979454,-0.016631437465549],[-0.0055601983331144,0.0048059592954814,0.0024754500482231],[0.03643237426877,-0.012434374541044,-0.050217870622873]],[[0.038176476955414,0.0078350882977247,-0.041062127798796],[-0.03981551527977,-0.0054887165315449,0.058159206062555],[0.046763528138399,-0.023098159581423,0.0010680158156902]],[[-0.021972380578518,-0.0033020819537342,0.034960128366947],[0.036385890096426,0.015683500096202,-0.010591194033623],[0.022231802344322,0.037205874919891,0.017361899837852]],[[-0.044903606176376,-0.026008008047938,-0.024202037602663],[-0.014117072336376,0.019378148019314,0.017538340762258],[0.058406215161085,0.007085558027029,0.11537531763315]],[[-0.0017334744334221,0.081515997648239,-0.027236564084888],[-0.0059154513292015,0.0081320656463504,0.022291285917163],[0.10274356603622,-0.0038446534890682,0.0016274040099233]],[[-0.055208671838045,0.0023350375704467,-0.032302133738995],[0.0078614540398121,-0.038336519151926,-0.011341058649123],[0.0082296682521701,0.060362804681063,0.029859524220228]],[[0.083803921937943,-0.057153835892677,-0.043722674250603],[0.034838058054447,0.0086947549134493,0.1081850156188],[0.023224804550409,-0.053447403013706,-0.019260384142399]],[[-0.069713607430458,0.054705150425434,0.015781419351697],[0.0073153227567673,0.11394672095776,0.01117835752666],[0.035324893891811,0.017082767561078,-0.046388905495405]],[[0.030701924115419,-0.01949330419302,0.072739496827126],[-0.046191535890102,-0.034953262656927,0.0098164267838001],[-0.026390658691525,-0.006318754516542,0.04457613825798]],[[0.069425381720066,0.0069749867543578,0.025576658546925],[0.065494827926159,0.086028806865215,0.063986957073212],[0.029110752046108,-0.054423857480288,-0.0034142048098147]],[[0.020564833655953,-0.025564171373844,-0.020692953839898],[0.051984865218401,-0.050871413201094,0.028343698009849],[0.001253682654351,0.099157072603703,0.015204211696982]],[[-0.066695690155029,-0.018895605579019,-0.0019166615093127],[-0.032611910253763,-0.065836206078529,0.01426000893116],[-0.021778473630548,0.0052342317067087,-0.016479140147567]],[[-0.017337745055556,0.018082588911057,0.029138136655092],[0.021257216110826,-0.005361545830965,0.0021879526320845],[0.0075854663737118,0.014154748059809,0.0029950875323266]],[[-0.013163715600967,0.1059144064784,0.026675248518586],[-0.076427094638348,0.0029466759879142,0.023258047178388],[-0.0017149748746306,0.061956495046616,0.038979582488537]],[[-0.062352605164051,-0.0050246668979526,-0.031363926827908],[0.041492994874716,0.030208135023713,-0.02199536934495],[-0.041820276528597,-0.011256779544055,0.0077686104923487]],[[-0.018560454249382,-0.014906566590071,-0.00085477129323408],[0.0051889331080019,0.017950810492039,-0.013427457772195],[-0.036531340330839,0.031329423189163,0.01684856787324]],[[0.002145780948922,0.024300899356604,0.036286376416683],[0.017808115109801,-0.016418976709247,0.014004518277943],[0.028261644765735,0.033675719052553,-0.042129173874855]],[[0.017191113904119,-0.0046599232591689,-0.032697774469852],[-0.012451713904738,-0.04679349437356,0.0493871755898],[0.050755068659782,0.090639524161816,-0.042856823652983]],[[-0.055411551147699,0.018689358606935,-0.0053689177148044],[0.051421444863081,-0.030179454013705,0.030735420063138],[-0.027424780651927,-0.011555238626897,0.0099229216575623]],[[-0.021591218188405,-0.018450874835253,0.083743318915367],[0.036594279110432,-0.015177987515926,0.055144477635622],[-0.072123818099499,-0.016786592081189,-0.061811253428459]],[[0.072275936603546,-0.0032563779968768,0.029236499220133],[0.028458481654525,-0.012642752379179,0.025887753814459],[0.01034698355943,0.028083572164178,0.034079059958458]],[[-0.03162507340312,0.056579913944006,0.02025181800127],[-0.050057046115398,-0.0028982132207602,-0.017774233594537],[0.019887637346983,-0.014655701816082,0.061030011624098]],[[-0.08333308249712,-0.010599416680634,0.091055989265442],[0.09374263882637,0.066336505115032,0.085054650902748],[-0.0084817931056023,0.079894803464413,-0.067826889455318]],[[-0.014238686300814,-0.0028745085000992,0.021364577114582],[0.036249078810215,-0.023272721096873,0.03725278750062],[0.015471651218832,-0.024445183575153,0.011515307240188]],[[0.078221745789051,-0.043515607714653,0.031796649098396],[0.057901650667191,0.067746065557003,0.011857745237648],[0.022673975676298,-0.0081855459138751,0.034234795719385]],[[-0.026639871299267,-0.032755859196186,-0.029015060514212],[-0.031936373561621,-0.018386669456959,-0.024931840598583],[-0.010124295949936,0.0072083245031536,-0.016978088766336]],[[0.053134016692638,-0.0067132408730686,0.0034252554178238],[-0.028900034725666,0.019035277888179,0.016145771369338],[0.024873062968254,-0.001924759359099,0.039407011121511]],[[0.025163654237986,0.028319660574198,-0.048636451363564],[0.02629816159606,-0.0038063675165176,0.035480305552483],[-0.001332959975116,0.0016278312541544,0.045578144490719]],[[-0.018201241269708,0.004153030924499,-0.010288109071553],[-0.013479251414537,0.13830432295799,-0.015840211883187],[-0.039111141115427,-0.10542039573193,-0.014966041781008]],[[-0.017445489764214,-0.031812224537134,-0.017799083143473],[0.017868302762508,-0.099057234823704,-0.08684153854847],[-0.050522316247225,0.13438552618027,-0.024852246046066]],[[-0.054162561893463,-0.022303126752377,0.027474934235215],[-0.025420427322388,-0.078310951590538,0.04196235165],[0.006389984395355,-0.02185014821589,0.065420880913734]],[[-0.040385168045759,-0.033295270055532,0.041661586612463],[0.078287377953529,-0.031475633382797,0.011471642181277],[-0.067912399768829,-0.013925392180681,-0.030690796673298]],[[-0.084320023655891,0.039598952978849,-0.0028109650593251],[-0.045870617032051,-0.032882027328014,0.056905828416348],[-0.025565294548869,-0.021660357713699,0.056568946689367]],[[0.0081077972427011,0.0012678197817877,-0.047239270061255],[0.012992531061172,-0.0053544384427369,-0.0084363911300898],[-0.078733615577221,-0.027515856549144,-0.014329232275486]],[[0.020754162222147,-0.063579112291336,0.017223166301847],[-0.017953177914023,-0.0032448412384838,-0.035503793507814],[-0.0065445452928543,0.038120277225971,-0.035553935915232]],[[0.039921659976244,-0.046894952654839,-0.067791052162647],[0.033838421106339,-0.075907111167908,0.018357368186116],[0.057238921523094,-0.081900291144848,0.0096952840685844]],[[0.0059324754402041,0.035296101123095,-0.03101659938693],[0.012767829932272,0.0028538324404508,-0.049591973423958],[-0.079857990145683,0.043149657547474,-0.054307233542204]],[[-0.04490764066577,0.030435079708695,0.00014264629862737],[0.008290221914649,-0.0019759165588766,-0.012927485629916],[0.016620250418782,-0.030644381418824,-0.042517360299826]],[[0.016203731298447,-0.093907900154591,0.050290446728468],[0.014667036943138,-0.010184173472226,0.059402514249086],[0.022210562601686,0.0241027045995,-0.034987423568964]],[[-0.043492633849382,-0.033788647502661,0.063603669404984],[0.08465101569891,-0.032623443752527,0.051918990910053],[-0.021851340308785,0.053550638258457,0.03689706325531]],[[-0.010051271878183,0.03221783041954,0.08195336908102],[0.029198450967669,0.012125318869948,0.056403893977404],[0.043467164039612,0.082013055682182,-0.012029192410409]],[[-0.00053153891349211,0.0070233065634966,0.0068597574718297],[0.046744495630264,-0.094185516238213,0.021566409617662],[-0.011840247549117,-0.011698309332132,-0.095712728798389]],[[-0.014159151352942,0.034661121666431,-0.0081247854977846],[0.025732858106494,-0.042594365775585,-0.05085426568985],[-0.0065546068362892,0.052771486341953,0.035609610378742]],[[0.029064515605569,0.0077659944072366,-0.016849586740136],[-0.029793169349432,0.068071916699409,0.064063459634781],[0.056713487952948,-0.0023977716919035,-0.0633744597435]],[[0.018028073012829,0.04516888037324,0.027220468968153],[0.016519879922271,-0.091668158769608,-0.015197860077024],[-0.056385096162558,0.010764547623694,0.050866674631834]],[[0.010817176662385,0.042206007987261,0.038719046860933],[0.0059670386835933,-0.010372652672231,0.027756802737713],[-0.022019501775503,0.012675101868808,0.022185066714883]],[[-0.039882656186819,0.033144496381283,-0.044576849788427],[0.043707359582186,-0.020569413900375,0.022527080029249],[-0.042646192014217,0.032757606357336,-0.014353836886585]],[[-0.029256800189614,-0.082425966858864,-0.003664537332952],[0.045616619288921,-0.034644734114408,0.057038903236389],[-0.0017488087760285,0.031524129211903,0.044075798243284]],[[-0.026533722877502,0.014394728466868,0.018397584557533],[0.046900134533644,-0.022657189518213,-0.10471636801958],[0.032455872744322,0.056541573256254,-0.076213993132114]],[[-0.019904442131519,-0.0006328786839731,0.0094394981861115],[-0.023869952186942,0.024564623832703,-0.018290802836418],[-0.018470335751772,0.075179174542427,0.021679604426026]],[[0.070973433554173,-0.062797509133816,0.010342743247747],[0.068160220980644,-0.002425993559882,-0.03567174449563],[0.035820063203573,0.023276042193174,-0.010660411790013]],[[0.034161973744631,0.1125393435359,-0.042918302118778],[-0.013770862482488,0.0036438477691263,0.032059922814369],[-0.014802295714617,0.023393776267767,0.055368863046169]],[[0.0050737354904413,-0.00027608723030426,0.040884025394917],[0.017332643270493,-0.038423985242844,-0.062435481697321],[0.030643155798316,0.0024126274511218,0.0094278659671545]],[[-0.050298027694225,-0.011318020522594,0.070586994290352],[0.00065516901668161,0.033242825418711,-0.021340576931834],[-0.083042353391647,-0.029260473325849,0.002462507924065]],[[0.057921122759581,-0.080938391387463,0.044922512024641],[0.071562930941582,0.0029331664554775,-0.032377891242504],[-0.033261846750975,-0.02982503734529,0.00018570097745396]],[[-0.029363963752985,-0.016964545473456,-0.0059313303790987],[-0.058463823050261,0.036987502127886,0.00030303804669529],[0.012983209453523,-0.049409914761782,-0.044072970747948]],[[-0.058439653366804,-0.0039773052558303,-0.0011587402550504],[-0.042470909655094,0.0075301812030375,0.03073957003653],[0.017864229157567,0.022624420002103,-0.0662826821208]],[[-0.029620533809066,0.041946969926357,-0.013445130549371],[-0.0023319339379668,0.008343062363565,-0.030727537348866],[-0.0061810617335141,0.020114112645388,0.071953259408474]],[[0.016754234209657,0.051241114735603,-0.017763806506991],[-0.0055040707811713,-0.034993954002857,-0.013911982066929],[-0.0063025788404047,-0.017613673582673,-0.0042425682768226]],[[0.063908524811268,0.080281905829906,-0.068966448307037],[-0.0043787388131022,-0.079197555780411,-0.024857532233],[-0.013745953328907,-0.074912033975124,0.014423231594265]],[[0.047548476606607,0.026910100132227,0.01416721381247],[0.043343283236027,-0.047649014741182,-0.048988543450832],[0.058658927679062,0.0055962852202356,-0.048912592232227]],[[0.0012868213234469,0.097276590764523,0.011864011175931],[-0.019458044320345,0.0003197209443897,-0.071021012961864],[-0.015662355348468,-0.047215275466442,-0.027727674692869]],[[-0.032904006540775,-0.0077445493079722,0.011654413305223],[-0.044295154511929,-0.039189375936985,-0.010332417674363],[0.041045669466257,-0.033100094646215,0.012301857583225]]],[[[-0.054758068174124,-0.028652215376496,-0.091143250465393],[0.12977872788906,-0.0904256477952,-0.056587595492601],[-0.047325205057859,0.012105725705624,-0.021134117618203]],[[-0.1096094250679,0.04188996553421,-0.075831696391106],[0.024119360372424,0.21602733433247,0.15218310058117],[-0.044840849936008,-0.14502501487732,-0.13763895630836]],[[0.069224402308464,-0.036917068064213,0.014657270163298],[0.067742496728897,-0.062948830425739,-0.024311080574989],[-0.0025201002135873,0.084738507866859,0.032914359122515]],[[-0.10073898732662,0.07229994982481,0.2083997130394],[0.01926513761282,-0.039502527564764,-0.070289753377438],[-0.011508164927363,-0.12867037951946,0.10986741632223]],[[0.072368577122688,-0.111811645329,-0.090567298233509],[0.056874912232161,-0.027594923973083,0.046875458210707],[0.0058487914502621,0.1709169447422,0.026481706649065]],[[-0.077078551054001,0.0074201449751854,-0.047880902886391],[-0.004552491940558,-0.0082671856507659,-0.045324079692364],[-0.1170035675168,-0.024571891874075,-0.15811470150948]],[[0.024689702317119,-0.0062654279172421,-0.00089248904259875],[0.015288106165826,0.030000500380993,0.0094303106889129],[-0.072041496634483,-0.017361322417855,0.064214162528515]],[[-0.019789464771748,0.057721953839064,0.035439610481262],[-0.040912508964539,0.067381411790848,0.037293441593647],[-0.048998679965734,0.013491624034941,-0.020964406430721]],[[0.037776049226522,0.027837727218866,-0.09597509354353],[0.063719913363457,0.0049567613750696,0.13253284990788],[-0.038360498845577,-0.13020075857639,0.0078043071553111]],[[0.057664517313242,-0.0055135553702712,-0.075872294604778],[-0.037999339401722,0.14594376087189,0.036731574684381],[0.021418690681458,-0.011498990468681,0.010256785899401]],[[0.024751016870141,0.080287516117096,0.060673985630274],[-0.0051401681266725,0.026078518480062,-0.048972558230162],[-0.047812692821026,-0.075791619718075,-0.0093779023736715]],[[-0.056572750210762,0.016721216961741,0.0078157735988498],[0.079673588275909,-0.088216550648212,-0.050650902092457],[0.094375029206276,-0.012588554061949,0.03100330196321]],[[0.022586798295379,-0.20624688267708,-0.086821608245373],[0.061265770345926,0.3016175031662,-0.069520473480225],[-0.030889259651303,-0.060051802545786,-0.020798856392503]],[[-0.025676878169179,0.025484783574939,0.16017816960812],[-0.018406292423606,0.071537546813488,0.0032489390578121],[0.091891370713711,-0.14436963200569,-0.0087295901030302]],[[-0.0014623928582296,-0.093226157128811,0.20063002407551],[-0.068642914295197,-0.039875023066998,-0.055370304733515],[-0.034959968179464,-0.060186482965946,0.049266785383224]],[[0.12035266309977,0.16385173797607,0.045419704169035],[-0.11138321459293,-0.020432494580746,-0.20674377679825],[0.017473891377449,0.061770096421242,0.20681814849377]],[[-0.0097030904144049,-0.07568833976984,0.07500497251749],[0.032080218195915,0.088730320334435,-0.04455566778779],[-0.012354633770883,-0.033908180892467,0.026164812967181]],[[0.049764133989811,-0.087248928844929,-0.0082670813426375],[-0.042245130985975,-0.10627688467503,0.078853450715542],[0.028972752392292,0.02427533455193,0.03779724240303]],[[-0.031931504607201,0.0011282253544778,0.071981340646744],[-0.026293016970158,-0.083037048578262,0.042420536279678],[0.031776316463947,-0.0079132420942187,-0.13125646114349]],[[-0.068723052740097,-0.029138322919607,0.20882777869701],[-0.016166508197784,-0.012064843438566,-0.11074161529541],[0.040422357618809,0.014913706108928,0.11690683662891]],[[-0.037167593836784,0.069447189569473,0.11020356416702],[-0.10150569677353,-0.01439855620265,-0.088543206453323],[-0.061246618628502,-0.032278727740049,0.089371718466282]],[[0.10477788746357,-0.053127095103264,-0.2095445394516],[0.0092100286856294,0.031917449086905,0.17187216877937],[0.015962891280651,0.0088173486292362,-0.054582424461842]],[[0.0044991760514677,-0.017397349700332,0.027739325538278],[0.054635435342789,0.039626836776733,0.0011546441819519],[-0.031890850514174,0.13073669373989,-0.116371139884]],[[-0.0098711056634784,-0.023849688470364,-0.032894611358643],[-0.016422387212515,0.045730795711279,0.035645492374897],[0.092289097607136,0.067256413400173,-0.092098094522953]],[[-0.059309985488653,0.047125220298767,0.25032940506935],[0.17658565938473,-0.020085815340281,-0.045747511088848],[0.02628537453711,0.14437498152256,0.017159670591354]],[[0.078987762331963,-0.026341577991843,-0.0011709816753864],[0.13462848961353,-0.072164006531239,0.035033006221056],[0.092988193035126,0.034350529313087,-0.073478393256664]],[[-0.063592545688152,-0.092055328190327,-0.065671063959599],[-0.049337062984705,0.032641477882862,-0.037772875279188],[-0.014822730794549,-0.058107871562243,-0.0048189824447036]],[[0.20261813700199,-0.076009161770344,-0.022217389196157],[-0.0048896027728915,0.18343317508698,0.14608900249004],[-0.066741719841957,0.067644841969013,-0.16601625084877]],[[-0.022608928382397,0.063675470650196,-0.005509618204087],[-0.091088235378265,-0.099029153585434,-0.020652955397964],[-0.042538989335299,-0.095733948051929,-0.015430617146194]],[[-0.039158277213573,-0.11792076379061,-0.044161591678858],[0.16178940236568,0.1832242757082,-0.10085614025593],[0.084813386201859,0.051760457456112,0.035339780151844]],[[0.027343787252903,-0.062959983944893,-0.10900188237429],[-0.075149536132812,0.16090996563435,-0.083371266722679],[0.030435472726822,0.010700470767915,-0.10726341605186]],[[0.11991436779499,0.0071810358203948,0.030234189704061],[-0.0065313214436173,-0.032993230968714,-0.077525295317173],[-0.020043946802616,0.0011455247877166,0.10486105084419]],[[-0.038768354803324,-0.076059751212597,-0.0077060512267053],[0.059982627630234,0.075883761048317,-0.24813210964203],[0.033502578735352,0.04320003464818,0.067523658275604]],[[0.036268923431635,-0.071925587952137,0.13231931626797],[0.020599255338311,0.017672931775451,-0.00070407427847385],[0.066362395882607,-0.013907387852669,-0.078754492104053]],[[0.096243157982826,-0.039406757801771,0.082969017326832],[-0.024274908006191,0.001452129217796,0.099342159926891],[-0.0079922312870622,0.06531248986721,0.074030190706253]],[[-0.037702951580286,-0.10339744389057,0.065735004842281],[-0.12840150296688,0.064180880784988,0.15336695313454],[-0.016073599457741,0.024137105792761,-0.14518970251083]],[[0.011177496053278,-0.011105491779745,-0.0089157465845346],[-0.036571554839611,0.044898327440023,-0.063878290355206],[6.1999671743251e-05,-0.065999880433083,0.015020775608718]],[[0.044634148478508,-0.055634267628193,0.040179993957281],[-0.036489561200142,0.018684677779675,-0.031496625393629],[0.11339472234249,0.033241156488657,0.12428303807974]],[[0.052611842751503,-0.042808067053556,0.014789205044508],[-0.012552096508443,0.10247495025396,-0.0025567659176886],[0.017251001670957,0.094181403517723,0.06125696003437]],[[0.030383380129933,-0.04223695397377,0.045689240098],[0.060234326869249,-0.035699628293514,-0.022727768868208],[-0.023149671033025,-0.14770495891571,0.056224182248116]],[[0.024196587502956,0.12075025588274,0.033479921519756],[0.092332519590855,0.048152025789022,-0.10792910307646],[-0.14625054597855,0.0046538230963051,0.0062206583097577]],[[0.055388554930687,0.0007528256974183,0.010849828831851],[0.032232228666544,0.044643737375736,-0.064030565321445],[-0.0077490294352174,0.0066206697374582,0.0070965839549899]],[[-0.11429991573095,0.10051693022251,-0.016073398292065],[-0.074124611914158,0.0023696566931903,-0.1369821280241],[-0.025087457150221,-0.065209358930588,0.22652195394039]],[[-0.022544410079718,0.01551344897598,-0.033351812511683],[-0.0059962957166135,-0.010249952785671,-0.0079716490581632],[-0.036864027380943,0.030884683132172,-0.017235228791833]],[[0.024329047650099,0.040866233408451,-0.056288484483957],[-0.12117771804333,0.12494943290949,0.076224856078625],[0.12422064691782,-0.13257911801338,-0.15040175616741]],[[-0.041485212743282,0.063983932137489,-0.033341716974974],[-0.037926815450191,0.012787917628884,-0.026440259069204],[0.051924351602793,-0.08205908536911,0.038832761347294]],[[-0.034966692328453,-0.041558727622032,-0.025826511904597],[-0.068346969783306,-0.018895089626312,-0.0011589756468311],[-0.095105372369289,0.038166373968124,-0.076040349900723]],[[-0.049924813210964,0.050573587417603,-0.10930992662907],[0.032472118735313,0.010421738959849,0.10557690262794],[-0.041601903736591,0.075900167226791,0.074080504477024]],[[-0.049600422382355,-0.078375779092312,-0.013633555732667],[0.14711710810661,-0.036883018910885,-0.093740612268448],[0.002353117801249,0.0031675421632826,-0.024847896769643]],[[0.011865786276758,0.0011719826143235,0.15910747647285],[-0.088037669658661,0.027854315936565,-0.015095191076398],[0.10273525118828,-0.073413655161858,0.076825127005577]],[[0.0948256701231,-0.0069857519119978,0.026046991348267],[0.037763308733702,0.1195774525404,-0.089566446840763],[-0.017053667455912,0.027755128219724,-0.050549082458019]],[[-0.034103456884623,-0.01481987722218,0.16394352912903],[0.079860918223858,-0.035439625382423,-0.14678752422333],[-0.065551191568375,-0.042406488209963,-0.062578119337559]],[[-0.031348582357168,-0.046705882996321,0.095273964107037],[-0.023995829746127,0.066077709197998,-0.080597460269928],[-0.038626227527857,-0.059771712869406,0.020182821899652]],[[-0.052502669394016,0.018382662907243,-0.00022547866683453],[0.077754564583302,0.12698802351952,0.097651787102222],[0.018053060397506,-0.0033459747210145,-0.0087245656177402]],[[-0.011191559955478,-0.062035590410233,0.10942324995995],[-0.027463482692838,-0.040758606046438,0.10892632603645],[0.035124782472849,0.013568124733865,-0.022582413628697]],[[0.023853745311499,-0.01468010712415,0.15723216533661],[0.0079560186713934,0.059443209320307,0.033316031098366],[0.03254134953022,-0.033953465521336,-0.1348407715559]],[[-0.073913440108299,-0.023907417431474,-0.0017088529421017],[0.16094847023487,0.15927423536777,0.078593358397484],[0.094724848866463,0.032126594334841,0.14790385961533]],[[0.0064423503354192,0.081320814788342,0.18484742939472],[-0.027584156021476,-0.074658617377281,0.037766151130199],[-0.0039569321088493,0.0086415782570839,-0.083895109593868]],[[-0.083180218935013,-0.030597729608417,-0.11587806046009],[-0.087482959032059,0.19200913608074,-0.117441624403],[-0.04192004352808,-0.03363499045372,0.013587730005383]],[[0.083923891186714,0.023883886635303,-0.00020279429736547],[-0.048476319760084,-0.06219919025898,-0.012428964488208],[0.021479584276676,-0.054624065756798,-0.082855507731438]],[[-0.020986136049032,-0.064669914543629,-0.15211813151836],[-0.10742180794477,-0.039405275136232,-0.080793939530849],[0.034534186124802,-0.057084135711193,0.041616771370173]],[[-0.014191597700119,0.0053759422153234,-0.038426131010056],[0.0014889417216182,-0.046527579426765,0.060848198831081],[0.038497686386108,-0.071112923324108,0.070941872894764]],[[0.065078273415565,0.0048460904508829,-0.079338558018208],[0.049353148788214,-0.074026539921761,-0.071607433259487],[0.040537104010582,-0.074345543980598,0.14233349263668]],[[0.035587213933468,0.02920144982636,0.011298838071525],[0.045816943049431,0.03488477692008,0.026845892891288],[0.043941408395767,0.073226623237133,-0.010503519326448]],[[-0.060582455247641,-0.055507630109787,-0.1308940500021],[-0.11415326595306,0.11933840066195,0.089440613985062],[0.075669914484024,0.054753534495831,-0.027732541784644]],[[0.047824576497078,-0.040127068758011,-0.025824783369899],[-0.041883245110512,0.034791529178619,-0.011071810498834],[-0.055659614503384,0.1028166115284,-0.033631455153227]],[[-0.092185825109482,-0.09185004979372,0.10124135017395],[-0.081128656864166,0.030015714466572,-0.083055146038532],[-0.15130335092545,-0.032819453626871,0.050913583487272]],[[-0.094631880521774,0.10635936260223,0.04801107198],[-0.026074295863509,-0.0018169640097767,-0.088244646787643],[-0.010875218547881,0.02576501108706,0.015892717987299]],[[0.0739950761199,0.019154762849212,-0.0040716836228967],[0.062384888529778,0.0092607149854302,0.067259207367897],[-0.04328728467226,-0.0035043433308601,-0.014913332648575]],[[0.0022354489192367,0.15941263735294,-0.099572911858559],[0.057574424892664,0.021307850256562,0.046604719012976],[-0.045511197298765,0.11488503962755,-0.020567430183291]],[[0.071652770042419,-0.12526075541973,0.0042048874311149],[-0.0051769698038697,0.088715322315693,0.01097458973527],[-0.051290288567543,-0.15701155364513,0.083280347287655]],[[-0.05247563123703,0.034307174384594,-0.12507225573063],[-0.0066461418755352,-0.01887652091682,-0.078254036605358],[-0.11493914574385,-0.0079724686220288,-0.065935246646404]],[[-0.031410697847605,-0.030162058770657,-0.026397472247481],[-0.0038072594907135,0.03703548759222,-0.035674054175615],[-0.1091071665287,-0.11516553908587,0.048172831535339]],[[0.067199945449829,-0.085570059716702,0.14229615032673],[-0.0041663241572678,-0.12965597212315,0.027124762535095],[0.035326670855284,-0.091311387717724,0.032326146960258]],[[0.039987374097109,0.08013554662466,0.042746361345053],[0.054502613842487,-0.091861926019192,-0.09022269397974],[-0.094558447599411,-0.12266006320715,0.059131048619747]],[[0.039882410317659,0.050974678248167,0.039966244250536],[-0.023369751870632,-0.014824160374701,-0.082333460450172],[-0.08202300965786,-0.080110438168049,0.026300329715014]],[[-0.038197793066502,-0.020041264593601,0.10059498250484],[-0.12053324282169,0.027119079604745,-0.085601910948753],[-0.14086255431175,-0.10597190260887,-0.11610619723797]],[[-0.034717239439487,0.064820028841496,-0.095045894384384],[0.014040666632354,-0.13418874144554,0.083748511970043],[-0.098970547318459,0.049917537719011,-0.086287617683411]],[[0.020100360736251,0.043063707649708,-0.057491809129715],[0.039842143654823,-0.13340418040752,-0.055446337908506],[-0.052880953997374,-0.033898141235113,0.04365473613143]],[[-0.059129308909178,-0.10605146735907,0.12011752277613],[0.083720915019512,-0.0048945182934403,0.13045780360699],[0.025123458355665,-0.093212835490704,-0.15118554234505]],[[-0.018206253647804,-0.033567365258932,-0.031574986875057],[0.065587125718594,-0.093793757259846,0.0083839474245906],[-0.02070152387023,-0.09379930049181,-0.06781480461359]],[[-0.045407440513372,-0.0068389601074159,-0.045773163437843],[0.14162655174732,0.041246917098761,-0.069570481777191],[-0.05802408233285,0.017855072394013,-0.016365371644497]],[[-0.0041380291804671,-0.10107728838921,0.074379578232765],[-0.064160369336605,0.096265628933907,0.052181303501129],[0.013777368701994,0.19742819666862,0.039090920239687]],[[-0.020611511543393,-0.028260705992579,0.17346478998661],[-0.025192564353347,-0.024624926969409,0.063667386770248],[0.05456442758441,-0.10449732095003,0.066803820431232]],[[-0.039729066193104,-0.022791316732764,-0.10814179480076],[-0.042194936424494,-0.13334782421589,0.13601145148277],[0.056270830333233,0.051227163523436,-0.13481904566288]],[[-0.014018155634403,0.075472623109818,0.068561285734177],[0.026072880253196,-0.090894244611263,0.0078006321564317],[-0.088974587619305,-0.005140284076333,-0.019783776253462]],[[0.050317995250225,-0.043589405715466,0.08695412427187],[0.067718476057053,0.11995502561331,0.022677823901176],[0.090101107954979,0.035776656121016,0.053821783512831]],[[-0.0010045288363472,-0.14605222642422,-0.042171895503998],[-0.12185595184565,0.017888147383928,0.024064786732197],[0.11923898756504,-0.046969804912806,0.04319990426302]],[[0.032079115509987,0.095234364271164,0.092396579682827],[-0.057211458683014,-0.009919079951942,0.016977075487375],[0.096385627985001,-0.15281191468239,-0.030660768970847]],[[0.046984035521746,-0.010432437993586,0.036239255219698],[-0.031356949359179,-0.099349193274975,-0.029288241639733],[0.010900029912591,-0.061802644282579,-0.053614441305399]],[[0.0016583994729444,-0.15028962492943,-0.079462416470051],[-0.13385626673698,0.032078377902508,-0.125150218606],[0.18816332519054,0.05921820178628,0.035481166094542]],[[-0.026615602895617,0.077198065817356,0.011069473810494],[-0.10134415328503,-0.00023927350412123,-0.029308322817087],[-0.065713159739971,0.031705740839243,-0.0610924474895]],[[0.003745055058971,-0.013362902216613,0.10584509372711],[-0.057864636182785,0.031320348381996,0.011337830685079],[0.025406109169126,0.096934236586094,-0.0091028735041618]],[[0.021201141178608,0.026394682005048,-0.027891764417291],[-0.07088877260685,0.021610284224153,-0.039838444441557],[-0.0046833134256303,-0.032331343740225,-0.034924779087305]],[[0.01305877789855,0.038871124386787,0.033743869513273],[0.032148685306311,-0.043556679040194,0.033230032771826],[0.058674365282059,-0.039649527519941,-0.10801011323929]],[[0.10991137474775,-0.10297565162182,0.22666515409946],[0.0068593951873481,-0.018547786399722,-0.063273809850216],[0.11207726597786,-0.040416494011879,0.055027026683092]],[[-0.004703791346401,-0.035319931805134,0.058376811444759],[0.058017536997795,0.15427951514721,-0.19664913415909],[-0.12133873999119,0.049354627728462,0.1452956199646]],[[0.059640724211931,0.056825984269381,0.085729368031025],[-0.0062763243913651,0.005165665410459,0.047534603625536],[0.0028517851606011,0.04393232986331,-0.054774530231953]],[[-0.002182490658015,0.048006813973188,-0.087204828858376],[-0.0065636234357953,-0.015309552662075,0.097439669072628],[0.043329782783985,0.030259683728218,0.012287269346416]],[[-0.010643099434674,-0.011542568914592,-0.051374055445194],[0.14170694351196,0.021490508690476,-0.061276320368052],[0.0035100614186376,0.19827021658421,0.051295042037964]],[[0.019626464694738,-0.0019906125962734,0.0012975165154785],[0.029497511684895,-0.028985977172852,2.3303018679144e-05],[-0.055992141366005,0.012737863697112,-0.040192477405071]],[[0.013126545585692,-0.055882405489683,-0.13248090445995],[-0.0012590056285262,-0.04857449606061,-0.052442353218794],[-0.029282588511705,0.032238088548183,-0.027226705104113]],[[0.011368723586202,-0.056507557630539,-0.031246289610863],[0.094447143375874,-0.10732369124889,0.25225308537483],[-0.053958460688591,-0.024493679404259,-0.037031903862953]],[[0.15889593958855,0.060042850673199,0.0082052648067474],[-0.0024537101853639,-0.039965413510799,0.1024481728673],[-0.0060982778668404,0.032611031085253,0.034458670765162]],[[0.010778562165797,0.051565088331699,0.049221578985453],[0.013610339723527,-0.0077561386860907,-0.022604355588555],[0.044372335076332,0.065112635493279,-0.05046196654439]],[[-0.095934733748436,-0.016907326877117,0.0065727615728974],[-0.030208311975002,0.12682762742043,0.088589377701283],[-0.026923313736916,-0.11880175024271,0.014399223029613]],[[0.059501010924578,-0.034113589674234,0.12307913601398],[-0.044079449027777,-0.054625771939754,0.045719426125288],[-0.045035198330879,0.048259317874908,-0.0032617312390357]],[[0.061813071370125,0.024245264008641,-0.07424233853817],[0.078443348407745,-0.049471378326416,-0.15855953097343],[-0.093232408165932,0.039892483502626,0.23555113375187]],[[-0.059892732650042,0.0078458590433002,0.065131276845932],[-0.10271703451872,-0.015554039739072,0.10643874853849],[-0.054543603211641,0.0054983734153211,-0.006582903675735]],[[-0.03655843809247,-0.015107565559447,0.010071512311697],[0.035408016294241,0.04345104470849,0.055716641247272],[-0.010581828653812,-0.0030922268051654,-0.077851578593254]],[[-0.012451072223485,0.040972530841827,0.10041877627373],[-0.024923479184508,-0.030749652534723,0.05260544270277],[-0.020735085010529,-0.08072891831398,-0.030115505680442]],[[0.0030187594238669,-0.078180611133575,-0.016272712498903],[0.0085659120231867,0.00052919058362022,0.16095077991486],[0.065679155290127,-0.0069031617604196,0.0024382444098592]],[[-0.012135492637753,0.051779039204121,0.020820720121264],[0.14345194399357,0.026596343144774,-0.12362799048424],[0.02688505128026,0.033482763916254,-0.014800518751144]],[[0.035975445061922,-0.028488231822848,-0.042742513120174],[0.022641140967607,-0.053753092885017,0.10658313333988],[-0.021154042333364,0.099891595542431,0.0007787654758431]],[[0.1337808817625,-0.038388002663851,-0.054106622934341],[0.073595516383648,0.048020474612713,-0.098151490092278],[-0.067836374044418,0.041006676852703,0.005102688446641]],[[-0.068891748785973,-0.087911047041416,0.07760014384985],[0.075532227754593,0.016517454758286,-0.067539475858212],[0.031362149864435,-0.064413540065289,-0.032685548067093]],[[0.010548164136708,0.01343200635165,0.082913145422935],[-0.094280511140823,0.051135666668415,0.033147372305393],[0.026449665427208,-0.13738162815571,-0.038792416453362]],[[-0.019559102132916,-0.0058326027356088,-0.036895975470543],[0.015382745303214,-0.042693145573139,0.030703976750374],[-0.0086467610672116,-0.002017080783844,0.043405938893557]],[[-0.068394064903259,0.0016603362746537,0.040342755615711],[-0.11033522337675,-0.023541275411844,0.099469751119614],[-0.043924670666456,-0.0011481216643006,0.018629886209965]],[[0.087217323482037,0.019449550658464,-0.16995023190975],[0.054657716304064,0.17489473521709,0.054958626627922],[-0.015547337941825,0.060127306729555,0.07338485121727]],[[-0.20625787973404,-0.19434784352779,-0.05970586836338],[0.095868021249771,-0.012215950526297,-0.081429228186607],[0.034955948591232,0.067304216325283,-0.0015819255495444]],[[-0.01322319265455,-0.0053006457164884,-0.024212772026658],[0.010321543551981,0.026303986087441,-0.084063827991486],[-0.042582154273987,-0.12888304889202,-0.054915983229876]],[[-0.061076950281858,-0.075908906757832,-0.13070243597031],[0.012595936655998,0.080653473734856,-0.1064802929759],[-0.043390039354563,0.00068777531851083,-0.061920832842588]],[[-0.049116984009743,0.011476038955152,-0.10468654334545],[0.071607060730457,0.24846261739731,-0.0063286875374615],[0.028810393065214,0.047710444778204,-0.067698903381824]],[[-0.063692085444927,-0.031163955107331,-0.16241693496704],[-0.059911675751209,-0.0082657597959042,-0.0045553501695395],[0.020505161955953,0.064141951501369,0.11690176278353]],[[-0.064077712595463,0.016712198033929,-0.0089453142136335],[-0.052864350378513,0.022715084254742,0.08790897578001],[-0.050124548375607,0.13432960212231,-0.029098242521286]],[[0.094824157655239,0.016510482877493,0.060695435851812],[0.11193990707397,-0.15114308893681,0.024153931066394],[0.085068970918655,0.022653330117464,0.031421724706888]],[[0.024423742666841,-0.20426213741302,-0.046304237097502],[0.046443741768599,0.01410539355129,0.26788601279259],[-0.015459697693586,0.1547224521637,-0.38580095767975]]],[[[0.071405068039894,-0.066209942102432,-0.0044453758746386],[-0.0076567316427827,0.013642022386193,0.024910865351558],[-0.058318290859461,0.027542155236006,0.0024473771918565]],[[-0.0070292372256517,0.012476528994739,0.11196599155664],[0.081705816090107,0.058510396629572,-0.010944063775241],[-0.019973879680037,-0.060707710683346,-0.072552971541882]],[[0.02716925740242,0.023528860881925,-0.041845254600048],[0.047533925622702,0.0639873072505,-0.021225726231933],[0.065010465681553,0.055916991084814,-0.037579096853733]],[[-0.076963059604168,-0.026551883667707,0.050751537084579],[-0.01265655644238,-0.074203297495842,0.051449235528708],[0.046894039958715,-0.0012964460765943,-0.081526666879654]],[[-0.016842951998115,0.0026076028589159,0.031222715973854],[0.034761235117912,0.014181484468281,-0.056642793118954],[-0.019908498972654,-0.10421393811703,0.029884791001678]],[[0.038815353065729,-0.0063711502589285,-0.010025491937995],[-0.0038687908090651,0.070866614580154,0.026345854625106],[0.011660640127957,0.045452691614628,0.02632724866271]],[[-0.01609230786562,-0.0061917500570416,0.035677950829268],[0.040895007550716,-0.028723472729325,0.0069308714009821],[0.015708286315203,-0.035816673189402,-0.068958200514317]],[[-0.036129958927631,-0.0072931852191687,-0.061198703944683],[-0.05518614500761,0.10141675174236,-0.0025191067252308],[-0.12761232256889,0.024204894900322,0.041996378451586]],[[-0.077664643526077,0.024826988577843,-0.00038238946581259],[-0.020667476579547,-0.061611775308847,0.008517149835825],[-0.02951412089169,0.0096038971096277,0.097178980708122]],[[-0.013454963453114,0.028346516191959,0.013868610374629],[0.0027046054601669,-0.040073499083519,-0.025913888588548],[-0.0077488329261541,0.012857699766755,0.026851458474994]],[[0.026257006451488,-0.038314867764711,0.062292344868183],[-0.016619026660919,-0.020772241055965,0.10461261868477],[-0.071210697293282,-0.13303308188915,-0.010063979774714]],[[-0.023914597928524,0.056371923536062,-0.10195147246122],[-0.049104046076536,0.08422577381134,-0.047080971300602],[-0.029220212250948,0.052276682108641,0.01393433380872]],[[0.019691610708833,-0.087178409099579,-0.00104113179259],[0.0053707100450993,-0.0055890581570566,0.011741740629077],[-0.023651856929064,-0.036547970026731,0.022036451846361]],[[0.040178041905165,0.0057308007963002,0.0314098931849],[-0.039503738284111,0.056749910116196,-0.1016636043787],[-0.025183958932757,-0.011772885918617,-0.092385731637478]],[[-0.065174445509911,0.023903876543045,0.12949480116367],[0.075817286968231,-0.069559819996357,-0.020886590704322],[-0.051283191889524,0.0072289942763746,-0.032329451292753]],[[0.035798635333776,-0.01099734287709,-0.048414617776871],[-0.019661005586386,-0.044459249824286,0.020263003185391],[0.039631303399801,-0.00099522690288723,-0.015824515372515]],[[-0.070464462041855,-0.015301568433642,0.10751784592867],[-0.097061567008495,-0.064314305782318,0.027883945032954],[-0.027386114001274,-0.043169651180506,-0.091154113411903]],[[-0.002849210286513,0.048329960554838,-0.11986416578293],[-0.0026194076053798,-0.029783301055431,0.027855338528752],[-0.10443276911974,-0.034531023353338,0.022707484662533]],[[0.019139803946018,-0.047331601381302,-0.039426736533642],[0.028788015246391,0.0076394244097173,-0.030327517539263],[-0.057006701827049,0.03606628626585,0.0081429993733764]],[[0.01490203756839,0.035394232720137,-0.04010246321559],[-0.0082403281703591,-0.048128843307495,0.0029752752743661],[0.021921699866652,-9.6129660960287e-05,-0.0020393012091517]],[[0.023658983409405,-0.084936112165451,0.021424220874906],[-0.0038331502582878,-0.037421982735395,0.023208629339933],[0.022580221295357,0.0034711782354861,-0.0247040130198]],[[0.025493087247014,0.019413271918893,-0.048254419118166],[0.040880046784878,0.047771815210581,-0.12137372046709],[0.010579374618828,0.025134677067399,0.025195525959134]],[[0.037209287285805,0.080243080854416,-0.093666240572929],[-0.11818035691977,-0.047842372208834,0.071712665259838],[5.1755854656221e-05,-0.020784920081496,-0.017911903560162]],[[-0.0055367350578308,-0.018579628318548,-0.022409936413169],[0.037815555930138,0.058784924447536,-0.025723611935973],[0.063833974301815,0.0052591394633055,-0.032647583633661]],[[-0.046169888228178,0.030859936028719,-0.13132308423519],[0.010747198015451,-0.034465555101633,0.023068467155099],[0.11053262650967,-0.15887609124184,-0.22526703774929]],[[-0.047545835375786,0.021980633959174,0.023554850369692],[0.036468416452408,-0.053491570055485,0.014940784312785],[-0.016767930239439,0.018679669126868,-0.03435492515564]],[[-0.021872462704778,-0.14201477169991,-0.078266195952892],[-0.012816581875086,-0.051279500126839,-0.030683267861605],[0.003725100075826,0.068746395409107,0.078346997499466]],[[0.073130615055561,-0.13596139848232,-0.0042573604732752],[0.013428227044642,-0.069763265550137,-0.16764184832573],[0.056590154767036,0.06084256619215,-0.09327432513237]],[[-0.036074448376894,-0.077776737511158,0.016807189211249],[0.075345776975155,-0.031326752156019,0.027303799986839],[0.078692317008972,-0.014737986028194,0.014452835544944]],[[-0.081098049879074,-0.027744431048632,0.075093679130077],[-0.021355489268899,0.056431401520967,0.058837182819843],[0.016103841364384,0.090932227671146,0.066053561866283]],[[0.0039822431281209,-0.052915625274181,-0.0041096708737314],[-0.049528200179338,0.031496614217758,0.094920761883259],[-0.020667677745223,0.011563474312425,-0.0052208388224244]],[[0.051343258470297,-0.098172783851624,0.079128623008728],[-0.011532183736563,-0.091306686401367,0.081122681498528],[0.020146066322923,-0.04074652120471,-0.014251386746764]],[[0.0052892304956913,-0.064528703689575,-0.0037788539193571],[0.034518361091614,-0.025700910016894,0.080641828477383],[0.087149515748024,0.012969072908163,0.013137704692781]],[[-0.070003151893616,0.0097447084262967,0.053819246590137],[0.00013560522347689,0.015607385896146,0.041375018656254],[0.035565845668316,0.032487522810698,0.05264437943697]],[[0.057842627167702,0.020665757358074,-0.030161932110786],[0.0082081602886319,0.05413518846035,-0.11080205440521],[-0.0261365249753,0.0058300695382059,0.050989627838135]],[[-0.043756432831287,0.0017084582941607,0.041081193834543],[-0.04213597998023,-0.010357275605202,0.0087358560413122],[0.072079949080944,0.0030645106453449,-0.019906459376216]],[[-0.045174960047007,-0.0061929984949529,-0.031972907483578],[-0.022209100425243,-0.065221928060055,-0.033076997846365],[-0.070968262851238,0.024700302630663,-0.18364661931992]],[[-0.011762267909944,0.025412455201149,-0.049578439444304],[0.012146879918873,-0.065836764872074,0.065531656146049],[0.053455475717783,0.051010113209486,-0.045889962464571]],[[0.036100182682276,0.0029873575549573,-0.028117371723056],[-0.059690069407225,-0.028203468769789,0.011337895877659],[0.0090322205796838,0.0083321183919907,-0.011106620542705]],[[-0.0099235726520419,0.016295380890369,0.036786779761314],[0.056394346058369,-0.026204526424408,-0.045210406184196],[0.064314737915993,0.031682439148426,-0.081265509128571]],[[0.028409011662006,0.050384230911732,0.043036308139563],[0.0029222792945802,0.022228289395571,-0.043256837874651],[-0.024395035579801,-0.019678100943565,0.051375146955252]],[[-0.00097441027173772,0.051593746989965,-0.025778084993362],[0.047342032194138,0.04013729095459,-0.030781604349613],[0.032978542149067,-0.010699005797505,0.03891271725297]],[[-0.067197561264038,-0.037236012518406,0.15847590565681],[-0.0010033389553428,-0.0092280264943838,0.0013154725311324],[0.0049247592687607,0.14669001102448,-0.076067164540291]],[[-0.031910020858049,0.021224388852715,-0.0079187853261828],[-0.019456870853901,-0.033637706190348,0.0016774001996964],[0.03394179046154,0.0033494385425001,-0.033976759761572]],[[0.08326455950737,0.0081645464524627,0.017505455762148],[-0.043479595333338,-0.014488162472844,0.040114875882864],[0.024543266743422,0.015990598127246,0.042064420878887]],[[0.071762248873711,-0.026015546172857,0.082380324602127],[-0.0020616005640477,0.022981790825725,-0.13317115604877],[0.01944269798696,-0.025138594210148,0.042797841131687]],[[-0.035269264131784,-0.030271165072918,-0.097933448851109],[0.0092685651034117,-0.072467938065529,-0.071387261152267],[0.0056683286093175,0.051315076649189,-0.015036444179714]],[[0.01927025616169,-0.10294577479362,-0.073154538869858],[0.032289490103722,0.072221167385578,0.048469483852386],[0.008189270272851,0.033209536224604,0.00010108851711266]],[[0.016542673110962,0.010237589478493,-0.035367045551538],[0.01302692387253,-0.054564643651247,-0.021412525326014],[-0.01442442741245,-0.041064355522394,-0.040594290941954]],[[0.024038186296821,-0.075450301170349,-0.043787609785795],[-0.025828197598457,0.02466437779367,-0.039188351482153],[0.013990881852806,-0.01171038299799,0.0035628762561828]],[[-0.008712325245142,0.053983770310879,0.02372458204627],[0.051739491522312,-0.017870699986815,0.012473241426051],[-0.0003488068759907,0.019995179027319,-0.021231509745121]],[[-0.0024163422640413,0.022968262434006,-0.077754721045494],[-0.01295408885926,0.044320654124022,-0.0078775333240628],[-0.017324324697256,-0.014490268193185,-0.024897338822484]],[[-0.10361670702696,-0.013611895032227,-0.061334852129221],[-0.01439290959388,-0.009073531255126,0.018857115879655],[-0.060688078403473,-0.021355973556638,0.026294581592083]],[[-0.027452681213617,0.003217495046556,0.049996208399534],[-0.069858834147453,0.099203281104565,0.037480674684048],[0.048729337751865,-0.024745997041464,0.088986024260521]],[[0.0037504124920815,0.033731579780579,0.010142443701625],[-0.054521564394236,-0.039421360939741,-0.0025466014631093],[0.0099796541035175,-0.014096598140895,-0.063906967639923]],[[0.062127783894539,0.14633856713772,-0.063108131289482],[0.011632543057203,-0.019030541181564,-0.075012914836407],[0.018649255856872,-0.011538431979716,-0.041764326393604]],[[-0.0097680119797587,0.017680322751403,0.046058636158705],[-0.017206782475114,-0.068574264645576,0.01750841178],[-0.0009966001380235,-0.0040854681283236,0.077237002551556]],[[0.031164705753326,0.019696805626154,0.072713695466518],[-0.018690461292863,0.019330590963364,-0.015960803255439],[0.013917844742537,-0.021409032866359,-0.027256054803729]],[[0.0042887651361525,0.035432927310467,0.049372896552086],[-0.027963563799858,-0.022697549313307,0.011170892976224],[0.058374680578709,-0.066595710813999,0.084271110594273]],[[-0.0057313721626997,-0.024175791069865,0.044291444122791],[-0.053258664906025,-0.046364471316338,-0.0066088773310184],[0.0071330699138343,0.022662118077278,-0.02506553567946]],[[0.055795591324568,0.052532002329826,-0.04718267545104],[0.058716792613268,0.036297895014286,0.0096145570278168],[-0.00031104875961319,-0.0074090412817895,-0.011013569310308]],[[0.021905677393079,0.038820613175631,-0.060502719134092],[-0.035304345190525,0.01906144618988,0.01136969961226],[0.030725372955203,-0.0093303788453341,0.047557201236486]],[[-0.01827846840024,0.0052345469594002,0.039579819887877],[-0.0062327464111149,-0.022682674229145,-0.073135577142239],[-0.009144825860858,-0.046083852648735,-0.015451020561159]],[[0.097425408661366,0.048127982765436,0.066449128091335],[-0.039298586547375,-0.038688346743584,0.0088866343721747],[-0.022025251761079,0.010031646117568,-0.017880087718368]],[[0.018340598791838,0.0016817946452647,-0.015037820674479],[-0.023555379360914,-0.088171996176243,-0.033304166048765],[-0.027756249532104,-0.044690269976854,-0.0029439881909639]],[[-0.11139208078384,0.046742901206017,0.0648278221488],[-0.097321748733521,-0.075820989906788,0.010619268752635],[-0.032688949257135,0.054042141884565,0.067598737776279]],[[-0.032793991267681,-0.0066393772140145,0.092845655977726],[-0.0031195550691336,-0.040179338306189,0.035752583295107],[0.080407410860062,-0.018846500664949,-0.080823659896851]],[[-0.10485739260912,-0.08537133783102,-0.041674457490444],[0.062209412455559,0.018615854904056,-0.026994604617357],[-0.00080803234595805,-0.023351818323135,0.029326997697353]],[[0.0044686961919069,-0.094745516777039,-0.038601938635111],[-0.023692581802607,0.013319433666766,0.080858923494816],[0.017506478354335,-0.023414544761181,-0.059706907719374]],[[-0.08311078697443,-0.032710019499063,0.034734055399895],[-0.099880233407021,-0.015609385445714,0.020259376615286],[-0.042888648808002,-0.0055511784739792,0.1368346363306]],[[-0.02181631885469,-0.0065986425615847,-0.0022425407078117],[0.01281500607729,0.085347972810268,0.051774069666862],[0.012943065725267,-0.069019816815853,-0.074421428143978]],[[-0.015869420021772,-0.042052697390318,0.075418896973133],[0.1313374787569,-0.023686984553933,0.0031615365296602],[-0.019254164770246,-0.0050850533880293,-0.0025633026380092]],[[-0.10167219489813,-0.0030322775710374,0.038139384239912],[-0.029685379937291,-0.021119287237525,0.033804457634687],[0.00053691276116297,-0.05217918753624,-0.010969240218401]],[[0.019620925188065,-0.075752533972263,-0.0088081210851669],[-0.0098841292783618,-0.057592730969191,0.028166579082608],[0.013892916962504,-0.017954731360078,0.06578467041254]],[[-0.011272230185568,0.024252418428659,-0.009985770098865],[0.034742295742035,-0.041875202208757,0.053664840757847],[-0.024739816784859,-0.031928580254316,0.086773701012135]],[[0.016163786873221,0.016609465703368,0.036312110722065],[-0.009859262034297,-0.019361076876521,0.0028380767907947],[0.022137202322483,0.033451270312071,-0.043132413178682]],[[-0.040087055414915,-0.013314390555024,-0.011149727739394],[-0.070733733475208,-0.079115353524685,0.045578353106976],[-0.01847886107862,-0.025723805651069,-0.0075143636204302]],[[0.040636982768774,0.076585374772549,-0.090828090906143],[0.033538874238729,0.015391023829579,-0.041563525795937],[-0.041982866823673,-0.022676242515445,0.093445047736168]],[[-0.0098397051915526,-0.063032753765583,0.070443384349346],[0.030541561543941,0.0143006388098,-0.0075667090713978],[0.018460618332028,-0.064766153693199,-0.026073027402163]],[[-0.035785764455795,0.0045684943906963,-0.051413781940937],[0.027304483577609,-0.11832062155008,0.018780045211315],[0.063485540449619,-0.010336173698306,-0.0086655309423804]],[[-0.0083290981128812,-0.048592764884233,-0.010697802528739],[0.027217524126172,-0.058762095868587,0.062714450061321],[0.016377938911319,-0.009967964142561,0.050017140805721]],[[-0.018495904281735,0.0037888812366873,-0.012718429788947],[-0.029275424778461,-0.096868932247162,-0.034913301467896],[-0.097151570022106,-0.0025349888019264,0.039623018354177]],[[0.021126044914126,0.015826174989343,0.054337196052074],[-0.072028644382954,0.026628892868757,-0.0040735476650298],[0.046111810952425,-0.0094630857929587,0.031521044671535]],[[0.060417730361223,0.0010759417200461,0.017912054434419],[0.070233352482319,0.055292241275311,0.054782640188932],[-0.014293941669166,0.014291225932539,-0.059660360217094]],[[-0.0012448229826987,0.0055757220834494,0.019063865765929],[-0.02401459403336,0.037189066410065,0.085316441953182],[-0.020411798730493,0.01865641027689,0.010462884791195]],[[-0.045717496424913,-0.013830924406648,0.037011925131083],[-0.083339221775532,-0.0023953642230481,0.081138007342815],[-0.072423323988914,-0.0031013337429613,0.02008936367929]],[[-0.052514117211103,0.036492682993412,-0.053812328726053],[-0.073355562984943,0.0059348703362048,0.031322073191404],[0.019857436418533,0.018711844459176,-0.051953781396151]],[[-0.013084234669805,0.020948903635144,0.037445157766342],[2.9208360956545e-06,0.012672986835241,-0.082365438342094],[-0.021662149578333,0.032610591500998,-0.041671063750982]],[[0.045243572443724,0.044334251433611,0.083969905972481],[-0.040607940405607,0.021416006609797,-0.016539767384529],[0.044992618262768,-0.032536592334509,0.038138084113598]],[[0.057004064321518,-0.034599933773279,-0.07499697804451],[-0.011623813770711,0.032764341682196,-0.051158025860786],[-0.047825813293457,-0.019775433465838,-0.034678969532251]],[[0.065611094236374,0.094178289175034,0.094873674213886],[-0.063800789415836,-0.027158452197909,-0.016749734058976],[-0.025100648403168,-0.053571444004774,-0.04003581777215]],[[0.036474466323853,0.010280009359121,0.0058690146543086],[0.04040552303195,0.015013537369668,-0.018440144136548],[-0.0065349461510777,0.0081743225455284,0.0020161108113825]],[[-0.052287980914116,0.0015592656563967,0.044195353984833],[-0.040798503905535,0.045850094407797,-0.050960838794708],[0.062705487012863,-0.034274779260159,-0.066230192780495]],[[0.0098046008497477,0.0111199086532,-0.039461590349674],[-0.0035641200374812,-0.028919566422701,-0.020919581875205],[-0.026945626363158,0.030469987541437,0.059286691248417]],[[0.052211128175259,-0.055376049131155,-0.064178600907326],[0.01433331053704,-0.22183658182621,-0.061964485794306],[0.027816718444228,-0.017023922875524,-0.15011177957058]],[[0.0057408674620092,-0.10248575359583,0.054462820291519],[0.1428197324276,-0.011512697674334,-0.12074895948172],[0.046941101551056,0.0043084365315735,0.0060220160521567]],[[-0.0056855105794966,-0.029799869284034,-0.12275961786509],[0.077537588775158,0.030675875023007,0.017251057550311],[0.028904996812344,-0.0016328463098034,0.039017397910357]],[[-0.0092941066250205,-0.0093878787010908,0.021010257303715],[0.0070879240520298,-0.0068809050135314,0.014326722361147],[0.023412469774485,0.031837962567806,0.067569896578789]],[[0.034697107970715,-0.022141991183162,-0.050383903086185],[0.12762230634689,-0.053204219788313,-0.034258078783751],[0.032365757972002,0.10731066763401,-0.072279810905457]],[[-0.14962251484394,0.088392235338688,-0.10306548327208],[0.053871806710958,-0.051725726574659,-0.021284874528646],[0.0360495634377,0.081809274852276,-0.0076499916613102]],[[-0.036358714103699,-0.030282696709037,-0.054647728800774],[-0.0096476720646024,-0.097222253680229,-0.0071064196527004],[-0.020676471292973,0.027285294607282,0.023104101419449]],[[-0.0048160566948354,0.035031046718359,0.029820581898093],[0.084981262683868,-0.024415204301476,0.05929559096694],[0.0016404469497502,-0.083992578089237,-0.046080838888884]],[[-0.046981304883957,-0.075830571353436,-0.021206989884377],[0.03857235237956,-0.023264342918992,0.056381691247225],[0.028339663520455,0.051987484097481,0.034142076969147]],[[-0.013971764594316,0.033731319010258,0.056802656501532],[0.024867679923773,0.022604499012232,0.011225445196033],[0.019028108566999,0.0311209410429,-0.025426017120481]],[[-0.030526490882039,0.029450135305524,-0.057325109839439],[0.029848393052816,0.035705167800188,0.072697311639786],[0.044799707829952,-0.009247837588191,0.020601145923138]],[[-0.075655370950699,0.025331269949675,0.051047697663307],[-0.023205449804664,-0.042019784450531,0.0070562455803156],[-0.016268871724606,-0.024935305118561,-0.00079640693729743]],[[-0.017658889293671,0.06335611641407,-0.094317838549614],[-0.020801210775971,-0.028340291231871,-0.060985498130322],[0.0071236896328628,0.070409700274467,-8.5875682998449e-05]],[[-0.085471838712692,0.031132942065597,-0.085662834346294],[-0.050739519298077,0.068307816982269,0.033794045448303],[-0.068195529282093,0.041987914592028,0.00083976780297235]],[[-0.011410099454224,-0.020596580579877,0.010202729143202],[-0.12387924641371,-0.020440179854631,-0.014212733134627],[-0.016687512397766,-0.038676492869854,-0.014514659531415]],[[0.022715227678418,-0.033356003463268,0.0075691938400269],[0.092598922550678,0.00823740568012,0.080462001264095],[-0.034945745021105,-0.082624487578869,0.05752307549119]],[[0.033645235002041,-0.067790858447552,0.023603411391377],[0.028539828956127,-0.028207313269377,-0.06271593272686],[-0.0036971673835069,0.044761467725039,-0.0060003958642483]],[[0.029077777639031,-0.0051297242753208,0.013990815728903],[0.020255258306861,0.024236630648375,0.035824004560709],[-0.0030773084145039,-0.028114285320044,0.0040264292620122]],[[-0.063916057348251,-0.029771398752928,-0.065282858908176],[-0.060454502701759,0.049597468227148,0.0036589102819562],[0.036011826246977,0.07572989910841,0.11258445680141]],[[-0.037354957312346,-0.023768797516823,0.13045956194401],[0.00096273585222661,0.088075026869774,-0.035180401057005],[-0.038047201931477,-0.11206736415625,0.037881504744291]],[[-0.033067997545004,-0.053717169910669,-0.034306388348341],[0.040429148823023,-0.043118551373482,0.069352254271507],[0.0076583484187722,0.087821327149868,0.087317377328873]],[[-0.019722916185856,-0.043644163757563,-0.049858320504427],[-0.058496061712503,0.016150815412402,-0.076722249388695],[0.008443652652204,0.032344371080399,0.00055604701628909]],[[-0.0051242364570498,-0.052489083260298,0.040515329688787],[-0.052384201437235,0.0015200772322714,0.031998574733734],[0.036387614905834,0.061852905899286,0.04140542820096]],[[-0.018905280157924,0.0063220332376659,-0.056498397141695],[0.037197459489107,0.065862558782101,-0.030238339677453],[0.019591506570578,0.056764077395201,0.034703508019447]],[[0.055572345852852,0.0019555874168873,0.0078139528632164],[0.018658895045519,0.013354490511119,-0.12966367602348],[0.043202113360167,0.021359264850616,0.005830873735249]],[[0.086714066565037,0.036882553249598,-0.0076066288165748],[0.033060312271118,0.024920081719756,-0.017595164477825],[0.020689036697149,0.024882629513741,0.010395889170468]],[[0.011812692508101,-0.022478280588984,-0.014744735322893],[0.065294168889523,-0.13357143104076,-0.095453009009361],[0.010386930778623,0.033058263361454,0.018978303298354]],[[-0.041332293301821,0.019652854651213,0.047535620629787],[0.036658894270658,0.027620865032077,-0.001993577927351],[0.0015273176832125,-0.040791139006615,-0.023213455453515]],[[-0.040674805641174,-0.045250289142132,-0.024502160027623],[-0.051631215959787,0.0038329027593136,-0.05690161138773],[-0.018633361905813,0.0011913437629119,0.057428892701864]],[[-0.032848071306944,-0.03257143497467,0.021398466080427],[0.042038939893246,-0.072446778416634,-0.010590344667435],[-0.02235109359026,-0.071655839681625,-0.036687590181828]],[[-0.040678143501282,0.077374577522278,-0.017353126779199],[-0.034280598163605,0.015317350625992,-0.012656067498028],[0.018996302038431,0.041568577289581,-0.024874217808247]],[[-0.02504033409059,0.04080493748188,0.042586654424667],[-0.056374035775661,0.020889541134238,0.072011791169643],[-0.049651652574539,-0.034530695527792,-0.076860971748829]],[[0.031008036807179,0.03308517858386,0.033059630542994],[0.028253072872758,-0.011811194010079,0.018896197900176],[0.025653993710876,-0.095469400286674,0.038822498172522]],[[0.062470607459545,0.16124427318573,0.0018012978835031],[0.0050925281830132,0.01164407748729,-0.027642019093037],[-0.030783135443926,-0.031365688890219,-0.041588872671127]]],[[[0.085405401885509,0.025728818029165,-0.013844922184944],[0.04029118642211,-0.065413944423199,0.086105637252331],[0.033448837697506,0.010389476083219,-0.032504297792912]],[[0.0054640416055918,-0.080214358866215,-0.054211847484112],[0.025813752785325,0.041000202298164,-0.055911332368851],[-0.041730165481567,0.023718390613794,-0.13356873393059]],[[-0.011471206322312,0.0038782129995525,-0.035941638052464],[-0.0074941064231098,-0.030235763639212,-0.045133460313082],[0.048629485070705,-0.0072967768646777,-0.014569700695574]],[[0.0018228499684483,0.046694230288267,0.065848216414452],[-0.027226660400629,0.01863981410861,0.030483201146126],[0.11774365603924,-0.0039922283031046,0.040260571986437]],[[-0.02224363014102,0.057612258940935,0.010099009610713],[-0.083117708563805,0.0084804678335786,-0.0817930996418],[-0.041159607470036,-0.049939163029194,6.1739163356833e-05]],[[0.037093106657267,-0.035210777074099,-0.033049423247576],[-0.011993383057415,0.00037072203122079,-0.0037416527047753],[0.054817952215672,0.022307351231575,0.02465889416635]],[[-0.030460627749562,0.093353480100632,-0.10568306595087],[0.0027300540823489,-0.016099419444799,-0.06546064466238],[-0.040973026305437,0.0097183855250478,0.011248379014432]],[[-0.0034911599941552,0.041249264031649,0.017780730500817],[-0.017624517902732,-0.031679704785347,0.085395745933056],[0.035977624356747,0.048139300197363,0.042994949966669]],[[-0.08179710060358,0.034918546676636,-0.044268690049648],[0.075552463531494,0.036205265671015,-0.067150861024857],[0.028366500511765,0.061299629509449,0.010553132742643]],[[0.028195993974805,-0.036280494183302,-0.057601388543844],[-0.00072569114854559,0.04739148914814,0.098494611680508],[0.080300278961658,-0.038295146077871,-0.01658127643168]],[[-0.016342928633094,0.033486846834421,0.01242533326149],[-0.095619812607765,-0.061944413930178,-0.0085057634860277],[0.02813944965601,0.057312995195389,-0.11585147678852]],[[-0.078775174915791,-0.00052542652701959,0.073795095086098],[-0.0060445684939623,0.014438847079873,-0.05357338860631],[-0.032075382769108,-0.032295949757099,0.067730203270912]],[[0.017075920477509,-0.037092439830303,0.065972670912743],[0.010774394497275,0.047652259469032,0.077479183673859],[-0.0126186106354,0.025169732049108,-0.062007308006287]],[[-0.074530810117722,-0.054298311471939,-0.040599286556244],[0.0073709660209715,-0.10345857590437,0.10364722460508],[-0.025080472230911,0.013681035488844,0.076981708407402]],[[0.023999866098166,-0.017387509346008,-0.028491521254182],[0.017376113682985,0.04242967441678,-0.065700605511665],[-0.12307827174664,-0.0062249796465039,0.035307630896568]],[[0.0019727440085262,0.12201303243637,-0.054970853030682],[-0.010870500467718,0.019777690991759,-0.018991092219949],[0.013851682655513,-0.0080896615982056,-0.023025644943118]],[[0.057261306792498,0.011571559123695,0.010092562064528],[-0.02174779959023,-0.061779256910086,0.0040042763575912],[0.016492770984769,-0.082484193146229,-0.0047404761426151]],[[-0.10328362882137,-0.092573679983616,-0.071414291858673],[-0.0051695401780307,0.02257464826107,-0.072783671319485],[-0.007216508500278,-0.086014740169048,-0.0060725123621523]],[[0.048361338675022,-0.005137899890542,-0.041872087866068],[0.0077901207841933,0.084952957928181,-0.018441086634994],[-0.012889339588583,-0.0059743165038526,0.063322104513645]],[[0.00084519397933036,-0.018760733306408,-0.0069219912402332],[-0.06375627219677,-0.065742947161198,-0.029875235632062],[-0.018173210322857,0.031577732414007,-0.074907593429089]],[[0.075019143521786,-0.05166844278574,0.011546353809536],[-0.013656171970069,0.0086626168340445,-0.051072683185339],[0.050605166703463,0.026551239192486,-0.048181135207415]],[[-0.025411274284124,-0.025916781276464,0.0070507214404643],[0.02692911401391,0.097790233790874,-0.021131986752152],[-0.061210040003061,0.053599007427692,-0.013081199489534]],[[0.099841833114624,-0.0014686965150759,-0.036372907459736],[-0.061155870556831,-0.044764563441277,-0.056301657110453],[0.019454102963209,-0.006382966414094,0.00086414092220366]],[[0.046244464814663,0.019837433472276,-0.00036722322693095],[-0.028796007856727,0.046365808695555,-0.082400947809219],[-0.044514093548059,0.0074552726000547,-0.021999284625053]],[[0.055311977863312,-0.065508671104908,-0.041848361492157],[0.062138918787241,0.021198028698564,-0.029374646022916],[-0.018542790785432,-0.042862623929977,-0.026359302923083]],[[-0.062473621219397,0.025493225082755,0.02851690351963],[-0.0036793169565499,0.0094067538157105,-0.004247791133821],[-0.017275812104344,-0.046588845551014,-0.0049089901149273]],[[-0.032374873757362,0.039962444454432,-0.058216068893671],[0.016785774379969,0.0056169428862631,-0.022922890260816],[-0.0081248646602035,0.012298331595957,0.020507663488388]],[[-0.03270622715354,0.01281394995749,0.036028869450092],[-0.018309971317649,-0.021184578537941,0.087508223950863],[0.015262147411704,0.061687227338552,0.067793034017086]],[[-0.020623084157705,-0.060928367078304,-0.06955998390913],[-0.0079574817791581,-0.052563332021236,0.055415391921997],[-0.05768895149231,0.0200290735811,0.018584338948131]],[[0.082687765359879,0.0055266986601055,-0.015411660075188],[0.037638571113348,0.06465195864439,-0.022177023813128],[-0.01165902428329,0.018504627048969,-0.033635847270489]],[[0.04517662525177,-0.029134646058083,0.019767308607697],[-0.051877066493034,0.014912570826709,0.036730334162712],[0.036367326974869,-0.033435087651014,0.03988666087389]],[[-0.043481171131134,0.0045678541064262,0.075738966464996],[0.086951211094856,0.05669803917408,0.0034329723566771],[0.047349497675896,0.028646500781178,0.012534656561911]],[[-0.061861678957939,0.092145897448063,-0.015810651704669],[0.052366066724062,0.072175897657871,-0.05085476487875],[-0.057248663157225,-0.01212770678103,0.059078626334667]],[[-0.028954910114408,0.10135693848133,-0.007622720208019],[0.042425286024809,0.038626477122307,0.08320165425539],[-0.036372944712639,0.058158006519079,0.013538367114961]],[[0.0097542041912675,-0.011248111724854,-0.0070749651640654],[-0.062343269586563,0.10878986865282,-0.0075538447126746],[-0.039121836423874,-0.035875130444765,-0.044745333492756]],[[0.10937368869781,-0.038116186857224,-0.035211350768805],[0.029416223987937,-0.10011231899261,-0.0062767593190074],[0.0043812962248921,0.025363627821207,-0.089935801923275]],[[0.013141279108822,-0.0034116413444281,0.016206327825785],[-0.0056933024898171,-0.019982507452369,-0.010706559754908],[-0.037861689925194,-0.055290892720222,-0.046134684234858]],[[-0.068699710071087,0.0071884817443788,-0.012585680931807],[-0.049720425158739,-0.019661726430058,-0.07261823117733],[-0.048431970179081,0.056492082774639,-0.024809425696731]],[[0.01205091457814,0.064009740948677,0.014190088957548],[0.088248759508133,-0.0098457541316748,0.020702246576548],[-0.13426028192043,-0.024535210803151,-0.017892761155963]],[[0.01218593493104,-0.011173217557371,-0.010346830822527],[0.067783862352371,0.12136798352003,0.023402590304613],[-0.050032626837492,0.072984494268894,-0.088757894933224]],[[-0.06625946611166,-0.069956891238689,-0.10094727575779],[-0.053332351148129,0.018569547683001,-0.085661046206951],[-0.065513044595718,0.02147775888443,-0.010169963352382]],[[0.13633085787296,0.049778815358877,0.09910037368536],[0.00040575317689218,0.072829879820347,-0.004121680278331],[0.032867856323719,0.076642960309982,0.017704805359244]],[[0.029241280630231,0.11496394127607,0.11298956722021],[0.071407072246075,-0.052313681691885,0.048748727887869],[0.02247710339725,0.057523611932993,0.10313554853201]],[[0.0027968843933195,-0.028278136625886,0.014362634159625],[-0.097778551280499,-0.012361414730549,0.058370761573315],[-0.066818237304688,0.091080404818058,0.04334370046854]],[[0.090039357542992,0.0086132241412997,-0.070186950266361],[0.050092931836843,0.053326699882746,0.01741311326623],[0.017102032899857,0.087069325149059,-0.019115107133985]],[[-0.1164306551218,0.22818829119205,0.051150169223547],[0.17721422016621,0.080059163272381,0.14396159350872],[-0.011392110958695,0.2067354619503,0.098339110612869]],[[0.02997406758368,-0.00037275906652212,-0.02942006289959],[0.004876684397459,-0.039210792630911,0.00094366580015048],[-0.0061325212009251,0.035932384431362,0.096567489206791]],[[-0.07283678650856,-0.066440761089325,0.035182621330023],[-0.060782719403505,0.075925834476948,-0.012589174322784],[-0.033256962895393,-0.013493876904249,-0.022370891645551]],[[0.037331219762564,-0.054867997765541,0.071570679545403],[-0.011291375383735,-0.060418374836445,-0.0048958868719637],[-0.028947664424777,-0.031739391386509,0.023448472842574]],[[-0.0065993973985314,-0.030172614380717,0.017952745780349],[-0.066721647977829,-0.030038502067327,-0.067770943045616],[0.011787906289101,-0.0023991707712412,-0.0046603512018919]],[[0.063169300556183,-0.026233522221446,-0.056528486311436],[0.0070349215529859,-0.041056793183088,0.028727017343044],[-0.065634101629257,0.028668023645878,0.033009517937899]],[[0.069217652082443,0.02826570905745,-0.021610930562019],[0.035322684794664,-0.011123344302177,-0.048374082893133],[-0.020618833601475,-0.073871403932571,-0.054663009941578]],[[0.060925014317036,-0.014360087923706,-0.015791377052665],[0.015859154984355,0.02789219468832,-0.066828183829784],[0.073553390800953,-0.014804808422923,-0.052036423236132]],[[0.043185941874981,-0.021760990843177,0.092267267405987],[-0.024188468232751,0.015077695250511,0.065342262387276],[-0.0033255119342357,0.0044179232791066,-0.0011413072934374]],[[0.040363896638155,0.00064808514434844,-0.0044474331662059],[0.050058104097843,0.03479765355587,0.010532990098],[0.069481216371059,-0.0073912083171308,-0.10425338149071]],[[0.0023434339091182,0.029144668951631,0.014695473015308],[0.0083179520443082,0.02050581201911,0.0093319984152913],[-0.004157792776823,-0.037067711353302,-0.09632583707571]],[[0.077897362411022,-0.030241977423429,0.22697131335735],[0.025427781045437,-0.0006409240886569,-0.058833982795477],[0.049935385584831,-0.002225189935416,0.093064837157726]],[[-0.038342073559761,0.093234188854694,0.056145437061787],[0.04889315366745,0.025816362351179,-0.00056667812168598],[0.076599918305874,-0.0013918476179242,0.0013600613456219]],[[0.061297543346882,0.093882188200951,0.077394396066666],[0.020794626325369,-0.059633143246174,0.10273560136557],[-0.0019477517344058,0.099214196205139,-0.029772331938148]],[[0.019652916118503,-0.040088754147291,0.036583174020052],[-0.0074777835980058,0.0076205017976463,-0.019447464495897],[-0.020784372463822,-0.051491063088179,-0.013707874342799]],[[0.042373545467854,0.011336855590343,0.090997010469437],[-0.00062130315927789,-0.040907982736826,0.099342972040176],[-0.0073448694311082,0.054686058312654,0.038137461990118]],[[-0.031292501837015,0.016813782975078,1.09410029836e-05],[-0.028680145740509,-0.046953104436398,0.010180347599089],[0.030089534819126,-0.022579872980714,0.00072386220563203]],[[-0.016982143744826,0.084742605686188,-0.021774902939796],[-0.0020642187446356,0.0044200979173183,-0.011382706463337],[0.012015277519822,-0.0099638123065233,-0.011768832802773]],[[-0.0039770193397999,0.034799721091986,0.052192442119122],[0.03569071367383,0.061889812350273,0.031829319894314],[0.053924046456814,0.043072059750557,0.081141427159309]],[[-0.0434610247612,-0.05985563993454,0.033658508211374],[0.0044590984471142,0.066198334097862,-0.0023753102868795],[-0.013806001283228,-0.016311768442392,-0.012136512435973]],[[-0.020970771089196,-0.025279354304075,-0.015928519889712],[0.020869640633464,-0.064789786934853,0.022075671702623],[0.066805444657803,0.029259605333209,0.018925556913018]],[[-0.065205737948418,-0.028599424287677,0.084573909640312],[-0.029361173510551,-0.053747713565826,0.015076910145581],[0.0086020482704043,0.011170230805874,-0.0053886342793703]],[[0.093099743127823,0.01604326441884,-0.074085272848606],[0.042114622890949,0.059757333248854,-0.011115781031549],[0.075804494321346,0.018900150433183,-0.00054163468303159]],[[0.049016799777746,0.022978600114584,-0.018076153472066],[0.011778505519032,0.024144833907485,0.087282814085484],[0.028695564717054,0.090823568403721,-0.052483934909105]],[[-0.088653549551964,-0.027350891381502,-0.012618809007108],[0.038335874676704,-0.023456832394004,0.0095164617523551],[-0.01901769079268,-0.087740331888199,0.0486482642591]],[[-0.046354111284018,-0.038010355085135,0.056425902992487],[0.06652969866991,0.025523938238621,0.094377860426903],[0.11013120412827,0.059851326048374,0.095880724489689]],[[0.018089838325977,-0.051672112196684,-0.015924416482449],[-0.022555027157068,-0.025523819029331,0.005283385515213],[-0.046773444861174,0.032110441476107,-0.063327021896839]],[[-0.028330199420452,0.020325725898147,0.011400078423321],[-0.035580944269896,-0.017816221341491,0.020842691883445],[-0.046442676335573,-0.079610154032707,-0.036564394831657]],[[-0.025368982926011,0.11646901071072,0.044634200632572],[0.040908008813858,-0.085521332919598,0.031711012125015],[-0.031664382666349,0.084884837269783,-0.0024690476711839]],[[0.062841266393661,-0.015090627595782,0.026242282241583],[-0.0060356920585036,0.041680075228214,-0.029188547283411],[0.040439657866955,-0.031900458037853,0.014242166653275]],[[-0.043920859694481,0.0071614398621023,0.0049051330424845],[-0.058363538235426,-0.096759386360645,-0.002427265746519],[-0.0066126696765423,-0.01475088018924,0.0022613741457462]],[[-0.079460285604,0.033678166568279,0.058001458644867],[-0.034676965326071,0.083398655056953,0.0010420331964269],[0.0029603065922856,-0.0086443303152919,0.013101291842759]],[[0.12989120185375,0.042450144886971,-0.027192490175366],[0.015263767912984,-0.0067887045443058,0.047652557492256],[0.069001756608486,0.048165090382099,0.0043685943819582]],[[-0.094178669154644,-0.099422067403793,-0.0052037951536477],[0.033773083239794,-0.007538094650954,-0.005674097687006],[-0.096580065786839,0.017448730766773,-0.059117712080479]],[[-0.027500810101628,-0.0087716011330485,-0.058854464441538],[0.013702593743801,0.026839939877391,0.0018480950966477],[-0.020037211477757,-0.0062784045003355,0.07555329054594]],[[-0.050141863524914,-0.021431541070342,-0.0033269920386374],[-0.012564499862492,-0.080705277621746,0.041238844394684],[-0.040472682565451,-0.0053735785186291,-0.020679701119661]],[[-0.037622161209583,0.060889165848494,0.034212041646242],[0.047605197876692,-0.021887110546231,-0.061584785580635],[0.0080772703513503,0.0017405251273885,0.014646047726274]],[[0.028672702610493,0.014696947298944,-0.030683880671859],[0.092570573091507,0.045390672981739,-0.00064571062102914],[0.015233257785439,-0.020713834092021,-0.071946777403355]],[[0.03366032242775,-0.049862142652273,-0.049020379781723],[0.008110829629004,0.019313678145409,0.015821816399693],[0.11703833937645,0.06168556958437,0.025012280791998]],[[0.067659825086594,-0.013261014595628,0.075845152139664],[-0.024071170017123,-0.021868051961064,-0.011913012713194],[-0.0091981831938028,-0.052850302308798,0.00019827009236906]],[[0.052147049456835,-0.042658381164074,0.036600839346647],[0.044374652206898,0.0041855596937239,0.038595978170633],[0.0029689786024392,-0.080710135400295,-0.014447196386755]],[[-0.0082427738234401,-0.092463739216328,-0.012999237515032],[-0.039992392063141,0.066012352705002,0.0023855248000473],[-0.055019084364176,-0.027005560696125,0.07588891685009]],[[-0.079371869564056,-0.025333009660244,0.052472531795502],[0.045376040041447,0.0035603907890618,0.019411202520132],[0.03669012337923,-0.0072062676772475,-0.024611061438918]],[[0.1259161233902,-0.070307463407516,-0.059562724083662],[0.0179458912462,0.031996887177229,0.057403180748224],[0.010439474135637,-0.014257094822824,-0.028354749083519]],[[-0.024943895637989,-0.023931151255965,-0.048073027282953],[-0.080866374075413,-0.014107508584857,-0.020429000258446],[-0.022485053166747,-0.03803014755249,0.0019057058962062]],[[0.059548135846853,0.035390540957451,-0.046795759350061],[-0.013254792429507,0.041903726756573,0.060059789568186],[-0.0058902078308165,0.010701030492783,0.00026198677369393]],[[-0.02319742180407,-0.054285380989313,0.094205558300018],[-0.018251866102219,0.060053665190935,0.04935884103179],[-0.048238825052977,0.038093321025372,-0.021958192810416]],[[0.028028355911374,0.041239276528358,0.030147813260555],[0.0034616757184267,0.020026929676533,-0.031899936497211],[0.03574974834919,-0.036656949669123,0.037479810416698]],[[0.010190684348345,0.0030092627275735,-0.04076324403286],[0.059108391404152,0.0016986354021356,0.01696396432817],[-0.035136297345161,0.019351588562131,0.0088816182687879]],[[-0.034039586782455,-0.019017320126295,0.012124624103308],[-0.0089125484228134,-0.095110237598419,-0.033715352416039],[-0.12111160904169,-0.019951291382313,0.0032811150886118]],[[-0.028921673074365,0.024742819368839,-0.028631204739213],[0.031849876046181,0.041504446417093,-0.0093323867768049],[-0.0045055928640068,-0.025449072942138,-0.056763906031847]],[[-0.036360461264849,-0.035594172775745,-0.12592913210392],[0.047833096235991,0.0092298304662108,-0.021338883787394],[-0.036505226045847,0.023431055247784,0.017119891941547]],[[-0.061669111251831,0.049949008971453,0.080702871084213],[0.10652156174183,-0.013723207637668,0.038418307900429],[0.064164690673351,0.03081114590168,0.10424517095089]],[[-0.039954829961061,-0.0078711789101362,0.045460794121027],[0.023807803168893,0.027119098231196,0.012004854157567],[0.017530392855406,-0.018348559737206,-0.10095032304525]],[[0.14243955910206,0.048503085970879,-0.0050731115043163],[0.067670382559299,0.053584154695272,-0.033149491995573],[-0.037999410182238,-0.043823387473822,-0.04593550413847]],[[-0.070027209818363,0.0074610132724047,-0.028266128152609],[-0.049259211868048,-0.043913457542658,-0.067925535142422],[-0.0080144507810473,-0.010086426511407,-0.0037373141385615]],[[0.12960478663445,-0.016274491325021,0.098360493779182],[0.046359673142433,0.053109131753445,0.025146992877126],[0.053576022386551,0.037432331591845,0.051699813455343]],[[-0.017081504687667,-0.0021144768688828,0.090659387409687],[-0.076044172048569,0.037055257707834,-0.021701712161303],[0.075905255973339,0.0029146752785891,0.071909300982952]],[[-0.029083136469126,-0.060083236545324,0.0078809792175889],[-0.12642240524292,0.087477572262287,0.068597249686718],[0.0062818531878293,0.020820261910558,0.025347152724862]],[[-0.052784562110901,-0.0084079606458545,0.028832923620939],[0.00065413623815402,-0.078739687800407,0.0097130555659533],[0.0077378759160638,0.0080163162201643,0.067091040313244]],[[-0.0024882322177291,-0.010222271084785,0.043128401041031],[0.023452026769519,0.015539268031716,-0.040782928466797],[0.0048768660053611,-0.017103424295783,-0.0021907126065344]],[[0.033470373600721,-0.033334836363792,0.032158132642508],[0.031993936747313,-0.071512885391712,0.020316857844591],[0.03966623172164,0.011613437905908,0.0037047213409096]],[[0.042285170406103,0.011585681699216,-0.0066032288596034],[-0.10128619521856,-0.072548165917397,-0.032756861299276],[-0.037499293684959,0.080943033099174,0.023441420868039]],[[-0.067413456737995,-0.066923506557941,-0.027492724359035],[-0.035054851323366,0.044010113924742,-0.0057013016194105],[0.0078528756275773,-0.015446442179382,-0.056720614433289]],[[0.04193576797843,-0.010313950479031,0.096945218741894],[0.00063438474899158,0.0081087071448565,-0.056485306471586],[0.056050207465887,0.0014635529369116,-0.029645159840584]],[[0.010466396808624,0.01688864082098,0.077643163502216],[0.0017943175043911,-0.052825164049864,-0.1228793784976],[0.032452933490276,0.06565710157156,-0.024934396147728]],[[0.077734604477882,0.023026127368212,0.042000979185104],[-0.00038088599103503,0.064836412668228,-0.12238971889019],[0.031756307929754,-0.073655188083649,-0.12516030669212]],[[0.034511711448431,-0.0065274499356747,0.0054930835030973],[-0.009075746871531,-0.06393975764513,0.01016226503998],[-0.075365714728832,-0.033752229064703,0.042576193809509]],[[-0.070218905806541,0.010269870050251,0.019752962514758],[-0.021274395287037,-0.059940464794636,0.071178063750267],[0.09613411128521,-0.007429591845721,0.03341917693615]],[[-0.017740128561854,0.0008182036690414,-0.00019647380395327],[-0.030687231570482,0.026172647252679,-0.012273351661861],[0.0020037344656885,-0.040520705282688,0.036057531833649]],[[-0.061825778335333,0.062454789876938,-0.027430653572083],[-0.018582424148917,-0.0095004942268133,-0.041100867092609],[0.0057696159929037,0.00040445721242577,0.088786527514458]],[[0.05569652095437,-0.035488311201334,-0.030683184042573],[0.059543777257204,-0.035354573279619,-0.019074147567153],[-0.050556696951389,-0.035212837159634,0.064196474850178]],[[0.055394843220711,-0.0074944184161723,0.065132647752762],[0.085146605968475,0.008429897017777,-0.0053059365600348],[-0.0077012297697365,0.036275275051594,-0.077912800014019]],[[-0.013596502132714,0.044739827513695,0.072247691452503],[-0.019896641373634,0.10647694766521,-0.061785902827978],[0.015571674332023,0.071208626031876,-0.01575187779963]],[[-0.019999114796519,0.00083858729340136,0.01769644767046],[-0.078394614160061,-0.025323510169983,-0.022030387073755],[0.0014117643004283,-0.0075129102915525,0.09473080188036]],[[-0.040295347571373,-0.0042472700588405,0.0049572703428566],[-0.0033656742889434,0.047434840351343,0.011227872222662],[0.00029015773907304,0.019415017217398,-0.033307127654552]],[[0.01832071505487,-0.032964710146189,0.016215236857533],[0.050193853676319,-0.042869422584772,-0.058920539915562],[-0.05804605036974,-0.065725147724152,-0.088430002331734]],[[-0.040055889636278,0.012629975564778,-0.014488126151264],[0.0012133343843743,-0.043620564043522,0.048225611448288],[-0.010666579939425,-0.023165453225374,0.049643099308014]],[[-0.021318033337593,-0.0078172860667109,0.015096552670002],[0.069954410195351,0.067526943981647,0.031428147107363],[-0.062240716069937,-0.040782120078802,-0.022407665848732]],[[-0.040847189724445,0.093125879764557,-0.074729397892952],[-0.15127694606781,-0.012141632847488,0.022481556981802],[-0.049523457884789,-0.014280679635704,-0.023743774741888]],[[-0.028353974223137,0.011127104051411,-0.024401048198342],[-0.0025554576423019,-0.020528610795736,0.028713148087263],[0.076633155345917,0.019708415493369,-0.096325024962425]],[[0.1499090641737,-0.025958912447095,0.12729512155056],[0.025341371074319,0.02743180654943,0.030820412561297],[0.055409751832485,-0.027085730805993,-0.035923179239035]],[[-0.11648589372635,0.14841900765896,0.012449429370463],[0.10363940894604,0.02910253405571,0.053078170865774],[-0.028938328847289,0.054507542401552,0.018294917419553]]],[[[0.051027193665504,0.0081629315391183,-0.043712358921766],[0.01659001968801,-0.03349044919014,0.10425586998463],[-0.044468931853771,0.050400540232658,0.0011346654500812]],[[0.054849538952112,-0.1292849779129,-0.028270650655031],[0.077643141150475,0.032814163714647,-0.026758093386889],[0.011927792802453,0.018254652619362,0.01275103725493]],[[-0.060614075511694,-0.084994100034237,-0.012200662866235],[0.00061351084150374,0.0072972169145942,-0.023566028103232],[0.034482210874557,-0.023433361202478,-0.0085182934999466]],[[0.010576500557363,0.004072445910424,-0.032604515552521],[-0.040489107370377,0.059778407216072,0.017657175660133],[0.15571346879005,-0.022257074713707,-0.019912658259273]],[[0.054845351725817,-0.06179366260767,0.012429861351848],[0.07582625746727,-0.035330146551132,0.0048283617943525],[0.0045489855110645,-0.01245712954551,-0.025052541866899]],[[0.056811816990376,0.0026236379053444,-0.078693844377995],[0.021921815350652,-0.00022269043256529,0.021409155800939],[0.075668081641197,0.010084145702422,-0.0071110678836703]],[[0.038055215030909,-0.013303886167705,-0.01297904830426],[0.038238406181335,0.0022653001360595,-0.051296886056662],[0.010715362615883,-0.0033455488737673,0.032526407390833]],[[-0.005626994650811,-0.005649670958519,0.047629527747631],[-0.0011923251440749,0.0040106242522597,0.018169604241848],[0.081842787563801,-0.023782474920154,0.049570642411709]],[[0.058153048157692,0.0059040072374046,0.032123070210218],[0.018929600715637,0.027471069246531,0.0027325011324137],[-0.038021087646484,0.038959417492151,0.030446851626039]],[[0.029638631269336,-0.088334158062935,-0.015156419016421],[-0.049297526478767,-0.018611032515764,0.043236151337624],[0.072580225765705,-0.019555794075131,0.064845606684685]],[[-0.093384690582752,0.032784402370453,-0.017723761498928],[-0.01370135974139,0.036244999617338,0.042123556137085],[0.029463768005371,-0.035569615662098,0.034306693822145]],[[0.015065055340528,-0.034434180706739,-0.018787292763591],[0.0041977358050644,-0.020170157775283,-0.03496927767992],[-0.0039312718436122,0.048869214951992,-0.068408742547035]],[[-0.036465380340815,0.035797368735075,0.0089729931205511],[0.0072755664587021,-0.0033088312484324,0.026722488924861],[0.074167504906654,0.083756692707539,0.073386304080486]],[[-0.010620876215398,-0.0098903579637408,-0.011470359750092],[-0.050991512835026,-0.010216900147498,0.034783210605383],[0.089694082736969,-0.053419440984726,-0.10264850407839]],[[0.013487396761775,-0.0035976120270789,0.0051390179432929],[0.053596947342157,0.081117056310177,0.00059821689501405],[-0.016111474484205,0.039497390389442,-0.01398815959692]],[[-0.085829809308052,-0.041046768426895,0.012554918415844],[0.039635371416807,-0.018161792308092,-0.063998371362686],[-0.023747365921736,0.010339997708797,-0.025395961478353]],[[0.052713666111231,-0.041461773216724,-0.075976319611073],[-0.018705297261477,0.037093371152878,0.017054915428162],[-0.026045618578792,0.016285805031657,-0.014822576195002]],[[0.021678645163774,-0.025554228574038,0.042538870126009],[-0.073434941470623,-0.013326398096979,0.0016138917999342],[-0.017172081395984,-0.019500119611621,-0.026181997731328]],[[0.0071419379673898,-0.10066173225641,-0.048870783299208],[0.034664113074541,-0.017456654459238,-0.041002478450537],[0.064611010253429,0.025979408994317,-0.042846750468016]],[[-0.017284585162997,-0.038114354014397,0.0049509978853166],[0.0079117501154542,0.11778136342764,0.031829375773668],[-0.020191201940179,0.083024613559246,-0.0545435808599]],[[-0.025186307728291,0.0056424126960337,-0.046712514013052],[0.028069378808141,-0.047037683427334,0.031502518802881],[0.0018195606535301,-0.031151968985796,0.030721729621291]],[[0.01203394588083,0.032133810222149,0.084909416735172],[0.036261782050133,0.0024427028838545,0.026747524738312],[0.05620301887393,0.12726061046124,0.018140641972423]],[[0.00085624150233343,0.016942864283919,0.076510459184647],[0.093580417335033,-0.0054909065365791,-0.026646595448256],[-0.049211863428354,0.002599545288831,-0.054663307964802]],[[0.066915072500706,0.012962094508111,-0.021557077765465],[0.021292205899954,-0.0010727257467806,-0.019492976367474],[0.024170691147447,0.01859332062304,0.059133727103472]],[[-0.082896441221237,0.014678927138448,0.077546387910843],[-0.022036733105779,0.0087455520406365,-0.068998418748379],[0.039594400674105,0.069084443151951,-0.032167918980122]],[[0.025343995541334,-0.0665662586689,0.062852673232555],[-0.050187263637781,-0.0088265668600798,-0.008934723213315],[0.023515123873949,-0.0023040038067847,0.04166642203927]],[[0.0074876821599901,0.080175019800663,-0.001030222279951],[0.09072932600975,0.030173514038324,-0.0085673443973064],[0.06741014122963,-0.016102831810713,0.048632822930813]],[[-0.0057003637775779,-0.0042060138657689,0.0035101647954434],[0.029583601281047,0.0012858849950135,0.066479057073593],[-0.0069707250222564,0.038569398224354,0.0068508344702423]],[[0.027948576956987,-0.040680076926947,-0.070712804794312],[0.069125905632973,-0.051927894353867,0.041688915342093],[-0.018647182732821,-0.0077839554287493,-0.077827915549278]],[[-0.0017881136154756,0.011279055848718,-0.072861075401306],[-0.077070735394955,0.00049415836110711,-0.0086800567805767],[-0.0081885056570172,0.014321146532893,0.033353570848703]],[[0.0084140179678798,0.059473965317011,0.035481855273247],[-0.049323540180922,0.010576985776424,0.023048888891935],[0.0072254622355103,0.0060008997097611,-0.037460453808308]],[[-0.068911708891392,0.036970395594835,0.044846441596746],[0.017080567777157,-0.079751618206501,-0.065927147865295],[0.06521462649107,0.011912590824068,0.046567436307669]],[[0.034553576260805,0.089841201901436,0.019928196445107],[0.10171749442816,-0.035708270967007,0.10215044021606],[0.033548835664988,0.075989902019501,-0.01184834446758]],[[-0.03900071978569,-7.0194721047301e-05,0.028768923133612],[-0.015272598713636,-0.028026506304741,0.038520682603121],[-0.041796624660492,0.050634942948818,-0.0088692111894488]],[[-0.020154867321253,-0.035781942307949,-0.039786819368601],[-0.039818421006203,-0.03595582395792,-0.0058522149920464],[0.078071624040604,-0.03919966891408,0.030200092121959]],[[0.056338913738728,-0.0082648666575551,0.039175614714622],[0.018361832946539,-0.0097131812945008,0.0012079828884453],[-0.021912468597293,0.044902671128511,-0.020591411739588]],[[-0.0076455026865005,-0.03170582279563,-0.029709961265326],[0.026020329445601,0.034472335129976,0.036750063300133],[-0.033662594854832,-0.097537130117416,-0.04245488718152]],[[-0.059425443410873,0.033154081553221,-0.030310472473502],[-0.022488225251436,-0.08173193782568,0.045913856476545],[0.086998634040356,0.033374961465597,-0.027523282915354]],[[-0.033709246665239,0.012341354042292,-0.041921600699425],[-0.012532103806734,0.050028197467327,0.012614638544619],[-0.063292995095253,0.072240196168423,0.016831519082189]],[[0.035099823027849,0.0020082690753043,0.067567311227322],[0.028854055330157,0.030864302068949,0.018301300704479],[0.023620767518878,0.0018276408081874,0.10849384218454]],[[0.0046925279311836,0.049937233328819,0.03505502268672],[0.032574154436588,-0.00052482780301943,-0.0073544210754335],[0.064066700637341,-0.062181547284126,-0.08193202316761]],[[0.040368471294641,0.060020342469215,0.029625650495291],[0.088497206568718,0.065861776471138,0.060079589486122],[-0.029921405017376,0.074258409440517,0.038685213774443]],[[0.06810151040554,-0.00041270712972619,0.032224379479885],[0.018711771816015,-0.022435488179326,0.076961874961853],[-0.01108849234879,0.031454723328352,0.016154985874891]],[[0.062921702861786,0.084502369165421,-0.098784767091274],[-0.048863172531128,0.021853223443031,0.0065585668198764],[0.018079349771142,-0.058059100061655,-0.025293976068497]],[[-0.0087043093517423,0.048921622335911,0.024907572194934],[-0.03390821814537,0.00038025545654818,0.084656171500683],[0.067501924932003,0.05431430414319,-0.047172252088785]],[[0.050566457211971,0.067501716315746,0.018899414688349],[0.05386370792985,0.047705322504044,0.014620375819504],[-0.024813234806061,-0.031389277428389,0.010670282877982]],[[-0.0050744311884046,-0.066681712865829,-0.018391633406281],[-0.010928833857179,0.026892939582467,-0.035530369728804],[-0.033910069614649,-0.042641710489988,-0.073411121964455]],[[-0.042563211172819,0.010425579734147,-0.078400008380413],[-0.038166008889675,-0.075364977121353,-0.087264060974121],[0.0086991274729371,-0.036205723881721,-0.051018338650465]],[[-0.016885915771127,0.030257385224104,-0.049387224018574],[-0.061863161623478,-0.029828445985913,-0.046560000628233],[-0.059147730469704,-0.067639909684658,0.041713614016771]],[[-0.020969899371266,0.048911549150944,0.0033866262529045],[0.049759808927774,-0.029376255348325,-0.023197906091809],[-0.07281668484211,0.04436719045043,-0.0032186962198466]],[[-0.020049447193742,-0.031779322773218,-0.016783962026238],[-0.023560049012303,0.03377291560173,0.037142984569073],[-0.075557768344879,0.073330119252205,-0.047211181372404]],[[-0.025795420631766,-0.033283900469542,0.053027514368296],[0.0072507821023464,0.0070218099281192,-0.0080720959231257],[-0.02650267444551,0.00064412294887006,-0.039897762238979]],[[-0.061274420469999,-0.0088034858927131,-0.048055630177259],[-0.045564517378807,-0.042474534362555,0.0040232609026134],[0.033429056406021,-0.03204758092761,-0.044347506016493]],[[0.012030748650432,0.01987606100738,0.025874933227897],[-0.032263081520796,0.050688941031694,-0.011223213747144],[0.063342273235321,0.091222174465656,0.031251825392246]],[[0.03826541826129,0.1067967414856,0.033161967992783],[0.081891976296902,0.042074400931597,-0.08618738502264],[0.028828321024776,0.036733668297529,-0.063703536987305]],[[0.049278732389212,-0.0048636998981237,0.032129388302565],[-0.0790014564991,0.0015276186168194,0.02842091396451],[-0.010321285575628,-0.030383700504899,0.0028212263714522]],[[-0.057864911854267,0.032220609486103,0.016785241663456],[0.073573559522629,0.0031948057003319,0.11912976950407],[-0.063733465969563,0.015106958337128,0.081885442137718]],[[0.0073246187530458,-0.056566201150417,0.045004688203335],[0.031938787549734,0.041255384683609,0.012283643707633],[0.037799347192049,-0.1088380664587,0.013823001645505]],[[0.053158357739449,0.039825595915318,0.031282130628824],[0.0791040584445,0.038530752062798,-0.025026433169842],[0.034404996782541,0.0052356109954417,0.043081235140562]],[[0.077227033674717,0.046214815229177,-0.091427057981491],[-0.030361643061042,-0.020677080377936,-0.019958281889558],[-0.035542488098145,0.014672572724521,0.087307266891003]],[[0.096955001354218,-0.019450601190329,-0.0062365080229938],[0.0063593573868275,-0.0027090839575976,-0.12087056040764],[0.022442869842052,0.039569031447172,-0.047537293285131]],[[-0.020628068596125,0.061499211937189,-0.019806755706668],[-0.044203832745552,-0.039218325167894,-0.0053202104754746],[-0.011244711466134,-0.069251589477062,0.013746965676546]],[[0.031466826796532,0.055916458368301,-0.0096106445416808],[-0.02264048345387,0.034676350653172,-0.0049062282778323],[0.014877932146192,0.0046562091447413,0.011172412894666]],[[-0.038382947444916,-0.058565218001604,-0.019418204203248],[0.044788382947445,0.058333665132523,0.02602906152606],[0.035466324537992,0.0058865253813565,-0.055381268262863]],[[0.053509421646595,0.049383442848921,0.0039233244024217],[0.029545268043876,-0.027959132567048,-0.023580744862556],[-0.056463662534952,-0.037078883498907,0.015998521819711]],[[0.018468379974365,0.062426935881376,0.032493654638529],[0.042161446064711,0.05583792552352,0.017535340040922],[0.041128430515528,0.0088880425319076,0.038830015808344]],[[-0.0090619567781687,0.028433980420232,-0.01500351075083],[0.071811743080616,-0.016587451100349,0.041610714048147],[-0.018789513036609,-0.085349313914776,0.011884890496731]],[[0.0053604245185852,-0.019090147688985,0.0069711725227535],[-0.018362237140536,0.01367626991123,-0.012974291108549],[-0.01017031352967,0.013901226222515,0.084764026105404]],[[0.093829229474068,-0.0067424857988954,0.055597957223654],[-0.01125138066709,0.010420808568597,0.074105605483055],[0.027617081999779,0.018720472231507,-0.019027397036552]],[[0.017543500289321,0.0079650450497866,0.021859407424927],[-0.023073280230165,0.037685979157686,-0.045635435730219],[-0.042666163295507,0.028363585472107,-0.0064607472158968]],[[-0.011040695011616,-0.0012077037245035,0.13593561947346],[0.079139150679111,-0.062331024557352,-0.082020081579685],[0.048161007463932,0.10209253430367,0.031182551756501]],[[-0.021689232438803,0.046865340322256,0.0071553704328835],[-0.04537620395422,-0.031173560768366,0.025348199531436],[0.0088112540543079,-0.039314769208431,0.0080880783498287]],[[0.02947461605072,-0.035107299685478,-0.037002932280302],[0.01885094307363,-0.021373812109232,0.0053367158398032],[-0.027709893882275,-0.023048613220453,0.042571477591991]],[[-0.045034341514111,-0.023270511999726,0.0088468566536903],[-0.053030535578728,-0.035773392766714,-0.04566502571106],[-0.020882280543447,-0.006836109329015,0.024263493716717]],[[-0.01868038251996,-0.022100800648332,0.048499934375286],[-0.0018671778962016,-0.019563760608435,-0.068077318370342],[0.061360064893961,-0.019944746047258,0.065995626151562]],[[0.0051657678559422,-0.020153479650617,-0.030009696260095],[0.012563397176564,-0.078340046107769,0.017342938110232],[0.0099161490797997,0.011704353615642,0.0093580847606063]],[[0.064288586378098,0.0081304796040058,-0.05692632496357],[0.026615479961038,-0.0017800779314712,-0.026431689038873],[-0.040609732270241,0.016235312446952,0.035284768790007]],[[-0.052571099251509,0.055894840508699,0.014544349163771],[0.048814851790667,0.027049655094743,0.090132214128971],[0.00590675836429,0.015750665217638,0.075708866119385]],[[0.027092574164271,0.0010566225973889,0.033584251999855],[0.081048019230366,0.023546168580651,-0.0065527562983334],[-0.0099259223788977,-0.0038268871139735,-0.067059114575386]],[[0.01041076425463,-0.049712490290403,-0.093421794474125],[0.037831801921129,-0.0086787734180689,-0.04016300663352],[-0.0034230793826282,-0.00034490373218432,-0.007345256395638]],[[0.037042412906885,-0.0016787585336715,-0.019332073628902],[-0.12819649279118,-0.062941998243332,0.02441687323153],[-0.090391308069229,0.049313120543957,0.023033231496811]],[[0.015600961633027,0.017927892506123,-0.06266775727272],[0.015247226692736,0.01975354552269,0.0041345399804413],[-0.072998069226742,0.019612897187471,-0.0030621972400695]],[[0.044706922024488,-0.016289250925183,0.069435387849808],[0.019487811252475,-0.014976480975747,0.040595125406981],[0.050601411610842,0.017640247941017,0.11314015835524]],[[0.03474709764123,0.016891568899155,0.020111734047532],[0.00034716835943982,0.022572822868824,0.0052011534571648],[0.067372031509876,0.056874256581068,0.036343794316053]],[[0.0050853681750596,0.031522147357464,-0.023867188021541],[0.023484019562602,0.030892487615347,0.032168570905924],[0.069520331919193,-0.013996782712638,0.017134649679065]],[[-0.059214547276497,-0.089303076267242,-0.034545436501503],[0.037102799862623,-0.01750985532999,-0.05896919965744],[0.035602942109108,0.0022905464284122,-0.0023804793599993]],[[0.0026098391972482,0.076752714812756,0.12486711144447],[-0.029947087168694,-0.053392566740513,0.071579776704311],[0.11339693516493,0.0011719772592187,0.056215032935143]],[[0.065737634897232,0.024809319525957,-0.052809190005064],[0.0068544973619282,0.0080733457580209,0.0027837944217026],[-6.6520246036816e-05,-0.015918169170618,-0.033445946872234]],[[0.021445898339152,-0.029859827831388,-0.073845311999321],[-0.011384258046746,0.053203668445349,0.058095153421164],[-0.011837153695524,0.048847734928131,0.048694241791964]],[[-0.021479712799191,-0.014266770333052,-0.12373560667038],[0.0071656452491879,0.013592226430774,0.024086743593216],[0.0047136484645307,-0.021060047671199,-0.044710081070662]],[[-0.013155632652342,-0.052129294723272,-0.05334410443902],[0.049141012132168,0.029552441090345,-0.0029761355835944],[0.07109871506691,0.0049920440651476,-0.0086190989241004]],[[-0.070871584117413,0.023113491013646,-0.055620312690735],[-0.029310302808881,-0.057121228426695,-0.040313132107258],[-0.0083207469433546,-0.088156647980213,0.013872245326638]],[[-0.012982943095267,0.065578974783421,0.020057326182723],[0.019990056753159,-0.085224196314812,-0.017874848097563],[-0.0075571411289275,0.087624996900558,0.10078850388527]],[[0.042002633213997,0.017090251669288,0.025861166417599],[-0.028939917683601,0.0671756118536,0.047193199396133],[-0.002450090367347,-0.052909355610609,0.012409768998623]],[[0.048759784549475,0.065687082707882,-0.020931530743837],[0.022235803306103,-0.021023003384471,-0.025536516681314],[-0.02349753677845,0.045175567269325,-0.039159964770079]],[[-0.029838643968105,0.044177886098623,0.019066359847784],[0.04662898927927,-0.037258476018906,0.052817117422819],[0.023374523967505,0.057148888707161,-0.04039428755641]],[[0.026561083272099,-0.041960299015045,-0.010512499138713],[-0.0015563280321658,-0.030490014702082,0.0081368694081903],[-0.0093486588448286,0.005107888020575,0.010342705063522]],[[0.068831726908684,0.033544860780239,-0.0062159667722881],[0.048380188643932,0.052759665995836,0.014304735697806],[0.031259324401617,0.055128592997789,0.032449640333652]],[[-0.051283068954945,-0.023765984922647,0.028733780607581],[0.041876584291458,-0.010763690806925,-0.0082163941115141],[-0.036034744232893,0.042112924158573,-0.058709066361189]],[[0.09754429012537,-0.0022042053751647,-0.033497199416161],[0.06116846576333,0.049307599663734,-0.018310477957129],[-0.015810174867511,-0.026678612455726,0.0085556441918015]],[[0.0061713680624962,-0.036622043699026,-0.050519436597824],[-0.064422830939293,0.049497075378895,-0.011624710634351],[-0.04026971757412,-0.00082658877363428,-0.051521703600883]],[[-0.051629796624184,0.031182637438178,0.039574556052685],[0.10402711480856,0.12388565391302,-0.037408743053675],[0.037873458117247,-0.0073132780380547,0.031112099066377]],[[-0.05929995700717,-0.036944065243006,0.027823597192764],[0.025728644803166,-0.027133721858263,-0.066988497972488],[-0.020349463447928,0.047571022063494,0.099576331675053]],[[-0.10828732699156,-0.015959734097123,-0.070003986358643],[-0.022413894534111,-0.029244123026729,0.0083407647907734],[-0.0081614693626761,0.037825606763363,-0.088452354073524]],[[0.058376312255859,-0.004248620942235,0.044249098747969],[-0.0083814840763807,0.044980142265558,-0.0047964467667043],[0.038297813385725,0.061704687774181,0.053473073989153]],[[-0.021310027688742,-0.018935119733214,-0.080771714448929],[0.042883675545454,0.026557140052319,-0.017258094623685],[0.058692269027233,-0.038003008812666,0.052592556923628]],[[-0.0038811750710011,-0.015761395916343,-0.010759779252112],[0.066399678587914,0.093592934310436,-0.015155605040491],[-0.022940764203668,-0.020146040245891,0.014261904172599]],[[-0.054526098072529,0.012028423137963,-0.040136810392141],[0.095378197729588,-0.091617852449417,0.063591249287128],[-0.02275114133954,-0.0059588253498077,-0.01433898601681]],[[0.029989723116159,-0.054417062550783,-0.024368427693844],[-0.013291552662849,0.029989972710609,-0.054637189954519],[-0.022655608132482,-0.011292750015855,0.015211758203804]],[[-0.019174968823791,-0.0096608884632587,-0.032860431820154],[0.1199546456337,-0.061543565243483,-0.034940425306559],[-0.0057430928573012,0.041552178561687,-0.024523450061679]],[[-0.034112725406885,-0.089812450110912,-0.0090476525947452],[0.032359667122364,0.0017608718480915,-0.022287158295512],[0.062843918800354,0.057611096650362,-0.030998485162854]],[[-0.068301416933537,-0.062935896217823,-0.086455665528774],[-0.022621091455221,-0.069412387907505,-0.0292739123106],[-0.033026084303856,0.0065462701022625,-0.014414033852518]],[[0.012750373221934,0.029850229620934,0.033319946378469],[-0.054440695792437,0.047041021287441,-0.096224173903465],[-0.042099706828594,-0.031368859112263,-0.12174283713102]],[[0.036699701100588,-0.051561795175076,0.0023512097541243],[-0.077513948082924,-0.021700263023376,-0.041419081389904],[0.040385235100985,0.050177030265331,-0.0096747484058142]],[[-0.0031256342772394,-0.03553793951869,0.02121626958251],[0.047700591385365,-0.044143501669168,-0.067165702581406],[0.087727725505829,-0.040101230144501,-0.0041940035298467]],[[0.026613090187311,-0.060836113989353,-0.034092959016562],[0.024314004927874,-0.024476297199726,-0.1459745913744],[-0.0025025652721524,0.038087926805019,-0.06742911785841]],[[-0.018769918009639,-0.065229929983616,0.03211484849453],[0.020735019817948,0.056422453373671,0.10903150588274],[0.10386002063751,-0.054671920835972,0.023039162158966]],[[-0.061446785926819,0.0066936197690666,0.046515703201294],[-0.0033339976798743,0.050542168319225,-0.017356432974339],[0.053615093231201,-0.10758453607559,0.087864562869072]],[[-0.014433923177421,-0.039658706635237,0.028589876368642],[-0.020003085955977,-0.010640540160239,-0.0039787227287889],[0.066043399274349,-0.006758360657841,-0.062072899192572]],[[0.10198201984167,0.091545708477497,0.05804393067956],[0.076521046459675,0.021679723635316,-0.03043301217258],[0.018508838489652,0.049633745104074,-0.0061704195104539]],[[0.003298579249531,0.077411241829395,0.043855167925358],[-0.027334067970514,-0.0037035273853689,-0.030477972701192],[0.01087614428252,-0.0578583329916,0.042898394167423]],[[0.051418021321297,-0.040703821927309,-0.016067668795586],[0.011778363958001,0.042941682040691,-0.02567707374692],[0.058668203651905,-0.037751920521259,0.0076683098450303]],[[0.051629703491926,0.06395697593689,-0.073201276361942],[-0.072339810431004,-0.061770286411047,0.041577089577913],[-0.062708355486393,-0.037005290389061,-0.033592965453863]],[[0.019117653369904,-0.038453351706266,0.032886456698179],[-0.0039404630661011,-0.049015894532204,0.0097135584801435],[-0.044918917119503,0.020477721467614,0.048677187412977]],[[0.040847212076187,0.013518461026251,-0.028983881697059],[-0.0031742614228278,-0.016751797869802,0.028146473690867],[0.014522603712976,0.097927868366241,-0.025649474933743]],[[0.09572971612215,-0.044134292751551,-0.048465203493834],[0.0038986660074443,0.020481660962105,-0.0012454502284527],[-0.038879379630089,0.021818974986672,-0.010624812915921]],[[-0.0095532210543752,-0.002384684747085,0.032843865454197],[-0.0064879045821726,0.011936463415623,-0.008963180705905],[0.067172676324844,0.080163270235062,-0.0028201511595398]],[[0.07467644661665,-0.060954470187426,-0.0058139055036008],[-0.051319293677807,0.061386253684759,0.024517087265849],[-0.074938431382179,-0.020486569032073,0.0014098586980253]]],[[[-0.034270361065865,-0.051771502941847,0.003655819222331],[0.00038428837433457,0.021757090464234,0.018965793773532],[-0.0019540046341717,-0.031653787940741,0.11505807191133]],[[-0.046142797917128,-0.014396280050278,0.090713173151016],[0.006049026735127,0.044918421655893,0.064582601189613],[0.049013629555702,0.067999742925167,0.02697959728539]],[[0.0086294477805495,6.8550740252249e-05,-0.019984615966678],[-0.048641096800566,-0.041941545903683,0.021664459258318],[-0.035534113645554,0.13899864256382,-0.029185589402914]],[[-0.0063868262805045,-0.040764156728983,0.031549710780382],[0.026950661092997,0.0025569282006472,-0.01595070399344],[-0.041691828519106,0.062343075871468,0.015929626300931]],[[0.0037817938718945,-0.017590798437595,0.076964393258095],[0.038655333220959,0.038762900978327,0.095803484320641],[0.03471814841032,-0.078323997557163,-0.027094393968582]],[[-0.018416482955217,0.022344060242176,0.033996094018221],[-0.0091004790738225,-0.07208401709795,-0.00010213845962426],[-0.016014635562897,-0.0054808082059026,-0.02181488648057]],[[0.037710439413786,0.025665791705251,-0.015748890116811],[0.096319794654846,0.0085996184498072,-0.015812210738659],[-0.017638960853219,-0.079176284372807,0.01273435074836]],[[0.046527028083801,-0.0090687302872539,0.017450893297791],[-0.0060577988624573,0.063214644789696,-0.0040834709070623],[-0.022572655230761,0.012451784685254,-0.019590359181166]],[[0.11954095959663,0.12480967491865,-0.055377010256052],[0.040423527359962,-0.0014490721514449,0.0085479393601418],[0.054356783628464,-0.00098666688427329,-0.0080376472324133]],[[0.051818713545799,0.051462713629007,-0.0063347346149385],[-0.048417385667562,-0.014624261297286,0.021628882735968],[0.043389476835728,0.009692664258182,0.039755575358868]],[[-0.028601750731468,0.034725349396467,-0.010911360383034],[-0.02779739908874,0.024639315903187,-0.0025525288656354],[-0.025407807901502,-0.026759117841721,-0.041749712079763]],[[0.056182969361544,0.0013157282955945,0.065009735524654],[-0.0057652033865452,0.080613821744919,-0.021910540759563],[-0.007273162715137,-0.084498278796673,-0.055730063468218]],[[0.09921495616436,-0.0051229605451226,0.082882814109325],[0.063145585358143,0.010687965899706,0.061025351285934],[0.1151435226202,-0.0017380827339366,0.04294453561306]],[[-0.026882445439696,0.067818395793438,0.020892290398479],[0.025541553273797,0.029664844274521,0.090637668967247],[0.024842634797096,-0.02807205170393,-0.043059233576059]],[[0.0872588083148,-0.026195732876658,0.027149420231581],[-0.035679455846548,-0.017426114529371,-0.023540578782558],[0.069520048797131,0.010632156394422,-0.094929113984108]],[[0.023032199591398,-0.097188524901867,0.042439602315426],[0.0095521239563823,-0.022022742778063,-0.027450891211629],[-0.033145431429148,0.023907097056508,-0.025895278900862]],[[0.025754550471902,-0.024919731542468,0.00029885346884839],[0.047038402408361,-0.016543015837669,-0.077040016651154],[-0.013023092411458,-0.0030794653575867,0.090471550822258]],[[0.023725487291813,-0.010977569967508,0.027910931035876],[-0.0042884135618806,-0.011846171692014,-0.0019669060129672],[-0.016734575852752,-0.074728399515152,-0.010856183245778]],[[0.027250787243247,0.017530372366309,0.063103623688221],[0.069779336452484,0.047135174274445,-0.0074726343154907],[-0.074102230370045,-0.0036766207776964,0.011554414406419]],[[-0.037251751869917,-0.068434871733189,0.047236334532499],[-0.038288168609142,0.062197331339121,0.0058244662359357],[0.01896827109158,0.01268850825727,0.087681017816067]],[[0.011293172836304,-0.043272409588099,-0.028998771682382],[-0.05688963085413,0.01548251695931,-0.045049592852592],[-0.028343066573143,-0.015381810255349,-0.052911676466465]],[[-0.011308024637401,-0.05178152397275,0.021738676354289],[0.059190034866333,-0.027308404445648,0.042968343943357],[0.047242868691683,-0.063652351498604,0.08822912722826]],[[-0.030374461784959,-0.009181666187942,0.077179305255413],[0.045803431421518,0.0024285153485835,-0.077017553150654],[0.045963864773512,0.045505803078413,-0.032835762947798]],[[0.0506940074265,0.042811438441277,-0.029765183106065],[0.0060290405526757,0.0065786908380687,-0.027427976951003],[0.090262211859226,0.07853015512228,0.093026638031006]],[[-0.014452668838203,0.015339772216976,0.0036910399794579],[0.040100019425154,0.034930713474751,0.039945252239704],[0.018278039991856,-0.020081654191017,0.013426689431071]],[[-0.010677678510547,0.02788090147078,-0.011514723300934],[-0.038174353539944,-0.026698200032115,0.0017578183906153],[0.014282820746303,-0.052632328122854,-0.01829388923943]],[[0.101228043437,0.01260441634804,-0.0095881139859557],[0.060835890471935,0.020034769549966,0.041997212916613],[0.016914883628488,0.042262367904186,0.075279720127583]],[[-0.032058019191027,-0.03554055467248,-0.021691590547562],[-0.01909295283258,-0.03082587942481,0.026133542880416],[-0.022555442526937,0.0086509110406041,-0.032461050897837]],[[-0.036128267645836,-0.029590407386422,-0.0021726887207478],[0.0008038803935051,-0.028367914259434,0.0017304655630141],[0.070236004889011,-0.056472234427929,-0.057484924793243]],[[-0.03804961591959,0.00069416244514287,-0.058568950742483],[-0.031082859262824,-0.037439577281475,-0.021712733432651],[-0.0022343411110342,0.025398293510079,-0.040731117129326]],[[-0.015126205980778,0.0072119813412428,0.00080390420043841],[0.0066396836191416,0.027311006560922,0.025241982191801],[-0.0057251127436757,0.045076828449965,0.020425358787179]],[[-0.091479815542698,-0.012216789647937,-0.073996625840664],[0.012914195656776,0.040486425161362,0.022696232423186],[0.073934130370617,-0.066722869873047,0.066521853208542]],[[-0.045478779822588,0.042168404906988,0.062877714633942],[-0.0047525861300528,0.025801641866565,0.058587960898876],[-0.0067917169071734,0.056422643363476,0.073704831302166]],[[-0.074070364236832,0.03052831068635,0.020321285352111],[0.013371334411204,0.015495723113418,0.025855479761958],[0.068223431706429,0.046693917363882,0.10821790248156]],[[0.035872597247362,0.0067069679498672,0.024161225184798],[0.0033319457434118,0.042389970272779,-0.024345051497221],[-0.0040331389755011,0.074425145983696,0.02795147523284]],[[-0.0039705862291157,0.0089093074202538,0.021375112235546],[-0.004783047363162,-0.0066789081320167,-0.027705019339919],[-0.023824697360396,-0.0043691769242287,-0.025702893733978]],[[-0.024261124432087,0.0328114554286,0.070035606622696],[-0.030690860003233,0.017980452626944,0.010961087420583],[-0.0147505691275,0.078911416232586,-0.062311001121998]],[[0.064386911690235,-0.038017343729734,0.030123354867101],[0.025500738993287,-0.077284306287766,0.052541632205248],[-0.024238910526037,-0.001644593779929,0.018691970035434]],[[-0.057329528033733,0.054422315210104,0.0098636215552688],[0.082706645131111,0.032472364604473,-0.0025993052404374],[0.01602808944881,-0.059645231813192,-0.059683155268431]],[[-0.0073354835622013,-0.0035734158009291,0.029300548136234],[0.072588190436363,-0.059653729200363,0.029654556885362],[-0.021139606833458,-0.017284661531448,0.080757118761539]],[[-0.017107576131821,0.041995074599981,0.041873812675476],[0.052002768963575,0.043190099298954,-0.034738820046186],[0.023891126736999,0.0034588086418808,-0.092914961278439]],[[-0.037292614579201,0.041856370866299,0.018482506275177],[0.068295799195766,0.028964469209313,-0.039669778198004],[0.062279395759106,-0.026873711496592,0.07029190659523]],[[0.044031046330929,0.041273400187492,-0.010493834502995],[0.029415028169751,0.10664761066437,0.053842503577471],[0.043102439492941,0.051656179130077,0.13657140731812]],[[0.057048190385103,-0.0426383651793,-0.00098452612292022],[0.039318516850471,0.030970169231296,-0.025994623079896],[-0.030685054138303,-0.0036130109801888,-0.044036872684956]],[[-0.023734524846077,0.078469656407833,-0.0083033591508865],[-0.04564805701375,0.034817922860384,0.0031630715820938],[0.046312414109707,0.016080524772406,0.025137774646282]],[[0.036776855587959,0.034901730716228,0.01304174028337],[0.00097757496405393,0.037898555397987,0.038131181150675],[0.054646879434586,0.086758658289909,0.017809998244047]],[[0.016657203435898,-0.019392274320126,0.001715180114843],[-0.0076345279812813,-0.026966575533152,0.0084791155532002],[-0.01487653888762,-0.035748202353716,-0.032997753471136]],[[-0.088282011449337,0.012112961150706,-0.057995032519102],[-0.022249730303884,0.011620035395026,-0.083139784634113],[0.031274899840355,-0.018900563940406,-0.055175799876451]],[[-0.057351853698492,0.003896628273651,0.035219702869654],[-0.090446203947067,0.015597929246724,-0.054215732961893],[0.012804689817131,0.0046956492587924,0.026901578530669]],[[-0.003586481558159,-0.01765438914299,0.0081691248342395],[-0.026417285203934,-0.064046338200569,0.046913407742977],[0.051911428570747,-0.029438141733408,0.0016655235085636]],[[0.048949867486954,0.029275065287948,-0.014183493331075],[0.0024771327152848,0.031583979725838,-0.066150709986687],[0.12031594663858,-0.0042874412611127,0.029703522101045]],[[0.057645369321108,0.078301675617695,-0.023163972422481],[0.0080098463222384,-0.022535821422935,0.011874248273671],[0.025217471644282,0.022090477868915,-0.023970315232873]],[[-0.090613678097725,-0.035329971462488,-0.0036330348812044],[-0.031750541180372,-0.072895720601082,-0.023981347680092],[-0.043588560074568,-0.089894905686378,0.023166434839368]],[[-0.0043570389971137,-0.04999990388751,-0.019930666312575],[0.020866107195616,0.0073264446109533,0.037016078829765],[-0.025553224608302,0.11674449592829,0.081731095910072]],[[-0.015820302069187,0.026952806860209,0.013135657645762],[-0.0012190897250548,-0.010117402300239,0.0094035789370537],[0.034627307206392,-0.042365420609713,-0.053273063153028]],[[0.21731126308441,0.074684396386147,0.018703946843743],[-0.029941940680146,-6.3807805418037e-05,0.0044419188052416],[0.060568992048502,-0.028691522777081,-0.085623145103455]],[[0.058159921318293,0.014996000565588,0.069554075598717],[-0.015528004616499,0.042634453624487,0.056871525943279],[0.025044977664948,0.075368016958237,0.0084093790501356]],[[-0.021597817540169,-0.062080930918455,0.089798822999001],[-0.036710571497679,-0.01888282969594,-0.078969217836857],[-0.010996988974512,-0.0055383197031915,-0.059643447399139]],[[0.048591431230307,0.13393896818161,0.013254725374281],[0.027987943962216,-0.031802497804165,-0.064421124756336],[-0.037565357983112,0.05016702786088,0.015669208019972]],[[0.07599700987339,0.059464648365974,0.03394203260541],[0.078134678304195,0.040935643017292,-0.0051234224811196],[-0.036253768950701,-0.037766944617033,0.030695121735334]],[[-0.053724639117718,-0.048016175627708,-0.0085467174649239],[0.014542249031365,-0.0088053802028298,0.015037389472127],[0.085797838866711,0.0027417128439993,-0.042534325271845]],[[-0.061238415539265,-0.0019824393093586,0.086036503314972],[-0.050951462239027,-0.050264202058315,-0.013553653843701],[-0.072646804153919,0.027189889922738,-0.040729876607656]],[[-0.040776766836643,0.092540957033634,0.069691322743893],[0.067614495754242,0.030129592865705,0.04599080607295],[-0.044601541012526,0.010976581834257,-0.0080588795244694]],[[-0.0019430249230936,0.042230699211359,0.050294142216444],[-0.027358593419194,-0.031649146229029,0.066592566668987],[0.035797048360109,-0.027247730642557,0.054668415337801]],[[-0.012131209485233,0.046940885484219,0.023924615234137],[0.035619899630547,0.025990534573793,-0.052113745361567],[0.0081437937915325,0.019539540633559,-0.0069925570860505]],[[0.10494109243155,-0.016649406403303,0.020427156239748],[0.029067682102323,-0.014487431384623,-0.087845854461193],[0.095764487981796,0.020446609705687,0.11822476238012]],[[-0.051627404987812,0.023056948557496,-0.072977960109711],[0.016180710867047,0.033016107976437,-0.042259741574526],[-0.059429191052914,0.03015218116343,-0.010594462044537]],[[0.053871348500252,0.072014980018139,-0.01937716640532],[0.0069160172715783,0.044865619391203,-0.0039099799469113],[0.044201131910086,0.011440753936768,0.041741274297237]],[[0.0066662561148405,0.032037351280451,-0.036056634038687],[0.020268740132451,0.069887392222881,0.018241291865706],[0.048873297870159,0.061935588717461,0.065740190446377]],[[-0.060712415724993,0.063686646521091,-0.023352282121778],[0.036686684936285,-0.01082762517035,-0.00051934458315372],[-0.01519067119807,-0.019408268854022,-0.049283489584923]],[[0.0016512952279299,0.021110244095325,0.025243895128369],[0.055386491119862,0.011697057634592,0.021190559491515],[-0.021835258230567,0.037593927234411,0.11535497754812]],[[-0.073110520839691,-0.039065148681402,-0.006954784039408],[-9.8580712801777e-06,0.10246334224939,0.085532568395138],[0.010088330134749,0.021214216947556,0.084959290921688]],[[0.020065724849701,-0.081611894071102,-0.046226054430008],[-0.03996817022562,0.0076748207211494,-0.025885066017509],[-0.046366047114134,0.020731955766678,0.0058715469203889]],[[-0.024359961971641,-0.053121365606785,0.0096370540559292],[-0.086474530398846,-0.058328531682491,0.038416091352701],[-0.053631898015738,-0.045279175043106,0.0056160250678658]],[[-0.087374277412891,-0.015835892409086,-0.012940858490765],[0.039469819515944,0.0037377020344138,-0.031224727630615],[0.10539910197258,-0.0070965848863125,0.03000202961266]],[[-0.026026576757431,0.027716532349586,-0.019167562946677],[-0.049057960510254,-0.017477327957749,0.018286697566509],[0.012633949518204,-0.032641835510731,-0.082356803119183]],[[0.012817651033401,-0.029278101399541,0.00013086340914015],[-0.066385008394718,-0.060233931988478,-0.020009810104966],[0.026123536750674,-0.032332200556993,0.044371664524078]],[[-0.063707172870636,-0.0024351850152016,0.012190882116556],[0.0043963193893433,0.014202716760337,0.061262063682079],[-0.015997618436813,0.038918737322092,-0.00088356819469482]],[[0.070602707564831,-0.0088057070970535,-0.035845167934895],[0.017418671399355,-0.020498864352703,-0.052149202674627],[0.011988355778158,-0.030221277847886,-0.032255578786135]],[[0.031310927122831,0.023214200511575,-0.052455000579357],[0.084819465875626,0.13777238130569,-0.0017822972731665],[-0.033613704144955,-0.032637123018503,-0.019550127908587]],[[0.0048881215043366,0.096860609948635,0.082134023308754],[-0.063985079526901,0.028578476980329,-0.048510503023863],[-0.12572957575321,-0.01428210735321,-0.046595826745033]],[[0.026845818385482,0.0081443805247545,0.07016584277153],[0.020734688267112,-0.0058267433196306,-0.0026547093875706],[0.0016559846699238,0.0083921225741506,-0.0045719551853836]],[[-0.10370101034641,-0.016163850203156,0.016636060550809],[-0.019578032195568,-0.021271299570799,-0.005971587728709],[0.017544627189636,-0.010966028086841,0.021858973428607]],[[-0.015914352610707,-0.047719791531563,0.042724590748549],[-0.049055311828852,-0.04344841465354,-0.017107885330915],[-0.032165445387363,0.030612865462899,-0.024818677455187]],[[0.068864367902279,0.049634367227554,0.057183306664228],[0.044876389205456,0.041765056550503,0.0083940522745252],[-0.022784331813455,-0.070853099226952,0.066608607769012]],[[0.023070635274053,0.021592916920781,-0.012663737870753],[-0.025842377915978,-0.0059519382193685,0.010457001626492],[-0.028127077966928,0.060203842818737,0.039177235215902]],[[0.076536625623703,-0.012702368199825,0.040454063564539],[-0.011827416718006,0.009569856338203,0.0072431792505085],[0.00031621771631762,0.12903292477131,0.086204826831818]],[[-0.083246663212776,0.01044294051826,-0.033569809049368],[0.041078131645918,-0.0069520948454738,-0.066132888197899],[0.039287708699703,-0.053530357778072,0.013618658296764]],[[0.031677044928074,-0.017418125644326,-0.00021205964731053],[0.053028915077448,0.020927045494318,0.056626658886671],[0.021903455257416,-0.028139790520072,0.019161788746715]],[[-0.023268179967999,-0.0010850140824914,-0.092955805361271],[0.0057474337518215,0.028886897489429,0.015809267759323],[0.0076364674605429,-0.028312603011727,-0.027205903083086]],[[0.01519247982651,-0.0053226002492011,0.011646439321339],[0.021065397188067,0.061430387198925,-0.0046988748945296],[-0.040829870849848,0.025286739692092,0.10958720743656]],[[-0.023166704922915,-0.00048873166088015,0.047659330070019],[-0.017674691975117,0.062667898833752,-0.00847312156111],[0.054508432745934,0.0081158541142941,-0.052010878920555]],[[-0.0054328897967935,-0.00085774005856365,0.079610034823418],[-0.044893510639668,0.024574860930443,-0.048834957182407],[0.035799272358418,0.038968030363321,0.019619202241302]],[[0.056335773319006,0.031467743217945,-0.038327742367983],[0.007919292896986,-0.024506228044629,0.0067479242570698],[-0.074007213115692,0.061579059809446,0.021680638194084]],[[-0.04049152135849,-0.020886851474643,-0.077673219144344],[-0.070870362222195,-0.030915042385459,-0.055943813174963],[-0.0029148897156119,-0.024343764409423,0.0052838828414679]],[[0.0027793091721833,-0.074378624558449,0.11276635527611],[-0.012493196874857,-0.045619659125805,0.035865277051926],[0.14248906075954,-0.003089525969699,0.029499217867851]],[[0.019136974588037,0.051022212952375,-0.03548427298665],[0.24428483843803,0.11318315565586,-0.012295695021749],[-0.077110856771469,0.024091113358736,0.039702314883471]],[[-0.038792248815298,-0.020245840772986,-0.010709017515182],[0.042608562856913,-0.014900663867593,-0.013843016698956],[0.10426352918148,0.016460806131363,0.017863880842924]],[[0.067110061645508,0.0062217134982347,0.015778835862875],[0.024684466421604,0.054531823843718,0.02520171739161],[0.059332326054573,0.0049465415067971,-0.030554050579667]],[[-0.072446390986443,0.054230991750956,0.065399691462517],[0.008894651196897,0.02518648840487,-0.011847579851747],[-0.030360128730536,-0.014379117637873,-0.014201510697603]],[[0.019299684092402,0.045265357941389,-0.010277863591909],[0.038323067128658,-0.0096544995903969,-0.028968453407288],[0.0013161508832127,0.021779486909509,-0.046994183212519]],[[-0.0050977896898985,-0.028946908190846,0.043452072888613],[-0.048382338136435,0.035045776516199,-0.0068043409846723],[0.076894849538803,0.0087490454316139,-0.043283358216286]],[[0.00024753925390542,-0.020173387601972,0.0029085064306855],[0.078774198889732,0.038158178329468,-0.0096509195864201],[-0.0076497178524733,0.0053398655727506,0.035956494510174]],[[-0.016343420371413,-0.002393796807155,-0.04669664055109],[0.0028946166858077,-0.040144164115191,-0.040504023432732],[-0.012589349411428,-0.041361298412085,-0.030508030205965]],[[-0.0064698122441769,0.029454162344337,-0.0042552724480629],[0.023622162640095,0.063429541885853,-0.012815405614674],[-0.025616938248277,0.089377894997597,0.022400779649615]],[[-0.040235474705696,0.020481687039137,-0.087024457752705],[-0.032970394939184,0.0090682907029986,0.016381174325943],[-0.025542596355081,0.081748135387897,0.012010252103209]],[[0.018396770581603,0.034377697855234,-0.045686662197113],[-0.019381027668715,-0.0036101676523685,-0.03133112937212],[0.13870140910149,-0.0098804589360952,0.037503484636545]],[[-0.0060397172346711,0.047880239784718,-0.0062600960955024],[-0.0084888869896531,-0.040717501193285,-0.0014144163578749],[-0.0070309364236891,-0.047611854970455,-0.010603950358927]],[[0.040011905133724,-0.014043686911464,-0.045353792607784],[0.030540430918336,-0.043522618710995,2.6087614969583e-05],[-0.035033646970987,0.0086234994232655,0.033786788582802]],[[0.018485819920897,0.0033838581293821,0.086363926529884],[-0.020830150693655,0.097810029983521,0.11376314610243],[0.028594750910997,0.084400996565819,-0.00028206856222823]],[[0.0098498994484544,-0.011063785292208,0.0014564610319212],[-0.067343860864639,0.0073991850949824,0.014913812279701],[-0.028944751247764,0.035658735781908,0.014713685028255]],[[0.016427839174867,-0.022195924073458,0.025379838421941],[-0.032259300351143,-0.00016041377966758,0.025224003940821],[0.064725294709206,0.027824534103274,-0.044987980276346]],[[0.07854138314724,0.058170881122351,-0.0047040395438671],[-0.063883788883686,0.0090140663087368,-0.0070732734166086],[0.039013866335154,0.027575958520174,-0.078796900808811]],[[-0.10873079299927,-0.136923417449,-0.023004531860352],[-0.086669489741325,0.035405118018389,0.010055692866445],[0.01300251763314,-0.053188614547253,-0.089989274740219]],[[0.05745330452919,-0.01063609495759,0.056497767567635],[-0.035262856632471,-0.068847805261612,0.030074570327997],[0.003107063472271,0.010845822282135,-0.016712257638574]],[[-0.0052001206204295,0.031329426914454,-0.046802870929241],[0.013024460524321,-0.038644623011351,-0.10724606364965],[0.0095351813361049,0.044708609580994,-0.0032989177852869]],[[-0.0032838790211827,-0.015202938579023,0.059952717274427],[0.053954895585775,0.0064817275851965,0.015156859531999],[0.033004242926836,0.014164430089295,-0.011017335578799]],[[0.032905098050833,0.023112010210752,-0.01066367700696],[-0.058806575834751,-0.0046626250259578,0.018146589398384],[0.038918510079384,-0.026876224204898,0.056464910507202]],[[-0.083897896111012,0.020550644025207,-0.0012130251852795],[-0.025835646316409,-0.012686165049672,0.035013645887375],[0.040840696543455,0.060004584491253,0.057751901447773]],[[0.093582078814507,0.12427164614201,-0.030386183410883],[0.11017724126577,0.052223421633244,0.034447785466909],[0.084472246468067,0.078585676848888,-0.018724521622062]],[[-0.048954755067825,-0.088850364089012,-0.03198316693306],[0.017549639567733,0.019724249839783,-0.018982427194715],[0.0025110519491136,0.043871514499187,-0.072508700191975]],[[0.038340002298355,-0.027520444244146,0.014566844329238],[0.044658288359642,-0.057328958064318,-0.0064017656259239],[0.042879447340965,0.052439335733652,0.023468581959605]],[[-0.083876989781857,-0.026638997718692,-0.010988300666213],[0.022981565445662,-0.01907086186111,-0.049021296203136],[0.012864150106907,-0.047261282801628,-0.087695211172104]],[[0.01052319444716,-0.0063070724718273,-0.027291277423501],[0.031501308083534,-0.0021512401290238,0.0089890267699957],[0.0013306397013366,0.063374094665051,0.039038226008415]],[[0.018023785203695,0.019314551725984,0.018436970189214],[-0.014069187454879,0.049366116523743,0.035291824489832],[-0.03229321166873,0.047675427049398,-0.021770613268018]],[[-0.075413092970848,-0.010594887658954,0.029298486188054],[-0.022774707525969,0.049589745700359,0.024341097101569],[-0.071024611592293,0.038995929062366,0.039661485701799]],[[0.014144993387163,0.016636984422803,-0.058864247053862],[0.043054830282927,0.059698894619942,0.045802913606167],[-0.090502642095089,0.081616632640362,0.023688020184636]],[[-0.076181024312973,-0.010206101462245,0.0090617509558797],[-0.08373437076807,-0.027735212817788,-0.0083518177270889],[0.021998731419444,0.023017672821879,-0.011856500990689]]],[[[0.010049267672002,0.057199485599995,0.030815988779068],[-0.02524153701961,-0.06029636412859,0.017310792580247],[-0.033814027905464,-0.020080406218767,-0.016666220501065]],[[-0.098514311015606,0.051289610564709,-0.093384616076946],[-0.019643560051918,-0.014507735148072,-0.04956366121769],[-0.0062663946300745,0.034130752086639,0.0124122640118]],[[0.017052864655852,-0.014897746965289,0.044351223856211],[-0.011800773441792,-0.038021925836802,0.0095944134518504],[0.001183008775115,0.013405116274953,-0.01107682287693]],[[-0.021583696827292,-0.0052136895246804,-0.020843861624599],[0.010365337133408,0.075710847973824,0.051745612174273],[-0.014165919274092,0.0045318896882236,-0.021190678700805]],[[0.02058663405478,0.048732239753008,-0.028806334361434],[0.052048649638891,-0.00065812288084999,-0.013806770555675],[0.0084509095177054,0.041984342038631,0.015256087295711]],[[-0.019121896475554,0.074634596705437,-0.011613745242357],[-0.0062010758556426,-0.036511227488518,0.014446074143052],[-0.0057822740636766,0.017979204654694,0.039239704608917]],[[0.065202824771404,0.0224075820297,-0.025849685072899],[0.070957735180855,0.034368764609098,-0.042364194989204],[0.017854643985629,-0.064430393278599,-0.010427029803395]],[[-0.031240329146385,0.016467075794935,0.016795849427581],[0.063583247363567,-0.013100945390761,0.014109908603132],[-0.0029068919830024,-0.026293016970158,-0.017756093293428]],[[0.0051913298666477,0.0095534548163414,-0.0091767674311996],[-0.052299108356237,-0.029260326176882,-0.04166004806757],[0.031499560922384,0.0031169047579169,0.046177864074707]],[[-0.040893949568272,0.014361034147441,0.0050958688370883],[-0.00030705484095961,0.023840056732297,0.021958027034998],[0.0015588166425005,-0.017426455393434,0.010405350476503]],[[-0.023139245808125,-0.024171765893698,0.037672471255064],[0.03950272500515,-0.030470613390207,0.064589127898216],[0.013562428764999,-0.073475152254105,0.015670606866479]],[[0.016175573691726,0.024036098271608,0.012643217109144],[-0.0086642531678081,-0.0026571999769658,0.051233418285847],[0.0482421182096,0.042880039662123,0.033182427287102]],[[0.11667699366808,-0.016764195635915,-0.032589107751846],[0.035780493170023,-0.020580697804689,0.06628093868494],[-0.031242411583662,-0.006816650275141,0.0045430744066834]],[[-0.0068430169485509,0.027507249265909,-0.019213018938899],[0.039701387286186,-0.053727701306343,-0.014518999494612],[0.063833884894848,0.0031736565288156,0.024647122249007]],[[-0.0019846868235618,0.028359096497297,-0.018432106822729],[-0.060438677668571,0.020164761692286,-0.048260875046253],[0.067876487970352,0.0079456204548478,0.027575608342886]],[[0.0038476430345327,0.047000020742416,-0.030435191467404],[-0.0085833296179771,0.0069239963777363,0.050272576510906],[0.075049862265587,-0.053183358162642,-0.02067151106894]],[[0.009490286000073,-0.023052042350173,-0.0038502451498061],[-0.039675433188677,0.076963908970356,0.040572289377451],[-0.02307746745646,-0.0031512971036136,0.0064258109778166]],[[-0.014695476740599,0.026268981397152,-0.0041537727229297],[-0.033919245004654,-0.097455397248268,-0.012399884872139],[0.034816835075617,0.017549788579345,0.019566766917706]],[[0.0034789547789842,0.017515880987048,-0.011150703765452],[0.0009825648739934,-0.044774249196053,0.027974033728242],[0.029703035950661,-0.01989353261888,0.001655116211623]],[[0.024308040738106,-0.021441539749503,0.013386411592364],[-0.063744112849236,0.010886961594224,0.070204250514507],[-0.019115906208754,-0.0026430443394929,0.032876282930374]],[[-0.0040581715293229,0.018619626760483,-0.01407007034868],[0.026752635836601,0.073793694376945,-0.025645323097706],[-0.051905907690525,-0.065401390194893,-0.064299613237381]],[[-0.022194115445018,-0.043767657130957,0.03586895391345],[0.010740444995463,-0.038750927895308,-0.010575123131275],[-0.003835600335151,0.0027838151436299,0.007610026281327]],[[0.040291480720043,0.055682878941298,-0.099020831286907],[0.0096457889303565,0.051798842847347,-0.049451768398285],[-0.011177746579051,-0.052581287920475,0.03512118011713]],[[0.049773998558521,0.0022124310489744,-0.0083969328552485],[0.058523919433355,0.0014336731983349,0.0055895540863276],[0.01940979808569,-0.048742976039648,-0.0042424174025655]],[[-0.056671623140574,-0.02782854065299,0.0027865439187735],[-0.024920467287302,-0.02132722735405,-0.030207632109523],[0.071963995695114,-0.061793502420187,-0.015656659379601]],[[-0.069933339953423,0.054273463785648,0.0091111110523343],[-0.0030938570853323,-0.020429830998182,9.3804912467021e-05],[-0.021324118599296,-0.025371825322509,0.021084554493427]],[[0.043682843446732,0.01966143026948,-0.046171262860298],[-0.033980447798967,0.016271565109491,-0.0066123986616731],[0.0094985123723745,-0.021194696426392,-0.019892077893019]],[[-0.020227815955877,-0.0023409940768033,-0.0097261779010296],[0.015427796170115,-0.019591258838773,-0.00059911410789937],[0.054682243615389,0.023363279178739,-0.028208071365952]],[[-0.0044642351567745,0.0035555795766413,0.0064230244606733],[-0.053180493414402,0.023838797584176,0.044716060161591],[0.0088950283825397,-0.025954838842154,-0.0004217405221425]],[[-0.0023688790388405,0.0012004844611511,-0.0084204962477088],[0.028784273192286,-0.011466464027762,0.010439288802445],[0.030925184488297,-0.015942791476846,0.0025916299782693]],[[0.070241279900074,0.01594472117722,-0.040652770549059],[0.018463769927621,-0.016356166452169,0.013719324022532],[0.068843483924866,-0.0036019885446876,-0.032493636012077]],[[0.080824233591557,-0.020443374291062,0.012557760812342],[-0.021123751997948,0.0075971311889589,0.015446256846189],[0.018488435074687,0.014327229931951,0.058303143829107]],[[0.0096220849081874,-0.042143952101469,0.055905610322952],[-0.0028643910773098,0.024571392685175,0.043027494102716],[-0.073209166526794,0.05985676124692,0.079997658729553]],[[0.03615502640605,0.05755153298378,-0.0064927330240607],[-0.016093192622066,0.051321011036634,-0.049314547330141],[0.026601349934936,-0.030208436772227,0.043750181794167]],[[0.00083312083734199,-0.021685656160116,-0.0025168715510517],[0.032519515603781,-0.036112785339355,0.021076273173094],[0.034829705953598,0.0011268969392404,0.050205431878567]],[[-0.0095845069736242,-0.062253657728434,0.0052210930734873],[-0.030344989150763,-0.038620643317699,-0.079102352261543],[-0.0045348922722042,0.04349060356617,0.0076783378608525]],[[-0.040017765015364,-0.017064865678549,0.00069342594360933],[0.077127449214458,0.0079104611650109,0.0044038803316653],[0.069470003247261,0.017208816483617,0.026519440114498]],[[-0.0036402251571417,0.066363908350468,-0.005226765293628],[-0.02168370038271,0.012349982745945,-0.018357207998633],[0.010284113697708,0.015811180695891,-0.062742739915848]],[[0.014577517285943,0.051640797406435,-0.031202044337988],[-0.012897637672722,0.024659641087055,-0.071923926472664],[2.7849528123625e-06,-0.039383742958307,-0.047350309789181]],[[0.035368911921978,-0.0043653273023665,0.054618570953608],[0.0018306071870029,-0.051310732960701,0.050913330167532],[0.054514177143574,-0.025219848379493,0.01441462431103]],[[0.052291847765446,0.0023864870890975,-0.013938842341304],[0.010741606354713,0.013485362753272,0.018901228904724],[0.015652325004339,-0.04271948710084,-0.036062207072973]],[[0.027512341737747,0.0056709419004619,0.00073806243017316],[0.050994072109461,-0.013556127436459,0.031152941286564],[-0.030543113127351,0.00035562244011089,-0.022489633411169]],[[0.026638777926564,-0.036347344517708,-0.023226780816913],[0.019138822332025,0.058549277484417,-0.0031977279577404],[0.065869338810444,-0.026614427566528,-0.040973585098982]],[[-0.027661997824907,0.038095973432064,0.030641458928585],[0.021440308541059,0.020980406552553,0.035531930625439],[0.0263951420784,0.010946502909064,-0.0067974654957652]],[[-0.024872787296772,0.056692469865084,0.03379537537694],[-0.018706262111664,0.0015145391225815,-0.037354130297899],[0.02476754039526,0.014147531241179,-0.02709618024528]],[[-0.038081228733063,0.013080550357699,-0.040872864425182],[0.060174960643053,0.0046941349282861,0.043943203985691],[-0.0055177127942443,0.046638712286949,0.040252480655909]],[[0.0020696942228824,-0.0041592875495553,0.020867850631475],[-0.0034919534809887,0.00066881743259728,-0.024606252089143],[0.012409038841724,-0.0056684128940105,0.039731532335281]],[[-0.083600096404552,-0.048788212239742,-0.0415960252285],[0.08322923630476,0.03434781730175,-0.0034408366773278],[0.039724782109261,-0.01956825517118,0.0025667038280517]],[[-0.01295102853328,-0.00060279731405899,0.020894216373563],[-0.04513768851757,-0.04194838181138,0.018055161461234],[0.017452457919717,-0.060224626213312,0.040165960788727]],[[-0.0050121415406466,0.016326379030943,-0.0061934157274663],[-0.034152545034885,0.0097641702741385,0.0071880756877363],[-0.031834337860346,-0.0013946136459708,-0.0050310641527176]],[[-0.0031222330871969,-0.026255587115884,0.052400268614292],[0.0444001480937,-0.0024004497099668,-0.0036813772749156],[0.05776995792985,-0.072241127490997,-0.01249647513032]],[[-0.023635912686586,-0.026373866945505,0.00031845315243118],[0.018565798178315,-0.04614470526576,0.016641123220325],[-0.010576695203781,-0.033697340637445,-0.0043417350389063]],[[0.047503050416708,0.014206911437213,-0.045414313673973],[0.030153352767229,0.04906453192234,0.0068099526688457],[0.035254407674074,-0.0071886330842972,-0.051292181015015]],[[0.053971104323864,-0.018599476665258,-0.0263078995049],[-0.042495485395193,0.029469832777977,-0.0033514671958983],[0.057388119399548,-0.022958900779486,-0.023984046652913]],[[-0.001322417287156,0.0071801533922553,0.0056590079329908],[0.082304432988167,-0.0065153082832694,-0.053648687899113],[-0.04176177456975,-0.045066636055708,0.024504363536835]],[[-0.070095844566822,0.015092994086444,0.059018142521381],[-0.011310638859868,0.0186587870121,0.055885206907988],[0.0038385998923331,-0.041934799402952,-0.021046405658126]],[[-0.021890414878726,-0.089688174426556,0.017314452677965],[0.066302783787251,-0.0026947152800858,-0.0049249385483563],[0.069600731134415,0.029480250552297,0.051582269370556]],[[-0.03112274967134,0.01598528586328,-0.016613863408566],[-0.0055336710065603,0.019132565706968,0.050136838108301],[-0.03146942332387,0.049987472593784,-0.063337124884129]],[[-0.025806192308664,-2.3693399270996e-05,0.059895314276218],[-0.018462497740984,-0.010518589988351,0.016875714063644],[0.05300235748291,0.0058848825283349,0.0027183284983039]],[[0.039701133966446,-0.015828406438231,-0.023603649809957],[-0.046293593943119,0.015283706597984,0.057346098124981],[0.01170174498111,-0.013156034052372,-0.00095308158779517]],[[0.0084526231512427,0.025680851191282,0.017139406874776],[-0.056425768882036,0.030460804700851,0.058224342763424],[-0.022739557549357,0.0039885262958705,0.012207533232868]],[[-0.018609872087836,-0.035162322223186,0.050576202571392],[0.029437029734254,-0.038312204182148,0.030841425061226],[-0.037464924156666,-0.038436144590378,-0.020417420193553]],[[0.044897384941578,0.021707409992814,0.021857807412744],[-0.034654349088669,0.014151247218251,0.02387854270637],[-0.00044906613766216,0.040647994726896,-0.013964273035526]],[[-0.0075313388369977,0.0028486526571214,0.025925805792212],[0.01390119921416,0.042360432446003,-0.043522037565708],[-0.041534874588251,-0.080211944878101,-0.024828318506479]],[[-0.0028792389202863,-0.019054304808378,-0.0079768588766456],[0.050046101212502,0.012437117286026,0.014688194729388],[0.065280206501484,0.022166412323713,-0.0018392932834104]],[[0.01781695522368,0.0044177304953337,-0.0067315134219825],[0.028826924040914,0.0470518656075,0.063624523580074],[0.040922187268734,-0.036471545696259,-0.023792846128345]],[[0.038637273013592,0.019212901592255,0.024567745625973],[-0.0020598056726158,-0.031199470162392,-0.035505995154381],[0.028274497017264,0.0057334187440574,-0.024759504944086]],[[-0.040226183831692,-0.014601743780077,0.060587786138058],[0.043861508369446,0.013102978467941,-0.037787925451994],[-0.019017281010747,0.0094766393303871,0.043300602585077]],[[0.0031354371458292,-0.045526769012213,0.0099356938153505],[0.060803819447756,-0.014447679743171,-0.07989239692688],[0.024596700444818,-0.0092578502371907,0.029261885210872]],[[0.013027500361204,0.025604570284486,-0.023054393008351],[-0.016940103843808,0.010162182152271,-0.01294157654047],[-0.0059040104970336,-0.03216552361846,-0.038093596696854]],[[0.06435964256525,-0.055880468338728,0.0037186546251178],[0.035293206572533,0.0029989753384143,0.027574092149734],[-0.063660763204098,0.0017141893040389,0.054898299276829]],[[0.0089595299214125,-0.023563450202346,-0.042382083833218],[-0.024589523673058,-0.052216533571482,-0.00028695067157969],[0.05997447296977,-0.043848175555468,0.043004550039768]],[[-0.069582290947437,0.066820964217186,0.032544914633036],[0.0017087932210416,0.0052103162743151,0.021752214059234],[0.036766197532415,0.037978459149599,0.042642291635275]],[[0.012260528281331,0.012282389216125,-0.059362135827541],[0.0042391885071993,0.084138035774231,-0.0057635251432657],[-0.041866157203913,-0.041311644017696,0.025968085974455]],[[-0.040134325623512,-0.044447556138039,-0.010610660538077],[-0.016050079837441,0.015773106366396,0.032492026686668],[0.014014506712556,0.035977598279715,0.023983046412468]],[[-0.023383799940348,0.0025614835321903,0.043742574751377],[0.016810150817037,-0.022796783596277,0.024132922291756],[0.0094233592972159,-0.0098369410261512,-0.013193141669035]],[[-0.024636024609208,0.0028061212506145,0.011574098840356],[-0.041318405419588,-0.0011902033584192,0.021684020757675],[0.023468282073736,0.027437141165137,0.068706750869751]],[[-0.033660627901554,0.046123862266541,-0.061900492757559],[0.03298307582736,0.033937372267246,0.0072577730752528],[0.071604087948799,0.00033537024864927,0.017620446160436]],[[0.0373545140028,-0.073303066194057,-0.015180923044682],[-0.0093718953430653,0.0097396392375231,-0.006696886382997],[0.03552158921957,-0.033004507422447,-0.03488889709115]],[[-0.038653183728456,0.036880679428577,0.037426970899105],[-0.080961264669895,-0.0043544601649046,0.0074120000936091],[-0.012049537152052,0.0062100514769554,-0.0065524773672223]],[[0.046900987625122,0.0039617093279958,0.017367394641042],[0.020959356799722,0.018091300502419,-0.024987453594804],[0.00040915934368968,0.054274465888739,-0.054076418280602]],[[-0.0051679238677025,0.015808282420039,0.022546106949449],[0.066763304173946,-0.03082905896008,-0.010252902284265],[0.054386980831623,-0.018070973455906,0.011863469146192]],[[0.031772464513779,0.0056056454777718,0.026096342131495],[0.053638342767954,-0.06566147506237,-0.016318082809448],[0.03507349267602,0.0072760675102472,-0.011421576142311]],[[0.039378467947245,0.047099873423576,-0.0085146287456155],[0.03525372967124,0.0034830903168768,-0.080119758844376],[-0.046217292547226,-0.0058098658919334,0.015492625534534]],[[-0.0081754885613918,-0.022840743884444,-0.053303919732571],[-0.013798338361084,0.025424033403397,0.027349961921573],[0.00081459275679663,0.02297936193645,0.018224008381367]],[[-0.025123318657279,-0.063452757894993,-0.032668843865395],[0.066831156611443,-0.012167613022029,0.0038578752428293],[0.063271030783653,-0.078522123396397,0.057523250579834]],[[0.019184099510312,0.012212928384542,-0.020143829286098],[0.014893490821123,0.032977648079395,-0.043615717440844],[0.031771138310432,-0.046020537614822,0.011290961876512]],[[0.086659319698811,-0.024029495194554,0.027928378432989],[-0.02813602052629,-0.0051331580616534,-0.0072359279729426],[0.0073620141483843,-0.014394193887711,0.010970715433359]],[[-0.0032604283187538,0.067008219659328,-0.016218427568674],[-0.0045485193841159,-0.051603805273771,-0.020162681117654],[0.066577173769474,-0.037248700857162,-0.018396498635411]],[[-0.00093442009529099,0.010202233679593,-0.005288653075695],[-0.00012949090159964,0.06103603169322,-0.021045904606581],[0.0040296358056366,0.0061886082403362,-0.02341034822166]],[[0.035932995378971,0.022367166355252,-0.044337432831526],[0.038923926651478,-0.046503163874149,0.0041911220178008],[0.0098628988489509,0.035958636552095,-0.032478060573339]],[[-0.071725584566593,-0.032076671719551,0.045812711119652],[-0.050046153366566,0.0060561560094357,0.059140171855688],[0.04110636562109,-0.023250097408891,-0.0071520451456308]],[[-0.023213149979711,0.072503760457039,-0.068719394505024],[-0.014049036428332,0.075994938611984,0.063193283975124],[0.0027092355303466,-0.015464194118977,-0.042287103831768]],[[-0.017219118773937,-0.019296761602163,-0.015572157688439],[-0.030121834948659,0.08135661482811,-0.024033343419433],[0.023241691291332,-0.014091682620347,-0.0083129154518247]],[[0.013679659925401,0.029322417452931,-0.045062523335218],[0.08229261636734,-0.031469330191612,0.010799519717693],[0.022473823279142,0.023351458832622,0.0021935252007097]],[[0.02093580365181,0.039836723357439,-0.043641179800034],[0.00084932730533183,-0.054888378828764,0.041343569755554],[-0.021035524085164,0.0086394725367427,0.034235633909702]],[[-0.037690956145525,-0.01844784617424,0.035153228789568],[-0.024060662835836,-0.0067879185080528,-0.01993210054934],[-0.0018383136484772,-0.051011770963669,0.017311157658696]],[[0.030080130323768,0.0040270839817822,0.010173168033361],[-0.012409709393978,0.028037568554282,0.042315497994423],[0.061444871127605,0.0004847401578445,0.021921068429947]],[[0.030466228723526,0.03927293419838,-0.066646367311478],[-0.027534477412701,0.0042278906330466,-0.052878051996231],[0.038112331181765,-0.016138048842549,0.018257778137922]],[[0.016619086265564,0.036243427544832,0.0050380062311888],[0.043805953115225,-0.0057886680588126,-0.0011583715677261],[0.044050719588995,-0.0377889983356,-0.070202775299549]],[[-0.0086040515452623,0.02915109321475,0.00055267877178267],[0.051845066249371,-0.0031947689130902,0.03186334297061],[0.029633808881044,-0.0052601285278797,0.013961296528578]],[[0.01131176110357,0.024696212261915,-0.011450871825218],[0.065683253109455,0.018293665722013,0.02993443608284],[-0.022313795983791,-0.0055697867646813,-0.067780010402203]],[[0.010784510523081,0.033014860004187,0.020468313246965],[0.016376288607717,0.04829603433609,0.048567719757557],[0.010043798945844,-0.007898555137217,0.0057754931040108]],[[-0.024800511077046,-0.097808219492435,0.069624289870262],[-0.027863636612892,-0.059652846306562,0.025311402976513],[0.019889457151294,-0.011588964611292,0.0083281463012099]],[[0.0075557879172266,0.059522986412048,0.016559179872274],[0.057561300694942,-0.059662126004696,0.036994721740484],[-0.034783806651831,-0.044202268123627,-0.017060728743672]],[[0.056507859379053,0.00041992418118753,0.0096137095242739],[-0.05906230583787,-0.069363676011562,-0.021497871726751],[-0.002077390672639,0.035094246268272,0.03113110922277]],[[-0.021434752270579,-0.022477900609374,0.017258208245039],[0.0025065504014492,0.0050641628913581,0.021028922870755],[0.032132964581251,0.048886716365814,0.076379261910915]],[[-0.029549254104495,-0.041727673262358,0.039757464081049],[-0.01501249987632,0.015756748616695,-0.012918967753649],[-0.024893078953028,0.0024843669962138,0.03256681188941]],[[0.0042434395290911,-0.0033826432190835,0.0015254593454301],[0.012667892500758,0.0076686232350767,0.070549845695496],[0.064229719340801,-0.028724409639835,0.022335972636938]],[[0.014740822836757,0.025229781866074,0.017739800736308],[-0.016920791938901,0.031383704394102,-0.022960280999541],[0.0018723823595792,-0.040224734693766,-0.049080740660429]],[[-0.12334985285997,-0.048702910542488,-0.031929388642311],[-0.087749488651752,-0.023608598858118,-0.079912759363651],[-0.010025347582996,-0.085620403289795,-0.054032407701015]],[[-0.0052831233479083,-0.053739540278912,-0.0019411121029407],[0.021627172827721,-0.025369931012392,0.076987326145172],[-0.022412268444896,0.056477077305317,-0.013250876218081]],[[0.011936551891267,0.036094035953283,-0.025053329765797],[0.0063956337980926,0.031549427658319,0.0056238966062665],[-0.019936334341764,0.066646963357925,0.010982089675963]],[[-0.0016953512094915,-0.057366922497749,0.0052034594118595],[0.010885367169976,0.050977371633053,-0.045175060629845],[-0.015181376598775,0.0056336270645261,0.00078038545325398]],[[0.077595487236977,-0.045069351792336,0.03687410056591],[0.055559173226357,0.01278671529144,-0.020936850458384],[0.011155361309648,-0.020095508545637,-0.014488028362393]],[[-0.02367983199656,0.079379171133041,-0.02024875767529],[-0.061644624918699,-0.011307473294437,0.062147997319698],[0.028281338512897,-0.038106609135866,0.020060973241925]],[[-0.032579410821199,-0.016376003623009,0.037100855261087],[0.040278881788254,0.024399060755968,-0.065680406987667],[-0.01798278465867,-0.016352096572518,0.066144295036793]],[[0.01716592349112,-0.031469833105803,-0.0029471071902663],[-0.0030892412178218,-0.030180666595697,0.0060297353193164],[0.027283800765872,-0.06724688410759,0.030180711299181]],[[-0.015568557195365,-0.013173956423998,-0.012345445342362],[0.067154921591282,-0.049673795700073,0.096572078764439],[-5.6142605899367e-05,-0.09252005815506,0.0073140659369528]],[[-0.026600262150168,-0.0033176238648593,0.031943347305059],[-0.014785991050303,-0.041243765503168,-0.048645406961441],[0.0085722822695971,0.051203206181526,0.0048572337254882]],[[-0.021125951781869,-0.017344171181321,-0.017347324639559],[-0.0055867107585073,0.021003844216466,-0.0075836423784494],[0.0089419763535261,0.033579766750336,-0.038242742419243]],[[0.006619883235544,-0.0485685095191,-0.003377222456038],[0.049927171319723,0.010004140436649,0.011955880559981],[-0.054239954799414,0.019211184233427,-0.011320671066642]],[[-0.028747119009495,-0.037974029779434,0.057221241295338],[-0.035829644650221,-0.071008704602718,0.037672601640224],[0.031758230179548,0.006398347672075,-0.0059494413435459]],[[0.038398142904043,-0.03320624679327,-0.035354062914848],[-0.020588686689734,0.014383541420102,-0.00047256343532354],[0.013726069591939,0.087826818227768,0.024275075644255]],[[0.020278807729483,-0.022426700219512,-0.017645115032792],[-0.015405520796776,0.016608348116279,-0.029563149437308],[0.056409824639559,0.014953448437154,0.0014534095535055]],[[0.031698886305094,0.0077707641758025,-0.033554490655661],[0.013847696594894,-0.015586492605507,-0.034175254404545],[-0.041833139955997,0.023576509207487,0.0001503107487224]],[[0.0002125593891833,0.046599749475718,-0.029320653527975],[-0.0092370836064219,0.049464177340269,0.022478150203824],[0.06368475407362,-0.021813832223415,0.065225087106228]],[[0.014659328386188,0.052362971007824,0.0052970279939473],[0.020434631034732,-0.035610321909189,-0.017427435144782],[-0.064573280513287,0.034589622169733,-0.019513729959726]]],[[[-0.038399282842875,-0.024977928027511,0.063467875123024],[-0.05273263156414,0.0039836196228862,0.11913126707077],[-0.0097629614174366,0.13456754386425,0.16367921233177]],[[0.00055012456141412,0.052955843508244,0.085262477397919],[-0.036718394607306,0.020693842321634,-0.00050262681907043],[-0.017465924844146,0.041774973273277,-0.045391045510769]],[[0.019109597429633,-0.076027795672417,-0.027424834668636],[-0.048079289495945,-0.089345030486584,-0.046947184950113],[-0.006361183244735,0.08857137709856,0.029261335730553]],[[-0.21480658650398,0.15148904919624,0.062437608838081],[-0.032756961882114,-0.094052888453007,-0.11087690293789],[0.03821787238121,-0.0062761143781245,-0.17867578566074]],[[0.049618247896433,-0.042642038315535,0.026889866217971],[-0.016729727387428,0.019248653203249,0.034352757036686],[-0.022733042016625,-0.040439736098051,0.05154437944293]],[[-0.060852475464344,-0.011304631829262,-0.007907128892839],[-0.046486180275679,-0.011454114690423,-0.067634761333466],[-0.011603794060647,-0.038604252040386,-0.10076660662889]],[[0.039609771221876,0.039527028799057,0.14359365403652],[-0.077663578093052,-0.025517897680402,0.12016463279724],[0.0047251549549401,-0.070206180214882,0.0095830569043756]],[[0.093517385423183,-0.065387755632401,-0.034436762332916],[-0.041050150990486,0.026463150978088,0.036508440971375],[-0.0044175186194479,-0.05503473430872,-0.026309881359339]],[[-0.064285799860954,0.0045050149783492,0.025062944740057],[-0.0074020498432219,-0.022682003676891,-0.11131389439106],[0.082518979907036,-0.017063848674297,0.052451938390732]],[[0.016039250418544,0.075156323611736,-0.052168909460306],[0.021749092265964,0.061632849276066,0.074675500392914],[0.079214923083782,0.10670920461416,0.02146977558732]],[[0.057677734643221,0.07761511951685,0.056193113327026],[0.021429972723126,-0.042499184608459,0.047535948455334],[-0.058624107390642,-0.047753509134054,-0.14179857075214]],[[0.040375620126724,0.065237678587437,0.012968708761036],[-0.045815702527761,-0.061705525964499,-0.063502103090286],[0.089201129972935,-0.0099229011684656,-0.072743229568005]],[[0.029809843748808,0.039042372256517,-0.11168324202299],[-0.0008181631565094,-0.052073590457439,-0.016065701842308],[0.063753023743629,0.01859475672245,0.10666682571173]],[[-0.012118625454605,-0.015992488712072,-0.10864793509245],[0.061657037585974,0.10345640033484,0.024830155074596],[-0.021643737331033,-0.034035474061966,0.014531470835209]],[[-0.070907317101955,0.0035762439947575,-0.040694270282984],[0.075190268456936,-0.033483255654573,-0.048942502588034],[-0.018128894269466,0.029493506997824,-0.0700424015522]],[[0.021094901487231,0.055316369980574,0.044801015406847],[-0.0017803033115342,-0.033820826560259,-0.037678837776184],[-0.035514000803232,0.021149475127459,0.043571680784225]],[[-0.015794299542904,-0.013160357251763,-0.06334874778986],[0.078076682984829,-0.038676187396049,-0.085853010416031],[0.038082081824541,0.0051445411518216,0.096318274736404]],[[0.0015972421970218,0.028910677880049,0.05844347551465],[-0.028068473562598,0.072144269943237,0.13456659018993],[-0.050568502396345,-0.036284875124693,0.074313275516033]],[[0.015464470721781,0.065515697002411,0.034774646162987],[-0.0082226525992155,0.043486207723618,-0.024684455245733],[-0.027578216046095,-0.00023394168238156,0.027499672025442]],[[-0.00074075296288356,0.031646765768528,0.0034876356367022],[-0.055015448480844,0.052408222109079,0.026229474693537],[0.057556863874197,-0.00096731097437441,-0.079560063779354]],[[-0.015878381207585,0.026478711515665,0.049652777612209],[-0.078982330858707,-0.026619138196111,-0.090171180665493],[0.0017618327401578,-0.15603959560394,-0.03770774975419]],[[0.053999271243811,0.053019437938929,0.054331105202436],[-0.019412169232965,0.0098104812204838,-0.0049641123041511],[-0.026595555245876,-0.029426859691739,-0.014232052490115]],[[0.025055298581719,0.037752576172352,0.0094101773574948],[0.012866604141891,-0.0027596480213106,-0.038195371627808],[-0.014391120523214,0.024717910215259,-0.06223726645112]],[[0.050454098731279,-0.032986264675856,0.059148691594601],[0.022821152582765,0.06080112978816,-0.019788298755884],[-0.0071637937799096,-0.01035216357559,-0.013073994778097]],[[0.13245443999767,0.081474259495735,-0.26080518960953],[0.10072499513626,-0.072696857154369,0.074890859425068],[-0.19973027706146,-0.043475579470396,0.065223798155785]],[[0.031979467719793,-0.03076034411788,0.1058149933815],[0.060464005917311,-0.019110655412078,0.031012296676636],[0.050547249615192,0.061115276068449,-0.015227808617055]],[[-0.035077452659607,-0.038659531623125,-0.051174979656935],[-0.037282172590494,-0.049561679363251,-0.036002732813358],[0.05384848639369,-0.012022264301777,-0.0058755213394761]],[[0.052073705941439,-0.060335449874401,0.010922655463219],[0.029091877862811,-0.049989808350801,-0.078950561583042],[-0.042855687439442,0.033497143536806,0.011200914159417]],[[-0.027956333011389,0.015343191102147,0.068037927150726],[0.0057426067069173,0.014713635668159,0.020890129730105],[-0.035120595246553,-0.10191178321838,-0.046740900725126]],[[0.028105748817325,-0.074162870645523,-0.021743452176452],[-0.047525353729725,0.089936695992947,0.039483610540628],[-0.09506694227457,-0.057638414204121,-0.082313500344753]],[[-0.022596379742026,-0.017572524026036,-0.020564325153828],[-0.024094447493553,-0.0058819479309022,-0.032972540706396],[-0.017170708626509,0.025581667199731,0.051774851977825]],[[0.028936250135303,-0.0024130614474416,0.04311079531908],[-0.068714782595634,0.012458443641663,-0.063854292035103],[0.0021910783834755,-0.044285006821156,-0.039887599647045]],[[-0.097031183540821,-0.10357338935137,-0.11660752445459],[-0.015919417142868,-0.0087416963651776,0.096187129616737],[0.076103515923023,0.13059104979038,0.043189931660891]],[[0.0054291794076562,-0.11323812603951,0.016918126493692],[-0.029508927837014,-0.020409611985087,-0.016552913933992],[0.03731369972229,0.09130984544754,0.060848325490952]],[[0.0609026029706,0.094184145331383,0.054739113897085],[0.016301391646266,0.1291528493166,0.018420884385705],[0.068998105823994,0.032254192978144,0.027181126177311]],[[-0.047293961048126,0.02105175703764,0.048256367444992],[-0.098761171102524,-0.05875351279974,-0.0030951681546867],[-0.064751043915749,-0.21712112426758,0.045099526643753]],[[0.011419284157455,0.14137469232082,0.016196234151721],[-0.041025936603546,0.06946288049221,-0.0039200778119266],[0.02735672518611,-0.029411245137453,-0.085797697305679]],[[-0.063855975866318,0.021747272461653,-0.12221106141806],[0.0049456688575447,-0.018431445583701,0.10453989356756],[-0.0098078586161137,-0.0012960797175765,0.061768483370543]],[[0.082962431013584,0.055437196046114,-0.05427136644721],[-0.02751930616796,-0.050915896892548,-0.0067246137186885],[-0.04274158552289,-0.06566146761179,0.031179886311293]],[[-0.080834358930588,-0.057862907648087,0.017030688002706],[0.055927101522684,-0.051091115921736,-0.037620488554239],[0.022350672632456,-0.050357006490231,0.055539947003126]],[[-0.057938229292631,0.047359392046928,-0.0047373566776514],[-0.027627941220999,-0.031414154917002,-0.017321115359664],[0.0063709900714457,0.07763884216547,0.039879839867353]],[[-0.045980647206306,0.01856491714716,-0.13069397211075],[-0.045368369668722,-0.084767691791058,-0.08340360969305],[-0.028408631682396,-0.022893050685525,0.024044321849942]],[[-0.068946495652199,-0.0025156873743981,-0.12243744730949],[0.11725626140833,-0.089221097528934,0.11560439318419],[0.06978465616703,0.061332155019045,-0.075184032320976]],[[-0.062764286994934,-0.016455953940749,-0.0080050872638822],[0.038970395922661,-0.036545440554619,0.019954610615969],[0.024877604097128,0.020065961405635,0.045145686715841]],[[-0.10947822779417,0.063831105828285,0.042577132582664],[-0.079648271203041,0.0067641865462065,0.052878674119711],[0.087041407823563,-0.047363456338644,-0.0056226681917906]],[[-0.095018185675144,0.073947057127953,-0.14595226943493],[0.03773545846343,-0.11246266961098,0.13731937110424],[-0.15932177007198,0.046312004327774,-0.068119592964649]],[[-0.0029189067427069,-0.00054366508265957,0.039558880031109],[0.035533014684916,0.060552451759577,-0.06824753433466],[0.037200048565865,0.0050245495513082,-0.037593439221382]],[[0.012086252681911,-0.048542086035013,-0.023077132180333],[0.05005582049489,-0.010421994142234,-0.019361322745681],[0.022473385557532,0.0037021867465228,0.058225147426128]],[[0.029752302914858,-0.027868760749698,0.0013605013955384],[0.051233187317848,-0.0079519106075168,0.016861233860254],[0.046747490763664,0.03400618955493,0.10404404252768]],[[-0.0074202325195074,-0.002005017362535,-0.041475765407085],[0.031714085489511,-0.043670069426298,-0.078450441360474],[0.026141947135329,0.053553774952888,-0.0019814288243651]],[[-0.041242375969887,0.0037593708839267,-0.048232212662697],[-0.069906987249851,0.081714868545532,-0.0030504793394357],[0.064158163964748,0.022074207663536,-0.027790505439043]],[[0.008288336917758,0.014187498018146,-0.012699321843684],[0.005783739965409,0.03464138135314,-0.089168973267078],[0.014464651234448,-0.02795734256506,-0.0071464539505541]],[[0.012884463183582,-0.0030030047055334,-0.072678990662098],[0.020884400233626,0.014892863109708,-0.010639402084053],[-0.058621007949114,-0.0022395085543394,0.033779580146074]],[[-0.051711022853851,-0.073293000459671,0.01721147634089],[0.0082255499437451,0.033757857978344,0.025411242619157],[-0.024089395999908,-0.020080029964447,0.060144081711769]],[[0.030262676998973,0.007468422409147,-0.060895558446646],[0.0036400302778929,0.14329758286476,0.12281946837902],[-0.054828569293022,-0.0076781711541116,-0.003584323450923]],[[0.078246019780636,-0.033111326396465,-0.032897334545851],[0.043268091976643,0.022566363215446,0.029253717511892],[-0.045965135097504,0.022520979866385,-0.10947758704424]],[[0.057281110435724,-0.011421115137637,-0.012901318259537],[-0.065129123628139,0.026361603289843,-0.0065565388649702],[0.026483654975891,0.090634934604168,-0.064699597656727]],[[0.0096661914139986,-0.035974495112896,-0.012544573284686],[0.0084230378270149,-0.037108708173037,0.049126412719488],[-0.026565913110971,0.00222412426956,0.004033321980387]],[[0.0090906890109181,-0.019949490204453,-0.034258924424648],[-0.057948026806116,0.016794262453914,-0.11738190799952],[0.036929663270712,0.059614643454552,0.058608587831259]],[[0.0028923936188221,0.074633993208408,-0.031653609126806],[-0.087024062871933,-0.011320158839226,-0.056829147040844],[0.028403285890818,0.06367477029562,-0.024465102702379]],[[-0.044295448809862,-0.019002037122846,-0.029406445100904],[0.0040120165795088,-0.12104492634535,-0.12261721491814],[-0.053818967193365,-0.0897261723876,-0.16407509148121]],[[-0.057370077818632,0.045257799327374,-0.11716510355473],[-0.019254287704825,0.084518186748028,-0.054795183241367],[-0.021191284060478,-0.010738719254732,0.043364714831114]],[[-0.0063998647965491,-0.037520173937082,-0.061092227697372],[0.0012342939153314,-0.068009316921234,0.038410987704992],[0.013045573607087,-0.049024861305952,0.064690761268139]],[[0.14564336836338,0.058451451361179,0.066259190440178],[-0.033004853874445,-0.012661878019571,-0.081902973353863],[0.036325048655272,-0.063096225261688,-0.048671316355467]],[[-0.0059415609575808,0.011492434889078,-0.093878321349621],[0.090526960790157,-0.048354856669903,0.031646464020014],[0.037106662988663,-0.010187975130975,0.00016900675836951]],[[-0.04824037104845,-0.088174901902676,-0.042244907468557],[0.043422151356936,-0.1040663421154,-0.070968948304653],[0.051705308258533,0.045730099081993,0.073775105178356]],[[-0.00079173629637808,0.028937216848135,-0.078513845801353],[0.028862504288554,-0.1006423458457,0.038866456598043],[0.0057702423073351,-0.0093362471088767,-0.062288347631693]],[[-0.095965646207333,-0.063965052366257,-0.040137968957424],[-0.044779900461435,-0.030195457860827,-0.00056276231771335],[0.041972003877163,0.011884578503668,0.071859881281853]],[[0.048479683697224,-0.06337533891201,-0.016713021323085],[0.039754565805197,-0.087255775928497,0.011611627414823],[0.064368836581707,-0.11037170886993,0.0091844368726015]],[[0.028160769492388,0.050069913268089,0.039052613079548],[-0.064134426414967,0.0016725077293813,0.010636001825333],[-0.017055155709386,0.025857508182526,0.001151179545559]],[[0.10190314799547,-0.067021586000919,-0.050160709768534],[-0.014307210221887,-0.044904105365276,-0.048966489732265],[-0.028263792395592,0.037796661257744,0.0060268053784966]],[[0.024378590285778,-0.038180138915777,-0.025693355128169],[0.0012836599489674,0.061431605368853,-0.049484074115753],[0.016364611685276,-0.026782985776663,0.072282947599888]],[[0.10175462067127,-0.061679892241955,0.0019844498019665],[-0.1038256958127,-0.099120043218136,-0.072334267199039],[-0.080920815467834,-0.034935295581818,0.032806444913149]],[[-0.035453405231237,-0.00083732232451439,0.044599689543247],[-0.034959070384502,0.028155999258161,0.033703431487083],[0.091885335743427,-0.020220883190632,0.051737938076258]],[[-0.027398355305195,0.055039923638105,0.073671840131283],[-0.082621827721596,-0.029448676854372,0.12565311789513],[0.095050506293774,0.077048070728779,0.057642005383968]],[[-2.4105062038871e-05,0.084468223154545,-0.020948762074113],[-0.017688192427158,0.0016807449283078,-0.075337424874306],[-0.046692527830601,-0.028367919847369,-0.0056843995116651]],[[0.045974634587765,0.01310707628727,-0.07884818315506],[-0.047925226390362,-0.036618947982788,-0.038677256554365],[-0.096125930547714,-0.048877313733101,-0.042130243033171]],[[0.14329582452774,0.016689153388143,-0.023347068578005],[0.03561607003212,0.0013452405110002,-0.060645684599876],[-0.068767003715038,0.038617931306362,-0.05631985142827]],[[-0.0050878338515759,-0.051958978176117,0.012594110332429],[-0.073340490460396,0.089660279452801,0.080038845539093],[0.071521818637848,-0.023410202935338,-0.039916135370731]],[[0.018962785601616,-0.11353472620249,-0.014626343734562],[-0.014315719716251,-0.072924099862576,-0.04203712195158],[0.074261948466301,0.02767495252192,0.053437627851963]],[[-0.083522461354733,-0.01123762037605,-0.060099393129349],[-0.0087321046739817,-0.012934201397002,0.020480923354626],[0.005183489061892,0.011523907072842,0.024081286042929]],[[0.079320706427097,0.13229128718376,-0.00052493327530101],[-0.015188683755696,-0.0027558843139559,0.056579947471619],[0.010187140665948,0.11226000636816,0.031657863408327]],[[0.032717425376177,0.074357621371746,-0.016878176480532],[0.064611539244652,-0.077428847551346,0.016458764672279],[0.038645129650831,0.015115279704332,0.078433386981487]],[[-0.067061044275761,0.0043571293354034,-0.062170889228582],[0.027553094550967,-0.014099455438554,0.014730548486114],[-0.0069207493215799,-0.015778353437781,0.035719744861126]],[[0.0054361755028367,0.025250762701035,0.018538916483521],[0.031497273594141,0.068068899214268,-0.054859597235918],[-0.032556708902121,-0.011197072453797,-0.0038537296932191]],[[-0.06652943789959,-0.068339943885803,-0.042725998908281],[-0.021607097238302,0.062322787940502,0.099809013307095],[0.056294996291399,0.010669366456568,0.011311995796859]],[[0.084031000733376,-0.00090074021136388,-0.091305881738663],[-0.074861042201519,0.016435317695141,0.099671073257923],[0.0093944855034351,-0.0081339152529836,0.095404237508774]],[[0.040378715842962,-0.048269111663103,0.019818155094981],[-0.021022506058216,-0.052908126264811,-0.0054447767324746],[0.0041913352906704,-0.013758595101535,0.032308977097273]],[[-0.10972804576159,-0.052263375371695,0.04831911996007],[-0.03710225597024,0.092686787247658,0.039770644158125],[-0.066036194562912,-0.030671710148454,-0.05100179836154]],[[-0.028380023315549,-0.042236942797899,0.15185238420963],[-0.058569487184286,-0.073785275220871,0.0058299279771745],[-0.054656777530909,0.072452418506145,-0.0386050529778]],[[0.0048332898877561,0.043854463845491,-0.030965970829129],[-0.02516283094883,-0.070922367274761,0.040193445980549],[-0.0099182361736894,0.010415420867503,0.045438095927238]],[[0.037800095975399,0.073465883731842,0.052724607288837],[-0.04932302236557,-0.035658538341522,-0.032817736268044],[0.011598006822169,-0.035370290279388,-0.038201574236155]],[[0.026173230260611,0.069661982357502,0.029075153172016],[0.0044215018860996,0.12021828442812,-0.13603983819485],[-0.028676996007562,-0.020613070577383,0.010812401771545]],[[0.044910222291946,0.076358668506145,0.015791445970535],[0.039985932409763,0.070237196981907,0.088546946644783],[0.088560827076435,0.071856021881104,0.020816536620259]],[[0.017113391309977,-0.021291771903634,-0.079619191586971],[-0.037925653159618,0.014106963761151,-0.02426864951849],[-0.0080386754125357,0.063877157866955,-0.096434623003006]],[[0.0083291167393327,-0.033952441066504,-0.0083911055698991],[0.052021335810423,0.022507257759571,-0.0841363966465],[0.12210468202829,0.0066487500444055,0.014035079628229]],[[-0.03604194894433,0.013297393918037,0.011853381991386],[-0.00607705488801,-0.032881300896406,0.0042885164730251],[-0.047057937830687,-0.0034936796873808,0.0097123449668288]],[[-0.10025072842836,-0.013981983065605,-0.096708901226521],[-0.04638347029686,0.079920783638954,0.031343098729849],[0.049172144383192,0.013384937308729,-0.069488510489464]],[[-0.12665444612503,0.03086506947875,0.064445234835148],[0.025022806599736,0.035283584147692,0.019253347069025],[0.036270804703236,0.013894870877266,-0.0038098325021565]],[[0.13054610788822,-0.060895208269358,-0.068030752241611],[-0.13675697147846,0.19645439088345,0.019674517214298],[0.14266331493855,-0.057190991938114,0.039187088608742]],[[0.015923164784908,0.020495880395174,0.11053236573935],[-0.017093190923333,-0.041394162923098,-0.0032693415414542],[0.026614844799042,0.10547957569361,0.052350018173456]],[[-0.043246328830719,0.025874212384224,-0.0079740975052118],[-0.033306404948235,0.047984048724174,-0.0044813766144216],[-0.02099147439003,-0.0079709244892001,0.043431296944618]],[[0.05029284954071,0.020343700423837,-0.057386327534914],[-0.013440131209791,-0.10672955960035,-0.036618918180466],[-0.08276492357254,0.0057040988467634,0.038559515029192]],[[0.02838022634387,0.053150951862335,0.024541519582272],[-0.042069740593433,-0.00051370717119426,-0.006776612251997],[0.005819134414196,-0.006227632984519,0.0068890051916242]],[[-0.0084490617737174,-0.0552928596735,-0.050490669906139],[-0.056096039712429,0.028576709330082,0.030504878610373],[0.02848987467587,0.040215082466602,0.0023475692141801]],[[-0.049273118376732,0.0087750982493162,0.12956343591213],[-0.0053030150011182,-0.031559072434902,0.022958736866713],[-0.082376286387444,-0.075646281242371,0.065000593662262]],[[0.0091497432440519,0.06708500534296,0.036346398293972],[-0.0070659816265106,-0.032707259058952,0.015477693639696],[0.0058808443136513,-0.11076364666224,-0.1099247187376]],[[-0.014318547211587,-0.016822706907988,0.015555500052869],[0.020885463804007,-0.056875307112932,0.039493594318628],[-0.043029543012381,0.076029159128666,-0.0021358395460993]],[[0.048199024051428,-0.0069435103796422,-0.028112847357988],[-0.0039162952452898,-0.030070556327701,0.057688008993864],[-0.039488863199949,0.028699362650514,0.027724519371986]],[[0.016838686540723,-0.035201460123062,-0.02369193919003],[-0.011057904921472,0.024675140157342,-0.043619759380817],[0.0031956760212779,0.026727506890893,0.041720606386662]],[[0.031658161431551,0.017245357856154,-0.00012898839486297],[0.0035748549271375,-0.001412843237631,0.015473422594368],[-0.016691850498319,-0.013899295590818,-0.024433122947812]],[[-0.023394867777824,0.042523495852947,0.039880685508251],[0.015697987750173,0.061750661581755,0.0079187843948603],[0.012568379752338,-0.089978612959385,0.029141953215003]],[[-0.10827144235373,-0.080838955938816,0.025599962100387],[-0.028604539111257,-0.055346608161926,-0.0019312511431053],[0.05673960223794,0.13555492460728,0.024575158953667]],[[0.03807195276022,-0.027887035161257,-0.019524104893208],[-0.1125992462039,-0.0088041881099343,0.033027738332748],[0.034615766257048,0.023883681744337,0.047460690140724]],[[-0.095235742628574,-0.020104272291064,-0.036892212927341],[-0.082617908716202,-0.0060994494706392,-0.061615277081728],[0.00088827591389418,0.13344305753708,0.055237103253603]],[[0.10866975784302,0.011562479659915,0.010609094053507],[-0.024850334972143,-0.054297383874655,-0.083169892430305],[0.0086284773424268,0.042741857469082,-0.060428697615862]],[[-0.062586717307568,0.024568805471063,0.0029277773573995],[-0.018919836729765,-0.048838064074516,0.031309798359871],[-0.017482275143266,-0.067849330604076,0.0066796750761569]],[[-0.034442361444235,0.045314364135265,-0.010071566328406],[0.013585987500846,0.022343471646309,-0.04997307062149],[0.033370785415173,0.016861801967025,-0.0075644296593964]],[[-0.015732988715172,0.056100767105818,-0.058577157557011],[0.040197778493166,0.096948198974133,-0.041347648948431],[0.04902046173811,-0.054003290832043,-0.021689319983125]],[[0.013668792322278,-0.0079042417928576,-0.045980498194695],[0.070162557065487,-0.018916258588433,-0.050912320613861],[0.033091235905886,0.0074557820335031,-0.090201057493687]],[[-0.0094059724360704,0.029617939144373,-0.0088741695508361],[-0.038182217627764,0.013772063888609,-0.030547574162483],[0.060756970196962,-0.00091831758618355,-0.0042320764623582]],[[0.01612401381135,-0.040765382349491,0.01918239146471],[0.04977398365736,-0.046718962490559,-0.04919096082449],[-0.052940186113119,-0.10014379024506,-0.0040238457731903]],[[-0.021880919113755,-0.047037582844496,-0.080051839351654],[-0.054300535470247,-0.052130721509457,-0.16449388861656],[0.023048363626003,-0.0041064037941396,-0.077570952475071]],[[0.090366579592228,0.070868827402592,-0.062732212245464],[-0.00505978660658,0.054799724370241,-0.0120868999511],[-0.013455685228109,-0.020069129765034,0.0019635930657387]],[[0.067550130188465,-0.038600143045187,-0.017505126073956],[-0.024277115240693,-0.017301073297858,-0.095121964812279],[-0.022297630086541,0.016858398914337,-0.0080409348011017]],[[0.00080646976130083,-0.043254129588604,0.045469161123037],[-0.042180866003036,-0.026446780189872,0.044422212988138],[0.012659650295973,-0.055953182280064,-0.091239266097546]],[[-0.023744652047753,0.045196104794741,0.049802489578724],[0.052059732377529,0.016990872099996,0.068072259426117],[-0.1271713078022,-0.0032645484898239,-0.016138594597578]],[[0.0028689985629171,-0.065692417323589,-0.078602507710457],[0.038454953581095,0.0037236961070448,-0.019124835729599],[0.00064227735856548,0.12254275381565,0.032289944589138]]],[[[-0.021797591820359,0.016557963564992,-0.0018562524346635],[-0.044933263212442,-0.033337719738483,0.015705317258835],[-0.051721572875977,0.050163891166449,0.10791675001383]],[[-0.017232311889529,-0.028870210051537,0.11313530057669],[0.076948791742325,0.080868616700172,-0.11291684955359],[0.06465844810009,-0.11696229875088,-0.038816515356302]],[[0.0863888412714,8.3359584095888e-05,0.0099468603730202],[0.048654101788998,0.0085288966074586,-0.077716998755932],[0.021138343960047,-0.069989174604416,-0.044209491461515]],[[0.0024077503476292,0.005603161174804,0.002661568345502],[-0.089542657136917,0.0015926753403619,0.065785519778728],[-0.077384769916534,-0.0063262041658163,0.026463313028216]],[[-0.043654929846525,-0.0065031824633479,-0.012342258356512],[0.010419443249702,-0.068110376596451,0.053853899240494],[0.029178755357862,-0.053484357893467,-0.010480405762792]],[[0.0044954800978303,-0.019812408834696,-0.057294521480799],[-0.010441152378917,0.10564293712378,-0.016651110723615],[-0.09833087772131,-0.094824157655239,-0.039777610450983]],[[0.029941441491246,-0.067522212862968,0.083583779633045],[0.031124949455261,-0.014311548322439,-0.028588561341166],[-0.089288838207722,-0.067502468824387,0.028917670249939]],[[0.087930552661419,-0.014997714199126,-0.043501447886229],[0.02996014803648,0.04104845225811,0.003593006869778],[-0.0060255052521825,-0.025618636980653,0.028042180463672]],[[-0.12534222006798,-0.01708297431469,0.043925669044256],[-0.058463390916586,-0.12997484207153,0.0010773409157991],[-0.0105917500332,0.00051513081416488,0.071212105453014]],[[0.0073371334001422,0.034879926592112,-0.01660543680191],[0.087184250354767,-0.059632357209921,-0.054831154644489],[-0.091767333447933,-0.093083918094635,0.02322973869741]],[[-0.095449581742287,-0.042817369103432,-0.030210096389055],[-0.037976052612066,0.053533677011728,0.029921546578407],[-0.062925890088081,-0.094671234488487,-0.029245575889945]],[[-0.055310472846031,-0.024244409054518,-0.029874159023166],[0.017060361802578,-0.076556392014027,0.078691780567169],[-0.1170619726181,-0.0044811726547778,-0.060867890715599]],[[0.095722272992134,0.12416289746761,0.112891882658],[-0.092283964157104,0.037201084196568,-0.023774884641171],[0.053908083587885,0.064401216804981,0.0759472027421]],[[-0.029965763911605,-0.043604865670204,0.017033895477653],[0.067787319421768,-0.01694455370307,-0.030753999948502],[0.082548655569553,0.08596708625555,-0.06593406945467]],[[-0.11566054075956,-0.0092255491763353,0.0075705740600824],[-0.068554073572159,0.066328920423985,0.046753767877817],[0.032365400344133,0.00037118641193956,-0.091809689998627]],[[0.067683085799217,-0.063269935548306,-0.06226934120059],[0.051936034113169,-0.045831445604563,-0.084544286131859],[-0.027620863169432,-0.024425849318504,-0.0370689406991]],[[0.018188055604696,0.016751999035478,0.07520267367363],[-0.025079851970077,-0.091414146125317,0.02189565077424],[0.0198711194098,0.012363342568278,-0.023416044190526]],[[0.031641360372305,-0.030169874429703,-0.026709545403719],[-0.031124332919717,-0.056689951568842,-0.025683855637908],[-0.058972924947739,-0.0325628221035,-0.0079160882160068]],[[-0.016449956223369,0.10168509185314,0.080869860947132],[0.064440235495567,0.034194350242615,0.00018190589617006],[0.019115185365081,0.17114715278149,0.010974547825754]],[[-0.015708222985268,0.055197227746248,-0.0085246106609702],[-0.03727975487709,0.039972681552172,0.023757873103023],[0.0012022738810629,0.058355007320642,0.13893730938435]],[[-0.044769383966923,-0.015367243438959,0.047616817057133],[0.032249700278044,0.075877495110035,-0.064091585576534],[0.15872691571712,-0.057602945715189,-0.019595490768552]],[[0.068985231220722,0.021238418295979,0.020886993035674],[0.082590967416763,-0.018790367990732,-0.014957282692194],[-0.013174364343286,0.052433785051107,0.03945904225111]],[[0.10293678939342,-0.15900135040283,0.046703435480595],[-0.061845056712627,-0.0064456891268492,-0.030646082013845],[0.051134195178747,-0.093977488577366,-0.012149265035987]],[[-0.014632400125265,-0.01406017318368,0.028183689340949],[0.043783120810986,-0.010468014515936,0.074644289910793],[-0.06458406150341,-0.14303411543369,-0.028292205184698]],[[-0.043619655072689,-0.024853993207216,-0.038699086755514],[-0.0023194269742817,0.062307339161634,0.042564254254103],[-0.015276730060577,0.038405947387218,0.067843034863472]],[[-0.013851287774742,-0.018451482057571,0.019699413329363],[-0.019474443048239,-0.096932969987392,0.021143047139049],[0.022186521440744,-0.0073197744786739,0.0021769502200186]],[[-0.19136098027229,0.010433794930577,0.076857797801495],[0.0024112926330417,-0.11915674805641,-0.028023518621922],[-0.0019840886816382,0.0051660351455212,-0.24252231419086]],[[-0.24177676439285,0.0026001846417785,0.092717438936234],[-0.039841040968895,-0.10980144888163,-0.0020280862227082],[-0.018604101613164,0.025856874883175,-0.0095450095832348]],[[0.015907859429717,0.16039863228798,-0.073607057332993],[-0.18293778598309,0.062346957623959,0.046272806823254],[-0.074424363672733,0.13214495778084,0.0033704871311784]],[[-0.11240008473396,-0.0053087142296135,0.02580276876688],[-0.046456079930067,-0.096048310399055,-0.1079703271389],[-0.030947903171182,-0.037665113806725,0.023964798077941]],[[0.059885457158089,-0.047198310494423,-0.046181321144104],[0.051869101822376,-0.020102959126234,0.048572082072496],[0.038104925304651,0.047598861157894,0.0011881815735251]],[[-0.20316852629185,-0.16454239189625,0.025693623349071],[0.12481165677309,-0.09757424145937,-0.064305365085602],[0.071103632450104,0.011888922192156,-0.0065568992868066]],[[0.085274823009968,0.087408542633057,0.060853563249111],[-0.060243666172028,-0.023309079930186,0.15811167657375],[0.021522918716073,-0.048355858772993,0.012020925991237]],[[0.025115257129073,0.0063482448458672,0.016415575519204],[-0.026968998834491,0.031904891133308,-0.013891195878386],[0.068016283214092,-0.093685388565063,0.0074786199256778]],[[-0.0050602117553353,0.011020194739103,0.013612637296319],[0.038127403706312,0.0040887743234634,-0.04870218783617],[0.020054049789906,0.029260100796819,-0.017644301056862]],[[-0.0056792623363435,0.0044567193835974,0.012910715304315],[-0.055318243801594,0.0017541850684211,0.062386550009251],[0.010859145782888,0.029412126168609,-0.034253392368555]],[[0.071747288107872,-0.057310115545988,0.01965400390327],[0.088603958487511,-0.00084868789417669,-0.030687153339386],[-0.03921764343977,0.01842693798244,-0.040215384215117]],[[0.19850945472717,0.047887966036797,-0.0092737134546041],[0.018288744613528,0.054825626313686,-0.084474474191666],[0.032443419098854,-0.0085836900398135,-0.049815583974123]],[[-0.043588254600763,-0.061348229646683,-0.020102581009269],[0.0098198922351003,0.045963659882545,0.11771786957979],[-0.028954043984413,0.013541797176003,-0.020613791421056]],[[0.0030731183942407,0.049315042793751,-0.11655174940825],[0.073461674153805,0.046709757298231,0.0075768078677356],[0.062318202108145,0.057054687291384,0.12891644239426]],[[0.1577784717083,0.082518115639687,0.057334922254086],[0.097952678799629,-0.086681388318539,0.10248016566038],[0.13036893308163,0.046949036419392,-0.020133169367909]],[[-0.016722260043025,0.055387757718563,0.097232431173325],[-0.054764769971371,0.038966860622168,0.057939793914557],[0.031881812959909,0.015027267858386,-0.017191147431731]],[[-0.012816614471376,0.045297466218472,-0.031342424452305],[-0.014485587365925,0.028915489092469,0.053375221788883],[0.078550279140472,-0.012097087688744,0.054697446525097]],[[0.0004284005262889,-0.007757905870676,0.035043712705374],[0.020459208637476,-0.023638235405087,-0.033802695572376],[0.07230781018734,-0.030849253758788,-0.043543837964535]],[[-0.11806584894657,-0.035356715321541,-0.020042732357979],[-0.00019122766389046,0.027588536962867,0.03754560276866],[-0.011885396204889,0.022099107503891,0.042233131825924]],[[-0.0054919486865401,0.056745976209641,0.076885178685188],[0.037685304880142,0.046396512538195,0.046457383781672],[0.0057669770903885,0.0074304612353444,0.014887692406774]],[[-0.033539056777954,0.0064576044678688,0.016866436228156],[0.02497742138803,0.00071927084354684,-0.013923323713243],[0.0049257534556091,0.034947153180838,-0.023996481671929]],[[0.018639281392097,0.10025881230831,-0.0058909123763442],[-0.088933490216732,-0.040962107479572,-0.0089424373582006],[-0.023842724040151,-0.041044224053621,-0.05833587422967]],[[-0.084015510976315,-0.064590767025948,-0.043801672756672],[0.016060983762145,-0.006575524341315,0.0071478812023997],[-0.067825153470039,-0.085801117122173,0.046218790113926]],[[-0.09639822691679,0.055843584239483,0.14591147005558],[0.12122697383165,-0.052612543106079,0.087965250015259],[0.14381477236748,-0.0038619213737547,-0.1224897429347]],[[0.029275145381689,0.020102044567466,0.00024423358263448],[0.012353395111859,0.1309397816658,0.014775269664824],[-0.046121697872877,0.19792574644089,0.15241435170174]],[[0.055569931864738,0.016998009756207,-0.033367738127708],[0.0040347967296839,0.18999101221561,-0.023791033774614],[-0.016700895503163,0.068417526781559,-0.012992583215237]],[[-0.051253944635391,-0.013494271785021,0.01541296299547],[-0.0079655228182673,0.0070529072545469,-0.022918183356524],[-0.080996587872505,-0.037713784724474,-0.032963771373034]],[[0.12740460038185,-0.10209772735834,0.012911797501147],[0.11233480274677,-0.032498579472303,-0.0041126143187284],[-0.11268831789494,-0.1930558681488,-0.024029497057199]],[[0.058806013315916,0.026352984830737,0.00075655133696273],[0.038151878863573,0.070913411676884,-0.090894907712936],[-0.056934278458357,-0.038238666951656,-0.019222229719162]],[[0.01627442240715,-0.13622005283833,0.087939783930779],[-0.034206263720989,-0.15758764743805,-0.0030719742644578],[0.11430652439594,-0.092841804027557,-0.2182991951704]],[[-0.058721911162138,0.10972595214844,0.047170143574476],[0.10062582045794,-0.027954099699855,0.003540817881003],[-0.020862307399511,-0.029986504465342,0.016515154391527]],[[-0.021650606766343,-0.073564015328884,-0.043743047863245],[-0.011642392724752,0.048779774457216,-0.0056709451600909],[0.016429591923952,-0.082490928471088,0.082706667482853]],[[-0.050711944699287,0.073426850140095,0.038455963134766],[0.047919012606144,-0.043654415756464,-0.19302132725716],[0.087905019521713,-0.065461322665215,-0.029206665232778]],[[0.02786167152226,0.0046919449232519,-0.10241015255451],[0.082908481359482,0.026059966534376,-0.098378978669643],[0.093581698834896,0.072348386049271,-0.01619229093194]],[[-0.032391760498285,-0.0343878865242,-0.022037237882614],[-0.0093851899728179,0.0014720364706591,0.052335720509291],[-0.047182828187943,-0.067802540957928,-0.06914459168911]],[[-0.07039799541235,0.011752334423363,-0.068078279495239],[-0.0048273210413754,-0.050822623074055,0.071459397673607],[0.030193673446774,-8.0333324149251e-05,-0.069686397910118]],[[0.042067240923643,-0.07519043982029,0.016780223697424],[0.13789667189121,-0.026021912693977,-0.077806673943996],[-0.058816235512495,0.029464866966009,0.12797212600708]],[[-0.015582744032145,0.044247407466173,-0.054999019950628],[-0.023982720449567,0.089862860739231,0.0072775967419147],[-0.0088132815435529,0.028912387788296,-0.047167751938105]],[[-0.0032808361575007,0.033972103148699,-0.041461762040854],[0.015866192057729,-0.045957393944263,-0.058456011116505],[-0.020398240536451,-0.093909166753292,-0.085678115487099]],[[-0.046605795621872,-0.014115597121418,0.10726969689131],[-0.081602744758129,-0.0085826404392719,0.0027971784584224],[0.065629325807095,0.052193708717823,0.028555393218994]],[[-0.035800915211439,-0.02494184859097,0.14765028655529],[-0.051667306572199,-0.056000731885433,-0.072972565889359],[-0.0025008881930262,-0.0069349338300526,0.012595620937645]],[[0.075481250882149,0.0099785551428795,-0.023256370797753],[0.070602774620056,-0.15485320985317,-0.1531637609005],[0.0061435382813215,-0.14346301555634,-0.074477933347225]],[[0.10238779336214,0.061429269611835,0.072463259100914],[-0.0070906244218349,-0.0063158678822219,-0.050345290452242],[0.041980654001236,-0.011163395829499,0.048634130507708]],[[0.083040483295918,0.020872980356216,-0.10010071098804],[-0.024738555774093,0.017199883237481,-0.071595840156078],[0.086877979338169,0.0044140522368252,0.014962007291615]],[[-0.0066785542294383,0.010051751509309,0.064891681075096],[-0.11489108204842,-0.046534661203623,0.063423559069633],[-0.0067373476922512,0.077424727380276,0.087528936564922]],[[-0.033700700849295,0.11539494991302,0.025774743407965],[-0.055105227977037,-0.11336109042168,0.11367116868496],[-0.019686616957188,0.070071659982204,-0.16783206164837]],[[-0.10214868187904,0.031320903450251,-0.0068275253288448],[-0.078557468950748,-0.064192913472652,-0.074349090456963],[-0.030888922512531,-0.070312358438969,-0.037911929190159]],[[-0.12523104250431,0.062239229679108,0.065384425222874],[0.17968727648258,-0.089685015380383,-0.0067952661775053],[-0.066037580370903,-0.026616718620062,0.1037267819047]],[[-0.0331817753613,-0.067161187529564,-0.0061948774382472],[0.0084813116118312,0.010031300596893,0.089563526213169],[0.049038175493479,0.011229918338358,0.090903051197529]],[[-0.0066424086689949,0.034788772463799,-0.017670365050435],[-0.062670812010765,-0.061450090259314,-0.051846910268068],[-0.016274334862828,0.054934725165367,0.020247070118785]],[[-0.028945531696081,-0.046833232045174,-0.039425358176231],[-0.023938346654177,0.0086276093497872,0.011292797513306],[-0.060548774898052,0.046142350882292,0.11306381970644]],[[0.0094297211617231,0.12225855141878,0.099542334675789],[-0.043281994760036,0.052345912903547,0.00015263832756318],[0.021795615553856,0.038216568529606,-0.00013894151197746]],[[0.025200817734003,0.023122183978558,-0.013968671672046],[0.046774480491877,0.022895481437445,-0.025236098095775],[-0.038919802755117,-0.069406397640705,0.035198964178562]],[[-0.011099183000624,0.065824866294861,0.05395270884037],[0.024133838713169,-0.15484766662121,0.078584462404251],[0.032251890748739,0.016355648636818,0.053136467933655]],[[-0.092813700437546,0.01485113427043,-0.150883436203],[0.017169242724776,0.023616870865226,-0.085617564618587],[-0.03130355104804,-0.015352237969637,-0.0093799941241741]],[[0.022220132872462,0.04905841127038,0.018743339926004],[0.018316090106964,0.058692671358585,0.052480384707451],[0.044920239597559,0.055930200964212,-0.024426715448499]],[[-0.036460507661104,-0.061809416860342,-0.060922250151634],[-0.10120252519846,-0.021511858329177,0.015646420419216],[0.036582518368959,-0.073438607156277,-0.037164557725191]],[[-0.055620238184929,0.11502420902252,0.076021067798138],[0.039844982326031,0.19277311861515,0.010718927718699],[-0.024831373244524,0.087232172489166,0.062640599906445]],[[0.099436357617378,-0.0083789005875587,0.097565822303295],[0.0026016910560429,0.18798398971558,-0.026831859722733],[0.088257417082787,0.045948024839163,0.046493425965309]],[[0.0058643319644034,0.070325300097466,0.0075011602602899],[0.025273902341723,0.0059526013210416,-0.069385312497616],[-0.077835001051426,-0.024948690086603,-0.041097719222307]],[[0.10161922127008,-0.0029248930513859,-0.0042857988737524],[0.019687434658408,0.058359738439322,0.080298349261284],[0.10374681651592,0.080792911350727,-0.049221556633711]],[[-0.038004022091627,-0.062167309224606,0.037759751081467],[-0.056378975510597,0.038256302475929,-0.0027676704339683],[-0.03743402287364,-0.036526426672935,0.075869910418987]],[[-0.022776382043958,0.030322335660458,0.077703714370728],[0.046289831399918,0.031748324632645,0.060808606445789],[0.035227354615927,0.096093662083149,0.025606801733375]],[[0.001103856950067,0.018785137683153,-0.029932359233499],[-0.017359690740705,0.0082279732450843,-0.031014055013657],[0.060062792152166,0.048645317554474,-0.003337224945426]],[[-0.050861246883869,0.052712503820658,0.011184893548489],[0.044612571597099,-0.0057070553302765,0.044413473457098],[0.023474898189306,0.098862871527672,0.1343831717968]],[[-0.014473524875939,-0.04835082218051,-0.021457068622112],[-0.048929560929537,0.0020317742601037,-0.10522724688053],[-0.060647156089544,-0.056728687137365,-0.043600752949715]],[[0.015855025500059,0.0516047924757,-0.0086629055440426],[0.035811562091112,0.043414119631052,-0.0066264537163079],[-0.029008058831096,-0.062988184392452,-0.0018510994268581]],[[0.015230105258524,0.027094842866063,0.048639766871929],[0.0043507614172995,-0.085997603833675,-0.044215597212315],[0.089817017316818,-0.0085419388487935,-0.078599520027637]],[[-0.009075646288693,-0.028412241488695,-0.063159741461277],[0.048535775393248,0.0459607206285,0.0089785810559988],[0.03656717389822,0.031404595822096,0.0099391741678119]],[[0.064285010099411,0.013251848518848,0.0933458507061],[-0.0047613983042538,0.056563850492239,0.055000320076942],[-0.0098460698500276,-0.027006713673472,0.0038591218180954]],[[0.042930424213409,-0.0038475606124848,0.029185203835368],[-0.017938923090696,0.11558878421783,0.14550584554672],[-0.015359250828624,-0.13619714975357,-0.076533734798431]],[[0.040847200900316,0.07801515609026,0.077347457408905],[0.024530882015824,-0.058517079800367,-0.04505604878068],[0.024406725540757,-0.0039549246430397,0.019991448149085]],[[-0.0021690996363759,0.066306032240391,-0.054646547883749],[-0.0026805642992258,0.074849523603916,0.089259058237076],[0.038291230797768,0.053953781723976,0.027415143325925]],[[0.051149055361748,0.038381319493055,0.0024858720134944],[-0.0062879314646125,0.047102823853493,-0.014892698265612],[0.011311145499349,0.036640923470259,0.065860517323017]],[[-0.03341955691576,-0.02109694480896,0.015596528537571],[-0.069227494299412,0.00024153385311365,0.0075177913531661],[0.028016475960612,-0.038366738706827,-0.062515281140804]],[[-0.19751247763634,-0.0050117811188102,0.009100248105824],[-0.099986396729946,-0.09605647623539,0.06595715880394],[0.093544743955135,-0.097097009420395,0.075726076960564]],[[-0.025816645473242,-0.060091134160757,-0.021808026358485],[0.048125486820936,-0.030411714687943,-0.036348015069962],[-0.046406630426645,-0.085428103804588,0.015869764611125]],[[-0.065482757985592,-0.034279800951481,-0.0078194979578257],[-0.053362265229225,0.040925327688456,-0.030811622738838],[-0.069412797689438,-0.033512637019157,0.084298849105835]],[[0.0040872702375054,0.027885407209396,0.18412241339684],[-0.042750809341669,0.017812976613641,0.038951493799686],[-0.032131608575583,-0.045768138021231,0.048612900078297]],[[0.0062264581210911,0.079965375363827,0.083375319838524],[-0.12690132856369,0.0019189823651686,-0.013434090651572],[0.010652077384293,-0.042490679770708,8.2324171671644e-05]],[[-0.031036365777254,0.024267934262753,0.13989441096783],[0.012346900999546,-0.014955387450755,0.12339528650045],[-0.024982688948512,0.10845448076725,0.032027959823608]],[[-0.059490840882063,-0.044488403946161,-0.075132682919502],[0.1480874568224,-0.014189714565873,-0.12002359330654],[0.019073009490967,0.10925666242838,0.12329165637493]],[[0.095655374228954,0.015432415530086,0.077868476510048],[0.081118881702423,-0.11021803319454,-0.076178081333637],[-0.016838043928146,-0.10143608599901,0.0052522215992212]],[[0.025944367051125,-0.017790421843529,0.088067226111889],[0.0045945481397212,-0.041919779032469,0.022524002939463],[0.0023959642276168,-0.037952080368996,0.031709514558315]],[[-0.051823247224092,-0.064158633351326,-0.028308421373367],[-0.083644852042198,0.095127396285534,-0.0018726311391219],[-0.056954097002745,0.021190326660872,0.050250422209501]],[[-0.077376112341881,0.01617619395256,-0.030830243602395],[0.029815258458257,-0.044496793299913,-0.086760282516479],[0.042781453579664,0.053694725036621,-0.10548814386129]],[[-0.089662507176399,-0.033091638237238,0.071372926235199],[-0.11588921397924,0.10698264092207,0.04106105864048],[-0.16193616390228,-0.13112425804138,0.17596112191677]],[[-0.03323233500123,-0.08320714533329,-0.055254407227039],[0.063574552536011,-0.069411724805832,-0.026110842823982],[-0.022340951487422,-0.0080702677369118,-0.063359811902046]],[[0.22965881228447,0.0010886929230765,0.0041072312742472],[0.1425541639328,-0.0041888668201864,-0.045285079628229],[0.029383858665824,-0.058907933533192,0.12473997473717]],[[-0.047218024730682,-0.080326497554779,0.083186723291874],[-0.082078240811825,-0.017045814543962,-0.038136504590511],[0.056744251400232,-0.090261392295361,-0.027812195941806]],[[-0.10527709871531,-0.042961120605469,-0.06769984215498],[-0.067127048969269,0.0094468127936125,0.035672854632139],[0.0047609666362405,0.014553556218743,-0.0095014004036784]],[[0.0281991828233,0.10709362477064,-0.048859350383282],[-0.032527275383472,-0.027855284512043,0.0697256103158],[0.028624210506678,-0.040843721479177,0.21066801249981]],[[0.017418770119548,0.025979025289416,-0.068069905042648],[-0.089568644762039,-0.0061335968784988,0.011980263516307],[-0.025584269315004,-0.0085113402456045,0.033652257174253]],[[0.13340836763382,-0.22399637103081,0.051869317889214],[0.083111800253391,-0.13470409810543,0.015446617268026],[0.045718461275101,-0.099306873977184,0.036529794335365]],[[-0.013563225977123,0.019274914637208,-0.013975295238197],[0.011678724549711,-0.066900834441185,0.0027587534859776],[0.088949523866177,-0.05394321680069,-0.00068718910915777]],[[0.0028825192712247,-0.018429111689329,0.0045268605463207],[0.0087779248133302,-0.02901297993958,0.015937777236104],[0.0057307952083647,-0.083744958043098,0.07042121887207]],[[-0.091269165277481,-0.1182631701231,-0.054497171193361],[-0.033235993236303,0.00082378333900124,-0.028151782229543],[0.0099443104118109,0.041814412921667,-0.032216403633356]],[[-0.0089699802920222,0.026267509907484,-0.023387636989355],[0.085762910544872,-0.050595380365849,-0.077877946197987],[0.030622877180576,0.064910054206848,0.02729107812047]],[[-0.033290043473244,-0.13081212341785,0.071066543459892],[0.032315153628588,-0.012404185719788,-0.0056828763335943],[0.066026538610458,-0.032623153179884,-0.00040282917325385]],[[-0.019562749192119,-0.02018123678863,0.1013188958168],[0.014399670995772,-0.0072993850335479,0.075792647898197],[0.050472784787416,0.049088206142187,0.063567914068699]],[[-0.048547450453043,0.065780460834503,0.051479145884514],[0.00014736289449502,-0.055914856493473,-0.018203092738986],[0.025798842310905,0.1426015496254,0.072921082377434]],[[0.021774306893349,-0.077203303575516,0.012959252111614],[0.058725140988827,-0.012567483820021,0.01822268217802],[0.015190637670457,-0.042535025626421,0.0045822057873011]]],[[[0.028855860233307,-0.0075004864484072,-0.043896701186895],[-0.084701992571354,-0.041207119822502,-0.064268484711647],[-0.046633969992399,-0.036591839045286,-0.15515837073326]],[[-0.00026897163479589,-0.038357865065336,-0.035253625363111],[-0.04313226416707,-0.063932843506336,-0.056481003761292],[0.0059979106299579,0.068707823753357,-0.086783923208714]],[[0.0042132111266255,0.068270035088062,-0.051824998110533],[-0.16514310240746,0.038454562425613,0.035632725805044],[-0.05585940182209,-0.059773210436106,-0.032761834561825]],[[0.054861657321453,0.055141750723124,-0.011167276650667],[-0.0072892997413874,0.024515185505152,0.018627539277077],[0.011348016560078,-0.090210683643818,0.017995905131102]],[[-0.081747680902481,-0.071751900017262,0.0079152174293995],[-0.084481060504913,-0.13135622441769,-0.063489690423012],[-0.01225277967751,-0.081602297723293,-0.039404541254044]],[[0.013327246531844,0.0576849617064,0.025755420327187],[0.13843049108982,0.098615445196629,0.031336095184088],[-0.080196529626846,-0.020768623799086,-0.026390288025141]],[[-0.012469435110688,0.051015704870224,-0.076931729912758],[-0.033589784055948,-0.04120446741581,0.022432215511799],[0.064425371587276,-0.01777359098196,-0.081966780126095]],[[0.014996175654233,-0.022166687995195,-0.0087613817304373],[0.007230085786432,0.062360160052776,-0.087493479251862],[0.046944223344326,-0.0025413108523935,0.09209331125021]],[[0.11318475008011,0.098015271127224,0.063771620392799],[0.013662043958902,-0.077931009232998,0.071037665009499],[0.066523998975754,-0.11154719442129,0.1234966814518]],[[-0.018673170357943,-0.1128438860178,-0.13768096268177],[-0.029590208083391,-0.065021820366383,-0.079398386180401],[0.081858597695827,0.026705229654908,0.080525755882263]],[[0.040182065218687,0.0038939251098782,0.16888201236725],[-0.020625468343496,-0.045581229031086,-0.012557243928313],[-0.038203001022339,-0.028637612238526,-0.058057963848114]],[[-0.097335308790207,0.033804543316364,-0.011675371788442],[-0.049286235123873,-0.087920635938644,-0.1450961381197],[0.11330250650644,-0.0090927453711629,-0.021083453670144]],[[0.11817146092653,0.12948271632195,0.18237727880478],[0.17147992551327,-0.052848555147648,0.0051621310412884],[0.133250400424,0.066288366913795,-0.022228140383959]],[[0.08522143214941,-0.054456193000078,-0.011928559280932],[0.031569886952639,0.0064700674265623,-0.046023368835449],[0.11472948640585,-0.023096824064851,-0.024307241663337]],[[0.17358648777008,0.043371289968491,0.00694549549371],[-0.030289983376861,0.074557282030582,0.094138570129871],[0.11630668491125,0.12442649900913,-0.0065448042005301]],[[-0.02130426466465,0.042140107601881,0.054111436009407],[0.019623711705208,0.076396204531193,-0.0051821814849973],[0.052235804498196,-0.04537745937705,0.076589621603489]],[[-0.043799269944429,0.0024972998071462,0.015142309479415],[-0.07617499679327,-0.039335269480944,-0.010180247947574],[-0.06668221950531,0.013432270847261,0.0021064623724669]],[[-0.1040795147419,-0.068555682897568,-0.0442108027637],[0.050727467983961,0.023814460262656,-0.054689705371857],[-0.15167266130447,-0.011436116881669,0.065572552382946]],[[-0.099904283881187,-0.104218095541,0.11420886218548],[0.058265939354897,-0.14201331138611,-0.055689118802547],[0.060209177434444,0.10869362950325,-0.054850116372108]],[[0.035929650068283,-0.00081695453263819,-0.02533514611423],[0.074660263955593,0.026104325428605,-0.093207381665707],[0.015104608610272,0.010444404557347,0.018955489620566]],[[-0.006261870265007,0.0016082663787529,0.016143471002579],[-0.028181271627545,0.036677923053503,-0.074948891997337],[-0.054629787802696,0.011656273156404,-0.057563003152609]],[[0.097069382667542,0.041547488421202,0.05263963341713],[0.022095276042819,0.072370514273643,-0.0043970560654998],[0.064568988978863,0.019341200590134,0.044510524719954]],[[-0.0047855055890977,0.011793463490903,2.0847965060966e-05],[0.10601665824652,-0.0059100612998009,0.0056193615309894],[0.053281713277102,-0.0051293661817908,-0.0021718551870435]],[[0.025464272126555,0.023509230464697,0.016408935189247],[-0.040618974715471,0.06299302726984,0.028985081240535],[-0.024801518768072,0.065319180488586,0.040135279297829]],[[0.073562175035477,0.036575987935066,-0.083400472998619],[-0.0031589262653142,-0.030171507969499,-0.0043730940669775],[0.047415941953659,-0.096866622567177,-0.036258190870285]],[[-0.03106402233243,0.076715692877769,0.077516876161098],[-0.10879402607679,0.028431240469217,-0.042320847511292],[0.0020643109455705,0.070718660950661,0.10545282065868]],[[0.062273006886244,0.14645826816559,0.07754448056221],[0.15072965621948,0.039145119488239,0.064328156411648],[0.049406472593546,0.076840966939926,0.11025188118219]],[[-0.14771023392677,-0.022406380623579,0.075453877449036],[0.059177093207836,-0.017882009968162,-0.01687228679657],[-0.08391397446394,0.08171358704567,0.012614344246686]],[[-0.12897723913193,0.071130275726318,0.03286761790514],[-0.015975389629602,-0.043017782270908,0.099854148924351],[0.13918720185757,0.068654373288155,0.019345318898559]],[[-0.014040508307517,-0.052760306745768,0.050118826329708],[-0.02028713747859,0.037375640124083,0.05003385618329],[-0.054587002843618,-0.11804110556841,-0.10540070384741]],[[-0.12087266147137,-0.023038448765874,-0.0061039784923196],[0.034560702741146,-0.050151832401752,-0.02636456489563],[0.048895739018917,-0.072603367269039,0.056729409843683]],[[0.049169320613146,0.089979723095894,0.034817785024643],[-0.090290553867817,0.054512001574039,0.094192408025265],[0.0017952747875825,0.030951200053096,-0.087729781866074]],[[0.054568145424128,0.097570575773716,0.019502863287926],[0.12130668759346,0.1021750792861,0.057972740381956],[-0.083277322351933,0.059047188609838,0.14191383123398]],[[-0.18708235025406,-0.071411088109016,0.16834084689617],[-0.056771878153086,-0.13942492008209,-0.097545750439167],[0.076442711055279,0.041857797652483,0.032194312661886]],[[-0.14299374818802,-0.11082135140896,-0.091924972832203],[-0.0035141191910952,-0.069119915366173,-0.12886844575405],[0.00041853115544654,-0.074754372239113,-0.0058844215236604]],[[0.01523707062006,-0.010648891329765,-0.059975016862154],[-0.023068444803357,0.06448133289814,-0.022872921079397],[0.047021090984344,-0.053848076611757,-0.026144342496991]],[[0.089485384523869,0.036893978714943,-0.12191708385944],[-0.11241691559553,0.066289059817791,0.032453864812851],[-0.12339679896832,0.0063169435597956,-0.0052070124074817]],[[-0.023563984781504,-0.060294087976217,0.0033208972308785],[-0.13400353491306,-0.038402289152145,-0.12351156771183],[-0.12232636660337,0.01921197399497,0.029877904802561]],[[0.052957691252232,-0.055662371218204,0.042823277413845],[-0.048599101603031,-0.10567200183868,0.074547149240971],[-0.15908844769001,-0.052284579724073,-0.046818777918816]],[[0.084436647593975,-0.046430736780167,-0.095669582486153],[-0.0065563581883907,0.047948326915503,-0.11701176315546],[-0.16480882465839,0.054908633232117,0.0038835927844048]],[[0.10081245750189,-0.041580721735954,0.12112082540989],[0.097179040312767,-0.011611774563789,-0.080977842211723],[0.05504135787487,0.13953572511673,0.15072816610336]],[[0.055241879075766,0.096607863903046,0.05056619271636],[0.050693936645985,0.013032643124461,0.046830616891384],[-0.021110462024808,0.04774546995759,0.086913354694843]],[[0.12921883165836,0.092057637870312,0.014766351319849],[-0.0044193146750331,0.14118480682373,0.039343528449535],[0.044297929853201,0.0075312335975468,0.01688551530242]],[[-0.075678624212742,-0.019096052274108,0.052297063171864],[-0.041147869080305,0.039529748260975,0.030114460736513],[-5.0241556891706e-05,0.0064713144674897,-0.038873448967934]],[[0.056762240827084,-0.10763926059008,0.061287194490433],[0.2589328289032,0.11359899491072,-0.030474966391921],[-0.088863462209702,0.10178395360708,0.13399328291416]],[[0.030840035527945,0.080992743372917,0.13194102048874],[0.045443385839462,0.07945042848587,0.039924517273903],[0.037900127470493,0.0078020743094385,0.015643013641238]],[[-0.043243251740932,0.01423800457269,0.0074995043687522],[-0.072864539921284,0.053200110793114,0.011176559142768],[-0.074062943458557,-0.0014263722114265,-0.021589253097773]],[[-0.18186828494072,-0.09527974575758,-0.07863213121891],[0.0018741305684671,0.019822206348181,0.091211289167404],[0.014613722451031,-0.013243929482996,-0.03068315051496]],[[-0.095643103122711,-0.077211007475853,-0.05214636027813],[-0.10302294790745,-0.056444935500622,-0.052009981125593],[-7.3256400355604e-05,0.01155786588788,0.017192808911204]],[[0.030779363587499,-0.026734985411167,0.012489955872297],[-0.083188496530056,-0.022023821249604,-0.028841432183981],[-0.044339407235384,-0.052810896188021,-0.020785616710782]],[[0.029608407989144,0.034760750830173,0.028186835348606],[0.11841432750225,-0.052013635635376,-0.033176902681589],[0.17003893852234,0.058120381087065,-0.044829402118921]],[[-0.0095082251355052,0.076554380357265,0.054910268634558],[-0.026032274588943,0.054042674601078,0.020401880145073],[0.059501077979803,0.091723330318928,-0.10646025836468]],[[-0.051828239113092,0.02242342568934,0.036135256290436],[-0.023686049506068,0.056570712476969,0.062705360352993],[0.070759795606136,-0.073121026158333,0.062939926981926]],[[-0.10233399271965,0.044774807989597,0.061690039932728],[-0.16763010621071,-0.08269239962101,0.14710266888142],[0.053778275847435,-0.12993234395981,0.080426864326]],[[-0.071687929332256,-0.078359566628933,0.088624335825443],[0.054579861462116,0.076287239789963,0.13500697910786],[0.085433147847652,0.085696510970592,0.070029549300671]],[[-0.015522439964116,0.049719847738743,0.042783536016941],[0.12417556345463,-0.060435060411692,-0.036205589771271],[-0.036927994340658,0.051408156752586,0.080354705452919]],[[0.12781012058258,0.060753215104342,0.12216238677502],[0.00080434326082468,0.0055359355174005,0.10883869230747],[0.09704977273941,0.098082683980465,0.14623069763184]],[[0.005624339915812,0.097653590142727,-0.0042021418921649],[0.073255181312561,0.059571132063866,-0.024647455662489],[0.085809499025345,0.047939229756594,0.044712495058775]],[[-0.091344714164734,-0.044250585138798,0.089320756494999],[0.036965683102608,-0.077582463622093,0.13182219862938],[-0.03975872322917,-0.055303916335106,-0.075199730694294]],[[0.13770262897015,0.0081393346190453,-0.093829870223999],[0.17135988175869,0.021168598905206,0.11841227859259],[-0.017149014398456,-0.019659209996462,0.16253964602947]],[[0.005718479398638,0.061603032052517,0.034902960062027],[-0.016506981104612,0.0074457149021327,0.058219883590937],[0.044367086142302,0.0083080818876624,-0.087407447397709]],[[0.041083015501499,-0.12173469364643,-0.033887520432472],[0.12615267932415,-0.0022554646711797,-0.064185582101345],[-0.047131516039371,-0.11585398763418,0.083134807646275]],[[-0.051186505705118,0.0076919412240386,-0.071253299713135],[-0.16664092242718,0.0055669583380222,0.0019520791247487],[-0.015571765601635,-0.04642802849412,-0.027382204309106]],[[0.27313086390495,0.072858244180679,-0.057197172194719],[0.0096496632322669,0.11706195771694,-0.04563919454813],[0.016945458948612,-0.025561302900314,0.10237438976765]],[[0.027038741856813,-0.047330103814602,-0.032391898334026],[0.050574637949467,-0.041458670049906,-0.15163266658783],[0.031678032130003,-0.10754877328873,-0.094686850905418]],[[0.1436312943697,0.01667321100831,0.05352920666337],[0.019376458600163,-0.091335259377956,-0.095663413405418],[0.050750963389874,-0.032270461320877,0.039423935115337]],[[0.090079367160797,-0.1039884313941,-0.049514219164848],[0.04847551882267,-0.10338240116835,-0.011691048741341],[0.0039073773659766,0.045737009495497,-0.14117407798767]],[[-0.13524883985519,0.029040936380625,-0.00030361552489921],[-0.044438622891903,-0.07176798582077,-0.0092950705438852],[-0.010154707357287,0.030055111274123,-0.12082135677338]],[[0.1288987249136,0.0036754824686795,-0.020425319671631],[0.087122172117233,0.023427652195096,0.056691490113735],[0.015238236635923,0.11076709628105,0.10730621963739]],[[0.11940045654774,-0.051289822906256,-0.05151703581214],[0.057275369763374,0.1509280949831,-0.093704476952553],[-0.067065082490444,-0.036651100963354,-0.1394084841013]],[[-0.014174237847328,0.03845177963376,-0.008712612092495],[0.041913159191608,0.056050971150398,-0.044381275773048],[0.1058941334486,0.007720751222223,0.029728664085269]],[[-0.095602221786976,-0.054318368434906,0.011872925795615],[-0.014206054620445,0.012168076820672,-0.0040603671222925],[0.010144987143576,-0.081115260720253,-0.079851694405079]],[[-0.058919433504343,0.006536175031215,0.033666878938675],[-0.002784758573398,0.058405894786119,0.056575104594231],[0.052054431289434,0.042310364544392,-0.028704062104225]],[[0.056636478751898,0.06124984100461,-0.017677586525679],[-0.014684981666505,0.016346478834748,0.007934438996017],[0.0047025545500219,0.0059538404457271,-0.16034460067749]],[[0.070108108222485,0.080148972570896,-0.031578950583935],[0.036111079156399,0.027810407802463,0.090713366866112],[-0.036396831274033,-0.010166027583182,0.074409380555153]],[[0.081654399633408,0.082780405879021,-0.012199343182147],[-0.10574877262115,0.068840116262436,0.16950367391109],[-0.001154437311925,-0.11131433397532,-0.24302069842815]],[[0.05093140900135,-0.060072276741266,0.046743262559175],[0.03374020382762,-0.040440917015076,0.021852964535356],[0.064922295510769,-0.075258031487465,0.023277660831809]],[[0.091900028288364,0.097982943058014,-0.028517642989755],[0.12069586664438,0.10466258227825,0.011730019003153],[0.12759853899479,0.030502898618579,0.0069976993836462]],[[0.066642813384533,-0.081887878477573,0.080644451081753],[-0.007314398419112,-0.0055084540508687,-0.064820379018784],[-0.030754223465919,-0.067876353859901,0.035511307418346]],[[-0.061203990131617,0.013415399007499,0.013580289669335],[0.016346482560039,0.019389102235436,-0.0044592195190489],[-0.13527601957321,-0.0099753681570292,0.034489378333092]],[[-0.14446982741356,0.010047717951238,0.046991884708405],[-0.03422511741519,-0.049844678491354,0.077745661139488],[0.054481822997332,0.034754939377308,0.0037902595940977]],[[0.038510341197252,0.024107063189149,0.080736726522446],[0.053404949605465,-0.045510645955801,0.049169279634953],[0.072118349373341,0.034152828156948,0.051838412880898]],[[0.040381446480751,-0.051622673869133,-0.061722755432129],[0.004947149194777,-0.0092794420197606,0.0075526968576014],[0.057503953576088,0.0044268886558712,-0.10650058090687]],[[-0.05353919044137,0.0070979292504489,0.058105118572712],[-0.078689835965633,-0.015481157228351,0.05863644182682],[-0.025778608396649,0.022041952237487,-0.062666721642017]],[[-0.1650111079216,0.021383576095104,0.02010671980679],[0.041405294090509,-0.13353714346886,0.022210607305169],[0.082893572747707,0.14927200973034,-0.074482619762421]],[[-0.11042028665543,-0.032617252320051,0.0053584049455822],[-0.033046633005142,-0.02037482522428,-0.021377077326179],[-0.05634455755353,0.004035288002342,-0.034140694886446]],[[0.08724969625473,0.05314464867115,-0.10335778445005],[-0.073484860360622,0.044779781252146,-0.029895411804318],[0.097699768841267,-0.0048790997825563,0.027993882074952]],[[-0.091944046318531,-0.0869405195117,-0.028078651055694],[-0.093988507986069,-0.11707009375095,-0.10531959682703],[-0.047352086752653,-0.073768608272076,-0.055451564490795]],[[0.068872608244419,0.065310657024384,0.087048299610615],[-0.02437542937696,-0.051963895559311,0.17266446352005],[-0.045062430202961,-0.057457000017166,-0.021496541798115]],[[-0.010633205994964,0.043884444981813,0.045601576566696],[-0.13015367090702,0.013194703496993,0.015696212649345],[-0.039867628365755,-0.12247037142515,-0.045947521924973]],[[0.15026852488518,0.099885709583759,0.053459703922272],[-0.094323441386223,-0.0023922745604068,-0.014165675267577],[-0.0082047786563635,0.052081976085901,0.010860576294363]],[[-0.039837464690208,-0.061512142419815,0.010748011991382],[-0.005985148716718,0.079457327723503,-0.095496825873852],[-0.072686597704887,0.011572350747883,0.0099131586030126]],[[0.045320194214582,-0.0940181016922,-0.025954594835639],[0.11759036034346,0.024320617318153,0.0107640363276],[0.097056150436401,0.08367296308279,0.098340950906277]],[[-0.09000501781702,-0.027876919135451,-0.075326099991798],[0.060287475585938,0.0030977970454842,-0.086263790726662],[-0.06224162504077,-0.081722296774387,-0.12878459692001]],[[-0.01628378033638,-0.039069510996342,-0.080592133104801],[-0.11390045285225,-0.04392708465457,-0.03439375013113],[-0.12490080296993,0.055849276483059,0.021802820265293]],[[0.011900230310857,0.040924660861492,0.033734258264303],[0.025861589238048,0.010642829351127,0.02254556491971],[0.14128956198692,0.079883687198162,0.062270887196064]],[[-0.075816415250301,0.009245291352272,0.016293805092573],[-0.058656349778175,-0.024603502824903,0.01213710103184],[0.089791916310787,-0.017363825812936,0.085262201726437]],[[0.092953033745289,-0.0041456869803369,0.11324097961187],[0.067641526460648,-0.065877735614777,-0.065427899360657],[0.05277843400836,0.083254165947437,0.087563522160053]],[[-0.083784021437168,0.028273770585656,-0.041986014693975],[-0.12278662621975,0.055352106690407,-0.035117004066706],[0.00063723989296705,-0.16900712251663,-0.074848182499409]],[[0.030521269887686,0.11758678406477,0.026528749614954],[0.121781244874,-0.038549780845642,0.13646392524242],[-0.0049944100901484,0.075078785419464,-0.02069291472435]],[[-0.026673022657633,-0.059030748903751,-0.12246438860893],[-0.095069624483585,-0.077352538704872,-0.068344406783581],[-0.036053687334061,-0.097303718328476,-0.15004540979862]],[[0.058822799474001,0.070294909179211,0.093625001609325],[0.045646369457245,-0.013181683607399,0.0067358585074544],[0.052151970565319,0.050524692982435,0.026167593896389]],[[0.026804056018591,-0.11655133217573,-0.013331074267626],[0.025116886943579,0.0098342131823301,-0.021924452856183],[-0.008158203214407,0.01901094801724,0.047600287944078]],[[-0.069054052233696,-0.013632181100547,-0.15037602186203],[-0.046838242560625,-0.09310095012188,-0.080902986228466],[-0.06109880656004,0.087611466646194,-0.1098498031497]],[[-0.0070015080273151,-0.025780241936445,0.053777437657118],[-0.01439759042114,-0.14921060204506,0.0093836132436991],[-0.016155740246177,0.0018810151377693,0.092796705663204]],[[0.11818110942841,-0.076195888221264,-0.092527866363525],[-0.025723177939653,-0.00021999712043907,-0.056308906525373],[0.035106550902128,0.08103384822607,0.013892690651119]],[[-0.00029763954808004,0.075901694595814,0.013014079071581],[0.015961008146405,0.042914059013128,0.12246938794851],[0.1061841994524,0.066490985453129,0.011635693721473]],[[0.084501773118973,0.0054506883025169,-0.0076310285367072],[-0.025920126587152,0.041641369462013,-0.027203898876905],[-0.028344340622425,-0.047275241464376,-0.026478111743927]],[[-0.025672802701592,0.041245482861996,-0.030960345640779],[-0.055623382329941,0.038320794701576,0.016209414228797],[0.03377091512084,-0.037529084831476,-0.039650533348322]],[[-0.075649730861187,0.050735477358103,0.035893682390451],[-0.018773525953293,-0.016605505719781,0.020177185535431],[0.083760380744934,0.049210794270039,0.098452441394329]],[[0.02350902184844,-0.039788216352463,-0.03482498973608],[-0.018418464809656,-0.056647129356861,0.046381916850805],[0.023637291043997,0.037227790802717,-0.022484146058559]],[[0.15492697060108,0.013430932536721,0.033132657408714],[-0.023621803149581,0.11197708547115,-0.004656694829464],[0.020055867731571,0.083869181573391,-0.16216194629669]],[[-0.029417742043734,0.012695015408099,-0.022520547732711],[-0.20508597791195,-0.070980876684189,-0.038043443113565],[-0.091985106468201,-0.060868877917528,-0.0056867464445531]],[[-0.027780896052718,0.10501306504011,0.019892165437341],[-0.027347007766366,-0.026026220992208,-0.055312488228083],[-0.010096754878759,0.11361964792013,-0.089519910514355]],[[0.074485324323177,0.011302437633276,0.014820865355432],[-0.018654678016901,-0.038415603339672,-0.019306747242808],[-0.0075385603122413,-0.030757801607251,-0.0093981847167015]],[[-0.035123117268085,-0.088396050035954,-0.055636860430241],[0.036503452807665,0.069972313940525,-0.06994953751564],[-0.026200938969851,-0.044142205268145,0.0084661012515426]],[[0.050623293966055,-0.01993353664875,-0.078534848988056],[-0.13447733223438,-0.070830754935741,-0.042530726641417],[0.0065718698315322,-0.11955212056637,-0.09348089993]],[[-0.16717213392258,0.017081243917346,-0.025890655815601],[-0.058057848364115,-0.031212436035275,-0.027795718982816],[0.029887765645981,0.0038586247246712,-0.022764584049582]],[[-0.016693983227015,0.0070488057099283,-0.018977876752615],[-0.047786206007004,-0.028677904978395,-0.079258851706982],[0.12889243662357,0.024990893900394,0.0080093769356608]],[[-0.10007707029581,0.037803277373314,0.12395198643208],[-0.11116340011358,-0.00044474902097136,-0.084617130458355],[0.15023531019688,0.035400558263063,-0.0092245582491159]],[[-0.059077955782413,0.081393361091614,0.020682467147708],[-0.012291974388063,-0.02196847461164,0.023576643317938],[-0.0098624229431152,-0.02756180986762,-0.061326552182436]],[[-0.093384690582752,-0.075636938214302,0.00027592896367423],[-0.084494963288307,-0.11083275079727,-0.040122795850039],[-0.00017617167031858,0.015039401128888,-0.036651350557804]],[[-0.13316150009632,0.0025776715483516,0.087290391325951],[0.040303159505129,-0.06308402121067,-0.059322934597731],[-0.043443720787764,-0.057095319032669,0.074996314942837]],[[-0.086131744086742,0.0047824382781982,0.14584246277809],[-0.079839870333672,0.0066142189316452,-0.012099864892662],[0.085544660687447,-0.017854167148471,-0.017114581540227]],[[-0.015655716881156,0.021920584142208,-0.0039928434416652],[-0.06289828568697,-0.09306263178587,-0.01464578602463],[0.055989969521761,-0.11246729642153,0.031023977324367]],[[0.086822241544724,0.0032579593826085,-0.012606132775545],[0.13661512732506,0.054197017103434,0.079229518771172],[-0.048348553478718,-0.045199207961559,0.050715353339911]],[[-0.034540466964245,0.02898626588285,0.026060311123729],[-0.048271931707859,-0.088556043803692,-0.04093150421977],[-0.0698047503829,0.02013861015439,0.011808744631708]],[[-0.00048602896276861,0.10131645947695,-0.011992746964097],[-0.11466298252344,0.083974957466125,0.030026776716113],[0.067012622952461,-0.10353253036737,-0.059998001903296]]],[[[0.01519379299134,-0.017702082172036,0.086124181747437],[-0.0053877788595855,0.033267475664616,-0.0069980374537408],[0.0036187646910548,-0.016374755650759,0.042693506926298]],[[-0.035063814371824,0.05409287661314,0.011433279141784],[0.012562806718051,0.056565992534161,-0.012937325052917],[0.018888760358095,-0.030571239069104,0.002601737389341]],[[-0.012974220328033,0.074970826506615,-0.046744823455811],[0.0086472602561116,-0.0070481332950294,0.0027043018490076],[0.093414060771465,0.034394960850477,-0.036309853196144]],[[0.021502166986465,0.031199479475617,0.08370765298605],[0.074999362230301,0.020396685227752,0.12914404273033],[0.053473323583603,-0.0058866767212749,0.0032651217188686]],[[-0.011114024557173,0.0251973439008,-0.0071495394222438],[-0.0018355486681685,0.022732496261597,0.027731101959944],[0.039850708097219,0.055294003337622,0.040945395827293]],[[0.016317082569003,0.022582968696952,0.048477321863174],[0.022715644910932,0.0024870266206563,-0.015458052046597],[0.014782167039812,-0.024131406098604,-0.057721070945263]],[[0.053377810865641,0.084382407367229,-0.072585538029671],[0.033698573708534,0.041443604975939,0.030317677184939],[-0.021750723943114,0.027271017432213,-0.039202407002449]],[[0.035669468343258,-0.035990819334984,0.0094846719875932],[0.043717566877604,-0.056823715567589,-0.0621038377285],[0.06112839654088,0.034902084618807,0.08566727489233]],[[-0.023936407640576,-0.020695516839623,0.0090027609840035],[-0.040215790271759,-0.026307245716453,0.014548235572875],[0.043721314519644,0.027561208233237,-0.016719931736588]],[[-0.03477206453681,0.051591943949461,-0.033571384847164],[0.041192941367626,0.018943516537547,0.011455927975476],[0.095841899514198,-0.0238734241575,0.034054514020681]],[[-0.006577389780432,0.023981302976608,-0.0081771155819297],[0.0095122940838337,0.06678432226181,0.06872471421957],[-0.10254809260368,-0.068151354789734,-0.015823485329747]],[[-0.023180082440376,-0.035548765212297,-0.016022235155106],[-0.049192760139704,-0.07914824783802,0.0058608665131032],[-0.023159356787801,-0.084537625312805,0.079343363642693]],[[0.026336623355746,0.15445166826248,0.029310727491975],[-0.0095289777964354,0.030582901090384,0.039561294019222],[0.034965079277754,-0.069381341338158,-0.042539175599813]],[[0.087829582393169,0.088882528245449,0.055842358618975],[-0.00030091649387032,-0.026930250227451,-0.015892792493105],[-0.034952666610479,-0.015092468820512,0.050466269254684]],[[0.0089710466563702,-0.0087084155529737,-0.042271673679352],[-0.081946916878223,0.074246384203434,0.0068877395242453],[-0.030970176681876,-0.0011740442132577,-0.016142522916198]],[[-0.017774876207113,-0.065537452697754,-0.061218716204166],[-0.027520464733243,-0.035098865628242,0.021734798327088],[0.039581544697285,0.05257036536932,0.034914880990982]],[[0.013005776330829,-0.022173592820764,0.049056157469749],[0.0076247351244092,0.040498290210962,-0.056980058550835],[0.054329335689545,-0.037287745624781,0.015250392258167]],[[-0.049467671662569,0.031549926847219,-0.012012802064419],[0.0338937304914,0.04196422547102,0.042477749288082],[0.042882397770882,0.01369166187942,-0.037141542881727]],[[0.048288486897945,0.0021735110785812,-0.011748580262065],[0.010972214862704,0.03985146805644,0.030306277796626],[0.0078699709847569,0.044649433344603,-0.039669748395681]],[[-0.020083419978619,-0.064239427447319,-0.077225044369698],[0.075148887932301,-0.013570268638432,0.040967665612698],[-0.02335449680686,0.057332400232553,-0.051828868687153]],[[0.010463838465512,-0.0059624924324453,-0.0077411928214133],[-0.0060843201354146,0.015752349048853,0.0049882596358657],[0.0048194974660873,-0.0035364381037652,-0.061483543366194]],[[-0.012307563796639,0.0028529183473438,0.094266787171364],[0.019118690863252,-0.078284345567226,-0.041665107011795],[0.0073398966342211,-0.08341009914875,0.070029623806477]],[[0.072848498821259,-0.029614944010973,-0.0013179248198867],[-0.023061856627464,-0.025415671989322,0.018436312675476],[0.051693882793188,0.005556667689234,-0.064384765923023]],[[-0.012095686048269,-0.070470474660397,-0.0058556669391692],[0.037982847541571,-0.04070795699954,0.019961882382631],[-0.0059940586797893,-0.0029794399160892,-0.022902984172106]],[[-0.038465537130833,0.040761563926935,0.016744019463658],[-0.013763288035989,0.024104019626975,0.035640124231577],[-0.013537376187742,0.039232712239027,0.013836566358805]],[[0.02494290843606,-0.012120535597205,-0.059668213129044],[0.070360533893108,0.0079195396974683,0.045073099434376],[0.061431769281626,-0.019340842962265,0.017875107005239]],[[0.059202186763287,0.012954008765519,0.037023913115263],[0.013820570893586,-0.077655471861362,-0.063540823757648],[-0.017953148111701,-0.036795914173126,-0.02460628375411]],[[0.067840896546841,0.046874560415745,0.055662766098976],[-0.049787741154432,-0.039365947246552,-0.016908558085561],[-0.0015650402056053,-0.066141225397587,-0.011470242403448]],[[0.0307458024472,0.027238855138421,0.0020027386490256],[-0.066295884549618,0.049338713288307,0.017817933112383],[-0.045098014175892,0.0089089367538691,0.0343335904181]],[[0.020336931571364,-0.091844312846661,-0.004429052118212],[0.029012469574809,-0.056424107402563,-0.0049028024077415],[0.030544374138117,0.030297206714749,-0.0089115956798196]],[[-0.064252354204655,-0.022398544475436,0.034488156437874],[-0.010763997212052,0.043033350259066,0.016708208248019],[-0.024686882272363,-0.023248331621289,-0.0042007537558675]],[[-0.058427728712559,0.068023182451725,0.041143674403429],[0.047783803194761,0.012443628162146,0.02753590978682],[-0.01909177750349,0.028400341048837,-0.012717312201858]],[[0.052966307848692,0.0074497424066067,-0.017722906544805],[0.088246546685696,0.0058205765672028,0.027494663372636],[3.9749658753863e-05,0.045482330024242,-0.087905876338482]],[[0.078865878283978,-0.042382203042507,0.064110413193703],[0.015144256874919,-0.026682330295444,-0.034383028745651],[-0.013068498112261,-0.02497529797256,-0.039538644254208]],[[-0.053010158240795,-0.020292479544878,0.043433483690023],[0.04873551428318,0.023576876148582,0.013316858559847],[0.072655223309994,0.01531290076673,0.040072083473206]],[[-0.024581454694271,-0.0069574131630361,0.039964973926544],[0.042919918894768,0.011942842975259,0.030658025294542],[0.053973704576492,-0.010995618067682,0.071984365582466]],[[0.021260676905513,-0.014754720963538,-0.029332457110286],[-0.054532628506422,-0.024035256356001,0.014078967273235],[-0.037174768745899,0.074214935302734,0.022293305024505]],[[0.056910373270512,-0.0068234601058066,-0.024851307272911],[0.032356955111027,0.020762590691447,0.045996505767107],[0.020360825583339,0.035128608345985,-0.024602407589555]],[[0.042443446815014,-0.05561351776123,0.026273548603058],[0.020247090607882,0.05468786880374,-0.077342249453068],[0.011844617314637,-0.057278268039227,0.0083480440080166]],[[-0.0097713069990277,0.012379226274788,0.035149578005075],[0.046974517405033,0.0036843731068075,0.063150517642498],[0.054358534514904,-0.0081315580755472,-0.016666550189257]],[[0.0043169208802283,0.05226194858551,0.051395338028669],[-0.0098795248195529,-0.073630526661873,-0.0025043173227459],[0.036986649036407,-0.06854359805584,-0.04046817496419]],[[0.051530230790377,-0.043474018573761,0.0066479286178946],[-0.016164405271411,-0.0077966791577637,-0.035236623138189],[0.010839964263141,0.014793459326029,-0.031339127570391]],[[0.067637078464031,0.0077089355327189,0.01439455524087],[-0.027842057868838,0.029703205451369,-0.029716767370701],[0.044216427952051,0.0025308427866548,0.0041257236152887]],[[-0.089489370584488,-0.071205250918865,-0.06318923830986],[-0.11345757544041,-0.045212879776955,-0.096221260726452],[-0.076723076403141,0.018402136862278,0.020401204004884]],[[0.05077301338315,-0.010457335971296,0.035999905318022],[-0.048417594283819,-0.025145333260298,0.011520611122251],[0.025197340175509,-0.052906781435013,0.022710088640451]],[[-0.018091460689902,-0.02702802605927,0.057526912540197],[-0.096023909747601,0.054232142865658,0.021357771009207],[-0.072483003139496,0.0012483446625993,-0.022982368245721]],[[0.045020166784525,0.043311472982168,0.00054002506658435],[-0.01761918514967,-0.1322168558836,0.0063588437624276],[0.036519940942526,-0.021479617804289,-0.0122648216784]],[[0.0044395946897566,0.004760192707181,-0.025564637035131],[0.015277422964573,-0.086998507380486,0.091445446014404],[-0.053856901824474,0.04237212985754,0.018211681395769]],[[-0.044833954423666,-0.021894291043282,-0.04763849824667],[0.074778698384762,-0.031295154243708,0.031615741550922],[0.027554776519537,0.0463184453547,0.04583615064621]],[[0.028521187603474,-0.021141370758414,-0.0094512952491641],[-0.036087710410357,-0.020042022690177,0.04432275518775],[0.0017503226408735,0.014991573058069,-0.034256342798471]],[[-0.088434413075447,0.027952978387475,0.0074976617470384],[0.069076679646969,-0.084906868636608,-0.052795402705669],[0.016392201185226,0.040298014879227,-0.058450266718864]],[[0.0080547854304314,0.031571384519339,0.017696391791105],[0.010477577336133,0.0019255881197751,-0.068682104349136],[0.017783863469958,0.0023065183777362,-0.029181275516748]],[[0.0093967439606786,0.039877165108919,0.14160729944706],[-0.021443922072649,0.024192465469241,-0.077082268893719],[-0.026357732713223,0.025825379416347,-0.015858288854361]],[[0.098780363798141,-0.0026713032275438,0.0099011026322842],[-0.035769701004028,0.065186731517315,0.024985989555717],[-0.066225133836269,0.058933474123478,0.010229340754449]],[[0.03465098887682,0.027916898950934,0.0024838671088219],[-0.03433832898736,-0.030760882422328,0.12199653685093],[0.049611084163189,-0.018933305516839,0.0069049797020853]],[[-0.054013717919588,-0.038966603577137,-0.038603454828262],[-0.0068342895247042,-0.07419091463089,-0.05710332095623],[0.034892190247774,-0.0020379181951284,0.038016118109226]],[[0.004519431386143,0.039024353027344,-0.0063257436268032],[0.027065388858318,0.049955073744059,0.064779110252857],[-0.0351920761168,0.0057013495825231,0.032973766326904]],[[0.047126069664955,0.014211546629667,-0.030219415202737],[-0.024002242833376,-0.00069109367905185,-0.023029306903481],[-0.0059279683046043,-0.0087856473401189,-0.015893889591098]],[[-0.026864236220717,-0.07570793479681,0.050719667226076],[-0.018696328625083,0.0037717134691775,-0.020359670743346],[0.074042320251465,0.064579844474792,-0.0078295227140188]],[[-0.041268635541201,-0.0027049691416323,-0.00058024318423122],[0.079300634562969,0.00038979976670817,0.052214320749044],[0.046425439417362,-0.086292512714863,0.054953891783953]],[[0.023318562656641,0.049776285886765,-0.11517976224422],[-0.039242830127478,-0.0010452929418534,0.038235954940319],[0.037465114146471,-0.033665139228106,-0.0036970297805965]],[[0.059657905250788,0.05904159322381,0.0071016736328602],[-0.043003529310226,-0.054195877164602,-0.034762911498547],[-0.012229496613145,0.024010980501771,0.071185179054737]],[[-0.015152904205024,-0.010956454090774,-0.039788421243429],[0.053959548473358,-0.038627196103334,-0.02323785610497],[-0.022699072957039,-0.020172631368041,0.055792164057493]],[[-0.02051162533462,0.030453076586127,-0.032492808997631],[-0.025400839745998,0.0058229058049619,0.0062369480729103],[-0.058822497725487,-0.010162652470171,-0.026036662980914]],[[0.063243016600609,0.024833181872964,0.058096613734961],[-0.011938192881644,-0.025126641616225,-0.029123105108738],[0.016766641288996,0.00040953975985758,-0.024752529338002]],[[-0.035295180976391,0.045836716890335,-0.099395431578159],[0.024503987282515,0.061603914946318,-0.031735599040985],[0.0036945822648704,0.0043723820708692,-0.11455188691616]],[[0.0030225133523345,0.033477943390608,-0.0069807218387723],[0.069871954619884,-0.006786395329982,0.01970386505127],[-0.0035900212824345,-0.026461074128747,-0.016616482287645]],[[0.018403166905046,0.014520046301186,0.0094192596152425],[0.055916324257851,-0.062309317290783,0.069692879915237],[-0.050652038305998,0.024004774168134,-0.024406196549535]],[[-0.016634725034237,0.0094644408673048,-0.020872605964541],[0.017166502773762,0.018121970817447,-0.03599613532424],[-0.038435731083155,-0.034389827400446,-0.014238582924008]],[[-0.039894618093967,-0.053305100649595,-0.027699584141374],[-0.028436820954084,-0.015304465778172,-0.014047534205019],[0.019937166944146,0.029920557513833,0.03701539337635]],[[-0.013249635696411,-0.035428255796432,-0.061716679483652],[-0.0098786074668169,0.051481418311596,-0.021069042384624],[0.046473778784275,0.031531270593405,-0.011461311019957]],[[0.027764201164246,-0.020225586369634,0.052532710134983],[0.0049041491001844,0.041164923459291,0.043604210019112],[0.022351065650582,-0.0011568266199902,-0.018525199964643]],[[-0.028557868674397,0.016293922439218,-0.01998383179307],[0.0046471324749291,-0.022616943344474,-0.020750069990754],[0.037209901958704,0.0011314088478684,-0.051542721688747]],[[-0.030859792605042,-0.023252414539456,-0.039467591792345],[-0.017379770055413,-0.0226378608495,-0.00039194754208438],[0.097871944308281,0.051876235753298,0.036711145192385]],[[0.013594491407275,-0.019846528768539,0.013920912519097],[0.0018661072244868,-0.064850755035877,-0.045232430100441],[-0.030729049816728,0.044535420835018,0.0004493277228903]],[[-0.073986940085888,-0.031266380101442,0.032754730433226],[-0.052339773625135,0.084927327930927,-0.035992335528135],[0.063296958804131,0.028057061135769,0.11366627365351]],[[0.070497252047062,0.032832123339176,0.005345341283828],[0.0024138118606061,0.034475263208151,0.040152240544558],[-0.10780414193869,0.041357703506947,0.0022618926595896]],[[0.020928915590048,0.037373907864094,0.026305697858334],[-0.043312851339579,0.023500936105847,0.016535690054297],[-0.026146100834012,0.01157058775425,0.0193383526057]],[[0.014226859435439,0.046433661133051,0.031156409531832],[-0.01035928633064,0.0024819744285196,0.038649119436741],[0.044828098267317,0.048006772994995,-0.00169995916076]],[[0.0021123064216226,-0.012535293586552,0.023937363177538],[-0.043915338814259,0.053684506565332,-0.037542127072811],[-0.020351557061076,-0.043824873864651,0.00092060072347522]],[[-0.046347223222256,0.0082533778622746,0.001214083400555],[0.03295598551631,0.0042371326126158,-0.084776043891907],[0.051833756268024,0.0053909830749035,0.024130629375577]],[[-0.025636604055762,-0.07748032361269,-0.012540544383228],[-0.0077498201280832,0.035917442291975,0.024956464767456],[-0.018418477848172,-0.055537708103657,0.040150608867407]],[[-0.038871295750141,-0.019306026399136,0.054089568555355],[-0.13693515956402,-0.033298812806606,0.017120778560638],[0.036143377423286,-0.00049797241808847,0.021684553474188]],[[-0.034381583333015,-0.0055197910405695,0.0077524958178401],[-0.048064969480038,0.044940423220396,0.02382954582572],[-0.0089420964941382,-0.020041616633534,0.013522766530514]],[[-0.024540880694985,0.067772157490253,0.060524012893438],[-0.02757766097784,0.006250518374145,-0.055322255939245],[0.023040696978569,-0.058733828365803,-0.038415867835283]],[[-0.027586989104748,0.0050268820486963,-0.046331871300936],[0.052121017128229,0.025885550305247,-0.017292084172368],[0.078495509922504,0.026305098086596,0.031373701989651]],[[-0.062928281724453,0.023195860907435,0.011524390429258],[0.023760134354234,-0.039949726313353,0.0063282460905612],[0.015239513479173,-0.0046862824819982,-0.025046030059457]],[[-0.079126432538033,0.028643118217587,0.031220644712448],[0.035018973052502,0.0026677111163735,-0.0044893003068864],[-0.007671152241528,-0.033176716417074,0.0048006782308221]],[[-0.019803823903203,0.029349036514759,0.012217624112964],[-0.026731073856354,0.002653163857758,-0.043920237571001],[0.048489920794964,0.0814094170928,0.021861214190722]],[[0.025161383673549,0.021000074222684,0.08999764919281],[-0.062460251152515,0.058866541832685,0.021763922646642],[-0.045498114079237,0.054914928972721,-0.050064537674189]],[[0.011439454741776,0.064134128391743,0.0046233246102929],[0.043502107262611,0.075678318738937,0.018703239038587],[0.032649762928486,0.01484966930002,0.013605935499072]],[[-0.031905986368656,0.018811028450727,-0.0019229515455663],[-0.023528959602118,-0.018407441675663,-0.040969558060169],[-0.013713510707021,0.063282050192356,0.021400228142738]],[[0.10509185492992,-0.010569747537374,0.0021057133562863],[-0.020915253087878,-0.0030626901425421,-0.0048761535435915],[0.017683954909444,0.011545545421541,0.031645938754082]],[[0.062619648873806,0.063726842403412,0.0017171589424834],[0.069422669708729,-0.042399425059557,0.070438481867313],[0.0014454857446253,0.049443151801825,-0.016584564000368]],[[-0.072375446557999,-0.058709144592285,-0.016012804582715],[-0.013217684812844,0.012126505374908,-0.019567245617509],[-0.014904770068824,-0.0056613888591528,-0.056604277342558]],[[-0.01220828294754,0.020964708179235,-0.071826227009296],[0.025114752352238,-0.049950987100601,-0.043391786515713],[0.046834398061037,-0.045054137706757,0.050120361149311]],[[0.004151773173362,0.05706425011158,-0.022078668698668],[0.032023057341576,-0.087590150535107,0.010165416635573],[0.03455712646246,0.005444994661957,0.088306993246078]],[[0.05637838691473,0.04026685282588,0.018042644485831],[-0.019392184913158,-0.014922599308193,-0.012953572906554],[0.077164016664028,0.014982668682933,-0.031802400946617]],[[0.023397563025355,0.061605852097273,-0.0090363975614309],[-0.07635073363781,-0.0093756457790732,0.087963454425335],[-0.051657259464264,0.037845574319363,0.054849788546562]],[[0.0063881850801408,0.051775150001049,-0.052835054695606],[0.049234800040722,-0.029869500547647,0.071943312883377],[-0.020383954048157,-0.086387194693089,0.11714024096727]],[[0.026851153001189,0.080113358795643,-0.059542953968048],[-0.021221172064543,0.061163380742073,-0.0037753030192107],[-0.0075777568854392,-0.04709880053997,-0.01388858538121]],[[-0.070158615708351,0.012245092540979,0.038707431405783],[0.02430540882051,0.029418081045151,-0.017347749322653],[0.014980427920818,0.011337175965309,-0.031119011342525]],[[0.034598182886839,0.037063118070364,-0.01361318398267],[0.032616898417473,0.083934687077999,0.046338189393282],[0.058326628059149,-0.026906276121736,0.032504137605429]],[[0.018410066142678,-0.035718340426683,-0.040309071540833],[0.019758759066463,-0.018708307296038,0.0331078954041],[0.060495764017105,-0.021575393155217,-0.02101331576705]],[[-0.016743883490562,0.088185429573059,-0.023452224209905],[-0.00090056727640331,-0.017821948975325,-0.014929190278053],[0.086442328989506,-0.029487470164895,-0.0033992379903793]],[[0.0073541714809835,0.0074501275084913,0.040630534291267],[-0.043526232242584,0.034128200262785,0.014772553928196],[-0.037687007337809,0.057013675570488,-0.036038272082806]],[[0.036589998751879,-0.052587889134884,0.01713346131146],[0.016304215416312,0.021790411323309,-0.074494041502476],[-0.040302973240614,0.011621965095401,-0.025828490033746]],[[-0.042731244117022,0.04392933100462,0.013615389354527],[0.077635258436203,0.035235024988651,0.035699721425772],[-0.010049887932837,-0.11240914463997,0.023974327370524]],[[0.043928273022175,-0.059998009353876,-0.013017125427723],[-0.0064214523881674,-0.0012342992704362,-0.024707306176424],[-0.0025198815856129,0.022267322987318,0.019972778856754]],[[0.090327024459839,-0.022551508620381,0.043479897081852],[-0.036343920975924,0.0040745753794909,0.037748504430056],[0.063388764858246,-0.037273671478033,-0.052762750536203]],[[-0.03454877436161,-0.021506477147341,0.022115455940366],[0.058751855045557,0.10582254081964,-0.048264402896166],[0.037558823823929,0.043023083359003,-0.0020424935501069]],[[0.072028376162052,0.035890497267246,-0.017644232138991],[-0.025239534676075,-0.0069897291250527,0.0015411274507642],[0.0070643853396177,0.084080673754215,0.022435054183006]],[[-0.046022031456232,0.083813317120075,-0.0074660363607109],[0.062495954334736,0.026626648381352,-0.02694102935493],[0.032748941332102,0.035666804760695,-0.0073072453960776]],[[0.0092765893787146,-0.065403692424297,0.020026296377182],[-0.015634097158909,0.055355828255415,-0.0072960313409567],[0.050546158105135,0.096888653934002,0.0063923080451787]],[[-0.0024051810614765,0.021453097462654,0.033472698181868],[0.052095673978329,-0.044005561619997,0.020001767203212],[-0.050422612577677,0.023308672010899,-0.031822107732296]],[[0.030993733555079,-0.019037259742618,-0.038384485989809],[-0.051021356135607,-0.0031013169791549,-0.0057561718858778],[-0.053292348980904,-0.026791237294674,0.10632933676243]],[[0.016089597716928,0.014321893453598,-0.015215792693198],[-0.068460188806057,-0.019065616652369,0.0089778192341328],[-0.023415692150593,0.057330444455147,0.078217007219791]],[[0.013811335898936,-0.023341629654169,0.008435407653451],[-0.037902779877186,0.020645858719945,0.088446222245693],[0.023032678291202,0.015004304237664,0.10031101107597]],[[-0.060372415930033,0.00050133484182879,-0.011765012517571],[-0.018643965944648,0.014626479707658,-0.045363944023848],[-0.0051109110936522,0.019866194576025,-0.03855587542057]],[[-0.034905273467302,-0.030052768066525,0.030037824064493],[0.012194082140923,-0.048145316541195,0.0082082943990827],[0.0070546199567616,-0.0063835801556706,0.039874661713839]],[[-0.023474657908082,0.01028586179018,0.033470433205366],[-0.00040465354686603,-0.0098468149080873,0.034940421581268],[0.0049096569418907,-0.025503795593977,0.060540419071913]],[[-0.043186590075493,-0.02875835262239,0.010182558558881],[-0.09318582713604,0.057629570364952,0.0011380570940673],[-0.03124195151031,-0.054407458752394,-0.099734954535961]],[[-0.043028172105551,-0.0079948510974646,0.0015971444081515],[-0.080356054008007,0.040973853319883,0.077399924397469],[0.01826873794198,0.064316771924496,0.059200681746006]],[[0.077604047954082,-0.038325920701027,0.028945099562407],[0.046599254012108,0.0013393906410784,0.033917259424925],[0.0035357186570764,0.050265051424503,0.03669747710228]],[[0.047648936510086,-0.044419273734093,0.032087448984385],[0.067234128713608,0.048534464091063,0.017741454765201],[0.080980084836483,0.0054026488214731,0.081831112504005]],[[-0.03226637467742,-0.008383471518755,0.089785739779472],[0.02774946205318,0.0043786163441837,-0.029325228184462],[0.02445125579834,0.027627747505903,0.01848591119051]],[[-0.029295148327947,-0.046858660876751,-0.043937388807535],[0.077264979481697,-0.023859445005655,-0.0095265600830317],[0.02968043461442,0.01053099706769,0.00098726397845894]],[[-0.017070723697543,-0.009603044949472,0.019355041906238],[-0.02268573641777,0.0039330557920039,0.038803942501545],[0.019647104665637,0.015826629474759,0.04923115298152]]],[[[-0.0049167899414897,0.06029037386179,0.053237654268742],[0.062060121446848,-0.046868696808815,0.059750162065029],[0.017808536067605,0.019151318818331,0.023259254172444]],[[0.020964382216334,-0.0026750129181892,-0.03904876485467],[0.026711478829384,0.044375844299793,0.01494506187737],[-0.017783664166927,0.00063567166216671,-0.033982992172241]],[[-0.082978136837482,-0.041905794292688,-0.030361833050847],[0.035597637295723,-0.011287164874375,0.040513474494219],[0.086463518440723,-0.011367430910468,-0.030941454693675]],[[0.014720278792083,-0.00019421993056312,-0.021147966384888],[0.055877778679132,0.045835699886084,0.0096434205770493],[-0.023578938096762,-0.049546729773283,0.034442253410816]],[[-0.059568274766207,-0.07717452943325,0.05574931576848],[0.054125010967255,0.077576048672199,0.013902732171118],[-0.010657418519258,-0.010781179182231,-0.019644226878881]],[[0.023233333602548,0.033748883754015,-0.044534880667925],[-0.0061469473876059,0.02547388151288,0.060875859111547],[0.07362088561058,0.047762386500835,0.023610010743141]],[[-0.023179724812508,-0.013758439570665,0.024861209094524],[0.042362466454506,0.020715538412333,-0.036544516682625],[0.018394850194454,0.023333352059126,0.051635429263115]],[[-0.10068867355585,0.042301204055548,0.02263480052352],[-0.031164769083261,0.039108596742153,-0.060561634600163],[-0.0061694951727986,0.093139454722404,0.063821986317635]],[[0.0058498694561422,-0.079724051058292,0.049584925174713],[-0.026065139099956,0.1826259046793,-0.0095828622579575],[-0.00091214635176584,0.048908121883869,0.10865979641676]],[[0.014811924658716,-0.0052273846231401,0.042516618967056],[0.01029425766319,0.044664110988379,-0.029017392545938],[-0.022676955908537,0.019819103181362,0.035918194800615]],[[-0.03784191980958,0.055691514164209,-0.0022860274184495],[0.04352917894721,-0.03812475502491,-0.023030439391732],[0.028190780431032,0.072973534464836,0.055690426379442]],[[-0.02347880974412,0.086682960391045,0.038952272385359],[0.024000909179449,-0.049127101898193,-0.091884218156338],[-0.035741280764341,0.06321344524622,-0.062787167727947]],[[0.0014527646126226,0.011314452625811,-0.03197580948472],[0.054221101105213,0.024938864633441,0.047712627798319],[0.015681859105825,0.016585191711783,0.048813886940479]],[[0.034384217113256,-0.031150409951806,-0.015007619746029],[-0.03650176525116,0.044323023408651,0.050223756581545],[0.010915181599557,-0.04861918464303,-0.0023283103946596]],[[-0.034190356731415,-0.056359015405178,-0.0060563017614186],[-0.039329770952463,-0.050599899142981,0.049052134156227],[-0.0049132159911096,0.011425114236772,0.019099049270153]],[[-0.023791326209903,-0.062466133385897,-0.087732739746571],[0.015584487468004,-0.018725737929344,-0.10035898536444],[0.05773551389575,-0.031671036034822,-0.017374891787767]],[[0.1180707141757,0.088827773928642,-0.077886819839478],[0.0076219225302339,0.0059652384370565,0.030412135645747],[-0.037000793963671,0.040810238569975,0.033181358128786]],[[-0.053313430398703,-0.02457207813859,0.021111350506544],[-0.034016828984022,-0.00047068655840121,-0.026535149663687],[0.1002811267972,0.03486568108201,-0.028083723038435]],[[-0.051654353737831,0.015853160992265,0.043479174375534],[-0.034904755651951,-0.079129822552204,-0.071288533508778],[0.037868842482567,-0.013478644192219,-0.0092204995453358]],[[0.04880004003644,0.037000335752964,0.017331158742309],[0.04469034075737,-0.053143795579672,-0.1002951040864],[-0.012306794524193,0.017681123688817,-0.008868201635778]],[[0.074089713394642,-0.14054194092751,-0.0019694198854268],[-0.069873191416264,0.018139565363526,0.027021119371057],[-0.043894361704588,0.010843062773347,-0.046698544174433]],[[-0.01212062779814,-0.00098801974672824,0.072488591074944],[0.0027983039617538,-0.0010870909318328,0.079507820308208],[0.072006486356258,0.10810102522373,0.046544879674911]],[[-0.035205505788326,0.011451493948698,0.045391224324703],[0.076937362551689,0.056227635592222,-0.07712259888649],[-0.033521454781294,0.0096888821572065,-0.08270600438118]],[[-0.014590105973184,0.033177450299263,-0.0060314759612083],[0.04630608856678,-0.025493504479527,0.043850991874933],[-0.026563961058855,-0.022301370278001,-0.007111213169992]],[[0.017714388668537,0.016252618283033,0.087326556444168],[-0.078052170574665,-0.018188247457147,-0.026419812813401],[0.026875464245677,0.054761499166489,-0.017660483717918]],[[-0.030692763626575,0.0025948632974178,-0.091100797057152],[-0.077521122992039,0.08512332290411,0.058549772948027],[-0.01284508779645,0.00041516177589074,0.0075433836318552]],[[0.029457181692123,0.11395788937807,-0.0015629167901352],[0.024313000962138,-0.047399468719959,0.026332907378674],[0.0051766536198556,0.057585582137108,0.030017018318176]],[[0.040764838457108,0.035683892667294,-0.0032795169390738],[0.055041987448931,0.070173546671867,0.011442595161498],[0.0074816658161581,-0.12784978747368,0.10577326267958]],[[0.062928199768066,-0.039525181055069,5.7696073781699e-05],[0.030724877491593,0.032922260463238,-0.049462594091892],[0.0083900466561317,0.040385153144598,-0.063575007021427]],[[-0.031547714024782,0.092135116457939,-0.073368608951569],[-0.01187401637435,0.0073820129036903,-0.063910245895386],[-0.00072637782432139,0.061203967779875,-0.037765398621559]],[[0.031105360016227,0.0034738616086543,-0.019804114475846],[0.02828636392951,0.042319346219301,0.0590880215168],[0.008094753138721,0.063234254717827,0.040265407413244]],[[-0.0038459517527372,-0.078165717422962,0.021717431023717],[0.002021954394877,0.050136458128691,-0.0032593640498817],[0.080520413815975,0.0061278021894395,-0.014607143588364]],[[0.0075142742134631,-0.026050632819533,-0.017274122685194],[0.028743786737323,0.064240999519825,0.094582349061966],[0.0082845762372017,0.052158173173666,0.089953899383545]],[[-0.055518638342619,0.11255440115929,0.017371175810695],[-0.0071610226295888,0.066342189908028,0.0080135185271502],[-0.018438294529915,0.017765467986465,0.036861434578896]],[[-0.012653505429626,-0.0045548207126558,-0.010859042406082],[-0.0052983043715358,-0.033570069819689,-0.073810607194901],[0.023597294464707,-0.020469022914767,0.003077216912061]],[[0.060766398906708,-0.0026756462175399,0.025059673935175],[-0.038773149251938,0.035710446536541,-0.0806939676404],[-0.029575631022453,0.02642610296607,0.019326621666551]],[[-0.060346700251102,0.00094986654585227,-0.0098115028813481],[0.029572231695056,-0.016269886866212,0.075696095824242],[0.00052710069576278,-0.018838793039322,-0.0013788669602945]],[[0.0055569000542164,-0.0045130951330066,-0.045421343296766],[0.048423435539007,-0.023114329203963,-0.042225033044815],[-0.016543928533792,0.011093609035015,-0.038909628987312]],[[-0.0020799492485821,0.032233219593763,-0.0071282787248492],[0.022405991330743,0.046995479613543,-0.0017856110353023],[-0.064442902803421,-0.021295826882124,-0.0069342399947345]],[[0.031386379152536,-0.035948995500803,-0.048692036420107],[0.045700147747993,0.043215308338404,0.041962251067162],[-0.020658304914832,-0.040461234748363,0.0092868423089385]],[[0.057401116937399,0.010165918618441,0.005867070518434],[0.030142530798912,0.017827734351158,-0.0064841066487134],[-0.017660388723016,0.0064267707057297,-0.072762377560139]],[[0.0068209511227906,-0.0054170414805412,-0.024367202073336],[0.070055738091469,0.11781187355518,0.043102256953716],[0.073101580142975,-0.030086701735854,0.080246955156326]],[[-0.10353244096041,0.063802771270275,0.037189196795225],[0.078711189329624,-0.055157773196697,0.018497124314308],[0.0022924616932869,0.070914424955845,0.030698612332344]],[[-0.020316721871495,0.066312298178673,-0.01896078325808],[-0.015611422248185,0.0017215427942574,-0.0080600287765265],[-0.036840472370386,-0.048106767237186,0.050377734005451]],[[-0.0031495708972216,0.060557659715414,0.064625613391399],[-0.039234526455402,0.05936773121357,0.0069856024347246],[0.039768431335688,-0.024670159444213,-0.01901638880372]],[[0.079461425542831,0.047737307846546,0.080582328140736],[0.056947410106659,-0.063370101153851,0.0016339110443369],[0.034176286309958,0.036098580807447,0.071577347815037]],[[0.049087557941675,-0.06041356921196,-0.032326940447092],[-0.049630917608738,-0.027350343763828,-0.085754200816154],[0.053806133568287,-0.0034626584965736,0.029986921697855]],[[-0.068037152290344,0.027748800814152,-0.043722670525312],[-0.031592167913914,0.0064878263510764,-0.07066472619772],[-0.083417013287544,-0.061123922467232,-0.03518221154809]],[[-0.018641866743565,-0.0066366204991937,-0.031215792521834],[0.019371844828129,0.0053244903683662,-0.048720229417086],[-0.12082070112228,-0.068740002810955,0.039201214909554]],[[-0.07326266169548,-0.043010015040636,-0.076362811028957],[-0.043088093400002,-0.039463777095079,0.01174717117101],[0.060774225741625,0.0091550024226308,-0.069114699959755]],[[-0.004579596221447,-0.063298404216766,-0.0077754543162882],[0.030481925234199,0.031539276242256,0.039957385510206],[-0.051380068063736,0.0016057912725955,-0.064693450927734]],[[0.0029502976685762,0.023677537217736,0.086556941270828],[-0.069906182587147,0.023324800655246,-0.0022935443557799],[0.050527948886156,0.099737137556076,0.032654695212841]],[[-0.053121659904718,-0.072454378008842,-0.065556645393372],[-0.025608545169234,-0.094569034874439,-0.077696815133095],[-0.072255700826645,-0.068727053701878,0.022888075560331]],[[-0.018999308347702,0.068946503102779,0.10085985064507],[-0.0055495179258287,-0.0002975027600769,0.04823187366128],[0.073478184640408,0.094589099287987,-0.025104179978371]],[[0.068952828645706,0.069278292357922,0.067392453551292],[-0.0032081457320601,-0.058226510882378,-0.017901228740811],[0.066107265651226,-0.013373172841966,-0.017986372113228]],[[-0.014151495881379,-0.069649256765842,0.065852217376232],[-0.075226627290249,0.06214002519846,0.14783495664597],[-0.040644630789757,-0.085385836660862,-0.014848818071187]],[[0.059401202946901,-0.0063987029716372,0.0029659329447895],[0.093385279178619,0.08528333902359,0.096650883555412],[0.02934592589736,-0.019953358918428,0.084946721792221]],[[-0.0050822515040636,-0.015265360474586,-0.065361358225346],[0.037268709391356,-0.00075795321026817,0.00053540541557595],[-0.0054312716238201,-0.01865510083735,0.0080522643402219]],[[-0.027977205812931,0.13481573760509,-0.0036616916768253],[-0.011016229167581,-0.025738978758454,0.10635673254728],[0.047780215740204,-0.013532290235162,0.087189741432667]],[[0.037181839346886,-0.0062515181489289,0.055705718696117],[0.03243325278163,-0.062242574989796,-0.01647418923676],[0.073410861194134,-0.024190196767449,0.038410142064095]],[[0.034340601414442,0.019052535295486,-0.052173040807247],[0.069219395518303,-0.077708914875984,-0.010870995931327],[-0.020322397351265,0.040884431451559,0.023878395557404]],[[-0.010344758629799,0.072664059698582,0.051951184868813],[-0.069966353476048,-0.037270329892635,-0.031567063182592],[-0.0097560044378042,-0.086502157151699,-0.01147397980094]],[[0.033193103969097,0.035535838454962,-0.012747954577208],[0.028910277411342,-0.0055874432437122,-0.021652547642589],[-0.024344950914383,-0.0094305761158466,0.055884964764118]],[[-0.062070097774267,-0.041350103914738,-0.097026906907558],[0.030918788164854,0.034017186611891,0.053497176617384],[0.0063426131382585,0.005399523768574,-0.0070753935724497]],[[-0.028828607872128,0.057032372802496,0.05300560221076],[-0.012480344623327,0.13211989402771,-0.084745205938816],[0.075136572122574,-0.021706601604819,0.030866086483002]],[[0.072127684950829,0.015296529978514,0.045537982136011],[0.087494432926178,0.0018055961700156,0.034606020897627],[0.048224177211523,-0.017380485311151,0.049789872020483]],[[-0.096779614686966,-0.062038719654083,-0.025332037359476],[-0.0022384284529835,0.0057389480061829,-0.040245831012726],[0.026883244514465,-0.0066172508522868,0.12152048945427]],[[0.053801707923412,-0.0070937140844762,-0.027992704883218],[-0.017864812165499,-0.032324228435755,-0.073743313550949],[-0.030970633029938,0.12740053236485,0.011303597129881]],[[0.069891303777695,0.075199194252491,-0.020280389115214],[-0.033022124320269,-0.0058486540801823,0.066966541111469],[0.001562935533002,0.029234122484922,-0.044764388352633]],[[-0.019617769867182,0.0032883298117667,-0.033022668212652],[0.04200903698802,-0.018688580021262,0.045897990465164],[-0.045227982103825,-0.0042586806230247,-0.03539926186204]],[[0.081846907734871,0.061684627085924,0.10464181751013],[-0.020696468651295,0.15486596524715,0.038540530949831],[0.11195015907288,0.080845810472965,0.044914439320564]],[[0.022050030529499,0.050949025899172,0.072536833584309],[0.080689921975136,-0.026411524042487,0.032568994909525],[-0.076928742229939,0.032892443239689,0.0090106297284365]],[[0.020841421559453,-0.013647370971739,0.012897096574306],[-0.026435889303684,0.1325556486845,-0.009791063144803],[-0.024076104164124,0.0045154122635722,0.03839149326086]],[[0.068269401788712,0.020969798788428,0.016955271363258],[-0.0086547015234828,-0.014665573835373,0.025015188381076],[-0.075651071965694,-0.04466300830245,-0.066344916820526]],[[-0.072363168001175,-0.018359893932939,-0.027891933917999],[0.0011907960288227,0.019663484767079,0.009075541049242],[0.088086999952793,-0.00072729674866423,0.020687175914645]],[[-0.10732725262642,0.011849268339574,-0.025836212560534],[0.0078154103830457,-0.02909635193646,-0.037971656769514],[-0.028628136962652,0.013510069809854,-0.009881105273962]],[[0.064259134232998,-0.0011059554526582,-0.044923987239599],[0.02482496201992,-0.0073154512792826,-0.0238385964185],[0.046630777418613,0.05074379965663,0.04808859154582]],[[0.020202703773975,-0.0015650319401175,-0.01056116912514],[0.089708887040615,0.096080914139748,-0.034005478024483],[-0.0033754175528884,0.06052903085947,0.066786766052246]],[[0.014018528163433,0.060823038220406,0.070787385106087],[-0.0099894404411316,0.015043427236378,0.034431673586369],[-0.04916375502944,-0.024060314521194,0.10800717771053]],[[0.045999228954315,0.063347987830639,-0.05558605119586],[-0.028529088944197,-0.045935656875372,-0.036069873720407],[-0.05201219022274,-0.069151885807514,-0.078111492097378]],[[-0.0069858902134001,0.0043680551461875,0.017703643068671],[-0.10008830577135,-0.051623906940222,-0.057824280112982],[0.036886487156153,-0.089558690786362,-0.008483350276947]],[[0.036082237958908,0.00063808925915509,-0.02150340937078],[0.039922170341015,0.032242111861706,0.01338448934257],[0.0082549666985869,0.014806341379881,-0.03524960950017]],[[-0.062044039368629,-0.061152048408985,0.039068095386028],[0.057608895003796,0.02642634510994,0.077677585184574],[0.017416531220078,0.041593290865421,-0.037174500524998]],[[0.058065947145224,0.036300294101238,0.015009710565209],[0.015826245769858,-0.047902345657349,0.050345525145531],[0.065863415598869,-0.00024261861108243,0.027673667296767]],[[0.11222139745951,-0.069494768977165,0.052925877273083],[-0.02649044059217,0.065556198358536,-0.011693126522005],[0.0011784702073783,-0.0995187535882,-0.0082651088014245]],[[-0.031702846288681,-0.013325872831047,0.024832207709551],[0.024558560922742,-0.051068879663944,-0.15180264413357],[0.012891641817987,0.017778627574444,0.027490703389049]],[[0.066037975251675,0.044169098138809,0.057145684957504],[0.0072969989851117,-0.035723280161619,0.027148699387908],[0.046669479459524,-0.026276869699359,0.068801388144493]],[[-0.0018838281976059,0.0085976347327232,-0.054066188633442],[-0.086688034236431,-0.017805259674788,-0.023539191111922],[0.027072573080659,-0.0884740203619,0.026310497894883]],[[-0.027595836669207,0.023168174549937,-0.11854609102011],[0.0095410589128733,-0.0030808323062956,0.045213967561722],[0.0063161267898977,0.093605361878872,0.088958024978638]],[[0.037237375974655,-0.074292533099651,-0.1099823564291],[-0.029019825160503,0.0060470001772046,-0.065752066671848],[0.049309350550175,-0.024774566292763,-0.040899559855461]],[[0.073439531028271,-0.0092905955389142,-0.041953667998314],[0.018914880231023,0.0045286794193089,0.087715275585651],[-0.01192073430866,0.024205388501287,0.041611023247242]],[[-0.012818246148527,-0.054372351616621,-0.008224337361753],[-0.056697063148022,-0.039659786969423,0.026897618547082],[0.059258911758661,-0.011181711219251,-0.024154732003808]],[[-0.031330678611994,-0.058249209076166,0.022152932360768],[-0.018409619107842,0.01137094385922,0.0081449188292027],[-0.011450712569058,-0.021128829568624,-0.04660527408123]],[[0.017595008015633,0.027204422280192,-0.014501900412142],[0.017236858606339,0.029297752305865,-0.011694035492837],[-0.017447337508202,0.053316947072744,0.056038290262222]],[[-0.060672353953123,-0.0069608693011105,-0.002689209068194],[-0.033967856317759,0.016719989478588,-0.11031736433506],[0.030430238693953,0.034440901130438,-0.054442688822746]],[[-0.04011370614171,-0.031507812440395,-0.015465212985873],[0.038296960294247,-0.052300527691841,-0.014290464110672],[-0.044153958559036,0.047486566007137,-0.058219768106937]],[[0.036269493401051,0.0058678719215095,0.012803697958589],[0.03903329744935,0.0086188958957791,-0.059858210384846],[0.056317593902349,0.045811284333467,-0.021327251568437]],[[-0.019581247121096,0.043938286602497,0.066173374652863],[0.094267748296261,-0.0092295967042446,0.032145075500011],[-0.094781391322613,-0.0031181920785457,0.054010506719351]],[[0.011851446703076,-0.0094724306836724,0.04196522384882],[-0.056467644870281,-0.060195650905371,-0.038848593831062],[0.018682045862079,-0.0056465175002813,-0.052521403878927]],[[-0.012542095966637,-0.01474697701633,0.024586450308561],[-0.013363885693252,0.011032739654183,0.049227524548769],[0.055711850523949,-0.0012972104595974,-0.057318370789289]],[[-0.048004314303398,-0.032094597816467,-0.038460161536932],[-0.0043406034819782,-0.069128334522247,0.0030516295228153],[-0.032396234571934,-0.021848430857062,-0.026442024856806]],[[0.02603942155838,-0.029870834201574,0.03312448784709],[0.033293444663286,-0.0041475011967123,0.053807236254215],[0.054385807365179,0.080195933580399,0.0077065997757018]],[[0.040113724768162,0.02991740219295,-0.022319320589304],[-0.018831523135304,0.016718441620469,-0.0095444265753031],[0.09032729268074,-0.011900773271918,0.081302426755428]],[[-0.036759153008461,-0.025480763986707,-0.017990056425333],[-0.016383845359087,-0.0077987546101213,-0.082001261413097],[-0.078269295394421,0.0056300922296941,-0.0033191612455994]],[[0.045487534254789,-0.058464191854,-0.045845612883568],[0.0060346624813974,0.03170695528388,-0.012081992812455],[0.018078310415149,0.12544198334217,0.041854042559862]],[[0.039871755987406,-0.037500210106373,-0.087228678166866],[0.090870127081871,0.029544766992331,0.004237680695951],[-0.028081025928259,0.035580143332481,0.050130359828472]],[[0.072414919734001,-0.039802934974432,0.04656582698226],[0.037275861948729,0.0096692238003016,-0.020312307402492],[0.059516500681639,0.06936963647604,0.040228094905615]],[[-0.10314211249352,0.060094211250544,-0.016685709357262],[0.015007917769253,-0.12161426991224,0.055057689547539],[0.010082021355629,-0.011496808379889,-0.05079248547554]],[[-0.01193587295711,-0.020411539822817,-0.030619660392404],[-0.049621738493443,0.029754614457488,0.06276573240757],[0.0071000186726451,-0.049784701317549,0.013521794229746]],[[0.0017988616600633,0.0076436283998191,-0.029451511800289],[-0.011015414260328,0.12100065499544,0.021244619041681],[0.064854629337788,0.075302258133888,0.077119491994381]],[[-0.078032188117504,-0.023083893582225,0.0011272920528427],[0.031845986843109,-0.02049782127142,-0.071653626859188],[0.077974729239941,0.087959572672844,-0.027457509189844]],[[-0.044756390154362,-0.091947972774506,-0.031873844563961],[-0.045928999781609,-0.062648110091686,-0.062999561429024],[-0.036460153758526,0.10854421555996,0.016364067792892]],[[-0.046956785023212,-0.0065064830705523,0.033583801239729],[-0.068916127085686,-0.11259642243385,0.073756039142609],[-0.062477879226208,-0.014844363555312,-0.013695197179914]],[[-0.078671745955944,-0.035942573100328,0.017419748008251],[-0.064368553459644,0.024532223120332,0.014448688365519],[0.0076925847679377,-0.08496331423521,-0.10299717634916]],[[-0.0074354000389576,0.017634687945247,-0.051532324403524],[-0.010985177010298,-0.046345349401236,0.088500931859016],[-0.044685542583466,-0.13148027658463,-0.067497901618481]],[[0.017234683036804,-0.022034639492631,0.017167083919048],[0.053067240864038,0.054398030042648,0.0089608011767268],[-0.026343792676926,-0.011181428097188,-0.020395532250404]],[[0.032019440084696,-0.046999786049128,0.0092350812628865],[-0.0036807893775403,0.01370107755065,-0.040845237672329],[0.094725281000137,0.013719815760851,0.019530445337296]],[[-0.0057237730361521,9.1222507762723e-05,0.084183089435101],[0.0072059817612171,0.1072645559907,-0.066228196024895],[-0.0081065520644188,0.055036567151546,-0.041536904871464]],[[-0.081483319401741,-0.067942231893539,-0.021020900458097],[-0.026132734492421,-0.063485212624073,-0.0042532035149634],[-0.055720571428537,0.0088793281465769,0.0475138053298]],[[-0.046828683465719,0.028171600773931,-0.0063607054762542],[0.051417853683233,0.031084602698684,0.085565015673637],[-0.0069321440532804,0.058286875486374,0.022750377655029]],[[-0.03861266374588,-0.0028427464421839,-0.047569770365953],[-0.0083012180402875,0.026964904740453,-0.029858244583011],[-0.0374890640378,-0.032600224018097,-0.032061655074358]],[[-0.0054645370692015,-0.064658954739571,-0.021696757525206],[-0.073895633220673,-0.022355942055583,-0.033117584884167],[-0.011730776168406,0.092250801622868,-0.058870356529951]],[[0.044473387300968,0.032065235078335,0.050807029008865],[-0.042973741889,0.030265105888247,0.0050928932614625],[-0.0093042077496648,0.020842676982284,0.081066563725471]],[[0.0064152567647398,0.036305468529463,0.024897349998355],[0.011627465486526,-0.0050892718136311,0.066339246928692],[-0.054681114852428,-0.010558754205704,-0.033610247075558]],[[0.035984434187412,0.01968664303422,0.017430605366826],[0.033579833805561,0.030099488794804,0.019324479624629],[0.021165620535612,-0.0055204308591783,0.013225555419922]],[[0.033005241304636,-0.10127659887075,0.086118929088116],[-0.076247185468674,-0.0056020575575531,0.021877417340875],[0.09655299782753,0.014834294095635,-0.023336805403233]],[[0.016556933522224,0.011372074484825,0.015426793135703],[0.0021095755510032,0.026796558871865,0.0096414219588041],[0.072914063930511,0.0057499893009663,0.0017600059509277]],[[-0.048814430832863,0.011323440819979,-0.011077744886279],[0.044246528297663,-0.0065379161387682,-0.021836426109076],[-0.061444599181414,0.090848602354527,0.038791064172983]]],[[[0.018393581733108,-0.021332258358598,-0.010705043561757],[-0.018903436139226,-0.025481250137091,0.019911115989089],[-0.014318357221782,0.015573175624013,0.0036075173411518]],[[0.013628962449729,-0.020846312865615,0.051882438361645],[-0.053577069193125,0.048702701926231,0.060071457177401],[-0.018596133217216,-0.050585903227329,0.0032026849221438]],[[0.053202554583549,0.030556906014681,-0.033713102340698],[0.057105209678411,-0.043613508343697,-0.053966160863638],[-0.015165524557233,0.016551723703742,-0.045272395014763]],[[0.038480583578348,0.012131954543293,-0.0074209552258253],[0.013754517771304,0.016504207625985,0.056254908442497],[-0.011032576672733,-0.00014867860591039,0.022475656121969]],[[0.019992606714368,0.022717187181115,-0.032822225242853],[-0.037506815046072,0.01011976134032,0.03182153776288],[-0.031410589814186,0.020107097923756,0.00094819674268365]],[[-0.036115940660238,0.011844540946186,0.022724013775587],[0.023319343104959,-0.021957295015454,0.020808096975088],[-0.013082487508655,0.011019975878298,0.028190553188324]],[[-0.025001525878906,-0.0025211123283952,0.034761022776365],[0.109529286623,-0.040086217224598,-0.0042631095275283],[0.032984357327223,0.038334771990776,-0.022998213768005]],[[0.025615783408284,-0.0047733983956277,-0.033118426799774],[-0.011920164339244,-0.017923906445503,0.062157012522221],[-0.00831756927073,0.051722180098295,0.033649727702141]],[[0.07734227180481,-0.0020253951661289,-0.0281185451895],[-0.0090680327266455,0.03886017203331,-0.0086919208988547],[0.012653798796237,0.0056136436760426,-0.01503941975534]],[[0.0099651850759983,0.0085803680121899,0.017751911655068],[0.011817106977105,-0.01679639518261,-0.019782016053796],[-0.035369124263525,0.03133824840188,0.0098488992080092]],[[0.032764978706837,0.0018242752412334,0.019005017355084],[-0.020448135212064,-0.008475124835968,-0.0097804386168718],[-0.027476288378239,0.028490958735347,0.025604255497456]],[[0.044058810919523,0.012273003347218,0.0088419821113348],[-0.10870862007141,0.033466942608356,0.057625900954008],[0.016799740493298,-0.015234865248203,-0.033865612000227]],[[-0.014844960533082,-0.0037329606711864,0.0074538681656122],[0.014533085748553,-0.010205945000052,0.051085893064737],[-0.018932979553938,-0.030680080875754,-0.047489833086729]],[[0.0014521437697113,0.026146566495299,-0.04687475040555],[0.010612574405968,0.074562400579453,-0.05729629099369],[0.045989792793989,0.042667269706726,-0.063789956271648]],[[-0.033004514873028,0.023335793986917,-0.0095053939148784],[-0.0096278497949243,-0.034676838666201,-0.035633254796267],[-0.0042110923677683,0.038079142570496,0.060721680521965]],[[0.042837791144848,-0.046422932296991,-0.015520731918514],[0.029965983703732,0.028474541381001,0.020329724997282],[-0.013504604808986,-0.13400462269783,0.043629370629787]],[[-0.039202865213156,0.0073598786257207,0.053327094763517],[-0.016872059553862,-0.049034770578146,-0.0090099275112152],[0.020973682403564,0.019857907667756,0.030163545161486]],[[0.048295151442289,-0.010299942456186,0.049392160028219],[-0.019996965304017,-0.079583160579205,0.04791946336627],[-0.056261252611876,-0.062280848622322,0.034104604274035]],[[0.023219618946314,-0.0016188943991438,0.00078146666055545],[0.0010984996333718,0.025321992114186,0.0049942783080041],[-0.016522435471416,-0.017177490517497,0.0014325720258057]],[[-0.028436260297894,-0.039910346269608,-0.064264185726643],[0.062255866825581,0.020550724118948,-0.11995925009251],[0.12420372664928,0.044810555875301,-0.15025873482227]],[[-0.0013543247478083,-0.027227023616433,-0.025677306577563],[-0.022852348163724,0.0010539973154664,0.013476112857461],[-0.033786606043577,-0.016046082600951,-0.014679806306958]],[[-0.025107245892286,-0.012634729035199,0.0072687678039074],[0.059120669960976,-0.0044938544742763,0.052539139986038],[-0.0042516896501184,0.0015447771875188,0.020984072238207]],[[-0.023339195176959,-0.088887259364128,-0.016496442258358],[0.067007683217525,-0.073614962399006,0.071322403848171],[0.0075762681663036,0.028198370710015,-0.00022934810840525]],[[-0.065412104129791,0.0079482281580567,0.050832577049732],[0.029908875003457,0.13020485639572,0.13436701893806],[-0.10854385048151,-0.06210582703352,-0.020753882825375]],[[0.063890926539898,-0.054093435406685,-0.036039896309376],[0.077640742063522,0.053177289664745,0.0028619011864066],[0.011082308366895,0.0074478108435869,0.022208757698536]],[[0.021552871912718,0.026163246482611,0.00029683855245821],[-0.063097402453423,-0.036690168082714,0.078515790402889],[0.031287118792534,0.045669067651033,0.060270186513662]],[[-0.016744613647461,0.022297626361251,0.036299511790276],[-0.0072168759070337,-0.057002451270819,0.046667896211147],[-0.0010322051821277,0.071038864552975,-0.078522242605686]],[[0.036399248987436,-0.013152251020074,0.063321806490421],[0.054154489189386,-0.044161532074213,0.008824622258544],[-0.015450533479452,-0.022904798388481,-0.015882682055235]],[[-0.0087255528196692,0.050243612378836,0.069976463913918],[-0.019531605765224,0.020408980548382,-0.11487483233213],[0.028586277738214,-0.042246922850609,-0.0034279404208064]],[[-0.010372689925134,0.0054726232774556,0.023932207375765],[0.015111732296646,0.023800918832421,-0.014808469451964],[-0.00012025483738398,-0.044497534632683,-0.0228182207793]],[[-0.004598455503583,-0.037452321499586,0.016575561836362],[-0.082541167736053,0.060648858547211,-0.0011470613535494],[-0.032697096467018,0.060050524771214,0.022439563646913]],[[0.02233506180346,-0.099049992859364,-0.002111692680046],[-0.031391147524118,-0.064623929560184,-0.096728898584843],[0.017016742378473,0.080801092088223,0.095094494521618]],[[0.032244950532913,0.024738486856222,0.022784490138292],[-0.0077663864940405,-0.0055394028313458,0.062712326645851],[-0.036754667758942,-0.036828182637691,-0.019869118928909]],[[-0.030430033802986,0.022250002250075,-0.013162645511329],[-0.0067447000183165,0.074165306985378,0.0055338037200272],[0.020816927775741,0.021235885098577,-0.077719986438751]],[[-0.055351458489895,0.019171366468072,0.042817071080208],[0.017768729478121,0.0051405327394605,0.098892025649548],[0.030075877904892,0.053291093558073,0.040263872593641]],[[-0.05604675412178,0.086353704333305,0.054996572434902],[-0.011041754856706,0.058914054185152,-0.038515821099281],[-0.11443230509758,-0.0039375871419907,0.060442749410868]],[[-0.0038554577622563,-0.0010899988701567,-0.00676752300933],[-0.046285342425108,-0.0031582871451974,0.0082793356850743],[0.0037364752497524,0.080293342471123,-0.053320299834013]],[[0.014219224452972,-0.064455755054951,0.0022022756747901],[0.00037300103576854,0.060212906450033,-0.0077299885451794],[0.0097332932054996,-0.015537615865469,-0.0036117143463343]],[[-0.024014910683036,0.021292980760336,-0.016340259462595],[-0.062779791653156,0.0007483457447961,0.077499337494373],[-0.025009108707309,-0.056055534631014,0.064574100077152]],[[0.029594013467431,0.00057172274682671,0.01913395524025],[-0.040274202823639,0.025379369035363,0.0030075232498348],[0.051183711737394,-0.041887633502483,-0.059738397598267]],[[-0.029868576675653,0.050236880779266,-0.0035863809753209],[0.066622279584408,0.055171519517899,-0.02024020254612],[-0.013225421309471,0.0011439307127148,-0.092288911342621]],[[-0.061513788998127,-0.022467827424407,0.057867143303156],[-0.040161360055208,-0.001916624722071,0.11183568835258],[-0.027063984423876,0.027287201955914,0.013283593580127]],[[0.021455207839608,-0.0052470336668193,-0.066463060677052],[-0.042897924780846,0.018086550757289,-0.0088632572442293],[0.019740980118513,0.052987948060036,0.046335007995367]],[[0.044728793203831,-0.019900124520063,0.074155420064926],[0.032380402088165,0.13857302069664,0.029128156602383],[0.014887343160808,0.058377619832754,0.10114479809999]],[[0.028199251741171,-0.0056362710893154,0.030601406469941],[-0.0064544258639216,-0.034817464649677,-0.019462637603283],[0.0035120756365359,0.046098198741674,0.043840296566486]],[[-0.0058737127110362,-0.041896037757397,0.026139281690121],[0.066155441105366,-0.012121221981943,-0.013551226817071],[-0.031502395868301,0.014076258055866,0.059803321957588]],[[-0.05419085547328,-0.026451287791133,0.019501727074385],[-0.0047984113916755,0.046161375939846,0.019206283614039],[0.12770862877369,0.030546139925718,-0.054226405918598]],[[0.020373623818159,0.00032838655170053,0.013985265977681],[-0.061478868126869,-0.094967491924763,-0.12641532719135],[0.00062177510699257,0.04756923392415,0.036718085408211]],[[-0.041010957211256,-0.00021278187341522,0.023379044607282],[-0.043533015996218,0.034200832247734,0.012242937460542],[0.041960913687944,-0.03966748714447,0.057766046375036]],[[-0.0217115432024,-0.0090027889236808,-0.018683753907681],[-0.013322183862329,0.046759288758039,0.020602429285645],[-0.071713522076607,0.037692680954933,0.046243507415056]],[[0.049955166876316,-0.031547956168652,0.05841313675046],[-0.024750264361501,0.045364867895842,0.0062961750663817],[0.038793288171291,-0.055595703423023,-0.03131465986371]],[[0.01196201518178,0.020138064399362,0.005526483990252],[0.082342855632305,0.037787530571222,-0.042881060391665],[0.011612247675657,0.015531660057604,-0.11607539653778]],[[0.075502805411816,-0.028111571446061,0.006661023478955],[-0.033858835697174,0.033389121294022,0.039752833545208],[-0.070855557918549,-0.02671330049634,0.0051530869677663]],[[-0.065264455974102,-0.036074511706829,0.0048736874014139],[0.043126795440912,0.015790957957506,-0.021719804033637],[0.024049794301391,0.019880767911673,0.03551696613431]],[[0.047278288751841,0.024230482056737,0.040752537548542],[-0.012557505629957,-0.055725332349539,-0.025424441322684],[0.0080035934224725,-0.031763382256031,0.016687173396349]],[[-0.021278388798237,0.020842112600803,-0.012924061156809],[-0.0099584432318807,-0.03321560844779,-0.023025514557958],[0.075886748731136,0.017561532557011,-0.0072237295098603]],[[0.0096240164712071,-0.014931431040168,0.0058435047976673],[-0.066039517521858,0.074550189077854,0.0029761034529656],[0.055656258016825,-0.040698666125536,-0.077035412192345]],[[0.0028598967473954,0.0056465133093297,-0.057757440954447],[0.01210852432996,0.010639352723956,0.009969225153327],[-0.033214285969734,0.027762891724706,0.047032102942467]],[[-0.018669618293643,-0.0098225306719542,-0.052607294172049],[0.015366287901998,0.039292745292187,-0.0089165922254324],[-0.0041870353743434,0.098769299685955,-0.015948379412293]],[[-0.013683289289474,-0.02327961102128,0.018180228769779],[0.045774836093187,0.04369219020009,-0.084517143666744],[0.038934048265219,-0.00077037641312927,-0.015988737344742]],[[-0.0086735915392637,0.0061137834563851,-0.031375288963318],[-0.0089523540809751,0.06825315952301,0.010140371508896],[-0.059983529150486,-0.047294929623604,0.077166900038719]],[[-0.040011469274759,0.0055899610742927,-0.0012093656696379],[0.060263957828283,0.013174240477383,-0.033398970961571],[0.00072351400740445,0.069928877055645,-0.064765267074108]],[[0.0097096357494593,0.067931167781353,-0.022229367867112],[0.040831070393324,-0.10892192274332,0.036003690212965],[0.030758984386921,0.0038023048546165,-0.051916845142841]],[[-0.024613928049803,0.010371706448495,-0.0011350472923368],[0.03950410336256,-0.0038264051545411,-0.0080407802015543],[-0.031488887965679,0.071647822856903,0.021707342937589]],[[-0.013126562349498,0.10362808406353,-0.074300661683083],[0.019743951037526,-0.098317757248878,0.029790887609124],[-0.042798899114132,0.02108945697546,0.075010262429714]],[[-0.0031682976987213,-0.019465189427137,0.025819821283221],[-0.019936248660088,0.011265395209193,-0.057350907474756],[0.05838942527771,-0.03135759010911,0.058266215026379]],[[0.072939939796925,0.066963709890842,-0.069859057664871],[-0.039657067507505,-0.047670356929302,-0.07687796652317],[0.028112487867475,0.027347033843398,0.054237008094788]],[[0.047233715653419,0.075662598013878,0.0073589072562754],[-0.05720417201519,-0.015089069493115,0.024465581402183],[-0.014065328985453,0.0015284592518583,-0.027416525408626]],[[0.036863271147013,-0.021204125136137,0.044264171272516],[0.016122456640005,0.0054654045961797,-0.09892775118351],[-0.04110212251544,0.095315970480442,-0.051305811852217]],[[0.026790713891387,-0.0066322037018836,0.0013504100497812],[0.021328043192625,0.00013216154184192,0.069854877889156],[-0.019117115065455,-0.037822067737579,-0.027584545314312]],[[-0.015936519950628,0.056554440408945,-0.078395500779152],[0.038819588720798,0.019056921824813,-0.055590126663446],[0.0052282032556832,0.016217643395066,0.033745016902685]],[[-0.0021237824112177,0.010237189009786,0.087209984660149],[-0.049855757504702,0.038328357040882,0.026625975966454],[0.039020273834467,-0.10349755734205,-0.071329422295094]],[[-0.015849966555834,0.011297684162855,0.001863703597337],[-0.016009161248803,-0.070722430944443,0.051680956035852],[-0.052161414176226,-0.062333181500435,0.048159286379814]],[[-0.042963411659002,0.0012221009237692,0.027780581265688],[-0.01773826405406,-0.034445144236088,-0.052886176854372],[0.055047310888767,0.034664608538151,-0.015074791386724]],[[-0.068776406347752,-0.12315894663334,-0.055056128650904],[-0.035240571945906,0.053425114601851,0.043814595788717],[0.012457343749702,0.066698327660561,0.020750360563397]],[[0.041986506432295,-0.03631429746747,0.048453085124493],[-0.035955131053925,-0.0069464477710426,-0.034000527113676],[-0.025937860831618,-0.017514823004603,0.020008629187942]],[[0.027160249650478,0.011743191629648,-0.01861996948719],[-0.0091644190251827,0.001829803804867,0.017942380160093],[-0.060946613550186,-0.07771997153759,0.063276514410973]],[[-0.044250197708607,0.03089440241456,-0.11101654917002],[0.047319550067186,0.075535833835602,-0.015174358151853],[-0.0058699743822217,0.034586757421494,0.021686229854822]],[[0.033000588417053,-0.0089102508500218,0.014895004220307],[-0.0084817791357636,0.0094592571258545,-0.042711388319731],[-0.00054333318257704,0.031500749289989,-0.027975156903267]],[[0.041885692626238,0.008747604675591,0.04474775120616],[0.036686021834612,0.039523277431726,-0.028251085430384],[0.033813193440437,-0.046152237802744,-0.067191235721111]],[[-0.02928339317441,0.01929927803576,-0.072047762572765],[-0.0047724694013596,-0.031679671257734,-0.022588215768337],[0.059766050428152,0.009489743039012,0.04075950756669]],[[-0.012202074751258,0.02182150259614,-0.012045397423208],[-0.019596496596932,0.060001574456692,0.075675532221794],[0.032507039606571,-0.034059446305037,-0.031783755868673]],[[0.012923404574394,0.018995337188244,-0.00015004037413746],[-0.029769510030746,-0.04794043675065,0.071261316537857],[-0.059387732297182,0.027911612764001,-0.0058027259074152]],[[0.0061933593824506,-0.0032604911830276,0.054011031985283],[-0.032016895711422,0.0064425645396113,-0.018392883241177],[-0.01207731012255,0.032412152737379,0.0066627389751375]],[[0.029166275635362,0.0091329235583544,-0.015968894585967],[0.012663783505559,0.036183603107929,0.05511736124754],[-0.042986690998077,-0.017203764989972,0.0038666059263051]],[[0.019426403567195,0.0045918226242065,-0.068143181502819],[0.0017596102552488,0.0038458928465843,-0.0091552995145321],[0.04978659003973,0.066856853663921,-0.061547253280878]],[[0.036262296140194,-0.0066638928838074,0.040172677487135],[0.01968059875071,0.036102335900068,-0.0034143354278058],[-0.053388848900795,-0.026394126936793,0.029623504728079]],[[0.043849267065525,-0.055748973041773,0.066738121211529],[-0.053052358329296,-0.021797088906169,0.012015401385725],[0.0045921099372208,0.049701098352671,-0.058417059481144]],[[0.010548282414675,-0.0024956301786005,-0.025895738974214],[0.027534695342183,-0.011035595089197,0.083060100674629],[0.0054055447690189,-0.00816067494452,-0.075803205370903]],[[-0.0036026414018124,0.018344076350331,-0.11612094938755],[0.049154717475176,-0.089710772037506,0.0014835395850241],[0.027760429307818,0.0093715172261,0.016396384686232]],[[-0.024530651047826,-0.04627038910985,0.033460658043623],[0.0036598397418857,-0.037845779210329,0.040473230183125],[0.0095001021400094,0.0092524513602257,0.03168610483408]],[[0.02153005823493,-0.063452512025833,-0.017324397340417],[0.092336468398571,-0.08486220985651,0.013827816583216],[0.019774872809649,-0.071292728185654,0.032620616257191]],[[0.01652717590332,-0.0020780183840543,-0.037115897983313],[-0.025486454367638,-0.058550778776407,0.029229247942567],[-0.012519770301878,0.06200997531414,0.013690043240786]],[[0.034101001918316,-0.046244502067566,-0.028684392571449],[0.02749877795577,-0.039880398660898,0.052531845867634],[-0.014117698185146,0.045083947479725,-0.033896669745445]],[[0.063788466155529,0.0073046237230301,-0.033085118979216],[-0.0069597722031176,-0.038906089961529,-0.038860287517309],[0.020989356562495,0.03492159768939,-0.061863094568253]],[[-0.02699320577085,0.034238770604134,-0.07891583442688],[-0.037222314625978,0.044990710914135,0.024633286520839],[0.039079245179892,0.0048819188959897,0.059135459363461]],[[0.13959939777851,-0.0096481656655669,0.019238755106926],[-0.048121649771929,0.07011691480875,0.0024247779510915],[-0.029938789084554,-0.07123164832592,-0.063912995159626]],[[-0.06830383092165,-0.014861850999296,-0.021524269133806],[0.029509466141462,0.015614293515682,0.016773592680693],[0.0095786340534687,-0.029594363644719,0.044420588761568]],[[0.053526654839516,-0.017966091632843,0.040060523897409],[-0.011580764316022,0.084377072751522,-0.035570196807384],[-0.0021036840043962,-0.057413890957832,-0.0072877458296716]],[[0.083702482283115,-0.015334664843976,-0.014916554093361],[-0.051832921802998,-0.014306928962469,0.012182574719191],[-0.059136804193258,0.023166509345174,0.010395581834018]],[[-0.038497120141983,-0.0031186190899462,0.017412588000298],[0.042928721755743,0.035565990954638,-0.014512542635202],[-0.019890015944839,-0.023942407220602,-0.023283686488867]],[[-0.068381562829018,-0.036316711455584,0.06001928076148],[-0.064010515809059,0.011121729388833,0.10208095610142],[-0.049839168787003,-0.0098734209313989,0.016740193590522]],[[-0.025850832462311,-0.083609767258167,-0.056572064757347],[0.077928721904755,-0.010751768946648,0.0057161189615726],[0.031542524695396,-0.010427782312036,0.023801336064935]],[[0.015942012891173,-0.033095084130764,0.031301759183407],[0.026226315647364,-0.032629922032356,0.0044791675172746],[-0.027432098984718,-0.040713422000408,0.042432263493538]],[[0.067556269466877,0.023178320378065,-0.038661871105433],[-0.020279267802835,0.0018342764815316,0.0054943752475083],[0.010550603270531,-0.010182737372816,-0.013097711838782]],[[0.01254403591156,-0.006197992246598,-0.038951929658651],[-0.05134754627943,-0.0046004764735699,0.05534578487277],[0.05239162966609,-0.011230289004743,0.022442856803536]],[[0.010565716773272,0.064982868731022,-0.0046171913854778],[0.035216622054577,0.030872294679284,0.011357802897692],[-0.012071165256202,-0.017759930342436,-0.086625769734383]],[[-0.018307216465473,-0.038420859724283,0.0078655946999788],[0.063228562474251,-0.00027996776043437,0.018693154677749],[0.038323935121298,-0.054672956466675,0.01138264965266]],[[0.0069983671419322,0.051620092242956,-0.023086184635758],[-0.020455276593566,-0.0016791271045804,-0.0056204255670309],[0.0032187607139349,0.087780460715294,-0.011023269034922]],[[-0.0056956647895277,-0.0074130422435701,0.0050685596652329],[-0.022630242630839,0.025862207636237,0.03484383970499],[-0.012014838866889,0.015767188742757,0.017643282189965]],[[-0.027007281780243,0.058820672333241,-0.027468906715512],[0.028469065204263,-0.054596830159426,-0.073563061654568],[-0.00073205720400438,-0.10456044971943,-0.054211650043726]],[[0.029841769486666,0.052630927413702,-0.054791882634163],[-0.016532324254513,-0.03247582539916,-0.011776529252529],[0.020716123282909,0.01570307649672,0.022672737017274]],[[-0.047875873744488,0.0022023697383702,-0.0065111708827317],[0.085785903036594,0.023306366056204,-0.079299435019493],[0.074876733124256,-0.049276314675808,-0.07534921169281]],[[-0.012854799628258,0.0087951393797994,-0.019876375794411],[-0.0021658251062036,-0.075142815709114,0.0093076033517718],[-0.018586857244372,0.060855653136969,0.052247550338507]],[[0.0063671418465674,0.059252995997667,0.01963503472507],[-0.0062865717336535,0.030754946172237,0.015047995373607],[0.0018046578625217,-0.033564794808626,-0.028711535036564]],[[0.01217906922102,0.0032437578774989,0.016296528279781],[-0.046688623726368,-0.023973321542144,0.079287193715572],[0.029310144484043,-0.018474100157619,-0.037235897034407]],[[0.0057946108281612,0.008811516687274,-0.095555737614632],[0.045262847095728,0.0085807740688324,0.0015980178723112],[0.01949667558074,0.097407057881355,0.030167849734426]],[[-0.010803726501763,2.8569962523761e-05,-0.030843611806631],[0.0038402620702982,0.056739434599876,0.033334065228701],[-0.040503848344088,-0.0089729251340032,-0.0028663461562246]],[[-0.029094103723764,-0.069328725337982,-0.0168078225106],[-0.02182706259191,0.032424051314592,0.08912032097578],[-0.0020609514322132,-0.0034659642260522,-0.0037438438739628]],[[-0.00033469568006694,-0.015302889049053,0.028492078185081],[-0.00012441563012544,-0.092375367879868,-0.027546068653464],[0.022291768342257,0.001601004274562,0.030452895909548]],[[0.0085971299558878,-0.038724754005671,-0.014643607661128],[-0.052523300051689,-0.16216547787189,-0.085484802722931],[-0.056908018887043,-0.11007259041071,-0.040607754141092]],[[0.01726664789021,0.019239027053118,-0.022068930789828],[0.0032428149133921,0.040942575782537,-0.00018971937242895],[0.030323315411806,0.065117962658405,-0.072331629693508]],[[0.00090264691971242,0.02072793059051,-0.025794522836804],[0.024557612836361,-0.014364554546773,0.0040268921293318],[0.049933422356844,0.014281728304923,-0.10014539957047]],[[-0.0046859472058713,0.0230264198035,-0.015055148862302],[-0.072931252419949,2.1374389689299e-06,-0.0052471794188023],[0.033394355326891,0.019622141495347,0.020030952990055]],[[-0.0034120520576835,0.020266752690077,-0.0017723640194163],[-0.030135536566377,-0.0012349375756457,-0.010787430219352],[-0.060612209141254,0.074177399277687,0.036438558250666]],[[0.028670269995928,-0.0765241086483,0.0072442176751792],[0.061673577874899,-0.064103186130524,-0.037773981690407],[0.014853488653898,0.081285960972309,-0.015536099672318]],[[0.011840725317597,0.062385354191065,0.021072560921311],[0.041116822510958,-0.020966412499547,-0.026871772482991],[-0.10451364517212,0.050547279417515,-0.0024343742989004]],[[0.023650076240301,0.04932352527976,-0.011819703504443],[-0.051113676279783,-0.028961308300495,-0.011136462911963],[0.01907828822732,0.016976535320282,-0.040513154119253]]],[[[0.029038354754448,-0.026512304320931,-0.0495615452528],[0.012976753525436,0.042665593326092,0.03111831843853],[-0.007982412353158,0.012761044315994,0.041055284440517]],[[-0.00055747979786247,-0.058311369270086,-0.044649690389633],[0.024975389242172,4.1521998355165e-05,0.028786066919565],[0.035347491502762,0.023717179894447,-0.02744753472507]],[[0.020149908959866,-0.059713777154684,0.029661722481251],[0.026783866807818,0.022992311045527,0.068406075239182],[0.041578575968742,0.037348050624132,0.0011361362412572]],[[-0.070098884403706,0.0055490867234766,0.058487553149462],[0.031384699046612,-0.029488507658243,-0.016460070386529],[-0.034592390060425,0.070547126233578,-0.047221727669239]],[[-0.045862480998039,-0.033837664872408,-0.032913792878389],[-0.025144139304757,0.01779418811202,-0.060658484697342],[-0.098518945276737,-0.029008412733674,0.0032781725749373]],[[-0.068837702274323,-0.03927693143487,0.063698694109917],[-0.0040313974022865,-0.0053583779372275,-0.0045655509456992],[0.02422047033906,-0.047238495200872,-0.044963628053665]],[[0.0030686603859067,0.012467512860894,0.10106414556503],[-0.0059143477119505,0.043948534876108,0.054928358644247],[0.011971171014011,-0.085095830261707,-0.024763727560639]],[[0.07039936631918,0.018232896924019,-0.021277520805597],[0.037236176431179,-0.00083241553511471,0.07609137147665],[-0.060045003890991,-0.0024633831344545,-0.032292500138283]],[[0.028239633888006,-0.011999312788248,-0.017388956621289],[0.014126004651189,-0.03049460798502,0.030678361654282],[0.070913717150688,-0.062366135418415,-0.037872202694416]],[[0.040867313742638,0.013309681788087,0.039358526468277],[-0.0061011668294668,0.02102479711175,0.002463145647198],[-0.068924680352211,0.006281309761107,-0.038934495300055]],[[0.024092238396406,0.01119583658874,-0.022240459918976],[-0.00048392356256954,0.037034541368484,0.022172311320901],[-0.052406530827284,-0.0033458629623055,0.023095333948731]],[[0.010836682282388,-0.038139924407005,0.037099950015545],[0.044348191469908,-0.0020843504462391,0.0072482340037823],[0.0050983671098948,0.061833623796701,-0.018302198499441]],[[0.084361501038074,0.0034210088197142,-0.047520652413368],[0.017220357432961,0.019708933308721,0.084730409085751],[-0.013165675103664,0.063727863132954,-0.079939261078835]],[[0.030356509611011,0.065433621406555,0.080899126827717],[-0.048624876886606,0.026685584336519,0.005703333299607],[0.04360719025135,-0.00586380623281,0.056312881410122]],[[0.0029405429959297,-0.018327156081796,0.04060997441411],[-0.09498306363821,0.0034045854117721,-0.032383870333433],[0.0084885526448488,-0.034764632582664,0.012867112644017]],[[-0.0016574030742049,-0.068836852908134,0.019236380234361],[0.019141251221299,0.037299986928701,0.0088185658678412],[0.022720664739609,-0.023794189095497,-0.012590744532645]],[[0.040760658681393,-0.02658955194056,0.0045663192868233],[-0.0062472405843437,0.026507418602705,0.036167249083519],[0.10160782188177,0.02413241006434,-0.00019981022342108]],[[0.014734195545316,0.021465577185154,-0.016517773270607],[-0.028206717222929,-0.046024870127439,0.035091433674097],[-0.046337515115738,0.0080218240618706,0.010429687798023]],[[0.033047508448362,-0.031793925911188,-0.025228850543499],[-0.017909167334437,-0.063186824321747,0.0090658152475953],[-0.034610524773598,-0.033936228603125,0.067285850644112]],[[0.062457457184792,-0.066983096301556,0.018598882481456],[0.01778888143599,0.068359583616257,0.070467874407768],[-0.058595422655344,-0.00081801105989143,0.04116827622056]],[[0.023191463202238,-0.021650835871696,0.016917774453759],[0.023164745420218,-0.077743664383888,-0.018278645351529],[0.0031848214566708,-0.027825444936752,-0.073046624660492]],[[0.006547074764967,0.010009460151196,-0.029454585164785],[0.016090845689178,0.010600904934108,0.01869180239737],[0.06145504117012,0.0068679316900671,0.027450477704406]],[[0.041151095181704,-0.0082805408164859,-0.0063403300009668],[-0.067850448191166,-0.011631668545306,-0.017549244686961],[0.020338734611869,-0.036989472806454,-0.017150698229671]],[[-0.034390933811665,-0.048886872828007,0.0053984131664038],[0.029188897460699,-0.00027859484544024,-0.013840036466718],[0.053592137992382,-0.030856262892485,0.031347915530205]],[[-0.1146240234375,0.03650277107954,-0.13947038352489],[-0.055857639759779,0.050952110439539,0.0047438559122384],[-0.0234634000808,0.040002379566431,-0.018461480736732]],[[0.016216499730945,-0.050058357417583,-0.042667176574469],[-0.085874050855637,-0.022632207721472,0.030706163495779],[0.0064001525752246,-0.016998734325171,-0.055070508271456]],[[-0.035824708640575,-0.066882565617561,0.063007943332195],[0.012327696196735,-0.033129662275314,0.061029803007841],[0.10482220351696,0.010862030088902,-0.011362481862307]],[[0.02522936463356,0.024916546419263,0.013360193930566],[-0.020080728456378,0.0087635917589068,0.016217440366745],[-0.035095524042845,0.054216876626015,-0.061085153371096]],[[-0.043836060911417,-0.0003041322925128,0.036983966827393],[0.025925705209374,-0.0094733750447631,0.047594603151083],[-0.0054639093577862,-0.0070166243240237,0.055683944374323]],[[-0.042017601430416,0.050114564597607,-0.03960657119751],[0.019827840849757,-0.0081764431670308,0.0028904413338751],[-0.012628608383238,-0.032022275030613,0.027364080771804]],[[-0.035757679492235,0.0043417499400675,0.030260618776083],[0.034159477800131,0.070727743208408,-0.0017403734382242],[0.02690108306706,0.0041297203861177,0.011876410804689]],[[0.059659462422132,-4.6787692554062e-05,-0.048885207623243],[0.054697509855032,-0.047152899205685,-0.0077510359697044],[0.059336181730032,0.014460656791925,0.020196070894599]],[[0.032159257680178,-0.051575727760792,0.035885773599148],[0.013555698096752,0.025605071336031,-0.0066110254265368],[-0.026454007253051,-0.04095957800746,0.0078822020441294]],[[0.0060964939184487,0.025630537420511,-0.10623046010733],[0.027275469154119,0.023965394124389,0.030338577926159],[0.051245227456093,0.037724118679762,0.0081848623231053]],[[0.015994241461158,-0.034345276653767,0.048905115574598],[0.057734359055758,0.089287541806698,-0.034832756966352],[-0.080637969076633,0.027190160006285,0.010935413651168]],[[0.020209653303027,-0.052817348390818,0.023145366460085],[0.016147699207067,0.034958403557539,-0.032093316316605],[-0.028665905818343,0.029319439083338,-0.0003926690260414]],[[0.022555666044354,-0.0040200212970376,-0.011044269427657],[0.050788678228855,-0.01218006759882,0.009530957788229],[-0.059303965419531,0.045954693108797,0.0011454692576081]],[[0.058014016598463,0.011554372496903,0.042358160018921],[-0.065126471221447,0.032414499670267,-0.02221405133605],[0.049614835530519,-0.04807472974062,-0.041425116360188]],[[-0.02994935400784,0.0088880034163594,-0.04705860838294],[-0.06033868715167,0.012197282165289,0.019722664728761],[-0.045306153595448,-0.031888023018837,0.004137990064919]],[[-0.029981050640345,-0.035667389631271,0.060859121382236],[0.051334083080292,0.011161619797349,0.011107554659247],[0.023525962606072,-0.061209730803967,0.022411921992898]],[[0.049111168831587,-0.0073856189846992,-0.028092678636312],[-0.047934833914042,-0.040419034659863,0.001115667517297],[0.060041964054108,0.02584171295166,0.0229910351336]],[[0.0042348639108241,0.05648498237133,0.093896515667439],[-0.0089290039613843,-0.086542651057243,0.017459603026509],[0.11432997137308,0.044555559754372,0.025722101330757]],[[0.044297154992819,0.085574992001057,-0.050783850252628],[0.017105812206864,-0.0074545508250594,0.020467540249228],[0.001581440679729,-0.003641435643658,0.020213287323713]],[[0.036446277052164,-0.042379390448332,-0.053523737937212],[0.080139428377151,0.060533531010151,-0.014187999069691],[-0.024769522249699,-0.0064061493612826,0.011201170273125]],[[-0.037074081599712,0.06029786914587,-0.0055891103111207],[0.013949802145362,-0.0032522983383387,0.017091974616051],[0.04787852242589,0.0078910142183304,0.0431800596416]],[[-0.010497871786356,0.00016227534797508,0.031802672892809],[0.036191388964653,-0.0099599501118064,0.016903664916754],[0.041675064712763,0.03598565235734,0.02334208227694]],[[-0.0031978108454496,0.043153338134289,0.018128555268049],[0.012630490586162,-0.0057032117620111,-0.014646727591753],[0.0078857960179448,-0.029062377288938,0.0078358743339777]],[[0.013375046662986,0.01697950065136,-0.090643398463726],[0.00181652570609,0.010988428257406,-0.068169102072716],[-0.0044005517847836,-0.061737820506096,-0.023944370448589]],[[0.033866286277771,-0.027916427701712,0.010798620991409],[-0.011199191212654,-0.025062195956707,-0.031411614269018],[0.047537077218294,-0.032944332808256,-0.0064228270202875]],[[-0.030822958797216,-0.025195155292749,0.017304074019194],[-0.0010250393534079,-0.015035307966173,-0.012112000957131],[0.067593589425087,-0.0066841267980635,0.088599279522896]],[[0.041034705936909,0.037331335246563,-0.059582371264696],[0.024693574756384,-0.056287705898285,0.0037593757733703],[-0.032566174864769,0.011225990019739,-0.041826922446489]],[[-0.0038081130478531,-0.045177381485701,0.018111830577254],[-0.023507684469223,-0.025840306654572,-0.0091851474717259],[0.051559813320637,0.00097865401767194,-0.0095285819843411]],[[-0.056101273745298,0.0090493885800242,-0.054945036768913],[0.0060656513087451,0.0020873532630503,-0.019765920937061],[-0.030286023393273,-0.070979975163937,-0.029491357505322]],[[0.054571576416492,-0.029466446489096,-0.052280481904745],[0.017513308674097,0.10226840525866,-0.024628700688481],[0.0030872160568833,-0.018021171912551,0.048396676778793]],[[0.078054666519165,-0.046950865536928,-0.018662679940462],[-0.023033887147903,0.091351456940174,0.0072718160226941],[-0.0088155949488282,0.003175301477313,0.052255276590586]],[[-0.0043318858370185,0.021897258237004,-0.027186002582312],[0.015974678099155,-0.053752537816763,-0.054396491497755],[0.027214247733355,0.050846733152866,-0.013162644580007]],[[-0.011877953074872,-0.015454278327525,0.11364980041981],[0.079831145703793,0.14310345053673,-0.00059920019702986],[-0.14154537022114,0.067941591143608,0.057796388864517]],[[-0.0052934172563255,-0.0045477328822017,-0.0055734012275934],[0.061492223292589,0.0041492558084428,-0.024585401639342],[-0.044498067349195,-0.043829627335072,-0.013750739395618]],[[0.024849507957697,0.015558678656816,-0.013281214982271],[0.02166891284287,-0.0016510017449036,-0.032341152429581],[0.062341876327991,0.019803510978818,-0.033346366137266]],[[-0.014702003449202,0.016708629205823,-0.0641960054636],[-0.066095575690269,0.045468617230654,0.036037657409906],[0.064942181110382,0.0083116870373487,-0.064271107316017]],[[-0.062958836555481,-0.041132606565952,0.0052797677926719],[0.04327604547143,-0.077578440308571,-0.02694721147418],[-0.012461430393159,0.036560010164976,-0.054440606385469]],[[-0.091166272759438,-0.092531099915504,-0.045547004789114],[-0.036839168518782,0.02152824960649,-0.056672718375921],[-0.034183785319328,-0.0050752349197865,-0.087166592478752]],[[0.06746044754982,0.0044971932657063,-0.0096870763227344],[0.025485748425126,0.030228540301323,-0.0076939547434449],[0.0046638497151434,0.022218061611056,-0.025686597451568]],[[0.10448556393385,0.017738200724125,0.068099945783615],[0.014804468490183,0.0068132858723402,0.027753982692957],[-0.0084194671362638,-0.039375498890877,0.025270838290453]],[[-0.073298789560795,0.073609717190266,-0.043451469391584],[-0.029244130477309,-0.03013171069324,0.016809280961752],[-0.04061309620738,0.0014207722852007,-0.070257507264614]],[[0.048589035868645,-0.0600271448493,0.054952923208475],[0.075124889612198,0.0067576887086034,0.019790891557932],[0.0070460238493979,-0.059761818498373,0.041194528341293]],[[-0.00052564410725608,0.066321134567261,-0.010417265817523],[0.0031566268298775,-0.077259339392185,-0.033543083816767],[-0.0071731330826879,-0.043898411095142,-0.020608060061932]],[[0.051693689078093,-0.096759825944901,-0.013713816180825],[0.0080643324181437,-0.026943419128656,0.069318979978561],[-0.028074614703655,-0.013872398994863,-0.036973796784878]],[[0.055093601346016,-0.0013608501758426,0.032813541591167],[-0.0099363029003143,0.064816758036613,-0.10727685689926],[0.056813966482878,0.027470886707306,0.038153521716595]],[[0.048916179686785,0.039239495992661,0.050352420657873],[-0.013609076850116,0.013057135976851,0.017561059445143],[-0.0081008821725845,-0.0043348912149668,-0.0032639920245856]],[[0.10631790757179,0.031662978231907,-0.025023780763149],[0.0083577241748571,-0.0020758085884154,0.10043340921402],[0.040868937969208,-0.028388181701303,0.012841297313571]],[[-0.032894186675549,-0.0026345904916525,0.0084036979824305],[0.02338926307857,-0.0078567387536168,-0.016161089763045],[-0.017308987677097,-0.012496272101998,-0.063066214323044]],[[-0.0026537058874965,-0.021672302857041,0.0032425962854177],[-0.021378235891461,-0.030843185260892,-0.017720188945532],[-0.04583340510726,-0.006501195486635,-0.056924417614937]],[[-0.019737916067243,-0.01033294480294,-0.029271544888616],[0.030700337141752,-0.091360561549664,0.080206416547298],[0.003411823650822,0.039002168923616,-0.027258675545454]],[[0.053473256528378,-0.0058744982816279,0.0022755034733564],[0.0023150597698987,-0.025732034817338,0.027472835034132],[0.020678924396634,0.0091678956523538,0.060849562287331]],[[0.017308780923486,0.013238150626421,-0.030670374631882],[0.011721386574209,0.031834881752729,-0.0073595400899649],[0.036578264087439,0.041440967470407,-0.039817094802856]],[[-0.04076424986124,-0.018772404640913,-0.016247533261776],[-0.074038952589035,-0.04703414440155,0.03514201566577],[-0.076189048588276,-0.054931282997131,-0.052448585629463]],[[-0.0042248172685504,0.093033753335476,0.076067022979259],[0.010092140175402,0.092925831675529,0.00012283308024053],[0.069923982024193,0.047543928027153,0.030251085758209]],[[-0.061974842101336,0.029800642281771,0.073077373206615],[-0.041538570076227,0.019760215654969,0.00094680662732571],[0.0030176725704223,0.017849758267403,0.0035283286124468]],[[0.049239613115788,-0.0072832205332816,0.066311553120613],[0.001224531326443,-0.013045696541667,-0.013340118341148],[-0.007744855247438,-0.047403294593096,-0.025573130697012]],[[-0.015319858677685,0.0038637740071863,-0.0085706515237689],[-0.0075138392858207,-0.014169772155583,-0.005717589519918],[-0.034562647342682,-0.016077795997262,0.0035675407852978]],[[0.089244045317173,0.021215653046966,-0.052854549139738],[0.010252703912556,0.055769510567188,-0.0061904382891953],[-0.0065418886952102,-0.045297712087631,-0.012122724205256]],[[-0.035519927740097,0.067067071795464,0.045142978429794],[0.005018443800509,0.0017237791325897,-0.023639203980565],[0.053061123937368,0.064830735325813,0.033889945596457]],[[-0.033890172839165,0.12109311670065,-0.060166627168655],[0.032172556966543,0.012469260022044,0.041756618767977],[-0.095531135797501,0.045305676758289,0.032581735402346]],[[0.035196207463741,0.07090650498867,0.065031163394451],[0.0021456545218825,-0.060472391545773,-0.023506425321102],[-0.025858469307423,0.019359720870852,0.019221529364586]],[[0.013904522173107,-0.027479469776154,0.022058876231313],[0.0010187269654125,-0.0081546790897846,0.041512403637171],[-0.07404600828886,-0.011887137778103,-0.045186769217253]],[[0.039398472756147,0.10039322078228,-0.024480022490025],[-0.007826323620975,0.050527434796095,0.055310495197773],[0.055073726922274,0.01853346452117,0.047521021217108]],[[-0.0088901501148939,0.0052565978839993,0.042821116745472],[0.035352997481823,0.016941372305155,0.044608358293772],[0.063137911260128,-0.040481258183718,0.031720709055662]],[[-0.0061715645715594,0.086079843342304,0.096217639744282],[0.034738123416901,-0.015838311985135,0.045699246227741],[0.023929549381137,0.050071392208338,-0.024765124544501]],[[-0.064221508800983,0.030081752687693,0.083233289420605],[0.0010543727548793,0.014294428750873,-0.010712531395257],[-0.0021753264591098,0.009642880409956,-0.015727670863271]],[[0.018859991803765,-0.0052101504988968,0.025848282501101],[0.0058340332470834,0.019611272960901,-0.038586899638176],[0.024992445483804,0.047203358262777,-0.023095011711121]],[[0.040998749434948,0.067784711718559,-0.054475758224726],[0.059980623424053,0.049612998962402,0.0012606782838702],[-0.056726265698671,0.01401358935982,-0.016351917758584]],[[0.091974459588528,-0.011534504592419,-0.024567730724812],[0.0096544912084937,0.019666979089379,-0.0063626575283706],[-0.045133784413338,0.088834904134274,-0.00021341961110011]],[[0.02376040443778,0.0039821602404118,-0.032783020287752],[0.059816937893629,-0.0089014042168856,-0.0034769217018038],[-0.0012144658248872,0.060128219425678,0.028192901983857]],[[0.016668541356921,-0.018071202561259,-0.026529472321272],[0.0069904755800962,0.04420743137598,-0.015871228650212],[-0.02952503412962,-0.026835391297936,-0.017543764784932]],[[-0.00053938938071951,0.029208414256573,-0.042789530009031],[0.019851727411151,-0.031255453824997,0.041389808058739],[0.041401118040085,0.010812568478286,0.00055299297673628]],[[0.0026354533620179,-0.035059370100498,-0.01498940680176],[-0.0058601223863661,0.020165266469121,-0.032263033092022],[-0.060008928179741,-0.043666835874319,-0.032829139381647]],[[0.040182679891586,0.017920767888427,0.014284263364971],[0.045312635600567,0.052586805075407,-0.00018474020180292],[0.076868772506714,0.054929211735725,-0.0090263281017542]],[[0.0070044472813606,-0.019521100446582,0.032089866697788],[0.012006333097816,0.019982483237982,0.012694087810814],[0.037773877382278,0.10871313512325,0.038522686809301]],[[0.037569187581539,0.0061652553267777,0.031525928527117],[0.022141475230455,0.06168058142066,-0.032668821513653],[0.034166794270277,0.0256382022053,-0.049059867858887]],[[-0.047377232462168,0.0072184032760561,-0.039566654711962],[-0.040159098803997,-0.0072419145144522,0.0049789976328611],[0.016876483336091,-0.012160496786237,-0.023197693750262]],[[-0.027161478996277,-0.00018106200150214,-0.021900501102209],[-0.026156602427363,0.052297204732895,0.012362304143608],[-0.025715611875057,-0.063168868422508,0.017206739634275]],[[-0.019931795075536,0.032001420855522,-0.015079387463629],[0.036996357142925,-0.02774621732533,0.065727673470974],[-0.026497261598706,0.016124371439219,0.0039042010903358]],[[0.041567377746105,-0.086240202188492,-0.050204437226057],[0.022790284827352,-0.059402275830507,-0.015071956440806],[-0.007026391569525,-0.034942224621773,-0.03668088465929]],[[0.03285613283515,0.010619002394378,-0.0023702743928879],[0.05871219560504,0.04336467012763,0.093674585223198],[0.020914467051625,0.032192714512348,-0.055756982415915]],[[-0.023162642493844,-0.0068188169971108,0.075605802237988],[-0.033483732491732,-0.034119050949812,-0.01123074721545],[-0.018498048186302,0.016577292233706,0.0083807492628694]],[[-0.03347834944725,-0.0025783344171941,0.024501644074917],[-0.023948485031724,-0.021962219849229,0.03315407782793],[0.05090219154954,0.059461437165737,0.033641207963228]],[[0.02159370854497,-0.02108539827168,-0.036944303661585],[0.077360726892948,0.07278448343277,0.022408002987504],[0.01001937687397,0.013910063542426,-0.027306189760566]],[[-0.02237394452095,-0.069036230444908,0.0052619497291744],[0.023468708619475,-0.053351640701294,-0.013870433904231],[0.016484739258885,0.029838588088751,0.0043015512637794]],[[-0.040153991430998,-0.017892021685839,0.031196143478155],[-0.0067452159710228,-0.007179887033999,0.085737951099873],[-0.040346451103687,0.010214809328318,0.020697630941868]],[[0.030977364629507,-0.012419983744621,0.011004455387592],[-0.0308873411268,0.02996121533215,-0.026205541566014],[-0.058773051947355,0.0055618300102651,0.026946011930704]],[[0.050808899104595,0.010105723515153,0.01522527448833],[-0.029093742370605,-0.057337902486324,-0.054211419075727],[0.028646469116211,-0.05928535759449,0.033217672258615]],[[-0.046252835541964,-0.035052824765444,0.052871230989695],[0.0087426584213972,0.023953132331371,-0.016976287588477],[0.0057191923260689,-0.023020546883345,0.012565018609166]],[[-0.029690485447645,0.025528836995363,-0.10141239315271],[-0.048321381211281,-0.034203682094812,-0.031716383993626],[-0.043040242046118,-0.069708548486233,0.055381197482347]],[[-0.046134166419506,-0.0064030825160444,-0.080152489244938],[0.049011494964361,-0.05708497017622,-0.031624473631382],[-0.018895924091339,-0.0020041656680405,-0.003617481328547]],[[0.062801517546177,-0.0051396265625954,-0.025621376931667],[-0.027358205989003,-0.037393547594547,-0.030860928818583],[-0.012481903657317,-0.03000845387578,-0.010266550816596]],[[0.042077396064997,0.095464490354061,-0.0055529931560159],[0.045007694512606,0.019250467419624,0.0080676460638642],[-0.053641594946384,0.059397611767054,-0.034227378666401]],[[-0.073901198804379,0.064104720950127,-0.0054382476955652],[-0.085875689983368,-0.019205132499337,0.073992021381855],[-0.0020523665007204,-0.0064941826276481,-0.076778620481491]],[[-0.025206904858351,-0.053285796195269,0.0077203442342579],[-0.044255670160055,0.016519498080015,0.082303069531918],[-0.034921213984489,-0.066178396344185,0.0069596879184246]],[[-0.025139883160591,0.04567102715373,0.0099709155037999],[0.026866484433413,-0.07263570278883,0.024040160700679],[0.073073089122772,0.09908027946949,0.011700440198183]],[[0.010345065966249,-0.037066530436277,-0.099443048238754],[-0.055396806448698,-0.013952693901956,-0.028669949620962],[-0.021000562235713,0.0091612385585904,0.047957070171833]],[[0.015067382715642,-0.025524832308292,0.0006601107888855],[-0.07978180795908,0.0031458560843021,-0.043759204447269],[0.020390007644892,-0.010681389831007,-0.02412348613143]],[[0.023994458839297,0.0080460477620363,0.0404292345047],[-0.0074574523605406,0.017923327162862,-0.016484597697854],[-0.026181800290942,-0.026448223739862,-0.057242702692747]],[[0.037838980555534,-0.033915184438229,0.021421222016215],[0.059753086417913,-0.028706803917885,0.057789299637079],[0.026213932782412,-0.019240194931626,-0.054251112043858]],[[0.032088365405798,0.021347012370825,-0.0095057087019086],[-0.076906241476536,-0.042282689362764,-0.038782641291618],[-0.031883891671896,0.010819449089468,-0.039341758936644]],[[-0.00824267975986,-0.00092143903020769,0.029536092653871],[0.055026013404131,0.0022289925254881,-0.024992998689413],[0.049089163541794,-0.022992229089141,0.015949407592416]],[[-0.019360037520528,0.02629879117012,0.015780217945576],[0.029402997344732,0.081627294421196,-0.042167291045189],[-0.012645731680095,0.054213147610426,-0.0024656581226736]],[[0.025508856400847,0.014730873517692,-0.005888232961297],[-0.042656853795052,-0.04245375841856,-0.067311674356461],[0.018379919230938,-0.0053597292862833,-0.0030535929836333]]],[[[-0.025738015770912,-0.036867614835501,-0.13421510159969],[-0.048484396189451,0.012034215033054,-0.001522317295894],[0.06217248365283,0.0043683387339115,0.044575847685337]],[[0.025913061574101,0.0040195710025728,-0.017199473455548],[-0.081275634467602,0.082543738186359,-0.072408854961395],[0.095780298113823,-0.060979675501585,0.069669678807259]],[[0.22427798807621,0.048623163253069,-0.066082991659641],[-0.10835163295269,0.025028271600604,-0.090770870447159],[-0.035728346556425,0.039937995374203,-0.042543135583401]],[[-0.090335860848427,-0.034215230494738,-0.098239958286285],[-0.0065035349689424,0.011351292952895,0.039207495748997],[0.083681270480156,0.018587935715914,0.014127383008599]],[[0.0056503093801439,-0.053808715194464,-0.027476254850626],[-0.020445819944143,0.030389370396733,-0.092996746301651],[-0.09266109764576,-0.06699500977993,-0.055337715893984]],[[0.025680283084512,-0.093557275831699,-0.0051026679575443],[-0.065193586051464,-0.15623277425766,-0.093550615012646],[-0.042151153087616,-0.1142393797636,-0.05489644408226]],[[-0.00069507001899183,-0.043324913829565,-0.0028751862701029],[-0.10579367727041,0.0054254443384707,-0.0020742013584822],[-0.16091270744801,0.089517012238503,0.011479025706649]],[[0.019331285730004,0.0013408418744802,0.012217259034514],[0.0082220304757357,-0.03843567892909,0.027017526328564],[-0.054334342479706,0.029016273096204,-0.047040566802025]],[[0.0021014967933297,-0.043649815022945,-0.068408645689487],[-0.055225409567356,-0.0047318777069449,0.13995976746082],[-0.0014226717175916,0.067538201808929,-0.010239158757031]],[[0.063512586057186,0.14099271595478,0.040416195988655],[0.023922432214022,-0.041509807109833,0.0033065443858504],[0.077792070806026,-0.039310794323683,0.10638864338398]],[[-0.031203968450427,-0.005839588586241,0.06232663616538],[-0.015957975760102,0.021437996998429,0.035618256777525],[0.028471246361732,-0.013732145540416,-0.09603027254343]],[[-0.051319904625416,0.032899934798479,-0.027061562985182],[0.042955540120602,-0.048050817102194,0.044766340404749],[0.053348891437054,0.066946059465408,0.11446286737919]],[[0.030567284673452,0.02399580180645,-0.053872317075729],[-0.10965400934219,0.023410243913531,-0.032152358442545],[0.019123870879412,-0.041109543293715,-0.035282358527184]],[[-0.046384956687689,0.11988140642643,0.048337392508984],[-0.066954903304577,0.090637296438217,-0.049272067844868],[-0.023534974083304,-0.12256854772568,-0.063291668891907]],[[-0.17113423347473,-0.020441668108106,-0.13472203910351],[0.018029510974884,-0.13256126642227,-0.10059184581041],[0.030397120863199,-0.070964589715004,-0.07589165866375]],[[-0.064128577709198,0.045616969466209,0.058923587203026],[-0.21962247788906,-0.041819643229246,0.035530671477318],[-0.058116260915995,-0.028271228075027,-0.074416264891624]],[[0.12751975655556,0.0022123460657895,0.10021443665028],[-0.013116480782628,-0.0052131987176836,0.0027097193524241],[-0.0019969756249338,-0.064306110143661,0.026246337220073]],[[-0.024057446047664,0.022714424878359,-0.036214355379343],[0.0046446472406387,-0.039792444556952,-0.022048769518733],[0.011079285293818,-0.0083844214677811,0.082249693572521]],[[-0.063586823642254,0.10107508301735,0.044803790748119],[-0.013568270951509,0.15520647168159,0.0064597129821777],[0.08684279024601,0.0033276593312621,-0.056762181222439]],[[-0.071413107216358,-0.0065567097626626,-0.02562315389514],[-0.014132513664663,0.0031312122009695,-0.074813529849052],[-0.020652918145061,-0.036815002560616,0.067317135632038]],[[-0.0070948526263237,-0.11004913598299,-0.0039699501357973],[-0.0015157889574766,0.063642948865891,-0.072766058146954],[0.045996021479368,0.14819478988647,0.046303246170282]],[[-0.073590844869614,-0.11776336282492,0.034247044473886],[0.015973484143615,0.038533199578524,0.038833979517221],[-0.096359223127365,-0.033261459320784,0.085926547646523]],[[0.038456153124571,0.027299154549837,-0.080628007650375],[0.24285577237606,-0.010666794143617,0.019098056480289],[0.025142313912511,-0.11280772835016,-0.13752242922783]],[[-0.0030797999352217,-0.029116978868842,0.044666547328234],[0.0070499791763723,0.15070371329784,-0.11878400295973],[-0.021625686436892,-0.021777624264359,-0.026657395064831]],[[0.023037603124976,0.025468423962593,0.05007791146636],[-0.022728649899364,0.19425210356712,-0.010477477684617],[0.09384524077177,0.010316368192434,0.18515411019325]],[[-0.021803345531225,-0.039300374686718,0.010654168203473],[0.0053964438848197,-0.16747960448265,0.010515030473471],[0.091547578573227,0.0057147382758558,-0.05878622084856]],[[-0.069678723812103,0.0087662227451801,-0.030903667211533],[-0.039255931973457,-0.042086753994226,-0.011048726737499],[-0.065342858433723,-0.083014406263828,-0.021476911380887]],[[-0.17605011165142,0.011602279730141,0.062812753021717],[-0.1187461540103,-0.13546538352966,0.097612522542477],[-0.043113283813,-0.1605074852705,0.005483428016305]],[[-0.13476131856441,0.066681586205959,-0.016268054023385],[-0.18126598000526,-0.0081961303949356,-0.034932721406221],[-0.063293367624283,-0.031865268945694,-0.0039772861637175]],[[-0.14113043248653,-0.015128859318793,-0.06013673171401],[-0.034000180661678,0.0030398641247302,-0.12337867170572],[0.069956913590431,-0.071664676070213,-0.11693624407053]],[[-0.0085981488227844,-0.01640547811985,-0.1783782094717],[-0.021110478788614,-0.023612279444933,-0.095217168331146],[0.070434778928757,-0.028917886316776,-0.058085456490517]],[[0.072853796184063,-0.12860757112503,-0.031916506588459],[0.052498590201139,0.054557323455811,0.014617650769651],[0.056388232856989,0.048716433346272,0.049358267337084]],[[-0.0071484413929284,-0.002483029384166,0.016632240265608],[0.06759886443615,0.088783457875252,-0.0034719838295132],[0.067895032465458,-0.12433434277773,0.08550738543272]],[[0.017747553065419,-0.033697620034218,-0.065106362104416],[0.12019004672766,-0.10331477969885,-0.013350976631045],[0.038338992744684,0.03120331466198,-0.03744737803936]],[[-0.021853996440768,0.0048472695052624,0.040873970836401],[-0.03193823620677,-0.014260572381318,-0.044891282916069],[-0.16371813416481,0.0071525522507727,0.017012478783727]],[[-0.0080060912296176,0.0066985422745347,-0.0064342780970037],[-0.16520573198795,0.014692010357976,-0.033244621008635],[-0.086109936237335,0.045806419104338,0.031904608011246]],[[0.04577063024044,0.022745871916413,-0.10943516343832],[0.055244032293558,-0.011724246665835,-0.10110931843519],[0.0019042773637921,0.0050272033549845,-0.0066184364259243]],[[-0.11840312927961,0.14442433416843,0.068964920938015],[-0.106281273067,-0.10066015273333,0.046727728098631],[-0.092273399233818,-0.029728507623076,-0.015014987438917]],[[0.047853861004114,-0.073369182646275,-0.059674695134163],[0.086830869317055,0.16647318005562,0.049423731863499],[0.014504569582641,0.011826151050627,0.023707423359156]],[[0.00084770447574556,-0.017128653824329,0.01494328211993],[0.016562866047025,0.04538806155324,0.037378989160061],[0.10087438672781,0.13645148277283,0.14000670611858]],[[0.085739031434059,0.10558548569679,0.048816293478012],[0.012461756356061,0.0024203443899751,0.0691157579422],[0.0048938347026706,0.057011198252439,-0.11022792756557]],[[-0.0068057384341955,0.0099886395037174,-0.0053703719750047],[0.021464401856065,0.061839211732149,-0.066370770335197],[0.1219078078866,-0.00049077050061896,-0.01680420152843]],[[0.028854290023446,0.1355482339859,-0.0088444044813514],[-0.0036874650977552,-0.039669964462519,-0.067228890955448],[0.10743870586157,-0.028388565406203,-0.032044034451246]],[[-0.0544308796525,-0.065510369837284,-0.012139092199504],[-0.0082799140363932,-0.030913472175598,0.031487289816141],[0.014539200812578,-0.03631766885519,-0.025344533845782]],[[-0.094845160841942,-0.029617164283991,0.065770365297794],[-0.05252380669117,0.09119126945734,-0.054594278335571],[-0.14198635518551,-0.11211456358433,0.014143943786621]],[[0.0055880420841277,0.06266475468874,0.024529941380024],[-0.026840858161449,0.017833389341831,0.055954713374376],[-0.053310342133045,0.0049819233827293,-0.021760631352663]],[[-0.0024879728443921,-0.071072123944759,0.04110075160861],[0.0094034718349576,-0.097229577600956,-0.022328834980726],[0.041719228029251,-0.075832799077034,0.069028407335281]],[[-0.011600733734667,0.0067722513340414,0.058588795363903],[-0.080109044909477,0.0064766737632453,0.065788216888905],[-0.033473148941994,-0.055665999650955,0.071337707340717]],[[-0.14131885766983,0.026485437527299,-0.03969819098711],[0.0086220866069198,-0.018634950742126,0.060768511146307],[-0.042197030037642,-0.010698989033699,0.011844218708575]],[[0.022794548422098,0.037893489003181,-0.028156822547317],[0.14721511304379,0.014251940883696,-0.0062614879570901],[-0.020484419539571,0.0018561335746199,-0.025606594979763]],[[0.016001414507627,0.055721260607243,-0.044552505016327],[-0.087430655956268,-0.051113735884428,-0.034512065351009],[-0.035261813551188,-0.040033437311649,-0.037934962660074]],[[0.07593896985054,0.048207223415375,-0.055486127734184],[-0.00012484029866755,0.0625324472785,0.13107784092426],[-0.0014393450692296,0.02017267793417,-0.0089606251567602]],[[0.014436577446759,-0.011665115132928,-0.061250910162926],[-0.067181840538979,-0.022916810587049,-0.086016140878201],[-0.13306795060635,-0.014937757514417,-0.049841336905956]],[[0.12862205505371,0.032828472554684,-0.051840882748365],[-0.090932719409466,-0.046376410871744,-0.00022792733216193],[-0.0011253743432462,-0.039111200720072,-0.11086887866259]],[[0.088204242289066,0.07219160348177,0.010246533900499],[-0.024797355756164,0.14127461612225,0.018060581758618],[-0.041270926594734,0.00015720271039754,-0.091616697609425]],[[0.25028961896896,0.05347029492259,-0.028464309871197],[0.067465901374817,0.055136639624834,0.023222951218486],[0.017268776893616,0.034098252654076,-0.1624353826046]],[[-0.043288312852383,0.06483543664217,0.034150268882513],[0.021820517256856,-0.10227106511593,-0.016653746366501],[-0.032589368522167,0.018743617460132,0.064989052712917]],[[0.072097323834896,-0.020732507109642,-0.067257605493069],[0.021740822121501,0.056336205452681,0.01434079837054],[-0.019606990739703,0.0093635516241193,-0.14453300833702]],[[-0.020221576094627,0.03054091706872,0.0068992883898318],[-0.016169345006347,0.00030726674594916,0.018035028129816],[-0.0068353707902133,0.081474587321281,-0.067556157708168]],[[0.082529939711094,0.02321770042181,0.0278250426054],[0.090935170650482,0.12022081017494,0.10477145761251],[0.13815398514271,-0.02434841170907,0.0043511586263776]],[[0.015865825116634,-0.077138744294643,0.045740853995085],[0.10165727883577,-0.11774311959743,-0.11005851626396],[0.045691560953856,0.033675145357847,0.030579211190343]],[[0.013241343200207,-0.03042801655829,0.15874905884266],[-0.15999838709831,0.090365707874298,-0.016630787402391],[0.016214778646827,-0.0022044037468731,-0.045416168868542]],[[-0.019458461552858,0.03001044690609,-0.13080820441246],[-0.055149652063847,-0.017642334103584,-0.049795109778643],[0.028519691899419,0.00075228873174638,0.16732004284859]],[[0.0020584519952536,0.096663065254688,-0.047237746417522],[0.027714889496565,0.11266412585974,0.028688063845038],[0.043239131569862,-0.044346805661917,0.033936873078346]],[[-0.018955010920763,-0.017942756414413,0.0018021749565378],[0.025277014821768,0.067881792783737,0.075423926115036],[0.049836724996567,-0.056001000106335,0.011233870871365]],[[-0.072535656392574,-0.045227136462927,-0.11096236109734],[-0.060562539845705,-0.020162604749203,-0.12339574098587],[0.0039873295463622,-0.0017310965340585,0.0089238006621599]],[[-0.088547967374325,0.07413013279438,0.14730662107468],[-0.088963776826859,0.051519118249416,-0.00012054698891006],[0.054631590843201,-0.043326511979103,-0.064842335879803]],[[0.0031294929794967,0.2817163169384,0.17425182461739],[-0.036950197070837,0.14755839109421,0.1914242208004],[0.092588476836681,0.1091617718339,0.062217064201832]],[[0.056517269462347,1.8682223526412e-05,0.035851743072271],[-0.053055852651596,-0.029448352754116,-0.0068013365380466],[0.087092146277428,0.030739795416594,0.007884806022048]],[[0.099720917642117,0.046630859375,0.051885012537241],[-0.12127432972193,0.19749888777733,0.1011775881052],[0.076431125402451,-0.082053206861019,0.021722367033362]],[[-0.023255594074726,-0.096008442342281,-0.016436407342553],[0.066008895635605,-0.021782800555229,-0.037029799073935],[0.0098766619339585,0.059762679040432,-0.029289849102497]],[[-0.15692828595638,-0.014407495968044,0.00085632904665545],[-0.051906950771809,-0.045667987316847,-0.049264442175627],[-0.065829873085022,0.018124105408788,0.083501197397709]],[[0.061090052127838,-0.026841508224607,0.0078307762742043],[-0.13305197656155,-0.077920772135258,-0.034713804721832],[0.097683608531952,0.022143322974443,0.060947515070438]],[[-0.053679168224335,-0.044139094650745,-0.069974847137928],[0.25939399003983,-0.051970355212688,0.011038089171052],[0.12768061459064,0.20928710699081,0.054539028555155]],[[-0.00059104431420565,-0.046597149223089,-0.030251236632466],[-0.085059486329556,0.013601184822619,0.041471723467112],[-0.041473187506199,0.085464105010033,-0.023784052580595]],[[-0.0027441980782896,0.013215986080468,0.033765725791454],[-0.0078250737860799,-0.27361705899239,0.0039691249839962],[0.053049683570862,-0.073577031493187,-0.018316082656384]],[[-0.069807253777981,-0.038429472595453,-0.033640250563622],[-0.070046581327915,0.062476187944412,-0.014543241821229],[0.010415733791888,-0.087940528988838,0.059077072888613]],[[0.058057472109795,-0.0010663303546607,0.014864638447762],[0.0079308180138469,0.0095682675018907,-0.055051308125257],[0.011797583661973,0.058312941342592,0.040645446628332]],[[-0.065850555896759,0.051824633032084,0.04453656449914],[-0.045459255576134,-0.0083660548552871,0.07709775865078],[-0.052919983863831,0.12651154398918,0.053698878735304]],[[-0.104476518929,0.026800835505128,-0.027919234707952],[-0.00072296010330319,0.06109369918704,0.00503795966506],[0.082912385463715,-0.00018402858404443,0.038970571011305]],[[0.12000243365765,-0.030397599563003,-0.082973822951317],[-0.017602000385523,-0.010735589079559,0.056489951908588],[-0.088374517858028,-0.063157275319099,0.042936593294144]],[[-0.025745648890734,0.044308722019196,0.090718418359756],[0.025588646531105,-0.039480615407228,-0.024291209876537],[-0.096368253231049,-0.084797278046608,0.031807497143745]],[[-0.0015878697158769,0.0071398457512259,0.041840683668852],[-0.013497923500836,-0.0066584874875844,-0.00053018337348476],[-0.079077124595642,0.0032288825605065,0.10867307335138]],[[0.16374143958092,0.079161413013935,-0.011165051721036],[0.045428648591042,0.10100428760052,0.048878222703934],[0.049179449677467,-0.010732581838965,0.018947320058942]],[[-0.030703542754054,0.045647636055946,0.0049319295212626],[0.18040402233601,-0.0049239862710238,0.029754454270005],[0.061647672206163,-0.009326284751296,0.027408821508288]],[[-0.020357243716717,0.046615734696388,-0.02264210395515],[0.037482887506485,0.029344707727432,-0.068608924746513],[0.010608985088766,-0.027661390602589,-0.049199238419533]],[[-0.067809276282787,0.028006915003061,0.046407446265221],[0.041769746690989,-0.044729493558407,0.073291793465614],[0.096932381391525,0.054419189691544,0.050777297466993]],[[0.0061686271801591,-0.0001130002856371,-0.15479728579521],[-0.048561900854111,-0.10002118349075,-0.033215828239918],[-0.11953721195459,-0.064063303172588,0.052095040678978]],[[-0.054965123534203,0.0037381446454674,-0.0062558804638684],[0.051808249205351,-0.062752336263657,-0.08633828163147],[0.038360524922609,-0.094644293189049,0.0197160448879]],[[-0.0225471816957,-0.17123997211456,0.052502535283566],[-0.031249888241291,-0.019148802384734,0.038286715745926],[-0.0017291253898293,-0.053429502993822,0.0042659556493163]],[[-0.015648707747459,-0.09103986620903,-0.021870665252209],[0.17580880224705,0.050502173602581,0.044420447200537],[0.042781725525856,0.0033410754986107,0.20802293717861]],[[0.024981424212456,-0.0091858757659793,0.0044178385287523],[0.062975317239761,-0.0094720665365458,-0.10285349190235],[-0.17669945955276,-0.074099443852901,-0.049873761832714]],[[-0.1045887991786,0.0067636366002262,0.048656944185495],[-0.060143042355776,0.011184133589268,-0.042171105742455],[-0.089430004358292,-0.0097479810938239,0.076410934329033]],[[-0.043468613177538,0.074355587363243,0.095466434955597],[0.023274188861251,0.070817083120346,0.061629988253117],[-0.026805324479938,-0.079444289207458,0.04440937936306]],[[0.03073481656611,-0.052500452846289,-0.080375447869301],[-0.048779178410769,0.051582030951977,-0.0634730681777],[0.0035932154860348,0.012290900573134,0.018064452335238]],[[0.055815823376179,-0.018835861235857,0.0015083663165569],[-0.10564479231834,-0.029709195718169,0.0028065347578377],[-0.087853066623211,0.00098798144608736,0.11615569889545]],[[0.15781328082085,0.054975345730782,-0.11525182425976],[0.0044880658388138,0.030740544199944,-0.041311539709568],[0.049343951046467,-0.029523391276598,0.0031319679692388]],[[-0.018153695389628,0.081568509340286,-0.015352753922343],[-0.0018336767097935,-0.013875884003937,-0.033483982086182],[0.06623050570488,0.020589044317603,-0.025819750502706]],[[0.0056155733764172,0.0034147317055613,-0.032894298434258],[-0.023055406287313,0.015488429926336,0.14685845375061],[0.0583635866642,-0.018898425623775,-0.0096133276820183]],[[0.11994232982397,-0.016431525349617,-0.058148551732302],[0.00025434885174036,0.0036418680101633,0.039395306259394],[-0.025325451046228,0.01704921014607,-0.10857639461756]],[[-0.021724589169025,-0.060903239995241,-0.060942426323891],[0.064334146678448,-0.029380554333329,-0.023375419899821],[-0.057385984808207,0.010471074841917,-0.029890285804868]],[[-0.012230057269335,0.074578322470188,0.11218235641718],[-0.011899527162313,-0.068111293017864,-0.067396827042103],[0.18412767350674,0.11429517716169,0.03301590681076]],[[-0.16056482493877,-0.015184475108981,0.0023523033596575],[-0.072924368083477,-0.094566948711872,-0.033262055367231],[0.089254580438137,-0.087219834327698,-0.055675994604826]],[[0.16703501343727,-0.14514183998108,-0.070922449231148],[0.01786564104259,0.026797242462635,0.0071214833296835],[-0.026402762159705,0.056808661669493,0.12026570737362]],[[-0.12200129777193,0.062780559062958,0.051995579153299],[-0.067205540835857,0.0086144609376788,0.053340066224337],[0.0055101509205997,0.013871400617063,-0.0039616846479475]],[[-0.03365420550108,0.10675447434187,0.051575616002083],[-0.057175494730473,-0.098007924854755,0.058133862912655],[-0.070547290146351,-0.0335628464818,0.070796146988869]],[[0.0092244129627943,0.0022083180956542,-0.010809882543981],[-0.017406638711691,0.044600196182728,0.010740105062723],[-0.00015179086767603,-0.070497266948223,0.0094023151323199]],[[-0.056081913411617,0.032437410205603,-0.14251188933849],[-0.031283058226109,-0.052540175616741,-0.07124424725771],[0.11397383362055,0.0067910202778876,0.046454284340143]],[[0.0031456153374165,0.0494593270123,0.085451774299145],[0.025038504973054,-0.033348765224218,0.020778579637408],[-0.0040820124559104,0.049374144524336,-0.11074969172478]],[[0.038541801273823,0.030947277322412,-0.0552091114223],[0.064026810228825,-0.064268968999386,0.0026966750156134],[0.083711728453636,-0.061158560216427,0.046155627816916]],[[-0.031951997429132,-0.053984049707651,-0.082008339464664],[-0.10468254983425,-0.01507103163749,-0.059513382613659],[-0.089054502546787,-0.070377252995968,0.040428124368191]],[[-0.052619107067585,-0.18582664430141,-0.081146791577339],[0.049953475594521,-0.13292507827282,-0.16018456220627],[-0.045308951288462,0.038404822349548,-0.02148612588644]],[[-0.0042947065085173,-0.00096450193086639,-0.0048421509563923],[0.013887368142605,0.1352097094059,0.21106651425362],[-0.10542258620262,-0.0065830373205245,0.11352046579123]],[[-0.025344524532557,0.012619443237782,-0.014324164949358],[0.00027269462589175,-0.013288461603224,0.0028225092682987],[0.0020392825827003,0.01515382155776,-0.029782405123115]],[[0.015706097707152,-0.0029128382448107,0.022484183311462],[0.029918210580945,0.036767452955246,-0.0036042311694473],[-0.039897337555885,0.085737407207489,-0.018745996057987]],[[-0.17042690515518,-0.11311188340187,-0.0059365201741457],[0.034059584140778,0.019274111837149,0.0075180022977293],[0.0071966871619225,-0.08020993322134,-0.052301187068224]],[[-0.080600067973137,-0.010128472931683,0.036196101456881],[-0.042602840811014,0.0060546020977199,0.050804227590561],[-0.098318412899971,-0.060641977936029,0.13784795999527]],[[0.0029644793830812,-0.039309825748205,-0.0025497565511614],[-0.029235150665045,0.054412867873907,-0.057688925415277],[-0.097429014742374,-0.06437274813652,0.084856569766998]],[[0.0018729479052126,-0.10927247256041,-0.20935140550137],[0.010809388943017,-0.071505703032017,-0.10552296042442],[0.020842978730798,0.099032215774059,0.030214721336961]],[[0.15297104418278,0.15030337870121,0.12031376361847],[-0.066294424235821,-0.077254943549633,-0.01702026091516],[0.0255704279989,0.016203247010708,-0.06129352375865]],[[-0.10967530310154,-0.15108954906464,0.0051062442362309],[-0.0081790275871754,-0.11174970120192,-0.039613738656044],[-0.037105109542608,0.020596660673618,-0.048365313559771]],[[-0.094087593257427,-0.079148083925247,-0.011515351012349],[-0.063082039356232,-0.058591950684786,-0.020690426230431],[-0.012447793968022,-0.035070318728685,0.021608371287584]],[[0.13471195101738,-0.094528697431087,0.054144851863384],[0.029865030199289,0.094539850950241,0.10895920544863],[0.0093132900074124,0.044099889695644,-0.11238159239292]],[[0.013031935319304,-0.058476898819208,-0.012940614484251],[-0.032065786421299,0.0086308792233467,-0.091000862419605],[0.076057866215706,-0.029416970908642,-0.015169569291174]],[[-0.0091947624459863,-0.033100202679634,-0.064918398857117],[0.05018300563097,0.11517757922411,0.048341002315283],[-0.083748653531075,-0.032888364046812,0.071709059178829]],[[0.09666658192873,0.060369748622179,0.11735076457262],[0.026339285075665,-0.051356803625822,0.0039966958574951],[0.055853106081486,0.040872011333704,0.01296694856137]],[[0.080151103436947,-0.070441469550133,-0.043507605791092],[0.01518047042191,-0.020238976925611,-0.073964513838291],[0.070054195821285,-0.045200858265162,-0.038970895111561]],[[-0.11613803356886,-0.047581892460585,0.050260912626982],[0.025955386459827,-0.036168251186609,-0.089960269629955],[0.011486765928566,0.041285883635283,-0.013777485117316]]],[[[0.014119261875749,0.063742764294147,0.040881879627705],[0.057662449777126,-0.0033108964562416,0.066400833427906],[0.029207114130259,0.081350773572922,0.042245343327522]],[[-0.019574539735913,0.089475229382515,-0.006945984903723],[0.061572507023811,0.02425548247993,-0.058322589844465],[-0.03291055560112,0.033353384584188,-0.012008829973638]],[[-0.066640265285969,0.087189137935638,-0.02315884642303],[-0.035991985350847,0.063405252993107,0.0015481757000089],[-0.041497554630041,0.018377836793661,-0.016944421455264]],[[0.024437461048365,0.012115604244173,-0.0140221118927],[0.022578062489629,0.023145643994212,0.05438319593668],[0.026980238035321,0.059514418244362,-0.03914063051343]],[[0.015008471906185,0.087878547608852,0.018692765384912],[0.036958128213882,0.053365305066109,0.066868327558041],[-0.015020294114947,0.0057836631312966,-0.02337090857327]],[[0.021651543676853,-0.014318322762847,0.012162871658802],[-0.024742001667619,0.10050334781408,0.032939042896032],[-0.019219873473048,0.11214497685432,-0.010838200338185]],[[-0.036008130759001,-0.053632665425539,-0.044451039284468],[-0.048005901277065,0.039255231618881,-0.03951657935977],[-0.010630852542818,0.11569457501173,0.020538194105029]],[[-0.021921375766397,0.066528350114822,0.012805571779609],[0.057432740926743,-0.029544619843364,0.061856649816036],[0.020768752321601,-0.052515491843224,0.0050265872851014]],[[0.019185056909919,0.028581628575921,-0.0099793802946806],[0.099376365542412,0.075132302939892,0.04378167539835],[-0.030461316928267,0.065918557345867,-0.066882982850075]],[[0.022567642852664,-0.01158238388598,-0.036137830466032],[-0.012487432919443,0.010259663686156,-0.033223517239094],[-0.000900131999515,-0.025467440485954,0.040282733738422]],[[0.031301364302635,-0.012726273387671,0.027577908709645],[-0.0076839081011713,-0.027290739119053,-0.0081719299778342],[0.041238289326429,-0.009411889128387,0.0051167397759855]],[[0.016687052324414,0.068558387458324,-0.0022123423404992],[-0.016424834728241,0.01062451954931,0.033125255256891],[0.038297183811665,-0.028827516362071,0.010426525957882]],[[0.049312453716993,0.042161177843809,0.061218183487654],[-0.040685944259167,0.0022278670221567,-0.03466072678566],[-0.08064004778862,0.039176858961582,0.0016931593418121]],[[-0.023684680461884,-0.036089535802603,-0.068824537098408],[-0.017821073532104,-0.055630676448345,-0.000298064929666],[-0.0019382752943784,0.010393702425063,0.027752922847867]],[[-0.05102326348424,0.023967375978827,0.059640094637871],[0.042178303003311,-0.029378619045019,0.028539691120386],[-0.10005221515894,0.085242092609406,0.018305337056518]],[[-0.031061185523868,0.017722353339195,0.047060545533895],[0.0096535896882415,-0.001905350596644,-0.021791910752654],[0.054570700973272,-0.0094755822792649,0.03656067699194]],[[0.00096560607198626,0.082758344709873,-0.072324246168137],[-0.00049822201253846,-0.027183853089809,0.0060627516359091],[0.068485990166664,-0.033703219145536,-0.0081734256818891]],[[-0.092504136264324,-0.030038848519325,-0.059388384222984],[0.016442922875285,-0.017483463510871,-0.051626328378916],[0.031504929065704,0.011309438385069,0.015407542698085]],[[0.0307986009866,0.033576283603907,-0.052511882036924],[0.022679137066007,0.019985042512417,-0.0039120777510107],[0.04906340315938,-0.0051938011310995,-0.019039725884795]],[[0.044238094240427,-0.093179062008858,0.031465355306864],[-0.045799307525158,-0.070044279098511,-0.0079092476516962],[0.017840029671788,-6.2553837778978e-05,0.087262101471424]],[[-0.028898084536195,-0.039555244147778,0.037373561412096],[-0.0017775635933504,-0.016321528702974,-0.018183466047049],[-0.059846170246601,0.0045249750837684,-0.0096139516681433]],[[0.029313111677766,-0.063531048595905,0.049454621970654],[0.039296071976423,0.024881577119231,0.0091912569478154],[0.018172631040215,0.0073512885719538,0.041562475264072]],[[0.001255196868442,-0.038429420441389,0.061702631413937],[0.040505517274141,-0.039255067706108,-0.028343964368105],[-0.00539680570364,0.040209129452705,0.021139228716493]],[[0.014020268805325,0.029450904577971,-0.023032683879137],[0.022596130147576,0.027932468801737,0.029012216255069],[-0.02106586098671,-0.01807395555079,-0.034069266170263]],[[0.13453832268715,-0.10296516865492,0.011832691729069],[0.011096223257482,-0.089139960706234,-0.049025736749172],[0.073794215917587,-0.048336610198021,-0.028358360752463]],[[-0.0084434039890766,0.018828965723515,0.13103897869587],[0.048992574214935,-0.022425280883908,-0.075212761759758],[-0.011746036820114,0.048341356217861,0.059893775731325]],[[0.10783982276917,0.056589215993881,0.03980516269803],[0.01457448489964,0.08781424164772,0.022862393409014],[0.069118410348892,-0.042085133492947,-0.016906470060349]],[[-0.028711747378111,-0.0072898771613836,0.058289714157581],[0.020824581384659,-0.021171348169446,-0.0087829753756523],[0.03229296207428,-0.035742454230785,0.034906905144453]],[[-0.023398408666253,0.0037444795016199,0.0029012965969741],[0.011781487613916,-0.033714260905981,-0.017389573156834],[0.029540689662099,-0.018527414649725,0.068834207952023]],[[-0.023330120369792,0.038847487419844,-0.022386770695448],[0.026242665946484,-0.08267392963171,0.045229312032461],[0.036827709525824,0.037800204008818,0.020268365740776]],[[-0.021297758445144,0.04588621109724,0.01054572686553],[-0.0650315284729,0.060118462890387,0.034368630498648],[0.039771173149347,-0.014781991019845,0.04142177477479]],[[-0.037123769521713,0.013957053422928,-0.0056801317259669],[0.036296684294939,0.055878397077322,0.031728729605675],[0.065590254962444,0.050853967666626,0.013409695588052]],[[0.00085637078154832,0.11114259809256,-0.073366977274418],[-0.055198717862368,0.033484719693661,-0.021541697904468],[0.016029497608542,-0.020920030772686,0.10457469522953]],[[0.07876343280077,0.031406961381435,0.018829984590411],[0.078138664364815,-0.017671458423138,0.05121286958456],[-0.016019705682993,-0.06447272002697,-0.0053264042362571]],[[-0.0069340444169939,0.0015325795393437,-0.0031446251086891],[0.031540364027023,0.024076281115413,-0.030394835397601],[-0.010606060735881,0.029316479340196,-0.0072693866677582]],[[0.050454713404179,-0.0061805373989046,-0.031085172668099],[-0.055378548800945,0.055561110377312,0.040223699063063],[0.001118263695389,0.0014059870736673,0.012872826308012]],[[-0.033379882574081,0.057686392217875,0.052520178258419],[0.03159111738205,0.022617416456342,0.022126108407974],[-0.055231649428606,-0.068782716989517,0.033838946372271]],[[-0.022279156371951,-0.010969780385494,0.0029786475934088],[-0.010665792971849,-0.039949044585228,-0.051893420517445],[-0.010084786452353,0.0048034097999334,-0.010119092650712]],[[0.02367926761508,-0.0067190923728049,0.005590979475528],[0.047630321234465,0.035871397703886,0.008156013675034],[0.015102044679224,-0.0092300018295646,-0.0028270818293095]],[[-0.047077659517527,0.0029405497480184,0.023673534393311],[-0.02970383502543,0.0027420383412391,0.001164342276752],[-0.020459135994315,0.032653007656336,-0.032177034765482]],[[-0.04752229526639,-0.038388479501009,0.063341781497002],[0.011977925896645,0.024571865797043,0.05727206543088],[0.056578315794468,0.0054625207558274,-0.012272937223315]],[[-0.0015476737171412,0.10746335983276,0.049685403704643],[0.082572519779205,0.055809903889894,-0.00067519705044106],[-0.0033001122064888,0.038880411535501,0.10972797870636]],[[0.093706458806992,0.012431027367711,0.071236193180084],[0.14055828750134,0.021890550851822,-0.028191925957799],[0.02415132522583,0.070486560463905,0.11401863396168]],[[-0.065174110233784,0.0068495953455567,-0.030019836500287],[-0.045168347656727,0.028712483122945,0.064523287117481],[0.070540152490139,-0.021532513201237,0.02476885356009]],[[-0.009662227705121,-0.015175007283688,0.035623006522655],[0.020649136975408,0.0071051400154829,-0.02342171408236],[-0.01218434330076,0.0025344283785671,0.01668606325984]],[[0.0033324297983199,0.087890975177288,0.10199436545372],[0.10864285379648,0.054031521081924,0.0039320648647845],[0.043137490749359,0.05259208008647,-0.0036335762124509]],[[0.0016219477402046,-0.069286324083805,-0.02321744710207],[0.045780904591084,0.019221885129809,0.05889979377389],[-0.01153973583132,-0.032719019800425,0.013299748301506]],[[-0.042774762958288,0.051016610115767,-0.031670514494181],[0.00076002790592611,-0.017637491226196,-0.0082742944359779],[-0.066334880888462,-0.084884002804756,0.056575622409582]],[[-0.030810862779617,0.0028827427886426,0.029848422855139],[0.035384461283684,0.006617147475481,0.051175765693188],[-0.041649967432022,0.01794939301908,-0.015992403030396]],[[-0.054248254746199,0.0099608488380909,0.037965640425682],[0.0099345911294222,-0.014991384930909,-0.016037251800299],[-0.087998889386654,-0.019841143861413,-0.015836369246244]],[[-0.00084794568829238,0.01044397521764,0.012252137064934],[-0.0061816368252039,-0.010033819824457,0.049888905137777],[0.0090809119865298,-0.01292937528342,0.010652332566679]],[[-0.03783805668354,0.0034997046459466,-0.063377745449543],[0.018689559772611,0.048935241997242,0.0047677676193416],[0.00098789541516453,0.012673988007009,0.018132653087378]],[[-0.0042438302189112,0.070348158478737,-0.031708102673292],[-0.03666951879859,-0.05137399956584,-0.027727980166674],[0.026657810434699,-0.013850457966328,-0.05586140230298]],[[0.0054874364286661,-0.0016887617530301,0.0086242808029056],[-0.01025483943522,0.028840133920312,0.063721425831318],[0.058691907674074,-0.010540628805757,-0.016579894348979]],[[0.014959749765694,0.026122465729713,0.050368256866932],[0.045806244015694,-0.022198768332601,-0.053270731121302],[-0.068405278027058,-0.049828507006168,-0.038524217903614]],[[0.022969936951995,-0.061392556875944,0.03296497091651],[-0.04556654766202,-0.072863705456257,-0.024332031607628],[-0.00055117107694969,0.038866728544235,-0.0037813591770828]],[[0.044807065278292,-0.013195474632084,0.021137608215213],[-0.017913078889251,-0.031128654256463,-0.00091999321011826],[-0.0029685951303691,0.080073654651642,-0.027923034504056]],[[0.055021710693836,-0.015031883493066,-0.014174349606037],[-0.077822908759117,0.0070133688859642,0.06873045116663],[0.027026316151023,-0.024436274543405,-0.049207136034966]],[[0.04644962400198,-0.019691461697221,0.085461892187595],[0.035333931446075,-0.022708730772138,0.09568527340889],[-0.028496185317636,-0.022313369438052,-0.008786098100245]],[[-0.039971020072699,-0.054289523512125,-0.045995842665434],[0.0021134074777365,-0.058255270123482,-0.050456788390875],[-0.042897026985884,-0.01994251832366,0.10635776817799]],[[-0.0012350748293102,-0.012379510328174,0.049730949103832],[0.010920426808298,-0.064261227846146,0.057066652923822],[-0.0093202935531735,-0.018411602824926,0.020691258832812]],[[0.021429114043713,0.049360394477844,0.11278726905584],[-0.019750151783228,-0.019816363230348,-0.021344376727939],[-0.059420257806778,0.010918578132987,0.0086140586063266]],[[-0.070554651319981,0.03826492279768,0.029737638309598],[0.041018888354301,0.069244921207428,0.021853609010577],[0.01247678603977,0.075793914496899,0.016948902979493]],[[0.084290347993374,0.029344860464334,0.072227738797665],[-0.032001577317715,0.0058025256730616,0.037890397012234],[0.0082639129832387,0.039965208619833,0.030753100290895]],[[-0.036431558430195,0.052856057882309,0.016695823520422],[-0.026306351646781,-0.00093350186944008,-0.07550610601902],[0.061407539993525,-0.0334761030972,-0.017814662307501]],[[0.042027935385704,0.03683190792799,0.0094802640378475],[-0.015987411141396,-0.057588126510382,-0.0055334712378681],[0.018495650961995,0.046796582639217,0.044973839074373]],[[-0.0048090685158968,0.040529474616051,-0.0051927119493484],[0.023095218464732,-0.028429431840777,0.016886986792088],[-0.021839780732989,-0.070758238434792,0.045558135956526]],[[0.055984795093536,0.043928608298302,0.017343748360872],[-6.9437061029021e-05,0.075625248253345,0.061564203351736],[0.037272702902555,-0.01885505579412,-0.0027738097123802]],[[0.063924558460712,0.059318024665117,-0.0029634959064424],[0.038646418601274,-0.041183594614267,-0.031784195452929],[0.036485597491264,0.064467884600163,-0.027361648157239]],[[0.090833641588688,0.012809972278774,0.035295967012644],[0.044684909284115,0.020873855799437,0.040225028991699],[3.7589652492898e-05,0.065627075731754,0.017533093690872]],[[0.081917822360992,-0.040678534656763,0.027270900085568],[-0.052267596125603,-0.085687480866909,0.045710511505604],[0.012136237695813,0.033236112445593,0.0033505123574287]],[[0.032085504382849,0.033186417073011,-0.0042365174740553],[-0.080766193568707,-0.021631551906466,0.029385795816779],[0.0098760453984141,-0.033072505146265,0.028358187526464]],[[-0.073007270693779,0.0053513939492404,-0.020108055323362],[-0.0054949945770204,-0.030105993151665,-0.018614606931806],[-0.065283887088299,-0.044949114322662,0.012675707228482]],[[0.042171806097031,0.013501229695976,-0.036099322140217],[-0.019089372828603,0.10374931246042,0.089648276567459],[-0.054139785468578,-0.038387853652239,0.057770729064941]],[[-0.065196000039577,-0.0092643955722451,-0.019117744639516],[0.035512570291758,0.04526075348258,-0.022335227578878],[0.033327341079712,0.013811499811709,-0.034248605370522]],[[-0.027954751625657,0.032039187848568,0.02137279137969],[0.039345607161522,0.034821718931198,-0.029962493106723],[0.11823577433825,0.073045201599598,0.015894873067737]],[[0.038330890238285,0.018706545233727,0.070641338825226],[0.053035967051983,0.0056696287356317,-0.021226339042187],[-0.0028423513285816,0.017528714612126,0.01524340454489]],[[0.040192093700171,0.029329100623727,-0.033931396901608],[0.055070366710424,0.017706755548716,-0.01058641448617],[0.047213602811098,0.043919861316681,-0.0022655646316707]],[[0.022790297865868,0.012630415149033,-0.043159976601601],[-0.089282013475895,0.0084606455639005,-0.03577821329236],[-0.030492972582579,0.037607297301292,0.097978718578815]],[[-0.028890255838633,-0.053110059350729,0.0085426429286599],[0.021592143923044,-0.032478280365467,-0.048334129154682],[0.0055240723304451,-0.033672273159027,0.030491635203362]],[[0.00080562429502606,-0.014289170503616,-0.0082751540467143],[-0.02596527338028,-0.0079775555059314,0.011283789761364],[-0.045118223875761,0.091365791857243,0.060738258063793]],[[0.061936546117067,-0.033569552004337,-0.0025717653334141],[0.068095020949841,0.018887028098106,0.031322039663792],[0.0055360761471093,-0.00072107021696866,0.050667177885771]],[[0.017853878438473,0.045887820422649,0.022916458547115],[0.032332248985767,0.0014479773817584,-0.014483975246549],[-0.065994143486023,0.016966870054603,0.021177463233471]],[[0.13201498985291,0.0091294907033443,-0.039428249001503],[0.0018228528788313,-0.039658937603235,0.0064937323331833],[0.030973378568888,-0.018764102831483,-0.041404709219933]],[[0.036824978888035,-0.071485050022602,0.072003744542599],[0.096504248678684,0.034829437732697,0.089731931686401],[-0.071363992989063,-0.049816627055407,0.0068846358917654]],[[-0.053944643586874,0.0024189329706132,-0.014623110182583],[-0.047752223908901,0.020758397877216,-0.0316988453269],[-0.049397949129343,-0.031422633677721,0.040359795093536]],[[-0.0033643590286374,0.057864177972078,0.093693271279335],[0.023576077073812,-0.049393132328987,-0.038733076304197],[0.084989845752716,0.045223142951727,0.065523341298103]],[[-0.0003239227226004,-0.022350117564201,0.024937923997641],[0.0051559126004577,0.059890311211348,0.02299739420414],[-0.011786937713623,0.04715034738183,0.012014489620924]],[[0.069011591374874,-0.0047022141516209,0.014018815010786],[0.088301301002502,-0.019353544339538,0.055814076215029],[0.016327891498804,0.0063457889482379,0.025736639276147]],[[0.036368243396282,0.0050847274251282,-0.051447410136461],[0.053007446229458,-0.019870836287737,0.017149120569229],[0.032028794288635,-0.046871226280928,0.10898315161467]],[[-0.022424152120948,-0.078982181847095,-0.019757678732276],[-0.051373213529587,0.047243166714907,0.051052767783403],[0.05178439244628,-0.04329152032733,0.046293146908283]],[[0.016933867707849,-0.005477889906615,0.052670557051897],[0.022436508908868,-0.02897097915411,-0.024711191654205],[-0.026735424995422,-0.017431730404496,-0.02493810094893]],[[0.040639288723469,0.004369645845145,0.038663808256388],[0.099198125302792,0.0085977362468839,-0.044104281812906],[0.048968147486448,0.018728828057647,0.010662394575775]],[[0.0025144575629383,0.051593065261841,0.017077017575502],[-0.036190755665302,0.060006607323885,0.096589826047421],[0.015007895417511,0.03261674195528,0.0081571759656072]],[[-0.036639738827944,0.0040414491668344,-0.073020443320274],[0.018884746357799,0.037495344877243,0.011168367229402],[-0.024379024282098,0.077944844961166,0.039737220853567]],[[0.021706080064178,0.069966442883015,0.083926849067211],[-0.068010531365871,0.0066743562929332,0.082086347043514],[0.024351354688406,-0.0036951806396246,-0.0064460798166692]],[[-0.074206218123436,0.010689352639019,-0.01319542620331],[0.014664844609797,-0.066824920475483,0.0086618810892105],[0.0021126931533217,0.061810005456209,0.018346792086959]],[[0.11815241724253,0.026931189000607,0.095511913299561],[0.015705492347479,-0.00020770964329131,0.10062155127525],[-0.018070319667459,0.013468047603965,-0.051007583737373]],[[0.002163307974115,-0.087146937847137,0.017522573471069],[0.028037564828992,0.031802978366613,-0.033273130655289],[-0.034697096794844,0.044497549533844,-0.011628156527877]],[[0.031434565782547,-0.0094399973750114,-0.03919742628932],[0.0030513755045831,0.012651056051254,0.028983362019062],[0.042294405400753,-0.065817587077618,-0.038574676960707]],[[0.080532647669315,-0.059281431138515,0.019239641726017],[-0.059214439243078,0.037281926721334,-0.011567528359592],[-0.015633542090654,0.0048753605224192,0.0073636369779706]],[[0.047498565167189,0.098244175314903,0.014845405705273],[-0.0056084250099957,-3.4041455364786e-05,-0.11503883451223],[-0.058454487472773,0.065156780183315,0.033403426408768]],[[0.050260830670595,0.038293868303299,-0.070046916604042],[0.020554173737764,0.03967734053731,0.010923358611763],[0.028431596234441,-0.02817271836102,0.014504730701447]],[[-0.021735791116953,0.042208597064018,0.0045212251134217],[-0.0093589844182134,-0.083912342786789,-0.078505888581276],[-0.058363620191813,0.040123805403709,-0.091415822505951]],[[0.053005523979664,-0.058742642402649,0.061234883964062],[-0.024347646161914,-0.072454124689102,-0.030030135065317],[-0.067453101277351,-0.069218292832375,0.014792419038713]],[[0.00066817790502682,-0.021344151347876,-0.041824676096439],[0.072692841291428,0.058861002326012,0.019511114805937],[0.074648529291153,-0.047889795154333,0.011661878786981]],[[0.032494988292456,0.024405824020505,0.011742659844458],[-0.02673627063632,0.019628692418337,-0.028996013104916],[-0.037820715457201,-0.028515638783574,0.050378084182739]],[[-0.0060921055264771,-0.0032747087534517,-0.011445271782577],[0.028501659631729,0.023741062730551,-0.033546935766935],[0.062671348452568,0.0082023227587342,-0.031351298093796]],[[0.017116643488407,-0.056077856570482,-0.043232962489128],[0.023462487384677,-0.060619380325079,0.014462287537754],[-0.033493861556053,0.049439795315266,-0.05773739144206]],[[0.053777817636728,0.099118486046791,-0.01785834133625],[0.06364531069994,0.0015552763361484,0.039250563830137],[-0.0087799867615104,-0.008660820312798,0.0079314596951008]],[[0.016925610601902,-0.03341918438673,0.030034771189094],[-0.0084272706881166,0.010969622060657,-0.042782478034496],[0.037224780768156,0.03502306714654,-0.023225165903568]],[[0.00022399873705581,-0.11140733957291,0.02559476532042],[0.00073500350117683,-0.0042775240726769,0.02204342186451],[0.01483007427305,-0.0043322192505002,-0.080175705254078]],[[0.0083575518801808,0.007074979133904,0.00036524044116959],[-0.021295683458447,-0.023855209350586,0.03263596072793],[-0.082653239369392,-0.0092509873211384,-0.028358101844788]],[[-0.017988694831729,0.064190752804279,0.01721397601068],[0.031056011095643,0.056974489241838,0.048458632081747],[-0.024545902386308,-0.018090082332492,-0.021675964817405]],[[0.04292544350028,-0.067954204976559,0.0023319928441197],[-0.041738696396351,0.034972403198481,0.039355512708426],[-0.046652514487505,-0.025035625323653,0.023217735812068]],[[0.027281265705824,-0.068301163613796,-0.0099944900721312],[0.02769478969276,0.029340172186494,0.017598671838641],[-0.067395605146885,0.020283494144678,0.020656870678067]],[[0.027082704007626,-0.021015169098973,-0.0020161028951406],[0.056529600173235,0.048575110733509,0.019558247178793],[0.076629363000393,0.036091074347496,0.024367328733206]],[[0.0055755618959665,0.032301262021065,-0.010720461606979],[0.026648100465536,-0.0048646503128111,-0.026203561574221],[-0.033064305782318,0.020538844168186,-0.028034357354045]],[[0.099387109279633,-0.047502428293228,0.0017821767833084],[-0.051428608596325,-0.076478905975819,-0.054180223494768],[0.054406989365816,0.00064374291105196,-0.061832197010517]],[[-0.0065085534006357,0.041494749486446,0.011045040562749],[0.0024560603778809,0.026229210197926,0.053829088807106],[0.0086310682818294,0.038937650620937,0.063568167388439]],[[-0.026514127850533,-0.013977682217956,-0.040265776216984],[-0.051649019122124,0.044163852930069,-0.023398803547025],[0.029762078076601,0.024513328447938,-0.0043726582080126]],[[0.074853718280792,-0.031192356720567,0.0037616200279444],[0.00013189492165111,-0.023223159834743,0.021142112091184],[-0.05318808183074,0.026261838153005,0.016286432743073]],[[-0.092152051627636,-0.047668784856796,0.086880005896091],[0.10212723910809,-0.028720127418637,-0.014011095277965],[-0.0066543179564178,-0.0017475632485002,-0.0077555342577398]],[[-0.081718035042286,0.02683973684907,0.026018450036645],[0.069075681269169,-0.0064712944440544,0.0031850675586611],[-0.044187847524881,-0.045924488455057,0.052336320281029]],[[-0.053877454251051,0.032766401767731,0.12132307142019],[0.045404259115458,0.0087825013324618,0.032112468034029],[0.039104025810957,-0.038553964346647,0.070170067250729]],[[0.0085609517991543,0.03638930618763,-0.050637379288673],[0.02889196947217,0.020553767681122,0.0032731485553086],[0.010501896031201,0.035610731691122,-0.0039782067760825]],[[0.0004684585146606,0.0016563157550991,-0.032529477030039],[0.030998602509499,-0.028439929708838,0.083673700690269],[0.025919841602445,-0.057992525398731,0.060501735657454]],[[0.038214229047298,-0.015041445381939,0.022580102086067],[0.083931185305119,-0.03271896392107,0.027476327493787],[0.0092381974682212,-0.022039368748665,-0.016723334789276]]],[[[0.01882828772068,0.016622645780444,-0.068351246416569],[-0.014440594241023,-0.017312180250883,-0.043043058365583],[0.027730686590075,-0.057904329150915,0.0055696326307952]],[[0.0749122351408,-0.022308820858598,-0.10292748361826],[0.086428336799145,0.021525183692575,0.0079532898962498],[0.0094299884513021,-0.042553309351206,-0.028196377679706]],[[0.01126494910568,0.024303119629622,-0.0088468985632062],[0.036508731544018,-0.044548623263836,-0.052255246788263],[-0.051036588847637,-0.10570987313986,-0.024581808596849]],[[-0.12229783087969,0.024107426404953,0.063667245209217],[-0.058970842510462,-0.075257502496243,-0.013566656038165],[0.07727063447237,-0.038234651088715,-0.0080464649945498]],[[0.0057829204015434,-0.078695401549339,-0.0010235948720947],[0.02827712148428,-0.0091058602556586,-0.071309074759483],[0.021483428776264,0.033483818173409,-0.016630964353681]],[[-0.030705014243722,0.0016038925386965,-0.017134616151452],[-0.013053740374744,-0.006902055349201,-0.080215185880661],[-0.019747663289309,-0.065806195139885,-0.04103821143508]],[[0.0020213546231389,0.049779668450356,0.0071944990195334],[0.024085411801934,0.0019114217720926,-0.0062960865907371],[-0.039631504565477,-0.03145606815815,0.018055403605103]],[[0.016110105440021,0.02566391415894,0.033341590315104],[0.0062052989378572,0.055568195879459,0.010192157700658],[0.019767820835114,-0.021646125242114,-0.026337426155806]],[[0.0014306000666693,-0.029133694246411,0.05812868475914],[-0.1285437643528,0.0099855270236731,0.0033422613050789],[-0.025025753304362,0.067448683083057,0.10404647886753]],[[0.053880020976067,-0.034685473889112,0.047059889882803],[0.061937984079123,-0.042851697653532,0.044723983854055],[-0.050502117723227,0.0045776683837175,0.0028274250216782]],[[-0.0066090039908886,-0.025493528693914,0.043480187654495],[0.025603529065847,-0.0029268700163811,-0.026500537991524],[-0.022320415824652,0.020378883928061,0.058658465743065]],[[-0.066014118492603,0.013537349179387,-0.0094185750931501],[0.0055179088376462,-0.056003905832767,-0.0074720825068653],[0.04876971244812,0.081020049750805,-0.07810702174902]],[[0.026415096595883,0.07114465534687,-0.02450985647738],[-0.020560329779983,0.0033649776596576,-0.002223951742053],[0.027182813733816,-0.0041312398388982,-0.087032377719879]],[[-0.029435075819492,-0.073494710028172,0.040875248610973],[0.006422464735806,0.044673934578896,-0.034281652420759],[-0.049989331513643,-0.020331244915724,-0.035835355520248]],[[0.0099847754463553,-0.021564617753029,-0.039891581982374],[0.067253425717354,-0.0040508755482733,-0.028678480535746],[-0.053861875087023,0.027058897539973,-0.11203246563673]],[[0.0028447289951146,-0.047901641577482,-0.049824893474579],[-0.023327562958002,-0.026104763150215,-0.0235415995121],[-0.0093984194099903,0.095512099564075,0.029836831614375]],[[0.056832045316696,0.0861791446805,-0.037513181567192],[-0.02615044079721,-0.050602704286575,-0.0086664976552129],[-0.042556315660477,0.00042345232213847,-0.069950729608536]],[[0.017047820612788,0.029533121734858,0.063247613608837],[-0.040553148835897,-0.048292312771082,0.026291532441974],[0.062326829880476,-0.035581085830927,-0.026701673865318]],[[0.0096618430688977,-0.0014831956941634,0.044095307588577],[0.037120897322893,-0.040256571024656,-0.033850148320198],[-0.010401654988527,-0.034917064011097,-0.018511354923248]],[[-0.02970919944346,0.042086314409971,-0.019716391339898],[0.0019856046419591,0.013830905780196,-0.054733533412218],[-0.03906486555934,-0.034408293664455,-4.1247985791415e-05]],[[0.092345580458641,-0.062035333365202,-0.0010484496597201],[-0.0065265372395515,-0.053684785962105,0.057260129600763],[0.015480727888644,-0.015581885352731,-0.072537690401077]],[[-0.001493665156886,0.0030419495888054,-0.02688124217093],[0.028965849429369,0.016251422464848,-0.011521574109793],[0.010040729306638,0.022384516894817,0.0029140841215849]],[[-0.057604908943176,-0.07392642647028,-0.064823754131794],[-0.022738905623555,0.023703586310148,0.025893760845065],[0.010424408130348,-0.012288603000343,0.040058396756649]],[[-0.00389936985448,0.027590246871114,0.0063997372053564],[0.0015845645684749,-0.036643858999014,0.0061890357173979],[0.028669221326709,-0.0036121136508882,0.050293985754251]],[[-0.089970372617245,0.023183029145002,-0.045280884951353],[-0.031874552369118,0.0049824500456452,-0.073805265128613],[-0.032198969274759,-0.025214439257979,0.031294737011194]],[[0.023606711998582,0.063874945044518,-0.029891962185502],[0.017972165718675,-0.068445436656475,0.014757929369807],[-0.039571449160576,0.028264624997973,-0.026549026370049]],[[-0.035786263644695,-0.019890548661351,0.030551450327039],[-0.020639086142182,0.056021943688393,0.078057371079922],[0.0062630716711283,0.014344170689583,-0.041362155228853]],[[-0.0040514720603824,-0.0072917039506137,0.07746783643961],[0.028369922190905,-0.029909793287516,0.038723114877939],[0.052744127810001,0.010930920951068,-0.032414942979813]],[[0.034757539629936,0.047508701682091,-0.004550514742732],[0.026920210570097,0.0080600520595908,-0.075197651982307],[-0.040452413260937,0.018537571653724,0.0085171861574054]],[[-0.0057356809265912,-0.019623832777143,-0.032924354076385],[-0.010257641784847,-0.061868265271187,0.026364628225565],[-0.094528049230576,-0.010392964817584,0.011010656133294]],[[0.055803555995226,-0.063519388437271,-0.011596473865211],[-0.0049372650682926,-0.013975129462779,0.058202665299177],[0.010473545640707,0.018878873437643,0.030453870072961]],[[0.021921593695879,-0.049909546971321,-0.039853651076555],[-0.052644636482,0.026248373091221,0.015932139009237],[-0.017890410497785,0.047019563615322,0.04194250702858]],[[0.043768234550953,0.02946925163269,0.080397002398968],[-0.049478888511658,-0.02731285430491,-0.059695906937122],[0.061903454363346,0.015149850398302,-0.067592337727547]],[[-0.090796746313572,-0.038365859538317,0.029231606051326],[-0.085332438349724,-0.029144361615181,0.037022870033979],[-0.036553546786308,0.048955276608467,0.0477424710989]],[[-0.077220797538757,0.046686977148056,-0.019203176721931],[-0.031692486256361,0.0038508111611009,0.063039369881153],[0.03902505338192,0.048710808157921,-0.02449294179678]],[[0.054672367870808,-0.080393761396408,-0.016437189653516],[-0.061919562518597,0.073476254940033,-0.0055831242352724],[0.022706516087055,0.028126239776611,0.043654263019562]],[[-0.064294531941414,-0.063388124108315,0.023026302456856],[0.017946204170585,0.060079425573349,0.018876673653722],[-0.02242567948997,-0.0039958655834198,0.0060802716761827]],[[-0.0057450393214822,0.064352124929428,-0.086080573499203],[0.0042462148703635,-0.042006395757198,-0.016818689182401],[0.049903534352779,-0.052324149757624,-0.075490087270737]],[[-0.059026822447777,0.057384800165892,0.086165346205235],[-0.10096260905266,0.025871170684695,-0.036992155015469],[-0.14084987342358,-0.011726477183402,-0.062195044010878]],[[0.042030334472656,0.020296804606915,0.035360660403967],[0.0032403292134404,-0.056199364364147,0.030972192063928],[0.014950449578464,0.010499843396246,-0.016966639086604]],[[0.026550060138106,0.0096520856022835,0.023921707645059],[-0.005618226248771,0.0022257920354605,-0.050311345607042],[0.069000884890556,0.019489169120789,-0.017935482785106]],[[-0.019460493698716,0.048237673938274,-0.0087472144514322],[0.011122442781925,0.069178991019726,0.015367831103504],[-0.044970843940973,0.00081095227506012,-0.0063009024597704]],[[-0.026025433093309,-0.012190291658044,0.068878091871738],[-0.025926660746336,0.028259767219424,0.033352587372065],[0.05160615593195,-0.0085432576015592,-0.039104878902435]],[[-0.066615223884583,-0.014496681280434,-0.055219516158104],[-0.021443296223879,-0.020195307210088,-0.12440693378448],[-0.053135808557272,0.074072442948818,-0.060466516762972]],[[-0.002841716632247,0.041314650326967,0.079876318573952],[0.0058910297229886,-0.0126544078812,-0.015348518267274],[0.059785019606352,-0.041607107967138,-0.0011758143082261]],[[0.036123342812061,-0.014373601414263,-0.023849809542298],[-0.021906780079007,-0.0610221773386,-0.028692984953523],[0.04695563018322,0.11101289093494,-0.020245773717761]],[[-0.028949735686183,-0.025609595701098,-0.035293098539114],[0.02801894582808,-0.059648897498846,-0.092919781804085],[0.040141750127077,0.025841042399406,-0.043220732361078]],[[0.028247460722923,0.037291198968887,-0.0040355389937758],[0.027380535379052,-0.013600272126496,-0.049378994852304],[-0.0042970525100827,0.05668842419982,0.066371895372868]],[[-0.12206906825304,-0.0035149736795574,0.00012524200428743],[0.0246976390481,0.014226661995053,-0.022749429568648],[0.010526195168495,0.010949169285595,-0.009487260133028]],[[-0.082634516060352,0.00013820113963448,0.083882786333561],[-0.00017976996605285,0.042359258979559,0.021112678572536],[0.013407577760518,0.019200837239623,0.017972368746996]],[[0.034714974462986,-0.071676060557365,0.034265015274286],[-0.0060456139035523,0.0088224504143,-0.027022480964661],[-0.069544285535812,-0.0063350768759847,-0.043522220104933]],[[-0.023811563849449,-0.01333580724895,-0.039842698723078],[0.077073909342289,-0.027446176856756,0.048163581639528],[0.074475526809692,-0.055919658392668,-0.082603558897972]],[[-0.02929262816906,0.0067261666990817,-0.028485471382737],[0.055658731609583,0.030507968738675,0.0012066267663613],[0.016228249296546,-0.031991057097912,-0.024998443201184]],[[0.027546852827072,0.00013755800318904,-0.0091282390058041],[0.026109637692571,0.05909962579608,0.061690028756857],[-0.026657165959477,0.0055955741554499,-0.015748327597976]],[[-0.023145509883761,-0.060790605843067,0.031003883108497],[0.043787680566311,-0.039063606411219,-0.05288228020072],[-0.024975210428238,-0.041680429130793,0.017209179699421]],[[0.00024121697060764,-0.0036294963210821,-0.00029119389364496],[-0.034950207918882,0.053830552846193,-0.00065077946055681],[0.019373992457986,-0.022462725639343,-0.067556522786617]],[[-0.0758056640625,0.0094140795990825,0.031979463994503],[0.0022418918088078,-0.056135360151529,-0.047336138784885],[-0.041769694536924,0.087540343403816,-0.0029122692067176]],[[0.017761781811714,0.012098658829927,0.068866789340973],[0.025208758190274,0.059614390134811,-0.023528028279543],[-0.030477944761515,-0.0053995912894607,-0.016459668055177]],[[0.064978905022144,-0.044119454920292,-0.030148591846228],[0.0090759051963687,-0.0048853191547096,-0.041524663567543],[-0.028786063194275,0.0024651191197336,-0.015188463032246]],[[-0.031273383647203,0.0042065409943461,0.028622379526496],[-0.016003578901291,0.0027509953361005,0.01443914975971],[-0.045456979423761,0.031898986548185,0.011224297806621]],[[-0.034341424703598,0.020415306091309,-0.018846040591598],[-0.037857487797737,0.019176887348294,-0.015957195311785],[-0.070813544094563,-0.058702025562525,0.053051732480526]],[[0.00013356012641452,-0.025677308440208,0.0071172527968884],[0.071396350860596,-0.023010261356831,-0.0063004666008055],[0.00014116734382696,-0.016172340139747,0.031426850706339]],[[0.039739899337292,0.0029886392876506,-0.061513554304838],[-0.10589807480574,0.044113039970398,0.029302932322025],[-0.02457270398736,-0.010069300420582,-0.044053260236979]],[[0.0020399300847203,-0.01057490054518,0.10025452822447],[0.0099880332127213,0.0072066560387611,0.00576928909868],[0.009128694422543,-0.063214972615242,0.054636690765619]],[[0.013529628515244,-0.028106292709708,-0.016677210107446],[-0.03644771873951,0.0066328346729279,0.038890305906534],[-0.053760137408972,0.00096936093177646,-0.012908130884171]],[[0.054047796875238,0.026279591023922,-0.0041495263576508],[0.020313533023,0.05079835280776,-0.010553080588579],[-0.039729498326778,0.0050911540165544,0.043074954301119]],[[0.028775246813893,-0.022832995280623,0.043038461357355],[0.061801496893167,0.068177402019501,0.12113504111767],[-0.022726764902472,-0.048624627292156,0.024928221479058]],[[0.010228221304715,0.049128852784634,0.013451515696943],[0.012182361446321,0.042502991855145,0.027126472443342],[-0.081159539520741,0.080878786742687,0.050376806408167]],[[-0.011374816298485,-0.104870647192,0.079430304467678],[-0.0092113809660077,-0.10508739203215,0.042819391936064],[-0.013096945360303,-0.0025273049250245,-0.057448416948318]],[[0.056208472698927,-0.068084992468357,0.032437518239021],[-0.065822914242744,0.072351448237896,0.030913921073079],[0.091827854514122,0.01943626627326,-0.0070222551003098]],[[-0.051833994686604,-0.018448170274496,0.044844463467598],[-0.050087194889784,0.014893068000674,-0.0085011571645737],[0.083237513899803,-0.0013543769018725,0.013900867663324]],[[-0.017348291352391,0.039352118968964,-0.034957889467478],[-0.020910728722811,-0.024897245690227,0.065275937318802],[-0.0043606418184936,0.0084924194961786,-0.026336150243878]],[[-0.044316817075014,0.047440029680729,-0.015824129804969],[0.015416613779962,0.07174164056778,0.021144112572074],[-0.010538817383349,0.025333404541016,-0.045344065874815]],[[0.010767896659672,0.03262872248888,0.002929306589067],[-0.034327957779169,-0.019538208842278,-0.024559047073126],[0.015072297304869,-0.051724787801504,-0.00023264808987733]],[[-0.063767969608307,-0.034695010632277,0.025748068466783],[0.013206015340984,-0.03018050827086,0.075117200613022],[0.073940493166447,0.034427545964718,0.027689827606082]],[[0.026256987825036,0.034918487071991,0.035485949367285],[-0.10626115649939,-0.030157802626491,-0.035407543182373],[-0.054159194231033,0.046907730400562,0.047094356268644]],[[0.031228160485625,-0.04649118706584,-0.019922856241465],[-0.0057067777961493,0.03101066686213,0.03058890812099],[0.057514265179634,0.026486897841096,0.022411670535803]],[[-0.0018756981007755,-0.032511003315449,0.0023551946505904],[-0.068154945969582,0.059444639831781,-0.026452332735062],[0.001762077328749,-0.011998308822513,-0.036024309694767]],[[-0.047484941780567,-0.04111772403121,0.01637158729136],[-0.0015591678675264,-0.039946954697371,-0.12628181278706],[-0.010090145282447,-0.052242156118155,0.0028175627812743]],[[-0.086097061634064,-0.0062448340468109,-0.02933594211936],[-0.037055429071188,0.042992550879717,0.011575438082218],[0.068375632166862,-0.058772560209036,0.014079338870943]],[[0.022849850356579,0.035946011543274,-0.052009027451277],[0.0051720319315791,0.023497220128775,0.086269721388817],[-0.018968982622027,-0.064750462770462,0.0084827803075314]],[[0.05696689337492,0.018051739782095,0.00033963762689382],[0.094615250825882,0.05407565459609,0.033551331609488],[0.013819647021592,0.0034719703253359,-0.010084710083902]],[[-0.070160835981369,0.007555709220469,0.089712254703045],[-0.041208855807781,0.017470233142376,-0.014394721016288],[0.049114007502794,-0.030215872451663,-0.0037604488898069]],[[0.017911730334163,0.0035401545464993,-0.0086374329403043],[0.055515248328447,0.01518860924989,-0.022056689485908],[-0.039491653442383,-0.043232824653387,-0.022507006302476]],[[-0.040655963122845,0.060626372694969,-0.01002648845315],[-0.00023778967442922,-0.033554948866367,0.0017238815780729],[-0.043262254446745,-0.029675830155611,0.014216410927474]],[[-0.058377094566822,-0.0064306105487049,0.06388545781374],[-0.031162286177278,-0.001815531286411,-0.0054190717637539],[-0.0029714640695602,-0.027047930285335,-0.05283971875906]],[[0.014913209713995,-3.6282319342718e-05,0.048967160284519],[0.00052614242304116,0.031688302755356,-0.083642609417439],[-0.035274848341942,-0.027673646807671,0.0061322879046202]],[[0.020370250567794,-0.037331391125917,0.0069716819562018],[-0.053199168294668,0.0081173283979297,0.03336414322257],[-0.0185666680336,0.0065225302241743,-0.0074302055872977]],[[-0.010525951161981,-0.051622476428747,0.026440013200045],[-0.02371153049171,0.0025897361338139,-0.026549063622952],[0.11540053039789,0.011768419295549,0.021127624437213]],[[0.011127263307571,-0.081458136439323,0.0068743810988963],[-0.032055072486401,0.14920334517956,-0.023702448233962],[0.021929932758212,0.059334181249142,-0.007471009157598]],[[-0.0020867087878287,-0.0021893815137446,-0.009363979101181],[0.016638837754726,0.048605278134346,-0.054708492010832],[0.0088509852066636,-0.023885918781161,0.029603870585561]],[[-0.024862701073289,0.11731175333261,-0.052702646702528],[0.011308692395687,-0.0051903259009123,-0.085424497723579],[0.0069298231974244,0.012003650888801,-0.023773301392794]],[[0.0094556221738458,-0.015179819427431,0.0054780966602266],[-0.0079350443556905,-0.026302348822355,0.012797470204532],[0.040268462151289,0.036530777812004,0.018196143209934]],[[0.037341885268688,0.030686963349581,0.025844395160675],[0.01261986605823,-0.078605346381664,-0.040302991867065],[0.021710919216275,0.068511180579662,-0.041029762476683]],[[0.043807938694954,-0.023779278621078,0.021354660391808],[0.025720521807671,0.0047719972208142,-0.03296984732151],[0.035200953483582,-0.028013531118631,-0.067118607461452]],[[-0.054978016763926,-0.013933649286628,0.017239853739738],[0.0119304722175,0.032606068998575,-0.1114708557725],[-0.0056061358191073,-0.052057724446058,-0.0226059705019]],[[0.061121795326471,-0.0046353898942471,0.029323823750019],[0.01683739759028,0.031837496906519,-0.085294030606747],[-0.044601839035749,-0.050669610500336,-0.040153451263905]],[[-0.070519275963306,-0.029012955725193,-0.0034829608630389],[0.049782261252403,-0.014620022848248,0.01995700225234],[0.048147611320019,0.060600090771914,-0.047341417521238]],[[-0.022947490215302,0.019743327051401,-0.018505791202188],[0.053699556738138,-0.10281120240688,-0.030846141278744],[0.034993506968021,-0.022879991680384,-0.033387701958418]],[[-0.057302325963974,-0.030307581648231,0.092421904206276],[0.0017493074992672,0.011290388181806,0.058122131973505],[-0.024212803691626,-0.017658790573478,0.1038483902812]],[[0.059081424027681,-0.049373257905245,-0.011346011422575],[0.037166226655245,-0.012280058115721,0.012866540811956],[0.04952634871006,0.086756996810436,-0.064669072628021]],[[0.049711160361767,0.036550529301167,0.039479684084654],[-0.018893184140325,-0.039033982902765,-0.026802003383636],[-0.054455373436213,0.041272968053818,-0.083546854555607]],[[0.014776725322008,0.0094128185883164,0.015121114440262],[-0.015015604905784,0.030262859538198,0.038865119218826],[0.071270108222961,0.074994035065174,-0.0097259841859341]],[[0.069232910871506,0.027107397094369,0.03585584461689],[0.0056847068481147,0.010349075309932,0.036872651427984],[0.069951325654984,-0.020002231001854,0.017389228567481]],[[0.061474833637476,-0.023836100474,-0.064831614494324],[-0.0067787826992571,-0.00022784109751228,-0.052210073918104],[0.06299614161253,-0.041998263448477,-0.010076889768243]],[[-0.03864947706461,0.0070648826658726,-0.0062900637276471],[-0.070702418684959,0.036572098731995,0.027669042348862],[-0.0030955062247813,0.00010243378346786,0.0050120232626796]],[[-0.046749141067266,-0.011359485797584,0.0051500555127859],[0.041989549994469,-0.032099653035402,0.022579880431294],[-0.033459797501564,0.021044233813882,0.024399222806096]],[[-0.010766541585326,0.051256645470858,-0.033753424882889],[-0.019370149821043,-0.029379861429334,0.036675505340099],[0.028075188398361,0.0050145238637924,0.036291565746069]],[[-0.0011772330617532,0.078238904476166,-0.024221919476986],[0.011662723496556,-0.063102476298809,0.055460352450609],[0.086489133536816,-0.011614479124546,0.061794321984053]],[[-0.012906746938825,0.0018332755425945,-0.03315544128418],[0.029016993939877,0.0053239176049829,0.0288843549788],[0.0067837829701602,0.026668244972825,0.026535915210843]],[[-0.037606403231621,0.089482590556145,-0.052216693758965],[0.070126712322235,0.040057517588139,0.021127969026566],[0.097431212663651,-0.025038762018085,0.0067080315202475]],[[-0.04419482499361,0.00051810446893796,0.030083307996392],[-0.11044760793447,0.0043114498257637,-0.09263127297163],[-0.07442219555378,0.031269121915102,-0.053749050945044]],[[-0.010575820691884,0.036717668175697,-0.073318637907505],[0.0010403675260022,-0.028522843495011,-0.036385226994753],[-0.016690542921424,-0.030381249263883,-0.054335717111826]],[[0.026793230324984,0.1094127073884,-0.05568104237318],[-0.049090459942818,-0.0095309317111969,-0.034345593303442],[-0.028981486335397,-0.012946153990924,-0.032752308994532]],[[0.005134919192642,-0.046601146459579,0.0033679311163723],[-0.053831517696381,0.059308174997568,2.4829183530528e-05],[-0.076821468770504,-0.024254430085421,-0.057141337543726]],[[-0.081808112561703,0.014141293242574,-0.044073969125748],[-0.033757772296667,-0.0023032615426928,-0.00022389451623894],[-0.013527369126678,0.015672659501433,-0.039361629635096]],[[0.052852846682072,0.025976276025176,-0.0057313800789416],[0.035489831119776,0.0010828581871465,0.0015898399287835],[0.073346607387066,-0.081022754311562,0.033577784895897]],[[-0.0022299683187157,-0.0032968379091471,0.063211016356945],[-0.040146060287952,-0.031375762075186,0.010448749177158],[-0.037967287003994,0.01897975243628,-0.07697170227766]],[[0.03452854603529,-0.029985060915351,-0.036472517997026],[-0.044477470219135,-0.016717672348022,0.072750963270664],[0.026937587186694,0.0095252133905888,0.021092772483826]],[[0.063755258917809,0.017901912331581,-0.010837787762284],[-0.055227492004633,0.018902787938714,-0.017084710299969],[-0.03182016685605,0.004294098354876,-0.016490530222654]],[[0.00058736104983836,-0.014335408806801,-0.027374325320125],[-0.096164360642433,-0.042604275047779,-0.0032372490968555],[-0.037554319947958,-0.0099102668464184,-0.0018681117799133]],[[0.064695671200752,0.0095049282535911,0.012475973926485],[0.048101130872965,0.042086765170097,0.043410927057266],[0.012648112140596,-0.0032799907494336,-0.041475582867861]],[[-0.039642959833145,0.018106328323483,-0.0069423387758434],[-0.029504170641303,-0.0076414197683334,-0.027671938762069],[0.025609685108066,0.02198338881135,0.062503643333912]],[[-0.10178089886904,0.054193746298552,-0.063776947557926],[0.0062916274182498,0.019995272159576,0.031391430646181],[0.02521001920104,-0.020778384059668,-0.043274208903313]],[[-0.010910955257714,0.010791757144034,-0.010009055957198],[-0.0086900256574154,-0.054959673434496,-0.016408352181315],[-0.050332639366388,-0.01372686214745,0.013699500821531]],[[-0.025246232748032,-0.031066361814737,0.013184113427997],[-0.0099707217887044,0.064819842576981,-0.016506399959326],[-0.056209456175566,0.039145350456238,0.048153236508369]],[[-0.013209275901318,-0.041405264288187,-0.016791068017483],[0.066793978214264,-0.044091794639826,0.098280884325504],[-0.056227315217257,0.025754878297448,-0.0093168197199702]],[[0.048436034470797,0.038319457322359,0.040867369621992],[-0.10458716750145,-0.026711218059063,0.041182801127434],[0.0048328381963074,0.026469713076949,0.030130255967379]]]],"nOutputPlane":128,"kW":3,"kH":3,"bias":[-0.086900115013123,-0.0091692181304097,-0.072936728596687,-0.034058306366205,-0.0040341936983168,-0.0078367767855525,0.047781854867935,-0.082294680178165,0.063888184726238,-0.017011754214764,-0.012593902647495,-0.071974724531174,-0.0082477275282145,-0.0091719795018435,-0.002887454116717,-0.0067557208240032,-0.006703379098326,-0.0065516135655344,-0.016334891319275,-0.02242805249989,0.0022969245910645,-0.030967043712735,0.00093466218095273,0.0017430065199733,-0.014232349582016,-0.017902828752995,-0.0081024803221226,-0.082132510840893,-0.083646155893803,-0.0037622964009643,-0.021944116801023,-0.0085936393588781,-0.075120091438293,0.067636094987392,-0.016871307045221,-0.003573508001864,-0.025311097502708,-0.022995933890343,-0.079368963837624,-0.0099319107830524,-0.02097151055932,-0.01430294290185,-0.007880580611527,-0.0067962971515954,-0.089907445013523,0.0079447831958532,-0.031544581055641,0.00059629423776641,0.013861860148609,-0.082106947898865,-0.0044454461894929,0.019325168803334,-0.019753566011786,0.0010076990583912,-0.094802469015121,-0.012609984725714,-0.013267377391458,-0.016440829262137,0.02380646020174,-0.066996119916439,-0.028228286653757,-0.0091998009011149,-0.080779045820236,-0.14926519989967,-0.016165742650628,-0.011435120366514,-0.050387114286423,-0.00054186285706237,-0.0066972365602851,-0.012706845067441,-0.0094359330832958,0.0012722858227789,-0.0046503441408277,-0.077980443835258,-0.0030932519584894,-0.0049521778710186,-0.088746584951878,-0.088294170796871,0.010060168802738,-0.065738208591938,-0.0092460094019771,-0.00034065853105858,-0.0054657906293869,-0.0048682023771107,0.072399616241455,-0.073602043092251,-0.032957628369331,0.047986339777708,-0.081036955118179,-0.015005395747721,0.054512239992619,-0.010383293032646,-0.026906102895737,-0.013224717229605,-0.0034497880842537,-0.085078492760658,-0.020881038159132,-0.001980260014534,-0.0032848513219506,-0.013174991123378,0.010215769521892,-0.0012724729022011,-0.0037115775048733,-0.081072196364403,-0.0076000662520528,-0.010602420195937,-0.028909895569086,-0.0040276437066495,-0.0044739632867277,-0.0098008392378688,-0.0038850985001773,-0.063683234155178,-0.026954820379615,0.0074966847896576,-0.0091779036447406,-0.0055732480250299,-0.0077031077817082,0.042175564914942,0.0066002504900098,-0.0091106966137886,-0.0028183814138174,-0.080385379493237,-0.0047560795210302,0.080199413001537,-0.0099999774247408,-0.024697164073586,-0.0088283428922296,-0.074610963463783],"nInputPlane":128},{"weight":[[[[0.92255276441574,0.25763034820557,-0.74479681253433],[0.65229213237762,0.0023535971995443,-0.6731818318367],[-1.2787611484528,-0.01487610861659,0.11058041453362]],[[-0.20448204874992,-0.18005165457726,-0.07032460719347],[0.008212354965508,-0.033358514308929,0.62555360794067],[-0.54114013910294,0.0087847243994474,0.3935444355011]],[[-0.18434219062328,0.35033267736435,-0.50794589519501],[-0.90375572443008,-0.14635445177555,0.20106020569801],[0.3388007581234,0.37426918745041,-0.020856417715549]],[[0.53082180023193,-0.73597979545593,0.52255672216415],[-0.71561312675476,0.18614150583744,0.050311878323555],[0.24035453796387,0.14503195881844,-0.24530024826527]],[[-0.60090005397797,0.070176295936108,-0.026450308039784],[-0.11517135798931,0.6283295750618,0.020348468795419],[0.0015866030007601,0.035758558660746,-0.063575364649296]],[[-0.65501773357391,-0.8063297867775,-0.60303843021393],[0.21672473847866,0.66705143451691,0.36155241727829],[0.39061963558197,0.34912928938866,0.081638254225254]],[[0.064306773245335,0.40387949347496,-0.32012102007866],[-0.11352670192719,0.064094007015228,0.078034058213234],[0.95192813873291,-0.1360080987215,-0.020905265584588]],[[-0.19283747673035,0.10165188461542,-0.087577879428864],[0.3748619556427,-0.1453650444746,-0.43441614508629],[-0.071455918252468,-0.56781536340714,0.035213090479374]],[[0.45807412266731,1.054608464241,-0.60645389556885],[0.20532400906086,0.058525305241346,-0.25275674462318],[0.50630688667297,-0.29036068916321,-0.41328904032707]],[[0.14276216924191,-0.71939796209335,0.16125884652138],[-0.14302717149258,0.71597248315811,0.39533376693726],[0.67954617738724,-0.93213433027267,-0.2721571624279]],[[0.070311978459358,0.68664848804474,0.84975916147232],[-0.31472995877266,0.63239949941635,-0.16646431386471],[-0.29846519231796,-0.43899148702621,-1.0185474157333]],[[0.93210852146149,-0.0042701936326921,-0.079286031424999],[-1.3934462070465,0.81341272592545,0.046323180198669],[-0.20611122250557,-0.16667124629021,-0.33680355548859]],[[-0.74806702136993,-0.011228100396693,0.35482811927795],[-0.084907792508602,-0.1635832041502,0.46260884404182],[-0.049383211880922,0.12829595804214,0.11183348298073]],[[-1.1870908737183,0.27404630184174,0.46056401729584],[0.4904460310936,-0.56452977657318,-0.18671929836273],[0.37861624360085,0.094958543777466,0.24208080768585]],[[-0.31855967640877,0.17584094405174,-0.088715419173241],[-0.24793682992458,0.68838787078857,-0.25757253170013],[0.10222485661507,-0.42092317342758,0.35389265418053]],[[-0.13821277022362,0.26142963767052,0.52835363149643],[-0.30982279777527,-0.35004362463951,0.44606786966324],[0.044135179370642,0.32670328021049,-0.82166635990143]],[[-0.44399631023407,-0.84550338983536,-0.034160885959864],[-0.23160564899445,0.30373200774193,0.95648765563965],[-0.029822696000338,0.18208546936512,0.14298647642136]],[[0.76305174827576,0.40323770046234,0.2132612913847],[-0.43694993853569,-0.11625450104475,-0.4284699857235],[0.01504063885659,-0.48512718081474,0.074392177164555]],[[-0.27898955345154,1.2796205282211,-0.085479035973549],[0.18825428187847,-0.45243960618973,-0.43799728155136],[-0.17662726342678,-0.12807793915272,0.092640958726406]],[[-0.21413603425026,-0.15891265869141,0.15923155844212],[0.19541396200657,0.25529319047928,-0.79607701301575],[0.03480239585042,0.094092011451721,0.44235149025917]],[[0.25485640764236,-0.025177357718349,0.36467957496643],[0.22081671655178,-0.84260898828506,0.31598141789436],[-0.26700431108475,0.29863938689232,-0.31191194057465]],[[0.010616542771459,0.23339915275574,-0.30521965026855],[0.38551473617554,-0.60841923952103,-0.072355024516582],[0.23591977357864,0.092129722237587,0.031441263854504]],[[-0.13087899982929,0.24545828998089,-0.26003640890121],[0.063372194766998,-0.35196197032928,0.13272741436958],[0.18385984003544,-0.14254654943943,0.26707693934441]],[[0.050412621349096,-0.10109526664019,-0.0066317594610155],[-0.38221183419228,-0.097476348280907,0.32487353682518],[0.40820023417473,0.33125767111778,-0.51836973428726]],[[-0.61341524124146,0.78368276357651,-0.56537079811096],[0.11480844765902,0.2884521484375,-0.24563969671726],[0.13320203125477,-0.21473529934883,0.31514671444893]],[[0.1206628754735,-0.4759678542614,-0.39469030499458],[0.10105896741152,0.187704205513,0.10403222590685],[0.33216351270676,0.28463068604469,-0.24643179774284]],[[0.53654128313065,-0.36685764789581,0.69712901115417],[-0.8477828502655,-0.36832040548325,-0.6076534986496],[0.52769410610199,-0.20982663333416,0.64358067512512]],[[-0.49994465708733,0.31718808412552,0.051761988550425],[0.29398769140244,-0.35791450738907,-0.33949691057205],[-0.50324469804764,-0.37701943516731,0.34359836578369]],[[-0.88493686914444,0.1630572527647,-0.86484950780869],[0.13111865520477,0.4410198032856,-0.58939325809479],[-0.12497278302908,1.2627898454666,-0.90288931131363]],[[0.28811171650887,-0.58138030767441,-0.14485637843609],[0.77928954362869,0.13649253547192,0.84792077541351],[-0.21799975633621,-0.55125439167023,-0.087942138314247]],[[-0.29727491736412,0.28330770134926,-0.02319810539484],[-0.30517396330833,-0.64535075426102,-0.47430920600891],[0.42411229014397,0.98097294569016,0.060957793146372]],[[-0.1393837928772,-0.13912865519524,0.30073636770248],[0.32731959223747,-0.093838006258011,-0.081666022539139],[0.010205912403762,0.49158534407616,-0.67668837308884]],[[-0.029558094218373,0.36177563667297,0.0082072066143155],[0.05084278807044,0.79709559679031,-0.54952412843704],[-0.026193011552095,-0.70959281921387,-0.31882750988007]],[[-0.092571645975113,0.25562724471092,-0.24798229336739],[0.34942999482155,0.36098998785019,0.063831478357315],[0.34861871600151,0.21110221743584,-0.019209878519177]],[[-1.0755307674408,0.20680478215218,0.48414066433907],[-0.036831021308899,0.1470817476511,0.22561360895634],[0.2692024409771,0.19345471262932,-0.41201218962669]],[[-0.58588862419128,-0.20445501804352,-0.108159519732],[0.0072065130807459,-0.38927361369133,0.79254215955734],[-0.11253563314676,0.22362245619297,0.38486942648888]],[[-0.31619772315025,0.4275903403759,0.027853835374117],[-0.5372399687767,0.54568767547607,-0.22973504662514],[0.066230051219463,0.4621906876564,-0.44651883840561]],[[-0.28726997971535,-0.75623041391373,0.83921176195145],[0.072632014751434,0.39171600341797,-0.68101924657822],[-0.1318481117487,0.55522501468658,-0.0037082005292177]],[[0.19339799880981,0.40826517343521,0.37016895413399],[-0.11174044013023,-0.34796524047852,-0.35840666294098],[-0.12358991056681,-0.47842714190483,-0.078549422323704]],[[0.66992348432541,0.609015583992,0.25950634479523],[-0.51325625181198,0.018028439953923,-0.40582337975502],[-0.89616322517395,0.20565240085125,0.053017128258944]],[[-0.64665812253952,0.13936702907085,0.11645899713039],[0.19563667476177,0.22598852217197,-0.27831143140793],[0.19909211993217,0.38724461197853,-0.31839442253113]],[[-1.0493578910828,0.10428970307112,1.1233229637146],[-0.38995954394341,0.086300767958164,-0.13310538232327],[-0.13303692638874,0.20451010763645,0.18843574821949]],[[-0.36723566055298,0.68285882472992,0.032841343432665],[-1.1117309331894,0.24377907812595,0.616514980793],[-0.020606778562069,-0.4764828979969,0.40208485722542]],[[-0.35289543867111,-1.4480131864548,-0.3789547085762],[0.82710468769073,0.088410630822182,-0.1031731441617],[0.17770141363144,0.45879548788071,0.73863691091537]],[[-0.74317890405655,-0.12108198553324,0.21866872906685],[0.11767771840096,0.33423101902008,-0.064838744699955],[-0.75468856096268,-0.97220849990845,-0.54123872518539]],[[-0.24166205525398,-0.52114999294281,0.12319803982973],[0.30387517809868,0.036715604364872,0.41666090488434],[-0.11803591996431,0.18942414224148,-0.18645909428596]],[[0.55920654535294,0.27658975124359,0.028433911502361],[-0.44644448161125,-0.97063213586807,0.17002508044243],[0.27772635221481,0.35169324278831,-0.26998975872993]],[[-0.23383893072605,-0.00048680364852771,0.11987704783678],[-0.11738244444132,-0.11122555285692,-0.38317763805389],[0.55604863166809,0.53208959102631,-0.35166078805923]],[[0.17266729474068,-0.0093950890004635,0.23840188980103],[1.2131140232086,-0.62698584794998,-0.18840140104294],[-0.19409351050854,-0.98603713512421,0.39691036939621]],[[0.37226784229279,0.42602321505547,0.24215723574162],[-0.64246171712875,-0.18302588164806,-0.40121683478355],[-0.40970659255981,-0.19509983062744,-0.13307578861713]],[[-0.23626647889614,0.20031009614468,-0.0048256628215313],[0.13887952268124,0.56204092502594,-0.48646160960197],[0.093415483832359,-0.028869487345219,-0.25215822458267]],[[0.85009759664536,-0.2020547837019,-0.016749821603298],[-0.91613453626633,-0.24129210412502,0.27342560887337],[0.02616804279387,0.15277272462845,0.046998076140881]],[[0.098338060081005,-0.07082299888134,0.10214433073997],[-0.10527737438679,0.073043689131737,-0.2618735730648],[-0.10191661864519,-0.04237699881196,0.29293367266655]],[[0.11954346299171,-0.0013600813690573,-0.17882764339447],[-0.24765621125698,-0.061361003667116,0.17734828591347],[0.065418660640717,0.02311054803431,0.10220332443714]],[[-0.026894876733422,0.2029492855072,-1.0883730649948],[-0.34624591469765,-0.011864979751408,-0.19465778768063],[-0.74604552984238,0.26173156499863,-0.36414888501167]],[[0.1238898858428,-0.85477727651596,0.59308993816376],[-0.035471010953188,-0.024230808019638,0.47325059771538],[0.20380862057209,0.06762770563364,-0.54562628269196]],[[0.25019708275795,0.52855837345123,0.11104031652212],[-0.24281965196133,-0.24475918710232,0.19009050726891],[-0.7089369893074,0.15776854753494,-0.041611075401306]],[[-0.48686826229095,0.32292717695236,0.29951170086861],[0.62748324871063,-0.33193692564964,-0.056973934173584],[-0.37993904948235,0.39919424057007,-0.39016118645668]],[[-0.25118368864059,0.57339054346085,0.41767257452011],[0.29635861515999,-0.61911600828171,0.1850633919239],[-0.27322733402252,-0.11888524144888,-0.12177633494139]],[[0.078745298087597,0.64011353254318,0.035190049558878],[-0.44644224643707,-0.64740282297134,-0.26243314146996],[0.11486348509789,-0.05357076600194,-0.053946055471897]],[[0.14710308611393,-0.12914754450321,-0.056517843157053],[-0.2433360517025,0.31709453463554,0.028491545468569],[0.12586556375027,-0.040461730211973,-0.14113260805607]],[[0.28196153044701,-0.66115498542786,0.45305654406548],[0.35982251167297,0.36642906069756,0.78008860349655],[-0.54225689172745,-0.048551492393017,-0.98781478404999]],[[-0.64964431524277,0.12743060290813,-0.021095979958773],[-0.18570867180824,0.92719078063965,-0.64550149440765],[-0.52550739049911,0.063632562756538,0.28356969356537]],[[0.12717182934284,-0.52833497524261,0.15122985839844],[-0.45672798156738,1.1936662197113,-0.024033177644014],[0.13976642489433,-0.17888635396957,-0.44690647721291]],[[0.90739756822586,-0.490632802248,-0.35904777050018],[0.079008691012859,-0.1384142190218,0.19958263635635],[-0.68139976263046,0.15050372481346,0.33895647525787]],[[0.69767516851425,0.16079425811768,-1.0644263029099],[0.10167371481657,0.56722223758698,0.12685713171959],[0.045990094542503,-0.33549213409424,-0.29439377784729]],[[-0.22330294549465,0.34483110904694,-0.028239667415619],[-0.3822235763073,-0.12180544435978,0.059810567647219],[-0.16664712131023,0.22751879692078,0.21542918682098]],[[-0.38550606369972,0.13598667085171,-0.10371758788824],[0.52455312013626,0.33040335774422,-0.2343965023756],[-0.4225352704525,-0.16519051790237,0.32306531071663]],[[0.25454849004745,-0.13211092352867,-0.72239106893539],[0.6718008518219,0.01730957813561,0.046429798007011],[0.37558409571648,-0.21170601248741,-0.29079911112785]],[[0.40750467777252,0.54418271780014,0.30307751893997],[-0.14903138577938,-0.48301222920418,-0.70752280950546],[-0.033187411725521,0.07996454834938,0.048595447093248]],[[0.33229923248291,0.19637681543827,-0.48332649469376],[0.34300151467323,-0.038941711187363,0.16039831936359],[-0.064361706376076,-0.14940728247166,-0.29341295361519]],[[-0.45725336670876,0.21053896844387,-0.0077303112484515],[-0.51845723390579,0.35286357998848,0.25291487574577],[-0.07884618639946,-0.024662617594004,0.28084200620651]],[[-0.3813536465168,0.2450130879879,-0.52957701683044],[0.41652217507362,-0.15970474481583,0.096143946051598],[0.32784363627434,0.043299674987793,-0.05579687282443]],[[-0.31441766023636,0.030626097694039,0.27488589286804],[-0.20990589261055,0.76795864105225,-0.4370793402195],[-0.082613341510296,-0.63978731632233,-0.065344534814358]],[[-0.064893282949924,-0.86832803487778,0.39974746108055],[0.65665847063065,-0.0038958943914622,-0.43335038423538],[-0.41442766785622,0.56533789634705,0.17302979528904]],[[0.30623134970665,-0.5625279545784,-0.00092859240248799],[0.27518889307976,-0.78890776634216,0.18731079995632],[0.28885391354561,0.28007405996323,0.02719316445291]],[[0.32049041986465,-0.99432623386383,0.98211979866028],[-0.33680388331413,-0.44975981116295,0.075881652534008],[-0.3983481824398,-0.85096335411072,0.14585736393929]],[[0.17925065755844,-0.73350977897644,0.21071426570415],[0.057077921926975,-0.021163145080209,-0.29630541801453],[-0.014899488538504,-0.053498916327953,0.0098821669816971]],[[0.2766754925251,0.045391567051411,-0.32201820611954],[-0.094834163784981,0.41980561614037,0.11835517734289],[-0.54895108938217,0.45559132099152,-0.35444706678391]],[[-0.0245654694736,0.052469749003649,-0.36200872063637],[0.32756301760674,-0.30295023322105,-0.078821204602718],[-0.23564095795155,0.21397589147091,-0.066827714443207]],[[-0.060086481273174,-0.054372660815716,-0.7185440659523],[-0.21821808815002,0.45261698961258,0.34331679344177],[0.31264421343803,0.12028061598539,-0.17888522148132]],[[0.60817122459412,-0.50846725702286,0.021054388955235],[-0.45277425646782,0.074595972895622,-0.057531174272299],[0.28643295168877,0.13154245913029,-0.098785884678364]],[[-0.096284501254559,0.031120147556067,0.13241861760616],[-0.096193604171276,0.1526462584734,0.57750934362411],[-0.46263581514359,-0.57432192564011,0.34090155363083]],[[-0.30164179205894,0.43024000525475,-0.00025196286151186],[-0.30898135900497,0.0035296434070915,-0.20742174983025],[0.40614661574364,0.14459051191807,-0.18898557126522]],[[0.37557691335678,0.15362755954266,0.21650777757168],[-0.33639207482338,0.36249887943268,-0.20370024442673],[-0.17612232267857,0.10124815255404,0.63228100538254]],[[-0.082385495305061,-0.21112601459026,0.0017462322721258],[0.63777422904968,0.59884017705917,-0.57786285877228],[-0.061350371688604,-0.15702901780605,-0.65225696563721]],[[0.092887565493584,-0.026960719376802,0.14747209846973],[-0.6539568901062,-0.15391118824482,0.035425044596195],[0.55523240566254,-0.26777392625809,0.26377150416374]],[[-0.56001085042953,0.59038817882538,-0.21143038570881],[-0.36235144734383,0.55434262752533,0.062208659946918],[-0.029183089733124,-0.56672239303589,0.78693926334381]],[[-0.22869701683521,-0.14171713590622,-0.057916801422834],[0.068393625319004,-0.40098428726196,-0.23839536309242],[0.34637147188187,0.021503809839487,-0.19282846152782]],[[0.38934433460236,-0.38035035133362,0.040955353528261],[0.48221203684807,0.19942235946655,0.17474094033241],[-0.09449103474617,-0.89079236984253,0.11985878646374]],[[0.23876832425594,0.69905465841293,0.4162018597126],[0.036939315497875,-0.10469806939363,0.048087697476149],[-0.94023448228836,0.11843879520893,0.27985924482346]],[[0.26540443301201,-0.21611294150352,0.15280036628246],[-0.79838901758194,-0.35057118535042,1.1140481233597],[-0.92372596263885,0.72920042276382,0.029401499778032]],[[0.12816521525383,0.47071158885956,0.14661027491093],[0.1084415987134,0.022693252190948,-0.14937344193459],[-0.81327033042908,0.080032974481583,0.010111913084984]],[[-0.74955642223358,-0.4446864426136,0.69858264923096],[-0.065120406448841,-0.11824535578489,-0.051921728998423],[0.33715826272964,0.60851103067398,-0.21130168437958]],[[-0.04675193503499,-0.065695241093636,0.067351020872593],[0.44175970554352,0.13221058249474,0.013855567201972],[-0.22113774716854,-0.27946415543556,-0.052843615412712]],[[-0.33638495206833,-0.79220056533813,0.32713735103607],[0.30421659350395,-0.54322797060013,0.33725997805595],[0.067944996058941,-0.082094304263592,-0.70854622125626]],[[-0.33475551009178,0.48932135105133,-0.042320564389229],[-0.64883649349213,-0.35895773768425,0.52030968666077],[-0.32230669260025,0.23151417076588,0.46608012914658]],[[-0.037641257047653,0.024472853168845,0.15799385309219],[0.065528713166714,-0.40126106142998,0.27504634857178],[0.17921443283558,-0.22717967629433,-0.043134015053511]],[[0.88578081130981,-0.16867806017399,0.012782641686499],[0.17248141765594,-0.11823765188456,-0.93634247779846],[-0.013657754287124,-0.21649345755577,0.38596466183662]],[[0.054597396403551,-0.14712171256542,0.1929809898138],[-0.083185970783234,0.048050463199615,-0.11673702299595],[0.79376822710037,-0.53641909360886,-0.19743312895298]],[[-0.3725069463253,0.097987912595272,0.26110583543777],[-0.24538421630859,0.83642488718033,-0.17334553599358],[-0.10673066228628,-0.25793421268463,-0.028848793357611]],[[-0.15548694133759,0.078282549977303,-0.37094542384148],[0.19859924912453,0.11760050058365,0.25253936648369],[0.040596581995487,-0.32412341237068,0.14700272679329]],[[-0.15590399503708,0.063386157155037,0.041576601564884],[0.067243948578835,0.0091720279306173,0.083486072719097],[0.22485412657261,0.04117276892066,-0.39212870597839]],[[0.57855242490768,-0.40758126974106,0.020068734884262],[-0.68689864873886,0.74304008483887,0.32878535985947],[-0.0065001319162548,-1.3738642930984,0.04532403871417]],[[-0.16539746522903,-0.23373851180077,0.0014901544200256],[0.26224541664124,0.19866947829723,-0.079923138022423],[-0.050424564629793,-0.090129964053631,0.13408754765987]],[[-0.43991982936859,-0.13050928711891,0.16108638048172],[-0.28990316390991,0.037401050329208,-0.29411754012108],[1.0827363729477,0.22515489161015,-0.33987668156624]],[[0.20902155339718,-0.18417720496655,-0.15204599499702],[0.3204137980938,-0.48861688375473,-0.15791855752468],[0.097960084676743,0.19980379939079,0.15276952087879]],[[0.16395246982574,0.22859793901443,0.069762662053108],[-0.0041503240354359,-0.11123017966747,-0.05949155241251],[0.062511771917343,-0.42560264468193,0.084410719573498]],[[0.22759751975536,-0.68892604112625,0.80491608381271],[0.1104294732213,0.18947385251522,0.44240152835846],[-0.87881648540497,0.12257681041956,-0.33688160777092]],[[0.84913289546967,-0.094969220459461,0.94871777296066],[0.12677782773972,-0.45660570263863,-0.41873341798782],[0.068181104958057,-0.94996958971024,-0.070478811860085]],[[-0.13368280231953,0.37842032313347,0.26236614584923],[-0.25484338402748,0.55995464324951,-0.81097459793091],[0.11967350542545,0.15996323525906,-0.27994030714035]],[[0.50092470645905,0.66460692882538,0.3084100484848],[-0.51485794782639,-0.40377134084702,-0.39319628477097],[-0.59348940849304,-0.13732260465622,0.3333568572998]],[[0.23059000074863,0.14884115755558,0.1789131462574],[-0.62245452404022,0.43843588232994,-0.12994775176048],[-0.23716482520103,-0.014477081596851,0.0093845892697573]],[[-0.067142687737942,-0.45684796571732,-0.089835673570633],[0.44608795642853,0.11117424815893,0.57466524839401],[-0.58495193719864,0.75216943025589,-0.6848229765892]],[[0.76855713129044,-0.13295288383961,-0.12147235125303],[-0.06359438598156,-0.35963553190231,0.087259776890278],[-0.03099081851542,0.18980793654919,-0.32917243242264]],[[-0.36854848265648,0.10445136576891,-0.80358552932739],[0.22798569500446,0.050806447863579,0.12002073228359],[-0.094017118215561,0.48734244704247,0.27782130241394]],[[-0.091411404311657,-0.035772059112787,-0.059912037104368],[-0.82531780004501,-0.1523834168911,0.45704311132431],[-0.21470640599728,0.73548501729965,0.18859097361565]],[[0.22132423520088,0.71846884489059,0.062605321407318],[0.50149381160736,-0.38939538598061,0.23065590858459],[-0.82268565893173,-0.13841949403286,0.38592967391014]],[[0.28257709741592,-0.70752567052841,-0.017467930912971],[0.56808072328568,0.039645235985518,-0.4923475086689],[0.68397545814514,-0.18687756359577,-0.1702928841114]],[[-0.68651044368744,-0.20716086030006,0.22929437458515],[-0.17368124425411,-0.087435491383076,0.28931811451912],[-0.11434727907181,0.51490747928619,0.25171554088593]],[[0.61452376842499,0.065884664654732,0.11184000223875],[-0.0041663707233965,-0.36946418881416,-0.60329645872116],[0.14236116409302,-0.047894723713398,0.10359919816256]],[[-1.0789057016373,-0.023634796962142,-0.59294581413269],[0.038283698260784,0.2595419883728,-0.20845478773117],[0.37360444664955,-0.74098658561707,0.36780226230621]],[[0.052867040038109,-0.55132430791855,-0.83362597227097],[0.24583269655704,0.55606406927109,0.52402836084366],[0.00035785755608231,0.026080155745149,-0.020601822063327]],[[0.97817659378052,0.6552010178566,-0.22591334581375],[0.094433449208736,0.13546667993069,0.27491253614426],[-0.54077041149139,0.33755859732628,-0.54689991474152]],[[-0.38994514942169,0.67839968204498,0.70226407051086],[-0.0177564304322,-0.13322918117046,-0.17308183014393],[-0.51849246025085,-0.098521843552589,-0.048371586948633]],[[0.12700091302395,-0.31124123930931,0.23795661330223],[-0.23360247910023,0.0019748057238758,0.89745688438416],[0.033871721476316,0.10201027989388,-0.68830573558807]],[[0.50004011392593,-0.55110651254654,-0.15925453603268],[0.36749956011772,-0.24227334558964,0.043061509728432],[0.052227627485991,0.18786083161831,-0.1954383701086]],[[-0.73753470182419,0.35513490438461,-0.011822231113911],[0.11945716291666,1.2233659029007,-1.461572766304],[-0.18897777795792,-0.31132340431213,0.56697767972946]]]],"nOutputPlane":1,"kW":3,"kH":3,"bias":[0.05092691257596],"nInputPlane":128}] \ No newline at end of file diff --git a/waifu2x-caffe-gui/models/scale2.0x_model.json b/waifu2x-caffe-gui/models/scale2.0x_model.json new file mode 100644 index 0000000..bf4786f --- /dev/null +++ b/waifu2x-caffe-gui/models/scale2.0x_model.json @@ -0,0 +1 @@ +[{"weight":[[[[-0.0384068377316,-0.13892742991447,-0.074116952717304],[-0.0043417760170996,-0.13482336699963,-0.05335071310401],[0.094891287386417,0.13990740478039,0.21070368587971]]],[[[0.13741871714592,0.068341165781021,-0.049014247953892],[0.0052761328406632,-0.020446205511689,0.047407131642103],[-0.018339443951845,-0.027100933715701,-0.0057863597758114]]],[[[0.17850013077259,0.051763921976089,-0.0062319315038621],[-0.019090188667178,-0.055008850991726,-0.14032724499702],[-0.051505457609892,-0.099252879619598,0.14686788618565]]],[[[0.011584693565965,0.041832812130451,0.22183129191399],[-0.017042856663465,-0.095366142690182,0.044966705143452],[-0.001104052294977,0.0075620785355568,-0.017687179148197]]],[[[0.056010495871305,-0.014734433032572,-0.0077268448658288],[-0.0037417802959681,0.049426376819611,0.011491533368826],[0.20122179389,-0.038716461509466,0.001358984853141]]],[[[-0.11974314600229,-0.096629768610001,0.022501574829221],[-0.15950687229633,0.016204258427024,-0.0048143183812499],[-0.0058818515390158,-0.077900916337967,0.070097252726555]]],[[[0.18677078187466,0.08512531965971,-0.094906181097031],[-0.13356716930866,-0.041302714496851,0.071392714977264],[-0.052357491105795,-0.068726815283298,0.054427836090326]]],[[[0.0053220698609948,-0.045372687280178,0.0091264648362994],[-0.055567238479853,0.080604992806911,0.03300328925252],[0.028548095375299,-0.0070072221569717,-0.073056109249592]]],[[[0.062614254653454,0.020743507891893,0.090717323124409],[-0.05059414729476,-0.025958187878132,-0.056600227952003],[0.068253815174103,-0.099368497729301,0.0058380383998156]]],[[[-0.051913566887379,0.034508518874645,0.072087988257408],[0.055223364382982,0.1002099737525,0.060929197818041],[-0.027566574513912,-0.055635172873735,0.1332284361124]]],[[[0.0053810658864677,-0.034015078097582,0.039091166108847],[0.067370012402534,-0.039995789527893,0.033152762800455],[-0.077367462217808,-0.10275259613991,0.0075810179114342]]],[[[0.055246543139219,-0.021824644878507,-0.056356910616159],[-0.011086567305028,-0.034707847982645,-0.01062205247581],[0.018417455255985,-0.033489782363176,0.081017680466175]]],[[[0.069675326347351,-0.0053788628429174,-0.084019683301449],[0.012197759002447,0.069940567016602,0.0101995812729],[-0.007205271627754,-0.042496707290411,-0.00020025155390613]]],[[[0.005160924512893,-0.012700555846095,0.00043742376146838],[0.007410807069391,0.0022104119416326,-0.0013845138018951],[-0.011498863808811,0.011141174472868,-0.0059705930761993]]],[[[-0.13432091474533,-0.059144880622625,0.0071000410243869],[-0.080376535654068,-0.1028916016221,0.033781625330448],[0.22261963784695,0.15725891292095,-0.039436899125576]]],[[[-0.0054009575396776,0.016780998557806,-0.036862831562757],[0.029126670211554,0.1947954595089,0.032438453286886],[-0.041522920131683,0.078222215175629,-0.035954833030701]]],[[[-0.20466323196888,-0.0493089184165,0.044147897511721],[0.035806581377983,-0.077823840081692,-0.069676235318184],[-0.056482639163733,0.057556334882975,0.11039378494024]]],[[[-0.12130738049746,0.023681547492743,0.1482844799757],[-0.015676205977798,0.12520503997803,-0.091523543000221],[-0.018381720408797,-0.062010146677494,-0.014699504710734]]],[[[0.056062076240778,0.13458278775215,-0.015048936009407],[0.029680114239454,-0.075708620250225,-0.073742404580116],[-0.20702232420444,0.039310555905104,0.016626194119453]]],[[[0.016408381983638,-0.041782323271036,0.026805875822902],[-0.21834261715412,0.046119097620249,-0.068590626120567],[0.034240901470184,0.16751725971699,0.04184852167964]]],[[[-0.026545407250524,0.10628667473793,0.17844776809216],[-0.08607342094183,0.0073410971090198,-0.092349842190742],[0.11248207092285,-0.12235630303621,-0.071175262331963]]],[[[-0.082004234194756,-0.027182279154658,0.037735115736723],[0.1059235855937,-0.01444468088448,-0.021874720230699],[0.050808597356081,-0.057766038924456,-0.017497794702649]]],[[[-0.047046225517988,-0.091438919305801,0.016307087615132],[0.052277483046055,-0.052087541669607,0.11197429895401],[-0.037577878683805,0.11291097104549,-0.12515106797218]]],[[[-0.13993465900421,0.012330961413682,0.047452431172132],[-0.025041906163096,0.031894139945507,-0.12376341968775],[0.11259491741657,-0.10031549632549,0.18337726593018]]],[[[0.079038187861443,-0.054335225373507,-0.027360983192921],[-0.076235957443714,0.064125776290894,0.0046865176409483],[0.035985212773085,-0.07551658898592,-0.0032680626027286]]],[[[0.007575242780149,-0.01288790255785,-0.10423751920462],[-0.095097795128822,0.014446622692049,0.032480765134096],[0.18569420278072,0.014805553480983,-0.087853111326694]]],[[[-0.020989958196878,0.02020082809031,-0.037681024521589],[0.23604317009449,-0.17459669709206,-0.046965397894382],[0.16459223628044,-0.19205477833748,0.053599249571562]]],[[[0.053143266588449,-0.18212997913361,0.25205251574516],[-0.16748039424419,-0.063484288752079,-0.011665850877762],[-0.16155517101288,0.13892666995525,0.1489220559597]]],[[[-0.0051369988359511,-0.076215103268623,-0.024128202348948],[-0.039336007088423,-0.12557350099087,-0.033354476094246],[-0.0027135596610606,0.0074726156890392,-0.052615191787481]]],[[[-0.0074770995415747,0.11980102956295,-0.13483113050461],[0.069204583764076,-0.051610339432955,-0.022149598225951],[-0.028977453708649,-0.015657532960176,0.059399850666523]]],[[[-0.049020010977983,-0.066347807645798,0.06056047976017],[-0.076703995466232,0.062893152236938,-0.10911896079779],[-0.075646944344044,0.2010887414217,0.02662380412221]]],[[[0.23472860455513,0.073280669748783,-0.0038808749523014],[-0.11620356142521,0.087821863591671,-0.15155136585236],[-0.031747400760651,0.053550235927105,-0.13821476697922]]]],"nOutputPlane":32,"kW":3,"kH":3,"bias":[0.0033591971732676,-0.11600551754236,0.0016319995047525,-0.17638401687145,-0.11129533499479,0.042587392032146,0.0034673560876399,-0.0061707934364676,-0.045175999403,-0.091385960578918,0.0063353884033859,-0.011279388330877,-0.044397205114365,-0.0043302457779646,0.003554307622835,-0.21644094586372,0.049074459820986,-0.022097304463387,0.0014598603593186,0.0042208153754473,0.0033948738127947,-0.0016832939581946,-0.00026096109650098,-0.026219172403216,-0.001475803903304,-0.0090352799743414,0.0038857976906002,-0.00012081145541742,0.099738404154778,-0.016280902549624,-0.016022359952331,0.0011439843801782],"nInputPlane":1},{"weight":[[[[0.0035268110223114,0.10892452299595,0.03225726634264],[-0.12277691066265,-0.034379631280899,0.12627245485783],[0.1893435716629,0.06185595318675,-0.0087701240554452]],[[0.13241472840309,-0.16741980612278,0.10158104449511],[-0.043994903564453,0.029231684282422,0.00096451857825741],[0.024295058101416,-0.021223833784461,0.018202168866992]],[[0.085882619023323,-0.023659788072109,-0.0040082959458232],[0.10776330530643,-0.1922572851181,0.16861279308796],[-0.092613525688648,0.088233157992363,-0.064787976443768]],[[0.11663594096899,-0.003961400128901,-0.22740466892719],[0.15481273829937,0.13339568674564,-0.0097738765180111],[-0.18068976700306,0.0089379092678428,0.044106882065535]],[[-0.0080333082005382,-0.015772016718984,-0.008610438555479],[0.018116535618901,-0.0085581913590431,-0.060065392404795],[-0.030854854732752,-0.092844866216183,0.10228421539068]],[[-0.096143290400505,-0.066340900957584,-0.14965982735157],[-0.008109669201076,0.15029935538769,0.023678181692958],[0.026510532945395,0.14524298906326,0.0087879626080394]],[[-0.0047016032040119,0.13069671392441,0.021494790911674],[0.041267946362495,0.087743364274502,0.017705237492919],[-0.13533248007298,-0.16309605538845,0.054762918502092]],[[-0.02025156468153,-0.087965063750744,0.0030181345064193],[0.049317713826895,0.059981986880302,-0.075897291302681],[-0.02650011330843,0.04033013433218,0.013382929377258]],[[0.080092325806618,0.029595524072647,0.16063770651817],[0.013604598119855,-0.060999482870102,-0.20106357336044],[-0.039897512644529,0.075953505933285,-0.053707741200924]],[[0.083138436079025,0.044234991073608,0.11111648380756],[-0.1539835780859,0.061757620424032,0.085750378668308],[-0.13567090034485,-0.052218601107597,0.029113680124283]],[[0.014233037829399,0.0030094403773546,-0.048845209181309],[-0.10715096443892,0.0052027679048479,0.027420809492469],[-0.043345514684916,0.13958431780338,0.016049997881055]],[[-0.062379442155361,-0.068821057677269,0.045727226883173],[0.15832476317883,-0.062685325741768,-0.012933102436364],[0.020788947120309,-0.079440467059612,-0.12138560414314]],[[-0.062725052237511,0.052389971911907,-0.052298475056887],[-0.062712840735912,0.094320937991142,-0.020239178091288],[0.016485165804625,0.021930372342467,0.036209791898727]],[[0.070077061653137,0.10559940338135,-0.075721822679043],[0.031121855601668,-0.027459440752864,-0.011823350563645],[-0.093481309711933,-0.0037409842479974,-0.025723103433847]],[[-0.071758821606636,-0.036118164658546,0.0057465122081339],[-0.099052749574184,-0.06890432536602,0.054011750966311],[0.17858020961285,0.024943294003606,-0.053583607077599]],[[-0.14411853253841,0.31905218958855,0.19482409954071],[-0.19813820719719,-0.022984365001321,-0.0085835661739111],[-0.25350517034531,-0.16624034941196,-0.023719059303403]],[[-0.042172070592642,-0.043976373970509,-0.16418543457985],[0.050440143793821,0.0028909305110574,-0.16485337913036],[0.099139831960201,0.077021665871143,-0.24819603562355]],[[-0.12394567579031,0.0086968662217259,0.059786558151245],[-0.058541364967823,-0.0022425451315939,-0.0030951073858887],[-0.076959021389484,0.040955122560263,0.022488309070468]],[[0.0032010723371059,-0.030827101320028,-0.10682108998299],[0.086579822003841,-0.044126015156507,0.027734082192183],[0.012235903181136,-0.092172712087631,-0.094183459877968]],[[-0.022875063121319,-0.055560171604156,0.0035195595119148],[-0.13121528923512,-0.024419561028481,0.065130859613419],[0.087169423699379,-0.0089353639632463,0.050239615142345]],[[-0.14181540906429,0.05050778016448,-0.15038074553013],[-0.0023824837990105,0.054311957210302,-0.1177336499095],[0.084745340049267,0.054517030715942,0.17387022078037]],[[0.089824058115482,-0.068464107811451,-0.067316219210625],[0.1030695065856,0.037962164729834,-0.092497006058693],[0.03455712646246,0.0031892079859972,0.012220720760524]],[[-0.055178768932819,-0.11129549890757,-0.083807870745659],[0.14700381457806,0.062916465103626,-0.050615176558495],[0.031674902886152,0.24208888411522,-0.1294379979372]],[[0.025920700281858,0.018622156232595,-0.0055227233096957],[-0.19483391940594,0.03968245908618,0.03448199480772],[-0.054704003036022,-0.030343787744641,-0.046353969722986]],[[-0.11610799282789,0.15694253146648,-0.21995756030083],[-0.089555829763412,0.081872321665287,-0.01372423581779],[0.060584232211113,-0.11569693684578,0.14407314360142]],[[0.12077128887177,0.099619448184967,0.14549812674522],[0.068152941763401,0.049074690788984,-0.11442410200834],[-0.18490950763226,-0.14123573899269,-0.08335480093956]],[[0.1052620857954,-0.19318254292011,0.09729315340519],[0.018560340628028,-0.071407571434975,0.036793418228626],[-0.20901140570641,-0.035976514220238,-0.22829306125641]],[[0.010393037460744,-0.070637367665768,-0.06762070953846],[-0.011642653495073,-0.034256186336279,-0.019331464543939],[0.022944899275899,-0.098892383277416,0.10404443740845]],[[0.079952605068684,-0.071289978921413,-0.09573120623827],[0.16848276555538,0.068110339343548,-0.14729052782059],[0.11444433778524,0.19762454926968,0.061744596809149]],[[-0.024728300049901,-0.10307916253805,0.038590520620346],[-0.062231041491032,-0.073960989713669,0.020772630348802],[-0.0014221463352442,0.12580914795399,-0.10265354812145]],[[-0.014983530156314,-0.30818501114845,0.17109023034573],[-0.031747795641422,-0.22208864986897,-0.032668363302946],[-0.032246690243483,-0.026438167318702,-0.08807335048914]],[[-0.22556824982166,-0.0048252618871629,0.15897960960865],[-0.096358969807625,-0.060476470738649,-0.044331263750792],[-0.071633704006672,0.18587498366833,0.19831414520741]]],[[[-0.092379413545132,-0.063074231147766,-0.0054044183343649],[0.030814418569207,-0.052298326045275,0.034703593701124],[0.082380786538124,0.084660269320011,-0.082510732114315]],[[-0.082599490880966,0.097012639045715,0.02747980505228],[-0.007752601057291,-0.077230766415596,-0.097304098308086],[-0.091858476400375,-0.087928123772144,-0.15428924560547]],[[-0.054543923586607,0.072704143822193,0.12146773934364],[-0.020365156233311,0.093864820897579,0.0018958288710564],[0.0300701726228,-0.19985754787922,-0.020313907414675]],[[-0.04579795897007,-0.15286548435688,0.02726636826992],[-0.094244197010994,0.12944494187832,0.00080241134855896],[-0.11566615104675,-0.18803496658802,0.015568934381008]],[[0.01085595972836,-0.18116953969002,-0.22959312796593],[-0.086866401135921,0.0036718451883644,-0.1319025605917],[-0.069889403879642,-0.071850456297398,0.016446461901069]],[[0.038274310529232,-0.0028508475515991,0.15889103710651],[0.12152791023254,0.093629628419876,0.1184196844697],[0.024599153548479,0.10337740927935,0.21319824457169]],[[0.0487448759377,0.12202215194702,-0.083416178822517],[0.02291121520102,-0.1799920797348,0.056573420763016],[0.023260874673724,0.049189675599337,-0.030655927956104]],[[0.066533140838146,-0.08111859112978,-0.071457296609879],[-0.093643970787525,0.13794347643852,-0.1304587572813],[-0.061110302805901,0.10638021677732,0.096757970750332]],[[-0.039444267749786,0.053245257586241,-0.046191725879908],[-0.10885888338089,-0.17756347358227,0.14489057660103],[0.19168607890606,-0.074866905808449,-0.018287733197212]],[[-0.22200986742973,-0.042122602462769,0.08868832886219],[-0.20830400288105,-0.10660333186388,-0.16894102096558],[-0.084010601043701,-0.11772659420967,0.16468422114849]],[[-0.018174914643168,-0.16009804606438,0.12647876143456],[0.0095198256894946,0.012783763930202,0.002184254815802],[-0.1001875475049,0.072219349443913,-0.076348915696144]],[[0.0096484804525971,-0.11141476780176,0.11862728744745],[-0.099891468882561,0.0011238468578085,-0.074283741414547],[0.026039611548185,0.055369932204485,0.04900524020195]],[[-0.070090360939503,-0.057426430284977,-0.014284737408161],[-0.021367553621531,0.18947148323059,-0.18841595947742],[0.020988972857594,0.08404516428709,0.029449764639139]],[[0.17879892885685,0.0026163593865931,-0.275654733181],[-0.08413989841938,0.012356142513454,0.063439905643463],[0.01086821872741,0.096959196031094,-0.0090756015852094]],[[0.11301971226931,0.0089520029723644,0.031637988984585],[-0.053273312747478,0.057582952082157,-0.049681711941957],[-0.081039935350418,0.055864676833153,-0.09725708514452]],[[-0.0068881204351783,0.082386128604412,-0.057442467659712],[-0.19023261964321,-0.14634275436401,-0.075910858809948],[-0.053526233881712,-0.18663384020329,-0.013825044035912]],[[0.057304244488478,-0.069315135478973,0.048373501747847],[0.017414633184671,0.11698476970196,-0.030645150691271],[0.0027344801928848,0.074461579322815,0.040886025875807]],[[-0.05631285533309,0.0088793449103832,-0.01017855014652],[-0.10502064228058,0.050140719860792,-0.15412697196007],[0.011601633392274,0.074094027280807,-0.061796799302101]],[[0.0016722845612094,0.080217942595482,0.062053848057985],[0.039944473654032,-0.14474953711033,-0.05091842263937],[0.090062640607357,0.042388971894979,-0.087848037481308]],[[0.010406564921141,-0.06616897881031,-0.0068260715343058],[0.034524258226156,0.00030750245787203,-0.12447428703308],[0.078302279114723,-0.0016600408125669,0.08512044698]],[[0.023221453651786,0.088177844882011,-0.063694901764393],[0.021478425711393,0.040850721299648,-0.013847633264959],[0.021315122023225,-0.10864389687777,0.0065427753143013]],[[-0.02768149971962,-0.035448234528303,-0.018745327368379],[-0.010438090190291,-0.10069531947374,-0.012044443748891],[-0.0090300682932138,0.079324051737785,0.0774255245924]],[[-0.091650702059269,0.031299035996199,-0.057779341936111],[0.003794604446739,0.14489707350731,-0.033412363380194],[-0.054308816790581,-0.0022062084171921,0.073863498866558]],[[0.10926956683397,-0.21093052625656,-0.027885546907783],[-0.024441193789244,0.039175745099783,-0.055960074067116],[-0.042010322213173,-0.037897277623415,-0.0055946395732462]],[[0.052284944802523,-0.011528993956745,0.077976822853088],[-0.087158121168613,-0.021442590281367,0.10937338322401],[0.027277143672109,-0.13854794204235,0.033709149807692]],[[-0.15975391864777,-0.058546457439661,0.073907807469368],[0.10335632413626,0.046321392059326,-0.12731693685055],[0.013577685691416,-0.10703365504742,0.0037947136443108]],[[0.07350766658783,0.051921404898167,-0.041046377271414],[-0.069965079426765,-0.058184511959553,-0.006325941067189],[0.11794528365135,-0.070835120975971,-0.014808992855251]],[[0.013476775027812,0.0070462496951222,-0.022169683128595],[-0.14016292989254,-0.026105631142855,0.0595025382936],[0.010705220513046,0.040662247687578,-0.0051452624611557]],[[0.12114569544792,0.078753814101219,0.034498609602451],[0.16122110188007,0.031391367316246,-0.0044239279814065],[0.08694402128458,0.33156162500381,0.25843077898026]],[[-0.0068920170888305,-0.19352957606316,0.10643564164639],[0.018452746793628,-0.095131076872349,0.13567598164082],[0.036471337080002,-0.019285343587399,0.023724213242531]],[[0.016321644186974,-0.044250342994928,-0.015750709921122],[-0.088919170200825,0.10269171744585,-0.031334389001131],[-0.046839002519846,0.033696159720421,-0.095352552831173]],[[-0.043608516454697,-0.051386058330536,-0.046835668385029],[0.088498882949352,-0.012664722278714,-0.010217119939625],[-0.021924965083599,-0.084510892629623,0.10023487359285]]],[[[-0.1378012150526,-0.075606726109982,-0.11272525042295],[-0.14584171772003,-0.1128836274147,-0.0097780367359519],[0.022054815664887,-0.012508846819401,0.10927403718233]],[[-0.072248794138432,-0.046983115375042,0.12485928833485],[0.01921103708446,-0.26571989059448,-0.0043287198059261],[0.047718644142151,-0.019705355167389,-0.11665556579828]],[[0.076691038906574,-0.25283429026604,0.22753031551838],[0.071598544716835,-0.1835930198431,0.11108994483948],[-0.091535232961178,-0.26271095871925,0.1713712066412]],[[0.069512829184532,0.47374573349953,-0.27253469824791],[-0.0054452968761325,0.12050976604223,0.14612644910812],[-0.31789991259575,-0.26759904623032,-0.066293247044086]],[[0.13707239925861,-0.060474779456854,0.04711976647377],[-0.23596167564392,0.09160266071558,-0.13615250587463],[-0.028115885332227,-0.019356317818165,0.046688728034496]],[[0.019265757873654,-0.12051824480295,0.040811322629452],[0.049631468951702,-0.065612301230431,-0.033382546156645],[-0.13317845761776,-0.062657609581947,-0.08573804050684]],[[0.017507147043943,-0.29099708795547,0.10105288773775],[0.11069016158581,-0.10725043714046,0.079694859683514],[0.038023550063372,-0.094476759433746,0.13540250062943]],[[-0.16013650596142,0.14168234169483,0.026683337986469],[-0.24231539666653,-0.010021940805018,0.16203166544437],[0.094928592443466,-0.043937109410763,-0.18356117606163]],[[0.02844606526196,0.038871392607689,-0.20979878306389],[0.04294764995575,0.016603281721473,0.13054449856281],[-0.10902859270573,-0.12746512889862,-0.14780333638191]],[[0.00038307646173052,0.083324946463108,-0.014069863595068],[0.046972654759884,-0.065895572304726,-0.1190577968955],[-0.0030668624676764,0.10402259230614,0.10775505006313]],[[0.072492100298405,0.26365810632706,0.072230957448483],[0.093907579779625,-0.11736868321896,0.051434393972158],[-0.12743185460567,-0.018365984782577,0.031198548153043]],[[0.17387560009956,-0.024016285315156,0.26575723290443],[-0.048792913556099,-0.19501404464245,-0.058379419147968],[0.035654675215483,0.050757564604282,-0.17458301782608]],[[0.081152483820915,-0.056373178958893,0.11976757645607],[0.082710780203342,-0.25691017508507,-0.29404172301292],[0.055535729974508,-0.05121772736311,0.02960642054677]],[[-0.062546111643314,0.11561668664217,-0.0066073681227863],[0.03244224563241,0.029105575755239,-0.15975335240364],[0.068598404526711,0.0098627982661128,-0.038240041583776]],[[0.11713294684887,-0.038933370262384,0.14135447144508],[-0.17300298810005,-0.047965481877327,0.21967332065105],[-0.16685606539249,0.031881414353848,-0.023952025920153]],[[-0.042285710573196,0.079104609787464,-0.082709319889545],[-0.017958099022508,-0.15606939792633,-0.27908828854561],[-0.029197352007031,-0.19433073699474,-0.18699637055397]],[[-0.062388818711042,0.062110919505358,-0.0057304301299155],[0.26953652501106,-0.0475720949471,-0.083438046276569],[-0.068593874573708,-0.026571927592158,-0.062974259257317]],[[0.062909699976444,0.14771407842636,0.017988076433539],[-0.099875316023827,-0.083955377340317,0.047776091843843],[-0.11285523325205,-0.073144152760506,0.05200918763876]],[[-0.095047898590565,-0.24799203872681,0.28108596801758],[0.10991411656141,-0.045478392392397,0.034141108393669],[-0.040123213082552,0.052300877869129,-0.090432070195675]],[[0.059230525046587,0.021650364622474,-0.063168540596962],[0.2026114910841,0.038819465786219,-0.13083705306053],[0.082831256091595,-0.039032500237226,-0.11550708115101]],[[0.021568391472101,0.020435037091374,-0.020348945632577],[-0.14017644524574,0.16529116034508,-0.019087830558419],[-0.1477920114994,0.087877087295055,-0.25125139951706]],[[0.036255430430174,-0.14046631753445,-0.10813307762146],[0.088997967541218,-0.094635106623173,0.13091079890728],[-0.2017420977354,0.17342877388,-0.14292097091675]],[[-0.13851588964462,0.17552684247494,-0.11735989153385],[-0.053481366485357,-0.17148724198341,0.037921469658613],[0.057297106832266,0.040892027318478,-0.002952093956992]],[[0.048546265810728,-0.1044674217701,-0.070647992193699],[0.2393898665905,-0.03860642015934,-0.23427799344063],[0.048390284180641,0.1819983869791,-0.052852809429169]],[[-0.083153158426285,0.052017483860254,-0.012735368683934],[-0.26955446600914,-0.11134492605925,0.1401184797287],[-0.025067884474993,0.25829544663429,0.10340640693903]],[[0.11696638911963,0.063324071466923,0.036698170006275],[0.011789125390351,-0.088352113962173,0.001071352395229],[-0.15158696472645,-0.12170474976301,-0.134930357337]],[[0.064437255263329,-0.08485408872366,0.12566997110844],[0.26111030578613,-0.046242587268353,0.010810481384397],[-0.072434991598129,0.038690183311701,0.0018918206915259]],[[0.037733357399702,0.091564804315567,-0.18227934837341],[-0.13717792928219,-0.037610292434692,-0.17295661568642],[-0.11171010881662,0.03737498819828,0.26888436079025]],[[-0.021308057010174,-0.1017801836133,-0.0018124715425074],[-0.11576261371374,0.079819977283478,-0.010875162668526],[-0.01378458365798,-0.17948657274246,0.069209359586239]],[[0.12857231497765,0.026566525921226,0.28435179591179],[0.095607720315456,-0.19529989361763,-0.22376243770123],[-0.14799071848392,-0.084887869656086,0.14471781253815]],[[0.0072185299359262,0.082585066556931,0.057117305696011],[-0.044009640812874,0.072837769985199,0.061331104487181],[-0.1039367094636,-0.094365209341049,-0.0095175392925739]],[[0.093615420162678,-0.28932011127472,-0.11281289160252],[-0.094011314213276,-0.015365133062005,-0.2720545232296],[0.18516671657562,-0.037692971527576,0.16978886723518]]],[[[-0.0093702273443341,-0.011258537881076,0.033962309360504],[-0.13784910738468,-0.48799833655357,-0.10332433134317],[-0.087528981268406,-0.017619501799345,-0.033296667039394]],[[-0.074722208082676,0.069818668067455,0.11000655591488],[0.088204577565193,-0.19050703942776,-0.047746323049068],[-0.085804425179958,0.001579970237799,0.17149457335472]],[[0.11591413617134,-0.083731390535831,-0.15429922938347],[-0.23321548104286,-0.31109163165092,-0.0046034827828407],[-0.018261017277837,-0.087181232869625,0.13306179642677]],[[-0.16480749845505,-0.01523947622627,-0.048823066055775],[0.42219451069832,-0.18852066993713,-0.23173154890537],[0.065043926239014,0.25450897216797,-0.10862766206264]],[[-0.06304245442152,0.016494257375598,0.039522986859083],[-0.020239911973476,-0.01063943374902,0.10592469573021],[0.037648495286703,-0.0071605010889471,0.030774073675275]],[[0.020222503691912,-0.057235404849052,-0.11911180615425],[-0.16050145030022,0.1095868870616,-0.024997090920806],[0.19484013319016,-0.11168336868286,0.093958333134651]],[[0.014533795416355,-0.19023042917252,0.043694254010916],[-0.10003406554461,0.013130616396666,-0.25916260480881],[-0.04350621253252,0.047182157635689,0.21767963469028]],[[-0.0060312664136291,0.12621131539345,-0.060773983597755],[-0.023376313969493,-0.11411683261395,0.16821521520615],[-0.083706848323345,-0.034003805369139,0.061157416552305]],[[0.081269256770611,0.04090465977788,0.1031366288662],[0.1341822296381,0.11699368059635,-0.14348414540291],[-0.066074460744858,-0.053118955343962,-0.085194051265717]],[[0.0098866997286677,-0.025080678984523,-0.051301781088114],[0.055365674197674,-0.056556567549706,0.099790289998055],[-0.088283881545067,0.016394490376115,0.013611254282296]],[[-0.00166087935213,-0.091502584517002,0.097673624753952],[0.015179144218564,-0.0041492939926684,-0.1570121794939],[0.21569599211216,0.021672276780009,-0.1015335097909]],[[0.0036635368596762,0.019716963171959,0.014277946203947],[-0.080400660634041,0.15813452005386,0.0534105040133],[-0.0065830824896693,0.0014895057538524,-0.21690759062767]],[[0.0020739457104355,-0.051796898245811,0.003563467413187],[0.037941846996546,0.013182160444558,-0.09148845076561],[-0.1213955655694,-0.0080609107390046,0.093883171677589]],[[0.069522581994534,-0.13736027479172,0.061393730342388],[-0.097068957984447,0.075466677546501,0.05344120785594],[0.044835690408945,0.011466450989246,0.026258885860443]],[[-0.14583283662796,0.10968122631311,0.051732409745455],[0.047930803149939,-0.28516536951065,-0.43504017591476],[0.097428873181343,-0.015869198367,-0.085964486002922]],[[-0.25494232773781,0.38341608643532,-0.16515319049358],[0.24140353500843,0.42002582550049,0.32929784059525],[-0.4163076877594,-0.062992803752422,-0.21340468525887]],[[0.040368232876062,0.060841079801321,-0.15642015635967],[-0.11301375925541,0.083659075200558,0.13705393671989],[0.15574337542057,-0.11941028386354,-0.084766030311584]],[[0.27676594257355,0.15553565323353,0.018396167084575],[-0.27813133597374,-0.15097486972809,0.16957731544971],[0.034067068248987,-0.111462213099,0.027299856767058]],[[0.25200736522675,0.13240499794483,0.055828105658293],[-0.068551927804947,-0.2372782677412,-0.00066243333276361],[0.082011505961418,-0.13736738264561,-0.071920044720173]],[[0.12535564601421,0.14128650724888,0.22274568676949],[-0.21677583456039,0.055287670344114,-0.63909703493118],[-0.017964694648981,-0.1498139500618,0.19750194251537]],[[-0.010914082638919,-0.17952577769756,-0.044279143214226],[0.028190130367875,-0.1154290959239,-0.17886891961098],[0.0064120162278414,0.035163342952728,-0.067872881889343]],[[0.14309041202068,-0.19084447622299,-0.025399027392268],[-0.11950327455997,0.10232674330473,-0.019550643861294],[0.10757920891047,-0.048852097243071,0.021347060799599]],[[-0.078183755278587,-0.0020919933449477,-0.057188682258129],[-0.11459784954786,-0.012711836025119,0.022413354367018],[0.11455311626196,0.13478597998619,0.050350178033113]],[[-0.00059032865101472,-0.045662824064493,-0.038064863532782],[-0.16461251676083,0.00909916870296,0.075232729315758],[0.12718363106251,-0.05822354182601,0.12893404066563]],[[-0.043729692697525,-0.07794988155365,0.1392914801836],[0.061207357794046,0.032161634415388,-0.1711545586586],[-0.013115362264216,0.042914476245642,0.032919686287642]],[[0.051610972732306,0.12833227217197,-0.010271342471242],[0.032849416136742,-0.053083341568708,-0.16353683173656],[-0.067076951265335,-0.003287271829322,0.058387700468302]],[[0.10952358692884,-0.46056029200554,0.14874765276909],[0.13976629078388,-0.32311552762985,0.061990465968847],[0.1581364274025,-0.055769346654415,-0.059173882007599]],[[0.024652525782585,-0.067337833344936,0.10683876276016],[-0.081283651292324,-0.30644762516022,-0.37944954633713],[0.041282128542662,-0.069083720445633,0.12921683490276]],[[-0.10911574214697,0.034810155630112,0.024393860250711],[-0.041964441537857,-0.068942554295063,0.11825890094042],[0.1347054541111,0.11004018038511,-0.12062245607376]],[[-0.086174465715885,-0.021756561473012,0.088745713233948],[0.11370599269867,0.0097203766927123,-0.1118051931262],[-0.0066655636765063,0.011738539673388,-0.0089469477534294]],[[-0.037815846502781,-0.14130789041519,0.077357277274132],[0.05791436880827,0.051857702434063,0.10733440518379],[0.0086840055882931,0.030228683724999,0.061265587806702]],[[-0.29221791028976,-0.29644295573235,0.0099203875288367],[-0.47520858049393,-0.073522165417671,-0.0290831848979],[-0.014228554442525,0.012321148067713,0.079945467412472]]],[[[0.030234597623348,0.021714076399803,-0.062823675572872],[-0.081554785370827,0.1168280094862,0.034751195460558],[0.027981104329228,-0.092768453061581,0.097694560885429]],[[-0.00896733161062,0.086538583040237,-0.069467157125473],[-0.014492553658783,0.063356146216393,-0.074442096054554],[-0.029044024646282,-0.018536137416959,0.11701290309429]],[[0.12525615096092,-0.1019179970026,0.096068009734154],[-0.063760928809643,0.044396605342627,-0.0069833253510296],[-0.079243272542953,-0.029290663078427,-0.13647764921188]],[[0.19599191844463,-0.0044048218987882,0.047885987907648],[0.10535588115454,-0.0012219846248627,-0.0057772798463702],[0.041007544845343,0.033676940947771,0.088448151946068]],[[0.027877978980541,-0.01927755959332,-0.068916879594326],[-0.0086632929742336,-0.046525292098522,-0.12886807322502],[-0.13535922765732,-0.081376761198044,0.003335154382512]],[[0.16483713686466,-0.096257321536541,-0.049935270100832],[0.046509489417076,0.052725177258253,0.12235497683287],[0.15595257282257,0.064820371568203,0.13036276400089]],[[0.0078356405720115,-0.07445851713419,-0.12225766479969],[0.14269152283669,0.017322953790426,-4.618060120265e-05],[-0.11120258271694,-0.0043867412023246,0.068002454936504]],[[-0.11506851017475,0.0091258613392711,0.018494414165616],[0.14060784876347,-0.0074996487237513,0.04535835236311],[-0.23531240224838,0.01164644677192,0.093015447258949]],[[0.1336190700531,-0.012368179857731,-0.026768583804369],[0.00357486307621,-0.047084260731936,0.00049922708421946],[0.085799761116505,0.066473469138145,-0.025158299133182]],[[-0.059580896049738,-0.0023382485378534,0.023218434303999],[-0.050756029784679,0.13952793180943,-0.10234517604113],[0.00076569453813136,-0.17773827910423,-0.22914934158325]],[[0.1493451744318,0.11303363740444,-0.21608866751194],[0.1362439841032,0.057796936482191,0.052924692630768],[-0.067012660205364,-0.029134273529053,-0.022767458111048]],[[0.088081836700439,0.015295640565455,0.1122547313571],[0.11716187000275,0.011602289974689,-0.20351538062096],[0.097001612186432,-0.20271454751492,0.11742081493139]],[[-0.030356103554368,-0.088511109352112,-0.10854498296976],[0.073443710803986,0.092316433787346,0.077808037400246],[-0.0024310015141964,-0.01626899279654,-0.0032617959659547]],[[-0.14723333716393,0.033888395875692,0.048837725073099],[0.10060375928879,0.16531309485435,0.059848643839359],[-0.083031550049782,-0.013140209950507,-0.089991860091686]],[[0.0079524591565132,-0.12318026274443,0.014615492895246],[0.025878673419356,0.12958261370659,-0.062120147049427],[-0.05384286865592,-0.030451726168394,0.088452406227589]],[[0.043219637125731,-0.003719644388184,0.030623717233539],[-0.10176859050989,-0.08895118534565,-0.039418313652277],[-0.003815115429461,0.073877640068531,0.05797865986824]],[[0.026423195376992,-0.028716333210468,-0.10712190717459],[0.092505268752575,0.076362550258636,0.062363665550947],[-0.013291365467012,-0.0039520487189293,-0.054740246385336]],[[0.048868227750063,0.22791355848312,-0.07443542778492],[-0.1057653054595,0.081670470535755,0.05796205252409],[-0.029717771336436,-0.030880566686392,0.069884978234768]],[[-0.14435562491417,0.17557768523693,0.041624486446381],[0.12714029848576,0.1202696710825,-0.22950753569603],[0.06080611422658,-0.20842085778713,0.0056496509350836]],[[0.0088347941637039,0.058500342071056,0.081485442817211],[-0.055919740349054,-0.025534244254231,-0.034512083977461],[-0.0051330565474927,-0.15727566182613,0.035955123603344]],[[-0.029097156599164,0.047347173094749,0.02634684741497],[-0.07157414406538,-0.027382716536522,-0.0080096339806914],[-0.024485021829605,0.031586322933435,0.059855043888092]],[[0.11521881818771,-0.11118544638157,-0.039498187601566],[0.094123460352421,0.023923721164465,0.065622873604298],[0.11921606212854,-0.034126620739698,-0.072044022381306]],[[0.054249551147223,-0.04351082444191,-0.027472048997879],[0.24045163393021,-0.036108341068029,-0.10844542831182],[0.12391560524702,0.018407972529531,-0.040971770882607]],[[-0.04081467166543,-0.037138715386391,0.065878428518772],[0.033538974821568,-0.072553053498268,0.012924279086292],[0.034393444657326,0.055769264698029,0.095740899443626]],[[-0.03290444239974,-0.069392174482346,0.038515392690897],[-0.016482381150126,0.0027556256391108,-0.15247665345669],[0.11630386859179,-0.028480894863605,0.073074415326118]],[[0.084196962416172,0.013909844681621,-0.014461684040725],[0.060336548835039,0.086463458836079,0.0014492766931653],[0.059415061026812,0.099210560321808,-0.16056525707245]],[[0.077806897461414,-0.036285929381847,-0.15356516838074],[0.1299981623888,-0.096337683498859,-0.043438956141472],[0.033385083079338,-0.048390157520771,-0.071726642549038]],[[-0.057718873023987,-0.023907661437988,0.19904279708862],[-0.058533921837807,-0.02502666041255,-0.13829775154591],[0.084107786417007,-0.05153226479888,0.09170550853014]],[[0.13213935494423,0.052109897136688,0.075485296547413],[0.034125614911318,0.13790956139565,0.11966030299664],[-0.0095810508355498,-0.016040336340666,0.17268027365208]],[[0.049185559153557,0.093765139579773,-0.14266784489155],[0.049556229263544,0.12865078449249,-0.027326636016369],[-0.12264799326658,-0.025648469105363,-0.13558451831341]],[[-0.093650132417679,-0.032732725143433,0.16844613850117],[-0.13240349292755,0.024096107110381,-0.022062912583351],[-0.066501520574093,0.066282175481319,0.077227503061295]],[[0.16411562263966,-0.11068028956652,0.038871802389622],[0.0087526338174939,-0.0062461225315928,0.037995707243681],[0.046633291989565,-0.14868783950806,-0.17140844464302]]],[[[-0.071982778608799,0.099693983793259,-0.18076486885548],[-0.021227411925793,0.085765540599823,-0.057042088359594],[-0.037583734840155,-0.060983642935753,-0.21775324642658]],[[-0.35417857766151,-0.042361337691545,-0.057797066867352],[0.066876262426376,-0.099541760981083,0.020081168040633],[0.039544172585011,0.11172413080931,0.062529176473618]],[[-0.025251479819417,-0.13125205039978,-0.059719789773226],[-0.24887152016163,-0.044999558478594,0.03642475232482],[-0.12436527758837,0.028616791591048,0.075778171420097]],[[-0.24137595295906,0.075517475605011,-0.091231413185596],[-0.031767323613167,0.012962964363396,0.23557075858116],[-0.027535852044821,-0.03857135027647,-0.081380389630795]],[[-0.079037696123123,-0.013694551773369,-0.039194647222757],[0.059769045561552,0.011310108937323,-0.061800245195627],[0.051267091184855,0.27120998501778,-0.0024287898559123]],[[-0.08092088252306,0.10600444674492,0.073272585868835],[-0.056977141648531,0.046614933758974,0.070793278515339],[0.052708648145199,-0.03718202188611,0.046648092567921]],[[-0.14099842309952,-0.14023734629154,0.15917418897152],[-0.1059717014432,-0.055057525634766,-0.038939598947763],[-0.050585597753525,-0.18380555510521,-0.073451064527035]],[[-0.0037722056731582,-0.031926982104778,0.077059485018253],[-0.022496374323964,0.051672365516424,-0.028205065056682],[0.059362329542637,-0.16137240827084,0.065647058188915]],[[0.039998661726713,-0.064924523234367,-0.0063019921071827],[0.055641818791628,0.15280777215958,0.058125279843807],[-0.028389103710651,-0.012497718445957,-0.23841884732246]],[[-0.046938572078943,-0.19054414331913,0.04102323576808],[-0.14985659718513,0.071881428360939,0.058923847973347],[0.10415104031563,-0.033945430070162,0.039978504180908]],[[0.047870941460133,0.0057012946344912,-0.10423264652491],[0.022850643843412,-0.0027975849807262,-0.082379512488842],[-0.16251936554909,0.018516549840569,0.10398894548416]],[[0.039273947477341,-0.060457583516836,-0.00873479899019],[-0.11742414534092,0.018972935155034,-0.049520302563906],[0.18059402704239,0.069689877331257,0.040152426809072]],[[-0.12067613750696,-0.05348963290453,-0.015498852357268],[-0.05175369605422,-0.046116650104523,-0.091174244880676],[0.13673637807369,0.27288311719894,-0.095778301358223]],[[-0.10890310257673,0.037600547075272,0.045974217355251],[-0.081379733979702,0.075888194143772,0.023156953975558],[0.10789570212364,-0.04119436442852,-0.0097309434786439]],[[0.10710494220257,0.073712170124054,-0.16832987964153],[0.07010193914175,0.045388020575047,-0.11127655953169],[0.10427733510733,0.050267022103071,-0.22423660755157]],[[-0.26907798647881,-0.22298856079578,-0.0015862393192947],[0.037233605980873,-0.18928198516369,-0.067510053515434],[0.60866189002991,0.18241387605667,-0.050434667617083]],[[0.13231152296066,-0.10469222068787,0.078788869082928],[-0.1827200204134,-0.14618457853794,0.017123013734818],[0.0888347402215,-0.051808077841997,-0.10558675974607]],[[0.060000900179148,-0.090812467038631,-0.11256098747253],[0.12067627161741,0.027900563552976,-0.11763851344585],[0.011901764199138,0.13271191716194,0.039238464087248]],[[-0.15983389317989,0.14612132310867,-0.10930702835321],[-0.0057361186482012,-0.049018673598766,-0.024171929806471],[-0.031662009656429,0.0042013563215733,-0.1990631967783]],[[-0.06061863899231,-0.14500017464161,0.041405662894249],[0.14569537341595,-0.0064761284738779,-0.13818830251694],[0.17855320870876,0.05337581038475,-0.28291937708855]],[[-0.10805176943541,-0.0069118314422667,0.11998946219683],[-0.19646954536438,-0.10575374215841,0.22240102291107],[-0.32123392820358,-0.12140320986509,0.075656183063984]],[[-0.0063123269937932,-0.050713621079922,0.13905531167984],[0.049069207161665,-0.11106976121664,0.057336680591106],[0.091064311563969,-0.10081753134727,-0.15785942971706]],[[-0.0070811309851706,0.011942651122808,-0.1080694720149],[0.03496678173542,-0.027157021686435,-0.066570766270161],[-0.057264935225248,0.0072226943448186,0.048530835658312]],[[-0.10093463212252,-0.17295403778553,-0.11766627430916],[-0.064387366175652,-0.13828712701797,-0.19690465927124],[0.025809604674578,0.12876619398594,-0.037839896976948]],[[0.029520601034164,0.054414607584476,-0.057275835424662],[0.096803583204746,0.026449238881469,-0.11589748412371],[-0.012089009396732,-0.10906308144331,0.068632461130619]],[[0.082795105874538,0.058898735791445,0.072713226079941],[0.0069100251421332,-0.14008566737175,0.11134336143732],[-0.017686812207103,0.017570400610566,0.066765077412128]],[[-0.093882881104946,0.033570844680071,0.031013499945402],[-0.10961209237576,-0.017196256667376,0.089164033532143],[-0.018719267100096,0.21269093453884,0.090289510786533]],[[-0.17912493646145,0.23384645581245,0.10333994776011],[-0.085564412176609,-0.033362068235874,0.037010248750448],[-0.035565346479416,-0.0069526457227767,-0.010309149511158]],[[0.071102924644947,0.10722800344229,-0.028236780315638],[0.20251230895519,-0.045632876455784,0.051856622099876],[-0.14737452566624,-0.031081890687346,-0.1018877401948]],[[-0.050831999629736,-0.13759383559227,-0.18992948532104],[0.056446142494678,-0.063588216900826,0.086176291108131],[0.070587798953056,0.12464860081673,0.037306070327759]],[[-0.14086882770061,-0.09057193249464,-0.022938217967749],[-0.019573027268052,0.032015088945627,-0.037498828023672],[0.1182759553194,-0.023565763607621,0.14329016208649]],[[-0.17223446071148,-0.088915832340717,0.086825348436832],[-0.23230385780334,-0.12681131064892,-0.074774354696274],[-0.071657948195934,0.087744653224945,0.1428406983614]]],[[[0.062820486724377,-0.12146457284689,0.091567277908325],[-0.22310255467892,-0.27279233932495,-0.26635897159576],[-0.26334369182587,0.19085329771042,-0.31416976451874]],[[0.019511299207807,0.081338658928871,0.074460543692112],[-0.024315224960446,0.015295086428523,-0.053941208869219],[0.018273780122399,-0.15583811700344,-0.042527496814728]],[[0.1781989634037,0.038995951414108,0.13279490172863],[-0.23694841563702,-0.020856821909547,-0.041496876627207],[0.0022727048490196,-0.1344358175993,-0.00099666288588196]],[[0.22364230453968,-0.10630195587873,-0.13472297787666],[-0.062075063586235,-0.12301333993673,-0.045803982764482],[-0.23327545821667,-0.17748108506203,0.17481058835983]],[[0.052147250622511,-0.091001875698566,-0.036610141396523],[-0.018676219508052,-0.08435981720686,0.13925080001354],[0.12928596138954,0.046406835317612,0.048488579690456]],[[0.07709725946188,-0.076540194451809,-0.21143485605717],[-0.019697798416018,-0.021301394328475,-0.050302263349295],[-0.06503327190876,0.11047413945198,0.05670116469264]],[[0.1577724814415,-0.25110349059105,0.13986654579639],[-0.29575824737549,-0.035226583480835,0.010231747291982],[-0.1719816327095,0.20093883574009,0.096939012408257]],[[-0.034828819334507,0.095164380967617,0.16073067486286],[-0.044814642518759,-0.15595358610153,0.14700365066528],[0.013342895545065,-0.12711569666862,-0.10896393656731]],[[0.020427122712135,-0.10237404704094,-0.10151774436235],[-0.061374142765999,-0.12110907584429,0.049991242587566],[0.034967731684446,-0.025324657559395,-0.096509501338005]],[[-0.0085564637556672,-0.043601334095001,0.034569356590509],[-0.13162040710449,-0.022983383387327,0.057100180536509],[-0.070542626082897,0.08527622371912,-0.0011017564684153]],[[-0.19176775217056,0.021052960306406,-0.03721845895052],[0.04817009344697,0.21238087117672,-0.062623873353004],[0.036016751080751,-0.24818877875805,-0.0017552222125232]],[[0.0054266392253339,-0.17527620494366,0.069480001926422],[-0.073594398796558,0.11580785363913,-0.051500581204891],[0.0044335960410535,0.11975974589586,-0.017713045701385]],[[0.083131670951843,-0.075975626707077,0.078221134841442],[0.034796770662069,0.10970178991556,-0.093753688037395],[-0.082472890615463,-0.04125227406621,0.10662324726582]],[[-0.063176862895489,-0.044359464198351,0.038128852844238],[-0.054389044642448,-0.0076837232336402,-7.9353943874594e-05],[0.097154088318348,-0.0024603281635791,0.026747098192573]],[[0.023993384093046,-0.11340466141701,-0.32937934994698],[0.17180953919888,-0.30249390006065,-0.34714215993881],[0.0070584146305919,0.12586633861065,-0.3207873404026]],[[-0.18342830240726,0.047598462551832,-0.14314173161983],[-0.20590509474277,0.0084737874567509,-0.005641411524266],[0.049716025590897,-0.049386810511351,0.022339666262269]],[[-0.069841958582401,0.020561164245009,-0.17170496284962],[0.067333541810513,0.0039161252789199,0.0077119604684412],[-0.085913226008415,0.12617780268192,-0.17407840490341]],[[0.020097570493817,-0.065412595868111,-0.047278787940741],[-0.17207290232182,0.0091085862368345,0.0074812206439674],[-0.28960916399956,0.11948895454407,-0.064667768776417]],[[-0.092986598610878,-0.26952907443047,-0.099772252142429],[0.038947373628616,-0.14684335887432,0.089297190308571],[0.059891004115343,-0.2502207159996,-0.1087189540267]],[[-0.011834405362606,0.089901335537434,-0.29086503386497],[0.030248887836933,0.02085374481976,-0.1593830883503],[0.016357494518161,-0.037989161908627,0.13055071234703]],[[0.25485864281654,-0.13695524632931,-0.30278748273849],[0.091868661344051,-0.020246716216207,0.041967507451773],[0.092563390731812,0.034574627876282,-0.26193046569824]],[[0.059285722672939,0.078935861587524,-0.011471724137664],[0.11880688369274,0.034527722746134,-0.07612020522356],[-0.11106218397617,0.014480696059763,-0.14742511510849]],[[0.032157003879547,0.1900387108326,0.13280959427357],[-0.26210176944733,0.014824349433184,0.075401596724987],[-0.0045350142754614,-0.21294406056404,-0.045273967087269]],[[0.042485568672419,-0.04263111948967,0.043888878077269],[-0.012627742253244,-0.019932888448238,-0.034581605345011],[-0.03788922727108,0.10652001202106,-0.24317425489426]],[[0.063178673386574,-0.11304733157158,0.078749217092991],[0.082110106945038,0.0757921859622,-0.17566210031509],[-0.026525748893619,0.016089918091893,-0.030498672276735]],[[0.19165575504303,-0.17403249442577,0.22565370798111],[0.0077960519120097,-0.24041073024273,-0.042061410844326],[-0.081736318767071,-0.038083255290985,0.080758146941662]],[[-0.021398292854428,0.0065694474615157,0.24286545813084],[-0.032437644898891,0.049687650054693,-0.023079359903932],[0.080953262746334,0.042892079800367,-0.18310436606407]],[[0.16304276883602,-0.012168549932539,0.047579567879438],[0.12925584614277,-0.087423026561737,-0.038335662335157],[-0.029238071292639,0.1221214607358,0.32071083784103]],[[0.03986119478941,0.10241962224245,0.0417884811759],[0.0090779410675168,0.076309137046337,-0.12580145895481],[0.12495150417089,0.077871143817902,-0.17135460674763]],[[-0.09443848580122,0.068114474415779,0.047398321330547],[0.019520230591297,-0.067194186151028,0.034193873405457],[-0.030117059126496,-0.0084702540189028,-0.0090459128841758]],[[-0.1692118793726,-0.13968482613564,0.0024695543106645],[0.0096119428053498,0.071438699960709,0.12237791717052],[-0.044893249869347,0.048821680247784,-0.016867706552148]],[[0.058279640972614,0.099022097885609,-0.037658501416445],[-0.13060534000397,0.19124625623226,-0.0088863335549831],[0.035669147968292,0.024558335542679,-0.1510825753212]]],[[[-0.0047900173813105,-0.22115704417229,-0.15092451870441],[0.2742213010788,0.060458231717348,0.16249193251133],[-0.20769473910332,-0.42738831043243,0.17362728714943]],[[-0.0086180893704295,-0.14866153895855,-0.11931542307138],[0.08777491748333,-0.033424735069275,0.023857865482569],[-0.070997938513756,0.10502446442842,-0.019504761323333]],[[0.092373467981815,-0.10644345730543,-0.0066626691259444],[0.2056727707386,-0.18450193107128,-0.062637276947498],[0.0050004767253995,0.038221627473831,-0.11495192348957]],[[-0.19255648553371,0.010408696718514,0.11097151041031],[-0.029850469902158,-0.18618068099022,-0.17343246936798],[0.7043508887291,-0.23347191512585,-0.019950829446316]],[[0.055899754166603,-0.11000280827284,-0.058664985001087],[0.083480596542358,0.010380858555436,0.079082109034061],[-0.042832270264626,0.10015172511339,0.1257631033659]],[[0.059570394456387,0.038689456880093,0.11051297932863],[-0.073080010712147,-0.20451465249062,-0.012967050075531],[0.025566155090928,-0.08682544529438,0.069008529186249]],[[0.082245156168938,-0.19732032716274,0.096264839172363],[0.10066552460194,0.015185249038041,-0.31793701648712],[0.0038449224084616,0.093553327023983,-0.09560564905405]],[[0.08690682798624,-0.0086028035730124,0.030508320778608],[-0.010660220868886,0.026891930028796,-0.096655711531639],[-0.087733238935471,-0.13497084379196,0.15264320373535]],[[-0.10839612036943,-0.076729722321033,-0.066985942423344],[0.16221377253532,-0.046580638736486,0.0094016576185822],[0.0091870054602623,0.24217785894871,-0.10718324780464]],[[-0.040624473243952,-0.025494039058685,-0.21653097867966],[0.15754319727421,-0.014209967106581,0.040246605873108],[0.055218655616045,-0.054780911654234,-0.021032838150859]],[[-0.020802898332477,0.14739508926868,0.13352502882481],[0.0013928276021034,0.018671629950404,-0.10080888867378],[0.1163714081049,-0.19693557918072,-0.11135958880186]],[[-0.027786161750555,-0.015049679204822,0.13385356962681],[-0.077687099575996,0.050288051366806,-0.12835092842579],[0.057713948190212,0.03529928997159,-0.17717632651329]],[[0.027228757739067,-0.12632328271866,0.036501847207546],[0.090449027717113,-0.038820490241051,0.028124937787652],[-0.078716032207012,-0.027346577495337,0.081666879355907]],[[0.046476669609547,0.051990654319525,-0.01599333807826],[-0.1383770853281,0.031806375831366,0.0048888567835093],[-0.052918370813131,0.027333594858646,0.047913987189531]],[[-0.013032182119787,0.086940266191959,0.063326813280582],[-0.10921633243561,-0.093802824616432,0.026596674695611],[0.01043851301074,-0.096461601555347,-0.039925437420607]],[[-0.16291877627373,-0.15121024847031,-0.41278716921806],[0.16737402975559,0.27730077505112,-0.22635366022587],[0.074060074985027,0.37592664361,0.1894703656435]],[[-0.020302046090364,0.1191780641675,0.037967931479216],[-0.096962295472622,-0.0031946408562362,-0.040098574012518],[-0.036095038056374,-0.031716357916594,-0.0021235034801066]],[[0.11709573119879,-0.055477268993855,0.0034846912603825],[-0.1577533185482,-0.046042464673519,-0.11907268315554],[0.11492147296667,-0.084270320832729,-0.1195018813014]],[[-0.13529522716999,0.1913745701313,-0.091013930737972],[-0.038474932312965,-0.01557772886008,-0.0047580604441464],[-0.00059758976567537,0.072377696633339,-0.053845308721066]],[[-0.0027194782160223,-0.066881127655506,-0.19720201194286],[0.051369849592447,0.15476256608963,-0.033046249300241],[-0.03323357924819,0.002164407633245,-0.085920765995979]],[[0.070516377687454,0.012484828941524,0.14686578512192],[-0.30588459968567,-0.19381147623062,-0.082756586372852],[0.19655504822731,-0.046170875430107,-0.092426292598248]],[[-0.094439633190632,0.13593675196171,-0.054062530398369],[0.13031905889511,0.10435254126787,-0.16521099209785],[0.12607310712337,-0.049653116613626,-0.25949093699455]],[[0.039581507444382,-0.024907916784286,0.19171579182148],[-0.076279111206532,0.078735291957855,0.03427629545331],[-0.15566688776016,-0.10792942345142,0.058647911995649]],[[0.032556157559156,-0.12658104300499,0.086757957935333],[0.019719120115042,0.024200132116675,0.069590114057064],[0.19931352138519,-0.15582165122032,-0.20294117927551]],[[0.09239499270916,-0.022084210067987,0.14205965399742],[0.067368231713772,-0.058896221220493,-0.099898800253868],[0.021172551438212,-0.092824347317219,-0.14640578627586]],[[0.097019597887993,-0.060334037989378,-0.11905965209007],[0.034939780831337,-0.17144164443016,0.029796345159411],[0.15367519855499,-0.25748193264008,0.070120975375175]],[[-0.043032824993134,0.035252768546343,-0.0034711437765509],[-0.12551225721836,-0.066532239317894,0.20820482075214],[-0.18025024235249,-0.16279767453671,-0.023356137797236]],[[0.044585026800632,-0.046820849180222,-0.31632053852081],[0.033258490264416,-0.24147380888462,-0.15511198341846],[0.032189708203077,-0.096181511878967,-0.10044212639332]],[[0.04392159730196,0.1239178776741,0.15368854999542],[-0.096818760037422,-0.1027602776885,0.23853921890259],[-0.2524808049202,-0.044053122401237,0.054448761045933]],[[0.10762971639633,-0.0086639290675521,-0.087166011333466],[-0.033471409231424,-0.036721218377352,-0.01751116476953],[-0.012501837685704,-0.095245324075222,0.0054343426600099]],[[0.087198682129383,-0.14316886663437,-0.032192662358284],[-0.074035756289959,-0.15078952908516,0.076273247599602],[0.024718090891838,-0.033740889281034,0.14141882956028]],[[0.056705914437771,0.07066822052002,0.013585980981588],[0.0091599691659212,-0.074363529682159,-0.35609418153763],[0.055698189884424,0.0011397635098547,0.0020270270761102]]],[[[0.095510184764862,-0.018759680911899,-0.12949481606483],[-0.033928640186787,0.018851293250918,-0.024640630930662],[0.013874839991331,-0.025818111374974,-0.012465318664908]],[[-0.01847505196929,0.0043060332536697,-0.086183413863182],[0.10798072814941,0.054785128682852,0.032940324395895],[0.009621050208807,0.050870709121227,-0.0069350837729871]],[[0.11424200981855,-0.01473677996546,0.037425506860018],[-0.13262924551964,-0.091104827821255,0.060153134167194],[0.047641724348068,-0.15892678499222,0.13744178414345]],[[-0.058684788644314,0.084972374141216,-0.038655437529087],[0.11789194494486,0.042739063501358,0.0023826267570257],[0.037631332874298,0.028415080159903,-0.0023031320888549]],[[-0.098423421382904,-0.054625298827887,0.015957182273269],[-0.0915856808424,-0.14396440982819,0.014759602956474],[0.050649091601372,-0.092577762901783,-0.134277805686]],[[-0.027279313653708,0.029982762411237,-0.089650131762028],[0.049785509705544,0.23481442034245,0.20002493262291],[0.10950181633234,0.15312567353249,-0.018286075443029]],[[0.048648670315742,0.027318879961967,0.20175345242023],[-0.096103757619858,-0.054413847625256,-0.047527182847261],[-0.0016273374203593,-0.11173964291811,-0.083597533404827]],[[0.033572431653738,-0.095143169164658,0.060757502913475],[0.086178734898567,0.03677049651742,-0.025653585791588],[-0.0097516309469938,-0.12203016877174,0.038441296666861]],[[0.027391497045755,-0.011827622540295,-0.1138527020812],[0.040249157696962,-0.021628765389323,0.002483603078872],[-0.081819154322147,-0.086870044469833,0.15510958433151]],[[-0.18369893729687,-0.022926492616534,0.10533194988966],[0.012316393665969,-0.073291748762131,-0.1407468020916],[-0.066415883600712,-0.021308682858944,0.10017313063145]],[[0.047719765454531,-0.015663983300328,-0.071437872946262],[0.14322774112225,-0.013159733265638,0.1600678563118],[-0.14068745076656,-0.071006327867508,-0.054803397506475]],[[-0.031850978732109,0.11611777544022,0.10954903066158],[-0.17033167183399,0.020729418843985,0.041253861039877],[0.019256958737969,-0.058362890034914,0.075311303138733]],[[0.089295148849487,0.12486886233091,-0.0078845815733075],[0.21144722402096,0.061580654233694,0.054994773119688],[-0.067622929811478,0.10502368211746,-0.067693144083023]],[[0.061309345066547,0.080933436751366,-0.064921863377094],[-0.036761593073606,-0.0021403376013041,-0.061770793050528],[0.077457621693611,-0.058649327605963,-0.062365215271711]],[[-0.017870767042041,-0.070961259305477,0.0045361779630184],[0.002540418645367,0.039883453398943,0.041354842483997],[-0.14414927363396,-0.10352694243193,0.11367463320494]],[[-0.036733329296112,0.019863214343786,0.065961256623268],[0.1184550896287,0.018028730526567,0.0099484026432037],[-0.066600918769836,0.0037923324853182,-0.041373632848263]],[[0.013185320422053,0.064541935920715,-0.014345397241414],[-0.012021346017718,0.17924256622791,-0.087601192295551],[-0.1795748770237,0.1625357568264,-0.072858981788158]],[[-0.075144901871681,0.14520421624184,0.12634733319283],[-0.10368110984564,-0.015004430897534,-0.073943823575974],[-0.020638514310122,-0.08613583445549,0.092582166194916]],[[-0.01758586242795,-0.011297293007374,-0.0125747974962],[0.10653771460056,0.20579554140568,-0.037847723811865],[-0.12136567384005,-0.0057295206934214,-0.15532737970352]],[[-0.18757838010788,0.075157850980759,0.067082457244396],[-0.081470116972923,0.052939772605896,-0.016376849263906],[0.15523236989975,-0.07010193169117,-0.016083285212517]],[[-0.0040155672468245,-0.012408255599439,-0.0033978002611548],[-0.086368210613728,-0.086202524602413,0.01204963773489],[-0.068793699145317,-0.052554294466972,0.053218953311443]],[[-0.021326256915927,-0.10864034295082,0.044315367937088],[-0.026028607040644,0.025074988603592,-0.056993033736944],[0.052449941635132,-0.038691122084856,-0.12416268885136]],[[0.055978268384933,0.0077210399322212,0.031076531857252],[0.02396116219461,-0.022674281150103,0.084519408643246],[-0.035251587629318,0.024914475157857,0.0036746521946043]],[[-0.017371788620949,-0.032161042094231,-0.029695032164454],[-0.096825525164604,-0.0021266730036587,0.07385141402483],[-0.031907547265291,-0.077555850148201,0.029578518122435]],[[0.032553292810917,0.095094941556454,0.11829596012831],[0.078853785991669,-0.028060026466846,-0.064046248793602],[-0.10758308321238,0.097275711596012,-0.15764506161213]],[[-0.03622942045331,-0.18517081439495,0.027781710028648],[0.05358837172389,-0.040952730923891,0.063969746232033],[0.0049467333592474,0.058678586035967,-0.042161729186773]],[[-0.024342082440853,-0.075364224612713,-0.10614290833473],[-0.097654402256012,0.116425819695,-0.0090364851057529],[0.10292518138885,0.057730674743652,-0.038820989429951]],[[0.020886424928904,-0.086848303675652,0.044800411909819],[0.050646517425776,0.0023002459201962,0.045030098408461],[-0.0053269020281732,0.070811904966831,0.016680071130395]],[[-0.032239232212305,-0.054727762937546,-0.14537842571735],[0.078608140349388,0.090919204056263,0.044333312660456],[-0.025159902870655,-0.03962267562747,0.0020548780448735]],[[0.034592818468809,0.060346961021423,0.2084217518568],[-0.040587406605482,-0.062601499259472,0.10575617104769],[0.0055090975947678,-0.17048466205597,-0.022762361913919]],[[0.017287731170654,0.01467593293637,0.021804356947541],[-0.15344113111496,0.049087896943092,-0.021636690944433],[0.17399080097675,-0.052439827471972,0.091327525675297]],[[-0.0023839361965656,0.054940424859524,0.1374351978302],[-0.067759841680527,-0.081101387739182,0.022654956206679],[0.095739707350731,-0.075134068727493,-0.0086821364238858]]],[[[0.043109636753798,0.14507982134819,0.0068612238392234],[-0.10368230938911,0.09967115521431,-0.1144306063652],[-0.054001178592443,0.23750980198383,-0.39749547839165]],[[0.10329477488995,-0.017146764323115,0.2505915760994],[-0.061179950833321,-0.070212587714195,-0.077634565532207],[-0.1366571187973,-0.055304601788521,0.19257779419422]],[[0.1666322350502,0.041266482323408,0.12654449045658],[0.020904241129756,-0.018389819189906,0.18698693811893],[-0.11108677089214,-0.14499475061893,-0.53265404701233]],[[0.062025509774685,0.051853507757187,-0.067822672426701],[-0.036784403026104,-0.22208753228188,0.30335640907288],[-0.26381346583366,-0.080852963030338,0.34112450480461]],[[-0.01099026016891,-0.17372831702232,0.074068248271942],[-0.057432226836681,-0.097668953239918,0.042119018733501],[0.0072036874480546,-0.059576809406281,-0.02528421394527]],[[0.073920451104641,0.060750804841518,-0.12721362709999],[0.1614868491888,-0.057136297225952,-0.098698414862156],[-0.0035819639451802,-0.020732523873448,-0.12299447506666]],[[0.11341921240091,-0.036362443119287,-0.031639523804188],[0.080915629863739,0.033763699233532,-0.04363276809454],[0.003786601126194,-0.091203227639198,0.0054938369430602]],[[0.074120208621025,0.044961221516132,-0.082901805639267],[0.0099654980003834,0.027865253388882,0.028510186821222],[-0.048294577747583,-0.070557586848736,-0.079289108514786]],[[0.019749857485294,0.23145604133606,-0.0973214879632],[0.031020116060972,0.049647007137537,-0.14886902272701],[-0.12041407078505,0.066813632845879,0.034538887441158]],[[0.048963259905577,-0.061195608228445,0.074027121067047],[0.023710751906037,-0.07067983597517,0.16871435940266],[-0.0075225671753287,-0.00077745091402903,0.047846082597971]],[[0.049733713269234,0.024205477908254,0.05031530559063],[0.11165387928486,-0.21516139805317,-0.11916989833117],[0.17202600836754,-0.13805565237999,-0.19947865605354]],[[-0.096028417348862,-0.013685527257621,0.20703065395355],[-0.039150130003691,0.075512483716011,0.032132726162672],[-0.059707317501307,0.055704060941935,-0.093454755842686]],[[-0.03906187787652,0.031782623380423,0.061537861824036],[0.050968766212463,-0.028887018561363,0.027327883988619],[-0.087993465363979,0.014434652402997,0.0490732640028]],[[0.03449959307909,-0.13330465555191,-0.001980978762731],[0.12417742609978,-0.050167702138424,-0.083555646240711],[-0.035738795995712,0.13452239334583,-0.024631142616272]],[[-0.0060581639409065,-0.016395501792431,-0.22731249034405],[-0.027679111808538,0.01557323243469,-0.022321064025164],[0.060306377708912,0.0023088229354471,0.15185114741325]],[[-0.14082501828671,0.0014282763004303,0.057625945657492],[-0.18549428880215,-0.13679938018322,0.40116694569588],[-0.11185556650162,-0.18568357825279,0.045401848852634]],[[-0.016732985153794,0.038510665297508,0.008915570564568],[0.0096452003344893,-0.086305223405361,-0.15880724787712],[-0.13949750363827,-0.20714250206947,-0.27320182323456]],[[0.072074629366398,0.044040244072676,-0.12793301045895],[-0.015125290490687,0.026643991470337,-0.13234440982342],[-0.039371114224195,-0.0042399987578392,-0.16373419761658]],[[0.0048488527536392,0.17476566135883,0.072960056364536],[-0.11776375025511,0.12201432138681,-0.15021598339081],[0.17324879765511,-0.14987342059612,-0.06713804602623]],[[0.10098838806152,-0.086355566978455,0.088197968900204],[-0.18290629982948,-0.13669061660767,0.067941471934319],[0.15322579443455,-0.12416569888592,0.14160753786564]],[[-0.052609272301197,0.13523454964161,-0.11560197919607],[0.010615950450301,-0.10183850675821,-0.072752401232719],[-0.054132953286171,-0.1056426987052,0.12738311290741]],[[0.071283832192421,-0.1121920645237,-0.073685891926289],[-0.15438722074032,0.10169837623835,-0.025883439928293],[-0.063418351113796,0.065902441740036,0.063825972378254]],[[-0.049739230424166,-0.093104101717472,0.0055471234954894],[0.053580280393362,-0.10841324180365,-0.0096686966717243],[-0.10770014673471,0.040936265140772,-0.1334175914526]],[[0.098670549690723,-0.059414710849524,0.088664248585701],[0.080396763980389,-0.037342503666878,0.078490182757378],[0.11246447265148,-0.014942944049835,-0.1182297617197]],[[-0.047895479947329,-0.04274882748723,0.08806999027729],[-0.075530990958214,-0.047713473439217,-0.051943827420473],[-0.024905325844884,0.09652704000473,0.10958836227655]],[[0.025084517896175,-0.19656212627888,-0.0088362796232104],[-0.031056977808475,0.020150607451797,0.0073640570044518],[-0.18847779929638,0.058875396847725,-0.15144750475883]],[[0.024860180914402,-0.077740341424942,0.084180437028408],[-0.021153314039111,0.10711770504713,-0.32615008950233],[0.00981087051332,-0.10300980508327,-0.49659633636475]],[[0.022906683385372,-0.082293376326561,0.10181843489408],[0.034551437944174,-0.090924113988876,-0.031956311315298],[-0.084840312600136,-0.019039668142796,0.10784736275673]],[[0.17090907692909,0.044131200760603,0.066791363060474],[-0.10973447561264,0.13364428281784,0.029984721913934],[0.19044980406761,0.17364071309566,-0.020633444190025]],[[-0.046444833278656,0.01154697034508,-0.13493484258652],[-0.02631408162415,0.14122468233109,0.1390466094017],[0.0039638979360461,-0.013884934596717,-0.073268212378025]],[[-0.081573486328125,0.00058434315724298,0.095276847481728],[0.0252904612571,0.034605141729116,-0.10173387825489],[-0.035221077501774,-0.022698296234012,-0.12755908071995]],[[-0.062855884432793,-0.15621392428875,0.035175126045942],[0.11582566797733,0.050311036407948,-0.11259983479977],[-0.0093420520424843,0.012935880571604,-0.27653226256371]]],[[[-0.011197172105312,0.088148809969425,-0.10037190467119],[0.15537092089653,-0.11637029796839,-0.066741809248924],[0.12633512914181,-0.11884211748838,0.059889677911997]],[[-0.099647797644138,-0.16327787935734,-0.033074025064707],[0.028527874499559,0.049653880298138,0.19512851536274],[-0.07150461524725,-0.18955807387829,0.14612139761448]],[[-0.071418359875679,0.0036947401240468,0.022306324914098],[0.11296281218529,0.044992323964834,0.004398426041007],[0.0068566533736885,0.090990103781223,-0.21827185153961]],[[0.016510220244527,-0.024309536442161,0.017891556024551],[-0.04906127974391,-0.11231269687414,0.050672844052315],[0.1350315362215,0.060435615479946,0.026567032560706]],[[0.038279864937067,0.016087766736746,-0.094560585916042],[0.056122492998838,0.015070676803589,-0.10126510262489],[0.023591097444296,0.02169949747622,0.19768072664738]],[[-0.12335350364447,-0.048371952027082,0.27958810329437],[-0.11829301714897,-0.036393951624632,0.35655611753464],[0.12320297956467,-0.11287438124418,0.10458920150995]],[[-0.11360155045986,-0.1035109385848,0.057914584875107],[0.25209429860115,-0.085209175944328,0.10837311297655],[-0.089539706707001,0.064468361437321,0.043291088193655]],[[0.059710688889027,0.091272734105587,-0.0057632788084447],[-0.066036321222782,-0.055902391672134,0.026477264240384],[0.027498560026288,0.029658813029528,0.079773522913456]],[[0.030318323522806,0.085171446204185,0.066746182739735],[-0.23956628143787,0.029848121106625,-0.11219212412834],[-0.15370690822601,0.17134867608547,-0.19744953513145]],[[0.0040887692011893,0.074769333004951,-0.160519734025],[-0.040030866861343,-0.030989900231361,-0.13849940896034],[-0.056621331721544,0.067468613386154,0.032108407467604]],[[-0.13598515093327,0.023854915052652,0.2651005089283],[-0.10444564372301,0.0044134273193777,0.02927958406508],[0.10983534157276,0.032656535506248,-0.031169081106782]],[[0.0709218531847,0.11727020144463,-0.14346164464951],[0.12264887243509,0.055888503789902,0.074572198092937],[-0.017401894554496,-0.033671341836452,-0.12731656432152]],[[0.14580798149109,-0.28318676352501,-0.055752813816071],[0.097410708665848,6.6932188929059e-05,0.08438877761364],[0.12363917380571,-0.095340743660927,0.040416829288006]],[[-0.069542542099953,0.028758598491549,-0.1105777323246],[0.056895215064287,-0.018060134723783,0.023274596780539],[-0.11750025302172,0.037534341216087,0.13524417579174]],[[0.17230518162251,0.14813980460167,-0.050093535333872],[-0.10213606804609,-0.029769593849778,0.033027175813913],[0.10384996235371,0.0016829809173942,0.092483259737492]],[[0.059555355459452,0.027959130704403,0.011042098514736],[-0.14170850813389,-0.072334222495556,0.051274735480547],[0.18490526080132,0.32307091355324,0.17497904598713]],[[-0.16298952698708,-0.055175974965096,-0.10491137206554],[0.15124844014645,0.05922307446599,0.27632242441177],[-0.085842311382294,-0.052756328135729,0.024352829903364]],[[0.10100436210632,0.090507790446281,0.12294786423445],[0.17853306233883,-0.097741946578026,0.0067189922556281],[0.036973647773266,-0.083043143153191,0.05863594263792]],[[0.091338127851486,0.025301873683929,0.13442838191986],[-0.094189658761024,-0.016386747360229,0.011995044536889],[0.10058999806643,-0.013165570795536,-0.14569239318371]],[[-0.027599487453699,-0.11687654256821,-0.047649290412664],[0.010530340485275,0.072298921644688,-0.016975531354547],[0.0373205691576,0.15081168711185,-0.079301975667477]],[[0.09780802577734,0.019288711249828,0.023699933663011],[0.01618723385036,-0.10455869883299,0.023245148360729],[0.15950837731361,0.1663181334734,-0.0010377269936725]],[[0.079323813319206,0.014161788858473,0.090532682836056],[0.039471831172705,0.084556415677071,-0.078202784061432],[-0.064162231981754,0.011909577064216,-0.06092943251133]],[[-0.10834617912769,-0.21905274689198,-0.12954258918762],[-0.11241243779659,-0.028721526265144,0.13629391789436],[0.17194883525372,-0.1734312325716,0.21754322946072]],[[0.017436977475882,0.0029960130341351,0.077118255198002],[-0.068540640175343,-0.02504319511354,0.058985326439142],[0.0097880940884352,0.016445893794298,-0.087731309235096]],[[0.025973713025451,0.18234738707542,0.16882184147835],[-0.040380071848631,0.05284558609128,-0.12416435778141],[0.073245234787464,-0.00086369179189205,-0.22022821009159]],[[0.070595137774944,-0.049050889909267,-0.15797908604145],[0.2198194861412,0.067516766488552,0.13216659426689],[0.04420593008399,-0.0082489149644971,-0.0056186774745584]],[[0.079309165477753,-0.11275117844343,0.046488329768181],[0.21987572312355,-0.023795884102583,0.11188668012619],[0.1298321634531,-0.064776204526424,0.0051861125975847]],[[-0.0647933781147,-0.016995381563902,0.069034971296787],[0.028288776054978,-0.13059152662754,-0.15001754462719],[0.16574802994728,-0.12713932991028,0.0064820181578398]],[[-0.064944878220558,0.057556517422199,0.05531282350421],[-0.059590276330709,0.14999505877495,0.10818682610989],[-0.18111318349838,-0.024158800020814,-0.098838932812214]],[[0.087266653776169,0.039436768740416,-0.13173396885395],[0.072503007948399,-0.083839938044548,0.059810698032379],[0.097543701529503,-0.14119997620583,0.048290330916643]],[[0.037190012633801,-0.11014495044947,-0.037130046635866],[-0.0056774164550006,0.027735520154238,0.022380923852324],[0.030929503962398,-0.0028447001241148,0.11191481351852]],[[-0.041729688644409,-0.051473047584295,0.015724141150713],[-0.14172400534153,-0.085496120154858,-0.18968354165554],[-0.048343330621719,0.097722381353378,-0.19823949038982]]],[[[-0.066081784665585,-0.2776061296463,-0.077769175171852],[0.12930876016617,-0.11914426088333,0.21987144649029],[-0.11025737971067,-0.2388721704483,0.07376367598772]],[[-0.063854679465294,-0.087288469076157,-0.055337209254503],[0.11425908654928,-0.053841076791286,-0.0097003821283579],[-0.040487255901098,-0.063404336571693,0.031709715723991]],[[0.058238558471203,-0.16643247008324,-0.084576427936554],[-0.018205164000392,0.05147959291935,0.032284315675497],[-0.098309181630611,-0.037443988025188,-0.013861980289221]],[[-0.018200410529971,0.069058269262314,-0.086586527526379],[-0.10771476477385,-0.18260499835014,0.084980838000774],[0.17969365417957,-0.045289304107428,0.28574526309967]],[[0.12443857640028,-0.074438072741032,-0.045609269291162],[0.054370433092117,0.082535788416862,-0.074948519468307],[-0.014688276685774,-0.028716415166855,-0.046306643635035]],[[-0.12030627578497,-0.077896028757095,0.10125888884068],[-0.018328111618757,-0.15037479996681,0.072114743292332],[0.12588140368462,-0.086446516215801,0.11403243988752]],[[-0.2701778113842,-0.090818017721176,0.15774694085121],[0.10153318941593,-0.018152011558414,-0.051582876592875],[0.011656945571303,-0.09208757430315,-0.13874390721321]],[[0.057019267231226,-0.091831721365452,0.019292447715998],[-0.10084043443203,0.13571453094482,0.098568551242352],[0.02553560398519,-0.2147449105978,0.074371859431267]],[[0.11790750920773,-0.073261916637421,-0.24227723479271],[-0.063928693532944,0.074670478701591,-0.0044734748080373],[0.090338833630085,0.19210514426231,0.069385282695293]],[[-0.16177217662334,-0.022236993536353,0.039616726338863],[-0.040868636220694,-0.148940294981,0.11406067758799],[0.035230897367001,0.053054206073284,-0.018765578046441]],[[-0.036269683390856,0.0027454302180558,0.30756065249443],[-0.21647894382477,0.028449034318328,0.053448010236025],[-0.25907412171364,-0.19425079226494,-0.16953186690807]],[[0.28188762068748,-0.02503477036953,-0.061119120568037],[-0.042714908719063,0.16067944467068,-0.097688011825085],[-0.055858075618744,-0.083933360874653,0.076052121818066]],[[-0.14092946052551,-0.039065230637789,-0.027820335701108],[0.082901440560818,0.088969901204109,0.036452613770962],[0.11613549292088,-0.17340342700481,-0.01036624610424]],[[0.035148542374372,0.08173106610775,-0.017310373485088],[0.0021202366333455,-0.022225845605135,0.12137141823769],[-0.13695056736469,0.04163970425725,0.0063017993234098]],[[-0.282800167799,0.023412559181452,-0.20524698495865],[-0.21657675504684,0.069615244865417,0.088231012225151],[-0.13575133681297,0.061988566070795,0.15608139336109]],[[0.1068013086915,-0.11485815048218,0.07995830476284],[0.24856175482273,0.043361693620682,0.051125131547451],[0.08681970089674,-0.25249969959259,-0.044187143445015]],[[-0.027841633185744,-0.18300248682499,-0.11514119058847],[-0.025424605235457,-0.074468538165092,0.12666404247284],[-0.024054722860456,-0.083649836480618,0.10427386313677]],[[0.03467233851552,0.0032104579731822,0.068095281720161],[-0.050845760852098,0.055145181715488,-0.006920154672116],[-0.051681853830814,-0.12246216833591,0.1023792475462]],[[-0.00080715148942545,0.10359691828489,0.037995904684067],[0.070692449808121,0.0064351703040302,-0.0051663061603904],[-0.022690011188388,0.075780041515827,-0.17049063742161]],[[0.019911430776119,-0.1252555847168,-0.04461107775569],[0.047829456627369,-0.085936173796654,-0.00036003845161758],[-0.00047190077020787,0.089523732662201,-0.17630200088024]],[[-0.060815680772066,-0.18576888740063,-0.047962076961994],[0.017464224249125,0.078733123838902,0.14820230007172],[-0.26908966898918,-0.24982732534409,-0.13929714262486]],[[-0.20376066863537,0.028496664017439,-0.050047066062689],[-0.092278152704239,-0.0049151559360325,0.078955829143524],[-0.037310503423214,0.047583352774382,-0.013852072879672]],[[-0.028582599014044,0.067323058843613,-0.38673025369644],[0.17324957251549,0.077206447720528,0.042601533234119],[-0.090403437614441,-0.079131774604321,0.026280056685209]],[[-0.057654488831758,0.029197907075286,-0.0092818420380354],[-0.13395881652832,-0.036242231726646,0.041114080697298],[-0.16319671273232,0.026577919721603,-0.069488726556301]],[[-0.20300433039665,0.10915926843882,0.19132941961288],[-0.040910936892033,-0.23967497050762,0.070664905011654],[-0.086518108844757,0.05237390473485,-0.16486722230911]],[[0.16115882992744,0.033928643912077,0.040270417928696],[0.027564331889153,-0.058847725391388,-0.13670912384987],[-0.02057715319097,0.011833670549095,0.1104813143611]],[[0.073916897177696,-0.023957731202245,0.067489735782146],[-8.6995023593772e-05,0.11391177773476,-0.0077455500140786],[0.00087801140034571,0.062317341566086,0.086982876062393]],[[0.17324493825436,-0.11044529825449,0.04979844763875],[0.07789384573698,0.0059612612240016,0.09895147383213],[0.10692362487316,-0.10169660300016,0.046736095100641]],[[0.16521024703979,0.026352599263191,0.12377980351448],[-0.076805718243122,0.00095862033776939,0.19238463044167],[-0.11340516805649,-0.19269272685051,0.15682765841484]],[[0.043545629829168,0.0032377799507231,0.20119945704937],[0.074479326605797,-0.091648541390896,-0.028002643957734],[-0.056481909006834,0.067945674061775,-0.050298634916544]],[[-0.03253573179245,-0.0077435048297048,-0.1966038197279],[-0.091450400650501,-0.11548959463835,0.022082552313805],[-0.085934333503246,0.1613721549511,-0.12429939955473]],[[-0.10983027517796,0.0044446638785303,0.047106292098761],[-0.099177964031696,-0.14783829450607,0.1194164827466],[0.0022432021796703,0.047915685921907,0.12887516617775]]],[[[-0.2438568174839,0.059229508042336,-0.43750894069672],[-0.075403518974781,0.094990029931068,0.057777259498835],[-0.10072973370552,0.060373309999704,-0.14150604605675]],[[-0.12712892889977,0.076967053115368,0.098186373710632],[-0.056109432131052,-0.010387181304395,0.10442439466715],[-0.11177901178598,-0.081716656684875,-0.021458398550749]],[[-0.10172718763351,0.18346141278744,-0.055607613176107],[0.013806941919029,-0.0065689375624061,-0.034737695008516],[-0.018982820212841,0.047228828072548,-0.019227646291256]],[[-0.14029374718666,0.088602885603905,0.034501329064369],[-0.10603545606136,0.080303579568863,0.15650498867035],[-0.24709282815456,-0.020143806934357,0.32114380598068]],[[-0.0509461350739,0.11537475138903,-0.042688328772783],[-0.099890403449535,-0.1196628883481,0.039508681744337],[-0.014669716358185,0.043413117527962,-0.089006498456001]],[[0.17927332222462,-0.0098093962296844,-0.037175085395575],[0.067369759082794,-0.06656938046217,-0.0071836519055068],[0.039335966110229,-0.13709262013435,-0.0060423263348639]],[[-0.020758768543601,-0.048539500683546,0.062436584383249],[0.067933909595013,-0.014551839791238,0.10457658022642],[0.088327221572399,-0.1335296779871,0.058849979192019]],[[0.037832733243704,0.059050340205431,-0.093603119254112],[-0.058752343058586,0.04322637617588,0.088520094752312],[-0.018034955486655,0.089265450835228,-0.092680275440216]],[[-0.048888701945543,-0.0076958583667874,0.0052159884944558],[-0.00065915280720219,-0.099125564098358,-0.041097477078438],[-0.060624174773693,0.06149585917592,0.079429127275944]],[[-0.18876115977764,0.23982256650925,0.20774331688881],[-0.065665021538734,0.084763906896114,-0.038269009441137],[-0.025658024474978,-0.066711321473122,-0.0042110239155591]],[[0.050678580999374,-0.12760879099369,0.066357284784317],[0.066645130515099,0.084947824478149,0.0029134396463633],[-0.092944718897343,-0.055630229413509,0.0085272872820497]],[[-0.10600643604994,0.088005498051643,-0.08623855561018],[-0.11623988300562,0.24158161878586,0.036613721400499],[-0.038739893585443,-0.086562678217888,0.045237086713314]],[[-0.12025318294764,-0.030561601743102,0.11907748878002],[-0.11393163353205,0.014912662096322,0.13524889945984],[0.025387540459633,-0.1712967902422,0.0066894851624966]],[[-0.088314905762672,-0.014066684991121,0.14702408015728],[0.10241924971342,-0.019699769094586,0.020630862563848],[-0.044637627899647,-0.088818669319153,-0.052775491029024]],[[0.13744762539864,-0.043854486197233,-0.060555130243301],[-0.0045115137472749,0.069058202207088,-0.015908051282167],[0.07138280570507,-0.048803426325321,-0.0036684626247734]],[[-0.21626333892345,-0.24619619548321,0.44145515561104],[-0.17118048667908,-0.15834754705429,0.29676273465157],[0.010297988541424,0.031386654824018,-0.018359947949648]],[[-0.0011749310651794,-0.28048738837242,-0.061161015182734],[0.0023830593563616,-0.022081350907683,0.15849488973618],[0.095584355294704,-0.10361181199551,0.044915590435266]],[[-0.14731930196285,0.090315088629723,0.00070540135493502],[-0.094328604638577,0.057471357285976,-0.10816787183285],[0.043477077037096,-0.040498159825802,0.077385053038597]],[[0.082176744937897,0.1714870929718,-0.012104795314372],[-0.076203636825085,-0.0087590822950006,-0.066750422120094],[0.097366437315941,-0.064536742866039,-0.0034969197586179]],[[-0.049542646855116,-0.31689888238907,0.07224802672863],[0.094787195324898,0.036435212939978,0.0081292949616909],[0.13117633759975,-0.084243565797806,0.030716247856617]],[[-0.012475652620196,0.10053522139788,-0.056279025971889],[0.21172441542149,0.034840423613787,-0.046496879309416],[-0.12871532142162,0.17122785747051,-0.048362080007792]],[[0.062085166573524,0.19476060569286,0.030950332060456],[-0.12846677005291,-0.13885135948658,-0.056129135191441],[-0.023150280117989,0.033109456300735,-0.04395254701376]],[[0.030562775209546,-0.091797925531864,-0.080024100840092],[0.082517087459564,0.02513575553894,0.0049896440468729],[0.1100352704525,-0.065796233713627,0.15690599381924]],[[0.033758297562599,-0.11145857721567,-0.088970743119717],[-0.014969326555729,-0.23466780781746,0.10532632470131],[-0.039419002830982,-0.057383008301258,0.053676813840866]],[[-0.11562034487724,0.1118927448988,-0.01017904933542],[-0.062188755720854,-0.17572563886642,0.3451886177063],[-0.052802719175816,-0.067699104547501,-0.034611765295267]],[[-0.05800973251462,0.0015422536525875,-0.055248912423849],[0.08719265460968,0.1690589338541,0.0039631235413253],[-0.085274532437325,0.21758618950844,-0.024829065427184]],[[-0.16794849932194,0.010906632058322,-0.30582457780838],[-0.05580435693264,0.0098114283755422,0.0045670797117054],[0.13281938433647,0.18568684160709,-0.092126525938511]],[[-0.09692819416523,0.077813677489758,-0.072509914636612],[-0.016706679016352,0.17954742908478,0.11486599594355],[-0.035798139870167,0.0033698661718518,-0.095547690987587]],[[0.080161966383457,-0.015650697052479,-0.049667656421661],[0.10475285351276,-0.071304097771645,-0.099193304777145],[0.18402902781963,0.15739119052887,-0.12704010307789]],[[0.1281079351902,-0.073166586458683,-0.057479791343212],[-0.082764185965061,-0.011394645087421,-0.022702371701598],[-0.051711145788431,-0.0090820621699095,0.0062032332643867]],[[0.018731776624918,-0.13617873191833,-0.19233337044716],[0.011700303293765,0.10794553160667,-0.12564091384411],[-0.051683757454157,0.13568741083145,-0.090587101876736]],[[-0.11552457511425,-0.23407573997974,-0.158013895154],[-0.056019186973572,-0.054560519754887,-0.13608753681183],[0.0099891535937786,-0.25492730736732,0.036134738475084]]],[[[-0.046653054654598,-0.024495040997863,-0.027833178639412],[-0.019700292497873,0.0058648912236094,0.15487706661224],[-0.3400003015995,-0.020356353372335,-0.12912759184837]],[[0.013835965655744,-0.10065256804228,0.0067947553470731],[0.054362293332815,-0.064851358532906,0.1207088381052],[-0.071906022727489,-0.0098483609035611,0.049368172883987]],[[-0.04577598720789,-0.09971334785223,0.029229519888759],[-0.067503020167351,-0.13328309357166,0.03749181330204],[-0.016135901212692,0.1019914150238,0.027099652215838]],[[-0.20318192243576,-0.063608147203922,-0.063290916383266],[-0.04253439232707,-0.081258453428745,-0.093675136566162],[0.3211313188076,0.1648558229208,0.017545329406857]],[[0.023416385054588,-0.14299793541431,0.05963633581996],[-0.25023233890533,0.038317412137985,0.057063926011324],[-0.080847427248955,0.088995210826397,0.10828892141581]],[[0.096359819173813,0.12462853640318,0.011691595427692],[-0.075569838285446,-0.0044430219568312,-0.10369903594255],[0.079737357795238,-0.051649920642376,-0.1283868253231]],[[0.088246144354343,-0.0090021267533302,-0.016185380518436],[0.007311346475035,0.075930424034595,-0.19186045229435],[-0.10060359537601,0.028409274294972,0.078589551150799]],[[-0.048725865781307,-0.0063669546507299,-0.063617132604122],[0.075734108686447,-0.039778519421816,0.15819051861763],[0.056076597422361,0.0096011888235807,-0.13822685182095]],[[-0.22016210854053,0.066312067210674,0.0064503601752222],[0.051858298480511,-0.011019350960851,-0.048024076968431],[0.0031601579394192,0.03962230309844,0.10517729073763]],[[-0.15609399974346,-6.312759796856e-05,0.018032465130091],[0.043483976274729,0.077261872589588,-0.08050062507391],[0.10525226593018,0.13897873461246,-0.03123152628541]],[[-0.11499851197004,0.054481163620949,-0.092253424227238],[-0.015698451548815,0.004202148411423,-0.0070695844478905],[0.031335040926933,-0.02677528001368,0.13746649026871]],[[-0.12251281738281,-0.068731054663658,0.039179511368275],[0.057222228497267,0.18151265382767,-0.017479410395026],[0.049702242016792,0.033551160246134,0.014444829896092]],[[-0.1246263384819,0.077176302671432,-0.057895384728909],[0.013524159789085,0.057687275111675,-0.051145724952221],[-0.0020945961587131,-0.059896606951952,0.047043476253748]],[[0.023997701704502,0.01270414236933,-0.060542847961187],[0.015006457455456,0.054958142340183,0.033685494214296],[0.033216420561075,-0.039332740008831,-0.066459313035011]],[[-0.11408895254135,0.082474648952484,0.14757819473743],[0.1503024995327,-0.10813865065575,-0.14590027928352],[0.089484445750713,-0.057795755565166,-0.12430840730667]],[[-0.53514623641968,0.14081372320652,-0.024323962628841],[0.0023746727965772,0.33289954066277,0.21205478906631],[-0.13518206775188,0.10130976140499,0.031891904771328]],[[0.030868291854858,0.025858085602522,0.14783677458763],[0.14800956845284,-0.059402350336313,0.076626747846603],[0.16769477725029,-0.17937877774239,0.044470984488726]],[[-0.17349490523338,0.039322003722191,0.14303940534592],[0.089467525482178,-0.045864179730415,-0.034858603030443],[-0.17992317676544,0.028635211288929,-0.077103316783905]],[[0.27769812941551,-0.12642730772495,0.011130661703646],[0.043950226157904,0.12112050503492,0.061963345855474],[-0.061672180891037,0.01321810670197,-0.084604322910309]],[[-0.10416892915964,0.1390588581562,0.069673575460911],[0.033088877797127,-0.026172513142228,0.0067318961955607],[-0.0013259012484923,-0.2208289206028,0.04454455897212]],[[-0.040073227137327,-0.077927686274052,0.036383766680956],[-0.17781828343868,0.0096711786463857,0.0085912495851517],[0.081077627837658,0.13759423792362,-0.00053854082943872]],[[-0.022039469331503,-0.0020274429116398,-0.013033343479037],[-0.062755011022091,0.0186534114182,-0.01862015761435],[0.018610015511513,-0.071487121284008,0.063481859862804]],[[-0.032035756856203,-0.01256806589663,0.12369877099991],[0.044490791857243,-0.03537755459547,-0.079025812447071],[-0.046920843422413,-0.0015952719841152,0.091307908296585]],[[-0.097107067704201,0.019311659038067,-0.055515058338642],[0.031084798276424,0.056000661104918,0.035528890788555],[-0.17664757370949,0.10613250732422,0.12775993347168]],[[0.021664163097739,0.067160218954086,-0.20979750156403],[0.021324660629034,0.0038213247898966,-0.060703776776791],[0.02012805826962,0.068675123155117,0.1328302770853]],[[-0.15045040845871,0.12437053024769,-0.01487400662154],[-0.0055033303797245,-0.038948949426413,0.0024547257926315],[0.10111928731203,0.053526114672422,-0.028576772660017]],[[-0.31403037905693,-0.17242273688316,0.041274901479483],[-0.26494216918945,0.058383375406265,0.086242586374283],[-0.17761741578579,0.040526758879423,0.051146257668734]],[[0.067413114011288,-0.089337319135666,-0.018220437690616],[-0.1282833814621,0.056575901806355,-0.4865029156208],[0.10962703824043,-0.0069238259457052,-0.036541063338518]],[[0.13171665370464,0.0016708748880774,-0.0075836777687073],[-0.015715092420578,-0.042056478559971,0.047140996903181],[0.007034236099571,-0.16508217155933,-0.073327980935574]],[[-0.091371789574623,0.0054847407154739,-0.041794423013926],[0.0076680015772581,0.16817569732666,-0.042075954377651],[-0.084977395832539,-0.07966087013483,0.11316750198603]],[[-0.21445240080357,-0.0086006755009294,0.15185394883156],[0.0079187750816345,-0.19371749460697,0.18040387332439],[-0.053055036813021,-0.11893625557423,0.27998641133308]],[[-0.013806729577482,-0.033268995583057,-0.058185927569866],[-0.22095389664173,-0.14214296638966,-0.043014258146286],[0.0013859815662727,0.039896819740534,-0.013189460150898]]],[[[-0.11184500902891,-0.067090898752213,0.054405648261309],[0.14070636034012,-0.09446669369936,-0.10778855532408],[0.074953399598598,0.076697789132595,-0.045050475746393]],[[-0.019812900573015,-0.1509934514761,0.030884176492691],[-0.13974261283875,-0.16272567212582,-0.19559596478939],[-0.023614156991243,-0.14182868599892,-0.0076696225441992]],[[-0.11905107647181,0.053222693502903,-0.026094991713762],[0.06518017500639,0.026497036218643,0.051258124411106],[-0.049503535032272,0.015729842707515,-0.042036782950163]],[[-0.023332292214036,0.013214595615864,0.080222316086292],[-0.11186666786671,-0.13680046796799,0.086354292929173],[-0.0017942346166819,-0.087850026786327,-0.18353562057018]],[[-0.17855867743492,-0.052983790636063,-0.085398353636265],[-0.081428833305836,-0.13059724867344,-0.17204727232456],[-0.11489398032427,-0.018580511212349,0.0086924834176898]],[[0.070110678672791,-0.12890709936619,0.081000842154026],[0.07270459830761,0.090174846351147,0.027213083580136],[-0.067820601165295,0.1649956703186,0.0069539248943329]],[[-0.003237638855353,-0.034838158637285,0.0066781067289412],[-0.031216755509377,-0.013330962508917,0.014683812856674],[0.11740133911371,-0.098097041249275,0.0091840829700232]],[[0.038215205073357,-0.041224509477615,0.070966988801956],[-0.044114612042904,-0.098877847194672,0.042098764330149],[0.020410388708115,0.015924921259284,0.034346871078014]],[[0.02571702376008,0.082322351634502,0.022276375442743],[-0.078046910464764,-0.052645433694124,-0.041946094483137],[-0.09877697378397,0.06098910421133,0.01360366679728]],[[-0.014381654560566,-0.092824831604958,-0.058611381798983],[-0.015391187742352,0.066265344619751,-0.082353830337524],[0.016924396157265,-0.18719483911991,-0.06700587272644]],[[-0.090106301009655,-0.0054086111485958,0.063349418342113],[0.031936727464199,0.099290378391743,0.025125039741397],[-0.075742557644844,0.0029610262718052,-0.026041354984045]],[[0.0069056586362422,-0.021326873451471,-0.033560954034328],[0.13729824125767,0.0053797052241862,-0.094740860164165],[0.053054079413414,-0.050768241286278,-0.021411634981632]],[[0.11585676670074,-0.060629043728113,0.0094500724226236],[-0.073003187775612,0.055243782699108,-0.29308703541756],[-0.011334873735905,0.14395023882389,-0.056378845125437]],[[-0.09705512970686,0.05942515656352,0.053895585238934],[-0.055660758167505,0.023654628545046,-0.10978935658932],[-0.080247148871422,0.11780266463757,0.075012445449829]],[[0.020034562796354,-0.15982048213482,0.041430126875639],[-0.030039861798286,-0.04782598093152,-0.019837828353047],[0.024660676717758,-0.051577061414719,0.17949631810188]],[[-0.0061596748419106,-0.07345262169838,-0.028498584404588],[-0.10233505815268,0.031208166852593,-0.060484945774078],[-0.057961836457253,-0.04242255166173,0.058124974370003]],[[0.011551631614566,0.04835220053792,0.063176609575748],[0.014614369720221,-0.15352399647236,-0.053942676633596],[0.078535094857216,0.1037780046463,-0.098637491464615]],[[0.050141848623753,0.038180164992809,0.079665169119835],[0.018180530518293,-0.088465832173824,0.14670512080193],[-0.083829686045647,-0.044339645653963,-0.036922078579664]],[[0.10930011421442,0.067423902451992,-0.045470133423805],[-0.098403371870518,-0.058544456958771,-0.11907728761435],[-0.12317412346601,0.12922869622707,-0.011244012974203]],[[-0.043938428163528,-0.02232800796628,-0.0057409941218793],[-0.030347118154168,0.10422593355179,-0.022320291027427],[-0.082096725702286,-0.023597689345479,0.11812444776297]],[[-0.0040979734621942,0.039738111197948,0.075047731399536],[-0.12063078582287,0.017956035211682,-0.052471250295639],[-0.013651974499226,0.048742026090622,-0.015621799044311]],[[0.097111091017723,-0.033254936337471,-0.050611849874258],[-0.079077526926994,0.056109949946404,0.021322777494788],[-0.028612064197659,-0.089105911552906,0.14577083289623]],[[-0.056797754019499,-0.046698339283466,-0.072956256568432],[0.040324110537767,-0.050723396241665,0.074052184820175],[0.049644459038973,0.038042776286602,-0.017775589600205]],[[-0.080308653414249,0.021610489115119,0.10328406095505],[-0.10620440542698,0.15178282558918,0.04300893470645],[-0.072494693100452,0.072824954986572,-0.052978169173002]],[[-0.049508724361658,-0.030702712014318,-0.047643218189478],[0.042936328798532,0.045045908540487,-0.083608321845531],[0.045012298971415,0.072705000638962,0.014616951346397]],[[0.078010030090809,0.082569420337677,-0.0057624713517725],[-0.022842898964882,0.0183967910707,-0.011032641865313],[0.051943551748991,-0.075443625450134,-0.07436428964138]],[[0.05674447491765,0.02546139061451,-0.13829556107521],[0.024908388033509,-0.11130651831627,-0.016299245879054],[0.058787912130356,0.028012095019221,0.045602072030306]],[[0.032019007951021,-0.05733510479331,-0.02500100620091],[-0.052183296531439,-0.051751777529716,0.085822716355324],[-0.045742206275463,0.051892913877964,0.076828882098198]],[[-0.018973369151354,0.050064016133547,0.12453804165125],[-0.072134621441364,-0.02823543176055,0.12146300077438],[0.097302965819836,0.082592442631721,0.022818760946393]],[[0.03639642894268,-0.11140391975641,-0.019916290417314],[-0.066147446632385,0.055582769215107,0.066913597285748],[0.041458923369646,-0.031217940151691,-0.019128870218992]],[[-0.10645956546068,0.033220428973436,-0.013911279849708],[-0.011920704506338,0.002982966369018,0.031087532639503],[0.0048269173130393,0.11212339997292,-0.010495509020984]],[[0.054994408041239,0.11058734357357,-0.027809575200081],[0.13410790264606,-0.084490187466145,-0.0593401491642],[-0.050996903330088,-0.049712426960468,-0.0739825963974]]],[[[0.0056813969276845,-0.0063674384728074,0.099684871733189],[-0.11706253886223,-0.27795100212097,0.2701680958271],[-0.063016153872013,-0.46233201026917,0.079582147300243]],[[-0.11872547119856,0.079561769962311,-0.25403165817261],[-0.0083527034148574,0.075615331530571,0.11424451321363],[-0.12701953947544,0.10342364758253,0.048800196498632]],[[-0.27434220910072,0.05328319221735,-0.067241966724396],[0.060452163219452,0.063371166586876,0.14721471071243],[-0.099399842321873,-0.18772412836552,-0.15327841043472]],[[-0.20850336551666,-0.18865025043488,0.12162037938833],[-0.082981377840042,0.055746767669916,-0.029913078993559],[0.16789375245571,-0.072264797985554,-0.019743165001273]],[[0.050458412617445,-0.051076527684927,-0.0081724505871534],[0.054881446063519,-0.19974671304226,-0.036973387002945],[-0.010666916146874,0.062091592699289,0.013819246552885]],[[-0.0022173838224262,-0.068973019719124,0.02307884581387],[0.09532605111599,0.069275468587875,-0.23482076823711],[-0.19798815250397,0.026068603619933,0.051276996731758]],[[-0.034004002809525,-0.015216974541545,-0.39609462022781],[0.11496412754059,0.029767028987408,-0.0074115116149187],[-0.093193121254444,-0.14676694571972,-0.014362221583724]],[[0.080097772181034,0.041619632393122,-0.10965780168772],[0.067848511040211,-0.039071448147297,-0.0038243234157562],[-0.048742383718491,0.01349962502718,-0.04865900427103]],[[0.061330061405897,-0.062211610376835,0.11331537365913],[0.02682052180171,-0.084466688334942,0.19345727562904],[0.13715779781342,-0.16663488745689,-0.0014796120813116]],[[-0.065831497311592,-0.1290528178215,0.012360878288746],[0.0072053228504956,0.065610766410828,0.16223926842213],[-0.036644857376814,0.026458274573088,0.13164348900318]],[[-0.14324608445168,0.025760471820831,-0.20540003478527],[0.031374093145132,0.10828787088394,0.010681610554457],[-0.071503631770611,0.01271906401962,0.07304710149765]],[[-0.22149658203125,0.11498588323593,0.063298977911472],[0.068092748522758,0.020964300259948,-0.032408136874437],[-0.01360479183495,0.089075215160847,-0.039223432540894]],[[-0.055706948041916,0.066857598721981,0.00030719727510586],[-0.053690101951361,-0.014749858528376,-0.12604814767838],[-0.14020511507988,0.07661147415638,0.12421663850546]],[[0.096989616751671,-0.0019240676192567,-0.11534888297319],[-0.026780135929585,-0.030423451215029,0.0055983127094805],[0.093652069568634,0.061483357101679,-0.061603639274836]],[[-0.042092107236385,0.021580940112472,-0.10229807347059],[0.073092214763165,0.037108134478331,-0.085999682545662],[0.0029777444433421,-0.10653599351645,-0.10752384364605]],[[-0.18213868141174,-0.15447150170803,-0.1815071105957],[-0.16430075466633,0.065723702311516,0.048973921686411],[-0.24001124501228,0.23410011827946,0.062984347343445]],[[-0.13644105195999,-0.15155348181725,0.17018137872219],[-0.023722194135189,0.031316142529249,0.0065307868644595],[0.089492365717888,0.01875851675868,-0.14774625003338]],[[-0.044975589960814,0.23477144539356,-0.015378473326564],[0.17389585077763,0.0044890493154526,0.029468918219209],[0.0023041986860335,0.014649680815637,-0.069219909608364]],[[0.026758518069983,-0.096776261925697,0.035579513758421],[-0.099383734166622,-0.023648323491216,0.12440253049135],[0.067397013306618,0.12751576304436,-0.049595147371292]],[[-0.15541112422943,0.088166728615761,-0.055341418832541],[-0.15986874699593,0.016725096851587,0.173240467906],[0.032158777117729,0.01689207740128,-0.13197150826454]],[[-0.26643019914627,-0.20910453796387,0.12342485040426],[-0.21313309669495,0.13145244121552,0.014611928723752],[-0.18730428814888,0.049166914075613,0.00049364578444511]],[[0.083847090601921,-0.092779874801636,-0.2331694662571],[0.13474820554256,0.078428536653519,0.036910831928253],[0.05622935667634,0.099340975284576,-0.058396559208632]],[[0.021069042384624,0.065975241363049,-0.31775853037834],[0.029828976839781,0.13732869923115,-0.037222780287266],[-0.15326280891895,0.086197569966316,-0.023399375379086]],[[0.0078980680555105,-0.081037022173405,-0.10162141174078],[0.023004619404674,0.098249934613705,-0.10653897374868],[-0.02469801530242,-0.11066734790802,-0.067851282656193]],[[-0.0098974807187915,0.19929648935795,0.074985846877098],[-0.027081117033958,-0.037578709423542,-0.17176721990108],[0.12847135961056,-0.071145176887512,0.0068497061729431]],[[0.06186268478632,-0.043233390897512,-0.14825533330441],[0.00015879649436101,-0.029162602499127,-0.035661142319441],[0.14576575160027,0.10610818117857,-0.096096582710743]],[[-0.069177389144897,0.11168868094683,0.11809431016445],[-0.18021179735661,0.0019057639874518,0.1009421274066],[-0.36483532190323,-0.014593373052776,0.060204945504665]],[[-0.16164538264275,-0.024695415049791,0.18453232944012],[0.051567278802395,0.11839561164379,-0.10594162344933],[-0.075683131814003,-0.018148481845856,-0.090365916490555]],[[0.11094796657562,0.11323207616806,-0.001171555602923],[0.058357588946819,-0.0085770739242435,0.041386913508177],[0.15678222477436,-0.21251954138279,-0.22428648173809]],[[-0.013782699592412,-0.076454430818558,0.005984874907881],[-0.046668734401464,0.013781202025712,0.1065706089139],[-0.068573333323002,0.049693554639816,0.015732603147626]],[[0.061636846512556,-0.087936997413635,-0.052640464156866],[0.057680815458298,-0.0081764766946435,-0.098380662500858],[-0.083384826779366,0.091536141932011,0.015723172575235]],[[0.016876230016351,0.074055142700672,-0.035620801150799],[-0.079292632639408,0.073564365506172,-0.011346369050443],[0.045788165181875,-0.23922453820705,-0.41557765007019]]],[[[0.025023717433214,0.07335902005434,-0.059247530996799],[-0.24645456671715,0.06569492071867,0.13862438499928],[-0.073600597679615,0.14323206245899,0.094469547271729]],[[-0.10225656628609,0.020828019827604,0.052867479622364],[0.074244529008865,-0.073272652924061,-0.11917567253113],[0.20019108057022,0.17656418681145,-0.16437257826328]],[[-0.19662424921989,-0.033371265977621,-0.049169588834047],[0.033979889005423,0.10688830912113,0.0713260024786],[0.045172553509474,0.050597414374352,-0.056147392839193]],[[0.040149375796318,0.25292950868607,0.025995509698987],[-0.029785439372063,-0.068261988461018,-0.21557483077049],[-0.029644830152392,0.038305047899485,-0.11259369552135]],[[0.11784386634827,0.057649292051792,-0.10853245854378],[0.087422333657742,0.1141036003828,0.023807158693671],[-0.11386538296938,0.06496973335743,0.0054435641504824]],[[0.01497308164835,0.0052927238866687,-0.090106584131718],[-0.14831957221031,-0.080375239253044,-0.06328808516264],[-0.22329956293106,0.024476163089275,0.20085574686527]],[[-0.0060408157296479,0.1250901222229,0.006147722247988],[-0.15091544389725,0.052165303379297,0.020641149953008],[0.032888107001781,-0.0033568509388715,-0.037979796528816]],[[-0.054708853363991,-0.011510815471411,-0.00024997070431709],[0.061618346720934,-0.026058100163937,0.0044122133404016],[-0.065659500658512,0.019589366391301,0.10441061109304]],[[0.016469096764922,0.099314793944359,0.022221010178328],[0.043021660298109,-0.015781085938215,-0.046681862324476],[-0.063954450190067,0.10519375652075,-0.011401972733438]],[[0.01559944730252,-0.023028047755361,-0.057628404349089],[-0.020253179594874,0.067937068641186,-0.11755152791739],[0.051250088959932,-0.020378220826387,-0.048933163285255]],[[0.12474976480007,-0.040667191147804,0.011775284074247],[-0.12190275639296,0.052146479487419,0.023356053978205],[0.10308631509542,0.0038589865434915,-0.055805787444115]],[[-0.086972370743752,-0.057903900742531,-0.039532344788313],[0.079744122922421,0.044802792370319,0.063182361423969],[-0.019555311650038,-0.098196730017662,0.07776316255331]],[[-0.0043422193266451,0.027442324906588,0.028688134625554],[0.060369409620762,-0.094104677438736,-0.04997493326664],[0.024726808071136,0.013099507428706,0.13700458407402]],[[0.00013587134890258,0.12024902552366,0.14547756314278],[-0.069303058087826,0.043579626828432,-0.088099673390388],[0.0063806185498834,-0.12890733778477,0.0657978951931]],[[-0.026343422010541,0.22010853886604,-0.048295620828867],[-0.038442388176918,-0.097702458500862,-0.080921970307827],[-0.090480618178844,-0.0073737283237278,0.17221410572529]],[[0.43281248211861,-0.22406511008739,-0.1483663469553],[0.45174923539162,-0.24584345519543,-0.19448633491993],[-0.057163678109646,-0.19622260332108,0.090736493468285]],[[-0.013435888104141,0.020286222919822,-0.039259277284145],[0.0029309317469597,-0.0010829828679562,0.0037299050018191],[-0.037002272903919,-0.13049760460854,-0.074785798788071]],[[-0.018647521734238,-0.046808615326881,0.046396434307098],[0.0069916215725243,-0.056874494999647,0.042301885783672],[0.0060331607237458,-0.010853366926312,0.080756701529026]],[[0.024547699838877,-0.00068509968696162,-0.026172379031777],[0.021139495074749,-0.073661483824253,-0.041074778884649],[0.051416598260403,-0.067451134324074,0.091776967048645]],[[0.098355785012245,-0.2501859664917,-0.032710019499063],[0.16305595636368,-0.17425735294819,0.010145298205316],[0.077736407518387,-0.015986997634172,0.14981308579445]],[[-0.057060524821281,0.14640891551971,0.14268189668655],[0.081576772034168,-0.19955672323704,0.044656403362751],[0.05590733140707,-0.17214226722717,0.047794323414564]],[[0.12724120914936,-0.086091056466103,0.0054238601587713],[-0.12913383543491,0.0056950249709189,-0.062911793589592],[0.043887302279472,0.10099060088396,0.082590453326702]],[[-0.00059178256196901,0.0098385438323021,-0.06438859552145],[-0.066953763365746,0.048905342817307,0.11636628210545],[-0.015341254882514,0.084711320698261,-0.050003290176392]],[[0.014404276385903,0.094678945839405,0.010087361559272],[0.066020928323269,0.034432470798492,0.026709185913205],[-0.14591693878174,0.088715024292469,-0.091755494475365]],[[0.03238458558917,0.15989804267883,0.067229270935059],[-0.043115723878145,-0.025240771472454,-0.024411687627435],[-0.065966241061687,-0.0032688700594008,-0.1284114420414]],[[-0.11955349892378,-0.051524996757507,-0.096792079508305],[0.067932769656181,0.14393028616905,0.0093755787238479],[0.011008933186531,-0.0097930338233709,-0.028946733102202]],[[0.020758660510182,0.045710396021605,0.15275314450264],[0.06998423486948,-0.015886710956693,0.067643597722054],[0.10760639607906,-0.1926758736372,-0.15364421904087]],[[-0.063401728868484,-0.11877001821995,-0.080967865884304],[-0.24661469459534,-0.11490367352962,-0.023291034623981],[-0.1122677847743,0.12000032514334,-0.10840965807438]],[[-0.09395232796669,-0.022154983133078,0.087958827614784],[-0.048718959093094,0.24968439340591,0.037953604012728],[0.0174719709903,-0.13089391589165,0.061206638813019]],[[0.02543400041759,-0.078304685652256,0.079133883118629],[-0.043071672320366,0.063523501157761,-0.024418843910098],[-0.12614868581295,0.04254886880517,-0.00626733712852]],[[0.10663889348507,0.028649551793933,-0.0073053636588156],[0.14483854174614,0.032068118453026,0.017609348520637],[0.051062662154436,-0.1601334810257,-0.1716713309288]],[[0.064708240330219,0.047347851097584,0.088445566594601],[0.018394934013486,-0.024371834471822,-0.26865056157112],[0.092387355864048,-0.011198933236301,0.030167354270816]]],[[[-0.038988303393126,0.043259229511023,0.10935585945845],[-0.061836425215006,-0.0033802988473326,-0.12010376155376],[0.098917685449123,0.017065290361643,-0.12014904618263]],[[-0.050912655889988,-0.057933643460274,0.070631854236126],[0.0018788693705574,-0.013176902197301,0.16971515119076],[-0.092559039592743,-0.032756205648184,-0.029613811522722]],[[0.1641052365303,0.067840479314327,-0.041479032486677],[-0.35867717862129,0.0040300535038114,-0.16489094495773],[-0.23329503834248,-0.0015815255464986,-0.086894981563091]],[[-0.14902751147747,-0.20984706282616,-0.012498171068728],[0.040721450001001,-0.04019558802247,0.014181633479893],[0.1565852612257,-0.0040368996560574,-0.05350948125124]],[[-0.11169304698706,0.1633071154356,-0.14222943782806],[0.10699521750212,-0.1692627966404,0.12486354261637],[0.0053708152845502,0.027284767478704,-0.082633256912231]],[[-0.090495452284813,0.046115305274725,0.082016967236996],[-0.0089935697615147,0.0076552992686629,-0.00018401761190034],[0.0007508109556511,-0.034998144954443,-0.026747472584248]],[[0.078775405883789,0.068284258246422,0.1129931434989],[0.05994489043951,-0.080859765410423,-0.11132028698921],[-0.075289309024811,0.0046741547994316,0.0061193332076073]],[[0.02389121055603,0.069507487118244,0.024034697562456],[0.014083955436945,0.014494836330414,-0.20954279601574],[0.0060170986689627,-0.10898070782423,-0.02136948145926]],[[-0.14072026312351,0.099188283085823,-0.12833984196186],[0.02960105240345,-0.023794004693627,0.087759532034397],[0.18200539052486,0.023989988490939,0.17708414793015]],[[-0.13812719285488,-0.036654815077782,0.043320503085852],[-0.064415574073792,0.025491377338767,0.060442626476288],[0.096752010285854,0.063707076013088,-0.019684666767716]],[[0.0027611749246716,0.1566104143858,-0.18824389576912],[-0.066016316413879,-0.0074180965311825,-0.11330865323544],[0.19279734790325,-0.0052075418643653,-0.022366655990481]],[[0.01517862547189,0.096181437373161,-0.15630538761616],[0.029143434017897,-0.068227544426918,0.06975632160902],[-0.11406783014536,0.05978824570775,0.20885862410069]],[[-0.059708934277296,0.0023968841414899,0.24514450132847],[-0.0048802820965648,-0.14924232661724,0.07669473439455],[0.090757042169571,0.046492960304022,-0.044405810534954]],[[0.085001848638058,0.014198482967913,-0.085032030940056],[0.07118122279644,0.084125943481922,-0.15354515612125],[0.074722930788994,-0.0638267993927,0.054963875561953]],[[-0.065774649381638,0.025592379271984,0.070497296750546],[-0.091196902096272,-0.030078612267971,0.10775845497847],[-0.10983955860138,0.11249589174986,0.046464115381241]],[[-0.038891557604074,0.21668662130833,0.046099048107862],[-0.09871668368578,-0.10217700153589,-0.087540172040462],[0.11023083329201,0.086288042366505,-0.019792634993792]],[[-0.00040002533933148,0.029532920569181,-0.011271405033767],[0.10100762546062,0.090174727141857,0.15915779769421],[-0.011592808179557,0.010127971880138,0.063893169164658]],[[-0.073210701346397,0.083299934864044,0.064270541071892],[0.04934686422348,0.1505361199379,-0.14221847057343],[0.08996307849884,0.017708731815219,-0.19180411100388]],[[0.024649517610669,-0.03150500357151,0.035699266940355],[0.095459960401058,0.11876756697893,0.070485517382622],[0.019526472315192,-0.10982674360275,-0.0062820818275213]],[[0.029175249859691,0.14960168302059,0.094335541129112],[-0.11631326377392,-0.043199490755796,-0.035707734525204],[0.043263304978609,-0.042695105075836,-0.11170668900013]],[[0.069596789777279,-0.13695952296257,0.011116943322122],[0.077752992510796,-0.18423680961132,-0.19041733443737],[-0.02765310741961,-0.1767737865448,-0.040788143873215]],[[-0.095928251743317,-0.027193764224648,0.025919357314706],[-0.1320863366127,0.057981133460999,0.038114622235298],[0.13082532584667,0.026016740128398,-0.090916767716408]],[[0.038435839116573,-0.012241340242326,-0.24611519277096],[-0.058473575860262,0.14823690056801,-0.08382722735405],[0.078622907400131,0.026269003748894,-0.11097663640976]],[[-0.03341106325388,-0.040827602148056,-0.040939658880234],[0.016427328810096,-0.05925340950489,-0.010383107699454],[0.09187962859869,0.012632822617888,0.108782812953]],[[-0.11651729047298,0.011975807137787,-0.13711103796959],[-0.087702348828316,0.04237562790513,-0.042035669088364],[-0.090715661644936,0.12990979850292,0.1055169031024]],[[-0.13617011904716,0.19808502495289,-0.0559471398592],[0.21738977730274,-0.0098974872380495,-0.24666205048561],[-0.016371704638004,0.025642389431596,-0.17822073400021]],[[-0.0014116410166025,-0.009939206764102,-0.24109549820423],[0.11516518890858,0.053870763629675,-0.040184117853642],[-0.050822701305151,-0.051971886307001,-0.062006708234549]],[[-0.24751283228397,-0.08758195489645,0.084710732102394],[-0.014707049354911,0.047274127602577,0.092508353292942],[-0.29721555113792,-0.10723935067654,-0.10628823190928]],[[0.086261950433254,0.07191077619791,0.014584360644221],[0.027291495352983,0.054937563836575,-0.069807976484299],[-0.14938342571259,-0.067688941955566,-0.10992678999901]],[[-0.035576794296503,0.096410147845745,0.13154031336308],[-0.099696390330791,0.014739389531314,0.034321110695601],[0.11095470935106,0.015955680981278,-0.078855231404305]],[[-0.046044155955315,-0.022133536636829,-0.1397959291935],[-0.097714282572269,-0.065238513052464,-0.043265372514725],[0.11067415028811,0.042019449174404,0.10675720870495]],[[-0.041726052761078,0.030765721574426,0.067444935441017],[-0.027581026777625,0.026871550828218,-0.025543343275785],[-0.11473367363214,-0.074970036745071,-0.020154310390353]]],[[[-0.060931291431189,0.049264598637819,-0.14203527569771],[-0.10492752492428,0.10145104676485,0.092695392668247],[-0.027467163279653,-0.014783573336899,-0.0069499970413744]],[[0.017635645344853,0.04876796901226,-0.028032505884767],[0.11198847740889,-0.060599248856306,-0.055886775255203],[0.21819549798965,-0.11100259423256,-0.09956206381321]],[[0.069834940135479,-0.032812427729368,0.10128594189882],[0.017829651013017,-0.0053887711837888,0.040141426026821],[-0.022332986816764,-0.0067627122625709,0.013766134157777]],[[0.30160909891129,-0.077951923012733,-0.28863629698753],[0.037382449954748,0.0048765046522021,0.01147392205894],[-0.067477904260159,-0.2115077227354,-0.038977332413197]],[[-0.013621870428324,0.03818229213357,-0.030728578567505],[-0.082123965024948,-0.11136157810688,-0.028023779392242],[0.078469499945641,0.045343901962042,0.10867221653461]],[[-0.12912030518055,0.05398340895772,0.048428367823362],[0.0037102191708982,-0.093138486146927,-0.0015167715027928],[0.093843944370747,0.33685117959976,0.073335200548172]],[[0.027835257351398,0.007259932346642,-0.024197967723012],[-0.15372580289841,0.058991853147745,0.049753230065107],[0.010733431205153,0.10806412994862,0.031194685027003]],[[-0.014590405859053,0.16446423530579,-0.038840088993311],[-0.023495253175497,-0.009235542267561,0.065079547464848],[-0.032100826501846,-0.16626487672329,-0.015848375856876]],[[0.12641805410385,-0.034233644604683,-0.1717603802681],[0.023367242887616,-0.065458454191685,0.040189318358898],[0.14311178028584,-0.14544780552387,-0.035531371831894]],[[0.087814651429653,0.0058438791893423,-0.077456973493099],[-0.029444687068462,-0.025673760101199,0.12214045226574],[-0.13198928534985,-0.064323700964451,0.14327242970467]],[[-0.10216053575277,-0.052766501903534,0.087404660880566],[0.12205060571432,0.027163580060005,0.0071968217380345],[-0.20455951988697,0.035297699272633,-0.031889952719212]],[[-0.19481360912323,-0.032468661665916,0.020002126693726],[-0.13198705017567,0.021386675536633,-0.066194765269756],[0.12149080634117,0.00083948910469189,-0.0069958311505616]],[[-0.042094618082047,0.085904322564602,0.0024707859847695],[0.1024656817317,-0.062799900770187,-0.20312057435513],[0.095178201794624,0.041063267737627,-0.031768426299095]],[[0.18977999687195,-0.12965439260006,-0.015953170135617],[0.046114098280668,0.092418506741524,-0.11393012106419],[-0.10018800199032,-0.09647349268198,0.068941667675972]],[[0.06166110932827,-0.10536247491837,0.11307669430971],[-0.059045974165201,0.19850894808769,-0.064611628651619],[0.036388609558344,-0.04453119635582,-0.09483839571476]],[[-0.023184331133962,-0.0062709050253034,-0.1545744240284],[0.047702796757221,0.051909413188696,-0.082427151501179],[-0.16364739835262,-0.126719430089,-0.0079411873593926]],[[-0.1669474542141,-0.090128473937511,-0.01204404886812],[-0.082806408405304,-0.051872171461582,0.04571783170104],[-0.046545132994652,0.058963660150766,-0.055983372032642]],[[-0.10290635377169,-0.0052368529140949,0.061214938759804],[-0.07387588173151,0.070505931973457,-0.028016207739711],[0.06136366724968,0.088252671062946,-0.0990926399827]],[[-0.089107230305672,-0.12135077267885,0.11125873029232],[0.1157243847847,-0.014446220360696,0.095227964222431],[-0.11276490986347,0.011573753319681,-0.016296742483974]],[[0.13185961544514,-0.12589927017689,-0.069744855165482],[-0.051105085760355,-0.013779788278043,-0.010528992861509],[0.046983242034912,0.18404185771942,0.056094996631145]],[[0.10593646764755,0.06271293759346,-0.016891682520509],[-0.12570160627365,0.096977204084396,-0.048475526273251],[0.15903115272522,0.0033646051306278,-0.040117751806974]],[[0.031296659260988,-0.15152624249458,0.13425229489803],[0.085935719311237,0.099014177918434,-0.061587281525135],[-0.029732653871179,0.11557634919882,-0.088464871048927]],[[-0.025653958320618,-0.10444630682468,0.077167063951492],[-0.17074497044086,-0.1372459679842,0.16851380467415],[0.019999567419291,0.093996673822403,0.056846108287573]],[[-0.04036208987236,0.017976762726903,0.17119251191616],[-0.15022590756416,-0.11424411088228,-0.048421040177345],[0.060461342334747,-0.068466491997242,0.077939562499523]],[[-0.040744457393885,0.081211991608143,-0.121966406703],[-0.0092023797333241,-0.10933125019073,0.083145894110203],[0.12756319344044,0.16259522736073,-0.16779711842537]],[[-0.022539272904396,-0.08488917350769,-0.20565049350262],[-0.14364396035671,-0.037930127233267,-0.0841423869133],[0.050964571535587,0.075063437223434,0.2969850897789]],[[0.014863526448607,-0.20483177900314,-0.13873314857483],[0.2395825535059,0.14010252058506,-0.12254280596972],[0.1132175847888,-0.074039556086063,-0.1314190775156]],[[-0.2983455657959,-0.25937896966934,-0.38622090220451],[0.0093760471791029,0.14951202273369,0.059956479817629],[0.083266481757164,0.11946192383766,-0.17352119088173]],[[-0.078335255384445,0.11504982411861,-0.074717707931995],[0.064865589141846,-0.07068607956171,-0.16455133259296],[0.26467368006706,0.11162417382002,-0.098522745072842]],[[0.0042384434491396,-0.0059307035990059,-0.14908894896507],[0.10774890333414,-0.094897657632828,-0.010361693799496],[0.10100378841162,-0.082223281264305,-0.12399157136679]],[[-0.039812166243792,0.082143999636173,-0.0470428802073],[-0.035722363740206,-0.0048953159712255,0.058641888201237],[0.089169263839722,0.014931329526007,-0.054502870887518]],[[0.034345950931311,0.13799071311951,0.04960809648037],[0.057576600462198,-0.053746122866869,-0.065372809767723],[-0.056055687367916,0.11639336496592,-0.034305840730667]]],[[[0.044437389820814,0.12521056830883,0.0013674927176908],[0.045532569289207,-0.103166423738,-0.026657519862056],[-0.092453561723232,0.099493585526943,-0.069148026406765]],[[0.099146574735641,0.20640689134598,0.2507688999176],[0.021651145070791,-0.055266987532377,-0.12437094002962],[-0.1086497604847,0.15246327221394,0.0032805458176881]],[[0.13684085011482,0.11650091409683,0.013491929508746],[-0.058867488056421,0.088056571781635,-0.12647211551666],[0.010967081412673,-0.12240991741419,0.010712252929807]],[[0.23988960683346,-0.001174372038804,-0.0067522516474128],[-0.33927303552628,0.29871132969856,-0.01259505096823],[-0.029027946293354,0.17638303339481,0.087530627846718]],[[0.074086308479309,-0.012484963983297,-0.039833176881075],[-0.1119132861495,0.1374896466732,0.10156792402267],[-0.13940347731113,0.11716267466545,-0.054628893733025]],[[-0.010841803625226,-0.13422568142414,-0.063071243464947],[-0.079928107559681,-0.21255797147751,-0.054476782679558],[0.059277687221766,-0.18310824036598,0.0024885586462915]],[[-0.10909041762352,0.11935722827911,0.13309752941132],[-0.0042510628700256,0.024028025567532,0.16174018383026],[-0.030593646690249,0.055846329778433,-0.062365166842937]],[[0.091600321233273,-0.16414067149162,0.10828168690205],[-0.14325667917728,0.020003728568554,-0.084623135626316],[0.048063542693853,0.040997676551342,-0.090995170176029]],[[0.070693470537663,-0.060686003416777,-0.04582492262125],[0.07355322688818,0.087528042495251,-0.087844334542751],[0.10399870574474,-0.067066796123981,-0.18433174490929]],[[-0.12182771414518,-0.11008704453707,0.023707276210189],[-0.070742040872574,0.015867019072175,0.060412418097258],[0.03079647384584,-0.036973658949137,-0.023430673405528]],[[0.023496991023421,0.030259879305959,-0.068586826324463],[-0.022351484745741,-0.13852658867836,-0.10694548487663],[0.030678672716022,0.060949917882681,0.05084840580821]],[[0.079954147338867,-0.026638075709343,0.057682722806931],[0.045747518539429,-0.15511079132557,0.082581296563148],[-0.23272597789764,0.00026578814140521,0.0090939719229937]],[[0.048247892409563,0.024450665339828,-0.0074484823271632],[0.10928322374821,-0.078203156590462,-0.073889225721359],[-0.11904078722,0.05846593528986,0.15556508302689]],[[0.083746552467346,-0.089423283934593,-0.08279525488615],[-0.066823072731495,-0.056751001626253,0.003675163956359],[-0.0011860124068335,0.023491652682424,0.080381788313389]],[[-0.010121462866664,0.17553088068962,0.066921912133694],[-0.12223345786333,0.25493600964546,-0.020514529198408],[0.068349182605743,0.021151468157768,-0.090499110519886]],[[0.31652194261551,-0.097987115383148,0.38020321726799],[0.020639108493924,0.22516813874245,0.19958421587944],[-0.044409539550543,-0.014927086420357,-0.15887033939362]],[[0.031003592535853,0.0061439955607057,0.040186524391174],[-0.090968325734138,0.049006216228008,-0.18715570867062],[0.2960889339447,-0.045842994004488,0.024958709254861]],[[-0.062546342611313,-0.10059835761786,-0.016102645546198],[-0.15069761872292,0.12056194245815,0.13863280415535],[-0.068510718643665,0.007307602558285,0.012313668616116]],[[-0.065021388232708,0.039484761655331,-0.15622334182262],[0.15045638382435,0.23987604677677,-0.17720317840576],[-0.094830475747585,-0.039888292551041,-0.07611870020628]],[[-0.043669983744621,0.075050346553326,0.097873844206333],[0.075990840792656,-0.0013827211223543,-0.068697907030582],[0.083846665918827,-0.04706808924675,-0.010677821934223]],[[0.019546067342162,0.088153555989265,-0.08444606512785],[0.0003146899107378,0.021995563060045,0.095252148807049],[0.06773803383112,0.055218912661076,-0.20187948644161]],[[-0.094299532473087,0.21052427589893,0.043751399964094],[0.039617624133825,-0.085427336394787,-0.029226401820779],[-0.080254912376404,0.056429617106915,-0.075222849845886]],[[-0.070194981992245,0.23185841739178,0.078977473080158],[0.062930144369602,0.039740014821291,-0.24280318617821],[-0.094253107905388,0.10515157878399,-0.12598393857479]],[[-0.26477637887001,0.050820343196392,0.10688459873199],[-0.11441246420145,-0.0054292608983815,-0.084328643977642],[0.050237569957972,0.095046885311604,-0.093975849449635]],[[0.064185574650764,0.12973827123642,0.057848520576954],[0.0099332565441728,-0.15185758471489,-0.18103800714016],[-0.079355731606483,0.060463603585958,0.030730554834008]],[[0.056859195232391,0.17339405417442,0.063332229852676],[-0.27082335948944,-0.13029292225838,0.12835671007633],[0.046662140637636,0.12683095037937,-0.20797447860241]],[[0.10764555633068,0.15736369788647,0.16552244126797],[-0.016907222568989,-0.14837448298931,0.14415377378464],[0.15428678691387,0.092619717121124,0.019740564748645]],[[0.11210266500711,-0.040855910629034,0.018382661044598],[0.092476353049278,0.10110609978437,0.063810810446739],[-0.070252597332001,0.088476628065109,0.036864295601845]],[[0.067646734416485,0.026238899677992,-0.018785612657666],[-0.084088876843452,-0.035771504044533,-0.025657881051302],[0.091793768107891,0.31928330659866,-0.11458034813404]],[[0.057584516704082,0.23743826150894,-0.069963812828064],[-0.023923607543111,-0.026556745171547,0.072181895375252],[-0.050644032657146,-0.023282006382942,0.028371922671795]],[[-0.14143018424511,-0.045191578567028,-0.10987316817045],[0.11352040618658,0.10715816169977,-0.041987091302872],[-0.093298725783825,0.06408017873764,-0.064774848520756]],[[0.098715737462044,-0.062307734042406,0.020651927217841],[0.046538837254047,0.012441536411643,0.041650667786598],[0.0096548330038786,0.070548467338085,0.15133066475391]]],[[[-0.077779173851013,-0.032638322561979,0.023687170818448],[-0.060979437083006,0.033069640398026,-0.066083110868931],[-0.089531257748604,-0.081303209066391,-0.00064885441679507]],[[-0.077219434082508,0.062609031796455,0.10893553495407],[0.16768403351307,0.043582126498222,-0.05107706040144],[-0.018357938155532,0.066016465425491,0.18663029372692]],[[-0.045897785574198,-0.019507205113769,0.06883005797863],[0.00079469208139926,-0.013692651875317,0.1812519133091],[-0.028463067486882,-0.03968608751893,0.039653863757849]],[[0.3793797492981,0.08984998613596,0.065977185964584],[-0.057976756244898,0.0096613420173526,-0.16393226385117],[0.12062976509333,0.045703269541264,-0.0650954246521]],[[-0.087246529757977,-0.094931669533253,-0.11523498594761],[-0.015178579837084,0.057241223752499,0.09654127061367],[0.070203587412834,-0.037805300205946,-0.071504935622215]],[[-0.056634701788425,0.082707554101944,-0.081844121217728],[-0.15435215830803,0.087877482175827,0.060977585613728],[0.014445620588958,0.052879597991705,-0.04446891322732]],[[-0.19124656915665,-0.022386783733964,0.00091785402037203],[0.055907461792231,0.10422376543283,0.080301463603973],[-0.011803665198386,-0.044125378131866,0.063690632581711]],[[0.0050786710344255,0.16574412584305,-0.0038650673814118],[-0.042770024389029,-0.069455020129681,0.075614310801029],[0.048205677419901,-0.026624878868461,-0.10565038770437]],[[0.17110946774483,-0.13018517196178,0.0092132873833179],[-0.035332225263119,-0.050878264009953,0.0057711782865226],[0.17131222784519,0.083725333213806,0.028038153424859]],[[-0.070263490080833,-0.031425930559635,0.058798380196095],[-0.0035993859637529,-0.11484199762344,-0.01845994964242],[0.0029806348029524,-0.11972045898438,0.040739048272371]],[[-0.16738606989384,0.046322111040354,0.021844385191798],[0.20334529876709,-0.015021014027297,0.10054092109203],[-0.15233898162842,0.041731890290976,-0.11436381191015]],[[0.12165442109108,-0.0023730888497084,-0.12670417129993],[-0.10353983193636,-0.03312399610877,0.032104909420013],[0.030204331502318,0.031023424118757,0.037778843194246]],[[-0.034821584820747,-0.13670378923416,0.021487195044756],[0.12761722505093,-0.036605510860682,0.073433004319668],[-0.0036965461913496,-0.1130987778306,0.18906311690807]],[[-0.23269814252853,-0.025454469025135,0.13850666582584],[-0.10853143036366,0.053803004324436,-0.050428576767445],[0.031180938705802,-0.01651993393898,0.17602887749672]],[[0.027415227144957,0.033673990517855,-0.1968982219696],[0.005632390268147,0.076316550374031,-0.0096821198239923],[0.045652043074369,0.063267461955547,-0.014200550504029]],[[0.075038827955723,0.15902216732502,-0.16401363909245],[0.036916468292475,0.046037711203098,0.071558050811291],[0.038965117186308,-0.11745098233223,0.1018340587616]],[[-0.18010179698467,-0.064185209572315,-0.063384808599949],[0.0065813781693578,-0.018498556688428,-0.025157542899251],[-0.1050074622035,-0.0084732165560126,0.16653560101986]],[[-0.018766796216369,0.091481275856495,0.16045488417149],[-0.068071581423283,0.070224218070507,-0.080303549766541],[0.0050532827153802,0.017525613307953,-0.098797984421253]],[[0.017540287226439,0.023505533114076,0.093816474080086],[-0.051696833223104,0.10254644602537,0.022330341860652],[-0.099116317927837,-0.11591858416796,-0.15377590060234]],[[0.020067255944014,-0.21362543106079,-0.029195999726653],[0.03713309392333,-0.0098192188888788,0.045675665140152],[0.12921074032784,-0.024600068107247,0.10742102563381]],[[0.013355134055018,-0.051736954599619,0.027842232957482],[-0.053301859647036,0.10758523643017,0.11015220731497],[-0.10041320323944,-0.046866320073605,0.083503820002079]],[[-0.13004978001118,-0.069564871490002,0.051081754267216],[0.072672046720982,-0.014151085168123,-0.19011586904526],[0.054124273359776,0.01448589656502,0.10727037489414]],[[0.0060589518398046,0.056417912244797,0.0034829042851925],[-0.045400533825159,-0.045571684837341,-0.025273084640503],[-0.12200921028852,-0.036665126681328,0.040216330438852]],[[0.071220256388187,-0.13234125077724,-0.19206950068474],[-0.012415448203683,0.023646345362067,0.0037341890856624],[-0.2165953963995,-0.12144561856985,-0.038291990756989]],[[0.074906915426254,0.093797326087952,-0.0027346746064723],[0.073869094252586,0.040927089750767,-0.0031521562486887],[-0.0024021284189075,-0.09152364730835,-0.035720951855183]],[[0.02503652125597,-0.14588589966297,0.31840038299561],[0.0081073166802526,-0.072786048054695,0.044825553894043],[0.04746999591589,-0.059700459241867,-0.10536871105433]],[[-0.006324527785182,0.15556839108467,0.025689983740449],[0.11808429658413,-0.15295355021954,-0.075316622853279],[-0.043893836438656,0.027643309906125,0.17634345591068]],[[-0.14270307123661,0.042049203068018,0.03086880594492],[0.051314678043127,0.037095785140991,-0.060469727963209],[-0.10641949623823,-0.059550866484642,0.0057121617719531]],[[0.027716130018234,0.10527946799994,0.026520807296038],[0.12145228683949,0.024707974866033,0.084253676235676],[-0.11429958790541,0.014351893216372,-0.0034070550464094]],[[0.0076800659298897,0.036752738058567,-0.013460954651237],[0.10740299522877,0.043053135275841,0.0083719827234745],[0.013060003519058,-0.074160724878311,0.099508009850979]],[[0.05006255581975,0.15901190042496,0.098130658268929],[-0.0055278087966144,-0.020516213029623,0.12222950905561],[-0.021945612505078,-0.13878829777241,-0.054789248853922]],[[0.035200174897909,0.031642105430365,-0.10695126652718],[-0.121377594769,-0.0047997133806348,-0.16097643971443],[-0.085830472409725,-0.13623702526093,-0.070969000458717]]],[[[-0.13188979029655,-0.21169932186604,-0.23225626349449],[0.0032029093708843,-0.098970465362072,-0.034305140376091],[0.10345656424761,-0.07920977473259,0.036592904478312]],[[-0.10163816064596,0.085097767412663,0.062979593873024],[-0.0022440301254392,-0.02545814961195,-0.052012581378222],[-0.067140817642212,0.065821118652821,0.079336374998093]],[[0.028966408222914,0.078690335154533,-0.095896065235138],[0.03460580855608,-0.36396661400795,-0.098456874489784],[0.010006993077695,-0.042974807322025,-0.0058923829346895]],[[0.018518950790167,-0.26210308074951,-0.22331127524376],[-0.23147924244404,0.074227757751942,0.080507919192314],[-0.0064931809902191,0.23532462120056,0.050345025956631]],[[0.052829623222351,-0.032187834382057,0.015584449283779],[-0.030121397227049,-0.016559407114983,-0.036131154745817],[0.10919909924269,-0.0762784704566,-0.03431810811162]],[[-0.074096404016018,0.039878644049168,0.024018198251724],[0.025802794843912,0.042667098343372,0.068691968917847],[0.18866130709648,0.13292053341866,-0.12647205591202]],[[0.11626101285219,-0.020657230168581,0.26757374405861],[0.24198731780052,-0.11737352609634,-0.092129297554493],[-0.24975024163723,-0.35982090234756,-0.023448137566447]],[[0.011940932832658,-0.040037419646978,-0.00037599710049108],[0.078258126974106,-0.015381977893412,-0.023042120039463],[-0.11047005653381,0.045837976038456,0.02283220179379]],[[-0.03031987324357,0.045701615512371,-0.087060734629631],[0.026708636432886,-0.018563482910395,0.084204539656639],[0.058945365250111,-0.049028191715479,-0.13243299722672]],[[-0.00041566792060621,0.06820123642683,-0.0041910586878657],[0.041381735354662,-0.027503117918968,0.033712301403284],[-0.038019675761461,0.030938468873501,-0.0068456623703241]],[[-0.038544479757547,0.039081785827875,0.0080974111333489],[-0.066959053277969,0.038960248231888,-0.09595675766468],[-0.21492066979408,0.17002700269222,0.14434890449047]],[[0.10462993383408,-0.018735744059086,0.018781749531627],[-0.033331651240587,-0.11541877686977,0.035469118505716],[0.091303028166294,0.046128984540701,0.08974964171648]],[[-0.094342656433582,-0.0053890128619969,-0.0053690928034484],[0.19320929050446,0.0079421745613217,-0.18459142744541],[-0.009196687489748,-0.010987262241542,0.077379494905472]],[[0.15971806645393,-0.0077454173006117,-0.066091246902943],[0.027844950556755,0.12336137145758,-0.038972612470388],[-0.050522327423096,-0.09456080198288,-0.034346800297499]],[[0.10789209604263,-0.29160809516907,-0.25703889131546],[-0.011112210340798,0.053831778466702,-0.081470184028149],[0.38920199871063,0.0077337641268969,-0.24968269467354]],[[-0.19224247336388,-0.054748985916376,0.089346766471863],[-0.018101036548615,-0.05736057087779,0.19284689426422],[-0.1514722853899,-0.0021173506975174,-0.17264364659786]],[[0.094776749610901,-0.034451760351658,-0.099607236683369],[-0.1212435439229,0.012602319940925,-0.10307825356722],[0.15786516666412,0.099510446190834,-0.043556582182646]],[[-0.029664153233171,-0.031873103231192,-0.069028809666634],[-0.15663075447083,-0.0081766238436103,0.11662573367357],[-0.048859313130379,-0.14067378640175,0.19684667885303]],[[-0.10402324795723,0.18217165768147,-0.23438410460949],[0.02175640873611,0.054114185273647,-0.13423751294613],[0.028853587806225,-0.052700404077768,-0.063463971018791]],[[0.1698072552681,-0.039511919021606,-0.083777785301208],[0.0048776404000819,-0.010034770704806,-0.090601176023483],[0.094296544790268,0.11138429492712,-0.38159075379372]],[[-0.027903161942959,0.05629488825798,-0.0054724733345211],[0.054522480815649,-0.17589432001114,-0.17944407463074],[0.07977270334959,-0.030723568052053,-0.074024058878422]],[[0.061720605939627,0.035013526678085,0.14518411457539],[-0.03531613573432,0.10686981678009,0.2897883951664],[-0.096569143235683,-0.23307797312737,0.022538460791111]],[[0.016472976654768,0.13445982336998,0.0110750682652],[-0.058139938861132,-0.025372924283147,0.0035042341332883],[-0.14553245902061,-0.035494592040777,0.069557949900627]],[[0.076350912451744,0.030364850535989,0.2576507627964],[0.09155335277319,-0.16656638681889,0.086641803383827],[-0.019966956228018,-0.085827939212322,0.01627042889595]],[[-0.0003167912364006,-0.0053937947377563,0.036906655877829],[0.05822166800499,-0.0581990852952,-0.022046538069844],[-0.044343862682581,-0.016508148983121,0.07267002761364]],[[0.082561857998371,0.20241276919842,0.074164405465126],[0.053896471858025,0.030544105917215,-0.040415082126856],[-0.15316562354565,-0.095650061964989,-0.048291567713022]],[[0.076449044048786,-0.038264166563749,-0.1354995816946],[0.11918871849775,-0.10162295401096,-0.1792963296175],[0.0025433236733079,-0.082846589386463,-0.090244203805923]],[[0.14333732426167,-0.039520211517811,0.020246243104339],[0.017576705664396,-0.11253436654806,0.1886702477932],[0.093464873731136,-0.20292550325394,-0.1679752767086]],[[-0.002863097935915,-0.066955290734768,0.041968237608671],[0.11296191811562,0.0218306761235,-0.062094744294882],[0.13643404841423,-0.11741439253092,-0.13833284378052]],[[0.032763909548521,0.11999430507421,-0.026270445436239],[-0.079598426818848,0.22703650593758,-0.22362564504147],[0.0099870525300503,0.096430279314518,-0.032967925071716]],[[0.021161323413253,-0.014891504310071,0.045915961265564],[-0.088434040546417,0.12512178719044,0.13380080461502],[-0.092129312455654,-0.050788763910532,-0.12989935278893]],[[-0.071243286132812,-0.11248820275068,0.036769784986973],[0.098132945597172,-0.074449025094509,-0.12351588904858],[0.093819417059422,-0.26993054151535,0.071488246321678]]],[[[-0.15214349329472,-0.22514902055264,-0.14069902896881],[-0.29922369122505,-0.13100980222225,0.091673791408539],[-0.11976841837168,-0.077344000339508,0.059726774692535]],[[0.10739751905203,-0.10136583447456,0.040734224021435],[-0.023021522909403,-0.15893195569515,-0.02504657395184],[-0.064577601850033,-0.10893592983484,-0.10665088146925]],[[0.0032298387959599,-0.16617053747177,-0.18536730110645],[-0.052532605826855,-0.034972056746483,-0.21449252963066],[0.073423080146313,0.04872789978981,-0.090739652514458]],[[0.035406276583672,0.14731767773628,-0.050135280936956],[-0.23695303499699,-0.042366851121187,-0.029094675555825],[-0.06888485699892,-0.11836221814156,0.037765618413687]],[[-0.065624125301838,0.097020633518696,0.061201509088278],[0.021654363721609,-0.030764155089855,-0.050880450755358],[0.01237562391907,0.029014905914664,-0.090401619672775]],[[-0.20490860939026,0.10973973572254,-0.15181329846382],[0.04564543813467,0.1184017136693,0.031048657372594],[0.043436750769615,0.023909587413073,0.083591945469379]],[[-0.10984960198402,-0.073109962046146,-0.11368508636951],[0.037289727479219,0.11653511971235,-0.13414892554283],[-0.16236636042595,0.10898664593697,0.015727676451206]],[[-0.045605562627316,0.024659371003509,0.014272064901888],[0.051587391644716,0.10310862958431,-0.12503531575203],[-0.060882281512022,-0.05265374854207,-0.034954626113176]],[[-0.0966851785779,0.0019186687422916,0.024223178625107],[0.18353295326233,0.086236655712128,0.18178914487362],[-0.12447535246611,0.16040425002575,-0.029336372390389]],[[-0.11328628659248,-0.04743442311883,0.10017587244511],[0.12956316769123,0.0055885394103825,-0.087886184453964],[0.15251103043556,0.024692799896002,-0.087262585759163]],[[-0.013253125362098,0.035796981304884,0.055410951375961],[-0.13253025710583,0.23819594085217,0.031227180734277],[-0.070075556635857,-0.18625023961067,-0.15808320045471]],[[-0.29076224565506,-0.019975705072284,0.091413587331772],[-0.029641261324286,-0.078461438417435,-0.042819935828447],[0.036818128079176,0.0083740465342999,0.11063139140606]],[[0.14857368171215,-0.16713719069958,0.01428996026516],[0.062333665788174,-0.064875811338425,-0.028390051797032],[-0.2655853331089,0.16565692424774,-0.069695591926575]],[[-0.16095279157162,-0.063318818807602,0.080803133547306],[0.083685413002968,0.028448967263103,-0.040698546916246],[-0.093213997781277,0.032962970435619,0.10687838494778]],[[0.0090649435296655,-0.16983619332314,0.0077062528580427],[-0.1413127630949,-0.15102404356003,0.11378289014101],[-0.096029683947563,0.010377597995102,-0.14943279325962]],[[-0.095728114247322,0.0041382908821106,-0.1809239089489],[-0.061273537576199,0.024377711117268,-0.0010255799861625],[0.035794466733932,-0.003669174388051,-0.16002255678177]],[[-0.050097193568945,-0.16509775817394,0.15987047553062],[-0.13124163448811,0.077073231339455,-0.052196487784386],[-0.022484555840492,0.043185263872147,0.24582409858704]],[[-0.061821445822716,-0.14205472171307,0.090397462248802],[-0.14060382544994,-0.04473415389657,0.14001128077507],[-0.042143933475018,-0.057313039898872,0.038559202104807]],[[-0.09309084713459,0.089438825845718,0.20088484883308],[-0.04844569042325,-0.15792867541313,0.16649748384953],[0.039899457246065,-0.14810946583748,0.001362603274174]],[[-0.058373160660267,-0.077331602573395,-0.16291572153568],[-0.051541328430176,-0.095153033733368,0.021130805835128],[0.025507766753435,-0.072291098535061,0.10446950048208]],[[-0.34556245803833,0.10282723605633,-0.0299315713346],[0.019775370135903,0.12462822347879,-0.014322874136269],[0.12891456484795,-0.12939032912254,-0.26161682605743]],[[-0.20844642817974,-0.028279475867748,0.077252574265003],[0.0059830234386027,-0.19639208912849,0.12366535514593],[-0.011905892752111,-0.033147346228361,0.077114708721638]],[[-0.12584458291531,-0.087119214236736,0.086298130452633],[0.06371533870697,-0.11581306159496,0.076726339757442],[0.074264332652092,-0.011241748929024,-0.066835001111031]],[[0.16526979207993,-0.080277621746063,0.0297633074224],[0.10315876454115,-0.17950291931629,0.16912713646889],[-0.13974533975124,0.14940366148949,0.10756648331881]],[[-0.0054545560851693,0.13869944214821,0.010852741077542],[0.072485916316509,0.013975854031742,0.07769463211298],[-0.35115730762482,-0.10768099874258,-0.26594331860542]],[[-0.32219997048378,0.083496995270252,0.14770899713039],[-0.11441580206156,0.25486922264099,0.25944876670837],[0.11729066073895,-0.010245544835925,-0.095083601772785]],[[0.086989685893059,-0.095367528498173,-0.36629113554955],[0.16201211512089,-0.040944937616587,-0.20615902543068],[0.20614294707775,0.10834577679634,-0.22081969678402]],[[0.15675839781761,0.090007729828358,-0.0092502990737557],[-0.10202370584011,-0.17680110037327,-0.15340776741505],[0.19349330663681,-0.034952558577061,-0.016233524307609]],[[-0.11401206254959,-0.0094208344817162,0.014569859020412],[0.039344593882561,-0.056860309094191,-0.19001030921936],[0.13258649408817,-0.06017516925931,0.024166218936443]],[[0.0094576170668006,-0.056522518396378,0.058466203510761],[-0.061418060213327,-0.1870354115963,0.12465177476406],[0.081583887338638,-0.064912274479866,0.070264458656311]],[[0.20472599565983,0.12506449222565,-0.051435079425573],[0.0059208879247308,0.16392469406128,-0.14987875521183],[0.018995195627213,0.14906883239746,-0.047225724905729]],[[0.11006840318441,-0.21810883283615,-0.14319963753223],[0.073369242250919,0.029129091650248,-0.096064858138561],[-0.057706985622644,-0.1198718175292,-0.025784367695451]]],[[[-0.2590970993042,0.28675580024719,-0.13140776753426],[-0.086542412638664,0.089918464422226,0.068248569965363],[-0.39361053705215,-0.0051774205639958,0.033608686178923]],[[0.07632303237915,0.081583335995674,-0.36528503894806],[0.09857202321291,-0.057828269898891,-0.031017398461699],[0.081611230969429,-0.040768694132566,-0.072271756827831]],[[-0.056929845362902,-0.12055785208941,-0.17660212516785],[0.12270575016737,0.0016386295901611,0.021989565342665],[0.028343940153718,0.02432706207037,0.024281652644277]],[[-0.14623118937016,-0.14681816101074,-0.15088625252247],[0.094888634979725,0.16553154587746,0.019402848556638],[0.11420890688896,-0.048906650394201,-0.047003973275423]],[[0.059732478111982,0.008519028313458,0.015290664508939],[-0.043945975601673,0.030639877542853,-0.026355696842074],[0.095767967402935,-0.046075507998466,0.054298751056194]],[[-0.032871462404728,0.0038909146096557,0.084937058389187],[-0.048932701349258,-0.082855090498924,-0.049561608582735],[-0.0083355419337749,0.12970247864723,-0.015572899952531]],[[-0.080096825957298,0.15419892966747,-0.3667848110199],[-0.00059757579583675,-0.022184874862432,-0.21317125856876],[0.0025077012833208,0.2211707085371,0.03613281622529]],[[-0.056684583425522,-0.024828480556607,-0.028282951563597],[-0.054643031209707,0.086893506348133,0.10593766719103],[-0.1498675942421,-0.038028910756111,0.042240519076586]],[[0.063132777810097,-0.18962422013283,0.10941700637341],[-0.056680236011744,-0.018471261486411,-0.15079599618912],[0.074996285140514,0.010070903226733,0.054762113839388]],[[0.045421026647091,-0.085314981639385,-0.079227961599827],[-0.10598260909319,0.092137664556503,-0.074178278446198],[0.062997594475746,0.061518177390099,-0.0049747442826629]],[[0.12646235525608,-0.088579379022121,-0.0360820107162],[0.019567180424929,0.12599197030067,-0.12856434285641],[0.092249847948551,-0.10427367687225,-0.018412312492728]],[[-0.0080844201147556,0.046167492866516,-0.0072833709418774],[0.019273180514574,-0.019321899861097,0.0015637608012185],[-0.099750645458698,-0.1801146119833,0.18804471194744]],[[0.051056835800409,0.056491613388062,-0.053913224488497],[-0.0005038101808168,-0.047327730804682,0.089925140142441],[-0.0092971529811621,-0.01267800014466,-0.10527636110783]],[[-0.013409659266472,-0.11065443605185,0.009649301879108],[-0.033297047019005,-0.0067664454691112,-0.053885769098997],[0.032693084329367,0.091641612350941,0.0034031730610877]],[[0.024118585512042,0.025608165189624,0.16211254894733],[-0.1116840839386,0.087270148098469,0.16514725983143],[-0.23706516623497,-0.1992280036211,-0.17106959223747]],[[0.053274657577276,-0.08358296006918,0.038078043609858],[0.19556131958961,-0.036661624908447,-0.080666705965996],[0.074981741607189,-0.076271072030067,-0.11468579620123]],[[-0.033888455480337,0.14662542939186,0.010763797909021],[-0.034201510250568,-0.16120362281799,-0.044467613101006],[0.046689309179783,-0.055463969707489,-0.080307051539421]],[[0.1200610473752,-0.0070590446703136,0.042246960103512],[-0.030599584802985,0.18163534998894,0.1103677302599],[-0.142448797822,-0.092428632080555,0.081218466162682]],[[-0.087663270533085,-0.039675995707512,0.02131050080061],[-0.034970104694366,-0.13126994669437,0.20678697526455],[-0.088096521794796,0.033667031675577,-0.010770738124847]],[[-0.0042062513530254,-0.19385436177254,0.13662333786488],[0.12540997564793,0.04669988155365,0.046676453202963],[-0.11965384334326,-0.099532164633274,0.10231425613165]],[[-0.24586899578571,-0.38547351956367,0.075692653656006],[0.094452753663063,0.062533430755138,0.14823785424232],[-0.019114144146442,-0.17797616124153,0.012554659508169]],[[-0.12464518100023,-0.20794478058815,-0.069592781364918],[0.061728220432997,0.092438757419586,0.023962084203959],[0.048831440508366,0.20525376498699,-0.053833335638046]],[[-0.014294938184321,0.051822103559971,-0.23696379363537],[0.098215691745281,0.0067901164293289,-0.060250166803598],[0.16579121351242,0.012854381464422,-0.053725283592939]],[[-0.047603163868189,-0.077340587973595,-0.080249615013599],[-0.026270378381014,0.053143743425608,-0.010039214044809],[0.22434245049953,0.032487478107214,-0.19528114795685]],[[-0.21631141006947,0.17168375849724,-0.03121524117887],[-0.043897151947021,0.067214228212833,0.02523491345346],[0.15033869445324,-0.1891778409481,0.15777017176151]],[[0.0039665084332228,-0.08515577018261,0.06355020403862],[-0.00049802084686235,0.066846996545792,-0.094423845410347],[-0.11064954102039,-0.03475945442915,-0.070853158831596]],[[0.021997908130288,-0.12710177898407,0.12172216176987],[0.1568600833416,0.12675531208515,0.16412325203419],[-0.068656876683235,0.030911287292838,-0.080204255878925]],[[-0.14755220711231,-0.20375514030457,-0.052117183804512],[0.053608350455761,0.13118776679039,0.11042867600918],[-0.010225374251604,-0.17092734575272,0.18303501605988]],[[0.084382586181164,0.0065715019591153,0.17785862088203],[-0.0085872989147902,-0.085238702595234,0.0528684258461],[-0.064102098345757,-0.04052946344018,-0.032173253595829]],[[0.028227113187313,0.086839079856873,0.10833378136158],[-0.12373493611813,0.0083252033218741,0.11107915639877],[-0.061751313507557,-0.075758948922157,-0.033101417124271]],[[0.13238589465618,-0.022531190887094,-0.10611207783222],[-0.065834864974022,0.11229522526264,-0.02621210180223],[0.30925777554512,-0.024304190650582,-0.16302184760571]],[[-0.11344732344151,-0.07591762393713,-0.13781847059727],[0.19606696069241,-0.13667698204517,0.062794432044029],[-0.010739115998149,-0.010189494118094,0.15951573848724]]],[[[-0.0211066827178,0.071361772716045,-0.0458201803267],[0.097675174474716,0.12104254215956,-0.16695055365562],[0.1334732323885,0.022115867584944,-0.091710276901722]],[[0.1864826977253,0.084292411804199,-0.035217065364122],[-0.018596354871988,0.055752485990524,-0.11746918410063],[-0.07979679107666,-0.072006702423096,0.0352040566504]],[[0.048064075410366,0.051161885261536,0.095554329454899],[-0.023043999448419,0.049662534147501,0.022773902863264],[-0.061441123485565,0.04521693661809,-0.024006597697735]],[[0.23332265019417,0.1041874140501,-0.22526527941227],[-0.11331119388342,-0.037627059966326,-0.051119443029165],[0.061583708971739,0.094913117587566,0.18941055238247]],[[-0.057034306228161,0.029425023123622,-0.13242952525616],[0.040039546787739,0.053427752107382,-0.15977899730206],[0.032547574490309,0.024514570832253,-0.036311864852905]],[[-0.061564832925797,0.072731077671051,-0.035956084728241],[-0.0012558118905872,-0.037141695618629,-0.079992353916168],[0.12643717229366,0.088002756237984,-0.0034686902072281]],[[0.20671783387661,-0.011538517661393,-0.23224304616451],[0.12493591010571,-0.063699327409267,-0.087588950991631],[0.17033509910107,-0.076121188700199,0.070512652397156]],[[-0.032018925994635,-0.13012379407883,0.0083706444129348],[0.093148812651634,-0.085388749837875,0.0059407302178442],[-0.049293722957373,0.12168738245964,-0.087625488638878]],[[-0.013334232382476,-0.11706491559744,0.02513956092298],[0.0089543107897043,-0.067264646291733,-0.21290756762028],[-0.07148652523756,0.24322248995304,-0.053891737014055]],[[-0.13943192362785,0.056675665080547,-0.0048641506582499],[-0.090002059936523,0.058921497315168,0.082119286060333],[0.10641406476498,-0.016836807131767,0.17201541364193]],[[0.12141671776772,-0.11694050580263,-0.082008421421051],[0.10207952558994,-0.012905151583254,-0.011167254298925],[-0.15634590387344,-0.0982666015625,-0.35745793581009]],[[-0.012229894287884,0.095501817762852,-0.0085226567462087],[0.034902315586805,0.029788622632623,-0.09578450024128],[0.02076281607151,-0.037736419588327,-0.11059485375881]],[[0.0059230495244265,-0.19243492186069,-0.048146620392799],[0.079503588378429,-0.10123525559902,0.11529792845249],[-0.19496573507786,-0.096487894654274,0.039026614278555]],[[-0.094086267054081,0.071294084191322,0.095746293663979],[-0.084747426211834,0.12669067084789,0.077995888888836],[-0.046837922185659,-0.051497746258974,-0.078877121210098]],[[0.066226370632648,-0.094516426324844,0.088685125112534],[0.0549839399755,-0.087834015488625,-0.079557485878468],[0.10953479260206,0.033357623964548,0.18869113922119]],[[-0.035289783030748,-0.075874365866184,0.24416093528271],[-0.26381084322929,-0.18812373280525,0.17152903974056],[-0.09563209861517,-0.035134691745043,0.30051293969154]],[[-0.093783840537071,0.13353835046291,0.11495900899172],[0.20803239941597,0.099408268928528,0.23463374376297],[-0.057331189513206,-0.090215623378754,-0.1132765635848]],[[0.27082273364067,-0.22187358140945,-0.26079192757607],[0.20647655427456,0.0014334095176309,-0.037286210805178],[-0.014917087741196,-0.015058719553053,-0.0016515291063115]],[[0.047607697546482,-0.0053295944817364,-0.1125413030386],[-0.047288600355387,0.07428216189146,-0.047164279967546],[0.023691236972809,-0.037853367626667,0.13632735610008]],[[-0.065996088087559,0.14455424249172,-0.047745738178492],[-0.061474151909351,0.001467750989832,0.051892135292292],[-0.045952476561069,0.18579185009003,-0.064521498978138]],[[0.016766037791967,-0.13977706432343,-0.17218363285065],[-0.03509059548378,0.061060205101967,-0.13104417920113],[0.15016043186188,0.027712902054191,0.11360810697079]],[[-0.074242450296879,-0.20886166393757,-0.16183298826218],[-0.036726117134094,-0.013745698146522,-0.0022939259652048],[0.11340824514627,0.012353795580566,0.093732118606567]],[[-0.13736143708229,-0.058939293026924,-0.012164588086307],[-0.023266158998013,0.015162409283221,-0.042219154536724],[0.086691677570343,-0.25258150696754,-0.038881115615368]],[[-0.079011157155037,-0.12187305092812,0.00060856493655592],[0.11902193725109,-0.014359784312546,0.083550959825516],[-0.06644644588232,0.031591441482306,-0.061297044157982]],[[-0.051188681274652,-0.052807450294495,-0.016638701781631],[0.019777426496148,0.14906170964241,0.0034787978511304],[-0.10579165071249,-0.035491950809956,0.057546086609364]],[[-0.03949187323451,-0.14122219383717,-0.14429764449596],[0.022293424233794,0.065862096846104,0.095248840749264],[-0.19156546890736,-0.10179404914379,-0.1505912989378]],[[0.015387228690088,0.26575896143913,-0.014636226929724],[-0.036770422011614,-0.013723922893405,-0.0021408468019217],[-0.0029843002557755,-0.1455849558115,-0.1151075437665]],[[0.01237889751792,0.089865826070309,0.16783083975315],[0.024532414972782,0.043609172105789,-0.10229284316301],[0.1668418943882,-0.080219224095345,0.15579205751419]],[[0.088172748684883,-0.053983740508556,0.038728900253773],[0.17806477844715,-0.011651113629341,-0.02090554498136],[0.020102366805077,0.040773887187243,-0.07806283980608]],[[-0.054426334798336,-0.093354508280754,-0.0028596369083971],[0.08431339263916,0.037892829626799,0.20623801648617],[0.06685333698988,-0.23999887704849,-0.15398420393467]],[[-0.14667880535126,-0.17661979794502,-0.034626379609108],[0.0054830880835652,0.028283599764109,0.092347152531147],[-0.016350898891687,-0.013247570022941,-0.17103317379951]],[[-0.066180065274239,0.17458671331406,0.067479699850082],[-0.071764342486858,0.028963094577193,0.012746850028634],[-0.12028212845325,0.030234197154641,0.12537457048893]]],[[[-0.14191725850105,0.024960922077298,-0.1619264036417],[-0.083713084459305,0.13295602798462,0.058870751410723],[-0.33843347430229,0.053277421742678,-0.37408941984177]],[[-0.10915279388428,0.054593227803707,0.092456758022308],[-0.07067845761776,-0.024576021358371,-0.12502229213715],[0.011184294708073,-0.068598859012127,-0.012899691238999]],[[-0.043309424072504,-0.10223937034607,0.15539081394672],[-0.20401811599731,0.13128156960011,0.072421163320541],[-0.10884312540293,-0.12944562733173,0.0068595241755247]],[[0.026192618533969,0.10894598066807,-0.00038073459290899],[0.10258769243956,0.14895223081112,-0.14882595837116],[-0.11709658801556,-0.091140016913414,-0.01366372499615]],[[0.14492399990559,0.02705129981041,0.050380744040012],[0.13093693554401,-0.038742858916521,-0.0028460905887187],[-0.049927033483982,-0.04099927470088,0.11378487199545]],[[0.024221628904343,-0.09555933624506,-0.040203761309385],[-0.046197142452002,0.014024711214006,-0.018214544281363],[0.071129329502583,0.11223062872887,-0.068300202488899]],[[0.045568913221359,0.10036712139845,0.075097560882568],[-0.082741118967533,-0.09244454652071,0.0014189389767125],[-0.056921824812889,-0.057044491171837,-0.012516372837126]],[[-0.095670603215694,-0.057096317410469,0.00013308502093423],[-0.13042634725571,0.086447671055794,0.091013491153717],[0.035460889339447,-0.0016250937478617,0.081756077706814]],[[-0.042508773505688,0.024847194552422,-0.018679581582546],[0.055392429232597,-0.14373064041138,-0.015677079558372],[-0.043982274830341,-0.090324193239212,-0.054664794355631]],[[-0.0057286908850074,0.029137665405869,0.041108932346106],[-0.015389299951494,-0.077620752155781,-0.027519723400474],[0.098084017634392,-0.097603313624859,-0.13305711746216]],[[-0.055239230394363,-0.026898771524429,-0.039277084171772],[0.017736062407494,0.020895518362522,0.083761215209961],[-0.082680433988571,-0.045303791761398,0.07216253131628]],[[-0.079248055815697,-0.048793360590935,-0.021698622033],[0.18743990361691,-0.014417114667594,-0.075930058956146],[0.039774525910616,-0.073019713163376,0.049245733767748]],[[0.043133273720741,-0.063896298408508,0.0068294927477837],[0.00040287268348038,-0.10767581313848,-0.037152796983719],[-0.082373462617397,0.039342269301414,-0.11541645973921]],[[-0.047980289906263,0.011138969101012,-0.034433528780937],[-0.01330503448844,0.047991089522839,0.13005158305168],[0.14889574050903,-0.01015155389905,-0.078058585524559]],[[0.15746660530567,-0.075924545526505,-0.21107099950314],[0.091986730694771,-0.018527945503592,0.09878072142601],[0.068287387490273,-0.24845993518829,-0.10224409401417]],[[0.27651092410088,-0.10637374222279,-0.050507392734289],[0.32045695185661,-0.037993989884853,-0.14918504655361],[0.091792233288288,-0.19460298120975,-0.18294498324394]],[[0.043774839490652,0.050572689622641,-0.1204231902957],[-0.036521140486002,-0.035488057881594,-0.20028810203075],[-0.1177886351943,-0.097092486917973,0.10334283858538]],[[0.13179513812065,-0.084422238171101,-0.040430650115013],[-0.14436766505241,0.013775628060102,0.13633628189564],[0.08969983458519,-0.14582568407059,0.067173808813095]],[[0.045782562345266,-0.17277017235756,0.0057380055077374],[0.060156848281622,0.11613591015339,-0.058583229780197],[-0.14253950119019,-0.052832026034594,-0.11244310438633]],[[0.0092062652111053,0.11797048151493,-0.00090601289412007],[0.15132349729538,-0.33585366606712,0.089061357080936],[-0.049913469702005,-0.12693078815937,-0.047007642686367]],[[0.022845948114991,0.073610946536064,0.061994105577469],[-0.064995132386684,-0.047040544450283,0.037652395665646],[-0.12603403627872,0.042987357825041,0.1284641623497]],[[0.084924347698689,-0.084483459591866,-0.019575051963329],[0.097406968474388,-0.10489402711391,0.068347707390785],[0.055151887238026,0.020619336515665,-0.14973984658718]],[[-0.19733545184135,0.054109189659357,0.15225300192833],[-0.021495100110769,-0.050333466380835,0.036641549319029],[0.017242660745978,0.058429140597582,-0.061489164829254]],[[-0.067651405930519,-0.067572146654129,0.22530138492584],[-0.089071735739708,0.047376539558172,0.036115657538176],[-0.087675921618938,-0.011167665012181,-0.18508933484554]],[[-0.014825741760433,-0.12301760166883,0.10100068897009],[0.14539204537868,-0.026748714968562,-0.10575806349516],[0.053778901696205,-0.11049618571997,0.1126140281558]],[[-0.059571538120508,0.020198382437229,-0.11654075980186],[0.0070716864429414,0.074072048068047,0.11345628648996],[-0.050620149821043,-0.12981852889061,-0.033975619822741]],[[-0.20516367256641,0.037393692880869,-0.071301646530628],[-0.22134241461754,0.11982740461826,0.041835688054562],[-0.039969578385353,0.031609188765287,-0.048671871423721]],[[0.15148630738258,-0.14130465686321,0.042232412844896],[-0.18603689968586,-0.31398537755013,0.059062201529741],[-0.0079358052462339,0.047173041850328,0.0236901268363]],[[0.070431634783745,-0.016212359070778,0.11879836022854],[-0.08395267277956,-0.028051493689418,0.0095747448503971],[0.037417341023684,-0.018831031396985,0.11683460325003]],[[0.13903544843197,-0.020354585722089,0.13930630683899],[-0.13482482731342,0.031389281153679,-0.078499510884285],[9.6076517365873e-05,-0.044481042772532,-0.092652276158333]],[[0.016146903857589,0.11128231883049,0.018852021545172],[-0.070523023605347,-0.043087285012007,0.1108136922121],[0.034531347453594,-0.092740185558796,-0.018022201955318]],[[-0.2548161149025,0.0081667881458998,0.11736223846674],[0.080324873328209,-0.094335876405239,-0.079053811728954],[-0.076158732175827,-0.042274720966816,-0.053307477384806]]],[[[0.049691144376993,-0.059583816677332,0.053187321871519],[0.12062575668097,0.049312431365252,-0.0052660801447928],[0.028010834008455,-0.1725105792284,-0.029998147860169]],[[-0.041150353848934,-0.090157024562359,0.017656609416008],[-0.055295042693615,0.12728729844093,-0.11463336646557],[0.098111160099506,0.044624216854572,-0.039483748376369]],[[0.037563551217318,-0.018552860245109,0.014435068704188],[-0.017985101789236,-0.045292466878891,0.0092777293175459],[-0.046229027211666,-0.010799823328853,0.079183116555214]],[[-0.093409590423107,-0.0016747834160924,-0.0035706050693989],[0.064733572304249,-0.037562057375908,-0.017363898456097],[-0.076634936034679,0.085932910442352,0.06398781388998]],[[-0.069729067385197,0.095268227159977,-0.053213942795992],[0.1257763504982,0.041687868535519,0.044224962592125],[0.016211081296206,0.019992796704173,0.059123709797859]],[[-0.075683631002903,-0.17194682359695,-0.067476257681847],[0.08773060888052,-0.059397086501122,0.083941861987114],[0.0499187707901,-0.022241733968258,-0.0057594235986471]],[[0.01111994497478,0.043170720338821,-0.14587600529194],[0.11398754268885,0.045697748661041,-0.030704971402884],[-0.056361690163612,0.047375451773405,-0.033084329217672]],[[0.022309578955173,0.076313652098179,0.038061399012804],[-0.098248265683651,0.063560836017132,-0.026695933192968],[-0.030738899484277,0.038338482379913,-0.073110319674015]],[[-0.083620183169842,0.03390745818615,-0.13587084412575],[0.13043504953384,-0.052376352250576,-0.022561985999346],[0.023826954886317,0.034461125731468,-0.0043860361911356]],[[0.047659050673246,0.049789026379585,0.013721851631999],[0.091941699385643,0.23846141993999,0.052106704562902],[-0.029006345197558,0.038438193500042,0.08685702085495]],[[-0.064240716397762,-0.037018764764071,0.024631580337882],[0.039365444332361,-0.098507061600685,0.081263713538647],[-0.011664614081383,0.013327889144421,0.01636777818203]],[[0.044682923704386,-0.057077791541815,-0.049929168075323],[-0.025411184877157,-0.0068226093426347,0.055853202939034],[-0.047453779727221,-0.0098693016916513,0.13146202266216]],[[0.059266246855259,0.015530126169324,-0.092553183436394],[-0.039822794497013,-0.03226600587368,0.068717665970325],[-0.0058775944635272,-0.026022804901004,0.04740359261632]],[[0.038162175565958,0.18486677110195,-0.091378688812256],[-0.12811025977135,0.017921559512615,0.018011370673776],[0.007345462217927,-0.12394768744707,0.095017202198505]],[[-0.0075324573554099,0.070312149822712,-0.056482836604118],[-0.10018663853407,0.12175600975752,0.095554605126381],[-0.044087011367083,-0.016215583309531,-0.063798025250435]],[[0.055298864841461,-0.11751565337181,-0.039945442229509],[0.063133105635643,0.092226132750511,0.012113030999899],[0.12142032384872,-0.030340738594532,0.12532536685467]],[[-0.094395153224468,-0.024748815223575,-0.011922175064683],[0.039190661162138,0.035440359264612,-0.089592434465885],[-0.094098635017872,-0.20893512666225,0.014722842723131]],[[-0.0031156279146671,-0.00028711429331452,-0.08937656134367],[-0.099144242703915,-0.018140496686101,0.086999535560608],[0.11234585940838,0.070569731295109,-0.13012056052685]],[[-0.068793423473835,-0.1688327640295,0.051542807370424],[0.014931249432266,-0.030452063307166,-0.029577674344182],[0.017476718872786,-0.015911411494017,0.081935413181782]],[[0.0059537929482758,-0.050560601055622,-0.064292781054974],[-0.064601443707943,0.082151785492897,-0.041197132319212],[0.11670216917992,-0.068252138793468,0.081393778324127]],[[-0.1071108803153,0.057870272547007,0.0025290595367551],[0.074541337788105,-0.036766156554222,-0.11052130907774],[0.08809670060873,-0.063080005347729,0.10081078112125]],[[-0.1202922090888,0.064040154218674,0.22514596581459],[-0.10058654844761,0.028358282521367,-0.024021985009313],[-0.00098878249991685,-0.046092636883259,-0.0011078134411946]],[[0.014061588793993,-0.10236480087042,0.097340323030949],[0.014907861128449,-0.027323612943292,0.0095495823770761],[0.086290381848812,0.0024807043373585,-0.042631004005671]],[[0.04974427074194,0.072305344045162,0.0094949146732688],[-0.067184492945671,-0.11697295308113,0.046003069728613],[0.016837103292346,-0.065266512334347,-0.072761818766594]],[[0.089233748614788,0.046417377889156,0.032175675034523],[-0.14110815525055,-0.024022951722145,0.16189175844193],[-0.010342334397137,-0.034684523940086,-0.10839705914259]],[[-0.037493139505386,-0.028039544820786,0.043144278228283],[0.084780812263489,-0.052446227520704,0.065969452261925],[-0.067163661122322,0.044301424175501,-0.00065430829999968]],[[-0.04835170507431,-0.036975651979446,0.051570277661085],[-0.018311792984605,0.11337359249592,-0.066257193684578],[0.054277010262012,-0.0020966904703528,0.0080752577632666]],[[0.10052921622992,0.016440842300653,0.027579726651311],[-0.067391812801361,0.08257257938385,-0.10553071647882],[-0.035227086395025,-0.025082293897867,-0.0035780291073024]],[[-0.052559830248356,-0.10606346279383,0.075705289840698],[-0.10138201713562,-0.11893393099308,-0.0022285291925073],[-0.12902392446995,-0.015146526508033,-0.080557316541672]],[[-0.032029207795858,0.13520707190037,0.01023598946631],[0.034031681716442,-0.1957926005125,0.032761916518211],[-0.11260630935431,0.17465241253376,-0.022442944347858]],[[0.056143786758184,0.017890922725201,0.010032881982625],[0.012929241172969,-0.033368095755577,-0.029553586617112],[0.10949561744928,-0.0095937512814999,-0.20110212266445]],[[-0.053692646324635,-0.01376879401505,0.038186069577932],[-0.0047907219268382,-0.023369342088699,-0.02220981195569],[-0.030578160658479,0.10835614800453,0.035497330129147]]],[[[0.022613551467657,-0.23038935661316,-0.10249232500792],[-0.097903154790401,-0.1832318007946,-0.2093505859375],[-0.19571739435196,-0.044640354812145,-0.0062197945080698]],[[-0.073945961892605,-0.037313360720873,0.017512872815132],[0.033506155014038,0.033985529094934,0.055638093501329],[-0.055135961622,-0.075284205377102,-0.045642904937267]],[[-0.19709391891956,0.033923912793398,-0.11359214037657],[0.13771176338196,0.030759220942855,0.037668470293283],[-0.064183056354523,-0.084212094545364,-0.010325218550861]],[[-0.033718500286341,-0.078939206898212,-0.084872648119926],[0.09752057492733,0.10525440424681,0.081453964114189],[-0.18086032569408,-0.11800221353769,0.034493282437325]],[[0.063440628349781,0.002114366972819,0.043453149497509],[-0.0048387874849141,-0.082814574241638,0.052328757941723],[-0.18392977118492,-0.043187208473682,-0.039025038480759]],[[0.07371873408556,-0.0723936855793,-0.0059944787062705],[-0.14995115995407,0.13445587456226,0.040264971554279],[0.12692515552044,0.22277899086475,0.01971548423171]],[[-0.20003995299339,0.19095896184444,-0.065374590456486],[-0.045757878571749,-0.022104216739535,-0.14349374175072],[-0.095970444381237,0.12555038928986,0.047100905328989]],[[-0.083589188754559,0.093715384602547,0.0054201204329729],[0.066908769309521,0.04873113706708,0.016050728037953],[-0.14878788590431,-0.066148027777672,0.092984482645988]],[[0.020900800824165,0.11965452134609,0.0043058567680418],[-0.0090341446921229,-0.13257850706577,-0.0099177593365312],[-0.039170276373625,-0.016108639538288,-0.013829213567078]],[[0.043052397668362,0.023098770529032,0.097822673618793],[0.035548679530621,0.015276165679097,0.095872014760971],[-0.032041952013969,0.044472634792328,-0.066478222608566]],[[-0.0667694658041,-0.029889602214098,-0.11307667940855],[-0.017475144937634,0.11064600944519,0.12640516459942],[0.1109096929431,-0.19140043854713,0.052156805992126]],[[0.11710198223591,0.0019808930810541,-0.090593136847019],[0.016046080738306,-0.015847584232688,0.017803333699703],[-0.096189372241497,0.050977382808924,-0.047827314585447]],[[0.16802760958672,-0.093027748167515,0.052749246358871],[0.016768753528595,-0.19790951907635,0.014341202564538],[-0.06639451533556,-0.028085460886359,-0.005379262380302]],[[-0.14261750876904,-0.094335503876209,-0.020129797980189],[0.12701581418514,0.0093099810183048,-0.024515625089407],[-0.0084635252133012,-0.055202964693308,0.061989981681108]],[[0.13809974491596,-0.12576571106911,-0.1453400850296],[-0.13939744234085,-0.068568713963032,-0.30595999956131],[0.040090702474117,-0.077953569591045,-0.083581797778606]],[[0.39503172039986,0.1796560883522,0.17286030948162],[-0.16365420818329,-0.45936721563339,0.063229024410248],[-0.037952195852995,-0.10940372943878,-0.068413972854614]],[[0.045254100114107,-0.0095912041142583,-0.074061095714569],[-0.033484913408756,0.16536647081375,0.084368750452995],[-0.039572227746248,-0.014089371077716,-0.046100251376629]],[[0.056010983884335,-0.11204445362091,0.11197513341904],[0.050601601600647,0.0073787677101791,0.03258566185832],[-0.011616150848567,-0.014963075518608,-0.10929457843304]],[[0.027465675026178,0.13262158632278,-0.0078280968591571],[-0.18118616938591,-0.12162937223911,-0.035433940589428],[0.0010296864202246,-0.061787974089384,-0.013480638153851]],[[0.0920375213027,-0.17818120121956,0.013685840182006],[-0.093289986252785,-0.04723122343421,-0.053440302610397],[0.0013463181676343,-0.12013630568981,0.11521524190903]],[[0.12680651247501,-0.18208047747612,-0.29923269152641],[0.077988229691982,0.052805610001087,-0.0055075683631003],[-0.10982866585255,0.049813836812973,0.026954811066389]],[[-0.0678646042943,-0.12167346477509,-0.0074771675281227],[-0.065265528857708,0.015019641257823,0.11591112613678],[0.12222480773926,-0.085603877902031,0.047199036926031]],[[-0.10584190487862,0.086700946092606,0.17820674180984],[0.012945452705026,-0.11134040355682,0.10343500971794],[-0.10448651015759,0.061956830322742,0.049618821591139]],[[-0.056151159107685,0.069736041128635,0.17823533713818],[0.070278204977512,0.11542459577322,0.051730755716562],[0.0025704440195113,0.023448370397091,-0.18124987185001]],[[-0.034759026020765,0.091216258704662,-0.15974853932858],[0.13119588792324,0.04199057072401,0.071810558438301],[0.043779257684946,-0.060420539230108,0.044738676398993]],[[-0.058673348277807,0.18098464608192,0.074650973081589],[-0.083806715905666,0.00051496591186151,0.044100452214479],[-0.12927496433258,-0.037710312753916,0.074114181101322]],[[0.054902721196413,0.0068643004633486,-0.2917083799839],[0.027092771604657,-0.033493507653475,-0.1893462985754],[-0.087997026741505,0.14070548117161,-0.066634155809879]],[[-0.31558695435524,-0.21181109547615,-0.18582178652287],[0.069673456251621,0.067970789968967,0.05149345099926],[0.019693667069077,-0.088958583772182,0.097638137638569]],[[-0.13402466475964,-0.087894082069397,-0.11513485014439],[0.13177925348282,0.085879176855087,-0.083618693053722],[0.063344724476337,0.14990817010403,0.0071528018452227]],[[0.20243544876575,0.0089401435106993,-0.10888551920652],[0.062410607933998,-0.10221508145332,0.23889842629433],[-0.21242900192738,-0.11843649297953,-0.12035451829433]],[[0.037890389561653,0.15302829444408,0.11044868826866],[0.14871878921986,0.057001311331987,-0.014297145418823],[0.0010654402431101,-0.048090893775225,-0.0043146936222911]],[[-0.06603692471981,-0.25900864601135,0.13468359410763],[0.20224265754223,0.058189749717712,0.030205640941858],[0.04432874545455,-0.26272821426392,-0.026213550940156]]],[[[0.020164493471384,-0.1102404743433,-0.033126804977655],[0.028906332328916,-0.16080912947655,0.0019329127389938],[0.28816595673561,-0.10860861092806,-0.098181523382664]],[[0.011609949171543,-0.082688331604004,-0.021457543596625],[-0.041247341781855,-0.13118700683117,-0.10875455290079],[0.14098462462425,0.0058861686848104,0.044625982642174]],[[-0.090446054935455,-0.026012621819973,-0.014767640270293],[-0.072454430162907,0.028215289115906,-0.005414417013526],[0.015936754643917,-0.16376604139805,-0.16554275155067]],[[-0.11388071626425,-0.02687032148242,-0.16320358216763],[-0.039990562945604,0.11509670317173,0.14857013523579],[0.13238434493542,-0.2490616440773,0.020693477243185]],[[0.059123955667019,0.044358670711517,0.057552721351385],[-0.10013908147812,0.14989764988422,-0.09016377478838],[0.065918602049351,0.00830745883286,-0.065781652927399]],[[-0.081168994307518,-0.0084536792710423,0.061987724155188],[0.010514354333282,-0.05406479164958,0.2372985035181],[0.11858103424311,0.19966779649258,0.15657936036587]],[[-0.056117840111256,-0.055431220680475,-0.11099798977375],[0.17066097259521,-0.089784316718578,-0.06358976662159],[0.066690608859062,-0.12449952214956,-0.10510996729136]],[[0.047918546944857,-0.053371887654066,0.032228514552116],[0.051373351365328,-0.10699809342623,0.017239393666387],[0.078818842768669,0.11298963427544,-0.078051999211311]],[[0.16994622349739,-0.10671772062778,0.002686656313017],[-0.11956065893173,0.1445120126009,-0.10408709198236],[-0.1284641623497,-0.010073428042233,0.069320701062679]],[[-0.16309370100498,-0.10269673913717,-0.0031578887719661],[0.0012500385055318,0.13065934181213,-0.091646008193493],[0.16641755402088,0.022419972345233,0.032166603952646]],[[0.16342763602734,0.19475054740906,0.016657836735249],[-0.1297532171011,0.018141221255064,0.088127426803112],[-0.13579511642456,-0.13558837771416,0.034905113279819]],[[-0.071306981146336,0.09374463558197,-0.060701467096806],[-0.0024571067187935,-0.15437492728233,0.0014543446013704],[0.012502271682024,0.24511890113354,-0.13844646513462]],[[-0.16636818647385,-0.029063330963254,-0.12059257179499],[0.019837962463498,0.14250163733959,-0.12607489526272],[-0.035552281886339,0.14769877493382,0.15544284880161]],[[-0.13031719624996,0.033067904412746,-0.085042245686054],[0.14543868601322,-0.04184639826417,0.056645195931196],[-0.077241115272045,0.10912901163101,0.13570119440556]],[[-0.10886588692665,-0.10770872980356,0.048289053142071],[-0.085139535367489,0.082611955702305,0.020485106855631],[-0.12718279659748,-0.11662807315588,0.1485163718462]],[[0.014553461223841,0.0075785028748214,-0.064283534884453],[0.11451400071383,0.088121742010117,-0.036217644810677],[-0.24743743240833,0.12610392272472,-0.098917596042156]],[[-0.12791992723942,0.017752800136805,-0.040984243154526],[-0.12059051543474,0.17234338819981,-0.10620482265949],[0.10379170626402,0.056941337883472,0.15009368956089]],[[0.26043918728828,-0.15421190857887,-0.045495629310608],[0.069690361618996,-0.11866752058268,0.073695778846741],[0.049968428909779,0.097014486789703,-0.12670357525349]],[[-0.045140534639359,0.15947856009007,0.077622339129448],[0.095189072191715,0.024709424003959,0.095342569053173],[0.081190548837185,-0.24346667528152,-0.11215517669916]],[[-0.17965099215508,-0.029794396832585,0.062546201050282],[-0.12036050111055,-0.0097790397703648,0.099333584308624],[-0.39506071805954,0.13536639511585,0.013782081194222]],[[0.02468772046268,-0.075375512242317,-0.12835827469826],[-0.15179622173309,-0.003818848868832,0.17517891526222],[-0.28438228368759,-0.16070066392422,0.10418333113194]],[[0.076305255293846,0.062418501824141,-0.033232308924198],[-0.0091342693194747,0.097963601350784,0.052371762692928],[-0.12962874770164,-0.078458547592163,0.053109098225832]],[[-0.065128691494465,-0.0435471534729,-0.13374406099319],[0.037582624703646,0.076475456357002,0.076043821871281],[-0.04777916520834,0.13578622043133,-0.1817654967308]],[[0.12589992582798,-0.17705719172955,-0.15158471465111],[0.089910358190536,-0.11281718313694,-0.074987895786762],[-0.067933700978756,0.083215862512589,0.067061297595501]],[[0.065299242734909,0.12658792734146,-0.051579385995865],[-0.093499302864075,0.037371896207333,-0.20923365652561],[0.024432208389044,0.032267399132252,0.10636176168919]],[[-0.0031608464196324,0.19954651594162,-0.028536247089505],[0.0028747972100973,-0.038307011127472,-0.081141941249371],[0.029599316418171,0.13434764742851,0.082056820392609]],[[0.00040843733586371,0.012296126224101,0.048222552984953],[0.17116150259972,-0.081688985228539,0.085546649992466],[0.27088657021523,-0.037975735962391,-0.25865760445595]],[[-0.046371586620808,0.13392443954945,0.11837762594223],[-0.095065072178841,0.057070836424828,-0.22312343120575],[-0.011118998751044,0.076274134218693,-0.16979818046093]],[[0.11866693943739,-0.068324819207191,-0.028156656771898],[0.065566688776016,-0.11859901994467,-0.14959216117859],[0.074425168335438,-0.02745046839118,-0.078484416007996]],[[0.11779882758856,-0.16123044490814,0.14019826054573],[-0.036524716764688,-0.004068867303431,-0.17888762056828],[-0.018869537860155,0.18940010666847,-0.053026296198368]],[[-0.11956449598074,-0.040232434868813,0.040946390479803],[-0.1194414049387,-0.0059346528723836,-0.090461522340775],[0.057287145406008,0.1015954837203,-0.10044448077679]],[[0.052871506661177,-0.10952388495207,-0.053415782749653],[-0.16675215959549,0.017119482159615,0.096190050244331],[0.027003103867173,-0.1329038888216,0.015448054298759]]],[[[-0.02997955493629,-0.010174209252,0.032451320439577],[-0.045105744153261,-0.046615865081549,-0.06539960205555],[0.035098001360893,-0.00050843582721427,0.022954717278481]],[[0.0083290440961719,-0.012772147543728,-0.031725630164146],[-0.012032311409712,0.087634801864624,0.034732360392809],[-0.17301815748215,-0.064994119107723,0.090903624892235]],[[0.044397097080946,-0.055212695151567,-0.017806505784392],[-0.10704372823238,0.018102424219251,0.12175512313843],[-0.072677455842495,0.065328747034073,-0.02610089443624]],[[0.24678035080433,0.0010973246535286,-0.11186634004116],[-0.040667630732059,0.0070597096346319,-0.038272861391306],[0.068138852715492,0.010805441066623,-0.070876307785511]],[[0.029561351984739,-0.032445646822453,0.10243497043848],[0.13020706176758,0.0036287887487561,0.15063074231148],[0.15166585147381,-0.1492565870285,0.048520613461733]],[[-0.041137237101793,-0.13634926080704,-0.092077605426311],[-0.068047225475311,-0.064853154122829,-0.074365168809891],[-0.015488060191274,-0.0070425202138722,0.02813526801765]],[[-0.063330538570881,0.094300635159016,-0.034226175397635],[0.04544760286808,-0.13303343951702,-0.098106272518635],[0.069824382662773,-0.032813474535942,0.12724398076534]],[[-0.15376651287079,0.012791635468602,0.048013962805271],[0.049911689013243,-0.017319764941931,-0.041976746171713],[0.019924532622099,-0.049750614911318,0.10455790162086]],[[-0.028205897659063,0.041537426412106,-0.045435547828674],[-0.053660910576582,-0.028276262804866,0.12753981351852],[0.06877014786005,0.042677778750658,-0.021641643717885]],[[0.089890860021114,0.019224043935537,-0.046461600810289],[0.013615950010717,0.12085784226656,-0.020901631563902],[0.073802553117275,0.01077678706497,0.073232531547546]],[[0.036533050239086,0.091851748526096,0.078974485397339],[-0.079072758555412,-0.0017119444673881,0.0050999592058361],[-0.043441981077194,-0.034912094473839,-0.030506169423461]],[[0.09949254989624,0.069229513406754,-0.11412844061852],[0.011297075077891,-0.0070283743552864,-0.042015768587589],[-0.063051998615265,0.035481885075569,-0.011464378796518]],[[0.066953510046005,-0.091949932277203,0.055385429412127],[-0.067522518336773,0.069834239780903,0.0082558523863554],[0.016431534662843,0.086764290928841,-0.076431766152382]],[[-0.0091999983415008,0.0031790167558938,-0.12858262658119],[0.050312381237745,0.054106671363115,-0.038668528199196],[0.010374256409705,-0.01286621298641,0.046246185898781]],[[-0.01408488675952,0.010782545432448,0.12882113456726],[0.10730840265751,-0.069229289889336,-0.069216795265675],[0.017465230077505,-0.084743984043598,-0.056568499654531]],[[0.039435528218746,0.015201283618808,-0.10698513686657],[-0.035569742321968,-0.040661886334419,-0.010226824320853],[-0.17884197831154,-0.054581753909588,-0.020714994519949]],[[-0.039824984967709,0.030017178505659,-0.2208000421524],[0.15788087248802,-0.035546366125345,-0.03271172568202],[0.0056588831357658,-0.049885261803865,0.056268863379955]],[[0.055885039269924,0.023830562829971,-0.046617638319731],[-0.00028285657754168,0.0060318987816572,-0.019667038694024],[-0.032690223306417,0.021257732063532,0.085701733827591]],[[0.088389210402966,-0.022380150854588,-0.046607874333858],[0.066208735108376,-0.036924362182617,0.061661694198847],[0.051442500203848,-0.044023003429174,-0.0051375753246248]],[[0.09007216244936,1.3568562280852e-05,0.059361610561609],[-0.022883890196681,-0.075130321085453,-0.12457869946957],[-0.04056005179882,0.037384942173958,0.059809230268002]],[[-0.039146885275841,-0.032641842961311,0.031322136521339],[-0.079999096691608,-0.018447626382113,-0.020994847640395],[0.13453423976898,0.030670272186399,-0.05744681507349]],[[-0.094135075807571,-0.11321376264095,-0.028075069189072],[0.22375671565533,0.045350931584835,0.0021425941959023],[-0.13729158043861,-0.099553972482681,0.096891701221466]],[[0.098557963967323,0.10877619683743,0.0075444667600095],[-0.16117712855339,0.03855487704277,-0.090773098170757],[-0.031322818249464,0.0058162864297628,-0.083866477012634]],[[-0.069355480372906,0.045632384717464,0.099282264709473],[0.12001565843821,0.0064903371967375,-0.098466999828815],[-0.026881141588092,-0.015812693163753,0.022308118641376]],[[0.043193034827709,0.077713385224342,-0.16667568683624],[0.0021371464245021,-0.094191372394562,0.051239982247353],[0.076937206089497,-0.14362916350365,0.10168334841728]],[[-0.002794723957777,0.0018235911848024,-0.0040699588134885],[0.060442119836807,0.046180944889784,-0.070232070982456],[-0.045911714434624,-0.10410173982382,-0.031780164688826]],[[-0.063530907034874,0.080081857740879,-0.067315138876438],[-0.039629764854908,-0.0154685433954,0.03926245868206],[0.015099097043276,-0.014896375127137,-0.04506878182292]],[[-0.035787329077721,-0.1028246730566,0.0015606438973919],[0.084586277604103,0.14079461991787,-0.059939231723547],[0.08547830581665,-0.027650777250528,-0.088030725717545]],[[-0.010313568636775,-0.18233448266983,-0.12689539790154],[0.12856639921665,-0.12891715764999,0.029762355610728],[-0.076959520578384,-0.0081540616229177,-0.2175244987011]],[[-0.014247419312596,0.063747487962246,-0.016568277031183],[0.042804639786482,0.062945321202278,-0.034749817103148],[-0.022539101541042,-0.13575154542923,0.032893624156713]],[[-0.10905456542969,0.035047650337219,-0.079387530684471],[0.068796128034592,-0.028727360069752,0.1344830095768],[-0.048082493245602,0.066766738891602,0.016724100336432]],[[-0.095043532550335,0.062904953956604,-0.043303895741701],[-0.15221294760704,0.084204941987991,0.030936196446419],[-0.15392622351646,0.17438173294067,0.00030580774182454]]],[[[-0.18672469258308,-0.014136877842247,0.066603191196918],[0.1161622107029,-0.050335112959146,-0.069631025195122],[0.067983709275723,-0.099413387477398,-0.043504558503628]],[[0.11407096683979,0.067406609654427,-0.0087727159261703],[0.11156252026558,-0.10575681179762,-0.2001506537199],[0.013077892363071,0.010035429149866,-0.010131266899407]],[[-0.04828293249011,0.051895122975111,-0.1109627187252],[-0.034760538488626,-0.026143239811063,-0.056712456047535],[0.10875774919987,0.083603069186211,0.10646960139275]],[[-0.042040750384331,-0.097452513873577,0.13892777264118],[0.13482400774956,0.074201367795467,0.22577752172947],[-0.12203067541122,-0.06742287427187,-0.049150049686432]],[[0.092166982591152,-0.0019341943552718,0.066479831933975],[0.078848347067833,0.017676167190075,0.079343698918819],[0.0080841286107898,-0.14169669151306,-0.1030812188983]],[[-0.036098375916481,-0.0020382567308843,-0.078591801226139],[-0.11026223003864,-0.033213816583157,0.1183222681284],[-0.11292731761932,0.011883083730936,-0.066366538405418]],[[-0.073792055249214,0.1055805683136,0.033110614866018],[-0.15606701374054,-0.12480809539557,-0.012940113432705],[0.22698643803596,0.14319212734699,-0.017121473327279]],[[-0.0059352023527026,-0.014412200078368,0.064411722123623],[-0.12915126979351,-0.042499665170908,-0.11793427914381],[0.092707388103008,-0.035540912300348,0.019600113853812]],[[-0.13136687874794,0.092607460916042,-0.00034338861587457],[0.032948985695839,-0.025379583239555,0.11217498779297],[-0.39410468935966,-0.11199051886797,-0.18411035835743]],[[0.050807420164347,-0.040508523583412,-0.12392108142376],[-0.042005371302366,-0.075821049511433,0.10368622094393],[0.022244762629271,-0.16213569045067,0.11164508014917]],[[0.0072572687640786,0.21538276970387,0.2210975587368],[-0.064015671610832,-0.14594462513924,-0.11363892257214],[0.032128531485796,-0.21227967739105,-0.010113323107362]],[[-0.085570305585861,0.048591241240501,0.096558548510075],[-0.019777314737439,-0.031630899757147,-0.11320758610964],[0.1205887272954,-0.016329666599631,-0.073060169816017]],[[0.23265016078949,0.071000255644321,0.20529346168041],[-0.0097966520115733,-0.23803442716599,-0.026168325915933],[-0.048253044486046,0.070556856691837,-0.15646751224995]],[[0.057639464735985,0.069202214479446,-0.15391102433205],[0.0057548196054995,-0.0090212747454643,0.073397874832153],[0.039023317396641,0.038507323712111,-0.080056294798851]],[[0.056780863553286,0.13815230131149,-0.016009388491511],[0.11210107803345,0.026182901114225,-0.073009878396988],[0.11302099376917,-0.043664734810591,0.14009186625481]],[[0.3265372812748,0.11699211597443,0.023641182109714],[0.046703241765499,-0.052051201462746,-0.025549346581101],[-0.050514932721853,0.050281774252653,0.024409659206867]],[[-0.087706930935383,-0.0026740077883005,0.050616551190615],[-0.13305941224098,-0.073556080460548,-0.049326129257679],[0.14531764388084,0.2025002092123,0.30779257416725]],[[0.19721671938896,0.012401382438838,0.0041139763779938],[-0.25249242782593,0.045607846230268,-0.091264814138412],[-0.016955764964223,-0.033098123967648,0.1102414354682]],[[0.043938256800175,-0.069253675639629,-0.09478897601366],[0.13657811284065,0.099674232304096,0.063298776745796],[-0.034617956727743,-0.0086545096710324,-0.0359917730093]],[[0.021531376987696,-0.090891502797604,-0.026203596964478],[0.015386269427836,-0.00045468882308342,-0.16847555339336],[0.16439940035343,-0.14789633452892,0.14950409531593]],[[-0.13439859449863,0.044156838208437,0.1088957041502],[0.00902019161731,0.0016812027897686,0.014314528554678],[0.079682685434818,-0.018388705328107,-0.064122371375561]],[[0.038890037685633,0.15133781731129,0.042242843657732],[-0.090875059366226,-0.17974303662777,-0.06199936196208],[0.061452731490135,-0.16889579594135,0.11953811347485]],[[-0.11845347285271,-0.03812799602747,0.17648483812809],[-0.023560140281916,-0.17811399698257,-0.24919886887074],[0.10032103210688,-0.12372252345085,0.28173592686653]],[[-0.020047904923558,0.16920498013496,0.21261419355869],[0.045123036950827,-0.030832061544061,0.018586127087474],[-0.0076372232288122,0.0041942871175706,-0.022124581038952]],[[-0.00058459804859012,-0.022128352895379,-0.06606636941433],[0.15816669166088,0.041283823549747,0.023028736934066],[-0.17420172691345,0.098424255847931,-0.069137766957283]],[[0.098690584301949,-0.14749726653099,-0.13255435228348],[-0.006789178121835,0.024697449058294,-0.12045937776566],[0.11766657233238,-0.019969698041677,0.056393686681986]],[[-0.063988097012043,0.16554805636406,-0.066010475158691],[-0.24273793399334,-0.12405183166265,0.017660032957792],[-0.11051139235497,-0.1187751069665,0.090140998363495]],[[0.1030490770936,0.13865113258362,0.056305598467588],[-0.14017534255981,-0.20189575850964,-0.061901494860649],[-0.21195892989635,-0.020487908273935,-0.0083669070154428]],[[0.096852615475655,-0.078478142619133,-0.048090416938066],[0.020364437252283,-0.24543784558773,-0.08331123739481],[0.10987206548452,0.11535891145468,0.11164839565754]],[[0.074034355580807,-0.024427384138107,0.13508468866348],[-0.032406337559223,0.049552779644728,-0.034832641482353],[0.0041450709104538,0.062373217195272,0.15957278013229]],[[0.026679689064622,-0.07586669921875,-0.057486455887556],[-0.065075561404228,-0.11753663420677,-0.029893092811108],[0.055133055895567,0.044027589261532,0.045396652072668]],[[-0.062822222709656,0.0082283290103078,0.10859783738852],[0.073821187019348,-0.0096727665513754,-0.12557032704353],[0.07055875658989,0.015573262237012,-0.082329131662846]]],[[[0.08072292804718,-0.085251919925213,0.060028504580259],[0.074285373091698,-0.08062169700861,0.056730102747679],[-0.090484626591206,0.1003141105175,-0.021945269778371]],[[0.018183778971434,0.088613450527191,0.083236962556839],[0.15477676689625,-0.0027462856378406,-0.13718551397324],[0.013255738653243,0.051680203527212,-0.052262905985117]],[[-0.052575454115868,0.025568382814527,-0.08447027951479],[0.021534519270062,0.11146198958158,-0.13155843317509],[0.034321367740631,0.037247065454721,0.13820035755634]],[[0.19667023420334,0.0059328936040401,0.091705806553364],[0.035492148250341,-0.022281900048256,-0.14010933041573],[-0.0005922224954702,0.03972914069891,-0.20703469216824]],[[0.088865973055363,0.091683931648731,0.082882396876812],[-0.015951717272401,-0.038442354649305,-0.093161948025227],[0.046221971511841,0.10283151268959,0.00075848470441997]],[[0.10057147592306,-0.072555020451546,-0.04781386256218],[-0.07611271739006,-0.17402239143848,-0.082975327968597],[0.13279904425144,-0.0099492464214563,-0.098903931677341]],[[-0.15829598903656,-0.13546298444271,0.083436124026775],[0.077213928103447,0.10543078929186,-0.10273434966803],[0.013408277183771,0.020910566672683,0.15008428692818]],[[0.10483200103045,-0.021429738029838,0.033650293946266],[-0.13180217146873,0.11418265849352,0.1001461148262],[-0.01306371204555,-0.16127102077007,-0.072327479720116]],[[-0.0067599127069116,-0.046395044773817,0.062750399112701],[-0.025525078177452,0.023723313584924,0.019222004339099],[-0.099590182304382,0.092780083417892,0.01283841021359]],[[-0.0079818004742265,-0.050099264830351,0.05361346155405],[0.033054020255804,-0.010534257628024,0.070313706994057],[-0.12506547570229,-0.1520152837038,-0.070828154683113]],[[-0.086813420057297,0.13770525157452,-0.046408958733082],[0.017738332971931,0.010897492989898,-0.069674596190453],[0.085261605679989,0.099894240498543,-0.011047025211155]],[[0.07416108250618,-0.18273666501045,-0.1461121737957],[-0.07806121557951,0.14990694820881,0.043268505483866],[-0.011269258335233,-0.0027384201530367,0.028455344960093]],[[0.0996463149786,-0.017963426187634,0.10877594351768],[-0.017307851463556,-0.0038205557502806,-0.12018237262964],[-0.086309514939785,0.0073256576433778,0.043199133127928]],[[0.028836462646723,0.054363366216421,-0.1578982770443],[-0.092936426401138,-0.049031149595976,-0.024087965488434],[-0.016107002273202,-0.047204788774252,0.080569215118885]],[[0.10147909075022,-0.03503143787384,-0.022418070584536],[-0.11660702526569,0.046633806079626,-0.12221290171146],[-0.023729797452688,-0.1224362179637,-0.036498442292213]],[[0.23493845760822,0.077950537204742,-0.080057583749294],[0.072217889130116,0.014303741976619,-0.11670485883951],[-0.33566018939018,-0.091168262064457,0.1255242228508]],[[0.13636857271194,-0.1010350883007,0.020217871293426],[-0.11778146028519,-0.071783259510994,-0.22397916018963],[0.052422981709242,0.002935481024906,-0.02986098639667]],[[0.13889046013355,-0.057890009135008,-0.070530511438847],[-0.097534328699112,-0.11427560448647,0.091809131205082],[0.010192007757723,-0.008808103390038,-0.06557460129261]],[[-0.16378708183765,-0.13043788075447,-0.10345680266619],[0.0032817791216075,0.081176519393921,0.06672465801239],[-0.14210951328278,-0.15639986097813,-0.043596155941486]],[[0.060518719255924,0.088814258575439,-0.057163320481777],[-0.081045784056187,-0.085024133324623,-0.046064492315054],[0.016724994406104,0.010322433896363,0.057128716260195]],[[0.045607782900333,0.21313712000847,0.079667538404465],[-0.14930970966816,0.0085352333262563,-0.048847690224648],[0.018671959638596,-0.022435007616878,-0.050450496375561]],[[-0.021012475714087,0.11370895802975,-0.060023970901966],[-0.059682086110115,-0.15107034146786,0.070129334926605],[-0.13351072371006,0.083079166710377,-0.086453579366207]],[[0.078411772847176,-0.056558012962341,-0.13697537779808],[-0.10666050761938,0.1094641238451,-0.0478107444942],[-0.05360347405076,-0.10675255954266,-0.0049305744469166]],[[0.067500114440918,-0.014449219219387,0.030950851738453],[-0.17371198534966,-0.0081502636894584,0.02150509878993],[-0.098447784781456,0.1156976595521,0.023344576358795]],[[-0.04968187212944,-0.012562504038215,-0.076533138751984],[0.017853837460279,0.10589334368706,-0.033598560839891],[-0.10980618000031,0.10548097640276,0.15262027084827]],[[-0.018692806363106,-0.018435196951032,0.029145082458854],[0.020898645743728,-0.10379696637392,0.058425813913345],[-0.10756180435419,-0.07078667730093,0.032550010830164]],[[0.15901550650597,0.12264632433653,0.095190174877644],[0.078414618968964,-0.084011077880859,0.034850332885981],[-0.10018043220043,-0.14543490111828,0.043539352715015]],[[0.0047105858102441,-0.041116286069155,-0.054950967431068],[0.0022706324234605,-0.060465089976788,0.025113953277469],[-0.10448467731476,0.066489592194557,0.046947415918112]],[[-0.13240617513657,0.014163417741656,-0.05089545622468],[-0.13297863304615,-0.00983751937747,0.12353248894215],[0.026323301717639,0.16084761917591,0.026992045342922]],[[0.19539262354374,-0.14473952353001,0.035735666751862],[0.04554008692503,0.070519477128983,-0.035878397524357],[-0.073166839778423,-0.072332568466663,-0.074998065829277]],[[0.17178621888161,0.042722653597593,-0.086403518915176],[-0.19485837221146,-0.033940896391869,-0.0057100760750473],[-0.012462290003896,-0.16480283439159,0.095142334699631]],[[-0.033772449940443,0.22154942154884,0.14333426952362],[-0.032222460955381,0.10306257754564,-0.079299509525299],[-0.071691893041134,0.013413053937256,0.0094407238066196]]]],"nOutputPlane":32,"kW":3,"kH":3,"bias":[-0.014624668285251,0.031681474298239,-0.037581402808428,0.036337435245514,0.0065425266511738,0.012575327418745,-0.010589422658086,0.013271815143526,0.026266969740391,-0.010007214732468,-0.0039728437550366,0.0093510942533612,-0.010367064736784,0.016186010092497,0.05244442820549,0.0059518148191273,0.0068631866015494,0.014958866871893,-0.015952922403812,-0.06029337272048,0.019372986629605,0.009163566865027,0.012592884711921,0.0025056062731892,-0.061443358659744,0.007696429733187,-0.062185846269131,0.024619448930025,0.00097111699869856,-0.097478151321411,-0.011142830364406,-0.016063258051872],"nInputPlane":32},{"weight":[[[[-0.18863789737225,-0.26887077093124,0.00073375535430387],[0.13176934421062,0.020660987123847,0.064263328909874],[0.040945336222649,-0.035014908760786,0.013240080326796]],[[0.049629036337137,0.076521806418896,-0.017944652587175],[0.067343547940254,-0.055472239851952,0.085579603910446],[0.052751757204533,0.023402284830809,-0.11137941479683]],[[-0.13182650506496,-0.037493824958801,0.16275636851788],[-0.033154290169477,-0.23110790550709,0.056309763342142],[0.19909882545471,0.053254600614309,-0.027480561286211]],[[-0.018599411472678,-0.0081052649766207,0.10831373929977],[-0.085451297461987,0.13579146564007,0.087253630161285],[-0.034551236778498,0.11486983299255,0.067933492362499]],[[-0.027483902871609,-0.03663782402873,0.037552248686552],[0.066518276929855,0.0096956603229046,-0.1337820738554],[-0.070283159613609,0.031533069908619,-0.013386237435043]],[[0.04561759904027,-0.026645492762327,-0.24290916323662],[0.076023109257221,0.0057875737547874,-0.093304976820946],[0.0092670181766152,0.097297072410583,-0.076725676655769]],[[-0.21316017210484,-0.05942364782095,-0.071623831987381],[-0.037391595542431,0.023351673036814,0.17304565012455],[-0.11827435344458,0.13809850811958,0.17382301390171]],[[0.009296658448875,-0.043438497930765,0.060120519250631],[-0.15525786578655,-0.097522370517254,-0.16201339662075],[-0.10207993537188,-0.17855890095234,0.068590514361858]],[[-0.060310672968626,0.0035385035444051,-0.0037837161216885],[-0.14764638245106,-0.093291006982327,0.14192998409271],[-0.00033211064874195,-0.031928483396769,-0.097857512533665]],[[-0.049072399735451,0.018025022000074,-0.096025973558426],[-0.105628490448,-0.060321714729071,0.16554762423038],[-0.072731703519821,-0.097328580915928,-0.048412390053272]],[[0.024199478328228,0.036614809185266,-0.035572811961174],[-0.12689369916916,0.13756781816483,-0.013908142223954],[-0.04738400503993,0.051750592887402,-0.01937729306519]],[[-0.14655335247517,0.17516696453094,-0.0057843332178891],[0.02135313488543,-0.0064929341897368,0.030007444322109],[0.094690687954426,-0.11305906623602,0.031381510198116]],[[0.03127808123827,-0.19141268730164,0.14703068137169],[-0.38444265723228,-0.14634095132351,0.0085402633994818],[0.099561862647533,0.15241804718971,-0.04953621327877]],[[-0.031012430787086,-0.10225935280323,-0.10687234997749],[0.0092249102890491,0.010702554136515,-0.15523310005665],[-0.027031425386667,0.048142701387405,0.034793768078089]],[[-0.0022672682534903,0.0086520733311772,-0.01450299937278],[-0.055513687431812,0.0073298453353345,0.046108338981867],[0.032816175371408,-0.054544620215893,-0.029905963689089]],[[-0.058982469141483,0.15726238489151,-0.10864859074354],[-0.026320310309529,0.013198238797486,-0.10866530239582],[-0.068639345467091,-0.083369322121143,0.15378703176975]],[[0.10814119875431,-0.17650450766087,-0.094079941511154],[-0.13976918160915,0.062283154577017,-0.10306347161531],[0.11447930335999,-0.12501019239426,-0.10015404969454]],[[-0.14478677511215,-0.043888308107853,-0.096626855432987],[-0.15438167750835,-0.074059888720512,-0.034465260803699],[0.12409505993128,-0.062175869941711,0.07941222935915]],[[-0.0035019051283598,-0.080870650708675,0.13905444741249],[0.1106131747365,0.084853231906891,-0.010841210372746],[-0.044155184179544,-0.028055937960744,0.020264495164156]],[[-0.16107857227325,-0.17787298560143,-0.14807216823101],[-0.083207212388515,-0.017860716208816,-0.046170320361853],[-0.15469582378864,-0.071825571358204,0.12270081788301]],[[-0.043910022825003,0.035433534532785,-0.094052948057652],[0.10142469406128,-0.037005573511124,0.090795107185841],[-0.034748006612062,0.078909441828728,0.029317999258637]],[[-0.027660077437758,-0.12240201234818,-0.14430657029152],[0.00049330142792314,0.012299004010856,-8.5082116129342e-05],[0.031541645526886,0.13230255246162,-0.016222001984715]],[[0.11451531946659,0.029822310432792,0.14831709861755],[0.030211498960853,0.050089094787836,0.18265715241432],[-0.14853909611702,-0.29702168703079,0.3413080573082]],[[0.051474113017321,0.041638109833002,-0.071945630013943],[-0.029295625165105,0.010678922757506,-0.066194579005241],[-0.10809165239334,-0.1736291795969,0.10828179866076]],[[6.2050930864643e-05,-0.069050930440426,-0.17923507094383],[0.016846098005772,-0.11962001770735,-0.059381648898125],[0.120973482728,0.095876112580299,-0.041610013693571]],[[-0.093374364078045,-0.12584583461285,0.004100828897208],[0.14435184001923,0.015417036600411,0.071346111595631],[-0.069272302091122,0.22110517323017,-0.1672774553299]],[[-0.0075907576829195,-0.051980052143335,-0.049029342830181],[0.076214246451855,-0.12532387673855,-0.14576964080334],[0.033563375473022,0.15691713988781,0.056273639202118]],[[0.026672247797251,-0.044917333871126,0.025404393672943],[0.085419997572899,0.23087124526501,-0.039540883153677],[-0.26002705097198,0.086316205561161,-0.040967777371407]],[[-0.14156205952168,-0.21984538435936,-0.011672168970108],[-0.034222941845655,-0.11207626014948,0.12998193502426],[-0.023498533293605,0.016413543373346,0.022755239158869]],[[0.07696358114481,-0.058359019458294,-0.27271491289139],[0.019904246553779,0.11298635601997,-0.24725720286369],[-0.027310766279697,0.059283554553986,0.092077329754829]],[[0.042925324290991,0.0029052814934403,-0.049868252128363],[0.026092026382685,-0.0017359692137688,-0.034258086234331],[-0.15288960933685,0.028293929994106,-0.031290158629417]],[[-0.1077519506216,0.026122039183974,-0.17706534266472],[-0.034550283104181,0.15722146630287,-0.18651024997234],[-0.10564029216766,-0.12963417172432,-0.10244868695736]]],[[[-0.19559016823769,-0.044690068811178,-0.20675291121006],[0.073027096688747,0.10842528939247,-0.062201827764511],[-0.14699757099152,-0.086799904704094,-0.11242966353893]],[[0.093313559889793,-0.02885502204299,0.010766630060971],[0.019292736425996,-0.052291549742222,-0.019161943346262],[-0.062953539192677,-0.10764446109533,-0.011627489700913]],[[0.091946989297867,-0.026434078812599,-0.13467256724834],[0.024201441556215,-0.034568309783936,0.10707683861256],[0.052386820316315,-0.0030358813237399,0.1154223755002]],[[0.14286510646343,0.011930467560887,-0.088382929563522],[-0.29663556814194,-0.079944364726543,0.093534469604492],[0.10898234695196,-0.011851960793138,0.011804658919573]],[[-0.0092257261276245,-0.078069567680359,0.0044953296892345],[-0.029883705079556,-0.073658347129822,0.03555716201663],[0.038153272122145,-0.0056265476159751,-0.060027167201042]],[[-0.0050411005504429,0.098432339727879,-0.088525027036667],[0.1661225259304,-0.04529170319438,0.033459007740021],[-0.072774581611156,0.045779641717672,0.070080384612083]],[[0.069134570658207,-0.0018213358707726,-0.22737340629101],[-0.048159956932068,0.036717426031828,-0.0062028695829213],[-0.007624935824424,-0.017547341063619,-0.0562689229846]],[[-0.11629472672939,0.13163858652115,0.088613249361515],[0.074487388134003,-0.054945301264524,0.083612404763699],[0.14697866141796,0.040676880627871,-0.0014264433411881]],[[0.029648890718818,-0.061050090938807,-0.1363599896431],[-0.0044289627112448,0.072482869029045,-0.0026320389006287],[-0.036799855530262,0.078946031630039,-0.0058169602416456]],[[-0.17290709912777,-0.14309479296207,-0.084867246448994],[-0.020947482436895,0.12155383825302,0.082740344107151],[0.0028402032330632,0.18012414872646,-0.054391775280237]],[[0.054313234984875,-0.1318871229887,-0.065397188067436],[-0.122444473207,0.0032779942266643,0.062152922153473],[0.09514707326889,-0.042946368455887,-0.11574091762304]],[[0.097432963550091,-0.011738468892872,-0.015747867524624],[0.11345214396715,-0.19646866619587,-0.10775692015886],[0.11197225749493,-0.088929526507854,-0.090459570288658]],[[-0.065616101026535,-0.1457934230566,0.053758729249239],[-0.24822628498077,-0.11431981623173,0.037614487111568],[0.24151130020618,-0.03747322037816,0.014973362907767]],[[-0.10884834825993,0.021290712058544,0.063146740198135],[-0.2006099075079,-0.047068148851395,0.018068861216307],[0.052145410329103,0.048777110874653,-0.067170642316341]],[[-0.049479763954878,-0.047429043799639,0.026997359469533],[-0.02065809443593,0.0072235176339746,-0.0051323054358363],[0.028160378336906,0.042092032730579,0.00013665267033502]],[[-0.041130352765322,0.12980060279369,-0.018526183441281],[0.13299050927162,-0.021771389991045,-0.033708777278662],[0.096993766725063,-0.1085321828723,-0.00072053272742778]],[[-0.026788054034114,-0.04388103634119,-0.056329239159822],[0.029337314888835,-0.092329896986485,-0.08069647103548],[-0.021646393463016,0.060740627348423,0.097416378557682]],[[0.024531619623303,0.055188044905663,0.10825076699257],[0.061550501734018,-0.067072555422783,-0.014624450355768],[0.08649480342865,0.027118282392621,-0.12372010201216]],[[0.13754241168499,-0.040933128446341,0.071393221616745],[0.02207375317812,-0.12062292546034,-0.26710242033005],[0.071134194731712,-0.026676218956709,-0.017611987888813]],[[-0.058213468641043,-0.056557197123766,0.051567889750004],[-0.11712348461151,0.073181107640266,-0.062251798808575],[-0.12765362858772,-0.19784463942051,-0.018467226997018]],[[0.027439096942544,-0.050272151827812,-0.05067078396678],[-0.18991784751415,0.014144695363939,0.12801486253738],[-0.031494826078415,-0.063236348330975,-0.05870995298028]],[[0.028357179835439,-0.10531324893236,-0.073986060917377],[-0.093668162822723,0.049753256142139,-0.036934204399586],[-0.013129856437445,0.15216861665249,0.081953354179859]],[[-0.1407717615366,0.0091162659227848,0.018106088042259],[0.0003840105200652,0.032874181866646,-0.14178504049778],[-0.041669484227896,0.15914197266102,0.015798574313521]],[[0.14347018301487,-0.093713961541653,0.071891196072102],[0.063481628894806,0.040480863302946,-0.0088629191741347],[-0.060887683182955,-0.00784045830369,0.036082983016968]],[[-0.13293424248695,0.022734625265002,-0.035212069749832],[-0.02130763232708,-0.10161579400301,-0.088088437914848],[-0.047999300062656,-0.039512448012829,-0.10513816773891]],[[0.016403457149863,-0.12416718900204,-0.12304805219173],[-0.050475835800171,-0.1254458129406,0.14192421734333],[-0.088581003248692,0.019270975142717,-0.041556462645531]],[[-0.039831452071667,-0.037321306765079,-0.039575193077326],[0.13130435347557,0.060971409082413,-0.038626283407211],[0.085307024419308,-0.016853827983141,-0.05602427944541]],[[0.0018852248322219,0.01989539526403,0.13343049585819],[0.17819221317768,-0.044884953647852,0.045369029045105],[-0.31045150756836,-0.16790042817593,-0.12041886895895]],[[0.15305396914482,-0.24959662556648,-0.15382987260818],[0.088707759976387,-0.014324033632874,-0.12379854917526],[-0.1179014891386,0.098391681909561,0.083908632397652]],[[0.13837206363678,-0.12480073422194,-0.096484556794167],[-0.049617953598499,-0.0070161013863981,0.079937763512135],[0.020342454314232,0.044006321579218,-0.13780032098293]],[[-0.15048959851265,0.023763535544276,0.062425531446934],[-0.031213698908687,0.098360247910023,-0.050548996776342],[-0.037351459264755,-0.11565233767033,-0.2113753259182]],[[-0.12503466010094,0.027199171483517,-0.12993897497654],[-0.0056778453290462,-0.11680094897747,-0.12744529545307],[0.01026055123657,-0.013621585443616,-0.1092963963747]]],[[[-0.16674539446831,0.13734044134617,-0.035961486399174],[-0.057182263582945,-0.12777729332447,0.024561166763306],[-0.092989414930344,-0.10022421181202,-0.04188397526741]],[[0.0095152975991368,0.016384113579988,0.061636179685593],[-0.029236529022455,0.043951272964478,0.043008718639612],[-0.11381004005671,0.078574672341347,-0.033711645752192]],[[-0.029042029753327,-0.10542630404234,-0.048924688249826],[0.1262468546629,-0.022486576810479,-0.03053349070251],[0.024203639477491,0.057082902640104,-0.030529955402017]],[[-0.15857034921646,-0.05106832832098,-0.096189275383949],[0.12865048646927,0.14164152741432,0.07589752972126],[-0.042156022042036,0.13971193134785,0.056281220167875]],[[-0.021171826869249,-0.041582763195038,0.073308877646923],[-0.026607098057866,0.043308436870575,0.0048724836669862],[0.061182733625174,0.0016298741102219,-0.0024248431436718]],[[0.0011675042333081,0.12182626873255,0.017632033675909],[-0.073621712625027,0.16392458975315,0.1285408437252],[-0.16237281262875,-0.046702299267054,-0.1508132815361]],[[-0.058134350925684,0.0032738314475864,-0.11140783131123],[-0.09191370755434,-0.096592269837856,-0.1255044490099],[0.038068331778049,0.066736228764057,0.036628995090723]],[[-0.064965628087521,-0.012874097563326,-0.038475941866636],[-0.052518229931593,0.19726213812828,0.03320475295186],[-0.16820496320724,-0.23384718596935,-0.10690725594759]],[[0.037687860429287,0.16073851287365,0.046938020735979],[0.047663535922766,0.1060728058219,-0.12829890847206],[-0.072471879422665,-0.052452277392149,-0.14030790328979]],[[-0.15028403699398,-0.07680806517601,0.034281104803085],[-0.069661289453506,0.048156578093767,-0.11619075387716],[-0.044479388743639,0.130126953125,-0.10620549321175]],[[-0.076612032949924,0.0071892375126481,-0.11665596812963],[-0.030261784791946,-0.19873069226742,-0.2622564136982],[0.018523495644331,0.031271610409021,0.090065725147724]],[[0.082172058522701,-0.048308812081814,-0.0078220358118415],[0.11613480746746,-0.054207772016525,-0.089041963219643],[-0.14434789121151,0.10388034582138,-0.057590533047915]],[[0.092964395880699,-0.10458420962095,-0.16059632599354],[0.10767161101103,0.013157888315618,0.04544972255826],[-0.29077059030533,0.0055852015502751,-0.03670059889555]],[[-0.025611992925406,-0.091438859701157,-0.15898425877094],[0.084525361657143,0.054345812648535,0.085526518523693],[-0.032503481954336,0.060582753270864,0.19421423971653]],[[0.0048475968651474,-0.022557009011507,-0.028389183804393],[0.042300622910261,0.024442797526717,0.01699560135603],[0.10425362735987,-0.06329370290041,-0.063116267323494]],[[0.028459463268518,0.0026129779871553,0.03158950060606],[0.080632008612156,0.06487450003624,0.10703583806753],[0.02744166739285,0.17203636467457,-0.08957876265049]],[[0.0037449970841408,0.031817257404327,-0.10706435143948],[-0.032668918371201,0.039625111967325,-0.27244165539742],[0.0059215319342911,0.096823833882809,0.064615160226822]],[[0.082186654210091,0.052494615316391,0.10079740732908],[-0.051486931741238,0.066678039729595,0.074858076870441],[-0.0034975688904524,-0.048240497708321,0.035398870706558]],[[-0.097038380801678,-0.025651095435023,0.070945367217064],[0.097058497369289,-0.036152109503746,0.13035978376865],[0.088322557508945,-0.076836116611958,0.020161226391792]],[[-0.035042177885771,0.13035272061825,-0.15720641613007],[-0.08977410197258,-0.066743642091751,-0.019853841513395],[-0.15569749474525,0.074231341481209,0.1105941683054]],[[0.013204516842961,-0.044868491590023,-0.035850126296282],[-0.048194944858551,-0.0077121783979237,-0.17513035237789],[-0.11989492177963,-0.031031800433993,-0.036108925938606]],[[-0.033811584115028,-0.001757894991897,0.032461702823639],[0.16274370253086,-0.11815381795168,-0.12569543719292],[-0.086872734129429,-0.12666222453117,0.18597576022148]],[[-0.12916883826256,-0.15673568844795,0.12193580716848],[-0.026874329894781,0.016395693644881,-0.00040996752795763],[0.077358141541481,0.051662985235453,0.06269558519125]],[[0.12573617696762,0.044815178960562,0.13063576817513],[-0.17608055472374,-0.040560498833656,-0.071859925985336],[-0.020174197852612,0.01570232026279,-0.090878374874592]],[[-0.11439533531666,-0.046435367316008,-0.046600569039583],[-0.068410620093346,0.052947394549847,0.062804281711578],[-0.0084844678640366,0.0845742598176,-0.026355424895883]],[[-0.064746156334877,-0.088280148804188,-0.087066315114498],[-0.091016344726086,-0.0060809231363237,0.15790928900242],[0.055131010711193,0.039147175848484,-0.057895064353943]],[[-0.010872269049287,-0.045485891401768,-0.042837392538786],[-0.080536559224129,0.074319683015347,0.058001667261124],[-0.023292955011129,0.024015111848712,0.026941305026412]],[[0.052955504506826,-0.062613040208817,-0.0047078495845199],[-0.062437932938337,-0.29615563154221,-0.16309489309788],[0.091379508376122,0.035793446004391,0.24623906612396]],[[0.070007182657719,0.022514943033457,-0.096826329827309],[-0.093694269657135,0.14387831091881,0.097035758197308],[0.029422540217638,-0.16621732711792,-0.0057569961063564]],[[-0.058366488665342,-0.12312974780798,-0.055045906454325],[-0.0016799397999421,-0.029386272653937,-0.0023587672039866],[0.026421511545777,0.10709756612778,0.19104266166687]],[[-0.10209968686104,-0.14341308176517,-0.1303680986166],[0.096663691103458,0.085867993533611,0.032048337161541],[-0.071019686758518,-0.007929190993309,0.081342995166779]],[[0.081284396350384,0.096486821770668,0.15271186828613],[0.0029563545249403,-0.02141585201025,0.066416934132576],[-0.041297908872366,-0.12641377747059,-0.08402881026268]]],[[[-0.0039434214122593,0.00069816428003833,-0.12872964143753],[-0.028743060305715,-0.04126363992691,0.0035134044010192],[0.056767895817757,-0.00070382549893111,-0.0016764582833275]],[[-0.067218273878098,-0.017626097425818,-0.026666874065995],[-0.10649763792753,-0.094490103423595,0.048012383282185],[-0.059524968266487,0.013268912211061,0.23477040231228]],[[0.055582746863365,0.10557168722153,0.082878723740578],[0.14474809169769,-0.015191287733614,-0.066087700426579],[-0.043338987976313,0.028442775830626,-0.095692045986652]],[[-0.23411944508553,-0.17424263060093,-0.023637346923351],[0.051571171730757,0.16642591357231,-0.095027670264244],[0.013109218329191,0.082955710589886,-0.17846149206161]],[[-0.041538570076227,-0.028670309111476,-0.051346898078918],[-0.17734161019325,-0.10219229757786,-0.10312006622553],[0.055986255407333,0.10629680752754,0.015907006338239]],[[0.060019597411156,0.0080296108499169,-0.15796855092049],[-0.10370057076216,-0.039447322487831,0.18474760651588],[-0.079680666327477,0.06322930753231,0.062376756221056]],[[0.023695781826973,0.015255318023264,-0.22717627882957],[0.025443295016885,-0.016938446089625,0.098821945488453],[-0.037131320685148,0.032714799046516,-0.031074564903975]],[[0.023754937574267,-0.28941062092781,-0.037077553570271],[0.15439021587372,-0.034346602857113,-0.080600254237652],[0.11253716796637,0.0138028440997,0.045228093862534]],[[-0.032449003309011,-0.011690248735249,0.00087710120715201],[0.00028422530158423,-0.075883015990257,0.088080175220966],[0.064973592758179,-0.02668684348464,0.16682255268097]],[[0.15946024656296,-0.05621413141489,-0.0073993182741106],[-0.0070914225652814,-0.041195798665285,0.013619881123304],[0.045340359210968,-0.065164819359779,0.11446250230074]],[[0.18873254954815,0.036782387644053,-0.045693606138229],[-0.054765976965427,0.058045249432325,-0.12942136824131],[-0.056150007992983,-0.031557340174913,-0.085538245737553]],[[0.068150617182255,-0.16983735561371,-0.21017888188362],[0.03641190379858,-0.040936186909676,0.066888816654682],[0.031516630202532,0.18236802518368,0.11754132807255]],[[0.0070175663568079,-0.24010753631592,0.03816044703126],[0.016226163133979,-0.095014303922653,0.047623630613089],[-0.079674787819386,-0.1218709051609,0.14811213314533]],[[-0.20094458758831,0.026455324143171,0.14664939045906],[0.0029267480131239,0.062351979315281,-0.020132396370173],[-0.010542646050453,0.047754876315594,0.02044640481472]],[[0.094916276633739,-0.082583568990231,0.11195965111256],[-0.11374142765999,0.052889857441187,-0.13172274827957],[0.18697571754456,0.026380997151136,-0.15016868710518]],[[-0.10934593528509,0.095410443842411,0.044559389352798],[0.064637780189514,0.091831207275391,-0.20638652145863],[-0.077239774167538,0.0053943344391882,-0.011944958008826]],[[-0.14047814905643,-0.050269465893507,-0.058626588433981],[-0.10658156871796,0.035690855234861,0.066219605505466],[-0.19841992855072,-0.074720837175846,0.059322170913219]],[[0.094380803406239,0.023138761520386,0.11677483469248],[0.09357013553381,0.12507046759129,0.1354662925005],[-0.16901831328869,-0.08389051258564,0.17018958926201]],[[-0.070832133293152,0.14502692222595,0.038017682731152],[-0.050722949206829,0.12841801345348,-0.019767686724663],[0.082949183881283,-0.070964060723782,0.15848614275455]],[[-0.018553774803877,0.038060031831264,-0.039363410323858],[-0.080262772738934,0.02250806055963,0.20397472381592],[-0.016674866899848,0.0040180291980505,0.067092038691044]],[[-0.084468476474285,0.022993983700871,-0.027544945478439],[-0.060402393341064,0.08587659150362,0.12472220510244],[-0.1199409365654,-0.0040414230898023,0.041177291423082]],[[0.020504515618086,0.02381881326437,-0.11738726496696],[0.082424558699131,0.12412067502737,0.12219452112913],[0.13672938942909,-0.056889057159424,0.035348203033209]],[[-0.053762793540955,0.16446314752102,-0.065502002835274],[0.0075950878672302,0.20422974228859,0.066734567284584],[-0.12684541940689,0.092845551669598,0.0017103251302615]],[[-0.042115308344364,0.095409646630287,0.11481563746929],[0.033827234059572,-0.050967756658792,0.054885443300009],[-0.10420212894678,0.068014718592167,0.033176030963659]],[[-0.06098635494709,0.066414661705494,0.075957089662552],[-0.043614447116852,-0.077632002532482,0.086391754448414],[0.081556171178818,-0.085690677165985,0.0090040629729629]],[[-0.083840392529964,0.013778029941022,-0.057444401085377],[-0.080149725079536,0.058238871395588,0.22029274702072],[0.0054979487322271,0.10472325235605,-0.055890623480082]],[[-0.03094931319356,0.03570868819952,-0.044166624546051],[0.081809565424919,0.044549841433764,0.0076655484735966],[-0.05817724391818,-0.10793266445398,0.11616345494986]],[[0.13527321815491,0.15153248608112,-0.013707916252315],[-0.074124366044998,-0.12491189688444,0.13349494338036],[0.093452334403992,0.060652874410152,0.034625850617886]],[[-0.060640145093203,0.024242602288723,0.084181100130081],[0.15774093568325,-0.033184185624123,0.033048484474421],[0.12294465303421,0.026084998622537,-0.11119258403778]],[[0.12642385065556,0.035522632300854,-0.030744250863791],[0.053526230156422,0.13565872609615,0.11007463186979],[0.084889650344849,-0.042610973119736,-0.044407818466425]],[[-0.10904116183519,-0.12180253863335,-0.09675183147192],[-0.052222318947315,-0.055559374392033,-0.085728622972965],[0.068639971315861,0.095868706703186,0.065489768981934]],[[-0.032719884067774,0.02060361392796,0.026291575282812],[-0.068885020911694,-0.018041277304292,-0.0071103754453361],[0.069010578095913,0.071270570158958,0.063423454761505]]],[[[0.066217422485352,-0.028259035199881,0.10418669879436],[-0.10662192851305,-0.052229914814234,-0.027342531830072],[-0.096877388656139,-0.21065011620522,-0.18035911023617]],[[0.044132485985756,-0.03650065138936,0.039211980998516],[0.0032706626225263,0.018219092860818,0.034389771521091],[0.034960273653269,-0.012141495011747,-0.051676087081432]],[[0.03808669000864,0.10844123363495,0.0089766038581729],[0.088405124843121,-0.05980759114027,0.026950823143125],[0.0022470061667264,-0.020153820514679,-0.043403279036283]],[[0.064052917063236,0.076183646917343,-0.0046865087933838],[-0.0065524601377547,-0.050621498376131,0.13824659585953],[0.088469631969929,-0.066611215472221,-0.12487007677555]],[[0.052815888077021,-0.069455310702324,0.00013817707076669],[0.010585474781692,0.1114352196455,-0.068755447864532],[0.026163034141064,-0.11907511949539,0.028193466365337]],[[0.14401459693909,0.035072803497314,0.00063046521972865],[0.1024844199419,-0.074173353612423,-0.1047086417675],[0.088859781622887,-0.24770331382751,-0.0028404598124325]],[[0.045623738318682,-0.055264208465815,0.027977377176285],[0.099990241229534,-0.13382774591446,0.052287951111794],[0.11100766062737,-0.044983848929405,0.15869571268559]],[[0.11031835526228,-0.060787159949541,0.097988657653332],[-0.15063260495663,-0.042153082787991,0.05542067065835],[-0.17730587720871,-0.022524271160364,0.019726969301701]],[[0.045355059206486,0.044332426041365,0.024621291086078],[-0.085569955408573,0.11506281048059,0.10417872667313],[-0.07635772973299,-0.00056088902056217,-0.089677959680557]],[[0.039481293410063,0.0060259164310992,0.07624963670969],[-0.054877076297998,-0.012916545383632,0.088057182729244],[0.1442129611969,-0.046603325754404,-0.0042696916498244]],[[0.06978802382946,-0.045562773942947,-0.0067846123129129],[-0.070285677909851,-0.0040008495561779,-0.062939628958702],[-0.011709013022482,-0.11908883601427,-0.30057337880135]],[[0.11814377456903,-0.051918514072895,0.0052472120150924],[-0.076156362891197,-0.039815545082092,0.066268019378185],[0.03163331001997,-0.00047941590310074,0.018563754856586]],[[0.15036682784557,0.15445320308208,-0.11717134714127],[-0.026633081957698,0.02765797264874,-0.23481909930706],[0.026353683322668,0.083737574517727,-0.16179363429546]],[[0.19093590974808,0.0052860542200506,-0.013224614784122],[0.093772329390049,-0.09469922631979,-0.09014505892992],[-0.045744199305773,-0.0091527448967099,-0.14819931983948]],[[0.007118206936866,-0.11396547406912,0.054770588874817],[-0.022435368970037,-0.087509281933308,0.1127171292901],[0.065948970615864,-0.046403806656599,-0.016396434977651]],[[-0.1348453015089,0.02925125323236,-0.054965700954199],[0.050979740917683,-0.04237887263298,-0.20190292596817],[0.0058305584825575,0.085813857614994,0.065591529011726]],[[-0.0011284108040854,0.059831835329533,-0.042086012661457],[0.064940683543682,-0.010816177353263,0.04494409635663],[0.14456737041473,0.010729887522757,-0.14181570708752]],[[0.048138923943043,0.055140063166618,-0.1484776288271],[0.024985264986753,-0.028152544051409,0.0071690580807626],[-0.055908050388098,-0.1973329782486,-0.0056941718794405]],[[0.10044250637293,0.1484063565731,0.034115500748158],[0.12985408306122,-0.027864718809724,-0.2626374065876],[0.012779847718775,-0.12993527948856,-0.1840143352747]],[[0.0084327002987266,0.016690842807293,-0.0078486213460565],[0.039951149374247,0.02028077095747,-0.070242919027805],[0.0070392079651356,-0.1814061999321,-0.15305848419666]],[[0.076877735555172,0.00059337535640225,0.022232146933675],[-0.050108537077904,-0.091825641691685,-0.0070891100913286],[-0.021475050598383,-0.089590929448605,-0.087696999311447]],[[-0.012558669783175,-0.2444099932909,0.12491469085217],[0.10700226575136,0.0032571065239608,0.13185121119022],[0.10891332477331,-0.028625348582864,0.1496836990118]],[[0.044514324516058,0.036455612629652,-0.19343036413193],[-0.052654426544905,-0.084468357264996,0.10804183781147],[0.12614321708679,0.041765108704567,0.081582337617874]],[[-0.066287226974964,-0.070356667041779,0.1473546475172],[0.038481760770082,0.015916774049401,0.068590752780437],[0.13213188946247,-0.1596070677042,-0.017199421301484]],[[0.069946348667145,-0.051865257322788,0.048978537321091],[0.050582356750965,0.06403710693121,-0.18616864085197],[-0.14956717193127,-0.19075854122639,-0.24281424283981]],[[0.061254724860191,0.0069745392538607,0.098248764872551],[0.030770245939493,0.021539967507124,-0.020625676959753],[0.07281818240881,0.077289260923862,0.03262335434556]],[[-0.081836186349392,0.094386301934719,-0.082588851451874],[0.020800763741136,0.022794796153903,0.079048298299313],[-0.062831081449986,0.097942784428596,-0.081608898937702]],[[-0.17681692540646,-0.0045389817096293,-0.019752487540245],[-0.18014541268349,0.045881681144238,-0.18161280453205],[-0.064215041697025,0.19849638640881,0.12443006783724]],[[-0.069916002452374,-0.016055902466178,0.07574125379324],[-0.061640728265047,0.1046227812767,-0.0096046878024936],[-0.049004159867764,-0.028770973905921,-0.023459000512958]],[[0.010649852454662,0.095477111637592,0.062792994081974],[0.0033555568661541,-0.081755816936493,-0.047961119562387],[0.062390651553869,-0.12303777784109,-0.078403010964394]],[[0.14527237415314,-0.090530842542648,0.14915323257446],[0.20531871914864,-0.043819770216942,-0.055022768676281],[-0.17138738930225,0.14165505766869,-0.18061703443527]],[[-0.0071265413425863,0.10073687136173,0.18970255553722],[-0.0019448989769444,-0.035022761672735,-0.066220782697201],[-0.085278443992138,-0.20218177139759,0.050610572099686]]],[[[-0.16793286800385,0.10874732583761,-0.075537048280239],[-0.030521608889103,0.034118540585041,-0.023202963173389],[-0.058236047625542,0.0059635573998094,-0.14475990831852]],[[0.12404269725084,-0.031698424369097,0.02402070350945],[0.064256854355335,-0.027711860835552,-0.015565545298159],[0.012995259836316,-0.0442312695086,-0.024736700579524]],[[-0.021463759243488,-0.2055290043354,-0.16382621228695],[-0.051696181297302,0.16920357942581,0.023788768798113],[-0.19963179528713,0.039301224052906,-0.051128439605236]],[[-0.055268123745918,-0.11824853718281,-0.025963982567191],[0.092644408345222,0.080945551395416,0.077523447573185],[-0.066054679453373,-0.028998224064708,0.11599871516228]],[[-0.042922019958496,0.028890522196889,0.014510518871248],[-0.011390926316381,0.051054272800684,-0.10698342323303],[-0.090436145663261,0.053860045969486,-0.06392902135849]],[[-0.054620992392302,0.080025382339954,0.0075985109433532],[0.098537027835846,0.010643636807799,-0.010976912453771],[0.10080509632826,0.047552537173033,0.033605430275202]],[[0.063900858163834,0.081065192818642,0.030741509050131],[0.019508775323629,0.1055915877223,-0.070458181202412],[-0.33696883916855,-0.014721940271556,-0.18274417519569]],[[0.0032970565371215,-0.034284595400095,-0.13505774736404],[-0.024710044264793,-0.01998315192759,0.0054141725413501],[-0.017693318426609,0.015000649727881,0.021993689239025]],[[-0.052018340677023,-0.10893708467484,-0.030208025127649],[-0.047971714287996,-0.062848411500454,0.044351443648338],[0.055839046835899,0.040235348045826,-0.012844645418227]],[[-0.015556558966637,-0.010003684088588,0.049121588468552],[-0.069493874907494,0.15144419670105,0.090874142944813],[-0.33490499854088,0.087895698845387,-0.13880321383476]],[[0.15903475880623,-0.18142178654671,-0.10776959359646],[-0.051053211092949,0.023435907438397,-0.027608823031187],[-0.11925576627254,-0.038777902722359,0.10038135200739]],[[0.18636885285378,0.14054039120674,-0.078153632581234],[-0.085642270743847,-0.12250049412251,-0.091850407421589],[0.044345870614052,0.031579531729221,-0.012325344607234]],[[0.17382410168648,-0.11372019350529,0.0011845254339278],[0.00034823577152565,-0.16498683393002,0.056030128151178],[0.059661313891411,0.009394071996212,-0.040572382509708]],[[-0.19980247318745,-0.053089924156666,-0.14683988690376],[-0.27182093262672,0.061504725366831,0.029503362253308],[-0.12507052719593,-0.093191228806973,-0.20690628886223]],[[-0.024941673502326,-0.014303609728813,0.034789100289345],[-0.036261137574911,0.055971439927816,-0.00513153988868],[0.028603706508875,0.027977593243122,-0.00038538675289601]],[[-0.064043171703815,-0.069352529942989,-0.03622829169035],[0.01951171271503,-0.048623088747263,0.030780732631683],[0.19060529768467,-0.20270559191704,-0.054318215698004]],[[-0.15822999179363,-0.15495306253433,-0.1704093515873],[0.029957169666886,0.01255542319268,0.12804190814495],[0.162044018507,0.077636361122131,-0.0040834685787559]],[[0.080736801028252,-0.18019016087055,-0.085617080330849],[0.13841915130615,-0.17851231992245,0.057130370289087],[0.10063330084085,0.049731787294149,0.16709989309311]],[[-0.048786405473948,0.072879679501057,-0.042662598192692],[-0.10983445495367,0.082567475736141,0.10729710757732],[0.073569595813751,-0.13210286200047,0.040795367211103]],[[0.13052132725716,-0.030985051766038,-0.024070544168353],[-0.039351191371679,-0.19276776909828,-0.048875696957111],[-0.0093834130093455,0.0050615295767784,-0.10201209038496]],[[0.0450733974576,-0.13582506775856,0.016282124444842],[-0.11180508136749,-0.054549191147089,0.1908723115921],[-0.078660391271114,-0.038055282086134,0.052956484258175]],[[0.073013238608837,0.13924378156662,0.0083149382844567],[-0.11717972159386,0.054379679262638,0.048837002366781],[0.076166369020939,-0.13055595755577,-0.011912424117327]],[[-0.32160803675652,0.17995782196522,0.18444836139679],[-0.26387542486191,0.016712198033929,0.016479305922985],[-0.010044995695353,0.03342417255044,-0.055292714387178]],[[-0.25011464953423,-0.16164094209671,-0.22671540081501],[0.10183820873499,-0.01915306225419,0.060026936233044],[0.13013288378716,-0.061636839061975,-0.058192148804665]],[[0.015909416601062,0.16426485776901,-0.0018069953657687],[-0.061929799616337,0.040892545133829,0.019818264991045],[0.070691123604774,-0.050447050482035,-0.1074822768569]],[[-0.094309389591217,0.12325558066368,-0.00032669299980626],[-0.1923740208149,0.066155195236206,-0.21001289784908],[-0.068497523665428,0.16375696659088,0.13148230314255]],[[-0.0044590150937438,-0.050869308412075,-0.062677808105946],[-0.015221990644932,0.0048500164411962,-0.017710257321596],[0.016604488715529,0.094460219144821,0.052007604390383]],[[0.047400455921888,-0.17042343318462,-0.0071470006369054],[0.0039132284000516,-0.0049565467052162,0.19036059081554],[0.14721220731735,0.036209966987371,0.066259875893593]],[[0.20074012875557,-0.16966767609119,0.09882403165102],[0.097047209739685,-0.25337478518486,-0.095640890300274],[-0.014985702931881,-0.096789322793484,0.01984566822648]],[[0.040557589381933,-0.10953599214554,0.04152063280344],[0.030371816828847,0.075943641364574,0.057488441467285],[-0.069647088646889,-0.066549152135849,-0.030923450365663]],[[-0.065556235611439,0.16190917789936,0.01526777818799],[-0.25020375847816,-0.019267506897449,-0.066076941788197],[0.023516323417425,-0.12727622687817,-0.054570693522692]],[[-0.025787951424718,0.026474574580789,0.078283652663231],[-0.015304023399949,-0.0057911034673452,-0.10975855588913],[-0.04984762519598,0.089550845324993,0.080299444496632]]],[[[-0.2486879080534,-0.055846866220236,-0.056126415729523],[-0.11701259016991,-0.02966495230794,-0.031162867322564],[0.072326116263866,0.14210017025471,0.020691571757197]],[[-0.096365086734295,0.039372839033604,0.094469763338566],[-0.031530406326056,-0.042224295437336,0.027090696617961],[-0.045168798416853,0.0078192921355367,0.032780580222607]],[[0.099705599248409,-0.013097256422043,0.065207399427891],[0.073599010705948,0.091716527938843,-0.13257376849651],[0.0020778025500476,0.24083851277828,0.015227464959025]],[[0.085234791040421,0.12617644667625,-0.050194080919027],[0.046616911888123,0.081018283963203,0.11672024428844],[-0.011214673519135,-0.013808756135404,0.060148235410452]],[[0.015222568996251,-0.0073704249225557,0.010324353352189],[0.053614858537912,0.085345163941383,-0.02304900996387],[-0.044523380696774,0.0046131699346006,-0.047850750386715]],[[0.033667039126158,-0.041908901184797,-0.025130730122328],[0.049021448940039,-0.010321795009077,0.094377420842648],[-0.060682293027639,-0.024388812482357,-0.051767230033875]],[[0.0049895457923412,0.04436968639493,-0.26486033201218],[0.058793861418962,0.16589072346687,-0.11779966950417],[-0.0068685696460307,0.054873622953892,-0.10111657530069]],[[0.030895680189133,0.047500178217888,0.033661887049675],[-0.15788765251637,0.028557503595948,0.10331372916698],[-0.037300486117601,0.042105637490749,0.16945005953312]],[[-0.023412004113197,-0.077000983059406,0.073697209358215],[-0.024306094273925,0.068947814404964,0.14466083049774],[-0.098399445414543,-0.13947635889053,-0.059673883020878]],[[-0.17940087616444,-0.098010502755642,-0.15448148548603],[0.15017455816269,0.10180199891329,-0.26417395472527],[0.12673287093639,0.14275550842285,-0.098501197993755]],[[0.0012072226963937,0.077534697949886,0.0048172627575696],[-0.06951130181551,0.11933831870556,0.025964850559831],[0.11635003983974,-0.017935536801815,0.0096656465902925]],[[0.14311072230339,0.079074993729591,-0.0506940074265],[0.0042557660490274,0.0081626055762172,-0.14814837276936],[0.021350987255573,-0.10346842557192,-0.025494478642941]],[[-0.074672788381577,0.098993912339211,0.13554862141609],[-0.377521276474,-0.14304737746716,0.084415972232819],[-0.16871254146099,-0.055528342723846,-0.0021933200769126]],[[0.12548989057541,0.10080818086863,-0.069587372243404],[0.14326654374599,-0.038838103413582,0.040219407528639],[-0.02978153899312,-0.054665971547365,0.055013079196215]],[[-0.026301926001906,0.033982411026955,-0.012236375361681],[0.068313531577587,0.067799903452396,0.05744094774127],[-0.10046815127134,-0.017289696261287,-0.054942078888416]],[[0.010774604044855,0.037092000246048,0.10741231590509],[-0.019183482974768,-0.074678801000118,-0.11077702045441],[-0.091072469949722,-0.091999404132366,-0.023784717544913]],[[-0.052968747913837,-0.0026185663882643,0.032794542610645],[-0.034178346395493,-0.015602299012244,0.021467821672559],[0.10835671424866,-0.025783125311136,0.060599129647017]],[[-0.1005549505353,0.036129552870989,-0.0024938432034105],[-0.025180481374264,-0.071962796151638,0.096269980072975],[-0.10808125883341,-0.11911454051733,0.023075323551893]],[[0.051339939236641,0.24559107422829,0.0034797708503902],[-0.099912747740746,-0.034075401723385,-0.16161054372787],[-0.019520720466971,0.010011708363891,-0.036426588892937]],[[0.029980152845383,0.021978102624416,-0.019498191773891],[-0.04046206176281,0.13168832659721,0.02036858163774],[0.085439689457417,0.042321063578129,0.033348228782415]],[[0.063527747988701,-0.082119815051556,0.12032064050436],[-0.0062355562113225,0.049633402377367,0.0073294541798532],[0.028429992496967,-0.11887095868587,-0.18797479569912]],[[0.11892476677895,0.21071870625019,-0.02744148671627],[-0.069308198988438,-0.041791792958975,0.088785357773304],[-0.10959825664759,-0.0934993699193,-0.021400637924671]],[[0.080508790910244,0.0081234164535999,0.12199223786592],[-0.048864245414734,0.050042621791363,-0.085467666387558],[-0.0049497559666634,0.13567458093166,-0.0080039948225021]],[[-0.10039805620909,-0.11625350266695,-0.062369711697102],[0.0035322662442923,-0.059114515781403,-0.027745699509978],[0.015979200601578,-0.065994374454021,0.0047430829145014]],[[-0.046831481158733,0.10968993604183,-0.014788263477385],[0.081966787576675,-0.0087192002683878,-0.067139744758606],[-0.0059251952916384,0.0025554681196809,-0.19542860984802]],[[0.0963244587183,0.045827448368073,-0.14295272529125],[0.061579141765833,-0.02936777099967,-0.025653565302491],[-0.050247978419065,0.027930347248912,-0.093135066330433]],[[-0.020215081050992,-0.098152987658978,-0.043419238179922],[-0.041854415088892,-0.055424872785807,0.028317200019956],[-0.051668848842382,0.014514844864607,0.074075065553188]],[[0.060218140482903,0.064682871103287,-0.0031483329366893],[0.19353631138802,0.011132296174765,0.098722569644451],[-0.033699918538332,-0.075874105095863,-0.20315866172314]],[[-0.016488496214151,-0.1516061425209,-0.072051450610161],[0.037609584629536,-0.1369858533144,-0.0044271540828049],[-0.0682253241539,0.039685647934675,0.14251850545406]],[[0.060560084879398,0.0073125106282532,0.021831544116139],[-0.078681424260139,0.013134493492544,-0.0039896070957184],[-0.066485419869423,0.081366673111916,-0.0038684944156557]],[[0.12847244739532,0.00099154456984252,0.029564036056399],[-0.026203962042928,-0.055874515324831,-0.032918605953455],[0.092258028686047,-0.15063373744488,0.013294893316925]],[[-0.0039377510547638,-0.052114028483629,0.015891188755631],[0.060558464378119,-0.062909260392189,-0.10460372269154],[0.23163795471191,-0.090478412806988,-0.20012237131596]]],[[[0.08721087872982,0.034341268241405,0.057058710604906],[0.012104729190469,-0.0048308740369976,-0.11837455630302],[-0.057131879031658,-0.091799229383469,-0.14268024265766]],[[-0.042869590222836,0.047240097075701,0.028845101594925],[0.02708343975246,0.035092458128929,0.022587144747376],[0.0021526587661356,-0.013158103451133,0.14059230685234]],[[-0.01293586473912,0.047289881855249,-0.052971914410591],[0.038860164582729,0.041993461549282,-0.041869167238474],[-0.084389477968216,0.10999534279108,-0.046585720032454]],[[-0.012021774426103,-0.07807045429945,-0.071267858147621],[0.024360023438931,-0.011758691631258,-0.073520511388779],[-0.019415939226747,-0.073533087968826,0.0076603954657912]],[[-0.065533421933651,0.015399121679366,-0.0870361328125],[-0.014172099530697,0.11234778910875,0.059194304049015],[-0.091181538999081,-0.090641357004642,0.020217139273882]],[[-0.14369113743305,-0.065909266471863,-0.016947489231825],[-0.040301207453012,0.048451919108629,0.059059888124466],[-0.018264474347234,-0.045038737356663,-0.028067145496607]],[[-0.051270425319672,-0.007334859110415,-0.11833845824003],[0.012961465865374,-0.088932551443577,0.00044170126784593],[0.019542708992958,-0.023980071768165,0.056766834110022]],[[0.066428728401661,0.088963910937309,-0.051699887961149],[0.046441659331322,-0.044369652867317,-0.079096436500549],[-0.13720941543579,-0.072506956756115,-0.086030170321465]],[[-0.019548084586859,-0.085547611117363,0.043896663933992],[-0.074707269668579,-0.0072381338104606,0.025501027703285],[-0.03905475884676,-0.1157281845808,0.045491706579924]],[[-0.0044819633476436,0.012688212096691,-0.040414206683636],[-0.098689183592796,0.024125875905156,0.073680698871613],[-0.10903258621693,-0.02242299169302,-0.0088724857196212]],[[-0.014052396640182,0.0223642680794,-0.069839194417],[-0.039302438497543,0.054064892232418,-0.0093722930178046],[-0.14003148674965,0.0006921102758497,-0.075598031282425]],[[0.028252964839339,0.028974818065763,-0.078692696988583],[-0.15797218680382,-0.031638950109482,-0.051678009331226],[-0.044197052717209,0.047020263969898,0.1841189712286]],[[0.017718449234962,0.047083981335163,-0.10759631544352],[0.0035876596812159,0.01129413023591,-0.027788564562798],[-0.029788935557008,-0.11874752491713,0.028742391616106]],[[-0.14187563955784,-0.12196905910969,-0.017920630052686],[-0.006210420280695,-0.037195164710283,-0.023648029193282],[-0.08217529207468,-0.016241870820522,0.057953983545303]],[[0.079805567860603,-0.056341741234064,0.034032642841339],[0.0014728119131178,-0.0028906918596476,-0.063933044672012],[-0.12400428205729,-0.011963018216193,-0.05023979395628]],[[0.0079941423609853,-0.098710954189301,-0.051562078297138],[0.012782410718501,-0.085290059447289,-0.059471976011992],[0.030501089990139,0.019138295203447,0.086540855467319]],[[-0.044702347368002,0.13910050690174,0.03864998370409],[-0.026553547009826,0.025232333689928,-0.13528230786324],[-0.10913023352623,-0.050091829150915,-0.09224920719862]],[[-0.18167559802532,0.037078909575939,0.027353368699551],[-0.018674189224839,0.040769692510366,-0.07139889895916],[-0.076258614659309,0.07886379212141,-0.032623253762722]],[[0.00066640059230849,-0.046514995396137,-0.092388428747654],[-0.0084676155820489,-0.01055721566081,0.002392215654254],[0.026462787762284,0.025895545259118,-0.1103119328618]],[[-0.14198230206966,-0.023774413391948,0.032297637313604],[0.0032358272001147,-0.056780725717545,0.014255334623158],[0.046437200158834,-0.086137801408768,-0.12535725533962]],[[0.056000493466854,-0.022049229592085,-0.08460433781147],[0.092751808464527,-0.017646988853812,0.021383248269558],[-0.067059457302094,-0.069740884006023,-0.037354402244091]],[[-0.13021890819073,-0.0052123460918665,0.21721123158932],[-0.029322724789381,-0.058555774390697,-0.089532077312469],[-0.027788581326604,0.13263113796711,0.15494035184383]],[[0.044077154248953,-0.082026906311512,0.045175787061453],[0.011105465702713,-0.091412171721458,-0.0028356753755361],[-0.073870800435543,-0.055715974420309,0.19202543795109]],[[0.044244822114706,0.018063195049763,-0.058338209986687],[-0.0031276326626539,0.058924023061991,-0.039162278175354],[-0.017631977796555,0.036212857812643,-0.0035377761814743]],[[-0.016931898891926,-0.053290698677301,-0.18342390656471],[0.046872463077307,-0.045507531613111,-0.088641814887524],[-0.047243624925613,0.014907379634678,-0.16274605691433]],[[0.0028200012166053,-0.027642184868455,-0.034937098622322],[0.12058037519455,-0.015360306017101,0.037262555211782],[-0.032906904816628,-0.10512915253639,-0.046051986515522]],[[-0.11228720098734,-0.12256310880184,-0.0033553573302925],[-0.051532611250877,-0.028047420084476,0.0029937638901174],[0.045087829232216,-0.07168872654438,-0.1071794629097]],[[-0.14728562533855,-0.018092382699251,0.0019389921799302],[-0.0066571016795933,-0.055287592113018,0.040511757135391],[-0.057964242994785,-0.053703334182501,-0.012535216286778]],[[0.045961726456881,0.10632068663836,0.02851677313447],[-0.12355503439903,-0.0058153038844466,-0.076353490352631],[0.19168339669704,-0.025125537067652,-0.14400535821915]],[[-0.032762415707111,0.017082629725337,0.012618527747691],[0.024925269186497,-0.05608568713069,-0.12664537131786],[-0.035533890128136,0.045484635978937,0.029018985107541]],[[-0.0060703563503921,-0.08764711022377,0.026348786428571],[-0.18630093336105,0.041113510727882,-0.013538437895477],[-0.071017235517502,-0.072575211524963,-0.016927976161242]],[[-0.053300734609365,-0.067218400537968,0.073171980679035],[-0.098141297698021,-0.046456828713417,-0.056349623948336],[-0.15951877832413,-0.22594884037971,0.061253614723682]]],[[[0.098412409424782,0.021951561793685,0.052366759628057],[-0.061108183115721,0.057017650455236,0.026811936870217],[-0.17408013343811,-0.043323840945959,-0.0029299086891115]],[[0.11155170947313,0.031139049679041,0.067638568580151],[0.17139488458633,0.05456693097949,0.066825799643993],[0.17160871624947,0.067669883370399,0.12066853791475]],[[0.017947252839804,-0.034889649599791,-0.052712108939886],[0.021725535392761,0.077926836907864,0.038996517658234],[-0.10272966325283,-0.016381524503231,0.054415509104729]],[[-0.024461422115564,0.05688238888979,0.020220315083861],[0.029647078365088,0.055960670113564,-0.092720687389374],[-0.025007387623191,-0.040944222360849,0.0094995805993676]],[[-0.026854772120714,0.073300220072269,0.036310441792011],[-0.011693378910422,0.050999775528908,0.097651086747646],[-0.011201212182641,0.058503869920969,0.14447510242462]],[[0.017108971253037,-0.0072372946888208,0.011112014763057],[0.050487529486418,-0.050363522022963,-0.030887771397829],[-0.0015201250789687,-0.00010150894377148,-0.027710890397429]],[[-0.035764861851931,0.020948622375727,-0.011788362637162],[0.028291258960962,0.026615399867296,-0.027653085067868],[-0.025096165016294,0.075286068022251,-0.012625751085579]],[[-0.023896770551801,-0.063577018678188,-0.013413175940514],[0.070454128086567,-0.077876761555672,0.012928572483361],[0.11453574895859,0.012533913366497,-0.014836731366813]],[[-0.078823409974575,-0.038532476872206,0.059679888188839],[-0.0010912113357335,-0.022003648802638,0.0052055129781365],[-0.007490296382457,0.051285978406668,0.031140623614192]],[[-0.064255863428116,0.04998367652297,-0.012598403729498],[-0.038235232234001,-0.0066113430075347,0.012781085446477],[0.056419461965561,-0.059154961258173,0.018792169168591]],[[-0.01814310438931,-0.046324919909239,-0.1173425540328],[0.090004198253155,0.0072642788290977,-0.03528693690896],[0.094480864703655,0.060146123170853,0.063237823545933]],[[-0.029912075027823,0.059412557631731,-0.036417484283447],[0.065604567527771,-0.0045093656517565,-0.062245275825262],[0.075737200677395,-0.018516669049859,-0.048327397555113]],[[-0.033778309822083,0.074567012488842,-0.0047719432041049],[0.017235910519958,-0.017601018771529,0.0071556000038981],[-0.16020199656487,0.055493403226137,0.051391083747149]],[[-0.015750927850604,-0.031674306839705,-0.0097626941278577],[0.0026310763787478,-0.024983709678054,0.027850918471813],[0.038746513426304,-0.024385107681155,0.049335606396198]],[[0.010180618613958,-0.015122790820897,0.15252968668938],[-0.008723720908165,0.081424035131931,0.026056546717882],[0.071536660194397,0.052537903189659,0.077235944569111]],[[-0.005744110327214,0.025516826659441,0.0019203237025067],[0.030374899506569,0.017389979213476,0.033261265605688],[-0.05095486342907,-0.012396926060319,-0.010258477181196]],[[-0.035327982157469,-0.042351134121418,0.030599100515246],[0.011045634746552,-0.00763956643641,-0.036582224071026],[0.13091933727264,-0.0047377403825521,-0.032109193503857]],[[0.017045980319381,-0.024720385670662,-0.031270831823349],[-0.033080980181694,0.00146633409895,0.056631043553352],[0.0060389381833375,0.0098065668717027,-0.041878309100866]],[[0.00968312099576,-0.054623827338219,0.037358943372965],[0.016642170026898,0.20400311052799,0.12154447287321],[-0.1054996997118,-0.019648974761367,-0.13874624669552]],[[0.063038200139999,-0.043145887553692,-0.0012749714078382],[0.055505461990833,-0.020060079172254,-0.013552064076066],[-0.0068604471161962,0.10292717069387,-0.0077226455323398]],[[-0.015393985435367,0.056960001587868,-0.023613223806024],[0.011106028221548,-0.038700640201569,-0.0075612082146108],[-0.028931764885783,0.034071464091539,-0.0087906839326024]],[[0.038649000227451,-0.027060141786933,-0.0073676630854607],[-0.065865345299244,-0.078147120773792,0.081169880926609],[0.033735021948814,-0.019586222246289,0.035518851131201]],[[-0.019155524671078,-0.010884921997786,-0.010026606731117],[0.017795592546463,-0.022257598116994,0.064681850373745],[0.054698813706636,-0.06038224697113,-0.040410634130239]],[[0.016373235732317,0.049226358532906,0.0076839667744935],[-0.00095826468896121,-0.03493982180953,-0.079961352050304],[0.0096688671037555,-0.0031177087221295,0.019749149680138]],[[-0.088120430707932,0.042013499885798,-0.0081621119752526],[-0.074384912848473,-0.037705067545176,0.027398193255067],[-0.04096781462431,0.04388539493084,0.11888590455055]],[[0.041291955858469,-0.0007312148809433,-0.081750176846981],[-0.052997019141912,0.023874716833234,-0.00090406450908631],[0.056402739137411,0.021040333434939,0.0066006709821522]],[[-0.090277597308159,-0.13218586146832,-0.030218141153455],[-0.11466508358717,-0.11589668691158,-0.10834092646837],[-0.066996872425079,-0.16921749711037,-0.0372707657516]],[[0.025444203987718,-0.027397722005844,0.011099207215011],[-0.010532787069678,0.0012524898629636,-0.032567672431469],[-0.11216568946838,0.063847504556179,0.054698549211025]],[[-0.031952917575836,-0.022415766492486,0.018235139548779],[-0.0032013703603297,0.094613380730152,-0.0626560151577],[-0.044653359800577,0.012592448852956,0.089027129113674]],[[-0.035446006804705,-0.10594312846661,-0.065088339149952],[-0.088080331683159,-0.21079696714878,-0.13242994248867],[-0.13889230787754,-0.19873839616776,-0.046545006334782]],[[-0.032565336674452,0.0090711917728186,-0.034963347017765],[0.1018623560667,0.098856158554554,-0.031048370525241],[-0.0066993958316743,0.031728588044643,-0.12472729384899]],[[0.02682638540864,0.019603339955211,0.01677243039012],[0.12660250067711,-0.068864405155182,-0.019881565123796],[0.086302034556866,-0.08473627269268,-0.14660510420799]]],[[[0.09699385613203,-0.016849147155881,0.0044355313293636],[0.023623691871762,0.020118540152907,-0.062972106039524],[-0.067472651600838,0.03911105170846,0.010354058817029]],[[-0.046194270253181,-0.068590685725212,0.10413589328527],[0.023008512333035,0.10165280848742,0.06200410053134],[0.055616054683924,-0.02069916203618,-0.014215353876352]],[[0.1128254532814,0.16885656118393,-0.011824899353087],[-0.064251482486725,0.021754715591669,-0.015203353948891],[-0.062446136027575,0.16039572656155,-0.03651176020503]],[[0.15854245424271,-0.13223011791706,-0.10578452050686],[-0.044824939221144,0.12193153053522,-0.069300755858421],[-0.083104886114597,-0.0081249279901385,-0.053353168070316]],[[0.0028828580398113,-0.022171694785357,-0.001969438046217],[0.010539151728153,-0.038797497749329,0.049763172864914],[0.058318726718426,-0.12154217809439,0.0099738230928779]],[[-0.050683043897152,0.07958211004734,-0.10014148801565],[0.046221040189266,-0.00078138633398339,0.089026406407356],[0.010549563914537,-0.11162530630827,-0.12698189914227]],[[-0.11290891468525,-0.023944800719619,-0.33213326334953],[-0.028581256046891,0.079127751290798,0.038259666413069],[-0.056652996689081,0.088209465146065,-0.054880078881979]],[[-0.10172665864229,0.1399230659008,0.14097459614277],[-0.13444748520851,0.050380773842335,-0.21402862668037],[-0.0052145500667393,0.086944475769997,-0.096118584275246]],[[0.1258610188961,-0.17053435742855,-0.10162744671106],[-0.07231579720974,-0.077262617647648,-0.079525634646416],[0.032193019986153,-0.079901896417141,-0.087731868028641]],[[0.065497696399689,-0.059197794646025,-0.086220599710941],[-0.092216812074184,-0.0046599698252976,-0.025987349450588],[0.09130984544754,-0.019388215616345,0.056895423680544]],[[-0.11905819922686,-0.025106133893132,-0.10913486778736],[-0.19509190320969,0.11380015313625,0.16406856477261],[-0.028404975309968,-0.04798074811697,0.041714929044247]],[[0.059234280139208,0.11688569933176,0.067470602691174],[-0.13641402125359,-0.025895193219185,-0.12121741473675],[-0.13396047055721,0.0040796035900712,-0.067573450505733]],[[0.010952996090055,0.083129465579987,0.12622451782227],[-0.23125632107258,-0.13290823996067,-0.080928139388561],[0.020415686070919,0.041826941072941,-0.0452422760427]],[[0.016658456996083,-0.094521544873714,-0.3015408217907],[0.0010619973763824,-0.14698569476604,0.0055584628134966],[-0.073112346231937,-0.043738637119532,-0.055379092693329]],[[-0.010796948336065,-0.051119420677423,0.14316189289093],[0.035045456141233,-0.03329374268651,-0.024229573085904],[-0.042779259383678,-0.026250569149852,0.055155452340841]],[[0.052459690719843,-0.13284157216549,-0.0018368368037045],[0.0021984630730003,-0.032135583460331,0.17195875942707],[-0.084636248648167,-0.087253049015999,0.031084721907973]],[[0.055293992161751,0.070318162441254,0.12416955083609],[-0.08481453359127,-0.063681803643703,-0.057010315358639],[-0.099231138825417,0.10055093467236,-0.24865998327732]],[[-0.08869381248951,0.025238832458854,0.16954119503498],[-0.13081039488316,-0.076373398303986,0.013455956242979],[-0.016344489529729,0.024707904085517,0.009833425283432]],[[-0.045843183994293,0.10973173379898,-0.060740619897842],[-0.10011471807957,-0.036366753280163,0.071451239287853],[0.06245306879282,-0.124621078372,-0.042924530804157]],[[-0.093111492693424,0.038615878671408,0.055629827082157],[-0.087949655950069,0.088778309524059,-0.0089667057618499],[-0.10502374172211,-0.11847819387913,-0.056546583771706]],[[0.025137247517705,-0.0024652653373778,0.11048272252083],[0.036741632968187,0.020950108766556,-0.089519292116165],[0.052218426018953,0.10212200134993,0.00023451553715859]],[[-0.058402564376593,-0.035077467560768,-0.063909202814102],[-0.036286897957325,0.0083248587325215,-0.19666755199432],[0.062369745224714,0.031830821186304,0.22431813180447]],[[0.10182601213455,-0.094000436365604,-0.020381482318044],[0.090581156313419,0.04375109821558,0.12366837263107],[-0.20417991280556,0.054214458912611,0.038362622261047]],[[-0.16126355528831,-0.18819591403008,-0.028199212625623],[-0.16128240525723,0.041807986795902,-0.0028695641085505],[0.080292023718357,-0.025238303467631,0.020812526345253]],[[-0.11635267734528,-0.061486214399338,0.20809616148472],[-0.05385860055685,0.029428653419018,0.11493231356144],[-0.03957786783576,-0.073210410773754,-0.074897326529026]],[[-0.010902888141572,-0.0080163395032287,-0.051753018051386],[-0.0067810397595167,0.029137924313545,-0.07109971344471],[0.090194970369339,0.029553441330791,0.006449431180954]],[[0.065760873258114,-0.079257413744926,0.030534191057086],[-0.036671884357929,0.067039303481579,-0.023848563432693],[0.019603874534369,0.017001459375024,0.013421066105366]],[[0.11820778995752,-0.2544179558754,-0.22858271002769],[0.2028603553772,0.13142344355583,0.00083000084850937],[0.11087789386511,-0.035044383257627,0.028926206752658]],[[-0.014448657631874,0.13186712563038,0.088537126779556],[-0.035515606403351,0.025443464517593,-0.063642472028732],[-0.082299679517746,-0.034605961292982,-0.30463463068008]],[[0.11000262200832,-0.037082329392433,-0.077708557248116],[0.033365122973919,0.0034155319444835,-0.065251871943474],[-0.032919444143772,-0.0584019087255,0.028112953528762]],[[-0.17269019782543,-0.0057507511228323,0.11149538308382],[0.049390401691198,0.051227957010269,0.016343405470252],[-0.16365775465965,-0.057555250823498,-0.081388145685196]],[[0.022581942379475,0.079714149236679,0.15607649087906],[-0.1262763440609,-0.03388474136591,-0.14712215960026],[-0.0065043116919696,-0.1020679846406,0.12397781759501]]],[[[-0.061059735715389,-0.24802212417126,0.025010917335749],[-0.18890604376793,0.037205085158348,-0.15807940065861],[-0.15518771111965,0.027161391451955,0.16445516049862]],[[-0.08793942630291,0.052099268883467,-0.034642018377781],[0.034911941736937,-0.030003121122718,0.061871375888586],[-0.062949799001217,0.0099925277754664,0.090139098465443]],[[-0.0086899753659964,0.14118173718452,0.1449748724699],[-0.0051596970297396,-0.081845656037331,-0.087875343859196],[-0.047292001545429,-0.065223336219788,-0.053270351141691]],[[0.13009350001812,0.018406311050057,-0.062770500779152],[0.012345992960036,0.16054546833038,0.024844083935022],[-0.027290046215057,-0.1977966427803,0.13261915743351]],[[-0.056842587888241,0.038884334266186,-0.030592679977417],[-0.079546675086021,-0.12691423296928,-0.027470827102661],[0.046309936791658,-0.027558103203773,-0.00023256552231032]],[[0.17048271000385,0.025863358750939,-0.049943789839745],[0.069206736981869,-0.12077920138836,-0.00489705754444],[-0.17550009489059,0.096527069807053,0.048509437590837]],[[0.11727029085159,-0.175706833601,-0.0084897372871637],[-0.045433443039656,0.12414092570543,0.16783271729946],[0.076055750250816,-0.19393137097359,0.21845659613609]],[[0.018641747534275,-0.0093949381262064,-0.0015445135068148],[-0.042862839996815,0.053302269428968,-0.0099112391471863],[-0.083217702805996,0.2406989634037,0.027544226497412]],[[-0.088378675282001,-0.032063722610474,-0.046963267028332],[0.0047368668019772,0.025173326954246,0.02468971721828],[0.062803529202938,0.02418739721179,0.057510934770107]],[[-0.061046611517668,0.072715811431408,-0.012268187478185],[-0.04555257409811,-0.022473240271211,-0.21963521838188],[0.044203761965036,-0.042525820434093,0.16995629668236]],[[-0.069274008274078,-0.10969199240208,0.021902158856392],[-0.11233735829592,-0.04559113457799,0.014862090349197],[-0.20632675290108,0.022015320137143,0.060040231794119]],[[-0.030554933473468,-0.056982975453138,0.098184272646904],[0.035881649702787,0.098616734147072,-0.14708051085472],[0.087138377130032,0.22253893315792,-0.14830476045609]],[[-0.23442047834396,-0.015303757973015,-0.17977069318295],[-0.036416124552488,0.074512667953968,-0.031697168946266],[0.051495101302862,0.13283415138721,0.2320394963026]],[[0.075793720781803,-0.11052518337965,-0.040894381701946],[-0.04308720305562,-0.15500640869141,-0.037839390337467],[0.11704030632973,0.02284543029964,0.050729185342789]],[[-0.011055070906878,0.021995067596436,-0.047965031117201],[0.047421425580978,-0.079957388341427,-0.01208891812712],[0.00094614300178364,0.021680645644665,0.04020357131958]],[[-0.03756158798933,0.078666895627975,-0.073891431093216],[0.073373571038246,-0.03685250133276,-0.033266253769398],[-0.22973923385143,-0.043594256043434,0.25913152098656]],[[0.1038438975811,-0.016526704654098,0.034620527178049],[0.038499470800161,0.017944097518921,0.070354849100113],[0.016701072454453,-0.021757885813713,0.073253214359283]],[[-0.088280655443668,0.027719849720597,0.13170838356018],[-0.086622081696987,-0.12381002306938,0.11926005780697],[0.084853336215019,-0.025496900081635,-0.1297403126955]],[[-0.087903864681721,-0.010398408398032,-0.057019993662834],[0.068313054740429,0.048994194716215,-0.25646790862083],[0.057354155927896,-0.062895320355892,-0.2467041015625]],[[-0.065825782716274,-0.079265795648098,0.019820442423224],[-0.050689820200205,0.057839721441269,-0.026723444461823],[0.087112061679363,-0.22224287688732,-0.018756164237857]],[[-0.11173241585493,0.038496751338243,0.12220533937216],[0.032874874770641,0.025322388857603,0.10085960477591],[0.071418933570385,0.06005809083581,0.038750484585762]],[[-0.17334848642349,0.15389096736908,0.055314004421234],[-0.031605251133442,0.078564323484898,-0.12925070524216],[-0.050727479159832,-0.13610391318798,0.15946207940578]],[[-0.020389487966895,0.14421544969082,-0.10873010754585],[-0.057263612747192,0.11875725537539,0.0095117306336761],[0.15528619289398,-0.069673910737038,-0.0025692170020193]],[[0.0026759861502796,-0.10355664044619,-0.026938177645206],[-0.043284319341183,0.052606396377087,0.075807213783264],[-0.01721897162497,-0.13092467188835,-0.055498275905848]],[[-0.087991401553154,-0.025400998070836,-0.084279090166092],[-0.0050966939888895,-0.040789745748043,0.031182862818241],[-0.0018171042902395,-0.010738322511315,-0.036604657769203]],[[0.067707359790802,0.094532907009125,0.055853512138128],[-0.00014174026728142,-0.13361524045467,-0.10502959042788],[0.067028693854809,-0.11897304654121,0.056052070111036]],[[0.11950506269932,0.088284462690353,-0.074342012405396],[-0.078311495482922,-0.036916889250278,-0.065740868449211],[-0.069710046052933,-0.0083584161475301,0.034090638160706]],[[0.10148070007563,-0.026846872642636,-0.0093802884221077],[0.088187009096146,-0.02473739720881,0.12898071110249],[0.050963055342436,-0.1815383285284,0.047519139945507]],[[0.037320580333471,0.016102572903037,-0.047947522252798],[0.022041434422135,-0.06434853374958,0.092640697956085],[0.11526323854923,0.12167267501354,-0.077315278351307]],[[0.065322190523148,0.022329250350595,-0.091326415538788],[-0.1058939024806,0.068773575127125,0.027571216225624],[0.045091286301613,-0.02999503351748,0.06857605278492]],[[-0.070106334984303,-0.044690456241369,0.038512948900461],[-0.16252863407135,-0.021202325820923,-0.13875651359558],[-0.036207687109709,-0.0016411184333265,0.065265081822872]],[[-0.33998933434486,-0.033881559967995,0.045996099710464],[-0.092507496476173,-0.048485670238733,0.015682036057115],[-0.12021611630917,-0.11556328833103,-0.048791795969009]]],[[[-0.081884257495403,-0.097143813967705,-0.010354960337281],[0.039297286421061,-0.014500456862152,-0.066855356097221],[-0.0025210808962584,-0.075327582657337,-0.0039689736440778]],[[0.061004541814327,-0.005726212169975,-0.027257552370429],[-0.034458123147488,0.022046715021133,-0.01128061953932],[0.0062808622606099,-0.033678386360407,-0.026462087407708]],[[-0.0021759499795735,0.03314820304513,-0.072860926389694],[0.035217229276896,-0.110824175179,0.016918987035751],[-0.032187219709158,0.05253242701292,0.0088520618155599]],[[-0.018401186913252,0.046342819929123,0.042962651699781],[-0.29283118247986,-0.1791056394577,-0.056874673813581],[0.078263185918331,0.18718698620796,0.0018248544074595]],[[-0.071771033108234,-0.045934580266476,0.052305370569229],[0.026128150522709,0.001485770335421,0.012687136419117],[0.074321411550045,0.047816354781389,-0.07324094325304]],[[-0.031952571123838,-0.04059287160635,0.14483857154846],[-0.11448037624359,0.13026167452335,0.024787127971649],[-0.075161121785641,-0.079386465251446,0.17070418596268]],[[-0.11366094648838,0.20614303648472,0.012065534479916],[-0.18619312345982,-0.0010924417292699,-0.025601387023926],[-0.26149550080299,-0.078950524330139,-0.1801679879427]],[[-0.017820743843913,0.088491067290306,-0.037411253899336],[-0.21149410307407,-0.14128252863884,0.078294262290001],[-0.13767158985138,0.15744252502918,0.1318499147892]],[[-0.085745602846146,0.0069936881773174,0.020788745954633],[-0.049140382558107,0.01567636243999,0.13799591362476],[0.06034229695797,0.095336243510246,-0.017164429649711]],[[-0.088404439389706,0.11909580230713,-0.010638913139701],[-0.10042376816273,0.12866009771824,-0.013273765332997],[-0.18106137216091,0.04308970272541,0.043716002255678]],[[0.074000626802444,0.046263456344604,0.026376895606518],[-0.048135492950678,-0.0074418224394321,-0.048442140221596],[-0.15544256567955,0.024720137938857,0.12743933498859]],[[0.084466829895973,0.084211148321629,0.046106144785881],[-0.021153597161174,0.079504735767841,0.043918367475271],[-0.053877018392086,0.065192192792892,0.10795031487942]],[[-0.080130159854889,0.15374307334423,0.038377713412046],[-0.096877917647362,-0.0014729903778061,-0.075144603848457],[0.027403252199292,0.060926266014576,0.02605053409934]],[[-0.003098449902609,0.0032021093647927,0.018386043608189],[-0.050821386277676,-0.021588973701,0.0025327694602311],[0.013464237563312,0.14203023910522,0.17988881468773]],[[0.0082394815981388,-0.018474178388715,0.033217769116163],[0.1105382964015,-0.060714170336723,-0.017944768071175],[0.052608743309975,-0.0078971050679684,-0.079354859888554]],[[0.055454734712839,-0.069809906184673,0.10091371834278],[0.045160904526711,-0.12556309998035,0.019007323309779],[0.051104325801134,0.059909697622061,0.080580092966557]],[[-0.003224628046155,0.081023275852203,0.1023163497448],[0.058892473578453,-0.11095348000526,-0.056284252554178],[-0.065492495894432,-0.23230703175068,-0.086134359240532]],[[-0.029035590589046,0.049882866442204,0.020206382498145],[-0.0049250815063715,0.044773619621992,0.0035833064466715],[-0.084339089691639,0.097680486738682,-0.088383249938488]],[[-0.040104907006025,-0.012292583473027,-0.12077539414167],[-0.080118946731091,-0.062054321169853,0.016608817502856],[0.052133101969957,-0.02766496129334,0.20602618157864]],[[-0.057577099651098,-0.011100678704679,-0.0049248980358243],[-0.03362438082695,-0.080483220517635,-0.00083689123857766],[-0.11939070373774,-0.0078142946586013,0.079521864652634]],[[0.048818700015545,0.07828563451767,-0.049842890352011],[-0.011116073466837,-0.075128614902496,-0.078078523278236],[-0.13252231478691,-0.043517410755157,-0.03997003287077]],[[0.084195554256439,0.17919011414051,0.01662122271955],[0.094298213720322,-0.08909709751606,0.12737902998924],[0.026279777288437,-0.10308941453695,-0.055716447532177]],[[-0.059237439185381,-0.034505821764469,0.025728086009622],[0.12864997982979,-0.014615737833083,-0.027211749926209],[0.017503930255771,0.10763195157051,0.053947325795889]],[[0.091651320457458,-0.083705142140388,0.082878045737743],[0.10565336048603,-0.039695486426353,-0.059496037662029],[-0.26491346955299,-0.082833737134933,0.033412855118513]],[[0.0091631831601262,-0.0455412119627,-0.022012043744326],[-0.023717738687992,-0.050481829792261,0.0073150089010596],[0.0056072850711644,-0.14285019040108,-0.040311634540558]],[[0.01520206592977,-0.057001251727343,-0.050806298851967],[-0.080934010446072,0.053593743592501,-0.0042262100614607],[-0.11250754445791,-0.11431197822094,0.097678661346436]],[[-0.019007006660104,-0.022435467690229,-0.0033114501275122],[-0.023163825273514,0.046686075627804,-0.011118085123599],[-0.0043360721319914,0.032084371894598,0.085353381931782]],[[-0.043558765202761,-0.12164299935102,-0.17047247290611],[-0.025244981050491,-0.068220265209675,-0.013164857402444],[0.19140602648258,-0.16273221373558,-0.1367576867342]],[[-0.1256247907877,-0.022541472688317,-0.030686113983393],[0.025749931111932,0.085483655333519,-0.019231615588069],[0.12767179310322,0.043678373098373,0.15701462328434]],[[0.031468886882067,0.010972999036312,0.0051105506718159],[-0.15843684971333,-0.029095936566591,0.10462784767151],[0.072345688939095,0.035881299525499,-0.013222253881395]],[[-0.11432319879532,0.013199970126152,-0.071531012654305],[-0.055087704211473,0.077600203454494,0.043614074587822],[-0.098258122801781,0.19224961102009,-0.14040422439575]],[[-0.036143537610769,0.041579280048609,0.0073052044026554],[-0.086638137698174,-0.095941059291363,0.00049286347348243],[0.10701258480549,0.0495367012918,0.12301647663116]]],[[[0.1019564345479,0.050963401794434,0.045467019081116],[-0.0279954187572,-0.12075383216143,0.13496288657188],[0.036751955747604,-0.015911815688014,-0.094293102622032]],[[0.03089415282011,-0.063020907342434,-0.0017957984237],[0.084332354366779,0.028388926759362,-0.030712332576513],[0.005591609980911,0.038477901369333,0.012410440482199]],[[0.10093933343887,0.046910133212805,0.045972727239132],[-0.0077038980089128,0.15346120297909,0.051784973591566],[0.010730852372944,0.07191539555788,-0.17273190617561]],[[0.062118418514729,-0.075343236327171,-0.082919217646122],[-0.029662542045116,-0.27721753716469,0.32022079825401],[0.050347283482552,-0.068478003144264,0.19441089034081]],[[-0.072429031133652,-0.0074580372311175,0.10427987575531],[-0.093586757779121,0.017848623916507,-0.048442982137203],[-0.027217801660299,0.067384667694569,-0.0023963339626789]],[[-0.068909667432308,0.10306749492884,0.11616279929876],[-0.063042834401131,-0.020556146278977,-0.13743527233601],[-0.053363606333733,-0.03238969668746,-0.075620703399181]],[[-0.12708348035812,-0.021179853007197,-0.075194969773293],[-0.12099301815033,0.0063989493064582,0.0056392578408122],[0.087992891669273,0.032634634524584,0.040857005864382]],[[0.19122458994389,0.032430749386549,0.11108902841806],[-0.022983713075519,-0.14036057889462,-0.056969050318003],[0.044877622276545,0.032099805772305,-0.07806221395731]],[[-0.075362205505371,-0.10151897370815,0.12314566224813],[-0.075330659747124,0.045443948358297,-0.05606497824192],[-0.071870051324368,0.034793339669704,-0.25239354372025]],[[0.16054947674274,0.088716991245747,0.20912609994411],[0.033895179629326,-0.17197355628014,0.051735911518335],[-0.076796926558018,-0.075271874666214,-0.10281825065613]],[[-0.017981749027967,-0.0069564124569297,0.054364554584026],[0.019364543259144,0.086894631385803,-0.077291265130043],[0.023734590038657,-0.1692061573267,-0.029614621773362]],[[-0.13874372839928,-0.067542843520641,-0.020581917837262],[-0.011302491649985,-0.077977627515793,-0.17430227994919],[-0.19683822989464,-0.081808835268021,-0.10788852721453]],[[0.036720030009747,-0.10663911700249,0.093102402985096],[-0.051882181316614,0.095441311597824,0.087098889052868],[-0.021406061947346,-0.12473624944687,-0.11221385747194]],[[-0.0027503594756126,-0.1395255625248,-0.090386904776096],[0.0024158998858184,-0.14702141284943,0.066734537482262],[-0.0063730031251907,-0.067614637315273,-0.16252802312374]],[[-0.018200742080808,-0.032270710915327,0.085546895861626],[-0.05319806188345,0.093532882630825,-0.07226550579071],[-0.015245870687068,0.040310341864824,-0.077812820672989]],[[-0.036786608397961,0.081082470715046,0.044962830841541],[-0.097552232444286,0.01478866674006,0.058548036962748],[-0.25637665390968,-0.0047884164378047,-0.029587158933282]],[[0.050327010452747,0.047268599271774,0.069399707019329],[-0.023083796724677,-0.0046754064969718,-0.03516298905015],[-0.10151624679565,-0.045530784875154,0.053430676460266]],[[-0.18438650667667,0.04523691162467,-0.1560014039278],[-0.029211556538939,0.06153529509902,0.13596679270267],[-0.0082309832796454,-0.095625251531601,-0.27273115515709]],[[-0.082042835652828,-0.29601937532425,-0.34378829598427],[-0.12372650951147,0.01725297421217,0.0034497601445764],[0.0017582022119313,0.07787624001503,0.035020921379328]],[[-0.019931150600314,0.20122864842415,-0.025944624096155],[-0.14420093595982,0.054043602198362,-0.034881789237261],[-0.16424804925919,-0.18366740643978,-0.1748853623867]],[[0.034770704805851,-0.035201959311962,0.034018378704786],[-0.037463005632162,-0.080334469676018,-0.049417894333601],[-0.1360742598772,-0.13779248297215,0.11407963931561]],[[0.044091623276472,0.10627176612616,0.032349497079849],[-0.049254838377237,0.046209529042244,-0.014996257610619],[0.013899611309171,0.041133511811495,-0.1556424498558]],[[-0.21851049363613,0.060525517910719,-0.010084710083902],[-0.076828062534332,0.040506828576326,0.095248356461525],[0.011410753242671,-0.087208442389965,0.036609638482332]],[[0.13879600167274,0.16239054501057,0.15101338922977],[-0.16416583955288,0.015378310345113,-0.058278821408749],[0.14017373323441,-0.10998369008303,-0.09141880273819]],[[-0.1247528642416,-0.10117243975401,0.081586770713329],[0.0048787645064294,-0.0086644040420651,-0.056068375706673],[-0.047791812568903,-0.02035341411829,-0.19113291800022]],[[0.076633609831333,0.13313031196594,0.10383793711662],[-0.024961704388261,-0.10025258362293,-0.031845599412918],[-0.080280236899853,-0.055522248148918,0.031843990087509]],[[-0.048335429280996,0.055284380912781,-0.026539722457528],[-0.062630549073219,-0.10318613797426,-0.022608308121562],[-0.058029852807522,0.017788041383028,0.034282956272364]],[[0.022867616266012,-0.10570126771927,-0.21165595948696],[-0.13870035111904,-0.059423290193081,-0.057909697294235],[0.018037401139736,0.052662868052721,0.03112980723381]],[[-0.0097740972414613,-0.12543918192387,0.080142311751842],[-0.083850376307964,-0.017584957182407,-0.25045505166054],[0.034956615418196,-0.14459440112114,-0.20216071605682]],[[0.047849971801043,0.036846973001957,-0.17989611625671],[0.027230069041252,-0.027701010927558,0.034883420914412],[-0.04937519133091,-0.12184764444828,0.02835032530129]],[[0.033984243869781,0.16736535727978,0.19244457781315],[-0.044651415199041,0.0363396294415,-0.042553842067719],[-0.061006590723991,-0.015417035669088,0.011219836771488]],[[0.11465462297201,0.11348566412926,-0.0080895638093352],[-0.1347268819809,-0.013303165324032,0.076271936297417],[-0.038746111094952,0.096204742789268,-0.015918534249067]]],[[[-0.051737044006586,-0.077789701521397,0.04060286283493],[-0.080785125494003,-0.12856660783291,0.024753971025348],[-0.024326480925083,-0.0038269141223282,0.080424733459949]],[[-0.0054134926758707,0.0010757182026282,-0.071746222674847],[-0.0099711390212178,-0.052396934479475,0.059157375246286],[-0.011998360976577,-0.010968610644341,0.08670412749052]],[[0.063328124582767,-0.0773751065135,-0.061619382351637],[0.090847335755825,0.090479828417301,-0.036082491278648],[0.13980229198933,0.111931219697,0.023152722045779]],[[-0.041393749415874,0.015612598508596,-0.055189047008753],[-0.019777512177825,-0.016402160748839,-0.054096668958664],[-0.056609727442265,0.014147245325148,0.11956641823053]],[[-0.0025226064026356,-0.026165708899498,-0.094374395906925],[0.032933048903942,-0.013730015605688,-0.089624531567097],[0.057053755968809,-0.037686217576265,-0.0055044405162334]],[[-0.025904478505254,0.011028077453375,-0.05032292380929],[0.034397765994072,-0.065668560564518,-0.019094120711088],[-0.065671764314175,0.033222783356905,-0.075642570853233]],[[-0.13268481194973,-0.0083204712718725,0.015945680439472],[0.075169213116169,-0.08755137771368,0.098268888890743],[-0.063907936215401,0.064649984240532,-0.020866421982646]],[[0.070773981511593,-0.10634133964777,0.051011279225349],[-0.017566697672009,0.023582322522998,-0.090229012072086],[-0.029630616307259,0.031824972480536,0.091058135032654]],[[0.00019824360788334,0.055511452257633,-0.046715918928385],[0.023766307160258,-0.0096623403951526,-0.012360439635813],[0.082405783236027,-0.02766477316618,0.051546763628721]],[[-0.037516221404076,-0.10998250544071,-0.023798456415534],[0.034919448196888,0.11377135664225,-0.01786133646965],[0.02223732508719,0.00113694393076,-0.06679929047823]],[[0.098026491701603,0.15199375152588,0.0096105244010687],[0.041831567883492,-0.015952337533236,-0.090549908578396],[0.0062249517068267,0.044120144098997,-0.070936039090157]],[[0.025664353743196,0.069178007543087,-0.085770152509212],[0.018417974933982,-0.025324072688818,0.052503511309624],[-0.043525863438845,-0.14491999149323,0.21381695568562]],[[0.095782704651356,-0.19400364160538,-0.024690374732018],[0.22737376391888,0.059237118810415,0.019992271438241],[-0.060834608972073,0.1385709643364,-0.050640158355236]],[[0.046436198055744,0.014925451949239,-0.029463984072208],[0.012343824841082,-0.11024658381939,-0.043189071118832],[-0.063778653740883,-0.038115110248327,-0.048404954373837]],[[-0.010266683995724,0.0085261883214116,-0.017088200896978],[0.022166641429067,-0.06229817122221,0.047572065144777],[-0.016469974070787,0.037057723850012,-0.065223142504692]],[[0.15118113160133,0.081667616963387,-0.01447681710124],[-0.019887924194336,-0.10009766370058,0.17499443888664],[0.056689485907555,0.090436205267906,-0.016717489808798]],[[-0.09130185842514,-0.039158970117569,-0.078295081853867],[-0.009210892021656,0.12333598732948,-0.073705859482288],[-0.071086078882217,0.11517482250929,0.082474172115326]],[[-0.11521126329899,-0.018489124253392,-0.099402815103531],[-0.15538354218006,0.050152506679296,0.0057087112218142],[-0.044573333114386,-0.01552933268249,-0.054580383002758]],[[0.11842372268438,0.0080580208450556,-0.099103070795536],[-0.0495860055089,-0.10225444287062,-0.13192880153656],[-0.046546142548323,-0.061681535094976,-0.034324005246162]],[[-0.076026901602745,-0.071501210331917,-0.070730745792389],[0.051545429974794,0.036197945475578,-0.059264987707138],[-0.12505024671555,0.045044910162687,0.041591484099627]],[[-0.012853015214205,0.014175684191287,0.024615848436952],[-0.094676099717617,0.021902423352003,0.073975324630737],[-0.004396881442517,0.0067752720788121,-0.092884220182896]],[[-0.10657819360495,-0.0088142585009336,0.029298666864634],[0.041080038994551,0.052670862525702,0.0053216135129333],[-0.14387257397175,0.068406790494919,0.037352126091719]],[[-0.0058858972042799,0.024593744426966,0.18993923068047],[0.11956185102463,0.13299649953842,0.011509962379932],[0.052694797515869,-0.061816785484552,0.049619901925325]],[[-0.0078521426767111,0.020808409899473,-0.062786236405373],[-0.0029591652564704,0.022687740623951,-0.049922119826078],[-0.070241175591946,-0.14542596042156,0.059848669916391]],[[-0.0097989849746227,-0.082123808562756,-0.1681582480669],[-0.039320450276136,-0.15291029214859,0.040486697107553],[0.069172330200672,-0.076367393136024,-0.0081331701949239]],[[-0.034785997122526,0.1607331931591,0.081176750361919],[0.10720429569483,-0.074669308960438,-0.00054744037333876],[-0.1569232493639,-0.098084919154644,0.040829859673977]],[[0.048488300293684,0.10345503687859,-0.022838493809104],[0.013675906695426,-0.016316387802362,-0.086511448025703],[-0.048962641507387,-0.0050423559732735,-0.031321130692959]],[[-0.076311640441418,0.1756377518177,-0.037916164845228],[-0.17063868045807,1.3254459190648e-05,-0.029958561062813],[-0.015890693292022,0.12505243718624,-0.085653237998486]],[[-0.0089842705056071,-0.10922741889954,-0.061163138598204],[-0.013869780115783,-0.029409637674689,0.12846867740154],[-0.010195665992796,-0.16238510608673,0.017121097072959]],[[0.073310784995556,0.064564242959023,0.18820735812187],[0.021076755598187,-0.056652940809727,0.025695271790028],[-0.087898448109627,0.068837903439999,-0.075545005500317]],[[0.14462468028069,0.0068460777401924,0.09721203148365],[-0.071057952940464,-0.11424987763166,-0.0016188735608011],[-0.17469105124474,0.06866479665041,0.010946562513709]],[[-0.085073120892048,0.01737373508513,-0.025082476437092],[-0.19854931533337,-0.028801523149014,0.014266120269895],[-0.1422351449728,0.0016690432094038,-0.027728645130992]]],[[[0.044983901083469,0.12534219026566,-0.27854761481285],[-0.16510458290577,-0.029477171599865,-0.18858186900616],[0.041829194873571,0.031085265800357,-0.092970959842205]],[[-0.075413011014462,0.11937221884727,-0.094289258122444],[0.015233043581247,-0.027805708348751,-0.087406054139137],[0.16617879271507,-0.045727763324976,-0.0058000758290291]],[[0.017781307920814,0.070109859108925,-0.039795346558094],[-0.034680489450693,0.15230937302113,0.0032337009906769],[-0.075472071766853,0.031726736575365,0.095551058650017]],[[0.016894076019526,-0.010249675251544,-0.00021830596961081],[0.12802910804749,-0.21773724257946,-0.03843679651618],[-0.10563819855452,-0.013322919607162,0.20396248996258]],[[0.1304258108139,0.0067146690562367,-0.032805915921926],[-0.017465323209763,0.034615248441696,0.0098563898354769],[-0.036168128252029,0.089871868491173,0.061270907521248]],[[0.0014878713991493,0.05817212164402,-0.3047336935997],[-0.097497284412384,0.102324411273,-0.221579387784],[0.10278129577637,0.12202787399292,-0.15504981577396]],[[-0.11069495975971,0.16543638706207,-0.030820203945041],[0.055357605218887,-0.044789001345634,0.081678465008736],[0.035910177975893,-0.092962227761745,-0.097091637551785]],[[0.1620586514473,0.11538735032082,-0.37753367424011],[-0.025640884414315,0.084869123995304,0.17873999476433],[-0.017986120656133,-0.0044466610997915,-0.11286414414644]],[[0.014893700368702,-0.084752336144447,0.041236564517021],[-0.048296362161636,-0.0090775340795517,0.073697350919247],[-0.027847161516547,-0.059374194592237,0.026728387922049]],[[-0.034119706600904,-0.030475165694952,-0.20399388670921],[0.025943443179131,-0.046938605606556,-0.21657362580299],[0.11624246090651,0.067864082753658,0.030407475307584]],[[-0.048865143209696,0.094686225056648,-0.034290306270123],[0.0070956009440124,-0.13192769885063,-0.021545642986894],[0.0016422148328274,0.15399654209614,-0.089132249355316]],[[-0.10161881893873,0.06854584813118,0.077490702271461],[0.019967472180724,-0.068767793476582,0.048761196434498],[0.015441299416125,-0.021090822294354,-0.053109597414732]],[[0.076921053230762,0.080789349973202,-0.33115527033806],[0.084334492683411,-0.20363447070122,-0.29282203316689],[-0.042354930192232,-0.16186359524727,-0.073163315653801]],[[0.1499854773283,-0.02235553227365,-0.045884598046541],[-0.056743446737528,-0.1628293544054,-0.0011264490894973],[0.006248586345464,-0.072204612195492,0.070185489952564]],[[0.028837034478784,0.029111931100488,-0.024784920737147],[-0.016905894502997,0.10023517161608,-0.023177353665233],[0.019075833261013,-0.054278369992971,-0.052972819656134]],[[-0.12256705015898,-0.010881193913519,-0.079326219856739],[-0.14758668839931,0.14660109579563,0.047556594014168],[-0.081609852612019,0.042388621717691,0.084338307380676]],[[-0.083562716841698,-0.012679294683039,0.063458435237408],[0.005086530931294,-0.092650912702084,0.070194944739342],[-0.014021824114025,-0.10271132737398,-0.19397515058517]],[[0.044308457523584,0.077239342033863,-0.11586973071098],[-0.038969077169895,-0.0045496067032218,-0.12407719343901],[0.097834020853043,0.056411307305098,0.040576376020908]],[[0.032300762832165,0.016003619879484,-0.11599110066891],[-0.07235923409462,0.108697719872,-0.0096821216866374],[-0.11970411241055,0.20097064971924,0.11119909584522]],[[0.019533894956112,-0.25707051157951,0.038742605596781],[0.11131132394075,-0.00029703936888836,-0.061848018318415],[0.037386257201433,0.0085561061277986,-0.036963474005461]],[[-0.1038726195693,0.041844204068184,0.11084681749344],[0.1055400967598,0.026509808376431,0.076042540371418],[0.051952473819256,0.037939466536045,-0.039106950163841]],[[-0.03154543414712,0.083068840205669,0.1054268181324],[0.042948558926582,0.0064158560708165,0.0067050377838314],[0.073855869472027,0.0076644322834909,-0.032751027494669]],[[-0.19428446888924,-0.10607977956533,0.20722143352032],[0.15330612659454,0.11679417639971,-0.068962290883064],[-0.062516964972019,-0.030823836103082,0.017920881509781]],[[0.086272850632668,-0.052705220878124,0.013646000996232],[-0.00051396671915427,-0.025089612230659,-0.092360563576221],[0.12675321102142,-0.19853729009628,-0.19636176526546]],[[0.0097762336954474,0.05934115499258,-0.13063874840736],[-0.088407270610332,-0.082281433045864,-0.21606622636318],[0.01425932534039,-0.091253094375134,0.024566693231463]],[[-0.14069254696369,0.042613003402948,0.0099438298493624],[-0.062810339033604,-0.075083799660206,0.041729468852282],[0.16682228446007,0.068644128739834,0.10209555923939]],[[0.022031685337424,0.0037876120768487,-0.0010407317895442],[-0.026729257777333,-0.0070258337073028,0.041103951632977],[-0.061949409544468,0.021307019516826,0.059925373643637]],[[-0.052934713661671,0.043953187763691,0.023203741759062],[0.11128320544958,-0.13024416565895,-0.17002663016319],[0.11049095541239,-0.17560651898384,-0.18224506080151]],[[0.22286131978035,-0.14666631817818,-0.1483305990696],[-0.0052975662983954,0.040426824241877,-0.034058410674334],[-0.13856564462185,0.1092252805829,0.037751421332359]],[[-0.011469630524516,0.1139250472188,0.030893398448825],[-0.015902675688267,-0.00051921792328358,-0.0079780891537666],[-0.18624883890152,0.0011530590709299,0.013284021057189]],[[-0.17205154895782,-0.0021371035836637,0.098643265664577],[-0.070535756647587,-0.010991060175002,0.0084212739020586],[-0.12258613109589,0.047163859009743,-0.031267166137695]],[[-0.0076697925105691,-0.045813456177711,0.051037665456533],[-0.022165756672621,-0.036067802459002,-0.07301514595747],[-0.18181574344635,-0.10684815049171,0.0081533659249544]]],[[[-0.007731914985925,-0.1035385876894,0.038200173527002],[-0.067526593804359,0.053682658821344,0.06203319132328],[-0.081922896206379,-0.036809768527746,-0.028606733307242]],[[-0.053952232003212,0.041795533150434,0.00092989474069327],[0.12340631335974,0.0065408344380558,-0.062685161828995],[0.098346658051014,0.0078168725594878,0.018858866766095]],[[0.032074473798275,-0.22130116820335,-0.015100970864296],[0.022855354472995,0.039318896830082,0.062776550650597],[0.1005911231041,-0.13976499438286,-0.070634894073009]],[[0.083085127174854,0.0047768205404282,-0.13554926216602],[-0.10266026109457,0.15722022950649,0.2013982385397],[-0.16808822751045,0.08069121837616,-0.058498688042164]],[[0.011515432037413,0.011160342022777,-0.04417160153389],[-0.05813530087471,0.12022861838341,0.030998529866338],[0.072502546012402,-0.056533470749855,-0.12517647445202]],[[0.031777020543814,-0.14571379125118,-0.014343297109008],[0.033417169004679,-0.006456624250859,-0.16006734967232],[0.062584757804871,0.11021940410137,-0.043562464416027]],[[-0.056917171925306,0.04242916405201,-0.032265949994326],[-0.056642029434443,0.052110802382231,0.04824598133564],[-0.022576523944736,0.066575758159161,0.087149895727634]],[[-0.3632764518261,0.072416819632053,0.012642941437662],[-0.21644294261932,-0.0052522765472531,0.083799928426743],[-0.42888176441193,-0.062674626708031,0.043223351240158]],[[0.0099549759179354,-0.021790189668536,-0.020153088495135],[-0.10395732522011,-0.066899321973324,-0.072929218411446],[0.12191908061504,0.03275104239583,-0.17289707064629]],[[0.010438261553645,0.14811609685421,-0.057862486690283],[-0.0093821436166763,-0.059642933309078,-0.14755260944366],[0.050872337073088,-0.050710327923298,0.211047783494]],[[0.010912980884314,0.060499455779791,0.06053464859724],[-0.12299363315105,-0.013481019064784,-0.038859348744154],[-0.0095763420686126,0.065189093351364,-0.13751590251923]],[[-0.29623013734818,0.064895749092102,-0.011865800246596],[-0.084816113114357,-0.087432749569416,-0.036267355084419],[0.0097089139744639,0.19238157570362,0.10530392080545]],[[-0.3062641620636,0.033651627600193,0.021442668512464],[-0.1221906542778,-0.064307101070881,-0.054253123700619],[-0.075137674808502,-0.039743196219206,0.057569112628698]],[[-0.091879785060883,0.041865039616823,0.074513450264931],[-0.045118641108274,0.045589167624712,0.1476416438818],[-0.080476142466068,-0.17917256057262,-0.082471646368504]],[[0.063929848372936,-0.093276128172874,-0.08725293725729],[0.021028108894825,0.069500803947449,0.0088845752179623],[-0.017031824216247,0.038556590676308,-0.0039096125401556]],[[0.062283657491207,0.087869234383106,-0.087342657148838],[0.072192378342152,0.0025059019681066,0.14437948167324],[-0.043114449828863,-0.061050515621901,0.018762724474072]],[[-0.048442889004946,-0.080288574099541,-0.09347877651453],[-0.013309921137989,-0.16817116737366,0.081399112939835],[0.034357242286205,-0.08783120661974,0.004369268193841]],[[0.020186252892017,0.027753185480833,-0.093242257833481],[0.053173445165157,-0.098107025027275,-0.01850762590766],[0.19176176190376,0.081080570816994,-0.18072171509266]],[[0.12195363640785,0.052022241055965,-0.030263870954514],[0.10679171979427,0.029569594189525,-0.051747817546129],[-0.12489188462496,-0.023582490161061,-0.063900999724865]],[[0.016654714941978,0.018578821793199,-0.13778474926949],[0.0097241960465908,0.032649982720613,-0.077813133597374],[-0.053427185863256,0.054680988192558,-0.0013996980851516]],[[-0.069450959563255,0.062534458935261,0.0057322182692587],[0.0049777454696596,-0.12691912055016,-0.17449282109737],[0.11665786057711,-0.016957839950919,-0.11904412508011]],[[0.014348336495459,-0.11134551465511,-0.06621953099966],[-0.061761155724525,-0.0024646394886076,0.019796147942543],[0.12811598181725,0.043972004204988,-0.013063844293356]],[[0.013586447574198,-0.064043916761875,-0.15450622141361],[0.12257283180952,0.035796280950308,0.040342565625906],[0.13296990096569,-0.02893160097301,-0.11533357948065]],[[-0.02290608920157,0.022178325802088,0.037509672343731],[-0.2189227193594,0.028830429539084,0.010026447474957],[-0.017557352781296,0.036798607558012,-0.048603389412165]],[[-0.14342710375786,-0.044599764049053,-0.0276307053864],[-0.0034588372800499,-0.050791632384062,-0.10681440681219],[-0.015368389897048,0.045038398355246,0.017180802300572]],[[0.0027778691146523,-0.032399196177721,-0.088959291577339],[-0.036044508218765,0.146817907691,0.0229726228863],[0.083194211125374,-0.11308021843433,0.044407479465008]],[[0.062521353363991,-0.0045293481089175,0.049909371882677],[-0.083450250327587,0.036229938268661,0.013289056718349],[-0.034880217164755,0.038379836827517,-0.049008026719093]],[[0.1238679215312,0.016642177477479,-0.21721766889095],[0.16978091001511,0.1022085621953,-0.065764062106609],[-0.046684298664331,-0.018874922767282,0.063521787524223]],[[-0.31047546863556,-0.2206866145134,0.023818533867598],[-0.1147823035717,-0.052051845937967,-0.02125209197402],[-0.012058326974511,0.092449240386486,0.068469621241093]],[[-0.0013234652578831,0.021538915112615,0.093455359339714],[-0.10084657371044,0.047791004180908,0.082469910383224],[-0.037094075232744,-0.033663291484118,0.021847164258361]],[[-0.017324632033706,-0.1008142977953,0.06828398257494],[0.026961183175445,-0.14069387316704,0.16866935789585],[-0.073324881494045,0.0045299772173166,-0.0027410655748099]],[[-0.071869648993015,0.040937557816505,0.026919500902295],[-0.015254100784659,-0.034436356276274,0.030699249356985],[0.035466834902763,-0.078279696404934,0.03281682357192]]],[[[0.019248560070992,-0.001326338853687,-0.15753626823425],[-0.11830542981625,-0.031491838395596,-0.35056173801422],[-0.058973930776119,0.037695869803429,0.012074686586857]],[[-0.062266543507576,-0.044218704104424,0.017066081985831],[-0.057934626936913,0.00020251703972463,-0.024946881458163],[-0.05534902215004,0.006911950185895,0.062599070370197]],[[0.026145432144403,0.083069406449795,0.05499317124486],[-0.14183637499809,0.0093326568603516,0.15151296555996],[0.022114243358374,-0.031639605760574,0.27875736355782]],[[0.18926319479942,-0.047375932335854,-0.1740465015173],[0.076367042958736,-0.086825951933861,0.019039541482925],[0.10516233742237,-0.16827447712421,0.045528240501881]],[[-0.070753432810307,-0.062318295240402,0.018400799483061],[0.018246956169605,0.033001724630594,0.026236061006784],[0.11057958751917,0.16557039320469,-0.058000613003969]],[[-0.12836357951164,-0.35782945156097,-0.18135498464108],[0.0021644090302289,-0.17733523249626,-0.18316133320332],[0.056366916745901,-0.039417427033186,-0.1122827231884]],[[0.071102768182755,-0.055143047124147,-0.28481101989746],[0.086719073355198,-0.0083068516105413,-0.23252435028553],[0.22932328283787,-0.0057831648737192,0.091787867248058]],[[-0.056264776736498,-0.11110505461693,0.060662344098091],[-0.17050929367542,0.15156158804893,0.044061750173569],[-0.038350779563189,0.14413890242577,-0.011081079952419]],[[0.10173156857491,0.067397616803646,0.095433063805103],[-0.037793070077896,0.027859976515174,-0.045346930623055],[0.010443012230098,0.040625315159559,0.073182672262192]],[[0.044314961880445,0.029570523649454,-0.2528423666954],[0.031036933884025,0.077131904661655,0.13525904715061],[-0.084490917623043,0.14051724970341,0.058028507977724]],[[-0.06503914296627,-0.031602792441845,-0.10995139181614],[-0.038617797195911,-0.10499563068151,-0.011460155248642],[-0.13592827320099,0.0070682559162378,-0.08027184009552]],[[0.020942091941833,-0.079314075410366,0.042947329580784],[0.10055375099182,-0.060750000178814,0.11568337678909],[0.16268634796143,-0.053273037075996,-0.089807115495205]],[[0.017703864723444,0.02596315741539,0.036400534212589],[-0.078844286501408,-0.030682194977999,-0.066298946738243],[-0.21988387405872,-0.030932722613215,0.010028215125203]],[[0.075628742575645,0.085510186851025,-0.10741852968931],[-0.31874620914459,-0.05608918145299,-0.043581049889326],[-0.058850143104792,-0.015997895970941,0.20213578641415]],[[0.051103971898556,-0.043499439954758,0.00090543023543432],[0.012752710841596,-0.067299887537956,0.01257982198149],[-0.082880169153214,-0.044153600931168,0.06661494076252]],[[-0.23617938160896,0.078975938260555,-0.16792915761471],[-0.064483769237995,0.080650195479393,-0.12553073465824],[0.16485193371773,0.12857812643051,-0.13008117675781]],[[0.085299752652645,-0.011157847940922,-0.12066815048456],[0.028697030618787,-0.015235317870975,0.043807972222567],[-0.074640154838562,-0.067045375704765,-0.011176227591932]],[[-0.12546728551388,0.031778734177351,-0.039650287479162],[-0.011605249717832,-0.017022660002112,-0.16311432421207],[-0.017810296267271,-0.068765163421631,0.16031792759895]],[[0.026952931657434,-0.1341585367918,-0.08112908154726],[-0.024120172485709,-0.015711363404989,-0.24499386548996],[0.06220456585288,-0.13166739046574,-0.21241833269596]],[[-0.124925352633,-0.12227761745453,-0.091509148478508],[0.02235303260386,0.10286785662174,-0.070687346160412],[-0.10594119876623,-0.069175630807877,0.06103977188468]],[[0.084099754691124,0.18639527261257,-0.011675281450152],[0.058184079825878,0.13700689375401,-0.21970430016518],[-0.2002092897892,0.020600402727723,-0.11537735909224]],[[0.10376542806625,-0.022568067535758,0.15455602109432],[0.0011248847004026,-0.22829848527908,-0.22934243083],[0.082201011478901,0.013397261500359,-0.35638856887817]],[[-0.038013517856598,0.066632822155952,0.064428798854351],[-0.15109460055828,0.074680291116238,0.18710626661777],[0.11616331338882,-0.066856004297733,0.059620182961226]],[[-0.12470560520887,0.073692739009857,0.077300548553467],[-0.048489965498447,-0.1193823069334,-0.042309027165174],[0.036462057381868,0.0033773640170693,0.061147265136242]],[[0.051386628299952,-0.014855042099953,-0.057257797569036],[-0.084250159561634,0.07372510433197,0.052157416939735],[-0.20521004498005,-0.20679050683975,-0.15005168318748]],[[0.10727199167013,0.17378950119019,-0.12925858795643],[-0.015546998009086,0.022584391757846,-0.038210686296225],[0.063235960900784,0.14512248337269,0.22138993442059]],[[-0.0056320480071008,0.053566362708807,-0.061668042093515],[-0.016608061268926,0.047871317714453,0.0077701294794679],[-0.1226746737957,-0.040495559573174,0.039126362651587]],[[0.066043443977833,-0.033644493669271,0.011176640167832],[-0.077107794582844,-0.003662868635729,-0.14811785519123],[0.044205199927092,0.062743477523327,-0.15203201770782]],[[-0.051372855901718,-0.04120622202754,0.23120169341564],[0.085933983325958,0.0045454991050065,-0.059319548308849],[-0.036072857677937,0.18545144796371,0.24668483436108]],[[0.17458149790764,-0.00086755346274003,0.051104504615068],[0.088149741292,-0.086796060204506,-0.10132666677237],[0.05257299169898,-0.066964715719223,-0.042171496897936]],[[-0.15538120269775,0.16485244035721,0.02733557112515],[-0.071934029459953,-0.073516570031643,-0.10550614446402],[-0.15235389769077,-0.024166245013475,-0.09902985394001]],[[0.025097664445639,-0.031114928424358,-0.1320589184761],[0.067623734474182,0.025982977822423,-0.19086734950542],[-0.18029703199863,-0.10723149776459,0.2471430003643]]],[[[-0.14677110314369,0.0042074639350176,-0.12594565749168],[0.0954824462533,-0.12675531208515,0.025083549320698],[0.059048812836409,0.064172759652138,0.10058637708426]],[[0.068785898387432,0.014577636495233,-0.074619330465794],[0.052948396652937,-0.074452124536037,-0.090487934648991],[0.040297161787748,-0.086216151714325,0.011214334517717]],[[0.15619520843029,-0.018882801756263,0.073054037988186],[0.020507795736194,0.080971777439117,-0.083986960351467],[-0.061487901955843,-0.055002007633448,-0.037645079195499]],[[0.03089758194983,0.097510479390621,0.19992235302925],[-0.060881767421961,0.0026889040600508,-0.16362164914608],[-0.0096762469038367,-0.030855551362038,0.033555913716555]],[[0.058777298778296,0.081758320331573,-0.050626020878553],[0.02386312931776,0.15251205861568,0.04942175000906],[-0.044833276420832,0.089265763759613,-0.036315955221653]],[[-0.052623942494392,0.021604424342513,-0.2312485575676],[0.02254237793386,-0.16013996303082,-0.09478548169136],[0.040836539119482,-0.0052124606445432,0.060980930924416]],[[-0.098860837519169,0.12023090571165,-0.12591126561165],[0.0023537529632449,0.0092215575277805,-0.018237164244056],[0.018396845087409,0.065954960882664,-0.05817436799407]],[[-0.16950157284737,0.15192157030106,-0.0059482427313924],[-0.03773008286953,0.0037547543179244,-0.022321991622448],[0.072088368237019,-0.025092117488384,-0.0076416754163802]],[[0.043714214116335,0.048400569707155,-0.056681808084249],[-0.021187162026763,0.15798629820347,-0.085563585162163],[0.057563193142414,0.036802373826504,-0.025363013148308]],[[0.04818494990468,-0.0074402233585715,-0.076354153454304],[0.043148338794708,0.024489155039191,-0.02294965274632],[-0.012336293235421,-0.10552928596735,0.21962647140026]],[[-0.023064188659191,-0.02214365825057,0.072048805654049],[-0.010403056629002,-0.12607850134373,0.045248631387949],[-0.097911804914474,-0.10301254689693,0.028017414733768]],[[0.037803314626217,0.008608584292233,0.0432308614254],[0.17208243906498,-0.058426346629858,0.094414867460728],[0.1807863265276,0.034448646008968,-0.029960813000798]],[[0.049012329429388,-0.081542782485485,-0.10288304835558],[-0.041615281254053,-0.22858573496342,0.064085200428963],[0.00081410224083811,-0.18407174944878,0.094317175447941]],[[-0.0001778757723514,0.0112129682675,0.066328279674053],[-0.0025624183472246,-0.021756270900369,-0.018051579594612],[0.14472377300262,-0.10028723627329,-0.011580523103476]],[[0.081336908042431,-0.015017793513834,-0.024972585961223],[-0.023454457521439,-0.028142979368567,0.027372730895877],[-0.076056368649006,-0.0087729142978787,0.014511320739985]],[[0.08903756737709,-0.025352844968438,-0.056141119450331],[-0.1172561943531,0.04930767044425,-0.0088464329019189],[-0.08558264374733,-0.0082529447972775,-0.051492404192686]],[[-0.04852270334959,0.0094399657100439,0.089042261242867],[0.014336445368826,-0.01841408573091,-0.015679934993386],[-0.21205525100231,0.10141644626856,-0.069695971906185]],[[0.017598181962967,-0.085571192204952,0.003218526719138],[-0.073763005435467,0.18759132921696,-0.078544571995735],[0.15077064931393,-0.021567242220044,-0.22133737802505]],[[0.057970009744167,-0.06853724271059,-0.050851963460445],[0.035523317754269,-0.10442171990871,0.093291975557804],[0.00013183534611017,0.091166041791439,-0.059307787567377]],[[0.053356729447842,-0.00084680697182193,0.11957139521837],[-0.0098478002473712,0.07961592823267,-0.038183327764273],[0.010097317397594,-0.083704590797424,-0.050043180584908]],[[0.083301305770874,0.098760843276978,-0.076355285942554],[0.024121288210154,0.010542680509388,-0.045113854110241],[-0.063853323459625,-0.12747959792614,-0.14431677758694]],[[-0.027716260403395,0.13452640175819,-0.058691747486591],[0.10275573283434,0.089115373790264,-0.030084427446127],[-0.17086488008499,0.027291964739561,-0.11604715883732]],[[0.19291244447231,0.26084393262863,0.15580722689629],[0.14922189712524,0.0031929661054164,-0.056073222309351],[-0.16516576707363,0.092861086130142,-0.26030278205872]],[[-0.10403522849083,-0.051637895405293,-0.072397314012051],[0.023170499131083,-0.014179884456098,-0.036065727472305],[0.084339745342731,-0.025533007457852,-0.082615852355957]],[[0.0097928931936622,0.077911980450153,-0.048892121762037],[-0.06216574087739,-0.007373571395874,-0.094405189156532],[0.039050657302141,-0.1437107026577,0.085322044789791]],[[-0.063206441700459,-0.024039998650551,0.13737379014492],[0.11168942600489,-0.15526774525642,0.055805902928114],[0.1666634529829,-0.11479733139277,-0.10244295746088]],[[-0.11770480126143,0.092228010296822,-0.0098890019580722],[-0.099584825336933,0.011959177441895,0.085886642336845],[-0.028944261372089,-0.076920792460442,-0.02553385682404]],[[-0.13175384700298,-0.17027831077576,0.19346231222153],[-0.092375941574574,-0.050749104470015,0.13957744836807],[-0.066921092569828,0.02363364957273,0.093139864504337]],[[0.107008934021,-0.01551628857851,0.1680021584034],[0.13058325648308,-0.058405909687281,-0.014366630464792],[-0.070093363523483,-0.076442800462246,-0.15817427635193]],[[0.14162236452103,0.1349849998951,0.058679975569248],[-0.038952000439167,0.013011096045375,0.1396811902523],[-0.03885605558753,0.024431452155113,-0.024281429126859]],[[0.03208364918828,-0.024072911590338,-0.14919631183147],[-0.0042567178606987,-0.0027833781205118,0.12468557059765],[-0.065107323229313,-0.095042079687119,0.030550181865692]],[[-0.23768861591816,-0.10190745443106,-0.019397489726543],[0.0086245331913233,-0.090180531144142,-0.086750090122223],[0.096574172377586,0.060742575675249,0.15385088324547]]],[[[-0.063611328601837,0.0034239999949932,0.067071177065372],[-0.10462472587824,0.014397295191884,-0.060672931373119],[0.033004675060511,0.0025972644798458,0.059913050383329]],[[0.051525514572859,0.0065492745488882,-0.010701399296522],[0.056997265666723,-0.038765180855989,0.046365167945623],[0.020893795415759,-0.02655323036015,0.12508855760098]],[[-0.21720799803734,-0.044845744967461,-0.073866188526154],[0.015187839977443,0.11501351743937,0.075481675565243],[0.11254009604454,-0.1771803945303,0.15218475461006]],[[0.064936436712742,-0.0014408706920221,-0.0032802897039801],[-0.061024654656649,-0.047838967293501,-0.12977935373783],[0.055904351174831,0.12640129029751,0.037400539964437]],[[0.016935560852289,0.015276356600225,-0.084562301635742],[0.080110743641853,-0.031009482219815,-0.054467752575874],[-0.080732025206089,-0.072310745716095,-0.070355415344238]],[[0.087382465600967,0.17285072803497,-0.17016640305519],[-0.1198819950223,0.16295742988586,-0.20069314539433],[-0.10521133244038,0.02044759131968,-0.12712922692299]],[[0.15533326566219,0.076751545071602,-0.11383200436831],[0.088815279304981,-0.046387687325478,0.099912166595459],[0.15474742650986,0.029281428083777,-0.22211404144764]],[[0.032120108604431,-0.026593368500471,0.026520928367972],[0.075162649154663,0.042699933052063,-0.019392507150769],[0.18048815429211,-0.0021943072788417,-0.11120928823948]],[[-0.13459442555904,0.003187668742612,-0.0085873818024993],[-0.12257438153028,-0.036188680678606,-0.046706166118383],[-0.0074193621985614,0.10725692659616,0.03524861112237]],[[0.025326954200864,-0.065450608730316,-0.16880090534687],[0.07850955426693,0.023892967030406,0.027195936068892],[-0.077927358448505,-0.068608023226261,-0.098499782383442]],[[-0.047624051570892,0.024667650461197,0.15442316234112],[-0.030779372900724,0.10961404442787,-0.0055282800458372],[0.12485786527395,-0.0099948821589351,-0.26486507058144]],[[-0.014461494982243,0.089015305042267,0.25485914945602],[-0.13264515995979,0.13996820151806,0.10275427252054],[0.062371715903282,0.15017782151699,-0.11176884919405]],[[0.024912504479289,-0.013937760144472,-0.2207465916872],[0.10022059082985,0.022677443921566,-0.2433969527483],[0.19486878812313,-0.061876941472292,-0.21988272666931]],[[-0.054058991372585,-0.019232586026192,0.10189188271761],[0.072032958269119,-0.019820567220449,-0.10454272478819],[0.032210610806942,-0.0014818656491116,-0.072296157479286]],[[0.093542546033859,-0.061561051756144,-0.044989109039307],[0.038559850305319,-0.056068565696478,-0.013761091046035],[0.014321423135698,-0.0081036761403084,0.0013345943298191]],[[-0.16492748260498,-0.14246812462807,0.35743829607964],[0.037245355546474,-0.020912880077958,-0.2294380068779],[-0.10719776153564,0.014339797198772,0.044409371912479]],[[-0.051314976066351,-0.21653462946415,-0.16707088053226],[0.0026241447776556,-0.08189145475626,0.087541826069355],[-0.066358789801598,-0.07752026617527,-0.071340277791023]],[[-0.06716663390398,-0.030537577345967,-0.053505193442106],[-0.12013977020979,0.11447442322969,-0.053072929382324],[-0.25798946619034,-0.099690966308117,-0.031695201992989]],[[-0.29658940434456,0.16901680827141,-0.086057148873806],[0.057032879441977,0.04805826023221,-0.04256983846426],[0.1304212808609,0.021854538470507,-0.010452635586262]],[[0.13662101328373,-0.18417136371136,0.010171266272664],[-0.0829161927104,-0.073114886879921,0.26364332437515],[0.20036861300468,-0.069150418043137,-0.21472585201263]],[[-0.075467318296432,0.015252877026796,-0.12884192168713],[-0.060852650552988,0.084442943334579,-0.13572676479816],[0.20247066020966,-0.010401076637208,-0.21541759371758]],[[-0.016934603452682,-0.035175733268261,-0.083761841058731],[0.0099690053611994,0.12322182953358,0.31069734692574],[0.04466113448143,-0.084972642362118,0.14619371294975]],[[0.1857685148716,0.14067335426807,0.050709865987301],[-0.15424993634224,-0.017365483567119,0.041931662708521],[-0.088681131601334,-0.047590497881174,0.20364013314247]],[[-0.04460645839572,-0.040816355496645,-0.089051753282547],[-0.095181927084923,0.064402095973492,-0.05748899653554],[0.13447347283363,0.030291190370917,-0.14056032896042]],[[-0.13586799800396,-0.046813875436783,-0.2049655765295],[-0.024673655629158,-0.049035873264074,0.0023667600471526],[-0.16947513818741,0.12711410224438,-0.055112421512604]],[[0.073346540331841,-0.10824482142925,-0.093934610486031],[-0.089458413422108,-0.12789191305637,0.077220693230629],[0.03499048948288,0.067939333617687,-0.0077907433733344]],[[0.074319660663605,0.02950357273221,-0.036385286599398],[-0.010561431758106,-0.029501859098673,-0.029948592185974],[-0.085045151412487,-0.0095086833462119,0.01584162004292]],[[0.017441630363464,-0.25497487187386,0.10606966912746],[0.058099154382944,0.079278752207756,0.034741476178169],[0.23685091733932,-0.095436662435532,-0.1225408539176]],[[-0.04061446338892,0.10855324566364,0.010178817436099],[0.16792471706867,-0.19768442213535,-0.075402304530144],[0.029007250443101,-0.25733414292336,-0.089136958122253]],[[0.0422726534307,0.025986652821302,0.12540605664253],[-0.078786075115204,0.028905285522342,-0.0097821615636349],[0.026679309085011,-0.015950353816152,-0.067125260829926]],[[-0.036479450762272,0.049170728772879,0.090228296816349],[-0.14016874134541,-0.030477840453386,0.16345486044884],[0.048533424735069,0.061971679329872,-0.1450994759798]],[[-0.293064057827,-0.1650732755661,0.094452351331711],[-0.067965902388096,0.039097327739,-0.1012559607625],[-0.017862692475319,-0.096016645431519,-0.21934512257576]]],[[[-0.22476950287819,-0.15849988162518,0.013643071986735],[-0.17446005344391,-0.14198195934296,0.059566404670477],[-0.042615998536348,0.28889319300652,0.026831988245249]],[[0.048699073493481,-0.074312657117844,-0.020876625552773],[-0.026538984850049,0.048183385282755,0.10155696421862],[-0.023573957383633,0.014589132741094,0.0041669020429254]],[[0.12027817964554,0.12516377866268,0.025213854387403],[0.087785817682743,-0.2397894859314,-0.046738412231207],[0.038206096738577,0.037650112062693,-0.039541475474834]],[[0.027712129056454,0.025709168985486,0.17437918484211],[0.017893088981509,0.11176685243845,-0.14219549298286],[-0.13412137329578,-0.070663176476955,-0.050747085362673]],[[0.026614693924785,-0.021894237026572,-0.12205001711845],[-0.035931315273046,-0.066227898001671,0.096954740583897],[0.059725228697062,0.10808096826077,-0.0078108245506883]],[[-0.094398215413094,0.020992673933506,0.048066422343254],[0.028591074049473,-0.14651764929295,-0.059496704488993],[0.14544367790222,0.10281385481358,0.067576870322227]],[[-0.14999780058861,-0.038421534001827,-0.03604893013835],[0.087136261165142,0.14768432080746,-0.17843641340733],[-0.030646871775389,-0.056677874177694,0.1096482872963]],[[0.22375766932964,0.042555503547192,-0.038296848535538],[-0.50525569915771,-0.11463335901499,-0.08852256834507],[0.19641925394535,0.12036883831024,0.019819566980004]],[[-0.021201891824603,0.084882780909538,0.12941385805607],[0.071589477360249,-0.046902999281883,-0.086118653416634],[-0.078744374215603,-0.10050643235445,0.087444342672825]],[[-0.12124134600163,0.11584138870239,0.062914684414864],[-0.20883551239967,-0.10059908777475,0.11916692554951],[0.20719587802887,-0.11987772583961,-0.10019402951002]],[[-0.19430585205555,0.0058699063956738,-0.085581861436367],[-0.12833334505558,-0.060965206474066,-0.030582241714001],[0.022248445078731,0.065094351768494,0.058439653366804]],[[0.11570185422897,-0.019031850621104,-0.0060695530846715],[-0.23075830936432,-0.033806841820478,-0.040548156946898],[-0.080043911933899,-0.0038188036996871,0.025044001638889]],[[-0.10949511826038,-0.001188172143884,-0.055022235959768],[-0.015770465135574,0.039115861058235,-0.067837975919247],[-0.13389317691326,-0.071207255125046,0.037412419915199]],[[-0.034068197011948,0.029759658500552,-0.20819239318371],[-0.034298285841942,0.02810131944716,0.018343295902014],[0.036350645124912,0.018697142601013,0.033941920846701]],[[-0.061816670000553,0.025936245918274,0.022679978981614],[-0.024364007636905,0.048541679978371,-0.040632847696543],[0.017029151320457,-0.09603538364172,0.078043609857559]],[[0.0038651369977742,0.019956527277827,0.010072881355882],[-0.042636554688215,-0.082567885518074,0.085575610399246],[0.26177269220352,-0.033669583499432,-0.11257506906986]],[[0.019051430746913,-0.046454403549433,-0.01572130061686],[-0.018351700156927,0.038551460951567,0.13162072002888],[-0.19178405404091,0.014770755544305,0.10652951896191]],[[-0.062300570309162,-0.053202118724585,0.060803171247244],[-0.15940117835999,0.07011316716671,0.047582026571035],[0.038509700447321,0.051377236843109,0.058506086468697]],[[0.064502380788326,-0.11894230544567,-0.1182604804635],[-0.037357226014137,-0.10824236273766,-0.0930100902915],[0.14386069774628,0.06480934470892,0.034270692616701]],[[-0.079367659986019,-0.084883898496628,0.10238961130381],[-0.059759832918644,0.080111928284168,-0.07879701256752],[-0.00044136046199128,-0.23658631742001,-0.1736723035574]],[[-0.13554626703262,0.064821027219296,-0.03764370828867],[-0.069752767682076,0.073818817734718,-0.14255511760712],[-0.11036601662636,0.0055028488859534,0.11487794667482]],[[-0.12004548311234,-0.15326224267483,-0.016024067997932],[0.02840225212276,0.1520654708147,0.22172996401787],[-0.18627026677132,-0.026829414069653,-0.15230499207973]],[[0.070990703999996,-0.0083836894482374,0.15839387476444],[-0.021883670240641,-0.07144933193922,0.026817549020052],[0.090009652078152,0.00095514336135238,-0.039834223687649]],[[0.073559068143368,0.035864759236574,-0.11302910000086],[-0.21340504288673,-0.24780917167664,-0.14804807305336],[-0.075334854424,0.016016066074371,-0.050957135856152]],[[-0.28099918365479,-0.17609286308289,0.00080402451567352],[-0.024194270372391,0.025069363415241,0.087365530431271],[0.08504444360733,-0.064502559602261,-0.053751014173031]],[[-0.15612451732159,-0.002510306192562,-0.10465863347054],[0.00025051055126823,-0.31160706281662,0.01476004999131],[0.080366522073746,0.026772174984217,-0.037237714976072]],[[-0.045221567153931,0.026832833886147,-0.013452679850161],[0.091866970062256,-0.079320147633553,0.069000475108624],[-0.011422384530306,0.012992239557207,0.018305584788322]],[[0.010668272152543,-0.15558438003063,0.08719690144062],[-0.16032738983631,-0.039857745170593,0.066896662116051],[-0.091378435492516,0.09226930141449,-0.066948167979717]],[[0.098932601511478,-0.089582212269306,-0.031399998813868],[0.030749078840017,-0.16391956806183,0.081195309758186],[0.13919645547867,0.026722015812993,0.03721210360527]],[[0.0081961452960968,-0.10042828321457,-0.021798372268677],[-0.0060707763768733,0.075815796852112,0.004957988858223],[0.0077865570783615,0.028380524367094,-0.13081683218479]],[[-0.013978031463921,0.10924315452576,0.017168899998069],[-0.010351303033531,0.015487938188016,-0.028090698644519],[0.1130259335041,-0.13222146034241,-0.12500908970833]],[[0.12085270881653,0.044465720653534,-0.053224049508572],[-0.027983460575342,0.045488268136978,0.10580457746983],[-0.12580396234989,-0.17886370420456,-0.041986372321844]]],[[[0.13845838606358,0.18381024897099,-0.065301217138767],[0.11079102754593,-0.072062395513058,0.10630824416876],[0.090616069734097,-0.12451498955488,0.019657790660858]],[[-0.12379883974791,0.069796733558178,0.011646116152406],[-0.15970085561275,0.092785134911537,-0.057985704392195],[-0.032111898064613,0.028907347470522,0.019885892048478]],[[0.091023303568363,-0.02222547121346,-0.039022386074066],[-0.055149350315332,0.095335245132446,0.17388105392456],[0.020914170891047,0.19490031898022,-0.10796222835779]],[[0.056198250502348,0.10194513201714,0.018737172707915],[0.063008382916451,-0.080774903297424,0.09737029671669],[0.051123030483723,-0.11088983714581,-0.0064422599971294]],[[0.15422961115837,0.15890409052372,0.04478245601058],[0.043909538537264,-0.049026060849428,0.09498518705368],[-0.057506497949362,-0.059248764067888,-0.038326721638441]],[[0.052280399948359,0.062285181134939,-0.0040986761450768],[0.15666837990284,-0.050429627299309,0.037357483059168],[-0.045942801982164,0.027346754446626,-0.11527759581804]],[[0.070956014096737,-0.039101995527744,-0.24917042255402],[0.11416907608509,0.010036219842732,0.051100395619869],[-0.12220830470324,-0.10837446153164,-0.035745907574892]],[[0.20549681782722,-0.27570381760597,-0.026674596592784],[0.20437604188919,0.11173710972071,0.19826501607895],[0.097327210009098,-0.015150530263782,0.055551525205374]],[[-0.025169789791107,0.0014944763388485,0.017723485827446],[-0.051891326904297,0.064676485955715,0.031778618693352],[0.033688303083181,-0.017900081351399,-0.15216460824013]],[[0.20999230444431,0.1623015999794,0.0039664683863521],[-0.16722400486469,-0.050099167972803,-0.076697207987309],[0.10206501185894,-0.23916818201542,0.0065018218010664]],[[-0.17242066562176,-0.0086975172162056,0.074845060706139],[0.040917810052633,-0.10199570655823,-0.065858587622643],[0.018817184492946,-0.20939603447914,0.039175130426884]],[[0.12853243947029,0.12821184098721,0.089749403297901],[-0.1017697006464,-0.14187280833721,-0.05098744109273],[0.11547985672951,-0.10722205787897,0.24707590043545]],[[-0.10246869921684,0.016517464071512,0.045368574559689],[0.012554454617202,-0.12777200341225,-0.057268403470516],[0.0755919739604,0.028255825862288,0.011677144095302]],[[0.067368313670158,-0.069176889955997,0.17767207324505],[0.054271548986435,-0.076729767024517,0.12365985661745],[0.12930162250996,-0.089614696800709,-0.040703129023314]],[[-0.058620125055313,0.020640809088945,-0.06997238099575],[0.059651620686054,0.10443234443665,0.0053642312996089],[0.072351597249508,-0.057001926004887,-0.054855901747942]],[[0.20993539690971,0.0266243070364,-0.057459726929665],[0.078026913106441,-0.006212861277163,0.15551571547985],[0.077580377459526,-0.026582449674606,-0.083802290260792]],[[-0.011471621692181,0.18374171853065,-0.19184802472591],[0.021610314026475,0.10234766453505,-0.13311819732189],[-0.0060264505445957,0.024694727733731,0.11818271130323]],[[-0.0061613325960934,0.093903958797455,0.089929506182671],[-0.12573689222336,0.024079555645585,-0.10664375126362],[-0.035406939685345,0.14821943640709,-0.14300544559956]],[[0.24152924120426,-0.051039520651102,-0.074063345789909],[-0.040954563766718,0.070090293884277,-0.086336269974709],[-0.21121676266193,0.023164931684732,-0.15657879412174]],[[0.14908310770988,0.022070595994592,0.029116339981556],[-0.032357927411795,0.25544887781143,-0.17433005571365],[-0.043936230242252,-0.0036735872272402,-0.1063112989068]],[[-0.08128646761179,-0.059394925832748,-0.019188072532415],[0.079859472811222,-0.056489992886782,0.0073866373859346],[-0.00010491294233361,0.014206867665052,0.027028555050492]],[[-0.016063096001744,-0.070261143147945,-0.19127203524113],[0.062936574220657,0.009171231649816,-0.024650117382407],[-0.077970758080482,0.064963199198246,-0.0032028742134571]],[[0.064202979207039,-0.0017920142272487,-0.18134646117687],[0.00178429891821,0.21539017558098,-0.065825283527374],[-0.17113046348095,0.091432094573975,-0.25927677750587]],[[0.080624453723431,0.09633082896471,0.021917654201388],[-0.041590057313442,0.059619255363941,-0.14015352725983],[-0.18937969207764,0.09406815469265,-0.1115607842803]],[[0.045748356729746,0.23543608188629,0.10943980515003],[-0.12525779008865,-0.17106181383133,-0.19604490697384],[0.045399282127619,-0.014795511960983,-0.06815379858017]],[[-0.027719762176275,0.027675187215209,-0.039485365152359],[-0.0084247039631009,0.1336548179388,-0.012207853607833],[-0.050852086395025,-0.066698513925076,-0.10351924598217]],[[-0.061088789254427,0.11131216585636,0.028627468273044],[-0.092888101935387,-0.0059225629083812,0.0063737602904439],[-0.0059201694093645,0.040098670870066,-0.071959778666496]],[[0.058245472609997,-0.15878382325172,-0.041034378111362],[0.15558335185051,-0.051787909120321,0.1064595580101],[0.063392795622349,-0.12449203431606,-0.0066971890628338]],[[0.11492571979761,-0.038005821406841,0.23009955883026],[0.00091456557856873,-0.041495051234961,-0.061574853956699],[-0.0054623959586024,-0.090717852115631,-0.022902853786945]],[[-0.044805999845266,-0.0076887207105756,0.015690980479121],[-0.016868826001883,0.027010928839445,-0.040756467729807],[0.01674029044807,0.03484944999218,-0.10486287623644]],[[-0.064225070178509,-0.058024063706398,-0.016956822946668],[0.057356480509043,-0.016345806419849,-0.075942389667034],[0.10249256342649,0.015136893838644,-0.087106376886368]],[[-0.048733357340097,0.026798700913787,0.085254654288292],[-0.0045113991945982,0.034195516258478,-0.071048088371754],[0.004837563727051,-0.033310726284981,-0.17269225418568]]],[[[0.079000607132912,0.04841049388051,-0.0076951440423727],[-0.13987474143505,-0.047685422003269,-0.058588221669197],[0.042635809630156,0.021292898803949,0.067618489265442]],[[0.036402594298124,0.074643209576607,0.07063814997673],[0.043508045375347,-0.027344269677997,-0.016429301351309],[-0.065320894122124,-0.018917880952358,0.061013024300337]],[[0.0098544731736183,-0.030647080391645,-0.050298556685448],[0.052262753248215,-0.024174891412258,0.050541993230581],[0.12398174405098,0.050471231341362,-0.097845859825611]],[[0.065441191196442,0.066597700119019,0.005030857399106],[0.030100706964731,-0.12546697258949,-0.041505709290504],[0.11490403115749,-0.018944108858705,0.013054702430964]],[[-0.032320324331522,0.034806951880455,-0.020299645140767],[0.018866717815399,-0.0026736313011497,-0.10464910417795],[-0.028380382806063,0.039617452770472,-0.021046064794064]],[[0.062253184616566,-0.13000068068504,-0.14456421136856],[0.077648222446442,0.11438754945993,0.12747836112976],[0.098450049757957,-0.094807110726833,-0.088571719825268]],[[-0.03301990032196,0.051287177950144,-0.14117068052292],[-0.20442795753479,0.025199968367815,-0.0042004995048046],[0.06951529532671,0.038710799068213,-0.16052109003067]],[[-0.13809697329998,0.11934335529804,-0.10821036994457],[-0.084780007600784,-0.12503150105476,0.067092724144459],[0.14394682645798,0.10982435196638,0.12168922275305]],[[-0.040799267590046,0.064883753657341,0.012528825551271],[0.08292468637228,-0.090644434094429,0.016658728942275],[-0.077643074095249,-0.051872085779905,-0.059823106974363]],[[-0.033872440457344,0.10875806957483,-0.014036706648767],[-0.14570732414722,-0.021925400942564,-0.046465896070004],[-0.10992190241814,-0.18279503285885,0.086271949112415]],[[-0.049425661563873,-0.11189863830805,0.089921601116657],[-0.046785816550255,-0.080978229641914,-0.047485675662756],[-0.11922576278448,-0.071503043174744,0.050738528370857]],[[-0.014376011677086,-0.066461585462093,-0.29554429650307],[-0.073835611343384,0.047668300569057,0.019655801355839],[-0.17310336232185,0.063353225588799,0.037670657038689]],[[0.083136215806007,0.15836352109909,-0.067754842340946],[0.044766016304493,-0.24920150637627,-0.062434684485197],[-0.013942894525826,-0.10802295804024,0.038415774703026]],[[-0.1213740631938,-0.067300654947758,0.09589096903801],[-0.0961859151721,-0.10201738029718,-0.10719253867865],[0.12303941696882,0.014885247685015,-0.10149730741978]],[[0.014987776987255,-0.063021436333656,0.0050567858852446],[0.084322661161423,0.021186042577028,-0.022417886182666],[-0.061312764883041,-0.07610522210598,0.026937624439597]],[[-0.014122628606856,-0.012824500910938,0.10088346898556],[0.025340331718326,-0.068539954721928,0.091186515986919],[-0.0074640209786594,-0.14260637760162,-0.23345863819122]],[[0.033590376377106,0.030160568654537,-0.11240699142218],[-0.081419035792351,-0.0094552785158157,-0.055181376636028],[-0.015670910477638,0.0025626900605857,0.099255569279194]],[[0.072867251932621,-0.00060583936283365,-0.067300520837307],[-0.018737867474556,0.012503313831985,0.020980186760426],[-0.021534323692322,0.037363227456808,0.02859328314662]],[[-0.031660079956055,0.026677979156375,0.047752402722836],[-0.0317412763834,0.040325649082661,-0.034971814602613],[0.095561288297176,0.01901507563889,-0.22861494123936]],[[-0.0034097214229405,0.044911772012711,-0.18071365356445],[-0.003610803745687,-0.04459323734045,-0.013727107085288],[-0.012163369916379,-0.1045805811882,-0.067055508494377]],[[-0.068173997104168,0.038513071835041,0.010438984259963],[0.067430607974529,-0.14198639988899,0.13315506279469],[-0.11773840337992,-0.11484803259373,0.075191214680672]],[[-0.14578105509281,-0.038982857018709,-0.10079570114613],[0.081212364137173,0.06502989679575,0.025395032018423],[0.1657527089119,-0.080342203378677,-0.21122989058495]],[[0.13114136457443,-0.049577966332436,0.0025238119997084],[-0.0037825230974704,-0.0091002909466624,-0.13528215885162],[-0.13039788603783,0.11195561289787,-0.013144595548511]],[[-0.19790937006474,-0.10423094779253,-0.080943211913109],[0.072715140879154,-0.10696351528168,-0.016986014321446],[0.078273937106133,0.062539517879486,-0.041423466056585]],[[-0.038559466600418,-0.01282358635217,-0.093583658337593],[-0.052966132760048,0.03057324886322,-0.085995227098465],[-0.083980143070221,0.076577454805374,-0.062613546848297]],[[-0.027614079415798,-0.16074925661087,-0.1300260424614],[-0.095022559165955,0.19062627851963,-0.020312782377005],[0.13880851864815,-0.16247476637363,-0.0042418865486979]],[[-0.041532404720783,-0.053196832537651,0.024438366293907],[0.038619767874479,0.063307352364063,0.0052867932245135],[0.02235497161746,0.063099086284637,-0.12999661266804]],[[0.004154656548053,0.1325322240591,0.056947492063046],[-0.063744954764843,-0.043976686894894,-0.178820759058],[-0.069401770830154,-0.052145298570395,0.027164872735739]],[[0.0005223840707913,0.092509485781193,-0.077258080244064],[0.06860326230526,-0.12221661955118,-0.036944285035133],[-0.059097420424223,-0.23475575447083,-0.072804190218449]],[[0.017213260754943,-0.032531198114157,0.03827266022563],[-0.071347422897816,-0.12237342447042,-0.0030824013520032],[-0.052199106663465,0.056073371320963,-0.05304567143321]],[[-0.080768793821335,-0.017068421468139,0.078851372003555],[-0.018295941874385,-0.16149519383907,0.10971272736788],[0.069114252924919,0.016557399183512,-0.10242679715157]],[[0.020487228408456,0.045502718538046,0.023635933175683],[0.063132956624031,-0.00532934255898,-0.080852903425694],[0.076009653508663,-0.1304194778204,-0.10094583034515]]],[[[0.02949989400804,0.16261810064316,-0.054622054100037],[-0.18109294772148,0.011677975766361,0.058752920478582],[0.028176952153444,0.15936335921288,0.042196843773127]],[[0.010539292357862,-0.025067852810025,0.010328591801226],[-0.053684648126364,-0.13923119008541,0.019707271829247],[0.03111751191318,0.097017057240009,0.11801003664732]],[[0.094799898564816,0.07250202447176,-0.0096234632655978],[0.066213816404343,0.22487622499466,-0.077991358935833],[0.012996488250792,-0.10179724544287,-0.070349276065826]],[[-0.017982058227062,-0.10310856997967,-0.091599225997925],[-0.02335506118834,0.15999093651772,0.061744596809149],[-0.048045378178358,-0.027126651257277,-0.020110923796892]],[[0.070682682096958,0.060612048953772,0.14016133546829],[-0.069810710847378,-0.01230526342988,0.039270706474781],[-0.054531950503588,0.016114572063088,0.012129647657275]],[[-0.039277117699385,0.065825708210468,-0.015823300927877],[0.028955953195691,0.091197371482849,0.016012804582715],[0.040065344423056,-0.041269887238741,0.049987446516752]],[[-0.14740279316902,0.11659644544125,-0.010952611453831],[-0.1294280141592,0.11820229887962,0.059167243540287],[0.12864455580711,-0.1093265414238,0.056585971266031]],[[0.013526291586459,-0.1825554817915,-0.21638816595078],[0.085293896496296,0.18287886679173,0.06240751221776],[0.074155084788799,-0.14292523264885,-0.056915245950222]],[[0.035147216171026,0.01904384419322,-0.022942738607526],[0.055274218320847,0.048285394906998,-0.1100912541151],[0.070726066827774,-0.025442158803344,0.0080746449530125]],[[-0.069395683705807,0.04473040252924,0.033002063632011],[-0.046542044728994,-0.080438420176506,-0.092273510992527],[0.19311946630478,0.027028391137719,0.028715088963509]],[[0.046942498534918,-0.07148739695549,0.049083568155766],[0.14739388227463,0.037511989474297,0.012131098657846],[0.052419040352106,0.0026173419319093,0.055561475455761]],[[-0.021138641983271,0.014685671776533,0.11914548277855],[-0.015391508117318,0.002181253163144,0.037743870168924],[0.069847412407398,0.019382789731026,0.011620737612247]],[[-0.064819470047951,0.027210917323828,0.063871890306473],[0.10765630751848,0.084604829549789,0.046561568975449],[-0.079288296401501,-0.11217507719994,0.080973759293556]],[[0.12801679968834,-0.13281932473183,0.0079686436802149],[0.039158545434475,-0.019540222361684,0.077734485268593],[0.069466546177864,-0.11396916955709,-0.093384124338627]],[[-0.042453020811081,-0.063175372779369,0.0011791767319664],[0.03376779332757,0.094126313924789,-0.0017411973094568],[-0.099993139505386,-0.0671426653862,0.013311781920493]],[[0.086113929748535,0.10460502654314,0.21738690137863],[0.069053940474987,-0.082892403006554,0.042734581977129],[-0.040560271590948,-0.20306801795959,-0.12664479017258]],[[-0.045014891773462,0.11330929398537,-0.0023894109763205],[0.10894303023815,0.055618789047003,0.01215829513967],[0.043409515172243,-0.054333820939064,0.10185819864273]],[[0.031345527619123,-0.018017053604126,0.0085349790751934],[0.16606524586678,0.019536253064871,-0.13902465999126],[0.08416523039341,0.13371703028679,0.064370095729828]],[[0.080796122550964,-0.032894361764193,-0.10846163332462],[-0.03110727854073,0.17181789875031,-0.052784521132708],[0.07164853811264,0.12883128225803,0.0020617241971195]],[[0.026879381388426,0.03171531111002,0.028840441256762],[-0.042741879820824,0.072307132184505,-0.12345209717751],[-0.0008439474622719,-0.088408298790455,0.0014614043757319]],[[0.039977241307497,-0.18335437774658,0.097050875425339],[0.091327480971813,-0.043332282453775,0.073754854500294],[0.069271467626095,0.087903574109077,0.055468428879976]],[[-0.091329671442509,0.031438887119293,0.099822454154491],[0.046019412577152,0.15892590582371,0.022220125421882],[0.12024491280317,-0.22279009222984,-0.17877481877804]],[[0.13412196934223,-0.086787670850754,0.073870792984962],[-0.023231135681272,0.066800370812416,-0.20209097862244],[0.010502433404326,0.032792206853628,0.086187817156315]],[[0.058546528220177,0.1133231446147,0.098445273935795],[0.072810955345631,0.043781761080027,-0.075093477964401],[-0.0067692357115448,0.023266930133104,-0.13172902166843]],[[-0.033892676234245,-0.018684251233935,-0.048479408025742],[0.047950372099876,-0.0066058812662959,0.074428021907806],[0.19275435805321,0.13392385840416,0.26137664914131]],[[-0.035822581499815,0.0016304926248267,0.023770978674293],[-0.050865594297647,0.11920806765556,-0.03386839479208],[0.099156685173512,-0.13086143136024,-0.13953939080238]],[[0.042573317885399,0.022637220099568,-0.0097822695970535],[0.047027036547661,0.00076641293708235,0.12482416629791],[-0.00082130747614428,0.11074411123991,-0.11518917232752]],[[0.18000580370426,-0.02234492637217,0.059684973210096],[0.020263681188226,-0.041284941136837,-0.15092144906521],[0.0048862514086068,0.062937468290329,-0.025075372308493]],[[0.18402133882046,-0.17580850422382,0.10967853665352],[0.045441616326571,-0.0013874606229365,-0.0014398997882381],[-0.033386923372746,0.025713006034493,-0.095425374805927]],[[0.083373628556728,0.07518132776022,-0.083674401044846],[-0.079595968127251,0.062312852591276,0.072826184332371],[0.089411869645119,0.077496707439423,-0.040273796766996]],[[-0.0090293558314443,0.050439305603504,0.08107578009367],[-0.00026976285153069,0.02655672468245,-0.003047150792554],[-0.12145929038525,-0.0081982081755996,0.13225613534451]],[[-0.034978624433279,0.10297363996506,0.14417454600334],[-0.042625192552805,0.095356486737728,-0.10143956542015],[0.069619208574295,0.077035374939442,0.025682607665658]]],[[[0.064386859536171,0.012909671291709,-0.051953174173832],[0.02817920409143,-0.031775057315826,-0.13753622770309],[-0.14150008559227,0.024434015154839,0.030949983745813]],[[-0.020370664075017,-0.12691633403301,-0.022775234654546],[0.020110452547669,0.047102324664593,0.020577574148774],[0.020061923190951,0.0024028162006289,0.055376693606377]],[[-0.032699912786484,-0.011498657055199,0.10698468238115],[-0.038382347673178,-0.0255684889853,0.0028982830699533],[-0.14910894632339,-0.011933624744415,-0.0042511220090091]],[[0.026754213497043,0.1140349432826,0.035091314464808],[0.0087519083172083,-0.036904811859131,-0.023438759148121],[-0.031756743788719,-0.096707604825497,-0.080925293266773]],[[0.062424812465906,-0.010129187256098,-0.020641129463911],[-0.0073926928453147,-0.0084630809724331,0.050508622080088],[-0.043142944574356,-0.071978777647018,0.016107697039843]],[[-0.015148682519794,0.12184451520443,-0.013582702726126],[0.014606362208724,-0.015410887077451,-0.04700593277812],[0.0037828125059605,-0.066880993545055,-0.17337669432163]],[[-0.078332982957363,-0.10098005086184,-0.089789666235447],[0.049721382558346,-0.002582082990557,0.14088916778564],[0.013158490881324,0.081840895116329,-0.0018769425805658]],[[0.058448482304811,0.13390736281872,0.0013791938545182],[0.057149648666382,-0.016089674085379,-0.049384366720915],[-0.13354296982288,-0.14410197734833,0.03854013979435]],[[-0.11054088920355,0.044592060148716,-0.056576352566481],[-0.090745121240616,-0.0097389062866569,0.029534801840782],[0.097002670168877,-0.061203818768263,-0.052172921597958]],[[0.14988185465336,-0.14187116920948,0.06849604845047],[-0.054496489465237,-0.017745247110724,0.023584455251694],[-0.034270789474249,0.078789107501507,-0.001632473198697]],[[0.094573028385639,-0.10296793282032,0.014168857596815],[0.11091449856758,-0.18591801822186,-0.00024576461873949],[-0.015616446733475,-0.076966643333435,-0.056997071951628]],[[0.093915268778801,-0.07254633307457,0.16422635316849],[-0.059858236461878,-0.1157833635807,-0.045247316360474],[0.16857470571995,0.035945042967796,0.051763098686934]],[[0.069757118821144,-0.012443341314793,0.033713269978762],[0.099181830883026,0.042968757450581,-0.021033750846982],[-0.063452944159508,-0.029086221009493,0.046699672937393]],[[0.088024199008942,0.081456683576107,-0.03342566639185],[0.06892516463995,-0.033492740243673,-0.094694443047047],[-0.11591464281082,-0.12495681643486,0.018404200673103]],[[-0.080515615642071,-0.024992227554321,-0.085240252315998],[-0.065540462732315,0.085927031934261,-0.0041299969889224],[0.12811601161957,-0.022862864658237,0.1162738725543]],[[0.086321473121643,0.056775663048029,-0.12845672667027],[0.071609936654568,-0.058869771659374,-0.017741527408361],[-0.098283231258392,0.061669487506151,0.064543105661869]],[[-0.17657928168774,-0.01382973510772,0.0064532007090747],[-0.080600753426552,0.11066285520792,0.10582585632801],[0.0068104388192296,0.032035667449236,-0.091696850955486]],[[0.007777476683259,-0.040422365069389,0.14987908303738],[-0.079988986253738,-0.06065247580409,-0.036721963435411],[-0.11739816516638,0.067968271672726,-0.056428089737892]],[[0.037831548601389,0.018413780257106,-0.032156120985746],[-0.021866850554943,-0.082517549395561,-0.0068941195495427],[-0.035844393074512,0.010193835943937,-0.0077998749911785]],[[-0.021856687963009,0.042009726166725,0.06405159085989],[0.01388690341264,-0.024369098246098,0.015514187514782],[0.0059621720574796,0.035391137003899,0.042223513126373]],[[0.097461774945259,-0.019604755565524,-0.23335817456245],[-0.015322429127991,-0.053948931396008,-0.0051675504073501],[0.093206815421581,0.015462320297956,0.042379971593618]],[[-0.053536020219326,0.041998706758022,-0.14907382428646],[-0.026240028440952,0.0021049233619124,-0.015300353057683],[-0.01315972674638,0.046152859926224,-0.079806163907051]],[[-0.016047598794103,0.085874125361443,0.112334176898],[-0.02168438769877,-0.075195029377937,-0.013623013161123],[0.15114216506481,-0.015919396653771,-0.010870146565139]],[[-0.071645028889179,-0.026123398914933,0.039226032793522],[0.23240396380424,0.10964132845402,0.029501419514418],[-0.13741505146027,-0.15533035993576,-0.058770593255758]],[[0.099916324019432,-0.014478321187198,-0.078860975801945],[0.028519922867417,0.033405967056751,0.035491790622473],[-0.059201296418905,-0.033868961036205,-0.022888690233231]],[[-0.026010965928435,-0.11319424211979,0.066085919737816],[-0.020190946757793,0.031516261398792,0.024481143802404],[0.035893354564905,0.063898220658302,0.031152717769146]],[[0.14374814927578,0.21443530917168,0.082164816558361],[-0.078413538634777,-0.03920990973711,-0.011174868792295],[-0.070487558841705,-0.18329659104347,-0.093559615314007]],[[0.065353840589523,0.025966787710786,0.0066539645195007],[-0.012749036774039,-0.048462972044945,0.026641489937901],[0.09888619184494,-0.01302947755903,0.045179486274719]],[[0.097445160150528,-0.016369439661503,0.01783031783998],[-0.039767947047949,-0.11103603988886,-0.089613676071167],[-0.017399724572897,0.03344939276576,0.12206545472145]],[[0.030591744929552,0.074577994644642,0.060453526675701],[0.029297847300768,0.039378993213177,-0.043120745569468],[-0.029420584440231,-0.043259523808956,0.0057546347379684]],[[-0.16666147112846,0.026163198053837,0.04013791680336],[0.021223798394203,0.077723652124405,-0.04525938257575],[-0.014754788018763,-0.060523137450218,-0.069271296262741]],[[0.0078557692468166,0.061323646456003,-0.11338160932064],[-0.076358459889889,0.0086929267272353,0.0042885555885732],[-0.084167897701263,-0.0021899936255068,0.043447453528643]]],[[[-0.053019493818283,-0.064898528158665,0.059507369995117],[-0.017305623739958,0.098285026848316,0.015197921544313],[-0.038460973650217,0.13248048722744,0.037748821079731]],[[0.042474396526814,0.075933963060379,-0.043673794716597],[0.033911265432835,0.033788233995438,-0.10194551199675],[-0.03574537858367,-0.0050513995811343,-0.20508620142937]],[[0.08696623891592,-0.0037393323145807,-0.1071445196867],[-0.13703101873398,0.19808453321457,0.026708539575338],[0.14508202672005,-0.039196580648422,-0.095502533018589]],[[-0.11231429874897,0.094451479613781,0.0044587524607778],[0.2199983894825,-0.091218866407871,0.048503629863262],[0.12245894223452,-0.0292091909796,0.012166085653007]],[[0.18720933794975,0.030250411480665,0.043293010443449],[-0.10471244901419,-0.06199187040329,-0.012870164588094],[-0.029951043426991,0.066298298537731,-0.035885639488697]],[[-0.15921841561794,-0.42593762278557,-0.089475564658642],[0.030306512489915,0.079739086329937,0.035387754440308],[0.025460751727223,0.059350430965424,0.079651698470116]],[[0.071301214396954,0.0061702290549874,-0.088471360504627],[-0.026714477688074,0.027755293995142,0.077597565948963],[0.071212872862816,-0.21722786128521,-0.011161468923092]],[[-0.0026696582790464,0.15070512890816,0.048303160816431],[0.12194861471653,-0.12332002818584,0.069417990744114],[0.089884497225285,-0.040757395327091,-0.0081701474264264]],[[-0.07465161383152,-0.065521329641342,0.17175231873989],[0.0049226377159357,0.087582364678383,0.21473678946495],[-0.084281109273434,-0.027245875447989,0.035848673433065]],[[-0.14452585577965,-0.06533819437027,0.016014155000448],[-0.044986549764872,0.095500372350216,0.13415540754795],[0.043890345841646,0.017169883474708,-0.043095011264086]],[[-0.10087868571281,-0.31808963418007,-0.27426499128342],[0.078290246427059,-0.175576582551,0.13413587212563],[-0.052038211375475,-0.01418468169868,0.094632245600224]],[[-0.020056672394276,-0.19385850429535,0.091226622462273],[-0.28248649835587,-0.19553215801716,0.05794258415699],[0.12367228418589,0.1065234541893,0.16498500108719]],[[-0.15081943571568,0.017197988927364,0.20034945011139],[0.0027730807196349,0.0023176020476967,-0.048542574048042],[0.18956542015076,0.077677980065346,-0.032955020666122]],[[-0.10607602447271,0.10785629600286,0.063415929675102],[0.08980168402195,0.0097614638507366,-0.082895360887051],[0.1450287103653,0.02924800477922,0.0060591967776418]],[[-0.020691057667136,-0.010825509205461,0.095757521688938],[-0.20730164647102,-0.010101158171892,-0.057772882282734],[-0.06814806163311,-0.029707845300436,0.083886854350567]],[[-0.075362920761108,0.037811942398548,0.18572247028351],[-0.14848318696022,0.099022589623928,-0.020368980243802],[-0.10100440680981,0.080857992172241,0.096795052289963]],[[0.0092115215957165,-0.10841123759747,0.037842378020287],[0.043462090194225,0.041796509176493,-0.15112337470055],[0.033891677856445,-0.025951905176044,0.14824511110783]],[[0.081759169697762,0.24958357214928,0.093601442873478],[0.059560317546129,0.010283529758453,-0.052830670028925],[-0.15505719184875,0.036723334342241,-0.19804008305073]],[[0.058501146733761,0.11998402327299,-0.055274628102779],[0.065337181091309,0.0065945265814662,-0.032682429999113],[-0.060296040028334,-0.0075994124636054,0.050105448812246]],[[0.077242657542229,0.10730876028538,-0.12354352325201],[0.020167721435428,-0.046646632254124,0.16389639675617],[0.10424342006445,0.032236397266388,-0.12206776440144]],[[-0.14271394908428,-0.11749719828367,0.10151353478432],[-0.031179023906589,0.055643033236265,0.054587937891483],[-0.0070916227996349,-0.044453419744968,0.064440347254276]],[[-0.053759574890137,-0.13595154881477,-0.081654883921146],[0.12500564754009,-0.014092101715505,0.026358978822827],[-0.17242121696472,0.28058886528015,-0.16645205020905]],[[-0.02203518897295,0.016209300607443,-0.11473196744919],[0.044121634215117,0.20199823379517,0.17809092998505],[0.087560869753361,-0.041702471673489,-0.13618677854538]],[[0.00012095736019546,-0.18366011977196,-0.27320274710655],[-0.050806891173124,-0.011334034614265,-0.012701230123639],[0.17296414077282,0.19866019487381,0.020559392869473]],[[0.074087053537369,-0.11446948349476,-0.23385328054428],[-0.057765424251556,-0.028810681775212,-0.011048554442823],[-0.023394601419568,0.086481474339962,-0.080572620034218]],[[0.092086113989353,-0.048428725451231,-0.0082234889268875],[0.057011194527149,-0.083505168557167,0.0389144718647],[-0.084157593548298,0.14254559576511,-0.096208862960339]],[[-0.025849752128124,-0.069988571107388,0.060283347964287],[0.022225009277463,0.085593365132809,-0.035794049501419],[-0.083478465676308,0.04795454069972,-0.20729924738407]],[[-0.13476426899433,0.19113713502884,0.10778168588877],[0.15285268425941,-0.091457225382328,-0.0056739980354905],[-0.03981152549386,-0.028640702366829,-0.0047349836677313]],[[-0.14365530014038,-0.18297228217125,0.028335804119706],[0.071975857019424,0.013850771822035,0.040852271020412],[0.031788107007742,0.1987891793251,0.16693723201752]],[[0.066364742815495,0.08998791873455,-0.014553051441908],[0.14171107113361,0.079371444880962,-0.043011106550694],[-0.044435866177082,-0.020800076425076,-0.017952658236027]],[[0.084098726511002,-0.31560033559799,-0.002764844102785],[0.23434227705002,0.015266441740096,0.011262553744018],[-0.15461371839046,0.0096178110688925,0.11273791640997]],[[0.012360989116132,0.10117825120687,-0.075224287807941],[0.038349896669388,0.039096657186747,-0.058106515556574],[0.063969135284424,-0.10406784713268,-0.090446308255196]]],[[[-0.068606406450272,-0.034698970615864,-0.017123686149716],[-0.091863170266151,0.052956651896238,-0.038267191499472],[-0.015387922525406,-0.014418442733586,-0.035689942538738]],[[-0.18620039522648,-0.049342159181833,0.053215257823467],[-0.079357266426086,-0.045712504535913,-0.036199264228344],[0.025139587000012,-0.088819600641727,-0.067428596317768]],[[0.057925533503294,-0.070555314421654,-0.079598069190979],[0.18829657137394,0.016612062230706,-0.048503331840038],[-0.10931658744812,-0.031030725687742,0.035080306231976]],[[0.027100637555122,-0.13338400423527,-0.21839256584644],[0.099761016666889,-0.020042717456818,0.17587825655937],[0.036310832947493,0.071587294340134,0.1258101016283]],[[0.012181784957647,0.055515345185995,-0.043844148516655],[-0.057238984853029,0.084759399294853,-0.0053137796930969],[0.030340746045113,0.010474453680217,-0.013902745209634]],[[-0.034641236066818,0.093435116112232,-0.033874832093716],[-0.04741794615984,-0.067145653069019,-0.057376712560654],[-0.018058149144053,-0.031702999025583,-0.09051051735878]],[[-0.002702618483454,-0.068438656628132,0.033899802714586],[0.046079825609922,0.030178070068359,-0.0043882271274924],[0.1115502640605,0.011564428918064,-0.11698531359434]],[[-0.0050893006846309,-0.39733174443245,0.054250564426184],[0.010920856148005,-0.028527954593301,0.089844308793545],[0.0099177453666925,0.00081513094482943,0.024560498073697]],[[-0.0044032940641046,-0.065367117524147,-0.11119173467159],[-0.055000770837069,-0.091168187558651,-0.061233974993229],[-0.11829606443644,-0.11047924309969,0.13180036842823]],[[0.025252697989345,0.1493075042963,0.079500414431095],[-0.11890053749084,0.022047577425838,-0.13014535605907],[-0.1131905913353,0.039502907544374,-0.19559392333031]],[[0.16364726424217,-0.1047743037343,-0.031539428979158],[-0.099705055356026,0.10595779120922,0.0132363922894],[0.048547931015491,0.11563698202372,-0.015697062015533]],[[0.0093717509880662,0.083682991564274,0.046109393239021],[-0.11976487934589,0.096984252333641,-0.028590625151992],[0.070912264287472,0.041563469916582,0.10907889902592]],[[-0.075195111334324,-0.036510270088911,0.062942855060101],[-0.18145051598549,-0.082612670958042,-0.0085671208798885],[0.0086853737011552,-0.027220347896218,0.083635717630386]],[[-0.16317005455494,-0.042611882090569,-0.016289187595248],[-0.043583292514086,0.08486619591713,0.15521858632565],[-0.018853835761547,0.074534006416798,0.16098430752754]],[[-0.14431548118591,-0.037182625383139,-0.0011464741546661],[-0.11920193582773,0.024597998708487,-0.0026904491242021],[0.16228276491165,0.14883768558502,0.052906561642885]],[[-0.10499726980925,0.16567794978619,0.079182676970959],[0.14609187841415,-0.038996998220682,-0.0066386270336807],[0.034449454396963,0.0097693260759115,-0.092954754829407]],[[0.048003669828176,0.093400217592716,-0.046367898583412],[-0.17779697477818,0.082272462546825,-0.049260001629591],[-0.17025198042393,0.014302410185337,-0.013067473657429]],[[0.054512482136488,0.039695061743259,0.0035947561264038],[-0.098133102059364,-0.011117302812636,-0.00054915930377319],[0.0065811509266496,-0.022295346483588,-0.012724183499813]],[[0.00088195968419313,-0.039455242455006,-0.050928752869368],[0.1281524002552,-0.0030219308100641,0.020664652809501],[0.038428012281656,-0.16885669529438,0.057842496782541]],[[-0.048459578305483,-0.10999417304993,0.13790041208267],[0.06231677532196,0.11071386188269,0.02024488337338],[-0.11500899493694,0.10044945776463,-0.1685646623373]],[[-0.13090649247169,0.03831098228693,-0.074463151395321],[-0.16119457781315,-0.023742761462927,-0.027497440576553],[-0.11164933443069,0.10311277210712,-0.074612110853195]],[[0.15794095396996,-0.012976266443729,0.096115343272686],[0.060480404645205,-0.018818140029907,-0.1261300444603],[0.060918238013983,0.096085101366043,0.018864192068577]],[[-0.20212858915329,0.014296917244792,-0.12249822169542],[-0.092967875301838,0.0093498537316918,0.23353385925293],[0.2034700512886,-0.18920503556728,0.079733774065971]],[[0.077200755476952,0.069027528166771,-0.060256779193878],[0.068029835820198,-0.022310020402074,-0.17558211088181],[0.16868110001087,-0.046905983239412,-0.12418996542692]],[[-0.0040819505229592,0.1159845367074,-0.00064252380980179],[0.13766929507256,-0.024454310536385,-0.0065321060828865],[-0.085187777876854,0.029896553605795,-0.034689292311668]],[[-0.011443919502199,-0.020966442301869,-0.11042399704456],[0.0035560699179769,0.096704639494419,0.041937336325645],[0.13615573942661,-0.084944933652878,0.10625845193863]],[[-0.053874675184488,0.033564407378435,0.13810104131699],[-0.1502939760685,-0.05638824403286,0.13602803647518],[-0.089508645236492,-0.021909438073635,0.011918695643544]],[[-0.16617240011692,-0.032796673476696,-0.037520587444305],[0.016049368306994,-0.037247367203236,0.088193789124489],[-0.055379617959261,-0.080867655575275,-0.021033514291048]],[[0.079976364970207,-0.018386693671346,-0.11565192043781],[-0.033091735094786,-0.064277000725269,-0.015610232949257],[-0.0048403982073069,-0.034618277102709,0.036876320838928]],[[-0.022009303793311,0.0074051879346371,0.063451491296291],[0.021342203021049,-0.10666776448488,0.057634800672531],[-0.12396696209908,0.0066972179338336,0.13999176025391]],[[0.013012303039432,-0.0038489461876452,-0.09750871360302],[0.020123468711972,0.087384037673473,0.1575602889061],[-0.080663621425629,0.099555619060993,0.0040218499489129]],[[0.04223907738924,-0.058510307222605,0.061558809131384],[0.0019656873773783,0.00021907115296926,0.024292984977365],[0.026341214776039,-0.018192542716861,-0.061598770320415]]],[[[-0.20179718732834,-0.049214474856853,-0.030918538570404],[-0.16613040864468,0.1566369086504,-0.035816375166178],[0.057389054447412,0.050243310630322,-0.028191698715091]],[[0.085555218160152,0.030759206041694,0.017025826498866],[0.029265811666846,0.056160751730204,-0.031507860869169],[-0.043361525982618,-0.050022549927235,-0.01302881911397]],[[-0.022837195545435,0.042177677154541,-0.053585074841976],[0.079233005642891,-0.090242877602577,-0.055703524500132],[-0.064836777746677,0.048869099467993,0.07289332896471]],[[-0.064261585474014,0.032797481864691,0.069815792143345],[-0.36695501208305,-0.11265382170677,0.041483383625746],[0.12953291833401,0.14509077370167,0.021535083651543]],[[-0.027756145223975,-0.072891414165497,0.042701233178377],[-0.08307871222496,0.10139397531748,0.087532982230186],[0.11073958873749,-0.076977767050266,-0.076025947928429]],[[-0.0021373834460974,-0.060918115079403,0.068732678890228],[-0.17140460014343,0.13373866677284,0.053924981504679],[0.012791380286217,0.053507331758738,0.0094343814998865]],[[0.11787369847298,0.014055321924388,0.028161618858576],[0.0017057670047507,-0.31010472774506,0.017162807285786],[-0.029821310192347,-0.17259120941162,0.027453165501356]],[[-0.16840372979641,0.090326197445393,-0.13574686646461],[-0.077421352267265,0.11504217982292,0.028100641444325],[0.014658794738352,0.19453164935112,-0.081971436738968]],[[0.0071117184124887,-0.018755719065666,0.010519414208829],[0.023878131061792,0.0045725600793958,0.023775709792972],[-0.055942211300135,-0.02802905626595,-0.0054084854200482]],[[-0.030142944306135,-0.071027532219887,0.069619037210941],[-0.0050332411192358,0.056383047252893,-0.024572607129812],[0.10584297776222,-0.18587873876095,0.063522830605507]],[[-0.012257052585483,-0.1132690384984,0.046878580003977],[-0.050873149186373,-0.088667929172516,0.059987861663103],[0.011337175033987,0.044874560087919,-0.040102362632751]],[[-0.0392683185637,0.13045608997345,-0.018018806353211],[0.082132525742054,0.015894452109933,0.018454691395164],[-0.076149351894855,0.076250821352005,-0.05162201821804]],[[0.0050060958601534,-0.030141608789563,-0.13050438463688],[0.082845754921436,0.17300714552402,-0.05204065144062],[0.031488031148911,-0.092529319226742,0.037193439900875]],[[-0.067768543958664,0.081551551818848,0.063611999154091],[-0.17403720319271,-0.22060887515545,0.054251477122307],[0.074128314852715,0.14974685013294,0.0135562364012]],[[-0.0057505932636559,0.062598362565041,0.015791675075889],[0.025766141712666,0.036970771849155,-0.014675068669021],[0.0029248436912894,-0.045922946184874,-0.081221401691437]],[[-0.093284845352173,-0.014678213745356,0.04364113509655],[-0.12512961030006,0.11492265760899,0.17707592248917],[-0.091158241033554,0.16745881736279,-0.089712247252464]],[[0.11487368494272,0.0027780910022557,-0.018173506483436],[0.2073100656271,-0.10136476159096,-0.1398171633482],[-0.088865727186203,-0.15948981046677,0.032756939530373]],[[0.0082414001226425,0.03334591165185,0.022546116262674],[0.082974150776863,0.0015510258963332,-0.085105836391449],[0.11301001906395,-0.042062100023031,-0.070237807929516]],[[-0.12813033163548,-0.12798485159874,-0.10378100723028],[0.065983459353447,-0.034888163208961,0.078656204044819],[0.1242577880621,-0.080032482743263,0.019946310669184]],[[-0.0082190958783031,-0.14999474585056,-0.0069837910123169],[-0.036733135581017,-0.14367981255054,0.022848919034004],[0.039657820016146,-0.061994023621082,0.067678153514862]],[[-0.032729420810938,0.043768383562565,0.089245438575745],[0.092891603708267,0.018587596714497,-0.0071619879454374],[-0.093582935631275,-0.10006189346313,-0.15920217335224]],[[0.0020904568955302,-0.13427998125553,0.064336232841015],[-0.1332686394453,0.08307383954525,0.26555863022804],[0.061113733798265,-0.039955660700798,-0.1223379150033]],[[-0.0099120521917939,0.029276004061103,0.028879035264254],[0.010543488897383,-0.14500851929188,-0.0090347621589899],[-0.038542415946722,-0.0010265405289829,0.098054334521294]],[[0.15778231620789,-0.11883883178234,0.024370988830924],[0.079248055815697,-0.053060237318277,0.057411827147007],[-0.030082097277045,-0.039247076958418,-0.059676930308342]],[[-0.1028346195817,-0.056284982711077,-0.00065324595198035],[-0.073356360197067,-0.014462290331721,-0.12258061021566],[-0.056409735232592,-0.045293863862753,-0.045679185539484]],[[0.12054813653231,-0.18392306566238,-0.08777441829443],[-0.040057439357042,-0.099449396133423,0.085266783833504],[-0.14138884842396,-0.0052889492362738,0.13575573265553]],[[-0.075584657490253,-0.071981146931648,0.0051110619679093],[-0.016050474718213,0.015991982072592,0.092848181724548],[0.0050253486260772,0.097453512251377,-0.013473069295287]],[[-0.03963391110301,0.032729111611843,0.025778455659747],[0.025559032335877,0.16372615098953,0.026511698961258],[-0.082948058843613,-0.18624486029148,-0.083990670740604]],[[0.034914683550596,0.044977113604546,0.038086831569672],[0.0099649541079998,-0.088920250535011,0.064591936767101],[-0.097946539521217,-0.023239629343152,0.040028210729361]],[[-0.024642206728458,-0.01582894474268,-0.09120237827301],[0.013282945379615,-0.013288333080709,0.017091814428568],[0.027346879243851,0.055630028247833,0.051750235259533]],[[-0.083245031535625,0.015414563938975,-0.091629602015018],[-0.060699667781591,0.001453171367757,-0.010498747229576],[0.0025461330078542,0.035087332129478,0.27574068307877]],[[-0.079410016536713,0.035885773599148,-0.1812322884798],[0.19941858947277,0.012729154899716,-0.026148896664381],[0.10773579031229,-0.031577799469233,-0.079470679163933]]],[[[0.16164973378181,0.058844219893217,0.1264703720808],[0.0085934512317181,-0.018958233296871,-0.062190875411034],[-0.049180582165718,-0.0089197158813477,0.11884823441505]],[[0.091232866048813,-0.045380059629679,0.10469330847263],[-0.045431096106768,-0.070253893733025,0.031160840764642],[0.025983020663261,0.023108664900064,-0.070738308131695]],[[0.076061837375164,0.049000229686499,0.015422850847244],[-0.066512636840343,0.047524027526379,0.068686708807945],[0.080683805048466,0.11893045157194,0.034693233668804]],[[0.071461722254753,-0.087028324604034,0.12212409079075],[0.16692684590816,0.066309921443462,-0.096591591835022],[-0.14730189740658,-0.1264241039753,0.053803838789463]],[[-0.10681391507387,-0.0061944900080562,-0.024253960698843],[-0.11107421666384,0.083363048732281,-0.1012542322278],[0.035191852599382,0.034629188477993,0.026917170733213]],[[0.20742902159691,-0.00037214311305434,0.14011013507843],[0.035257402807474,-0.065967865288258,-0.058923285454512],[-0.11141519248486,0.014408275485039,0.1693799495697]],[[0.27869018912315,0.062245324254036,0.12088868021965],[0.11970757693052,-0.17777268588543,0.0040505863726139],[-0.08667466789484,-0.089586213231087,-0.019700489938259]],[[0.081741221249104,0.059740673750639,-0.071677342057228],[-0.0030562251340598,0.11164578795433,-0.09614934772253],[0.097062528133392,0.042021978646517,0.0035317153669894]],[[-0.030313950031996,0.044547785073519,0.022878162562847],[-0.075015380978584,0.054011791944504,-0.10058512538671],[-0.10463351756334,0.043378751724958,0.020438360050321]],[[0.11778704822063,-0.15830624103546,-0.10812992602587],[0.079769916832447,0.17778803408146,0.19356562197208],[0.035177551209927,0.025902979075909,-0.035700168460608]],[[-0.013220294378698,0.026386080309749,-0.10524030029774],[-0.11204135417938,-0.084173567593098,0.024339094758034],[-0.015156753361225,0.013467713259161,0.086632661521435]],[[0.13202740252018,0.21155388653278,-0.040085501968861],[-0.1136242672801,-0.024949843063951,0.12531752884388],[-0.15801648795605,-0.064012408256531,-0.099513031542301]],[[0.21133077144623,-0.0018784032436088,0.11915375292301],[0.069185331463814,0.11964421719313,0.07912939786911],[-0.19561994075775,-0.1218546256423,-0.16614191234112]],[[-0.092430882155895,-0.017088761553168,0.1197954416275],[-0.044371504336596,-0.094101116061211,0.059564162045717],[-0.037620048969984,0.087444975972176,-0.026986073702574]],[[0.14159095287323,-0.013534484431148,0.020701268687844],[-0.048037137836218,0.024165149778128,0.00090127711882815],[-0.084709130227566,-0.05700471624732,-0.013880034908652]],[[-0.24542878568172,0.0062917023897171,-0.034342542290688],[0.016851652413607,0.11275216192007,0.094873622059822],[-0.063493967056274,0.043917708098888,-0.0020177774131298]],[[0.0428964830935,-0.040903590619564,0.0041128797456622],[0.026432627812028,-0.12822157144547,0.14889146387577],[0.10463712364435,-0.026109216734767,-0.050254344940186]],[[-0.25778138637543,-0.09166294336319,-0.1505558937788],[0.10886683315039,-0.041084755212069,0.012054256163538],[0.083482012152672,0.063634686172009,0.096654370427132]],[[-0.071666143834591,-0.060444969683886,-0.19009655714035],[0.047538593411446,-0.028373451903462,0.042654734104872],[-0.076108194887638,-0.15553420782089,-0.24742153286934]],[[-0.016614688560367,-0.11984369158745,0.051334157586098],[-0.01143940910697,0.10075925290585,0.034629821777344],[-0.13296531140804,0.032052427530289,0.021116636693478]],[[0.10314965993166,0.069713763892651,0.013505863025784],[0.12965010106564,0.069502949714661,-0.045848194509745],[0.13825204968452,0.01249121222645,0.033771246671677]],[[0.13892836868763,0.039758808910847,0.10796765983105],[-0.17728346586227,-0.14617156982422,0.061907172203064],[-0.13141249120235,0.13574902713299,0.22402477264404]],[[-0.02335880883038,0.070477046072483,-0.01148859038949],[-0.03673928976059,0.035132620483637,-0.13726119697094],[0.22970665991306,-0.058909457176924,-0.10834151506424]],[[-0.20589092373848,-0.214370444417,-0.12441653013229],[-0.047788571566343,-0.096615791320801,0.12712518870831],[0.11702633649111,0.023736838251352,0.060631237924099]],[[-0.18513083457947,0.053152289241552,-0.042708154767752],[-0.24532940983772,-0.07066272944212,-0.10413081198931],[-0.051889445632696,0.026478299871087,-0.21243615448475]],[[0.18271547555923,0.086733721196651,-0.0045590875670314],[-0.020587462931871,-0.068071849644184,-0.0082368329167366],[0.0069253128021955,0.15221647918224,0.11818355321884]],[[-0.046451173722744,-0.04634952172637,-0.087264880537987],[0.058541364967823,0.0083646718412638,0.10841701179743],[0.019960884004831,-0.047205038368702,0.020149251446128]],[[-0.17314431071281,-0.027875546365976,-0.028569862246513],[0.042787376791239,0.1991086602211,0.12568834424019],[-0.081400014460087,-0.038880079984665,-0.12433803826571]],[[0.010645353235304,0.075396686792374,0.040835674852133],[-0.10929800570011,-0.1708093136549,-0.0042271856218576],[0.049558535218239,-0.050453297793865,0.037023972719908]],[[-0.042620323598385,0.0169727075845,0.011812883429229],[0.013843644410372,-0.026695707812905,0.075184889137745],[0.079836443066597,-0.17901153862476,-0.09490417689085]],[[-0.0029751749243587,0.013745103962719,-0.017151776701212],[-0.045929282903671,0.10125044733286,0.033326126635075],[-0.18761195242405,0.054861158132553,-0.10206062346697]],[[-0.29285481572151,-0.055482469499111,0.074540689587593],[0.0028702158015221,-0.14507937431335,-0.07468793541193],[-0.22264596819878,-0.10394339263439,0.12115792930126]]],[[[-0.029639810323715,-0.044049508869648,0.087391011416912],[-0.050683993846178,-0.062110103666782,0.14080210030079],[0.067864552140236,-0.23567579686642,-0.10647016018629]],[[0.019847253337502,-0.090342082083225,0.037441652268171],[-0.051838204264641,0.038127951323986,0.057097733020782],[0.020120901986957,0.051820408552885,-0.0097569050267339]],[[0.10846959799528,-0.06502977013588,0.23819264769554],[0.12430340051651,0.10046970844269,0.071574673056602],[0.20649303495884,0.024399872869253,-0.15814715623856]],[[-0.014575922861695,0.068091362714767,0.094633728265762],[-0.011592482216656,0.13045009970665,0.031431712210178],[-0.16434495151043,0.12586462497711,0.052568554878235]],[[0.0029226723127067,0.13205184042454,-0.019586801528931],[-0.038887087255716,0.11566109210253,-0.024583438411355],[-0.17415583133698,-0.0078410534188151,-0.082652971148491]],[[-0.18617637455463,-0.06017480045557,0.13688907027245],[-0.044781155884266,-0.13810005784035,0.25042948126793],[-0.10746916383505,-0.036171123385429,0.15596342086792]],[[0.046046387404203,0.19316439330578,-0.026449641212821],[-0.021494163200259,0.17291101813316,-0.11264280974865],[-0.28881657123566,-0.0096821039915085,-0.21528415381908]],[[-0.022744409739971,0.0034013816621155,-0.0257703140378],[0.0011948471656069,-0.0022716228850186,0.081759452819824],[-0.10798081755638,-0.054829806089401,0.12519244849682]],[[0.011582207866013,0.1790885925293,-0.10620883852243],[0.1196127012372,-0.06463623046875,0.010650613345206],[-0.043044369667768,-0.033500570803881,-0.080794118344784]],[[0.043335352092981,0.12353084236383,0.087502382695675],[-0.060751412063837,-0.084299623966217,-0.086962945759296],[0.084061689674854,0.2194929420948,0.084922008216381]],[[0.012279601767659,-0.030395893380046,0.014126650989056],[-0.098712109029293,-0.068446457386017,-0.059747587889433],[0.085727833211422,-0.14424057304859,0.032336622476578]],[[0.080620899796486,0.089837834239006,-0.06299401819706],[0.087040364742279,-0.057072386145592,0.047561395913363],[0.152708157897,0.0052714855410159,0.049909994006157]],[[-0.10983495414257,-0.09490741789341,0.063756436109543],[0.010280990973115,0.012470191344619,-0.0022956791799515],[-0.24516993761063,0.064739443361759,-0.22750954329967]],[[-0.045211005955935,-0.042553052306175,-0.013849635608494],[0.080298133194447,0.12472465634346,-0.10196118056774],[-0.0063378624618053,-0.0042296396568418,0.023354528471828]],[[-0.0036195588763803,0.096797063946724,-0.07475757598877],[-0.024049628525972,0.082104369997978,-0.043891049921513],[-0.032206133008003,0.015361637808383,0.037288915365934]],[[-0.10911197215319,0.10472425073385,0.19380857050419],[0.10687271505594,-0.1333389878273,0.022146124392748],[-0.15755791962147,0.097640633583069,0.27784809470177]],[[0.086982898414135,-0.060493782162666,-0.014689066447318],[0.13426513969898,-0.01290825009346,-0.031710006296635],[-0.032986171543598,-0.075558938086033,-0.0024398467503488]],[[-0.016094744205475,0.056426748633385,-0.079288125038147],[-0.086548045277596,0.033639624714851,-0.0307976603508],[-0.071529977023602,-0.010705639608204,-0.048367708921432]],[[-0.0059905000962317,-0.21002179384232,-0.17671526968479],[0.10930269956589,0.054129604250193,-0.24973069131374],[-0.11491376161575,-0.15425211191177,-0.15699380636215]],[[-0.095983110368252,-0.096886433660984,0.068023391067982],[-0.013533284887671,-0.033975169062614,-0.083406485617161],[0.0031581479124725,0.013984601013362,-0.079225055873394]],[[-0.020021384581923,-0.091202922165394,0.14224797487259],[-0.26886573433876,0.071645684540272,-0.036073792725801],[-0.037952903658152,-0.046175792813301,0.10058677941561]],[[-0.027448482811451,0.032750267535448,0.051353309303522],[-0.07599314302206,-0.17611293494701,0.020066898316145],[0.11068543046713,-0.22918435931206,0.034552533179522]],[[0.032506670802832,-0.0060836863704026,0.07789783924818],[-0.054966881871223,-0.11308112740517,-0.13865871727467],[-0.044435631483793,0.026174610480666,0.012473778799176]],[[-0.16912357509136,0.065327569842339,-0.041081786155701],[-0.11527714878321,-0.11818668991327,0.030282016843557],[-0.12607568502426,-0.13377910852432,0.012198613025248]],[[-0.084846153855324,-0.012375249527395,0.0022003564517945],[-0.17872279882431,-0.059303779155016,-0.14597788453102],[0.13051788508892,-0.032826825976372,-0.050253096967936]],[[0.12717570364475,-0.062511466443539,-0.15355734527111],[0.13658767938614,-0.065666384994984,-0.02299545891583],[0.10180442780256,-0.013247964903712,-0.14297132194042]],[[-0.036933496594429,0.10166687518358,0.11461043357849],[0.064986683428288,-0.019231518730521,-0.043503109365702],[-0.01140305493027,0.01057490799576,-0.039649240672588]],[[-0.106121994555,-0.092595160007477,-0.037774834781885],[-0.19349029660225,-0.071019574999809,-0.11862605065107],[-0.08775207400322,0.22969216108322,-0.19661466777325]],[[0.25289863348007,-0.1860863417387,-0.056739173829556],[0.16004148125648,-0.13538002967834,0.075204834342003],[-0.093720361590385,0.039334323257208,0.010705290362239]],[[0.082718290388584,-0.11831933259964,0.076123937964439],[-0.070500127971172,-0.1027839332819,-0.2128731906414],[-0.071014299988747,-0.020218461751938,0.013772765174508]],[[0.068456716835499,-0.024127785116434,0.10934799909592],[-0.11643666028976,0.00022926880046725,-0.02241394855082],[-0.052795119583607,-0.16229310631752,0.026631766930223]],[[0.045352216809988,-0.15083143115044,-0.037873234599829],[0.16914309561253,0.054378759115934,0.08834682404995],[0.0052914223633707,-0.097563453018665,-0.26524066925049]]],[[[0.050078399479389,0.051202248781919,-0.07922501116991],[0.055410303175449,-0.21622970700264,0.064033642411232],[0.036707278341055,-0.10224340111017,-0.075463831424713]],[[-0.049140494316816,-0.04545059427619,0.058801483362913],[0.097340174019337,0.038540191948414,-0.019871396943927],[-0.063051350414753,0.059100087732077,0.047697275876999]],[[0.11286436021328,0.065281130373478,-0.0066133411601186],[0.03942583873868,0.040755152702332,-0.076988697052002],[-0.070517361164093,-0.052079070359468,-0.047083154320717]],[[0.23617021739483,-0.027485199272633,-0.0061028888449073],[0.17171660065651,-0.13902278244495,-0.086846254765987],[0.056253295391798,-0.08139593154192,-0.047852799296379]],[[0.040702220052481,0.077673360705376,-0.008074794895947],[-0.078350000083447,0.014651597477496,-0.078167848289013],[-0.096798270940781,0.0037123884540051,-0.014470946975052]],[[0.16520434617996,0.13145259022713,-0.13379500806332],[-0.093335598707199,0.043945319950581,-0.16443242132664],[-0.072941891849041,-0.018908716738224,-0.079792030155659]],[[0.036990750581026,0.041229493916035,-0.094850741326809],[0.026183716952801,0.036546774208546,-0.057422116398811],[0.12824191153049,0.072700314223766,-0.041051886975765]],[[0.11503206938505,-0.082717694342136,-0.015804816037416],[0.16412533819675,-0.058556627482176,0.14363104104996],[-0.069707319140434,-0.024363690987229,0.047209799289703]],[[0.14027726650238,0.11576274037361,-0.075211696326733],[-0.060306567698717,-0.12458258122206,0.0052350284531713],[-0.042461968958378,0.16023805737495,-0.0095608681440353]],[[-0.048862896859646,0.030549576506019,-0.11800989508629],[-0.00058211589930579,-0.043573338538408,-0.012170531786978],[-0.098597869277,0.10379104316235,0.020208744332194]],[[-0.082905769348145,-0.0086505701765418,0.070935815572739],[-0.16029088199139,0.043158330023289,0.001791343674995],[0.0082023395225406,-0.035115007311106,-0.040810260921717]],[[-0.035945139825344,-0.17709974944592,-0.14335766434669],[0.0039030506741256,0.023996293544769,-0.081372313201427],[0.10481829196215,0.052910704165697,0.023599961772561]],[[-0.063626006245613,0.047714963555336,0.0099238492548466],[-0.063941150903702,-0.11807660013437,0.009896844625473],[-0.043322172015905,0.13332150876522,0.019870953634381]],[[0.18415632843971,-0.024418683722615,-0.25058045983315],[0.16511413455009,-0.031873818486929,-0.14436908066273],[0.011915873736143,-0.14788360893726,-0.29982975125313]],[[-0.046741407364607,0.097248636186123,-0.066937908530235],[-0.039730373769999,0.0044424398802221,0.013599288649857],[-0.025399317964911,0.031303912401199,-0.034434471279383]],[[0.26729568839073,-0.073498338460922,0.0088021485134959],[-0.16447946429253,0.027459179982543,0.034439604729414],[-0.093486852943897,-0.051902323961258,0.076122127473354]],[[-0.17935407161713,-0.053394433110952,-0.011340167373419],[0.15819919109344,-0.0011375298490748,0.036158639937639],[0.15018613636494,0.052129950374365,0.0058976421132684]],[[-0.090354487299919,-0.0014331060228869,0.044239994138479],[-0.21291755139828,-0.13225848972797,0.13437701761723],[-0.10429364442825,-0.0041362601332366,0.081614919006824]],[[0.07724504172802,0.12479144334793,-0.048276606947184],[-0.010708193294704,-0.0065449611283839,-0.0024188321549445],[0.045405142009258,0.019132379442453,-0.087600693106651]],[[0.080834716558456,-0.16548700630665,0.088386744260788],[-0.035625290125608,-0.13466772437096,-0.036357525736094],[0.079563841223717,0.0061327023431659,-0.02800503000617]],[[-0.10109644383192,0.061881940811872,0.082891002297401],[-0.085644528269768,0.053607292473316,0.065897978842258],[-0.0023227375932038,0.030891481786966,0.039122045040131]],[[-0.089003250002861,0.027679391205311,-0.050435770303011],[-0.050668343901634,0.075269252061844,0.011535233817995],[-0.13991832733154,0.011074234731495,-0.07192375510931]],[[-0.0078614093363285,-0.12741088867188,0.11036664247513],[0.10960480570793,0.02749165520072,-0.045876353979111],[-0.078150652348995,-0.0017608681228012,0.048266187310219]],[[0.11014590412378,0.061507068574429,-0.15106949210167],[-0.1321534216404,-0.029559571295977,-0.27333894371986],[0.11970176547766,0.0034146024845541,-0.0620345659554]],[[0.062147788703442,0.11224039644003,-0.14588990807533],[-0.074633792042732,0.025552147999406,0.014205735176802],[0.063413038849831,0.011069463565946,0.073779918253422]],[[-0.015277199447155,0.16070353984833,-0.095305502414703],[0.088538631796837,0.061260852962732,0.059988703578711],[-0.061560221016407,-0.044313199818134,0.0056619336828589]],[[0.01381560228765,0.040129624307156,-0.027815256267786],[-0.038805726915598,-0.03254296630621,0.0090144667774439],[-0.033698417246342,0.019378233700991,0.014225768856704]],[[-0.090426601469517,-0.062895424664021,0.11157236248255],[-0.039465632289648,0.10682932287455,0.103933788836],[-0.081529952585697,0.042774677276611,-0.039017163217068]],[[0.045879442244768,-0.053465776145458,0.0093338051810861],[-0.072149135172367,0.13597649335861,-0.19424633681774],[0.08446491509676,0.070644654333591,-0.032456621527672]],[[-0.075909964740276,-0.019127041101456,0.047357175499201],[0.045738242566586,-0.032367676496506,-0.018753575161099],[0.076773710548878,0.026551386341453,-0.025497598573565]],[[0.00024364252749365,-0.14651355147362,0.070261545479298],[0.0196762830019,-0.20045025646687,-0.045757796615362],[0.05236080288887,0.069874607026577,0.071961544454098]],[[-0.2396350055933,0.012689775787294,0.0018240816425532],[-0.05457503721118,0.052993651479483,-0.043481905013323],[-0.11440092325211,0.059451393783092,-0.089280255138874]]],[[[-0.05303331092,-0.11286058276892,-0.17258967459202],[0.011288844980299,-0.016113309189677,0.024803018197417],[-0.059182912111282,-0.096446208655834,-0.04529482871294]],[[0.037962041795254,-0.058332145214081,0.020102830603719],[-0.13425645232201,0.019896369427443,0.068757206201553],[0.028111841529608,-0.027636829763651,0.1115535274148]],[[0.1410256922245,0.084480777382851,0.074685275554657],[-0.024518618360162,-0.10809322446585,-0.049533367156982],[-0.026377137750387,0.061303053051233,0.11906804144382]],[[0.1808568239212,0.11239024996758,-0.23034450411797],[0.094538822770119,0.091555193066597,-0.017030699178576],[-0.11062846332788,-0.029111780226231,-0.06695494055748]],[[0.008518123999238,-0.0042506791651249,-0.007792335934937],[-0.011491946876049,0.03437589854002,-0.075511179864407],[0.021417159587145,0.12708142399788,-0.064432919025421]],[[0.12026514858007,-0.16657716035843,-0.16991712152958],[0.11160662770271,-0.0744943395257,0.085505798459053],[-0.070883013308048,-0.12850284576416,-0.24424539506435]],[[0.060159590095282,0.071742482483387,-0.0060584475286305],[-0.11554140597582,-0.04295040667057,0.17862847447395],[-0.069499388337135,0.046395786106586,0.074387691915035]],[[-0.14565409719944,-0.15372283756733,0.12997180223465],[-0.028983915224671,-0.07132039219141,-0.070797421038151],[0.058630220592022,-0.001669138786383,-0.16873067617416]],[[0.025087133049965,0.00054082158021629,-0.20093305408955],[-0.068125151097775,-0.10878202319145,0.09888381510973],[-0.12203089147806,0.079087756574154,0.11187320202589]],[[-0.22458782792091,-0.016119528561831,-0.082144640386105],[0.015584724955261,-0.035774864256382,0.087633155286312],[-0.099057853221893,-0.10851565748453,0.19711874425411]],[[-0.054209768772125,-0.037377964705229,-0.025460820645094],[-0.037593267858028,0.0060197650454938,0.054824884980917],[-0.31314796209335,-0.1305295675993,0.018740121275187]],[[0.026269430294633,-0.040309216827154,-0.087467655539513],[0.017997344955802,0.029396301135421,0.14802534878254],[0.12680540978909,0.0033484741579741,0.059261821210384]],[[-0.01528397668153,-0.00014654781261925,-0.24904190003872],[-0.0033977264538407,-0.24107509851456,-0.064272709190845],[-0.18928165733814,-0.060997981578112,-0.1028400734067]],[[0.068702936172485,0.19948211312294,-0.27577289938927],[0.018816379830241,-0.18394950032234,-0.11444265395403],[0.011346858926117,-0.11311222612858,-0.087022364139557]],[[-0.030510576441884,0.029145767912269,-0.041133016347885],[-0.060091510415077,0.046765491366386,-0.012625060044229],[0.074078984558582,0.0011054706992581,-0.037163753062487]],[[-0.051115825772285,-0.078505948185921,-0.25380030274391],[0.038168575614691,-0.098932676017284,-0.11771453171968],[0.12311048060656,0.084301747381687,-0.012435526587069]],[[0.050173755735159,-0.044978845864534,0.12190037965775],[0.042473286390305,-0.12817685306072,0.12221025675535],[0.0075416075997055,0.010145409032702,0.036935199052095]],[[-0.027094222605228,-0.016229912638664,-0.12879624962807],[-0.10900413990021,-0.09909962117672,0.079598940908909],[-0.16413131356239,-0.14395046234131,0.10890423506498]],[[0.089805498719215,0.087579719722271,0.066705040633678],[0.054863050580025,-0.060878604650497,-0.022863438352942],[-0.14626578986645,-0.057253312319517,0.10596051812172]],[[0.091370090842247,-0.1264803558588,-0.15361063182354],[0.0059932889416814,-0.037863202393055,0.003649827092886],[-0.026982475072145,-0.038405321538448,-0.065062336623669]],[[-0.11455113440752,0.038379445672035,0.06142620742321],[0.018168207257986,0.017326828092337,0.060631599277258],[0.018360249698162,-0.086835898458958,-0.04782522469759]],[[0.14563685655594,-0.056715246289968,-0.094625174999237],[0.14544199407101,0.0094530237838626,0.08935309201479],[0.031951546669006,-0.066100485622883,-0.17117267847061]],[[0.044033467769623,-0.11522763967514,-0.081607960164547],[0.076675489544868,0.11221468448639,-0.03096817061305],[-0.011496214196086,0.00023995370429475,0.040876336395741]],[[-0.22305218875408,-0.085261061787605,-0.06040333211422],[0.074660494923592,-0.13745528459549,-0.028860447928309],[0.054934915155172,-0.012678134255111,0.0080628236755729]],[[-0.046856176108122,-0.16052059829235,-0.0090290121734142],[0.12731939554214,-0.092154607176781,-0.076233960688114],[-0.098310776054859,0.036996524780989,0.12730227410793]],[[0.067149475216866,0.1567075252533,0.10476365685463],[0.087071381509304,0.035100560635328,-0.033652778714895],[0.086476884782314,0.02909548021853,-0.037333536893129]],[[0.027379686012864,-0.074830949306488,0.021863859146833],[-0.047365739941597,-0.0070649781264365,0.021842204034328],[-0.051569383591413,-0.021229075267911,0.014398789964616]],[[0.013541341759264,0.031958229839802,0.054427735507488],[0.087816618382931,0.054476395249367,-0.090799428522587],[-0.016251457855105,0.02546539530158,0.05176954343915]],[[-0.084585353732109,-0.026223497465253,-0.11973915994167],[0.035379994660616,-0.200359582901,-0.10020195692778],[0.2323267608881,-0.068957105278969,-0.050489269196987]],[[0.033065281808376,0.16129156947136,0.05503711476922],[0.05471183359623,-0.0091533623635769,0.0021968968212605],[-0.033174097537994,0.0030238935723901,-0.11928121000528]],[[0.094143606722355,-0.10430351644754,-0.059062041342258],[-0.048603564500809,-0.05027899518609,-0.093197800219059],[0.058644197881222,-0.037517845630646,0.066631816327572]],[[-0.19615657627583,-0.21121303737164,-0.036753386259079],[0.050481237471104,-0.043766386806965,0.0049176039174199],[0.040852382779121,-0.074423037469387,0.068222530186176]]],[[[-0.10661976784468,0.019330499693751,-0.034294754266739],[0.041942495852709,0.06868688762188,0.062757708132267],[0.075502313673496,0.099360920488834,-0.07270148396492]],[[-0.039407908916473,0.01117252651602,-0.017843924462795],[0.061359290033579,0.0031602033413947,0.0323118083179],[0.030238313600421,-0.012957252562046,0.039682701230049]],[[0.096771374344826,0.14510706067085,0.18917471170425],[-0.067347846925259,0.047050260007381,-0.18760386109352],[0.16917769610882,0.26554867625237,-0.11314120143652]],[[-0.065426468849182,-0.31146785616875,0.090096846222878],[0.075481936335564,-0.02994529157877,0.14177232980728],[-0.05251307040453,0.101966381073,0.13333211839199]],[[-0.0090149212628603,0.026711639016867,-0.0094151562079787],[-0.043015919625759,-0.07975834608078,0.092302411794662],[-0.044734749943018,-0.038783267140388,0.024396726861596]],[[-0.28756573796272,0.11891824752092,-0.21665406227112],[0.091740511357784,0.013283046893775,0.038361813873053],[0.057479839771986,0.016917519271374,-0.035630751401186]],[[0.12866604328156,-0.25267153978348,-0.078425168991089],[0.13312214612961,-0.0054223244078457,-0.18445375561714],[-0.11738480627537,-0.071261301636696,-0.29719731211662]],[[0.19192384183407,-0.29040837287903,-0.10302141308784],[-0.05411421507597,-0.010078653693199,0.055995784699917],[0.13867290318012,-0.0036761260125786,-0.025503605604172]],[[-0.012103921733797,-0.066897042095661,-0.05517154186964],[-0.038395144045353,-0.027120541781187,-0.07875357568264],[0.0095513137057424,-0.027703780680895,0.033710654824972]],[[0.09397841989994,-0.014949549920857,-0.034203611314297],[0.050114288926125,-0.0016529834829271,-0.069759055972099],[-0.12689629197121,-0.20289690792561,-0.31225621700287]],[[-0.1088575348258,0.026107709854841,0.010828053578734],[-0.070598252117634,-0.14886881411076,-0.0039551127701998],[-0.021893152967095,-0.097235038876534,-0.068956345319748]],[[0.15016397833824,0.03893556445837,0.035262547433376],[0.1707277148962,0.15393672883511,-0.081704333424568],[-0.033034272491932,0.11278107017279,0.089799493551254]],[[0.054368413984776,0.16024512052536,-0.047195751219988],[-0.11797780543566,-0.13047221302986,-0.34296715259552],[-0.16290393471718,-0.10658461600542,-0.056160215288401]],[[0.1303121894598,-0.1682034432888,-0.081024311482906],[0.062870696187019,-0.044235352426767,0.050222154706717],[0.097666829824448,-0.0027852873317897,-0.024869723245502]],[[0.043513994663954,-0.025324773043394,0.046382423490286],[-0.04001747071743,0.044117256999016,-0.048355527222157],[0.029665751382709,0.088186591863632,-0.00077019550371915]],[[0.12615329027176,0.07897974550724,-0.073509506881237],[0.025990683585405,0.079104408621788,-0.024247746914625],[-0.2184973359108,0.1414673179388,-0.29079669713974]],[[-0.20168448984623,0.039210855960846,-0.17325276136398],[-0.070766776800156,0.017874741926789,-0.3185661137104],[0.033525917679071,-0.04793256521225,-0.12360858172178]],[[0.066907793283463,-0.063478551805019,-0.043544173240662],[0.025836352258921,-0.18217438459396,-0.06617221981287],[-0.053147610276937,0.11460040509701,0.085757650434971]],[[0.16128833591938,-0.059425838291645,-0.016329981386662],[-0.13990929722786,-0.044492240995169,-0.051114905625582],[0.014492240734398,-0.065483301877975,-0.022809555754066]],[[-0.07806022465229,-0.26399797201157,-0.026877664029598],[-0.13917581737041,0.055759608745575,0.018162928521633],[-0.15006048977375,0.00064259779173881,-0.051037345081568]],[[0.084867306053638,-0.011087785474956,-0.063016012310982],[-0.05897144973278,-0.086796052753925,-0.17036309838295],[-0.042187746614218,0.024128338322043,0.060832835733891]],[[0.020563686266541,0.21482191979885,0.28553938865662],[0.050060890614986,-0.12753430008888,-0.05745817348361],[-0.065466076135635,0.12191936373711,-0.18464848399162]],[[0.043314438313246,0.14106787741184,0.059706788510084],[0.12538884580135,-0.0085979215800762,0.086763799190521],[-0.18010787665844,-0.065564759075642,-0.062124729156494]],[[-0.0045802821405232,0.049111932516098,-0.062130235135555],[-0.095870599150658,-0.035022988915443,-0.16530001163483],[-0.09478759765625,-0.25724801421165,0.020408229902387]],[[-0.17934782803059,-0.20638003945351,-0.17393499612808],[-0.04415325447917,-0.027816256508231,0.0010485979728401],[-0.076185770332813,0.0053381444886327,-0.044451232999563]],[[-0.098115280270576,-0.042451296001673,0.12306296825409],[0.018156122416258,-0.25100594758987,0.087407469749451],[-0.091568648815155,-0.019112112000585,-0.05764289572835]],[[0.010723790153861,0.11025045067072,0.019402511417866],[-0.007142142392695,-0.064167268574238,0.15266801416874],[0.010849456302822,-0.043689902871847,-0.062318790704012]],[[0.034751318395138,-0.069014653563499,0.12762930989265],[-0.099419839680195,-0.14482018351555,-0.061520095914602],[-0.1051861345768,-0.020908841863275,0.12553404271603]],[[0.10010755807161,0.076594963669777,0.13656897842884],[0.010020862333477,0.049655001610518,0.078122489154339],[0.15400195121765,0.044587053358555,-0.038550935685635]],[[0.055461682379246,0.031057015061378,0.022110514342785],[0.054485265165567,-0.15670603513718,-0.0044947504065931],[-0.0055429278872907,-0.013919411227107,-0.091061986982822]],[[-0.041240606456995,-0.018315361812711,0.010201826691628],[-0.06443127989769,0.036509640514851,0.043121937662363],[-0.2190955132246,-0.093087375164032,0.067710854113102]],[[-0.15720354020596,-0.10358553379774,-0.065016686916351],[-0.11985455453396,0.085208483040333,-0.097148090600967],[0.084129400551319,0.10150956362486,-0.10355695337057]]],[[[-0.14736674726009,0.094740159809589,-0.10600893944502],[-0.21142636239529,0.058999970555305,-0.047922175377607],[-0.021365037187934,-0.086466960608959,-0.044744234532118]],[[-0.0033263107761741,-0.073924772441387,0.034531239420176],[-0.12086583673954,0.11003125458956,-0.011617400683463],[0.065445058047771,-0.031918663531542,0.05465142428875]],[[0.18198198080063,-0.1969702988863,-0.056711740791798],[0.017435586079955,-0.042787585407495,-0.13105688989162],[0.04847315326333,0.05530334636569,0.12550903856754]],[[-0.044274564832449,-0.13685511052608,0.065417468547821],[0.065253354609013,-0.014440983533859,0.075641177594662],[0.092720218002796,-0.19734080135822,0.12817476689816]],[[-0.0018419201951474,0.035215776413679,0.031664066016674],[0.032461725175381,-0.068542800843716,0.040127884596586],[-0.063861519098282,0.1292272657156,0.021785343065858]],[[0.037862561643124,-0.036538202315569,-0.12024183571339],[0.063624925911427,0.075649365782738,-0.11958653479815],[-0.10709550976753,-0.057584889233112,-0.022674512118101]],[[0.037678383290768,-0.19849106669426,-0.16579742729664],[0.068483524024487,-0.079123057425022,-0.083763025701046],[0.096327930688858,-0.099830783903599,-0.12025111913681]],[[-0.21204589307308,0.062120579183102,-0.16056111454964],[-0.051144357770681,0.021878302097321,0.052702780812979],[0.005006764549762,0.097712874412537,-0.03733579441905]],[[-0.02683519013226,0.086302250623703,0.090820334851742],[0.023722486570477,0.011978452093899,-0.0435502640903],[-0.085712872445583,-0.070189513266087,0.091656520962715]],[[0.078483574092388,-0.047590550035238,0.0021320269443095],[-0.043828517198563,-0.065070688724518,-0.10416644066572],[0.058109797537327,-0.0019659723620862,-0.07978717237711]],[[-0.058325160294771,-0.039645720273256,-0.10075183957815],[-0.0071404408663511,0.070391438901424,0.025194114074111],[0.05093877017498,0.088987857103348,-0.018110109493136]],[[-0.051701806485653,-0.12518867850304,-0.15512099862099],[-0.08258169144392,0.033308211714029,-0.15195298194885],[0.077341474592686,-0.058830503374338,-0.014196815900505]],[[-0.1053556278348,0.084535665810108,0.0041199987754226],[-0.27014461159706,-0.13801929354668,-0.18791899085045],[0.012304581701756,-0.045992314815521,0.085278198122978]],[[-0.087517358362675,0.055523980408907,-0.14911316335201],[-0.075856536626816,-0.020658891648054,-0.10182478278875],[-0.12920536100864,-0.093806155025959,-0.17847985029221]],[[0.11152619868517,-0.068524226546288,-0.047948740422726],[-0.043126754462719,-0.050460826605558,0.094205930829048],[0.068713128566742,0.047405421733856,-0.085582904517651]],[[-0.047969900071621,-0.085669226944447,0.042279414832592],[0.062050703912973,-0.098604768514633,0.045492682605982],[-0.11464612931013,0.037767712026834,-0.0087937107309699]],[[0.10274282842875,-0.096519291400909,0.0096097989007831],[-0.099081605672836,-0.03758642449975,-0.0088546006008983],[0.018999503925443,0.0079296072944999,-0.088112637400627]],[[-0.0020932250190526,0.030440403148532,0.013031541369855],[-0.093029141426086,-0.060591317713261,0.039040189236403],[-0.038445103913546,-0.070120468735695,0.083635754883289]],[[-0.016523627564311,-0.048185743391514,0.15324296057224],[-0.088894702494144,-0.052396439015865,0.042912162840366],[0.11382206529379,0.026264697313309,-0.075190775096416]],[[0.0031700313556939,-0.061170674860477,0.022125856950879],[-0.092846445739269,-0.056727208197117,-0.048818316310644],[-0.042607001960278,-0.24345017969608,-0.021413708105683]],[[0.14278101921082,-0.024764953181148,-0.12114600837231],[-0.0032941834069788,-0.12043672055006,0.023662133142352],[-0.12522082030773,0.047683577984571,0.013935457915068]],[[-0.043516874313354,-0.059841837733984,0.11488807946444],[-0.051839970052242,-0.11138846725225,0.091979525983334],[0.076736159622669,-0.091812387108803,0.11014403402805]],[[-0.010514332912862,-0.06343125551939,-0.049114942550659],[-0.057810302823782,-0.056399069726467,0.2291344255209],[-0.016175338998437,-0.073384203016758,-0.003597954288125]],[[-0.12525776028633,0.026043003425002,-0.024381330236793],[0.0078882705420256,-0.083418294787407,-0.031523257493973],[0.10733815282583,-0.011082988232374,0.18568027019501]],[[-0.079521685838699,-0.059617184102535,0.041966233402491],[-0.14118313789368,0.0022806085180491,0.086301796138287],[0.037848677486181,-0.063069723546505,0.069953635334969]],[[0.09694929420948,0.047855023294687,-0.1193581148982],[-0.10171452909708,0.21771648526192,-0.048584725707769],[0.048737954348326,0.029918843880296,-0.091578222811222]],[[-0.052485760301352,0.079616077244282,-0.033297456800938],[0.0090021155774593,0.023613141849637,0.018308011814952],[-0.0089079346507788,-0.023179864510894,-0.016435978934169]],[[-0.10496082156897,0.07922425866127,0.033763125538826],[0.010831845924258,0.1445486843586,0.18644392490387],[0.052789799869061,0.07408419251442,-0.12575860321522]],[[-0.2035536468029,0.010896432213485,-0.064469717442989],[0.02319691516459,0.092583373188972,0.014658252708614],[0.069887705147266,-0.14230272173882,-0.20462171733379]],[[0.053749423474073,-0.00087642861763015,-0.042554672807455],[-0.20159800350666,-0.040380455553532,-0.011793372221291],[0.1100535094738,-0.037273574620485,0.10080061107874]],[[0.039588637650013,0.040716607123613,0.035081561654806],[0.043139465153217,-0.0084401490166783,-0.067461036145687],[-0.078396946191788,-0.015787318348885,0.0029005936812609]],[[-0.01865572296083,-0.01723856292665,0.091112025082111],[-0.050141338258982,-0.14348746836185,-0.08446254581213],[-0.15227648615837,0.043074361979961,0.15718770027161]]],[[[0.072820864617825,-0.061471946537495,0.060544718056917],[0.043543037027121,-0.086349375545979,-0.019283231347799],[0.017115527763963,0.015964325517416,0.056472308933735]],[[-0.031802348792553,-0.091517448425293,-0.088015466928482],[-0.10502663254738,-0.025164797902107,-0.058629341423512],[-0.1802593767643,-0.019118301570415,-0.096416182816029]],[[0.050707243382931,-0.04198594763875,0.080555789172649],[-0.0032186422031373,-0.015502559952438,-0.0052169160917401],[0.10499995946884,0.10935492813587,-0.024878367781639]],[[0.053666405379772,-0.023784028366208,0.017437690868974],[-0.020099455490708,-0.032177407294512,-0.044227715581656],[-0.016149401664734,0.04356549680233,-0.021256554871798]],[[-0.0036729506682605,-0.17297253012657,-0.11103648692369],[-0.16033630073071,0.07745485752821,-0.080718815326691],[-0.025317987427115,-0.084359966218472,-0.040549419820309]],[[-0.031376473605633,-0.036508720368147,-0.034701868891716],[0.0054039722308517,0.085876531898975,0.0070639681071043],[-0.020957263186574,-0.040670201182365,0.057582933455706]],[[-0.027556391432881,-0.0046626478433609,0.084464646875858],[0.019135748967528,0.033534731715918,0.03558087348938],[-0.034019209444523,-0.013170349411666,-0.049268122762442]],[[-0.014172047376633,-0.046277020126581,-0.046874027699232],[0.04766871035099,-0.031382147222757,-0.052992329001427],[-0.037612926214933,-0.028161402791739,0.10919100046158]],[[-0.0045929742045701,-0.12734661996365,-0.051667895168066],[0.035265557467937,-0.11339142173529,0.072457440197468],[0.0069656674750149,-0.097975760698318,-0.10296423733234]],[[0.11379676312208,-0.1790287643671,-0.058314263820648],[0.042326703667641,-0.054395828396082,-0.0085763493552804],[0.0074421972967684,-0.13698607683182,0.03202323243022]],[[0.041412673890591,-0.0039219199679792,-0.011780318804085],[-0.10798782110214,-0.040058799088001,-0.017251269891858],[-0.052042458206415,-0.014138943515718,-0.014064543880522]],[[-0.015264418907464,0.041971914470196,-0.12739525735378],[-0.029983526095748,-0.05845145508647,0.1027799397707],[-0.019205819815397,0.048054378479719,-0.018147196620703]],[[-0.014372031204402,-0.10287912935019,0.0070978431031108],[0.029873009771109,-0.05610005185008,-0.047307152301073],[0.11347045004368,0.094636157155037,-0.015177293680608]],[[0.067067302763462,0.007105496712029,-0.006204788107425],[-0.041804812848568,-0.035202324390411,-0.081401810050011],[0.034617576748133,-0.092828519642353,0.12764932215214]],[[-0.08843570202589,-0.19819235801697,0.013488073833287],[-0.16349543631077,-0.027354046702385,-0.13344970345497],[-0.1064313352108,-0.11976862698793,-0.18267354369164]],[[-0.044531643390656,0.036614112555981,0.0084872879087925],[0.011830557137728,-0.021892417222261,0.084420941770077],[-0.021260146051645,0.035223051905632,0.022488323971629]],[[0.063202828168869,0.0052616624161601,0.019051089882851],[0.022254848852754,-0.010987712070346,-0.011600939556956],[-0.074821293354034,-0.030030703172088,0.044729005545378]],[[0.029486855491996,0.030140362679958,-0.054065424948931],[-0.0023106981534511,0.087542109191418,0.060350891202688],[-0.092432074248791,-0.079265221953392,-0.12587530910969]],[[0.047700230032206,0.044452600181103,-0.00071030773688108],[0.1233644336462,-0.068106465041637,0.012227059341967],[0.073497802019119,-0.01880475319922,0.15838521718979]],[[0.049982666969299,-0.041234955191612,0.091695286333561],[-0.042947951704264,-0.079277984797955,-0.0078594880178571],[-0.033173482865095,-0.01448252890259,0.057498198002577]],[[-0.038274936378002,0.044704917818308,0.058162115514278],[-0.11567248404026,0.044138580560684,0.055493332445621],[-0.081096962094307,-0.049798469990492,-0.041514839977026]],[[0.037026528269053,0.0083112642168999,-0.066460333764553],[0.0048784399405122,-0.068302102386951,0.053161181509495],[0.030014460906386,-0.032281931489706,-0.00026968846214004]],[[-0.039451174438,0.0019048061221838,0.083671376109123],[-0.16909697651863,-0.047318954020739,0.0188945569098],[-0.055950272828341,0.044095367193222,-0.021991565823555]],[[0.06616248935461,-0.0042785997502506,0.039324786514044],[-0.032500755041838,0.029710242524743,-0.027610838413239],[-0.065079070627689,-0.017730947583914,-0.019557952880859]],[[0.012961056083441,0.060876090079546,0.004252387676388],[-0.043641943484545,-0.11551794409752,-0.13808281719685],[0.037986502051353,-0.01674229837954,-0.024199888110161]],[[-0.0018441225402057,0.090735971927643,0.013760710135102],[-0.0077721201814711,0.00053237215615809,0.034180417656898],[0.0095522152259946,-0.10189197212458,0.073236428201199]],[[0.0034771671053022,-0.064031854271889,-0.017609786242247],[0.10426050424576,0.06777535378933,0.033942800015211],[-0.0057176509872079,0.021066585555673,-0.10254763066769]],[[0.0049829049967229,-0.084346510469913,0.070790380239487],[-0.036011505872011,-0.014486953616142,-0.021910455077887],[0.036898571997881,-0.038925886154175,0.048364635556936]],[[-0.03338211774826,-0.0068590636365116,-0.037508636713028],[-0.031206928193569,-0.040876671671867,-0.032945349812508],[0.090556174516678,0.090061388909817,-0.11616354435682]],[[-0.0046480852179229,-0.12459511309862,-0.088173940777779],[0.071041487157345,0.027230966836214,-0.11382740736008],[0.038865461945534,-0.033016573637724,-0.092275120317936]],[[0.091458112001419,-0.17241294682026,-0.0098231434822083],[-0.0025873137637973,0.057276666164398,-0.14048384130001],[0.079127542674541,0.050012733787298,-0.011997346766293]],[[-0.11015629768372,0.0031709775794297,-0.014430793002248],[-0.041096579283476,0.060508340597153,-0.02968767657876],[0.0044852271676064,0.025270802900195,0.0068032196722925]]],[[[-0.02991253323853,0.10725411772728,-0.044535502791405],[-0.033223118633032,-0.053647056221962,0.0039529837667942],[0.009214567951858,-0.14388646185398,0.043867748230696]],[[0.027034120634198,-0.004016088321805,0.034520253539085],[0.05119701102376,-0.1313973069191,0.00077023537596688],[-0.022723419591784,-0.12650971114635,0.088968850672245]],[[-0.043569032102823,0.093475237488747,0.059221360832453],[0.05372953414917,-0.012815713882446,0.020702198147774],[-0.060636986047029,-0.047756049782038,0.020607342943549]],[[0.012263666838408,0.073137164115906,-0.065997011959553],[0.094985842704773,-0.014551555737853,-0.020555293187499],[-0.10589522123337,0.052104894071817,-0.030446631833911]],[[-0.013788793236017,0.048800256103277,0.1255619674921],[-0.01734365709126,0.10121233016253,0.14228641986847],[0.079490877687931,-0.014136476442218,-0.0036665392108262]],[[-0.054351776838303,0.12340784072876,0.16385033726692],[-0.036435104906559,-0.03016017191112,-0.058900535106659],[0.073951184749603,-0.046944886445999,-0.061815943568945]],[[-0.15439702570438,0.011943190358579,0.037377141416073],[-0.08546507358551,-0.07423309981823,0.09629175812006],[-0.080768384039402,-0.047883298248053,0.021602069959044]],[[0.12519733607769,0.082648858428001,0.0055497218854725],[-0.22986947000027,-0.21352978050709,0.00074213853804395],[0.097695663571358,0.050535023212433,0.013214240781963]],[[0.044632643461227,0.048612043261528,0.081575728952885],[0.0080307004973292,0.14760474860668,0.054156113415956],[-0.2269534021616,-0.23971545696259,-0.12707841396332]],[[-0.041101049631834,-0.066013477742672,-0.11251720041037],[-0.051747128367424,0.17618495225906,0.023584771901369],[0.056773122400045,-0.045572154223919,-0.011304299347103]],[[0.082334816455841,-0.014593342319131,0.013190433382988],[-0.028087589889765,0.10846517980099,0.0046368003822863],[-0.051695387810469,0.061914809048176,-0.0048566828481853]],[[0.15199640393257,0.11612829566002,-0.031455405056477],[0.06075332686305,-0.21095448732376,-0.20401051640511],[-0.13832895457745,-0.03413924574852,0.088042683899403]],[[0.055601518601179,0.11979139596224,-0.10731279104948],[-0.052652925252914,0.10112252086401,0.067805901169777],[-0.2288816422224,-0.23542040586472,-0.056022521108389]],[[0.021944496780634,-0.063336335122585,-0.067655436694622],[0.037346486002207,-0.073506444692612,0.011643866077065],[-0.0075030592270195,-0.010402365587652,0.16099458932877]],[[0.10449505597353,0.096894159913063,0.113246999681],[-0.062346119433641,0.00010381926404079,-0.026186045259237],[-0.062493525445461,-0.092693842947483,0.043528489768505]],[[-0.078761212527752,0.0023616687394679,-0.04900173842907],[-0.031960465013981,0.058819908648729,0.034328736364841],[0.16521248221397,-0.050602756440639,0.013329586014152]],[[-0.1758076697588,-0.056415200233459,-0.019048757851124],[0.011356994509697,-0.016126459464431,0.0017308390233666],[-0.025223538279533,-0.013843415305018,-0.15561382472515]],[[0.04723122343421,-0.18508495390415,0.06367015093565],[0.026841286569834,0.10626530647278,-0.031668301671743],[0.16282849013805,-0.09298837184906,-0.053954359143972]],[[0.0027495415415615,0.037830669432878,0.059049930423498],[0.16054834425449,0.11944338679314,-0.019393233582377],[-0.058700077235699,-0.11391864717007,-0.033481083810329]],[[0.031239686533809,0.067045867443085,0.051662091165781],[-0.12603282928467,-0.27391517162323,0.058600425720215],[-0.02954538166523,0.0056862630881369,0.13638062775135]],[[0.014427736401558,0.098885662853718,0.021902738139033],[-0.041589550673962,-0.085647843778133,-0.0088137853890657],[-0.0050672888755798,-0.055523082613945,0.018348816782236]],[[0.024468204006553,-0.038140337914228,0.061948891729116],[0.0083324834704399,-0.14109420776367,0.047865737229586],[-0.033648304641247,0.049741446971893,0.039677485823631]],[[0.0754080042243,-0.078298501670361,0.19874049723148],[-0.1111826300621,-0.025551602244377,-0.03998339921236],[0.14102533459663,-0.023570418357849,0.19567184150219]],[[-0.018344681710005,0.069737754762173,0.1438685208559],[0.035339813679457,-0.091055028140545,0.041927274316549],[-0.0074983048252761,0.062259301543236,0.1359700858593]],[[-0.10809959471226,0.0088552413508296,-0.089546762406826],[0.0068559222854674,0.046469420194626,0.16417148709297],[-0.094470359385014,-0.012028213590384,0.15850888192654]],[[-0.058305721729994,-0.14166666567326,0.050121400505304],[-0.12418752163649,0.02159558981657,-0.0036730149295181],[-0.074837185442448,0.21236988902092,0.059877946972847]],[[0.076203890144825,0.11157941073179,-0.064888454973698],[0.011554229073226,-0.06282814592123,0.099727317690849],[0.038096878677607,-0.044823743402958,-0.025508964434266]],[[-0.19205677509308,0.1573707908392,-0.10213580727577],[-0.099513106048107,-0.021541753783822,0.20401556789875],[0.15979073941708,-0.10868708789349,0.10259989649057]],[[0.027210604399443,0.23976451158524,-0.0008026507566683],[-0.16836692392826,-0.062030833214521,-0.1181126832962],[-0.11178769171238,-0.19349259138107,0.058585379272699]],[[0.051606964319944,0.070562347769737,0.066933140158653],[-0.085255838930607,0.050415150821209,0.055013351142406],[-0.10670917481184,0.043811809271574,-0.058369819074869]],[[0.050368282943964,0.007228652946651,0.037046246230602],[-0.25529831647873,-0.016873875632882,-0.064428262412548],[-0.011884986422956,-0.003086585085839,0.037495568394661]],[[-0.011502933688462,0.038461178541183,0.021347297355533],[-0.13336896896362,0.0028853619005531,-0.048769999295473],[-0.026374159380794,0.1126359552145,0.021527480334044]]],[[[-0.093725137412548,-0.0054177539423108,0.033161357045174],[-0.18599377572536,-0.074245311319828,-0.12989573180676],[-0.17671045660973,0.065564133226871,-0.1954482793808]],[[-0.01092229411006,0.082605272531509,-0.00022358185378835],[-0.020859260112047,-0.021256301552057,-0.0097319418564439],[-0.010900078341365,-0.0010394416749477,0.051709651947021]],[[-0.047510333359241,0.18955872952938,-0.076526775956154],[-0.084628827869892,-0.095379769802094,0.022383825853467],[0.077942803502083,0.062032334506512,-0.025985514745116]],[[-0.087186962366104,0.080732308328152,0.029938723891973],[-0.24054101109505,-0.010374985635281,0.01693251170218],[-0.09968539327383,0.017468867823482,-0.037199568003416]],[[-0.0097173908725381,-0.12804998457432,0.0084959175437689],[0.058009307831526,0.066259756684303,-0.083138279616833],[0.028736269101501,0.077646240592003,-0.0078661572188139]],[[0.013769044540823,-0.030995573848486,0.14567197859287],[-0.017797417938709,-0.071940071880817,-0.081493236124516],[-0.22904862463474,0.18951819837093,0.0019893685821444]],[[-0.052692860364914,-0.04905927926302,0.046298131346703],[0.022186433896422,0.026535332202911,-0.06069378182292],[-0.18482078611851,-0.12521214783192,-0.041118707507849]],[[-0.0038894284516573,0.027334289625287,-0.0183584112674],[0.069633089005947,0.039915662258863,-0.23360702395439],[0.10123332589865,0.01698655821383,0.14159248769283]],[[-0.037967775017023,0.10326420515776,0.054368477314711],[-0.06998660415411,-0.0013990461593494,-0.0016524803359061],[-0.066147588193417,-0.14040294289589,-0.048252321779728]],[[-0.1099264100194,0.058426752686501,0.14640115201473],[-0.17404992878437,0.15429396927357,0.010412882082164],[-0.31361076235771,0.036439087241888,-0.10839514434338]],[[0.024595178663731,-0.055279530584812,0.0099025936797261],[-0.030946480110288,-0.15503220260143,-0.10999571532011],[-0.027276502922177,-0.0083828028291464,-0.15731129050255]],[[0.057768404483795,0.15253812074661,-0.096930988132954],[0.00034007168142125,0.028535159304738,0.035857114940882],[0.086463935673237,-0.025705944746733,-0.046803940087557]],[[-0.049792397767305,-0.070964492857456,-0.096855357289314],[0.050517257302999,-0.018448982387781,0.063263192772865],[0.033410463482141,-0.1955533772707,-0.0026919182855636]],[[-0.12878160178661,0.023401584476233,0.053858067840338],[-0.060785863548517,0.027489060536027,-0.00031196442432702],[0.0010381758911535,-0.079760566353798,-0.08101487159729]],[[-0.039617758244276,-0.03447575122118,0.068542376160622],[0.0022414142731577,0.015299021266401,0.029800647869706],[-0.065457597374916,-0.02698645927012,0.073573209345341]],[[0.083570592105389,-0.15731431543827,0.15163537859917],[0.13040994107723,-0.054746069014072,-0.10461161285639],[0.05809061229229,0.076564267277718,0.079257063567638]],[[-0.038318078964949,-0.002332208212465,0.050027616322041],[0.16642615199089,0.087081916630268,0.055134706199169],[0.11063652485609,-0.13613447546959,0.015348769724369]],[[-0.027081063017249,0.0074150124564767,-0.0095646111294627],[0.012167451903224,0.059921357780695,0.060429245233536],[-0.19763496518135,0.10680001974106,0.097188234329224]],[[-0.095455445349216,-0.12975741922855,0.012591385282576],[-0.011272638104856,0.054927453398705,0.18730826675892],[-0.1882041990757,-0.023248676210642,-0.20671512186527]],[[-0.051465980708599,-0.11356841772795,0.025860413908958],[0.022914867848158,-0.038906004279852,-0.034816041588783],[-0.04143039137125,-0.086216233670712,0.037449158728123]],[[-0.025154463946819,-0.033829305320978,0.088342316448689],[-0.036308713257313,-0.039920344948769,-0.046341210603714],[0.066601417958736,0.032396215945482,0.061719074845314]],[[0.14648340642452,-0.15678606927395,0.0091067589819431],[-0.1171553581953,0.12705232203007,-0.011460392735898],[-0.097744934260845,-0.031598936766386,-0.15144518017769]],[[0.15906128287315,-0.016556842252612,0.038784272968769],[-0.15431195497513,-0.040722101926804,-0.12989045679569],[0.013073770329356,0.093016214668751,0.11265690624714]],[[0.029014673084021,-0.1719753742218,-0.023802997544408],[0.046534638851881,-0.01964558660984,-0.10057736188173],[-0.0077991606667638,0.078465543687344,-0.072886481881142]],[[-0.036446709185839,-0.022093283012509,0.16052511334419],[-0.20428232848644,0.062028706073761,0.048202641308308],[-0.13669356703758,-0.063724547624588,0.0085130222141743]],[[0.088681407272816,-0.086301006376743,0.039913006126881],[0.13618721067905,-0.017462367191911,0.038973201066256],[-0.0029550448525697,-0.10775431990623,-0.046813324093819]],[[0.0044534327462316,-0.0028717119712383,-0.016364045441151],[0.04609452933073,0.03703273832798,-0.092148832976818],[-0.041441690176725,-0.0033918372355402,0.068984620273113]],[[-0.30879256129265,-0.09867399930954,-0.086386375129223],[-0.18480411171913,-0.089372865855694,0.2149406671524],[-0.049716256558895,-0.039470665156841,0.041602551937103]],[[0.043717157095671,0.01392684597522,-0.015707198530436],[0.22535400092602,-0.0073833051137626,-0.028971690684557],[0.091455742716789,0.073853977024555,-0.023168362677097]],[[0.024686776101589,-0.10419180244207,-0.11322305351496],[0.096241474151611,-0.0082683237269521,0.025994561612606],[0.025574985891581,0.04939204826951,-0.058516822755337]],[[-0.17496144771576,-0.015023857355118,-0.12150046974421],[-0.028008611872792,0.080099433660507,-0.00026965004508384],[0.058092150837183,-0.08629434555769,0.069871388375759]],[[0.013346398249269,0.10690305382013,0.087428294122219],[-0.12644907832146,-0.02903968654573,0.072074547410011],[-0.19400510191917,-0.19540396332741,-0.049884617328644]]],[[[0.014095816761255,-0.08083388209343,-0.043496787548065],[-0.020260117948055,0.045362431555986,-0.091504581272602],[0.12288299947977,0.15628315508366,-0.047598399221897]],[[-0.10394147783518,0.0015917054843158,0.10983028262854],[-0.076516501605511,0.080847688019276,-0.065537251532078],[0.043624117970467,0.016135778278112,0.0064371516928077]],[[0.18397961556911,-0.028213948011398,0.14542935788631],[0.0093477703630924,0.071778543293476,-0.16882303357124],[0.10624172538519,0.2782484292984,-0.12615132331848]],[[-0.16831603646278,-0.073466747999191,-0.18705397844315],[0.12392099946737,0.057840004563332,0.0053703002631664],[0.063918948173523,0.16415913403034,0.13258631527424]],[[-0.045000988990068,0.080201335251331,-0.10205482691526],[-0.039000205695629,0.16930973529816,-0.10346151888371],[-0.00025597147759981,0.087938606739044,-0.042031649500132]],[[-0.017830612137914,-0.039176974445581,0.035075534135103],[-0.023552229627967,-0.13866865634918,-0.09073031693697],[0.10935552418232,-0.14767943322659,0.11883250623941]],[[0.050159752368927,-0.098618403077126,-0.12961699068546],[-0.10317664593458,0.060650866478682,-0.041912566870451],[-0.21599815785885,-0.22281935811043,0.10606848448515]],[[-0.026334090158343,0.073296062648296,0.010197919793427],[-0.15143704414368,-0.021574087440968,0.017895318567753],[0.14140065014362,0.035856112837791,0.020925784483552]],[[-0.11812701076269,0.060031570494175,0.085809297859669],[-0.067206300795078,-0.015831844881177,-0.075177051126957],[0.015165882185102,0.070470780134201,0.1096740141511]],[[0.091813400387764,-0.082482017576694,-0.0947570130229],[0.010313508100808,0.088506124913692,-0.095099359750748],[-0.16552859544754,0.060508996248245,0.051847230643034]],[[0.057781144976616,0.05437682941556,-0.035143923014402],[0.1631718724966,0.1195921972394,-0.11452393978834],[-0.031608950346708,0.12138596922159,-0.18418084084988]],[[-0.043566554784775,-0.012255660258234,-0.030641177669168],[0.052781142294407,0.15807838737965,0.011231278069317],[-0.17913776636124,0.086097694933414,0.046069391071796]],[[-0.058974757790565,-0.12115015089512,-0.14601035416126],[0.029847113415599,0.093682080507278,-0.011254573240876],[-0.10822480171919,0.057372611016035,0.074744254350662]],[[-0.13224405050278,-0.17992435395718,-0.17442311346531],[-0.023316135630012,0.085940442979336,0.21424375474453],[0.00034635746851563,0.096377246081829,0.0081028193235397]],[[0.0058476575650275,-0.052599471062422,0.051727909594774],[0.00723722204566,0.093257643282413,-0.0050319964066148],[-0.12167228013277,0.064006999135017,-0.00036212828126736]],[[-0.054807141423225,0.11441567540169,0.027133630588651],[-0.069644130766392,0.21487991511822,0.0030412862543017],[-0.0093619609251618,-0.26489585638046,-0.063164785504341]],[[-0.0530487857759,-0.16108001768589,-0.11616214364767],[-0.014660071581602,-0.071465067565441,-0.015526280738413],[-0.082690596580505,-0.10656382888556,-0.038811765611172]],[[0.067787609994411,-0.063723474740982,-0.048356931656599],[-0.0011328014079481,0.14446467161179,-0.14354611933231],[-0.025085715577006,0.070956163108349,-0.20822994410992]],[[-0.46246325969696,-0.0071062529459596,0.031007941812277],[-0.02039566449821,0.077220894396305,0.091164328157902],[0.11486792564392,0.058008380234241,0.13159772753716]],[[-0.077124089002609,-0.10750959813595,-0.19773505628109],[0.039301533252001,-0.13639150559902,-0.062043182551861],[0.17662489414215,-0.078374959528446,0.26599273085594]],[[-0.18876175582409,0.07438051700592,0.086800582706928],[-0.021771406754851,0.049099937081337,-0.1071285456419],[0.030764846131206,0.0094298031181097,-0.15985344350338]],[[-0.13937950134277,0.15190733969212,0.026712656021118],[0.10202150046825,-0.099612161517143,0.20450229942799],[-0.031218431890011,-0.0048924023285508,0.010235187597573]],[[-0.02627182379365,-0.039722669869661,0.056957501918077],[0.17357732355595,-0.031362574547529,0.12730208039284],[-0.020144529640675,-0.059122711420059,0.11308454722166]],[[0.092172786593437,-0.020107047632337,-0.021980537101626],[-0.056676913052797,-0.21421693265438,-0.13082218170166],[0.064756609499454,-0.004014166072011,0.021505562588573]],[[-0.050493333488703,-0.0308245588094,-0.060064740478992],[-0.096409730613232,-0.053169928491116,0.02736547216773],[-0.074304640293121,-0.017963403835893,0.043853085488081]],[[0.034935146570206,-0.012628911063075,0.091983951628208],[-0.107212677598,-0.027177326381207,-0.0010494530433789],[0.019855383783579,-0.15841649472713,0.007765871938318]],[[0.18598328530788,-0.00022874015849084,0.069225303828716],[0.02055156417191,0.018418034538627,-0.099058374762535],[-0.061973080039024,0.086501091718674,-0.079987458884716]],[[-0.076544731855392,0.043471604585648,0.023191899061203],[0.064018860459328,-0.038845375180244,-0.045680105686188],[-0.19391888380051,0.066090457141399,0.027607278898358]],[[-0.34038063883781,0.045305822044611,0.10069093108177],[0.0078272158280015,0.078416161239147,-0.042139317840338],[-0.11575090140104,-0.095886990427971,0.10147681087255]],[[0.10042913258076,-0.0013304870808497,-0.038315538316965],[0.0055941119790077,-0.067852906882763,0.041324459016323],[-0.043120220303535,0.10022508352995,-0.14370203018188]],[[-0.017938815057278,-0.090969003736973,0.0056189554743469],[0.0037808595225215,-0.038372404873371,0.0043344679288566],[-0.064342990517616,0.21233451366425,-0.031755812466145]],[[-0.093585968017578,-0.093359656631947,-0.039248857647181],[-0.071828745305538,0.12588243186474,0.027134254574776],[0.036232717335224,-0.011155532673001,0.10283535718918]]],[[[-0.052663881331682,-0.13157796859741,0.049163065850735],[-0.11086475104094,0.013007299043238,-0.06604128330946],[-0.091240882873535,-0.030575357377529,-0.053934242576361]],[[-0.0012624700320885,0.081844262778759,-0.14736734330654],[0.021973436698318,-0.032924044877291,-0.062806814908981],[0.011330373585224,-0.021154286339879,-0.16090475022793]],[[-0.073261521756649,-0.051452174782753,-0.022435642778873],[0.03013558126986,0.16690503060818,0.1965504437685],[-0.1675873696804,0.048127505928278,0.011250033974648]],[[-0.053442358970642,0.10352443158627,-0.011942905373871],[-0.12013076990843,0.075895167887211,-0.16674686968327],[-0.2043743878603,0.026988795027137,-0.051161948591471]],[[-0.012445106171072,-0.16682352125645,0.073667012155056],[-0.09077874571085,-0.17784909904003,0.099547274410725],[-0.13447937369347,-0.20361050963402,-0.041395220905542]],[[0.073229022324085,-0.20969639718533,0.1436679661274],[-0.037867251783609,0.025880333036184,-0.012139063328505],[0.20366080105305,-0.017976557835937,-0.15828289091587]],[[-0.10436231642962,-0.071010656654835,0.10767178237438],[-0.03573852032423,-0.022659603506327,0.043034728616476],[0.095447912812233,0.080066911876202,0.10219614207745]],[[-0.06675536185503,0.029288835823536,0.15638741850853],[-0.13747039437294,0.059204131364822,-0.0020578736439347],[-0.22356992959976,-0.066528953611851,-0.041195284575224]],[[-0.061856366693974,-0.034155335277319,0.088246636092663],[0.020446663722396,-0.012125699780881,-0.012512969784439],[-0.0054999180138111,-0.13332891464233,-0.048307426273823]],[[-0.19980350136757,-0.017702501267195,-0.053130481392145],[-0.096411854028702,0.012158014811575,-0.022352041676641],[-0.12837420403957,0.0061134793795645,0.070506878197193]],[[-0.18025287985802,0.025926535949111,8.3934464782942e-05],[-0.017832905054092,-0.082706861197948,0.044435121119022],[-0.027441158890724,-0.073111817240715,0.049610797315836]],[[0.10313110053539,-0.219980224967,0.0056190872564912],[0.0400928594172,0.073040559887886,0.0030966866761446],[-0.13386891782284,0.057503901422024,0.10441417992115]],[[0.026519082486629,-0.13207054138184,0.03085670620203],[-0.010147375054657,0.00060652830870822,0.10594145208597],[-0.032833959907293,-0.073928631842136,0.13331447541714]],[[-0.070415884256363,0.087629400193691,-0.10346627235413],[-0.020621182397008,-0.077041007578373,-0.073375716805458],[0.073893897235394,-0.052132472395897,0.0094592925161123]],[[0.081152454018593,-0.029332438483834,0.037958689033985],[-0.063784971833229,-0.029949121177197,0.027479840442538],[-0.018840350210667,0.054518982768059,0.12036158144474]],[[0.022554313763976,0.021170923486352,-0.10495833307505],[-0.12966422736645,-0.16278997063637,0.086119949817657],[0.14211197197437,-0.21420367062092,0.17444479465485]],[[0.057452261447906,-0.12625259160995,-0.11198849976063],[0.14053791761398,-0.035185113549232,-0.19151300191879],[0.047611504793167,0.040849316865206,-0.025896796956658]],[[0.057784754782915,0.10753548145294,0.038666617125273],[-0.013198286294937,-0.085730366408825,-0.13728852570057],[-0.11133404821157,0.034984637051821,-0.058991920202971]],[[-0.047295860946178,0.10930118709803,0.18855479359627],[-0.065125957131386,-0.18134543299675,-0.064189359545708],[-0.021938828751445,0.11292254179716,-0.35324895381927]],[[-0.35522469878197,0.046822726726532,0.060460213571787],[-0.20021475851536,0.041569750756025,0.092935867607594],[0.070463553071022,-0.23759113252163,0.10414110869169]],[[-0.2296112626791,0.016305331140757,0.013455746695399],[-0.032278783619404,-0.033574461936951,0.093475066125393],[-0.075153991580009,0.046020817011595,0.12665402889252]],[[0.051039185374975,0.084322571754456,-0.17114096879959],[0.050959151238203,-0.17390774190426,-0.10889557749033],[0.29428425431252,-0.013108158484101,-0.15027837455273]],[[0.01556642446667,-0.07723493129015,0.11678213626146],[0.044453017413616,-0.083439417183399,-0.03039626032114],[-0.077685661613941,-0.043199975043535,0.10111779719591]],[[-0.057670459151268,-0.14218509197235,-0.0082024903967977],[0.015026277862489,0.03452305868268,0.021190477535129],[-0.21654467284679,-0.17072923481464,0.075942888855934]],[[-0.098897695541382,0.061913799494505,0.063229389488697],[-0.11573000252247,-0.039208520203829,0.017279103398323],[-0.031188897788525,-0.12429949641228,0.11978776007891]],[[-0.042527686804533,0.024851802736521,0.057627432048321],[0.078209742903709,-0.0783401876688,-0.045913696289062],[0.19073089957237,-0.066003814339638,0.081413410604]],[[0.0047300215810537,0.043549548834562,0.040722727775574],[0.021467637270689,-0.042474895715714,-0.052526246756315],[-0.012854778207839,0.016772873699665,-0.067511424422264]],[[0.036211598664522,0.12378311902285,0.038693886250257],[-0.024284515529871,0.029026485979557,0.0039784992113709],[-0.022026574239135,-0.038620121777058,-0.085938319563866]],[[-0.16570153832436,-0.023058384656906,0.10640374571085],[0.061703510582447,-0.083597585558891,0.086910113692284],[0.067447543144226,-0.19176475703716,0.025023331865668]],[[-0.079595193266869,0.015501203946769,-0.047612734138966],[0.011530614458025,0.1511756926775,-0.09133468568325],[0.0044536315836012,0.11505454033613,-0.15190091729164]],[[-0.14120328426361,-0.096745923161507,-0.1473288834095],[-0.038879737257957,-0.047432966530323,-0.018298910930753],[0.21590401232243,-0.14078231155872,-0.013437840156257]],[[-0.22362095117569,-0.059138875454664,-0.091943241655827],[0.011488399468362,0.1170898899436,-0.062965080142021],[-0.00097163743339479,-0.0080195944756269,-0.14939950406551]]],[[[-0.033762842416763,0.10037852078676,-0.18376494944096],[-0.090014837682247,-0.068654097616673,0.013825744390488],[0.056604947894812,0.11346115916967,-0.0053317970596254]],[[-0.056410819292068,-0.082750216126442,-0.0010734957177192],[-0.0014853788306937,0.015927813947201,0.11812315136194],[-0.065237998962402,0.016941320151091,0.069867245852947]],[[0.066259928047657,-0.039693307131529,-0.036103963851929],[0.17862755060196,-0.013636297546327,-0.12331964820623],[-0.057285957038403,0.022659065201879,0.20607289671898]],[[0.05614135414362,0.077292084693909,0.031461741775274],[0.027097748592496,-0.096442677080631,-0.16533575952053],[-0.04711015149951,0.046981006860733,-0.012378453277051]],[[0.062745995819569,0.0020759268663824,0.005139157641679],[0.042923007160425,-0.045711982995272,0.051333505660295],[0.010831502266228,0.050572589039803,0.13202729821205]],[[0.060476444661617,-0.0075887921266258,0.013835879042745],[0.0024544447660446,-0.032231200486422,-0.064897559583187],[-0.019190119579434,-0.033416476100683,-0.081851996481419]],[[-0.07102270424366,0.1176193356514,0.23143577575684],[0.038399048149586,-0.027290001511574,-0.033190470188856],[0.064827740192413,-0.14201846718788,-0.044114295393229]],[[0.093614511191845,0.030770802870393,-0.09695165604353],[-0.070481993257999,-0.061488665640354,-0.17942941188812],[0.14049638807774,-0.15129344165325,-0.17282690107822]],[[0.00097918533720076,-0.088348530232906,-0.11050327122211],[-0.10635185241699,0.1163714081049,0.00038005286478437],[-0.073128841817379,0.075088441371918,0.11992324888706]],[[0.1511699706316,-0.19053333997726,-0.037821479141712],[0.20561109483242,-0.035782497376204,-0.036804061383009],[-0.085476122796535,-0.076507724821568,-0.042600147426128]],[[0.0058944798074663,0.092361502349377,-0.077909238636494],[0.033291671425104,-0.035146415233612,0.026126004755497],[0.1007687151432,-0.061107032001019,-0.0075703239999712]],[[-0.008947592228651,0.019788414239883,0.023125134408474],[-0.11027907580137,0.009710855782032,0.084482870995998],[-0.032172281295061,-0.070365637540817,0.047602415084839]],[[0.18302193284035,-0.21560277044773,-0.071655251085758],[-0.053936023265123,-0.2447165697813,-0.25855830311775],[0.045504800975323,-0.029186395928264,-0.077391847968102]],[[0.07128182798624,0.13541497290134,0.091096684336662],[0.085948370397091,-0.050492033362389,-0.16728428006172],[0.21464672684669,0.033174622803926,0.046694282442331]],[[-0.019765062257648,0.031383719295263,-0.048967495560646],[0.0044459798373282,-0.044937621802092,0.074419088661671],[0.096188634634018,0.013311620801687,-0.0061560282483697]],[[-0.059387490153313,0.021093787625432,-0.085347473621368],[-0.14536586403847,-0.032175477594137,-0.0096698552370071],[-0.075712352991104,0.16079770028591,0.13793464004993]],[[0.040219843387604,-0.0044078952632844,0.14691890776157],[-0.032801080495119,-0.018755858764052,-0.055059473961592],[0.0032842697110027,-0.073717042803764,-0.012442981824279]],[[-0.033095896244049,0.027828745543957,-0.058431584388018],[0.051979936659336,-0.039536882191896,-0.12328780442476],[-0.14075097441673,0.035810265690088,0.040912427008152]],[[0.11702555418015,-0.058006886392832,0.082506112754345],[0.033846247941256,-0.052503131330013,0.081589624285698],[0.060187175869942,-0.14458402991295,0.038363486528397]],[[0.067855827510357,-0.2030603736639,0.033935941755772],[0.053910493850708,0.037549715489149,0.060340132564306],[0.015715459361672,0.1458974480629,0.0026106936857104]],[[-0.0052381949499249,-0.026412311941385,-0.053671441972256],[0.025893431156874,-0.032163307070732,0.24857467412949],[0.022466912865639,0.014039870351553,0.03019399754703]],[[-0.044342715293169,0.043544426560402,0.066627807915211],[-0.050425000488758,0.059818923473358,-0.028096212074161],[0.071791119873524,-0.019352424889803,0.086097031831741]],[[-0.022312462329865,0.055847674608231,-0.06367963552475],[-0.07257791608572,0.13838097453117,0.19995944201946],[0.099244154989719,0.10578753054142,0.060916800051928]],[[0.019945029169321,-0.064184471964836,0.072640359401703],[-0.036004915833473,-0.10950967669487,0.013895441778004],[-0.11200742423534,0.094029381871223,-0.13785549998283]],[[0.17062811553478,-0.11871491372585,0.012756078504026],[-0.045882243663073,-0.16311578452587,0.090909041464329],[0.01592268422246,0.051866665482521,0.027876483276486]],[[-0.052173223346472,0.073159523308277,-0.038144156336784],[0.14299073815346,-0.064984239637852,0.058918256312609],[0.095762498676777,0.065925769507885,-0.044134482741356]],[[0.016336116939783,0.044885538518429,0.056875929236412],[0.037071239203215,0.011175414547324,-0.058300781995058],[-0.10139489918947,0.034040566533804,-0.023788774386048]],[[-0.12560996413231,-0.047030195593834,0.055855922400951],[-0.0083897989243269,-0.0092086484655738,0.10054525732994],[-0.11069118976593,0.044648312032223,0.108135022223]],[[-0.061141941696405,0.12853302061558,-0.14537368714809],[-0.028347831219435,0.12845416367054,0.1664387434721],[-0.054537232965231,-0.10038333386183,0.09593540430069]],[[0.16992634534836,0.07120281457901,0.083061330020428],[0.077421590685844,0.020995607599616,0.032387558370829],[0.027572032064199,0.033105172216892,0.11292773485184]],[[0.20358742773533,-0.15959434211254,-0.040642306208611],[0.052245836704969,0.081619471311569,-0.05741498619318],[-0.044212833046913,-0.070169694721699,-0.015171282924712]],[[0.057890687137842,-0.12720207870007,-0.023052858188748],[0.11340047419071,0.013570623472333,0.027600426226854],[-0.11268644034863,-0.012028673663735,-0.027744077146053]]],[[[0.011295444332063,-0.015859007835388,-0.066512644290924],[-0.00094318389892578,-0.020857930183411,-0.02521232329309],[-0.072694107890129,-0.0020575991366059,0.0013253543293104]],[[0.042927701026201,0.032658498734236,-0.039528951048851],[-0.013731171377003,0.012531083077192,-0.010035501793027],[-0.011784083209932,0.013041874393821,-0.037432629615068]],[[0.072454571723938,-0.098319917917252,-0.11339789628983],[0.010190446861088,0.12894988059998,-0.11550254374743],[0.096060551702976,-0.045512460172176,0.1842547506094]],[[-0.069174334406853,-0.04585525020957,-0.061554774641991],[-0.088867247104645,-0.11929805576801,-0.05752919241786],[-0.055409818887711,0.052474476397038,0.037451878190041]],[[-0.021621216088533,-0.10490094870329,-0.027019012719393],[0.09984777122736,0.042932454496622,-0.045535285025835],[0.077825926244259,0.065445356070995,0.12821508944035]],[[0.1053810864687,0.030785880982876,0.022748280316591],[-0.011918190866709,0.084036603569984,-0.26278007030487],[-0.029264025390148,-0.076307564973831,-0.072040520608425]],[[-0.049227111041546,0.00086556194582954,-0.062059629708529],[0.014337976463139,0.049401000142097,0.052625212818384],[-0.011270571500063,0.021425943821669,-0.013390923850238]],[[-0.14309403300285,-0.16986998915672,-0.22363498806953],[-0.021649153903127,-0.09203939884901,-0.071650490164757],[0.045149832963943,0.017507856711745,-0.018681680783629]],[[0.055783048272133,-0.051010455936193,0.02879236638546],[0.087940007448196,0.0082999244332314,-0.042596466839314],[-0.047773621976376,0.040156774222851,0.084439925849438]],[[0.16285720467567,0.019463500007987,-0.062587678432465],[0.048526108264923,-0.15954600274563,-0.045120596885681],[0.051617473363876,0.00081246910849586,-0.13814088702202]],[[-0.028746612370014,-0.11049212515354,0.11259452998638],[0.011234732344747,0.0052162045612931,0.06345546990633],[0.020352406427264,0.042013011872768,-0.017695074900985]],[[-0.012498729862273,-0.21908283233643,0.012818424962461],[0.05333898961544,-0.032197203487158,-0.022368613630533],[0.010775465518236,0.12183889001608,0.053853321820498]],[[-0.012820677831769,0.095370523631573,0.023942492902279],[0.080150045454502,-0.066765151917934,0.015806388109922],[-0.12290018796921,0.034383006393909,-0.023616205900908]],[[-0.10122910887003,-0.040113747119904,-0.050842668861151],[-0.035025130957365,-0.045205228030682,0.071887262165546],[0.048519205302,-0.061049450188875,-0.10145003348589]],[[0.075836516916752,0.0051159965805709,-0.083360269665718],[0.040081553161144,-0.098501153290272,-0.015787128359079],[0.0099576255306602,-0.00059877074090764,-0.035105120390654]],[[-0.11457286030054,-0.12080877274275,0.054602354764938],[-0.021996298804879,0.15635381639004,0.15641245245934],[-0.10703795403242,0.055546756833792,-0.052192032337189]],[[0.06706702709198,-0.029098324477673,-0.19878049194813],[-0.13976423442364,0.1124426946044,-0.061513658612967],[0.0007590854074806,0.0072069275192916,-0.042173452675343]],[[-0.037403866648674,0.041624929755926,-0.041797373443842],[0.043426509946585,-0.13285058736801,-0.02652201615274],[0.054260428994894,-0.062691286206245,-0.030932174995542]],[[-0.032512348145247,0.12535844743252,-0.12168278545141],[-0.017600515857339,0.038287010043859,0.055400539189577],[0.16475324332714,-0.036458376795053,0.090092562139034]],[[0.14360509812832,-0.0079512447118759,0.028341554105282],[-0.0091038402169943,0.1119789108634,0.1340249478817],[-0.012427325360477,-0.16180719435215,-0.03389623016119]],[[0.090167157351971,-0.13553875684738,-0.17908629775047],[0.057205997407436,-0.06990072876215,-0.08881264179945],[0.041888792067766,0.067713633179665,0.079416215419769]],[[-0.02990723028779,-0.049082275480032,-0.026532215997577],[-0.077373534440994,-0.051826033741236,-0.0092415008693933],[-0.040885698050261,0.15015780925751,-0.0083441566675901]],[[0.081884741783142,-0.046762939542532,0.067592725157738],[-0.063824310898781,0.019300861284137,0.023748846724629],[-0.0052953460253775,-0.0829117000103,0.21707586944103]],[[-0.12301970273256,0.1205380782485,0.061650644987822],[0.0033169756643474,0.038378063589334,-0.050119273364544],[-0.14434032142162,-0.14086979627609,-0.11486409604549]],[[0.025197302922606,-0.1140723451972,0.043780352920294],[0.028838330879807,-0.12995007634163,-0.023655738681555],[-0.035851407796144,0.015065304934978,-0.080377086997032]],[[-0.025938235223293,-0.11738389730453,-0.045895975083113],[-0.18370221555233,0.085975363850594,-0.022661678493023],[0.026194265112281,0.043355077505112,0.17941839993]],[[-0.015063633210957,-0.040333326905966,-0.048362977802753],[0.030132532119751,0.13278095424175,-0.036065556108952],[-0.014320256188512,0.010932603850961,-0.029268486425281]],[[-0.068944066762924,0.01641502045095,0.075395487248898],[-0.077476747334003,-0.033356014639139,0.053151149302721],[0.059839203953743,-0.098059222102165,-0.02040096372366]],[[0.055280987173319,-0.077937118709087,-0.067428521811962],[-0.091703303158283,0.14700593054295,-0.08108102530241],[-0.095904745161533,0.047119524329901,0.12172356247902]],[[-0.10279850661755,-0.011445799842477,-0.11750531941652],[-0.065198048949242,-0.18763694167137,0.014149783179164],[-0.02142202667892,-0.037744946777821,-0.12828986346722]],[[-0.040154591202736,-0.12003568559885,-0.036829341202974],[-0.013722496107221,-0.018683912232518,0.046609278768301],[0.060441561043262,-0.12587469816208,-0.0066133863292634]],[[-0.042989883571863,-0.028995838016272,-0.023033341392875],[0.036784291267395,-0.030495250597596,-0.059812255203724],[0.059085760265589,-0.037988513708115,-0.060208473354578]]],[[[0.11726880073547,-0.20290450751781,0.042902696877718],[-0.21712923049927,-0.062737844884396,0.062514767050743],[-0.20202624797821,-0.13304123282433,-0.22252802550793]],[[0.038707960397005,0.0027244696393609,0.0099879894405603],[0.034058313816786,-0.083233684301376,0.068756438791752],[-0.018798127770424,-0.020265592262149,0.03930240124464]],[[-0.011852263472974,0.07880637049675,0.19878274202347],[0.081348963081837,-0.11220198124647,0.27474650740623],[0.15833781659603,-0.1730625629425,0.20173336565495]],[[-0.02940284460783,-0.0011677127331495,0.066577471792698],[-0.092515535652637,-0.037797123193741,0.03584111109376],[-0.12528339028358,0.015066107735038,-0.046034596860409]],[[-0.016292771324515,0.046368733048439,0.080444797873497],[-0.0013774374965578,-0.052414551377296,0.0024131669197232],[-0.028229685500264,-0.031609676778316,-0.03536931425333]],[[-0.15300673246384,-0.020525809377432,0.19449599087238],[0.027024064213037,0.017805824056268,0.12531065940857],[0.083311468362808,-0.24637897312641,-0.024300379678607]],[[-0.29151239991188,-0.11956912279129,0.18954180181026],[0.049640480428934,-0.028661934658885,-0.0070939897559583],[-0.0065260166302323,-0.042411576956511,-0.0051619834266603]],[[0.029062936082482,-0.053535725921392,-0.023603200912476],[-0.020335599780083,0.013559625484049,-0.056070819497108],[0.0045950920321047,-0.16745872795582,-0.081154018640518]],[[-0.093925341963768,0.01773183979094,0.16161607205868],[-0.053912848234177,-0.026300340890884,0.031470563262701],[0.088164545595646,0.11207010596991,-0.058514792472124]],[[0.1695197224617,-0.16187682747841,0.072309277951717],[0.061259601265192,0.074454434216022,0.098948135972023],[0.063227906823158,0.046554174274206,-0.055429048836231]],[[-0.072394043207169,-0.04540067538619,0.033431954681873],[-0.069111570715904,-0.24563676118851,-0.050158999860287],[0.095588497817516,-0.065147891640663,-0.12828484177589]],[[-0.055997118353844,0.1071492806077,0.036936059594154],[0.0759382173419,-0.096893154084682,-0.11143982410431],[0.020014755427837,0.02188166603446,-0.035184666514397]],[[-0.045002408325672,0.069688282907009,0.051330633461475],[0.019579265266657,0.052054025232792,-0.061696715652943],[0.028494412079453,-0.095373228192329,-0.058146845549345]],[[0.00070461072027683,-0.18433959782124,-0.03659949451685],[0.019550114870071,-0.042976152151823,-0.04188533872366],[-0.084324650466442,-0.072403892874718,0.079992204904556]],[[0.0015888826455921,-0.024650262668729,0.04835444688797],[0.023153806105256,0.015759164467454,-0.0076606585644186],[-0.021496936678886,0.034802347421646,-0.055810537189245]],[[0.20140093564987,0.089063331484795,-0.12522454559803],[0.061098288744688,0.046893682330847,0.066078409552574],[-0.026299959048629,0.053995855152607,0.062035497277975]],[[-0.08397176861763,-0.026176607236266,-0.17046615481377],[-0.029916869476438,0.056882221251726,-0.15982100367546],[0.07236298173666,0.081092089414597,-0.075369760394096]],[[0.17381058633327,-0.11685185134411,-0.10537438839674],[0.02785224840045,0.081400841474533,-0.12250896543264],[-0.041894569993019,0.082237437367439,-0.016354497522116]],[[0.055401891469955,-0.18393856287003,0.079143717885017],[-0.053681310266256,-0.070154130458832,-0.053361870348454],[-0.016638185828924,0.10354508459568,0.22946256399155]],[[-0.13197180628777,-0.10952661931515,-0.26213049888611],[-0.095661751925945,0.00180791283492,0.19811940193176],[-0.19929534196854,0.031157806515694,-0.012860155664384]],[[-0.074546709656715,-0.0013728201156482,-0.073805764317513],[0.10399442911148,-0.087763957679272,-0.058771520853043],[0.096237495541573,-0.02820803783834,-0.058452364057302]],[[-0.087868116796017,-0.074205748736858,0.17282490432262],[0.10626506060362,-0.077395528554916,-0.042430184781551],[-0.14725452661514,0.0044620553962886,-0.0074933459982276]],[[-0.09859748929739,0.063707359135151,0.031260561197996],[0.28010866045952,0.11177253723145,-0.054145079106092],[-0.051995191723108,0.0059956558980048,0.011509678326547]],[[0.28418749570847,0.04589706286788,-0.10726553201675],[0.044438783079386,-0.097343347966671,-0.087783701717854],[-0.060724712908268,-0.22040905058384,-0.14325734972954]],[[-0.068872734904289,-0.098196387290955,-0.20432062447071],[0.0070145335048437,-0.1042036190629,0.10833115130663],[-0.12975527346134,0.034652967005968,-0.084696985781193]],[[-0.25024920701981,-0.1200795546174,-0.10117273032665],[0.093030661344528,0.069034598767757,-0.028511861339211],[0.13616871833801,-0.03610597550869,-0.01664206199348]],[[0.089883305132389,0.055980749428272,-0.03368454053998],[-0.020498933270574,-0.0058873244561255,0.065577879548073],[-0.055274400860071,0.034190617501736,-0.045082330703735]],[[0.097154133021832,-0.33903753757477,-0.11436133831739],[-0.030059106647968,-0.11488986760378,0.11055846512318],[0.10962168127298,-0.14844986796379,-0.14389556646347]],[[-0.021200299263,0.037232827395201,-0.14785325527191],[0.072099693119526,0.0010151573223993,-0.097580380737782],[-0.057265978306532,0.11895928531885,0.072321645915508]],[[-0.032225426286459,0.010311730206013,-0.1059527695179],[-0.014914780855179,0.031177550554276,-0.0039506480097771],[-0.12840230762959,0.056537289172411,0.074463337659836]],[[0.040329739451408,-0.10770815610886,0.10934525728226],[-0.10574542731047,-0.04405315592885,-0.0041859028860927],[-0.042926542460918,0.016433360055089,0.023412831127644]],[[-0.11583901196718,-0.0062110498547554,0.082418918609619],[-0.15189911425114,0.042380411177874,0.029214011505246],[-0.040876530110836,0.031321756541729,0.071338348090649]]],[[[-0.031714297831059,-0.023487428203225,0.15541091561317],[-0.010010454803705,-0.085500992834568,-0.037874311208725],[0.070010587573051,0.082700371742249,-0.0036529311910272]],[[0.084203034639359,0.030497072264552,-0.042213831096888],[-0.027928398922086,0.065767131745815,-0.0057904217392206],[0.0070195305161178,-0.0088051036000252,0.0052674962207675]],[[-0.1166370138526,-0.017558703199029,-0.028422465547919],[-0.016243096441031,-0.029516138136387,0.083164222538471],[-0.039069034159184,-0.12558770179749,-0.049040917307138]],[[-0.16187770664692,-0.15376618504524,0.31766659021378],[0.0026410445570946,-0.03286761790514,0.13021694123745],[0.097582072019577,-0.18460187315941,0.079220578074455]],[[-0.034994434565306,-0.095131307840347,-0.015842908993363],[-0.019752316176891,0.096487015485764,0.021727461367846],[0.0076930271461606,-0.0012143498752266,-0.049214944243431]],[[0.092064954340458,0.032284263521433,-0.0031210461165756],[0.035603787750006,-0.020687816664577,-0.081836268305779],[-0.064862214028835,-0.049861121922731,-0.021854106336832]],[[-0.11483450233936,0.096560902893543,0.047024119645357],[0.039395272731781,-0.0063001913949847,-0.05594389513135],[-0.046559773385525,-0.12678907811642,-0.16832138597965]],[[-0.088226936757565,-0.55135840177536,0.23976570367813],[0.1708977073431,-0.29445052146912,0.026839710772038],[0.017579440027475,0.033989701420069,0.099611200392246]],[[0.12874878942966,0.0040373308584094,-0.024330623447895],[-0.042754553258419,0.085778050124645,-0.037822347134352],[-0.12526862323284,-0.033317424356937,0.065935626626015]],[[0.10097599774599,0.11110170185566,-0.23009897768497],[-0.094457298517227,0.016036100685596,-0.23530027270317],[-0.11941403895617,0.070444904267788,-0.10576329380274]],[[-0.010083146393299,0.12397630512714,-0.070070214569569],[0.049757532775402,0.064472302794456,-0.14979293942451],[0.018012864515185,-0.039632584899664,-0.091865494847298]],[[-0.03786576166749,0.028345057740808,-0.052212242037058],[-0.015644542872906,0.0067321727983654,0.16839589178562],[-0.17542910575867,0.091281436383724,0.080138877034187]],[[-0.00036446933518164,-0.033464580774307,0.033380448818207],[0.028015401214361,-0.025366190820932,-0.3096943795681],[-0.001224200706929,0.021029945462942,-0.006789518520236]],[[-0.095482468605042,-0.083225153386593,0.12971118092537],[0.06436512619257,-0.016645045951009,0.17239983379841],[0.0014477957738563,-0.066738590598106,-0.052166670560837]],[[-0.014615018852055,0.063418686389923,-0.0017115821829066],[0.033429976552725,-0.010501905344427,-0.0024171329569072],[0.098703600466251,-0.062728621065617,-0.077110290527344]],[[0.12372019886971,-0.0075853737071157,-0.23158974945545],[0.040533032268286,-0.15657648444176,0.073837161064148],[0.087648160755634,-0.02458618208766,-0.040179289877415]],[[-0.053073283284903,-0.098605580627918,-0.41745609045029],[0.063081026077271,-0.014146112836897,-0.16760730743408],[-0.036669593304396,0.051031298935413,-0.047962799668312]],[[0.026830676943064,-0.048376064747572,-0.050445780158043],[0.044851459562778,0.094293437898159,-0.17764964699745],[-0.0082560433074832,0.10998707264662,-0.064907319843769]],[[-0.11829360574484,0.028143122792244,-0.047378767281771],[-0.013810632750392,0.043057449162006,0.023717055097222],[0.010273545980453,0.051380559802055,-0.043299365788698]],[[-0.07811775803566,-0.10362031310797,0.048297163099051],[-0.1156146004796,-0.018233548849821,-0.081229276955128],[0.010796828195453,-0.073338627815247,-0.14873939752579]],[[0.074660338461399,0.050795938819647,-0.098292320966721],[0.066267251968384,0.011959014460444,-0.15948730707169],[-0.054487034678459,-0.045888833701611,0.0031365707982332]],[[0.084739506244659,0.11652135848999,-0.019065296277404],[-0.00087664159946144,0.020187513902783,-0.052732180804014],[0.037773661315441,0.047344390302896,-0.036267757415771]],[[0.021950220689178,-0.010823933407664,-0.047584235668182],[-0.11188364773989,-0.048873797059059,0.13245829939842],[0.082578465342522,0.14617240428925,-0.10655169934034]],[[0.0028515907470137,-0.089666627347469,0.065394870936871],[0.071969047188759,0.04192727804184,0.059686791151762],[0.022914865985513,-0.048978853970766,-0.22993817925453]],[[-0.018620098009706,-0.1095394641161,-0.18763211369514],[-0.012240784242749,0.010878811590374,-0.016160545870662],[-0.028236648067832,-0.064294412732124,-0.023536553606391]],[[-0.028722720220685,-0.049975622445345,-0.16576839983463],[0.03838424757123,-0.060517702251673,0.041992880403996],[-0.0568707883358,0.022809976711869,0.033921156078577]],[[-0.032396197319031,-0.0096236066892743,-0.021218342706561],[-0.047278646379709,0.037791613489389,-0.0045992154628038],[0.027876967564225,0.079939357936382,0.031477034091949]],[[-0.015624932013452,0.160300552845,-0.062692329287529],[-0.041613876819611,0.069414727389812,0.036593314260244],[0.036039941012859,0.0082729207351804,0.0033701986540109]],[[0.021138975396752,0.072025381028652,-0.16503159701824],[-0.0075085335411131,-0.22744376957417,-0.090790599584579],[-0.085965633392334,-0.092674091458321,-0.037643153220415]],[[-0.13023988902569,-0.032942984253168,0.17049944400787],[0.0087840408086777,0.032965756952763,0.067588783800602],[0.055804990231991,0.012392465956509,-0.16438129544258]],[[-0.022685702890158,0.00098241376690567,0.13903580605984],[-0.12066182494164,0.0021497160196304,0.049822561442852],[-0.046867303550243,-0.12003368139267,0.081383250653744]],[[-0.074145816266537,0.12523998320103,0.037362083792686],[-0.092556700110435,0.072506010532379,-0.086103171110153],[-0.083225816488266,0.12075949460268,-0.098435044288635]]],[[[0.0078932913020253,-0.02556324005127,0.055717878043652],[-0.20665982365608,-0.1279174387455,-0.012318726629019],[-0.30276095867157,-0.13951507210732,-0.11822640895844]],[[0.049493849277496,-0.029986266046762,0.064716853201389],[-0.034448865801096,0.07500171661377,-0.041689194738865],[-0.044090270996094,-0.0047933030873537,0.013575790449977]],[[-0.22308754920959,-0.017341742292047,0.0040975753217936],[0.1564307808876,-0.040466148406267,-0.0009043799364008],[-0.079853624105453,-0.12138645350933,0.062917307019234]],[[-0.33129304647446,0.050535663962364,0.083053417503834],[0.08238086104393,0.054069042205811,-0.006420134101063],[-0.27602934837341,0.0035328562371433,0.12186875939369]],[[-0.033174514770508,0.032256692647934,-0.074943765997887],[-0.045962434262037,-0.0029183169826865,-0.10025492310524],[-0.048100836575031,-0.0011309059336782,-0.028379235416651]],[[0.034410856664181,-0.13335466384888,-0.040686462074518],[0.21521373093128,0.046552799642086,0.050559666007757],[0.0072133508510888,-0.050582714378834,-0.074163392186165]],[[-0.035455632954836,-0.1368516087532,-0.16908793151379],[-0.0063112741336226,0.10213705152273,0.058928448706865],[-0.20200428366661,0.083345681428909,-0.053239822387695]],[[0.1505363881588,0.029886856675148,0.011411540210247],[0.076418310403824,-0.017116606235504,0.025794629007578],[-0.031392112374306,-0.014742244035006,-0.03225564584136]],[[-0.031367380172014,-0.051705937832594,0.030197940766811],[-0.043381806463003,-0.0024146046489477,-0.28523805737495],[0.1020799279213,0.040567502379417,-0.00504958210513]],[[-0.0210269279778,0.055505499243736,0.0061506633646786],[0.036534488201141,0.0099812746047974,-0.14451822638512],[-0.05074817687273,0.052929244935513,0.022558018565178]],[[-0.029880354180932,-0.026483124122024,-0.082417815923691],[-0.05253192782402,-0.075902044773102,-0.025749333202839],[0.065481498837471,-0.072605475783348,0.031771373003721]],[[-0.18678598105907,0.064562678337097,0.10497110337019],[-0.20413568615913,-0.090073972940445,0.026672257110476],[-0.012949762865901,0.014441436156631,0.025038287043571]],[[-0.19728446006775,0.055948808789253,-0.02168095484376],[-0.13526847958565,0.062870435416698,0.16043926775455],[-0.1579515337944,-0.060256972908974,-0.14174850285053]],[[-0.070865020155907,-0.17089515924454,-0.018781941384077],[0.056209560483694,-0.06729032099247,0.10552063584328],[-0.21002382040024,-0.15660561621189,-0.0016736851539463]],[[-0.019059719517827,-0.029472233727574,0.049993775784969],[-0.011000980623066,0.12207219749689,0.047678824514151],[0.0063564856536686,-0.027932295575738,-0.029813474044204]],[[0.00059806602075696,0.13014498353004,-0.04498977586627],[0.12233020365238,-0.14445629715919,-0.014961729757488],[0.11248725652695,0.0091711031273007,-0.017430439591408]],[[0.077031798660755,-0.0079405726864934,0.00105587602593],[0.14387613534927,0.045277401804924,-0.019977185875177],[0.23675237596035,-0.051099322736263,-0.035307515412569]],[[-0.11207576096058,0.029926482588053,-0.11646810173988],[0.15879797935486,0.074458964169025,0.061883021146059],[0.019368395209312,-0.1341394931078,0.027211027219892]],[[-0.14191488921642,-0.19005773961544,-0.044748581945896],[-0.13991433382034,-0.010997958481312,0.019334392622113],[0.099842235445976,-0.060206260532141,0.013081569224596]],[[0.016611197963357,-0.099324487149715,-0.073325552046299],[0.063663274049759,-0.14158914983273,0.0021504904143512],[-0.12324257940054,0.067725084722042,-0.032705590128899]],[[0.084707356989384,-0.028013149276376,0.016072915866971],[0.20258751511574,-0.053637109696865,-0.1230645403266],[0.093194641172886,-0.01489856466651,0.12028303742409]],[[0.072839006781578,-0.10044821351767,-0.11276603490114],[-0.11719392240047,-0.16716203093529,-0.075306549668312],[-0.028780100867152,0.087201237678528,0.1917888969183]],[[0.067634902894497,0.081196956336498,-0.073644071817398],[-0.031968574970961,0.063798047602177,0.17160391807556],[-0.060851112008095,-0.12461575865746,-0.10333007574081]],[[0.10517611354589,-0.034792244434357,0.061057791113853],[-0.064452767372131,0.099533945322037,0.00079860351979733],[-0.064914584159851,-0.068388924002647,0.007324225269258]],[[-0.084134735167027,-0.076456718146801,-0.063123926520348],[-0.11946197599173,0.0070643536746502,-0.20392712950706],[0.078524120151997,0.11356119066477,-0.14832578599453]],[[-0.080373369157314,-0.08210926502943,0.027975022792816],[0.13355441391468,0.041146751493216,0.053241904824972],[0.22000859677792,-0.10255001485348,0.11826727539301]],[[0.042586799710989,-0.00039810748421587,-0.064825884997845],[0.073095820844173,-0.048387758433819,-0.026222847402096],[0.038294494152069,-0.036477793008089,-0.0078280214220285]],[[-0.015623107552528,-0.074565760791302,0.030948672443628],[0.0077083855867386,0.048801243305206,-0.014381136745214],[0.21757009625435,0.071597598493099,0.04089156165719]],[[-0.049337904900312,-0.21242852509022,-0.00092152913566679],[-0.104183845222,-0.20189628005028,-0.039939448237419],[0.052996564656496,-0.14387701451778,0.036648530513048]],[[0.0090306745842099,0.011191718280315,-0.084364965558052],[0.13114160299301,-0.055443972349167,-0.010773973539472],[-0.042341366410255,0.041779059916735,0.056783605366945]],[[0.13355745375156,-0.12937006354332,0.078170336782932],[0.033872433006763,-0.052786082029343,0.11681126058102],[-0.080747224390507,0.093376681208611,-0.096799209713936]],[[0.030015336349607,-0.010029343888164,0.0091718733310699],[-0.026760205626488,0.016420444473624,-0.10693276673555],[-0.11620637029409,0.046912986785173,0.10044556111097]]],[[[-0.046323575079441,-0.10166149586439,-0.03234525769949],[0.043598771095276,-0.031427305191755,0.022659862414002],[0.10827894508839,-0.0042307092808187,0.0053165624849498]],[[-0.03916709125042,-0.11605516076088,-0.12895354628563],[-0.055222570896149,-0.16058523952961,-0.1313432008028],[-0.12935660779476,-0.054204784333706,-0.089790292084217]],[[-0.010319018736482,-0.016879877075553,-0.019109923392534],[0.034325674176216,0.017361029982567,0.044351931661367],[0.0075055784545839,-0.070029936730862,0.0077817933633924]],[[0.0017587051261216,-0.053028717637062,0.018383286893368],[-0.03796898573637,0.076695330440998,0.016222251579165],[-0.036085914820433,-0.0037693551275879,0.0098530603572726]],[[-0.098362699151039,-0.14929366111755,-0.057857643812895],[-0.066793076694012,-0.14924375712872,-0.030324833467603],[0.026630900800228,-0.036999728530645,-0.084548063576221]],[[-0.038866579532623,-0.024418514221907,0.045576646924019],[0.027404651045799,-0.036985155194998,-0.024410786107183],[0.026163389906287,0.020225817337632,-0.022445326671004]],[[0.056850966066122,-0.011393675580621,0.018108926713467],[-0.059993382543325,-0.025096297264099,-0.039592832326889],[0.018474452197552,-0.0021746589336544,0.019277891144156]],[[0.015487018041313,0.02556786313653,-0.0033543284516782],[-0.13103243708611,0.11586678028107,-0.021762408316135],[-0.046237912029028,-0.021645059809089,0.05436833947897]],[[-0.016911946237087,-0.06813832372427,-0.059559315443039],[-0.036106985062361,-0.090022496879101,-0.16281591355801],[0.015229498967528,-0.14483535289764,-0.052416436374187]],[[0.08307134360075,0.0015997636364773,0.038658156991005],[-0.036822497844696,-0.045132450759411,-0.050088703632355],[-0.013944037258625,0.028599191457033,0.00083542009815574]],[[0.038429424166679,0.022537473589182,0.091904029250145],[-0.081244483590126,-0.026779744774103,0.034321665763855],[-0.1097364500165,0.0016226910520345,-0.013714185915887]],[[-0.09352819621563,0.035565968602896,0.040005210787058],[-0.021093247458339,0.014482974074781,0.026005664840341],[-0.05768184736371,-0.090764954686165,0.062200590968132]],[[0.011327377520502,-0.0010950658470392,0.0066608381457627],[0.047964494675398,-0.1133775934577,-0.10756631940603],[0.076185375452042,0.014890495687723,0.059272978454828]],[[0.048387680202723,0.056786555796862,0.01224853657186],[-0.016561171039939,-0.07542047649622,0.020894015207887],[-0.012855057604611,0.069649294018745,-0.10794428735971]],[[-0.14145171642303,-0.082568719983101,-0.034101996570826],[-0.097671285271645,-0.15157067775726,-0.029999716207385],[-0.15416391193867,-0.10587127506733,-0.082279019057751]],[[-0.024424973875284,-0.054896634072065,-0.0099632861092687],[0.017658894881606,0.0344457924366,-0.0010366328060627],[0.053890276700258,-0.014685128815472,-0.016081493347883]],[[0.015280078165233,0.0448864325881,0.00011857097706525],[-0.040046434849501,-0.081184603273869,0.062054492533207],[-0.089680083096027,0.0096320919692516,0.049620322883129]],[[0.020480548962951,-0.019454704597592,0.031886391341686],[0.023260541260242,-0.044946175068617,-0.011429943144321],[0.013066283427179,-0.021509284153581,0.0017937895609066]],[[0.032909736037254,0.045018028467894,-0.076905377209187],[-0.035801898688078,-0.092045366764069,-0.10835511237383],[0.098602809011936,0.032830499112606,0.063093811273575]],[[0.043021250516176,0.029083350673318,0.010732663795352],[0.001508001354523,-0.043147519230843,0.048187877982855],[-0.045417763292789,0.0017391740111634,-0.047584783285856]],[[-0.031342603266239,0.043451223522425,-0.023468626663089],[0.0054264254868031,-0.086124666035175,-0.034053180366755],[0.068721570074558,-0.17716272175312,0.064165070652962]],[[-0.08674156665802,0.030894121155143,-0.017765570431948],[0.065780155360699,0.025034248828888,0.039772719144821],[-0.012055266648531,0.003189220558852,-0.040040899068117]],[[-0.0095739662647247,0.060882449150085,-0.043898314237595],[-0.021073265001178,-0.035875100642443,0.057972367852926],[0.023484205827117,-0.033434763550758,0.0065992437303066]],[[-0.025215376168489,0.051154259592295,-0.047374397516251],[-0.0023958466481417,0.024778624996543,-0.015824906527996],[-0.012512095272541,0.033527061343193,-0.015278003178537]],[[0.071494713425636,0.026519803330302,-0.028682177886367],[0.089730136096478,0.052368897944689,-0.096047438681126],[-0.043673537671566,-0.017861884087324,-0.042353346943855]],[[-0.048176553100348,0.026916166767478,0.012880774214864],[0.051194570958614,-0.0011678363662213,-0.044211272150278],[-0.10302446782589,0.0857258066535,0.0019542772788554]],[[0.076760023832321,0.063037380576134,0.057334091514349],[0.12872856855392,0.14493487775326,0.062288451939821],[-0.028597621247172,0.12628392875195,0.070806473493576]],[[0.0072751534171402,-0.056302763521671,-0.006792644970119],[0.045484870672226,0.071449354290962,-0.022773379459977],[0.060055702924728,-0.047563869506121,-0.05392799526453]],[[0.081343047320843,-0.019594712182879,-0.019903620705009],[0.024938486516476,-0.074906900525093,0.087446726858616],[0.032299771904945,-0.055713351815939,-0.036356061697006]],[[0.052722241729498,0.012653478421271,0.03545306250453],[0.02785419113934,0.13693183660507,0.063653156161308],[0.10195829719305,-0.039525311440229,0.028869215399027]],[[-0.081610456109047,-0.045256700366735,0.087833493947983],[-0.043447073549032,-0.088118702173233,0.028544504195452],[0.029163310304284,-0.0054446831345558,0.076454065740108]],[[-0.037336837500334,-0.047215584665537,0.024500450119376],[-0.072877064347267,0.0089821573346853,0.029684444889426],[-0.021358378231525,0.073966525495052,0.055174257606268]]],[[[-0.17472042143345,-0.29336187243462,0.030004497617483],[-0.0021643661893904,-0.077723897993565,0.000829350319691],[-0.044714022427797,0.063591472804546,0.13893793523312]],[[-0.037873920053244,0.028737772256136,-0.016737304627895],[-0.044074211269617,0.037899989634752,-0.047273963689804],[0.12414501607418,0.13730359077454,0.00970852188766]],[[-0.056560821831226,-0.070735678076744,-0.21449659764767],[-0.19746412336826,-0.065597251057625,-0.060784265398979],[0.021731298416853,0.042843744158745,-0.13118299841881]],[[-0.22616705298424,0.019110573455691,-0.029357606545091],[0.075608819723129,0.03489988297224,-0.0059867012314498],[-0.045199695974588,0.13591223955154,-0.020266830921173]],[[0.040052827447653,-0.11242463439703,-0.050087437033653],[0.0049080038443208,-0.061676941812038,0.14035376906395],[-0.12665854394436,-0.0050259903073311,0.060707274824381]],[[-0.067877925932407,0.044181149452925,-0.13201452791691],[-0.018670033663511,0.040960118174553,-0.00082252692664042],[0.11730604618788,0.013163298368454,0.1275806427002]],[[-0.16388222575188,-0.032136615365744,-0.033369097858667],[0.056733440607786,0.011977992020547,-0.12710160017014],[0.033807098865509,0.14145167171955,-0.28884091973305]],[[-0.14814160764217,-0.27059704065323,0.039577096700668],[-0.038767982274294,0.0082704089581966,-0.039081893861294],[-0.056838888674974,0.033032689243555,0.018182056024671]],[[-0.039390776306391,0.024633351713419,-0.078295648097992],[-0.039043195545673,-0.043563954532146,-0.057505920529366],[-0.14201812446117,-0.25649508833885,-0.038386698812246]],[[-0.12835459411144,0.041348200291395,-0.074080482125282],[-0.0072550033219159,0.059928946197033,-0.040971927344799],[-0.013453273102641,-0.0082444697618484,-0.042409621179104]],[[-0.043512240052223,0.041287556290627,-0.066615007817745],[0.016137976199389,0.081644117832184,-0.053474418818951],[0.018942778930068,0.032774213701487,-0.11353624612093]],[[-0.24487809836864,-0.1697591394186,-0.024664057418704],[-0.10201639682055,-0.013267016038299,0.11969148367643],[0.0218102093786,-0.16782960295677,0.20870094001293]],[[-0.047814145684242,-0.09781439602375,-0.11122741550207],[-0.028171272948384,0.033616170287132,-0.12644471228123],[-0.053176172077656,0.046056572347879,-0.048431061208248]],[[-0.017873516306281,0.087592430412769,-0.026442030444741],[0.096801370382309,-0.063245579600334,-0.04853443428874],[0.0057986536994576,-0.22913378477097,-0.096496298909187]],[[0.048243578523397,-0.00055743136908859,0.011798363178968],[0.00064724707044661,-0.037191346287727,-0.076167054474354],[0.054477244615555,0.028051448985934,0.038133274763823]],[[-0.13179543614388,-0.061896659433842,0.10401949286461],[-0.062538556754589,-0.093586437404156,0.13030715286732],[0.020887931808829,-0.15087784826756,0.15288317203522]],[[-0.038397688418627,-0.05163237825036,-0.030122691765428],[-0.082911789417267,-0.14186218380928,-0.23024518787861],[0.004798493348062,0.033716399222612,-0.29387453198433]],[[0.14841912686825,0.12354929000139,0.064628012478352],[0.1625792235136,0.016055727377534,-0.041818015277386],[-0.12300229817629,-0.027264846488833,0.011580102145672]],[[0.11753071844578,0.023809164762497,-0.004030414391309],[-0.02536447905004,0.07266791164875,0.062856525182724],[-0.0042776907794178,0.084011301398277,-0.064895302057266]],[[-0.010751297697425,-0.11310216784477,-0.035465925931931],[-0.011755311861634,-0.10634649544954,0.023727208375931],[-0.066511519253254,0.084102995693684,-0.016736602410674]],[[0.036645416170359,-0.062767282128334,-0.030351048335433],[-0.14447122812271,-0.11911638826132,0.031866267323494],[0.02401770837605,0.10137863457203,-0.22386328876019]],[[0.065993458032608,0.13811838626862,-0.058466970920563],[-0.00095576129388064,0.060952492058277,0.037838116288185],[0.095529779791832,-0.096937224268913,0.00094232539413497]],[[-0.27612972259521,-0.0088167143985629,0.032822627574205],[0.14928135275841,-0.013121754862368,0.017333621159196],[0.008108738809824,0.14835253357887,-0.014362693764269]],[[-0.021200157701969,0.0090293623507023,-0.0038651467766613],[-0.0085361981764436,-0.0739361718297,-0.065234422683716],[0.016897544264793,-0.0067430618219078,-0.041080974042416]],[[0.060208413749933,0.13255412876606,-0.14914326369762],[-0.11551550775766,-0.042482014745474,-0.15768963098526],[0.014133293181658,0.12673816084862,0.0083726495504379]],[[-0.016934169456363,0.00014918150554877,-0.18825607001781],[-0.057683933526278,0.17608867585659,0.11718039959669],[0.069620385766029,-0.095535159111023,-0.09717757999897]],[[0.026171190664172,-0.017339397221804,-0.016422964632511],[0.16844123601913,0.055465798825026,-0.04044071957469],[-0.0086382171139121,-0.057704973965883,-0.045276910066605]],[[0.048755116760731,-0.1056138202548,-0.0062070805579424],[-0.094003736972809,0.18098150193691,0.096093103289604],[-0.12469919770956,0.076673343777657,0.13063588738441]],[[-0.046308431774378,-0.082015991210938,-0.022458927705884],[-0.26856645941734,-0.10673087835312,-0.11448036134243],[-0.089998356997967,0.023470710963011,0.051755771040916]],[[-0.10776855796576,0.12035814672709,-0.001496663549915],[-0.018214950338006,-0.059410143643618,-0.0017163268057629],[-0.11812818795443,0.043047178536654,0.09756763279438]],[[0.075364723801613,0.035500828176737,-0.036254074424505],[-0.09490805119276,0.090198755264282,0.00037977457395755],[0.035729568451643,-0.20127888023853,0.061522971838713]],[[0.2175577133894,0.043994233012199,0.026987381279469],[-0.16511929035187,0.17623913288116,-0.12709355354309],[-0.10911308974028,-0.049932699650526,-0.013177026063204]]],[[[0.053011693060398,-0.2102143317461,-0.006728058680892],[0.054631363600492,0.047054398804903,-0.097219899296761],[0.038362856954336,-0.08745139092207,0.10950803011656]],[[-0.083357453346252,-0.026709014549851,-0.018485704436898],[0.059606056660414,0.024656696245074,-0.0069269710220397],[0.0090718548744917,-0.0071734646335244,0.043782334774733]],[[0.10776255279779,-0.0022521645296365,0.24430996179581],[0.010600524954498,-0.1530747115612,-0.054392378777266],[-0.078034356236458,-0.12209349870682,0.20657660067081]],[[0.30044317245483,0.27499857544899,-0.098214969038963],[-0.12246686965227,-0.14342038333416,-0.11894576251507],[-0.037609662860632,0.064929530024529,0.037043303251266]],[[0.034489378333092,-0.11874783784151,-0.089960686862469],[0.15246383845806,0.098074465990067,-0.047924470156431],[-0.040362786501646,0.012075797654688,0.103978484869]],[[-0.039801530539989,-0.20214940607548,-0.12680135667324],[0.0056916070170701,-0.11289990693331,-0.17826494574547],[0.040085382759571,-0.0076585812494159,0.013017822988331]],[[0.087051905691624,0.090121060609818,0.013106783851981],[-0.00034593147574924,0.091640450060368,0.023115362972021],[-0.023500731214881,0.016098242253065,-0.080117344856262]],[[-0.11825101822615,0.076123982667923,0.068285003304482],[-0.36924529075623,-0.21106605231762,-0.13017837703228],[0.05447194725275,0.10023009777069,0.084275960922241]],[[0.081350415945053,-0.056619316339493,-0.050952132791281],[0.076268844306469,-0.15356603264809,-0.02537227421999],[0.14691612124443,-0.016378104686737,0.089071817696095]],[[0.012359334155917,-0.017464492470026,0.092671811580658],[0.080502539873123,0.09527425467968,-0.01598390378058],[-0.17238627374172,-0.092584334313869,-0.034112859517336]],[[-0.24806444346905,-0.030401986092329,-0.057248342782259],[0.087748542428017,0.2144129127264,-0.017828941345215],[-0.13633953034878,-0.035260863602161,-0.055981375277042]],[[-0.15038391947746,-0.11098252236843,0.027292672544718],[-0.02360587194562,-0.027819694951177,-0.10066637396812],[0.18435814976692,0.0106330960989,0.11495290696621]],[[0.0053469780832529,0.024110304191709,0.055676501244307],[-0.21004481613636,0.044874981045723,-0.12082804739475],[-0.087688028812408,0.083106361329556,0.017826406285167]],[[0.11348991841078,0.11877623200417,-0.073020525276661],[-0.20954595506191,-0.21567536890507,-0.16733269393444],[0.00061805621953681,-0.0040754480287433,0.049259934574366]],[[-0.03537367656827,0.007081541698426,-0.085319370031357],[0.039793748408556,0.092524491250515,0.012928366661072],[0.039192650467157,-0.02057489939034,0.0039144898764789]],[[-0.0022393837571144,-0.0078467866405845,0.021136222407222],[-0.039153352379799,-0.13501690328121,0.057858284562826],[-0.058965668082237,-0.11879125982523,-0.054449409246445]],[[-0.020850183442235,0.12644720077515,0.057975504547358],[-0.022195678204298,-0.059915959835052,0.075292564928532],[-0.064302898943424,-0.090088561177254,-0.11352553218603]],[[-0.071067102253437,-0.11806716024876,-0.080741949379444],[-0.083779409527779,-7.9543224273948e-06,0.048527538776398],[-0.015997326001525,0.010575922206044,-0.022671306505799]],[[0.040981322526932,-0.022453974932432,-0.24323074519634],[0.014435393735766,-0.088331215083599,-0.12781050801277],[0.063767068088055,0.041331421583891,-0.039604149758816]],[[-0.01710257306695,-0.15833832323551,0.11985182017088],[-0.045812275260687,0.024025399237871,-0.094744227826595],[0.037599958479404,-0.072509214282036,0.05173821747303]],[[-0.19204989075661,-0.10548178106546,-0.1294477134943],[-0.11601664870977,0.098827362060547,-0.0052150674164295],[-0.067637883126736,-0.064907416701317,-0.027808465063572]],[[-0.012285904958844,-0.27544030547142,0.026592712849379],[-0.022870512679219,0.00018294563051313,0.0088227493688464],[0.085712380707264,-0.086776189506054,0.051710162311792]],[[-0.01811788789928,0.17087751626968,0.11437037587166],[-0.094596154987812,-0.0084017980843782,-0.053946316242218],[0.032291781157255,0.13246318697929,-0.079670064151287]],[[-0.092738054692745,-0.04091302677989,0.00053862284403294],[0.12821242213249,0.0091308150440454,0.10823892056942],[-0.10347522050142,-0.16178688406944,-0.086539030075073]],[[-0.013688022270799,-0.072021655738354,-0.073907569050789],[-0.06937650591135,0.11423403769732,-0.00058036495465785],[-0.12924155592918,-0.025053763762116,-0.08156318962574]],[[-0.07202459871769,0.080170080065727,0.10266958922148],[0.14473280310631,-0.038288045674562,-0.12902925908566],[0.048764411360025,0.033957824110985,0.10093719512224]],[[0.006860832683742,0.0051653664559126,-0.054058358073235],[-0.066199660301208,0.030365580692887,0.0055142161436379],[0.061816766858101,0.00836191046983,-0.0091864746063948]],[[-0.03001189045608,-0.054153773933649,0.10570701956749],[0.16550302505493,0.10183023661375,0.022435065358877],[-0.058400876820087,0.08523853123188,-0.00087870657444]],[[-0.12948970496655,-0.030528074130416,-0.00030471596983261],[-0.14319963753223,-0.036713350564241,0.18296334147453],[0.0068550705909729,0.077019691467285,-0.018157025799155]],[[0.14250007271767,0.065903797745705,-0.01762193068862],[-0.0428845025599,0.064061746001244,0.021115701645613],[-0.066747523844242,-0.15702413022518,0.019368391484022]],[[0.046025950461626,0.057565130293369,-0.057584173977375],[-0.028800021857023,-0.10434529930353,-0.011478859931231],[-0.022042782977223,-0.019252760335803,-0.0058381571434438]],[[-0.13635370135307,-0.13314117491245,-0.074984192848206],[-0.099915988743305,0.0058341780677438,0.068642184138298],[0.0079698404297233,0.12713462114334,0.049534153193235]]],[[[-0.18051362037659,0.042296625673771,-0.31758853793144],[-0.026786243543029,0.0079045854508877,-0.25010803341866],[0.11628537625074,0.0044114291667938,0.095210142433643]],[[-0.015989352017641,0.13064457476139,-0.034934584051371],[-0.0051623084582388,-0.070791617035866,0.014848749153316],[0.08161897957325,0.028868447989225,-0.012008270248771]],[[-0.079382181167603,-0.033278468996286,-0.079490892589092],[-0.085056357085705,0.15167690813541,0.022531582042575],[0.024325709789991,0.14796096086502,0.18710382282734]],[[0.12523385882378,0.078279472887516,-0.13188748061657],[-0.010986254550517,-0.013182283379138,-0.0060075703077018],[-0.075076691806316,-0.0027352345641702,0.047670658677816]],[[-0.046737395226955,-0.073735356330872,0.070887722074986],[-0.03141725063324,-0.041016578674316,0.018228959292173],[0.13139067590237,-0.0010923861991614,-0.082711488008499]],[[-0.23402814567089,0.0020711915567517,-0.26346126198769],[-0.24844253063202,0.086349867284298,-0.016103515401483],[-0.087330423295498,-0.012154129333794,0.063423871994019]],[[-0.07032223790884,0.12648710608482,-0.31154271960258],[-0.006132252048701,0.0043590371496975,0.10897108912468],[-0.092247880995274,-0.048905082046986,-0.047289032489061]],[[-0.022116577252746,0.089582748711109,-0.13919141888618],[0.088532261550426,-0.01043854560703,0.013784778304398],[-0.14387053251266,0.092281021177769,0.048569932579994]],[[-0.10355009883642,0.028923068195581,-0.015983384102583],[-0.084681771695614,0.077298015356064,-0.063673250377178],[-0.062985382974148,0.019073877483606,-0.05085951089859]],[[-0.099545910954475,0.18482002615929,-0.048345845192671],[-0.14415277540684,0.001833229791373,-0.075182110071182],[-0.04939254373312,0.093190766870975,0.04374073445797]],[[0.015524969436228,-0.050092741847038,-0.15928021073341],[0.011334975250065,-0.069167949259281,-0.079049311578274],[-0.029890231788158,0.036562986671925,0.025838261470199]],[[0.11610598117113,0.073542304337025,-0.0097370827570558],[-0.0051303599029779,-0.044126067310572,-0.038094907999039],[0.0071854260750115,-0.068238012492657,0.056471139192581]],[[-0.25273838639259,-0.12717644870281,-0.18907368183136],[-0.12070320546627,0.13189458847046,-0.046108074486256],[-0.093930184841156,0.05700908601284,0.011886639520526]],[[0.075034059584141,-0.1882985830307,-0.1626939624548],[-0.060344304889441,-0.081488989293575,-0.12048369646072],[-0.00015044889005367,0.064190700650215,-0.032047230750322]],[[0.09884487837553,-0.074636839330196,-0.01436236128211],[0.083134137094021,0.012391143478453,-0.035511877387762],[0.030673297122121,-0.034824464470148,0.011032039299607]],[[-0.051669362932444,-0.17719604074955,0.35535418987274],[0.058538716286421,0.01258784160018,0.1340519785881],[0.10645482689142,-0.2449556440115,0.027981474995613]],[[0.11444079875946,0.19699148833752,0.033682875335217],[0.084482125937939,-0.064204767346382,-0.10293585062027],[-0.15602166950703,-0.010407484136522,-0.18873998522758]],[[0.0073564350605011,-0.0059436894953251,0.21487577259541],[0.087928839027882,-0.013819769956172,0.13991361856461],[-0.06358502805233,-0.10977221280336,-0.12899461388588]],[[-0.14611700177193,-0.032927833497524,-0.20078331232071],[-0.13752821087837,-0.013979525305331,-0.033764194697142],[0.0073508867062628,0.00011051156616304,0.0030628235545009]],[[-0.052655819803476,-0.039585202932358,-0.18016578257084],[0.06743174046278,-0.14265704154968,-0.15033248066902],[0.12675257027149,0.035611022263765,-0.24768735468388]],[[-0.057819563895464,0.086458198726177,-0.038585375994444],[0.02472760155797,0.12811334431171,0.02822064049542],[-0.07881822437048,0.038323432207108,-0.030476467683911]],[[-0.035816788673401,-0.0092422310262918,-0.14537930488586],[-0.019777404144406,-0.024046950042248,-0.0098079619929194],[0.067139752209187,-0.074361406266689,-0.039471417665482]],[[0.033927507698536,-0.044691380113363,0.27005177736282],[0.036873366683722,0.12190793454647,-0.014975592494011],[-0.01633464731276,0.018128821626306,-0.044564511626959]],[[-0.16176955401897,0.048336993902922,0.08856974542141],[-0.059616442769766,-0.0087758591398597,-0.059013336896896],[-0.18382875621319,-0.070050992071629,0.0134193059057]],[[-0.048051699995995,0.022992398589849,0.099134176969528],[-0.096373625099659,-0.014574278146029,-0.16291037201881],[0.0041144713759422,-0.059234656393528,-0.15837669372559]],[[0.066543467342854,0.17702284455299,-0.098911441862583],[-0.04040477797389,-0.10237853974104,-0.12970159947872],[0.071280553936958,-0.048038020730019,-0.04118537902832]],[[0.0014406340196729,0.055732242763042,0.050774347037077],[-0.03506251424551,-0.062005907297134,0.10393972694874],[-0.06481658667326,-0.0050766300410032,0.027948277071118]],[[0.21320752799511,0.012040211819112,-0.051659733057022],[0.20090447366238,0.056756239384413,-0.26874133944511],[0.15413811802864,-0.050583604723215,-0.10711950808764]],[[0.0020023384131491,0.085911020636559,-0.005461466498673],[0.064869806170464,0.074679709970951,0.054304290562868],[-0.06544267386198,-0.026505390182137,0.15970706939697]],[[0.071028426289558,-0.06349091231823,0.01100149191916],[-0.057028949260712,0.00051823153626174,-0.020116157829762],[-0.097194373607635,-0.014413570985198,0.0093405749648809]],[[0.045361943542957,-0.10993125289679,-0.017424738034606],[-0.073477707803249,0.099877595901489,-0.049570601433516],[-0.062974236905575,0.13961598277092,-0.10920570790768]],[[-0.24883437156677,-0.0083969254046679,-0.31622728705406],[-0.096748627722263,-0.1612733900547,0.24273127317429],[0.04934286698699,0.06027028337121,0.029947118833661]]],[[[-0.046830676496029,-0.048548728227615,-0.063905708491802],[-0.061186742037535,0.054563153535128,0.051168087869883],[0.032640308141708,-0.11691074073315,0.059019237756729]],[[0.0012097466969863,-0.032642111182213,-0.01312178466469],[-0.02021200209856,-0.080856770277023,0.082967147231102],[0.0018360510002822,0.02375571615994,0.027168719097972]],[[0.010463923215866,-0.036589309573174,-0.023289466276765],[-0.10886923968792,-0.0081776333972812,-0.059554733335972],[-0.0078373644500971,0.072476767003536,0.042954441159964]],[[-0.0020246880594641,-0.050423350185156,-0.039272624999285],[0.1380487382412,-0.017110858112574,0.084596313536167],[-0.088366910815239,0.050598975270987,0.16787341237068]],[[-0.024636337533593,-0.087786599993706,-0.011778566986322],[0.054201405495405,0.0043968292884529,-0.0053148367442191],[0.02019665017724,-0.1497018635273,0.046595133841038]],[[-0.0032394554000348,0.0825574696064,-0.056775007396936],[-0.11807330697775,0.088325202465057,-0.04138046130538],[-0.0069509358145297,-0.086934886872768,0.046106606721878]],[[0.07494679838419,0.16786849498749,0.0012661209329963],[0.017989547923207,-0.10515693575144,0.044437769800425],[-0.05036436766386,-0.023344676941633,-0.00029706943314523]],[[0.097947277128696,-0.037442110478878,0.015524250455201],[-0.058752100914717,0.14428247511387,0.047651171684265],[0.03096380084753,0.12439607828856,0.09013406932354]],[[-0.031218620017171,-0.060975383967161,-0.029252937063575],[-0.0068418891169131,0.038961905986071,0.02050294354558],[0.040188882499933,0.040893144905567,0.050063420087099]],[[-0.050179056823254,0.053599704056978,0.054262310266495],[0.092593543231487,-0.048241164535284,-0.10379372537136],[0.23474968969822,0.088347613811493,-0.14218251407146]],[[-0.075743421912193,-0.013975921086967,-0.038832571357489],[0.061578068882227,-0.087115623056889,-0.16143587231636],[0.053740184754133,-0.053232844918966,0.10524958372116]],[[0.10824122279882,0.091495618224144,0.068552605807781],[0.10822481662035,-0.054033987224102,0.096378766000271],[-0.0082679893821478,-0.0025848583318293,0.14516739547253]],[[-0.026344316080213,-0.11180739104748,0.063210465013981],[0.080200523138046,-0.021402634680271,-0.11941973865032],[0.057249777019024,-0.0093626352027059,-0.0015379561809823]],[[0.059581469744444,-0.008025037124753,-0.0019539389759302],[0.083334214985371,0.10195764899254,0.066963568329811],[-0.03860692679882,0.1078343167901,0.080601312220097]],[[0.018077004700899,0.083020985126495,-0.075242079794407],[0.021340789273381,-0.031156355515122,-0.057581324130297],[0.031791966408491,0.066786609590054,0.04775371029973]],[[-0.20527341961861,0.035086259245872,0.11428433656693],[-0.10322289913893,-0.05641045793891,0.093339584767818],[0.068690687417984,0.088044673204422,0.13076338171959]],[[0.050779536366463,-0.0043918713927269,-0.076212763786316],[0.037913244217634,0.046383455395699,-0.067267201840878],[0.12179648131132,0.056910764425993,0.023468500003219]],[[0.058763273060322,-0.084253564476967,-0.15168204903603],[0.0038817853201181,-0.018798245117068,0.10515066236258],[0.05831253528595,0.098138749599457,0.027530720457435]],[[0.084486417472363,0.033499330282211,-0.0043928381055593],[-0.069129027426243,-0.13059717416763,-0.089790634810925],[-0.126345962286,0.020335571840405,0.094902217388153]],[[-0.033286314457655,0.12469606101513,-0.1324732452631],[-0.08729100227356,0.056213688105345,-0.076148599386215],[-0.030690146610141,-0.0073406798765063,0.12183271348476]],[[-0.0022144336253405,0.013024905696511,0.0052224416285753],[0.024436766281724,-0.044100426137447,-0.036866031587124],[-0.0487444922328,-0.14974565804005,0.10645999759436]],[[0.034367855638266,-0.026033256202936,0.010842902585864],[-0.014310733415186,0.0017411512089893,0.092719539999962],[-0.004726265091449,0.031394373625517,0.075279854238033]],[[0.044026896357536,-0.0064089330844581,0.038777720183134],[0.0086641414090991,0.15214441716671,-0.10735918581486],[0.049202959984541,-0.044488631188869,0.041405167430639]],[[0.042754635214806,0.049411300569773,0.19060139358044],[-0.063902728259563,-0.046011932194233,-0.13643422722816],[0.038555715233088,-0.23583480715752,-0.028785385191441]],[[0.044982563704252,-0.013863696716726,0.08529768884182],[-0.032059885561466,-0.041417226195335,0.018695624545217],[-0.018272534012794,-0.08848237991333,0.021653536707163]],[[0.20337247848511,0.078066259622574,-0.014590568840504],[-0.036305919289589,-0.028268992900848,0.051594041287899],[-0.1770037561655,0.032321035861969,-0.0023571664933115]],[[-0.019926683977246,0.12742637097836,0.023882629349828],[-0.089017890393734,0.01531630102545,0.034928359091282],[-0.04505929723382,0.062458578497171,0.087096959352493]],[[-0.10040747374296,0.033062428236008,-0.11020087450743],[-0.054284799844027,0.14672321081161,-0.052665457129478],[-0.16732288897038,-0.1525934189558,0.021199177950621]],[[0.086720302700996,-0.0017920637037605,-0.0065384763292968],[-0.0083999410271645,0.062671236693859,0.023755688220263],[0.050601467490196,0.016268294304609,-0.10003911703825]],[[0.050922706723213,-0.12148556858301,0.00067668198607862],[0.052741140127182,-0.036915875971317,-0.11807110905647],[0.020084382966161,0.064393453299999,-0.019289234653115]],[[-0.0070999497547746,0.024335799738765,-0.090441897511482],[-0.057725984603167,0.034861460328102,-0.076566651463509],[-0.057959120720625,-0.1204810962081,0.018485879525542]],[[0.0041857147589326,-0.031873635947704,-0.098510310053825],[-0.12761998176575,0.16191798448563,0.10250097513199],[0.073716640472412,0.10249130427837,-0.056374307721853]]],[[[0.1201198771596,0.065597638487816,-0.10326008498669],[0.06743112206459,-0.044443212449551,-0.041977308690548],[0.079888969659805,0.045339856296778,-0.1129504442215]],[[0.003033502958715,0.099235750734806,0.03416819870472],[0.056880280375481,0.027390303090215,-0.0064643090590835],[-0.0098568964749575,0.0038430651184171,-0.0079665808007121]],[[0.023669142276049,0.10846292972565,-0.11160627752542],[-0.00040521967457607,0.25895068049431,-0.01427555270493],[-0.12080605328083,-0.035123206675053,-0.081410266458988]],[[-0.08903356641531,0.026868373155594,0.07910842448473],[0.13681522011757,0.090223699808121,0.12970209121704],[-0.22772395610809,-0.078887291252613,0.053874261677265]],[[-0.05829768627882,-0.079901687800884,-0.086680941283703],[0.069768033921719,-0.057546380907297,0.0076329279690981],[0.10999176651239,-0.013524826616049,-0.06330731511116]],[[-0.02388496696949,0.089465752243996,-0.16042044758797],[0.016505569219589,-0.064103230834007,0.055976644158363],[0.029728855937719,0.21620263159275,0.067671127617359]],[[0.029702277854085,-0.058652956038713,0.10914395749569],[0.0055725993588567,0.074517354369164,-0.088637501001358],[-0.049947772175074,-0.13864986598492,-0.1091767847538]],[[0.1741007566452,0.0040336847305298,-0.058158881962299],[-0.26996210217476,-0.33098009228706,0.20650660991669],[-0.0036703594960272,-0.031830329447985,0.046306345611811]],[[-0.015282335691154,-0.049095425754786,0.047576237469912],[0.11903071403503,-0.073264852166176,-0.2043504267931],[-0.01250040717423,0.0010186283616349,-0.079696953296661]],[[-0.10491029918194,0.13274136185646,0.084279410541058],[0.041807074099779,0.12342664599419,0.043271910399199],[-0.14237147569656,-0.29246002435684,-0.084785372018814]],[[-0.14857597649097,0.095834389328957,-0.01204614341259],[-0.096793450415134,0.045801509171724,0.0081250965595245],[-0.28570997714996,-0.10360683500767,-0.033972255885601]],[[-0.055367182940245,0.060640256851912,0.063309416174889],[-0.023271853104234,-0.096204787492752,-0.096120908856392],[-0.11916548758745,0.091488301753998,-0.077214196324348]],[[-0.17093859612942,-0.0066636456176639,0.024564119055867],[-0.093318492174149,0.033566065132618,-0.055635273456573],[-0.10469676554203,-0.18910671770573,-0.058604788035154]],[[-0.1292327940464,-0.14769300818443,0.0051942556165159],[-0.092353835701942,-0.029326524585485,0.17108851671219],[0.075197637081146,0.1550277620554,0.11911768466234]],[[0.10146296769381,0.058223724365234,0.021657105535269],[-0.029048912227154,0.0090025570243597,-0.040582861751318],[0.10981350392103,-0.05640684068203,-0.070208325982094]],[[0.023025367408991,0.0850949883461,0.0086960904300213],[-0.059927314519882,0.066866502165794,0.042143065482378],[0.03793416172266,0.1241430491209,-0.12754094600677]],[[0.06918228417635,0.0082046827301383,-0.061243958771229],[0.084660641849041,-0.054529622197151,-0.072208046913147],[-0.25447046756744,-0.22168001532555,-0.34464055299759]],[[0.043567188084126,0.071417883038521,-0.02615181170404],[-0.048063162714243,-0.0026319492608309,-0.0016977143241093],[-0.032400406897068,0.011255570687354,0.20124192535877]],[[0.016972983255982,-0.09686965495348,-0.073427125811577],[-0.052022561430931,-0.041786354035139,0.0064008114859462],[-0.13333359360695,-0.035387437790632,-0.040831264108419]],[[0.061160251498222,-0.0613360889256,0.013687474653125],[-0.04981505125761,-0.023983228951693,-0.03256107494235],[0.056028679013252,0.10563272237778,-0.10557951778173]],[[-0.068632811307907,0.052790131419897,0.087669976055622],[-0.045118823647499,-0.043722957372665,-0.093427680432796],[-0.101891733706,-0.12807025015354,-0.055766515433788]],[[-0.014372804202139,-0.0044351276010275,0.028740687295794],[-0.047586694359779,-0.14576625823975,-0.073169864714146],[0.063368901610374,0.035360135138035,0.10960210859776]],[[-0.077586770057678,0.023832598701119,0.010624187067151],[0.079633817076683,0.036905393004417,0.058780107647181],[-0.071867153048515,0.021558310836554,0.015046441927552]],[[0.073021546006203,-0.042663514614105,-0.021194057539105],[-0.087521828711033,-0.31632563471794,-0.14429605007172],[-0.20328587293625,-0.091867074370384,-0.041138712316751]],[[0.014712253585458,0.02066202275455,-0.044751740992069],[-0.072583943605423,0.057324182242155,0.055669598281384],[-0.14566770195961,-0.24497881531715,-0.091458775103092]],[[-0.038823734968901,0.051097758114338,-0.2099616676569],[-0.067918561398983,0.22210988402367,-0.14682097733021],[-0.058462932705879,-0.036779999732971,0.050046943128109]],[[-0.089683309197426,-0.066538073122501,-0.053987286984921],[0.0018098125001416,0.14076374471188,-0.0036930730566382],[-0.032210789620876,0.089237287640572,0.077384732663631]],[[-0.038991551846266,-0.16303582489491,-0.21160200238228],[0.052582956850529,0.091482505202293,0.037218101322651],[-0.35497555136681,0.017855128273368,0.12403576821089]],[[-0.18580150604248,-0.0055574011057615,-0.10221797972918],[-0.095634862780571,-0.023946732282639,0.044239308685064],[-0.11349726468325,-0.27184137701988,-0.0035358334425837]],[[-0.032846748828888,-0.015346551313996,-0.0031037162989378],[0.071203649044037,-0.00060221512103453,0.070651061832905],[-0.015096343122423,-0.18984334170818,0.1307936757803]],[[-0.071543946862221,-0.088828153908253,-0.018896175548434],[-0.15408703684807,-0.016900107264519,0.11262311041355],[-0.12692074477673,0.13260582089424,0.13700279593468]],[[0.19002276659012,-0.037648372352123,-0.12515376508236],[0.0023320789914578,0.028486026450992,0.15880185365677],[-0.1585468351841,0.10614905506372,0.090038560330868]]],[[[-0.020159833133221,-0.026818411424756,0.0036585750058293],[-0.098450273275375,-0.05180149525404,-0.030395817011595],[0.058898363262415,-0.047273751348257,-0.036309365183115]],[[0.023771623149514,0.10605654865503,-0.07549674808979],[-0.027244217693806,0.029438158497214,0.045643858611584],[0.10475626587868,0.0078547755256295,-0.080642402172089]],[[-0.072973668575287,-0.0023387286346406,-0.13759994506836],[0.041495528072119,0.069858618080616,-0.013334321789443],[0.1582056581974,-0.041933156549931,0.0047299764119089]],[[-0.11568501591682,-0.30899649858475,-0.23795810341835],[0.027321737259626,0.081278003752232,0.23995384573936],[0.083014234900475,0.089436829090118,0.087846592068672]],[[-0.059246372431517,0.043440636247396,0.01604200899601],[-0.0014572346117347,0.0022521244827658,0.035687122493982],[-0.095238476991653,-0.10575164854527,-0.0011048675514758]],[[0.017773132771254,-0.091084450483322,0.2665082514286],[-0.076732993125916,0.0044559272937477,-0.052914194762707],[-0.013549392111599,-0.010028625838459,-0.1447674036026]],[[0.051361810415983,0.0052021099254489,-0.013751070015132],[-0.093372732400894,0.071513086557388,0.0057508544996381],[0.13041937351227,-0.075873479247093,-0.042353611439466]],[[0.027792626991868,0.02384040132165,-0.059039477258921],[0.019775604829192,0.15015603601933,0.088940866291523],[-0.051103979349136,-0.028334319591522,-0.12613354623318]],[[0.053583133965731,-0.10597988963127,-0.040339600294828],[0.12950567901134,-0.015857534483075,0.042864561080933],[0.059381037950516,-0.088099122047424,0.015617023222148]],[[0.13090842962265,0.057290848344564,-0.082382939755917],[-0.067465730011463,-0.038381733000278,-0.13649187982082],[-0.04943273589015,0.060818195343018,-0.27249041199684]],[[-0.072280965745449,-0.058802507817745,-0.039418715983629],[0.098647810518742,0.020355893298984,-0.058560319244862],[0.094140708446503,0.078048579394817,-0.09210417419672]],[[-0.12389665096998,0.13322292268276,0.16100633144379],[-0.027539787814021,0.020394761115313,0.014936683699489],[-0.1472295820713,0.01103591080755,0.0021094216499478]],[[-0.096667796373367,-0.079544499516487,-0.050835903733969],[0.1485708206892,0.03890473023057,-0.036295838654041],[0.15517358481884,0.11984992772341,-0.2834047973156]],[[-0.064519390463829,0.032920226454735,-0.03169197589159],[-0.070497639477253,0.098809026181698,0.015381576493382],[0.058295875787735,-0.019413031637669,0.011908592656255]],[[0.033509980887175,0.032915823161602,0.021102959290147],[-0.076082862913609,-0.043555192649364,-0.082175724208355],[-0.076412729918957,0.073176331818104,0.034268993884325]],[[0.088160298764706,0.085640460252762,0.04743230342865],[-0.1613155901432,-0.042272739112377,-0.040575060993433],[-0.061396405100822,0.07477131485939,-0.098650202155113]],[[0.14056795835495,-0.048303548246622,-0.099934779107571],[-0.027445059269667,0.15469780564308,0.014020971953869],[-0.1839225590229,0.011301876045763,0.021179530769587]],[[0.059477679431438,-0.07623366266489,0.018984720110893],[0.042414572089911,-0.022268569096923,0.18707770109177],[-0.14188024401665,-0.042693510651588,0.028761398047209]],[[-0.053770333528519,0.043264307081699,0.065341874957085],[-0.045400496572256,-0.0020667021162808,-0.042628966271877],[0.028285419568419,-0.0034590151626617,0.10268160700798]],[[0.066586941480637,-0.044250279664993,-0.11597691476345],[0.070664748549461,0.03135921061039,-0.16256698966026],[0.064438737928867,-0.031028997153044,0.020965164527297]],[[0.091359555721283,0.036257512867451,-0.033546414226294],[0.019490512087941,-0.093062609434128,0.090210102498531],[-0.20021790266037,0.0018106864299625,0.08292294293642]],[[0.0022279492113739,0.026095405220985,-0.076871879398823],[0.027052657678723,0.081181347370148,0.07990425825119],[0.038732752203941,0.084850169718266,0.061826154589653]],[[0.11550390720367,0.026474963873625,-0.055435441434383],[-0.051341149955988,-0.055095247924328,0.046254120767117],[0.11314701288939,0.042618073523045,0.05420869961381]],[[-0.050887256860733,0.043660540133715,0.01094071380794],[-0.037446562200785,0.099391549825668,0.0568124987185],[-0.081066556274891,-0.08277390152216,0.040809765458107]],[[0.061505876481533,-0.014033586718142,-0.12427960336208],[0.015539327636361,0.059912990778685,-0.10656595230103],[0.021940607577562,-0.035040132701397,-0.089733451604843]],[[-0.054573722183704,0.037058874964714,-0.07631941139698],[-0.026386560872197,0.034512188285589,0.073724165558815],[0.079176902770996,-0.11292271316051,-0.0095052951946855]],[[0.053606495261192,-0.01257543079555,0.099241703748703],[-0.044724032282829,-0.002874598139897,0.034952681511641],[-0.027471179142594,-0.018812086433172,-0.098592527210712]],[[-0.081053219735622,0.060459911823273,-0.060562629252672],[0.051642116159201,-0.034493379294872,-0.21204629540443],[0.069009333848953,0.19473959505558,-0.0045060557313263]],[[0.060391273349524,0.038764804601669,0.0012132935225964],[0.038722291588783,0.10360704362392,0.017683830112219],[0.044639959931374,-0.15487350523472,0.012841148301959]],[[0.051989540457726,-0.02725032530725,-0.087060250341892],[0.030029019340873,0.11665810644627,0.035821482539177],[0.082305081188679,0.092180833220482,0.0015979023883119]],[[-0.047005534172058,0.069754041731358,0.063944421708584],[0.10041322559118,0.15627208352089,-0.052564363926649],[0.07501295208931,-0.088186182081699,-0.11343988031149]],[[0.0088501544669271,-0.15741205215454,-0.099050588905811],[-0.046012464910746,-0.007321422919631,-0.1106501147151],[0.0016886605881155,0.090964816510677,-0.14410220086575]]],[[[0.047091271728277,-0.059229791164398,0.16515852510929],[0.14087428152561,-0.17022626101971,-0.065800055861473],[0.14166598021984,-0.0056821131147444,-0.094203300774097]],[[-0.062297135591507,0.068993657827377,-0.010110347531736],[-0.14736805856228,0.11811976134777,0.021208170801401],[-0.05012634396553,0.033558871597052,0.01226123329252]],[[-0.13465730845928,0.14422142505646,0.048493292182684],[0.011075322516263,-0.085587218403816,-0.037309978157282],[0.044514406472445,-0.050163589417934,0.020640436559916]],[[0.031756050884724,-0.15264469385147,0.066053338348866],[0.22422356903553,-0.176902577281,0.076425574719906],[0.02456490509212,-0.19986359775066,-0.015368904918432]],[[-0.062056541442871,0.066744551062584,-0.050439652055502],[0.06295008957386,-0.066893868148327,0.044290501624346],[0.036440558731556,0.098878867924213,0.033714354038239]],[[-0.0042650946415961,-0.011451404541731,-0.10593247413635],[-0.01234820112586,-0.035116448998451,0.19319812953472],[0.055818166583776,0.06316526979208,-0.1582695543766]],[[0.10213212668896,-0.00065104709938169,0.13191315531731],[-0.027079168707132,0.023433901369572,-0.13940151035786],[-0.13245134055614,0.066983416676521,-0.073145940899849]],[[0.087370231747627,-0.082383148372173,0.051434695720673],[0.068349845707417,-0.036170769482851,0.13433526456356],[0.05199096351862,0.075817249715328,0.01031260099262]],[[0.010587482713163,0.087240062654018,-0.040983788669109],[-0.12019769102335,0.0078859115019441,0.029766511172056],[-0.1190123334527,0.06448982656002,-0.0089203827083111]],[[-0.098676323890686,0.037363957613707,0.11617421358824],[-0.23490963876247,-0.10461989790201,-0.045554060488939],[-0.1612958163023,-0.00020070544269402,0.053400412201881]],[[0.035639751702547,-0.038439601659775,-0.12912975251675],[0.04099303111434,0.0059446096420288,-0.19529715180397],[-0.18497352302074,0.023080015555024,-0.01856392249465]],[[0.087281547486782,-0.085947833955288,-0.13990312814713],[-0.15110582113266,0.10591088980436,-0.09532368928194],[0.039782263338566,0.068977363407612,-0.086249321699142]],[[-0.0036015165969729,-0.097291514277458,-0.19329965114594],[0.11880754679441,0.0026919161900878,-0.047745708376169],[-0.15521617233753,-0.096564136445522,0.02615693025291]],[[0.030612654983997,0.032581020146608,-0.27775904536247],[0.10605071485043,0.11082148551941,-0.1443127989769],[0.056326448917389,0.0442074239254,-0.2414316534996]],[[-0.024729631841183,0.057405307888985,0.043524563312531],[-0.15968668460846,0.039594043046236,-0.012115930207074],[0.025583133101463,0.035998642444611,0.041308086365461]],[[-0.077919587492943,-0.014169778674841,0.025003030896187],[0.14438121020794,-0.041896518319845,-0.061933279037476],[0.01781097240746,0.026136780157685,-0.034277901053429]],[[-0.16133043169975,-0.015877863392234,0.13513681292534],[-0.11109734326601,0.098971754312515,-0.09548731893301],[-0.066846124827862,0.10773195326328,-0.0096519840881228]],[[-0.10676831007004,-0.056677661836147,-0.057886563241482],[-0.034819114953279,-0.017126573249698,0.014294566586614],[-0.067721165716648,0.1169950440526,-0.073318295180798]],[[-0.11799708753824,0.069005697965622,0.089833311736584],[-0.077786833047867,0.048331186175346,-0.038451332598925],[0.021538494154811,-0.043556120246649,-0.085564956068993]],[[-0.15872637927532,0.013916247524321,-0.059334896504879],[-0.022610327228904,-0.073714174330235,-0.16020104289055],[-0.066468290984631,0.054168373346329,-0.090242691338062]],[[0.01965993642807,-0.029988497495651,0.053831566125154],[0.02774391323328,0.041545778512955,-0.032209191471338],[-0.16491781175137,0.040285468101501,0.021374858915806]],[[-0.010982652194798,-0.082781456410885,0.040635298937559],[0.026349782943726,0.088568285107613,0.061515960842371],[-0.088887400925159,0.10333526134491,-0.022427894175053]],[[-0.012194668874145,0.042158659547567,-0.0915217846632],[-0.053033657371998,-0.00023169345513452,0.02580183185637],[-0.043960493057966,0.021724240854383,0.028026318177581]],[[-0.012002201750875,0.061190072447062,0.071610108017921],[-0.13792259991169,-0.051021873950958,0.064925976097584],[-0.11767500638962,-0.061084225773811,-0.073335006833076]],[[-0.1189838424325,0.052973542362452,0.13754338026047],[-0.10677642375231,0.14952522516251,-0.038461208343506],[-0.056794818490744,0.13666641712189,-0.025569314137101]],[[-0.12739327549934,0.080044992268085,-0.0094355689361691],[-0.070198990404606,-0.028289601206779,0.0041356203146279],[-0.0085649080574512,0.032088324427605,0.13196465373039]],[[0.030083077028394,0.033959183841944,-0.032534316182137],[-0.036104314029217,-0.041259124875069,-0.0085050826892257],[-0.043728590011597,0.17613573372364,-0.077325150370598]],[[-0.089091762900352,0.11249189078808,-0.11174679547548],[-0.2903938293457,0.032466448843479,0.077145427465439],[0.066052600741386,-0.081597648561001,0.099164269864559]],[[-0.099465183913708,0.086538940668106,-0.085618659853935],[0.063694670796394,-0.079622536897659,0.024054531008005],[0.16950610280037,0.011276867240667,-0.20310805737972]],[[-0.16431470215321,-0.03252848982811,0.052052985876799],[0.17773665487766,0.016148034483194,0.0069044092670083],[-0.0085299061611295,-0.062868639826775,-0.019660336896777]],[[0.097619287669659,0.0074351946823299,-0.096397861838341],[-0.012462913058698,-0.096577599644661,-0.028599815443158],[0.0048606530763209,-0.033631507307291,0.016364114359021]],[[0.015415528789163,-0.08295401185751,-0.07299779355526],[-0.095379076898098,-0.042021479457617,0.11084513366222],[-0.06510853022337,-0.11260049045086,-0.075746268033981]]],[[[0.11731334030628,-0.056448645889759,0.055261131376028],[0.17209078371525,-0.14847852289677,0.16437008976936],[-0.11967971920967,-0.22275412082672,-0.18416106700897]],[[0.0039328411221504,0.06795396655798,-0.014569291844964],[0.048913922160864,0.042035453021526,-0.12140186876059],[0.14210060238838,0.019648618996143,-0.060196787118912]],[[-0.021609866991639,-0.12721514701843,0.1328976303339],[-0.25900253653526,0.046504121273756,0.0081325499340892],[-0.062955901026726,-0.017675492912531,0.20779658854008]],[[-0.04398775473237,-0.056303087621927,-0.0536426641047],[0.098272703588009,-0.063034601509571,0.13849644362926],[-0.075359389185905,-0.11167021095753,-0.028255758807063]],[[-0.012967892922461,0.053283367305994,0.023768153041601],[0.011602743528783,-0.08912068605423,-0.045229647308588],[-0.072210744023323,-0.001881186501123,-0.12108818441629]],[[-0.11226184666157,-0.12553334236145,0.035383656620979],[-0.21966773271561,-0.16759483516216,0.083185710012913],[0.13493469357491,0.050500258803368,-0.10649260878563]],[[0.01637914031744,-0.04493049159646,-0.28799718618393],[0.021767787635326,0.028109725564718,0.10054364055395],[0.066081896424294,0.21672484278679,-0.13053856790066]],[[-0.040119782090187,0.11474142223597,0.06179827824235],[-0.10930423438549,-0.13749505579472,0.05009999871254],[-0.0755270794034,-0.12147413939238,0.10340911149979]],[[0.091300830245018,0.070219673216343,-0.075937353074551],[-0.061524771153927,0.039469353854656,0.033492539077997],[0.0038975093048066,-0.014160092920065,0.079919911921024]],[[-0.042481001466513,-0.058103404939175,-0.090867653489113],[0.19552528858185,-0.031990371644497,-0.20847158133984],[0.018124980852008,0.1214724779129,-0.013971033506095]],[[-0.2170528024435,0.039588212966919,-0.081783302128315],[-0.028661198914051,0.0045369151048362,0.20050324499607],[0.055466271936893,-0.073732301592827,0.0099003566429019]],[[0.26876989006996,0.077975407242775,0.061994630843401],[0.028802454471588,0.073710203170776,-0.093770399689674],[-0.13949178159237,0.16643054783344,0.13389259576797]],[[-0.17524527013302,-0.16319662332535,0.14504908025265],[-0.023084741085768,-0.053156778216362,-0.13695998489857],[-0.1817961782217,-0.023065108805895,-0.083062767982483]],[[-0.00010499797645025,0.026337118819356,-0.12308893352747],[-0.026851182803512,0.19115483760834,0.013398767448962],[0.011611437425017,0.011694951914251,0.0056968196295202]],[[0.010949871502817,0.046008516103029,-0.034492053091526],[-0.016010005027056,-0.031242383643985,-0.049403339624405],[0.012016360647976,0.018256878480315,0.026569843292236]],[[0.054294273257256,0.055704180151224,-0.073356039822102],[0.020804656669497,0.044054910540581,-0.074243046343327],[-0.0019424649653956,0.01694449223578,0.099292665719986]],[[-0.14374993741512,0.07220159471035,0.096157863736153],[-0.13282886147499,0.027500804513693,0.033686023205519],[-0.18009142577648,-0.14192007482052,-0.1395115852356]],[[-0.071412958204746,-0.028862902894616,0.15183660387993],[-0.22012886404991,0.09020159393549,0.0091486535966396],[-0.13640549778938,-0.0072587807662785,0.12169246375561]],[[0.024230739101768,-0.0079331044107676,0.054478157311678],[-0.14117161929607,0.041534908115864,0.077667139470577],[-0.063855871558189,-0.070686638355255,-0.0049398248083889]],[[-0.09901462495327,0.082722179591656,-0.047101061791182],[-0.10260166227818,0.12892527878284,-0.048681430518627],[-0.1302701830864,0.05230325832963,0.10269996523857]],[[-0.18705894052982,0.12185229361057,0.03448386490345],[-0.072664216160774,0.034884370863438,0.061000220477581],[0.022742176428437,-0.011836543679237,0.066593922674656]],[[-0.18012949824333,0.034087434411049,-0.016829762607813],[-0.032318789511919,-0.025726651772857,-0.18673917651176],[0.11351227015257,0.16477084159851,-0.043557990342379]],[[-0.0560596100986,0.070718221366405,0.00053088658023626],[-0.00574836647138,-0.042919907718897,-0.045710861682892],[-0.019017329439521,0.054137177765369,-0.15562869608402]],[[-0.16510261595249,-0.10700763761997,-0.031445551663637],[-0.13706529140472,-0.071034476161003,-0.0037531710695475],[-0.13983322679996,0.014027412980795,-0.045902941375971]],[[-0.046643324196339,0.02101880684495,-0.071683660149574],[-0.051505297422409,-0.11069453507662,-0.038299851119518],[-0.14364373683929,-0.092733033001423,-0.029023982584476]],[[-0.11493587493896,0.064909368753433,-0.024485407397151],[-0.043231662362814,0.28059294819832,-0.19548682868481],[-0.12913317978382,0.013648449443281,0.027896746993065]],[[-0.034318991005421,-0.10535398870707,0.08218814432621],[0.02396871894598,-0.011972892098129,0.064622260630131],[0.043062940239906,-0.065985232591629,0.011295373551548]],[[-0.028762651607394,0.19404941797256,-0.18331044912338],[-0.082329474389553,0.10467462986708,0.05340364202857],[-0.039730384945869,0.043886918574572,0.062582850456238]],[[-0.0074259112589061,-0.063681371510029,0.09718019515276],[0.025771182030439,0.040567178279161,0.11632787436247],[0.034020505845547,0.047914020717144,0.21266692876816]],[[0.052543368190527,-0.093606717884541,-0.021898379549384],[0.017064278945327,-0.14876821637154,0.11178921163082],[0.012313650920987,0.20351402461529,-0.032872743904591]],[[-0.3458506166935,0.16198147833347,0.1388612985611],[-0.0063390657305717,0.1920317709446,-0.14016227424145],[0.0084704039618373,0.030574994161725,-0.048888463526964]],[[-0.022891009226441,0.10924061387777,0.066104397177696],[0.017380522564054,0.13116174936295,-0.30155670642853],[-0.16614747047424,0.19916278123856,8.3685757999774e-05]]],[[[-0.20355136692524,0.047290273010731,-0.071816638112068],[0.019649300724268,-0.11122720688581,-0.0051319897174835],[-0.15402294695377,-0.014706527814269,-0.015319000929594]],[[0.023598222061992,-0.018226061016321,0.028821786865592],[-0.050446964800358,0.008736751973629,-0.0028678751550615],[0.05158581584692,0.085189282894135,-0.060066662728786]],[[-0.10483082383871,0.062419399619102,0.14353574812412],[-0.16600422561169,-0.044651288539171,0.17641185224056],[-0.15221354365349,0.01758749037981,0.15245282649994]],[[-0.090917132794857,-0.0056690964847803,-0.10518249869347],[-0.015872156247497,-0.1205997094512,-0.1255454570055],[-0.013917247764766,0.02816011197865,-0.11829186975956]],[[-0.10477614402771,-0.070816919207573,-0.0090365996584296],[0.015341826714575,0.028397619724274,-0.055696696043015],[0.10607921332121,0.12069733440876,-0.027018919587135]],[[0.023253332823515,-0.066603228449821,-0.097276002168655],[-0.049077205359936,-0.057675313204527,0.086729004979134],[-0.067622400820255,0.13111090660095,-0.23027861118317]],[[-0.10385581105947,-0.045193061232567,0.00019958076882176],[-0.0057177655398846,0.097394354641438,0.043029516935349],[-0.070725820958614,0.29443871974945,0.0045832581818104]],[[0.02593513764441,0.15048119425774,0.052513029426336],[-0.059394229203463,0.12110783159733,0.085321262478828],[-0.16844239830971,-0.13709890842438,0.025944938883185]],[[-0.18683761358261,0.031757578253746,0.041377566754818],[0.057852312922478,-0.087118491530418,-0.0308802369982],[0.12541027367115,0.011978302150965,-0.0002902224950958]],[[-0.0026884146500379,0.047233756631613,-0.047922290861607],[0.00016497983597219,0.033350169658661,0.045378137379885],[0.0076926555484533,0.094418920576572,-0.027198579162359]],[[-0.10885386168957,-0.021351367235184,0.048803452402353],[0.08854915201664,-0.056270688772202,0.050419423729181],[0.017492569983006,0.1468795388937,-0.072835087776184]],[[-0.042492467910051,0.042186681181192,0.13201430439949],[-0.095901682972908,-0.15433678030968,0.012885212898254],[0.13211888074875,-0.10332138091326,0.12412359565496]],[[0.11816802620888,-0.074443146586418,0.083017736673355],[0.057628590613604,0.010022851638496,0.0063705462962389],[-0.069061666727066,-0.1147803068161,0.081538707017899]],[[-0.015387167222798,-0.065821006894112,0.10054863244295],[-0.12030008435249,-0.12680605053902,-0.058526854962111],[-0.15089659392834,0.035060416907072,-0.2406537681818]],[[0.0024888303596526,-0.018942767754197,0.06152580678463],[0.0047605321742594,-0.029574589803815,-0.018313307315111],[-0.059019256383181,0.047063682228327,0.037185307592154]],[[0.10995321720839,0.011273050680757,-0.0047432463616133],[0.13967080414295,-0.095870673656464,-0.095126077532768],[0.1031426563859,0.022797742858529,-0.081761412322521]],[[-0.0088997092097998,-0.15860860049725,-0.069635331630707],[0.13034407794476,0.075268492102623,-0.0078152492642403],[-0.10408959537745,-0.077610477805138,0.0561185143888]],[[0.01787712238729,-0.021636733785272,-0.071470491588116],[-0.008383764885366,0.070409454405308,-0.031158411875367],[-0.1788729429245,0.016533199697733,-0.11945777386427]],[[-0.18219265341759,-0.10989187657833,-0.00058825092855841],[0.15764719247818,-0.10281217843294,-0.33654761314392],[-0.15677036345005,0.099459990859032,-0.22674211859703]],[[-0.12854987382889,-0.055730659514666,0.051278367638588],[-0.013530550524592,0.0085356403142214,0.0015741059323773],[0.040714289993048,-0.14825583994389,-0.081820659339428]],[[0.13319662213326,0.045527379959822,0.1522931009531],[-0.089795358479023,-0.082452386617661,-0.0046167857944965],[0.11580891907215,0.017115725204349,-0.13047683238983]],[[-0.14480186998844,0.082524262368679,-0.05223448202014],[-0.13142117857933,0.061461467295885,-0.12409273535013],[0.066151469945908,-0.17100888490677,0.027859691530466]],[[0.037354491651058,0.055847022682428,-0.081289649009705],[-0.08591116964817,-0.075303196907043,0.0020638385321945],[-0.11170686036348,0.17316028475761,-0.039076149463654]],[[-0.073142498731613,-0.10111036151648,0.052469719201326],[0.028681617230177,0.10230852663517,0.044295735657215],[-0.26240313053131,0.066878698766232,-0.1493653357029]],[[-0.11823453009129,0.13190668821335,-0.27325639128685],[-0.19421239197254,-0.098316714167595,0.056919243186712],[0.019279953092337,-0.030815882608294,-0.013546979986131]],[[-0.018284047022462,0.25417432188988,-0.051498476415873],[0.15314793586731,-0.005109918769449,0.021619630977511],[-0.064915105700493,0.0016574015608057,-0.30718338489532]],[[0.082880839705467,-0.13107195496559,0.06229405477643],[-0.05327719822526,0.075382545590401,-0.061600014567375],[0.029503209516406,0.10130923986435,0.031517941504717]],[[0.0076372721232474,-0.095618203282356,0.19019503891468],[0.071010790765285,-0.079354047775269,0.050449147820473],[0.04847639799118,0.18223963677883,-0.0040509509854019]],[[-0.0073717338964343,0.018376938998699,-0.074852034449577],[0.046656381338835,-0.1378637701273,0.08354564756155],[0.10918472707272,0.0025032199919224,0.23097366094589]],[[-0.10190060734749,-0.018216293305159,0.057559177279472],[0.0017274337587878,-0.025718405842781,0.049099158495665],[-0.082122564315796,-0.094397686421871,-0.0075891632586718]],[[0.018820757046342,-0.23754245042801,-0.13391397893429],[-0.027523415163159,0.067259162664413,-0.092629849910736],[0.14333255589008,-0.21370972692966,-0.062528230249882]],[[-0.20809580385685,-0.063650891184807,-0.094879657030106],[0.038301635533571,-0.039458937942982,-0.053956996649504],[-0.16857282817364,-0.1258053034544,0.0053331716917455]]],[[[-0.070159494876862,-0.10306520760059,0.11471623927355],[0.051985532045364,0.00042368058348075,-0.13410100340843],[0.12042640894651,0.063987508416176,0.087461732327938]],[[-0.037945970892906,0.049650706350803,-0.012734199874103],[0.02372926287353,-0.036714974790812,0.040825635194778],[-0.11631169170141,-0.075932361185551,0.034213270992041]],[[0.029778717085719,-0.070539422333241,-0.24488021433353],[0.036789946258068,0.023501753807068,0.12396492063999],[0.11452487111092,-0.18649584054947,0.040207080543041]],[[0.04948778450489,-0.076165415346622,0.1999354660511],[-0.019435983151197,0.11711193621159,-0.062205787748098],[-0.051411759108305,-0.079932905733585,-0.20017774403095]],[[-0.034215990453959,-0.071796916425228,-0.085835941135883],[-0.058861900120974,-0.0055417129769921,0.066639840602875],[0.053897202014923,0.0011123942676932,0.05917626619339]],[[0.11798004060984,0.041489228606224,9.1966358013451e-06],[-0.0045643197372556,0.024371536448598,-0.16894859075546],[0.071778625249863,-0.25508517026901,-0.092772699892521]],[[0.02226890437305,-0.11855682730675,-0.10451371967793],[0.15075063705444,0.20149670541286,0.079383261501789],[-0.12056893855333,-0.057769618928432,-0.20109407603741]],[[-0.0066822017543018,0.055997025221586,0.036148477345705],[0.070766001939774,7.9946898040362e-05,0.049886841326952],[0.20138372480869,0.093926995992661,0.11176799982786]],[[0.015346547588706,-0.026574475690722,0.099746994674206],[0.051471970975399,-0.065484344959259,0.01030670106411],[-0.019316481426358,-0.024892244488001,-0.15605226159096]],[[-0.050802379846573,0.085773661732674,-0.29494866728783],[0.18569460511208,-0.078292056918144,0.04928632453084],[-0.10952192544937,0.13866505026817,-0.012018698267639]],[[-0.20546191930771,0.090606153011322,-0.052570819854736],[-0.17994852364063,0.034328579902649,-0.058081388473511],[-0.07144371420145,0.13406433165073,0.060213223099709]],[[-0.052583005279303,-0.051968034356833,-0.10147515684366],[0.12497904896736,-0.032496340572834,0.0080944858491421],[-0.027686154469848,-0.096446432173252,0.017457207664847]],[[-0.086909599602222,-0.12196903675795,-0.023488573729992],[-0.11651677638292,-0.033154122531414,0.14303295314312],[0.0074980244971812,0.03168411552906,-0.046040695160627]],[[-0.079800330102444,-0.10671981424093,0.16223648190498],[0.031939968466759,0.085708349943161,-0.015701450407505],[0.15516452491283,-0.10604578256607,0.016154253855348]],[[0.0051560956053436,0.049117010086775,-0.053264826536179],[0.11241535097361,-0.060880400240421,0.020154694095254],[0.01993446983397,0.10396587103605,0.015988565981388]],[[0.059991735965014,0.023790532723069,0.056140065193176],[0.11194968223572,-0.071779817342758,0.062076441943645],[0.24906446039677,0.054546993225813,0.012517428956926]],[[-0.091647930443287,0.13847261667252,0.060494262725115],[-0.008713616989553,0.020228452980518,-0.098785027861595],[-0.030028901994228,0.15784296393394,-0.017870180308819]],[[0.043782532215118,-0.12774394452572,0.080478571355343],[-0.1077561378479,-0.047703523188829,-0.049987640231848],[-0.12236354500055,0.070400469005108,0.12557451426983]],[[-0.01145488396287,0.067012019455433,0.10813763737679],[0.020140627399087,-0.007501311134547,0.050285428762436],[-0.27967989444733,-0.065178819000721,-0.096362747251987]],[[-0.16416332125664,0.040237437933683,-0.033339954912663],[-0.16409680247307,-0.10735613107681,0.10222291201353],[0.00050031335558742,0.0050047002732754,0.034125454723835]],[[-0.027137514203787,-0.042741525918245,-0.062967851758003],[0.066748321056366,-0.021292427554727,0.09296740591526],[0.0141606843099,0.057318508625031,0.16390971839428]],[[0.04589493945241,-0.094655245542526,-0.063962191343307],[0.096838869154453,0.051860973238945,0.034972786903381],[-0.036647956818342,0.029984211549163,0.2064014673233]],[[0.031844358891249,0.02124366350472,0.1962638348341],[0.00027745141414925,-0.15953415632248,0.12571312487125],[0.27400740981102,-0.074174977838993,-0.30985453724861]],[[-0.11345419287682,-0.1012748926878,-0.23708392679691],[0.12113047391176,-0.085012868046761,-0.013618567958474],[0.14925473928452,-0.011573184281588,0.12050221115351]],[[0.048129022121429,-0.092910826206207,-0.048775587230921],[0.019845280796289,-0.0023409582208842,0.17217533290386],[-0.0079820640385151,-0.11352673172951,-0.21368445456028]],[[0.093497514724731,0.061203122138977,-0.068163029849529],[-0.033565122634172,0.018011378124356,-0.11601075530052],[0.004027855116874,-0.09923329949379,0.18408554792404]],[[-0.014597129076719,-0.079502411186695,0.026599606499076],[0.0387047752738,0.0021516066044569,0.040824852883816],[0.12106797099113,-0.0087884766981006,0.0064974199049175]],[[-0.10024522989988,-0.14025847613811,0.013024575076997],[0.19174538552761,-0.0254444219172,0.26230815052986],[-0.069177053868771,-0.0054722316563129,-0.090469241142273]],[[-0.029899619519711,-0.21047510206699,-0.12551605701447],[-0.042464688420296,-0.13740105926991,0.06908968091011],[0.18119095265865,-0.01315048057586,0.15525589883327]],[[-0.084000773727894,0.037901137024164,-0.02066957950592],[-0.0066341515630484,0.11030546575785,0.063745863735676],[0.023244947195053,-0.13203218579292,-0.16639931499958]],[[-0.053446985781193,0.025946632027626,-0.010363207198679],[0.089215621352196,-0.058641877025366,-0.11700528860092],[-0.15493988990784,0.037047348916531,0.021193029358983]],[[-0.15375749766827,-0.050962962210178,-0.060357823967934],[0.013152360916138,-0.097314208745956,-0.0086183827370405],[-0.12741772830486,-0.091090098023415,-0.12366566807032]]],[[[0.094372741878033,0.098995037376881,-0.046104222536087],[-0.1098677739501,0.074496865272522,0.093355491757393],[-0.14284299314022,-0.092534080147743,-0.11088142544031]],[[-0.036662712693214,0.02824942022562,-0.11735762655735],[-0.003901292802766,0.081428490579128,-0.077329985797405],[-0.00880176294595,0.13064275681973,0.04006389528513]],[[-0.0083350343629718,0.042371686547995,-0.083509355783463],[-0.12415714561939,0.081053204834461,0.0028456572908908],[-0.012254458852112,-0.088010013103485,0.0051281577907503]],[[0.048566572368145,0.019542496651411,0.012083548121154],[-0.014222355559468,0.029623640701175,-0.1069171205163],[0.039034966379404,-0.0020001952070743,-0.1115645840764]],[[0.093056708574295,0.0050873053260148,-0.089444100856781],[-0.032103564590216,-0.11904546618462,0.11225508153439],[-0.00072153646033257,0.13079392910004,0.02401683293283]],[[0.059765227138996,-0.13467136025429,0.025256983935833],[0.0071161491796374,-0.020932164043188,0.076231867074966],[-0.0095418961718678,-0.13967810571194,0.13491483032703]],[[0.013933336362243,-0.023989919573069,0.019170427694917],[0.052630521357059,0.00025517391622998,0.047789931297302],[-0.14270439743996,0.0095373364165425,-0.20660018920898]],[[-0.22286002337933,0.20260402560234,-0.013558830134571],[-0.022298058494925,0.10890428721905,-0.094001993536949],[-0.076113767921925,-0.11665773391724,-0.16198761761189]],[[0.060947079211473,-0.015610262751579,0.077750712633133],[-0.058444660156965,-0.062303852289915,0.02968243137002],[0.092129603028297,0.068741269409657,0.032129928469658]],[[0.013102116063237,-0.036194141954184,0.12112099677324],[-0.12905664741993,0.031814940273762,0.17781983315945],[-0.042006406933069,0.056272722780704,0.044542215764523]],[[-0.02129215747118,0.077871523797512,0.095606751739979],[-0.068139165639877,-0.18301422894001,0.023236535489559],[0.0034466485958546,-0.069868460297585,-0.03956588730216]],[[-0.15294946730137,0.052477896213531,-0.027427472174168],[-0.0093944566324353,-0.014893398620188,0.074502602219582],[-0.082865372300148,0.029229074716568,0.11528711766005]],[[0.01972477324307,-0.037689056247473,-0.075093314051628],[-0.12180061638355,-0.042252130806446,0.015672296285629],[-0.041380632668734,0.073062367737293,0.012408843263984]],[[0.058629062026739,0.004532138351351,0.014364205300808],[-0.20641623437405,-0.03163954615593,-0.013985487632453],[-0.074517205357552,-0.10914966464043,0.017342697829008]],[[-0.067128494381905,0.025663277134299,-0.072575218975544],[0.057784225791693,7.4303075962234e-05,-0.054066423326731],[0.062822058796883,0.011827777139843,-0.090885698795319]],[[0.15621869266033,-0.015338632278144,0.039172656834126],[0.064534790813923,0.040476057678461,0.077636733651161],[0.021620882675052,-0.12568368017673,-0.090764991939068]],[[0.047189578413963,0.01806254312396,-0.15462084114552],[-0.11110714823008,-0.11089567095041,0.086015589535236],[-0.023570658639073,0.076581366360188,0.036203421652317]],[[-0.035309690982103,-0.059873856604099,-0.10338210314512],[-0.044271562248468,-0.014458854682744,-0.14992852509022],[-0.070995047688484,0.050942722707987,0.11731917411089]],[[0.12122520059347,-0.047033075243235,-0.019775230437517],[-0.20040184259415,-0.025321912020445,-0.11682602763176],[0.037838961929083,-0.011519498191774,-0.21723480522633]],[[-0.041319455951452,-0.11455668509007,-0.072563327848911],[0.061467990279198,-0.015251930803061,0.10370677709579],[-0.1557755023241,0.12816414237022,0.05736506357789]],[[0.058174110949039,-0.11776673793793,0.038775339722633],[0.082459859549999,-0.04996520280838,-0.074460707604885],[-0.0077123027294874,0.072791188955307,-0.021495776250958]],[[-0.073753297328949,-0.0061321910470724,-0.07775042951107],[-0.074064545333385,-0.082016855478287,0.044963926076889],[0.065777219831944,-0.0049530435353518,0.027971189469099]],[[0.02406895160675,0.071518115699291,-0.15136429667473],[0.14596202969551,-0.069975785911083,-0.12329738587141],[0.035401832312346,-0.067535579204559,-0.076567575335503]],[[-0.026077454909682,-0.013256162405014,0.16064038872719],[0.012471874244511,-0.26199525594711,0.11350842565298],[-0.14895190298557,-0.10452995449305,0.16812205314636]],[[-0.13712383806705,-0.021448068320751,-0.081304378807545],[0.086812689900398,-0.069832250475883,-0.020494669675827],[0.059794474393129,0.043920826166868,0.097369641065598]],[[-0.013057879172266,0.024364938959479,-0.027317296713591],[-0.021805446594954,0.096760861575603,0.071823492646217],[0.14461934566498,-0.056706763803959,-0.19417378306389]],[[-0.017790082842112,0.0043080984614789,0.048037935048342],[-0.026989806443453,-0.078221641480923,0.10460250079632],[-0.061579436063766,0.1153759509325,0.026298267766833]],[[0.025390328839421,0.028433738276362,-0.041146624833345],[-0.0082626277580857,0.01414670329541,-0.14546231925488],[0.076982989907265,0.098218567669392,-0.043444000184536]],[[-0.092558063566685,-0.098623484373093,0.12033983319998],[-0.10574669390917,-0.056224271655083,0.061429463326931],[-0.07436628639698,-0.022372789680958,0.10932309925556]],[[-0.049438022077084,0.019934605807066,0.056986197829247],[-0.11899816989899,-0.14746847748756,0.078374356031418],[-0.021974246948957,-0.063858546316624,0.016588607802987]],[[0.021117847412825,0.02806269004941,0.060696825385094],[0.11047169566154,-0.043347764760256,-0.11111122369766],[0.14642718434334,0.018341889604926,-0.050316877663136]],[[0.053117111325264,4.2317889892729e-05,0.037101019173861],[-0.11956831812859,-0.065034165978432,-0.11776917427778],[0.040233578532934,-0.056310743093491,-0.030536552891135]]],[[[-0.033809322863817,-0.11668267846107,-0.087401360273361],[0.038161031901836,-0.08527422696352,0.016187638044357],[0.032217178493738,0.010878986679018,0.12082715332508]],[[-0.0063190697692335,0.0081669799983501,-0.0575569011271],[0.046282798051834,0.075833238661289,0.021750371903181],[-0.011467778123915,0.052922435104847,-0.060843430459499]],[[-0.19416120648384,0.034072108566761,-0.16641426086426],[0.033573888242245,0.038902126252651,0.078245490789413],[-0.022081024944782,0.031920604407787,0.035227205604315]],[[0.044608730822802,-0.21737477183342,-0.160868242383],[0.047104440629482,0.13678665459156,0.15543572604656],[-0.021612916141748,0.099922813475132,-0.022284867241979]],[[-0.17789472639561,-0.0080278953537345,0.12747047841549],[0.046213489025831,-0.013897322118282,-0.020682336762547],[0.14887051284313,-0.070494830608368,0.040312848985195]],[[-0.032226856797934,-0.057027872651815,0.0052122082561255],[0.0032300802413374,0.097163625061512,-0.24518297612667],[-0.11593725532293,-0.27379405498505,-0.1107833981514]],[[-0.037024434655905,-0.052716124802828,0.094400234520435],[0.063229978084564,-0.05907167494297,0.07332568615675],[0.1183011084795,-0.05686504393816,-0.17710502445698]],[[-0.10289826989174,-0.087549105286598,-0.017335936427116],[-0.14779824018478,-0.12311501801014,0.17627707123756],[-0.048750568181276,-0.10830677300692,0.13978241384029]],[[-0.14785400032997,-0.026014745235443,0.10631497204304],[0.11102461069822,0.059781935065985,-0.03120762296021],[-0.04193440079689,-0.082762449979782,0.062167692929506]],[[0.043234065175056,0.0078184334561229,0.049727626144886],[-0.030041618272662,0.0010761967860162,-0.12867270410061],[-0.072566263377666,0.077410526573658,-0.29739663004875]],[[0.080148220062256,0.10248581320047,0.09002210944891],[-0.059141810983419,-0.011883332394063,-0.027430754154921],[-0.11146977543831,0.076076105237007,0.10083948075771]],[[-0.048065975308418,-0.066759698092937,-0.10729441791773],[0.056492373347282,0.011318727396429,0.039318528026342],[-0.21282824873924,0.21068234741688,0.091641515493393]],[[0.032942242920399,-0.067951120436192,0.17265622317791],[-0.048148401081562,0.07426530867815,0.10688063502312],[0.04225280508399,-0.099545024335384,-0.049538940191269]],[[0.078271336853504,-0.0013718045083806,0.014980746433139],[-0.050092212855816,-0.016320345923305,0.020638413727283],[0.062266673892736,0.07100834697485,0.066180698573589]],[[0.094440795481205,0.014992031268775,-0.076011575758457],[0.047523386776447,-0.016116168349981,-0.11153315007687],[0.044980313628912,-0.0027818807866424,-0.053022250533104]],[[0.016246184706688,0.13438972830772,0.065756030380726],[-0.099099360406399,0.12531505525112,-0.10005750507116],[0.083182364702225,-0.043984934687614,0.015713602304459]],[[-0.12239692360163,-0.085850931704044,-0.064176298677921],[0.012517744675279,0.041888564825058,-0.13540683686733],[-0.0086626401171088,0.015407656319439,-0.10969055444002]],[[-0.1728517562151,-0.067299224436283,0.19763284921646],[-0.007370297331363,-0.13004764914513,0.0010841088369489],[-0.22889097034931,-0.15015068650246,0.0056571909226477]],[[-0.045113377273083,-0.059831481426954,0.023962751030922],[0.019389206543565,-0.03416932374239,0.16194385290146],[-0.060996390879154,-0.010340778157115,0.15976639091969]],[[-0.052760072052479,0.034439362585545,-0.19284278154373],[-0.035651188343763,0.10979324579239,-0.033858798444271],[0.096847511827946,0.024520009756088,-0.021833501756191]],[[-0.041008446365595,0.22707915306091,0.0017301822081208],[-0.077018082141876,0.020474707707763,0.020230118185282],[-0.20900894701481,-0.12798690795898,0.00088052434148267]],[[-0.035922363400459,0.0085691567510366,-0.056167338043451],[0.088361293077469,0.13556884229183,0.15691676735878],[0.1156143695116,-0.13535885512829,-0.037077996879816]],[[0.10268104821444,0.13593876361847,0.12633734941483],[0.021246133372188,0.089777261018753,0.021447338163853],[-0.14372950792313,-0.042504884302616,0.13929978013039]],[[-0.096062734723091,0.043573103845119,0.10485696792603],[0.048813730478287,-0.010223725810647,0.051393505185843],[-0.0065896608866751,-0.015952903777361,0.070056840777397]],[[-0.089958839118481,-0.18169738352299,-0.099089987576008],[0.11900869011879,-0.061993844807148,-0.052639652043581],[0.089288964867592,0.043032709509134,-0.081275120377541]],[[0.024575589224696,-0.079968057572842,-0.094856612384319],[0.010079262778163,0.017007088288665,-0.10678496956825],[0.0025013545528054,0.12426405400038,-0.059310365468264]],[[-0.032179318368435,-0.023424042388797,0.013074702583253],[-0.022637585178018,-0.001360091380775,0.049930952489376],[-0.14389428496361,0.037805519998074,0.12314091622829]],[[-0.049434714019299,0.23297901451588,-0.027786027640104],[0.035643260926008,0.04107653349638,-0.11588194221258],[-0.10523211210966,-0.077198572456837,-0.18267218768597]],[[-0.031343162059784,0.07425145804882,-0.047444347292185],[0.013841992244124,0.0075533231720328,0.062963865697384],[0.066903851926327,-0.049393955618143,-0.028311228379607]],[[-0.11851397901773,-0.021804973483086,-0.00062767381314188],[0.063573837280273,0.083940178155899,0.01813885755837],[-0.034214876592159,0.048532702028751,0.043895449489355]],[[-0.063745081424713,-0.096682272851467,-0.12366047501564],[-0.12639810144901,0.045806955546141,0.057298284024],[-0.14212343096733,-0.035345569252968,0.017883477732539]],[[-0.059238072484732,-0.060138918459415,-0.25284039974213],[-0.046634886413813,-0.024510860443115,-0.16188019514084],[-0.10032625496387,0.041116088628769,0.089411407709122]]],[[[0.022930443286896,0.012255592271686,-0.13936477899551],[0.11771941184998,0.14421840012074,-0.002372459275648],[0.12521305680275,0.0035766733344644,-0.22802065312862]],[[0.074828252196312,0.0086433719843626,-0.19784985482693],[0.17040587961674,0.046091079711914,0.048625115305185],[-0.088134072721004,-0.070340424776077,-0.057372510433197]],[[-0.1694234162569,0.016179066151381,-0.022621104493737],[-0.080509401857853,0.080304026603699,0.077179238200188],[0.069101221859455,-0.13755455613136,-0.085596464574337]],[[0.10128592699766,0.1300356388092,0.1740607470274],[-0.059784803539515,-0.10578800737858,-0.17798958718777],[0.22111573815346,0.23197086155415,0.11405390501022]],[[-0.075248897075653,-0.067357093095779,-0.026047006249428],[-0.02413766272366,0.20065553486347,0.16252708435059],[-0.032712213695049,0.055852960795164,0.00032392275170423]],[[-0.067456215620041,-0.063552640378475,0.021521873772144],[-0.063123822212219,-0.047073755413294,-0.059647884219885],[0.015157361514866,0.070485770702362,0.052332352846861]],[[0.087687693536282,0.039085537195206,0.064079269766808],[-0.045504249632359,-0.17809258401394,-0.15740732848644],[0.13757455348969,0.15738639235497,0.1647244989872]],[[-0.029465148225427,0.017951754853129,0.17208781838417],[0.0068918652832508,-0.019712388515472,-0.094979181885719],[0.1014115139842,0.12525154650211,-0.061882447451353]],[[-0.0015744488919154,0.14073538780212,0.081875786185265],[0.059246499091387,0.14758986234665,-0.056544601917267],[0.029627315700054,0.18564078211784,0.022662525996566]],[[0.032155767083168,-0.068230360746384,-0.079699702560902],[-0.031630098819733,0.13106735050678,0.062846072018147],[-0.091659612953663,0.01924011297524,0.087694607675076]],[[0.1645879149437,0.073742397129536,0.1183847784996],[0.23828639090061,-0.046492874622345,-0.11748399585485],[0.13489654660225,0.17578954994678,0.10137140005827]],[[-0.003601263044402,-0.34134912490845,0.027776828035712],[0.18843483924866,-0.15584643185139,-0.04036033526063],[-0.013105191290379,-0.192163169384,-0.065162293612957]],[[0.023424483835697,0.016230015084147,0.079696372151375],[0.089960232377052,-0.040735431015491,0.02690015360713],[0.0045962790027261,0.0089788474142551,0.071499392390251]],[[0.13003268837929,0.062078598886728,0.070052087306976],[0.14746385812759,-0.011824261397123,0.021586336195469],[-0.02080749347806,-0.061364278197289,0.05775049701333]],[[0.092759296298027,-0.086337774991989,-0.034297358244658],[0.023502085357904,0.013441610150039,-0.03668437898159],[0.082475930452347,0.064592309296131,-0.11997124552727]],[[-0.002476379275322,0.1533073335886,-0.11145920306444],[-0.046336088329554,0.12745785713196,-0.044303603470325],[0.010778433643281,0.102579459548,-0.12455660104752]],[[0.10169402509928,0.11474648863077,0.16916839778423],[-0.085391864180565,-0.0091441376134753,-0.019497327506542],[-0.0069931275211275,-0.038633674383163,-0.06789593398571]],[[-0.16418321430683,-0.029955077916384,0.079695835709572],[-0.042594663798809,-0.12028263509274,0.090143017470837],[0.11453279852867,-0.066266298294067,0.018129395321012]],[[-0.17869925498962,0.1024053171277,-0.035893984138966],[0.012889934703708,0.054155696183443,0.074856005609035],[0.037564810365438,-0.080536238849163,-0.044753909111023]],[[0.0055819693952799,0.1147710904479,0.059531021863222],[-0.10034124553204,-0.089209869503975,0.087149567902088],[-0.15522393584251,0.079490803182125,0.073526218533516]],[[0.026450958102942,0.030219087377191,-0.081667028367519],[0.0075785163789988,0.099023029208183,-0.13946244120598],[-0.15501157939434,-0.0008167335181497,0.046995263546705]],[[-0.14760288596153,0.033254839479923,-0.064361788332462],[0.014358693733811,0.1577420681715,0.091042585670948],[-0.0059706047177315,0.040720589458942,-0.15981212258339]],[[0.056376006454229,0.21757462620735,-0.047172013670206],[-0.16097028553486,0.06062638014555,0.2266701310873],[-0.087466403841972,0.097186543047428,-0.18498186767101]],[[0.047621015459299,-0.044311851263046,0.0098692206665874],[-0.0082453209906816,-0.004660053178668,0.13550706207752],[0.091021828353405,0.14074252545834,0.065062321722507]],[[0.019364181905985,0.093377970159054,0.09259519726038],[-0.027615070343018,0.075218938291073,0.028502972796559],[-0.020586129277945,-0.027673939242959,0.050471555441618]],[[-0.064475663006306,0.0031386537011713,0.14007392525673],[0.10292428731918,0.15392658114433,-0.032719749957323],[-0.079358212649822,-0.18763336539268,-0.084265366196632]],[[-0.014910602010787,0.022728215903044,0.024995267391205],[0.052043344825506,0.053320590406656,-0.012786941602826],[-0.029294911772013,-0.041993025690317,-0.027390683069825]],[[-0.0088327676057816,0.044281836599112,0.16168953478336],[0.094159841537476,0.040096074342728,-0.0052197529003024],[0.024141270667315,0.079892337322235,0.054108660668135]],[[-0.04303253442049,0.17528465390205,-0.0018747141584754],[0.0081009734421968,0.074623852968216,-0.043924685567617],[0.019363792613149,-0.061641670763493,-0.19852197170258]],[[0.0077235964126885,-0.032496012747288,0.007212882861495],[0.029715195298195,-0.024905003607273,-0.066030882298946],[-0.068951062858105,0.024454891681671,0.15324780344963]],[[0.10740901529789,0.17463406920433,0.020113784819841],[0.04332073405385,0.11084949970245,0.084295898675919],[0.016448691487312,-0.13997681438923,-0.082921266555786]],[[-0.0018464663298801,-0.025857398286462,-0.10223591327667],[0.030481060966849,0.012625857256353,0.10145268589258],[0.016314309090376,0.049523070454597,0.027900910004973]]],[[[0.0092553459107876,-0.0021624185610563,0.12225580215454],[-0.078249305486679,-0.021046511828899,-0.059862326830626],[0.10017100721598,0.021655635908246,-0.057968840003014]],[[0.036811597645283,0.0029189055785537,0.014300956390798],[0.012444608844817,0.039337981492281,-0.040046814829111],[0.012011648155749,0.035333573818207,0.089367754757404]],[[-0.03953030705452,0.045869246125221,0.091468445956707],[0.15565900504589,0.017827844247222,0.012649928219616],[-0.087608605623245,0.013773332349956,0.060097612440586]],[[0.12241480499506,0.22415751218796,0.12827299535275],[-0.20234756171703,0.049625400453806,-0.16997286677361],[-0.01233066059649,0.091646641492844,-0.00072322506457567]],[[-0.07419192045927,-0.05241921544075,-0.031396668404341],[0.031365096569061,-0.069006234407425,-0.0012173216091469],[0.046013850718737,-0.026101084426045,-0.046190563589334]],[[-0.17179121077061,0.12315470725298,0.007184499874711],[-0.047938596457243,0.03505602478981,0.05283122882247],[-0.13595847785473,0.06055610999465,0.053744487464428]],[[-0.32610592246056,-0.096869088709354,-0.042527552694082],[0.052625712007284,-0.052695594727993,-0.041111454367638],[-0.0041165412403643,-0.026776427403092,0.067520290613174]],[[-0.18568667769432,0.097777761518955,0.032587047666311],[-0.27299612760544,-0.097510106861591,0.05535563826561],[-0.1312265843153,-0.017295958474278,0.064695902168751]],[[-0.09403433650732,0.0045236744917929,0.028692526742816],[-0.11318326741457,-0.0327979773283,0.074038103222847],[0.0074006882496178,-0.068658940494061,0.047215189784765]],[[-0.18088984489441,0.10283473879099,-0.0029468091670424],[-0.063371032476425,0.025911781936884,-0.30334541201591],[-0.17496687173843,-0.078571759164333,-0.13583326339722]],[[0.049565240740776,0.043867763131857,-0.061511795967817],[-0.16960243880749,-0.017002323642373,-0.084620520472527],[-0.086472772061825,-0.038854815065861,0.068083576858044]],[[-0.14840637147427,0.052164044231176,0.13265089690685],[-0.06485665589571,0.055224992334843,-0.18175655603409],[-0.09793795645237,0.03428416326642,0.093170091509819]],[[-0.15723766386509,-0.070294626057148,-0.036458861082792],[-0.16581006348133,0.014078709296882,-0.13965219259262],[-0.058551240712404,0.032160293310881,0.0054019778035581]],[[-0.016133975237608,0.10387148708105,0.099380001425743],[-0.079367682337761,-0.10050737857819,-0.042379960417747],[-0.10073022544384,0.0015095738926902,0.13257835805416]],[[-0.043772295117378,-0.037622023373842,0.043374788016081],[-0.012594289146364,0.045709040015936,-0.055498018860817],[0.0079681631177664,-0.026719441637397,0.0054355980828404]],[[0.15908785164356,0.095536760985851,-0.0029447698034346],[-0.012680077925324,-0.039261348545551,-0.035450074821711],[-0.082346804440022,0.045336104929447,-0.094654977321625]],[[-0.13708531856537,-0.2110220938921,-0.016974231228232],[-0.04524927213788,-0.23039372265339,0.10204862803221],[0.062715880572796,0.045234587043524,0.055187504738569]],[[-0.086043760180473,0.092080503702164,-0.11091819405556],[0.077831953763962,0.1326732635498,-0.040651626884937],[0.052598536014557,0.070796482264996,-0.068120926618576]],[[-0.068787641823292,0.014058741740882,0.016014384105802],[-0.022344229742885,0.0065242541022599,-0.018226485699415],[0.046403374522924,0.028371032327414,0.023740086704493]],[[-0.014106577262282,-0.083709500730038,0.044038489460945],[-0.04949014633894,-0.019000289961696,-0.038958292454481],[-0.03411366418004,0.020137645304203,0.12134727835655]],[[0.073166593909264,0.06625908613205,0.021965419873595],[-0.13316889107227,-0.074177995324135,0.050373669713736],[0.031717773526907,0.10397578030825,0.10714533179998]],[[0.00010986355482601,-0.021421004086733,-0.1760723143816],[0.070008516311646,0.08975188434124,0.10188490152359],[0.059028722345829,-0.07927305996418,-0.36006042361259]],[[0.11856743693352,0.17837209999561,-0.16051903367043],[0.026261642575264,-0.080306954681873,-0.082681871950626],[-0.09160128980875,0.042075496166945,0.041914775967598]],[[-0.18890304863453,-0.069055989384651,-0.063231743872166],[0.011960232630372,0.07016359269619,0.11692493408918],[-0.044122833758593,-0.17984175682068,-0.076357088983059]],[[-0.066993787884712,-0.017352381721139,-0.098615124821663],[-0.060826048254967,-0.2316876500845,-0.015432556159794],[-0.097525767982006,-0.02538874745369,0.14164175093174]],[[-0.031270664185286,-0.26024580001831,-0.027043905109167],[-0.027112007141113,0.053603317588568,0.11622094362974],[-0.020550539717078,0.064649112522602,0.11227215826511]],[[-0.013028843328357,-0.044333666563034,0.080706909298897],[-0.022711822763085,0.038210242986679,0.045913130044937],[0.048296608030796,-0.015256438404322,-0.17932361364365]],[[0.37395775318146,0.071699567139149,0.060732007026672],[-0.12639345228672,-0.055858951061964,-0.096549443900585],[0.14297060668468,-0.047399528324604,0.068082496523857]],[[-0.23034062981606,-0.10510479658842,0.14863727986813],[-0.16800463199615,-0.13063685595989,-0.01167872082442],[-0.20611324906349,0.012067527510226,-0.044218763709068]],[[-0.011836207471788,0.11225828528404,0.00026316425646655],[-0.063938461244106,-0.028111159801483,0.0077301640994847],[0.070203840732574,0.0011194425169379,0.040130391716957]],[[-0.074808530509472,0.1377824395895,0.02444364503026],[-0.10202108323574,0.062408611178398,-0.01876980997622],[0.015723168849945,0.12347187101841,-0.094934038817883]],[[-0.11162639409304,-0.069207757711411,-0.067648902535439],[-0.11829616874456,-0.065675087273121,0.053174246102571],[0.015397702343762,-0.0078809130936861,-0.074178494513035]]],[[[-0.117999792099,0.071924462914467,-0.077143527567387],[0.092464134097099,0.094937965273857,-0.020470755174756],[-0.12333140522242,0.08530892431736,0.01420486997813]],[[-0.015850955620408,-0.080998942255974,0.060946300625801],[-0.077445484697819,-0.16133761405945,-0.0010416987352073],[-0.0074419141747057,-0.11070484668016,0.072667300701141]],[[-0.18910530209541,0.20416301488876,-0.058134075254202],[0.17196108400822,-0.0074874837882817,0.042315579950809],[-0.037999920547009,0.2935351729393,-0.046658791601658]],[[-0.016534710302949,-0.031087024137378,-0.18375870585442],[0.087114326655865,0.13038669526577,-0.022296506911516],[-0.035912089049816,-0.049012683331966,-0.04385844245553]],[[-0.00091038248501718,-0.2010131329298,-0.0236587934196],[-0.011953555978835,-0.074685268104076,0.045956376940012],[0.15224409103394,-0.14507023990154,-0.14576609432697]],[[0.0099337678402662,-0.11678557097912,-0.11679535359144],[-0.099191516637802,-0.066892981529236,-0.044190261512995],[-0.12147361040115,-0.10198111832142,0.095290414988995]],[[-0.085672900080681,0.13014270365238,0.035975705832243],[0.15874265134335,0.028715180233121,0.081637427210808],[0.13448376953602,0.016173342242837,-0.12314812093973]],[[-0.099445857107639,-0.10470026731491,0.031724281609058],[0.1505825817585,0.12847474217415,0.059897154569626],[-0.12177143990993,0.044761035591364,-0.099094279110432]],[[-0.048556309193373,0.076260671019554,0.078482307493687],[-0.19143654406071,-0.1385355591774,-0.085661761462688],[-0.024741657078266,0.1441882699728,0.081821046769619]],[[0.025723477825522,-0.051268447190523,-0.059393338859081],[0.098591037094593,0.10588271170855,0.15284606814384],[-0.039017617702484,-0.042006131261587,-0.038943972438574]],[[-0.0023578929249197,-0.023571668192744,-0.034520503133535],[-0.026016784831882,-0.11390138417482,-0.014162169769406],[0.094909451901913,-0.057232078164816,0.013373943977058]],[[-0.19658020138741,-0.15144808590412,-0.19051031768322],[0.18147855997086,0.12557390332222,-0.12183970212936],[0.10770139843225,-0.019719565287232,0.090435869991779]],[[0.050653669983149,-0.042273949831724,-0.02136617153883],[-0.019255239516497,0.14105010032654,0.01737641915679],[-0.0068969167768955,-0.052048284560442,-0.058071468025446]],[[-0.018771775066853,-0.16826583445072,-0.13059566915035],[0.15325431525707,0.090558260679245,-0.00084946193965152],[0.11530768871307,-0.089524880051613,0.029585590586066]],[[0.0063845692202449,-0.076866418123245,0.0035816049203277],[-0.010420368053019,-0.045644409954548,-0.027722740545869],[0.030847920104861,-0.039274454116821,0.058309268206358]],[[-0.15523605048656,-0.2767314016819,-0.027034010738134],[0.038754034787416,0.081573352217674,-0.10822927951813],[-0.19498158991337,-0.23340435326099,0.074760034680367]],[[-0.0554039478302,-0.0298852622509,0.014460160396993],[0.0027289390563965,-0.22940458357334,-0.014240828342736],[-0.13406321406364,-0.06045413762331,0.036164652556181]],[[-0.04831849783659,-0.089632786810398,-0.12492350488901],[0.15931801497936,-0.14563411474228,-0.17001028358936],[-0.081134013831615,-0.025321399793029,-0.18159782886505]],[[0.049394559115171,-0.062970131635666,-0.050309728831053],[0.17355051636696,0.0028785800095648,-0.10902152955532],[-0.015540502034128,-0.088063225150108,-0.1426018923521]],[[0.16215243935585,0.12907138466835,0.013490104116499],[-0.044534590095282,-0.15047182142735,-0.16397069394588],[-0.017640283331275,0.025399304926395,0.097221173346043]],[[0.029616728425026,0.17486608028412,-0.16521760821342],[-0.060560625046492,-0.007823197171092,0.10987149178982],[-0.16541719436646,0.017261216416955,0.056631095707417]],[[0.0067417342215776,-0.061681110411882,0.098016306757927],[0.029175287112594,-0.069395616650581,0.11536933481693],[-0.13037446141243,0.20742292702198,0.1010539457202]],[[0.12250347435474,-0.090384535491467,0.07202835381031],[0.016451768577099,-0.21898646652699,-0.16118967533112],[0.069427311420441,0.0097444104030728,-0.032052334398031]],[[0.06767550110817,-0.073302656412125,-0.0066637224517763],[0.010769912973046,-0.13262215256691,-0.097735270857811],[-0.068192139267921,-0.041267178952694,-0.0026109658647329]],[[-0.042806077748537,-0.14401876926422,0.0036535519175231],[0.039589650928974,-0.054076083004475,0.069674596190453],[0.16138154268265,0.024298682808876,-0.02633167244494]],[[0.13371336460114,0.071206770837307,-0.12610231339931],[-0.070370592176914,0.020429585129023,-0.059495121240616],[-0.15706637501717,-0.0097771324217319,0.17840288579464]],[[0.019079443067312,-0.055440064519644,-0.074982114136219],[-0.0013770393561572,-0.02130631916225,-0.072629272937775],[0.0080714402720332,-0.11077723652124,-0.13842390477657]],[[0.11477792263031,-0.045219179242849,0.030389815568924],[0.043742354959249,0.041903637349606,-0.16307860612869],[0.10561408102512,0.053167704492807,-0.08693540096283]],[[-0.087084509432316,-0.13387455046177,0.05868312343955],[0.10850762575865,0.21758413314819,0.11157836019993],[0.026472499594092,-0.0037596670445055,0.0057006739079952]],[[0.011063138023019,0.039035830646753,0.044280875474215],[0.026588555425406,0.052168425172567,0.033595066517591],[0.13563114404678,-0.070666342973709,-0.015924237668514]],[[-0.11316203325987,-0.0514847189188,-0.15933635830879],[-0.14505012333393,0.058239810168743,-0.051822811365128],[-0.033951014280319,0.013573509640992,0.014601518400013]],[[0.069446988403797,0.069595068693161,0.016813615337014],[-0.29143619537354,-0.13108819723129,0.064613625407219],[0.18804912269115,-0.036478098481894,0.0050598317757249]]],[[[-0.027379954233766,-0.083279229700565,0.027696346864104],[-0.005427606869489,-0.010758416727185,0.042397674173117],[-0.016510225832462,0.035756468772888,-0.11383680999279]],[[-0.057950016111135,0.0052334279753268,0.040856085717678],[-0.03979891911149,-0.046868521720171,-0.030285278335214],[0.14328467845917,0.029823865741491,-0.022825302556157]],[[0.013159777969122,0.11508664488792,-0.069408319890499],[0.10692003369331,-0.014387748204172,-0.07578556984663],[-0.21100473403931,0.0056334710679948,-0.040817275643349]],[[0.043805461376905,-0.091269828379154,-0.23061335086823],[-0.059686977416277,-0.0088973939418793,0.063110463321209],[0.052524842321873,0.10054074972868,0.01637733541429]],[[-0.10681238025427,0.0025368023198098,0.18360114097595],[-0.039585195481777,0.0034832954406738,0.0012939886655658],[0.072885528206825,-0.060695137828588,-0.070661038160324]],[[-0.079235963523388,0.047638960182667,0.0664451867342],[0.0072613651864231,0.032625585794449,0.12249298393726],[0.060839753597975,-0.015859689563513,-0.11494102329016]],[[0.26785770058632,0.024255556985736,0.056360732764006],[0.10312017798424,-0.31100824475288,-0.039104450494051],[-0.028516562655568,-0.10901705175638,-0.21659468114376]],[[0.19578874111176,0.052855618298054,-0.16253034770489],[-0.12366836518049,-0.10560514777899,-0.033506575971842],[-0.013459417968988,-0.060158275067806,-0.032202392816544]],[[-0.14469495415688,0.031436204910278,0.051192749291658],[-0.032653085887432,0.043018169701099,0.04701055586338],[0.10406381636858,0.054130781441927,-0.16552890837193]],[[0.094334661960602,0.14172287285328,0.098327159881592],[0.11211097240448,-0.056358367204666,-0.028927966952324],[0.048398464918137,-0.15896762907505,-0.0075093205086887]],[[0.02762539498508,0.055452477186918,-0.10982018709183],[0.046719204634428,-0.034244444221258,-0.18958431482315],[-0.016670214012265,0.0064293337054551,-0.14988195896149]],[[0.075855679810047,0.071504034101963,0.015813048928976],[-0.026140637695789,-0.13164368271828,-0.17594015598297],[-0.16698159277439,-0.13088096678257,-0.0077881454490125]],[[-0.03345737606287,-0.027578381821513,-0.072264902293682],[0.080684028565884,0.099139392375946,-0.056128520518541],[-0.097645595669746,-0.026972223073244,0.003010842949152]],[[0.0070473956875503,-0.25864559412003,-0.26497119665146],[-0.094779007136822,-0.13896556198597,0.074147753417492],[0.046454209834337,0.024258825927973,0.046716716140509]],[[-0.063901036977768,-0.034951873123646,0.044806648045778],[0.070255316793919,0.040317077189684,-0.033890660852194],[-0.0277258772403,0.0024586848448962,0.053909864276648]],[[-0.1924335360527,0.022898834198713,0.0011089674662799],[-0.19406954944134,0.20931327342987,-0.086582466959953],[0.026471959426999,0.033994380384684,-0.17128621041775]],[[-0.016297589987516,-0.12266579270363,-0.075416952371597],[0.048618260771036,-0.077481061220169,0.044438067823648],[-0.088626407086849,-0.058946862816811,-0.15530456602573]],[[-0.096048913896084,0.12300257384777,0.043422549962997],[0.090599447488785,-0.067472025752068,0.10634779185057],[-0.02873221039772,0.029542053118348,0.057436291128397]],[[-0.2934598326683,-0.1717793494463,0.020881259813905],[0.12180062383413,-0.10063158720732,-0.051085494458675],[-0.10649193078279,-0.14752052724361,-0.034441765397787]],[[0.20870153605938,0.19500015676022,0.088124692440033],[-0.075677588582039,-0.12073469161987,0.046824932098389],[-0.015566627494991,-0.05206798017025,-0.1126127243042]],[[0.11186490207911,0.037985406816006,-0.21831904351711],[0.053611770272255,-0.038650881499052,-0.20747691392899],[0.069561786949635,-0.064687564969063,-0.14765055477619]],[[-0.072517268359661,0.0256616640836,0.13202868402004],[0.04399985447526,0.036904040724039,0.083552993834019],[-0.18373669683933,0.16568949818611,-0.16218709945679]],[[-0.081865824759007,0.028339108452201,-0.042351216077805],[0.083602763712406,0.12115380167961,-0.11391039937735],[0.16399872303009,0.14271453022957,0.026187013834715]],[[0.13020172715187,0.13580422103405,-0.17761178314686],[0.18985040485859,0.096535056829453,-0.13764460384846],[-0.048416797071695,-0.050857752561569,-0.15503369271755]],[[-0.0084205744788051,-0.02427439391613,0.16640210151672],[-0.22514921426773,-0.11122021824121,-0.14310635626316],[0.20918402075768,-0.033469751477242,-0.069155365228653]],[[0.072149001061916,-0.021900232881308,-0.083223685622215],[-0.014398779720068,-0.10250791162252,0.0860430970788],[-0.12695881724358,0.086536347866058,-0.082591012120247]],[[0.038220267742872,-0.035898115485907,0.059331495314837],[0.039761200547218,-0.0073203542269766,0.082073144614697],[-0.0038543287664652,-0.074919804930687,-0.1030787229538]],[[-0.070859767496586,-0.27501547336578,0.029911898076534],[0.052479609847069,-0.054606709629297,-0.11093877255917],[0.15308648347855,0.08452296257019,0.050189476460218]],[[0.049038574099541,0.09043250232935,0.11216451972723],[0.048170607537031,0.043782245367765,0.058076091110706],[-0.036629740148783,-0.24680735170841,-0.029304826632142]],[[0.058728765696287,0.042541965842247,0.063584119081497],[-0.009662133641541,0.0024322527460754,-0.12014780938625],[-0.078964561223984,0.017379304394126,0.014189088717103]],[[0.0042866584844887,0.10128307342529,-0.083848863840103],[0.05955196171999,-0.0104028172791,-0.013535346835852],[-0.16689962148666,-0.15915857255459,0.035223972052336]],[[-0.16853676736355,0.010611777193844,0.13538880646229],[-0.02485204860568,0.070796310901642,-0.039368566125631],[-0.16193051636219,0.051467850804329,0.11147216707468]]],[[[0.1404941380024,0.037633653730154,-0.14880427718163],[0.094356156885624,-0.0089415945112705,0.068809553980827],[0.015196909196675,0.015653988346457,0.041038669645786]],[[-0.071810558438301,-0.090073026716709,-0.053940758109093],[0.038556408137083,0.068803779780865,-0.091974288225174],[-0.045516319572926,-0.055690120905638,-0.022250529378653]],[[0.019549570977688,-0.095486134290695,-0.13398978114128],[0.030568558722734,0.027748934924603,-0.073567822575569],[-0.079778388142586,-0.10800348967314,0.061283763498068]],[[0.031080082058907,-0.066189080476761,-0.019745208323002],[0.0021788217127323,-0.16843897104263,-0.14045771956444],[-0.0034636801574379,0.080988682806492,0.1363033503294]],[[0.095118917524815,-0.073522068560123,-0.033864907920361],[0.056420635432005,0.085683822631836,0.10510224103928],[-0.017138952389359,-0.067791953682899,0.12592169642448]],[[0.05612313374877,-0.063643701374531,0.10918122529984],[-0.0043106772936881,0.032370176166296,0.17905643582344],[0.086058616638184,0.021481482312083,-0.13723921775818]],[[-0.13310220837593,0.014576843939722,-0.057683289051056],[-0.093789979815483,-0.022098941728473,-0.064045690000057],[0.014985686168075,0.16593250632286,0.18145674467087]],[[0.027846127748489,-0.018131935968995,0.13373017311096],[-0.032192762941122,0.031223762780428,0.12193062901497],[0.13084742426872,-0.11412592232227,0.16311894357204]],[[0.0094896331429482,-0.049566030502319,0.10726833343506],[0.0085590416565537,0.054868601262569,0.026785377413034],[-0.13278263807297,-0.009452466852963,-0.010678101330996]],[[0.065702393651009,-0.16086353361607,0.016415044665337],[0.024748554453254,-0.041906584054232,0.081205986440182],[0.2739220559597,0.018005486577749,-0.051676914095879]],[[-0.066212959587574,0.013500986620784,0.026805123314261],[0.10394082963467,-0.034510221332312,0.012447990477085],[0.080827131867409,-0.0024089163634926,-0.18432626128197]],[[0.036798950284719,0.15269845724106,0.0045476583763957],[-0.04322225600481,0.047060038894415,0.041968233883381],[-0.19288866221905,-0.049250718206167,-0.016070827841759]],[[0.143729403615,0.029620600864291,0.023635262623429],[-0.038593210279942,0.080555118620396,-0.011305228807032],[0.0076676211319864,-0.077082417905331,-0.011104302480817]],[[0.06579402089119,0.11845961213112,-0.08237262070179],[0.13590927422047,0.0043373806402087,-0.066728718578815],[0.11082203686237,0.064585849642754,0.045148324221373]],[[0.021536668762565,0.12443667650223,-0.0063456725329161],[-0.046000216156244,0.030381390824914,0.033557195216417],[-0.049340840429068,-0.018506282940507,0.068788148462772]],[[-0.03578170761466,0.032570689916611,0.23845335841179],[-0.1168405637145,0.03024679236114,0.066906817257404],[-0.090877294540405,-0.10965614020824,-0.021674221381545]],[[-0.10246124118567,-0.048117887228727,-0.026626754552126],[-0.076223328709602,0.046180885285139,0.064963489770889],[0.063524425029755,0.030118253082037,0.01766007207334]],[[0.05415390431881,0.11139187216759,-0.0013882967177778],[-0.047681208699942,-0.004849199205637,0.053066462278366],[0.024706995114684,-0.070371061563492,-0.11189226061106]],[[0.13515421748161,-0.077836744487286,-0.18775923550129],[0.042888183146715,-0.17782860994339,-0.10751801729202],[-0.020841417834163,-0.043403103947639,-0.048537574708462]],[[-0.0075662904419005,0.017956519499421,-0.012138562276959],[0.036864124238491,0.023260753601789,-0.091613620519638],[0.13400273025036,0.015689311549067,-0.039614297449589]],[[-0.08507339656353,-0.027523379772902,-0.060052044689655],[0.10627949982882,-0.041927896440029,-0.063446611166],[-0.0061770942993462,0.087507627904415,-0.070250973105431]],[[0.018612246960402,0.058866370469332,-0.0014552110806108],[-0.1323064416647,0.01804031431675,0.018733441829681],[-0.04599804058671,0.029952613636851,-0.08437355607748]],[[0.029613541439176,-0.0014554661465809,-0.031182546168566],[-0.11654991656542,0.029611732810736,-0.05191832408309],[-0.1574749648571,-0.10780455172062,0.15924896299839]],[[-0.11220356822014,0.10180111974478,0.045987445861101],[0.071909882128239,0.018238404765725,0.014392917975783],[-0.1147591099143,-0.062926307320595,0.089862369000912]],[[-0.0092179905623198,0.025819396600127,-0.075406461954117],[0.20677548646927,-0.045464489609003,-0.096931517124176],[-0.050919611006975,-0.084766872227192,-0.12199069559574]],[[0.080301992595196,0.062225721776485,-0.0062751369550824],[0.095579117536545,-0.031715378165245,0.059896569699049],[0.10386576503515,-0.018615782260895,-0.1213311329484]],[[0.058067105710506,0.0016644246643409,-0.19629673659801],[0.0057932622730732,0.0030704776290804,-0.09579511731863],[-0.028528386726975,0.14146962761879,0.056977588683367]],[[-0.093273028731346,-2.2546057152795e-05,0.05214299634099],[-0.1211559548974,0.11271019279957,-0.1037702858448],[0.03181528672576,0.16288706660271,0.02532802708447]],[[0.11199821531773,0.16806638240814,0.081694796681404],[-0.12266460061073,0.1212145537138,0.11336375027895],[-0.15308073163033,0.011793803423643,0.031643245369196]],[[-0.014542025513947,0.00045828899601474,0.003081844188273],[0.047094311565161,0.050327338278294,-0.040372028946877],[0.014930073171854,-0.049423605203629,0.073399029672146]],[[-0.03722158819437,-0.14099477231503,-0.04458837211132],[0.022193074226379,0.015781974419951,-0.020121229812503],[-0.087999358773232,0.21597817540169,0.067494630813599]],[[-0.034944847226143,-0.087087824940681,0.067164205014706],[0.16228652000427,-0.00060456473147497,-0.13048811256886],[0.10555818676949,0.073916740715504,0.031375121325254]]],[[[-0.084614656865597,-0.071654111146927,-0.096226118505001],[0.12712354958057,0.0012951111420989,0.061311326920986],[-0.094428338110447,-0.061619359999895,0.052964441478252]],[[0.060592081397772,0.089085981249809,-0.060859143733978],[-0.014812438748777,0.024353660643101,0.001454378478229],[0.018961714580655,-0.046375788748264,0.024731015786529]],[[0.021722227334976,0.031180860474706,0.091715931892395],[0.097790896892548,0.22757457196712,0.002469853265211],[-0.21245987713337,-0.13264632225037,-0.023427927866578]],[[-0.10730965435505,-0.093267604708672,0.16417972743511],[0.049667380750179,-0.0086446516215801,0.13866859674454],[0.067003786563873,-0.047814313322306,0.098083913326263]],[[0.011157383210957,-0.086921207606792,0.064641259610653],[0.12341412901878,-0.11480916291475,-0.059014216065407],[0.003575480543077,-0.10325187444687,-0.1228644028306]],[[0.072763338685036,-0.014313625171781,0.06486976146698],[-0.050792217254639,-0.0099080186337233,0.080397292971611],[-0.070945970714092,-0.091816626489162,0.0021039836574346]],[[-0.026000348851085,0.01827727816999,0.034662138670683],[-0.047344814985991,-0.16047199070454,0.010989585891366],[0.12509323656559,-0.14772839844227,0.36537781357765]],[[-0.10304687172174,-0.22528073191643,-0.14980481564999],[0.18857488036156,0.047045517712831,-0.050782136619091],[-0.020841686055064,-0.059413090348244,-0.11705773323774]],[[-0.17135754227638,0.05205450579524,-0.041398953646421],[-0.047265242785215,0.03638107329607,0.0029013829771429],[-0.092938654124737,-0.08012131601572,-0.026340123265982]],[[-0.16249378025532,0.0072276187129319,-0.14195768535137],[-0.024124886840582,0.036866907030344,0.041395880281925],[0.16610127687454,-0.094292372465134,0.12170176208019]],[[-0.22623607516289,-0.11841543763876,-0.1347314119339],[-0.11230294406414,-0.018470169976354,0.097883924841881],[-0.091299876570702,-0.12705628573895,-0.24754691123962]],[[0.074334137141705,-0.076454021036625,-0.060077652335167],[-0.050615057349205,-0.059050973504782,-0.026332302019],[0.012124082073569,-0.031084049493074,-0.054787635803223]],[[-0.11529975384474,0.13566309213638,0.065137788653374],[-0.13207131624222,-0.0070627103559673,0.058826271444559],[-0.087608709931374,0.019836280494928,0.13965359330177]],[[-0.19512936472893,-0.11870098859072,-0.044960252940655],[0.0063531324267387,-0.046305406838655,0.07240479439497],[-0.041964415460825,0.074197679758072,0.16485093533993]],[[-0.061272282153368,0.039934240281582,-0.068585768342018],[0.0012755637289956,0.13761980831623,0.028574142605066],[0.025519259274006,-0.083205252885818,0.065955206751823]],[[0.23553209006786,0.087510347366333,-0.17874337732792],[0.14547477662563,-0.12908479571342,-0.00050299038412049],[-0.31097188591957,-0.059860676527023,0.090661063790321]],[[-0.069796577095985,-0.1158247962594,-0.15260076522827],[-0.19054235517979,0.053684767335653,0.054950889199972],[0.18152193725109,0.057935938239098,0.011254333890975]],[[-0.12777867913246,0.11223492026329,-0.091175429522991],[0.090903505682945,0.15744788944721,-0.21305169165134],[-0.1566831022501,-0.11714901775122,0.062173821032047]],[[-0.18627534806728,-0.043926775455475,-0.10412731021643],[0.040453977882862,0.025770837441087,-0.13840277493],[0.18690851330757,0.0090206442400813,0.024752916768193]],[[-0.088657572865486,-0.077326633036137,-0.085648894309998],[-0.10966522246599,-0.023602111265063,0.08893296122551],[0.032460391521454,-0.084556393325329,0.13061691820621]],[[0.13532538712025,-0.0048314700834453,-0.0022647124715149],[-0.027292184531689,-0.043760348111391,0.14283514022827],[-0.080562688410282,0.01113165076822,-0.0030496425461024]],[[0.17110587656498,0.0073988731019199,-0.051436189562082],[0.12072893232107,-0.18422901630402,-0.0092773456126451],[-0.044748645275831,-0.039117142558098,-0.15254135429859]],[[0.041409060359001,0.12322225421667,0.1934023052454],[-0.12428546696901,0.023835612460971,-0.038050927221775],[0.096148751676083,-0.17297588288784,-0.21174927055836]],[[-0.41368195414543,-0.067345798015594,-0.068476885557175],[0.047855440527201,0.013526063412428,0.14596325159073],[-0.036055687814951,-0.021381735801697,0.087099209427834]],[[-0.10364885628223,-0.056458275765181,-0.15270964801311],[-0.073480345308781,-0.052198600023985,0.059576004743576],[0.0085575673729181,-0.17528563737869,0.1356854736805]],[[-0.0035026334226131,0.033249411731958,0.11826910078526],[-0.089229367673397,-0.12879334390163,0.054267704486847],[0.11371038109064,-0.23055973649025,0.090758487582207]],[[-0.062561586499214,0.074436873197556,-0.032098446041346],[-0.0027381877880543,0.026145581156015,-0.048881310969591],[0.055242009460926,0.0022146266419441,0.021303845569491]],[[0.065620146691799,-0.16722196340561,0.053909111768007],[-0.13735602796078,-0.065152652561665,0.095613062381744],[-0.062586352229118,0.13528497517109,0.015377252362669]],[[-0.047773897647858,-0.10599181801081,0.16116777062416],[0.092083543539047,-0.01651775278151,-0.020614227280021],[0.030012100934982,-0.02045045606792,-0.15070013701916]],[[-0.094015799462795,-0.0019838258158416,-0.015517216175795],[0.0064324233680964,-0.055093459784985,-0.043958749622107],[0.026112090796232,0.019190279766917,-0.032609790563583]],[[-0.0071499818004668,-0.021416716277599,0.053454264998436],[0.028293969109654,-0.023343281820416,0.082656070590019],[0.060675330460072,-0.081264406442642,0.24608564376831]],[[0.030927317216992,0.14426830410957,0.10042153298855],[-0.1175072863698,-0.10324833542109,-0.069529809057713],[-0.039378941059113,0.047757435590029,-0.026307178661227]]],[[[0.10534755885601,0.0052981935441494,-0.1368378251791],[-0.066295392811298,-0.059059336781502,-0.10126104950905],[0.065078914165497,0.026857739314437,0.12402296811342]],[[0.0036460324190557,0.045196663588285,0.016276497393847],[0.086361393332481,0.043814186006784,-0.010773564688861],[-0.061619553714991,-0.025212746113539,-0.020262196660042]],[[-0.016591671854258,-0.036750927567482,-0.028751758858562],[-0.054623480886221,0.0030532418750226,-0.096029512584209],[-0.078717544674873,-0.0028250138275325,-0.0056502013467252]],[[-0.15851916372776,-0.048161800950766,0.080449551343918],[0.0065194680355489,0.0012090458767489,-0.001937254332006],[-0.046873044222593,-0.1056262999773,-0.059523690491915]],[[-0.010400978848338,0.11504531651735,0.01672275364399],[0.091407634317875,-0.016252476722002,-0.019935986027122],[-0.013120722956955,-0.0057042203843594,0.03849671036005]],[[-0.1964315623045,0.18220140039921,0.093702383339405],[-0.031221313402057,-0.10621537268162,-0.018180714920163],[0.18499664962292,0.080675564706326,0.054548695683479]],[[-0.30800333619118,-0.21448223292828,-0.011530887335539],[0.031500343233347,-0.065988279879093,0.12706239521503],[0.25521066784859,0.088544353842735,0.12927287817001]],[[0.0084799816831946,-0.038737177848816,0.030176840722561],[-0.1647597849369,-0.11622823774815,0.023163573816419],[-0.021626442670822,0.068418391048908,0.060962866991758]],[[0.0038377339951694,0.054291054606438,0.05150219425559],[-0.042986676096916,0.11536529660225,-0.13317435979843],[-0.090984933078289,-0.094400480389595,-0.012824336998165]],[[-0.032928638160229,0.10940544307232,-0.06518579274416],[-0.0087332967668772,0.066578842699528,0.073419913649559],[-0.050724651664495,-0.039200410246849,0.011361703276634]],[[-0.032664872705936,-0.0083684464916587,-0.20686435699463],[-0.090732328593731,0.053682632744312,-0.023175235837698],[-0.066754721105099,-0.076811507344246,-0.021637184545398]],[[0.18593589961529,0.10505019873381,0.072868578135967],[-0.20322625339031,-0.21360620856285,-0.052341222763062],[-0.193733304739,0.051443178206682,-0.07159911096096]],[[0.023404954001307,0.02012388035655,-0.030854433774948],[0.0096728382632136,-0.049085322767496,0.074643440544605],[0.047714404761791,-0.055883843451738,0.076445981860161]],[[-0.17797702550888,-0.22462038695812,0.03274018317461],[-0.0080954674631357,-0.18172746896744,-0.12658490240574],[0.017249792814255,-0.050007808953524,-0.053954061120749]],[[0.10509757697582,0.053012598305941,0.015150899998844],[0.060916565358639,-0.00017940222460311,-0.033453442156315],[-0.077190570533276,-0.096058629453182,-0.018370918929577]],[[-0.060424026101828,-0.10139311850071,0.081083029508591],[-0.10594122111797,-0.0078087672591209,0.039092782884836],[0.11481619626284,-0.0099543118849397,-0.0030343926046044]],[[-0.18062098324299,-0.028647810220718,-0.021519804373384],[-0.12114791572094,-0.091478653252125,-0.033492706716061],[0.073173932731152,0.0062919184565544,-0.02754364721477]],[[-0.0058378274552524,0.029593816027045,-0.045872710645199],[0.11038745194674,-0.056887894868851,-0.036298915743828],[-0.11454587429762,-0.16042479872704,0.013813551515341]],[[0.083528116345406,0.0078134313225746,-0.11730325222015],[0.027969965711236,-0.14274033904076,-0.028588470071554],[0.081310018897057,-0.06795459240675,-0.21274645626545]],[[-0.13766847550869,0.012486284598708,-0.026977172121406],[-0.12220287322998,0.035446397960186,-0.034938223659992],[0.041451506316662,0.029623236507177,-0.20436687767506]],[[0.068191267549992,0.079010032117367,0.031419090926647],[-0.1032618060708,-0.087863691151142,-0.17476843297482],[-0.19183513522148,-0.072392635047436,0.059580337256193]],[[-0.013820760883391,0.013110939413309,0.03213731572032],[-0.023974843323231,0.13655500113964,-0.1779118925333],[0.025200683623552,-0.15712340176105,-0.1827777326107]],[[-0.051688905805349,-0.13409121334553,-0.096541747450829],[-0.089479520916939,-0.097087614238262,-0.085418462753296],[0.032152082771063,0.024799754843116,0.0032678402494639]],[[-0.083259634673595,0.0029652731027454,-0.020502991974354],[-0.060448493808508,0.052001014351845,-0.057550117373466],[0.025597024708986,0.070065788924694,0.044065397232771]],[[-0.051212802529335,0.029695475474,-0.10506835579872],[-0.0060654752887785,0.040000662207603,0.013148312456906],[-0.14157006144524,-0.048935431987047,-0.085334368050098]],[[-0.1525254547596,-0.11255650222301,-0.21801276504993],[0.0062517812475562,-0.11254969984293,-0.045387629419565],[0.15794505178928,0.032109875231981,0.00017858337378129]],[[-0.023243082687259,-0.035525046288967,-0.031596429646015],[0.026877753436565,0.0073854234069586,-0.059961568564177],[0.070962458848953,0.059228632599115,0.0074748112820089]],[[0.061673659831285,-0.12787257134914,-0.17359015345573],[-0.083119235932827,-0.061371292918921,-0.12237058579922],[0.18537935614586,-0.041874829679728,-0.0059076016768813]],[[0.056676089763641,0.030581658706069,0.1434772759676],[0.024517090991139,0.022861579433084,-0.18892017006874],[0.11651389300823,-0.0072099757380784,0.13120301067829]],[[-0.054926283657551,-0.24129508435726,0.12776798009872],[0.020982924848795,-0.07442207634449,0.1270856410265],[0.1150253713131,-0.013714456930757,-0.047770034521818]],[[0.043338552117348,-0.089364290237427,-0.15263447165489],[-0.043192740529776,0.012525600381196,0.090021543204784],[-0.021630121394992,-0.088592015206814,0.07262709736824]],[[-0.066832259297371,0.0061052422970533,-0.21193416416645],[0.020000301301479,-0.10000382363796,-0.049641452729702],[0.1145843565464,-0.010199706070125,-0.1426689773798]]],[[[-0.1407872736454,-0.31844890117645,-0.10063370317221],[0.078657299280167,-0.026240719482303,0.049876254051924],[-0.049352958798409,0.15400609374046,-0.043473944067955]],[[-0.13510364294052,-0.033094108104706,0.10723185539246],[0.068307735025883,0.038448702543974,0.030487472191453],[0.048800140619278,-0.021920796483755,-0.035050101578236]],[[-0.14785613119602,0.016922371461987,-0.017480190843344],[0.024408554658294,0.09570237249136,-0.074693113565445],[-0.044660042971373,-0.012768824584782,0.15569511055946]],[[0.19570544362068,-0.15582236647606,-0.045271389186382],[-0.014256090857089,0.036345016211271,-0.10325215011835],[0.093901880085468,0.027976490557194,0.049890842288733]],[[-0.03845015540719,0.10741908848286,0.015023279003799],[-0.080384507775307,0.050638053566217,0.02793319709599],[-0.093475095927715,0.054228879511356,0.024496905505657]],[[-0.13631452620029,0.0095251267775893,0.044116973876953],[0.1318560987711,0.0030491920188069,-0.16178961098194],[-0.27698811888695,0.1098817512393,-0.12345983833075]],[[-0.013460274785757,-0.13374601304531,0.15271565318108],[-0.018173266202211,0.052944499999285,-0.067374229431152],[0.073870375752449,-0.0084424531087279,-0.069764219224453]],[[-0.037182360887527,-0.061769146472216,0.14088669419289],[-0.056231960654259,0.10242082923651,0.11283750087023],[-0.045221969485283,-0.023085337132215,-0.055231988430023]],[[-0.08674069494009,-0.096110604703426,0.039079915732145],[-0.025904780253768,0.018772210925817,0.08077134937048],[-0.081250719726086,0.011726431548595,-0.11627299338579]],[[-0.27836003899574,-0.0097112655639648,-0.096392787992954],[0.0627626106143,0.18234905600548,-0.054403886198997],[-0.080998823046684,-0.028549568727612,-0.13615994155407]],[[-0.10525669157505,0.2769461274147,-0.4273236989975],[-0.11219161748886,0.013907526619732,0.023071950301528],[-0.05583094805479,-0.035043250769377,0.07684338837862]],[[-0.088389590382576,-0.034166142344475,0.11589918285608],[0.084016263484955,0.056828554719687,0.063992738723755],[-0.094321265816689,-0.011845052242279,-0.068933181464672]],[[-0.15820099413395,0.031944517046213,0.044062688946724],[-0.035084452480078,-0.0028295377269387,0.16556367278099],[0.044527906924486,-0.081918373703957,0.066175267100334]],[[-0.042068459093571,-0.12525789439678,-0.15331026911736],[-0.099768251180649,-0.095354557037354,-0.18567660450935],[0.094920784235001,-0.045626919716597,0.15576560795307]],[[-0.018994942307472,0.05394235253334,0.033408235758543],[-0.020863542333245,-0.016457583755255,-0.025769738480449],[-0.0044456594623625,-0.080048300325871,-0.0037630433216691]],[[0.17605093121529,0.078610308468342,-0.068829648196697],[-0.059662319719791,-0.12052952498198,-0.0046200617216527],[0.03854438662529,-0.034838650375605,0.15237240493298]],[[-0.20226235687733,0.017094515264034,0.042777579277754],[-0.22151838243008,-0.012940867803991,0.089687705039978],[0.02920082397759,0.16551847755909,0.026631450280547]],[[-0.17996805906296,0.048585198819637,-0.1407748311758],[0.12548315525055,0.030972173437476,-0.033566445112228],[0.016726739704609,-0.11425238847733,-0.066336207091808]],[[-0.14381846785545,-0.1514258980751,-0.0050533451139927],[0.0036389047745615,0.064129032194614,0.13496072590351],[0.14153043925762,0.037894085049629,-0.087632849812508]],[[-0.061899997293949,-0.050186291337013,-0.10097885131836],[-0.063596434891224,0.083637528121471,-0.083921708166599],[-0.085915543138981,-0.027034560218453,-0.1177973151207]],[[-0.14164054393768,0.11290421336889,0.12566067278385],[-0.039471693336964,-0.046254482120275,0.10989739000797],[-0.080682218074799,-0.14418572187424,-0.018223028630018]],[[-0.1268385797739,0.0077226972207427,-0.082067601382732],[-0.0789794921875,-0.011766084469855,-0.18812255561352],[0.10043948888779,0.080921642482281,0.026303952559829]],[[0.20872972905636,0.16802154481411,0.090645529329777],[0.095170766115189,-0.035927809774876,0.0034359833225608],[-0.10381112247705,-0.052740525454283,-0.23580178618431]],[[-0.35459163784981,0.088826164603233,-0.24903085827827],[-0.079739302396774,-0.039867043495178,-0.075534202158451],[-0.0060613132081926,0.2092649936676,0.028542516753078]],[[-0.25170567631721,-0.13579912483692,0.22125566005707],[-0.050148896872997,-0.14780962467194,0.042983468621969],[-0.046060752123594,-0.020394686609507,-0.17173670232296]],[[0.034771908074617,-0.0080928299576044,0.10407581180334],[0.082212120294571,-0.030173486098647,-0.10179942846298],[0.016055004671216,0.010972069576383,0.070036046206951]],[[-0.07747159153223,-0.013122976757586,0.034977607429028],[-0.018188865855336,-0.044947031885386,0.0088418740779161],[0.039250187575817,-0.095175549387932,0.089840278029442]],[[0.26434564590454,0.02797476388514,0.065026395022869],[0.13216610252857,-0.11440128833055,-0.047901313751936],[0.25124874711037,-0.0056678173132241,-0.35826504230499]],[[-0.1727978438139,-0.099184833467007,-0.081420302391052],[0.20577213168144,0.014523378573358,0.0965571179986],[0.10373409837484,-0.13098202645779,-0.036239635199308]],[[-0.0097679002210498,0.012290083803236,-0.034822642803192],[0.074622832238674,-0.037840738892555,0.0035922836977988],[0.034306183457375,-0.095167502760887,0.10455226153135]],[[0.11497481912374,0.10995125025511,0.022297514602542],[0.040328443050385,-0.18977870047092,0.025598421692848],[-0.038457419723272,0.033785704523325,0.098822496831417]],[[-0.22333925962448,-0.12078899145126,0.067353092133999],[-0.12335249781609,-0.016685429960489,-0.041166666895151],[-0.0043879519216716,-0.062675192952156,0.0079092346131802]]]],"nOutputPlane":64,"kW":3,"kH":3,"bias":[-0.00088570441585034,-0.017642300575972,-0.0093763433396816,-0.030140217393637,-0.012591584585607,-0.021014342084527,-0.015430774539709,0.011659348383546,0.033288329839706,-0.0027394136413932,-0.022575797513127,-0.0074178287759423,-0.012038460932672,-0.016092918813229,-0.00039591104723513,-0.0051650488749146,0.001889122533612,-0.0069586397148669,-0.014342381618917,-0.012480137869716,-0.03077757358551,-0.014550753869116,-0.050572298467159,-0.0030044752638787,-0.022949114441872,-0.026967478916049,-0.00423184921965,-0.02421186119318,-0.019243815913796,-0.010783998295665,-0.0055954237468541,-0.0073485602624714,-0.0024110001977533,-0.040733400732279,-0.030485419556499,-0.010396460071206,-0.011220530606806,-0.013524174690247,-0.028535621240735,0.0044181616976857,-0.0049465275369585,-0.0035977179650217,-0.017997078597546,-0.038110449910164,-0.0049377093091607,-0.0047142342664301,-0.0060111172497272,-0.034761626273394,-0.017016377300024,-0.01301069650799,-0.0040908991359174,-0.0017660140292719,-0.0047477316111326,-0.032297179102898,-0.0023461324162781,-0.0093145156279206,-0.049216791987419,-0.0022949678823352,-0.010662004351616,-0.0038732786197215,-0.035499185323715,-0.015668606385589,1.1346110113664e-05,-0.0025656190700829],"nInputPlane":32},{"weight":[[[[0.13174870610237,-0.091753058135509,-0.19750453531742],[0.025381691753864,0.020856767892838,-0.0079667074605823],[0.018726183101535,0.055819522589445,-0.084749169647694]],[[-0.050905119627714,0.078547261655331,-0.0023144928272814],[0.06268410384655,0.084453083574772,-0.023303687572479],[-0.038322702050209,0.0091115850955248,-0.036704991012812]],[[0.14512120187283,-0.065696038305759,0.17372013628483],[-0.11620689928532,-0.027631917968392,-0.042867787182331],[0.055324245244265,-0.043434653431177,-0.11473174393177]],[[0.11316942423582,-0.06592208147049,-0.056762885302305],[-0.066436566412449,0.075676344335079,0.11288858950138],[-0.034130729734898,-0.12246733158827,-0.046077717095613]],[[0.095883436501026,-0.069073192775249,0.018677381798625],[-0.01135291159153,0.035067800432444,0.066179729998112],[0.03354400396347,-0.015293952077627,-0.016839653253555]],[[-0.025835677981377,-0.012572865001857,-0.12862311303616],[-0.15229505300522,0.086768485605717,-0.016490446403623],[-0.1090437695384,-0.028433233499527,0.11697360128164]],[[-0.07547240704298,0.010320757515728,-0.063824221491814],[0.049857404083014,0.020413290709257,-0.0083798868581653],[0.01040671300143,0.011922210454941,0.066755242645741]],[[-0.06815779209137,-0.11487239599228,0.13707150518894],[-0.034956965595484,-0.03729909285903,0.040047872811556],[-0.043026100844145,0.045985776931047,0.090707413852215]],[[-0.1158848926425,0.0066096587106586,-0.017959209159017],[-0.033024363219738,0.10656396299601,0.016514116898179],[-0.027324736118317,0.037798997014761,0.032855749130249]],[[-0.012424780987203,0.0020631835795939,-0.056586306542158],[-0.020411349833012,-0.038526963442564,0.052177954465151],[0.022720992565155,0.017187651246786,-0.029389267787337]],[[-0.089511074125767,-0.039890915155411,-0.018257042393088],[0.069389149546623,0.04771613702178,0.0070257978513837],[0.026456810534,-0.053838033229113,0.16268211603165]],[[0.02316022105515,-0.057345349341631,0.051108412444592],[-0.0070317680947483,-0.25851354002953,-0.054623875766993],[-0.052917364984751,0.03485906496644,-0.066904194653034]],[[0.02902003005147,0.034608718007803,-0.16981773078442],[0.045173175632954,-0.040918372571468,-0.088026218116283],[-0.043962940573692,0.14442282915115,0.065224654972553]],[[0.061113838106394,0.18448147177696,0.012261273339391],[-0.068224146962166,0.026275485754013,-0.0027430260088295],[0.02736353687942,-0.04512744769454,-0.072423100471497]],[[-0.12163561582565,-0.036583501845598,-0.0092763220891356],[0.026472438126802,-0.047633022069931,-0.027305893599987],[0.021886354312301,0.043413739651442,0.029086232185364]],[[0.072855167090893,-0.17886836826801,-0.085658840835094],[-0.031553775072098,-0.10788694024086,0.029330423101783],[-0.10963599383831,-0.047224994748831,0.032505333423615]],[[0.040686193853617,0.1278540790081,0.015015341341496],[0.022954195737839,0.004378785379231,-0.046669609844685],[0.04582717269659,-0.045851740986109,0.050521943718195]],[[0.067963518202305,0.092252053320408,-0.025040928274393],[0.03587730973959,-0.086639292538166,-0.034550078213215],[0.092264711856842,-0.10559889674187,-0.011641430668533]],[[-0.044079292565584,0.062285363674164,-0.10763863474131],[0.10194426029921,0.12157540023327,-0.064548157155514],[-0.013930388726294,-0.031134020537138,-0.12086544185877]],[[0.03139553964138,-0.076702207326889,0.10454205423594],[0.058379981666803,-0.0014610245125368,0.044570747762918],[0.02724339812994,0.0095713892951608,-0.030729681253433]],[[0.10180769860744,-0.062445789575577,-0.38163295388222],[0.054181933403015,-0.016883311793208,-0.062970727682114],[0.011124760843813,0.021265283226967,-0.21358615159988]],[[0.10284925997257,-0.064395561814308,-0.10559247434139],[0.060513362288475,-0.11915561556816,-0.048990812152624],[-0.04698197171092,-0.076378770172596,-0.010806701146066]],[[-0.031896445900202,-0.066094018518925,-0.019759878516197],[-0.010722519829869,-0.051513139158487,0.044597700238228],[0.014767974615097,-0.13394878804684,-0.054338958114386]],[[0.13376416265965,0.016806699335575,-0.046631217002869],[-0.00099202198907733,0.0034051272086799,-0.15827718377113],[0.086570709943771,-1.9183506083209e-05,-0.0854611992836]],[[0.014490516856313,-0.026413528248668,-0.050361052155495],[-0.0033422177657485,-0.077449209988117,0.059110410511494],[0.030230402946472,-0.12614470720291,-0.18493758141994]],[[-0.10249727219343,0.018085705116391,-0.1074440330267],[0.050020456314087,0.034696031361818,0.057720050215721],[0.015088266693056,0.088233187794685,0.17058330774307]],[[-0.016438962891698,-0.12633919715881,0.035618331283331],[-0.035412259399891,-0.12932094931602,0.04664071649313],[0.065584160387516,-0.16023288667202,0.072364717721939]],[[-0.052541673183441,0.039257574826479,-0.18057818710804],[-0.1305163949728,0.090334311127663,0.071023404598236],[0.004260596819222,0.042249627411366,0.041096899658442]],[[0.01147660240531,0.086220063269138,-0.05155023932457],[-0.026120780035853,0.064333878457546,-0.032250698655844],[-0.013207024894655,0.0086917877197266,-0.038350820541382]],[[-0.12329018115997,0.022514497861266,0.044028591364622],[0.086784906685352,0.0074324500747025,-0.14851608872414],[0.0096112433820963,-0.036572106182575,0.016337985172868]],[[0.067391000688076,0.011368740350008,0.044346891343594],[-0.053083445876837,0.037146706134081,-0.018097823485732],[-0.034430522471666,0.06171615049243,0.089230857789516]],[[-0.11308539658785,0.087057083845139,-0.06524595618248],[-0.13863733410835,0.025501973927021,0.055373407900333],[-0.13898034393787,0.047075226902962,-0.023480409756303]],[[-0.012972041964531,-0.013423163443804,0.014977187849581],[-0.057900320738554,0.028552658855915,0.067073591053486],[0.0796033218503,0.034996021538973,0.036617185920477]],[[0.099006518721581,0.017123626545072,0.066840812563896],[0.05408113822341,-0.025093082338572,-0.033335831016302],[-0.0080142877995968,-0.077489823102951,-0.095130175352097]],[[0.0043705003336072,0.0036952388472855,-0.0033163141924888],[-0.038701295852661,-0.042307317256927,0.099244855344296],[-0.039583068341017,-0.0078748287633061,0.038105234503746]],[[-0.041072688996792,-0.11563251167536,0.071723245084286],[-0.066287070512772,-0.089240275323391,-0.035064674913883],[-0.060479342937469,0.10304272174835,-0.013027677312493]],[[-0.037020664662123,-0.062747292220592,0.098806977272034],[-0.076161168515682,-0.062871761620045,0.041731860488653],[-0.0070727383717895,-0.10512041300535,-0.0012063113972545]],[[0.10219714045525,-0.075279347598553,-0.040789980441332],[-0.045075599104166,-0.020524496212602,0.072854660451412],[0.058229610323906,0.00097040313994512,0.0070254025049508]],[[-0.016576174646616,-0.15586814284325,0.028876941651106],[0.075770415365696,-0.030271204188466,0.060792069882154],[0.034361340105534,-0.051179807633162,-0.098555169999599]],[[-0.14885973930359,-0.095644660294056,0.00042641570325941],[0.087472409009933,0.021055527031422,0.041432179510593],[-0.17167684435844,0.085734747350216,0.069892600178719]],[[0.0018475751858205,-0.25650545954704,0.058635730296373],[0.012420608662069,0.019651602953672,0.012053977698088],[-0.017061626538634,0.12824846804142,0.080886088311672]],[[-0.014727870933712,-0.11557680368423,0.059435646981001],[-0.076840169727802,-0.054305233061314,0.060918968170881],[-0.10691549628973,-0.034907296299934,0.029032254591584]],[[-0.15252332389355,-0.00023936857178342,-0.036782287061214],[-0.034796919673681,0.11047328263521,0.024188227951527],[0.036221489310265,0.041478753089905,-0.069144777953625]],[[0.083251409232616,0.053009811788797,-0.030902195721865],[0.056151885539293,-0.0084500005468726,-0.072110950946808],[0.021075932309031,-0.036181062459946,-0.025410311296582]],[[-0.01644454523921,-0.1314868927002,-0.023525904864073],[-0.18587005138397,0.021510101854801,0.043887726962566],[0.051553938537836,-0.021851915866137,-0.03815982490778]],[[-0.017502112314105,0.061687752604485,-0.014088339172304],[0.004143375903368,0.021036943420768,0.00049142789794132],[0.0064265853725374,-0.02845336869359,-0.086296357214451]],[[-0.10306894034147,0.18247067928314,0.050689972937107],[-0.060010407119989,-0.062097676098347,0.048012934625149],[-0.11171938478947,0.085964344441891,-0.027625905349851]],[[-0.060060273855925,0.077980101108551,-0.036705326288939],[0.038825239986181,-0.094596385955811,-0.014252327382565],[-0.14248137176037,-0.06547536700964,-0.037771109491587]],[[0.02827493660152,0.15448096394539,0.065521590411663],[-0.021291693672538,-0.045590203255415,-0.0046310764737427],[-0.073422379791737,0.03018045425415,-0.040100738406181]],[[0.086800329387188,-0.13207286596298,-0.038676101714373],[-0.0535988509655,-0.15032063424587,-0.042384281754494],[0.017762405797839,0.043128874152899,-0.044857267290354]],[[0.042635511606932,0.064800255000591,0.12866607308388],[0.094367191195488,-0.024305462837219,0.071220085024834],[0.048359058797359,-0.0056096646003425,-0.18113096058369]],[[-0.069373913109303,-6.4957363065332e-05,-0.077835470438004],[0.005469944793731,-0.0092945257201791,0.090382374823093],[0.0080806743353605,-0.013338384218514,-0.020790316164494]],[[-0.019634146243334,-0.055990625172853,-0.091809771955013],[-0.036320712417364,0.12936845421791,0.013100691139698],[-0.057855922728777,0.0069916150532663,0.085760921239853]],[[-0.01287198625505,0.028927091509104,-0.099840708076954],[0.087655365467072,-0.017517946660519,-0.013269460760057],[0.025272032245994,0.019025456160307,-0.14755734801292]],[[-0.11864280700684,-0.11676036566496,-0.10221955925226],[0.022469043731689,0.052309099584818,-0.0040712337940931],[-0.015195853076875,0.12800671160221,0.051680222153664]],[[-0.18381102383137,-0.054360173642635,0.006385313346982],[-0.052764687687159,0.081560097634792,0.023232523351908],[-0.080958597362041,-0.062865875661373,0.10495636612177]],[[-0.051646564155817,-0.016849517822266,-0.016202017664909],[0.034920699894428,-0.050239592790604,0.032154697924852],[0.006154493894428,0.10847847908735,-0.012886283919215]],[[0.0353864133358,0.011134563945234,-0.0065088295377791],[0.052499808371067,-0.064429081976414,-0.092003501951694],[-0.068925723433495,-0.044795121997595,-0.042743690311909]],[[0.13084681332111,0.035232916474342,0.036279898136854],[0.2028125077486,0.008056185208261,0.03564366325736],[-0.023586010560393,-0.044782936573029,-0.043110281229019]],[[-0.066946566104889,0.039502754807472,-0.023069955408573],[0.10956270247698,-0.024797350168228,0.080135069787502],[-0.086152754724026,-0.046246111392975,0.029597207903862]],[[-0.0090878717601299,-0.00056404224596918,-0.15289014577866],[-0.016784509643912,-0.059696711599827,-0.10045260190964],[0.014435197226703,-0.095762886106968,0.028907787054777]],[[-0.064377762377262,0.077678710222244,-0.029230559244752],[-0.11127236485481,0.033505264669657,-0.060001641511917],[0.038237653672695,0.0033343944232911,0.039572067558765]],[[0.15020526945591,-0.013143634423614,-0.0096227712929249],[0.02866399846971,-0.099080249667168,0.11859931796789],[-0.12406614422798,-0.053245585411787,-0.033487722277641]],[[-0.14602571725845,0.10002155601978,-0.07157926261425],[0.02296387962997,0.050544954836369,-0.07619135081768],[-0.042440317571163,-0.0055505270138383,-0.030150912702084]]],[[[-0.026414975523949,0.046736337244511,0.010975461453199],[0.10013381391764,-0.04008486866951,0.017129439860582],[-0.065941415727139,0.0042234761640429,0.12255393713713]],[[-0.089736998081207,0.031167550012469,0.052416000515223],[0.057161711156368,0.073222085833549,0.076438277959824],[0.024742145091295,0.0087381945922971,-0.081881068646908]],[[-0.01437851972878,0.011680473573506,0.01636179536581],[-0.1067308858037,0.001261264202185,0.097147427499294],[-0.17897824943066,-0.17184686660767,0.10262713581324]],[[-0.081769317388535,-0.017340475693345,-0.045015554875135],[0.017084345221519,-0.00055279652588069,0.022784974426031],[0.094602204859257,-0.023184088990092,-0.1054593026638]],[[0.033603169023991,0.17310336232185,-0.071024097502232],[-0.077418960630894,-0.10826813429594,0.012844941578805],[0.031226616352797,-0.00086496933363378,0.060317162424326]],[[0.093926809728146,-0.062254298478365,0.022815726697445],[-0.011927652172744,0.12929517030716,0.0082923993468285],[-0.07035768777132,-0.076315246522427,0.090963013470173]],[[-0.12424350529909,0.0075219124555588,0.096822999417782],[-0.21058830618858,-0.036173678934574,0.0070424727164209],[0.034990057349205,-0.1129284799099,-0.21665443480015]],[[0.10648912191391,-0.039246663451195,0.11738630384207],[-0.015142983756959,0.011012238450348,0.043340034782887],[-0.017029628157616,-0.053207352757454,-0.08131880313158]],[[0.03240854665637,-0.10718352347612,0.040276344865561],[0.036330498754978,0.11244302988052,-0.1401409804821],[-0.03545406088233,0.019831441342831,0.0040736198425293]],[[-0.16197629272938,-0.039237633347511,-0.15502488613129],[-0.054200954735279,0.041951894760132,0.12639379501343],[-0.019739404320717,0.10624431818724,-0.095198392868042]],[[-0.068233072757721,0.04696199297905,0.0077110384590924],[-0.10760635882616,-0.091234505176544,1.9164988771081e-05],[-0.14397838711739,0.036523524671793,0.12851223349571]],[[-0.123763628304,0.008837902918458,0.050042916089296],[0.0045927637256682,-0.075271867215633,-0.10193527489901],[-0.069546207785606,-0.018912652507424,0.080079615116119]],[[0.02177132666111,0.010956321842968,-0.12642325460911],[0.036206636577845,0.0083337482064962,-0.039017912000418],[0.060200121253729,0.046135321259499,0.059772670269012]],[[-0.020091407001019,0.15552185475826,-0.10604912787676],[-0.056934144347906,-0.064628079533577,0.088768430054188],[-0.042602267116308,0.030048944056034,-0.20492051541805]],[[0.096788063645363,0.023641299456358,0.0044179782271385],[-0.051753312349319,-0.022131258621812,-0.027223953977227],[0.033986371010542,-0.0020360574126244,0.042533036321402]],[[0.029612272977829,-0.033688895404339,0.0034442965406924],[0.17161716520786,0.062257546931505,0.12069521844387],[-0.018284365534782,-0.056394539773464,0.056882612407207]],[[0.0093871159479022,0.041606739163399,0.078728333115578],[-0.047172777354717,0.014620793052018,0.12956738471985],[-0.12184328585863,-0.0068658329546452,-0.064204841852188]],[[-0.037698600441217,-0.17553468048573,-0.19010488688946],[0.021759005263448,0.04701079800725,-0.032267041504383],[-0.12366455793381,-0.19056671857834,-0.079090811312199]],[[-0.049748685210943,-0.085142344236374,-0.027852863073349],[-0.16601710021496,-0.077986061573029,0.049031909555197],[-0.010264039970934,-0.1129744797945,0.0072300783358514]],[[0.027698813006282,0.051992811262608,0.069399572908878],[-0.10626447945833,-0.085524536669254,-0.05733872577548],[0.015491015277803,-0.18575961887836,-0.0096222264692187]],[[0.05769282951951,0.066404551267624,0.042870420962572],[-0.089496731758118,-0.016005724668503,-0.035823605954647],[0.054408714175224,-0.19733294844627,-0.018503723666072]],[[0.12804205715656,0.00079402519622818,0.029043609276414],[0.043242640793324,-0.030005672946572,0.012393744662404],[0.01216955948621,-0.041922904551029,-0.080465212464333]],[[0.016229745000601,-0.12305860966444,-0.05318208783865],[0.014973320998251,0.062921933829784,-0.22457760572433],[0.06195117905736,0.0022328752093017,0.082142353057861]],[[0.12280084192753,-0.0025347550399601,-0.061478991061449],[0.086718983948231,0.014986831694841,0.0084610357880592],[-0.025012625381351,-0.00027931912336498,-0.12232215702534]],[[-0.0090959724038839,0.015922943130136,0.0084712188690901],[-0.077631510794163,-0.1215515807271,0.041470434516668],[0.10319250077009,0.13387368619442,0.028145341202617]],[[0.13879053294659,0.046799030154943,0.11147068440914],[-0.23432944715023,-0.095801331102848,0.013779009692371],[-0.12066088616848,-0.068194381892681,-0.037217669188976]],[[0.02971257455647,-0.031814910471439,0.14694075286388],[-0.018374647945166,0.0087008969858289,-0.013652238994837],[-0.0079690776765347,0.052546367049217,0.052455238997936]],[[0.19549782574177,0.02293473854661,0.068052336573601],[0.066417217254639,0.046280913054943,-0.1531882584095],[0.054527867585421,-0.031386747956276,-0.0049379011616111]],[[-0.0074122119694948,-0.055655740201473,0.040400549769402],[-0.10188879817724,-0.032303474843502,0.12801280617714],[-0.022412151098251,-0.15979224443436,-0.059857718646526]],[[-0.0095100672915578,-0.046218756586313,0.02632767893374],[0.1814231723547,-0.053697153925896,0.05066566541791],[-0.25600871443748,-0.070417821407318,-0.089455433189869]],[[0.018952475860715,-0.14213225245476,0.051817070692778],[-0.12477268278599,-0.021470747888088,0.075133547186852],[0.035687580704689,0.035096388310194,0.085552290081978]],[[-0.15297454595566,-0.014059945009649,-0.083850584924221],[0.092002399265766,0.077260904014111,0.015833536162972],[0.011272481642663,0.035823941230774,-0.06637554615736]],[[0.12426754832268,0.049631755799055,-0.14851203560829],[-0.034356195479631,-0.0089409640058875,-0.035840477794409],[0.071053601801395,-0.078669205307961,-0.194833740592]],[[-0.0074729761108756,0.013617446646094,0.0030009935144335],[-0.028035873547196,-0.025364177301526,-0.045647569000721],[0.044935889542103,-0.086237818002701,-0.029973244294524]],[[0.047430854290724,-0.059643194079399,0.13407400250435],[0.021814653649926,-0.08265570551157,-0.018215600401163],[-0.093043223023415,0.002980942837894,-0.038660153746605]],[[0.17869253456593,-0.064445801079273,0.025409452617168],[0.13534514605999,-0.015667513012886,-0.17160592973232],[0.042044941335917,0.009077993221581,0.10534597933292]],[[0.013220153748989,0.088976345956326,0.1147073507309],[-0.025230521336198,0.05664524435997,-0.030697904527187],[-0.084979526698589,0.13446019589901,-0.045033607631922]],[[0.03563778847456,0.0044288760982454,0.066984854638577],[0.10672874748707,0.011608766391873,-0.075964391231537],[0.0094145052134991,0.10246001183987,0.064587943255901]],[[0.090335220098495,-0.13599166274071,-0.071498274803162],[-0.015042897313833,0.0039788819849491,-0.05844859033823],[-0.10333649069071,0.12718105316162,0.11786814779043]],[[0.014583515934646,0.0023980855476111,0.030849603936076],[0.09555722028017,-0.032805293798447,-0.17706246674061],[-0.0072676143608987,0.0091328183189034,-0.050892017781734]],[[-0.089529745280743,-0.14088973402977,0.010289581492543],[0.016052488237619,-0.036488253623247,0.098003633320332],[0.0082432441413403,-0.20201276242733,-0.13945104181767]],[[0.0095800375565886,-0.073637872934341,-0.24807381629944],[0.12056408822536,0.059383276849985,-0.095945052802563],[0.083982862532139,-0.021505391225219,0.018540468066931]],[[-0.042867537587881,0.075369954109192,-0.0015516999410465],[-0.019312174990773,-0.057243164628744,0.11850008368492],[-0.049201209098101,-0.053386639803648,-0.013853815384209]],[[-0.10265689343214,0.071640059351921,-0.049966119229794],[-0.0015315666096285,-0.048045840114355,0.12747506797314],[-0.046803195029497,-0.037536274641752,0.087966367602348]],[[-0.0060920929536223,0.087757714092731,-0.14842793345451],[0.012210256420076,0.027462648227811,0.078861579298973],[-0.012659665197134,0.059360191226006,-0.10643844306469]],[[0.11224963515997,0.15640921890736,-0.009991180151701],[-0.0035659591667354,0.13455677032471,0.056105554103851],[-0.03959496319294,-0.038676884025335,-0.032529447227716]],[[0.067413449287415,0.15361832082272,0.053902301937342],[-0.21540597081184,-0.050839368253946,0.002170484745875],[-0.0669926404953,-0.080179415643215,0.14905409514904]],[[-0.028093561530113,-0.055686313658953,-0.049369603395462],[-0.017341274768114,0.012764673680067,-0.068577647209167],[0.065310686826706,0.061631038784981,-0.088426113128662]],[[-0.041788917034864,0.034372519701719,0.086125455796719],[-0.050360184162855,0.023167034611106,0.058972597122192],[-0.056923564523458,0.069388434290886,0.028879364952445]],[[0.021673727780581,0.05129050090909,0.028509685769677],[-0.08007837831974,-0.033187627792358,-0.13554544746876],[-0.034978002309799,0.030279653146863,-0.033501092344522]],[[-0.0061705480329692,-0.054723635315895,0.10048570483923],[0.049787752330303,-0.039558228105307,-0.20632442831993],[0.014015419408679,0.071832783520222,0.079804942011833]],[[-0.011666394770145,-0.11619081348181,0.0072145001031458],[0.14301227033138,0.080869220197201,0.11991278082132],[-0.13224330544472,-0.072807595133781,-0.062647238373756]],[[-0.055705159902573,0.062438677996397,0.14254975318909],[-0.090085670351982,-0.024993468075991,-0.024756932631135],[-0.13619713485241,-0.074281066656113,-0.052996702492237]],[[0.065728075802326,0.021719235926867,-0.11653036624193],[0.036453045904636,0.043302588164806,-0.072239249944687],[-0.10146325826645,0.037332251667976,0.13128814101219]],[[0.063580751419067,-0.020560037344694,-0.019999800249934],[0.019165031611919,0.0082813696935773,-0.077770575881004],[-0.063772782683372,-0.033549759536982,-0.0065080756321549]],[[-0.018580324947834,0.0067772697657347,0.095370873808861],[-0.060013689100742,-0.20820140838623,-0.096635654568672],[0.19579508900642,0.057501405477524,-0.10422713309526]],[[0.055387113243341,-0.099167086184025,-0.090467654168606],[0.014458036981523,-0.11418556421995,-0.025941949337721],[0.11670569330454,-0.034009616822004,0.071111619472504]],[[-0.0043493360280991,0.049198295921087,0.057643566280603],[0.13754090666771,0.008462343364954,-0.10677368938923],[-0.050096534192562,0.013268167153001,-0.024887206032872]],[[-0.033189136534929,0.079487957060337,-0.024831021204591],[-0.0067531890235841,0.013556589372456,0.0025414493866265],[0.11320649832487,0.14185105264187,0.004017811268568]],[[0.01890142261982,0.087807781994343,0.049454465508461],[0.022082485258579,-0.10183151811361,0.15957164764404],[0.095641873776913,-0.067455403506756,-0.15295073390007]],[[-0.0010724345920607,-0.10130739212036,-0.06505498290062],[-0.024805013090372,-0.011254822835326,-0.027565881609917],[0.011910827830434,-0.016993952915072,-0.12418308109045]],[[-0.061008989810944,-0.091411083936691,-0.057599380612373],[0.042045444250107,-0.10597641766071,0.057896617799997],[-0.07255045324564,-0.033683389425278,0.0058425213210285]],[[0.04486608505249,0.026652209460735,-0.17654344439507],[-0.018515473231673,-0.013205633498728,-0.051707677543163],[0.15348230302334,0.076341561973095,0.038404822349548]],[[-0.010926558636129,0.04170798137784,0.16342009603977],[-0.030244816094637,-0.13843999803066,-0.14687757194042],[-0.017603239044547,0.051885928958654,-0.063924677670002]]],[[[0.068341426551342,0.020683297887444,-0.0041485731489956],[-0.022095873951912,0.023565521463752,-0.052385292947292],[-0.097287558019161,-0.090358875691891,0.0081354584544897]],[[0.051661491394043,-0.094518885016441,0.013724657706916],[0.090362176299095,-0.024808732792735,-0.050354335457087],[0.061299756169319,-0.077312335371971,-0.081218279898167]],[[-0.088236279785633,-0.10591382533312,-0.039799358695745],[0.060087647289038,0.049933683127165,0.090281695127487],[0.047289058566093,-0.015791026875377,-0.087055563926697]],[[-0.054112460464239,-0.021752517670393,0.070332154631615],[0.031322181224823,0.10220795124769,-0.16246293485165],[-0.014450542628765,-0.029578013345599,0.011315195821226]],[[0.069114103913307,-0.077471174299717,0.084637455642223],[0.065911516547203,-0.06839807331562,0.048610743135214],[0.03705957531929,-0.16187226772308,0.0079974411055446]],[[0.030623972415924,-0.046735756099224,0.057612892240286],[0.084667347371578,-0.050388284027576,-0.068030342459679],[0.018491085618734,0.022713737562299,0.058442778885365]],[[-0.055964853614569,0.15579268336296,0.073285222053528],[-0.10341169685125,-0.039756398648024,-0.12720282375813],[-0.029589643701911,-0.025249592959881,-0.0099839614704251]],[[0.0013369573280215,-0.070416882634163,-0.12183111906052],[0.037891179323196,-0.025868507102132,-0.027753263711929],[-0.06768037378788,-0.021697551012039,0.056679055094719]],[[-0.014210922643542,-0.025022769346833,0.084204941987991],[0.032462604343891,-0.0055824969895184,-0.023151030763984],[0.051430098712444,-0.060829069465399,0.001027705729939]],[[0.18737843632698,0.090679883956909,0.12551662325859],[-0.043731566518545,-0.072878248989582,-0.11708755791187],[0.136071190238,0.089454531669617,-0.11311431229115]],[[-0.0066607426851988,-0.0092031955718994,0.074932761490345],[0.00014707179798279,0.069897226989269,-0.1281863451004],[0.045452188700438,0.091737814247608,0.17013038694859]],[[0.081798389554024,-0.083489038050175,-0.024164747446775],[-0.016936138272285,-0.0060049053281546,0.037275813519955],[0.069664515554905,-0.04996183142066,-0.032398879528046]],[[-0.1295287758112,-0.14764952659607,-0.0090932529419661],[-0.019895939156413,-0.10082218050957,0.11152993887663],[0.097601681947708,0.045118190348148,0.076062016189098]],[[0.013809213414788,0.085532978177071,-0.015381272882223],[0.0014677508734167,-0.046220727264881,-0.022885702550411],[0.046080093830824,0.015008360147476,0.012419569306076]],[[0.0028700167313218,0.14667083323002,0.21849966049194],[-0.12651464343071,0.0011472522746772,-0.018917692825198],[-0.04434023052454,0.12835130095482,0.047948058694601]],[[0.032240334898233,-0.054077640175819,-0.029873115941882],[0.064405761659145,0.11502012610435,0.039721522480249],[0.052254930138588,0.024802166968584,0.0067221717908978]],[[-0.033270437270403,-0.12662833929062,-0.037094004452229],[0.10747109353542,-0.078139744699001,0.04748972505331],[-0.0019326108740643,0.071580298244953,0.031821072101593]],[[0.066488817334175,-0.020639359951019,0.13441506028175],[-0.018170418217778,-0.053308341652155,-0.055275034159422],[0.076345294713974,-0.0075770393013954,0.018047835677862]],[[0.050151936709881,0.13384489715099,0.14522159099579],[0.030096553266048,0.061845302581787,-0.059522423893213],[-0.0067577138543129,0.039682365953922,0.090791717171669]],[[0.0033707830589265,-0.015984555706382,-0.063268437981606],[-0.073819980025291,-0.019690368324518,-0.018783295527101],[-0.18840962648392,-0.15379400551319,0.046931717544794]],[[-0.02257052436471,0.12245970964432,0.10694648325443],[-0.086898006498814,0.041926179081202,0.055432330816984],[0.041417732834816,0.11127343773842,-0.027385167777538]],[[0.075940579175949,0.030249988660216,0.061334680765867],[0.092532195150852,0.17226748168468,0.081135183572769],[0.014227028936148,0.11502266675234,0.0057463496923447]],[[0.032660979777575,0.091204240918159,0.039689179509878],[0.067570358514786,0.021635914221406,0.02315148897469],[0.044686149805784,0.073710061609745,0.050720553845167]],[[-0.054309468716383,-0.12739148736,0.061570875346661],[-0.053693767637014,0.14056280255318,0.0016083319205791],[0.034947987645864,0.020504323765635,0.11387730389833]],[[-0.093702964484692,0.033626236021519,0.11271053552628],[-0.041002206504345,0.023434534668922,0.04824385792017],[0.10286739468575,0.023631731048226,0.10333232581615]],[[0.022849962115288,0.05734058842063,-0.10666806995869],[0.13217459619045,0.032575145363808,-0.16374364495277],[0.017773034051061,-0.027870070189238,-0.13265153765678]],[[-0.021837385371327,0.022475836798549,0.075766056776047],[0.024430513381958,0.077108763158321,0.12126264721155],[0.10996613651514,-0.0058666984550655,0.071480259299278]],[[0.099533565342426,-0.11290176957846,0.095699198544025],[0.023731630295515,-0.025392005220056,-0.077044293284416],[0.0040024355985224,0.033429026603699,-0.093575499951839]],[[-0.098901882767677,-0.048253957182169,-0.084890127182007],[0.0020398171618581,0.036302711814642,0.046776458621025],[-0.068321749567986,-0.053937863558531,0.0073170848190784]],[[0.014602796174586,0.071840442717075,-0.0091035459190607],[-0.10222304612398,-0.15311132371426,0.075516514480114],[0.037004511803389,0.085744582116604,0.05065456032753]],[[0.10816737264395,-0.2162964195013,0.00081456120824441],[0.11865434795618,0.051871120929718,0.01151517406106],[0.10391410440207,-0.07179468870163,-0.038155328482389]],[[0.033596266061068,0.069201283156872,-0.19355231523514],[0.069840312004089,0.041721183806658,0.0093082739040256],[0.020351067185402,0.087637916207314,-0.032920502126217]],[[-0.18569630384445,-0.10497186332941,0.015518979169428],[0.021544754505157,0.019862063229084,-0.17877918481827],[0.043664250522852,0.024743711575866,-0.020354950800538]],[[-0.030003668740392,0.03623541072011,0.15393100678921],[0.05783174932003,0.066867172718048,0.10824681818485],[0.11460777372122,0.098660387098789,-0.0090555883944035]],[[-0.05034888535738,0.074820540845394,0.0022884735371917],[0.00032264861511067,-0.052629541605711,-0.075930297374725],[0.1350005865097,0.016021829098463,-0.034192021936178]],[[0.065448328852654,0.018468329682946,-0.011543592438102],[0.054252866655588,0.014943974092603,-0.072509668767452],[-0.0019933003932238,-0.044721323996782,0.057187810540199]],[[0.14084760844707,0.11981486529112,-0.018579464405775],[-0.019655307754874,0.027426984161139,-0.039248645305634],[0.11228327453136,0.10951030999422,-0.0088572604581714]],[[-0.067566707730293,0.12668111920357,-0.032521273940802],[-0.059766802936792,-0.05798103287816,-0.079271771013737],[0.080846525728703,0.020114505663514,0.056695781648159]],[[-0.23019993305206,0.035466130822897,0.12044195830822],[0.011871960014105,-0.098099052906036,0.068752609193325],[0.055235952138901,0.063634097576141,0.13562528789043]],[[-0.099628791213036,-0.23705397546291,-0.011281041428447],[0.052191361784935,0.057848069816828,0.025391545146704],[0.18103718757629,-0.047545116394758,0.037961754947901]],[[0.075350895524025,0.0056211263872683,-0.032748695462942],[-0.0002687101950869,-0.15806421637535,-0.017571225762367],[0.044333096593618,0.076678648591042,0.088486805558205]],[[0.032487157732248,0.077307604253292,-0.11770144104958],[-0.088613227009773,0.14545655250549,-0.07854612916708],[0.028815858066082,0.10253665596247,0.12285147607327]],[[0.046176843345165,-0.10370713472366,-0.031004840508103],[-0.052696458995342,-0.18088616430759,0.079274266958237],[-0.012172185815871,-0.12511970102787,0.098651140928268]],[[-0.012790509499609,0.088636085391045,0.067109994590282],[0.027327045798302,0.048023622483015,0.058341402560472],[-0.019956069067121,-0.048231739550829,-0.026246571913362]],[[0.11179980635643,-0.049026101827621,0.031312715262175],[-0.032134480774403,0.047496385872364,0.01614042930305],[0.15293383598328,0.029397647827864,0.0086200973019004]],[[-0.1180657595396,-0.21725188195705,-0.34401309490204],[0.096419431269169,0.039843164384365,0.066426172852516],[0.0036238657776266,-0.095379151403904,-0.032661896198988]],[[-0.012579303234816,-0.019184753298759,0.024181116372347],[-0.053698685020208,0.0467021279037,0.023378718644381],[0.060262333601713,0.017835937440395,0.019566960632801]],[[0.11786885559559,0.075697630643845,0.0086631467565894],[0.057582575827837,-0.029164634644985,0.076986514031887],[-0.18592737615108,-0.094090454280376,-0.019300760701299]],[[-0.088935315608978,0.085371553897858,-0.078708827495575],[-0.13046406209469,-0.043967790901661,-0.0026723514311016],[-0.070405587553978,-0.032132018357515,0.096087589859962]],[[0.062125280499458,0.091383777558804,-0.035101041197777],[-0.041478171944618,0.0073015345260501,0.049390476197004],[0.026285035535693,-0.063922680914402,0.050883110612631]],[[0.018895758315921,-0.0060847867280245,0.027225719764829],[-0.21170043945312,-0.10628531873226,0.014985667541623],[0.079520933330059,0.026868809014559,0.13267749547958]],[[0.020497981458902,-0.041006114333868,0.00068697438109666],[-0.067674033343792,-0.11265880614519,0.044474061578512],[0.060340877622366,-0.0031133601441979,0.074470154941082]],[[-0.0045047453604639,0.10556701570749,-0.0024827930610627],[-0.054565317928791,0.027528489008546,-0.10856258124113],[-0.071496538817883,0.041173912584782,-0.05148870870471]],[[0.005976241081953,0.070603258907795,0.10138139873743],[0.053086526691914,0.0054710814729333,0.026826813817024],[-0.015200641006231,0.070139445364475,0.12887853384018]],[[0.1178210824728,0.10055492818356,0.0098629938438535],[-0.017101904377341,-0.039662133902311,-0.13820515573025],[-0.010719210840762,0.10031735152006,-0.068895265460014]],[[0.037574864923954,0.063622690737247,-0.033356107771397],[0.064564876258373,-0.10411677509546,-0.067628793418407],[0.067960567772388,0.031204866245389,0.034627340734005]],[[0.11693339794874,-0.042029783129692,0.032156009227037],[0.019204864278436,-0.023946123197675,0.045127488672733],[0.030460871756077,0.10674030333757,-0.065915018320084]],[[-0.045753665268421,0.0024904157035053,-0.16353115439415],[0.024914424866438,0.040356896817684,0.056919485330582],[0.087594024837017,0.027595994994044,0.068421132862568]],[[0.21500352025032,-0.049340028315783,-0.060276415199041],[0.030967166647315,0.058825988322496,-0.07062479108572],[0.12807677686214,0.037478055804968,0.024833077564836]],[[0.013705219142139,0.09858887642622,0.050934512168169],[-0.038891758769751,0.058377180248499,0.042070385068655],[0.10171207785606,0.10740623623133,0.0056209960021079]],[[0.063826590776443,-0.04354390129447,0.080659292638302],[0.026591582223773,0.068080827593803,-0.073620185256004],[-0.0088977608829737,-0.022696916013956,0.16890099644661]],[[-0.090506412088871,-0.06968829780817,4.6660745283589e-05],[0.082897588610649,0.054389543831348,-0.057551331818104],[-0.04921330884099,0.030080534517765,0.15806375443935]],[[0.0754035115242,-0.00076944474130869,0.070061698555946],[0.068541303277016,0.030125105753541,-0.038575645536184],[0.059021316468716,0.049589172005653,-0.068074621260166]],[[-0.10279140621424,-0.033269770443439,0.043057236820459],[0.16857534646988,0.12343452125788,0.087805114686489],[0.026937121525407,-0.0072842291556299,0.12649746239185]]],[[[0.03262747824192,-0.13380073010921,0.066928520798683],[-0.080070167779922,-0.10223422944546,0.21715217828751],[0.055075671523809,-0.079370684921741,0.1118493154645]],[[0.0085134347900748,0.21057106554508,-0.014015951193869],[0.025269659236073,0.071478970348835,0.027377162128687],[0.0089597888290882,-0.12983219325542,-0.12826581299305]],[[-0.085184179246426,0.05438082292676,-0.075098067522049],[0.030402775853872,-0.043921247124672,-0.049885723739862],[-0.11855165660381,0.033905573189259,0.21097214519978]],[[0.068273782730103,0.067423723638058,0.10412766039371],[-0.042423747479916,-0.11582174152136,-0.079365208745003],[-0.010583268478513,-0.050179626792669,0.0044437232427299]],[[-0.090797886252403,-0.06161704659462,0.062982499599457],[-0.018927048891783,-0.024662990123034,0.15402778983116],[-0.15520666539669,0.053731232881546,-0.14608880877495]],[[0.031562965363264,0.055110275745392,-0.13486038148403],[0.10616341233253,-0.067936651408672,0.010651303455234],[0.073266677558422,-0.034003794193268,-0.077321350574493]],[[-0.051376860588789,-0.14547708630562,0.019658422097564],[0.0292839538306,-0.0045824251137674,-0.037520043551922],[-0.033303663134575,-0.035543750971556,0.13969643414021]],[[0.23123250901699,0.10507763922215,-0.11210688203573],[-0.12696363031864,2.4193366698455e-05,0.047761626541615],[-0.09216795116663,0.094458363950253,0.03567011654377]],[[0.057696394622326,0.002576244994998,0.030247464776039],[-0.078773804008961,-0.039209995418787,0.11490653455257],[-0.062346681952477,-0.082457862794399,0.0096589289605618]],[[-0.015639441087842,-0.041705556213856,-0.021078499034047],[-0.11565764993429,-0.093110479414463,-0.16068406403065],[0.035981211811304,0.054957509040833,-0.040097586810589]],[[-0.16273356974125,-0.12695100903511,0.0094391210004687],[-0.10184931755066,-0.088271982967854,0.038683138787746],[0.010998432524502,0.044400125741959,0.16515026986599]],[[0.040688887238503,0.0838508233428,-0.13586875796318],[-0.091703489422798,-0.03571143001318,0.061433650553226],[-0.064729914069176,-0.16081990301609,-0.022899214178324]],[[0.092476047575474,-0.19159664213657,0.035504221916199],[-0.044268179684877,0.099652498960495,-0.018491044640541],[-0.030855966731906,0.017946911975741,-0.080414496362209]],[[-0.086935937404633,0.021871626377106,0.10209717601538],[-0.11773294955492,-0.051017422229052,-0.077396377921104],[0.074306778609753,0.036104127764702,0.096332564949989]],[[-0.055394235998392,-0.0011436885688454,0.025391012430191],[-0.040207006037235,-0.11582827568054,-0.011389089748263],[0.021764639765024,-0.027453938499093,-0.067420139908791]],[[0.10274652391672,0.0086532486602664,0.09118664264679],[0.064067654311657,-0.036450587213039,-0.01608762703836],[0.069170162081718,0.065891712903976,0.18618550896645]],[[0.031661480665207,0.14396367967129,-0.061129081994295],[0.03866570442915,-0.041596777737141,-0.0076003689318895],[0.02368531934917,0.055939387530088,0.27545008063316]],[[0.005427005700767,-0.1391666084528,0.14474686980247],[-0.0047208936884999,-0.012375165708363,0.086230367422104],[-0.037483759224415,-0.078062787652016,-0.0040971715934575]],[[0.13560597598553,-0.059973195195198,0.18447315692902],[0.012495345436037,0.027963530272245,-0.049763645976782],[-0.010203259065747,-0.03986868262291,-0.054583538323641]],[[-0.034541986882687,-0.014384932816029,-0.069840855896473],[0.14376448094845,-0.081820033490658,0.10051559656858],[0.13837905228138,0.017680758610368,-0.25042390823364]],[[-0.14483277499676,-0.11051611602306,-0.027635278180242],[-0.0035287048667669,0.039502590894699,0.060021504759789],[0.014263238757849,-0.10279824584723,-0.12494824081659]],[[-0.020209180191159,0.03425969555974,0.10812650620937],[-0.037388533353806,-0.2397536188364,-0.055916361510754],[0.18304234743118,0.14339254796505,-0.086266674101353]],[[-0.065484762191772,0.079648748040199,0.0139215355739],[0.040717143565416,-0.10541766136885,-0.030429657548666],[-0.11097213625908,-0.11511163413525,-0.23755022883415]],[[-0.056060962378979,-0.040791817009449,0.08092212677002],[-0.082539081573486,-0.066305667161942,0.043360814452171],[0.035854794085026,0.023888165131211,0.12546119093895]],[[-0.21343486011028,-0.16327638924122,0.025381380692124],[0.089317567646503,-0.1118506193161,-0.074846141040325],[-0.01135840639472,0.054127622395754,0.11466712504625]],[[-0.26998096704483,0.020024267956614,-0.15313777327538],[0.035913169384003,0.017638409510255,0.0190349817276],[-0.099336661398411,-0.13787710666656,0.21770685911179]],[[-0.006408859975636,0.032968789339066,0.027985950931907],[0.043426878750324,-0.070935383439064,-0.08318218588829],[-0.074166990816593,0.050396978855133,0.11429010331631]],[[0.055625326931477,-0.0010817795991898,0.015711352229118],[0.038324754685163,-0.13559775054455,-0.013642070814967],[-0.070595689117908,-0.014043430797756,-0.10898447036743]],[[0.0030749905854464,-0.00032966546132229,0.18194285035133],[0.022411443293095,0.058264616876841,-0.20519354939461],[-0.011391511186957,0.11051675677299,-0.22659912705421]],[[0.08289185911417,0.035862177610397,-0.22194047272205],[0.025507148355246,-0.0031046038493514,-0.04185564443469],[0.097763128578663,0.064216896891594,-0.13431632518768]],[[-0.25704652070999,-0.029672212898731,-0.14203494787216],[-0.027781328186393,0.26571846008301,-0.23745374381542],[-0.16727542877197,-0.15612076222897,-0.073866613209248]],[[0.25679185986519,0.14159478247166,-0.010943748988211],[-0.11040364950895,-0.033919285982847,-0.0039464323781431],[0.077483251690865,0.015644911676645,0.20558421313763]],[[-0.046760275959969,-0.079573601484299,-0.066885627806187],[-0.057418648153543,0.0058295503258705,0.083722658455372],[0.040229104459286,0.07562979310751,0.099473357200623]],[[-0.11690928786993,0.038907900452614,-0.028781479224563],[-0.066154628992081,0.051766492426395,-0.12126642465591],[-0.031206529587507,0.0044572344049811,0.015180934220552]],[[0.079763904213905,0.076881617307663,-0.071019545197487],[-0.0010974773904309,-0.032917879521847,0.052733976393938],[-0.095851719379425,-0.10406459867954,-0.041574589908123]],[[0.045964494347572,-0.047189366072416,-0.11115704476833],[-0.079064436256886,0.035113576799631,0.14243230223656],[-0.08346413820982,0.090353392064571,-0.12299933284521]],[[-0.025862092152238,0.046160653233528,-0.18952466547489],[0.02651684731245,0.035507433116436,-0.10044536739588],[-0.031936135143042,0.0026652314700186,-0.0064627090469003]],[[-0.12457609921694,-0.10708139836788,0.032518994063139],[0.0071886400692165,0.047139726579189,0.1486090272665],[-0.0076763238757849,-0.052027441561222,-0.031261693686247]],[[-0.22091908752918,0.036130618304014,-0.078508988022804],[-0.10152816027403,0.01071946695447,0.050889149308205],[-0.070713579654694,-0.081095054745674,-0.12235923111439]],[[-0.031382188200951,-0.085127010941505,-0.0073360814712942],[0.05946958437562,-0.0045260223560035,-0.064305551350117],[0.04491338506341,-0.07479065656662,0.039644781500101]],[[-0.021453682333231,0.12825618684292,-0.064912408590317],[0.14077889919281,0.058966252952814,0.0036545305047184],[0.011606971733272,0.11078771203756,-0.091651052236557]],[[0.13213221728802,0.085415557026863,0.0070703476667404],[0.05254565179348,0.078663736581802,0.10736065357924],[0.040248036384583,-0.0081833507865667,-0.211365878582]],[[-0.12802384793758,-0.060771189630032,0.055343609303236],[-0.055874809622765,0.018189780414104,-0.022018238902092],[-0.015009417198598,0.077346995472908,0.03798495605588]],[[-0.10215517133474,0.033174764364958,-0.039431784301996],[0.08611324429512,0.074356466531754,-0.020360231399536],[0.043664403259754,-0.061667963862419,-0.019250616431236]],[[-0.013689168728888,-0.02520246990025,0.2038648724556],[-0.11637381464243,-0.058126002550125,-0.12181543558836],[-0.085917763411999,0.11166009306908,-0.061621103435755]],[[-0.10253805667162,-0.11439292877913,0.1566713899374],[0.039111208170652,0.041111085563898,0.080954231321812],[-0.26796388626099,0.056348256766796,0.026505757123232]],[[-0.17775937914848,-0.010095718316734,-0.21930392086506],[0.012366506271064,0.028918361291289,0.051076989620924],[-0.15325027704239,-0.03190179541707,0.023673476651311]],[[0.041459586471319,0.088007129728794,-0.024812025949359],[-0.012883081100881,0.097933247685432,0.031034836545587],[-0.044322974979877,-0.06799054145813,-0.014981064014137]],[[-0.36909455060959,-0.14998857676983,0.023833382874727],[-0.077250130474567,-0.050992015749216,-0.035826373845339],[-0.015438803471625,-0.035125222057104,0.090134792029858]],[[-0.12386029213667,0.044472564011812,-0.12425873428583],[-0.01494244672358,0.17251789569855,-0.12408255785704],[0.045116480439901,0.082947127521038,-0.13898195326328]],[[-0.080542087554932,-0.056789930909872,-0.040511604398489],[0.0057595353573561,0.0044527216814458,0.15398202836514],[0.093543261289597,-0.029689591377974,-0.047014683485031]],[[0.11446587741375,0.088564306497574,0.088711716234684],[0.0061278464272618,-0.094999626278877,-0.20402920246124],[0.074615836143494,-0.058709841221571,0.045864824205637]],[[-0.085902363061905,-0.057763818651438,-0.12287998199463],[0.093692533671856,0.14286297559738,-0.14140641689301],[0.029019884765148,0.012731750495732,0.11846628785133]],[[-0.067716769874096,-0.18081514537334,-0.015266639180481],[-0.086733505129814,-0.015474184416234,0.070065304636955],[0.024981247261167,-0.1761928498745,0.12352579087019]],[[0.12732242047787,-0.061624404042959,-0.067509680986404],[-0.12062948197126,0.011801953427494,-0.023231169208884],[0.11125990003347,0.1136120185256,-0.054736196994781]],[[0.015041848644614,-0.018327668309212,-0.11139539629221],[-0.012058386579156,-0.0025499311741441,-0.024856640025973],[-0.052829340100288,-0.034599110484123,-0.041425168514252]],[[0.10025971382856,0.15924654901028,-0.088440202176571],[-0.075737826526165,0.018984543159604,0.06588326394558],[-0.068096220493317,0.047776665538549,-0.056978404521942]],[[0.28564837574959,0.0080171683803201,-0.039096813648939],[-0.12073753774166,-0.070216879248619,0.12459102272987],[-0.10778224468231,-0.04879155755043,0.029691847041249]],[[-0.028104754164815,0.15583807229996,-0.087788388133049],[0.08825009316206,-0.020517591387033,0.060594987124205],[0.0020690134260803,0.06586080789566,0.075848966836929]],[[-0.13913890719414,-0.096501491963863,-0.16023698449135],[0.0667834430933,0.067168824374676,-0.19643910229206],[0.14056001603603,0.11900620162487,-0.20129790902138]],[[-0.12248390167952,0.045297801494598,0.091442689299583],[-0.089247390627861,0.045113768428564,0.038349665701389],[-0.21007603406906,0.030350605025887,-0.1109930574894]],[[-0.049216963350773,-0.024229938164353,0.098790265619755],[0.078622482717037,-0.02135618776083,0.0054208510555327],[0.1373091340065,0.049077462404966,0.11293601989746]],[[-0.070094659924507,-0.01779992133379,0.052535854279995],[0.048474002629519,0.12631855905056,-0.047198157757521],[-0.074061490595341,-0.058984942734241,0.038878872990608]],[[-0.0085319420322776,-0.2012454867363,-0.093991935253143],[-0.2337900698185,-0.080088995397091,0.0054659019224346],[0.069740660488605,0.078570298850536,0.10538090020418]]],[[[-0.043387100100517,-0.15518747270107,-0.074059180915356],[-0.0503199249506,-0.0118372682482,0.031095013022423],[-0.19481495022774,-0.072943769395351,0.21240186691284]],[[0.11208862811327,0.025311971083283,-0.0076822163537145],[0.021316090598702,0.016674038022757,0.012242251075804],[-0.1050038933754,0.10055212676525,0.074458822607994]],[[-0.10362911969423,-0.00960798189044,-0.020851830020547],[0.051475796848536,-0.13443847000599,0.081490695476532],[0.060906488448381,0.16667626798153,-0.057306107133627]],[[0.056749124079943,-0.065671250224113,-0.017979776486754],[-0.080925174057484,-0.03745324537158,-0.069681450724602],[0.097223103046417,0.12594737112522,0.0071062929928303]],[[0.02481596544385,0.042200535535812,-0.069145485758781],[-0.068643145263195,0.12109664082527,-0.016741646453738],[-0.19474530220032,0.035138718783855,-0.044020052999258]],[[-0.042280953377485,0.064441509544849,0.010387073270977],[-0.12435707449913,-0.090109720826149,0.055222693830729],[-0.029615277424455,0.054442040622234,-0.085438370704651]],[[0.027310328558087,0.043305546045303,-0.0048841871321201],[0.09161014854908,-0.0072167422622442,0.032917197793722],[-0.079659439623356,-0.002182686002925,0.018892468884587]],[[0.13385513424873,0.063728213310242,-0.035535674542189],[-0.015051930211484,-0.020750502124429,0.052264500409365],[-0.093342483043671,0.062208436429501,0.038122698664665]],[[-0.0053381137549877,0.035711772739887,0.067175000905991],[-0.040085170418024,0.080553628504276,0.044438205659389],[-0.095496572554111,-0.087255038321018,0.020998802036047]],[[-0.0038836665917188,0.021817162632942,-0.033660192042589],[-0.0080543756484985,-0.067701935768127,-0.051991607993841],[0.09052138030529,-0.14919562637806,-0.058616071939468]],[[-0.052708625793457,-0.21986615657806,-0.030134094879031],[0.028894687071443,0.045331813395023,0.015680465847254],[-0.0039136768318713,-0.12960596382618,0.030429584905505]],[[-0.13685941696167,0.020020820200443,0.017901923507452],[0.032930087298155,0.045216515660286,0.036339193582535],[0.10295536369085,-0.01098027266562,-0.060931388288736]],[[-0.084901735186577,-0.0034286377485842,0.10533100366592],[0.14013765752316,-0.019646229222417,0.00099232944194227],[0.099763043224812,-0.043258160352707,0.11611262708902]],[[0.037010971456766,0.1163327023387,-0.078573599457741],[-0.070149481296539,-0.061265878379345,0.0061094686388969],[-0.0031951612327248,-0.13017213344574,0.0012131478870288]],[[-0.07152646780014,-0.017791038379073,-0.036687884479761],[0.074020080268383,0.035004541277885,0.038721844553947],[0.011496908962727,0.0033762017264962,-0.075585924088955]],[[-0.036548055708408,-0.072319842875004,-0.050015155225992],[-0.29893544316292,-0.023588143289089,-0.059595879167318],[-0.12577417492867,0.051113795489073,0.0025061191990972]],[[-0.038219582289457,-0.041308782994747,-0.096349723637104],[0.06928800791502,0.12142301350832,-0.018436780199409],[-0.17092770338058,-0.24471920728683,0.06775489449501]],[[0.00080022483598441,0.010829412378371,0.13893783092499],[0.01858658157289,0.041789997369051,0.013074717484415],[-0.12920188903809,-0.024419661611319,-0.067431926727295]],[[0.041940372437239,0.067370027303696,0.10756277292967],[0.0050272033549845,0.082893662154675,-0.053558051586151],[0.0013250147458166,-0.049125663936138,-0.14022007584572]],[[-0.035224784165621,-0.0031317330431193,0.0015733385225758],[0.15593183040619,0.0029691439121962,0.10446634143591],[-0.042833611369133,0.10637626051903,0.10294573754072]],[[0.028513599187136,-0.076646707952023,0.027767110615969],[-0.03817567974329,-0.0010992101160809,-0.20427133142948],[0.037421006709337,0.044187773019075,-0.081681489944458]],[[-0.020225267857313,0.08815635740757,-0.051416728645563],[0.0089522181078792,-0.036771558225155,0.057646218687296],[-0.03647430613637,-0.086644306778908,-0.055458724498749]],[[0.032624173909426,-0.014336791820824,-0.062990352511406],[-0.062304679304361,0.042212642729282,-0.10277987271547],[-0.024755105376244,0.03377690166235,0.050164308398962]],[[-0.046191092580557,-0.094735905528069,0.067873544991016],[-0.030619390308857,-0.19015969336033,-0.075674064457417],[0.0025835048872977,-0.13052733242512,0.084379389882088]],[[0.07074811309576,0.014596791937947,0.00027919746935368],[0.1122502759099,-0.036976117640734,-0.017529036849737],[-0.053351417183876,0.13116985559464,0.0021741203963757]],[[-0.046387553215027,-0.12749511003494,0.06880284100771],[0.026089742779732,0.056434508413076,0.066392436623573],[0.027890151366591,-0.082635410130024,-0.081658534705639]],[[-0.0092691387981176,0.032902806997299,-0.077849552035332],[-0.091622605919838,0.044658716768026,0.032361574470997],[-0.17010807991028,-0.25478973984718,-0.0033301117364317]],[[0.022653505206108,0.10429769009352,-0.052402883768082],[-0.082342706620693,0.037852894514799,-0.073598854243755],[0.15186807513237,-0.089152954518795,0.034720469266176]],[[0.05800549685955,0.016440626233816,-0.19530907273293],[0.16814081370831,0.0055405241437256,-0.06713093817234],[0.090927682816982,0.081026487052441,-0.0086032245308161]],[[-0.099087134003639,0.029348725453019,-0.0078594721853733],[-0.046941664069891,0.026039019227028,-0.028771756216884],[0.057310029864311,0.036180578172207,0.087475284934044]],[[0.003784058149904,-0.011337860487401,-0.099255003035069],[0.086333744227886,0.074265323579311,-0.077673085033894],[-0.083308517932892,0.04774484783411,-0.057052720338106]],[[0.038993280380964,0.044439941644669,0.037797696888447],[-0.099897816777229,0.080233834683895,0.036947000771761],[-0.21906408667564,-0.031365253031254,-0.059892926365137]],[[-0.055994875729084,0.12754334509373,0.086215957999229],[0.034297060221434,-0.0066548641771078,0.12978751957417],[-0.085357613861561,0.0016950034769252,-0.026152487844229]],[[-0.034730549901724,0.079008810222149,-0.16645382344723],[0.069886766374111,0.022973034530878,0.029684320092201],[0.089658670127392,-0.012068936601281,0.080981351435184]],[[-0.010627961717546,-0.0097893010824919,-0.012962833978236],[0.16787171363831,0.0061217211186886,-0.076954454183578],[0.055332899093628,-0.17139577865601,-0.050421513617039]],[[-0.01044714730233,-0.062590107321739,-0.066203005611897],[-0.01874627918005,0.044278934597969,-0.037786271423101],[-0.018955981358886,0.080275990068913,0.12374972552061]],[[0.020990597084165,0.049538344144821,-0.027711914852262],[0.016435226425529,-0.0090571884065866,0.0040046782232821],[-0.10194174945354,-0.017108663916588,0.014284159056842]],[[0.06166485697031,0.037613920867443,-0.04442548379302],[-0.095440655946732,0.089153662323952,0.033700440078974],[-0.22345124185085,0.064145006239414,-0.017431180924177]],[[-0.08409520983696,-0.070300348103046,-0.059210896492004],[0.016082452610135,0.1195334866643,0.02509592846036],[-0.033526968210936,-0.15019747614861,-0.14048165082932]],[[0.036147195845842,-0.010132000781596,0.059152446687222],[-0.093771621584892,-0.045258011668921,0.15813654661179],[-0.040485017001629,0.028254313394427,0.023696402087808]],[[0.079687535762787,0.0035508549772203,-0.12922070920467],[0.18397448956966,0.072761431336403,0.042782094329596],[-0.027684640139341,0.081352517008781,-0.023053603246808]],[[0.055403538048267,0.01128757558763,0.011348366737366],[0.023048276081681,-0.16638207435608,-0.017594553530216],[0.039761044085026,-0.053636066615582,-0.10293585062027]],[[0.00076228991383687,0.018476001918316,0.077515870332718],[-0.01191290281713,-0.026379255577922,-0.14633528888226],[-0.01343216188252,0.10043635219336,0.017145060002804]],[[0.079886324703693,-0.07577283680439,-0.068403102457523],[0.09746477752924,-0.029373368248343,-0.016801225021482],[0.059078712016344,0.039759963750839,-0.0075280112214386]],[[-0.0027609411627054,-0.09623771905899,-0.023044280707836],[-0.11981743574142,-0.062539055943489,-0.050085406750441],[-0.10010296851397,0.14706864953041,-0.024919424206018]],[[-0.23494607210159,0.050400990992785,-0.040015183389187],[0.087941154837608,-0.057369966059923,0.033295918256044],[0.10840163379908,0.10263078659773,0.10798835754395]],[[-0.056440189480782,-0.13229593634605,-0.20333936810493],[0.011049552820623,0.093763038516045,0.051328875124454],[0.10739734768867,0.042802628129721,0.010266277939081]],[[0.10270389169455,-0.038306139409542,-0.029188673943281],[-0.02346677519381,0.02361892350018,-0.0036607154179364],[0.072200693190098,-0.070968218147755,0.026520496234298]],[[0.034640111029148,-0.0088265333324671,0.059638056904078],[0.013059390708804,0.036438815295696,0.11718885600567],[-0.24164323508739,-0.203159481287,-0.17826600372791]],[[0.03427766636014,0.060890041291714,0.08303789794445],[-0.094841696321964,-0.081635728478432,0.0027884372975677],[-0.03342716768384,0.054773606359959,0.038015250116587]],[[0.076970033347607,-0.035750687122345,-0.012113064527512],[-0.0050115492194891,0.017719270661473,0.036305699497461],[0.0034116180613637,-0.019136913120747,-0.023912362754345]],[[0.12098894268274,-0.0057909577153623,-0.031395301222801],[-0.021244831383228,0.035207983106375,-0.079147063195705],[0.088118813931942,0.065991699695587,0.075636669993401]],[[0.13218379020691,-0.079494595527649,0.041107032448053],[-0.0060295169241726,0.093137972056866,0.071129985153675],[-0.095979429781437,0.10036216676235,-0.073525317013264]],[[-0.02747836150229,0.074059210717678,0.040300942957401],[-0.055181372910738,-0.041473291814327,0.040145274251699],[0.10435853898525,-0.19299456477165,0.093698307871819]],[[-0.00054781557992101,-0.10224787890911,-0.19784216582775],[0.055535160005093,-0.011957702226937,-0.024596462026238],[0.011531857773662,0.04807922616601,-0.014076239429414]],[[-0.081544756889343,-0.015894807875156,0.055365297943354],[0.0062952199950814,0.14321926236153,0.019595060497522],[0.022155484184623,0.20205254852772,-0.099236525595188]],[[-0.022312356159091,-0.046074826270342,-0.139095723629],[0.045101244002581,-0.071234986186028,-0.11401063203812],[0.056892663240433,-0.084094643592834,-0.14298133552074]],[[-0.31375023722649,0.040616158396006,0.00059078738559037],[-0.12668681144714,0.16034322977066,0.11148092895746],[-0.16230030357838,-0.08052621781826,-0.11037062853575]],[[0.097132422029972,-0.093386918306351,-0.0032738589216024],[-0.15097434818745,-0.049327664077282,-0.057359978556633],[0.075110532343388,0.045410118997097,-0.10295061767101]],[[0.069844745099545,0.022277744486928,-0.079505667090416],[-0.012360908091068,-0.06631975620985,0.0065244911238551],[0.011453529819846,-0.079909399151802,0.021939937025309]],[[-0.020845400169492,-0.037371683865786,-0.0047816927544773],[0.017544716596603,-0.052984826266766,-0.032751880586147],[0.057590998709202,-0.078775674104691,-0.036644820123911]],[[0.085593953728676,0.09059102088213,0.069206103682518],[-0.046141680330038,-0.056255824863911,0.095163747668266],[0.14895118772984,0.036039590835571,-0.10445991158485]],[[0.058961059898138,0.070855304598808,-0.030277419835329],[-0.0033909361809492,-0.017424935474992,0.0048568146303296],[-0.016089407727122,0.042537521570921,0.040147956460714]],[[-0.045564539730549,-0.054168779402971,-0.051890190690756],[-0.076664708554745,-0.053465694189072,0.12261120975018],[0.0093675898388028,-0.11112193018198,0.081888042390347]]],[[[0.039385840296745,-0.050619393587112,0.02923814766109],[-0.020056091248989,-0.05784210935235,0.0080689517781138],[-0.013051957823336,0.0064069163054228,0.0019664342980832]],[[-0.035114720463753,0.067822523415089,0.069860354065895],[-0.1116848513484,-0.074793986976147,-0.025611212477088],[-0.036750454455614,-0.095383986830711,0.26157727837563]],[[-0.030178740620613,0.049129657447338,-0.027377255260944],[-0.014328272081912,-0.10690969228745,-0.065544135868549],[0.077305346727371,0.018316024914384,-0.073805578052998]],[[-0.062533780932426,0.15926536917686,-0.24954091012478],[-0.041036210954189,0.17263177037239,0.046636171638966],[-0.053046088665724,-0.055144928395748,0.071526847779751]],[[-0.018262252211571,-0.06737907230854,-0.026606595143676],[-0.025922443717718,0.039022129029036,-0.058130938559771],[-0.0090609565377235,0.077557697892189,-0.20231162011623]],[[-0.012907502241433,0.036003727465868,-0.12662044167519],[-0.0061297616921365,0.17844574153423,0.0092978132888675],[-0.014883383177221,0.1255156993866,-0.12623775005341]],[[0.028334442526102,-0.11395215243101,-0.0072298580780625],[-0.01707180775702,0.02032064832747,0.13524377346039],[0.048370156437159,0.1448527276516,-0.030193565413356]],[[0.15671101212502,0.05136152356863,-0.018649023026228],[-0.017225069925189,-0.00080619688378647,0.083401933312416],[0.053992800414562,0.098545096814632,0.095123067498207]],[[0.022417288273573,0.003289194079116,0.0053225397132337],[-0.087177015841007,-0.015942538157105,-0.020753931254148],[0.034659754484892,-0.0084401965141296,-0.023069152608514]],[[-9.0630339400377e-05,-0.00013114549801685,-0.1450265198946],[-0.027906192466617,0.0061032683588564,0.026995006948709],[0.024731235578656,-0.029928099364042,0.01282514911145]],[[0.072405621409416,0.15666505694389,0.024141745641828],[0.073103815317154,0.10684408992529,-0.029549384489655],[0.0095246285200119,-0.16132989525795,-0.22057417035103]],[[0.05565070360899,-0.021317470818758,-0.027308337390423],[-0.090214319527149,-0.080660790205002,0.073009446263313],[0.021613266319036,0.049639791250229,0.032242905348539]],[[-0.047804683446884,0.076793596148491,0.011305856518447],[-0.17708721756935,0.091319158673286,0.061563938856125],[-0.030595641583204,0.16746953129768,-0.042898327112198]],[[0.061898902058601,-0.070284992456436,0.11063597351313],[-0.18948778510094,-0.12497471272945,0.043243706226349],[0.00097418786026537,-0.00066739175235853,0.018841875717044]],[[-0.024269659072161,0.042331993579865,-0.074471555650234],[-0.025193989276886,-0.12652823328972,0.10541841387749],[0.041874125599861,0.063357792794704,-0.082167759537697]],[[-0.1251357793808,0.056207101792097,-0.14271990954876],[0.031429007649422,0.059723634272814,-0.10031247884035],[-0.047084704041481,0.051937021315098,-0.1187454983592]],[[0.0038499650545418,-0.03149002417922,-0.15316960215569],[0.049242105334997,-0.057200409471989,-0.071603514254093],[-0.016944309696555,0.17023393511772,-0.065422303974628]],[[0.050889767706394,0.020601216703653,-0.023299969732761],[0.066407330334187,0.041307121515274,-0.063446454703808],[-0.080313973128796,0.05027274787426,-0.092537350952625]],[[0.07242838293314,-0.011367888189852,0.0058698961511254],[-0.020027663558722,-0.0012849615886807,0.18674154579639],[0.070723995566368,-0.029862338677049,0.011618168093264]],[[0.056984197348356,0.12456814199686,-0.1350379884243],[-0.039247624576092,0.03791930526495,0.042038694024086],[0.14341494441032,0.091365076601505,-0.041607722640038]],[[0.094375029206276,-0.17408549785614,0.037093196064234],[0.016171334311366,0.072725638747215,0.037169601768255],[-0.027174390852451,-0.054441276937723,0.052462089806795]],[[-0.0048506059683859,-0.10260141640902,0.0071830786764622],[-0.19557942450047,-0.071416042745113,-0.15499909222126],[-0.16920271515846,0.081503510475159,0.041683096438646]],[[-0.027588464319706,0.070030361413956,-0.049280762672424],[-0.093218632042408,0.081606402993202,-0.0031165748368949],[-0.080220773816109,-0.10404068976641,0.054962769150734]],[[-0.018760930746794,-0.029210679233074,0.10117910057306],[-0.024377889931202,-0.080292716622353,0.10695879906416],[-0.030657254159451,-0.17379160225391,-0.027712950482965]],[[0.083743803203106,0.13214865326881,0.0006244812393561],[-0.13110674917698,-0.059734914451838,0.037222646176815],[-0.070322878658772,-0.0058587924577296,0.027671236544847]],[[-0.016007259488106,-0.074307255446911,-0.032189685851336],[0.014309901744127,-0.033824488520622,0.087740369141102],[0.014633098617196,-0.020620688796043,0.095439910888672]],[[-0.0098627218976617,0.056657694280148,0.03882584348321],[0.0079843904823065,-0.0070862248539925,0.06780282407999],[-0.13340811431408,0.022926120087504,-0.082897126674652]],[[0.021532559767365,0.027191322296858,-0.067448750138283],[0.13195019960403,0.01337256282568,0.12729804217815],[-0.047468949109316,0.063972622156143,-0.048089258372784]],[[-0.082661457359791,-0.022348664700985,0.17047762870789],[-0.012206237763166,-0.10503786802292,-0.014290149323642],[0.12994033098221,-0.22219783067703,-0.03354012593627]],[[0.059876758605242,0.079023525118828,0.096842683851719],[0.029121851548553,0.017900943756104,0.043442767113447],[-0.050223533064127,-0.05076589807868,-0.015399255789816]],[[0.025926560163498,-0.043768230825663,0.10662101954222],[-0.01331284083426,0.024153627455235,0.0018400219269097],[0.14623089134693,0.055912595242262,0.1157930418849]],[[0.0026009036228061,0.022238990291953,0.20427185297012],[-0.086863085627556,-0.19013994932175,0.21094672381878],[0.16888223588467,-0.19773259758949,0.080677971243858]],[[-0.078969083726406,0.10559035092592,0.18760873377323],[-0.15844659507275,-0.083448931574821,0.040359795093536],[-0.065786719322205,0.025135837495327,0.12441235780716]],[[-0.059383533895016,-0.035207729786634,-0.011294959113002],[-0.0075817271135747,-0.063800625503063,-0.03941835463047],[-0.12595275044441,0.080566383898258,-0.052173990756273]],[[-0.043610334396362,0.13413290679455,-0.0048043779097497],[-0.057183630764484,0.10659318417311,0.10902588069439],[-0.12793643772602,-0.024757351726294,0.093880295753479]],[[0.081701263785362,0.067222699522972,0.17740178108215],[0.040761642158031,0.086251944303513,0.030843896791339],[-0.039432931691408,-0.0055762543343008,0.01978669129312]],[[-0.11968506872654,0.013695997186005,0.11304531991482],[-0.1233684271574,0.027565145865083,-0.0046670823357999],[0.070267595350742,-0.11949587613344,-0.11148399859667]],[[-0.095051407814026,0.031046882271767,0.027044028043747],[0.15652838349342,-0.0089771896600723,-0.076872795820236],[0.22056061029434,-0.14369215071201,0.080242969095707]],[[0.0050634234212339,0.14442911744118,-0.02811080776155],[-0.055762555450201,0.056406781077385,-0.24578602612019],[-0.021870927885175,0.085995517671108,-0.16710828244686]],[[-0.025467710569501,0.15479503571987,0.065207675099373],[-0.071563690900803,-0.005631766282022,-0.031648021191359],[0.12835599482059,0.022499481216073,-0.070778988301754]],[[-0.039710786193609,0.071959100663662,0.26689559221268],[-0.060063205659389,-0.023588247597218,0.087896712124348],[-0.032321684062481,0.1142927184701,0.018696466460824]],[[-0.15911085903645,-0.004884063731879,0.25227361917496],[0.132558375597,-0.17566908895969,0.19210164248943],[0.13689625263214,-0.053604271262884,0.20578642189503]],[[0.072890006005764,0.048340614885092,0.019320951774716],[0.075068548321724,-0.070178337395191,-0.030972162261605],[0.14515739679337,-0.1055077239871,-0.081482537090778]],[[0.059933770447969,-0.035984952002764,-0.058784533292055],[-0.074036531150341,0.096269011497498,-0.016170207411051],[0.037677116692066,-0.04382798075676,0.075281418859959]],[[0.044941730797291,-0.032287131994963,0.080482415854931],[0.045664116740227,0.032939963042736,0.16677755117416],[0.061011746525764,-0.026546388864517,0.11883940547705]],[[-0.017953082919121,0.10275742411613,0.11568228900433],[0.071905791759491,0.047556418925524,0.001222932129167],[-0.032412864267826,-0.0084711471572518,-0.011776883155107]],[[0.19456012547016,-0.23990680277348,-0.12049380689859],[0.14738114178181,-0.026957964524627,-0.012154629454017],[0.053805857896805,-0.011612862348557,-0.017545662820339]],[[-0.066734910011292,-0.13129748404026,-0.020420605316758],[-0.092850767076015,0.033355969935656,0.06804096698761],[0.076793916523457,0.04959549382329,0.059805270284414]],[[0.11665330827236,-0.16769698262215,0.16182033717632],[0.035731144249439,-0.26976862549782,0.29475513100624],[-0.004388471134007,-0.11339861899614,-0.027352940291166]],[[-0.053713046014309,-0.23793493211269,0.088571600615978],[0.046905044466257,-0.035072360187769,0.12382591515779],[-0.045498035848141,-0.027071092277765,-0.030522625893354]],[[-0.045220095664263,0.074054151773453,-0.085114844143391],[-0.0054799346253276,0.14201410114765,-0.10487885028124],[-0.069927431643009,-0.054093137383461,0.056769419461489]],[[-0.039390407502651,0.018018474802375,0.12806230783463],[0.0093194413930178,-0.10923397541046,0.14104703068733],[0.044569592922926,0.051325216889381,-0.17963838577271]],[[0.054049640893936,-0.16230416297913,-0.0097455410286784],[0.045417424291372,-0.018873240798712,-0.041684225201607],[0.17377741634846,-0.17330080270767,-0.0058474051766098]],[[0.069152437150478,0.051464039832354,-0.11986930668354],[0.095955535769463,0.10923255980015,-0.034276962280273],[-0.011556233279407,0.033448480069637,0.035510797053576]],[[0.033011227846146,-0.25011017918587,-0.088257648050785],[0.062545619904995,-0.2340804040432,0.0060091549530625],[0.05588598549366,-0.13144455850124,0.1478958427906]],[[0.008787258528173,-0.034943200647831,0.19662868976593],[0.044448386877775,-0.014420621097088,0.14241209626198],[-0.036719378083944,-0.0030247531831264,0.068417906761169]],[[-0.038670253008604,0.025402734056115,0.13805773854256],[-0.018798427656293,-0.15455676615238,0.19294621050358],[0.0078573198989034,-0.028574697673321,0.04100052267313]],[[0.015889225527644,-0.049910258501768,-0.10343349725008],[0.086584374308586,-0.063929744064808,0.03238132968545],[-0.025389511138201,0.035203646868467,0.15831242501736]],[[-0.04636387526989,0.10137689858675,-0.010364701971412],[0.068996258080006,0.14072816073895,-0.026758784428239],[-0.011655081994832,0.044471554458141,-0.0084527703002095]],[[-0.022371090948582,4.3651511077769e-05,-0.13442997634411],[0.016116438433528,0.0054404158145189,-0.058234427124262],[0.099912717938423,0.00376215018332,-7.6264499512035e-05]],[[-0.11302510648966,-0.083465211093426,0.13676643371582],[0.14207921922207,0.0042824423871934,0.090016409754753],[-0.12373401969671,-0.072030566632748,-0.017844947054982]],[[-0.010261376388371,0.039163284003735,-0.052796687930822],[0.21851831674576,0.062480896711349,0.0049989223480225],[-0.050917651504278,0.0017546004382893,-0.24312181770802]],[[-0.075694121420383,-0.052668433636427,-0.013411650434136],[-0.030309813097119,-0.012278729118407,-0.021330635994673],[-0.10001093894243,-0.11505802720785,-0.047244541347027]],[[-0.044779032468796,-0.067554950714111,-0.13815747201443],[0.00094797014025971,0.037292823195457,-0.12294624745846],[-0.011209378018975,-0.012528612278402,-0.19732150435448]]],[[[-0.122658893466,0.077696315944195,-0.053565252572298],[-0.16796354949474,-0.021499983966351,0.13695591688156],[-0.20856641232967,0.14885747432709,-0.1983444839716]],[[0.055541731417179,0.23060508072376,0.022065795958042],[0.094801120460033,0.092668294906616,-0.086427479982376],[0.038338262587786,0.027307858690619,-0.11355751007795]],[[-0.024131968617439,0.041607476770878,0.049444697797298],[0.060144584625959,0.0047292457893491,-0.05916541069746],[0.030860226601362,0.065663442015648,0.077194802463055]],[[-0.12829095125198,-0.058558717370033,0.078793868422508],[-0.031345088034868,-0.092958532273769,0.12605726718903],[-0.10402674227953,-0.10756348073483,0.11897141486406]],[[0.0030127484351397,-0.0045988671481609,0.0080571547150612],[0.023309502750635,-0.041038379073143,0.01570912078023],[0.0023629404604435,-0.020396282896399,0.0050420383922756]],[[0.09117216616869,-0.014397605322301,0.00081583316205069],[-0.06125920265913,-0.028215521946549,0.008729494176805],[0.047591134905815,-0.039393626153469,-0.059414189308882]],[[-0.019933987408876,0.019879162311554,-0.059011075645685],[-0.039619848132133,0.074080221354961,-0.054241992533207],[0.1302919536829,0.18172465264797,-0.032591570168734]],[[-0.086319096386433,0.017382504418492,-0.013899291865528],[0.020757470279932,0.099998250603676,-0.076402738690376],[-0.097984150052071,0.050859991461039,-0.028479594737291]],[[-0.11319875717163,0.062246061861515,0.052143223583698],[-0.025006966665387,0.019842265173793,0.10509119927883],[-0.12387654930353,0.069464735686779,0.0016026569064707]],[[0.0080845961347222,0.026962023228407,0.093669153749943],[-0.11068210750818,0.084279157221317,-0.025985399261117],[-0.10855056345463,0.096531085669994,0.042115151882172]],[[0.15552239120007,-0.094785518944263,0.12907129526138],[0.060481809079647,-0.12535440921783,0.05909002199769],[-0.029048217460513,0.026213547214866,-0.10119526088238]],[[-0.14999167621136,-0.089002072811127,0.077379681169987],[-0.034372415393591,0.076345212757587,-0.10453227907419],[-0.09874089807272,0.022464020177722,0.16351661086082]],[[-0.045150987803936,0.039968516677618,-0.083155460655689],[-0.062505729496479,-0.013801973313093,-0.065334379673004],[0.035824608057737,0.20594969391823,0.13131462037563]],[[-0.06366939842701,0.016790419816971,0.045611150562763],[0.034220319241285,-0.01102835778147,0.043864086270332],[0.12485515326262,-0.07278947532177,0.0070655490271747]],[[-0.042886469513178,-0.077098667621613,-0.18301366269588],[-0.024739863350987,-0.093576997518539,-0.0043550957925618],[0.096543610095978,0.0098969135433435,0.15324735641479]],[[-0.042471595108509,-0.14618428051472,0.052333354949951],[0.006664683111012,-0.23637449741364,0.036792371422052],[0.089279390871525,0.010142988525331,-0.077392213046551]],[[-0.11145278811455,-0.093089163303375,-0.079078271985054],[0.092129617929459,-0.020653191953897,-0.022912628948689],[0.043506782501936,0.076636485755444,0.049423322081566]],[[-0.035454165190458,0.027591556310654,0.13028980791569],[-0.0080356439575553,0.069693341851234,0.05152390152216],[0.027615452185273,0.04046368598938,0.05984840169549]],[[0.044310044497252,0.061046537011862,0.047950740903616],[-0.05882839858532,0.044338673353195,0.056694477796555],[-0.032269537448883,-0.0083962613716722,0.13216862082481]],[[0.0088530909270048,0.032359294593334,0.031671173870564],[0.065330244600773,-0.0053930785506964,-0.064241357147694],[-0.077427178621292,0.11598391085863,0.13835366070271]],[[0.013110264204443,-0.059235438704491,-0.076803341507912],[-0.056740205734968,0.03496964648366,-0.095684222877026],[0.024830354377627,-0.00030520436121151,-0.16101990640163]],[[0.13699512183666,-0.010829094797373,-0.010222086682916],[-0.00052801379933953,0.092940531671047,-0.16805475950241],[0.042981553822756,-0.040556438267231,0.084080219268799]],[[-0.17114089429379,-0.12622085213661,-0.0092161102220416],[-0.027073390781879,-0.10676657408476,0.087776206433773],[-0.031666524708271,0.030840715393424,0.068490065634251]],[[-0.0062872124835849,0.045958504080772,-0.024023292586207],[-0.082313939929008,-0.034589007496834,-0.12097270041704],[0.0032799956388772,0.0056365360505879,-0.030088426545262]],[[-0.13468445837498,0.08184751868248,0.044835329055786],[0.055395640432835,-0.035173561424017,-0.19366437196732],[0.017085367813706,-0.075166806578636,-0.14018708467484]],[[0.049666341394186,0.094277605414391,0.13014580309391],[0.011325711384416,0.016483910381794,-0.097625017166138],[-0.080718792974949,0.052335232496262,0.066407538950443]],[[-0.10061467438936,0.10621399432421,0.004403168335557],[-0.014026552438736,0.031497221440077,-0.11025684326887],[0.011491727083921,0.019961440935731,0.091861948370934]],[[-0.018432382494211,-0.088043600320816,0.0011042372789234],[0.067350074648857,0.028808193281293,0.019971499219537],[0.049205917865038,-0.059377312660217,-0.1057538241148]],[[0.039240404963493,-0.052570756524801,0.022696455940604],[-0.057432115077972,-0.058251582086086,0.031487349420786],[-0.13849821686745,-0.12803003191948,-0.10038527101278]],[[0.00094144931063056,-0.080720171332359,-0.0085137635469437],[-0.0079333828762174,-0.047899086028337,0.04342657327652],[-0.0026806024834514,0.050004210323095,0.011655905283988]],[[-0.005391369573772,-0.11478586494923,-0.31871098279953],[-0.015297289937735,-0.034382447600365,0.00022182370594237],[-0.061560202389956,0.085207298398018,-0.018432883545756]],[[0.11106996238232,-0.15040792524815,-0.044777452945709],[0.014719991013408,-0.06807903945446,0.018969722092152],[-0.038805641233921,-0.092716090381145,0.066087566316128]],[[0.056062482297421,0.057675804942846,0.19288681447506],[-0.056479543447495,0.022322120144963,0.099871434271336],[-0.12743711471558,0.077381521463394,0.13096635043621]],[[0.019927036017179,0.043446626514196,0.080702163279057],[-0.028681123629212,0.031153541058302,0.035043962299824],[-0.031494848430157,0.10554499924183,0.026516478508711]],[[0.083325833082199,0.090443767607212,-0.013431824743748],[0.073974132537842,-0.10335134714842,0.16695727407932],[-0.035253848880529,0.0077321366406977,0.011402880772948]],[[-0.14396387338638,0.030200412496924,0.023011159151793],[-0.011903173290193,-0.026116281747818,-0.048781760036945],[-0.0035030769649893,0.011544965207577,-0.1749195754528]],[[-0.031399689614773,-0.038068607449532,0.039859443902969],[-0.090044647455215,0.0032647938933223,-0.077353201806545],[0.097610704600811,-0.021554028615355,-0.1221885830164]],[[0.071985252201557,-0.069929651916027,0.27395036816597],[0.0087309321388602,0.12787732481956,-0.028990782797337],[-0.25071081519127,-0.011747289448977,0.057551182806492]],[[0.08493147790432,0.062118388712406,-0.2122682929039],[-0.019782420247793,-0.1310271024704,-0.036965291947126],[-0.1602857708931,0.021118039265275,-0.0068115838803351]],[[-0.049058381468058,-0.20067735016346,0.04058450832963],[-0.01511599868536,0.077301882207394,0.04336978495121],[0.0050871665589511,-0.045961584895849,0.035666771233082]],[[-0.023523842915893,-0.051663473248482,0.12643010914326],[0.069786362349987,-0.09196825325489,-0.087005458772182],[-0.041176747530699,-0.040452241897583,-0.083804562687874]],[[0.04260915517807,-0.10433266311884,-0.11532915383577],[-0.00064006587490439,-0.12662020325661,0.032078068703413],[-0.030502252280712,-0.17679491639137,0.018292857334018]],[[-0.12041154503822,-0.049584317952394,0.072190582752228],[-0.26310876011848,0.00048245585639961,0.013452195562422],[-0.019832653924823,-0.022750116884708,-0.22511704266071]],[[0.027737325057387,0.081929087638855,0.034955691546202],[0.058042790740728,0.043292108923197,-0.12730750441551],[0.040258191525936,-0.092386484146118,-0.12363804876804]],[[-0.14262552559376,-0.046589054167271,0.025781806558371],[-0.10274881124496,0.069330506026745,0.0058396439999342],[-0.044222988188267,-0.0049702748656273,0.10390828549862]],[[0.0026280800811946,-0.13723620772362,-0.068976543843746],[-0.034220650792122,0.055945232510567,0.015293734148145],[0.012128362432122,0.037364047020674,-0.0074449516832829]],[[0.10664021968842,-0.052805837243795,-0.089009024202824],[0.010276723653078,-0.10762069374323,0.03027331084013],[0.072855331003666,-0.030322723090649,-0.053115256130695]],[[0.016861082985997,0.022543784230947,0.048264387995005],[-0.13301503658295,0.0055134696885943,0.041173290461302],[0.038395337760448,-0.048664700239897,-0.00042145082261413]],[[0.050366178154945,-0.049017451703548,-0.008507989346981],[0.052252724766731,0.022118974477053,-0.076976999640465],[-0.084139354526997,0.13655523955822,0.21556760370731]],[[0.006836025044322,0.033114101737738,-0.027196709066629],[-0.057458527386189,0.032665606588125,0.023364951834083],[0.008055710233748,-0.026333622634411,0.03235762193799]],[[-0.015919204801321,-0.080007128417492,-0.14286652207375],[0.11689443141222,-0.029929852113128,0.0099371857941151],[-0.0036069096531719,-0.026834363117814,0.010032739490271]],[[-0.045227136462927,0.016672287136316,-0.022402031347156],[-0.044810455292463,-0.0048074964433908,-0.024726873263717],[-0.019101157784462,0.014042767696083,-0.12501250207424]],[[0.034450516104698,0.089560709893703,0.060446437448263],[0.010402850806713,0.011215008795261,0.10855712741613],[0.11806230247021,0.044938545674086,0.049661606550217]],[[0.047901172190905,-0.045433975756168,0.019559051841497],[0.060473315417767,-0.055943891406059,0.040009722113609],[0.10190763324499,-0.021732611581683,-0.0088879968971014]],[[0.0029895894695073,0.2111689299345,0.060765188187361],[0.0074688461609185,0.049844492226839,0.069553881883621],[-0.066866241395473,-0.17440405488014,0.014920144341886]],[[-0.0086159324273467,0.021528614684939,0.087134219706059],[0.038088969886303,-0.027362421154976,0.036379113793373],[-0.075096361339092,-0.0024818705860525,0.095179446041584]],[[-0.0045140855945647,0.011617352254689,0.074785739183426],[-0.012882040813565,-0.091498725116253,0.0080081131309271],[0.0013734947424382,-0.1219787299633,0.024305665865541]],[[0.018812974914908,0.0026772855781019,-0.13050955533981],[0.13017195463181,0.019681943580508,-0.17013785243034],[-0.095520995557308,0.024808809161186,0.069443576037884]],[[-0.12010323256254,0.0022380240261555,-0.0085048116743565],[-0.028118664398789,-0.0033406906295568,0.02714884839952],[0.014262606389821,-0.013849545270205,-0.070981174707413]],[[0.11258347332478,-0.011503910645843,-0.045936591923237],[0.063961140811443,-0.091605700552464,-0.03249067813158],[-0.053985338658094,-0.033888407051563,-0.085423246026039]],[[-0.050697453320026,0.021587567403913,0.11944428086281],[-0.1016968563199,-0.0040035652928054,-0.18422523140907],[-0.04744266346097,-0.037484180182219,-0.047148238867521]],[[-0.044230487197638,0.10222765058279,0.064761847257614],[0.13588829338551,-0.014715558849275,-0.017168171703815],[0.057873632758856,0.054687470197678,-0.090020380914211]],[[0.018018880859017,0.056043017655611,-0.080467909574509],[0.068250060081482,0.016217280179262,-0.032229326665401],[-0.18264144659042,-0.0049470337107778,0.044512130320072]],[[-0.052657645195723,-0.067987039685249,-0.012622318230569],[0.09123283624649,-0.0016132218297571,-0.085934303700924],[0.15479138493538,0.0013641424011439,0.11260274797678]]],[[[0.068411186337471,-0.16135726869106,0.029295472428203],[-0.061298262327909,-0.11061469465494,0.0022817589342594],[-0.15057083964348,0.24061746895313,-0.083214215934277]],[[0.012841491028666,0.058457419276237,-0.17456069588661],[-0.0054818778298795,0.034885674715042,-0.0643021017313],[-0.038674160838127,-0.11100228130817,0.058132566511631]],[[0.0029094847850502,0.054856646806002,0.16976721584797],[-0.16300578415394,-0.05186678096652,-0.10484924912453],[0.0082814302295446,0.13071711361408,0.0084884613752365]],[[-0.10339672118425,-0.036393951624632,-0.10140486806631],[-0.071986176073551,-0.080435998737812,-0.071300536394119],[0.14565329253674,0.059107553213835,0.18113707005978]],[[-0.00032520812237635,0.076543182134628,-0.10655706375837],[-0.13320252299309,-0.015122540295124,0.13085447251797],[-0.014228768646717,-0.16469779610634,-0.12092954665422]],[[0.13043826818466,-0.058693114668131,-0.1202359572053],[-0.080792173743248,-0.14083354175091,0.019535884261131],[0.088656455278397,-0.28012490272522,-0.016568826511502]],[[-0.04994298890233,-0.11083391308784,0.0034229708835483],[-0.10808026790619,0.019094904884696,-0.06899156421423],[-0.14417007565498,-0.19320246577263,-0.032051354646683]],[[0.0054584029130638,0.14768752455711,0.097321562469006],[-0.048513770103455,0.087058506906033,-0.07352090626955],[0.13551451265812,0.093567788600922,-0.074127674102783]],[[-0.0080072823911905,-0.049623899161816,0.083429090678692],[-0.025929657742381,-0.068471051752567,0.10955889523029],[-0.041526842862368,0.10509978979826,-0.092027872800827]],[[-0.062754981219769,-0.089535690844059,0.093328915536404],[-0.019771255552769,-0.11803115159273,0.035198736935854],[-0.19478034973145,0.06069277971983,0.17953366041183]],[[0.0020964362192899,0.014395849779248,0.17591267824173],[0.042082153260708,-0.12408592551947,-0.072632499039173],[0.17027287185192,-0.062505692243576,-0.16836489737034]],[[-0.011723277159035,-0.077255554497242,0.025038762018085],[0.019157759845257,-0.055266488343477,0.1409514695406],[0.13935245573521,-0.07367517799139,-0.15644143521786]],[[0.015270160511136,-0.036312278360128,0.083507753908634],[0.068364590406418,-0.060244332998991,-0.10798098146915],[0.041135262697935,-0.016931051388383,-0.12115480005741]],[[0.085574127733707,0.093079298734665,-0.10818179696798],[-0.05176554992795,-0.0056383446790278,-0.094974681735039],[0.035849805921316,-0.0031169990543276,0.046002849936485]],[[0.03651911765337,-0.026995247229934,-0.030128411948681],[0.077934622764587,0.0028652863111347,-0.011715708300471],[-0.062117103487253,0.075456872582436,-0.017253339290619]],[[-0.024195389822125,-0.00099591247271746,-0.10230806469917],[-0.055611621588469,-0.17613427340984,-0.089538052678108],[0.088879734277725,0.044971529394388,-0.030908850952983]],[[-0.10816609859467,-0.05200257897377,0.059987157583237],[-0.023196414113045,-0.055015042424202,-0.15995894372463],[0.053025618195534,-0.032479889690876,-0.011770586483181]],[[-0.015948705375195,0.053457424044609,-0.078488543629646],[0.23252438008785,0.15621078014374,-0.095542289316654],[-0.19556346535683,-0.10065333545208,-0.18939545750618]],[[0.013716013170779,0.034312169998884,-0.051128230988979],[0.0096969660371542,-0.013626194559038,0.070077389478683],[-0.078092902898788,-0.0025876997970045,0.11171145737171]],[[-0.11929628998041,-0.088240787386894,-0.17015825212002],[0.007240486331284,0.0030096676200628,0.02993974648416],[0.10095922648907,-0.087121181190014,0.0084384195506573]],[[-0.098461352288723,-0.19223189353943,-0.13119170069695],[-0.03477343544364,0.0045397570356727,0.12981137633324],[-0.092136219143867,-0.07160072773695,-0.096785195171833]],[[-0.022500667721033,-0.19781218469143,-0.17550182342529],[-0.030991023406386,-0.086320303380489,-0.099595732986927],[-0.2687354683876,0.012237004004419,-0.06927627325058]],[[-0.14219503104687,-0.17550379037857,-0.13255526125431],[-0.13279512524605,0.063785269856453,-0.042886257171631],[0.060280784964561,-0.0040345122106373,0.02042131498456]],[[-0.20355623960495,-0.16888409852982,-0.10478632152081],[-0.21748849749565,-0.22825038433075,0.059309769421816],[-0.33540570735931,0.0013751408550888,-0.0049297618679702]],[[0.058774534612894,-0.27330586314201,-0.087094210088253],[0.024707922711968,-0.02600540407002,-0.039908595383167],[0.091325998306274,-0.074717134237289,-0.010348252952099]],[[-0.075562052428722,-0.15207776427269,-0.11289945989847],[-0.0036196515429765,0.022991651669145,0.13865248858929],[-0.034564413130283,-0.061303146183491,-0.032568242400885]],[[0.079280667006969,0.040368210524321,-0.16167148947716],[-0.10427256673574,0.016346737742424,-0.0031284338328987],[-0.087010264396667,0.09279578179121,-0.16804592311382]],[[0.019843881949782,0.0089287795126438,-0.058887392282486],[-0.065612383186817,0.07708727568388,-0.0027668385300785],[-0.027345482259989,-0.091778017580509,-0.13880138099194]],[[-0.083727955818176,0.025343552231789,0.16015742719173],[-0.17313896119595,-0.10245330631733,-0.085017047822475],[0.092633806169033,0.041655629873276,0.02027633972466]],[[-0.024876590818167,0.10656204074621,-0.030805483460426],[-0.14181771874428,-0.034672498703003,0.038024865090847],[-0.11466933041811,-0.025035051628947,0.050054453313351]],[[0.026392372325063,0.052806165069342,0.091906823217869],[-0.0049391868524253,0.083630636334419,-0.0033779318910092],[-0.2175979167223,-0.026275197044015,0.032242920249701]],[[0.12839916348457,-0.1427004635334,-0.047252923250198],[0.12938870489597,-0.002521947491914,-0.060737639665604],[0.018432250246406,-0.12626059353352,0.10914611816406]],[[0.011284866370261,0.060420986264944,0.024570232257247],[-0.030664965510368,-0.19238588213921,-0.00058549043023959],[-0.078889653086662,-0.1340966373682,-0.07339034974575]],[[0.0029642896261066,-0.015261723659933,-0.040495544672012],[0.080132000148296,-0.0061800004914403,0.0083185788244009],[0.16712066531181,0.084487788379192,0.10006432980299]],[[-0.14039845764637,-0.051771450787783,-0.084734432399273],[-0.17702789604664,-0.15401934087276,0.10455714166164],[0.018644085153937,-0.018533479422331,0.016782216727734]],[[0.016344603151083,-0.047145761549473,-0.03087686188519],[0.18145243823528,0.039090547710657,0.013263494707644],[-0.042841456830502,-0.095856532454491,-0.17098660767078]],[[-0.088720925152302,-0.086792513728142,0.045070890337229],[0.0015109747182578,-0.0017565198941156,-0.04085636138916],[-0.079041235148907,0.028839848935604,0.032076898962259]],[[0.14226515591145,0.058602187782526,-0.066115900874138],[0.046157039701939,0.020903883501887,-0.034621983766556],[-0.013443072326481,-0.048045352101326,0.16546548902988]],[[0.040451735258102,-0.035637721419334,0.048217765986919],[-0.014209100045264,0.0034444152843207,0.043714240193367],[-0.094443194568157,-0.05597135797143,-0.12268706411123]],[[0.023152021691203,-0.17244639992714,0.094644270837307],[0.0084761288017035,-0.014783524908125,0.076217226684093],[0.056205771863461,-0.027966950088739,0.057142097502947]],[[0.055728614330292,-0.15997670590878,-0.072945684194565],[-0.067651644349098,-0.063091367483139,-0.028754763305187],[0.03312923759222,-0.010441690683365,0.11043806374073]],[[0.052506450563669,0.016400899738073,0.045720685273409],[-0.029531888663769,-0.011171597987413,0.033261124044657],[0.026659632101655,0.048943869769573,-0.012864499352872]],[[0.079508416354656,0.060399007052183,0.0072043007239699],[-0.13154710829258,0.045752018690109,-0.12378331273794],[-0.10777523368597,0.044599805027246,0.16622839868069]],[[-0.037343613803387,-0.089981354773045,0.01972508430481],[0.037863079458475,0.028763771057129,-0.16295132040977],[0.044770494103432,0.055626410990953,0.11340624839067]],[[-0.048245839774609,0.28269681334496,0.068388193845749],[-0.024937285110354,-0.11491023004055,-0.097333773970604],[-0.082978583872318,-0.033011861145496,0.14667202532291]],[[0.079937562346458,-0.054896209388971,0.10182999074459],[-0.013291066512465,-0.07613430172205,0.068240724503994],[-0.023186957463622,0.0085476664826274,0.21771410107613]],[[-0.14346607029438,0.010606294497848,0.15845634043217],[-0.022220212966204,-0.010947117581964,0.075556568801403],[-0.21469151973724,-0.16673983633518,0.055936437100172]],[[0.07212620973587,-0.016406208276749,-0.038206804543734],[0.061378017067909,0.0086317053064704,-0.13502009212971],[0.024774823337793,0.11745617538691,-0.031371135264635]],[[0.040531266480684,0.040184713900089,0.20494900643826],[-0.11898376792669,-0.035239290446043,0.019627027213573],[-0.22601526975632,-0.19362135231495,-0.25515899062157]],[[-0.021697176620364,0.035530030727386,-0.0054145529866219],[-0.05989657714963,0.02530213072896,-0.025837631896138],[-0.023284651339054,0.054400559514761,-0.024436710402369]],[[-0.041995912790298,0.021652722731233,0.0032669177744538],[-0.0059867464005947,0.057353369891644,0.026487182825804],[-0.12161058187485,0.13964869081974,0.0040417429991066]],[[0.095618084073067,-0.057751372456551,0.02275319211185],[-0.081010863184929,-0.1821104735136,-0.17913524806499],[-0.075154863297939,0.010144157335162,0.097311429679394]],[[-0.17509457468987,0.11902321130037,0.071887671947479],[0.027228571474552,0.11832541227341,-0.13905689120293],[-0.014163797721267,0.027311963960528,0.087536878883839]],[[-0.063188001513481,-0.054295521229506,-0.14711906015873],[0.0084952404722571,-0.0013033226132393,0.079818584024906],[-0.05018686875701,-0.018490491434932,-0.14205925166607]],[[-0.0013582222163677,0.056354608386755,-0.091187432408333],[0.096949569880962,0.057930957525969,0.072979621589184],[-0.013279475271702,-0.028850750997663,0.14179164171219]],[[-0.044841647148132,-0.12815703451633,-0.068521752953529],[0.077557191252708,0.045385535806417,-0.040306158363819],[-0.0092787891626358,0.082906275987625,0.020449914038181]],[[-0.03007847443223,-0.016888258978724,-0.11380235105753],[0.022170240059495,0.012612901628017,-0.18426539003849],[-0.070106945931911,-0.047579750418663,-0.027407417073846]],[[0.005608563311398,0.10047072917223,0.0018707073759288],[0.05015592649579,0.0042393156327307,0.03679833561182],[-0.10455520451069,-0.3092987537384,-0.079534113407135]],[[-0.18705351650715,-0.062209069728851,0.0079430742189288],[-0.05169128999114,0.028162678703666,0.052476160228252],[-0.012552443891764,-0.017128691077232,0.099050484597683]],[[-0.034307666122913,-0.090980172157288,0.08537670224905],[0.14331609010696,-0.01924935169518,-0.038950301706791],[0.02065915800631,-0.10721811652184,-0.0036034723743796]],[[-0.063855186104774,-0.067569971084595,-0.074238814413548],[0.01483628153801,-0.076758868992329,0.062864050269127],[-0.030704826116562,-0.041483901441097,0.035168744623661]],[[-0.036983259022236,0.006628021132201,0.030363684520125],[0.048161301761866,-0.063304394483566,-0.0038593935314566],[-0.097445979714394,0.059658717364073,-0.14318786561489]],[[-0.07150287181139,-0.095000326633453,-0.095583282411098],[0.090261429548264,-0.035745244473219,-0.024152563884854],[0.11983082443476,0.092845857143402,-0.057332009077072]],[[0.15695737302303,-0.030170170590281,-0.051739644259214],[-0.034596111625433,-0.0067991781979799,0.062401592731476],[0.01461470592767,-0.014951713383198,-0.16087397933006]]],[[[0.11698935180902,-0.040962737053633,-0.060213275253773],[0.12199825048447,0.056145615875721,-0.0097829299047589],[0.028025666251779,0.042064990848303,0.076045803725719]],[[0.16162385046482,-0.031196303665638,0.049919746816158],[-0.19224926829338,0.0052344826981425,0.035520702600479],[0.20797806978226,0.010064154863358,-0.12513071298599]],[[-0.12242624163628,-0.14230398833752,-0.03092928044498],[-0.032068815082312,-0.18778762221336,0.051391746848822],[0.1535263210535,-0.15678757429123,0.12928965687752]],[[0.011454557999969,-0.048039991408587,-0.11323016881943],[0.037945490330458,0.0032030902802944,0.094143182039261],[0.036371186375618,0.012419966049492,0.18424001336098]],[[0.017512125894427,0.051877986639738,-0.05768084898591],[-0.011414876207709,-0.041687421500683,0.073738865554333],[-0.22481025755405,0.072933256626129,0.086055964231491]],[[-0.13147130608559,0.0025232769548893,0.11639358103275],[0.03253448754549,-0.13508512079716,0.049500156193972],[0.057931553572416,-0.2310758382082,0.042445991188288]],[[0.20281112194061,-0.11548021435738,0.12553419172764],[0.045286796987057,-0.12203924357891,0.0070148007944226],[-0.018757361918688,0.0048258537426591,0.049241874366999]],[[0.052198637276888,0.034819412976503,-0.0083313062787056],[-0.084514655172825,0.11998897045851,0.065332219004631],[0.026848496869206,0.013867292553186,-0.02114543877542]],[[0.1451116502285,0.0097111947834492,-0.069296397268772],[-0.070337347686291,-0.027481518685818,-0.0084640374407172],[0.028246823698282,-0.063308820128441,0.054723329842091]],[[-0.11958038061857,-0.15714046359062,-0.14094722270966],[-0.12950506806374,0.032691042870283,-0.023863561451435],[0.021036915481091,0.0086702685803175,0.014967978931963]],[[-0.015234015882015,-0.15395683050156,0.20278888940811],[0.038446053862572,0.09497094899416,-0.013945723883808],[-0.12589484453201,0.12523165345192,0.042759772390127]],[[-0.12939515709877,0.0061244778335094,-0.013461579568684],[0.030740944668651,0.0083266338333488,-0.21636243164539],[0.2226507216692,0.054423816502094,-0.029637221246958]],[[0.10099832713604,0.0090036951005459,-0.11242430657148],[0.081985779106617,0.023870529606938,0.10624783486128],[0.073388800024986,-0.0074488553218544,-0.0073859659023583]],[[-0.035866472870111,0.11465606838465,0.0110376002267],[-0.072587676346302,0.08477533608675,-0.05278293043375],[-0.12232007086277,0.033923778682947,0.024716464802623]],[[-0.12229682505131,-0.074931085109711,0.21999242901802],[-0.13875275850296,-0.0096984505653381,-0.016798697412014],[0.019938129931688,0.023139296099544,0.088845014572144]],[[-0.050823733210564,0.026252230629325,-0.0035537399817258],[0.1022031083703,0.07856659591198,-0.04786953702569],[0.081372357904911,-0.20652884244919,-0.0098227923735976]],[[0.11331357061863,-0.097353123128414,0.19550639390945],[-0.19255384802818,-0.069112323224545,-0.041101232171059],[-0.083669178187847,0.054622069001198,-0.045276559889317]],[[0.0065888562239707,-0.05352546274662,0.035922419279814],[0.044989865273237,0.013043428771198,-0.028500782325864],[-0.22870157659054,0.068895861506462,-0.054202571511269]],[[-0.13143095374107,0.027907146140933,0.086786612868309],[0.0042302361689508,-0.18341866135597,0.10035424679518],[-0.006626452319324,-0.050898976624012,0.18684974312782]],[[-0.20581576228142,-0.089206367731094,0.18406642973423],[-0.13316757977009,-0.059973247349262,-0.0013011341216043],[-0.025416791439056,0.068246737122536,-0.021584173664451]],[[-0.059310261160135,-0.037677723914385,-0.10858817398548],[0.001553637906909,0.12405205518007,-0.051277190446854],[0.17199125885963,-0.10312726348639,-0.11026760190725]],[[0.16096390783787,0.10091276466846,-0.11493225395679],[0.0029044223483652,-0.0041574006900191,0.0086633721366525],[0.18042621016502,-0.063673265278339,-0.051090899854898]],[[0.10246980935335,0.0023633649107069,-0.059826504439116],[0.068377703428268,0.087624497711658,-0.097191996872425],[-0.088675029575825,-0.16249617934227,-0.042305488139391]],[[0.059505362063646,-0.020967241376638,-0.18448248505592],[0.042705956846476,-0.075601428747177,-0.14707045257092],[0.11657382547855,-0.0022131621371955,-0.013974740169942]],[[0.015371988527477,0.094022266566753,-0.22747507691383],[-0.086833149194717,-0.01011623814702,0.12589301168919],[0.096190959215164,0.025624400004745,0.040755901485682]],[[0.11318022012711,-0.0505765452981,-0.19890755414963],[-0.22678890824318,-0.10401809215546,0.061473365873098],[0.026103042066097,-0.021379608660936,0.0037089334800839]],[[-0.090098299086094,0.056811347603798,0.0068184640258551],[0.10031341016293,-0.17219477891922,-0.043344505131245],[0.3124386370182,-0.10175295174122,0.027576893568039]],[[-0.11661756038666,0.077611543238163,0.10995361208916],[0.033296421170235,0.05122023448348,0.099961057305336],[0.035929828882217,-0.012054117396474,0.041916318237782]],[[0.012119567021728,-0.24270321428776,0.08857087790966],[0.24663582444191,0.0053764656186104,0.10575508326292],[0.060901429504156,0.1008177921176,0.043108034878969]],[[0.17245748639107,-0.069856159389019,-0.054001707583666],[0.085361480712891,-0.021664569154382,-0.0014966075541452],[0.096541374921799,-0.0035999962128699,-0.042650818824768]],[[-0.029390895739198,-0.059940557926893,-0.017990997061133],[0.054548047482967,0.052632201462984,-0.12164770811796],[0.13153916597366,0.09278666228056,-0.10884346067905]],[[-0.007524776738137,-0.044120907783508,-0.054246313869953],[-0.021284839138389,-0.069933764636517,0.10733217746019],[0.14404873549938,0.12402924895287,-0.10128908604383]],[[0.060902450233698,0.037136774510145,-0.026182074099779],[-0.090477950870991,-0.0017142350552604,0.084489591419697],[-0.031332816928625,0.064356103539467,-0.06589325517416]],[[-0.011791089549661,-0.042104110121727,0.048669092357159],[-0.0073199686594307,0.014039969071746,0.020332919433713],[0.074155203998089,-0.096047729253769,0.05514919385314]],[[0.085137195885181,0.05237876996398,-0.021592190489173],[0.057399716228247,-0.12119958549738,-0.15030027925968],[-0.013237811625004,-0.042706623673439,0.075461760163307]],[[-0.11138539016247,0.016198532655835,0.084403276443481],[-0.17963795363903,-0.015683971345425,-0.011036093346775],[-0.21196822822094,0.03263197094202,-0.11254712939262]],[[0.044781655073166,0.029785834252834,0.077841803431511],[-0.069637827575207,0.0035001870710403,-0.013025130145252],[0.072576425969601,-0.016389220952988,0.085966140031815]],[[0.06392053514719,0.070006556808949,-0.052647899836302],[-0.005474348552525,0.081897653639317,-0.12692430615425],[0.20589184761047,-0.039946228265762,0.097085483372211]],[[0.10446773469448,-0.10271629691124,-0.10436452180147],[-0.055059909820557,0.047375116497278,0.032565407454967],[0.14549854397774,-0.094186455011368,0.0396335311234]],[[-0.060946211218834,0.0034283094573766,0.11243402212858],[0.10566998273134,0.034848537296057,0.026969190686941],[-0.069379083812237,-0.12245162576437,0.027914982289076]],[[-0.094153851270676,0.032339878380299,0.072884015738964],[-0.089583002030849,-0.074168838560581,0.070394180715084],[-0.14585550129414,-0.072933070361614,-0.012875981628895]],[[-0.019062409177423,-0.048225689679384,-0.095205165445805],[0.059920746833086,-0.06542881578207,0.049458291381598],[0.20867384970188,0.097007617354393,0.10941751301289]],[[-0.0043908692896366,-0.10273341834545,0.069047257304192],[-0.099003098905087,0.029669228941202,-0.0091627910733223],[-0.065600238740444,-0.00089174788445234,0.17601133882999]],[[-0.023614853620529,0.0022278188262135,-0.02281759865582],[0.0048811319284141,-0.028975440189242,0.036094680428505],[0.0078033632598817,0.10939582437277,-0.0056981495581567]],[[0.037136144936085,0.026632403954864,-0.012106423266232],[-0.0081446543335915,0.087455213069916,-0.1743565350771],[0.13632716238499,0.043607696890831,-0.085010409355164]],[[0.064388148486614,-0.04696100205183,0.021728999912739],[0.077845945954323,0.033428359776735,-0.0062680654227734],[0.055101945996284,0.11353121697903,0.0047544911503792]],[[0.13860368728638,-0.0033354246988893,0.093670479953289],[-0.056797806173563,0.099650375545025,-0.13601294159889],[0.063248425722122,-0.0031422111205757,0.009867936372757]],[[-0.17753772437572,-0.01709015108645,-0.089692316949368],[0.098388373851776,0.083454310894012,-0.094651259481907],[-0.013112649321556,0.025839153677225,0.085382722318172]],[[0.099571496248245,-0.038688104599714,-0.19221743941307],[0.061807256191969,-0.15404772758484,-0.31526389718056],[0.11469390243292,0.14731684327126,-0.041664157062769]],[[-0.092067688703537,0.0078063625842333,-0.20521327853203],[-0.011207430623472,-0.067873559892178,0.023213198408484],[-0.038865622133017,0.019470259547234,-0.051590468734503]],[[-0.1064530313015,-0.044362455606461,0.10154793411493],[-0.14196196198463,-0.088739603757858,0.1028655692935],[0.044241659343243,0.050024539232254,0.083320215344429]],[[0.015970233827829,0.11187812685966,0.0069781555794179],[-0.12495205551386,0.015618291683495,-0.0239018201828],[-0.17238932847977,0.077345363795757,-0.19317206740379]],[[0.053715255111456,-0.0011391073931009,0.091874822974205],[-0.057720173150301,-0.036490775644779,0.06950044631958],[-0.14935612678528,0.038439989089966,-0.098309092223644]],[[-0.03189704194665,0.070244692265987,0.056386910378933],[-0.082863949239254,-0.034590013325214,-0.01473768427968],[-0.30094400048256,0.062994502484798,0.0021929235663265]],[[0.059418443590403,0.15200909972191,-0.11514104157686],[-0.043100889772177,0.12284123152494,-0.10149948298931],[-0.042739257216454,0.15170402824879,-0.058285403996706]],[[-0.12164827436209,0.051870193332434,-0.010993525385857],[0.0018685316899791,0.061859879642725,-0.047757782042027],[-0.18694576621056,0.051670216023922,-0.099861398339272]],[[0.051606185734272,0.0054491530172527,-0.18960185348988],[0.081790022552013,-0.25488975644112,-0.089762046933174],[0.10302606970072,-0.14443211257458,-0.035971615463495]],[[-0.033232592046261,-0.10836841166019,-0.0552665181458],[0.088843554258347,0.094541490077972,-0.002623975975439],[-0.011966201476753,0.0057871025055647,-0.030288983136415]],[[-0.062302395701408,-0.0055283326655626,-0.079366780817509],[0.08851645886898,0.017568714916706,-0.030250763520598],[0.26130971312523,-0.022941000759602,0.057477060705423]],[[-0.096378825604916,-0.062829904258251,-0.18583129346371],[0.030042812228203,-0.12722507119179,-0.0974151045084],[0.18151532113552,0.055522676557302,-0.099475689232349]],[[-0.0043053645640612,-0.06175047531724,-0.091310329735279],[0.019676679745317,-0.022816469892859,0.058649867773056],[-0.084714367985725,0.061549738049507,-0.0079545499756932]],[[0.04431639239192,-0.03726264834404,-0.046594586223364],[0.023410053923726,-0.032852202653885,0.02266126871109],[0.12661439180374,-0.029303040355444,-0.085188545286655]],[[-0.18105544149876,-0.055181887000799,-0.14314326643944],[0.077967166900635,-0.02150940336287,0.033761866390705],[0.24841369688511,0.10810727626085,-0.15926377475262]],[[0.21610407531261,0.052229769527912,0.038598254323006],[-0.041562505066395,-0.045267838984728,-0.14594461023808],[-0.1154683381319,-0.090428441762924,-0.10096003115177]]],[[[-0.052536591887474,-0.064262382686138,0.051891945302486],[0.011230221949518,-0.036247748881578,0.022246800363064],[0.20197042822838,-0.050105657428503,-0.024629699066281]],[[0.10296537727118,0.126146286726,-0.21507680416107],[-0.042008582502604,0.10615388303995,-0.11163108050823],[0.037306733429432,-0.03571155667305,-0.010017611086369]],[[-0.14363767206669,-0.13749647140503,0.0018041973235086],[-0.070940166711807,0.13562978804111,-0.052007280290127],[0.0010123582324013,-0.052280884236097,0.20526842772961]],[[0.021429596468806,-0.003292572684586,0.099343650043011],[-0.068398743867874,-0.016721988096833,-0.0020984630100429],[0.13676191866398,0.071470580995083,-0.054936058819294]],[[0.061023075133562,0.026019107550383,-0.098570019006729],[0.056074321269989,0.059805452823639,-0.077723182737827],[0.14959460496902,-0.061810333281755,0.13403698801994]],[[0.041340790688992,-0.14101068675518,-0.046676330268383],[0.0063064903952181,-0.082478791475296,0.041948143392801],[-0.0053546251729131,0.027107942849398,-0.010200459510088]],[[0.049372512847185,-0.026698207482696,0.048724681138992],[-0.14910204708576,0.031273230910301,0.11500283330679],[-0.043343096971512,0.075677752494812,-0.052881292998791]],[[0.00029455916956067,0.070554070174694,-0.02967950515449],[0.023888651281595,-0.022174568846822,-0.074391938745975],[0.13189207017422,-0.11980121582747,0.045482397079468]],[[-0.065774716436863,0.0078977327793837,-0.091972835361958],[-0.001022546668537,5.5658165365458e-05,-0.14208860695362],[0.056710366159678,0.16180580854416,0.011785701848567]],[[0.023418389260769,-0.016452819108963,0.0028349030762911],[0.0047799441963434,0.00355020374991,0.11064852774143],[0.0010892609134316,-0.021773064509034,-0.021127296611667]],[[0.023315127938986,0.038126397877932,-0.091301888227463],[0.1056764498353,0.011270019225776,-0.22256153821945],[0.0050412015989423,-0.10267927497625,-0.13404940068722]],[[-0.051651977002621,-0.091922245919704,-0.091941356658936],[0.077068790793419,0.068839058279991,0.06451178342104],[-0.034165900200605,-0.12070136517286,0.020638540387154]],[[-0.18160060048103,-0.032147135585546,0.060134835541248],[-0.064338408410549,0.020951639860868,0.15229214727879],[-0.01805848069489,-0.082234606146812,-0.016552144661546]],[[0.018518529832363,-0.015365156345069,0.040485661476851],[-0.072639659047127,0.047105189412832,0.048554260283709],[-0.083522088825703,0.018503900617361,-0.08100663125515]],[[-0.073496952652931,0.017423206940293,0.074190817773342],[0.18104501068592,0.12493626773357,0.11286382377148],[-0.090397723019123,-0.031061325222254,-0.15899375081062]],[[-0.046886991709471,-0.011767148971558,0.13043168187141],[-0.022207682952285,-0.05691359937191,0.11867956072092],[0.11279144138098,-0.026699434965849,0.0074715889059007]],[[-0.010887953452766,0.097635999321938,-0.099946357309818],[-0.17236438393593,0.10633829236031,-0.0026504525449127],[-0.076347954571247,-0.0058356402441859,-0.044197630137205]],[[0.033063042908907,-0.065136052668095,0.096833668649197],[-0.03268913179636,-0.015209424309433,0.060978006571531],[0.058750756084919,0.049018919467926,-0.040626928210258]],[[-0.10148600488901,0.021113950759172,0.014579025097191],[0.054558280855417,0.024045009166002,0.013632298447192],[0.10010749846697,0.062823593616486,0.11443246901035]],[[0.01448362134397,0.035756178200245,0.050315897911787],[-0.071453750133514,0.015130425803363,0.018534667789936],[0.029396230354905,-0.015865560621023,-0.076461315155029]],[[-0.085488870739937,0.078732572495937,-0.010446491651237],[-0.02124654315412,-0.018612245097756,0.030684128403664],[0.12416706234217,-0.020784024149179,-0.043843511492014]],[[-0.029047094285488,0.046856962144375,0.12856370210648],[-0.055624555796385,0.025414954870939,0.031049931421876],[0.049936532974243,-0.024371275678277,-0.15320746600628]],[[0.068450354039669,0.15454871952534,0.074324890971184],[-0.034059915691614,0.016907658427954,-0.060985337942839],[-0.13167531788349,0.043873831629753,-0.16595642268658]],[[-0.085930287837982,-0.047032337635756,0.045784946531057],[0.059206016361713,-0.0096354112029076,-0.017429668456316],[-0.063682340085506,-0.064262613654137,0.05485774576664]],[[0.086542956531048,-0.03292515873909,-0.12850724160671],[0.050052713602781,0.032863683998585,-0.015155160799623],[0.075372435152531,-0.036443721503019,-0.068133272230625]],[[-0.015086672268808,-0.040314633399248,0.049240488559008],[0.052478156983852,-0.062845557928085,-0.031405318528414],[0.045200113207102,-0.0085016656666994,0.01298850029707]],[[0.10615910589695,-0.085932351648808,0.060260824859142],[0.077606067061424,-0.14538383483887,0.057256504893303],[-0.055803138762712,-0.18631400167942,-0.038198821246624]],[[-0.044876825064421,-0.10714013129473,0.026883302256465],[-0.072727046906948,-0.036339227110147,0.17009152472019],[0.017820935696363,-0.080999210476875,0.022875254973769]],[[0.18545733392239,-0.022089486941695,0.0062262834981084],[0.065464444458485,0.054849579930305,0.041993364691734],[0.031494401395321,-0.17154060304165,0.15838605165482]],[[0.11584910005331,-0.057751506567001,0.14119827747345],[0.010331248864532,-0.12073860317469,0.0014311468694359],[0.0082449577748775,-0.15469928085804,0.09703229367733]],[[0.11648388206959,-0.035819333046675,0.0062797018326819],[-0.15516002476215,-0.051041968166828,0.013919301331043],[0.027842113748193,-0.049494031816721,-0.014912376180291]],[[0.033374074846506,0.19290174543858,-0.052841667085886],[-0.024116789922118,-0.032777473330498,-0.062103312462568],[0.15771155059338,-0.12718562781811,-0.085491046309471]],[[-0.11056054383516,-0.029593927785754,0.09040816873312],[-0.080748297274113,-0.045077737420797,-0.012511525303125],[-0.04850235953927,-0.038110285997391,-0.0092414524406195]],[[-0.094597265124321,-0.016859205439687,0.02553347684443],[0.028723305091262,-0.036257017403841,0.054898526519537],[0.0023874677717686,-0.14058320224285,-0.028438631445169]],[[0.074411995708942,-0.060833640396595,0.028568752110004],[-0.0085862465202808,-0.092750802636147,0.10844496637583],[0.0022528162226081,-0.057644847780466,-0.13671027123928]],[[-0.036482315510511,0.0091340495273471,0.092608734965324],[-0.041320662945509,0.075471393764019,0.0092881051823497],[-0.023050379008055,0.012946667149663,0.31565698981285]],[[0.04935347288847,-0.022478686645627,-0.038598883897066],[-0.084479816257954,-0.04454530775547,-0.040233235806227],[-0.17885687947273,-0.023339053615928,-0.01503405533731]],[[0.070529744029045,-0.032613754272461,-0.21221412718296],[-0.047945816069841,-0.060583870857954,-0.17257219552994],[0.02211226709187,0.16147704422474,-0.11451328545809]],[[-0.093196995556355,0.0063229002989829,0.10546220093966],[-0.065874069929123,0.0084813069552183,-0.010161674581468],[-0.081282645463943,-7.6648402682622e-06,-0.014570341445506]],[[0.10077776759863,0.029214767739177,0.20022441446781],[-0.032036103308201,-0.24191550910473,-0.038575451821089],[0.017688855528831,-0.067332923412323,-0.035846002399921]],[[0.13753233850002,0.077715136110783,-0.079556167125702],[0.14674399793148,-0.021073635667562,0.027430282905698],[0.010342720896006,-0.070227108895779,0.092165887355804]],[[0.088601022958755,0.15211407840252,-0.21575547754765],[0.012984321452677,0.015012258663774,-0.14153063297272],[0.15659874677658,0.0062817325815558,0.0081628328189254]],[[-0.089205704629421,-0.02406982332468,0.076428346335888],[0.080663546919823,-0.049029845744371,-0.088110744953156],[-0.10035456717014,-0.091258615255356,-0.0099797081202269]],[[-0.060984008014202,-0.093206226825714,0.13938276469707],[0.047218658030033,0.050093401223421,0.007300310768187],[0.0044294949620962,-0.028851671144366,-0.034790582954884]],[[0.016481894999743,-0.030462086200714,-0.030546279624104],[-0.099242858588696,-0.12020771205425,0.038271844387054],[-0.13450303673744,-0.13524241745472,-0.070105247199535]],[[-0.025686344131827,0.006323566660285,-0.035620097070932],[-0.10078849643469,0.16132414340973,0.10152833908796],[-0.039309192448854,0.041302647441626,-0.037132389843464]],[[-0.067686669528484,0.011352409608662,0.10072641819715],[0.092173516750336,-0.12301971018314,-0.0023128371685743],[-0.11490636318922,0.0056037167087197,0.090298496186733]],[[-0.16087663173676,-0.09877859801054,-0.062003534287214],[-0.068987287580967,-0.1075821891427,0.020284635946155],[0.077981509268284,0.031747434288263,-0.076924838125706]],[[-0.04762689396739,0.010671601630747,0.083373323082924],[-0.1662083119154,0.0014651442179456,-0.073253825306892],[-0.045886751264334,-0.050879072397947,-0.035936076194048]],[[-0.1038977727294,0.1624052375555,-0.058957528322935],[0.045871943235397,0.037358220666647,-0.029875932261348],[0.01472026668489,-0.13114401698112,-0.04558090865612]],[[0.04327055811882,0.14798812568188,0.10843298584223],[0.023045103996992,0.079037025570869,0.15709711611271],[-0.0027974559925497,-0.0051556322723627,-0.041983615607023]],[[0.06808964163065,-0.1125263273716,0.0090684136375785],[-0.093073613941669,0.0075479904189706,-0.012287541292608],[0.171401232481,0.15275530517101,-0.051875043660402]],[[0.24595089256763,-0.024450259283185,0.07945965975523],[0.0059497789479792,-0.0044136964716017,-0.047105547040701],[-0.0069378465414047,-0.072795256972313,0.19038328528404]],[[-0.036313503980637,0.073665000498295,-0.14472953975201],[-0.040834493935108,0.0051348595879972,0.21091562509537],[0.061678122729063,-0.06639464199543,0.14170208573341]],[[-0.27750447392464,0.027084110304713,-0.013663489371538],[0.09026838093996,-0.051877841353416,-0.11694852262735],[-0.051870476454496,0.030154841020703,-0.0033550928346813]],[[0.1471931040287,0.065168656408787,0.023374924436212],[0.088872388005257,-0.14185009896755,0.0049378853291273],[-0.03844703361392,-0.20155139267445,-0.012128037400544]],[[-0.018519448116422,0.066849254071712,0.055070295929909],[0.12049633264542,-0.051387149840593,-0.027318695560098],[0.010923718102276,-0.064869865775108,0.028496133163571]],[[-0.071804150938988,-0.053281731903553,0.14469248056412],[0.053228784352541,0.037176378071308,-0.12749439477921],[-0.077056080102921,-0.08846677094698,0.093466736376286]],[[-0.065259225666523,0.0083207720890641,0.18724830448627],[0.074054285883904,0.18165364861488,-0.054200612008572],[0.064254201948643,0.078630663454533,0.049470368772745]],[[-0.085673935711384,0.058154109865427,0.11544043570757],[0.026154596358538,0.14315916597843,-0.0083880461752415],[-0.11720068752766,-0.055790238082409,0.025599770247936]],[[0.047015141695738,-0.093656502664089,-0.17657917737961],[-0.1099941059947,-0.1669799387455,-0.100780621171],[0.066319160163403,-0.047808960080147,-0.015927502885461]],[[-0.10823467373848,0.15415896475315,0.09148944914341],[0.018202455714345,0.039729006588459,0.012150016613305],[0.054332125931978,0.0027107489295304,-0.034133825451136]],[[0.021676605567336,0.01306358166039,-0.018551351502538],[0.092661842703819,0.0027437526732683,0.023615432903171],[-0.10571591556072,-0.12416065484285,-0.096631929278374]],[[0.13271126151085,0.043782230466604,-0.087701499462128],[-0.25018844008446,-0.04508438706398,0.0059077530167997],[-0.062277782708406,-0.1062842682004,0.029015293344855]]],[[[0.15367443859577,-0.019734082743526,-0.09477724134922],[0.10362864285707,-0.13255468010902,-0.022103898227215],[-0.072964161634445,-0.01466647349298,0.04668191447854]],[[0.042914547026157,-0.045802462846041,-0.0053878738544881],[0.071012996137142,0.088776148855686,0.032110970467329],[-0.11497582495213,-0.11809050291777,-0.061121750622988]],[[-0.14703585207462,0.0049397102557123,-0.011089931242168],[-0.16228565573692,0.038581609725952,-0.15492741763592],[-0.053220544010401,0.064936637878418,-0.048590887337923]],[[0.012682688422501,-0.052765250205994,-0.099642619490623],[-0.12317587435246,-0.028004107996821,0.083589062094688],[-0.053258180618286,0.089649215340614,-0.083352714776993]],[[-0.061155911535025,-0.084891371428967,0.11770397424698],[0.029392827302217,-0.022919565439224,-0.030599735677242],[-0.01335798855871,0.028947833925486,0.1293153911829]],[[-0.30243870615959,0.01098364405334,0.029547888785601],[-0.073057219386101,0.093000546097755,-0.12244469672441],[-0.20367531478405,-0.090511150658131,-0.11839047074318]],[[-0.063314981758595,0.017451032996178,-0.15225686132908],[0.050934799015522,0.03077900968492,0.089114397764206],[-0.083219595253468,0.02507796511054,-0.015566881746054]],[[0.11511819809675,0.071346618235111,0.058057554066181],[0.051919378340244,-0.022026335820556,-0.029773442074656],[0.090675629675388,0.033899113535881,0.0762604996562]],[[0.10400111228228,0.0008470548200421,-0.072617076337337],[-0.03904852643609,0.018767328932881,-0.079148277640343],[-0.030180525034666,-0.022464161738753,0.058320060372353]],[[-0.20702196657658,-0.11208286881447,0.089353129267693],[0.032992660999298,0.072726756334305,-0.0090849129483104],[0.053935267031193,0.11476085335016,0.033656500279903]],[[-0.055073402822018,-0.041305013000965,-0.12077998369932],[-0.026411252096295,0.042381357401609,-0.081172078847885],[0.03508273512125,-0.0042627607472241,-0.077175080776215]],[[-0.03358581289649,-0.021539790555835,0.13799171149731],[0.039776600897312,0.037112113088369,-0.028847899287939],[-0.16937771439552,-0.031295776367188,0.0020768621470779]],[[-0.078660003840923,0.033253598958254,-0.089798904955387],[-0.089709162712097,-0.031827945262194,-0.21020415425301],[-0.094097398221493,-0.029929893091321,-0.15731307864189]],[[-0.059460394084454,-0.076961070299149,-0.18091768026352],[-0.044751323759556,0.056970037519932,-0.012149877846241],[-0.049249302595854,0.17806179821491,0.12457033991814]],[[0.12829852104187,0.18514557182789,-0.5299551486969],[0.002515600528568,-0.018511936068535,-0.3497277200222],[-0.090297020971775,-0.22398896515369,0.042612344026566]],[[0.022483317181468,0.012294162064791,-0.021100444719195],[-0.032237436622381,0.051747344434261,0.0032083524856716],[-0.040898304432631,0.00064837856916711,-0.028050122782588]],[[0.050958804786205,-0.027266887947917,-0.022513376548886],[-0.022645829245448,-0.064551942050457,0.18928724527359],[0.049225099384785,-0.0090282950550318,0.055877566337585]],[[0.073590897023678,-0.083088830113411,-0.081044383347034],[0.0023072308395058,0.00259152171202,0.002189600141719],[0.050131350755692,-0.088664002716541,-0.048393461853266]],[[0.02170087210834,-0.031308017671108,-0.31278878450394],[-0.040104139596224,0.018888410180807,-0.14650341868401],[0.056786775588989,0.15407793223858,-0.26937356591225]],[[-0.11975829303265,-0.046501729637384,-0.11944841593504],[-0.12205869704485,0.055045340210199,-0.1703245639801],[-0.13455893099308,0.044653445482254,-0.037698220461607]],[[0.005002005957067,-0.066610619425774,-0.13204796612263],[-0.042244784533978,-0.011914554052055,-0.089063055813313],[-0.19108638167381,-0.022135911509395,0.0033607832156122]],[[0.02364001981914,0.0052019972354174,-0.074331536889076],[-0.06757939606905,-0.10821405798197,0.033565983176231],[0.0085979979485273,-0.038916539400816,-0.27109533548355]],[[-0.17079186439514,-0.037152588367462,-0.0095538049936295],[-0.034614525735378,-0.11109073460102,0.085501037538052],[0.12489639222622,-0.027764622122049,0.1167354658246]],[[-0.094590298831463,-0.035707052797079,0.077821291983128],[-0.10170122236013,-0.069965250790119,0.018327493220568],[-0.14749808609486,-0.11466659605503,-0.078086212277412]],[[0.057278271764517,-0.01252300478518,0.08794029802084],[-0.0027764928527176,-0.12746645510197,-0.13132686913013],[0.018465604633093,-0.063952565193176,-0.097293466329575]],[[-0.065816648304462,-0.040317170321941,-0.034757491201162],[-0.055635161697865,0.041253294795752,-0.098582275211811],[-0.067248232662678,0.066860243678093,0.087228737771511]],[[0.081920728087425,-0.14806188642979,0.13225838541985],[-0.011364597827196,0.051099982112646,0.14723533391953],[-0.12139680236578,-0.047906365245581,0.17679336667061]],[[-0.04624330252409,0.061186920851469,-0.022277809679508],[0.027512924745679,0.0033098491840065,0.01207706797868],[-0.019761420786381,0.12080892920494,-0.093339249491692]],[[0.13844890892506,0.028868976980448,0.065336488187313],[-0.0025943517684937,-0.026560405269265,-0.10348562896252],[-0.049798231571913,0.048215989023447,-0.0097201652824879]],[[0.026574397459626,-0.01692795753479,0.016592377796769],[0.02615949511528,0.056646052747965,0.10979524999857],[0.15444029867649,0.015735045075417,-0.019450360909104]],[[0.01649915240705,0.04497529938817,-0.035843297839165],[-0.16201041638851,0.060584634542465,0.090321950614452],[-0.082963176071644,0.091326154768467,-0.039411645382643]],[[-0.0062331221997738,-0.036302905529737,0.017828533425927],[-0.017376156523824,0.072766177356243,-0.021094936877489],[-0.10986296087503,0.11847174912691,0.010646607726812]],[[-0.065054498612881,0.0018144570058212,0.20227034389973],[0.044852800667286,-0.061186321079731,0.18950729072094],[-0.071493588387966,0.043913669884205,0.083889700472355]],[[-0.024702178314328,-0.10604283958673,-0.074704423546791],[0.0042955474928021,0.031643591821194,-0.015269153751433],[-0.093160837888718,-0.033603366464376,0.088500455021858]],[[-0.016437707468867,-0.13285148143768,-0.15389455854893],[-0.053875133395195,0.0005567844491452,0.14213988184929],[-0.012248014099896,0.061852920800447,0.12223952263594]],[[0.1654282361269,0.11182286590338,-0.046858739107847],[-0.019501695409417,-0.089776642620564,-0.001396949053742],[0.0003198609338142,-0.086919724941254,0.0076455785892904]],[[-0.089024439454079,0.062584206461906,-0.03844390437007],[-0.0019324814202264,0.040090631693602,0.041293159127235],[-0.0062953238375485,0.027242811396718,0.059211358428001]],[[0.11704888194799,-0.017003212124109,-0.077663213014603],[-0.0042839543893933,-0.069464206695557,0.064581751823425],[-0.04323561117053,-0.012199585326016,0.18093554675579]],[[0.017915107309818,-0.12586025893688,0.0074652344919741],[-0.098760969936848,-0.044646799564362,-0.0027422434650362],[0.091505855321884,0.052084557712078,0.039440616965294]],[[-0.080533809959888,0.13353188335896,0.015367398038507],[-0.064751453697681,0.06499769538641,-0.074987970292568],[0.14718620479107,-0.094943717122078,-0.069703817367554]],[[-0.024153152480721,-0.16994553804398,0.19270108640194],[-0.031672567129135,-0.0063161607831717,0.091721564531326],[0.18427123129368,0.057635322213173,0.10063344985247]],[[0.048137735575438,-0.16116642951965,0.098511606454849],[0.020510105416179,0.061604414135218,0.053586184978485],[-0.046000920236111,0.12254533171654,0.13883416354656]],[[0.034198768436909,0.021122518926859,0.046377267688513],[-0.066339075565338,-0.0090131796896458,0.021618207916617],[-0.054328739643097,-0.0018813243368641,0.09669229388237]],[[-0.07077718526125,-0.071768842637539,-0.020038729533553],[0.10706322640181,0.038923408836126,-0.0052414848469198],[-0.05765250697732,0.053320206701756,-0.020313445478678]],[[-0.076255276799202,0.075769536197186,0.1201681420207],[0.042130462825298,0.050870656967163,-0.079715549945831],[-0.10453968495131,0.06371159106493,-0.073535911738873]],[[-0.057964704930782,0.14593659341335,0.0010550286388025],[-0.088106513023376,0.21142379939556,-0.097840681672096],[-0.10393848270178,0.051168598234653,-0.13357099890709]],[[-0.088955238461494,0.22395108640194,0.18650251626968],[0.032445058226585,-0.037848025560379,-0.026005011051893],[-0.024638401344419,0.12236960232258,-0.05231736972928]],[[0.0013856415171176,-0.082984119653702,0.062312830239534],[-0.09239998459816,-0.014343849383295,0.085474468767643],[-0.024675643071532,-0.10403794795275,0.061537548899651]],[[0.027258174493909,-0.021589856594801,-0.052914578467607],[-0.067270152270794,-0.0039807837456465,-0.16253083944321],[-0.24390114843845,0.13130943477154,0.10820972919464]],[[0.07241003960371,0.093625970184803,0.14748364686966],[0.043689824640751,0.081531167030334,-0.0097329132258892],[-0.061952710151672,-0.0048893853090703,-0.12986442446709]],[[0.099168889224529,0.029433039948344,0.18335412442684],[0.019064312800765,-0.051298528909683,0.00090229965280741],[0.0078744040802121,0.078749239444733,0.089676566421986]],[[-0.068650752305984,0.023511402308941,-0.12237224727869],[0.27970525622368,0.032554350793362,-0.15458151698112],[-0.043609205633402,-0.014505197294056,-0.071717627346516]],[[-0.028907423838973,-0.08347512036562,0.096367567777634],[-0.03915049508214,0.084621891379356,-0.1182751506567],[-0.0425607226789,0.075224965810776,-0.074872121214867]],[[0.036622993648052,0.046774048358202,0.05991879478097],[0.14491298794746,-0.040627334266901,0.079932346940041],[-0.076303280889988,-0.059935558587313,-0.2741279900074]],[[-0.01131076272577,0.058157492429018,-0.036413215100765],[0.049454305320978,-0.090810008347034,-0.012692445889115],[-0.078190959990025,0.040924232453108,0.030211109668016]],[[0.06396672129631,-0.047917436808348,0.185426607728],[0.015023131854832,-0.082523219287395,0.081838339567184],[0.055305123329163,-0.17488500475883,0.073077835142612]],[[-0.1262639015913,-0.067297741770744,-0.093158699572086],[-0.039762649685144,-0.03791581839323,-0.072319082915783],[-0.11169993877411,-0.011576659977436,-0.075160294771194]],[[-0.019240565598011,0.044858701527119,-0.10025699436665],[0.0064200218766928,0.039032485336065,0.12993746995926],[-0.064601704478264,-0.17587113380432,0.027747651562095]],[[-0.061262045055628,0.017910666763783,0.052217788994312],[0.11156821995974,-0.049920123070478,-0.082621663808823],[-0.056642089039087,0.029859403148293,-0.014826802536845]],[[-0.18014520406723,0.042185328900814,0.17220133543015],[-0.0031348804477602,0.012314081192017,0.036158051341772],[0.041842363774776,0.065582185983658,0.1941335350275]],[[0.085747174918652,-0.093099787831306,-0.12834842503071],[-0.0032231213990599,0.080284990370274,0.023655382916331],[-0.075331978499889,-0.070385970175266,0.22257106006145]],[[-0.15268352627754,0.10007997602224,-0.16484472155571],[0.1201481372118,0.006627747323364,-0.0024114358238876],[0.14350128173828,-0.020987087860703,-0.024012807756662]],[[0.046472690999508,-0.11491699516773,-0.031068837270141],[-0.090377695858479,0.042194668203592,-0.0091496631503105],[0.10141156613827,-0.096124514937401,-0.031016362830997]],[[-0.095582760870457,0.11623882502317,0.081397570669651],[0.0021032909862697,-0.17804662883282,-0.18003743886948],[-0.10383659601212,0.0078735919669271,-0.13400480151176]]],[[[-0.03751827403903,0.050642568618059,-0.013034029863775],[-0.024113683030009,0.07052194327116,0.10047118365765],[0.075483180582523,0.090023435652256,-0.019810989499092]],[[0.11490415036678,-0.00035612101783045,-0.10045462101698],[0.037198629230261,0.0074731954373419,-0.081913501024246],[0.16370160877705,0.037786360830069,0.030902387574315]],[[-0.11103025078773,0.070714771747589,0.043654333800077],[-0.097315423190594,0.060932755470276,0.067541241645813],[-0.07806458324194,0.10157839953899,-0.06202407553792]],[[0.021879203617573,-0.071131616830826,-0.006274230312556],[-0.013295908458531,0.059844974428415,-0.097496397793293],[0.069626621901989,-0.15678356587887,-0.10720297694206]],[[-0.0072270543314517,-0.010730233974755,-0.030107721686363],[0.035044971853495,0.052388407289982,0.049651689827442],[0.10220500081778,-0.19445613026619,0.074127517640591]],[[0.12783946096897,-0.068171285092831,0.092664383351803],[-0.02124809846282,-0.046404074877501,0.16214630007744],[0.071855820715427,0.018788369372487,0.22264355421066]],[[0.027861475944519,-0.010688011534512,0.029352314770222],[-0.00019968512060586,-0.018348380923271,0.0034609939903021],[-0.032396618276834,-0.15031854808331,0.048020165413618]],[[-0.03877430409193,0.013865599408746,0.0066461241804063],[-0.093649573624134,0.071137093007565,0.026515185832977],[0.032989013940096,-0.012751010246575,-0.034740183502436]],[[-0.037262938916683,-0.056186832487583,-0.010062702000141],[0.059998776763678,-0.071959748864174,0.091784171760082],[0.062638834118843,-0.045645162463188,-0.018115103244781]],[[0.0013331988593563,0.088205590844154,-0.055473826825619],[-0.044401787221432,0.025208005681634,0.19155509769917],[0.13943648338318,-0.054853409528732,-0.19526946544647]],[[-0.052684847265482,-0.11664421111345,0.05233246833086],[-0.027366856113076,-0.052336797118187,0.2260026037693],[-0.0051337541081011,0.087550207972527,-0.0094365384429693]],[[0.066474720835686,0.041388679295778,-0.087660692632198],[-0.047255393117666,-0.15130622684956,-0.14984905719757],[-0.0051642688922584,-0.076703101396561,-0.23652569949627]],[[-0.097428061068058,0.0053597548976541,0.025644198060036],[-0.067913517355919,-0.054626420140266,-0.14759097993374],[-0.0021509039215744,0.085245311260223,0.011714641936123]],[[-0.015917763113976,-0.030965089797974,-0.013671424239874],[-0.078309386968613,0.061347629874945,0.0077403718605638],[-0.095992036163807,-0.011519841849804,0.047164760529995]],[[0.055329486727715,0.045918148010969,-0.10908757150173],[0.070721052587032,-0.014664993621409,-0.12720286846161],[-0.056015998125076,-0.077622689306736,0.033772334456444]],[[0.129239320755,-0.063010543584824,-0.054658301174641],[0.026563081890345,-0.074298143386841,-0.23909305036068],[0.14055424928665,0.0015687822597101,-0.027516471222043]],[[0.11728157103062,-0.0014186968328431,-0.023465618491173],[0.049121666699648,0.077102966606617,-0.017784159630537],[0.065955631434917,-0.1046184450388,0.11386750638485]],[[0.09559490531683,0.049230553209782,-0.090176180005074],[-0.087190389633179,-0.0014492835616693,-0.072293095290661],[0.028381900861859,0.15522563457489,-0.1595343798399]],[[-0.0064552566036582,0.14141863584518,-0.014077662490308],[-0.071763142943382,-0.068674519658089,-0.063892863690853],[0.02143893763423,0.035773281008005,-0.032282061874866]],[[0.032332561910152,0.012441832572222,-0.0026953255292028],[-0.0037395691033453,-0.083212062716484,-0.055837485939264],[-0.020024295896292,0.089715249836445,0.072239249944687]],[[-0.088998533785343,-0.020402116701007,-0.13305588066578],[0.0021432482171804,0.040503226220608,-0.10002719610929],[0.015884302556515,-0.16656242311001,-0.29225680232048]],[[-0.014493870548904,0.014465630985796,0.17341654002666],[-0.0066393935121596,-0.055509757250547,0.11521036177874],[0.043697156012058,-0.13645623624325,-0.022151727229357]],[[0.11662655323744,-0.083038575947285,-0.20183029770851],[-0.042526103556156,-0.11822754889727,-0.015685429796576],[0.022217825055122,-0.028449771925807,-0.1170584410429]],[[0.0091917999088764,-0.02499065361917,0.041771464049816],[0.10747218132019,-0.038074944168329,0.072325453162193],[-0.052957054227591,0.0053949728608131,-0.032680280506611]],[[0.12040685117245,-0.040989007800817,-0.073219768702984],[-0.0069563663564622,-0.020756956189871,-0.034513786435127],[-0.01338514406234,0.038840726017952,-0.15113116800785]],[[-0.042620908468962,-0.073307454586029,-0.17322531342506],[0.033781941980124,-0.064042158424854,-0.1082129329443],[-0.051994401961565,-0.02487226575613,-0.010680878534913]],[[0.19512283802032,-0.14775307476521,0.018877949565649],[0.17970907688141,-0.14764742553234,0.024947550147772],[0.043369106948376,-0.10532329976559,-0.057843402028084]],[[-0.030686359852552,-0.14547038078308,-0.25815662741661],[0.00393130723387,-0.10359944403172,0.025768959894776],[-0.043273530900478,-0.07153132557869,0.017204592004418]],[[0.15873807668686,0.15291376411915,0.055618442595005],[0.0041561718098819,0.16325734555721,0.069982536137104],[-0.024617685005069,-0.051998600363731,-0.15411522984505]],[[0.073623366653919,0.030175864696503,-0.2048504948616],[-0.075127311050892,-0.059530917555094,-0.2670085132122],[0.061737194657326,0.10094609856606,-0.31254187226295]],[[-0.19715251028538,-0.22898212075233,-0.31327202916145],[0.11809040606022,-0.042865235358477,0.16462875902653],[-0.16939544677734,-0.060071691870689,-0.075272791087627]],[[0.00016722350846976,-0.071614243090153,-0.10784400254488],[0.024028846994042,-0.025601238012314,0.30245861411095],[0.012472508475184,-0.07641888409853,-0.031914111226797]],[[-0.094997778534889,0.023579454049468,0.15267841517925],[-0.014368264004588,-0.056185502558947,0.15561924874783],[-0.0063337171450257,-0.22943094372749,0.20391502976418]],[[0.028204435482621,0.013488521799445,0.034453671425581],[0.023181103169918,-0.025999717414379,0.048629231750965],[-0.052708331495523,0.010488789528608,-0.10132249444723]],[[0.02932165376842,0.016504632309079,-0.013590625487268],[-0.035016108304262,0.042257618159056,0.018114881590009],[0.031445249915123,-0.069300629198551,-0.082803331315517]],[[0.01441194768995,0.01557432860136,0.041161805391312],[0.11248423904181,-0.072242081165314,-0.13050402700901],[-0.070510871708393,0.023665819317102,-0.02892255038023]],[[0.080666802823544,0.055289249867201,-0.16908660531044],[0.033973764628172,0.017721155658364,-0.032974619418383],[-0.053760651499033,0.037905845791101,0.10547831654549]],[[-0.060452125966549,-0.078519485890865,0.10915289819241],[-0.057225033640862,-0.10237085074186,-0.052469324320555],[0.010532541200519,0.13038165867329,0.11173798143864]],[[0.017703147605062,0.064760148525238,0.052515543997288],[0.012321274727583,0.0021170775871724,0.025351818650961],[0.040731888264418,0.047567918896675,-0.14196982979774]],[[0.10773081332445,-0.067305244505405,-0.069588035345078],[0.093733809888363,-0.15961554646492,-0.068852014839649],[0.076604209840298,0.031198937445879,-0.047872185707092]],[[0.11680337786674,-0.12387951463461,0.085935138165951],[0.073664829134941,-0.065537214279175,-0.053440812975168],[0.051041003316641,-0.14229935407639,0.092856630682945]],[[0.11587946116924,-0.25109347701073,0.16407155990601],[0.096586473286152,-0.33036103844643,-0.10595502704382],[0.1448490023613,-0.37716129422188,0.065037161111832]],[[-0.03813986107707,-0.03213731944561,-0.081015527248383],[0.033594898879528,0.042004007846117,0.013999892398715],[0.031453274190426,-0.076804287731647,-0.020400965586305]],[[0.013209315016866,0.097842946648598,0.040868271142244],[0.0034252149052918,0.0038541832473129,-0.054570965468884],[-0.12787072360516,-0.025178730487823,0.072819069027901]],[[-0.038941826671362,-0.040269620716572,0.13972985744476],[0.012207600288093,-0.0489272326231,0.080946519970894],[0.10006628930569,0.027217198163271,0.057447396218777]],[[-0.20636513829231,-0.19814425706863,0.16548162698746],[0.0122897233814,0.058762099593878,0.20756743848324],[0.11075720191002,0.016955276951194,0.011952335946262]],[[-0.32453015446663,0.13456167280674,-0.16899909079075],[0.1188530176878,0.069180190563202,0.11997212469578],[-0.091108053922653,0.024963986128569,0.11277325451374]],[[0.051106408238411,0.092323578894138,-0.030036779120564],[-0.032793287187815,-0.051102980971336,-0.14398136734962],[0.059262711554766,-0.066583834588528,-0.056181117892265]],[[-0.12308416515589,-0.11928891390562,0.067404940724373],[0.00100352242589,-0.13748705387115,0.075913436710835],[-0.1749671548605,0.033413797616959,0.014028112404048]],[[-0.03014680929482,0.0044122003018856,-0.2021352648735],[0.058953370898962,0.035091780126095,-0.10153996199369],[0.040404051542282,-0.052835498005152,-0.04708556085825]],[[0.051889475435019,-0.015416962094605,0.098128207027912],[0.026205288246274,0.0045867594890296,-0.26491492986679],[0.13369810581207,0.065706707537174,-0.16030070185661]],[[0.101886972785,0.087508536875248,-0.041692294180393],[-0.11641196906567,0.074808076024055,-0.032648306339979],[0.14915806055069,0.013249395415187,0.027089823037386]],[[0.056629151105881,0.11639023572206,-0.027418680489063],[-0.060852792114019,6.6078704549e-05,0.038430582731962],[-0.16694703698158,0.034031361341476,-0.10326255857944]],[[0.0099212899804115,0.035607434809208,-0.019490584731102],[0.048802860081196,0.11542086303234,0.026174426078796],[0.062192786484957,0.098793871700764,-0.082169517874718]],[[0.020516632124782,-0.053735192865133,-0.16398051381111],[-0.0010789250954986,0.0032907447312027,-0.01136386860162],[0.06188153848052,-0.129762545228,-0.074583798646927]],[[0.034800942987204,0.069282181560993,-0.21478958427906],[0.17367035150528,-0.037968419492245,-0.19069422781467],[-0.0061122076585889,-0.01338090095669,-0.097687393426895]],[[-0.1137438043952,0.021041145548224,0.052155774086714],[0.037581786513329,-0.063970506191254,-0.0042909062467515],[0.019082637503743,0.024342898279428,-0.13280135393143]],[[-0.0041381330229342,0.048867788165808,-0.14061957597733],[-0.09635417163372,0.057262498885393,-0.040602877736092],[-0.097439721226692,-0.037271115928888,0.020729979500175]],[[-0.050853159278631,-0.20244823396206,-0.024395383894444],[0.090894527733326,-0.042658932507038,0.084749765694141],[0.14941708743572,-0.080881729722023,0.061079449951649]],[[-0.011148434132338,-0.0013256433885545,-0.043743617832661],[-0.13496626913548,0.060537908226252,0.15900732576847],[-0.080531969666481,-0.024543168023229,-0.030030833557248]],[[0.10839566588402,-0.098428212106228,0.058090623468161],[-0.14353343844414,-0.044862020760775,-0.11557780951262],[0.039950411766768,0.023213375359774,-0.026964409276843]],[[-0.13514828681946,0.046691313385963,0.05595787987113],[-0.1261817663908,-0.075876109302044,-0.038709692656994],[0.062097571790218,-0.046728912740946,-0.027955090627074]],[[-0.0073295016773045,0.081505820155144,-0.077880807220936],[0.051942374557257,-0.055603750050068,-0.017619498074055],[0.024818670004606,-0.026889668777585,0.015217624604702]],[[-0.039837121963501,-0.17920805513859,-0.056949961930513],[-0.060465835034847,0.091503441333771,0.0070001631975174],[-0.0051546143367887,0.15530247986317,-0.18014411628246]]],[[[0.10733487457037,-0.050177961587906,0.2436361014843],[-0.051354929804802,-0.10715620219707,0.053954008966684],[0.014199762605131,0.12881192564964,-0.072613932192326]],[[-0.038789395242929,0.082106776535511,-0.00182328466326],[0.083737917244434,-0.043273750692606,-0.008513412438333],[-0.038961183279753,0.062996342778206,0.036667589098215]],[[0.037309151142836,-0.16872446238995,-0.052414212375879],[0.010517272166908,-0.15191423892975,-0.331841558218],[0.0061179981566966,-0.17012648284435,-0.014750030823052]],[[0.10524282604456,-0.25162237882614,-0.27770844101906],[0.087100766599178,0.17299763858318,0.17294080555439],[-0.053003001958132,0.045010700821877,-0.16823148727417]],[[-0.29256215691566,0.035555947571993,-0.04770240187645],[0.08351818472147,-0.13823369145393,-0.0026887594722211],[-0.030393352732062,-0.010826228186488,0.060427706688643]],[[0.015023436397314,0.014044958166778,-0.0014906122814864],[-0.058632589876652,0.019667692482471,-0.030627559870481],[-0.0050552515313029,-0.025846272706985,0.0057488358579576]],[[0.022185193374753,0.0023557113017887,0.015659410506487],[-0.073435038328171,-0.047861982136965,-0.053778368979692],[0.035034731030464,0.025382645428181,0.0088124051690102]],[[0.071181029081345,0.0056200325489044,0.063442789018154],[-0.17223015427589,-0.041254263371229,-0.032447129487991],[-0.0081964796409011,0.0041939718648791,0.031363174319267]],[[-0.046512994915247,0.026713404804468,0.068051375448704],[0.030865345150232,-0.015930498018861,-0.020418291911483],[-0.030235942453146,0.060544472187757,-0.039456661790609]],[[-0.066839382052422,-0.1615617275238,0.05815677344799],[0.046583093702793,0.075447954237461,0.031392056494951],[-0.22454178333282,-0.098834365606308,0.0546969845891]],[[-0.020978888496757,-0.033598762005568,0.16673323512077],[-0.026813266798854,-0.026173943653703,0.060657426714897],[0.01292522624135,0.024197844788432,0.0029338516760617]],[[0.030838204547763,-0.13843615353107,0.033312357962132],[0.059310436248779,-0.068832769989967,0.0619872584939],[0.17352315783501,-0.018797131255269,-0.20046351850033]],[[-0.04246049746871,0.016503484919667,0.031781047582626],[0.017659328877926,-0.015659110620618,0.011033119633794],[-0.10717636346817,0.03247132524848,0.21356856822968]],[[0.105080075562,-0.0053741782903671,0.0032844999805093],[0.063543550670147,-0.066486343741417,0.053933214396238],[-0.033495046198368,0.022587405517697,0.042464934289455]],[[-0.10612405091524,-0.045175485312939,-0.0982845723629],[-0.017131648957729,-0.02454986050725,-0.025289418175817],[0.075237609446049,0.11829301714897,0.031923584640026]],[[-0.061675027012825,-0.31675031781197,-0.064949207007885],[0.073397226631641,-0.12803880870342,0.14034649729729],[0.028181375935674,0.010432335548103,0.081697717308998]],[[-0.075428411364555,-0.023945715278387,0.014972099103034],[-0.031930170953274,-0.092271119356155,0.025355042889714],[0.026430083438754,0.083081796765327,0.042161863297224]],[[0.20767168700695,0.13907666504383,0.096092484891415],[-0.15047237277031,0.068368583917618,-0.044752776622772],[0.0060594878159463,0.061887353658676,0.020051509141922]],[[0.047760702669621,0.12549743056297,-0.14530737698078],[0.08441086858511,0.024475015699863,-0.022781487554312],[-0.040424063801765,0.039389852434397,0.048150185495615]],[[0.15796995162964,0.039889588952065,0.15135185420513],[0.12042026221752,-0.1121828481555,-0.012789717875421],[-0.0045076911337674,-0.05428135022521,0.14651310443878]],[[-0.15677750110626,-0.12337332963943,-0.098965771496296],[-0.0081757958978415,-0.051369871944189,0.052123356610537],[0.030047222971916,0.11363210529089,-0.029125846922398]],[[-0.24341362714767,0.22616705298424,-0.10613193362951],[-0.14741998910904,-0.13201843202114,-0.079115979373455],[0.16035847365856,0.017346503213048,-0.0029997741803527]],[[-0.10412558168173,-0.1446869969368,-0.038981284946203],[-0.11054603010416,0.016618793830276,-0.092607647180557],[0.12918585538864,-0.11370132863522,-0.016900835558772]],[[0.031694404780865,0.08228812366724,0.090368963778019],[-0.11642156541348,0.013101685792208,-0.00039372697938234],[0.1349678337574,0.0014180027646944,-0.009133268147707]],[[-0.098952852189541,0.31045031547546,0.0087607251480222],[-0.26670587062836,0.093492321670055,-0.096308812499046],[0.19108322262764,-0.11134891211987,-0.17955967783928]],[[-0.058917552232742,-0.15254625678062,-0.16968432068825],[-0.024601072072983,0.099372640252113,-0.014360600151122],[-0.08609826117754,0.055315461009741,0.01720635406673]],[[-0.33179754018784,-0.12408736348152,0.032163705676794],[-0.19810670614243,0.14900940656662,-0.054684903472662],[-0.087110228836536,0.093192785978317,-0.092095375061035]],[[-0.23062051832676,-0.11065688729286,-0.031626131385565],[-0.044155944138765,0.13239757716656,0.12081281840801],[-0.045124586671591,-0.055855304002762,-0.021587846800685]],[[0.075923576951027,0.015709009021521,0.12668243050575],[-0.07841482013464,-0.098652482032776,-0.024260358884931],[0.11457871645689,0.078382723033428,-0.03835279494524]],[[-0.12060850858688,-0.10926701873541,-0.12132686376572],[0.091826900839806,-0.060773406177759,-0.07952181994915],[0.018542490899563,0.017778966575861,-0.088688664138317]],[[-0.20619174838066,-0.065718211233616,-0.087541803717613],[-0.098595134913921,0.071424402296543,0.040532447397709],[-0.053997971117496,0.0073698251508176,-0.0099942935630679]],[[-0.14129604399204,-0.23368015885353,-0.15384078025818],[0.16022607684135,0.078944079577923,0.15497207641602],[0.042608376592398,0.027505503967404,0.033748041838408]],[[0.046584255993366,0.14998276531696,-0.16347718238831],[0.057742290198803,-0.068111844360828,-0.12613475322723],[-0.10468671470881,-0.060407474637032,-0.027095785364509]],[[0.071612417697906,0.032201077789068,0.064665794372559],[0.074223197996616,-0.020070943981409,-0.1307101547718],[0.044348955154419,-0.038586679846048,0.029703380540013]],[[-0.14487391710281,0.11580508202314,0.024842290207744],[0.13484768569469,-0.3125019967556,-0.083887703716755],[0.048339277505875,-0.034557621926069,0.071740664541721]],[[-0.21183602511883,0.13691176474094,-0.012209293432534],[0.033837713301182,-0.0062751891091466,0.0088666928932071],[-0.04121396318078,0.011256347410381,-0.022444166243076]],[[-0.16088011860847,-0.12719275057316,-0.16731737554073],[0.18681439757347,0.1442149579525,-0.068021923303604],[0.096296958625317,0.034786440432072,0.065102383494377]],[[0.057900529354811,0.046628411859274,0.0020387226250023],[0.2121949493885,-0.0020874757319689,-0.023900644853711],[-0.0040415278635919,0.17024056613445,0.069999411702156]],[[0.16891211271286,0.08912118524313,-0.013717270456254],[-0.03796024620533,-0.10583704710007,-0.15772539377213],[-0.0086591262370348,-0.029550574719906,-0.042112778872252]],[[0.0040626362897456,-0.11144609749317,-0.18445926904678],[0.055827759206295,0.0011887943837792,-0.12533695995808],[-0.021844247356057,-0.094606555998325,0.042893275618553]],[[-0.16842825710773,-0.032865826040506,-0.087214395403862],[0.047666814178228,0.028029624372721,0.11476956307888],[0.055652040988207,-0.018909880891442,-0.11094366014004]],[[-0.00630390830338,0.12956178188324,-0.1755757778883],[-0.11758600175381,0.078558921813965,0.070215530693531],[-0.15876151621342,0.10844559967518,-0.034554816782475]],[[-0.35684305429459,0.03998850658536,0.08075375854969],[-0.17250595986843,0.013868068344891,-0.0090103019028902],[-0.27552834153175,0.23169732093811,-0.012847966514528]],[[-0.0038312973920256,0.041622664779425,7.0887972469791e-06],[0.050819247961044,-0.017950713634491,0.0059829200617969],[-0.0082306461408734,0.01361988298595,-0.039655230939388]],[[0.075874015688896,-0.043446473777294,-0.035792585462332],[-0.054854176938534,0.03498574718833,0.085327476263046],[-0.017743537202477,0.052821643650532,0.063713259994984]],[[-0.033122137188911,0.041985429823399,0.013880134560168],[-0.19885854423046,-0.21235424280167,0.016022246330976],[-0.08943198621273,0.16707068681717,0.042873337864876]],[[0.094606779515743,-0.10928703099489,0.25890323519707],[-0.12149941176176,0.078502282500267,-0.10314285010099],[0.19723433256149,-0.053460516035557,-0.020712856203318]],[[0.011889826506376,-0.11496937274933,-0.15514561533928],[0.077018857002258,0.026204757392406,-0.0041675167158246],[-0.031237632036209,-0.021044505760074,-0.0032948900479823]],[[0.0671456605196,-0.010671244002879,-0.030786139890552],[0.0029509328305721,0.19346015155315,0.062983877956867],[-0.11218514293432,-0.0060283513739705,-0.084916412830353]],[[-0.3939054608345,-0.38440972566605,-0.14439250528812],[0.29802748560905,0.086326651275158,0.014825079590082],[0.13354769349098,0.051462266594172,-0.065840311348438]],[[-0.17066812515259,0.0013228129828349,-0.08747523277998],[-0.056552987545729,0.10102461278439,-0.12610583007336],[-0.086388513445854,0.09521921724081,0.13112525641918]],[[-0.18058690428734,0.046975262463093,-0.039508331567049],[0.0028504312504083,-0.064824052155018,-0.17203596234322],[-0.13703788816929,0.015699503943324,0.11137075722218]],[[0.033692132681608,-0.065417610108852,0.00074219075031579],[-0.077049762010574,-0.0467664077878,-0.028708674013615],[0.013277426362038,-0.04712963104248,0.10274392366409]],[[0.121282979846,0.010232074186206,0.086653798818588],[0.10000456869602,-0.035945028066635,0.035687051713467],[0.064828902482986,-0.0674192532897,-0.044817771762609]],[[-0.14683812856674,0.080278158187866,-0.071772351861],[0.11555957049131,0.049441371113062,0.0025778631679714],[0.032279644161463,-0.060657516121864,-0.063636183738708]],[[-0.13520485162735,-0.20840682089329,-0.085266329348087],[-0.055051144212484,0.030298223719001,0.096780881285667],[-0.15452261269093,-0.068299382925034,0.074854344129562]],[[0.084026806056499,0.10678119957447,0.059903874993324],[-0.023763159289956,-0.032600685954094,-0.11093144863844],[-0.029385522007942,0.012740440666676,-0.048352781683207]],[[0.1769862473011,0.00025957784964703,0.16080085933208],[0.12194303423166,-0.23755370080471,0.0099127842113376],[-0.018020210787654,0.012689375318587,0.039992049336433]],[[0.0063222018070519,-0.16765859723091,-0.12660700082779],[-0.049565616995096,0.1410620957613,-0.016521351411939],[0.060921799391508,0.054189722985029,-0.038239847868681]],[[0.026310499757528,-0.25184282660484,-0.015213234350085],[0.0061895735561848,0.0076511516235769,-0.086209878325462],[0.22836674749851,-0.017548464238644,0.037988744676113]],[[-0.071749143302441,-0.09234257042408,2.1722749806941e-05],[-0.084087684750557,0.037745550274849,-0.092082433402538],[-0.053751837462187,0.037819378077984,0.08795627951622]],[[0.12083011865616,-0.18023906648159,-0.077117003500462],[0.086415745317936,-0.004156026057899,0.10761456936598],[-0.019495103508234,0.022780464962125,-0.061677735298872]],[[-0.044011909514666,0.15201431512833,0.089779675006866],[-0.0032025298569351,-0.12940412759781,0.028006013482809],[-0.0036096903495491,-0.059729158878326,-0.11309964954853]],[[-0.047542918473482,-0.041243251413107,0.040087442845106],[-0.064191102981567,0.17080715298653,-0.014884444884956],[-0.080755896866322,0.14109326899052,-0.0045292861759663]]],[[[-0.046887405216694,-0.12741422653198,0.0087793404236436],[0.047731723636389,0.069346122443676,0.009361756965518],[0.0086519755423069,-0.039055567234755,0.23670333623886]],[[-0.18602813780308,0.13020707666874,-0.015782129019499],[-0.45121049880981,0.016415264457464,0.042875051498413],[-0.066243574023247,0.17052926123142,-0.10348615050316]],[[-0.097841046750546,-0.1144645512104,-0.11201736330986],[-0.14321218430996,0.035426344722509,-0.050852846354246],[-0.14305721223354,0.0017484348500147,0.074690043926239]],[[-0.02928308211267,-0.12494870275259,-0.01305375341326],[0.014646500349045,-0.074731737375259,0.057313188910484],[-0.045410111546516,0.038878940045834,-0.10599958896637]],[[-0.093143336474895,-0.1131924316287,-0.01882384903729],[-0.052545741200447,-0.13250479102135,-0.11363802105188],[-0.036695033311844,-0.10780919343233,-0.0070873587392271]],[[-0.16833445429802,-0.16395342350006,-0.040050502866507],[-0.07207316160202,0.013684559613466,0.030990071594715],[0.043750803917646,0.065793797373772,0.035376317799091]],[[-0.0047013638541102,-0.17189806699753,-0.018619652837515],[0.054502654820681,0.01343269366771,-0.10948973149061],[-0.16950468719006,-0.1177688613534,-0.034323550760746]],[[0.052816595882177,0.20089310407639,-0.12572824954987],[0.048021297901869,-0.074392430484295,0.046465206891298],[0.17332795262337,-0.06254930049181,0.029777429997921]],[[-0.030514199286699,0.057123798877001,0.012985006906092],[0.059162110090256,-0.084326937794685,-0.052662871778011],[-0.14133806526661,-0.021742718294263,0.16236193478107]],[[-0.083620384335518,0.055349845439196,0.098624810576439],[-0.053684618324041,-0.060671009123325,0.059617042541504],[-0.028542483225465,0.019757423549891,0.0068292315118015]],[[-0.032139103859663,0.05859787389636,-0.042018342763186],[0.13320243358612,0.09824725985527,-0.011462586000562],[0.13086718320847,0.020522383973002,-0.056526925414801]],[[-0.38402536511421,0.23460191488266,0.040379241108894],[-0.18293529748917,0.09518451243639,0.10107553005219],[0.018931036815047,-0.11379478871822,-0.15185144543648]],[[-0.042798761278391,-0.031145343557,-0.042178373783827],[0.03162283077836,-0.16348806023598,-0.086218975484371],[0.22876141965389,-0.0075772264972329,0.086403094232082]],[[0.10654942691326,0.046327151358128,0.010736975818872],[-0.0098267830908298,-0.063032425940037,0.036991715431213],[0.020263181999326,0.012501359917223,-0.040696986019611]],[[-0.0069957659579813,0.009841188788414,0.093373991549015],[0.052301071584225,0.011231905780733,-0.18920591473579],[-0.016785046085715,-0.00012604438234121,-0.35309010744095]],[[-0.1273657232523,0.030543565750122,0.021338118240237],[0.030351920053363,0.01785603351891,0.038668833673],[-0.048644706606865,-0.0029248285572976,0.035832762718201]],[[0.1654124557972,-0.091913565993309,-0.22304505109787],[-0.086507879197598,0.041492979973555,-0.0632628723979],[-0.26277568936348,0.15814466774464,0.1004598364234]],[[0.035045295953751,-0.0039195488207042,0.057498570531607],[-0.014416046440601,-0.16537889838219,0.12231931835413],[-0.0533850453794,0.0044486131519079,-0.040740337222815]],[[0.16958487033844,-0.030609078705311,0.033487349748611],[0.062127191573381,0.0682452917099,-0.10149237513542],[-0.0036449441686273,0.049071475863457,-0.18093077838421]],[[-0.019624954089522,0.11712350696325,0.1359877884388],[-0.10170719772577,0.11714778095484,-0.09501301497221],[0.19553212821484,-0.13559447228909,0.011409333907068]],[[-0.0095549318939447,-0.13051125407219,0.024005321785808],[-0.033851820975542,0.014407707378268,-0.050390958786011],[-0.16268530488014,-0.00068106903927401,0.055776506662369]],[[-0.18673622608185,0.079808123409748,-0.11287453770638],[-0.09354092925787,-0.039362013339996,-0.031258523464203],[-0.17642356455326,0.034338589757681,0.095010511577129]],[[-0.011589611880481,0.024991173297167,-0.07248579710722],[-0.0820127800107,-0.0098504573106766,0.018769735470414],[-0.074402093887329,0.10211536288261,0.081194594502449]],[[-0.096662417054176,-0.052140530198812,-0.011905926279724],[-0.047737114131451,-0.12725323438644,0.097032897174358],[0.075161509215832,-0.25114530324936,0.076855316758156]],[[0.079452060163021,-0.063758663833141,-0.099801920354366],[-0.11541919410229,0.019178809598088,-0.030379913747311],[0.065845310688019,0.08855114877224,-0.0021107131615281]],[[-0.0076249940320849,-0.13751220703125,0.046497836709023],[-0.11427091807127,-0.01736094430089,0.099477201700211],[0.010672135278583,-0.20497739315033,-0.090565651655197]],[[-0.22399596869946,0.19923640787601,-0.23443548381329],[-0.23601827025414,0.020302940160036,-0.17049819231033],[-0.267822265625,0.045400649309158,0.014090490527451]],[[-0.0041486471891403,0.072923973202705,-0.0056027565151453],[0.041041564196348,-0.057644702494144,-0.10951378196478],[0.055267300456762,-0.11844258010387,-0.033743437379599]],[[0.069017574191093,-0.034259453415871,0.19582365453243],[-0.12447512149811,-0.049457471817732,-0.00054092821665108],[0.13575768470764,-0.18564507365227,-0.107292547822]],[[0.028260810300708,-0.060471963137388,0.062530793249607],[0.08895168453455,-0.023981940001249,0.0066548520699143],[-0.17363604903221,-0.11521361023188,-0.10756703466177]],[[-0.0086485650390387,-0.098006926476955,-0.063379056751728],[-0.014462520368397,-0.075465641915798,-0.041953142732382],[-0.034625474363565,0.086878754198551,0.0081819873303175]],[[0.086270496249199,-0.017501322552562,0.0665083527565],[-0.048023171722889,-0.071548387408257,-0.019574696198106],[0.074883610010147,-0.033197559416294,-0.012767280451953]],[[0.0012790434993804,-0.074748933315277,0.021262777969241],[-0.0061555430293083,0.20653855800629,0.056353148072958],[0.090255208313465,-0.098201885819435,0.025558855384588]],[[-0.08014902472496,0.054211873561144,-0.085148312151432],[0.056378796696663,-0.029713036492467,0.026901017874479],[0.169743090868,0.10746103525162,0.031430028378963]],[[0.06625871360302,-0.13928985595703,0.11689428240061],[-0.17407564818859,-0.1244305819273,0.12129331380129],[-0.0024671582505107,-0.052064210176468,-0.037725992500782]],[[-0.15231971442699,-0.019067680463195,-0.041069995611906],[0.13516271114349,-0.055658616125584,0.093596145510674],[0.063155256211758,-0.0010987549321726,-0.065408080816269]],[[0.053244095295668,-0.10253999382257,0.073804602026939],[-0.026337999850512,0.071397334337234,-0.1087015196681],[-0.021787917241454,0.15710861980915,-0.065934836864471]],[[-0.095436967909336,0.0049636075273156,0.03367954492569],[-0.1125810444355,0.043501161038876,-0.0028805278707296],[0.034834112972021,0.0050893658772111,-0.14111669361591]],[[0.063535831868649,-0.11785536259413,0.067703433334827],[-0.18819741904736,-0.032362643629313,0.045096687972546],[-0.059910107403994,-0.072181865572929,0.15647365152836]],[[0.020465580746531,0.01936861127615,-0.0663201212883],[-0.034331772476435,-0.015904411673546,-0.01907310821116],[-0.091009676456451,0.031137572601438,0.084241330623627]],[[0.069206438958645,0.034234542399645,0.12644071877003],[0.019630329683423,-0.014099768362939,0.084430769085884],[-0.012703825719655,-0.14491188526154,0.077242575585842]],[[0.032933611422777,0.049739737063646,0.042003527283669],[0.090254724025726,-0.011830151081085,-0.058071900159121],[-0.0015023469459265,0.19420146942139,-0.039257176220417]],[[-0.0018895814428106,-0.098361507058144,0.038594197481871],[0.17621241509914,-0.027759533375502,0.075889624655247],[0.091879762709141,-0.11481433361769,0.044616099447012]],[[0.053939312696457,-0.0011870077578351,0.0011878760997206],[-0.05465155094862,-0.054378867149353,-0.091402463614941],[0.081241250038147,0.015182199887931,0.01011620182544]],[[-0.24056632816792,-0.030125044286251,-0.098096340894699],[-0.087896898388863,-0.033678218722343,0.0089893201366067],[0.005796090234071,-0.015584326349199,0.20303590595722]],[[-0.19097194075584,0.041734267026186,-0.037357036024332],[-0.0033512092195451,-0.0099068824201822,0.029760699719191],[0.13086192309856,0.0051860418170691,0.049899607896805]],[[0.23175187408924,-0.021598927676678,-0.072133526206017],[-0.022996312007308,-0.061425786465406,-0.11820014566183],[0.15037757158279,-0.0076733445748687,-0.011066680774093]],[[0.050136487931013,-0.06023284047842,0.049472838640213],[0.070810325443745,-0.0059723653830588,-0.051702186465263],[0.146254748106,-0.1378373503685,-0.23783560097218]],[[0.067969411611557,-0.0032429997809231,0.010518003255129],[0.03304473310709,-0.043823633342981,0.10022451728582],[-0.12560780346394,0.042397458106279,0.059015057981014]],[[0.026109838858247,0.056980829685926,-0.085200592875481],[-0.18858663737774,0.074524089694023,-0.0015971011016518],[0.17018765211105,-0.056668344885111,0.0037613993044943]],[[0.18580624461174,-0.16616608202457,0.13345402479172],[0.052492402493954,-0.055168263614178,0.020086374133825],[-0.076519638299942,0.029812080785632,0.039413135498762]],[[0.10598639398813,-0.13221722841263,-0.0076899463310838],[-0.0015589465619996,0.094312757253647,-0.080193668603897],[-0.0036078239791095,0.045732967555523,-0.053856175392866]],[[0.045766592025757,-0.21408292651176,0.034709434956312],[-0.0090526528656483,0.10615460574627,0.034562010318041],[0.20909559726715,0.034457098692656,0.035063661634922]],[[-0.047260656952858,-0.028334479779005,-0.087362475693226],[0.033187258988619,0.21632598340511,-0.13910341262817],[-0.1372963488102,0.15977327525616,0.13802409172058]],[[-0.083500929176807,0.15526008605957,0.066006138920784],[0.1425618827343,-0.084881283342838,-0.072329394519329],[-0.022590387612581,-0.04754651710391,0.090733923017979]],[[0.080238729715347,0.0043278462253511,-0.0032910453155637],[0.041105482727289,-0.051255576312542,0.091506257653236],[-0.052536837756634,-0.080798231065273,-0.14201326668262]],[[0.019837381318212,-0.15616984665394,-0.026162169873714],[0.1061846986413,-0.25704190135002,-0.19357199966908],[0.11523664742708,-0.13539259135723,-0.0039303959347308]],[[-0.23314934968948,0.24514804780483,-0.079478710889816],[-0.26001849770546,0.02797969430685,0.052114371210337],[-0.22578302025795,-0.11324280500412,0.022315008565784]],[[-0.058092374354601,0.01495655067265,-0.077452659606934],[0.18378275632858,0.021697530522943,0.045097455382347],[-0.072461113333702,-0.10246053338051,0.01035691704601]],[[0.088601864874363,-0.018139503896236,-0.024477787315845],[0.00050328939687461,-0.062904305756092,0.048697236925364],[-0.060187146067619,0.040889248251915,0.12993913888931]],[[0.092890866100788,0.016151316463947,0.02144649811089],[0.0073330136947334,-0.059458337724209,0.076832354068756],[-0.11902871727943,-0.006111687514931,0.027559915557504]],[[0.029498048126698,-0.044678330421448,-0.11494429409504],[-0.16833357512951,-0.003666419768706,0.1439096480608],[0.00025548972189426,0.12399270385504,0.04383796453476]],[[-0.039691753685474,0.04595535993576,-0.11660875380039],[-0.1184679120779,-0.15012393891811,0.046263761818409],[-0.10600683838129,0.014148835092783,0.10540960729122]],[[0.15981778502464,-0.10598789900541,-0.028533101081848],[0.090812392532825,-0.028624225407839,0.026234284043312],[0.041844140738249,-0.014087286777794,0.018540827557445]]],[[[0.3061708509922,0.08046717941761,0.064999610185623],[-0.083281740546227,-0.23659464716911,-0.022183472290635],[0.206492587924,-0.051125068217516,0.052957866340876]],[[-0.13312904536724,0.026499247178435,-0.0039304285310209],[0.026193285360932,-0.097626984119415,-0.032629042863846],[0.087114952504635,0.14137135446072,0.053650084882975]],[[0.028247382491827,-0.00069848436396569,0.078083463013172],[-0.028953926637769,0.01749892346561,0.11354131251574],[-0.083949707448483,0.052995186299086,0.08648706972599]],[[0.068103410303593,0.092249125242233,0.067078821361065],[0.012030498124659,0.12175591289997,0.075304448604584],[-0.14114551246166,0.054507602006197,0.079597607254982]],[[-0.010418142192066,0.0097558554261923,-0.040912378579378],[0.16226491332054,0.065824441611767,0.12866435945034],[0.071398384869099,-0.023002963513136,-0.055168099701405]],[[-0.016757989302278,-0.096743866801262,0.11626891791821],[0.013611116446555,-0.071251451969147,-0.03307968378067],[-0.048304006457329,-0.073167704045773,-0.048267416656017]],[[0.02306822873652,-0.043385315686464,0.1167416498065],[0.023149246349931,-0.0628342628479,0.019160656258464],[0.037061251699924,0.036373149603605,0.0069322120398283]],[[0.19396644830704,0.058737486600876,-0.087506510317326],[0.058081313967705,-0.13243566453457,0.017226656898856],[0.09068837761879,0.025179203599691,-0.037386942654848]],[[-0.049185518175364,0.0372019931674,-0.016836483031511],[-0.095406763255596,-0.001544404309243,0.033743903040886],[-0.048604641109705,0.0080981282517314,-0.011920055374503]],[[-0.081345111131668,-0.12272982299328,-0.046356149017811],[0.14345502853394,0.12434054911137,0.12375631183386],[-0.013807875104249,-0.0043840170837939,0.028058905154467]],[[-0.15785025060177,-0.1307730525732,0.12319026142359],[-0.028640117496252,0.091372013092041,-0.012704919092357],[-0.050888620316982,-0.11997678130865,-0.091754905879498]],[[0.19270472228527,0.070457376539707,-0.048822212964296],[-0.062654845416546,-0.13123179972172,-0.052571009844542],[-0.077036708593369,-0.068343318998814,-0.15300641953945]],[[0.17359320819378,-0.0097849406301975,0.1387447565794],[-0.11675994098186,-0.026093237102032,-0.0046789962798357],[-0.018054397776723,0.082529291510582,0.06384389847517]],[[-0.10364828258753,-0.010191299021244,0.023935832083225],[0.049334358423948,0.045652344822884,0.025009544566274],[0.030660193413496,0.067218564450741,-0.1344600468874]],[[-0.011965346522629,0.067709632217884,-0.016942409798503],[0.0015789023600519,0.034113075584173,-0.11815568804741],[0.069768831133842,-0.072467871010303,-0.13346292078495]],[[-0.02775607816875,0.099944904446602,0.025097500532866],[-0.054220136255026,0.023754050955176,0.10978574305773],[0.21361318230629,-0.05863868817687,-0.02398594841361]],[[-0.11815746873617,0.045543752610683,0.17941543459892],[0.094898149371147,-0.056603390723467,0.12750655412674],[-0.19073031842709,-0.067317306995392,0.27779763936996]],[[-0.26429054141045,0.039512626826763,-0.11504107713699],[-0.11042954027653,0.066807709634304,-0.010535756126046],[-0.14669734239578,-0.11275725066662,0.013004214502871]],[[-0.21002353727818,-0.14963115751743,-0.093206383287907],[-0.16445656120777,-0.03993333876133,0.02587316185236],[0.007355289068073,0.09049016982317,-0.099183425307274]],[[0.089050225913525,-0.083061777055264,-0.011480441316962],[0.0061306902207434,0.061298031359911,0.037583000957966],[-0.04802493005991,0.029981670901179,-0.086239069700241]],[[-0.017520034685731,0.016527809202671,0.045703165233135],[0.058414109051228,0.082120224833488,0.073527783155441],[-0.15419845283031,-0.33356949687004,0.13344329595566]],[[-0.11496891826391,0.10699794441462,0.022910699248314],[-0.11951978504658,0.011876207776368,0.019065296277404],[-0.13938544690609,-0.019507920369506,0.0050930022262037]],[[-0.087294846773148,-0.017325770109892,0.042138863354921],[-0.23531968891621,0.097895681858063,-0.01414417847991],[-0.16524310410023,0.083523638546467,-0.10814106464386]],[[-0.015169685706496,0.027438908815384,-0.0041465084068477],[-0.13277678191662,0.0051424182020128,0.055326949805021],[-0.13084384799004,-0.029259964823723,0.095540076494217]],[[0.11759222298861,0.33806484937668,-0.029703915119171],[0.069559313356876,0.09335321187973,-0.048706814646721],[-0.048406448215246,-0.090588927268982,0.0026791845448315]],[[-0.049198761582375,-0.0021937754936516,-0.053753443062305],[0.066712714731693,-0.031277976930141,0.092156827449799],[-0.073430478572845,0.16728973388672,0.081078819930553]],[[-0.059868723154068,0.045767527073622,-0.10454089939594],[-0.14777161180973,-0.13723228871822,-0.11790689080954],[-0.11261723935604,-0.035460196435452,-0.17922250926495]],[[-0.044265199452639,0.015632281079888,0.071422174572945],[-0.023845102638006,-0.079073265194893,0.019782889634371],[7.1965208917391e-05,0.12842528522015,0.13538545370102]],[[0.082990400493145,0.096509471535683,0.023515744134784],[-0.011214780621231,0.051857210695744,0.090234689414501],[-0.068401768803596,-0.019047632813454,-0.17467887699604]],[[0.0013371101813391,0.11277289688587,0.1149412766099],[-0.12753780186176,0.055036194622517,0.043607998639345],[-0.28208369016647,-0.12285871803761,-0.04156593978405]],[[-0.014541080221534,-0.029826229438186,-0.13652604818344],[-0.063666597008705,-0.005501511041075,-0.043090175837278],[-0.11566918343306,-0.13602215051651,-0.033466320484877]],[[-0.008866423740983,0.024487715214491,-0.1310115903616],[0.045153621584177,0.095335625112057,0.2016891092062],[0.068282559514046,0.0089586097747087,-0.053309611976147]],[[0.057050686329603,-0.062764137983322,-0.077233634889126],[-0.02663491293788,-0.17662887275219,0.14240930974483],[0.10416575521231,0.061047580093145,-0.043459881097078]],[[-0.012085089460015,-0.0014892027247697,0.061758704483509],[-0.099172845482826,-0.011590621434152,-0.027296395972371],[-0.12639644742012,-0.011373379267752,0.060484174638987]],[[-0.096494898200035,0.12616558372974,0.16021408140659],[0.12630975246429,9.5422183221672e-05,0.050317514687777],[0.048890445381403,0.01923318579793,0.12355405837297]],[[-0.021810434758663,0.040624167770147,0.011043344624341],[-0.011246706359088,0.085240408778191,0.007700567599386],[0.10074872523546,-0.0043803188018501,-0.12518306076527]],[[-0.019450426101685,0.12559258937836,-0.036964062601328],[-0.1430392563343,-0.0054029007442296,-0.13925141096115],[-0.1423963457346,0.093734964728355,0.035512883216143]],[[-0.051888111978769,0.028379024937749,0.070142865180969],[-0.12126228958368,-0.094365976750851,-0.06514598429203],[0.24159377813339,-0.0068704481236637,0.023980701342225]],[[0.056968826800585,0.20146787166595,0.12254756689072],[0.036381289362907,0.10560700297356,0.012715771794319],[-0.15004283189774,-0.15557262301445,-0.14984771609306]],[[0.071825169026852,-0.1166925355792,0.2035578340292],[0.083251237869263,0.045275866985321,0.11333052814007],[-0.018381301313639,-0.073255218565464,-0.096011213958263]],[[-0.14379838109016,0.074617624282837,0.16917100548744],[0.024861583486199,0.029203297570348,0.0045491592027247],[0.057623893022537,0.017761040478945,-0.060762781649828]],[[0.047773513942957,0.20415115356445,0.012286247685552],[0.054038867354393,0.099280588328838,0.0074389050714672],[0.068077020347118,0.11186081171036,0.11952609568834]],[[0.12091233581305,0.019054496660829,-0.12534561753273],[-0.11785450577736,-0.095397040247917,0.035929288715124],[-0.18231353163719,-0.00032538967207074,-0.091487638652325]],[[-0.00040541312773712,-0.0068285358138382,-0.092269897460938],[0.047548022121191,0.034214276820421,-0.023192156106234],[-0.012428864836693,0.0036741686053574,-0.13285267353058]],[[0.055352471768856,-0.077716380357742,0.093033164739609],[0.05288241058588,-0.12877789139748,-0.12914530932903],[0.064402155578136,-0.0079970983788371,-0.22090029716492]],[[-0.011037768796086,0.11753446608782,-0.031588643789291],[-0.0022878884337842,0.12962412834167,-0.081741504371166],[0.033668432384729,-0.043335817754269,-0.11591879278421]],[[0.085343636572361,0.056985907256603,-0.022965155541897],[0.0077659450471401,-0.16230221092701,-0.0085191978141665],[0.1156308427453,0.20235015451908,0.05884575843811]],[[0.0083302957937121,0.038623917847872,0.065457083284855],[-0.028301209211349,-0.002642190316692,-0.039200939238071],[-0.0070265303365886,-0.13452625274658,0.11509925127029]],[[0.0041949995793402,0.02736665867269,0.1174246147275],[-0.062363103032112,0.037448141723871,0.031554326415062],[-0.0085140895098448,-0.18004716932774,-0.051680210977793]],[[0.024407882243395,0.063106343150139,0.011290886439383],[0.066201597452164,-0.015382905490696,-0.0021947752684355],[0.0053815799765289,0.10225033015013,0.066577188670635]],[[-0.26552763581276,-0.010411866009235,0.11277517676353],[-0.074803039431572,-0.12650792300701,0.067788653075695],[0.01964302547276,0.11113616079092,0.027868283912539]],[[-0.069414898753166,-0.027655318379402,-0.27489230036736],[-0.025540255010128,0.1778177022934,0.034923247992992],[0.058475077152252,-0.087591171264648,-0.10867157578468]],[[0.001131069730036,-0.12717847526073,0.045723222196102],[0.0014612954109907,-0.037251595407724,0.12538933753967],[0.030057834461331,0.008243128657341,0.20608940720558]],[[0.18842919170856,-0.047776330262423,-0.12217005342245],[0.098544575273991,0.023235097527504,0.11662552505732],[-0.040714398026466,0.0447908192873,-0.028774354606867]],[[0.1099251806736,0.029436677694321,-0.054386533796787],[0.029629150405526,-0.040738858282566,-0.015655716881156],[-0.23304897546768,-0.034181836992502,0.10998099297285]],[[-0.11044532805681,-0.059558089822531,-0.08062869310379],[-0.05214087292552,0.13231758773327,-0.027534361928701],[-0.038215905427933,-0.021706642583013,-0.045416701585054]],[[0.099623054265976,0.13359253108501,0.070341154932976],[-0.04945021495223,0.016763646155596,-0.06200822815299],[0.028376257047057,0.010950247757137,-0.13845044374466]],[[0.066189542412758,0.043738979846239,0.11558952182531],[0.12660767138004,-0.009876262396574,-0.13779582083225],[0.11360189318657,-0.037331365048885,-0.11058577895164]],[[-0.0083391880616546,0.046832598745823,0.1140258461237],[-0.055734947323799,-0.044042650610209,-0.026419810950756],[-0.019117156043649,-0.02509718760848,0.015145163983107]],[[0.081589542329311,0.031040551140904,0.053875260055065],[0.01344717014581,-0.0091173481196165,-0.093372836709023],[0.28255355358124,-0.206867441535,0.015103909187019]],[[-0.20655016601086,0.037570849061012,-0.021166088059545],[-0.029028790071607,0.047709371894598,0.048446621745825],[-0.081446580588818,0.012915894389153,-0.12950010597706]],[[0.070158250629902,0.06261170655489,0.10325566679239],[-0.13159690797329,-0.053386714309454,0.031662240624428],[-0.32385465502739,-0.20847690105438,0.055349782109261]],[[0.013214596547186,0.087906084954739,0.0073846764862537],[0.055933889001608,-0.15195097029209,0.017841378226876],[-0.052828125655651,-0.0068796188570559,0.039291046559811]],[[0.042604468762875,-0.21976847946644,-0.0019579252693802],[-0.1650423258543,-0.055839568376541,-0.0021421939600259],[0.023365942761302,-0.096263103187084,-0.057945352047682]]],[[[-0.073653854429722,-0.019766362383962,0.073610782623291],[-0.041685201227665,-0.033754970878363,0.016014805063605],[-0.016492087393999,-0.027313902974129,-0.059138771146536]],[[-0.051233425736427,0.034604605287313,-0.075612232089043],[0.11682847887278,-0.024745490401983,-0.0597815066576],[0.0038052527233958,0.0059807458892465,0.11282415688038]],[[0.019299460574985,0.12931980192661,0.12632796168327],[-0.074521601200104,-0.17049621045589,0.039323460310698],[-0.10637940466404,0.028342187404633,0.14474534988403]],[[-0.070344597101212,-0.078272834420204,-0.091957561671734],[0.035164754837751,0.032006528228521,0.12367704510689],[-0.01044431142509,-0.059825945645571,-0.19641578197479]],[[0.054237142205238,-0.060804206877947,0.089689031243324],[0.061885967850685,-0.04000449180603,0.12340118736029],[-0.10112827271223,-0.20032911002636,-0.18077710270882]],[[0.043207183480263,0.11673387885094,-0.0033081804867834],[-0.050530504435301,0.026083461940289,0.11422965675592],[-0.023494943976402,0.04147057980299,-0.015159451402724]],[[-0.061266295611858,0.0071432539261878,-0.0063253538683057],[-0.099546931684017,-0.036905314773321,-0.023238258436322],[-0.099485360085964,-0.079315543174744,-0.076388239860535]],[[-0.032124426215887,-0.049028433859348,-0.18682809174061],[0.0086822584271431,0.018374212086201,0.11265831440687],[0.073947496712208,0.13527390360832,-0.056561563163996]],[[0.040658675134182,-0.077152386307716,-0.065242193639278],[0.018696319311857,0.029760701581836,-0.090562395751476],[-0.024504624307156,-0.05123321339488,0.057242155075073]],[[0.071485035121441,0.11284938454628,0.20382933318615],[0.0041836816817522,-0.064557582139969,-0.022627666592598],[-0.091093719005585,-0.074222110211849,0.22672402858734]],[[0.010952398180962,0.011528740637004,-0.10880932211876],[0.15260949730873,0.085468508303165,-0.013453191146255],[0.027175726369023,0.022501016035676,0.072946764528751]],[[-0.056235484778881,-0.1077209636569,0.072479292750359],[-0.051436364650726,-0.19732543826103,-0.07801104336977],[-0.096294738352299,-0.076007522642612,0.036046121269464]],[[-0.07824882119894,-0.14648596942425,-0.087320476770401],[0.066496752202511,-0.13982933759689,0.021781090646982],[0.16466575860977,-0.017032522708178,-0.11561158299446]],[[-0.040740169584751,0.046695288270712,-0.10446715354919],[0.062493145465851,0.050827484577894,0.081441953778267],[0.029966589063406,0.046671163290739,0.1918767541647]],[[-0.14330360293388,-0.1779073625803,-0.27846392989159],[-0.029047379270196,-0.010047408752143,-0.084838196635246],[-0.12454741448164,0.073578685522079,0.082545153796673]],[[0.039260964840651,0.00041230535134673,0.007432040758431],[0.10798911750317,0.1489469408989,0.15221498906612],[0.012707053683698,0.014523141086102,-0.02456770837307]],[[0.044147931039333,-0.028645323589444,-0.13251359760761],[-0.24227713048458,-0.10718359053135,0.10818013548851],[0.010229118168354,-0.03831547871232,-0.047166731208563]],[[-0.0062924576923251,-0.11816806346178,0.0072485557757318],[0.058331489562988,0.025970155373216,0.04390960931778],[-0.038543552160263,0.042244836688042,-0.19186013936996]],[[-0.11446446925402,-0.091101922094822,-0.019228124991059],[-0.087919041514397,0.061006214469671,0.20687633752823],[0.045872513204813,0.00061819684924558,0.12218563258648]],[[0.099263235926628,0.0085164280608296,0.11130005121231],[0.13055059313774,-0.060158673673868,-0.24179366230965],[0.043333247303963,0.04108963534236,0.054722845554352]],[[0.1086650416255,0.071546301245689,0.036014374345541],[-0.097502954304218,0.10212282091379,0.046118892729282],[-0.17207130789757,-0.11025067418814,-0.17550498247147]],[[-0.089522540569305,-0.00054436339996755,0.2048188149929],[-0.042577680200338,0.10625648498535,0.031668540090322],[0.0020877020433545,0.085971668362617,0.24155616760254]],[[-0.089194849133492,-0.17332737147808,0.027458962053061],[-0.017548577859998,-0.0019693248905241,0.13843604922295],[0.07762073725462,0.023562584072351,0.021343238651752]],[[-0.16167786717415,-0.011866322718561,0.092481821775436],[-0.075551398098469,-0.027268771082163,0.16174718737602],[0.037483092397451,0.026687985286117,0.019551059231162]],[[0.2005395591259,0.011099671944976,0.090870752930641],[-0.17723567783833,-0.19430476427078,0.060052387416363],[-0.055174004286528,-0.14849729835987,-0.24399717152119]],[[0.056972429156303,0.16013821959496,0.19124248623848],[-0.048262618482113,-0.075210690498352,-0.045069485902786],[-0.17608289420605,-0.16640025377274,-0.23945994675159]],[[0.051519632339478,0.10301119834185,-0.033228356391191],[0.032028395682573,-0.072007648646832,0.078907199203968],[0.081789009273052,-0.017236676067114,0.0080051347613335]],[[-0.21017996966839,-0.078258842229843,0.0070791891776025],[-0.24358171224594,-0.034783814102411,0.070955134928226],[-0.014496089890599,-0.013998087495565,0.061832398176193]],[[-0.08677265048027,0.01072090677917,0.020352924242616],[0.009618884883821,0.020881453529,-0.020393457263708],[0.15156437456608,0.00018775851640385,-0.12315203249454]],[[-0.12582947313786,-0.014231492765248,0.032743271440268],[0.072476372122765,0.015895657241344,0.017419485375285],[0.024573104456067,-0.14515316486359,-0.047311294823885]],[[0.14735813438892,0.22065149247646,-0.020479524508119],[-0.043513886630535,-0.1711492985487,-0.098537944257259],[0.076873674988747,-0.096012085676193,0.053684242069721]],[[0.030105613172054,0.015691356733441,0.023644227534533],[-0.04956478998065,0.045641034841537,-0.055866215378046],[-0.041213810443878,0.16154789924622,0.29564073681831]],[[0.0075810584239662,-0.039172310382128,-0.010899412445724],[0.1780756264925,0.05469649285078,0.070518635213375],[-0.085835874080658,-0.025613898411393,-0.15749269723892]],[[0.06388857960701,0.0010942947119474,-0.090866573154926],[-0.12024638056755,-0.15983486175537,-0.074831396341324],[-0.10496591776609,-0.080843918025494,-0.018791038542986]],[[-0.0035071366000921,-0.076134577393532,0.13931208848953],[0.066647984087467,-0.011596578173339,-0.080943137407303],[-0.046641517430544,-0.060660112649202,-0.15033386647701]],[[-0.16190658509731,-0.0057104816660285,-0.027629401534796],[-0.065390102565289,-0.066095091402531,-0.0092871421948075],[0.0011294310679659,0.09748612344265,0.10289546847343]],[[0.013778296299279,-0.10266524553299,0.24017478525639],[-0.048087853938341,-0.097564391791821,-0.067068599164486],[0.13036268949509,-0.047504298388958,0.049437239766121]],[[-0.065216541290283,-0.14403969049454,0.021326251327991],[0.11800607293844,0.0089675141498446,-0.097965344786644],[0.15956194698811,0.1017123311758,0.033866506069899]],[[-0.1178529933095,0.033662080764771,0.15295901894569],[0.043847065418959,-0.078152172267437,0.035427905619144],[0.014793813228607,0.005266756284982,0.02932601980865]],[[0.048729412257671,0.039328202605247,0.077487848699093],[0.021176211535931,-0.0034363984595984,0.042903102934361],[-0.013363551348448,0.043437507003546,0.01516011916101]],[[0.020151095464826,-0.098837979137897,-0.096849016845226],[0.053054660558701,0.15841597318649,-0.0035011656582355],[-0.085735894739628,-0.21100915968418,-0.064013496041298]],[[-0.087699398398399,-0.10518824309111,-0.03689743578434],[0.046434063464403,-0.00088243663776666,0.020691005513072],[0.06301774084568,0.013771235011518,-0.048303857445717]],[[0.018457286059856,0.071662344038486,0.035698592662811],[0.032588366419077,0.13800491392612,0.27126210927963],[-0.031346946954727,0.051612187176943,-0.11816918849945]],[[-0.072135381400585,-0.042502511292696,0.080203771591187],[-0.0049274042248726,-0.12526871263981,0.011761318892241],[-0.016281325370073,0.049328327178955,0.010225122794509]],[[-0.030890831723809,0.029024992138147,-0.065676093101501],[0.01581066660583,0.10591039806604,0.049496300518513],[-0.050107542425394,0.010231655091047,0.13699793815613]],[[-0.15773192048073,-0.066633850336075,-0.0020191862713546],[-0.16169223189354,-0.08245825022459,0.080032251775265],[-0.055527038872242,0.056016393005848,0.094837844371796]],[[0.078528575599194,-0.08480080217123,-0.045228570699692],[0.013092216104269,0.090030692517757,-0.065950818359852],[0.074851170182228,0.12382340431213,-0.1420174986124]],[[0.01693413965404,-0.050482619553804,0.043847694993019],[0.0012732740724459,0.057830478996038,0.045354031026363],[-0.023653265088797,0.0032281649764627,-0.059710472822189]],[[0.016803830862045,-0.076548233628273,-0.019084060564637],[-0.024146411567926,-0.22896626591682,0.052270695567131],[0.16694182157516,0.036244325339794,0.012497037649155]],[[-0.012332118116319,0.014097430743277,0.060223523527384],[-0.11627563089132,-0.067012645304203,-0.026128491386771],[0.049951873719692,0.019012786448002,0.074390575289726]],[[-0.053424470126629,0.094956450164318,0.13540931046009],[0.046924218535423,-0.043751712888479,-0.14401699602604],[0.01303196977824,-0.1081024184823,0.027963533997536]],[[-0.033871840685606,0.21180337667465,-0.10647140443325],[0.1477192491293,0.10265411436558,-0.0031384835019708],[-0.10085669904947,-0.25268283486366,-0.03614204749465]],[[-0.072022743523121,-0.09919261932373,-0.20938666164875],[0.0026222006417811,-0.035355914384127,0.033791813999414],[0.12372051179409,-0.036735575646162,0.0024324213154614]],[[-0.018965002149343,0.0016820935998112,0.096533767879009],[0.028545686975121,-0.073998093605042,0.019029857590795],[0.021478855982423,0.14758224785328,0.044524434953928]],[[-0.041487365961075,-0.093846768140793,-0.23735049366951],[-0.022204656153917,-0.076846204698086,-0.030603535473347],[0.087105892598629,0.030061349272728,0.14845126867294]],[[-0.01743633300066,0.027428707107902,-0.084990471601486],[0.051905203610659,-0.019383830949664,0.075524143874645],[0.072460651397705,0.05389316380024,0.023088930174708]],[[-0.033532381057739,-0.16925129294395,0.094577670097351],[-0.14903375506401,-0.029901264235377,-0.025885449722409],[-0.015465787611902,-0.11726876348257,0.11391949653625]],[[-0.039908941835165,-0.0045439661480486,-0.057881183922291],[-0.21119394898415,-0.11908157914877,0.12462108582258],[-0.12057765573263,-0.047816641628742,0.18112720549107]],[[0.14999602735043,-0.052235841751099,-0.097342774271965],[-0.0077571687288582,-0.044466122984886,-0.1245529577136],[0.14752066135406,0.16209460794926,4.668330802815e-05]],[[0.13216696679592,0.094202481210232,0.027451263740659],[0.113589592278,-0.00076413090573624,0.0072263600304723],[-0.13968320190907,0.13782729208469,-0.029770493507385]],[[-0.12873376905918,-0.081293895840645,-0.15609732270241],[0.01206565182656,-0.023205604404211,0.075753316283226],[-0.019147332757711,0.0010487920371816,0.064531840384007]],[[0.039120174944401,-0.012472024187446,-0.25842425227165],[-0.15910944342613,0.086134299635887,-0.053409464657307],[0.010123179294169,0.17113648355007,0.028592322021723]],[[0.077433615922928,-0.04354353249073,-0.0033527589403093],[-0.058470666408539,-0.10654734820127,0.12634979188442],[-0.011018339544535,-0.014121906831861,-0.19328679144382]],[[-0.11069313436747,0.074498146772385,-0.17063881456852],[0.21570730209351,0.033250086009502,-0.055972687900066],[-0.16902732849121,-0.19827525317669,-0.029624279588461]]],[[[-0.020757850259542,0.13421826064587,0.11539151519537],[-0.13107737898827,-0.055801879614592,-0.13615383207798],[-0.038039408624172,0.10003888607025,-0.027347400784492]],[[0.036554910242558,-0.050377767533064,0.18074125051498],[-0.043281197547913,0.066416934132576,0.073775053024292],[0.10080446302891,-0.017832983285189,-0.10012317448854]],[[-0.13877408206463,0.090806052088737,0.13087227940559],[-0.13961207866669,-0.035227242857218,0.01417497266084],[-0.047008562833071,0.085800550878048,-0.10640938580036]],[[0.0069848615676165,0.042871542274952,-0.2050166875124],[-0.065932460129261,0.014798392541707,-0.18039794266224],[-0.024752171710134,0.053364258259535,-0.11782389879227]],[[0.01404092181474,-0.09590308368206,0.030469918623567],[-0.025576394051313,-0.032699536532164,-0.11130212247372],[0.066406548023224,-0.12171191722155,0.033108975738287]],[[-0.15324160456657,0.049913439899683,-0.1743006259203],[-0.027706598863006,-0.022611914202571,-0.21715769171715],[0.0087088458240032,0.12326353788376,-0.11981388926506]],[[-0.065873526036739,-0.11100652068853,0.11567813158035],[0.0031921330373734,-0.10751822590828,0.14224976301193],[0.024052124470472,-0.1257414072752,0.0075256312265992]],[[-0.0044201915152371,0.044045951217413,-0.026634594425559],[-0.069461897015572,-0.023374628275633,0.0035820414777845],[0.015820877626538,-0.018257446587086,-0.092415869235992]],[[0.036057285964489,-0.030443243682384,-0.055602163076401],[0.018219266086817,-0.068374879658222,-0.007374616805464],[-0.046327974647284,0.12547735869884,0.0011473910417408]],[[-0.0062461555935442,-0.050531085580587,-0.034013479948044],[-0.0054625361226499,-0.0506098754704,-0.098561264574528],[-0.054984964430332,0.016532056033611,-0.11213061213493]],[[-0.076584294438362,0.1359381377697,-0.0017019468359649],[0.051615830510855,0.068652801215649,-0.060567196458578],[-7.3174574936274e-05,-0.0021998165175319,-0.10483976453543]],[[-0.014737439341843,0.049673546105623,-0.051836736500263],[-0.043739434331656,0.0089287534356117,0.0070062065497041],[-0.09368360042572,-0.18385368585587,0.068677961826324]],[[-0.0010540664661676,-0.12898017466068,-0.0683953166008],[-0.0023052589967847,0.0051279915496707,-0.065969869494438],[0.0076727578416467,-0.011195463128388,-0.082057222723961]],[[0.12230551987886,0.029887774959207,-0.016128364950418],[0.0089934095740318,0.01354621630162,0.1257591843605],[0.034179337322712,-0.080682836472988,0.085552483797073]],[[0.079343840479851,-0.011473109014332,-0.098179563879967],[-0.10973431915045,0.044502660632133,0.011873575858772],[0.12938347458839,-0.20917059481144,0.071312822401524]],[[0.02761947363615,0.031311996281147,0.06616173684597],[0.0461092479527,-0.057422142475843,0.046819444745779],[0.042854726314545,0.064927510917187,0.039972636848688]],[[0.17590296268463,-0.060498479753733,0.061810337007046],[-0.030951671302319,0.10306739062071,0.041395120322704],[-0.11375489830971,0.081295348703861,0.24532087147236]],[[0.018959498032928,-0.010465567931533,-0.054626986384392],[0.044795647263527,-0.025539718568325,-0.073118418455124],[-0.0074178702197969,-0.049415223300457,0.018660668283701]],[[0.066923148930073,0.045593742281199,-0.0063848257996142],[0.054473616182804,-0.0055149886757135,0.019021043553948],[0.031353466212749,-0.044756814837456,0.019241120666265]],[[0.01593179628253,-0.0061382129788399,0.085647411644459],[-0.026401750743389,0.0056701968424022,0.07303424924612],[-0.032816980034113,0.0036895424127579,-0.12696786224842]],[[0.022923681885004,-0.017620053142309,0.066675297915936],[-0.010732759721577,-0.15088847279549,0.038271475583315],[0.11375921219587,-0.12601156532764,0.060271326452494]],[[0.073592036962509,-0.062017921358347,-0.026792066171765],[0.052776727825403,-0.17894527316093,-0.094248674809933],[-0.11468507349491,0.047612860798836,-0.15884265303612]],[[-0.030503582209349,0.066952206194401,-0.1669078618288],[-0.043298415839672,-0.0089743668213487,-0.088787660002708],[-0.086886882781982,-0.032888073474169,0.04437754675746]],[[-0.016543416306376,0.094878017902374,-0.051993280649185],[-0.086795538663864,0.060984693467617,-0.021752147004008],[-0.20942367613316,-0.01582801900804,0.031985510140657]],[[-0.058048989623785,-0.044301420450211,-0.06104739010334],[-0.043373018503189,0.054907042533159,-0.13128304481506],[0.048659037798643,0.026367526501417,-0.15961526334286]],[[-0.081463053822517,-0.10909204185009,0.053596042096615],[0.046587761491537,-0.069683380424976,0.017806800082326],[0.037531975656748,0.017301578074694,0.057217754423618]],[[0.0055767637677491,0.038894332945347,0.023356823250651],[0.016429286450148,-0.0030046629253775,0.034360758960247],[-0.043294038623571,-0.11004494875669,-0.080412790179253]],[[0.15643714368343,-0.12814131379128,0.11271185427904],[0.037402898073196,-0.028107725083828,-0.16250889003277],[-0.18416272103786,0.038559567183256,-0.17548224329948]],[[-0.035246968269348,0.091807872056961,-0.20591114461422],[-0.072827011346817,0.11129968613386,-0.056830294430256],[-0.022523401305079,-0.06032058596611,0.0062015969306231]],[[-0.056576933711767,-0.035231608897448,-0.19318175315857],[0.022183183580637,0.047288935631514,-0.11127646267414],[-0.0509202927351,-0.025567533448339,-0.073172710835934]],[[-0.042398821562529,0.017925070598722,0.11750584840775],[0.13024243712425,-0.13145050406456,0.18436181545258],[0.02627538330853,-0.068672388792038,0.16301949322224]],[[0.10750959068537,0.014358157292008,-0.048202000558376],[0.068778738379478,0.044322703033686,-0.10196025669575],[0.00039596221176907,-0.19213478267193,0.11044784635305]],[[0.096746385097504,-0.15419618785381,-0.13636763393879],[-0.051443602889776,-0.040419064462185,-0.10118433833122],[-0.032707147300243,-0.10668334364891,0.050012845546007]],[[-0.019388863816857,-0.13007365167141,0.09490655362606],[-0.049019675701857,0.0007221921114251,-0.043940931558609],[0.032049294561148,0.0089610787108541,-0.15238519012928]],[[-0.12086454033852,0.0046255858615041,0.055219311267138],[-0.065540678799152,-0.015887664631009,0.071893818676472],[-0.035232249647379,0.015480005182326,0.072402961552143]],[[0.017535481601954,-0.079766198992729,0.054600708186626],[0.039366323500872,0.063722893595695,-0.042147152125835],[0.05147797241807,-0.024721823632717,-0.17700390517712]],[[-0.14803613722324,0.082270748913288,-0.039501585066319],[-0.0081703066825867,-0.078736886382103,-0.0076986546628177],[0.15172383189201,-0.21305069327354,0.15142484009266]],[[-0.14158298075199,-0.059792708605528,0.12520308792591],[0.10353239625692,-0.0093230614438653,0.11032463610172],[0.13716846704483,-0.053830485790968,-0.0039375177584589]],[[-0.041956607252359,-0.083766803145409,0.022422408685088],[0.024389548227191,0.00076738226925954,0.030856672674417],[0.079829499125481,0.06260159611702,-0.21209804713726]],[[0.058603160083294,-0.099256008863449,0.01457785628736],[-0.023925982415676,-0.12815254926682,-0.090350925922394],[0.082525379955769,-0.091030552983284,0.024611037224531]],[[0.1446481347084,-0.078090734779835,0.053203497081995],[-0.038491174578667,0.028963513672352,-0.010946809314191],[0.088810339570045,0.032065581530333,0.064427137374878]],[[0.077762380242348,-0.04166118055582,0.027935033664107],[0.0080606741830707,-0.20282196998596,0.19970138370991],[0.15326681733131,-0.20326772332191,0.23603819310665]],[[0.056388974189758,-0.065878033638,0.11456503719091],[0.079771868884563,-0.043856862932444,0.059093862771988],[0.0250497572124,-0.0063148764893413,-0.014777704142034]],[[-0.046191174536943,-0.0066262818872929,0.055359702557325],[-0.016259767115116,0.013454901054502,0.017061034217477],[-0.0090360529720783,-0.031585711985826,-0.029140504077077]],[[0.047002743929625,-0.085383608937263,0.077128417789936],[-0.076065264642239,0.0030109349172562,0.043468546122313],[0.0085150375962257,0.056116420775652,-0.10497955977917]],[[-0.03163630887866,-0.067498281598091,0.060521226376295],[0.021181652322412,-0.10918439924717,0.042903013527393],[0.0080546112731099,-0.069265231490135,0.11347411572933]],[[-0.14422644674778,0.026428118348122,-0.091599322855473],[0.10429263114929,-0.025251980870962,0.077410988509655],[0.032867077738047,-0.094211600720882,0.082333780825138]],[[0.0068677184171975,0.022946290671825,0.026592280715704],[0.0095751713961363,-0.077028371393681,0.086117625236511],[-0.067141264677048,-0.20738235116005,-0.13821393251419]],[[-0.02625073865056,0.096245005726814,-0.095263250172138],[-0.00014155800454319,-0.17599499225616,0.0030388673767447],[0.11374764144421,0.011825453490019,-0.016163066029549]],[[-0.019654329866171,-0.095958776772022,-0.073179587721825],[-0.018412733450532,-0.10872807353735,-0.028866436332464],[0.038883749395609,-0.11616315692663,0.10105843096972]],[[-0.036178186535835,-0.019775774329901,0.12494366616011],[0.10039822757244,-0.027227971702814,-0.12772153317928],[0.097278542816639,0.092858731746674,-0.082036226987839]],[[-0.02893316373229,-0.17003659904003,0.12036257982254],[0.11744419485331,-0.2339241951704,0.054754842072725],[0.023161187767982,-0.093225792050362,0.1876936852932]],[[0.017497746273875,0.071533940732479,-0.069021493196487],[-0.14460256695747,-0.037302982062101,-0.00062526570400223],[-0.0098470123484731,-0.033679530024529,0.10824809223413]],[[-0.072618924081326,-0.010638458654284,-0.084080778062344],[0.072912864387035,-0.010336894541979,-0.038811210542917],[-0.026378778740764,0.065277948975563,-0.17990805208683]],[[-0.078603096306324,-0.014323376119137,-0.15138101577759],[0.020808001980186,-0.014450903050601,-0.022908676415682],[-0.085794545710087,0.022797150537372,0.047965731471777]],[[0.064383082091808,-0.13920101523399,0.17484024167061],[0.11321898549795,-0.21168297529221,0.052464462816715],[-0.049549926072359,-0.043079826980829,0.24720022082329]],[[0.013929642736912,0.040053553879261,-0.066630512475967],[-0.14692917466164,-0.02991096675396,-0.056355714797974],[-0.01027709338814,-0.06808515638113,-0.19167506694794]],[[-0.079842448234558,0.079206705093384,-0.072942189872265],[-0.10442842543125,0.015136701986194,-0.034065712243319],[-0.032726984471083,-0.049220517277718,-0.060361709445715]],[[-0.065742276608944,-0.12114153802395,0.13261149823666],[-0.050874251872301,-0.01533991843462,-0.037564393132925],[-0.030884191393852,0.040313027799129,-0.070111058652401]],[[-0.030712831765413,-0.10787334293127,-0.0085717486217618],[0.021485568955541,-0.032923676073551,-0.03553107380867],[0.049295086413622,-0.054056420922279,0.089501865208149]],[[0.13608446717262,-0.14654715359211,0.052903421223164],[-0.055360361933708,-0.17831966280937,-0.021845020353794],[0.03024722635746,-0.010082559660077,-0.036280170083046]],[[0.024214569479227,0.019915454089642,0.1415807902813],[-0.10419809818268,0.083122320473194,0.020829070359468],[-0.047024689614773,-0.16540002822876,-0.091512106359005]],[[-0.0052343849092722,0.0034835184924304,-0.15087901055813],[0.062988884747028,0.09780016541481,-0.0060118879191577],[-0.033787600696087,0.17392891645432,0.12149941921234]],[[-0.18413227796555,0.065627180039883,0.074085831642151],[0.039908859878778,-0.042133677750826,-0.12312299013138],[-0.1124769076705,-0.0046145734377205,-0.086435064673424]]],[[[-0.082041054964066,0.05870446562767,0.061091493815184],[0.11321100592613,0.18439167737961,0.045980423688889],[0.023850187659264,-0.014691777527332,-0.12656301259995]],[[-0.086716167628765,-0.098135255277157,0.085654050111771],[-0.025306437164545,0.037714462727308,-0.077422983944416],[0.10254817456007,0.1332101225853,0.01771760545671]],[[0.16394759714603,0.15664935112,-0.12287141382694],[0.044268373399973,0.049721870571375,0.070399165153503],[-0.2424318343401,-0.025550842285156,0.081576243042946]],[[0.051753271371126,-0.04318330436945,-0.17989599704742],[0.0048728552646935,-0.12076800316572,-0.22079035639763],[0.087338268756866,-0.042395189404488,0.086391821503639]],[[-0.074500516057014,-0.028665641322732,0.09696726500988],[-0.1259303689003,-0.082436174154282,0.068450927734375],[-0.02271668612957,-0.037289619445801,-0.11879039555788]],[[0.040343772619963,-0.088123992085457,-0.013633954338729],[-0.018846536055207,-0.034796342253685,-0.053325712680817],[0.096260577440262,-0.081191390752792,-0.26167339086533]],[[0.09744081646204,0.0040813875384629,-0.15283624827862],[-0.0030662771314383,0.054779332131147,0.15930247306824],[-0.18014308810234,0.0021339952945709,-0.11787488311529]],[[0.014960771426558,-0.093960270285606,0.021958423778415],[0.018845418468118,-0.039531644433737,0.12585984170437],[0.084642648696899,0.066079027950764,0.13054691255093]],[[0.019981820136309,-0.01182203553617,0.027147449553013],[-0.013777569867671,-0.053244341164827,-0.059615913778543],[-0.032369583845139,0.039224456995726,0.096412487328053]],[[-0.050944525748491,-0.027221010997891,0.088261052966118],[-0.063173443078995,0.019688928499818,-0.070774793624878],[-0.12173353135586,0.056336779147387,0.081017635762691]],[[-0.16444995999336,-0.030022595077753,0.069806814193726],[0.10456891357899,0.0068781399168074,0.086370475590229],[-0.0042044832371175,0.025783868506551,0.14626859128475]],[[7.5631629442796e-05,-0.080874986946583,-0.085939504206181],[-0.025680053979158,0.059337619692087,0.057703979313374],[0.097669042646885,-0.049771193414927,-0.060186594724655]],[[0.059022821485996,0.12552873790264,-0.073179438710213],[-0.090561427175999,-0.061275396496058,0.13282297551632],[-0.10782957822084,-0.17474856972694,0.066310375928879]],[[0.094346508383751,-0.034416262060404,0.015658840537071],[0.077239863574505,-0.0051681962795556,0.048677038401365],[0.0080863479524851,-0.026721529662609,0.095178969204426]],[[-0.042560677975416,-0.065025977790356,-0.052738565951586],[0.19015948474407,0.019518589600921,0.032134365290403],[0.08076598495245,-0.078946977853775,0.016968224197626]],[[0.12523719668388,0.093024335801601,-0.06248139962554],[0.069744579493999,-0.048710200935602,-0.088336974382401],[0.17333140969276,0.047720100730658,0.045611821115017]],[[-0.061328545212746,0.13260142505169,-0.085288278758526],[0.19492097198963,0.083910651504993,-0.15225212275982],[-0.018899265676737,-0.146275177598,-0.1234345883131]],[[0.10091722756624,0.036150600761175,-0.060975953936577],[-0.10078573971987,0.077668733894825,-0.044419497251511],[-0.041702076792717,-0.082395628094673,-0.26836398243904]],[[0.17840404808521,0.051198124885559,-0.099486887454987],[-0.033929269760847,-0.084788106381893,-0.11073237657547],[-0.22108682990074,0.037766195833683,-0.1247615814209]],[[-0.1166565194726,0.10904993861914,-0.09864779561758],[-0.020980723202229,0.049833029508591,-0.081453092396259],[-0.044644117355347,-0.079980298876762,0.0084036262705922]],[[0.077184662222862,0.039244271814823,-0.073148615658283],[0.0064894892275333,-0.19787134230137,-0.21821822226048],[-0.026830466464162,-0.013702362775803,0.11742559075356]],[[0.022271675989032,-0.0076481499709189,0.097323887050152],[-0.086082808673382,-0.053037028759718,-0.13939541578293],[0.12754152715206,0.14515313506126,0.089771568775177]],[[-0.10659195482731,-0.16066575050354,-0.059145223349333],[0.0077954712323844,-0.077884413301945,-0.013208293356001],[0.096709467470646,0.065863840281963,0.067412614822388]],[[0.040894597768784,0.034370593726635,-0.0052055022679269],[0.00082930747885257,-0.067700192332268,-0.15886205434799],[0.03076926805079,0.028935795649886,0.069064997136593]],[[-0.040783669799566,-0.024929156526923,0.081040441989899],[0.045282669365406,0.019434640184045,-0.070332184433937],[0.052054688334465,-0.15049935877323,-0.14011795818806]],[[0.09465679526329,0.15309889614582,0.021626548841596],[-0.17131820321083,0.06966146081686,0.059640999883413],[-0.084764093160629,-0.044053792953491,0.10523329675198]],[[-0.14737649261951,-0.036538675427437,-0.040098205208778],[-0.012388969771564,-0.054544653743505,0.16803127527237],[0.10513188689947,-0.05517091602087,-0.042641457170248]],[[-0.064655803143978,-0.068227700889111,0.085026152431965],[0.048322774469852,-0.036569312214851,0.10761091113091],[-0.031829718500376,-0.088957540690899,-0.10124067217112]],[[-0.057661511003971,-0.14490887522697,-0.0044881775975227],[-0.010179340839386,0.14970223605633,0.00068906607339159],[-0.25722858309746,-0.093415141105652,0.16998808085918]],[[-0.0079160546883941,0.023379741236567,-0.15865753591061],[0.059564143419266,-0.17476172745228,-0.056106716394424],[0.16112622618675,0.087346814572811,-0.031138064339757]],[[-0.15001453459263,-0.046248108148575,-0.086922764778137],[0.0036130060907453,0.087678305804729,0.064758382737637],[0.0032644304446876,0.038220781832933,-0.0040483218617737]],[[0.086219370365143,-0.17843471467495,-0.0026038757059723],[0.014430554583669,-0.066334262490273,-0.093489959836006],[-0.007843398489058,0.080774396657944,0.10356143116951]],[[0.15496073663235,0.050431650131941,0.086873918771744],[-0.089369803667068,-0.11267055571079,-0.22980315983295],[-0.12091819196939,-0.054096192121506,0.019455378875136]],[[-0.027663448825479,-0.054440420120955,-0.011938377283514],[0.044269435107708,-0.011687307618558,-0.059000179171562],[0.054620400071144,0.052900642156601,0.019624967128038]],[[-0.19613228738308,-0.085310004651546,0.038803149014711],[-0.013490570709109,0.02009111456573,-0.18747758865356],[0.0011237325379625,0.034389141947031,0.055940367281437]],[[-0.19887435436249,-0.044217482209206,-0.081874452531338],[-0.031352840363979,0.053290106356144,0.032463729381561],[0.10386122763157,0.076437100768089,-0.034297421574593]],[[0.15256777405739,-0.060964748263359,-0.18058040738106],[-0.11184615641832,-0.10881146788597,0.19226701557636],[0.06070389226079,-0.060199614614248,-0.19789984822273]],[[-0.1091276332736,-0.16696591675282,0.22556704282761],[0.092751927673817,-0.0013820573221892,-0.17300356924534],[0.082864433526993,0.016786424443126,-0.071438431739807]],[[0.023004537448287,0.16040104627609,0.1735554933548],[0.1772336512804,0.10336573421955,-0.12225336581469],[-0.24753072857857,-0.099181912839413,-0.065990589559078]],[[-0.072562403976917,-0.011968148872256,-0.051572538912296],[-0.024350898340344,-0.065790355205536,-0.051186934113503],[0.015336126089096,0.029701240360737,0.13553862273693]],[[0.066689878702164,0.086852073669434,0.020356848835945],[-0.023149773478508,0.0065401764586568,-0.13075728714466],[-0.15936374664307,-0.031296763569117,0.036996267735958]],[[0.030303809791803,-0.13117080926895,-0.16479063034058],[-0.088868424296379,0.15475282073021,-0.023547142744064],[0.087733641266823,-0.019544621929526,0.22559790313244]],[[-0.083501949906349,0.079629696905613,0.045679315924644],[-0.057316575199366,-0.013725388795137,-0.069859728217125],[-0.024033779278398,-0.00065262103453279,0.13505394756794]],[[-0.013635928742588,0.065201714634895,-0.13780348002911],[0.013872586190701,0.061223048716784,0.057591430842876],[-0.0021499262657017,-0.043546710163355,0.011430290527642]],[[-0.022889897227287,0.034292690455914,-0.03374046087265],[0.021170044317842,-0.025165418162942,0.062459159642458],[0.022936828434467,0.18943202495575,-0.11154896020889]],[[0.10313804447651,0.026505069807172,-0.11961118876934],[0.041376948356628,-0.025190729647875,0.069881908595562],[0.046029485762119,0.069691106677055,-0.034582518041134]],[[0.010862471535802,-0.044886756688356,-0.072577729821205],[-0.030904913321137,0.22525289654732,0.10098353028297],[-0.086901642382145,-0.056329090148211,-0.10196533799171]],[[0.055276166647673,-0.016207125037909,-0.078026086091995],[0.20050913095474,-0.11273292452097,-0.0098187830299139],[-0.055512879043818,0.071684651076794,-0.13229495286942]],[[0.075549207627773,0.22098727524281,0.018984010443091],[0.0042095906101167,0.012604899704456,0.19184966385365],[-0.19680890440941,-0.27430784702301,-0.057227283716202]],[[0.033287364989519,-0.079510033130646,-0.093508489429951],[-0.18942582607269,-0.25113642215729,0.010443657636642],[0.16674447059631,0.12341484427452,-0.061810176819563]],[[-0.2261275947094,-0.13597087562084,-0.071932077407837],[-0.018807552754879,0.041762288659811,0.13129654526711],[-0.12498255074024,-0.0024099545553327,0.07632802426815]],[[0.022836077958345,0.05756439268589,-0.058176249265671],[-0.023416485637426,-0.094153493642807,-0.035364583134651],[0.018522536382079,0.14979347586632,-0.054075624793768]],[[-0.077413961291313,0.0046092397533357,0.13194936513901],[-0.046324379742146,-0.12395190447569,-0.010180522687733],[-0.058700103312731,0.04877358302474,0.22446155548096]],[[-0.028254885226488,-0.063207618892193,-0.12507730722427],[0.025789864361286,0.097453288733959,-0.13283395767212],[0.028269458562136,-0.067825354635715,-0.050025418400764]],[[0.018427580595016,0.066250070929527,0.042131781578064],[-0.093249753117561,-0.084410451352596,0.076575674116611],[0.079445205628872,0.047294121235609,0.032448403537273]],[[-0.060438502579927,-0.20064629614353,-0.097907245159149],[-0.093754090368748,-0.0095954798161983,0.10766983777285],[0.14760930836201,0.068097561597824,-0.0061656143516302]],[[0.0075522819533944,0.052535001188517,-0.0085749719291925],[-0.058452267199755,0.00097931071650237,-0.13500337302685],[-0.031491700559855,-0.087021708488464,-0.060701876878738]],[[-0.033403400331736,0.061529368162155,0.072041153907776],[-0.16539186239243,-0.025679601356387,0.085319958627224],[-0.025928458198905,0.029372612014413,0.039618093520403]],[[0.031331092119217,0.0052453242242336,0.017515504732728],[-0.06932744383812,0.03393965959549,-0.025515675544739],[0.11798673868179,-0.051573522388935,0.11233831942081]],[[-0.021759970113635,-0.057649925351143,0.046289674937725],[0.1617978811264,-0.077877581119537,-0.066645860671997],[0.11748122423887,-0.074999235570431,0.11809816211462]],[[-0.25008109211922,-0.010529490187764,-0.036819074302912],[0.058283638209105,-0.023427167907357,-0.01524739805609],[-0.14665827155113,0.0032737357541919,-0.11913098394871]],[[-0.066248200833797,0.027907483279705,-0.14502972364426],[0.097191855311394,0.013689683750272,-0.18693348765373],[0.0070128794759512,-0.026447946205735,0.13951514661312]],[[-0.028506008908153,0.11696979403496,-0.018743354827166],[-0.060996122658253,-0.095393054187298,-0.064321883022785],[0.088046215474606,0.054249253123999,-0.010745024308562]],[[-0.040586452931166,-0.22639541327953,-0.0066469958983362],[-0.02233374491334,0.058137889951468,-0.12992069125175],[-0.017181865870953,-0.0081905480474234,-0.20096938312054]]],[[[0.040251992642879,0.12804366648197,0.12020193040371],[-0.015524278394878,0.098833091557026,-0.18387749791145],[-0.019622253254056,-0.0059388778172433,0.088140815496445]],[[0.12055852264166,-0.10526931285858,0.15945479273796],[-0.11310888826847,-0.13443297147751,-0.10936689376831],[0.19617474079132,0.04868533834815,0.077726677060127]],[[-0.030197005718946,0.067732453346252,0.0040476648136973],[0.027820175513625,0.056446477770805,-0.043122783303261],[-0.12046478688717,0.0043226121924818,0.029548579826951]],[[0.1031037196517,0.0081172240898013,0.016765154898167],[-0.047666940838099,-0.0031445857603103,-0.049008477479219],[-0.087135806679726,0.0772745013237,0.063808619976044]],[[0.11931397020817,0.0098562091588974,-0.11099852621555],[0.042087662965059,0.048704024404287,-0.087187610566616],[-0.0044212816283107,-0.056642051786184,-0.018758304417133]],[[-0.20621943473816,-0.18355241417885,-0.11677573621273],[0.090167962014675,0.04357698187232,-0.077877432107925],[0.0064442665316164,-0.12566314637661,-0.016118509694934]],[[-0.18549008667469,-0.075860276818275,-0.18813130259514],[0.21996010839939,0.15332314372063,0.0053361603058875],[-0.0377490632236,-0.1084773465991,-0.14848285913467]],[[0.098426438868046,0.041005417704582,-0.015464249998331],[0.028697596862912,-0.036643326282501,0.089417681097984],[-0.06342851370573,0.014318889006972,-0.054217390716076]],[[-0.048759073019028,0.060143541544676,-0.026436610147357],[0.034342084079981,0.00013113755267113,0.02836525067687],[-0.079936325550079,0.016752580180764,0.0056844186037779]],[[0.011224349960685,0.015465664677322,-0.11211957782507],[-0.1784619987011,0.0043865256011486,-0.067355833947659],[0.017119878903031,0.03157215565443,-0.053065955638885]],[[0.039049606770277,0.00032467540586367,0.023540023714304],[0.050925265997648,0.066152364015579,0.0062124920077622],[0.015774261206388,0.011897284537554,-0.19773195683956]],[[0.064006634056568,-0.05497457832098,-0.14025999605656],[0.036302845925093,0.15414546430111,0.18958994746208],[-0.033852461725473,-0.038144011050463,0.040999758988619]],[[-0.07412301748991,0.057160120457411,-0.05925652012229],[-0.069308742880821,0.054881524294615,0.13018092513084],[-0.052733186632395,0.04747474193573,-0.17570701241493]],[[0.036749344319105,-0.096324138343334,-0.059682369232178],[0.074742622673512,0.029545817524195,-0.037215352058411],[-0.11969492584467,0.0431695766747,0.0064531387761235]],[[-0.0086793089285493,0.13864646852016,-0.068611957132816],[0.034185942262411,0.085311062633991,0.13134728372097],[-0.091193400323391,-0.13938838243484,-0.1033041998744]],[[-0.065541192889214,-0.19744557142258,-0.06657737493515],[0.011677186004817,-0.063951663672924,0.043873682618141],[0.13317264616489,-0.13855442404747,-0.010295255109668]],[[0.041164252907038,-0.10575845837593,0.14310330152512],[0.30822592973709,0.01641258597374,-0.021373158320785],[0.11691531538963,-0.056048151105642,-0.049080282449722]],[[0.05923917889595,-0.15281850099564,0.069285102188587],[-0.11249376833439,-0.20260190963745,0.03987929970026],[-0.049289204180241,0.0075532947666943,-0.0063432138413191]],[[-0.04344903677702,0.047326911240816,0.17096315324306],[-0.115309484303,-0.060018990188837,-0.028763329610229],[-0.1596812158823,-0.0049540554173291,0.087160371243954]],[[-0.18435817956924,0.00063558324472979,-0.010138158686459],[-0.05512098968029,0.14834122359753,0.18014635145664],[-0.070076651871204,0.15692420303822,0.097287207841873]],[[-0.13023872673512,-0.11298547685146,-0.023225840181112],[0.071051754057407,-0.017052866518497,-0.073357000946999],[0.098165072500706,-0.02779476903379,0.12389232963324]],[[0.038978286087513,0.14728057384491,-0.15901511907578],[-0.10508400946856,0.086492516100407,0.071743406355381],[-0.076956540346146,0.029705747961998,0.13591632246971]],[[-0.058539010584354,-0.0891238078475,-0.082517728209496],[-0.022370448336005,-0.018395191058517,0.018218560144305],[-0.021987460553646,0.016615573316813,0.0059627857990563]],[[-0.072776511311531,-0.099614135921001,0.062507651746273],[-0.1153441593051,0.034567043185234,0.014514695852995],[-0.01285573747009,0.16726958751678,0.058519639074802]],[[0.1558238863945,0.067777797579765,0.090728215873241],[0.036331102252007,-0.015154697932303,-0.021195778623223],[-0.040890112519264,0.12901563942432,-0.12733094394207]],[[-0.073676146566868,-0.14299841225147,-0.031872559338808],[-0.16545966267586,-0.051585953682661,-0.054978996515274],[-0.11344760656357,-0.012732481583953,0.16527979075909]],[[-0.023718398064375,-0.14741945266724,-0.15234425663948],[0.040416542440653,0.098588697612286,0.042256072163582],[-0.050660341978073,0.050620466470718,-0.036538507789373]],[[-0.081474356353283,0.064193733036518,-0.12382760643959],[0.034357469528913,0.072737373411655,0.0096552139148116],[-0.10418874025345,0.0043437420390546,0.012200684286654]],[[-0.12999230623245,0.034193214029074,0.00025554868625477],[-0.18865685164928,-0.00097072910284624,0.16237612068653],[-0.16421264410019,0.23958611488342,-0.032881297171116]],[[-0.015839049592614,-0.020880281925201,0.018301177769899],[0.014697961509228,-0.052190825343132,0.014831303618848],[0.12190236896276,0.1023803204298,0.063857175409794]],[[-0.023156438022852,0.016157438978553,-0.081323035061359],[-0.0050878608599305,0.02618520706892,0.21639205515385],[-0.10648535937071,0.1963486969471,-0.0080752316862345]],[[0.0084985112771392,0.057237774133682,0.019176337867975],[-0.231235653162,0.13114930689335,-0.12222614884377],[0.13071873784065,0.13691128790379,0.033755380660295]],[[0.096916131675243,-0.048130441457033,-0.093545272946358],[0.00041902632801794,-0.0075543322600424,-0.037337318062782],[-0.016526853665709,0.1291057318449,0.12605538964272]],[[-0.10541701316833,-0.059673666954041,-0.15701019763947],[0.035522077232599,0.0086461091414094,0.09954172372818],[0.029679654166102,0.018313966691494,-0.075511060655117]],[[-0.052987527102232,0.046235244721174,-0.12641352415085],[-0.014577209018171,0.022443348541856,0.043597456067801],[0.019693244248629,0.088133208453655,0.066707320511341]],[[-0.080333441495895,-0.043504279106855,-0.099725767970085],[-0.2611058652401,-0.077251695096493,-0.1291870623827],[-0.33172485232353,-0.0003131777048111,-0.062579929828644]],[[0.034294467419386,-0.093127347528934,0.011611592024565],[0.043839056044817,-0.065142899751663,0.0089258328080177],[0.020375231280923,0.10770899802446,0.042026285082102]],[[-0.017089230939746,0.085331603884697,-0.015796586871147],[0.0036840313114226,-0.038022469729185,0.035105347633362],[0.016176974400878,-0.097656145691872,0.058598469942808]],[[0.1294227540493,-0.11208555102348,0.040014427155256],[0.015920247882605,0.047325994819403,-0.11438894271851],[-0.085261799395084,0.0053983037360013,-0.06170167028904]],[[0.0077617638744414,0.16249839961529,-0.14523048698902],[0.02926367148757,-0.1708904504776,-0.16082270443439],[-0.11751053482294,-0.078489042818546,-0.048729557543993]],[[0.096430659294128,-0.15435275435448,-0.006303230766207],[-0.00057642313186079,0.083917193114758,-0.14753377437592],[0.10434791445732,0.027303481474519,-0.032744310796261]],[[-0.090870387852192,-0.036956362426281,-0.092266499996185],[-0.14588278532028,-0.022329600527883,-0.11080994457006],[0.033584747463465,0.03197768330574,-0.090037249028683]],[[0.086617276072502,0.01070677023381,-0.042244907468557],[0.02614862844348,0.06316813826561,0.054384525865316],[-0.072979301214218,-0.096389941871166,0.026144687086344]],[[0.0063804490491748,-0.011367889121175,0.0367018468678],[-0.0055791838094592,-0.094062216579914,-0.039136055856943],[0.077081449329853,0.0005484307766892,0.01971554197371]],[[0.10845426470041,-0.014890820719302,0.0059815342538059],[-0.0045626861974597,0.057083010673523,0.052672483026981],[0.047929588705301,0.09726794809103,-0.070719316601753]],[[0.034915715456009,0.080869801342487,-0.10580467432737],[-0.21364235877991,0.0022488404065371,0.039101585745811],[0.0038389584515244,0.016822004690766,0.18286009132862]],[[-0.083293385803699,-0.053769808262587,-0.12571176886559],[0.12947350740433,0.087596260011196,0.062542364001274],[-0.093223907053471,-0.12798538804054,0.063850156962872]],[[0.03440510481596,-0.015806287527084,-0.21008299291134],[-0.078060448169708,-0.062202446162701,0.088772781193256],[0.029269926249981,0.14066378772259,0.081209972500801]],[[0.13504974544048,0.16350314021111,0.083827443420887],[-0.045705482363701,-0.11566299945116,-0.1150922998786],[0.39354595541954,-0.0016425444046035,0.2474756538868]],[[-0.013337740674615,-0.071514189243317,0.023380240425467],[-0.10975605994463,-0.013483953662217,-0.1882010102272],[-0.084382645785809,0.030541161075234,0.10166393965483]],[[-0.15648549795151,-0.25685968995094,-0.16352237761021],[-0.091115713119507,-0.060456052422523,0.08842559158802],[-0.0097280703485012,0.16037386655807,0.071833357214928]],[[-0.057824466377497,-0.042674075812101,0.027938526123762],[-0.10061242431402,-0.09251830726862,-0.33870068192482],[0.20285406708717,0.085849858820438,0.059660147875547]],[[-0.037791460752487,0.033730268478394,0.098616763949394],[0.13308411836624,-0.04715708643198,-0.027932412922382],[-0.0012352738995105,-0.017544712871313,0.070163302123547]],[[-0.00096002483041957,-0.015208382159472,-0.033708665519953],[-0.22256445884705,0.053115405142307,-0.084708370268345],[-0.025433469563723,-0.051254469901323,-0.083301030099392]],[[0.023801388218999,-0.071863576769829,-0.11720729619265],[0.13434663414955,0.049510214477777,0.065178014338017],[-0.029796784743667,0.1605861634016,0.06984643638134]],[[-0.09019497781992,-0.011680259369314,0.036765333265066],[-0.076412215828896,-0.066250219941139,-0.029395615682006],[-0.14447847008705,-0.061759725213051,-0.045297000557184]],[[0.1126412153244,-0.1928483992815,0.0089939208701253],[-0.079441256821156,-0.020369544625282,-0.072281539440155],[-0.1070713698864,-0.028716990724206,-0.026886217296124]],[[0.085663169622421,-0.054526623338461,-0.13314536213875],[0.14472606778145,0.015621729195118,-0.058757428079844],[0.046061586588621,-0.095192432403564,0.092339105904102]],[[0.08838527649641,0.024102559313178,0.0689502581954],[-0.27068108320236,0.054654501378536,0.26985129714012],[-0.085286483168602,-0.12981913983822,-0.045575261116028]],[[-0.11215629428625,-0.049927059561014,0.10508046299219],[0.069600850343704,-0.17618170380592,-0.01705458201468],[0.037036933004856,-0.12291651964188,0.095267437398434]],[[-0.15360316634178,0.057923063635826,-0.0033907829783857],[-0.025742093101144,-0.1360000371933,-0.078998252749443],[-0.11593992263079,0.033002484589815,0.053627636283636]],[[-0.013418506830931,0.022600539028645,0.13361166417599],[0.11786334216595,-0.025456424802542,0.0072452304884791],[-0.098250657320023,0.089837968349457,0.10121680796146]],[[-0.04926622658968,0.078205414116383,-0.032439645379782],[0.004001741297543,-0.015543585643172,-0.022639704868197],[0.069387160241604,0.028703961521387,0.043257743120193]],[[-0.14518216252327,-0.015150493942201,-0.09942039847374],[0.026964608579874,0.11735368520021,0.12517632544041],[0.09222324937582,0.022123791277409,0.024576434865594]]],[[[-0.015069912187755,-0.11327384412289,0.013134581036866],[-0.1053733304143,0.025271141901612,-0.20315891504288],[0.092254027724266,0.0095320679247379,0.18550564348698]],[[-0.074203222990036,-0.097658321261406,0.011040077544749],[-0.042405664920807,-0.042140960693359,-0.05389129370451],[0.098844826221466,0.21337975561619,-0.14631952345371]],[[-0.077884808182716,0.0073542832396924,-0.048501145094633],[-0.033038597553968,0.030320573598146,0.034882411360741],[-0.031340047717094,-0.013503081165254,0.048646241426468]],[[0.031911984086037,-0.13760212063789,0.057304926216602],[0.0134630613029,-0.010671728290617,-0.006100979167968],[-0.054748944938183,0.05784560739994,0.053249944001436]],[[-0.09848565608263,0.039086509495974,0.05167543515563],[0.03650301322341,0.0079387752339244,0.073167040944099],[0.010909803211689,0.028000043705106,-0.13203209638596]],[[-0.026388058438897,0.025143720209599,-0.032399218529463],[0.040117438882589,-0.062837451696396,0.01983786560595],[0.13657577335835,-0.074197880923748,-0.022264255210757]],[[0.09222999215126,0.041449103504419,-0.094863772392273],[-0.10429776459932,-0.02839432656765,-0.10483023524284],[0.02549965120852,-0.041186276823282,0.095050297677517]],[[-0.025519667193294,-0.044310353696346,0.12117839604616],[0.046242345124483,-0.055789034813643,0.071968451142311],[0.046903260052204,0.09986550360918,0.050245445221663]],[[-0.010683280415833,-0.10132414847612,-0.037847876548767],[-0.0917649269104,-0.068410500884056,0.042360667139292],[-0.078466288745403,0.012630277313292,0.039665155112743]],[[0.031379763036966,-0.10103173553944,0.21953403949738],[0.019063072279096,0.12917196750641,0.13305376470089],[0.053024042397738,-0.022441834211349,-0.0471924059093]],[[0.081043608486652,0.0034512812271714,-0.050771273672581],[-0.044562365859747,-0.03239980340004,0.058071162551641],[-0.018592070788145,0.14705209434032,0.022857004776597]],[[-0.071489579975605,0.086293071508408,-0.059182409197092],[0.016423456370831,0.12507089972496,0.027777951210737],[0.15086182951927,0.099300183355808,-0.16033592820168]],[[0.006177865434438,0.10279893130064,-0.15128946304321],[-0.036057040095329,-0.054769240319729,0.021009750664234],[0.15246416628361,0.042682372033596,-0.091576464474201]],[[-0.096635676920414,0.042947359383106,-0.15376988053322],[-0.060655348002911,-0.02927721850574,-0.039130412042141],[0.09366662055254,0.041168939322233,-0.02433617785573]],[[0.11962389945984,-0.020800476893783,0.046222966164351],[-0.042709533125162,0.10921498388052,-0.13835121691227],[0.14831729233265,-0.082457423210144,-0.19475062191486]],[[-0.070973567664623,0.038968622684479,0.051917012780905],[0.069255627691746,-0.059563666582108,0.039809294044971],[0.00017381549696438,-0.12398149818182,0.058162804692984]],[[-0.015914175659418,0.072533085942268,0.065582975745201],[0.19106756150723,-0.12211519479752,-0.017772374674678],[-0.042714461684227,0.058632250875235,-0.039996460080147]],[[-0.019918950274587,0.083114638924599,-0.015628434717655],[-0.089565843343735,0.10114478319883,-0.069932363927364],[-0.041882652789354,0.016587136313319,-0.011092522181571]],[[0.092084638774395,0.080502741038799,0.096229575574398],[0.069016993045807,-0.026380874216557,-0.026519399136305],[0.05223910883069,-0.041979480534792,-0.052036494016647]],[[0.1591831445694,-0.066757909953594,-0.081532552838326],[-0.033399499952793,0.09877560287714,-0.051857504993677],[0.11036398261786,0.074773333966732,0.14230315387249]],[[0.044891588389874,-0.056068655103445,-0.054242946207523],[-0.011570091359317,0.043322481215,0.023550625890493],[-0.043212909251451,-0.027116449549794,-0.04220899567008]],[[-0.069677539169788,-0.0086084548383951,0.029870862141252],[-0.052898187190294,0.11805538088083,0.02375372685492],[0.072359763085842,0.010251680389047,0.029328627511859]],[[0.047767534852028,0.04967625439167,0.03015074878931],[-0.063797503709793,0.04558839276433,0.03256868198514],[-0.10186734050512,-0.060413859784603,-0.036021914333105]],[[-0.28289499878883,0.022825140506029,0.096824452280998],[-0.09808224439621,0.088689848780632,0.056747648864985],[0.11490475386381,0.076262235641479,0.048119384795427]],[[0.036720469594002,-0.056333053857088,-0.011732625775039],[-0.14002375304699,-0.020610868930817,0.095363989472389],[0.0073500252328813,0.034194651991129,0.14710973203182]],[[0.051655616611242,-0.069979175925255,-0.05575992166996],[0.058643091470003,0.053451173007488,0.1068400144577],[0.084363907575607,0.027228955179453,-0.040613740682602]],[[-0.0041572782211006,0.013411097228527,0.077689401805401],[0.12698996067047,-0.069590136408806,-0.0046475930139422],[0.14218962192535,0.048124220222235,0.05439580976963]],[[-0.19432833790779,0.060835130512714,-0.045237056910992],[-0.18906065821648,-0.031929608434439,0.10577227175236],[0.034879993647337,0.1415660828352,-0.066955514252186]],[[0.042883079499006,0.18220935761929,-0.048358049243689],[0.032715857028961,0.038733225315809,-0.055461168289185],[-0.11859114468098,-0.064614616334438,-0.041580278426409]],[[-0.015195620246232,0.07088278234005,-0.11088795214891],[0.031544752418995,-0.028210882097483,-0.026646509766579],[0.12481536716223,0.0061943447217345,0.14030632376671]],[[-0.0032023442909122,-0.099414639174938,-0.056008514016867],[0.069941341876984,0.042830340564251,-0.25222811102867],[-0.028057703748345,-0.055269159376621,0.0701719596982]],[[0.0096981693059206,0.0043501374311745,0.034790519624949],[0.027502864599228,-0.010323656722903,-0.10534796118736],[-0.079444415867329,-0.086569346487522,-0.072666943073273]],[[0.023815974593163,0.026701802387834,-0.067486256361008],[-0.079401284456253,0.0035400425549597,0.097531586885452],[0.02348086796701,-0.0015441618161276,0.092296496033669]],[[-0.048926334828138,0.034882660955191,-0.028365448117256],[0.055240534245968,0.046820543706417,-0.16190811991692],[0.12695896625519,0.067551396787167,-0.037228707224131]],[[0.062326166778803,-0.021261101588607,0.11678282916546],[-0.012619871646166,-0.10715351998806,0.061521217226982],[-0.036281935870647,-0.0013620004756376,0.12004169076681]],[[0.12217059731483,0.096787102520466,-0.01588742621243],[0.081849001348019,-0.19183820486069,-0.041006099432707],[-0.0047956770285964,-0.0025357471313328,-0.15838631987572]],[[-0.018428375944495,-0.17659893631935,-0.029398443177342],[-0.056356631219387,-0.022705316543579,0.1890385299921],[-0.064170487225056,-0.059976600110531,-0.23531277477741]],[[-0.10058297216892,-0.13570837676525,0.045796908438206],[-0.14927768707275,-0.14333298802376,0.044519852846861],[-0.05466665327549,-0.010850950144231,0.018737206235528]],[[0.093540191650391,0.044394589960575,-0.14183367788792],[-0.02122619189322,-0.0075711710378528,0.15050600469112],[-0.035102486610413,-0.19918559491634,0.01245251018554]],[[-0.010746335610747,-0.095752239227295,0.064424574375153],[0.026450077071786,-0.15633103251457,0.025442745536566],[-0.058061391115189,-0.031869199126959,0.1305263787508]],[[0.06827786564827,0.00061962788458914,-0.022227006033063],[-0.020767968147993,0.078987821936607,-0.095515124499798],[-0.031409692019224,-0.023804903030396,-0.13222473859787]],[[0.018958672881126,-0.022116271778941,-0.039344374090433],[0.052051793783903,0.030122440308332,0.08055254817009],[0.05633694306016,0.018232116475701,-0.093075834214687]],[[0.25818929076195,-0.1282025128603,-0.098337203264236],[-0.037452392280102,0.075767531991005,0.071300432085991],[-0.022859457880259,0.004100052639842,0.033510781824589]],[[0.038067474961281,0.00038388531538658,-0.0031798928976059],[0.037537854164839,0.042230267077684,-0.07403476536274],[0.012973126024008,-0.094144739210606,-0.12834797799587]],[[0.01593429222703,0.016014451161027,0.064405396580696],[-0.034973092377186,0.1284035295248,-0.0063246246427298],[0.023768683895469,-0.11807922273874,0.032051812857389]],[[0.070191211998463,-0.097759298980236,-0.051843672990799],[0.018602788448334,0.11785896867514,0.03233727067709],[0.040249899029732,-0.042166352272034,-0.089134640991688]],[[-0.010181565769017,-0.0080599645152688,-0.12149801105261],[0.032071594148874,0.014598418958485,0.19873215258121],[0.0027897760737687,0.048137709498405,-0.053292579948902]],[[-0.0073122777976096,-0.069767020642757,-0.012136736884713],[0.0024982311297208,0.011435077525675,-0.014588110148907],[0.14097172021866,0.0079132812097669,-0.06631775200367]],[[-0.026783974841237,-0.036848980933428,-0.023311384022236],[0.0074082277715206,0.10594368726015,-0.010316540487111],[-0.065996274352074,0.066110856831074,0.073317758738995]],[[0.041635654866695,-0.054725009948015,-0.04656021669507],[0.048660043627024,0.0098581938073039,0.16841708123684],[0.14070495963097,-0.0024842584971339,0.013351688161492]],[[0.074858643114567,-0.0027437037788332,-0.10018318891525],[0.034933507442474,0.036333661526442,0.10301510989666],[0.13193292915821,-0.088165514171124,-0.059520460665226]],[[0.18357418477535,0.098330967128277,0.0046391976065934],[-0.10030560195446,0.044738359749317,0.18543261289597],[0.085853554308414,-0.067893996834755,0.12143050134182]],[[-0.10612013190985,-0.057056847959757,-0.0010415110737085],[0.067602269351482,0.12187614291906,-0.052555058151484],[0.16160407662392,0.028451193124056,0.15979187190533]],[[-0.024056201800704,0.10191809386015,0.073822826147079],[0.026449020951986,-0.11219904571772,0.034285567700863],[0.002772516803816,-0.057465009391308,-0.057691685855389]],[[0.036409229040146,0.016261527314782,0.030548999086022],[-0.097863726317883,-0.056374114006758,-0.10390947759151],[0.031294811517,0.0094770053401589,0.02557173743844]],[[-0.10788578540087,-0.043309550732374,0.0044108582660556],[-0.029707564041018,0.013791969977319,-0.091708101332188],[-0.1592643558979,0.031306605786085,0.0978087708354]],[[0.028111133724451,0.024370208382607,0.046230170875788],[-0.064803913235664,0.11282467097044,0.11807204782963],[0.073584958910942,0.054118365049362,0.054924458265305]],[[0.046167839318514,0.057817552238703,0.061640292406082],[-0.15563416481018,-0.035141985863447,-0.015949908643961],[-0.042828947305679,0.10559373348951,-0.11076962947845]],[[-0.092226140201092,-0.14248576760292,-0.071899950504303],[0.0040704589337111,0.14824344217777,-0.10894786566496],[-0.088499881327152,0.088249981403351,-0.16239303350449]],[[0.20253625512123,-0.032875120639801,-0.0063598309643567],[-0.091550685465336,0.098149552941322,0.038009077310562],[0.1744177788496,0.0036221612244844,0.033120069652796]],[[0.00017790991114452,-0.081648655235767,0.021551603451371],[-0.12031826376915,0.11944279819727,0.085265964269638],[-0.022005781531334,0.059425938874483,-0.041319619864225]],[[-0.11797434836626,-0.067499957978725,0.17123390734196],[-0.025888724252582,0.073229357600212,0.021537106484175],[-0.17849585413933,0.023955916985869,0.11910349875689]],[[-0.11559401452541,-0.052950866520405,-0.040836207568645],[0.069516934454441,-0.014447472058237,0.073030225932598],[0.011010102927685,-0.091928116977215,0.05746054649353]],[[-0.065601132810116,0.044418632984161,0.068101167678833],[-0.088233709335327,-0.023067647591233,-0.034391731023788],[0.033703066408634,-0.021751500666142,0.10794360935688]]],[[[-0.040499679744244,0.052792832255363,-0.13955792784691],[0.0059969807043672,0.043526392430067,-0.025659270584583],[0.0071461061015725,0.0057553583756089,0.10419747978449]],[[-0.16595534980297,-0.021480983123183,-0.020402414724231],[-0.06903500854969,-0.046891313046217,0.059761270880699],[-0.029291339218616,0.082039020955563,-0.05352621525526]],[[-0.038158215582371,-0.1505336612463,-0.18294496834278],[0.053521122783422,0.027045926079154,-0.0083324667066336],[-0.082757666707039,-0.13202697038651,0.0555624589324]],[[-0.061104588210583,0.020665261894464,-0.036536831408739],[-0.071744695305824,-0.069386139512062,0.12857264280319],[0.070750713348389,-0.043891161680222,-0.0082831541076303]],[[0.10236109048128,0.049162328243256,-0.08323460072279],[0.0075228940695524,-0.11763929575682,-0.037363559007645],[-0.038214579224586,-0.12412469834089,-0.10052556544542]],[[-0.15413376688957,0.093329854309559,-0.014247495681047],[0.087256483733654,0.078289739787579,-0.035154767334461],[0.065804824233055,0.0090496093034744,0.049172610044479]],[[0.022850165143609,0.00064666295656934,0.0083533432334661],[-0.091818705201149,0.016601691022515,-0.060826614499092],[-0.018603039905429,-0.042543832212687,0.19316849112511]],[[-0.010952181182802,-0.12953679263592,0.081617407500744],[-0.017798462882638,0.0087352162227035,0.027155302464962],[0.13148775696754,0.03693450242281,0.058070261031389]],[[0.014290736056864,0.0081088487058878,-0.014480450190604],[-0.013121282681823,-0.058984287083149,0.018390780314803],[0.042403485625982,-0.060248769819736,-0.043777368962765]],[[-0.0058000539429486,0.07003416121006,-0.031122891232371],[-0.0035570778418332,0.065138719975948,-0.011020031757653],[0.093227609992027,-0.11003056913614,0.017695974558592]],[[-0.16160672903061,0.088765121996403,-0.10594932734966],[0.10472729057074,-0.017091969028115,0.0038145023863763],[6.9612055085599e-05,-0.10614584386349,0.044302023947239]],[[-0.040415070950985,0.099455095827579,-0.038085903972387],[0.013375616632402,0.085883550345898,-0.040554363280535],[0.127336114645,0.047698687762022,-0.038110453635454]],[[-0.14340035617352,0.1245363727212,-0.042661283165216],[-0.18154510855675,-0.0047786729410291,0.10571367293596],[-0.08792382478714,-0.12058252841234,0.048283584415913]],[[-0.0096184853464365,-0.065584674477577,-0.022285107523203],[-0.091467179358006,-0.035020984709263,-0.034353621304035],[0.010177776217461,-0.095276206731796,0.0015827050665393]],[[-0.050240639597178,0.0070594209246337,-0.068436473608017],[-0.010238426737487,0.13734209537506,-0.096386849880219],[0.0089779244735837,0.13942156732082,0.10582854598761]],[[-0.060404106974602,0.025200057774782,0.080542296171188],[-0.001930812606588,0.14234445989132,-0.063587576150894],[0.10828548669815,0.19982980191708,-0.093858741223812]],[[-0.01345906034112,0.052493002265692,-0.064066201448441],[-0.089121036231518,0.018099572509527,0.10602380335331],[0.11798749119043,-0.11830469965935,-0.085661329329014]],[[0.11313782632351,0.013767335563898,-0.11645143479109],[-0.11016485095024,-0.10844404995441,-0.033726274967194],[-0.035850562155247,0.026746926829219,0.020507022738457]],[[0.12691383063793,-0.037506878376007,-0.0038717179559171],[-0.063828155398369,-0.15241894125938,0.053141847252846],[-0.070120006799698,-0.095397554337978,0.0037677017971873]],[[-0.022960480302572,0.067117422819138,0.18563462793827],[-0.14628118276596,0.034075122326612,0.13519223034382],[-0.0710339397192,-0.0039651193656027,0.092813409864902]],[[-0.011115061119199,-0.1894599199295,0.04563631862402],[-0.24047043919563,-0.12364625185728,-0.01699922978878],[-0.033399276435375,0.16917875409126,0.092438943684101]],[[0.011779849417508,-0.28221163153648,-0.06378086656332],[-0.12771491706371,-0.15609338879585,0.092749990522861],[0.2449027299881,-0.17273557186127,-0.092171810567379]],[[-0.062978334724903,-0.035102721303701,-0.043131090700626],[-0.032355673611164,-0.13920073211193,-0.050032787024975],[0.033452089875937,0.02264254540205,-0.037961777299643]],[[0.039684690535069,-0.083459086716175,-0.12078172713518],[-0.071011565625668,-0.010020808316767,-0.18187041580677],[-0.072459124028683,0.035973891615868,0.12293763458729]],[[0.0072321598418057,0.016040632501245,-0.12065383046865],[-0.12764191627502,0.041226699948311,0.10331358760595],[-0.062269926071167,0.052024248987436,0.063863754272461]],[[-0.0055585280060768,-0.094032786786556,-0.029754741117358],[0.035718873143196,0.096610173583031,-0.23955699801445],[0.001508561312221,0.099335499107838,-0.039712425321341]],[[0.021899679675698,-0.0409304946661,0.12066911906004],[0.024369694292545,0.036421306431293,-0.047946207225323],[0.078272826969624,-0.11426062136889,0.029707485809922]],[[-0.087437175214291,0.027466211467981,-0.036415603011847],[-0.1511607915163,0.056152313947678,-0.12426310777664],[-0.086688198149204,0.16177976131439,-0.067034639418125]],[[-0.1838793605566,0.10786928236485,0.0011447016149759],[0.064702831208706,0.032823290675879,0.012687456794083],[0.028169199824333,0.032000612467527,-0.040049999952316]],[[0.054472472518682,-0.038141496479511,0.097150929272175],[-0.015922823920846,0.21504075825214,-0.14640757441521],[0.039509862661362,0.081643030047417,-0.096465639770031]],[[0.031734421849251,-0.12255245447159,0.079904526472092],[0.10060054808855,-0.047244723886251,-0.072206497192383],[0.13765205442905,-0.058855462819338,-0.065106645226479]],[[0.017302665859461,-0.019216628745198,0.038455978035927],[0.094306878745556,0.032302778214216,-0.12153046578169],[-0.053884018212557,0.12085352838039,-0.17430727183819]],[[-0.0058173616416752,-0.11450584977865,-0.0081878304481506],[-0.0043233442120254,-0.052825525403023,-0.022877322509885],[-0.01073550991714,-0.13826851546764,0.022112835198641]],[[0.046355571597815,0.12686602771282,0.03924048319459],[-0.011790311895311,-0.064876295626163,-0.051155880093575],[-0.17774987220764,-0.0079516377300024,-0.029351802542806]],[[-0.059332709759474,0.015848712995648,-0.0071385577321053],[-0.067151308059692,0.08025635778904,-0.045592561364174],[0.05810372158885,-0.043081235140562,-0.20387662947178]],[[-0.058855671435595,-0.04784482344985,0.03437864035368],[0.087196461856365,0.00062549347057939,-0.078985884785652],[-0.023819401860237,-0.03756869956851,0.047508265823126]],[[-0.061350032687187,0.031551878899336,-0.035519119352102],[-0.081599853932858,0.052056677639484,0.16018036007881],[-0.034355562180281,0.018343912437558,-0.036272786557674]],[[-0.14575324952602,-0.0022778490092605,-0.075456209480762],[-0.083397254347801,0.042912006378174,0.087713964283466],[0.047894809395075,-0.083165787160397,0.090895913541317]],[[0.058468099683523,0.013017371296883,0.046241916716099],[-0.096718586981297,0.064847052097321,-0.075816832482815],[-0.19540974497795,0.023762850090861,-0.024283699691296]],[[0.015391153283417,-0.05020010471344,0.049129653722048],[0.014479433186352,-0.058902613818645,-0.018203468993306],[-0.048947263509035,-0.057481780648232,0.031709507107735]],[[0.072095811367035,0.069850742816925,-0.081662580370903],[-0.018250443041325,0.003884457051754,-0.033837120980024],[-0.054402809590101,0.025602431967854,0.093509458005428]],[[0.1338375210762,-0.072797708213329,0.085740759968758],[-0.01810996234417,-0.19767807424068,0.0035466654226184],[0.26431038975716,0.13090866804123,-0.0099083948880434]],[[0.088650189340115,-0.1243110075593,-0.092774853110313],[0.11146047711372,-0.077597469091415,-0.1867635846138],[0.21854768693447,-0.1526747494936,0.091824278235435]],[[0.0031232049223036,-0.068697586655617,0.032681338489056],[0.0143688544631,0.051665592938662,0.0239681545645],[0.0021984837949276,-0.050885833799839,0.0041031129658222]],[[0.0097382823005319,-0.021713837981224,-0.045344274491072],[0.044847652316093,-0.0912199690938,-0.32192754745483],[-0.037003371864557,0.048121679574251,-0.17154824733734]],[[0.037783555686474,-0.27086529135704,0.050053097307682],[0.080855697393417,0.020958444103599,0.068159431219101],[-0.074127174913883,-0.021204860880971,0.17853653430939]],[[0.0054714363068342,0.080922603607178,-0.081078603863716],[-0.026227427646518,0.039547812193632,-0.11726563423872],[-0.0021212985739112,-0.070096164941788,0.051547843962908]],[[-0.0032119525130838,-0.059136569499969,-0.023372774943709],[-0.069041155278683,-0.033668201416731,-0.14827199280262],[0.037636391818523,0.046262104064226,0.043377887457609]],[[0.058698873966932,-0.015139486640692,-0.029240744188428],[0.051911972463131,-0.1854003071785,-0.082724057137966],[0.0046209059655666,-0.073370799422264,0.0088541936129332]],[[-0.1338918954134,-0.038583192974329,-0.090115703642368],[-0.051924712955952,0.054843194782734,0.0082001965492964],[-0.0020570780616254,-0.069571726024151,0.069283381104469]],[[-0.0395029745996,-0.093411266803741,0.001189601724036],[0.051517687737942,-0.091924250125885,0.084427930414677],[-0.031194321811199,-0.038776770234108,-0.038565296679735]],[[0.094989910721779,-0.05328032001853,-0.044112406671047],[0.117382183671,-0.042186070233583,-0.098626665771008],[0.13769887387753,-0.091730378568172,-0.015878599137068]],[[-0.0075684110634029,-0.11237119883299,-0.099023580551147],[0.15571069717407,-0.052789561450481,0.0083505259826779],[0.15640980005264,0.033709313720465,0.059332646429539]],[[-0.021539907902479,-0.061038300395012,0.10393336415291],[0.014744585379958,-0.053112599998713,-0.0436139293015],[-0.15417319536209,0.18559582531452,-0.0010869286488742]],[[-0.092599809169769,-0.013863237574697,-0.054047487676144],[0.024392407387495,-0.072281092405319,-0.0082122022286057],[0.022540375590324,-0.051032867282629,-0.029976820573211]],[[-0.037076350301504,0.026657158508897,-0.060621578246355],[0.083573378622532,-0.06218283995986,-0.16751916706562],[-0.039377700537443,-0.043497521430254,-0.067999824881554]],[[-0.0091067757457495,-0.16337464749813,-0.050047073513269],[-0.13082146644592,-0.097376294434071,-0.20612196624279],[-0.083838433027267,0.075690485537052,-0.11094673722982]],[[-0.045322116464376,0.053711351007223,-0.16370986402035],[-0.12739934027195,0.017599849030375,-0.045308344066143],[-0.15365040302277,0.21751709282398,-0.10522596538067]],[[0.035997524857521,0.049220468848944,-0.093928769230843],[-0.056707143783569,-0.055426813662052,0.019595170393586],[-0.040428273379803,0.13282968103886,0.054914936423302]],[[-0.035511061549187,0.032946221530437,-0.13770280778408],[-0.0020612517837435,0.024496899917722,0.0137869855389],[-0.091412723064423,-0.01523703429848,-0.10623665899038]],[[-0.055254392325878,-0.23562271893024,-0.11445461213589],[-0.05860748142004,-0.030824080109596,-0.035350397229195],[0.19682908058167,0.026463154703379,0.02294878475368]],[[0.00088408013107255,-0.10047527402639,-0.020534634590149],[-0.063350930809975,0.053929798305035,-0.11124842613935],[0.077717088162899,-0.1647834032774,0.16854572296143]],[[0.068696156144142,0.028485314920545,0.070674359798431],[-0.16473187506199,0.057505816221237,0.053948286920786],[-0.0094244750216603,-0.00536401104182,-0.12480968236923]],[[-0.043353892862797,0.038238979876041,-0.085315182805061],[0.00088675279403105,-0.088127322494984,-0.024752596393228],[0.10736896842718,-0.25549739599228,0.19656747579575]]],[[[-0.050373613834381,0.039829552173615,-0.015490914694965],[0.066299855709076,-0.048546362668276,-0.024866009131074],[0.021544070914388,0.00089126621605828,-0.0096742892637849]],[[-0.026559747755527,-0.0054173418320715,0.00084282614989206],[-0.082657061517239,-0.040372829884291,0.015652632340789],[0.020337581634521,-0.051935683935881,0.055339138954878]],[[-0.030529286712408,-0.050563510507345,0.0426877848804],[0.0033016882371157,0.0073966765776277,0.024012066423893],[-0.035295203328133,0.079960122704506,-0.0034516628365964]],[[0.03351541236043,-0.062456969171762,0.071569211781025],[-0.01705751940608,0.0053148702718318,-0.013182690367103],[-0.037578940391541,-0.02517569437623,-0.0040340358391404]],[[-0.020128620788455,-0.013539299368858,-0.011212751269341],[-0.039873097091913,0.034123092889786,0.024285521358252],[0.012717312201858,0.002577485749498,0.015942130237818]],[[-0.0048395851626992,0.019066793844104,-0.082376979291439],[-0.027212439104915,0.064315542578697,0.01192678976804],[-0.029013767838478,-0.021266488358378,0.075501136481762]],[[0.020260682329535,-0.0080572320148349,-0.061455026268959],[-0.052734475582838,0.024583440274,0.058653462678194],[0.043206833302975,0.0051883729174733,-0.004467012360692]],[[0.026349697262049,-0.055947877466679,-0.029421443119645],[0.0049182227812707,-0.050272528082132,0.043578930199146],[0.075197570025921,-0.029665868729353,0.01757918484509]],[[0.11210411787033,0.17886210978031,0.035371404141188],[0.040974885225296,0.11387194693089,0.11499387770891],[0.09365326911211,0.052838500589132,-0.0018522718455642]],[[-0.017689233645797,0.027610138058662,-0.024870067834854],[0.07626623660326,-0.055691797286272,0.0051045883446932],[0.078017167747021,-0.0585134960711,0.0010499657364562]],[[0.06886488199234,-0.07397535443306,-0.0017595811514184],[-0.033425159752369,0.011757898144424,0.079013362526894],[-0.048929385840893,0.049931176006794,-0.066270418465137]],[[0.041749980300665,-0.081847779452801,0.04977323114872],[-0.053946100175381,0.037336658686399,-0.0055819628760219],[0.028692265972495,0.018032789230347,0.015735810622573]],[[0.058007296174765,-0.032035112380981,0.052699491381645],[-0.091548316180706,-0.076193384826183,-0.010083435103297],[0.062828123569489,0.027438519522548,0.0054945158772171]],[[0.033689863979816,-0.0085323359817266,-0.097692288458347],[-0.045844212174416,-0.15582336485386,0.091563053429127],[-0.021667359396815,-0.066164202988148,0.057069264352322]],[[-0.030671404674649,0.052070662379265,0.0033482140861452],[0.010243648663163,-0.037451915442944,0.042378813028336],[0.0040392056107521,-0.033316418528557,0.016389105468988]],[[-0.054128639400005,0.10046945512295,0.0129518751055],[-0.025004327297211,-0.03772758692503,0.014375207945704],[0.029914291575551,-0.017523052170873,0.0059966281987727]],[[0.015055827796459,0.012413580901921,-0.022109277546406],[-0.066564209759235,-0.021942302584648,-0.00093889218987897],[0.019488515332341,0.0522750467062,0.03446676582098]],[[-0.021449839696288,-0.042101643979549,0.088096797466278],[0.030871614813805,-0.068402625620365,-0.045264970511198],[-0.071495115756989,-0.029199773445725,0.1535702496767]],[[0.022149356082082,-0.047475032508373,0.081230640411377],[0.045974478125572,-0.067911088466644,-0.040485758334398],[0.02772163040936,-0.062947034835815,0.078033030033112]],[[0.047871857881546,-0.032280337065458,-0.010300336405635],[0.0051021333783865,0.048766206949949,-0.028725670650601],[0.022188885137439,0.035210907459259,-0.055272590368986]],[[0.04582691565156,-0.013943839818239,-0.018426148220897],[0.054923962801695,-0.045286927372217,-0.011299125850201],[0.00095018214778975,0.054471638053656,-0.02807237021625]],[[-0.017145071178675,-0.023164063692093,-0.1083482503891],[0.010729531757534,0.048963580280542,0.082519255578518],[0.028247820213437,-0.001104446942918,0.0507404319942]],[[-0.0095005007460713,0.017545741051435,0.020826363936067],[0.1245209351182,0.034938991069794,-0.01448567584157],[-0.022910973057151,-0.038915652781725,-0.010240333154798]],[[0.014145329594612,0.046623215079308,0.031336024403572],[-6.914179539308e-05,-0.0083565264940262,0.02589832060039],[-0.011702076531947,-0.06614688038826,-0.0059631024487317]],[[-0.017953420057893,-0.021451344713569,-0.0015237459447235],[-0.0018423231085762,0.017610475420952,-0.0033515507820994],[0.031873986124992,-0.022602749988437,-0.015609665773809]],[[-0.091866120696068,0.022033063694835,0.046796131879091],[-0.058781366795301,0.030811617150903,-0.015991143882275],[-0.031261429190636,-0.0093355113640428,0.044168539345264]],[[-0.019364736974239,-0.028519218787551,0.025340039283037],[-0.010813518427312,0.01514218468219,-0.0034084040671587],[0.063298389315605,0.04133390262723,-0.025678172707558]],[[0.016982324421406,0.0078689847141504,-0.011668413877487],[0.026191053912044,0.019437704235315,-0.0077920402400196],[-0.017582470551133,-0.0050431909039617,0.012309581972659]],[[-0.04024588316679,-0.017312975600362,-0.010997493751347],[0.013943116180599,0.058725260198116,-0.0053592543117702],[-0.002222687471658,-0.0041962224058807,-0.010600790381432]],[[-0.031716972589493,0.033217754215002,0.025740185752511],[0.053149592131376,-0.015950491651893,-0.022712260484695],[-0.022725019603968,0.012920434586704,-0.020583227276802]],[[0.050404027104378,0.045364286750555,0.0016396943246946],[0.0037808092311025,-0.071562729775906,-0.039676200598478],[0.012232195585966,-0.052078556269407,0.078978002071381]],[[-0.031697180122137,0.021698987111449,0.011623471975327],[0.085780628025532,0.026814954355359,-0.021150529384613],[-0.040572181344032,-0.023799508810043,-0.035532519221306]],[[0.010551461949944,-9.5757801318541e-05,0.047108806669712],[-0.00048689829418436,0.0096323611214757,-0.073384515941143],[-0.041651125997305,0.020702380686998,0.037509460002184]],[[-0.006222068797797,-0.14279003441334,-0.052832804620266],[-0.1126502007246,-0.19353613257408,-0.11192943900824],[-0.14512731134892,-0.086719907820225,-0.10167426615953]],[[-0.0062434524297714,-0.054126806557178,-0.085465557873249],[0.044003240764141,0.047262649983168,0.045781999826431],[0.00043304963037372,0.062021777033806,-0.032384108752012]],[[0.012265536002815,-0.028123255819082,0.0075959227979183],[0.0083092814311385,0.079498276114464,-0.048529252409935],[0.023911818861961,-0.017599267885089,-0.0062066647224128]],[[0.052800055593252,0.061891678720713,-0.013769351877272],[-0.037381108850241,0.065962508320808,-0.084968432784081],[-0.012698451988399,-0.026895435526967,-0.029227962717414]],[[0.06730081140995,0.043783705681562,-0.044065270572901],[-0.054742109030485,-0.02745614759624,-0.046720705926418],[0.04811517521739,0.0081090172752738,-0.047282937914133]],[[0.012381696142256,0.059111069887877,-0.022883744910359],[0.056516397744417,0.033585377037525,-0.018808284774423],[0.01505646109581,-0.06248277798295,-0.050615347921848]],[[0.024317510426044,0.065564878284931,-0.030959563329816],[-0.059413466602564,0.10033851861954,-0.012864612974226],[-0.13125401735306,0.028249876573682,0.052064400166273]],[[0.014376704581082,0.038745246827602,-0.0096202716231346],[-0.023058887571096,0.0092133553698659,0.014191110618412],[0.00071277900133282,-0.016914639621973,-0.04477321729064]],[[-0.039800893515348,0.0074510369449854,0.044910747557878],[0.015409784391522,-0.0050012557767332,-0.025871971622109],[-0.046729005873203,0.083717234432697,0.013347032479942]],[[0.011222281493247,0.037460830062628,-0.0443080291152],[0.012705241329968,-0.036287363618612,0.04994648322463],[0.068849384784698,-0.00076900672866032,-0.045197613537312]],[[-0.081912182271481,-0.1128401979804,-0.13283914327621],[-0.21363392472267,-0.22098505496979,-0.17656719684601],[-0.030902752652764,-0.21066537499428,-0.085702255368233]],[[-0.013179206289351,0.036729674786329,0.031438361853361],[0.061174724251032,-0.079214714467525,-0.069423340260983],[0.01000489667058,0.0096901087090373,0.029092470183969]],[[0.00054232880938798,0.042247340083122,0.029895195737481],[0.0023769193794578,-0.026656799018383,-0.00035543899866752],[0.010815374553204,-0.060442306101322,-0.046632301062346]],[[0.022392952814698,-0.012017194181681,-0.017652686685324],[-0.034202918410301,0.011686960235238,0.012922555208206],[-0.022312486544251,0.017686815932393,0.015210755169392]],[[0.057365465909243,-0.0038369938265532,0.027207370847464],[-0.008837278932333,-0.026754021644592,-0.037074401974678],[-0.053932704031467,0.036389663815498,-0.012587280012667]],[[-0.02876391261816,-0.078837312757969,0.0052700457163155],[0.01756220497191,-0.043884191662073,0.053077809512615],[0.032987847924232,0.016044285148382,0.043948449194431]],[[0.0059551638551056,-0.085490874946117,0.08894670009613],[0.027031719684601,-0.024172948673368,0.0051209810189903],[0.058930318802595,-0.076066732406616,0.014833718538284]],[[-0.032403890043497,0.047046430408955,-0.024093355983496],[0.06208311393857,0.01723094470799,-0.062936097383499],[0.017008785158396,-0.028221381828189,0.018486170098186]],[[-0.01840247400105,0.031344067305326,-0.0034876465797424],[0.052173007279634,-0.06224899739027,0.016055393964052],[0.040716107934713,-0.04800383374095,0.0033769411966205]],[[-0.02898284047842,0.047330234199762,0.0098300604149699],[0.0015457043191418,-0.03524286672473,0.057296928018332],[-0.01961312815547,0.0065810629166663,-0.00884491764009]],[[-0.013860878534615,-0.0020329041872174,-0.033425934612751],[0.015906972810626,0.048460002988577,-0.011186900548637],[0.0017194508109242,-0.026881633326411,0.029072262346745]],[[-0.055348232388496,0.062596641480923,-0.014700463972986],[0.010898319073021,0.051448579877615,0.014406321570277],[0.016431571915746,-0.063392169773579,0.011947822757065]],[[-0.010624905116856,-0.025207618251443,0.05841126665473],[-0.0036405879072845,-0.065216913819313,0.02083314023912],[0.049777802079916,-0.0052103428170085,0.0074808103963733]],[[-0.0073379431851208,-0.038048975169659,0.072879582643509],[-0.059080053120852,0.086689569056034,0.048123065382242],[-0.03542897477746,-0.011119094677269,0.001821234007366]],[[-0.013906564563513,0.028142515569925,0.050153452903032],[0.0023603695444763,-0.029918391257524,-0.044884916394949],[0.053297355771065,-0.039159875363111,-0.016701860353351]],[[0.026027366518974,-0.044678874313831,0.031866122037172],[-0.056773297488689,0.066261783242226,-0.01181120146066],[0.013055969960988,-0.065304547548294,-0.035761006176472]],[[-0.017604652792215,-0.033228281885386,0.0029067487921566],[0.0079031791538,0.032608639448881,0.019589561969042],[-0.019280195236206,0.047486994415522,-0.03349119797349]],[[0.006775263696909,-0.024335235357285,-0.038748804479837],[0.033809456974268,0.006213903427124,0.025771928951144],[0.050496537238359,-0.0017936410149559,-0.0076248650439084]],[[-0.017547957599163,0.04046193882823,-0.020627658814192],[0.010210413485765,0.024977205321193,-0.012770589441061],[-0.022307367995381,-0.028013169765472,0.0064308163709939]],[[-0.0032281980384141,-0.033410809934139,-0.044496987015009],[-0.012891573831439,0.011588275432587,0.035060480237007],[0.017607092857361,0.037926398217678,0.08355325460434]],[[-0.02657656185329,-0.015999855473638,0.01778057962656],[0.049151752144098,0.0008902745321393,-0.038023211061954],[-0.010988148860633,-0.011362010613084,0.020956974476576]]],[[[0.057744689285755,0.11949513107538,0.12039659172297],[0.014981005340815,0.010054784826934,0.089524880051613],[-0.083789475262165,0.031288862228394,-0.050380498170853]],[[0.019597934558988,0.057951167225838,-0.024135980755091],[0.038621123880148,-0.0023813988082111,0.008410781621933],[-0.0041967304423451,-0.082346439361572,0.043673969805241]],[[-0.073516443371773,0.07350630313158,-0.01598952524364],[0.045341268181801,-0.048231169581413,0.123853482306],[-0.038993757218122,0.0097237499430776,0.081728778779507]],[[0.10029578953981,-0.036405220627785,0.055857095867395],[-0.11281467229128,-0.018094647675753,0.01663919724524],[-0.06297342479229,-0.04400921612978,0.16937652230263]],[[-0.098769716918468,0.022009467706084,0.12885984778404],[-0.037498857825994,0.088549993932247,0.13646613061428],[-0.065705351531506,0.059723112732172,0.0050966064445674]],[[-0.025789117440581,0.068675361573696,0.15662807226181],[-0.023419369012117,0.086067199707031,-0.088548913598061],[-0.043193880468607,0.072860434651375,-0.07170020788908]],[[0.090365946292877,-0.0060223382897675,-0.039754282683134],[0.026364946737885,0.060526609420776,-0.017081439495087],[0.063394263386726,0.11970680207014,0.062550246715546]],[[0.077997982501984,0.087902225553989,0.01620683260262],[0.092642545700073,0.00045636011054739,-0.022423828020692],[0.05947745218873,-0.0017313294811174,0.23079025745392]],[[0.037983562797308,-0.071011744439602,-0.027103928849101],[0.048070952296257,-0.046281360089779,-0.040090832859278],[0.092049427330494,-0.11262290924788,0.043670400977135]],[[0.025773845613003,0.14148487150669,-0.059642132371664],[-0.040668502449989,0.0030090108048171,0.054760601371527],[-0.023357443511486,0.048115108162165,0.1027674973011]],[[-0.02056603692472,0.034961838275194,0.013214978389442],[0.094385594129562,-0.0022605671547353,-0.076400808990002],[-0.019469248130918,-0.067840725183487,-0.038322869688272]],[[0.0091512184590101,0.014233825728297,0.071919649839401],[-0.099669367074966,-0.056407798081636,0.10319826751947],[0.077443204820156,-0.18269725143909,0.045080825686455]],[[-0.089139111340046,0.011929890140891,-0.0099972281605005],[0.002746922429651,0.01915037073195,-0.023480366915464],[-0.064477689564228,-0.00074334919918329,0.10275470465422]],[[-0.015587193891406,0.091843090951443,-0.11661396920681],[0.033270116895437,-0.00046965508954599,-0.21896126866341],[-0.079027034342289,-0.096398711204529,0.050602532923222]],[[0.043071325868368,0.03498038649559,-0.053774189203978],[-0.017499374225736,0.07871487736702,-0.0035706521011889],[-0.2373781055212,-0.067120119929314,-0.077554956078529]],[[-0.024875467643142,-0.21408876776695,0.042336255311966],[0.015165171585977,-0.036665704101324,0.0315349586308],[-0.078470878303051,0.056926723569632,-0.18940851092339]],[[-0.02428643591702,-0.084718823432922,-0.043359711766243],[-0.030342251062393,-0.057991567999125,-0.024987682700157],[-0.05565981566906,0.015275651589036,-0.03445091471076]],[[0.035829499363899,-0.049688316881657,-0.18121533095837],[0.034622363746166,-0.019759809598327,0.0047369063831866],[0.04237899556756,-0.002875919919461,0.11365027725697]],[[-0.056081045418978,-0.084953807294369,0.021259492263198],[-0.031219810247421,0.059629119932652,-0.017821138724685],[-0.076818890869617,-0.19216305017471,0.043283946812153]],[[-0.069727674126625,-0.14496158063412,-0.025262221693993],[0.010372785851359,-0.0084134098142385,0.036251246929169],[-0.010262195020914,0.015180786140263,0.071292243897915]],[[0.08948165178299,0.020710360258818,0.034579236060381],[-0.012425486929715,0.070368267595768,-0.070111781358719],[-0.070442289113998,0.076844625174999,-0.017590150237083]],[[-0.071905314922333,-0.045801039785147,0.027726601809263],[0.17827758193016,-0.045914150774479,-0.10597141087055],[-0.10836587846279,0.001105654402636,0.13137030601501]],[[-0.036446373909712,0.09063745290041,0.10664701461792],[-0.023892484605312,0.031992595642805,-0.014250232838094],[-0.0067769889719784,-0.14893947541714,-0.02566310018301]],[[0.042583245784044,-0.100352242589,0.044403947889805],[0.033704929053783,-0.034967888146639,0.012083451263607],[-0.018400702625513,0.038694005459547,0.019213818013668]],[[0.058089960366488,0.014093492180109,0.027784366160631],[0.040992271155119,-0.0064865918830037,0.0078840525820851],[-0.10502369701862,0.02016425691545,0.018552945926785]],[[0.028861500322819,-0.14733025431633,-0.053121857345104],[0.061167027801275,0.082368515431881,-0.06864869594574],[0.073698848485947,0.032163832336664,-0.041132658720016]],[[-0.046391975134611,0.020776595920324,-0.040541972965002],[0.076497197151184,0.048547476530075,0.023614797741175],[-0.076319769024849,0.047845087945461,-0.061709426343441]],[[4.2920659325318e-05,0.056141324341297,-0.10259014368057],[0.043345659971237,-0.043714117258787,0.11010747402906],[0.00077482050983235,0.038289740681648,0.027963940054178]],[[-0.076555818319321,-0.010412149131298,-0.011856348253787],[0.11050100624561,-0.17429335415363,0.064914099872112],[-0.005986878182739,-0.023236691951752,0.043852545320988]],[[0.018466765061021,-0.038040079176426,-0.054354555904865],[-0.068499319255352,-0.097508914768696,0.002280390355736],[0.047519281506538,-0.03673829138279,0.071075350046158]],[[-0.097539819777012,-0.10839431732893,0.15637357532978],[0.082002110779285,0.038268707692623,-0.0023557415697724],[0.16249339282513,0.12642128765583,-0.11250200867653]],[[0.039497077465057,0.0022114252205938,-0.075535371899605],[-0.11713703721762,-0.0024679445195943,-0.023247964680195],[0.061657536774874,-0.022594291716814,0.039887726306915]],[[0.13432773947716,0.041019860655069,-0.10104113817215],[0.0065508792176843,0.016492681577802,0.095414370298386],[0.14640493690968,0.024143463000655,0.0093337716534734]],[[-0.00094733253354207,0.063651695847511,-0.022247517481446],[-0.067186750471592,0.031616300344467,-0.20219218730927],[-0.10531148314476,0.00077522353967652,0.027140513062477]],[[0.057061657309532,-0.045863669365644,0.084748037159443],[-0.0096819223836064,-0.013623097911477,0.0068214731290936],[0.13781845569611,-0.045618992298841,0.010609262622893]],[[-0.026838876307011,0.054506778717041,-0.027791915461421],[-0.21205952763557,0.049216136336327,0.12291172146797],[0.024233946576715,-0.13740170001984,-0.018772812560201]],[[-0.040296889841557,-0.042373951524496,-0.033126231282949],[-0.16604945063591,-0.055716339498758,0.26197490096092],[-0.079806350171566,0.068763867020607,-0.02360799908638]],[[-0.039785500615835,-0.053607799112797,0.0092406868934631],[0.14870634675026,0.047611694782972,-0.032401911914349],[0.093827627599239,0.076985873281956,0.028930217027664]],[[0.090719744563103,-0.11647184193134,-0.013922277837992],[0.14144417643547,-0.09048406034708,-0.13135996460915],[0.014698155224323,-0.024812953546643,0.013889619149268]],[[-0.13151580095291,0.028829425573349,0.0011208754731342],[0.10259202867746,0.046296689659357,0.001365753938444],[-0.17102950811386,-0.10727442055941,0.07541785389185]],[[0.13263626396656,-0.070415169000626,0.060422208160162],[-0.059958312660456,0.090048119425774,-0.0068048010580242],[-0.0049976836889982,0.094308570027351,0.048092730343342]],[[-0.015700513496995,-0.15287375450134,-0.035263709723949],[-0.1109973937273,-0.050009157508612,0.0018527448410168],[0.041370440274477,-0.070725344121456,-0.2946409881115]],[[0.0008936031954363,-0.15127012133598,-0.0080099878832698],[0.14586485922337,-0.011787757277489,-0.0090647451579571],[-0.030549565330148,-0.089102648198605,-0.049651179462671]],[[-0.015041447244585,-0.05431355163455,-0.058195367455482],[0.10980272293091,-0.028988618403673,0.016122845932841],[-3.0356544812093e-05,0.13095183670521,0.0055769910104573]],[[0.1444226205349,0.070538431406021,-0.096077293157578],[0.019425028935075,0.016140099614859,-0.11140167713165],[0.060657259076834,0.078205078840256,0.024271244183183]],[[-0.023324577137828,0.045156579464674,-0.03722932562232],[0.11324032396078,-0.10208318382502,0.010030668228865],[0.059755269438028,0.048262283205986,0.049599636346102]],[[-0.013563450425863,0.070173524320126,0.030972000211477],[0.13046535849571,-0.06794585287571,-0.059498652815819],[0.1840026974678,0.04876733571291,-0.02073435112834]],[[-0.0023797785397619,0.0055079478770494,-0.02895743213594],[0.00052937789587304,0.02550533413887,-0.065239101648331],[0.057695239782333,0.082523658871651,-0.1266700476408]],[[0.10107942670584,0.037467107176781,-0.028613116592169],[0.07013612985611,0.013344135135412,0.04967950284481],[0.37457972764969,-0.05358824506402,-0.10439426451921]],[[-0.11770994961262,-0.061997380107641,0.15600529313087],[-0.046279165893793,-0.045467387884855,-0.053334515541792],[-0.025158861652017,0.044989440590143,-0.045219298452139]],[[0.078955136239529,-0.046241264790297,0.061827380210161],[-0.095272950828075,-0.038663633167744,-0.01095406524837],[-0.060188490897417,-0.021217724308372,0.050154015421867]],[[-0.059668030589819,0.036497674882412,-0.015846943482757],[-0.025011489167809,0.074209719896317,0.010231603868306],[-0.048309873789549,-0.10988579690456,0.083952262997627]],[[0.1039569452405,-0.077254250645638,0.013631881214678],[0.065259702503681,0.027771700173616,-0.017525317147374],[0.16396068036556,-7.928283594083e-06,-0.071317568421364]],[[-0.037938762456179,0.092084713280201,0.0053082448430359],[0.07684151083231,-0.055992275476456,-0.15677215158939],[0.1038544178009,-0.010401067323983,-0.046296618878841]],[[-0.013244372792542,0.0064562642946839,0.03321485966444],[0.088714204728603,0.021150827407837,-0.048264022916555],[0.12912587821484,0.079175166785717,-0.1154121607542]],[[0.038363292813301,0.041092187166214,0.13814026117325],[-0.020697033032775,-0.017282826825976,0.010532758198678],[-0.14263892173767,-0.029955059289932,-0.13979026675224]],[[0.083134278655052,-0.063182950019836,0.068341292440891],[-0.053995490074158,0.099871501326561,-0.12592580914497],[-0.21972967684269,-0.025897927582264,0.00058838084805757]],[[-0.092832177877426,-0.13388986885548,0.227249994874],[0.099523566663265,-0.120566226542,-0.064748533070087],[0.086750067770481,-0.033091574907303,0.0074244090355933]],[[0.066196881234646,0.08201702684164,0.08183678239584],[0.010396834462881,-0.056729979813099,-0.015829358249903],[-0.065184466540813,0.095945611596107,0.044789470732212]],[[-0.068555541336536,-0.19758760929108,-0.016652788966894],[0.14391113817692,0.063501313328743,-0.028200356289744],[-0.15653395652771,-0.10968104749918,0.092979282140732]],[[0.0016118397470564,-0.012453451752663,-0.12087260186672],[-0.052160706371069,0.11987265944481,-0.096320070326328],[-0.011841527186334,-0.17382942140102,-0.021299712359905]],[[-0.006604575086385,0.035340864211321,-0.16463007032871],[0.11011251807213,-0.082983985543251,-0.068704478442669],[-0.048455137759447,0.022148424759507,0.21032257378101]],[[0.069690324366093,-0.082810066640377,0.052724037319422],[-0.050462119281292,-0.093229599297047,-0.015664916485548],[-0.17555803060532,-0.11317031085491,-0.071666046977043]],[[0.052582520991564,-0.04243690520525,0.023432964459062],[0.1186400949955,-0.024773668497801,0.031029546633363],[0.025241499766707,-0.03530340269208,-0.05232372879982]]],[[[-0.18465538322926,-0.029763624072075,0.35513365268707],[0.12913239002228,0.084073752164841,-0.087195254862309],[0.20485062897205,-0.11394216120243,0.067583180963993]],[[-0.0062185665592551,-0.086918167769909,0.06120028346777],[-0.0085112657397985,0.19086690247059,-0.027837011963129],[-0.2609276175499,-0.03943919762969,-0.012913112528622]],[[-0.10835915058851,0.033369202166796,0.05473655462265],[-0.06621365994215,-0.034575115889311,0.094710469245911],[-0.11668348312378,0.053451012820005,-0.13849546015263]],[[-0.0074938088655472,0.12115744501352,0.060850843787193],[-0.11209771037102,-0.11964523792267,-0.025612911209464],[-0.070967443287373,-0.094551369547844,-0.26790258288383]],[[-0.00094973796512932,-0.13057228922844,0.11393420398235],[-0.11956638097763,-0.078562304377556,-0.04024688154459],[-0.23124730587006,-0.21717229485512,-0.076393112540245]],[[0.027726799249649,-0.039096586406231,-0.087674386799335],[-0.12151635438204,-0.038835540413857,-0.013504467904568],[-0.31574577093124,-0.22828371822834,0.077299192547798]],[[-0.019187634810805,-0.042910899966955,0.10734502971172],[-0.083123937249184,0.012861100956798,0.15811458230019],[-0.040724743157625,0.11808785051107,0.019188765436411]],[[0.11537823826075,-0.022569693624973,0.039384599775076],[0.095065586268902,0.016677629202604,0.21118980646133],[0.20780076086521,0.17428360879421,-0.026784911751747]],[[0.069461189210415,-0.10931172221899,-0.098226048052311],[0.0024985615164042,0.010787358507514,0.08968835324049],[-0.019257534295321,0.038316134363413,-0.061880074441433]],[[0.035018112510443,-0.17802235484123,-0.13388454914093],[-0.0020220770966262,-0.0084470417350531,-0.13413049280643],[-0.061476167291403,-0.12052161991596,-0.2294194996357]],[[-0.16230081021786,-0.037370249629021,0.19398365914822],[0.097449101507664,0.11514382809401,-0.060411855578423],[-0.009120736271143,-0.10100851207972,-0.173843100667]],[[0.019675347954035,-0.21843069791794,0.031698785722256],[0.053152196109295,-0.20161862671375,-0.2439661771059],[0.028317511081696,-0.16156208515167,-0.22115890681744]],[[-0.15596310794353,0.068378858268261,0.097079150378704],[0.11285710334778,-0.092845447361469,-0.05262666195631],[0.095704615116119,0.10828518122435,0.23662181198597]],[[0.011259954422712,-0.00042296800529584,0.043292127549648],[0.052606169134378,0.014433349482715,-0.012090385891497],[-0.019536150619388,0.096428826451302,0.098991319537163]],[[0.094505049288273,0.033918969333172,0.10629814863205],[-0.071566686034203,0.022362112998962,-0.14235633611679],[0.084599390625954,-0.00063488067826256,-0.056704964488745]],[[-0.15219222009182,0.086143799126148,0.17969267070293],[0.0021949058864266,-0.044607799500227,-0.11475938558578],[-0.062369205057621,0.060241248458624,0.086460798978806]],[[-0.086213529109955,-0.22790502011776,-0.09682697057724],[0.28234776854515,0.057186342775822,0.14194779098034],[-0.19064183533192,0.1363974660635,0.029393849894404]],[[0.14437402784824,0.1776434481144,-0.11282729357481],[0.1233094483614,-0.04049239307642,-0.0075801322236657],[-0.019117675721645,-0.10201347619295,-0.307607203722]],[[0.027547797188163,0.14736483991146,0.038127481937408],[-0.11689795553684,-0.087841652333736,0.043351460248232],[0.021868633106351,-0.098386242985725,-0.044107209891081]],[[0.010893928818405,-0.028628554195166,-0.072655379772186],[-0.0062103224918246,-0.085248053073883,-0.20664158463478],[0.12277523428202,0.052889958024025,0.13750883936882]],[[-0.17503282427788,-0.143280595541,-0.062025614082813],[-0.10807822644711,-0.10820490121841,-0.096348613500595],[0.11080261319876,-0.13936175405979,0.15059651434422]],[[0.01111260894686,0.087537735700607,0.091831602156162],[-0.010325807146728,-0.057536840438843,0.069989629089832],[0.020577779039741,-0.18781921267509,0.15015371143818]],[[-0.2601472735405,-0.10869170725346,-0.0036660023033619],[-0.19107688963413,0.12083552777767,-0.0021863034926355],[0.021126415580511,0.17776174843311,0.10574778914452]],[[0.051875818520784,-0.093770630657673,-0.016584973782301],[0.10586179047823,-0.048425015062094,0.0081530809402466],[0.044766157865524,-0.022662157192826,0.086299031972885]],[[0.12090616673231,0.21723210811615,0.0029875487089157],[-0.21541634202003,-0.047806121408939,0.099525891244411],[-0.12612248957157,-0.036070939153433,0.057108394801617]],[[-0.062094688415527,-0.065077364444733,0.018018037080765],[-0.033067390322685,-0.06510902941227,-0.0021431129425764],[0.1023625805974,0.059289988130331,0.068302884697914]],[[-0.1399115473032,-0.20741304755211,-0.046760827302933],[0.14967678487301,0.039675835520029,0.059456441551447],[-0.055000901222229,-0.072371676564217,-0.097533173859119]],[[-0.30710729956627,-0.0071735219098628,0.0074164839461446],[-0.15412443876266,-0.1896335631609,-0.023449618369341],[0.00074778869748116,0.034584540873766,0.10906429588795]],[[0.1407372802496,0.043502975255251,-0.10088563710451],[-0.0751918181777,-0.066496439278126,-0.11124412715435],[-0.055377218872309,-0.047543350607157,-0.081961818039417]],[[0.076173096895218,0.054752569645643,-0.00014772852591705],[0.10066089034081,-0.1666247099638,0.074067495763302],[0.11046951264143,-0.0074974372982979,0.033121898770332]],[[0.0028609596192837,-0.12560293078423,-0.31339859962463],[0.13852961361408,-0.059107765555382,-0.21228250861168],[0.025462184101343,-0.080045789480209,-0.078591123223305]],[[0.16091141104698,0.019838945940137,0.024467146024108],[0.084671080112457,-0.13906528055668,-0.092217028141022],[0.14824913442135,0.07732030749321,-0.088180750608444]],[[0.093947947025299,-0.06060254201293,-0.081448644399643],[0.14011889696121,0.084764935076237,-0.019848939031363],[0.029077960178256,-0.050077505409718,0.075157977640629]],[[0.050161778926849,0.024872167035937,-0.0092428354546428],[-0.096665859222412,0.076802760362625,0.017054876312613],[-0.11016371101141,0.016961542889476,-0.031457923352718]],[[-0.10755157470703,0.055943425744772,0.30894702672958],[-0.14908111095428,-0.1298254430294,-0.037993039935827],[0.064491637051105,-0.092822574079037,-0.20509131252766]],[[-0.23807942867279,-0.034766618162394,0.11229908466339],[-0.20540364086628,-0.26402550935745,-0.083067268133163],[-0.034374944865704,-0.16622249782085,0.11760082095861]],[[-0.043432626873255,-0.12727980315685,0.18938745558262],[0.00061604997608811,-0.10606729239225,0.0063864858821034],[-0.17517352104187,-0.25727587938309,-0.20269773900509]],[[-0.036017660051584,-0.017328131943941,0.020437523722649],[-0.018615333363414,0.049726251512766,-0.020416354760528],[-0.18441021442413,0.068703711032867,0.13641485571861]],[[-0.12545520067215,-0.029253451153636,-0.16481848061085],[0.047205246984959,-0.12285458296537,-0.039465628564358],[0.04127349704504,-0.046525508165359,0.015475439839065]],[[-0.04680297523737,-0.046331025660038,-0.063890963792801],[-0.10188332945108,-0.011195155791938,-0.10688482969999],[-0.13688603043556,0.050222162157297,-0.053404942154884]],[[0.16311825811863,-0.11643414199352,0.0034871688112617],[0.031575802713633,-0.15217980742455,-0.066394992172718],[-0.0066834259778261,0.12178616225719,0.057377398014069]],[[-0.019529815763235,-0.25381463766098,-0.13745719194412],[-0.083098046481609,0.029413126409054,-0.015058709308505],[-0.16489274799824,-0.077881395816803,-0.047839619219303]],[[0.11701940745115,-0.0680812895298,-0.2507538497448],[-0.016476850956678,-0.1835964769125,0.03525085747242],[-0.03139815479517,-0.16950109601021,0.21330922842026]],[[-0.023536592721939,0.016683494672179,0.034367688000202],[-0.01137837767601,0.0014654095284641,0.028575997799635],[0.0090472651645541,-0.047236174345016,0.078326627612114]],[[-0.050507239997387,-0.017437631264329,0.037528924643993],[-0.08809819072485,0.12477475404739,-0.1454299390316],[0.15024870634079,-0.0083066495135427,-0.12284579873085]],[[-0.17589797079563,0.012847690843046,0.12738892436028],[-0.13371366262436,-0.1509013324976,0.096767254173756],[-0.0221879016608,-0.18682000041008,0.044519457966089]],[[0.03129493445158,-0.1330322176218,-0.13296896219254],[0.088025815784931,0.0066982652060688,-0.070782892405987],[-0.12013091892004,-0.10577008873224,0.041474260389805]],[[0.091977171599865,-0.040636952966452,-0.028260698541999],[-0.18752193450928,0.011002638377249,-0.233652099967],[-0.08881052583456,0.13315065205097,0.08021679520607]],[[0.030041104182601,0.15029752254486,-0.057911448180676],[0.069066122174263,0.025753937661648,0.018721340224147],[0.16341572999954,0.0045208930969238,0.081644169986248]],[[-0.042320318520069,-0.0054057352244854,-0.26132270693779],[-0.17842935025692,-0.16311253607273,-0.080128751695156],[0.023125246167183,-0.059368718415499,-0.03575599193573]],[[-0.042073022574186,-0.033916361629963,-0.081903427839279],[-0.098268568515778,-0.1026755720377,-0.10629031062126],[0.0240961574018,0.076406680047512,-0.0081708561629057]],[[0.034803636372089,-0.17510785162449,0.046290908008814],[-0.097760379314423,0.077056758105755,0.064732514321804],[0.026638306677341,0.055424068123102,-0.044542327523232]],[[0.027015833184123,-0.066555611789227,0.040818873792887],[0.0019302349537611,-0.056983049958944,-0.10830195993185],[0.09783611446619,0.099510855972767,-0.079617612063885]],[[-0.17507380247116,-0.020387832075357,0.1220063790679],[0.17492523789406,-0.09114496409893,0.062418878078461],[-0.013846336863935,-0.037893861532211,0.34252965450287]],[[-0.0047606374137104,-0.093494676053524,0.030214421451092],[-0.058946002274752,-0.10744227468967,-0.081971891224384],[-0.23449544608593,0.034509353339672,0.19002930819988]],[[-0.034032668918371,-0.076192267239094,-0.15847750008106],[0.033901080489159,0.10793244838715,-0.11213943362236],[-0.23855377733707,0.057179123163223,0.23632508516312]],[[-0.095577962696552,-0.09193055331707,0.10753893852234],[-0.22130481898785,-0.16683833301067,-0.14809294044971],[-0.22839826345444,-0.066480904817581,-0.016036117449403]],[[-0.084953613579273,0.010096511803567,-0.12121331691742],[-0.20943745970726,-0.031001277267933,-0.19348266720772],[-0.0077133886516094,-0.18054114282131,-0.12797835469246]],[[-0.046508513391018,-0.00055655185133219,-0.096122398972511],[0.14674217998981,0.13916613161564,0.078979231417179],[0.016041420400143,0.065332405269146,-0.048502024263144]],[[0.032947856932878,0.010790971107781,-0.12011586874723],[0.0089904284104705,0.029285231605172,-0.023182813078165],[0.021833868697286,-0.13653443753719,-0.067709617316723]],[[0.13402682542801,-0.043791636824608,0.068417631089687],[-0.020975194871426,-0.09254465252161,-0.11170069873333],[0.10142123699188,0.0035818519536406,-0.056610733270645]],[[0.11597402393818,0.13385006785393,0.021484518423676],[-0.23016850650311,0.12928029894829,-0.021636074408889],[-0.093139179050922,0.15615636110306,0.077725559473038]],[[0.25424003601074,-0.23922784626484,-0.06194332242012],[0.075706534087658,0.083776168525219,0.19593490660191],[-0.088228620588779,-0.14613583683968,-0.14140401780605]],[[-0.034948363900185,-0.033280547708273,-0.1831686347723],[-0.024983257055283,0.019211763516068,-0.060549758374691],[-0.088005200028419,0.11265809834003,0.12586170434952]]],[[[0.072222702205181,-0.062966011464596,-0.018752655014396],[-0.019740166142583,0.0076406802982092,-0.19384676218033],[0.011278390884399,0.13958786427975,-0.066010482609272]],[[-0.01127780135721,0.030539873987436,-0.15318758785725],[0.046022951602936,0.0051142810843885,-0.013581419363618],[-0.18574279546738,0.085741110146046,0.048868466168642]],[[-0.021668622270226,-0.11975798755884,-0.13818028569221],[0.012746943160892,-0.013129375874996,0.17673255503178],[-0.0081688268110156,0.1277923732996,0.017151899635792]],[[-0.017172301188111,0.051307059824467,-0.10749027878046],[0.17853744328022,-9.8985132353846e-05,-0.18349176645279],[0.013935401104391,-0.0088605359196663,-0.17527800798416]],[[0.020824098959565,-0.087934382259846,0.071544900536537],[0.042734563350677,-0.059521019458771,0.022241607308388],[-0.013443845324218,0.061135966330767,-0.093760684132576]],[[-0.02309306524694,0.086183704435825,-0.12191747128963],[-0.0010102048981935,0.060009378939867,-0.020933214575052],[0.044714894145727,0.077895775437355,0.029383668676019]],[[0.019277127459645,-0.019812189042568,-0.091884039342403],[-0.1046172901988,0.04266595095396,-0.15498206019402],[-0.049097541719675,-0.028512511402369,-0.058899227529764]],[[-0.0051367585547268,-0.043023556470871,-0.011953852139413],[0.079279191792011,-0.047171618789434,0.047413613647223],[0.077200748026371,0.024384163320065,0.053737666457891]],[[-0.027071941643953,-0.081571459770203,-0.095469415187836],[-0.030271096155047,0.031901184469461,-0.019855799153447],[0.084448002278805,0.039845746010542,0.040168199688196]],[[-0.072283282876015,-0.12066402286291,0.14414300024509],[-0.070407554507256,-0.18445168435574,-0.080743573606014],[0.1414890140295,0.13233791291714,0.011075664311647]],[[-0.14059999585152,0.049280162900686,0.022321112453938],[0.080579400062561,-0.10368754714727,-0.072357997298241],[-0.15084007382393,0.020993657410145,0.091928698122501]],[[-0.031533975154161,0.0020040727686137,-0.092970386147499],[-0.081478394567966,0.083717755973339,-0.15706318616867],[-0.041892185807228,0.039097458124161,-0.099457278847694]],[[-0.043716300278902,0.0703981295228,-0.20746874809265],[-0.12738342583179,0.17144307494164,-0.14834706485271],[0.029954195022583,0.04921568185091,-0.005669969599694]],[[-0.079153873026371,-0.034530833363533,0.08433236181736],[0.17713324725628,-0.062423691153526,0.063025929033756],[0.044051699340343,-0.057050541043282,-0.060650546103716]],[[-0.077408723533154,-0.013273594900966,0.02452427148819],[0.10097915679216,0.024335471913218,-0.057656440883875],[0.025550454854965,-0.052182607352734,0.048412825912237]],[[-0.28706932067871,-0.069403946399689,-0.21077947318554],[0.21448218822479,-0.077273473143578,0.10170124471188],[-0.022664502263069,-0.052324492484331,-0.45856845378876]],[[-0.039255287498236,-0.14628559350967,-0.11423051357269],[-0.041658829897642,0.027485460042953,-0.17001138627529],[0.18314188718796,-0.041244965046644,0.17929588258266]],[[0.13161081075668,-0.0054088640026748,-0.10230346024036],[0.045012164860964,0.090295560657978,-0.17507727444172],[0.05770006403327,-0.055124793201685,-0.029325701296329]],[[0.14074352383614,0.073171801865101,-0.16741202771664],[0.086723320186138,-0.020751189440489,-0.10945694893599],[-0.057021342217922,-0.036071732640266,-0.086112581193447]],[[0.11054376512766,-0.032046101987362,0.0088157411664724],[-0.047915577888489,0.099177293479443,0.027618864551187],[0.0029331832192838,-0.16345059871674,0.085655465722084]],[[-0.088609457015991,-0.032256621867418,-0.10107842087746],[-0.066192217171192,-0.016109347343445,-0.086748138070107],[-0.18879729509354,0.0077016167342663,0.061245236545801]],[[-0.1894536614418,-0.019535711035132,-0.12943668663502],[0.2045873850584,0.016079677268863,0.055712688714266],[-0.01998420804739,0.083617083728313,0.09611938148737]],[[-0.15339238941669,-0.025373769924045,-0.32611030340195],[0.0090745240449905,-0.089086882770061,-0.072328343987465],[-0.029511304572225,-0.063425086438656,-0.076600968837738]],[[-0.060931723564863,-0.14830085635185,-0.047806274145842],[0.028800271451473,-0.15828724205494,-0.1744762212038],[-0.012382154352963,0.0052613345906138,-0.1428729891777]],[[-0.33551675081253,-0.20376878976822,-0.25762224197388],[0.11327225714922,-0.12081356346607,-0.11088828742504],[0.2396454513073,0.058234188705683,-0.043862670660019]],[[0.091702535748482,0.083304770290852,-0.13551940023899],[-0.040795605629683,0.021309735253453,-0.23202455043793],[0.04411031678319,-0.030457954853773,-0.16478870809078]],[[-0.098370581865311,-0.23000082373619,-0.060488916933537],[-0.29839846491814,-0.10114563256502,0.064456142485142],[-0.12026566267014,0.12768946588039,0.052361853420734]],[[0.024509029462934,-0.083012476563454,-0.099874995648861],[-0.082435838878155,-0.11627347767353,-0.063316978514194],[0.13901396095753,-0.16217277944088,0.023671068251133]],[[0.11914828419685,0.065807446837425,-0.092866443097591],[-0.010772372595966,-0.0096451556310058,0.01455319672823],[-0.065748631954193,-0.032923229038715,-0.023353787139058]],[[-0.035948108881712,0.0038898380007595,-0.1892916560173],[0.064881592988968,-0.043413005769253,-0.032937470823526],[0.082283049821854,0.13686661422253,-0.12586937844753]],[[-0.075374387204647,0.031009763479233,0.085448414087296],[-0.038940943777561,-0.097516648471355,-0.053954266011715],[0.066102281212807,-0.041869331151247,0.14455468952656]],[[0.014605326578021,-0.083607003092766,0.12151213735342],[-0.10713273286819,0.10891348868608,-0.074515029788017],[0.20941790938377,-0.10379128903151,0.045228242874146]],[[-0.10029429942369,-0.036033596843481,0.018544610589743],[0.0093361241742969,0.013051806949079,0.011208641342819],[-0.10793752968311,0.097594127058983,0.052851613610983]],[[0.018590491265059,-0.06931471824646,0.066655918955803],[-0.090995848178864,-0.027722073718905,0.01863295212388],[-0.054928701370955,0.072922401130199,-0.079537183046341]],[[0.21131402254105,0.070137016475201,-0.0076853292994201],[0.028608471155167,-0.12501579523087,-0.17776781320572],[0.021265568211675,-0.014791404828429,-0.028624938800931]],[[0.12357376515865,-0.033874530345201,-0.24012586474419],[-0.22427818179131,-0.0043778899125755,-0.13032440841198],[0.025698002427816,0.038944989442825,-0.085849784314632]],[[-0.097811669111252,0.13501554727554,0.017309632152319],[-0.06982109695673,0.024520803242922,0.049229841679335],[-0.07177646458149,0.040842980146408,-0.081447586417198]],[[0.11114954203367,-0.0098538249731064,-0.068014122545719],[0.0062341247685254,0.099631570279598,0.038336586207151],[0.080708675086498,0.099709585309029,0.1631223410368]],[[0.050601985305548,-0.13861159980297,-0.16218088567257],[-0.00138418097049,-0.16692724823952,0.063183262944221],[0.023813439533114,-0.088443674147129,-0.15365687012672]],[[0.022039599716663,0.054574269801378,-0.029474101960659],[0.020929988473654,-0.073075130581856,-0.092799186706543],[0.046138975769281,0.083484075963497,-0.042213633656502]],[[0.049238666892052,-0.054485447704792,0.047566667199135],[-0.14939095079899,0.08260066062212,-0.0030627700034529],[0.12065403163433,-0.029589047655463,-0.16921737790108]],[[0.01052825525403,-0.073668643832207,-0.16100792586803],[0.0067514926195145,-0.038250975310802,0.011487966403365],[-0.080367892980576,0.16122478246689,-0.0014407421695068]],[[-0.069352835416794,0.045290719717741,-0.087159216403961],[-0.017597828060389,0.037888962775469,-0.15253308415413],[0.11169286817312,0.08648257702589,-0.11800349503756]],[[0.20528236031532,0.095199666917324,0.0093200709670782],[-0.15176419913769,0.060877852141857,-0.031353715807199],[-0.0094193266704679,-0.063595682382584,-0.097390420734882]],[[-0.13122284412384,0.20464394986629,-0.058498062193394],[-0.019370835274458,0.0085591329261661,0.1110497713089],[-0.047208476811647,-0.1568109691143,-0.12489389628172]],[[-0.26628172397614,-0.082729414105415,-0.38273215293884],[-0.29256403446198,0.012913422659039,0.05784297734499],[-0.17248544096947,0.087551422417164,0.10966054350138]],[[-0.088331162929535,-0.093000248074532,0.19883115589619],[0.049369301646948,-0.027489870786667,-0.050112277269363],[-0.013868534937501,0.10466861724854,0.0017714055720717]],[[-0.047264151275158,-0.11900016665459,0.042273413389921],[0.048977874219418,-0.07190940529108,0.0068091624416411],[0.074108719825745,-0.21912336349487,-0.14073240756989]],[[0.11287394165993,0.053997322916985,0.16917437314987],[-0.049501817673445,0.14087142050266,0.042340192943811],[0.098070666193962,-0.036249827593565,0.03896726295352]],[[0.063385345041752,-0.14230987429619,-0.20141197741032],[0.035007979720831,-0.094295807182789,-0.014453126117587],[0.034118190407753,-0.034792643040419,-0.27294528484344]],[[0.075490735471249,-0.25512880086899,0.056061506271362],[0.056435626000166,-0.024526217952371,-0.0089262081310153],[0.17835469543934,-0.15517064929008,-0.077581822872162]],[[-0.14568811655045,-0.033745374530554,0.055967073887587],[-0.040960673242807,0.023656878620386,-0.00036954760435037],[0.003441589185968,-0.03246259316802,-0.1697239279747]],[[0.12136009335518,0.21066062152386,0.0095082437619567],[-0.0034742483403534,0.088975071907043,-0.039246533066034],[-0.13678732514381,-0.092264927923679,0.017009796574712]],[[0.01792929135263,-0.13633207976818,-0.07048100233078],[0.10904497653246,-0.072120182216167,0.031196104362607],[0.11743105202913,-0.125677511096,0.093053258955479]],[[-0.048269089311361,-0.16566851735115,-0.074721731245518],[0.022947678342462,-0.080316811800003,0.098319925367832],[0.088072471320629,-0.056846171617508,-0.087518438696861]],[[0.022785343229771,-0.11190066486597,-0.18576797842979],[-0.029747324064374,-0.0022076736204326,-0.020745802670717],[0.089514292776585,0.021565018221736,0.02113732881844]],[[-0.020541707053781,-0.10470440238714,-0.21805202960968],[0.089378327131271,-0.038696281611919,-0.1490298807621],[-0.022648081183434,0.066942028701305,-0.10829516500235]],[[-0.10951742529869,0.15977868437767,-0.23096051812172],[-0.25041350722313,0.069177873432636,-0.051659379154444],[-0.071838647127151,0.042546048760414,0.14103470742702]],[[-0.0093484064564109,0.077405788004398,-0.11521282792091],[-0.0070222490467131,0.017241394147277,-0.013512398116291],[0.055157773196697,-0.02341641113162,-0.08533900231123]],[[-0.14604642987251,0.059776108711958,-0.20451457798481],[0.06033580750227,0.22565843164921,-0.10046824812889],[0.30044895410538,-0.16324178874493,0.0064420863054693]],[[-0.054034296423197,-0.047800563275814,-0.30454644560814],[-0.041362430900335,-0.067737333476543,-0.10724695026875],[-0.036703143268824,-0.095114938914776,-0.19990316033363]],[[-0.027214225381613,-0.10615087300539,-0.065305560827255],[0.12979780137539,-0.1080077663064,-0.15442037582397],[-0.18934689462185,0.018708180636168,-0.032612953335047]],[[-0.042168971151114,-0.0625329464674,-0.22939066588879],[0.039455853402615,0.016826821491122,-0.081144109368324],[0.1120543256402,-0.059522140771151,-0.15755768120289]],[[-0.010717957280576,0.09757487475872,0.027428243309259],[-0.044142559170723,0.064511425793171,-0.15514317154884],[0.00063287990633398,0.056142874062061,0.080789275467396]]],[[[0.019749013707042,-0.018605375662446,0.040345083922148],[0.013587870635092,-0.018162151798606,0.016109295189381],[-0.09620201587677,0.0079055959358811,0.012470670044422]],[[-0.058300983160734,0.034335508942604,-0.010460999794304],[0.047615475952625,0.14094656705856,-0.048702143132687],[-0.081997081637383,0.077119052410126,-0.048451412469149]],[[0.054649733006954,0.051342580467463,-0.016208879649639],[0.0081789642572403,-0.031461022794247,0.0026438462082297],[-0.019316313788295,-0.031334139406681,-0.026854382827878]],[[-0.044854715466499,0.030380591750145,-0.026199281215668],[0.051002752035856,0.0051832660101354,-0.044730823487043],[-0.060874238610268,0.010845717974007,0.043289735913277]],[[-0.0020448842551559,0.049417618662119,0.00023036217316985],[0.016217978671193,0.046243913471699,-0.046530175954103],[0.04710353538394,-0.065637044608593,-0.016802648082376]],[[-0.033508993685246,0.020503271371126,0.1145843937993],[-0.0052266549319029,-0.067159935832024,0.033622603863478],[0.052553877234459,0.0093245580792427,-0.13043139874935]],[[0.084014065563679,-0.026261998340487,0.042094543576241],[0.022529164329171,-0.0336993932724,-0.08484099060297],[-0.036997426301241,-0.064973212778568,-0.0027787366416305]],[[0.057676903903484,-0.042463213205338,0.027000365778804],[-0.086022637784481,-0.095537193119526,-0.048247672617435],[-0.076890647411346,-0.048759318888187,-0.072653919458389]],[[-0.037200305610895,-0.23825268447399,-0.11773695796728],[-0.057739742100239,-0.19477988779545,-0.1219699010253],[-0.0038661174476147,-0.22311633825302,-0.018990384414792]],[[0.01814697869122,-0.0030478241387755,0.01374739035964],[-0.038640812039375,0.033169224858284,-0.006959923543036],[-0.097215510904789,0.072006516158581,0.0075457692146301]],[[-0.031631115823984,0.026590637862682,0.022405628114939],[-0.022687906399369,0.031738944351673,-0.032561264932156],[0.057672098278999,-0.061344143003225,0.033164065331221]],[[0.0082741528749466,-0.030436309054494,-0.034441813826561],[0.027457598596811,0.026789639145136,0.016809223219752],[-0.032283645123243,0.0054589742794633,0.009970678947866]],[[-0.0099723907187581,-0.015641808509827,-0.031317852437496],[0.054913122206926,0.05488258972764,-0.022127579897642],[-0.12195698916912,0.042182236909866,0.0054448759183288]],[[-0.0031770381610841,0.038916792720556,-0.0077220043167472],[-0.0037350440397859,0.035868741571903,0.0099971704185009],[-0.010490914806724,0.058680515736341,-0.098641388118267]],[[-0.007468334864825,-0.077572785317898,0.021487575024366],[0.087766855955124,-0.024552488699555,-0.036561116576195],[-0.0069867451675236,0.069486789405346,-0.033764950931072]],[[-0.0088409744203091,-0.04040789231658,-0.021805493161082],[0.018932031467557,-0.013455206528306,0.04394206777215],[-0.034641999751329,0.022945359349251,-4.732758316095e-05]],[[0.052119001746178,-0.046953834593296,0.021912660449743],[0.045853700488806,-0.0058589507825673,0.0064011081121862],[-0.04888604208827,0.0073617254383862,-0.031209388747811]],[[0.03994082659483,-0.021163458004594,-0.073792077600956],[0.074756197631359,0.001684476970695,0.066010601818562],[-0.030152769759297,0.10813172161579,-0.18396331369877]],[[0.011330644600093,0.017856907099485,-0.11919932067394],[-0.014333757571876,0.047749817371368,0.011056863702834],[-0.020606521517038,0.052732918411493,0.015412387438118]],[[0.040674783289433,-0.016358541324735,0.029640970751643],[-0.046787887811661,-0.024315966293216,-0.01892732270062],[-0.053405743092299,0.028353948146105,0.013936396688223]],[[-0.094291009008884,0.044908862560987,0.023475352674723],[0.03168723732233,0.042352635413408,0.037204302847385],[0.026866134256124,-0.10627587139606,-0.012737920507789]],[[0.05779018625617,0.039540391415358,0.10087855905294],[-0.081542536616325,-0.017453901469707,-0.042669471353292],[-0.02745708450675,-0.021713031455874,0.01156123355031]],[[0.026130767539144,-0.011827580630779,0.0088885175064206],[-0.089035540819168,-0.087495498359203,0.047834359109402],[0.026532495394349,0.031530417501926,0.03778662532568]],[[-0.057022616267204,-0.063029557466507,-0.059364214539528],[0.011110571213067,-0.057438641786575,0.0183748267591],[0.044400915503502,0.062218714505434,0.04703751578927]],[[-0.079652152955532,0.046558938920498,-0.018222371116281],[-0.016826827079058,-0.045173231512308,0.015211115591228],[0.11134337633848,-0.066494137048721,0.043265100568533]],[[-0.011733252555132,0.026418583467603,-0.040747154504061],[0.062780469655991,-0.04041001200676,-0.07815520465374],[0.054987095296383,0.021486261859536,0.01292438711971]],[[0.0060535995289683,-0.0046924487687647,0.014966047368944],[0.040980722755194,-0.058786030858755,0.01329303253442],[-0.087282635271549,-0.0066196722909808,0.026248862966895]],[[-0.017263809219003,-0.011797462590039,0.059881325811148],[-0.02311884984374,-0.0060182698071003,-0.010193136520684],[0.02284880168736,0.0097955167293549,-0.021620407700539]],[[0.01349856518209,0.025804443284869,-0.014574197120965],[0.016482913866639,-0.060368366539478,0.021944344043732],[0.041230723261833,-0.042119938880205,-0.011372627690434]],[[0.058143764734268,-0.023222457617521,-0.03147054463625],[-0.027643254026771,0.045769229531288,0.010863760486245],[-0.031916029751301,-0.030767101794481,0.03894355520606]],[[-0.083403758704662,0.0052759503014386,0.021508989855647],[-0.016706502065063,0.021981978788972,0.028812756761909],[0.033229477703571,0.061787597835064,-0.030952444300056]],[[0.034466397017241,-0.053449161350727,-0.0027857518289238],[-0.039194587618113,-0.056625541299582,0.01631448790431],[0.012030279263854,0.018251150846481,0.073417663574219]],[[-0.010271484963596,0.0421372205019,0.019465142861009],[-0.024707403033972,-0.064454354345798,0.0015436941757798],[0.052692610770464,-0.016774823889136,-0.0030494863167405]],[[-0.018077999353409,0.08287239074707,-0.022000646218657],[0.0030083968304098,-0.077362410724163,0.012699069455266],[-0.070682272315025,-0.035149414092302,0.0078231319785118]],[[0.039866540580988,0.024019522592425,0.083811774849892],[-0.038188342005014,-0.022066565230489,-0.023873457685113],[-0.0027382427360862,-0.06766664981842,-0.013241659849882]],[[0.017917659133673,-0.0045754723250866,0.035949230194092],[-0.062898240983486,0.036120727658272,-0.019384955987334],[-0.012863451614976,0.017033893615007,0.017494888976216]],[[-0.077337093651295,0.033579245209694,0.0033017953392118],[-0.020563341677189,-0.03504640981555,0.034172553569078],[0.01437845826149,0.020684814080596,0.012165579944849]],[[-0.027582002803683,-0.055053424090147,0.092842072248459],[0.019175436347723,-0.051219452172518,0.034580081701279],[-0.0028400393202901,0.023816682398319,0.020534686744213]],[[0.024458572268486,-0.055945929139853,0.03036330640316],[-0.027101630344987,0.033313754945993,-0.047032032161951],[-0.05022780969739,-0.019894283264875,0.051962245255709]],[[0.00026811935822479,-0.041325759142637,0.025995444506407],[0.019183469936252,-0.12071393430233,-0.028008433058858],[0.0045905443839729,0.087364919483662,-0.048494592308998]],[[-0.045740440487862,-0.058663263916969,0.024894777685404],[0.06130038574338,0.035808596760035,-0.038278806954622],[-0.016218591481447,0.034184955060482,-0.0091243265196681]],[[0.06642509251833,-0.021483669057488,0.010038360022008],[-0.02345902658999,-0.027916543185711,0.038321822881699],[-0.039255723357201,0.021956570446491,-0.048700504004955]],[[0.02012949064374,-0.0082125514745712,0.009837138466537],[-0.0065514645539224,0.0023327139206231,-0.0083007318899035],[-0.018292730674148,-0.1070939078927,0.08739335089922]],[[0.068535834550858,0.049358367919922,0.08241006731987],[0.053369797766209,0.091649152338505,0.092885248363018],[0.052589304745197,0.1794346421957,0.00016303348820657]],[[-0.0010607887525111,-0.020178927108645,-0.00043477010331117],[-0.07875357568264,0.071086183190346,0.02523460611701],[0.0035804305225611,0.0054598329588771,0.018908055499196]],[[-0.048266425728798,0.03151997178793,-0.049527902156115],[0.025619579479098,-0.047668799757957,0.034447688609362],[0.013423221185803,0.023775205016136,0.015619998797774]],[[-0.045656453818083,0.030253179371357,0.012682551518083],[-0.0056543378159404,-0.0050562936812639,0.0058169467374682],[0.06451490521431,-0.035585790872574,-0.029655307531357]],[[-0.049620296806097,-0.011670883744955,0.040800746530294],[0.047256920486689,-0.022981306537986,-0.020656164735556],[0.014513945207,0.013245515525341,-0.044269967824221]],[[0.0035254922695458,0.069578982889652,-0.025270478799939],[-0.022977517917752,0.091123320162296,0.0011230569798499],[-0.02480086311698,-0.013683961704373,-0.069780856370926]],[[-0.058886397629976,0.084316462278366,-0.076815813779831],[-0.052451115101576,0.061637658625841,0.0072025810368359],[0.022468162700534,-0.0022300116252154,-0.0070269480347633]],[[-0.024417834356427,0.039903342723846,-0.058969363570213],[-0.056601885706186,-0.014267187565565,0.063064090907574],[0.067576140165329,-0.043041799217463,0.0018848913023248]],[[-0.0092338360846043,-0.034024640917778,0.02625191397965],[0.010221125558019,0.075175024569035,-0.012183498591185],[-0.02396666072309,-0.026764702051878,-0.023891415446997]],[[0.0083213718608022,0.032693117856979,-0.049040000885725],[0.049119081348181,0.0051857382059097,-0.019756622612476],[0.018626539036632,-0.022204775363207,-0.051724836230278]],[[0.02265371568501,0.052681770175695,0.017640791833401],[-0.053046233952045,0.025255594402552,-0.025884354487062],[-0.014305392280221,-0.020990591496229,-0.0058280634693801]],[[0.049353901296854,-0.10895262658596,0.075059711933136],[0.0647898837924,-0.091476731002331,-0.09468025714159],[-0.029721483588219,0.11605689674616,-0.019781088456511]],[[-0.034935306757689,0.028382973745465,-0.031011348590255],[-0.0031783459708095,0.092993229627609,0.011084069497883],[-0.033615101128817,0.0012500450247899,-0.03627971932292]],[[0.074358738958836,0.0009081878233701,-0.019010150805116],[-0.010751146823168,0.017806809395552,-0.059222254902124],[0.034755233675241,-0.057585280388594,0.0035813695285469]],[[-0.031936354935169,0.037888199090958,-0.035000611096621],[0.035991113632917,0.016598224639893,0.010560732334852],[-0.050952542573214,0.035126674920321,-0.014500263147056]],[[-0.089179046452045,-0.034352283924818,0.062082596123219],[-0.021188713610172,0.0266047809273,-0.028169568628073],[0.053625997155905,0.022895313799381,0.041178066283464]],[[-0.014185081236064,-0.015709748491645,-0.022894579917192],[0.012880994938314,-0.00059054413577542,-0.0030256693717092],[0.0062680509872735,-0.051099643111229,0.049758959561586]],[[-0.018903147429228,-0.013886971399188,0.0089034792035818],[-0.0092480583116412,0.059334006160498,-0.030234798789024],[-0.053083598613739,-0.016217965632677,0.032051153481007]],[[0.04422041028738,0.0042435606010258,-0.050774734467268],[-0.027472168207169,0.012940804474056,0.010923092253506],[0.015838516876101,0.003843933576718,-0.0043577761389315]],[[-0.021176898851991,-0.016517644748092,0.062097892165184],[0.0057915351353586,0.061029158532619,0.037701841443777],[0.022643929347396,-0.078200437128544,-0.083732560276985]],[[0.0033393402118236,0.019447786733508,-0.021658843383193],[0.00068080244818702,0.0013538432540372,0.010051162913442],[0.016110369935632,-0.0071485703811049,-0.027568317949772]]],[[[-0.1698539853096,-0.066098757088184,0.20058254897594],[0.18460734188557,-0.06055998057127,-0.12612171471119],[-0.073908537626266,0.015848204493523,0.10843997448683]],[[0.19413004815578,0.13629844784737,0.099227257072926],[0.038243506103754,-0.1425988972187,-0.23881776630878],[-0.056653629988432,-0.044898487627506,-0.030175106599927]],[[-0.019713211804628,-0.068087212741375,0.060702264308929],[-0.2314628213644,-0.18872800469398,-0.021886415779591],[-0.058730252087116,0.034678068011999,-0.074456453323364]],[[-0.002127215731889,-0.0041278651915491,0.031263891607523],[0.086507588624954,-0.090908341109753,-0.10381719470024],[0.063598908483982,0.032837722450495,-0.036150131374598]],[[-0.08070507645607,-0.22171893715858,0.14627921581268],[0.038965653628111,0.031662285327911,0.049068670719862],[-0.009482410736382,0.084900267422199,-0.070980288088322]],[[-0.079483568668365,0.066880941390991,-0.18364435434341],[0.10387223213911,-0.028265736997128,-0.28310939669609],[-0.018935399129987,-0.0973189920187,-0.1148092597723]],[[-0.13967356085777,0.018067250028253,-0.0044547505676746],[-0.045531515032053,-0.096518710255623,0.074683524668217],[0.079115353524685,-0.11658351123333,-0.044550143182278]],[[-0.014686485752463,-0.1337788850069,-0.011002022773027],[0.091175518929958,-0.15705122053623,0.12432266771793],[0.034375783056021,-0.019418265670538,-0.17469549179077]],[[0.11106277257204,0.052467983216047,-0.041948784142733],[-0.077220566570759,-0.069682434201241,-0.083937555551529],[0.037124902009964,-0.087373331189156,0.06365804374218]],[[0.04179385304451,-0.16139304637909,0.14273226261139],[0.021672185510397,-0.047884698957205,0.10513864457607],[-0.099593266844749,0.09421818703413,0.052793528884649]],[[-0.10740270465612,-0.10713811218739,-0.15126021206379],[0.035929761826992,-0.065699942409992,-0.040271166712046],[0.10367533564568,0.070424415171146,0.16669416427612]],[[-0.074070028960705,0.031872682273388,-0.054975900799036],[0.025036845356226,0.12687563896179,0.018993780016899],[-0.065645977854729,-0.0054616946727037,-0.13224034011364]],[[0.020945413038135,0.10961972922087,0.048553019762039],[0.09593902528286,0.17162615060806,-0.1791398525238],[-0.091911740601063,0.040817152708769,-0.036840166896582]],[[-0.023708682507277,0.072187565267086,-0.021929457783699],[0.001785195665434,-0.037212312221527,0.029271004721522],[0.039435923099518,0.1173400580883,-0.015534296631813]],[[0.017934383824468,-0.070756703615189,0.11223489791155],[0.11449798196554,-0.058300662785769,0.030962793156505],[0.10147766768932,0.047587238252163,-0.003192130709067]],[[-0.0012453013332561,0.20003753900528,0.0038144630379975],[-0.04510747641325,-3.6088509659749e-05,0.0089378729462624],[-0.074599377810955,0.040367648005486,-0.053606104105711]],[[-0.0032320774625987,-0.075832404196262,-0.017128130421042],[0.0058972770348191,-0.092568688094616,0.02327367849648],[-0.15658849477768,-0.11988874524832,0.085579954087734]],[[-0.095941938459873,0.00090154830832034,-0.046263318508863],[-0.2182601839304,-0.13782240450382,-0.074457801878452],[0.012311017140746,0.090199299156666,-0.038173820823431]],[[-0.05154150351882,-0.043973028659821,-0.048097372055054],[0.01863805949688,-0.057980991899967,-0.025407206267118],[-0.14932088553905,0.044044256210327,0.12179454416037]],[[0.016660783439875,-0.0044414829462767,-0.010715993121266],[-0.12365686148405,0.057359915226698,0.13780951499939],[0.021765001118183,-0.038409467786551,-0.087031029164791]],[[0.12837019562721,-0.012426278553903,-0.022822787985206],[-0.15099602937698,0.024644175544381,-0.11952470242977],[-0.056584224104881,-0.03192375972867,0.078065767884254]],[[0.12166804820299,0.048156198114157,-0.087324246764183],[-0.03467396274209,-0.0046433513052762,-0.0085171367973089],[0.028850018978119,0.17797845602036,0.076059721410275]],[[-0.091210693120956,0.048935607075691,-0.017945319414139],[0.044135447591543,0.012213843874633,-0.13844045996666],[0.10198850184679,0.1206670999527,0.11964206397533]],[[0.23938147723675,0.046183668076992,-0.057245787233114],[-0.042136233299971,-0.16288696229458,-0.16246385872364],[0.039314422756433,0.13964127004147,0.059775702655315]],[[-0.027796817943454,0.01610111631453,0.11028826981783],[0.13595312833786,-0.074767887592316,0.028772091493011],[-0.053409736603498,-0.036731254309416,0.12476859986782]],[[-0.13044847548008,0.03673879802227,0.10868468880653],[0.056204490363598,0.036041814833879,-0.074058458209038],[-0.059492308646441,-0.098681181669235,0.046482048928738]],[[0.031528931111097,-0.11124511063099,-0.059068411588669],[-0.0001827719679568,0.060068540275097,-0.013246226124465],[0.034692738205194,-0.058233890682459,0.11647282540798]],[[0.11581400036812,0.13191038370132,-0.21426604688168],[0.0017375915776938,-0.098525196313858,-0.11613697558641],[-0.015566145069897,0.099516928195953,-0.051312923431396]],[[0.049011286348104,0.13152912259102,0.13135865330696],[0.0046927337534726,0.023269599303603,-0.071823216974735],[-0.0055940421298146,-0.071570932865143,-0.071744844317436]],[[0.10098875313997,0.12949848175049,0.22041022777557],[0.021319895982742,0.0084267584607005,-0.065682582557201],[0.019093755632639,-0.050298046320677,0.095127671957016]],[[-0.10937642306089,-0.072843343019485,0.070398665964603],[0.032062012702227,0.037420824170113,-0.055958028882742],[0.0068326015025377,-0.0094303674995899,0.00057523330906406]],[[0.0067579671740532,-0.082821674644947,-0.005631897598505],[-0.021614316850901,0.13756340742111,0.1679071187973],[-0.016059566289186,-0.096385858952999,0.052146021276712]],[[0.19706317782402,0.094841547310352,-0.075332716107368],[0.00084593042265624,-0.091092936694622,0.12629349529743],[-0.018020946532488,0.052001889795065,0.011259199120104]],[[-0.035982344299555,-0.072324298322201,-0.062126222997904],[0.010903575457633,-0.027677193284035,-0.0078625539317727],[0.12291139364243,-0.0085442224517465,-0.022077823057771]],[[-0.017148358747363,-0.081056162714958,-0.07638393342495],[0.039611060172319,0.21625657379627,0.055938851088285],[0.047560002654791,-0.064776696264744,0.012978630140424]],[[0.038563676178455,-0.053762678056955,0.04333471506834],[-0.010900186374784,-0.039112836122513,0.031476750969887],[0.11959718167782,-0.069763839244843,-0.10615855455399]],[[0.093624606728554,0.078665122389793,-0.017320070415735],[-0.045250974595547,-0.12238613516092,-0.15671823918819],[-0.017437847331166,0.090277276933193,0.013129231519997]],[[-0.22756150364876,0.11610589176416,0.059163678437471],[-0.21066670119762,-0.12889824807644,0.10859751701355],[0.090720504522324,0.058636274188757,-0.052922151982784]],[[0.099169075489044,-0.014763666316867,-0.081856891512871],[-0.12558433413506,-0.25440847873688,-0.0086015705019236],[-0.031253982335329,0.023439476266503,0.0010712898802012]],[[-0.014336607418954,-0.096101343631744,0.07085357606411],[0.21440772712231,0.046434335410595,-0.052533183246851],[-0.078576929867268,-0.11185243725777,0.041719611734152]],[[0.074310898780823,0.14504413306713,0.11632518470287],[0.064486913383007,-0.046498220413923,-0.017643731087446],[0.070957578718662,0.0033781649544835,0.17130433022976]],[[-0.029902944341302,-0.014014675281942,-0.097333863377571],[0.028967820107937,0.030243590474129,-0.064007267355919],[0.10425747931004,-0.0089488895609975,0.138577491045]],[[0.040679637342691,0.083984144032001,-0.067658066749573],[0.061128057539463,-0.11068144440651,0.11208073794842],[0.1132499948144,0.010764518752694,-0.077362224459648]],[[-0.045133605599403,-0.085421420633793,-0.10726327449083],[0.035744022578001,-0.011968596838415,0.0064042937010527],[0.063899621367455,0.047721333801746,-0.0026863669045269]],[[0.047157175838947,-0.10428043454885,-0.15606486797333],[0.13013914227486,0.067952282726765,-0.026707937940955],[-0.15146963298321,0.059091713279486,-0.10911723971367]],[[-0.079373084008694,-0.038213431835175,-0.029515633359551],[0.12142163515091,-0.059908397495747,-0.11997412890196],[-0.063962429761887,0.065996445715427,0.023425668478012]],[[0.0384307987988,-0.11919235438108,0.098254904150963],[0.050631582736969,0.010497928597033,0.14964780211449],[-0.07589016109705,-0.053662162274122,0.042520426213741]],[[-0.0035718062426895,0.027580933645368,-0.0085196141153574],[-0.10081970691681,0.059517219662666,-0.077864341437817],[0.048037488013506,0.040346667170525,-0.089421629905701]],[[-0.096037097275257,-0.1939951479435,-0.00069247011560947],[0.059598181396723,0.05225307866931,0.11829177290201],[-0.30395364761353,-0.2754271030426,-0.04949302598834]],[[0.04724245518446,0.012578196823597,-0.11719673126936],[-0.018278146162629,0.033030867576599,-0.14571917057037],[-0.045677572488785,-0.067369863390923,-0.0075302054174244]],[[-0.11961331218481,0.017560049891472,0.010023576207459],[0.072719022631645,-0.012653247453272,0.13163621723652],[0.057449750602245,-0.037562686949968,0.10635960847139]],[[0.12479594349861,0.11253060400486,0.14202708005905],[-0.031894903630018,-0.077248699963093,-0.15863816440105],[0.0028270138427615,-0.05559878796339,-0.13802996277809]],[[-0.0047285263426602,-0.010818260721862,0.039877828210592],[-0.1106376349926,0.13295702636242,-0.10948333889246],[-0.10715769231319,0.13820916414261,0.070689871907234]],[[-0.031162330880761,-0.028426172211766,0.041622333228588],[0.19415901601315,-0.0085593545809388,-0.048422820866108],[-0.057916928082705,-0.12102775275707,-0.18701925873756]],[[0.013471563346684,0.16377919912338,-0.086191713809967],[-0.13819444179535,-0.054225362837315,0.016353622078896],[-0.035118896514177,0.20948998630047,-0.10244837403297]],[[0.061127871274948,0.010094002820551,-0.089633733034134],[-0.048227183520794,-0.087247662246227,0.01036037504673],[-0.014357399195433,-0.010130355134606,0.12076430022717]],[[0.15708774328232,0.12615723907948,-0.1270886361599],[-0.054833602160215,-0.075597576797009,-0.1845882833004],[0.048223212361336,-0.016436818987131,-0.11706081032753]],[[0.033489543944597,-0.0061433054506779,0.024294294416904],[-0.17912475764751,-0.093918725848198,-0.048422299325466],[-0.010349476709962,-0.096469797194004,0.23095424473286]],[[0.057058226317167,-0.20695671439171,0.034468673169613],[-0.049625162035227,-0.097202487289906,-0.060038857161999],[0.036890551447868,-0.04261539876461,0.12810203433037]],[[0.14959329366684,0.10694516450167,0.087439686059952],[0.10431515425444,0.10054383426905,-0.18906638026237],[0.046371843665838,-0.15607298910618,0.15322545170784]],[[-0.042155358940363,-0.080162324011326,0.012931121513247],[0.064889833331108,0.040769185870886,0.057279147207737],[-0.15471421182156,-0.01434066798538,-0.01011836156249]],[[-0.07652985304594,0.12271730601788,0.0054582944139838],[0.05409237369895,-0.067920014262199,0.011124277487397],[-0.063372127711773,-0.16840159893036,0.16353443264961]],[[0.061702504754066,0.03961293399334,0.049445018172264],[-0.14551903307438,0.0051162140443921,0.065898448228836],[0.046741861850023,0.051485449075699,-0.067880049347878]],[[-0.13951218128204,0.016808046028018,0.098863266408443],[-0.015262311324477,0.04539043456316,0.065132617950439],[-0.20556853711605,-0.032121773809195,0.091103039681911]]],[[[0.040294013917446,0.072273910045624,0.092487871646881],[0.19650866091251,-0.027879124507308,0.08986259996891],[0.068911477923393,-0.021447390317917,0.1063876748085]],[[-0.026802975684404,-0.0066159884445369,-0.010922374203801],[-0.0051280981861055,-0.035422824323177,0.0035118721425533],[-0.10596017539501,-0.020686281844974,0.15641582012177]],[[-0.099155940115452,0.078528970479965,-0.0046099843457341],[-0.14698354899883,-0.055078405886889,0.11056666821241],[0.14398886263371,0.062992714345455,0.026571039110422]],[[0.023188276216388,0.023106945678592,-0.096966423094273],[0.070493809878826,-0.11756653338671,-0.22885771095753],[0.057694721966982,0.00097388192079961,0.038046393543482]],[[-0.065097339451313,-0.0016371451783925,-0.16193960607052],[0.044832989573479,-0.024131882935762,0.030940568074584],[-0.034547358751297,-0.028417026624084,0.031879153102636]],[[-0.087755709886551,-0.16349941492081,0.04734294116497],[0.019809743389487,-0.075452089309692,0.021682487800717],[0.027760483324528,-0.18380211293697,-0.06424605846405]],[[-0.20208722352982,-0.013349621556699,-0.016944143921137],[0.10898071527481,-0.0059364810585976,0.0025986775290221],[-0.013788460753858,0.058367785066366,-0.081395953893661]],[[0.0248101092875,-0.019209004938602,-0.030398862436414],[-0.013452869839966,-0.0086695561185479,0.012968439608812],[0.0072649759240448,0.045276805758476,0.066901482641697]],[[0.04602075368166,0.01583699695766,-0.15767070651054],[-0.04197046533227,0.10954853892326,0.053717214614153],[0.046404533088207,-0.1123875901103,0.010034138336778]],[[0.08383271843195,-0.10115694999695,0.20401820540428],[0.0041183833964169,-0.13476493954659,-0.43236812949181],[0.040838111191988,-0.037320051342249,0.014333263039589]],[[0.018928959965706,0.09763315320015,0.15551987290382],[-0.070291608572006,0.083184070885181,0.020736396312714],[0.029243499040604,-0.051216382533312,0.02608167566359]],[[-0.078588336706161,-0.061562139540911,-0.29217064380646],[0.015073734335601,0.067093633115292,0.023781472817063],[0.11507615447044,-0.064028404653072,-0.13763101398945]],[[0.005605517886579,-0.10595768690109,-0.29741108417511],[0.17991983890533,-0.018441768363118,0.091810002923012],[0.24661447107792,0.11320272833109,-0.1335256844759]],[[0.00082152627874166,0.041434708982706,-0.079263381659985],[0.040562275797129,0.084483809769154,0.1067718192935],[-0.052628181874752,-0.032007411122322,0.085228942334652]],[[0.12342320382595,0.035878177732229,0.094204410910606],[0.017487132921815,-0.20278559625149,-0.040251709520817],[0.036801718175411,0.020815951749682,0.0985506772995]],[[-0.043601226061583,-0.11190333217382,-0.19817543029785],[0.13245376944542,-0.052341338247061,0.20900122821331],[0.037141054868698,0.015606735832989,-0.022127792239189]],[[-0.034831579774618,-0.093019708991051,-0.21005263924599],[0.12193961441517,-0.087365075945854,-0.011260582134128],[-0.031439904123545,-0.099500253796577,0.21487112343311]],[[0.087478168308735,-0.019907800480723,-0.17244802415371],[0.10363254696131,-0.031529475003481,-0.17149990797043],[0.062408957630396,0.092692829668522,-0.088240601122379]],[[0.089457228779793,0.14148610830307,-0.076499313116074],[-0.016379607841372,-0.028326753526926,0.11872437596321],[0.031917445361614,-0.054624307900667,0.18320482969284]],[[0.15038026869297,-0.093153171241283,-0.24281059205532],[0.062440667301416,-0.074548095464706,0.03094282746315],[0.039176393300295,-0.062748201191425,0.10480114817619]],[[-0.020098375156522,-0.055611941963434,-0.11878156661987],[0.074282385408878,-0.027666447684169,0.21559251844883],[0.11136334389448,-0.23222240805626,-0.069823533296585]],[[0.046919457614422,0.054339680820704,0.048891920596361],[-0.043118089437485,0.061152882874012,0.15013398230076],[0.053648162633181,0.052788406610489,0.02968710847199]],[[0.039251122623682,-0.026232693344355,-0.021818164736032],[0.034187234938145,-0.11991240829229,-0.0027629854157567],[-0.072134770452976,-0.19643262028694,-0.13159044086933]],[[0.054572846740484,-0.068079479038715,-0.038385752588511],[0.012627615593374,0.12681958079338,-0.15812708437443],[-0.001917151035741,0.0030041639693081,0.056953106075525]],[[-0.081500396132469,-0.019241526722908,-0.13157667219639],[-0.053564880043268,0.021629326045513,0.0048222737386823],[0.093554064631462,0.039526287466288,0.007790170609951]],[[0.060089632868767,-0.049288056790829,-0.17798899114132],[-0.051700126379728,-0.027732484042645,-0.010145688429475],[0.068609498441219,-0.12318902462721,0.0060757976025343]],[[0.11952260136604,-0.25577735900879,-0.15426807105541],[0.064488686621189,0.060784656554461,0.18792313337326],[0.046548143029213,-0.034499801695347,-0.12904618680477]],[[-0.21243742108345,-0.12120368331671,-0.012252222746611],[-0.10157223045826,-0.11821576207876,0.1411015689373],[0.049396045506001,0.035170901566744,-0.0056895990855992]],[[0.056961011141539,-0.035822305828333,-0.31632846593857],[0.0090580731630325,0.044865451753139,-0.023924797773361],[0.05389790982008,-0.14782658219337,-0.030168013647199]],[[-0.052103482186794,0.025526100769639,-0.32988700270653],[0.049845542758703,-0.0031220361124724,-0.10317277908325],[0.065690338611603,-0.057968180626631,-0.021032331511378]],[[-0.099752709269524,0.088117703795433,-0.099129430949688],[0.028128797188401,-0.052716262638569,0.13374699652195],[-0.03057075291872,0.11689985543489,0.098332546651363]],[[0.07180293649435,0.017628254368901,0.1608122587204],[-0.080963775515556,-0.099556818604469,-0.082949608564377],[-0.040865652263165,-0.036321241408587,0.13744866847992]],[[0.10898859798908,0.015415956266224,-0.0096317324787378],[0.088466584682465,0.11159262806177,-0.011113665066659],[-0.15244741737843,0.075857825577259,0.11148588359356]],[[-0.049837820231915,-0.16430120170116,0.063120901584625],[-0.040090508759022,-0.14215357601643,0.07349406182766],[-0.072132878005505,0.041010543704033,0.041386228054762]],[[0.096906557679176,0.016381097957492,-0.040092755109072],[0.0029377024620771,0.1092536598444,0.030585726723075],[-0.014672354795039,-0.036805804818869,-0.13286307454109]],[[-0.14201289415359,-0.25829890370369,-0.35127583146095],[-0.16683524847031,0.07991037517786,0.14727704226971],[-0.1700860708952,-0.1221289858222,-0.16879633069038]],[[0.1115385890007,-0.10869914293289,-0.031575839966536],[-0.080037109553814,0.14572769403458,0.1120398119092],[0.096253722906113,0.1234083250165,-0.034592911601067]],[[-0.18344864249229,0.056394673883915,0.0012849799823016],[-0.021984862163663,0.089403927326202,0.074786365032196],[-0.062140244990587,-0.0721735060215,-0.1068861335516]],[[-0.0087070697918534,0.057031203061342,0.063681371510029],[0.12711301445961,-0.076532773673534,-0.18952502310276],[-0.15950998663902,0.00036471168277785,0.057258926331997]],[[0.054503038525581,-0.068090312182903,-0.025898797437549],[0.011442642658949,-0.090392544865608,-0.13410604000092],[0.11276801675558,-0.06755243986845,-0.10045132786036]],[[0.039441097527742,-0.052607145160437,0.13598731160164],[0.030785698443651,0.047401163727045,-0.086509175598621],[-0.019608803093433,-0.066114231944084,-0.049852356314659]],[[0.078052669763565,-0.54380387067795,-0.22973035275936],[-0.057238232344389,-0.12392628192902,0.064103901386261],[-0.038435805588961,0.053520876914263,0.23769524693489]],[[0.059444300830364,0.070004761219025,-0.11743713915348],[-0.059976652264595,0.020861523225904,0.11521465331316],[-0.16711042821407,-0.0074594304896891,-0.051121070981026]],[[-0.00055179541232064,0.043914951384068,-0.0088849794119596],[0.031711675226688,-0.046379588544369,0.10549800097942],[-0.052064474672079,0.055287685245275,-0.04990828037262]],[[-0.0044783293269575,0.19410866498947,0.25031098723412],[-0.044261589646339,0.08775269985199,-0.086270809173584],[0.057940784841776,-0.11526542156935,-0.014615525491536]],[[-0.00295245135203,-0.048321839421988,0.078592911362648],[-0.095843434333801,0.12607699632645,-0.057982001453638],[0.02955842204392,-0.17876389622688,-0.067436851561069]],[[0.026849856600165,0.019122004508972,0.035056848078966],[-0.087804608047009,0.18344207108021,-0.060468044131994],[-0.052762906998396,0.0008302612695843,0.078249767422676]],[[0.052160494029522,0.016316084191203,-0.19054093956947],[-0.040894266217947,0.021371198818088,-0.022454749792814],[-0.032128531485796,-0.024176929146051,-0.10121350735426]],[[0.096336454153061,-0.0048926929011941,0.019287198781967],[-0.052339348942041,0.099159419536591,0.13275326788425],[0.13033938407898,-0.10303496569395,-0.11615101248026]],[[-0.073316022753716,0.0508125834167,-0.17339287698269],[0.042877689003944,-0.093485839664936,-0.2176496386528],[0.036994572728872,0.16273695230484,0.0092169940471649]],[[-0.12913903594017,-0.2366047501564,-0.29438203573227],[0.066368520259857,0.14241416752338,-0.017373122274876],[-0.080851495265961,-0.058444365859032,-0.19908499717712]],[[-0.098737984895706,0.107515797019,-0.13384237885475],[-0.025019010528922,0.061710949987173,-0.18481753766537],[0.11571695655584,-0.026857540011406,-0.088436231017113]],[[-0.085980847477913,0.159971550107,-0.047593202441931],[0.059664431959391,0.011883184313774,0.00052664993563667],[-0.020804727450013,0.15782986581326,-0.081050716340542]],[[0.03832558915019,-0.11677923798561,0.04844207316637],[-0.030994538217783,-0.019936112686992,-0.051963783800602],[0.043910007923841,-0.023875866085291,0.1023868098855]],[[-0.23961389064789,-0.12532261013985,-0.012912029400468],[-0.029471235349774,-0.02196010760963,0.060667153447866],[-0.045353651046753,-0.00074313255026937,-0.034168131649494]],[[0.080857589840889,0.067968904972076,-0.28549334406853],[-0.081937603652477,-0.0097665311768651,-0.14763689041138],[-0.069782070815563,0.018318090587854,-0.0059639983810484]],[[-0.070327341556549,0.032299153506756,-0.056665502488613],[0.015358876436949,-0.026730371639132,-0.022296648472548],[-0.032752335071564,-0.059495624154806,-0.099031209945679]],[[0.034003011882305,0.05081632733345,-0.12508928775787],[-0.12490324676037,0.0014204466715455,-0.0023399773053825],[-0.086765199899673,0.069973230361938,-0.051175884902477]],[[-0.033679995685816,-0.20609922707081,0.029488127678633],[0.1174595952034,-0.03753225505352,-0.0055381581187248],[-0.0048029939644039,-0.028850680217147,0.093378692865372]],[[0.047107364982367,0.077880248427391,-0.18100070953369],[-0.11772376298904,0.029540436342359,-0.15632613003254],[0.01298051327467,-0.059455756098032,0.11685298383236]],[[0.0052664168179035,-0.036902390420437,0.015156963840127],[-0.10890047997236,0.031356118619442,-0.03423573076725],[0.03410841524601,-0.044045086950064,0.059435207396746]],[[-0.16516746580601,-0.1115549877286,-0.014304124750197],[-0.0021290346048772,0.012540022842586,-0.0081674316897988],[0.014977569691837,0.19702130556107,0.04219152033329]],[[-0.0018765663262457,-0.15336376428604,-0.1111933067441],[0.10283125936985,-0.031506557017565,0.029999259859324],[0.031456056982279,-0.083475768566132,0.051490299403667]],[[-0.15624566376209,-0.026417477056384,0.1692660599947],[-0.00065794045804068,-0.10583474487066,-0.21187297999859],[-0.053820367902517,0.10588689893484,-0.12838783860207]]],[[[0.073320388793945,0.081879124045372,0.20329207181931],[-0.15065537393093,-0.023800663650036,-0.019311154261231],[0.093081332743168,0.086021102964878,0.068335212767124]],[[0.12180163711309,0.051623448729515,-0.10762939602137],[0.061006464064121,-0.036058001220226,-0.028143115341663],[0.12574818730354,-0.014600602909923,-0.042553313076496]],[[-0.088524699211121,0.080738246440887,0.029566578567028],[-0.036486390978098,0.044917829334736,0.030516978353262],[0.087604746222496,-0.092825137078762,0.039704870432615]],[[-0.019431304186583,-0.027940273284912,-0.065346784889698],[0.068687476217747,0.061915710568428,0.080110415816307],[-0.085321605205536,-0.011852180585265,0.043407645076513]],[[-0.22843311727047,0.089043520390987,0.10639203339815],[-0.12294538319111,0.045518435537815,-0.017564846202731],[-0.21040052175522,-0.052037782967091,-0.11032707244158]],[[-0.08454617857933,0.062775671482086,-0.0007795161800459],[-0.032516703009605,-0.012537641450763,0.027053959667683],[-0.042023383080959,-0.16623474657536,-0.014807712286711]],[[-0.01739664748311,-0.052521571516991,0.12059314548969],[-0.065723441541195,-0.022492296993732,0.18526619672775],[-0.097741425037384,-0.11189787834883,-0.028869803994894]],[[0.080913737416267,-0.045642167329788,-0.0015165043296292],[0.011419359594584,0.043519765138626,-0.066644228994846],[-0.0095874695107341,-0.021386608481407,0.06476653367281]],[[-0.040505442768335,-0.0027273732703179,0.0086592445150018],[-0.053357493132353,-0.023938063532114,0.05362244322896],[0.009494723752141,0.0012388419127092,0.032694820314646]],[[-0.14346668124199,-0.039108023047447,-0.070198379456997],[0.026761509478092,-0.0048919725231826,0.058970369398594],[0.1195293366909,-0.17842030525208,0.099122107028961]],[[0.08250305056572,0.040615867823362,-0.048839565366507],[-0.1121124625206,0.027289815247059,0.076938085258007],[-0.10141641646624,0.28348657488823,-0.048868205398321]],[[-0.017215689644217,-0.046932458877563,0.098771259188652],[-0.06514585763216,-0.0486118234694,-0.044770710170269],[-0.10812205821276,-0.10836765170097,0.017982481047511]],[[0.056180000305176,0.1288635134697,0.10957530885935],[-0.12625405192375,-0.099155776202679,-0.0026792190037668],[-0.097277820110321,-0.12865883111954,0.054424606263638]],[[0.038599733263254,-0.016610784456134,-0.068440243601799],[0.053181573748589,0.059986118227243,0.066232576966286],[0.084595359861851,0.064947851002216,-0.11463867872953]],[[0.098607935011387,-0.16406679153442,0.049156118184328],[0.016307555139065,-0.0087387729436159,-0.094966530799866],[0.00048465433064848,-0.10062104463577,-0.0018664045492187]],[[-0.11997254937887,0.19175624847412,0.001944761024788],[-0.05767934769392,-0.063168875873089,-0.044060342013836],[-0.089011296629906,0.11425772309303,0.13841564953327]],[[-0.19441136717796,0.089908443391323,-0.0083972243592143],[0.0080369766801596,0.12829242646694,0.064532749354839],[-0.1289831250906,0.0086930161342025,-0.11407611519098]],[[0.0077795037068427,0.038440324366093,0.0024673084262758],[0.080960474908352,-0.0065982970409095,0.055908858776093],[-0.079564079642296,0.094127118587494,0.10296916216612]],[[-0.080316446721554,-0.097753666341305,0.12810850143433],[0.14767575263977,-0.10224836319685,-0.0095655787736177],[0.17450098693371,-0.082811109721661,0.015677575021982]],[[-0.0063103279098868,-0.074385091662407,0.0030419318936765],[-0.032737232744694,0.077165141701698,-0.037586539983749],[-0.084470093250275,0.11724664270878,-0.058966610580683]],[[0.020815636962652,0.043582372367382,0.00085035193478689],[-0.067156851291656,-0.069284476339817,0.010209928266704],[0.060199353843927,-0.25060337781906,0.086084865033627]],[[0.10955046862364,-0.0084889633581042,0.17815242707729],[0.029628368094563,0.089830346405506,-0.078431345522404],[0.1497665643692,0.01846189238131,-0.13713310658932]],[[0.0078891161829233,0.025666743516922,-0.13583889603615],[0.10389896482229,0.029494160786271,-0.079328045248985],[0.0072972932830453,-0.043778851628304,-0.11760705709457]],[[-0.023461615666747,-0.12331047654152,0.17723566293716],[0.058424223214388,-0.13033902645111,0.11646820604801],[0.027862675487995,-0.12646447122097,0.11926038563251]],[[-0.12393682450056,-0.10714708268642,0.0075976923108101],[-0.066120803356171,-0.24423705041409,0.0057912864722311],[-0.054295569658279,-0.048196882009506,-0.17081792652607]],[[0.0036663906648755,-0.001783360610716,0.040229801088572],[0.020362311974168,-0.069946706295013,-0.038442566990852],[-0.092801354825497,-0.022190231829882,-0.061146631836891]],[[-0.15979805588722,0.031542595475912,0.094361953437328],[-0.10480936616659,0.010129400528967,0.054540928453207],[-0.13470731675625,0.044253375381231,-0.077532701194286]],[[-0.11299607902765,0.0076815402135253,0.0011200023582205],[-0.0072026466950774,0.011624756269157,0.061393272131681],[-0.068600721657276,-0.040073499083519,0.21282888948917]],[[-0.27355119585991,-0.064436011016369,-0.053937859833241],[0.15260148048401,0.012374330312014,0.0031585150863975],[-0.030221248045564,0.0043009277433157,-0.045096002519131]],[[-0.044703882187605,0.01146777626127,0.1407199203968],[-0.073158442974091,0.036477573215961,0.087233483791351],[-0.036694072186947,-0.089283786714077,0.001424124231562]],[[-0.0069268667139113,0.027651777490973,-0.07297869771719],[0.00036730823921971,-0.019755333662033,0.062235619872808],[-0.115787781775,-0.051720146089792,-0.026914265006781]],[[0.01678067818284,0.015461388975382,-0.28130766749382],[0.0058294106274843,-0.10948442667723,-0.010407697409391],[0.14299903810024,-0.11941401660442,0.017528608441353]],[[-0.096517495810986,0.1638966947794,-0.013038702309132],[-0.097994275391102,-0.098156332969666,-0.056677289307117],[0.16054113209248,0.025919873267412,-0.067279070615768]],[[0.1356486082077,0.027329292148352,0.0040533929131925],[0.048855736851692,0.065045602619648,0.032100178301334],[-0.10349954664707,-0.00042902788845822,-0.018744779750705]],[[-0.033805910497904,-0.088777609169483,-0.040777429938316],[0.085825629532337,0.03138879314065,0.11073739826679],[0.25709027051926,-0.048477251082659,-0.058278255164623]],[[-0.11634487658739,-0.093656651675701,0.02691987156868],[-0.11890231072903,0.028197975829244,-0.062243741005659],[-0.066893935203552,0.091702952980995,0.15499967336655]],[[-0.09933403134346,0.10764653980732,-0.097861737012863],[-0.029127856716514,-0.065913483500481,-0.019375892356038],[0.011247432790697,0.018080649897456,-0.0071620303206146]],[[-0.0055045029148459,0.042077880352736,-0.035540159791708],[0.069613069295883,0.030509846284986,0.063114896416664],[-0.075494818389416,0.08741857111454,-0.024459045380354]],[[0.15683016180992,-0.039636697620153,-0.14052493870258],[0.021277757361531,0.045568380504847,0.080319404602051],[-0.020035600289702,0.019821602851152,-0.0033628593664616]],[[-0.17639909684658,0.04029818624258,0.13886243104935],[-0.030733667314053,0.077069222927094,-0.044480178505182],[-0.10984288901091,-0.05763990059495,-0.02361249551177]],[[-0.045570634305477,-0.0053244852460921,0.017358802258968],[-0.01493748370558,0.10148854553699,-0.1127986907959],[0.085443817079067,-0.021203022450209,-0.079741716384888]],[[-0.11604646593332,0.10754062235355,-0.05196413770318],[-0.0069938260130584,0.055879089981318,0.029947264119983],[0.012826483696699,-0.10760373622179,-0.0045518903061748]],[[-0.17538221180439,-0.046064384281635,0.0040942267514765],[-0.0055509014055133,-0.013446769677103,0.096407555043697],[-0.13791817426682,-0.10939358174801,0.063924044370651]],[[0.01791974529624,0.030593000352383,-0.057078018784523],[0.072371311485767,-0.028338534757495,-0.072787925601006],[-0.044137164950371,-0.030294166877866,0.065897911787033]],[[-0.069702818989754,-0.1406567543745,-0.0052637220360339],[-0.15038359165192,-0.092148795723915,-0.016799971461296],[-0.10292859375477,0.10042242705822,0.19565384089947]],[[-0.09551940113306,-0.18271622061729,-0.05843510478735],[0.0055087539367378,-0.10225091129541,0.15832254290581],[-0.040205273777246,0.0019627944566309,0.083056144416332]],[[0.065294019877911,-0.0060434564948082,0.088778302073479],[0.052521336823702,0.0021463728044182,0.13044798374176],[-0.085602052509785,-0.14311258494854,0.075503267347813]],[[0.10600432008505,0.098380982875824,-0.022916059941053],[-0.17481851577759,-0.009354961104691,-0.0011461913818493],[-0.14669202268124,0.25642749667168,0.031507812440395]],[[0.025739312171936,0.015758261084557,0.069428540766239],[0.064673602581024,-0.026052240282297,-0.038043521344662],[0.11932898312807,0.17735010385513,0.069731175899506]],[[0.038235444575548,-0.0016569509170949,0.19728741049767],[0.0005119132110849,-0.0047980155795813,0.065067157149315],[-0.18330453336239,-0.15513326227665,0.095412477850914]],[[0.027515912428498,0.0064172991551459,-0.003040705807507],[0.029357196763158,-0.14645406603813,0.14240700006485],[-0.11699571460485,-0.024881342425942,0.10199922323227]],[[-0.11216299980879,-0.11564093083143,-0.13090072572231],[-0.15773530304432,0.074417136609554,0.028654454275966],[-0.070456638932228,-0.082070074975491,-0.18358111381531]],[[0.10895698517561,-0.057159014046192,-0.027323603630066],[0.068773709237576,-0.043360993266106,0.11595253646374],[0.070373751223087,-0.25447767972946,0.16612447798252]],[[0.0033128142822534,-0.067221261560917,0.050659261643887],[0.1498688608408,-0.023587698116899,0.17722050845623],[-0.16622872650623,-0.21244056522846,0.24236954748631]],[[0.010426812805235,-0.12827076017857,-0.063893295824528],[0.064214870333672,-0.07719799131155,0.043718099594116],[-0.023724127560854,-0.030546834692359,0.23644901812077]],[[-0.034080795943737,0.073752768337727,-0.0414521060884],[0.02444439008832,0.028927985578775,-0.0050018853507936],[-0.037072028964758,-0.21287769079208,-0.099806763231754]],[[-0.0057870759628713,-0.065339840948582,-0.12031980603933],[-0.017789267003536,0.030149547383189,-0.031392820179462],[-0.062619969248772,-0.027854448184371,-0.17492927610874]],[[0.076671980321407,-0.066572949290276,-0.10328860580921],[-0.034198895096779,-0.15241801738739,-0.070537984371185],[-0.056957822293043,0.088947854936123,-0.03958972170949]],[[-0.010139346122742,-0.020515790209174,-0.097841113805771],[-0.12504754960537,-0.10976710170507,0.16757999360561],[0.05200382694602,-0.15252996981144,0.09259570389986]],[[-0.073626205325127,-0.046564545482397,0.080230839550495],[0.028206054121256,-0.022143632173538,0.026207068935037],[-0.13157349824905,0.17707090079784,-0.068950794637203]],[[0.049517650157213,-0.068406485021114,-0.035311784595251],[-0.076007388532162,0.072890445590019,0.13173560798168],[-0.0010202984558418,-0.076377093791962,-0.028102234005928]],[[-0.025197364389896,0.094207860529423,0.070896126329899],[0.03892195597291,-0.018917297944427,-0.0090673575177789],[0.07526183873415,0.095905184745789,0.090311527252197]],[[-0.0092514427378774,0.049122024327517,0.06964398920536],[0.050000227987766,-0.039341356605291,-0.10111670941114],[-0.14245223999023,-0.13887318968773,-0.023015337064862]],[[0.080727837979794,-0.052793253213167,0.12893928587437],[0.072832047939301,0.037200059741735,0.0059755276888609],[0.27680787444115,0.012021767906845,0.0047244112938643]]],[[[-0.11640277504921,0.11421066522598,-0.023275285959244],[-0.11872515827417,0.0064648133702576,0.085427440702915],[-0.15226592123508,0.10234753787518,0.056025061756372]],[[-0.021934617310762,0.031443897634745,0.02326001599431],[-0.061679974198341,0.006178445648402,-0.13258521258831],[0.077322378754616,-0.051002312451601,0.026260022073984]],[[0.094465978443623,0.054469492286444,-0.0397556014359],[0.028965057805181,0.012239278294146,0.062490832060575],[-0.013378710485995,0.020414832979441,-0.11605869978666]],[[0.038791157305241,-0.085906334221363,0.050045974552631],[0.063582308590412,-0.11913077533245,-0.048116698861122],[0.19755004346371,-0.042154494673014,0.11325549334288]],[[-0.04068848490715,0.031193871051073,0.025356709957123],[0.089945159852505,-0.009001481346786,0.045944940298796],[-0.039624027907848,-0.050815027207136,-0.013951013796031]],[[0.16789256036282,-0.046629309654236,-0.092583179473877],[-0.069932080805302,-0.13783605396748,0.1145054474473],[0.075957946479321,-0.020487392321229,-0.0058346684090793]],[[-0.071702383458614,-0.020328890532255,0.020112255588174],[-0.0040517263114452,-0.032054074108601,-0.072991482913494],[0.013720290735364,0.024764090776443,0.21822929382324]],[[-0.046810209751129,-0.02561822347343,0.025077402591705],[-0.0011701077455655,0.017007963731885,0.054599955677986],[0.032540712505579,-0.13334932923317,0.11428115516901]],[[0.0015694189351052,-0.047935731709003,-0.029648426920176],[-0.024175783619285,0.024220759049058,0.076712146401405],[-0.017997620627284,0.036220405250788,-0.039116844534874]],[[0.16368560492992,-0.0044235163368285,0.16487631201744],[-0.22824417054653,0.078948490321636,0.032611768692732],[-0.12734749913216,-0.033376004546881,-0.037730425596237]],[[-0.064229965209961,-0.027126152068377,0.17124584317207],[0.032958250492811,-0.067138284444809,-0.035664178431034],[0.11612039059401,-0.043317101895809,-0.062744967639446]],[[-0.11587047576904,-0.0039216955192387,-0.10886973142624],[-0.0079802237451077,-0.086877688765526,0.073546826839447],[0.094263002276421,0.14435295760632,0.071262188255787]],[[-0.030287899076939,0.10570357739925,-0.0036116901319474],[-0.13981717824936,0.013739546760917,0.088306531310081],[-0.037164777517319,0.048353545367718,-0.029252773150802]],[[-0.15139001607895,0.0059261973947287,0.046601023525],[-0.013054412789643,-0.021361257880926,-0.17485818266869],[0.12392263114452,0.11921388655901,-0.083145663142204]],[[-0.14883241057396,-0.045438081026077,0.26758813858032],[-0.016965754330158,-0.057823900133371,-0.15777668356895],[0.10773102939129,0.035185344517231,0.02818899974227]],[[-0.076428517699242,0.026768704876304,0.15464057028294],[0.045963112264872,-0.13620813190937,-0.1576155424118],[0.01026288792491,-0.0003539721656125,0.026956513524055]],[[0.12872828543186,0.085637651383877,-0.0038251138757914],[-0.023121794685721,0.0012434595264494,0.039033427834511],[0.014090295881033,0.038653440773487,0.026769794523716]],[[-0.040127154439688,-0.059570789337158,-0.058155443519354],[-0.085516192018986,0.11334165930748,0.030325397849083],[-0.081492759287357,0.011902664788067,-0.034139439463615]],[[-0.0034336431417614,-0.043039556592703,0.015786185860634],[0.046777691692114,-0.055221002548933,0.071533545851707],[0.0024821092374623,0.12013332545757,-0.079007096588612]],[[0.15859472751617,-0.073195226490498,0.11600835621357],[-0.04661426320672,0.057492852210999,0.050029490143061],[-0.03037809021771,-0.019687477499247,-0.034949515014887]],[[-0.17963191866875,0.094820164144039,-0.079734303057194],[-0.015359536744654,-0.19890840351582,-0.061083827167749],[-0.067297890782356,-0.096535265445709,0.084093347191811]],[[-0.10893821716309,0.10142774879932,0.060194723308086],[-0.012441534548998,0.066528029739857,0.00096162082627416],[-0.047934558242559,-0.13829293847084,0.10605795681477]],[[-0.059204921126366,-0.16712248325348,0.013221437111497],[0.13007192313671,-0.071500994265079,-0.06484879553318],[-0.079923123121262,-0.024726333096623,-0.13547730445862]],[[-0.17767785489559,-0.041044011712074,0.064992785453796],[-0.011786240153015,0.1077983751893,-0.011113420128822],[0.11318370699883,-0.00065554288448766,0.057864055037498]],[[0.10348875075579,-0.010512962937355,0.14241571724415],[0.13764403760433,0.15856368839741,-0.027634495869279],[-0.1465577185154,-0.085209012031555,0.049967121332884]],[[0.035911343991756,-0.20489598810673,-0.14780603349209],[0.14508555829525,-0.059402897953987,0.059172529727221],[0.082187339663506,0.072175912559032,0.024151919409633]],[[0.0094404257833958,-0.014240714721382,-0.11922932416201],[-0.016486505046487,-0.15985871851444,-0.12456316500902],[0.09828170388937,-0.0072735245339572,-0.0026757156010717]],[[-0.23842288553715,-0.015442683361471,-0.13288271427155],[-0.032633349299431,-0.11530554294586,0.06124771758914],[0.020122399553657,0.14333322644234,-0.025750914588571]],[[-0.097878225147724,-0.16523906588554,0.051639780402184],[0.18823309242725,-0.11921734362841,-0.014438248239458],[0.088224492967129,0.09961212426424,0.063383966684341]],[[-0.085242941975594,0.12407057732344,-0.0001689218042884],[0.040946993976831,-0.10047743469477,-0.079033017158508],[-0.03606291860342,0.040396858006716,-0.014429680071771]],[[-0.10283493250608,-0.0040014837868512,0.011992460116744],[0.029635054990649,-0.13920682668686,-0.076827384531498],[-0.1235553920269,-0.10421061515808,0.17914235591888]],[[0.22573006153107,-0.0050188731402159,-0.01978112757206],[0.0099216420203447,-0.084772080183029,-0.075690299272537],[0.028617737814784,-0.031548637896776,-0.14133903384209]],[[0.027629278600216,0.11098674684763,-0.05326297134161],[0.022984076291323,-0.017263846471906,0.1282896399498],[0.024530597031116,0.12497882544994,0.042326733469963]],[[-0.14013560116291,-0.098963417112827,0.0029951760079712],[0.096996635198593,-0.030634839087725,-0.11945825070143],[-0.099002569913864,0.067641764879227,0.075613014400005]],[[-0.072482980787754,-0.012203557416797,0.012509347870946],[0.057794973254204,-0.067967809736729,0.13550375401974],[-0.03906762227416,-0.0029287762008607,-0.088481225073338]],[[-0.066972777247429,0.022079147398472,0.0041007064282894],[-0.10828920453787,-0.010123237967491,0.15065644681454],[-0.18791176378727,-0.046621676534414,-0.080624468624592]],[[0.19567003846169,0.049761824309826,-0.037573583424091],[0.012333410792053,-0.073381155729294,-0.11696588993073],[-0.10319662839174,-0.15241095423698,-0.096297658979893]],[[0.16982737183571,-0.05919610708952,-0.15883013606071],[0.047046106308699,0.11889961361885,0.13920046389103],[-0.095542840659618,-0.14517141878605,0.10332743823528]],[[-0.074890978634357,-0.14823931455612,-0.11018691211939],[0.10184201598167,-0.072683691978455,0.00023561547277495],[0.044039718806744,0.083619654178619,-0.061322245746851]],[[-0.029496695846319,-0.036413419991732,-0.024517770856619],[0.087902076542377,0.0091140158474445,-0.029386529698968],[0.062981486320496,0.06238978728652,-0.09544512629509]],[[-0.0056225010193884,0.090822517871857,-0.15545858442783],[-0.12023437023163,0.18065145611763,0.036147642880678],[0.076662480831146,0.030642073601484,0.011951243504882]],[[-0.0065202349796891,-0.052982550114393,-0.18334823846817],[-0.17840471863747,0.032357905060053,0.13206651806831],[-0.17021529376507,-0.066704109311104,-0.07130091637373]],[[-0.11454054713249,0.11943361163139,0.037834711372852],[0.043516777455807,-0.047922100871801,-0.046088375151157],[0.064562618732452,-0.023194905370474,0.059032279998064]],[[-0.04076236858964,0.10309386998415,-0.033793486654758],[0.07134222984314,0.072787329554558,-0.076818883419037],[-0.097556106746197,0.055788911879063,-0.002558218780905]],[[0.020176785066724,-0.2320217192173,0.14885963499546],[-0.089434243738651,-0.041892938315868,0.014989404007792],[-0.01974786259234,-0.10987570881844,0.11218406260014]],[[-0.010575344786048,0.024507256224751,0.11663095653057],[0.045443888753653,0.017082972452044,0.086505107581615],[-0.095062032341957,-0.086889289319515,0.0010797217255458]],[[-0.04324809089303,-0.16894163191319,-0.084143541753292],[-0.1244360730052,-0.1374109685421,0.029749806970358],[0.12436094880104,0.12884896993637,-0.0064432765357196]],[[-0.028151743113995,-0.027499761432409,0.044450853019953],[-0.042847737669945,-0.054521486163139,-0.044857811182737],[0.16799496114254,0.062357846647501,-0.11831210553646]],[[0.086225263774395,-0.14098148047924,0.044544335454702],[0.034585934132338,-0.067548990249634,0.082972630858421],[0.094132304191589,0.056490741670132,-0.10369569063187]],[[0.17807565629482,0.038343798369169,0.17443045973778],[-0.047633074223995,0.09128300845623,-0.077241607010365],[-0.13765355944633,-0.1122330725193,-0.083124965429306]],[[-0.011149555444717,-0.059303805232048,-0.047806825488806],[0.084973834455013,0.055500980466604,0.11741034686565],[-0.041771978139877,0.063067376613617,-0.062013622373343]],[[0.15897180140018,-0.042027115821838,-0.060179281979799],[-0.039605751633644,-0.078765034675598,-0.004469342995435],[-0.063773110508919,-0.03720860183239,-0.034092828631401]],[[0.021814804524183,0.0067361565306783,0.081755369901657],[-0.0055664014071226,0.019155891612172,0.026635102927685],[0.016132965683937,-0.18170365691185,0.014628008008003]],[[0.1139717027545,0.10237539559603,0.12526336312294],[-0.14167946577072,0.0094497017562389,-0.008496911264956],[-0.03290893509984,-0.066481955349445,0.028240744024515]],[[-0.1224105283618,-0.10662573575974,-0.007677246350795],[-0.073452115058899,-0.10736113786697,0.046056244522333],[0.16154637932777,0.090250127017498,0.011761057190597]],[[0.055928785353899,-0.010479146614671,-0.092865541577339],[-0.040081471204758,0.056899286806583,-0.0056767165660858],[0.10718560218811,-0.1225522980094,0.013494037091732]],[[-0.17443609237671,-0.19615429639816,-0.089282937347889],[0.037488035857677,-0.033468294888735,0.060205031186342],[0.0045944885350764,0.053423210978508,-0.15803830325603]],[[-0.090521097183228,0.032854307442904,0.11118496954441],[0.004330116789788,0.038820888847113,-0.11303332448006],[-0.10145919024944,0.039270222187042,0.02774110250175]],[[0.17641930282116,-0.042981579899788,0.10616213828325],[-0.037607751786709,-0.033171787858009,0.078927762806416],[-0.03850182518363,-0.09513558447361,-0.31273347139359]],[[-0.060745481401682,0.10038889944553,0.10333850979805],[-0.26397508382797,-0.15656873583794,0.037550400942564],[0.055975794792175,0.1530926823616,0.15559946000576]],[[0.061962526291609,0.036290992051363,0.11075706779957],[-0.20265254378319,-0.16018752753735,0.024430401623249],[-0.017816545441747,-0.01757319457829,-0.099934846162796]],[[0.2915575504303,0.015833897516131,-0.016996504738927],[-0.0079428926110268,-0.031509343534708,-0.051172003149986],[-0.097113899886608,0.093497239053249,-0.035927273333073]],[[0.16795910894871,-0.032307788729668,-0.16964575648308],[0.12031216174364,-0.02699856646359,0.021119004115462],[-0.036785490810871,0.12812025845051,-0.243781670928]],[[0.024850239977241,0.083120316267014,0.029266687110066],[0.060674801468849,-0.094493746757507,-0.15457750856876],[0.028356842696667,0.13732272386551,0.14499413967133]]],[[[0.03995905071497,0.0044541079550982,0.021318931132555],[-0.098201140761375,0.026967668905854,-0.075369730591774],[0.09612875431776,0.055217944085598,0.043175205588341]],[[-0.025009632110596,0.079870752990246,-0.022399796172976],[-0.0078560644760728,-0.072975151240826,-0.043755244463682],[0.0038167976308614,0.043291348963976,-0.059040144085884]],[[0.2161008566618,0.081901781260967,0.087330333888531],[-0.050066452473402,0.02848100848496,0.11109775304794],[-0.34637406468391,-0.43311050534248,-0.23375405371189]],[[-0.10254342108965,0.0054983301088214,-0.033895500004292],[0.017877472564578,-0.09487933665514,0.021082440391183],[0.12858390808105,0.031304720789194,0.10717308521271]],[[0.10076108574867,0.056638322770596,0.1905899643898],[-0.064061738550663,-0.031320754438639,-0.096860446035862],[0.024868799373507,-0.12785369157791,-0.1711573600769]],[[0.11575758457184,0.085224181413651,0.064569115638733],[-0.072569660842419,-0.28905749320984,-0.17009426653385],[-0.10778599232435,0.20275174081326,-0.028262414038181]],[[-0.0032828073017299,-0.03109335154295,0.12437682598829],[-0.051903937011957,-0.10825882852077,0.042458325624466],[-0.07618872821331,-0.012963362969458,-0.088067285716534]],[[-0.045111961662769,0.021005680784583,0.2476684898138],[-0.032036945223808,0.074241168797016,-0.080415971577168],[-0.029299590736628,0.04877182841301,-0.044871959835291]],[[-0.043916426599026,-0.012811203487217,-0.10339768975973],[-0.011637595482171,-0.021861888468266,-0.019674964249134],[0.093461029231548,0.019805999472737,0.062587931752205]],[[-0.026485720649362,0.076961562037468,0.1348662674427],[0.043429274111986,0.090514168143272,-0.29626280069351],[-0.03655606508255,-0.034497413784266,0.099573470652103]],[[-0.10691954195499,-0.054564908146858,-0.20619906485081],[0.060428209602833,-0.1455002874136,-0.027511807158589],[-0.091670639812946,0.11707320809364,0.24587392807007]],[[0.018913676962256,0.10215086489916,0.0048823645338416],[-0.24373748898506,-0.22327490150928,-0.30382323265076],[0.15666319429874,0.12779195606709,0.21123424172401]],[[-0.13363419473171,0.03404688462615,-0.039023049175739],[-0.1578176766634,0.19372007250786,-0.0047569628804922],[-0.20754170417786,-0.15986989438534,0.037956580519676]],[[-0.073122374713421,-0.03337224945426,-0.096916034817696],[-0.043688341975212,-0.0015683296369389,-0.050514049828053],[0.075630977749825,0.054494440555573,0.052748706191778]],[[-0.054194670170546,-0.0049941688776016,-0.10961835831404],[-0.005578541662544,-0.034611355513334,-0.17155806720257],[-0.028504809364676,-0.059918433427811,0.17491608858109]],[[-0.13609924912453,-0.015602166764438,0.063990615308285],[0.0030304042156786,-0.08065714687109,0.027851462364197],[0.038627959787846,0.1016797721386,0.023545786738396]],[[0.010421572253108,-0.098757550120354,0.015187866985798],[-0.042502116411924,-0.01977401971817,-0.1929986178875],[-0.010988401249051,-0.040643390268087,0.29153168201447]],[[-0.020918974652886,-0.033208154141903,-0.20852975547314],[-0.097941219806671,-0.080227106809616,-0.050132226198912],[-0.0062517081387341,0.014701856300235,0.10230030119419]],[[-0.012659342028201,-0.039142206311226,-0.02708600834012],[-0.015520096756518,0.1363914757967,-0.12752591073513],[0.035911094397306,0.0065430928952992,-0.11107215285301]],[[-0.0072110695764422,-0.053973916918039,0.10988959670067],[-0.085917398333549,0.017125088721514,-0.0018704558024183],[0.04989118501544,0.16318142414093,-0.12685213983059]],[[-0.2073739618063,0.037706237286329,0.12607538700104],[-0.20048762857914,-0.025419278070331,0.14844194054604],[0.036878425627947,0.052275370806456,-0.100789681077]],[[0.029614476487041,0.020372731611133,0.18694418668747],[-0.26662111282349,-0.018375715240836,0.22223405539989],[-0.045695934444666,0.099372707307339,-0.033195085823536]],[[-0.11215338855982,0.055959444493055,-0.26894071698189],[0.044366776943207,0.11020460724831,0.055796153843403],[-0.047483317553997,-0.1095035225153,0.07661958783865]],[[-0.021329632028937,-0.12897053360939,-0.046726386994123],[-0.15112616121769,-0.016066608950496,0.06963587552309],[-0.11776184290648,-0.20899349451065,-0.19202226400375]],[[-0.036903295665979,0.017069660127163,0.018398815765977],[-0.071710988879204,-0.21143683791161,0.088521614670753],[0.081204913556576,0.061445575207472,-0.11863967776299]],[[-0.012484709732234,0.067765690386295,-0.20322340726852],[-0.08113007992506,0.15236623585224,-0.14791285991669],[-0.20220570266247,-0.13705682754517,-0.11576975882053]],[[-0.055887091904879,-0.072765775024891,-0.025873752310872],[-0.25439286231995,-0.20926332473755,-0.35685870051384],[-0.019738839939237,0.084040343761444,0.11934833228588]],[[-0.082249291241169,0.037263337522745,0.10695683956146],[-0.16143250465393,0.022381778806448,-0.20763023197651],[-0.17779141664505,0.16131417453289,0.084208555519581]],[[-0.065776467323303,0.075081676244736,0.030685110017657],[-0.24905608594418,0.13700020313263,-0.13476158678532],[-0.11096862703562,0.10179936140776,-0.16676358878613]],[[-0.11850662529469,0.03074337169528,0.0027177180163562],[-0.068599380552769,0.042516898363829,-0.20208963751793],[-0.021622657775879,-0.018112419173121,-0.19376939535141]],[[-0.035871639847755,-0.010825226083398,-0.16740258038044],[0.040283221751451,-0.1491918861866,-0.08632554858923],[0.032988421618938,0.12332213670015,0.10106661170721]],[[0.028277959674597,0.074477791786194,0.029756067320704],[-0.017016006633639,0.014769103378057,0.10747679322958],[0.069504126906395,-0.02223889529705,-0.024422641843557]],[[0.15415865182877,0.020741244778037,0.05253154411912],[-0.11428310722113,-0.074826411902905,0.031652256846428],[-0.070917256176472,-0.075755327939987,-0.067369535565376]],[[-0.15860621631145,-0.029389817267656,-0.012294781394303],[-0.067817993462086,0.10000739991665,0.15849429368973],[0.076658003032207,0.017601514235139,0.0030597150325775]],[[-0.081789717078209,-0.074920520186424,-0.092864438891411],[-0.035320397466421,0.15958708524704,-0.00067786284489557],[-0.17236568033695,-0.038592167198658,0.31634140014648]],[[0.10530007630587,-0.1102557554841,0.058396931737661],[-0.051685858517885,-0.035917367786169,0.1625946611166],[-0.038362428545952,0.20156511664391,-0.090565480291843]],[[-0.010290331207216,0.024831371381879,0.055614601820707],[-0.2231439948082,-0.072687610983849,-0.24387395381927],[0.087665192782879,0.18884888291359,0.036199383437634]],[[0.13033021986485,-0.032805453985929,-0.034241180866957],[0.046602182090282,-0.03689206391573,0.06753696501255],[-0.055307425558567,0.10857952386141,0.15482811629772]],[[-0.16585260629654,-0.040574621409178,-0.10858775675297],[0.032184168696404,-0.067534640431404,0.034304924309254],[-0.067217037081718,0.19775752723217,-0.044345680624247]],[[0.055734422057867,-0.10148624330759,0.0043504117056727],[-0.11500155180693,-0.10287530720234,0.075523421168327],[-0.022470150142908,0.025960946455598,0.082589812576771]],[[-0.090507313609123,0.0038755419664085,-0.02126295119524],[-0.15664453804493,-0.055186033248901,-0.020876161754131],[0.0079603223130107,0.096163377165794,0.11879853904247]],[[0.06277722120285,0.078624986112118,0.092680729925632],[0.097118332982063,-0.13849450647831,0.024966286495328],[-0.04586960375309,-0.062773436307907,-0.057441111654043]],[[0.052943147718906,0.055361606180668,0.039582792669535],[-0.024678062647581,0.084540694952011,-0.008960323408246],[-0.17263378202915,-0.040860839188099,-0.14229512214661]],[[-0.048065062612295,0.075543485581875,-0.040138132870197],[-0.042873349040747,0.077402643859386,0.033326163887978],[0.013567378744483,-0.086216039955616,-0.027720542624593]],[[-0.0084092263132334,-0.064064607024193,-0.013390618376434],[0.016311729326844,-0.21703039109707,-0.058389101177454],[0.07313983887434,0.17423617839813,0.031684029847383]],[[-0.17761561274529,0.033142559230328,-0.0089638810604811],[0.045976888388395,0.043600540608168,0.073966279625893],[-0.46697783470154,-0.41515681147575,-0.43995437026024]],[[-0.19662533700466,0.014941892586648,-0.12292666733265],[0.079788684844971,-0.17239630222321,-0.053404532372952],[-0.14446344971657,-0.00069010286824778,0.18458597362041]],[[0.034247286617756,0.087600402534008,-0.00086603907402605],[-0.071267031133175,-0.086499750614166,0.0032888664864004],[0.062454525381327,0.0099831391125917,-0.041292577981949]],[[-0.018176769837737,-0.063548140227795,0.088743224740028],[-0.034665089100599,0.095914229750633,-0.17504675686359],[-0.064391985535622,0.11684714257717,-0.056483548134565]],[[0.076076917350292,0.052819479256868,0.16328828036785],[0.12494304776192,0.074517831206322,-0.072314962744713],[-0.35435327887535,-0.081335090100765,-0.20731842517853]],[[0.0070241480134428,0.047546289861202,0.079809159040451],[-0.012956421822309,0.072226017713547,0.099407039582729],[-0.013484131544828,0.057035535573959,-0.24573418498039]],[[0.063638731837273,0.082739762961864,0.089418761432171],[0.022478198632598,-0.050776373594999,-0.044208880513906],[-0.030563211068511,0.038401756435633,0.0058041368611157]],[[-0.0020073899067938,0.089477777481079,0.14248189330101],[0.16191001236439,0.017548242583871,0.086565971374512],[-0.12875510752201,-0.10509504377842,0.016017423942685]],[[0.077807888388634,0.034332014620304,0.0052624335512519],[-0.022846145555377,-0.052590388804674,-0.093933448195457],[-0.012103077024221,0.21297010779381,0.16453142464161]],[[-0.10948701202869,-0.011166051961482,0.033589333295822],[0.068882696330547,0.019975636154413,-0.075512908399105],[0.15106108784676,-0.064771875739098,0.09160066395998]],[[-0.085676081478596,-0.017169568687677,-0.02312027849257],[-0.050003331154585,0.038229301571846,0.0046758940443397],[0.19913846254349,-0.0360315926373,0.052491381764412]],[[-0.030290633440018,-0.11659450083971,-0.15701372921467],[-0.20772933959961,-0.121258251369,-0.18689316511154],[0.062684759497643,-0.0033644947689027,-0.042666237801313]],[[0.069869548082352,-0.049546591937542,0.073681510984898],[-0.16370655596256,0.053052973002195,0.095475770533085],[-0.069198481738567,0.12925396859646,-0.074864856898785]],[[0.063036344945431,-0.028487889096141,0.049064248800278],[0.010089298710227,0.092944659292698,0.039918467402458],[0.13657227158546,-0.077154576778412,-0.072285458445549]],[[0.031778637319803,-0.053357258439064,0.10413756966591],[-0.030453300103545,0.049210842698812,-0.0058841560967267],[0.0021533374674618,-0.094558976590633,0.023306176066399]],[[0.059917479753494,0.02260759472847,-0.093027174472809],[-0.10953298956156,-0.11999389529228,0.096774481236935],[-0.13086406886578,-0.011691126041114,0.089987553656101]],[[0.056510839611292,-0.28401178121567,0.076639674603939],[0.0065500293858349,-0.052465695887804,0.013211278244853],[-0.096219785511494,-0.024765526875854,0.14919021725655]],[[0.13337524235249,-0.0043196557089686,0.065331980586052],[0.11253421753645,-0.082434929907322,-0.16103313863277],[-0.22173748910427,-0.061507474631071,0.040967330336571]],[[-0.086284220218658,-0.011732123792171,0.064095735549927],[-0.068796567618847,-0.083390653133392,-0.072822034358978],[0.04864340275526,-0.06904549151659,0.19686408340931]]],[[[0.016731392592192,-0.0032158156391233,-0.12060576677322],[0.016662817448378,-0.088441476225853,0.15720994770527],[0.36192783713341,-0.24048614501953,-0.18725526332855]],[[-0.12921124696732,0.14458358287811,0.050753224641085],[0.050222851336002,-0.045363757759333,-0.031625464558601],[0.054900858551264,0.064694218337536,0.033227279782295]],[[-0.058018170297146,-0.080905251204967,0.019414190202951],[0.18946899473667,-0.14415988326073,0.0047867521643639],[0.064623385667801,-0.1460579931736,-0.0080261221155524]],[[0.11029408127069,-0.15953938663006,0.00039255333831534],[-0.020908806473017,-0.11845990270376,0.15628449618816],[-0.030338503420353,-0.21624881029129,0.0057516493834555]],[[0.041091769933701,-0.12719322741032,-0.17044258117676],[-0.05637140199542,0.025129588320851,0.07229096442461],[-0.064294263720512,0.056256853044033,0.039133530110121]],[[-0.14972031116486,0.11076940596104,-0.14077185094357],[-0.17143577337265,-0.032553516328335,0.028039116412401],[-0.26251208782196,0.12566635012627,0.21314756572247]],[[-0.12468055635691,0.023198168724775,-0.080414660274982],[0.068754613399506,-0.067685268819332,-0.10743056237698],[-0.14731895923615,-0.04304514080286,0.14503662288189]],[[0.075590908527374,0.051409289240837,0.02530792914331],[0.044250924140215,-0.037747967988253,0.081832572817802],[-0.019775182008743,-0.07243724912405,0.014575926586986]],[[0.057853356003761,-0.014352454803884,0.030065966770053],[-0.089324973523617,-0.069791994988918,-0.074892394244671],[-0.015243304893374,0.035266261547804,0.115602619946]],[[-0.057017728686333,0.053012873977423,-0.048060201108456],[0.1572979837656,0.074516728520393,-0.16204586625099],[-0.061098389327526,-0.094080701470375,0.024502689018846]],[[0.12856523692608,0.020732374861836,-0.018796589225531],[0.038040637969971,-0.043808124959469,0.0026850416325033],[0.10861238837242,-0.069295212626457,-0.16661177575588]],[[-0.17752552032471,0.05188363045454,-0.068999797105789],[-0.17839604616165,0.047839116305113,-0.042445037513971],[-0.068675108253956,0.067703507840633,0.042036581784487]],[[-0.11806790530682,-0.049040276557207,-0.061397593468428],[0.024389361962676,0.038848746567965,0.099891193211079],[0.11708208173513,0.14544779062271,-0.044680237770081]],[[0.15437813103199,0.03500072658062,-0.043616227805614],[0.10112757235765,-0.16762411594391,-0.068485975265503],[0.080802351236343,-0.19248373806477,0.1730517745018]],[[-0.060827236622572,0.11505285650492,-0.38834777474403],[-0.038079235702753,0.14278277754784,-0.052649401128292],[-0.12657472491264,-0.041972294449806,0.056996889412403]],[[0.12995080649853,0.097545608878136,-0.042897395789623],[0.019314488396049,0.035074409097433,-0.22790049016476],[-0.1014808639884,0.038646347820759,0.037722881883383]],[[-0.08079270273447,0.11093340814114,0.023516671732068],[0.046660099178553,0.02840007469058,0.22679939866066],[0.02071032114327,0.06069041788578,0.050761692225933]],[[0.024919793009758,-0.27310836315155,-0.17660734057426],[0.098180115222931,-0.051680088043213,0.023868901655078],[0.022880099713802,-0.020123241469264,-0.11366952210665]],[[0.039879530668259,0.020197853446007,-0.1063559949398],[-0.030814638361335,-0.074735902249813,0.033229235559702],[0.0068371901288629,0.026904640719295,-0.002697229385376]],[[0.00031040841713548,0.023260390385985,-0.10798536241055],[0.05536513030529,0.0098218470811844,0.27712792158127],[-0.068598866462708,-0.034417718648911,0.035451240837574]],[[-0.032904397696257,-0.15795321762562,-0.21616932749748],[-0.22924070060253,-0.034652594476938,-0.063348203897476],[-0.16693806648254,-0.081966452300549,-0.11796731501818]],[[0.012047021649778,0.12254295498133,-0.016586972400546],[-0.015728633850813,0.0087686777114868,0.10606180131435],[0.11605001986027,0.21773372590542,0.036910362541676]],[[-0.10687221586704,0.04299670830369,0.10553817451],[-0.15729959309101,-0.17029866576195,-0.17249247431755],[0.12629118561745,-0.13254567980766,0.15954446792603]],[[-0.082763396203518,0.0089390948414803,-0.11563246697187],[-0.038060609251261,-0.086329385638237,-0.10251571983099],[-0.19699020683765,0.068596474826336,-0.16169269382954]],[[0.074271164834499,-0.013533170334995,0.02864240668714],[0.036722522228956,0.2513647377491,-0.032229848206043],[-0.053462758660316,-0.067434519529343,-0.19786074757576]],[[0.094973728060722,-0.028239736333489,-0.068570904433727],[0.043806664645672,0.044075481593609,0.04666168615222],[0.059239119291306,-0.031691379845142,-0.035093542188406]],[[-0.14766390621662,-0.13336449861526,0.027198472991586],[-0.053327146917582,0.012636129744351,-0.00075043423566967],[-0.12624704837799,-0.26743984222412,0.0055596493184566]],[[-0.15735495090485,-0.079862579703331,-0.074160411953926],[-0.090993702411652,0.039621710777283,-0.049267970025539],[0.14348544180393,0.21844635903835,-0.10518535226583]],[[-0.06813246011734,-0.047551736235619,0.16148994863033],[0.084456704556942,0.12662456929684,-0.14988166093826],[-0.017705645412207,-0.10589043796062,-0.16307274997234]],[[-0.020592657849193,-0.18932691216469,-0.13553740084171],[-0.004223168361932,0.0083201751112938,-0.27559497952461],[-0.015676356852055,-0.03503880277276,0.061262164264917]],[[-0.036570802330971,-0.075981892645359,-0.25542223453522],[-0.018757259473205,-0.005027677398175,-0.023655673488975],[-0.046897057443857,0.13102519512177,0.13730542361736]],[[0.097303681075573,0.058189731091261,0.21279945969582],[0.039259221404791,0.00069391506258398,0.091653682291508],[0.010476810857654,-0.1779658049345,-0.057533584535122]],[[-0.035865653306246,0.10731706768274,0.003347085788846],[-0.069765791296959,0.020171483978629,-0.096724003553391],[-0.083494409918785,0.036014743149281,0.10341185331345]],[[0.066478982567787,-0.09295716881752,-0.013483266346157],[-0.073277570307255,-0.051425155252218,-0.070867083966732],[-0.060840208083391,-0.057411093264818,-0.015686998143792]],[[0.0020722039043903,-0.023111250251532,0.034887261688709],[0.081696189939976,0.0068029654212296,-0.012611909769475],[-0.030160089954734,-0.19936498999596,0.12954565882683]],[[-0.045752875506878,0.022324837744236,-0.11832581460476],[-0.090658634901047,-0.00086114183068275,-0.046113643795252],[-0.033192131668329,-0.1636964827776,-0.080216459929943]],[[-0.087054938077927,-0.084960594773293,0.017703503370285],[-0.12365983426571,0.053875721991062,-0.13869768381119],[0.12683530151844,-0.015287306159735,0.042215250432491]],[[-0.012815265916288,-0.15812885761261,0.073604792356491],[-0.0041720997542143,-0.12824892997742,0.050664503127337],[0.08888304233551,0.028338875621557,0.17924647033215]],[[-0.027705259621143,0.11033417284489,-0.16080608963966],[-0.099819175899029,-0.024959832429886,0.10767311602831],[0.1426587253809,-0.1644062101841,-0.0092433877289295]],[[-0.10329142212868,-0.10776640474796,0.013120073825121],[-0.050315625965595,0.051566243171692,0.013111243955791],[-0.075973495841026,0.018392037600279,0.021901784464717]],[[0.1504589766264,-0.041442174464464,0.17973692715168],[-0.046532336622477,0.097961515188217,-0.10670025646687],[-0.078369952738285,-0.020906183868647,-0.040639378130436]],[[0.041404645889997,0.079389065504074,-0.009237464517355],[0.0024745638947934,0.053718589246273,0.039392527192831],[-0.21095594763756,0.025830129161477,-0.011699354276061]],[[-0.12160123884678,-0.075981877744198,-0.075084567070007],[0.032478336244822,0.085412457585335,0.1243741735816],[0.045738883316517,0.00039430984179489,-0.052323006093502]],[[-0.08417733758688,-0.0036965848412365,-0.026745477691293],[0.0016340306028724,0.1017704680562,0.076981544494629],[-0.044987991452217,0.036179598420858,-0.073569349944592]],[[-0.014805813319981,-0.033810686320066,-0.059799667447805],[-0.014854403212667,-0.048273518681526,-0.10734717547894],[-0.21035370230675,0.063546113669872,-0.13907687366009]],[[-0.049215525388718,-0.021102216094732,0.13361798226833],[-0.062438901513815,0.18781664967537,-0.05823228508234],[-0.043244738131762,0.1936212927103,-0.30237504839897]],[[-0.15340086817741,0.17280703783035,-0.027642901986837],[-0.10119134187698,0.051852948963642,0.08713460713625],[-0.12767496705055,-0.096015565097332,0.090801268815994]],[[-0.097580999135971,0.012976549565792,-0.055170595645905],[0.15844620764256,-0.050664320588112,-0.073075279593468],[-0.0031238568481058,-0.10910967737436,0.065752267837524]],[[0.061265420168638,-0.0016962732188404,-0.049582455307245],[-0.075830787420273,-0.10741888731718,-0.15663094818592],[-0.0028834666591138,0.16858041286469,-0.11552187055349]],[[0.039275292307138,-0.13044568896294,-0.14107142388821],[0.05921146273613,-0.12508134543896,-0.047758758068085],[0.10016768425703,0.097637921571732,-0.013198924250901]],[[0.0055376649834216,-0.046599179506302,0.012437582947314],[0.042865302413702,0.0042635952122509,-0.025336571037769],[0.099506482481956,-0.23261754214764,-0.067755818367004]],[[-0.024788150563836,0.054216500371695,-0.044791731983423],[0.033700942993164,0.038618218153715,-0.078562937676907],[-0.25519493222237,0.085724093019962,-0.2433156222105]],[[0.036175489425659,-0.21178635954857,-0.023097464814782],[0.022053144872189,0.1697544157505,0.14018256962299],[-0.13078579306602,0.13509176671505,-0.11590477079153]],[[-0.048229694366455,-0.0032389489933848,0.020437670871615],[-0.03204794600606,-0.0024759981315583,0.12520495057106],[0.0021830592304468,-0.14897114038467,0.047086697071791]],[[-0.099989421665668,-0.045407094061375,-0.15220445394516],[-0.16668799519539,0.13394674658775,0.047689564526081],[-0.11269775032997,0.16648529469967,-0.065694317221642]],[[-0.20114649832249,-0.10394684225321,-0.0085232565179467],[-0.01185907330364,-0.054276745766401,0.15317596495152],[-0.21738566458225,0.052982408553362,0.077427238225937]],[[-0.094316631555557,-0.14679209887981,0.023050732910633],[0.082602597773075,-0.13165298104286,-0.061169680207968],[-0.12961906194687,0.069299392402172,-0.01434279140085]],[[0.017968807369471,-0.0044283270835876,0.11520958691835],[-0.037199266254902,0.023124339058995,-0.099356666207314],[-0.080882728099823,0.12260210514069,-0.19354666769505]],[[-0.092439487576485,0.1100290119648,0.05256250500679],[0.2054151147604,-0.020310994237661,-0.088144473731518],[0.041099779307842,0.0088264811784029,0.17445047199726]],[[0.061593417078257,-0.018015434965491,0.14807294309139],[-0.10633244365454,-0.044339243322611,-0.038796678185463],[-0.3321248292923,-0.099552311003208,-0.0038986548315734]],[[-0.16248935461044,-0.11354201287031,-0.14011260867119],[-0.098600760102272,-0.031447116285563,-0.12587974965572],[-0.060311123728752,0.030303351581097,-0.31936964392662]],[[-0.072980739176273,-0.099688023328781,0.012896629981697],[0.064973570406437,-0.048901844769716,0.11473251879215],[0.066482208669186,-0.042618978768587,-0.10353415459394]],[[0.082101263105869,0.036174643784761,-0.010198371484876],[0.04030130058527,0.039612926542759,-0.17993596196175],[-0.036129403859377,0.069667108356953,-0.078797452151775]],[[-0.13665188848972,-0.17985710501671,0.10358848422766],[-0.030217301100492,-0.2630869448185,-0.11489720642567],[-0.0090893786400557,0.10410037636757,0.24236936867237]]],[[[-0.091789044439793,-0.021887103095651,0.12681706249714],[-0.04875648394227,-0.11078160256147,-0.037721883505583],[-0.0046822312287986,0.017786704003811,-0.041029121726751]],[[-0.012846450321376,0.070563919842243,0.10831097513437],[0.12108434736729,0.06539972871542,-0.15199863910675],[-0.019636327400804,-0.042004138231277,0.053569868206978]],[[-0.0032631240319461,0.013143364340067,-0.13869820535183],[-0.05962897464633,-0.016615606844425,0.10508386045694],[0.026026844978333,0.0070629050023854,-0.32670417428017]],[[0.027500225231051,-0.058463972061872,-0.036692809313536],[0.033100955188274,-0.07747558504343,0.025531083345413],[-0.062778517603874,-0.051207456737757,-0.01168485917151]],[[0.01245052088052,-0.15432259440422,-0.07943306863308],[0.1027422323823,-0.035101383924484,-0.16510990262032],[-0.21512681245804,-0.17254644632339,-0.16238248348236]],[[0.054705705493689,0.031453367322683,-0.15264131128788],[-0.11363257467747,0.052636183798313,0.15288579463959],[-0.076667055487633,-0.06552654504776,-0.18377512693405]],[[0.018212240189314,0.029325028881431,0.0032790044788271],[0.11623083055019,-0.032946117222309,-0.12557624280453],[0.014197216369212,0.074511393904686,-0.045950349420309]],[[0.091333255171776,0.036096647381783,0.10182497650385],[-0.021569298580289,-0.05975679308176,0.14863036572933],[0.11064773052931,0.084692984819412,0.0041167042218149]],[[-0.012961775064468,-0.0075846388936043,-0.0038755517452955],[-0.059469755738974,-0.035672064870596,0.046534921973944],[0.1123823672533,-0.067252300679684,-0.057176001369953]],[[-0.026830429211259,-0.12364740669727,0.031852021813393],[0.0050606313161552,-0.040518797934055,-0.18227307498455],[0.075107395648956,-0.04416112601757,0.057230483740568]],[[0.018100056797266,-0.034566842019558,-0.028892690315843],[-0.11529344320297,0.28591591119766,0.022351009771228],[0.099826902151108,-0.1643800586462,0.12748849391937]],[[0.026660140603781,-0.092600271105766,-0.12773224711418],[0.070177860558033,-0.0642174705863,0.010054443031549],[0.059225138276815,0.13065102696419,-0.051829840987921]],[[-0.11939287185669,-0.031589485704899,0.2017625272274],[0.13616666197777,-0.0021427273750305,-0.067726343870163],[-0.0050273104570806,0.055613294243813,0.13754208385944]],[[-0.041074689477682,-0.0056189373135567,0.13140620291233],[-0.093159981071949,-0.08449612557888,0.057964242994785],[-0.071354515850544,0.004668534733355,0.0033176164142787]],[[-0.12350236624479,-0.04456840083003,-0.081062473356724],[0.11194222420454,-0.027523186057806,0.081025652587414],[0.025265576317906,0.096226237714291,-0.13827264308929]],[[0.026295382529497,-0.083826869726181,-0.0087750917300582],[-0.13429643213749,0.054783012717962,0.1871691942215],[0.095250070095062,-0.012191780842841,0.21580217778683]],[[0.019211489707232,0.074944198131561,0.01068677380681],[-0.019876772537827,-0.017308467999101,-0.011833487078547],[0.073970437049866,-0.15899422764778,0.21735455095768]],[[0.068221002817154,0.028669886291027,-0.20892250537872],[0.085720852017403,0.014428765513003,-0.12508031725883],[0.016414199024439,-0.035822361707687,0.12415263056755]],[[0.11725667119026,0.33098289370537,-0.050851482897997],[0.10859136283398,-0.0081752510741353,0.0034643630497158],[-0.071894451975822,-0.05685318261385,0.062807224690914]],[[0.053486384451389,-0.039023369550705,-0.16852182149887],[0.083996072411537,0.026858514174819,0.010978735983372],[-0.015434463508427,-0.065885759890079,0.010104632005095]],[[-0.00028871529502794,-0.14641971886158,-0.023028923198581],[-0.086657211184502,-0.048562254756689,0.03796761482954],[-0.09273299574852,-0.12810491025448,-0.093529514968395]],[[-0.15842647850513,0.075398840010166,-0.068829029798508],[-0.13195598125458,0.045098125934601,0.16016238927841],[0.036027915775776,0.017655074596405,0.15665471553802]],[[-0.13712999224663,0.018608570098877,0.10202884674072],[-0.090879254043102,0.035462260246277,-0.072071552276611],[0.0038438383489847,-0.027140911668539,-0.097764626145363]],[[0.021393422037363,-0.030986437574029,-0.063377715647221],[-0.11310270428658,-0.159961566329,-0.24401167035103],[0.094762071967125,0.01820514164865,-0.070023491978645]],[[0.079123623669147,-0.0061384942382574,0.033512081950903],[0.089108675718307,-0.11486098915339,0.024333028122783],[0.013353886082768,-0.083132237195969,-0.10006532818079]],[[-0.13042820990086,-0.022509798407555,-0.054520923644304],[-0.11661327630281,0.072607629001141,-0.10777248442173],[-0.0042453650385141,-0.025956958532333,-0.28457975387573]],[[0.15720075368881,-0.073661789298058,0.00078673020470887],[-0.033142223954201,-0.17263332009315,0.11431075632572],[0.038148906081915,-0.083751760423183,0.1707643866539]],[[-0.029848571866751,0.031535539776087,-0.031759072095156],[-0.090045884251595,0.0099436175078154,0.067409545183182],[-0.026508335024118,0.2039251178503,-0.077457740902901]],[[0.15132178366184,0.030354907736182,-0.12821383774281],[-0.059856917709112,0.076824657618999,-0.014300535432994],[-0.20365683734417,0.011076620779932,-0.16835516691208]],[[0.13773761689663,0.17887336015701,-0.098675742745399],[-0.050444323569536,-0.10432025045156,-0.19618275761604],[0.18554595112801,3.2847761758603e-05,-0.064427569508553]],[[-0.070471338927746,0.020247001200914,0.045783344656229],[0.036294050514698,0.083545193076134,-0.12050675600767],[0.0049082348123193,0.013069858774543,-0.034670501947403]],[[0.054932232946157,0.10123913735151,-0.24556484818459],[0.0062373150140047,0.028776308521628,-0.050040945410728],[-0.43573349714279,0.25329422950745,-0.12757658958435]],[[0.080811217427254,-0.060340762138367,-0.1256368458271],[0.02615699544549,-0.04237461835146,0.043683379888535],[0.094308666884899,0.00068051577545702,0.058622065931559]],[[-0.1856202185154,-0.094746679067612,-0.24652241170406],[-0.05060226470232,0.0095083173364401,4.1238672565669e-05],[-0.15189500153065,-0.0053237010724843,0.07486392557621]],[[0.0017240776214749,-0.082667820155621,0.097086653113365],[0.038707926869392,-0.068848714232445,0.043464489281178],[-0.15842577815056,-0.10097450017929,-0.15933717787266]],[[-0.019716715440154,0.061818033456802,0.048364832997322],[-0.063075087964535,-0.076130352914333,-0.043950583785772],[0.022088248282671,-0.11148872971535,0.098744064569473]],[[0.027979791164398,-0.082816585898399,0.077826239168644],[-0.0029740566387773,-0.006073831114918,0.0066859712824225],[-0.020410440862179,-0.00028626641142182,-0.067272074520588]],[[-0.010432426817715,0.1428979486227,-0.069251708686352],[0.011493867263198,0.16588035225868,0.10924450308084],[0.15060904622078,0.081247970461845,-0.077585071325302]],[[-0.035525288432837,-0.039752587676048,-0.025132151320577],[-0.028037793934345,-0.03578482195735,0.060295972973108],[-0.087955467402935,0.031122285872698,-0.018874194473028]],[[0.099225364625454,-0.063508369028568,0.041010681539774],[-0.015940170735121,0.040841791778803,-0.024911234155297],[-0.027973704040051,0.072432346642017,0.038762539625168]],[[0.025438502430916,-0.065699368715286,0.12202467769384],[-0.037743523716927,0.039498534053564,-0.011930735781789],[-0.048248346894979,0.15602697432041,-0.12728977203369]],[[0.060960333794355,-0.20828996598721,-0.042513500899076],[-0.073845766484737,-0.12749451398849,-0.082771860063076],[-0.10358069837093,0.029305776581168,-0.099396653473377]],[[-0.017094884067774,-0.094205163419247,0.10974948853254],[0.11035263538361,-0.22079603374004,-0.037126012146473],[0.059212546795607,-0.17173348367214,-0.12568402290344]],[[-0.022991437464952,-0.045836869627237,0.027043653652072],[-0.007793034426868,-0.0082485461607575,0.030675988644361],[0.04166491702199,0.04186188429594,-0.0014784578233957]],[[-0.011760839261115,0.044847786426544,0.057004172354937],[-0.038348477333784,0.043094575405121,0.006953155156225],[-0.036614637821913,0.059299975633621,-0.12887133657932]],[[0.0362633690238,-0.11682306975126,0.072913661599159],[-0.022786103188992,0.021735806018114,-0.093305453658104],[0.067270033061504,-0.066377326846123,-0.15375973284245]],[[-0.1096361503005,-0.086763769388199,-0.0021871267817914],[0.013698467053473,0.17442210018635,-0.16630658507347],[0.21033675968647,0.060838282108307,-0.3854418694973]],[[0.14047300815582,0.038395036011934,0.0044158552773297],[-0.15442660450935,-0.098392754793167,-0.035517815500498],[0.042598698288202,-0.070718728005886,-0.25987240672112]],[[0.053929690271616,0.0059606581926346,0.17529781162739],[-0.040132354944944,-0.081718683242798,0.029897227883339],[-0.07737423479557,-0.15680868923664,-0.1214095056057]],[[0.061867833137512,-0.0083442982286215,-0.081933923065662],[-0.1386151611805,-0.11713083088398,0.02550445497036],[-0.09257049113512,-0.08069659024477,0.10988866537809]],[[-0.048361264169216,0.12094628065825,-0.037570018321276],[-0.011875891126692,0.018382765352726,0.13329397141933],[-0.045689597725868,-0.21007537841797,0.074124358594418]],[[0.024984316900373,-0.29264125227928,0.0049391710199416],[0.11709146201611,-0.11305471509695,0.057884600013494],[0.17247942090034,-0.030306354165077,-0.10671126842499]],[[-0.0065837139263749,-0.027939226478338,-0.096958845853806],[-0.091512441635132,-0.019230660051107,-0.0958182066679],[0.019244646653533,0.14264039695263,-0.13863982260227]],[[0.080527730286121,-0.11267990618944,-0.14456811547279],[-0.21448284387589,-0.11263433843851,0.080628648400307],[0.034377418458462,-0.11940198391676,0.14197115600109]],[[-0.094498053193092,0.071774415671825,0.052371740341187],[-0.065402872860432,0.019797705113888,-0.18296310305595],[-0.078676037490368,-0.016652423888445,-0.35664176940918]],[[0.043532732874155,-0.0066269510425627,0.17615891993046],[0.00018317827198189,-0.089282184839249,0.0071503440849483],[-0.035601582378149,0.11499222368002,-0.014342486858368]],[[-0.052092593163252,-0.10148868709803,0.089027188718319],[-0.1499842852354,-0.054861150681973,0.1026770696044],[-0.049195613712072,-0.094367280602455,-0.31104671955109]],[[-0.31007102131844,0.06309911608696,-0.15384995937347],[0.060109060257673,0.045894492417574,-0.19344462454319],[0.049559555947781,0.15461102128029,-0.28654536604881]],[[-0.07763995975256,0.033536091446877,0.0060097207315266],[0.06706253439188,-0.00079446437302977,-0.3491139113903],[0.066539019346237,-0.017708735540509,0.012168725021183]],[[0.19316656887531,0.091693960130215,-0.2207762748003],[0.054596807807684,-0.018592422828078,-0.13218602538109],[0.054177395999432,0.016744239255786,-0.29976558685303]],[[-0.06889146566391,0.016650492325425,0.019226340577006],[0.0048712338320911,-0.22302477061749,0.029033644124866],[-0.091398105025291,-0.010501272045076,-0.010667573660612]],[[-0.066043056547642,-0.061674550175667,-0.065206475555897],[0.030414709821343,0.049272693693638,0.096385896205902],[-0.058255165815353,0.040684886276722,0.18800732493401]],[[0.13766798377037,-0.13518139719963,-0.18669107556343],[0.031147638335824,-0.17771375179291,-0.07392130792141],[-0.035813618451357,-0.070419378578663,0.10105661302805]],[[-0.13299304246902,0.13919115066528,-0.041925922036171],[-0.079602234065533,0.083211190998554,-0.16874822974205],[0.0069548469036818,0.0091209281235933,0.11808864027262]]],[[[0.048873350024223,-0.016618179157376,-0.0059721544384956],[0.051456693559885,-0.042760819196701,-0.027133816853166],[0.0076492130756378,0.02716052159667,-0.1546126306057]],[[0.12730818986893,0.0031111524440348,0.026462638750672],[-0.023108066990972,0.03231942653656,-0.056489434093237],[-0.02891525067389,0.069340109825134,-0.010213689878583]],[[-0.19150772690773,0.046609401702881,-0.050109751522541],[0.0083913384005427,-0.084932155907154,0.006441393867135],[0.085443429648876,0.065613374114037,-0.0014190239598975]],[[-0.043694820255041,0.05405293032527,-0.18896670639515],[0.017439406365156,0.0098499963060021,0.038471076637506],[-0.10284251719713,-0.062617480754852,0.072501048445702]],[[0.067056559026241,-0.024572934955359,0.042921874672174],[-0.015855263918638,-0.031319782137871,0.090405181050301],[-0.11850060522556,0.021395748481154,-0.15131033957005]],[[0.017245454713702,0.033841084688902,-0.10932616889477],[-0.05446308106184,0.12768022716045,-0.14363372325897],[-0.010296231135726,-0.024517280980945,0.024941224604845]],[[-0.058655045926571,-0.079283677041531,-0.03538790717721],[0.062544137239456,-0.071368366479874,-0.014428582042456],[0.14270116388798,-0.029708076268435,0.011723894625902]],[[-0.032367404550314,-0.046920843422413,0.011965969577432],[-0.026345271617174,0.070452824234962,0.031108491122723],[-0.07192525267601,0.069434531033039,0.053818553686142]],[[0.049853291362524,0.055264998227358,-0.093111284077168],[0.048575095832348,0.0066001699306071,-0.077383302152157],[0.048218283802271,-0.0024517152924091,-0.041183114051819]],[[0.005677240435034,-0.046859193593264,0.13634552061558],[0.080884993076324,0.010757730342448,-0.13026084005833],[-0.025204509496689,0.063332408666611,0.11401740461588]],[[-0.055273272097111,0.031689316034317,-0.16139148175716],[-0.011940374970436,-0.074296467006207,0.13566491007805],[0.0027019882109016,0.053302656859159,-0.012808922678232]],[[-0.16843794286251,0.0089297825470567,0.030733043327928],[0.034763287752867,0.037645686417818,0.029408549889922],[-0.010146224871278,-0.048353809863329,0.040529023855925]],[[0.078112453222275,-0.18445980548859,-0.30067864060402],[0.064247019588947,0.056672297418118,0.067173190414906],[-0.053346112370491,-0.0007762637687847,-0.068351589143276]],[[0.075669661164284,-0.00036015638033859,-0.042474564164877],[-0.024271609261632,-0.090061888098717,0.043283019214869],[-0.098639577627182,0.036888312548399,0.037121191620827]],[[0.10075628012419,-0.15857991576195,-0.12121202796698],[-0.042913097888231,0.066696017980576,-0.046579506248236],[-0.14902439713478,0.059045817703009,0.20916068553925]],[[0.017198357731104,0.0041184332221746,-0.10443770885468],[0.056413672864437,0.13355080783367,0.050634674727917],[-0.037558920681477,0.0050077387131751,-0.032761681824923]],[[-0.013626935891807,-0.10349282622337,-0.017038643360138],[0.11187318712473,0.073616549372673,0.06017329916358],[-0.13718496263027,0.094454705715179,-0.098962031304836]],[[0.01101340726018,-0.065125644207001,-0.032454092055559],[-0.090710617601871,-0.050010953098536,-0.041510924696922],[-0.10759823024273,0.016348952427506,0.035103086382151]],[[-0.039926897734404,0.0071922619827092,-0.018361248075962],[-0.0019553953316063,-0.13902668654919,-0.066428460180759],[-0.10064563155174,-0.047350268810987,0.056784626096487]],[[-0.14389532804489,-0.038410358130932,0.2017133384943],[-0.10510786622763,-0.061731372028589,-0.038704756647348],[0.032439533621073,0.049721993505955,0.033578082919121]],[[-0.072526507079601,-0.11315786838531,-0.079037822782993],[-0.034184996038675,-0.0051121134310961,-0.015986448153853],[-0.014492900110781,0.066340319812298,0.17652572691441]],[[0.050445768982172,-0.17622454464436,-0.00062517623882741],[0.013415838591754,0.081864252686501,0.01766455732286],[-0.10631830990314,0.042590387165546,-0.17047192156315]],[[0.041847977787256,-0.077788211405277,-0.10917680710554],[0.050077464431524,-0.016770998016,0.036306027323008],[-0.052865538746119,0.10929091274738,0.010966840200126]],[[0.017052741721272,-0.14913173019886,-0.015615552663803],[-0.0021565780043602,-0.027514614164829,-0.14681078493595],[0.010159482248127,-0.018427135422826,-0.015926906839013]],[[-0.0020719673484564,-0.048014536499977,-0.10425834357738],[0.17458514869213,-0.0070695551112294,0.039791032671928],[0.085661314427853,-0.018639033660293,0.16575366258621]],[[-0.046121139079332,0.0057923756539822,0.068020366132259],[-0.074556283652782,-0.13494724035263,0.04144025221467],[0.050009980797768,0.043031305074692,0.087862133979797]],[[-0.12163820117712,-0.025502510368824,0.042271926999092],[0.06134819984436,0.049333389848471,-0.097198382019997],[0.05648697912693,0.088180370628834,0.11760631948709]],[[-0.04040015116334,-0.085979819297791,-0.049166332930326],[-0.03325242549181,0.069598942995071,-0.10897783190012],[0.016970012336969,-0.018772605806589,0.015460447408259]],[[-0.012380708940327,0.013580705970526,0.019352458417416],[-0.048977632075548,0.034819386899471,0.075910784304142],[-0.02210178412497,0.033532399684191,0.068714395165443]],[[-0.071186415851116,-0.045599967241287,-0.091609090566635],[0.02924183383584,0.080425538122654,0.15430691838264],[0.0057277465239167,-0.02340048737824,-0.0026802802458405]],[[-0.05975741147995,0.17759236693382,0.10417234152555],[-0.0032145315781236,0.038906507194042,0.046074900776148],[0.020024476572871,-0.04465302079916,0.086057640612125]],[[0.077728159725666,0.017638850957155,0.13924930989742],[-0.12879133224487,0.028740102425218,0.086389310657978],[0.085158847272396,-0.015990473330021,0.16847144067287]],[[0.026607252657413,-0.061186797916889,0.014211324043572],[0.059348080307245,-0.029769722372293,0.02216723933816],[0.097531780600548,0.0043407557532191,-0.15294714272022]],[[-0.10163712501526,0.046059936285019,0.077561430633068],[-0.025066642090678,-0.012130137532949,-0.092966496944427],[-0.016232769936323,0.041743747889996,-0.034586779773235]],[[0.023846419528127,-0.072278305888176,-0.039202950894833],[0.019873661920428,-0.11091061681509,-0.040728863328695],[0.033894199877977,-0.050802141427994,0.0026239820290357]],[[-0.08971481770277,-0.12253827601671,-0.031684659421444],[0.062681026756763,-0.11156582832336,0.10583107173443],[0.056055881083012,-0.0070755034685135,0.033509466797113]],[[0.035570487380028,-0.1880346685648,-0.10573994368315],[-0.03932936117053,0.10160622745752,0.020571853965521],[-0.022977052256465,0.031618665903807,-0.081506885588169]],[[0.033835761249065,0.16174471378326,-0.044469393789768],[-0.052497159689665,-0.032189305871725,0.10328955948353],[0.020713115110993,-0.22203199565411,0.023345777764916]],[[0.0015181695343927,-0.09695116430521,-0.12032111734152],[0.00028074716101401,0.074422962963581,-0.069427028298378],[-0.1306879222393,-0.058109257370234,0.03805073723197]],[[-0.022593479603529,-0.072601795196533,0.012460448779166],[0.0060501978732646,-0.031281005591154,0.10212726145983],[0.017830880358815,0.0097181741148233,0.033383548259735]],[[-0.042354933917522,0.099490158259869,0.087451554834843],[-0.05830317363143,0.005359276663512,-0.10580959916115],[-0.01400216575712,-0.03337774425745,-0.11716051399708]],[[-0.11049898713827,-0.066529706120491,0.026204036548734],[0.069132603704929,0.1696043163538,0.20507363975048],[0.013820295222104,0.080309450626373,0.0046354825608432]],[[0.066333532333374,-0.0013640481047332,0.0064850295893848],[-0.13444477319717,0.043691236525774,0.019901854917407],[0.079609028995037,0.057840142399073,-0.027478784322739]],[[0.036286797374487,-0.11428225785494,0.08430802077055],[-0.11464308202267,0.005982908885926,0.090744756162167],[-0.047445919364691,0.060962591320276,-0.01875070668757]],[[-0.070570319890976,-0.021095391362906,-0.13747774064541],[-0.10913687944412,-0.084612831473351,0.044029712677002],[-0.0039204135537148,-0.051104683429003,0.0028059289325029]],[[-0.17457869648933,-0.047014258801937,-0.08236637711525],[-0.080591529607773,-0.033977936953306,-0.14291313290596],[0.039110325276852,0.065125375986099,0.17794613540173]],[[0.026407796889544,0.091415353119373,0.12502229213715],[0.015247349627316,0.051852986216545,0.081379033625126],[-0.045280668884516,-0.11326276510954,0.041531298309565]],[[-0.025642652064562,0.062653265893459,0.035382717847824],[-0.052196633070707,0.0010499797062948,0.051297541707754],[0.06313744187355,-0.019884521141648,0.011951754800975]],[[-0.043193694204092,-0.13307712972164,-0.0011404807446525],[0.15483222901821,0.080193899571896,-0.046260003000498],[0.078145705163479,0.071947045624256,-0.0026232986710966]],[[0.026601038873196,-0.17343837022781,0.00014611714868806],[-0.023695582523942,-0.049399092793465,0.10681097209454],[-0.040381915867329,-0.057373523712158,0.055984850972891]],[[-0.13566461205482,-0.0184091553092,-0.027695560827851],[-0.0027477957773954,-0.12557253241539,0.042200699448586],[0.055504307150841,0.014776292257011,0.056522943079472]],[[0.0023548968601972,0.10583541542292,-0.075127981603146],[-0.063111789524555,0.030127001926303,-0.20357476174831],[0.014506531879306,0.068739108741283,-0.10768999159336]],[[0.00045151027734391,-0.014565861783922,-0.050472788512707],[0.074656710028648,0.0049345698207617,0.060567196458578],[0.13819627463818,-0.16967864334583,-0.079965904355049]],[[-0.2263403236866,0.0041560218669474,0.10096886008978],[-0.025975834578276,-0.15840692818165,0.040161348879337],[-0.028969245031476,-0.16432672739029,-0.010515105910599]],[[0.046212788671255,0.018161911517382,-0.066559933125973],[0.024632209911942,0.027346154674888,0.029127733781934],[-0.080715112388134,-0.099259689450264,0.056122172623873]],[[-0.0877291187644,-0.050971694290638,0.17044852674007],[-0.061064150184393,0.013119203969836,-0.05329903960228],[-0.084645964205265,0.049820780754089,-0.076155923306942]],[[0.024179870262742,-0.053923387080431,-0.21330726146698],[-0.023474181070924,-0.11772022396326,0.028211081400514],[-0.05585590749979,-0.045820191502571,-0.044552870094776]],[[0.027787001803517,-0.10351606458426,-0.039977345615625],[0.12503300607204,-0.020281091332436,0.10741740465164],[0.1089780330658,-0.033611178398132,-0.034590974450111]],[[0.010392278432846,0.023899832740426,-0.059062249958515],[-0.046368204057217,-0.045199681073427,-0.0064568468369544],[0.084672354161739,0.060127999633551,0.047137040644884]],[[0.074040964245796,0.041264250874519,0.043001126497984],[-0.080226294696331,0.060400016605854,-0.018880072981119],[0.086475066840649,0.035080388188362,-0.21235406398773]],[[-0.080703623592854,-0.099555529654026,0.057709489017725],[0.0026265559718013,0.18328776955605,0.05866326764226],[0.14372925460339,0.089198566973209,-0.027470985427499]],[[-0.017642373219132,0.0070016388781369,-0.06339930742979],[-0.063194110989571,-0.041808035224676,-0.090136557817459],[0.060201425105333,0.051718257367611,0.046600446105003]],[[0.031260326504707,0.060818370431662,0.11308375000954],[-0.01274754665792,0.016471598297358,0.052507992833853],[-0.02474539168179,0.035838350653648,-0.012308133766055]],[[0.077852740883827,-0.056218516081572,-0.075489200651646],[0.13752393424511,-0.033488895744085,-0.17095868289471],[0.037088491022587,-0.011701084673405,-0.11669863760471]]],[[[-0.16891145706177,-0.15568949282169,-0.1573821157217],[0.034527823328972,-0.11270400136709,0.056223399937153],[0.14659343659878,0.036319777369499,-0.052131362259388]],[[0.021087421104312,0.064977049827576,0.069679781794548],[-0.061669521033764,0.033556066453457,0.042210128158331],[-0.10550367832184,-0.10066688805819,-0.086267203092575]],[[-0.0043346639722586,-0.024315478280187,-0.073781192302704],[-0.088979884982109,-0.03707293048501,-0.18558174371719],[0.16499069333076,0.10087908059359,-0.21508613228798]],[[-0.029521798714995,-0.053247172385454,0.015511940233409],[0.037568565458059,0.042448852211237,0.081880487501621],[-0.075857602059841,-0.12362240254879,0.15878899395466]],[[0.20254564285278,0.050998602062464,-0.018656723201275],[-0.15978038311005,0.076381154358387,0.19351996481419],[0.020737683400512,0.074215024709702,0.071795202791691]],[[-0.11110872030258,0.015939300879836,0.10224538296461],[-0.012801440432668,-0.0086608370766044,0.0082181533798575],[0.0061298231594265,-0.15577971935272,0.1446203738451]],[[0.066851831972599,-0.11881375312805,-0.17363938689232],[0.034954767674208,-0.054537292569876,-0.19693285226822],[0.054105449467897,0.10221938043833,-0.10125879943371]],[[0.10775031149387,0.091997310519218,-0.095194108784199],[0.070045121014118,0.072554372251034,-0.05867425352335],[0.10020557790995,-0.082968100905418,-0.057149935513735]],[[-0.046350222080946,0.1557577252388,0.01280484162271],[-0.045437630265951,-0.056464690715075,-0.068997628986835],[0.022237133234739,-0.080095067620277,-0.052912313491106]],[[-0.02217099443078,0.15067227184772,-0.38766571879387],[0.1783063262701,-0.085277087986469,-0.042755205184221],[0.06713379919529,0.20300389826298,0.060293130576611]],[[0.04706509783864,-0.13781130313873,0.0073814266361296],[0.019532769918442,-0.012991478666663,0.13419413566589],[0.087973318994045,-0.13716852664948,0.062034074217081]],[[0.098421163856983,-0.027032470330596,0.032657392323017],[0.014470568858087,0.076677680015564,-0.021195722743869],[-0.0051034563221037,-0.086248658597469,0.063538178801537]],[[0.040635168552399,-0.04800571501255,0.056820966303349],[0.14781372249126,0.04960373044014,0.039955887943506],[0.15190470218658,0.10332916676998,0.093259401619434]],[[-0.12126538902521,0.027557969093323,-0.026449153199792],[0.036607474088669,-0.0082049760967493,-0.044007103890181],[0.030773958191276,0.03806859254837,-0.01237899903208]],[[-0.011629612185061,-0.037437360733747,0.053339257836342],[0.063139647245407,0.065485209226608,0.076687231659889],[0.11189260333776,-0.11111715435982,-0.21415473520756]],[[0.015278962440789,0.12822848558426,0.049190692603588],[-0.036009334027767,-0.041678752750158,-0.02354558929801],[-0.0030781913083047,0.12802881002426,0.013289196416736]],[[-0.049689147621393,-0.17411556839943,0.14111404120922],[0.075997896492481,-0.02815630286932,-0.07910980284214],[-0.023717921227217,-0.061725497245789,-0.09216783195734]],[[0.1019354313612,0.11180349439383,0.015616222284734],[-0.018487043678761,-0.074382446706295,0.055800888687372],[-0.00010231065243715,0.021666856482625,-0.22023513913155]],[[-0.097490958869457,0.0054777283221483,-0.02187841758132],[0.075508259236813,0.082276545464993,-0.087089017033577],[-0.17123295366764,0.031117703765631,-0.054524064064026]],[[-0.037089470773935,0.11013013124466,0.065577492117882],[0.09784273058176,0.039216995239258,-0.025842281058431],[0.24761448800564,0.044875677675009,0.20604039728642]],[[0.0036645866930485,0.019285501912236,-0.066945038735867],[0.091499656438828,-0.077753022313118,0.1514687538147],[-0.093377538025379,-0.041421942412853,7.7634453191422e-05]],[[0.055960427969694,-0.092964217066765,-0.20746596157551],[0.14129440486431,-0.23783281445503,-0.059142265468836],[0.12186735868454,-0.14954181015491,-0.00030585646163672]],[[0.0083448980003595,0.0073531153611839,0.054277259856462],[-0.18236170709133,0.01637626811862,-0.11887116730213],[0.01287011243403,-0.041174307465553,-0.0093765091150999]],[[0.083827145397663,0.007732252124697,-0.091406106948853],[0.09886346757412,-0.077726967632771,-0.21483719348907],[0.083562709391117,-0.0025240189861506,-0.13958278298378]],[[0.14662942290306,0.16450932621956,0.065986089408398],[0.051462545990944,-0.048695456236601,-0.0061090025119483],[0.07600674778223,-0.096904627978802,-0.29508596658707]],[[-0.011454152874649,0.042828772217035,-0.2101062387228],[-0.013451182283461,0.047173198312521,-0.15248693525791],[0.10821297764778,0.076936565339565,0.040332298725843]],[[-0.055582355707884,0.1920423656702,-0.084203779697418],[-0.068750090897083,0.039552219212055,-0.019159203395247],[-0.0060241133905947,-0.04594062268734,-0.022117853164673]],[[-0.055695537477732,0.031964093446732,-0.04410170391202],[0.12679137289524,-0.013588070869446,-0.024151273071766],[-0.018831096589565,-0.1801575422287,-0.15376605093479]],[[-0.046549126505852,0.07538678497076,0.18765595555305],[-0.049470767378807,0.036352656781673,-0.087625466287136],[-0.13093131780624,0.029926020652056,-0.087041348218918]],[[-0.076795540750027,-0.0058753294870257,0.028488179668784],[-0.041072357445955,-0.088486701250076,0.062277559190989],[-0.010856419801712,0.015539170242846,-0.011125707998872]],[[-0.13520087301731,-0.13816501200199,0.077451214194298],[-0.095641538500786,-0.019210247322917,-0.050107978284359],[0.037256442010403,0.098363921046257,-0.089235819876194]],[[-0.10482928901911,-0.02444907091558,0.065385848283768],[0.048238392919302,0.033453907817602,0.042273536324501],[-0.14939460158348,0.029242500662804,-0.20893937349319]],[[-0.060332361608744,-0.16912989318371,-0.12836501002312],[0.059726368635893,-0.072847075760365,-0.11934772133827],[-0.029746972024441,0.13320595026016,0.083021208643913]],[[0.05994176119566,0.02310748398304,0.011216471903026],[-0.0018481890438125,-0.11708861589432,0.05003497004509],[0.078892253339291,-0.11345658451319,-0.05639211088419]],[[-0.056443233042955,-0.11416556686163,-0.10252290964127],[-0.059853322803974,0.0034084473736584,0.010837247595191],[-0.095316343009472,-0.075351245701313,-0.075441263616085]],[[0.10226851701736,-0.074459932744503,0.10880524665117],[0.10350062698126,0.12646551430225,0.070553682744503],[-0.17417119443417,-0.0072343740612268,-0.051975626498461]],[[0.0017913999035954,-0.014859654009342,0.03597529605031],[-0.051982849836349,0.027856837958097,0.086390070617199],[0.0052747242152691,0.02350384183228,-0.12292744964361]],[[0.0073055382817984,-0.096432365477085,0.068436689674854],[-0.055706892162561,0.047466859221458,0.058839075267315],[-0.1089144796133,0.1160114556551,-0.08826769143343]],[[-0.048033442348242,-0.20122393965721,-0.032824907451868],[-0.011620255187154,-0.12336114794016,0.13038209080696],[0.13354450464249,-0.011499164626002,-0.1026983782649]],[[-0.065124541521072,0.042281232774258,-0.14772646129131],[0.19699628651142,-0.039711624383926,-0.029399137943983],[0.011069540865719,0.11375503242016,-0.0011106587480754]],[[0.006098257843405,0.063511840999126,0.071995288133621],[-0.042457208037376,-0.037812247872353,0.12930332124233],[0.087062209844589,-0.010607087053359,-0.041107498109341]],[[0.022062284871936,-0.026406083256006,-0.061259582638741],[-0.097922876477242,0.053724076598883,0.12932749092579],[0.030731830745935,0.16856960952282,0.039926551282406]],[[0.14094211161137,0.028506454080343,-0.14196735620499],[-0.19178058207035,0.0096254935488105,-0.079756587743759],[-0.23763497173786,0.085712857544422,-0.044392738491297]],[[-0.047873765230179,-0.058168891817331,-0.06054924800992],[0.063911356031895,-0.010786541737616,0.093606643378735],[-0.019251316785812,0.040059942752123,0.019934087991714]],[[-0.052697252482176,0.14790520071983,0.0067887841723859],[-0.10160569101572,0.0023614398669451,0.015962546691298],[-0.11203453689814,0.099658116698265,0.042687334120274]],[[0.095236547291279,0.058561213314533,-0.043545369058847],[0.1501978635788,-0.076498821377754,0.17980387806892],[0.063468083739281,0.12942811846733,0.13864381611347]],[[-0.15621455013752,0.11352670937777,-0.13961344957352],[-0.1435149461031,-0.0067577552981675,0.011766055598855],[0.025742275640368,-0.027525065466762,-0.082100003957748]],[[-0.057333815842867,-0.10902223736048,-0.038139499723911],[0.0553197003901,0.060901623219252,-0.16154593229294],[0.11482181400061,0.088003262877464,-0.08820928633213]],[[0.081811979413033,0.039543729275465,-0.22447398304939],[-0.050640102475882,0.0044648447073996,0.019636111333966],[-0.075117483735085,-0.075482100248337,-0.046287577599287]],[[0.12485552579165,0.017373193055391,-0.078741975128651],[0.10376655310392,-0.10106237232685,-0.085670821368694],[-0.013951485045254,0.026543810963631,-0.12903922796249]],[[0.070784732699394,0.0040194853208959,0.015876414254308],[0.040031924843788,0.068532414734364,0.080574974417686],[-0.1195195093751,0.049283470958471,0.17886482179165]],[[0.067918263375759,-0.062696181237698,0.046879183501005],[0.020917274057865,-0.040001440793276,-0.058584555983543],[-0.096395879983902,0.17415942251682,-0.019012533128262]],[[0.030683368444443,0.035865906625986,-0.026976816356182],[-0.11010324954987,-0.21996636688709,-0.090967752039433],[0.0073246229439974,0.059841997921467,-0.045456156134605]],[[-0.073976501822472,-0.06928712874651,0.059117287397385],[0.10046526789665,-0.068925857543945,-0.18782828748226],[0.21468175947666,0.098822124302387,-0.039931379258633]],[[0.058066330850124,-0.019256368279457,-0.031736526638269],[-0.33611765503883,0.040048129856586,0.091137073934078],[-0.094087161123753,0.025967814028263,-0.14924807846546]],[[-0.07821199297905,0.055974625051022,-0.0028435792773962],[0.076330184936523,-0.055439796298742,-0.072083704173565],[-0.038770534098148,0.078346610069275,-0.064981885254383]],[[-0.12472985684872,0.024185007438064,0.094546273350716],[0.1100996285677,-0.25127419829369,0.0099484231323004],[-0.00059140531811863,0.0045392955653369,0.010296896100044]],[[0.032859224826097,-0.020575316622853,-0.11930648237467],[0.063796848058701,0.0013357233256102,-0.089523732662201],[0.033485192805529,-0.01436978019774,-0.028690833598375]],[[-0.015636499971151,-0.10832620412111,-0.037724371999502],[-0.059578452259302,-0.011708584614098,0.06452501565218],[0.076697267591953,0.05624270811677,-0.00050811539404094]],[[0.072240382432938,0.024305900558829,0.054767541587353],[-0.13588216900826,0.00042480562115088,-0.039288405328989],[0.045998863875866,0.026471776887774,0.10557335615158]],[[-0.043130125850439,-0.10405226796865,0.004058884922415],[0.0023829373531044,0.081813581287861,0.064172878861427],[-0.05068202316761,-0.0028926921077073,-0.026019871234894]],[[0.023508425801992,-0.012673679739237,0.028894152492285],[0.10806323587894,-0.081671878695488,-0.048674121499062],[0.078052766621113,-0.013368929736316,-0.029221158474684]],[[0.055654335767031,0.062441762536764,0.03471701964736],[-0.075635507702827,0.17189157009125,0.096053451299667],[-0.01812788285315,0.065346546471119,0.13602551817894]],[[-0.074925966560841,0.060007940977812,0.013222246430814],[0.26713508367538,0.060103043913841,0.043517358601093],[0.0086971325799823,-0.054916631430387,-0.063326992094517]]],[[[0.13805988430977,0.16635604202747,0.015256524085999],[0.053417541086674,0.11015968024731,-0.058521568775177],[-0.020255401730537,0.014230670407414,0.0056859464384615]],[[0.079967133700848,-0.048184636980295,0.003559717675671],[0.0083789378404617,0.016380762681365,0.0076358988881111],[-0.15194636583328,-0.078119665384293,0.10087361931801]],[[-0.044688131660223,0.00059512665029615,-0.010156913660467],[0.047101810574532,-0.037965297698975,-0.044786226004362],[0.095047503709793,-0.079674273729324,-0.03391582146287]],[[-0.058610044419765,-0.060614503920078,0.029809702187777],[0.0096688196063042,0.023966589942575,0.15193822979927],[-0.013647332787514,0.00091218581655994,-0.069327890872955]],[[0.03551571816206,0.09125205129385,-0.15061920881271],[-0.095092751085758,0.0079185357317328,-0.006891131401062],[-0.1831179857254,-0.027013497427106,-0.010167580097914]],[[0.011665392667055,0.035759169608355,-0.0038603090215474],[-0.019620381295681,0.081865504384041,0.068905845284462],[-0.083993084728718,-0.057208936661482,0.039139289408922]],[[-0.10325492918491,-0.011180267669261,0.019382672384381],[-0.079964846372604,0.013620596379042,0.014004112221301],[0.0085092019289732,0.0051322914659977,0.10564612597227]],[[0.082326300442219,0.038942381739616,0.084292195737362],[0.0064140860922635,-0.020006407052279,0.079826235771179],[-0.051112964749336,0.12064906954765,-0.0069736079312861]],[[0.011205535382032,0.076257444918156,0.0066359252668917],[-0.082551434636116,-0.10973277688026,-0.042720258235931],[0.016763130202889,-0.012081549502909,0.044270791113377]],[[-0.16833852231503,-0.098710812628269,-0.0066788694821298],[0.014191935770214,-0.082462787628174,0.063515335321426],[-0.068918757140636,0.11903443932533,0.013595273718238]],[[-0.030654987320304,0.051080469042063,-0.089779704809189],[0.021680286154151,-0.041575137525797,0.078669004142284],[-0.019614659249783,0.022571036592126,0.026620669290423]],[[0.011006253771484,-0.097165651619434,-0.0049080774188042],[0.13908757269382,-0.026318056508899,-0.16816951334476],[-0.086642310023308,-0.012564877979457,-0.16719488799572]],[[-0.069329462945461,-0.060161750763655,0.024494471028447],[-0.0089451624080539,-0.019822392612696,-0.029748069122434],[-0.020404268056154,-0.068492621183395,0.019773699343204]],[[-0.096940092742443,-0.036798901855946,-0.044519569724798],[-0.082663513720036,-0.0068178311921656,-0.14416271448135],[0.19985142350197,-0.042806811630726,0.090005710721016]],[[-0.038832277059555,0.017987478524446,0.047114498913288],[-0.035141550004482,0.037104342132807,0.0051779849454761],[0.063533678650856,-0.096856772899628,0.047620918601751]],[[-0.036532204598188,-0.11782964318991,-0.032604549080133],[4.5802931708749e-05,0.026362843811512,0.013058691285551],[-0.0019552423618734,-0.051836919039488,0.035803914070129]],[[-0.0084721343591809,0.15401409566402,-0.11525741219521],[0.065288819372654,-0.041339285671711,0.12250231951475],[-0.038317576050758,0.1227472871542,-0.045546147972345]],[[-0.081497423350811,-0.10608574002981,-0.1674482524395],[-0.038230333477259,0.0302674472332,-0.023007834330201],[0.08532603085041,-0.031559575349092,-0.017582632601261]],[[-0.078223399817944,-0.065709874033928,-0.030399596318603],[-0.078837618231773,-0.015921045094728,0.048590488731861],[-0.018009996041656,0.027681484818459,-0.036576095968485]],[[0.058734189718962,-0.069990299642086,0.063919067382812],[0.057628870010376,0.037301316857338,0.0023446348495781],[0.15770614147186,0.035460732877254,-0.14436505734921]],[[0.0056569995358586,-0.14095450937748,0.079841248691082],[-0.2503744661808,-0.088508032262325,0.046316083520651],[-0.14379221200943,-0.14181990921497,0.054582919925451]],[[-0.093260392546654,0.011528670787811,-0.031727980822325],[-0.016922239214182,0.035839702934027,-0.082012251019478],[-0.08620572835207,-0.029204063117504,-0.12083747982979]],[[-0.15737065672874,-0.099671207368374,-0.057314999401569],[-0.052991289645433,0.020879935473204,0.048817407339811],[-0.030939387157559,-0.11794108897448,-0.037039339542389]],[[-0.17757001519203,0.016817213967443,-0.098082639276981],[-0.12815344333649,-0.12939630448818,0.010253683663905],[-0.084078952670097,0.01169924158603,-0.024120131507516]],[[0.010050867684186,-0.074192374944687,-0.010157850570977],[-0.13314944505692,-0.032385554164648,-0.011882890947163],[-0.0039505804888904,-0.034180127084255,0.01482043415308]],[[0.01957100071013,0.038290534168482,-0.14191465079784],[-0.10157080739737,-0.010291989892721,0.083842739462852],[-0.0788933634758,-0.1082836613059,0.036430776119232]],[[-0.065598160028458,-0.06777460873127,0.09933052957058],[-0.11876089125872,-0.045157257467508,-0.12000261992216],[-0.10956633090973,-0.031102335080504,-0.19709974527359]],[[-0.1219384521246,0.040867745876312,-0.0074425251223147],[0.013888945803046,-0.11694810539484,0.093102298676968],[-0.072036691009998,0.05137437209487,-0.040011290460825]],[[0.035572055727243,-0.0273865647614,-0.00054296036250889],[0.072612695395947,-0.022891456261277,0.040093846619129],[0.06591209769249,-0.068151883780956,0.086804792284966]],[[-0.029810475185513,-0.059950184077024,0.076261162757874],[-0.11094807088375,-0.16003452241421,-0.060789611190557],[0.1259667724371,-0.088418781757355,-0.21857351064682]],[[-0.035499699413776,-0.097486451268196,-0.068984106183052],[-0.10657925903797,0.050936210900545,0.062327034771442],[-0.092382244765759,0.033142428845167,-0.087521895766258]],[[0.044115092605352,-0.073527224361897,-0.020579464733601],[0.070988394320011,0.15591809153557,-0.050302308052778],[0.097512237727642,-0.15433269739151,0.0034934638533741]],[[0.085936576128006,0.097633175551891,0.059985671192408],[-0.0078749312087893,-0.11859222501516,0.049340486526489],[0.05901300534606,0.0027980338782072,0.014605890959501]],[[-0.14511393010616,-0.1239635720849,0.032060213387012],[0.021381104364991,-0.075132094323635,0.12368802726269],[0.12971450388432,-0.0053338096477091,0.014338161796331]],[[-0.04448327049613,0.063130766153336,0.052832692861557],[-0.091990172863007,-0.0121756400913,0.068699695169926],[0.0039713699370623,-0.065257199108601,-0.053263392299414]],[[0.13209497928619,-0.0043700612150133,0.056334733963013],[-0.081040181219578,0.010662397369742,0.031912546604872],[-0.16265077888966,-0.032692298293114,0.10566598176956]],[[0.0087197907269001,-0.062820583581924,-0.029177414253354],[-0.023919092491269,-0.0067254267632961,-0.1263115555048],[0.050182830542326,0.079433880746365,-0.0036580464802682]],[[0.066441617906094,0.081853806972504,-0.0086803250014782],[-0.029689345508814,-0.10846552252769,-0.038198702037334],[0.001207806635648,-0.0055183726362884,-0.023627130314708]],[[0.051356937736273,-0.0086306370794773,0.0278380215168],[-0.059638816863298,0.087447412312031,-0.10899844765663],[-0.04228600859642,0.0043635568581522,-0.00056658778339624]],[[0.10638745129108,0.12600459158421,-0.0099862311035395],[0.046019282191992,-0.0022174972109497,0.087618082761765],[0.046050783246756,0.040663734078407,0.12634368240833]],[[0.024952372536063,0.011416726745665,0.059337556362152],[0.11676477640867,0.08222009986639,0.029877681285143],[0.0062736445106566,-0.018202593550086,0.059790935367346]],[[-0.10280235856771,-0.028207279741764,-0.017783911898732],[0.0029754096176475,0.086171865463257,0.057850282639265],[-0.093234360218048,-0.053262934088707,0.020909169688821]],[[-0.0036473115906119,-0.040997229516506,-0.012170671485364],[-0.085873432457447,0.00053124834084883,0.071723274886608],[0.027902508154511,-0.16084325313568,-0.07534746825695]],[[0.038310475647449,-0.0094649447128177,0.11305824667215],[0.090000823140144,0.093005999922752,0.014659903012216],[-0.018461171537638,-0.024035478010774,-0.10638433694839]],[[0.09139496088028,-0.12220004200935,-0.050517041236162],[0.055189590901136,-0.043757386505604,-0.050700638443232],[-0.093009725213051,0.0099336309358478,-0.029674086719751]],[[0.033051744103432,0.039196360856295,-0.13897566497326],[-0.11967727541924,0.051198892295361,0.059683930128813],[-0.066389307379723,-0.044125929474831,0.081358440220356]],[[0.049116484820843,-0.023082073777914,-0.047457836568356],[0.058209035545588,-0.058945916593075,0.10965048521757],[0.076306842267513,0.043448183685541,-0.048570789396763]],[[0.042268201708794,-0.091022677719593,-0.062880150973797],[-0.10340341925621,0.020509241148829,-0.0044433106668293],[-0.12248366326094,0.049889490008354,-0.061454202979803]],[[-0.055618144571781,0.074030339717865,-0.040711514651775],[-0.049029674381018,-0.029746390879154,0.056046083569527],[0.0062194033525884,-0.12872563302517,0.09632558375597]],[[0.023993359878659,-0.036978475749493,0.066599018871784],[-0.0258714761585,0.031789131462574,-0.070308737456799],[0.052331689745188,-0.082333378493786,-0.019389815628529]],[[0.034069988876581,0.032157078385353,-0.0078082517720759],[-0.051442489027977,-0.21683032810688,-0.063360616564751],[-0.046364787966013,-0.074730336666107,0.13147430121899]],[[-0.037972785532475,-0.032951693981886,-0.046226885169744],[0.012388780713081,0.046590905636549,0.039552245289087],[0.027728382498026,0.031027395278215,-0.041995588690042]],[[-0.010878211818635,0.13855683803558,0.1118960827589],[-0.056716158986092,-0.0063198893330991,-0.001514331321232],[-0.032681081444025,-0.076779268682003,-0.038335338234901]],[[-0.040657926350832,-0.049953524023294,0.12014604359865],[-0.094738118350506,0.033695254474878,0.040753345936537],[-0.047749765217304,-0.019438108429313,-0.055954921990633]],[[0.039508670568466,-0.13646522164345,0.045177906751633],[-0.016086963936687,0.11252844333649,-0.039105802774429],[0.052507996559143,0.023198300972581,-0.064414411783218]],[[-0.018405601382256,-0.16607193648815,-0.1412443369627],[0.026473363861442,-0.032760642468929,-0.24631077051163],[0.066544219851494,0.014420583844185,-0.088951848447323]],[[-0.14197643101215,-0.12912110984325,-0.036542877554893],[-0.058614172041416,0.070201642811298,-0.033437211066484],[-0.031499098986387,0.11241811513901,-0.035462029278278]],[[-0.085833378136158,0.049548719078302,0.066274628043175],[0.055775549262762,-0.08276080340147,-0.038218386471272],[-0.038293175399303,-0.028435967862606,-0.015655778348446]],[[-0.10818104445934,0.063762456178665,0.081677712500095],[0.036108773201704,0.061472699046135,0.075189277529716],[-0.021380828693509,0.032194670289755,0.0225979257375]],[[-0.023423939943314,-0.024762604385614,-0.082240767776966],[-0.020296240225434,-0.13869738578796,0.21213668584824],[0.0023272207472473,0.052915420383215,-0.094069436192513]],[[-0.066708661615849,0.027186943218112,0.043946973979473],[-0.12602695822716,0.047182343900204,0.023511867970228],[-0.1549379080534,-0.15037831664085,-0.098539263010025]],[[-0.053884763270617,-0.073667921125889,-0.098778367042542],[0.04116752743721,-0.092472225427628,-0.10989940166473],[0.025110380724072,-0.051925465464592,-0.016666620969772]],[[0.00019944200175814,-0.007973943836987,-0.032402221113443],[-0.02392210252583,0.01109879091382,-0.016861140727997],[0.051376257091761,0.088257268071175,-0.050334680825472]],[[-0.069779418408871,0.065012820065022,-0.10377481579781],[-0.017680728808045,-0.034791972488165,0.016655432060361],[-0.01355622895062,-0.11806535720825,-0.040958166122437]]],[[[0.14632576704025,0.20008063316345,0.11349906772375],[-0.14980174601078,-0.18660533428192,-0.065579995512962],[-0.12008261680603,0.053857699036598,0.061637833714485]],[[0.19070440530777,-0.083990678191185,-0.17124928534031],[0.10193716734648,0.048742819577456,0.0058023235760629],[-0.17818892002106,-0.2498924434185,-0.00069428776623681]],[[-0.04680011048913,0.029909523203969,-0.074789613485336],[-0.10299932211637,0.069476127624512,-0.11694515496492],[-0.17474050819874,-0.06628642231226,-0.09065105766058]],[[-0.10675459355116,-0.2926170527935,-0.16755644977093],[-0.050823647528887,0.12440922111273,0.092307940125465],[-0.11513915657997,-0.013571684248745,0.087819956243038]],[[0.026801532134414,0.1038561090827,0.011076120659709],[-0.20223771035671,-0.07151810079813,-0.016717106103897],[0.096120603382587,0.048685178160667,-0.11146222054958]],[[0.19292859733105,0.10170654207468,0.11005557328463],[-0.068498991429806,0.097006291151047,-0.099694699048996],[-0.29348799586296,0.057149406522512,-0.11692856252193]],[[-0.084967203438282,0.097908943891525,0.13374669849873],[0.11421082913876,0.034681368619204,-0.103146225214],[-0.2283016294241,-0.15647704899311,-0.095509581267834]],[[0.016791304573417,0.078016720712185,0.043458163738251],[0.04646598175168,0.11718374490738,0.12266818434],[0.037375792860985,0.04769179970026,-0.048364162445068]],[[0.071063779294491,-0.027483463287354,-0.020478064194322],[0.014296310953796,-0.022515002638102,-0.032319143414497],[-0.0085795931518078,-0.023896489292383,-0.10115049779415]],[[-0.083345927298069,0.077620506286621,-0.0081821465864778],[-0.1219701692462,0.093674257397652,0.091109916567802],[0.058403290808201,-0.094308644533157,-0.0073588471859694]],[[0.20700001716614,-0.04378305375576,-0.085755296051502],[-0.075763493776321,-0.13273440301418,-0.15724010765553],[-0.059779282659292,-0.23216477036476,0.12891040742397]],[[-0.16019415855408,-0.092752277851105,0.10967081040144],[-0.043571688234806,-0.1409498155117,0.070585064589977],[-0.13828903436661,0.034348111599684,-0.0015203836373985]],[[-0.048950798809528,-0.010110651142895,0.053403176367283],[-0.060528911650181,-0.021665830165148,-0.043569382280111],[0.15106761455536,0.11059753596783,-0.17692914605141]],[[-0.20286428928375,0.0070453407242894,-0.025390325114131],[-0.12910087406635,-0.060916058719158,0.14223842322826],[-0.038238238543272,-0.1108333915472,0.0071996659971774]],[[0.18195183575153,0.12750712037086,-0.027008824050426],[-0.059270586818457,-0.0515415109694,-0.034794323146343],[-0.084843412041664,-0.041252329945564,-0.040880750864744]],[[0.18358725309372,-0.062366034835577,0.019323736429214],[-0.11064080148935,-0.0012217477196828,-0.116963788867],[-0.040910299867392,-0.17219378054142,0.011770216748118]],[[0.14054141938686,0.10462070256472,0.135641887784],[-0.10798259824514,0.072751872241497,0.0087042553350329],[0.090793207287788,-0.21416486799717,-0.11865285038948]],[[0.019697425886989,-0.12958627939224,-0.20472106337547],[0.13529181480408,0.028559438884258,-0.048662032932043],[-0.067139230668545,-0.055285405367613,0.058462612330914]],[[0.26880016922951,0.0052661644294858,0.22674177587032],[0.078866928815842,0.0080235926434398,-0.047805320471525],[-0.0099415648728609,-0.06560867279768,-0.13850755989552]],[[0.052389957010746,0.23236702382565,0.23518684506416],[-0.071733556687832,0.0010763234458864,0.0017607820918784],[0.026255752891302,-0.17779552936554,-0.035365018993616]],[[0.24388720095158,0.049763258546591,0.08122630417347],[-0.069339327514172,0.14411370456219,-0.07252911478281],[-0.24280026555061,0.022361822426319,0.060380086302757]],[[0.003743581706658,-0.13232371211052,-0.0839654058218],[-0.0037331390194595,0.011669982224703,0.2654704451561],[-0.22600500285625,0.084998495876789,-0.25932544469833]],[[0.065849050879478,-0.063473537564278,0.13955423235893],[0.035790458321571,-0.10688096284866,-0.2792201936245],[0.08109588176012,-0.15580081939697,0.067967742681503]],[[0.043362982571125,0.042227312922478,0.036656718701124],[-0.12287932634354,0.1355023086071,0.04163958132267],[-0.021301394328475,-0.11169105023146,-0.13347494602203]],[[-0.078554406762123,0.11730201542377,0.16575543582439],[-0.0031208239961416,-0.057276751846075,0.0032219751738012],[-0.10636115074158,-0.13776049017906,-0.13601465523243]],[[-0.10250963270664,-0.028026591986418,-0.19590494036674],[-0.12858635187149,0.050369597971439,-0.19993570446968],[-0.14980205893517,-0.24697917699814,-0.099093802273273]],[[0.12293504923582,0.1041539311409,-0.055129401385784],[-0.19626067578793,-0.026714077219367,-0.098917491734028],[-0.058780457824469,-0.018414676189423,0.11566204577684]],[[0.00085711060091853,-0.060273993760347,-0.25936812162399],[0.14507521688938,0.015032551251352,0.021920077502728],[-0.36496424674988,0.0060861767269671,0.12726639211178]],[[-0.0062262802384794,-0.069087967276573,0.055376302450895],[0.095749065279961,-0.24206586182117,-0.1678032875061],[0.10307911038399,-0.019031411036849,-0.038785077631474]],[[0.1477782279253,0.12606251239777,-0.096129305660725],[0.080623477697372,-0.1241329908371,0.013478231616318],[0.11949713528156,0.074522502720356,-0.20276869833469]],[[-0.037495084106922,-0.20513974130154,0.18249347805977],[0.033803973346949,-0.033881157636642,-0.10989630222321],[-0.13411186635494,0.033318918198347,-0.050640307366848]],[[-0.024298505857587,-0.076836079359055,0.0018246053950861],[0.26515254378319,-0.013539624400437,0.050572093576193],[-0.060713518410921,0.1324351131916,0.028445038944483]],[[0.10051982849836,0.066124700009823,0.051912382245064],[-0.027971981093287,0.10646349936724,-0.060668341815472],[0.17579609155655,0.010820490308106,-0.048627801239491]],[[-0.12136107683182,0.016355630010366,-0.018883664160967],[-0.075816713273525,-0.089193120598793,0.069460079073906],[-0.063242517411709,-0.039720460772514,-0.06700723618269]],[[-0.089554719626904,0.0073046828620136,0.06424493342638],[-0.11849495768547,-0.1407382786274,0.033833678811789],[-0.050718493759632,0.087637834250927,-0.0054818354547024]],[[0.014074828475714,-0.018897438421845,-0.020451664924622],[0.19070841372013,0.0144237075001,0.0073301773518324],[-0.060318686068058,-0.21350659430027,0.064090304076672]],[[-0.049576107412577,0.10340433567762,0.047127962112427],[-0.1128848195076,0.024046307429671,0.062976807355881],[0.079965859651566,0.069684877991676,0.037197694182396]],[[-0.28399538993835,0.037318173795938,0.093938201665878],[-0.05841751024127,-0.026725834235549,0.040788751095533],[0.018561821430922,-0.093805886805058,0.056581627577543]],[[-0.25857877731323,-0.13788464665413,-0.0082460641860962],[0.0075753387063742,-0.13587112724781,-0.05486136302352],[0.14358605444431,-0.058312557637691,0.0032042681705207]],[[-0.061531327664852,-0.049451861530542,0.064579769968987],[0.10288552194834,0.045834086835384,0.083434328436852],[-0.01424431335181,-0.020495960488915,-0.11548972129822]],[[0.17435041069984,0.080310828983784,0.057694986462593],[0.031622789800167,-0.049768552184105,0.10829422622919],[0.080581694841385,-0.16756752133369,0.044150341302156]],[[-0.058706317096949,-0.031416323035955,0.017486104741693],[-0.046811301261187,-0.021249763667583,0.11698460578918],[0.11080375313759,-0.049881964921951,-0.11830317974091]],[[-0.044559698551893,0.060987580567598,-0.058967716991901],[0.060302559286356,0.076695844531059,-0.034560199826956],[-0.25491479039192,-0.063079722225666,-0.034855470061302]],[[0.031933732330799,0.039365734905005,-0.04801831766963],[0.024010989814997,-0.022872697561979,0.070092923939228],[-0.099951587617397,0.020736534148455,0.033129476010799]],[[-0.01667963154614,0.05552552267909,-0.1476568877697],[-0.023464325815439,-0.025544138625264,-0.16277132928371],[0.01621482335031,-0.14322128891945,0.093041442334652]],[[-0.046755876392126,0.11687029153109,-0.031280219554901],[0.054953623563051,-0.035749617964029,-0.11621959507465],[-0.14180812239647,0.12020343542099,0.077001579105854]],[[0.099694177508354,-0.16391679644585,-0.039712071418762],[-0.063725240528584,0.064166322350502,-0.041724149137735],[-0.054000072181225,0.075049564242363,0.20068143308163]],[[0.082266606390476,0.10469482839108,0.07586520165205],[0.12139331549406,-0.1497525125742,0.025708531960845],[-0.11590146273375,-0.10677275806665,-0.1252368837595]],[[-0.18755586445332,0.12664119899273,0.21307551860809],[-0.12807206809521,0.037485718727112,0.045946232974529],[0.075208306312561,0.090219378471375,0.042100500315428]],[[-0.1088644489646,0.20323625206947,-0.12822164595127],[-0.039592586457729,-0.052022639662027,-0.00059188692830503],[-0.15619976818562,-0.3397065103054,0.024727508425713]],[[-0.013060736469924,-0.093804143369198,0.044091738760471],[-0.13269697129726,-0.18157941102982,0.094414785504341],[-0.069803945720196,-0.074444934725761,0.0049999770708382]],[[-0.090155571699142,0.1762780547142,0.072519242763519],[0.027181116864085,-0.28933873772621,-0.14027065038681],[-0.0013511249562725,-0.05297589674592,0.035873908549547]],[[-0.20987789332867,0.13898795843124,0.17369446158409],[0.056455887854099,-0.065003663301468,-0.065425172448158],[-0.17415526509285,-0.09014980494976,0.015284576453269]],[[-0.069886937737465,-0.0079720141366124,-0.11920015513897],[0.081410154700279,0.058200009167194,0.0068677430972457],[-0.30019930005074,-0.024579014629126,0.071780346333981]],[[0.083435848355293,-0.014361094683409,-0.20142862200737],[-0.035876210778952,0.1489786952734,-0.26664024591446],[-0.097486324608326,0.11854030191898,0.006061780732125]],[[-0.037527710199356,0.060322891920805,0.036716356873512],[0.06398744136095,-0.0024309451691806,-0.03069556504488],[-0.093373730778694,-0.18406698107719,-0.18152093887329]],[[0.059167705476284,-0.046194266527891,-0.39983540773392],[-0.30530509352684,-0.2300228625536,0.028439905494452],[-0.11609291285276,0.012337839230895,-0.12314894795418]],[[-0.2085846811533,-0.057572208344936,0.13735590875149],[-0.31882810592651,-0.1599228978157,0.10438074916601],[0.0028354309033602,-0.070229701697826,0.061779569834471]],[[0.29608100652695,-0.018090153113008,-0.10890807211399],[0.0041659222915769,-0.080940455198288,0.073342733085155],[0.080399975180626,-0.23258982598782,-0.17468978464603]],[[0.26624250411987,-0.24309176206589,0.065338730812073],[0.047173894941807,-0.026081034913659,0.046685598790646],[-0.035079654306173,-0.037281334400177,-0.10245329141617]],[[-0.14660206437111,-0.19943706691265,0.13104939460754],[-0.085117749869823,0.053702179342508,-0.0255520157516],[-0.26592990756035,-0.059915915131569,0.070413500070572]],[[-0.12674497067928,0.035407587885857,0.0168890748173],[0.026382137089968,-0.041553944349289,-0.14689940214157],[0.1989670842886,-0.275022149086,0.051940556615591]],[[-0.15938501060009,-0.10840560495853,0.035496957600117],[-0.18791554868221,-0.19419911503792,-0.18406054377556],[0.023707719519734,-0.049173586070538,-0.33039808273315]],[[0.11618229746819,-0.065902523696423,0.038900829851627],[-0.17192773520947,-0.096114628016949,-0.029106063768268],[0.060181371867657,-0.12253721058369,0.1376186311245]]],[[[-0.041836872696877,-0.051814563572407,0.0093824323266745],[-0.072078287601471,-0.044357739388943,0.045244939625263],[0.057834882289171,-0.01561036426574,0.11795463413]],[[-0.03289221227169,0.030962387099862,0.13547624647617],[-0.012133128009737,-0.0505026653409,0.094652824103832],[0.090748734772205,-0.045792061835527,-0.082467645406723]],[[0.036377109587193,0.12597700953484,0.031640361994505],[0.00082455994561315,-0.095403388142586,0.05667295306921],[-0.31286832690239,-0.013370482251048,0.11026532202959]],[[-0.12347368150949,0.052643127739429,-0.13888198137283],[-0.01964027993381,-0.018272824585438,0.1503509581089],[0.037890736013651,0.072842471301556,0.043446831405163]],[[0.02302291803062,0.059199072420597,0.09645027667284],[-0.023452879860997,0.019122650846839,0.043277371674776],[0.040532547980547,-0.15246303379536,-0.067723289132118]],[[0.083284042775631,-0.0085048265755177,-0.018255794420838],[0.089929275214672,-0.0046094991266727,0.05548233166337],[0.10755445808172,0.068597033619881,0.144346550107]],[[0.09888944029808,0.05998333543539,-0.03169547393918],[-0.17565576732159,-0.095251314342022,-0.1534695327282],[-0.13051906228065,0.0087923193350434,-0.097671441733837]],[[0.11991468071938,0.11477117240429,0.099217392504215],[-0.046513326466084,0.028064835816622,0.051861494779587],[-0.092139698565006,-0.084092281758785,0.04113581776619]],[[-0.0029156731907278,-0.0033944207243621,0.0078425630927086],[-0.024172915145755,-0.051208481192589,0.028374157845974],[-0.025726534426212,0.047744665294886,0.031224360689521]],[[0.087534122169018,0.11128801107407,0.15838128328323],[0.040944967418909,-0.044761687517166,0.0064810556359589],[-0.0072521236725152,0.046564090996981,-0.021976632997394]],[[-0.0048039644025266,-0.057434443384409,-0.064520217478275],[-0.018255921080709,0.053966298699379,0.022233489900827],[0.024532405659556,0.083717718720436,0.065368875861168]],[[0.035534720867872,-0.0094623947516084,0.082336887717247],[-0.094903782010078,-0.017233515158296,-0.094558976590633],[0.024845717474818,-0.078731708228588,-0.089872278273106]],[[0.055479623377323,0.12075806409121,0.08051373809576],[-0.033593434840441,0.099527716636658,-0.035801969468594],[0.030827287584543,-0.087053723633289,0.032623238861561]],[[-0.15688809752464,0.056190632283688,-0.050603900104761],[-0.020202750340104,-0.022601468488574,0.088217943906784],[-0.024048475548625,0.043188977986574,-0.057716965675354]],[[-0.020063884556293,0.14031162858009,-0.055160444229841],[-0.041346713900566,0.043937753885984,0.0038470164872706],[0.099997214972973,0.054027166217566,-0.0076867011375725]],[[0.067168720066547,-0.21239617466927,0.1185242459178],[0.048026323318481,-0.258021235466,-0.19257678091526],[0.12661364674568,0.025788074359298,0.069125086069107]],[[0.050974179059267,0.013942060992122,-0.084670715034008],[0.099763840436935,0.017902441322803,-0.053422875702381],[0.1695097386837,-0.18224810063839,-0.14797130227089]],[[-0.049594987183809,-0.19409780204296,-0.2622135579586],[0.10253505408764,0.023128125816584,-0.11301918327808],[0.17334860563278,-0.029926123097539,0.06672153621912]],[[-0.045169297605753,-0.14235238730907,-0.16773425042629],[0.014655402861536,0.054405707865953,-0.03269512578845],[-0.027546359226108,0.036710225045681,0.12426187098026]],[[-0.069914095103741,-0.16094969213009,0.1315136551857],[-0.098296605050564,-0.0020236514974385,-0.050763282924891],[-0.0068152574822307,-0.037591826170683,0.046226821839809]],[[0.043840359896421,-0.019163141027093,-0.040201734751463],[0.042701188474894,-0.14756520092487,0.11116922646761],[-0.20224925875664,0.077829003334045,0.01976259239018]],[[-0.023763990029693,-0.15884426236153,-0.016611473634839],[0.076647773385048,-0.05511961877346,0.0068553253076971],[-0.093637965619564,0.13639190793037,0.17309418320656]],[[-0.05298363044858,-0.10927345603704,-0.050131686031818],[-0.038446955382824,-0.029917255043983,-0.052831038832664],[0.15949572622776,0.087062701582909,0.010992543771863]],[[-0.060073852539062,-0.10414855182171,-0.087910994887352],[-0.012401456944644,0.11191105097532,-0.12792390584946],[-0.18357808887959,0.0091394660994411,0.030384993180633]],[[-0.0031644166447222,0.078576646745205,0.15143023431301],[0.11608413606882,-0.097460709512234,-0.038779027760029],[-0.17578949034214,0.034883987158537,0.18804417550564]],[[0.10138265788555,0.019103450700641,-0.16588206589222],[0.11088989675045,-0.0782735273242,-0.17609219253063],[0.13526675105095,0.068837866187096,-0.036827504634857]],[[-0.095788575708866,-0.15656425058842,0.2952623963356],[-0.22463801503181,-0.31220936775208,0.039697900414467],[-0.067038401961327,-0.24736244976521,-0.11766342073679]],[[-0.083783075213432,0.16240392625332,0.047986011952162],[-0.062020257115364,-0.052189100533724,-0.010238741524518],[0.035995647311211,0.10918368399143,-0.05904557928443]],[[0.082823410630226,-0.083966135978699,-0.016782844439149],[-0.0042696408927441,0.11302438378334,-0.069484241306782],[0.017253195866942,0.13364936411381,-0.061019983142614]],[[-0.11328282952309,0.014107258990407,-0.010677722282708],[0.073297888040543,-0.097930863499641,-0.17198774218559],[-0.034429825842381,-0.065775707364082,-0.1838296353817]],[[-0.1628515869379,0.048743903636932,-0.12187031656504],[-0.001074195606634,0.051392961293459,0.082961015403271],[-0.31660321354866,-0.084628693759441,-0.049757923930883]],[[-0.00096773658879101,0.14482581615448,0.085645005106926],[-0.11232309043407,-0.058641329407692,-0.1072003915906],[-0.11055918782949,0.083551645278931,-0.07210249453783]],[[-0.076835073530674,-0.12920616567135,0.081937521696091],[0.022889854386449,0.015547853894532,0.037314914166927],[-0.091476358473301,0.081470131874084,-0.058824799954891]],[[0.010864144191146,-0.085689067840576,-0.064989015460014],[0.055857162922621,0.017576651647687,0.14209169149399],[0.04433836042881,0.13053978979588,0.0053745955228806]],[[-0.011836722493172,-0.027454610913992,-0.013726172968745],[0.057989433407784,0.15188825130463,0.032251615077257],[0.03853302821517,0.13645718991756,0.052292056381702]],[[-0.16750028729439,0.089354887604713,0.12785628437996],[0.012952518649399,0.10419847071171,0.04386805742979],[0.14958971738815,-0.061555169522762,-0.021447194740176]],[[-0.040577609091997,0.036388199776411,0.0034296787343919],[0.070437587797642,-0.12823079526424,-0.13821965456009],[-0.14454258978367,0.016560206189752,-0.0077927196398377]],[[-0.0058176447637379,0.059689611196518,0.072297982871532],[-0.031271789222956,-0.026521813124418,-0.045251000672579],[-0.10878898203373,0.09067926555872,-0.039652664214373]],[[0.13201816380024,-0.23474824428558,-0.14814320206642],[0.12753561139107,-0.040826074779034,-0.036907449364662],[0.066059030592442,0.022149888798594,-0.091858603060246]],[[-0.092966377735138,0.02147089317441,0.037245683372021],[-0.024933194741607,-0.13859502971172,0.051613409072161],[-0.0096240770071745,-0.14734134078026,0.066088251769543]],[[0.046999111771584,-0.044165339320898,0.077754467725754],[0.14872553944588,0.0032190943602473,0.038095247000456],[-0.057284858077765,0.0067771817557514,-0.060556933283806]],[[-0.18730047345161,0.053220003843307,0.15748938918114],[-0.15036959946156,-0.10900466889143,-0.017885468900204],[-0.059703066945076,0.033322528004646,-0.17493112385273]],[[-0.31979069113731,0.07987317442894,0.043322701007128],[-0.26004186272621,0.14561876654625,-0.010183395817876],[-0.21807634830475,0.049202840775251,0.027401123195887]],[[-0.0050527579151094,0.0069287782534957,0.01060645096004],[0.054796267300844,0.063771598041058,-0.010704251006246],[-0.0093309506773949,-0.017218679189682,-0.062519922852516]],[[-0.037829659879208,-0.068683683872223,0.16986978054047],[-0.066018477082253,-0.1182447373867,0.070161625742912],[0.093555070459843,-0.090493462979794,-0.12262291461229]],[[0.098623618483543,-0.0076173199340701,0.17042645812035],[0.070859268307686,-0.13043205440044,0.17689481377602],[-0.07471427321434,-0.049056101590395,0.034917570650578]],[[0.064786158502102,0.1501299738884,0.0045942445285618],[-0.064788147807121,0.014187620952725,-0.010375219397247],[-0.10432520508766,0.064975745975971,-0.010723463259637]],[[-0.025777041912079,0.10922240465879,-0.045802738517523],[-0.079025767743587,0.013004644773901,-0.027842175215483],[-0.13173697888851,0.058131791651249,0.043458975851536]],[[0.16720043122768,0.0026144841685891,0.023751214146614],[0.042908292263746,-0.2260178476572,-0.043619368225336],[0.01051568146795,0.071274742484093,-0.022042790427804]],[[-0.038207560777664,0.063602715730667,-0.041315302252769],[-0.030358524993062,0.030162582173944,-0.0058991564437747],[-0.048386577516794,0.0087210973724723,-0.028140323236585]],[[-0.17417368292809,0.050342127680779,0.067197613418102],[-0.21620132029057,-0.059724614024162,0.0080455997958779],[-0.15719304978848,0.037457443773746,-0.064802810549736]],[[-0.15477851033211,-0.060670159757137,0.03954004496336],[0.061025649309158,0.033198960125446,0.13860408961773],[0.078238539397717,0.13482560217381,0.073496036231518]],[[-0.18835714459419,-0.02356843650341,0.046572584658861],[-0.194091334939,0.12419351190329,0.021342987194657],[-0.020613862201571,0.12171799689531,0.063447564840317]],[[0.056514196097851,-0.10741567611694,0.11316287517548],[-0.026698421686888,-0.12860482931137,0.041739389300346],[0.16672620177269,-0.15250265598297,0.031284749507904]],[[0.11617789417505,0.023255001753569,0.041315894573927],[0.048407752066851,-0.041290104389191,0.071978352963924],[0.09877548366785,-0.091596648097038,-0.029551872983575]],[[-0.041412428021431,0.20143058896065,-0.19262202084064],[-0.084285199642181,0.0083277225494385,-0.17351318895817],[0.013505708426237,0.066334344446659,-0.14371758699417]],[[0.087662175297737,0.041799005120993,-0.085313007235527],[-0.0078755775466561,0.078773692250252,-0.017292132601142],[-0.047902692109346,0.022912215441465,-0.017173016443849]],[[0.21748249232769,-0.25437316298485,-0.041148003190756],[0.1132103651762,-0.063479073345661,-0.1115281060338],[0.080900989472866,0.010139438323677,-0.080678805708885]],[[0.030095845460892,0.019790468737483,0.083973273634911],[-0.0086605232208967,-0.010873182676733,-0.017763655632734],[-0.0088040539994836,0.029860282316804,-0.049087706953287]],[[0.16948163509369,0.10716059058905,0.024400476366282],[-0.10751884430647,0.064698778092861,-0.12303895503283],[-0.097617283463478,-0.0038832554128021,-0.098566070199013]],[[0.10280591994524,-0.034724175930023,0.086756609380245],[-0.046542692929506,0.030835524201393,-0.19828568398952],[-0.07955065369606,-0.16467954218388,0.02034111507237]],[[-0.15355911850929,0.080622620880604,-0.059557788074017],[-0.07593160122633,0.1545662432909,-0.030298069119453],[-0.13957877457142,-0.11093430966139,0.21161632239819]],[[-0.02820048481226,-0.063125595450401,0.1268734484911],[-0.11031820625067,-0.13064782321453,-0.012199104763567],[-0.10667631030083,-0.022198690101504,-0.054667964577675]],[[-0.16599145531654,0.13347493112087,-0.030887469649315],[0.0079696169123054,0.064761944115162,0.062271766364574],[0.017105797305703,0.01797828823328,0.10047323256731]]],[[[0.079952083528042,0.043892424553633,0.061676010489464],[0.13530103862286,0.10035195946693,0.029181871563196],[0.09225656837225,-0.048934020102024,0.02412598952651]],[[0.15821684896946,-0.045853052288294,0.11914157867432],[-0.051105406135321,0.14348612725735,0.1733680665493],[0.0067117139697075,0.086470603942871,0.073209315538406]],[[-0.20553903281689,0.027903284877539,0.046778384596109],[-0.02549341134727,0.06831318885088,0.022441865876317],[-0.018469072878361,-0.042595084756613,-0.25117549300194]],[[-0.11131059378386,0.08344528824091,0.21704176068306],[-0.043622359633446,-0.099336624145508,0.066928915679455],[0.022000281140208,-0.02046675235033,-0.16743388772011]],[[-0.24573421478271,-0.25398808717728,0.13888309895992],[0.092716410756111,0.016013965010643,0.016549134626985],[0.10033463686705,-0.025381971150637,0.061721462756395]],[[0.044586755335331,-0.03673942387104,0.019502034410834],[-0.010190745815635,0.00072953477501869,0.075540065765381],[0.08132416754961,0.034852955490351,0.095164425671101]],[[-0.027532169595361,-0.047605391591787,0.011737904511392],[-0.055853854864836,-0.059684544801712,0.063351102173328],[0.031066371127963,0.11272604763508,0.03439736366272]],[[0.015416888520122,0.021732496097684,0.036817908287048],[-0.0629817917943,-0.0065129273571074,0.082426115870476],[-0.067130349576473,-0.0053518819622695,0.084319807589054]],[[-0.0071001700125635,-0.12666448950768,0.0008200443116948],[0.012869333848357,0.056796487420797,0.037989925593138],[-0.014034652151167,-0.022702446207404,0.016062529757619]],[[-0.24684834480286,0.11034506559372,0.059621971100569],[-0.05571360886097,0.0047580632381141,-0.015529812313616],[-0.067133992910385,-0.064106404781342,0.076957277953625]],[[-0.23906350135803,-0.09541018307209,-0.0047511328011751],[0.069129347801208,-0.00087908800924197,0.025403473526239],[0.079846315085888,-0.018543910235167,0.18697752058506]],[[-0.16125310957432,-0.045601863414049,-0.0048238816671073],[-0.096331924200058,-0.016217574477196,0.06772942841053],[-0.091756232082844,-0.036558024585247,-0.27285313606262]],[[-0.12027567625046,-0.024176370352507,-0.12340012192726],[-0.0099555421620607,0.043230157345533,0.0995998904109],[-0.082467325031757,-0.052833005785942,0.014343179762363]],[[-0.019434185698628,0.017805034294724,0.0056865578517318],[-0.12161839008331,0.012567535974085,0.06623836606741],[0.20591297745705,-0.12752571702003,0.064805716276169]],[[-0.0058047072961926,0.055718030780554,-0.13904282450676],[0.030420310795307,-0.10385269671679,0.017751693725586],[-0.03293776512146,-0.12771546840668,-0.055399414151907]],[[-0.045511543750763,0.055562205612659,0.061973799020052],[0.057140048593283,0.13051234185696,0.042794276028872],[0.0016609815647826,-0.019459653645754,0.1561768501997]],[[-0.13539266586304,-0.15304173529148,0.11385553330183],[-0.050544060766697,0.097845517098904,0.015733094885945],[0.10354633629322,-0.046513486653566,0.024664031341672]],[[-0.079289004206657,-0.088304311037064,0.068808287382126],[-0.01855911873281,0.025917524471879,-0.040601726621389],[0.083318576216698,-0.098235689103603,0.010515100322664]],[[0.076598130166531,0.065065234899521,-0.0072173993103206],[0.04742581024766,0.010212728753686,-0.012723632156849],[-0.024169836193323,0.073834411799908,0.016395477578044]],[[-0.060083705931902,0.046949733048677,-0.095489218831062],[0.0099489968270063,0.11969023197889,-0.0079733189195395],[0.10756823420525,-0.057762231677771,0.026464166119695]],[[-0.15757116675377,0.019154239445925,0.046448014676571],[0.02868895418942,0.01070733834058,-0.013573546893895],[0.030506409704685,0.00060930871404707,-0.11961049586535]],[[-0.033021837472916,-0.16644488275051,-0.066650964319706],[0.017986139282584,-0.0016903834184632,0.048181965947151],[0.030655402690172,0.17914202809334,0.084591381251812]],[[-0.21606059372425,0.021077433601022,-0.11537140607834],[-0.10011642426252,-0.012019214220345,-0.17346984148026],[-0.1796447634697,-0.022289592772722,-0.042935974895954]],[[-0.097204990684986,-0.11064011603594,0.072738975286484],[0.073248811066151,-0.10603573173285,0.086339220404625],[0.034287266433239,-0.042170614004135,-0.088184654712677]],[[-0.11737877875566,-0.32188314199448,0.04799847304821],[-0.032007277011871,0.017985802143812,0.0094546731561422],[0.067965909838676,-0.0062263458967209,-0.0065425424836576]],[[-0.18985499441624,-0.10933160036802,-0.072167128324509],[0.012716153636575,-0.12350627779961,-0.042934078723192],[-0.018713379278779,-0.072787933051586,0.13314181566238]],[[0.28429967164993,-0.20458725094795,0.0014143872540444],[0.032201200723648,0.021838514134288,-0.017452090978622],[0.031203771010041,0.12635971605778,0.039379082620144]],[[0.11617579311132,0.032327987253666,0.029078247025609],[0.045440457761288,-0.0072949333116412,-0.021413499489427],[-0.0156688708812,0.021605283021927,-0.084146179258823]],[[-0.036842938512564,-0.059588864445686,0.1072911247611],[0.012376642785966,-0.0143988924101,0.075242951512337],[-0.055209074169397,0.00053154100896791,0.016605684533715]],[[-0.13168448209763,0.17606946825981,-0.2066767513752],[0.035799276083708,-0.056325733661652,-0.074609488248825],[0.077448695898056,0.045117497444153,-0.31763499975204]],[[-0.54861885309219,-0.22578364610672,-0.11547639220953],[-0.024507747963071,0.0043019456788898,-0.14168672263622],[-0.16338041424751,-0.15506474673748,-0.23133437335491]],[[0.2223407626152,0.12248845398426,-0.062777429819107],[-0.048177748918533,-0.037145916372538,-0.078859135508537],[0.17333444952965,-0.073153741657734,-0.045556403696537]],[[0.11579690128565,0.031464319676161,0.022778337821364],[-0.046841759234667,0.0090645300224423,-0.052292387932539],[-0.029264407232404,-0.030299639329314,-0.01777190156281]],[[-0.1222767084837,0.02388216368854,0.070168681442738],[0.00062636018265039,-0.024295475333929,-0.037562500685453],[0.041441880166531,0.027857692912221,-0.10392355918884]],[[-0.019735945388675,-0.098322317004204,-0.00077823607716709],[-0.14597898721695,0.077137038111687,0.0011696205474436],[-0.1473458558321,-0.020017381757498,-0.06842514872551]],[[0.097639687359333,-0.043556198477745,0.058968879282475],[-0.053198773413897,0.036247152835131,0.082888774573803],[0.019193690270185,0.011630716733634,0.14595656096935]],[[0.05695753544569,-0.037023868411779,0.057914707809687],[0.012626792304218,-0.01330027077347,-0.071012496948242],[0.051531806588173,0.046473171561956,0.020604042336345]],[[0.060675758868456,-0.045911740511656,0.051588341593742],[0.010191184468567,-0.047773901373148,-0.033286102116108],[0.027793938294053,0.074524857103825,-0.072350442409515]],[[-0.21363265812397,0.043750382959843,-0.038068652153015],[-0.16916933655739,0.060893222689629,0.021775934845209],[0.036790497601032,0.066804908216,-0.047932382673025]],[[-0.034737259149551,-0.12397291511297,0.053777035325766],[0.0066744480282068,-0.030493702739477,0.0074477102607489],[-0.073223158717155,-0.016834367066622,0.13231401145458]],[[-0.032772108912468,0.059376958757639,0.021865518763661],[-0.026616098359227,-0.038168400526047,0.025281403213739],[0.014088132418692,-0.019521364942193,0.1642878651619]],[[0.052358716726303,-0.029192041605711,0.071617268025875],[0.096433006227016,-0.010210640728474,-0.0099642118439078],[-0.050276268273592,0.065212562680244,0.055759754031897]],[[0.054618209600449,0.0050761257298291,-0.048528529703617],[-0.078264467418194,-0.029632423073053,-0.038438778370619],[0.069867990911007,-0.013998897746205,0.11620370298624]],[[0.027848331257701,0.10189788043499,-0.042237367480993],[-0.083503156900406,-0.058874078094959,0.0067277508787811],[0.028239037841558,0.036731276661158,-0.018926253542304]],[[0.025566097348928,-0.085011079907417,0.006738449446857],[0.032126728445292,-0.081504784524441,0.028937175869942],[0.11747649312019,-0.16519975662231,-0.0049228235147893]],[[-0.087771266698837,0.023959437385201,0.0051356484182179],[0.13030011951923,-0.0057086292654276,-0.00052836391841993],[0.018046690151095,0.07306195795536,0.068047136068344]],[[-0.49936681985855,-0.12230037152767,-0.073681063950062],[0.069015741348267,0.068714804947376,0.0068224566057324],[-0.039301384240389,0.06014758720994,-0.0039402139373124]],[[0.0089290291070938,-0.034960255026817,0.074211403727531],[0.00063651771051809,0.010363485664129,-0.020684896036983],[0.17151583731174,-0.035157576203346,-0.0037671267054975]],[[-0.20342913269997,0.19382643699646,0.046314645558596],[-0.045119598507881,-0.016781201586127,0.044549129903316],[-0.13455580174923,-0.33108934760094,-0.26660203933716]],[[-0.10390836745501,-0.061097286641598,-0.075525991618633],[-0.090863436460495,-0.020678034052253,0.078849270939827],[0.12529806792736,0.032282285392284,-0.094338089227676]],[[-0.17696680128574,0.025280326604843,-0.10197842121124],[0.042462822049856,0.00057454337365925,-0.029520358890295],[0.11573215574026,0.11378214508295,0.084234498441219]],[[0.031069450080395,-0.0035081738606095,0.04086359590292],[0.049655679613352,-0.024231873452663,-0.14214468002319],[0.10739790648222,0.013208849355578,0.013290718197823]],[[0.085417039692402,0.06951280683279,0.025022320449352],[-0.028471637517214,0.073255889117718,0.0097376136109233],[-0.20142823457718,-0.054528687149286,0.071946084499359]],[[0.0052588316611946,0.013715866953135,0.076527647674084],[-0.002587647177279,-0.0027389137540013,-0.064429625868797],[0.053339369595051,0.1109926700592,0.16878797113895]],[[0.099187046289444,0.015206646174192,-0.068006813526154],[-0.0044960808008909,0.12235154956579,0.054612070322037],[-0.044441696256399,0.10747646540403,-0.055146243423223]],[[-0.11123716831207,0.041403908282518,-0.099246434867382],[-0.05269868299365,-0.022643802687526,-0.1489123404026],[-0.0028689061291516,-0.0095391105860472,-0.041732713580132]],[[-0.00016736163524911,-0.018740629777312,-0.036880981177092],[0.056091018021107,-0.062199141830206,0.082432463765144],[0.16635817289352,-0.069761507213116,-0.022005546838045]],[[-0.074366487562656,0.2034495472908,-0.12748785316944],[0.0061163590289652,-0.0032449746504426,-0.0049624894745648],[0.01133661903441,-0.017424387857318,-0.054984245449305]],[[-0.12231407314539,0.094719722867012,-0.12725907564163],[-0.17589555680752,0.058299332857132,-0.10208896547556],[-0.034984167665243,0.10275997966528,0.005176015663892]],[[-0.12919293344021,0.011997333727777,-0.16283006966114],[-0.0015419021947309,-0.030961852520704,-0.15268160402775],[0.099403783679008,0.016606148332357,-0.11545995622873]],[[-0.27838441729546,-0.039235405623913,0.0066996947862208],[-0.011220037937164,-0.0072490680031478,0.087479576468468],[-0.023449618369341,-0.093981608748436,-0.15963691473007]],[[-0.020368268713355,0.13871549069881,0.10828097909689],[0.11440610140562,-0.0030580672901124,0.08687985688448],[0.021312110126019,-0.11060344427824,0.048173919320107]],[[-0.032313104718924,-0.03185698390007,-0.09771654009819],[-0.045197010040283,-0.12941181659698,-0.15038131177425],[-0.055765554308891,-0.059609033167362,0.060538928955793]],[[-0.0073586273938417,0.091344222426414,-0.02995297499001],[0.040649104863405,0.038915004581213,-0.022172760218382],[0.0099683087319136,0.11228292435408,-0.21790826320648]]],[[[0.086539655923843,0.056558627635241,0.13769945502281],[-0.028160771355033,0.04209990054369,0.065619900822639],[0.13095910847187,-0.026805212721229,-0.039027590304613]],[[0.15972319245338,0.012313840910792,-0.056137442588806],[0.041485350579023,0.091021664440632,0.021478055045009],[0.11081586778164,0.0043911775574088,-0.030708070844412]],[[0.012093497440219,0.0058614499866962,0.13971209526062],[0.078566275537014,0.054955396801233,0.028514500707388],[0.1088136062026,0.085092946887016,0.024484060704708]],[[0.10785550624132,-0.087695963680744,0.11609616875648],[-0.0083413179963827,-0.094781771302223,0.0017273315461352],[0.070988044142723,-0.11683807522058,-0.053388588130474]],[[-0.012180453166366,-0.010006044059992,0.016064984723926],[0.055307522416115,0.13096803426743,0.062991663813591],[-0.13556769490242,-0.12952961027622,0.023369865491986]],[[0.068169973790646,0.10013221949339,-0.021753063425422],[-0.029282519593835,-0.085380733013153,-0.079645454883575],[-0.16098776459694,-0.11895926296711,0.11093693971634]],[[0.1475864648819,0.031901139765978,-0.040177077054977],[0.10317475348711,0.0018264442915097,0.090031027793884],[-0.018644098192453,-0.12484996020794,-0.15362614393234]],[[-0.020754808560014,0.065468437969685,-0.072513408958912],[-0.04946593940258,-0.054571188986301,-0.032345198094845],[-0.03145507723093,-0.0024631835985929,-0.10329177975655]],[[-0.089604221284389,-0.055272709578276,-0.094932302832603],[0.093965895473957,0.063100978732109,0.016470218077302],[0.033027518540621,0.036129970103502,0.0067198164761066]],[[-0.064529545605183,0.0048891240730882,-0.14588432013988],[-0.15809158980846,-0.088231697678566,-0.19360937178135],[-0.22954685986042,-0.061210729181767,-0.072252459824085]],[[0.06573062390089,0.039039984345436,0.028117466717958],[0.099778056144714,0.04736939445138,-0.071861587464809],[0.18152126669884,0.10942267626524,-0.052266158163548]],[[-0.063593961298466,0.10263233631849,-0.076879791915417],[-0.060841549187899,0.014742461964488,-0.028382854536176],[0.072507366538048,-0.009340412914753,0.03919168189168]],[[-0.0055909305810928,0.029420856386423,0.047518566250801],[0.024873249232769,0.10883413255215,-0.033138453960419],[-0.061860788613558,-0.11717864125967,0.2408342808485]],[[-0.011488171294332,0.024175068363547,-0.11194585263729],[-0.046902172267437,0.0038157231174409,0.067875228822231],[0.10841723531485,0.093624837696552,0.14523912966251]],[[-0.17274968326092,-0.051090203225613,0.091722555458546],[-0.026775863021612,-0.049458783119917,-0.034208748489618],[-0.016128869727254,0.13392940163612,-0.02740122191608]],[[0.060139238834381,-0.097626358270645,0.037112761288881],[-0.2270630300045,-0.022881517186761,0.031893756240606],[0.015928387641907,0.089642055332661,0.076699063181877]],[[0.018725916743279,-0.034205380827188,-0.10468054562807],[0.30525061488152,0.19012044370174,0.065609209239483],[-0.0046611628495157,0.032001934945583,0.16916991770267]],[[-0.0016087401891127,-0.20515723526478,-0.070881351828575],[-0.014876578003168,0.074042975902557,0.083408884704113],[-0.0025954146403819,-0.087395876646042,-0.010875039733946]],[[0.12677548825741,0.076377458870411,0.010429230518639],[0.10055159777403,-0.012964765541255,-0.12538211047649],[-0.081335701048374,0.078612349927425,-0.11350620537996]],[[0.11770392209291,0.12566581368446,0.083126880228519],[0.12580668926239,0.087532922625542,-0.031225550919771],[-0.057568997144699,0.049142934381962,0.0091640679165721]],[[0.0014954964863136,-0.051743593066931,0.052590101957321],[-0.063387848436832,0.042334347963333,0.0035887071862817],[0.077858589589596,0.074021734297276,0.19749565422535]],[[0.25552552938461,0.011375401169062,-0.14508844912052],[-0.032308720052242,-0.057935785502195,-0.071196958422661],[0.082161642611027,0.092652879655361,0.031746208667755]],[[0.0069947042502463,0.00039922521682456,-0.14772881567478],[-0.064979515969753,0.084882363677025,-0.11176740378141],[0.096108697354794,-0.022323928773403,0.02288768440485]],[[-0.033665981143713,-0.1113571152091,-0.044215235859156],[-0.049777336418629,0.0094626899808645,-0.18761061131954],[-0.013316144235432,0.036549728363752,0.16233059763908]],[[-0.011668228544295,0.025677897036076,-0.06119617447257],[0.11790285259485,0.14219585061073,0.066239021718502],[-0.16207174956799,0.073727525770664,-0.03667801618576]],[[-0.072478771209717,0.070146642625332,0.04145685583353],[0.038039971143007,0.015961073338985,-0.10765081644058],[0.08137272298336,-0.0026169549673796,-0.0074399705044925]],[[-0.046178538352251,-0.11870708316565,-0.014345553703606],[-0.071817353367805,-0.038831628859043,-0.010497495532036],[-0.011252922937274,0.084599308669567,0.046918302774429]],[[0.00088231608970091,0.0093335034325719,0.030353056266904],[-0.022280542179942,-0.10951092839241,0.020211769267917],[-0.17614281177521,0.019428454339504,-0.051567237824202]],[[0.020699115470052,0.010892113670707,-0.076545044779778],[-0.062217105180025,-0.24736781418324,-0.018060671165586],[0.12972858548164,0.10236106067896,0.067783676087856]],[[-0.032734859734774,-0.042438991367817,-0.029899904504418],[0.066957525908947,0.13641054928303,0.095846489071846],[0.018576869741082,0.00019750522915274,0.062919162213802]],[[-0.025288222357631,0.1030799895525,0.0229905359447],[0.20943030714989,0.021577872335911,0.021456504240632],[-0.095454446971416,0.0062033170834184,0.084106132388115]],[[-0.1274009346962,0.075076259672642,0.14668235182762],[0.10192806273699,0.0038179608527571,-0.04299396276474],[-0.078610129654408,-0.07254233956337,0.14272318780422]],[[0.11612647771835,-0.067430309951305,0.023906677961349],[0.18463270366192,0.051932994276285,-0.1132722273469],[0.04995334148407,0.0073750447481871,-0.11443614959717]],[[-0.0061734397895634,-0.02684373036027,0.073857121169567],[0.035522043704987,0.011197411455214,-0.011729974299669],[0.066110089421272,-0.059410825371742,0.098411716520786]],[[0.11870034784079,0.0018256951589137,0.095195412635803],[0.15746209025383,-0.097586490213871,-0.013072218745947],[0.12925024330616,0.12509161233902,-0.044561788439751]],[[-0.073803618550301,-0.13864597678185,-0.21582537889481],[-0.039240304380655,-0.20282891392708,-0.19680570065975],[-0.17973707616329,-0.17222101986408,0.11371198296547]],[[0.077981673181057,-0.13720142841339,-0.25547209382057],[-0.0059523824602365,-0.15530855953693,0.061713390052319],[0.025599129498005,-0.030404232442379,-0.11908570677042]],[[0.016259247437119,-0.015841210260987,0.0048609636723995],[0.080650813877583,0.027809718623757,-0.016966789960861],[0.08540190756321,0.10144586861134,0.067469231784344]],[[-0.04996594786644,0.10819886624813,0.026977648958564],[0.0072469878941774,0.058641280978918,0.086021021008492],[0.14368735253811,0.12373568117619,0.010121691972017]],[[-0.080549716949463,-0.078242123126984,0.093280531466007],[0.0099315838888288,-0.0025803758762777,-0.11551041901112],[0.048377715051174,0.12971816956997,-0.012902287766337]],[[0.057174794375896,-0.041466906666756,0.045882374048233],[0.016717713326216,0.12545503675938,0.088600523769855],[0.0074673867784441,-0.01801018230617,-0.064896538853645]],[[-0.015388463623822,0.14951238036156,0.022786896675825],[-0.0064485133625567,-0.063360281288624,-0.13538475334644],[0.1044637337327,0.055821783840656,-0.040064390748739]],[[0.077431216835976,-0.033430647104979,0.14399555325508],[0.056701522320509,0.005812203977257,0.033615525811911],[0.22332079708576,0.1832170933485,-0.012491062283516]],[[-0.039318785071373,0.038633212447166,-0.029355702921748],[0.01641558110714,-0.078197933733463,0.070023193955421],[-0.11199226975441,0.00039138240390457,-0.082608364522457]],[[0.17836193740368,0.066312745213509,-0.08301343023777],[-0.10905528068542,0.0063660610467196,-0.01972820982337],[0.015126567333937,-0.0095654195174575,-0.06086553260684]],[[0.10651997476816,-0.12443894892931,-0.032151907682419],[-0.071373701095581,0.058366991579533,0.050345931202173],[-0.08119598031044,0.074003107845783,-0.12927244603634]],[[0.1138691753149,0.08625004440546,0.059199504554272],[-0.052399519830942,-0.063274994492531,-0.22387513518333],[0.12211827933788,-0.039773132652044,-0.0065672555938363]],[[-0.039809782058001,0.1229250729084,0.028851330280304],[-0.024659261107445,0.01876313611865,-0.032484889030457],[0.14216281473637,0.058975886553526,0.0057946010492742]],[[-0.023175720125437,0.021426480263472,-0.089607454836369],[0.017009261995554,-0.0520936883986,0.15256227552891],[0.021250354126096,0.11988710612059,-0.00026474957121536]],[[-0.062608025968075,0.032837960869074,-0.046665776520967],[-0.043556410819292,-0.085001356899738,0.11832374334335],[0.046772461384535,0.048723109066486,0.088917568325996]],[[0.0054739587940276,-0.062646217644215,-0.090349860489368],[-0.072508685290813,0.11136855185032,0.015551558695734],[0.045281458646059,0.10356038808823,-0.035303954035044]],[[-0.1012984290719,-0.039938170462847,-0.015193253755569],[0.17582654953003,0.056864518672228,-0.11862622201443],[-0.0552495457232,0.12557880580425,0.012303410097957]],[[0.010851953178644,0.09684295207262,0.079150810837746],[0.0087135657668114,0.099174126982689,0.17730937898159],[-0.056379932910204,0.092773087322712,-0.11364480853081]],[[-0.065787114202976,-0.011078876443207,-0.073397845029831],[-0.040464837104082,-0.11513483524323,0.035490389913321],[0.010116790421307,0.077166423201561,-0.049020044505596]],[[-0.063485026359558,0.024483343586326,0.076897092163563],[-0.076410368084908,0.0058211302384734,0.09334672242403],[-0.026933187618852,0.057403802871704,0.00046649065916426]],[[-0.062658600509167,-0.1444177031517,0.0050898566842079],[0.12746980786324,0.026987813413143,0.1454816609621],[0.014150630682707,0.05047819390893,0.15256445109844]],[[-0.076652139425278,-0.086989469826221,0.13244254887104],[0.057593986392021,-0.075517646968365,-0.051868237555027],[0.046707302331924,0.076084434986115,0.038537092506886]],[[0.05481269583106,-0.097490146756172,-0.088209800422192],[-0.0077877659350634,-0.018734155222774,-0.0065866452641785],[-0.088787443935871,-0.069536596536636,-0.18122664093971]],[[0.10957793146372,-0.058711025863886,0.050660897046328],[-0.22828881442547,-0.18464310467243,-0.15626835823059],[0.25575259327888,0.056201688945293,-0.02916525118053]],[[-0.14301685988903,-0.058293592184782,-0.1623997092247],[0.008805968798697,-0.02557441405952,-0.016629692167044],[-0.1419440060854,-0.043646287173033,0.14281618595123]],[[0.0011239035520703,0.056469947099686,0.013911327347159],[-0.010405611246824,-0.013389253057539,-0.13863843679428],[-0.027929879724979,0.055047944188118,0.076579198241234]],[[0.0097436225041747,-0.11747764050961,0.077458076179028],[0.066201262176037,-0.026316286996007,-0.027543064206839],[0.06139512360096,-0.064745925366879,0.0019260352710262]],[[0.043987974524498,0.10428288578987,-0.0025080579798669],[0.12209419906139,0.079289056360722,-0.082110673189163],[-0.11852866411209,0.019225494936109,-0.053040254861116]],[[-0.012518728151917,-0.047008913010359,0.018704626709223],[0.065419286489487,0.037860073149204,0.03240654245019],[0.063838742673397,-0.06550133228302,-0.15118823945522]]],[[[0.044649634510279,-0.019832637161016,-0.12333573400974],[0.080498792231083,0.078242108225822,-0.03417593985796],[-0.045290496200323,0.021861812099814,-0.13558624684811]],[[-0.0036687382962555,0.0045118522830307,0.059068854898214],[0.044930260628462,-0.04491712898016,-0.080522708594799],[0.10172340273857,-0.054726466536522,0.0096064582467079]],[[-0.034878090023994,-0.03293688967824,0.076210342347622],[0.031224463135004,0.072798706591129,0.12954810261726],[-0.041251357644796,0.10037276148796,0.11586297303438]],[[0.10134112089872,0.079786203801632,0.058112233877182],[-0.044626828283072,0.040849436074495,0.16699595749378],[-0.12661013007164,0.039153151214123,0.10968352109194]],[[-0.056808855384588,0.044479787349701,-0.072011910378933],[-0.039075683802366,-0.061933368444443,0.1788621544838],[0.057104632258415,0.060301572084427,-0.013579278253019]],[[-0.040908548980951,-0.1047365218401,0.043000962585211],[0.08821278065443,0.013940206728876,0.05462259426713],[-0.19827249646187,-0.22163562476635,0.0020941353868693]],[[-0.046372570097446,-0.15375036001205,0.055115588009357],[-0.10389664769173,0.084161885082722,-0.095788776874542],[0.098462015390396,0.10968641936779,0.077000193297863]],[[-0.024219023063779,-0.016624620184302,0.025925228372216],[-0.018427763134241,-0.023591589182615,-0.070066370069981],[-0.060642130672932,-0.011001230217516,0.018452292308211]],[[-0.036944966763258,-0.061398915946484,0.076100647449493],[-0.029617538675666,0.098166227340698,-0.041546836495399],[-0.01823864877224,-0.066493093967438,-0.012035713531077]],[[0.010294797830284,-0.13593874871731,0.074092596769333],[-0.019028542563319,-0.11637222766876,-0.029458053410053],[-0.095101252198219,0.077300943434238,0.017094932496548]],[[0.12908551096916,0.0047742747701705,0.097559906542301],[0.013450669124722,-0.063291668891907,0.23398588597775],[-0.10974771529436,-0.12686102092266,0.0080463783815503]],[[0.025816025212407,0.14751400053501,-0.15733775496483],[0.1151767000556,0.049140401184559,0.092828042805195],[0.10370229929686,-0.03779973089695,-0.010630340315402]],[[-0.0064400308765471,-0.091791272163391,0.12160589545965],[0.0093943607062101,-0.20055268704891,-0.15977475047112],[-0.0051504308357835,0.091180197894573,0.075303606688976]],[[-0.040400180965662,0.094608776271343,0.14317475259304],[0.046393301337957,0.024951720610261,0.094096034765244],[-0.15657258033752,0.059262055903673,0.079102039337158]],[[0.14595495164394,0.0090340385213494,0.0185113735497],[-0.075542502105236,0.0074295564554632,0.068472437560558],[-0.1033848375082,0.04269091412425,0.15253804624081]],[[0.011807826347649,0.045640788972378,-0.056035753339529],[-0.03213968500495,0.087434686720371,0.11370421946049],[-0.072219088673592,0.021002303808928,-0.015815906226635]],[[0.058973431587219,0.015378711745143,0.11782787740231],[0.12233855575323,0.032170563936234,-0.1499225050211],[0.27687048912048,0.1832486987114,0.0903365239501]],[[-0.071379311382771,0.012958075851202,0.02482645213604],[0.15493042767048,-0.054412376135588,-0.16687862575054],[0.01995881088078,0.032285884022713,0.074922122061253]],[[0.081022769212723,-0.057419892400503,-0.091479495167732],[0.00099863274954259,-0.081386342644691,-0.045550938695669],[0.046480003744364,0.1295361071825,-0.015569072216749]],[[-0.043044853955507,0.079518377780914,-0.054659213870764],[-0.092690229415894,0.070615746080875,-0.11025416851044],[-0.11856672167778,-0.1424525231123,0.025474658235908]],[[0.066949643194675,-0.10071457922459,0.059334188699722],[-0.030326103791595,-0.011338576674461,-0.2219091206789],[-0.0018426219467074,0.040518507361412,-0.048908166587353]],[[0.027038237079978,0.069185189902782,-0.01711118221283],[0.094746224582195,0.033544238656759,-0.074807532131672],[-0.087714143097401,-0.0017446128185838,-0.057331785559654]],[[-0.047260981053114,0.060095451772213,0.10234555602074],[-0.069922991096973,-0.022302713245153,0.068760335445404],[-0.029477877542377,-0.13623921573162,-0.062856785953045]],[[0.11663898825645,0.031485684216022,-0.02621735073626],[-0.037420049309731,0.015014011412859,0.10221534222364],[-0.016555598005652,-0.0130610531196,0.018305217847228]],[[0.23151251673698,0.039709933102131,0.0020005363039672],[-0.078054763376713,0.12287854403257,0.065624482929707],[-0.030766390264034,0.020496135577559,-0.064636223018169]],[[0.10726732760668,-0.11488793045282,-0.16813886165619],[0.050123803317547,0.074188426136971,-0.064263910055161],[0.14461769163609,0.22950580716133,0.039759203791618]],[[-0.083693519234657,0.040092468261719,-0.093800514936447],[-0.071066923439503,-0.018728222697973,-0.087804205715656],[-0.01180973649025,0.026367424055934,-0.030033690854907]],[[0.099520340561867,-0.13027369976044,0.087013818323612],[-0.030881000682712,-0.087967790663242,0.018425576388836],[0.039004888385534,0.045188035815954,0.034052729606628]],[[0.006015844643116,-0.21289007365704,0.0031207413412631],[-0.067070193588734,0.0048794005997479,0.076375067234039],[-0.14446730911732,-0.12537384033203,-0.13832034170628]],[[-0.070512279868126,-0.061053264886141,-0.01591370254755],[0.043038304895163,-0.051281489431858,-0.024998784065247],[0.035219397395849,-0.045370168983936,0.015592481940985]],[[0.037902526557446,-0.064305558800697,0.017026195302606],[0.062851995229721,-0.10949139297009,-0.029780285432935],[0.16398577392101,0.11049543321133,0.019702848047018]],[[-0.022773066535592,0.15004253387451,0.037853091955185],[-0.045553594827652,-0.0097120739519596,-0.03807669505477],[0.10769083350897,0.07161995023489,-0.053673028945923]],[[0.081646487116814,-0.15408450365067,0.06754408031702],[-0.038897555321455,-0.0025197619106621,-0.053232435137033],[-0.12540143728256,0.094993762671947,-0.048671342432499]],[[-0.0020589614287019,-0.075867727398872,0.015994278714061],[-0.038422472774982,-0.020204789936543,0.0087747815996408],[-0.0001322508614976,0.17094472050667,0.065378412604332]],[[0.046711768954992,-0.060811527073383,0.028156973421574],[-0.034320387989283,-0.035512652248144,-0.1423586755991],[0.074048057198524,-0.14386919140816,-0.069191798567772]],[[-0.19463090598583,0.12999857962132,0.051988124847412],[0.072050422430038,0.068084836006165,0.039000246673822],[0.064478531479836,-0.0053398236632347,0.091216400265694]],[[-0.0060488022863865,0.045311536639929,-0.0052153267897666],[-0.011313456110656,-0.023233838379383,-0.067830041050911],[0.029947064816952,0.0039480580016971,0.04466986656189]],[[0.055348593741655,0.10390301048756,0.11136095225811],[0.14492854475975,0.041067946702242,0.20701131224632],[0.011433504521847,0.004247987177223,-0.18752436339855]],[[-0.077056758105755,-0.14856688678265,-0.13265486061573],[0.037923660129309,0.12686498463154,-0.066706299781799],[0.14022721350193,0.091815963387489,-0.04080131649971]],[[-0.024660900235176,0.14226180315018,-0.090430654585361],[0.052162930369377,-0.042853660881519,0.054409727454185],[0.00919543299824,0.000534899008926,-0.252904266119]],[[0.066539138555527,0.17336396872997,0.10424694418907],[-0.057612143456936,0.035185612738132,0.043643273413181],[-0.10806262493134,-0.063526257872581,-0.071417883038521]],[[-0.06825977563858,-0.02124010771513,-0.15232902765274],[-0.028172738850117,-0.1228761523962,-0.076020076870918],[0.039534196257591,0.035608235746622,0.11455706506968]],[[-0.023185800760984,-0.12636555731297,0.021424880251288],[0.095548056066036,-0.16669343411922,0.035788029432297],[-0.11455702036619,-0.11931464076042,-0.018894461914897]],[[-0.076821342110634,-0.12377825379372,-0.039990242570639],[-0.0079145338386297,-0.048978988081217,-0.034760504961014],[0.075124278664589,0.037175565958023,-0.008214290253818]],[[0.076571188867092,0.032688777893782,0.20887112617493],[0.12348107993603,0.083905279636383,0.088519170880318],[-0.10230403393507,0.0097462991252542,-0.027986537665129]],[[-0.012374692596495,0.088986232876778,-0.0098763843998313],[0.019365729764104,0.052801135927439,0.11346554011106],[0.015857456251979,0.0096624540165067,-0.041417639702559]],[[-0.019207753241062,-0.086887687444687,-0.12154247611761],[-0.013578747399151,0.05891602113843,-0.040267378091812],[-0.083640143275261,-0.067340344190598,-0.066742613911629]],[[-0.10892151296139,-0.062880128622055,-0.061634283512831],[0.007511543110013,-0.061624106019735,0.12470792979002],[0.010257045738399,-0.064276732504368,-0.054235503077507]],[[-0.10110834985971,-0.1341467499733,0.017518937587738],[-0.0072802826762199,0.019140884280205,-0.011769314296544],[-0.078932620584965,0.065592743456364,0.000309844937874]],[[-0.010396218858659,0.06262694299221,0.014730070717633],[-0.11970994621515,-0.017827378585935,0.017162092030048],[-0.034986883401871,-0.036947272717953,0.021984586492181]],[[-0.078556902706623,0.026735952124,0.016063155606389],[0.016585094854236,0.035707477480173,0.05714238807559],[0.07145931571722,-0.10889805108309,-0.12349346280098]],[[0.012673019431531,0.038349561393261,0.057095494121313],[-0.035823933780193,0.1048978716135,0.10464033484459],[-0.037641696631908,-0.1590613424778,-0.056432779878378]],[[0.034505944699049,0.1124104782939,0.061076045036316],[-0.20068456232548,0.012614712119102,-0.059132248163223],[-0.028299832716584,-0.05416826531291,-0.19023253023624]],[[-0.096125394105911,0.045038495212793,0.083696268498898],[0.1106119081378,-0.12248950451612,0.19511760771275],[0.028724754229188,-0.028582418337464,0.024587493389845]],[[0.0064475759863853,-0.058763440698385,0.097907245159149],[0.14991103112698,0.13931034505367,0.040601897984743],[-0.19928202033043,-0.11099061369896,-0.21170347929001]],[[-0.017808772623539,-0.16588823497295,-0.021537117660046],[-0.00075826805550605,0.07910343259573,0.026234162971377],[-0.03488602489233,0.077339552342892,0.071154527366161]],[[-0.17873978614807,-0.048496302217245,0.17102490365505],[0.060456201434135,0.091445758938789,0.076359562575817],[0.058363400399685,0.080761797726154,0.074307024478912]],[[-0.035134557634592,0.0095246862620115,0.053286962211132],[-0.016819190233946,-0.11221417039633,0.025151578709483],[-0.033220432698727,-0.015762835741043,0.0022565480321646]],[[0.074767515063286,-0.093351259827614,0.14904677867889],[-0.021575795486569,0.050446499139071,0.14607228338718],[-0.08482051640749,-0.077255100011826,0.14159908890724]],[[0.071893572807312,0.068865083158016,0.037924353033304],[-0.20366993546486,0.035631034523249,0.01589884608984],[-0.15938881039619,0.029055455699563,-0.0014925593277439]],[[-0.074436791241169,-0.029988178983331,-0.050310719758272],[-0.053484208881855,0.0067645534873009,0.017335752025247],[0.034719206392765,0.031214695423841,0.094836540520191]],[[0.030429108068347,-0.15185309946537,0.079023562371731],[0.14071995019913,0.087894111871719,0.18767537176609],[-0.097297340631485,-0.14709697663784,0.050988089293242]],[[0.053544949740171,-0.0099387848749757,0.016780933365226],[-0.046017333865166,-0.1055261567235,-0.14688743650913],[0.11308567970991,-0.084780395030975,-0.047377306967974]],[[-0.06831955909729,0.11178836226463,0.21386820077896],[0.18553696572781,0.065230712294579,0.04413865506649],[-0.10421067476273,0.0023560777772218,-0.0032554452773184]]],[[[0.1805058568716,0.052148532122374,-0.11001577973366],[0.051730304956436,-0.0040589463897049,-0.18608139455318],[0.0044854865409434,-0.0012796717928723,-0.058261170983315]],[[-0.025536632165313,-0.075680762529373,-0.026072802022099],[0.18643099069595,0.22054500877857,0.085170596837997],[-0.28924429416656,-0.15371868014336,0.090431347489357]],[[0.030756929889321,-0.014981427229941,0.013873512856662],[0.049207087606192,0.026902785524726,-0.099152028560638],[0.14514143764973,0.048227917402983,-0.17648382484913]],[[-0.0065266066230834,0.060034811496735,0.22421890497208],[-0.038162432610989,-0.090869285166264,0.048599574714899],[0.17160277068615,0.065452225506306,0.053868982940912]],[[-0.079432412981987,0.013671197928488,0.051684085279703],[-0.093647450208664,-0.031302336603403,0.1092312708497],[0.15409773588181,-0.0015160682378337,0.036636084318161]],[[-0.11852443963289,-0.081998988986015,0.10689455270767],[0.0074860481545329,0.043326918035746,0.092016115784645],[-0.15858174860477,-0.13216133415699,0.017183810472488]],[[-0.080718442797661,0.037908505648375,-0.13825991749763],[-0.022914864122868,0.0039635058492422,-0.20879210531712],[-0.0019216497894377,0.10572876781225,-0.27618631720543]],[[0.049507115036249,-0.035594828426838,0.056186780333519],[-0.063356682658195,-0.023307241499424,-0.0980608984828],[0.080189645290375,-0.024807896465063,-0.085073955357075]],[[0.011738313362002,0.051878474652767,-0.036472227424383],[-0.08066464215517,-0.014288664795458,-0.0070127947255969],[-0.084516786038876,-0.03374570608139,0.039965018630028]],[[-0.15528427064419,0.050816927105188,-0.0017386329127476],[0.087116718292236,-0.0088811339810491,0.0059438473545015],[0.045568320900202,0.088223077356815,0.0070878327824175]],[[0.065158195793629,0.19814813137054,0.16740317642689],[-0.074439287185669,0.024854199960828,-0.094134427607059],[0.1509250998497,0.087636537849903,0.012234403751791]],[[-0.032688975334167,0.044003289192915,-0.01130001898855],[0.088364399969578,0.063712038099766,-0.015924585983157],[-0.014451113529503,0.09072358161211,0.065463252365589]],[[-0.1247548609972,0.041933003813028,-0.12668605148792],[0.049865879118443,0.13681095838547,0.076584160327911],[0.042028654366732,-0.15790644288063,0.056869260966778]],[[-0.034027695655823,0.055162560194731,-0.043440658599138],[-0.091842599213123,0.047508418560028,0.029915377497673],[0.069970704615116,0.021246425807476,0.022825788706541]],[[-0.047799237072468,0.011535030789673,-0.012462346814573],[-0.098560117185116,-0.063593752682209,0.028601501137018],[-0.13688533008099,0.19455014169216,-0.049616187810898]],[[0.10967592149973,0.043265409767628,0.21675848960876],[0.064346186816692,0.11545490473509,0.12335883080959],[-0.056392278522253,0.030324190855026,-0.080576568841934]],[[-0.16791546344757,0.046173803508282,-0.056199390441179],[0.0046113841235638,-0.018232638016343,-0.0072246054187417],[-0.0037938097957522,-0.10259624570608,-0.015218848362565]],[[-0.062409441918135,-0.16157482564449,0.038130488246679],[0.037211317569017,0.055747371166945,0.075104139745235],[-0.1897608935833,-0.03161259368062,-0.084861263632774]],[[0.071688659489155,-0.071842528879642,0.073895968496799],[-0.070786364376545,-0.12771917879581,0.026846000924706],[0.13945619761944,-0.0062305415049195,0.058987654745579]],[[0.16310338675976,-0.068510413169861,-0.029808165505528],[-0.010330250486732,0.058625590056181,-0.13386623561382],[0.078455187380314,0.04839525744319,0.0096809854730964]],[[-0.013736313208938,-0.015157410874963,-0.022154722362757],[-0.12937274575233,0.053119670599699,-0.025236710906029],[-0.034673411399126,0.053744714707136,0.034473538398743]],[[-0.054359700530767,0.065178319811821,0.17526109516621],[-0.032802678644657,0.054442748427391,-0.10568571835756],[-0.06888510286808,0.0058993184939027,0.084860138595104]],[[-0.053086571395397,0.032575733959675,0.15085379779339],[-0.19645781815052,0.024765077978373,-0.050973739475012],[-0.00160903041251,0.0088495323434472,0.030290111899376]],[[0.10168021917343,0.014985864982009,0.15348064899445],[0.064496837556362,0.015107321552932,0.032909698784351],[0.0026545394212008,-0.10655600577593,0.078079514205456]],[[0.029453419148922,0.067605637013912,-0.11432790756226],[-0.17755426466465,0.062407594174147,-0.14994767308235],[0.01922551728785,0.02741234190762,-0.065562002360821]],[[-0.19569331407547,-0.18584488332272,0.052048582583666],[-0.20835688710213,-0.033116653561592,0.029299816116691],[-0.019500989466906,0.032910626381636,-0.082641787827015]],[[-0.09663750231266,0.014752724207938,-0.058988455682993],[0.014701855368912,-0.01879177056253,0.074325814843178],[0.0057290522381663,-0.0573341101408,-0.075484909117222]],[[-0.068261697888374,0.067773662507534,0.02893478795886],[-0.074341133236885,-0.1271994560957,-0.0020404946990311],[0.043308336287737,0.046004172414541,-0.037783212959766]],[[0.17641898989677,0.11670409142971,-0.13811798393726],[0.024490546435118,-0.22620132565498,-0.063861384987831],[0.12976531684399,-0.0010695866076276,0.11615800857544]],[[-0.12670995295048,0.011439833790064,0.094549492001534],[-0.15457959473133,-0.04849611967802,-0.038607448339462],[-0.075417742133141,0.11171812564135,-0.020093876868486]],[[-0.034610379487276,-0.072398841381073,-0.01329006254673],[-0.04679224640131,0.086125195026398,-0.075806945562363],[-0.074173763394356,-0.0021781765390188,-0.023172056302428]],[[0.060829039663076,0.12289979308844,0.10503466427326],[0.10122726112604,-0.046254254877567,-0.066445559263229],[0.1693926602602,-0.069030173122883,-0.16651453077793]],[[0.079409293830395,-0.065975412726402,0.093293584883213],[-0.015806023031473,-0.15497419238091,0.012897687964141],[0.055590141564608,-0.11534643918276,-0.037368770688772]],[[-0.11385169625282,-0.045244801789522,-0.022174598649144],[-0.078297592699528,0.04341309890151,-0.019060585647821],[-0.035782437771559,0.086445055902004,0.088763929903507]],[[0.16813097894192,-0.012436958961189,-0.02380209416151],[0.00031694257631898,-0.094432830810547,0.064106680452824],[-0.0025580192450434,-0.21930669248104,0.1254800260067]],[[-0.047538686543703,0.029382644221187,0.078566066920757],[-0.106236115098,0.031269103288651,-0.044319961220026],[-0.024492561817169,0.059369087219238,-0.085442841053009]],[[0.030542526394129,0.11838131397963,-0.10213494300842],[-0.023417459800839,0.023920027539134,-0.063145950436592],[0.019387459382415,0.020477373152971,-0.15065196156502]],[[0.075617715716362,0.11413083225489,0.21223032474518],[-0.14937616884708,-0.041471529752016,0.049695584923029],[-0.034977894276381,0.029095036908984,0.10655653476715]],[[-0.096056871116161,-0.024461289867759,0.037326421588659],[0.085148185491562,-0.018521195277572,-0.12107903510332],[0.017446000128984,0.10013961791992,0.055670421570539]],[[0.071777731180191,0.044817201793194,0.012003363110125],[-0.066355764865875,-0.024627629667521,-0.031468369066715],[0.0037040391471237,-0.049817245453596,0.011680877767503]],[[-0.11189003288746,-0.13726216554642,0.036461986601353],[0.036591354757547,-0.020606461912394,-0.021316133439541],[-0.07466171681881,-0.062407426536083,0.21998435258865]],[[0.16331921517849,-0.033377900719643,0.024419695138931],[0.02016837336123,0.0037317983806133,0.080542400479317],[0.10992946475744,0.011770868673921,-0.05456505343318]],[[0.019696891307831,0.0084106000140309,0.17989395558834],[-0.045604173094034,-0.076360322535038,0.14787998795509],[-0.029791262000799,0.14928448200226,-0.077109478414059]],[[-0.1432242244482,-0.10085506737232,0.010158114135265],[-0.0012965387431905,0.062898814678192,0.019291710108519],[-0.051840297877789,-0.044590175151825,0.049089308828115]],[[0.030902491882443,-0.043372388929129,-0.09258583933115],[0.076630346477032,0.020244041457772,-0.10185124725103],[0.065474167466164,-0.047569766640663,-0.070707120001316]],[[0.017825696617365,-0.0606599599123,0.040456958115101],[0.024662578478456,-0.039595305919647,0.036144841462374],[0.18696486949921,-0.16232307255268,-0.038766499608755]],[[-0.065596327185631,-0.07670683413744,-0.067610695958138],[0.062215331941843,0.013237295672297,-0.018021702766418],[0.059493273496628,0.13358978927135,0.10672457516193]],[[-0.030792932957411,-0.050847519189119,-0.083007536828518],[0.0053390669636428,-0.054802536964417,0.10612920671701],[-0.070267423987389,0.044282667338848,0.10719411075115]],[[-0.07105053961277,-0.14574021100998,-0.15429289638996],[0.12831412255764,0.093617059290409,0.016412518918514],[0.15473429858685,-0.2036285251379,0.091633185744286]],[[0.022695368155837,0.024952851235867,0.20185340940952],[-0.084509767591953,-0.038532089442015,0.006730034481734],[-0.085430137813091,0.071287333965302,-0.0013293880037963]],[[0.027705060318112,0.1137735620141,0.015101410448551],[-0.052828196436167,0.085118986666203,0.014392797835171],[-0.17435470223427,-0.078065857291222,0.079365387558937]],[[-0.044074062258005,-0.083269223570824,0.10797081142664],[0.09385934472084,0.11394916474819,0.026398116722703],[-0.13244368135929,-0.036946263164282,0.11964004486799]],[[0.0076287793926895,0.12044771015644,0.018430126830935],[0.12256171554327,0.01951820589602,0.029560837894678],[-0.080763228237629,-0.11198649555445,-0.10375100374222]],[[-0.071294590830803,-0.0046202167868614,0.053088657557964],[-0.11175590008497,0.19422739744186,0.04029705747962],[-0.13128432631493,-0.055375002324581,0.23557668924332]],[[-0.016068771481514,0.03017608448863,0.30138358473778],[-0.00078722980106249,0.063563615083694,0.15166671574116],[0.030209869146347,0.0029136354569346,-0.0092770224437118]],[[0.10285388678312,0.10431607067585,0.18346321582794],[-0.051739610731602,-0.11208058893681,-0.17188547551632],[0.058869149535894,0.038229372352362,-0.0052846944890916]],[[0.012157598510385,-0.017346063628793,-0.060970436781645],[-0.013743042014539,0.019158456474543,0.091584160923958],[-0.039988067001104,-0.088450506329536,0.21133132278919]],[[0.020295782014728,-0.14860707521439,-0.084859259426594],[-0.038918931037188,0.18159405887127,0.030801396816969],[-0.0092631736770272,0.028980383649468,0.085282698273659]],[[0.022190408781171,-0.10471395403147,0.2312911003828],[-0.058781418949366,0.0051166703924537,-0.02688548900187],[-0.028764497488737,-0.022837270051241,-0.0072765308432281]],[[-0.062335945665836,0.01848940551281,-0.18758684396744],[0.013095113448799,0.038542319089174,0.13725025951862],[-0.06145603582263,-0.069012157618999,0.11651381850243]],[[-0.11077493429184,0.016300041228533,-0.0095089487731457],[0.049852836877108,0.059076435863972,0.065412200987339],[-0.068170346319675,-0.00053221784764901,0.034371562302113]],[[-0.0034739256370813,0.0025067310780287,0.077716782689095],[0.071173682808876,0.0097350031137466,0.013958530500531],[0.073617480695248,0.16379274427891,-0.019327573478222]],[[-0.0082892216742039,-0.082648850977421,-0.037389289587736],[-0.089965738356113,-0.0086063500493765,0.11920621246099],[0.012058924883604,0.044604420661926,0.0024721110239625]],[[-0.0022610635496676,-0.042342517524958,0.13324399292469],[0.17818300426006,-0.086932554841042,0.044423341751099],[0.026627369225025,0.050148352980614,0.10820316523314]]],[[[-0.10663635283709,0.08078046143055,-0.037581633776426],[0.23940390348434,0.072215653955936,0.13276065886021],[-0.22787892818451,-0.26121452450752,-0.12392720580101]],[[0.11650706827641,0.1284004598856,-0.057299550622702],[0.00068793719401583,-0.069942608475685,-0.06417540460825],[0.013524599373341,0.10367786884308,-0.0050962115637958]],[[-0.057424776256084,0.017632551491261,0.01574495062232],[0.063418202102184,-0.21128064393997,0.11093328148127],[-7.5116913649254e-05,-0.14212512969971,-0.23698461055756]],[[0.089429996907711,0.071453422307968,-0.16349443793297],[0.019570691511035,-0.016047639772296,-0.12817898392677],[-0.10663139820099,0.15384876728058,-0.095035441219807]],[[-0.15461251139641,-0.081353902816772,0.089095786213875],[0.13382667303085,-0.1185305416584,-0.017777845263481],[0.064361356198788,0.094517767429352,0.070466198027134]],[[0.095600694417953,0.038232274353504,-0.11460413038731],[-0.077756278216839,0.088833786547184,-0.0014389049028978],[-0.13386023044586,-0.21119031310081,-0.11716301739216]],[[0.066816188395023,-0.012151590548456,0.041001696139574],[-0.057177733629942,-0.052113350480795,-0.051030773669481],[-0.073375262320042,-0.10291182994843,-0.19493874907494]],[[0.063548311591148,-0.015567031688988,0.04646323248744],[-0.05934190005064,0.099433660507202,-0.078047044575214],[-0.00086686387658119,0.040981210768223,-0.039261735975742]],[[0.015499901026487,0.1196194216609,0.05757100880146],[-0.04701679572463,0.01841345988214,-0.069065846502781],[-0.075003378093243,-0.0037440089508891,-0.051762737333775]],[[0.098806269466877,0.094769142568111,-0.012744659557939],[0.065332151949406,-0.0046216021291912,0.072717167437077],[0.08403155952692,-0.22808194160461,-0.17811524868011]],[[-0.020137058570981,-0.035754352807999,-0.015704778954387],[-0.064395144581795,0.077122054994106,-0.017766429111362],[-0.070837087929249,0.10599116235971,-0.16512823104858]],[[-0.021069264039397,-0.0046691000461578,-0.1565780043602],[0.013454280793667,-0.057998780161142,-0.058944381773472],[-0.096542730927467,0.028963085263968,-0.019651729613543]],[[0.0056328820064664,0.13148945569992,0.20711034536362],[0.015320866368711,0.06199437379837,0.045062314718962],[-0.23028425872326,-0.020408615469933,-0.064509473741055]],[[0.036916129291058,0.0013290039496496,0.17106693983078],[-0.065270617604256,0.035104177892208,0.042273480445147],[0.042621597647667,-0.045673977583647,0.0097870547324419]],[[0.015552791766822,-0.053273282945156,0.062004752457142],[-0.027441432699561,0.16378925740719,0.11808057129383],[-0.081823326647282,-0.0036380300298333,-0.015094206668437]],[[-0.093990743160248,0.11845672130585,0.11974123120308],[0.0069374484010041,-0.044159024953842,-0.042111407965422],[-0.040829055011272,-0.055977996438742,0.0029172485228628]],[[-0.058189664036036,-0.13469563424587,0.15818484127522],[0.11978250741959,-0.030972465872765,0.067434936761856],[0.1020962074399,-0.11582110822201,0.10231191664934]],[[0.092360682785511,0.032732341438532,0.029156969860196],[-0.016808634623885,0.012982304207981,-0.15159356594086],[0.1198660954833,-0.10124855488539,0.093696512281895]],[[-0.14415414631367,-0.040210817009211,0.12226758152246],[0.16334083676338,0.11074887216091,-0.0056679300032556],[0.018634418025613,0.10370487719774,0.042119696736336]],[[0.19739417731762,0.002774991793558,-0.024763090535998],[-0.17315495014191,-0.085176669061184,-0.10930874943733],[-0.0015513808466494,-0.005107460077852,-0.24093499779701]],[[-0.032279726117849,-0.064301140606403,0.18470656871796],[0.043709926307201,0.092102415859699,-0.19720317423344],[0.058510031551123,0.12496513873339,0.048221629112959]],[[-0.17332495748997,-0.20710554718971,0.078605100512505],[-0.069592155516148,-0.13614025712013,-0.10043457150459],[-0.14246948063374,0.053158883005381,-0.16274350881577]],[[-0.27552103996277,0.023190397769213,0.00084851973224431],[-0.04832411184907,-0.0537985637784,-0.075990602374077],[-0.049714714288712,-0.055485241115093,0.0089192325249314]],[[0.058446787297726,0.13637414574623,0.11801442503929],[-0.1142211407423,-0.25288665294647,-0.16157823801041],[-0.10414177924395,-0.080057643353939,-0.21568444371223]],[[0.075296327471733,0.060889475047588,-0.051775015890598],[0.041339613497257,-0.071737058460712,-0.076294094324112],[0.0186115372926,0.099044226109982,-0.0026582397986203]],[[-0.038411971181631,-0.093477584421635,-0.054714512079954],[-0.0061517809517682,0.043785989284515,-0.052672512829304],[-0.015125077217817,-0.009659256786108,-0.040021706372499]],[[0.087534531950951,0.03572653606534,0.04751443862915],[-0.22032630443573,-0.21003575623035,0.0086407819762826],[0.065242037177086,0.048044286668301,-0.086370415985584]],[[0.0064718467183411,-0.1010926887393,0.063319928944111],[-0.12770916521549,-0.061456859111786,0.014419662766159],[-0.12523576617241,-0.1050176396966,-0.15027530491352]],[[-0.012238420546055,-0.011119873262942,-0.08018484711647],[-0.0059564942494035,0.15818752348423,-0.094884291291237],[0.077049180865288,0.10268938541412,0.098336018621922]],[[-0.032397501170635,0.11600866913795,0.014656819403172],[0.037889838218689,-0.10540592670441,-0.083473883569241],[0.024538617581129,-0.21607010066509,0.10064183175564]],[[-0.10644334554672,-0.012602999806404,0.20508264005184],[-0.044510949403048,0.036184404045343,0.050479020923376],[-0.1671998500824,-0.11614394932985,-0.0054814997129142]],[[-0.085618570446968,0.21881902217865,-0.34711337089539],[0.026416013017297,-0.031452607363462,-0.019987735897303],[0.16937284171581,0.19499634206295,-0.14367707073689]],[[-0.061070322990417,0.033506721258163,0.017292538657784],[-0.12446338683367,-0.10027231276035,-0.066554680466652],[-0.040522783994675,0.068961322307587,0.021161133423448]],[[-0.14429891109467,-0.18036283552647,-0.025003559887409],[-0.025729414075613,-0.1175679191947,-0.0344019792974],[-0.031328238546848,0.09588972479105,-0.062049895524979]],[[-0.15453304350376,-0.085500128567219,0.016632325947285],[-0.16564105451107,0.073515869677067,-0.063754178583622],[-0.10601671040058,-0.19854746758938,-0.044398233294487]],[[0.026668783277273,-0.0072821923531592,0.15333668887615],[-0.1707166582346,0.012416263110936,0.054983835667372],[-0.11487639695406,-0.057626605033875,-0.11505649238825]],[[0.011521517299116,0.0049972329288721,0.0053068362176418],[-0.032673988491297,-0.13925376534462,-0.0076514417305589],[0.029023922979832,-0.074160531163216,-0.040688168257475]],[[0.084433026611805,0.1481885612011,0.17778538167477],[0.022531716153026,-0.057163145393133,-0.12529110908508],[-0.081114277243614,0.14141547679901,-0.0055997259914875]],[[0.12818859517574,-0.063163369894028,0.060458246618509],[-0.12215793132782,0.027305327355862,0.13342761993408],[-0.034965451806784,-0.11464316397905,-0.0073016136884689]],[[0.095962733030319,0.084842219948769,-0.050569597631693],[-0.062487676739693,0.14931194484234,-0.034373849630356],[-0.017631728202105,-0.04954607412219,0.021194335073233]],[[0.044667191803455,-0.0017947686137632,-0.057710465043783],[0.12358507514,-0.025919023901224,-0.11137480288744],[0.14123585820198,0.12015387415886,0.086438424885273]],[[-0.076020784676075,0.12365423887968,0.087273627519608],[-0.01457588840276,0.080289423465729,0.03455525636673],[-0.052262514829636,-0.19517022371292,0.078669331967831]],[[-0.006766689941287,-0.0098907425999641,0.02856208384037],[-0.10949784517288,0.032092351466417,-0.12083127349615],[0.19428990781307,0.061008244752884,-0.095525532960892]],[[0.028751976788044,-0.0078857243061066,0.032441403716803],[-0.003982930444181,0.0034030482638627,0.035894434899092],[0.020743666216731,-0.11972130835056,0.033699657768011]],[[0.076760329306126,0.038370449095964,-0.16930404305458],[0.038516163825989,-0.092515252530575,-0.080736704170704],[0.036127436906099,0.18680585920811,-0.069805696606636]],[[0.0049974932335317,-0.062260039150715,0.20538608729839],[-0.14689461886883,0.024371791630983,-0.0022653115447611],[-0.22641535103321,-0.099423050880432,-0.22657103836536]],[[-0.067524515092373,-0.098446518182755,-0.029306201264262],[0.025189612060785,0.083289742469788,-0.03447100520134],[-0.11982040852308,-0.047266609966755,-0.07833781093359]],[[0.033865459263325,-0.085811726748943,0.047549661248922],[0.018851125612855,-0.047758031636477,-0.10381714999676],[-0.051429841667414,0.060610849410295,-0.13631369173527]],[[-0.13641504943371,0.25051614642143,-0.07356471568346],[-0.0037259822711349,0.09475564956665,-0.14286442101002],[-0.23522931337357,-0.12605051696301,-0.097915023565292]],[[0.016782660037279,-0.045873187482357,0.016415996477008],[-0.09483341127634,-0.07476269453764,0.14874814450741],[-0.06818388402462,0.034782607108355,0.0023158174008131]],[[-0.075244583189487,0.1099302098155,0.056722152978182],[-0.0096380393952131,0.025875009596348,-0.088037170469761],[-0.0005833167815581,0.026148268952966,0.027458753436804]],[[-0.21155789494514,-0.071665532886982,0.015697689726949],[0.065689966082573,-0.010989975184202,0.054816674441099],[0.059219166636467,0.039587628096342,-0.01113055832684]],[[-0.15759201347828,0.024813022464514,0.017875354737043],[0.1253210157156,0.070600502192974,-0.013192976824939],[-0.26102167367935,0.054803315550089,-0.11950288712978]],[[-0.069965817034245,0.12350656092167,0.10980866849422],[-0.1856624931097,-0.087991133332253,-0.10231366753578],[-0.31024742126465,-0.20039856433868,-0.23930637538433]],[[-0.056012101471424,0.092900559306145,0.20074531435966],[0.091239057481289,-0.12118683755398,-0.0041349693201482],[-0.003684725612402,-0.22179763019085,-0.20332837104797]],[[0.034244634211063,0.11786773055792,0.05156022682786],[0.02589519508183,-0.18459625542164,0.039310801774263],[0.10958748310804,-0.12036845088005,-0.15816000103951]],[[0.014383339323103,0.033191755414009,0.14554838836193],[-0.038879409432411,0.044600185006857,-0.0046823788434267],[-0.088035196065903,-0.24946604669094,-0.09337093681097]],[[-0.10632864385843,0.075497828423977,-0.061111636459827],[0.054734501987696,-0.023852083832026,0.072985619306564],[0.13372588157654,-0.079799510538578,-0.11523225903511]],[[0.066273771226406,-0.0092181302607059,0.12191791087389],[0.13143555819988,0.022645886987448,0.075343616306782],[-0.11274685710669,-0.098338797688484,-0.17727094888687]],[[-0.012046032585204,0.021069230511785,0.093221873044968],[-0.0022726277820766,0.030971577391028,-0.060985263437033],[-0.061614830046892,-0.0093072988092899,0.021224819123745]],[[0.064783364534378,0.2448894828558,-0.27845874428749],[-0.02777954749763,0.0132518960163,-0.047065827995539],[-0.026444612070918,-0.17628872394562,-0.14966203272343]],[[-0.082651972770691,0.1046942025423,-0.21847523748875],[0.17965030670166,0.14789119362831,0.046719379723072],[-0.3216173350811,-0.19665789604187,0.14062970876694]],[[0.057748150080442,-0.045055251568556,-0.10728640109301],[-0.067195557057858,-0.084978498518467,0.073933929204941],[0.027877144515514,-0.1802866011858,-0.093686506152153]],[[0.030416997149587,0.0043798936530948,-0.060313258320093],[-0.012228428386152,0.054951809346676,-0.10795836150646],[-0.020775118842721,0.062087073922157,0.0022780536673963]]],[[[-0.11334012448788,-0.062131065875292,-0.14066843688488],[-0.0055429274216294,0.29621398448944,0.069539912045002],[0.068578310310841,0.090265892446041,0.087253257632256]],[[-0.11445567756891,-0.027908217161894,0.17265236377716],[-0.067353218793869,0.0065781432203948,0.10557124763727],[0.045886676758528,0.038819849491119,-0.049847051501274]],[[0.077879831194878,0.00810591224581,-0.096164226531982],[0.18176248669624,-0.038045607507229,-0.073155745863914],[-0.0039192447438836,-0.028174336999655,-0.04490764811635]],[[0.20652435719967,-0.11203984171152,0.018190786242485],[-0.0021487607154995,0.039315223693848,-0.14093135297298],[-0.11233111470938,-0.14517448842525,-0.056850586086512]],[[0.0054239076562226,0.048233039677143,0.28170222043991],[-0.19007001817226,-0.040528532117605,-0.060565680265427],[0.038186762481928,-0.09086374938488,-0.077931046485901]],[[0.075743794441223,-0.074422799050808,0.072867251932621],[0.079508051276207,0.077806361019611,-0.081586912274361],[0.25125879049301,-0.15716995298862,-0.10623187571764]],[[-0.074438646435738,-0.22745852172375,-0.083732090890408],[0.074741423130035,-0.10513271391392,0.13353337347507],[0.086965635418892,0.025067644193769,-0.1614176928997]],[[0.022720389068127,-0.095722988247871,0.0032912625465542],[-0.032171525061131,-0.025288557633758,-0.19197055697441],[0.039090320467949,-0.014995098114014,-0.042272422462702]],[[-0.058959566056728,0.0040864073671401,0.0058337682858109],[-0.032093696296215,-0.033458273857832,0.087304137647152],[-0.08585799485445,-0.029666487127542,0.021019380539656]],[[0.14518317580223,0.04303128272295,-0.067849643528461],[-0.19424575567245,-0.014935303479433,-0.067917384207249],[-0.078224919736385,-0.22015230357647,0.12329227477312]],[[0.049010924994946,0.063015587627888,-0.088520854711533],[-0.065334655344486,-0.027144892141223,-0.20227511227131],[-0.032051589339972,0.053943812847137,0.12665270268917]],[[-0.0073932339437306,0.07255020737648,-0.044891875237226],[-0.1208038777113,0.0038667069748044,-0.099330946803093],[-0.043739058077335,0.063593357801437,0.10484123975039]],[[0.17183101177216,-0.17521122097969,0.13876760005951],[0.065701231360435,-0.0045711761340499,0.08317781239748],[0.1515244692564,0.17939355969429,-0.14065572619438]],[[0.12123981118202,0.010031858459115,0.015379688702524],[-0.13960011303425,-0.064562074840069,-0.13255932927132],[-0.0094356257468462,-0.010772817768157,-0.14721447229385]],[[0.085039205849171,0.20758736133575,0.11780627071857],[-0.12057783454657,-0.1049994379282,-0.046061411499977],[-0.0064857183024287,-0.12952888011932,0.22872100770473]],[[0.053574360907078,-0.11338482797146,0.18364781141281],[0.02822339348495,0.056083053350449,0.08584202080965],[0.05966730043292,-0.083934053778648,-0.040997534990311]],[[-0.074958138167858,0.14476063847542,0.18538303673267],[-0.019035717472434,-0.13609148561954,0.0075661037117243],[0.13146291673183,0.06818813085556,-0.082172103226185]],[[0.097011625766754,0.02954026311636,0.014952312223613],[-0.041417852044106,0.057712405920029,-0.043517578393221],[0.03926183655858,-0.083625629544258,-0.20929063856602]],[[0.1904985755682,0.079619154334068,0.01378936227411],[0.012656223028898,0.32146945595741,-0.097266294062138],[-0.017093440517783,-0.024380568414927,-0.17634272575378]],[[-0.04780850186944,0.021788531914353,0.08188484609127],[-0.093901097774506,-0.0012605518568307,-0.074674986302853],[-0.0091200480237603,-0.02740715071559,-0.085292167961597]],[[0.067091718316078,0.042310480028391,0.11803013831377],[0.0027944811154157,0.063756167888641,-0.030738132074475],[-0.32773956656456,-0.011420079506934,0.021817393600941]],[[0.096101246774197,0.090035863220692,0.31921085715294],[0.054468210786581,0.056612282991409,-0.026349382475019],[-0.074232406914234,-0.05790163949132,-0.055053882300854]],[[-0.036063250154257,0.12499413639307,-0.094916626811028],[-0.0052588102407753,-0.10428934544325,0.073188230395317],[-0.035215269774199,-0.23444767296314,-0.046657580882311]],[[-0.046010203659534,0.0500857681036,-0.054375104606152],[-0.13369430601597,0.078708969056606,0.046974908560514],[-0.10280033946037,-0.11133539676666,-0.077312014997005]],[[0.09520610421896,-0.10392834246159,-0.044595520943403],[0.12291123718023,-0.086044006049633,0.075607217848301],[-0.040441408753395,-0.14701484143734,-0.0080359969288111]],[[0.082444660365582,-0.10506398975849,-0.020257662981749],[0.31888380646706,-0.047720689326525,-0.018996285274625],[0.15673750638962,-0.25796270370483,0.046682216227055]],[[-0.043232318013906,-0.047876764088869,-0.018686097115278],[0.023936590179801,0.06363558024168,-0.043539233505726],[-0.039709817618132,0.031486470252275,0.045533426105976]],[[0.065469413995743,-0.13838794827461,-0.019122729077935],[0.082312270998955,-0.044785764068365,-0.14338292181492],[-0.11546638607979,0.0087774647399783,-0.055718090385199]],[[0.015475451014936,-0.089257672429085,0.018214073032141],[-0.14660795032978,-0.11971042305231,0.002122800797224],[0.048129118978977,0.091395452618599,0.03345138952136]],[[0.096745938062668,0.097964309155941,-0.015323967672884],[0.04248696193099,0.095693290233612,-0.12576983869076],[-0.071562312543392,-0.098774403333664,-0.093033477663994]],[[0.15540762245655,0.036958310753107,0.15704819560051],[-0.1943079829216,-0.027718223631382,-0.075340822339058],[0.069424465298653,-0.15329210460186,-0.020228421315551]],[[-0.11556307971478,-0.073809549212456,-0.093085736036301],[0.091049797832966,0.042275302112103,-0.18508383631706],[0.048075802624226,0.12808960676193,0.13480931520462]],[[0.010645222850144,0.04059824347496,-0.10058035701513],[0.046739127486944,0.17136530578136,-0.055516421794891],[0.014105857349932,-0.045367181301117,0.0044776131398976]],[[0.036293383687735,0.038935575634241,0.034257382154465],[0.17886702716351,-0.023507416248322,0.071067914366722],[0.13152036070824,0.022504629567266,0.049958080053329]],[[0.025701966136694,-0.10723674297333,-0.10144279152155],[-0.11695147305727,-0.13037227094173,-0.0072090784087777],[-0.12242303788662,0.032415859401226,-0.040898021310568]],[[0.050709012895823,-0.059041958302259,-0.18033164739609],[-0.068221151828766,0.18355126678944,0.10344929993153],[-0.12649919092655,0.15629696846008,-0.020122962072492]],[[-0.14610810577869,-0.075064867734909,-0.19099250435829],[0.038893762975931,0.1063074991107,0.017402870580554],[-0.034530259668827,-0.03289245814085,0.15260460972786]],[[0.11765174567699,0.036949217319489,0.042015340179205],[-0.14182035624981,-0.028046887367964,-0.0099887177348137],[-0.1199773773551,-0.090202264487743,-0.13053670525551]],[[0.035248357802629,-0.0086515359580517,-0.04715009406209],[-0.081648752093315,-0.068830907344818,0.0039983517490327],[0.083689242601395,-0.020030429586768,-0.03962628915906]],[[0.035118203610182,0.034153051674366,-0.076165862381458],[0.014820708893239,-0.081160195171833,-0.021434372290969],[0.13034023344517,-0.022723441943526,-0.10336025059223]],[[-0.042828697711229,0.065392628312111,-0.21004676818848],[-0.1630012691021,0.11897038668394,-0.0020383724477142],[-0.085484206676483,0.1310957223177,-0.072708152234554]],[[0.0084568848833442,0.12631587684155,0.11221916973591],[0.053407717496157,0.13312610983849,-0.067264974117279],[0.057807754725218,0.13886748254299,0.024277839809656]],[[0.051917549222708,-0.0010529056889936,0.050402570515871],[-0.010022255592048,-0.057355105876923,-0.073593460023403],[0.11436203867197,-0.17386223375797,-0.16377495229244]],[[0.047542173415422,0.01257177721709,-0.089331641793251],[0.035849630832672,0.0054255654104054,-0.030811076983809],[-0.0033521186560392,-0.029988657683134,-0.10566552728415]],[[-0.19126281142235,-0.060285739600658,0.007362806238234],[-0.057334411889315,-0.021776512265205,-0.078273050487041],[0.039978109300137,-0.13352321088314,-0.11140813678503]],[[0.015738893300295,0.017745271325111,0.050459444522858],[-0.29172709584236,0.084505952894688,-0.081305935978889],[-0.082740485668182,0.13828153908253,0.20853745937347]],[[-0.25103706121445,0.19724124670029,0.06029162555933],[0.090427733957767,0.058993175625801,-0.11245942115784],[-0.099887125194073,-0.054996505379677,0.17753536999226]],[[0.016641957685351,-0.044612918049097,0.028597498312593],[0.030180331319571,0.10544853657484,0.022293213754892],[-0.027925834059715,-0.068102918565273,-0.051904536783695]],[[-0.20506128668785,-0.16239216923714,-0.013420173898339],[-0.06682600826025,0.060986809432507,0.11656005680561],[-0.080231860280037,-0.072911441326141,-0.014018974266946]],[[0.041239108890295,0.028282888233662,-0.02296394109726],[-0.0075146635062993,0.0025529453996569,0.039155352860689],[-0.022874901071191,-0.03144559264183,-0.044464103877544]],[[0.069208964705467,0.0089713791385293,-0.08358670771122],[-0.066747583448887,-0.038539420813322,0.030885113403201],[-0.001384248607792,0.016990231350064,0.021778894588351]],[[0.09531182050705,-0.094257399439812,0.13505676388741],[-0.0052426913753152,0.025987729430199,-0.11427077651024],[-0.018886571750045,-0.079950444400311,-0.047869089990854]],[[-0.21619841456413,-0.037839282304049,0.029689144343138],[-0.053140223026276,0.12472760677338,-0.020452786237001],[-0.062430195510387,0.099737368524075,-0.084533162415028]],[[-0.14256937801838,-0.16866207122803,0.13526625931263],[0.14827300608158,-0.023804891854525,0.044948231428862],[-0.11889935284853,-0.093783460557461,-0.090116508305073]],[[-0.055680088698864,-0.035775400698185,0.070783846080303],[0.03454377129674,-0.015123006887734,-0.081423401832581],[-0.003211657050997,0.12921841442585,0.020227296277881]],[[-0.041591204702854,-0.052121911197901,-0.19935829937458],[0.058046538382769,-0.021970361471176,-0.11699920892715],[-0.027665952220559,-0.021160671487451,-0.20403507351875]],[[0.12465615570545,0.024754915386438,-0.039441138505936],[-0.014962578192353,0.052551589906216,-0.014698121696711],[-0.03270348533988,-0.092661544680595,0.061155751347542]],[[-0.064288735389709,0.0052255378104746,0.040158029645681],[-0.2794631421566,-0.052938695997,0.067762427031994],[0.0039517334662378,0.11267863214016,0.1231609210372]],[[-0.013576900586486,0.10328555107117,-0.037525836378336],[0.10882343351841,-0.06217447295785,0.037773363292217],[0.050302878022194,-0.083388388156891,0.27150508761406]],[[-0.15661470592022,0.14580322802067,0.19487810134888],[-0.061337538063526,0.18873803317547,-0.0071433018893003],[-0.072813384234905,-0.019994087517262,0.006480110809207]],[[-0.11299275606871,-0.013550109229982,0.032407194375992],[-0.079980112612247,-0.05235344171524,-0.012960627675056],[-0.083332680165768,-0.11820477247238,0.13516730070114]],[[-0.19758056104183,0.052991379052401,0.027504937723279],[-0.091295480728149,-0.041595049202442,-0.12353122979403],[-0.077366635203362,-0.172159537673,0.1007504761219]],[[0.0821478292346,0.12180452793837,0.063539646565914],[0.053722068667412,-0.042655516415834,0.098359644412994],[0.10358811914921,0.11503159999847,0.050372388213873]],[[-0.15735991299152,-0.03778263926506,-0.19293221831322],[0.03747670352459,-0.0051383641548455,0.010374407283962],[-0.13443468511105,0.042452175170183,0.099628627300262]]],[[[-0.034498371183872,0.17587076127529,0.082950219511986],[-0.073869325220585,-0.03064326196909,-0.12816359102726],[0.10818448662758,0.011334552429616,0.014499350450933]],[[0.071278721094131,0.00096979312365875,-0.020335523411632],[-0.14438953995705,-0.023137098178267,0.053884331136942],[0.20811326801777,0.17558105289936,-0.19998516142368]],[[0.15414524078369,0.16377641260624,-0.001361436676234],[0.11732997745275,0.033109605312347,-0.1260519772768],[-0.054314844310284,-0.11926330626011,0.009687970392406]],[[0.11230902373791,0.045608274638653,-0.14918661117554],[-0.019099919125438,-0.080075815320015,0.077741831541061],[0.072799652814865,-0.029229564592242,0.11313476413488]],[[-0.15685442090034,-0.12865342199802,0.019646970555186],[0.13052569329739,0.040010131895542,0.048435535281897],[-0.19373129308224,-0.078881062567234,-0.22842724621296]],[[-0.0450917519629,-0.087426789104939,-0.18070323765278],[0.0038525064010173,-0.10724131762981,0.02091159671545],[-0.11342161148787,-0.0021028383634984,0.11196951568127]],[[-0.10185921937227,-0.092239901423454,-0.14922678470612],[0.037869460880756,-0.042281068861485,-0.050343420356512],[-0.10240916162729,-0.055509813129902,0.019499272108078]],[[-0.040230225771666,-0.1313402056694,-0.11447062343359],[0.16938354074955,-0.021581571549177,0.013260880485177],[0.10795130580664,0.098353154957294,0.11749459803104]],[[-0.059112124145031,-0.030054984614253,0.021540796384215],[-0.016285642981529,-0.031334839761257,0.068061195313931],[0.040730156004429,0.040619768202305,-0.037441488355398]],[[0.071800246834755,-0.33764934539795,-0.017961939796805],[-0.1362666785717,-0.072431124746799,0.029923979192972],[0.01442145369947,0.022196140140295,0.061644859611988]],[[-0.05880706384778,0.094285517930984,0.022468904033303],[0.083737388253212,0.027309825643897,0.049973383545876],[-0.048279002308846,0.038485307246447,0.07922400534153]],[[-0.12648703157902,-0.030764907598495,0.02795984223485],[-0.11335724592209,0.016687182709575,0.0038675596006215],[-0.034633614122868,0.053655549883842,0.014626356773078]],[[-0.0094727193936706,0.098563186824322,0.17204663157463],[-0.027365682646632,-0.014202676713467,-0.11176016926765],[-0.027302280068398,0.051818814128637,0.11275219917297]],[[0.041487917304039,0.038701716810465,0.012693537399173],[0.035285659134388,-0.032740250229836,-0.0080037424340844],[0.086718417704105,-0.064659476280212,-0.022214787080884]],[[0.0051286048255861,0.10982003808022,0.0074378824792802],[-0.020607942715287,0.021971758455038,-0.044272296130657],[-0.02801269851625,0.069262966513634,0.12770015001297]],[[-0.099829740822315,-0.0033543249592185,-0.26363334059715],[0.017585633322597,-0.12586818635464,0.013459181413054],[-0.034277990460396,-0.040660131722689,0.0054235118441284]],[[-0.098300464451313,0.0065138111822307,-0.016751166433096],[0.073010750114918,0.066972032189369,-0.021697338670492],[-0.032448310405016,-0.22911290824413,-0.068314224481583]],[[-0.044300768524408,0.024677373468876,0.20514991879463],[-9.1908732429147e-06,-0.011911366134882,-0.11023055762053],[-0.015340124256909,0.065272212028503,0.067732945084572]],[[0.15280371904373,0.11489759385586,0.06666038185358],[-0.14391672611237,0.11052647233009,0.046617832034826],[-0.058033756911755,-0.21783953905106,-0.0025403057225049]],[[-0.090759858489037,0.13468325138092,-0.058847200125456],[0.03057905472815,0.074738636612892,0.21979594230652],[-0.23597368597984,-0.030894393101335,0.098098590970039]],[[0.0034942657221109,-0.086294904351234,-0.038114167749882],[0.13166366517544,0.0097560919821262,0.008378709666431],[0.035855818539858,-0.00058175344020128,0.05017002671957]],[[0.069757215678692,0.036320179700851,-0.051752038300037],[-0.028682233765721,-0.056494224816561,0.020280208438635],[0.0004620679828804,-0.11128841340542,0.099618047475815]],[[0.06673239916563,0.047232381999493,-0.05797903239727],[-0.00018891452054959,-0.021803887560964,-0.067193776369095],[-0.14466965198517,0.073179662227631,-0.03419728577137]],[[-0.038608368486166,0.083886541426182,0.23113697767258],[-0.051406089216471,-0.040853276848793,-0.083593048155308],[-0.039563499391079,-0.025317454710603,-0.011688722297549]],[[0.03240729495883,-0.094658464193344,0.21415078639984],[-0.035222042351961,-0.22303314507008,-0.03129393234849],[-0.071737229824066,-0.063221395015717,0.14284969866276]],[[-0.10352881252766,-0.1256458312273,-0.087270990014076],[0.087684296071529,0.15528264641762,0.024246031418443],[-0.25434592366219,-0.081224881112576,0.1143686324358]],[[-0.029772404581308,-0.20139150321484,-0.015231201425195],[0.018721910193563,-0.001540937111713,0.10019910335541],[-0.10263780504465,-0.071713156998158,-0.21112465858459]],[[-0.30702945590019,-0.24373988807201,-0.16106727719307],[-0.010629775002599,-0.02811685949564,0.059464361518621],[0.0043063410557806,-0.071433514356613,0.018125645816326]],[[-0.011486707255244,-0.0858199223876,0.17346762120724],[-0.078944504261017,0.014869263395667,0.10355658829212],[-0.11005456000566,0.066061183810234,0.0418003462255]],[[-0.093464627861977,0.011787974275649,-0.019871702417731],[-0.082459315657616,-0.16517356038094,-0.035650596022606],[0.012107326649129,0.01420131791383,0.057738691568375]],[[-0.079501733183861,0.10776740312576,-0.06704767793417],[0.013785796239972,-0.022737964987755,0.073375076055527],[-0.035059925168753,-0.14359726011753,-0.058991745114326]],[[-0.088705539703369,0.050060495734215,-0.081503972411156],[-0.042471516877413,-0.012657056562603,0.061720196157694],[0.03397012501955,0.067975156009197,0.081744015216827]],[[0.12655957043171,0.1650762706995,0.08829240500927],[-0.079941868782043,-0.10798465460539,0.13170239329338],[-0.0025776375550777,0.031295329332352,0.085731491446495]],[[0.020005479454994,0.070638872683048,0.011320490390062],[0.046736348420382,0.00747075304389,-0.031993709504604],[-0.017261199653149,-0.048128791153431,-0.060821454972029]],[[-0.0042307376861572,-0.016183005645871,0.12162624299526],[-0.084109082818031,-0.19214762747288,-0.064394220709801],[-0.017941663041711,0.075691267848015,0.15572340786457]],[[-0.03795999661088,-0.0065263831056654,0.050207231193781],[-0.090859539806843,-0.015625720843673,-0.030182939022779],[0.088438302278519,0.08692829310894,0.050064831972122]],[[-0.029955545440316,0.034044280648232,-0.10813190788031],[-0.016637060791254,0.027307165786624,0.15514247119427],[0.051279366016388,-0.039122097194195,-0.029279908165336]],[[-0.16402550041676,0.075135841965675,-0.016293646767735],[-0.10124348104,0.036231830716133,-0.017389437183738],[0.013647271320224,0.03311550989747,-0.022876463830471]],[[-0.076153621077538,-0.058303993195295,0.1747030466795],[-0.11321800202131,-0.1488623470068,-0.079148471355438],[0.1265831142664,0.011017448268831,-0.099196285009384]],[[-0.096045486629009,0.010959579609334,0.0068427077494562],[-0.12966747581959,-0.066347144544125,0.027272777631879],[0.080275490880013,-0.023414798080921,-0.075180105865002]],[[-0.061131462454796,-0.10078489780426,0.089479245245457],[0.1362317353487,-0.11966649442911,-0.19707684218884],[0.14867503941059,0.062018483877182,0.031063748523593]],[[0.086360238492489,-0.013005224987864,0.3389396071434],[-0.090883858501911,-0.29643478989601,-0.1310049444437],[-0.050427928566933,-0.099252611398697,-0.049538645893335]],[[-0.14199744164944,-0.065297082066536,0.010879702866077],[0.1114122197032,0.04617278277874,0.060084171593189],[-0.21162708103657,-0.06230042502284,0.0092949671670794]],[[0.048004440963268,-0.042298290878534,0.071465365588665],[-0.034870129078627,-0.048586461693048,-0.031197601929307],[-0.0047419629991055,0.1085417419672,-0.048513792455196]],[[-0.12628069519997,0.16404934227467,0.0076305912807584],[-0.071106366813183,0.0029292991384864,-0.056571584194899],[-0.012020924128592,-0.074174135923386,-0.18937021493912]],[[-0.10666916519403,0.016323439776897,0.2160262465477],[0.10054191946983,-0.023374449461699,-0.01132498960942],[0.082071013748646,0.071951076388359,0.10206961631775]],[[-0.18766058981419,-0.15384718775749,-0.2864798605442],[0.1630711555481,0.082096479833126,0.082110375165939],[0.12265527993441,0.10983370989561,-0.013416077941656]],[[-0.055698040872812,0.041474614292383,-0.010020229034126],[0.12939739227295,-0.10621204227209,0.0079444488510489],[-0.0063963704742491,-0.042243782430887,-0.010258199647069]],[[0.061252783983946,0.045679699629545,0.076377362012863],[0.013693817891181,0.05220715329051,-0.17637111246586],[0.065301798284054,0.023797020316124,0.16969971358776]],[[-0.097289964556694,-0.16407759487629,-0.19310066103935],[-0.011383928358555,-0.0024284014943987,0.30514535307884],[-0.072624176740646,-0.04628824442625,-0.049426030367613]],[[-0.099406756460667,-0.1646973490715,-0.073851734399796],[-0.0021317868959159,-0.067010216414928,0.13884106278419],[-0.082423150539398,-0.11979437619448,-0.11767372488976]],[[0.096535354852676,0.037661742419004,0.15678951144218],[-0.056510969996452,0.039969652891159,-0.044636905193329],[-0.13912272453308,0.086125150322914,0.099935494363308]],[[-0.061669252812862,-0.13211360573769,-0.095196388661861],[0.2045433819294,0.067300111055374,0.14487864077091],[0.097470745444298,-0.16510383784771,-0.11251133680344]],[[-0.03647880628705,0.012563616037369,0.096930295228958],[-0.062814369797707,-0.079643324017525,-0.19793626666069],[0.021565668284893,0.10228142887354,0.14198498427868]],[[-0.11554793268442,0.022977078333497,-0.033766195178032],[-0.031665373593569,0.055470149964094,0.098044753074646],[0.0051521896384656,0.0056153298355639,-0.10515947639942]],[[0.04578797519207,-0.13239565491676,-0.081205114722252],[0.048941783607006,0.060146696865559,0.021344847977161],[-0.039963994175196,-0.065057881176472,-0.016489315778017]],[[-0.022239238023758,-0.031125340610743,0.092961080372334],[-0.18355238437653,0.022346893325448,-0.049052406102419],[-0.053870014846325,-0.048145424574614,-0.039105046540499]],[[0.0072175152599812,0.020342590287328,0.21885202825069],[-0.16754701733589,-0.015134376473725,-0.084931619465351],[0.041613455861807,-0.014042852446437,-0.1186076104641]],[[-0.039771612733603,0.037922825664282,-0.010893744416535],[-0.048298291862011,0.086667880415916,0.026241365820169],[-0.11710465699434,-0.02138739451766,-0.044638250023127]],[[-0.13000774383545,-0.049969419836998,-0.15312057733536],[0.21413733065128,0.014628138393164,0.042283676564693],[-0.051026798784733,0.02267655171454,-0.0056894202716649]],[[0.10478609055281,-0.022095985710621,-0.26557368040085],[-0.15600219368935,-0.14978951215744,-0.055891089141369],[-0.041664566844702,-0.0091693159192801,-0.038508236408234]],[[0.14590907096863,-0.0013244157889858,-0.029747553169727],[-0.12703388929367,0.13810455799103,0.034530639648438],[-0.27239838242531,0.089432306587696,0.02493828907609]],[[0.058939959853888,-0.022087858989835,-0.065601319074631],[-0.16081663966179,0.031602021306753,0.069950565695763],[0.037592113018036,0.0140441050753,-0.1580666154623]],[[-0.19125767052174,-0.084653876721859,0.054397515952587],[0.057468678802252,0.049423813819885,0.038692377507687],[0.033433955162764,-0.087578937411308,0.046489801257849]]],[[[-0.11790169030428,0.0065729431807995,0.042441066354513],[-0.028197512030602,0.07317266613245,0.0073549840599298],[-0.056675970554352,-0.027183929458261,0.023826139047742]],[[0.16391880810261,-0.030847536399961,0.090111672878265],[0.1543645709753,0.055127415806055,0.048751533031464],[0.074845634400845,0.016873566433787,0.044844303280115]],[[0.058655623346567,0.014766504988074,0.089519456028938],[0.057225275784731,-0.075788006186485,-0.043904721736908],[-0.15323610603809,-0.080174490809441,0.10830350965261]],[[-0.095438666641712,0.008414326235652,0.029471639543772],[0.11234784126282,-0.010961476713419,-0.046706352382898],[0.12285337597132,-0.08262987434864,-0.033378072082996]],[[-0.056856110692024,0.12930707633495,-0.10966333001852],[-0.062666572630405,0.13605983555317,-0.038248859345913],[0.12831255793571,-0.0011147488839924,0.0055942181497812]],[[0.022616628557444,-0.073211900889874,-0.040474615991116],[0.10830605775118,-0.01721384562552,-0.14861141145229],[-0.0093678599223495,-0.022541765123606,-0.17754769325256]],[[0.0013945415848866,0.097817048430443,-0.12751334905624],[-0.017756018787622,-0.047477684915066,-0.083576671779156],[-0.097435370087624,0.066277489066124,0.055545043200254]],[[-0.093664906919003,-0.039247836917639,-0.0028653633780777],[-0.091341160237789,-0.014696604572237,-0.14134669303894],[0.0054450985044241,-0.036549542099237,-0.024196527898312]],[[-0.07345924526453,0.0088199358433485,0.009623016230762],[0.032235529273748,0.14118866622448,-0.0060624978505075],[-0.039382394403219,0.0099832471460104,-0.060350883752108]],[[-0.13677218556404,-0.11057113111019,-0.25170704722404],[-0.06139075383544,-0.026828998699784,-0.018256550654769],[-0.0098651293665171,0.05033303424716,-0.16578041017056]],[[0.010914451442659,0.044628467410803,-0.14058390259743],[0.028860978782177,-0.037052609026432,-0.016833458095789],[-0.063287310302258,-0.22514724731445,-0.087183594703674]],[[0.039044909179211,-0.10311786085367,-0.059827733784914],[0.092811055481434,0.021608643233776,0.028630036860704],[-0.038406081497669,-0.028026489540935,-0.093828529119492]],[[-0.04143312945962,0.024106940254569,-0.010904565453529],[0.043158292770386,0.023236628621817,-0.041508037596941],[-0.081336975097656,0.090989097952843,-0.052636675536633]],[[0.082114398479462,0.097067952156067,0.14785765111446],[0.082407020032406,0.11529401689768,0.0016954283928499],[-0.00179670273792,-0.017445540055633,0.10030161589384]],[[0.094975255429745,-0.0054516457021236,0.016323821619153],[0.040130954235792,-0.023623181506991,-0.1116534024477],[0.038370877504349,-0.078268356621265,0.023403519764543]],[[0.06070526316762,0.045393977314234,-0.10943917930126],[-0.0020409752614796,-0.022644311189651,-0.19066207110882],[-0.035828180611134,-0.14683684706688,-0.14229503273964]],[[-0.0080089624971151,0.099474161863327,-0.045750457793474],[-0.00512061920017,0.055312238633633,-0.076220147311687],[-0.038030657917261,0.084149979054928,0.24619990587234]],[[0.067372903227806,0.07255470007658,-0.080668345093727],[-0.12370103597641,0.0243767388165,-0.035066332668066],[0.065318763256073,0.21103963255882,0.14298664033413]],[[0.091301150619984,-0.0084571000188589,-0.072698801755905],[0.18881860375404,0.12737894058228,-0.031598839908838],[-0.014073791913688,0.011697466485202,0.041764948517084]],[[0.10425220429897,0.055628594011068,-0.018989821895957],[-0.0035779091995209,-0.11245264858007,0.070245496928692],[0.13632546365261,-0.014502155594528,-0.13242934644222]],[[0.054984960705042,0.015664516016841,0.039437510073185],[-0.050900869071484,-0.11961200833321,0.089955493807793],[-0.0084759723395109,-0.084879651665688,0.16097059845924]],[[0.015957714989781,-0.11912453919649,0.18359479308128],[0.0508838519454,-0.092875234782696,-0.12296628206968],[0.086124338209629,-0.030405348166823,-0.14924596250057]],[[0.11531312018633,-0.019255010411143,-0.038573618978262],[0.03445902466774,0.096486397087574,0.064658954739571],[0.0067653432488441,-0.023123620077968,-0.17189291119576]],[[0.073818601667881,-0.13781231641769,-0.17215870320797],[0.015281627885997,-0.02845174819231,-0.066614076495171],[-0.005379359703511,0.020781844854355,-0.0087242107838392]],[[0.20354424417019,0.069507248699665,-0.12035639584064],[0.036844335496426,-0.017941685393453,-0.0084229204803705],[0.058604683727026,0.16949489712715,0.038541328161955]],[[0.06577131152153,-0.0471674464643,-0.151442527771],[0.023202460259199,0.076289549469948,-0.052491892129183],[-0.033990394324064,-0.11679593473673,0.0039316830225289]],[[0.053498424589634,-0.056640740483999,-0.096860192716122],[0.078267693519592,-0.09237227588892,-0.025355344638228],[0.11161639541388,0.016807146370411,0.035134173929691]],[[-0.16769763827324,-0.075791269540787,0.057355549186468],[-0.15717349946499,-0.23259615898132,0.038283497095108],[0.012823020108044,-0.061862923204899,0.0057557984255254]],[[-0.02318605594337,-0.05804081261158,-0.02892492339015],[0.17419196665287,0.10816340148449,-0.079201363027096],[0.10687633603811,0.10101867467165,-0.063088215887547]],[[0.075012840330601,-0.025591529905796,-0.024236360564828],[0.018849948421121,0.081733144819736,-0.020321346819401],[0.1562677025795,0.064110316336155,-0.051321800798178]],[[0.085233524441719,0.068782113492489,0.043277177959681],[-0.060922011733055,0.16273568570614,0.12055072933435],[-0.13140967488289,0.1347948461771,0.0081147002056241]],[[-0.011335019022226,-0.055381640791893,0.026584019884467],[0.041227083653212,0.013324654661119,0.072872556746006],[-0.0076055722311139,0.011636352166533,0.10273054987192]],[[0.022870644927025,0.062153611332178,0.10777680575848],[-0.02683581598103,-0.0054247481748462,-0.094628319144249],[0.00079739681677893,-0.016846088692546,-0.0050131604075432]],[[0.06297892332077,-0.0036287023685873,0.12949587404728],[0.014699601568282,0.16233775019646,0.0089416159316897],[0.052033271640539,0.097974985837936,0.14173386991024]],[[-0.012504923157394,-0.083718366920948,-0.086048446595669],[0.072588674724102,-0.16485987603664,-0.11326864361763],[-0.063608683645725,-0.044982053339481,-0.046020045876503]],[[-0.05433888733387,0.026084756478667,-0.13858860731125],[0.10936891287565,-0.00016351261001546,-0.15269866585732],[0.1114329174161,0.10304959118366,-0.087791055440903]],[[-0.062039021402597,-0.0744998306036,0.0060903956182301],[0.10506951808929,-0.097050786018372,0.035618335008621],[-0.019652307033539,-0.064502142369747,-0.08251778036356]],[[-0.17323878407478,0.051815662533045,-0.067923046648502],[-0.11797764897346,-0.052597593516111,-0.12270136922598],[-0.11631318181753,0.12825380265713,0.04168913885951]],[[0.11210510879755,0.079332679510117,0.097610637545586],[0.045095216482878,0.086851865053177,-0.041406363248825],[0.031744070351124,-0.19967731833458,-0.086633525788784]],[[0.069521814584732,0.030742086470127,-0.0024764749687165],[-0.038982674479485,-0.086567103862762,-0.11802047491074],[-0.061314016580582,-0.067120634019375,-0.06014708429575]],[[0.01909208856523,0.057344317436218,0.046248402446508],[0.063900612294674,-0.038728307932615,0.014045019634068],[0.055770136415958,-0.049433246254921,0.10283007472754]],[[0.012087025679648,0.017294783145189,0.088093109428883],[0.042260218411684,0.0109593719244,-0.021230671554804],[-0.03981202095747,0.13704457879066,-0.14018654823303]],[[0.0080796414986253,0.04276080429554,0.038682881742716],[0.0039219516329467,-0.0029465060215443,-0.02736640907824],[-0.017139114439487,-0.031500704586506,-0.069807462394238]],[[-0.063457988202572,-0.15899106860161,-0.079162612557411],[-0.07963339984417,-0.0029633792582899,0.015796752646565],[-0.040780398994684,-0.066565364599228,-0.0056325634941459]],[[0.024707427248359,0.068198069930077,-0.035873811691999],[-0.078852824866772,0.11790059506893,-0.11423908919096],[0.024656675755978,0.028746718540788,0.16010482609272]],[[0.045872926712036,-0.090212479233742,0.13156495988369],[0.10644694417715,-0.11914967745543,-0.1286014020443],[0.044425286352634,-0.070332944393158,-0.09912721067667]],[[-0.069525331258774,-0.012958413921297,-0.076168984174728],[-0.0843510851264,-0.0089198127388954,0.02950731292367],[0.14185111224651,0.00077099091140553,-0.04350395873189]],[[-0.039082270115614,-0.040150195360184,0.027778713032603],[-0.014229414984584,0.011799690313637,-0.0068482239730656],[0.0233871974051,0.033680338412523,0.01258707139641]],[[-0.058276731520891,-0.05276707559824,0.08387179672718],[0.039873570203781,0.12246029824018,-0.015552294440567],[-0.24737113714218,0.089906975626945,0.031239675357938]],[[0.11245114356279,0.13076335191727,-0.0001409273390891],[-0.059473566710949,0.051432147622108,0.064579211175442],[0.050876010209322,0.043763801455498,-0.048739224672318]],[[0.032646186649799,0.033857215195894,0.03909607976675],[0.038127902895212,-0.0845562890172,-0.023234829306602],[0.13723094761372,-0.041715290397406,-0.070839732885361]],[[-0.10395196080208,-0.11656393110752,-0.11256377398968],[0.18787254393101,0.067355588078499,-0.059298522770405],[0.044755201786757,-0.070666238665581,-0.12218394875526]],[[-0.069675244390965,0.013315859250724,0.040117878466845],[0.03501633182168,0.054470159113407,-0.10269378125668],[-0.099329523742199,-0.033189795911312,0.046283077448606]],[[0.02376358769834,-0.10739973932505,0.00056573981419206],[0.13606652617455,-0.1067563071847,0.016977371647954],[-0.050156619399786,-0.21668836474419,0.0039237746968865]],[[-0.077342718839645,-0.10266524553299,0.073499664664268],[-0.15488961338997,-0.07221332192421,0.019316550344229],[-0.11220951378345,0.0299167111516,-0.12254695594311]],[[0.085716597735882,0.013488233089447,0.061105780303478],[-0.017218707129359,-0.10313316434622,-0.0028510089032352],[0.016912668943405,-0.042937062680721,0.048111572861671]],[[-0.06095826625824,-0.05455656349659,0.020848907530308],[0.051903158426285,-0.073077343404293,-0.0026979034300894],[0.080459095537663,-0.16277930140495,-0.17661288380623]],[[-0.12919934093952,0.017916159704328,0.18812496960163],[0.094883978366852,0.018474860116839,0.13434420526028],[0.093640223145485,-0.0027757880743593,-0.043661814182997]],[[0.16634006798267,0.10414392501116,-0.075018882751465],[0.0045961742289364,0.031424757093191,-0.0057343230582774],[0.090394072234631,-0.086868047714233,-0.13448105752468]],[[-0.0052974778227508,-0.056953180581331,-0.05094925686717],[0.02771476842463,-0.019234765321016,0.064722552895546],[0.086924821138382,0.010439869016409,-0.080546483397484]],[[-0.047083169221878,-0.0093950517475605,-0.016207257285714],[0.023179445415735,0.025794472545385,0.10907502472401],[0.042544189840555,0.069402299821377,-0.20447468757629]],[[0.10359760373831,-0.068367287516594,-0.16010569036007],[0.062616959214211,0.0053297933191061,0.12840247154236],[-0.045163422822952,0.065784350037575,-0.062461636960506]],[[0.1327681094408,0.091496393084526,-0.04679811373353],[-0.13365904986858,-0.033481810241938,-0.025322185829282],[0.013554920442402,-0.04513880610466,0.033166538923979]],[[-0.1577840000391,-0.11581142991781,-0.10811068117619],[0.065303310751915,-0.0093008428812027,-0.085706152021885],[-0.044980477541685,-0.019175132736564,0.11747673153877]]],[[[0.027711547911167,0.010527504608035,0.065882928669453],[-0.072649829089642,-0.0054927789606154,0.086846552789211],[0.022767810150981,0.087951093912125,0.011972789652646]],[[0.0069431471638381,0.23465144634247,0.036101993173361],[-0.22679105401039,-0.03086712397635,-0.050095219165087],[0.14278165996075,0.05962648242712,-0.031986940652132]],[[0.095375314354897,0.10706708580256,-0.22269913554192],[0.085271514952183,0.088879376649857,-0.19200758635998],[-0.054259739816189,-0.011715905740857,0.095133699476719]],[[0.1226898804307,0.010879683308303,0.1069822832942],[-0.064462274312973,-0.07666252553463,0.0066718817688525],[-0.21305513381958,0.0077928998507559,0.07438662648201]],[[-0.12596103549004,0.098168641328812,0.00055193377193063],[-0.12717728316784,-0.048679009079933,0.14071796834469],[-0.0066592963412404,0.040748402476311,-0.034177090972662]],[[0.015398491173983,0.013010065071285,-0.032666087150574],[-0.14448541402817,-0.12543196976185,-0.010698983445764],[0.072514772415161,-0.042067874222994,0.054109640419483]],[[0.068105392158031,0.052482966333628,-0.11718656122684],[-0.0078044915571809,0.079577140510082,0.12571257352829],[0.084510982036591,-0.054845858365297,-0.026422033086419]],[[-0.10070109367371,-0.043037015944719,0.055050566792488],[-0.087377429008484,0.025625756010413,0.025181602686644],[0.13217124342918,0.011241489090025,-0.069148451089859]],[[-0.059778582304716,-0.031566593796015,-0.027352523058653],[-0.0065527511760592,-0.041623212397099,0.093530848622322],[0.052796196192503,-0.012365264818072,-0.0047886725515127]],[[0.053964823484421,0.021137367933989,0.16257724165916],[-0.19242753088474,-0.090943358838558,0.065991595387459],[-0.079469114542007,0.1745482981205,0.043111495673656]],[[0.038306001573801,-0.047767773270607,0.021791070699692],[-0.028906442224979,-0.11459147185087,-0.0099710319191217],[-0.11343819648027,-0.0318763256073,0.27388736605644]],[[-0.040361922234297,-0.19379988312721,-0.070037841796875],[-0.18612295389175,-0.065712355077267,0.16606763005257],[0.053248256444931,-0.024561733007431,0.14673094451427]],[[-0.22190791368484,-0.10724624246359,0.12793582677841],[-0.10506272315979,0.118332862854,0.10350440442562],[0.14788082242012,-0.01891366392374,0.101218752563]],[[0.0041542882099748,-0.016850179061294,-0.0020667093340307],[-0.037315804511309,0.048758488148451,-0.056905306875706],[0.098462603986263,0.073293805122375,0.063032850623131]],[[-0.014243234880269,-0.035188820213079,-0.038278978317976],[-0.092711068689823,0.051475409418344,0.077823281288147],[-0.11148860305548,0.093687877058983,0.043612409383059]],[[-0.24140806496143,-0.20192800462246,-0.011896635405719],[-0.13295759260654,-0.1002893447876,0.18042975664139],[0.024323703721166,0.060570605099201,0.1101885586977]],[[0.027008848264813,0.033287942409515,-0.008235115557909],[0.076200075447559,0.03657341003418,0.034438032656908],[0.037758246064186,-0.049086760729551,0.036098875105381]],[[-0.037941422313452,0.13343477249146,0.024345468729734],[-0.1149318292737,-0.065839327871799,-0.049756933003664],[-0.08092337846756,0.068606413900852,0.048707652837038]],[[0.009753568097949,0.12439315021038,0.016699900850654],[0.045922130346298,-0.078820280730724,0.036385394632816],[-0.13768893480301,0.01572197675705,-0.20359355211258]],[[-0.078530021011829,0.16560404002666,0.095013469457626],[0.091557040810585,0.03248156234622,0.07838099449873],[-0.2437959164381,0.014078901149333,0.092362590134144]],[[-0.14939829707146,-0.056118924170732,-0.042732201516628],[-0.035132836550474,-0.14839679002762,-0.20396457612514],[0.12646754086018,-0.14435270428658,-0.11948273330927]],[[-0.0671451613307,0.064855016767979,0.025060504674911],[0.10922630876303,0.023495845496655,-0.05072233453393],[0.2761652469635,0.023799089714885,0.016756257042289]],[[0.034968107938766,-0.14178390800953,-0.012865168042481],[-0.079770602285862,0.052143659442663,-0.0544886700809],[-0.070373371243477,-0.083015695214272,0.00076185294892639]],[[-0.26692575216293,-0.25872811675072,0.15599769353867],[0.058866441249847,-0.00083017296856269,0.066894859075546],[-0.092212222516537,0.038280416280031,0.18385107815266]],[[-0.014817580580711,0.028684800490737,-0.050841078162193],[-0.0023106010630727,0.14148792624474,0.26298823952675],[0.10498314350843,-0.12426310777664,0.0070269075222313]],[[-0.18018805980682,-0.16974429786205,-0.060297034680843],[-0.065563604235649,0.009881048463285,-0.11085034161806],[-0.098736494779587,0.087792985141277,0.018412068486214]],[[-0.3580769598484,-0.18353740870953,-0.079803630709648],[-0.11307204514742,-0.017580384388566,0.080976076424122],[-0.064063459634781,-0.016316955909133,0.20318435132504]],[[-0.16309349238873,-0.0011111113708466,-0.11825814843178],[0.066591143608093,0.058439966291189,-0.17018586397171],[-0.087630085647106,0.08548741042614,-0.016512775793672]],[[-0.077881947159767,0.013979321345687,-0.15591308474541],[0.043661940842867,-0.0029099509119987,0.0022141288500279],[0.18666334450245,-0.041420307010412,-0.054590798914433]],[[-0.16255180537701,-0.29653137922287,-0.078563004732132],[-0.13478066027164,-0.097653478384018,0.010301552712917],[-0.17130392789841,0.041024975478649,0.058590158820152]],[[-0.17884516716003,0.025244556367397,0.054398417472839],[-0.010718525387347,-0.022011272609234,-0.028972009196877],[0.03054921515286,-0.0063292901031673,0.065116994082928]],[[0.093681804835796,-0.16074649989605,-0.087036222219467],[0.078336916863918,-0.042678240686655,-0.054673809558153],[0.0083327386528254,-0.090724714100361,-0.14726063609123]],[[-0.063179060816765,-0.079180888831615,0.087982438504696],[-0.045702040195465,-0.073542848229408,0.064551658928394],[0.12281569838524,0.10514017939568,-0.0096209226176143]],[[0.10741214454174,-0.035281099379063,0.05107731372118],[-0.075598686933517,-0.0050274156965315,-0.0062354290857911],[-0.082249499857426,0.028635295107961,-0.10777640342712]],[[0.057035911828279,0.0198930259794,0.13444729149342],[-0.084207944571972,-0.011627361178398,0.044377170503139],[-0.097582139074802,-0.048524960875511,-0.014194819144905]],[[-0.18155373632908,-0.0066432408057153,0.029197942465544],[-0.11691348254681,-0.20775151252747,-0.012240530923009],[-0.15679332613945,-0.0038043651729822,0.039878588169813]],[[-0.056694842875004,-0.16295953094959,-0.069641590118408],[0.0798479616642,0.026413146406412,-0.10880389809608],[0.16305753588676,-0.023740042001009,0.12444406747818]],[[0.11227494478226,0.058164268732071,-0.10678534954786],[-0.080600313842297,0.10600632429123,0.12981277704239],[-0.012586079537868,-0.10070031881332,0.077344194054604]],[[0.10377689450979,0.07508496940136,-0.071802951395512],[0.049788035452366,0.098150365054607,-0.10213026404381],[-0.059699982404709,-0.19815500080585,-0.058361876755953]],[[-0.075760714709759,-0.24536795914173,-0.10663285106421],[-0.0039828890003264,-0.049234449863434,0.046625506132841],[0.011526256799698,-0.011694125831127,-0.0088233510032296]],[[-0.21973726153374,-0.021476276218891,0.037896737456322],[-0.036971639841795,0.036082554608583,0.11056157201529],[0.025285558775067,-0.15338085591793,-0.062279406934977]],[[-0.069122239947319,0.0060572712682188,0.029564689844847],[-0.26127937436104,-0.0068053007125854,-0.0024175180587918],[-0.18718612194061,0.18142174184322,0.10630315542221]],[[-0.10096587240696,0.03467258810997,0.041157890111208],[0.042441170662642,-0.016569407656789,-0.073127254843712],[-0.03484632819891,-0.036596905440092,0.016697065904737]],[[-0.0053658946417272,0.007656536065042,-0.044999878853559],[0.025965357199311,-0.040619511157274,0.060276214033365],[0.056748133152723,-0.00091331038856879,-0.094740658998489]],[[0.073104806244373,-0.040762286633253,0.034324370324612],[-0.027462104335427,-0.18104287981987,-0.047150313854218],[0.10563957691193,0.031258352100849,-0.076674237847328]],[[-0.1740775257349,-0.12053620815277,-0.041939675807953],[-0.026756996288896,-0.11002529412508,-0.042877428233624],[-0.001933770487085,-0.056820221245289,0.15906342864037]],[[-0.0067407744936645,-0.04622807726264,0.079216435551643],[0.073061145842075,-0.13900750875473,0.14087335765362],[0.025721011683345,0.084052249789238,-0.06969415396452]],[[-0.012831112369895,-0.046427674591541,-0.032534621655941],[-0.09135577082634,-0.053513556718826,0.068022802472115],[-0.0021269358694553,-0.027115566655993,0.12886384129524]],[[0.099095672369003,-0.07944280654192,-0.13447792828083],[0.071774542331696,-0.0228371322155,-0.05530534312129],[0.047961853444576,0.017913611605763,0.062328316271305]],[[-0.096061795949936,-0.0060049016028643,0.002430792665109],[-0.0084649669006467,0.015379712916911,0.022152723744512],[-0.03001855686307,-0.11256681382656,0.067917734384537]],[[-0.12210831791162,0.037186998873949,-0.074183039367199],[-0.2209307551384,-0.010361938737333,-0.084968037903309],[-0.33638340234756,0.077449299395084,0.21436634659767]],[[0.047565530985594,0.17455971240997,0.075986459851265],[-0.15014204382896,-0.20189671218395,0.0065354965627193],[-0.047640074044466,0.0096170073375106,-0.043058473616838]],[[-0.010158754885197,-0.094185873866081,0.047426547855139],[0.11961071193218,0.077975563704967,-0.02202283591032],[0.17191657423973,0.10554584860802,0.046999003738165]],[[0.012437516823411,0.041882663965225,0.085780009627342],[0.078525900840759,0.081502415239811,-0.11039121448994],[0.12086503952742,0.020740278065205,0.022519994527102]],[[0.003761867294088,0.12830795347691,0.057760134339333],[0.061096150428057,0.018773686140776,0.063951037824154],[0.04782085493207,0.043865393847227,0.07875932008028]],[[-0.13357101380825,0.015396813862026,0.020660515874624],[0.16178354620934,-0.16892923414707,-0.15665458142757],[-0.028232861310244,0.094768278300762,0.12607160210609]],[[-0.072863057255745,0.029935076832771,0.059258334338665],[0.0002203074254794,-0.019734362140298,0.12785543501377],[-0.010270188562572,-0.066870905458927,-0.12412448972464]],[[-0.052503108978271,0.009005387313664,-0.088557906448841],[0.06158583983779,0.05153014883399,-0.046030201017857],[0.069938905537128,-0.0087438337504864,-0.078972712159157]],[[0.10245825350285,-0.069752037525177,-0.24396827816963],[-0.10283328592777,-0.072137199342251,0.015341797843575],[-0.051738828420639,0.11521153151989,-0.072115749120712]],[[-0.24835093319416,-0.016038581728935,0.078609883785248],[-0.014305558055639,-0.10357651114464,-0.063054919242859],[0.029221555218101,-0.079228259623051,0.12287413328886]],[[-0.10873576253653,-0.048639986664057,0.014706949703395],[-0.050958693027496,0.0058118542656302,0.062148340046406],[0.059771981090307,-0.14006043970585,-0.13579919934273]],[[-0.035836771130562,0.018286610022187,0.16411601006985],[-0.10868509858847,-0.041911259293556,-0.035686407238245],[0.02166498824954,0.057906128466129,0.057122681289911]],[[0.0084911789745092,-0.0025710926856846,-0.02069347165525],[-0.047411289066076,-0.057155169546604,0.051631320267916],[-0.059924561530352,0.01694137044251,0.025095697492361]],[[0.04560386762023,-0.090488888323307,0.16081829369068],[-0.05203003436327,0.077506676316261,0.10600470751524],[0.0324692055583,0.042739152908325,0.12979276478291]]],[[[0.015731455758214,0.14133481681347,0.091456688940525],[-0.20922282338142,-0.065148182213306,0.01521831844002],[-0.09735144674778,0.2619041800499,0.066416405141354]],[[0.022219875827432,0.15474204719067,-0.00086647842545062],[-0.035835791379213,0.026693062856793,-0.072378166019917],[0.14775410294533,-0.09571810811758,0.10120441019535]],[[-0.086044155061245,0.082765385508537,-0.13958509266376],[0.0020502968691289,0.064109049737453,0.11816061288118],[0.081320948898792,-0.11190997809172,-0.044319793581963]],[[-0.029140185564756,0.024947239086032,-0.075778521597385],[-0.017243154346943,0.080809526145458,-0.10877326130867],[-0.060889430344105,-0.055713344365358,0.034698236733675]],[[0.14671447873116,-0.084700018167496,0.083177395164967],[-0.015046102926135,0.11698086559772,0.017271028831601],[-0.081344276666641,-0.037943977862597,0.0060395412147045]],[[-0.13243398070335,-0.011077545583248,-0.053426325321198],[-0.090488031506538,0.046745080500841,-0.032594863325357],[-0.031551044434309,-0.10171641409397,-0.082963190972805]],[[0.056356661021709,0.14547845721245,0.027707669883966],[0.15047541260719,-0.039221864193678,0.084188543260098],[-0.088994637131691,0.031826559454203,0.095032624900341]],[[-0.0061689661815763,-0.029415441676974,-0.056288626044989],[0.065204851329327,0.088447205722332,0.033554814755917],[0.099841885268688,-0.008235995657742,-0.086253456771374]],[[0.057198394089937,-0.075775370001793,-0.070759497582912],[0.060501500964165,-0.042459275573492,-0.02636987529695],[-0.042848397046328,0.11954144388437,-0.026209961622953]],[[0.0043488088995218,-0.095536179840565,0.023178108036518],[0.030412374064326,-0.028713881969452,0.01945460960269],[0.06571502238512,0.1535562723875,-0.0017145145684481]],[[-0.011032554320991,0.018931396305561,0.094272099435329],[0.024109099060297,-0.085539467632771,-0.042209710925817],[-0.046235084533691,0.010228519327939,0.079012215137482]],[[0.016527730971575,-0.13780443370342,-0.2341709882021],[0.11980599910021,-0.18049411475658,-0.0096576502546668],[0.1720318198204,-0.092959962785244,-0.0060696229338646]],[[0.0041493084281683,-0.067831762135029,-0.11836690455675],[-0.12212038785219,-0.077005639672279,0.023744175210595],[0.092555478215218,-0.0042576300911605,-0.089711487293243]],[[0.23707422614098,-0.1401589512825,-0.016388058662415],[0.0006131487316452,-0.005014116410166,0.081673696637154],[-0.063680708408356,-0.02652376703918,-0.079126141965389]],[[0.071243114769459,-0.067413352429867,0.0030447961762547],[0.12962485849857,-0.13425700366497,-0.15865088999271],[0.03963378444314,-0.055581286549568,0.046253707259893]],[[-0.019717624410987,0.12982319295406,-0.031217686831951],[0.16653560101986,0.004563030321151,-0.027412932366133],[-0.067291662096977,-0.087173230946064,-0.062974646687508]],[[0.062662415206432,-0.027037069201469,0.13052442669868],[0.14350509643555,0.11822355538607,-0.096970625221729],[-0.0095814084634185,-0.012943346053362,-0.095060437917709]],[[-0.026130355894566,0.022814096882939,-0.057111945003271],[-0.1228382140398,-0.032074458897114,-0.029988000169396],[0.14705300331116,0.026146166026592,0.0097012156620622]],[[-0.0063141575083137,0.10970719903708,0.08116253465414],[0.0033839147072285,-0.10586809366941,0.014305439777672],[0.068061046302319,-0.01115270331502,0.14791993796825]],[[0.1350814551115,0.04973815754056,-0.12050458043814],[-0.067029073834419,-0.060666441917419,0.025427684187889],[0.15099462866783,0.048258081078529,-0.022315846756101]],[[-0.027487335726619,0.0021598013117909,0.10141056776047],[-0.1122665181756,-0.054702199995518,-0.085283830761909],[-0.087354362010956,0.096302188932896,0.0090003861114383]],[[0.083314791321754,0.029990946874022,-0.028473576530814],[-0.11366118490696,-0.044426187872887,0.050036035478115],[0.026820687577128,0.032554313540459,0.14956122636795]],[[-0.010644691996276,-0.07397872209549,0.055462267249823],[-0.04144112020731,-0.096766076982021,-0.1584637761116],[-0.040323022753,-0.065009750425816,-0.035742297768593]],[[0.077332824468613,-0.15709863603115,-0.22468514740467],[-0.050557773560286,-0.07891571521759,0.008258156478405],[-0.11373609304428,0.036578100174665,0.058887980878353]],[[-0.0024405533913523,-0.065279357135296,0.13663196563721],[0.13645076751709,0.18284203112125,-0.016563000157475],[-0.12767554819584,0.10649818181992,-0.2253153026104]],[[0.019107250496745,-0.048799406737089,0.018255010247231],[0.085588552057743,-0.16591562330723,-0.11063379049301],[-0.064733259379864,0.061877951025963,-0.12290014326572]],[[0.058230049908161,0.040460135787725,-0.2766384780407],[0.1105095371604,0.013140483759344,-0.11441081017256],[0.074199214577675,0.016830835491419,-0.095251597464085]],[[0.066743969917297,-0.14985713362694,0.052330531179905],[0.12726280093193,-0.024246605113149,-0.035539321601391],[-0.024309316650033,-0.10085693746805,-0.034457139670849]],[[-0.16049692034721,0.030931452289224,-0.029023192822933],[0.01415316388011,0.059352669864893,0.031424138695002],[-0.047992546111345,0.033111605793238,0.057792343199253]],[[0.16766361892223,-0.010483901947737,-0.10231209546328],[0.10487457364798,0.034353654831648,-0.11134784668684],[0.12830130755901,0.10748209804296,-0.058351293206215]],[[-0.07574088126421,-0.04587210342288,-0.094336308538914],[-0.011875269934535,0.022654490545392,0.079479329288006],[-0.025226814672351,0.032018043100834,0.01093845628202]],[[-0.049604341387749,0.02534612454474,-0.019021542742848],[0.081896230578423,0.097098976373672,0.0462989769876],[0.018131300806999,-0.0042689396068454,0.059030152857304]],[[-0.0019486002856866,0.062939122319221,0.092428490519524],[-0.11219255626202,0.11785086244345,0.109689027071],[-0.01214955560863,-0.0065835504792631,-0.040296576917171]],[[0.18266277015209,0.027353821322322,-0.093834660947323],[0.014173761941493,0.052236467599869,-0.046598467975855],[-0.019545981660485,-0.061291795223951,-0.023603366687894]],[[-0.20363555848598,0.053502321243286,0.23904125392437],[-0.046496085822582,-0.069889448583126,-0.033553250133991],[-0.12008661031723,0.072485566139221,0.084818258881569]],[[-0.11074588447809,-0.054932106286287,-0.10705874860287],[0.077279567718506,-0.1052438467741,-0.1256040930748],[0.12091062217951,-0.044896151870489,0.05186340212822]],[[-0.042574256658554,-0.094419732689857,-0.073560446500778],[0.012280714698136,0.043661128729582,-0.080447889864445],[0.010622875764966,0.13117258250713,0.050938814878464]],[[-0.16757263243198,0.084169633686543,0.16351303458214],[0.010019261389971,0.015463147312403,-0.047311019152403],[0.069831982254982,0.098684519529343,-0.10007558017969]],[[0.17341865599155,-0.099642381072044,-0.036056596785784],[0.093829214572906,-0.05213376507163,0.095556937158108],[-0.081182070076466,-0.016472496092319,0.038676086813211]],[[-0.030869847163558,0.053742669522762,0.015329150483012],[-0.002312621101737,-0.0043101185001433,-0.076672613620758],[0.044557265937328,-0.14253796637058,-0.11610671877861]],[[0.014302369207144,-0.010511734522879,0.12715983390808],[0.02641318552196,-0.011341576464474,0.059475157409906],[-0.1431583315134,-0.032846640795469,0.023899791762233]],[[0.044177740812302,-0.016055658459663,-0.10240985453129],[-0.0068064918741584,-0.098398312926292,-0.28777101635933],[0.12198876589537,-0.023940900340676,-0.11479499936104]],[[0.089501932263374,-0.011344416067004,-0.0037645555566996],[0.027866832911968,-0.044423058629036,0.016051994636655],[0.13714337348938,-0.035520751029253,0.100610665977]],[[-0.014250259846449,-0.0210792850703,0.084543496370316],[-0.10556577891111,0.063344389200211,0.040079046040773],[-0.067083746194839,-0.043421290814877,0.059711188077927]],[[0.23176147043705,-0.0099730519577861,0.1121522039175],[-0.11165424436331,-0.020841648802161,0.052420154213905],[0.053003676235676,0.19667845964432,0.054930850863457]],[[0.080774769186974,-0.063540011644363,-0.37580305337906],[0.010511814616621,0.038397986441851,-0.23285853862762],[0.15938013792038,-0.15525941550732,-0.18085625767708]],[[-0.26455429196358,0.0071440772153437,-0.047707732766867],[0.11953126639128,0.030609311535954,0.092959150671959],[0.12122754007578,0.016817804425955,-0.14190955460072]],[[0.20079998672009,-0.048234350979328,0.082441098988056],[0.014939413405955,-0.08100376278162,0.061992906033993],[0.026678761467338,-0.1603677123785,-0.049040488898754]],[[0.034258048981428,-0.021332625299692,-0.048601064831018],[-0.10271909087896,-0.168079033494,0.056611083447933],[0.13157026469707,0.00024016786483116,0.060362000018358]],[[0.013543975539505,-0.20426285266876,0.054684557020664],[0.10980565100908,-0.12566179037094,0.041224621236324],[0.13381673395634,-0.11131032556295,-0.25815570354462]],[[0.2313586473465,-0.060176514089108,-0.079743973910809],[-0.0017886641435325,0.055629637092352,0.045245990157127],[-0.11287125945091,0.1068377494812,-0.1491444259882]],[[0.041522711515427,-0.025787211954594,0.23223240673542],[0.080509252846241,-0.062238585203886,-0.022055607289076],[-0.060221195220947,-0.05167380720377,-0.049448866397142]],[[-0.099812462925911,-0.08775383234024,0.19188205897808],[0.061379782855511,0.14067961275578,-0.056457124650478],[-0.063221633434296,0.038244687020779,-0.22249460220337]],[[0.091785863041878,0.13174991309643,-0.2469339966774],[-0.02014297991991,0.10133012384176,-0.078733123838902],[0.085412256419659,0.039579045027494,-0.11006498336792]],[[0.085586965084076,-0.10398715734482,0.095894053578377],[-0.0209990888834,-0.27440506219864,-0.014730577357113],[-0.15014369785786,-0.065236546099186,0.025155622512102]],[[0.014827905222774,0.005841476842761,0.11556506156921],[-0.026642126962543,-0.068268746137619,0.034476596862078],[0.056416124105453,-0.097499996423721,0.097950600087643]],[[-0.039309028536081,-0.036410007625818,-0.14834609627724],[-0.13263410329819,0.0062919715419412,0.17085376381874],[0.11279297620058,-0.13137497007847,0.0012532498221844]],[[-0.11694596707821,0.017901256680489,-0.079957246780396],[0.033342320472002,0.06283388286829,0.12196565419436],[-0.034415174275637,-0.065142087638378,-0.0041683842428029]],[[0.066872887313366,0.050805922597647,-0.048760134726763],[-0.12065507471561,0.036417346447706,-0.086218379437923],[0.057962149381638,-0.13649950921535,0.16727039217949]],[[0.12926664948463,-0.00072837324114516,-0.16399531066418],[-0.07450208067894,-0.13336175680161,0.050483778119087],[0.081208221614361,0.02311790548265,-0.0019500141497701]],[[0.012813875451684,-0.027498466894031,0.013080119155347],[0.099415451288223,0.046962510794401,0.0010740173747763],[0.13029803335667,-0.048475611954927,-0.20989359915257]],[[-0.051014307886362,0.13246807456017,0.19575805962086],[0.04461270198226,-0.19595053792,-0.076898545026779],[-0.064083866775036,-0.13375648856163,0.061383329331875]],[[-0.021283680573106,-0.0068537867628038,-0.16031520068645],[-0.015573112294078,-0.13428175449371,-0.15639318525791],[0.026178907603025,-0.1458186507225,-0.052823152393103]],[[-0.049913018941879,0.062320414930582,0.021113891154528],[0.10720112174749,-0.064620725810528,-0.10352255403996],[0.033808551728725,-0.041159238666296,-0.098373599350452]]],[[[0.053535453975201,0.072327621281147,-0.011084635742009],[-0.028885677456856,-0.12130955606699,-0.00960046146065],[-0.13069681823254,0.03037747181952,-0.13941469788551]],[[0.0182661768049,-0.11386066675186,0.032190311700106],[-0.067562848329544,-0.050817590206861,0.017638055607677],[0.072348318994045,0.025918086990714,0.019302193075418]],[[-0.041059646755457,0.029681364074349,0.17118713259697],[-0.061985593289137,-0.088447324931622,-0.083532474935055],[-0.083789266645908,0.0078332582488656,-0.11937959492207]],[[-0.091389074921608,-0.07238931953907,0.030186962336302],[-0.15545085072517,-0.022652672603726,-0.11546548455954],[-0.056098405271769,-0.01258163806051,0.020291980355978]],[[0.13089102506638,-0.15311120450497,-0.022979810833931],[-0.046448033303022,-0.073842622339725,-0.059285875409842],[0.093087561428547,0.0019490706035867,0.042953368276358]],[[0.033190663903952,0.04189932718873,-0.0060331108979881],[-0.11517529189587,1.1670952517306e-05,-0.1420806646347],[0.047260500490665,-0.059398248791695,-0.17862643301487]],[[0.018941342830658,0.11608222126961,0.051916673779488],[-0.13044972717762,-0.015039936639369,-0.015153142623603],[-0.036381714046001,-0.071965128183365,-0.053402528166771]],[[0.045106165111065,0.061709046363831,-0.059088844805956],[0.070623658597469,0.041076183319092,-0.10665013641119],[0.047104850411415,0.040785308927298,-0.12019500881433]],[[0.039151914417744,0.010849092155695,-0.0078896135091782],[-0.002295637037605,0.015175621956587,-0.07580391317606],[-0.073673494160175,0.052946984767914,-0.007506269030273]],[[0.06568643450737,-0.0034847389906645,0.11575053632259],[0.12210606783628,-0.037278980016708,0.068664245307446],[-0.084568612277508,-0.10241530835629,-0.018079301342368]],[[-0.11199644207954,0.14766849577427,-0.035912949591875],[-0.14174675941467,0.037732221186161,0.08384720236063],[0.034974474459887,-0.060190234333277,-0.13431914150715]],[[-0.095502741634846,0.10290063917637,0.011400188319385],[-0.010784101672471,0.060271207243204,-0.14741870760918],[-0.0024698150809854,-0.11983004212379,0.070893622934818]],[[-0.042919106781483,-0.013364993035793,0.0019109708955511],[-0.032371029257774,0.052119582891464,0.043465632945299],[0.090109191834927,0.055294506251812,-0.10439810156822]],[[-0.23491069674492,0.03917607665062,0.033863719552755],[-0.10240308195353,-0.053458668291569,0.053353812545538],[0.1162770986557,0.060121674090624,0.13801762461662]],[[-0.00043986790115014,0.097806051373482,-0.012178502045572],[-0.093860387802124,-0.061217620968819,-0.15749537944794],[0.23593185842037,-0.12253474444151,-0.0470773242414]],[[0.032408818602562,-0.020632945001125,-0.043687008321285],[-0.024855885654688,-0.15200021862984,-0.21329255402088],[0.1305965334177,-0.12389180064201,-0.11686144024134]],[[0.055308986455202,-0.13946868479252,-0.063679449260235],[0.12091969698668,0.10264649242163,0.060200423002243],[0.11776971817017,0.0080503690987825,0.057107266038656]],[[0.11107894033194,0.038515169173479,-0.11916755139828],[-0.033014744520187,0.039347697049379,-0.16841958463192],[0.041626982390881,-0.090398028492928,-0.089187376201153]],[[0.045948870480061,-0.11093258112669,-0.10463508963585],[-0.032410159707069,-0.012747658416629,-0.065143443644047],[0.0061716423369944,0.013735434040427,0.085975021123886]],[[-0.065623439848423,-0.18507087230682,-0.012990007176995],[0.071404159069061,-0.13385105133057,0.085868157446384],[0.021317295730114,-0.29360553622246,0.017908718436956]],[[-0.043725065886974,0.013365734368563,-0.064092747867107],[-0.034556705504656,0.054872818291187,-0.0020211597438902],[-0.16551725566387,-0.053667396306992,0.12991441786289]],[[0.031152620911598,-0.22507134079933,-0.14378206431866],[-0.042113166302443,-0.16959628462791,-0.29199576377869],[0.052898827940226,-0.04500000551343,0.016041057184339]],[[0.021351477131248,-0.064846180379391,-0.044423740357161],[-0.046702694147825,-0.082841001451015,0.03038964048028],[-0.10301991552114,-0.016254406422377,-0.01506279129535]],[[-0.13659578561783,-0.034092023968697,-0.15073037147522],[-0.013319850899279,-0.1184556633234,-0.063580490648746],[-0.059671271592379,0.097426921129227,-0.17944550514221]],[[0.012136330828071,0.14306323230267,-0.091594897210598],[0.010660545900464,0.0010500410571694,0.037012599408627],[0.042359825223684,-0.013831734657288,-0.05870584025979]],[[-0.047360185533762,0.010771830566227,0.035739034414291],[0.055973332375288,0.026887603104115,-0.045294068753719],[-0.11252953112125,-0.050075009465218,0.0042229956015944]],[[0.050461284816265,0.10818926244974,0.054311659187078],[0.059070788323879,-0.05425450950861,-0.066626466810703],[-0.020891619846225,-0.1004998460412,0.0059718331322074]],[[-0.15552189946175,-0.052214786410332,0.012696682475507],[-0.03445903211832,-0.049716185778379,-0.11225554347038],[-0.10175461322069,-0.064070448279381,0.010683367028832]],[[0.14154455065727,-0.066203020513058,-0.15646766126156],[-0.012845602817833,-0.1631378531456,-0.084539487957954],[-0.069744534790516,0.023350888863206,0.09185117483139]],[[0.028722768649459,-0.030851226300001,0.21617765724659],[0.058500710874796,-0.0066882101818919,0.098381541669369],[0.034331038594246,0.047388009727001,-0.1527466326952]],[[0.19007357954979,-0.036549583077431,0.04031440988183],[-0.14236600697041,-0.036663766950369,0.17914786934853],[-0.03734552487731,0.1342678964138,0.078431688249111]],[[-0.025961272418499,-0.013902598060668,-0.032822459936142],[-0.052098039537668,0.047609392553568,0.054321460425854],[0.0062029622495174,0.01302595064044,0.1461269557476]],[[-0.0076955338008702,-0.10343386232853,-0.024711290374398],[0.088793076574802,0.029971772804856,-0.050565760582685],[-0.05122509598732,-0.019258243963122,-0.024868194013834]],[[-0.0059487405233085,-0.012291140854359,-0.0014465397689492],[0.035581033676863,0.025023099035025,-0.072703242301941],[0.17166215181351,-0.15141543745995,-0.056918650865555]],[[0.011253115721047,-0.11955909430981,0.066604614257812],[-0.13641747832298,0.077315829694271,-0.058222901076078],[-0.030934689566493,0.045816499739885,0.054343689233065]],[[0.041230950504541,-0.092002600431442,-0.11755768209696],[0.036260850727558,0.089964173734188,-0.036543723195791],[-0.10627085715532,-0.08675567060709,-0.083618596196175]],[[0.042913142591715,-0.1036893427372,-0.13633561134338],[0.077610731124878,0.0090854205191135,0.045419722795486],[0.012062048539519,0.028091566637158,0.026098471134901]],[[-0.23866176605225,0.043473567813635,0.11059039086103],[-0.083746649324894,0.067047111690044,0.092942215502262],[0.05078399553895,-0.14728166162968,-0.021964509040117]],[[0.018210673704743,0.15093165636063,0.15609058737755],[-0.028468117117882,-0.093654222786427,0.026439428329468],[-0.022538032382727,0.035955592989922,-0.038678884506226]],[[0.057344399392605,-0.071670047938824,0.057435370981693],[0.14455057680607,0.020893085747957,0.0031185694970191],[-0.0015261155785993,0.1318204253912,-0.26707270741463]],[[0.16978044807911,-0.1966325044632,0.10009023547173],[0.019979177042842,0.0082502169534564,0.079816251993179],[0.051305547356606,0.055388912558556,0.16275554895401]],[[0.05387981235981,0.06447184830904,-0.048675414174795],[0.024968139827251,0.08871441334486,0.14525040984154],[-0.075315780937672,-0.093087993562222,-0.095813170075417]],[[0.10413035750389,-0.031307879835367,-0.13842941820621],[-0.004416371230036,0.074459418654442,0.091907076537609],[-0.076669804751873,0.014795422554016,-0.0050933412276208]],[[-0.055894631892443,-0.051001664251089,0.017914252355695],[0.026487549766898,-0.033933728933334,0.099607110023499],[-0.015283860266209,-0.0074833747930825,-0.02975569665432]],[[-0.082490958273411,0.013503191061318,-0.057590343058109],[0.027110528200865,0.036395646631718,0.1163734793663],[0.20521906018257,0.0087118251249194,0.076243303716183]],[[-0.034414514899254,-0.051239460706711,0.12700608372688],[-0.16983403265476,-0.13458579778671,0.21059940755367],[-0.081422634422779,-0.080104768276215,0.0043943305499852]],[[0.00089746923185885,0.093837961554527,-0.034645706415176],[0.1053234115243,0.015013470314443,0.06896847486496],[-0.066862769424915,0.047151949256659,-0.0091497534886003]],[[-0.10282141715288,0.074128963053226,0.074588768184185],[-0.19384624063969,0.034034363925457,-0.015113153494895],[0.080678813159466,0.014777629636228,-0.12148250639439]],[[-0.064169675111771,0.16223467886448,0.019111830741167],[0.072135843336582,0.076493591070175,-0.15768456459045],[-0.049017131328583,0.11038569360971,0.18397781252861]],[[-0.073136076331139,-0.082215718924999,0.054008468985558],[-0.063831873238087,-0.020870581269264,0.10094825178385],[0.062057178467512,-0.089091099798679,-0.15259282290936]],[[0.022361764684319,0.0062764622271061,0.11777723580599],[0.053366087377071,-0.13306714594364,-0.028082970529795],[0.040429376065731,0.026643756777048,-0.088391125202179]],[[-0.018440732732415,0.089429587125778,0.14249430596828],[0.00029561395058408,-0.16886693239212,0.065831631422043],[-0.058133460581303,-0.058696836233139,0.038429588079453]],[[-0.038045257329941,0.099513530731201,-0.19772915542126],[-0.011669473722577,-0.10574968159199,0.078345619142056],[-0.14016889035702,0.019908003509045,0.0095163658261299]],[[-0.041663862764835,-0.078430213034153,-0.092024423182011],[0.027089716866612,0.059335377067327,-0.068795867264271],[0.021571394056082,-0.12313537299633,-0.24172396957874]],[[-0.0096086272969842,0.0046243914403021,-0.13062396645546],[-0.026008849963546,-0.0080192964524031,0.0025168841239065],[-0.075311988592148,-0.059668738394976,0.11867398023605]],[[-0.069878965616226,-0.23502473533154,-0.010700587183237],[-0.025180796161294,0.050921097397804,-0.14580529928207],[0.044986654073,-0.021775322034955,0.046931184828281]],[[0.10920396447182,-0.012682212516665,-0.029088506475091],[0.0078362915664911,0.027175279334188,-0.0045128492638469],[-0.081873908638954,0.14070038497448,-0.1336510181427]],[[-0.035249650478363,-0.1328476369381,-0.098228834569454],[0.012910652905703,0.069531910121441,-0.0068525648675859],[0.020352305844426,-0.023798083886504,0.032426849007607]],[[0.039335653185844,-0.083998955786228,-0.11130721867085],[-0.032380644232035,-0.1326861679554,-0.11014234274626],[-0.017306391149759,0.020639546215534,-0.14052568376064]],[[0.075253896415234,-0.02190257050097,0.12133718281984],[0.13493455946445,0.062212567776442,0.038870744407177],[0.12462405860424,-0.010624804534018,-0.035542037338018]],[[-0.088169880211353,-0.13858836889267,0.051797769963741],[-0.13032224774361,-0.0902279317379,-0.15446145832539],[-0.11214111745358,-0.21866935491562,-0.038937471807003]],[[-0.0079364562407136,0.12801986932755,-0.10939936339855],[0.12662795186043,-0.093314148485661,0.085583209991455],[-0.096212662756443,-0.049778293818235,-0.12228647619486]],[[0.054304324090481,-0.0048108408227563,0.048494938760996],[0.075257867574692,-0.015073497779667,-0.076569758355618],[-0.02894482947886,-0.11914385855198,-0.096622474491596]],[[0.012302901595831,0.025370677933097,0.04272535443306],[-0.00013805412163492,-0.13146187365055,0.029782369732857],[-0.12128774821758,-0.026545187458396,-0.062530532479286]]],[[[-0.12231446057558,0.14337974786758,0.11598463356495],[0.013744685798883,0.069869257509708,0.017668277025223],[-0.028047317638993,0.042791169136763,0.24108284711838]],[[0.17439486086369,-0.051003310829401,-0.039826840162277],[0.018583970144391,0.13425327837467,-0.022283772006631],[-0.085118986666203,0.028644362464547,-0.30098205804825]],[[-0.056922633200884,0.19678992033005,-0.2308737039566],[0.11987225711346,-0.0039872229099274,-0.10979132354259],[-0.10698130726814,-0.029509700834751,0.18689301609993]],[[-0.32703518867493,0.038969926536083,0.12567754089832],[0.013028468936682,-0.07523550838232,-0.0016925433883443],[-0.040657512843609,-0.045412980020046,-0.16602498292923]],[[0.13004797697067,-0.18246418237686,0.072832308709621],[-0.11856196075678,0.046196945011616,0.046500716358423],[-0.25861975550652,0.025308221578598,-0.10912608355284]],[[-0.11347553133965,-0.031665321439505,-0.018492421135306],[0.022523604333401,0.14491125941277,-0.1844277381897],[-0.037355810403824,-0.047394592314959,0.1345292031765]],[[-0.18438448011875,0.11631202697754,-0.10130272060633],[0.045874271541834,-0.23903959989548,-0.048637844622135],[0.011862767860293,-0.20159204304218,-0.093127347528934]],[[0.10674763470888,-0.1219685152173,0.098671689629555],[-0.12136946618557,0.12561340630054,0.23649208247662],[0.1094359382987,0.19310180842876,-0.041380789130926]],[[-0.08628511428833,0.065738148987293,-0.035797573626041],[0.042672004550695,-0.0052342405542731,-0.0056020966731012],[-0.039361868053675,-0.0658989995718,0.037594087421894]],[[-0.056408453732729,0.078121371567249,-0.30748423933983],[-0.036708656698465,0.10562451183796,-0.17254832386971],[0.035028226673603,0.093241028487682,-0.052817121148109]],[[-0.17124167084694,0.040428578853607,-0.27057102322578],[0.078578881919384,0.056151319295168,-0.013983958400786],[0.021979074925184,0.015499173663557,0.11137683689594]],[[-0.1031142026186,-0.10288408398628,-0.071345143020153],[-0.025280391797423,0.06593070179224,0.061308212578297],[0.04587784409523,-0.10887414962053,0.045482140034437]],[[0.021341640502214,0.028551751747727,0.13624447584152],[-0.11351366341114,-0.14142401516438,-0.10081121325493],[-0.036419242620468,-0.010897820815444,-0.054238133132458]],[[0.1306274831295,-0.061472877860069,-0.057515274733305],[-0.13900724053383,-0.023647973313928,0.12250948697329],[-0.1136432737112,0.014846238307655,0.15478397905827]],[[0.24807591736317,-0.05511961132288,-0.39234054088593],[0.2443839609623,-0.025890033692122,-0.21156646311283],[0.095126688480377,0.063622310757637,-0.11885392665863]],[[0.0055716140195727,-0.030089814215899,-0.10667530447245],[-0.0070970593951643,0.068594194948673,-0.073007017374039],[0.049222372472286,-0.019024176523089,0.11155627667904]],[[-0.013772582635283,0.033058788627386,0.20265474915504],[0.11991498619318,-0.19525222480297,0.18975661695004],[-0.080137722194195,0.079674854874611,-0.19994649291039]],[[-0.078252896666527,0.11068868637085,-0.049293678253889],[0.037921030074358,0.020681506022811,0.14749471843243],[0.13327616453171,0.081937521696091,-0.027697481215]],[[-0.00456139491871,0.055389910936356,0.029155572876334],[0.12177103757858,0.032900046557188,0.043210186064243],[0.023333694785833,0.010239456780255,0.010542207397521]],[[0.00075069844024256,0.13021767139435,0.1422548443079],[0.0044113150797784,-0.042167484760284,-0.0065472847782075],[-0.014941297471523,0.052901156246662,0.08168987184763]],[[0.16236136853695,-0.11640297621489,-0.25003525614738],[-0.063898980617523,-0.10438947379589,-0.19314035773277],[0.027456345036626,-0.078181840479374,-0.010049055330455]],[[-0.029095336794853,-0.080287851393223,0.15000431239605],[0.057523608207703,-0.038920748978853,-0.092634856700897],[0.16926746070385,-0.04717006906867,-0.091459967195988]],[[-0.1585106253624,0.098858408629894,-0.017886348068714],[-0.033225521445274,0.016910118982196,0.033430080860853],[-0.1990225315094,-0.0024670055136085,0.042489662766457]],[[0.063675977289677,0.018570525571704,-0.12870581448078],[0.070953272283077,-0.010042388923466,0.038874059915543],[-0.082198083400726,-0.21015486121178,0.092823378741741]],[[-0.018913934007287,-0.20629519224167,0.041163507848978],[0.009228328242898,0.15567681193352,0.020794162526727],[0.20715744793415,-0.088250041007996,0.16441164910793]],[[0.025141088292003,-0.020141385495663,-0.22880961000919],[-0.017986575141549,-0.084450043737888,-0.024228923022747],[0.11189745366573,-0.053012296557426,-0.084193982183933]],[[0.0072725312784314,-0.045509237796068,0.16659441590309],[0.005729419644922,-0.10365381091833,0.051753621548414],[0.027782946825027,0.052057951688766,-0.028476629406214]],[[-0.12285264581442,-0.012870437465608,-0.19569163024426],[0.0023243802133948,-0.033193092793226,-0.073026180267334],[-0.21611766517162,-0.078504405915737,-0.0028337219264358]],[[-0.081694431602955,-0.032214913517237,0.012487900443375],[-0.017706407234073,-0.17753244936466,0.051267798990011],[0.19440625607967,-0.02217910066247,-0.036638841032982]],[[-0.084708616137505,-0.096214301884174,0.024853343144059],[-0.11370369791985,0.20757657289505,-0.16739241778851],[0.082621805369854,-0.038731005042791,0.055972389876842]],[[-0.026555011048913,-0.074148774147034,-0.15918019413948],[-0.018906217068434,-0.0021854219958186,0.020436787977815],[0.2078683078289,-0.086119793355465,-0.078845106065273]],[[-0.13784657418728,0.060624416917562,-0.075849622488022],[-0.075169757008553,0.053035799413919,-0.06210296228528],[0.14589568972588,-0.0065691778436303,-0.083872020244598]],[[-0.016324602067471,-0.0035493113100529,0.054677467793226],[-0.051478922367096,-0.092949509620667,-0.1925887465477],[0.011464970186353,-0.032196696847677,-0.1236167922616]],[[-0.22031687200069,-0.1637604534626,-0.090540960431099],[-0.10279069840908,-0.090820387005806,0.016411505639553],[0.04600677639246,0.021605113521218,0.052781943231821]],[[0.0421610660851,0.19577443599701,-0.14760668575764],[-0.027057006955147,-0.27175390720367,-0.093568898737431],[-0.025582967326045,0.1112702190876,-0.19006092846394]],[[-0.082318194210529,0.0055083874613047,-0.28791990876198],[0.0092427423223853,0.096522606909275,0.036689460277557],[0.061566278338432,0.09431179612875,-0.041134290397167]],[[-0.013549651019275,0.087567366659641,0.031283501535654],[-0.027549423277378,0.1657659560442,-0.16216687858105],[0.089828215539455,0.045028701424599,0.082971207797527]],[[0.051949605345726,-0.076754048466682,0.15151964128017],[0.036452736705542,-0.0044593098573387,-0.034033514559269],[0.11759806424379,0.028339156880975,0.20193721354008]],[[-0.17069527506828,-0.016320841386914,0.011815491132438],[0.09633482247591,-0.19263921678066,0.051540438085794],[0.005393581930548,0.18052926659584,-0.0025304406881332]],[[0.020726850256324,0.086902916431427,-0.12939675152302],[0.027352474629879,0.045269425958395,0.06622738391161],[0.10362081229687,-0.07434768974781,-0.054311104118824]],[[0.15372833609581,-0.048095058649778,0.14724944531918],[-0.11533265560865,0.15119029581547,-0.1174511089921],[0.086042806506157,-0.034939408302307,0.049375925213099]],[[0.019410237669945,0.1596264988184,-0.13523297011852],[-0.0087203159928322,0.057491362094879,-0.32792019844055],[-0.049212094396353,-0.027030875906348,0.059709895402193]],[[-0.061017777770758,0.022266542539001,0.0029906940180808],[-0.16393466293812,-0.10820619016886,0.00038022705120966],[0.066496774554253,-0.0067305373959243,-0.00035220268182456]],[[0.049357943236828,-0.016464481130242,-0.012203436344862],[-0.089580476284027,-0.025661081075668,0.10212749987841],[-0.009924691170454,0.0012828956823796,0.049633223563433]],[[0.22502648830414,-0.20378661155701,-0.098733805119991],[0.12416115403175,-0.001303412951529,0.12669044733047],[-0.14624287188053,-0.052083220332861,-0.13257473707199]],[[0.22885273396969,-0.0018706115661189,-0.2660513818264],[-0.16623219847679,-0.069918483495712,0.1961038261652],[0.17611058056355,-0.077252209186554,0.036664586514235]],[[-0.13662806153297,0.15076187252998,-0.14772629737854],[0.048083428293467,-0.11556799709797,-0.025444075465202],[0.17421992123127,-0.032129485160112,-0.044013042002916]],[[-0.076017655432224,-0.089981384575367,0.088233321905136],[-0.011293455027044,-0.071526281535625,-0.07412676513195],[-0.092808000743389,-0.065528526902199,-0.045925781130791]],[[-0.013852553442121,-0.014192630536854,-0.06245594099164],[0.046406295150518,-0.1634728461504,0.036435484886169],[0.030625099316239,-0.11254883557558,-0.020330650731921]],[[0.035444304347038,-0.095932371914387,-0.0086525222286582],[0.23935081064701,-0.03150424733758,-0.14609780907631],[-0.01668924279511,0.043037611991167,-0.010446511209011]],[[0.074486315250397,0.0086396895349026,0.070351228117943],[-0.13923417031765,-0.0017899291124195,-0.010547638870776],[0.11534636467695,-0.062271125614643,0.049871113151312]],[[-0.050155602395535,-0.14990998804569,0.083532251417637],[-0.14483135938644,0.070475913584232,0.16373066604137],[0.056291580200195,-0.21381291747093,0.047468092292547]],[[-0.048637446016073,0.064818501472473,-0.12959037721157],[0.082860045135021,-0.089892700314522,-0.14406141638756],[0.13189405202866,-0.13545405864716,-0.13931262493134]],[[-0.054974466562271,0.042874019593,-0.13206104934216],[-0.029539052397013,-0.085961744189262,-0.20079526305199],[0.18225580453873,0.146139934659,0.085025526583195]],[[0.10636231303215,-0.064237393438816,0.153116568923],[-0.087111361324787,-0.078555002808571,-0.041232667863369],[-0.10239358246326,-0.011966653168201,-0.036269869655371]],[[-0.10214508324862,-0.056515853852034,0.26014161109924],[-0.063194341957569,-0.093121960759163,0.13550646603107],[0.08269876241684,-0.15442538261414,0.13225574791431]],[[-0.13419035077095,-0.081919193267822,-0.028469422832131],[0.057695299386978,-0.14287935197353,-0.21208369731903],[-0.21212220191956,0.13005603849888,-0.062402065843344]],[[0.25802263617516,0.04868596419692,-0.17716473340988],[0.071333959698677,5.529942427529e-06,0.022070847451687],[-0.12317942082882,-0.019153188914061,0.10611590743065]],[[0.034804716706276,0.12814012169838,-0.040179900825024],[0.030708588659763,0.071940869092941,-0.17777015268803],[0.074570514261723,0.040943875908852,0.18374451994896]],[[-0.15083685517311,0.049623388797045,0.12240991741419],[0.051420446485281,0.0063155055977404,0.057458218187094],[0.029723234474659,-0.0027335037011653,0.011030871421099]],[[-0.18142040073872,-0.067020617425442,-0.08115466684103],[-0.18968823552132,0.0360974855721,-0.028213707730174],[0.05885261297226,-0.025202289223671,-0.18655346333981]],[[-0.079525217413902,-0.12520876526833,-0.009590164758265],[0.13321706652641,0.028569946065545,-0.024628994986415],[0.027989195659757,0.13250707089901,0.12015168368816]],[[-0.041112694889307,0.038960102945566,-0.034917578101158],[0.059308618307114,0.037385035306215,0.047033291310072],[-0.24925638735294,-0.14447754621506,0.051834389567375]],[[0.12320041656494,-0.20873580873013,-0.039322882890701],[0.19670206308365,-0.18540458381176,-0.14829771220684],[0.11681091040373,0.10374268889427,0.25798958539963]]],[[[-0.016379402950406,-0.0056830635294318,0.10201127827168],[0.07812974601984,-0.1157211214304,-0.079765297472477],[0.18017287552357,-0.021604027599096,-0.27073207497597]],[[0.031545739620924,-0.020034313201904,0.092188492417336],[-0.050312235951424,0.056262113153934,0.029351230710745],[0.057358685880899,-0.07128894329071,0.046083521097898]],[[0.089201882481575,-0.10445450991392,-0.05763840675354],[0.037531960755587,-0.1378511339426,0.045511182397604],[-0.084973588585854,-0.044342026114464,-0.28575339913368]],[[-0.033231254667044,-0.028207907453179,0.056721072643995],[0.091286540031433,-0.008861537091434,-0.060639660805464],[-0.015532290562987,-0.031182922422886,-0.068973161280155]],[[0.13547779619694,-0.066865161061287,0.014271709136665],[0.062968768179417,-0.10257171094418,-0.047977428883314],[0.08800233155489,0.10221467912197,-0.0067482558079064]],[[-0.25897505879402,0.0085398936644197,-0.26208424568176],[-0.08198343962431,0.10154396295547,0.1528535336256],[-0.10851513594389,0.062905572354794,-0.20114298164845]],[[-0.16401648521423,0.042318783700466,-0.027413751929998],[0.056952185928822,0.025599122047424,-0.0099607370793819],[-0.047059010714293,0.067655555903912,0.038360122591257]],[[-0.16225922107697,-0.094686709344387,0.080904521048069],[-0.066776104271412,-0.0061991531401873,0.078297697007656],[0.1214155331254,-0.065645448863506,0.037894267588854]],[[0.077672868967056,-0.04004018753767,0.066626533865929],[-0.055415768176317,-0.050376880913973,0.074098281562328],[-0.041172999888659,-0.021754428744316,-0.018265295773745]],[[-0.10212214291096,0.11053851246834,-0.34183689951897],[-0.063209168612957,0.12526488304138,-0.0022774008102715],[-0.093854382634163,-0.008910084143281,0.080779410898685]],[[0.050656259059906,-0.0088087543845177,-0.004671914037317],[0.18888856470585,0.0071697388775647,-0.029010219499469],[-0.013520845212042,0.006858725566417,0.033937908709049]],[[0.051314186304808,-0.012643391266465,0.15547366440296],[-0.12105752527714,-0.11278729140759,0.075599007308483],[0.0023814993910491,-0.097206272184849,-0.050789009779692]],[[-0.06077765673399,0.16869542002678,0.072282239794731],[-0.14642685651779,0.030208326876163,-0.077142186462879],[-0.036570686846972,-0.0033291887957603,0.17166818678379]],[[0.17931579053402,-0.056289426982403,-0.035520851612091],[0.15384232997894,0.056369390338659,0.075409829616547],[-0.06439121812582,-0.065579876303673,-0.086677066981792]],[[0.013418156653643,0.033547889441252,-0.14283415675163],[-0.096760585904121,0.076783642172813,-0.13785468041897],[-0.05413655936718,0.074340537190437,-0.20804269611835]],[[0.023118618875742,-0.1529705375433,0.072161287069321],[0.097760207951069,-0.17759324610233,0.11507505178452],[-0.15676295757294,0.17507201433182,0.025935489684343]],[[0.14870738983154,0.012552795931697,0.13855405151844],[0.042410254478455,0.090475082397461,0.0058226324617863],[0.020134577527642,0.11672822386026,-0.038858212530613]],[[0.14013265073299,-0.20494209229946,-0.087490633130074],[0.13900692760944,-0.023968003690243,0.0157525613904],[0.17774677276611,0.067709922790527,0.066813193261623]],[[0.0023404329549521,0.26212337613106,-0.087634265422821],[0.16403768956661,0.044637959450483,-0.037915643304586],[0.019945258274674,0.055550552904606,-0.059808593243361]],[[0.20651376247406,-0.14247725903988,-0.096395939588547],[0.076171658933163,0.041251573711634,0.097566738724709],[0.021040249615908,-0.09833662956953,0.0067984792403877]],[[-0.037493985146284,-0.10331770032644,-0.21671865880489],[0.12472714483738,0.0047682411968708,-0.12689253687859],[-0.060697443783283,0.0054119792766869,-0.12693908810616]],[[-0.11776398122311,-0.021790277212858,0.021691586822271],[0.0046531385742128,-0.047904510051012,0.031400803476572],[-0.038656011223793,-0.015406453981996,-0.029519621282816]],[[-0.05724323540926,-0.034639492630959,-0.02630359120667],[-0.096118927001953,0.05770393460989,0.087687999010086],[0.0092093124985695,-0.022097432985902,-0.10611813515425]],[[-0.084072858095169,0.048292919993401,0.15214827656746],[-0.028389593586326,-0.00067024532472715,-0.29689356684685],[-0.13183087110519,0.00017515977378935,-0.21685948967934]],[[0.019192418083549,-0.032206930220127,-0.032063893973827],[-0.14544448256493,0.060803096741438,0.041627027094364],[-0.099935173988342,-0.0655138194561,-0.13321180641651]],[[0.067406177520752,-0.11895072460175,0.040513228625059],[0.037099480628967,-0.017366882413626,-0.083282247185707],[0.11253102868795,0.097764931619167,0.0080869775265455]],[[-0.14222645759583,-0.0055206753313541,0.13647019863129],[-0.072126872837543,-0.054131079465151,0.086323790252209],[-0.20745356380939,-0.20157851278782,0.038877654820681]],[[-0.031971797347069,0.01663963124156,-0.099820643663406],[-0.067506179213524,0.033343028277159,-0.065169252455235],[-0.15511567890644,0.13757038116455,0.099936328828335]],[[0.015117049217224,0.102145165205,-0.062587514519691],[0.13436737656593,-0.033195916563272,0.098552249372005],[-0.16059754788876,0.025964034721255,-0.01479734107852]],[[-0.055729180574417,-0.0053390827961266,-0.022456385195255],[0.012423822656274,-0.003436844330281,0.053986255079508],[-0.11644551903009,-0.2814689874649,0.021564675495028]],[[-0.0699707493186,0.072791136801243,0.16335463523865],[-0.018441677093506,-0.052681256085634,0.017773339524865],[-0.027501445263624,-0.094256438314915,0.09186302870512]],[[-0.093024298548698,-0.066655151546001,-0.10314274579287],[-0.086520381271839,-0.037593718618155,-0.053449939936399],[0.0096910772845149,-0.0077700559049845,0.0040960977785289]],[[0.0066873799078166,0.051337234675884,-0.10571929812431],[-0.11155361682177,-0.0080149881541729,0.11089950799942],[-0.14569047093391,0.10791367292404,0.072728112339973]],[[-0.025200378149748,0.0049393121153116,-0.21125002205372],[0.017338337376714,-0.074890971183777,0.052132554352283],[-0.092051886022091,0.14797540009022,0.073706954717636]],[[-0.069560207426548,-0.0066481847316027,0.071339629590511],[-0.11434510350227,-0.015164125710726,-0.19350525736809],[0.15924137830734,-0.050024315714836,-0.15581999719143]],[[-0.13075742125511,-0.058742582798004,-0.0080589670687914],[-0.13819061219692,0.09893636405468,0.16141368448734],[-0.083378784358501,0.04746425524354,0.12159348279238]],[[-0.059737168252468,-0.17255587875843,0.028361845761538],[0.070030204951763,-0.023380601778626,-0.051984287798405],[0.037699483335018,0.048167109489441,-0.07232304662466]],[[0.030428525060415,-0.0079041142016649,0.083606489002705],[0.058594729751348,-0.14163038134575,-0.09548631310463],[0.043877240270376,-0.14055563509464,0.050609644502401]],[[-0.0686976313591,-0.020477030426264,0.23390518128872],[-0.015190146863461,-0.062212746590376,-0.036690030246973],[-0.0012804744765162,-0.11223871260881,-0.13600786030293]],[[0.0089618926867843,-0.061766125261784,-0.010327076539397],[0.050862740725279,-0.048047620803118,0.050418108701706],[-0.084739357233047,0.13950860500336,0.14372117817402]],[[0.07305608689785,-0.11765859276056,0.048816781491041],[0.093451865017414,-0.1002970635891,-0.053039502352476],[0.054194588214159,-0.031891454011202,-0.10127713531256]],[[0.098584905266762,-0.080928385257721,0.054638933390379],[0.013778125867248,0.027605475857854,-0.020411821082234],[-0.11059580743313,0.14056503772736,-0.0012079832376912]],[[-0.014419849961996,0.063134372234344,0.036052156239748],[-0.074347242712975,-0.014563555829227,0.016359744593501],[-0.06503289937973,0.15540036559105,-0.11309485137463]],[[-0.040979325771332,0.025230007246137,0.038521867245436],[0.049804132431746,-0.013730028644204,-0.16554683446884],[0.0026310454122722,0.049761667847633,0.092219933867455]],[[0.044393599033356,-0.13269105553627,0.17350523173809],[-0.005787827540189,-0.21986494958401,0.012165935710073],[-0.036454111337662,0.11337775737047,-0.091660380363464]],[[-0.14643831551075,-0.23575867712498,-0.058451227843761],[-0.15506705641747,-0.012970322743058,-0.18971285223961],[-0.32720771431923,0.20203295350075,-0.12603075802326]],[[-0.12744015455246,0.25666442513466,0.032693073153496],[0.16307431459427,-0.0049439966678619,0.063384063541889],[-0.080868542194366,0.031277880072594,0.0016100916545838]],[[-0.14005902409554,0.048165310174227,0.027171522378922],[-0.032743748277426,-0.054093316197395,0.15872606635094],[-0.12917165458202,-0.15861356258392,0.037042506039143]],[[0.13567879796028,0.0015665589598939,-0.050692930817604],[0.11859598755836,0.024079531431198,-0.09042052924633],[0.030761394649744,-0.11123020201921,-0.15149952471256]],[[0.061165157705545,-0.20560750365257,0.1185689046979],[-0.10706552118063,-0.19057196378708,-0.026157878339291],[-0.055378776043653,-0.047213908284903,0.01050868164748]],[[-0.046537052839994,0.021191854029894,0.067304193973541],[0.037538927048445,0.070245936512947,0.075283125042915],[0.091401174664497,-0.045458063483238,-0.065495945513248]],[[-0.038082875311375,0.047049652785063,-0.064992651343346],[-0.083133541047573,-0.0083091538399458,0.016149999573827],[0.11657921969891,0.10799577832222,-0.023458750918508]],[[-0.12551034986973,0.029088847339153,-0.10134851932526],[-0.034081093966961,-0.06599697470665,-0.093594938516617],[-0.089597761631012,-0.0096577918156981,0.14738903939724]],[[-0.10459142923355,-0.037249177694321,-0.061743192374706],[-0.026593094691634,0.023000160232186,-0.014588859863579],[-0.072968192398548,0.066409975290298,0.16689655184746]],[[-0.046721216291189,0.13911710679531,-0.25929117202759],[0.0053092874586582,0.072658829391003,-0.10865934938192],[0.026566417887807,0.06303758174181,0.0068221525289118]],[[0.062804616987705,-0.18915219604969,0.13217070698738],[-0.083754323422909,-0.0013984062243253,0.031309109181166],[-0.11648563295603,0.021706525236368,0.081085905432701]],[[-0.040048040449619,0.063226729631424,-0.092089109122753],[-0.10144412517548,-0.0096039185300469,-0.026113884523511],[0.027547979727387,0.024306111037731,-0.010117001831532]],[[0.15957495570183,-0.12234208732843,0.092445075511932],[-0.0038391696289182,0.043902222067118,-0.011131964623928],[-0.096582628786564,0.029686387628317,-0.086636438965797]],[[0.043775096535683,-0.037114717066288,-0.06952241808176],[-0.18814957141876,-0.087623611092567,-0.037550050765276],[0.19613009691238,-0.0595225058496,-0.073885902762413]],[[0.050646990537643,0.049938481301069,0.28776770830154],[-0.030714051797986,0.018240416422486,0.044223122298717],[-0.010389604605734,0.051070272922516,0.035147305577993]],[[-0.0068663721904159,-0.084773831069469,-0.17721946537495],[0.0060993582010269,-0.0022487891837955,-0.13038700819016],[-0.05389541387558,0.066828191280365,-0.035754304379225]],[[-0.07971777766943,0.16060277819633,-0.069583140313625],[-0.056112077087164,-0.03395638614893,-0.046351078897715],[-0.11859934031963,0.059043757617474,0.15879790484905]],[[0.070113554596901,-0.090865515172482,0.17072980105877],[-0.070462480187416,-0.071487821638584,0.018419593572617],[-0.087443895637989,-0.079285748302937,0.039016835391521]],[[-0.037838265299797,0.1211666688323,-0.053620513528585],[0.0023979274556041,0.0085226530209184,0.12798731029034],[0.055585708469152,0.060185432434082,0.053073093295097]]],[[[0.05867026373744,0.078350067138672,-0.046373020857573],[-0.11186462640762,-0.033924203366041,-0.13196286559105],[0.030368713662028,0.10506128519773,0.21137121319771]],[[-0.013903898186982,-0.18836446106434,0.076705396175385],[0.1541415899992,0.11799671500921,0.054893862456083],[-0.13449580967426,-0.175327450037,0.047317363321781]],[[0.086280234158039,0.04045132547617,-0.014930859208107],[-0.099658980965614,-0.087375685572624,-0.10023085027933],[0.065919443964958,0.015363876707852,-0.0074582477100194]],[[-0.065155521035194,-0.082549668848515,-0.041353546082973],[0.079826213419437,-0.088740207254887,-0.13178095221519],[0.072951279580593,0.070498622953892,0.090043604373932]],[[0.067603603005409,0.05681474134326,-0.0682178363204],[0.03211535140872,-0.24681763350964,0.025878818705678],[-0.10528465360403,0.063904881477356,-0.13835988938808]],[[-0.053933758288622,-0.31034988164902,0.11592007428408],[0.070199638605118,-0.025437323376536,0.10872171074152],[0.0055606951937079,0.11611016094685,0.026697846129537]],[[0.02171572484076,-0.062440760433674,-0.040909379720688],[-0.011319873854518,-0.026095157489181,-0.071856535971165],[-0.13169057667255,0.053383141756058,0.057043749839067]],[[-0.018623998388648,0.098116606473923,0.15725326538086],[-0.011513793841004,0.061810716986656,0.073649697005749],[-0.094032920897007,0.094847962260246,-0.010784028097987]],[[-0.074509918689728,-0.047627910971642,0.025268280878663],[0.027670592069626,-0.026930805295706,-0.027070228010416],[0.088207952678204,-0.014603436924517,-0.0085028959438205]],[[0.17664586007595,-0.023382132872939,-0.21055099368095],[0.033562514930964,-0.0013900259509683,-0.11424311250448],[-0.1014165058732,-0.018502520397305,0.076193816959858]],[[-0.051081884652376,-0.1391728669405,0.073910556733608],[-0.037766069173813,-0.02303583920002,0.05466477945447],[0.056189458817244,-0.14541777968407,-0.0078352568671107]],[[0.15407493710518,-0.16919286549091,-0.0371979996562],[-0.072303354740143,0.14006634056568,-0.03447051346302],[-0.116190508008,-0.039312224835157,0.0041304575279355]],[[-0.11300627887249,-0.070608928799629,-0.048344943672419],[0.15090942382812,0.03530765324831,-0.15314385294914],[-0.1617863625288,0.20464389026165,-0.10712045431137]],[[-0.061040952801704,-0.044526908546686,-0.13595871627331],[0.13717322051525,-0.018659070134163,-0.12999904155731],[-0.040116999298334,0.031879138201475,0.02850017696619]],[[-0.31340306997299,0.0032464964315295,0.15106724202633],[0.07441421598196,-0.13298977911472,-0.057365354150534],[0.067590370774269,0.025663986802101,0.10131987929344]],[[-0.012710724025965,-0.057865992188454,0.22409927845001],[-0.17616978287697,-0.11787808686495,0.049932442605495],[0.061294507235289,0.054139528423548,-0.077974826097488]],[[0.2011129707098,0.016892841085792,0.092637784779072],[0.040296133607626,-0.10328271239996,-0.21511590480804],[-0.062756724655628,0.14725565910339,0.31788298487663]],[[0.11512185633183,0.055148471146822,-0.10093861073256],[0.0051709190011024,-0.025014530867338,-0.14796493947506],[-0.031550787389278,0.12789334356785,-0.16834673285484]],[[-0.037033390253782,0.12936644256115,-0.14869198203087],[0.11607552319765,0.12318903952837,0.0066481027752161],[-0.089400924742222,-0.12105353176594,0.18741621077061]],[[-0.073250204324722,-0.026741832494736,-0.15007351338863],[0.064361199736595,0.10287417471409,-0.25163370370865],[-0.099644593894482,0.19017614424229,0.10052178055048]],[[-0.13460248708725,-0.12914077937603,-0.11698570102453],[-0.057939849793911,0.018705401569605,-0.0073456945829093],[-0.092934481799603,0.010956018231809,0.1720582395792]],[[-0.31576749682426,0.057245712727308,0.11658448725939],[-0.083523459732533,-0.2449499219656,0.12226711213589],[-0.022656179964542,0.022398844361305,0.19133722782135]],[[0.1563181579113,0.029136847704649,-0.24054501950741],[-0.047909036278725,-0.11572214215994,-0.016507942229509],[0.10494416207075,-0.12206260114908,-0.036831215023994]],[[-0.070490911602974,-0.0031051596160978,0.098300941288471],[-0.19003702700138,0.02199505455792,0.096257947385311],[-0.055267728865147,0.089426875114441,-0.12162840366364]],[[0.039578165858984,0.099522866308689,-0.054850220680237],[0.28657513856888,-0.036176197230816,0.053237333893776],[-0.043306685984135,-0.24076701700687,-0.092295251786709]],[[-0.08299470692873,0.085355050861835,0.0051320046186447],[-0.039389174431562,-0.064499229192734,-0.14509537816048],[-0.084018163383007,-0.15637776255608,-0.35790121555328]],[[-0.030514426529408,-0.25011923909187,0.10514083504677],[0.061930004507303,0.012797494418919,0.048086155205965],[0.026663361117244,0.082076162099838,0.10279560089111]],[[-0.19080302119255,-0.0078240931034088,0.006921075284481],[-0.067198522388935,-0.11835092306137,-0.072070345282555],[-0.096989907324314,-0.14419963955879,0.18371225893497]],[[0.073772251605988,0.15956696867943,-0.11579391360283],[0.07682941108942,0.00044631314813159,-0.062938414514065],[0.050417982041836,-0.054701928049326,0.038278147578239]],[[-0.27697563171387,-0.17644381523132,-0.2311278283596],[0.12446844577789,0.0050839269533753,0.013176342472434],[0.12350592017174,0.090736731886864,0.032549880445004]],[[0.024314718320966,0.091332510113716,-0.0290403123945],[-0.13918425142765,-0.081960946321487,0.10049606114626],[0.078712731599808,0.025956334546208,0.12109910696745]],[[-0.034566335380077,-0.052538029849529,0.17892540991306],[-0.038152750581503,0.097238317131996,-0.040937047451735],[-0.01389591768384,-0.003235021373257,-0.10101074725389]],[[-0.06618294864893,0.019520949572325,0.027233898639679],[0.040737479925156,0.051473654806614,-0.15328702330589],[-0.1498741209507,-0.10910074412823,0.055502571165562]],[[0.026297114789486,0.083830684423447,0.12866340577602],[-0.0014390391297638,0.0050628087483346,0.035999320447445],[0.012174514122307,-0.0048497882671654,0.026907308027148]],[[-0.0028694274369627,-0.071374453604221,-0.073779575526714],[-0.0046642585657537,-0.10235264152288,0.010589080862701],[-0.055189833045006,0.088518351316452,-0.0021690060384572]],[[0.022706858813763,-0.047730840742588,0.065293647348881],[0.078081853687763,0.079616293311119,-0.15856201946735],[0.0041874242015183,-0.0012438572011888,-0.12984719872475]],[[0.0095641147345304,0.06905035674572,-0.16376368701458],[-0.031130624935031,-0.12652948498726,0.088947519659996],[0.034933883696795,-0.052440401166677,-0.073928259313107]],[[-0.083061710000038,-0.02850385569036,0.038580402731895],[0.0092641040682793,-0.012406095862389,-0.028443241491914],[0.13834954798222,0.080577187240124,-0.065194480121136]],[[-0.11027009785175,0.10622508823872,-0.0355414301157],[0.073235116899014,-0.072023630142212,-0.055323634296656],[0.0022402182221413,0.020032530650496,0.011297626420856]],[[-0.070549011230469,0.082325831055641,0.036986738443375],[0.039337456226349,0.013064312748611,-0.021770030260086],[0.00010626506991684,0.0064304806292057,0.085544429719448]],[[0.072388634085655,0.078926242887974,0.29842385649681],[-0.003292714478448,-0.12942412495613,0.034576948732138],[-0.064724408090115,-0.03476033732295,-0.18008421361446]],[[0.12731775641441,-0.16853861510754,0.11098179966211],[-0.10041233897209,0.078864507377148,0.03169821202755],[-0.0074510746635497,0.021876195445657,0.23562209308147]],[[-0.040658764541149,0.1964358240366,-0.015634587034583],[0.077006436884403,-0.003283464582637,0.051103796809912],[0.076733931899071,0.011281835846603,-0.0163081176579]],[[-0.028545543551445,-0.035446368157864,-0.092204488813877],[-0.0089249443262815,0.051350731402636,0.065787754952908],[-0.0055061806924641,-0.038613181561232,0.086383171379566]],[[0.10928127169609,0.098132327198982,0.14697523415089],[-0.18770341575146,-0.11925239861012,-0.22399391233921],[0.041329715400934,-0.093628711998463,0.2037473320961]],[[-0.17733979225159,0.17220258712769,0.057079575955868],[-0.21115396916866,-0.032613009214401,0.040869168937206],[0.12540872395039,-0.084234103560448,0.099994041025639]],[[0.17557440698147,-0.16731612384319,-0.02367945946753],[-0.0481908172369,0.24288515746593,-0.17940512299538],[0.012924870476127,-0.196756914258,0.010700907558203]],[[-0.077437870204449,-0.021158769726753,0.016773646697402],[0.10090044140816,0.014387674629688,-0.095454588532448],[-0.072575189173222,-0.029560796916485,0.045513831079006]],[[-0.093270137906075,-0.12246304750443,0.16003534197807],[-0.02001036144793,0.098623335361481,-0.23557582497597],[-0.16518543660641,-0.18511639535427,0.0054077678360045]],[[-0.047074679285288,0.12783823907375,-0.11682296544313],[-0.16919240355492,0.027475483715534,0.17848788201809],[-0.032961320132017,0.14137874543667,-0.11653440445662]],[[0.031246144324541,-0.0078651579096913,0.085977837443352],[0.099449120461941,0.062430690973997,0.046752855181694],[-0.17813743650913,-0.11939236521721,0.067791186273098]],[[0.075298339128494,0.011924320831895,-0.028497729450464],[-0.040543701499701,0.059433374553919,0.055029753595591],[0.2249568849802,0.022767826914787,0.095315903425217]],[[-0.013032824732363,0.052241876721382,0.19692777097225],[-0.025148160755634,-0.2067299336195,-0.042591631412506],[0.091870501637459,-0.028372321277857,0.025897869840264]],[[0.10525620728731,-0.093040868639946,-0.067452065646648],[0.02904500067234,-0.049850564450026,-0.081614971160889],[-0.02472279034555,0.088133215904236,0.093666382133961]],[[0.015723148360848,-0.16875620186329,-0.25654730200768],[-0.27554878592491,-0.0068397801369429,0.070302993059158],[-0.08453444391489,0.051228981465101,0.076702691614628]],[[-0.072523161768913,-0.0024402006529272,-0.080118127167225],[-0.20120285451412,-0.024856606498361,-0.17674547433853],[-0.057848405092955,0.10809625685215,-0.047537457197905]],[[0.052441380918026,0.0064817951060832,-0.16552196443081],[-0.085594847798347,0.055561978369951,-0.14646081626415],[-0.19148471951485,0.0272177439183,-0.17552469670773]],[[-0.11675510555506,-0.1453302949667,0.099703572690487],[-0.084408216178417,-0.020487554371357,0.10844054818153],[-0.020697457715869,-0.15630440413952,0.032296057790518]],[[0.085057973861694,-0.1178475394845,0.12936252355576],[0.049871806055307,-0.046032968908548,0.079472444951534],[-0.10055707395077,0.1018804833293,-0.034562464803457]],[[0.21309852600098,0.058050006628036,0.13239258527756],[-0.097506947815418,-0.17020438611507,-0.2193069010973],[0.11058722436428,0.053479511290789,0.13436916470528]],[[-0.026826089248061,-0.030777968466282,-0.098124444484711],[0.050298981368542,0.0037430785596371,0.0137461386621],[-0.21183654665947,-0.14501951634884,0.073191836476326]],[[-0.018177222460508,-0.051142886281013,0.063584223389626],[0.090363062918186,0.054993245750666,-0.21351991593838],[-0.16082464158535,-0.001658342895098,-0.11889377981424]],[[-0.046706784516573,0.024084063246846,-0.05651480704546],[-0.024571634829044,-0.074621751904488,-0.057190854102373],[-0.13998456299305,0.011610136367381,0.17946355044842]],[[0.078887365758419,-0.079764693975449,0.054810643196106],[0.22924576699734,0.084501340985298,-0.16547693312168],[-0.09003833681345,-0.1219240874052,0.15995790064335]]],[[[-0.21148020029068,0.080966226756573,0.067525908350945],[-0.20045350492001,-0.020231835544109,-0.056787896901369],[-0.071403034031391,-0.014847381971776,0.20311053097248]],[[-0.24963647127151,0.044927928596735,0.10964285582304],[-0.0023200213909149,0.061283126473427,-0.018538616597652],[-0.080396041274071,0.044770326465368,0.062627486884594]],[[0.014435481280088,0.042774580419064,0.021246809512377],[-0.16021938621998,0.01891372166574,0.03318103030324],[-0.098192900419235,-0.11040373146534,-0.18794092535973]],[[-0.061070624738932,0.092668801546097,-0.026724353432655],[-0.040068291127682,-0.028623076155782,-0.16876323521137],[-0.11799904704094,0.12034758925438,-0.069724291563034]],[[-0.020631697028875,0.023773619905114,0.056264717131853],[0.058251239359379,-0.095500230789185,0.032048560678959],[-0.023470865562558,0.12803381681442,0.048821724951267]],[[-0.051358506083488,0.073917180299759,-0.093572832643986],[0.11610952019691,0.15495331585407,-0.071760348975658],[-0.11802058666945,-0.027313156053424,0.076220728456974]],[[0.012829097919166,-0.10834418982267,0.028613766655326],[0.0097430562600493,0.047513075172901,-0.019677935168147],[0.10668178647757,-0.066986426711082,-0.066431164741516]],[[0.032005522400141,-0.03916185349226,0.065560735762119],[0.012118921615183,-0.05854357779026,-0.0063300239853561],[-0.09837019443512,0.099768131971359,0.1563780605793]],[[-0.080209217965603,0.012492747046053,-0.043894503265619],[0.06787721067667,-0.029705187305808,0.072751119732857],[0.057110100984573,-0.025134485214949,-0.070431128144264]],[[0.13311104476452,-0.0020164882298559,0.0033233985304832],[0.11284817010164,-0.17428193986416,0.060824900865555],[0.1493643373251,-0.027480280026793,0.11718136072159]],[[0.057628083974123,0.043230168521404,-0.049625460058451],[-0.015840951353312,0.018732067197561,-0.04676465690136],[-0.061414133757353,0.019433110952377,-0.063152223825455]],[[0.051182854920626,-0.10271197557449,-0.040140256285667],[-0.21979615092278,0.071063295006752,0.15759943425655],[-0.15642389655113,-0.024201130494475,0.055062580853701]],[[0.034460943192244,-0.018870519474149,0.020690906792879],[-0.054328549653292,0.0064929439686239,0.011190207675099],[-0.17113253474236,-0.024928176775575,-0.12613795697689]],[[-0.0082325860857964,0.091855213046074,-0.015570456162095],[-0.034099973738194,0.067935727536678,-0.0023269562516361],[-0.039548043161631,0.053566694259644,-0.13913244009018]],[[0.006006152369082,-0.03065650165081,-0.00018080824520439],[0.091103315353394,0.18218480050564,-0.13752420246601],[-0.18224662542343,0.013751428574324,0.14803421497345]],[[0.12159135937691,0.14015467464924,-0.13386298716068],[0.087657906115055,-0.10530379414558,-0.22580848634243],[-0.21704350411892,0.010913745500147,-0.083322361111641]],[[0.21129681169987,0.13932356238365,0.16021619737148],[0.032666686922312,-0.091463945806026,-0.13116391003132],[-0.059319000691175,0.095133937895298,-0.072434321045876]],[[-0.14282701909542,-0.03178533539176,0.12173096835613],[-0.092099331319332,0.079548515379429,0.023489633575082],[0.009506450034678,0.070486515760422,-0.07224827259779]],[[-0.055798802524805,0.046740885823965,0.1401821821928],[-0.0055003347806633,-0.12265662848949,-0.11451672017574],[0.092397890985012,-0.086306042969227,0.031950373202562]],[[-0.044468119740486,0.083316877484322,-0.01898824237287],[-0.22141815721989,0.12994657456875,0.070379622280598],[-0.28908056020737,-0.38173320889473,-0.19692061841488]],[[0.056509032845497,-0.0798719227314,-0.076059177517891],[-0.17422120273113,-0.073445543646812,-0.027979323640466],[-0.023813201114535,-0.20488788187504,0.27090188860893]],[[0.10502459853888,-0.085433401167393,0.10922978073359],[0.14199793338776,0.004479200579226,-0.015001225285232],[0.06697029620409,-0.14668355882168,-0.010432726703584]],[[0.024390494450927,-0.20353691279888,-0.050879508256912],[-0.10891906917095,-0.016447512432933,-0.063473492860794],[-0.1298526674509,-0.14759533107281,-0.13690049946308]],[[0.072829410433769,-0.023784410208464,0.060275696218014],[0.032307296991348,-0.056382052600384,0.018202440813184],[0.034979335963726,-0.10766653716564,-0.049707364290953]],[[-0.20817437767982,-0.094252988696098,0.094966560602188],[-0.16402707993984,0.0078802220523357,0.026073485612869],[-0.15456992387772,0.083282351493835,-0.064258582890034]],[[0.012319079600275,-0.085044823586941,-0.17268934845924],[-0.03063065931201,-0.14283642172813,-0.051982138305902],[0.076998516917229,0.099988847970963,0.047678254544735]],[[-0.1312989294529,-0.050887476652861,0.092221647500992],[-0.050457734614611,-0.10316263884306,0.073731616139412],[-0.16653393208981,0.077269360423088,-0.005957109387964]],[[-0.057936020195484,-0.023505292832851,-0.13913461565971],[-0.020679758861661,-0.11174956709146,0.047196459025145],[-0.025996273383498,-0.052407164126635,0.038330093026161]],[[0.032306153327227,0.084863215684891,0.036795075982809],[0.0035108351148665,-0.039823863655329,0.14646080136299],[-0.032887618988752,-0.31830537319183,0.14135468006134]],[[-0.00038781616603956,0.067602448165417,-0.094585053622723],[-0.17435981333256,-0.031598206609488,0.0043703843839467],[0.13038982450962,0.066749274730682,-0.02430884540081]],[[-0.22531236708164,-0.064991801977158,-0.17577089369297],[-0.0335355065763,-0.041722897440195,0.050609108060598],[0.16879680752754,0.087051473557949,-0.061365719884634]],[[0.1306788623333,0.12182208895683,-0.09688425809145],[-0.12173824757338,-0.0063617201521993,-0.042232476174831],[-0.09181722253561,-0.15647077560425,0.20471461117268]],[[-0.2064955830574,-0.05862745642662,0.073196403682232],[0.11807185411453,-0.19958703219891,-0.01280858926475],[0.10343196988106,-0.018857860937715,-0.00089321372797713]],[[-0.046001132577658,-0.012590173631907,0.071716941893101],[0.0062321643345058,0.10746685415506,-0.037188433110714],[-0.034703634679317,0.065463572740555,-0.015143093653023]],[[-0.024930646643043,-0.024108827114105,0.014915182255208],[-0.017201228067279,0.047704771161079,-0.048169691115618],[0.038664814084768,-0.037878554314375,-0.0070650153793395]],[[-0.025916835293174,-0.12655578553677,0.093015044927597],[0.11547432094812,-0.070512615144253,0.054445739835501],[-0.19110260903835,-0.029955573379993,0.065958060324192]],[[-0.033746853470802,-0.077579192817211,0.03920117020607],[-0.073559984564781,0.033344890922308,0.10987877845764],[-0.042221806943417,0.10359018296003,-0.10892689228058]],[[-0.36858701705933,-0.12556859850883,-0.044327575713396],[-0.070783503353596,-0.10223147273064,0.042363949120045],[0.33817133307457,-0.060430552810431,-0.078741386532784]],[[0.041643317788839,-0.042947880923748,-0.09017338603735],[-0.14325849711895,-0.067111514508724,-0.00525120832026],[0.0056406930088997,0.05191058665514,0.084622070193291]],[[0.037382032722235,-0.044968198984861,0.042539101094007],[-0.064201936125755,-0.071264334022999,-0.039746899157763],[0.0037033630069345,-0.19053623080254,-0.14116668701172]],[[-0.011047162115574,-0.014460718259215,0.18574611842632],[-0.028343526646495,0.0096028726547956,0.038627281785011],[-0.10894583165646,0.12848606705666,0.097279720008373]],[[0.051461346447468,0.045440398156643,0.19472068548203],[0.18638797104359,-0.11759607493877,-0.038704711943865],[-0.10182105004787,-0.14572216570377,0.031629282981157]],[[-0.059088833630085,0.026446526870131,0.092134676873684],[0.1391982883215,0.039480928331614,-0.062111359089613],[0.097447246313095,-0.1158631592989,-0.26331183314323]],[[0.014093435369432,0.0053397295996547,-0.0033864504657686],[-0.023939104750752,-0.02712557464838,-0.024509726092219],[0.061306700110435,0.010140493512154,-0.018869558349252]],[[-0.025966729968786,0.013228543102741,-0.028325814753771],[-0.094874314963818,-0.20880511403084,0.069079518318176],[0.045083664357662,-0.34538424015045,-0.0061957528814673]],[[-0.044926702976227,0.17083263397217,-0.12189196050167],[-0.097674109041691,-0.014124478213489,0.12361624091864],[0.12137934565544,-0.16224692761898,-0.040770426392555]],[[0.12978465855122,-0.092134036123753,-0.020002884790301],[0.021996062248945,0.044828876852989,0.069534882903099],[0.023366566747427,-0.047512602061033,-0.059601556509733]],[[0.03666165471077,0.08666405081749,-0.14149975776672],[-0.014830890111625,0.057211443781853,-0.11348047852516],[-0.11541691422462,0.047840099781752,0.037680577486753]],[[-0.17643567919731,0.10210942476988,-0.10616687685251],[-0.023273278027773,-0.035415876656771,-0.041912879794836],[0.06678781658411,0.082300968468189,-0.065757669508457]],[[-0.0047542667016387,0.034595251083374,-0.16503776609898],[-0.1191885843873,-0.082405269145966,-0.0770318582654],[-0.027697147801518,-0.066372387111187,-0.24044346809387]],[[-0.020790511742234,0.068170942366123,-0.10421505570412],[0.031965095549822,0.060227487236261,-0.041096407920122],[0.21086937189102,-0.06370086222887,-0.09723138064146]],[[0.012287792749703,0.204276278615,-0.10137024521828],[0.039931364357471,-0.08623294532299,-0.11820807307959],[0.095643170177937,0.018648013472557,0.20135474205017]],[[-0.28411719202995,-0.15030333399773,0.0049163177609444],[0.085029661655426,0.061000276356936,0.078489378094673],[0.20504212379456,-0.13685238361359,-0.10007709264755]],[[-0.28170248866081,0.12279376387596,0.087254203855991],[-0.066923193633556,-0.098552741110325,-0.11518628895283],[0.022131526842713,-0.055743496865034,0.17581160366535]],[[0.048872873187065,-0.0030435817316175,-0.011398483999074],[-0.071851134300232,0.00683105411008,0.059161107987165],[0.10930150747299,0.020573280751705,0.1464017778635]],[[-0.14460663497448,-0.0074791717343032,-0.18583290278912],[-0.16670246422291,0.0017724846256897,-0.12958627939224],[-0.1311998963356,0.0047197546809912,-0.00025461471523158]],[[-0.01569071225822,0.04166242480278,0.070489838719368],[0.0051790811121464,-0.054261825978756,-0.19649629294872],[-0.16153831779957,-0.17677445709705,-0.22148594260216]],[[0.035518825054169,-0.12616822123528,0.12841914594173],[-0.13107052445412,-0.10244626551867,0.19646136462688],[-0.014655292034149,0.014533552341163,0.053204789757729]],[[0.02821852080524,0.037008486688137,0.017740923911333],[0.09390140324831,-0.0098191192373633,-0.061887212097645],[-0.13733674585819,-0.062284540385008,-0.17189265787601]],[[-0.12208235263824,0.097058229148388,-0.052596271038055],[0.094551280140877,-0.030229043215513,-0.013886954635382],[-0.20497591793537,0.11756405234337,0.0019274712540209]],[[0.050019752234221,-0.0054905097931623,-0.034682981669903],[0.071682669222355,0.10667748004198,0.055067740380764],[-0.098869659006596,-0.24945794045925,-0.14567552506924]],[[0.039225175976753,0.16203519701958,-0.16243755817413],[0.0062269754707813,-0.12615042924881,-0.007675324101001],[-0.010789872147143,0.12408392876387,-0.058124497532845]],[[0.14629872143269,0.042701281607151,0.031933967024088],[0.14362770318985,-0.007255622651428,0.0053177243098617],[-0.22025166451931,0.16976688802242,-0.19175717234612]],[[-0.27662941813469,0.18787467479706,-0.27188065648079],[-0.099228344857693,-0.027511915192008,-0.042515646666288],[0.11187401413918,0.11135505884886,0.019272850826383]]],[[[-0.065681137144566,-0.025306865572929,-0.064794041216373],[0.04864214360714,-0.093745693564415,-0.21853566169739],[-0.15951642394066,-0.089317217469215,0.038187500089407]],[[0.010200835764408,0.064497463405132,0.14562870562077],[-0.061170101165771,0.032663010060787,0.099708206951618],[-0.063467599451542,0.041792243719101,0.017422318458557]],[[0.13665966689587,-0.076172180473804,0.015075604431331],[0.028504410758615,0.13345900177956,-0.095121689140797],[0.064728461205959,-0.015031043440104,0.051657047122717]],[[0.066495403647423,-0.026312060654163,0.075392112135887],[-0.14138320088387,-0.14216436445713,-0.018228139728308],[0.023143555969,-0.017829122021794,0.067858092486858]],[[-0.11542422324419,0.097589939832687,-0.0095720775425434],[0.024502843618393,-0.041450049728155,0.017731878906488],[-0.044688768684864,-0.076641589403152,0.044681578874588]],[[0.075185760855675,-0.098984055221081,-0.044467829167843],[-0.014045285992324,-0.18562160432339,-0.10221307724714],[0.016516759991646,-0.063653700053692,-0.085185952484608]],[[0.071282476186752,-0.089600376784801,-0.02395205758512],[-0.028445253148675,-0.015405964106321,0.022308623418212],[0.13184018433094,-0.060844160616398,-0.020902421325445]],[[0.012628833763301,-0.0096739809960127,-0.16341246664524],[0.028682267293334,0.015330612659454,0.026842722669244],[0.04590567946434,-0.0058136102743447,0.065787434577942]],[[0.040170896798372,0.045249186456203,0.032888572663069],[0.0068828016519547,-0.073430925607681,0.1606183797121],[-0.0083176363259554,-0.13897758722305,-0.06729307025671]],[[0.063778787851334,-0.049495302140713,-0.20546343922615],[0.044536955654621,0.035440623760223,-0.014593878760934],[0.010690932162106,0.075186185538769,0.34583818912506]],[[-0.018869811668992,-0.016041405498981,0.066208384931087],[-0.11478092521429,0.021335776895285,-0.024934474378824],[-0.1779261380434,0.022055914625525,-0.080247290432453]],[[0.077046163380146,-0.06582697480917,0.072379916906357],[-0.014984101988375,0.12396825104952,0.13756157457829],[-0.24132511019707,0.064008951187134,0.094667784869671]],[[-0.050636060535908,0.07691615819931,0.13644824922085],[0.016611114144325,0.068166814744473,-0.044173389673233],[-0.097991570830345,-0.0075319525785744,0.19377174973488]],[[-0.087718166410923,-0.0053333635441959,-0.067483708262444],[0.010164965875447,0.00047299027210101,-0.082292020320892],[0.019657883793116,0.071031279861927,-0.0044687273912132]],[[-0.1589402705431,-0.0031418495345861,0.059671424329281],[-0.10781624913216,-0.0044130231253803,0.1334220468998],[0.066583409905434,-0.12863785028458,-0.24350237846375]],[[-0.043821305036545,-0.0062658693641424,0.044489104300737],[-0.19927783310413,-0.19008450210094,0.10546896606684],[-0.26553279161453,-0.089694894850254,0.066663309931755]],[[0.0041066030971706,0.056092657148838,0.19155363738537],[-0.12092350423336,0.041961293667555,-0.033329367637634],[0.099047377705574,0.077137522399426,-0.1257716268301]],[[-0.047765273600817,-0.089459389448166,0.10188312828541],[-0.014597874134779,-0.038329925388098,-0.12618917226791],[0.096087008714676,0.020427973940969,-0.018000645563006]],[[-0.011718665249646,-0.12143731117249,-0.0010186362778768],[0.041829727590084,0.0032048379071057,0.054353766143322],[0.14154018461704,-0.064043492078781,-0.010549555532634]],[[-0.013089989311993,-0.17152865231037,0.075962364673615],[-0.12774355709553,-0.17733384668827,0.27352851629257],[0.13250683248043,0.045555476099253,0.14644449949265]],[[-0.025778274983168,0.13187721371651,0.016126502305269],[0.010229461826384,-0.083589270710945,-0.01674734428525],[-0.18342244625092,-0.20916187763214,-0.042717814445496]],[[0.026937767863274,-0.011042482219636,0.21474626660347],[0.043069157749414,-0.14484198391438,-0.15284013748169],[0.024491162970662,-0.086542941629887,-0.073852457106113]],[[0.050002835690975,-0.098710097372532,0.094558604061604],[-0.11210186034441,-0.081925481557846,-0.035347115248442],[-0.17387980222702,-0.20796166360378,0.018636943772435]],[[-0.019925003871322,-0.049729701131582,0.094356022775173],[-0.029187152162194,-0.23064063489437,0.13762427866459],[-0.019161829724908,-0.18719850480556,-0.10099278390408]],[[0.25136908888817,0.10267900675535,0.03410018235445],[0.11012899875641,0.051137991249561,-0.019006922841072],[-0.038984030485153,-0.059917978942394,-0.24671614170074]],[[0.024927370250225,-0.15813656151295,0.14153623580933],[-0.068494513630867,0.0024367405567318,0.10364334285259],[0.10713532567024,-0.056267064064741,0.026059843599796]],[[-0.066145151853561,-0.010694866999984,-0.10291019827127],[-0.14322763681412,-0.074403375387192,0.045808184891939],[-0.19571183621883,-0.17708694934845,-0.029569517821074]],[[-0.010934488847852,0.0050905449315906,0.082487314939499],[0.095567770302296,-0.029486238956451,0.015754761174321],[0.19437731802464,-0.10264983773232,0.15203110873699]],[[0.1933950483799,0.056676708161831,0.022371005266905],[-0.030552055686712,-0.047653716057539,-0.070146389305592],[0.018264038488269,0.078261367976665,-0.091699972748756]],[[-0.054306373000145,-0.16297343373299,-0.022106241434813],[-0.26962539553642,0.0075224870815873,0.10031994432211],[-0.35839152336121,-0.2235623896122,-0.040973786264658]],[[0.092943258583546,-0.057232353836298,0.12710101902485],[-0.12921245396137,-0.058304402977228,0.081352703273296],[0.020839942619205,-0.062929354608059,0.036800730973482]],[[0.0059451493434608,-0.11358269304037,0.095297984778881],[-0.041347071528435,-0.11814364045858,0.20476350188255],[0.053881451487541,-0.073808409273624,-0.045592423528433]],[[0.052668031305075,-0.022342648357153,-0.028531959280372],[-0.029434323310852,0.059668380767107,0.078224591910839],[0.081289626657963,0.12406320124865,-0.0014808146515861]],[[0.035633590072393,-0.039407104253769,-0.013589838519692],[-0.081233792006969,-0.073288105428219,0.012172809801996],[-0.092207163572311,-0.044534161686897,-0.06832242757082]],[[-0.037709958851337,-0.036436304450035,-0.22649247944355],[-0.085285216569901,0.067535482347012,-0.21620544791222],[-0.049725368618965,0.020382089540362,-0.022371523082256]],[[-0.080678500235081,0.017401000484824,0.086582109332085],[0.0021447623148561,-0.037772808223963,0.046617265790701],[-0.13530841469765,-0.090771198272705,-0.061833139508963]],[[0.072064854204655,0.034682329744101,-0.083066798746586],[-0.029724884778261,-0.0002663322375156,-0.014615617692471],[0.095487132668495,0.055312026292086,0.054420799016953]],[[0.11799010634422,0.14206448197365,0.066537275910378],[0.057634502649307,0.045729897916317,-0.057651586830616],[-0.16970625519753,0.0085549941286445,-0.047662187367678]],[[0.024302054196596,-0.15535567700863,-0.042993918061256],[0.071926683187485,-0.093766011297703,0.023186216130853],[-0.23040182888508,-0.097954794764519,-0.12161184847355]],[[-0.065700694918633,-0.051079656928778,0.053962022066116],[-0.048196412622929,-0.086183950304985,0.016374930739403],[0.021414656192064,-0.013908964581788,0.012827234342694]],[[-0.20816348493099,0.11225793510675,0.12866447865963],[0.029217377305031,-0.058318346738815,-0.022953839972615],[0.084983788430691,0.051329556852579,0.066413462162018]],[[0.036172706633806,0.091459564864635,0.20233342051506],[-0.14023314416409,-0.055313002318144,-0.022975875064731],[-0.0037457561120391,-0.12266559153795,0.10877778381109]],[[0.055280469357967,-0.026632616296411,-0.0068460139445961],[-0.026929592713714,-0.021881220862269,-0.061895363032818],[-0.098847918212414,-0.021364836022258,0.098973743617535]],[[-0.0024102674797177,-0.018086379393935,-0.021554475650191],[-0.019589813426137,-2.4378972739214e-05,-0.10988896340132],[0.07334677875042,0.069968208670616,0.038761213421822]],[[0.12548327445984,0.13798239827156,-0.0015393417561427],[-0.045909434556961,-0.010581048205495,0.054606612771749],[-0.27075269818306,0.017447693273425,-0.10756146907806]],[[-0.072476647794247,0.048949003219604,-0.0096013667061925],[-0.047516088932753,-0.074417136609554,0.0015823615249246],[-0.21603573858738,-0.12264404445887,0.17369364202023]],[[0.11306545883417,-0.24446178972721,0.027633346617222],[0.0098724067211151,0.15057821571827,-0.095636077225208],[0.072939440608025,-0.0080256247892976,0.015494432300329]],[[-0.068607524037361,-0.073406919836998,0.097832717001438],[-0.0062187733128667,-0.067334912717342,0.027090599760413],[-0.16192601621151,0.15266475081444,0.0094282394275069]],[[0.05015654861927,-0.095725417137146,-0.0017105411970988],[0.049225438386202,-0.0067821191623807,0.062794178724289],[-0.1529682725668,-0.014363707974553,0.068034246563911]],[[-0.0019924999214709,0.031294871121645,0.040238376706839],[-0.060951389372349,0.028825718909502,0.10774482041597],[-0.14567004144192,-0.13283801078796,-0.020516585558653]],[[-0.13219226896763,-0.12474016845226,-0.027721079066396],[-0.064523138105869,-0.017227930948138,0.032030750066042],[-0.18058583140373,-0.16191336512566,-0.072956442832947]],[[0.019269626587629,0.026953129097819,0.046919830143452],[0.053944680839777,-0.039827145636082,-0.16793757677078],[-0.04582167416811,0.026346608996391,0.04212087392807]],[[0.10240592807531,-0.065661251544952,0.022302035242319],[-0.067513048648834,0.047682873904705,-0.023410612717271],[-0.04238436371088,-0.064216993749142,0.027654655277729]],[[-0.086140662431717,0.027850423008204,-0.067165285348892],[0.030803395435214,0.10069516301155,-0.34444510936737],[-0.095554135739803,-0.26342740654945,-0.014543133787811]],[[-0.034575559198856,0.024085076525807,0.15641486644745],[-0.16253833472729,0.037491660565138,-0.014833427965641],[-0.015770966187119,0.10228298604488,-0.11261924356222]],[[-0.12641693651676,0.057327106595039,0.10908552259207],[-0.0112559562549,0.015453553758562,0.075516574084759],[-0.086904779076576,-0.042319912463427,-0.10640027374029]],[[0.11599233746529,-0.10170374065638,0.08805076777935],[-0.10680686682463,-0.014645762741566,0.084715910255909],[-0.21654145419598,-0.090772993862629,0.029137758538127]],[[-0.015365627594292,-0.10259444266558,0.13863921165466],[0.21291357278824,0.070491574704647,-0.026376266032457],[0.0077925939112902,-0.047438248991966,0.075127810239792]],[[-0.1197971701622,0.039096672087908,-0.009886221960187],[-0.036336481571198,-0.014440950006247,0.10211522877216],[-0.10707630217075,-0.19621597230434,0.095486037433147]],[[-0.073132798075676,0.02193752117455,0.02150603197515],[0.032220717519522,-0.041249167174101,0.17262144386768],[-0.089230209589005,0.01069613173604,-0.059533797204494]],[[-0.088972300291061,-0.037003800272942,0.096567824482918],[-0.12679900228977,-0.059234995394945,0.01380442455411],[-0.26723191142082,-0.11615604907274,0.020496096462011]],[[-0.11471358686686,-0.11599345505238,0.041757132858038],[-0.074556812644005,0.0623500905931,0.058954071253538],[-0.13494896888733,0.09070660918951,0.080120012164116]],[[-0.0019028530223295,0.028553608804941,-0.054011076688766],[-0.049360655248165,0.17416463792324,0.00062688818434253],[-0.18213002383709,0.0048407623544335,-0.037928763777018]],[[-0.038044985383749,-0.052942980080843,-0.026871720328927],[0.10951863974333,0.065154664218426,0.065367981791496],[0.1724070161581,0.10714116692543,-0.18507114052773]]],[[[0.063326939940453,-0.0088588334619999,0.024328315630555],[0.011243397369981,-0.067475140094757,-0.15014110505581],[0.074956461787224,0.0702850446105,0.0072775823064148]],[[-0.073237210512161,0.11666555702686,0.0389752574265],[0.12221046537161,0.025515703484416,0.061392389237881],[-0.22116638720036,-0.15706431865692,-0.050128858536482]],[[0.010432757437229,0.054295916110277,-0.057314272969961],[0.040206130594015,0.023010656237602,-0.047351613640785],[0.11932916939259,0.12162715941668,-0.0050412048585713]],[[-0.00055027357302606,0.11987209320068,0.043486513197422],[0.051237016916275,-0.028796983882785,-0.12496327608824],[0.061181791126728,0.010524776764214,-0.026019675657153]],[[0.076755858957767,0.023040812462568,-0.0029351070988923],[0.076055586338043,0.096116401255131,0.045690692961216],[-0.1027058660984,-0.01409868337214,-0.057167928665876]],[[0.043237920850515,-0.052679132670164,-0.084404215216637],[0.027699029073119,-0.027539944276214,0.10998214781284],[0.025644011795521,-0.019605670124292,0.029468670487404]],[[0.046372555196285,-0.004088313318789,-0.060235738754272],[0.023420469835401,-0.069338127970695,-0.0034183238167316],[0.11747890710831,-0.0019983511883765,-0.09036398679018]],[[0.077305898070335,0.053901985287666,0.085211537778378],[0.0087036127224565,0.087793864309788,0.027781093493104],[-0.049022514373064,-0.074279397726059,-0.028662977740169]],[[-0.078406289219856,0.016734765842557,0.016018213704228],[0.069626964628696,-0.028582409024239,-0.0046297376975417],[0.054775632917881,-0.072328120470047,-0.012404013425112]],[[0.26750093698502,0.039171066135168,0.0089763272553682],[-0.13755196332932,-0.10080729424953,-0.14117082953453],[-0.20794220268726,-0.03779274225235,0.039769388735294]],[[0.065198868513107,-0.048558861017227,-0.073171488940716],[-0.15695795416832,-0.035071589052677,-0.12113924324512],[-0.032849181443453,0.039388112723827,-0.0047242757864296]],[[0.13197299838066,0.03790295869112,0.11934322863817],[0.081713438034058,0.11369442939758,-0.12524904310703],[-0.13558785617352,-0.31372475624084,-0.22470951080322]],[[-0.15337212383747,-0.089413285255432,-0.24976243078709],[0.037604477256536,0.082693748176098,0.092873089015484],[0.079753547906876,-0.05652766674757,-0.25579392910004]],[[-0.22305366396904,-0.095675311982632,-0.10525088012218],[-0.12249481678009,0.0015512516256422,0.025282124057412],[0.13837547600269,0.085791952908039,0.010954113677144]],[[0.010418719612062,0.068256855010986,-0.036321721971035],[-0.027853546664119,0.032390367239714,-0.00073210353730246],[0.027181787416339,0.048194136470556,-0.048190478235483]],[[0.041743095964193,-0.17352947592735,0.073264382779598],[-0.00051201018504798,0.045192290097475,-0.10068524628878],[-0.34725150465965,-0.32307201623917,-0.072766788303852]],[[-0.05717895552516,-0.041164040565491,0.017742469906807],[-0.061480212956667,0.0045472751371562,-0.0076070884242654],[0.050189282745123,0.056617580354214,-0.020380495116115]],[[-0.065817095339298,-0.00065514323068783,-0.13900889456272],[0.052597533911467,-0.02617522329092,-0.16644239425659],[-0.035762827843428,-0.0010098078055307,-0.023011315613985]],[[-0.023003773763776,-0.058262169361115,0.13782289624214],[0.052137240767479,-0.092093072831631,0.040109816938639],[0.041863981634378,-0.082403376698494,-0.03597367554903]],[[-0.052967879921198,-0.056675169616938,-0.099394969642162],[0.05166869983077,0.028884345665574,0.21589116752148],[-0.13143679499626,0.013162078335881,-0.20346531271935]],[[-0.068271175026894,0.002632645657286,-0.14971688389778],[0.031495314091444,0.066784769296646,-0.023651486262679],[-0.13483662903309,0.11414965242147,-0.045480381697416]],[[0.11001014709473,0.1009243875742,-0.0704175978899],[0.029405049979687,-0.082831151783466,-0.14532117545605],[-0.080837219953537,0.051345154643059,0.0079302079975605]],[[0.020359117537737,-0.041390098631382,-0.11558402329683],[-0.086296074092388,-0.041225746273994,0.158417776227],[0.0064379945397377,0.036228813230991,-0.11276467144489]],[[-0.033117044717073,-0.18633621931076,0.015164203941822],[-0.037226375192404,0.0029695264529437,-0.047594618052244],[0.074704445898533,-0.013150279410183,-0.064804501831532]],[[0.052966061979532,0.073822967708111,0.047020524740219],[0.063772931694984,0.05857927724719,-0.1103188842535],[-0.00080056581646204,-0.12197908759117,-0.083647690713406]],[[-0.044352516531944,0.12117782980204,-0.012620882131159],[0.058125570416451,-0.0019118315540254,-0.15379557013512],[0.20086032152176,-0.074925407767296,0.029322288930416]],[[0.19370953738689,0.058888707309961,-0.04775882512331],[0.012974643148482,-0.0407022126019,-0.19955477118492],[-0.25340187549591,-0.10427210479975,-0.11981101334095]],[[0.16533213853836,-0.018226323649287,-0.15272502601147],[-0.021117109805346,0.064909040927887,0.0088389469310641],[-0.070412404835224,-0.073591880500317,-0.26950016617775]],[[-0.1192628890276,-0.015656413510442,0.031102383509278],[-0.083887055516243,-0.031601503491402,-0.01055521890521],[0.13664647936821,0.21903961896896,0.086972609162331]],[[0.059909071773291,0.079706944525242,-0.036319438368082],[0.020127208903432,0.036488521844149,-0.0081003848463297],[0.048797465860844,-0.038987081497908,-0.10102015733719]],[[-0.031728874891996,-0.14984327554703,-0.010158580727875],[0.040886390954256,0.03113710694015,0.013892692513764],[0.086369030177593,-0.003274317830801,-0.03869740664959]],[[0.082165144383907,0.10293740779161,0.079326532781124],[-0.028906874358654,0.033533804118633,-0.14279748499393],[0.034648332744837,-0.059119530022144,0.13155943155289]],[[-0.16248448193073,-0.0038660049904138,-0.066555768251419],[0.048677023500204,-0.0992177054286,0.15236960351467],[0.0223916079849,0.14389558136463,0.13385443389416]],[[-0.099911242723465,-0.10396368801594,0.019574508070946],[0.01941186748445,0.045504622161388,0.035663031041622],[-0.0012148538371548,-0.034020956605673,-0.02607406117022]],[[-0.0092243338003755,-0.031468600034714,-0.058725565671921],[-0.024124152958393,-0.031672429293394,0.071552976965904],[-0.0056659746915102,0.033459220081568,0.077109143137932]],[[-0.019932143390179,0.11215817183256,-0.13171641528606],[0.06857755035162,0.010363833978772,0.017583044245839],[-0.14770767092705,-0.085380844771862,-0.042740352451801]],[[0.025768496096134,-0.04273496568203,0.045065905898809],[-0.050146427005529,-0.01749243400991,-0.13996817171574],[-0.016723200678825,-0.020383454859257,0.040312867611647]],[[0.028735866770148,-0.0057497653178871,-0.11142389476299],[-0.11438377201557,-0.027106178924441,0.057954102754593],[-0.12175870686769,-0.001968517433852,0.14314472675323]],[[-0.14467494189739,-0.027826407924294,0.15636916458607],[-0.0091113699600101,-0.088606037199497,-0.14138826727867],[-0.0037146913819015,0.085984110832214,0.0093684950843453]],[[0.044643007218838,0.025507578626275,0.097392022609711],[-0.011301661841571,-0.060880653560162,-0.098431430757046],[-0.050797797739506,-0.0085395257920027,0.069559745490551]],[[0.036025274544954,-0.043948173522949,-0.070247799158096],[-0.072359904646873,0.033435996621847,0.015933308750391],[0.20893059670925,0.075418218970299,0.075417160987854]],[[0.070721819996834,0.031259067356586,0.12402330338955],[0.027309460565448,0.045552875846624,-0.064236231148243],[0.18375010788441,-0.063632480800152,-0.078141763806343]],[[-0.032065089792013,-0.026643248274922,-0.00062531133880839],[-0.075369358062744,0.015347041189671,-0.0096568958833814],[0.017373476177454,0.091342836618423,-0.046929903328419]],[[0.057728335261345,-0.0098912371322513,-0.093334540724754],[0.034454241394997,0.0011142318835482,-0.095801182091236],[0.01447397377342,0.065126091241837,0.023390160873532]],[[0.040561635047197,-0.096275217831135,0.064687497913837],[0.03408332914114,0.036756660789251,0.050243269652128],[0.031013900414109,-0.035418193787336,0.090400785207748]],[[0.15878568589687,0.027938760817051,-0.099811337888241],[0.064113706350327,0.072398260235786,0.083603054285049],[0.10518036037683,0.054165303707123,-0.016767363995314]],[[0.086324162781239,0.067108035087585,-0.027469463646412],[-0.035703077912331,0.20585653185844,0.095583342015743],[-0.14536380767822,-0.27065506577492,-0.16915924847126]],[[0.0057198442518711,0.019417745992541,-0.092936083674431],[0.0044216788373888,0.07839934527874,-0.047414045780897],[0.016971809789538,0.12322085350752,-0.097386464476585]],[[-0.076605334877968,0.067545682191849,0.038601890206337],[0.045653272420168,-0.15749923884869,-0.074506357312202],[0.14700257778168,-0.080280937254429,0.37012109160423]],[[0.067351818084717,0.12056773900986,0.0402413867414],[0.10137483477592,-0.034395039081573,0.032516181468964],[0.041539628058672,-0.13556443154812,-0.11255209892988]],[[-0.073722183704376,0.04276168346405,-0.043267361819744],[-0.00031939111067913,-0.071812383830547,0.10057482123375],[-0.17676967382431,0.003143769223243,-0.083528354763985]],[[0.18469697237015,0.00097059743711725,0.0029068181756884],[-0.027765452861786,0.011929257772863,-0.11190056800842],[-0.058510642498732,0.018818249925971,-0.099989123642445]],[[-0.035092104226351,0.033298775553703,-0.1516920030117],[-0.011477059684694,0.051262613385916,-0.046700440347195],[-0.018190283328295,0.052629742771387,0.0026801924686879]],[[0.08194787800312,-0.10172151774168,0.018223391845822],[0.10261225700378,-0.096656329929829,-0.017807934433222],[0.057484742254019,-0.049649201333523,0.010565798729658]],[[-0.08307271450758,0.14566816389561,-0.050808168947697],[-0.035737242549658,0.00058731011813506,-0.16090938448906],[-0.020617133006454,-0.04377705603838,-0.050965789705515]],[[0.10910956561565,-0.05085676163435,-0.041068464517593],[-0.018462173640728,-0.024482268840075,-0.070271857082844],[-0.0088476333767176,0.039884574711323,0.036147553473711]],[[-0.038695674389601,-0.021339787170291,0.028379805386066],[-0.067231930792332,-0.011706035584211,-0.0063367327675223],[-0.082959651947021,0.12820635735989,-0.064714230597019]],[[-0.11222040653229,0.028729101642966,-0.011476278305054],[0.094761431217194,0.093152143061161,-0.015604573301971],[0.016693230718374,-0.00035510380985215,0.039811529219151]],[[0.12416086345911,0.015007531270385,-0.075547210872173],[-0.044283464550972,0.034197144210339,-0.11424008011818],[0.099011354148388,-0.11083187162876,-0.2097842246294]],[[0.11878856271505,-0.057284589856863,0.080339893698692],[0.071605853736401,-0.0080865519121289,-0.15434312820435],[-0.039194941520691,-0.043831426650286,0.1512463837862]],[[-0.022776663303375,0.017013007774949,0.076625630259514],[0.01334928534925,0.018663514405489,0.0028969938866794],[-0.096698082983494,-0.076127946376801,0.076178498566151]],[[0.082863546907902,0.0079423217102885,-0.019326714798808],[-0.037546522915363,-0.17309626936913,-0.091629676520824],[0.16415823996067,-0.0929264575243,-0.078594386577606]],[[0.084530055522919,0.053537398576736,0.084585912525654],[0.025770695880055,0.014011692255735,0.009030063636601],[-0.16863682866096,0.038269516080618,-0.041482985019684]],[[-0.10933717340231,0.015720872208476,-0.011287122964859],[-0.060336824506521,-0.047487847507,-0.11649791896343],[0.10337439924479,0.058719784021378,0.015367652289569]]],[[[0.25689703226089,0.018182728439569,-0.093403711915016],[-0.051979843527079,-0.082791492342949,0.13090516626835],[-0.14750757813454,-0.12064172327518,0.24583804607391]],[[0.049820799380541,0.023800406605005,0.005786117631942],[0.12652359902859,0.013301657512784,-0.2250130623579],[0.072800725698471,0.070412240922451,-0.093664094805717]],[[0.097763501107693,-0.036696970462799,-0.017347065731883],[-0.072394691407681,-0.038913801312447,-0.033365942537785],[0.083782106637955,-0.062992423772812,0.12555482983589]],[[-0.084845259785652,-0.05433901399374,0.03463127464056],[0.043040547519922,-0.0027567327488214,-0.15167801082134],[-0.033868309110403,-0.038396701216698,0.14935380220413]],[[-0.011382464319468,-0.012252475135028,0.12034203112125],[-0.14366842806339,-0.022572534158826,0.16271860897541],[-0.32496547698975,0.14093424379826,-0.11160606145859]],[[-0.096737064421177,0.0055161449126899,0.0021981459576637],[-0.13258409500122,0.0001957639324246,0.041118178516626],[0.016963833943009,-0.062665432691574,-0.15072983503342]],[[0.071986921131611,0.042622543871403,0.003656999906525],[0.03694412112236,-0.10825688391924,-0.034691724926233],[-0.18017984926701,-0.051431436091661,0.0132458191365]],[[0.054488088935614,0.010038703680038,-0.037328250706196],[0.080723665654659,0.01647331379354,0.13720871508121],[-0.073103740811348,-0.02335362136364,0.076350890100002]],[[-0.029400380328298,0.055977270007133,-0.042106706649065],[0.0049287830479443,0.0028909498360008,-0.073938094079494],[-0.035942532122135,-0.0085225021466613,0.066350676119328]],[[0.075739614665508,0.00089101796038449,0.21409864723682],[-0.038631666451693,0.034442901611328,-0.059339247643948],[-0.19585520029068,-0.082001328468323,0.06277122348547]],[[0.010782077908516,-0.12664937973022,0.0028301472775638],[-0.0611074231565,-0.040093295276165,-0.18332625925541],[-0.0097202025353909,0.20863494277,-0.084682047367096]],[[-0.10405266284943,0.022730857133865,0.11924204230309],[-0.051006872206926,-0.010311818681657,0.052999746054411],[-0.037355035543442,-0.19418722391129,-0.27561756968498]],[[-0.062795646488667,-0.12497402727604,-0.045468531548977],[0.019961901009083,0.018365325406194,0.14661122858524],[-0.00159152795095,0.059634227305651,-0.19915615022182]],[[-0.027665505185723,-0.075365789234638,0.095079250633717],[0.031292680650949,0.084672302007675,0.0031108190305531],[-0.0045241727493703,0.18719574809074,-0.066840395331383]],[[-0.075554229319096,-0.0069649377837777,-0.097709953784943],[-0.050347950309515,0.077053546905518,-0.10955881327391],[-0.1093076094985,0.16719035804272,-0.13219203054905]],[[-0.050128035247326,-0.12473616749048,0.095570951700211],[0.064120247960091,0.12456280738115,0.10111994296312],[-0.15593320131302,-0.12792029976845,-0.10374035686255]],[[-0.067536517977715,-0.10705307871103,0.10175005346537],[0.07476682215929,0.13974539935589,-0.10668034851551],[-0.25718688964844,0.035896066576242,0.049026370048523]],[[-0.01969994418323,-0.1505765914917,0.21441289782524],[0.12663362920284,-0.077838353812695,-0.097812555730343],[-0.099738776683807,0.064597174525261,0.053436439484358]],[[-0.41914123296738,-0.29225906729698,-0.016025736927986],[0.10658563673496,-0.17796432971954,0.10326308757067],[0.13339577615261,-0.0052185342647135,0.018868466839194]],[[-0.20232392847538,0.0047150952741504,-0.024894554167986],[0.032499942928553,0.13585975766182,0.029884213581681],[-0.029657568782568,0.021647939458489,-0.055578660219908]],[[0.08063468337059,-0.077213115990162,0.0045764860697091],[-0.037809550762177,-0.029951862990856,0.046247761696577],[0.0073715220205486,-0.045800067484379,-0.11285076290369]],[[-0.082166783511639,0.058578208088875,-0.013655250892043],[0.21284657716751,0.058844484388828,-0.13313300907612],[-0.24822808802128,0.062585316598415,-0.3628945350647]],[[-0.013907709158957,-0.11407465487719,-0.06488748639822],[-0.07182989269495,-0.094650462269783,-0.10806156694889],[-0.071830496191978,0.00094611418899149,-0.10158856213093]],[[-0.037945304065943,0.039480943232775,0.039480142295361],[-0.036967076361179,-0.12263686954975,-0.024734979495406],[-0.058045666664839,-0.21500366926193,0.06705404073]],[[-0.023165911436081,0.042434338480234,-0.0084715196862817],[0.0131298257038,-0.057766389101744,0.0013777983840555],[-0.25694534182549,-0.014823376201093,-0.14531190693378]],[[0.039284780621529,-0.084737859666348,0.037274811416864],[-0.11632956564426,-0.014863632619381,-0.010098922997713],[-0.011650448665023,-0.12536945939064,-0.14871409535408]],[[-0.15575958788395,0.052825450897217,-0.0091123804450035],[0.0063483915291727,0.064508162438869,0.053319912403822],[-0.23748920857906,0.15700897574425,-0.31048515439034]],[[-0.091311685740948,-0.056857910007238,0.0069545763544738],[0.11843059211969,-0.073963157832623,-0.011370638385415],[0.0043511516414583,-0.18418794870377,-0.18624475598335]],[[0.066138885915279,-0.12500876188278,0.041778542101383],[0.057712875306606,-0.19075410068035,-0.096289120614529],[0.14955465495586,0.074310570955276,-0.022288227453828]],[[-0.06363857537508,-0.11173782497644,0.13788315653801],[-0.023020161315799,-0.025365054607391,0.09938944876194],[-0.07365770637989,-0.057982314378023,0.13087198138237]],[[0.0430120639503,0.032794620841742,0.050948038697243],[-0.018878620117903,-0.036207169294357,-0.17706386744976],[-0.031390871852636,-0.083660483360291,-0.10540889203548]],[[0.079920671880245,-0.018395723775029,-0.079570591449738],[0.12900125980377,0.049805410206318,-0.073704913258553],[0.028125425800681,-0.08312351256609,-0.0019902843050659]],[[-0.20817045867443,-0.18399539589882,-0.035371731966734],[-0.10090030729771,-0.09245939552784,0.069343514740467],[-0.0033046316821128,0.041273638606071,0.053614053875208]],[[-0.1158625036478,-0.058526813983917,0.032564472407103],[0.016758367419243,-0.12880112230778,-0.046213895082474],[0.11194486916065,-0.0047763320617378,-0.15123763680458]],[[-0.032872155308723,0.021356077864766,0.084878489375114],[0.085800006985664,0.02940764836967,0.01662882976234],[-0.074767924845219,0.017954112961888,0.045255396515131]],[[-0.013749046251178,0.01393866725266,0.00029852817533538],[0.089317873120308,0.13594229519367,0.083111576735973],[-0.05488695576787,0.0072223171591759,-0.15969161689281]],[[-0.034180078655481,0.096884213387966,-0.015924399718642],[-0.028816964477301,0.034156665205956,-0.16312171518803],[-0.023796826601028,0.21260617673397,-0.11043947935104]],[[-0.11863190680742,-0.1741733700037,-0.081744454801083],[0.090072110295296,0.013587832450867,0.24748653173447],[-0.022105609998107,0.027710638940334,0.059092525392771]],[[-0.019606571644545,0.015603999607265,0.042777564376593],[-0.046502407640219,-0.10171481966972,-0.073363922536373],[-0.12988929450512,-0.009937945753336,0.044907078146935]],[[0.018047355115414,0.068016313016415,0.038911525160074],[0.1009474247694,-0.019599363207817,0.024599609896541],[-0.060876112431288,-0.0685930326581,0.056081868708134]],[[-0.031248020008206,0.20592153072357,0.03572690859437],[-0.065555930137634,0.0033688861876726,0.0072612557560205],[-0.11615774035454,-0.051200769841671,-0.23595547676086]],[[-0.30252197384834,0.087732508778572,-0.080724351108074],[0.010460725985467,0.079416200518608,-0.079261213541031],[0.080596126616001,0.086986482143402,0.070946514606476]],[[0.0017680092714727,0.0334342867136,-0.10004379600286],[-0.12521271407604,0.056046765297651,-0.044904846698046],[-0.031652744859457,0.036989782005548,-0.097917251288891]],[[0.16908511519432,-0.033253081142902,0.041436273604631],[-0.10240484774113,0.059435155242682,0.019135048612952],[-0.049891747534275,0.0055689099244773,-0.032808128744364]],[[-0.054134920239449,-0.05683483928442,-0.088939651846886],[0.078850083053112,0.062844820320606,0.078539349138737],[0.11606989055872,-0.11777197569609,0.031892899423838]],[[0.12152172625065,-0.042879901826382,0.10105858743191],[-0.23123645782471,0.00084312912076712,-0.1185580343008],[-0.018987571820617,0.1375353038311,0.11766963452101]],[[0.15183611214161,0.12466711550951,0.087350942194462],[-0.099923610687256,0.083826296031475,-0.097758121788502],[-0.1072791442275,-0.28518709540367,-0.17825345695019]],[[-0.055859297513962,0.05576004460454,0.056005854159594],[-0.030863190069795,0.05057280510664,-0.036814600229263],[0.0086384359747171,-0.016369396820664,-0.27558723092079]],[[0.083537630736828,0.021550785750151,0.047701369971037],[-0.22047328948975,-0.088625609874725,-0.095475561916828],[-0.19544541835785,-0.055349431931973,0.27892333269119]],[[-0.040414627641439,-0.047763388603926,0.040834814310074],[-0.059195701032877,-0.014355971477926,0.069980725646019],[-0.06082171946764,-0.095371432602406,-0.059679307043552]],[[0.028051037341356,0.098389148712158,0.011362234130502],[0.060545314103365,-0.055512890219688,0.024390382692218],[-0.065580293536186,-0.03367705643177,0.065168917179108]],[[0.029323663562536,0.049068480730057,0.1025123372674],[0.024224145337939,0.10062289983034,-0.11292784661055],[-0.010085979476571,-0.20589746534824,-0.090383261442184]],[[0.012299178168178,0.13464353978634,-0.22823390364647],[-0.081536315381527,-0.018864063546062,0.038751523941755],[0.064584515988827,-0.16564948856831,0.12951293587685]],[[-0.063216812908649,-0.0065974788740277,0.089817255735397],[-0.031865056604147,-0.14630368351936,-0.046423114836216],[-0.13491018116474,-0.020103758201003,0.12020013481379]],[[-0.11502707749605,-0.13767990469933,0.012075452134013],[0.071715958416462,0.10993479192257,0.10425855219364],[-0.14541067183018,-0.18336552381516,-0.060821808874607]],[[-0.16403742134571,-0.042096853256226,-0.2264339029789],[0.10585515201092,0.062892787158489,0.097374729812145],[0.10516786575317,-0.015445186756551,-0.17595410346985]],[[-0.039909675717354,-0.12096212059259,-0.12967431545258],[0.0056953388266265,-0.11290222406387,-0.099409021437168],[0.057050086557865,-0.053921647369862,-0.011574488133192]],[[0.10754828900099,-0.24413906037807,-0.15421476960182],[0.1058603823185,0.079772092401981,-0.010446858592331],[-0.20223604142666,-0.042801417410374,0.018855042755604]],[[0.27676579356194,0.025464752689004,0.07370662689209],[-0.094188570976257,-0.17238418757915,-0.082639329135418],[0.11902914196253,-0.084197275340557,-0.10572046041489]],[[0.16957375407219,-0.12858578562737,0.2012056261301],[0.014424624852836,-0.17162020504475,0.070953391492367],[-0.0099828131496906,-0.070353865623474,0.027568323537707]],[[-0.023497486487031,-0.028272904455662,-0.05778655782342],[-0.04888729378581,-0.091999776661396,-0.088534772396088],[-0.20336958765984,-0.0077275694347918,-0.10821303725243]],[[0.075163193047047,-0.070887632668018,-0.21876664459705],[-0.076947033405304,0.032622184604406,-0.25806903839111],[0.026924831792712,0.12048898637295,0.16206228733063]],[[-0.072903454303741,0.037402309477329,0.098321251571178],[0.054813165217638,-0.11109951138496,-0.080547899007797],[0.099859721958637,0.1803030371666,-0.083533577620983]],[[0.34686732292175,0.018139809370041,-0.12262848764658],[-0.1405640989542,-0.10421728342772,-0.10097812116146],[-0.023014539852738,-0.11686363071203,-0.033717773854733]]],[[[-0.042023003101349,0.1927250623703,-0.04819643124938],[-0.076918356120586,-0.018546145409346,0.052234947681427],[0.091379754245281,0.054229691624641,0.045419134199619]],[[0.085051029920578,0.039856981486082,0.19445915520191],[-0.083819888532162,-0.048236142843962,-0.15541896224022],[-0.14496280252934,-0.0077582546509802,0.061915375292301]],[[-0.15130580961704,0.021334918215871,-0.026391230523586],[0.0086811743676662,0.11124194413424,-0.10784284025431],[0.010363252833486,-0.02215163782239,0.12319086492062]],[[0.076093971729279,0.041727017611265,-0.043298881500959],[0.0046237041242421,-0.042484130710363,0.0080401785671711],[0.0018168153474107,-0.044038768857718,0.1648733317852]],[[0.064869903028011,-0.07160098105669,0.06492705643177],[0.0061478419229388,-0.21833539009094,0.06915957480669],[-0.073711924254894,-0.056628685444593,0.066161252558231]],[[0.023937441408634,0.029735472053289,-0.036062467843294],[-0.076835907995701,-0.075706295669079,-0.013049237430096],[0.11234083771706,-0.10264440625906,0.15194098651409]],[[-0.12635244429111,-0.033738352358341,-0.025569463148713],[-0.18085615336895,0.0086167026311159,-0.10632916539907],[-0.025430353358388,-0.0058216634206474,0.067782670259476]],[[0.089706927537918,-0.052672136574984,0.015391764231026],[-0.040232505649328,-0.096549995243549,0.014538933522999],[-0.037192612886429,-0.079624481499195,0.18681076169014]],[[0.024236848577857,-0.045231945812702,0.00021207588724792],[-0.0097738076001406,-0.057822324335575,0.054727099835873],[0.050048902630806,0.026854675263166,-0.0063237100839615]],[[-0.30110594630241,-0.011942308396101,-0.07900607585907],[-0.0091166272759438,-0.017632646486163,0.11182447522879],[0.10701388865709,0.058934271335602,-0.046285893768072]],[[-0.30756804347038,0.14455188810825,0.11524321883917],[-0.020053204149008,0.078208528459072,0.045380301773548],[-0.019597504287958,-0.0027003674767911,-0.015942418947816]],[[0.0089041329920292,-0.074564762413502,-0.094212546944618],[0.022036137059331,-0.14984333515167,0.15070727467537],[-0.056377157568932,0.055067021399736,-0.051043845713139]],[[-0.14831237494946,-0.13125897943974,0.18836271762848],[0.10107428580523,-0.018048727884889,-0.05471919849515],[0.078871682286263,0.0022558094933629,0.032283455133438]],[[0.07434194535017,0.10840214043856,0.080631993710995],[0.11943901330233,0.11675515770912,0.077602840960026],[-0.02928152680397,-0.053373005241156,-0.060812618583441]],[[0.18778492510319,-0.031959872692823,0.12592147290707],[-0.10272654891014,-0.038832992315292,-0.086035624146461],[0.017520384863019,0.030801238492131,0.047273840755224]],[[-0.13697390258312,0.012339517474174,0.079405575990677],[-0.091775886714458,-0.13875408470631,0.046334698796272],[0.14789198338985,-0.058036126196384,0.094731651246548]],[[0.069877550005913,0.0055913892574608,-0.055174168199301],[0.0074967565014958,-0.028438802808523,0.020830448716879],[0.11144905537367,-0.01623684540391,0.079406514763832]],[[-0.020677631720901,0.10321940481663,-0.12033448368311],[0.0058309165760875,-0.032134335488081,-0.00046162924263626],[0.12070355564356,-0.0656977891922,-0.093987695872784]],[[-0.21331545710564,0.13243417441845,-0.019705336540937],[0.029598830267787,0.013677042908967,0.12966813147068],[-0.018614046275616,-0.028663778677583,-0.30194225907326]],[[0.088327936828136,0.025465140119195,0.0071191089227796],[-0.03690767288208,0.16099588572979,0.15994755923748],[0.031223982572556,0.030449591577053,0.16240531206131]],[[-0.13241258263588,0.074943117797375,0.044168397784233],[-0.035030581057072,-0.11786195635796,0.093104012310505],[-0.02761653997004,-0.02317762747407,-0.10544747114182]],[[-0.37996596097946,-0.035413265228271,-0.079750776290894],[-0.088706001639366,0.088158622384071,0.056692752987146],[0.11368558555841,0.04790223762393,0.090044513344765]],[[-0.052825886756182,-0.10637621581554,-0.14176182448864],[0.022137708961964,0.073926687240601,-0.11898064613342],[0.0066657271236181,-0.093568429350853,0.017672231420875]],[[-0.38261872529984,-0.0010953431483358,0.070062138140202],[-0.021055718883872,-0.021619625389576,0.0078703416511416],[0.084711477160454,-0.04555632174015,0.075007826089859]],[[-0.10789340734482,-0.23400881886482,-0.023819208145142],[0.060573600232601,0.010580526664853,0.045987155288458],[-0.10789156705141,0.0070023583248258,-0.013957902789116]],[[-0.16718386113644,-0.040584232658148,-0.039431758224964],[-0.10777337104082,-0.089208118617535,-0.046824403107166],[0.33089327812195,0.0039481418207288,-0.034381676465273]],[[0.092027381062508,-0.12632629275322,-0.05311194434762],[-0.056557387113571,-0.024326156824827,-0.078544832766056],[-0.22662335634232,-0.067403979599476,0.034096091985703]],[[-0.22778026759624,0.029955107718706,-0.1412229090929],[-0.089371755719185,-0.057708743959665,0.085073694586754],[0.083035379648209,-0.0070063574239612,-0.15530590713024]],[[-0.26467123627663,0.059944678097963,-0.22698318958282],[-0.14651902019978,-0.026297276839614,0.025199832394719],[0.064622715115547,0.022064447402954,0.0053458479233086]],[[0.20257470011711,0.0017379041528329,-0.12215061485767],[0.020219676196575,-0.10008519887924,0.015777781605721],[-0.013878768309951,-0.070844821631908,0.016468551009893]],[[-0.13485711812973,-0.051720917224884,0.13793770968914],[-0.17665475606918,-0.089056052267551,-0.099788799881935],[-0.010524889454246,-0.10665643960238,0.078850470483303]],[[0.0076215253211558,0.0028897472657263,-0.087643496692181],[0.091877162456512,0.10040108114481,0.012011557817459],[-0.077542029321194,0.035589091479778,-0.13097611069679]],[[0.1405384093523,0.062535151839256,0.11100082099438],[-0.1163451820612,0.033830780535936,0.070891104638577],[-0.036666207015514,0.024286162108183,-0.007324596401304]],[[0.06582610309124,-0.036153141409159,-0.045381471514702],[0.019995376467705,0.11678718775511,0.014105519279838],[0.040403999388218,-0.020033465698361,0.060696911066771]],[[0.18991330265999,-0.034858457744122,-0.068382658064365],[0.026481837034225,0.052107971161604,-0.030603537335992],[-0.017096467316151,0.07850194722414,-0.065727226436138]],[[0.20493140816689,-0.098670944571495,0.0054711159318686],[-0.21413272619247,-0.037671256810427,0.064565360546112],[0.064406394958496,0.10650179535151,0.050506990402937]],[[0.15060321986675,0.03299904987216,-0.077419884502888],[0.077947989106178,-0.065925054252148,-0.0011618146672845],[-0.0049870735965669,-0.088094606995583,-0.0052098678424954]],[[-0.018620556220412,0.063479535281658,0.074075467884541],[-0.050859738141298,0.088677532970905,-0.078077808022499],[-0.064807511866093,-0.095142707228661,0.038982473313808]],[[-0.019372431561351,0.035286486148834,0.071462243795395],[0.0024313342291862,-0.044626787304878,0.0050854692235589],[0.11469285190105,-0.17114958167076,-0.1340155005455]],[[-0.1450777053833,0.070174358785152,-0.049304686486721],[-0.03910756483674,-0.043580338358879,0.045262955129147],[-0.010386176407337,0.0058441492728889,0.04580283164978]],[[0.28848299384117,-0.062295388430357,-0.05060787498951],[0.12445366382599,0.052794493734837,0.052714940160513],[-0.065904803574085,-0.11134718358517,-0.024864085018635]],[[-0.012670583091676,0.023791529238224,0.044394366443157],[-0.1553547680378,0.0095055801793933,0.022311041131616],[-0.088511727750301,-0.12817853689194,0.1642357558012]],[[0.092621356248856,0.0047679054550827,0.037530932575464],[-0.082458987832069,0.01940019801259,-0.04098216816783],[-0.074604466557503,0.01953137665987,-0.010267172940075]],[[-0.082685865461826,0.031540844589472,-0.0021643571089953],[0.076979324221611,0.031739067286253,-0.022922810167074],[0.039220366626978,0.018768157809973,-0.086639903485775]],[[-0.13436076045036,-0.079987578094006,-0.024006679654121],[-0.061888013035059,-0.14463286101818,-0.042564164847136],[-0.019318744540215,-0.1156784966588,0.20163245499134]],[[-0.2207768112421,-0.11027815192938,0.093966618180275],[-0.19333557784557,-0.11861183494329,0.063100352883339],[0.099202767014503,0.11933329701424,0.061494063585997]],[[-0.44555932283401,-0.04317469522357,-0.35194781422615],[0.03717116266489,-0.19482935965061,0.17202800512314],[0.15189579129219,0.093499079346657,0.051690902560949]],[[-0.050669204443693,0.0057034464552999,-0.0032613915391266],[0.062419548630714,0.0016417779261246,0.09228627383709],[-0.063406951725483,-0.020596247166395,-0.049190290272236]],[[-0.051293522119522,0.020352056249976,0.0027671593707055],[-0.033377554267645,-0.018991712480783,0.053211409598589],[0.11919678747654,0.12059465795755,-0.2086740732193]],[[0.084405228495598,0.011600203812122,0.12315317243338],[-0.074391350150108,-0.052336286753416,-0.17670613527298],[-0.10038840770721,-0.005999174900353,0.14055322110653]],[[0.15420971810818,0.11611839383841,0.078853614628315],[-0.23694959282875,-0.067614175379276,0.017514351755381],[-0.061440013349056,0.069221027195454,-0.052129339426756]],[[-0.074386842548847,-0.064056865870953,-0.075023129582405],[0.084294617176056,-0.10514651238918,-0.03198591247201],[-0.13996508717537,0.040820527821779,-0.095822371542454]],[[0.047489184886217,-0.053444270044565,0.043529603630304],[0.060493245720863,0.018443992361426,-0.0066930246539414],[0.12783396244049,0.034738138318062,0.09042239934206]],[[-0.2802240550518,-0.071187481284142,-0.23414693772793],[-0.041016671806574,-0.037717923521996,0.095933638513088],[0.15031753480434,-0.010873384773731,-0.078802593052387]],[[-0.059008166193962,-0.007853189483285,0.072847686707973],[0.14604677259922,0.16020868718624,0.06939459592104],[-0.004498730879277,-0.25976097583771,0.081819675862789]],[[0.03440785780549,-0.039005387574434,-0.0074243196286261],[-0.032128483057022,0.051540859043598,0.024584291502833],[-0.11151813715696,0.053599018603563,-0.034999776631594]],[[0.073715083301067,-0.076657183468342,-0.17360137403011],[-0.031168024986982,0.016165424138308,-0.020664233714342],[-0.094911672174931,0.0084295002743602,-0.074700020253658]],[[-0.15640099346638,0.023299092426896,-0.0035480491351336],[0.073453187942505,-0.0080765914171934,0.039267048239708],[0.068007424473763,-0.1355337202549,0.010228591971099]],[[-0.16424392163754,-0.047338373959064,0.10300922393799],[0.051090195775032,-0.061008907854557,-0.039104085415602],[0.12769761681557,0.03352639824152,0.077199801802635]],[[-0.064268924295902,-0.064907737076283,-0.021384449675679],[0.038342695683241,-0.14799454808235,-0.021628255024552],[0.096624456346035,0.037450361996889,-0.00059908465482295]],[[0.0092919198796153,-0.013296375982463,-0.14558918774128],[-0.12145688384771,-0.035084426403046,-0.05371056869626],[-0.13448682427406,0.083132863044739,0.024547733366489]],[[0.0099697494879365,0.074096135795116,-0.0030342652462423],[-0.0011523090070114,0.0051308213733137,0.079613775014877],[0.128074452281,0.1419076025486,-0.12578144669533]],[[0.082346186041832,0.072779051959515,-0.11522098630667],[0.033879358321428,-0.027262151241302,-0.01328051276505],[-0.087345518171787,-0.062047440558672,-0.0092448191717267]],[[-0.23532377183437,0.046639703214169,-0.16900780797005],[-0.067760825157166,0.065867826342583,-0.014064793474972],[0.024839935824275,0.10265048593283,0.075879670679569]]],[[[0.036348570138216,-0.081545643508434,-0.063701488077641],[-0.08508575707674,0.020167138427496,-0.017033470794559],[-0.11458017677069,0.051667496562004,-0.014362085610628]],[[0.05099705979228,-0.065638571977615,0.089330516755581],[-0.078553602099419,-0.046048734337091,0.0137440841645],[0.039995189756155,0.059628780931234,-0.00088232842972502]],[[-0.094062730669975,0.025887731462717,-0.044248186051846],[0.014084385707974,-0.018092673271894,-0.11270949989557],[-0.12282218784094,0.026387859135866,0.15432690083981]],[[0.046914484351873,-0.0652184933424,-0.095142096281052],[-0.024966428056359,0.11317332088947,0.067845888435841],[-0.062173008918762,-0.025590060278773,-0.044803325086832]],[[-0.040772937238216,-0.056826114654541,-0.074773952364922],[0.085832484066486,-0.079494476318359,-0.0901263281703],[0.046321108937263,0.037437159568071,0.015519395470619]],[[0.080688580870628,0.010457800701261,-0.095867127180099],[0.11084477603436,-0.036607634276152,0.019006185233593],[0.053898815065622,-0.0060402536764741,-0.11235927790403]],[[-0.042559161782265,0.072459578514099,0.10787276923656],[0.0080999573692679,-0.067310564219952,-0.034410998225212],[-0.06180077418685,-0.1170820966363,0.011259100399911]],[[0.044731497764587,0.08643401414156,0.0030127894133329],[0.097448870539665,0.14460845291615,-0.058788806200027],[-0.032394617795944,0.059411700814962,-0.11887937784195]],[[0.082141265273094,-0.011184248141944,0.054283641278744],[0.080560736358166,-0.071215808391571,-0.059947583824396],[0.056600321084261,-0.064333461225033,-0.066387541592121]],[[0.094362325966358,0.058050032705069,0.092021837830544],[0.018798304721713,-0.085007183253765,0.073709718883038],[-0.045435801148415,0.0018936366541311,-0.0765740275383]],[[-0.11876446008682,-0.018580222502351,-0.074401959776878],[-0.00045390985906124,-0.11915507167578,-0.039518430829048],[-0.056248292326927,-0.0025553186424077,0.067830041050911]],[[0.043810971081257,0.04002919793129,-0.014722340740263],[-0.0049223164096475,0.014035240747035,0.051689110696316],[-0.083008199930191,0.018927915021777,0.0088934451341629]],[[-0.0077463448978961,0.097043491899967,0.0073302346281707],[0.029056353494525,-0.069532111287117,-0.10139551758766],[0.0020260205492377,0.15608178079128,-0.15720026195049]],[[-0.099335595965385,-0.086094878613949,-0.042177449911833],[-0.11051169782877,-0.057291064411402,0.061414659023285],[-0.086579293012619,0.047559943050146,-0.066627353429794]],[[0.14758084714413,-0.07482248544693,0.11096051335335],[-0.068465292453766,0.085659615695477,0.10773497074842],[-0.030012844130397,-0.12649421393871,-0.001764286425896]],[[0.090895555913448,0.035744104534388,0.028261249884963],[-0.052399754524231,-0.023856583982706,-0.10434217005968],[0.058992266654968,-0.03119264729321,0.0049858284182847]],[[0.007460743188858,-0.0047383969649673,0.074380584061146],[-0.0036022355780005,0.02994180098176,0.018714133650064],[0.085388213396072,-0.075940303504467,-0.13547855615616]],[[-0.032085627317429,0.038160279393196,0.099945545196533],[-0.10640829056501,-0.13750666379929,-0.018354384228587],[0.048732560127974,-0.051971953362226,-0.082829505205154]],[[-0.10545679181814,-0.043944712728262,-0.029805738478899],[-0.14853572845459,-0.071323856711388,-0.12599106132984],[-0.12174066156149,0.04650792106986,0.043117828667164]],[[-0.25819182395935,0.081479482352734,0.020474411547184],[-0.014418895356357,0.0031141203362495,-0.08499413728714],[-0.00048314404557459,0.044312290847301,0.013257557526231]],[[-0.018295710906386,-0.071874849498272,-0.011945780366659],[0.057251464575529,-0.0060186795890331,-0.019264044240117],[-0.058620437979698,-0.031695500016212,-0.038837142288685]],[[0.019822217524052,-0.026264665648341,0.0031148449052125],[-0.029204422608018,0.00066788529511541,-0.11621180176735],[-0.10096172988415,0.00070791109465063,0.095959722995758]],[[-0.010171686299145,-0.037865154445171,-0.0081886658445001],[-0.052919521927834,-0.060506086796522,0.01440139207989],[-0.072944730520248,-0.0073266327381134,-0.004231892991811]],[[-0.027433510869741,-0.051080889999866,-0.15409649908543],[-0.20445986092091,-0.19171893596649,-0.079000033438206],[0.04919695481658,0.090979680418968,-0.10592334717512]],[[0.0048135346733034,0.0068351486697793,0.01006408687681],[-0.089828774333,-0.025901192799211,0.12554021179676],[-0.08641105145216,0.039425399154425,0.047577671706676]],[[-0.032591629773378,-0.13806511461735,0.069354154169559],[-0.099069990217686,-0.033270865678787,-0.053548667579889],[0.044121850281954,0.030783651396632,-0.069975920021534]],[[0.030775981023908,0.1829170435667,-0.073521047830582],[-0.060178283601999,0.016226006671786,-0.057077534496784],[0.0082752043381333,0.041854001581669,-0.042171277105808]],[[0.091204755008221,0.035195875912905,0.018310392275453],[-0.040171474218369,0.032747577875853,-0.14102604985237],[-0.06266862154007,0.035317305475473,-0.034301619976759]],[[-0.065124571323395,0.027165897190571,0.065621674060822],[-0.015667967498302,0.090774938464165,0.054717775434256],[-0.14627005159855,-0.0076963687315583,0.17696408927441]],[[0.047483090311289,-0.063260331749916,-0.036537975072861],[-0.016945574432611,-0.016268232837319,-0.057454697787762],[-0.13365542888641,0.029195215553045,0.0066854315809906]],[[0.0071166646666825,0.076815538108349,0.11437489837408],[-0.06484167277813,-0.12169918417931,0.12050791084766],[0.12694704532623,-0.04766283929348,-0.040733225643635]],[[0.018278378993273,0.045781098306179,0.065718621015549],[0.02870879881084,0.035172995179892,0.00072413479210809],[-0.06604890525341,0.057970404624939,-0.060574229806662]],[[-0.051729895174503,-0.010133285075426,0.03358581289649],[-0.027306515723467,0.0084508908912539,-0.097789563238621],[0.083027772605419,-0.076883539557457,-0.045010879635811]],[[0.085472173988819,-0.020941870287061,-0.048520255833864],[-0.05001338198781,-0.017393929883838,0.0028347270563245],[-0.06626933068037,0.11308138817549,0.079512253403664]],[[-0.078336954116821,-0.083334483206272,0.022232169285417],[-0.083299204707146,0.0452123247087,-0.089041002094746],[-0.011987096630037,0.022859305143356,0.047486525028944]],[[0.068098232150078,-0.10148224234581,0.08785741776228],[0.050758816301823,0.0093348668888211,0.011189115233719],[0.010644513182342,-0.14420005679131,-0.048693932592869]],[[0.087095253169537,-0.02328728698194,-0.055239733308554],[-0.035103909671307,0.024635167792439,0.11102596670389],[-0.025446876883507,-0.023197993636131,0.095646806061268]],[[-0.047051131725311,0.034666705876589,0.12577527761459],[-0.0063726003281772,0.081082679331303,0.049387522041798],[0.027814900502563,-0.064488232135773,-0.016529748216271]],[[-0.11116739362478,-0.22140809893608,-0.047031342983246],[-0.1385370194912,-0.11947817355394,-0.027293371036649],[0.070389181375504,0.051363103091717,0.080201119184494]],[[0.027875794097781,0.16279472410679,-0.035276088863611],[0.01590177603066,-0.014688055031002,0.067070037126541],[-0.030975634232163,-0.002299880143255,-0.078398212790489]],[[0.057050757110119,0.037209168076515,-0.10136570036411],[0.081753194332123,-0.050939872860909,-0.049288600683212],[0.10965671390295,-0.0043180380016565,0.051636483520269]],[[-0.053137835115194,0.016876710578799,0.047370407730341],[0.01276889257133,-0.072776235640049,-0.0050651943311095],[0.058914422988892,-0.032591484487057,-0.038811150938272]],[[-0.039542473852634,-0.18310721218586,-0.026758912950754],[-0.034060880541801,0.15487784147263,-0.012238723225892],[-0.088061392307281,-0.035754907876253,0.075220890343189]],[[-0.13224674761295,-0.0086419815197587,0.058966867625713],[-0.0036086461041123,-0.015436040237546,0.021974269300699],[-0.04577537253499,0.064610682427883,0.10744915157557]],[[0.065473176538944,0.02133372053504,-0.09330976754427],[0.012875008396804,-0.22134810686111,-0.015084253624082],[0.018766919150949,0.017967134714127,0.06206651031971]],[[0.01473025418818,0.11925410479307,-0.1341173350811],[0.030257472768426,-0.098145842552185,0.054757550358772],[-0.048707596957684,0.0071166213601828,-0.031177278608084]],[[-0.018289344385266,-0.0022507589310408,-0.11520747840405],[-0.067406885325909,-0.078349843621254,0.063300855457783],[0.061161525547504,-0.042219523340464,-0.14477717876434]],[[-0.013001284562051,-0.010917386040092,-0.050936281681061],[-0.075662709772587,0.015891183167696,0.025912020355463],[0.010511421598494,-0.038873884826899,0.01644748263061]],[[-0.081284075975418,-0.036872554570436,-0.032923229038715],[-0.075107723474503,-0.016171673312783,-0.058738090097904],[-0.17765040695667,-0.15680293738842,-0.036074310541153]],[[-0.15298397839069,-0.18982489407063,0.073352992534637],[-0.017276817932725,0.059366095811129,-0.091071926057339],[0.026032732799649,0.0088524222373962,-0.048725519329309]],[[0.13903316855431,0.029899444431067,0.071572512388229],[-0.084804609417915,0.049857724457979,-0.02030398324132],[-0.032595250755548,-0.059574890881777,0.042292896658182]],[[0.045259639620781,0.072466447949409,0.14400878548622],[-0.026573130860925,-0.054253872483969,0.036457851529121],[0.039889179170132,0.046118333935738,-0.023278685286641]],[[-0.062865391373634,0.0055262893438339,-0.17749959230423],[0.10244936496019,-0.0034144790843129,-0.053611658513546],[-0.019513929262757,0.13658535480499,-0.08793231099844]],[[-0.085496135056019,-0.049468103796244,-0.16621081531048],[-0.11347939819098,0.063493013381958,-0.055467538535595],[-0.090670570731163,-0.0027784511912614,-0.18513292074203]],[[-0.024162832647562,-0.20904567837715,0.022680850699544],[0.086085304617882,0.020106945186853,-0.069296129047871],[-0.066578567028046,-0.058480903506279,-0.098483122885227]],[[0.040581915527582,-0.046301264315844,0.04982602596283],[0.11573614925146,-0.053018923848867,-0.031676765531301],[-0.0077095557935536,0.059737145900726,0.016386965289712]],[[-0.073047704994678,0.097907118499279,-0.16357009112835],[0.020257832482457,-0.13401624560356,-0.015227787196636],[0.064542360603809,-0.081323727965355,0.083103328943253]],[[-0.029749270528555,0.038503751158714,-0.038678824901581],[-0.11005501449108,-0.12081833183765,-0.064434543251991],[0.11659230291843,-0.084651932120323,-0.022460537031293]],[[0.10987161099911,0.14914225041866,-0.11019566655159],[0.03220148012042,0.072250664234161,-0.042132686823606],[-0.038014754652977,-0.06936813890934,-0.081554725766182]],[[-0.022815633565187,-0.0018152386182919,-0.11243260651827],[0.053774911910295,-0.002414803719148,0.0062968884594738],[-0.021818043664098,0.0084391934797168,-0.094184294342995]],[[-0.057170566171408,-0.00021178260794841,-0.030257690697908],[0.06481845676899,0.062519021332264,-0.0059828101657331],[0.011218025349081,-0.062536545097828,-0.012600883841515]],[[-0.15918955206871,-0.051631011068821,0.088515132665634],[-0.0068688443861902,0.038819625973701,0.081107184290886],[-0.026648843660951,-0.08445680886507,0.057581748813391]],[[0.1013713106513,-0.0178781170398,0.02371028624475],[0.094523869454861,0.068577229976654,0.043064352124929],[0.019685758277774,-0.066289737820625,-0.10495901852846]],[[-0.0032094793859869,0.095627397298813,-0.032078579068184],[-0.22659409046173,-0.029227685183287,0.10948266088963],[-0.061303839087486,-0.13649636507034,-0.064157821238041]]],[[[0.077861569821835,-0.068404093384743,0.010172632522881],[-0.031027417629957,-0.044483803212643,0.026439355686307],[0.019916243851185,-0.037944909185171,0.059420023113489]],[[-0.015747979283333,0.088500864803791,0.053101602941751],[-0.0095461830496788,-0.088589742779732,0.12711626291275],[0.042339313775301,0.031779762357473,0.038974963128567]],[[-0.055422648787498,-0.075147986412048,0.048670087009668],[-0.057765819132328,0.12172131985426,-0.048738662153482],[-0.019877146929502,-0.021595928817987,-0.012316069565713]],[[-0.024811826646328,0.046789988875389,-0.085233487188816],[-0.026031879708171,0.042826049029827,0.010262560099363],[-0.025774475187063,-0.024581884965301,0.0057781618088484]],[[-0.032213285565376,-0.0023381542414427,0.037866089493036],[0.015536687336862,0.065634869039059,0.014351698569953],[-0.0064743827097118,-0.079028159379959,-0.047091834247112]],[[-0.047441571950912,0.0044286204501987,-0.023591201752424],[-0.012179772369564,0.059438116848469,-0.031575031578541],[-0.0052428832277656,-0.0077590807341039,-0.040183510631323]],[[-0.069113276898861,0.04046355932951,-0.02352905832231],[0.042770329862833,0.073890082538128,-0.0032482831738889],[-0.12003766000271,-0.11134359240532,-0.060555726289749]],[[0.0021239581983536,0.012823397293687,-0.011688971891999],[-0.0074441679753363,0.027412049472332,-0.014674822799861],[-0.030793832615018,-0.045416370034218,0.047509498894215]],[[-0.024030113592744,0.083893954753876,-0.030251255258918],[0.12487361580133,0.0083082178607583,0.020626207813621],[-0.078025199472904,0.031133750453591,-0.064381934702396]],[[-0.041113931685686,-0.057211697101593,0.040746733546257],[-0.07600475102663,0.029982015490532,-0.02120952680707],[0.0056984908878803,-0.078186698257923,-0.012894430197775]],[[-0.049014940857887,0.0999765843153,-0.018487384542823],[0.045049700886011,0.0033934921957552,-0.068817928433418],[0.062106218189001,-0.036977428942919,0.054112952202559]],[[0.0012791311601177,-0.046696729958057,-0.057352844625711],[-0.017762439325452,0.037793312221766,0.035816226154566],[-0.075952380895615,-0.070340052247047,-0.066869132220745]],[[0.016140889376402,0.041896380484104,-0.0087896306067705],[0.089877121150494,0.03394415602088,-0.0050568706355989],[0.011077018454671,-0.043457064777613,0.0493477396667]],[[-0.016203463077545,0.15470200777054,0.061936654150486],[0.096816889941692,0.020514279603958,-0.045714266598225],[0.069037966430187,-0.0068798856809735,-0.021500319242477]],[[-0.020117364823818,0.025833703577518,-0.10784915089607],[-0.040273364633322,0.03187070786953,-0.021378504112363],[-0.025524020195007,0.022530168294907,0.017562754452229]],[[-0.014070411212742,-0.043368019163609,0.013644259423018],[-0.014236813411117,-0.054064691066742,0.041379295289516],[0.039653051644564,-0.040733076632023,-0.057315077632666]],[[0.034729082137346,-0.0057107768952847,-0.0096824960783124],[-0.054209310561419,0.0324382558465,0.0038295795675367],[-0.041186273097992,0.0060301213525236,-0.038053195923567]],[[0.037895794957876,-0.045077316462994,0.0043899053707719],[-0.0092545654624701,0.069970764219761,-0.10956650227308],[0.027916951104999,-0.06945689022541,0.0030210786499083]],[[-0.037876740098,-0.041110828518867,0.080094613134861],[0.09245702624321,0.0046798400580883,-0.036006767302752],[-0.028551323339343,-0.012084976769984,0.040647644549608]],[[-0.032821793109179,-0.066953882575035,0.056710559874773],[-0.048940971493721,-0.041029911488295,0.092512302100658],[0.0028864163905382,-0.030840557068586,-0.066145822405815]],[[-0.045050691813231,-0.0012779096141458,0.066269591450691],[0.012894879095256,-0.017270553857088,-0.0067791882902384],[-0.057693086564541,0.032196320593357,-0.12196807563305]],[[-0.033662054687738,-0.05361394956708,-0.043587181717157],[0.022439945489168,-0.020001832395792,0.013146553188562],[0.028870891779661,0.041376419365406,-0.024042766541243]],[[-0.094559103250504,-0.1249627918005,-0.10877957940102],[-0.063870467245579,-0.11465941369534,-0.018680950626731],[-0.086345039308071,-0.18372382223606,-0.0025917466264218]],[[0.042513243854046,-0.069898799061775,-0.06974983215332],[-0.088077023625374,-0.076320871710777,0.0045586815103889],[-2.6433435778017e-06,-0.042456921190023,-0.074465945363045]],[[0.01207138504833,0.013895736075938,-0.00040159103809856],[0.056395817548037,-0.074452571570873,-0.088238179683685],[0.012385191395879,0.12799581885338,0.0023055137135088]],[[-0.0017737046582624,-0.026333689689636,-0.036926463246346],[-0.016948347911239,0.042254578322172,-0.034062027931213],[-0.023809114471078,-0.046702530235052,0.097424447536469]],[[-0.029687145724893,-0.021584393456578,0.030749369412661],[0.048301413655281,-0.037119146436453,-0.08346339315176],[-0.1165057644248,-0.030457472428679,0.035221569240093]],[[-0.01425867062062,-0.033001139760017,-0.047505721449852],[0.015595909208059,-0.0012311503523961,0.03720385581255],[-0.0095366444438696,0.05583156645298,-0.098720528185368]],[[0.023198088631034,-0.053047828376293,0.026469901204109],[-0.027894774451852,-0.11040564626455,0.056782990694046],[-0.022699661552906,0.00413653627038,-0.015323540195823]],[[-0.0096599860116839,0.013048079796135,-0.069321557879448],[-0.040581904351711,0.028017964214087,-0.1201645731926],[0.016980174928904,-0.037353459745646,0.0030429714825004]],[[0.04393981769681,-0.087435327470303,0.01101206894964],[0.07586944848299,-0.048894345760345,0.068768687546253],[0.039050452411175,-0.0023084457498044,-0.059408579021692]],[[0.0035821897909045,-0.045578014105558,-0.0093500055372715],[0.0014395754551515,-0.014357851818204,0.0044278968125582],[-0.03104574047029,0.077732771635056,-0.017458351328969]],[[-0.068360231816769,-0.014649143442512,0.031538769602776],[0.0095029957592487,-0.001586826867424,-0.026896808296442],[0.0049995230510831,0.057591762393713,0.016521764919162]],[[-0.11438497155905,-0.019086118787527,-0.087032467126846],[-0.0564254373312,-0.070391811430454,0.072086066007614],[0.015750849619508,-0.075487419962883,-0.11147930473089]],[[0.041910510510206,-0.11012855172157,0.043983899056911],[0.019757833331823,-0.021948490291834,-0.013394663110375],[0.020340098068118,-0.069890283048153,-0.044393550604582]],[[0.036919459700584,0.045824114233255,-0.065819576382637],[-0.075212821364403,-0.00098904955666512,-0.0352838113904],[-0.034616034477949,0.078300163149834,0.042379762977362]],[[0.0073998807929456,-0.027378786355257,0.014245364814997],[0.0013624696293846,0.022074205800891,-0.016452742740512],[-0.059378009289503,0.070285186171532,0.0123954070732]],[[0.10513972491026,0.0032125774305314,0.077649503946304],[0.032092932611704,-0.01377977617085,0.09880742430687],[-0.028206504881382,0.020892979577184,0.03896726295352]],[[-0.13735380768776,-0.098220720887184,-0.015272315591574],[-0.03633601218462,-0.089553900063038,0.03739495202899],[0.063871890306473,-0.078624300658703,-0.0057845278643072]],[[-0.027704805135727,-0.024098183959723,0.051339246332645],[-0.062898971140385,0.023826813325286,-0.02917549200356],[-0.058600101619959,-0.06198163703084,-0.018445275723934]],[[-0.012247808277607,0.022061847150326,0.020980644971132],[0.013784719631076,-0.056244991719723,-0.070346638560295],[0.018578523769975,0.055266629904509,-0.011481862515211]],[[0.03230033069849,-0.072169616818428,-0.052776172757149],[0.065221413969994,-0.05747713893652,0.051995374262333],[-0.022478073835373,-0.052856799215078,-0.00525738671422]],[[-0.041345346719027,0.025928108021617,0.072496317327023],[-0.042506117373705,-0.07519193738699,-0.037862498313189],[-0.050581865012646,0.033606309443712,-0.030904626473784]],[[-0.10641877353191,-0.16193507611752,-0.12354621291161],[-0.22605490684509,-0.16126929223537,-0.10480988025665],[-0.1924043148756,-0.084996581077576,-0.060676015913486]],[[0.02376096136868,0.031011739745736,-0.02060778811574],[-0.072135761380196,-0.0089167887344956,0.033977095037699],[0.012209344655275,0.01606884226203,0.058402553200722]],[[-0.084653735160828,-0.016634745523334,0.065233871340752],[-0.052108693867922,0.099109329283237,0.027514083310962],[0.043160412460566,0.024693597108126,0.064843282103539]],[[0.05469336360693,-0.055488161742687,0.058880858123302],[-0.0034025995992124,-0.0031567024998367,-0.028390076011419],[-0.11585771292448,0.062939278781414,0.02303047850728]],[[-0.054116766899824,-0.01787593960762,0.030200716108084],[-0.062811464071274,-0.08594773709774,0.070600353181362],[-0.10094315558672,0.072541564702988,-0.10552855581045]],[[0.035342112183571,-0.035967368632555,-0.039538636803627],[-0.068862646818161,-0.020520450547338,0.049485731869936],[-0.0064382529817522,-0.0029834103770554,0.024945115670562]],[[-0.029952142387629,-0.014982943423092,-0.032048463821411],[0.038420781493187,-0.0041915141046047,-0.024118015542626],[-0.052071407437325,-0.0046785324811935,-0.010216660797596]],[[-0.076900415122509,-0.024918956682086,0.065909057855606],[-0.036541923880577,0.0045727295801044,-0.058269049972296],[0.00066041189711541,0.020496049895883,-0.050317406654358]],[[0.025657970458269,-0.1108323931694,-0.015341013669968],[-0.071211166679859,0.048455085605383,0.049876678735018],[-0.0080710472539067,0.020399287343025,-0.079221419990063]],[[0.063218757510185,-0.017768926918507,-0.035770040005445],[-0.11430629342794,-0.076035059988499,-0.0086883073672652],[-0.047215927392244,-0.016622051596642,0.033232759684324]],[[-0.026614064350724,0.069306619465351,0.044078342616558],[0.032186318188906,-0.077307678759098,-0.021257422864437],[-0.047460958361626,-0.060085542500019,0.078838035464287]],[[0.0030179489403963,-0.0062479246407747,-0.048463270068169],[-0.13261607289314,0.016515005379915,0.065201140940189],[-0.097666278481483,-0.033129829913378,-0.063342556357384]],[[0.099933192133904,-0.035809174180031,-0.02397008612752],[0.019498700276017,-0.091099746525288,-0.027414994314313],[0.02885696478188,-0.052952095866203,-0.0061486256308854]],[[-0.018810184672475,-0.05073245242238,-0.049028601497412],[-0.07769987732172,-0.056868199259043,-0.067336089909077],[-0.0032073273323476,-0.051569871604443,-0.10534184426069]],[[0.00057254731655121,0.01563672721386,-0.0017689978703856],[-8.4208884800319e-05,-0.00040132290450856,0.012327044270933],[0.024425014853477,-0.035285945981741,0.059171989560127]],[[0.042160410434008,0.024439791217446,-0.029852408915758],[0.019224774092436,-0.06475555151701,0.14004935324192],[0.12056214362383,0.023384353145957,-0.022747844457626]],[[0.066481433808804,-0.018522601574659,0.0047701634466648],[0.028830140829086,-0.042510382831097,-0.047409743070602],[0.04385931044817,-0.020047871395946,-0.053417265415192]],[[0.026755953207612,0.034729700535536,-0.024001577869058],[-0.042906038463116,-0.10143803805113,-0.081573627889156],[-0.01835541985929,-0.057326398789883,-0.045818507671356]],[[-0.045453809201717,-0.024554597213864,0.10860349237919],[-0.04522942006588,0.016735779121518,-0.040718857198954],[0.030766623094678,-0.00036307738628238,0.022776933386922]],[[-0.014233670197427,0.10936354845762,-0.13090001046658],[-0.060171816498041,0.001842402969487,-0.044250208884478],[-0.020848397165537,-0.011789854615927,0.031633656471968]],[[0.040221780538559,-0.055418025702238,0.0076317768543959],[0.028675792738795,-0.11119466274977,0.1075973212719],[-0.080704689025879,0.057741913944483,0.019511116668582]]],[[[0.14633528888226,0.084062770009041,-0.13538327813148],[0.11055257171392,-0.1031996384263,-0.10082714259624],[0.0042599090375006,0.093278147280216,-0.072480365633965]],[[0.051006566733122,0.10984778404236,0.030554449185729],[0.065729290246964,0.037834886461496,-0.0044241296127439],[0.10915818065405,-0.12927274405956,-0.073527880012989]],[[0.18586593866348,0.068786703050137,-0.027180323377252],[-0.068301849067211,0.0050303982570767,0.058777283877134],[0.027365513145924,0.15219706296921,-0.060852359980345]],[[-0.0043490012176335,-0.17103153467178,0.099828459322453],[-0.0078309206292033,0.0028852755203843,0.043914500623941],[0.04925287142396,0.079525403678417,-0.029110135510564]],[[0.1277684867382,-0.08511520922184,0.051834397017956],[-0.043978326022625,0.0021829919423908,0.099429801106453],[-0.03162856772542,-0.09064245223999,0.099893525242805]],[[0.060512963682413,-0.051219929009676,0.10247454047203],[-0.054728467017412,0.070941686630249,0.088225200772285],[-0.098681263625622,-0.089443020522594,-0.048365626484156]],[[0.054361671209335,-0.035114858299494,0.002468719612807],[-0.0033254073932767,-0.084657400846481,-0.024370698258281],[-0.10192320495844,-0.017357762902975,0.0039572678506374]],[[-0.016765965148807,-0.085188716650009,0.12598411738873],[0.01175351254642,-0.14756825566292,0.041802618652582],[0.13697245717049,-0.073690108954906,-0.079170420765877]],[[-0.022923210635781,0.1106081828475,-0.044660523533821],[-0.019727468490601,0.0039084772579372,-0.052201934158802],[-0.0069218883290887,0.045744314789772,-0.06791727244854]],[[-0.10247127711773,-0.073121875524521,0.063131958246231],[0.068890042603016,0.018213821575046,0.15971843898296],[-0.022160679101944,0.0068253511562943,-0.14159806072712]],[[0.11747946590185,-0.12271373718977,0.099994607269764],[0.098462663590908,0.0083353612571955,0.06076842918992],[-0.12353680282831,0.1101603731513,-0.15112321078777]],[[-0.071280673146248,0.065032705664635,0.14902174472809],[-0.080994196236134,0.013572220690548,0.017187988385558],[0.040823515504599,-0.01941391825676,0.00086705974536017]],[[0.021886684000492,-0.036210808902979,0.10696536302567],[0.045225810259581,0.032006170600653,-0.034665953367949],[0.12616163492203,0.027169493958354,0.13887183368206]],[[0.078352056443691,0.065272353589535,-0.087199479341507],[0.063804812729359,0.026343375444412,0.027796030044556],[0.14654017984867,0.090744771063328,0.026155091822147]],[[-0.16628536581993,0.071112118661404,0.10606784373522],[-0.0074538262560964,-0.1578826457262,-0.10299185663462],[0.048249457031488,0.037328813225031,0.13344694674015]],[[-0.063348837196827,-0.00084628636250272,0.27322307229042],[-0.25308573246002,0.056013483554125,-0.10856121778488],[-0.076347909867764,-0.12857332825661,0.13991801440716]],[[-0.06489160656929,-0.039253298193216,-0.00089778244728222],[-0.10204653441906,0.0067778485827148,0.11485280841589],[-0.23364987969398,-0.12269008159637,-0.025125119835138]],[[0.087738506495953,-0.10537142306566,-0.034137297421694],[0.0095067722722888,-0.086523301899433,-0.030417213216424],[0.0058117439039052,-0.051043413579464,-0.07758492231369]],[[0.11549123376608,-0.10161712020636,0.011932842433453],[0.075096353888512,0.18941423296928,-0.16585455834866],[0.077270582318306,0.20055976510048,-0.014979550614953]],[[0.029473401606083,-0.053083043545485,0.25120732188225],[0.16104665398598,-0.071223609149456,0.097460307180882],[0.11750653386116,0.042281866073608,0.068619310855865]],[[0.012684114277363,-0.057383213192225,-0.11571208387613],[-0.03866907954216,-0.17595389485359,-0.13795158267021],[-0.055628053843975,-0.084458947181702,0.022859178483486]],[[0.19644403457642,0.078316748142242,0.044434044510126],[0.013257340528071,0.081758372485638,0.021676931530237],[-0.055010799318552,-0.023646613582969,-0.099942691624165]],[[-0.22737900912762,0.025231665000319,0.1201973259449],[-0.10059855878353,-0.05374950543046,0.024148950353265],[-0.16919074952602,-0.047069173306227,0.013860494829714]],[[0.061308618634939,0.12886349856853,0.013973741792142],[-0.095967277884483,0.0033730871509761,0.023095618933439],[-0.065876826643944,0.041593477129936,-0.039402607828379]],[[-0.010687639005482,-0.0032616199459881,-0.10476436465979],[-0.04878993704915,-0.0039641759358346,0.088332504034042],[0.12187810987234,0.042452435940504,-0.095748074352741]],[[-0.04576138406992,-0.10965218394995,-0.095681063830853],[-0.12987548112869,0.062510907649994,0.16902425885201],[-0.14655217528343,-0.031552854925394,-0.018821975216269]],[[-0.24639554321766,-0.12462536990643,0.076773226261139],[-0.11452946066856,-0.164171859622,-0.026255033910275],[0.035427395254374,0.052010849118233,-0.0021421005949378]],[[0.13801315426826,-0.049728721380234,0.050671480596066],[0.024129284545779,-0.033456768840551,0.039198786020279],[0.037493232637644,-0.063070699572563,-0.056007567793131]],[[-0.11363769322634,0.041546192020178,0.15900872647762],[-0.038312442600727,0.072055779397488,-0.081996001303196],[0.01857983879745,-0.0113968802616,0.15263828635216]],[[-0.18608909845352,-0.11758784204721,0.037968851625919],[0.0033004579599947,-0.0057050758041441,0.028585759922862],[0.018274936825037,-0.24162730574608,0.0625284537673]],[[0.095122501254082,-0.069423422217369,0.060180354863405],[0.079921595752239,0.11754997819662,0.11678577214479],[-0.027753993868828,0.016689904034138,0.056680485606194]],[[-0.10186137259007,-0.10110934823751,-0.010708558373153],[-0.035864997655153,0.0029165861196816,0.016511388123035],[0.076421707868576,-0.027502030134201,-0.077701687812805]],[[0.094960086047649,0.10534525662661,-0.086996667087078],[0.031846091151237,-0.22737772762775,-0.080687463283539],[0.10521643608809,-0.055545005947351,-0.11226024478674]],[[-0.064941920340061,0.053847957402468,0.037998590618372],[-0.080949604511261,-0.057115405797958,-0.078188568353653],[-0.056866228580475,-0.021707756444812,0.11807227879763]],[[0.049584034830332,-0.098991475999355,0.039595242589712],[0.042201083153486,-0.037428256124258,0.084000170230865],[0.073041796684265,-0.037880819290876,0.0057972827926278]],[[-0.019713196903467,-0.063926212489605,0.080083526670933],[-0.048180870711803,0.015133735723794,-0.12771558761597],[0.028913930058479,0.00044043629895896,0.074491269886494]],[[0.05120811983943,-0.032769810408354,0.06981710344553],[0.090877883136272,-0.059588968753815,-0.11758994311094],[-0.062963597476482,0.032567881047726,0.099291443824768]],[[0.043721634894609,0.079355970025063,-0.090639792382717],[-0.020043587312102,0.053277928382158,-0.038906436413527],[-0.0034529692493379,-0.081508696079254,0.0053431265987456]],[[-0.090335614979267,-0.051283325999975,0.10167455673218],[-0.0098440321162343,-0.0160006955266,-0.0048851454630494],[-0.13205498456955,0.034889869391918,0.03565875440836]],[[-0.16567958891392,-0.1180262863636,0.018718520179391],[-0.086117528378963,-0.11346876621246,0.030946057289839],[-0.061988171190023,0.01218683924526,0.045549232512712]],[[0.040746301412582,-0.086449600756168,-0.011644282378256],[-0.14906594157219,0.099859446287155,0.10941732674837],[-0.10177779197693,-0.16089841723442,-0.0033269971609116]],[[-0.096147939562798,-0.1064660847187,0.10762299597263],[0.081147864460945,0.051893178373575,0.16965153813362],[-0.050028022378683,-0.052119515836239,-0.049521464854479]],[[-0.13526213169098,0.0069847032427788,0.05333748832345],[-0.089857190847397,-0.051615890115499,-0.072549305856228],[-0.0017524998402223,0.046717945486307,-0.1739657074213]],[[-0.012520892545581,-0.016026070341468,-0.042773123830557],[-0.018490608781576,-0.013612497597933,0.027920564636588],[-0.043926522135735,0.095078110694885,-0.074852108955383]],[[0.11894260346889,-0.16153034567833,0.073026247322559],[-0.067392110824585,-0.043473765254021,0.036049645394087],[0.092584364116192,-0.073948092758656,0.060345709323883]],[[0.11672274023294,-0.15068601071835,-0.014626510441303],[-0.14188796281815,0.1309584826231,-0.16303396224976],[0.070103339850903,0.051341321319342,-0.12549717724323]],[[0.057908210903406,0.064352266490459,-0.063396893441677],[0.0040384149178863,-0.10946904867887,-0.082139179110527],[0.057208109647036,0.010766526684165,0.042557775974274]],[[0.071661189198494,0.0016239582328126,-0.044574573636055],[0.061362035572529,0.019428623840213,0.0023937339428812],[0.064430736005306,-0.066239938139915,-0.011748131364584]],[[0.17728793621063,-0.011788485571742,-0.0012428535846993],[0.097505129873753,0.096193835139275,0.035798400640488],[0.013951661065221,-0.023014228790998,-0.11885792016983]],[[-0.035195849835873,-0.072084128856659,-0.010526791214943],[-0.11367107927799,0.019584316760302,-0.10028320550919],[0.0018862965516746,-0.008801992982626,0.09689074754715]],[[-0.097777850925922,-0.040250681340694,0.015370792709291],[-0.10718797147274,-0.039863392710686,0.039153683930635],[-0.11272259056568,0.056122694164515,0.0090009514242411]],[[-0.045989267528057,0.062601707875729,-0.048028964549303],[-0.098912246525288,0.022701159119606,0.042336903512478],[0.049874246120453,-0.019032400101423,-0.039050865918398]],[[-0.036193441599607,0.17717429995537,-0.038044545799494],[0.11714825034142,-0.019177474081516,0.069897390902042],[-0.18033380806446,0.0099095487967134,-0.062183804810047]],[[-0.088653989136219,-0.0063430373556912,-0.10724118351936],[0.090791396796703,-0.0019778709392995,0.092825882136822],[0.028433982282877,-0.045807525515556,-0.030678188428283]],[[-0.027976153418422,-0.16615433990955,-0.072830870747566],[-0.025051172822714,0.096000730991364,0.072529308497906],[0.060178898274899,-0.039618991315365,0.10463969409466]],[[-0.095291092991829,0.081869065761566,0.051577907055616],[0.01848872564733,0.016495613381267,-0.05851823836565],[-0.21034742891788,0.039519719779491,0.081756375730038]],[[-0.1838563978672,-0.051668670028448,0.045381039381027],[0.020145187154412,-0.071937419474125,0.16003426909447],[-0.069030836224556,0.0012599437031895,-0.034162718802691]],[[0.090586677193642,-0.062477804720402,0.020628409460187],[0.035272318869829,-0.068886645138264,0.12013486027718],[-0.10325809568167,0.035658318549395,0.080708332359791]],[[-0.1364901214838,0.065827585756779,-0.012783281505108],[0.080531306564808,-0.13459618389606,-0.01796424947679],[-0.036609753966331,-0.15496572852135,0.10038330405951]],[[-0.061255041509867,-0.13575692474842,0.10344514995813],[-0.13983185589314,-0.09800561517477,0.13595846295357],[0.069327279925346,-0.094304867088795,-0.07429401576519]],[[-0.041406527161598,-0.19960913062096,-0.10820142924786],[-0.049487486481667,-0.040525749325752,-0.053236830979586],[-0.079880550503731,0.076288275420666,0.063723109662533]],[[0.087757296860218,0.17640371620655,-0.088053911924362],[-0.082793146371841,-0.034990593791008,0.0066604623571038],[-0.088569149374962,-0.02321314625442,-0.19404219090939]],[[-0.073271848261356,-0.00083672284381464,-0.078121110796928],[-0.067219369113445,0.026592746376991,-0.098448857665062],[-0.072890631854534,-0.041048750281334,-0.00068313372321427]],[[-0.12865567207336,0.15507116913795,-0.013789677992463],[-0.070305794477463,-0.0063322097994387,-0.077590875327587],[-0.055383928120136,0.073171697556973,0.095082521438599]]],[[[0.086178302764893,-0.072536461055279,0.025569232180715],[0.10147999972105,0.072296410799026,-0.08028656244278],[0.059990137815475,0.039889179170132,0.14335103332996]],[[-0.039767015725374,-0.11714059114456,-0.004311524797231],[0.11544961482286,0.061455808579922,-0.013923705555499],[-0.057641759514809,0.031656466424465,-0.13106398284435]],[[-0.15878936648369,-0.068962052464485,-0.15746293962002],[0.059906773269176,0.12844227254391,-0.0081365872174501],[0.073295287787914,0.013035737909377,0.019542349502444]],[[-0.23624521493912,-0.023303871974349,-0.074713625013828],[-0.021152993664145,0.093750923871994,-0.045082859694958],[-0.045747712254524,-0.049350492656231,0.1209173053503]],[[-0.10574322193861,0.055197719484568,0.062866188585758],[-0.1397753059864,-0.055110517889261,-0.12813274562359],[0.014315370470285,-0.15572610497475,-0.15370543301105]],[[-0.082545578479767,-0.07295586168766,0.0041865613311529],[-0.020292151719332,0.010517346672714,-0.011754430830479],[0.072648547589779,0.085428714752197,0.045451242476702]],[[-0.031378570944071,-0.0031373770907521,-0.13341602683067],[-0.030959019437432,0.081261180341244,0.1315421462059],[0.039362799376249,0.087787598371506,-0.076542429625988]],[[-0.075582757592201,-0.0073303282260895,0.11260569095612],[-0.034135859459639,-0.14525911211967,-0.031246695667505],[0.075596623122692,-0.021899463608861,-0.04689971357584]],[[-0.0095873512327671,0.10070416331291,-0.01498260628432],[-0.013970146887004,0.041477717459202,-0.084034740924835],[0.024623902514577,-0.0094780987128615,-0.089773006737232]],[[-0.099365249276161,-0.075018100440502,-0.041924595832825],[-0.010242970660329,-0.15622717142105,0.067999362945557],[-0.056656669825315,-0.078364826738834,0.18419960141182]],[[0.041567724198103,0.13888590037823,-0.1152710095048],[0.019126512110233,-0.0037085118237883,-0.16294918954372],[0.028523810207844,-0.064903184771538,0.075169838964939]],[[-0.10264632105827,-0.074710316956043,-0.002100977813825],[-0.019402347505093,0.048793785274029,0.0061692972667515],[0.0037120552733541,0.063431188464165,0.0050103114917874]],[[-0.14523088932037,-0.0020493709016591,0.040217120200396],[-0.2224258184433,-0.1586606502533,0.10265121608973],[-0.0048412457108498,0.19189566373825,0.04274969175458]],[[0.062406301498413,-0.042121902108192,-0.064553968608379],[0.070997662842274,0.066264100372791,-0.087781146168709],[-0.022840330377221,-0.029737148433924,0.015093958936632]],[[-0.14443610608578,-0.075358897447586,-0.15395177900791],[0.080010078847408,0.078280724585056,-0.013455955311656],[-0.042876034975052,0.028855705633759,0.22434997558594]],[[-0.2249920964241,-0.064097419381142,-0.079747796058655],[-0.05384274572134,-0.093277379870415,0.054925944656134],[-0.083824969828129,0.16491110622883,0.17194099724293]],[[-0.021658208221197,-0.028860764577985,0.046610224992037],[0.07122391462326,0.013923506252468,0.047636114060879],[0.076117374002934,-0.067965731024742,0.014390734955668]],[[0.10212492197752,0.053167123347521,0.054772205650806],[0.040270496159792,-0.037270035594702,0.027154758572578],[0.014585198834538,-0.16850306093693,0.0067694508470595]],[[0.087173916399479,0.17591625452042,-0.12434180825949],[-0.010959434323013,0.0079125221818686,0.093713313341141],[0.099475689232349,-0.021094404160976,0.21683037281036]],[[0.050037827342749,-0.024892998859286,0.040705565363169],[0.18966786563396,0.10277631878853,-0.054405782371759],[0.19723084568977,0.04633666202426,0.015433412976563]],[[-0.09631772339344,0.12444000691175,0.05493750795722],[-8.0150086432695e-05,-0.017650172114372,0.10332851111889],[0.041744366288185,0.017616553232074,-0.15426318347454]],[[-0.099911026656628,0.18112683296204,0.024026118218899],[-0.093159481883049,-0.042969644069672,-0.065220192074776],[0.022087667137384,0.00065457029268146,-0.035973690450191]],[[-0.14230796694756,0.059782791882753,0.01836902089417],[-0.024673651903868,0.052885733544827,-0.20698750019073],[0.050671182572842,0.16236659884453,0.076439157128334]],[[-0.26001101732254,-0.1880682259798,-0.094092763960361],[-0.0614098533988,-0.040424894541502,0.05906343460083],[-0.010501167736948,0.11520946770906,0.091864757239819]],[[-0.060570433735847,-0.10932801663876,0.068184606730938],[-0.033930577337742,-0.07421812415123,-0.013145825825632],[-0.010685265995562,0.063280425965786,-0.26996064186096]],[[0.045257922261953,0.12649628520012,0.0016535074682906],[-0.13972148299217,-0.087672002613544,-0.095798619091511],[0.055023226886988,0.044479869306087,0.040898974984884]],[[-0.28569248318672,-0.28259727358818,-0.14670342206955],[0.062158174812794,0.040109559893608,0.012013217434287],[0.066019706428051,0.093465387821198,0.11734918504953]],[[0.00070342188701034,-0.036344449967146,0.11179306358099],[-0.10492420941591,-0.03773482888937,-0.021785147488117],[-0.04648308083415,0.094556502997875,0.0087819378823042]],[[-0.047047059983015,-0.062692023813725,-0.014251647517085],[-0.071484960615635,-0.066912770271301,-0.011340398341417],[0.077596761286259,0.078666500747204,-0.02206320874393]],[[-0.18400608003139,-0.13724023103714,-0.1718737334013],[0.089257471263409,0.01367271784693,-0.0042715789750218],[0.0020186074543744,0.032869208604097,0.071832180023193]],[[-0.27571275830269,-0.15640863776207,0.13908866047859],[-0.049314007163048,0.09074579179287,0.049046754837036],[-0.099169708788395,0.070597603917122,-0.0064143664203584]],[[-0.053155146539211,-0.055757220834494,-0.10122530907393],[0.06219045445323,0.12073640525341,0.060739517211914],[0.0061741857789457,0.18529319763184,0.16892197728157]],[[0.067506089806557,-0.11260686814785,-0.13483738899231],[-0.049046982079744,0.047313328832388,-0.01359929330647],[0.10340224951506,0.059833265841007,-0.011272138915956]],[[-0.066085875034332,-0.075484953820705,-0.0057579190470278],[-0.074789613485336,-0.033226285129786,-0.037834051996469],[0.043748296797276,0.031504761427641,-0.039792198687792]],[[-0.091050244867802,0.064839169383049,0.070410244166851],[-0.061134941875935,-0.30028188228607,0.0077821426093578],[-0.1020188704133,0.11087658256292,0.071431793272495]],[[-0.30102580785751,-0.12726029753685,-0.038320958614349],[-0.071993172168732,0.21093329787254,0.10186538100243],[0.0099489642307162,0.2597733438015,0.098186165094376]],[[-0.14703133702278,0.13501916825771,0.094909504055977],[0.0093199200928211,0.07641763985157,0.0016701070126146],[-0.1352172344923,-0.12165722250938,-0.075691893696785]],[[0.094147749245167,0.083735227584839,0.12652796506882],[-0.052054561674595,0.043733231723309,0.16533768177032],[-0.033644180744886,0.024426022544503,-0.14973691105843]],[[-0.087380327284336,-0.074013508856297,-0.061824038624763],[0.046239260584116,-0.026683893054724,0.20620898902416],[-0.11440258473158,0.013723375275731,0.0079253492876887]],[[-0.21948996186256,-0.18913947045803,0.018419355154037],[0.098504178225994,-0.074158661067486,0.033766742795706],[0.15930649638176,0.11140485852957,0.076981574296951]],[[0.088753633201122,0.11090061068535,0.058902632445097],[0.040253959596157,-0.075291864573956,0.056595358997583],[-0.073607847094536,-0.13253566622734,0.021833084523678]],[[-0.11875163018703,0.081290498375893,-0.064329825341702],[-0.041223131120205,-0.11707372963428,0.11552608758211],[0.10129499435425,-0.056645758450031,0.10237267613411]],[[-0.076937817037106,0.09463519603014,0.016609780490398],[-0.099354267120361,-0.0066572735086083,0.080392055213451],[0.051747556775808,-0.085582181811333,-0.073155432939529]],[[-0.0061579225584865,-0.038296032696962,0.060258641839027],[-0.027592012658715,0.043976135551929,-0.04709841683507],[-0.01348315551877,-0.063736438751221,0.064977638423443]],[[-0.12199631333351,-0.010109101422131,-0.098837621510029],[-0.00048210145905614,0.033428840339184,0.072340205311775],[0.044256988912821,-0.048540059477091,0.13569802045822]],[[-0.24345590174198,-0.021451864391565,-0.36737522482872],[-0.0025796554982662,0.066503718495369,0.015040075406432],[0.009154649451375,0.0011178767308593,0.10705014318228]],[[0.057017523795366,0.071808218955994,-0.15036448836327],[0.014068298973143,0.10314850509167,-0.10665676742792],[-0.011783674359322,-0.034162983298302,0.062102165073156]],[[0.06694795191288,-0.11721356958151,0.068023644387722],[0.1818090826273,0.02495564520359,-0.056129388511181],[-0.077726982533932,0.040667898952961,-0.13986404240131]],[[-0.061504289507866,0.063732460141182,-0.10058391839266],[-0.034751459956169,0.10051246732473,-0.0968157351017],[0.080844312906265,-0.091426528990269,0.041921325027943]],[[-0.12621560692787,-0.073089234530926,-0.036950405687094],[-0.12496370077133,-0.11100217700005,-0.031955879181623],[0.10998679697514,0.080621898174286,0.064399942755699]],[[-0.10742057859898,-0.082230597734451,-0.041246298700571],[0.018588433042169,-0.04392908886075,0.085557952523232],[0.04996670410037,0.12440279871225,0.041148401796818]],[[-0.1285550147295,0.028943946585059,-0.006732914596796],[0.11380913853645,0.24744646251202,-0.21196159720421],[0.019871059805155,-0.24885165691376,0.029786515980959]],[[0.028486713767052,-0.097412429749966,0.061807036399841],[-0.048077773302794,-0.020365642383695,0.072120979428291],[0.10332760214806,-0.010495983064175,0.07699403911829]],[[-0.10707819461823,-0.077154450118542,0.072012834250927],[0.15915386378765,0.056283909827471,-0.060126751661301],[0.081977665424347,-0.08404291421175,-0.11943467706442]],[[-0.11655409634113,0.15375147759914,0.066656775772572],[-0.1226585060358,0.01461744774133,0.21220490336418],[0.071676209568977,-0.033440422266722,-0.099808171391487]],[[-0.019942658022046,-0.065852858126163,0.04181232303381],[-0.00048008846351877,-0.030603827908635,0.2121506780386],[0.02573355846107,-0.011443589814007,-0.012056728824973]],[[-0.12792697548866,-0.059103351086378,-2.041819425358e-05],[0.012739399448037,-0.15190915763378,-0.066673472523689],[0.011915824376047,-0.0089804427698255,0.070839121937752]],[[-0.077639721333981,0.005057723261416,-0.18749916553497],[0.062494326382875,0.11348883807659,0.064169645309448],[-0.04388952255249,-0.03959833085537,0.089547507464886]],[[-0.17380601167679,0.0033378251828253,-0.19099518656731],[-0.12177578359842,0.023082355037332,0.1031681150198],[0.19182223081589,0.20511369407177,-0.051528330892324]],[[-0.10246538370848,-0.045300591737032,-0.23702538013458],[-0.040940973907709,-0.27366256713867,0.016259346157312],[0.050305113196373,0.034429959952831,0.14572671055794]],[[-0.00087666686158627,-0.0089739793911576,0.035757347941399],[-0.071354478597641,-0.13223071396351,-0.053172666579485],[0.11630960553885,0.029585728421807,0.042290460318327]],[[-0.054251905530691,0.1007916033268,0.042852193117142],[0.11370898038149,0.038756910711527,0.031286612153053],[-0.023070646449924,-0.052837628871202,0.080246485769749]],[[-0.19591124355793,-0.17900121212006,-0.12870100140572],[-0.089463256299496,-0.30186435580254,-0.12230698019266],[0.098120607435703,0.055358737707138,0.012564754113555]],[[-0.11429800838232,-0.037562813609838,-0.0022703902795911],[0.13494902849197,0.067146897315979,0.035047389566898],[0.054128915071487,0.097532704472542,-0.012985815294087]]],[[[-0.08291794359684,0.073146216571331,0.02126882225275],[0.058994732797146,-0.0032243311870843,-0.0044685159809887],[0.00065926846582443,-0.025346852838993,-0.024699667468667]],[[-0.04364375025034,-0.12861888110638,0.11129853129387],[0.11494968086481,-0.049685314297676,-0.04640332236886],[0.027350096032023,-0.024920031428337,-0.073390461504459]],[[0.0089922221377492,0.052300289273262,0.020305279642344],[0.066566295921803,-0.0571418851614,-0.17686359584332],[-0.027780210599303,-0.074968829751015,0.14684616029263]],[[-0.034307092428207,-0.12233868986368,-0.099937275052071],[-0.17682620882988,-0.0020804873201996,-0.069972477853298],[0.11897180974483,-0.031343843787909,-0.01382022537291]],[[0.023380791768432,0.010703477077186,-0.028240915387869],[-0.026282479986548,-0.11327837407589,0.082419238984585],[0.027533570304513,-0.013894929550588,-0.11469548195601]],[[0.084464207291603,0.0032977489754558,0.00026063533732668],[-0.047722693532705,-0.041724316775799,-0.012950708158314],[-0.1569932103157,0.045729093253613,-0.070354238152504]],[[-0.11476867645979,-0.019396835938096,-0.16944241523743],[0.0041730212979019,-0.01411656383425,0.049726683646441],[0.0029795388691127,-0.11849731951952,0.063259065151215]],[[-0.069382481276989,-0.07316929101944,-0.023830354213715],[-0.018815210089087,-0.11723516136408,0.061650563031435],[0.021909346804023,0.1086353212595,-0.0093005765229464]],[[-0.11152493208647,0.028008110821247,-0.03239219635725],[-0.013975379988551,0.077293194830418,0.089062944054604],[-0.017444085329771,-0.012040682137012,-0.035457741469145]],[[-0.042230699211359,-0.069331012666225,0.04538306966424],[0.11549467593431,-0.0035912645980716,-0.057339131832123],[-0.029152413830161,-0.07718250900507,0.090383298695087]],[[0.073644243180752,0.14681975543499,-0.06741476804018],[-0.037585731595755,-0.027415901422501,-0.11184443533421],[-0.025043103843927,-0.0061712148599327,-0.258764564991]],[[-0.10397642105818,-0.01935520209372,0.067499808967113],[0.020600901916623,0.083088375627995,0.041381943970919],[-0.011265358887613,-0.0070517216809094,0.097391799092293]],[[0.065722040832043,-0.02514360845089,0.20499888062477],[0.051646593958139,0.11310887336731,0.043673578649759],[-0.027455195784569,0.10422809422016,0.013462810777128]],[[-0.060226913541555,0.014200120232999,0.0027832058258355],[-0.003036679001525,-0.016021933406591,-0.034187749028206],[0.022488363087177,0.0074118417687714,-0.019942501559854]],[[0.097172640264034,0.12364987283945,-0.12619125843048],[0.071664489805698,-0.044860117137432,0.27717414498329],[0.088634625077248,-0.075169213116169,0.0061589851975441]],[[0.04843807965517,0.033751625567675,-0.0019601739477366],[-0.041497442871332,0.012516094371676,-0.0064264894463122],[-0.018330447375774,-0.023294428363442,-0.1182492300868]],[[0.10677517950535,-0.10900717228651,-0.13796532154083],[-0.0025204357225448,0.13556355237961,0.11822935193777],[0.02559562958777,0.0025165472179651,0.18035788834095]],[[0.086027666926384,-0.0079688644036651,-0.0096104787662625],[0.0045520602725446,-0.055650774389505,-0.017527030780911],[-0.085978545248508,0.034650463610888,0.039681568741798]],[[-0.032571520656347,0.088452540338039,-0.081026993691921],[-0.059935241937637,-0.071546770632267,-0.026880165562034],[0.0082171224057674,0.044722523540258,0.099478021264076]],[[0.020598664879799,0.092769734561443,0.20221447944641],[-0.037314929068089,0.088507041335106,0.033666722476482],[0.037205807864666,0.024767877534032,0.14672569930553]],[[0.11030574142933,-0.057440970093012,0.17528490722179],[-0.013226725161076,0.055392730981112,-0.070202745497227],[-0.14931108057499,-0.1497567743063,-0.072158075869083]],[[0.18181280791759,-0.062625579535961,0.27087980508804],[-0.024081805720925,0.08216567337513,-0.038644287735224],[0.050327368080616,-0.070138975977898,0.016900952905416]],[[-0.098797813057899,-0.10009925812483,0.080507420003414],[-0.04005640745163,-0.016300039365888,-0.018779812380672],[0.030000815168023,-0.064110644161701,-0.073016725480556]],[[0.0055442368611693,-0.0050411759875715,0.032607492059469],[0.021269839257002,-0.079219549894333,-0.0024959805887192],[-0.00041999493259937,-0.15302731096745,-0.17483298480511]],[[-0.048004098236561,-0.080647714436054,0.06472435593605],[0.0012496848357841,-0.088023118674755,-0.058965913951397],[0.041443191468716,-0.11069740355015,0.031055878847837]],[[0.1020982041955,0.16030991077423,0.091660998761654],[-0.026910208165646,0.059076935052872,-0.069120980799198],[0.010970442555845,-0.012825854122639,-0.17380851507187]],[[0.035149347037077,-0.13964433968067,-0.17330376803875],[0.035900328308344,-0.0087038045749068,0.060778740793467],[0.046152334660292,-0.074650555849075,-0.013123163022101]],[[0.15439899265766,-0.11556343734264,0.031065553426743],[-0.010968874208629,0.02265259809792,0.11527508497238],[0.064454756677151,-0.04382985830307,0.085681594908237]],[[0.10431563109159,-0.040968749672174,0.048474684357643],[0.00088074075756595,-0.14000649750233,-0.0094111692160368],[-0.033402159810066,-0.087301842868328,-0.04009236395359]],[[0.072695337235928,0.01506548281759,-0.034297287464142],[-0.07205593585968,0.022805308923125,-0.02019852399826],[-0.067586854100227,0.035961925983429,0.021898882463574]],[[-0.024300573393703,0.029373681172729,-0.1093877479434],[-0.11519449204206,-0.033187482506037,-0.023207096382976],[0.0055478205904365,-0.024657726287842,0.0040513887070119]],[[-0.03496004268527,-0.070993974804878,0.096457459032536],[0.028013445436954,-0.11303697526455,0.041262127459049],[0.063605673611164,-0.085162214934826,-0.049126788973808]],[[-0.070825017988682,-0.11714345961809,0.028425015509129],[0.10856340825558,-0.011714586056769,-0.001675843144767],[-0.099295236170292,0.038579728454351,0.098696544766426]],[[-0.01724854670465,-0.041574262082577,-0.021888617426157],[0.1004565730691,-0.075352944433689,-0.13423174619675],[-0.074758253991604,0.066868379712105,0.00445172842592]],[[0.022535616531968,-0.011705338954926,-0.10476668924093],[0.028561450541019,-0.11034142971039,0.1325448602438],[-0.010431130416691,0.0072632930241525,0.022437524050474]],[[-0.042385492473841,-0.036033824086189,-0.26637127995491],[-0.084351263940334,0.050214149057865,0.046177972108126],[0.050024408847094,-0.018652813509107,0.019314974546432]],[[-0.097598031163216,0.032819859683514,-0.15265525877476],[0.20408619940281,0.010631418786943,-0.015981059521437],[-0.11218597739935,-0.056350886821747,-0.027743324637413]],[[-0.00033967400668189,0.14884522557259,0.11163651943207],[-0.10274959355593,-0.039162535220385,0.13099931180477],[-0.023559410125017,0.042679764330387,0.022761417552829]],[[0.016839765012264,-0.094043582677841,0.0027380790561438],[0.064491249620914,-0.11418556421995,0.019845074042678],[0.0042794514447451,-0.17036761343479,0.046216335147619]],[[-0.051938962191343,-0.10065921396017,-0.041461508721113],[0.11255484819412,0.065919801592827,0.11896484345198],[0.039285827428102,0.016605699434876,-0.041657160967588]],[[-0.018474791198969,-0.00065970397554338,-0.06977316737175],[-0.012455776333809,0.026951782405376,-0.037875778973103],[0.085622601211071,0.015523189678788,-0.012535272166133]],[[-0.0090485066175461,0.13293543457985,0.078047201037407],[-0.0535141043365,-0.080588676035404,-0.0078016463667154],[-0.093830198049545,-0.13136836886406,0.06953551620245]],[[0.087354347109795,0.02899007499218,0.083701811730862],[0.047977048903704,0.050751958042383,-0.10252360254526],[-0.034765332937241,-0.064087368547916,-0.10253394395113]],[[0.097258053719997,0.041057880967855,0.060513272881508],[-0.0094733824953437,-0.04363651573658,-0.062434181571007],[0.012564573436975,0.018113261088729,-0.049341145902872]],[[-0.080288529396057,0.014944343827665,0.010331102646887],[0.02220911718905,-0.080907896161079,-0.064682990312576],[0.01383988186717,-0.038856092840433,-0.01477608922869]],[[0.053152665495872,0.038799520581961,0.10028996318579],[0.030610928311944,0.090275354683399,0.12391593307257],[0.050219982862473,0.043345350772142,-0.010732759721577]],[[-0.038513381034136,0.011893131770194,0.0059614791534841],[0.1238501444459,-0.095320880413055,-0.082556113600731],[-0.063747324049473,0.096197076141834,-0.0074106021784246]],[[0.077588476240635,0.0086503382772207,-0.069653406739235],[0.080517992377281,-0.074486419558525,0.072575077414513],[-0.11736648529768,-0.040333278477192,-0.013978199101985]],[[0.069961100816727,0.011870520189404,0.010951488278806],[-0.098253063857555,0.061789017170668,-0.004586121533066],[0.0031057226005942,-0.097610630095005,-0.080240301787853]],[[-0.035137385129929,-0.012702465057373,0.0047711911611259],[-0.011358520947397,0.028983905911446,0.067884348332882],[0.011685625649989,-0.00087567302398384,0.061524003744125]],[[-0.054109234362841,0.041553724557161,0.057613093405962],[0.051317874342203,-0.10069773346186,-0.1660917699337],[0.052119515836239,-0.0029354642610997,-0.032301802188158]],[[0.064832411706448,-0.03648566454649,0.038097374141216],[-0.021968828514218,0.0080451434478164,0.07443355768919],[0.055658925324678,0.025568008422852,0.035696126520634]],[[0.079651392996311,0.087347775697708,-0.026020493358374],[-0.14256769418716,-0.040768299251795,0.035472467541695],[0.099032387137413,0.13445200026035,0.075465366244316]],[[0.072682119905949,0.1792486011982,-0.072510302066803],[-0.083527617156506,-0.10119231790304,-0.0076064127497375],[-0.0053477990441024,0.1375786960125,-0.082042761147022]],[[-0.11607923358679,-0.1249336078763,-0.0019423539051786],[0.017665924504399,-0.011980171315372,-0.14811480045319],[0.037499215453863,-0.030912790447474,-0.033851440995932]],[[-0.087994165718555,0.068406961858273,-0.023656709119678],[-0.0083706136792898,-0.1106303781271,-0.021566588431597],[0.075339883565903,-0.14552284777164,0.041808374226093]],[[-0.11442247033119,-0.021405678242445,0.02367390692234],[-0.042649500072002,0.011037275195122,-0.1964555978775],[-0.0008085030131042,0.019112704321742,0.072895750403404]],[[-0.078625254333019,0.047234337776899,0.059813864529133],[0.0099644064903259,0.069570474326611,0.036307834088802],[0.021328954026103,0.074476942420006,-0.039320636540651]],[[-0.040440548211336,-0.023747162893414,-0.013040686026216],[-0.13019800186157,-0.11746973544359,-0.04081617295742],[0.093477874994278,-0.12026286870241,0.066170535981655]],[[-0.023168357089162,-0.025675315409899,0.19433383643627],[-0.075741961598396,0.049877241253853,-0.081975862383842],[-0.10417045652866,0.0052949171513319,-0.099540039896965]],[[0.0016607861034572,-0.074423350393772,-0.055250979959965],[-0.083749756217003,0.0039715627208352,0.16522327065468],[-0.026681993156672,-0.087195038795471,-0.0833904966712]],[[0.041921779513359,-0.027520479634404,-0.1642946600914],[-0.093236654996872,0.14164686203003,0.048648905009031],[0.065164789557457,0.062256418168545,-0.10429630428553]],[[-0.1860558539629,0.0096276188269258,-0.052809454500675],[-0.1066834628582,0.048307858407497,-0.19785661995411],[0.12504453957081,0.0042206482030451,-0.16548947989941]],[[-0.13643474876881,-0.069029308855534,-0.060458548367023],[-0.071643806993961,0.0011634476250038,0.14117661118507],[-0.0064072990790009,0.02757590636611,-0.038004714995623]]],[[[-0.15901003777981,-0.039406053721905,-0.013240200467408],[-0.034663528203964,0.033850163221359,0.19737902283669],[0.039904106408358,-0.030568417161703,-0.099515877664089]],[[-0.039666779339314,0.11169964820147,0.16604705154896],[-0.060891423374414,0.14568004012108,-0.17024266719818],[0.013223201967776,-0.11988085508347,-0.23365969955921]],[[0.095653064548969,-0.15233024954796,-0.084888242185116],[0.059153322130442,0.041952136904001,-0.063265509903431],[-0.08478020131588,0.1345073133707,-0.028055623173714]],[[0.063465543091297,-0.030009536072612,-0.0571119338274],[-0.038982786238194,-0.02123761922121,-0.0015376241644844],[0.097975380718708,-0.1836936622858,0.0029916584026068]],[[0.068326130509377,0.033497396856546,0.011601182632148],[-0.21311871707439,-0.13317635655403,-0.088102295994759],[0.13460576534271,-0.07111082971096,-0.025482879951596]],[[0.0093798097223043,-0.011119632050395,-0.19513265788555],[-0.086457028985023,0.10048782080412,-0.22658079862595],[0.19881017506123,-0.067155219614506,-0.054479822516441]],[[0.015864890068769,-0.0040863575413823,-0.21236374974251],[-0.076286248862743,-0.087320253252983,-0.26115068793297],[0.031555231660604,0.18071299791336,-0.19067692756653]],[[-0.20068641006947,0.007505617570132,0.079121351242065],[0.10198337584734,0.20826688408852,-0.055961657315493],[-0.056279741227627,0.00048419291852042,-0.1737047880888]],[[-0.064391046762466,0.022506004199386,-0.033407285809517],[0.10159751772881,-0.0054372372105718,0.049792934209108],[-0.072168484330177,-0.09191782772541,0.039659067988396]],[[0.021932268515229,0.0035773324780166,-0.046885296702385],[0.012601726688445,-0.070577844977379,0.17952990531921],[-0.20342819392681,-0.12552389502525,0.10135815292597]],[[0.092900238931179,0.083482153713703,0.056716054677963],[-0.25748983025551,-0.10195505619049,0.030085409060121],[0.097899354994297,0.061072625219822,0.15882109105587]],[[0.036329839378595,0.13837130367756,0.02817839384079],[0.0023661158047616,0.0063303569331765,0.012895097956061],[0.18218494951725,0.042725898325443,-0.028158826753497]],[[-0.04452507942915,-0.2263430505991,-0.034050740301609],[-0.024006891995668,-0.16260607540607,-0.050632126629353],[0.21686877310276,-0.14110939204693,0.0098381051793694]],[[-0.086459994316101,-0.10251265019178,-0.17246320843697],[-0.027497615665197,0.1118418648839,0.34099370241165],[0.12553405761719,0.029000440612435,0.081495188176632]],[[-0.010432321578264,-0.076885975897312,0.010123880580068],[0.044392198324203,-0.021934716030955,0.26924085617065],[-0.04671099036932,0.20444856584072,-0.070985950529575]],[[-0.26407065987587,-0.10562121868134,-0.063476882874966],[0.04814413189888,0.05304728448391,0.050085157155991],[-0.056828498840332,-0.088937863707542,-0.027688667178154]],[[-0.12094570696354,-0.18651919066906,0.14990872144699],[-0.044425293803215,-0.20990715920925,0.21464125812054],[0.14000569283962,-0.031461216509342,-0.041252184659243]],[[0.0089090270921588,0.045687343925238,0.065987154841423],[0.07656467705965,0.22170256078243,0.072162061929703],[-0.16289784014225,-0.2386029958725,0.042539853602648]],[[0.22296471893787,-0.061547342687845,-0.027274213731289],[-0.11443784832954,-0.043235145509243,-0.076451376080513],[0.24439276754856,-0.0051747946999967,0.085657097399235]],[[0.14487215876579,-0.1749751418829,-0.0093531738966703],[-0.10024809837341,-0.060899786651134,0.16556644439697],[0.072824537754059,0.043115373700857,0.40551751852036]],[[-0.23893551528454,0.029750501736999,0.11697812378407],[0.010700904764235,0.06800202280283,-0.010330677032471],[0.09255500882864,-0.052340693771839,-0.10100366920233]],[[-0.072997130453587,-0.078601472079754,0.12290082871914],[0.1258025765419,-0.0062003238126636,-0.12899816036224],[0.0070908730849624,-0.048633150756359,-0.08938867598772]],[[0.13430689275265,-0.071528166532516,-0.055823769420385],[-0.04045283421874,0.10125833749771,-0.16911469399929],[-0.09055944532156,-0.21722449362278,-0.011971388012171]],[[-0.14789837598801,0.022334786131978,-0.084567837417126],[-0.027664832770824,-0.013269471935928,-0.013226593844593],[-0.16891603171825,-0.28980702161789,0.056326925754547]],[[0.026809081435204,-0.16400851309299,0.19602125883102],[-0.12221051752567,0.049743253737688,-0.092163719236851],[-0.14896161854267,-0.027839105576277,0.19533513486385]],[[-0.107018224895,-0.054010264575481,-0.13795249164104],[-0.15709806978703,-0.091044552624226,-0.23322594165802],[0.144835755229,0.040047585964203,-0.063522808253765]],[[0.067247875034809,-0.056991513818502,-0.024673867970705],[0.031606256961823,0.03789958357811,0.037924792617559],[-0.093460150063038,0.011428614147007,-0.049317255616188]],[[0.016275554895401,0.041305456310511,-0.048787232488394],[0.10268237441778,0.049611859023571,-0.040593881160021],[-0.24595007300377,-0.083873845636845,-0.31960648298264]],[[0.14050517976284,0.082329541444778,0.12723128497601],[0.022031398490071,0.026001865044236,-0.046212453395128],[0.0015306095592678,0.09171524643898,-0.3339019715786]],[[0.073097184300423,0.091789707541466,-0.12516881525517],[0.026071613654494,0.031539831310511,0.036005057394505],[0.045646116137505,-0.0067950733937323,-0.015677770599723]],[[0.12271106243134,-0.0601786673069,0.099634796380997],[0.025314461439848,0.072502359747887,0.10498483479023],[0.072466872632504,-0.14619959890842,-0.16076135635376]],[[0.039971835911274,0.043679483234882,0.098541803658009],[-0.10128070414066,-0.083362922072411,-0.09496446698904],[-0.10158859938383,0.12224736809731,-0.024995500221848]],[[0.036737129092216,-0.0042212475091219,-0.18093425035477],[0.060343634337187,-0.03726776316762,-0.047720681875944],[-0.12967500090599,-0.048307087272406,-0.054295141249895]],[[-0.044035091996193,0.14185078442097,0.071963578462601],[-0.02639345638454,0.048171658068895,0.061241254210472],[-0.0029945035930723,0.043849777430296,0.080138117074966]],[[-0.13691808283329,-0.1177052333951,-0.27228310704231],[-0.13752563297749,0.19539286196232,0.087785363197327],[-0.13068827986717,-0.096623249351978,0.093932062387466]],[[0.088449828326702,-8.2702666986734e-05,0.077356763184071],[0.036032538861036,-0.071619309484959,-0.084127329289913],[-0.12229380011559,-0.14665873348713,0.10929479449987]],[[-0.028752150014043,0.044683519750834,-0.19161155819893],[0.042380563914776,0.10158752650023,0.033066380769014],[0.063486255705357,0.015195715241134,-0.017995124682784]],[[0.11681164056063,0.041400257498026,-0.17211829125881],[-0.11001037806273,0.10889582335949,0.20270320773125],[-0.1014723777771,0.058082778006792,0.29086112976074]],[[0.068551875650883,0.13589994609356,-0.19924479722977],[0.22827187180519,-0.13127264380455,-0.12622232735157],[-0.07524836063385,0.046002611517906,0.016381084918976]],[[-0.086257010698318,0.096714414656162,-0.025049861520529],[0.086219251155853,0.080838941037655,0.067732393741608],[-0.14043751358986,-0.073593437671661,-0.091913990676403]],[[-0.045272618532181,0.06751661747694,-0.076574489474297],[0.10971016436815,0.009572365321219,-0.12773010134697],[-0.093805603682995,-0.095680050551891,-0.034324362874031]],[[0.0030170327518135,-0.019451735541224,0.15943060815334],[0.066018097102642,0.036301344633102,0.04661076143384],[0.022518383339047,-0.030452193692327,-0.0090152071788907]],[[-0.10414040833712,0.046311389654875,-0.034202892333269],[0.052629701793194,-0.00091914110817015,0.047357361763716],[-0.15954612195492,-0.022393049672246,-0.20938219130039]],[[-0.12767808139324,-0.1068586781621,-0.11625402420759],[-0.0065866117365658,0.043899238109589,0.023669762536883],[0.086406178772449,-0.037410397082567,-0.0012298502260819]],[[-0.068417511880398,0.10804820805788,0.0036018786486238],[0.11044906079769,-0.059523466974497,0.15621523559093],[-0.045089025050402,-0.10706520080566,0.12512567639351]],[[-0.14785224199295,0.13843323290348,-0.19212055206299],[-0.16590756177902,0.18262016773224,0.11524686217308],[0.060823790729046,-0.023754440248013,0.10674753785133]],[[0.077607244253159,-0.17307469248772,0.12539382278919],[0.068038143217564,-0.011568765155971,-0.14244215190411],[0.065614521503448,-0.23585897684097,-0.032565675675869]],[[-0.030052786692977,-0.16566202044487,0.018903791904449],[-0.016151757910848,0.017691109329462,0.11463261395693],[0.050529722124338,-0.087348856031895,-0.08414513617754]],[[0.060242392122746,-0.095221601426601,-0.25332024693489],[-0.12570966780186,0.064063154160976,0.008243408985436],[-0.19004052877426,-0.15464316308498,-0.094255514442921]],[[0.046274434775114,-0.0087102605029941,-0.034233331680298],[-0.023427505046129,-0.010957176797092,-0.012715586461127],[0.16573390364647,0.012124843895435,-0.097886003553867]],[[0.10788465291262,0.00091173232067376,-0.0026734692510217],[0.001070711761713,0.063374072313309,-0.14198756217957],[-0.11276116222143,0.054435752332211,0.048673581331968]],[[0.076784789562225,0.070283465087414,0.043272532522678],[-0.0043052523396909,0.030696852132678,-0.051746033132076],[0.022908361628652,-0.16348560154438,-0.18150946497917]],[[0.035614285618067,-0.0019294936209917,0.012389942072332],[0.12964802980423,-0.0042210114188492,0.08771526068449],[0.027224259451032,0.01708147674799,-0.14188002049923]],[[-0.0624347217381,-0.012164959684014,-0.039956551045179],[0.21604886651039,-0.0020798947662115,0.064033508300781],[0.12340850383043,-0.076462857425213,-0.15594846010208]],[[-0.016946462914348,-0.12743851542473,0.017450643703341],[0.099249243736267,-0.16993609070778,0.036810621619225],[0.063252985477448,-0.032137211412191,-0.082687750458717]],[[-0.011488588526845,0.029041174799204,-0.0029139793477952],[-0.04358334466815,-0.017162399366498,0.032210320234299],[0.13185231387615,-0.010181228630245,0.0059278137050569]],[[0.012747995555401,-0.072349786758423,-0.045765608549118],[-0.075165666639805,0.097820818424225,-0.16416105628014],[-0.11315777152777,-0.010639123618603,0.069305583834648]],[[-0.2258482426405,-0.062777385115623,-0.10991049557924],[0.071137450635433,0.069065876305103,0.021158143877983],[0.081268042325974,0.27765372395515,-0.020691815763712]],[[-0.19658000767231,-0.32740372419357,-0.1368030756712],[0.12891626358032,0.10007948428392,-0.024972939863801],[0.031472969800234,-0.14917580783367,0.23504342138767]],[[-0.027278954163194,0.15516616404057,0.048308160156012],[-0.021484166383743,-0.092587485909462,-0.042465444654226],[-0.046767942607403,0.13779219985008,-0.18035681545734]],[[0.016643421724439,-0.039314288645983,0.032485239207745],[-0.19317312538624,-0.057456243783236,0.088328771293163],[0.22255139052868,0.12734571099281,0.18123829364777]],[[0.18509496748447,-0.013095528818667,0.071565739810467],[-0.1171113923192,-0.040069907903671,0.011575633659959],[0.032562613487244,0.058096509426832,0.018703017383814]],[[-0.1382909566164,-0.16705520451069,0.063696548342705],[0.025821205228567,0.15690331161022,0.064080573618412],[-0.039696987718344,0.094628050923347,-0.046189039945602]],[[-0.18712311983109,0.045635506510735,0.10990140587091],[-0.013798047788441,-0.045290868729353,0.062076460570097],[-0.11406431347132,0.082137316465378,0.017264276742935]]],[[[-0.11283024400473,0.022668361663818,0.11129078269005],[-0.065339848399162,-0.041234269738197,0.14018428325653],[0.070485189557076,0.020719969645143,-0.16125077009201]],[[0.174465700984,-0.073957055807114,0.096336431801319],[-0.082565143704414,-0.058559693396091,0.033225733786821],[0.0064157005399466,-0.024047238752246,0.14892272651196]],[[0.043050784617662,-0.018498711287975,0.060817405581474],[-0.0048666936345398,0.11295736581087,-0.15207241475582],[0.0094373533502221,0.064248934388161,-0.19849248230457]],[[0.039109189063311,-0.036962252110243,0.0032362574711442],[0.10426297038794,-0.066975489258766,-0.048297256231308],[-0.19536048173904,-0.21196813881397,0.035744301974773]],[[0.082112647593021,0.13247247040272,-0.14414373040199],[-0.094189539551735,-0.0029640044085681,0.040968660265207],[0.064386621117592,0.014355511404574,-0.074321404099464]],[[0.043422684073448,0.10190684348345,0.065936721861362],[0.006212173961103,-0.052234537899494,0.034843519330025],[0.13668951392174,-0.058564141392708,-0.05016341432929]],[[-0.12627848982811,0.043807916343212,0.015088932588696],[-0.035945676267147,0.063511155545712,-0.11371499300003],[0.097020827233791,0.10265055298805,-0.020867664366961]],[[-0.11074160784483,-0.00058485183399171,-0.10674361139536],[-0.030175663530827,0.041254173964262,-0.075551643967628],[0.075509801506996,-0.036200445145369,0.1131210103631]],[[-0.077911294996738,-0.014284707605839,0.092595554888248],[-0.010294176638126,0.04084150865674,0.045435812324286],[0.0092251384630799,0.026984250172973,-0.073891386389732]],[[0.13282752037048,0.025250025093555,0.098936997354031],[0.0064727142453194,-0.21137993037701,-0.030506677925587],[-0.042369183152914,-0.0035356506705284,-0.081030704081059]],[[0.14705307781696,0.050541721284389,0.054928440600634],[-0.015374330803752,-0.036105018109083,0.0062610977329314],[0.093871898949146,-0.035047143697739,-0.070929244160652]],[[-0.0075626438483596,0.022147977724671,0.020712163299322],[0.03196369856596,-0.053612153977156,-0.050772618502378],[0.050670478492975,0.04935934767127,0.08774521201849]],[[-0.0041275839321315,-0.0240298807621,-0.18475712835789],[-0.10454129427671,0.05631697550416,0.14439988136292],[0.067298635840416,-0.06083107739687,-0.087854377925396]],[[0.084342382848263,0.061873655766249,0.1389095634222],[-0.001690236851573,-0.17101310193539,-0.011785347945988],[-0.0031731573399156,0.17126198112965,-0.025299232453108]],[[-0.078518286347389,-0.12321148812771,0.064028866589069],[-0.29140615463257,0.015940256416798,0.050258938223124],[0.024820236489177,0.022131314501166,0.041082795709372]],[[0.066470868885517,0.045039582997561,0.011208516545594],[-0.031462628394365,0.074754372239113,0.06771083176136],[-0.015771463513374,0.0014234246918932,0.068792372941971]],[[0.021452609449625,0.10912524908781,-0.28894630074501],[0.071734450757504,0.022952334955335,0.098737761378288],[0.07366294413805,0.14695355296135,0.087412424385548]],[[-0.067426584661007,0.030550776049495,-0.18770904839039],[-0.04665058478713,0.10184501856565,0.015213444828987],[-0.04099902883172,-0.019375294446945,0.25140783190727]],[[-0.10307428240776,0.12241683155298,0.10861524939537],[-0.019464388489723,0.041411504149437,0.023395583033562],[-0.010173119604588,-0.011457554064691,-0.080218717455864]],[[0.023436790332198,0.15362496674061,-0.061268404126167],[-0.022201208397746,0.0098043065518141,-0.044858988374472],[0.15917885303497,0.10357425361872,-0.28353708982468]],[[-0.019909668713808,-0.025470247492194,0.019104423001409],[0.013445952907205,-0.0091238683089614,0.046339079737663],[0.033567108213902,-0.034772790968418,0.094487696886063]],[[-0.007058815099299,0.25062355399132,0.1010172739625],[0.03298370167613,0.12102148681879,-0.094352170825005],[-0.040713597089052,-0.1748920083046,-0.085331976413727]],[[0.17676091194153,-0.034152157604694,-0.052716199308634],[-0.05771105363965,-0.01165503077209,-0.1661255210638],[-0.092412084341049,-0.095558792352676,-0.21067240834236]],[[0.072953633964062,-0.065817967057228,-0.14315451681614],[0.04257819801569,-0.06903550028801,0.0060425191186368],[0.081323005259037,0.17695331573486,-0.14056222140789]],[[0.062339540570974,0.041329946368933,0.2424258440733],[0.016261933371425,0.20848654210567,0.005855078343302],[-0.038005080074072,0.0170814152807,0.020011886954308]],[[0.09288751333952,0.067236848175526,0.088157035410404],[-0.035226821899414,0.019365087151527,0.11632370203733],[-0.082552850246429,-0.21876230835915,-0.09992328286171]],[[0.04041925817728,0.007448086515069,-0.13129685819149],[0.076263956725597,0.046868901699781,-0.12200175970793],[0.18973204493523,0.059733092784882,-0.02615212649107]],[[-0.089837200939655,-0.25930553674698,-0.12042202800512],[-0.25726056098938,-0.069092087447643,0.13900354504585],[0.030707843601704,0.058133874088526,0.081854850053787]],[[-0.10456940531731,-0.06390929967165,-0.028616057708859],[-0.11064101010561,0.10674717277288,0.038853339850903],[0.23198640346527,-0.023428589105606,0.041327442973852]],[[-0.0027884531300515,0.039059419184923,0.2106406390667],[0.068843819200993,-0.028121871873736,0.10478635132313],[-0.047852862626314,-0.20394498109818,-0.10512011498213]],[[0.13318069279194,0.047966886311769,-0.173010379076],[-0.067955955862999,-0.082474514842033,-0.0074568465352058],[0.014958714134991,-0.18791465461254,0.086811617016792]],[[0.041935574263334,-0.1045879945159,-0.22447803616524],[-0.062841229140759,0.0017065654974431,0.1707576662302],[-0.026539361104369,0.098200365900993,0.11122090369463]],[[0.043447863310575,-0.05891028419137,-0.066357664763927],[-0.12008862942457,0.058807894587517,0.0044417874887586],[-0.017059093341231,-0.067974604666233,-0.062086999416351]],[[0.023494837805629,-0.050854802131653,0.040328793227673],[0.060094382613897,-0.0093374298885465,0.042999364435673],[-0.10822732746601,-0.04056504368782,0.0630804002285]],[[0.18927831947803,0.0012729661539197,0.017029820010066],[-0.023449515923858,-0.08149628341198,-0.11625051498413],[-0.04741257801652,-0.23904626071453,-0.20029138028622]],[[-0.173005387187,-0.12896148860455,-0.20075422525406],[-0.078028775751591,-0.02146415412426,-0.062346015125513],[0.046264071017504,-0.069254823029041,0.025077475234866]],[[-0.035826500505209,-0.16464968025684,-0.14782509207726],[-0.026121666654944,-0.083002634346485,0.016783686354756],[-0.049303390085697,0.151192933321,0.12039436399937]],[[0.20682142674923,0.13901311159134,0.29168310761452],[0.10920832306147,0.090394243597984,-0.020272724330425],[-0.12854482233524,-0.12231779843569,-0.0075022769160569]],[[0.058547705411911,0.10447637736797,0.082869566977024],[0.035345293581486,0.0040244632400572,-0.0067861597053707],[0.17490889132023,-0.10896214842796,-0.1367260068655]],[[-0.079066470265388,-0.017074845731258,0.1350756585598],[0.01732606254518,0.054790891706944,0.041519705206156],[-0.15996481478214,0.030384737998247,-0.071104750037193]],[[0.0028638911899179,0.024778949096799,0.040274612605572],[-0.0055239340290427,-0.088291957974434,0.12140113860369],[-0.17893598973751,0.018379295244813,-0.050108730792999]],[[0.048994746059179,0.012857545167208,0.028390785679221],[0.029926104471087,-0.10142332315445,0.011712301522493],[-0.070374689996243,0.080884389579296,0.096119113266468]],[[0.17657147347927,-0.053801756352186,0.10245167464018],[0.031188786029816,-0.0014769772533327,-0.060933545231819],[-0.025036687031388,0.031165510416031,0.02587590739131]],[[0.12303513288498,0.033037729561329,0.04659665748477],[0.013266519643366,-0.019198603928089,-0.12543070316315],[-0.066612750291824,0.045361068099737,-0.044201128184795]],[[0.119648180902,-0.07645083963871,-0.0087003735825419],[0.12377617508173,-0.13677430152893,-0.030792457982898],[-0.17362581193447,-0.093072295188904,-0.089211702346802]],[[0.12496663630009,-0.22205863893032,0.025457881391048],[0.060227181762457,-0.075871959328651,0.013843167573214],[0.082199484109879,0.063640847802162,-0.061531744897366]],[[0.088685624301434,-0.063766680657864,0.15931244194508],[0.13101878762245,0.024516152217984,-0.074530243873596],[0.090455830097198,-0.039373349398375,0.050565212965012]],[[0.023089105263352,0.060846675187349,0.10260338336229],[0.0089161330834031,-0.039247024804354,0.0029203018639237],[-0.030097445473075,-0.13382349908352,0.07583275437355]],[[0.092895865440369,0.11914429813623,0.059330806136131],[-0.059358134865761,-0.12277033179998,-0.086752697825432],[0.15248018503189,0.027595400810242,-0.25967833399773]],[[0.021307634189725,-0.024001035839319,-0.023828107863665],[0.017916169017553,-0.084945544600487,-0.16363683342934],[-0.10504402220249,0.094376116991043,-0.042403481900692]],[[0.094274289906025,-0.002003755653277,0.017508177086711],[-0.003329784842208,-0.0028666362632066,0.018799943849444],[0.079006783664227,0.001873355358839,0.030396016314626]],[[-0.0031238724477589,-0.029526306316257,0.0096478061750531],[0.03247357904911,-0.012808855623007,0.063943885266781],[0.081881523132324,0.020275773480535,-0.00089002650929615]],[[0.073714822530746,0.07462415099144,0.046161916106939],[0.079335808753967,0.034899119287729,-0.10130007565022],[-0.077190294861794,0.066679693758488,-0.06053913384676]],[[-0.029431875795126,-0.0403733253479,0.21898341178894],[-0.069892250001431,0.012111539952457,0.20362366735935],[0.070790559053421,-0.06403399258852,-0.03249529376626]],[[0.1238067522645,-0.034551382064819,0.11588260531425],[-0.03134885057807,-0.049696680158377,0.1088370680809],[0.049528785049915,-0.066488660871983,-0.18357710540295]],[[0.21258437633514,-0.10098394006491,-0.02322711609304],[-0.040858760476112,-0.096584349870682,-0.00099578697700053],[-0.055163905024529,-0.026249323040247,0.13250297307968]],[[0.0097791496664286,-0.025373212993145,0.093950472772121],[-0.038410320878029,-0.09024703502655,0.039497688412666],[-0.028215762227774,-0.0083245523273945,-0.041548915207386]],[[-0.12102168798447,0.024255804717541,-0.005925664678216],[-0.17264521121979,0.036569830030203,0.015004448592663],[-0.080938994884491,-0.06954063475132,0.15923281013966]],[[0.10568544268608,0.064703106880188,0.17197354137897],[-0.0061838515102863,-0.011842709966004,-0.01643835939467],[-0.076992854475975,0.079145684838295,0.01162982173264]],[[0.15690377354622,0.033737659454346,0.14166381955147],[0.066510155797005,0.034858781844378,-0.0083768926560879],[0.042365752160549,-0.056230396032333,-0.07781608402729]],[[-0.042500626295805,-0.013052168302238,-0.16802714765072],[0.050880335271358,0.089640021324158,-0.0037362887524068],[-0.18540668487549,0.022194696590304,-0.05749673768878]],[[0.056176103651524,-0.085643246769905,0.036276262253523],[-0.025468926876783,-0.17362612485886,-0.12686550617218],[-0.11500304937363,-0.021253513172269,0.021070558577776]],[[0.092828556895256,-0.041102763265371,0.11668226122856],[0.090690866112709,-0.09027136862278,-0.18580348789692],[-0.015211295336485,-0.035348039120436,0.094216451048851]],[[0.11483874171972,-0.022821901366115,-0.0029141746927053],[-0.10931113362312,0.004291174467653,0.15662227571011],[-0.27590328454971,-0.023968061432242,-0.026774805039167]]]],"nOutputPlane":64,"kW":3,"kH":3,"bias":[-0.012602005153894,-0.018933618441224,-0.04125751554966,-0.018115209415555,-0.015010554343462,-0.016031257808208,-0.010292706079781,-0.022451126947999,-0.022664327174425,-0.026715230196714,-0.025545172393322,-0.015108834952116,-0.017973454669118,-0.018439365550876,-0.010965262539685,-0.025168929249048,-0.020465917885303,-0.024975510314107,-0.014408405870199,-0.018478063866496,-0.022635316476226,0.00012812958448194,-0.015299295075238,-0.023128563538194,-0.023557769134641,-0.0046979333274066,-0.027089573442936,-0.017039863392711,-0.017202479764819,-0.013233899138868,-0.012940580956638,-0.016535395756364,-0.022485101595521,-0.01982132345438,-0.026095381006598,-0.013362195342779,-0.030841626226902,-0.006464559584856,-0.016903601586819,-0.012404574081302,-0.016382094472647,-0.019533835351467,-0.02119230106473,-0.021189875900745,-0.02078609354794,-0.0045360177755356,-0.0071851680986583,-0.006975011434406,-0.011340654455125,-0.030800234526396,-0.017931463196874,-0.02612660266459,-0.021984318271279,-0.016282208263874,-0.011531348340213,-0.025214582681656,-0.010174470022321,-0.012833544053137,-0.0090203387662768,-0.010250107385218,-0.0079296389594674,-0.018715819343925,-0.020734263584018,-0.021658256649971],"nInputPlane":64},{"weight":[[[[-0.088874772191048,0.10715512186289,0.035897370427847],[-0.047206662595272,0.053519636392593,0.072009913623333],[-0.049524806439877,-0.047584727406502,0.060074739158154]],[[0.034525897353888,-0.012046669609845,-0.079216443002224],[0.048093009740114,-0.13178639113903,-0.11920527368784],[0.013250126503408,-0.058111932128668,0.045294832438231]],[[0.01069815363735,-0.058473363518715,-0.077630743384361],[-0.18070140480995,-0.1267698854208,-0.11585913598537],[-0.082660146057606,-0.048678703606129,-0.1279029995203]],[[0.12141978740692,-0.0062838941812515,0.034636832773685],[0.06196566298604,-0.092943459749222,0.06516045331955],[-0.05452274158597,-0.068660147488117,-0.034285262227058]],[[-0.11139856278896,-0.078945323824883,0.052686300128698],[0.088274106383324,-0.10792644321918,-0.096014298498631],[-0.02062757872045,-0.073852233588696,-0.060303095728159]],[[-0.021641610190272,-0.088680103421211,-0.087352700531483],[-0.030454164370894,-0.15325094759464,-0.14053800702095],[-0.10468561202288,0.058544307947159,0.079520829021931]],[[-0.033770896494389,-0.13462430238724,0.036254603415728],[-0.0022732112556696,-0.12015837430954,0.063314266502857],[0.067993268370628,0.0011480179382488,0.060983065515757]],[[0.018954910337925,-0.22145058214664,0.17030952870846],[-0.09997770935297,-0.053950253874063,0.028016226366162],[0.066273853182793,0.056915231049061,-0.015186160802841]],[[0.029449081048369,-0.046670526266098,0.00076587393414229],[0.029485013335943,-0.053885284811258,-0.026349112391472],[0.093250617384911,0.059274941682816,-0.12656144797802]],[[0.15343448519707,-0.014374887570739,-0.062288861721754],[0.042807798832655,-0.017924340441823,0.026598105207086],[-0.031908970326185,-0.07799756526947,0.074002221226692]],[[-0.037194132804871,-0.050278682261705,0.051891759037971],[-0.13468116521835,0.048057548701763,0.050115197896957],[0.09964495152235,0.03126684576273,-0.068051166832447]],[[0.041919209063053,0.0024013321381062,-0.0056920824572444],[0.089298166334629,-0.018812293186784,0.074561320245266],[0.11726571619511,0.07535120844841,0.16029770672321]],[[-0.038930155336857,-0.036609895527363,-0.089271530508995],[0.13715432584286,-0.17508958280087,0.061133079230785],[0.0096380906179547,-0.049273069947958,0.014565864577889]],[[-0.13800358772278,0.044153243303299,-0.043114706873894],[0.011885728687048,0.11643815785646,-0.0075695496052504],[0.060315292328596,-0.066517263650894,0.040639229118824]],[[0.013623665086925,0.095683239400387,-0.023053076118231],[-0.030920039862394,-0.020125428214669,0.011752176098526],[-0.14047449827194,-0.056139942258596,-0.02164208330214]],[[-0.0049669425934553,0.020862713456154,-0.30193787813187],[-0.066855952143669,-0.062273938208818,-0.22536760568619],[-0.040953628718853,-0.026746693998575,-0.24164658784866]],[[-0.048341896384954,0.018956169486046,-0.042702108621597],[-0.090829186141491,0.0014947574818507,-0.10666275769472],[-0.069020628929138,-0.07608850300312,-0.016702864319086]],[[0.1684785336256,0.088816903531551,-0.12178362160921],[0.23187981545925,-0.00040331637137569,0.019715551286936],[0.076206021010876,-0.013989113271236,-0.041257854551077]],[[-0.02863259986043,-0.052258763462305,-0.0062565160915256],[0.03892233595252,-0.096108175814152,0.075474299490452],[-0.10656399279833,0.0083647491410375,0.032962698489428]],[[0.17015121877193,0.056209437549114,-0.022609960287809],[0.0028691713232547,-0.018943037837744,-0.069087408483028],[0.11250326037407,-0.099582009017467,-0.15472562611103]],[[0.051421146839857,-0.082930661737919,0.068986333906651],[0.0047234236262739,-0.091815680265427,0.061167560517788],[0.099511444568634,-0.054136380553246,0.085421212017536]],[[0.021926071494818,0.025802040472627,-0.017312673851848],[-0.020723380148411,-0.12628503143787,0.010512974113226],[0.023366566747427,0.04429741576314,0.0048131654039025]],[[-0.0063313622958958,-0.082168109714985,-0.002013751771301],[-0.074086062610149,0.0094768768176436,-0.076354496181011],[0.041447013616562,-0.076528392732143,0.012656795792282]],[[0.017112154513597,-0.010082392953336,0.065929509699345],[0.087040290236473,-0.020326187834144,-0.0034293727949262],[0.037439204752445,-0.0053261360153556,0.26188415288925]],[[-0.11062582582235,0.053964521735907,-0.17576682567596],[-0.089783884584904,0.010589675977826,0.13890379667282],[0.024722939357162,0.1233177408576,0.1450677216053]],[[-0.039039418101311,-0.0030701931100339,0.0095261828973889],[-0.042396377772093,0.035350557416677,0.019115990027785],[0.00033878849353641,-0.011525404639542,-0.0069950208999217]],[[-0.073699362576008,-0.022481767460704,0.16145670413971],[-0.12238531559706,-0.033530972898006,0.0025946078822017],[0.039905484765768,-0.077137783169746,0.055914252996445]],[[-0.10758439451456,-0.007963097654283,-0.28528499603271],[-0.066152155399323,0.046467330306768,-0.14493089914322],[-0.08170136064291,-0.015247545205057,-0.26112279295921]],[[0.042666252702475,0.071686275303364,-0.10745692998171],[-0.065753772854805,-0.0067343302071095,-0.23540426790714],[-0.15996807813644,-0.16265338659286,-0.078457325696945]],[[0.029077922925353,-0.049648083746433,0.14881286025047],[0.1164263561368,-0.057139724493027,0.02713081240654],[-0.088168613612652,0.045928534120321,-0.21374659240246]],[[-0.073691681027412,0.15795350074768,-0.035583063960075],[-0.039185266941786,0.14786943793297,0.032723005861044],[-0.0003005582257174,0.032488409429789,-0.084599949419498]],[[-0.063398137688637,0.032481614500284,0.11928176879883],[-0.082364961504936,0.035383857786655,0.13335905969143],[0.040285430848598,-0.0088265808299184,0.16775093972683]],[[-0.058007389307022,-0.010022747330368,0.043070923537016],[0.075361825525761,-0.025374453514814,0.023336039856076],[0.032790657132864,-0.16618205606937,-0.050766199827194]],[[-0.022269502282143,-0.0051163891330361,-0.034083537757397],[-0.089712657034397,0.10912313312292,-0.040067784488201],[-0.018803775310516,0.061491571366787,0.10273922979832]],[[0.024135798215866,-0.10923372209072,0.077979490160942],[0.049306776374578,-0.0023340424522758,-0.062801696360111],[0.16600009799004,-0.012051182799041,-0.021179726347327]],[[0.10285121202469,0.066065862774849,-0.028499143198133],[0.042715139687061,0.020563196390867,-0.019339259713888],[0.11812005192041,0.072641789913177,0.012643869034946]],[[-0.020584581419826,0.037867121398449,-0.0081433746963739],[0.14566013216972,-0.0094229895621538,0.12698438763618],[-0.097999170422554,0.19546064734459,-0.13547796010971]],[[-0.0067737195640802,0.015154926106334,-0.15920902788639],[0.030488945543766,-0.0072160968557,-0.19390162825584],[0.074219323694706,0.10537109524012,-0.11373496055603]],[[-0.037520032376051,-0.076429590582848,-0.023714449256659],[-0.0024717035703361,0.06249949708581,0.032290760427713],[-0.13163743913174,-0.048837665468454,-0.067645162343979]],[[-0.051546152681112,-0.036227371543646,-0.040938232094049],[-0.076765619218349,-0.203887373209,0.11689975112677],[0.0084211621433496,-0.089375853538513,0.010729779489338]],[[0.068289488554001,0.11488277465105,-0.12732268869877],[0.090343989431858,-0.041963152587414,-0.082520224153996],[0.038796529173851,0.048644687980413,-0.12127909064293]],[[0.043378800153732,-0.013262655586004,-0.050660952925682],[-0.043064035475254,-0.063890196382999,-0.053986981511116],[-0.14306819438934,-0.022817492485046,-0.034729059785604]],[[0.11866968870163,-0.14552561938763,0.091963432729244],[-0.016010606661439,-0.088760584592819,0.012053069658577],[-0.0245201587677,-0.22184014320374,-0.081019639968872]],[[0.24632075428963,-0.13977764546871,-0.19164299964905],[0.06508719176054,-0.018049674108624,-0.13721610605717],[0.18329173326492,-0.17332574725151,-0.015606024302542]],[[-0.15377239882946,0.092291124165058,-0.046714879572392],[-0.10571622848511,0.048361107707024,-0.0023893353063613],[0.025312537327409,-0.10074809193611,-0.1629223972559]],[[0.029140951111913,-0.027321783825755,-0.067346923053265],[0.051239099353552,-0.091281279921532,-0.086526818573475],[-0.0026617264375091,-0.1169084534049,0.049871254712343]],[[0.023584162816405,0.086723349988461,-0.108229637146],[-0.16555435955524,0.063663847744465,-0.12645691633224],[-0.043762907385826,-0.14333511888981,-0.020709795877337]],[[0.068676456809044,0.016839135438204,0.041606124490499],[-0.11749691516161,0.073801055550575,0.087289497256279],[-0.051922958344221,0.029500886797905,0.0023017800413072]],[[-0.084692910313606,0.034185629338026,0.012282780371606],[-0.27647849917412,0.11046537011862,-0.18211308121681],[-0.043746639043093,0.068987347185612,0.00086566450772807]],[[0.08046455681324,-0.035794328898191,-0.062757976353168],[-0.0035933221224695,0.13712093234062,-0.14687895774841],[0.23590692877769,0.018637953326106,-0.05157620832324]],[[0.043989788740873,-0.078466080129147,0.20369626581669],[-0.10562346875668,-0.015472574159503,-0.036667633801699],[-0.19177973270416,-0.18972744047642,-0.26627132296562]],[[0.057978592813015,-0.027328200638294,-0.25818797945976],[0.088469736278057,-0.18036046624184,-0.11794938892126],[-0.020425956696272,-0.048019252717495,-0.060528725385666]],[[-0.022119801491499,0.11218569427729,0.044005766510963],[-0.13855724036694,0.10938827693462,-0.099287025630474],[0.15153719484806,-0.021629193797708,0.054416090250015]],[[0.016543289646506,0.030771095305681,0.016166625544429],[0.013858432881534,0.071474432945251,0.071398109197617],[-0.098561033606529,-0.16676908731461,-0.13728223741055]],[[-0.091401569545269,-0.051722083240747,0.045780263841152],[0.030598582699895,0.010770314373076,-0.060442082583904],[0.0941376760602,0.059715505689383,-0.33341863751411]],[[0.071254871785641,0.15594653785229,0.066286027431488],[0.0027298906352371,0.062091507017612,0.061355888843536],[0.020196786150336,0.056499000638723,-0.081154622137547]],[[0.084978863596916,-0.18098238110542,0.053806822746992],[0.0521459877491,-0.028017301112413,0.021197577938437],[-0.12748472392559,0.026881525292993,-0.051814205944538]],[[0.046702105551958,-0.027531420812011,-0.064278438687325],[-0.0058738482184708,0.026989310979843,-0.083358749747276],[0.060148019343615,-0.07879401743412,-0.0018142635235563]],[[-0.0015829566400498,-0.040771156549454,0.086971625685692],[0.023018451407552,-0.0037772615905851,0.040915410965681],[0.046057246625423,-0.03620083257556,-0.048085357993841]],[[-0.17868871986866,-0.14131198823452,0.16541728377342],[-0.031490195542574,0.070347093045712,-0.0063244104385376],[-0.001356408232823,-0.096861936151981,0.049850471317768]],[[-0.013803752139211,-0.11416693031788,-0.10403103381395],[-0.035441894084215,-0.013193811289966,-0.012129438109696],[-0.037494115531445,0.011843319050968,-0.091890580952168]],[[-0.033302702009678,-0.16884689033031,-0.32357436418533],[-0.095030091702938,-0.053649839013815,-0.13236989080906],[-0.0030513389501721,-0.041238199919462,0.034047845751047]],[[0.035862810909748,0.080582104623318,-0.053781785070896],[-0.029582010582089,0.13732354342937,-0.13769885897636],[0.12819840013981,0.10577599704266,-0.14294475317001]],[[-0.027462862432003,0.055400215089321,-0.036187753081322],[0.03370127081871,0.031071892008185,-0.097703538835049],[0.067916326224804,0.13172136247158,0.047754276543856]]],[[[-0.084838151931763,-0.053527995944023,-0.066276997327805],[-0.055077575147152,-0.13177551329136,-0.064955502748489],[-0.13828901946545,-0.0058096875436604,0.0076206061057746]],[[-0.037874165922403,-0.019588010385633,-0.016580808907747],[0.0080780861899257,0.025861175730824,-0.012137999758124],[-0.19943502545357,-0.13323006033897,-0.21956124901772]],[[-0.085193082690239,-0.10079437494278,-0.13143369555473],[-0.093144975602627,-0.067814610898495,0.077354833483696],[-0.030996998772025,-0.070429973304272,0.057455122470856]],[[-0.076498158276081,0.042934224009514,-0.14796467125416],[-0.058825466781855,-0.064696460962296,-0.13800212740898],[0.035055253654718,-0.072293162345886,0.039992455393076]],[[0.003027566941455,-0.08641778677702,-0.12230853736401],[0.06788045912981,-0.073828928172588,-0.04736340418458],[0.050373509526253,0.025803346186876,-0.057014059275389]],[[0.031215716153383,-0.082400605082512,-0.048558853566647],[0.05173222720623,-0.043543793261051,-0.12954033911228],[-0.0094212349504232,-0.030139977112412,-0.042816329747438]],[[0.12092620134354,-0.0020396804902703,-0.020937906578183],[0.041478872299194,0.039577167481184,-0.022772025316954],[-0.07187170535326,-0.057964112609625,-0.17361031472683]],[[-0.053161565214396,-0.069105379283428,-0.13850201666355],[0.030596248805523,-0.043443169444799,-0.035938698798418],[0.046627193689346,0.13580565154552,0.12705448269844]],[[0.015712041407824,-0.047621373087168,-0.067010797560215],[-0.016295718029141,-0.14330261945724,-0.12944865226746],[-0.075055256485939,-0.085196807980537,-0.035131737589836]],[[-0.075211346149445,-0.0026682035531849,-0.015614320524037],[0.11804542690516,-0.030836751684546,-0.0171108096838],[-0.063313789665699,-0.0062732477672398,-0.068555928766727]],[[-0.15591423213482,-0.082471773028374,-0.016733488067985],[0.021127983927727,-0.0024491983931512,-0.016810394823551],[0.074451245367527,0.0058935317210853,0.085119105875492]],[[0.00067603186471388,-0.082402594387531,0.039317540824413],[0.074872352182865,0.10560435056686,0.12075077742338],[-0.102947704494,0.022342210635543,-0.15679006278515]],[[0.17465177178383,-0.046642478555441,-0.082846701145172],[0.013775451108813,0.012759550474584,0.023322638124228],[-0.13204126060009,0.058745212852955,0.052429400384426]],[[0.032952334731817,-0.08268515765667,-0.052009474486113],[-0.094012342393398,-0.033160045742989,0.050168585032225],[-0.062335181981325,-0.049559015780687,-0.054149635136127]],[[-0.017616024240851,-0.026419047266245,0.01748888194561],[-0.049459159374237,0.043898306787014,-0.0026646491605788],[0.12599341571331,-0.10756713151932,-0.19827370345592]],[[-0.0037571389693767,0.036084804683924,0.089640930294991],[0.019001483917236,0.12326475977898,0.080118216574192],[-0.13929821550846,0.044575475156307,0.036269031465054]],[[0.022005673497915,-0.079713329672813,-0.053956646472216],[0.058508399873972,0.15732930600643,-0.041340615600348],[0.03626562282443,-0.043734181672335,-0.062654711306095]],[[0.044922832399607,0.035828780382872,0.11808491498232],[0.033210121095181,-0.047965478152037,-0.076532766222954],[-0.088278025388718,-0.15792217850685,-0.10448078066111]],[[-0.2604923248291,-0.16399963200092,0.020025387406349],[-0.033862974494696,-0.0365947522223,-0.046746857464314],[-0.24508734047413,-0.16620557010174,-0.006737953517586]],[[-0.043420728296041,0.18469971418381,0.078916974365711],[0.012053820304573,-0.083855666220188,-0.021838169544935],[-0.017305349931121,-0.050143443048,0.042140051722527]],[[0.12970711290836,0.074805848300457,-0.16361594200134],[-0.022647498175502,0.023609844967723,0.0001737975544529],[-0.088561877608299,-0.0027580363675952,-0.036495506763458]],[[-0.092466279864311,-0.0358901694417,-0.025240421295166],[0.034244496375322,-0.054768074303865,0.052379753440619],[0.011033031158149,-0.056748975068331,-0.01711168140173]],[[-0.045404646545649,0.073988452553749,0.049948118627071],[-0.049110047519207,-0.03718913346529,0.075799368321896],[0.063570208847523,0.073763646185398,-0.046111289411783]],[[-0.034328896552324,-0.048293378204107,-0.068040147423744],[0.018442459404469,0.17034704983234,-0.0035975843202323],[0.067713603377342,0.099318973720074,-0.014147286303341]],[[0.0068225488066673,-0.071466691792011,-0.21688033640385],[0.082784280180931,0.014797645621002,-0.10026099532843],[-0.028059482574463,0.067334420979023,-0.050509177148342]],[[0.096085570752621,0.060837857425213,-0.075332723557949],[0.12802967429161,0.016334528103471,0.023912750184536],[-0.039793714880943,-0.048174154013395,-0.11172912269831]],[[0.01456188224256,0.025255801156163,0.013078620657325],[-0.029492735862732,-0.011289874091744,0.044746916741133],[-0.10894298553467,0.070021294057369,0.13939236104488]],[[0.0060450094752014,0.11098156869411,0.15374891459942],[-0.074485406279564,0.11055558919907,-0.045776084065437],[-0.2243507951498,-0.069866880774498,0.024050293490291]],[[-0.0089199775829911,-0.10135462135077,-0.0089031336829066],[0.011348423548043,0.079897657036781,0.02726480551064],[-0.086483046412468,-0.02455740980804,0.055586781352758]],[[0.10232989490032,0.079515054821968,-0.13804151117802],[-0.062961027026176,0.022977784276009,-0.0023025267291814],[-0.11842845380306,0.0090880515053868,-0.043656442314386]],[[-0.014307477511466,-0.050825618207455,0.039804309606552],[-0.0039486247114837,-0.051498498767614,-0.01720417663455],[-0.0077312202192843,-0.05163511633873,-0.013862230814993]],[[-0.14141294360161,-0.12446987628937,-0.0080272350460291],[0.017706081271172,0.023419430479407,0.0025922588538378],[0.018312217667699,0.046085078269243,-0.036847602576017]],[[-0.0024406225420535,0.031625788658857,-0.041664134711027],[0.086719557642937,0.072400942444801,-0.020183771848679],[0.010754887014627,-0.021375138312578,0.025286277756095]],[[-0.050783541053534,-0.088342554867268,-0.022829664871097],[0.0063689830712974,-0.17355658113956,-0.10314961522818],[-0.11536041647196,-0.043619140982628,0.053258687257767]],[[0.11965871602297,-0.031307831406593,-0.05123933032155],[-0.13779579102993,0.042832061648369,-0.11203334480524],[-0.15847818553448,0.012423799373209,0.072106577455997]],[[0.013841805048287,0.011041120626032,-0.063701406121254],[0.05342161655426,-0.070041723549366,-0.027886377647519],[0.027821177616715,-0.012111476622522,-0.0099321762099862]],[[-0.17496487498283,0.049089644104242,0.050681732594967],[0.21402612328529,0.22573983669281,0.046851594001055],[-0.0016218177042902,0.023473335430026,0.029377875849605]],[[-0.01440523378551,0.057107109576464,0.024466661736369],[-0.037524782121181,-0.010757892392576,-0.0076434412039816],[0.17091538012028,-0.059290703386068,-0.11665286123753]],[[-0.012013875879347,-0.010549513623118,0.034769058227539],[-0.1322413533926,-0.1635177731514,-0.14609014987946],[-0.028886839747429,0.032381068915129,-0.045949976891279]],[[0.19220049679279,0.097893632948399,0.069613501429558],[-0.036383222788572,0.041785713285208,0.019791411235929],[-0.11784619092941,-0.1191350966692,0.0028231092728674]],[[0.075041987001896,0.024888979271054,0.13591127097607],[0.027260499075055,0.0053352937102318,0.042704958468676],[0.032201591879129,0.053431928157806,0.12411893159151]],[[-0.11450573056936,0.077996805310249,0.0026632170192897],[-0.15843789279461,-0.18106970191002,-0.02255249209702],[-0.054265677928925,-0.08981454372406,0.020433519035578]],[[-0.088538400828838,0.042603321373463,0.011898048222065],[0.08245050907135,-0.11184866726398,-0.029654080048203],[0.20045290887356,0.056068692356348,0.10992430895567]],[[-0.011025153100491,-0.02537170983851,0.0071136369369924],[0.11526421457529,0.084745176136494,0.059992268681526],[-0.13728871941566,-0.13560166954994,0.04901485517621]],[[-0.071090593934059,-0.066694132983685,0.085332036018372],[-0.095124512910843,-0.00086631730664521,0.026519823819399],[-0.19485831260681,-0.089207395911217,-0.099215365946293]],[[-0.020931992679834,0.055617485195398,0.044172406196594],[0.041328087449074,-0.12319027632475,-0.065078921616077],[0.006914924364537,-0.047397039830685,0.086964823305607]],[[0.17463301122189,-0.037598427385092,-0.14177574217319],[-0.081850916147232,0.00041922426316887,0.036764908581972],[-0.019196188077331,-0.033469211310148,-0.038173332810402]],[[-0.098486356437206,-0.017576694488525,-0.14748544991016],[0.034484308212996,-0.03123090043664,-0.029181873425841],[0.02079295925796,-0.0049720834940672,-0.060366127640009]],[[-0.10717343539,-0.0014025381533429,0.053535461425781],[-0.039055459201336,0.022404324263334,-0.075495883822441],[0.085375390946865,0.071362122893333,0.059264916926622]],[[0.065043084323406,0.028876025229692,0.10498381406069],[-0.13698363304138,-0.05539234355092,0.12757040560246],[0.14980399608612,0.108957067132,0.077164128422737]],[[0.02657251432538,-0.020076025277376,-0.10950918495655],[0.10199686139822,-0.060631453990936,0.05466141179204],[-0.16003961861134,0.027743801474571,-0.024029336869717]],[[0.1922872364521,-0.15282955765724,0.028748098760843],[0.006992079783231,-0.071141518652439,-0.15130053460598],[0.12324665486813,0.028348742052913,0.033593244850636]],[[0.050432551652193,-0.026231726631522,0.021013125777245],[0.046861656010151,-0.029996881261468,-0.02619506791234],[-0.098859295248985,0.060554590076208,0.055530890822411]],[[-0.047264467924833,0.0046842037700117,0.043435361236334],[0.10346781462431,0.033227767795324,-0.028149709105492],[0.21360403299332,-0.001613583881408,-0.011538430117071]],[[-0.043024513870478,-0.049773268401623,0.06168071180582],[-0.0798145160079,0.044996183365583,-0.096158035099506],[-0.066927835345268,-0.016026649624109,0.071722254157066]],[[-0.027630694210529,0.079714544117451,0.14524666965008],[-0.089928686618805,0.03759054094553,-0.075069643557072],[-0.13023512065411,0.020559471100569,0.058797664940357]],[[0.060719564557076,0.10348182171583,0.092714130878448],[0.14512619376183,-0.018438879400492,0.090981215238571],[-0.11536278575659,-0.040781144052744,-0.25947764515877]],[[-0.099361933767796,0.1037687510252,0.077250756323338],[0.026242446154356,0.04565891250968,0.13671337068081],[-0.032598961144686,0.011406404897571,0.059541203081608]],[[-0.079217553138733,-0.084485583007336,0.013390678912401],[0.016984269022942,0.095559403300285,0.19549041986465],[0.128218755126,0.15888866782188,0.13425098359585]],[[-0.094179503619671,-0.010101795196533,0.014938585460186],[0.056089248508215,0.13102748990059,0.13469076156616],[0.048175234347582,-0.013700976967812,-0.069278433918953]],[[0.056852970272303,-0.035038307309151,-0.079802103340626],[-0.04516938328743,-0.15597876906395,-0.071307323873043],[-0.099322654306889,-0.015982132405043,-0.046111267060041]],[[0.01405714545399,-0.003458894090727,0.036420132964849],[0.066463112831116,0.042294889688492,-0.016083965077996],[-0.013434599153697,-0.12658967077732,-0.1099831610918]],[[0.0098686702549458,-0.20573158562183,-0.16795732080936],[0.15655146539211,-0.025331102311611,0.075541242957115],[-0.13214121758938,-0.10699738562107,0.081810370087624]],[[0.079659886658192,-0.052913323044777,0.056868404150009],[0.03993221372366,-0.025019539520144,-0.1507240831852],[0.024906814098358,-0.015703599900007,-0.086211159825325]]],[[[0.011693613603711,-0.16030764579773,-0.024992749094963],[-0.17786274850368,0.026650708168745,-0.075041800737381],[-0.075786218047142,-0.038345295935869,0.036246575415134]],[[-0.052008632570505,0.022956097498536,-0.046100683510303],[0.020082296803594,0.026419660076499,-0.091115839779377],[-0.14323636889458,-0.1243521720171,-0.011360509321094]],[[-0.088282465934753,-0.13965956866741,-0.1820170134306],[-0.093102812767029,-0.073733955621719,-0.2091992944479],[-0.10485550016165,-0.31917688250542,-0.098277725279331]],[[-0.01422506198287,0.10333143919706,-0.020389495417476],[-0.1260729432106,-0.037054795771837,0.065726712346077],[0.053617369383574,0.0060931583866477,0.024062665179372]],[[0.030221004039049,-0.077618487179279,-0.17714707553387],[-0.0094894031062722,-0.10490285605192,-0.049817014485598],[-0.038028720766306,-0.071603573858738,0.017621375620365]],[[-0.0052909376099706,-0.10931669175625,-0.15305346250534],[-0.089811466634274,-0.097432874143124,-0.077361829578876],[-0.02185964025557,0.016036082059145,-0.17241525650024]],[[0.014070522040129,-0.032191284000874,-0.10810601711273],[-0.0538813136518,0.043845377862453,-0.10535854101181],[-0.067073352634907,-0.016385471448302,0.099478878080845]],[[-0.0095675205811858,-0.011314996518195,0.01517800334841],[-0.08625853061676,-0.061246424913406,0.062222044914961],[0.19907823204994,-0.14050249755383,0.018255369737744]],[[0.045934915542603,0.060739599168301,-0.19256457686424],[0.017038265243173,0.065307959914207,-0.063175059854984],[-0.078489430248737,0.044195253401995,-0.10038807988167]],[[-0.0039676041342318,-0.16392581164837,-0.088538184762001],[-0.027289466932416,-0.099637143313885,0.021707605570555],[0.13900311291218,-0.20470306277275,-0.18167647719383]],[[-0.099831268191338,0.010052538476884,-0.17222386598587],[-0.06062151864171,-0.080686904489994,0.051538288593292],[0.070992521941662,0.028206950053573,-0.020595049485564]],[[0.091727241873741,-0.17892649769783,0.053622428327799],[-0.12545785307884,-0.041256956756115,-0.058206375688314],[0.11560212820768,0.10020297020674,0.10093508660793]],[[-0.36815968155861,-0.071040876209736,-0.085784062743187],[0.062586456537247,-0.17317314445972,0.040838722139597],[-0.032677456736565,-0.09697512537241,0.002964849350974]],[[0.13661178946495,0.060010962188244,0.02643196284771],[-0.042895864695311,0.070195727050304,0.022731013596058],[-0.23742774128914,0.010556252673268,0.071956768631935]],[[0.0025513481814414,0.0093639781698585,-0.066177934408188],[-0.035473886877298,-0.024251639842987,0.074351586401463],[-0.067183412611485,-0.02525176666677,-0.13727781176567]],[[-0.11738368868828,0.15450713038445,-0.089423641562462],[0.046011049300432,-0.088289588689804,-0.034045461565256],[-0.067279569804668,0.003725728020072,-0.14428766071796]],[[0.060131952166557,0.0071297353133559,-0.1499902755022],[0.02560836263001,0.018353678286076,-0.028964312747121],[-0.049110237509012,-0.26735702157021,-0.004896295722574]],[[-0.18548476696014,-0.07167998701334,-0.04795203730464],[0.057475138455629,0.05780953541398,-0.011105949059129],[0.020565671846271,0.066687069833279,-0.24950343370438]],[[0.091765128076077,-0.16708607971668,0.029802158474922],[-0.033544555306435,-0.031651258468628,-0.071288339793682],[0.067014068365097,-0.1222829669714,0.039673086255789]],[[-0.076073609292507,-0.21458837389946,-0.19830594956875],[-0.03295337036252,-0.031700227409601,-0.05032329633832],[0.018829023465514,-0.0014493011403829,-0.026972971856594]],[[-0.13857351243496,0.16270081698895,-0.23230074346066],[-0.075074300169945,-0.025015162304044,-0.13589830696583],[-0.12388350814581,0.27479636669159,-0.084567598998547]],[[-0.02093736641109,-0.028060134500265,-0.0021855460945517],[-0.050709258764982,-0.041350301355124,-0.0078824870288372],[-0.017223076894879,-0.028559654951096,-0.0067879785783589]],[[0.024095896631479,0.078238308429718,-0.015485062263906],[-0.082292839884758,-0.18508234620094,0.027199383825064],[0.13651642203331,-0.13720339536667,-0.1173886731267]],[[0.21556326746941,0.1576779037714,-0.038017336279154],[0.092181287705898,0.12876504659653,0.00097181228920817],[0.17541588842869,0.24410186707973,0.086653403937817]],[[-0.20699094235897,0.086418338119984,0.048204008489847],[-0.060024585574865,0.024160513654351,0.039207018911839],[-0.079489208757877,0.044418089091778,-0.010241948068142]],[[0.04236264154315,-0.021909343078732,-0.037782438099384],[0.028035882860422,-0.026282960548997,-0.018640270456672],[-0.086270183324814,-0.012805866077542,0.0036926162429154]],[[-0.04398700222373,-0.056482069194317,0.035432331264019],[0.024724652990699,-0.059372469782829,0.10863429307938],[0.08642066270113,0.028651451691985,0.12427576631308]],[[-0.010717090219259,-0.075447112321854,-0.21617288887501],[-0.0069361203350127,0.087813854217529,-0.040453869849443],[-0.046182055026293,-0.042166091501713,-0.16590157151222]],[[0.048595879226923,-0.092561155557632,0.13302233815193],[-0.10309343039989,-0.00026206666370854,-0.10981804132462],[-0.079864501953125,-0.057128865271807,-0.20230546593666]],[[-0.064790450036526,-0.054604027420282,-0.10177636146545],[-0.011650307103992,-0.045709576457739,-0.0060345521196723],[-0.34217926859856,0.076010771095753,-0.12386059761047]],[[0.0033416140358895,0.030301993712783,0.069994084537029],[-0.043464526534081,-0.015075460076332,-0.093668103218079],[0.13226790726185,0.1851595044136,0.088133923709393]],[[-0.076306104660034,-0.055862002074718,0.027693012729287],[-0.026858313009143,0.0078803459182382,0.11090658605099],[-0.07428340613842,0.14642752707005,0.15722104907036]],[[0.08539779484272,0.16487927734852,0.011338659562171],[-0.076009891927242,-0.1934774518013,-0.0069223484024405],[-0.059118669480085,-0.090135216712952,-0.11383175849915]],[[0.013746283017099,-0.008887117728591,-0.056535877287388],[-0.10375488549471,-0.10063627362251,-0.023561481386423],[0.0035226284526289,0.099609479308128,-0.0036188210360706]],[[0.0079040573909879,-0.016365824267268,-0.11244608461857],[0.029644271358848,-0.06687718629837,-0.051632605493069],[-0.17558991909027,-0.089780822396278,-0.12825493514538]],[[0.15981382131577,-0.046177145093679,-0.033446233719587],[0.047763306647539,0.037169311195612,-0.10604769736528],[-0.056294940412045,0.015607808716595,-0.060598112642765]],[[0.050757765769958,0.0054889325983822,0.029732646420598],[0.08639020472765,-0.064736165106297,-0.080495700240135],[0.098477721214294,-0.16344393789768,0.11089479923248]],[[-0.046792767941952,0.11317104846239,-0.10076403617859],[0.092471569776535,-0.19886843860149,-0.095791809260845],[-0.026368226855993,-0.044149570167065,-0.068914227187634]],[[-0.033166449517012,0.07737585157156,-0.10025499016047],[-0.34373614192009,-0.026207746937871,0.057358667254448],[-0.060127899050713,0.025618549436331,-0.11832156032324]],[[-0.075548022985458,-0.046466823667288,-0.073417134582996],[0.03692028298974,0.014387812465429,0.069791324436665],[0.047959264367819,-0.10783389955759,0.021169748157263]],[[-0.012711459770799,0.067685708403587,0.0032394027803093],[-0.02884947322309,-0.095342360436916,-0.033443801105022],[0.087792873382568,0.097358159720898,-0.054247483611107]],[[-0.12079755961895,-0.21457149088383,-0.13430204987526],[-0.13663397729397,-0.13100464642048,-0.081046536564827],[-0.029557172209024,-0.079851001501083,0.08787640184164]],[[-0.0094483299180865,-0.070144146680832,0.01315195299685],[-0.054679829627275,-0.078722730278969,-0.036386597901583],[0.25573626160622,-0.015806147828698,-0.0060423132963479]],[[-0.088866405189037,-0.10323435813189,-0.12064711004496],[-0.094359122216702,0.023383915424347,0.0049136392772198],[-0.043054632842541,0.012782971374691,-0.083166383206844]],[[0.060012903064489,-0.11281603574753,-0.12479296326637],[0.014082731679082,-0.003597155213356,0.0085079381242394],[0.011143409647048,-0.009564452804625,-0.042796723544598]],[[-0.072151310741901,-0.09417150914669,-0.041099149733782],[-0.063984036445618,0.081177040934563,0.073654159903526],[0.0012459869030863,-0.13077887892723,-0.12555111944675]],[[-0.06455297768116,-0.028462521731853,-0.052166476845741],[-0.0018988972296938,-0.012004843913019,0.091193437576294],[-0.16129022836685,0.058408856391907,0.047769140452147]],[[0.049430925399065,-0.17959967255592,0.10425860434771],[-0.07046914100647,0.014717802405357,-0.19006516039371],[-0.019879041239619,0.047254823148251,-0.1377494931221]],[[-0.016400184482336,-0.11398912966251,-0.045240700244904],[-0.21640135347843,0.00044462716323324,-0.012192716822028],[-0.057083547115326,0.078197233378887,-0.074753351509571]],[[0.09214574098587,-0.19948284327984,-0.039516121149063],[-0.045753456652164,0.10883498191833,-0.096919655799866],[0.060429818928242,0.15097394585609,-0.065975815057755]],[[0.15716829895973,0.026130260899663,0.0040716961957514],[-0.19829887151718,0.050420958548784,0.12846493721008],[0.084641747176647,-0.035649180412292,-0.090549901127815]],[[-0.24539220333099,-0.05387581884861,-0.097124122083187],[0.020811334252357,0.077204659581184,0.032778818160295],[-0.18799835443497,-0.27742800116539,-0.0081880036741495]],[[-0.10097128152847,-0.024538684636354,0.060330491513014],[0.06308688223362,-0.043820731341839,-0.0033181819599122],[-0.0078471340239048,-0.047498054802418,0.048738818615675]],[[0.0010254809167236,0.04057665169239,-0.059320315718651],[0.048387810587883,0.00087151466868818,-0.03017826937139],[-0.099897928535938,0.046933781355619,-0.11695335805416]],[[-0.12408840656281,0.0052615972235799,0.077760927379131],[0.09408164024353,-0.12440799176693,0.066495053470135],[-0.14499534666538,-0.13530147075653,0.071545988321304]],[[0.010835614055395,0.050139993429184,-0.014227061532438],[0.077034182846546,0.057140950113535,-0.089525438845158],[0.10781031101942,0.078418664634228,0.0022939001210034]],[[0.097463838756084,-0.13840788602829,0.056351095438004],[-0.12116121500731,-0.064594134688377,0.045268207788467],[-0.14187897741795,-0.034873843193054,0.063776396214962]],[[-0.099957972764969,-0.098359107971191,0.20817297697067],[-0.062734678387642,-0.12712563574314,-0.02711546421051],[0.046007826924324,-0.15644593536854,-0.058241955935955]],[[0.05411783605814,-0.027499705553055,0.036546465009451],[-0.0050891577266157,0.097349494695663,0.016856441274285],[0.03828452527523,0.060847278684378,0.0064882901497185]],[[-0.030475044623017,-0.011613833718002,-0.031486790627241],[0.11811842769384,-0.0044788517989218,0.16266512870789],[0.031156802549958,-0.078448735177517,-0.019138598814607]],[[0.12356846034527,0.043348338454962,-0.00027395316283219],[-0.10716182738543,-0.0045537305995822,-0.01059269439429],[0.11780402809381,-0.050942700356245,-0.12438210844994]],[[-0.017482168972492,0.0101996390149,0.026227872818708],[-0.033078964799643,-0.054954454302788,0.0097912242636085],[-0.046021100133657,-0.028384504839778,-0.38715091347694]],[[-0.018230907618999,-0.039517924189568,0.024291282519698],[0.081174731254578,0.033952962607145,0.070091985166073],[0.043694470077753,-0.080513164401054,0.07074448466301]],[[0.085603810846806,-0.043674923479557,0.0034764036536217],[-0.028406605124474,-0.18059092760086,-0.037621196359396],[-0.0037797407712787,-0.00084871979197487,-0.11549293994904]]],[[[-0.067309625446796,-0.044160384684801,-0.056381493806839],[-0.167270809412,-0.050665680319071,0.045888189226389],[-0.048258930444717,-0.11201138049364,0.12032767385244]],[[0.12172612547874,0.035720061510801,-0.010520975105464],[-0.0091726975515485,-0.028587304055691,0.011490328237414],[0.050291169434786,-0.16218137741089,-0.027713252231479]],[[-0.064362391829491,-0.1177282333374,0.039367705583572],[-0.097417160868645,-0.054755318909883,0.027516532689333],[-0.023246055468917,0.019652737304568,-0.064308561384678]],[[0.057456847280264,-0.057153336703777,0.013794871978462],[-0.18486584722996,-0.0021775404457003,0.11775968968868],[-0.021004559472203,-0.067560724914074,0.068226352334023]],[[-0.0023842356167734,-0.067224860191345,0.046926457434893],[0.080022260546684,-0.035540524870157,0.039691258221865],[-0.10036360472441,0.019366247579455,0.029219718649983]],[[0.054824862629175,-0.025685237720609,-0.031028389930725],[0.0067672436125576,-0.090001150965691,0.012341391295195],[-0.087489895522594,-0.01463090442121,-0.14616021513939]],[[-0.036758255213499,0.10431326925755,0.04235428199172],[0.0097800949588418,0.012493089772761,0.10064897686243],[0.0080106807872653,-0.042816840112209,0.0090744635090232]],[[0.043710090219975,0.025905005633831,0.005615770816803],[-0.01692239753902,0.12294799089432,-0.0083653321489692],[-0.051004093140364,0.10643649101257,-0.11587312817574]],[[-0.05096198618412,0.13420341908932,-0.013496003113687],[-0.0077356263063848,0.0062801809981465,-0.094994500279427],[-0.43773010373116,-0.063731297850609,0.0031016797292978]],[[0.01963659375906,-0.078532874584198,-0.012464769184589],[-0.066283605992794,0.055932819843292,0.014164905995131],[-0.059721987694502,0.014369936659932,0.053518790751696]],[[0.050749812275171,0.025017330422997,0.043065994977951],[-0.02074795588851,0.10957760363817,-0.1344378143549],[0.083187349140644,0.12715393304825,-0.068970315158367]],[[-0.006771489046514,-0.026792004704475,0.020007966086268],[-0.095557034015656,-0.11269281804562,0.041391339153051],[0.16003283858299,-0.10031586885452,0.068872451782227]],[[-0.051228996366262,-0.063241302967072,-0.065377943217754],[-0.0041526425629854,-0.034570138901472,0.020576948300004],[-0.080356873571873,0.073350995779037,0.049208208918571]],[[0.014604134485126,0.10783223062754,-0.072597824037075],[-0.091146402060986,0.044497296214104,-0.00087416911264881],[-0.027187772095203,-0.052907820791006,0.042734540998936]],[[-0.11839723587036,-0.041483234614134,0.046503189951181],[-0.085672304034233,0.018842905759811,0.075280509889126],[0.073734812438488,-0.086219877004623,-0.049561124294996]],[[-0.048626203089952,0.081656694412231,-0.050742488354445],[-0.1255476474762,0.050551824271679,-0.004462281242013],[-0.039462029933929,-0.04374798387289,-0.051162898540497]],[[0.04557291418314,-0.11810497194529,0.012307814322412],[-0.059511415660381,-0.019631374627352,0.025249723345041],[0.029567735269666,-0.05752657353878,0.13054975867271]],[[-0.081413611769676,0.041118066757917,0.23616494238377],[-0.086096532642841,0.025334237143397,0.032258592545986],[0.17600056529045,0.0044552865438163,-0.15794530510902]],[[-0.010833513922989,-0.11255158483982,-0.020424220710993],[-0.093787014484406,0.025278324261308,-0.057610660791397],[-0.012270943261683,-0.0099723692983389,-0.25766038894653]],[[0.084823280572891,0.024721233174205,0.010206334292889],[0.012942738831043,0.076108664274216,-0.056161530315876],[-0.033619269728661,-0.059586122632027,-0.15896612405777]],[[0.19520293176174,-0.32248184084892,0.19634546339512],[0.066466778516769,0.15733434259892,0.031919211149216],[-0.033261954784393,-0.27775457501411,-0.035700090229511]],[[0.0040724296122789,0.02341222204268,-0.018457977101207],[-0.018464267253876,-0.021398486569524,-0.052386313676834],[-0.023326568305492,0.025594126433134,-0.04934261366725]],[[0.0038005739916116,0.023108992725611,0.054504755884409],[0.051476880908012,-0.01157309114933,0.0011436074273661],[-0.020583825185895,-0.015225363895297,-0.027734067291021]],[[0.016445487737656,-0.098254829645157,0.086328476667404],[0.077597931027412,0.18205991387367,0.093996189534664],[0.0078171929344535,0.14609429240227,0.0098005849868059]],[[-0.072376571595669,-0.025916846469045,-0.010516909882426],[0.079299688339233,0.034823596477509,-0.067633785307407],[0.066852077841759,0.078233659267426,-0.053441423922777]],[[-0.024455524981022,-0.027525745332241,0.019062032923102],[-0.010176903568208,-0.018440805375576,-0.0044200262054801],[-0.021804487332702,-0.022743364796042,0.034824576228857]],[[-0.00074407155625522,0.041999727487564,0.098657242953777],[0.024609027430415,0.001353571889922,-0.069953985512257],[0.081490837037563,-0.12976315617561,-0.071809865534306]],[[-0.10487199574709,-0.13234250247478,0.074863389134407],[-0.10992077738047,-0.06379434466362,0.0089835124090314],[-0.043964501470327,-0.094111084938049,0.22406035661697]],[[-0.014392629265785,-0.040529865771532,-0.10011637210846],[-0.023085182532668,-0.054989259690046,0.11492149531841],[-0.11340884119272,0.12683960795403,-0.21684215962887]],[[-0.10189473628998,0.083830885589123,-0.0053956545889378],[-0.22081080079079,-0.013193775899708,0.078564450144768],[-0.23096257448196,-0.01232030056417,-0.2441428154707]],[[-0.10260094702244,0.082678101956844,-0.063100300729275],[-0.14977042376995,0.12658125162125,-0.0033468438778073],[-0.12668576836586,0.039091285318136,-0.013925680890679]],[[-0.099059693515301,-0.074723690748215,-0.031561370939016],[0.051173627376556,-0.03880275785923,-0.082010127604008],[-0.041374303400517,-0.10504637658596,0.0018098081927747]],[[-0.02082622423768,0.1323364675045,0.0079310573637486],[-0.062387943267822,0.014764664694667,0.040556207299232],[-0.089335925877094,-0.088548451662064,0.23370559513569]],[[-0.088198401033878,-0.019259553402662,-0.12505649030209],[-0.032540917396545,0.00053026009118184,-0.0093555096536875],[-0.18423652648926,0.049464091658592,-0.065883040428162]],[[-0.093180313706398,-0.1430536955595,-0.035503152757883],[-0.0018522632308304,-0.079078786075115,0.0045104050077498],[0.0035114821512252,-0.014929067343473,0.092889487743378]],[[0.11529868096113,0.052232149988413,0.040566105395555],[-0.027001269161701,0.12612953782082,0.028951894491911],[-0.071674168109894,0.028916111215949,0.0014134219381958]],[[0.21933571994305,0.13140773773193,-0.026679623872042],[0.15573525428772,0.042330425232649,-0.054333053529263],[0.11891446262598,-0.076900742948055,0.099537692964077]],[[0.20852413773537,-0.15705221891403,0.059911351650953],[-0.017333609983325,-0.098743997514248,-0.12799920141697],[0.069252632558346,0.14361447095871,0.032782159745693]],[[0.12836308777332,-0.093855783343315,0.02602219954133],[0.013948377221823,-0.058116938918829,0.033399287611246],[0.080237410962582,0.0094544012099504,0.0282695684582]],[[0.027195332571864,0.10576168447733,-0.0083335619419813],[-0.022176278755069,-0.006525382399559,-0.039936102926731],[-0.064201354980469,-0.044006567448378,-0.121158875525]],[[-0.17579978704453,0.05059290677309,-0.075418017804623],[-0.055270150303841,0.048162143677473,-0.09154898673296],[0.11758776754141,-0.043102577328682,-0.18873147666454]],[[-0.0098515236750245,0.064566925168037,-0.023942921310663],[-0.12334353476763,-0.0069405776448548,0.011735890991986],[-0.11621605604887,-0.062034979462624,0.014070346951485]],[[0.012108005583286,0.030191224068403,-0.0063137672841549],[0.16586744785309,-0.003284809878096,-0.06223364546895],[-0.14427715539932,0.12714490294456,0.063241586089134]],[[-0.028524734079838,0.094146057963371,0.063471630215645],[-0.076184719800949,-0.013721225783229,0.102504581213],[-0.080212190747261,0.071886293590069,0.067977480590343]],[[0.08164343982935,-0.050591837614775,0.015775721520185],[0.01174049731344,-0.10570511221886,0.0023246684577316],[0.10283375531435,0.00058731163153425,-0.088612623512745]],[[-0.019619952887297,-0.11275244504213,-0.11237301677465],[0.080189757049084,0.026236828416586,-0.047685675323009],[0.021239882335067,-0.011938286945224,0.066900722682476]],[[-0.13615593314171,-0.0033449647016823,-0.079044088721275],[0.1003250181675,-0.094204492866993,0.037836156785488],[-0.074078574776649,-0.10130736976862,0.19673916697502]],[[-0.036491308361292,-0.11770793050528,0.15859876573086],[-0.026996960863471,-0.083951242268085,0.026052635163069],[0.025845643132925,-0.16833993792534,-0.14694434404373]],[[-0.13309694826603,-0.047032423317432,0.093013569712639],[-0.14244039356709,-0.076804585754871,0.0062227710150182],[0.024624638259411,-0.016363883391023,0.083181634545326]],[[-0.030905915424228,-0.079520255327225,0.14262463152409],[0.028833027929068,0.052847594022751,-0.0045445440337062],[-0.060391396284103,0.020280538126826,-0.079405710101128]],[[0.074929177761078,0.044570703059435,-0.027237989008427],[0.1194205135107,-0.084564901888371,-0.041033882647753],[0.031362164765596,-0.0013972658198327,0.030289394780993]],[[-0.01909627020359,0.050555631518364,0.0050444081425667],[-0.086298353970051,0.061920370906591,-0.031816143542528],[0.042805921286345,-0.038937646895647,0.14349274337292]],[[0.11829850077629,0.14814783632755,-0.020081009715796],[-0.090384930372238,-0.15542712807655,0.08674593269825],[-0.094299413263798,-0.01529027801007,-0.040905721485615]],[[-0.097764410078526,0.022956291213632,-0.0042305528186262],[0.086067721247673,0.080140836536884,0.0013776476262137],[-0.0060298782773316,0.096787236630917,0.017359564080834]],[[0.1287874430418,0.0018283913377672,-0.13230264186859],[-0.19796973466873,0.11896235495806,-0.01849077641964],[-0.21987357735634,0.0010537683265284,-0.12354163825512]],[[-0.083551608026028,-0.022348696365952,0.050772719085217],[-0.23672972619534,0.10070420056581,-0.080274179577827],[0.02693734690547,0.057270605117083,-0.19700077176094]],[[0.10299324989319,-0.046087477356195,0.11844597011805],[-0.056355096399784,-0.03580841049552,0.013641191646457],[-0.31153136491776,0.0024141385219991,0.046376682817936]],[[0.056217506527901,-0.047159176319838,-0.14741282165051],[0.1091613471508,-0.063891477882862,-0.15034073591232],[-0.12407819181681,-0.20193965733051,0.027860270813107]],[[0.044347569346428,0.12482063472271,-0.012241951189935],[-0.032369423657656,0.068339422345161,-0.0013984960969537],[0.0046703764237463,0.029985664412379,0.10930064320564]],[[0.082082353532314,-0.011264191009104,-0.042389050126076],[-0.11757676303387,0.034885734319687,-0.038201004266739],[0.0045989635400474,0.084813937544823,0.018048306927085]],[[0.0011627357453108,-0.043627418577671,0.057281360030174],[-0.046415116637945,-0.038284182548523,-0.11203148961067],[-0.017741972580552,0.060395460575819,-0.08402157574892]],[[0.051958460360765,-0.058563131839037,-0.052712388336658],[0.12903164327145,0.00054364331299439,-0.16644103825092],[-0.0053998837247491,0.04380264878273,-0.086389899253845]],[[0.11190388351679,0.057537995278835,-0.010501905344427],[-0.038593076169491,-0.066929861903191,-0.11099028587341],[0.059358913451433,0.028940187767148,0.016823120415211]],[[-0.22778321802616,0.033254612237215,-0.063391372561455],[0.013382547535002,-0.056552663445473,0.11880461126566],[-0.18841564655304,0.23683544993401,0.049923926591873]]],[[[-0.11218100041151,0.0011344627710059,0.084942929446697],[-0.06569541990757,-0.06277097016573,0.13952267169952],[-0.10794175416231,-0.072644434869289,0.067360803484917]],[[-0.071459464728832,-0.13255527615547,0.0030104024335742],[0.056167423725128,-0.0195272564888,0.051189631223679],[-0.070340313017368,-0.14360281825066,0.0081276819109917]],[[0.1063816100359,0.0005925937439315,-0.015015324577689],[-0.1538400053978,-0.11835774034262,-0.044642996042967],[0.019735740497708,0.017520107328892,-0.068021953105927]],[[-0.11817013472319,0.010338616557419,-0.026125775650144],[0.03867681697011,-0.060977660119534,0.062681682407856],[0.021473105996847,-0.048057440668344,-0.12811087071896]],[[-0.082802750170231,-0.035770665854216,-0.067169412970543],[0.082772716879845,0.013234775513411,0.0087020536884665],[-0.019812062382698,0.052755858749151,0.038845825940371]],[[-0.015130673535168,-0.081627771258354,-0.085210882127285],[0.03022095747292,0.011453717015684,0.047438032925129],[0.0057692243717611,-0.02039941214025,-0.12453453242779]],[[-0.019859209656715,0.0083941072225571,0.053187150508165],[0.11079731583595,-0.10094566643238,-0.14769817888737],[-0.054673198610544,-0.014165334403515,0.0056075677275658]],[[0.013064895756543,-0.027335463091731,0.0873828753829],[-0.16389615833759,0.0037432159297168,0.068796515464783],[0.049697495996952,0.0067677027545869,-0.042236723005772]],[[0.0021061634179205,-0.18987889587879,-0.087729975581169],[0.11780310422182,-0.085608802735806,-0.036474652588367],[-0.016614377498627,-0.025984779000282,-0.17467188835144]],[[0.17655652761459,0.087384536862373,-0.094464376568794],[0.021083019673824,0.044893257319927,-0.0078374408185482],[-0.050190009176731,-0.021538347005844,0.083482220768929]],[[-0.032641738653183,0.034237001091242,0.021916726604104],[0.11627656966448,0.11619760096073,-0.043204139918089],[-0.16532415151596,-0.073151439428329,-0.030746795237064]],[[-0.12886981666088,-0.03706968948245,0.0037375334650278],[0.14404210448265,0.10392716526985,-0.023418867960572],[0.010885891504586,0.0028469313401729,-0.0030695672612637]],[[0.052311453968287,-0.016177847981453,-0.12711887061596],[3.1542214856017e-05,-0.14698100090027,0.11512664705515],[-0.11107079684734,0.015288735739887,-0.082458697259426]],[[0.19591610133648,-0.090778693556786,-0.058911222964525],[-0.077115088701248,0.010488454252481,-0.043158046901226],[-0.014436214230955,0.13635265827179,0.006974823307246]],[[-0.072314210236073,0.056533474475145,-0.053014900535345],[-0.25113809108734,-0.037377465516329,-0.059098839759827],[-0.032251700758934,-0.070247210562229,-0.064072705805302]],[[-0.10473722964525,0.057607628405094,0.063169546425343],[-0.17104661464691,-0.10970313847065,-0.095969311892986],[-0.024499041959643,0.11947986483574,0.088097266852856]],[[-0.14928571879864,-0.15362134575844,-0.15606780350208],[0.026681484654546,0.013800584711134,0.14020182192326],[0.12094254046679,0.063551396131516,0.027368605136871]],[[0.058408323675394,-0.0036441825795919,0.085657879710197],[0.030159946531057,-0.053627826273441,-0.014559756033123],[0.13950979709625,0.11145515739918,0.093957014381886]],[[-0.18115948140621,-0.032529521733522,0.089945718646049],[-0.050162576138973,0.064503125846386,0.0081192823126912],[0.019974099472165,0.0069242184981704,0.12000480294228]],[[-0.019855655729771,0.034358557313681,0.045432984828949],[-0.049113653600216,-0.047340843826532,-0.069049276411533],[-0.11562472581863,-0.13909882307053,-0.037849988788366]],[[-0.16650088131428,-0.06007469445467,-0.052552539855242],[0.049297515302896,-0.030930157750845,0.10409443080425],[0.090940862894058,0.018912728875875,-0.018940916284919]],[[-0.11687758564949,0.027595700696111,-0.00085694482550025],[-0.023395333439112,0.088640205562115,-0.065894991159439],[0.026503896340728,-0.0020858473144472,-0.046373955905437]],[[-0.0087186871096492,-0.0044650607742369,0.043577894568443],[-0.061518412083387,-0.054287057369947,0.13868278264999],[-0.13688096404076,0.04594836384058,9.6321789897047e-05]],[[-0.0084157912060618,0.0076830019243062,-0.020389448851347],[-0.0094049703329802,0.29614332318306,0.072489954531193],[0.23972836136818,0.1435074955225,-0.052408035844564]],[[0.013684251345694,-0.015481702052057,0.045379381626844],[0.09798900783062,-0.016586124897003,0.030452387407422],[0.17143578827381,0.049461357295513,0.053070496767759]],[[-0.075873032212257,0.01274081133306,0.06188939511776],[-0.1374337375164,-0.058801464736462,0.046034082770348],[0.017006384208798,-0.021179795265198,0.076828330755234]],[[-0.051508449018002,0.077057152986526,-0.019407324492931],[0.087794274091721,0.14298312366009,-0.08117787539959],[-0.10760856419802,-0.037509001791477,-0.13203318417072]],[[0.08317793160677,-0.054416306316853,-0.099586099386215],[0.067076943814754,0.010535352863371,-0.068569503724575],[-0.073771581053734,-0.12829944491386,-0.050609841942787]],[[0.061317875981331,-0.055265329778194,-0.13757695257664],[-0.060760200023651,-0.045181915163994,0.093379028141499],[-0.0086353942751884,-0.20301423966885,-0.01583150960505]],[[0.13977120816708,-0.060672033578157,0.076137766242027],[0.032833680510521,-0.026205085217953,0.12061157077551],[0.030931875109673,-0.1078802421689,-0.044448610395193]],[[-0.031183868646622,0.0053618205711246,-0.070153869688511],[-0.13674768805504,0.11988992244005,0.017818408086896],[0.076826721429825,-0.020112257450819,0.17636099457741]],[[-0.065736323595047,-0.081482321023941,0.13053999841213],[0.074425995349884,0.13531486690044,0.021105004474521],[0.029441565275192,0.12070795148611,0.19063387811184]],[[-0.0045139282010496,-0.055904820561409,-0.24127352237701],[-0.016356900334358,-0.058257602155209,-0.021987086161971],[-0.009407983161509,0.049084674566984,0.13267885148525]],[[0.0021854862570763,-0.067298710346222,-0.091652423143387],[-0.063485369086266,0.15827120840549,-0.01459323707968],[-0.045938316732645,-0.057430662214756,0.041061017662287]],[[-0.029045552015305,0.048475485295057,0.10220221430063],[0.047325566411018,-0.006698913872242,0.12577460706234],[0.025685144588351,0.050952982157469,-0.11065869033337]],[[0.020263083279133,0.01183239556849,0.1111710742116],[0.047772444784641,0.050105087459087,0.12952463328838],[-0.021700153127313,-0.084282860159874,-0.0065593109466136]],[[-0.056363936513662,-0.10651002079248,-0.15475617349148],[-0.046967685222626,-0.05493675917387,0.14902651309967],[0.21218520402908,0.10089944303036,0.15685203671455]],[[0.10231403261423,0.033698324114084,0.01808294095099],[-0.028525844216347,-0.024255707859993,-0.18140225112438],[0.046738084405661,-0.024487469345331,-0.012943584471941]],[[0.088688015937805,0.032761663198471,-0.091838590800762],[-0.026929903775454,0.045395854860544,-0.13783064484596],[-0.076539985835552,0.046146363019943,0.062621288001537]],[[-0.097128145396709,0.081746980547905,-0.0089113600552082],[0.081082835793495,-0.075575225055218,-0.008165099658072],[0.3317773938179,0.13461729884148,0.064758397638798]],[[-0.045138519257307,-0.057368710637093,-0.099382944405079],[0.19920195639133,0.084909714758396,0.035279732197523],[0.044249422848225,-0.033966951072216,0.098724842071533]],[[-0.017457470297813,0.081551104784012,-0.10483604669571],[-0.091998375952244,-0.12870636582375,-0.11159190535545],[-0.15228639543056,0.064383327960968,-0.036501936614513]],[[0.066539980471134,0.031225247308612,0.063195072114468],[-0.012697609141469,0.041701603680849,-0.057729993015528],[-0.14479584991932,-0.091301329433918,0.0357596129179]],[[0.011997335590422,0.012673862278461,0.1187761798501],[-0.10013840347528,0.014651952311397,0.038968242704868],[0.010555637069046,-0.18105886876583,-0.026523042470217]],[[-0.023591885343194,-0.099552676081657,0.059553198516369],[-0.015980860218406,0.0080058733001351,-0.092309229075909],[-0.2544658780098,0.17313329875469,-0.089921906590462]],[[-0.13250187039375,-0.11649644374847,-0.089508131146431],[0.038444321602583,-0.078032672405243,-0.0075378068722785],[-0.10819021612406,-0.11717441678047,-0.023286467418075]],[[-0.016071243211627,-0.038727428764105,0.11683754622936],[0.21831664443016,-0.011935364454985,0.034825876355171],[-0.17784877121449,-0.17514395713806,-0.05503136664629]],[[0.026975598186255,-0.066071942448616,-0.046689417213202],[0.022258626297116,-0.091108113527298,0.0040218201465905],[-0.12721475958824,-0.053016010671854,0.13172037899494]],[[-0.15551464259624,0.066937349736691,-0.058237802237272],[-0.12545271217823,0.0030589592643082,-0.029989393427968],[-0.030085245147347,-0.0060763480141759,-0.036357115954161]],[[0.12360964715481,0.0068789124488831,0.14285181462765],[0.14325737953186,0.045048635452986,-0.18726478517056],[-0.11669579893351,-0.020944582298398,-0.10825247317553]],[[0.058778133243322,0.024843573570251,0.28113186359406],[0.070601038634777,0.025781538337469,0.026119409129024],[0.031541280448437,0.050367038697004,-0.030933246016502]],[[-0.12553046643734,-0.19395858049393,-0.13824309408665],[0.11079818755388,-0.002479070564732,0.07033608853817],[-0.10850618034601,-0.062875166535378,0.065068647265434]],[[0.045816272497177,-0.12516334652901,0.077538006007671],[-0.024733956903219,0.040713794529438,-0.02675305865705],[-0.034786861389875,0.057451497763395,0.070602610707283]],[[0.099205479025841,0.045142993330956,-0.038098808377981],[0.0061641605570912,0.081276208162308,-0.071859069168568],[-0.079978100955486,-0.07726327329874,0.028380755335093]],[[-0.023328525945544,0.029642637819052,0.040767766535282],[0.03984721750021,-0.00074781710281968,0.022111771628261],[-0.060777887701988,0.097434543073177,0.01996979676187]],[[0.09567105025053,-0.097479589283466,0.02653624676168],[-0.073981039226055,0.068414501845837,0.030634431168437],[-0.067881263792515,0.14267608523369,-0.14146614074707]],[[0.015398226678371,-0.059870757162571,-0.076361380517483],[0.01465302798897,0.0303915720433,-0.14035072922707],[-0.079659298062325,0.089325971901417,-0.029025964438915]],[[-0.074281439185143,-0.05632084980607,0.029919706285],[-0.10372509807348,-0.13524213433266,-0.021429004147649],[0.0033174105919898,-0.091506242752075,-0.090217903256416]],[[0.074976451694965,0.11576923727989,0.1516185104847],[0.0035289998631924,0.055633246898651,0.047441896051168],[-0.0238286126405,-0.056290853768587,0.027244100347161]],[[-0.13723489642143,-0.1039032638073,-0.12150941044092],[0.013207009993494,-0.030334671959281,0.13273461163044],[-0.096265502274036,-0.048535298556089,0.049128625541925]],[[-0.072456851601601,-0.024060785770416,0.010751360096037],[0.12331691384315,-0.10172175616026,-0.19262261688709],[-0.14870715141296,-0.013217411935329,-0.049568798393011]],[[0.11989839375019,-0.032374873757362,-0.16174608469009],[-0.045974120497704,-0.029669901356101,-0.074759908020496],[-0.13915364444256,-0.061858959496021,-0.21027109026909]],[[-0.10711092501879,-0.032147578895092,-0.037832599133253],[-0.10009691119194,0.046319626271725,0.0013497112086043],[0.10197262465954,0.15058793127537,0.12641797959805]],[[-0.033849842846394,-0.13748021423817,-0.055150646716356],[0.016489868983626,-0.0015142295742407,0.074564807116985],[-0.13098362088203,-0.14480808377266,-0.11039851605892]]],[[[-0.0058587421663105,-0.084505587816238,-0.060370475053787],[-0.018365398049355,-0.039564449340105,-0.070118978619576],[-0.031412955373526,0.076860152184963,-0.01858245395124]],[[-0.039873115718365,-0.020553641021252,0.06233524158597],[-0.047247726470232,0.10590106248856,-0.13244871795177],[-0.013211508281529,0.036593627184629,-0.02925112657249]],[[-0.082154028117657,-0.0031056520529091,-0.13657748699188],[-0.027388783171773,-0.15841871500015,-0.075710073113441],[0.023372264578938,0.16687007248402,0.013674758374691]],[[0.071092270314693,-0.1209693774581,-0.00854432862252],[-0.032061886042356,-0.047249425202608,-0.10894607752562],[0.0052784676663578,0.0068447538651526,0.087972015142441]],[[0.011487344279885,-0.038761757314205,0.010115496814251],[0.019332515075803,-0.067194424569607,0.014247697778046],[0.029237560927868,0.016739528626204,0.0048069236800075]],[[0.010169990360737,0.0048450133763254,-0.05051489174366],[0.081967301666737,0.0084620742127299,0.073836699128151],[-0.19770205020905,-0.020315639674664,0.098528705537319]],[[0.072618700563908,0.019667629152536,-0.015193814411759],[0.0042257844470441,0.031943321228027,0.093948237597942],[-0.027134193107486,0.0029758971650153,0.043581824749708]],[[0.044445868581533,-0.037543889135122,0.0094194300472736],[0.062770821154118,-0.008418558165431,-0.05146624147892],[-0.052564349025488,0.067638389766216,-0.010543400421739]],[[-0.19668036699295,-0.008848394267261,0.090510137379169],[-0.11915857344866,0.032837152481079,-0.073731303215027],[-0.10230056196451,-0.079113937914371,-0.05845720693469]],[[0.097440361976624,0.055475562810898,-0.03590976074338],[-0.11903467029333,0.056762214750051,-0.08478582650423],[-0.13938942551613,0.083284698426723,-0.18860344588757]],[[0.11467628180981,-0.018469648435712,-0.035220395773649],[-0.009662302210927,-0.046392157673836,0.08116352558136],[-0.053662315011024,-0.077864900231361,0.014621145091951]],[[-0.045736994594336,-0.14044597744942,-0.037595316767693],[-0.035995837301016,-0.058487895876169,-0.089757323265076],[0.17209704220295,-0.015513272024691,-0.0260802321136]],[[0.11487273871899,-0.046848993748426,-0.0095085157081485],[0.075140550732613,-0.046555437147617,0.064264468848705],[-0.049212343990803,0.12917791306973,0.026099050417542]],[[0.065778344869614,-0.012649076990783,-0.0016976239858195],[-0.12802569568157,0.17386910319328,0.024348864331841],[0.046043202280998,0.11394060403109,0.046993780881166]],[[0.0099704535678029,0.0059959469363093,-0.22196254134178],[-0.12332145869732,0.070367813110352,-0.052262060344219],[-0.047070663422346,-0.018382666632533,-0.0045421221293509]],[[-0.042807620018721,0.074597336351871,-0.041061773896217],[-0.099683433771133,-0.059188615530729,0.033152863383293],[0.041236624121666,0.0013844049535692,0.16868408024311]],[[0.018985390663147,0.018955573439598,-0.044647142291069],[0.0040302937850356,-0.042435646057129,-0.1103849709034],[-0.015694439411163,-0.0073245791718364,0.045777712017298]],[[0.099744841456413,-0.015026558190584,-0.022479066625237],[0.043347258120775,0.11067670583725,0.036202929913998],[-0.019167095422745,0.081832371652126,0.029352033510804]],[[0.000571891781874,0.063351392745972,-0.14527513086796],[-0.14956197142601,-0.014832231216133,0.073428586125374],[0.063834011554718,-0.0087256487458944,0.046290121972561]],[[0.018873251974583,-0.014826889149845,-0.036786239594221],[-0.14280413091183,-0.090142123401165,0.16306139528751],[-0.10549098998308,0.094429843127728,-0.019410856068134]],[[0.04998018220067,-0.15242053568363,0.01067415997386],[0.10016847401857,0.034316506236792,-0.032694719731808],[-0.055797651410103,-0.036658983677626,0.04527136310935]],[[-0.016247404739261,-0.03212982788682,-0.07398260384798],[-0.042279843240976,-0.041357222944498,0.0078888200223446],[0.0006070084637031,0.058443270623684,-0.027429195120931]],[[-0.13792084157467,-0.010298151522875,-0.047015611082315],[0.083979658782482,0.040686067193747,-0.14422091841698],[0.020120250061154,-0.080138146877289,-0.075916729867458]],[[-0.039188228547573,0.15817657113075,0.076046608388424],[0.10109435766935,-0.039273355156183,-0.12787006795406],[0.1920949369669,0.13718068599701,0.013781861402094]],[[0.096593543887138,0.13372485339642,0.020938161760569],[-0.04048627614975,-0.0384177044034,-0.070638865232468],[0.061895452439785,0.0039248624816537,0.089041464030743]],[[0.019814787432551,0.030385635793209,0.12179085612297],[-0.069638155400753,-0.030128762125969,-0.020793505012989],[-0.021335678175092,0.0033161612227559,-0.028208108618855]],[[-0.079797565937042,-0.06487188488245,-0.031082723289728],[-0.0033417555969208,-0.054647173732519,0.10860851407051],[-0.065132722258568,-0.032177992165089,0.13674080371857]],[[-0.072436407208443,-0.078170239925385,-0.13027952611446],[-0.028431536629796,0.016010861843824,-0.018263878300786],[-0.029467649757862,-0.0022249962203205,0.041715815663338]],[[-0.021195702254772,0.0045074610970914,-0.049382492899895],[-0.070344232022762,-0.049961540848017,0.086079530417919],[0.20957046747208,0.058303475379944,0.077168919146061]],[[-0.021676262840629,-0.12668758630753,-0.094347834587097],[-0.081292748451233,-0.097494795918465,0.045307822525501],[0.095335222780704,0.061222188174725,-0.04399137571454]],[[-0.054431047290564,0.017905225977302,0.0053124125115573],[-0.13901817798615,0.10680432617664,-0.014271094463766],[-0.11014676839113,-0.032854385674,0.017399355769157]],[[-0.13912265002728,-0.032768402248621,0.0037983197253197],[0.005538675468415,-0.084218442440033,0.01407725084573],[0.069108471274376,-0.10012236237526,0.079536758363247]],[[0.042321044951677,-0.084088392555714,0.0069651608355343],[-0.073560759425163,-0.0083788689225912,0.021749934181571],[0.035562247037888,-0.017515270039439,-0.066130474209785]],[[0.07134735584259,-0.10873394459486,-0.12671114504337],[-0.047365754842758,-0.058981630951166,0.09170189499855],[-0.0029811940621585,0.024240551516414,-0.067770712077618]],[[0.060604277998209,0.12600713968277,-0.024322684854269],[0.10150720924139,0.066623874008656,0.034748815000057],[-0.15750037133694,0.0033233545254916,-0.066403441131115]],[[0.046084735542536,0.021617660298944,0.084775224328041],[0.0093878479674459,0.0068864240311086,0.050057724118233],[-0.010640496388078,0.15739570558071,-0.03049386292696]],[[-0.032328147441149,-0.11608076095581,0.17639490962029],[0.024159697815776,-0.12591525912285,0.025869840756059],[0.062909722328186,-0.022441301494837,0.053895808756351]],[[-0.077323988080025,-0.032768689095974,-0.0034401849843562],[-0.023230215534568,0.020877247676253,0.050789356231689],[0.099457606673241,0.057412959635258,0.030958469957113]],[[0.066416092216969,0.099949032068253,-0.092634201049805],[-0.11678819358349,0.079996682703495,-0.097954422235489],[0.0040169064886868,0.048760116100311,-0.081313565373421]],[[0.037563003599644,0.050488729029894,-0.048192162066698],[-0.10386385768652,-0.0025579249486327,0.1007672175765],[0.15699651837349,0.14041459560394,0.17592464387417]],[[0.056583311408758,-0.026204979047179,-0.025172824040055],[0.24263922870159,0.0045968689955771,-0.27994567155838],[0.067595891654491,-0.079814366996288,-0.0361113473773]],[[-0.014186455868185,-0.05421793833375,0.020024662837386],[0.021118253469467,0.12577120959759,0.017416058108211],[-0.16420917212963,0.018715750426054,-0.042434144765139]],[[-0.049663253128529,0.14310485124588,0.10419920086861],[-0.011291342787445,-0.08111634850502,0.0026805931702256],[0.0076526352204382,-0.099298320710659,-0.031362790614367]],[[-0.049213696271181,-0.016484208405018,-0.033051922917366],[-0.096325851976871,-0.079833567142487,0.04292468726635],[-0.057347442954779,-0.091950081288815,-0.065950989723206]],[[-0.024493547156453,-0.064905285835266,0.16832315921783],[-0.034326776862144,-0.066379137337208,-0.047525681555271],[0.063243396580219,-0.12054120004177,-0.02253938280046]],[[-0.15322080254555,-0.11562689393759,-0.09080994874239],[0.070611603558064,-0.040777299553156,0.019943941384554],[-0.039239320904016,-0.034040961414576,0.039346687495708]],[[-0.047494370490313,0.028008665889502,0.076676331460476],[-0.026342272758484,0.014853466302156,-0.047615505754948],[-0.072384692728519,-0.074826441705227,0.027294052764773]],[[0.040587469935417,0.084616772830486,-0.028474191203713],[-0.027107322588563,-0.034604143351316,0.13753548264503],[0.065603539347649,-0.023155147209764,0.096413351595402]],[[-0.12826135754585,-0.0025907719973475,0.060183703899384],[-0.016093995422125,-0.047716371715069,-0.046705488115549],[-0.12456389516592,0.066628575325012,-0.017500355839729]],[[-0.057103991508484,-0.13447715342045,0.029494939371943],[0.22671945393085,0.060421604663134,-0.15324336290359],[0.044368270784616,0.16572533547878,0.082856498658657]],[[0.077071644365788,-0.041935030370951,0.00028549408307299],[-0.0040508266538382,-0.036680057644844,0.10212358832359],[0.11882358789444,0.14752125740051,-0.050869543105364]],[[0.055440112948418,0.043310210108757,-0.013816949911416],[0.0074653425253928,0.054755445569754,0.026831112802029],[-0.067557744681835,-0.002759475260973,0.10033012926579]],[[-0.01780497469008,-0.09811083227396,-0.017185034230351],[0.01960676163435,0.0019487523240969,0.09221900254488],[-0.18685968220234,-0.094847775995731,-0.065194219350815]],[[-0.017111416906118,-0.12422613799572,-0.088751725852489],[0.067802518606186,0.043345384299755,0.082570634782314],[0.040330361574888,0.0099684726446867,-0.036160379648209]],[[-0.026905734091997,0.027556173503399,-0.060574397444725],[0.03275391459465,0.021113336086273,-0.089648358523846],[-0.068192064762115,0.082512430846691,0.12897442281246]],[[0.020754929631948,0.038164652884007,-0.042538266628981],[-0.094038113951683,-0.071036651730537,-0.0505699403584],[0.069340139627457,-0.14963139593601,-0.11455592513084]],[[-0.095187179744244,0.077426210045815,0.094660252332687],[0.094146020710468,-0.032424334436655,-0.028120983392],[0.00028478738386184,-0.10908092558384,-0.081327103078365]],[[0.043628994375467,-0.031176377087831,0.029212487861514],[0.082664370536804,0.069980755448341,0.12059847265482],[0.045912615954876,0.032111208885908,0.051798801869154]],[[0.086084492504597,0.090089365839958,0.065868251025677],[0.08917210996151,0.13351185619831,0.075054123997688],[-0.0012426712783054,0.13897965848446,0.025745030492544]],[[-0.061441138386726,0.022541772574186,-0.07011004537344],[0.055197302252054,0.032339062541723,-0.050102964043617],[0.028688574209809,0.063085541129112,0.0045156879350543]],[[-0.030537005513906,-0.038777399808168,0.017455421388149],[0.071000896394253,-0.088690899312496,0.074875794351101],[-0.066532522439957,-0.075429059565067,0.027068100869656]],[[0.047208551317453,-0.023816395550966,-0.053125742822886],[-0.062806628644466,-0.028278501704335,0.13098932802677],[-0.095974415540695,0.07210049778223,0.11922517418861]],[[0.12843506038189,-0.065795384347439,-0.03083817102015],[-0.068130046129227,-0.008184595964849,0.042675886303186],[-0.048052873462439,-0.032312378287315,0.025020714849234]],[[-0.048946630209684,-0.03290106356144,0.19091947376728],[-0.087809510529041,0.015430752187967,-0.032637432217598],[-0.064963638782501,0.021647416055202,-0.013246738351882]]],[[[-0.05814291536808,0.019564777612686,-0.16994217038155],[0.11071221530437,0.064254470169544,0.069232128560543],[-0.12065368890762,-0.16863641142845,0.04851134493947]],[[0.0045476565137506,-0.050656072795391,0.0020352506544441],[-0.047229774296284,-0.031352620571852,-0.054192248731852],[-0.067440211772919,0.02780925668776,-0.19692176580429]],[[0.056314971297979,-0.076265811920166,-0.11971208453178],[-0.12539824843407,-0.0058591025881469,-0.10125054419041],[-0.018674798309803,-0.034642271697521,-0.076744757592678]],[[-0.13735395669937,0.068508729338646,0.00049298634985462],[0.12887614965439,0.10020956397057,-0.04701191931963],[-0.057733792811632,0.0097364233806729,-0.021865390241146]],[[0.0056244423612952,0.078360117971897,0.034308075904846],[-0.039035629481077,-0.057596053928137,0.0018832413479686],[0.14879107475281,0.0083761680871248,-0.17238956689835]],[[-0.014245781116188,-0.11675907671452,-0.19940905272961],[0.13179570436478,0.064503654837608,0.0006321879918687],[0.067640975117683,0.033989399671555,-0.016040813177824]],[[0.014411797747016,-0.060376569628716,-0.075262181460857],[0.053720399737358,0.026862429454923,-0.066414296627045],[-0.19499573111534,0.043774642050266,-0.0026771223638207]],[[-0.088501401245594,-0.072292245924473,-0.12651084363461],[-0.027739347890019,0.054143227636814,-0.085543818771839],[0.118388928473,0.066851206123829,0.067498341202736]],[[-0.042818084359169,0.057387873530388,-0.23845033347607],[-0.021636210381985,0.087542966008186,0.0082423333078623],[-0.11369352787733,-0.10925506800413,0.057204179465771]],[[-0.054801929742098,0.058156788349152,-0.094891391694546],[-0.044247955083847,-0.10951067507267,-0.014935627579689],[-0.069509103894234,-0.010319134220481,0.097185201942921]],[[-0.10552661120892,0.065881110727787,0.026744015514851],[0.13070158660412,0.084492884576321,0.005507180467248],[-0.096952252089977,-0.049293145537376,-0.12790293991566]],[[0.029111059382558,0.028701949864626,0.077715590596199],[0.17901036143303,0.069366693496704,0.026032689958811],[0.013342158868909,0.020064890384674,-0.032546505331993]],[[0.079579129815102,-0.024106230586767,0.041005622595549],[-0.11749129742384,-0.0061225988902152,0.013773498125374],[0.04242767393589,0.027028061449528,-0.13313333690166]],[[0.17837946116924,-0.01055025216192,-0.013197510503232],[0.13608145713806,0.014044143259525,-0.047700446099043],[-0.030021619051695,0.014595305547118,0.032390460371971]],[[0.061712432652712,-0.014646699652076,0.049283560365438],[-0.21036343276501,-0.075581088662148,-0.028410717844963],[0.21503327786922,-0.11408357322216,-0.06951080262661]],[[0.089936554431915,-0.043555907905102,0.1348715275526],[-0.013317317701876,0.028400380164385,0.032932218164206],[-0.068841755390167,0.00018579620518722,0.083984680473804]],[[-0.098110295832157,-0.13215869665146,-0.20449960231781],[0.064200259745121,0.0032243677414954,-0.036158181726933],[-0.0041562039405107,-0.01201356947422,-0.11055928468704]],[[-0.025454845279455,0.046373784542084,0.10157627612352],[0.027653723955154,-0.053722318261862,-0.14283083379269],[-0.046088747680187,-0.041152227669954,0.04811629652977]],[[0.095734521746635,-0.13312484323978,0.14007300138474],[-0.067970618605614,0.028880888596177,-0.045296844094992],[-0.052743673324585,-0.10678275674582,-0.11103731393814]],[[0.2086415886879,0.0109050758183,0.17551818490028],[0.10570582002401,0.035740192979574,-0.12771859765053],[0.096116118133068,0.046956785023212,-0.084824964404106]],[[-0.036169357597828,-0.092564322054386,-0.16736061871052],[-0.03124793805182,0.047118000686169,-0.14052845537663],[0.10492819547653,-0.030885975807905,0.058083537966013]],[[0.012274929322302,-0.034964382648468,0.052618388086557],[0.041374754160643,-0.04444495588541,-0.13731820881367],[-0.0053675742819905,0.048736300319433,-0.070483602583408]],[[-0.095096483826637,-0.13891831040382,-0.093428865075111],[0.1946899741888,0.012122029438615,-0.087679363787174],[-0.10065615177155,0.10912588238716,0.062397729605436]],[[-0.16229198873043,-0.092045105993748,-0.026744198054075],[-0.07417468726635,0.063653901219368,0.0056565217673779],[0.059429068118334,-0.015293655917048,-0.0012319751549512]],[[0.13838405907154,0.20229896903038,-0.028004448860884],[-0.026303360238671,0.094821631908417,-0.058017197996378],[-0.075122833251953,0.026161558926105,0.0696165189147]],[[0.052836313843727,0.022900266572833,-0.11280260235071],[0.045293379575014,0.082665823400021,0.0045370329171419],[-0.022221501916647,-0.037823405116796,0.0019260661210865]],[[-0.089288033545017,-0.049369130283594,0.10546316951513],[-0.0017569892806932,0.11805009841919,-0.078137710690498],[0.21244005858898,0.062152944505215,0.14427247643471]],[[0.00096136523643509,0.091955505311489,-0.010056726634502],[-0.089212410151958,0.018156372010708,0.11296927183867],[-0.059215415269136,0.025054436177015,0.035357434302568]],[[-0.14096336066723,-0.13750356435776,-0.089784026145935],[0.055261421948671,-0.011455949395895,-0.053958475589752],[-0.0096202492713928,0.052638623863459,0.019224006682634]],[[0.029112661257386,-0.12516228854656,-0.050247080624104],[0.033922221511602,0.031603917479515,-0.010291225276887],[-0.024619655683637,-0.087953515350819,0.0065955854952335]],[[0.11991283297539,0.044595774263144,0.038243636488914],[-0.051162458956242,-0.040633294731379,-0.0073826448060572],[-0.00615099305287,0.015457538887858,0.078742809593678]],[[0.16361711919308,0.14555323123932,0.28844776749611],[-0.094148114323616,-0.11228344589472,-0.1339362859726],[-0.026969853788614,0.15768665075302,0.070162877440453]],[[-0.03394839912653,-0.11743455380201,-0.17596319317818],[0.046428129076958,-0.10932382941246,-0.099151603877544],[-0.027559846639633,0.015857310965657,0.22124695777893]],[[0.1329011619091,-0.083285123109818,-0.23001474142075],[-0.03835828229785,-0.0082009742036462,-0.00028716155793518],[0.085902348160744,0.03085508570075,-0.053387273102999]],[[-0.060527760535479,-0.056508809328079,-0.0067928852513433],[-0.04324884340167,-0.069693922996521,-0.2304697483778],[0.14967080950737,0.019050825387239,-0.22967027127743]],[[0.045169446617365,-0.071238666772842,0.055394399911165],[0.045792888849974,0.074219852685928,-0.01002118550241],[0.051380660384893,-0.040672779083252,0.10434578359127]],[[0.05538959428668,-0.027183499187231,0.09766299277544],[0.21163272857666,-0.02146278321743,0.19094103574753],[0.12273498624563,0.053307767957449,-0.038389172405005]],[[0.084728814661503,0.13630957901478,-0.027262862771749],[-0.1182376742363,-0.058039005845785,0.01655232720077],[0.16912032663822,-0.033577986061573,-0.16013953089714]],[[-0.10461081564426,0.031901709735394,0.031542580574751],[0.025183724239469,-0.043487787246704,-0.11789638549089],[-0.075299546122551,-0.1393710821867,-0.12608505785465]],[[-0.12765105068684,-0.064755253493786,-0.055319152772427],[-0.11823057383299,-0.020408218726516,-0.066071674227715],[0.12750573456287,0.059897106140852,0.056810710579157]],[[0.15063981711864,0.032065384089947,-0.034056387841702],[-0.13157179951668,-0.026710910722613,-0.085916049778461],[-0.24282677471638,0.062548540532589,0.15316006541252]],[[-0.25038766860962,-0.037823099642992,0.086225248873234],[-0.092300318181515,-0.086177371442318,-0.066948644816875],[-0.1006725281477,-0.13137310743332,-0.057738538831472]],[[0.16687768697739,-0.11392667889595,0.053670916706324],[0.0092649478465319,-0.016324138268828,-0.079774729907513],[0.099276080727577,-0.040794383734465,-0.1562911272049]],[[0.23056100308895,-0.033120073378086,0.1691660284996],[0.021300498396158,0.072025634348392,0.06716649979353],[-0.10622019320726,-0.063984706997871,0.012488212436438]],[[-0.056267585605383,-0.042540144175291,0.05312355235219],[-0.089812450110912,-0.085987195372581,0.073249623179436],[0.00041576538933441,0.098516397178173,-0.19248741865158]],[[-0.031529627740383,0.11568807810545,-0.024868905544281],[-0.11627449095249,-0.085091568529606,0.1562284976244],[0.26086136698723,0.024968640878797,-0.048823587596416]],[[0.18623788654804,0.06324940174818,-0.048769492655993],[-0.084723152220249,-0.053042516112328,-0.011136524379253],[-0.082947865128517,-0.14492030441761,0.1565416008234]],[[-0.03446089476347,-0.11190186440945,-0.031625550240278],[-0.020467964932323,-0.038488801568747,0.058103829622269],[0.074018158018589,-0.057647552341223,-8.7463966337964e-05]],[[0.0012874079402536,-0.14171309769154,-0.20175981521606],[-0.047889664769173,-0.0092222401872277,0.067548215389252],[-0.17806361615658,0.017999393865466,-0.022881159558892]],[[-0.11177840083838,0.081488534808159,-0.12292534857988],[-0.010392262600362,-0.020702756941319,-0.097539879381657],[-0.080793261528015,0.030774187296629,0.0076635922305286]],[[-0.039890959858894,0.04492125287652,0.0076783215627074],[0.10427032411098,-0.074748508632183,0.060979045927525],[0.012075199745595,-0.09063646197319,-0.16313546895981]],[[0.18728315830231,0.10724759846926,0.14471447467804],[0.10578850656748,0.029682787135243,0.044630821794271],[0.2456646412611,0.1316070407629,0.14077715575695]],[[0.072929963469505,0.05821730941534,-0.063405446708202],[-0.072835654020309,0.090608492493629,0.076718583703041],[-0.23775202035904,-0.11285438388586,0.094339333474636]],[[-0.025597255676985,-0.052413992583752,-0.099181450903416],[0.04002920538187,-0.093223594129086,-0.13164678215981],[0.14738409221172,0.045872513204813,-0.062047448009253]],[[-0.074912913143635,-0.08232044428587,-0.14409127831459],[-0.031790740787983,0.064954057335854,-0.024421317502856],[0.067681610584259,0.085404753684998,-0.054296243935823]],[[-0.075496844947338,-0.02609040774405,-0.017079453915358],[-0.0097775151953101,-0.02384745515883,-0.11321422457695],[-0.12327078729868,-0.077049620449543,0.13700942695141]],[[-0.068513587117195,-0.095018282532692,-0.0453260242939],[0.1026279181242,0.11308099329472,0.1527933627367],[-0.022964257746935,-0.085336104035378,-0.081574968993664]],[[-0.037383448332548,0.0096229901537299,0.012274102307856],[-0.015993654727936,-0.042884394526482,-0.013902039267123],[-0.15082313120365,-0.13853904604912,-0.035003650933504]],[[-0.059899281710386,0.064911171793938,0.13651493191719],[0.10917285829782,0.051250196993351,0.0088511435315013],[0.069564484059811,0.12544946372509,0.093256428837776]],[[-0.011158321984112,0.0081614125519991,0.17729289829731],[-0.080689504742622,0.039535660296679,-0.031048275530338],[-0.11474941670895,-0.032765116542578,0.06873082369566]],[[0.17292086780071,0.096777431666851,-0.084300987422466],[0.031392987817526,0.093556478619576,-0.064364731311798],[0.089737541973591,-0.00044329965021461,-0.1501499414444]],[[0.11783971637487,0.058947004377842,0.022923594340682],[-0.062541104853153,0.02950394526124,0.1061053648591],[0.061826538294554,0.01745368540287,-0.052756391465664]],[[0.10754411667585,-0.037049055099487,-0.064214639365673],[-0.079637810587883,0.037805929780006,0.03868317976594],[-0.11105032265186,0.080144859850407,-0.027321083471179]],[[0.10684875398874,0.094980701804161,-0.037196010351181],[0.050350569188595,-0.019518343731761,-0.081545315682888],[-0.17109297215939,0.021009065210819,0.075310349464417]]],[[[-0.010884364135563,-0.053911924362183,0.01899329200387],[0.06666287779808,-0.028796715661883,-0.12872897088528],[-0.14517322182655,-0.00015755475033075,0.024758527055383]],[[-0.017381496727467,-0.078134603798389,0.073678478598595],[-0.15119406580925,-0.037839256227016,-0.063534058630466],[-0.14727130532265,0.020630724728107,-0.039907585829496]],[[-0.048637982457876,-0.10505964607,-0.16338981688023],[-0.011357197538018,0.030713407322764,0.016507711261511],[-0.13236729800701,-0.01232798397541,-0.039938375353813]],[[0.054193798452616,-0.033382304012775,-0.011516623198986],[-0.083642035722733,-0.12545122206211,0.059544440358877],[0.080232724547386,-0.093337044119835,-0.13907194137573]],[[-0.067271128296852,-0.14838886260986,0.05091155320406],[-0.071243837475777,-0.048333693295717,-0.090050429105759],[-0.17429694533348,0.033890414983034,0.074426658451557]],[[-0.1683464795351,-0.009287403896451,-0.10740097612143],[-0.063597403466702,-0.10633549839258,-0.01097946241498],[0.040689028799534,-0.11031812429428,-0.018578067421913]],[[0.044811967760324,-0.0014943676069379,-0.055317141115665],[-0.092179149389267,-0.1294170320034,-0.057250611484051],[-0.061656177043915,0.0046722344122827,0.074286825954914]],[[0.083387993276119,-0.10292069613934,0.035933695733547],[-0.11087746918201,-0.018177304416895,0.063108451664448],[-0.2122960537672,0.00939632486552,-0.12754185497761]],[[-0.042474519461393,0.070357866585255,-0.027214601635933],[0.092049546539783,0.048404593020678,-0.074589617550373],[-0.023442521691322,-0.040713660418987,-0.039971087127924]],[[-0.022231508046389,-0.00306955142878,-0.066826358437538],[-0.028765825554729,0.13149203360081,0.10737065970898],[-0.0055593559518456,-0.042982555925846,0.045153342187405]],[[0.014817691408098,-0.029464669525623,-0.039421409368515],[-0.037878673523664,-0.004277050960809,0.083402417600155],[0.074652142822742,0.15662361681461,0.088528841733932]],[[-0.021981215104461,0.084232397377491,-0.054373595863581],[-0.076646044850349,0.009361457079649,-0.028685109689832],[-0.097189798951149,-0.09814015775919,0.043735262006521]],[[-0.016158176586032,-0.04132491350174,-0.0090686324983835],[0.028278697282076,0.11422146111727,-0.025688366964459],[0.013773398473859,0.072436548769474,0.10197401791811]],[[-0.11330956220627,-0.014247889630497,-0.11582109332085],[-0.064783573150635,0.066323347389698,0.047631412744522],[-0.14195403456688,-0.024218155071139,0.11258789896965]],[[-0.14400108158588,0.021367004141212,0.073339328169823],[-0.29028251767159,-0.041469130665064,0.051488935947418],[0.10164203494787,-0.063245117664337,0.12273544818163]],[[0.076519131660461,-0.071398206055164,-0.040397118777037],[-0.030743423849344,0.0015963641926646,-0.02883567288518],[-0.13180382549763,-0.0085942288860679,0.052316535264254]],[[0.01293969899416,0.1493978202343,0.052974067628384],[-0.02279157564044,0.01659918576479,0.088316276669502],[0.024316776543856,0.063376121222973,0.073104113340378]],[[0.0069771553389728,-0.07805947214365,-0.018924195319414],[-0.032031949609518,-0.019177168607712,0.030875289812684],[0.088294520974159,-0.090068139135838,-0.024159088730812]],[[0.12189092487097,-0.049840144813061,-0.084768503904343],[-0.017835829406977,-0.0061432686634362,0.037052150815725],[0.21324951946735,0.056750610470772,-0.13000172376633]],[[0.075527861714363,0.0058486824855208,0.0083645535632968],[-0.049219131469727,0.11880796402693,0.030628938227892],[0.07049448043108,-0.053074061870575,-0.030037084594369]],[[-0.16209901869297,0.073806338012218,0.0028547160327435],[0.0010520438663661,-0.05995612218976,0.077283076941967],[0.046398285776377,-0.046296156942844,-0.085525140166283]],[[-0.043079026043415,0.020445981994271,0.030393473803997],[-0.057363852858543,-0.036241736263037,0.077908851206303],[-0.031287487596273,-0.082756794989109,0.0049665817059577]],[[0.081482514739037,-0.10316563397646,0.022425761446357],[-0.013930847868323,-0.031226251274347,-0.028455631807446],[0.020526122301817,-0.012431531213224,0.038204684853554]],[[0.018169948831201,-0.10802289843559,-0.0030679071787745],[0.042307917028666,0.2359514683485,0.091735206544399],[0.086744233965874,-0.034530103206635,0.034868869930506]],[[0.10975244641304,-0.026858884841204,0.02462169714272],[0.062259238213301,0.026085760444403,-0.033404961228371],[0.074195876717567,-0.031316801905632,-0.065611518919468]],[[-0.042579747736454,-0.02433511428535,-0.020586183294654],[0.042908150702715,-0.0015778774395585,-0.071958668529987],[0.026138070970774,0.097537346184254,-0.030192565172911]],[[0.09135165810585,0.002481548814103,-0.12863512337208],[-0.05205450206995,-0.084937140345573,0.041572332382202],[-0.023568995296955,0.01961393468082,0.017185281962156]],[[-0.098534569144249,0.0092857144773006,-0.014282997697592],[-0.12695506215096,-0.072190672159195,-0.020337320864201],[0.067164100706577,-0.0059877298772335,-0.19306832551956]],[[0.11051084846258,0.048742815852165,0.0068132504820824],[-0.018302420154214,-0.013302274979651,-0.058831874281168],[0.062329743057489,-0.029103755950928,0.064353458583355]],[[-0.022978324443102,-0.095194771885872,0.01422259118408],[0.091945447027683,0.017987472936511,-0.047487549483776],[-0.060484744608402,0.015503138303757,0.016543796285987]],[[0.0088063525035977,-0.054018676280975,-0.026831459254026],[-0.088284626603127,0.031955257058144,-0.13138753175735],[-0.10595911741257,-0.018720826134086,-0.00099156377837062]],[[0.1932297796011,0.045058913528919,-0.12549333274364],[0.15489046275616,-0.078075706958771,0.058116290718317],[0.036393739283085,0.11324863880873,0.0097100473940372]],[[0.059244524687529,0.07494643330574,0.036485906690359],[0.0035648436751217,0.020393380895257,0.21685491502285],[0.040699798613787,-0.087459094822407,0.042069260030985]],[[-0.026982644572854,0.039716452360153,0.030421545729041],[-0.015670021995902,0.071625538170338,-0.12277387827635],[0.025434143841267,-0.042891021817923,-0.098912015557289]],[[0.045733854174614,-0.084280446171761,-0.10601482540369],[-0.15541683137417,0.0045383414253592,0.064146280288696],[-0.15433302521706,0.0051817302592099,0.20344331860542]],[[0.11133969575167,-0.0091026742011309,0.13444757461548],[-0.0382383428514,0.077472805976868,0.094849400222301],[-0.037989486008883,0.089471012353897,0.045222233980894]],[[0.0094936024397612,0.07940635830164,0.029863031581044],[0.030054861679673,-0.075475141406059,-0.10834469646215],[-0.096346579492092,-0.088778235018253,0.065038852393627]],[[-0.11816249042749,0.049976956099272,-0.023019155487418],[-0.078074552118778,-0.14887680113316,0.00038292480167001],[-0.067986860871315,-0.1740041077137,0.066658981144428]],[[-0.047033917158842,0.069146506488323,-0.048775866627693],[-0.047851376235485,-0.023654701188207,-0.035833105444908],[0.027728842571378,-0.085139818489552,0.027152117341757]],[[0.052136946469545,0.056526597589254,-0.005243401043117],[-0.036652587354183,-0.081355154514313,0.040971606969833],[-0.097607254981995,-0.0075744264759123,-0.011896659620106]],[[0.039669673889875,-0.086684763431549,-0.019721055403352],[-0.024049080908298,-0.057366985827684,-0.10753389447927],[-0.087602689862251,-0.10410964488983,0.070297129452229]],[[-0.074846036732197,0.018168367445469,-0.04399798065424],[-0.056258488446474,-0.05406590923667,0.0057523204013705],[-0.038354653865099,-0.076224409043789,-0.060635171830654]],[[-0.068049281835556,-0.093458920717239,-0.031779460608959],[-0.035816796123981,0.05258821323514,-0.0098518636077642],[0.022550644353032,0.022477643564343,0.11526723951101]],[[-0.015645416453481,-0.077225044369698,0.01154653262347],[0.10433471947908,0.012102168984711,-0.12269888073206],[0.034859996289015,-0.04246986284852,-0.13298726081848]],[[0.12870170176029,0.032126847654581,-0.098551064729691],[0.071806348860264,-0.038218058645725,-0.070149466395378],[-0.028652660548687,-0.076187454164028,-0.019858924672008]],[[-0.055814146995544,0.077748708426952,0.073339626193047],[-0.033115014433861,0.02197745628655,0.032994203269482],[-0.017704619094729,0.027506723999977,-0.059984307736158]],[[0.11261248588562,0.067838072776794,-0.077746786177158],[-0.071710832417011,-0.014413603581488,0.0061385883018374],[-0.10878124088049,-0.03787137567997,-0.1035071015358]],[[-0.064597450196743,0.10371269285679,-0.097167544066906],[-0.07956936955452,0.040968719869852,-0.15721075236797],[-0.0014997615944594,-0.011137336492538,0.0075571085326374]],[[-0.019737754017115,-0.080452255904675,-0.10292824357748],[-0.038411445915699,0.0058285375125706,-0.017806068062782],[-0.15662063658237,-0.20114180445671,-0.091820105910301]],[[-0.014679716899991,0.10631927847862,-0.084547497332096],[-0.01595052704215,0.019347099587321,0.049357540905476],[0.029384657740593,-0.019823169335723,0.036825023591518]],[[0.0030953139066696,-0.096651650965214,-0.079619035124779],[0.0044291289523244,-0.053789302706718,0.16811588406563],[-0.048780061304569,0.094950847327709,-0.093301773071289]],[[-0.14299993216991,0.047868154942989,-0.097568713128567],[0.15836577117443,-0.046307876706123,-0.091657266020775],[0.031976092606783,-0.023159837350249,0.00048462103586644]],[[0.027168300002813,-0.052945874631405,-0.009301733225584],[-0.0042513590306044,0.10747322440147,-0.050941545516253],[0.050364002585411,-0.053274631500244,0.080215692520142]],[[0.099119752645493,0.013513616286218,-0.032963171601295],[-0.039675917476416,0.051415234804153,-0.058972917497158],[0.12715831398964,-0.066369086503983,-0.06173188239336]],[[-0.06425616890192,-0.026246311143041,0.045437563210726],[0.077989809215069,-0.0017810162389651,-0.017205506563187],[0.047045826911926,0.075626872479916,-0.16804374754429]],[[-0.026871673762798,-0.10295760631561,0.03635461255908],[0.076903194189072,0.031666055321693,-0.017711866647005],[-0.13870076835155,0.11345145851374,-0.025884781032801]],[[-0.17620036005974,0.017784686759114,0.053959704935551],[-0.042868558317423,0.019163833931088,0.10143654793501],[-0.043950881808996,-0.18383571505547,-0.062565378844738]],[[-0.06477914005518,-0.037746462970972,0.049252770841122],[0.0076988181099296,-0.054068509489298,0.0061323950067163],[-0.015000984072685,0.022619720548391,-0.053096327930689]],[[0.099872104823589,0.045106668025255,-0.038948450237513],[0.13049991428852,0.044377990067005,0.088039301335812],[0.056186981499195,-0.086310535669327,0.087690502405167]],[[-0.15853027999401,-0.026488209143281,0.058819934725761],[0.036713901907206,-0.07140925526619,0.12766098976135],[0.027539217844605,0.026710771024227,-0.069272309541702]],[[0.017633188515902,0.0029064919799566,-0.038576278835535],[-0.14712060987949,-0.084020279347897,-0.04878394305706],[-0.033707618713379,0.013282511383295,-0.023551199585199]],[[0.029544904828072,0.056216310709715,-0.053947784006596],[0.065482035279274,0.054075833410025,0.028435565531254],[-0.11763022840023,0.0044687506742775,-0.12734247744083]],[[-0.15398898720741,-0.040082782506943,-0.094425037503242],[-0.076991751790047,0.23025546967983,0.06708737462759],[-0.048724539577961,0.050565455108881,0.067285403609276]],[[0.059046316891909,0.028047734871507,0.11045787483454],[0.22169022262096,0.082715600728989,-0.03353950381279],[-0.054849270731211,-0.12423850595951,-0.19394400715828]]],[[[-0.0030468702316284,-0.049299687147141,-0.047431733459234],[-0.088015593588352,0.00878328923136,-0.031030850484967],[-0.040447685867548,0.10451848059893,-0.052404277026653]],[[-0.0048760278150439,0.025784092023969,-0.0065838899463415],[-0.017157321795821,0.041397336870432,-0.042863048613071],[-0.075614109635353,-0.093355290591717,-0.11749579012394]],[[-0.028299855068326,-0.0010592561447993,-0.034751676023006],[0.0023517641238868,-0.0154063468799,-0.026678340509534],[-0.13746757805347,0.020556081086397,-0.054267194122076]],[[-0.082502640783787,0.00091888417955488,-0.0032447031699121],[-0.063832052052021,-0.058624610304832,-0.046340182423592],[0.022783162072301,0.00024713479797356,0.12614063918591]],[[0.0071917455643415,0.019999293610454,-0.051970157772303],[-0.12827351689339,-0.028310691937804,0.003445474198088],[-0.0068999407812953,0.015104631893337,-0.049948938190937]],[[-0.024236496537924,-0.12821280956268,0.06787320971489],[-0.053915273398161,-0.073552437126637,-0.17576295137405],[0.0074820970185101,0.028499945998192,-0.06213153898716]],[[-0.062144860625267,0.062154021114111,0.030626446008682],[0.087947100400925,-0.090015217661858,-0.018075600266457],[0.055543005466461,-0.042323157191277,0.12025638669729]],[[0.052970178425312,0.019776701927185,0.14384445548058],[-0.056084267795086,0.11294890940189,0.053371157497168],[0.14222757518291,-0.16122411191463,-0.084247760474682]],[[-0.010506966151297,0.023236373439431,-0.029251370579004],[0.097410000860691,0.022095097228885,-0.036106798797846],[0.015973700210452,0.022027520462871,-0.13239689171314]],[[-0.15306626260281,-0.051527660340071,-0.12350783497095],[-0.017850443720818,-0.019719403237104,0.1212929263711],[-0.067292205989361,-0.027502389624715,0.063780568540096]],[[-0.046737998723984,-0.092294722795486,-0.0056485384702682],[-0.027980636805296,0.04214209318161,-0.10285438597202],[-0.028088016435504,-0.037160612642765,-0.0088984929025173]],[[0.029972704127431,-0.025781912729144,-0.017251679673791],[-0.10600965470076,0.003902503522113,0.020739734172821],[-0.0091059841215611,-0.13653402030468,-0.17726415395737]],[[0.0077459211461246,0.071147762238979,0.080370485782623],[0.027890525758266,0.0031692173797637,-0.0028719678521156],[-0.087278120219707,-0.16942943632603,0.0073770512826741]],[[-0.048604730516672,0.047697804868221,-0.11359652131796],[-0.0034772867802531,0.15549431741238,0.13397301733494],[-0.026252225041389,-0.05373964086175,0.041330993175507]],[[-0.0539242438972,0.010126285254955,0.0063463989645243],[-0.0078364619985223,-0.017495390027761,0.054290112107992],[0.05015816912055,0.040694933384657,0.084324978291988]],[[0.040556810796261,0.039218991994858,-0.041526976972818],[-0.038761883974075,0.11579120159149,0.072130791842937],[-0.029545882716775,-0.21546196937561,-0.19294023513794]],[[-0.015619337558746,-0.049596905708313,0.075323358178139],[-0.087103895843029,-0.091966606676579,-0.086057685315609],[-0.032033760100603,0.044425871223211,-0.034814052283764]],[[-0.15681523084641,0.019901882857084,0.039279278367758],[-0.17313309013844,0.095586724579334,-0.1056665033102],[0.059632916003466,0.043382074683905,-0.036711718887091]],[[-0.033752281218767,0.070406906306744,-0.23708616197109],[-0.11296880990267,0.019400514662266,-0.055784340947866],[-0.00054794893367216,0.14267940819263,-0.07533772289753]],[[0.071645192801952,-0.051294416189194,-0.015602799132466],[-0.048833802342415,-0.036590412259102,-0.079718232154846],[0.1705025434494,-0.066943846642971,0.061042353510857]],[[0.035119898617268,-0.14317391812801,-0.066609710454941],[-0.051604695618153,0.022503266111016,-0.078110463917255],[0.095600202679634,-0.0057266661897302,0.054218091070652]],[[-0.040948905050755,-0.040115851908922,-0.0015549595700577],[0.0041258647106588,0.078723050653934,-0.0097057642415166],[0.017350969836116,-0.031551323831081,-0.061501085758209]],[[0.13099154829979,-0.0032399471383542,0.11254289001226],[-0.086134634912014,0.011181483976543,0.022257490083575],[0.090604864060879,-0.04032339528203,-0.13079588115215]],[[0.12656404078007,-0.054428659379482,-0.13058087229729],[0.10777682065964,-0.062597870826721,-0.029114412143826],[0.13679546117783,0.09910611063242,0.029451927170157]],[[-0.18214380741119,0.12658062577248,0.011236547492445],[0.19473937153816,-0.041642263531685,-0.016903335228562],[-0.041594322770834,0.047402359545231,0.052449088543653]],[[-0.039367843419313,-0.0024870974011719,0.05869423225522],[-0.081608042120934,-0.025853745639324,-0.0017427433049306],[-0.037525501102209,0.029254203662276,0.024697070941329]],[[-0.038753498345613,-0.031646773219109,0.12211667001247],[0.082706205546856,-0.03484645485878,-0.030575349926949],[-0.031960658729076,-0.042141120880842,0.059509389102459]],[[-0.024487124755979,-0.03379126265645,-0.044969949871302],[-0.016754126176238,-0.063138484954834,0.093231983482838],[-0.1003805026412,0.067493610084057,-0.22001495957375]],[[-0.06354134529829,-0.1454423815012,-0.054285254329443],[-0.074861586093903,-0.0054582441225648,-0.041021507233381],[-0.032457120716572,-0.083271741867065,0.012326365336776]],[[0.027668677270412,-0.006141341291368,-0.10642283409834],[-0.0043676081113517,-0.12042429298162,0.019438756629825],[-0.041535340249538,-0.098739005625248,-0.06635856628418]],[[-0.0088631566613913,-0.023387977853417,0.0024130744859576],[0.022212870419025,-0.074839219450951,-0.072249218821526],[-0.083079107105732,-0.14421045780182,0.18208709359169]],[[0.11993846297264,0.033248353749514,0.19459107518196],[-0.16296510398388,-0.093860670924187,-0.03288035094738],[0.021503135561943,0.018241327255964,-0.0069325244985521]],[[0.20123368501663,0.10613238811493,0.1263116300106],[-0.090183258056641,0.091269411146641,-0.0040165176615119],[-0.03433096781373,-0.032385174185038,0.013114505447447]],[[-0.034955605864525,-0.11526100337505,-0.0010565073462203],[-0.031714364886284,-0.098514668643475,-0.037378549575806],[-0.0033947273623198,-0.050056897103786,-0.094588182866573]],[[0.056145705282688,-0.033485323190689,0.013368235900998],[-0.10573575645685,0.035465408116579,-0.059351123869419],[-0.020913379266858,0.098928399384022,0.029840366914868]],[[-0.1223017796874,-0.13689303398132,0.037896811962128],[-0.034474026411772,0.07778138667345,-0.031702991575003],[-0.14273208379745,-0.052256062626839,0.2880394756794]],[[0.067615799605846,0.21185380220413,0.12425765395164],[0.16825741529465,0.027295334264636,0.057392153888941],[-0.05908016115427,-0.044984400272369,-0.03432335332036]],[[0.029161332175136,0.0013289449270815,-0.0014487388543785],[-0.046860486268997,-0.08182081580162,-0.093751929700375],[-0.023347433656454,-0.19809076189995,0.13512769341469]],[[0.093470349907875,-0.16776131093502,0.044238150119781],[-0.17602042853832,-0.051239710301161,-0.082444243133068],[-0.046064633876085,-0.026025842875242,-0.10117577761412]],[[-0.055045913904905,-0.17988578975201,-0.046078979969025],[0.068460792303085,-0.083626061677933,-0.057634767144918],[-0.038980264216661,0.0019685283768922,0.073773771524429]],[[-0.12338427454233,0.074096731841564,0.035918913781643],[-0.056114457547665,-0.12816593050957,-0.057292103767395],[-0.018120000138879,-0.14599432051182,0.061952572315931]],[[-0.091877937316895,-0.0064942827448249,0.051830358803272],[0.022049462422729,0.0090767964720726,-0.026642754673958],[-0.12990200519562,-0.067796111106873,-0.035223931074142]],[[-0.017639368772507,-0.0019193515181541,-0.082945242524147],[-0.0073909033089876,-0.051058530807495,0.1391186863184],[0.069692842662334,0.13496555387974,0.0092578195035458]],[[-0.14938439428806,0.049933768808842,-0.15227063000202],[-0.021102583035827,0.13583596050739,-0.011087787337601],[-0.080314204096794,0.0059913890436292,-0.019423957914114]],[[-0.025119535624981,0.025067096576095,-0.17172978818417],[-0.092475414276123,0.10769764333963,-0.023852057754993],[-0.11344883590937,-0.088702715933323,0.066389657557011]],[[0.059043940156698,-0.019827466458082,0.097704440355301],[0.015989616513252,0.02200173586607,-0.040271781384945],[-0.00077162444358692,-0.078144669532776,-0.026800477877259]],[[0.05192519724369,0.16120421886444,0.078282691538334],[-0.091660179197788,0.022422773763537,-0.10872896015644],[-0.017641155049205,-0.047318167984486,-0.058159969747066]],[[0.053539697080851,-0.0061065689660609,0.019841836765409],[0.038575828075409,-0.13862995803356,-0.0079385554417968],[-0.026887668296695,-0.091230019927025,0.16011908650398]],[[-0.041827209293842,0.061353906989098,-0.018057659268379],[0.065973833203316,-0.048080891370773,-0.043814931064844],[0.028725462034345,0.053453244268894,-0.0067286510020494]],[[0.086250722408295,-0.036200236529112,-0.058625157922506],[0.22819101810455,0.11099655926228,-0.0018942262977362],[-0.012771212495863,-0.017494849860668,0.059486944228411]],[[-0.094479948282242,-0.01091412268579,0.026515329256654],[0.1048110127449,-0.13657903671265,0.002082176040858],[0.17240558564663,-0.018501503393054,0.070251993834972]],[[-0.079279519617558,0.11649473011494,0.08105531334877],[0.12086769193411,-0.083800479769707,0.067899644374847],[-0.16414214670658,0.088818021118641,-0.1716817766428]],[[0.054422698915005,-0.033044781535864,0.051363058388233],[0.027445271611214,0.025310384109616,-0.027965899556875],[-0.037669405341148,0.16244602203369,0.12126149982214]],[[-0.075785279273987,0.031114956364036,-0.069683983922005],[0.019890990108252,0.0013716631801799,0.094937600195408],[-0.19235718250275,0.024388562887907,-0.062824778258801]],[[-0.016134319826961,0.035073049366474,0.059904027730227],[0.049764432013035,-0.13906408846378,-0.050671078264713],[-0.058171268552542,0.068371884524822,0.056148193776608]],[[-0.019211675971746,-0.11555611342192,0.1737414598465],[0.054511588066816,-0.0040328437462449,-0.060949712991714],[-0.075486563146114,0.11099265515804,0.045144017785788]],[[0.1777900904417,0.033860385417938,-0.034933917224407],[0.021309340372682,0.052646156400442,-0.057593338191509],[-0.084152400493622,-0.078734964132309,-0.011018082499504]],[[0.040393639355898,0.0046510393731296,0.032592922449112],[-0.027667932212353,-0.028156774118543,0.054631672799587],[-0.19873256981373,0.056845236569643,-0.016854962334037]],[[-0.028775168582797,-0.0030829180032015,-0.047382023185492],[0.11855766922235,0.034728061407804,0.013197855092585],[-0.002517104614526,0.082913197577,0.000689881388098]],[[-0.17491264641285,-0.12078888714314,0.0027004317380488],[-0.040423683822155,0.033941507339478,-0.016329251229763],[0.02964130602777,0.091417051851749,0.028030360117555]],[[-0.15107971429825,0.011098670773208,0.074245281517506],[-0.039710734039545,-0.043201375752687,0.07843741774559],[-0.091542571783066,-0.07688219845295,-0.10901000350714]],[[-0.0065373182296753,0.024241115897894,-0.030445864424109],[0.0075751468539238,-0.072075039148331,-0.045314587652683],[-0.13433869183064,0.037375427782536,-0.14677442610264]],[[-0.068588383495808,0.010921342298388,-0.033587895333767],[-0.14014975726604,0.012929578311741,0.096162259578705],[-0.051169116050005,-0.034944079816341,-0.016794269904494]],[[-0.017942428588867,-0.017148647457361,0.18846419453621],[0.033051315695047,0.068603478372097,0.035816509276628],[-0.16201463341713,-0.020836835727096,-0.12158764153719]]],[[[0.017805339768529,-0.031694523990154,0.15492691099644],[-0.05674247443676,-0.0050173606723547,0.017143167555332],[0.0011275337310508,0.013126255013049,0.0026304393541068]],[[0.020573327317834,-0.015716157853603,0.11589761078358],[-0.058620121330023,0.068452402949333,-0.096495993435383],[0.0036679785698652,-0.097087949514389,-0.21262988448143]],[[0.004898794926703,-0.083351284265518,-0.034121606498957],[-0.077772952616215,0.10407037287951,-0.071132980287075],[-0.21971254050732,0.02871011197567,-0.010404461063445]],[[0.043829213827848,-0.016959026455879,-0.14380158483982],[-0.10512760281563,0.082250565290451,-0.021891411393881],[-0.10972112417221,-0.087093561887741,-0.098964594304562]],[[-0.092182829976082,0.0081823356449604,-0.0053141228854656],[-0.018687356263399,-0.10767225176096,-0.16570717096329],[-0.13195350766182,-0.059963557869196,-0.1104743629694]],[[-0.044252950698137,-0.081200934946537,-0.14536066353321],[-0.081393770873547,-0.07561456412077,0.011362306773663],[0.071041502058506,-0.015831599012017,-0.071068577468395]],[[0.082124195992947,0.052866980433464,-0.14950725436211],[-0.0087329996749759,-0.037901248782873,-0.13208816945553],[0.13692530989647,-0.063590340316296,-0.06585368514061]],[[-0.0054318211041391,0.11200992017984,-0.14685653150082],[-0.10380224138498,-0.054216552525759,0.056370615959167],[-0.1018071770668,-0.13908033072948,0.060217268764973]],[[-0.038486137986183,0.02095627784729,-0.027076141908765],[-0.06176021322608,-0.0052454727701843,-0.099867008626461],[0.067263156175613,0.12742413580418,-0.09955608099699]],[[0.033988993614912,0.12774755060673,-0.033812869340181],[0.041990488767624,0.055006708949804,-0.083137050271034],[-0.029711749404669,-0.0094493003562093,-0.044910650700331]],[[-0.059333853423595,-0.091272249817848,0.09285032749176],[0.041512291878462,-0.012245083227754,0.065156146883965],[-0.0085689080879092,-0.090146243572235,0.086798816919327]],[[-0.013505642302334,0.037857074290514,0.025471620261669],[0.032538291066885,-0.10350449383259,-0.0418331772089],[-0.051009058952332,-0.10150570422411,-0.11495939642191]],[[-0.1149690747261,0.07427304238081,-0.086021795868874],[0.066028200089931,-0.0012350105680525,0.048550333827734],[-0.024291485548019,-0.10905700922012,0.052626568824053]],[[-0.16811209917068,0.00034545658854768,0.020632738247514],[0.00033227284438908,0.0031987759284675,0.021008735522628],[-0.029549449682236,-0.18701128661633,-0.07634511590004]],[[0.03532001003623,-0.094881758093834,-0.013102024793625],[0.0086924312636256,0.019644942134619,-0.016612799838185],[0.085118003189564,-0.10229194909334,0.10371375083923]],[[0.007265152875334,0.090554468333721,-0.12559206783772],[-0.030888000503182,-0.010754447430372,-0.11185271292925],[-0.035155508667231,0.10270449519157,0.020109007135034]],[[0.060206070542336,-0.08898151665926,-0.060731764882803],[-0.067419372498989,0.0152891529724,-0.007718357257545],[-0.018094772472978,-0.17639297246933,-0.0342804081738]],[[0.085820525884628,-0.040163721889257,0.092237561941147],[0.082326501607895,0.0135558526963,-0.13502398133278],[-0.035065233707428,0.075089290738106,-0.0066590015776455]],[[0.13901242613792,-0.17863574624062,-0.017013067379594],[0.053897049278021,-0.035363186150789,-0.041878718882799],[0.083474077284336,-0.20642602443695,0.10184615850449]],[[0.11393235623837,-0.12477283924818,-0.053488414734602],[-0.024996554479003,-0.096161358058453,-0.019265174865723],[-0.10173436254263,-0.032435663044453,-0.055954128503799]],[[0.064744487404823,0.13496588170528,-0.024153156206012],[-0.12612368166447,-0.065018266439438,0.042487617582083],[-0.13159793615341,0.096207395195961,-0.0031704693101346]],[[-0.021070269867778,0.04237711802125,0.052117358893156],[-0.049242932349443,-0.022233614698052,0.018924113363028],[-0.053374141454697,-0.066528856754303,-0.024288946762681]],[[0.068673767149448,-0.048495706170797,-0.096729934215546],[0.029503144323826,0.0073580127209425,-0.028363898396492],[-0.077305346727371,0.07374219596386,-0.011031745932996]],[[-0.066663324832916,0.060263480991125,0.054073479026556],[-0.082171313464642,0.076764434576035,-0.012281131930649],[0.077499993145466,0.11031255125999,-0.011995027773082]],[[0.022294890135527,0.098885588347912,0.055678620934486],[0.095078989863396,0.089434534311295,0.1177511960268],[0.13345639407635,-0.033195964992046,0.12746444344521]],[[-0.0093557331711054,-0.02328047901392,-0.050355315208435],[0.030968490988016,-0.0083457389846444,-0.018171174451709],[0.031046589836478,0.017653629183769,0.022845169529319]],[[-0.041434805840254,0.014124180190265,0.1004790738225],[0.06618395447731,-0.010016105137765,0.0057200780138373],[-0.016025342047215,-0.070270515978336,-0.10329069942236]],[[-0.14426039159298,0.007560062687844,-0.032149881124496],[-0.064332023262978,0.037205971777439,0.076364308595657],[0.014100888743997,-0.060915552079678,-0.21171541512012]],[[-0.050167925655842,0.019799146801233,0.098314076662064],[0.06084294244647,0.019737845286727,-0.048115957528353],[-0.20671325922012,0.041438173502684,-0.11462311446667]],[[-0.042810782790184,0.095274396240711,0.0016045822994784],[0.044557332992554,-0.0832289904356,-0.16275104880333],[0.017611408606172,-0.09146074950695,-0.11439141631126]],[[-0.070534661412239,-0.068997263908386,-0.018347665667534],[0.021744886413217,-0.11112581938505,0.061305340379477],[-0.015650482848287,0.040541164577007,0.018544044345617]],[[-0.084512896835804,-0.094529137015343,0.070270851254463],[0.022433621808887,0.069168210029602,0.1042390614748],[-0.15869636833668,0.0091236978769302,-0.082635350525379]],[[0.015470777638257,0.042705211788416,0.11752252280712],[0.086789160966873,0.056024383753538,-0.0013324602041394],[0.013853191398084,-0.04650567099452,-0.085292153060436]],[[0.027388151735067,0.046118192374706,-0.0068230275064707],[-0.080673679709435,-0.039112705737352,0.037991363555193],[0.048170875757933,-0.018225898966193,0.034428644925356]],[[-0.022339977324009,0.0067187412641943,-0.088822335004807],[-0.038742482662201,-0.087755583226681,0.03528705611825],[0.023123063147068,-0.04120909422636,0.12144328653812]],[[0.072892934083939,-0.11669012159109,0.093758329749107],[-0.08344966173172,-0.058446981012821,0.091334402561188],[0.063417427241802,0.0045152674429119,0.094064138829708]],[[0.014483150094748,-0.081348799169064,0.048361174762249],[0.11557461321354,-0.018285492435098,0.047571063041687],[0.21607638895512,-0.099917501211166,0.032919462770224]],[[-0.045511066913605,0.002478611189872,-0.011427138000727],[0.038969285786152,-0.0094281267374754,0.09033627808094],[-0.14376839995384,-0.042001396417618,-0.2689500451088]],[[0.0014606342883781,-0.040316581726074,-0.021567333489656],[-0.11771484464407,0.016199858859181,-0.11740936338902],[0.19496791064739,-0.038127638399601,0.008914845995605]],[[0.0073127495124936,-0.0030432583298534,0.055558048188686],[0.047887928783894,-0.093268744647503,0.088409498333931],[0.078613795340061,-0.11501570045948,-0.19311946630478]],[[0.028914790600538,0.05957480892539,-0.10348462313414],[-0.152966350317,-0.10026733577251,-0.0044683716259897],[-0.077987246215343,-0.13803596794605,-0.079051807522774]],[[-0.0034354440867901,-0.15109108388424,-0.050763659179211],[-0.036394450813532,0.0097395237535238,0.012538158334792],[-0.099331557750702,0.010808010585606,-0.14248782396317]],[[0.096066348254681,-0.088989980518818,-0.090060114860535],[-0.13244397938251,0.043752308934927,0.084323644638062],[0.12389473617077,-0.10884825140238,0.14270852506161]],[[0.12226638197899,0.033145125955343,0.024347370490432],[0.014821418561041,-0.059437606483698,0.063906334340572],[0.029354052618146,-0.15317067503929,-0.049973744899035]],[[-0.1942982673645,0.14765323698521,0.12809361517429],[0.082449451088905,0.014378034509718,-0.069318652153015],[-0.0053311642259359,-0.067274570465088,-0.13625578582287]],[[-0.016217930242419,-0.042333219200373,-0.027953870594501],[-0.0043022311292589,0.0073030740022659,0.10242752730846],[0.008158540353179,-0.082140050828457,0.06690127402544]],[[-0.044670633971691,0.083245307207108,-0.04521718621254],[-0.055001251399517,0.10627523064613,0.024328926578164],[-0.045847862958908,0.011870685964823,0.064306974411011]],[[0.058773752301931,-0.074354402720928,0.13754765689373],[-0.1211741194129,-0.054511494934559,-0.070641756057739],[0.10081008821726,0.029412277042866,0.094052001833916]],[[-0.019035784527659,0.10244281589985,0.14915344119072],[-0.05503673106432,0.12989912927151,-0.026881856843829],[-0.0062040658667684,-0.13401545584202,0.14106559753418]],[[0.027960253879428,0.092110306024551,-0.10981734842062],[-0.013288549147546,-0.037600174546242,-0.019226500764489],[-0.031131658703089,0.0023036731872708,-0.11918367445469]],[[0.0053405310027301,-0.16291165351868,-0.20498238503933],[0.063525646924973,-0.054547734558582,-0.010887657292187],[0.088876016438007,-0.19533677399158,0.10823295265436]],[[0.082593888044357,-0.0056628226302564,-0.011551634408534],[0.06517194211483,-0.084205761551857,-0.025927860289812],[0.085299700498581,-0.057987105101347,0.068487621843815]],[[-0.0080998884513974,-0.047807771712542,0.047774750739336],[0.14710894227028,-0.0077633839100599,0.086558356881142],[0.0019796728156507,0.16519294679165,0.05990669503808]],[[-0.056225161999464,-0.024812072515488,-0.055129297077656],[-0.15250039100647,0.076604686677456,-0.1091792434454],[-0.09492065012455,0.060662019997835,0.09868410974741]],[[0.012929243966937,-0.043687712401152,-0.13169276714325],[0.040413800626993,-0.12753221392632,-0.031834442168474],[-0.049822106957436,-0.055000726133585,0.21459156274796]],[[0.1000249683857,-0.14635242521763,-0.00094350514700636],[-0.1049574688077,0.045867890119553,0.0085544064640999],[0.015581404790282,-0.068875499069691,-0.06407356262207]],[[0.16032218933105,-0.029290331527591,0.016959836706519],[-0.064195401966572,0.056572493165731,-0.011864634230733],[-0.05000352114439,0.0024045612663031,0.024524688720703]],[[0.11516460776329,-0.12190572172403,0.022937811911106],[0.043587487190962,-0.045174732804298,-0.065077364444733],[-0.09434050321579,-0.040917877107859,0.04525838419795]],[[0.022692827507854,0.056408360600471,0.011964951641858],[0.022449091076851,-0.0043098861351609,0.079819366335869],[0.064651325345039,0.022957038134336,0.030921371653676]],[[-0.0016826649662107,0.051598109304905,0.020200505852699],[0.065123975276947,0.0066069988533854,-0.0088291773572564],[0.05666384473443,-0.041074898093939,0.071341849863529]],[[-0.047802224755287,-0.13901241123676,-0.015511112287641],[-0.08035596460104,0.016471710056067,-0.10032753646374],[0.041056726127863,-0.012070699594915,0.034401796758175]],[[0.02749259583652,-0.07417206466198,-0.027220331132412],[-0.13077610731125,-0.036079537123442,0.023147286847234],[-0.060760792344809,0.093815669417381,-0.058887951076031]],[[-0.024296710267663,0.0012187209213153,0.14931504428387],[0.025687946006656,-0.011111315339804,0.098049484193325],[-0.055616144090891,-0.069102071225643,-0.029572641476989]],[[0.06178093329072,0.099907346069813,-0.082466036081314],[-0.032210115343332,-0.01957062445581,-0.02463542111218],[0.029892535880208,0.034509263932705,-0.060935087502003]]],[[[0.084435679018497,-0.0063260309398174,-0.068848565220833],[-0.103171415627,0.022423714399338,0.0036973073147237],[-0.031879309564829,-0.0093430988490582,0.12101972103119]],[[0.021434357389808,0.014649385586381,-0.01096208114177],[0.033324368298054,0.0026017893105745,-0.10832722485065],[-0.031335301697254,-0.049398425966501,-0.12538902461529]],[[0.069547109305859,0.035561949014664,-0.11912757903337],[-0.16261768341064,0.011863749474287,0.034276742488146],[-0.096448719501495,-0.05524206161499,0.015486551448703]],[[-0.064434982836246,0.010541355237365,0.0095358174294233],[0.076752282679081,0.07341305911541,-0.016560561954975],[0.053344823420048,0.03022194467485,-0.053766205906868]],[[-0.057783860713243,-0.049307148903608,-0.0019834551494569],[-0.035292826592922,0.024006772786379,-0.0003571072302293],[0.040020484477282,-0.084878638386726,-0.1058090031147]],[[0.0057281358167529,0.024149458855391,0.090553060173988],[-0.046879217028618,0.046537429094315,-0.048141125589609],[0.03315394744277,0.041128724813461,-0.016916178166866]],[[0.047159653156996,0.13957935571671,0.21416746079922],[-0.065600410103798,-0.044049371033907,-0.073793306946754],[-0.055394124239683,-0.076116181910038,-0.19553153216839]],[[6.4462830778211e-05,-0.032791782170534,0.009921682998538],[-0.040697142481804,-0.030855713412166,-0.031880527734756],[0.12099022418261,-0.017622631043196,0.048565968871117]],[[0.066577285528183,0.076683051884174,0.22795870900154],[-0.040907073765993,0.04043247923255,-0.019358217716217],[0.18184785544872,0.029447369277477,-0.020269598811865]],[[0.1002044826746,-0.081639803946018,-0.054788179695606],[-0.064431823790073,-0.20056149363518,0.0033693870063871],[-0.19493505358696,0.018242498859763,0.12078259140253]],[[-0.070438005030155,-0.065033763647079,-0.084241636097431],[-0.15870623290539,0.031811747699976,-0.15299750864506],[-0.24702675640583,-0.037437815219164,0.090313546359539]],[[0.13092343509197,-0.010843957774341,0.083037033677101],[-0.080332770943642,-0.18349611759186,-0.25988703966141],[0.042706105858088,-0.0014777821488678,-0.19234111905098]],[[0.030058925971389,0.12217961251736,0.090865008533001],[-0.025971967726946,-0.073528096079826,-0.12578590214252],[-0.061083406209946,-0.031901840120554,0.078482262790203]],[[0.12836690247059,0.23335847258568,0.047827526926994],[0.062787666916847,-0.03923399373889,0.0014867469435558],[-0.068653978407383,0.094581641256809,0.085408769547939]],[[0.085208930075169,0.059485718607903,-0.13312882184982],[0.019696887582541,-0.083506114780903,-0.19848172366619],[0.0016261357814074,0.068032920360565,-0.054943677037954]],[[0.27932795882225,0.058799099177122,-0.068927571177483],[0.011725429445505,-0.063725605607033,-0.2885285615921],[0.11529593914747,0.10458619147539,0.13617664575577]],[[0.14068774878979,0.12818142771721,0.14957796037197],[-0.081454530358315,-0.056539498269558,0.14853754639626],[-0.2845870256424,-0.34767782688141,-0.28106272220612]],[[0.096207141876221,0.036835540086031,0.029807336628437],[0.014614364132285,-0.040374252945185,-0.21461713314056],[0.10170087963343,0.044682499021292,0.13961671292782]],[[-0.086635395884514,0.027374610304832,-0.24755059182644],[-0.17545878887177,-0.048469539731741,0.056779634207487],[-0.12428943812847,-0.011765680275857,-0.0076019540429115]],[[0.10275749117136,-0.019314367324114,0.12648817896843],[-0.10132446140051,-0.13935345411301,0.055794287472963],[-0.070053823292255,0.054508160799742,0.043635554611683]],[[0.0649753510952,-0.10720653831959,-0.063873380422592],[-0.21762178838253,-0.0663977637887,-0.056276775896549],[-0.1707459539175,-0.14153280854225,-0.12609814107418]],[[0.020156972110271,-0.028073767200112,0.027900315821171],[-0.013973807916045,0.030324202030897,-0.0027103035245091],[-0.048302233219147,-0.093402184545994,-0.074664197862148]],[[-0.072042770683765,-0.0041904305107892,0.11758391559124],[-0.13922096788883,-0.0068040522746742,0.094853334128857],[-0.078880928456783,-0.088762983679771,-0.12159300595522]],[[0.1975009739399,0.061259388923645,0.077386245131493],[0.10419330745935,0.11691424995661,-0.044927641749382],[-0.015390682965517,-0.018360003829002,0.013876888900995]],[[0.12403547763824,0.11215785890818,-0.044415216892958],[0.2075697183609,0.032175596803427,0.096622005105019],[0.014650484547019,0.034021355211735,0.15397679805756]],[[-0.034476116299629,-0.0063511980697513,0.080216206610203],[-0.064860992133617,0.0054947212338448,0.044334840029478],[0.00052258849609643,0.052782759070396,-0.017686169594526]],[[0.026870064437389,0.074163839221001,0.0013498042244464],[0.03348707780242,-0.0002303254295839,-0.11226514726877],[0.16343148052692,-0.094409182667732,-0.094962656497955]],[[0.10566351562738,0.045851983129978,-0.034048777073622],[-0.062840655446053,-0.035545248538256,-0.015827294439077],[0.043253242969513,0.1211651340127,-0.086214616894722]],[[0.074773199856281,0.029620269313455,0.087769746780396],[-0.14629758894444,-0.093443922698498,-0.032538320869207],[-0.0022586081176996,-0.024588590487838,0.11948422342539]],[[-0.040686707943678,-0.16040313243866,-0.18568976223469],[-0.0025466913357377,0.09081918746233,-0.02394936606288],[-0.044320441782475,-0.11042134463787,-0.03674029931426]],[[-0.18217374384403,-0.017339499667287,0.096811093389988],[-0.0087363384664059,0.040865242481232,-0.08696436136961],[-0.014843596145511,-0.063821442425251,-0.046783454716206]],[[0.0088576907292008,-0.11291369050741,-0.04350471496582],[-0.20229391753674,0.036344014108181,0.1089725792408],[0.048360072076321,0.12643897533417,-0.10887540876865]],[[-0.13435220718384,0.0480404086411,-0.1391270160675],[0.079650200903416,-0.08635450899601,-0.14675752818584],[0.0022557873744518,-0.0065583307296038,0.077002741396427]],[[-0.13165912032127,0.0014949233736843,-0.010976809076965],[0.029079070314765,-0.0028559162747115,-0.068115420639515],[-0.02848326601088,-0.016829270869493,-0.0012883102754131]],[[0.096684753894806,0.065351098775864,0.11453307420015],[0.01281426101923,-0.031740617007017,0.063037529587746],[0.11022445559502,0.042264591902494,0.18960106372833]],[[-0.073841840028763,-0.020427780225873,-0.00041118147782981],[0.035422395914793,-0.05637276545167,0.10631184279919],[0.0019211422186345,0.066699430346489,0.12298478186131]],[[-0.0026212332304567,0.033353604376316,0.046300735324621],[-0.0411446839571,-0.064600259065628,0.070704162120819],[0.014560209587216,0.17264401912689,-0.082719258964062]],[[-0.043691352009773,-0.045191414654255,0.18601582944393],[0.045636806637049,0.08928918838501,-0.016634663566947],[-0.10686935484409,-0.12118109315634,-0.15264986455441]],[[-0.085461981594563,0.048378251492977,-0.023435214534402],[-0.056470956653357,-0.19822044670582,-0.06200022995472],[-0.074064157903194,-0.057695519179106,-0.039072308689356]],[[-0.074244186282158,0.011618284508586,-0.028218485414982],[0.012768123298883,-0.080728352069855,-0.047482922673225],[0.030292917042971,0.10874735563993,5.2609986596508e-05]],[[-0.020422670990229,0.095291070640087,-0.094929285347462],[-0.032244633883238,-0.19838273525238,-0.20023366808891],[0.13853153586388,-0.05876949429512,-0.13724681735039]],[[0.051095232367516,-0.090173453092575,0.087102942168713],[0.092286594212055,0.037621147930622,0.0087367156520486],[0.074179671704769,0.018871298059821,-0.087984561920166]],[[0.02270814217627,-0.020386891439557,0.050332080572844],[0.010677904821932,-0.17124976217747,0.02112939953804],[-0.12487761676311,-0.0079175587743521,-0.080357953906059]],[[0.13495561480522,0.010438021272421,-0.14485079050064],[-0.036155547946692,0.051458425819874,-0.024415463209152],[-0.011606928892434,-0.052394337952137,0.023323372006416]],[[-0.052072916179895,-0.051403019577265,-0.13281066715717],[-0.11608848720789,0.1225116699934,0.066241860389709],[-0.14885757863522,-0.055098783224821,-0.028347779065371]],[[-0.10864801704884,-0.099499143660069,-0.13489216566086],[0.036231115460396,0.053184188902378,0.045127425342798],[0.050653036683798,-0.023425748571754,-0.094374693930149]],[[-0.058596689254045,-0.10432206839323,0.0091665796935558],[0.11496152728796,0.10109446942806,-0.046606618911028],[0.062663391232491,-0.080289468169212,-0.083743624389172]],[[0.014946902170777,-0.083875574171543,0.015026152133942],[-0.06668047606945,0.063843697309494,0.065718546509743],[-0.082103885710239,0.036625642329454,-0.21788163483143]],[[0.0011643129400909,-0.054848495870829,0.009243699721992],[0.013498289510608,0.040666863322258,0.0836571007967],[-0.07887801527977,0.0061241993680596,0.085225887596607]],[[0.012745281681418,0.09606696665287,0.078945554792881],[-0.042772028595209,-0.14137628674507,0.16458210349083],[0.20537905395031,-0.052018992602825,-0.087945714592934]],[[0.020457180216908,-0.033497888594866,0.099189609289169],[-0.14983348548412,0.033647235482931,-0.057126469910145],[0.12432110309601,0.036367632448673,0.21975708007812]],[[-0.077868238091469,0.12518458068371,-0.061372961848974],[0.086430780589581,-0.062125492841005,-0.16067212820053],[-0.11078824847937,0.036101244390011,-0.20351304113865]],[[0.036411259323359,-0.049699541181326,0.02093343064189],[0.10129431635141,-0.0050203851424158,0.069690078496933],[-0.10545083135366,0.074195109307766,-0.097101204097271]],[[0.083909422159195,-0.016473408788443,-0.0015296895289794],[-0.048525035381317,-0.042602639645338,0.00036776234628633],[0.01702624373138,-0.025985648855567,-0.071297347545624]],[[0.095920898020267,-0.031232506036758,-0.069334261119366],[0.083421096205711,-0.013705006800592,-0.22830566763878],[-0.08311165869236,-0.12017282098532,0.0302879139781]],[[0.05044025555253,0.076061546802521,-0.083803057670593],[-0.071209393441677,-0.050348378717899,-0.093754887580872],[0.17665509879589,0.062089800834656,0.086510740220547]],[[0.057233955711126,-0.0076564834453166,-0.1053207218647],[0.0019437932642177,0.051423721015453,0.0058493795804679],[0.069487258791924,-0.031815573573112,-0.091355130076408]],[[-0.092992722988129,0.035974685102701,0.043661400675774],[0.077396415174007,0.0029202841687948,-0.056052476167679],[-0.018136331811547,-0.032604314386845,0.028173491358757]],[[-0.071531772613525,0.00061888253549114,0.015024629421532],[0.083717934787273,0.20869402587414,0.19004233181477],[0.11063221842051,0.11127511411905,0.17383477091789]],[[0.076927505433559,0.015603995881975,0.087190642952919],[-0.22680604457855,0.089887648820877,0.037421189248562],[-0.082109697163105,0.045094922184944,0.047253530472517]],[[0.086931750178337,-0.011358266696334,-0.014450222253799],[-0.15107907354832,-0.10994893312454,0.058818887919188],[-0.00065797043498605,-0.10604783147573,-0.011324189603329]],[[-0.042891915887594,-0.0032133501954377,0.0053933537565172],[-0.055800769478083,0.00035245530307293,0.017603931948543],[-0.038156777620316,-0.022777259349823,-0.10907983779907]],[[0.02973035722971,0.11280450224876,0.12422227114439],[-0.025157490745187,-0.23915584385395,0.034060399979353],[-0.097170725464821,0.065111607313156,0.049040425568819]],[[-0.11428683251143,0.095133170485497,0.055424563586712],[0.010118168778718,0.0460882820189,-0.039808046072721],[-0.047257639467716,-0.14327311515808,-0.08297286182642]]],[[[-0.26617556810379,-0.17273297905922,-0.061706494539976],[0.0058048102073371,-0.096473343670368,-0.040445517748594],[-0.015720533207059,-0.11981888860464,-0.17455452680588]],[[-0.071189798414707,-0.030900185927749,-0.067744888365269],[-0.079606555402279,0.0021649172995239,-0.082939192652702],[0.021962171420455,-0.0086680194362998,0.080980740487576]],[[0.022120764479041,-0.012602004222572,-0.022349376231432],[-0.16483311355114,-0.10246942192316,0.13489569723606],[-0.068286292254925,-0.098766431212425,0.10455594956875]],[[-0.17299266159534,-0.025467874482274,0.084239967167377],[-0.075043693184853,-0.053548011928797,0.01009838655591],[-0.13928288221359,-0.16117888689041,0.11912647634745]],[[-0.025861306115985,-0.0068250652402639,0.017713019624352],[-0.081011936068535,-0.007777133025229,0.082106500864029],[0.012206963263452,0.0053131920285523,0.10134495794773]],[[-0.24548842012882,-0.098482608795166,-0.058278471231461],[-0.083445526659489,-0.014537898823619,-0.013442975468934],[-0.024116426706314,-0.058891244232655,0.059726443141699]],[[0.13070540130138,-0.035522170364857,-0.052666801959276],[-0.057921413332224,-0.12871897220612,-0.073346510529518],[0.072884045541286,-0.092821657657623,0.071648985147476]],[[-0.039567999541759,0.068011716008186,-0.040243823081255],[-0.0092558329924941,0.029535848647356,-0.027442004531622],[0.064222663640976,-0.0039634723216295,-0.0035959500819445]],[[0.036977589130402,-0.068434186279774,-0.098816767334938],[-0.0036728826817125,0.13729007542133,-0.034190263599157],[0.079350955784321,0.079122424125671,0.10378356277943]],[[0.026367111131549,-0.1881444901228,-0.1722067296505],[-0.10944579541683,-0.064400881528854,-0.0037697181105614],[-0.044031672179699,-0.00048185404739343,0.014185414649546]],[[0.048493433743715,-0.20134782791138,0.014075842685997],[0.038880985230207,-0.039125002920628,-0.033108189702034],[-0.0088928751647472,-0.033231113106012,0.0050085219554603]],[[0.0090854773297906,0.10169000923634,0.042114250361919],[0.2175335586071,-0.21217964589596,-0.27217596769333],[-0.051362209022045,-0.10387150943279,-0.23504592478275]],[[-0.10320936888456,-0.16481558978558,-0.25408327579498],[0.15557292103767,0.023855093866587,-0.038474723696709],[0.089264810085297,0.038541708141565,-0.086747087538242]],[[-0.062559545040131,-0.016081891953945,0.018683506175876],[-0.021648369729519,0.085530988872051,0.0012839278206229],[0.078888699412346,-0.01353716570884,-0.11356230825186]],[[0.074433363974094,0.030154634267092,-0.091107979416847],[-0.046268206089735,0.016384828835726,0.087455943226814],[-0.13850098848343,-0.052939102053642,0.0023913176264614]],[[0.0055737900547683,-0.030877597630024,-0.06416941434145],[0.035106409341097,0.11651682853699,0.033867411315441],[0.10745367407799,0.009593210183084,0.027065858244896]],[[-0.3430238366127,-0.21569833159447,-0.16165639460087],[-0.013928492553532,-0.14817345142365,-0.13004802167416],[0.10704239457846,0.14232933521271,0.092245794832706]],[[0.022468902170658,-0.054699014872313,0.03566487878561],[0.027430297806859,-0.0056332042440772,-0.0306461378932],[-0.014200486242771,-0.0024263272061944,-0.08298422396183]],[[0.078552335500717,-0.085205465555191,-0.0071643181145191],[0.038707055151463,-0.038716819137335,-0.095362454652786],[-0.032562252134085,-0.04282620921731,-0.060179580003023]],[[-0.0075178188271821,-0.076808586716652,-0.075049564242363],[-0.012930485419929,0.039237357676029,0.097663529217243],[0.05958916246891,0.057649563997984,0.093527965247631]],[[0.021115191280842,0.045256156474352,-0.17012444138527],[0.12293793261051,-0.10771867632866,0.050555538386106],[-0.017629252746701,0.030342452228069,-0.020016675814986]],[[-0.069095611572266,-0.10102619975805,-0.013517686165869],[-0.041014350950718,0.0698237195611,0.016387244686484],[-0.054788421839476,0.032550200819969,0.041577350348234]],[[-0.11885294318199,-0.11551178246737,0.12826408445835],[0.045117046684027,0.029650377109647,-0.058811940252781],[-0.032440152019262,-0.14423760771751,-0.12125390768051]],[[-0.066702954471111,0.01944575086236,0.014096687547863],[0.16154479980469,0.054584395140409,-0.083899527788162],[0.03024185448885,0.036217484623194,0.046602290123701]],[[0.072392679750919,0.030689101666212,0.2064716219902],[0.046929076313972,-0.018294269219041,0.078496858477592],[0.028483152389526,0.13612446188927,-0.01071598008275]],[[0.028537658974528,0.11670976132154,0.036068968474865],[-0.059223961085081,0.0029124454595149,0.020786901935935],[0.020027646794915,-0.066649660468102,-0.078921772539616]],[[0.028010720387101,0.047759637236595,0.081711493432522],[0.025877118110657,0.07191052287817,0.025963669642806],[-0.084104500710964,0.0070525198243558,-0.090085998177528]],[[0.11737062782049,0.089528419077396,-0.00016281940042973],[0.076431542634964,0.023717161267996,0.15296186506748],[0.055945981293917,0.0049044052138925,0.054758422076702]],[[0.049124021083117,-0.066433764994144,0.020493740215898],[-0.051052402704954,-0.0085976049304008,-0.13855518400669],[-0.10240768641233,0.053598627448082,0.13166424632072]],[[-0.057840283960104,-0.090294815599918,-0.17877508699894],[0.049496091902256,-0.1415671557188,0.071375265717506],[-0.0078234793618321,0.072921238839626,0.099646873772144]],[[-0.063083782792091,-0.018859189003706,0.0060933004133403],[0.09114021062851,0.06986740976572,0.13035689294338],[-0.047940026968718,-0.0026664866600186,0.20526663959026]],[[0.051524609327316,0.069244131445885,0.1043444648385],[-0.051283217966557,0.05828109011054,-0.022044833749533],[-0.026225313544273,-0.019690355286002,0.13644850254059]],[[-0.0056414385326207,0.073300436139107,0.029736790806055],[-0.095618821680546,-0.12623672187328,-0.043117336928844],[-0.020888619124889,0.022550178691745,-0.015907414257526]],[[0.075660638511181,-0.074746750295162,-0.12581676244736],[0.0033147388603538,0.049334671348333,0.010046562179923],[-0.052127454429865,-0.035345856100321,-0.022014431655407]],[[-0.23272410035133,0.014749844558537,0.024699997156858],[-0.097642235457897,-0.043345034122467,0.05822740867734],[0.070272341370583,0.079888172447681,-0.045613691210747]],[[0.15507690608501,-0.053647458553314,0.052180390805006],[-0.14149244129658,-0.056114122271538,-0.019831197336316],[0.0096344156190753,0.047036800533533,-0.022632088512182]],[[-0.069677092134953,-0.065260007977486,0.054153122007847],[-0.062750048935413,0.015605048276484,0.11253193020821],[-0.032424859702587,-0.040334366261959,-0.11065233498812]],[[-0.047860085964203,0.064309567213058,-0.12475320696831],[0.0037106981035322,-0.16295593976974,-0.023075876757503],[0.052960183471441,-0.0001631523045944,-0.064421713352203]],[[-0.20049528777599,0.0064826272428036,-0.023546004667878],[-0.0015317595098168,0.13234215974808,0.095492012798786],[-0.16727037727833,0.03017851151526,0.15837042033672]],[[-0.096423268318176,0.016512911766768,-0.072491906583309],[-0.10866089910269,0.035232983529568,-0.030617207288742],[0.10632960498333,-0.0037862514145672,-0.089937418699265]],[[-0.0682243257761,-0.053197748959064,0.062083698809147],[0.053803808987141,-0.0393494553864,-0.035468563437462],[0.025798246264458,0.034965332597494,0.014945595525205]],[[-0.20662149786949,-0.16670754551888,-0.141417786479],[0.03398809954524,0.034327987581491,-0.027122512459755],[0.0094092665240169,-0.074658341705799,0.085120305418968]],[[-0.091974690556526,-0.021403070539236,-0.013899307698011],[-0.1245469301939,0.057394292205572,-0.022660942748189],[0.049376927316189,0.077301569283009,0.16168458759785]],[[-0.11589800566435,-0.11011687666178,0.031676393002272],[0.027085123583674,-0.0043467544019222,-0.10494190454483],[-0.01303138025105,-0.0019470409024507,-0.12739111483097]],[[0.097451455891132,0.024836923927069,-0.18736313283443],[-0.031628057360649,0.0023080592509359,-0.12842820584774],[-0.032157272100449,0.033307246863842,-0.045453555881977]],[[-0.0048084668815136,0.071267448365688,0.083778530359268],[-0.041157048195601,-0.02173438668251,0.075553357601166],[0.03530153259635,-0.030050575733185,-0.053077567368746]],[[0.030680330470204,0.0064417095854878,0.091218359768391],[0.17522370815277,0.03656604886055,-0.11792121827602],[-0.052955649793148,0.1143808439374,-0.061098236590624]],[[-0.091509215533733,-0.026170739904046,0.025614837184548],[0.087807796895504,-0.12531004846096,0.062879137694836],[0.006806876976043,0.04822238907218,-0.027043713256717]],[[-0.044392570853233,0.096748687326908,-0.057879276573658],[0.021231515333056,-0.082300491631031,-0.092187412083149],[0.079998880624771,0.10213049501181,0.035377275198698]],[[-0.0035269518848509,0.01330263633281,-0.0021143096964806],[-0.17568519711494,0.046756841242313,0.16317534446716],[0.004539298824966,0.04908911883831,-0.037005845457315]],[[-0.03707230463624,0.03243412822485,-0.048948839306831],[-0.030753375962377,-0.00073031691135839,0.019454371184111],[0.14121368527412,-0.053612381219864,0.034025613218546]],[[0.056025344878435,0.016246477141976,-0.12602807581425],[-0.0080863516777754,-0.088789992034435,-0.092182442545891],[0.12989421188831,0.052809592336416,-0.09875413775444]],[[-0.012151001952589,0.055245351046324,0.10338574647903],[0.038954019546509,0.023349517956376,0.027904214337468],[-0.1625811457634,-0.10140754282475,-0.020259104669094]],[[-0.13719761371613,-0.028538966551423,-0.07733740657568],[-0.032876536250114,-0.037130393087864,-0.075174123048782],[-0.034655220806599,0.033687099814415,0.080302678048611]],[[-0.0061366613954306,-0.21683949232101,-0.067535571753979],[-0.081325218081474,0.020614795386791,-0.12046106904745],[-0.033565323799849,-0.090912759304047,-0.034437023103237]],[[0.13303884863853,0.074256360530853,-0.028243076056242],[-0.14575888216496,0.06456046551466,-0.12175405025482],[0.025054661557078,0.062591843307018,0.0087330145761371]],[[0.12838838994503,-0.040318887680769,-0.37593570351601],[-0.033767018467188,-0.040268238633871,0.046853832900524],[0.052126120775938,-0.13037921488285,-0.079165920615196]],[[0.079280145466328,0.039952460676432,0.13806822896004],[-0.040645778179169,0.048744443804026,-0.021021578460932],[0.026774233207107,0.11667317897081,0.0060188621282578]],[[0.075033366680145,0.0321552939713,0.043867755681276],[0.083995424211025,0.017148507758975,-0.045021075755358],[0.033500846475363,0.044283039867878,0.13797801733017]],[[-0.0073220804333687,-0.00014607686898671,0.0037003092002124],[-0.053941734135151,0.057005792856216,-0.012347257696092],[-0.017119523137808,-0.10894702374935,-0.029141461476684]],[[0.064685128629208,0.086934983730316,0.0694445297122],[-0.10306807607412,0.024068187922239,0.098483063280582],[-0.086204655468464,-0.096464797854424,0.064084053039551]],[[-0.02680897898972,-0.00685327174142,-0.060187801718712],[0.041988350450993,-0.032175309956074,-0.043247479945421],[0.0045795869082212,-0.056526999920607,-0.047260463237762]],[[0.0054094484075904,-0.024113513529301,-0.0051494636572897],[-0.028556669130921,0.052795186638832,-0.049411047250032],[0.11100169271231,0.033643946051598,-0.081935301423073]],[[0.068317346274853,0.12138842046261,-0.019589144736528],[0.023709831759334,-0.016418198123574,-0.027896305546165],[0.0069761704653502,0.068574815988541,0.076031230390072]]],[[[0.00061895739054307,-0.013231030665338,0.15660336613655],[0.042636156082153,-0.036364391446114,0.17953145503998],[-0.064527049660683,-0.0020832035224885,0.034227147698402]],[[0.032315462827682,0.038926463574171,0.060339011251926],[0.011337969452143,-0.11148432642221,-0.10526090115309],[-0.040287349373102,-0.087761647999287,0.02519154921174]],[[-0.017894631251693,-0.16062441468239,-0.023825054988265],[-0.01420979667455,-0.0079690562561154,0.065270766615868],[-0.021048527210951,-0.050123780965805,0.0028606886044145]],[[0.0067692445591092,-0.0065354546532035,-0.071974188089371],[-0.0047205914743245,0.010949512012303,-0.1739799529314],[0.080698102712631,-0.045904129743576,0.15096580982208]],[[-0.080077446997166,0.096188485622406,-0.07489650696516],[-0.00062442716443911,-0.052896123379469,-0.055340465158224],[-0.012779721990228,-0.13482429087162,-0.08445480465889]],[[-0.0080629102885723,-0.041346330195665,-0.18810054659843],[0.047113884240389,-0.10674743354321,-0.015534972772002],[-0.082684807479382,-0.095202170312405,-0.0068410183303058]],[[-0.044650603085756,0.13303217291832,-0.052307207137346],[-0.081186637282372,0.029538014903665,-0.03329848125577],[-0.021263837814331,-0.018893418833613,-0.086779706180096]],[[-0.058433253318071,-0.053664300590754,-0.025282522663474],[0.032930757850409,-0.0064319344237447,-0.093471862375736],[0.10250333696604,-0.09512934088707,-0.077904254198074]],[[0.041012961417437,0.030201798304915,0.042428072541952],[0.031690578907728,-0.0012419683625922,0.064168341457844],[-0.03974536806345,0.040055297315121,-0.086828969419003]],[[-0.14534717798233,0.026978842914104,-0.16795474290848],[-0.091800279915333,0.00032043684041128,-0.080559298396111],[-0.10031992942095,0.009544893167913,-0.049329180270433]],[[-0.053232334554195,0.032007168978453,-0.084491774439812],[-0.021326437592506,0.0079011600464582,0.038776561617851],[0.033438950777054,0.090815335512161,-0.077804513275623]],[[-0.017166797071695,0.036464802920818,0.06952840834856],[-0.13218808174133,-0.14665713906288,0.16029611229897],[-0.21714197099209,-0.047581754624844,0.14627845585346]],[[-0.080333322286606,-0.075445801019669,-0.016458254307508],[0.044948201626539,-0.070063598453999,0.035791002213955],[-0.072774633765221,-0.05585290491581,-0.029462199658155]],[[0.17389883100986,-0.039750423282385,-0.079065762460232],[0.10616756975651,-0.023071920499206,0.050686664879322],[-0.096245601773262,-0.056115198880434,0.12802800536156]],[[-0.0749541670084,0.039382137358189,-0.0085750743746758],[0.021325280889869,0.059431470930576,0.024873869493604],[-0.038052421063185,0.10645499825478,0.013205053284764]],[[-0.00084523082477972,-0.050270821899176,-0.1451168358326],[-0.039139721542597,0.0071265529841185,-0.036124859005213],[0.036399625241756,-0.10606422275305,-0.10387490689754]],[[-0.035077709704638,-0.0758897960186,-0.015741541981697],[-0.081815093755722,-0.094293236732483,-0.084797762334347],[-0.076616585254669,-0.4301909506321,-0.22530084848404]],[[0.072093904018402,0.0047844811342657,-0.11702969670296],[0.012257860042155,-0.068056285381317,-0.061511091887951],[0.1454299390316,0.11721705645323,-0.099987611174583]],[[-0.038507089018822,-0.028938796371222,-0.060570441186428],[-0.0031014694832265,-0.013201303780079,0.13100174069405],[0.031643994152546,0.021260168403387,0.016691355034709]],[[-0.061940092593431,-0.10824592411518,0.0095143923535943],[-0.059634648263454,-0.086117513477802,-0.16275252401829],[-0.07529404759407,-0.046088118106127,0.033294297754765]],[[-0.049937296658754,0.070453368127346,-0.1474451571703],[-0.025666430592537,-0.13225328922272,0.19585925340652],[-0.071253471076488,0.027729235589504,-0.10859061032534]],[[0.027784202247858,0.023211028426886,0.013238588348031],[0.042449288070202,-0.097057439386845,-0.1069415435195],[0.0036881291307509,-0.021098241209984,-0.049691956490278]],[[-0.084369882941246,0.0070543452166021,-0.0019191311439499],[-0.12962402403355,-0.021917801350355,-0.028516510501504],[-0.11114042252302,-0.15173208713531,-0.12030412256718]],[[0.12596152722836,0.23717039823532,0.065649829804897],[-0.013135018758476,-0.030645221471786,0.070434436202049],[0.050986967980862,0.093324273824692,-0.042039323598146]],[[0.013225871138275,0.017984341830015,-0.088260516524315],[0.14804872870445,-0.023420194163918,0.065643779933453],[0.14248590171337,0.022265078499913,0.046940688043833]],[[-0.13111826777458,-0.037287529557943,0.022996287792921],[-0.027835998684168,0.017340129241347,0.08345090597868],[-0.024454260244966,0.020900784060359,0.030917175114155]],[[0.011900013312697,0.12130820006132,-0.13307854533195],[0.068456217646599,-0.057047802954912,-0.020527873188257],[-0.007970929145813,0.027092473581433,-0.024154681712389]],[[-0.011604460887611,-0.059416860342026,0.11013417690992],[-0.0015862818108872,0.029022099450231,0.12144995480776],[0.074261926114559,-0.026546524837613,0.05168105661869]],[[-0.11089711636305,-0.03501096740365,-0.033665053546429],[-0.028444217517972,-0.04846478253603,-0.040925167500973],[-0.1346834897995,-0.057042386382818,-0.11989495158195]],[[-0.068100795149803,0.11200869828463,-0.1050530821085],[-0.028464306145906,-0.098334483802319,-0.0053410874679685],[-0.0757966786623,-0.021620225161314,-0.12611599266529]],[[-0.058881971985102,0.063788890838623,0.015286655165255],[-0.020712915807962,0.063698761165142,-0.01008234359324],[-0.1221456900239,0.07681592553854,0.071947544813156]],[[-0.16279849410057,-0.10342756658792,-0.16949339210987],[-0.027925997972488,-0.091236121952534,-0.11136627942324],[0.21096122264862,0.10019311308861,-0.030693328008056]],[[-0.024960845708847,-0.0016372277168557,0.017946891486645],[0.086997449398041,-0.10972718894482,0.038706637918949],[0.031685549765825,0.081304468214512,0.060045629739761]],[[-0.066078960895538,-0.071203857660294,-0.010618115775287],[-0.023639988154173,0.030843561515212,0.05891727656126],[-0.055215250700712,-0.15564008057117,0.0070822220295668]],[[-0.02149274200201,0.0081114768981934,-0.031028227880597],[0.087686613202095,-0.027961140498519,-0.11533516645432],[0.027527779340744,-0.053882673382759,-0.017395365983248]],[[-0.083010122179985,-0.14284357428551,0.023199088871479],[-0.119996920228,0.060700353235006,0.060555648058653],[-0.087045051157475,0.13541217148304,0.14982061088085]],[[0.066837355494499,0.028218409046531,0.10309392958879],[0.089291155338287,-0.035021483898163,0.033529829233885],[0.017735883593559,0.046000305563211,-0.032539620995522]],[[0.033929370343685,0.039080586284399,-0.034878388047218],[-0.01109383162111,-0.041998241096735,0.058409478515387],[-0.046868972480297,0.12410414218903,-0.020549328997731]],[[0.021849727258086,-0.073219262063503,-0.037636544555426],[-0.17230586707592,0.020611507818103,0.027986647561193],[-0.0041307690553367,-0.032389782369137,-0.076321713626385]],[[0.05517566204071,-0.017978154122829,-0.10962516069412],[0.048215668648481,-0.018401108682156,-0.079006709158421],[-0.027515456080437,-0.032501392066479,-0.085201397538185]],[[-0.022099470719695,-0.054575614631176,-0.010722377337515],[-0.089176423847675,-0.077104911208153,-0.053570047020912],[-0.097263000905514,0.039287585765123,-0.0097432248294353]],[[0.016706880182028,-0.046312276273966,0.026920692995191],[0.024365179240704,-0.037910088896751,-0.16284368932247],[0.022535186260939,-0.050800263881683,-0.088535346090794]],[[-0.03041766397655,-0.029193073511124,-0.091085411608219],[0.089382417500019,0.19001050293446,-0.062068469822407],[-0.025198282673955,0.076029099524021,0.0047142864204943]],[[-0.033272590488195,-0.029237855225801,-0.084665663540363],[0.00041203293949366,0.008265427313745,-0.089113816618919],[0.013282004743814,-0.045821029692888,0.11964077502489]],[[-0.075986064970493,-0.14682924747467,0.035492047667503],[0.071302443742752,-0.062625549733639,0.090964965522289],[-0.041992418467999,-0.046795606613159,0.079597555100918]],[[0.047734770923853,-0.065191328525543,0.0041565122082829],[0.011462945491076,-0.031209219247103,0.067919120192528],[0.025750590488315,0.05383475124836,0.075240857899189]],[[-0.18397736549377,0.073527753353119,-0.062848024070263],[-0.1368410885334,-0.20656555891037,0.00083424657350406],[-0.11476197093725,-0.15154848992825,0.017332164570689]],[[0.01427427213639,-0.072888776659966,0.10903467237949],[0.028542518615723,-0.018520710989833,0.040073812007904],[-0.010956635698676,0.066255435347557,0.05477886274457]],[[0.084350548684597,-0.0058263340033591,0.079686731100082],[-0.063613392412663,0.035784456878901,-0.027096165344119],[0.024621451273561,0.018185151740909,-0.12155892699957]],[[0.068087987601757,-0.048971589654684,-0.10263283550739],[0.0026498606894165,-0.0034471459221095,-0.066286884248257],[-0.072421610355377,-0.022857885807753,-0.21162422001362]],[[0.024829054251313,0.10226358473301,-0.05449403077364],[0.15978522598743,0.023547729477286,-0.078043758869171],[-0.021183727309108,0.00089356501121074,-0.27371060848236]],[[-0.079361595213413,-0.033096566796303,0.22980777919292],[-0.090344421565533,0.037987221032381,-0.11343376338482],[0.034933861345053,-0.082593858242035,-0.023680569604039]],[[0.082815796136856,0.08890887349844,-0.11502101272345],[0.053992599248886,-0.06591958552599,0.054546944797039],[-0.018297169357538,0.057638350874186,-0.18378828465939]],[[-0.08175028860569,-0.079034671187401,-0.091738656163216],[-0.17192104458809,0.042009364813566,0.071639887988567],[-0.047542229294777,-0.10429295152426,-0.043038316071033]],[[-0.073549166321754,-0.039832796901464,0.018919073045254],[-0.05673286691308,-0.0023898787330836,0.029463205486536],[0.034511648118496,0.024088554084301,-0.051796615123749]],[[0.18180391192436,-0.12156392633915,-0.0076233600266278],[0.068116344511509,0.040187671780586,0.066165782511234],[0.077865928411484,0.048952233046293,-0.22511281073093]],[[-0.0069358618929982,0.089172199368477,0.1063030809164],[0.036011908203363,-0.069535292685032,0.028061885386705],[-0.046483229845762,0.057330477982759,-0.034527417272329]],[[0.0082766730338335,-0.049398943781853,-0.013941683806479],[-0.041667811572552,0.044102910906076,-0.030459471046925],[0.030498594045639,0.017430538311601,-0.18732933700085]],[[0.029488239437342,0.046517048031092,0.061150044202805],[0.067539870738983,0.01104218326509,-0.0097575327381492],[0.098218657076359,0.069378949701786,-0.030060991644859]],[[0.011930676177144,-0.0066760438494384,-0.065789379179478],[-0.10496697574854,0.071553468704224,0.011834249831736],[0.02208667062223,0.034071139991283,0.13242480158806]],[[-0.16196800768375,-0.0012632457073778,-0.080411590635777],[-0.06987127661705,-0.012009303085506,-0.010131483897567],[0.095694035291672,-0.12762278318405,0.062121976166964]],[[0.035742085427046,-0.080478750169277,0.034239389002323],[0.029914082959294,-0.063428848981857,-0.076974987983704],[0.055501945316792,0.12277851253748,0.019155684858561]],[[0.057099848985672,-0.022970659658313,0.012427773326635],[-0.043941766023636,-0.013473087921739,0.047675937414169],[0.061380155384541,-0.071369342505932,0.093956969678402]],[[-0.033837534487247,-0.0024394374340773,-0.039481163024902],[0.027517579495907,0.0025982763618231,0.086106933653355],[0.003925905097276,-0.031943064182997,0.022100917994976]]],[[[-0.085891880095005,-0.064548306167126,-0.02521538361907],[0.070597983896732,0.01581484824419,0.066524431109428],[0.055831827223301,-0.0028016350697726,-0.080064594745636]],[[-0.069962039589882,-0.11521480232477,0.050805725157261],[-0.10758920758963,-0.016038730740547,-0.035192746669054],[-0.07834854722023,-0.14079032838345,-0.12775620818138]],[[0.15329268574715,0.055072270333767,-0.032176963984966],[-0.058196000754833,-0.08274132758379,-0.087787769734859],[-0.12808580696583,-0.11981685459614,0.0017625504406169]],[[-0.014068457297981,0.05168280005455,-0.0030667432583869],[-0.048491392284632,-0.043914336711168,-0.040979404002428],[0.11322240531445,0.04546157643199,-0.06823443621397]],[[0.048865359276533,-0.014857735484838,0.075608804821968],[0.011923580430448,0.0042769513092935,0.022717813029885],[0.030976735055447,-0.00047085972619243,-0.010220747441053]],[[-0.029403248801827,-0.017698347568512,0.018791122362018],[0.0051070242188871,-0.092360943555832,-0.019050678238273],[-0.010459324344993,-0.0039421287365258,0.030278852209449]],[[-0.056255161762238,0.044783525168896,0.033146537840366],[0.036688353866339,-0.023808691650629,-0.0090674422681332],[-0.041712138801813,-0.018826641142368,-0.0078602256253362]],[[-0.017026955261827,0.041605964303017,-0.075407728552818],[0.00091578514548019,0.081365786492825,-0.037481587380171],[-0.024503964930773,0.15085300803185,-0.025093842297792]],[[-0.018299089744687,-0.15697510540485,-0.18319325149059],[-0.0094750067219138,0.0087728230282664,0.019027857109904],[0.037257499992847,-0.10663813352585,-0.024918515235186]],[[0.058329124003649,0.10426775366068,0.10823550075293],[-0.024511516094208,0.019814681261778,0.028667863458395],[0.021179620176554,0.043281573802233,-0.012907475233078]],[[0.022741571068764,0.020202070474625,-0.093608923256397],[-0.010159014724195,-0.022349379956722,0.0092200059443712],[-0.096321500837803,-0.0027747817803174,-0.091219007968903]],[[-0.012222498655319,0.059202164411545,0.016016459092498],[0.071109972894192,0.075087666511536,0.047713536769152],[0.011441671289504,-0.041403613984585,-0.1017851755023]],[[0.011792670935392,0.037796210497618,0.037111707031727],[0.10345941781998,0.050154738128185,0.086966268718243],[0.053965214639902,-0.026999501511455,0.020429572090507]],[[-0.055056747049093,0.052796468138695,-0.11237346380949],[-0.049937352538109,-0.010167675092816,0.0015665303217247],[0.16301441192627,0.07701038569212,0.024056736379862]],[[0.064496472477913,0.17268297076225,-0.10493376851082],[-0.054630950093269,0.022032359614968,-0.11020826548338],[0.082289978861809,0.2007177323103,-0.044678937643766]],[[-0.013827871531248,0.035517796874046,0.034489125013351],[-0.095653310418129,-0.01447238959372,0.15356753766537],[-0.083256460726261,-0.061510104686022,0.10579107701778]],[[0.071228295564651,0.011162327602506,0.080977819859982],[-0.0073367683216929,0.028908155858517,0.066223554313183],[0.059773217886686,0.098609894514084,-0.0020987163297832]],[[-0.065255112946033,-0.065708994865417,0.0082385325804353],[0.062296692281961,0.046718824654818,0.028642887249589],[0.0606424883008,0.049108177423477,-0.028777290135622]],[[0.033997558057308,-0.00035532630863599,0.025262717157602],[0.034151930361986,0.04713724181056,-0.049986280500889],[-0.069666005671024,0.06081910058856,0.10791854560375]],[[-0.068518631160259,0.029933229088783,-0.11981736123562],[-0.056621830910444,-0.063204705715179,-0.081139713525772],[-0.012440771795809,0.11436641216278,-0.065273813903332]],[[0.024628644809127,0.087660923600197,0.10148862749338],[-0.0043171476572752,-0.00081146787852049,0.041953574866056],[-0.060898944735527,0.058447185903788,0.025545883923769]],[[-0.031929899007082,-0.0059150015003979,-0.055375315248966],[0.02448751591146,0.0746104195714,-0.045230012387037],[0.016568744555116,0.045292023569345,-0.0012855073437095]],[[-0.081310272216797,0.015851540490985,-0.056327722966671],[-0.068286381661892,-0.011739776469767,-0.010894160717726],[0.046817198395729,-0.00814672652632,-0.13956044614315]],[[0.029127210378647,0.10579083859921,0.073856458067894],[0.015650069341063,0.047225035727024,0.017017386853695],[0.092005006968975,0.074421711266041,0.052841424942017]],[[-0.15104372799397,0.011563695035875,-0.054980810731649],[-0.11036313325167,0.076205052435398,0.08483848720789],[-0.060073673725128,0.11005766689777,0.12012597173452]],[[-0.054564256221056,-0.07633101940155,0.00040355321834795],[-0.026314737275243,0.033961057662964,0.097562283277512],[0.00056623842101544,-0.063767701387405,0.10203722864389]],[[0.07416208088398,-0.071716636419296,0.019843447953463],[0.022937305271626,0.0048581333830953,-0.044456668198109],[0.027535412460566,-0.0089867543429136,0.018869752064347]],[[-0.011288809590042,-0.078675389289856,-0.068255685269833],[-0.024555696174502,0.082902498543262,-0.080101311206818],[0.10773996263742,0.0080566443502903,-0.21201883256435]],[[-0.11784349381924,-0.005762604996562,0.082360491156578],[-0.059306487441063,-0.021454533562064,-0.050531271845102],[-0.033908903598785,-0.042675044387579,0.0011363995727152]],[[0.10680414736271,0.005893693305552,0.089726440608501],[-0.059871278703213,0.0016853455454111,0.0011445205891505],[0.04844930768013,-0.028063116595149,-0.074858725070953]],[[-0.13431671261787,0.15951876342297,-0.022263877093792],[0.028323704376817,0.090730838477612,-0.097034804522991],[0.01782288402319,0.18107844889164,-0.052199296653271]],[[0.004811545368284,0.070342853665352,-0.1595473587513],[-0.094941161572933,-0.069282993674278,-0.078966431319714],[-0.042209785431623,-0.030564473941922,0.063236251473427]],[[0.18882204592228,0.057195350527763,-0.066666938364506],[0.049335524439812,-0.023012010380626,0.049651496112347],[0.0033191721886396,-0.12196867913008,-0.011935654096305]],[[0.078313320875168,0.0066168294288218,-0.017591301351786],[0.018545988947153,0.017099361866713,-0.022758519276977],[-0.037969321012497,0.077582843601704,0.032687060534954]],[[0.0035106230061501,-0.047183223068714,-0.038033060729504],[-0.060963034629822,0.00014891348837409,-0.12145361304283],[-0.022679377347231,-0.099299751222134,-0.096424512565136]],[[0.015775976702571,0.1530277132988,-0.048320014029741],[0.018416522070765,0.06140710785985,0.042318526655436],[0.024427818134427,0.014265323989093,-0.096398547291756]],[[0.08320165425539,-0.00027124508051202,0.076757185161114],[-0.097358323633671,-0.05340164154768,0.048493754118681],[-0.087110348045826,-0.076099380850792,-0.046756241470575]],[[0.043120939284563,0.064778886735439,-0.020490322262049],[-0.0083151934668422,-0.083018079400063,-0.025427255779505],[0.030039804056287,0.084471985697746,-0.031146543100476]],[[-0.0097645781934261,-0.03610497713089,-0.014373144134879],[0.036641135811806,-0.15391793847084,-0.015533836558461],[-0.031628578901291,-0.13354584574699,-0.018873590976]],[[-0.090481407940388,0.015531495213509,-0.012126080691814],[-0.072917267680168,0.061930097639561,-0.044935382902622],[-0.14684833586216,-0.10756212472916,0.086753323674202]],[[-0.0033718482591212,-0.010069378651679,0.21886973083019],[-0.18338318169117,0.040839847177267,0.012434853240848],[-0.08192091435194,0.020273722708225,0.08214259147644]],[[-0.1215079203248,-0.0087416488677263,0.022737046703696],[-0.049700886011124,-0.050601400434971,0.042208291590214],[0.027366740629077,-0.0078059332445264,-0.031315863132477]],[[0.03801242262125,0.12761586904526,0.14331687986851],[-0.02201951853931,0.14010687172413,0.022908512502909],[0.0012660146458074,0.047097537666559,-0.0018170897383243]],[[0.045207805931568,-0.083648510277271,-0.011841609142721],[-0.064910724759102,-0.0093316109851003,0.0081114266067743],[-0.059523794800043,0.035258769989014,0.19950476288795]],[[0.084556229412556,-0.11062556505203,0.069622568786144],[0.021702470257878,-0.0056261415593326,0.13538661599159],[-0.0061058145947754,-0.044828798621893,0.065021388232708]],[[0.17597696185112,-0.040057986974716,0.018519071862102],[0.15170611441135,-0.040288735181093,-0.011733589693904],[-0.0023968466557562,0.037568211555481,-0.11537978798151]],[[-0.020183764398098,-0.015962958335876,-0.072038523852825],[-0.075618982315063,0.019328666850924,0.042636413127184],[-0.046440605074167,0.041130375117064,-0.01389027107507]],[[0.0029188534244895,0.012488015927374,-0.013257357291877],[0.089004963636398,-0.085268050432205,0.09349486976862],[0.040333352982998,-0.022502657026052,-0.033923946321011]],[[-0.0872533172369,0.040107131004333,-0.081139273941517],[-0.094078212976456,0.01635155454278,-0.080342218279839],[-0.15176296234131,0.044452115893364,-0.049421038478613]],[[0.05424190312624,0.10536424815655,-0.20042282342911],[0.050103522837162,-0.021933315321803,0.07672331482172],[-0.0029117078520358,0.043462119996548,-0.015891099348664]],[[0.088624849915504,0.057255499064922,-0.047031529247761],[0.02328029833734,-0.01316424831748,-0.024058995768428],[-0.075354762375355,-0.035163272172213,0.059044949710369]],[[-0.064119890332222,0.022876204922795,0.040718898177147],[-0.089618608355522,-0.063593216240406,-0.020162215456367],[0.066972009837627,0.0099421767517924,0.038646228611469]],[[-0.046326752752066,-0.067951373755932,-0.074973240494728],[0.027390098199248,0.046040128916502,0.033923972398043],[-0.10203702747822,0.099869027733803,0.10725741833448]],[[-0.0016577080823481,0.087942734360695,0.12487976998091],[-0.024525709450245,-0.00073047453770414,-0.024742819368839],[-0.090699955821037,-0.15475906431675,0.012756612151861]],[[-0.0025768205523491,-0.078446872532368,-0.11241871863604],[-0.0083326371386647,0.0070176967419684,0.012079204432666],[0.00145372771658,0.10966876149178,0.010369785130024]],[[0.12516433000565,0.049824073910713,-0.030580656602979],[0.076992176473141,-0.049750197678804,-0.021992424502969],[0.18183264136314,-0.018514903262258,-0.12428839504719]],[[-0.060572694987059,0.027748815715313,0.14288032054901],[-0.054335385560989,-0.014838646166027,0.085066944360733],[0.03802415728569,0.027879035100341,0.031432647258043]],[[-0.029251970350742,0.091438286006451,0.058317624032497],[0.017080230638385,0.044801454991102,-0.046015005558729],[-0.1077728420496,0.0092814425006509,0.00023349252296612]],[[-0.011199719272554,-0.069144241511822,-0.11038973927498],[-0.031657069921494,-0.070703059434891,-0.016827795654535],[-0.0053012329153717,-0.036459222435951,0.0085325492545962]],[[-0.0552943572402,0.075225740671158,0.061251647770405],[-0.10911508649588,-0.058375902473927,-0.054476674646139],[-0.11995210498571,0.0072640455327928,0.020836489275098]],[[0.066111162304878,0.041091069579124,-0.050207756459713],[-0.0066079190000892,0.024499233812094,0.088909417390823],[0.036003835499287,-0.030266460031271,0.062744356691837]],[[0.10424701869488,-0.048825807869434,-0.013155796565115],[0.16932439804077,0.064000263810158,0.0027448313776404],[-0.011430443264544,0.049631480127573,0.079869978129864]],[[-0.0095560178160667,-0.067122541368008,-0.033231098204851],[-0.059354085475206,-0.1112040579319,-0.056061744689941],[-0.13330620527267,-0.045356802642345,0.05168266966939]],[[0.071559704840183,-0.076544411480427,0.085663199424744],[0.017168149352074,0.019047558307648,-0.074038743972778],[-0.039126615971327,-0.034612260758877,0.025828007608652]]],[[[-0.090804018080235,0.072276644408703,0.071489006280899],[-0.11096897721291,-0.074600055813789,-0.10064567625523],[-0.27680987119675,-0.17975953221321,-0.20132188498974]],[[0.12828634679317,-0.055160511285067,-0.12137063592672],[-0.11662438511848,-0.099900834262371,-0.13606356084347],[-0.0072339856997132,-0.018840266391635,0.013162290677428]],[[-0.17181213200092,-0.049335416406393,-0.045085165649652],[-0.06104438751936,-0.047695510089397,-0.060748931020498],[-0.10733581334352,-0.063717007637024,-0.032978102564812]],[[-0.036409374326468,-0.025653295218945,-0.17163264751434],[0.10801900178194,0.009974043816328,0.072656117379665],[-0.24444083869457,-0.088187739253044,-0.015396169386804]],[[-0.072829306125641,-0.012944548390806,0.16570021212101],[-0.022974079474807,-0.04959699884057,-0.041085939854383],[0.039303001016378,0.10015458613634,0.11775416880846]],[[0.073456950485706,0.018856517970562,-0.099996723234653],[-0.14709722995758,-0.14402884244919,-0.021032886579633],[-0.14349016547203,-0.045518450438976,-0.02618695423007]],[[-0.13641574978828,-0.12238021939993,-0.056672371923923],[-0.16362836956978,0.029404567554593,0.12858666479588],[0.036062825471163,0.061970800161362,0.073109023272991]],[[0.16106721758842,-0.049046039581299,-0.056280747056007],[0.028948167338967,-0.045408323407173,-0.02789712138474],[-0.039926171302795,0.040079947561026,0.04061658680439]],[[0.10391061007977,-0.042330674827099,0.0036300986539572],[-0.090735211968422,0.013036574237049,0.03233427926898],[-0.18326964974403,-0.08456989377737,-0.080306075513363]],[[-0.013962818309665,0.074494987726212,0.015289996750653],[0.0079809278249741,-0.063683018088341,-0.099296450614929],[-0.016609974205494,0.06162902712822,0.0041321581229568]],[[0.050830028951168,-0.078925557434559,0.087217718362808],[-0.0039865225553513,-0.016969580203295,-0.0018207813845947],[-0.04244577512145,0.0097012361511588,-0.12453345954418]],[[-0.11173366010189,-0.17570339143276,-0.041418198496103],[0.060882817953825,0.070008784532547,0.036751575767994],[-0.096423648297787,0.12432929873466,0.092188127338886]],[[0.07562068104744,0.014059760607779,-0.10149388760328],[-0.044542115181684,0.063819766044617,-0.049213301390409],[-0.017745308578014,0.04496344178915,-0.010638691484928]],[[-0.23420044779778,-0.052298214286566,-0.022821461781859],[-0.072072483599186,0.11059457063675,-0.0012728692963719],[-0.22811017930508,-0.097579605877399,-0.18110372126102]],[[0.080186761915684,-0.010455410927534,0.034474827349186],[-0.018238274380565,0.029946794733405,-0.032070513814688],[-0.021507369354367,-0.042948793619871,0.035959273576736]],[[0.071376487612724,0.02961565926671,-0.042767155915499],[-0.22097562253475,0.023639844730496,-0.063448630273342],[0.078280851244926,0.0015000415733084,-0.014799772761762]],[[-0.090726837515831,-0.001258488278836,-0.11766555160284],[-0.078171081840992,-0.056511886417866,0.0051624784246087],[0.067469455301762,-0.057600170373917,-0.079779393970966]],[[0.022570686414838,0.0020914569031447,-0.0092808939516544],[0.11097078025341,0.017286237329245,0.16870674490929],[0.0018513947725296,0.018025228753686,0.0070635993033648]],[[-0.031552862375975,0.060373269021511,-0.081493698060513],[0.076029412448406,0.13132083415985,-0.11289381980896],[-0.1853401362896,-0.11374358087778,-0.15846760571003]],[[-0.19236880540848,-0.24791532754898,-0.017935201525688],[-0.084001503884792,-0.0077364356257021,0.023131964728236],[0.0914471372962,-0.018179375678301,-0.16193829476833]],[[-0.16708071529865,-0.16022354364395,-0.10361643135548],[-0.075684107840061,-0.004013026598841,-0.042281795293093],[0.071614325046539,0.012628735974431,-0.041247017681599]],[[-0.01126426178962,-0.11516801267862,-0.017671231180429],[-0.042915523052216,-0.0086215157061815,-0.010973465628922],[-0.069306090474129,0.021903390064836,0.048474382609129]],[[0.039310567080975,0.13667711615562,0.076723039150238],[-0.050030782818794,-0.1127862110734,-0.20036102831364],[0.032508570700884,0.0040262532420456,0.07357382029295]],[[-0.12117064744234,-0.0078898658975959,-0.052450321614742],[0.14417535066605,0.22755426168442,0.14070247113705],[-0.042898744344711,-0.024209290742874,-0.014026545919478]],[[0.051676224917173,0.12762577831745,0.062395002692938],[-0.04203199967742,0.039303105324507,-0.0031782553996891],[-0.017119687050581,-0.11026129126549,-0.092128485441208]],[[-0.0080974958837032,0.093358524143696,-0.0047538313083351],[-0.00080770335625857,-0.0094413245096803,-0.088468439877033],[0.025313556194305,-0.041115742176771,0.015941869467497]],[[0.10230989009142,-0.067586436867714,0.071874044835567],[-0.0056768483482301,0.042161952704191,-0.0059704063460231],[-0.0017138360999525,0.066979169845581,0.054641470313072]],[[-0.069979317486286,0.005567520391196,-0.020343296229839],[-0.092975936830044,-0.079072080552578,0.18571200966835],[-0.038675028830767,-0.035273425281048,-0.059124037623405]],[[-0.08996457606554,-0.0727334395051,0.087407357990742],[0.090113803744316,0.098239034414291,-0.15783613920212],[-0.048007197678089,0.052294619381428,0.072541862726212]],[[-0.1742157638073,-0.051399413496256,-0.10463569313288],[-0.05768258869648,0.10399615764618,0.08205471932888],[0.068170517683029,-0.10739835351706,-0.028478628024459]],[[-0.11354103684425,-0.067135170102119,0.069136179983616],[0.12768684327602,0.036280564963818,0.1879825592041],[0.017635688185692,-0.073352858424187,-0.2360974997282]],[[-0.038420885801315,-0.013567853718996,0.0054986355826259],[0.16105622053146,0.092039622366428,0.13696929812431],[0.1278735101223,0.046076580882072,-0.073638901114464]],[[0.026498526334763,0.042175825685263,0.053786359727383],[-0.029082618653774,-0.10867909342051,-0.070698633790016],[-0.0031731589697301,-0.10897323489189,0.23879444599152]],[[-0.21953900158405,-0.054874639958143,-0.13152454793453],[0.11526066064835,0.097218111157417,0.0087956544011831],[-0.077493831515312,-0.0025829349178821,-0.090728536248207]],[[-0.023276230320334,-0.041832391172647,-0.0060482048429549],[-0.019545583054423,-0.041834209114313,-0.044403426349163],[0.15842387080193,-0.028145873919129,-0.19780293107033]],[[0.20040348172188,0.10112179815769,0.10486086457968],[-0.0057192374952137,-0.044474486261606,-0.093375779688358],[0.12712028622627,-0.011121855117381,-0.14656299352646]],[[-0.092964336276054,0.014361120760441,0.074649758636951],[0.040904685854912,0.089278541505337,0.041432108730078],[-0.075988247990608,0.041086494922638,-0.016373677179217]],[[0.017930945381522,-0.043065670877695,0.02652995288372],[-0.18061251938343,-0.05984366312623,-0.032487168908119],[0.13814060389996,0.0068598515354097,-0.088022314012051]],[[-0.1515788435936,-0.049573734402657,0.042696498334408],[0.094649419188499,0.054870154708624,0.04199543595314],[0.053194917738438,0.010132224299014,-0.18716299533844]],[[-0.11174102127552,-0.041527409106493,0.04497305303812],[-0.011735776439309,-0.033850468695164,0.16356383264065],[-0.11960798501968,-0.083044365048409,-0.082667537033558]],[[-0.06689116358757,0.042233400046825,-0.011476149782538],[-0.18625178933144,-0.10595685988665,-0.00098738726228476],[0.029116859659553,-0.021116275340319,-0.077731013298035]],[[0.081456288695335,-0.028391709551215,-0.046288426965475],[-0.04530630633235,-0.036199405789375,0.015816178172827],[-0.061139333993196,-0.11155381798744,0.043405715376139]],[[-0.038656491786242,0.089799799025059,0.084773130714893],[-0.13928274810314,-0.056295074522495,-0.12134530395269],[0.05932778865099,0.063400238752365,0.086753860116005]],[[-0.15760454535484,0.039124932140112,0.051262266933918],[-0.10490224510431,-0.008293597958982,0.092656031250954],[-0.085474997758865,-0.13472634553909,-0.15723490715027]],[[-0.069807082414627,-0.028989231213927,-0.11442653089762],[-0.061245173215866,0.063000172376633,-0.06086540222168],[-0.12720187008381,0.06460227817297,-0.020303027704358]],[[0.024125855416059,0.023188527673483,-0.13845691084862],[0.0061123082414269,0.031694520264864,0.15830211341381],[-0.065301448106766,-0.083886586129665,0.068251423537731]],[[-0.18081021308899,-0.14369395375252,-0.047994595021009],[-0.052514869719744,-0.021233081817627,0.012091310694814],[-0.047917783260345,0.035070639103651,0.17751006782055]],[[-0.15913878381252,-0.16708391904831,-0.0013106442056596],[-0.072295747697353,0.043759077787399,-0.043587006628513],[0.063358351588249,0.08102161437273,-0.055579356849194]],[[-0.091395042836666,-0.00099639070685953,-0.060271993279457],[-0.0056770141236484,-0.064614169299603,-0.083851508796215],[0.024747937917709,-0.07436990737915,0.015823459252715]],[[0.16175904870033,0.026849845424294,0.16991344094276],[0.078650608658791,-0.012951373122633,-0.012312561273575],[0.063814654946327,0.035982251167297,-0.072004266083241]],[[-0.053101975470781,-0.0021353980991989,0.0032803353387862],[0.04943486303091,-0.10826805979013,-0.19086107611656],[-0.0066883419640362,-0.040121804922819,-0.057178765535355]],[[-0.066652469336987,0.036152765154839,0.18249799311161],[-0.12539230287075,-0.15889757871628,-0.09063096344471],[0.025603141635656,-0.20003870129585,0.019292240962386]],[[0.032897628843784,0.043801918625832,-0.057910896837711],[0.10090633481741,0.01862395554781,0.13874819874763],[-0.34000360965729,-0.32334294915199,-0.26284867525101]],[[-0.046031132340431,-0.0027831194456667,0.0087399920448661],[0.034657932817936,-0.027549648657441,-0.032276343554258],[0.27758368849754,0.0018772599287331,0.11300807446241]],[[-0.037805713713169,-0.09258110076189,-0.21391102671623],[0.16203065216541,0.045153144747019,0.024714540690184],[-0.16034579277039,0.025507217273116,-0.0070000104606152]],[[0.14792630076408,0.05052787065506,-0.056250590831041],[-0.0028333221562207,0.019157787784934,-0.13174180686474],[-0.10631252080202,-0.077379554510117,-0.16865773499012]],[[-0.11123086512089,0.0012233181623742,0.00048475031508133],[-0.14104688167572,-0.10029655694962,0.0025282301940024],[0.16014896333218,0.034684509038925,0.10989787429571]],[[-0.15971000492573,-0.17273357510567,-0.19374816119671],[0.14072787761688,0.068595953285694,0.071599304676056],[-0.055171325802803,0.0059848977252841,0.15990708768368]],[[0.10971771925688,0.0088201779872179,-0.021170511841774],[0.074222721159458,0.044703308492899,0.054636135697365],[0.090343169867992,0.11919107288122,0.0011794061865658]],[[0.058244794607162,-0.00088421395048499,-0.029134972020984],[-0.118249386549,0.11598990857601,0.11426997929811],[0.033954426646233,-0.052627444267273,-0.0030577413272113]],[[-0.11883725970984,0.041827842593193,0.1068699285388],[-0.08303165435791,-0.0085687758401036,-0.1045268625021],[-0.050003986805677,-0.14596284925938,-0.066679552197456]],[[-0.13867945969105,-0.0039391801692545,0.042383436113596],[-0.020596014335752,0.057151947170496,0.1893398463726],[0.022874055430293,0.01319146156311,-0.013259963132441]],[[-0.033420830965042,0.044263482093811,-0.18073853850365],[0.071589983999729,0.074357613921165,-0.13122460246086],[-0.060681711882353,-0.16513206064701,-0.047974899411201]],[[-0.082985959947109,-0.10374196618795,0.012170421890914],[0.054144829511642,0.073521435260773,0.019832424819469],[0.0033198874443769,-0.16720724105835,-0.017915397882462]]],[[[-0.069763392210007,-0.085453055799007,0.035842034965754],[0.035701729357243,0.019293166697025,0.03227523714304],[0.11281583458185,0.054244339466095,0.082374110817909]],[[0.014247205108404,0.02594137378037,0.030088946223259],[0.025614434853196,-0.077278770506382,0.060029853135347],[0.0054106968455017,-0.056011229753494,0.085555844008923]],[[0.0010071902070194,-0.026749985292554,0.029208984225988],[-0.15470060706139,0.010626446455717,-0.070887289941311],[0.036662071943283,-0.0058653107844293,-0.008389363065362]],[[-0.01495455391705,0.0055893077515066,0.038863882422447],[0.043504305183887,-0.0035831704735756,0.046347700059414],[-0.042148116976023,0.052592899650335,-0.086619444191456]],[[-0.089269280433655,-0.090859062969685,0.058628622442484],[-0.038533240556717,0.010458654724061,-0.009282236918807],[0.068468168377876,-0.0056212306953967,0.08124003559351]],[[0.059676665812731,0.031527474522591,-0.086791180074215],[0.0085355341434479,0.061154097318649,-0.049556765705347],[-0.099886797368526,-0.024716317653656,-0.011743387207389]],[[0.028909815475345,-0.0031824533361942,-0.010667016729712],[-0.068379767239094,-0.062757223844528,0.01616745442152],[-0.06369810551405,0.058513510972261,-0.1415903866291]],[[-0.19866904616356,-0.064950071275234,-0.084530755877495],[-0.095058657228947,0.0014551873318851,-0.10999876260757],[0.028507756069303,0.040320850908756,-0.050726011395454]],[[-0.036304332315922,0.028335120528936,0.080298945307732],[0.13034184277058,0.091461233794689,0.090675830841064],[-0.023260815069079,0.056874398142099,-0.035402681678534]],[[-0.034796692430973,0.055067233741283,0.10267475992441],[0.022142723202705,-0.030138328671455,-0.014707705937326],[0.031801484525204,0.020611427724361,0.054332744330168]],[[-0.053128328174353,-0.0089935846626759,-0.0026554118376225],[-0.15196613967419,0.022873984649777,0.05193155258894],[-0.017064025625587,-0.040535282343626,0.031888630241156]],[[0.094208508729935,-0.043347548693419,-0.052171226590872],[-0.025200039148331,0.078531891107559,0.032211445271969],[0.047273095697165,-0.03957886621356,0.044291730970144]],[[0.13354970514774,0.031058017164469,0.024157317355275],[0.092380456626415,-0.096402883529663,0.059244453907013],[0.041174881160259,0.020187253132463,-0.15762276947498]],[[-0.013438367284834,0.0060743778012693,0.049215711653233],[-0.03287598118186,-0.067735187709332,0.01469358522445],[-0.032651823014021,0.022781923413277,-0.088976308703423]],[[0.074996098875999,-0.11406796425581,0.1659324914217],[-0.037006933242083,-0.060685571283102,0.08858073502779],[-0.077969573438168,0.1019654199481,0.20202009379864]],[[0.025845957919955,0.10495053976774,-0.035482008010149],[-0.037582967430353,0.060631964355707,-0.031669426709414],[0.077927060425282,-0.023703714832664,-0.11313283443451]],[[-0.02910552918911,-0.0076921419240534,-0.048745363950729],[0.004524661693722,-0.026741173118353,0.011214855127037],[0.022280702367425,0.031762976199389,0.064895950257778]],[[0.24192866683006,-0.075112193822861,-0.0081055974587798],[0.074455991387367,0.010388731025159,-0.021211609244347],[0.032856248319149,0.029264628887177,-0.13915388286114]],[[-0.067592203617096,0.033391032367945,0.01479616202414],[0.0072489650920033,0.014432820491493,0.0052732168696821],[-0.034076984971762,0.13993322849274,0.014405751600862]],[[0.094492793083191,0.039774656295776,-0.12775410711765],[0.13198851048946,0.065776370465755,0.013656894676387],[-0.067722894251347,-0.021285304799676,-0.089844025671482]],[[-0.015688156709075,-0.03816556558013,-0.0063774972222745],[0.045110877603292,-0.0053495024330914,0.092735253274441],[0.0056625897996128,-0.051404714584351,0.16799353063107]],[[0.093516059219837,0.084771893918514,0.013358701020479],[-0.028035640716553,0.052686903625727,-0.1063816472888],[-0.033541191369295,0.017284765839577,-0.061772644519806]],[[0.04644226655364,0.02923552505672,0.014199940487742],[0.067671343684196,-0.024853331968188,-0.097848102450371],[0.043777357786894,0.054896499961615,-0.080844409763813]],[[-0.027576608583331,-0.089097321033478,-0.058532532304525],[-0.071314565837383,-0.27245932817459,0.04390262439847],[0.02434547804296,-0.010219824500382,0.23385715484619]],[[-0.018888730555773,-0.11984990537167,0.1205520927906],[-0.033738404512405,-0.012181404978037,0.11704114079475],[0.064737647771835,-0.027375277131796,0.14134539663792]],[[0.037824381142855,-0.00072176707908511,-0.012770985253155],[-0.016653096303344,-0.077714785933495,0.078436285257339],[0.011411506682634,0.022500371560454,-0.049232576042414]],[[0.0052456315606833,0.01578845269978,-0.025503730401397],[-0.044890474528074,0.058336321264505,0.012050072662532],[-0.064319647848606,0.054762374609709,-0.06427987664938]],[[0.13920804858208,0.014705621637404,-0.083281449973583],[0.16007451713085,-0.084828220307827,-0.039411690086126],[-0.08476947247982,-0.043313149362803,0.027853481471539]],[[0.14208018779755,0.027332529425621,0.16209070384502],[-0.010874774307013,0.04542824998498,-0.0086505888029933],[0.10458513349295,-0.13020901381969,0.0085070235654712]],[[0.084072150290012,0.077192775905132,-0.17709811031818],[0.0096954694017768,0.023025879636407,0.045010894536972],[0.067277170717716,0.045794013887644,-0.11133765429258]],[[-0.068585693836212,-0.043294847011566,0.12118227779865],[-0.092096097767353,-0.10375324636698,0.041115593165159],[0.064705602824688,-0.012204201892018,-0.085649289190769]],[[0.13122053444386,-0.1539144217968,-0.024987187236547],[-0.032885871827602,-0.032439030706882,0.043715681880713],[0.075857736170292,0.015173323452473,-0.023105075582862]],[[-0.059022016823292,0.032403506338596,0.022771142423153],[0.041372749954462,0.11910743266344,0.010893881320953],[-0.12265496701002,0.097529269754887,0.096218921244144]],[[0.018776543438435,-0.042725376784801,-0.040806107223034],[-0.0580551661551,0.062151785939932,-0.048096504062414],[0.036861035972834,0.0073119886219501,-0.072167195379734]],[[0.052631363272667,0.17546856403351,-0.039740547537804],[-0.048676576465368,0.08279575407505,0.057168629020452],[-0.012207409366965,0.15833896398544,0.018479693681002]],[[0.14443299174309,0.10496067255735,0.12980902194977],[0.059384439140558,0.10034273564816,0.16108323633671],[-0.041165582835674,0.2316720187664,0.10488697141409]],[[0.082597970962524,-0.0306068174541,-0.092169582843781],[0.022959740832448,0.079873770475388,-0.072878949344158],[-0.020671997219324,0.17688190937042,0.11112116277218]],[[0.079070456326008,-0.0055450857616961,0.043764676898718],[-0.074409201741219,0.1221791729331,0.025850936770439],[-0.094438299536705,-0.12004759162664,0.0021104030311108]],[[-0.13035468757153,-0.033349394798279,0.11256159842014],[-0.074649855494499,0.04032689332962,0.10667632520199],[-0.035770330578089,0.00013608287554234,-0.090347021818161]],[[0.086306668817997,0.077160365879536,-0.010765085928142],[-0.015521721914411,-0.071906320750713,0.020116014406085],[-0.10742820799351,0.065096221864223,0.050515722483397]],[[0.025950083509088,0.10598637163639,0.11483035981655],[-0.015423160977662,-0.044671475887299,-0.015596302226186],[0.039848655462265,-0.071747601032257,-0.24311213195324]],[[-0.045600321143866,-0.16021563112736,-0.0026503179688007],[-0.032312866300344,0.082433670759201,-0.043832506984472],[-0.093722224235535,0.047097444534302,-0.078146636486053]],[[-0.078916549682617,0.041472878307104,-0.051232688128948],[-0.018512591719627,0.071001634001732,-0.040646996349096],[-0.087359301745892,-0.016739523038268,0.11538615822792]],[[-0.045173354446888,0.14550909399986,-0.071061015129089],[-0.11008206009865,0.023531280457973,0.11351429671049],[-0.13576962053776,-0.04148044064641,-0.082790464162827]],[[0.079245015978813,0.022026274353266,0.014480607584119],[0.022551914677024,0.043545335531235,-0.046330258250237],[0.024418583139777,0.014995871111751,-0.0085139255970716]],[[0.10985420644283,0.13454090058804,-0.045187417417765],[0.12956276535988,0.1575786024332,0.084882020950317],[0.025952314957976,0.13075534999371,-0.1091128885746]],[[0.023368930444121,0.013765726238489,-0.052909329533577],[0.043786287307739,0.054168835282326,0.0042886016890407],[0.019399266690016,-0.046199582517147,0.018315434455872]],[[0.13831427693367,-0.068925298750401,-0.00026095804059878],[0.10225065797567,-0.00070611806586385,-0.038919057697058],[0.031916562467813,0.095121517777443,-0.021632958203554]],[[0.11287794262171,-0.030997375026345,0.003701303852722],[0.11685182899237,-0.11969867348671,0.1096204072237],[-0.030665293335915,-0.095975749194622,0.068326108157635]],[[0.0063830791041255,0.16084170341492,0.053840763866901],[0.095888875424862,0.057203687727451,-0.077354416251183],[0.065469786524773,0.078183948993683,-0.046158574521542]],[[-0.07286811619997,-0.060715239495039,-0.098955392837524],[-0.051192354410887,-0.01381275895983,-0.061236385256052],[-0.0050148977898061,0.066913522779942,0.02903844229877]],[[-0.10977853089571,0.0033673366997391,0.047960694879293],[0.16576819121838,0.028172424063087,0.036955039948225],[-0.0041710915975273,-0.15541844069958,0.012422185391188]],[[-0.034938756376505,-0.011804143898189,-0.0053806160576642],[0.014372351579368,-0.018669784069061,-0.0065923957154155],[-0.052980303764343,-0.015532873570919,0.094496235251427]],[[-0.050530359148979,-0.020791843533516,0.092987731099129],[0.00049829372437671,-0.10771985352039,-0.023423591628671],[0.085452541708946,-0.025206005200744,-0.093183949589729]],[[0.078320130705833,-0.037016969174147,0.0063641658052802],[0.085069693624973,-0.038185048848391,0.0090358462184668],[0.085584565997124,0.071734212338924,0.055113982409239]],[[-0.0066597424447536,-0.16964286565781,-0.041325569152832],[0.0030599432066083,-0.14811639487743,0.054228659719229],[-0.049122530966997,-0.038367066532373,0.10735016316175]],[[0.1258909702301,0.072496734559536,0.0041130129247904],[-0.055038902908564,-0.1019348949194,-0.089453607797623],[0.042669400572777,-0.034237690269947,-0.070229135453701]],[[0.11920081824064,-0.044762521982193,0.00185479701031],[0.019537666812539,0.049500931054354,0.050732862204313],[0.045036368072033,0.037628147751093,-0.14183799922466]],[[-0.169348269701,-0.0035928578581661,0.041303217411041],[-0.02890007942915,-0.10682836174965,0.034871447831392],[0.061525359749794,0.052464760839939,0.098887331783772]],[[-0.082311600446701,-0.03264169767499,-0.06165024638176],[-0.1473745405674,-0.0043199444189668,0.09644404053688],[-0.0041288123466074,-0.077980652451515,0.052889864891768]],[[-0.089603677392006,-0.071315139532089,0.022610591724515],[-0.1043249592185,-0.035219345241785,0.034398898482323],[0.039102226495743,0.030360197648406,-0.0837227627635]],[[0.044741008430719,0.087378293275833,0.14717595279217],[0.1050014346838,0.053332671523094,-0.037096504122019],[-0.052438318729401,-0.057481076568365,0.064685940742493]],[[0.13305470347404,0.085021533071995,0.082488149404526],[0.16609480977058,0.03711948171258,-0.037721488624811],[0.19563767313957,-0.122313760221,-0.1824925839901]],[[0.079466626048088,0.068121574819088,-0.087541066110134],[0.060917437076569,-0.0037631348241121,-0.077364042401314],[-0.0005803860258311,0.051262009888887,-0.017558792605996]]],[[[0.037788942456245,-0.019128164276481,0.077627286314964],[-0.052725538611412,-0.072321817278862,0.088817305862904],[-0.12790602445602,-0.031457055360079,-0.085218913853168]],[[0.064833179116249,0.010868574492633,-0.122508443892],[-0.02148661762476,0.0037977232132107,0.060068424791098],[0.05410772934556,-0.03667613491416,-0.14708870649338]],[[0.070302970707417,0.013435860164464,-0.085232794284821],[-0.1626335978508,-0.013951851986349,-0.070619374513626],[-0.019589642062783,-0.1109524667263,-0.0045619276352227]],[[-0.16245172917843,-0.033118378371,0.034977193921804],[0.054845985025167,-0.0460797958076,-0.10364828258753],[-0.11708350479603,0.020850297063589,-0.0095567395910621]],[[-0.15492303669453,-0.014900607056916,-0.056502036750317],[-0.068318843841553,0.11518397182226,-0.047598332166672],[0.020759094506502,0.095115385949612,0.10813608765602]],[[-0.10819397121668,-0.033597871661186,-0.051589287817478],[0.036227863281965,0.10439591109753,-0.065949164330959],[-0.030666289851069,0.023228086531162,-0.12226669490337]],[[-0.06328521668911,-0.12589910626411,-0.31131955981255],[0.09166107326746,0.027898665517569,0.094106465578079],[-0.038342863321304,0.02507833763957,0.027142135426402]],[[-0.059089034795761,-0.098411977291107,-0.0010609222808853],[0.060111913830042,0.012987602502108,0.14854909479618],[-0.017967661842704,-0.0043219216167927,0.025217965245247]],[[-0.10248009860516,-0.03223329782486,-0.057612150907516],[-0.015009204857051,0.13240480422974,0.036914680153131],[0.048842508345842,-0.061926420778036,-0.013744085095823]],[[0.023991474881768,-0.043893329799175,0.0158587154001],[-0.029471695423126,-0.070928730070591,-0.22208274900913],[-0.10702028870583,-0.0083692688494921,0.12264746427536]],[[-0.068003073334694,-0.16344822943211,0.11252328753471],[-0.095882467925549,-0.093016773462296,0.040571119636297],[-0.11956335604191,0.07993008941412,-0.110116943717]],[[-0.048210900276899,-0.081134006381035,-0.070777036249638],[0.078456610441208,0.054193515330553,-0.10597588866949],[0.008741507306695,0.019292073324323,-0.009079035371542]],[[-0.0084003238007426,-0.0022622907999903,-0.010916344821453],[-0.053312230855227,0.05534802377224,-0.016966098919511],[0.057526145130396,-0.13412752747536,0.011908266693354]],[[-0.036677874624729,-0.07452105730772,-0.047134436666965],[-0.012665850110352,-0.013327389024198,0.11705167591572],[-0.007725443225354,-0.012604771181941,0.21750836074352]],[[-0.034305848181248,-0.032804556190968,-0.14082466065884],[-0.16858057677746,-0.1260791271925,-0.1289439946413],[-0.0045393467880785,-0.056777596473694,-0.087743699550629]],[[0.05433576926589,0.088745974004269,-0.14850515127182],[0.073173031210899,-0.10638751089573,-0.078284844756126],[0.012641036882997,0.038460366427898,0.050049435347319]],[[-0.094550274312496,-0.13204538822174,0.10200245678425],[0.0074166529811919,-0.0041537703946233,-0.11774502694607],[0.045170426368713,0.030311768874526,0.0078091463074088]],[[-0.072715893387794,-0.1322468817234,0.18925434350967],[-0.088786959648132,0.14059561491013,0.010122408159077],[-0.049760356545448,0.0088235298171639,0.10775377601385]],[[0.0097351726144552,-0.027908105403185,0.10101467370987],[-0.10068441927433,0.056363832205534,0.12254924327135],[0.082074716687202,-0.048685468733311,-0.043852161616087]],[[-0.054449688643217,0.057585746049881,0.1293902695179],[-0.019728060811758,-0.0045967134647071,-0.16797019541264],[0.0079087698832154,0.049927432090044,0.05858987569809]],[[0.033929023891687,0.055679474025965,-0.018707066774368],[-0.023216482251883,-0.043420381844044,0.030883138999343],[-0.028859937563539,-0.057002708315849,0.072437293827534]],[[-0.0077256066724658,-0.094377785921097,-0.047392431646585],[0.00076328753493726,-0.051783490926027,0.052718885242939],[-0.018589956685901,0.0043396418914199,0.05372640863061]],[[-0.11778601258993,0.085205569863319,-0.00098181888461113],[-0.15981993079185,-0.055213555693626,-0.071579173207283],[0.0023523808922619,-0.10625918209553,-0.026477951556444]],[[-0.020214665681124,0.095467910170555,0.10086983442307],[-0.017321599647403,0.11058975756168,0.30026262998581],[0.046406462788582,-0.068245217204094,-0.19203461706638]],[[0.016513736918569,0.086261801421642,0.29477244615555],[0.12822200357914,-0.12508027255535,-0.022571230307221],[0.029880655929446,0.011870480142534,0.078197054564953]],[[0.028537495061755,0.06272629648447,0.062869191169739],[0.0027092800009996,-0.037197697907686,-0.035572409629822],[-0.061817973852158,-0.07424721121788,0.011301071383059]],[[-0.051020581275225,-0.077269904315472,0.2137094438076],[-0.068261124193668,-0.1929052323103,-0.0015661054058],[-0.095234468579292,-0.11172723770142,-0.016667988151312]],[[0.2270702123642,-0.0070386719889939,0.20821945369244],[-0.16724888980389,-0.19969637691975,-0.20706285536289],[0.10028152912855,0.05258259922266,0.04273596778512]],[[0.0095459390431643,-0.16563326120377,0.061328951269388],[-0.02334295772016,-0.21738432347775,-0.034651957452297],[0.091570280492306,-0.00078932923497632,-0.025086659938097]],[[0.095556922256947,-0.17804013192654,-0.1371748149395],[-0.001633414067328,0.094227060675621,-0.057222213596106],[0.0046064988709986,0.021117897704244,-0.048819936811924]],[[-0.0048206700012088,0.097174242138863,0.061187978833914],[0.051622096449137,0.10777388513088,0.074739955365658],[-0.00087329186499119,-0.015800848603249,0.0062075508758426]],[[0.16236202418804,0.038545086979866,0.057204496115446],[0.03164054453373,-0.060650929808617,-0.0097359111532569],[0.080428950488567,0.14310602843761,0.091062918305397]],[[-0.014973811805248,0.0091389892622828,0.059919584542513],[-0.036518361419439,-0.10337967425585,-0.12800513207912],[0.0612040348351,-0.0079993875697255,-0.030249504372478]],[[-0.019805066287518,-0.0055517293512821,0.10626233369112],[0.0077482787892222,-0.0071696732193232,0.0080814259126782],[0.076472140848637,-0.059358276426792,0.068329162895679]],[[-0.089916206896305,-0.078954339027405,-0.13373383879662],[0.12556603550911,0.098992623388767,-0.079931624233723],[-0.050082918256521,-0.081662684679031,0.051732160151005]],[[-0.11699153482914,-0.011874630115926,0.009028896689415],[0.021963967010379,0.04757022485137,0.035803470760584],[0.057143606245518,0.098725840449333,0.10988453030586]],[[-0.13555589318275,0.094306334853172,-0.042035389691591],[0.064956806600094,-0.034759808331728,-0.068372845649719],[-0.16569621860981,-0.12183452397585,0.096656270325184]],[[-0.090121053159237,-0.025678236037493,-0.13051201403141],[0.015948861837387,-0.026619136333466,0.047337267547846],[-0.064913846552372,0.051723036915064,-0.16346091032028]],[[-0.037140838801861,-0.10854896903038,0.059284500777721],[-0.04797151312232,0.063377164304256,-0.03231854736805],[-0.010294433683157,-0.016276312991977,0.067650772631168]],[[0.038176890462637,0.076825045049191,-0.12689743936062],[0.068564288318157,-0.087072297930717,-0.0084039680659771],[-0.01617737300694,-0.040623158216476,0.056721094995737]],[[0.085824683308601,-0.062848657369614,0.1331824362278],[0.013300002552569,0.033983338624239,-0.12502135336399],[0.013659616932273,0.063966937363148,-0.026558263227344]],[[0.0015360180987045,-0.042877696454525,-0.11169611662626],[0.055749423801899,-0.087731882929802,-0.13533802330494],[-0.062228608876467,0.031058348715305,-0.018528018146753]],[[0.032949447631836,0.014222584664822,-0.039172779768705],[-0.033777754753828,-0.15898807346821,-0.10829176753759],[0.010575058870018,0.0035320266615599,0.080560341477394]],[[-0.1085969209671,0.019544428214431,-0.083565168082714],[0.0054192831739783,-0.13343273103237,-0.022195110097528],[-0.010735172778368,0.11057033389807,0.02794692479074]],[[0.16744844615459,0.06586566567421,-0.0031511695124209],[0.17220863699913,0.04033062979579,-0.014590761624277],[0.095651514828205,0.096554324030876,0.052586775273085]],[[0.034142792224884,-0.0500648021698,-0.0044279200956225],[-0.05140021443367,0.14076225459576,-0.10910861939192],[0.093219764530659,0.0385432690382,-0.084012612700462]],[[-0.086120061576366,-0.092780888080597,0.10470406711102],[-0.017176119610667,0.03378726914525,-0.0357785820961],[-0.049309235066175,0.0038321479223669,-0.053107541054487]],[[0.028185501694679,-0.074251227080822,0.025101777166128],[0.060284443199635,0.011699352413416,-0.10882237553596],[0.0055953841656446,0.0074573461897671,-0.18510463833809]],[[-0.018396459519863,-0.042004656046629,-0.12868508696556],[0.02215413376689,0.027521641924977,0.030980402603745],[-0.064596742391586,0.053626351058483,0.17242205142975]],[[-0.13421547412872,-0.11341080069542,-0.084307000041008],[0.071919456124306,-0.022348005324602,0.07328812032938],[0.14389701187611,0.23764029145241,0.039573185145855]],[[-0.0066594574600458,0.023826377466321,-0.13062888383865],[0.063868306577206,-0.055594380944967,0.084370769560337],[0.13320410251617,0.030416069552302,-0.0797273889184]],[[0.045939702540636,-0.0039693717844784,-0.070082150399685],[0.018417110666633,0.051002345979214,-0.054097827523947],[0.17696990072727,0.054776392877102,0.072544150054455]],[[-0.023377845063806,0.0099416440352798,0.16496695578098],[-0.023549059405923,-0.11465383321047,-0.060525547713041],[0.042450249195099,-0.09014455229044,0.0130475750193]],[[-0.0040894891135395,-0.062746033072472,-0.19093528389931],[0.04189595580101,-0.081456005573273,-0.12309101969004],[0.045873980969191,0.0062723937444389,-0.027292484417558]],[[-0.024360045790672,-0.043855477124453,0.11677933484316],[-0.081341907382011,-0.013428238220513,-0.10383982211351],[0.075996421277523,0.10898965597153,0.082690611481667]],[[-0.02613440901041,0.12932477891445,0.20401972532272],[-0.018423354253173,0.032776657491922,0.019582275301218],[0.0087224161252379,0.064532436430454,0.17535628378391]],[[0.011943924240768,-0.076607622206211,0.036232966929674],[-0.00076480954885483,-0.050341598689556,-0.075366176664829],[-0.057542134076357,-0.031750559806824,-0.032432645559311]],[[0.032807428389788,-0.11820997297764,0.023160640150309],[0.0073430114425719,0.045395821332932,0.023424845188856],[-0.030986638739705,-0.0042634196579456,-0.043772775679827]],[[0.049984805285931,0.099801890552044,0.07873510569334],[0.037338260561228,-0.014055703766644,-0.012055608443916],[-0.052781477570534,0.020666936412454,0.031611070036888]],[[0.056490365415812,0.05499904602766,0.034589748829603],[0.11546888947487,0.0070713651366532,-0.032748766243458],[0.069495879113674,-0.036035422235727,-0.23434074223042]],[[0.10881878435612,-0.098322324454784,-0.10916323959827],[0.0082398587837815,-0.12746441364288,-0.027604028582573],[0.078283227980137,0.053801313042641,0.042993750423193]],[[0.12942877411842,-0.17492339015007,-0.19508171081543],[0.10885597020388,-0.069390222430229,-0.078693464398384],[0.12887299060822,0.01273875311017,-0.15325447916985]],[[0.047070041298866,0.097521610558033,0.030215611681342],[0.015670442953706,0.03490811958909,-0.024080915376544],[-0.059219367802143,-0.18824081122875,-0.16712857782841]],[[-0.051719896495342,-0.14785207808018,0.039509750902653],[0.010723635554314,0.046852551400661,-0.2662470638752],[0.17878676950932,-0.018071584403515,-0.19082197546959]]],[[[0.0041589625179768,-0.041151281446218,-0.12624143064022],[-0.00022781699954066,-0.039726067334414,-0.06027190387249],[-0.039135988801718,0.050032638013363,0.0029809738043696]],[[-0.051579989492893,-0.074064120650291,-0.13049876689911],[0.0044049653224647,0.10565750300884,0.022076221182942],[-0.032634370028973,0.0052587050013244,-0.045326631516218]],[[0.071219116449356,-0.031432382762432,-0.044252723455429],[0.040857303887606,-0.074311286211014,0.073916792869568],[-0.098840959370136,-0.043192006647587,-0.048646278679371]],[[-0.0011277984594926,0.0054040597751737,-0.068577766418457],[-0.043146781623363,0.086174108088017,0.010421668179333],[0.025925669819117,-0.060969300568104,-0.044198583811522]],[[-0.18146066367626,-0.083824835717678,-0.096088275313377],[-0.099238328635693,0.14632391929626,0.029670430347323],[0.057882957160473,-0.099693939089775,-0.15210881829262]],[[-0.024670260027051,-0.14993870258331,-0.15286813676357],[-0.049558266997337,-0.0080995885655284,0.081915885210037],[-0.0036969538778067,-0.031013676896691,0.06908256560564]],[[-0.048691999167204,0.010569100268185,-0.05547121539712],[0.027709156274796,-0.082558393478394,0.00065324234310538],[0.032935850322247,0.068300731480122,0.25436213612556]],[[-0.038833230733871,-0.012102794833481,-0.078358754515648],[-0.0028832692187279,0.08720650523901,-0.10901526361704],[0.053217209875584,0.064937897026539,0.023370569571853]],[[-0.025439109653234,-0.095280274748802,-0.13741359114647],[-0.055239994078875,-0.020543597638607,-0.01059499848634],[-0.0090074595063925,0.11152277886868,-0.0042298343032598]],[[-0.047556266188622,-0.023327838629484,0.080700181424618],[-0.0091214645653963,0.090166464447975,0.04984563216567],[0.011484587565064,-0.09350311756134,-0.015869399532676]],[[-0.12878865003586,-0.0043451609089971,-0.0035779022146016],[-0.034174125641584,0.028966752812266,-0.0038674452807754],[-0.13297639787197,-0.12025869637728,0.060678727924824]],[[0.068725526332855,0.068850979208946,-0.0095563046634197],[0.006978144403547,-0.11150431632996,0.0048313261941075],[0.11330337822437,0.012450105510652,-0.027917662635446]],[[-0.039548888802528,-0.04107815772295,-0.028503898531199],[0.06747630238533,-0.07786650210619,-0.077236451208591],[-0.04748322814703,-0.010055772960186,0.10193312913179]],[[-0.06210245937109,0.070801720023155,-0.027817036956549],[0.012717075645924,0.087587378919125,-0.0877286195755],[0.20332644879818,-0.10571890324354,0.12519130110741]],[[-0.13196802139282,-0.020978922024369,-0.14508245885372],[-0.05205349624157,-0.045125611126423,0.011826530098915],[0.078985616564751,-0.082665756344795,-0.027386048808694]],[[0.11303438991308,-0.059637159109116,0.13840089738369],[-0.036606442183256,-0.061894476413727,0.21279527246952],[0.036868989467621,0.033327296376228,0.14132623374462]],[[-0.17011150717735,-0.15991117060184,-0.20465993881226],[-0.011989315971732,0.050070811063051,0.084977604448795],[0.017048230394721,0.13533711433411,0.15625114738941]],[[0.041839860379696,-0.013547340407968,-0.019338196143508],[-0.12599696218967,0.050314545631409,0.073228918015957],[-0.09915566444397,-0.075784891843796,-0.034092877060175]],[[-0.079451575875282,0.00067499518627301,-0.039098545908928],[-0.021557126194239,0.03098419867456,-0.0095621515065432],[-0.068217389285564,0.054918356239796,0.016745729371905]],[[0.10209810733795,-0.085167020559311,0.024984301999211],[0.069461077451706,0.0015340078389272,-0.077507577836514],[0.043974228203297,-0.068079426884651,0.024931393563747]],[[0.061687685549259,0.088870689272881,0.015620811842382],[-0.016508152708411,-0.021899046376348,-0.056398961693048],[0.045583974570036,-0.0038176386151463,-0.026562727987766]],[[-0.083963267505169,0.016656411811709,-0.033860396593809],[-0.047376673668623,0.042672995477915,0.024956835433841],[-0.025152731686831,0.020529625937343,-0.11280906200409]],[[0.0016968796262518,-0.055872671306133,0.17735207080841],[-0.050382632762194,0.044821444898844,-0.0049370843917131],[-0.020596627146006,0.024848803877831,0.15355953574181]],[[0.043787736445665,-0.060409612953663,-0.15170189738274],[0.032975122332573,-0.063412673771381,0.034853242337704],[-0.089016042649746,0.068851239979267,0.16725547611713]],[[0.062863998115063,0.037540100514889,-0.032551389187574],[-0.085366897284985,0.0075593371875584,-0.051397267729044],[-0.077527865767479,-0.0058449171483517,-0.017590148374438]],[[-0.043748810887337,0.014529761858284,-0.034289125353098],[0.063240103423595,-0.093084268271923,0.034202747046947],[0.074269019067287,0.013445118442178,-0.033792350441217]],[[0.1781919747591,-0.077896654605865,-0.02583846822381],[-0.0011508677853271,0.042813859879971,0.052901111543179],[-0.085683092474937,-0.13651755452156,-0.13723990321159]],[[-0.088890835642815,0.061297107487917,-0.011365342885256],[-0.053096357733011,-0.078191690146923,-0.015872661024332],[0.030397213995457,0.033424258232117,0.073541350662708]],[[-0.096828691661358,-0.0021914162207395,-0.10615029931068],[0.029966711997986,-0.01047289185226,0.073407873511314],[-0.14590790867805,0.050493489950895,0.037565916776657]],[[-0.039566319435835,-0.027529619634151,0.056294318288565],[0.0070798071101308,0.03150612488389,0.0091258846223354],[0.034705061465502,-0.036425992846489,0.056149341166019]],[[-0.1235105022788,-0.078359812498093,-0.11493508517742],[0.096661023795605,-0.062264516949654,0.020933436229825],[-0.11332677304745,-0.035178579390049,0.063696637749672]],[[-0.048492673784494,0.046484764665365,0.026239665225148],[0.070956617593765,0.024464290589094,0.030345009639859],[0.033687043935061,0.026607332751155,0.01866577193141]],[[-0.016170300543308,0.044116731733084,-0.060743946582079],[0.036639574915171,-0.027596317231655,0.17263287305832],[-0.14003530144691,-0.029344029724598,-0.17128708958626]],[[-0.11939382553101,-0.15146499872208,-0.072683319449425],[-0.03289882093668,0.05546522885561,0.12462133169174],[-0.11544093489647,3.8158064853633e-05,-0.050302244722843]],[[0.17195981740952,0.052709214389324,-0.0017920956015587],[-0.067682281136513,0.074551731348038,0.0035225905012339],[0.015656210482121,0.067981988191605,0.056490898132324]],[[0.047303970903158,0.14959545433521,0.083318404853344],[0.1142629981041,0.1264635771513,0.050108417868614],[0.052702199667692,-0.048407152295113,0.046434432268143]],[[0.15208095312119,-0.06373780220747,-0.11778615415096],[-0.10695681720972,0.098709166049957,0.017273845151067],[-0.049676906317472,0.0084000024944544,0.11707764863968]],[[0.17513318359852,-0.016039503738284,0.015312315896153],[0.0063968091271818,0.028800925239921,-0.10851304978132],[-0.087001316249371,-0.11086919903755,-0.0027552377432585]],[[-0.014318470843136,-0.017126938328147,-0.039853174239397],[-0.048761807382107,-0.038465965539217,0.013655734248459],[-0.063151873648167,0.10109703987837,-0.074734158813953]],[[0.13914188742638,0.072264172136784,-0.011171691119671],[0.07104267925024,-0.064384087920189,-0.057766154408455],[0.21985553205013,0.065923891961575,0.028489075601101]],[[0.0044935313053429,-0.14518530666828,-0.016735902056098],[0.051504202187061,-0.012840973213315,0.013334359042346],[0.069740533828735,0.06028925254941,0.066772051155567]],[[0.0272705424577,-0.018781324848533,-0.11143030226231],[0.023453494533896,-0.011148380115628,-0.10189665853977],[0.073250122368336,0.024554679170251,0.18800362944603]],[[0.13450489938259,0.032574709504843,0.11713891476393],[-0.090166978538036,0.014715800061822,-0.23680560290813],[-0.094212986528873,-0.18276700377464,0.19709461927414]],[[0.015977036207914,-0.010091068223119,0.025715693831444],[-0.047676630318165,-0.10147112607956,0.086305692791939],[0.13479933142662,-0.048108417540789,0.028028329834342]],[[-0.063422098755836,-0.070227444171906,0.052293471992016],[0.014792764559388,0.016883086413145,0.052117746323347],[-0.093130275607109,-0.028416691347957,0.046947203576565]],[[0.017168516293168,-0.072280295193195,-0.034281216561794],[0.063106536865234,-0.01934820972383,0.14727610349655],[-0.088671147823334,0.10060984641314,-0.036721467971802]],[[-0.058119118213654,0.0036871444899589,-0.054149374365807],[-0.014872125349939,0.029508989304304,-0.010375226847827],[-0.031998429447412,-0.070394434034824,-0.075569719076157]],[[0.063684649765491,-0.069241054356098,-0.044909838587046],[-0.035029496997595,-0.12856082618237,0.0008940264233388],[0.052792072296143,0.070121116936207,-0.088296085596085]],[[0.067395530641079,-0.060650881379843,-0.0052106943912804],[0.02428394369781,-0.021553765982389,0.016303015872836],[0.0055257482454181,-0.061356589198112,0.058226015418768]],[[0.20930708944798,0.12374496459961,0.048009347170591],[0.044979505240917,0.0060726315714419,-0.0068340827710927],[-0.073394536972046,0.02155145816505,0.16220600903034]],[[0.036801420152187,0.12940645217896,-0.093465529382229],[0.032067500054836,0.13494220376015,0.14806754887104],[0.11410917341709,-0.078368179500103,-0.10918156802654]],[[0.11623681336641,-0.16514013707638,-0.085008203983307],[0.046647451817989,0.039605371654034,0.064260102808475],[0.032487504184246,-0.05044861882925,0.046426273882389]],[[0.11137298494577,0.064778722822666,0.079973563551903],[0.085346534848213,-0.10014034807682,-0.0062419334426522],[-0.041370283812284,-0.061381544917822,-0.10023977607489]],[[0.071984149515629,-0.026850795373321,-0.15967942774296],[-0.098478898406029,-0.084625117480755,0.015762440860271],[-0.032270740717649,-0.012102686800063,0.038990668952465]],[[0.047249060124159,-0.086012184619904,-0.078639544546604],[0.060639102011919,0.13584035634995,0.015482513234019],[-0.08286839723587,-0.013864532113075,-0.018938081339002]],[[0.078738376498222,-0.080121919512749,0.051318731158972],[-0.034698326140642,-0.029586244374514,-0.0054303831420839],[0.025603506714106,-0.041986152529716,0.010241923853755]],[[-0.015564169734716,-0.04389363527298,0.023874785751104],[-0.0011624373728409,0.033014848828316,-0.026203347370028],[-0.08587934076786,-0.090728729963303,0.098576083779335]],[[0.039162416011095,-0.074237249791622,0.069253236055374],[0.08746812492609,0.058581106364727,-0.001254728063941],[0.024806752800941,0.011475562117994,-0.0056508295238018]],[[0.076786018908024,0.09340476244688,0.079567924141884],[0.17159001529217,0.18614669144154,0.18179358541965],[0.025663234293461,0.023285424336791,0.11638028174639]],[[0.040954191237688,0.047367032617331,-0.071088992059231],[-0.14483426511288,-0.088150233030319,0.083425171673298],[-0.081790588796139,-0.038057092577219,-0.055401060730219]],[[0.082171641290188,-0.03918706253171,-0.12513598799706],[-0.028412925079465,0.0026242283638567,0.040507439523935],[0.080903865396976,-0.040083382278681,0.100671261549]],[[0.096525862812996,0.039048552513123,0.1257408708334],[-0.011735465377569,-0.044509902596474,-0.11454627662897],[-0.012123297899961,0.094846166670322,0.083177030086517]],[[-0.051037918776274,-0.0075680618174374,-0.06213590502739],[-0.11844162642956,-0.11098575592041,-0.050827875733376],[0.11400627344847,0.080061629414558,0.2126444876194]],[[-0.11253505200148,-0.083647258579731,-0.013841957785189],[-0.0091540962457657,0.031479004770517,0.047544792294502],[-0.11330675333738,-0.088064938783646,-0.10010417550802]]],[[[-0.067772135138512,-0.0070362095721066,0.015596445649862],[0.031748671084642,0.067747987806797,-0.028052074834704],[0.042833495885134,-0.033299162983894,0.086458474397659]],[[-0.043924238532782,0.11978985369205,0.082331337034702],[-0.025668475776911,0.048115354031324,0.13109163939953],[0.048249628394842,-0.029548158869147,-0.017120122909546]],[[-0.028141872957349,0.018941415473819,0.012031703256071],[-0.0072182430885732,0.019652361050248,-0.080708868801594],[-0.073451675474644,-0.042808052152395,0.036898288875818]],[[0.091056987643242,-0.01079885661602,0.036198057234287],[-0.010890882462263,0.028280466794968,-0.094908207654953],[0.02950394898653,-0.084770657122135,-0.036357454955578]],[[-0.083377383649349,-0.0098556019365788,-0.026464534923434],[0.13208608329296,0.01819484680891,0.048367772251368],[0.061142738908529,-0.091921925544739,-0.016404276713729]],[[-0.020977890118957,-0.086776912212372,-0.0043440563604236],[-0.053525306284428,0.0045286840759218,0.11101542413235],[0.047725792974234,0.061671674251556,-0.028683207929134]],[[0.022288013249636,-0.020138883963227,0.012722047977149],[0.035970211029053,-0.0081393523141742,-0.062920182943344],[0.11969713121653,0.10344682633877,0.039806719869375]],[[-0.10617818683386,-0.08151800185442,-0.020728439092636],[-0.0036763239186257,0.029690343886614,0.0096526378765702],[0.020474832504988,-0.08192053437233,-0.052214376628399]],[[0.049273930490017,-0.022148562595248,-0.11576148122549],[0.058317326009274,-7.0222173235379e-05,0.092626832425594],[-0.011559467762709,0.082761682569981,0.067736946046352]],[[-0.096621461212635,-0.08929205685854,-0.024938132613897],[0.038152184337378,0.0085721965879202,-0.12814359366894],[-0.067164398729801,0.065196104347706,-0.078933008015156]],[[-0.038295768201351,0.0095393368974328,-0.10267913341522],[-0.0055157137103379,0.015175884589553,-0.0048421593382955],[-0.050739493221045,-0.076633378863335,0.038276016712189]],[[0.069298885762691,-0.10870216041803,-0.055724505335093],[0.052271593362093,-0.054458864033222,0.11661867797375],[-0.016414240002632,0.01719792932272,-0.11771290749311]],[[0.010184672661126,0.16784527897835,-0.002009702147916],[0.02276518009603,0.070700921118259,-0.012700218707323],[-0.017812121659517,-0.021355083212256,-0.0052838590927422]],[[-0.078002363443375,-0.13122978806496,-0.052477937191725],[0.11151493340731,0.009504321962595,0.026783542707562],[0.067730166018009,-0.072887405753136,-0.092804066836834]],[[0.080633945763111,-0.095777809619904,0.050048030912876],[-0.03579768538475,-0.016053345054388,0.022816266864538],[-0.18801607191563,-0.061395321041346,0.17492501437664]],[[0.13464260101318,-0.11616741120815,-0.058061596006155],[-0.033347237855196,0.16366603970528,0.067372389137745],[-0.01883596368134,0.036242671310902,-0.084066532552242]],[[-0.049570921808481,0.010807316750288,-0.089333862066269],[-0.0091741075739264,0.07833431661129,0.035901613533497],[-0.065213397145271,0.068584591150284,0.0036176489666104]],[[0.039562962949276,-0.024871177971363,0.059668090194464],[0.031386088579893,-0.032316226512194,-0.027005614712834],[-0.047969646751881,0.043061308562756,0.062110479921103]],[[-0.12447187304497,-0.023110477253795,0.042250618338585],[0.13974438607693,0.051272045820951,-0.11412580311298],[0.026997212320566,-0.098468482494354,-0.053274475038052]],[[0.038037531077862,-0.052017856389284,-0.0035504945553839],[-0.056952450424433,-0.017250802367926,0.10868386924267],[-0.14520923793316,-0.023347167298198,0.070461355149746]],[[0.01367365848273,-0.0048603201285005,0.16311982274055],[0.031149430200458,-0.021989120170474,0.036287765949965],[0.036303803324699,-0.098405733704567,0.052028197795153]],[[-0.049089066684246,-0.066708922386169,0.014053063467145],[0.002391587710008,-0.066959597170353,-0.040060233324766],[0.021838020533323,-0.0010396501747891,-0.068256624042988]],[[-0.026195477694273,0.12580972909927,0.089010760188103],[-0.053016904741526,0.051756605505943,0.058267645537853],[-0.029336059466004,-0.078854769468307,-0.027659177780151]],[[0.0057056904770434,-0.013897034339607,-0.096565216779709],[0.078685238957405,-0.20371131598949,-0.18591797351837],[0.092730835080147,-0.085087053477764,-0.026992248371243]],[[-0.11968383938074,0.015069974586368,0.081798247992992],[-0.032624322921038,-0.080904997885227,0.055654913187027],[0.088485114276409,0.17060948908329,0.085649877786636]],[[-0.045666642487049,-0.058668185025454,-0.037064831703901],[-0.037323690950871,0.053358998149633,0.090684317052364],[0.031016895547509,0.025548363104463,0.064522869884968]],[[-0.042392201721668,0.097903616726398,-0.12246868014336],[0.05549617856741,-0.061617944389582,0.11957988142967],[-0.12350510805845,-0.04727965220809,-0.034532126039267]],[[0.060280062258244,0.17502769827843,0.16548290848732],[-0.072299510240555,0.077221013605595,-0.010515215806663],[0.080322869122028,0.011022355407476,-0.0098537756130099]],[[-0.099304422736168,-0.13913626968861,0.0032360677141696],[-0.026934372261167,-0.051437824964523,0.090273104608059],[0.11436668038368,-0.024755569174886,-0.032229296863079]],[[0.065056227147579,0.076617360115051,-0.120745241642],[-0.01909414678812,0.044032003730536,0.071546673774719],[-0.086193561553955,-0.13800229132175,-0.066920027136803]],[[-0.019088070839643,0.033563934266567,0.017107049003243],[-0.14617289602757,0.07095480710268,0.1588277220726],[-0.013630528002977,-0.0099022230133414,0.12669929862022]],[[-0.016350904479623,-0.030738916248083,-0.086696937680244],[0.15259894728661,0.1463129222393,0.14768947660923],[0.10411694645882,-0.058456514030695,0.085305258631706]],[[-0.17398877441883,-0.16688974201679,-0.13993462920189],[0.004007977899164,0.051183335483074,0.081725299358368],[-0.10420132428408,0.027211530134082,0.065602764487267]],[[0.019609561190009,0.085755847394466,-0.23719356954098],[-0.021410580724478,0.028551558032632,-0.064324840903282],[0.0063072289340198,-0.026621019467711,0.039180222898722]],[[0.050946809351444,-0.001532323891297,-0.0516572073102],[0.068721920251846,0.051138374954462,-0.0038020117208362],[0.13534200191498,0.078902088105679,-0.18574701249599]],[[0.073565758764744,0.056384027004242,0.14216750860214],[0.010293319821358,0.025738745927811,0.050239834934473],[0.05312367528677,0.037966653704643,0.028985718265176]],[[0.24148543179035,0.073862567543983,0.012501934543252],[-0.0064631514251232,-0.024696510285139,-0.014034776948392],[-0.079836040735245,0.068480186164379,0.10514018684626]],[[0.024808388203382,-0.014342489652336,-0.002371106762439],[0.059106133878231,-0.047319944947958,0.049870051443577],[-0.066059373319149,0.010842887684703,-0.12159699201584]],[[-0.10781359672546,0.0055846525356174,0.13139264285564],[-0.022083058953285,-0.084138177335262,0.013471852056682],[-0.09794744849205,-0.077196806669235,-0.079068839550018]],[[-0.018548082560301,-0.056855946779251,-0.12896046042442],[0.086255691945553,0.023918403312564,-0.1245059967041],[0.11302433162928,0.048789832741022,-0.045564316213131]],[[0.050996646285057,0.10876269638538,0.04467635974288],[0.11459241062403,0.042480759322643,0.087722904980183],[0.15139345824718,0.021648721769452,-0.048711486160755]],[[0.011818451806903,-0.056134477257729,0.0086936382576823],[-0.05235855281353,0.029224121943116,-0.082215435802937],[0.13113136589527,0.036239769309759,-0.034131053835154]],[[0.035763438791037,-0.071840412914753,0.095937483012676],[0.04540029540658,0.15462371706963,0.077363304793835],[0.10547910630703,0.01047115214169,0.12034449726343]],[[0.13759726285934,0.097451232373714,0.18278406560421],[0.013454025611281,-0.053543511778116,-0.051856450736523],[-0.0063775735907257,-0.01506479550153,0.0076868436299264]],[[0.098640397191048,-0.053526718169451,0.027167918160558],[0.015742387622595,-0.011089055798948,-0.087632738053799],[-0.015387098304927,-0.072105452418327,0.038396455347538]],[[-0.06267387419939,0.035596631467342,-0.04546645283699],[0.05859050154686,0.14326301217079,0.051216240972281],[-0.087748728692532,0.039581276476383,0.016374595463276]],[[0.10662762075663,-0.077940091490746,0.072221271693707],[-0.1238876581192,-0.091785900294781,0.054228033870459],[-0.084415383636951,-0.058006640523672,-0.0078431665897369]],[[-0.12536297738552,-0.12506924569607,-0.069838628172874],[0.010844198055565,0.027855545282364,-0.072576142847538],[0.05059665068984,0.0061338571831584,0.024486266076565]],[[0.023465614765882,-0.048905596137047,0.028499005362391],[-0.040290031582117,0.048382773995399,0.03871238604188],[-0.083970122039318,-0.21635968983173,0.13950544595718]],[[-0.17269363999367,-0.11667374521494,0.10485433787107],[-0.1259263753891,-0.15061604976654,0.08016462624073],[-0.071819774806499,-0.07951994985342,-0.026635127142072]],[[0.12180856615305,0.021172057837248,-0.042941100895405],[-0.092329427599907,-0.044970136135817,0.092530094087124],[-0.13055899739265,0.031943764537573,-0.04329950734973]],[[-0.17054226994514,0.17265693843365,-0.17651060223579],[0.12587206065655,0.019394710659981,-0.040193147957325],[-0.071825563907623,-0.022068526595831,0.13470655679703]],[[0.04733382165432,-0.091130189597607,-0.02946138381958],[0.096938319504261,-0.004311163444072,0.010204247198999],[-0.017906937748194,0.10485206544399,0.019091621041298]],[[0.031373221427202,0.010067695751786,0.041475087404251],[0.050314947962761,0.090936481952667,-0.067296780645847],[-0.076739341020584,-0.034512892365456,0.055890660732985]],[[-0.056268993765116,-0.016550811007619,0.039168518036604],[-0.014141961932182,0.041402641683817,0.011414782144129],[-0.0041088350117207,-0.056363485753536,-0.26839643716812]],[[0.044129312038422,-0.010524293407798,0.087621785700321],[-0.025893265381455,-0.073862075805664,-0.069963201880455],[-0.01538348570466,-0.15597343444824,-0.0036104589235038]],[[0.17193435132504,0.024026907980442,0.10681279748678],[-0.028687937185168,-0.0027146125212312,-0.029838239774108],[0.14974084496498,-0.095135763287544,0.034123197197914]],[[-0.015058647841215,-0.089923307299614,-0.11177872121334],[-0.1610841602087,0.030313234776258,0.071206711232662],[0.039078112691641,-0.077519491314888,-0.10188744217157]],[[0.069479420781136,0.12922450900078,0.19630686938763],[0.028417527675629,0.039988487958908,0.10601896047592],[0.099977664649487,0.14925457537174,0.043164238333702]],[[0.02902527153492,-0.016438713297248,0.042438585311174],[0.04398063570261,-0.063384473323822,0.14586319029331],[0.032835390418768,-0.039644449949265,-0.0087927049025893]],[[0.030180653557181,0.043728400021791,-0.040854282677174],[0.025037912651896,-0.011207509785891,-0.0060372557491064],[-0.074122101068497,0.060940355062485,0.022284684702754]],[[-0.030347967520356,0.010865377262235,-0.042623601853848],[-0.071886293590069,-0.20979253947735,-0.091653384268284],[0.035925351083279,-0.17155480384827,-0.083428032696247]],[[-0.054342813789845,0.10847485810518,0.06105087697506],[-0.0043821474537253,-0.086702398955822,-0.098979607224464],[0.080264255404472,0.0021844538860023,0.10768492519855]],[[-0.036399442702532,-0.070024780929089,-0.0075065498240292],[-0.15359681844711,0.017152298241854,0.10487518459558],[-0.10982677340508,0.10223525762558,0.068516530096531]]],[[[-0.10120731592178,-0.14315159618855,-0.19679173827171],[0.039025723934174,0.033446546643972,-0.025737741962075],[0.1313684284687,0.032279565930367,-0.053913369774818]],[[0.032530698925257,0.033469099551439,-0.0018261098302901],[0.046678200364113,-0.01860710978508,-0.11197886615992],[0.011195475235581,0.0060353130102158,0.046713683754206]],[[0.06402462720871,0.062438391149044,0.016504229977727],[-0.016089625656605,-0.064470209181309,-0.11269011348486],[-0.051459386944771,-0.20960572361946,0.11991653591394]],[[0.035166122019291,0.032425709068775,0.039551950991154],[0.0090316822752357,0.11448461562395,-0.028143769130111],[-0.10310913622379,-0.01503858808428,-0.18364250659943]],[[-0.0042933654040098,0.083664372563362,0.042245775461197],[-0.1416223347187,0.055770233273506,0.093844778835773],[0.040865790098906,0.020460546016693,0.024016352370381]],[[0.058247555047274,-0.060500677675009,-0.11627166718245],[0.008667254820466,0.018880773335695,0.053224168717861],[0.034031998366117,0.14243856072426,-0.10869988054037]],[[-0.088324479758739,0.075401090085506,0.16166447103024],[-0.076678782701492,-0.080221712589264,-0.027863990515471],[0.0042302198708057,0.04888541996479,-0.037238802760839]],[[-0.00061525608180091,0.12307790666819,0.052814919501543],[-0.012054086662829,-0.00041114786290564,-0.14169771969318],[0.08914490044117,0.069660522043705,-0.13669018447399]],[[0.03090026602149,-0.0016162168467417,0.065412953495979],[0.091957919299603,0.083980351686478,0.036149017512798],[0.018030166625977,0.20202586054802,0.10372539609671]],[[-0.055084515362978,0.04398388415575,0.077030450105667],[-0.055304154753685,-0.0066856220364571,-0.11844832450151],[0.020198570564389,-0.0053729875944555,-0.043128315359354]],[[-0.10707815736532,-0.041176576167345,-0.16318616271019],[0.034892670810223,0.053548492491245,-0.11125789582729],[0.011992761865258,0.0856649056077,-0.22655233740807]],[[0.02493087016046,0.0088190296664834,0.0032292453106493],[0.013585931621492,0.0029966763686389,-0.19389982521534],[-0.03300715982914,0.077942371368408,-0.4659007191658]],[[-0.039883993566036,-0.1530014872551,-0.12989497184753],[0.07902218401432,-0.061115980148315,0.028936771675944],[0.084812305867672,0.05170239135623,0.049320559948683]],[[0.053482573479414,0.017119709402323,-0.110391497612],[0.035764072090387,-0.027270754799247,-0.078846134245396],[0.1700744330883,-0.0058840322308242,0.059355996549129]],[[-0.062924347817898,0.085261605679989,0.10458064824343],[-0.14347726106644,-0.053734395653009,0.037476293742657],[0.028341576457024,-0.04979120567441,-0.21189856529236]],[[0.00012724980479106,-0.1611320823431,0.13927079737186],[0.12748020887375,-0.027132879942656,0.0089787477627397],[-0.0149134574458,0.14511734247208,0.12254533171654]],[[-0.090584769845009,-0.037079036235809,-0.016283981502056],[-0.035276602953672,0.016669433563948,0.01772109977901],[-0.038268953561783,0.073114618659019,0.11588355898857]],[[-0.0085923131555319,-0.13390420377254,0.106928370893],[-0.010780018754303,-0.10733637213707,0.084437981247902],[0.071670070290565,-0.053763546049595,0.036760911345482]],[[-0.051378630101681,-0.074861198663712,0.023136558011174],[0.035504996776581,-0.12049601227045,-0.022427294403315],[0.0015684091486037,-0.038704536855221,-0.028055101633072]],[[-0.080755181610584,-0.060714665800333,0.099566757678986],[0.023181438446045,0.10612039268017,-0.097857005894184],[-0.02865487895906,0.0017205465119332,0.022156249731779]],[[-0.06067169457674,0.056844130158424,-0.13213761150837],[-0.0071745319291949,0.039222963154316,0.054385010153055],[0.11243140697479,-0.012195371091366,0.0072367046959698]],[[0.006149641238153,-0.061227228492498,-0.0056209545582533],[0.017755696550012,-0.030480431392789,-0.090255737304688],[-0.045631259679794,-0.023008964955807,-0.016847565770149]],[[0.010447359643877,0.051185093820095,-0.00098299700766802],[0.0020886228885502,-0.099848300218582,0.059790380299091],[-0.077561669051647,0.12547290325165,-0.033571720123291]],[[-0.072201706469059,0.159593090415,0.17482504248619],[-0.030213622376323,-0.049747969955206,-0.052271295338869],[0.21989004313946,-0.0023249471560121,-0.093938440084457]],[[0.0015644878149033,0.041562281548977,0.063412718474865],[0.10510546714067,0.044729717075825,0.10475414991379],[0.012202410027385,-0.091638065874577,0.10615953058004]],[[0.01020398363471,0.056207645684481,0.063675537705421],[-0.0044762855395675,0.014464972540736,0.066917806863785],[-0.03995044901967,-0.080077208578587,0.032574817538261]],[[0.014805194921792,0.056769073009491,0.0026426445692778],[0.0009116146247834,-0.042128391563892,0.050056871026754],[0.2041889578104,0.11371352523565,-0.070219106972218]],[[0.095179207623005,0.0033403765410185,0.093048922717571],[0.019830940291286,0.012094916775823,0.06114087626338],[-0.0088001852855086,-0.11729923635721,-0.035985067486763]],[[-0.077167220413685,-0.043490637093782,-0.038365803658962],[-0.0015760054811835,-0.0088733779266477,-0.034339517354965],[0.00152040226385,-0.04323773086071,-0.071609772741795]],[[0.015038794837892,-0.11575575917959,-0.030366256833076],[0.082807429134846,-0.00040637128404342,-0.07444466650486],[-0.081740699708462,0.081492200493813,-0.03671021386981]],[[0.055554486811161,0.045165587216616,0.015799675136805],[-0.13266648352146,0.146848320961,0.04749858006835],[-0.053454164415598,0.089449271559715,0.0074503091163933]],[[-0.20287896692753,-0.029572648927569,-0.012604421935976],[-0.038159307092428,-0.017788691446185,0.025413308292627],[0.13288815319538,0.041763342916965,0.090153343975544]],[[-0.11037422716618,-0.0048232446424663,0.017759315669537],[-0.065489113330841,0.029167512431741,-0.073092505335808],[-0.074814729392529,0.0067832828499377,-0.076151967048645]],[[0.051864858716726,-0.037589870393276,-0.13838994503021],[-0.094036512076855,0.045907974243164,-0.097871601581573],[-0.029460519552231,0.096467286348343,-0.094231218099594]],[[0.0072568389587104,0.041802205145359,-0.019070571288466],[-0.054453901946545,-0.038506209850311,-0.14528258144855],[0.22100323438644,0.021632188931108,0.0003595300076995]],[[0.14015842974186,-0.012342204339802,0.11532091349363],[0.045733202248812,-0.020530702546239,0.0018519156146795],[0.04616180062294,-0.017381163313985,-0.021185239776969]],[[0.16654668748379,0.027745511382818,0.11049212515354],[-0.048051103949547,0.018857471644878,0.067576423287392],[-0.056146625429392,-0.022491415962577,0.027896737679839]],[[-0.090769551694393,-0.10809912532568,0.00093890260905027],[0.013685864396393,-0.04796839132905,-0.045209307223558],[0.079218201339245,0.03120949678123,-0.033306177705526]],[[0.061791073530912,0.075232841074467,0.16379883885384],[-0.098209746181965,-0.097801469266415,0.013617862947285],[0.003037684597075,-0.089958094060421,-0.14892461895943]],[[-0.010106484405696,-0.087089031934738,0.014940473251045],[0.071145132184029,-0.23207578063011,0.038228791207075],[0.21916896104813,0.058593675494194,0.15999864041805]],[[-0.031275998800993,0.13651089370251,0.18097637593746],[0.06846185028553,0.16752175986767,0.096732094883919],[-0.0061192810535431,-0.13962049782276,-0.009686485864222]],[[-0.14798831939697,-0.03986032307148,-0.0044761607423425],[0.096559979021549,-0.04700568690896,-0.032699596136808],[-0.071000024676323,0.032713208347559,-0.20710943639278]],[[-0.078807920217514,0.040001571178436,0.0066133481450379],[0.073352754116058,0.041589930653572,-0.045214425772429],[0.066578954458237,-0.16784822940826,0.087835997343063]],[[-0.16813862323761,0.012384369969368,-0.017537092790008],[-0.010929090902209,-0.10638263821602,0.010293926112354],[-0.031627684831619,-0.15979091823101,0.061214927583933]],[[-0.061973072588444,-0.091995850205421,0.017749140039086],[-0.085886001586914,-0.11631955206394,-0.059556558728218],[-0.14657863974571,-0.077182993292809,-0.10072556138039]],[[0.055668547749519,-0.175886541605,-0.067641258239746],[0.055883210152388,0.0334292948246,0.0063474331982434],[-0.050652798265219,0.017038291320205,0.11572876572609]],[[-0.11874971538782,-0.15927292406559,0.02672329172492],[0.010840120725334,-0.047913078218699,-0.059525270015001],[-0.042150054126978,0.12677316367626,-0.18660673499107]],[[-0.05177491530776,0.16616016626358,-0.0057075009681284],[0.076278209686279,-0.11555568873882,-0.024766989052296],[0.027567038312554,-0.058287043124437,0.046321727335453]],[[-0.060726974159479,0.13971629738808,-0.033329647034407],[-0.11817660927773,0.10668115317822,-0.11509618163109],[-0.12682446837425,0.021363902837038,0.10678243637085]],[[-0.0071947160176933,0.14363895356655,-0.061546348035336],[0.11105846613646,0.09252156317234,0.091604858636856],[-0.046376544982195,-0.12329304218292,0.13920737802982]],[[0.042517587542534,0.028251178562641,-0.099069029092789],[0.0027389372698963,0.075558789074421,-0.03403652831912],[0.051950890570879,0.10024210065603,0.010130953043699]],[[-0.084731951355934,-0.020804762840271,-0.063492186367512],[-0.023566070944071,-0.061366733163595,0.018203295767307],[0.14207690954208,-0.035294339060783,0.052785638719797]],[[0.047572750598192,0.025573812425137,-0.022953378036618],[-0.081141844391823,-0.019819542765617,-0.03235249966383],[0.053908679634333,0.059694107621908,0.10208079218864]],[[0.015469931997359,-0.037312109023333,0.18256786465645],[-0.03500834107399,-0.0064185024239123,-0.06535392254591],[-0.21038380265236,0.0040541402995586,0.052389144897461]],[[0.039358954876661,-0.037625920027494,-0.052386995404959],[-0.11689900606871,-0.019667102023959,-0.074518345296383],[-0.10045433044434,0.094098493456841,-0.066215828061104]],[[0.055095866322517,-0.02679611556232,-0.021281922236085],[0.10758426040411,-0.059934798628092,-0.11137298494577],[0.073806211352348,0.020597696304321,-0.12661880254745]],[[-0.026008201763034,0.11678627878428,-0.18787461519241],[-0.0079665696248412,-0.011317222379148,0.02142134681344],[-0.068316407501698,-0.06738256663084,0.036968681961298]],[[-0.037334743887186,0.051012389361858,0.0032851460855454],[-0.11779550462961,0.016014344990253,0.0022771582007408],[0.053334560245275,-0.032046224921942,0.07802002876997]],[[0.19185443222523,0.11209691315889,0.12240319699049],[0.073352791368961,0.14527533948421,0.10383533686399],[0.056689918041229,0.097883135080338,0.10762391984463]],[[0.071590319275856,0.10043346881866,-0.030253527686],[0.011961251497269,0.089156210422516,0.10541963577271],[-0.019220346584916,-0.11149249970913,0.016296181827784]],[[-0.097142390906811,0.016256082803011,-0.030341593548656],[-0.065801680088043,0.077503278851509,0.021269107237458],[0.03284652531147,0.012464297935367,0.012047364376485]],[[0.050554402172565,-0.039322502911091,-0.038299597799778],[-0.039679694920778,-0.0050558242946863,0.020109945908189],[0.03371886909008,-0.13457964360714,-0.16146910190582]],[[-0.068180322647095,-0.0127810575068,-0.20576372742653],[-0.027854209765792,-0.055826734751463,0.050325505435467],[0.25168699026108,0.019908605143428,0.072067447006702]],[[0.064541727304459,0.0206487942487,-0.023283353075385],[-0.073058262467384,0.142145216465,0.094946160912514],[-0.12850153446198,-0.026396472007036,-0.0034243853297085]]],[[[0.028258120641112,0.046378929167986,-0.03584623336792],[0.083733588457108,-0.094211600720882,0.018055161461234],[0.088518895208836,0.010540273040533,0.060769002884626]],[[-0.0002642908366397,0.085468947887421,0.047048080712557],[0.025576330721378,0.0039029128383845,-0.036299902945757],[-0.31853741407394,-0.17344042658806,-0.14194430410862]],[[0.042671632021666,-0.10272957384586,-0.036870326846838],[-0.061548784375191,-0.063673436641693,0.062275342643261],[-0.06194756925106,0.033150352537632,-0.021156834438443]],[[0.020686328411102,0.0083428332582116,-0.025759603828192],[-0.098465293645859,0.011793941259384,0.060014974325895],[-0.15325991809368,-0.10246743261814,-0.066116400063038]],[[-0.062033098191023,0.031600907444954,-0.032629005610943],[0.030242670327425,-0.041390042752028,0.049574814736843],[-0.19229398667812,-0.10613210499287,-0.092766560614109]],[[-0.01033566519618,-0.0004222248098813,0.063278637826443],[0.046137884259224,-0.053889513015747,-0.14248265326023],[-0.099676102399826,-0.11633029580116,-0.060037788003683]],[[-0.090705081820488,-0.05629526078701,0.017752632498741],[0.097571700811386,0.027604883536696,0.084705747663975],[-0.12414589524269,-0.03695048764348,0.032170731574297]],[[-0.059166729450226,-0.063966915011406,0.12509922683239],[0.031754080206156,0.089692257344723,0.1101016625762],[-0.1676766872406,0.063222900032997,0.080819502472878]],[[-0.001858763047494,-0.011005843058228,0.044318687170744],[0.065424710512161,-0.088311992585659,0.049037039279938],[0.010896562598646,-0.19263185560703,-0.15690441429615]],[[0.06517305970192,0.088039509952068,-0.081271544098854],[-0.085202969610691,-0.0051402347162366,0.0054260515607893],[-0.1173255443573,0.0076080467551947,0.092013612389565]],[[0.027186874300241,0.071179866790771,-0.056945350021124],[-0.072591327130795,-0.0066655427217484,0.016247263178229],[0.099465943872929,-0.054598525166512,0.10468753427267]],[[0.0009866114705801,0.071321472525597,0.007374684792012],[-0.041634779423475,0.06640100479126,-0.031725957989693],[-0.028281150385737,0.00037656372296624,-0.075342886149883]],[[-0.025384023785591,0.035254821181297,0.029120048508048],[-0.04016537964344,-0.020512469112873,-0.001096804975532],[-0.079380437731743,0.058591797947884,-0.026762530207634]],[[-0.17558707296848,-0.087103575468063,-0.069946199655533],[-0.018535360693932,-0.14966736733913,0.042945735156536],[-0.051878448575735,-0.019341858103871,0.11041259765625]],[[0.0048908409662545,0.091230288147926,0.036120187491179],[0.0063776955939829,0.026817318052053,-0.038253400474787],[0.025511119514704,-0.0077339694835246,-0.0092733446508646]],[[0.063981331884861,-0.0028792398516089,-0.037451956421137],[-0.048652600497007,0.0049165147356689,-0.065405078232288],[-0.16631828248501,-0.10880036652088,-0.20011375844479]],[[-0.097878366708755,-0.014702736400068,-0.089601337909698],[0.006102308165282,0.17779949307442,0.051775500178337],[-0.067319981753826,-0.017493324354291,-0.037210319191217]],[[0.037441164255142,-0.08348049223423,-0.066048227250576],[0.016014147549868,-0.056728329509497,-0.060188379138708],[-0.098224848508835,0.010781642980874,0.058534942567348]],[[0.062345549464226,0.019581627100706,-0.076924853026867],[0.033940307796001,0.012234166264534,-0.010257741436362],[0.1462240666151,-0.02255623973906,0.020034404471517]],[[0.0039508501067758,0.074241787195206,0.053172044456005],[-0.07469616830349,0.038491163402796,-0.058128360658884],[-0.12933176755905,-0.10080713033676,0.01942934282124]],[[-0.033652432262897,-0.016468401998281,-0.051166009157896],[0.078115351498127,-0.014606815762818,-0.04702439904213],[-0.17973309755325,-0.18098571896553,-0.1415132433176]],[[0.050573833286762,0.029827076941729,0.024734074249864],[-0.034206345677376,-0.052930887788534,-0.024585915729403],[-0.059565141797066,-0.022051177918911,-0.017340894788504]],[[0.13108958303928,-0.071487210690975,-0.018723042681813],[0.029742177575827,0.04069285467267,-0.016157690435648],[0.0066420598886907,-0.01571835950017,-0.0074088629335165]],[[0.025377709418535,0.030374530702829,0.029094500467181],[0.031504482030869,-0.01257230900228,0.047511219978333],[0.11252297461033,0.0053315004333854,0.042914994060993]],[[-0.039578147232533,0.0072348527610302,-0.074229657649994],[-0.086981296539307,-0.0078612780198455,0.030977919697762],[0.065525107085705,0.074250876903534,0.0087114684283733]],[[-0.07275302708149,-0.057528898119926,-0.062156070023775],[0.03125399723649,-0.0088424868881702,0.026458958163857],[0.065374217927456,0.006250255741179,0.016356462612748]],[[0.037367567420006,0.030617540702224,0.041108913719654],[-0.14700511097908,0.074868969619274,0.037654813379049],[-0.011574775911868,0.13845802843571,0.055852368474007]],[[-0.00074715819209814,0.0690848082304,0.035842441022396],[0.018990142270923,-0.046693004667759,-0.062628172338009],[0.014243948273361,0.096371375024319,0.078158996999264]],[[0.057883229106665,-0.024599477648735,-0.086057811975479],[-0.078145690262318,-0.080012537539005,0.061625801026821],[-0.051097758114338,0.010434640571475,0.14754632115364]],[[0.051876585930586,0.0027618720196187,0.1282647550106],[0.039166364818811,-0.0031976287718862,-0.0088046574965119],[-0.018884994089603,-0.049097128212452,-0.057992674410343]],[[0.046243123710155,-0.005145754199475,0.0080450493842363],[-0.033132150769234,-0.11400318145752,0.021266359835863],[-0.00076657469617203,0.025145024061203,0.072054900228977]],[[0.0037314386572689,0.13768132030964,0.03539889678359],[-0.062414854764938,-0.023107688874006,-0.050150163471699],[0.084416553378105,0.075510293245316,0.015521511435509]],[[-0.02812978439033,0.078403726220131,-0.10999700427055],[-0.05577527731657,0.0017814523307607,0.12895961105824],[-0.084163524210453,-0.17431601881981,-0.076230071485043]],[[-0.057017032057047,-0.072188176214695,-0.043422769755125],[-0.062480993568897,0.041434042155743,-0.068613022565842],[-0.071990571916103,-0.064413845539093,0.050375517457724]],[[-0.029697462916374,0.035958807915449,0.078642018139362],[0.059911634773016,0.017735347151756,-0.047082543373108],[-0.20158821344376,-0.042198557406664,-0.075012631714344]],[[-0.064885564148426,-0.13025429844856,-0.074594557285309],[0.052698578685522,-0.07360901683569,0.077329382300377],[0.10144902765751,0.07649839669466,0.17249482870102]],[[-0.0054499455727637,0.060835868120193,-0.035901304334402],[-0.0057032369077206,0.12802805006504,-0.079570770263672],[0.125972032547,0.060273561626673,0.084042429924011]],[[0.049419797956944,0.042626541107893,0.0071733556687832],[0.036492343991995,0.024872926995158,-0.017092717811465],[-0.00095807603793219,-0.030642641708255,0.049082841724157]],[[-0.026739154011011,-0.08189133554697,-0.012202607467771],[-0.03155830129981,0.031348060816526,-0.096986316144466],[0.0008070410694927,-0.0040585235692561,0.023521471768618]],[[0.019828703254461,0.13593402504921,0.076979860663414],[0.04425909742713,0.022161815315485,0.021715939044952],[-0.096914313733578,-0.018089225515723,-0.026817379519343]],[[-0.0083006536588073,-0.0076121268793941,0.094102993607521],[-0.12590432167053,-0.026855668053031,-0.02077155187726],[-0.084397822618484,-0.021565390750766,-0.062852010130882]],[[0.072673112154007,0.031299855560064,-0.0020027603022754],[-0.032468684017658,0.017860228195786,0.053542148321867],[-0.015346966683865,-0.027771951630712,0.033320516347885]],[[0.038539636880159,0.028465064242482,-0.0056733526289463],[-0.028521649539471,0.0096553107723594,0.13262076675892],[0.058694802224636,-0.024471281096339,-0.081653043627739]],[[0.08266007900238,0.070630811154842,0.043247640132904],[0.00067385262809694,-0.015783714130521,-0.0058622071519494],[-0.10616573691368,-0.059751961380243,-0.14578387141228]],[[0.10819931328297,0.15024235844612,0.13872514665127],[0.074045404791832,-0.087657958269119,0.015093041583896],[0.17279905080795,0.088893204927444,-0.010486935265362]],[[0.039085894823074,0.0071965302340686,0.00065625377465039],[0.0043218196369708,-0.054057754576206,3.4695651265793e-05],[-0.013284713961184,-0.082403421401978,0.0030100005678833]],[[0.1116014495492,0.033198729157448,-0.10229343175888],[-0.093797259032726,-0.047725025564432,-0.029773898422718],[0.062971666455269,0.025130838155746,-0.020233510062099]],[[-0.019689561799169,0.050348829478025,-0.13760973513126],[0.055676095187664,-0.028512079268694,0.10874297469854],[0.060471974313259,0.055212929844856,-0.058028694242239]],[[0.025893487036228,0.016878709197044,-0.094834506511688],[0.053968384861946,0.048588678240776,0.025028489530087],[0.11324679851532,0.074883878231049,-0.028714055195451]],[[0.038007408380508,-0.12804426252842,-0.12744747102261],[0.00011776410974562,-0.087486319243908,-0.12899830937386],[0.0010714855743572,0.067940577864647,0.05885162577033]],[[-0.1267018020153,-0.020052177831531,0.06162104383111],[-0.050662402063608,-0.054812803864479,-0.0072051868773997],[-0.056391019374132,0.081914074718952,0.012691156007349]],[[0.16419115662575,0.063445687294006,0.044587299227715],[0.031319957226515,0.096494033932686,-0.0091479336842895],[-0.0049524838104844,-0.018815206363797,-0.045277159661055]],[[0.016149368137121,0.059431418776512,0.011000475846231],[0.11331217736006,0.0041096382774413,-0.032441824674606],[-0.079209320247173,0.011863592080772,0.0033181093167514]],[[0.049811918288469,0.022674912586808,-0.027317201718688],[0.072822123765945,0.067195743322372,0.14735969901085],[0.15524497628212,0.039375238120556,-0.029013931751251]],[[0.10947803407907,0.084980495274067,-0.039219617843628],[0.018122237175703,-0.10522583127022,-0.0064335488714278],[0.13644751906395,0.055526897311211,0.12281145900488]],[[0.014068409800529,-0.041665483266115,-0.017324632033706],[-0.0051686335355043,0.090265952050686,0.078866794705391],[0.0064910207875073,-0.077005192637444,0.071974724531174]],[[0.010084861889482,0.084213390946388,-0.047704521566629],[-0.0083548966795206,-0.011266759596765,-0.014706498011947],[-0.10577313601971,-0.06457407772541,-0.10560655593872]],[[0.089614853262901,0.059618722647429,-0.036172494292259],[0.0044071548618376,0.018876951187849,0.10243921726942],[-0.11281435191631,-0.050754681229591,-0.24821841716766]],[[0.019347479566932,-0.011836227029562,-0.041081618517637],[0.038249868899584,0.10685192793608,-0.029034046456218],[0.094306007027626,0.057140816003084,0.065915435552597]],[[-0.018246790394187,0.11360117048025,0.074334561824799],[0.15298897027969,-0.018396669998765,-0.12787948548794],[0.056416656821966,0.085471004247665,0.030624940991402]],[[-0.15974466502666,-0.075197264552116,0.0037494669668376],[-0.11266849935055,-0.045070383697748,-0.13498209416866],[-0.032373137772083,0.032379418611526,0.0085577620193362]],[[0.074078634381294,0.056538358330727,0.046161711215973],[-0.013486635871232,0.026100412011147,-0.033400688320398],[0.13698950409889,-0.086137309670448,-0.026216264814138]],[[-0.1145161613822,0.048038214445114,0.092158064246178],[-0.088404521346092,0.017722193151712,-0.093304552137852],[0.05335159227252,0.073825716972351,0.05538547411561]],[[0.01707997918129,0.013930214568973,-0.040743239223957],[0.0082318652421236,0.073494173586369,0.017915239557624],[-0.024463081732392,0.0050754519179463,0.0049965851940215]]],[[[-0.065103970468044,-0.10232312977314,-0.00018651191203389],[0.10359189659357,0.18617706000805,0.042667500674725],[-0.05276058241725,0.0023508993908763,0.045188296586275]],[[-0.12957033514977,0.00059930764837191,0.025619672611356],[-0.037472605705261,-0.010291022248566,0.0078382091596723],[-0.25576767325401,-0.12653270363808,-0.024394422769547]],[[-0.070340156555176,-0.048773802816868,-0.06054438278079],[-0.075431138277054,0.150171905756,-0.030814187601209],[-0.034181777387857,0.016901707276702,-0.014883441850543]],[[0.023921430110931,-0.10026112943888,-0.043208293616772],[-0.028434101492167,-0.0072727045044303,0.030288377776742],[-0.11271047592163,-0.055693704634905,-0.14575965702534]],[[-0.00013262596621644,0.0079753622412682,-0.076286748051643],[-0.011388758197427,-0.019068090245128,-0.041206132620573],[0.057138621807098,-0.10511344671249,-0.026146886870265]],[[-0.098276175558567,-0.017140055075288,-0.0016209937166423],[-0.0016786095220596,0.031694769859314,-0.12850897014141],[0.015218432992697,-0.041641402989626,-0.013139620423317]],[[-0.059461660683155,0.060897391289473,-0.12502799928188],[-0.050067517906427,0.025553446263075,-0.095267280936241],[0.047252256423235,0.069415427744389,-0.055609755218029]],[[-0.27614146471024,-0.038336358964443,0.090267144143581],[-0.019098138436675,0.067514233291149,-0.012628451921046],[0.14867925643921,0.055617228150368,-0.060675859451294]],[[0.046757124364376,-0.026630472391844,0.033078860491514],[0.0082818306982517,0.072865858674049,-0.010760222561657],[-0.057319119572639,0.031937308609486,-0.13706970214844]],[[0.091674573719501,-0.025042785331607,-0.001600690302439],[-0.058170594274998,-0.022374173626304,-0.065259590744972],[0.06432269513607,-0.0049849976785481,-0.06425254046917]],[[-0.1070474088192,-0.13443821668625,-0.039817608892918],[0.04388702660799,-9.6716343250591e-05,0.078634515404701],[0.020963640883565,0.083314619958401,-0.023888373747468]],[[0.061745628714561,0.028673682361841,0.08913392573595],[-0.050568841397762,-0.093391925096512,-0.036348111927509],[-0.03924947232008,0.034394912421703,0.0069161583669484]],[[-0.043660465627909,-0.10612650960684,-0.080067850649357],[0.12002827227116,-0.043064180761576,-0.0091435816138983],[-0.0028470018878579,-0.089230537414551,0.043778691440821]],[[-0.19358666241169,-0.060061655938625,-0.0080327838659286],[0.039946593344212,-0.099544689059258,0.019946470856667],[0.030153738334775,-0.11345632374287,0.029442163184285]],[[-0.087450556457043,-0.049792747944593,-0.065126709640026],[-0.016415823251009,-0.073203727602959,-0.019662346690893],[0.061310738325119,0.047801584005356,0.093375273048878]],[[-0.045673917979002,-0.052437741309404,0.045808143913746],[-0.0083420453593135,0.02653251029551,-0.01820719614625],[-0.03028915822506,0.059380244463682,-0.11528836190701]],[[-0.032172463834286,-0.13731619715691,0.11497806757689],[-0.011511174030602,-0.050493754446507,-0.040602374821901],[0.078568369150162,0.12044663727283,0.0024011726491153]],[[-0.11985345929861,0.044528655707836,-0.19486036896706],[0.079097561538219,-0.033189695328474,0.038225919008255],[-0.0097816307097673,0.011166103184223,-0.029193893074989]],[[-0.028557498008013,-0.035285007208586,-0.057209882885218],[-0.076779760420322,-0.059518590569496,-0.061798837035894],[-0.069127976894379,-0.082848757505417,-0.032609265297651]],[[-0.028962513431907,-0.066244304180145,-0.050159607082605],[-0.0042359391227365,-0.12794457376003,-0.066010288894176],[-0.21588128805161,-0.19839513301849,0.025548608973622]],[[0.0061649628914893,-0.064458690583706,0.0016017467714846],[-0.13853947818279,0.023003052920103,-0.03237796202302],[-0.12511563301086,-0.083090335130692,-0.064201764762402]],[[-0.040263220667839,0.02011283673346,0.00096170481992885],[-0.0317089445889,0.038242887705564,0.0200757663697],[-0.038387231528759,-0.0058848233893514,-0.15047982335091]],[[-0.15287615358829,-0.026795195415616,0.028899868950248],[-0.023015733808279,0.092268794775009,0.0011353821028024],[-0.004220690112561,0.0084864888340235,-0.12522515654564]],[[-0.077091120183468,0.065074637532234,-0.019002292305231],[0.060553211718798,0.1140505746007,-0.062848411500454],[0.093484669923782,0.02354952506721,0.14387030899525]],[[0.053920533508062,0.076200552284718,0.10299852490425],[-0.050008933991194,-0.099131926894188,0.0036012206692249],[0.060157652944326,0.079818226397038,0.10674068331718]],[[0.041993696242571,-0.058088053017855,-0.0021636011078954],[0.0050788926891983,0.00018334112246521,-0.027112750336528],[-0.031622529029846,-0.0063654975965619,0.031394023448229]],[[0.1682361215353,-0.022403253242373,-0.065193094313145],[0.043627802282572,0.038702193647623,-0.086845144629478],[-0.094812288880348,-0.10940353572369,-0.13446451723576]],[[-0.071215100586414,0.13754749298096,0.064528085291386],[-0.052133865654469,-0.028931735083461,-0.07146730273962],[-0.028745094314218,0.032163858413696,0.0015185953816399]],[[-0.09629050642252,-0.051459383219481,-0.11019846796989],[0.074485011398792,-0.12153735011816,-0.068933941423893],[-0.15139642357826,-0.076082721352577,0.032012887299061]],[[0.049572970718145,0.072003841400146,-0.058479554951191],[0.049404192715883,0.011309904977679,0.034767784178257],[0.064285047352314,0.028818612918258,-0.13755013048649]],[[0.06524021923542,-0.031920772045851,-0.010495985858142],[0.030294239521027,-0.044522736221552,-0.037237908691168],[-0.0019582661334425,-0.12319218367338,0.043610315769911]],[[0.026328267529607,-0.064819060266018,-0.034821689128876],[0.00086915056454018,-0.056443408131599,-0.0040560886263847],[0.0098620196804404,-0.086799845099449,-0.038356177508831]],[[0.025929380208254,-0.060498461127281,0.14995586872101],[0.037031192332506,0.060600865632296,-0.077347554266453],[-0.28319171071053,0.16995497047901,-0.11404930055141]],[[0.0094579560682178,-0.024608371779323,0.0026673632673919],[0.036454346030951,-0.12126898020506,0.0015261870576069],[0.011879639700055,0.074674569070339,-0.073928669095039]],[[-0.1200592815876,0.11086820065975,0.0030729924328625],[-0.1463960558176,-0.0035653780214489,0.011885495856404],[-0.037797141820192,0.012688108719885,0.074968717992306]],[[-0.06828285753727,0.063428170979023,0.097332760691643],[0.035340178757906,-0.08761377632618,-0.054784774780273],[0.014633625745773,0.048884186893702,0.03314171731472]],[[0.089431717991829,0.11130679398775,0.0038664792664349],[0.10855828970671,0.040526915341616,-0.0017864441033453],[0.038108721375465,-0.066451720893383,-0.099048368632793]],[[0.027163024991751,0.013415199704468,-0.004953546449542],[0.010712542571127,0.068441808223724,0.077692151069641],[-0.089315742254257,-0.11862990260124,-0.013773852027953]],[[0.060341738164425,-0.097593814134598,0.037599395960569],[0.044007316231728,-0.06900904327631,0.017867328599095],[0.038352888077497,0.035246305167675,-0.062885351479053]],[[0.0042365361005068,-0.052775297313929,0.012751162052155],[-0.068732805550098,-0.20376165211201,-0.034457493573427],[-0.1287337988615,0.049875058233738,-0.0078418897464871]],[[-0.11296443641186,0.092867366969585,0.073655299842358],[-0.070268854498863,0.061404246836901,-0.15188612043858],[-0.18584904074669,-0.12877260148525,-0.075274012982845]],[[-0.11833793669939,-0.068124406039715,-0.0198929104954],[-0.02867441624403,-0.068934105336666,-0.056258257478476],[-0.10495179146528,-0.02686719596386,0.033721156418324]],[[0.14021266996861,-0.063122659921646,-0.13177384436131],[0.049556192010641,0.15620036423206,0.043677251785994],[-0.10323656350374,-0.08722773194313,0.060157030820847]],[[0.086489230394363,-0.093904331326485,-0.21934953331947],[-0.073202766478062,0.1061602383852,-0.039314657449722],[-0.05285831540823,-0.020354242995381,-0.13676276803017]],[[-0.035753961652517,-0.04964466765523,-0.051038943231106],[0.078799694776535,0.095466196537018,0.06829297542572],[-0.020522825419903,0.070264309644699,-0.040134787559509]],[[-0.071816772222519,-0.026070764288306,-0.050199083983898],[0.12654288113117,-0.10087153315544,-0.051730506122112],[-0.12133608013391,0.058682080358267,0.060839377343655]],[[-0.027019109576941,0.033999834209681,-0.029385108500719],[0.11028122156858,-0.030157784000039,-0.064116761088371],[0.011769868433475,-0.010668856091797,0.023851605132222]],[[-0.054297834634781,0.027895899489522,0.024546539410949],[-0.030446976423264,-0.11332799494267,0.0157998111099],[0.018439652398229,0.11934559047222,0.033253371715546]],[[0.10099954903126,0.13565801084042,-0.097642794251442],[-0.11413587629795,-0.012418801896274,-0.020750448107719],[0.040926776826382,0.061129275709391,-0.05231698602438]],[[-0.045394044369459,0.067858040332794,0.01575567945838],[-0.11901796609163,0.00049928127555177,-0.032607637345791],[0.11388754099607,-0.0035509348381311,0.02341715991497]],[[0.0092920241877437,-0.089722521603107,-0.18708539009094],[-0.0052429037168622,-0.022810742259026,-0.077313788235188],[-0.0069195562973619,0.088484294712543,0.065318658947945]],[[-0.095409594476223,0.074506282806396,-0.038904093205929],[-0.051780682057142,-0.055078826844692,-0.00083438237197697],[-0.11548233032227,0.074820205569267,0.041714321821928]],[[0.039512049406767,-0.037588763982058,0.0091983629390597],[0.093158088624477,-0.034390844404697,-0.00066199718276039],[-0.13577152788639,-0.042711861431599,-0.033944454044104]],[[-0.047890886664391,-0.00043983649811707,0.024148399010301],[-0.011514860205352,-0.092554301023483,-0.13242626190186],[0.11206717044115,0.12850977480412,0.082506388425827]],[[-0.027649497613311,-0.15229198336601,0.16798686981201],[0.0090402159839869,-0.047610983252525,0.046973764896393],[-0.038716446608305,-0.10712225735188,0.052801534533501]],[[-0.026431472972035,0.013508182950318,-0.17100149393082],[0.047665975987911,-0.020534709095955,0.064130298793316],[-0.0080752409994602,-0.046541478484869,0.0075307786464691]],[[0.061388421803713,-0.10490016639233,-0.08062206953764],[0.025835253298283,0.055077649652958,-0.11807999759912],[0.010078127495944,-0.0028443036135286,-0.023682242259383]],[[-0.041225638240576,0.017951816320419,-0.00036915604141541],[-0.073943018913269,0.039734419435263,0.024571055546403],[-0.12107988446951,-0.058301892131567,-0.0568045116961]],[[-0.035767551511526,0.0020278787706047,0.024614924564958],[0.030471773818135,0.085396192967892,0.072342149913311],[0.071287199854851,0.15440087020397,0.10052756220102]],[[0.065150111913681,-0.0062815672717988,0.0387062728405],[0.0010541619267315,0.11397230625153,0.062888383865356],[0.028017397969961,0.073018707334995,0.16203302145004]],[[0.045408707112074,-0.041420556604862,0.018197765573859],[-0.0095217106863856,-0.024716176092625,-0.087248973548412],[-0.042912643402815,-0.095080681145191,0.030044559389353]],[[0.086262010037899,0.12392111867666,0.075931958854198],[0.038395114243031,-0.016438541933894,-0.15902134776115],[-0.069857113063335,-0.029593290761113,0.0006693932809867]],[[-0.036735221743584,0.026012003421783,0.0077934707514942],[0.045102257281542,0.099382758140564,-0.081047609448433],[-0.044318430125713,0.03566936776042,-0.036006413400173]],[[0.050590429455042,0.058636926114559,0.077095478773117],[0.04358846321702,0.025063676759601,0.015880377963185],[0.059108924120665,-0.16613028943539,-0.069253519177437]]],[[[0.033774275332689,0.077010527253151,0.13297720253468],[-0.13091084361076,-0.025677446275949,-0.015427811071277],[-0.012393077835441,0.076713606715202,-0.067392230033875]],[[-0.031504843384027,-0.082350477576256,-0.0048448829911649],[0.0086347125470638,-0.12081970274448,0.13431563973427],[0.026951979845762,0.07117372751236,0.079719416797161]],[[-0.08024487644434,-0.0080622062087059,-0.033771570771933],[-0.062218707054853,-0.071058660745621,-0.013450352475047],[-0.11031475663185,-0.020910702645779,0.036771446466446]],[[0.034231632947922,-0.1474848985672,-0.12759894132614],[0.01679639518261,0.013901534490287,-0.0032818489708006],[-0.10188869386911,0.070207968354225,-0.034508686512709]],[[-0.20297783613205,0.018944414332509,-0.15533599257469],[-0.11107656359673,0.050122048705816,0.00019188469741493],[-0.12625151872635,0.011846707202494,-0.036937061697245]],[[0.037890560925007,0.052058514207602,0.062089055776596],[0.020643934607506,-0.035805020481348,0.054877866059542],[0.02248558960855,0.051124781370163,0.014313055202365]],[[0.015207388438284,0.081568337976933,-0.049632050096989],[-0.0091249905526638,-0.038732890039682,0.088197872042656],[-0.0095695210620761,0.0046583288349211,0.08429129421711]],[[0.046379633247852,-0.005323535297066,0.05749324336648],[-0.10091682523489,-0.12429992854595,0.071588806807995],[-0.023837313055992,-0.1020148396492,-0.1515843719244]],[[-0.032538242638111,-0.13559827208519,0.019542390480638],[0.0085927406325936,0.045052014291286,-0.11055379360914],[0.13669337332249,-0.035070601850748,-0.016277754679322]],[[-0.010152084752917,0.033341806381941,-0.060516446828842],[-0.012272601015866,-0.10724995285273,-0.038937043398619],[-0.0031804931350052,0.045378599315882,0.0030407055746764]],[[0.01826098933816,-0.049836225807667,0.15680134296417],[-0.046109192073345,0.05260232463479,-0.068973377346992],[-0.14149478077888,-0.059402711689472,0.0095902429893613]],[[0.031554967164993,0.015464700758457,0.043419659137726],[0.01165390945971,-0.050229039043188,-0.080299556255341],[0.027473216876388,0.0081190736964345,-0.017868975177407]],[[0.053677339106798,0.04907750338316,-0.039341252297163],[-0.012928178533912,-0.014186447486281,0.028197960928082],[-0.0076278252527118,-0.052120100706816,0.13793233036995]],[[-0.071040570735931,-0.073739394545555,0.020684111863375],[-0.055378686636686,-0.015015956014395,-0.00088714383309707],[0.18718183040619,0.027978535741568,-0.02482576854527]],[[-0.12127169966698,0.076577514410019,-0.0052027562633157],[0.0017107209423557,0.013597151264548,-0.039501968771219],[0.0082816770300269,-0.26003682613373,0.029780279844999]],[[-0.080731064081192,-0.017024593427777,-0.044480785727501],[-0.055017936974764,0.031807508319616,0.0016124345129356],[-0.047447349876165,0.089314833283424,0.046291340142488]],[[-0.12267781794071,-0.00054481171537191,0.066521726548672],[0.077695146203041,0.013536348007619,0.060774236917496],[-0.06108833104372,0.029362777248025,-0.16658116877079]],[[0.034320078790188,0.130685120821,0.0058517674915493],[-0.076895043253899,-0.13066777586937,-0.047436069697142],[-0.010820460505784,0.1070394590497,0.15290597081184]],[[-0.048556622117758,0.010854735970497,0.11292322725058],[-0.11483835428953,-0.055440057069063,0.008621022105217],[0.064723484218121,-0.0033977914135903,-0.084780886769295]],[[-0.088210962712765,0.066235460340977,0.056841533631086],[-0.052222438156605,-0.074940405786037,-0.18757297098637],[0.042626619338989,0.15576206147671,0.073048688471317]],[[0.026923350989819,-0.02255910076201,0.015558140352368],[0.016205342486501,0.12966613471508,0.086312040686607],[0.15311367809772,-0.0094681410118937,0.084872998297215]],[[-0.029148150235415,0.004491678904742,-0.0081620821729302],[-0.011348222382367,-0.0076346732676029,-0.014478730037808],[-0.054678242653608,0.028732351958752,-0.013053829781711]],[[0.045952048152685,-0.035722132772207,-0.061333421617746],[-0.055633522570133,0.046906560659409,0.003608665894717],[-0.019046235829592,0.050724655389786,-0.0066255824640393]],[[0.071153074502945,0.082843996584415,0.15967427194118],[-0.05445721372962,-0.023374576121569,-0.048116058111191],[-0.082050308585167,-0.062311168760061,-0.027932206168771]],[[0.076695546507835,0.093737743794918,0.093252301216125],[0.068984985351562,0.075078286230564,0.0020438614301383],[-0.012099652551115,0.02409652993083,0.0218247435987]],[[-0.042050153017044,-0.070665821433067,0.048574540764093],[0.056883905082941,0.0059132929891348,0.081652872264385],[-0.018451226875186,-0.051391661167145,-0.036643858999014]],[[-0.16327910125256,0.096372343599796,-0.037190519273281],[0.17232112586498,0.098472833633423,0.04133078455925],[0.0082635143771768,0.09072057902813,0.1805647611618]],[[-0.0076169343665242,-0.085218116641045,-0.090756490826607],[0.023254610598087,-0.038027420639992,0.067942939698696],[0.029573889449239,-0.077527992427349,0.049215976148844]],[[-4.5788823626935e-05,-0.042537860572338,0.035735681653023],[0.034876730293036,0.06985879689455,-0.01846001110971],[-0.019253998994827,-0.13860197365284,-0.013798943720758]],[[-0.13297827541828,-0.019553855061531,0.081668376922607],[0.0092367753386497,0.020481877028942,-0.027674876153469],[0.034189261496067,-0.11498143523932,0.098176926374435]],[[0.00041732680983841,0.24264673888683,-0.21954551339149],[-0.14203241467476,0.17348039150238,-0.04004530236125],[-0.073026046156883,0.15021528303623,-0.043828383088112]],[[0.10658540576696,0.015843177214265,-0.15594737231731],[-0.023517744615674,0.024353045970201,-0.0056462646462023],[0.0065021240152419,-0.051972605288029,0.041031241416931]],[[-0.055240519344807,-0.062247026711702,0.020396305248141],[-0.025567086413503,0.045058991760015,0.0098596001043916],[0.069756954908371,0.0090286303311586,-0.04186088591814]],[[0.026804082095623,0.039686109870672,0.1098166257143],[0.040707550942898,-0.099635183811188,0.019197391346097],[-0.044317226856947,-0.024422872811556,-0.093863151967525]],[[-0.038688596338034,-0.16852468252182,-0.044478859752417],[-0.088266775012016,0.011180623434484,0.042214203625917],[0.089074291288853,0.11461014300585,0.098144814372063]],[[0.074136719107628,0.16040171682835,0.034083120524883],[0.054118417203426,0.058521848171949,0.02211101166904],[0.0094019016250968,0.010904141701758,-0.055456556379795]],[[0.017299802973866,-0.050337247550488,-0.038869258016348],[0.018790302798152,0.023417184129357,-0.0037138857878745],[0.0065038842149079,0.012167161330581,-0.038812875747681]],[[-0.0013102098600939,0.064736723899841,-0.058079238981009],[0.028774218633771,-0.01410685479641,-0.064274556934834],[-0.048826914280653,-0.077203184366226,0.10142284631729]],[[0.0010133390314877,0.0060710981488228,0.10893487930298],[-0.00025079835904762,-0.020885340869427,0.0032587677706033],[-0.016217045485973,-0.02195779979229,-0.027619283646345]],[[0.033889751881361,-0.016418635845184,0.014744012616575],[0.022913927212358,-0.0032978486269712,0.055160969495773],[-0.066618070006371,-0.028206244111061,-0.055113740265369]],[[-0.007186446338892,-0.0087152533233166,-0.089069202542305],[-0.018690200522542,-0.072534166276455,0.072914503514767],[0.046272587031126,-0.029698353260756,0.037277583032846]],[[0.012636851519346,0.0023052941542119,0.0074691819027066],[0.04402281716466,0.020529929548502,0.12079898267984],[0.016313202679157,0.088520340621471,-0.0026071693282574]],[[0.10402746498585,-0.052542574703693,-0.10877002775669],[0.040251612663269,-0.092668801546097,-0.068429231643677],[0.065041586756706,0.13329766690731,0.083013869822025]],[[0.0084948455914855,-0.047955453395844,-0.015208270400763],[-0.020282730460167,0.12063267081976,0.067790113389492],[0.11182799190283,-0.04285367205739,0.17302179336548]],[[-0.0045365318655968,0.041142016649246,0.065141722559929],[0.071543626487255,0.075179517269135,0.1683287024498],[-0.078094311058521,0.089206837117672,-0.0061262166127563]],[[-0.025809802114964,0.069506779313087,0.1827786564827],[-0.00054962054127827,-0.032504979521036,-0.22082176804543],[0.052905857563019,0.0020991191267967,-0.034423030912876]],[[0.086957648396492,0.065011963248253,0.068620398640633],[0.054407082498074,0.054787784814835,0.1177146807313],[-0.08981391787529,0.024601938202977,0.10772838443518]],[[-0.032428458333015,-0.095747917890549,-0.052675366401672],[0.0275400839746,0.17354781925678,0.068275831639767],[-0.0020841595251113,-0.027384094893932,0.09276344627142]],[[0.064376413822174,-0.032210953533649,0.051789857447147],[0.033126164227724,0.040767978876829,-0.027770908549428],[-0.025941317901015,0.061113826930523,0.082620352506638]],[[0.10327514261007,-0.13871178030968,0.20428617298603],[0.035024620592594,-0.040982540696859,0.029033398255706],[0.14602665603161,0.095547772943974,0.057418204843998]],[[0.064052253961563,-0.0039224373176694,0.13492111861706],[0.066404551267624,-0.076868407428265,-0.10215862095356],[0.029427409172058,0.028134878724813,0.055730823427439]],[[-0.21913857758045,-0.068621166050434,-0.098075322806835],[0.054656468331814,-0.050778981298208,0.072087660431862],[0.1002728715539,0.071501798927784,0.11640793085098]],[[-0.059696037322283,-0.086069531738758,0.033751223236322],[-0.029115092009306,-0.0449308604002,-0.097926340997219],[0.0088594211265445,-0.059155486524105,0.052001167088747]],[[-0.16881096363068,-0.039535988122225,-0.081283807754517],[-0.0018005270976573,-0.030923310667276,-0.050917271524668],[0.092141553759575,0.062001314014196,0.12420061975718]],[[-0.17445881664753,0.0520342849195,0.0073157348670065],[0.076390691101551,-0.064198605716228,0.082193195819855],[0.036309830844402,0.021975485607982,-0.046956039965153]],[[-0.02819787338376,-0.017285602167249,0.076253324747086],[0.011300686746836,0.072164379060268,0.012341641820967],[-0.027817791327834,-0.13006234169006,0.097004152834415]],[[0.013082993216813,-0.074973024427891,0.12228038161993],[0.073739096522331,0.08036507666111,0.07145531475544],[0.0031367426272482,0.03616351261735,-0.058679293841124]],[[-0.077568426728249,-0.065231122076511,0.054568581283092],[0.017190154641867,0.010234744288027,0.043925996869802],[-0.017384961247444,-0.085684686899185,0.056553609669209]],[[0.056269191205502,0.10415246337652,0.18632623553276],[0.0080209486186504,0.092064343392849,-0.034505430608988],[0.065914615988731,0.084053382277489,-0.072473876178265]],[[0.01616488955915,-0.13809807598591,0.02079263702035],[-0.12061525136232,-0.015870364382863,0.016617374494672],[0.12494955211878,-0.081720501184464,0.038362000137568]],[[-0.045173443853855,0.13828355073929,0.049061480909586],[0.013473738916218,-0.0070056822150946,-0.028326680883765],[0.14297971129417,0.045868203043938,0.031931944191456]],[[0.089174211025238,-0.043179873377085,-0.072069078683853],[0.07122465968132,-0.031209744513035,-0.07296983897686],[-0.091322295367718,-0.0073095406405628,-0.1799958050251]],[[-0.083538293838501,0.072117298841476,-0.031289204955101],[-0.066884547472,0.072810411453247,0.024744313210249],[0.094679988920689,0.037732418626547,0.032601702958345]],[[0.031028732657433,-0.07851354777813,-0.16433112323284],[-0.12389562278986,-0.076881393790245,0.089866772294044],[-0.020991904661059,-0.15000650286674,0.026568910107017]]],[[[0.050462529063225,0.043475545942783,-0.10954079777002],[-0.18664209544659,-0.01522941980511,0.037961605936289],[-0.17586243152618,-0.18718753755093,-0.019387511536479]],[[0.1134007871151,0.0025474207941443,0.010488726198673],[0.10500810295343,0.059250228106976,-0.097182102501392],[0.051655165851116,-0.077982135117054,-0.12637139856815]],[[-0.066007226705551,-0.11006036400795,-0.091741427779198],[0.00055373791838065,-0.04733532294631,-0.085384733974934],[-0.0088025750592351,-0.15043577551842,-0.1044067516923]],[[0.059574034065008,0.039928689599037,0.020219009369612],[-0.080496191978455,0.018086666241288,0.027109455317259],[-0.18414781987667,-0.01834692619741,-0.028661549091339]],[[0.055254448205233,-0.02798935957253,-0.033893927931786],[-0.0065254559740424,-0.042849246412516,-0.077824838459492],[0.0027227257378399,0.014920220710337,0.043941155076027]],[[-0.015769133344293,-0.008074302226305,0.0043880366720259],[-0.014246773906052,0.01879995316267,0.033866483718157],[-0.054039474576712,-0.084659278392792,-0.061839032918215]],[[0.021588580682874,-0.040220610797405,-0.04444632679224],[-0.030642291530967,-0.062806949019432,0.097460508346558],[0.042573161423206,0.010277526453137,-0.058965396136045]],[[0.13635544478893,0.030148671939969,0.029133917763829],[-0.1835118830204,-0.015319474972785,-0.19208863377571],[-0.1546835899353,0.0024485373869538,0.16712257266045]],[[0.0017282305052504,0.015828978270292,0.10037170350552],[-0.14907439053059,0.0042152507230639,-0.03712647780776],[-0.14039601385593,0.022580189630389,0.030548484995961]],[[-0.11615864187479,0.093591526150703,0.12322737276554],[0.12338045984507,-0.072391383349895,-0.21126639842987],[-0.018225356936455,-0.062730424106121,0.09583292901516]],[[0.013825408183038,0.041462302207947,-0.018051207065582],[0.034527607262135,0.045492269098759,0.078198246657848],[-0.065848790109158,0.026211641728878,-0.0045969439670444]],[[-0.0062841731123626,-0.037027098238468,-0.014755773358047],[-0.045492481440306,-0.092221349477768,-0.064137198030949],[0.011983003467321,0.082398623228073,-0.0085050705820322]],[[0.0027541033923626,0.033094100654125,0.0020610156934708],[-0.057810664176941,-0.074642173945904,-0.027929503470659],[-0.062163047492504,-0.13288187980652,0.051213644444942]],[[0.094847843050957,0.0087645100429654,-0.034605868160725],[-0.29569882154465,0.011890806257725,0.0098332986235619],[-0.12227611988783,-0.14223636686802,0.0073991236276925]],[[0.031244184821844,-0.032485172152519,-0.094806410372257],[-0.065109752118587,0.082607835531235,-0.038062952458858],[0.15279379487038,-0.045620385557413,-0.051035489886999]],[[0.028302401304245,0.061234086751938,-0.029179390519857],[-0.069708928465843,0.029576683416963,0.05021084100008],[0.1167973652482,0.018113292753696,0.070164553821087]],[[0.00067719770595431,0.091840356588364,0.069286964833736],[0.058849718421698,-0.10719344764948,-0.052013829350471],[0.14754730463028,-0.1105323061347,-0.22569841146469]],[[-0.059317734092474,-0.013698546215892,0.085259355604649],[-0.11070161312819,-0.032419074326754,-0.0048731071874499],[0.19509030878544,0.0018124902853742,0.15205179154873]],[[-0.053630031645298,-0.061265509575605,0.025984140112996],[-0.07475258409977,-0.022029332816601,0.059365883469582],[-0.18116556107998,-0.16476961970329,-0.12775672972202]],[[-0.045430369675159,-0.07236061245203,-0.082310244441032],[-0.0045128031633794,0.024147918447852,-0.018247280269861],[0.027983620762825,-0.13667421042919,0.051215030252934]],[[-0.0212043505162,-0.14198209345341,-0.14780077338219],[0.12275506556034,0.023178856819868,0.016142776235938],[-0.072057031095028,0.069181405007839,0.0033430815674365]],[[0.074473328888416,0.015326690860093,0.021736979484558],[-0.049017574638128,0.0101866889745,-0.0013188008451834],[-0.036774106323719,-0.044359408318996,-0.08714734017849]],[[0.015439691022038,0.054439675062895,-0.040036045014858],[0.076193086802959,-0.057234909385443,-0.14363001286983],[0.1008922085166,-0.058452673256397,-0.10141135007143]],[[0.0012812745990232,0.057807609438896,0.024705499410629],[0.0887595936656,0.22697745263577,-0.054806299507618],[-0.03979492560029,0.019021233543754,0.053959626704454]],[[0.036400008946657,-0.095870949327946,-0.046634368598461],[0.06561665982008,0.049491085112095,0.079532355070114],[-0.0040652235038579,0.04762952029705,0.058788985013962]],[[-0.061934299767017,-0.02979358099401,-0.052370049059391],[0.043045900762081,-0.014205178245902,-0.047455258667469],[0.052238672971725,0.025858804583549,0.04821053519845]],[[-0.029728693887591,-0.036061268299818,-0.13569003343582],[0.030109647661448,-0.003643051488325,-0.032905600965023],[0.0068974010646343,-0.00057970441412181,0.011290855705738]],[[-0.089138142764568,-0.013176549226046,-0.068574786186218],[-0.031526520848274,-0.052750758826733,0.027787389233708],[-0.088058590888977,-0.16573944687843,0.074711307883263]],[[0.019562110304832,-0.044781561940908,-0.10805372148752],[0.014380580745637,-0.065959714353085,0.053787212818861],[0.0022777612321079,-0.055989138782024,-0.036014772951603]],[[-0.1286608427763,0.00040652439929545,-0.14122506976128],[-0.06581623852253,-0.042973555624485,0.13488227128983],[0.065911896526814,-0.0022506599780172,-0.198241725564]],[[0.021259158849716,-0.042909577488899,-0.017636569216847],[-0.11810068041086,0.10192040354013,0.14093358814716],[-0.013710578903556,-0.15701462328434,-0.34675201773643]],[[-0.16781666874886,-0.043904803693295,-0.036574739962816],[-0.011494657956064,-0.029622694477439,0.087291799485683],[0.073921725153923,0.15910083055496,0.099649012088776]],[[0.052013959735632,0.022664463147521,-0.041017465293407],[-0.15354387462139,-0.040197789669037,-0.032728835940361],[0.10056564956903,-0.017538208514452,0.19269073009491]],[[-0.19272999465466,-0.12431484460831,-0.025671890005469],[0.14614394307137,-0.073041968047619,-0.11625906080008],[-0.021727960556746,-0.0021857295650989,-0.15195217728615]],[[-0.050607018172741,-0.052754752337933,0.012569919228554],[0.029758546501398,0.002127640414983,-0.030221857130527],[-0.059811785817146,0.063276223838329,0.033196650445461]],[[-0.11324636638165,0.079930141568184,-0.0060882158577442],[0.13126100599766,0.063039191067219,0.011792823672295],[-0.093277879059315,-0.058220520615578,-0.050533015280962]],[[-0.080999694764614,-0.066090576350689,0.13530458509922],[-0.019416166469455,0.19499662518501,0.024439085274935],[-0.061531350016594,-0.076892219483852,0.03051151894033]],[[0.079484835267067,-0.0048543596640229,-0.028976580128074],[0.076595485210419,-0.053472679108381,-0.020724080502987],[0.095540329813957,0.0072986241430044,-0.146633669734]],[[0.065893821418285,-0.027284298092127,-0.0028463422786444],[0.061109598726034,-0.043207831680775,-0.049151942133904],[0.10365165024996,-0.091079466044903,-0.1540140658617]],[[-0.10294682532549,-0.073261208832264,-0.038520272821188],[0.069710321724415,-0.038982845842838,-0.05957855284214],[-0.024619223549962,0.13439126312733,-0.0043995985761285]],[[0.030001912266016,-0.0063906721770763,0.01481713168323],[0.021026501432061,0.042357567697763,-0.028311168774962],[0.022110568359494,-0.13175697624683,-0.065624438226223]],[[-0.079887486994267,0.020604748278856,-0.097262002527714],[0.0086222505196929,0.056710265576839,0.051884926855564],[0.0083186877891421,-0.090255618095398,0.031434115022421]],[[0.0068505248054862,-0.03738434240222,-0.062270056456327],[-0.048397339880466,0.11157029122114,0.0061686215922236],[-0.0098028397187591,0.013099199160933,0.040270440280437]],[[0.023142838850617,0.080720357596874,-0.086295232176781],[0.055884622037411,-0.010567032732069,0.11731834709644],[0.0045777494087815,-0.10459294915199,0.06178954616189]],[[0.0026708780787885,0.06607761234045,0.065257638692856],[-0.066297151148319,-0.060946501791477,0.024536350741982],[-0.054511860013008,-0.022564647719264,0.0064949244260788]],[[0.090615592896938,0.059178795665503,-0.033248785883188],[-0.16816836595535,0.026427011936903,-0.052745595574379],[0.10942935198545,-0.046695478260517,0.042534455657005]],[[0.076604843139648,-0.0088272467255592,-0.12154663354158],[-0.090163722634315,-0.17960934340954,0.10179559141397],[0.02200218103826,0.055507559329271,0.098697394132614]],[[-0.023049704730511,-0.072104893624783,0.015117307193577],[-0.13847757875919,-0.079121291637421,0.011021461337805],[-0.0079693449661136,0.055453922599554,-0.099387958645821]],[[-0.006659691222012,-0.13201007246971,-0.022249912843108],[-0.10067947953939,0.039231561124325,-0.08649530261755],[-0.06053564697504,-0.1349181085825,-0.0031180439982563]],[[-0.026804637163877,0.0063142068684101,0.14505481719971],[0.012113098986447,-0.046944558620453,-0.14960652589798],[0.095257133245468,-0.035637997090816,0.050165757536888]],[[0.072013400495052,0.03611759096384,0.0024282892700285],[0.062519565224648,0.046478930860758,-0.044285673648119],[-0.079733774065971,0.0080633396282792,-0.033817734569311]],[[-0.057602398097515,-0.014762911014259,0.062068503350019],[0.052798338234425,-0.01637658663094,-0.097869120538235],[0.0019735868554562,0.048123136162758,0.19283230602741]],[[-0.010881588794291,0.058070663362741,-0.16014929115772],[0.073833860456944,0.081125050783157,0.12590005993843],[-0.094402246177197,-0.21866695582867,-0.10075534880161]],[[0.080686450004578,-0.015059281140566,-0.02529757283628],[-0.017087172716856,0.034195192158222,0.031793344765902],[0.18582130968571,0.1057435721159,0.032530635595322]],[[-0.012713049538434,-0.022265966981649,-0.12457028031349],[0.10554338991642,0.10295553505421,-0.043929878622293],[-0.064173117280006,-0.065696328878403,-0.079799674451351]],[[0.07239181548357,-0.037908937782049,-0.077232465147972],[-0.017278488725424,-0.06803984940052,-0.15932001173496],[-0.03642825782299,-0.14904120564461,0.056467931717634]],[[0.10966146737337,-0.11578825861216,-0.02929950132966],[-0.01931762136519,-0.015955239534378,0.04761902987957],[0.03300779312849,0.15121324360371,0.1000364869833]],[[-0.096890956163406,-0.054996434599161,-0.14978265762329],[0.024771753698587,0.090354576706886,0.028680872172117],[0.014109768904746,-0.0094349216669798,-0.0050910557620227]],[[0.011467980220914,0.074111580848694,0.16122189164162],[-0.056800607591867,0.036348663270473,-0.043574307113886],[-0.040751721709967,0.0025803251191974,0.0028150195721537]],[[-0.095986656844616,-0.041587390005589,-0.11605097353458],[-0.091824643313885,0.014015956781805,0.0081361858174205],[0.028240125626326,-0.012366863898933,0.071724571287632]],[[-0.03834642469883,0.038365695625544,-0.030041763558984],[-0.052431777119637,0.085904821753502,-0.016446977853775],[-0.073558673262596,-0.039338480681181,-0.094327606260777]],[[-0.075905412435532,-0.063601985573769,-0.045690752565861],[-0.13046427071095,-0.023371085524559,0.0064159464091063],[0.049441214650869,0.082277916371822,0.071125864982605]],[[0.0016487702960148,0.0060931821353734,0.044943332672119],[0.03157702088356,0.048682145774364,0.0012394797522575],[-0.12315990775824,0.016287220641971,0.012341236695647]],[[-0.049598831683397,-0.082017160952091,-0.044377166777849],[-0.11569670587778,-0.049742419272661,0.029575502499938],[-0.11454647034407,0.0074264104478061,-0.062768504023552]]],[[[-0.063617832958698,-0.01052363589406,-0.027811756357551],[-0.042793266475201,-0.075644314289093,-0.14266459643841],[-0.2969223856926,-0.031404729932547,0.032565895467997]],[[0.052199486643076,0.044711019843817,-0.026838049292564],[0.028800249099731,0.050019308924675,-0.059522438794374],[-0.083833813667297,0.053558327257633,0.04915165156126]],[[-0.0024108153302222,-0.031830631196499,-0.078441716730595],[-0.0243502818048,-0.039131984114647,0.068978279829025],[-0.1139417886734,0.021755529567599,0.093645825982094]],[[-0.041315693408251,-0.064558163285255,0.12880119681358],[0.094174817204475,0.050348024815321,0.04329638928175],[-0.010267243720591,0.083912141621113,0.11593791097403]],[[-0.061747327446938,-0.15616151690483,-0.056087516248226],[0.071984216570854,-0.031505659222603,0.021572666242719],[0.045116100460291,-0.062678799033165,-0.018080573529005]],[[-0.099251814186573,0.026388259604573,0.07262122631073],[0.13614931702614,-0.020284367725253,-0.066099017858505],[-0.14309479296207,-0.11566286534071,-0.025352235883474]],[[0.012126926332712,-0.17103862762451,-0.080626480281353],[-0.11293280869722,0.019473915919662,-0.027584178373218],[0.16569569706917,-0.046272426843643,0.22057442367077]],[[0.10639297217131,-0.061418063938618,0.13868574798107],[-0.046658415347338,0.015693049877882,-0.0060981586575508],[0.095482721924782,-0.035931598395109,0.018986904993653]],[[0.016240222379565,-0.076399385929108,0.14832904934883],[-0.018405852839351,0.079236432909966,-0.048262059688568],[-0.23365104198456,0.00019602820975706,-0.061808452010155]],[[0.0094826072454453,0.035862136632204,0.074322856962681],[0.099405102431774,-0.084592998027802,-0.13883729279041],[0.080272763967514,-0.015043718740344,-0.064213238656521]],[[0.015829937532544,-0.10116918385029,0.0018453059019521],[0.00014361330249812,-0.026818178594112,0.061503801494837],[0.056497279554605,-0.13922214508057,0.025441585108638]],[[-0.06550969183445,-0.031907390803099,0.016936104744673],[0.011260624043643,0.093630425632,0.0037728054448962],[0.043432094156742,-0.04364961758256,-0.080794647336006]],[[0.045657936483622,-0.075992397964001,-0.24230125546455],[0.030598437413573,-0.020795280113816,-0.0086499005556107],[-0.16799603402615,-0.011684034951031,-0.085237063467503]],[[-0.02237631008029,0.0183683950454,-0.065493941307068],[0.24470327794552,0.042109910398722,0.049018681049347],[-0.041593916714191,-0.023929553106427,-0.17726723849773]],[[-0.033010885119438,-0.043734882026911,-0.060924854129553],[-0.015479759313166,0.085828423500061,-0.0055707679130137],[-0.11337994039059,-0.045923974364996,0.066712781786919]],[[0.096469156444073,0.0012343090493232,0.019526803866029],[0.057379629462957,-0.05150368064642,-0.078852072358131],[-0.0071294433437288,0.080711930990219,0.048164464533329]],[[-0.085680820047855,-0.030825840309262,0.036950636655092],[-0.019583890214562,-0.15670989453793,-0.05577889084816],[0.10643041878939,-0.077612608671188,-0.07840695977211]],[[0.024187434464693,0.10182123631239,-0.048566292971373],[-0.050653751939535,-0.017396625131369,-0.0086869541555643],[0.050653107464314,0.08525712788105,-0.0038913544267416]],[[-0.071704126894474,-0.071087181568146,-0.021314959973097],[-0.036654178053141,-0.047476548701525,-0.068532295525074],[-0.015502039343119,-0.086506634950638,0.083428382873535]],[[-0.23618577420712,-0.10220076143742,0.084947109222412],[-0.13008680939674,0.010617512278259,0.00065193301998079],[-0.010685750283301,0.020526930689812,0.095789186656475]],[[0.019856438040733,-0.18019425868988,0.08347025513649],[0.069235682487488,0.065503560006618,-0.014374457299709],[-0.27996805310249,-0.21932198107243,-0.080438107252121]],[[-0.036071807146072,-0.01032789144665,-0.0060761505737901],[-0.11066208779812,-0.0049906922504306,-0.043815787881613],[-0.015726175159216,0.04000810533762,-0.035863697528839]],[[-0.05633208528161,-0.0016584252007306,0.03485818579793],[-0.045805800706148,0.0010230805492029,0.014900902286172],[0.031385261565447,-0.098781757056713,-0.10267418622971]],[[-0.0047510173171759,-0.12693095207214,0.061508543789387],[0.11153679341078,-0.15262149274349,0.16465075314045],[0.20877124369144,-0.034158308058977,-0.070847272872925]],[[0.096479550004005,-0.058164801448584,0.10222190618515],[0.20776215195656,-0.040932573378086,0.073018580675125],[0.061979509890079,0.032301899045706,-0.076851665973663]],[[0.029242115095258,-0.03404101356864,-0.052742548286915],[0.038268070667982,0.00929597299546,-0.027235765010118],[0.060418020933867,-0.026196720078588,0.0044931983575225]],[[-0.081165313720703,0.041522186249495,0.032327655702829],[-0.12161663174629,-0.055818751454353,0.098370842635632],[-0.027262987568974,0.1580893099308,0.099017307162285]],[[0.041131474077702,-0.14013442397118,-0.088406383991241],[-0.078015811741352,-0.084057040512562,0.095359645783901],[-0.11412166059017,-0.059937998652458,0.00013603547995444]],[[-0.13652412593365,0.057345453649759,0.020360015332699],[-0.024176692590117,-0.01905438862741,-0.074269078671932],[0.012677633203566,0.12329217046499,0.20056462287903]],[[0.063186533749104,-0.050191309303045,0.072449646890163],[0.011114084161818,-0.081069529056549,0.041266031563282],[-0.22621041536331,0.01871282607317,-0.027912706136703]],[[-0.18011337518692,0.12013909965754,-0.032297130674124],[-0.0089087495580316,-0.058099336922169,0.060025982558727],[-0.15555059909821,-0.066150516271591,0.068604484200478]],[[-0.16853110492229,-0.14600621163845,-0.020313151180744],[0.20313818752766,0.13177374005318,-0.17571166157722],[0.15416152775288,-0.025452269241214,0.11615433543921]],[[-0.0086989309638739,-0.028001928701997,0.069153182208538],[-0.18552777171135,-0.16094620525837,-0.074223406612873],[-0.17108891904354,0.062931522727013,-0.044062882661819]],[[0.042937692254782,0.091873168945312,0.11675374954939],[-0.058360662311316,-0.16149024665356,-0.043138761073351],[-0.26076966524124,-0.16767087578773,-0.040669769048691]],[[-0.03376691415906,-0.048325378447771,0.008593525737524],[0.0017937803640962,0.036135885864496,-0.020350128412247],[0.014660423621535,0.041782520711422,-0.053541179746389]],[[-0.0073325238190591,-0.036995157599449,0.028636792674661],[0.028285542502999,-0.13862444460392,0.024468006566167],[0.092706263065338,0.10966967046261,0.069924019277096]],[[0.0053998758085072,-0.058976177126169,-0.0054790237918496],[0.027519604191184,0.016803000122309,-0.0025818471331149],[0.050873171538115,0.15443679690361,0.091890141367912]],[[0.11002945899963,-0.12673877179623,-0.090535007417202],[0.14096686244011,-0.15037074685097,-0.028077732771635],[0.18098059296608,-0.16709798574448,-0.0483661852777]],[[-0.10625622421503,-0.071313291788101,-0.071350023150444],[0.091999441385269,-0.005821134429425,-0.020313007757068],[-0.12181621789932,-0.041551064699888,0.0024853928480297]],[[-0.004086755681783,-0.049985524266958,-0.13659179210663],[-0.1342559158802,0.059202462434769,0.024422267451882],[-0.070022858679295,0.041731853038073,0.023864982649684]],[[-0.051764246076345,-0.052506528794765,-0.23002684116364],[-0.26079449057579,-0.070262402296066,0.07534097135067],[-0.027579627931118,0.071687512099743,-0.012998945079744]],[[-0.041554257273674,-0.10211100429296,0.094564169645309],[-0.15737134218216,-0.093504644930363,0.060603581368923],[-0.18089771270752,0.012846972793341,-0.0079967929050326]],[[0.16548100113869,0.044886589050293,0.032816112041473],[0.075997553765774,0.024137945845723,0.06994117051363],[-0.11032482236624,-0.073454298079014,-0.10017693787813]],[[-0.059706624597311,0.023563716560602,-0.066004551947117],[0.031985867768526,0.12408126890659,-0.10277769714594],[-0.11544646322727,0.088792860507965,0.11878258734941]],[[0.035481568425894,-0.068755894899368,-0.090871654450893],[0.058676619082689,0.022994011640549,-0.062356024980545],[0.098293147981167,-0.017412684857845,-0.058516342192888]],[[-0.061687730252743,0.047760453075171,-0.081661574542522],[-0.17994569242001,-0.12903715670109,0.026307441294193],[-0.028445720672607,0.095678135752678,0.020377114415169]],[[0.10356570035219,0.074614480137825,0.010706236585975],[0.12893243134022,-0.07911155372858,-0.064274229109287],[0.056524433195591,-0.054711010307074,-0.026883283630013]],[[-0.028338119387627,-0.085820078849792,-0.12521828711033],[-0.062125101685524,-0.18118311464787,-0.024860367178917],[-0.059307668358088,-0.07577707618475,-0.10785236209631]],[[0.0046770386397839,-0.12007354199886,0.015077346935868],[0.034346930682659,0.09619752317667,0.0047830380499363],[0.010319947265089,0.062571838498116,-0.0065059089101851]],[[0.096514441072941,0.20949049293995,0.0035722425673157],[-0.019887745380402,0.061388287693262,-0.10604222863913],[0.16014017164707,-0.079095892608166,-0.042684122920036]],[[0.0017866034759209,0.16288210451603,-0.023230463266373],[0.010543620213866,0.019999638199806,0.066224306821823],[-0.143929079175,-0.010894663631916,0.068546317517757]],[[-0.11846742779016,-0.026182159781456,0.10673693567514],[-0.13614630699158,0.04279850423336,0.037678439170122],[0.017361046746373,0.050224609673023,0.13693210482597]],[[0.16181972622871,0.013830902986228,-0.00028336883406155],[0.022933360189199,0.015961511060596,-0.018895948305726],[-0.080558523535728,-0.09497382491827,-0.20868661999702]],[[0.1759791970253,-0.048296388238668,0.022932978346944],[0.082423724234104,0.08002182841301,0.098537117242813],[0.026659116148949,0.10638054460287,0.05855343490839]],[[0.049997627735138,-0.063192330300808,-0.039260774850845],[0.04227839410305,-0.14790186285973,-0.084732539951801],[-0.17636851966381,0.027640275657177,0.043630752712488]],[[0.043894570320845,-0.051593024283648,-0.076009884476662],[-0.1239667236805,-0.00074413290712982,0.03763111308217],[-0.052270911633968,0.040472276508808,-0.0039863423444331]],[[-0.0018518194556236,0.00051108008483425,-0.022127510979772],[0.0010140697704628,0.011480665765703,-0.059705708175898],[0.017741877585649,0.041434347629547,0.076686002314091]],[[-0.081707678735256,0.079129569232464,0.0057626622729003],[-0.057808082550764,0.1081852093339,-0.01755428314209],[-0.099465094506741,-0.0023976848460734,0.078439921140671]],[[0.11762885004282,0.081471309065819,0.0024191020056605],[0.02483937330544,0.053157959133387,0.19399403035641],[0.027594018727541,0.016912050545216,0.089821614325047]],[[-0.036299418658018,-0.08504980802536,0.072764843702316],[0.11441054940224,-0.1042692810297,0.041133921593428],[0.1477977335453,-0.054034654051065,-0.085965529084206]],[[0.08687599003315,-0.026887139305472,-0.055323451757431],[-0.0096455905586481,-0.012527214363217,0.015552721917629],[-0.094985365867615,0.0060464832931757,-0.085156582295895]],[[0.018015092238784,-0.078339494764805,-0.067787125706673],[-0.0098956059664488,-0.020370004698634,0.047882732003927],[0.051865313202143,0.019625071436167,0.072478912770748]],[[-0.29357236623764,-0.0076842280104756,0.08221847563982],[-0.026999214664102,-0.0087391650304198,0.12634916603565],[-0.060009770095348,0.13775819540024,0.12489990144968]],[[-0.12236014008522,-0.18347217142582,0.044587787240744],[0.040303871035576,-0.02014147117734,0.0058307913132012],[-0.0069955014623702,0.07624714076519,-0.023954689502716]]],[[[0.18012383580208,0.03761974349618,-0.086513921618462],[-0.071291856467724,0.017252869904041,-0.013993973843753],[-0.14566637575626,0.09271302074194,0.0023526763543487]],[[-0.11770821362734,-0.002611021976918,-0.23072305321693],[0.019293487071991,-0.044490158557892,-0.24020779132843],[-0.13303406536579,-0.013846053741872,-0.1963891685009]],[[-0.12758447229862,0.017754565924406,0.054769918322563],[-0.12172476947308,0.029557494446635,-0.087835438549519],[-0.030064266175032,-0.022162998095155,-0.17389209568501]],[[-0.070980161428452,0.06575733423233,-0.013931285589933],[0.066311463713646,0.012192755006254,-0.015946734696627],[-0.066126950085163,-0.2094821035862,0.24675089120865]],[[0.0095922658219934,-0.017325155436993,0.031479436904192],[-0.028452267870307,0.017889622598886,-0.0010011369595304],[-0.044944990426302,-0.07369090616703,0.054011717438698]],[[-0.17173708975315,0.13744425773621,0.056916631758213],[-0.053571183234453,-0.018616154789925,-0.05831253528595],[0.028712455183268,-0.1952241063118,-0.098609998822212]],[[0.075093060731888,0.034951601177454,-0.008372881449759],[0.0088882949203253,-0.021556662395597,-0.06030372902751],[-0.0279322527349,-0.13760817050934,0.076598085463047]],[[-0.029867587611079,-0.056503463536501,0.047510828822851],[-0.053335402160883,0.0053020785562694,-0.012689702212811],[0.013027938082814,0.041554998606443,0.1340166926384]],[[0.087281249463558,0.098535917699337,0.057771179825068],[0.042534116655588,0.034690819680691,0.036304607987404],[-0.08440189063549,-0.20754556357861,-0.024219719693065]],[[-0.0985187292099,0.015963071957231,0.082729391753674],[-0.01727076806128,-0.0096142841503024,0.0029575952794403],[0.098175503313541,0.0044295215047896,0.011302989907563]],[[0.041676972061396,-0.034453224390745,-0.27919140458107],[0.079310923814774,-0.068353623151779,0.081010147929192],[0.016526596620679,0.030011737719178,0.17264169454575]],[[0.10482075810432,0.049159415066242,-0.02714834921062],[-0.076952010393143,0.0016649132594466,0.054135330021381],[-0.037950471043587,-0.016548892483115,-0.13125668466091]],[[-0.032485362142324,-0.040201637893915,-0.013201812282205],[-0.057051476091146,0.11703598499298,0.0066424566321075],[-0.04414514824748,0.048608426004648,0.13489644229412]],[[0.10142761468887,-0.027333565056324,-0.082933992147446],[0.022901143878698,-0.014357883483171,0.037868168205023],[0.0309963747859,0.049112308770418,0.19133186340332]],[[-0.16939060389996,0.081905528903008,-0.10419806092978],[-0.070031061768532,0.017397206276655,0.011468511074781],[-0.024296062067151,0.058396521955729,-0.016367906704545]],[[0.0087341824546456,-0.18918211758137,-0.023904133588076],[-0.11466608941555,0.019832024350762,-0.059656336903572],[-0.13738682866096,0.0992491543293,-0.18561175465584]],[[0.015695735812187,0.19910237193108,-0.018772013485432],[0.057849712669849,0.0035686935298145,0.04700980708003],[-0.025598837062716,-0.15347503125668,-0.024618262425065]],[[0.051009647548199,0.018775306642056,-0.0156892221421],[0.011340523138642,-0.023795677348971,-0.11570101976395],[0.11851540952921,-0.075349569320679,0.058924991637468]],[[0.0090320557355881,-0.10930322110653,-0.021679190918803],[-0.037014275789261,-0.10453535616398,-0.095100581645966],[-0.020011825487018,0.01735726185143,-0.0025209300220013]],[[-0.0049953907728195,0.057345699518919,-0.054213289171457],[-0.13264259696007,0.01051174942404,-0.12811507284641],[-0.14243420958519,0.044512428343296,0.042501222342253]],[[0.19806298613548,0.075896486639977,0.045695293694735],[-0.1198263168335,0.056416321545839,0.026764009147882],[-0.061303526163101,0.11361461877823,-0.04985624179244]],[[-0.039107348769903,0.0087403170764446,-0.10108912736177],[0.035453554242849,0.030729103833437,0.0039761271327734],[-0.035599816590548,-0.044373922049999,-0.066490940749645]],[[-0.046115588396788,-0.081174023449421,-0.13029524683952],[-0.042594648897648,0.0049439943395555,-0.11459319293499],[-0.18443118035793,-0.0072972904890776,0.078847847878933]],[[0.13463428616524,0.096301011741161,-0.047161761671305],[0.10978282243013,0.072067804634571,0.19136662781239],[-0.0812693759799,0.010114790871739,0.17236937582493]],[[-0.0067798509262502,0.022115865722299,-0.01928598061204],[0.038252007216215,0.10355470329523,-0.038141682744026],[0.091906726360321,0.045495714992285,0.12941393256187]],[[-0.037487268447876,-0.0099601000547409,0.033888798207045],[-0.051581963896751,-0.092012979090214,0.022468388080597],[0.055351674556732,-0.005284811835736,0.022038135677576]],[[0.073238536715508,0.061512921005487,0.11567872017622],[-0.12717069685459,0.0029798827599734,0.03774194419384],[-0.012194255366921,-0.032631311565638,-0.10068888962269]],[[-0.060368783771992,-0.085108563303947,-0.070042088627815],[-0.050268843770027,0.078495129942894,-0.042152781039476],[-0.0053653311915696,-0.15754717588425,0.036276061087847]],[[-0.067071676254272,-0.077922292053699,0.028766352683306],[-0.053988441824913,-0.034794915467501,-0.09643629193306],[-0.033274378627539,0.012670368887484,0.038601465523243]],[[0.0066237533465028,-0.12956684827805,0.013511854223907],[-0.046617425978184,-0.010114694014192,-0.0125852227211],[-0.061004385352135,0.10480147600174,-0.051447510719299]],[[-0.03483609110117,0.17736352980137,0.0037414529360831],[0.035708479583263,0.0060971607454121,0.11671359091997],[-0.032489594072104,-0.18047186732292,0.094242267310619]],[[0.14455638825893,0.14621531963348,0.037918720394373],[-0.0052524628117681,0.053759187459946,0.056963078677654],[-0.11944337189198,0.055849619209766,-0.21605540812016]],[[0.035680275410414,0.07684775441885,-0.005068794824183],[-0.014927643351257,0.054551489651203,0.040235660970211],[-0.14444401860237,0.05200095847249,0.058518938720226]],[[0.02818007953465,-0.028599197044969,0.028859682381153],[-0.088336579501629,-0.029256034642458,0.049056597054005],[0.047847390174866,-0.16712741553783,0.043506570160389]],[[0.10349728912115,-0.14211921393871,0.017092136666179],[0.044769149273634,0.022575149312615,-0.13786441087723],[-0.076608553528786,-0.15936583280563,-0.1164663285017]],[[-0.20092302560806,0.20608229935169,-0.074021629989147],[0.068003050982952,-0.00039066604222171,-0.042330492287874],[-0.0046833227388561,0.16277441382408,0.020536858588457]],[[0.060086596757174,-0.0078332144767046,-0.041940912604332],[0.00028076182934456,0.11744217574596,0.017586302012205],[-0.14572682976723,0.044544406235218,0.0055262274108827]],[[-0.074936993420124,-0.20000979304314,-0.042288772761822],[0.0087831411510706,-0.050349052995443,0.007607551291585],[0.0055992994457483,0.087047591805458,0.058756563812494]],[[0.051591217517853,-0.12475035339594,-0.094807773828506],[-0.058296293020248,-0.054021127521992,-0.099473662674427],[0.1550244987011,0.057039801031351,-0.027299666777253]],[[-0.0433652959764,0.0093273585662246,0.049551233649254],[0.026266809552908,0.0060506565496325,-0.0098298061639071],[-0.13817925751209,-0.021286241710186,-0.24620409309864]],[[0.056207429617643,-0.10893799364567,0.081395342946053],[0.034227807074785,0.057339031249285,0.037349708378315],[-0.0022983504459262,0.095444872975349,-0.09665409475565]],[[-0.10568906366825,-0.0006344011053443,-0.0092150866985321],[-0.062933526933193,0.087966538965702,0.028113102540374],[0.017068965360522,-0.057090807706118,0.025797210633755]],[[-0.034046541899443,-0.0132389459759,0.18735675513744],[0.10230556875467,0.0066708796657622,-0.0065735685639083],[0.06332141906023,0.099533461034298,0.10316779464483]],[[0.016025051474571,-0.11322905123234,-0.017992837354541],[-0.10543891787529,-0.02017536200583,-0.016712224110961],[-0.012275388464332,-0.052039511501789,-0.22377216815948]],[[-0.050896558910608,-0.06239015609026,0.0061856103129685],[0.047156289219856,-0.11139062047005,0.053243223577738],[0.056189149618149,-0.02663392573595,-0.05675745382905]],[[-0.010457723401487,-0.052572015672922,0.022859454154968],[-0.0070425225421786,0.0078097013756633,0.066955663263798],[0.050354704260826,0.047125786542892,0.016072347760201]],[[0.046276528388262,-0.063726209104061,-0.16804894804955],[0.054055422544479,-0.071132160723209,0.10391470789909],[0.064316384494305,-0.0078536374494433,-0.1039167791605]],[[-0.031321372836828,0.092278018593788,-0.021542130038142],[-0.0007786427740939,-0.055523276329041,-0.053063325583935],[-0.022159684449434,-0.051368895918131,-0.01328576169908]],[[-0.14945475757122,0.10999462008476,-0.15470488369465],[0.021532388404012,0.040243364870548,-0.025278555229306],[0.20488359034061,-0.063790112733841,-0.081768453121185]],[[-0.032789058983326,0.0043030516244471,-0.067401863634586],[-0.081890232861042,0.092115350067616,-0.091434076428413],[-0.11070389300585,0.069167472422123,-0.0071509839035571]],[[0.13513091206551,-0.037340708076954,0.00060546002350748],[0.075074665248394,-0.01178852841258,0.1092936322093],[0.10440699756145,-0.018747556954622,0.0083266086876392]],[[-0.03282093256712,0.10518896579742,-0.13694016635418],[-0.032022416591644,0.059015579521656,-0.16831921041012],[-0.032152593135834,-0.15613633394241,0.037411108613014]],[[0.034744180738926,0.12448938935995,0.0089865094050765],[0.11206111311913,0.094288870692253,0.058565326035023],[-0.016780491918325,-0.10225459933281,-0.085333697497845]],[[-0.035137448459864,-0.038928359746933,0.13247919082642],[-0.0640649497509,-0.03898611292243,-0.031612165272236],[0.020369276404381,0.16315224766731,0.034186568111181]],[[-0.0063828243874013,0.023674575611949,-0.06569068133831],[0.069053016602993,0.11089958995581,-0.31149816513062],[0.0045361155644059,-0.011421374045312,-0.16951516270638]],[[0.092499755322933,0.0053328494541347,-0.0037526842206717],[-0.023016970604658,-0.073888637125492,0.031384952366352],[0.027554595842957,-0.052040122449398,0.44401720166206]],[[-0.14676135778427,0.055142182856798,0.025791063904762],[-0.023871375247836,0.066444702446461,-8.2389939052518e-05],[-0.10398606210947,0.033981081098318,-0.10270676016808]],[[-0.024220732972026,0.037038575857878,0.037355180829763],[0.075658902525902,-0.0053003616631031,-0.099380873143673],[0.07933958619833,0.069541864097118,-0.25816860795021]],[[0.0040816348046064,0.13295355439186,-0.068324692547321],[0.03440223261714,0.14452986419201,0.0080478396266699],[0.037595879286528,0.10634945333004,0.064287699759007]],[[-0.20056895911694,-0.082980245351791,-0.012751867063344],[-0.16154563426971,-0.092001937329769,-0.18498654663563],[-0.15017594397068,0.014923276379704,-0.090637192130089]],[[0.043800044804811,-0.034342590719461,0.1094890832901],[0.014167076908052,0.061940208077431,-0.014876935631037],[-0.02563001960516,-0.038622882217169,-0.10172786563635]],[[0.10311046987772,-0.14371374249458,-0.021479446440935],[0.023262586444616,-0.10459692031145,-0.065735094249249],[-0.031790599226952,0.033093050122261,-0.025689590722322]],[[-0.025835046544671,0.020367912948132,0.060119152069092],[-0.01998289488256,-0.011286965571344,-0.023333927616477],[-0.10175701975822,0.20846657454967,-0.025665041059256]],[[0.012838265858591,-0.04893571510911,0.0017776300664991],[0.03205968439579,-0.018742131069303,-0.058091826736927],[-0.029204219579697,-0.050441846251488,0.18541359901428]]],[[[0.11287309229374,-0.059600133448839,4.231636194163e-05],[-0.013936650007963,-0.070492938160896,-0.054791033267975],[0.029114954173565,-0.018050156533718,-0.060257256031036]],[[-0.033272907137871,0.06487188488245,-0.050625953823328],[0.042440198361874,-0.07334328442812,0.083348073065281],[-0.0051934784278274,-0.064342200756073,-0.18751747906208]],[[0.061716862022877,-0.090416863560677,-0.015326243825257],[-0.05404619500041,-0.11426452547312,-0.053619060665369],[-0.10973432660103,-0.21330934762955,-0.072232790291309]],[[0.12778027355671,0.10052290558815,-0.012140895240009],[0.1328451782465,-0.074557088315487,-0.074339978396893],[0.033069938421249,-0.082421362400055,-0.086988009512424]],[[-0.039847560226917,-0.010026845149696,0.075398273766041],[-0.1180112734437,-0.058634072542191,-0.077843599021435],[-0.074080303311348,-0.11593666672707,-0.094519264996052]],[[-0.049363661557436,-0.014051377773285,-0.014728401787579],[-0.070056691765785,-0.0023814816959202,-0.057100735604763],[0.0064920801669359,-0.15702013671398,0.087105445563793]],[[0.096744388341904,-0.067130155861378,-0.082484520971775],[-0.13339655101299,0.012973879463971,0.027303760871291],[-0.032137762755156,0.038323886692524,0.099238194525242]],[[0.081582129001617,-0.046874191612005,0.058177746832371],[-0.060723852366209,0.026693686842918,0.04265858232975],[-0.19302594661713,0.069899290800095,0.19984668493271]],[[-0.12193581461906,-0.13731788098812,0.080042488873005],[-0.029098626226187,-0.13487562537193,-0.11985712498426],[0.20385691523552,-0.0068774395622313,0.076649524271488]],[[0.064005196094513,0.11135361343622,0.075483329594135],[-0.0067452332004905,-0.15588900446892,0.0053116544149816],[-0.099509954452515,-0.30019447207451,0.041940573602915]],[[-0.081402987241745,0.056741934269667,-0.12878057360649],[-0.033356089144945,-0.1166218072176,-0.093930274248123],[-0.14092916250229,0.049651138484478,0.10752192884684]],[[-0.0065918620675802,0.053706746548414,0.20282611250877],[-0.094381049275398,-0.039628442376852,0.038917765021324],[-0.069743022322655,-0.06340229511261,-0.18595243990421]],[[0.068905256688595,0.0042087929323316,0.080286018550396],[0.029617179185152,-0.062586203217506,-0.093628130853176],[-0.14072458446026,-0.024211559444666,0.010040327906609]],[[0.10713423043489,0.12922886013985,-0.041638135910034],[-0.008025131188333,0.10315862298012,0.01834525167942],[0.10113933682442,-0.026244768872857,0.047464486211538]],[[0.037107191979885,0.014371725730598,0.05368747189641],[-0.0010550698498264,-0.0055465330369771,0.046472799032927],[-0.076172843575478,0.070935875177383,-0.097424119710922]],[[-0.035653494298458,-0.17168936133385,-0.076034627854824],[0.054250486195087,0.092290081083775,-0.15412446856499],[0.065019346773624,-0.19623224437237,-0.17903044819832]],[[-0.048633564263582,0.081236079335213,-0.07211896777153],[0.01336881890893,-0.0069217388518155,0.085063248872757],[0.14262738823891,-0.067896090447903,0.026548855006695]],[[-0.20872089266777,-0.074758149683475,0.042393483221531],[0.078009411692619,0.09357438236475,-0.087383218109608],[0.095876798033714,0.033566374331713,0.027484107762575]],[[0.0020463962573558,0.0037077066954225,-0.14905549585819],[-0.090138576924801,0.059585548937321,-0.036003686487675],[-0.22003810107708,0.055534206330776,-0.061773046851158]],[[-0.090189553797245,-0.094672493636608,-0.027199108153582],[-0.053638532757759,-0.026799064129591,-0.038247335702181],[-0.05783985555172,-0.0014018394285813,-0.068470612168312]],[[0.029745448380709,-0.012372696772218,-0.04707308486104],[0.012878099456429,-0.032332617789507,-0.011381163261831],[0.16917817294598,0.019063338637352,0.052052315324545]],[[0.081275075674057,0.028676688671112,-0.04289248213172],[-0.094173058867455,-0.063953168690205,-0.019942659884691],[0.024019598960876,-0.058387320488691,-0.062634035944939]],[[0.083907224237919,-0.065671436488628,-0.19881625473499],[0.13049204647541,-0.0096048982813954,-0.076948024332523],[0.19867293536663,0.0083122234791517,0.059465125203133]],[[-0.14567521214485,-0.06648550927639,0.14418078958988],[-0.05621850118041,0.15063633024693,0.10650091618299],[-0.11706463992596,-0.070815563201904,0.037843532860279]],[[0.13424676656723,-0.19498288631439,0.10505735874176],[0.1098080649972,-0.045404173433781,0.068317696452141],[-0.010445173829794,0.14541783928871,0.11712709069252]],[[-0.11682718992233,-0.062906220555305,-0.00046453875256702],[0.12082704156637,0.0013916719472036,0.028246812522411],[0.021013312041759,-0.013954762369394,-0.055659163743258]],[[-0.026452438905835,-0.025908982381225,0.16260762512684],[0.0249791033566,-0.052297357469797,0.083374992012978],[-0.057651747018099,0.072912313044071,-0.036351408809423]],[[0.010738056153059,-0.12655027210712,0.02614127099514],[0.032918464392424,-0.093817420303822,-0.086360089480877],[-0.13982942700386,-0.038284201174974,0.01214837282896]],[[0.062542214989662,-0.0019762581214309,-0.042790040373802],[0.015182717703283,-0.022974625229836,0.0071413172408938],[-0.013833454810083,-0.23288530111313,-0.21187004446983]],[[0.031613189727068,-0.072722718119621,0.0034883636981249],[-0.17667125165462,-0.25502237677574,0.052335552871227],[-0.055076766759157,-0.30492228269577,0.2213013023138]],[[0.11883056163788,0.071445412933826,-0.006823549978435],[0.0042331460863352,0.047554884105921,0.19882944226265],[-0.057295870035887,-0.044386480003595,-0.076999239623547]],[[0.029821151867509,0.046564921736717,0.010052896104753],[-0.10317486524582,-0.040418788790703,-0.068881139159203],[0.06738268584013,-0.030618580058217,-0.016248170286417]],[[0.036277484148741,-0.19193106889725,0.080374337732792],[-0.027047684416175,0.02704281359911,-0.032634612172842],[0.13854625821114,0.11038597673178,-0.015947366133332]],[[-0.13953584432602,0.040910515934229,-0.053714454174042],[-0.049101591110229,-0.06269109994173,-0.055139947682619],[0.067191794514656,0.053918544203043,0.039730381220579]],[[-0.16172325611115,-0.084785453975201,0.062626548111439],[-0.24130637943745,-0.026586905121803,0.028653936460614],[-0.18696194887161,0.071592070162296,-0.089515082538128]],[[0.018930803984404,-0.007252424955368,0.075727291405201],[0.13804852962494,0.18475221097469,0.085711814463139],[-0.038811471313238,0.013962765224278,-0.018161941319704]],[[-0.011347164399922,-0.13269858062267,-0.090096794068813],[0.045495238155127,0.05868611112237,0.059573072940111],[-0.060022186487913,0.11328129470348,-0.058387998491526]],[[-0.13148254156113,-0.052344646304846,-0.030347749590874],[-0.084802217781544,-0.069533631205559,-0.047828555107117],[-0.11031244695187,-0.087600573897362,-0.0020157089456916]],[[-0.37338969111443,-0.18174569308758,-0.019809577614069],[0.052644241601229,-0.038053762167692,0.066206760704517],[-0.038196001201868,0.050062838941813,-0.062012542039156]],[[-0.15938925743103,-0.13688650727272,-0.15681992471218],[-0.021905954927206,-0.065742149949074,-0.041658971458673],[0.14845785498619,-0.021319337189198,-0.078782789409161]],[[0.030840443447232,-0.035136628895998,-0.065393388271332],[-0.034490637481213,0.053031053394079,-0.12990427017212],[-0.18146915733814,0.1744384765625,0.015901815146208]],[[-0.067664839327335,-0.044753234833479,-0.0684699639678],[0.15755346417427,0.062299940735102,0.0060029891319573],[0.060619510710239,-0.32369327545166,-0.045538440346718]],[[-0.11025232076645,0.18250532448292,0.0058334241621196],[0.0089205373078585,0.079969227313995,0.094501197338104],[-0.24663160741329,0.10557167232037,-0.14769458770752]],[[-0.0088219223544002,-0.044582165777683,-0.10966710746288],[-0.090562090277672,0.0028488668613136,-0.025805041193962],[-0.074336566030979,0.19729000329971,-0.14263096451759]],[[-0.20122629404068,0.052136350423098,0.098521143198013],[-0.20966467261314,-0.0075078005902469,0.069205783307552],[-0.19573503732681,-0.073163837194443,0.14771120250225]],[[0.031252101063728,0.15091255307198,-0.056846894323826],[-0.16086883842945,0.095950827002525,0.019905380904675],[-0.073817625641823,-0.031941119581461,0.026176398620009]],[[0.34082612395287,-0.17397324740887,0.017916982993484],[0.016287233680487,-0.10256719589233,0.0016124314861372],[0.019591299816966,-0.021028267219663,-0.10724287480116]],[[-0.046114720404148,0.11235810816288,-0.084287755191326],[-0.187814027071,0.060835979878902,-0.0044138273224235],[-0.23895812034607,-0.24576921761036,0.038179133087397]],[[-0.030589625239372,-0.11622466146946,0.19652484357357],[0.03340619802475,-0.15703469514847,0.037248555570841],[-0.13692933320999,-0.21414370834827,-0.010941912420094]],[[-0.07222506403923,0.089349187910557,-0.015940742567182],[-0.10729425400496,0.14793372154236,0.038426596671343],[0.11470410972834,-0.046234112232924,0.071060635149479]],[[0.0015347701264545,0.031535841524601,0.01531276665628],[-0.16240929067135,-0.0064673856832087,0.036102551966906],[-0.24490727484226,-0.017669470980763,0.095262452960014]],[[-0.030754823237658,0.014442268759012,0.17111407220364],[0.037247385829687,0.031210931017995,0.084565460681915],[0.055855374783278,-0.062850385904312,0.06863796710968]],[[-0.074586845934391,-0.12527318298817,0.010147858411074],[0.028462225571275,-0.035256002098322,-0.018545411527157],[0.3848896920681,-0.064312227070332,-0.06024781242013]],[[0.23237299919128,0.09387119114399,0.00028664618730545],[-0.0080844964832067,-0.0055103404447436,0.038945440202951],[0.012789202854037,-0.13744741678238,0.14120456576347]],[[-0.036967106163502,-0.11102473735809,-0.25195810198784],[-0.032808031886816,-0.028790099546313,-0.20353853702545],[-0.042951170355082,-0.034373357892036,-0.2310249209404]],[[-0.012907715514302,0.16183179616928,-0.030569748952985],[-0.085016004741192,0.049003351479769,0.040292870253325],[-0.038798112422228,-0.10979866236448,0.10373102873564]],[[-0.2578492462635,0.19433346390724,-0.0019204375566915],[-0.1281603872776,0.11417929828167,-0.026884557679296],[-0.14371395111084,0.017130015417933,-0.010456146672368]],[[-0.069053746759892,-0.13220335543156,0.012762728147209],[0.079642288386822,0.022058118134737,0.011935695074499],[0.049607504159212,0.065623708069324,-0.066336877644062]],[[0.075064107775688,0.036356780678034,0.070543959736824],[0.022706100717187,0.018637159839272,0.0008058815728873],[0.057728044688702,0.1090961843729,0.11225365847349]],[[0.039995424449444,-0.13875378668308,0.035634055733681],[-0.24652552604675,-0.094386354088783,0.010200539603829],[-0.12581479549408,-0.11154997348785,-0.0049636182375252]],[[-0.070942185819149,-0.048925392329693,-0.1169304177165],[-0.10952986776829,-0.053030587732792,-0.042383745312691],[-0.12213459610939,0.11346350610256,0.13960403203964]],[[-0.13646139204502,0.0054225008934736,-0.047492932528257],[-0.08957427740097,-0.064575187861919,-0.07007685303688],[-0.037627790123224,0.052577514201403,0.12022615224123]],[[0.135852009058,0.10089561343193,-0.07725203037262],[-0.046820431947708,-0.004410573747009,0.19895447790623],[-0.20273521542549,0.036646980792284,0.20270854234695]],[[0.043828014284372,-0.11046680808067,0.10090608149767],[-0.27071645855904,0.0088664656504989,-0.047242440283298],[-0.2133034914732,0.15544059872627,-0.019299808889627]]],[[[0.026958953589201,-0.00038874003803357,0.17943614721298],[0.027884151786566,-0.065357148647308,-0.058764461427927],[0.015336708165705,0.046549562364817,0.090115934610367]],[[-0.13482630252838,-0.014197481796145,-0.070465333759785],[-0.062193777412176,0.085482932627201,0.0029742256738245],[-0.013631616719067,-0.010395934805274,0.043987292796373]],[[-0.0018445980967954,0.053423471748829,0.005651889834553],[0.10108030587435,0.055620145052671,-0.049913980066776],[0.02362366206944,-0.10445047169924,-0.0036982456222177]],[[0.029374327510595,-0.028170080855489,-0.13324035704136],[0.089284628629684,0.040949050337076,0.074670396745205],[0.091852523386478,-0.044542718678713,-0.12088267505169]],[[-0.062214266508818,-0.02707889303565,0.044470470398664],[0.041093081235886,0.0042930082418025,-0.04723372682929],[0.015292818658054,0.015582572668791,-0.034368403255939]],[[-0.028594113886356,-0.016021316871047,-0.015961814671755],[-0.035753794014454,-0.14915288984776,-0.081504598259926],[0.0779148042202,-0.016315445303917,-0.13775199651718]],[[0.0052796886302531,0.14073467254639,-0.0038013253360987],[-0.041511151939631,-0.023662634193897,0.024367146193981],[-0.03300703316927,-0.079170562326908,-0.35115292668343]],[[0.026310978457332,0.092300705611706,-0.033215317875147],[0.052231349050999,0.016940832138062,0.026080282405019],[0.069189570844173,0.018488448113203,0.062563367187977]],[[-0.022034013643861,-0.061433289200068,0.04399748146534],[-0.019270788878202,-0.09941577911377,-0.082566730678082],[0.073000766336918,0.029310276731849,-0.014231297187507]],[[0.017532138153911,-0.0082232439890504,-0.067920513451099],[0.082186616957188,-0.016540134325624,0.12242991477251],[0.15565302968025,-0.065396673977375,-0.0080553228035569]],[[-0.053143084049225,0.250248670578,-0.089083649218082],[0.04589107260108,0.070765003561974,0.075568556785583],[-0.046404518187046,-0.0710658878088,-0.058633632957935]],[[-0.051073659211397,-0.079946652054787,-0.098646610975266],[0.015007455833256,-0.055144246667624,0.019450593739748],[-0.011645033024251,0.10373763740063,0.023488843813539]],[[0.0076146088540554,-0.036543272435665,-0.011735099367797],[0.079985424876213,-0.057059727609158,-0.046060808002949],[-0.023063214495778,-0.10230346024036,-0.067461036145687]],[[-0.1085435077548,-0.053396698087454,0.041518345475197],[0.10568519681692,0.027775153517723,0.22887586057186],[0.0059685711748898,-0.014789714477956,-0.0023691437672824]],[[-0.058374591171741,-0.09696489572525,0.016793506219983],[-0.025644322857261,0.073263227939606,-0.0080234054476023],[0.019335184246302,-0.096225924789906,0.030128134414554]],[[0.06137215718627,-0.053617775440216,-0.091698475182056],[0.1150599271059,-0.023614291101694,-0.0046481126919389],[-0.032472986727953,-0.040059097111225,0.077680602669716]],[[-0.013122295029461,0.013363862410188,-0.034887056797743],[-0.094487212598324,-0.053355220705271,-0.02332073636353],[-0.0061604119837284,-0.1183148175478,-0.2626188993454]],[[-0.038968585431576,0.019101038575172,0.082828730344772],[-0.11311570554972,0.10059367120266,0.1422808021307],[-0.0034524707589298,-0.066202275454998,-0.054034952074289]],[[-0.048335805535316,-0.049071941524744,0.032361656427383],[-0.1828565299511,-0.094245612621307,0.14756812155247],[-0.10559546947479,-0.012112820520997,-0.086486354470253]],[[-0.068302288651466,-0.029715249314904,-0.10327249765396],[-0.032883070409298,-0.11790534853935,-0.125731959939],[-0.021411713212729,-0.11911507695913,0.049540918320417]],[[-0.0050314394757152,0.015018224716187,-0.087506704032421],[-0.014025955460966,-0.075501121580601,0.062708720564842],[-0.034392453730106,0.0014060183893889,-0.03134685754776]],[[-0.039827112108469,0.0031927227973938,-0.0528893917799],[0.020766472443938,0.073119178414345,0.072790414094925],[-0.040370251983404,-0.066460728645325,-0.12813520431519]],[[-0.092725530266762,-0.0020103564020246,-0.013328704051673],[-0.0023918398655951,-0.043875347822905,-0.10112311691046],[0.019884783774614,-0.021339545026422,-0.0011468840530142]],[[0.14234536886215,0.17328810691833,0.1207352206111],[0.13843762874603,0.068324625492096,0.10351123660803],[-0.045473601669073,0.04005816206336,0.1171466037631]],[[-0.027262609452009,-0.03532138466835,-0.057276323437691],[-0.0087486039847136,-0.034179653972387,0.052709367126226],[0.12848663330078,0.012572767212987,0.19143165647984]],[[-0.00078597449464723,-0.021848084405065,-0.048503782600164],[0.030234171077609,-0.046131726354361,0.080916002392769],[-0.048716586083174,-0.021370965987444,0.061437182128429]],[[-0.19866755604744,-0.17814633250237,-0.114820972085],[0.062679067254066,0.019323667511344,0.012725446373224],[0.081376641988754,0.094432279467583,0.1191827505827]],[[-0.043157260864973,-0.0024678099434823,-0.087253086268902],[-0.099490992724895,-0.034656770527363,0.042010206729174],[-0.12483312934637,0.078785948455334,0.039779011160135]],[[0.081948041915894,0.061212059110403,-0.018072625622153],[-0.014346924610436,-0.098503537476063,-0.022450326010585],[0.012477818876505,-0.070258058607578,-0.071955785155296]],[[-0.018562151119113,0.045299351215363,0.092587158083916],[-0.06587116420269,0.042812015861273,-0.068144038319588],[-0.062068026512861,0.035776060074568,0.038770768791437]],[[-0.011807084083557,0.027339683845639,-0.07087767124176],[-0.08653300255537,-0.0090309884399176,-0.084685057401657],[-0.052896708250046,0.042836967855692,-0.027237562462687]],[[-0.015316183678806,0.15243238210678,-0.066086277365685],[0.05011785775423,-0.083852171897888,0.006575376726687],[0.15171487629414,-0.066313691437244,-0.025318469852209]],[[-0.1048489511013,0.11418818682432,-0.14074955880642],[0.040862038731575,0.016879856586456,0.048107217997313],[0.02361710742116,-0.12734337151051,-0.076462537050247]],[[0.045656137168407,0.089946448802948,0.1812592446804],[0.032772652804852,0.064605869352818,-0.10664436221123],[-0.14489676058292,0.053689051419497,-0.090410336852074]],[[0.0069774352014065,0.028750697150826,-0.18088366091251],[-0.080338388681412,-0.15299074351788,0.080209344625473],[-0.015632823109627,0.073786228895187,0.13253705203533]],[[-0.063932038843632,0.050705466419458,-0.0068420702591538],[-0.038084920495749,-0.0038862733636051,0.065317824482918],[0.11305053532124,-0.0033471141941845,0.071526527404785]],[[0.098795928061008,0.13923540711403,0.073731668293476],[-0.0096436226740479,-0.013632766902447,0.074075616896152],[0.036580234766006,0.070056475698948,0.11084344983101]],[[-0.046063259243965,-0.0030122639145702,-0.00012240736396052],[0.057497456669807,-0.027761159464717,-0.1145830899477],[-0.016729269176722,-0.09965205937624,-0.064987286925316]],[[0.013607820495963,-0.0035643805749714,0.046265438199043],[-0.01682179607451,0.0010217968374491,0.0076050637289882],[-0.049224410206079,-0.025989945977926,-0.053452223539352]],[[-0.028955783694983,0.00044866924872622,0.13215884566307],[-0.067314513027668,-0.088373087346554,-0.0066610355861485],[-0.095805644989014,-0.046458594501019,-0.1569901406765]],[[-0.027046125382185,0.01251569762826,-0.18589577078819],[-0.079014822840691,0.024082319810987,0.055459495633841],[-0.0034507696982473,0.01897843927145,0.12037105113268]],[[0.014762917533517,-0.12960906326771,-0.063591033220291],[-0.025399206206203,-0.0086174570024014,-0.11110383272171],[-0.07404862344265,0.027965096756816,0.036616772413254]],[[0.038547772914171,-0.074249252676964,-0.096553541719913],[-0.0091896206140518,-0.031539026647806,0.085524126887321],[-0.080676861107349,0.11126895993948,0.091367766261101]],[[-0.045082293450832,-0.14649632573128,-0.030498454347253],[0.14206200838089,0.045701246708632,0.010805413126945],[0.021431718021631,0.004070658236742,-0.052055034786463]],[[-0.040123969316483,0.048540756106377,-0.0016831428511068],[-0.067236967384815,-0.051521375775337,0.0037998438347131],[0.039443030953407,-0.017459720373154,-0.019385434687138]],[[0.060511361807585,0.03688795119524,-0.11616755276918],[0.009441789239645,0.1311029791832,0.026820734143257],[-0.053854376077652,-0.014996212907135,-0.13186140358448]],[[0.039127036929131,0.091012492775917,0.016753191128373],[-0.050118807703257,-0.094014324247837,-0.065088488161564],[0.05137724429369,0.14183190464973,0.13711449503899]],[[0.10393554717302,0.10065878927708,-0.11875887960196],[-0.096487835049629,-0.07093058526516,-0.016211630776525],[0.058337096124887,0.043047908693552,0.19177117943764]],[[-0.090714700520039,-0.0096018267795444,-0.15656374394894],[0.013842852786183,0.01173223555088,-0.10611292719841],[0.01902536675334,0.045892279595137,-0.0059555042535067]],[[0.002767646452412,0.11669161915779,-0.096781671047211],[0.01100574247539,0.057035569101572,0.032676495611668],[0.04544023796916,0.086412020027637,0.21303042769432]],[[-0.10163088142872,0.046663459390402,-0.071001604199409],[0.071349151432514,-0.0064373794011772,-0.072296373546124],[0.0134964780882,-0.048761144280434,-0.12718737125397]],[[0.12251868098974,-0.01084297336638,0.0034172949381173],[0.13412074744701,0.012448142282665,0.019480718299747],[0.19139328598976,0.082290977239609,-0.014850590378046]],[[0.016622059047222,0.0014887115685269,0.045769307762384],[-0.06424044072628,-0.054816655814648,-0.0050308131612837],[0.17424228787422,-0.049207285046577,-0.0069342125207186]],[[-0.012290584854782,-0.044989470392466,0.095430381596088],[0.018700854852796,-0.0060033607296646,-0.013430805876851],[0.09829918295145,-0.11619694530964,-0.074195832014084]],[[0.021416192874312,-0.055212777107954,0.028966125100851],[-0.042544990777969,-0.053371284157038,0.08505717664957],[-0.028603853657842,-0.0048207878135145,-0.2260610461235]],[[-0.074170790612698,0.034805785864592,0.041703924536705],[-0.047200292348862,0.071579791605473,0.095185704529285],[-0.036518320441246,-0.0614994764328,-0.046517569571733]],[[-0.055378768593073,0.11334114521742,-0.071493059396744],[-0.047577258199453,0.019173102453351,-0.12083189934492],[-0.066083751618862,-0.04754801094532,0.00088363233953714]],[[0.046245045959949,-0.034473329782486,0.043868653476238],[-0.0011885440908372,0.041118167340755,0.032447680830956],[-0.038019027560949,0.013419365510345,0.01825207658112]],[[0.074489764869213,-0.039589766412973,0.024047421291471],[0.08413702249527,0.15562300384045,0.0046011791564524],[0.069444037973881,0.19820632040501,0.048768557608128]],[[0.046636343002319,-0.01675914786756,0.040024019777775],[-0.0098029179498553,0.01979042775929,0.059502895921469],[-0.019616214558482,0.053569905459881,0.014313582330942]],[[-0.016980364918709,-0.078875876963139,-0.053712517023087],[0.05268182605505,-0.056675892323256,0.0050239590927958],[0.03903328999877,-0.053523179143667,0.039835073053837]],[[0.0048698098398745,0.026023617014289,0.052496645599604],[0.0082002207636833,0.060198791325092,0.17602847516537],[0.006096784491092,-0.07792853564024,-0.092097975313663]],[[0.073631748557091,-0.03778487816453,-0.12367730587721],[-0.02907694876194,0.023951528593898,-0.078340083360672],[-0.047427404671907,-0.052040051668882,-0.18720179796219]],[[-0.017550405114889,0.044096939265728,-0.024968594312668],[-0.078327670693398,-0.035561595112085,-0.046339131891727],[0.0071622952818871,-0.039340257644653,0.041089572012424]]],[[[0.0062652556225657,0.039525575935841,-0.044982638210058],[-0.0055906111374497,0.045581769198179,-0.0096607515588403],[-0.11594661325216,-0.045028068125248,-0.12267509102821]],[[-0.082423411309719,-0.1162903085351,-0.0019551774021238],[-0.10155656188726,-0.0029243528842926,-0.034039448946714],[-0.073583953082561,0.060895714908838,-0.030903957784176]],[[-0.015745365992188,-0.040652729570866,-0.034004136919975],[0.098995059728622,-0.010487684048712,-0.018173579126596],[0.13352411985397,-0.044921696186066,-0.061224732547998]],[[-0.059069465845823,-0.025417134165764,-0.12950694561005],[0.056450348347425,-0.0052456576377153,-0.023515351116657],[-0.072119534015656,-0.095966294407845,0.025770734995604]],[[-0.0031015865970403,-0.010615522973239,0.035659223794937],[0.034572552889585,0.0078930351883173,-0.047168619930744],[-0.016064783558249,0.043733157217503,0.061279807239771]],[[-0.0061194729059935,-0.06011525541544,-0.025550153106451],[-0.012855122797191,0.022674418985844,0.021469764411449],[0.022247582674026,-0.027873439714313,-0.002436097478494]],[[0.016537236049771,0.036028042435646,-0.1145334392786],[-0.029674381017685,0.036635134369135,-0.050572969019413],[-0.062364976853132,0.0026832658331841,-0.036362379789352]],[[-0.060071084648371,-0.08134102076292,0.035219632089138],[0.020109072327614,0.014122689142823,0.01097372546792],[0.073552004992962,-0.043607339262962,0.086617857217789]],[[0.13603685796261,0.038148798048496,0.054235547780991],[-0.022424811497331,-0.10107017308474,-0.15578055381775],[-0.0011946894228458,0.029237719252706,0.07786650210619]],[[0.056825261563063,0.10577523708344,0.012540973722935],[-0.14564517140388,-0.029809350147843,-0.027814172208309],[0.052098713815212,0.014098021201789,-0.023700611665845]],[[0.02224519662559,-0.00048620862071402,0.039130724966526],[-0.087533310055733,-0.092987217009068,0.028019523248076],[-0.06250212341547,-0.11413398385048,-0.034457989037037]],[[-0.033969312906265,-0.062601447105408,0.069438599050045],[0.078236103057861,-0.079386048018932,-0.0242830067873],[0.14149308204651,0.057392533868551,-0.01116131618619]],[[0.052923731505871,0.032192599028349,0.051823168992996],[-0.054488185793161,0.0058992342092097,0.039092965424061],[0.014739429578185,0.026806196197867,-0.034945338964462]],[[-0.060498688369989,-0.089444033801556,-0.090105183422565],[-0.0073635713197291,-0.0023519969545305,-0.061530724167824],[0.031042277812958,0.09355117380619,-0.13021098077297]],[[0.036815050989389,0.037368711084127,0.053193371742964],[0.019139630720019,-0.029596192762256,-0.030703332275152],[-0.0015660834033042,-0.025620261207223,0.062428247183561]],[[0.054620750248432,-0.048139996826649,0.094901114702225],[0.040590528398752,0.028905233368278,0.13592836260796],[-0.046006310731173,-0.029488056898117,0.14753991365433]],[[0.11357297748327,0.064653426408768,0.019433796405792],[0.0070656114257872,0.057054977864027,0.03046459518373],[0.011818642728031,0.01549288071692,0.11955013871193]],[[0.10846535861492,0.051179401576519,0.049338422715664],[0.01202277187258,0.0055725546553731,0.10006089508533],[0.075194098055363,-0.081550985574722,-0.042680282145739]],[[0.0063710701651871,0.033762812614441,-0.10566648840904],[-0.049618173390627,-0.082994572818279,-0.054678816348314],[-0.069851040840149,-0.0050995852798223,-0.11910581588745]],[[0.041193958371878,-0.033846288919449,-0.091925367712975],[-0.010265184566379,-0.0031077326275408,0.060612559318542],[0.014375873841345,-0.026275740936399,-0.024688437581062]],[[-0.0046835327520967,0.080732457339764,0.019233567640185],[-0.027488568797708,-0.09704802185297,-0.011085648089647],[-0.010639033280313,0.075813256204128,0.079495780169964]],[[0.0046630618162453,-0.040286410599947,0.028105204924941],[-0.10718186944723,0.06204204633832,0.11933729052544],[-0.081206023693085,0.010548608377576,0.074790261685848]],[[0.042293731123209,-0.0041738180443645,0.033486999571323],[-0.10157412290573,-0.047037985175848,-0.010870524682105],[-0.057163398712873,-0.097478695213795,0.099502898752689]],[[0.03183351457119,0.14099363982677,0.0079774698242545],[0.052925124764442,0.087043218314648,-0.045005716383457],[0.20299164950848,-0.0035034157335758,-0.076963692903519]],[[0.043638069182634,0.062237564474344,-0.053912483155727],[0.10402430593967,-0.094679802656174,0.039148565381765],[-0.08316870033741,-0.10979819297791,-0.031913816928864]],[[-0.0073687830008566,0.0017066114814952,0.09493275731802],[-0.028692465275526,-0.039846051484346,0.06021049618721],[-0.034243199974298,-0.035076789557934,0.030328718945384]],[[0.017570892348886,0.044768765568733,-0.090782918035984],[-0.070383578538895,0.02205746434629,-0.054392572492361],[0.015381447039545,-0.0060552977956831,0.09984777122736]],[[-0.066276110708714,-0.063627891242504,-0.025743963196874],[-0.13636930286884,-0.057799700647593,0.053571548312902],[-0.076629415154457,0.0099916709586978,-0.0081507964059711]],[[-0.092997610569,-0.0051417299546301,0.011868184432387],[0.047340866178274,-0.036974336951971,-0.016398346051574],[-0.028241457417607,0.01727132871747,-0.10715466737747]],[[-0.055824637413025,-0.0417092256248,0.034927390515804],[0.040232852101326,0.03785515576601,0.019764127209783],[-0.029280552640557,-0.12505421042442,0.030856695026159]],[[0.048676121979952,0.091533921658993,0.019121363759041],[0.013666939921677,0.044103268533945,0.042579475790262],[-0.024992670863867,0.073484160006046,-0.031599666923285]],[[0.036349277943373,-0.16082011163235,-0.099014841020107],[-0.015309615060687,2.8928647225257e-05,-0.057271108031273],[-0.051011953502893,-0.017279649153352,0.011773853562772]],[[0.016566589474678,-0.0011932487832382,0.072490662336349],[0.071803502738476,0.015880448743701,-0.03036180511117],[0.014247968792915,-0.078793793916702,-0.039179034531116]],[[0.062865771353245,0.043950535356998,-0.08420205116272],[0.12355538457632,0.053128976374865,0.027004070580006],[-0.0066030463203788,0.076300017535686,0.022048033773899]],[[-0.083478026092052,0.0096206516027451,0.0065627824515104],[0.050966031849384,-0.014397487044334,-0.036585364490747],[0.017901184037328,-0.029543001204729,-0.066166333854198]],[[0.016856050118804,0.043788589537144,0.078506171703339],[0.065960615873337,0.034519020467997,0.075677700340748],[-0.011599346064031,0.0083952574059367,0.053229168057442]],[[-0.071500308811665,-0.088368028402328,0.11186674237251],[0.094866521656513,-0.0031971780117601,-0.021435102447867],[-0.039599470794201,-0.013924304395914,0.0087517965584993]],[[-0.063846960663795,-0.036633551120758,0.08295638859272],[0.080552890896797,-0.0096869040280581,0.041969269514084],[-0.003735336009413,0.027096912264824,0.059142328798771]],[[-0.10243267565966,-0.02575702406466,-0.11400676518679],[-0.14473015069962,0.025676345452666,-0.013558693230152],[-0.032183133065701,0.090208567678928,0.043087717145681]],[[0.04604460299015,-0.026558585464954,-0.02429747954011],[-0.069793410599232,-0.085264727473259,-0.0074043478816748],[-0.08170285820961,0.069692380726337,-0.038279864937067]],[[-0.0043526920489967,-0.077948644757271,-0.025844002142549],[-0.044450279325247,-0.039033900946379,0.013237204402685],[0.051765583455563,0.0010740745346993,-0.024636287242174]],[[-0.00048449996393174,-0.052460454404354,-0.0062202368862927],[0.05992292240262,0.02957565151155,-0.011698910966516],[-0.059222187846899,0.032461654394865,-0.067533977329731]],[[-0.056908283382654,0.028047058731318,-0.011180626228452],[0.019360033795238,-0.018563628196716,-0.015523333102465],[-0.16676902770996,0.004108945839107,-0.010310360230505]],[[0.014032121747732,-0.033643513917923,0.068385370075703],[0.14739535748959,0.03376591578126,0.061084225773811],[0.050117913633585,0.087418951094151,0.072108127176762]],[[0.04220313206315,-0.10828804969788,-0.017008375376463],[0.11988857388496,-0.02799822948873,0.052360355854034],[0.027148745954037,-0.030247619375587,-0.10324101895094]],[[0.10435286164284,0.009243855252862,0.14938823878765],[-0.031370334327221,-0.088138774037361,0.014808808453381],[0.014094762504101,-0.017376573756337,-0.0051926700398326]],[[-0.032103687524796,-0.063127145171165,-0.06092806532979],[-0.12858825922012,0.031759839504957,-0.079689644277096],[-0.10879521816969,-0.037672147154808,0.10222370922565]],[[0.034342251718044,0.066925555467606,0.0016994954785332],[0.083826988935471,0.02793107740581,-0.11849626153708],[0.065907686948776,0.024452647194266,-0.029303634539247]],[[-0.15371365845203,-0.080928936600685,0.040800236165524],[0.019346496090293,-0.011835355311632,0.04745664447546],[-0.0071082501672208,0.020212622359395,-0.1233614012599]],[[0.035813208669424,-0.025690777227283,0.102354131639],[-0.083469055593014,-0.05093777179718,0.035971198230982],[0.042843837291002,-0.10854937136173,-0.089929230511189]],[[0.082142017781734,0.045238919556141,-0.027887009084225],[-0.025056391954422,-0.016412818804383,-0.0048963841982186],[-0.028301870450377,0.019993986934423,-0.040426097810268]],[[0.071547351777554,0.049614358693361,0.021627573296428],[0.14146076142788,0.014634002000093,-0.017595525830984],[-0.043431650847197,0.08262125402689,0.017057409510016]],[[0.016144953668118,-0.066054277122021,-0.026497080922127],[0.015600190497935,0.072482943534851,0.065472804009914],[0.00261638360098,-0.070216827094555,-0.063709698617458]],[[-0.017005937173963,0.025080151855946,-0.015198810957372],[-0.065507873892784,-0.052285078912973,0.019924266263843],[0.11935433000326,-0.10215510427952,-0.016657643020153]],[[0.075104020535946,-0.034584678709507,0.03757431358099],[-0.009578799828887,-0.035744413733482,-0.041461754590273],[-0.098917171359062,0.00019629938469734,0.033722426742315]],[[-0.018145913258195,-0.011606003157794,-0.0012195588788018],[-0.010952998884022,-0.0078647546470165,-0.045866787433624],[-0.0905856564641,-0.048853289335966,-0.14338676631451]],[[-0.013500713743269,0.006744752638042,-0.078187927603722],[-0.052163187414408,-0.068492390215397,-0.039358727633953],[0.059343636035919,0.0047843814827502,-0.16462200880051]],[[-0.14605015516281,-0.01150746550411,0.0201575178653],[0.0021412100177258,-0.032481119036674,0.13244684040546],[0.0071841021999717,0.097129136323929,0.018769942224026]],[[0.047292586416006,-0.044290345162153,0.016523346304893],[-0.013164618983865,-0.074936747550964,0.025706144049764],[-0.020543189719319,-0.10286726057529,-0.084781914949417]],[[-0.09220352768898,-0.04683830961585,-0.13923862576485],[0.096230007708073,0.045342832803726,0.016754437237978],[0.10561746358871,0.054687365889549,0.016924571245909]],[[0.0055458904244006,0.090722218155861,0.045612741261721],[0.053438745439053,-0.17042702436447,0.045037571340799],[-0.010777848772705,0.027307569980621,0.021088838577271]],[[-0.029195114970207,0.03345050662756,0.030255936086178],[-0.12422259896994,-0.020625649020076,0.092426992952824],[-0.080441541969776,0.078490853309631,-0.07905937731266]],[[-0.00070507341297343,-0.014503461308777,0.063845306634903],[0.019652018323541,-0.088888466358185,0.075993672013283],[0.041202705353498,-0.041781287640333,-0.0093626109883189]],[[0.0010797409340739,-0.072557598352432,-0.052308071404696],[0.047096833586693,-0.08280111849308,0.086648486554623],[0.029924126341939,-0.008287169970572,-0.010729008354247]]],[[[0.0071962033398449,0.071388281881809,0.03848685324192],[-0.066175326704979,0.056137960404158,0.11490474641323],[-0.057713627815247,-0.0089753223583102,0.065027393400669]],[[0.015869688242674,0.010985307395458,0.033995788544416],[-0.036120593547821,0.068083934485912,-0.12569697201252],[-0.017601715400815,-0.025214334949851,-0.044630274176598]],[[0.063473001122475,0.024907313287258,-0.098589912056923],[-0.047862760722637,-0.080120824277401,-0.02807698585093],[-0.029278449714184,-0.15617349743843,-0.0042560347355902]],[[-0.070505268871784,0.055994335561991,0.14590626955032],[0.031620401889086,0.0095013296231627,-0.1243414953351],[-0.081090465188026,0.12640783190727,0.08821277320385]],[[0.099037170410156,0.019682936370373,-0.056650426238775],[-0.018098250031471,0.0099465381354094,0.016992660239339],[-0.019056856632233,-0.085149951279163,0.0017040682723746]],[[0.090984359383583,-0.013909991830587,0.0079699261114001],[0.029486030340195,-0.14901964366436,-0.067111305892467],[-0.014005521312356,-0.058094300329685,-0.055144663900137]],[[-0.073815181851387,-0.066500142216682,-0.088929079473019],[0.070019915699959,0.071494400501251,-0.0035249255597591],[0.010890896432102,-0.054235238581896,0.041328549385071]],[[-0.09676194190979,-0.033483047038317,-0.036417242139578],[-0.013170084916055,-0.04216967523098,0.12924234569073],[-0.069862388074398,-0.10652753710747,-0.18378128111362]],[[-0.049993876367807,-0.055417779833078,0.062729485332966],[0.10486602783203,-0.077970683574677,-0.024288229644299],[0.0055656866170466,0.0029900360386819,-0.033499110490084]],[[-0.062153823673725,-0.18079152703285,0.012380973435938],[0.033566150814295,-0.068734541535378,0.10274464637041],[0.077815882861614,0.040066748857498,0.046516507863998]],[[0.02317488193512,0.029268918558955,-0.021932233124971],[-0.11789409071207,-0.07753923535347,-0.018419248983264],[-0.16656276583672,-0.13127034902573,-0.035975851118565]],[[-0.027011021971703,-0.045196663588285,-0.096882030367851],[0.023943910375237,-0.031547520309687,0.045961823314428],[0.0034698941744864,-0.0034313653595746,0.083121463656425]],[[-0.089374728500843,-0.11639180779457,-0.0045231226831675],[0.049133107066154,-0.1687513589859,-0.061179336160421],[0.065666645765305,-0.027589892968535,-0.041088331490755]],[[-0.015451520681381,-0.062082730233669,0.24559332430363],[-0.013154022395611,0.030697531998158,0.076457507908344],[0.10533908754587,0.15314635634422,-0.045950476080179]],[[-0.040647700428963,0.0027964028995484,0.05736917257309],[0.10722327977419,-0.13455221056938,0.068179503083229],[-0.072631753981113,0.0071586174890399,0.043681003153324]],[[-0.019796650856733,-0.064169399440289,-0.047075673937798],[-0.022082276642323,0.078697212040424,0.0097332550212741],[0.065887615084648,-0.12690745294094,0.063697762787342]],[[-0.010309893637896,0.010481853969395,-0.035914346575737],[-0.037757929414511,0.08435121178627,-0.012562462128699],[-0.039249524474144,-0.058490924537182,0.10646522045135]],[[-0.02157193608582,-0.14837771654129,0.070881217718124],[0.034811891615391,-0.066477052867413,-0.12329853326082],[0.030658883973956,-0.017899587750435,0.031689289957285]],[[0.015197817236185,-0.053655993193388,0.055979445576668],[0.029688138514757,-0.06300101429224,-0.055922448635101],[-6.4188163378276e-05,-0.070199258625507,0.087749950587749]],[[-0.015637977048755,-0.0099601428955793,-0.003239618614316],[-0.016188465058804,0.0097671458497643,-0.10582806915045],[-0.053837455809116,-0.0563944876194,0.061689712107182]],[[-0.071513555943966,0.058543633669615,-0.003120174864307],[0.0022274306975305,-0.021531756967306,-0.0026820546481758],[0.08197146654129,0.045498840510845,-0.0345225520432]],[[0.00020699125889223,0.04508538916707,0.050309341400862],[-0.0034049330279231,-0.030934350565076,-0.022526830434799],[0.02689659409225,-0.057127725332975,-0.050578556954861]],[[0.050140157341957,0.050099983811378,-0.074435904622078],[-0.0035753564443439,0.017058979719877,-0.047043282538652],[-0.2007157355547,-0.046551104635,-0.051832985132933]],[[0.12292041629553,0.014355221763253,0.14700856804848],[-0.037140469998121,-0.0093994913622737,0.044487729668617],[0.0031779503915459,0.11623129248619,0.093432009220123]],[[0.061063542962074,-0.11163555830717,-0.080514132976532],[0.026139931753278,0.0227629262954,0.12848821282387],[-0.0014195840340108,0.14843082427979,0.01620289310813]],[[0.061351336538792,-0.07995181530714,-0.035893682390451],[0.0081753898411989,-0.053231339901686,0.016400406137109],[-0.011757299304008,0.058413974940777,0.061248045414686]],[[0.096428513526917,-0.025999177247286,-0.12901341915131],[0.056717988103628,0.047579072415829,0.0061121815815568],[0.031654227524996,0.058616578578949,-0.013497597537935]],[[0.0084257097914815,-0.05317235738039,0.18448704481125],[0.056710463017225,-0.029662664979696,-0.10054945200682],[-0.079436086118221,-0.055743653327227,0.041182417422533]],[[-0.080200292170048,0.0088916467502713,-0.15329627692699],[0.02248178049922,0.033804934471846,0.011498175561428],[-0.03471503034234,0.020219570025802,-0.05336120352149]],[[-0.075419165194035,0.0019358948338777,-0.076290391385555],[-0.073758572340012,0.038172967731953,0.011386998929083],[-0.061561089009047,-0.023716257885098,0.045013297349215]],[[-0.13986659049988,-0.069034621119499,0.033291667699814],[-0.09815689176321,0.088875316083431,0.052365820854902],[-0.14712798595428,0.092143677175045,0.093871422111988]],[[0.028035869821906,-0.043763726949692,-0.017393732443452],[0.054927174001932,0.064059786498547,-0.057962957769632],[0.010613851249218,0.10731724649668,-0.037947561591864]],[[-0.21216443181038,-0.051376640796661,0.018621070310473],[-0.010204889811575,-0.0012648389674723,-0.062920190393925],[-0.061061587184668,0.079994715750217,0.0004208718019072]],[[-0.021010439842939,0.11140344291925,0.034374006092548],[0.080630511045456,-0.0027094960678369,-0.027553005144],[-0.1533018797636,0.078688353300095,-0.046579159796238]],[[-0.031295742839575,0.0072866748087108,0.087145730853081],[-0.083908133208752,-0.04520595818758,0.02813907340169],[0.16026097536087,0.014994760043919,-0.10534962266684]],[[0.024525377899408,0.072160191833973,0.061935875564814],[-0.058545459061861,-0.097794286906719,-0.024720054119825],[0.0074820439331234,-0.041792396456003,-0.044214978814125]],[[0.10393613576889,-0.074003852903843,0.032014220952988],[-0.059698667377234,0.078385606408119,0.077613413333893],[0.06764855235815,-0.0083837667480111,0.077803529798985]],[[0.010779535397887,0.047110326588154,0.0057637766003609],[-0.021593941375613,-0.036541182547808,0.04298510402441],[0.010180012322962,-0.14601364731789,0.0060864300467074]],[[-0.1075431779027,-0.020140102133155,0.049224551767111],[-0.040217839181423,0.05818747729063,0.028721110895276],[-0.072434641420841,-0.0049594221636653,0.030973536893725]],[[-0.10267205536366,0.022879462689161,-0.041318546980619],[0.050250556319952,0.0079907709732652,-0.046669747680426],[0.014820002019405,0.0037980894558132,-0.080477148294449]],[[-0.17135973274708,-0.056881211698055,0.031728267669678],[-0.019168147817254,0.046851467341185,-0.12575204670429],[-0.031152788549662,-0.069368407130241,-0.033248748630285]],[[0.038875132799149,-0.12161253392696,-0.088233269751072],[-0.044297404587269,0.025837853550911,-0.023750504478812],[0.16736570000648,-0.011254000477493,-0.11504942178726]],[[-0.041959173977375,0.048800013959408,0.13201686739922],[-0.063235372304916,-0.034914657473564,0.057544734328985],[0.052064593881369,-0.046085245907307,-0.12973110377789]],[[-0.049409657716751,-0.011727649718523,0.024204012006521],[-0.047929618507624,-0.012013423256576,-0.016594033688307],[0.013506365008652,0.028240701183677,-0.075907312333584]],[[0.0037980370689183,-0.059509061276913,-0.098884515464306],[-0.075967021286488,0.027869682759047,0.072533182799816],[0.05770954862237,-0.12737983465195,-0.10105739533901]],[[-0.01835123077035,-0.14595723152161,0.01208543498069],[0.16127672791481,0.02780544012785,-0.016467897221446],[0.016322929412127,0.067825689911842,-0.054367505013943]],[[0.03122822381556,0.017673743888736,0.064340963959694],[0.021178252995014,-0.11356804519892,-0.13025969266891],[0.04472491145134,-0.040051739662886,0.12698444724083]],[[0.11635675281286,0.089964114129543,0.017468238249421],[0.01740794070065,-0.099371373653412,-0.05327270179987],[-0.10227211564779,-0.02179379761219,0.020893927663565]],[[0.059779949486256,0.006218898575753,0.074516072869301],[0.097717471420765,-0.043133959174156,-0.012579798698425],[-0.043486818671227,-0.091172322630882,0.089473225176334]],[[-0.038589108735323,0.083838313817978,0.084291346371174],[0.0061256098560989,0.1138062030077,-0.068086005747318],[0.040348716080189,0.021728968247771,0.096450991928577]],[[0.088982149958611,-0.039552543312311,-0.0076323742978275],[-0.033124081790447,-0.033774331212044,-0.0071459533646703],[-0.015409343875945,-0.046609088778496,-0.0040094992145896]],[[0.063554175198078,0.12380593270063,0.09022268652916],[-0.053807623684406,-0.019748751074076,0.038275819271803],[0.032955221831799,-0.099414922297001,0.025561079382896]],[[0.081621028482914,-0.0070579778403044,0.098159268498421],[0.048036005347967,0.03273968026042,-0.007593379355967],[0.0060983523726463,-0.0065336446277797,-0.0097498176619411]],[[0.0074241827242076,-0.038858100771904,-0.021853074431419],[0.11771456152201,0.072625242173672,0.065370857715607],[-0.026878150179982,-0.065604642033577,0.0035119117237628]],[[-0.044136445969343,-0.031958360224962,0.022303260862827],[-0.04578609764576,-0.060365837067366,-0.035122126340866],[-0.095185004174709,-0.047683514654636,-0.16610768437386]],[[0.040183439850807,-0.075375743210316,-0.065512038767338],[0.02572875097394,0.04866100102663,0.012690462172031],[-0.024553107097745,0.1363483518362,0.039932187646627]],[[0.0034346228931099,-0.12289727479219,0.027035152539611],[0.036024667322636,0.014265601523221,0.047682166099548],[0.038381464779377,-0.016596993431449,0.051555626094341]],[[0.018527820706367,0.002279790583998,-0.079666294157505],[-0.079216100275517,-0.012734870426357,-0.087969787418842],[-0.012335774488747,-0.017383925616741,0.084731049835682]],[[-0.035466898232698,-0.080622956156731,-0.083003781735897],[-0.0099123558029532,-0.004371480550617,0.027788879349828],[-0.033945344388485,0.086590066552162,0.17247161269188]],[[0.0087983002886176,0.17245005071163,-0.10518445819616],[0.027603432536125,0.1202537715435,-0.04082877933979],[-0.010211280547082,-0.033896867185831,-0.099862784147263]],[[-0.0092359157279134,-0.056648373603821,-0.0013977319467813],[0.089921325445175,0.045970924198627,-0.021160703152418],[0.14398835599422,-0.091962561011314,-0.017010275274515]],[[-0.063646629452705,-0.0082831932231784,-0.072534471750259],[-0.015143814496696,-0.052898362278938,0.064760349690914],[-0.08856312930584,-0.010106597095728,-0.02635682374239]],[[-0.08092500269413,-0.1074315533042,0.062018845230341],[-0.011388358660042,-0.20077911019325,0.061948042362928],[0.00085788534488529,-0.045788373798132,0.043906845152378]],[[0.010674809105694,0.055556803941727,0.019456963986158],[0.092934012413025,-0.072500810027122,0.0048728208057582],[0.017721880227327,-0.0830073133111,0.0026067979633808]]],[[[-0.048662967979908,-0.13258756697178,0.027745265513659],[-0.078363716602325,-0.065381035208702,0.062434263527393],[0.034392736852169,-0.0042920229025185,0.0028069319669157]],[[-0.035712134093046,-0.062494158744812,-0.11464136838913],[0.12011003494263,-0.053058125078678,0.090498901903629],[0.042435102164745,0.032940529286861,0.029990889132023]],[[0.039351355284452,0.16277930140495,0.070770412683487],[0.0011994630331174,-0.11789286881685,-0.1977214962244],[0.028212796896696,0.049537047743797,-0.026812005788088]],[[-0.033559300005436,-0.0027341267559677,0.045420318841934],[-0.066031537950039,0.031092530116439,-0.16627295315266],[0.023503795266151,0.09389366954565,0.033549841493368]],[[0.088756233453751,-0.047759208828211,-0.13377407193184],[-0.11824019253254,-0.010420992039144,-0.035461574792862],[-0.13152162730694,-0.023702673614025,-0.059314277023077]],[[-0.042135704308748,0.024276960641146,0.011823356151581],[0.06815467774868,0.049732200801373,-0.023807752877474],[-0.054474085569382,-0.10215590149164,-0.10719675570726]],[[-0.074449062347412,-0.095347240567207,-0.15594530105591],[0.047341655939817,-0.090098552405834,0.013684941455722],[-0.018990410491824,-0.045303739607334,0.08610774576664]],[[-0.13855804502964,-0.021123530343175,-0.03112973831594],[-0.037108510732651,-0.081316001713276,-0.10169308632612],[-0.070828594267368,-0.066042378544807,-0.12103009223938]],[[-0.086790271103382,0.037620823830366,0.018874207511544],[-0.031000785529613,-0.041509672999382,0.011696426197886],[-0.10992100089788,-0.011011136695743,-0.11326975375414]],[[0.012757344171405,0.055677801370621,-0.021913899108768],[0.035605512559414,0.041741214692593,0.017482014372945],[-0.018923230469227,-0.0007601241231896,0.036714673042297]],[[0.034362085163593,0.091620668768883,-0.082407042384148],[-0.068620890378952,0.030572794377804,-0.095062702894211],[0.016736468300223,0.063657365739346,-0.0094375880435109]],[[0.0031224607955664,-0.12261299043894,-0.006765129044652],[0.046381503343582,0.076660595834255,0.020894100889564],[-0.023682612925768,0.013450589030981,-0.003207951085642]],[[0.069961704313755,-0.091182045638561,-0.057381607592106],[-0.035620205104351,0.110674880445,-0.12054562568665],[0.040399089455605,-0.014917209744453,-0.10207875818014]],[[0.010570880025625,-0.07703173160553,-0.0050693331286311],[-0.088964022696018,-0.041093472391367,0.071840487420559],[-0.043553244322538,-0.041688866913319,-0.060776330530643]],[[0.026289232075214,-0.12010972946882,-0.037010535597801],[0.029716802760959,0.044375088065863,-0.078175410628319],[0.022227929905057,0.10091250389814,-0.067898206412792]],[[-0.041081167757511,-0.11634109169245,0.17645424604416],[0.10814405232668,-0.034630637615919,-0.11570237576962],[-0.0051396433264017,-0.039685562252998,0.020199665799737]],[[-0.054064251482487,-0.0039922683499753,-0.082980163395405],[0.031341746449471,0.07059945166111,0.11605489253998],[-0.074471950531006,0.012223063968122,0.026455758139491]],[[-0.092814832925797,-0.049853760749102,0.024528119713068],[-0.014849093742669,-0.075694881379604,0.083603501319885],[-0.048485543578863,-0.1145049482584,0.1167705655098]],[[0.0032676048576832,-0.047241311520338,-0.077374570071697],[-0.093251593410969,0.043583828955889,-0.029703922569752],[0.09000576287508,-0.094084300100803,-0.047420717775822]],[[0.0086307171732187,0.072859086096287,0.00079323945101351],[0.029170596972108,0.052004493772984,-0.11178332567215],[0.030353248119354,-0.086714535951614,-0.0096017457544804]],[[0.041243314743042,0.10223405063152,0.043952696025372],[0.043415788561106,0.025398099794984,0.073549889028072],[-0.0037619189824909,0.10324291139841,-0.0091709811240435]],[[-0.083504699170589,0.066706642508507,-0.024969544261694],[-0.074502259492874,0.030977243557572,0.031959891319275],[-0.022089347243309,0.0056768972426653,0.0071294088847935]],[[0.035015475004911,-0.0020131326746196,-0.037654262036085],[-0.11020518094301,0.076895698904991,-0.11312721669674],[-0.10002038627863,0.077469661831856,0.056153301149607]],[[-0.010538193397224,0.055950026959181,0.155063778162],[-0.056843716651201,0.093444459140301,0.1070164218545],[0.0070628030225635,-0.065693616867065,-0.040058519691229]],[[-0.024316556751728,0.042882688343525,0.24068367481232],[-0.020497042685747,0.082364104688168,0.090014219284058],[-0.071450904011726,0.018868640065193,0.074444219470024]],[[0.047251425683498,-0.093056999146938,-0.06862510740757],[0.090879179537296,-0.04835694283247,-0.013163799419999],[0.071965016424656,0.05486860871315,-0.04759880900383]],[[0.056816343218088,-0.073973216116428,-0.14459903538227],[0.025611976161599,0.04847539588809,0.055616747587919],[-0.019831212237477,-0.13761827349663,-0.099586501717567]],[[0.068070970475674,-0.14496323466301,0.021141335368156],[-0.11548850685358,-0.078050822019577,0.028045363724232],[0.016860971227288,0.0090506887063384,0.04059237614274]],[[0.06086204200983,0.074007041752338,-0.046422246843576],[0.062731847167015,-0.034641765058041,-0.13645794987679],[0.023451764136553,-0.027572074905038,-0.041935380548239]],[[-0.10076929628849,-0.12981091439724,-0.01688733510673],[0.10731206089258,0.068764545023441,-0.081138446927071],[0.068880334496498,-0.02821471914649,0.098668172955513]],[[-0.037984199821949,0.14497154951096,-0.083783656358719],[0.018207266926765,0.029729411005974,-0.078396126627922],[-0.042602192610502,-0.13234980404377,0.064131766557693]],[[-0.063604094088078,0.0010034601436928,-0.17531590163708],[0.033575359731913,0.084235407412052,-0.059505168348551],[-0.016803078353405,-0.058209490031004,-0.04144212603569]],[[0.12224815785885,-0.080508932471275,0.17012171447277],[-0.079940102994442,0.020801385864615,-0.027584530413151],[0.13052746653557,-0.017651783302426,0.13530820608139]],[[0.1790410131216,-0.032094322144985,-0.021752864122391],[-0.016276365146041,0.020167639479041,0.0031571215949953],[0.10492376238108,0.033337358385324,0.077254250645638]],[[-0.10983322560787,-0.014453772455454,0.01799794472754],[-0.12279150635004,0.054821237921715,0.0054320306517184],[0.034997303038836,-0.079373300075531,-0.032659638673067]],[[0.11935333162546,-0.0010929461568594,-0.065964348614216],[0.11323476582766,0.11393918842077,-0.010662872344255],[0.067687764763832,0.092558123171329,0.10603304207325]],[[0.095073275268078,0.072276033461094,-0.0093330573290586],[-0.019778633490205,0.022714568302035,0.059557463973761],[0.097767166793346,0.10307351499796,-0.059281602501869]],[[-0.0032283465843648,-0.034423064440489,-0.1297225356102],[-0.071275845170021,-0.0058542457409203,-0.12445043027401],[-0.066992662847042,0.023679200559855,0.006349871866405]],[[0.066717766225338,-0.069975972175598,-0.045861963182688],[-0.012825513258576,0.014395738020539,-0.074215620756149],[-0.06137390434742,0.064096890389919,-0.00090023659868166]],[[0.030862405896187,0.081711433827877,-0.10369491577148],[0.029848255217075,0.0072696399874985,0.0092674903571606],[0.048114195466042,-0.046266280114651,-0.013774776831269]],[[0.025598835200071,-0.058243468403816,0.010893927887082],[4.2776140617207e-05,-0.11248941719532,0.2145521491766],[-0.0941047295928,-0.043444689363241,0.063505031168461]],[[-0.02794922888279,0.024266377091408,0.077400274574757],[-0.038555234670639,-0.097297765314579,-0.015363332815468],[0.086077801883221,-0.097858376801014,0.061188962310553]],[[0.00095493328990415,0.14720465242863,-4.4397893361747e-07],[0.16132985055447,-0.053554940968752,-0.085154347121716],[0.062966175377369,-0.05332213640213,-0.055285066366196]],[[0.050834655761719,-0.090107388794422,0.10059340298176],[0.13662450015545,-0.11181996017694,-0.081644393503666],[0.0110730715096,-0.09375312179327,0.054842751473188]],[[0.050432994961739,-0.13044755160809,-0.055294021964073],[-0.16393496096134,0.03759066388011,-0.10720206797123],[0.08196198195219,0.059628050774336,-0.027322815731168]],[[-0.03506788611412,-0.10586521029472,0.028990929946303],[0.12970416247845,-0.01798283867538,-0.093622453510761],[0.017461728304625,0.13111451268196,-0.07952955365181]],[[0.048065517097712,-0.10022822767496,-0.076416507363319],[0.13888472318649,-0.053583543747663,0.067474119365215],[-0.0077023431658745,0.12243092805147,-0.067719511687756]],[[0.14425909519196,-0.097959190607071,-0.17542511224747],[0.024285864084959,-0.011762393638492,-0.066983617842197],[-0.064473114907742,0.10366556793451,0.080447532236576]],[[0.083779901266098,0.0050303726457059,-0.12680374085903],[-0.036285657435656,0.09503211081028,-0.079512469470501],[0.0018701803637668,0.052183013409376,0.092475727200508]],[[-0.050720889121294,-0.048285603523254,-0.0038623486179858],[0.010320918634534,0.12194232642651,-0.0045013120397925],[0.011021007783711,0.020308962091804,-0.18825522065163]],[[0.070129327476025,0.051945969462395,-0.02356724627316],[-0.084541656076908,-0.14002507925034,-0.11398290097713],[0.14109854400158,-0.046568118035793,-0.037921421229839]],[[0.060371428728104,0.22538551688194,0.13081440329552],[0.04403218999505,0.017688943073153,0.010806180536747],[-0.05921958014369,-0.18399113416672,0.073885403573513]],[[0.048516105860472,0.10658050328493,-0.0041317981667817],[0.060890566557646,0.017571294680238,-0.10615852475166],[0.012961516156793,-0.027131220325828,0.080543272197247]],[[0.016883032396436,0.16248540580273,0.11528202146292],[0.057591032236814,0.016423352062702,0.089540436863899],[-0.12484574317932,-0.030967216938734,0.03581877425313]],[[-0.064993813633919,-0.080074995756149,0.094488508999348],[-0.0082950368523598,-0.11703164130449,0.10884535312653],[-0.072135016322136,0.0070580770261586,0.030319813638926]],[[-0.15104891359806,-0.017745267599821,0.066355459392071],[0.026962859556079,-0.026417136192322,-0.022538816556334],[-0.00047666905447841,0.055084519088268,-0.037540342658758]],[[0.018100321292877,0.1140012294054,0.058202102780342],[-0.066242158412933,-0.0070583978667855,0.0072011966258287],[0.052495945245028,0.048682998865843,0.035304304212332]],[[-0.054665628820658,0.026452321559191,-0.03586145862937],[0.014343827962875,0.012389026582241,0.048550963401794],[0.0034143975935876,0.048212397843599,0.075043715536594]],[[-0.019445681944489,0.1443195194006,0.021852057427168],[-0.016672128811479,0.038547825068235,0.044548362493515],[-0.0033691979479045,0.026779033243656,-0.055295903235674]],[[-0.02639271505177,0.010624930262566,0.017620999366045],[0.11871639639139,-0.054216399788857,0.095203652977943],[-0.17423357069492,-0.035384904593229,0.0037910975515842]],[[0.03553332388401,0.014559936709702,0.0047260131686926],[0.027326643466949,0.070990264415741,-0.14837674796581],[0.0015304732369259,-0.054320517927408,0.011935222893953]],[[0.011972271837294,-0.01606110483408,-0.054746143519878],[0.089109465479851,0.087388940155506,0.027181910350919],[-0.011955760419369,0.069596365094185,-0.11310168355703]],[[-0.05164460465312,0.17790758609772,0.031676195561886],[0.028975270688534,0.023222137242556,0.062032520771027],[-0.073195338249207,-0.078863494098186,0.076804101467133]],[[-0.0033399760723114,-0.077350743114948,-0.046033173799515],[-0.16164641082287,-0.049249213188887,0.032338213175535],[-0.17321652173996,-0.023915117606521,-0.091188848018646]]],[[[-0.018924189731479,-0.032687868922949,-0.14990781247616],[-0.008513574488461,0.040563698858023,-0.029470710083842],[0.011112619191408,0.02166367508471,0.012485158629715]],[[-0.031435091048479,-0.039691884070635,0.10329908877611],[-0.044994052499533,0.033759795129299,-0.028733506798744],[0.042867697775364,0.045228634029627,0.085550807416439]],[[0.016452383249998,-0.025517821311951,-0.076810136437416],[0.024107895791531,-0.1269538551569,-0.055317129939795],[0.026323741301894,-0.14023134112358,0.039209738373756]],[[0.11176536232233,0.046021949499846,0.064164221286774],[0.025488615036011,-0.050077341496944,-0.036203172057867],[-0.042591255158186,0.043937142938375,-0.090720169246197]],[[-0.016811655834317,-0.046206269413233,0.021600538864732],[-0.012716628611088,-0.043035790324211,0.033122695982456],[0.023236624896526,-0.11958886682987,0.041908919811249]],[[-0.0529949888587,-0.012872100807726,-0.051433779299259],[-0.078097559511662,-0.16662910580635,-0.024064876139164],[-0.0029212501831353,-0.084237977862358,0.088604912161827]],[[-0.061624802649021,0.0014663123292848,0.092010855674744],[-0.1433207988739,0.023406758904457,0.035805832594633],[0.053215369582176,0.11128004640341,-0.057073760777712]],[[0.026896247640252,0.039778165519238,0.072249740362167],[0.088109701871872,0.0076033319346607,-0.0059671704657376],[0.060162730515003,-0.042278259992599,-0.062607876956463]],[[0.051989160478115,-0.066148422658443,-0.052124820649624],[-0.066097222268581,-0.074451349675655,-0.058908272534609],[0.0090952832251787,0.14559252560139,-0.00095353298820555]],[[-0.075049951672554,0.092954143881798,-0.1427394002676],[-0.002490078099072,-0.014022941701114,-0.11165262013674],[-0.042626339942217,-0.034970011562109,0.17183454334736]],[[0.063070483505726,-0.20007388293743,-0.14748387038708],[0.0073864315636456,-0.044759307056665,0.12238233536482],[-0.028156209737062,0.052940789610147,0.066394783556461]],[[0.0020530868787318,-0.017402403056622,-0.030094405636191],[-0.066723473370075,-0.018489133566618,0.02226367034018],[-0.0050210966728628,-0.032737649977207,-0.078473106026649]],[[-0.16509757936001,-0.028314197435975,0.044187728315592],[0.035178363323212,0.059780295938253,0.0044576921500266],[-0.081112459301949,0.011717951856554,-0.03196332976222]],[[-0.069928325712681,0.078327819705009,-0.054603710770607],[-0.049867033958435,0.021453592926264,-0.079540006816387],[-0.017759617418051,0.033153630793095,0.074609413743019]],[[-0.039265882223845,0.10805726796389,-0.13084374368191],[-0.050607245415449,-0.023871656507254,0.0020840549841523],[-0.058801330626011,-0.033888228237629,0.10553634911776]],[[0.10802053660154,0.13619402050972,0.094316124916077],[-0.18429638445377,0.043431263417006,-0.12700034677982],[-0.097472675144672,0.0046493071131408,0.17772422730923]],[[-0.044071480631828,-0.071751564741135,0.025417927652597],[0.073570236563683,0.042622376233339,-0.027475319802761],[-0.19487789273262,-0.0055962251499295,0.031043974682689]],[[-0.045007821172476,0.00073768326546997,0.075766108930111],[-0.087925054132938,-0.10674401372671,0.083518356084824],[0.067718409001827,-0.21128869056702,-0.025869922712445]],[[0.052538473159075,-0.13832947611809,0.026562532410026],[0.0034384028986096,-0.063983805477619,0.055995538830757],[0.040856678038836,0.0070366291329265,0.058938581496477]],[[-0.09336195141077,-0.081459857523441,-0.10331043601036],[0.075594358146191,-0.074431620538235,0.045684151351452],[0.10292460024357,-0.045433022081852,0.046358160674572]],[[-0.0345722399652,-0.030227012932301,0.041084941476583],[0.0098493192344904,0.072530426084995,0.059080269187689],[0.032112956047058,0.06349166482687,0.069136142730713]],[[0.0055647725239396,-0.027987631037831,-0.0020184752065688],[-0.040193099528551,0.033809430897236,0.0081569729372859],[-0.027039842680097,-0.0066145472228527,-0.10737296938896]],[[-0.019403716549277,-0.0053795664571226,-0.024426341056824],[0.061251498758793,-0.10977521538734,0.037407528609037],[0.060086224228144,-0.0805369541049,-0.018774138763547]],[[0.044809140264988,-0.020339693874121,-0.027866022661328],[-0.09381116181612,-0.0067429770715535,-0.15324531495571],[0.13488487899303,0.071755863726139,0.077872060239315]],[[0.080721065402031,-0.0059034004807472,-0.095517687499523],[0.021828291937709,0.0044253654778004,-0.075166583061218],[-0.018913893029094,0.02115879394114,0.15999168157578]],[[0.02848619222641,0.052712354809046,-0.055041432380676],[-0.020342031493783,-0.052528098225594,0.01178314909339],[0.066164821386337,-0.015899492427707,-0.045498725026846]],[[0.071924023330212,-0.061082538217306,0.062060464173555],[0.053969919681549,0.12715213000774,0.032562665641308],[-0.051563654094934,-0.021959520876408,-0.051980562508106]],[[-0.0034797126427293,0.011327726766467,-0.21737144887447],[-0.017320757731795,-0.047625694423914,-0.0966552272439],[0.035473939031363,-0.061734899878502,0.066110379993916]],[[-0.072725273668766,-0.13731850683689,-0.15527978539467],[-0.10840209573507,-0.075121611356735,0.07677610963583],[-0.031923163682222,0.1175956055522,-0.078596793115139]],[[0.12032990902662,-0.083904914557934,-0.068145431578159],[0.10200612992048,-0.045647095888853,-0.076591193675995],[0.027258146554232,-0.074196361005306,-0.18245387077332]],[[-0.06462849676609,0.02749589830637,0.050865534693003],[-0.077113322913647,0.17507585883141,-0.079537600278854],[-0.038116659969091,0.053202401846647,0.037791457027197]],[[0.013846173882484,0.093560002744198,0.00056829582899809],[-0.083679020404816,0.043863497674465,-0.0067371539771557],[-0.071902617812157,-0.02143594995141,0.026696579530835]],[[0.12626245617867,-0.034925881773233,-0.063650146126747],[-0.0249007884413,0.046056617051363,-0.08622058480978],[0.083818651735783,0.081886284053326,-0.028497276827693]],[[-0.057661347091198,0.10363206267357,-0.0055460766889155],[0.080650798976421,0.12435360997915,0.11251172423363],[0.032957840710878,-0.031494062393904,-0.099618844687939]],[[0.13996805250645,0.0088406279683113,0.092176184058189],[0.017125681042671,-0.14022050797939,0.03520854562521],[-0.049304436892271,-0.019076181575656,-0.12998382747173]],[[0.019777165725827,0.06017067283392,0.056138273328543],[0.0010380898602307,0.07468930631876,-0.039889838546515],[0.12174355983734,0.09278766065836,0.086789555847645]],[[0.15128722786903,-0.020570561289787,0.05557207763195],[-0.088497452437878,-0.0055047422647476,-0.0068333172239363],[0.13750348985195,-0.016702046617866,0.22659432888031]],[[-0.051756512373686,-0.11391573399305,-0.0056548523716629],[0.054313108325005,-0.019408965483308,0.054829575121403],[0.015488093718886,-0.10233508050442,-0.036383055150509]],[[0.00511210039258,-0.10393210500479,-0.04093985632062],[-0.038642685860395,-0.033391743898392,-0.17106050252914],[0.0032520676031709,0.022658105939627,0.11712491512299]],[[-0.10132666677237,-0.042456105351448,-0.13323883712292],[0.013345004990697,0.081584721803665,-0.25636604428291],[-0.0033468771725893,0.037399642169476,0.06688379496336]],[[-0.0062748659402132,-0.029182454571128,0.20256665349007],[-0.024837885051966,-0.005545693449676,-0.059497766196728],[-0.0065696779638529,0.12645238637924,-0.017328798770905]],[[0.009899590164423,-0.097190730273724,-0.12696784734726],[0.031978853046894,-0.035589840263128,0.073372930288315],[-0.087675765156746,-0.0049231569282711,0.034256547689438]],[[-0.11340843141079,0.03406135737896,0.019034940749407],[0.01784760504961,0.046799719333649,0.11222265660763],[-0.069281615316868,-0.096097469329834,-0.063014052808285]],[[0.086518310010433,-0.09018661826849,0.10637912899256],[0.12142419815063,-0.071897581219673,0.018590984866023],[-0.028831839561462,0.061737831681967,-0.073355428874493]],[[0.19834202528,-0.079460725188255,0.054237302392721],[-0.025018747895956,-0.10053441673517,-0.1120298653841],[-0.12353327870369,0.051770027726889,0.080693602561951]],[[-0.16779920458794,-0.03212533146143,0.10072442889214],[-0.10844713449478,0.033140815794468,-0.006904317997396],[-0.09803032130003,-0.1410703510046,0.028540914878249]],[[-0.12713831663132,-0.022430704906583,0.15696394443512],[0.12064872682095,-0.1359783411026,-0.037701528519392],[-0.082398533821106,0.046359900385141,0.05051951482892]],[[-0.076595030725002,-0.050115551799536,-0.23314756155014],[0.18793317675591,0.0026750273536891,0.05413706228137],[-0.1865446716547,-0.061083491891623,0.11656533926725]],[[0.008437629789114,0.10396999120712,-0.052781235426664],[-0.076314367353916,-0.043460603803396,0.063550248742104],[-0.25109127163887,0.068673312664032,-0.033458113670349]],[[0.025714440271258,0.017361056059599,-0.078342370688915],[0.049683023244143,0.069757640361786,0.070325046777725],[-0.11570560932159,-0.15057303011417,-0.054804194718599]],[[-0.054033141583204,-0.11028771847486,-0.017275422811508],[0.044342953711748,-0.027606196701527,0.061317637562752],[0.0094180284067988,0.035919096320868,-0.066201075911522]],[[0.09961075335741,-0.077682875096798,0.17342020571232],[0.046000294387341,0.087147422134876,-0.081706158816814],[-0.077573701739311,-0.031294673681259,0.032882813364267]],[[-0.063466511666775,-0.047662649303675,-0.019853439182043],[0.069756343960762,-0.0322275608778,-0.0057163494639099],[-0.12089871615171,0.10145696997643,-0.077126331627369]],[[-0.075573451817036,-0.059483151882887,-0.0053032012656331],[0.011161588132381,0.022213567048311,0.11932717263699],[-0.093574985861778,0.022814808413386,-0.0040403646416962]],[[0.036341078579426,-0.09219779074192,-0.014618984423578],[0.03059739433229,0.012928265146911,-0.095772616565228],[0.087065249681473,0.01477091666311,-0.29566246271133]],[[-0.1231292784214,-0.050136912614107,0.052812226116657],[-0.0039413049817085,0.079167328774929,-4.1492778109387e-05],[-0.034110881388187,0.03942584246397,-0.02881315164268]],[[-0.045224037021399,-0.0622220300138,-0.0002955507079605],[-0.083983726799488,-0.045841507613659,0.013092789798975],[-0.14446432888508,0.024103196337819,0.048279233276844]],[[-0.09745117276907,-0.02443391084671,0.021198598667979],[0.095202922821045,-0.086037427186966,-0.081518307328224],[0.073452234268188,-0.1675116866827,-0.12717859447002]],[[0.086798056960106,0.040609382092953,0.12887711822987],[0.033424913883209,-0.059172183275223,0.069336980581284],[0.12279059737921,0.043615281581879,-0.0053774476982653]],[[-0.020509146153927,-0.0026548271998763,-0.063271105289459],[-0.028061904013157,-0.1388228982687,-0.023324102163315],[-0.043645262718201,-0.10980762541294,-0.23150539398193]],[[-0.083464436233044,-0.04884135723114,-0.080670297145844],[-0.059945866465569,-0.026663655415177,-0.047696940600872],[-0.045929383486509,-0.074888095259666,0.03844702616334]],[[-0.051070962101221,0.058818634599447,-0.019595826044679],[-0.06201296299696,-0.1184600815177,-0.070060834288597],[0.16870759427547,-0.0055242129601538,-0.068837411701679]],[[0.016606772318482,-0.087987668812275,-0.0078992852941155],[0.041743054986,0.035926222801208,-0.013422957621515],[-0.17281594872475,-0.11725261807442,-0.11402200907469]],[[0.081196129322052,0.11350680887699,-0.002754574874416],[0.083565160632133,-0.13563893735409,-0.10555245727301],[-0.098787881433964,-0.20154091715813,0.033952325582504]]],[[[0.052648894488811,-0.048248078674078,-0.084730491042137],[-0.0075916633941233,0.11575119197369,0.18895614147186],[-0.045435469597578,-0.071559004485607,0.10291453450918]],[[-0.035011649131775,0.046323511749506,-0.0074722063727677],[0.026878286153078,0.010159529745579,0.090538680553436],[-0.10944994539022,-0.060663942247629,-7.3943709139712e-05]],[[-0.043613336980343,-0.06503763794899,-0.10690882056952],[-0.032069843262434,0.020696315914392,-0.03640379011631],[0.060710292309523,0.028646633028984,0.069904714822769]],[[0.070775210857391,0.16858170926571,0.02948440797627],[0.02154921554029,-0.058162029832602,0.013730441220105],[-0.034263700246811,0.0072213183157146,-0.12085937708616]],[[-0.062594123184681,0.0026789950206876,-0.067786313593388],[-0.094831265509129,-0.12116555124521,-0.014110973104835],[-0.027113666757941,-0.069998010993004,0.060266558080912]],[[-0.026590120047331,-0.039821282029152,-0.058391261845827],[0.0096596339717507,-0.011934271082282,0.077262490987778],[0.037228405475616,-0.0069566816091537,0.0078054587356746]],[[-0.061878815293312,0.048164814710617,-0.085815243422985],[0.14446826279163,-0.052020568400621,-7.1835209382698e-05],[0.18221898376942,0.062377691268921,0.067763410508633]],[[-0.078751467168331,0.090626507997513,-0.096341021358967],[0.047737840563059,0.11867067217827,-0.025217715650797],[0.039925564080477,-0.01661541312933,0.014321747235954]],[[0.036683641374111,-0.048858277499676,-0.0030596374999732],[-0.020182861015201,-0.0040894960984588,-0.013383531011641],[0.011785408481956,-0.048062704503536,0.070490293204784]],[[-0.058101870119572,-0.040152974426746,-0.12061396986246],[-0.20256432890892,0.10169995576143,-0.081822007894516],[0.03220335021615,0.0445816218853,-0.013572253286839]],[[-0.043548535555601,-0.01507546659559,0.013891856186092],[-0.0056777601130307,-0.0016364057082683,-0.056835316121578],[0.084553860127926,-0.041259750723839,0.12000060081482]],[[0.11205091327429,-0.00033611484104767,-0.062751352787018],[0.055229686200619,-0.063210234045982,-0.063293799757957],[0.0017574181547388,0.00038152054185048,-0.025589775294065]],[[-0.0015921406447887,-0.011692627333105,-0.017380720004439],[0.020640594884753,-0.062072746455669,0.013376033864915],[0.1084717810154,-0.034401718527079,-0.035424783825874]],[[0.12779219448566,0.0075468877330422,-0.053447294980288],[0.032529894262552,-0.00074256956577301,0.064627811312675],[-0.012954800389707,0.018268078565598,-0.028252238407731]],[[-0.018209535628557,0.036498688161373,-0.036254476755857],[-0.082100354135036,-0.010082295164466,0.1230340898037],[0.098686598241329,0.084285035729408,-0.15581788122654]],[[-0.088536612689495,0.014035497792065,-0.1801580041647],[-0.012325519695878,-0.11035194993019,-0.012844740413129],[0.043758608400822,-0.012964597903192,-0.1411395072937]],[[-0.046810377389193,-0.057247180491686,-0.14927735924721],[-0.032259803265333,-0.017079694196582,0.043793369084597],[0.029562072828412,-0.14698155224323,-0.026823785156012]],[[0.048603799194098,0.10974954068661,-0.081415727734566],[0.14074459671974,0.039782781153917,-0.058495596051216],[-0.00044955383054912,0.040942031890154,0.022740488871932]],[[-0.012548831291497,-0.089295856654644,0.078107260167599],[-0.13727819919586,-0.079345539212227,-0.12594383955002],[-0.12102552503347,-0.103709384799,0.071673266589642]],[[0.046330541372299,0.041609231382608,0.093639530241489],[-0.032732505351305,0.06750213354826,-0.064101696014404],[-0.00051235308637843,-0.15457329154015,0.049739576876163]],[[-0.046652015298605,-0.010317581705749,-0.0059233568608761],[-0.027003327384591,-0.041524462401867,-0.043678369373083],[0.024087032303214,0.017614984884858,-0.072079665958881]],[[-0.022190222516656,0.0036887302994728,-0.0057510496117175],[0.018910376355052,0.027834696695209,-0.045821476727724],[-0.040051534771919,-0.0068723158910871,-0.063380382955074]],[[-0.0099542336538434,0.078407101333141,0.067087262868881],[-0.043953198939562,0.013717722147703,0.028274400159717],[-0.15074326097965,-0.026795255020261,-0.005572497844696]],[[0.073896713554859,0.0081779323518276,-0.17145624756813],[0.1064426228404,0.080069847404957,0.10340091586113],[0.041213601827621,-0.075190372765064,-0.096650652587414]],[[0.1062004044652,0.18422743678093,0.1505823135376],[0.013418632559478,-0.010373652912676,-0.06553553044796],[-0.032052639871836,0.06849417090416,0.14148525893688]],[[-0.039243027567863,-0.0012248102575541,-0.026524944230914],[-0.0019723889417946,0.019712015986443,0.031796023249626],[0.051380790770054,0.029385875910521,-0.04289210960269]],[[0.017971817404032,0.060752898454666,-0.012223580852151],[-0.029779186472297,-0.012311218306422,0.025832388550043],[-0.014999236911535,-0.056904200464487,0.086348429322243]],[[-0.14163208007812,0.0092176627367735,0.15105612576008],[-0.057438671588898,0.061449114233255,0.21194051206112],[-0.10202819108963,-0.031038343906403,0.0033289541024715]],[[-0.005542884580791,-0.088117621839046,-0.05660654976964],[-0.046563096344471,0.067302614450455,0.093352772295475],[0.0545354783535,0.053712595254183,-0.066269792616367]],[[-0.087849885225296,-0.07383619248867,-0.066176310181618],[-0.052749399095774,-0.10843745619059,-0.053672432899475],[0.045432109385729,0.044420424848795,-0.0761788636446]],[[0.080308526754379,0.055585380643606,0.025406094267964],[-0.015285054221749,-0.07309390604496,-0.064600922167301],[-0.030866948887706,0.025429816916585,-0.030209654942155]],[[-0.054851178079844,-0.098374046385288,-0.073457576334476],[0.084427572786808,0.015862111002207,-0.069705709815025],[0.021594051271677,-0.064255937933922,-0.064703471958637]],[[0.15647189319134,-0.068332113325596,0.077870063483715],[0.062017556279898,-0.016853654757142,-0.045326210558414],[0.12954975664616,0.014983813278377,-0.032107952982187]],[[0.0061362558044493,-0.018546402454376,0.051948297768831],[-0.058296106755733,0.058630142360926,-0.039777923375368],[-0.032391790300608,-0.00087685696780682,0.034562543034554]],[[-0.037196543067694,0.091466754674911,-0.030520858243108],[-0.060289107263088,-0.040555398911238,-0.025113739073277],[0.129743501544,0.01386162918061,0.086734838783741]],[[-0.098862990736961,0.060610502958298,0.16306401789188],[0.04374535381794,0.11742047220469,0.064254999160767],[0.0040816040709615,-0.018585907295346,0.081180453300476]],[[-0.054588031023741,0.14899773895741,0.16370032727718],[-0.031841401010752,0.059170249849558,0.066134445369244],[-0.10461139678955,0.087638184428215,-0.0056575736962259]],[[0.0035201974678785,0.02261633053422,-0.039159543812275],[0.01436157617718,-0.030149446800351,0.029278369620442],[-0.0047597051598132,0.060350086539984,0.0034101409837604]],[[0.063708759844303,0.055409040302038,-0.042971666902304],[0.018726436421275,-0.049575787037611,-0.015031127259135],[0.026673652231693,-0.02552117779851,-0.14705719053745]],[[-0.12602902948856,-0.036603827029467,-0.012052172794938],[0.020414052531123,-0.026463126763701,-0.0014860718511045],[0.048819173127413,0.033564370125532,-0.12188699096441]],[[0.14264911413193,0.028344361111522,-0.0010659748222679],[-0.017921838909388,0.058070007711649,0.073925442993641],[0.082056879997253,0.17900815606117,0.13482844829559]],[[-0.091513082385063,0.029886709526181,0.0061994679272175],[-0.19135725498199,-0.13104382157326,-0.18132674694061],[0.064550168812275,0.073737852275372,0.016030058264732]],[[-0.0018414491787553,-0.030322063714266,-0.084934495389462],[-0.041917618364096,0.021554740145802,-0.0079718753695488],[0.027096126228571,0.12955270707607,0.096271522343159]],[[-0.071433655917645,-0.042759444564581,-0.15135195851326],[-0.11478462815285,0.0010231230407953,-0.016113422811031],[-0.053070511668921,-0.095312565565109,-0.0060917809605598]],[[-0.069971017539501,-0.014251794666052,0.13329035043716],[0.041654072701931,0.052446831017733,0.0078342780470848],[0.079275965690613,-0.0012928565265611,0.081469036638737]],[[0.057872273027897,0.019464008510113,0.085871607065201],[0.038175262510777,-0.10074773430824,-0.032849762588739],[-0.0047977548092604,0.0093534272164106,-0.040090296417475]],[[-0.10942216962576,-0.020848676562309,-0.0065099950879812],[0.046226590871811,-0.062797762453556,0.025568079203367],[0.056119587272406,-0.022704785689712,0.1076682433486]],[[-0.12359276413918,0.10677976161242,0.092201642692089],[-0.010582562536001,-0.036546070128679,-0.12321432679892],[-0.026748321950436,0.040067546069622,-0.073673136532307]],[[0.058650139719248,0.095145888626575,0.013126656413078],[-0.11181405186653,-0.042582292109728,0.13577157258987],[-0.14446792006493,-0.018690505996346,-0.044185616075993]],[[-0.1405344158411,0.09614109992981,-0.0073461337015033],[-0.022072166204453,-0.19094300270081,-0.049906060099602],[0.18061463534832,0.085090100765228,-0.12098940461874]],[[0.0057807215489447,0.072004765272141,-0.084974750876427],[0.082736678421497,-0.086747296154499,0.016016127541661],[-0.085476286709309,-0.053960625082254,-0.14474385976791]],[[-0.023122711107135,-0.020088026300073,-0.057620625942945],[-0.024434411898255,0.041619922965765,-0.1759979724884],[0.15522199869156,0.099525794386864,0.14902926981449]],[[-0.056246150285006,0.05229426920414,-0.053237233310938],[0.019527079537511,-0.044345002621412,-0.016666889190674],[-0.046366140246391,0.10576518625021,0.032629821449518]],[[-0.031674768775702,-0.090980395674706,-0.06178779900074],[-0.015837989747524,-0.068332806229591,-0.0014637631829828],[-0.028278669342399,-0.021523440256715,0.0073517980054021]],[[0.066745512187481,0.022088399156928,0.029078608378768],[-0.043591678142548,-0.05602053925395,-0.013889098539948],[-0.11055918037891,-0.087945617735386,0.039916761219501]],[[-0.05167480930686,-0.010538875125349,-0.0049072448164225],[0.062063399702311,-0.058308880776167,-0.049857806414366],[0.069563575088978,0.065375760197639,0.069753006100655]],[[-0.074688322842121,-0.0065379245206714,-0.0045515415258706],[-0.038420211523771,0.080559559166431,0.11883747577667],[0.0027762984391302,-0.013590103015304,3.2884479878703e-05]],[[0.0122448541224,-0.045919954776764,-0.030534785240889],[-0.0051883906126022,0.080124728381634,-0.01677655428648],[0.008044813759625,-0.031274572014809,-0.12871971726418]],[[0.11562840640545,0.11472345888615,0.16312888264656],[0.080457739531994,0.033074602484703,-0.082519076764584],[0.085918433964252,0.086825616657734,-0.033037833869457]],[[0.14426827430725,0.025308670476079,0.060211800038815],[0.049867000430822,0.1075646057725,0.098333358764648],[0.059785157442093,0.075767822563648,0.08742743730545]],[[-0.010767048224807,0.0062634255737066,-0.032227877527475],[-0.050392474979162,0.071374766528606,0.0056812958791852],[0.029459815472364,0.10113725811243,-0.039926812052727]],[[-0.043951999396086,-0.052506607025862,-0.11995185166597],[0.047962002456188,0.16860708594322,-0.067529894411564],[0.13458459079266,0.051552779972553,-0.00043557002209127]],[[0.10686576366425,-0.037045989185572,-0.041336808353662],[0.022700970992446,0.04241718351841,0.08882724493742],[0.051360599696636,-0.13803116977215,-0.051314864307642]],[[-0.10410352051258,-0.026037827134132,-0.13906851410866],[0.0056735719554126,-0.058200500905514,-0.05771491676569],[-0.074992388486862,-0.11853624135256,-0.0089831138029695]]],[[[0.004981430247426,0.032075960189104,-0.1486941576004],[0.017338687554002,0.016945995390415,-0.098039522767067],[-0.033052682876587,0.01091758813709,0.058247253298759]],[[-0.16923305392265,-0.090783141553402,0.084580145776272],[-0.12584099173546,-0.0067662787623703,0.070757247507572],[-0.071734063327312,-0.13920913636684,0.11680719256401]],[[-0.10183249413967,0.02461601421237,-0.14331385493279],[0.038914557546377,0.00078125885920599,0.030509401112795],[0.05350124463439,-0.055281862616539,0.053036127239466]],[[-0.048694547265768,-0.045741349458694,-0.095393553376198],[-0.038296919316053,0.13841335475445,-0.079953193664551],[-0.093770109117031,0.056289702653885,-0.12853598594666]],[[-0.10525038838387,-0.03759441152215,0.087045311927795],[-0.13208828866482,-0.086571499705315,-0.11048855632544],[-0.16171044111252,-0.11185828596354,-0.17072170972824]],[[0.032575059682131,-0.093507513403893,-0.061671443283558],[-0.046217799186707,0.01942946575582,0.1320758163929],[0.038435574620962,0.11782389879227,0.096908628940582]],[[0.084871329367161,0.11788635700941,-0.07095530629158],[-0.078095749020576,0.059368990361691,-0.029810899868608],[-0.043602015823126,0.067885644733906,0.053173258900642]],[[0.015536551363766,0.069425255060196,0.13160714507103],[0.039883237332106,0.076448284089565,0.023550661280751],[-0.097172386944294,-0.14207434654236,-0.16233190894127]],[[0.0072524868883193,-0.074372872710228,0.031573235988617],[-0.02633710950613,-0.044349126517773,0.0065873633138835],[-0.037669889628887,0.082511000335217,-0.027572320774198]],[[0.027871569618583,0.030872805044055,-0.04975363984704],[-0.095478527247906,-0.067053988575935,0.040089927613735],[0.042499143630266,0.05898704007268,-0.045386455953121]],[[0.0016553691821173,0.0090182833373547,0.011994223110378],[-0.041948333382607,0.021637020632625,0.082859545946121],[0.0042807054705918,0.039848927408457,0.022167734801769]],[[0.037555757910013,0.032996475696564,-0.08930915594101],[-0.011566687375307,-0.0068975309841335,-0.027199294418097],[-0.15965205430984,-0.10191684961319,-0.047965098172426]],[[-0.14004167914391,0.063881292939186,0.033035069704056],[-0.028279680758715,-0.046224839985371,-0.0056418906897306],[-0.14203259348869,-0.074893452227116,0.0023064273409545]],[[-0.03866059333086,0.11806526780128,0.045645449310541],[0.071018747985363,0.0031140686478466,-0.071303486824036],[0.11726753413677,-0.067839547991753,-0.14238817989826]],[[-0.0077190324664116,0.00033553782850504,0.026042111217976],[0.10357364267111,-0.034354869276285,0.01912197843194],[0.026065848767757,-0.15892679989338,0.010318825021386]],[[0.020311007276177,0.048559676855803,0.070939414203167],[0.086439579725266,-0.048766303807497,-0.034227468073368],[-0.0068779871799052,-0.14198079705238,-0.210289940238]],[[0.089640393853188,0.14554545283318,0.059900678694248],[-0.023752219974995,0.054406069219112,-0.026547500863671],[-0.18875278532505,-0.11682033538818,0.0081620011478662]],[[-0.1065409258008,0.14612255990505,-0.11842990666628],[-0.012439015321434,0.076842248439789,-0.075783200562],[0.0069304443895817,-0.047868601977825,0.073523841798306]],[[-0.071077272295952,0.037359148263931,0.074381828308105],[0.0040371725335717,-0.048810891807079,-0.034939173609018],[0.056858155876398,0.030767161399126,-0.063051491975784]],[[0.026399102061987,-0.039653237909079,0.057191349565983],[0.16187819838524,-0.021761510521173,-0.038134299218655],[-0.1029109954834,-0.037931624799967,0.055124707520008]],[[0.054045099765062,0.059349492192268,0.11709095537663],[-0.023807907477021,-0.14837168157101,-0.12324770539999],[-0.0021171986591071,-0.044635828584433,-0.21837128698826]],[[0.024996127933264,-0.016129663214087,0.074556663632393],[-0.06751261651516,-0.02717980928719,-0.0042549441568553],[-0.020648207515478,0.018373953178525,-0.060933262109756]],[[-0.037097688764334,-0.050570461899042,-0.051531840115786],[-0.10732017457485,0.028727458789945,0.063557736575603],[-0.018232917413116,-0.096160463988781,0.017156753689051]],[[-0.021640818566084,0.11339247971773,0.20150990784168],[0.090581580996513,0.11137755215168,0.095231026411057],[-0.19386273622513,-0.06638740748167,0.051651705056429]],[[0.03325542062521,0.048351172357798,0.030232785269618],[-0.081027060747147,0.079977042973042,0.013241720385849],[0.17688876390457,0.042344972491264,0.11414773017168]],[[0.017518278211355,-0.0055512343533337,-0.066673927009106],[0.020445412024856,0.020804136991501,0.032258667051792],[0.0090046180412173,-0.0014260865282267,0.034410785883665]],[[-0.14724250137806,-0.13739269971848,-0.08839089423418],[0.10713141411543,0.0080497870221734,0.043994322419167],[0.22994548082352,0.093943126499653,0.072949953377247]],[[-0.08482900261879,-0.088687501847744,-0.19853383302689],[0.093825839459896,-0.080642990767956,0.010019271634519],[-0.020700138062239,0.039383206516504,-0.0052734836935997]],[[-0.062353100627661,-0.096384726464748,0.00086267269216478],[-0.042367212474346,0.023246122524142,0.017842831090093],[-0.097647875547409,0.11210262030363,-0.056343231350183]],[[-0.011138822883368,0.041588623076677,0.025305451825261],[-0.010377726517618,0.039900898933411,0.015480199828744],[-0.10229447484016,-0.04423788562417,0.1047412827611]],[[-0.041094493120909,0.012824840843678,0.055684771388769],[-0.056115187704563,-0.095207817852497,-0.1152426302433],[0.078545793890953,0.080955035984516,0.13529901206493]],[[-0.095952227711678,-0.0061099864542484,0.20494636893272],[0.016735261306167,0.034253381192684,-0.077068880200386],[0.075754791498184,0.10536729544401,-0.071902990341187]],[[-0.0096762906759977,0.0082364436239004,0.11255296319723],[0.035519059747458,0.10814768075943,0.056625716388226],[0.060465313494205,-0.062774792313576,0.13325883448124]],[[0.023690041154623,-0.06556835770607,-0.051053397357464],[0.015002151951194,-0.007442663423717,-0.048148326575756],[0.029277557507157,0.011510766111314,0.018960731104016]],[[-0.032209638506174,-0.091029889881611,-0.021290902048349],[0.051982890814543,-0.010276084765792,-0.015688261017203],[-0.051453731954098,-0.012756815180182,0.0065435511060059]],[[0.096330739557743,-0.045657478272915,-0.071147441864014],[-0.01091621350497,0.14090058207512,-0.072224043309689],[0.0020576615352184,0.077113814651966,0.027777606621385]],[[0.045228455215693,0.029252476990223,0.10111659765244],[0.16410906612873,-0.022400813177228,0.13222253322601],[-0.042608231306076,-0.023072365671396,0.19934672117233]],[[-0.022351590916514,0.058122303336859,-0.038016472011805],[0.035054374486208,0.047504846006632,0.10736045241356],[-0.031973533332348,-0.031786695122719,0.069743953645229]],[[0.11685658991337,0.10486125200987,0.053403437137604],[-0.005403729621321,-0.0036203919444233,0.038416165858507],[0.0057863113470376,-0.033616047352552,-0.026136813685298]],[[-0.13124443590641,0.055922787636518,0.16157007217407],[0.039473384618759,-0.10570184141397,0.0951012596488],[0.0088634612038732,-0.14236842095852,0.095062449574471]],[[0.05144789814949,-0.21645179390907,-0.04938317835331],[-0.03963653370738,0.0032113480847329,0.069641157984734],[0.097175113856792,0.024803962558508,0.078566208481789]],[[-0.072336874902248,-0.0036391422618181,-0.02680080384016],[-0.059992868453264,-0.0072576492093503,0.057268038392067],[0.028866533190012,-0.0088945869356394,0.013685244135559]],[[-0.011101572774351,-0.14586474001408,0.068419270217419],[-0.036887913942337,-0.013705371879041,-0.12674368917942],[0.13818022608757,-0.12976713478565,0.031491722911596]],[[-0.016871158033609,-0.097882390022278,0.015947869047523],[0.075712494552135,0.10870272666216,-0.040072940289974],[0.030541304498911,-0.051119051873684,-0.069498769938946]],[[-0.12568280100822,-0.097537763416767,0.01192020624876],[0.080947689712048,-0.062124162912369,-0.046371925622225],[0.066900238394737,-0.088117837905884,0.014314768835902]],[[-0.072185307741165,0.004665007814765,-0.024332042783499],[-0.071794994175434,0.070295467972755,-0.0024772500619292],[0.094358317553997,0.070800669491291,-0.050862401723862]],[[0.027720721438527,-0.055086348205805,-0.044461898505688],[0.02653493732214,0.067838482558727,-0.094604894518852],[-0.0012663438683376,-0.0059548667632043,0.019822968170047]],[[0.046109478920698,-0.035980064421892,0.056011583656073],[-0.022901337593794,-0.040322605520487,-0.095502689480782],[0.049700085073709,0.081364125013351,0.16650459170341]],[[-0.032677687704563,0.013528342358768,-0.14539414644241],[0.017863428220153,-0.030940528959036,-0.16559624671936],[0.1918938010931,0.14299182593822,0.040534324944019]],[[0.0037682112306356,-0.056595996022224,-0.029294876381755],[0.047053709626198,0.06203655898571,-0.042770732194185],[-0.071476764976978,-0.065502509474754,0.0024720118381083]],[[-0.070031717419624,-0.072752967476845,0.12939271330833],[-0.1140398979187,-0.12056299299002,-0.071680597960949],[0.082451187074184,-0.10803543776274,-0.026319051161408]],[[0.069720804691315,0.076658256351948,0.18280008435249],[-0.020641559734941,-0.058293256908655,-0.0043612024746835],[0.01979586482048,0.011150640435517,0.0056815543211997]],[[-0.011274725198746,-0.060612272471189,0.0462926030159],[-0.027742022648454,-0.026859801262617,-0.024832986295223],[0.001788008143194,0.077956721186638,0.0324488542974]],[[0.054656900465488,0.034675981849432,0.17643575370312],[0.016467574983835,0.0020239064469934,-0.061271902173758],[-0.068670757114887,-0.082583665847778,-0.075850263237953]],[[0.064612932503223,-0.094556339085102,-0.026408551260829],[0.014449456706643,-0.021719634532928,0.062039375305176],[0.031373262405396,0.047568313777447,0.04050725325942]],[[0.093863189220428,-0.10388746857643,-0.043044004589319],[-0.059199083596468,-0.073647312819958,-0.055614329874516],[-0.16377232968807,-0.090223968029022,-0.062527976930141]],[[0.06013411283493,0.0097018126398325,-0.13456292450428],[-0.108173571527,0.063712239265442,0.013574671931565],[0.0064359717071056,-0.10812591016293,-0.059827923774719]],[[-0.022018367424607,0.071268633008003,0.041383147239685],[-0.044446151703596,-0.042199522256851,0.073577240109444],[-0.047755185514688,-0.032888524234295,-0.026286970824003]],[[0.089589931070805,0.17651417851448,0.049711983650923],[-0.019102754071355,-0.038838997483253,0.031160395592451],[0.050495512783527,-0.032056398689747,0.06328547000885]],[[-0.035812292248011,-0.029807131737471,-0.21475613117218],[0.11765273660421,0.081576608121395,-0.10481324791908],[0.0092812199145555,-0.067032188177109,-0.049770355224609]],[[0.017180303111672,-0.1256577372551,0.036548919975758],[0.065522439777851,-0.067896939814091,0.01959141716361],[0.11875396221876,-0.046350236982107,-0.011695974506438]],[[-0.015844566747546,0.071253091096878,0.11875507235527],[0.026673873886466,0.049340806901455,0.089388564229012],[0.15280978381634,0.051080919802189,-0.0057000098749995]],[[0.038386892527342,0.046446587890387,0.081163667142391],[0.0078463768586516,0.0040170261636376,0.053683541715145],[-0.10324873030186,-0.093196950852871,-0.027350801974535]],[[-0.11306023597717,0.064948044717312,0.033394452184439],[0.10692073404789,-0.08238285779953,0.072664052248001],[-0.051437426358461,-0.36116078495979,-0.11463148146868]]],[[[0.051418416202068,0.030328128486872,-0.16969385743141],[-0.012145906686783,-0.058573145419359,-0.1057045981288],[0.018101403489709,0.060135819017887,-0.021185591816902]],[[-0.082909822463989,-0.013592950999737,-0.17075914144516],[0.059095393866301,-0.052780292928219,-0.016331985592842],[-0.067912749946117,-0.032711286097765,0.032016512006521]],[[0.049347214400768,-0.059091206640005,-0.024384533986449],[0.10550317913294,-0.0055608809925616,-0.029004417359829],[0.025336125865579,-0.0035149108152837,0.022509245201945]],[[-0.059946972876787,0.02538307569921,-0.12625068426132],[0.062480591237545,-0.028088800609112,-0.030195709317923],[0.13956771790981,-0.017004903405905,-0.15275111794472]],[[-0.030157260596752,-0.01598084717989,-0.065399810671806],[-0.0053278747946024,-0.0036720612552017,-0.062050491571426],[-0.063529416918755,-0.0099975811317563,0.017341272905469]],[[0.049841519445181,-0.008984406478703,-0.10785024613142],[0.031640354543924,0.060724269598722,-0.14588187634945],[0.14250859618187,0.12639084458351,0.0063705025240779]],[[0.055362198501825,-0.01924897916615,-0.10557694733143],[0.11740730702877,0.057810723781586,-0.059851203113794],[0.013968075625598,0.040046632289886,-0.11526988446712]],[[-0.064049005508423,-0.073905602097511,0.084121152758598],[0.065989673137665,0.087238363921642,0.089837498962879],[0.055393051356077,0.014312230981886,0.068154089152813]],[[-0.037222802639008,0.041854966431856,-0.030937682837248],[0.065630950033665,0.10003324598074,0.0458281673491],[0.10217182338238,0.052302807569504,-0.08584800362587]],[[-0.07602546364069,-0.047181747853756,-0.12683461606503],[0.0067312936298549,0.039915014058352,-0.011462522670627],[-0.015317523851991,0.046971831470728,-0.074668176472187]],[[0.018762469291687,0.011689944192767,-0.041060499846935],[0.02243790589273,-0.04454567655921,-0.13092313706875],[0.032029319554567,0.007662495598197,0.067755751311779]],[[0.049785248935223,0.0076291430741549,-0.11948516964912],[0.076325930655003,0.10745227336884,0.015292529016733],[0.10740133374929,0.13547314703465,0.094675958156586]],[[-0.0013378765434027,-0.01177104189992,-0.0053363898769021],[-0.050274364650249,-0.07480950653553,-0.071421422064304],[0.055547904223204,-0.052130024880171,0.04234729334712]],[[0.02785437181592,0.15261518955231,0.0081522101536393],[-0.016215333715081,-0.047106023877859,-0.042952559888363],[-0.014106624759734,-0.11028116196394,-0.082392513751984]],[[0.049110166728497,0.057530924677849,-0.12386943399906],[0.14128410816193,0.043417062610388,-0.045905999839306],[0.088844738900661,-0.0040586907416582,0.020353930070996]],[[-0.01973276399076,-0.10381125658751,-0.12051055580378],[0.0063982657156885,-0.066789373755455,0.018502179533243],[0.059096179902554,0.032112274318933,0.0054522347636521]],[[0.015899926424026,0.1026254966855,-0.057576812803745],[0.061612471938133,0.054477371275425,-0.052923884242773],[0.1069110929966,0.019321510568261,-0.18481865525246]],[[0.027524752542377,-0.038717232644558,-0.078230924904346],[0.032832011580467,-0.0329455062747,-0.08671036362648],[-0.04476959630847,0.036703579127789,-0.044021379202604]],[[-0.075579702854156,-0.028917780146003,-0.10441952198744],[-0.094571888446808,0.030564185231924,0.019032845273614],[-0.014025420881808,-0.010531541891396,-0.075791619718075]],[[0.14695231616497,0.13076311349869,-0.052303194999695],[0.00944550242275,0.11550895124674,0.054103445261717],[0.034753609448671,-0.074220225214958,-0.080837704241276]],[[0.043536648154259,0.066160924732685,-0.053572628647089],[0.048547513782978,0.07949186861515,-0.13089793920517],[0.019685279577971,-0.0052641909569502,-0.016308311372995]],[[-0.039866894483566,0.014017535373569,-0.053588531911373],[-0.076789103448391,-0.10303682088852,-0.037489291280508],[-0.049542546272278,0.049499027431011,0.053513780236244]],[[0.021878512576222,-0.044987294822931,-0.0015913893003017],[-0.064004473388195,-0.015336156822741,-0.021646104753017],[0.0028381189331412,0.069609515368938,0.026495898142457]],[[0.055496357381344,0.046826735138893,-0.092701837420464],[0.047915194183588,-0.10237219929695,-0.078416384756565],[-0.015803080052137,-0.031259801238775,-0.068824850022793]],[[0.0066611296497285,0.07028628885746,0.095128573477268],[0.027889113873243,0.13217027485371,0.054912474006414],[0.037303101271391,0.01401807833463,-0.022350115701556]],[[0.07116062939167,-0.038224425166845,0.0090154381468892],[0.066855356097221,0.0075474833138287,-0.016768038272858],[-0.018492104485631,-0.011881841346622,-0.06089835986495]],[[0.043448016047478,-0.043738134205341,-0.17106278240681],[0.10412685573101,0.064928628504276,-0.063845954835415],[-0.03245685249567,0.0022201649844646,0.18167495727539]],[[-0.11233375221491,0.017684599384665,0.13566114008427],[0.037068229168653,-0.069853082299232,0.035798858851194],[0.016995590180159,-0.020622694864869,0.13177332282066]],[[0.1125056296587,-0.039733782410622,-0.0065476200543344],[-0.0089534977450967,-0.12349759787321,-0.075744718313217],[-0.024831445887685,0.00093747850041837,-0.082422040402889]],[[0.0012330542085692,0.01658028550446,-0.015692878514528],[0.0070003545843065,-0.077160507440567,-0.046865966171026],[-0.093250080943108,0.042229369282722,-0.046342004090548]],[[0.068048305809498,0.00033534163958393,-0.038888905197382],[0.087242253124714,0.021990036591887,0.028021520003676],[0.11235816031694,-0.11259524524212,-0.097654543817043]],[[0.050365667790174,0.16563159227371,0.041637137532234],[0.0092793069779873,0.063524641096592,0.024759646505117],[-0.059959277510643,0.014669727534056,-0.013204114511609]],[[-0.044945288449526,-0.036216672509909,-0.10315702855587],[0.012155440635979,0.023591667413712,-0.009808573871851],[0.099217563867569,0.051160905510187,-0.059576068073511]],[[0.0087775234133005,0.033554304391146,-0.040549855679274],[0.0083970483392477,-0.025480013340712,-0.060875430703163],[0.14324830472469,0.01719425804913,0.0086433822289109]],[[0.093994453549385,-0.02259486541152,0.0087663615122437],[-0.04078109934926,0.089383639395237,-0.058280535042286],[-0.010629064403474,0.084680438041687,-0.046543646603823]],[[0.11478473991156,0.028839899227023,0.14062935113907],[0.029816087335348,0.059853915125132,0.10642223060131],[-0.024778647348285,-0.0042497529648244,0.027057036757469]],[[-0.12107277661562,0.0025686447042972,0.11082996428013],[-0.053701832890511,-0.059281401336193,-0.11793962866068],[0.079545982182026,0.0028005612548441,-0.10453543066978]],[[-0.066254675388336,-0.070873402059078,0.092165000736713],[0.010925209149718,-0.064561925828457,-0.19331549108028],[0.010662497021258,0.011061433702707,0.032078333199024]],[[0.079780258238316,0.013118644244969,-0.1052442714572],[0.031397789716721,-0.02802593447268,-0.013583213090897],[0.08194226026535,0.02646297775209,-0.11882881820202]],[[0.06090772151947,0.034254003316164,-0.017389437183738],[-0.00078654091339558,0.064002953469753,-0.095142908394337],[0.13950592279434,0.067818112671375,-0.070558585226536]],[[-0.031482629477978,0.046065486967564,0.053443197160959],[0.076361447572708,-0.012226702645421,0.0081751374527812],[-0.013362321071327,-0.14093007147312,-0.092404298484325]],[[0.047855924814939,0.0029535272624344,-0.12480270862579],[-0.12767724692822,0.011919263750315,-0.052468229085207],[0.10248062759638,0.050244953483343,-0.140445291996]],[[-0.14164717495441,-0.037588343024254,0.030343063175678],[-0.064196191728115,-0.071985743939877,-0.12692894041538],[0.092511117458344,-0.087140925228596,0.02155127748847]],[[-0.070881128311157,-0.015254303812981,-0.040845386683941],[0.09136264026165,0.033357053995132,0.014728446491063],[0.094576805830002,0.028211183845997,-0.12476575374603]],[[0.04934073984623,0.12739957869053,0.16273008286953],[-0.0032616227399558,-0.015029048547149,0.097949646413326],[0.047940827906132,-0.042781569063663,-0.14095249772072]],[[0.022788746282458,-0.026228804141283,-0.051015708595514],[-0.0029394505545497,-0.030416572466493,0.14228764176369],[0.053340308368206,-0.066384248435497,0.0075332941487432]],[[-0.031763765960932,0.024201408028603,-0.12935288250446],[-0.040413599461317,-0.0046281777322292,-0.13107071816921],[-0.053542010486126,0.034578982740641,-0.081172034144402]],[[0.049229133874178,-0.064812541007996,0.055483937263489],[0.0077675436623394,0.027327917516232,0.052306834608316],[-0.0044507803395391,0.057942278683186,0.017028586938977]],[[0.066082775592804,0.083241172134876,0.065647035837173],[0.022901330143213,-0.018747651949525,0.10474744439125],[-0.033259678632021,0.065379165112972,-0.013874833472073]],[[-0.062755391001701,-0.0018951575038955,0.17551496624947],[0.075056910514832,0.058803752064705,0.061211299151182],[0.0903629809618,0.075227990746498,0.040204972028732]],[[0.046280831098557,-0.044506717473269,-0.067399621009827],[0.064298622310162,0.0015399978728965,0.19834333658218],[0.0014548116596416,-0.01563467644155,0.046118404716253]],[[0.069466762244701,-0.075318604707718,0.060334172099829],[0.03683128207922,0.12750238180161,0.071461871266365],[0.079983241856098,-0.01260276697576,-0.096105888485909]],[[0.065540373325348,-0.00028517132159323,-0.048018895089626],[0.067910902202129,-0.035556323826313,-0.018458040431142],[0.058701392263174,0.0025990668218583,-0.019343517720699]],[[-0.025107756257057,-0.045540031045675,0.033636096864939],[-0.065865285694599,-0.071109592914581,-0.091006390750408],[-0.061580836772919,-0.032589513808489,0.0032787350937724]],[[0.072639361023903,0.060698270797729,0.021027201786637],[0.0011332454159856,0.05503873154521,0.052760355174541],[-0.012955661863089,-0.02494596503675,0.084192506968975]],[[-0.064600773155689,-0.023764276877046,-0.044793706387281],[-0.083739697933197,0.067828476428986,0.092290930449963],[-0.047406956553459,0.046124577522278,0.029889805242419]],[[-0.0058133117854595,-0.052905771881342,0.17248512804508],[0.012124341912568,-0.02255791798234,-0.10951720923185],[0.028835728764534,-0.029462963342667,-0.13247045874596]],[[0.1519518494606,-0.016362858936191,-0.037587065249681],[0.12751841545105,0.11118226498365,-0.023118821904063],[0.011037875898182,0.13886587321758,0.040137007832527]],[[0.03225589543581,0.057195503264666,0.12864762544632],[-0.0070692216977477,0.10302739590406,0.12891240417957],[0.09304691106081,0.038735810667276,0.087362334132195]],[[-0.036995258182287,0.13346986472607,0.14359690248966],[0.054776679724455,0.089166276156902,-0.037546996027231],[-0.041486214846373,0.096630930900574,0.087468028068542]],[[-0.13569320738316,-0.0019205220742151,0.04562209919095],[0.073655039072037,0.042034231126308,-0.018836569041014],[0.0025579005014151,0.090412780642509,-0.049332231283188]],[[-0.16719628870487,0.11582668125629,0.18532040715218],[-0.058026745915413,0.05477162450552,0.052003134042025],[-0.054004803299904,-0.0055393325164914,-0.034001860767603]],[[0.11283756792545,0.012749969027936,0.017887251451612],[0.026651106774807,-0.053508695214987,-0.087032720446587],[-0.018986033275723,-0.10874421149492,-0.035471897572279]],[[-0.093689896166325,0.034123491495848,0.042834524065256],[0.032951913774014,0.038084510713816,-0.12609048187733],[0.078156881034374,0.069223910570145,0.11497686803341]]],[[[-0.20807537436485,-0.21485310792923,0.042227163910866],[-0.26233196258545,-0.098428420722485,0.082897447049618],[-0.24502643942833,-0.15979100763798,0.0072168889455497]],[[0.0058603342622519,-0.065075717866421,0.036433082073927],[-0.02993643283844,-0.14190421998501,-0.067585229873657],[0.015438675880432,0.023205896839499,-0.1265063136816]],[[-0.084686227142811,0.018448367714882,-0.011406776495278],[0.048058427870274,-0.07188493013382,-0.053227666765451],[0.027190532535315,-0.028741372749209,0.025334214791656]],[[-0.2307910323143,-0.087178438901901,0.062901988625526],[-0.010053579695523,0.020267708227038,-0.038427878171206],[0.027356514707208,0.05452062189579,-0.012117536738515]],[[0.016024732962251,-0.040445167571306,-0.024840541183949],[-0.064870409667492,-0.24220645427704,-0.046133570373058],[-0.042840864509344,-0.052178964018822,-0.078857712447643]],[[-0.051040276885033,0.016897093504667,0.063304372131824],[0.01308823004365,-0.045853417366743,0.04532877728343],[-0.025607576593757,0.0043637128546834,-0.072218880057335]],[[-0.15402349829674,0.14840938150883,0.009248505346477],[-0.19429071247578,0.12979833781719,0.0050932774320245],[-0.058348525315523,0.012667941860855,0.070492953062057]],[[-0.10022079944611,0.025949273258448,-0.054339610040188],[-0.18866688013077,0.035160508006811,0.053633876144886],[-0.45535406470299,0.068422995507717,0.039233677089214]],[[-0.026233304291964,0.017126532271504,-0.10757108032703],[-0.10875959694386,0.1090858951211,0.0099431108683348],[-0.12578132748604,0.0092635303735733,0.11126990616322]],[[-0.12424149364233,-0.15297743678093,-0.011932803317904],[-0.11456701159477,-0.0511161275208,-0.077150113880634],[-0.078830078244209,0.021904977038503,0.018693163990974]],[[-0.08889527618885,-0.010663366876543,0.045118700712919],[0.034945175051689,0.0075670792721212,0.003286907216534],[-0.11679446697235,-0.077341750264168,0.0019544521346688]],[[-0.073453165590763,-0.07202660292387,-0.065375700592995],[-0.022268522530794,0.089886896312237,0.012439058162272],[-0.049569230526686,-0.062827587127686,0.12768271565437]],[[-0.27560457587242,0.021697487682104,0.070662349462509],[-0.34346029162407,0.01001838222146,0.024336107075214],[-0.3848769068718,-0.039050787687302,-0.034771114587784]],[[-0.15667195618153,-0.20395816862583,0.0098579404875636],[-0.076364062726498,-0.0056108152493834,-0.10188943892717],[-0.1704658716917,0.10824134945869,0.035098616033792]],[[0.062617756426334,0.071854524314404,-0.031576741486788],[0.058133590966463,0.027510525658727,-0.0040187081322074],[0.060797978192568,0.08569822460413,0.097855009138584]],[[-0.17956131696701,-0.022065998986363,0.010896680876613],[-0.22939917445183,0.0012332110200077,0.0026713474653661],[-0.016749387606978,0.010086948052049,0.04220812395215]],[[-0.02019839733839,0.016482895240188,0.067654810845852],[-0.0066529288887978,-0.029508870095015,0.12557782232761],[-0.11890653520823,-0.096509426832199,0.080054238438606]],[[0.0084482422098517,-0.10292332619429,0.043131977319717],[-0.0052830441854894,0.022671749815345,0.037448719143867],[-0.012600566260517,0.086268723011017,-0.041336670517921]],[[0.056538950651884,0.069519758224487,-0.10621136426926],[0.16277757287025,-0.0065189562737942,-0.10201433300972],[0.0001640418486204,0.10344138741493,-0.12247473746538]],[[-0.19970703125,-0.17096583545208,0.05877785384655],[-0.04084799811244,-0.010458157397807,0.01415856089443],[-0.12447405606508,0.054693512618542,0.019109174609184]],[[-0.40269994735718,-0.028064612299204,-0.053361382335424],[-0.19669239223003,-0.037243813276291,-0.017031030729413],[-0.18073962628841,-0.01442351564765,0.055401131510735]],[[-0.11727011948824,-0.023598743602633,0.11293380707502],[-0.08260627835989,-0.039331272244453,0.039194442331791],[-0.039118655025959,-0.024239454418421,0.061530541628599]],[[-0.071793355047703,0.065056622028351,-0.093369111418724],[-0.15454465150833,0.060489065945148,0.049548633396626],[-0.14845471084118,0.030397800728679,0.00068987091071904]],[[0.11962348222733,0.13078446686268,-0.073955938220024],[0.1354084610939,-0.030435372143984,-0.0019779826980084],[0.054270412772894,-0.006424106657505,-0.02566547319293]],[[0.29989686608315,0.037273269146681,-0.17304737865925],[0.17231050133705,-0.046303458511829,-0.14378535747528],[0.11254636198282,-0.011130396276712,-0.2241915166378]],[[0.091260559856892,0.054559912532568,-0.18062211573124],[0.029384048655629,0.029317082837224,-0.12181848287582],[0.047540117055178,0.017835298553109,-0.019913712516427]],[[-0.10606567561626,-0.098258912563324,0.051170963793993],[0.016997333616018,-0.033488880842924,0.091218054294586],[-0.17565900087357,-0.085956886410713,0.089495182037354]],[[-0.0098979445174336,-0.12258455902338,-0.015628473833203],[0.038378823548555,-0.075131699442863,0.079733796417713],[0.09318683296442,0.028568770736456,-0.16264486312866]],[[-0.021840369328856,0.038221746683121,-0.018227571621537],[-0.0033988223876804,-0.00085666391532868,-0.042522765696049],[0.22130954265594,-0.07076770067215,0.096591219305992]],[[3.9556136471219e-05,-0.0022498606704175,0.034839790314436],[-0.013905283994973,-0.060995601117611,-0.10356469452381],[-0.0026582842692733,-0.015470553189516,0.067250616848469]],[[0.075343087315559,0.0063085230067372,0.076248332858086],[0.22709825634956,-0.011864597909153,0.087759375572205],[-0.019239788874984,0.059157885611057,0.045013640075922]],[[0.19849213957787,-0.054729003459215,0.01051009632647],[0.08512419462204,0.052366957068443,0.010765160433948],[0.019284579902887,-0.030261967331171,0.054737843573093]],[[-0.010550742037594,0.0062845293432474,-0.046959038823843],[-0.0034531587734818,0.11555881798267,-0.089529030025005],[-0.18008828163147,-0.029117535799742,0.062194868922234]],[[0.011732324026525,0.060600142925978,0.066709503531456],[0.017157331109047,-0.10643059015274,0.091663867235184],[-0.072626896202564,-0.023504186421633,0.14846387505531]],[[-0.10066935420036,0.046884562820196,0.05735070630908],[-0.086156405508518,0.062038209289312,-0.062949202954769],[0.072911813855171,0.0128003815189,0.041423048824072]],[[0.13213366270065,0.046403232961893,-0.024662472307682],[0.1847043633461,-0.032035298645496,-0.080465853214264],[0.14469167590141,-0.0020242123864591,0.015399214811623]],[[-0.080331444740295,0.028572849929333,-0.012712623924017],[0.074513852596283,0.090081803500652,0.010553909465671],[0.012740605510771,-0.053009200841188,-0.06221579015255]],[[-0.21419711410999,-0.086198844015598,0.071416057646275],[-0.1570611000061,-0.022715106606483,-0.047676369547844],[-0.32689890265465,0.064893648028374,0.12872345745564]],[[0.12990060448647,-0.071399532258511,-0.05436647683382],[0.13269257545471,0.0054276548326015,0.0078313499689102],[0.036738403141499,-0.024946864694357,-0.056495435535908]],[[-0.098105184733868,-0.057063385844231,-0.039850629866123],[-0.12076438218355,-0.027528364211321,0.036706231534481],[-0.071541868150234,0.035500973463058,0.10270176827908]],[[-0.066751383244991,0.080110944807529,-0.096403770148754],[-0.07207527756691,-0.023603638634086,-0.045320451259613],[-0.077974990010262,0.05156734585762,0.0069963266141713]],[[-0.170560374856,-0.080279253423214,0.13596674799919],[-0.17777785658836,0.050188317894936,0.11505803465843],[-0.11857873946428,0.020801294595003,0.030054112896323]],[[-0.055880136787891,0.030686004087329,0.072935178875923],[-0.083195738494396,0.040949646383524,-0.010315102525055],[0.082797199487686,0.031906194984913,-0.09898329526186]],[[0.10039802640676,-0.02594000659883,-0.031756792217493],[-0.069729790091515,-0.031041376292706,0.022981867194176],[-0.058225926011801,0.053676892071962,0.068844057619572]],[[0.18936190009117,-0.060857370495796,-0.07983636111021],[0.022346476092935,-0.039604295045137,0.051697060465813],[0.044534523040056,0.038490150123835,-0.205232873559]],[[-0.097921058535576,-0.0011689709499478,-0.015049744397402],[-0.11712875962257,-0.049951542168856,-0.08727702498436],[-0.066494598984718,-0.090025171637535,-0.055366527289152]],[[0.1078894585371,0.096352823078632,0.027463944628835],[-0.018496820703149,0.02524359151721,0.029088225215673],[0.064937762916088,-0.024335887283087,0.046477690339088]],[[-0.025114642456174,0.01734147593379,-0.13064260780811],[-0.021855648607016,-0.035396184772253,-0.042871955782175],[-0.0076521425507963,-0.044698610901833,-0.052732668817043]],[[-0.13274982571602,-0.11042326688766,-0.011644346639514],[0.033231806010008,0.068533480167389,0.079584516584873],[-0.0068688900209963,-0.0080622518435121,0.091558277606964]],[[-0.010112427175045,0.061019763350487,0.015198305249214],[-0.084479570388794,-0.045270927250385,-0.050780799239874],[-0.019943268969655,0.10746145248413,0.021210711449385]],[[-0.094281643629074,0.010218921117485,-0.11450612545013],[-0.18154805898666,0.068252019584179,0.0226562153548],[-0.19830960035324,-0.035818982869387,0.0016334635438398]],[[-0.24761927127838,0.034054439514875,0.15600395202637],[-0.097298629581928,-0.104392580688,0.12588459253311],[0.009783623740077,0.010606211610138,0.10880372673273]],[[-0.14891093969345,0.012290275655687,0.21598567068577],[-0.14034031331539,-0.026163773611188,0.14379608631134],[0.02893004566431,-0.0047334074042737,-0.045862630009651]],[[-0.066077522933483,0.17729230225086,0.03788023814559],[0.011557872407138,0.0021868052426726,0.029794953763485],[0.0087105007842183,0.096939653158188,0.040058024227619]],[[0.038579810410738,-0.010762072168291,0.050748370587826],[-0.034949138760567,-0.078642435371876,-0.0049361330457032],[0.074132241308689,-0.049722794443369,-0.045585829764605]],[[0.046903487294912,0.0067720697261393,0.073055647313595],[0.0027592480182648,0.1274820715189,0.077014617621899],[-0.045822933316231,0.12958264350891,-0.028713408857584]],[[-0.17522113025188,0.046504229307175,0.038826640695333],[-0.13638336956501,0.09737590700388,-0.030071783810854],[0.13737100362778,0.0037569468840957,0.11470801383257]],[[-0.21754445135593,0.062510199844837,-0.0012696572812274],[-0.15831634402275,0.096226267516613,-0.14480075240135],[-0.07821436971426,0.069003544747829,0.011931427754462]],[[-0.036979604512453,-0.04136548936367,0.14695490896702],[0.028871843591332,-0.056843910366297,0.1652760207653],[0.044152557849884,-0.038144268095493,0.048588190227747]],[[0.042049184441566,0.015746710821986,0.029920615255833],[0.1037991642952,-0.10059748589993,-0.0098451785743237],[0.066315665841103,0.009282698854804,0.022233910858631]],[[0.048770014196634,-0.010489044710994,0.056147288531065],[0.049287032335997,-0.032921183854342,0.17215403914452],[0.018852261826396,-0.088629558682442,0.0098921339958906]],[[-0.14220049977303,-0.08721486479044,-0.058489497750998],[0.064419947564602,-0.10025385022163,0.066896490752697],[0.095549531280994,0.0032020383514464,-0.1036900728941]],[[0.068735368549824,-0.067134164273739,0.12028362601995],[0.0056401160545647,-0.079864256083965,0.054463308304548],[-0.035374477505684,-0.030491081997752,0.04927634447813]],[[-0.028558537364006,0.022071661427617,0.11389091610909],[-0.078519411385059,-0.11588685959578,0.0037509344983846],[0.0058869789354503,0.023741969838738,-0.050750773400068]]],[[[-0.10543536394835,-0.0028757289983332,-0.22287960350513],[-0.10505199432373,-0.055664271116257,0.073726616799831],[-0.13663280010223,-0.025812866166234,0.011887811124325]],[[-0.0045851315371692,-0.054235562682152,0.0018330754246563],[0.046920087188482,-0.035602804273367,0.11653289198875],[-0.063758879899979,0.015369616448879,-0.013484900817275]],[[-0.037478324025869,-0.041712887585163,0.092132367193699],[-0.032106835395098,0.069425202906132,-0.06089099869132],[-0.20162568986416,-0.082923650741577,-0.031092721968889]],[[0.18518073856831,-0.037700161337852,0.049353543668985],[-0.13275212049484,0.076380357146263,0.10097562521696],[-0.043570447713137,-0.18452540040016,-0.22352389991283]],[[0.0068497583270073,-0.023292722180486,-0.074588611721992],[0.017116026952863,0.0088073033839464,-0.26309913396835],[0.033111725002527,0.035906717181206,0.011199982836843]],[[-0.014872844330966,-0.076629310846329,-0.13155190646648],[0.0054111932404339,0.039390981197357,0.10629244148731],[-0.041449334472418,-0.15117436647415,-0.16490599513054]],[[-0.0084785344079137,-0.025068702176213,-0.093623951077461],[-0.13681465387344,-0.064016126096249,-0.077049352228642],[0.040121950209141,0.18344762921333,-0.079921238124371]],[[-0.027846619486809,0.04408647492528,-0.11839302629232],[-0.12381655722857,0.017479557543993,-0.068356819450855],[0.016463534906507,-0.11844997853041,-0.0060242586769164]],[[0.053243510425091,-0.05552326887846,-0.09720204025507],[-0.13847376406193,-0.10264533758163,-0.061169169843197],[0.024966306984425,-0.088357903063297,-0.045783005654812]],[[-0.017448045313358,0.058254297822714,-0.00045033596688882],[-0.010595270432532,-0.04324584081769,0.025148013606668],[-0.11112455278635,-0.23020236194134,-0.11133933067322]],[[-0.0017331026028842,0.053840879350901,-0.072301164269447],[-0.015576807782054,0.08934959769249,-0.013746329583228],[-0.058540459722281,-0.17450058460236,-0.02214440703392]],[[-0.029405273497105,0.06308438628912,0.11352399736643],[-0.032504227012396,-0.0073135234415531,-0.029113991186023],[-0.012736996635795,0.0052565541118383,-0.055927999317646]],[[0.020872194319963,0.012954145669937,-0.10155837982893],[-0.048982918262482,0.030425809323788,0.063991069793701],[-0.027183098718524,0.00066090223845094,-0.043929904699326]],[[-0.13829043507576,0.089970164000988,0.10716784745455],[-0.081243574619293,-0.0087193297222257,0.021719390526414],[-0.070621348917484,0.037538755685091,0.076437249779701]],[[-0.026562599465251,-0.13782022893429,-0.044334623962641],[-0.05769345536828,-0.0044345823116601,0.025627186521888],[-0.011648539453745,-0.093622542917728,0.065731093287468]],[[-0.076838560402393,-0.085381105542183,0.09361057728529],[-0.055328041315079,0.004518577363342,-0.058377720415592],[-0.07965612411499,0.059708923101425,0.13389886915684]],[[-0.054569721221924,-0.10800146311522,-0.052257891744375],[-0.021806564182043,-0.042226776480675,-0.014605451375246],[0.0069790929555893,-0.010205155238509,-0.05968314409256]],[[-0.044415157288313,-0.039320670068264,0.0027551907114685],[-0.010864099487662,-0.050673384219408,0.038416925817728],[0.0012173617724329,0.08450985699892,-0.01114787440747]],[[0.083402767777443,-0.014012550935149,-0.1474047601223],[-0.15689937770367,0.049002535641193,-0.064672686159611],[-0.12863247096539,0.095272019505501,0.059374202042818]],[[-0.070367574691772,0.018348244950175,-0.0074453195556998],[-0.082493141293526,-0.14444577693939,0.096981406211853],[-0.076156742870808,-0.14149713516235,-0.15574733912945]],[[0.20048920810223,0.1544471681118,0.04676741361618],[-0.031977847218513,-0.059474088251591,-0.019922306761146],[-0.0049930503591895,-0.064076714217663,-0.010482655838132]],[[-0.10237494856119,-0.0082799643278122,0.039694458246231],[-0.0097251897677779,0.045501291751862,0.046835325658321],[-0.054472703486681,-0.048709083348513,-0.05907566845417]],[[0.096274212002754,-0.010486980900168,-0.020233465358615],[0.018539059907198,-0.11209411174059,-0.066531777381897],[-0.032851617783308,-0.041340172290802,-0.019896162673831]],[[0.17227171361446,0.066240534186363,0.0075042434036732],[0.018542213365436,0.0069106542505324,-0.15386945009232],[0.0021723776590079,0.025787133723497,-0.022737884894013]],[[0.17175163328648,0.16025967895985,-0.086917892098427],[0.039895042777061,0.12911793589592,-0.068801432847977],[0.032548919320107,-0.0033819261007011,0.021501135081053]],[[0.035605680197477,-0.12570960819721,-0.05104748159647],[0.11712743341923,-0.056788265705109,-0.022127086296678],[-0.021871039643884,0.00092151528224349,0.057239878922701]],[[0.10386092960835,0.057059582322836,0.033963039517403],[-0.026099411770701,-0.011528621427715,-0.10537447780371],[-0.13506342470646,-0.05223223567009,-0.023604856804013]],[[-0.01607509329915,0.012863696552813,-0.16038773953915],[0.012379775755107,-0.033251021057367,0.11768208444118],[-0.1035273745656,0.071572609245777,-0.066955976188183]],[[0.077896989881992,-0.037723518908024,0.017943531274796],[-0.090637341141701,-0.10709749162197,0.067169480025768],[-0.045884154736996,-0.032835122197866,-0.12838155031204]],[[-0.074842169880867,-0.0081934118643403,0.024465588852763],[-0.050478011369705,0.0021621377673,-0.0014042598195374],[0.053662281483412,0.024175645783544,-0.11852644383907]],[[0.0040705539286137,-0.098076745867729,0.1081208884716],[-0.20523503422737,0.02917187102139,0.12577943503857],[0.01253311894834,0.028002578765154,0.072164587676525]],[[0.03507312014699,0.01740856282413,0.012916035950184],[0.010914114303887,-0.077932499349117,0.037584826350212],[0.13402192294598,-0.0075715342536569,0.12634509801865]],[[0.14521041512489,-0.0022799177095294,-0.021165629848838],[0.0086067095398903,0.067141897976398,-0.051043186336756],[-0.054626755416393,0.088862277567387,0.11077605932951]],[[-0.078527182340622,-0.0054034204222262,-0.040768932551146],[0.16840170323849,0.0067215650342405,0.066522590816021],[-0.070966966450214,-0.11887424439192,-0.1231948658824]],[[-0.10732334852219,-0.11629323661327,0.14021930098534],[-0.043658878654242,-0.049333203583956,-0.036129496991634],[-0.080655753612518,-0.11218214035034,-0.05839029327035]],[[0.0056553180329502,0.15706613659859,0.14764036238194],[0.042018044739962,-0.104816429317,-0.1002284064889],[0.044316034764051,-0.024625146761537,0.038543790578842]],[[0.30562102794647,0.18802757561207,0.063753210008144],[0.055723797529936,-0.094616673886776,0.041001282632351],[-0.1389020383358,-0.0055905301123857,0.076345913112164]],[[0.11180478334427,-0.064520910382271,0.029972868040204],[0.026623137295246,-0.032479211688042,-0.12656396627426],[-0.12851321697235,-0.068471178412437,0.042615618556738]],[[0.034689903259277,-0.033583108335733,-0.10288175940514],[0.037617299705744,0.015715900808573,-0.20899470150471],[0.044520691037178,-0.032084826380014,-0.17429038882256]],[[0.011827349662781,-0.062756776809692,-0.05829806253314],[-0.011014396324754,-0.048066645860672,-0.1580863147974],[-0.092053353786469,0.0046243765391409,0.035949490964413]],[[-0.028419137001038,-0.066104397177696,-0.03214555606246],[-0.047940369695425,-0.055125307291746,0.084412693977356],[-0.064022369682789,-0.033900734037161,-0.0017892724135891]],[[0.074430108070374,-0.050353925675154,-0.049828484654427],[0.03550261631608,-0.042178891599178,-0.0086611248552799],[-0.021444819867611,0.034257389605045,-0.030673766508698]],[[0.030077127739787,-0.00054445816203952,0.038753874599934],[0.031804885715246,-0.10880789160728,-0.031214850023389],[-0.0044680354185402,-0.034673158079386,0.20186366140842]],[[-0.0097291152924299,-0.057121880352497,0.12492242455482],[-0.078330829739571,-0.10468687862158,-0.048759005963802],[0.030261244624853,0.097167365252972,-0.0028222140390426]],[[-0.066366910934448,-0.05963321402669,0.068909659981728],[-0.1160319969058,0.054531190544367,0.21839581429958],[-0.09608007222414,-0.0057763778604567,0.04588283598423]],[[0.017432114109397,0.075391545891762,0.016780128702521],[0.071598619222641,-0.088646396994591,0.19929020106792],[-0.00038816718733869,-0.043181721121073,-0.0232944637537]],[[-0.18474721908569,-0.15157489478588,-0.15750589966774],[0.11322046816349,0.035073820501566,0.12308076769114],[-0.018029153347015,0.11529817432165,-0.1575480401516]],[[0.035527735948563,0.024117592722178,-0.088885650038719],[0.022353038191795,0.017456857487559,-0.015419556759298],[-0.14405089616776,-0.039571456611156,0.033745374530554]],[[0.046006768941879,0.083028554916382,-0.1303662955761],[-0.0305145829916,-0.034326031804085,-0.089976817369461],[-0.01752582192421,0.028249248862267,0.052845019847155]],[[0.069210946559906,0.010899639688432,-0.013253496028483],[0.037395946681499,-0.093159563839436,-0.0939926430583],[0.073234558105469,0.088102124631405,-0.043601669371128]],[[-0.0024557136930525,-0.19438476860523,0.017728056758642],[0.075544938445091,-0.034863390028477,-0.1589320152998],[-0.1126601845026,0.025661827996373,-0.2070729881525]],[[-0.13494409620762,-0.10471752285957,0.05882029235363],[0.15992642939091,0.08818631619215,0.011682815849781],[-0.18205676972866,-0.24434213340282,0.042331639677286]],[[0.22897917032242,0.014115083031356,0.01287948153913],[-0.00089167163241655,-0.093643352389336,0.029917450621724],[-0.076528497040272,-0.12773925065994,0.021829515695572]],[[-0.074970029294491,-0.017561051994562,-0.012606753967702],[-0.11134088784456,-0.060172442346811,0.014355922117829],[-0.019711401313543,-0.035057842731476,-0.00089068821398541]],[[0.03816257044673,-0.08220911771059,-0.062461394816637],[-0.090300545096397,-0.090933442115784,0.013825179077685],[-0.095207653939724,-0.08390299975872,-0.065688624978065]],[[0.023940352723002,0.024211991578341,0.057093545794487],[0.030908316373825,-0.0075912489555776,0.068496890366077],[-0.013440302573144,-0.034713663160801,-0.076265454292297]],[[-0.13420544564724,0.0038963675033301,0.12415061146021],[0.092791467905045,-0.0094084432348609,0.018451493233442],[-0.0068793394602835,0.0012466431362554,0.079590439796448]],[[0.07584910094738,0.063792891800404,-0.0010629813186824],[-0.0055143674835563,-0.0099689187481999,0.054423086345196],[0.068809181451797,0.052274372428656,0.12408922612667]],[[-0.0073388111777604,-0.0013589159352705,0.0050870152190328],[0.037023231387138,0.05428846552968,-0.045099571347237],[0.093646697700024,0.068247549235821,0.052769489586353]],[[0.029848448932171,0.073919370770454,0.19648343324661],[-0.13848951458931,0.015555589459836,0.11347299814224],[0.0072666723281145,0.05101290717721,-0.043220337480307]],[[-0.12437300384045,-0.013057532720268,0.027521831914783],[0.013969632796943,0.018746711313725,-0.024923540651798],[0.03013208694756,-0.045665998011827,-0.070652447640896]],[[-0.069285161793232,0.012778973206878,0.082593254745007],[-0.024999160319567,-0.084158629179001,0.059895146638155],[0.14713656902313,-0.048794016242027,-0.012732738628983]],[[-0.18088436126709,-0.06532296538353,-0.073993384838104],[0.059316702187061,0.020782481878996,-0.02260042540729],[0.014979376457632,-0.012083700858057,0.069650515913963]],[[0.10702051222324,-0.010522480122745,0.052172765135765],[-0.10083392262459,0.097746707499027,-0.055547650903463],[-0.19822151958942,-0.13633927702904,-0.086931802332401]]],[[[-0.044449333101511,-0.11185032874346,0.013025789521635],[0.015750173479319,0.069718584418297,-0.046883720904589],[0.030956875532866,0.070685394108295,0.10202179849148]],[[0.063820704817772,-0.058414824306965,-0.060304269194603],[-0.027712421491742,0.0085902065038681,0.089777864515781],[-0.01441543083638,-0.042733982205391,0.0066855070181191]],[[-0.15264888107777,-0.0016144849359989,-0.19037647545338],[-0.064107276499271,-0.019798383116722,-0.045555084943771],[-0.070444487035275,-0.0023784171789885,-0.0007172001642175]],[[-0.011060380376875,-0.080490164458752,-0.011021571233869],[-0.036449931561947,0.092331238090992,-0.12651336193085],[-0.1625510007143,-0.041201021522284,-0.10240293294191]],[[0.0019863815978169,0.061679288744926,-0.053164768964052],[-0.032255969941616,-0.045686390250921,-0.10356856137514],[-0.065871305763721,0.013272635638714,0.021500842645764]],[[-0.032895762473345,-0.12475256621838,-0.049248728901148],[0.049981873482466,-0.016082715243101,0.034362979233265],[-0.045630931854248,-0.0093192169442773,0.060875378549099]],[[0.10909666121006,-0.019572760909796,-0.091410972177982],[-0.01736669242382,-0.034145716577768,-0.028899434953928],[0.028275799006224,0.076928697526455,0.074106365442276]],[[0.00633525243029,0.033849447965622,0.0053780805319548],[0.10693740844727,0.087274968624115,-0.087577894330025],[-0.091009542346001,0.0182148180902,-0.038748446851969]],[[-0.15013505518436,0.092496290802956,0.057880826294422],[-0.021459536626935,0.0094626992940903,-0.030539765954018],[-0.19475290179253,0.11672749370337,-0.041661988943815]],[[0.13344775140285,-0.087354876101017,-0.1489634513855],[0.023565990850329,-0.092143662273884,-0.014160335063934],[-0.050009418278933,-0.018926311284304,0.10972023755312]],[[0.0093414727598429,-0.058731805533171,-0.080053269863129],[-0.034358207136393,-0.0013739771675318,-0.0046449592337012],[0.095184735953808,0.039874702692032,-0.028630554676056]],[[-0.15381050109863,-0.093320652842522,-0.13539069890976],[0.052074283361435,0.10700585693121,-0.20796251296997],[-0.074103347957134,0.087887763977051,-0.045848183333874]],[[-0.039137776941061,-0.024902848526835,-0.021365383639932],[-0.016484078019857,-0.098089568316936,0.070010907948017],[0.078519098460674,-0.056575383991003,-0.033010195940733]],[[-0.073087237775326,-0.093599379062653,0.050256341695786],[0.065966971218586,-0.049696192145348,0.12923847138882],[-0.044429682195187,-0.070056155323982,-0.039963681250811]],[[0.013052552938461,-0.040917191654444,-0.098647341132164],[0.064696595072746,0.0049455515109003,-0.031078709289432],[0.038599032908678,0.020812748000026,-0.056973084807396]],[[0.018822783604264,0.060838762670755,-0.21688129007816],[0.012016721069813,-0.071326471865177,-0.04442722722888],[-0.044438995420933,0.12560220062733,-0.099288091063499]],[[0.016218941658735,0.077986255288124,0.1216919273138],[0.02238998375833,0.059945367276669,0.036017082631588],[0.12611362338066,0.12269363552332,-0.042164523154497]],[[0.065130777657032,0.0062632882036269,-0.093018367886543],[-0.043951198458672,0.023009633645415,0.011484958231449],[0.033410910516977,0.080211296677589,-0.10301721096039]],[[0.04015814140439,-0.062159366905689,-0.0060632871463895],[0.081843845546246,-0.070756517350674,-0.066215127706528],[-0.0007339637959376,-0.088490977883339,0.017613878473639]],[[-0.084894470870495,-0.11591272056103,0.035934492945671],[-0.069531366229057,-0.13359090685844,0.033087309449911],[-0.083432212471962,-0.037322327494621,-0.1357831209898]],[[0.029547015205026,0.036436922848225,0.081722684204578],[0.083150394260883,-0.062625057995319,0.10148358345032],[-0.021680880337954,-0.05889193713665,-0.043966185301542]],[[-0.056021299213171,0.065191797912121,-0.02274521254003],[-0.0034278205130249,0.030327059328556,-0.064689002931118],[-0.073381796479225,-0.016109125688672,-0.021834146231413]],[[-0.026406109333038,0.066344499588013,0.0057188156060874],[-0.022491496056318,-0.013219961896539,-0.1957096606493],[-0.03891583904624,-0.0092987176030874,-0.070951014757156]],[[-0.069241836667061,-0.10364867001772,0.13020695745945],[0.09738440066576,0.024549011141062,0.12317449599504],[0.10266543924809,-0.15183264017105,-0.13126239180565]],[[-0.0091058248654008,0.066899120807648,0.14424487948418],[0.076780050992966,0.012397214770317,0.042100433260202],[0.023018434643745,0.040932264178991,0.033861964941025]],[[-0.041699156165123,0.05559266358614,0.0071446625515819],[-0.086468935012817,0.047574907541275,0.019484480842948],[-0.035950552672148,0.047589890658855,0.045966394245625]],[[0.065373674035072,0.11877344548702,0.027500052005053],[0.010452583432198,0.05448380112648,-0.12433972209692],[0.070873975753784,0.013573319651186,-0.095956966280937]],[[0.087619423866272,-0.10254471004009,-0.0020519061945379],[0.026986034587026,-0.17710161209106,-0.005107160191983],[0.012543261982501,-0.031202342361212,0.045829780399799]],[[-0.070459321141243,0.034695830196142,0.01976833678782],[-0.0082779210060835,-0.014400188811123,0.039804503321648],[-0.0075308009982109,-0.010919535532594,-0.05291810259223]],[[-0.051795821636915,0.0063802334479988,0.081517972052097],[0.077992528676987,0.015933347865939,-0.0040528140962124],[-0.02340898476541,-0.10804868489504,-0.010241062380373]],[[-0.10814140737057,-0.016935136169195,-0.036227084696293],[-0.057359918951988,0.070922888815403,0.03705708310008],[0.014228982850909,-0.029432022944093,-0.1274059265852]],[[-0.035346057265997,-0.18204842507839,-0.14150521159172],[-0.005781339481473,-0.043116845190525,-0.029623275622725],[0.18566611409187,-0.0060742986388505,0.036060608923435]],[[0.10364413261414,-0.19537542760372,0.0071218898519874],[0.10528059303761,-0.0080949896946549,-0.052526745945215],[-0.080684833228588,-0.058942679315805,-0.14871528744698]],[[0.04451734572649,-0.010859504342079,-0.090684168040752],[-0.08938805013895,-0.011185934767127,0.086144216358662],[0.036155264824629,-0.12350653111935,-0.039071079343557]],[[0.043229773640633,-0.0087521970272064,-0.026747120544314],[0.12327890098095,0.08649954944849,0.12272039800882],[-0.11865816265345,0.077043525874615,-0.0089588621631265]],[[-0.039847984910011,-0.06551019102335,-0.019597627222538],[0.023451458662748,0.0023747682571411,0.11784435063601],[-0.051681511104107,0.15076161921024,0.12323600798845]],[[0.068274982273579,0.054511293768883,0.072315737605095],[-0.032666351646185,0.087590754032135,0.017488278448582],[0.056947093456984,0.0043157930485904,0.011256118305027]],[[-0.028426084667444,-0.027686016634107,-0.0049852677620947],[0.059657514095306,-0.029521254822612,0.077146612107754],[-0.048822421580553,0.14426526427269,-0.039062213152647]],[[-0.050262100994587,-0.016502870246768,0.051271818578243],[-0.015029524452984,0.004138614051044,0.046523753553629],[0.029757007956505,-0.040221732109785,0.14350996911526]],[[-0.045204419642687,0.11896267533302,-0.017552305012941],[-0.10623859614134,0.055804014205933,0.036339070647955],[0.082850381731987,-0.075070306658745,-0.092052526772022]],[[-0.064697988331318,-0.12867948412895,0.067813202738762],[0.035499408841133,0.026816638186574,0.050839435309172],[-0.040224332362413,-0.065080694854259,-0.057326424866915]],[[0.004735040012747,0.064207956194878,0.053898837417364],[0.054082576185465,-0.049767807126045,0.038679357618093],[-0.024383192881942,-0.012473980896175,-0.027819219976664]],[[-0.0091953277587891,-0.034272514283657,0.012162456288934],[0.016688412055373,-0.14626318216324,-0.0053748995997012],[-0.012818912044168,-0.0035809236578643,-0.028383519500494]],[[0.12575609982014,-0.062003947794437,-0.017400583252311],[-0.0069171413779259,0.024021318182349,-0.024787994101644],[-0.190106138587,0.13573817908764,-0.069941267371178]],[[0.023717360571027,0.025562070310116,0.0094194328412414],[-0.098478138446808,0.052263472229242,0.031048260629177],[0.040731571614742,0.043604910373688,0.07414486259222]],[[-0.018015772104263,0.02832006663084,-0.02899581193924],[-0.029979649931192,-0.12863720953465,-0.06954650580883],[0.039469614624977,0.0078915981575847,0.055039409548044]],[[-0.048174012452364,0.012620475143194,0.037699833512306],[-0.015594333410263,0.0043071676045656,-0.11061891913414],[0.018488185480237,-0.051268789917231,0.07748956233263]],[[0.024621177464724,0.024595245718956,0.049719341099262],[-0.054510988295078,-0.024011431261897,0.054664008319378],[0.023270379751921,-0.0081183090806007,-0.024153908714652]],[[-0.10092429816723,-0.052079193294048,0.022562218829989],[-0.073364399373531,-0.054489016532898,-0.056524537503719],[0.023364027962089,-0.035359784960747,0.097073286771774]],[[-0.024969736114144,-0.089543096721172,-0.01931918784976],[0.039262570440769,0.1160543859005,0.0039525809697807],[-0.017519161105156,0.05296415835619,0.040448281913996]],[[-0.20430913567543,0.014695060439408,-0.038877241313457],[-0.00033278670161963,-0.04519747197628,0.0070680910721421],[0.11133888363838,0.0067330696620047,0.16531018912792]],[[-0.036873057484627,-0.014912529848516,-0.1138789281249],[-0.18818153440952,0.095319524407387,-0.026774978265166],[-0.00058929499937221,-0.028793670237064,-0.070333749055862]],[[-0.064522877335548,0.0054912064224482,-0.021564906463027],[0.022698104381561,-0.053596951067448,0.035930678248405],[0.07040724158287,-0.053038116544485,-0.045709390193224]],[[0.0091934548690915,-0.032658219337463,-0.033022072166204],[-0.0089375907555223,0.078613787889481,0.022273017093539],[0.035917218774557,-0.14250676333904,0.023093495517969]],[[-0.024017045274377,0.083156198263168,0.0007328589563258],[0.0079463701695204,0.031112719327211,-0.064613670110703],[-0.00065124518005177,0.022936556488276,0.10405230522156]],[[-0.15906390547752,-0.088792003691196,-0.026968384161592],[0.05107407271862,0.024636192247272,0.00058159534819424],[-0.15767356753349,-0.013608461245894,-0.15079782903194]],[[0.050398152321577,-0.12077268213034,-0.079899027943611],[-0.03038945235312,0.078837670385838,-0.023295123130083],[-0.052752029150724,0.025458922609687,-0.018372774124146]],[[-0.079597070813179,-0.0011292328126729,-0.029562441632152],[-0.010204018093646,0.031993739306927,-0.032675985246897],[-0.0068145208060741,0.11774879693985,-0.095639258623123]],[[0.050374429672956,0.10109457373619,0.037151210010052],[-0.0052663730457425,0.082068711519241,0.073389977216721],[0.073503389954567,0.031426023691893,0.12261290848255]],[[-0.077960699796677,-0.060342554003,-0.066088549792767],[-0.0015154645079747,-0.015918368473649,-0.146928191185],[0.073647350072861,0.028663149103522,-0.077752649784088]],[[0.030444229021668,0.090694211423397,0.014704387634993],[-0.0075760032050312,-0.057987064123154,-0.085734821856022],[0.01065708976239,-0.033728029578924,0.089250981807709]],[[0.12622562050819,-0.072150610387325,-0.079510204493999],[-0.075490288436413,0.049232430756092,-0.045086227357388],[0.043146502226591,-0.014042974449694,-0.0065244906581938]],[[0.01061678212136,0.15363635122776,0.067915968596935],[-0.047614209353924,-0.0210384093225,0.011755219660699],[0.054763711988926,0.10512883216143,0.10538660734892]],[[-0.11493496596813,-0.055780623108149,0.018982520326972],[-0.065015867352486,-0.072837069630623,-0.012189452536404],[-0.0024236808530986,0.026782834902406,-0.017371129244566]]],[[[-0.068990290164948,-0.070594303309917,-0.098913505673409],[-0.043474558740854,0.084641888737679,-0.010041931644082],[0.015301982872188,-0.027024243026972,0.039677899330854]],[[-0.09845619648695,-0.071500092744827,0.028148511424661],[-0.013095583766699,-0.1306795924902,-0.023413190618157],[-0.13266272842884,0.02257221005857,-0.1479789763689]],[[-0.033474445343018,0.01290244422853,-0.03256819024682],[6.3178580603562e-05,-0.053505524992943,-0.044027846306562],[0.022777579724789,-0.018726855516434,-0.062058832496405]],[[-0.074096150696278,-0.031782738864422,-0.0039603989571333],[0.057308666408062,-0.10053515434265,-0.030820989981294],[0.061316035687923,0.10765428841114,-0.020829712972045]],[[-0.085882186889648,0.047654636204243,-0.0084998607635498],[-0.2000982016325,-0.020060326904058,0.012135691009462],[0.056217432022095,0.075988195836544,0.14053624868393]],[[-0.010572307743132,-0.050462707877159,0.072952412068844],[-0.010666411370039,-0.00090107077267021,-0.029986787587404],[-0.015515008941293,0.022301912307739,-0.0047723259776831]],[[0.063089437782764,-0.03849096223712,-0.079752236604691],[0.055370822548866,0.076765805482864,-0.078759998083115],[-0.076681300997734,0.0326172336936,-0.02918928489089]],[[-0.10016869008541,-0.024129200726748,0.015193091705441],[-0.02541077695787,-0.034627135843039,-0.084829196333885],[0.035487297922373,0.085567317903042,0.043138563632965]],[[0.0054360120557249,0.044093120843172,-0.027753334492445],[-0.092688120901585,-0.05282735824585,0.027221402153373],[0.016781859099865,0.088728576898575,0.068477883934975]],[[0.036498423665762,-0.022659931331873,-0.1027595102787],[0.0071137817576528,-0.067198872566223,0.024976417422295],[0.23279468715191,-0.059639990329742,-0.11612139642239]],[[0.06273140758276,0.061799101531506,0.034204699099064],[-0.06216150149703,-0.065438687801361,-0.0079812807962298],[0.12994037568569,-0.090314120054245,0.10127864032984]],[[0.034965269267559,0.058745056390762,0.051876708865166],[-0.058663457632065,-0.089188195765018,0.018328882753849],[0.042271386831999,0.064303487539291,-0.018740504980087]],[[0.09329604357481,0.10490562021732,0.020032716915011],[0.034893967211246,0.073892094194889,0.078094802796841],[0.0261624827981,-0.02291663736105,0.034458976238966]],[[-0.23688746988773,-0.14178016781807,-0.15094643831253],[0.10923241823912,0.11957441270351,0.19063338637352],[0.067473731935024,0.12073605507612,-0.06263343244791]],[[-0.1330583691597,-0.12447789311409,-0.020019043236971],[0.049404602497816,0.017926122993231,-0.052645526826382],[-0.022356441244483,0.071713700890541,0.055574428290129]],[[-0.062012791633606,0.0058617694303393,0.097751498222351],[0.014903001487255,0.040344323962927,0.16965039074421],[0.066645726561546,-0.025437349453568,0.037574373185635]],[[-0.027409706264734,-0.10870796442032,-0.0078743183985353],[0.031383737921715,0.053619343787432,-0.012667908333242],[0.0055300365202129,0.084624342620373,0.074114128947258]],[[0.01489872019738,-0.20806112885475,-0.020550310611725],[0.1402617841959,0.095794171094894,-0.076600141823292],[-0.084116145968437,-0.1284627020359,0.00790193118155]],[[0.087635017931461,0.020406160503626,-0.16641214489937],[-0.076219268143177,-0.015617767348886,0.1687081605196],[-0.15847630798817,-0.039954345673323,-0.037609271705151]],[[0.046008430421352,-0.035719767212868,-0.079866915941238],[0.11772333830595,0.011423396877944,0.099751047790051],[-0.1825210750103,-0.041442073881626,0.050397202372551]],[[0.0068056313320994,0.076629303395748,0.0037336479872465],[0.028608828783035,0.0092769293114543,0.08229099214077],[0.00033010661718436,0.037296451628208,0.033233810216188]],[[0.081878431141376,0.00086626905249432,-0.018956249579787],[-0.0030145936179906,-0.034706480801105,-0.025898801162839],[-0.083661243319511,0.018597058951855,-0.050782937556505]],[[-0.002317083068192,-0.079503983259201,0.030988547950983],[-0.032722450792789,-0.0097267562523484,-0.14047801494598],[0.02073965780437,0.048167370259762,-0.067540094256401]],[[-0.074626564979553,0.16631799936295,-0.046966858208179],[0.15340971946716,0.059744533151388,0.089611046016216],[0.0061221872456372,-0.1247758641839,-0.10299932211637]],[[-0.066597647964954,-0.15591096878052,-0.14231193065643],[0.38221848011017,0.092050924897194,0.096126541495323],[0.04975038766861,0.097154252231121,0.15388336777687]],[[-0.0030444462317973,-0.057107705622911,-0.010787355713546],[0.073105975985527,-0.036041997373104,0.0079445671290159],[0.015658427029848,-0.010835795663297,0.030222982168198]],[[0.041781034320593,-0.00012140048056608,0.023015620186925],[0.057305656373501,0.10160319507122,0.067482180893421],[-0.045526664704084,-0.130968272686,-0.18375255167484]],[[-0.063012525439262,0.071448437869549,0.058171547949314],[0.005372173152864,-0.028350342065096,-0.11240153759718],[-0.13121965527534,-0.066472008824348,-0.05552451685071]],[[-0.001310495310463,-0.10328564047813,-0.012554180808365],[-0.019180467352271,-0.059328228235245,0.009731781668961],[-0.055908191949129,-0.11705046892166,-0.1178226172924]],[[0.15672460198402,-0.085696086287498,-0.069261066615582],[0.11046370863914,0.06337458640337,0.012427021749318],[-0.044323954731226,-0.031204916536808,0.05092179402709]],[[0.03581915050745,-0.01297059841454,-0.061874464154243],[0.057280603796244,-1.8120796084986e-05,-0.030312273651361],[-0.12495868653059,0.045491550117731,-0.016345435753465]],[[0.0080982325598598,0.08321475982666,0.15533231198788],[0.059506148099899,0.11095817387104,0.19970168173313],[0.090300433337688,0.0087227374315262,-0.031159203499556]],[[0.16238848865032,-0.030390374362469,-0.052927199751139],[0.045540206134319,-0.074503861367702,-0.11681467294693],[0.08488380163908,0.13903640210629,0.017720611765981]],[[0.062019102275372,0.069583356380463,-0.048651788383722],[-0.05460287630558,-0.021409533917904,-0.0027895199600607],[-0.14082114398479,0.03098270483315,0.16782677173615]],[[-0.077587939798832,-0.019762234762311,-0.054973114281893],[0.15419511497021,0.061625603586435,-0.088987790048122],[-0.11594011634588,0.096906237304211,-0.075005613267422]],[[-0.078585043549538,0.098231688141823,0.10382156074047],[0.074746213853359,-0.023157268762589,0.045063097029924],[0.030981238931417,0.066552549600601,-0.091203302145004]],[[-0.18295313417912,-0.094903416931629,-0.046577323228121],[-0.00470738299191,0.011513749137521,-0.12382651120424],[0.10257811844349,-0.085334524512291,-0.13960419595242]],[[0.016125213354826,0.037862084805965,0.091605588793755],[-0.047151211649179,-0.11905054003,0.085411623120308],[0.049930289387703,0.050476875156164,-0.17138513922691]],[[-0.23475976288319,-0.17630198597908,-0.027135398238897],[-0.15417936444283,-0.075055651366711,-0.066142141819],[-0.055896483361721,0.12621262669563,-0.017194144427776]],[[0.096364744007587,0.068629667162895,0.060904331505299],[0.042421903461218,0.064683198928833,-0.01839223317802],[-0.054417196661234,-0.068591497838497,-0.16151183843613]],[[-0.056887865066528,0.11335615813732,0.090880699455738],[0.073158912360668,-0.0026554756332189,0.066559031605721],[-0.063922367990017,0.12070367485285,-0.088377214968204]],[[-0.013689190149307,-0.0046126265078783,0.036085281521082],[0.031564317643642,0.079609178006649,-0.098501995205879],[-0.12440884113312,0.090214781463146,0.0074181784875691]],[[-0.18173049390316,-0.093285419046879,-0.00083124591037631],[0.057407822459936,0.025472642853856,0.068720519542694],[0.02469427511096,0.17256914079189,-0.017683321610093]],[[-0.024715036153793,-0.024951029568911,-0.082367584109306],[0.12035229057074,-0.012483345344663,-0.017053660005331],[-0.020281227305532,-0.011077046394348,0.10293052345514]],[[0.060537241399288,0.0080098295584321,-0.018470011651516],[0.10714577138424,0.0021897961851209,0.035061195492744],[-0.039374213665724,-0.12844106554985,-0.037292335182428]],[[-0.13433754444122,-0.043590161949396,0.033147525042295],[0.073883503675461,-0.054021511226892,0.15243203938007],[0.27354338765144,0.078684158623219,0.12515366077423]],[[-0.036883514374495,-0.015340381301939,-0.0017517311498523],[-0.060741543769836,0.011287455447018,-0.003606112441048],[-0.027569321915507,-0.024438226595521,-0.07164890319109]],[[0.024498423561454,-0.039770185947418,-0.10555136203766],[-0.039081614464521,0.016811735928059,-0.13977998495102],[0.090770088136196,0.078931018710136,0.017207892611623]],[[-0.099817842245102,-0.043875455856323,-0.040884729474783],[-0.030094495043159,-0.058615729212761,0.024657938629389],[-0.059455849230289,-0.025071976706386,-0.12154354155064]],[[-0.085346907377243,-0.0056182993575931,0.097502306103706],[0.091817662119865,0.18473203480244,0.11595477163792],[-0.072744533419609,-0.069939970970154,0.054805487394333]],[[-0.052341762930155,0.001958517357707,-0.0021112721879035],[-0.038296170532703,0.10343876481056,0.015752566978335],[0.019918728619814,-0.11167407780886,-0.12168380618095]],[[-0.039344161748886,-0.032977014780045,0.067401841282845],[0.023427283391356,0.14828069508076,0.030180251225829],[0.0080528194084764,0.12022069841623,0.10663609206676]],[[0.0012283088872209,-0.062272060662508,0.037008218467236],[-0.022050838917494,0.066727109253407,-0.032479975372553],[-0.00050390156684443,0.09594465047121,0.00023007272102404]],[[-0.022517286241055,-0.080042891204357,0.049514524638653],[0.15220899879932,0.0073571475222707,-0.12440997362137],[-0.0077601848170161,0.013425282202661,-0.0538096614182]],[[0.062621593475342,0.049885179847479,-0.029106324538589],[-0.081852316856384,-0.020530754700303,-0.0025255854707211],[-0.16495767235756,0.043585103005171,0.065190926194191]],[[-0.0077294241636992,-0.12820015847683,-0.043945770710707],[0.036884382367134,-0.050465062260628,-0.22409853339195],[0.052034568041563,-0.037691701203585,-0.073362275958061]],[[-0.030973739922047,0.12177012115717,0.076090767979622],[0.033632665872574,0.08814737200737,0.040343467146158],[-0.072915196418762,0.055684886872768,-0.061877243220806]],[[0.054367911070585,-0.022344876080751,-0.038669068366289],[-0.019953295588493,-0.067427195608616,0.00644122203812],[0.068616069853306,-0.060263801366091,-0.087567456066608]],[[0.024504117667675,0.015427517704666,-0.065344929695129],[0.013604335486889,-0.031319066882133,0.064260743558407],[0.013804565183818,0.18348647654057,0.16490058600903]],[[0.1449538320303,-0.042870629578829,-0.007305545732379],[-0.088801890611649,-0.018351089209318,-0.10708897560835],[-0.054491989314556,-0.021941807121038,-0.10856394469738]],[[-0.064958907663822,-0.0074556786566973,-0.1534406542778],[-0.029135225340724,-0.0023609539493918,-0.095870524644852],[-0.21453481912613,-0.045576300472021,-0.034662615507841]],[[0.0593271702528,-0.12417735904455,0.017372386530042],[-0.092428833246231,0.035636056214571,0.14083251357079],[-0.027881097048521,-0.057463809847832,0.1432438492775]],[[-0.033013716340065,-0.0091876396909356,-0.099428437650204],[0.14781653881073,0.11560703068972,0.1122132986784],[-0.10221889615059,-0.03713820502162,-0.063064001500607]],[[0.07664030790329,0.026714883744717,-0.085094623267651],[-0.070780023932457,0.054731070995331,0.035864546895027],[0.091808758676052,0.069133475422859,0.13614512979984]]],[[[0.0054598045535386,0.008348154835403,0.01491916179657],[-0.089479327201843,-0.050510536879301,-0.083983279764652],[-0.017932206392288,0.030046040192246,0.0059358198195696]],[[-0.01641414873302,-0.14367163181305,-0.08718203753233],[-0.17242938280106,0.012277365662158,0.040806829929352],[-0.0031625416595489,-0.098065927624702,-0.10857574641705]],[[-0.11812517046928,0.061898894608021,0.077222585678101],[-0.012980092316866,-0.077236548066139,-0.02820173278451],[0.026709847152233,-0.11599054932594,-0.024648373946548]],[[-0.012149816378951,-0.067094832658768,-0.10597561299801],[-0.036985728889704,0.17528961598873,-0.058693300932646],[0.076022543013096,-0.041673216968775,-0.024254785850644]],[[0.053023993968964,0.14230352640152,0.0014466410502791],[0.027797948569059,0.016476925462484,0.035739634186029],[0.048226583749056,0.0015124783385545,0.092048287391663]],[[-0.044866532087326,-0.035826653242111,0.012009776197374],[0.011042336933315,-0.11166045814753,-0.1675041615963],[0.028804549947381,0.013475252315402,-0.008028307929635]],[[-0.041286058723927,-0.059234898537397,0.048121150583029],[-0.078955695033073,0.040876060724258,0.089251182973385],[-0.0068957544863224,0.15718877315521,0.15406399965286]],[[-0.024909371510148,-0.011110719293356,-0.040323652327061],[0.02558515034616,0.056626047939062,-0.10986357927322],[0.093482077121735,0.111646451056,0.06577355414629]],[[0.041588976979256,-0.015126060694456,-0.03358618915081],[0.011944542638958,-0.041386011987925,0.040899381041527],[0.060796249657869,-0.038451284170151,0.01576273329556]],[[-0.10782875865698,-0.0072458377107978,-0.045224472880363],[0.097326278686523,-0.10145374387503,-0.057468693703413],[-0.0088250571861863,-0.0028238280210644,0.0046035060659051]],[[-0.018337501212955,-0.03108574077487,0.014493386261165],[0.037466056644917,-0.040150739252567,-0.080151669681072],[0.1545395553112,0.023522488772869,0.12154830992222]],[[-0.020778665319085,-0.0018113518599421,0.044301420450211],[-0.14136610925198,-0.012515123933554,0.081151910126209],[0.10994508862495,0.020347600802779,-0.01066052634269]],[[-0.0040078260935843,-0.054774511605501,0.02968031540513],[-0.019733151420951,0.054836764931679,0.013050483539701],[-0.015015662647784,0.16038312017918,0.0081234239041805]],[[-0.10578695684671,-0.057653967291117,0.061792001128197],[0.030315263196826,-0.046042993664742,-0.0016060790512711],[0.092235893011093,-0.08213634043932,-0.0085003916174173]],[[0.023947997018695,0.012712819501758,0.12285473197699],[-0.11937693506479,-0.14035342633724,-0.066483318805695],[-0.030590826645494,-0.077646389603615,0.01812856644392]],[[-0.01149364002049,-0.086426563560963,-0.070603534579277],[0.026211813092232,-0.017787596210837,0.032310258597136],[-0.002805418567732,0.12195595353842,0.07745736092329]],[[-0.072290308773518,-0.03491660580039,-0.013220997527242],[-0.080651216208935,-0.031260389834642,0.099736735224724],[-0.18418110907078,-0.030950073152781,-0.017294777557254]],[[0.017596373334527,0.012395036406815,0.022982638329268],[0.05821730941534,-0.045729540288448,-0.01560272090137],[-0.10033405572176,0.056788392364979,0.070671066641808]],[[-0.13102205097675,0.00011620465375017,0.16641195118427],[0.018582839518785,0.029604626819491,-0.03780659288168],[-0.067479096353054,-0.11143234372139,-0.070987187325954]],[[0.038284320384264,-0.12070382386446,0.0091502536088228],[0.049796096980572,-0.14768272638321,0.013236274011433],[0.019041579216719,0.046129483729601,-0.051359284669161]],[[0.051812954246998,-0.016063982620835,-0.065336644649506],[-0.0012862347066402,0.064527966082096,0.041104555130005],[0.10504880547523,0.028560312464833,0.11530700325966]],[[-0.050580412149429,-0.067286312580109,-0.049470864236355],[-0.0092478515580297,-0.0035031144507229,-0.03572665527463],[-0.0092734200879931,0.012432864867151,0.069178618490696]],[[-0.010127030313015,-0.040929488837719,0.0077662519179285],[0.0032239167485386,-0.023464605212212,0.070296101272106],[-0.043870523571968,0.00062551407609135,-0.0062031801789999]],[[-0.0090081496164203,-0.041363842785358,0.03692227602005],[-0.0011523338034749,0.052839286625385,-0.18685947358608],[0.070946730673313,0.063778318464756,-0.061689648777246]],[[0.00016193404735532,-0.16843913495541,-0.10224280506372],[0.086014971137047,0.021946666762233,-0.0099654784426093],[-0.053374446928501,0.011274790391326,0.018658017739654]],[[0.012120813131332,0.019198076799512,0.011973665095866],[0.011232390999794,0.014614945277572,0.11773310601711],[-0.014370497316122,-0.12160848081112,-0.020438585430384]],[[0.074431389570236,0.1066972464323,-0.032704744488001],[-0.019551131874323,-0.089003823697567,-0.057299830019474],[0.036375675350428,-0.10914973914623,-0.16554768383503]],[[0.024560987949371,-0.089410006999969,-0.18721939623356],[-0.067820802330971,0.0031488216482103,0.17692889273167],[-0.033301260322332,-0.048410162329674,-0.18645843863487]],[[-0.020417734980583,0.091763362288475,0.092115812003613],[0.054189845919609,0.0064139566384256,-0.047526381909847],[-0.050132300704718,-0.081647843122482,-0.10260336846113]],[[-0.01612851023674,-0.046387430280447,0.012421959079802],[0.0078462995588779,0.011160871013999,0.032614070922136],[-0.015792274847627,-0.0052904076874256,-0.084590002894402]],[[0.075670048594475,-0.049054313451052,-0.03391731902957],[0.09817185997963,-0.072200953960419,0.082625173032284],[-0.26322621107101,-0.1196893081069,-0.00034154855529778]],[[0.082125395536423,0.059503104537725,-0.010722821578383],[0.18101134896278,0.096081182360649,0.12596154212952],[0.088356971740723,-0.029145538806915,0.025831406936049]],[[-0.055463928729296,-0.0054686898365617,0.070946373045444],[-0.022973937913775,-0.02440045401454,0.0015419728588313],[-0.0063376338221133,-0.029622994363308,0.028768783435225]],[[-0.02776837721467,0.069385126233101,0.031143542379141],[0.00029836979229003,0.027779679745436,0.024176260456443],[-0.089827507734299,-0.085867770016193,0.041580732911825]],[[-0.032304786145687,0.069630950689316,-0.1730839908123],[-0.16317196190357,0.057265266776085,0.041719142347574],[-0.00064733671024442,0.019397009164095,-0.17231869697571]],[[0.053657338023186,0.04400372132659,0.11162803322077],[0.0036722889635712,-0.045674864202738,0.012718254700303],[0.043358333408833,-0.041028305888176,0.051725577563047]],[[0.10337332636118,0.036030139774084,0.0091445799916983],[0.11238040775061,0.052811548113823,0.047176606953144],[0.073837429285049,-0.053427409380674,0.081409357488155]],[[0.058791480958462,-0.034716907888651,-0.040336072444916],[-0.059254348278046,0.027363585308194,0.073228783905506],[0.053185809403658,-0.11741391569376,-0.10255265235901]],[[-0.023944633081555,0.034638915210962,0.11596415936947],[0.067706793546677,-0.035041134804487,-0.11573442816734],[-0.015208926983178,-0.055181566625834,-0.038355208933353]],[[0.006311391480267,-0.077113553881645,-0.022026458755136],[0.0090708620846272,-0.19219025969505,-0.0083976881578565],[0.071098126471043,-0.041171327233315,-0.14545737206936]],[[-0.10845589637756,0.095121785998344,0.054846309125423],[-0.072224177420139,-0.0052605741657317,0.044380255043507],[0.0062848264351487,-0.073466837406158,-0.061220120638609]],[[0.02389845252037,0.041249699890614,0.03733291476965],[-0.077812902629375,-0.091199152171612,0.004244192969054],[-0.030262580141425,-0.082281939685345,0.0643689930439]],[[0.11154375970364,0.054277721792459,-0.10005293041468],[0.0023800740018487,0.056063175201416,0.050136774778366],[-0.0024151150137186,-0.047360762953758,0.053061716258526]],[[0.026797033846378,0.0083067277446389,-0.12201746553183],[-0.22100183367729,-0.035690747201443,0.030386196449399],[-0.062303505837917,0.076566100120544,0.041535563766956]],[[0.12042152136564,-0.074097104370594,-0.0040534329600632],[-0.064105160534382,0.078514352440834,0.089727535843849],[-0.14204934239388,-0.028360987082124,-0.14096885919571]],[[0.063008472323418,0.03806446865201,0.013879138976336],[-0.020286608487368,0.11284618079662,-0.046476908028126],[-0.11030861735344,0.020576916635036,0.18629203736782]],[[-0.014849944040179,-0.18639402091503,-0.040613625198603],[0.050887547433376,0.028277980163693,-0.044569052755833],[0.012274175882339,-0.0051351105794311,0.12808300554752]],[[0.12831278145313,0.0070193475112319,-0.060496885329485],[-0.10068564862013,0.020597226917744,0.11969549208879],[-0.023243706673384,-0.06531548500061,0.072017900645733]],[[-0.0091045117005706,-0.038754105567932,-0.061572521924973],[0.01081739552319,-0.019551813602448,-0.096339859068394],[-0.093405522406101,0.098835572600365,0.11710476130247]],[[0.17316734790802,0.17077173292637,0.017132876440883],[0.0059131267480552,0.018774673342705,-0.07658564299345],[0.045081976801157,0.085062831640244,-0.011225688271224]],[[-0.01620695926249,-0.18241177499294,-0.066011160612106],[-0.019484991207719,0.0023874540347606,-0.12329585850239],[-0.043875683099031,-0.0049163401126862,0.11459846049547]],[[-0.06633273512125,0.041347254067659,0.01663020439446],[-0.076236680150032,-0.033991899341345,-0.034250296652317],[0.050526797771454,-0.020462423563004,-0.089203216135502]],[[0.045782137662172,-0.036983266472816,-0.034771677106619],[-0.042686533182859,-0.071368910372257,0.0088032046332955],[-0.019205763936043,0.031969416886568,-0.051166232675314]],[[-0.029306335374713,-0.041830562055111,0.13976807892323],[-0.041847832500935,-0.038470156490803,0.0026083430275321],[-0.066779129207134,0.024352187290788,-0.10162331908941]],[[-0.014131869189441,0.07375805824995,-0.041607975959778],[0.008606543764472,-0.056274488568306,-0.059471510350704],[0.022942449897528,0.022330392152071,0.022921049967408]],[[-0.030735142529011,-0.04366947337985,0.11371137946844],[0.035519752651453,-0.072183378040791,-0.078235410153866],[-0.086356654763222,-0.0064099757000804,0.072322070598602]],[[-0.078460648655891,-0.064621858298779,-0.14840045571327],[0.098925672471523,0.030688868835568,-0.019834239035845],[-0.054402001202106,0.00050388649106026,0.023907421156764]],[[-0.018360897898674,0.019201871007681,0.039159588515759],[0.11274367570877,0.028042854741216,0.11917918920517],[-0.0007619425887242,-0.063453078269958,0.11423718184233]],[[0.065318360924721,0.056385394185781,0.053601838648319],[0.1179251074791,0.077655628323555,0.017539186403155],[0.13586622476578,-0.033891186118126,0.028874646872282]],[[0.055891148746014,0.042403843253851,-0.086104094982147],[0.00020417330961209,0.053692422807217,0.14809617400169],[0.014906166121364,-0.07512491196394,-0.073433429002762]],[[-0.017436599358916,0.023482168093324,0.077222861349583],[0.053113058209419,-0.22735799849033,-0.17386938631535],[-0.015716852620244,-0.0092650707811117,-0.085784241557121]],[[-0.03851880505681,0.04654760286212,0.30589118599892],[0.085143283009529,-0.034180704504251,-0.040537774562836],[0.11802194267511,0.080378122627735,-0.12858583033085]],[[-0.062221173197031,-0.01801186054945,0.10938933491707],[0.096321880817413,0.037801276892424,0.077103614807129],[0.060110040009022,-0.053366158157587,-0.17055331170559]],[[0.090610213577747,0.069986291229725,-0.15610767900944],[0.019322816282511,-0.031951598823071,0.0012922476744279],[0.13049052655697,-0.083638392388821,0.1256281286478]]],[[[0.16453839838505,-0.014725001528859,-0.063008479773998],[-0.071245208382607,0.065042421221733,-0.034527279436588],[-0.041779778897762,-0.094562612473965,-0.1237006559968]],[[-0.26813933253288,-0.060990873724222,0.0037381909787655],[-0.033370222896338,-0.030742248520255,0.079264640808105],[-0.019133746623993,0.0015440119896084,0.032594095915556]],[[-0.04540141299367,0.043590627610683,-0.16209368407726],[-0.011472657322884,-0.042191851884127,-0.038514517247677],[0.008820652961731,0.0025112912990153,-0.0076810563914478]],[[-0.18718990683556,0.054194688796997,-0.078034527599812],[-0.047501642256975,0.060560543090105,0.11077984422445],[0.014494322240353,-0.08339436352253,-0.049700830131769]],[[-0.062060054391623,-0.000667737738695,0.018721781671047],[-0.082386240363121,-0.081461176276207,-0.074193865060806],[-0.19610483944416,-0.074203006923199,-0.04245050996542]],[[-0.086193896830082,-0.077361427247524,-0.057035062462091],[0.0083535518497229,-0.035105861723423,-0.038662418723106],[0.089351840317249,-0.083011917769909,-0.010445571504533]],[[-0.14407742023468,-0.11538077890873,-0.22469645738602],[0.14345271885395,0.025465929880738,-0.11257037520409],[-0.10032851994038,-0.072958022356033,-0.086202368140221]],[[-0.024160448461771,-0.028661908581853,0.038934823125601],[0.041772060096264,0.016948001459241,0.070274978876114],[-0.01872113533318,0.037320703268051,0.11432328820229]],[[-0.16104297339916,0.029261376708746,-0.045469060540199],[-4.2252006096533e-05,0.026632603257895,0.026077829301357],[0.12878000736237,-0.043491140007973,0.02953365072608]],[[0.11241758614779,0.040602959692478,0.032296176999807],[-0.028020497411489,-0.030455427244306,-0.016513137146831],[0.029330810531974,0.049496367573738,0.013932049274445]],[[-0.0042937900871038,-0.0080249318853021,-0.04454805329442],[-0.13650493323803,-0.12358391284943,-0.10080577433109],[0.009404506534338,0.00045164179755375,0.010293735191226]],[[-0.047310583293438,-0.068592451512814,0.004855606239289],[-0.059390630573034,0.027588825672865,0.048627197742462],[0.1380630582571,0.073171645402908,-0.024678068235517]],[[0.012364267371595,0.030745381489396,0.0677580088377],[0.049548618495464,0.0060764504596591,-0.07079890370369],[-0.0028851660899818,-0.086269997060299,-0.13294599950314]],[[-0.13913671672344,-0.14952182769775,-0.15272949635983],[0.020883295685053,0.038254547864199,0.057546887546778],[-0.00059232447529212,-0.16117964684963,-0.22394788265228]],[[-0.012518934905529,0.030185205861926,-0.07723942399025],[-0.12522029876709,-0.0071933763101697,0.003393832128495],[-0.021358657628298,-0.039303176105022,0.044875256717205]],[[-0.0278679151088,0.04620610550046,-0.032088842242956],[0.0021482734009624,0.044446934014559,0.091271162033081],[-0.23847885429859,-0.12133818864822,0.074933283030987]],[[0.079400770366192,-0.062539644539356,-0.089654415845871],[0.10054668039083,0.036849360913038,0.0923021286726],[-0.098702490329742,0.093314364552498,-0.00060925859725103]],[[-0.072037488222122,-0.024207960814238,0.053447164595127],[0.036096874624491,0.1249050796032,-0.055982802063227],[-0.0028417001012713,-0.039009068161249,0.090160198509693]],[[0.033335223793983,0.072598874568939,0.058506466448307],[-0.034373786300421,-0.046430088579655,-0.03021527826786],[0.11340776085854,-0.032143253833055,-0.11832344532013]],[[0.022400215268135,0.011841499246657,0.070152126252651],[-0.23228760063648,0.055615723133087,0.11869473010302],[0.086164578795433,-0.025974724441767,0.083226688206196]],[[-0.18374767899513,-0.004383924882859,-0.12367451936007],[0.10231117904186,0.034269995987415,0.13640120625496],[0.018437387421727,0.074360087513924,-0.019809767603874]],[[0.053717635571957,-0.024196410551667,0.0071619232185185],[-0.071797378361225,0.009961349889636,0.010263402014971],[-0.075276769697666,-0.0089243836700916,-0.0075784604996443]],[[-0.021769929677248,-0.0033175169955939,-0.05014056712389],[0.011646017432213,-0.030256969854236,-0.1078250259161],[0.056941207498312,0.018925687298179,0.0024588154628873]],[[0.1481369137764,0.053971104323864,-0.010222620330751],[0.14000764489174,-0.028199575841427,0.022139091044664],[-0.053252149373293,0.028580037876964,-0.16166953742504]],[[0.0070871259085834,0.051298081874847,0.106504522264],[-0.0025866436772048,0.0099412240087986,0.1394387036562],[0.036456055939198,-0.063346296548843,0.15533718466759]],[[0.023868478834629,-0.075541868805885,-0.16695939004421],[0.098841890692711,-0.040279384702444,-0.014370979741216],[0.057324752211571,0.018971739336848,0.016592713072896]],[[-0.010211661458015,0.020499877631664,-0.056540980935097],[0.056787472218275,-0.084547102451324,-0.023266075178981],[-0.14718016982079,-0.022114833816886,-0.035122934728861]],[[0.12078440189362,-0.00090901664225385,0.013188347220421],[-0.0094109829515219,0.0012793992646039,-0.0077618891373277],[-0.0031044809147716,0.007789452560246,0.072208195924759]],[[0.016149261966348,-0.010420674458146,-0.07564165443182],[-0.12580838799477,-0.053208880126476,-0.1579947322607],[0.062434166669846,-0.00064097397262231,0.0017778739565983]],[[0.11610608547926,-0.033350743353367,-0.050562780350447],[0.09358586370945,0.091452613472939,0.052682612091303],[0.054563589394093,0.012583607807755,-0.010769301094115]],[[-0.016185086220503,0.096181139349937,0.16660843789577],[0.018035385757685,0.10668306052685,0.150769084692],[0.22723257541656,0.0020038669463247,-0.039868969470263]],[[0.15217012166977,0.044721677899361,-0.025032106786966],[-0.081511504948139,-0.023531105369329,-0.0031499823089689],[-0.1571841686964,-0.054763298481703,0.029993429780006]],[[0.054307118058205,-0.0077344831079245,0.075951278209686],[-0.057939250022173,-0.024868400767446,-0.088881060481071],[0.090437829494476,0.039802297949791,-0.00070143962511793]],[[0.01297455560416,-0.046972561627626,-0.0031838659197092],[0.064364477992058,-0.050637133419514,0.079953238368034],[-0.032225847244263,0.056095629930496,-0.10617111623287]],[[-0.09157881885767,-0.023743668571115,0.053606722503901],[-0.04240657389164,-0.022907419130206,0.015226184390485],[-0.14365740120411,-0.070371091365814,-0.015846867114305]],[[0.088217608630657,-0.069477409124374,0.049033705145121],[0.062003783881664,0.024705834686756,-0.034588724374771],[0.014806675724685,0.032354477792978,0.060260433703661]],[[0.015530969947577,-0.143380433321,-0.017133049666882],[0.1741936057806,-0.12179210036993,0.0041287839412689],[0.14209482073784,-0.026947902515531,0.0063954978249967]],[[-0.071988150477409,0.027660500258207,0.11767555773258],[-0.2338332682848,-0.017845412716269,-0.057302236557007],[0.10566113889217,-0.034976940602064,0.012121116742492]],[[-0.047551080584526,-0.025093872100115,0.088294737040997],[-0.038146216422319,-0.022637726739049,-0.011766030453146],[0.043289706110954,-0.036433886736631,0.031879261136055]],[[-0.090078800916672,0.0806715041399,0.045122500509024],[0.012770464643836,-0.029130728915334,-0.049363233149052],[0.029128275811672,0.10206908732653,-0.063685543835163]],[[0.085468001663685,0.016100162640214,-0.03007909655571],[-0.032453410327435,-0.087537586688995,-0.024472484365106],[0.098654076457024,0.032287444919348,-0.098878256976604]],[[0.066716812551022,-0.077006973326206,-0.14618214964867],[-0.042186874896288,-0.095300234854221,0.027998920530081],[0.0066995723173022,0.035514004528522,-0.11954212933779]],[[-0.024150654673576,-0.0072722658514977,-0.03206180408597],[-0.037256546318531,-0.13803791999817,-0.022922832518816],[0.10167910158634,-0.035210404545069,-0.066920019686222]],[[-0.079457275569439,-0.097769036889076,0.037676438689232],[-0.021738002076745,-0.0054828347638249,0.10180732607841],[0.205731138587,-0.066065073013306,-0.013684638775885]],[[0.12011423707008,-0.037705920636654,0.037186995148659],[0.0031894228886813,-0.061646565794945,-0.052936896681786],[0.18763618171215,0.094863511621952,-0.059296056628227]],[[-0.00686378730461,0.072016201913357,-0.011988618411124],[-0.0096881547942758,-0.063104815781116,-0.19352208077908],[-0.17583359777927,0.041145250201225,0.14858232438564]],[[0.027885353192687,0.011804484762251,-0.088945336639881],[-0.061490193009377,-0.039295207709074,-0.055911473929882],[0.10301753878593,0.030898923054338,0.06425628811121]],[[0.046949502080679,-0.048533823341131,-0.018203346058726],[-0.05754641070962,0.099898397922516,0.14271976053715],[-0.11918254941702,-0.14885921776295,-0.091342151165009]],[[-0.15335765480995,-0.073976837098598,-0.042972926050425],[-0.022042326629162,0.043503705412149,-0.0031921330373734],[-0.039781052619219,-0.040668413043022,-0.095593832433224]],[[0.10817284882069,0.070568703114986,-0.014668004587293],[0.025720944628119,0.18267810344696,0.048627641052008],[0.044129066169262,-0.049739919602871,0.044390566647053]],[[0.15794830024242,0.017152335494757,-0.14698737859726],[-0.070155344903469,0.033196058124304,-0.053564716130495],[0.10679031908512,-0.14136236906052,-0.019520733505487]],[[-0.13128839433193,0.10978092253208,-0.086281068623066],[0.037242725491524,-0.19779352843761,0.00041530359885655],[0.12111786752939,0.012317294254899,-0.079008966684341]],[[0.1267648935318,0.0035230256617069,-0.032699286937714],[-0.047987509518862,-0.034810606390238,-0.0094754416495562],[-0.036943983286619,0.086400263011456,-0.029221538454294]],[[-0.059452269226313,0.032385386526585,-0.0035560161340982],[-0.02389657124877,0.047125425189734,0.073985725641251],[-0.19983366131783,-0.052512310445309,0.0038362080231309]],[[0.070335753262043,0.1198043525219,-0.033847235143185],[0.049975778907537,0.0051990486681461,-0.0024844829458743],[0.012559287250042,-0.01573533192277,0.030439512804151]],[[0.11792563647032,-0.054646991193295,0.063113510608673],[-0.0043688602745533,-0.012120259925723,-0.06917804479599],[-0.057250238955021,0.027358695864677,0.033353973180056]],[[-0.053116045892239,-0.059140112251043,-0.0070422501303256],[-0.03390534594655,0.064126707613468,-0.16727270185947],[0.079947553575039,0.020264208316803,0.15499742329121]],[[0.023635476827621,0.11148128658533,-0.17757666110992],[0.017597364261746,0.045687701553106,-0.010110965929925],[-0.012643633410335,-0.022347930818796,0.0093389796093106]],[[0.11475943773985,0.10659144818783,0.13141041994095],[-0.037812124937773,-0.014585360884666,0.060728870332241],[-0.089757516980171,-0.014238845556974,0.046037700027227]],[[0.11749471724033,0.10306541621685,-0.097032099962234],[0.022184329107404,-0.094288840889931,-0.026397144421935],[0.021600022912025,-0.06022010743618,-0.10261683166027]],[[0.0001496364857303,0.0094602471217513,0.070482164621353],[-0.03039027005434,-0.029705919325352,0.033561050891876],[-0.097456812858582,-0.030175277963281,0.029582807794213]],[[0.016395013779402,-0.029777722433209,-0.071620143949986],[0.035062860697508,0.03676039353013,0.064544215798378],[0.030307330191135,-0.088749788701534,0.015580835752189]],[[-0.15998084843159,-0.081832066178322,-0.012951458804309],[-0.13839370012283,-0.072588875889778,0.10321963578463],[-0.099248446524143,0.10267706215382,-0.13573004305363]],[[0.085086062550545,0.016777066513896,0.00087411986896768],[-0.068982571363449,0.088070809841156,-0.12284187227488],[-0.025747157633305,-0.078540533781052,-0.098616145551205]]],[[[-0.11556419730186,0.067419245839119,-0.29202607274055],[-0.053960870951414,0.024581959471107,-0.25607624650002],[0.060317907482386,-0.039445027709007,-0.29504573345184]],[[-0.19451789557934,-0.1048576682806,-0.14818121492863],[-0.11492935568094,-0.099175065755844,-0.1258847117424],[-0.086556635797024,-0.13080061972141,-0.13174748420715]],[[-0.0017751343548298,-0.0096695991232991,-0.11744729429483],[-0.088471405208111,0.044951591640711,-0.14347958564758],[-0.083931855857372,0.020957304164767,-0.014072772115469]],[[0.28813153505325,0.088333621621132,0.068567007780075],[-0.11520639061928,-0.045801565051079,0.030744861811399],[-0.082587450742722,0.039252292364836,-0.21668308973312]],[[-0.032653018832207,0.068542793393135,0.015862818807364],[0.046159859746695,0.044238045811653,-0.1234522163868],[-0.054828021675348,-0.042209126055241,-0.12082105875015]],[[-0.16610190272331,-0.14737488329411,0.0073296674527228],[-0.02889546006918,-0.045667510479689,-0.038519904017448],[-0.089636407792568,0.011687133461237,0.016271194443107]],[[-0.049258302897215,0.043525442481041,0.24238805472851],[-0.036743089556694,-0.062893003225327,0.081061162054539],[0.016016138717532,-0.013600645586848,-0.1372454315424]],[[-0.056042354553938,-0.0568489395082,-0.044022493064404],[-0.041283700615168,0.0053517944179475,0.0205690395087],[-0.069749258458614,0.22168081998825,-0.018840100616217]],[[0.01424603164196,0.049157090485096,-0.08654397726059],[-0.006310670170933,-0.08834270387888,-0.056207999587059],[-0.028272233903408,-0.031389519572258,0.17725324630737]],[[-0.033757783472538,0.055240288376808,-0.014187780208886],[0.092208161950111,0.083410620689392,0.025167804211378],[0.014852093532681,-0.015997130423784,-0.14269879460335]],[[-0.045123126357794,0.022034676745534,-0.19491963088512],[0.109455101192,-0.0084940223023295,-0.029512412846088],[0.074483700096607,-0.10514847934246,-0.26541700959206]],[[-0.074004344642162,-0.028536822646856,-0.019331188872457],[-0.022007720544934,0.060122761875391,-0.053083539009094],[0.020411089062691,0.19594721496105,-0.37060722708702]],[[-0.097139462828636,-0.040669977664948,-0.0052420580759645],[-0.0046699717640877,0.016623524948955,0.095758214592934],[0.051995679736137,-0.035533759742975,0.014395295642316]],[[0.077499486505985,0.10274448990822,-0.024966018274426],[-0.02624917216599,0.01139213796705,-0.019802022725344],[0.0016100611537695,-0.082169212400913,-0.17661608755589]],[[0.14002510905266,-0.07029215246439,-0.07067534327507],[-0.052448786795139,0.011597819626331,0.12215089052916],[-0.033964373171329,-0.084694772958755,-0.091159269213676]],[[-0.092751458287239,0.07866445928812,0.12409253418446],[-0.10692252218723,0.074214234948158,-0.043987907469273],[-0.014205482788384,0.03172355890274,-0.056636225432158]],[[-0.01811208948493,-0.041110441088676,-0.016116809099913],[0.066343113780022,0.078122362494469,0.018583420664072],[-0.03141550719738,0.27137294411659,-0.0012785061262548]],[[-0.098437994718552,-0.079845607280731,-0.20559324324131],[0.062285050749779,-0.067926175892353,-0.059530492872],[0.10700081288815,0.019553061574697,-0.034716952592134]],[[-0.052793350070715,0.017779063433409,-0.033738002181053],[-0.18277265131474,0.080893531441689,-0.00024957742425613],[0.043419394642115,-0.050922103226185,-0.0037470371462405]],[[0.087626665830612,0.11593709886074,-0.079464040696621],[-0.0084128230810165,-0.023777255788445,-0.016144961118698],[0.035954259335995,0.023071471601725,0.067383714020252]],[[0.004740119446069,0.090548746287823,0.067661233246326],[0.014893533661962,0.067921906709671,-0.073336474597454],[-0.065309703350067,-0.084810547530651,-0.028849072754383]],[[-0.006339983548969,0.0097604058682919,-0.037439309060574],[-0.069349311292171,0.035896878689528,-0.015289601869881],[-0.038472022861242,0.006035050842911,0.0062727765180171]],[[-0.1295148730278,-0.16357643902302,-0.011148981750011],[0.098628148436546,0.086376160383224,0.017724979668856],[0.10496546328068,0.022284287959337,-0.062851466238499]],[[-0.053016521036625,0.068104259669781,0.13349361717701],[-0.026085952296853,0.043099317699671,-0.015021625906229],[0.12088913470507,0.10181454569101,0.14531557261944]],[[0.042129959911108,-0.10459790378809,0.18400651216507],[0.049623247236013,-0.034552372992039,0.12355813384056],[0.10645939409733,-0.052558742463589,0.13323585689068]],[[-0.058246769011021,-0.011799608357251,0.030471075326204],[0.068973280489445,-0.0098753115162253,-0.050454650074244],[0.062976717948914,-0.060370553284883,0.017096793279052]],[[0.038623083382845,0.029329156503081,-0.015777414664626],[0.074776694178581,0.011193199083209,-0.091440513730049],[0.010467998683453,-0.083568550646305,-0.047841403633356]],[[-0.1527940928936,0.020210843533278,0.14647626876831],[-0.095210209488869,-0.1047555282712,0.15745212137699],[0.052723783999681,0.015782672911882,0.083491399884224]],[[-0.26294794678688,-0.21550579369068,-0.075762294232845],[-0.087788037955761,0.0182686727494,0.076444804668427],[-0.050777170807123,-0.0014722861815244,0.071741200983524]],[[0.11120323836803,-0.051201738417149,0.0067774197086692],[0.087772957980633,0.052444588392973,-0.117331571877],[0.068094126880169,0.13016493618488,-0.10528361052275]],[[-0.04680884256959,0.09909812361002,0.10996057093143],[-0.097066611051559,0.04505917802453,0.05706612765789],[0.10750000923872,-0.07408818602562,0.068572781980038]],[[-0.040893584489822,-0.048868834972382,-0.16718474030495],[0.09192618727684,0.054071389138699,0.01378206256777],[0.088691286742687,0.075436741113663,0.21801909804344]],[[-0.029908077791333,-0.0094083230942488,0.0067275324836373],[-0.025223094969988,-0.013029239140451,-0.1015492528677],[-0.019921042025089,-0.018010377883911,0.046325016766787]],[[-1.2009113561362e-05,-0.0028281782288104,0.052052296698093],[0.0011740903137252,-0.08572293817997,-0.082035258412361],[-0.12649205327034,-0.02092744037509,-0.13058610260487]],[[-0.029273232445121,0.062049746513367,-0.22322398424149],[0.093533866107464,0.013141511008143,-0.091688796877861],[0.011344188824296,0.033137157559395,-0.060379400849342]],[[0.025648307055235,-0.064397498965263,0.031144207343459],[0.14585763216019,-0.055637333542109,-0.033159401267767],[0.072501197457314,-0.081200964748859,-0.01609911955893]],[[0.18995496630669,0.072370797395706,-0.020088834688067],[0.0032907868735492,0.13473054766655,-0.010506616905332],[-0.12683342397213,-0.035875678062439,-0.0059200297109783]],[[0.04793369397521,0.03165016695857,0.04088294878602],[-0.07073063403368,0.032585676759481,-0.016760852187872],[-0.082544803619385,-0.098844029009342,-0.13503804802895]],[[-0.056000370532274,-0.11320807039738,-0.066212080419064],[0.052009291946888,-0.015365642495453,-0.043438006192446],[-0.005279706325382,-0.07941822707653,-0.009061036631465]],[[-0.0484210960567,0.014595193788409,-0.1309839785099],[0.034106787294149,0.015859214589,-0.069464951753616],[-0.02222984097898,-0.047590333968401,-0.090300403535366]],[[0.081922933459282,0.018902046605945,-0.14757072925568],[-0.12000349164009,-0.065903536975384,-0.0092059653252363],[-0.12442708015442,-0.093725740909576,-0.03016616217792]],[[-0.029913833364844,-0.041160065680742,-0.094581320881844],[0.055944830179214,0.027019297704101,-0.02543318271637],[-0.11647575348616,0.011607663705945,-0.05287180095911]],[[0.058078732341528,0.018391072750092,0.0096786385402083],[0.047925751656294,-0.10539212077856,-0.082242533564568],[0.095264360308647,-0.13211011886597,0.0046955714933574]],[[0.14356316626072,0.056824080646038,-0.044526636600494],[0.098439157009125,-0.0053328559733927,-0.059950102120638],[-0.13781575858593,-0.15371446311474,-0.068823479115963]],[[-0.083850130438805,0.16890177130699,-0.10174319893122],[0.0048322742804885,0.084182396531105,-0.018097341060638],[-0.08801231533289,-0.077471800148487,-0.038203503936529]],[[-0.1091355830431,-0.11359491199255,0.28722253441811],[-0.048896033316851,-0.15791998803616,-4.5004871935816e-06],[0.03661747649312,-0.070115372538567,0.070108607411385]],[[-0.26198959350586,-0.11223801225424,0.1030514985323],[0.0013796702260152,-0.00030001514824107,-0.024897126480937],[-0.13137301802635,0.076353080570698,-0.15227299928665]],[[0.025787208229303,0.17107804119587,0.049929648637772],[0.037177976220846,-0.11511290073395,0.07041423022747],[0.019066138193011,-0.21664270758629,0.028551714494824]],[[-0.20610736310482,0.061881709843874,-0.04806199669838],[-0.027824107557535,0.06940645724535,0.11475161463022],[-0.17464265227318,0.096366986632347,0.14015421271324]],[[-0.019153423607349,0.2323162406683,0.061200957745314],[-0.0039993026293814,0.037292808294296,-0.039073083549738],[0.035109162330627,-0.016734082251787,-0.019310692325234]],[[-0.04643227532506,0.015676708891988,-0.065968565642834],[-0.026113009080291,-0.095377907156944,-0.040444351732731],[0.006597981788218,-0.13528995215893,0.18880161643028]],[[-0.061427757143974,-0.020075188949704,0.20518985390663],[-0.026635555550456,-0.09031343460083,-0.099905520677567],[0.006125426851213,0.10674442350864,-0.0016550641739741]],[[0.33046251535416,-0.011684320867062,-0.10165878385305],[-0.1394130140543,-0.082881271839142,-0.047498073428869],[0.017043393105268,0.076747953891754,0.1739132553339]],[[-0.018073992803693,-0.014332052320242,-0.059175845235586],[0.05854370072484,0.025610031560063,0.090184763073921],[-0.046019565314054,-0.080877430737019,-0.16466598212719]],[[0.040120534598827,-0.043731573969126,-0.14037144184113],[-0.098870545625687,-0.14261017739773,0.044898308813572],[-0.039942093193531,-0.10448215156794,-0.075428955256939]],[[0.097199127078056,-0.079519018530846,-0.00049119221512228],[-0.034057524055243,-0.024649623781443,-0.087242014706135],[0.17170861363411,0.076107203960419,-0.54720836877823]],[[-0.15910269320011,0.14654521644115,-0.25721257925034],[0.1728813201189,-0.034154254943132,-0.13008294999599],[0.045285057276487,0.14183159172535,-0.13314636051655]],[[-0.012705522589386,0.030544072389603,0.0075661307200789],[0.029573416337371,-0.069975040853024,0.045468606054783],[0.0022312421351671,0.017216328531504,0.045170370489359]],[[0.011177165433764,0.091462001204491,-0.020969452336431],[0.052679978311062,0.032737623900175,0.028265314176679],[0.039552625268698,0.060466334223747,0.083302021026611]],[[-0.07387937605381,0.0089389896020293,-0.018825128674507],[-0.073092766106129,0.029028618708253,0.081270441412926],[0.0096048023551702,0.13878864049911,0.0098991161212325]],[[0.077851593494415,-0.086026318371296,0.00099820666946471],[0.071390308439732,-0.052123799920082,-0.021631145849824],[-0.011460503563285,-0.01118213031441,-0.050071731209755]],[[0.016023667529225,-0.065566137433052,0.063296489417553],[0.031418461352587,-0.08422727137804,0.077477663755417],[-0.017689788714051,0.0039223716594279,0.005030763335526]],[[0.1518302410841,0.051507689058781,-0.017967389896512],[-0.0034710401669145,-0.059673242270947,-0.0095754703506827],[0.0059781628660858,-0.043819859623909,-0.068785272538662]],[[-0.13030935823917,-0.012135640718043,0.056596029549837],[-0.091345854103565,-0.062615297734737,0.015433535911143],[-0.18172997236252,-0.024682369083166,-0.005661778151989]]],[[[-0.14209012687206,-0.075421668589115,0.03485107421875],[0.0047340961173177,-0.066791199147701,0.018685005605221],[-0.040270362049341,-0.18342792987823,0.0046861441805959]],[[0.059182871133089,0.036403052508831,0.19506953656673],[-0.10107065737247,0.068840853869915,0.042749330401421],[-0.24581705033779,-0.068826198577881,-0.14748883247375]],[[0.02044858597219,-0.0013280039420351,-0.055053327232599],[0.044782012701035,-0.0050169015303254,0.041154101490974],[0.048211291432381,0.031265042722225,0.043977383524179]],[[0.10675155371428,0.039026353508234,0.19350968301296],[0.08066738396883,-0.076358430087566,0.03763223439455],[-0.24716299772263,-0.10470988601446,-0.0006497583235614]],[[-0.012658124789596,0.086688011884689,-0.02910995669663],[0.025981018319726,0.049649819731712,0.084549821913242],[0.1198433637619,-0.15246543288231,0.071316607296467]],[[0.037528090178967,0.005442954134196,0.051039900630713],[-0.00074396835407242,-0.076328314840794,0.065738320350647],[0.050261363387108,-0.054138049483299,0.0010419111931697]],[[-0.063155762851238,-0.045736487954855,-0.018213972449303],[-0.029354570433497,-0.010448046959937,-0.086711600422859],[-0.11998227238655,-0.05066691339016,-0.078407287597656]],[[-0.0026652445085347,-0.00058832566719502,-0.098149873316288],[0.1121391505003,-0.047863520681858,0.072005376219749],[0.096832670271397,0.0086972592398524,-0.065139196813107]],[[0.039420649409294,-0.004656738601625,0.027273954823613],[-0.04785867407918,-0.059188913553953,-0.054669115692377],[-0.057272605597973,-0.1478191614151,-0.1462823599577]],[[-0.0064965332858264,0.040569555014372,0.057892352342606],[0.010196017101407,0.073888257145882,-0.05902773141861],[0.056094311177731,0.013049839064479,-0.0010668197646737]],[[0.1033011674881,-0.030515808612108,-0.056376997381449],[-0.00047989148879424,0.023521568626165,-0.06843775510788],[0.11250057071447,-0.076652094721794,0.069706104695797]],[[0.027673875913024,-0.02040777169168,0.0063274390995502],[0.041628364473581,-0.0080165984109044,0.083617471158504],[0.0037994706071913,-0.098689198493958,0.010872160084546]],[[-0.020673360675573,-0.015668923035264,-0.02567239291966],[0.0036239586770535,0.080523043870926,0.0017116762464866],[-0.14376078546047,-0.023168733343482,0.010143555700779]],[[6.899879372213e-05,0.076025418937206,-0.037424549460411],[-0.097958788275719,-0.036540456116199,-0.10748203098774],[0.13411638140678,0.10639021545649,0.048736218363047]],[[0.066953681409359,-0.033012863248587,-0.024058511480689],[0.118981346488,0.024033561348915,0.0073491572402418],[0.15793824195862,-0.040213625878096,-0.060908637940884]],[[0.0069219479337335,0.091338157653809,0.016593063250184],[0.034976873546839,-0.034057691693306,-0.050757370889187],[-0.096673004329205,-0.070618845522404,-0.026958554983139]],[[-0.056361112743616,-0.075801879167557,0.051959685981274],[-0.015384682454169,0.10491982102394,-0.077432602643967],[-0.0097774500027299,0.051610581576824,-0.048584464937449]],[[-0.078442864120007,-0.021469475701451,-0.10504142194986],[-0.1048572063446,-0.06105425208807,-0.076378390192986],[-0.34710517525673,-0.26610124111176,-0.15614268183708]],[[0.1071245148778,-0.090849846601486,0.015327971428633],[0.097226768732071,0.023810034617782,-0.013027236796916],[-0.058326654136181,-0.060836859047413,-0.051085587590933]],[[0.11466298997402,-0.019351409748197,0.12345267087221],[-0.05918175727129,-0.04614294692874,0.069123208522797],[-0.045488104224205,-0.12939916551113,-0.0015816184459254]],[[-0.046068452298641,0.015676341950893,0.038700375705957],[-0.037806831300259,-0.016901466995478,0.088740922510624],[0.0056570223532617,-0.076420091092587,0.017679257318377]],[[-0.039004392921925,-0.039872273802757,0.024284327402711],[-0.019576970487833,-0.024465929716825,-0.029187494888902],[0.03335965052247,0.012971538119018,0.0039645042270422]],[[0.052090484648943,0.0005482432898134,0.018472736701369],[-0.11819371581078,0.056033916771412,0.039002291858196],[-0.023823430761695,-0.080056622624397,0.030008526518941]],[[-0.065392129123211,-0.00039011455373839,0.097343988716602],[0.010233676061034,0.08577910810709,0.10001919418573],[0.076324418187141,0.12062977254391,0.17158684134483]],[[-0.0350072234869,-0.046656016260386,-0.19951413571835],[0.028852585703135,0.087435863912106,-0.092108301818371],[0.11979646980762,0.085632503032684,0.17498828470707]],[[0.069317080080509,0.020435007289052,-0.0071040000766516],[0.078074410557747,0.052304454147816,-0.049935076385736],[-0.076767288148403,-0.028529385104775,-0.083832502365112]],[[-0.030841816216707,0.043919622898102,0.010878587141633],[0.16631236672401,-0.03257617354393,-0.012437368743122],[-0.1250124424696,0.013644996099174,-0.090943187475204]],[[-0.13243825733662,-0.02570903301239,-0.037261035293341],[-0.054730150848627,-0.015526399947703,-0.01515566278249],[0.063026092946529,-0.01318595930934,0.13722877204418]],[[-0.014564651064575,-0.008516239002347,0.0048672175034881],[-0.10994897037745,0.063727527856827,-0.038405798375607],[-0.07952543348074,0.16933856904507,-0.031481727957726]],[[0.059531588107347,0.083129182457924,0.024790635332465],[-0.0019229820463806,-0.073010832071304,0.07903964817524],[-0.086386241018772,-0.050652660429478,-0.068793937563896]],[[-0.049304541200399,0.071024708449841,0.057511437684298],[0.049234673380852,-0.0097596272826195,0.080343328416348],[0.058910127729177,-0.025670984759927,0.071186356246471]],[[0.027719145640731,0.034958776086569,0.10406573861837],[0.01337427739054,-0.0048579513095319,0.021687334403396],[0.17233027517796,0.018815968185663,0.11553891003132]],[[-0.02182605676353,0.032004989683628,0.072741515934467],[0.022680712863803,-0.0039700111374259,-0.0013200890971348],[-0.091416925191879,-0.067337833344936,0.073153451085091]],[[-0.11776567995548,-0.089424669742584,-0.017834886908531],[0.042373802512884,-0.051923558115959,-0.051121965050697],[0.10163660347462,0.12655383348465,0.054658327251673]],[[-0.080100730061531,0.0069841691292822,0.0041117765940726],[0.014847012236714,0.014489146880805,0.018877016380429],[0.010504249483347,-0.062092579901218,-0.065819308161736]],[[0.021317631006241,0.17644798755646,-0.03683752939105],[0.085146866738796,0.030329868197441,0.034834533929825],[0.10848497599363,-0.021772159263492,0.035868961364031]],[[-0.065301276743412,-0.19925224781036,-0.17818465828896],[0.12328194826841,0.11240456998348,0.050281837582588],[0.150594830513,-0.041011162102222,0.10062482953072]],[[0.062796086072922,-0.018657943233848,-0.039901480078697],[0.041922431439161,0.038732539862394,0.022590087726712],[-0.13448716700077,0.024998441338539,0.082871772348881]],[[0.015494262799621,-0.060675941407681,-0.026207942515612],[0.050477631390095,0.034190215170383,0.023861598223448],[-0.0064230593852699,-0.059923116117716,-0.0218376070261]],[[0.038197249174118,0.0035818305332214,0.047679983079433],[-0.0031853571999818,0.1195645108819,-0.015379406511784],[-0.11921515315771,-0.006302572786808,-0.11630894988775]],[[0.1083352342248,0.067782491445541,-0.03695959225297],[-0.016393987461925,0.035400435328484,-0.1641721278429],[-0.15474231541157,0.027545340359211,-0.022805720567703]],[[-0.014170745387673,-0.011802532710135,0.023829948157072],[-0.00037574852467515,0.048975478857756,-0.0083552794530988],[-0.089907951653004,0.091226510703564,0.071389392018318]],[[0.043975099921227,0.06363020837307,0.025374194607139],[-0.028648572042584,0.00019858649466187,0.05322702601552],[0.061440404504538,0.1088595315814,0.14493374526501]],[[0.16308806836605,0.032620616257191,-0.092008531093597],[0.026059377938509,0.021713737398386,0.11988090723753],[-0.02048590965569,0.010849228128791,-0.0012428391491994]],[[0.027402840554714,0.055048637092113,0.003623929573223],[-0.06194843351841,-0.064799584448338,-0.063255310058594],[-0.094451583921909,-0.043406013399363,-0.012552291154861]],[[-0.065025985240936,0.073064424097538,0.034683268517256],[-0.0020740726031363,-0.0098667778074741,-0.071276679635048],[0.015267131850123,0.10131338238716,0.0063863196410239]],[[-0.080568954348564,-0.044566106051207,0.01086126640439],[0.008588352240622,-0.041237235069275,-0.031985990703106],[0.093710981309414,0.056617219001055,0.062034387141466]],[[0.080115541815758,0.026250388473272,-0.0024201776832342],[0.0025948940310627,0.015516446903348,-0.038385704159737],[0.059304609894753,0.10507420450449,-0.07733017206192]],[[0.022008690983057,-0.13624750077724,-0.025598121806979],[0.082018509507179,0.14125899970531,0.071451716125011],[0.013058954849839,-0.0092548886314034,-0.079114988446236]],[[0.0066583603620529,-0.11781305074692,-0.030278807505965],[-0.099813587963581,-0.10479243099689,-0.053813014179468],[-0.099208138883114,-0.022155031561852,0.041206620633602]],[[0.13967299461365,-0.017033947631717,-0.029996005818248],[-0.10499875992537,-0.012219971045852,-0.043414101004601],[0.13445197045803,0.1239485219121,0.03570618852973]],[[-0.050376385450363,-0.10431701689959,-0.014685524627566],[-0.046100750565529,0.0054735341109335,-0.019866209477186],[-0.15624684095383,-0.081280954182148,-0.0036621890030801]],[[0.060461468994617,0.012681916356087,0.057295694947243],[-0.045230410993099,0.039832539856434,-0.0043098176829517],[0.05876686424017,0.057377938181162,-0.050272300839424]],[[-0.0048272260464728,0.028312830254436,-0.12919941544533],[-0.090712986886501,-0.013805393129587,-0.031585540622473],[0.12747448682785,0.13224659860134,0.17636540532112]],[[-0.13193026185036,-0.038302972912788,-0.029973270371556],[-0.055549371987581,-0.00090596819063649,0.0762108117342],[-0.061006065458059,-0.089561112225056,-0.070993542671204]],[[-0.0055569005198777,0.16082394123077,-0.078452751040459],[-0.051675260066986,0.061032239347696,0.013938656076789],[0.07742889970541,0.0049096602015197,0.026806239038706]],[[-0.06197813898325,0.088334776461124,0.12724140286446],[-0.091044485569,0.0077237710356712,-0.030566483736038],[-0.16548655927181,-0.026576664298773,-0.0092545077204704]],[[0.079032301902771,0.062893405556679,0.20104692876339],[-0.066437616944313,-0.013857446610928,0.027509514242411],[0.032669737935066,-0.069518037140369,-0.085435964167118]],[[-0.058736771345139,-0.13812810182571,-0.0095713986083865],[-0.032067082822323,-0.01473143696785,0.018458718433976],[0.14366520941257,0.14282438158989,0.11603815853596]],[[0.024264449253678,-0.049370348453522,-0.030747298151255],[0.024182926863432,0.11638835817575,-0.082933716475964],[0.084386937320232,0.11526735126972,-0.0083338506519794]],[[-0.15396183729172,-0.030962344259024,-0.11928743124008],[-0.07697831839323,0.011937135830522,-0.038836024701595],[-0.064534358680248,-0.065940268337727,-0.015248971991241]],[[0.051131799817085,-0.076360583305359,-0.032929793000221],[-0.096826359629631,0.028465980663896,0.11371854692698],[-0.14113399386406,-0.2682923078537,-0.17465549707413]],[[0.10902502387762,-0.024301562458277,-0.014416880905628],[0.076879143714905,0.031984344124794,-0.085203915834427],[-0.067555814981461,-0.0058223200030625,0.038502331823111]],[[-0.018974106758833,0.05509191006422,-0.042041838169098],[0.0066188359633088,0.072672583162785,0.059656299650669],[0.10620540380478,0.0055169747211039,-0.062900967895985]]],[[[0.12464997917414,0.057378862053156,0.028153795748949],[-0.026729293167591,0.0029725600033998,0.033136770129204],[0.018847733736038,-0.034619521349669,0.070282377302647]],[[-0.0069373450241983,0.036888010799885,0.030034545809031],[-0.051640897989273,-0.049530036747456,0.012784312479198],[0.0069720265455544,-0.0088301310315728,0.018701748922467]],[[-0.07494243979454,-0.001412340789102,-0.025354199111462],[0.0031368832569569,-0.025089522823691,0.03509908914566],[-0.053976707160473,-0.058903709053993,-0.0077872583642602]],[[-0.006941984873265,0.065447382628918,0.00055080291349441],[-0.058715369552374,0.018928799778223,-0.026455735787749],[0.01786102540791,-0.023775802925229,0.068579703569412]],[[0.00050980411469936,-0.02339799143374,-0.0084045464172959],[0.0030811864417046,0.015972251072526,0.023569887503982],[-0.013555096462369,-0.083329498767853,-0.0016826983774081]],[[0.020896036177874,0.0078828223049641,-0.13538783788681],[-0.010816523805261,-0.00073107227217406,-0.047725602984428],[-0.055502522736788,0.018842266872525,-0.037893541157246]],[[0.056593883782625,0.0080323657020926,-0.018342373892665],[-0.048026960343122,-0.069525107741356,-0.020411007106304],[0.07131365686655,0.074455380439758,-0.02193946018815]],[[0.017314057797194,0.031227273866534,0.039592642337084],[-0.024802848696709,-0.043360330164433,-0.022119626402855],[0.016406102105975,0.039004158228636,0.050852667540312]],[[-0.0099145350977778,0.036274395883083,0.013313056901097],[-0.00074106850661337,-0.069321654736996,0.033040255308151],[-0.046186938881874,0.071424230933189,0.046268422156572]],[[-0.046801552176476,-0.081013269722462,0.01737591996789],[-0.031296975910664,-0.0052914526313543,-0.01754249446094],[0.054199151694775,-0.030876111239195,-0.030849831178784]],[[0.011875621974468,-0.0035553080961108,-0.025543903931975],[0.047750055789948,0.060241855680943,0.058581307530403],[-0.0094216000288725,-0.023733843117952,0.044870264828205]],[[0.02394587919116,0.019739298149943,-0.035811070352793],[0.011630513705313,0.041725564748049,-0.014166593551636],[0.024383662268519,-0.025890201330185,-0.08133315294981]],[[-0.051229059696198,0.023950662463903,-0.029504679143429],[0.035315219312906,0.021380163729191,-0.00200116308406],[-0.058016497641802,0.045779842883348,4.0669619920664e-05]],[[0.015694417059422,0.010175910778344,0.020488180220127],[0.024283222854137,0.027586357668042,0.042183674871922],[-0.044697988778353,0.055138003081083,0.064871713519096]],[[0.067034788429737,-0.0082078436389565,0.035712040960789],[-0.039784129709005,0.01640891097486,0.075603380799294],[0.022782878950238,-0.068262606859207,-0.013719515874982]],[[-0.075256183743477,-0.06627582013607,-0.00056853075511754],[0.076760850846767,0.0020760821644217,0.028666604310274],[-0.026996565982699,-0.01176374964416,-0.066217914223671]],[[0.039420709013939,0.029833689332008,0.075029045343399],[0.012025746516883,-0.0023926577996463,-0.044801741838455],[0.042666282504797,0.070739820599556,-0.013632154092193]],[[-0.03668101131916,0.019344817847013,-0.021620748564601],[-0.047642078250647,0.0094679184257984,0.034727148711681],[0.0041899643838406,0.044072024524212,-0.00028078450122848]],[[0.016425386071205,-0.0073057231493294,-0.047010742127895],[0.0091685876250267,0.014855291694403,0.025307087227702],[0.0059935902245343,-0.049827128648758,-0.024763762950897]],[[-0.066819496452808,0.017023351043463,-0.016869222745299],[-0.078413985669613,-0.0052565857768059,0.0099467346444726],[-0.022594705224037,-0.0084428964182734,0.020898280665278]],[[-0.037972331047058,0.0020206607878208,0.023570163175464],[-0.0098795490339398,0.0778623893857,0.04686251655221],[-0.037462078034878,0.018286800011992,0.051685348153114]],[[0.083597853779793,-0.0089585417881608,0.030147442594171],[-0.025197248905897,-0.080646052956581,-0.10113287717104],[0.0016599568771198,-0.019650001078844,-0.01040172483772]],[[0.01789084635675,-0.056992795318365,-0.026430247351527],[-0.12449998408556,-0.045548032969236,-0.068211585283279],[-0.023862313479185,-0.055528372526169,-0.057816371321678]],[[-0.015292924828827,0.069656528532505,-0.03321997821331],[0.047996163368225,-0.015940979123116,-0.058044243603945],[0.047351449728012,0.020919613540173,-0.0047932146117091]],[[-0.024422908201814,-0.007231239695102,-0.073708780109882],[-0.056141972541809,0.030621355399489,-0.0067711281590164],[0.056679271161556,0.06807953119278,-0.028775915503502]],[[-0.038336675614119,-0.0012629139237106,0.031232764944434],[0.02789113111794,0.065394960343838,-0.036740127950907],[-0.03205056861043,0.073878929018974,0.0039432514458895]],[[0.039404395967722,0.039488255977631,-0.029899621382356],[0.0230727866292,-0.028917141258717,0.044655848294497],[0.012160169892013,0.021858116611838,-0.01416056510061]],[[0.059129700064659,-0.042260188609362,-0.015885163098574],[0.02748996950686,-0.020648123696446,-0.0018372242338955],[-0.011050888337195,-0.0980594009161,-0.052236188203096]],[[-0.015067210420966,-0.019167553633451,-0.068266049027443],[0.026393808424473,0.064762055873871,-0.006315044593066],[-0.044394046068192,-0.10198118537664,0.032213762402534]],[[0.051979228854179,-0.0092545514926314,0.019916286692023],[-0.0049375165253878,0.027446087449789,0.011972586624324],[-0.032905515283346,0.023022875189781,-0.023588208481669]],[[0.0074890144169331,0.027487734332681,0.011627226136625],[0.031692303717136,0.039927359670401,0.032829377800226],[0.0064535983838141,0.028017396107316,0.073315292596817]],[[0.032290559262037,0.00087225955212489,-0.026244280859828],[-0.052795168012381,-0.042289968580008,0.030270775780082],[-0.029529327526689,-0.048554040491581,-0.012320146895945]],[[0.03586159273982,0.032012280076742,0.01411026250571],[-0.036104522645473,0.039684798568487,0.015787236392498],[0.017593877390027,-0.031670119613409,-0.009042164310813]],[[-0.019300786778331,-0.040057729929686,-0.027761457487941],[0.068029567599297,0.040389012545347,-0.07530815154314],[0.0035120544489473,-0.032433167099953,0.012901362031698]],[[0.013858140446246,0.020784327760339,-0.035618122667074],[-0.025935953482985,-0.019144397228956,-0.022075993940234],[-0.0057779336348176,0.0033629992976785,-0.010949382558465]],[[-0.16424602270126,-0.1045820787549,-0.070608660578728],[-0.0066447826102376,-0.046990763396025,-0.021057046949863],[-0.021282989531755,-0.092078804969788,0.032343257218599]],[[-0.037540856748819,0.0087727271020412,0.054455954581499],[0.03312511369586,0.032983489334583,0.036447789520025],[-0.006297143176198,0.062381401658058,-0.020143933594227]],[[0.01576023735106,-0.020884282886982,-0.0044500501826406],[-0.0061058439314365,0.025545880198479,-0.074334442615509],[-0.052349157631397,0.077350251376629,-0.0223004873842]],[[-0.032683227211237,0.032793577760458,-0.015904670581222],[-0.021092372015119,-0.020018387585878,-0.019309926778078],[0.0409040376544,-0.014210042543709,0.034355625510216]],[[-0.011974760331213,-0.038172610104084,-0.075188666582108],[-0.0056204097345471,-0.036661926656961,-0.0088290115818381],[0.00079516146797687,-0.028453109785914,0.065185844898224]],[[0.030295837670565,0.043318063020706,0.062938660383224],[-0.018206376582384,0.026437796652317,0.015357229858637],[-0.0081200860440731,-0.069431997835636,-0.029516829177737]],[[-0.0053357034921646,0.028484167531133,0.0018401985289529],[0.023190390318632,0.008060110732913,0.0062536485493183],[-0.035537544637918,0.003926154691726,-0.062438536435366]],[[-0.026319524273276,-0.010415903292596,0.0060123614966869],[0.044245932251215,0.012711379677057,0.091382600367069],[-0.0044591263867915,-0.057879500091076,-0.038126409053802]],[[-0.0044145700521767,0.057629063725471,0.017789699137211],[0.017556929960847,0.024920232594013,0.010196898132563],[-0.0034021611791104,-0.010441421531141,0.053485572338104]],[[0.099506288766861,0.022986656054854,-0.094496361911297],[-0.0046819560229778,-0.0034577236510813,0.023252163082361],[0.0095471246168017,-0.012199187651277,0.051377132534981]],[[0.031005140393972,-0.013645126484334,0.047130689024925],[-0.018145222216845,-0.031150443479419,-0.042950369417667],[0.040798306465149,-0.022331291809678,-0.018442003056407]],[[0.0034114283043891,0.03217551484704,0.044572860002518],[-0.0091223353520036,-0.036653112620115,-0.051830817013979],[0.023721838369966,-0.046239081770182,-0.032995577901602]],[[-0.081786289811134,-0.034840773791075,0.008545589633286],[0.016772303730249,-0.048827677965164,-0.073535062372684],[0.088497124612331,0.032668061554432,-0.014708533883095]],[[-0.03119033202529,-0.042534682899714,-0.11158957332373],[0.020076332613826,-0.0057648727670312,-0.046851828694344],[6.8369314249139e-05,-0.02719041891396,-0.022292939946055]],[[-0.034115556627512,-0.029360992833972,0.041748035699129],[0.056337337940931,0.067919708788395,0.014703209511936],[-0.0020999989937991,-0.025329751893878,0.054834775626659]],[[0.017367400228977,0.017418444156647,-0.002085697138682],[-0.0052975555881858,-0.001333695021458,0.016628948971629],[-0.044215217232704,0.041091233491898,-0.010642795823514]],[[0.021526955068111,-0.040971390902996,0.00021504356118385],[0.012272756546736,-0.031507287174463,-0.06168706715107],[0.10289802402258,0.028469802811742,-0.035839945077896]],[[0.020638987421989,0.062246140092611,0.03538005053997],[-0.020056467503309,-0.01844228990376,0.015358973294497],[-0.045089993625879,0.00010688461043173,-0.026448013260961]],[[0.058132641017437,0.00031608511926606,0.040427424013615],[0.013907684013247,-0.0095413457602262,0.11036331951618],[-0.02683305926621,0.029315754771233,-0.017807940021157]],[[0.050499081611633,-0.05057654902339,-0.049371637403965],[0.020414914935827,-0.017511036247015,-0.052595864981413],[0.00090892123989761,0.007134263869375,-0.050777263939381]],[[0.001560595119372,0.017387976869941,0.0087047284469008],[-0.013703669421375,0.025242557749152,0.0072142421267927],[-0.065145619213581,-0.039840828627348,0.025092002004385]],[[-0.040511220693588,-0.11927487701178,-0.036704175174236],[-0.0080150058493018,-0.010080264881253,-0.00940050650388],[0.053740605711937,-0.023249838501215,-0.038001097738743]],[[-0.033345077186823,-0.014809786342084,-0.027015507221222],[0.0094495629891753,0.044107627123594,0.0057031330652535],[-0.021449018269777,-0.030341265723109,-0.1422376036644]],[[0.0078344782814384,0.083437591791153,0.05114996060729],[0.0048364633694291,0.007558349519968,0.0027220009360462],[0.026094727218151,0.024677587673068,-0.012881642207503]],[[-0.022257704287767,-0.0038246454205364,0.015829775482416],[0.012247365899384,0.032034989446402,0.018597770482302],[-0.029467130079865,-0.017444672062993,-0.044572062790394]],[[0.016625426709652,0.077905207872391,0.020680667832494],[0.029962629079819,0.067008130252361,0.041425280272961],[-0.070583522319794,0.020658629015088,0.012141067534685]],[[0.039639547467232,-0.0032760596368462,0.076146692037582],[-0.058523185551167,-0.13165493309498,-0.047767896205187],[0.059815667569637,-0.017498264089227,0.047633606940508]],[[0.05728991702199,0.00040076213190332,0.028373712673783],[-0.012819319963455,0.038131091743708,-0.06069652363658],[-0.034609768539667,0.007771470118314,-0.015877636149526]],[[-0.018948622047901,0.03715143725276,-0.03525123372674],[0.018212951719761,-0.0040589445270598,0.051428310573101],[-0.011370566673577,-0.049100037664175,-0.043699957430363]]],[[[-0.16667787730694,-0.032456278800964,-0.15350113809109],[-0.197888687253,-0.044379398226738,-0.098449476063251],[0.013159421272576,-0.097079336643219,-0.06724114716053]],[[-0.37019157409668,-0.080476641654968,-0.16880050301552],[-0.033026844263077,-0.0147516252473,-0.13338908553123],[0.072558231651783,-0.02030978910625,-0.095653280615807]],[[0.034258965402842,0.042643651366234,-0.0028810296207666],[-0.039210438728333,-0.0601528249681,-0.081396408379078],[0.0938570946455,-0.011118747293949,-0.072901010513306]],[[0.077772542834282,-0.059631325304508,-0.068667471408844],[-0.081021331250668,0.1098812520504,0.11681921780109],[0.0040709772147238,-0.032425347715616,-0.13119699060917]],[[-0.026049083098769,0.059722919017076,0.029312483966351],[0.010364686138928,0.037579461932182,-0.039528589695692],[-0.090007655322552,-0.024320863187313,0.032047919929028]],[[0.014053566381335,-0.06117358058691,-0.06816066801548],[0.11914979666471,0.035677526146173,-0.029564617201686],[-0.024699743837118,-0.070037931203842,0.0026015627663583]],[[0.1068664342165,0.00016796145064291,0.026325961574912],[-0.054364427924156,-0.028466168791056,0.058199841529131],[-0.053624954074621,-0.00081882171798497,0.060732521116734]],[[0.11475995928049,-0.0080467713996768,-0.10407993942499],[-0.06477689743042,-0.0053840177133679,-0.11124049127102],[-0.017926316708326,0.018556941300631,-0.019881749525666]],[[0.030186969786882,0.020199753344059,0.036971811205149],[0.12945468723774,-0.23056152462959,-0.1701073795557],[0.072291843593121,-0.013380181975663,-0.0033348398283124]],[[0.081840753555298,0.029066858813167,0.010186959058046],[-0.03283491358161,-0.043776713311672,-0.0842609629035],[0.06434790790081,-0.16361606121063,-0.06456608325243]],[[0.017876712605357,-0.02997637912631,-0.13461811840534],[0.0027521362062544,-0.086610980331898,-0.030995374545455],[-0.0072614243254066,-0.087327443063259,-0.044967748224735]],[[0.030246434733272,0.0047244061715901,0.045296709984541],[0.0061982218176126,-0.040430195629597,-0.16245086491108],[0.069370955228806,0.016512295231223,-0.12102559953928]],[[-0.34608322381973,-0.36581662297249,-0.25982961058617],[0.010446025058627,-0.054501622915268,-0.054713357239962],[0.06998298317194,0.04049614444375,-0.014651049859822]],[[0.038338080048561,0.023517359048128,0.096129901707172],[-0.032527402043343,-0.039877563714981,0.029102066531777],[0.034619741141796,0.15200021862984,0.0052732862532139]],[[0.075200922787189,0.017492031678557,0.059567987918854],[-0.020003378391266,0.0626160800457,-0.043526612222195],[-0.1411884278059,-0.23376832902431,-0.07001618295908]],[[-0.18910276889801,-0.1879353672266,-0.13569587469101],[0.043108411133289,-0.042261127382517,-0.065417841076851],[-0.081703312695026,-0.069022797048092,-0.045842502266169]],[[0.014879316091537,0.1520337164402,-0.033916555345058],[0.0075203571468592,0.0071526016108692,0.0887670814991],[0.01825600489974,0.12630261480808,0.066066317260265]],[[-0.12795422971249,-0.17513909935951,-0.044414721429348],[0.022419782355428,-0.002610991941765,0.0022756168618798],[0.069727912545204,-0.029847513884306,0.025812346488237]],[[0.032579656690359,0.0057906019501388,-0.0097248032689095],[0.058571703732014,-0.043179094791412,0.027736611664295],[0.091273330152035,0.034451842308044,-0.045101810246706]],[[0.072233460843563,-0.026030382141471,0.010259931907058],[-0.064157828688622,-0.065628796815872,-0.083680652081966],[-0.057056169956923,-0.15524452924728,0.047838319092989]],[[0.017905393615365,0.077017851173878,0.026438005268574],[-0.13450086116791,-0.022215019911528,0.052631542086601],[-0.023167911916971,0.0014263537013903,-0.06368026137352]],[[-0.16348639130592,-0.047979269176722,-0.062400490045547],[-0.068434432148933,0.042122814804316,0.025262733921409],[0.048612885177135,0.02862055785954,0.024748189374804]],[[0.034514654427767,-0.063481330871582,0.069440774619579],[-0.063541129231453,-0.013743685558438,-0.043565537780523],[-0.031689066439867,-0.017874378710985,0.019795501604676]],[[-0.010293095372617,0.044971976429224,0.029237695038319],[0.094498872756958,-0.014120317064226,0.032712586224079],[0.047224141657352,-0.0050294366665184,0.076320014894009]],[[0.16332793235779,0.19193871319294,0.15841867029667],[0.056161571294069,0.05693032592535,-0.029110109433532],[-0.044383637607098,0.036163419485092,-0.041836895048618]],[[0.15840321779251,0.03328163921833,0.012168892659247],[-0.006673960480839,0.049217134714127,-0.052802182734013],[-0.081173926591873,-0.029989995062351,-0.10288698971272]],[[0.044983759522438,-0.019112098962069,0.054919134825468],[0.053546410053968,-0.011295260861516,0.07581765204668],[-0.040747843682766,-0.064215697348118,-0.14731289446354]],[[-0.034994658082724,0.10484930872917,0.048113875091076],[-0.096721969544888,-0.062059205025434,-0.0085748331621289],[0.11217726022005,-0.027774419635534,-0.13456982374191]],[[0.040353357791901,-0.01063238363713,0.051150165498257],[-0.0010976549237967,-0.052311275154352,-0.073306888341904],[-0.13496193289757,-0.053267173469067,0.017545318230987]],[[-0.3396674990654,-0.33742707967758,-0.19359862804413],[0.02202869951725,-0.0015777143416926,0.1379956305027],[0.011001030914485,-0.2109602689743,0.02577412314713]],[[-0.011963789351285,-0.097139567136765,-0.053802847862244],[-0.043337363749743,-0.049913395196199,0.1883275359869],[0.14483900368214,-0.023562848567963,-0.0045601669698954]],[[0.11055742204189,-0.068636178970337,0.058137610554695],[0.06281565874815,0.012063131667674,0.093498662114143],[0.057949088513851,-0.0070320279337466,0.10591495782137]],[[0.030228439718485,0.073630176484585,-0.11377616971731],[-0.040052529424429,0.03890236467123,0.047356437891722],[-0.0086355861276388,0.072467438876629,-0.038328997790813]],[[0.037779446691275,0.064061395823956,0.044278703629971],[-0.0086333956569433,0.10090085119009,0.051082819700241],[0.084224663674831,0.093503274023533,-0.026618810370564]],[[-0.12164622545242,-0.015629002824426,-0.031208116561174],[0.072425790131092,-0.10441871732473,-0.075587257742882],[-0.030758399516344,0.10798355937004,0.10218998789787]],[[0.077126197516918,0.069848194718361,0.092490658164024],[0.07642325013876,-0.044440776109695,-0.01282088086009],[0.0060368347913027,-0.1068077981472,-0.093773931264877]],[[0.034747757017612,-0.027508318424225,-0.05764964222908],[0.20688365399837,0.077437870204449,0.012879296205938],[0.098646633327007,-0.014647820033133,-0.052674673497677]],[[-0.23335635662079,-0.0084047531709075,-0.029067100957036],[0.019355043768883,0.0068793939426541,0.0063339564949274],[-0.062857992947102,0.0010697175748646,0.098661914467812]],[[0.16712489724159,0.080499812960625,0.12163642793894],[-0.098562456667423,-0.10287874191999,-0.051981043070555],[-0.020661178976297,-0.059691190719604,-0.0092093711718917]],[[-0.034929171204567,-0.012496360577643,-0.069297105073929],[-0.11962960660458,-0.0027361235115677,0.0036238024476916],[0.18007506430149,0.053622901439667,-0.15682937204838]],[[0.036405093967915,-0.033061694353819,-0.047276675701141],[0.021552313119173,0.0089923860505223,0.0017874119803309],[-0.066036678850651,-0.047247800976038,-0.026700126007199]],[[-0.12721228599548,0.025197235867381,-0.08557803183794],[0.012436526827514,-0.084573693573475,0.020618041977286],[0.027821799740195,-0.089901715517044,-0.003296721028164]],[[-0.0038559664972126,-0.060652114450932,-0.13312739133835],[0.10982113331556,0.10660413652658,0.11313831806183],[-0.053182404488325,0.0261763446033,-0.087076611816883]],[[0.018933825194836,0.02328946441412,-0.20030011236668],[-0.04384059458971,-0.080618120729923,0.049552634358406],[0.082512646913528,0.15094873309135,0.050893392413855]],[[-0.053894814103842,-0.064993195235729,-0.40187817811966],[-0.090257249772549,-0.070423282682896,0.028210857883096],[0.023947291076183,-0.0066386763937771,-0.0034544640220702]],[[0.084455944597721,0.0057688038796186,0.026437073945999],[-0.056462548673153,-0.01424209587276,-0.0076120593585074],[0.030618401244283,0.041166078299284,-0.028124155476689]],[[0.02635070681572,-0.019520130008459,0.084404289722443],[0.0021145239006728,0.099630296230316,0.008478288538754],[-0.0067318477667868,-0.073777481913567,-0.073775596916676]],[[0.054730039089918,-0.0030457766260952,-0.045810919255018],[-0.0769137814641,0.081609100103378,0.046205904334784],[-0.042302753776312,0.069314569234848,0.053370542824268]],[[0.031056424602866,-0.05264263600111,-0.081385098397732],[-0.09177703410387,0.014692253433168,-0.080213502049446],[-0.058253284543753,0.16578350961208,-0.0049927430227399]],[[0.050096977502108,-0.054994001984596,-0.0038982734549791],[0.096497416496277,-0.018400888890028,-0.22749863564968],[0.10597241669893,0.18927548825741,0.1495551019907]],[[0.049881670624018,-0.040886580944061,0.008675211109221],[-0.10179295390844,-0.02869326248765,0.075293563306332],[0.20735721290112,0.02722186408937,0.050529807806015]],[[0.021354012191296,-0.11890392750502,-0.19002297520638],[0.095437355339527,-0.011172817088664,0.095305874943733],[0.015356621704996,-0.030237782746553,0.010337416082621]],[[0.026149461045861,0.1574665158987,-0.053071908652782],[-0.08874936401844,0.023433985188603,0.14132910966873],[-0.17309430241585,-0.015199650079012,-0.18861001729965]],[[-0.020758748054504,-0.059526100754738,0.090227335691452],[-0.063706368207932,0.025343457236886,-0.049179673194885],[-0.054828584194183,0.011467041447759,0.094312638044357]],[[-0.25014731287956,-0.12035355716944,-0.11455994099379],[0.06573711335659,0.0096778618171811,0.085933111608028],[-0.038256268948317,0.089239336550236,-0.070426754653454]],[[-0.13741977512836,0.030235879123211,0.019652251154184],[0.019579531624913,0.039149228483438,-0.016698246821761],[0.061817277222872,0.054608006030321,-0.031962241977453]],[[0.053024236112833,-0.12136106193066,-0.11236453056335],[0.098657101392746,0.089100740849972,-0.036618765443563],[-0.047673285007477,0.00074623146792874,0.04121071845293]],[[0.006298590451479,-0.029670210555196,-0.10209799557924],[-0.11572739481926,0.010368730872869,-0.13589841127396],[-0.0024749601725489,0.015381536446512,0.1113885268569]],[[0.016062935814261,-0.027038276195526,0.08195324242115],[0.0061968406662345,0.035290826112032,0.080877862870693],[0.074398808181286,-0.0010718083940446,0.12927307188511]],[[0.034530386328697,-0.018714018166065,-0.068812310695648],[-0.070075929164886,0.044552840292454,-0.0931376516819],[0.073592208325863,0.0032721182797104,0.081192165613174]],[[0.14595149457455,-0.073850341141224,0.10712418705225],[0.19353504478931,-0.019238209351897,-0.037960790097713],[-0.002240706468001,-0.073135614395142,-0.035946320742369]],[[-0.12508195638657,0.052202343940735,-0.036104135215282],[0.0058061466552317,0.035394720733166,0.038984067738056],[-0.1802004724741,-0.022787850350142,0.16744634509087]],[[0.054228454828262,0.047418273985386,-0.00075191323412582],[-0.034818526357412,0.011935064569116,0.057600565254688],[-0.0048425737768412,-0.025272721424699,0.032071523368359]],[[0.050142861902714,-0.021148843690753,0.014053504914045],[0.053781446069479,0.019080141559243,0.027420438826084],[-0.022888751700521,-0.032911024987698,0.00094122305745259]]],[[[0.0748550593853,-0.09397779405117,-0.049610052257776],[0.013509864918888,-0.084471970796585,0.10419323295355],[-0.017184905707836,-0.17813950777054,0.041679378598928]],[[-0.012278696522117,-0.21941883862019,-0.091034926474094],[-0.053144332021475,-0.054575961083174,-0.12393797934055],[0.13590118288994,-0.062578000128269,-0.040940627455711]],[[0.043760657310486,0.047933477908373,0.10039332509041],[-0.22009117901325,-0.16255868971348,-0.061315014958382],[-0.043879359960556,-0.059040609747171,-0.025931507349014]],[[-0.31131792068481,-0.059140395373106,-0.14067381620407],[-0.087880983948708,0.075982622802258,-0.068250514566898],[0.0059974114410579,0.10949153453112,0.036514952778816]],[[-0.062454231083393,-0.024664975702763,-0.049103293567896],[-0.019014831632376,-0.042784571647644,-0.044526360929012],[0.020573442801833,-0.033675614744425,-0.098856389522552]],[[-0.089084602892399,0.0063839955255389,-0.019773015752435],[-0.091849222779274,-0.058104190975428,-0.092927560210228],[-0.2187677770853,-0.25249567627907,0.011179307475686]],[[-0.0032216107938439,0.074782386422157,-0.030918626114726],[0.010944056324661,-0.025127185508609,-0.004019608721137],[-0.0010173016926274,0.014984699897468,0.05951327458024]],[[-0.007791387848556,0.16119879484177,-0.13471268117428],[-0.083411619067192,0.12359683960676,0.018955368548632],[-0.091915927827358,0.11635003983974,0.1304307281971]],[[-0.1772965490818,0.23533880710602,0.012765794992447],[-0.16617853939533,0.075488194823265,-0.013024292886257],[-0.28802195191383,0.10802276432514,0.034256011247635]],[[-0.0093057416379452,-0.0026311101391912,-0.081796318292618],[-0.05733247846365,-0.050529588013887,-0.056248757988214],[-0.099223732948303,-0.0050148870795965,-0.081110738217831]],[[-0.12223496288061,-0.073640361428261,0.011161393485963],[0.0070718321949244,0.016180878505111,-0.039041791111231],[0.092575646936893,0.044293746352196,-0.081648245453835]],[[0.030076533555984,-0.0070811654441059,0.039447415620089],[0.11130823940039,-0.064872905611992,0.0085916668176651],[0.031348492950201,-0.18216264247894,0.050220668315887]],[[-0.13310042023659,-0.12050786614418,-0.10990957170725],[0.081988237798214,0.075535036623478,0.037809610366821],[-0.11261474341154,-0.045706324279308,0.072982147336006]],[[0.14957748353481,0.11213903874159,0.093773134052753],[-0.041428793221712,0.006090662907809,0.071240127086639],[-0.08595884591341,0.066889226436615,-0.0037350002676249]],[[0.041084852069616,-0.26745167374611,-0.012612859718502],[-0.033946163952351,-0.25143134593964,-0.017980933189392],[0.02328765206039,-0.0017737207235768,-0.03254085034132]],[[0.054774045944214,-0.04065153002739,-0.056969404220581],[-0.08424673974514,-0.10878378152847,-0.18101993203163],[0.019614802673459,-0.018283411860466,-0.17521795630455]],[[-0.088917382061481,0.0089129200205207,0.038559596985579],[-0.039297088980675,0.034308675676584,0.10083444416523],[-0.098410196602345,-0.075978353619576,0.15089586377144]],[[0.13873402774334,0.11292699724436,-0.034619025886059],[-0.0033719763159752,0.0081683862954378,-0.10557935386896],[0.082064181566238,-0.013575158081949,-0.12004668265581]],[[0.085375256836414,-0.25174069404602,-0.022759629413486],[-0.003066421719268,-0.1177414432168,-0.10113438218832],[0.0026712703984231,0.051614239811897,-0.060394458472729]],[[0.084306955337524,-0.11282193660736,0.10411504656076],[-0.079259090125561,-0.059132762253284,-0.087734900414944],[-0.032731611281633,0.096024490892887,-0.037550441920757]],[[0.12095260620117,-0.26249125599861,-0.018409453332424],[0.11327910423279,-0.18320471048355,0.020430264994502],[0.13952854275703,-0.10406015068293,-0.055656127631664]],[[-0.044171050190926,-0.0523173622787,-0.0025414873380214],[-0.02665670402348,0.0089919753372669,-0.050181418657303],[-0.05415914952755,0.023946933448315,0.017072569578886]],[[-0.092732697725296,-0.058497875928879,-0.00547846686095],[-0.051775880157948,0.10060046613216,-0.028309127315879],[-0.14793266355991,0.08567925542593,-0.087530083954334]],[[0.081982962787151,-0.021425314247608,0.35254803299904],[0.087720580399036,-0.12176851928234,0.07260650396347],[-0.11906011402607,-0.013910139910877,0.013709253631532]],[[-0.17424929141998,-0.053479805588722,0.032034561038017],[0.038412429392338,0.14199402928352,0.097875580191612],[0.12225480377674,0.10530076920986,-0.055045515298843]],[[-0.0023386562243104,-0.0036992030218244,0.039713304489851],[-0.0064680920913815,-0.035262569785118,-0.051133166998625],[0.024350840598345,-0.011630301363766,-0.059986785054207]],[[-0.014231945388019,0.029472997412086,0.02507827244699],[0.051222059875727,0.022257084026933,-0.11140537261963],[-0.014947728253901,-0.047464814037085,0.038332175463438]],[[0.084560461342335,0.0030079386197031,0.038145452737808],[-0.013719682581723,0.011331798508763,0.16461946070194],[-0.11335189640522,0.00080611486919224,0.014776556752622]],[[-0.049431931227446,-0.10087971389294,-0.10848535597324],[0.0092541836202145,-0.059388376772404,-0.089392878115177],[0.17015191912651,0.055777356028557,-0.23012484610081]],[[-0.070452891290188,-0.016150418668985,0.085558317601681],[-0.12432646006346,-0.20766788721085,0.058772265911102],[-0.026770729571581,-0.096704266965389,0.068308763206005]],[[-0.08611574023962,0.014597562141716,-0.072812288999557],[-0.15557463467121,-0.067057609558105,-0.013304868713021],[-0.0285998955369,0.12094217538834,0.062577277421951]],[[-0.080619640648365,0.049843955785036,0.05986375361681],[-0.10717871040106,0.014540848322213,-0.016775930300355],[-0.021441606804729,0.097085230052471,0.17920197546482]],[[0.10238818079233,-0.036247994750738,-0.095235347747803],[-0.078827604651451,-0.038708340376616,-0.076712228357792],[-0.0052616102620959,0.16565448045731,-0.34531661868095]],[[-0.010693718679249,0.049714360386133,-0.11052063852549],[-0.097274109721184,-0.047059666365385,-0.0099891470745206],[-0.034538581967354,-0.093674004077911,0.058666933327913]],[[-0.022571725770831,-0.059832315891981,0.037545017898083],[0.047853887081146,-0.059061408042908,0.027704756706953],[0.051473442465067,-0.03407833352685,0.060859639197588]],[[0.17328482866287,0.028688145801425,0.102757781744],[0.12637911736965,0.000804623356089,0.064870446920395],[0.001058743102476,-0.069052837789059,-0.065665245056152]],[[0.072810851037502,0.12278228998184,0.013805516064167],[-0.059895981103182,0.065184786915779,0.13504230976105],[0.090978786349297,-0.092034071683884,0.062924832105637]],[[0.25003105401993,-0.1042263507843,-0.034880109131336],[0.025833815336227,-0.083810344338417,-0.00795017182827],[0.038950778543949,-0.0741166472435,-0.029627045616508]],[[-0.36015611886978,0.050457697361708,0.12797378003597],[0.012864973396063,0.0415951423347,-0.029389625415206],[-0.042849507182837,-0.12887164950371,-0.029066486284137]],[[-0.024616468697786,-0.038981962949038,-0.043727781623602],[-0.053665921092033,0.0029874357860535,0.02596328034997],[-0.069404020905495,0.055263858288527,-0.043779976665974]],[[-0.09878496825695,0.041764587163925,0.012557284906507],[-0.043118502944708,0.03118266351521,-0.0035931563470513],[0.022383619099855,-0.05235854908824,-0.088712893426418]],[[-0.13578160107136,-0.09851411730051,0.044744171202183],[-0.094905853271484,0.014284300617874,0.0040583126246929],[-0.080047801136971,-0.0057986937463284,0.094876550137997]],[[-0.080167189240456,-0.031153181567788,-0.0034848970826715],[0.021591100841761,0.090567216277122,0.033840354532003],[0.070932440459728,0.051554229110479,-0.027266731485724]],[[0.0095958597958088,-0.073825106024742,-0.149937286973],[-0.020352989435196,0.044454570859671,0.12396615743637],[0.019188137724996,0.015331143513322,0.056917738169432]],[[0.085899583995342,0.02870355732739,-0.067467801272869],[0.06495850533247,-0.0034158891066909,-0.10367888212204],[-0.071313634514809,-0.060371465981007,-0.020556075498462]],[[-0.073815159499645,0.0069791371934116,-0.015087815001607],[0.043297313153744,0.02360207028687,0.029424102976918],[-0.027688484638929,-0.044866338372231,-0.076329655945301]],[[0.021853320300579,-0.07563704252243,-0.049705818295479],[0.066929943859577,-0.060861799865961,-0.011156025342643],[-0.059362042695284,-0.1615933328867,0.072376295924187]],[[-0.056096468120813,-0.060861568897963,0.028814071789384],[0.011332715861499,-0.043702553957701,0.046104699373245],[-0.091689512133598,-0.024885818362236,-0.0067232819274068]],[[-0.039938237518072,0.036164090037346,0.054324116557837],[-0.034807052463293,0.033243112266064,0.025307890027761],[-0.07608900219202,-0.12868931889534,0.077918477356434]],[[-0.091411136090755,-0.092892408370972,0.1207580268383],[-0.014988184906542,0.069439060986042,0.072785578668118],[0.0038470313884318,0.1383338868618,0.071218393743038]],[[0.074256174266338,-0.0065576988272369,-0.019409207627177],[0.065173231065273,0.031690310686827,0.094999931752682],[-0.025988353416324,-0.1479160785675,-0.19066077470779]],[[0.11317700147629,-0.03719574213028,0.0084636751562357],[0.079735979437828,0.0045692278072238,-0.09259095788002],[0.011477754451334,0.0056358561851084,-0.0090600494295359]],[[0.21279768645763,0.04182618111372,-0.046684246510267],[-0.089070715010166,0.041832871735096,0.01839604973793],[-0.097318008542061,0.092046156525612,-0.0052892100065947]],[[-0.078103996813297,0.064445592463017,0.0080716265365481],[0.011333079077303,0.039602503180504,-0.0063194427639246],[0.020287349820137,0.096916198730469,-0.024994812905788]],[[0.068333633244038,-0.11437629163265,-0.098597019910812],[-0.043296311050653,-0.064193025231361,-0.13374197483063],[-0.1044300198555,0.04671173542738,-0.10963886231184]],[[0.021192656829953,0.041174590587616,-0.1314450353384],[0.072634823620319,-0.024636156857014,-0.0010395771823823],[-0.19882659614086,0.18762665987015,0.014859707094729]],[[-0.30805489420891,-0.31740310788155,0.28214603662491],[0.010977131314576,-0.11138162016869,0.00083127780817449],[-0.050122074782848,-0.067827746272087,0.064124681055546]],[[0.16042585670948,-0.15495093166828,0.096446484327316],[0.078685700893402,-0.11899384111166,-0.098692253232002],[0.051158305257559,-0.068944752216339,-0.010197238996625]],[[-0.04521320015192,0.12368799746037,0.06478264182806],[0.02807879820466,0.099868766963482,-0.038793195039034],[0.044415958225727,0.02540004812181,0.047112435102463]],[[0.070039033889771,-0.094164833426476,-0.074546091258526],[0.0092686731368303,-0.025069139897823,-0.027405539527535],[-0.082206949591637,-0.074246600270271,0.020497614517808]],[[0.098609529435635,0.013270303606987,-0.057202767580748],[-0.11325239390135,0.053948719054461,0.05820244923234],[-0.010100584477186,-0.0035197180695832,-0.028959639370441]],[[-0.14345322549343,-0.059393882751465,-0.40480899810791],[0.056837271898985,0.071195647120476,0.026631424203515],[-0.023302093148232,-0.057152189314365,0.26994568109512]],[[-0.0066281617619097,-0.072289951145649,0.09443111717701],[0.061008218675852,0.062241796404123,0.098414227366447],[0.12291290611029,0.026851182803512,-0.027885576710105]],[[-0.16168263554573,-0.048999182879925,-0.091291680932045],[-0.07187893986702,-0.21949721872807,-0.07557225972414],[0.048006936907768,-0.12504711747169,0.047901436686516]]],[[[0.041496019810438,0.093899495899677,-0.034660436213017],[-0.023914080113173,-0.08682768791914,-0.041981603950262],[0.026407269760966,-0.052085898816586,0.032952059060335]],[[-0.021224090829492,-0.043252781033516,-0.036702524870634],[-0.011931673623621,0.041000187397003,0.0054951114580035],[0.034098528325558,-0.063095070421696,-0.027119556441903]],[[-0.097509749233723,-0.026772415265441,-0.022650957107544],[0.0073321517556906,-0.036883559077978,0.03064282797277],[-0.094777822494507,-0.10494768619537,0.036861002445221]],[[-0.10130124539137,-0.026603195816278,-0.03543234243989],[0.076724402606487,0.0044479030184448,0.016118811443448],[-0.029905853793025,0.040421910583973,-0.02923110127449]],[[-0.11653030663729,-0.024027666077018,0.0064540086314082],[-0.09114358574152,-0.19536928832531,0.044714257121086],[-0.091286972165108,-0.098938375711441,-0.05622723326087]],[[-0.0088665783405304,0.060160480439663,-0.0023343218490481],[-0.057549431920052,-0.0026953322812915,-0.047713451087475],[0.036623265594244,-0.061850920319557,-0.010587448254228]],[[-0.051959533244371,-0.031900610774755,-0.049592230468988],[-0.0016705632442608,-0.041851598769426,-0.12498351186514],[0.12099985778332,-0.05365277826786,0.15859770774841]],[[0.041307915002108,-0.080293618142605,0.054311070591211],[-0.1163027510047,0.011299217119813,-0.1156107634306],[-0.087455548346043,0.10806732624769,0.07378102093935]],[[-0.048728916794062,-0.0087882466614246,0.012191550806165],[-0.090374603867531,0.049148686230183,-0.025540269911289],[-0.063772492110729,0.015183506533504,-0.013326548971236]],[[0.03328013420105,-0.064461536705494,0.057152446359396],[0.025510707870126,-0.039921101182699,0.13863261044025],[-0.027345506474376,0.0070368689484894,-0.0097501073032618]],[[-0.040390554815531,0.026351509615779,0.16130508482456],[-0.015461097471416,0.051432613283396,-0.21316236257553],[0.011674201115966,0.080574102699757,0.13458094000816]],[[0.033469628542662,0.0086813187226653,-0.024642433971167],[9.7981741419062e-05,-0.043794073164463,0.068550921976566],[-0.080055631697178,0.0043330690823495,-0.044755827635527]],[[0.11037042737007,-0.077951140701771,-0.0089605152606964],[0.053797751665115,-0.054658532142639,-0.076461538672447],[-0.03839648514986,-0.057335503399372,0.090335831046104]],[[-0.10215774178505,-0.12376607209444,0.00020013039465994],[0.060702331364155,0.043496508151293,-0.10353663563728],[-0.056229688227177,0.012904184870422,0.090521536767483]],[[-0.059648159891367,-0.007683714851737,-0.0069964369758964],[-0.09490068256855,-0.022145221009851,-0.017348116263747],[-0.10224206745625,0.048791762441397,-0.10244990885258]],[[0.036645397543907,-0.12575244903564,0.051933739334345],[-0.030164942145348,-0.138093739748,0.061702206730843],[-0.099608525633812,0.058510504662991,0.079356923699379]],[[-0.010684142820537,-0.038481492549181,-0.28903138637543],[-0.089616924524307,-0.048530731350183,-0.010576657950878],[-0.062114838510752,-0.083863317966461,-0.081858083605766]],[[0.027044070884585,0.00041785326902755,-0.13725833594799],[0.013676918111742,-0.050873391330242,0.044644642621279],[0.035626966506243,0.11960495263338,0.051605675369501]],[[0.071396514773369,-0.072345018386841,-0.13125725090504],[-0.067816436290741,-0.027833554893732,0.027787091210485],[-0.24269899725914,0.11913908272982,0.041350267827511]],[[-0.056430570781231,-0.083362482488155,-0.15644033253193],[-0.084044001996517,-0.0056204814463854,0.00070704921381548],[0.0035879742354155,0.0057208645157516,0.032321400940418]],[[-0.020756276324391,-0.044787999242544,0.054627351462841],[0.039788983762264,-0.0053255124948919,-0.044017814099789],[0.12328235059977,0.079579129815102,-0.076714180409908]],[[0.030259529128671,0.0080545013770461,-0.022754583507776],[-0.075018882751465,-0.021387638524175,-0.005257610231638],[0.0097229685634375,-0.030382119119167,-0.028210325166583]],[[-0.097641222178936,-0.065175771713257,-0.078975021839142],[-0.07573002576828,0.087933123111725,-0.020522467792034],[0.065782926976681,0.068000391125679,-0.070317685604095]],[[0.11291916668415,0.029383905231953,0.012788391672075],[0.19529916346073,0.046505246311426,-0.075690917670727],[-0.034835111349821,-0.093835607171059,0.10550896078348]],[[0.092780113220215,-0.12720541656017,-0.020687172189355],[-0.026762709021568,0.039586797356606,0.028607923537493],[-0.0074682137928903,-0.027810724452138,-0.032047126442194]],[[-0.020864767953753,0.014697739854455,0.033790551126003],[-0.0063981101848185,-0.070609137415886,0.02924570068717],[-0.017825432121754,-0.0073613421991467,0.00031807512277737]],[[0.031345654278994,0.001627265359275,-0.086307130753994],[0.07502468675375,0.063225783407688,-0.062216438353062],[0.025072555989027,-0.10997480899096,0.1769812554121]],[[0.0034820425789803,0.02566309645772,-0.20051246881485],[-0.011219850741327,-0.04715970531106,-0.28929826617241],[-0.082759223878384,-0.14919303357601,-0.078792609274387]],[[-0.0090082520619035,0.033918552100658,-0.017596166580915],[0.015344330109656,0.012412115000188,0.027821281924844],[0.09524742513895,-0.0040381266735494,0.0067179463803768]],[[0.092463202774525,0.052029114216566,-0.087835557758808],[0.010173759423196,-0.09058241546154,0.018433589488268],[-0.0097056217491627,0.014174485579133,0.11707249283791]],[[-0.0088449781760573,0.02073641307652,-0.013634799048305],[-0.059549003839493,-0.040582410991192,-0.072475500404835],[0.042877666652203,-0.061351925134659,-0.1512735337019]],[[0.036350414156914,0.20989468693733,0.042311653494835],[-0.087726071476936,-0.022679841145873,-0.079686023294926],[-0.064681626856327,-0.16508361697197,-0.009937328286469]],[[0.060320101678371,0.031092274934053,-0.016397880390286],[0.043890804052353,-0.047752253711224,0.049849692732096],[0.05639074370265,0.041647028177977,0.0057900645770133]],[[0.081630989909172,0.068142056465149,0.047971546649933],[-0.005569560918957,0.0092140780761838,0.032404281198978],[-0.041475802659988,0.066513799130917,-0.10854289680719]],[[-0.0817965939641,-0.1158541738987,-0.062895715236664],[-0.010628581978381,-0.044095985591412,0.061290930956602],[-0.072464063763618,-0.019506715238094,0.12167421728373]],[[0.0080539984628558,0.045198239386082,0.079141698777676],[0.071759171783924,-0.042380172759295,0.086083590984344],[-0.0092773018404841,0.03206330537796,0.10194258391857]],[[-0.1789393723011,-0.0086789289489388,-0.034693371504545],[-0.021662762388587,0.010760834440589,-0.034305546432734],[0.1553103774786,0.0079351812601089,0.030376594513655]],[[0.051941953599453,-0.04771676659584,-0.096865229308605],[-0.099970228970051,0.063195422291756,-0.20550638437271],[-0.23724634945393,-0.12138701975346,-0.15586853027344]],[[-0.21893286705017,0.052302595227957,-0.015989914536476],[0.058896776288748,0.035580992698669,-0.035486176609993],[-0.077392317354679,-0.020492777228355,0.011412113904953]],[[-0.0016047488898039,-0.078554570674896,-0.061994045972824],[-0.049024231731892,0.050006054341793,0.11399026960135],[0.044442865997553,0.10255047678947,-0.11013285070658]],[[-0.0097536919638515,-0.059273540973663,-0.10914302617311],[-0.042062148451805,-0.090365454554558,0.074689373373985],[-0.10167141258717,-0.10304688662291,-0.0089108236134052]],[[-0.08400221914053,-0.00844950042665,-0.080495290458202],[-0.058784976601601,-0.012827813625336,-0.10353493690491],[0.1059587970376,-0.027145633473992,0.035038724541664]],[[-0.10944137722254,-0.14357224106789,0.096557222306728],[-0.0049307351000607,0.054436583071947,0.11190544068813],[0.049561399966478,0.10808821767569,-0.13101023435593]],[[0.055580981075764,-0.05299773812294,0.092652790248394],[-0.034807793796062,0.044620830565691,0.0081348698586226],[-0.057455692440271,0.15518097579479,0.0044656842947006]],[[0.060191299766302,-0.075503751635551,-0.23623497784138],[-0.0085119418799877,-0.016022697091103,0.021489696577191],[-0.083457671105862,-0.086276322603226,0.10795002430677]],[[0.066984556615353,-0.068862184882164,-0.025837741792202],[-0.052036967128515,-0.070064775645733,0.014575816690922],[-0.030924119055271,0.049782603979111,0.054547216743231]],[[0.15633156895638,-0.041038528084755,-0.16672894358635],[0.034229978919029,0.01342539396137,-0.12922048568726],[0.072502933442593,-0.12026736885309,-0.024342542514205]],[[0.12704001367092,0.0039115743711591,-0.079463757574558],[-0.091046445071697,0.037478428333998,-0.10154806822538],[-0.023515023291111,-0.083099603652954,0.061302479356527]],[[0.080068446695805,0.082409225404263,0.1222335100174],[0.06233698502183,-0.023229287937284,0.028846837580204],[-0.012180160731077,-0.10583010315895,0.10529534518719]],[[0.071156777441502,-0.056458909064531,0.035739738494158],[-0.016965275630355,-0.090818159282207,0.11888980865479],[0.11252530664206,0.064723290503025,-0.080870166420937]],[[0.080109640955925,0.074082471430302,-0.0088311387225986],[-0.042999785393476,0.0018543032929301,-0.071210637688637],[-0.12338270992041,-0.054991416633129,0.09115756303072]],[[-0.00044904832611792,-0.054283604025841,0.094392955303192],[0.02628730982542,0.0013251192867756,0.1327538639307],[0.020644582808018,0.091649636626244,-0.12604117393494]],[[-0.038793623447418,0.025158980861306,0.11182702332735],[0.015572457574308,0.054384555667639,0.022145319730043],[0.077770262956619,0.06432743370533,-0.029680613428354]],[[0.11942896991968,-0.051779568195343,0.0086304750293493],[0.040599502623081,-0.094790183007717,0.0025926535017788],[0.06205515936017,-0.18589068949223,0.093116141855717]],[[0.029307784512639,0.0097170043736696,-0.10056275129318],[0.0017373412847519,0.020612886175513,-0.18443123996258],[-0.15867851674557,0.022752655670047,0.031760957092047]],[[-0.066142439842224,0.061284869909286,-0.089387632906437],[-0.038229320198298,-0.01336355227977,0.096584737300873],[-0.058419596403837,-0.12431879341602,0.036304883658886]],[[0.0338987223804,-0.15394081175327,0.072951786220074],[0.022960893809795,-0.041724935173988,0.0012013332452625],[-0.033903438597918,0.029929606243968,0.0623499751091]],[[-0.069128654897213,0.011083021759987,-0.00090445257956162],[-0.079573825001717,0.039415217936039,-0.04029742628336],[0.002019781852141,0.068095326423645,-0.051958907395601]],[[0.095233485102654,0.065457165241241,0.0069601545110345],[0.066572517156601,0.0217508636415,0.007466007489711],[-0.024483617395163,0.02263637073338,0.091118738055229]],[[-0.011026917025447,0.088375546038151,0.048175938427448],[-0.091164261102676,0.11260692775249,0.0028823302127421],[-0.082659639418125,-0.058912836015224,0.057453546673059]],[[0.066975392401218,-0.17457765340805,-0.082568056881428],[-0.020135354250669,0.085697077214718,-0.094780929386616],[-0.0032146179582924,-0.016565721482038,-0.033607825636864]],[[-0.10629018396139,-0.13400031626225,-0.024153793230653],[0.013036767952144,-0.067798800766468,-0.065141290426254],[0.028267446905375,-0.10240070521832,-0.022943381220102]],[[0.035039767622948,0.034736420959234,0.0041267229244113],[0.035361126065254,0.056671377271414,-0.034099530428648],[-0.093905419111252,0.11606246232986,0.058702927082777]],[[0.067577287554741,-0.02312439493835,0.031486686319113],[-0.027780657634139,-0.021066002547741,-0.0069921449758112],[-0.026307145133615,0.019226768985391,-0.17229682207108]]],[[[-0.033082019537687,-0.069245040416718,-0.03079092130065],[0.10712771862745,0.035889606922865,-0.077349483966827],[0.0053841979242861,0.022540925070643,0.12025073170662]],[[-0.045751109719276,-0.073526374995708,-0.025725135579705],[-0.0058513781987131,-0.012181318365037,-0.013741347007453],[-0.032857559621334,-0.14740754663944,-0.046469230204821]],[[0.080480724573135,0.015396664850414,-0.052455320954323],[-0.11852491647005,-0.10041984915733,-0.02100059017539],[-0.091379679739475,-0.069588594138622,-0.01141029316932]],[[-0.15015845000744,0.03353276476264,0.069965459406376],[-0.03654095903039,-0.12459556013346,-0.032604217529297],[0.14516168832779,0.015048131346703,-0.02597296051681]],[[-0.061347849667072,0.078712798655033,0.024345321580768],[0.13728658854961,0.099543020129204,0.037368591874838],[-0.08700192719698,-0.044819913804531,-0.079105772078037]],[[-0.11360567808151,-0.1120492592454,-0.069062903523445],[-0.015901746228337,0.12112261354923,-0.039094980806112],[-0.013855079188943,-0.047797050327063,-0.033143077045679]],[[0.054443597793579,0.050612810999155,0.021498465910554],[0.028685206547379,-0.026897549629211,-0.012273436412215],[-0.055659361183643,0.014232742600143,0.080449901521206]],[[0.12256637960672,0.020899955183268,0.025650147348642],[-0.022768560796976,0.035297207534313,0.017002938315272],[-0.023507557809353,0.014373336918652,-0.022710349410772]],[[-0.0068476856686175,0.065244473516941,-0.037157475948334],[-0.015081611461937,-0.029734035953879,-0.026708777993917],[-0.020759359002113,0.13057957589626,0.020943466573954]],[[-0.1374077796936,0.10609779506922,0.071143046021461],[-0.058442443609238,-0.030966717749834,-0.1889822781086],[-0.059716679155827,-0.033627692610025,-0.081248439848423]],[[0.15481840074062,-0.080450125038624,-0.053072657436132],[-0.054923456162214,0.056407637894154,-0.01744763366878],[0.0021208180114627,0.082991078495979,-0.0028086653910577]],[[0.054549153894186,0.039719376713037,0.046620201319456],[-0.078301168978214,-0.036789268255234,-0.049359817057848],[-0.15247230231762,-0.0512635409832,-0.11272487044334]],[[0.012185994535685,-0.079356089234352,0.003895252244547],[-0.033278182148933,-0.014127496629953,0.035388872027397],[-0.10628800094128,-0.12799265980721,0.012073838151991]],[[-0.065832205116749,0.012025957927108,0.030506793409586],[0.054414182901382,0.15012077987194,0.025860032066703],[-0.22464355826378,-0.18075673282146,0.041758500039577]],[[0.02086578682065,0.09806015342474,-0.097435638308525],[-0.051646072417498,0.010128365829587,-0.016235569491982],[-0.12903901934624,0.013930408284068,0.053891826421022]],[[0.04664933681488,0.054910328239202,-0.0045327926054597],[-0.077622778713703,0.074577450752258,0.0079595176503062],[0.038071110844612,-0.11003085970879,0.044005841016769]],[[-0.11223387718201,-0.12162330746651,-0.063349701464176],[0.011313338764012,-0.03268288820982,0.072253711521626],[0.036370601505041,0.027486434206367,-0.096097745001316]],[[0.017621483653784,-0.014939096756279,-0.012119206599891],[-0.091968961060047,0.026889169588685,0.043532472103834],[0.02405364997685,-0.051687754690647,0.11595887690783]],[[0.11087729781866,-0.0089912731200457,-0.15943971276283],[0.085825964808464,0.072848349809647,-0.0074679492972791],[0.027077132835984,0.011242169886827,0.11321552842855]],[[-0.026254646480083,0.023614240810275,-0.063842810690403],[0.0046295467764139,-0.23419465124607,-0.19618646800518],[-0.025053614750504,-0.036980196833611,0.0036930008791387]],[[0.06557659059763,-0.0025521465577185,-0.037243623286486],[-0.0030852484051138,0.052493285387754,-0.1287480443716],[0.069929286837578,-0.013972816057503,0.041237145662308]],[[-0.062967486679554,0.030272148549557,-0.0074336216785014],[0.036398611962795,-0.044773798435926,-0.07038539648056],[0.065705895423889,-0.033672861754894,-0.072273701429367]],[[-0.00015574664575979,0.039532568305731,0.012855364941061],[-0.043405447155237,0.0011861909879372,-0.11572529375553],[0.10751035809517,0.037583239376545,0.0092038111761212]],[[0.017372354865074,0.067624248564243,0.016488339751959],[0.044182691723108,-0.095914229750633,-0.084792204201221],[0.15665119886398,-0.010890984907746,0.1706256121397]],[[0.14082027971745,0.00737250642851,-0.053674228489399],[0.094485141336918,0.0193653665483,0.065749138593674],[-0.095847688615322,0.072402387857437,0.032695259898901]],[[0.027823315933347,-0.010115798562765,0.036078400909901],[-0.078138381242752,0.034308474510908,0.0040502976626158],[-0.067016087472439,-0.0038898556958884,0.047921884804964]],[[0.071763798594475,0.041887730360031,0.007558646146208],[0.0068987654522061,-0.094483241438866,0.04059598967433],[0.11857951432467,0.051974762231112,0.024689642712474]],[[-0.063014209270477,0.08084811270237,-0.10722585767508],[-0.0085046095773578,0.01619665324688,0.12436182796955],[0.19825461506844,-0.074980065226555,0.015822498127818]],[[0.10943695157766,0.0093725640326738,-0.056985657662153],[0.072259724140167,0.024998662993312,-0.013626325875521],[-0.088480331003666,-0.04195923730731,-0.043039463460445]],[[0.03153758123517,0.051011968404055,-0.013082396239042],[-0.035018555819988,-0.088212661445141,0.11846340447664],[0.055409301072359,0.076085172593594,-0.029301460832357]],[[0.094322048127651,-0.031796541064978,-0.038181480020285],[0.18869577348232,0.013783688656986,0.032327774912119],[0.047662932425737,-0.014759216457605,0.019230861216784]],[[-0.099726043641567,-0.0030745544936508,0.089739859104156],[-0.17610237002373,0.052069675177336,-0.036742944270372],[0.12147741019726,-0.045198921114206,-0.094339393079281]],[[-0.010168982669711,0.057766828685999,-0.05006654933095],[0.014322573319077,-0.067593358457088,0.14764779806137],[0.068697176873684,0.0007781817112118,0.10650707036257]],[[-0.036578606814146,-0.060176875442266,-0.020433681085706],[0.019661154597998,-0.026429209858179,-0.14305844902992],[0.13189367949963,0.042125906795263,-0.056938704103231]],[[-0.10876183211803,-0.04119211807847,-0.081767998635769],[0.103555560112,-0.053550340235233,-3.0897819669917e-05],[0.016094556078315,0.045853536576033,0.01694100163877]],[[0.056399568915367,0.037883903831244,0.11474121361971],[-0.027570037171245,0.050420690327883,0.12426038831472],[-0.074250631034374,-0.089678287506104,-0.066935129463673]],[[0.023995384573936,-0.1143114939332,-0.11832819133997],[0.014072466641665,-0.026330940425396,0.10908768326044],[-0.085541173815727,0.024177856743336,-0.099049583077431]],[[0.010633039288223,-0.020287912338972,0.042446706444025],[-0.047144748270512,0.048155173659325,-0.019123567268252],[-0.10074357688427,0.049670267850161,-0.027751382440329]],[[0.166109547019,0.070048160851002,0.038685347884893],[-0.070086628198624,-0.0052897147834301,-0.042616415768862],[-0.0028296113014221,-0.036498729139566,-0.057815972715616]],[[-0.03260326012969,0.076930724084377,0.042845360934734],[0.23842602968216,0.13148528337479,0.1316429823637],[-0.17389994859695,0.0099905347451568,-0.0002778556663543]],[[-0.070931896567345,-0.11815112829208,0.018933000043035],[-0.12835900485516,-0.081922598183155,-0.014566828496754],[-0.10342690348625,0.049150485545397,-0.0080377738922834]],[[-0.08510585129261,-0.017840538173914,-0.095746710896492],[-0.065984629094601,-0.1259011477232,-0.026307879015803],[-0.034324608743191,0.08547829836607,0.023534679785371]],[[0.022384682670236,0.08084137737751,0.16010925173759],[0.0094866510480642,0.01474430039525,-0.03843566775322],[-0.0099179707467556,0.077053524553776,0.0080151902511716]],[[0.026209576055408,0.073327660560608,0.063411064445972],[-0.11017006635666,0.073051899671555,-0.10135394334793],[-0.10838390141726,0.099171921610832,0.1661356985569]],[[0.086814016103745,-0.0090408604592085,0.046392768621445],[-0.0098924320191145,-0.073463216423988,-0.069830633699894],[0.069465734064579,-0.13975605368614,0.031638484448195]],[[-0.092835359275341,0.007264431566,0.018851358443499],[-0.019775332883,-0.038357377052307,0.022235436365008],[0.053472153842449,0.077152982354164,0.016746088862419]],[[-0.029749371111393,0.0683264285326,0.085450410842896],[-0.10490158200264,-0.090216115117073,0.052576925605536],[-0.088420085608959,0.0033702494110912,-0.067210637032986]],[[0.053865056484938,0.021148260682821,-0.074674434959888],[-0.087602891027927,-0.07304485887289,0.17701527476311],[0.04248820245266,-0.13162668049335,-0.087972193956375]],[[-0.019019527360797,0.032870333641768,-0.10953158885241],[0.0022427865769714,0.011182495392859,0.028432004153728],[0.023080680519342,-0.031475320458412,-0.12923491001129]],[[0.051264405250549,-0.099548071622849,-0.034757327288389],[-0.0052246111445129,-0.0092589193955064,0.038958571851254],[-0.069014355540276,-0.060569379478693,-0.13396733999252]],[[-0.095331013202667,0.050494853407145,0.029019985347986],[-0.050338368862867,-0.088021911680698,-0.13415209949017],[-0.028988588601351,0.0136848250404,-0.10867245495319]],[[-0.097838386893272,0.16528436541557,0.08024688065052],[0.15508723258972,-0.13521020114422,0.014516695402563],[-0.026047106832266,0.0062339012511075,-0.019782496616244]],[[-0.10094707459211,-0.13154509663582,-0.18004493415356],[0.0059986715205014,0.053195767104626,0.028421372175217],[0.038174007087946,0.19172377884388,0.049195870757103]],[[-0.088983736932278,-0.01458758674562,-0.028929920867085],[0.011645188555121,-0.021518146619201,-0.074843659996986],[-0.090193212032318,-0.052322808653116,0.045187346637249]],[[-0.029613124206662,0.0053403680212796,-0.04288836568594],[0.050608262419701,0.055564407259226,-0.11524251103401],[0.13308477401733,0.035285130143166,0.10163707286119]],[[0.069478712975979,-0.05371056497097,0.044891931116581],[0.013315913267434,0.031585831195116,0.010214990004897],[0.087882727384567,0.045675855129957,0.017907902598381]],[[0.074299573898315,-0.13233767449856,-0.0057814670726657],[0.048502035439014,0.048374239355326,-0.049170687794685],[0.0059382128529251,-0.056509647518396,-0.044730383902788]],[[-0.095019638538361,-0.066555880010128,-0.025013748556376],[0.015900526195765,-0.05489219725132,-0.10468835383654],[-0.083463028073311,-0.10115204751492,-0.0111064305529]],[[-0.026617545634508,0.070524014532566,0.0077409967780113],[0.053755152970552,-0.019433872774243,0.025332879275084],[0.070526108145714,0.10538616031408,0.035552710294724]],[[0.092660464346409,-0.037947341799736,-0.0094680292531848],[-0.032743025571108,-0.25302222371101,-0.21882113814354],[0.021678939461708,0.098703131079674,-0.022760413587093]],[[-0.038269534707069,0.12198519706726,0.15092873573303],[0.059235844761133,-0.1397896707058,0.0067245685495436],[0.076562024652958,-0.0077961119823158,0.054341949522495]],[[0.00078025826951489,0.027755759656429,-0.064103953540325],[-0.0018510026857257,0.0025538217741996,0.024032115936279],[-0.11173226684332,-0.036015667021275,-0.022483350709081]],[[-0.1204499527812,0.0036956174299121,-0.022707825526595],[0.12857702374458,0.013008190318942,0.010543879121542],[-0.13482010364532,-0.15967817604542,-0.050038397312164]],[[0.0077642481774092,-0.027228923514485,-0.037164885550737],[0.12084524333477,0.0075888969004154,0.050764050334692],[0.0083635011687875,-0.036843277513981,-0.066791445016861]]],[[[-0.33210316300392,-0.18907125294209,0.055302433669567],[-0.11912820488214,0.046224400401115,0.023402020335197],[0.0067001022398472,0.01515509840101,0.094794325530529]],[[0.033534400165081,0.052714265882969,-0.0039441711269319],[0.041280265897512,-0.058395251631737,-0.16483367979527],[0.087050475180149,-0.089396096765995,0.14128446578979]],[[-0.022491911426187,-0.032159179449081,0.076607458293438],[-0.014368024654686,0.043727118521929,-0.016639776527882],[0.035732347518206,-0.050124581903219,-0.059710640460253]],[[-0.07327364385128,-0.018298596143723,0.053040888160467],[-0.029558127745986,-0.085459068417549,0.020512608811259],[0.19388449192047,-0.013476283289492,-0.012771545909345]],[[-0.00018794275820255,-0.080814085900784,0.025338711217046],[0.032272823154926,-0.029966253787279,0.022684212774038],[0.02815761603415,-0.0096876099705696,-0.16594092547894]],[[-0.015464093536139,0.071291133761406,-0.075068943202496],[-0.011453015729785,-0.043127752840519,0.025344455614686],[-0.02558265812695,-0.10989987850189,0.046924471855164]],[[0.0072505660355091,0.11202275753021,-0.044615767896175],[-0.064987555146217,0.021190444007516,-0.088711924850941],[0.0013471450656652,0.035189252346754,0.07610784471035]],[[0.087333455681801,0.013132468797266,0.1535751670599],[-0.061030499637127,0.008412784896791,0.11593002825975],[-0.17376114428043,-0.068823009729385,-0.1392950117588]],[[0.030101193115115,-0.040103055536747,0.069334954023361],[-0.16850426793098,0.060105580836535,0.094344086945057],[0.037577822804451,-0.096213899552822,-0.011252945289016]],[[-0.14169256389141,-0.041442614048719,-0.068331308662891],[-0.062221564352512,0.021084940060973,-0.025985972955823],[0.047824736684561,-0.060331374406815,0.022382996976376]],[[0.078672863543034,0.14843605458736,0.026270102709532],[0.042569153010845,0.032175790518522,0.13963803648949],[-0.050442222505808,-0.065212063491344,-0.038733430206776]],[[0.029303906485438,-0.051110342144966,0.11341115087271],[0.013925645500422,-0.0050314459949732,0.051504645496607],[0.055191118270159,0.09058491140604,-0.1550789475441]],[[-0.11951595544815,-0.0083060069009662,-0.10020770132542],[-0.12852701544762,-0.01554886251688,-0.10928149521351],[-0.046753227710724,-0.058081071823835,-0.14538019895554]],[[-0.27584859728813,-0.023287270218134,-0.061518963426352],[0.013589253649116,0.083027221262455,-0.0066013266332448],[0.088430561125278,0.16288097202778,0.14582842588425]],[[0.023192984983325,0.065031811594963,-0.080358400940895],[-0.073264509439468,0.11033670604229,-0.079123951494694],[-0.053688514977694,-0.08588419854641,0.13374900817871]],[[-0.020145680755377,0.077192775905132,-0.11368963867426],[-0.12152472138405,0.12726324796677,-0.053972665220499],[-0.012543215416372,-0.015787329524755,0.055529978126287]],[[0.061975035816431,-0.016540119424462,0.11287079006433],[-0.034246135503054,-0.089821629226208,-0.032981049269438],[0.0032731543760747,-0.031899314373732,0.10381484776735]],[[-0.14852896332741,-0.043463528156281,0.068156845867634],[-0.047009572386742,-0.06292463093996,0.1322116702795],[0.1031828224659,0.030662789940834,-0.040934022516012]],[[-0.011713940650225,-0.0023337213788182,0.12467959523201],[-0.098954625427723,-0.088356159627438,-0.072703398764133],[-0.021875763311982,0.01736225746572,-0.072478868067265]],[[0.0091012688353658,-0.044845424592495,-0.26765814423561],[-0.02947304956615,0.10143885016441,0.048054363578558],[0.010841224342585,-0.0068697747774422,0.083040080964565]],[[-0.042093735188246,-0.092254102230072,0.067629851400852],[0.017646692693233,0.012932661920786,0.059796035289764],[0.039496399462223,0.0045597106218338,-0.052228238433599]],[[-0.0479471758008,0.030840525403619,0.028900040313601],[0.0305838547647,-0.016858896240592,-0.042609978467226],[0.020231310278177,-0.046614047139883,-0.020402710884809]],[[-0.016325391829014,0.039269790053368,0.015867384150624],[-0.023904075846076,-0.070735424757004,0.023385694250464],[-0.099774494767189,-0.0216373950243,0.10282485932112]],[[0.2068288475275,0.1366625726223,0.076922491192818],[-0.13693152368069,0.12432643026114,0.028656622394919],[-0.17676439881325,0.03704147785902,-0.14748579263687]],[[0.085939459502697,0.13099040091038,0.12243397533894],[0.11029370874166,0.13419529795647,0.0095626432448626],[0.01667146384716,-0.086640514433384,-0.043830193579197]],[[-0.0040281643159688,-0.055619850754738,-0.031742308288813],[0.028257474303246,0.021451305598021,-0.024134309962392],[-0.00069714454002678,-0.011508000083268,0.040797837078571]],[[0.072781167924404,-0.038496546447277,-0.058326382189989],[-0.023506367579103,0.024776164442301,-0.07977769523859],[-0.071400821208954,-0.1428549438715,-0.054909769445658]],[[-0.10802161693573,-0.21294850111008,-0.039485543966293],[-0.065614126622677,-0.032494727522135,-0.083958774805069],[-0.067788802087307,-0.094799123704433,0.093063622713089]],[[0.014904539100826,0.11221523582935,0.0085795782506466],[0.011879593133926,-0.021669702604413,-0.14482991397381],[-0.0029768969397992,-0.0047899466007948,-0.12326001375914]],[[0.050120409578085,-0.15685202181339,-0.034069865942001],[0.0051159667782485,-0.0058822510764003,-0.13066072762012],[-0.038398768752813,0.10744228214025,0.057633984833956]],[[-0.021879041567445,-0.033646501600742,-0.057611804455519],[0.022920330986381,-0.0033956684637815,-0.11281602829695],[0.026273595169187,0.080414988100529,0.082975998520851]],[[-0.00085134198889136,-0.077474318444729,-0.023500926792622],[0.19428643584251,0.07916671782732,0.10078486055136],[0.12510098516941,0.043851882219315,-0.14527453482151]],[[-0.070752963423729,-0.080153577029705,-0.057477790862322],[-0.040577478706837,0.16225649416447,-0.16054943203926],[-0.063006721436977,-0.0089438585564494,-0.098750285804272]],[[-0.076234146952629,-0.085983604192734,0.069629788398743],[-0.039574008435011,-0.068075016140938,-0.016778342425823],[-0.16517068445683,0.053390096873045,0.010407988913357]],[[-0.065333321690559,0.031597934663296,-0.049276914447546],[-0.043508049100637,0.028757648542523,0.19618901610374],[0.062477208673954,0.13927946984768,0.043588824570179]],[[0.064773313701153,0.10158888995647,0.043187420815229],[-0.068003982305527,0.067161649465561,0.087043635547161],[-0.11097029596567,0.070123784244061,0.085096627473831]],[[-0.014458636753261,0.011586270295084,-0.0074239210225642],[0.27718764543533,0.09683246165514,0.099256962537766],[0.13506324589252,0.063184767961502,0.16463731229305]],[[0.13042102754116,-0.015663154423237,0.0049242610111833],[-0.0068162078969181,-0.09924653172493,0.060749154537916],[-0.020886013284326,-0.16467650234699,-0.17334479093552]],[[0.20847846567631,-0.014062577858567,0.10119267553091],[-0.030278725549579,-0.060151610523462,-0.12087509036064],[-0.017461124807596,0.10826159268618,-0.11759962886572]],[[0.022220890969038,0.090046122670174,0.018003789708018],[-0.075110144913197,-0.056656006723642,-0.024851376190782],[-0.071476422250271,-0.0087610827758908,-0.057112775743008]],[[-0.18739850819111,-0.10417674481869,0.12873516976833],[0.04279488697648,-0.0058798869140446,-0.050407208502293],[-0.071377493441105,0.071495145559311,0.14530195295811]],[[-0.16657067835331,0.020472811535001,0.1085496544838],[-0.04359420016408,0.023998754099011,0.039381425827742],[-0.017733292654157,-0.047999985516071,0.013270591385663]],[[0.12683029472828,-0.015831042081118,0.21260879933834],[-0.18866503238678,0.044130716472864,0.0047808280214667],[-0.012871290557086,-0.017555693164468,-0.12021398544312]],[[-0.079798616468906,-0.031299956142902,0.10914680361748],[-0.029104266315699,0.03244936466217,0.099148564040661],[-0.11011474579573,-0.075107291340828,-0.062021795660257]],[[0.12475061416626,0.073378644883633,0.091133110225201],[-0.12892311811447,0.0019018535967916,-0.016054514795542],[-0.059678100049496,0.019227223470807,0.061751946806908]],[[-0.19156408309937,-0.12290628999472,0.02833285741508],[0.050549998879433,0.030147956684232,-0.03623204678297],[-0.018711784854531,-0.0040621203370392,-0.15495143830776]],[[0.025137228891253,-0.042099572718143,-0.018828151747584],[0.042547106742859,0.058994401246309,-0.1126281991601],[-0.13543589413166,0.040150072425604,0.11699292063713]],[[-0.010319058783352,-0.078180618584156,0.1149343624711],[0.15959987044334,-0.037103231996298,-0.14525486528873],[0.0095873447135091,0.048065524548292,-0.0660714879632]],[[-0.1394681930542,-0.019480470567942,0.089253567159176],[-0.082472451031208,0.053883280605078,-0.050245828926563],[0.048938080668449,0.037381157279015,-0.0046567036770284]],[[0.06111116334796,-0.15165974199772,0.16950595378876],[0.057146962732077,-0.086803913116455,0.029525883495808],[0.13355092704296,0.11425109952688,-0.077891618013382]],[[0.046116326004267,-0.11872667819262,-0.077841103076935],[-0.030920984223485,0.032106794416904,-0.10520948469639],[-0.0093934237957001,0.077420704066753,-0.0013576436322182]],[[0.0095740091055632,-0.0029265554621816,-0.0047862362116575],[0.0022578774951398,-0.071421451866627,0.0051182014867663],[0.050040286034346,0.0079795680940151,0.017742279917002]],[[-0.14205878973007,-0.03855212405324,-0.013438163325191],[0.027793455868959,-0.017232552170753,0.040616050362587],[-0.067255944013596,0.048421256244183,0.030722105875611]],[[0.011514253914356,0.033722572028637,0.072166383266449],[0.0017477602232248,0.077250130474567,0.0097349341958761],[-0.16637383401394,-0.083547465503216,-0.11658526957035]],[[-0.031292922794819,0.086870707571507,-0.067984953522682],[-0.014129193499684,-0.044557444751263,-0.11537807434797],[-0.0092396223917603,0.064865030348301,-0.026614790782332]],[[-0.043473433703184,0.076378785073757,0.086084388196468],[-0.078086391091347,0.12881445884705,0.057125382125378],[0.049914129078388,-0.017876861616969,-0.079405657947063]],[[-0.03635860607028,-0.13890852034092,0.18975260853767],[-0.0038641828577965,0.0098589044064283,-0.014188850298524],[0.033919285982847,-0.065889477729797,-0.069926261901855]],[[-0.15002742409706,-0.035971723496914,-0.15583783388138],[-0.039768114686012,-0.040775075554848,0.01709358766675],[-0.031872723251581,0.088570393621922,-0.035139463841915]],[[0.087064802646637,0.037136189639568,0.15769563615322],[0.036754250526428,-0.052455179393291,-0.047150123864412],[-0.032762974500656,-0.024124266579747,-0.0099789761006832]],[[-0.021230222657323,-0.0022721772547811,0.12373877316713],[0.071686118841171,-0.015308489091694,-0.010697453282773],[0.0055439625866711,0.037005197256804,-0.024751609191298]],[[-0.14079949259758,0.11347135901451,0.10249554365873],[-0.0079148327931762,-0.076252236962318,-0.084714978933334],[-0.032965715974569,-0.046593476086855,0.088897787034512]],[[-0.088891118764877,-0.10978925228119,0.06732365489006],[0.0037091181147844,-0.060456831008196,0.0064022415317595],[0.12537644803524,-0.016507430002093,0.017822628840804]],[[-0.085526265203953,0.079278327524662,0.099424436688423],[0.018595293164253,-0.073696069419384,-0.017890078946948],[0.023512452840805,0.0093539198860526,0.093958161771297]],[[-0.16543601453304,-0.014648206532001,-0.25170812010765],[0.013044338673353,-0.028652917593718,0.027925778180361],[0.01027377974242,-0.043227486312389,-0.092417478561401]]],[[[-0.046459779143333,0.032661788165569,-0.019847715273499],[-0.014537471346557,-0.01839485578239,0.063848905265331],[-0.082314312458038,-0.0049001979641616,0.0069790985435247]],[[-0.054297838360071,0.011234410107136,0.05658670514822],[0.018869122490287,0.030074626207352,0.079049654304981],[-0.016901118680835,-0.016609055921435,0.12498193979263]],[[-0.046212553977966,-0.062860310077667,-0.092134706676006],[0.023681968450546,0.036966934800148,0.062179792672396],[0.15392027795315,0.0032376172021031,-0.036646075546741]],[[0.030151793733239,0.017232595011592,0.071047350764275],[0.04512583091855,0.033581931143999,-0.00027841699193232],[0.02345684543252,-0.07980365306139,-0.0095215085893869]],[[-0.059203609824181,-0.21791723370552,-0.017200561240315],[-0.04936895519495,-9.2175811005291e-05,-0.036026172339916],[-0.15606506168842,0.12157939374447,0.084614865481853]],[[-0.023512050509453,-0.097421780228615,0.057642333209515],[0.027696222066879,0.055298022925854,-0.017617296427488],[0.0097031863406301,0.010227422229946,0.096386894583702]],[[0.071495279669762,0.014291640371084,0.058913622051477],[-0.039733536541462,-0.10647223889828,-5.3744926844956e-05],[0.05750884488225,-0.00042967358604074,0.0074323113076389]],[[0.073488190770149,0.044934447854757,0.052552506327629],[0.040650919079781,-0.025132888928056,-0.021916516125202],[0.080667980015278,-0.037266250699759,-0.013493449427187]],[[0.046335335820913,-0.075941860675812,-0.094906389713287],[0.065515719354153,-0.086004674434662,-0.042608562856913],[0.071398518979549,0.057240579277277,0.14143753051758]],[[-0.076554916799068,-0.094452753663063,0.050218552350998],[-0.041778288781643,0.012665228918195,0.13052071630955],[0.074859850108624,0.1220745742321,0.087107680737972]],[[0.031801581382751,0.026177391409874,0.012725284323096],[0.034537300467491,-0.12848857045174,0.0040309522300959],[0.035644251853228,0.019918110221624,0.058679934591055]],[[0.072157196700573,0.020607475191355,0.010658425278962],[-0.033496677875519,-0.078995421528816,-0.049142122268677],[0.0069920653477311,0.091370761394501,0.033953037112951]],[[0.086216881871223,0.056858003139496,-0.00134099915158],[0.079277865588665,0.018047034740448,-0.033767495304346],[0.048243090510368,0.0033116820268333,-0.052410989999771]],[[0.031546022742987,0.060653824359179,0.014512342400849],[-0.046029135584831,-0.010282814502716,-0.019070621579885],[0.012036279775202,0.13386832177639,0.23992478847504]],[[0.010247087106109,-0.0085339723154902,0.0029585207812488],[0.064609780907631,0.029424641281366,0.10157351195812],[-0.019168972969055,-0.035046517848969,0.059943456202745]],[[-0.20835839211941,-0.16191723942757,0.050204657018185],[0.074058175086975,0.046151332557201,0.057338662445545],[-0.034006081521511,0.0058008674532175,0.12842239439487]],[[0.064572706818581,0.14832927286625,0.1142039373517],[0.097286783158779,0.068532928824425,0.027475871145725],[0.0067338082008064,0.057681202888489,-0.024579053744674]],[[0.083432570099831,-0.030076866969466,-0.014975555241108],[0.069447472691536,0.01155205257237,0.029600042849779],[-0.03397835791111,0.054423090070486,0.015371894463897]],[[-0.078160889446735,-0.10173247009516,0.11419969052076],[-0.024766961112618,0.093486860394478,0.0092106722295284],[-0.0147909168154,0.078346617519855,0.060920547693968]],[[-0.0037033935077488,-0.12652987241745,-0.028857093304396],[-0.030187083408237,-0.00024690254940651,0.086992800235748],[-0.012136264704168,-0.013528342358768,0.00046022015158087]],[[0.055530112236738,0.029254861176014,0.080883421003819],[0.14873284101486,0.083657242357731,0.028458919376135],[0.1227785795927,0.10093180835247,-0.010410467162728]],[[0.0030337281059474,-0.031840614974499,-0.0089686764404178],[0.023319274187088,0.013452032580972,0.00066979735856876],[-0.039692297577858,0.013596140779555,-0.034725103527308]],[[-0.054905280470848,-0.080578483641148,0.1361486017704],[0.10524556785822,-0.014955868944526,-0.012675409205258],[0.083765678107738,0.046720430254936,0.021290028467774]],[[0.099596068263054,0.022863475605845,-0.023181142285466],[-0.11442188173532,0.10294106602669,-0.014894369989634],[-0.04604085162282,0.068176873028278,0.22237610816956]],[[0.22487519681454,0.1870119124651,-0.028818784281611],[-0.077210381627083,0.048864245414734,-0.062441892921925],[0.082305580377579,0.037086617201567,0.011000809259713]],[[-0.017107266932726,-0.029341511428356,-0.04501224681735],[0.030380431562662,0.023867292329669,0.0094116367399693],[0.0063330521807075,0.039090111851692,0.017978627234697]],[[-0.023471251130104,0.13685002923012,0.1312912851572],[0.062841564416885,-0.051527220755816,-0.013903207145631],[0.043985825031996,0.072453834116459,0.078073561191559]],[[-0.12221238017082,-0.08996657282114,-0.01586677506566],[-0.062026787549257,-0.027453379705548,-0.038522027432919],[-0.052333351224661,0.014867089688778,-0.043287482112646]],[[-0.032952297478914,0.026897732168436,-0.075929738581181],[0.094807416200638,-0.033346328884363,0.0036969997454435],[-0.027020441368222,-0.031332284212112,-0.04932875931263]],[[-0.052219659090042,-0.052175384014845,0.064404562115669],[-0.084411308169365,0.018595913425088,0.053263865411282],[0.056489866226912,0.034512158483267,-0.054796125739813]],[[0.13360360264778,0.084844097495079,0.058062095195055],[-0.096906416118145,0.047386355698109,0.065252423286438],[-0.041779968887568,0.13366059958935,0.092756062746048]],[[-0.014081464149058,0.057064168155193,-0.024130357429385],[0.038641195744276,-0.01844758912921,-0.15097396075726],[0.045791380107403,0.0018534965347499,-0.007674683816731]],[[0.088235095143318,0.15620635449886,-0.003004552796483],[-0.070258922874928,0.012126265093684,-0.089331537485123],[-0.016254441812634,-0.053934298455715,-0.16616994142532]],[[0.037894621491432,0.028418993577361,0.061841711401939],[0.033360745757818,0.034828171133995,-0.020526239648461],[-0.063120327889919,0.066471315920353,0.042684383690357]],[[-0.071945980191231,-0.061485584825277,-0.088273331522942],[-0.086192741990089,-0.039264060556889,-0.06144992262125],[0.10877071321011,0.082725204527378,-0.0066771707497537]],[[0.085985332727432,0.10953330248594,0.11579465866089],[0.10196111351252,0.060412272810936,-0.016919683665037],[0.040996592491865,-0.0064182998612523,-0.029891233891249]],[[0.032758828252554,-0.051510352641344,0.0077216564677656],[0.012810826301575,0.086276046931744,-0.019023468717933],[0.042089756578207,-0.056266080588102,0.05447606742382]],[[-0.021484758704901,0.029855575412512,0.059623189270496],[0.026775505393744,-0.0087562575936317,-0.10127275437117],[0.11668372899294,0.060497872531414,0.03086425922811]],[[0.062069252133369,-0.10313232243061,-0.041069757193327],[0.028381980955601,-0.065357089042664,-0.033029425889254],[0.095067396759987,0.03536019474268,-0.067560382187366]],[[-0.032937612384558,-0.024133507162333,0.10160394757986],[-0.052136853337288,0.041159722954035,-0.059610217809677],[0.0070401090197265,0.11890649050474,0.028514593839645]],[[-0.019393308088183,-0.1449274122715,0.12995897233486],[-0.051461420953274,-0.030829040333629,0.099358402192593],[-0.0082764513790607,-0.038912758231163,-0.0069091226905584]],[[-0.02274926006794,0.026215167716146,0.030657615512609],[-0.015121540054679,-0.0088543398305774,-0.017389446496964],[0.08245076239109,0.10243576020002,0.0094204088672996]],[[-0.047203525900841,-0.042529102414846,-0.0036616926081479],[0.083065092563629,2.6259647711413e-05,0.16424448788166],[-0.092109322547913,0.037833869457245,-0.082123845815659]],[[-0.066196076571941,-0.014803318306804,0.018100375309587],[0.049542520195246,0.063927315175533,0.019545612856746],[0.13783311843872,-0.093484237790108,0.063762724399567]],[[-0.099754571914673,0.061734538525343,-0.042360030114651],[-0.16686399281025,0.041179552674294,0.048333965241909],[-0.071810148656368,0.10971231013536,0.10767026990652]],[[0.055212546139956,0.011577918194234,-0.012793954461813],[0.049838304519653,0.070113942027092,0.11601573228836],[0.059493716806173,0.017368845641613,-0.064402662217617]],[[-0.0038611746858805,0.0049225892871618,0.030331904068589],[0.052604079246521,0.055224806070328,0.1075766980648],[0.038819048553705,0.093353845179081,0.05421594902873]],[[0.11018542200327,0.01731108315289,-0.058283131569624],[0.10767242312431,-0.043411806225777,-0.013074927031994],[0.019188519567251,-0.01709551922977,0.10638480633497]],[[0.059239882975817,0.0019653090275824,-0.091430179774761],[-0.056125659495592,-0.079218164086342,-0.039798438549042],[-0.001670429832302,0.014742367900908,-0.041390042752028]],[[-0.098547719419003,-0.065222963690758,0.016964707523584],[-0.053841475397348,-0.0049108318053186,-0.052942130714655],[-0.012981414794922,0.056118555366993,-0.071702726185322]],[[0.096532195806503,0.044622361660004,0.14485538005829],[0.011842234060168,0.057630237191916,0.11423344165087],[-0.015161679126322,0.046388227492571,0.0417300760746]],[[0.10724169760942,0.036893837153912,0.033105336129665],[0.084473259747028,0.06476753950119,0.0062573938630521],[0.11323684453964,0.054162327200174,0.079056449234486]],[[-0.039206713438034,-0.01817511767149,0.00020492187468335],[0.022638436406851,0.031515534967184,0.040947750210762],[-0.038732022047043,-0.044689066708088,-0.0033526031766087]],[[0.17051362991333,0.046982411295176,0.19999389350414],[-0.021941002458334,-0.092459417879581,-0.0868159532547],[-0.045126382261515,-0.079046554863453,-0.086106650531292]],[[-0.0044235424138606,-0.075727768242359,-0.12148871272802],[0.011020534671843,0.070788159966469,0.012101978994906],[0.069562911987305,-0.13078479468822,0.032532677054405]],[[0.052727978676558,-0.084608405828476,-0.070813283324242],[0.082789242267609,0.015441491268575,-0.053238894790411],[-0.070355743169785,-0.11706949025393,0.031399391591549]],[[-0.0029222292359918,-0.11357679218054,0.022207982838154],[-0.036409419029951,0.088928677141666,0.091513119637966],[0.030504640191793,-0.024639818817377,0.071660079061985]],[[-0.04405714944005,-0.046214181929827,-0.035309262573719],[-0.079981654882431,-0.14360472559929,0.054190684109926],[0.05390240624547,-0.054077971726656,-0.013322093524039]],[[0.059091459959745,0.12623430788517,0.07027143985033],[-0.0080490903928876,0.073133215308189,-0.033034857362509],[-0.055195111781359,0.024984493851662,0.021642250940204]],[[-0.0043141776695848,-0.06630539894104,-0.030885944142938],[-0.025302097201347,-0.074106737971306,-0.0002797975030262],[0.025873119011521,-0.12417548894882,-0.0012195813469589]],[[0.040060754865408,0.021995175629854,0.032762050628662],[0.14892825484276,0.018827451393008,0.074103429913521],[0.15861536562443,0.084847614169121,0.096537612378597]],[[-0.21217212080956,-0.039979424327612,-0.038011714816093],[-0.018848970532417,-0.040798511356115,0.033982235938311],[-0.026844816282392,0.14400342106819,0.13116253912449]],[[0.049976330250502,-0.039480518549681,0.06371782720089],[-0.1008690521121,-0.077580288052559,-0.05218593031168],[-0.038458745926619,0.026214078068733,0.071510560810566]],[[0.053975462913513,-0.024177730083466,-0.072990700602531],[-0.040051113814116,-0.05012971162796,-0.0064761992543936],[-0.021945873275399,-0.068052694201469,0.0084662903100252]]],[[[0.032493006438017,0.036791883409023,0.020280623808503],[0.017751857638359,-0.02907426841557,0.035874255001545],[-0.063351131975651,0.02718311548233,-0.068015888333321]],[[0.01039469614625,-0.031050633639097,-0.12370619177818],[-0.040479421615601,0.003764815395698,-0.024971621111035],[-0.038312710821629,0.12181134521961,-0.041815727949142]],[[-0.067576393485069,-0.048423409461975,-0.098423227667809],[0.049793772399426,0.011152802035213,-0.0026274842675775],[0.01046332065016,0.074591189622879,0.062348991632462]],[[-0.051403436809778,-0.11700433492661,0.0080793537199497],[-0.092604964971542,-0.050975758582354,0.16567848622799],[0.024846203625202,0.055012755095959,0.025209462270141]],[[-0.0037198667414486,0.0037638742942363,-0.08073016256094],[0.009500227868557,-0.026887418702245,-0.10352867096663],[0.058536116033792,-0.0069193127565086,0.037580747157335]],[[-0.19113947451115,0.039096001535654,0.056585788726807],[-0.060059662908316,-0.031797658652067,-0.007630982901901],[-0.041083235293627,-0.025595657527447,0.1155559271574]],[[0.058028660714626,-0.071088254451752,0.047050397843122],[0.004039850551635,-0.053724233061075,0.051193777471781],[0.1275165528059,0.012289018370211,-0.0039749089628458]],[[0.013984809629619,-0.16773590445518,0.021880054846406],[-0.087010867893696,0.035742055624723,-0.10042583942413],[-0.13783469796181,0.073101527988911,0.10555897653103]],[[0.030670877546072,-0.11027692258358,0.09634181112051],[0.035630501806736,0.0021210610866547,0.074827298521996],[-0.017018554732203,0.00040026384522207,0.038945462554693]],[[0.048035208135843,-0.048333771526814,0.085081279277802],[-0.028420822694898,0.081188172101974,-0.093228481709957],[-0.039841461926699,0.11516073346138,-0.089356139302254]],[[-0.069046795368195,0.0021463609300554,-0.048180099576712],[0.0036135157570243,-0.052791990339756,0.056281358003616],[0.077363640069962,-0.011206484399736,-0.064824089407921]],[[-0.060780324041843,0.0023168600164354,-0.043341670185328],[-0.012584871612489,-0.013036653399467,-0.12974844872952],[-0.030789764598012,0.20398950576782,-0.015790933743119]],[[0.16397628188133,0.01274973526597,0.10227236896753],[0.01771386153996,0.005020041950047,-0.018108364194632],[-0.022023372352123,-0.011686900630593,-0.1313833296299]],[[0.04556642845273,0.12462116777897,-0.056268967688084],[0.0032187148462981,0.096908882260323,0.082087524235249],[0.021996272727847,0.12307328730822,0.10438225418329]],[[-0.074772819876671,-0.029257202520967,0.0084223058074713],[-0.040643755346537,0.094934210181236,-0.033897411078215],[0.080894440412521,-0.061245072633028,0.079348869621754]],[[0.11721659451723,-0.022959461435676,-0.088250495493412],[-0.011814954690635,0.085492223501205,0.049966983497143],[-0.010440631769598,-0.080219380557537,0.051692713052034]],[[-0.00051417638314888,0.064161099493504,0.052868977189064],[0.12058924138546,0.090746067464352,-0.012108485214412],[-0.045147906988859,-0.034614324569702,0.018639512360096]],[[0.11366163939238,0.044444665312767,-0.0072132428176701],[0.14219538867474,0.0013528321869671,0.14357240498066],[0.085739299654961,-0.012792618013918,0.032739594578743]],[[-0.11031980067492,-0.024785118177533,-0.062807865440845],[-0.043947711586952,-0.044286783784628,-0.092002175748348],[-0.01498569175601,-0.043709833174944,-0.10282455384731]],[[-0.14622564613819,0.052394635975361,-0.13302643597126],[-0.15883420407772,0.13637834787369,0.093877166509628],[-0.060441613197327,-0.066854596138,0.11691606044769]],[[0.078775264322758,-0.030726497992873,0.05313540995121],[0.18586675822735,-0.086124666035175,0.10482006520033],[0.0072786961682141,-0.067805901169777,-0.05755839496851]],[[-0.14078265428543,0.064533092081547,-0.0061258929781616],[-0.06734461337328,0.10084938257933,-0.0072357621975243],[0.01316025853157,0.015096541494131,-0.01977776363492]],[[-0.18529725074768,0.0098384525626898,-0.074129715561867],[0.083232186734676,-0.0096413260325789,0.020466743037105],[0.18552494049072,-0.042116221040487,-0.10025383532047]],[[-0.062928132712841,0.019859958440065,-0.076446332037449],[0.039129622280598,0.11196304112673,-0.2022145986557],[-0.056107360869646,0.10370414704084,-0.082987226545811]],[[-0.039662353694439,-0.061354663223028,0.044268690049648],[-0.016246495768428,0.016403611749411,-0.0090392362326384],[0.049794856458902,0.017036302015185,0.035535156726837]],[[-0.0076060397550464,-0.0016206409782171,-0.035030744969845],[0.022411650046706,-0.018274528905749,-0.03880837187171],[-0.025655299425125,0.026733312755823,0.14701656997204]],[[-0.047955606132746,-0.040696397423744,-0.043905213475227],[-0.21881097555161,-0.0017189603531733,0.022603077813983],[-0.13877937197685,0.026684407144785,0.083374835550785]],[[0.0012770993635058,0.024181643500924,0.039524212479591],[-0.045860935002565,-0.0032462668605149,0.0089755468070507],[-0.11673688143492,-0.029359214007854,0.053191088140011]],[[-0.00046048709191382,-0.019287638366222,0.023770119994879],[0.050403296947479,0.084848068654537,-0.069165915250778],[-0.021293982863426,0.11336189508438,0.071991741657257]],[[0.03111376427114,-0.097052022814751,-0.031753070652485],[0.0083135012537241,0.090991973876953,0.05084178596735],[-0.12306847423315,0.092775948345661,-0.041942231357098]],[[0.090455621480942,-0.036653988063335,0.21674066781998],[-0.06550358235836,0.042910773307085,0.11131048202515],[-0.10197729617357,-0.026791878044605,0.16107967495918]],[[-0.08167078346014,-0.017882777377963,-0.091167308390141],[-0.06877987831831,0.017024733126163,0.003412856021896],[0.00081868353299797,-0.089544229209423,0.029740983620286]],[[-0.11230275779963,-0.087049670517445,-0.033864978700876],[-0.17142228782177,-0.042759004980326,-0.10636757314205],[-0.085570268332958,0.076346844434738,-0.013340471312404]],[[0.050208315253258,0.023155514150858,0.057687312364578],[0.03636958450079,-0.037691365927458,-0.022276006639004],[-0.022028870880604,-0.021033557131886,-0.018592020496726]],[[-0.033087272197008,-0.019811872392893,0.050826858729124],[0.055091481655836,0.033550135791302,-0.027129601687193],[-0.0012978941667825,0.086906880140305,-0.014874953776598]],[[0.01096373423934,-0.077349424362183,0.042814917862415],[0.010143592022359,-0.0096468664705753,-0.038250163197517],[0.051947508007288,0.15193359553814,0.036868516355753]],[[0.090356320142746,0.15115228295326,0.081235535442829],[-0.030675675719976,0.089386716485023,0.072396166622639],[0.00061538186855614,-0.071422375738621,-0.0093386014923453]],[[0.059198286384344,0.0026795796584338,-0.056238435208797],[0.027545427903533,-0.048761364072561,0.07041472941637],[0.11322762072086,-0.032528661191463,-0.13114847242832]],[[-0.17364498972893,-0.068697229027748,0.010769658721983],[0.0038674650713801,0.13284476101398,-0.16058705747128],[0.051632892340422,0.093162909150124,-0.10597933828831]],[[-0.1176999360323,0.074451312422752,-0.0036882748827338],[-0.068772703409195,0.025269756093621,-0.0064300871454179],[-0.11742100864649,0.16840973496437,0.033356510102749]],[[-0.021883307024837,-0.054971642792225,-0.12196169048548],[-0.14947117865086,0.13952004909515,-0.063999943435192],[0.073617108166218,0.0030729060526937,-0.13968721032143]],[[0.094011716544628,-0.10920749604702,-0.056093476712704],[0.072960935533047,-0.09188649058342,0.026495862752199],[-0.057897556573153,-0.074711509048939,0.020505895838141]],[[0.12311600148678,-0.037220187485218,0.056140951812267],[0.094362743198872,0.067366555333138,0.0373022146523],[-0.09622960537672,-0.18925431370735,-0.030587213113904]],[[-0.17575424909592,-0.09541692584753,-0.021955519914627],[-0.11760252714157,-0.090248435735703,0.10174033790827],[0.021334683522582,-0.074788808822632,0.026713123545051]],[[-0.015667436644435,0.12277635931969,-0.046827655285597],[0.061645317822695,0.074912466108799,0.060330994427204],[-0.012796440161765,0.1031066775322,0.14889954030514]],[[-0.027688413858414,-0.043418042361736,-0.047554887831211],[0.0075557301752269,-0.053952358663082,-0.091412410140038],[0.17520178854465,-0.0096230804920197,0.087905615568161]],[[0.065872974693775,0.053249545395374,0.028811799362302],[0.019807238131762,0.035623289644718,0.12627427279949],[-0.012900865636766,0.15970847010612,-0.060109067708254]],[[0.073295660316944,0.060563359409571,0.054449636489153],[-0.083171412348747,0.018608473241329,0.013761232607067],[-0.01731463894248,-0.067219257354736,-0.0098157497122884]],[[-0.031784530729055,-0.018794637173414,-0.047198191285133],[0.046124085783958,0.11348067224026,-0.096352949738503],[0.080236457288265,-0.12451821565628,-0.0013307915069163]],[[-0.07758541405201,-0.07777002453804,-0.044845730066299],[0.16822890937328,0.035654041916132,-0.025722242891788],[0.083125270903111,0.16289022564888,-0.048013098537922]],[[0.11134788393974,0.18208307027817,0.018707463517785],[-0.039494313299656,0.014180637896061,0.079934984445572],[-0.045779626816511,-0.00080044899368659,0.044778179377317]],[[-0.11480437964201,-0.11473345756531,0.12529937922955],[-0.0187460873276,-0.071740552783012,0.074699006974697],[0.066961102187634,0.12355274707079,0.14974911510944]],[[0.12105608731508,0.089341700077057,0.028586396947503],[-0.097044378519058,0.060833934694529,-0.063530519604683],[-0.15139961242676,-0.10086890310049,-0.090496823191643]],[[0.19547505676746,0.013901967555285,-0.025186702609062],[-0.0041809547692537,0.033904168754816,0.015148393809795],[0.074242971837521,0.028224233537912,-0.13640229403973]],[[0.040921833366156,-0.0084559423848987,0.086218558251858],[0.039337262511253,-0.047554593533278,0.08284504711628],[0.020549107342958,-0.012465787120163,0.079820089042187]],[[-0.04784744977951,-0.048083607107401,-0.010728608816862],[-0.10455473512411,-0.0066161965951324,-0.015302078798413],[-0.13677063584328,0.040114816278219,0.014113913290203]],[[0.021954925730824,-0.06939497590065,-0.012422204948962],[-0.060834888368845,0.10508447885513,0.025332098826766],[0.03864774107933,0.04842584207654,-0.038593478500843]],[[0.091784507036209,-0.050048004835844,-0.037677258253098],[-0.15844522416592,0.1256919503212,0.012972486205399],[0.055346392095089,0.011317289434373,-0.060782548040152]],[[0.08993099629879,0.12849345803261,0.038002666085958],[-0.005764861125499,0.045497819781303,-0.049538712948561],[-0.021014897152781,-0.061208941042423,-0.12087653577328]],[[-0.082735359668732,-0.083547554910183,0.060938611626625],[-0.03972801566124,-0.11349292099476,0.00279959756881],[0.054487738758326,-0.12297123670578,0.056547746062279]],[[0.10401762276888,-0.067030012607574,0.09110613912344],[-0.043056838214397,-0.036168735474348,0.13366758823395],[0.052360504865646,-0.033547509461641,0.017264362424612]],[[0.020727904513478,-0.11781318485737,0.021344063803554],[0.096824780106544,0.052334144711494,0.070334166288376],[0.033553011715412,0.05542378872633,0.067865550518036]],[[0.15128721296787,-0.065882101655006,0.042305901646614],[0.024530965834856,0.044713404029608,-0.0031358660198748],[0.036957107484341,-0.033269107341766,0.061508517712355]],[[-0.054604694247246,0.070208445191383,0.045826844871044],[-0.0065428293310106,-0.015334754250944,-0.061807610094547],[-0.013249623589218,-0.050896733999252,0.029515581205487]]],[[[0.13615773618221,-0.078071691095829,-0.093236796557903],[0.055065754801035,-0.043711621314287,-0.015142484568059],[0.033535920083523,-0.029054081067443,0.022845206782222]],[[-0.069672286510468,0.0608897395432,-0.14238378405571],[-0.14416459202766,-0.042701385915279,-0.037011861801147],[-0.026108538731933,0.09587786346674,-0.0073137590661645]],[[0.016792468726635,0.038593530654907,0.018985683098435],[-0.06538911908865,-0.057659704238176,-0.079429976642132],[-0.018285617232323,-0.10086324810982,-0.11036224663258]],[[-0.1096251681447,0.07415895909071,-0.1646728515625],[-0.018777946010232,0.052426639944315,0.04239784181118],[0.044429112225771,0.074765644967556,-0.045416064560413]],[[0.0069360220804811,-0.10470802336931,-0.040956813842058],[-0.098104164004326,0.13632680475712,0.0034487131051719],[-0.0069173146039248,-0.040870785713196,-0.069461844861507]],[[-0.042869344353676,0.034596528857946,-0.059969495981932],[-0.0564592666924,-0.026381883770227,-0.046241793781519],[0.015755413100123,0.024948133155704,0.058213472366333]],[[-0.12666526436806,0.061877891421318,-0.093476988375187],[-0.016622824594378,-0.0042336070910096,-0.15933814644814],[-0.033617179840803,-0.055182926356792,-0.11367060989141]],[[0.10272794216871,0.018195634707808,0.056292161345482],[-0.1573686003685,-0.051827672868967,0.082368224859238],[0.006469486746937,-0.10904735326767,-0.21460992097855]],[[-0.031196422874928,-0.0079313358291984,0.021039320155978],[0.060963325202465,0.0025562758091837,0.018063459545374],[-0.020602038130164,0.032528288662434,0.058372430503368]],[[0.17874178290367,-0.036213282495737,-0.068650357425213],[0.12612201273441,-0.093751803040504,-0.056750658899546],[-0.034745793789625,-0.077327437698841,-0.081468872725964]],[[-0.14484393596649,0.010869325138628,0.12888564169407],[-0.032876681536436,0.092328861355782,-0.019004542380571],[-0.21781824529171,-0.12458602339029,-0.10314923524857]],[[-0.012008109129965,-0.059312388300896,0.017591940239072],[-0.031857993453741,-0.034565176814795,0.036346469074488],[0.012645917013288,0.10651079565287,0.063736021518707]],[[0.027792178094387,0.033604945987463,-0.0048995069228113],[-0.029030151665211,-0.057934135198593,-0.011539399623871],[-0.12014712393284,-0.043348889797926,-0.036187224090099]],[[-0.038457538932562,0.10110373795033,0.081006594002247],[0.024976553395391,-0.05005856603384,-0.062658622860909],[0.12743599712849,-0.0088751576840878,0.0055363541468978]],[[-0.016529176384211,0.013024704530835,-0.00055080716265365],[-0.050106208771467,-0.068433322012424,-0.039447881281376],[-0.026941170915961,-0.033471502363682,-0.033510103821754]],[[0.017863875254989,-0.013801724649966,-0.22167512774467],[0.052332412451506,-0.12453543394804,-0.12556622922421],[0.073581144213676,-0.03693226352334,0.076527744531631]],[[0.020874446257949,-0.017121868208051,0.029973616823554],[0.0076006310991943,0.10635498911142,0.0524697676301],[-0.12373197078705,0.061559457331896,-0.024218209087849]],[[0.10083528608084,-0.0092732543125749,-0.029961625114083],[-0.052631985396147,0.091129027307034,-0.028015883639455],[0.072988271713257,0.098252765834332,-0.094150371849537]],[[-0.10713982582092,-0.044617768377066,-0.064191207289696],[0.019965467974544,-0.045947279781103,-0.15562383830547],[0.00060947460588068,0.042036358267069,0.093312978744507]],[[0.081767551600933,-0.056762035936117,-0.081515647470951],[0.024349356070161,0.0090796016156673,-0.030900882557034],[0.054338607937098,-0.048733334988356,0.032173328101635]],[[0.024536669254303,-0.0078967930749059,-0.046108711510897],[0.019822617992759,0.023184832185507,-0.049290753901005],[0.12892094254494,-0.052038043737411,0.069857113063335]],[[0.030238039791584,0.039058987051249,-0.080326348543167],[-0.039304412901402,-0.011654592119157,0.010188438929617],[-0.042055476456881,-0.046698212623596,-0.01572304777801]],[[-0.020248409360647,-0.088724605739117,-0.080325216054916],[-0.012010010890663,-0.0012353090569377,-0.018485683947802],[0.03107313811779,-0.025789195671678,-0.040957435965538]],[[0.044527053833008,-0.092185489833355,-0.078082524240017],[-0.014023234136403,0.050547577440739,0.042644746601582],[-0.060309760272503,-0.042503342032433,-0.104407094419]],[[0.050170663744211,-0.10781235992908,0.13056436181068],[0.056231938302517,-0.048124808818102,0.050591681152582],[-0.05631747841835,0.084732130169868,-0.044672898948193]],[[0.044465348124504,0.0041772769764066,-0.044509205967188],[0.032973259687424,-0.019509458914399,-0.018464967608452],[0.08503482490778,-0.037803918123245,-0.016676878556609]],[[-0.070834830403328,0.07930688560009,-0.0036283119115978],[-0.0059510790742934,0.038574207574129,-0.057039432227612],[-0.017248054966331,-0.0080008208751678,-0.031848777085543]],[[-0.0087767066434026,-0.020346757024527,0.014919931069016],[-0.0052999895997345,-0.065324530005455,0.037951163947582],[0.063428416848183,0.10369689762592,-0.045619450509548]],[[-0.021776689216495,-0.038478780537844,0.03288459405303],[-0.030849842354655,-0.089246273040771,-0.02825371734798],[0.012181136757135,0.034160513430834,-0.030720690265298]],[[-0.0086785303428769,0.04107727855444,-0.027242984622717],[0.10979301482439,-0.042111486196518,-0.17650213837624],[0.16268573701382,0.078502431511879,0.0067946542985737]],[[-0.018088342621922,0.0096082044765353,0.068271264433861],[0.12462821602821,0.028676327317953,0.11811875551939],[0.074026472866535,-0.064102113246918,-0.23088556528091]],[[0.010237625800073,-0.061347879469395,-0.031279250979424],[-0.040084660053253,0.024134149774909,-0.049706008285284],[-0.087947264313698,-0.1035817489028,0.067983880639076]],[[0.022637778893113,-0.01349826157093,0.018612824380398],[0.11397073417902,-0.067615248262882,-0.0095232166349888],[0.03768352419138,0.043123196810484,0.0066495831124485]],[[-0.037577111274004,0.043822459876537,-0.17955705523491],[-0.060929786413908,0.00044636239181273,-0.050014782696962],[0.12596970796585,0.025456955656409,-0.014063121750951]],[[0.011004248633981,-0.098521992564201,0.11919886618853],[-0.036874253302813,-0.082109600305557,0.013583104126155],[0.042434640228748,-0.21337938308716,-0.11429451406002]],[[0.050671711564064,0.14978206157684,0.081578299403191],[0.036530502140522,0.035860229283571,-0.066463328897953],[0.1050658673048,-0.085267551243305,-0.039200466126204]],[[-0.065008856356144,0.029780825600028,-0.10027575492859],[0.014716872945428,-0.10186606645584,-0.0516770593822],[0.24043624103069,0.1251528263092,0.12471366673708]],[[0.10968065261841,0.063018426299095,0.032305814325809],[0.0081051765009761,0.035066548734903,-0.11109816282988],[-0.066338121891022,0.043909385800362,-0.024185348302126]],[[-0.084924817085266,-0.027962554246187,0.034616947174072],[-0.12818211317062,-0.085016995668411,-0.042974997311831],[0.0019065936794505,0.064223423600197,0.096040941774845]],[[0.21855184435844,-0.011182110756636,-0.037033669650555],[0.034188907593489,0.12159415334463,0.0057170414365828],[0.045583080500364,0.054820753633976,-0.046353876590729]],[[0.20280273258686,-0.072815664112568,-0.13770319521427],[0.20539480447769,0.1155679449439,0.02365442737937],[0.037996429949999,-0.047405712306499,-0.0041699111461639]],[[-0.0060991230420768,-0.046744339168072,-0.039582181721926],[-0.087356194853783,-0.0067346980795264,0.064038552343845],[-0.04951648786664,-0.04174717515707,-0.11191467195749]],[[0.075914993882179,-0.10820531100035,0.036800742149353],[-0.10259687155485,0.024965787306428,0.038746524602175],[-0.079661138355732,0.098860315978527,0.021798035129905]],[[0.032904893159866,0.0074587785638869,-0.13167083263397],[0.0071881203912199,-0.13382308185101,0.035145115107298],[0.21366463601589,0.05437071621418,-0.043583106249571]],[[0.03496266528964,-0.096812181174755,-0.04751992970705],[-0.041007280349731,0.036078847944736,-0.057228777557611],[0.024337125942111,0.024775315076113,-0.050244513899088]],[[-0.063498355448246,-0.10078021138906,0.10242978483438],[0.046700783073902,0.031810861080885,0.082291334867477],[0.10613711178303,-0.05567117407918,-0.044136930257082]],[[-0.013563136570156,0.0063642323948443,0.044473379850388],[-0.13657784461975,0.013749605044723,-0.11662200093269],[0.08156917989254,-0.0069364211522043,0.097983755171299]],[[0.06633897125721,-0.066237583756447,0.20802965760231],[0.01446842122823,-0.019480641931295,0.033001851290464],[-0.10036170482635,-0.094403967261314,0.044599074870348]],[[0.051205042749643,-0.11386802792549,0.015561698935926],[-0.055967673659325,-0.072501875460148,0.023153755813837],[0.029365407302976,-0.12348863482475,-0.047489792108536]],[[-0.009646094404161,-0.089190267026424,-0.061881523579359],[-0.018695965409279,0.019600443542004,0.03624726831913],[0.027252240106463,0.064942233264446,0.10072122514248]],[[-0.0879115909338,-0.038134723901749,0.011102201417089],[-0.037486013025045,0.020364573225379,0.051070358604193],[-0.0020567730534822,0.030197091400623,-0.068436503410339]],[[-0.026853920891881,-0.061015173792839,-0.069824367761612],[0.010387144982815,0.082389242947102,0.065933525562286],[0.02435801550746,0.021943796426058,-0.19843743741512]],[[0.086739145219326,0.11379715800285,-0.089966177940369],[-0.09081245213747,0.022864444181323,-0.085861712694168],[0.027022277936339,-0.042065344750881,-0.085711255669594]],[[-0.0064577772282064,-0.0024557486176491,-0.011335353367031],[-0.062808342278004,-0.024944087490439,-0.023846946656704],[0.037175741046667,-0.012554133310914,0.08703400939703]],[[-0.19443951547146,-0.040545757859945,-0.11710324883461],[0.098964877426624,0.093566358089447,0.14527532458305],[-0.11364860832691,-0.062808126211166,-0.13547758758068]],[[0.096065767109394,-0.093718633055687,-0.04445443674922],[-0.086459971964359,0.034742452204227,-0.074286945164204],[0.033185839653015,0.17523288726807,-0.070943124592304]],[[0.22251085937023,-0.12462730705738,0.057266097515821],[-0.18334881961346,-0.11741797626019,-0.029481502249837],[0.0012203067308292,0.10309680551291,-0.026343980804086]],[[0.060251649469137,-0.17250971496105,0.020282162353396],[0.11647132784128,0.013007115572691,0.081371620297432],[0.11998827755451,-0.040569361299276,0.042439796030521]],[[0.045948650687933,0.16063068807125,0.031008405610919],[0.033886302262545,0.038616854697466,0.13529747724533],[-0.079502299427986,0.068064197897911,0.17873269319534]],[[-0.032232832163572,-0.10671289265156,0.013347294181585],[-0.18017812073231,-0.06150571256876,-0.089228861033916],[-0.12498845905066,0.050773125141859,-0.01716198772192]],[[0.062230762094259,-0.11284230649471,0.050218135118484],[0.084984146058559,-0.063060931861401,0.033662844449282],[0.048489283770323,0.032934557646513,-0.11797971278429]],[[0.067113421857357,0.026459835469723,-0.01082768663764],[-0.00037869578227401,0.064170800149441,-0.057903602719307],[-0.10538712143898,-0.053543049842119,-0.1424201130867]],[[0.029246397316456,0.058728393167257,0.063676312565804],[-0.18353694677353,-0.15611007809639,-0.09458764642477],[-0.0077551105059683,0.10375900566578,-0.019543584436178]],[[-0.069715045392513,-0.093914709985256,-0.05203852802515],[-0.11902821809053,-0.035508498549461,0.014477419666946],[0.010290186852217,-0.10130555182695,0.024136438965797]]],[[[-0.034341681748629,-0.073821790516376,0.028331050649285],[-0.026018317788839,0.0057911612093449,0.043817553669214],[0.0087053691968322,0.015513750724494,0.039183009415865]],[[0.014214280992746,-0.035440444946289,0.00083517306484282],[0.03841095417738,-0.027643347159028,-0.0065472624264657],[0.0072776773013175,0.012334132567048,0.029071249067783]],[[-0.022556090727448,0.053038440644741,-0.038490250706673],[0.058022722601891,-0.025172026827931,-0.01128354575485],[-0.006238660775125,0.0089236507192254,-0.003557106712833]],[[0.026504511013627,0.00012771274487022,-0.0093111265450716],[-0.031810309737921,0.034402776509523,-0.0011090257903561],[-0.020436802878976,0.038313787430525,-0.014972240664065]],[[0.0097512155771255,0.03235736489296,-0.017974570393562],[-0.0060040834359825,0.042610336095095,0.086950466036797],[-0.085601903498173,-0.080371603369713,0.033692054450512]],[[0.027692891657352,0.017386624589562,0.0081703076139092],[-0.017134014517069,-0.028848277404904,-0.0055914279073477],[0.025854881852865,-0.013456648215652,0.0010748694185168]],[[-0.083273380994797,0.033942043781281,0.034151952713728],[-0.023878088220954,-0.050142038613558,0.033258553594351],[0.0081085851415992,0.021593455225229,-0.0012455965625122]],[[0.006527092307806,-0.0045581567101181,0.0036280227359384],[-0.051284063607454,0.041332576423883,0.026906674727798],[-0.033245295286179,0.013146482408047,0.00034490416874178]],[[-0.011881850659847,0.052787236869335,-0.01547693554312],[0.0027928021736443,-0.023354014381766,0.0163594763726],[-0.046136081218719,0.028990473598242,0.010999723337591]],[[-0.0049499571323395,-0.0099199255928397,-0.012756450101733],[-0.020305752754211,0.07014486938715,-0.0049303569830954],[-0.026496760547161,0.028777675703168,-0.009622304700315]],[[0.042947374284267,-0.046203441917896,-0.0027190127875656],[-0.014647440053523,0.0014105153968558,0.013521012850106],[-0.0035112956538796,0.037317529320717,0.0053660362027586]],[[0.011787731200457,-0.00094442476984113,-0.031660988926888],[-0.012937373481691,0.033714413642883,0.0048377211205661],[-0.012254165485501,0.014021880924702,-0.0043846596963704]],[[0.031752165406942,-0.038218721747398,0.00021294705220498],[-0.0003084599156864,0.024951461702585,0.023173248395324],[-0.014686836861074,-0.019817536696792,-0.008705198764801]],[[0.027418730780482,0.034659411758184,-0.021964535117149],[-0.064551159739494,0.037377115339041,0.0048732487484813],[-0.014445492997766,0.021398345008492,0.010592451319098]],[[-0.042725887149572,0.023534072563052,-0.038568086922169],[-0.058853428810835,-0.016455115750432,0.026049172505736],[-0.0091571630910039,0.037817414849997,0.042847279459238]],[[0.019313404336572,-0.0026685195043683,-0.019646940752864],[0.010984561406076,0.021220944821835,0.0035888259299099],[0.0088569261133671,-0.024620654061437,-0.011810571886599]],[[0.043686207383871,-0.066542945802212,0.022401951253414],[0.04003132134676,0.0063252239488065,-0.01126045640558],[0.013737947680056,0.0018074274994433,-0.0088035687804222]],[[-0.02806525491178,0.014728067442775,-0.04737813025713],[-0.036877367645502,0.061603602021933,0.01875283755362],[0.0044899941422045,0.023437451571226,-0.0038482847157866]],[[0.0099656395614147,-0.015985248610377,0.04372575879097],[-0.01222343929112,0.0075412346050143,-0.023724006488919],[-0.025930214673281,-0.013782287947834,0.014371565543115]],[[0.0082284808158875,0.00065636931685731,-0.020168548449874],[-0.038352534174919,0.013312519527972,-0.01662596873939],[0.022900763899088,-0.011613724753261,0.010801632888615]],[[0.050257481634617,-0.022016637027264,2.3068681912264e-05],[-0.050477627664804,0.060181576758623,-0.031108824536204],[-0.024225382134318,0.033835977315903,-0.0093519892543554]],[[-0.094290725886822,-0.11477864533663,-0.040287498384714],[-0.075927048921585,-0.17176525294781,-0.095790468156338],[-0.05843772366643,-0.096249736845493,-0.014150330796838]],[[-0.004183548502624,0.06847407668829,-0.033635504543781],[0.0090305497869849,0.012850116938353,0.035307683050632],[-0.05504958704114,0.027645438909531,-0.050265304744244]],[[-0.003492143470794,-0.039823096245527,0.019470499828458],[0.010067286901176,0.048359028995037,-0.019437588751316],[-0.0054195658303797,-0.00025760507560335,-0.039416871964931]],[[-0.063434734940529,-0.040385443717241,-0.063520327210426],[0.034943524748087,-0.02626165561378,0.080385848879814],[0.034439563751221,0.0050954865291715,0.023098058998585]],[[0.053608685731888,0.11177346110344,0.040582105517387],[0.082052879035473,0.1063516587019,0.084499724209309],[0.051546595990658,0.068279214203358,0.015432859770954]],[[-0.0035018513444811,0.062124069780111,-0.0052863643504679],[0.04610027000308,-0.01203362736851,-0.032004032284021],[-0.063297756016254,-0.017167672514915,-0.0079933181405067]],[[0.02546913176775,0.011475528590381,0.015192840248346],[-0.010001515038311,-0.0035198424011469,-0.032877694815397],[-0.0020075105130672,0.020935971289873,-0.016958644613624]],[[-0.012840177863836,0.0058705266565084,-0.010626317933202],[0.012186607345939,-0.0013755070976913,0.023649111390114],[0.0092320330440998,-0.04263674467802,0.034804824739695]],[[-0.0016415368299931,0.019519910216331,-0.0066957934759557],[0.019875915721059,-0.0020190498325974,0.01043358258903],[0.008469408378005,0.01137635204941,-0.028139628469944]],[[0.0083775203675032,-0.0079487431794405,-0.024747870862484],[-0.0087622338905931,0.0095551302656531,0.020550528541207],[0.0032338828314096,0.031310740858316,-0.012766399420798]],[[0.031353939324617,0.014814306981862,-0.022936003282666],[0.010248551145196,0.007844059728086,-0.061936091631651],[-0.0013376261340454,-0.0062860720790923,0.027966523543]],[[0.012065445072949,0.026377556845546,-0.019437216222286],[0.035604491829872,-0.05486061424017,0.0016337096458301],[0.0045808521099389,-0.0059712803922594,-0.016000827774405]],[[0.057153526693583,0.030592758208513,-0.015175545588136],[0.073669537901878,-0.022222630679607,-0.059513121843338],[0.015714202076197,-0.050815019756556,0.004283232614398]],[[-0.0064462260343134,0.0049593602307141,-0.030380690470338],[-0.016276724636555,0.059053856879473,0.018044473603368],[-0.025806974619627,-0.015527928248048,0.0058214524760842]],[[0.010202366858721,-0.028213884681463,0.015232720412314],[0.049682922661304,-0.0062221800908446,0.011170694604516],[-0.046483539044857,0.0034136667381972,0.0027286766562611]],[[0.024708069860935,-0.00056062574731186,-0.04352393746376],[0.014490759931505,0.030606249347329,-0.062696568667889],[0.029601268470287,0.0020156735554338,0.0032655668910593]],[[-0.02573399618268,0.028906509280205,-0.029605180025101],[0.0021773763000965,0.032228838652372,0.0043840734288096],[-0.011719211004674,-0.0078769009560347,0.0075578060932457]],[[-0.01647724583745,-0.019583821296692,0.059251550585032],[-0.025341974571347,-0.017244240269065,-0.019193174317479],[0.035142730921507,-0.011592758819461,0.015301343053579]],[[0.011544360779226,0.015801981091499,-0.019343506544828],[-0.0069294711574912,0.013671177439392,-0.042597249150276],[-0.0091464342549443,0.0019168180879205,0.020118752494454]],[[0.041672717779875,-0.0031146500259638,-0.010567172430456],[0.0067915474064648,-0.068423755466938,0.0097923409193754],[-0.005986338481307,-0.0032694700639695,-0.0035834673326463]],[[-0.023345885798335,-0.0085334405303001,0.0045673437416553],[0.012503551319242,0.033571131527424,-0.029269386082888],[0.036826681345701,-0.033513907343149,-0.0058175241574645]],[[0.017640735954046,0.04667717218399,-0.0040491581894457],[-0.023977180942893,-0.062547229230404,0.013090632855892],[-0.01920241676271,0.02981173992157,0.006070020608604]],[[-0.0032348656095564,0.0070945885963738,0.018964191898704],[-0.040644280612469,-0.010939564555883,-0.0086028957739472],[0.0003608513798099,0.0037566185928881,-0.0065945591777563]],[[-0.031214030459523,0.0029425513930619,-0.00032239514985122],[-0.010691868141294,0.010153082199395,-0.0010289355413988],[0.012949543073773,0.059553164988756,-0.00085327291162685]],[[0.031868446618319,-0.066135130822659,0.018525140359998],[-0.0038371286354959,-0.032358266413212,0.028277780860662],[-0.059623543173075,-0.026982557028532,-0.027354432269931]],[[0.0077040391042829,-0.051600724458694,0.028383005410433],[0.035776276141405,-0.017798390239477,-0.0074910568073392],[0.021750057116151,-0.015031141228974,-0.0041793589480221]],[[-0.01165163423866,0.0059743728488684,0.007710084784776],[0.015071215108037,0.0050964034162462,-0.049463707953691],[-0.00089712266344577,0.016262471675873,0.028568660840392]],[[-0.050908364355564,0.040437515825033,-0.018298331648111],[0.0062424265779555,0.052349787205458,-0.0074478178285062],[0.066995367407799,-0.041772313416004,-0.03970593214035]],[[0.023436861112714,0.012200424447656,-0.005165830720216],[-0.00025043849018402,0.013443103991449,0.019296491518617],[0.0011063762940466,-0.018944837152958,-0.026073258370161]],[[-0.021122885867953,0.012702125124633,0.041345592588186],[-0.05412457510829,0.044504411518574,-0.017859844490886],[-0.0032215772662312,0.019232643768191,-0.011293238028884]],[[0.01496375259012,-0.055944513529539,-0.0099913962185383],[-0.0020794039592147,0.026925291866064,0.029705476015806],[0.0027691700961441,0.01741979829967,-0.028657419607043]],[[0.031141638755798,0.010968863032758,0.0065432246774435],[-0.055034004151821,0.015892285853624,-0.011012470349669],[0.0028022166807204,0.017912056297064,-0.028351183980703]],[[0.013247519731522,-0.01599227078259,0.0055715944617987],[0.011142235249281,-0.0041046212427318,-0.016653951257467],[-0.0050303875468671,-0.016943460330367,0.024898229166865]],[[-0.037085756659508,0.0055222702212632,-0.021630473434925],[-0.004113597329706,0.03793865442276,0.081086449325085],[-0.0035405345261097,-0.038932722061872,-0.012731193564832]],[[0.014940324239433,-0.060536209493876,0.025925440713763],[0.0079852240160108,0.05904358625412,-0.031158244237304],[0.012854267843068,-0.030365427955985,0.015403814613819]],[[-0.023215975612402,0.034544631838799,0.0065312841907144],[-0.034264162182808,-0.017365472391248,-0.0059125791303813],[0.0277926530689,-0.013910342939198,0.0073856511153281]],[[0.032523054629564,0.027546318247914,-0.0034978878684342],[0.037455599755049,0.063817128539085,-0.011111504398286],[-0.014152776449919,-0.047482296824455,-0.086743719875813]],[[-0.10257920622826,-0.086266241967678,-0.12872411310673],[-0.11694688349962,-0.14957070350647,-0.10653261840343],[-0.051960196346045,-0.070479482412338,-0.080125629901886]],[[0.029945092275739,0.015714034438133,-0.015413708984852],[-0.04734119027853,-0.037137389183044,-0.035081300884485],[0.03517297282815,0.0065809763036668,0.018472481518984]],[[0.029436888173223,-0.053226444870234,-0.0064718252979219],[0.025899540632963,-0.002294868696481,0.025610532611609],[-0.0064948513172567,-0.016428409144282,-0.00093526171986014]],[[-0.00021410692716017,0.0041833207942545,0.018185444176197],[-0.037502609193325,-0.016015969216824,-0.038842748850584],[0.074195712804794,0.033784624189138,0.0034755866508931]],[[-0.031379252672195,0.012406433001161,-0.017053538933396],[-0.027918139472604,0.031349081546068,0.025636434555054],[0.050558246672153,-0.064787477254868,0.0054421331733465]],[[-0.016229119151831,0.03711274266243,-0.011167014949024],[0.016959926113486,-0.023339005187154,0.023069653660059],[-0.027838269248605,-0.0050000371411443,0.035262729972601]]],[[[-0.016765285283327,-0.050633061677217,-0.20339255034924],[0.075228117406368,0.1014449596405,-0.11211927980185],[0.10138212889433,-0.093084074556828,-0.088611572980881]],[[0.063899956643581,0.043007656931877,-0.18137617409229],[-0.031723897904158,-0.056651666760445,0.0097428802400827],[0.031495943665504,0.049849927425385,-0.017061375081539]],[[-0.001193025149405,-0.09103287756443,-0.10556951910257],[0.020103245973587,-0.13254392147064,-0.10290270298719],[-0.026695173233747,-0.066710278391838,-0.029536442831159]],[[-0.18850515782833,-0.015780530869961,-0.10013373941183],[0.088715210556984,-0.038198683410883,-0.075442060828209],[-0.019926406443119,0.026388969272375,0.14402160048485]],[[0.018500795587897,0.0049256412312388,-0.028539802879095],[0.11876206099987,0.10854637622833,0.1292147487402],[0.11895768344402,-0.029275150969625,-0.02591510117054]],[[-0.019847624003887,-0.10779508203268,-0.20894269645214],[0.039569351822138,0.077027924358845,0.038034576922655],[0.016689617186785,-0.08729775249958,-0.26649913191795]],[[-0.011127663776278,-0.16481544077396,-0.13068343698978],[0.10092776268721,-0.14513576030731,-0.16935247182846],[0.051417928189039,0.0048966677859426,0.12279705703259]],[[0.12194756418467,-0.11351220309734,-0.12246814370155],[0.19120518863201,0.11876129359007,-0.16407233476639],[0.050508633255959,-0.075492464005947,-0.050164848566055]],[[-0.0052812085486948,0.034982144832611,-0.012022093869746],[0.0019272678764537,-0.078026376664639,0.07803089171648],[-0.075616285204887,-0.051171645522118,0.029343709349632]],[[0.05331851541996,-0.12708626687527,-0.064569398760796],[0.031844343990088,0.00096739601576701,-0.060188613831997],[0.032534513622522,-0.07709626108408,-0.27045351266861]],[[0.039918851107359,-0.12241621315479,-0.030311135575175],[0.059923980385065,-0.033437229692936,-0.047223687171936],[0.043255139142275,0.042009230703115,-0.096408382058144]],[[-0.018328215926886,0.0062530185095966,-0.093410305678844],[0.015888176858425,0.093554586172104,-0.042422778904438],[-0.069514259696007,-0.075920984148979,-0.06545440107584]],[[0.13853320479393,0.033409353345633,-0.025376841425896],[0.032048307359219,-0.027055783197284,0.04900098964572],[0.14777757227421,-0.014373289421201,-0.014761948026717]],[[0.034564290195704,0.025272162631154,0.023534862324595],[-0.085498563945293,0.027816673740745,0.062705665826797],[0.038065228611231,-0.063756018877029,-0.028790075331926]],[[-0.13168653845787,-0.017002886161208,-0.11218564212322],[-0.093667097389698,0.095668084919453,0.0070709567517042],[-0.071666054427624,0.019877556711435,0.047440439462662]],[[0.12175115197897,-0.081673815846443,-0.027267640456557],[0.053222835063934,0.063681535422802,0.079155802726746],[-0.069948695600033,-0.070446252822876,-0.38696599006653]],[[0.0073097636923194,-0.1171460673213,-0.15784092247486],[-0.049103483557701,0.019883861765265,-0.16326420009136],[0.092776507139206,0.022180028259754,-0.14674749970436]],[[-0.063858285546303,-0.0083255590870976,0.050854567438364],[0.056453224271536,-0.03912403061986,-0.043396934866905],[0.13826882839203,0.043741300702095,-0.26029694080353]],[[0.0022982615046203,0.031728245317936,0.13759125769138],[-0.075349509716034,0.018885929137468,0.02636681869626],[-0.072448708117008,-0.048453822731972,0.14258359372616]],[[-0.020228322595358,0.014405066147447,0.05208421126008],[-0.060267474502325,-0.10512406378984,-0.2200228869915],[0.0023564831353724,0.065082848072052,-0.043847113847733]],[[0.043750803917646,-0.067764148116112,-0.19221550226212],[0.044896461069584,-0.071994997560978,-0.28262534737587],[0.043803486973047,0.0078815063461661,-0.10873620957136]],[[0.013107841834426,-0.013851324096322,-0.083297111093998],[-0.028452007099986,0.042852055281401,-0.070056192576885],[0.049702718853951,-0.001253048190847,-0.094809554517269]],[[-0.10951927304268,-0.070189021527767,0.048876281827688],[0.03515699505806,0.060782801359892,0.064969204366207],[-0.083572573959827,-0.034932464361191,-0.22737067937851]],[[0.15432851016521,0.13645656406879,0.15471068024635],[-0.039176125079393,-0.052291445434093,0.0063135391101241],[0.17915464937687,-0.046377338469028,0.12774333357811]],[[0.045503314584494,0.19848485291004,0.15080636739731],[-0.1151081174612,0.11665752530098,0.12180393189192],[-0.017742987722158,0.050423923879862,0.010340637527406]],[[0.0019952584989369,-0.0049094217829406,0.063723310828209],[-0.11426931619644,-0.028786631301045,-0.036700531840324],[0.010850510559976,0.015487067401409,0.03866969794035]],[[0.13920487463474,0.0095561156049371,-0.084879331290722],[-0.02817684225738,-0.060187887400389,-0.11680656671524],[0.049596641212702,0.042202431708574,-0.031389568001032]],[[0.22113743424416,0.018110405653715,0.055345609784126],[0.029889153316617,-0.080338299274445,-0.02713855355978],[-0.043034635484219,0.018816445022821,0.020682541653514]],[[-0.011141519062221,0.0051257442682981,-0.039586860686541],[-0.093860730528831,-0.15500570833683,0.0006441738223657],[0.095699772238731,0.019175618886948,0.033551465719938]],[[0.024533653631806,0.02540915645659,-0.13260868191719],[0.0028365144971758,-0.11382057517767,-0.021341159939766],[0.019121441990137,0.00068450777325779,0.12280107289553]],[[0.14285613596439,0.044966902583838,0.035733036696911],[0.00046496684080921,0.06720807403326,0.046825245022774],[-0.07435979694128,-0.031622707843781,0.29280266165733]],[[-0.066885873675346,-0.039621725678444,-0.20722541213036],[0.067563734948635,0.056509647518396,0.13849484920502],[0.024507656693459,-0.035570230334997,0.15299910306931]],[[-0.095713458955288,-0.066583357751369,0.0093060843646526],[-0.20060738921165,-0.13694909214973,0.0061109671369195],[0.10403797775507,0.039528850466013,-0.071238495409489]],[[0.025443939492106,-0.039850976318121,-0.10009579360485],[-0.16697098314762,-0.092044472694397,-0.15047967433929],[0.056469868868589,0.1496876180172,0.011307537555695]],[[-0.06608721613884,-0.014494678936899,-0.11830969154835],[-0.022851610556245,-0.055619195103645,-0.010158283635974],[-0.016993910074234,0.0025108375120908,-0.1231978610158]],[[-0.044338159263134,-0.0017134746303782,-0.011615825816989],[0.17626374959946,0.038152083754539,0.043302450329065],[0.012534505687654,-0.054623510688543,-0.10611538589001]],[[-0.15626084804535,-0.092545062303543,-0.048328705132008],[0.06872932612896,0.054775681346655,0.010132858529687],[0.044127725064754,-0.045840352773666,0.057625651359558]],[[0.14394065737724,-0.06374104321003,-0.21438947319984],[0.044550783932209,-0.11641973257065,-0.067343078553677],[0.13254578411579,-0.049547355622053,-0.031820524483919]],[[-0.1288253813982,-0.086984910070896,-0.036460176110268],[0.040778208523989,0.025927022099495,-0.010975344106555],[-0.064488589763641,-0.015151151455939,-0.039368502795696]],[[0.13673800230026,-0.0068982383236289,0.05858151987195],[0.043828587979078,-0.010918610729277,0.031818211078644],[0.046274818480015,0.016384854912758,-0.20965269207954]],[[0.082844607532024,-0.085475206375122,-0.14326243102551],[-0.027894986793399,-0.11154233664274,-0.23441201448441],[0.017225513234735,-0.020881434902549,0.10578478127718]],[[0.015010775066912,-0.081211268901825,-0.13057580590248],[0.073028668761253,0.079961895942688,-0.033289164304733],[0.023981232196093,-0.013926820829511,-0.0085330680012703]],[[-0.0099431304261088,0.034525208175182,-0.034798488020897],[0.092569686472416,0.092148765921593,0.027535120025277],[-0.0055825617164373,-0.12369552999735,-0.00061249837744981]],[[0.072728402912617,0.074606746435165,0.016058780252934],[0.046500395983458,0.031356245279312,-0.14826549589634],[0.0088293049484491,-0.019316371530294,0.1070663407445]],[[-0.047501433640718,0.10425435751677,0.055122662335634],[-0.16898690164089,-0.027537481859326,0.083618387579918],[-0.085498094558716,-0.09708696603775,0.057959258556366]],[[0.14588230848312,0.071452751755714,0.10510700941086],[-0.16840921342373,0.024160699918866,-0.0911018922925],[-0.040726508945227,0.14848679304123,0.091813750565052]],[[0.040043231099844,-0.00028146721888334,-0.12544889748096],[-0.0082536097615957,-0.0069607887417078,-0.1082790568471],[0.14175310730934,-0.019625147804618,-0.12735266983509]],[[0.031385093927383,-0.018135659396648,0.054996363818645],[-0.074536144733429,-0.024901043623686,0.037550233304501],[-0.056789189577103,-0.02041601203382,-0.021465299651027]],[[0.0050052413716912,0.014595865271986,-0.007020459510386],[-0.13322611153126,-0.11718913167715,-0.020151788368821],[0.0054887514561415,-0.01516829803586,-0.019445603713393]],[[-0.057957265526056,-0.10522119700909,0.078351646661758],[0.031886968761683,-0.094863221049309,0.11914598941803],[0.022956848144531,0.14011326432228,0.032218903303146]],[[-0.063979052007198,-0.15399163961411,0.063429653644562],[0.062859080731869,0.0076708351261914,-0.0089739179238677],[0.025710482150316,-0.10223644226789,-0.056084528565407]],[[-0.034990426152945,-0.10829623043537,-0.21204015612602],[-0.021477727219462,-0.0044165076687932,-0.023046039044857],[0.064121060073376,-0.0023842996452004,-0.21408487856388]],[[-0.050316289067268,0.084842093288898,-0.10643307119608],[-0.0047142351977527,-0.068439856171608,-0.11609813570976],[0.0010471545392647,-0.000219535024371,0.12057109922171]],[[-0.015020125545561,-0.0043922569602728,-0.10291889309883],[0.044766865670681,-0.081953018903732,0.12684251368046],[-0.081866912543774,-0.11718518286943,0.006283116992563]],[[-0.019267089664936,0.0060386559925973,0.064560107886791],[0.0021884005982429,-0.10711767524481,-0.079542264342308],[0.08074589073658,0.068519502878189,-0.090348303318024]],[[-0.083152569830418,-0.061153795570135,-0.017119592055678],[0.18339969217777,0.042073257267475,0.075003042817116],[-0.15546084940434,-0.14569967985153,-0.1687121540308]],[[0.14928835630417,-0.025102313607931,-0.048804182559252],[0.072939932346344,0.0092972088605165,-0.024983529001474],[-0.041988957673311,-0.04741807281971,-0.046397939324379]],[[0.092427030205727,-0.026925606653094,-0.029886083677411],[0.085291482508183,-0.095634274184704,-0.30120834708214],[0.073286212980747,0.0075260829180479,0.052666362375021]],[[0.028555672615767,0.17703978717327,0.028233939781785],[0.072409756481647,0.12002237141132,0.059595696628094],[-0.068692602217197,0.0079412963241339,-0.0024746309500188]],[[-0.11507828533649,-0.078020378947258,-0.19866536557674],[0.054683189839125,-0.028554402291775,-0.073676884174347],[-0.12588430941105,-0.033037234097719,0.08840074390173]],[[0.0029479062650353,0.0038539171218872,0.049360003322363],[-0.095902480185032,-0.022879166528583,-0.22320465743542],[-0.012235236354172,0.083670996129513,-0.011990686878562]],[[0.13337430357933,0.066432856023312,0.059933163225651],[-0.23353868722916,-0.13809213042259,0.055662166327238],[-0.14932142198086,0.031288124620914,-0.043083589524031]],[[0.066146343946457,0.0042820819653571,-0.068435825407505],[-0.058944370597601,-0.076174534857273,0.043849602341652],[0.12548331916332,0.012556190602481,0.020673830062151]],[[-0.002013003686443,0.021260293200612,-0.049417424947023],[0.023921262472868,0.010463323444128,-0.039746548980474],[0.13079917430878,-0.049896560609341,-0.02052796445787]]],[[[0.075624831020832,-0.0045581343583763,0.02993948571384],[-0.039364203810692,0.037781525403261,0.043476194143295],[0.04907974973321,-0.06023471057415,-0.010056960396469]],[[-0.072539240121841,-0.094509728252888,0.082717351615429],[-0.13184595108032,0.043750066310167,0.04825472459197],[0.031848546117544,0.022492134943604,-0.070852003991604]],[[-0.061887629330158,-0.045250032097101,-0.048920005559921],[-0.13548202812672,-0.036462917923927,0.1039714962244],[-0.03096928820014,0.026635561138391,-0.007990044541657]],[[0.0031963940709829,0.091881550848484,0.099959947168827],[0.0076793232001364,-0.029126111418009,-0.031863413751125],[-0.14015577733517,-0.10344775766134,0.10325004160404]],[[-0.049040801823139,-0.0628846809268,-0.071200489997864],[0.0058379960246384,-0.050882302224636,0.13918666541576],[0.14640013873577,0.073692873120308,0.0024646399542689]],[[0.11891804635525,0.10726328194141,0.045495133846998],[-0.045487333089113,0.026360219344497,0.055607404559851],[-0.012786510400474,0.0054539847187698,-0.10009615123272]],[[-0.12503489851952,0.029684031382203,0.021755781024694],[-0.062841705977917,0.051687691360712,-0.034142032265663],[0.0067930496297777,0.04442248493433,0.10445787757635]],[[-0.11264234036207,-0.016323085874319,0.036545012146235],[0.0056082317605615,0.047700166702271,0.076336860656738],[0.063534870743752,-0.076452776789665,0.047440823167562]],[[-0.022744335234165,-0.12213180214167,0.037940066307783],[0.051901124417782,0.058734145015478,-0.13121558725834],[0.076733283698559,0.076688043773174,-0.010823773220181]],[[0.026326859369874,-0.20179405808449,0.062826856970787],[-0.081759087741375,-0.03673443198204,0.10492806881666],[0.14480611681938,-0.001738544087857,-0.071876019239426]],[[0.05585616081953,0.036980099976063,0.12763980031013],[0.0231873113662,0.071951702237129,-0.061418302357197],[-0.099206045269966,-0.13490062952042,-0.05531121045351]],[[-0.017659610137343,0.032639786601067,-0.066139921545982],[-5.6286669860128e-05,-0.054681207984686,-0.069856755435467],[0.089062511920929,0.065613687038422,-0.079383999109268]],[[0.11445359885693,0.047020141035318,-0.039375748485327],[-0.02568974532187,0.026281777769327,-0.090832218527794],[-0.057922966778278,0.049603011459112,0.023142851889133]],[[0.11490867286921,-0.08946581184864,-0.077282577753067],[0.10748869180679,0.077685974538326,0.064246736466885],[0.0072791525162756,0.10404624789953,-0.038642968982458]],[[-0.061030339449644,-0.017979783937335,0.049342505633831],[-0.01199562009424,-0.15390554070473,-0.015402814373374],[-0.091249093413353,0.017039084807038,-0.031356077641249]],[[-0.0084902495145798,0.042762584984303,-0.19842156767845],[-0.0077880527824163,0.059273492544889,0.087842114269733],[0.043209388852119,0.0065533518791199,0.11759258806705]],[[-0.068720869719982,-0.1622602045536,-0.041888281702995],[-0.032434746623039,-0.0091182868927717,0.028623329475522],[0.015636535361409,0.034779958426952,-0.0035438959021121]],[[-0.025768874213099,0.083642445504665,0.055418714880943],[0.034238684922457,0.14397126436234,-0.004126172978431],[0.011678389273584,0.060629487037659,0.07669323682785]],[[0.056506011635065,0.1083327382803,0.065943919122219],[-0.032414272427559,0.11240069568157,-0.00455566868186],[-0.060286104679108,0.019305130466819,-0.042817834764719]],[[0.022803416475654,0.030718682333827,-0.027751633897424],[0.026520650833845,0.052695699036121,-0.056282546371222],[-0.040265694260597,0.036852207034826,-0.092633157968521]],[[-0.0027565089985728,0.14591373503208,0.10415171831846],[0.038406349718571,0.07120793312788,0.047740165144205],[-0.075288832187653,-0.1743600666523,0.13106873631477]],[[-0.028152748942375,0.030109949409962,-0.058574911206961],[0.0014453311450779,-0.12407729029655,-0.091207906603813],[0.035211216658354,0.076438918709755,0.014584795571864]],[[-0.0026163321454078,-0.086148411035538,-0.22782838344574],[-0.016711631789804,-0.14057433605194,-0.059840966016054],[-0.077269680798054,-0.040919277817011,0.037606462836266]],[[0.19344246387482,0.042200163006783,-0.066374711692333],[0.10887026041746,-0.026025597006083,-0.10032596439123],[0.17348285019398,-0.11100022494793,0.078653365373611]],[[-0.010762176476419,0.070473402738571,-0.018770832568407],[0.077911980450153,0.10470438748598,0.02076300419867],[0.0028700132388622,0.16046631336212,0.10121817886829]],[[-0.029136188328266,0.0014923301059753,0.071047559380531],[-0.024451332166791,0.0095227211713791,0.084047563374043],[-0.043909054249525,0.029707003384829,-0.040914308279753]],[[-0.20085038244724,0.042940687388182,-0.0009784692665562],[-0.027245158329606,0.1014284864068,0.074651315808296],[-0.12113091349602,0.13245902955532,0.041588358581066]],[[-0.044199138879776,-0.078413680195808,0.017844047397375],[-0.019494011998177,-0.028334802016616,-0.013255928643048],[0.050086338073015,-0.25427517294884,-0.13975758850574]],[[-0.010109758935869,0.13564147055149,-0.056104868650436],[0.032667938619852,-0.026406459510326,-0.022450910881162],[-0.0062494706362486,0.0011253021657467,0.058825120329857]],[[0.047266822308302,0.020738434046507,-0.013515037484467],[-0.13683649897575,0.036774400621653,-0.10988415777683],[-0.10827399045229,-0.026848904788494,-0.079318463802338]],[[0.0019440153846517,-0.1114067658782,0.065906666219234],[0.060900583863258,0.013785067014396,0.06898670643568],[0.022698123008013,0.11670278757811,0.05863668769598]],[[-0.13621790707111,-0.14768056571484,0.0032942320685834],[-0.047081667929888,0.065511181950569,-0.022351209074259],[0.068953759968281,0.13027560710907,0.0053568300791085]],[[0.020297875627875,0.13002307713032,0.04821715131402],[-0.059175487607718,-0.072709143161774,-0.01345401071012],[-0.034820690751076,-0.029359189793468,0.10511273890734]],[[-0.078625813126564,0.0074473978020251,0.047168366611004],[-0.083618499338627,-0.048299837857485,0.05568827688694],[-0.069057360291481,-0.042489383369684,-0.077883332967758]],[[0.13033068180084,0.033479209989309,-0.061070501804352],[0.092007339000702,0.06342139095068,-0.096169985830784],[-0.08799009770155,-0.13479715585709,0.041527040302753]],[[-0.0039174235425889,0.023931967094541,-0.019691186025739],[-0.0040638251230121,0.13644756376743,0.043934401124716],[0.04951373487711,-0.042827505618334,0.13993510603905]],[[0.12468615174294,0.022945523262024,0.11673982441425],[-0.11894857883453,-0.0099689932540059,-0.020386524498463],[0.05291598290205,0.010822421871126,0.040673341602087]],[[0.0099803861230612,-0.016506781801581,0.027799915522337],[0.062922723591328,-0.073347479104996,-0.063291184604168],[-0.049327954649925,0.079660043120384,-0.044886197894812]],[[-0.017523072659969,-0.0029961892869323,-0.10247615724802],[-0.099020697176456,-0.062079757452011,-0.046716190874577],[0.04953196644783,-0.014830929227173,-0.13280288875103]],[[-0.068710878491402,0.058145333081484,-0.06653843075037],[0.054886821657419,0.086521111428738,-0.076120987534523],[0.011817896738648,0.014515577815473,-0.14170816540718]],[[0.1061687618494,0.091207757592201,-0.075142703950405],[0.088950984179974,-0.024351891130209,-0.16540306806564],[-0.15255244076252,-0.22404853999615,-0.16728246212006]],[[0.058785047382116,-0.12923444807529,-0.10239809751511],[-0.039253164082766,-0.082533106207848,-0.039188377559185],[0.045758735388517,0.12358360737562,0.097547180950642]],[[-0.01224619243294,0.10066556185484,-0.027633760124445],[0.099285021424294,0.030427189543843,-0.065257385373116],[-0.10520397126675,-0.051620207726955,0.0071909036487341]],[[0.0086396317929029,-0.047631364315748,0.029569383710623],[0.073776371777058,-0.060185451060534,0.03004283644259],[0.16272047162056,0.035779755562544,-0.015929315239191]],[[0.058095060288906,-0.010564866475761,0.046761214733124],[0.019835222512484,0.12727449834347,-0.10241689532995],[0.051110584288836,0.011026008985937,0.0073254518210888]],[[0.0048637478612363,-0.001182796433568,-0.089366562664509],[-0.092609733343124,0.066158466041088,-0.12396150827408],[-0.020789258182049,0.023053335025907,0.037943873554468]],[[-0.01125755906105,-0.069746270775795,-0.10499338805676],[0.0075018387287855,-0.056665122509003,0.014993119984865],[-0.047528322786093,-0.056171473115683,-0.029748726636171]],[[-0.072397321462631,0.093358069658279,-0.0005333325243555],[-0.15892265737057,0.036732442677021,0.038688134402037],[0.015571505762637,-0.043037120252848,-0.0036069792695343]],[[-0.0051535619422793,0.011540667153895,-0.08350133150816],[0.14246991276741,0.067540675401688,-0.033166121691465],[-0.12540639936924,-0.016117338091135,-0.14911685883999]],[[-0.049581620842218,0.013730449602008,-0.14189566671848],[0.075035415589809,-0.17210647463799,-0.21155323088169],[-0.049225110560656,0.070941269397736,0.060591973364353]],[[0.14096936583519,0.10624245554209,0.036923170089722],[-0.10331426560879,-0.065063804388046,0.056735750287771],[0.072576455771923,0.06120228022337,-0.098281309008598]],[[0.0074389409273863,-0.042955972254276,-0.044562697410583],[0.019137995317578,-0.045040365308523,0.10705485194921],[0.059855151921511,0.0050380895845592,0.011074806563556]],[[-0.053592383861542,-0.1214761286974,-0.053125064820051],[-0.053717754781246,-0.054482504725456,0.00089345750166103],[-0.071268156170845,-0.050629258155823,-0.035397682338953]],[[-0.057861063629389,-0.034750770777464,-0.082416824996471],[-0.035494554787874,-0.087957844138145,-0.056810542941093],[-0.015188395045698,-0.10406895726919,-0.038385301828384]],[[0.047058049589396,-0.022342259064317,0.016151200979948],[-0.077005639672279,-0.031490743160248,-0.034837011247873],[-0.04816534742713,0.028839530423284,0.029944470152259]],[[0.004576709587127,0.082440361380577,0.060757581144571],[-0.096249587833881,-0.022783337160945,0.054345071315765],[-0.11291912943125,-0.1191832497716,-0.0195572078228]],[[-0.036392848938704,-0.039720945060253,0.058363772928715],[0.077283538877964,-0.14256612956524,-0.097021795809269],[0.02908568829298,-0.10485713928938,-0.002212475752458]],[[0.092301316559315,-0.055148128420115,-0.01605711504817],[0.003391528967768,0.056283500045538,0.025727661326528],[0.04144024476409,-0.030917583033442,-0.05678004026413]],[[0.054129660129547,-0.022955752909184,0.21414011716843],[0.065649725496769,-0.030787447467446,0.12118726968765],[0.097825735807419,0.0018079822184518,-0.0450096167624]],[[0.082540906965733,0.073240771889687,0.15013140439987],[-0.097821228206158,0.027429426088929,0.030845699831843],[0.11877559125423,0.017913499847054,0.020870620384812]],[[-0.14412392675877,0.050701107829809,-0.016857575625181],[-0.13826480507851,-0.16319650411606,0.052818641066551],[0.0028971470892429,0.028324507176876,0.11822324246168]],[[-0.063223361968994,0.030777987092733,0.044368356466293],[0.15973605215549,0.012835949659348,-0.090748660266399],[-0.043692920356989,0.067786984145641,0.13271145522594]],[[0.084149941802025,-0.050244122743607,0.17758086323738],[0.035087760537863,-0.02805626578629,0.01777177490294],[0.0035717191640288,0.10108308494091,0.016849441453815]],[[-0.04019009321928,-0.16238789260387,-0.13328331708908],[0.0091827400028706,0.1003852263093,0.024389090016484],[0.05962561070919,-0.079315692186356,0.060226690024137]]],[[[0.019248783588409,0.041267804801464,-0.10655279457569],[-0.10621393471956,0.00028575342730619,0.013089145533741],[-0.014188318513334,-0.027800511568785,0.010185618884861]],[[0.035428110510111,-0.016287704929709,0.091665588319302],[-0.22273913025856,-0.12972472608089,0.023054542019963],[-0.15260687470436,0.03560509160161,-0.074472889304161]],[[-0.09251556545496,-0.12741260230541,-0.12662215530872],[-0.096075616776943,-0.017304277047515,-0.11599850654602],[-0.022832907736301,-0.0048514157533646,-0.0022493312135339]],[[-0.048350058495998,-0.018173340708017,-0.071956217288971],[0.012813384644687,-0.026922067627311,0.18177199363708],[0.0092262253165245,0.03457398340106,0.035094153136015]],[[0.052257366478443,-0.027215048670769,0.032129421830177],[0.081076569855213,-0.074061580002308,0.026087444275618],[0.058904822915792,-0.12550640106201,-0.1398289501667]],[[-0.18211221694946,-0.073563814163208,-0.02060972340405],[-0.018993455916643,-0.10218396782875,-0.0033976980485022],[-0.020050691440701,0.019462460651994,0.025217486545444]],[[-0.08938917517662,-0.095623932778835,0.022282985970378],[-0.086357407271862,-0.036673903465271,-0.035478204488754],[0.081374943256378,-0.038531567901373,-0.067959919571877]],[[-0.10322743654251,0.13874258100986,0.073105283081532],[0.074087150394917,-0.024208456277847,-0.066647730767727],[-0.099084950983524,-0.034037932753563,-0.070628561079502]],[[0.046674072742462,-0.0017892961623147,0.088444158434868],[-0.23104299604893,-0.047304108738899,-0.056132655590773],[0.021608592942357,-0.062051232904196,0.067840680480003]],[[0.034655503928661,0.017654558643699,-0.028359791263938],[-0.11505207419395,-0.090363070368767,0.071183875203133],[-0.086927846074104,-0.010671150870621,-0.076581798493862]],[[-0.023796593770385,0.019511951133609,0.01215570513159],[0.13908784091473,0.0076439795084298,-0.038844641298056],[-0.040960494428873,-0.080098621547222,-0.042325712740421]],[[-0.066882491111755,0.035874292254448,0.1580099016428],[0.028518950566649,0.01084044482559,0.10992781817913],[-0.0011808543931693,-0.075212799012661,-0.11461601406336]],[[0.24665389955044,-0.08861093968153,-0.036236751824617],[0.066824093461037,0.12793877720833,0.043501786887646],[0.033876907080412,0.022528586909175,-0.026189776137471]],[[0.030809013172984,0.079689271748066,-0.021330496296287],[0.038535591214895,-0.18795000016689,-0.070997439324856],[-0.027464956045151,0.063703395426273,0.082010611891747]],[[-0.094437181949615,0.0064656599424779,0.042884133756161],[-0.039230901747942,-0.053577303886414,-0.0078769577667117],[0.14058400690556,-9.5853676612023e-05,0.013735270127654]],[[0.036208808422089,-0.093994572758675,-0.011149233207107],[0.052997719496489,0.026314254850149,-0.015098167583346],[0.11636182665825,-0.089194983243942,-0.00073265348328277]],[[-0.0088061038404703,-0.17154316604137,-0.1531223654747],[0.093025490641594,-0.061718385666609,-0.043614819645882],[0.052356630563736,0.084093973040581,0.0647883862257]],[[0.017804678529501,-0.014090608805418,0.039707653224468],[0.0066345473751426,-0.045551970601082,0.028006460517645],[0.033274423331022,-0.057852700352669,-0.033819627016783]],[[0.047582343220711,-0.02583253569901,0.0096127549186349],[-0.019103277474642,-0.031102271750569,-0.11179262399673],[-0.054149121046066,0.085431613028049,-0.094115190207958]],[[-0.086679503321648,-0.072321452200413,0.0982561185956],[0.13411918282509,-0.092623263597488,-0.028807027265429],[-0.020755333825946,-0.023807134479284,0.18753156065941]],[[-0.072210066020489,-0.10684144496918,0.01570606417954],[-0.11361166089773,-0.014084840193391,-0.065389670431614],[0.072309724986553,0.07935955375433,0.07176136225462]],[[0.069282628595829,0.0075601660646498,0.018326798453927],[-0.018075007945299,-0.086323380470276,-0.083157777786255],[0.042712088674307,-0.049452397972345,-0.022694569081068]],[[0.031583599746227,0.043233569711447,-0.0887386277318],[0.1253961622715,-0.051315788179636,-0.076570503413677],[-0.082557439804077,0.092329986393452,-0.011506134644151]],[[0.11270748823881,-0.0036343871615827,0.10190696269274],[0.020502815023065,0.037481810897589,-0.11928322911263],[0.047163467854261,0.012066500261426,-0.042953941971064]],[[0.2343418598175,-0.0016536565963179,-0.0092333517968655],[0.077439181506634,0.081243224442005,-0.012303724884987],[-0.17733481526375,0.058629356324673,-0.12462152540684]],[[0.052985530346632,-0.06185158342123,0.0060787042602897],[0.025581087917089,0.054875943809748,-0.017445566132665],[-0.022400883957744,0.052098006010056,-0.084049396216869]],[[0.013358830474317,0.067164793610573,-0.013613843359053],[-0.006680132355541,-0.024948447942734,-0.022703459486365],[0.14655683934689,-0.029729230329394,0.15649916231632]],[[0.056347563862801,-0.012018477544188,-0.15605327486992],[0.17223817110062,-0.012280943803489,0.039216410368681],[-0.017694037407637,0.096477210521698,-0.0057303649373353]],[[0.12019787728786,-0.0066222562454641,0.057008907198906],[0.025910532101989,0.048446536064148,-0.013153396546841],[-0.2074878513813,-0.037778679281473,-0.064622104167938]],[[-0.022732717916369,-0.089229464530945,-0.01609213091433],[-0.076525397598743,0.10216323286295,-0.07139465212822],[0.21134501695633,0.056166559457779,0.0036767462734133]],[[-0.016191601753235,0.090656623244286,-0.0068604038096964],[-0.024223010987043,-0.028842195868492,0.013504800386727],[-0.088449731469154,0.023711504414678,-0.034067869186401]],[[0.060393430292606,0.15562734007835,0.0056543266400695],[0.14896062016487,0.0041384622454643,-0.04289723187685],[-0.073815621435642,-0.059840139001608,0.068555757403374]],[[-0.023468742147088,-0.16485847532749,-0.08838851749897],[-0.03283328935504,-0.053161956369877,0.0090357698500156],[0.026781108230352,-0.077483743429184,0.19852095842361]],[[-0.32775631546974,0.0033207361120731,-0.0071527282707393],[-0.010892716236413,-0.12158519029617,-0.026700370013714],[0.12355545908213,0.023324633017182,-0.025583988055587]],[[-0.22928413748741,-0.094572745263577,0.026158209890127],[0.00071853585541248,0.16814798116684,0.028688227757812],[0.13444526493549,-0.063519611954689,0.062313891947269]],[[-0.11536451429129,0.074037350714207,0.0011526494054124],[0.051969487220049,0.14416702091694,0.056957196444273],[0.0073813172057271,0.055953092873096,-0.0097352098673582]],[[-0.10130007565022,-0.13022741675377,-0.020935086533427],[0.20208966732025,0.18741676211357,0.022579541429877],[0.20256236195564,-0.090417250990868,0.038644697517157]],[[-0.062418580055237,0.0031956995371729,0.033501420170069],[0.029617989435792,-0.05445995926857,0.039702463895082],[-0.064148657023907,0.018797980621457,-0.099834613502026]],[[-0.13039906322956,-0.1265444457531,-0.22868303954601],[0.18727548420429,0.059512406587601,0.01757525652647],[-0.230200111866,-0.014778891578317,-0.017835387960076]],[[0.043217569589615,0.0026028531137854,-0.0033449896145612],[-0.26401761174202,-0.068305850028992,-0.10274839401245],[0.30102288722992,0.091758966445923,-0.016638008877635]],[[0.21334244310856,-0.037654057145119,-0.12200891971588],[0.14725326001644,0.052143260836601,-0.13232314586639],[0.053781222552061,0.021795937791467,-0.041728172451258]],[[-0.059344403445721,0.08642503619194,0.0064226649701595],[0.045311123132706,0.057165771722794,-0.045251689851284],[-0.046600837260485,0.021522279828787,-0.16685289144516]],[[-0.1158956438303,-0.057949379086494,0.066748663783073],[-0.028170453384519,0.11335229128599,-0.014058431610465],[0.015044093132019,-0.069296911358833,-0.048139281570911]],[[-0.19690346717834,-0.050414834171534,-0.10494688153267],[0.048207931220531,-0.035373188555241,0.088836580514908],[-0.039224948734045,-0.13237321376801,0.078842744231224]],[[0.043014992028475,0.063478656113148,-0.040308125317097],[-0.023852942511439,-0.079020500183105,0.034997384995222],[0.024867884814739,-0.024962220340967,-0.18266023695469]],[[-0.10812924802303,0.01152899581939,-0.087835937738419],[0.061596110463142,-0.069331109523773,-0.028457364067435],[0.26941958069801,0.017966290935874,-0.14575576782227]],[[0.043164286762476,0.025740368291736,0.033459231257439],[0.021726289764047,-0.068565055727959,-0.05379631370306],[-0.097770944237709,-0.12151132524014,0.19026125967503]],[[-0.092171989381313,-0.024167632684112,-0.13874444365501],[0.11214193701744,-0.1411047577858,-0.0045349230058491],[0.0014411647571251,0.073532298207283,0.032234761863947]],[[0.035125467926264,0.09731437265873,-0.037456944584846],[-0.075420401990414,-0.19368140399456,-0.17006333172321],[-0.11261943727732,0.049849808216095,-0.019057299941778]],[[0.1583691239357,-0.046460509300232,0.025535818189383],[0.093710027635098,0.064611569046974,-0.065146081149578],[0.13947314023972,0.075583584606647,0.050174120813608]],[[-0.078231498599052,-0.029129333794117,-0.030657235532999],[0.013450267724693,0.064163245260715,0.034152198582888],[-0.086236089468002,0.024529673159122,-0.077987626194954]],[[0.28213307261467,-0.011754115112126,-0.052949126809835],[-0.013159385882318,-0.049825116991997,-0.13630042970181],[0.15118308365345,0.05199758708477,-0.0047941445372999]],[[0.028496857732534,0.057882983237505,0.069769188761711],[0.01143876183778,0.011056762188673,-0.18551854789257],[-0.060045704245567,-0.073884792625904,-0.13602086901665]],[[0.11463685333729,0.01576772890985,0.095530182123184],[0.022844208404422,0.0081691397354007,-0.05566556379199],[-0.059874445199966,0.025481879711151,0.026903294026852]],[[0.042182743549347,-0.017496608197689,0.080633439123631],[-0.07517683506012,0.0067343497648835,-0.20008504390717],[0.13911725580692,0.071706414222717,-0.10658483952284]],[[-0.28671610355377,0.11400627344847,-0.098476104438305],[0.069241374731064,0.08691792935133,0.034324210137129],[-0.057100236415863,0.0030804052948952,-0.019366541877389]],[[-0.055156238377094,-0.22466145455837,-0.10028303414583],[0.043983191251755,0.037873417139053,-0.023245459422469],[0.028864670544863,0.054940205067396,0.026202255859971]],[[-0.040247824043036,-0.09170938283205,0.077390551567078],[0.018370905891061,-0.01331751793623,-0.16567520797253],[-0.026247510686517,0.038926098495722,-0.04668028280139]],[[-0.071202404797077,0.10680304467678,0.063236527144909],[0.045474004000425,0.068900316953659,0.11523359268904],[0.07004076987505,-0.01175934355706,0.06964273005724]],[[-0.12218945473433,-0.087510772049427,-0.077453099191189],[-0.087675400078297,-0.14313988387585,0.07230669260025],[-0.012089415453374,-0.039066571742296,0.0007981623057276]],[[0.10080035030842,-0.038877688348293,-0.13076005876064],[-0.013861651532352,0.031125664710999,0.072257600724697],[-0.05474142357707,-0.017443595454097,-0.10928782820702]],[[0.055286671966314,-0.013183552771807,0.016316752880812],[-0.17887385189533,-0.067457012832165,0.030804393813014],[-0.019287932664156,0.0141735766083,0.07134423404932]],[[0.13653233647346,-0.09123133122921,0.10226190090179],[-0.12725844979286,-0.026981681585312,-0.08824684470892],[-0.20823626220226,-0.10221550613642,-0.14027185738087]],[[-0.018575707450509,0.01188154052943,-0.08914652466774],[0.014097922481596,-0.16292496025562,-0.047194361686707],[-0.034170068800449,0.053102593868971,-0.04303415119648]]],[[[0.07992310076952,-0.065382361412048,-0.18397249281406],[0.081551007926464,-0.088152907788754,-0.11906684935093],[0.059551533311605,-0.055234402418137,-0.026468632742763]],[[-0.044205021113157,-0.2538069486618,-0.21185760200024],[0.025505496188998,-0.085093386471272,-0.040633425116539],[0.0098399240523577,-0.13609272241592,-0.043113879859447]],[[-0.074078887701035,-0.0014640025328845,0.016601303592324],[-0.017679003998637,-0.063363440334797,-0.13105437159538],[-0.034936830401421,-0.026933215558529,-0.14774334430695]],[[0.14938613772392,0.021642351523042,-0.042735062539577],[-0.02475549466908,0.063704818487167,0.01603183709085],[-0.076780132949352,-0.053583204746246,0.2156166434288]],[[0.027164671570063,0.017630282789469,0.082695104181767],[0.00070222851354629,-0.02808516100049,0.024002891033888],[0.069998674094677,-0.054897774010897,-0.13006398081779]],[[-0.17452079057693,-0.088730990886688,-0.008734536357224],[-0.045586325228214,0.068424567580223,-0.014361313544214],[-0.0067603210918605,-0.13044261932373,-0.0389014929533]],[[0.091709434986115,0.031238060444593,-0.028369415551424],[0.072932317852974,0.070416264235973,0.13688540458679],[-0.16350749135017,0.052877645939589,0.03396513313055]],[[0.10226605087519,-0.072877883911133,0.1410951167345],[0.039377957582474,0.12613469362259,0.0082578184083104],[-0.24405232071877,0.051147442311049,0.15586978197098]],[[-0.070731021463871,0.018499063327909,-0.079996980726719],[-0.03384768217802,-0.035944763571024,0.04433549195528],[-0.19228400290012,0.039447754621506,0.0025951229035854]],[[-0.018642067909241,-0.093604892492294,-0.050014670938253],[-0.0026521205436438,-0.037080023437738,0.056057315319777],[0.045258585363626,-0.064902506768703,-0.023687388747931]],[[0.031233176589012,0.059422712773085,0.082057505846024],[0.101572021842,0.080496497452259,0.00078613823279738],[-0.1584843993187,0.014192615635693,-0.13712121546268]],[[-0.16401429474354,-0.018423797562718,0.0059075467288494],[-0.035873681306839,-0.13542449474335,-0.093526914715767],[0.062049351632595,0.061891999095678,-0.011037792079151]],[[0.1894816160202,0.017329955473542,0.031835958361626],[-0.00023492722539231,0.0096916425973177,-0.087647646665573],[-0.076572872698307,0.0092228716239333,-0.11951939016581]],[[0.12530720233917,0.015578546561301,-0.029505351558328],[-0.048433024436235,-0.0021673261653632,-0.039204381406307],[-0.028843669220805,-0.099157817661762,-0.03769164904952]],[[-0.0026729602832347,-0.026940546929836,0.059369157999754],[-0.045959752053022,-0.15189930796623,-0.031607381999493],[0.081696815788746,0.075190231204033,-0.10181172937155]],[[0.04801956936717,0.069305390119553,0.0070612230338156],[-0.017098058015108,0.015773974359035,-0.051955070346594],[-0.07604006677866,0.021588979288936,-0.029343428090215]],[[-0.0056891455315053,0.014571417123079,0.0035236678086221],[0.038463916629553,0.10543312877417,0.043340656906366],[-0.02497767470777,-0.10889731347561,-0.0079907421022654]],[[0.0087357638403773,-0.011859197169542,0.17486993968487],[0.025364778935909,-0.011037591844797,-0.13999679684639],[-0.018495723605156,-0.068066693842411,-0.047703891992569]],[[0.04766009375453,-0.015917964279652,-0.025114996358752],[-0.15655326843262,0.036558832973242,-0.019282335415483],[0.10775920003653,-0.048134818673134,-0.01016119774431]],[[0.058184452354908,0.012792363762856,-0.077248193323612],[-0.00058386410819367,0.027855539694428,-0.07058446854353],[0.0067655048333108,-0.0035869895946234,-0.041641484946012]],[[0.057242844253778,0.011787051334977,-0.0099281650036573],[-0.09103050082922,-0.11778037250042,-0.098111025989056],[0.071965761482716,0.14360885322094,0.12914779782295]],[[0.054985642433167,0.014396757818758,-0.11413192003965],[-0.10812970995903,0.036082912236452,0.03672906011343],[-0.030541570857167,-0.035549227148294,-0.029882591217756]],[[-0.056504502892494,-0.074475631117821,-0.10252869129181],[0.061510667204857,0.015164982527494,-0.11131856590509],[-0.026717940345407,-0.0683259293437,-0.15621115267277]],[[0.0097691677510738,0.097136691212654,0.032949823886156],[-0.13177692890167,0.14522765576839,0.010335912927985],[-0.043259963393211,-0.08572193980217,-0.015009584836662]],[[-0.087225697934628,0.054409142583609,0.095935203135014],[-0.06815031170845,-0.010142991319299,-0.10305586457253],[0.19529344141483,0.07045155018568,0.132298797369]],[[-0.079207867383957,0.012050223536789,0.018517890945077],[0.17105866968632,-0.094804689288139,-0.054840996861458],[0.0047485926188529,0.032189086079597,-0.01286531612277]],[[-0.042273703962564,-0.015181224793196,-0.025977415964007],[-0.2216715067625,-0.13801595568657,0.052331510931253],[0.012600132264197,-0.0082596456632018,-0.13040278851986]],[[0.011445389129221,0.0028336497489363,0.18555444478989],[-0.16604909300804,0.1009304150939,0.018764309585094],[-0.014808800071478,0.037248779088259,0.14174522459507]],[[0.044165719300508,-0.10183159261942,-0.30668932199478],[-0.0014826662372798,-0.041341982781887,0.047548990696669],[0.049598798155785,0.13647116720676,0.024061486124992]],[[0.12344522029161,0.11656507104635,-0.0052760276012123],[-0.0040431404486299,0.054129455238581,0.073157593607903],[-0.010534595698118,0.01226912252605,-0.0043212859891355]],[[0.046036504209042,0.035856522619724,0.056116282939911],[0.00070916413096711,-0.036801651120186,0.10597479343414],[0.0030700254719704,0.075847454369068,0.052176997065544]],[[-0.029396960511804,0.15422882139683,0.12211465835571],[-0.03484870120883,0.047352038323879,-0.034620072692633],[0.022641589865088,-0.041911449283361,0.11785889416933]],[[0.050449971109629,0.048282880336046,0.064940117299557],[-0.045816868543625,-0.017188563942909,-0.16857805848122],[0.076200015842915,0.0032937522046268,0.0035060541704297]],[[0.087365746498108,0.049571458250284,-0.115717202425],[-0.05624545738101,0.022693417966366,-0.079921379685402],[-0.05403109267354,-0.035416517406702,-0.044624723494053]],[[-0.068911179900169,-0.12134109437466,0.0027204542420805],[0.0031609123107046,0.072066128253937,-0.070836938917637],[0.0079878745600581,0.0082896053791046,-0.16636507213116]],[[-0.035138588398695,0.019920635968447,-0.014845653437078],[0.111931681633,0.015112780034542,-0.14496022462845],[-0.074602819979191,-0.015693672001362,0.1270497739315]],[[0.077164329588413,-0.13782101869583,-0.060704611241817],[0.014949990436435,0.10158439725637,-0.031086741015315],[-0.058360949158669,0.057609476149082,0.0582265406847]],[[0.098942525684834,-0.0085182366892695,-0.031633552163839],[0.046623274683952,-0.034927137196064,-0.027110712602735],[-0.11783137917519,-0.071708150207996,0.0026367523241788]],[[-0.014380392618477,-0.0041065821424127,0.054363779723644],[-0.16536419093609,-0.13722138106823,-0.029686011373997],[0.11567353457212,0.069642722606659,-0.091825284063816]],[[-0.077788136899471,-0.016981387510896,0.014878291636705],[-0.17134481668472,0.025259535759687,0.062111526727676],[-0.24151332676411,-0.26858565211296,-0.14912536740303]],[[-0.0047184978611767,-0.024963075295091,0.0018921215087175],[-0.0030058356933296,-0.021559631451964,-0.011572471819818],[-0.024078037589788,-0.061574902385473,-0.068873532116413]],[[-0.018257848918438,-0.049166038632393,-0.015018301084638],[-0.023921053856611,-0.058834861963987,-0.095240660011768],[-0.14391699433327,-0.014478225260973,-0.036798749119043]],[[0.12300462275743,0.14440575242043,-0.02345309779048],[-0.18255786597729,-0.0454336181283,0.10917335003614],[-0.11883755028248,0.026682609692216,-0.053147345781326]],[[-0.018843628466129,0.07167225331068,-0.072248466312885],[0.045467961579561,0.013341134414077,0.12113751471043],[-0.096990838646889,0.022883532568812,0.063622944056988]],[[0.15437635779381,0.099612064659595,-0.12324508279562],[0.060331266373396,-0.0055611450225115,-0.090290561318398],[0.13917252421379,0.029035773128271,-0.035844713449478]],[[0.040590740740299,0.041557151824236,-0.0077719590626657],[-0.072717726230621,-0.0043430477380753,-0.090059891343117],[-0.1420289427042,-0.014194516465068,0.054894298315048]],[[-0.019270990043879,-0.0036705490201712,-0.014618995599449],[0.10311337560415,0.028154844418168,-0.036051493138075],[0.0086887450888753,-0.028891732916236,-0.016558554023504]],[[-0.00032885407563299,-0.063083559274673,0.19248513877392],[0.056202229112387,0.054240077733994,0.01493847835809],[-0.026020534336567,-0.0057527394965291,-0.15187713503838]],[[-0.056407082825899,-0.023938236758113,0.0029182487633079],[0.082975924015045,-0.10994916409254,-0.090646460652351],[0.064927794039249,0.18634247779846,-0.106844432652]],[[0.1197072789073,-0.088958434760571,0.06310310959816],[0.13478927314281,-0.022781589999795,-0.13707500696182],[0.029518926516175,0.12335336208344,0.029349077492952]],[[-0.050384342670441,0.12336431443691,0.033378142863512],[-0.2415808737278,0.030357833951712,-0.0070530832745135],[-0.17244827747345,0.036520063877106,-0.026829041540623]],[[0.052020251750946,0.10330350697041,0.038514081388712],[-0.034478563815355,-0.049563225358725,0.055625353008509],[0.086756467819214,0.087759867310524,-0.12862409651279]],[[0.075238466262817,-0.079492039978504,-0.080387182533741],[0.0089044785127044,-0.050007503479719,0.10554479062557],[0.14351335167885,-0.036740556359291,-0.012140867300332]],[[0.091077171266079,-0.066403478384018,0.13067592680454],[0.028885887935758,0.058453164994717,0.037599321454763],[0.07453228533268,-0.10460246354342,0.12318402528763]],[[0.10561164468527,-0.040949765592813,-0.094861045479774],[-0.045435041189194,0.041170138865709,-0.02030660957098],[-0.13750669360161,-0.14240159094334,0.14514833688736]],[[0.036787316203117,0.013109942898154,0.05513959005475],[-0.11839483678341,-0.023823335766792,-0.12163260579109],[-0.14718014001846,-0.15411850810051,0.043402656912804]],[[-0.081136010587215,-0.11251268535852,-0.051159784197807],[-0.00084445835091174,-0.048234168440104,-0.16322688758373],[0.015365938656032,0.032697796821594,0.027416277676821]],[[-0.028520930558443,-0.11481361836195,0.094498664140701],[-0.054432302713394,-0.027498381212354,-0.007581579964608],[0.074273765087128,0.092261478304863,0.057215433567762]],[[0.044939041137695,-0.0089740185067058,0.07428915053606],[0.0089168986305594,0.017043169587851,0.12764701247215],[0.018562737852335,0.0038604119326919,0.16247645020485]],[[0.037356670945883,0.0077625755220652,-0.04717430472374],[-0.10378007590771,-0.0080084083601832,0.10401431471109],[0.039347760379314,-0.069733358919621,-0.14696937799454]],[[-0.059929050505161,0.063588075339794,-0.067417144775391],[-0.061486519873142,0.039712332189083,0.045067012310028],[-0.038131259381771,-0.036662545055151,-0.023027362301946]],[[-0.096858128905296,0.071876689791679,0.073489643633366],[-0.041472651064396,0.019326351583004,-0.094072721898556],[-0.014843338169158,0.095783703029156,0.06084293499589]],[[-0.039159510284662,0.024740083143115,0.12870690226555],[0.13526584208012,0.016273302957416,-0.059221409261227],[-0.11778365075588,-0.082071103155613,-0.099569320678711]],[[0.0099543929100037,-0.0018251070287079,0.035452377051115],[-0.073770120739937,0.054005552083254,0.041366785764694],[0.024693524464965,0.098189607262611,0.02564544044435]]],[[[-0.032616078853607,-0.0059352987445891,0.0032822685316205],[0.083413906395435,0.032050471752882,0.026338703930378],[-0.011415751650929,0.028330495581031,0.023791879415512]],[[0.026225278154016,0.010783760808408,-0.048023201525211],[0.054202169179916,0.067042477428913,0.054474424570799],[-0.0029678675346076,-0.0041280891746283,0.033126141875982]],[[0.057150267064571,0.12103890627623,0.079729162156582],[-0.010288992896676,0.095618478953838,0.065394975244999],[0.035756878554821,0.075433045625687,0.030682362616062]],[[0.049367155879736,0.031986527144909,0.12774689495564],[0.06294072419405,0.082404337823391,0.079419322311878],[0.031587991863489,0.070211745798588,0.049220789223909]],[[-0.028040969744325,-0.01447029132396,-0.00071592658059672],[0.06278121471405,0.14971995353699,0.042141273617744],[-0.11977833509445,-0.21709096431732,-0.11657294631004]],[[0.041703525930643,0.12393014878035,0.0042356615886092],[-0.027341041713953,-0.19232453405857,-0.034002494066954],[0.049447618424892,-0.048169389367104,-0.028245551511645]],[[0.0053365267813206,0.025977183133364,-0.053910620510578],[0.011583662591875,0.11328937858343,-0.010662063024938],[0.079564213752747,0.047174274921417,-0.044722985476255]],[[0.060494408011436,0.087734930217266,0.12231054157019],[0.029220405966043,-0.012423216365278,0.10028332471848],[-0.22819189727306,-0.18907964229584,-0.22502195835114]],[[0.089286558330059,0.091705471277237,-0.10287749767303],[-0.052691973745823,-0.053331576287746,-0.13854523003101],[0.037205599248409,0.067454889416695,0.11729410290718]],[[0.049489837139845,0.046219773590565,0.016276653856039],[-0.11253535747528,-0.018178297206759,0.052912294864655],[0.017999794334173,0.029709717258811,-0.062274962663651]],[[-0.017365489155054,0.06036439538002,-0.06114799156785],[0.046500597149134,0.08303988724947,0.032864104956388],[0.083310343325138,0.063607633113861,-0.021069716662169]],[[-0.0046552354469895,0.054444119334221,0.16931265592575],[-0.037027858197689,-0.059041801840067,0.10897740721703],[0.041214879602194,-0.034962840378284,0.11334732919931]],[[-0.020153658464551,-0.074577257037163,-0.00035465153632686],[-0.051080867648125,0.020001523196697,0.033527720719576],[0.013240539468825,-0.021176841109991,-0.0078056622296572]],[[0.13345627486706,0.037339210510254,0.078126847743988],[-0.054202329367399,-0.1392639875412,-0.027511222288013],[0.018642785027623,-0.064228847622871,-0.020510634407401]],[[-0.029476506635547,0.0080873090773821,-0.095536358654499],[0.04859484732151,0.039561606943607,-0.055290170013905],[0.066375277936459,0.05096909403801,0.065994381904602]],[[-0.040951728820801,0.016028808429837,-0.029866512864828],[0.013893284834921,0.1854792535305,0.12242440879345],[-0.032965689897537,0.0056996890343726,-0.15478003025055]],[[-0.045887485146523,-0.15762507915497,-0.046173017472029],[-0.040234807878733,-0.027037492021918,-0.032334662973881],[0.02783483825624,0.004328291863203,-0.076451972126961]],[[-0.019991317763925,-0.046318702399731,-0.066999271512032],[-0.0018580020405352,-0.034048490226269,0.037043422460556],[0.046584285795689,0.080755241215229,-0.11202733963728]],[[-0.080714300274849,-0.011049738153815,0.093333795666695],[-0.13490362465382,0.051031727343798,-0.064026191830635],[-0.042856216430664,0.0030597422737628,0.076845265924931]],[[-0.091178096830845,0.0074212956242263,-0.0057087726891041],[0.071111142635345,-0.037850946187973,-0.03243201598525],[0.043247904628515,-0.00017846275295597,0.036315079778433]],[[-0.016855731606483,0.047136925160885,-0.14276118576527],[-0.11138238757849,0.032830517739058,-0.083988316357136],[-0.029714826494455,-0.027397720143199,0.05768084153533]],[[0.016215700656176,-0.017437240108848,-0.021311780437827],[0.013862246647477,0.057391792535782,0.050871107727289],[-0.019664129242301,0.041349180042744,0.025824442505836]],[[0.016072429716587,-0.0069669024087489,0.058769345283508],[0.0017344461521134,0.065222300589085,0.10979843884706],[-0.0038606661837548,0.015889421105385,-0.027722584083676]],[[-0.0011066346196458,0.094637781381607,-0.013664943166077],[0.055680453777313,-0.00028545060195029,-0.085871696472168],[-0.070303618907928,0.043284479528666,0.027432465925813]],[[-0.0020182053558528,0.02495189756155,-0.009880899451673],[-0.042471092194319,-0.022681506350636,-0.016998650506139],[-0.021613521501422,-0.057159725576639,0.023022625595331]],[[-0.028507560491562,0.006074988283217,0.054992463439703],[0.0048052691854537,0.13186444342136,0.095797695219517],[0.029430489987135,0.015985148027539,0.037766832858324]],[[-0.014596491120756,-0.075442925095558,-0.089926265180111],[-0.13029299676418,-0.13975618779659,0.036435917019844],[0.097014188766479,0.091192081570625,-0.014378229156137]],[[-0.012132585979998,0.063104510307312,0.072537757456303],[0.067746981978416,0.083494938910007,0.073793657124043],[0.011225898750126,0.033614195883274,0.19335353374481]],[[-0.038241859525442,0.013343572616577,0.094808645546436],[0.15947514772415,0.11906100809574,0.0021366477012634],[-0.054574579000473,-0.019057415425777,0.039604160934687]],[[0.055363293737173,-0.030576454475522,0.093635365366936],[0.045142278075218,0.0186866838485,-0.017507890239358],[0.062229946255684,-0.0014351733261719,0.016692897304893]],[[0.028948817402124,0.035803593695164,-0.018638821318746],[-0.020439315587282,-0.0085076782852411,-0.064608216285706],[0.075283795595169,0.091323435306549,0.12970133125782]],[[-0.031046487390995,-0.0049676448106766,-0.014845061115921],[0.019842408597469,0.011638064868748,0.010340862907469],[0.0040256353095174,0.0020492714829743,-0.066484853625298]],[[0.061510898172855,0.0021932474337518,0.090408071875572],[-0.047061678022146,-0.03690217807889,0.10183343291283],[0.080036967992783,-0.044726338237524,-0.059141635894775]],[[-0.035567820072174,0.0091717271134257,-0.012062094174325],[-0.005651340354234,-0.12465277314186,0.081787027418613],[0.076845400035381,-0.025388974696398,-0.048497557640076]],[[0.014952072873712,0.042793933302164,0.092446282505989],[-0.040768940001726,-0.025903280824423,-0.011728866025805],[0.11693073809147,-0.029904836788774,0.0023623576853424]],[[-0.16199864447117,-0.050898585468531,0.019824607297778],[-0.0087659442797303,-0.0063073094934225,0.14735086262226],[-0.00016930224956013,-0.027809640392661,0.10672996938229]],[[0.045859485864639,0.00385358533822,0.15218186378479],[-0.054348018020391,-0.070179432630539,0.065195605158806],[0.12964062392712,0.063053652644157,0.096585899591446]],[[0.021779770031571,-0.033677965402603,-0.010682445019484],[-0.0080814380198717,0.054933350533247,0.062745809555054],[0.0017527901800349,0.095553651452065,0.15418595075607]],[[0.057284235954285,0.0098085347563028,0.089317806065083],[-0.011566003784537,0.035962909460068,-0.021599214524031],[-0.047319825738668,-0.012555874884129,0.0065994579344988]],[[-0.0081608286127448,-0.048233039677143,0.024498403072357],[0.17528396844864,0.051177464425564,-0.090548746287823],[-0.0023227706551552,0.012738558463752,0.033495515584946]],[[0.095789603888988,0.047197088599205,0.040776297450066],[0.11006958782673,0.061095219105482,0.060039281845093],[0.022140115499496,-0.0064437598921359,0.19311638176441]],[[0.011172127909958,0.034602023661137,0.040319364517927],[-0.0094204340130091,0.034348476678133,0.030691236257553],[0.020952736958861,0.088265389204025,-0.0019770029466599]],[[-0.063624553382397,0.033797830343246,-0.13915723562241],[-0.071600288152695,-0.0079050390049815,0.043775156140327],[0.03444642201066,0.07846362888813,-0.038001745939255]],[[0.069695584475994,0.14616101980209,-0.070315256714821],[0.036114804446697,0.049063865095377,-0.038286373019218],[0.023559641093016,-0.0063274828717113,-0.041957139968872]],[[-0.17713034152985,-0.097075276076794,-0.04752753674984],[0.073573902249336,-0.09936860948801,0.00049867399502546],[0.08143112808466,0.075609214603901,0.011370535939932]],[[-0.069087162613869,0.17126694321632,0.054685920476913],[0.041778922080994,0.065245911478996,-0.12420233339071],[-0.10608247667551,-0.07402279227972,-0.037475757300854]],[[0.01120521966368,0.046447046101093,0.084138832986355],[0.028669431805611,-0.043384857475758,-0.062975361943245],[-0.033586572855711,-0.0036467595491558,0.043138980865479]],[[-0.12030656635761,0.14250691235065,0.081367157399654],[0.030841613188386,-0.13696253299713,-0.095104947686195],[0.017316302284598,0.091846771538258,0.062666140496731]],[[-0.076791472733021,-0.0096279019489884,0.0669831559062],[-0.035170517861843,-0.02306255698204,0.098983719944954],[0.048754032701254,0.069379329681396,-0.14836871623993]],[[0.10693610459566,-0.024297591298819,-0.056070931255817],[0.060335632413626,0.26202806830406,0.16384127736092],[-0.044842172414064,0.04362853243947,-0.11419980227947]],[[0.14630843698978,-0.024711159989238,0.030485894531012],[-0.018003545701504,0.012582091614604,-0.022630646824837],[0.033987928181887,0.079678349196911,0.10279273241758]],[[-0.02572195418179,0.083297528326511,0.095799572765827],[0.074139669537544,0.029001636430621,-0.0099705131724477],[0.065455906093121,-0.079707629978657,0.092986792325974]],[[0.11596143990755,-0.0061564520001411,0.11027248203754],[0.022218117490411,-0.098139524459839,-0.02580557577312],[0.11155346781015,0.082796916365623,0.0094136456027627]],[[-0.028849005699158,0.022418912500143,0.05188961327076],[-0.011174655519426,0.048800610005856,-0.010761320590973],[-0.045246928930283,0.085649989545345,0.087582930922508]],[[0.087861642241478,-0.069376341998577,0.03907622769475],[-0.0099042830988765,-0.049458373337984,0.095085248351097],[0.041296750307083,0.031932935118675,0.052227079868317]],[[0.077893786132336,-0.01413568854332,0.064841069281101],[0.14931181073189,0.03832333907485,0.047638639807701],[-0.092934742569923,0.075459942221642,0.007877865806222]],[[-0.056479629129171,0.015267629176378,-0.1269822716713],[-0.14575283229351,0.030447399243712,-0.0349464379251],[0.033195588737726,0.10496396571398,-0.10116139054298]],[[0.074250377714634,0.010497431270778,0.018462806940079],[0.052372898906469,0.066205330193043,0.12407969683409],[0.011941529810429,0.038498245179653,-0.18133215606213]],[[-0.0072204968892038,-0.03995605558157,0.1238718777895],[-0.031954318284988,0.060653202235699,0.024212958291173],[-0.1075569242239,-0.045058246701956,-0.038247417658567]],[[-0.034861989319324,0.041522305458784,0.066008761525154],[-0.063661985099316,0.061801485717297,-0.075898319482803],[0.15111815929413,-0.017509303987026,-0.15218557417393]],[[-0.020830610767007,0.084481619298458,0.0073359510861337],[-0.0046983300708234,-0.014120754785836,-0.051665335893631],[0.090544894337654,-0.021857475861907,-0.22016848623753]],[[0.006367152556777,0.13340167701244,0.065693967044353],[0.054466307163239,0.091475516557693,0.11135952174664],[0.059911474585533,0.069229483604431,0.12519909441471]],[[-0.044253259897232,0.03656817600131,0.060257244855165],[0.13642740249634,0.034170914441347,0.0062005720101297],[0.0019100225763395,0.016387488692999,0.059909597039223]],[[0.017077503725886,0.029444688931108,0.011257631704211],[0.0094327237457037,-0.053096376359463,-0.014830274507403],[-0.11930690705776,-0.0046921065077186,0.0038523555267602]]],[[[0.036746758967638,0.080949991941452,-0.019381133839488],[-0.008946530520916,-0.0871547088027,-0.025652254000306],[0.032745014876127,-0.012936681509018,0.089379318058491]],[[-0.070288076996803,-0.20170216262341,-0.14346849918365],[0.003104176139459,0.016205726191401,-0.021867990493774],[0.016150128096342,0.020392475649714,0.036927476525307]],[[-0.099139906466007,-0.13463750481606,-0.03873997926712],[0.027737531810999,-0.031855773180723,0.0067413882352412],[0.021744458004832,-0.048908367753029,0.067016333341599]],[[-0.050624165683985,-0.028069330379367,-0.10752596706152],[0.038399796932936,-0.018709126859903,-0.13457453250885],[0.11151722818613,0.06093705445528,0.03137805685401]],[[-0.012675996869802,-0.082401186227798,-0.095646485686302],[-0.076124347746372,-0.22008390724659,-0.22134175896645],[0.056147549301386,0.0097749521955848,0.032865289598703]],[[0.05478697270155,0.029192583635449,-0.0071214362978935],[-0.020241865888238,-0.0052377730607986,-0.060413807630539],[0.12214371562004,-0.0047508627176285,-0.010836130008101]],[[-0.074320204555988,-0.07200625538826,-0.13750505447388],[0.032058443874121,0.029980907216668,-0.026751691475511],[-0.0012082014000043,0.038234528154135,0.12510454654694]],[[-0.038851484656334,0.0065364483743906,0.13534761965275],[-0.085580535233021,-0.02457676269114,-0.017881726846099],[0.13958923518658,0.090952292084694,0.061019998043776]],[[-0.015694195404649,0.063406005501747,-0.13192129135132],[0.02085543051362,-0.031048329547048,0.039760813117027],[0.017261013388634,0.046552121639252,-0.027574775740504]],[[0.023875242099166,-0.13811063766479,-0.14206679165363],[0.046225037425756,-0.027087830007076,-0.025930717587471],[0.14247281849384,0.00050065043615177,-0.022644814103842]],[[0.11217918992043,-0.050023831427097,0.10526106506586],[0.078074045479298,0.0029143118299544,0.038927122950554],[0.0028600820805877,0.063185662031174,0.13371504843235]],[[0.038092512637377,0.053693812340498,0.027175888419151],[0.016670564189553,-0.027528859674931,-0.13770447671413],[-0.092619717121124,-0.034716419875622,0.018334407359362]],[[-0.043448004871607,-0.074979327619076,0.021681418642402],[0.005583880469203,0.094636179506779,-0.023107843473554],[0.074770167469978,0.038844995200634,-0.014426476322114]],[[0.083217389881611,0.026725120842457,0.038517139852047],[0.030820870772004,0.01079672947526,0.11974088847637],[-0.094799652695656,-0.040087126195431,-0.00036815713974647]],[[0.0013520875945687,-0.032442182302475,-0.1053127348423],[0.063721187412739,-0.021686557680368,-0.17391909658909],[0.045734103769064,0.008832280524075,0.021049216389656]],[[-0.054336316883564,-0.098888024687767,-0.20258359611034],[-0.084593117237091,-0.14329555630684,-0.11832752078772],[0.020017480477691,0.04422665014863,0.13629451394081]],[[0.0032560254912823,-0.034676186740398,-0.072379365563393],[-0.02991777844727,-0.018395412713289,-0.034851018339396],[0.11476919054985,-0.088132634758949,-0.012153173796833]],[[0.010986481793225,-0.043969336897135,-0.16629856824875],[0.043674852699041,0.023789349943399,0.04284081235528],[-0.030583890154958,0.10781504958868,0.086280040442944]],[[-0.033310104161501,0.008783221244812,0.072461672127247],[-0.0050920993089676,0.035865593701601,0.067452281713486],[-0.0054580443538725,-0.04108065366745,0.055748596787453]],[[-0.079462766647339,-0.14265790581703,-0.043125469237566],[0.020046168938279,-0.01105342246592,-0.095903269946575],[-0.043283876031637,0.056551430374384,-0.014603151939809]],[[-0.026945363730192,0.12997041642666,0.026674585416913],[0.061239376664162,0.093006707727909,0.053593166172504],[-0.0013426002115011,0.059762235730886,0.066458076238632]],[[-0.017148924991488,-0.0089474124833941,-0.028004676103592],[-0.012800257652998,0.031434033066034,0.043789025396109],[-0.078475311398506,-0.017296176403761,-0.03710014000535]],[[-0.072298318147659,-0.086011409759521,-0.032550524920225],[-0.03025939874351,-0.015953497961164,-0.048817068338394],[-0.044904183596373,-0.064266711473465,-0.022552305832505]],[[-0.082368396222591,-0.16775581240654,-0.12494242936373],[-0.080220855772495,0.046419583261013,-0.10296534746885],[-0.11108176410198,-0.1167978271842,-0.047814778983593]],[[0.21563155949116,0.26240825653076,0.26449179649353],[-0.076327867805958,-0.0058704148977995,0.11807080358267],[-0.091473385691643,-0.031475715339184,0.016362091526389]],[[0.048252314329147,-0.12304840236902,-0.034328665584326],[0.05653240904212,-0.083148077130318,-0.048442780971527],[0.06775388866663,-0.032603155821562,0.094599716365337]],[[-0.035500258207321,-0.037499964237213,0.0097524207085371],[0.046238578855991,0.050759620964527,-0.053508691489697],[-0.059704687446356,0.03864873200655,0.08220949023962]],[[0.063686065375805,0.016449416056275,0.01014740858227],[-0.026786776259542,0.0036460282281041,0.11020781844854],[-0.048482105135918,-0.023242585361004,0.02682401239872]],[[0.014153424650431,-0.025899954140186,0.15764631330967],[-0.11899191141129,0.015168393030763,-0.048770997673273],[-0.062805160880089,0.029201231896877,0.040401373058558]],[[-0.05620264261961,-0.042841915041208,-0.041317421942949],[0.053356748074293,0.0070205451920629,-0.028700243681669],[0.01362300477922,0.084633693099022,0.075695097446442]],[[0.051032688468695,-0.020148852840066,0.0012063323520124],[-0.011292528361082,0.028613144531846,0.062053572386503],[-0.10339179635048,-0.10781068354845,-0.086985602974892]],[[0.036920372396708,-0.001543581020087,-0.13125967979431],[0.091147936880589,0.11750198155642,0.016556620597839],[-0.10589502006769,-0.021905638277531,0.10351030528545]],[[-0.040300756692886,-0.077985927462578,0.019590245559812],[0.087390922009945,0.028358280658722,0.087585978209972],[-0.055583816021681,-0.068822674453259,0.025217657908797]],[[0.14079377055168,0.074257001280785,0.1793574988842],[-0.070496313273907,-0.016908438876271,-0.010645871050656],[-0.046009946614504,0.048317115753889,0.0015001625288278]],[[-0.065014123916626,-0.069600455462933,-0.028506072238088],[0.069127559661865,0.0032098647207022,-0.04210851341486],[0.050846323370934,-0.015890711918473,0.06477652490139]],[[0.056708011776209,0.068374171853065,0.13603454828262],[-0.042403355240822,0.003583331592381,0.13380919396877],[-0.1289155036211,-0.1104325056076,0.13911598920822]],[[0.038089975714684,0.11153793334961,0.030831091105938],[-0.029854983091354,0.036522585898638,-0.026591772213578],[0.12770539522171,-0.032370377331972,-0.0073572490364313]],[[-0.072954349219799,-0.11562895029783,0.0072837108746171],[0.063128627836704,0.010312763974071,-0.10038440674543],[-0.030990520492196,-0.00030337052885443,-0.28106060624123]],[[0.034775294363499,0.0021968889050186,-0.073808908462524],[0.0076915477402508,-0.0070212362334132,-0.035145286470652],[-0.031299561262131,-0.025630168616772,-0.071137696504593]],[[0.010299159213901,-0.031334448605776,0.10666581243277],[-0.022254198789597,-0.012070129625499,0.029746240004897],[0.053707305341959,0.089466750621796,0.024088457226753]],[[-0.14547829329967,-0.22050718963146,-0.14722158014774],[0.039930310100317,0.083618506789207,0.029065435752273],[0.020590724423528,0.048289097845554,0.03471776470542]],[[-0.001465251436457,-0.051771964877844,-0.13967382907867],[0.037960961461067,0.015294392593205,0.06716500222683],[-0.0028631743043661,0.042689930647612,-0.048350490629673]],[[-0.081260293722153,-0.11273767799139,-0.0070848427712917],[0.0012082504108548,0.053934007883072,0.026341469958425],[-0.029674537479877,-0.14140832424164,-0.10927804559469]],[[0.061334125697613,0.034888319671154,0.10685073584318],[-0.018645886331797,-0.051139980554581,-0.093345277011395],[0.058179453015327,0.041428100317717,-0.090702280402184]],[[-0.158018425107,-0.090493105351925,-0.26112371683121],[-0.11055880784988,0.13646340370178,-0.0017061149701476],[-0.080206073820591,-0.047309052199125,0.020044285804033]],[[0.077562615275383,0.12023665755987,0.083525098860264],[0.03977657109499,-0.032637428492308,0.085049755871296],[0.0089936479926109,0.022472882643342,0.031882062554359]],[[0.076691292226315,-0.034461986273527,0.0077575831674039],[0.069261394441128,-0.033747833222151,0.079468265175819],[0.0021940846927464,0.016258325427771,0.028809318318963]],[[0.071300454437733,0.11107409745455,0.079875357449055],[0.045923266559839,-0.040437538176775,-0.03345500677824],[-0.022103540599346,-0.13617111742496,-0.15855874121189]],[[0.10554425418377,0.041594434529543,0.13421352207661],[0.093636199831963,-0.035470739006996,0.066641747951508],[0.046662848442793,-0.13406173884869,-0.049388621002436]],[[0.014994761906564,-0.0047065122053027,0.05535027757287],[-0.024742819368839,-0.019770856946707,0.11757548898458],[0.030634766444564,0.040844384580851,-0.11749149113894]],[[-0.074722215533257,0.10049527138472,-0.0048528858460486],[0.021142613142729,-0.058368649333715,0.091405786573887],[-0.068477667868137,0.0060180313885212,0.0849789083004]],[[-0.011129059828818,0.0075891562737525,-0.020089922472835],[-0.0028858841396868,0.016766162589192,-0.10885865241289],[0.082435436546803,0.11017701029778,-0.069113433361053]],[[-0.024193169549108,0.038073875010014,-0.086206786334515],[-0.070314653217793,-0.050464011728764,-0.03563603758812],[-0.032953049987555,-0.0077754375524819,-0.10423472523689]],[[-0.032421674579382,0.075859382748604,-0.033967666327953],[-0.0013746862532571,0.027948345988989,0.16462929546833],[-0.027251871302724,-0.020013261586428,0.045358929783106]],[[0.058396492153406,-0.030786104500294,-0.019278105348349],[0.028643494471908,0.03055177628994,-0.04235764592886],[-0.074050731956959,0.052468344569206,0.0038161328993738]],[[-0.013261844404042,-0.05412844195962,0.093987986445427],[0.054205361753702,-0.069786101579666,-0.041035268455744],[-0.029366271570325,-0.094522953033447,-0.04318679869175]],[[-0.014067495241761,0.022119140252471,0.084309436380863],[0.045629061758518,-0.052984729409218,0.060294706374407],[0.073315545916557,0.15965436398983,0.060964945703745]],[[0.011898728087544,0.03646557405591,-0.10646607726812],[0.063112132251263,0.018258782103658,0.0044053392484784],[0.011948816478252,0.049092397093773,0.076423831284046]],[[0.098630204796791,0.11344759911299,0.13392868638039],[-0.034456457942724,0.11514513939619,0.11677031219006],[-0.012844029814005,-0.10480201244354,-0.13940966129303]],[[-0.27963775396347,-0.12082374840975,0.13571621477604],[0.05009538307786,-0.040130157023668,-0.071974031627178],[0.026513444259763,0.00051377614727244,0.050870701670647]],[[0.12920801341534,0.078377164900303,0.093079075217247],[-0.015604821033776,0.025441674515605,0.015956193208694],[0.008501254953444,0.0074498113244772,0.031179487705231]],[[-0.15981909632683,-0.035181034356356,-0.28445947170258],[-0.046830970793962,-0.036778915673494,-0.035750035196543],[0.035687621682882,-0.19784052670002,-0.047997690737247]],[[0.06936240196228,-0.013844021596014,0.1032425686717],[0.049084197729826,-0.032658908516169,-0.025512317195535],[0.01333892531693,0.06865980476141,0.096898108720779]],[[-0.050098162144423,0.061231922358274,-0.097028806805611],[0.13149529695511,-0.02325894497335,0.13126040995121],[-0.041854966431856,-0.09626654535532,0.0082883005961776]]],[[[-0.12438539415598,-0.11631958931684,-0.12595538794994],[-0.076595768332481,-0.029843458905816,-0.13947927951813],[-0.11749884486198,0.022010764107108,-0.085725866258144]],[[0.076734632253647,0.12824194133282,0.04083001986146],[0.1135289222002,-0.089205615222454,-0.13800889253616],[0.14577892422676,-0.041638728231192,-0.098521813750267]],[[-0.027503201738,-0.0095259742811322,-0.084721155464649],[-0.17954351007938,0.0042131533846259,-0.038293302059174],[-0.17760072648525,-0.080537237226963,0.090380504727364]],[[-0.12602560222149,0.074190102517605,-0.043844368308783],[0.059091474860907,-0.0077142813242972,-0.040160123258829],[0.13576611876488,-0.061961323022842,-0.078547440469265]],[[-0.031512718647718,-0.04128685221076,-0.049044150859118],[-0.10416293144226,-0.010160532779992,0.040073983371258],[-0.096195667982101,0.061430655419827,0.0061706714332104]],[[-0.08346700668335,-0.15120835602283,-0.08064429461956],[0.06112514436245,-0.14043587446213,-0.058811459690332],[0.041511528193951,-0.056471668183804,-0.12281482666731]],[[-0.0086708944290876,0.044783759862185,0.019232615828514],[-0.013892238028347,-0.066037394106388,0.024906734004617],[0.00068499654298648,-0.031662408262491,0.14568649232388]],[[0.069790676236153,0.013768641278148,-0.096812844276428],[0.028372436761856,-0.0030022105202079,-0.0010054181329906],[-0.10097172111273,0.0023645227774978,-0.0032277442514896]],[[0.046125046908855,-0.055671285837889,-0.086687788367271],[0.040002834051847,-0.072579875588417,-0.010207016952336],[0.16212323307991,-0.064851447939873,0.032451394945383]],[[-0.00021505690529011,-0.068115629255772,0.024118395522237],[0.061795528978109,0.070364966988564,0.086594730615616],[0.061501409858465,-0.087469592690468,-0.043110430240631]],[[0.041860729455948,0.047457501292229,0.029372680932283],[-0.079272642731667,0.0069551076740026,0.030789881944656],[-0.096333608031273,0.0072913561016321,-0.047722537070513]],[[0.055922042578459,0.096329972147942,0.1130460575223],[-0.0032832825090736,-0.087477199733257,0.0022565792314708],[0.009789515286684,-0.033791236579418,-0.058313474059105]],[[-0.088609397411346,-0.035894297063351,-0.17010235786438],[0.011680041439831,-0.00091066415188834,-0.030195716768503],[0.067440420389175,-0.036906514316797,0.057514395564795]],[[0.045406118035316,0.025839721783996,-0.12575396895409],[0.042346574366093,0.029059797525406,0.032140083611012],[0.11925016343594,0.0089030284434557,-0.027968527749181]],[[-0.21485470235348,0.18833154439926,-0.049295146018267],[0.20510095357895,0.14183463156223,-0.091441847383976],[-0.067483298480511,0.1977147758007,-0.18845674395561]],[[0.1183872744441,0.0017362905200571,0.25749635696411],[0.046754583716393,-0.14234906435013,0.024395877495408],[-0.14494076371193,-0.22920994460583,0.15241467952728]],[[0.075378015637398,0.10894618928432,-0.056686896830797],[-0.0030924456659704,-0.011261268518865,-0.081322774291039],[0.07488926500082,0.026698099449277,0.049224726855755]],[[0.021613610908389,-0.051646638661623,0.066214442253113],[0.046417493373156,-0.051164351403713,0.014057150110602],[0.14718382060528,-0.045843441039324,-0.16262724995613]],[[0.074695162475109,-0.030725190415978,0.011687065474689],[0.096451349556446,0.040203511714935,-0.10192642360926],[0.00087992061162367,0.069936186075211,0.084628693759441]],[[-0.19987447559834,-0.014678810723126,0.01867282949388],[0.010929584503174,-0.087652981281281,0.072818599641323],[-0.011402527801692,0.033776164054871,0.13072660565376]],[[-0.098000794649124,0.0098730865865946,-0.026974083855748],[-0.011038502678275,0.024340949952602,-0.13817258179188],[0.021661698818207,0.10825189203024,0.10715322941542]],[[-0.036431204527617,0.036994300782681,0.010617971420288],[-0.098673842847347,-0.096529565751553,0.0030951616354287],[0.028978763148189,-0.016533674672246,0.035214696079493]],[[-0.10468994826078,-0.090102426707745,-0.046069193631411],[0.016423057764769,0.15469139814377,0.012904636561871],[-0.28061041235924,-0.016175776720047,0.012204237282276]],[[0.073415674269199,-0.10231679677963,-0.010186506435275],[-0.097767747938633,0.11183522641659,0.020773490890861],[0.095508381724358,0.12294994294643,-0.10099299997091]],[[-0.070888131856918,-0.051449399441481,-0.18030886352062],[-0.029863344505429,0.083228833973408,0.020943962037563],[-0.0076253609731793,0.097020797431469,-0.033444076776505]],[[0.13250322639942,0.057793598622084,-0.080608710646629],[0.02722674049437,0.010836488567293,-0.032507605850697],[0.066357240080833,0.041419889777899,-0.079606004059315]],[[0.23470020294189,0.039860844612122,0.20756295323372],[-0.069659352302551,-0.065400756895542,0.042050182819366],[-0.17398747801781,0.067750193178654,0.082139693200588]],[[-0.018175531178713,-0.033047311007977,-0.10115744173527],[-0.12232992053032,0.037581592798233,-0.08018970489502],[0.053081084042788,0.12704809010029,-0.048182118684053]],[[-0.16760212182999,-0.070025563240051,-0.027247192338109],[-0.071389362215996,0.073504522442818,-0.07710362970829],[0.01449394878,0.066694527864456,0.16175453364849]],[[0.048435162752867,0.027699744328856,0.1021504253149],[0.025520017370582,-0.063296817243099,0.010428273119032],[-0.16028191149235,-0.024048155173659,0.040221322327852]],[[-0.12400325387716,0.030610436573625,-0.018823612481356],[-0.014818181283772,0.083488933742046,-0.16148929297924],[0.11429059505463,0.19968967139721,0.061372987926006]],[[-0.087482206523418,0.015310075134039,0.027029063552618],[-0.05887321010232,0.020321561023593,-0.14558416604996],[0.093878798186779,0.10639394819736,-0.0041802288033068]],[[0.05708734691143,-0.0028690895996988,-0.050964072346687],[0.11242509633303,-0.10380356758833,-0.030891032889485],[-0.044329665601254,-0.045105449855328,0.055743724107742]],[[0.042217180132866,0.02118343859911,-0.0063307876698673],[0.024713199585676,-0.014392301440239,0.067198701202869],[-0.14479397237301,0.017193734645844,0.094468079507351]],[[0.11319743096828,0.12145415693521,0.15605139732361],[0.055603358894587,-0.022977717220783,-0.16060911118984],[-0.082995593547821,0.0023772397544235,-0.00531996646896]],[[0.021801767870784,0.021088574081659,0.05232921615243],[0.059902224689722,0.012713273987174,-0.0040020332671702],[0.014267607592046,-0.029256766662002,-0.072426058351994]],[[0.14860211312771,-0.051306955516338,0.18244342505932],[-0.14900027215481,-0.067723669111729,0.09103662520647],[-0.10656443238258,0.02919639274478,0.036873240023851]],[[0.0039170486852527,-0.0062790741212666,0.031967416405678],[0.018244467675686,0.045816875994205,0.074173152446747],[-0.071905322372913,-0.10401246696711,-0.20796670019627]],[[-0.092100083827972,-0.054087743163109,-0.090000331401825],[0.047477040439844,0.074309982359409,0.039825852960348],[-0.046575788408518,-0.10477468371391,-0.12104572355747]],[[-0.07256892323494,-0.10979083180428,-0.013906544074416],[0.052358288317919,-0.097022734582424,0.04885421320796],[-0.049184251576662,-0.18586081266403,0.037402365356684]],[[-0.14934065937996,0.12477078288794,0.099623665213585],[-0.14266723394394,-0.044371448457241,0.020163860172033],[0.0091254338622093,-0.08344129472971,0.050043765455484]],[[0.010947399772704,-0.014896877110004,0.092756062746048],[0.040687471628189,-0.018273880705237,-0.031300727277994],[-0.19370149075985,-0.075136855244637,-0.033369079232216]],[[0.090522639453411,0.094393819570541,0.06402961909771],[-0.034587226808071,0.038837511092424,-0.0098303249105811],[0.023961117491126,-0.059095628559589,-0.021723413839936]],[[-0.092407122254372,-0.081726685166359,0.18849012255669],[0.060392443090677,0.038380060344934,0.072286620736122],[-0.024540714919567,-0.031968221068382,0.21611948311329]],[[0.16375380754471,0.035855088382959,0.08382211625576],[0.012304979376495,0.012279634363949,0.0070049120113254],[-0.087752960622311,-0.053343627601862,-0.11543273180723]],[[0.28339836001396,-0.041633769869804,-0.042491775006056],[0.16060791909695,-0.12991701066494,0.06215937063098],[0.17794090509415,-0.038006991147995,-0.066512376070023]],[[-0.023398170247674,-0.053328514099121,-0.0021928171627223],[0.06380558013916,-0.066611625254154,-0.10731393843889],[-0.099864773452282,-0.012221782468259,0.13274066150188]],[[0.12179677933455,-0.051429457962513,0.041274912655354],[0.066732451319695,-0.11481377482414,0.023691197857261],[0.078627429902554,-0.03631566464901,0.14777398109436]],[[0.092564485967159,0.072280623018742,0.026163263246417],[-0.11036042124033,0.016789261251688,-0.13674505054951],[-0.034026950597763,0.1443884819746,-0.083289258182049]],[[-0.045023664832115,-0.10195305198431,0.14297631382942],[-0.051470275968313,-0.13291227817535,0.075658604502678],[-0.04364512860775,-0.12102402001619,0.098999671638012]],[[-0.090099848806858,-0.034465871751308,0.008202051743865],[0.0062721492722631,0.062551684677601,0.080212615430355],[-0.011653017252684,0.11761064827442,-0.030995085835457]],[[-0.083872817456722,0.071840718388557,0.10760097205639],[0.030653472989798,-0.004961475264281,0.023865038529038],[-0.12314166873693,-0.086950600147247,-0.016852017492056]],[[-0.018466638401151,0.035202998667955,-0.059342317283154],[0.025836115702987,0.038887772709131,0.0040001827292144],[0.10027705132961,0.041823085397482,0.1107737198472]],[[-0.052680682390928,0.038325842469931,0.10467044264078],[0.019063889980316,0.033350422978401,0.16792118549347],[-0.17557802796364,-0.07374631613493,0.012259243987501]],[[-0.077528789639473,-0.047918688505888,-0.12398473918438],[-0.022772865369916,-0.055586278438568,0.1057418808341],[-0.2078183889389,-0.04447964578867,-0.17264366149902]],[[-0.029400987550616,0.035283327102661,0.023290125653148],[-0.031004333868623,0.095092453062534,0.051279418170452],[-0.13478104770184,0.022965833544731,-0.13752500712872]],[[0.074193477630615,0.016605269163847,0.11388995498419],[0.057074680924416,-0.072893865406513,0.011589822359383],[0.062214951962233,-0.079993315041065,-0.014113070443273]],[[0.033325042575598,0.17153353989124,0.083500616252422],[-0.1116943359375,0.036187574267387,-0.049629688262939],[0.055309742689133,-0.0087665310129523,0.076854459941387]],[[-0.0090910941362381,0.25122517347336,0.005512033123523],[-0.12551441788673,0.11297680437565,-0.020779766142368],[0.0082792490720749,0.10662586241961,0.1174528375268]],[[0.039556853473186,0.14738044142723,-0.022671720013022],[-0.021401492878795,0.090169370174408,0.11437138915062],[-0.048365384340286,0.05717258900404,0.13133317232132]],[[-0.094947464764118,0.066485874354839,-0.078961826860905],[-0.016894020140171,-0.029488516971469,0.023715972900391],[0.17614641785622,0.10113877803087,0.021768756210804]],[[0.072837308049202,0.060843963176012,0.096473023295403],[-0.00099390395916998,0.042642652988434,0.0089276898652315],[-0.014623732306063,0.028281999751925,0.016141150146723]],[[0.029959851875901,-0.011512137018144,0.0053608482703567],[-0.14041386544704,-0.17455348372459,0.00082063768059015],[0.14015744626522,0.084225073456764,0.37777754664421]],[[0.099920615553856,0.03002930060029,0.16236501932144],[-0.0020154947414994,-0.065899297595024,0.03712335973978],[0.075923070311546,-0.089997209608555,-0.12015037983656]]],[[[0.086044386029243,-0.013209414668381,-0.25667005777359],[0.028293376788497,-0.10148852318525,-0.085213743150234],[0.15290105342865,-0.067855469882488,-0.18816953897476]],[[0.070233128964901,-0.013621914200485,0.0044663422740996],[0.010461485944688,-0.030514873564243,-0.11185728013515],[0.090113803744316,0.087796866893768,-0.048152815550566]],[[-0.047821722924709,-0.10014729201794,-0.0052349073812366],[0.050612613558769,-0.023048330098391,-0.057142451405525],[0.022439645603299,-0.062637448310852,-0.11005739122629]],[[0.017620541155338,0.12341357767582,-0.081365562975407],[-0.081701934337616,0.04343818128109,-0.046745289117098],[0.090746238827705,0.032656528055668,-0.021435191854835]],[[0.050075046718121,0.016163427382708,0.062599755823612],[0.091333486139774,0.00034403323661536,-0.0040758759714663],[0.10277783125639,-0.0013072901638225,0.0011073593050241]],[[0.063622444868088,-0.016957171261311,-0.18911342322826],[0.030512511730194,-0.067028775811195,-0.10229143500328],[0.042474333196878,-0.060443010181189,-0.19848799705505]],[[0.060849152505398,-0.11640495061874,-0.023607792332768],[-0.046016000211239,-0.015363638289273,0.02171884290874],[-0.0097261248156428,0.021633187308908,-0.058349676430225]],[[-0.053314939141273,0.0068695638328791,-0.15151374042034],[-0.010603671893477,-0.038594033569098,-0.14067812263966],[-0.040961541235447,-0.052494294941425,-0.11516311019659]],[[0.03763360157609,-0.081715062260628,-0.13402937352657],[0.036594744771719,0.12244664877653,0.00065113930031657],[0.11113464832306,-0.019381541758776,-0.068441964685917]],[[-0.1084860637784,0.058071352541447,-0.069142125546932],[0.03574425727129,0.068367622792721,-0.0031913777347654],[0.045617669820786,0.038484916090965,-0.004469231236726]],[[-0.13929237425327,-0.10617216676474,-0.11254975199699],[0.072218053042889,0.066272504627705,-0.035020641982555],[0.12972609698772,-0.011772056110203,-0.062220562249422]],[[0.023278463631868,-0.00876001175493,0.0070607028901577],[0.071489103138447,0.0027603839989752,0.085936218500137],[0.016885289922357,0.063538990914822,0.12804499268532]],[[-0.052759204059839,-0.1222075521946,-0.0020935819484293],[-0.045104335993528,-0.026546498760581,0.0027909222990274],[0.076451629400253,0.020940605551004,-0.039982680231333]],[[0.0689906924963,-0.071034044027328,0.0093988981097937],[-0.073555201292038,0.022832715883851,0.01156962569803],[-0.076583422720432,-0.12180936336517,0.0085856355726719]],[[-0.039585255086422,0.033335849642754,0.0054467646405101],[0.065638221800327,-0.086357213556767,-0.011562647297978],[-0.025183929130435,-0.076944619417191,0.024352861568332]],[[-0.042608879506588,-0.057347234338522,-0.086951151490211],[0.068314850330353,0.073481820523739,-0.097304224967957],[0.068311102688313,-0.014792538248003,-0.11723820120096]],[[0.15238776803017,0.13902094960213,-0.032281298190355],[0.080213986337185,0.010060331784189,-0.032115664333105],[0.016226291656494,-0.14391401410103,-0.086256049573421]],[[-0.032559737563133,0.0048139225691557,0.042261335998774],[0.049768637865782,0.065620295703411,0.0042760893702507],[0.076263956725597,0.059954471886158,-0.16645216941833]],[[0.039423115551472,-0.046801894903183,0.0043921871110797],[-0.065140441060066,-0.12325070798397,0.017644707113504],[-0.1333917081356,-0.14870570600033,-0.11053432524204]],[[0.088284067809582,-0.017227889969945,-0.17967347800732],[0.099503539502621,0.016312081366777,-0.050882112234831],[-0.062073558568954,0.016217345371842,-0.037657272070646]],[[0.019084509462118,-0.022273827344179,-0.13614976406097],[0.092714220285416,-0.018020186573267,-0.085094131529331],[-0.004080016631633,-0.01276096701622,-0.094612471759319]],[[0.036053705960512,-0.01523532345891,-0.058158628642559],[0.0082578267902136,-0.03830324858427,0.0088706528767943],[0.032073836773634,-0.034805182367563,-0.077661916613579]],[[0.12239188700914,0.030240301042795,-0.0084400856867433],[0.030104361474514,0.029527015984058,-0.13619543612003],[0.00034168316051364,-0.048592697829008,-0.0046125072985888]],[[-0.012969753704965,0.14262627065182,0.1042455136776],[0.0019319767598063,0.017307471483946,0.094947025179863],[0.012609736993909,-0.094446316361427,0.12197547405958]],[[-0.029364012181759,0.085590682923794,-0.023167131468654],[-0.093246214091778,0.11018282175064,0.019945668056607],[-0.1028331592679,0.10986457020044,-0.016143336892128]],[[0.0095933135598898,0.0078073842450976,-0.034928761422634],[0.037560440599918,-0.039399057626724,-0.02452665194869],[-0.017162092030048,0.010177752934396,-0.029345707967877]],[[0.04993387684226,0.049702230840921,-0.13553912937641],[0.044682879000902,0.010834012180567,-0.050055161118507],[0.16308653354645,0.15189854800701,-0.0080263568088412]],[[0.083900161087513,0.0093344710767269,-0.066256560385227],[-0.045200243592262,0.059556812047958,0.0016349466750398],[-0.020043676719069,0.063310272991657,0.1036316677928]],[[-0.04436107724905,-0.0043769963085651,-0.27203780412674],[-0.038210693746805,0.13401672244072,-0.02299696393311],[0.013261037878692,-0.11724202334881,-0.095287278294563]],[[0.0061104316264391,-0.028226666152477,-0.1396332681179],[0.044550441205502,0.015254745259881,-0.026247166097164],[0.062550462782383,0.009980677627027,-0.17336761951447]],[[-0.07136619836092,0.042214475572109,0.066684238612652],[-0.005071250256151,0.02804534137249,0.14928251504898],[-0.10713814198971,-0.10680193454027,0.021929474547505]],[[0.0057164141908288,0.0075253103859723,-0.031532321125269],[0.039466671645641,0.056402117013931,0.020826727151871],[-0.058054655790329,0.014872488565743,-0.045889150351286]],[[0.085807532072067,0.14823804795742,-0.0010902294889092],[-0.006498986389488,0.12589816749096,0.040944460779428],[0.12017917633057,0.11742981523275,0.021131951361895]],[[-0.075667425990105,-0.14546875655651,0.10962028056383],[-0.0075621078722179,-0.069306172430515,0.055568546056747],[-0.0064611528068781,-0.071350529789925,-0.065148331224918]],[[0.01361939497292,-0.025308776646852,0.1034766510129],[0.059152636677027,0.02260554023087,-0.046042241156101],[0.038054596632719,0.03699080273509,-0.0023005220573395]],[[0.026687825098634,0.029012070968747,0.150958314538],[-0.034448511898518,0.045619081705809,0.16396974027157],[-0.13564765453339,0.080401904881001,0.076551787555218]],[[-0.036393534392118,0.041016180068254,0.023393465206027],[-0.085339106619358,-0.0077749975025654,0.05257061868906],[-0.010916514322162,-0.024160102009773,0.087117917835712]],[[-0.02327848598361,0.059865634888411,0.010115404613316],[0.00041762241744436,0.071109712123871,0.12405844777822],[0.0094367517158389,0.062479805201292,0.026786243543029]],[[0.054803531616926,-0.035991828888655,0.060872133821249],[-0.0012929077493027,0.032779280096292,0.0073635741136968],[0.1045288220048,0.028175605461001,0.079417057335377]],[[0.054983485490084,0.022118059918284,-0.0077499314211309],[0.056545563042164,-0.085851550102234,0.0032718242146075],[0.016926662996411,-0.045057766139507,0.0047419662587345]],[[0.11593179404736,-0.045043982565403,-0.015101498924196],[-0.0022710515186191,-0.04217629507184,-0.076393365859985],[0.0096111670136452,-0.061913911253214,-0.073840886354446]],[[0.0097177289426327,0.1033533141017,-0.029446512460709],[0.046346828341484,-0.018502248451114,-0.028792794793844],[0.079788766801357,-0.018321461975574,-0.26950386166573]],[[-0.054913453757763,0.075234495103359,0.0023019521031529],[-0.12305057048798,0.036102440208197,0.0050942585803568],[0.018142133951187,-0.089713327586651,0.18220698833466]],[[0.043050315231085,-0.067023314535618,-0.11300797760487],[0.041331879794598,0.05679477006197,-0.037815574556589],[0.019688995555043,0.039342164993286,-0.0426278822124]],[[-0.070815280079842,-0.10490950196981,-0.0094463871791959],[-0.08986833691597,-0.089218460023403,-0.026835700497031],[-0.061404529958963,-0.079867251217365,-0.0083833038806915]],[[0.10897486656904,-0.025402639061213,0.099244087934494],[0.0555813126266,0.039754819124937,0.14086312055588],[0.013795468956232,0.064155980944633,0.13870175182819]],[[-0.037993706762791,0.039427351206541,-0.025007367134094],[-0.026805708184838,0.0080097941681743,-0.097299367189407],[-0.0051748170517385,-0.023136511445045,-0.053218696266413]],[[0.032404638826847,0.07385041564703,0.12537130713463],[0.0013480726629496,0.04143375903368,0.10283765941858],[-0.043303776532412,-0.04130531847477,0.090132266283035]],[[-0.0032616821117699,0.04022304713726,-0.050871312618256],[0.01570063829422,-0.036687463521957,-0.14808990061283],[0.051167026162148,0.050950661301613,-0.059206608682871]],[[0.076962344348431,0.14752873778343,-0.099586717784405],[0.038510695099831,-0.084952123463154,-0.12328110635281],[0.016925605013967,-0.069102592766285,0.035233955830336]],[[-0.077464252710342,-0.081679992377758,0.035069826990366],[0.077690988779068,0.081792928278446,-0.068590857088566],[-0.026172067970037,0.055481426417828,-0.05967715382576]],[[0.091184258460999,-0.0001851874840213,-0.045281827449799],[0.051883775740862,-0.044146068394184,-0.04522667080164],[0.047353267669678,-0.10255204886198,-0.1042073816061]],[[0.052913751453161,0.065460398793221,-0.12252251058817],[-0.030475735664368,-0.026679096743464,-0.0084771485999227],[0.18848590552807,-0.012911142781377,-0.11188403517008]],[[-0.079114764928818,-0.038577362895012,0.013905096799135],[-0.035744983702898,-0.013914836570621,0.10299631208181],[-0.14823450148106,-0.051646992564201,0.0024477269034833]],[[-0.00054932612692937,-0.072434946894646,0.0080862678587437],[-0.16272658109665,0.018290994688869,-0.052109606564045],[0.071516558527946,-0.13408952951431,-0.0393834002316]],[[0.0080962628126144,0.039643436670303,0.020329013466835],[-0.03029459528625,-0.013425808399916,0.034145537763834],[0.07529541105032,-0.062908306717873,-0.002068520989269]],[[0.036983627825975,-0.11666513234377,-0.20173957943916],[0.10663358867168,-0.0053451103158295,-0.10478694736958],[0.061613839119673,-0.032534845173359,-0.092335887253284]],[[0.0084819188341498,-0.01210069283843,-0.12635107338428],[0.07585571706295,-0.056772880256176,-0.24289473891258],[0.095806479454041,-0.0070185237564147,-0.19937047362328]],[[-0.0023310510441661,0.0009593719150871,0.099145635962486],[-0.059569247066975,0.06295121461153,0.12041509896517],[0.017652677372098,-0.06584532558918,0.060974672436714]],[[-0.037967119365931,-0.035685781389475,0.040817100554705],[0.049857128411531,-0.015120320022106,-0.11040468513966],[-0.081979848444462,-0.051614075899124,-0.027164943516254]],[[-0.010940535925329,0.04659965261817,-0.031611934304237],[0.050953045487404,0.045630600303411,-0.045332476496696],[0.047170542180538,0.022539760917425,-0.061421889811754]],[[-0.021524325013161,0.094530537724495,0.030516736209393],[-0.11862389743328,-0.077845141291618,-0.13281683623791],[-0.020868066698313,-0.087367981672287,-0.21407842636108]],[[0.082866750657558,0.006986842956394,-0.00088283425429836],[0.1274388730526,0.041352972388268,-0.10732944309711],[0.057880781590939,0.046540409326553,-0.23404037952423]],[[0.027829989790916,-0.03150188177824,-0.049442570656538],[0.018247121945024,-0.060120191425085,0.00017056505021174],[0.074033252894878,0.0033706773538142,0.034827500581741]]],[[[0.014865300618112,0.025047905743122,0.061959579586983],[-0.024160601198673,-0.060223527252674,0.13371075689793],[-0.0022839778102934,0.0085514178499579,0.070753924548626]],[[-0.15208423137665,0.048371832817793,0.12490904331207],[-0.11505425721407,-0.13734333217144,-0.1178035736084],[-0.0066319331526756,0.041432209312916,0.13573542237282]],[[-0.070556655526161,0.014986932277679,0.010063508525491],[0.070766389369965,0.031923174858093,0.023286940529943],[-0.019597703590989,-0.014877840876579,0.0015332875773311]],[[-0.12989163398743,-0.045689761638641,-0.059941411018372],[-0.024753890931606,-0.026324303820729,-0.030513476580381],[0.11739476770163,0.030926449224353,-0.0041062766686082]],[[0.065252617001534,-0.051276411861181,-0.13610096275806],[-0.016682896763086,-0.11048267781734,-0.053363367915154],[-0.026109497994184,-0.015780422836542,-0.067372664809227]],[[0.0160395167768,-0.018636586144567,0.099881619215012],[-0.0419607385993,0.041586827486753,0.007711858022958],[-0.016359969973564,-0.078075744211674,-0.053850740194321]],[[-0.090360291302204,-0.016858905553818,-0.054615654051304],[-0.10590874403715,-0.03901994228363,0.016059217974544],[-0.12936383485794,0.011017525568604,-0.022193651646376]],[[-0.040009398013353,0.055319424718618,-0.014680301770568],[-0.15107724070549,0.0024253926239908,0.019089799374342],[0.044357977807522,0.0020352420397103,0.033577110618353]],[[-0.05263439193368,0.00014656176790595,0.11570286750793],[-0.040834002196789,0.038071770220995,-0.1077736094594],[-0.015543881803751,0.062506854534149,-0.0097867492586374]],[[-0.12447840720415,0.0094771431759,0.014407067559659],[-0.024230018258095,-0.075654029846191,-0.016842715442181],[-0.14133833348751,-0.086633183062077,0.15330591797829]],[[-0.097815506160259,-0.082847565412521,-0.023423559963703],[-0.0094747710973024,-0.062072832137346,-0.00084033305756748],[-0.021019324660301,-0.053382117301226,-0.017311712726951]],[[-0.11194527894258,0.038903839886189,-0.011320760473609],[-0.093298152089119,-0.068226851522923,0.060258582234383],[-0.15206173062325,-0.048635940998793,0.018652305006981]],[[0.034699663519859,-0.18192295730114,-0.13350993394852],[-0.068642981350422,-0.046479769051075,0.018692882731557],[0.015434090048075,0.065494783222675,-0.12129104882479]],[[0.039613611996174,0.027421001344919,0.0035927868448198],[-0.0073773260228336,0.041485317051411,-0.016616703942418],[0.077220149338245,-0.034373950213194,0.11935394257307]],[[-0.059366069734097,-0.13882586359978,-0.13814076781273],[0.036384381353855,0.0054241698235273,0.03770462423563],[-0.016393737867475,0.049133379012346,-0.038058210164309]],[[-0.081607565283775,0.082348622381687,-0.06547500193119],[-0.22148278355598,0.055044669657946,0.13254657387733],[-0.032165344804525,0.011032152920961,0.058852847665548]],[[0.023598495870829,-0.02359389141202,-0.033287264406681],[0.023703066632152,-0.051722221076488,-0.041006617248058],[0.017388267442584,0.094561770558357,0.10942980647087]],[[-0.16989403963089,0.058199755847454,0.0029479432851076],[-0.042391363531351,-0.023998448625207,0.055754408240318],[-0.10043961554766,-0.038993544876575,-0.028308816254139]],[[0.079498007893562,0.037965007126331,0.04398825019598],[0.072659559547901,0.036456380039454,0.090410694479942],[0.068485274910927,0.013500908389688,0.041692316532135]],[[-0.0051775686442852,-0.090236879885197,-0.065287552773952],[-0.058151245117188,-0.028586026281118,-0.098908044397831],[0.091851152479649,0.046601448208094,0.076562665402889]],[[-0.076833993196487,-0.032553382217884,0.083511807024479],[-0.05491054058075,0.098218463361263,0.028627326712012],[0.10884848237038,0.059063635766506,0.052891153842211]],[[0.038593795150518,-0.030442252755165,0.082624465227127],[0.013517306186259,-0.01828514970839,-0.063094735145569],[-0.02186032012105,-0.035311460494995,-0.046202939003706]],[[-0.022263765335083,-0.0056686867028475,0.043627724051476],[-0.017838438972831,0.0049579460173845,-0.049972038716078],[-0.066182300448418,0.034012380987406,0.068310104310513]],[[-0.10405629873276,-0.065977156162262,-0.015499989502132],[-0.020578006282449,-0.028750410303473,-0.06407269090414],[0.11519790440798,0.0038416001480073,0.047932710498571]],[[0.020958445966244,0.14776216447353,0.033470042049885],[-0.015805030241609,0.0053069172427058,-0.010325036942959],[-0.034097004681826,-0.016129748895764,-0.041858226060867]],[[0.0081087192520499,-0.065014436841011,-0.060303937643766],[-0.016951024532318,0.031442649662495,0.0099464980885386],[-0.055807337164879,-0.0035173739306629,0.028249517083168]],[[-0.093684777617455,0.019705777987838,0.12217389047146],[0.025602273643017,0.062359590083361,0.043408192694187],[-0.095414325594902,-0.095877669751644,0.05520960316062]],[[0.13507518172264,0.0090784830972552,0.086265951395035],[0.18124610185623,0.10100340843201,-0.07787599414587],[0.15818466246128,-0.045826435089111,0.038205429911613]],[[-0.027541341260076,0.023025576025248,0.058240406215191],[0.0037495724391192,0.074670143425465,-0.078845910727978],[0.063822828233242,0.0096849417313933,-0.21003119647503]],[[0.041832275688648,-0.043590102344751,0.0023800320923328],[0.071813315153122,0.11085568368435,-0.021097589284182],[0.01827160269022,-0.016797784715891,0.032447922974825]],[[0.01371118798852,0.028449457138777,-0.11806976050138],[0.10797186940908,-0.047695893794298,-0.046137802302837],[0.056198723614216,-0.017527334392071,-0.032361201941967]],[[0.023670684546232,-0.044020544737577,-0.0051770280115306],[0.049029916524887,-0.00032202340662479,0.03163206204772],[-0.034324809908867,-0.10656182467937,-0.13571007549763]],[[-0.20428362488747,-0.016757819801569,0.026517357677221],[0.022014545276761,-0.018257476389408,0.032997708767653],[-0.040891766548157,-0.020435374230146,-0.049181215465069]],[[-0.078694276511669,-0.072648525238037,-0.024581864476204],[0.012377757579088,0.033052805811167,0.0059538283385336],[0.0021195004228503,0.022039858624339,0.032806821167469]],[[-0.062561348080635,0.033375434577465,0.034680258482695],[-0.15909284353256,0.0026022482197732,-0.011997621506453],[0.07636471837759,-0.057846903800964,0.038506221026182]],[[0.041226282715797,0.22064384818077,0.018396880477667],[0.051569972187281,0.14690062403679,-0.022250190377235],[0.011531703174114,-0.021076187491417,0.077480301260948]],[[0.046961553394794,0.15167650580406,-0.064395599067211],[0.0011980606941506,-0.10075154155493,0.05083179846406],[0.0077340584248304,0.06064035743475,-0.052275989204645]],[[-0.0086882542818785,-0.01580524072051,-0.066820092499256],[-0.16255854070187,-0.06477652490139,-0.095003113150597],[-0.17397756874561,-0.038578871637583,-0.001841013901867]],[[-0.058543726801872,0.031223654747009,-0.059545312076807],[-0.032225240021944,0.086506970226765,-0.03147317096591],[-0.10475517064333,0.073235705494881,-0.033742871135473]],[[0.10494983941317,0.053833067417145,-0.087656654417515],[-0.039794057607651,-0.060042668133974,0.12957732379436],[-0.023266285657883,0.07416982203722,0.11482547223568]],[[-0.10183516144753,0.020518090575933,-0.037974610924721],[-0.069038383662701,0.0387331135571,0.042520321905613],[-0.042616322636604,-0.052991833537817,0.031291235238314]],[[-0.010261440649629,-0.091260433197021,-0.12575942277908],[0.10475955158472,0.054337445646524,0.034206546843052],[0.076772280037403,0.0092634158208966,-0.017254162579775]],[[-0.10220857709646,0.02883624099195,0.035811129957438],[-0.11442865431309,0.011701471172273,-0.045257329940796],[0.10179486125708,-0.078856833279133,-0.011048856191337]],[[0.032472189515829,0.062439743429422,0.15679642558098],[-0.045525439083576,0.019527060911059,0.077346250414848],[-0.12297844141722,-0.095936119556427,0.040603149682283]],[[0.058764465153217,-0.031629752367735,0.078918263316154],[0.21637180447578,0.046497870236635,0.039111375808716],[0.15104366838932,0.10890771448612,0.12920781970024]],[[-0.04004854336381,-0.051817364990711,-0.057028260082006],[-0.044972691684961,-0.002337675075978,0.053076084703207],[0.0058024562895298,-8.6637533968315e-05,-0.21589341759682]],[[0.061256352812052,0.039187982678413,0.045745026320219],[-0.049116298556328,0.10895853489637,-0.037062425166368],[0.049204848706722,0.12510965764523,0.064159087836742]],[[-0.079395785927773,0.018125381320715,0.021636819466949],[0.0076640071347356,-0.048990856856108,-0.1162988319993],[0.1214155331254,0.062532894313335,-0.017835456877947]],[[0.053645811975002,0.051587257534266,-0.018286377191544],[0.066995687782764,0.023213906213641,-0.11432278901339],[-0.030103286728263,0.015750462189317,-0.00090085377451032]],[[0.08769066631794,0.044667791575193,-0.16681930422783],[-0.10408610850573,-0.088784173130989,-0.05319743975997],[-0.1052128225565,-0.0057023442350328,-0.032549623399973]],[[0.057312533259392,-0.0709033831954,-0.093984268605709],[-0.0144844641909,-0.063535556197166,-0.068194232881069],[0.023546243086457,0.12706661224365,0.062906049191952]],[[-0.0046461829915643,-0.069747425615788,-0.070696659386158],[-0.010144088417292,0.059668410569429,0.035543441772461],[0.014333099126816,0.060931749641895,-0.030808867886662]],[[0.024432783946395,0.023626130074263,-0.019779302179813],[-0.018907155841589,-0.026682458817959,8.0713165516499e-05],[-0.040930405259132,0.089801281690598,0.18135134875774]],[[-0.018772389739752,-0.028191907331347,-0.17659011483192],[-0.035374473780394,0.046050053089857,-0.14494477212429],[0.11327680200338,0.015145474113524,-0.051572855561972]],[[-0.0076854443177581,0.12847769260406,0.11798823624849],[-0.15176913142204,0.032648641616106,0.029050003737211],[0.0096058147028089,0.097825810313225,0.035749293863773]],[[0.069478049874306,0.098612204194069,0.038352187722921],[0.039489079266787,-0.052399571985006,0.14638261497021],[-0.013191956095397,0.036240339279175,0.080021344125271]],[[0.054816592484713,-0.097337074577808,0.087524436414242],[-0.055705953389406,0.035448141396046,0.017831632867455],[-0.065365046262741,-0.082957722246647,-0.040654469281435]],[[0.069260761141777,-0.024151159450412,0.037504635751247],[-0.21743619441986,-0.03541674092412,-0.055479999631643],[-0.11145689338446,0.016589675098658,0.012516141869128]],[[-0.003905262099579,0.0014803257072344,0.062861420214176],[0.053810648620129,0.11717998981476,0.094265431165695],[0.058215588331223,-0.044469468295574,-0.10401147603989]],[[0.075406812131405,0.0031984690576792,-0.029930213466287],[0.032276835292578,0.038217581808567,-0.063646167516708],[0.088707000017166,-0.056754004210234,0.079957149922848]],[[-0.011572274379432,0.016793701797724,-0.076745137572289],[-0.044000964611769,0.0036389713641256,0.024858480319381],[0.047035772353411,0.083430580794811,0.12848111987114]],[[0.059857103973627,0.020470406860113,-0.16018033027649],[0.082499407231808,0.055577158927917,-0.16274909675121],[0.042230598628521,0.060803726315498,-0.080875247716904]],[[-0.031579975038767,-0.0096660489216447,0.042167164385319],[-0.10087767243385,-0.10945453494787,-0.03156965970993],[0.08481203019619,0.06299301981926,0.070128329098225]],[[-0.036846566945314,-0.028386831283569,0.093562468886375],[-0.063697725534439,0.01373287755996,-0.022997980937362],[-0.041403263807297,-0.03345725312829,-0.054983869194984]]],[[[-0.087199211120605,-0.088633313775063,-0.13120017945766],[-0.020793199539185,-0.068411938846111,-0.070140071213245],[-0.33711528778076,-0.18402326107025,-0.18863183259964]],[[0.057938121259212,-0.050219185650349,0.038409989327192],[0.059817478060722,0.018320398405194,-0.017406944185495],[-0.065810941159725,-0.043918255716562,-0.10042141377926]],[[-0.007889830507338,-0.013605925254524,-0.16036932170391],[-0.062556117773056,-0.10135430842638,-0.036528673022985],[-0.078602015972137,-0.042799960821867,-0.018157791346312]],[[-0.063662610948086,-0.10346321761608,-0.19543947279453],[0.043366052210331,-0.11125467717648,-0.054132387042046],[-0.096719481050968,0.016211709007621,0.055900249630213]],[[-0.027535324916244,0.0771773904562,-0.0052301646210253],[-0.035254266113043,-0.049486082047224,-0.15491871535778],[0.091387003660202,-0.019661378115416,0.00017969618784264]],[[0.005098064430058,-0.11722549796104,0.080178581178188],[-0.044163886457682,0.0014160883147269,-0.054951932281256],[0.1096525490284,-0.079578049480915,-0.012209857814014]],[[0.036269050091505,-0.059459812939167,0.064111061394215],[-0.0019267301540822,-0.050524782389402,0.020982893183827],[-0.14096653461456,-0.12577579915524,-0.19137336313725]],[[0.086869068443775,-0.13511754572392,-0.1365777105093],[-0.060092113912106,0.075633734464645,0.018638031557202],[0.053726129233837,0.098164066672325,0.01980284973979]],[[-0.25540092587471,-0.016945669427514,0.0086973849684],[-0.023473078384995,-0.11011601239443,-0.088255360722542],[-0.066398724913597,0.17071928083897,-0.013471402227879]],[[0.016116231679916,0.038630157709122,-0.035725433379412],[0.049474358558655,0.039002511650324,-0.0077741611748934],[0.0078965956345201,-0.13606338202953,-0.024409303441644]],[[0.042256463319063,0.021328570321202,-0.10313887894154],[0.019398180767894,0.045620433986187,-0.12008381634951],[-0.075196176767349,0.01709907874465,0.033976156264544]],[[0.073291435837746,-0.04688373953104,-0.028002886101604],[0.09815589338541,-0.0040978589095175,0.067123137414455],[-0.24031153321266,-0.022789660841227,-0.14581456780434]],[[-0.094351671636105,0.054314117878675,-0.023159680888057],[-0.016408549621701,-0.032401073724031,0.017419027164578],[-0.035427916795015,-0.0075136590749025,-0.030710276216269]],[[0.062941625714302,-0.018272688612342,0.032705835998058],[0.026898602023721,0.080819688737392,0.092316120862961],[-0.047153763473034,0.010811367072165,-0.082902766764164]],[[-0.10257662087679,0.0057485071010888,-0.019717251881957],[0.042638577520847,0.077608466148376,-0.066334776580334],[0.13714171946049,0.075220935046673,-0.094682902097702]],[[-0.17551630735397,-0.096019312739372,0.034018453210592],[-0.03573764488101,0.0049710404127836,-0.17380432784557],[-0.18225805461407,-0.063225872814655,-0.013201991096139]],[[0.23223352432251,0.048667769879103,-0.01359873637557],[-0.086629368364811,-0.078715689480305,-0.033064555376768],[-0.18982104957104,-0.11527961492538,-0.16468890011311]],[[0.04080817848444,-0.083723559975624,-0.13180306553841],[0.10979672521353,-0.0069078388623893,-0.0093865366652608],[0.080612473189831,-0.016594843938947,-0.032478023320436]],[[-0.14040422439575,-0.017215954139829,0.049871329218149],[-0.054106939584017,0.036028482019901,0.043278187513351],[-0.16229794919491,-0.032334469258785,-0.080534555017948]],[[0.086710684001446,-0.099878922104836,0.13026838004589],[-0.12391366064548,-0.16258607804775,-0.04137435182929],[0.10469967871904,-0.094925954937935,-0.12627282738686]],[[-0.092154987156391,-0.10421234369278,0.047737389802933],[-0.02483700029552,-0.20889887213707,-0.047964073717594],[-0.20253345370293,0.14156147837639,-0.094550043344498]],[[-0.10491829365492,-0.060412503778934,0.019511308521032],[0.023895546793938,0.04242655262351,0.005365215241909],[-0.0033845654688776,-0.041944909840822,-0.032561670988798]],[[0.13139949738979,-0.084407605230808,-0.027110291644931],[-0.17709919810295,0.078537575900555,-0.025883784517646],[-0.085830301046371,-0.11358858644962,-0.030969493091106]],[[0.097808659076691,-0.057826653122902,0.12298829108477],[0.034277517348528,0.12283400446177,0.14256158471107],[-0.20083530247211,-0.088762104511261,0.041621971875429]],[[-0.023804904893041,-0.034522205591202,-0.09810808300972],[-0.10043027997017,0.18397055566311,0.12000787258148],[0.37949016690254,-0.026890799403191,0.11880198866129]],[[0.040824115276337,0.082462571561337,-0.087362959980965],[-0.026420086622238,0.02614402025938,-0.012672734446824],[0.022463599219918,0.0012303333496675,-0.039626069366932]],[[0.00040813197847456,-0.080777324736118,-0.03526022657752],[0.057109531015158,0.053227107971907,0.077318117022514],[0.1286613047123,-0.0098117776215076,-0.040524855256081]],[[-0.1562557220459,-0.066067188978195,0.070827409625053],[-0.031701538711786,0.0027040462009609,-0.0097211850807071],[-0.073730014264584,0.046444963663816,-0.016550427302718]],[[0.035888519138098,-0.049813769757748,0.093486241996288],[0.050111658871174,0.066434353590012,-0.076343640685081],[0.0079320082440972,-0.041570268571377,0.078904047608376]],[[-0.096996434032917,0.056677855551243,-0.11161729693413],[-0.12649928033352,-0.052683211863041,0.14426799118519],[0.034721318632364,-0.046559292823076,-0.10221859067678]],[[-0.085178032517433,0.080322355031967,0.098165109753609],[0.061700385063887,0.022819565609097,-0.19325350224972],[-0.14156983792782,-0.054819475859404,0.082850366830826]],[[0.055103171616793,-0.032907515764236,0.081879854202271],[-0.030736990272999,-0.033114790916443,0.062762387096882],[0.069618105888367,0.084692679345608,0.039260223507881]],[[-0.040683180093765,-0.083833955228329,-0.01071750652045],[0.076085962355137,-0.099902674555779,0.13629412651062],[-0.072553478181362,0.060981161892414,0.044907417148352]],[[0.018313908949494,-0.05230800062418,-0.051251724362373],[0.044160217046738,-0.024601180106401,-0.029040370136499],[-0.039623614400625,-0.12082052230835,-0.053632378578186]],[[0.009081669151783,0.030866658315063,-0.041490260511637],[0.089422084391117,0.011846439912915,0.14698024094105],[0.00311762932688,0.00070045090978965,0.10030509531498]],[[-0.0091427704319358,0.057782549411058,0.077348761260509],[-0.066636957228184,-0.082660980522633,-0.0051163900643587],[0.11959013342857,-0.043746884912252,0.046232737600803]],[[0.056858096271753,0.0089182360097766,0.023727489635348],[0.30526012182236,0.013976157642901,0.10147529095411],[-0.21911047399044,-0.030123168602586,0.011316006071866]],[[-0.0079106269404292,0.0081941001117229,0.066666848957539],[-0.1160099580884,-0.055540218949318,-0.02537109144032],[0.10373356193304,0.016012363135815,-0.081691704690456]],[[-0.069256730377674,-0.11343672126532,0.06060379371047],[0.068794183433056,-0.057170368731022,0.037673741579056],[0.095450095832348,-0.18908381462097,-0.032552700489759]],[[0.0064773177728057,0.0089856004342437,0.057252824306488],[0.038462370634079,0.045118253678083,-0.038900461047888],[-0.060769233852625,-0.12534345686436,-0.14190745353699]],[[-0.059958200901747,-0.051539342850447,0.049208648502827],[-0.03658189997077,-0.075786501169205,-0.1038795337081],[-0.14028677344322,0.038321103900671,0.053681891411543]],[[-0.13406905531883,-0.078591175377369,0.021023847162724],[-0.064951173961163,-0.020323302596807,0.041628859937191],[-0.037835691124201,-0.15339516103268,-0.028169807046652]],[[-0.087175838649273,-0.1052163913846,-0.086491666734219],[0.023366328328848,0.0236612893641,-0.021868608891964],[0.20314779877663,-0.13007681071758,0.087736912071705]],[[-0.081705577671528,0.048349462449551,0.09802470356226],[-0.046942207962275,0.044766802340746,-0.020000923424959],[0.00038063561078161,0.00025425213971175,0.034630950540304]],[[-0.047223042696714,-0.1079231724143,0.090399116277695],[-0.032147075980902,-0.10938862711191,-0.10675540566444],[-0.07541099190712,0.015606672503054,0.00033870857441798]],[[-0.13776962459087,-0.014277659356594,0.032179158180952],[-0.10228091478348,-0.0049410513602197,0.042497485876083],[-0.17139814794064,-0.060670677572489,-0.043308563530445]],[[0.1771227568388,0.0053505231626332,0.076964057981968],[-0.1271505355835,-0.010723988525569,0.029491744935513],[0.066137693822384,-0.022431164979935,-0.13595463335514]],[[0.14718736708164,-0.014951643534005,-0.044041108340025],[-0.12179616093636,-0.014992341399193,-0.1012536585331],[-0.040018133819103,-0.16178646683693,-0.040971245616674]],[[-0.086151406168938,-0.078259959816933,0.064306929707527],[-0.098707765340805,0.13454629480839,-0.034463845193386],[0.011707189492881,-0.097972854971886,-0.032746285200119]],[[-0.10344564914703,-0.043161995708942,0.0021400495897979],[-0.02931959182024,-0.11738976091146,-0.030331719666719],[-0.035058725625277,-0.059951383620501,0.049995716661215]],[[-0.067184835672379,0.0094816563650966,0.026042444631457],[-0.19461537897587,-0.102673381567,-0.0046294378116727],[-0.099084205925465,-0.12766022980213,0.11459146440029]],[[-0.07628045976162,-0.049488287419081,0.048379682004452],[0.033554933965206,-0.02069771848619,0.042503371834755],[-0.0058083990588784,0.020869867876172,0.13186973333359]],[[-0.14100597798824,-0.13259975612164,-0.068054333329201],[0.1950415968895,0.072880871593952,0.069779053330421],[-0.19461174309254,-0.1328242123127,0.12875060737133]],[[-0.0083998506888747,-0.0069185928441584,0.039167836308479],[-0.005559257697314,-0.027099622413516,-0.12858429551125],[0.084100790321827,0.016957877203822,-0.032388728111982]],[[-0.026808883994818,0.084618307650089,-0.2133828997612],[0.1683314293623,-0.15050812065601,0.10252874344587],[-0.051402609795332,-0.074749410152435,0.1091438755393]],[[0.076770670711994,-0.022520553320646,0.018841309472919],[-0.037790812551975,0.099240377545357,-0.089682795107365],[0.11848700046539,-0.014887082390487,0.10833913832903]],[[0.20310685038567,0.057429552078247,0.014717672020197],[-0.13636481761932,0.045563910156488,-0.021306676790118],[0.11644592881203,-0.065992183983326,-0.0246935877949]],[[0.023856747895479,-0.083034716546535,-0.1011608093977],[-0.028976295143366,0.035470392554998,-0.00073238142067567],[-0.13362362980843,-0.10532411187887,-0.039254155009985]],[[0.00091711373534054,0.00015079505101312,0.016953967511654],[0.077717393636703,0.078001797199249,0.099757477641106],[0.038082651793957,0.077831223607063,0.032499622553587]],[[-0.073396652936935,-0.063571937382221,-0.058330211788416],[0.0012919171713293,-0.060038402676582,0.10442902892828],[0.055086269974709,0.049213159829378,0.062525294721127]],[[-0.049335520714521,-0.0044262069277465,-0.075634904205799],[-0.071854889392853,0.042485740035772,0.029730528593063],[-0.084551103413105,0.013296958990395,0.096128024160862]],[[-0.10047075152397,-0.070925921201706,-0.025232324376702],[0.043416943401098,0.028969699516892,-0.031710851937532],[-0.088753893971443,-0.042507275938988,0.025674605742097]],[[0.08224742859602,0.04218614846468,0.0039802836254239],[-0.042634412646294,0.091108500957489,0.084890849888325],[0.024064145982265,0.019451845437288,-0.046521428972483]],[[-0.004883925896138,-0.028088249266148,-0.070761755108833],[-0.14608953893185,-0.0083681475371122,-0.036609776318073],[0.0089574530720711,0.025379246100783,0.12343229353428]]],[[[-0.034497931599617,-0.0018081938615069,-0.11028730124235],[-0.08203349262476,0.012213870882988,-0.12924279272556],[0.081196635961533,-0.056657340377569,-0.034714605659246]],[[0.072835594415665,0.037897933274508,0.016584150493145],[-0.13081616163254,-0.16220676898956,-0.049338433891535],[-0.035085771232843,0.035772107541561,0.039849232882261]],[[-0.025696212425828,-0.21225574612617,0.038969155400991],[0.099546410143375,-0.093011952936649,-0.059555534273386],[0.045975111424923,-0.041665021330118,-0.06489310413599]],[[-0.030491420999169,0.0080937035381794,0.092504501342773],[-0.10528688132763,0.011818709783256,-0.056536320596933],[-0.17234064638615,-0.020481154322624,-0.12555950880051]],[[0.051227085292339,-0.010626731440425,-0.018579162657261],[-0.015681991353631,0.10226059705019,-0.095646739006042],[-0.088794313371181,-0.032228566706181,-0.043506663292646]],[[0.024693937972188,-0.023284118622541,0.0021179153118283],[-0.032286133617163,-0.083272054791451,-0.0043106060475111],[0.088030457496643,-0.15252830088139,-0.089879371225834]],[[-0.059096362441778,0.0013481315691024,-0.027078993618488],[0.07589053362608,0.01363855227828,0.11755096912384],[0.13394619524479,0.027007820084691,0.0093572288751602]],[[-0.012134251184762,0.020870845764875,0.062097642570734],[0.04497255384922,-0.12032079696655,-0.063850484788418],[-0.090869560837746,0.0349011272192,0.017283089458942]],[[0.12101775407791,0.076174661517143,0.025266425684094],[-0.1067429035902,0.0041062878444791,0.014762665145099],[-0.11924046278,0.05444160848856,-0.12106407433748]],[[-0.014266391284764,-0.0067869815975428,-0.1034524589777],[-0.069057025015354,-0.033765006810427,-0.053533185273409],[0.020470269024372,-0.10654585063457,0.0077017685398459]],[[0.017940493300557,0.062087632715702,0.043159414082766],[-0.05049829185009,0.089321278035641,0.004116621799767],[0.028755085542798,-0.039235532283783,-0.023690154775977]],[[0.0091645177453756,-0.085149057209492,-0.076127894222736],[0.049715310335159,-0.056352589279413,0.017912279814482],[0.062593705952168,-0.025221953168511,0.062234047800303]],[[-0.15913215279579,-0.00040312675992027,0.068786226212978],[-0.16535437107086,-0.054352425038815,-0.04377918690443],[-0.0791385024786,-0.03865135833621,0.024937571957707]],[[-0.23163336515427,-0.01580005697906,0.14636987447739],[-0.041766587644815,-0.03857895731926,-0.0930160805583],[0.12527444958687,-0.028919149190187,0.037732314318419]],[[0.077036000788212,0.020664310082793,-0.13916835188866],[-0.040230069309473,0.10685766488314,-0.026969650760293],[0.069471977651119,-0.086471810936928,-0.20641958713531]],[[-0.028181353583932,-0.1379791200161,0.099573910236359],[-0.11468154937029,-0.019281733781099,0.01993284188211],[-0.048165056854486,-0.071357116103172,0.017177755013108]],[[-0.10661537945271,0.052024874836206,0.054810043424368],[-0.029017671942711,-0.040068827569485,0.022582110017538],[0.027903132140636,-0.076135821640491,-0.053145587444305]],[[0.093083798885345,-0.089688032865524,-0.062992937862873],[0.077502869069576,0.071204923093319,0.0017546932213008],[0.10405339300632,0.085366681218147,0.086889192461967]],[[-0.042144361883402,0.049628037959337,0.090563148260117],[-0.021578086540103,-0.030882796272635,0.070364594459534],[-0.0737209841609,0.041707295924425,-0.0355613976717]],[[0.027913399040699,-0.045424144715071,-0.0438640601933],[0.029609454795718,-0.059379365295172,-0.072871200740337],[0.046347986906767,-0.14117427170277,-0.018396886065602]],[[0.045697901397943,-0.16642367839813,0.042106050997972],[0.041827209293842,0.040446925908327,0.039046138525009],[-0.055580209940672,0.15733867883682,-0.036073338240385]],[[0.010930459015071,-0.015840079635382,-0.055454310029745],[0.062043830752373,-0.03958510607481,-0.076922826468945],[-0.025905773043633,-0.010668843053281,0.0345458984375]],[[0.1135146021843,0.020955570042133,0.040129721164703],[-0.030472673475742,0.073229357600212,-0.028341060504317],[-0.079608052968979,-0.17684000730515,-0.08877831697464]],[[0.15823549032211,0.18130305409431,0.11333971470594],[-0.032392624765635,-0.11376189440489,0.23343724012375],[-0.1673109382391,-0.18388251960278,0.084178648889065]],[[-0.01720829308033,0.035033836960793,-0.17237138748169],[-0.19318675994873,-0.016981119289994,-0.039100632071495],[0.057030763477087,-0.029809495434165,0.055518288165331]],[[0.033068764954805,-0.065455228090286,0.0013190855970606],[-0.0038673433009535,-0.051185227930546,0.020312188193202],[0.058686126023531,0.0028446891810745,0.028367353603244]],[[0.063083976507187,0.031673531979322,-0.078897073864937],[0.11495833098888,0.1121824234724,-0.076492808759212],[0.29596054553986,0.039875589311123,0.12095876783133]],[[-0.022211480885744,-0.081621490418911,-0.15804247558117],[-0.013974091038108,0.13287681341171,0.0044856299646199],[0.0064400332048535,-0.03445964679122,0.003617116715759]],[[0.051916178315878,-0.11703627556562,-0.041123706847429],[-0.025910995900631,0.10979194194078,0.024580271914601],[-0.11975956708193,-0.1504345536232,0.01349909696728]],[[-0.026017405092716,0.070634633302689,-0.085676498711109],[-0.044491153210402,0.040696360170841,0.036271568387747],[0.20135994255543,-0.032303299754858,0.0025522219948471]],[[0.038705863058567,-0.042512752115726,0.16237360239029],[-0.042688827961683,-0.081570692360401,-0.0087783727794886],[-0.030887210741639,0.00037606447585858,-0.1116244494915]],[[-0.011607747524977,0.044761504977942,0.10122831165791],[0.047750152647495,-0.0083604287356138,0.059530414640903],[-0.12701101601124,0.037041991949081,0.030050033703446]],[[-0.031507436186075,0.017487930133939,-0.020704928785563],[0.053622175008059,0.018811656162143,-0.056697234511375],[0.10782703757286,0.12531410157681,0.16077500581741]],[[-0.04560973122716,-0.0062367976643145,-0.14834646880627],[-0.1249637901783,-0.092804729938507,-0.089060299098492],[0.044565610587597,0.069297090172768,0.045334696769714]],[[-0.073483370244503,0.060527466237545,0.00074668048182502],[-0.033021628856659,-0.17882725596428,-0.006641763728112],[0.018666356801987,-0.10287516564131,-0.052919611334801]],[[0.035898305475712,-0.035464696586132,0.060006484389305],[0.06604215502739,0.0064871697686613,0.070482701063156],[0.044481430202723,0.086391031742096,0.022159110754728]],[[-0.0064375069923699,-0.078906282782555,0.0024235756136477],[0.080862380564213,-0.0052651409059763,-0.1244805008173],[0.094249047338963,0.20489300787449,0.10524497181177]],[[-0.073231555521488,-0.1671127974987,-0.050094086676836],[0.059234827756882,-0.010918036103249,-0.098257780075073],[0.0098411962389946,-0.15973804891109,-0.10173007845879]],[[0.12214302271605,0.037415184080601,-0.064204104244709],[-0.051010873168707,-0.05422780290246,0.015486435033381],[-0.064406596124172,0.0085214078426361,-0.034117966890335]],[[0.11037804931402,0.020347092300653,-0.028635676950216],[0.02354072406888,0.087617971003056,0.073331840336323],[-0.092761978507042,-0.064933337271214,0.033931527286768]],[[-0.017137851566076,0.0038304696790874,0.045893616974354],[-0.069801509380341,0.0010932313743979,-0.28253456950188],[0.083788730204105,-0.022665748372674,-0.13087828457355]],[[-0.082182385027409,0.064057737588882,-0.1551446467638],[-0.16586828231812,-0.093946360051632,0.033998623490334],[-0.058252558112144,-0.29385089874268,0.1011234074831]],[[-0.12196336686611,0.10100598633289,-0.06926666200161],[-0.026598308235407,-0.015297450125217,0.076158136129379],[0.0044094477780163,-0.035228222608566,-0.039140801876783]],[[-0.062819950282574,0.018096223473549,-0.043450903147459],[0.034604355692863,-0.087869234383106,0.061593979597092],[0.074999123811722,-0.056312460452318,0.14831064641476]],[[0.10830151289701,0.020722724497318,-0.026149285957217],[-0.10204979032278,0.037164483219385,0.010551173239946],[0.1582745462656,-0.01931463368237,0.014945448376238]],[[-0.060575872659683,0.017624193802476,-0.055561244487762],[-0.019126260653138,-0.023416325449944,-0.021133502945304],[0.040231503546238,0.14188148081303,-0.12239632755518]],[[0.20985868573189,0.031785570085049,-0.16174620389938],[0.094798713922501,0.034590199589729,-0.057761393487453],[-0.0078178439289331,-0.039170008152723,0.086254723370075]],[[-0.001507903682068,-0.067346587777138,0.092693194746971],[0.16213904321194,-0.0088729849085212,-0.011696553789079],[0.014441528357565,0.013337912037969,0.053115654736757]],[[-0.1128857806325,0.021178964525461,-0.13185824453831],[-0.025448041036725,-0.043980401009321,-0.05671051889658],[0.10012739151716,-0.043180625885725,0.035505570471287]],[[0.028475752100348,-0.095766887068748,-0.24990962445736],[0.13499487936497,-0.043740913271904,-0.028885597363114],[0.25618568062782,0.17602793872356,0.17139250040054]],[[-0.12651476264,-0.10130354762077,0.068002067506313],[-0.036577615886927,-0.019759207963943,0.15291014313698],[0.086598269641399,-0.10051371157169,0.054216604679823]],[[0.05499354377389,0.014007688499987,-0.0057507818564773],[-0.063128679990768,0.13140293955803,0.15158484876156],[-0.060455117374659,0.14836023747921,0.20497238636017]],[[-0.052341103553772,0.029642380774021,0.09285843372345],[-0.021271558478475,-0.17771375179291,-0.096513688564301],[-0.14749197661877,-0.042493063956499,7.4968702392653e-05]],[[0.054177612066269,0.081839606165886,0.032290562987328],[-0.0012131417170167,-0.0034201149828732,0.065459534525871],[-0.029148610308766,-0.063678003847599,0.15231132507324]],[[0.067005433142185,0.063038267195225,-0.020202217623591],[-0.082669422030449,-0.10414967685938,0.065900325775146],[0.14836823940277,-0.01730190962553,0.12564353644848]],[[-0.068993985652924,-0.022239470854402,0.085493788123131],[0.061427671462297,0.001225559739396,0.047046285122633],[0.021334983408451,-0.017339989542961,-0.033171474933624]],[[-0.056067138910294,0.065610125660896,0.031582769006491],[-0.023542733862996,-0.039532322436571,-0.084613859653473],[-0.050691206008196,0.1068551838398,-0.066436752676964]],[[0.062339853495359,-0.02253452129662,0.0082144923508167],[0.014078080654144,-0.040071569383144,-0.10014703124762],[-0.039010874927044,0.057901717722416,-0.12679553031921]],[[0.012529690749943,0.024990878999233,0.074152186512947],[0.09235455095768,0.050045356154442,0.025714073330164],[0.050599724054337,0.048873342573643,-0.0030233468860388]],[[-0.12180981785059,-0.011762654408813,-0.0071498644538224],[0.090361468493938,-0.03038234077394,-0.12206805497408],[0.10763215273619,0.078271679580212,0.15679274499416]],[[-0.061162129044533,0.084769606590271,0.0065610054880381],[-0.063441567122936,-0.0091003589332104,0.095019094645977],[0.016661245375872,-0.08023688942194,0.041729394346476]],[[0.057298701256514,-0.018401185050607,-0.080408982932568],[0.014264792203903,-0.0014503041747957,-0.033752918243408],[0.12308196723461,-0.018183939158916,-0.031185397878289]],[[-0.025177009403706,-0.089431643486023,-0.033169031143188],[0.092375829815865,-0.048022728413343,-0.043477132916451],[0.10506877303123,0.058236889541149,-0.08057364821434]],[[0.064673885703087,-0.034933313727379,0.1073460355401],[-0.17890830338001,-0.0537437684834,0.037124279886484],[-0.048992283642292,0.10547357797623,-0.045163575559855]]],[[[0.026727894321084,-0.11424268037081,-0.10532131791115],[0.085378535091877,0.014615297317505,-0.017262285575271],[-0.046930801123381,0.018149707466364,-0.15415550768375]],[[-0.061608694493771,-0.23133905231953,-0.1817003339529],[-0.051798202097416,-0.079018294811249,-0.045979436486959],[0.23888185620308,0.036637667566538,-0.056595336645842]],[[-0.1624259352684,0.04508825391531,-0.096264623105526],[-0.058608673512936,0.0084348283708096,-0.052791561931372],[-0.017109178006649,-0.046381074935198,0.010117112658918]],[[0.02294772490859,0.027038410305977,0.0092050228267908],[-0.19411534070969,0.0056743957102299,0.0019129649735987],[0.13124108314514,0.023100819438696,-0.10699681937695]],[[0.039953798055649,-0.025697018951178,-0.050376452505589],[-0.0030717167537659,-0.00010298754932592,0.065826192498207],[0.083095282316208,0.076004527509212,-0.055718462914228]],[[-0.1676212400198,-0.0030532949604094,-0.078548513352871],[-0.074572324752808,-0.080970458686352,0.025580471381545],[0.028533425182104,-0.0026656161062419,0.070872269570827]],[[0.024524513632059,-0.0024180845357478,-0.0016220953548327],[-0.011156777851284,0.01022391859442,-0.00066412636078894],[0.012493141926825,0.086242265999317,-0.028517033904791]],[[-0.073548182845116,0.034228563308716,-0.028550416231155],[-0.075527556240559,0.051485866308212,0.023216016590595],[0.038674529641867,0.12096077948809,0.087444953620434]],[[0.0009953643893823,0.015369638800621,-0.055610489100218],[0.019202379509807,0.017002552747726,0.079229302704334],[0.057021461427212,-0.019526589661837,0.10065495967865]],[[-0.057881750166416,-0.0089239832013845,-0.08220249414444],[-0.030840676277876,-0.024669710546732,-0.056408111006021],[0.20248727500439,0.04428980499506,-0.024254538118839]],[[0.0057948082685471,0.016569441184402,-0.10104798525572],[0.017512079328299,-0.052055556327105,-0.11792883276939],[-0.15073436498642,-0.10693779587746,-0.030899537727237]],[[-0.011478446424007,0.0094914631918073,-0.10495617985725],[-0.01188543625176,0.040811628103256,-0.073430120944977],[0.015408682636917,-0.0071426103822887,-0.13230623304844]],[[0.051716510206461,-0.092176206409931,-0.028273485600948],[-0.021183652803302,-0.056233942508698,-0.00039599556475878],[0.07210611552,0.01107666362077,0.019670264795423]],[[0.11401925235987,0.062208417803049,0.021310724318027],[0.10060261934996,0.040017537772655,-0.037220306694508],[0.088086612522602,0.11215321719646,-0.077934250235558]],[[-0.04958551004529,0.055226992815733,0.078478455543518],[-0.037063751369715,0.032207060605288,-0.041502773761749],[-0.0081276660785079,-0.10989648848772,-0.13135454058647]],[[0.059001035988331,-0.10983549058437,-0.0085683343932033],[0.016180148348212,-0.07561019808054,-0.080058231949806],[-0.026353467255831,-0.014039510861039,0.10332211852074]],[[-0.025383716449142,0.043426390737295,0.035841662436724],[0.046762105077505,-0.010711860843003,-0.0016044661169872],[-0.023177076131105,-0.059923339635134,-0.0602672919631]],[[-0.15105900168419,-0.06597850471735,-0.11080968379974],[-0.050965949892998,-0.011241334490478,-0.021285766735673],[0.048211630433798,0.09342260658741,-0.0020368942059577]],[[-0.22830510139465,-0.042071763426065,0.0062459390610456],[-0.033838797360659,0.02627662755549,0.059325229376554],[0.034807857125998,-0.048783972859383,0.052255615592003]],[[-0.16136632859707,-0.084099993109703,-0.058737110346556],[-0.13527245819569,-0.033382829278708,-0.077109076082706],[0.040104150772095,-0.038231622427702,0.14214836061001]],[[-0.066783279180527,-0.020213555544615,-0.021589690819383],[-0.083845086395741,-0.026513269171119,0.0053700101561844],[0.034083180129528,-0.089514844119549,0.062543705105782]],[[-0.10386153310537,-0.020594030618668,-0.040563113987446],[-0.051225606352091,-0.0016212930204347,-0.041940074414015],[0.013414736837149,0.055798016488552,0.012230476364493]],[[-0.062073774635792,-0.040664050728083,0.045430287718773],[-0.075958944857121,-0.039900589734316,-0.021451815962791],[-0.027817433699965,-0.065165989100933,0.041636288166046]],[[-0.073955520987511,0.075641967356205,0.11082842946053],[0.089322254061699,-0.01815927401185,-0.0014660854358226],[-0.019050190225244,-0.087628908455372,0.022053876891732]],[[0.14188957214355,0.12837529182434,0.23015630245209],[-0.011679081246257,-0.090978659689426,0.12884405255318],[-0.097926028072834,-0.052208758890629,-0.0085950149223208]],[[0.081217356026173,0.0087564364075661,-0.066741243004799],[-0.038295160979033,0.064508564770222,-0.0003809422487393],[0.014957661740482,-0.025999624282122,-0.073900386691093]],[[-0.044450893998146,0.023061638697982,0.021896561607718],[-0.0068194903433323,0.027567012235522,0.04726530611515],[0.027505226433277,0.097249709069729,0.041960828006268]],[[-0.083152823150158,0.059281893074512,0.05352970212698],[-0.070693761110306,0.05214761570096,-0.0032374877482653],[0.032731361687183,0.022141262888908,-0.027249583974481]],[[-0.084068268537521,-0.11163831502199,-0.031670596450567],[-0.0039743068628013,-0.044796079397202,0.028807634487748],[0.10696300119162,-0.087198324501514,-0.067025624215603]],[[-0.087670311331749,0.0079128015786409,-0.0963469222188],[-0.085579544305801,0.086824208498001,-0.038202088326216],[0.0023145340383053,0.11313723027706,0.0083313882350922]],[[-0.073614932596684,0.027040403336287,0.10989700257778],[0.031094977632165,0.061560317873955,0.09437794983387],[-0.075992494821548,0.12286702543497,0.052511554211378]],[[0.15753190219402,0.067771919071674,0.012349050492048],[-0.066063717007637,0.0025493917055428,-0.019354650750756],[-0.017135137692094,-0.10829991102219,-0.029338674619794]],[[0.042823489755392,-0.061565786600113,-0.081334546208382],[0.049779869616032,-0.011267556808889,-0.067822806537151],[0.02139100804925,0.0050823027268052,0.069761425256729]],[[0.070698149502277,0.11461700499058,0.092989735305309],[-0.015667077153921,0.033166006207466,0.049345798790455],[0.037348009645939,0.092799909412861,0.073402658104897]],[[-0.13278383016586,-0.087580725550652,-0.05341574922204],[-0.077334187924862,-0.037816856056452,0.0010351119562984],[-0.042446844279766,-0.039756465703249,0.053103677928448]],[[0.13930802047253,0.019889622926712,0.10345800220966],[0.030445909127593,-0.057537328451872,0.005260516423732],[0.0055479472503066,-0.026953047141433,-0.06769897043705]],[[0.090013787150383,0.040421716868877,0.073881700634956],[-0.062043104320765,-0.07328587025404,0.015797812491655],[-0.12401834875345,-0.097969993948936,-0.026939643546939]],[[-0.049818132072687,-0.10459289699793,0.0080054728314281],[-0.059635952115059,0.018615094944835,-0.070017136633396],[0.03335352614522,0.080280773341656,0.018904453143477]],[[0.0055422517471015,0.041051138192415,-0.014239152893424],[0.05400974676013,0.010228442959487,0.003244164865464],[0.045658364892006,0.00077026023063809,-0.027395149692893]],[[0.0086491461843252,-0.076546892523766,-0.015286376699805],[0.006071338430047,-0.047529891133308,0.0020076262298971],[0.090173050761223,0.042963109910488,0.025192268192768]],[[-0.0038553413469344,-0.13249754905701,-0.015738323330879],[0.024452198296785,-0.034566957503557,-0.03640877828002],[-0.0020525380969048,-0.017962863668799,0.10942567139864]],[[0.0065007922239602,-0.12261167913675,0.012720545753837],[0.065299399197102,-0.016509449109435,-0.015742609277368],[0.062764346599579,-0.0085158264264464,-0.051163166761398]],[[-0.025897987186909,-0.096748776733875,0.016882464289665],[-0.060200523585081,-0.13334463536739,0.020584113895893],[-0.02525938116014,-0.25921675562859,-0.10411623120308]],[[-0.22053289413452,-0.16171109676361,0.039124827831984],[-0.031814184039831,-0.063436210155487,-0.0058888355270028],[0.0017902967520058,0.078296907246113,0.10655976831913]],[[-0.15693534910679,-0.021586038172245,-0.161889731884],[-0.06360824406147,-0.024620991200209,-0.069315530359745],[-0.043094821274281,0.056251637637615,0.05356714874506]],[[0.038428146392107,0.020051304250956,0.078477375209332],[-0.013723639771342,-0.043472412973642,0.011579320766032],[-0.0713050365448,-0.071835495531559,0.05014930665493]],[[0.033088602125645,-0.059226408600807,0.022286858409643],[0.064911104738712,-0.032392229884863,0.060308646410704],[-0.043478064239025,0.070179402828217,0.054789587855339]],[[0.09085888415575,0.054580062627792,0.21397952735424],[0.013792620040476,0.05825687199831,0.05370445176959],[-0.11257464438677,0.0077402242459357,0.071349203586578]],[[0.074233509600163,0.070377081632614,0.017919233068824],[0.011445889249444,0.082186408340931,-0.065830044448376],[-0.053414762020111,0.032157655805349,-0.029193095862865]],[[-0.066085711121559,0.074578948318958,-0.092124000191689],[0.018893817439675,0.0087975515052676,-0.048116739839315],[0.078149780631065,-0.045545298606157,-0.031755026429892]],[[0.096237666904926,0.075032226741314,-0.067134633660316],[-0.030663697049022,-0.012403042986989,-0.029194179922342],[-0.14335554838181,-0.13269513845444,-0.11860260367393]],[[-0.079931549727917,0.018113307654858,-0.032898563891649],[-0.017841957509518,0.057672332972288,-0.069451928138733],[-0.030981855466962,0.05822666361928,-0.076060771942139]],[[0.033954471349716,0.00029018984059803,0.020544482395053],[-0.050615005195141,-0.083595454692841,0.023913526907563],[0.02543600089848,-0.071359142661095,0.035023219883442]],[[0.050947096198797,0.11391898244619,0.062689699232578],[0.062219876796007,0.035858038812876,-0.049296867102385],[-0.13899305462837,-0.055189982056618,-0.059588216245174]],[[-0.026252524927258,-0.16567133367062,-0.12065254151821],[0.058387141674757,0.042552199214697,-0.042657054960728],[0.077871598303318,-0.045043766498566,0.073963269591331]],[[0.034197568893433,0.017444105818868,-0.048621382564306],[-0.028053453192115,0.03016522154212,0.052174612879753],[-0.04300769791007,0.025295527651906,-0.027297073975205]],[[-0.08943647891283,0.099539086222649,-0.012055301107466],[0.13267084956169,0.035134233534336,-0.032117158174515],[0.058814413845539,-0.0094256810843945,-0.029718700796366]],[[-0.099421203136444,-0.070418901741505,-0.06215363740921],[-0.010773503221571,-0.071168027818203,-0.047500938177109],[0.12888611853123,0.035531647503376,-0.0045352862216532]],[[0.083132863044739,0.16949267685413,0.11770987510681],[0.078974574804306,-0.013765667565167,0.091605089604855],[-0.036580979824066,-0.033626694232225,0.037894628942013]],[[-0.098103180527687,-0.15147158503532,0.02325502038002],[-0.034415684640408,-0.02605065703392,-0.030997855588794],[-0.083951011300087,-0.11186467111111,0.044596251100302]],[[0.036746881902218,0.084749154746532,0.13127556443214],[0.090657740831375,0.028687667101622,0.064942978322506],[0.038289949297905,0.011082570999861,0.083634182810783]],[[-0.038538951426744,-0.10426849126816,-0.089859142899513],[0.020062405616045,-0.016944818198681,-0.15599231421947],[0.15294940769672,-0.013795930892229,-0.034597139805555]],[[0.14770448207855,-0.0204734262079,0.031223168596625],[0.043997820466757,0.095790043473244,-0.16058729588985],[-0.023925116285682,0.10844229161739,0.03685537725687]],[[-0.049977615475655,-0.010379176586866,-0.085416175425053],[0.01238305773586,0.095441959798336,-0.04186200723052],[0.04479331150651,0.007684666197747,-0.038236524909735]]],[[[-0.06485965102911,-0.0072425957769156,0.093660779297352],[-0.036682214587927,-0.036539483815432,0.02056822925806],[-0.026919741183519,0.062237836420536,-0.037028539925814]],[[0.07004726678133,-0.010669400915504,0.17823599278927],[-0.0038332140538841,0.12375321984291,0.048550948500633],[-0.032018590718508,0.045617271214724,0.0051178643479943]],[[0.032083373516798,0.0013290023198351,0.04333309084177],[-0.057882182300091,-0.11319721490145,-0.048039875924587],[-0.089497089385986,-0.018780017271638,-0.047748759388924]],[[-0.005028311163187,0.035437069833279,0.062751777470112],[0.067788258194923,-0.043949123471975,-0.11485552042723],[-0.029764570295811,0.0097246775403619,0.035482183098793]],[[-0.094360619783401,0.0034530125558376,-0.056344911456108],[-0.027507491409779,0.059989053755999,-0.18315157294273],[-0.018932949751616,-0.0063159796409309,0.11575309932232]],[[0.022406529635191,-0.15535973012447,0.052803382277489],[-0.017931796610355,0.059824120253325,-0.079249732196331],[-0.094799965620041,-0.08458986133337,-0.10282852500677]],[[-0.0041488227434456,0.11558046191931,-0.18329004943371],[-0.083057157695293,-0.040639601647854,-0.14924085140228],[0.018986949697137,0.046926964074373,-0.086927801370621]],[[0.05596774443984,0.10976917296648,-0.12016661465168],[0.055723909288645,-0.096901372075081,-0.030648000538349],[-0.025846499949694,-0.09578999131918,0.01650015078485]],[[-0.080028004944324,-0.099757693707943,-0.031725458800793],[-0.045202970504761,0.012839859351516,-0.012201751582325],[-0.037365458905697,-0.10401298105717,-0.0028786275070161]],[[0.097450070083141,0.014926176518202,-0.095484770834446],[-0.026136787608266,-0.068216614425182,-0.040773972868919],[-0.03768340498209,-0.024897381663322,0.016087839379907]],[[-0.011333093047142,-0.032354380935431,0.24296428263187],[0.0168796479702,0.01482080295682,-0.053011476993561],[-0.072760052978992,0.0062792049720883,-0.089843101799488]],[[0.17310212552547,-0.023972816765308,-0.17667743563652],[-0.008995889686048,0.093864142894745,0.017640683799982],[-0.0049465885385871,-0.027477024123073,0.049338437616825]],[[0.15501403808594,-0.0089794890955091,0.053034588694572],[-0.23923833668232,0.051639724522829,-0.098525278270245],[-0.018052140250802,-0.17644010484219,0.071184031665325]],[[-0.14744208753109,-0.093443818390369,-0.061779875308275],[-0.040092423558235,0.018473610281944,-0.036684703081846],[-0.09359110891819,0.026410140097141,0.13743005692959]],[[-0.15523308515549,0.14579258859158,-0.11178599298],[0.0014405066613108,-0.067594334483147,0.042079664766788],[0.033332020044327,0.083941854536533,-0.020589543506503]],[[-0.01375045068562,-0.045007705688477,0.0082180351018906],[-0.11550640314817,0.0075137480162084,-0.12851782143116],[-0.071339011192322,0.069037571549416,0.002134169684723]],[[-0.065671093761921,-0.10097555071115,0.11968257278204],[0.0010061985813081,-0.086222529411316,-0.013117107562721],[0.0032247425988317,0.029896203428507,-0.044287528842688]],[[-0.047907032072544,0.014116919599473,-0.053612548857927],[0.024530814960599,-0.07307855039835,-0.018467435613275],[0.0043864059261978,-0.01738035492599,-0.054464504122734]],[[0.012440962716937,0.029932171106339,0.0047171390615404],[-0.022620951756835,-0.093063235282898,-0.095987439155579],[-0.14642822742462,-0.017048425972462,-0.0028352350927889]],[[-0.10318189114332,-0.015091181732714,-0.019318543374538],[-0.024508802220225,-0.013567171059549,0.02040252648294],[-0.099270582199097,0.075157150626183,0.02770884335041]],[[0.052968993782997,0.16138195991516,0.068044900894165],[0.068929098546505,-0.084115877747536,0.14729733765125],[0.0074802376329899,0.034371435642242,-0.01877767033875]],[[-0.051050074398518,0.051137216389179,0.052649687975645],[-0.021341916173697,-0.017756473273039,0.012914790771902],[0.0038203469011933,-0.087627902626991,-0.044801656156778]],[[-0.026573078706861,-0.038228891789913,0.090872973203659],[-0.029147386550903,0.10003937035799,-0.083770960569382],[-0.076786383986473,-0.065705209970474,-0.026101151481271]],[[0.01459926366806,-0.018968529999256,0.072881795465946],[0.09243968129158,0.014648497104645,0.09378607571125],[-0.022196164354682,0.06032095476985,0.13664998114109]],[[0.060684237629175,-0.043445821851492,-0.060118589550257],[0.081894189119339,0.098003447055817,0.019733240827918],[0.0032050299923867,0.072917155921459,0.12606419622898]],[[0.030709115788341,0.010402520187199,0.01844010874629],[-0.037256892770529,-0.028471002355218,0.024300999939442],[-0.030472911894321,0.016722002997994,-0.002804999705404]],[[-0.0072738062590361,0.061049427837133,-0.053958654403687],[0.018076511099935,0.083570562303066,-0.10155119001865],[0.050097014755011,-0.027316223829985,0.027378991246223]],[[-0.054272763431072,-0.11353812366724,-0.074327826499939],[-0.020926032215357,0.051893346011639,0.02142333984375],[-0.03531801700592,0.11019003391266,-0.1248841136694]],[[-0.065380580723286,0.014995623379946,0.057738650590181],[-0.00053149095037952,-0.099292509257793,-0.062625132501125],[-0.17010778188705,-0.047448016703129,-0.10927410423756]],[[-0.086991935968399,0.014496962539852,0.08069883286953],[-0.0029561365954578,-0.037340462207794,-0.072205848991871],[0.024106584489346,-0.15285086631775,-0.0046008178032935]],[[0.031450286507607,-0.027041096240282,0.059222389012575],[0.1340224891901,-0.11822845041752,0.048039887100458],[0.14904199540615,-0.10802529007196,0.1545152515173]],[[-0.12155060470104,0.16210162639618,0.10699485987425],[-0.062478087842464,0.049015678465366,-0.010580875910819],[0.11006140708923,0.047413300722837,0.015216564759612]],[[-0.04072293266654,-0.0020195522811264,0.068250000476837],[0.036375381052494,0.011083129793406,-0.012250759638846],[-0.10628566145897,0.082910291850567,0.0030381891410798]],[[-0.087017931044102,0.040921065956354,0.0031827499624342],[-0.014556989073753,0.017275802791119,0.040526945143938],[-0.029434280470014,-0.097444787621498,0.018935142084956]],[[0.025431120768189,-0.15234751999378,-0.10087391734123],[-0.12721200287342,-0.11017625778913,-0.053489584475756],[-0.0091724125668406,-0.10424999892712,0.030230052769184]],[[0.0063336542807519,0.047780986875296,-0.068447694182396],[-0.0011431362945586,0.024989588186145,0.1834891140461],[0.060203239321709,-0.018262742087245,0.037817474454641]],[[0.022040098905563,-0.22646644711494,0.074659958481789],[-0.016392033547163,-0.039056919515133,0.070600338280201],[-0.0029442629311234,-0.16393712162971,0.00048002906260081]],[[-0.044612396508455,-0.035676270723343,-0.08074901252985],[-0.010554689913988,0.024039449170232,-0.049964368343353],[0.06929536908865,-0.0094462120905519,0.045089870691299]],[[0.0099563095718622,-0.065226070582867,-0.12185064703226],[0.038132533431053,0.0086797010153532,-0.097643598914146],[-0.086126662790775,-0.056247655302286,-0.12439373135567]],[[-0.10039222985506,-0.063103705644608,-0.096773982048035],[-0.053783237934113,-0.1338157504797,-0.038377340883017],[-0.027791785076261,-0.023128721863031,0.13365216553211]],[[0.15061315894127,0.024286337196827,0.017297010868788],[0.02699021063745,0.021513981744647,-0.0049437955021858],[0.014658819884062,0.0020281057804823,-0.061484284698963]],[[-0.11036927253008,0.040692288428545,0.0015742458635941],[-0.10652144253254,-0.0567606985569,-0.11048585921526],[-0.044186878949404,0.033044952899218,-0.048910193145275]],[[-0.021925620734692,-0.025913311168551,0.013527499511838],[-0.076553396880627,-3.5432109143585e-05,-0.017008887603879],[-0.10358533263206,0.014308265410364,0.082331828773022]],[[-0.078217037022114,0.28522232174873,-0.023131836205721],[0.019533200189471,-0.017009351402521,0.13165363669395],[-0.1086251437664,-0.0025482836645097,0.0073334551416337]],[[-0.041138213127851,-0.037686552852392,-0.21240900456905],[-0.10555946081877,-0.014910197816789,0.050558604300022],[-0.02283557318151,0.13128893077374,-0.047451786696911]],[[-0.006147613748908,-0.10240259766579,-0.020729172974825],[-0.0082468818873167,0.10516599565744,-0.054239857941866],[0.06916306912899,-0.036741085350513,0.028929304331541]],[[0.0401008464396,0.060021299868822,0.044812563806772],[-0.03476221114397,-0.023134026676416,0.043197710067034],[0.021912563592196,-0.027141084894538,0.092295929789543]],[[-0.11583065986633,0.0085156196728349,0.036052476614714],[0.027605302631855,-0.017697555944324,0.17532850801945],[-0.12378214299679,-0.004336139652878,-0.1160519644618]],[[0.092630513012409,-0.028341902419925,-0.029142275452614],[0.097489416599274,-0.079488217830658,0.012026762589812],[0.050042897462845,-0.0011499451939017,-0.11053974181414]],[[-0.067636728286743,0.22128774225712,0.039080381393433],[-0.010491439141333,0.014883516356349,0.090532891452312],[-0.015312024392188,-0.11546748131514,0.019542137160897]],[[0.094383552670479,0.046514250338078,0.064191184937954],[0.11526922136545,0.00022936257300898,-0.10625620931387],[0.065037593245506,0.022259913384914,0.10521797090769]],[[0.31179887056351,-0.15356861054897,0.0039632790721953],[-0.1257913261652,0.059990905225277,0.015296654775739],[-0.026235222816467,-0.027776187285781,0.06247553229332]],[[0.10057391226292,-0.19958187639713,0.20094142854214],[0.026631897315383,0.049913831055164,-0.067746981978416],[-0.022495403885841,0.10841496288776,0.012549462728202]],[[0.16771911084652,0.076833926141262,-0.097902581095695],[0.075615599751472,-0.0054003614932299,-0.028423063457012],[-0.0010910157579929,0.072638370096684,0.028160808607936]],[[-0.17528830468655,0.00626081507653,0.087134279310703],[-0.097032107412815,-0.024581138044596,-0.085839726030827],[0.058319073170424,-0.0018361245747656,-0.10657148808241]],[[-0.15203033387661,0.072129957377911,0.049136575311422],[0.11185395717621,-0.065583318471909,-0.015955723822117],[0.053579494357109,-0.080719299614429,0.015602826140821]],[[0.099954821169376,-0.10319059342146,0.19635356962681],[0.11264172196388,-0.033479586243629,0.045165505260229],[-0.078126095235348,0.068984411656857,0.0045320726931095]],[[-0.046099983155727,-0.0013663385761902,0.11115464568138],[-0.017555804923177,0.026259122416377,-0.020964581519365],[-0.071774668991566,0.024666612967849,-0.029621297493577]],[[0.060110915452242,0.14696975052357,-0.03893867880106],[0.028508538380265,0.070284582674503,0.039467304944992],[0.078322052955627,-0.005845352075994,-0.020727219060063]],[[-0.038016699254513,-0.20851373672485,0.012644242495298],[-0.11240211129189,-0.13971473276615,0.016684278845787],[-0.12316647171974,0.047291625291109,-0.02284974604845]],[[0.034695960581303,-0.011423073709011,-0.054885897785425],[0.057009603828192,0.0087199676781893,-0.1269321590662],[0.019085956737399,-0.17834600806236,0.067856878042221]],[[-0.16443645954132,-0.086759880185127,-0.067264087498188],[-0.052634477615356,0.0092467600479722,-0.15147742629051],[-0.17793028056622,-0.072450526058674,0.10635636001825]],[[0.07287834584713,-0.0027658350300044,0.029174959287047],[-0.066804006695747,0.14062263071537,0.061865869909525],[-0.026858007535338,0.061888296157122,0.026614066213369]],[[0.014876561239362,0.042823042720556,0.014698650687933],[0.04193926975131,-0.013045991770923,-0.059565547853708],[0.004414583556354,-0.016709854826331,-0.053774211555719]]],[[[-0.091510161757469,-0.051138643175364,-0.09150692075491],[0.037683121860027,-0.07351329177618,0.076811879873276],[-0.12929765880108,-0.084152303636074,-0.044098600745201]],[[-0.15811270475388,0.0070644808001816,-0.14635697007179],[0.13672862946987,0.043256666511297,-0.035179037600756],[-0.38740268349648,-0.085663489997387,-0.058004163205624]],[[0.03418230637908,-0.092998564243317,-0.15887703001499],[-0.14752006530762,-0.08319079875946,-0.10661155730486],[-0.074958764016628,-0.052307311445475,0.063440330326557]],[[0.0033078074920923,0.058703925460577,0.025735823437572],[-0.077455006539822,-0.07562243193388,-0.203409537673],[0.012860984541476,-0.11103270202875,-0.021743066608906]],[[-0.06207637116313,0.052723526954651,0.023531870916486],[0.019970444962382,0.05164035782218,0.21835120022297],[-0.080538533627987,-0.15665140748024,-0.20362578332424]],[[0.037181708961725,-0.049586839973927,-0.079438522458076],[-0.10951519012451,0.058177467435598,-0.062144089490175],[-0.013119759038091,0.10519830882549,-0.011848672293127]],[[-0.11028473824263,-0.050523761659861,-0.021823616698384],[-0.034843720495701,-0.020697396248579,-0.035203453153372],[-0.056190229952335,-0.17150637507439,0.071699261665344]],[[-0.046485006809235,0.0067384843714535,0.11222552508116],[-0.13052178919315,-0.075340092182159,-0.016658715903759],[0.069200567901134,0.057976938784122,-0.013097384944558]],[[-0.078231126070023,-0.012521442957222,-0.041487276554108],[0.17090067267418,0.095547758042812,-0.0072326138615608],[-0.16623932123184,-0.077861122786999,0.022858181968331]],[[0.032579276710749,-0.054205719381571,-0.093556083738804],[-0.1093093007803,-0.10842895507812,0.13366287946701],[-0.091639138758183,-0.025104660540819,-0.074636705219746]],[[-0.09550616145134,0.11889496445656,0.1035171225667],[-0.10356341302395,-0.081328548491001,-0.18848726153374],[0.0034797003027052,0.04638672247529,-0.10815428197384]],[[0.1194005087018,0.045708362013102,0.12584726512432],[-0.14054550230503,-0.07463788241148,-0.16306225955486],[-0.093399472534657,-0.058764595538378,-0.017830561846495]],[[-0.13134968280792,0.10517333447933,-0.0064516337588429],[0.19416326284409,-0.13590627908707,-0.094784043729305],[-0.074074991047382,0.04123879596591,-0.04895681142807]],[[0.10248266160488,-2.1977804863127e-05,-0.15685667097569],[0.030755857005715,0.10571677237749,0.14845164120197],[-0.090323351323605,0.061835452914238,0.10862220823765]],[[-0.23452661931515,-0.031270734965801,0.16919243335724],[-0.067858375608921,-0.073410160839558,-0.039328280836344],[-0.12148956209421,-0.007985427044332,-0.10035268217325]],[[0.017454044893384,0.11530826985836,-0.027732389047742],[0.022099440917373,-0.21560706198215,0.039503622800112],[0.15999139845371,0.063616193830967,-0.022459432482719]],[[-0.17540192604065,-0.13331760466099,-0.04722385853529],[-0.09168766438961,-0.079709313809872,0.11393216252327],[-0.085551537573338,-0.18090085685253,-0.22628958523273]],[[-0.099429003894329,-0.14471079409122,0.13758754730225],[-0.015401966869831,0.043908938765526,0.039142299443483],[0.081590265035629,-0.0067803934216499,0.015338039956987]],[[0.091923534870148,-0.013246106915176,0.013991087675095],[0.097814962267876,0.023519454523921,0.0023444218095392],[0.060307268053293,0.071915321052074,0.011886929161847]],[[0.041801694780588,0.028558509424329,-0.12467718869448],[-0.028979023918509,-0.19421799480915,-0.089815907180309],[-0.030555449426174,0.061019022017717,0.027495825663209]],[[0.15940657258034,-0.1571239233017,0.081043176352978],[0.089086279273033,0.023856790736318,0.057137176394463],[-0.021489875391126,-0.13479013741016,-0.096970498561859]],[[-0.078387908637524,-0.020800963044167,-0.031923435628414],[0.059093121439219,0.0039969785138965,-0.029918365180492],[0.0015163407661021,-0.0017989850603044,-0.046101737767458]],[[-0.026639757677913,0.1254775673151,-0.024926394224167],[-0.2630829513073,-0.045091573148966,0.10234094411135],[-0.13443590700626,-0.068943321704865,-0.18211890757084]],[[0.072904795408249,0.22079306840897,0.01250586938113],[-1.4502940757666e-05,-0.0035386683885008,0.07719311863184],[0.29328247904778,0.013038235716522,-0.00065703311702237]],[[-0.037922706454992,-0.031715769320726,0.13683097064495],[0.082373484969139,0.051101990044117,-0.0039883507415652],[-0.024293407797813,0.015307460911572,-0.013398231007159]],[[0.055058136582375,0.038969546556473,-0.032096959650517],[-0.06783277541399,-0.071375712752342,0.044063862413168],[-0.0040136030875146,-0.0074047562666237,0.031180016696453]],[[-0.094508312642574,-0.016390567645431,0.11372443288565],[-0.062656588852406,0.083691984415054,-0.062524765729904],[-0.061824198812246,0.050938714295626,-0.01839623786509]],[[0.0050831534899771,-0.085266709327698,0.17188343405724],[-0.059862066060305,-0.035841673612595,-0.20956766605377],[0.028426179662347,0.0068811345845461,-0.0022061949130148]],[[-0.0022227263543755,-0.0056214374490082,-0.01811027340591],[-0.085731275379658,0.10928815603256,0.0037853324320167],[-0.1515448987484,-0.090517625212669,-0.060117080807686]],[[-0.0016467889072374,0.11971035599709,-0.03406285494566],[-0.072782851755619,-0.045939948409796,0.069679923355579],[-0.072071559727192,-0.082997895777225,-0.021754877641797]],[[0.082544960081577,0.041425883769989,-0.09242694824934],[0.049062963575125,-0.062878765165806,-0.08909922093153],[-0.10752802342176,0.10633861273527,0.18062125146389]],[[0.16170629858971,0.17046774923801,0.092387087643147],[-0.089202754199505,0.02035990729928,-0.061997149139643],[0.12415225803852,0.0095995161682367,-0.041831854730844]],[[-0.020925957709551,-0.014459040015936,0.17787650227547],[-0.04430453106761,0.070744775235653,0.13579046726227],[0.20271591842175,-0.075307995080948,-0.10640635341406]],[[-0.064873084425926,-0.05382914096117,-0.1072500795126],[-0.03689393773675,0.050802554935217,-0.10407766699791],[-0.0033821396064013,-0.0031674229539931,0.036069076508284]],[[-0.1255200356245,-0.079123958945274,-0.11563983559608],[0.0069327931851149,0.078167304396629,-0.026279471814632],[-0.063998252153397,-0.051024906337261,0.025028306990862]],[[0.20170769095421,-0.061138808727264,-0.031712170690298],[-0.12786720693111,-0.012554448097944,-0.02922435849905],[-0.034586768597364,0.092651858925819,0.075566448271275]],[[-0.11770168691874,0.0092127993702888,0.0095121189951897],[-0.13392658531666,0.11941386759281,0.10345466434956],[-0.15402579307556,-0.10345286875963,0.072619833052158]],[[-0.040164548903704,0.0042733768932521,-0.011025075800717],[0.030660899356008,-0.22948381304741,-0.0098286177963018],[-0.26848086714745,-0.092359840869904,-0.098291769623756]],[[0.09150718152523,0.088018983602524,-0.081833899021149],[-0.19192308187485,0.014345463365316,-0.029791500419378],[-0.17194552719593,-0.10155637562275,-0.16179017722607]],[[-0.09308897703886,-0.032465670257807,-0.12601011991501],[0.11589886248112,-0.0070256143808365,0.091934092342854],[-0.16098581254482,-0.030937027186155,-0.14742796123028]],[[-0.084872685372829,-0.05201118811965,0.078466385602951],[-0.055592004209757,-0.065199203789234,-0.0088458890095353],[0.020553765818477,-0.015235270373523,0.10783451795578]],[[-0.047648925334215,-0.077180758118629,0.044749066233635],[-0.057124488055706,-0.063405975699425,-0.017101800069213],[-0.063472963869572,-0.0028695347718894,-0.02657968737185]],[[0.077660076320171,0.059699889272451,0.091407440602779],[-0.0010774956317618,0.0063220695592463,-0.0046428730711341],[-0.12289700657129,0.040025018155575,0.1116828545928]],[[0.068153031170368,0.096009030938148,0.02064486593008],[0.15168839693069,-0.070433281362057,-0.1464662104845],[-0.081491500139236,0.050626270473003,0.21345080435276]],[[0.0016781637677923,-0.031466260552406,0.13963104784489],[-0.16167525947094,-0.083321489393711,-0.043782588094473],[0.11064381152391,0.064646050333977,-0.023831168189645]],[[-0.016295114532113,-0.046274710446596,0.017273530364037],[0.1070289388299,0.066612526774406,-0.061888173222542],[-0.002899139886722,-0.036490231752396,-0.040405761450529]],[[0.029115285724401,0.043358944356441,0.058443989604712],[-0.10425842553377,0.034947257488966,-0.0099691618233919],[-0.018511909991503,-0.080793082714081,0.019399268552661]],[[-0.083544157445431,-0.074167810380459,-0.12223029136658],[-0.15375562012196,0.061081420630217,0.10998505353928],[0.058539044111967,-0.21203860640526,-0.032669804990292]],[[-0.033903431147337,-0.061452440917492,-0.16100330650806],[0.13073299825191,0.11635273694992,-0.0065366583876312],[-0.21266649663448,0.061014115810394,0.074967794120312]],[[-0.035844042897224,-0.10433591902256,-0.077628925442696],[0.0054308245889843,0.022019792348146,-0.022015612572432],[-0.039713401347399,-0.048826526850462,-0.12405703961849]],[[0.11130110174417,0.062479447573423,-0.10710802674294],[-0.06467118114233,-0.010571845807135,-0.082793682813644],[-0.054101295769215,0.12909764051437,0.0087661752477288]],[[-0.055378653109074,-0.0081625822931528,-0.051061809062958],[0.053451720625162,0.022745860740542,-0.044582605361938],[-0.08625553548336,-0.1196905374527,0.091406263411045]],[[-0.20576716959476,0.02806712500751,-0.010299865156412],[0.060775425285101,0.0013773924438283,-0.030282657593489],[-0.12011120468378,-0.034684728831053,0.12451087683439]],[[-0.030983950942755,-0.085606768727303,-0.0020683677867055],[0.022281398996711,-0.05476250872016,-0.067837968468666],[0.12822577357292,-0.15156555175781,-0.063692823052406]],[[-0.030955296009779,0.085366986691952,0.026902245357633],[-0.10738278180361,-0.092601008713245,0.097157523036003],[0.10103537887335,0.062964856624603,-0.038188964128494]],[[0.12016594409943,0.1257991194725,-0.027865005657077],[-0.23920796811581,0.010797831229866,-0.10443272441626],[0.34442892670631,0.092036299407482,0.03415546938777]],[[-0.067600473761559,-0.061882887035608,0.11236226558685],[0.019125688821077,-0.052245587110519,-0.057603623718023],[0.095712140202522,-0.0133554963395,-0.068918757140636]],[[-0.043710742145777,-0.1377292573452,0.057213332504034],[0.044990073889494,-0.042091108858585,-0.022554028779268],[0.030622171238065,-0.013148349709809,-0.12768349051476]],[[0.044411331415176,0.029134647920728,0.074697218835354],[0.042991530150175,0.031552948057652,0.00018156683654524],[0.011557778343558,0.1691280901432,0.014175952412188]],[[-0.069130428135395,0.22490081191063,-0.0033831251785159],[0.055943515151739,-0.12040834128857,0.049257084727287],[0.03247157484293,0.11028986424208,-0.18752923607826]],[[-0.080740034580231,-0.076391838490963,0.046821914613247],[0.051772490143776,-0.00028079326148145,-0.058786801993847],[-0.13918763399124,-0.025825573131442,-0.0049245469272137]],[[-0.041387286037207,-0.012696019373834,0.086300954222679],[0.072905905544758,-0.16029943525791,-0.19783866405487],[-0.038548719137907,0.018283009529114,-0.19415499269962]],[[-0.12130634486675,0.025879425927997,-0.023958418518305],[-0.086735099554062,0.056992262601852,0.054366737604141],[-0.027611639350653,-0.094559475779533,0.027364674955606]],[[0.017178466543555,-0.02169750444591,-0.022402584552765],[0.093454711139202,-0.060182131826878,0.042599100619555],[0.069566436111927,0.04634914919734,-0.082226648926735]]],[[[-0.27148067951202,-0.011947349645197,-0.091105967760086],[-0.091554015874863,-0.03237646073103,-0.061300724744797],[0.1068220436573,0.07509732991457,0.011383462697268]],[[0.09706961363554,0.11710150539875,0.090743660926819],[0.078728131949902,-0.0358951613307,-0.042475428432226],[0.042151294648647,-0.034268446266651,0.040027048438787]],[[-0.081181310117245,0.042841903865337,-0.043815691024065],[-0.041863955557346,0.04226390644908,0.0050131184980273],[0.021016320213675,-0.05276694893837,-0.18111863732338]],[[-0.079205438494682,-0.11409217119217,-0.085303962230682],[0.030266765505075,0.047630749642849,0.029834786430001],[-0.04725681245327,0.013164798729122,0.10036645829678]],[[0.013276079669595,-0.028105551376939,0.066378876566887],[-0.042845115065575,-0.087765969336033,0.035413965582848],[0.033014561980963,0.10638171434402,0.056273482739925]],[[0.046309843659401,0.044843904674053,0.040190912783146],[0.06438347697258,0.047601379454136,0.0057022487744689],[-0.033328518271446,-0.11212358623743,-0.053544823080301]],[[0.11534048616886,-0.0092381238937378,0.043584171682596],[0.0084920525550842,0.024141740053892,0.10364972800016],[-0.038314249366522,-0.052627924829721,0.067223504185677]],[[0.066282473504543,0.11012161523104,0.017891112715006],[0.021540446206927,0.051747340708971,-0.095486477017403],[0.04701067134738,-0.016419650986791,-0.0076708500273526]],[[0.039021350443363,0.027473101392388,0.0101423189044],[-0.1273972094059,0.026903515681624,-0.12644210457802],[-0.069236740469933,0.015741476789117,-0.087260581552982]],[[-0.026359526440501,-0.15563778579235,0.024905363097787],[-0.14620833098888,-0.017119105905294,0.013262526132166],[0.0041886358521879,0.076445706188679,-0.013578956946731]],[[0.074494302272797,0.015924731269479,-0.18565578758717],[-0.036358643323183,0.035242166370153,0.061087559908628],[-0.0025395753327757,0.12866015732288,-0.024187922477722]],[[-0.098660685122013,0.05031830817461,-0.23294438421726],[-0.036661766469479,0.023787785321474,-0.052731972187757],[-0.033578213304281,0.11356991529465,0.037006754428148]],[[0.15181760489941,0.078937456011772,-0.045673880726099],[0.017079714685678,0.041188344359398,0.0075808181427419],[-0.052901774644852,0.11338418722153,0.035304304212332]],[[0.24037702381611,0.030019886791706,0.16755051910877],[0.21623732149601,0.0011538467369974,0.067448578774929],[-0.047401014715433,-0.025265539065003,0.05785696208477]],[[0.03330821543932,0.078487373888493,0.064530625939369],[-0.050141047686338,-0.051092863082886,0.020446307957172],[0.056088373064995,0.10010128468275,0.088559702038765]],[[-0.0036313745658845,0.048576418310404,-0.012661620974541],[-0.24040549993515,-0.12207381427288,-0.16648562252522],[0.068116292357445,-0.015639122575521,-0.1388263553381]],[[-0.22535337507725,0.12351965159178,-0.0084207579493523],[0.061087600886822,0.095497451722622,-0.070284627377987],[-0.025927966460586,0.020605087280273,-0.03774619102478]],[[0.17633128166199,-0.18196365237236,-0.15750746428967],[0.19231037795544,0.023993149399757,0.24501504004002],[0.028023861348629,-0.13501311838627,-0.057637855410576]],[[-0.15273588895798,-0.049569513648748,0.015496418811381],[-0.029880095273256,0.0017142955912277,0.040831279009581],[-0.0555155351758,-0.0028112241998315,-0.020746381953359]],[[-0.080705337226391,-0.064263962209225,-0.015119697898626],[-0.079705819487572,-0.04990029707551,0.031880371272564],[0.093934215605259,-0.02092183381319,0.023803507909179]],[[-0.08953120559454,0.036738622933626,-0.11656756699085],[0.011061703786254,-0.011132343672216,0.11112090200186],[-0.31712916493416,-0.047360334545374,-0.10110562294722]],[[0.046350341290236,0.036869287490845,0.025245115160942],[0.034266602247953,-0.015683198347688,-0.13213378190994],[0.050020664930344,-0.051349084824324,-0.084568157792091]],[[-0.064502157270908,0.10518807917833,-0.050264626741409],[-0.015632770955563,0.020617678761482,-0.026134995743632],[0.0051774275489151,0.041534435003996,-0.063580363988876]],[[-0.091354206204414,0.041329886764288,-0.084158457815647],[-0.010114228352904,0.078955568373203,0.00090835418086499],[-0.10665496438742,0.046657390892506,-0.038987319916487]],[[-0.080682136118412,0.012547632679343,0.0050903703086078],[0.058895420283079,-0.099899120628834,-0.00019414322741795],[0.069492049515247,0.016291154548526,-0.09422542899847]],[[-0.10960664600134,-0.044068280607462,-0.0082744332030416],[-0.10059720277786,0.09609255194664,0.10902874916792],[-0.044041164219379,0.063954293727875,0.0089028114452958]],[[0.02287358418107,0.055117536336184,-0.067115090787411],[0.038901705294847,0.020820509642363,-0.0073807998560369],[-0.0021119720768183,-0.13264983892441,0.016211559996009]],[[-0.040036205202341,-0.009447792544961,-0.078224316239357],[-0.0026969767641276,-0.066043689846992,-0.042009402066469],[-0.042658261954784,0.11106680333614,0.015075614675879]],[[0.015334852971137,0.078022085130215,-0.028272787109017],[-0.10590359568596,0.0096548097208142,-0.06176907941699],[0.09957105666399,-0.092223793268204,0.084403090178967]],[[0.090697661042213,-0.01182413008064,-0.1162057518959],[-0.052666902542114,0.0042817620560527,-0.018756963312626],[-0.24607606232166,0.0053089624270797,0.068620294332504]],[[-0.039412822574377,-0.13300573825836,0.033748909831047],[0.086381830275059,-0.02631545625627,0.061501730233431],[-0.15639333426952,-0.20289148390293,0.074718296527863]],[[-0.046968165785074,-0.015959860756993,0.10056173801422],[0.073995292186737,-0.0088615519925952,-0.02477896399796],[0.062830232083797,0.0057525127194822,-0.050911571830511]],[[0.19670587778091,0.12528581917286,0.055303789675236],[-0.059313740581274,0.072099290788174,-0.11098182946444],[0.10423354059458,0.069681756198406,-0.19901955127716]],[[-0.16092467308044,-0.28289198875427,-0.12637071311474],[-0.075060024857521,-0.030201926827431,-0.039746258407831],[-0.062072593718767,-0.25617092847824,-0.092795342206955]],[[-0.045070238411427,0.048000793904066,-0.073096640408039],[-0.14480225741863,-0.049430470913649,-0.044167414307594],[0.041917011141777,0.1340921074152,-0.017227051779628]],[[-0.072185754776001,0.1323457211256,-0.022055646404624],[-0.074951127171516,0.043739885091782,0.059421472251415],[0.14288665354252,0.060068614780903,0.02381169423461]],[[0.039624311029911,-0.024125088006258,0.098088763654232],[0.17884109914303,0.10025434941053,0.036899987608194],[-0.19397467374802,-0.02326219342649,-0.021830825135112]],[[0.048862107098103,0.048119969666004,0.056769337505102],[0.15977132320404,-0.10789340734482,-0.028552798554301],[-0.0065589249134064,0.092040196061134,-0.085688233375549]],[[-0.067198179662228,0.066760219633579,-0.075676552951336],[0.0095102842897177,0.0097511149942875,0.047624308615923],[-0.06329682469368,0.0073361154645681,0.011128540150821]],[[0.071116365492344,0.0088486382737756,0.13382212817669],[-0.11417866498232,0.026646070182323,-0.030413009226322],[-0.03504378721118,0.0058920541778207,-0.089306600391865]],[[-0.099308699369431,-0.091580383479595,-0.043853599578142],[0.069647595286369,-0.027554705739021,-0.044994860887527],[-0.066581591963768,-0.063172072172165,0.0064366976730525]],[[0.0035920047666878,0.0073701734654605,-0.038612712174654],[0.057252559810877,0.0092067252844572,-0.0021427606698126],[-0.062837675213814,0.0038096306379884,-0.098601534962654]],[[0.013756431639194,-0.042899616062641,0.0058017480187118],[-0.023557014763355,0.034191928803921,-0.054364960640669],[-0.032754924148321,0.029800418764353,-0.035637736320496]],[[-0.147964656353,-0.03131477534771,-0.0071906833909452],[0.065587610006332,0.10484962910414,0.078315824270248],[-0.09345668554306,-0.057565867900848,-0.032548740506172]],[[0.037298306822777,-0.056750264018774,-0.0037091569975019],[0.10765571892262,-0.021191483363509,-0.014602131210268],[-0.047979142516851,-0.039699710905552,0.049972753971815]],[[-0.06990522146225,-0.048302907496691,0.04557317122817],[0.10407392680645,0.022574393078685,-0.0099675860255957],[-0.0047913719899952,-0.13065771758556,-0.051994554698467]],[[-0.04366697743535,-0.11196454614401,0.09680251032114],[-0.052588030695915,0.051071483641863,-0.12421222031116],[0.07672318816185,-0.0045695411972702,0.050680842250586]],[[-0.1741466075182,0.088605843484402,-0.21207492053509],[-0.12071610242128,0.019537772983313,0.093051642179489],[0.027817023918033,0.0051681539043784,-0.078036524355412]],[[-0.070861116051674,0.032036408782005,0.0041111861355603],[-0.011491762474179,-0.015340330079198,-0.063044771552086],[-0.154699832201,-0.079071067273617,-0.1263263374567]],[[-0.10612986981869,-0.0060727586969733,0.094472780823708],[0.0094790607690811,-0.056463275104761,-0.1396449804306],[0.15320391952991,-0.033674109727144,0.032020170241594]],[[0.052997570484877,0.1337483972311,-0.018729710951447],[-0.014911844395101,0.077605575323105,0.017542611807585],[-0.1532187461853,0.064242444932461,0.039693955332041]],[[0.10776712745428,0.052435129880905,-0.021217854693532],[-0.060194179415703,-0.15055340528488,-0.038918849080801],[0.14794155955315,0.02247604355216,-0.1073257252574]],[[0.0043733092024922,-0.016946516931057,-0.13320952653885],[0.083523109555244,0.070498183369637,0.032899424433708],[-0.32074555754662,-0.058893401175737,-0.041987083852291]],[[0.11713870614767,0.0027800144162029,0.056380297988653],[0.082674987614155,-0.0021355389617383,0.033787962049246],[0.0065490356646478,-0.0023798039183021,-0.044395636767149]],[[-0.0026015462353826,-0.062142919749022,-0.16979768872261],[0.029481453821063,0.080748446285725,0.062185864895582],[-0.12776054441929,-0.12769024074078,-0.145402520895]],[[0.12739871442318,0.052873585373163,0.052238512784243],[0.025132238864899,-0.12386342138052,0.069405660033226],[0.11502048373222,0.08949626237154,0.15851974487305]],[[0.0089043183252215,0.081828877329826,-0.19872969388962],[-0.12029220163822,0.017264945432544,-0.03713122010231],[0.056205302476883,0.057993751019239,0.02806263230741]],[[-0.2967346906662,-0.092060983181,-0.18038786947727],[-0.047299165278673,0.041999511420727,-0.027092196047306],[-0.083039954304695,-0.14007757604122,-0.2151543200016]],[[0.059160362929106,0.081207141280174,0.047871582210064],[0.088558942079544,-0.0074932808056474,-0.049296356737614],[0.03354611992836,0.11520676314831,-0.047533497214317]],[[0.038576636463404,-0.01546882558614,-0.076372645795345],[0.11634060740471,-0.057816188782454,-0.13709650933743],[0.061109460890293,0.028793277218938,0.06511227786541]],[[0.005913014523685,0.11254245787859,0.12864539027214],[-0.020141065120697,-0.031339153647423,-0.030888564884663],[0.03646569699049,-0.0053842412307858,-0.083726733922958]],[[-0.06601720303297,-0.052428692579269,-0.032472275197506],[0.031142322346568,0.032649390399456,0.012470664456487],[-0.1599015891552,-0.068099305033684,-0.048031590878963]],[[0.13147085905075,0.20320898294449,0.037763051688671],[0.05215261131525,0.044669643044472,-0.076236344873905],[0.033442433923483,0.063777968287468,-0.014261319302022]],[[-0.0068065766245127,-0.14558883011341,0.068618185818195],[-0.072242185473442,-0.10452589392662,0.016499461606145],[0.063459120690823,-0.007513081189245,0.18923401832581]]],[[[-0.08724757283926,-0.042302682995796,0.14912436902523],[0.010238577611744,-0.0065100830979645,0.090339139103889],[-0.018178194761276,-0.11756140738726,0.06334713101387]],[[-0.0071655758656561,-0.072629779577255,0.0097399586811662],[-0.0094316452741623,-0.029451021924615,-0.12834453582764],[-0.077813245356083,0.030158905312419,0.039450172334909]],[[0.077702350914478,-0.11581087112427,-0.013869220390916],[-0.02571889013052,-0.13377268612385,0.00043230087612756],[0.022138917818666,-0.053300708532333,-0.06440594792366]],[[0.0014973662327975,0.012908305972815,-0.040429729968309],[-0.086344748735428,-0.025458613410592,0.059605088084936],[0.13540017604828,-0.04618264362216,0.0058345221914351]],[[0.14964996278286,0.10504498332739,-0.039688114076853],[0.055349245667458,0.057688500732183,-0.07670621573925],[0.054458606988192,-0.12244112789631,-0.0025477295275778]],[[-0.025045342743397,-0.040120206773281,0.020176475867629],[-0.12415231764317,-0.014666933566332,0.023790845647454],[-0.18426087498665,0.0063434210605919,0.073569782078266]],[[-0.065751098096371,0.13554747402668,-0.078965894877911],[0.0074168592691422,0.04162772744894,-0.054558210074902],[-0.12157446146011,0.056537542492151,0.011323070153594]],[[0.082827731966972,-0.053187973797321,0.043655216693878],[0.060554880648851,0.024066429585218,0.063736081123352],[-0.043420907109976,-0.070218876004219,0.020524356514215]],[[-0.043707806617022,-0.025504725053906,0.038764726370573],[0.045700009912252,-0.052638549357653,-0.03535895422101],[0.0013076798059046,-0.047510221600533,0.02906646952033]],[[-0.0020766542293131,-0.07113378494978,-0.04027471318841],[-0.081470489501953,-0.042442318052053,-0.055502813309431],[0.071331515908241,-0.037526547908783,-0.036236088722944]],[[-0.022348815575242,0.027898272499442,0.019312908872962],[0.045062053948641,-0.029704758897424,0.11081182211637],[-0.031117286533117,-0.077808983623981,-0.042725656181574]],[[0.010120078921318,0.057045057415962,0.028476841747761],[0.0070209689438343,-0.019227707758546,-0.12328394502401],[0.11019284278154,0.063448742032051,0.014191878028214]],[[-0.086914993822575,-0.03463726118207,-0.030133988708258],[-0.11967834830284,0.081688739359379,-0.031421191990376],[-0.055962607264519,0.0080891381949186,0.0055423644371331]],[[0.062274992465973,-0.059477429836988,-0.027444817125797],[0.095018841326237,-0.047308094799519,0.06453014165163],[-0.0011918323580176,0.022146303206682,0.03175450116396]],[[-0.084145441651344,0.077026076614857,0.027495365589857],[-0.01884001493454,0.010192285291851,-0.016321286559105],[-0.11178957670927,0.040719259530306,0.01999151520431]],[[0.042254336178303,0.053866136819124,-0.096576735377312],[-0.048489440232515,-0.02681534551084,-0.096656545996666],[0.029137892648578,-0.073920771479607,-0.10635308921337]],[[-0.010107420384884,-0.02585188858211,0.13413268327713],[-0.090961180627346,-0.0086921276524663,0.095975585281849],[-0.016745226457715,-0.17832913994789,0.054302852600813]],[[0.057720825076103,0.075216569006443,-0.0092293852940202],[-0.089882098138332,-0.047523394227028,0.045444015413523],[-0.12149119377136,-0.085085891187191,0.022210786119103]],[[0.033280789852142,0.013581840321422,-0.041905477643013],[-0.044404547661543,-0.023237941786647,0.077844709157944],[-0.053907841444016,-0.029535368084908,-0.056888345628977]],[[-0.14290288090706,-0.039330389350653,-0.014913585036993],[-0.008695580996573,0.022173054516315,0.06520090252161],[-0.1187062188983,-0.034276098012924,0.022177470847964]],[[-0.040463246405125,-0.064629137516022,0.055664908140898],[-0.043606333434582,0.050970412790775,-0.039499942213297],[-0.096805766224861,-0.032761864364147,-0.08916912227869]],[[0.082151286303997,-0.094078399240971,-0.039822284132242],[0.044066026806831,-0.059326112270355,-0.0082420185208321],[0.040183041244745,-0.072768621146679,-0.048221915960312]],[[-0.10176111012697,-0.073532804846764,0.0062856758013368],[-0.088844753801823,0.0051293536089361,-0.033119834959507],[-0.063664220273495,-0.033411230891943,-0.031438756734133]],[[0.047501984983683,0.076045177876949,0.065401166677475],[0.070141717791557,0.015490707941353,-0.10968423634768],[0.070307195186615,0.08704961836338,0.015829980373383]],[[-0.05158568918705,0.0083582261577249,0.014740800485015],[-0.076990351080894,-0.038454726338387,0.040840853005648],[0.14344614744186,0.039446704089642,0.092867635190487]],[[-0.17576485872269,0.090807288885117,0.096960857510567],[-0.11741943657398,0.052526008337736,0.043049767613411],[-0.14001068472862,0.011502420529723,0.059300791472197]],[[0.016436165198684,-0.0030986610800028,-0.0090988138690591],[0.088185407221317,0.099482856690884,0.050275735557079],[-0.12335461378098,0.068775311112404,-0.093374751508236]],[[-0.10573682934046,-0.1788819283247,0.14111469686031],[0.039197824895382,-0.10484221577644,0.084019936621189],[-0.057072293013334,0.018474264070392,0.065184585750103]],[[-0.010430374182761,0.057566087692976,0.10307606309652],[-0.00016852116095833,-0.16050188243389,-0.083764284849167],[0.038000710308552,-0.036273468285799,-0.047541677951813]],[[-0.096620708703995,0.073398195207119,0.081699952483177],[0.035179138183594,-0.023981736972928,-0.097649909555912],[-0.020084312185645,-0.066509917378426,-0.0095662847161293]],[[-0.077195405960083,0.12584221363068,-0.054136864840984],[-0.035149063915014,0.17550522089005,0.030079079791903],[-0.10653351247311,0.060804333537817,-0.077949203550816]],[[-0.004182793200016,0.061870582401752,-0.016315653920174],[0.032630503177643,-0.014591773971915,0.024741780012846],[0.089122623205185,-0.055604979395866,-0.047245115041733]],[[-0.029506254941225,-0.0010082392254844,-0.055482935160398],[0.041694793850183,0.011287427507341,-0.061098080128431],[0.013134003616869,-0.070050120353699,-0.01474282797426]],[[-0.12875561416149,-0.043125219643116,-0.052861500531435],[-0.022955968976021,-0.02592745795846,-0.068401746451855],[-0.010766865685582,0.0088763609528542,-0.032886147499084]],[[0.065095372498035,-0.097961038351059,-0.069544568657875],[0.0879882350564,-0.015855604782701,0.051460310816765],[0.064826503396034,-0.054303091019392,-0.015830023214221]],[[-0.013276479206979,-0.059565577656031,0.02317968942225],[-0.0048635909333825,-0.071403980255127,0.065090402960777],[0.14176766574383,0.020826933905482,0.11158554255962]],[[0.11511044204235,0.030478892847896,0.042577739804983],[-0.053751360625029,-0.072811380028725,0.0034850637894124],[0.012297666631639,0.05312467738986,-0.0040034814737737]],[[0.0205781403929,-0.10452602058649,0.0320138707757],[-0.059947565197945,-0.0049789831973612,0.039115846157074],[-0.02890189178288,0.024362307041883,-0.06478887796402]],[[0.0051427786238492,-0.017909832298756,0.078602321445942],[0.062284018844366,-0.056726716458797,0.003369685029611],[-0.10345989465714,-0.1103238016367,-0.049843911081553]],[[-0.005062086507678,0.048874873667955,-0.073302187025547],[0.0059378277510405,0.090307839214802,-0.045412447303534],[-0.02354458719492,-0.06541358679533,-0.065923675894737]],[[-0.034120220690966,0.018790340051055,-0.017236860468984],[-0.14516553282738,0.14862406253815,-0.0080402139574289],[-0.034694965928793,0.04127961397171,-0.10205484926701]],[[-0.05110264569521,0.076137490570545,0.037087209522724],[-0.084351174533367,-0.037187542766333,-0.030116885900497],[-0.1157276853919,0.061509415507317,-0.10600203275681]],[[-0.045515783131123,0.10953991860151,-0.16533702611923],[-0.029623722657561,-0.095539048314095,0.007843067869544],[0.060471631586552,0.11821692436934,0.034372620284557]],[[0.14656913280487,-0.15267780423164,0.087329283356667],[0.043201643973589,0.17561864852905,-0.045097295194864],[0.072754129767418,-0.04908799752593,0.044103808701038]],[[0.035973250865936,-0.016101639717817,-0.0051904930733144],[-0.20448817312717,0.01862770691514,0.085000604391098],[-0.0045820572413504,0.011443839408457,-0.074337400496006]],[[0.052321720868349,0.013696203939617,0.049738775938749],[-0.048803273588419,0.001912126201205,-0.054606143385172],[-0.054225880652666,0.02390949241817,0.086654841899872]],[[-0.14760033786297,0.06023134291172,0.016882101073861],[-0.031236408278346,-0.00609683804214,-0.089041978120804],[-0.076253786683083,-0.0054028942249715,0.022706924006343]],[[0.091791570186615,-0.017784938216209,-0.08075724542141],[-0.067961014807224,-0.0076099508441985,-0.057825930416584],[-0.056209269911051,0.060855813324451,-0.13516689836979]],[[0.10184203833342,0.048961792141199,-0.090310864150524],[0.021690033376217,-0.036494005471468,-0.055334012955427],[0.0027473361697048,-0.059879839420319,-0.077384643256664]],[[0.017572013661265,0.061581075191498,-0.12403831630945],[0.013260274194181,-0.011758027598262,-0.031136281788349],[0.011147445999086,0.019303074106574,-0.039452169090509]],[[0.0042828181758523,-0.0037635352928191,-0.027135951444507],[-0.014772243797779,-0.029754078015685,-0.021961737424135],[0.0032110747415572,-0.050870072096586,-0.0010883141076192]],[[0.016879012808204,0.04173893481493,-0.076581947505474],[-0.088379047811031,0.03679796308279,0.03842406719923],[0.040345463901758,-0.022955434396863,0.0013026488013566]],[[-0.12007825821638,0.0087400004267693,0.018961908295751],[-0.021806761622429,-0.012659126892686,-0.0016180681996047],[-0.021503737196326,0.026615800336003,-0.061899121850729]],[[-0.038959924131632,0.022775681689382,-0.096949405968189],[-0.091375961899757,-0.04539592191577,0.0042343903332949],[0.013600255362689,-0.080378971993923,0.10570607334375]],[[-0.091720335185528,-0.041313923895359,0.061628915369511],[-0.16811868548393,-0.045387212187052,-0.045157477259636],[0.052229147404432,0.032378565520048,-0.21179489791393]],[[0.03044088371098,-0.096714720129967,-0.11394734680653],[0.05973344296217,-0.050038263201714,0.098714292049408],[-0.01419566385448,0.0073801968246698,-0.027343522757292]],[[0.085098594427109,-0.055599391460419,-0.0081778932362795],[-0.067125126719475,0.001155890407972,0.047302883118391],[0.044870156794786,-0.12874992191792,0.048793289810419]],[[-0.097970008850098,0.14530891180038,-0.11005479842424],[-0.077315285801888,-0.02739922888577,-0.20876203477383],[-0.054179396480322,0.026634749025106,-0.081169545650482]],[[0.018137780949473,0.091634176671505,-0.00053039600607008],[0.065161868929863,0.034760303795338,-0.1258060336113],[0.12933170795441,0.045238271355629,0.07214118540287]],[[-0.053393233567476,0.061735659837723,0.091426879167557],[-0.025932962074876,0.0017765307566151,-0.011700191535056],[-0.038368731737137,0.036411944776773,-0.028445573523641]],[[-0.017588205635548,0.075773529708385,-0.0090460544452071],[-0.031276516616344,-0.021038271486759,-0.032983664423227],[0.080792464315891,-0.08237436413765,-0.026871353387833]],[[-0.081919096410275,0.034255106002092,0.052594419568777],[-0.018701516091824,-0.10630320012569,-0.046374198049307],[0.00021029698837083,-0.088346384465694,0.02286191470921]],[[-0.041792750358582,-0.0048912381753325,-0.020563300698996],[0.059229306876659,-0.019584830850363,0.034094952046871],[-0.010855698958039,0.098468750715256,-0.075568832457066]],[[0.015376037918031,0.022830823436379,0.040192171931267],[-0.1517957597971,-0.016420723870397,0.096114590764046],[0.088500656187534,0.022546643391252,0.066573061048985]]],[[[0.074557781219482,0.099845975637436,-0.1543937921524],[-0.067862048745155,-0.009625012986362,0.078577555716038],[0.031163277104497,0.099943615496159,-0.11393614113331]],[[0.084388166666031,0.17432430386543,-0.1756267696619],[0.0055697481147945,-0.046432230621576,0.0031339304987341],[-0.079899162054062,0.043643325567245,-0.15126483142376]],[[0.06238217651844,-0.13816192746162,0.019240105524659],[0.020865267142653,-0.017978640273213,0.039193022996187],[-0.0039695352315903,-0.00078891037264839,-0.23405639827251]],[[-0.0061510582454503,-0.044040709733963,0.053612284362316],[0.067635335028172,-0.038593348115683,0.039817169308662],[-0.049680288881063,-0.020920801907778,0.06649798899889]],[[-0.10912527889013,-0.019377108663321,-0.050577975809574],[0.013954740017653,-0.065135225653648,0.038384102284908],[-0.10637404024601,-0.01817693002522,-0.0098009761422873]],[[0.039315793663263,-0.029394404962659,-0.073498137295246],[-0.054950952529907,0.016406571492553,-0.011192647740245],[0.011360340751708,-0.05357737839222,-0.076040595769882]],[[0.084966517984867,0.019514415413141,0.065777599811554],[-0.00096984708216041,-0.018650868907571,-0.11319893598557],[-0.086136095225811,0.029175439849496,0.15719689428806]],[[-0.26613399386406,-0.041354764252901,-0.016095733270049],[0.023632934316993,-0.039266508072615,0.057501822710037],[0.014228140003979,0.017481908202171,-0.045865576714277]],[[0.080495730042458,0.034090582281351,0.041551738977432],[-0.023549852892756,0.034219425171614,0.021446855738759],[-0.0042086150497198,0.087478563189507,-0.010907914489508]],[[-0.00022067681129556,-0.088914260268211,-0.060463227331638],[-0.059557661414146,-0.056606635451317,-0.08365573734045],[-0.0029636137187481,-0.14414897561073,0.040358372032642]],[[-0.055898305028677,0.008893552236259,-0.082121774554253],[-0.028723487630486,-0.037009753286839,0.029105868190527],[0.02879836037755,0.0091339834034443,-0.10082595795393]],[[0.080723136663437,-0.0019090705318376,-0.056536134332418],[-0.040484558790922,0.011151529848576,0.056332107633352],[0.0018570087850094,0.16358345746994,0.11617187410593]],[[0.042460605502129,-0.15214323997498,0.075966261327267],[0.057819414883852,0.054951589554548,-0.0093759326264262],[0.060637250542641,-0.013603135943413,-0.067995652556419]],[[-0.13859775662422,-0.082613721489906,0.13478137552738],[-0.037531185895205,0.056370548903942,0.035123974084854],[0.11367233842611,-0.014935827814043,0.089604884386063]],[[0.25354635715485,-0.050381425768137,-0.0071864211931825],[-0.0050483867526054,0.023408787325025,0.046755719929934],[0.20082031190395,0.086341306567192,-0.14846806228161]],[[0.092062182724476,0.015151242725551,-0.072051964700222],[-0.025224966928363,-0.036179229617119,-0.20533402264118],[-0.15174721181393,-0.084774225950241,-0.035675682127476]],[[0.053374521434307,0.013127925805748,-0.019103527069092],[-0.093058422207832,0.035963494330645,0.10733313858509],[0.0096114687621593,0.0068562156520784,0.045016542077065]],[[0.1689867079258,0.11745565384626,-0.21726968884468],[0.021117610856891,0.064403042197227,-0.10808622837067],[0.0004069269343745,-0.11205279827118,-0.10257175564766]],[[-0.1286882609129,0.1281164586544,-0.013867485336959],[-0.082632459700108,-0.057922933250666,0.012787596322596],[-0.18561197817326,-0.052996799349785,-0.010830752551556]],[[0.013306067325175,-0.0079580210149288,-0.13285374641418],[0.072486355900764,-0.086231790482998,-0.085115663707256],[-0.11479675024748,-0.10840851813555,-0.063571974635124]],[[0.013882962055504,0.13188968598843,0.041760452091694],[-0.018147690221667,-0.014827129431069,-0.018760552629828],[-0.11472117900848,0.028270725160837,-0.04523803666234]],[[-0.072412140667439,-0.057634267956018,0.029724806547165],[0.056522708386183,0.031238643452525,0.0061352592892945],[-0.042572978883982,-0.040388058871031,-0.05430593714118]],[[-0.064934775233269,0.069125324487686,-0.19779010117054],[0.12959636747837,0.004827250726521,-0.024072401225567],[0.090602613985538,-0.01794608309865,-0.077393971383572]],[[0.061217647045851,0.050646349787712,0.26971501111984],[-0.059620261192322,0.032835274934769,-0.17851503193378],[0.0739511474967,-0.088474661111832,-0.098611079156399]],[[-0.054267611354589,0.002948003122583,-0.050215642899275],[-0.098783642053604,0.019072832539678,0.027955966070294],[-0.058870494365692,0.026782970875502,0.032459121197462]],[[0.027884824201465,0.035107176750898,-0.035273768007755],[-0.0036149334628135,-0.057035427540541,-0.0043750000186265],[0.030989097431302,-0.0090474169701338,0.018295804038644]],[[0.070007853209972,-0.076318711042404,-0.10050858557224],[0.076557449996471,-0.058132793754339,-0.0041339336894453],[0.020202919840813,-0.032300971448421,0.074819259345531]],[[0.079968333244324,0.18658983707428,-0.077349685132504],[-0.084450654685497,0.022729700431228,0.0016279033152387],[0.093006737530231,-0.042554423213005,0.12680159509182]],[[-0.080542288720608,0.068479143083096,-0.16151908040047],[-0.076598338782787,0.054120942950249,-0.07782968878746],[0.18605880439281,0.026620930060744,0.042959034442902]],[[-0.028582731261849,-0.1125388070941,-0.14331740140915],[0.032751474529505,-0.027118131518364,-0.15652143955231],[0.016378847882152,-0.065310291945934,-0.024103220552206]],[[0.025468897074461,0.022572785615921,0.06803173571825],[-0.084479756653309,-0.056592889130116,0.042885545641184],[0.01412190310657,0.053230293095112,-0.05743345990777]],[[0.02900331094861,-0.098156221210957,-0.020963767543435],[-0.050247326493263,0.13218113780022,0.070569202303886],[0.087799496948719,-0.049282893538475,0.032925456762314]],[[0.040148362517357,-0.012361311353743,0.091896653175354],[0.039404600858688,-0.022299237549305,-0.12746529281139],[0.0078878290951252,0.010352415032685,0.15120543539524]],[[-0.086310848593712,0.098839543759823,0.029861038550735],[0.057457130402327,-0.067320168018341,0.088177502155304],[0.050037167966366,0.017231475561857,-0.040824629366398]],[[0.0060784039087594,-0.1015146151185,-0.13957504928112],[0.055492416024208,-0.048791311681271,0.013992245309055],[0.1286589205265,0.067791290581226,0.040557578206062]],[[-0.1116311326623,0.065594062209129,0.043049793690443],[0.14657719433308,-0.07126472145319,0.013036662712693],[0.077605679631233,0.096059091389179,0.049667678773403]],[[-0.031511504203081,-0.015374969691038,0.033633604645729],[0.032035999000072,-0.014607147313654,0.024477679282427],[0.024052189663053,0.005822311155498,-0.032060351222754]],[[0.052429106086493,0.0051233149133623,0.051072597503662],[0.029734443873167,0.030249450355768,0.042855437844992],[0.030267598107457,-0.088031731545925,-0.12080386281013]],[[0.041101645678282,-0.015656100586057,-0.016572829335928],[-0.17150145769119,-0.056887075304985,0.13021631538868],[-0.1041002124548,0.078540399670601,-0.0672867000103]],[[-0.066253587603569,0.031425580382347,-0.063081130385399],[0.0072568911127746,0.018829382956028,-0.040205106139183],[0.15418830513954,-0.060125388205051,-0.075129941105843]],[[0.21614266932011,-0.1615489423275,0.0033102175220847],[0.014704152941704,-0.12985701858997,-0.12957818806171],[0.012600929476321,-0.082128003239632,0.037408463656902]],[[0.00094948126934469,0.0026274572592229,-0.086339876055717],[-0.062500111758709,-0.1794278472662,-0.057237308472395],[-0.0051649753004313,-0.031628236174583,-0.0015503219328821]],[[0.0562529489398,-0.0031241623219103,-0.11395375430584],[0.007296338211745,-0.096416994929314,0.010434141382575],[-0.10322970896959,-0.054401952773333,-0.038076087832451]],[[-0.0078231822699308,0.001810789341107,-0.080835349857807],[0.033745262771845,-0.10838679224253,0.014355328865349],[-0.031627859920263,-0.051648650318384,0.12028061598539]],[[-0.0075607504695654,-0.070245057344437,0.087721832096577],[-0.046256270259619,-0.0031949859112501,0.059752643108368],[-0.0026754434220493,-0.051071461290121,-0.05598384514451]],[[0.038768105208874,-0.021957743912935,0.0649773478508],[0.086221389472485,0.056855514645576,0.0073188357055187],[0.010945952497423,-0.009479976259172,0.069739654660225]],[[-0.012319438159466,-0.095445886254311,0.043744929134846],[-0.025711916387081,0.027325702831149,-0.012796874158084],[-0.0065558711066842,0.090646401047707,-0.063212744891644]],[[-0.12730433046818,-0.0065830629318953,-0.093677528202534],[0.096288435161114,0.019047297537327,0.102419257164],[0.051890511065722,0.0085085174068809,-0.0020104863215238]],[[-0.043688699603081,-0.019109463319182,-0.040329046547413],[-0.0053971013985574,0.07214780151844,-0.069509662687778],[-0.063142456114292,0.067107155919075,-0.092525884509087]],[[0.23783276975155,0.14005307853222,-0.045691207051277],[0.16370405256748,0.033786118030548,0.051226325333118],[-0.0733907148242,0.080220445990562,-0.07805947214365]],[[-0.092725969851017,0.017825054004788,0.023107122629881],[0.030688224360347,-0.038512617349625,-6.1065329646226e-05],[0.02505093626678,0.0092821773141623,0.043191015720367]],[[-0.013164592906833,-0.053108587861061,-0.059430241584778],[0.066172264516354,-0.021773120388389,-0.038527205586433],[0.0063270130194724,-0.049353536218405,0.084245063364506]],[[0.068676106631756,0.1335826665163,0.08775931596756],[-0.006846928037703,-0.068029150366783,-0.0038072874303907],[-0.061484020203352,-0.099751196801662,-0.14847914874554]],[[-0.011245105415583,0.017895875498652,0.13217052817345],[-0.02252820879221,0.016845237463713,-0.067480891942978],[0.024333344772458,0.034331042319536,0.027761567384005]],[[0.08354876190424,-0.18221826851368,0.13541114330292],[-0.10235951095819,0.077157497406006,0.16830609738827],[0.071397930383682,-0.21875955164433,-0.27146583795547]],[[-0.0028328716289252,-0.069468706846237,-0.037859492003918],[0.048447646200657,0.00077915570000187,-0.088014878332615],[0.18252746760845,0.029675407335162,0.087046407163143]],[[-0.036351297050714,0.062496747821569,-0.069979600608349],[0.11335051059723,-0.032874576747417,-0.1108436062932],[-0.085621498525143,0.0095000714063644,-0.01356463227421]],[[-0.010552602820098,0.10097298026085,-0.057381026446819],[0.085568830370903,0.11891832202673,-0.038263704627752],[-0.0070123593322933,-0.032462432980537,0.025430621579289]],[[0.098554164171219,-0.013643454760313,0.062063660472631],[0.059721045196056,0.13123545050621,0.064493931829929],[0.081334382295609,0.075574420392513,0.092745274305344]],[[-0.10220576822758,-0.037945833057165,-0.11890774220228],[-0.10645198822021,0.027137463912368,0.042845219373703],[0.012691190466285,-0.096474677324295,-0.079777203500271]],[[-0.028028255328536,-0.064593955874443,0.069777302443981],[-0.021317781880498,-0.074927136301994,0.12650628387928],[0.065912738442421,-0.046436611562967,-0.073124594986439]],[[0.014162814244628,-0.080175310373306,0.042168237268925],[0.051749389618635,-0.051005586981773,-0.10354458540678],[0.077533878386021,-0.12992680072784,0.030313922092319]],[[0.069708116352558,0.049797896295786,0.035007800906897],[-0.13066720962524,-0.10684285312891,-0.012765479274094],[0.22830559313297,0.068978726863861,-0.083997189998627]],[[-0.087755523622036,0.0098962159827352,0.064891293644905],[0.013527189381421,0.014524742029607,-0.04598880186677],[0.09959464520216,0.041431434452534,-0.030839551240206]]],[[[-0.086905248463154,-0.10264691710472,-0.064962074160576],[-0.11341928690672,-0.079412654042244,-0.19161728024483],[0.023244898766279,-0.05718021094799,-0.086904533207417]],[[-0.023820785805583,0.049616571515799,-0.1136756464839],[-0.079867422580719,-0.069628268480301,0.10160123556852],[-0.065464399755001,0.008308919146657,-0.14220364391804]],[[0.075605422258377,0.073694497346878,-0.087955646216869],[0.0043095294386148,-0.10334583371878,-0.052386686205864],[0.021767718717456,-0.032266698777676,0.0058946562930942]],[[0.011819656006992,-0.12626342475414,-0.0042192880064249],[-0.11481335014105,-0.025814199820161,-0.11198977380991],[-0.030124297365546,0.018716292455792,-4.992977483198e-05]],[[-0.069177322089672,-0.042027805000544,-0.16423489153385],[-0.0051024057902396,-0.037241078913212,-0.25612837076187],[-0.045791435986757,0.027982758358121,0.066183820366859]],[[-0.044519767165184,-0.05075815692544,-0.041680485010147],[0.05629900842905,0.0033325362019241,0.12288752943277],[-0.07562068104744,-0.067119650542736,-0.33422195911407]],[[-0.15246458351612,-0.022259010002017,0.13917809724808],[0.13257160782814,-0.039310991764069,0.074932880699635],[0.031333718448877,-0.10918823629618,-0.24639937281609]],[[0.030948368832469,0.066927425563335,0.028505956754088],[0.083316139876842,-0.049876689910889,-0.16748140752316],[0.035998091101646,0.14574015140533,0.081764601171017]],[[-0.055955801159143,-0.076030269265175,-0.27583011984825],[-0.011895528063178,-0.086332850158215,0.12116058915854],[-0.040109347552061,-0.022912828251719,-0.0063459840603173]],[[0.063206657767296,-0.058253537863493,-0.17880293726921],[0.0054069426842034,0.048917457461357,0.08885183930397],[-0.13501258194447,-0.002337817568332,0.044194046407938]],[[0.011835621669888,0.088932558894157,0.015146447345614],[0.00025790103245527,-0.053776178508997,-0.15237754583359],[-0.023505929857492,0.012408019974828,-0.074484877288342]],[[0.092961125075817,0.12926696240902,0.21754892170429],[0.016945511102676,-0.037635359913111,-0.088372580707073],[0.0046030799858272,-0.010834544897079,0.0097128544002771]],[[-0.021059904247522,-0.0081152757629752,0.25504219532013],[-0.098388284444809,0.0050083915702999,-0.049851983785629],[0.082920044660568,0.052307780832052,0.064997427165508]],[[-0.07332780957222,-0.040292005985975,-0.20348834991455],[-0.065338045358658,-0.019106173887849,-0.010844969190657],[-0.13334657251835,0.027890663594007,0.028165061026812]],[[0.019081119447947,0.070169992744923,-0.091279722750187],[-0.054735902696848,0.13393408060074,0.042867593467236],[-0.015903798863292,0.050397861748934,-0.058106932789087]],[[0.10384763777256,0.019193904474378,-0.026872485876083],[0.12597741186619,-0.021756147965789,0.1297590136528],[-0.071002811193466,0.0189138520509,0.018885454162955]],[[0.10516281425953,0.015911605209112,0.0056580645032227],[-0.025517132133245,0.13740791380405,-0.11459422856569],[-0.037990469485521,-0.0043455064296722,0.22643138468266]],[[-0.030687540769577,-0.062829367816448,-0.10657726228237],[0.10850647091866,0.052972067147493,-0.25981971621513],[0.010589744895697,-0.058579012751579,-0.023687059059739]],[[0.029035277664661,0.014433234930038,-0.037963092327118],[0.010998221114278,0.0071406243368983,-0.099706202745438],[-0.011043493635952,0.061840113252401,0.13971483707428]],[[-0.14983552694321,-0.017297407612205,0.070030048489571],[-0.089534744620323,-0.043988134711981,0.060389384627342],[-0.041675671935081,-0.086305946111679,-0.066107876598835]],[[0.00072351522976533,0.020603004842997,0.0097001120448112],[-0.00057608867064118,-0.067232184112072,-0.091367773711681],[-0.084647379815578,-0.10202044248581,-0.10885296016932]],[[-0.086078457534313,0.028858937323093,0.007536047603935],[-0.06281304359436,-0.0076847416348755,-0.0088238334283233],[-0.089982807636261,0.0042134332470596,-0.0094305975362659]],[[-0.0085753314197063,-0.052768915891647,-0.16548620164394],[-0.039055127650499,0.0062018427997828,0.069353833794594],[-0.073691494762897,-0.056521270424128,-0.031851060688496]],[[0.036313034594059,-0.048938632011414,0.06652720272541],[0.081660233438015,0.053737673908472,0.046932309865952],[-0.16749493777752,-0.25437512993813,-0.30581438541412]],[[0.044850770384073,-0.039626874029636,-0.3199211359024],[-0.034489467740059,0.021050287410617,0.11142591387033],[0.10985615849495,0.10284226387739,0.20119363069534]],[[0.079173758625984,-0.031212260946631,-0.14383502304554],[0.013341001234949,0.085055306553841,-0.004172442946583],[-0.0078383311629295,0.055093921720982,-0.058012414723635]],[[-0.050648771226406,0.018735092133284,-0.045305799692869],[0.13280536234379,-0.0041372468695045,-0.21080610156059],[0.039614908397198,0.13421918451786,0.14067275822163]],[[0.0085922004655004,-0.071405068039894,0.11392506211996],[0.097852811217308,-0.01081726513803,-0.28011929988861],[-0.077150121331215,-0.040480107069016,-0.079014055430889]],[[-0.0022495009470731,0.14682370424271,0.11499118059874],[-0.047530572861433,-0.036469131708145,-0.15637853741646],[0.0021704072132707,0.030420864000916,-0.02239290997386]],[[0.070913136005402,0.0052998615428805,0.058545030653477],[-0.10613285750151,-0.12122683227062,-0.03707192838192],[-0.034298613667488,-0.045679304748774,0.018764082342386]],[[-0.081445842981339,-0.067123427987099,0.25456923246384],[0.059138890355825,-0.033162720501423,-0.096911184489727],[-0.038641478866339,0.0013943244703114,-0.077332489192486]],[[-0.03788847848773,-0.064759396016598,-0.056159999221563],[-0.031560566276312,0.044457271695137,0.063534922897816],[0.052424866706133,0.026785740628839,-0.0071284789592028]],[[0.074476167559624,-0.036767158657312,0.10893577337265],[-0.013682464137673,-0.10094301402569,-0.18328860402107],[-0.20547932386398,-0.03243588283658,0.1433467566967]],[[0.0088758729398251,0.15140543878078,-0.074262700974941],[0.025758309289813,0.067732468247414,-0.078659057617188],[-0.02750432305038,0.10017738491297,-0.27524894475937]],[[0.018649887293577,0.021987801417708,0.093839570879936],[-0.04452496021986,-0.078356854617596,0.14885790646076],[0.15026615560055,0.043361082673073,-0.024515446275473]],[[-0.0091690449044108,0.11211067438126,0.10182408988476],[0.17451740801334,0.087235502898693,0.063560217618942],[0.064844638109207,-0.062092211097479,-0.009033165872097]],[[-0.017669036984444,0.10542798787355,0.018461886793375],[-0.22457891702652,0.05661902576685,0.1692733168602],[-0.011589520610869,0.060122281312943,0.022262865677476]],[[0.031930167227983,0.0036503144074231,-0.11803071945906],[-0.047257848083973,0.018023353070021,-0.084973618388176],[-0.046683307737112,-0.042036555707455,-0.099594824016094]],[[-0.089811719954014,-0.032955970615149,0.18556797504425],[-0.087461404502392,-0.020658815279603,-0.077566541731358],[-0.035447366535664,0.075072146952152,-0.1373772919178]],[[0.020401423797011,-0.12032846361399,-0.10136063396931],[-0.17140981554985,-0.080930672585964,0.087907686829567],[0.16248172521591,0.07152085006237,-0.018468314781785]],[[0.043173640966415,0.0093626109883189,-0.03998725861311],[-0.067722640931606,-0.044368021190166,0.23498529195786],[-0.004734096582979,-0.0081147290766239,0.17777875065804]],[[0.10892816632986,0.089841894805431,-0.14700523018837],[-0.002380060730502,-0.18199656903744,-0.048446450382471],[0.065345540642738,-0.055449075996876,-0.041936609894037]],[[0.079500310122967,-0.028034869581461,-0.089080691337585],[-0.12281198054552,-0.088047333061695,-0.028564980253577],[-0.14109325408936,-0.0093884468078613,0.11938305199146]],[[0.026122808456421,0.11666459590197,0.050309415906668],[-0.014530268497765,-0.032891485840082,0.090865455567837],[0.033062469214201,0.069225043058395,0.0090516917407513]],[[-0.048281863331795,0.024176832288504,0.36053130030632],[-0.01335559040308,-0.060087010264397,-0.08584925532341],[0.035183519124985,0.055373854935169,-0.019363665953279]],[[-0.083724409341812,0.12296386063099,0.045771483331919],[0.055793590843678,0.0023261192254722,-0.11089668422937],[-0.08658204972744,0.039868019521236,0.0064012971706688]],[[0.13196261227131,-0.028349729254842,0.10418244451284],[0.14466720819473,-0.0014804103411734,-0.061613198369741],[-0.068278431892395,-0.032952789217234,0.055855009704828]],[[-0.19665774703026,-0.011872573755682,-0.022794598713517],[-0.0064727780409157,0.12459623813629,-0.016655186191201],[-0.046911370009184,-0.010338619351387,0.21221673488617]],[[-0.0023503310512751,0.052693553268909,-0.026796936988831],[-0.14943218231201,0.033720258623362,-0.039167772978544],[0.023576961830258,0.068401321768761,-0.056911949068308]],[[-0.036363169550896,0.019712176173925,-0.15891873836517],[-0.023868137970567,0.070034094154835,0.0030231927521527],[0.12889912724495,0.13490332663059,0.059013102203608]],[[-0.042021796107292,0.082174345850945,0.13759469985962],[0.054122898727655,0.072076112031937,-0.36991849541664],[-0.14826655387878,-0.034655183553696,0.022477438673377]],[[0.01826623827219,-0.018669601529837,0.12672440707684],[-0.25543829798698,-0.06890082359314,-0.19000418484211],[-0.043422322720289,-0.067084312438965,-0.21117152273655]],[[-0.18410064280033,-0.05802920460701,0.050933409482241],[-0.137800604105,-0.0083585381507874,-0.10081165283918],[-0.040022447705269,-0.027487704530358,-0.054192461073399]],[[-0.051301494240761,-0.0046376013197005,0.31337597966194],[0.099784694612026,-0.064128346741199,-0.041121952235699],[-0.025554278865457,0.050612270832062,-0.075000360608101]],[[-0.034582283347845,-0.062009297311306,0.098733074963093],[0.070100784301758,-0.050693497061729,0.003875277005136],[-0.071727558970451,-0.048988752067089,0.040137130767107]],[[-0.01929740048945,0.053332362323999,0.0047526299022138],[0.004290655720979,-0.059978201985359,-0.050663281232119],[0.10279913246632,0.091334402561188,0.18558356165886]],[[0.035124313086271,-0.063631564378738,0.073359869420528],[-0.11384027451277,-0.033339850604534,-0.005233546718955],[-0.022047640755773,-0.021245585754514,0.036536656320095]],[[-0.083518385887146,0.040135484188795,-0.04133078455925],[-0.033738825470209,-0.02503857947886,0.12659522891045],[-0.012277880683541,-0.01191165857017,0.083942666649818]],[[0.020618416368961,0.080213010311127,0.099228009581566],[0.022807188332081,0.016830010339618,0.18643265962601],[0.045384082943201,0.1136507615447,0.15269230306149]],[[0.012858742848039,-0.053346648812294,-0.13793963193893],[0.075646348297596,-0.099917516112328,-0.11120092123747],[-0.01047286298126,-0.0035498710349202,0.15297308564186]],[[-0.078560069203377,0.053971737623215,-0.081623263657093],[-0.0047210203483701,-0.043115135282278,0.022851271554828],[0.0092761907726526,-0.042948883026838,-0.05619602650404]],[[0.0085278656333685,0.063182301819324,0.10184902697802],[0.087336421012878,0.011522717773914,0.23878821730614],[0.007849870249629,0.11113110184669,-0.11635791510344]],[[0.10181718319654,-0.060282982885838,0.089961543679237],[0.04473789781332,-0.0013159022200853,0.074505709111691],[0.11370639503002,0.10827960073948,-0.023541022092104]],[[0.019022164866328,0.11192601174116,-0.06027789786458],[-0.12596192955971,0.07304734736681,-0.10691224783659],[-0.031305618584156,0.0021682463120669,-0.021210832521319]]],[[[-0.048926021903753,0.052038952708244,0.021043865010142],[-0.038153719156981,-0.052950356155634,0.013871368020773],[-0.03632266074419,0.044130515307188,0.038116969168186]],[[-0.092629753053188,-0.090717189013958,-0.34118920564651],[-0.050667889416218,-0.077580869197845,-0.015233259648085],[0.083606384694576,0.02763651125133,-0.026030259206891]],[[0.039733711630106,0.010549989528954,-0.034280683845282],[-0.26285135746002,-0.048106357455254,0.039630122482777],[0.016580522060394,-0.013212025165558,0.026387792080641]],[[-0.30447617173195,-0.013617821969092,0.017066529020667],[0.18030461668968,0.043711692094803,-0.11034417152405],[0.077338449656963,0.023264817893505,0.16198016703129]],[[-0.041730716824532,-0.046921506524086,0.057067845016718],[-0.012030210345984,-0.024105630815029,-0.051400627940893],[-0.11168346554041,-0.062272548675537,-0.0087392013520002]],[[-0.15932948887348,-0.1149792522192,-0.088806122541428],[0.053274169564247,0.013598104938865,0.083491384983063],[-0.084456488490105,0.1059048473835,0.014868539758027]],[[0.03250951692462,0.012847258709371,-0.011018768884242],[0.01422723941505,-0.0092278122901917,0.032467409968376],[-0.11653019487858,-0.085550539195538,-0.014696694910526]],[[-0.10367501527071,0.04098791629076,0.04430091753602],[0.1685044169426,0.095588378608227,-0.12340600788593],[-0.087684512138367,-0.21626068651676,0.045844182372093]],[[-0.14993095397949,-0.017362270504236,0.0095296213403344],[0.012932823970914,0.015615156851709,0.10504996776581],[-0.017650473862886,0.0068979952484369,-0.054760601371527]],[[-0.048980623483658,-0.021408084779978,-0.044498585164547],[-0.016433281823993,0.059097040444613,0.03803763538599],[-0.018861141055822,0.11900053173304,-0.0017112997593358]],[[-0.019309407100081,-0.012104430235922,-0.067695945501328],[0.036906395107508,-0.098966814577579,0.012395761907101],[0.012403436005116,0.043566033244133,-0.087720565497875]],[[-0.15068170428276,-0.089948318898678,-0.0044549028389156],[-0.01108059566468,-0.1219038516283,0.0074254195205867],[-0.012130937539041,0.0069919740781188,-0.064933769404888]],[[-0.18549112975597,-0.13661506772041,-0.066074587404728],[0.064999490976334,-0.099655985832214,-0.1234530583024],[-0.064589314162731,0.052664894610643,0.10464327782393]],[[0.084624476730824,-0.037579849362373,0.0036658619064838],[0.087093852460384,0.15556775033474,0.031713429838419],[0.04235053062439,-0.024620605632663,0.02216886729002]],[[0.067134864628315,0.045156203210354,-0.030023148283362],[0.041989222168922,-0.073894321918488,0.050620399415493],[-0.029035672545433,-0.08841635286808,-0.11723552644253]],[[-0.10138516128063,-0.16661895811558,-0.028432177379727],[0.0063179000280797,0.052024565637112,0.061975121498108],[-0.0073783150874078,-0.058532159775496,0.084001988172531]],[[-0.026916375383735,-0.042916808277369,0.0054000299423933],[0.0097833788022399,0.022959813475609,0.089115120470524],[-0.033980239182711,-0.10536072403193,-0.1285328567028]],[[-0.1046445146203,0.0358577221632,-0.076596327126026],[0.011806973256171,-0.030916426330805,0.10939463973045],[0.14686903357506,0.028415825217962,0.0022966221440583]],[[-0.061645545065403,-0.10514435172081,0.042199172079563],[-0.026418084278703,0.025644406676292,-0.043605197221041],[0.060676276683807,-0.026347333565354,-0.0056330962106586]],[[-0.092123165726662,-0.021503748372197,0.029813418164849],[-0.0084654437378049,-0.0532071813941,-0.019636142998934],[0.04431077465415,0.014104320667684,0.0062256352975965]],[[-0.068842627108097,-0.095940381288528,-0.060705754905939],[-0.057832188904285,-0.002595296362415,0.055754128843546],[-0.069151766598225,0.0043761231936514,-0.043546158820391]],[[-0.018289141356945,-0.048019774258137,-0.033480428159237],[0.011606523767114,0.073435112833977,0.0069799115881324],[-0.095454752445221,-0.06301511824131,0.044462408870459]],[[0.026760183274746,-0.047658927738667,0.10580921173096],[-0.1018230766058,-0.10424173623323,0.057302106171846],[-0.13643470406532,-0.032663378864527,0.016057515516877]],[[0.062629662454128,0.022363562136889,0.096510522067547],[0.054124467074871,0.019122257828712,-0.042393788695335],[0.074937395751476,0.12524655461311,0.067264273762703]],[[0.10671037435532,0.087321534752846,-0.030339185148478],[-0.019804023206234,-0.056638967245817,-0.11252987384796],[-0.02754875831306,-0.028611714020371,0.11035756766796]],[[-0.026938209310174,0.010139504447579,-0.052346002310514],[0.043169569224119,2.9752278351225e-05,0.060808099806309],[0.014614808373153,0.041531901806593,-0.06474357098341]],[[-0.10116658359766,-0.097269430756569,-0.030370984226465],[-0.035809144377708,0.018127551302314,-0.0015494250692427],[0.033756528049707,0.0088336728513241,-0.0078176334500313]],[[0.12106795608997,0.032450810074806,-0.05319856479764],[-0.0019802977330983,0.045103587210178,-0.12058738619089],[-0.017771342769265,-0.11939445137978,0.2011354714632]],[[-0.042463351041079,-0.064040400087833,-0.11151751130819],[-0.057877197861671,-0.051052901893854,-0.030136097222567],[-0.043056521564722,0.015533361583948,-0.075754605233669]],[[0.0037708792369813,-0.025138540193439,0.060906693339348],[-0.14473408460617,-0.039189022034407,0.052380923181772],[-0.026442984119058,0.050920695066452,0.054029818624258]],[[0.024799320846796,0.082136027514935,0.13663055002689],[-0.034085180610418,0.023657720535994,-0.070793122053146],[-0.060499176383018,0.046030551195145,0.19952969253063]],[[-0.087949395179749,0.11338600516319,0.0036430994514376],[0.17805390059948,0.017001196742058,-0.0015918721910566],[0.06079850718379,0.11106109619141,0.08916550129652]],[[0.023042632266879,-0.0060359924100339,0.0090436544269323],[0.034986320883036,-0.072060234844685,-0.068925254046917],[0.16062539815903,0.13564030826092,0.090876922011375]],[[0.010587208904326,0.094393506646156,-0.00052748969756067],[0.063861198723316,0.12576280534267,-0.068480551242828],[-0.026898296549916,-0.094738736748695,0.091117322444916]],[[-0.10273752361536,-0.050259385257959,-0.11678289622068],[0.087864816188812,0.026002688333392,-0.020390711724758],[0.073722213506699,0.058920465409756,0.0452123247087]],[[-0.071245461702347,0.13245938718319,0.054059691727161],[0.020541682839394,0.014281257987022,-0.04635576531291],[-0.047111950814724,-0.034333817660809,-0.1725465208292]],[[0.024286964908242,-0.071848347783089,0.08886843174696],[-0.17312997579575,-0.015381979756057,-0.047274842858315],[-0.058066502213478,0.21878975629807,0.022645389661193]],[[-0.080202698707581,-0.016429537907243,-0.013489757664502],[0.049813397228718,0.032086368650198,0.028259176760912],[-0.0060132234357297,0.030669504776597,-0.011782106943429]],[[0.07843753695488,-0.033025745302439,-0.08015301823616],[-0.075713463127613,-0.075805529952049,0.081218212842941],[-0.039195690304041,-0.0438277348876,-0.033146418631077]],[[0.038103267550468,0.05251582711935,0.039588369429111],[-0.13144160807133,-0.057378794997931,0.03166875988245],[-0.11921832710505,-0.056965034455061,-0.068416364490986]],[[-0.22152371704578,-0.074987597763538,-0.20697669684887],[0.04005366563797,-0.0833635404706,-0.012587884441018],[-0.10658019036055,-0.015791360288858,-0.066125020384789]],[[-0.062325831502676,-0.014796786010265,-0.053479257971048],[0.043767396360636,-0.01316000148654,-0.092422410845757],[-0.081773012876511,0.04806887358427,0.033954795449972]],[[0.03381061181426,0.024095218628645,0.039601925760508],[0.035216476768255,0.2060402482748,-0.021928632631898],[0.01129309181124,-0.096812441945076,-0.019914006814361]],[[-0.17303121089935,-0.063918076455593,0.10561945289373],[-0.028035175055265,-0.024592533707619,-0.10888374596834],[-0.11069790273905,-0.059345293790102,-0.018112892284989]],[[0.039143744856119,0.08941163867712,0.075125105679035],[0.037849918007851,0.025411227717996,-0.017133660614491],[-0.11660461127758,-0.059653248637915,0.16228371858597]],[[0.010740878991783,0.1798592954874,0.072067618370056],[-0.0036860110703856,0.076745562255383,0.0055234483443201],[0.011846442706883,0.061754610389471,-0.078984506428242]],[[0.11502365767956,0.14939261972904,0.042027246206999],[-0.10199548304081,-0.10090027749538,0.082698009908199],[0.038002718240023,-0.04493473470211,-0.020589023828506]],[[-0.12164753675461,0.0022431483957916,0.0075002778321505],[0.032384522259235,-0.053557854145765,0.14132887125015],[-0.018391551449895,0.0056525245308876,0.0068211392499506]],[[-0.093855887651443,-0.13464729487896,-0.19945111870766],[0.01422808971256,-0.094589725136757,-0.084604330360889],[0.10777755081654,0.038914352655411,0.027836902067065]],[[0.024204911664128,-0.019985834136605,-0.031968347728252],[0.04790822416544,0.10648012161255,0.078710623085499],[0.0071598058566451,0.075072839856148,-0.042724523693323]],[[-0.045062683522701,-0.13567946851254,-0.14245083928108],[-0.031277030706406,0.10120897740126,0.17240792512894],[-0.025466749444604,-0.073616154491901,-0.07484894245863]],[[-0.056773215532303,0.0013499491615221,-0.029359498992562],[-0.10613743960857,-0.085307441651821,0.10963150113821],[0.20275031030178,0.14414548873901,0.22675338387489]],[[-0.060844007879496,-0.070212297141552,0.14158986508846],[-0.091756783425808,0.036053277552128,-0.051063310354948],[0.0085010388866067,0.025351915508509,-0.045903276652098]],[[0.028926126658916,-0.071369469165802,0.033110491931438],[-0.019673308357596,0.071151778101921,-0.057427275925875],[0.0481694675982,0.10835272818804,-0.09510525316]],[[-0.045212335884571,-0.21098290383816,0.13553340733051],[-0.25972062349319,-0.10134583711624,-0.18790383636951],[0.055009052157402,-0.087863773107529,-0.088050313293934]],[[-0.082610569894314,-0.03537517413497,0.031042579561472],[0.21372297406197,0.12390281260014,-0.10271496325731],[-0.11657494306564,-0.085728816688061,-0.0074469237588346]],[[0.01874078810215,-0.24141484498978,-0.094407953321934],[-0.20384185016155,0.028602780774236,0.16438260674477],[-0.10757349431515,0.11146997660398,-0.10519681125879]],[[-0.020665939897299,-0.045143488794565,-0.064383164048195],[-0.0068946797400713,-0.05882116407156,0.045680478215218],[-0.063629701733589,-0.0065580592490733,-0.005052512511611]],[[0.057122137397528,0.10347869992256,-0.033579532057047],[0.046734377741814,0.022925967350602,0.047089874744415],[-0.036171596497297,0.049104832112789,-0.00084457074990496]],[[0.047156203538179,0.014638436026871,0.031018877401948],[0.0034214840270579,-0.046241287142038,-0.07265492528677],[-0.044517565518618,0.042948629707098,0.11129786074162]],[[0.17877452075481,0.13760498166084,0.14841799438],[0.10101503133774,-0.020247425884008,-0.055274035781622],[0.10271748155355,0.00048422848340124,-0.041082113981247]],[[1.5592187992297e-05,-0.0048922495916486,0.025300707668066],[-0.0083213746547699,0.05474653467536,0.074537828564644],[0.042451031506062,0.033551156520844,0.11733157932758]],[[0.050872024148703,-0.10498015582561,-0.048970725387335],[-0.017538813874125,0.02630983106792,0.029909959062934],[0.0011599803110585,-0.1197338104248,-0.079526774585247]],[[0.030737517401576,0.06628829240799,0.045233923941851],[0.03809317573905,-0.078617446124554,-0.15997390449047],[0.039820313453674,0.0083320662379265,0.073903165757656]]],[[[-0.034780994057655,-0.032176710665226,-0.076926052570343],[-0.11606106162071,-0.0050369943492115,-0.037815373390913],[0.10878239572048,-0.0061266105622053,-0.046469666063786]],[[-0.065264947712421,-0.057336512953043,-0.17362613976002],[-0.1924487054348,-0.12141780555248,0.0013886464294046],[0.088951908051968,0.063641875982285,0.052897095680237]],[[0.10367048531771,-0.0066838981583714,-0.075132295489311],[0.07802526652813,-0.0075513822957873,-0.23493467271328],[-0.022384228184819,0.0055641056969762,-0.0049290372990072]],[[-0.029332658275962,-0.060738369822502,-0.0096414051949978],[-0.13164523243904,0.029567060992122,-0.07967534661293],[-0.091817490756512,0.075821541249752,0.003755618352443]],[[-0.014072545804083,-0.0028448682278395,-0.074186824262142],[-0.17395630478859,-0.089092038571835,-0.12508505582809],[-0.15698644518852,-0.033046428114176,-0.0086954394355416]],[[0.02632656134665,-0.054421838372946,-0.012316353619099],[-0.018064327538013,-0.0023243925534189,0.11787391453981],[-0.034841917455196,0.076872244477272,0.045601088553667]],[[-0.0072897830978036,0.036447044461966,0.053013805299997],[-0.059814516454935,0.0035891109146178,-0.022846395149827],[-0.033213216811419,0.010551710613072,-0.0036229330580682]],[[-0.040960386395454,0.017617477104068,0.012278780341148],[0.044835083186626,0.034119911491871,0.019327066838741],[-0.12234681099653,-0.029944617301226,0.093191981315613]],[[0.0063599394634366,-0.030784325674176,0.07398072630167],[-0.033691376447678,-0.069335468113422,0.0050352262333035],[0.11734820902348,-0.0023821145296097,0.076493605971336]],[[0.026775646954775,0.001153236371465,-0.10904116183519],[-0.048885870724916,0.01573552750051,0.0045280158519745],[-0.086711570620537,-0.080873146653175,-0.001858287025243]],[[-0.0093154832720757,0.034251645207405,-0.068617358803749],[0.051267046481371,0.095702722668648,0.052841901779175],[0.075758539140224,-0.007669139187783,-0.0542908385396]],[[-0.071064196527004,-0.03298257663846,-0.089755095541477],[0.10883769392967,0.13033077120781,-0.021027842536569],[-0.21135966479778,-0.047807354480028,-0.098270960152149]],[[-0.043937064707279,0.01425101980567,-0.045225951820612],[0.0029432957526296,0.091241829097271,0.089776411652565],[-0.0021213754080236,0.061055649071932,0.04772600159049]],[[-0.20172663033009,0.0093412846326828,-0.022035839036107],[-0.078547224402428,0.028967093676329,-0.0047550522722304],[0.045076820999384,0.071918919682503,0.018873764201999]],[[-0.043738313019276,-0.068708159029484,-0.0048365765251219],[0.0019865531940013,-0.029833229258657,0.11738245934248],[-0.018099600449204,-0.0048139560967684,-0.11495177447796]],[[-0.065893478691578,-0.001019781222567,0.050014544278383],[-0.012709064409137,-0.067349836230278,0.091057457029819],[0.058185249567032,-0.052379798144102,-0.074217475950718]],[[0.057994335889816,-0.051787100732327,-0.11519495397806],[0.021426932886243,-0.062995739281178,0.070676021277905],[-0.057207681238651,-0.034915708005428,0.12251555919647]],[[-0.051726739853621,0.062315933406353,-0.013618706725538],[-0.00013080821372569,0.01282555423677,-0.14557968080044],[-0.038562387228012,-0.01576460711658,-0.035071723163128]],[[-0.017958115786314,0.038518968969584,-0.082731276750565],[0.094534888863564,-0.034173596650362,-0.054731536656618],[0.0089046992361546,-0.034731570631266,-0.0051733483560383]],[[-0.019641825929284,-0.0074416748248041,-0.037664391100407],[0.062972471117973,0.035689514130354,-0.089835189282894],[0.1168650239706,0.037101607769728,0.10958695411682]],[[0.0089167831465602,-0.048487942665815,0.039045967161655],[0.003919992595911,-0.026596575975418,-0.047381769865751],[-0.086533673107624,0.0091785499826074,-0.0024484589230269]],[[-0.012546726502478,-0.066960893571377,0.023869121447206],[0.038704417645931,-0.055054377764463,0.041185654699802],[-0.0049837003462017,-0.03748545050621,0.042562436312437]],[[0.019359132274985,-0.090892016887665,-0.048099838197231],[0.085937395691872,-0.029421664774418,-0.041957460343838],[0.010432445444167,0.001725047128275,0.091988511383533]],[[0.048203960061073,-0.0016584227560088,-0.061642065644264],[-0.012801283039153,-0.02394506521523,0.095418378710747],[-0.037124592810869,-0.0058998065069318,0.013132962398231]],[[0.082021936774254,-0.049082469195127,-0.128552287817],[-0.067354835569859,0.043371856212616,-0.0291463509202],[0.24406439065933,-0.018458066508174,0.12014452368021]],[[0.070923686027527,0.093637749552727,-0.1457878947258],[0.0089753670617938,0.040008064359426,-0.097322583198547],[0.068403296172619,0.070862479507923,-0.13873814046383]],[[-0.040900889784098,0.10883018374443,0.13664565980434],[0.0070688351988792,0.06084667891264,0.062616564333439],[-0.00440852669999,0.032299473881721,-0.017919460311532]],[[-0.026421036571264,-0.027269788086414,0.14799664914608],[-0.060884214937687,-0.15788096189499,-0.046387996524572],[0.075010575354099,-0.039217688143253,-0.032318890094757]],[[0.029545649886131,0.014559832401574,-0.037410099059343],[-0.032199647277594,0.037812735885382,0.046203654259443],[0.1007167622447,0.012447335757315,-0.06451303511858]],[[0.037227276712656,0.065604120492935,0.056129574775696],[0.018742565065622,0.10080407559872,0.040728647261858],[-0.070388562977314,-0.02242286875844,0.068573869764805]],[[0.016538145020604,-0.099390961229801,0.13087500631809],[0.13375931978226,-0.020499870181084,0.017439477145672],[0.088136501610279,0.035468991845846,0.081698872148991]],[[0.05967591330409,-0.02030766569078,-0.0050697708502412],[-0.015891324728727,0.095025226473808,0.0057960650883615],[0.032173812389374,0.066235415637493,0.099716760218143]],[[0.035235162824392,0.0073082507587969,-0.069915190339088],[-0.00098572811111808,0.014458622783422,0.12083727121353],[-0.052551951259375,0.052563227713108,0.028542540967464]],[[0.11466263234615,0.055527534335852,0.022960893809795],[0.024578357115388,0.11399231851101,-0.016943940892816],[0.041140522807837,-0.00020444743859116,0.053724605590105]],[[0.068346090614796,0.036655101925135,0.010450143367052],[0.069259159266949,-0.054047293961048,0.07005613297224],[-0.11560777574778,-0.059153154492378,0.05596786364913]],[[0.12737564742565,0.020498272031546,-0.047807928174734],[0.042418006807566,-0.0055343047715724,-0.085984393954277],[0.090150244534016,0.012998632155359,-0.06380071491003]],[[-0.040748726576567,0.0089875590056181,0.10167942941189],[-0.046737063676119,0.17745360732079,0.073976963758469],[-0.047027707099915,-0.045656535774469,-0.047349691390991]],[[-0.074256017804146,-0.03305284678936,0.029713559895754],[-0.027098163962364,-0.024510085582733,-0.0525834672153],[-0.092650480568409,-0.10319644957781,-0.18780839443207]],[[-0.070318326354027,-0.073724448680878,-0.062211371958256],[0.1027757525444,0.057448290288448,0.077067442238331],[-0.088637292385101,-0.062927015125751,-0.057427894324064]],[[-0.0084833428263664,-0.098875038325787,-0.033624161034822],[-0.012843318283558,0.023786712437868,0.066933341324329],[0.086179226636887,0.11164505779743,-0.095386609435081]],[[0.040761191397905,-0.096428997814655,0.015407682396472],[0.10076528787613,-0.07921939343214,0.045261081308126],[-0.036711677908897,-0.056976448744535,0.008539080619812]],[[0.088144369423389,-0.15052495896816,-0.18028354644775],[0.10107260197401,-0.18747924268246,0.01582533121109],[-0.020783452317119,0.012420373037457,0.0034931544214487]],[[-0.033052120357752,0.023269537836313,-0.036930557340384],[0.043467100709677,-0.074747785925865,-0.016632931306958],[0.10169411450624,-0.1061402708292,-0.00084991514449939]],[[-0.052456568926573,-0.14933101832867,0.0090906312689185],[0.13707925379276,0.11530029773712,-0.022813165560365],[-0.010126045905054,-0.084361955523491,-0.046524938195944]],[[-0.10356034338474,-0.037163682281971,0.02633024007082],[0.096141621470451,0.018740912899375,0.074620746076107],[-0.0022807654459029,0.0030063616577536,-0.039636753499508]],[[0.093628965318203,0.0093563878908753,0.011335354298353],[0.0064109340310097,-0.16348783671856,-0.078025378286839],[-0.060955703258514,-0.078408911824226,0.09187600761652]],[[0.14002732932568,0.025999460369349,-0.0056947907432914],[0.08771313726902,0.042081207036972,-0.1017447412014],[0.10197708755732,0.067545905709267,0.12796813249588]],[[-0.066551230847836,-0.061456110328436,-0.16739581525326],[-0.0066512180492282,-0.0071681886911392,-0.10380401462317],[0.02112127840519,0.047850154340267,-0.081129774451256]],[[-0.15404288470745,-0.084736414253712,-0.097345046699047],[0.014641826972365,0.021376337856054,-0.035249140113592],[0.066278241574764,0.050952181220055,0.059239726513624]],[[0.0021661582868546,0.057450629770756,-0.12699830532074],[0.1877404153347,0.024149866774678,0.061036106199026],[0.045609015971422,-0.0080666095018387,-0.097742564976215]],[[-0.16671217978001,0.029204735532403,-0.072326339781284],[-0.065945670008659,-0.041460052132607,-0.049650933593512],[0.15410687029362,-0.013524809852242,0.017825180664659]],[[-0.04180558398366,0.014693349599838,0.0095164282247424],[0.058623559772968,0.030600028112531,-0.00061497942078859],[-0.14047589898109,-0.004908621776849,0.049294654279947]],[[-0.11297810822725,-0.10105337202549,-0.015363737009466],[0.0095328204333782,-0.0033341627568007,0.015865879133344],[0.03261835500598,0.0067702583037317,0.094389542937279]],[[0.098043881356716,-0.011541820131242,-0.018318315967917],[0.095836631953716,-0.05697263777256,-0.013943003490567],[0.04712525382638,-0.055818501859903,-0.12168441712856]],[[0.00048692745622247,0.039263397455215,-0.029498491436243],[0.030911818146706,0.056551594287157,-0.063939884305],[0.080443888902664,-0.0061518778093159,-0.077977031469345]],[[-0.037303622812033,0.032925803214312,-0.086616434156895],[0.013968869112432,-0.078293062746525,-0.012636952102184],[-0.018864845857024,-0.10051718354225,0.015378362499177]],[[0.079941160976887,0.079338476061821,0.063791915774345],[0.057956174015999,-0.059767786413431,-0.010858424007893],[-0.020779874175787,0.013825997710228,0.048833079636097]],[[0.067069940268993,0.13809993863106,0.0096808522939682],[-0.024567637592554,-0.043191183358431,0.0061155795119703],[0.033747840672731,-0.029770998284221,-0.0030453104991466]],[[-0.039884209632874,-0.019472578540444,0.022405801340938],[0.016457621008158,0.034668147563934,0.035748261958361],[0.00079528312198818,-0.007406456861645,0.050349984318018]],[[0.027203978970647,-0.00010863307397813,0.15260045230389],[0.050752229988575,0.12310369312763,-0.02619881182909],[0.021109778434038,-0.048963692039251,-0.025592101737857]],[[0.018755052238703,-0.076847895979881,0.08904617279768],[-0.0161537155509,-0.17484687268734,-0.053242769092321],[0.03229845315218,0.015493656508625,0.026561848819256]],[[0.13479013741016,0.0098293777555227,-0.0041830795817077],[0.046881955116987,0.023800419643521,0.062701836228371],[0.0088558690622449,0.0046172887086868,-0.018286710605025]],[[-0.068668857216835,-0.02987140789628,-0.0039311721920967],[0.017028529196978,-0.053161043673754,-0.002998432610184],[-0.048994895070791,0.14556084573269,0.076316930353642]],[[0.10360054671764,0.12158361077309,0.05351409688592],[-0.093733109533787,-0.0082041593268514,-0.039276253432035],[-0.072509773075581,-0.025675380602479,0.010648348368704]]],[[[-0.030112015083432,0.029426358640194,0.013045201078057],[-0.055788122117519,0.017561977729201,0.032477241009474],[4.3563701183302e-05,0.10171239823103,0.023803127929568]],[[-0.11294007301331,-0.034435365349054,0.060701426118612],[-0.085699833929539,0.010966437868774,0.055635005235672],[-0.14667116105556,-0.0049553513526917,-0.058001756668091]],[[0.0014182679587975,-0.022145638242364,0.022127324715257],[-0.08508013188839,0.027975920587778,0.023742645978928],[-0.081377059221268,0.027548803016543,-0.0084413168951869]],[[-0.063771262764931,-0.0085959285497665,-0.0047012027353048],[0.0047634514048696,-0.043075375258923,0.14112851023674],[0.060111455619335,-0.0049308938905597,-0.007004561368376]],[[-0.030335158109665,-0.1137687265873,0.0018935041734949],[0.042606931179762,-0.01627073250711,-0.079235941171646],[0.038553565740585,0.045436829328537,-0.078353315591812]],[[-0.013456686399877,-0.019199538975954,0.039934627711773],[-0.018316313624382,-0.015532011166215,-0.057846892625093],[-0.061350878328085,0.023668419569731,0.11214850097895]],[[0.068326734006405,0.03244573622942,-0.10043983906507],[-0.0039187129586935,-0.01714863628149,0.0157091896981],[-0.047105345875025,0.034533869475126,0.11981305480003]],[[-0.0048426105640829,0.031268890947104,0.046451706439257],[0.044632516801357,0.067947305738926,-0.024024449288845],[-0.13245488703251,0.067028857767582,0.016112605109811]],[[0.088165588676929,0.059796053916216,0.037057664245367],[-0.0098913833498955,-0.062762551009655,-0.044365752488375],[0.12860926985741,-0.05861110240221,0.10953435301781]],[[-0.087703131139278,-0.041043173521757,0.05228503420949],[-0.056757539510727,0.038783088326454,0.11320246011019],[-0.14863088726997,0.10073284059763,0.011271973140538]],[[-0.0079157464206219,0.085506357252598,-0.045862842351198],[0.0030906507745385,0.02463105879724,-0.077784799039364],[0.11454471945763,0.0050100511871278,-0.035053439438343]],[[-0.17002800107002,-0.063326880335808,-0.025722844526172],[0.051164031028748,-0.079858303070068,-0.073179520666599],[-0.093339785933495,-0.010146132670343,-0.015363285318017]],[[-0.024884339421988,0.042496077716351,-0.042468942701817],[0.020502392202616,0.042808227241039,-0.036781288683414],[-0.10053642094135,-0.038277968764305,0.066598489880562]],[[-0.13833123445511,-0.010772366076708,0.037648677825928],[0.067236579954624,0.026089137420058,0.0098712500184774],[0.0079487869516015,0.05514258146286,0.025117464363575]],[[0.11687108129263,-0.079314075410366,0.056788686662912],[-0.041578158736229,0.051192220300436,0.13049069046974],[0.040910046547651,0.14545820653439,0.055876586586237]],[[-0.0275460742414,-0.073130205273628,0.021071568131447],[0.078709863126278,-0.064799107611179,-0.013364770449698],[0.022162467241287,0.038439866155386,0.054620966315269]],[[-0.047894861549139,-0.055688213557005,0.099774658679962],[-0.10194630920887,-0.041439335793257,0.0048652361147106],[-0.15771229565144,-0.066269591450691,0.002917354227975]],[[-0.032019894570112,0.004472800064832,-0.08603660017252],[-0.068343564867973,-0.031474992632866,-0.00050173967611045],[-0.058691281825304,-0.045450266450644,0.12721246480942]],[[0.02759831212461,0.0384202003479,-0.050624690949917],[0.06808128207922,0.032611895352602,-0.076531410217285],[0.0081317285075784,-0.018195416778326,-0.097985118627548]],[[-0.016890304163098,0.013774504885077,-0.019384419545531],[-0.015784338116646,-0.032438676804304,-0.048739604651928],[-0.082928657531738,0.00334333605133,-0.081409446895123]],[[0.073438316583633,-0.0061757257208228,0.031444638967514],[0.058502625674009,0.068505972623825,-0.030236721038818],[0.048300884664059,-0.010117589496076,0.20597921311855]],[[-0.045369029045105,-0.019759565591812,-0.0474510230124],[0.044997654855251,0.0076334229670465,-0.026524715125561],[0.074965879321098,-0.056243594735861,-0.050277303904295]],[[0.099994279444218,-0.045380584895611,-0.0064294659532607],[0.16191597282887,-0.013384043239057,0.11747059226036],[-0.033633153885603,-0.015914322808385,-0.022357063367963]],[[0.12643624842167,0.017998909577727,-0.0095733245834708],[0.10251754522324,0.0022164278198034,-0.022196693345904],[0.071555651724339,0.082614563405514,-0.019603781402111]],[[-0.043559551239014,-0.031245732679963,-0.052494157105684],[-0.028370169922709,-0.033570162951946,-0.02558227814734],[0.089065834879875,-0.0015009164344519,0.041530940681696]],[[-0.012869176454842,-0.0081321522593498,0.023087268695235],[-0.042702484875917,-0.0087131401523948,0.066734068095684],[-6.8100816861261e-05,-0.012734216637909,0.027089053764939]],[[-0.0092835463583469,0.17816266417503,0.079381510615349],[-0.1514109224081,0.076283119618893,-0.042270198464394],[-0.080352835357189,-0.016841942444444,-0.097181871533394]],[[-0.15315479040146,-0.011348060332239,0.076566122472286],[0.14891006052494,-0.032603431493044,-0.03738970682025],[0.056698203086853,0.085081957280636,0.10076639056206]],[[-0.047229446470737,-0.011282678693533,-0.11827577650547],[0.027208399027586,0.034442827105522,0.010666081681848],[0.045701168477535,-0.078712306916714,0.02533489651978]],[[0.068132996559143,0.061340440064669,-0.02896541915834],[0.047501221299171,-0.01693263463676,-0.014396576210856],[0.010700376704335,-0.11709034442902,-0.091936327517033]],[[0.049819864332676,0.056966722011566,0.03501845151186],[-0.059289496392012,-0.010448029264808,0.057877838611603],[-0.1272509843111,-0.024469306692481,0.029774643480778]],[[-0.08206307888031,0.029864741489291,0.12128435820341],[-0.040829300880432,-0.059992283582687,-0.099411457777023],[0.0065419576130807,0.085350565612316,-0.036931168287992]],[[0.028197446838021,0.13633443415165,0.083753369748592],[0.10587993264198,-0.056045852601528,0.17309010028839],[0.014943350106478,-0.035836882889271,0.00089743634453043]],[[-0.0018002648139372,-0.065747432410717,0.004285876173526],[-0.0089941136538982,0.047972850501537,-0.013768236152828],[-0.068453200161457,-0.085388839244843,-0.01246533356607]],[[-0.05740063637495,-0.021779015660286,-0.05241359397769],[0.053408812731504,-0.041034620255232,0.067075416445732],[-0.035778544843197,0.097802765667439,0.03681493550539]],[[0.073269329965115,0.039313826709986,0.078996926546097],[0.013236427679658,-0.015630442649126,0.042629729956388],[0.093384444713593,-0.0067724990658462,0.023684887215495]],[[-0.068803563714027,-0.0024838445242494,-0.10642261058092],[0.16561472415924,-0.077285915613174,0.033373180776834],[-0.03802403435111,0.11145811527967,-0.016471965238452]],[[-0.079845808446407,-0.092111460864544,-0.093766719102859],[-0.13236466050148,0.052650939673185,-0.096503756940365],[-0.13783323764801,-0.052182052284479,0.010696767829359]],[[-0.11715853959322,0.028811044991016,0.15406408905983],[-0.011077278293669,-0.029149970039725,-0.030507946386933],[-0.18782590329647,0.13763345777988,-0.020635008811951]],[[0.051515612751245,-0.031502049416304,-0.045787960290909],[-0.053796369582415,-0.077478528022766,0.029927752912045],[-0.1403868496418,-0.0055299568921328,0.047650318592787]],[[-0.12996472418308,-0.10961497575045,-0.036104593425989],[0.10049302875996,-0.10463478416204,-0.030225874856114],[-0.028199639171362,-0.16576124727726,-0.044412765651941]],[[-0.0051956111565232,-0.09531556814909,0.020400155335665],[-0.10663760453463,-0.014582714065909,0.0060039712116122],[-0.010621472261846,-0.0062009235844016,-0.0076680057682097]],[[-0.0041283210739493,-0.068199507892132,-0.0098196752369404],[0.088940389454365,0.025769308209419,0.047477848827839],[0.087194085121155,-0.033092014491558,-0.14392165839672]],[[-0.083011388778687,-0.096445858478546,-0.10292318463326],[-0.087199345231056,0.07421712577343,0.0069997454993427],[-0.014118154533207,0.0090699139982462,0.048042163252831]],[[-0.13212941586971,0.078240297734737,-0.093045093119144],[0.020503602921963,0.070942640304565,-0.2133851647377],[-0.083656385540962,-0.084012098610401,-0.031909592449665]],[[0.064641229808331,0.062685154378414,-0.0040833642706275],[0.026476630941033,-0.038489017635584,-0.050468128174543],[-0.054785069078207,-0.16455775499344,0.034731734544039]],[[0.030869897454977,0.001986542949453,-0.014990358613431],[0.091032452881336,-0.057150788605213,-0.048923261463642],[0.20879420638084,0.092502497136593,0.059074588119984]],[[0.010767651721835,-0.021900817751884,0.026596192270517],[0.010978198610246,0.057509865611792,0.060307923704386],[0.050136756151915,0.016467133536935,-0.040401760488749]],[[0.036370977759361,0.026002714410424,-0.094716556370258],[0.065590910613537,0.0097493454813957,-0.10356623679399],[0.097249798476696,0.029894646257162,0.013142993673682]],[[0.080120041966438,-0.10453908890486,-0.14006175100803],[-0.0058313114568591,-0.046692293137312,0.024777371436357],[0.066808059811592,-0.1153959184885,0.012032497674227]],[[-0.015884183347225,0.18752500414848,0.058561578392982],[0.0089757461100817,0.089655369520187,-0.029006900265813],[-0.043388243764639,0.035583905875683,-0.12945914268494]],[[-0.14572429656982,0.052613701671362,-0.074857249855995],[0.08271113038063,-0.068478479981422,0.063910506665707],[-0.13305714726448,-0.028059819713235,0.12130796164274]],[[0.0054442859254777,0.013924974016845,0.05870359018445],[-0.0037476201541722,0.013197930529714,0.048240635544062],[0.092749029397964,0.014699862338603,0.15109333395958]],[[0.023743849247694,0.010611354373395,-0.07292465865612],[0.015752352774143,0.021945731714368,0.00023156986571848],[-0.02117102406919,-0.054613761603832,0.081643626093864]],[[0.048035155981779,0.093367464840412,-0.061659891158342],[0.043381690979004,-0.059172339737415,0.11269826442003],[-0.088834799826145,0.010349897667766,-0.0055634188465774]],[[0.023351658135653,0.05583244562149,-0.02373812533915],[0.0045754024758935,-0.055257558822632,0.073495522141457],[0.012326631695032,0.082276731729507,-0.062492452561855]],[[-0.071184076368809,0.07194796204567,0.070844605565071],[-0.012709642760456,-0.12240397930145,0.024611303582788],[-0.0057180831208825,-0.045148782432079,-0.067003853619099]],[[-0.011182997375727,0.024060552939773,0.015501136891544],[-0.068778030574322,-0.058120392262936,-0.016467671841383],[-0.049279622733593,-0.01676175929606,-0.047012902796268]],[[0.10667534172535,0.09370406717062,0.2009062319994],[0.028717381879687,-0.02296905964613,0.048741951584816],[0.027977744117379,0.027345748618245,0.060472548007965]],[[0.031116997823119,-0.044540207833052,0.048439670354128],[-0.033369805663824,-0.054540671408176,-0.0054032490588725],[0.051354851573706,0.015001938678324,0.068534679710865]],[[0.044629607349634,0.063811965286732,0.019603781402111],[0.01352362986654,-0.054921623319387,-0.0012865525204688],[-0.079268239438534,-0.14125396311283,0.047671977430582]],[[0.012838976457715,0.0062470133416355,0.097288548946381],[-0.085338748991489,-0.025423441082239,0.091125771403313],[0.097371116280556,-0.034421518445015,-0.046475324779749]],[[-0.017153941094875,-0.05169715732336,0.068039916455746],[-0.030701264739037,-0.079087451100349,0.06091009452939],[-0.12899976968765,-0.038613080978394,-0.083139307796955]],[[-0.0098145781084895,0.11005710065365,0.022354124113917],[0.0078786527737975,0.12267915159464,-0.10900411009789],[-0.067903570830822,0.055049624294043,-0.0454954020679]]],[[[-0.079948097467422,-0.085573852062225,-0.077208042144775],[-0.10245643556118,-0.078628823161125,-0.13282923400402],[-0.061582647264004,0.048063851892948,-0.019135946407914]],[[0.021447695791721,-0.1011022105813,-0.11429215967655],[0.031196843832731,-0.017619347199798,-0.056371834129095],[-0.044037669897079,-0.054790079593658,0.013693334534764]],[[0.023611633107066,-0.0073096537962556,-0.035553883761168],[-0.02118855714798,-0.021717531606555,-0.022482508793473],[-0.1005242690444,-0.068990372121334,-0.063291013240814]],[[-0.045015074312687,0.029930474236608,0.11083833128214],[0.00607716338709,-0.052078142762184,-0.097257763147354],[-0.022624107077718,0.081671521067619,-0.17523974180222]],[[0.044544756412506,-0.02562696300447,-0.049595657736063],[0.033751282840967,0.055591881275177,0.013563053682446],[0.095033399760723,0.023602768778801,0.0069961249828339]],[[0.0088603785261512,-0.033531878143549,-0.062575414776802],[0.00035526120336726,-0.034108769148588,-0.0067918724380434],[-0.017092464491725,0.019088871777058,0.042823020368814]],[[-0.076186090707779,-0.05031643807888,0.10704576224089],[-0.016281232237816,-0.15184481441975,0.0021080560982227],[-0.0657559633255,0.032613810151815,0.00038752082036808]],[[0.031665477901697,0.018828745931387,0.069580219686031],[-0.046508356928825,-0.032557867467403,-0.20661361515522],[0.071156740188599,0.028645500540733,-0.093872494995594]],[[0.02137989923358,0.032881122082472,0.068498589098454],[-0.0038767086807638,0.0081390710547566,-0.020178815349936],[-0.0020583460573107,0.020176408812404,0.04317844286561]],[[-0.028864866122603,-0.054438948631287,-0.057417552918196],[0.018209787085652,0.02282409183681,0.01714120618999],[0.030219569802284,-0.044160582125187,-0.0080351736396551]],[[-0.0053918259218335,-0.0043599070049822,0.011744082905352],[0.013671620748937,-0.096204578876495,-0.031686138361692],[0.0066157439723611,-0.03516598790884,-0.34827175736427]],[[-0.074455916881561,-0.01967852935195,0.063712723553181],[0.071458049118519,-0.025003669783473,-0.053183510899544],[0.079550564289093,0.039137240499258,-0.13235668838024]],[[-0.034112010151148,-0.082198552787304,-0.062820203602314],[-0.019344329833984,-0.00074624305125326,0.0086886864155531],[0.028491472825408,0.0012052675010636,0.0083668418228626]],[[-0.031300630420446,-0.075033634901047,0.11616405844688],[0.08396053314209,-0.014717105776072,-0.14096358418465],[-0.029049575328827,0.021675752475858,2.6050438464154e-06]],[[0.018985817208886,-0.075689256191254,-0.015444482676685],[0.01975179463625,-0.075376152992249,-0.0096964742988348],[0.043107360601425,0.027046531438828,0.037120942026377]],[[-0.0073158936575055,-0.023694382980466,0.00016931099526118],[-0.02234448119998,-0.027865612879395,-0.023646648973227],[-0.012621522881091,-0.030272142961621,0.050763789564371]],[[0.011712400242686,-0.07206579297781,-0.027411416172981],[0.016447521746159,0.013764157891273,-0.091930277645588],[-0.11268662661314,0.00075525441206992,0.065348267555237]],[[-0.0010456583695486,-0.072378031909466,0.04023227840662],[0.054341908544302,0.059041000902653,0.0067787226289511],[0.081373810768127,-0.099259614944458,-0.040716111660004]],[[0.017301950603724,0.047232042998075,0.11030521243811],[0.0012398376129568,0.037738457322121,-0.021359674632549],[-0.01627247966826,-0.055469874292612,-0.04711826145649]],[[0.025609198957682,0.043626062572002,0.034842699766159],[0.0068209003657103,0.051572155207396,-0.015241941437125],[-0.020546104758978,-0.0096368584781885,-0.099620394408703]],[[-0.080492831766605,0.018669506534934,-0.12699282169342],[-0.1164670959115,0.074325494468212,-0.015395277179778],[0.034667301923037,-0.07393416762352,-0.049559909850359]],[[-0.0198331810534,-0.041759327054024,-0.052614372223616],[-0.023236470296979,-0.094587676227093,-0.047138947993517],[0.049688909202814,0.10036364942789,0.036593642085791]],[[-0.0082215759903193,0.074155285954475,-0.025401363149285],[-0.0056379092857242,-0.23961591720581,-0.061116356402636],[-0.026359066367149,-0.032482046633959,-0.066175818443298]],[[0.014194913208485,0.013954638503492,0.056102659553289],[0.032524649053812,0.033707804977894,-0.019820142537355],[0.028590908274055,-0.017331846058369,-0.041977159678936]],[[0.00047515970072709,-0.027440203353763,0.10184808820486],[0.060950990766287,-0.064848534762859,0.10057028383017],[0.093488790094852,0.10118295997381,-0.035728134214878]],[[0.040768798440695,0.053210653364658,0.072173982858658],[-0.010508782230318,-0.038625001907349,0.0075970198959112],[-0.050244901329279,-0.089466027915478,-0.036043725907803]],[[0.050685297697783,-0.035519108176231,0.065532229840755],[0.053434323519468,0.04719527438283,-0.012516874819994],[-0.018445653840899,-0.023063043132424,-0.074998430907726]],[[0.042188536375761,-0.13366052508354,-0.014546687714756],[0.013663210906088,0.12235159426928,0.17840483784676],[-0.063207909464836,-0.043649550527334,0.074430234730244]],[[-0.024211717769504,0.11174549907446,-0.044336277991533],[-0.0076389792375267,-0.08641991019249,0.023691944777966],[-0.0024911861401051,0.010900104418397,-0.079997457563877]],[[0.056904714554548,0.057312920689583,-0.049740083515644],[-0.023191886022687,-0.076247580349445,0.041645403951406],[0.063218094408512,-0.030264649540186,0.028023302555084]],[[0.024311663582921,-0.079460851848125,0.042134813964367],[0.020231228321791,-0.064908035099506,0.039220310747623],[-0.038278039544821,0.025324268266559,0.10274139046669]],[[-0.068707823753357,-0.032999694347382,0.053269479423761],[0.01426712796092,-0.069434031844139,0.10190937668085],[0.0020544789731503,0.092477433383465,0.035449631512165]],[[-0.02172021381557,-0.01790327206254,0.027975445613265],[-0.015703659504652,-0.12384790927172,-0.029096389189363],[-0.035286631435156,0.04893884062767,-0.0048417090438306]],[[0.02832062728703,-0.0034599571954459,-0.047509368509054],[-0.010660969652236,-0.043462540954351,0.030560376122594],[-0.090273395180702,-0.00091455283109099,-0.14079888164997]],[[0.020327402278781,-0.010165452025831,-0.087635681033134],[-0.094773046672344,0.043746281415224,0.0092710256576538],[-0.016174245625734,0.064828909933567,-0.028162162750959]],[[0.059690922498703,0.044341132044792,-0.017652293667197],[0.042521186172962,-0.029975671321154,-0.04329077899456],[0.097032584249973,0.047150421887636,-0.065543666481972]],[[0.15669134259224,-0.091340787708759,-0.029194509610534],[0.088014096021652,0.064838722348213,0.074286714196205],[-0.020456772297621,-0.021986832842231,-0.013726783916354]],[[-0.015939515084028,-0.01155430264771,-0.058041650801897],[0.040334761142731,0.017803642898798,0.072365157306194],[0.082951106131077,0.010560271330178,-0.074136026203632]],[[0.0022848676890135,0.041140735149384,0.040718737989664],[0.015554777346551,-0.037158455699682,-0.017485462129116],[-0.033215567469597,0.00071601773379371,0.043493051081896]],[[0.021915312856436,-0.0166891887784,-0.079902671277523],[-0.051156725734472,0.070869475603104,-0.082482576370239],[-0.036761946976185,-0.068905413150787,0.036466721445322]],[[0.070171073079109,-0.011492659337819,0.079584851861],[0.036257460713387,0.078136757016182,-0.19539640843868],[0.071974873542786,0.015453323721886,-0.060706090182066]],[[-0.082696378231049,0.0027431645430624,0.039374601095915],[-0.033626627177,-0.027021367102861,-0.072730995714664],[0.10741316527128,-0.04881040379405,0.017327396199107]],[[-0.062912687659264,0.0044769286178052,-0.013469565659761],[-0.0016362983733416,-0.018866125494242,-0.13126541674137],[0.020190393552184,-0.14153550565243,-0.08680085092783]],[[0.091209307312965,0.046624541282654,0.0054503558203578],[-0.028343329206109,0.030557183548808,-0.051844578236341],[0.018374979496002,-0.056123122572899,0.069246523082256]],[[0.046751245856285,0.0034935199655592,-0.18618467450142],[-0.00065299100242555,-0.040032438933849,-0.11219888925552],[-0.096226878464222,-0.0024712856393307,-0.024280678480864]],[[0.052146855741739,0.013085045851767,0.028906418010592],[-0.020593378692865,0.049068059772253,0.025043008849025],[-0.040938071906567,-0.13535535335541,-0.15027578175068]],[[-0.0055571543052793,0.013241999782622,0.024908557534218],[0.013672748580575,-0.052465289831161,0.040780246257782],[-0.0072232177481055,0.033397141844034,-0.038672428578138]],[[-0.10010265558958,0.16497039794922,-0.19728402793407],[-0.047572508454323,0.025707840919495,0.0045518353581429],[-0.073398917913437,-0.050011292099953,-0.10544650256634]],[[-0.0035424754023552,-0.019364383071661,0.04303190857172],[-0.11380909383297,0.061178982257843,-0.023300705477595],[-0.083426438271999,0.065813481807709,-0.11737106740475]],[[0.10520827770233,0.068337604403496,-0.12685063481331],[-0.041705124080181,-0.037278909236193,-0.12307470291853],[-0.0062256497330964,0.014988781884313,0.001309844548814]],[[-0.13913793861866,0.060203779488802,-0.10754141956568],[-0.063956968486309,-0.20766070485115,0.0099979378283024],[-0.018701678141952,-0.014759418554604,0.040604881942272]],[[0.011939315125346,-0.10827205330133,0.045608166605234],[-0.065702602267265,0.09637700766325,0.11528686434031],[-0.13616019487381,-0.06957158446312,0.0034632331226021]],[[-0.056909449398518,0.0033499309793115,-0.043129414319992],[0.069260388612747,-0.034348338842392,0.015365985222161],[0.064078517258167,-0.030743893235922,0.044074039906263]],[[-0.0015036485856399,-0.021947544068098,0.0080407727509737],[-0.058322191238403,-0.089154496788979,-0.0081653697416186],[0.065211668610573,-0.055578373372555,-0.038073647767305]],[[-0.081699259579182,-0.0023780115880072,0.019607743248343],[-0.052770558744669,-0.121028393507,0.042580913752317],[-0.033828318119049,-0.019006382673979,-0.12552836537361]],[[-0.039907526224852,-0.095051653683186,0.13267327845097],[0.012026353739202,-0.0057619768194854,-0.037112984806299],[0.062028370797634,-0.017804516479373,0.12770387530327]],[[0.045232396572828,0.0087907211855054,-0.097615256905556],[0.069154910743237,-0.040105950087309,-0.071127228438854],[0.031748697161674,-0.071935087442398,-0.0015377568779513]],[[0.040122773498297,0.02121933363378,0.0030078205745667],[0.007883901707828,-0.039698537439108,0.038805618882179],[-0.041403859853745,-0.10292194783688,-0.057237401604652]],[[-0.098624482750893,-0.086220651865005,-0.037578247487545],[0.042706411331892,-0.042188443243504,0.064328752458096],[0.075805246829987,0.082578428089619,0.047885157167912]],[[0.05922781303525,-0.068271324038506,0.1221721470356],[-0.15557871758938,-0.11631996929646,-0.04162460565567],[-0.037630494683981,-0.025566931813955,-0.026233335956931]],[[-0.014341286383569,0.026873933151364,-0.018153041601181],[-0.035243928432465,-0.035188719630241,-0.0055757979862392],[-0.0047644712030888,-0.10500530153513,0.010152553208172]],[[-0.051404170691967,-0.0098924180492759,0.092118784785271],[-0.068241506814957,-0.056819748133421,0.021567432209849],[-0.038170412182808,-0.033738579601049,-0.056622873991728]],[[0.028932111337781,-0.085664324462414,-0.10860581696033],[0.05614872276783,-0.022153014317155,0.046062860637903],[0.025301212444901,0.060159180313349,0.0072232089005411]],[[-0.028616547584534,0.0071754497475922,0.0010671280324459],[-0.021400833502412,-0.0061405953019857,0.073129594326019],[0.015174627304077,0.075561054050922,0.011428351514041]]],[[[-0.051371794193983,-0.067771479487419,0.10414955019951],[-0.060697712004185,-0.0074189072474837,0.037712089717388],[0.070618495345116,-0.0042724735103548,-0.01128816884011]],[[-0.013121259398758,0.010163448750973,-0.014820926822722],[-0.079704232513905,0.048817873001099,-0.25564852356911],[-0.093985162675381,0.088464207947254,-0.087705671787262]],[[-0.025055116042495,0.010346953757107,-0.08424985408783],[-0.1645779311657,-0.079358629882336,-0.11028759926558],[-0.077034041285515,-0.012268382124603,0.019653305411339]],[[0.059705082327127,-0.045725088566542,0.057914827018976],[-0.024665566161275,-0.014793378300965,0.046421762555838],[0.08739360421896,-0.12493673712015,-0.026910373941064]],[[-0.073869444429874,0.0148172872141,0.15702280402184],[-0.046518240123987,0.044396318495274,0.087191395461559],[0.076327942311764,-0.099731653928757,-0.0048983842134476]],[[0.012744508683681,-0.10211659222841,-0.32751187682152],[-0.047448914498091,-0.098736852407455,-0.25077623128891],[0.019051443785429,-0.04196610301733,-0.099412485957146]],[[-0.072841793298721,0.018730275332928,-0.0039388700388372],[-0.0034137496259063,-0.032576970756054,-0.017981264740229],[0.10309059917927,-0.12419338524342,-0.026966966688633]],[[-0.010800226591527,-0.01659738458693,0.065493404865265],[0.046509958803654,0.0093283392488956,-0.0096212085336447],[0.080543801188469,-0.072828464210033,0.039036694914103]],[[-0.07357207685709,0.006007909309119,-0.11739192157984],[0.035201746970415,0.090499587357044,-0.088708974421024],[0.020245552062988,0.090208776295185,-0.093710593879223]],[[-0.019179468974471,-0.0044552427716553,-0.027569966390729],[0.0064225420355797,-0.031383100897074,-0.059008937329054],[0.0023513466585428,0.11736082285643,-0.08867222815752]],[[0.069463461637497,-0.17326003313065,-0.067176066339016],[0.032588254660368,0.048154957592487,-0.03740506619215],[-0.023635128512979,0.016262132674456,-0.12241976708174]],[[0.03165714815259,-0.019115885719657,-0.033062074333429],[0.045925457030535,-0.16636933386326,-0.17869147658348],[-0.030125580728054,-0.1661893427372,-0.30637934803963]],[[-0.11768567562103,0.0052772220224142,-0.039811354130507],[-0.033871423453093,0.0033953590318561,-0.046757381409407],[0.050376359373331,-0.051973853260279,0.0042754597961903]],[[-0.031856629997492,-0.04271674156189,-0.13227745890617],[-0.034542299807072,-0.088933847844601,-0.049519907683134],[-0.026761403307319,0.1167548969388,-0.098926916718483]],[[0.051589049398899,-0.07251887768507,-0.027809439226985],[-0.057571794837713,-0.056393895298243,-0.0604233071208],[-0.034968435764313,-0.071563571691513,-0.032113205641508]],[[0.0058243554085493,-0.0013930794084445,0.098799057304859],[-0.13104106485844,-0.014002812094986,0.12238529324532],[-0.067462667822838,0.009421244263649,0.24411936104298]],[[-0.017837820574641,-0.12452907860279,-0.10442810505629],[0.059293400496244,-0.047230314463377,-0.21394081413746],[0.043492913246155,0.0040759118273854,-0.25841891765594]],[[-0.20028239488602,0.13606789708138,-0.2352597117424],[-0.0757991746068,0.026236955076456,-0.079316325485706],[-0.0011214655824006,-0.083025366067886,0.087347775697708]],[[-0.012333011254668,-0.023232689127326,-0.011790248565376],[0.0045629371888936,0.021129200235009,-0.13231265544891],[0.0015737861394882,-0.036090202629566,-0.045361712574959]],[[-0.054344695061445,0.0025558276101947,-0.099983260035515],[0.013492575846612,-0.057873286306858,-0.050889946520329],[0.077812820672989,-0.062968499958515,0.018948238343]],[[-0.062544740736485,-0.036963976919651,-0.06582023948431],[0.030953537672758,-0.071401588618755,-0.083272598683834],[0.010314459912479,-0.056944284588099,-0.026411224156618]],[[0.0082340324297547,-0.014310881495476,-0.029792649671435],[-0.051779486238956,-0.04571420326829,-0.11748004704714],[0.063464313745499,0.028697064146399,-0.03875307738781]],[[0.061886724084616,-0.10674855858088,0.10322044789791],[-0.037306852638721,-0.096442885696888,0.11597842723131],[-0.068431191146374,-0.0047939983196557,-0.039678450673819]],[[-0.006833391264081,0.035543076694012,0.16486112773418],[-0.033693090081215,-0.023651638999581,0.14564308524132],[0.069629460573196,-0.028229542076588,0.1084356456995]],[[-0.0053189271129668,-0.041441638022661,-0.041699189692736],[-0.071909561753273,0.024923797696829,-0.00057981366990134],[-0.057469539344311,0.021100083366036,0.0099143553525209]],[[-0.089828237891197,0.042617581784725,0.036247842013836],[-0.086985044181347,0.023089678958058,0.032688107341528],[-0.11277987062931,-0.0068952688015997,0.032592549920082]],[[0.10691630095243,-0.028005314990878,-0.0053769955411553],[0.092252604663372,-0.094735741615295,0.01333565544337],[0.13695479929447,-0.085941530764103,-0.048833891749382]],[[-0.079613134264946,0.1675401031971,-0.17324329912663],[-0.076405346393585,0.055095199495554,-0.23870445787907],[-0.041134588420391,0.036886688321829,-0.1045786216855]],[[-0.011823269538581,-0.013516033068299,0.076377831399441],[-0.11745780706406,-0.002547453623265,0.0052159507758915],[-0.12320266664028,0.022048220038414,-0.052140962332487]],[[-0.093243561685085,0.012606236152351,-0.091563493013382],[-0.0039418493397534,-0.090985402464867,0.035394243896008],[-0.060574244707823,-0.10283445566893,0.017487045377493]],[[0.10738950967789,-0.013839057646692,0.052895050495863],[0.11319044977427,-0.064367726445198,0.078378483653069],[0.1524849832058,-0.085084892809391,0.09741985052824]],[[-0.061335969716311,0.0072488756850362,-0.03664081171155],[-0.027303652837873,0.062323071062565,0.0052885278128088],[0.059823226183653,0.23605105280876,-0.071213960647583]],[[-0.044710110872984,-0.02121183462441,0.14064784348011],[-0.03885755687952,0.058177381753922,0.13038244843483],[-0.049747746437788,0.078091785311699,0.044538415968418]],[[0.0087626501917839,-0.099797748029232,-0.29545071721077],[0.024554958567023,-0.020158672705293,-0.068613924086094],[0.020066745579243,0.058347143232822,-0.18568903207779]],[[-0.13432195782661,-0.13652431964874,-0.047242116183043],[-0.0015379019314423,-0.080697074532509,0.0059948521666229],[-0.068643122911453,0.10185804218054,-0.11851441860199]],[[-0.11956553161144,0.013961722142994,0.096830070018768],[0.023302581161261,-0.053116600960493,0.0049098571762443],[0.052873026579618,0.080177053809166,-0.011100489646196]],[[-0.0087187979370356,0.18920025229454,0.1245723888278],[0.053904060274363,0.14460799098015,-0.076171845197678],[0.083521574735641,-0.16314215958118,0.022955792024732]],[[-0.10588093101978,0.011314018629491,-0.090165913105011],[-0.0025004125200212,-0.15173608064651,-0.033759724348783],[-0.092172332108021,-0.10094460844994,0.12221978604794]],[[-0.020927432924509,0.09700483828783,-0.021332070231438],[-0.084188506007195,-0.08294890075922,-0.18092267215252],[-0.054264523088932,0.050144240260124,-0.024184422567487]],[[-0.15176591277122,-0.043349493294954,0.0043373447842896],[0.041680783033371,-0.0025454820133746,0.0020262491889298],[0.052529916167259,0.19205623865128,-0.086729325354099]],[[-0.10987287014723,0.013459580019116,0.20246317982674],[-0.00081644713645801,-0.11613153666258,0.011182436719537],[-0.043460234999657,-0.067758955061436,0.046048581600189]],[[-0.1267628967762,-0.19601449370384,0.13987258076668],[-0.052506398409605,-0.12906953692436,-0.036223921924829],[0.025797771289945,-0.25461408495903,0.0071732858195901]],[[0.11841457337141,0.051737748086452,-0.088123396039009],[-0.20246377587318,-7.5350457336754e-05,-0.075641013681889],[-0.092965081334114,-0.088470101356506,-0.11461088061333]],[[-0.1251552850008,0.10640431940556,-0.22585543990135],[0.012226271443069,0.13133902847767,-0.2514563202858],[-0.031344063580036,0.01863101683557,-0.17643950879574]],[[-0.19212181866169,0.17506270110607,0.021049225702882],[-0.20696520805359,-0.1302969455719,0.07665578275919],[-0.061106611043215,0.010897766798735,0.13354501128197]],[[-0.037499219179153,-0.13362324237823,-0.13246163725853],[0.011629390530288,0.04403317719698,-0.089050687849522],[0.0043181688524783,0.05535426735878,-0.18643690645695]],[[-0.19676572084427,0.048237752169371,0.061724223196507],[-0.080675013363361,-0.15199920535088,-0.025108141824603],[-0.024435266852379,-0.014839225448668,-0.023289617151022]],[[0.043785229325294,-0.13768039643764,0.25054213404655],[-0.1156814545393,-0.0049480083398521,0.026852466166019],[-0.10374844074249,-0.22217860817909,0.1052251458168]],[[0.11765733361244,-0.057268396019936,0.28795969486237],[0.014098569750786,-0.24280497431755,0.095859013497829],[-0.02171784453094,-0.11949201673269,-0.10385114699602]],[[0.14510092139244,0.042816154658794,0.17365938425064],[0.030896682292223,-0.1088412553072,0.1272469907999],[-0.0075655966065824,-0.030867274850607,0.0325892791152]],[[-0.040826369076967,-0.14623531699181,0.081940993666649],[0.0021326460409909,0.072511523962021,0.036372054368258],[0.19300372898579,0.08491238951683,-0.014585379511118]],[[-0.12430368363857,0.030162902548909,-0.18470193445683],[0.088827185332775,0.03540687635541,0.0041947797872126],[0.085441753268242,-0.0087793869897723,-0.023172019049525]],[[0.1216189339757,-0.009515605866909,0.038725189864635],[0.092376060783863,-0.066979564726353,0.045905061066151],[-0.096782930195332,0.030474720522761,0.058014381676912]],[[0.058901958167553,-0.067284800112247,-0.15095694363117],[-0.11986417323351,0.003368086181581,-0.00029861490475014],[-0.33930560946465,0.1204179674387,-0.0072761098854244]],[[-0.054735198616982,-0.03059209138155,-0.0150738786906],[-0.17231178283691,-0.070484168827534,-0.13296356797218],[-0.21607924997807,-0.035240441560745,-0.0075862593948841]],[[-0.046548265963793,0.095501586794853,0.028873801231384],[0.0078183710575104,0.11687010526657,-0.048690915107727],[0.07050696015358,0.19017870724201,-0.11132071912289]],[[0.15455214679241,-0.064217686653137,-0.10481367260218],[-0.011908945627511,-0.0067104091867805,-0.19509279727936],[0.025802329182625,0.057159144431353,0.084048435091972]],[[0.044962339103222,-0.069798834621906,-0.043890666216612],[0.03332681581378,-0.21141193807125,0.036039642989635],[-0.050102446228266,-0.053142011165619,0.011679966934025]],[[0.11919076740742,0.056283868849277,-0.0098395813256502],[0.094784162938595,-0.010206983424723,-0.06103377789259],[0.14760053157806,0.041781909763813,-0.018032135441899]],[[-0.031364630907774,-0.099995292723179,-0.047293182462454],[-0.13400912284851,-0.010000074282289,0.096924722194672],[-0.11348375678062,0.036988742649555,-0.076024554669857]],[[0.053875084966421,-0.06277173012495,0.047524739056826],[-0.058679889887571,0.075791120529175,0.0092618977651],[-0.094394631683826,0.12189642339945,0.051828373223543]],[[-0.074138723313808,0.06467679142952,0.035113841295242],[-0.035023141652346,-0.073617614805698,-0.10293673723936],[-0.024349933490157,-0.2135915607214,0.050191756337881]],[[-0.0095470007508993,-0.1715000718832,0.0010102618252859],[6.2449813412968e-05,-0.10065496712923,0.061925042420626],[-0.0042062299326062,0.027532421052456,0.077950172126293]],[[0.12453907728195,-0.01163377892226,0.015299369581044],[-0.02463217638433,-0.15901112556458,-0.044815380126238],[0.010653966106474,-0.1829360127449,-0.071613445878029]]],[[[-0.023157214745879,0.035972278565168,0.022556563839316],[-0.021601708605886,-0.047343470156193,-0.12831428647041],[-0.062792867422104,-0.037325635552406,0.023052228614688]],[[-0.1117247864604,0.11121486127377,-0.091650128364563],[0.10020835697651,-0.033422574400902,-0.016826765611768],[0.010909062810242,0.036508914083242,0.10343055427074]],[[-0.051014669239521,-0.0043874140828848,0.040364559739828],[0.031586930155754,-0.037657968699932,0.027417035773396],[-0.012789049185812,-0.096681006252766,-0.087861269712448]],[[-0.0074746296741068,-0.080047026276588,-0.31517747044563],[0.015717267990112,0.11192279309034,-0.038309268653393],[-0.064127080142498,0.022153425961733,0.15039795637131]],[[0.021000422537327,0.041665382683277,-0.18719306588173],[0.0030814295168966,-0.005435872823,-0.071125604212284],[-0.036658864468336,-0.0028525153174996,-0.027188135311007]],[[0.020750617608428,-0.011658917181194,-0.17184107005596],[-0.19320958852768,0.037852860987186,0.09727106243372],[-0.048702962696552,-0.18668949604034,-0.032464738935232]],[[0.12798810005188,0.039574589580297,0.015529261901975],[-0.021268086507916,0.010551875457168,0.082739256322384],[-0.016516901552677,0.0081183984875679,0.056979440152645]],[[0.0082641914486885,0.033984676003456,0.056394722312689],[-0.086327277123928,-0.14253598451614,-0.12235577404499],[0.049051910638809,0.078913770616055,0.018222847953439]],[[0.01728318631649,-0.13526025414467,-0.0059886192902923],[-0.04946281388402,0.060747183859348,-0.087340973317623],[0.044436637312174,-0.028884829953313,-0.017071709036827]],[[0.067511782050133,-0.070521019399166,0.023036707192659],[0.051690112799406,-0.082035556435585,-0.012557088397443],[-0.050521917641163,0.12734392285347,-0.024328850209713]],[[-0.013018582947552,0.11936712265015,0.025318963453174],[0.017188815400004,-0.051705375313759,0.114756308496],[-0.083434842526913,0.051711231470108,-0.12951211631298]],[[-0.0025747900363058,-0.12565106153488,-0.33448505401611],[0.083336688578129,-0.013218610547483,-0.040901459753513],[-0.10956206917763,0.047634303569794,-0.00520797399804]],[[0.050925184041262,0.0084598064422607,0.0018153673736379],[0.14510308206081,-0.030543213710189,-0.043309535831213],[0.068508192896843,-0.0065453741699457,0.006969322450459]],[[0.010844739153981,-0.15295903384686,-0.047815576195717],[0.037744957953691,-0.029015267267823,-0.050186190754175],[-0.20539627969265,0.06181775033474,0.095137909054756]],[[0.028308374807239,-0.081995405256748,-0.038046576082706],[-0.020312048494816,0.13992162048817,-0.17708498239517],[-0.0086841350421309,-0.060858368873596,-0.029066931456327]],[[-0.1038334518671,0.011194332502782,-0.0088571505621076],[-0.082260444760323,-0.032098039984703,0.081926211714745],[-0.10705146193504,0.0064542051404715,0.0064021977595985]],[[-0.02903819642961,-0.021530531346798,-0.0611970461905],[0.014267769642174,0.11786562204361,0.0011601365404204],[0.028194729238749,0.033331383019686,0.049355458468199]],[[-0.0072894631884992,0.12588113546371,0.061975106596947],[0.048585679382086,-0.21147960424423,0.11174539476633],[-0.034454103559256,0.033753175288439,-0.00076693925075233]],[[0.012311870232224,0.01491631846875,-0.083392828702927],[-0.17115926742554,-0.028185043483973,-0.069200530648232],[-0.022600572556257,0.022212037816644,-0.054062683135271]],[[0.0028520955238491,0.035981219261885,0.076145812869072],[0.012994986958802,0.023468311876059,0.021092059090734],[0.072354301810265,-0.011561457999051,0.019599311053753]],[[0.085216715931892,-0.031810477375984,0.038195066154003],[0.086036764085293,0.020349778234959,0.026856383308768],[0.08125863224268,0.094248212873936,-0.009796530008316]],[[-0.04323847964406,0.054387930780649,0.052819676697254],[-0.0054197730496526,-0.087599992752075,0.047673538327217],[-0.023103334009647,-0.049022767692804,-0.0072412611916661]],[[-0.018146511167288,0.066723011434078,-0.030929453670979],[-0.040320780128241,-0.01183770596981,0.0406703799963],[-0.0041188639588654,-0.01509394031018,0.071468628942966]],[[-0.019303072243929,-0.01045441813767,0.17705090343952],[0.143091827631,0.077745631337166,-0.10405926406384],[0.003324736142531,0.1222883015871,0.13033020496368]],[[-0.11788789182901,0.00036341961822473,0.0207051448524],[-0.068476334214211,0.0038084797561169,0.031203899532557],[0.18672075867653,0.10310559719801,0.040199130773544]],[[0.034403469413519,-0.039712652564049,-0.024038081988692],[-0.059217840433121,0.097038127481937,-0.02241169475019],[-0.065099887549877,0.067805707454681,-0.016066612675786]],[[-0.094043150544167,0.058172609657049,0.031698986887932],[-0.0088588306680322,-0.029426204040647,-0.027050621807575],[0.075825713574886,-0.12410056591034,-0.10547872632742]],[[0.018690805882215,-0.0055134710855782,0.15777964890003],[0.019013244658709,-0.074603088200092,-0.0083203092217445],[-0.11528496444225,0.053082752972841,0.020474137738347]],[[-0.14858561754227,-0.14740471541882,0.07508123666048],[-0.12510359287262,-0.070845291018486,-0.20507064461708],[0.021477073431015,-0.0014653826365247,0.0017551665659994]],[[0.0080298455432057,-0.03501408919692,-0.017046710476279],[-0.036265507340431,0.037094812840223,-0.0080409971997142],[0.0087891956791282,0.024877464398742,0.018674274906516]],[[-0.0035286468919367,0.038903206586838,-0.037879604846239],[-0.024833098053932,0.067708544433117,-0.026097243651748],[0.0075692418031394,0.040065120905638,-0.0054609174840152]],[[0.0085515081882477,-0.098610267043114,-0.097542807459831],[0.0097612403333187,0.015796856954694,-0.010434600524604],[0.14764632284641,0.026041800156236,-0.11746582388878]],[[0.037915132939816,-0.026371797546744,0.049004379659891],[-0.02672684006393,0.11085628718138,-0.16968037188053],[0.069258265197277,0.087582901120186,0.1013605222106]],[[0.065644770860672,0.05478261038661,-0.1233549490571],[-0.086659103631973,0.034589625895023,-0.0095968693494797],[-0.041953276842833,-0.066144317388535,-0.019083166494966]],[[-0.07243873924017,-0.069088883697987,-0.10199838131666],[0.037604011595249,-0.052265126258135,0.081398278474808],[-0.056229539215565,-0.01770874299109,0.11006304621696]],[[0.037962090224028,-0.031340584158897,0.022781442850828],[0.094128228724003,0.0072245146147907,0.072084739804268],[0.0046211280860007,0.022973252460361,0.040060386061668]],[[-0.047597542405128,0.071832425892353,0.050182938575745],[0.082173503935337,-0.013865744695067,0.081652015447617],[-0.11479644477367,0.030331794172525,0.012335484847426]],[[-0.021769125014544,0.041302889585495,-0.036342024803162],[0.056360948830843,-0.020395759493113,-0.017691392451525],[-0.0005396151682362,-0.038921862840652,-0.080611407756805]],[[0.054427985101938,0.014367674477398,0.08879130333662],[0.0083798822015524,-0.047763276845217,0.024927359074354],[0.074709981679916,-0.030020944774151,0.18856440484524]],[[0.049659181386232,-0.012908128090203,0.074464797973633],[0.017830779775977,-0.0019001709297299,-0.045490950345993],[0.049077395349741,-0.017190102487803,-0.032671067863703]],[[-0.037162274122238,-0.073157802224159,-0.098100543022156],[0.10690571367741,0.149253860116,0.12761259078979],[-0.068514212965965,0.1151527389884,0.16658627986908]],[[-0.031140321865678,-0.0099445879459381,0.022510202601552],[-0.046430572867393,0.013326087966561,-0.055871415883303],[-0.01254905294627,0.018321998417377,0.063583195209503]],[[0.03308018669486,-0.063549384474754,-0.18298079073429],[-0.076374940574169,0.037056311964989,-0.025499390438199],[0.022200338542461,-0.037031222134829,-0.13919231295586]],[[0.068583413958549,-0.074778892099857,-0.10732197016478],[-0.1061522513628,-0.055090319365263,-0.037471629679203],[-0.10609169304371,-0.1115208864212,0.029133707284927]],[[-0.045875534415245,-0.092214398086071,0.15544350445271],[0.064140401780605,-0.031103977933526,-0.10317852348089],[-0.066556729376316,0.047796331346035,0.046147592365742]],[[0.028972281143069,-0.054374992847443,0.038124106824398],[-0.05832913517952,-0.064197279512882,-0.10626394301653],[0.031431093811989,0.0047082928940654,-0.099579028785229]],[[-0.04444207623601,-0.076210871338844,0.055778212845325],[-0.036671485751867,0.0067426837049425,-0.041158236563206],[0.013455879874527,0.064467914402485,0.002552135149017]],[[0.046974811702967,0.087132044136524,0.20519338548183],[-0.050401646643877,-0.12617982923985,0.025896715000272],[-0.11998821794987,0.030127596110106,0.15686416625977]],[[-0.053422909229994,-0.06023221462965,-0.037209570407867],[-0.0025799004361033,0.071603439748287,0.1035837456584],[0.034346159547567,-0.028984384611249,-0.066126428544521]],[[-0.030126240104437,-0.072114385664463,0.0056581003591418],[0.15612788498402,0.059850014746189,-0.01822098530829],[0.056679584085941,0.033016089349985,-0.071340776979923]],[[-0.062797844409943,0.067467346787453,0.055029861629009],[-0.041357137262821,-0.077759921550751,-0.08108638972044],[0.021282650530338,-0.02048839814961,0.044854883104563]],[[-0.20067669451237,0.00037873920518905,0.041581705212593],[0.053747244179249,-0.1180571988225,-0.14351184666157],[0.035295609384775,-0.0081653194501996,0.06070264428854]],[[0.12132754921913,-0.0023805284872651,-0.071826703846455],[-0.12277632206678,0.14017772674561,-0.029643092304468],[-0.015639109537005,-0.013933639973402,0.065225683152676]],[[-0.13024321198463,-0.05143178626895,0.076010808348656],[-0.055786088109016,0.19881466031075,-0.11044316738844],[-0.19849009811878,-0.0056428350508213,-0.13302776217461]],[[0.013951668515801,0.065451212227345,-0.096175409853458],[0.11985544115305,0.079327642917633,-0.08823911100626],[-0.074894949793816,-0.043989032506943,0.0048969839699566]],[[0.067353188991547,-0.10021785646677,-0.17883011698723],[-0.091700680553913,-0.0064392969943583,0.016973270103335],[0.009156821295619,0.064095206558704,-0.023114036768675]],[[0.0079662511125207,-0.05045335367322,0.042533185333014],[-0.011872221715748,0.055142216384411,0.039615530520678],[0.090496569871902,0.12951871752739,-0.029875379055738]],[[-0.054583247750998,0.0093420036137104,0.10683162510395],[-0.040531978011131,-0.084665164351463,-0.062698312103748],[0.10673316568136,-0.00075850152643397,0.00086466380162165]],[[0.037074189633131,0.047967243939638,0.050728838890791],[-0.053812269121408,-0.0082167573273182,-0.0067013115622103],[0.072269901633263,-0.012717936187983,0.090048409998417]],[[0.015145947225392,-0.018838109448552,0.0020983705762774],[0.037595804780722,0.063215963542461,0.047334771603346],[0.0086855422705412,-0.054407048970461,0.0075384671799839]],[[0.018592385575175,-0.076340563595295,0.041715934872627],[-0.030227854847908,-0.055755611509085,-0.026727981865406],[-0.03292191401124,-0.038161426782608,0.0055801174603403]],[[-0.055429276078939,-0.021808389574289,0.081799939274788],[0.038955643773079,0.077987194061279,0.050781704485416],[0.022202400490642,0.016470229253173,-0.21152950823307]],[[-0.042371340095997,0.03966223821044,-0.0085950857028365],[0.017525495961308,0.012098128907382,-0.096089459955692],[-0.10622091591358,0.079782851040363,0.0019366441993043]],[[-0.10527031868696,-0.23235966265202,-0.080377817153931],[-0.067704521119595,-0.0074884928762913,-0.11087515205145],[0.044106658548117,-0.022430526092649,0.084005728363991]]],[[[-0.02327442355454,0.038528710603714,0.017436726018786],[0.038406629115343,0.038418382406235,-0.073746800422668],[-0.0024705976247787,0.0064341383986175,-0.051699582487345]],[[0.041218109428883,-0.0070773689076304,-0.055760748684406],[-0.0075258035212755,-0.037777133285999,-0.1704955548048],[0.043274909257889,0.0091608110815287,-0.00084816745948046]],[[-0.14954929053783,-0.079197451472282,0.018873434513807],[0.086640544235706,0.036330711096525,0.022599056363106],[0.037956070154905,-0.11196592450142,-0.10351757705212]],[[0.069017432630062,-0.093661226332188,-0.05022744089365],[0.13917428255081,0.041822705417871,0.040953226387501],[-0.0056522781960666,0.074045434594154,0.035335142165422]],[[0.095582969486713,0.01512714382261,-0.02284506522119],[-0.022802788764238,-0.02614357881248,-0.073589518666267],[0.059620626270771,-0.034548107534647,-0.0077541093342006]],[[0.048209596425295,0.11228390783072,-0.075582727789879],[0.059059053659439,-0.051288537681103,0.027451403439045],[-0.065247125923634,-0.020517414435744,-0.032838590443134]],[[0.040287688374519,0.067513838410378,-0.12683530151844],[0.0020907770376652,-0.024018410593271,-0.20212876796722],[0.060647506266832,-0.062128804624081,-0.10371352732182]],[[0.0653902515769,-0.0070152711123228,-0.02122138813138],[-0.038364809006453,0.054923344403505,-0.052271272987127],[0.004314343445003,0.095807686448097,-0.17400981485844]],[[0.050902225077152,0.043648891150951,0.079998210072517],[-0.061604015529156,0.044180501252413,0.026504846289754],[-0.083108372986317,-0.088861867785454,-0.027159675955772]],[[-0.0024139075540006,0.024375138804317,-0.032540582120419],[-0.10079152882099,-0.032988350838423,-0.082595385611057],[0.0060992147773504,0.025716004893184,-0.063080996274948]],[[0.042104966938496,0.02447334676981,0.048406574875116],[-0.036831095814705,0.078445434570312,0.085046201944351],[0.032915554940701,-0.059239692986012,0.0084275174885988]],[[-0.030749954283237,-0.12883637845516,-0.16783191263676],[0.078273274004459,-0.050368167459965,0.050164371728897],[0.14733943343163,-0.042508911341429,0.21946069598198]],[[0.11484879255295,0.089878529310226,-0.0087913097813725],[-0.03505390137434,-0.0033186010550708,0.054196339100599],[-0.073668941855431,-0.11353351175785,0.13219223916531]],[[0.048183850944042,-0.05113397911191,-0.028867160901427],[0.042887918651104,0.089203372597694,0.09803968667984],[-0.0007490073912777,0.011326860636473,-0.056595236063004]],[[-0.017754428088665,0.016676783561707,0.15773291885853],[0.037040781229734,-0.13376674056053,-0.011743648909032],[0.064493633806705,-0.0028584413230419,0.039559882134199]],[[-0.087511502206326,0.10541671514511,0.029231537133455],[-0.039625771343708,-0.058575034141541,-0.016847729682922],[-0.025732977315784,-0.057327136397362,-0.099556736648083]],[[0.076011255383492,-0.033575311303139,0.086729504168034],[-0.016571925953031,-0.029016517102718,-0.091835759580135],[-0.092086866497993,0.010221337899566,0.088763415813446]],[[0.13005886971951,0.071928977966309,0.06648100912571],[0.0034915448632091,0.016976246610284,0.059293862432241],[-0.11013448983431,0.095132596790791,-0.19867511093616]],[[0.061188284307718,0.098944306373596,0.022948753088713],[0.025411680340767,-0.011376150883734,-0.069300077855587],[-0.021449953317642,-0.0027504195459187,-0.072822153568268]],[[-0.011618230491877,-0.17260463535786,0.0036947075277567],[-0.0062293587252498,0.01900614798069,0.065437383949757],[-0.07734540104866,0.089664362370968,-0.091268084943295]],[[-0.0093468725681305,0.011223421432078,0.089420519769192],[0.0021684335079044,0.036663759499788,0.076726593077183],[0.064617052674294,0.011878122575581,-0.070722177624702]],[[-0.002535559469834,-0.0049365041777492,-0.016081478446722],[0.0095796603709459,-0.001456969184801,-0.059112410992384],[0.025822812691331,-0.0032994837965816,-0.030180731788278]],[[0.004524237010628,-0.12029249221087,0.072030901908875],[0.020571062341332,-0.036281865090132,0.054183334112167],[-0.019809564575553,-0.069439314305782,-0.11724650859833]],[[-0.0064980806782842,-0.0042952420189977,0.052725449204445],[0.012951390817761,0.012971822172403,0.08064454048872],[0.047158144414425,0.0042246761731803,0.091422356665134]],[[-0.058637622743845,-0.093793861567974,0.0070400363765657],[-0.02791465818882,0.0055414466187358,0.039006739854813],[0.11061023920774,0.056801795959473,0.043976970016956]],[[0.011865785345435,-0.067575700581074,0.068249098956585],[-0.08134700357914,0.013424792326987,-0.01931487582624],[-0.058632366359234,0.02569997869432,0.024502148851752]],[[-0.024749476462603,0.0012552361004055,-0.10230821371078],[-0.023986684158444,0.029257353395224,0.084022678434849],[-0.01364878937602,0.10492450743914,-0.0091473842039704]],[[-0.031037107110023,-0.15725564956665,-0.16355784237385],[-0.01644392311573,0.0097175510600209,0.0037061136681587],[-0.096880838274956,-0.057612016797066,0.039830401539803]],[[-0.12223552167416,-0.046278111636639,0.024393603205681],[-0.021718494594097,-0.056861277669668,0.049644634127617],[-0.1723165512085,-0.043339889496565,-0.080080263316631]],[[-0.0086793452501297,-0.0071103228256106,-0.094712667167187],[0.029389422386885,-0.0029931860044599,-0.10096860677004],[-0.036590225994587,-0.051512565463781,0.051317229866982]],[[0.054268382489681,0.022005317732692,-0.049237053841352],[0.031741719692945,0.025902999565005,0.057106606662273],[-0.22154240310192,0.023267108947039,0.16772097349167]],[[0.087893053889275,-0.073697596788406,-0.075520753860474],[0.080501288175583,0.028278848156333,-0.051516447216272],[0.15661510825157,-0.074377976357937,-0.050593953579664]],[[0.12807412445545,-0.017914868891239,0.1375038921833],[-0.0036906995810568,-0.092169500887394,0.013016982935369],[0.063071452081203,0.0235292352736,0.002733938395977]],[[-0.15410856902599,-0.042605265974998,-0.099284455180168],[-0.13104142248631,0.092409260571003,-0.058703623712063],[-0.10766305029392,0.031249886378646,-0.1498741954565]],[[0.076049156486988,-0.02388927526772,-0.0099185481667519],[-0.0034466590732336,0.036427013576031,0.010205171070993],[0.037938892841339,-0.12885925173759,0.089115150272846]],[[0.027645280584693,0.12153290957212,0.024858083575964],[0.033978685736656,-0.026272410526872,0.033746521919966],[-0.051767747849226,-0.024858919903636,0.016169156879187]],[[-0.046077784150839,0.076648965477943,-0.12748037278652],[-0.013748995028436,-0.015957746654749,-0.074068523943424],[0.069713689386845,-0.086220905184746,0.026558503508568]],[[-0.0048717218451202,-0.034740265458822,0.061928108334541],[-0.0088335061445832,0.033312361687422,0.0051495679654181],[0.0077189579606056,-0.076268702745438,-0.0029910227749497]],[[0.085511058568954,-0.20679394900799,0.031848464161158],[0.056539878249168,-0.022257346659899,-0.00894845277071],[0.032686278223991,-0.031380496919155,0.020605465397239]],[[0.031041158363223,0.058136414736509,-0.057712569832802],[-0.035187501460314,0.11121086776257,-0.041723020374775],[-0.11255256086588,-0.059571105986834,-0.16672819852829]],[[-0.074119910597801,-0.047340746968985,-0.044442683458328],[0.085954688489437,0.060529436916113,-0.017977641895413],[0.067922033369541,-0.024583477526903,-0.037411093711853]],[[-0.020777830854058,-0.03349519893527,0.042581629008055],[-0.048208951950073,0.083460666239262,0.036429345607758],[-0.014755196869373,0.011141631752253,-0.10831058770418]],[[0.033074252307415,0.0016143585089594,0.1248729750514],[-0.054655391722918,-0.0369907990098,0.020566049963236],[-0.067660853266716,0.0178990252316,0.0047699715942144]],[[0.0068154335021973,-0.021372044458985,-0.10597006231546],[0.057941526174545,0.1039821729064,-0.027190128341317],[-0.088648185133934,-0.045498974621296,-0.053760781884193]],[[-0.010666933842003,0.039862956851721,-0.14058727025986],[0.019385535269976,0.046028025448322,0.045741584151983],[0.0095581663772464,0.1197037473321,-0.034831676632166]],[[0.084213443100452,-0.022810304537416,-0.10092859715223],[0.050724167376757,0.060807406902313,0.019291276112199],[0.0056310226209462,0.058765191584826,0.078271947801113]],[[-0.29696527123451,-0.0030764683615416,-0.080488279461861],[0.031579755246639,0.02309431694448,0.007678936701268],[-0.070346526801586,-0.02766883186996,0.073692120611668]],[[0.012728424742818,-0.0087119359523058,0.12338388711214],[0.10430917143822,-0.0042283772490919,0.050502989441156],[0.0067931530065835,-0.093484841287136,-0.016079783439636]],[[-0.13074406981468,-0.00024967751232907,-0.035006448626518],[-0.028718864545226,-0.026764107868075,0.033003952354193],[0.018013838678598,-0.097336582839489,0.087940558791161]],[[-0.018816431984305,0.059114579111338,0.15209840238094],[-0.10638601332903,-0.042111273854971,0.076926313340664],[-0.065417721867561,-0.050928167998791,-0.077580504119396]],[[-0.049881633371115,-0.013631982728839,-0.066115945577621],[0.069338299334049,0.09769731014967,-0.038597073405981],[-0.040776744484901,0.0073713161982596,0.072951339185238]],[[-0.0036467290483415,-0.083848960697651,-0.029186744242907],[-0.11024300009012,-0.022092549130321,-0.01769177056849],[-0.073052510619164,-0.10977037250996,0.048245690762997]],[[0.090840935707092,0.042074512690306,0.050190784037113],[0.094759710133076,0.10780159384012,0.11179149150848],[-0.042156331241131,0.020866552367806,-0.01495935767889]],[[-0.21284714341164,-0.063123054802418,0.019048331305385],[-0.11594715714455,-0.018297281116247,0.073678143322468],[0.050945654511452,-0.10870683193207,-0.0067403498105705]],[[-0.023220367729664,-0.00054510094923899,-0.081221789121628],[-0.016590734943748,0.099125482141972,-0.056542724370956],[-0.11486746370792,-0.017292024567723,-0.13484747707844]],[[0.12457118183374,-0.15858468413353,0.03203059732914],[-0.043616108596325,0.013285060413182,-0.074061393737793],[-0.097372308373451,0.19177483022213,-0.10512785613537]],[[0.042996659874916,-0.0051449378952384,-0.11090692132711],[-0.01472092140466,0.019623333588243,0.0076205446384847],[-0.018472669646144,-0.037972029298544,0.016663430258632]],[[0.038106899708509,-0.05064407736063,0.029793763533235],[0.019848171621561,0.029599675908685,-0.026160387322307],[0.063289418816566,-0.0066712340340018,-0.27522811293602]],[[0.016798574477434,0.040983505547047,-0.0085703078657389],[0.032094221562147,-0.038254208862782,-0.024588041007519],[0.0022531857248396,0.069823786616325,0.075912691652775]],[[0.0937789529562,0.052923139184713,0.0013667925959453],[0.085371844470501,-0.030829191207886,-0.032118249684572],[-0.16209219396114,-0.021766802296042,-0.010618886910379]],[[-0.055023457854986,0.056143391877413,0.011768266558647],[-0.032677542418242,0.063414096832275,-0.072451986372471],[0.014509118162096,0.01687541231513,-0.067396782338619]],[[0.033295564353466,-0.026452070102096,0.078625656664371],[0.052571278065443,0.059701263904572,-0.00034440812305547],[0.10670875012875,0.077311798930168,-0.22470536828041]],[[-0.0026937862858176,0.017579197883606,-0.020014448091388],[-0.12560974061489,0.027226416394114,-0.079308293759823],[0.017695812508464,0.014170113019645,0.015565691515803]],[[-0.097626902163029,-0.023795608431101,-0.10270486027002],[-0.076915115118027,-0.044814109802246,-0.044619768857956],[-0.029145199805498,-0.073284290730953,0.050250615924597]]],[[[0.028826162219048,0.11486203223467,0.051533959805965],[-0.046806421130896,-0.1065646931529,-0.10570095479488],[0.0294841658324,0.067387469112873,0.0026312656700611]],[[-0.081144206225872,-0.031810563057661,-0.054289985448122],[-0.03163355961442,0.059702914208174,-0.06533757597208],[-0.015556581318378,0.0083319246768951,-0.011379540897906]],[[-0.057474110275507,-0.04916924610734,0.02386068366468],[-0.025042600929737,-0.12862378358841,-0.07437015324831],[-0.036320503801107,-0.021866532042623,0.044395584613085]],[[-0.018068162724376,-0.13262635469437,-0.10972530394793],[-0.040253214538097,0.044226065278053,0.08104619383812],[-0.002640723483637,-0.068310439586639,-0.060507096350193]],[[-0.0723991766572,0.024016134440899,-0.084810025990009],[0.020757153630257,-0.074251346290112,-0.18198968470097],[-0.16118088364601,-0.057750776410103,-0.022529687732458]],[[-0.1064575240016,-0.12945678830147,-0.086268313229084],[-0.070932425558567,0.059388644993305,0.11255022883415],[-0.092491701245308,-0.036955073475838,-0.11163913458586]],[[0.031683485955,-0.0064221508800983,-0.0078764418140054],[-0.11327569186687,-0.016193704679608,0.0523586794734],[0.011534198187292,-0.022005243226886,0.04357123374939]],[[-0.19394211471081,-0.077010802924633,-0.097030602395535],[-0.054547198116779,0.008971843868494,0.045772302895784],[0.025131536647677,0.1473967730999,0.077248044312]],[[0.06163651496172,-0.084643445909023,-0.031706869602203],[-0.088229320943356,-0.096149541437626,-0.12297179549932],[-0.036166477948427,0.075258955359459,-0.10269215703011]],[[0.162937104702,0.044082522392273,-0.024691523984075],[-0.03276464343071,0.012609321624041,0.14785382151604],[-0.18705169856548,0.065663196146488,-0.02557734400034]],[[-0.10971965640783,0.12559233605862,-0.13188010454178],[0.026940301060677,-0.08069983124733,-0.044697038829327],[-0.086201690137386,-0.030542727559805,-0.06274525821209]],[[-0.020020179450512,-0.0026175635866821,-0.060895394533873],[0.074777469038963,-0.021946748718619,0.010102330707014],[-0.011958344839513,0.082299329340458,0.028367245569825]],[[0.060126524418592,0.022049257531762,-0.024471949785948],[-0.028097115457058,-0.059738676995039,0.03275178745389],[-0.022969888523221,0.084220334887505,0.047652952373028]],[[-0.13260687887669,-0.078611090779305,-0.10429573059082],[0.020626790821552,0.044151403009892,0.07627446949482],[0.014311938546598,-0.035860612988472,0.037859238684177]],[[-0.041777167469263,0.097263872623444,0.11053940653801],[-0.12496904283762,0.013435624539852,-0.063389703631401],[0.01442532800138,-0.10628391802311,0.0021393878851086]],[[-0.073674954473972,-0.084567725658417,0.022412056103349],[-0.087917022407055,-0.074406422674656,-0.015988295897841],[-0.064965017139912,-0.030455838888884,0.10769794136286]],[[-0.012220685370266,0.092937834560871,-0.10535341501236],[0.0083810370415449,0.00204215827398,-0.040045332163572],[0.17794324457645,0.027318716049194,0.10722558200359]],[[0.078336209058762,0.064973317086697,-0.087982878088951],[0.0033679818734527,-0.048371553421021,0.059004407376051],[0.12019304186106,0.033204287290573,-0.031370144337416]],[[-0.049506437033415,0.06292486935854,-0.049587685614824],[-0.14475132524967,0.016997328028083,-0.10580653697252],[-0.072394020855427,0.14877840876579,-0.11018929630518]],[[-0.072918981313705,0.096758626401424,-0.088132753968239],[-0.076853476464748,0.060394644737244,0.068244218826294],[0.03211473301053,0.092737786471844,-0.052784629166126]],[[-0.02999553643167,0.11003773659468,0.12381739169359],[0.047634322196245,0.19934606552124,0.070593975484371],[0.0088615631684661,0.0039849365130067,-0.099222294986248]],[[-0.064129345118999,0.035379223525524,0.072394892573357],[0.051075261086226,0.075743064284325,0.026132797822356],[-0.10021698474884,-0.10197082161903,-0.051896441727877]],[[-0.038154534995556,0.05385223403573,-0.15322303771973],[0.06684336066246,-0.098760291934013,-0.11662807315588],[0.02880103699863,-0.036554612219334,0.10125048458576]],[[-0.0097880596294999,-0.13516399264336,-0.0078045735135674],[0.061109323054552,-0.053680460900068,-0.065313927829266],[-0.080256409943104,0.12285095453262,0.19156478345394]],[[0.14376553893089,-0.11661673337221,0.047610603272915],[-0.034597881138325,0.0046368129551411,0.044486474245787],[0.071105718612671,0.017354592680931,0.027545593678951]],[[-0.080572307109833,-0.05724024027586,-0.021909942850471],[0.10137537121773,0.00080555537715554,0.012307451106608],[0.030965726822615,-0.052168473601341,0.022124907001853]],[[0.06726099550724,0.061659943312407,-0.0059426855295897],[-0.076439224183559,0.0063387090340257,0.10952924191952],[0.10215024650097,-0.0097886063158512,0.11680565029383]],[[-0.074892953038216,-0.054980874061584,0.042411770671606],[0.027767518535256,0.047133892774582,0.1477283090353],[0.010634918697178,-0.039134912192822,-0.076279833912849]],[[0.035711571574211,0.062322240322828,0.05703703686595],[-0.063256792724133,0.0029967164155096,-0.03423285484314],[-0.0087110782042146,0.013744078576565,-0.079895488917828]],[[0.14769361913204,0.060617215931416,-0.027293797582388],[-0.0092933950945735,-0.037007410079241,-0.028243465349078],[-0.03777477517724,-0.033306002616882,-0.062232565134764]],[[0.046572290360928,-0.023113196715713,-0.0062825535424054],[0.030023116618395,-0.035245507955551,-0.049286920577288],[0.083139479160309,0.015992429107428,0.016959210857749]],[[0.1176980510354,0.058302916586399,-0.095309413969517],[0.076868467032909,-0.080722965300083,0.0025442421901971],[0.10599949210882,-0.010494952090085,-0.0034884549677372]],[[0.10440309345722,-0.097283437848091,-0.20371162891388],[0.054193075746298,-0.12976275384426,-0.036296684294939],[0.21002219617367,0.12716928124428,0.079869985580444]],[[0.0059037622995675,0.1218241378665,0.13437066972256],[0.055982276797295,-0.15620848536491,0.082612380385399],[-0.061352968215942,-0.087204873561859,-0.13898673653603]],[[-0.088737241923809,-0.12888993322849,-0.13351747393608],[-0.05423666164279,-0.0030827093869448,0.0050318972207606],[-0.035951197147369,0.02747324667871,0.066599734127522]],[[-0.027012476697564,-0.021219525486231,0.013783995062113],[0.075613088905811,0.025200307369232,0.097918227314949],[0.00060933880740777,0.013294605538249,0.0068110595457256]],[[-0.068638816475868,0.054044391959906,-0.062369890511036],[0.017217326909304,0.014732238836586,-0.035514611750841],[0.0065212729386985,-0.13086433708668,0.15790247917175]],[[-0.10996425151825,-0.090205207467079,-0.1114028096199],[-0.065205343067646,-0.10627815127373,-0.0098732113838196],[-0.015151988714933,0.036764692515135,0.042297262698412]],[[-0.19315151870251,0.011860766448081,-0.082945100963116],[0.024400738999248,-0.090405598282814,-0.0032019976060838],[0.0045211636461318,-0.0066140540875494,0.005735857412219]],[[-0.034533571451902,-0.15902464091778,-0.0081169838085771],[-0.12376050651073,-0.03498075902462,-0.0098871504887938],[0.061361093074083,-0.03375206887722,-0.087617091834545]],[[0.095028460025787,-0.09834011644125,-0.15874998271465],[0.1101356074214,0.070142671465874,-0.19131295382977],[0.048818986862898,-0.0054739685729146,-0.08793443441391]],[[-0.0034772136714309,-0.030313316732645,-0.095045052468777],[-0.10222334414721,-0.010477683506906,-0.14455103874207],[-0.071067146956921,-0.10392621904612,-0.0068262238055468]],[[-0.12083066999912,-0.15079234540462,-0.19283466041088],[-0.01787431910634,0.022484038025141,-0.12027071416378],[-0.077630497515202,0.04799797013402,-0.079660266637802]],[[-0.10375317186117,-0.011052924208343,-0.10050261765718],[0.024185433983803,0.019572617486119,0.034121423959732],[-0.11375062912703,0.16721181571484,-0.013056000694633]],[[-0.080174073576927,0.14117281138897,0.0020699698943645],[-0.082532428205013,0.1475754827261,0.11783337593079],[0.13126489520073,0.043265655636787,-0.024122728034854]],[[0.042030669748783,-0.044528502970934,0.022468587383628],[0.035718619823456,0.10200989991426,0.047776699066162],[-0.047858908772469,0.026098813861609,-0.10300110280514]],[[0.23978425562382,-0.03647430613637,-0.21799069643021],[0.054059892892838,-0.08676690608263,-0.12253671139479],[-0.021018631756306,0.018880786374211,0.1570897847414]],[[0.097875997424126,0.14599750936031,-0.16390965878963],[-0.10635398328304,0.11881303042173,0.016913766041398],[0.026321833953261,0.045710783451796,-0.060873303562403]],[[0.0096572590991855,-0.040060114115477,0.031187165528536],[-0.12479960918427,0.023483166471124,0.0032448857091367],[-0.0299062281847,-0.12668016552925,0.030531898140907]],[[-0.036941543221474,0.028626536950469,0.084825649857521],[0.01290828641504,-0.10268349200487,0.079815901815891],[0.065921157598495,0.007540584076196,-0.010741627775133]],[[0.031874351203442,0.10745553672314,-0.076975896954536],[-0.044448144733906,-0.066037632524967,0.052164047956467],[-0.056032851338387,0.030760873109102,0.031294461339712]],[[0.15291564166546,-0.052309025079012,0.02682332508266],[0.007059411611408,0.10230699926615,-0.039479821920395],[0.10468853265047,0.15190064907074,-0.0023740753531456]],[[-0.096218317747116,0.070805341005325,0.051365830004215],[-0.21339474618435,-0.10877814143896,-0.0024305521510541],[-0.0022623664699495,-0.014182613231242,0.033423539251089]],[[0.1644472181797,-0.049401853233576,0.059130702167749],[0.097716070711613,-0.049222398549318,-0.013350456021726],[-0.055968210101128,-0.047799032181501,-0.10404302179813]],[[0.046738408505917,0.027299512177706,-0.011152987368405],[0.012749064713717,-0.0011447083670646,0.021997472271323],[-0.08312801271677,-0.12989266216755,-0.038887735456228]],[[-0.095535293221474,0.068753316998482,-0.030019614845514],[-0.12119594961405,0.09101065993309,0.082536466419697],[-0.11403278261423,0.14458326995373,0.049899328500032]],[[-0.11626835912466,0.016699101775885,0.026798844337463],[0.0079651791602373,0.084233775734901,0.021235588937998],[-0.047752615064383,0.14253461360931,-0.0057987105101347]],[[0.053493238985538,0.058278251439333,-0.0091450363397598],[-0.023815544322133,-0.05796305835247,-0.15546779334545],[-0.10122482478619,-0.088717736303806,0.028917921707034]],[[0.088681943714619,-0.0190823469311,-0.007729803211987],[0.12134830653667,-0.016373168677092,-0.060583282262087],[0.083880797028542,0.06293848156929,-0.067776054143906]],[[-0.20523478090763,0.10501900315285,0.16444493830204],[-0.095164008438587,-0.042940519750118,0.081219181418419],[-0.037531025707722,0.067107573151588,0.034099496901035]],[[-0.053555279970169,0.094082310795784,0.15251995623112],[-0.0035067135468125,-0.0072002122178674,0.040820986032486],[0.073166355490685,0.035065859556198,-0.025177111849189]],[[-0.081210255622864,0.051819659769535,-0.053200822323561],[0.13579642772675,-0.042989455163479,0.0020250282250345],[0.14159464836121,0.034020002931356,0.037206839770079]],[[0.1704348474741,0.043715480715036,-0.0048278500325978],[-0.090824566781521,-0.027415646240115,0.1964545994997],[-0.13010750710964,0.014851036481559,0.0051749451085925]],[[0.082088775932789,-0.10883690416813,-0.077954009175301],[-0.046690054237843,-0.059634704142809,-0.023084884509444],[-0.035455152392387,-0.067168653011322,-0.18268226087093]]],[[[-0.08395005017519,-0.25315347313881,0.12381004542112],[0.02703732252121,-0.048039279878139,0.090335786342621],[0.1053936034441,-0.21337316930294,0.04835832118988]],[[0.14084261655807,-0.026434607803822,-0.023063663393259],[-0.11776674538851,0.054736703634262,-0.035458520054817],[0.11583518981934,0.030867571011186,-0.026828538626432]],[[-0.076149947941303,-0.025602914392948,-0.056680381298065],[0.028440207242966,0.046788517385721,0.022632721811533],[-0.065089270472527,-0.10169062018394,-0.0055005392059684]],[[0.18052260577679,-0.15044252574444,-0.002120696939528],[0.066338211297989,0.0450134947896,0.046514015644789],[-0.1312982738018,-0.019243333488703,0.015637176111341]],[[0.155832067132,-0.020604299381375,0.05372491106391],[-0.052935183048248,-0.067494571208954,-0.065571062266827],[0.14320856332779,0.077539034187794,0.144576638937]],[[-0.16401843726635,0.02931123226881,-0.0591348297894],[-0.025723351165652,0.042046669870615,0.070237055420876],[-0.11327962577343,-0.070199109613895,-0.18020369112492]],[[0.010742505080998,0.11737057566643,-0.01577228307724],[0.073513641953468,0.080872125923634,-0.07151298224926],[0.052702609449625,-0.13945838809013,-0.14350256323814]],[[0.1676117926836,-0.017616242170334,0.059246331453323],[0.12613618373871,0.069165237247944,-0.12983949482441],[0.028356539085507,0.050497986376286,-0.1768766194582]],[[-0.13080705702305,-0.015750173479319,-0.028932327404618],[0.10036312788725,0.09193080663681,0.093113251030445],[-0.19999648630619,-0.026565451174974,-0.016143893823028]],[[0.006660473998636,0.046115595847368,-0.018316332250834],[0.0020819602068514,-0.004073373042047,-0.041570339351892],[-0.08869831264019,0.0082736583426595,-0.076831676065922]],[[0.10106812417507,-0.12334766983986,-0.058579199016094],[-0.077738620340824,0.068592168390751,-0.0054297908209264],[-0.093336150050163,-0.1265472471714,-0.047841299325228]],[[0.050402618944645,-0.097274370491505,0.08744153380394],[-0.01074814144522,0.040308423340321,-0.087272360920906],[0.074133776128292,0.0019505254458636,0.065092705190182]],[[-0.065361492335796,-0.014464209787548,0.038117177784443],[-0.025642823427916,0.094928540289402,-0.062792018055916],[-0.0025293470826,-0.034961499273777,-0.12585215270519]],[[-0.162353053689,0.14489325881004,0.052571833133698],[-0.038512386381626,0.090842463076115,0.064903549849987],[0.12327522784472,0.081870436668396,-0.067071199417114]],[[-0.059515040367842,0.10058107972145,0.028374841436744],[0.055238287895918,-0.025739716365933,-0.053205214440823],[0.027547681704164,0.021370995789766,0.073881752789021]],[[-0.14315555989742,0.037113036960363,-0.04393370449543],[-0.10258571058512,0.12922430038452,-0.096547432243824],[-0.004372984636575,-0.079972602427006,0.0086099253967404]],[[0.1166632398963,0.026312595233321,0.098416388034821],[-0.036229390650988,-0.046704400330782,0.066768251359463],[0.004009963478893,-0.11155194789171,-0.0052433935925364]],[[-0.20370434224606,0.11173529922962,-0.30056601762772],[0.10530573129654,0.17107653617859,0.017655551433563],[-0.044978220015764,-0.13885658979416,0.0052004507742822]],[[0.030529832467437,-0.011280461214483,-0.044906690716743],[-0.037344329059124,0.051957413554192,-0.17390756309032],[-0.10444345325232,-0.011373591609299,-0.15119245648384]],[[-0.014101961627603,-0.070490889251232,-0.17298899590969],[0.0086541883647442,0.0084514785557985,-0.012459179386497],[-0.049487840384245,0.044459231197834,-0.045739304274321]],[[0.074700258672237,0.044072665274143,0.0084883896633983],[0.25565314292908,-0.0070258365012705,0.044548593461514],[0.064714752137661,-0.23812834918499,0.091699168086052]],[[-0.085784167051315,-0.039055112749338,-0.032097779214382],[0.046475794166327,0.009196100756526,-0.0053695873357356],[0.041103161871433,0.016451790928841,-0.073735661804676]],[[-0.02894757129252,-0.057666335254908,0.041480574756861],[-0.0080700600519776,-0.013084731996059,0.018323920667171],[0.0089473864063621,0.059484496712685,-0.036139503121376]],[[-0.00015201227506623,-0.11793587356806,0.092193208634853],[0.019201297312975,-0.069111905992031,0.10566020011902],[-0.022907741367817,0.035939238965511,0.081760101020336]],[[-0.11314501613379,0.15106637775898,0.10574357956648],[-0.12469775229692,-0.045617762953043,-0.037430875003338],[-0.094965703785419,-0.067044615745544,0.063892863690853]],[[0.066649056971073,-0.013527981005609,0.0030070936772972],[-0.070029065012932,-0.064328573644161,0.065006628632545],[-0.04798986017704,-0.014223114587367,0.060806598514318]],[[-0.06848006695509,-0.086411193013191,-0.047905419021845],[-0.033548712730408,0.022485641762614,-0.058397334069014],[0.084202252328396,0.032931383699179,0.012264898046851]],[[-0.1261164098978,0.16121761500835,-0.051939375698566],[0.016452729701996,0.015972506254911,0.18487027287483],[-0.11042137444019,0.049385040998459,-0.22302584350109]],[[-0.26313245296478,0.052675824612379,0.12766674160957],[-0.013165497221053,-0.028338061645627,-0.040871474891901],[-0.17094765603542,0.014067582786083,-0.094707749783993]],[[-0.26923906803131,0.00094733585137874,-0.24476526677608],[0.088009014725685,0.10725746303797,0.0017481395043433],[-0.25563868880272,-0.065359778702259,-0.18166302144527]],[[-0.082214049994946,0.13424672186375,-0.057971604168415],[0.085484340786934,0.18851786851883,-0.052437875419855],[-0.22081126272678,0.042076352983713,-0.16179375350475]],[[0.020650090649724,0.048564843833447,0.14618621766567],[0.096814803779125,-0.014585408382118,0.021894752979279],[0.032162185758352,-0.0063906884752214,-0.10297958552837]],[[0.062625773251057,0.025654787197709,0.084084115922451],[0.075984559953213,0.021779982373118,0.10512585192919],[0.084097847342491,0.12260172516108,0.085310406982899]],[[-0.039954524487257,-0.015423291362822,-0.068502835929394],[-0.025027288123965,-0.031832218170166,-0.081393294036388],[-0.049518674612045,0.021056408062577,-0.33746162056923]],[[0.064486891031265,-0.1330198943615,0.051894564181566],[-0.051655329763889,-0.098802454769611,0.080732934176922],[0.083994895219803,0.045174852013588,-0.020180758088827]],[[0.027188543230295,0.080595582723618,-0.072669059038162],[-0.0028210112359375,0.031326152384281,0.032240740954876],[-0.15685391426086,0.0068241055123508,0.10907071083784]],[[0.13565990328789,0.062719106674194,-0.020604142919183],[0.055520884692669,0.030839271843433,-0.048092324286699],[0.059820506721735,-0.013082537800074,0.15308308601379]],[[0.02695245295763,0.059410959482193,-0.054001752287149],[0.11235339939594,-0.086576551198959,0.015679324045777],[0.14244367182255,-0.018325101584196,-0.00090974196791649]],[[0.094130285084248,-0.019725551828742,0.030612722039223],[0.10730908811092,0.023030152544379,0.034192256629467],[0.006311581004411,-0.10983776301146,-0.075186505913734]],[[-0.068549886345863,0.031127110123634,0.039306569844484],[0.10900743305683,0.050772938877344,0.10646045207977],[-0.091238878667355,0.039287231862545,-0.10392418503761]],[[-0.15857775509357,-0.12605421245098,-0.20787408947945],[-0.03349831327796,-0.020820535719395,-0.099368788301945],[-0.03914912045002,-0.067150816321373,0.013733888976276]],[[0.0035649593919516,-0.071763783693314,0.012451695278287],[-0.042374331504107,0.045208781957626,0.090766623616219],[-0.0250209774822,-0.030483037233353,-0.099496506154537]],[[-0.041161008179188,-0.020543616265059,0.042327638715506],[0.013732612133026,7.0924761530478e-07,0.049842700362206],[0.044990565627813,0.076156109571457,0.095871187746525]],[[-0.024362651631236,-0.024741737172008,-0.09003359824419],[-0.13200230896473,0.1170781776309,0.068937987089157],[0.044586550444365,-0.012454545125365,-0.017457963898778]],[[-0.17083078622818,-0.17667298018932,-0.16380482912064],[-0.15360049903393,-0.080940619111061,0.012739722616971],[-0.056286610662937,-0.072609059512615,-0.01095104124397]],[[-0.2161863297224,0.0034118455369025,0.050788056105375],[0.060993034392595,0.0054250289686024,0.02764755114913],[-0.033786129206419,0.013868236914277,-0.014414833858609]],[[-0.16020946204662,0.0017885852139443,-0.057346273213625],[-0.079766228795052,-0.0085321068763733,0.035012274980545],[0.057595271617174,0.035943388938904,0.15587896108627]],[[0.19312207400799,0.02861518599093,-0.0013171959435567],[0.027341704815626,0.055739812552929,0.067619793117046],[0.084626913070679,-0.11569669097662,0.056912072002888]],[[0.077732495963573,-0.013447432778776,0.011020480655134],[0.0088105462491512,0.066104032099247,-0.047742590308189],[-0.094703458249569,-0.017157627269626,0.045494124293327]],[[0.034498181194067,-0.038262072950602,0.021339492872357],[-0.068604290485382,0.11293098330498,-0.0080009130761027],[0.034017015248537,-0.081555001437664,-0.0037706915754825]],[[0.066304549574852,-0.0049700485542417,-0.057509932667017],[-0.036105025559664,-0.039061401039362,-0.059525672346354],[0.12904122471809,0.055426444858313,-0.031769923865795]],[[-0.094216614961624,-0.055020686239004,-0.10437348484993],[-0.18403887748718,-0.11101078987122,-0.011577492579818],[0.035378716886044,0.072136908769608,0.12007848918438]],[[-0.070600666105747,-0.053879380226135,0.11198444664478],[0.12593984603882,0.020047364756465,0.028741708025336],[-0.14487688243389,0.020064486190677,-0.0012881867587566]],[[-0.05118502676487,0.026766154915094,-0.072233863174915],[0.036625787615776,-0.080147318542004,0.018508734181523],[0.050171945244074,-0.099570974707603,-0.045540060847998]],[[-0.2125232219696,0.022061970084906,-0.12805423140526],[0.069884859025478,-0.018971612676978,0.056959398090839],[0.0010069170966744,-0.072169959545135,-0.089444451034069]],[[-0.081428438425064,-0.08819804340601,-0.096054799854755],[-0.086390450596809,-0.047403100878,0.033528681844473],[-0.11173662543297,0.17174334824085,0.042363710701466]],[[0.25517770648003,-0.1167749017477,0.044996473938227],[-0.046404186636209,-0.098531357944012,0.022741992026567],[0.12217162549496,-0.02633998170495,0.007204744964838]],[[-0.1264101266861,-0.19786411523819,-0.13497966527939],[0.013963744975626,-0.057394448667765,0.060474831610918],[-0.080140218138695,-0.094205111265182,0.029202172532678]],[[0.093105085194111,0.14787875115871,0.051867600530386],[0.056119859218597,0.067144751548767,-0.062964305281639],[0.046963643282652,-0.036437597125769,0.040057308971882]],[[0.029434269294143,-0.09851648658514,0.061674829572439],[0.17957381904125,0.032400760799646,0.041147492825985],[-0.030861619859934,0.12528133392334,-0.087777949869633]],[[-0.021806970238686,0.14717611670494,0.075886510312557],[-0.15280520915985,-0.001550508546643,-0.056115679442883],[0.028179822489619,-0.048477098345757,-0.00022532987350132]],[[-0.039254669100046,-0.078459024429321,-0.18517552316189],[0.033855017274618,-0.14636981487274,-0.039823483675718],[0.064927808940411,-0.076175272464752,-0.10549292713404]],[[0.099695764482021,0.018047921359539,-0.065966099500656],[-0.019859410822392,0.070791646838188,-0.058035850524902],[0.0035309265367687,0.17422935366631,0.0838438346982]],[[-0.049767360091209,0.0019901401828974,-0.10534340888262],[-0.062450725585222,-0.026102399453521,-0.056330889463425],[-0.024550827220082,0.072166256606579,-0.018354082480073]]],[[[0.14144866168499,-0.0082490686327219,0.10067190974951],[-0.11751157045364,-0.0071867764927447,-0.12153582274914],[-0.04835807159543,0.030494267120957,0.063053749501705]],[[-0.10693653672934,-0.10552921891212,-0.10405974835157],[0.024937152862549,0.017488449811935,-0.1106076836586],[-0.019040485844016,0.090718917548656,-0.048180282115936]],[[-0.10027941316366,-0.093163274228573,-0.079694926738739],[-0.072071485221386,-0.1003590375185,-0.024450009688735],[-0.016357542946935,-0.0070657609030604,0.009378969669342]],[[0.052198428660631,-0.011033872142434,-0.087812714278698],[-0.086094923317432,-0.03967422619462,-0.041936360299587],[-0.059446584433317,-0.12703591585159,-0.026016529649496]],[[-0.0031733603682369,0.076300002634525,-0.067759692668915],[-0.041628323495388,-0.065270245075226,0.0044725704938173],[0.078333109617233,0.020260866731405,0.042204041033983]],[[0.025491228327155,-0.065365791320801,0.11362401396036],[-0.098935090005398,-0.01612595282495,-0.048521693795919],[0.033891137689352,-0.041035424917936,0.0654321834445]],[[-0.074043206870556,0.073502995073795,-0.040769167244434],[0.064177118241787,0.11773596704006,0.0064232647418976],[0.18506214022636,0.019357368350029,0.0061514172703028]],[[0.06222989410162,0.015534021891654,0.10704936087132],[-0.051101595163345,-0.13774076104164,-0.040132831782103],[0.050101269036531,0.025381049141288,0.0040445760823786]],[[0.0028658385854214,-0.087661221623421,0.066833175718784],[-0.064770020544529,0.11031206697226,0.13095106184483],[-0.011884718202055,-0.068407848477364,0.048955321311951]],[[0.0038573995698243,0.044446025043726,-0.090960219502449],[-0.079315438866615,0.0075912084430456,0.07088590413332],[-0.025464421138167,-0.19123293459415,-0.065238915383816]],[[-0.046384386718273,0.047115482389927,-0.038146257400513],[-0.028533905744553,-0.15034775435925,0.040854930877686],[-0.087791487574577,-0.11513809859753,0.052859704941511]],[[0.029377017170191,-0.029978046193719,-0.20542070269585],[-0.067676424980164,0.12503752112389,-0.077473260462284],[0.050203170627356,0.062973983585835,-0.094480775296688]],[[0.02271369472146,-0.0664257183671,0.011738251894712],[-0.033860199153423,-0.011281339451671,-0.033839702606201],[-0.056408897042274,0.069503203034401,0.049230918288231]],[[0.059986960142851,-0.0095090484246612,-0.05310146510601],[0.075719736516476,0.010174721479416,0.075072199106216],[-0.0091757765039802,0.1358954757452,-0.11172658205032]],[[-0.034105528146029,-0.054448705166578,-0.11166686564684],[0.062328293919563,-0.079680606722832,-0.17368274927139],[0.046382334083319,-0.0093175815418363,0.00047137230285443]],[[0.057692632079124,-0.1581394225359,-0.048020642250776],[0.0035737408325076,0.017924850806594,-0.015016595833004],[0.0012830505147576,-0.030961880460382,-0.072035670280457]],[[0.025545816868544,0.016417259350419,0.0041640410199761],[-0.062406118959188,-0.089238069951534,0.014751587994397],[-0.040486831218004,0.0020748670212924,-0.028549652546644]],[[0.040483724325895,0.043724056333303,0.005335845053196],[-0.031699754297733,0.090249747037888,0.0084172897040844],[0.15625286102295,-0.0029863272793591,-0.061224091798067]],[[-0.075805850327015,-0.057328913360834,0.028594510629773],[0.036714356392622,-0.018678957596421,-0.10698878765106],[-0.12128229439259,-0.019354101270437,0.077816002070904]],[[-0.044797502458096,-0.10115381330252,-0.13227024674416],[0.052986670285463,0.067632734775543,-0.0069648684002459],[0.0069500599056482,0.034305192530155,0.068404771387577]],[[0.059875663369894,0.019278021529317,0.080429024994373],[-0.058203112334013,0.027146838605404,-0.036415919661522],[0.059111479669809,-0.036100681871176,0.047844409942627]],[[-0.10727278143167,-0.0020784419029951,-0.15170376002789],[-0.0042963977903128,0.019639696925879,-0.030814597383142],[0.066353283822536,-0.0026870633009821,0.067884892225266]],[[0.049611192196608,0.12237420678139,-0.036871392279863],[-0.0098818130791187,-0.091238506138325,-0.073885314166546],[0.05189586058259,0.047380112111568,0.048025049269199]],[[0.04821614548564,0.059998631477356,-0.017865328118205],[0.024248078465462,0.1165728867054,0.043266326189041],[-0.10167796164751,0.18085262179375,-0.040951084345579]],[[0.15343695878983,0.11038352549076,-0.0012217191979289],[0.10259057581425,-0.04366610199213,0.11977111548185],[-0.10495422780514,-0.0038933814503253,-0.099795363843441]],[[-0.040232293307781,0.026167487725616,0.011147049255669],[-0.055315319448709,-0.011499814689159,0.043697152286768],[-0.055254828184843,0.032150100916624,-0.0073599410243332]],[[-0.11522182822227,0.046528171747923,-0.067548826336861],[-0.035125490278006,-0.03496515005827,0.036306276917458],[0.014522527344525,0.073946788907051,0.10813426971436]],[[-0.02883624471724,-0.067233577370644,0.00079606205690652],[-0.12009555846453,-0.03466047719121,-0.070827730000019],[-0.050328824669123,-0.019622031599283,-0.12592835724354]],[[0.025625325739384,0.011388690210879,0.013304401189089],[-0.062574587762356,-0.0072423936799169,0.13184970617294],[0.052357766777277,-0.036048114299774,-0.12059330195189]],[[-0.091732576489449,0.0040103234350681,-0.12543153762817],[-0.12088134139776,-0.0027424821164459,-0.061124686151743],[-0.036109149456024,0.087480649352074,-0.011869614943862]],[[-0.068702004849911,0.0091873202472925,0.12569744884968],[0.016274562105536,0.0026687528006732,0.194410815835],[-0.17661464214325,-0.037318374961615,0.069241322577]],[[0.035509619861841,0.10801233351231,-0.00023620473803021],[0.014026950113475,0.1229453086853,0.044166091829538],[0.067596338689327,0.025858284905553,-0.026413971558213]],[[0.15812358260155,-0.038551390171051,-0.055838886648417],[-0.047258544713259,0.066802024841309,0.10155942291021],[0.037247750908136,-0.073299735784531,0.081223852932453]],[[0.081092447042465,-0.0060368138365448,0.017596714198589],[-0.024037715047598,0.088273175060749,-0.050909142941236],[-0.10956925153732,0.027205659076571,0.020630110055208]],[[-0.0057791341096163,-0.057638950645924,-0.015870824456215],[-0.054232701659203,0.062268156558275,0.0092287650331855],[0.1151789650321,0.023417208343744,-0.066053234040737]],[[0.097953222692013,0.044811621308327,0.11914405971766],[0.089410461485386,-0.055163521319628,0.031492259353399],[-0.13150078058243,0.025907337665558,0.046449944376945]],[[0.10491633415222,-0.098008319735527,-0.022841168567538],[0.021286780014634,0.12310554087162,-0.022707177326083],[0.12392247468233,-0.047841489315033,0.051554713398218]],[[0.021911414340138,0.00015174414147623,-0.062399890273809],[0.016462555155158,-0.05572297796607,-0.14627654850483],[-0.050812654197216,0.096032105386257,0.13219580054283]],[[0.067152701318264,-0.010678999125957,-0.011587587185204],[-0.0082570370286703,-0.051200687885284,-0.1286795437336],[-0.10053958743811,-0.080390125513077,0.055251106619835]],[[0.0024210945703089,0.052009839564562,-0.081111259758472],[0.083402037620544,0.12481001019478,-0.029599633067846],[-0.18257504701614,0.015434524044394,-0.0067784762941301]],[[0.066764079034328,-0.13058887422085,-0.18322685360909],[0.025068404152989,-0.2252978682518,-0.15061172842979],[0.067997545003891,-0.068211920559406,-0.048474382609129]],[[0.016848355531693,-0.048239696770906,-0.058620523661375],[-0.047379989176989,0.10337927937508,0.03365595266223],[0.064794652163982,-0.03463451191783,-0.0085034854710102]],[[0.10010205209255,0.13690073788166,0.017898742109537],[-0.045763120055199,-0.12724687159061,0.04371116310358],[-0.086073882877827,-0.013257933780551,-0.12695077061653]],[[-0.024775860831141,-0.016279304400086,-0.043066896498203],[-0.011103269644082,-0.050950158387423,0.012627062387764],[0.05762155354023,0.023976506665349,0.0083338748663664]],[[-0.10918272286654,-0.25782719254494,-0.12890625],[-0.066419452428818,0.022058906033635,-0.12273827195168],[-0.0057740500196815,0.047857210040092,0.0035954767372459]],[[-0.13807506859303,-0.031070295721292,0.0027957772836089],[-0.00068034452851862,-0.12091186642647,0.079367347061634],[0.098841108381748,-0.16144141554832,-0.036639731377363]],[[0.026268977671862,-0.045078426599503,0.15098920464516],[-0.0060392543673515,0.075735285878181,-0.012569999322295],[-0.036428153514862,-0.011672693304718,-0.04913530126214]],[[-0.027442701160908,0.084299869835377,0.054109435528517],[-0.12756179273129,-0.013137616217136,-0.096206575632095],[0.022076334804296,0.0034897348377854,0.074971415102482]],[[-0.049729853868484,0.03589928150177,-0.028509676456451],[-0.11350497603416,-0.10118773579597,-0.17142352461815],[0.082999125123024,0.1168187558651,0.0064888745546341]],[[-0.0023472798056901,-0.0099814189597964,0.082402542233467],[-0.031491950154305,-0.12057276070118,-0.19059887528419],[0.2109337002039,0.047072824090719,-0.038796111941338]],[[-0.094342745840549,0.078637592494488,-0.12013896554708],[0.052552785724401,-0.1497869938612,0.005823525134474],[-0.012823582626879,-0.092832393944263,-0.028702015057206]],[[-0.15898840129375,-0.19882905483246,0.01895259693265],[0.022854931652546,-0.021703492850065,0.075932629406452],[-0.05145762488246,-0.11026731133461,0.013831470161676]],[[-0.015565981157124,-0.053263120353222,0.06768424808979],[0.11974607408047,-0.024186160415411,0.13815614581108],[-0.22344690561295,0.0087840259075165,-0.015431857667863]],[[0.0026239447761327,-0.014992132782936,3.2980242394842e-05],[-0.09334347397089,-0.026372659951448,-0.052667133510113],[-0.099906720221043,-0.025773646309972,-0.072215527296066]],[[0.022044477984309,-0.045639056712389,0.015616472810507],[0.0092119798064232,0.048500660806894,0.025401560589671],[0.017316073179245,0.024237195029855,0.068990349769592]],[[-0.25447270274162,0.025857973843813,-0.099480420351028],[-0.049786582589149,-0.016300575807691,0.07549961656332],[0.043196726590395,-0.17595854401588,0.16639539599419]],[[0.015702968463302,0.093985848128796,0.018700635060668],[0.019228840246797,0.15665364265442,-0.12292052805424],[0.045190490782261,-0.06445699185133,0.071189112961292]],[[-0.041477452963591,0.0011247664224356,-0.04042337089777],[0.080160692334175,-0.046607118099928,-0.05724785849452],[0.012865195050836,0.0523453168571,0.13514617085457]],[[0.13381040096283,-0.0066262171603739,0.051039334386587],[0.01943987980485,0.080585613846779,0.0083104316145182],[0.044347316026688,0.010191273875535,-0.019707562401891]],[[0.083238162100315,-0.20104002952576,-0.077726282179356],[-0.051710773259401,-0.051149152219296,0.15199416875839],[0.028398556634784,-0.19191688299179,-0.014908513054252]],[[0.089325562119484,0.0099140042439103,0.11095279455185],[0.047682639211416,0.035830423235893,0.073521956801414],[0.0028884506318718,0.032157480716705,-0.0026180408895016]],[[-0.024052510038018,-0.061478402465582,-0.032292012125254],[-0.043134156614542,0.032505478709936,-0.043688807636499],[0.065787270665169,-0.096756406128407,-0.03546030446887]],[[0.11410091817379,-0.039677057415247,0.034150835126638],[0.079842947423458,-0.08658130466938,0.075716830790043],[-0.023869156837463,0.071795344352722,0.054389070719481]],[[-0.10806865245104,-0.02658111974597,-0.089397273957729],[-0.025606812909245,-0.18939919769764,0.063784830272198],[-0.089776799082756,0.0082937013357878,0.06559781730175]]],[[[-0.10988499224186,-0.15508429706097,0.0019226614385843],[-0.019786484539509,0.060151509940624,-0.094022579491138],[0.022428836673498,-0.0063472399488091,-0.00525963306427]],[[0.11249699443579,0.04677801951766,-0.078253395855427],[-0.028977701440454,-0.048079870641232,0.062405951321125],[0.04077897593379,0.001952187390998,0.16452074050903]],[[-0.015335712581873,-0.066770978271961,-0.01513537671417],[-0.10024003684521,0.013541233725846,0.039513107389212],[0.01835173740983,-0.11774196475744,-0.032619692385197]],[[-0.025487646460533,0.011998407542706,-0.10025060176849],[-0.075749628245831,0.07565400749445,0.0075808251276612],[-0.01991868391633,0.018247103318572,-0.081888824701309]],[[-0.1087414175272,0.02505973726511,-0.1404404938221],[0.097729191184044,-0.10475429147482,0.034126300364733],[0.049137949943542,0.086950458586216,-0.089937806129456]],[[0.039941523224115,0.034982189536095,-0.027911491692066],[-0.021724795922637,-0.13680635392666,-0.080283984541893],[-0.086600303649902,-0.071465238928795,-0.034535944461823]],[[-0.14476239681244,-0.11156791448593,0.15111194550991],[0.052295070141554,0.042060602456331,-0.050920810550451],[0.041475806385279,-0.028026131913066,0.034613754600286]],[[-0.070104017853737,-0.018194563686848,-0.054977156221867],[-0.00067351339384913,-0.03237073123455,-0.097420252859592],[-0.070877566933632,0.092532366514206,0.023052433505654]],[[0.034692283719778,-0.0094162160530686,0.026549249887466],[-0.023680076003075,-0.042201727628708,-0.031356226652861],[0.019269427284598,0.017791939899325,0.12385046482086]],[[-0.052313715219498,-0.025247078388929,0.03856511041522],[0.00276810512878,0.075550675392151,-0.018492620438337],[0.16145877540112,0.0074457880109549,0.1959764957428]],[[0.031565021723509,-0.0079419249668717,-0.18889956176281],[0.010185493156314,-0.042263127863407,-0.10659126937389],[0.057817634195089,0.10151758044958,0.10767891258001]],[[-0.12636752426624,0.0053384252823889,0.075850442051888],[0.07140313833952,0.093937732279301,-0.075922437012196],[0.065094389021397,-0.015260974876583,0.034920524805784]],[[0.014626787044108,-0.095816023647785,0.023997988551855],[0.069815844297409,0.013485187664628,-0.063409939408302],[0.043287016451359,-0.071811743080616,-0.072037599980831]],[[0.016177598387003,-0.073986783623695,0.020017934963107],[0.24262633919716,0.023305851966143,0.21715965867043],[-0.13809554278851,-0.0023926731664687,0.12157236784697]],[[-0.12523031234741,0.045751594007015,-0.15875309705734],[0.037058744579554,0.10416661202908,0.0067664650268853],[-0.17336066067219,-0.013646245934069,0.013631615787745]],[[-0.10973453521729,0.031773287802935,0.10770733654499],[-0.10014128684998,-0.14374123513699,0.11145020276308],[0.074341647326946,0.0064290422014892,-0.037423733621836]],[[0.04248994961381,0.017115119844675,-0.064814522862434],[0.068904176354408,-0.032183993607759,0.037630293518305],[-0.029355397447944,0.070144012570381,-0.061061285436153]],[[-0.08848674595356,0.037853352725506,0.097674667835236],[0.11068218201399,-0.053585983812809,0.0052278037182987],[-0.013434047810733,-0.06821621209383,0.11337140202522]],[[-0.0010029047261924,0.0051037548109889,0.0024353463668376],[0.0081767747178674,-0.011519084684551,-0.090463764965534],[-0.030113410204649,-0.022825891152024,-0.029718868434429]],[[0.0097246803343296,-0.023224398493767,0.025535847991705],[0.0024973452091217,-0.045620258897543,0.036326009780169],[-0.069506764411926,0.098221436142921,-0.022091407328844]],[[0.021132191643119,0.031570166349411,0.09653764218092],[0.16679638624191,-0.046320509165525,-0.03902992233634],[-0.016870316118002,0.051744516938925,-0.1237755715847]],[[-0.034251842647791,-0.022114057093859,-0.090180322527885],[-0.05783137306571,0.070933863520622,0.029377289116383],[-0.00037308619357646,-0.032625116407871,0.0072439601644874]],[[-0.064977683126926,-0.043034568428993,-0.029156032949686],[-0.11314386874437,0.027764929458499,0.044418975710869],[0.084418304264545,0.0035396357998252,-0.16704994440079]],[[-0.053389810025692,0.074470013380051,0.1284047961235],[0.011381649412215,-0.047847654670477,0.041998989880085],[-0.17176662385464,0.10033751279116,0.10487573593855]],[[0.12140423059464,0.065692573785782,-0.11042492836714],[-0.095806561410427,-0.049259964376688,-0.051279775798321],[0.27173656225204,0.14010289311409,0.1222407668829]],[[-0.00062248331960291,-0.045524124056101,-0.035002756863832],[0.038707111030817,-0.053336661309004,0.0061433468945324],[0.089538462460041,0.031367767602205,0.018068946897984]],[[-0.094745740294456,-0.022838149219751,0.088360264897346],[-0.051652632653713,0.017297495156527,0.036184128373861],[-0.083790734410286,0.040140714496374,-0.057974379509687]],[[-0.0041985497809947,-0.043928887695074,-0.0064729359000921],[-0.10213066637516,0.11110555380583,-0.13772217929363],[0.027740731835365,-0.067072138190269,-0.0095012960955501]],[[-0.084488406777382,0.030238987877965,-0.023967837914824],[-0.021782303228974,0.013070962391794,-0.18027421832085],[-0.071820549666882,0.034677106887102,0.040358390659094]],[[0.088686235249043,-0.072696231305599,-0.049279231578112],[-0.010571846738458,-0.065171182155609,-0.055592950433493],[-0.1122323423624,0.047139562666416,0.0032531765755266]],[[-0.039507042616606,0.067937068641186,0.0031561232171953],[0.086226254701614,-0.13550768792629,0.11531616747379],[0.013555527664721,0.025491429492831,-0.095061376690865]],[[0.12832024693489,-0.039680168032646,-0.018603472039104],[-0.068032771348953,0.066181555390358,0.15574251115322],[-0.071754910051823,0.047152504324913,-0.087870493531227]],[[0.065216362476349,0.058582577854395,0.13405241072178],[-0.09526389837265,-0.1750303208828,-0.19740653038025],[0.037219174206257,-0.038200963288546,-0.05462808161974]],[[-0.0046898722648621,-0.12558923661709,0.064586877822876],[0.038449462503195,-0.03018725477159,0.040958598256111],[0.034197967499495,0.11637123674154,0.0027183275669813]],[[-0.16090647876263,-0.013337873853743,-0.11714173853397],[-0.050176557153463,0.0065788365900517,-0.10074835270643],[0.0064847432076931,0.059603113681078,-0.068136364221573]],[[0.0074674007482827,-0.031082032248378,-0.0055175228044391],[0.12433145940304,-0.055772785097361,0.020792383700609],[0.171128064394,0.012179928831756,0.073567435145378]],[[0.085347913205624,0.21709367632866,0.10901682823896],[-0.018092025071383,0.04012456536293,0.12866678833961],[0.087599240243435,0.014365280978382,-0.063477270305157]],[[0.034440532326698,-0.048423409461975,0.033664345741272],[-0.026204323396087,0.024703225120902,0.023383427411318],[0.034472558647394,0.086871467530727,0.053002044558525]],[[0.048970472067595,0.020294824615121,-0.025152148678899],[-0.13592913746834,0.0027501685544848,-0.031034963205457],[0.055121902376413,-0.099271826446056,-0.19802938401699]],[[-0.022787056863308,0.0048277406021953,0.16069850325584],[0.067078083753586,0.090491138398647,0.039045799523592],[-0.015329542569816,-0.070909157395363,-0.13872800767422]],[[0.054357908666134,0.015531447716057,-0.007166835013777],[0.13406604528427,0.031768001616001,0.0062782298773527],[-0.076266638934612,0.05935949459672,0.13538956642151]],[[-0.058208089321852,-0.1289354711771,0.16980284452438],[0.045052945613861,-0.015569602139294,-0.024434512481093],[0.11176156252623,-0.13965509831905,-0.014552572742105]],[[-0.071976900100708,-0.022095169872046,0.022769570350647],[0.042935948818922,-0.0068937968462706,-0.05065855011344],[-0.013732666149735,-0.21965183317661,0.072304204106331]],[[-0.18643140792847,-0.060809727758169,0.0075001805089414],[0.043158411979675,0.090833477675915,0.035566382110119],[-0.082321345806122,0.11146038025618,0.19038970768452]],[[0.076059110462666,-0.039200648665428,0.071807749569416],[0.092587873339653,-0.0038336808793247,-0.030925335362554],[-0.037004180252552,0.046395856887102,0.080835521221161]],[[0.030458591878414,0.086598500609398,-0.10082460939884],[0.02096956409514,-0.095460124313831,0.068973869085312],[-0.16623510420322,0.016404885798693,0.15573500096798]],[[0.025243606418371,-0.020570376887918,0.12521074712276],[0.010463904589415,-0.077340640127659,0.078380510210991],[-0.014994404278696,0.033538531512022,-0.21546153724194]],[[-0.011135813780129,0.099521636962891,0.12914490699768],[-0.00024149059026968,-0.14878843724728,0.061498362571001],[-0.038810104131699,-0.068206444382668,-0.073865681886673]],[[-0.022336376830935,0.067208148539066,-0.029430408030748],[-0.040160156786442,-0.11193036288023,0.1662557721138],[0.0026565950829536,0.15862934291363,0.094014391303062]],[[-0.011890479363501,0.10711608082056,0.24579313397408],[-0.13340041041374,-0.1095845028758,-0.0116524733603],[-0.088650353252888,0.093199543654919,0.16922484338284]],[[0.23215827345848,-0.041699323803186,-0.20784787833691],[0.0091738840565085,-0.045885652303696,0.1087346971035],[0.019435482099652,0.086912862956524,0.088992610573769]],[[0.24136792123318,0.1486964225769,0.023205893114209],[0.11421667784452,-0.0957171022892,-0.062812745571136],[0.057053547352552,0.0059348656795919,-0.11362193524837]],[[0.029802661389112,-0.024431917816401,0.051336318254471],[-0.10405441373587,-0.12593695521355,0.025074452161789],[-0.14029389619827,-0.12866568565369,-0.0443379804492]],[[0.072651453316212,0.018044335767627,0.12810042500496],[0.042768746614456,0.085480310022831,-0.043724928051233],[0.033565100282431,0.047543343156576,0.054525632411242]],[[-0.0063666524365544,0.06104376539588,0.075333684682846],[0.085642918944359,0.0078303460031748,0.0018941892776638],[-0.11031298339367,-0.059661272913218,-0.15971408784389]],[[-0.17782235145569,-0.1282274723053,-0.13616485893726],[-0.098495095968246,0.0023123207502067,0.029141027480364],[0.046519495546818,-0.04373486712575,-0.024214824661613]],[[-0.042739700525999,-0.098478935658932,0.059163853526115],[-0.094375163316727,-0.056225202977657,0.060674339532852],[0.080001518130302,0.031070314347744,0.0053218076936901]],[[0.041378203779459,0.0071455552242696,-0.021870911121368],[-0.016973633319139,-0.0056426785886288,0.03281519934535],[-0.042299166321754,-0.10599394887686,-0.030693978071213]],[[0.011111635714769,0.16205431520939,0.07805860042572],[0.15137895941734,0.09165795147419,0.074312709271908],[0.03857870772481,0.0072509730234742,0.03069743514061]],[[0.044652495533228,-0.049170158803463,0.10821148008108],[-0.16267021000385,-0.088129736483097,0.081884175539017],[-0.1888035684824,-0.10586058348417,0.007320745382458]],[[-0.089247494935989,-0.0085281264036894,-0.11691342294216],[0.069638311862946,-0.12208686769009,-0.027902208268642],[0.071757137775421,0.092861749231815,0.17803409695625]],[[-0.054769363254309,0.0030334640759975,0.085193954408169],[0.075453981757164,0.039940100163221,-0.12026084959507],[-0.046328999102116,0.13235610723495,0.035227462649345]],[[-0.06401776522398,-0.13407988846302,-0.025317655876279],[-0.017007827758789,-0.10710277408361,-0.064875200390816],[0.035344630479813,0.18093729019165,0.028912298381329]],[[-0.052808534353971,-0.062364812940359,-0.042420219630003],[-0.085588783025742,-0.011777957901359,-0.10863357782364],[0.035109654068947,0.010025084018707,0.051158159971237]]],[[[-0.00066502491245046,-0.035939399152994,0.0065769222564995],[0.002549727447331,0.063197948038578,-0.052137978374958],[0.013442722149193,0.048088397830725,-0.032352801412344]],[[-0.02711246162653,-0.087853699922562,-0.038061305880547],[-0.020246688276529,0.092361390590668,-0.10859770327806],[0.037980228662491,0.055318988859653,-0.068779394030571]],[[-0.023106088861823,-0.051010247319937,0.15478576719761],[-0.060499846935272,-0.11615029722452,0.11757665127516],[0.05257023870945,-0.055969569832087,-0.093002386391163]],[[-0.17349678277969,0.047826919704676,0.046551555395126],[0.081090159714222,-0.071862109005451,0.049084786325693],[0.04805389419198,0.010471895337105,-0.029811235144734]],[[-0.093794792890549,-0.08654896914959,-0.047726787626743],[-0.027480347082019,0.013147840276361,-0.074114948511124],[-0.15796068310738,0.077150441706181,0.0010436772136018]],[[0.056224755942822,-0.071742787957191,0.0052563562057912],[-0.00088767922716215,0.18095237016678,-0.11295843869448],[-0.13783237338066,-0.081632010638714,-0.20765165984631]],[[0.0053151124157012,0.016299869865179,0.083547987043858],[0.096385918557644,-0.14301811158657,-0.0075177713297307],[0.028685798868537,0.060434620827436,0.16952823102474]],[[0.090664252638817,0.045848354697227,0.021284889429808],[-0.15587912499905,0.069452345371246,-0.13200514018536],[-0.14704605937004,-0.02448345720768,-0.03985296562314]],[[0.10768356174231,0.074497140944004,-0.11668635904789],[0.036979515105486,-0.086751341819763,-0.13253554701805],[-0.016575876623392,0.11425167322159,0.012870129197836]],[[0.0034285099245608,0.1128406599164,0.076653771102428],[0.0071468777023256,0.084868356585503,0.089736349880695],[-0.041416119784117,-0.079150132834911,0.09571373462677]],[[0.0535833761096,0.00039909654879011,-0.052104994654655],[-0.1745657324791,0.095317296683788,-0.088027030229568],[-0.025651074945927,0.16839568316936,-0.0032693857792765]],[[0.010246153920889,-0.048487287014723,0.017583856359124],[0.054849494248629,-0.078104548156261,-0.0021331908646971],[0.027049787342548,0.034543637186289,0.016773158684373]],[[0.031573627144098,-0.059626623988152,-0.059851638972759],[-0.0048055876977742,-0.08857549726963,-0.0097637511789799],[-0.029217028990388,-0.090834058821201,0.079282067716122]],[[-0.020893581211567,0.08473427593708,-0.13146604597569],[-0.15482965111732,0.02556767500937,0.0079682189971209],[0.14782743155956,-0.16331315040588,-0.12347361445427]],[[0.18045723438263,0.04859909042716,-0.043016564100981],[0.06860688328743,-0.077473387122154,0.17989313602448],[0.18316589295864,-0.24950230121613,-0.052448827773333]],[[-0.0038683973252773,0.0080818962305784,0.15081356465816],[-0.080497287213802,0.095752574503422,0.11368800699711],[0.049096241593361,0.050677385181189,0.050828598439693]],[[-0.033440884202719,0.027503134682775,-0.054956045001745],[-0.077314078807831,-0.045094206929207,0.080766342580318],[-0.0059002307243645,-0.074748024344444,-0.012628028169274]],[[-0.14339862763882,-0.08329314738512,-0.078502736985683],[0.014583192765713,0.097607776522636,-0.17974764108658],[-0.089409671723843,0.12787082791328,0.079131424427032]],[[-0.0070642284117639,-0.049634035676718,0.081156522035599],[0.14207127690315,-0.1062436029315,-0.023498483002186],[-0.11365586519241,-0.11266841739416,-0.15570403635502]],[[-0.12416584789753,-0.071518771350384,0.0031872354447842],[-0.070189245045185,0.1261555403471,-0.0051574655808508],[0.08390200138092,-0.19384691119194,-0.25791352987289]],[[0.034858100116253,-0.12143424153328,0.001234894967638],[-0.0058770487084985,-0.032851543277502,-0.011705263517797],[-0.03690429776907,-0.16148583590984,0.066217318177223]],[[-0.086794562637806,-0.040825553238392,0.029473500326276],[0.00092908676015213,0.022062303498387,0.022337257862091],[-0.02161593735218,-0.07594707608223,-0.079669967293739]],[[0.067645698785782,0.05154974758625,0.058094125241041],[0.032181520015001,0.069968104362488,-0.0036919373087585],[-0.026120465248823,-0.063504084944725,-0.066726580262184]],[[0.14719592034817,0.080833591520786,0.19556365907192],[0.070691093802452,0.0013774522813037,0.31372821331024],[-0.061469260603189,-0.16774301230907,0.2523849606514]],[[0.05167880654335,0.16350573301315,0.040759362280369],[-0.0065807183273137,0.076707124710083,-0.026518806815147],[-0.015562081709504,0.050876196473837,0.065085373818874]],[[-0.0056816767901182,0.047288581728935,-0.01736106723547],[0.057386390864849,0.0035081261303276,-0.13884572684765],[0.081332422792912,0.037141889333725,0.016679057851434]],[[-0.16384521126747,-0.15850758552551,0.066890314221382],[-0.058335721492767,-0.034125789999962,0.055491581559181],[-0.01667938195169,0.066435627639294,0.036540575325489]],[[-0.121133685112,0.094738945364952,0.1830236017704],[-0.035823121666908,-0.096232630312443,-0.23979806900024],[-0.065490037202835,-0.00079466769238934,-0.11130825430155]],[[-0.27115479111671,0.064381659030914,-0.14311565458775],[0.0097144264727831,0.050774857401848,-0.29818630218506],[-0.061215985566378,-0.06655415892601,0.13394570350647]],[[-0.025670757517219,0.07747807353735,0.19551761448383],[-0.080691888928413,0.010393786244094,0.0099875405430794],[0.023038499057293,-0.037073593586683,-0.1027050614357]],[[0.22112816572189,-0.094736315310001,0.018074443563819],[0.30618792772293,-0.21337404847145,0.016783244907856],[0.11357428878546,-0.15107704699039,0.058811850845814]],[[-0.012595903128386,-0.12784084677696,0.28913202881813],[0.11396612226963,-0.17240861058235,0.038438390940428],[0.11732530593872,0.058200020343065,0.013832999393344]],[[-0.056819923222065,-0.098167277872562,-0.10028242319822],[-0.091041706502438,0.06116758659482,0.13191366195679],[0.068588994443417,0.065885834395885,0.059478782117367]],[[-0.025518449023366,-0.035492666065693,-0.086298577487469],[-0.03890773281455,0.016628636047244,0.099989086389542],[0.074122920632362,-0.012483931146562,0.030719790607691]],[[-0.005521206650883,-0.15385258197784,-0.011777869425714],[0.040897626429796,-0.16088861227036,0.055635325610638],[0.073588311672211,0.043272104114294,-0.0046345787122846]],[[-0.0042180116288364,0.057163581252098,0.042662408202887],[0.026852896437049,0.034259352833033,0.014104639180005],[-0.040207017213106,0.023216107860208,0.090349458158016]],[[0.01551500428468,0.086877159774303,0.054268795996904],[-0.02255030348897,0.038133926689625,0.045195244252682],[-0.061711251735687,0.055269617587328,0.1428679227829]],[[-0.11525821685791,0.063740387558937,0.095412164926529],[-0.065986111760139,-0.055375121533871,-0.08407661318779],[0.038952130824327,-0.043857056647539,-0.060090612620115]],[[-0.086031027138233,0.18417859077454,0.10614633560181],[0.012091413140297,0.033919032663107,-0.10976583510637],[-0.0041708867065609,0.012046894989908,-0.047485210001469]],[[0.014162557199597,-0.040630273520947,0.11888957023621],[0.11091046780348,0.15932901203632,-0.032491870224476],[-0.14096890389919,0.025596424937248,-0.10433224588633]],[[0.024532921612263,-0.11242154985666,0.011795757338405],[0.036051832139492,-0.12288890779018,-0.022824861109257],[-0.03243987634778,-0.015693988651037,-0.040813937783241]],[[-0.027584144845605,-0.0055208830162883,0.11501743644476],[0.065464481711388,-0.033550314605236,0.069677636027336],[-0.061993420124054,-0.051518775522709,0.061836760491133]],[[0.044210411608219,0.17847113311291,-0.098474331200123],[0.089203834533691,-0.089578963816166,0.0076661347411573],[0.012012102641165,0.015831589698792,-0.043920055031776]],[[-0.18754209578037,0.034087415784597,-0.2029671818018],[-0.11109187453985,0.079606473445892,-0.13836079835892],[0.0022427837830037,-0.090578861534595,-0.25376975536346]],[[-0.14704175293446,0.04728714004159,0.17236283421516],[-0.14208985865116,0.10314080119133,0.0091752074658871],[-0.21206177771091,0.048121582716703,0.11822573840618]],[[-0.071134977042675,0.071180582046509,-0.08101411908865],[0.066328808665276,-0.11648917198181,0.082018330693245],[0.14340309798717,-0.066969625651836,-0.16853293776512]],[[0.16332599520683,-0.0033210676629096,0.066392682492733],[-0.057547941803932,-0.042274948209524,0.11707839369774],[-0.073326662182808,0.069917671382427,-0.0087973987683654]],[[0.020978536456823,0.10528173297644,0.12355062365532],[-0.089153736829758,0.045445792376995,0.12094661593437],[0.076892539858818,0.1109232455492,-0.016417210921645]],[[-0.055974792689085,-0.16419617831707,0.049297954887152],[-0.014792532660067,-0.082391686737537,0.0071370410732925],[-0.0043776133097708,0.012903111986816,-0.093865215778351]],[[-0.077972680330276,-0.078771516680717,0.030038962140679],[0.0090479617938399,0.14802071452141,-0.028030188754201],[0.060024604201317,0.24970254302025,0.15706284344196]],[[0.086433053016663,-0.0064410795457661,-0.10393958538771],[0.030257543548942,-0.057705987244844,0.095482982695103],[-0.024083940312266,-0.015493229031563,-0.23614875972271]],[[-0.0081726033240557,0.077725522220135,-0.12642174959183],[0.112743742764,-0.0088190827518702,-0.046076588332653],[0.12614233791828,-0.013055332005024,-0.13815505802631]],[[-0.054890938103199,-0.053121365606785,0.087623752653599],[0.048639349639416,-0.081628620624542,0.1037020906806],[0.028036069124937,-0.0032481381203979,0.023966042324901]],[[0.041888047009706,0.060912169516087,-0.13937565684319],[0.0052455281838775,-0.0067616445012391,-0.004988154862076],[-0.080789543688297,0.059198912233114,-0.062137793749571]],[[-0.040512997657061,-0.047682497650385,-0.048306792974472],[-0.050885196775198,0.015419541858137,-0.0089538479223847],[0.039180845022202,-0.023137422278523,-0.036341574043036]],[[0.034207630902529,-0.0080291423946619,0.046921223402023],[0.046642377972603,-0.018014673143625,-0.10136219114065],[0.13960786163807,-0.0080900099128485,-0.038160219788551]],[[-0.052990544587374,-0.11434295028448,-0.038436450064182],[-0.064855843782425,-0.1219624131918,-0.024632869288325],[0.040159549564123,-0.044845294207335,0.12674354016781]],[[-0.066508956253529,-0.067979767918587,-0.078539684414864],[-0.027867255732417,-0.076634973287582,0.014801797457039],[0.0068905227817595,0.054753474891186,-0.03264344483614]],[[0.13130065798759,0.19225257635117,0.22827453911304],[0.049714837223291,0.10227212309837,0.19066888093948],[-0.0010671227937564,-0.011245591565967,0.080349989235401]],[[0.055111013352871,0.0070535009726882,0.098746933043003],[-0.040309593081474,0.041961513459682,0.10342996567488],[0.099200792610645,-0.03848272562027,-0.23870961368084]],[[0.043026264756918,0.12228324264288,-0.097763478755951],[0.076090142130852,-0.026226321235299,-0.087854973971844],[0.13008406758308,0.020246751606464,0.099246628582478]],[[-0.017618235200644,-0.039372261613607,0.08066438138485],[0.062782816588879,0.02368364110589,-0.0383146032691],[-0.046949371695518,-0.003890146734193,0.18047358095646]],[[-0.0039028997998685,-0.0802366361022,-0.10766848176718],[-0.048484493046999,0.030050987377763,0.086396552622318],[0.0049609402194619,0.011314386501908,0.15291008353233]],[[0.18929274380207,-0.12530417740345,-0.02579465508461],[0.10267370939255,-0.12338123470545,0.10484451055527],[-0.13487115502357,0.084521502256393,-0.0060399989597499]]],[[[-0.1423916965723,-0.092436775565147,-0.02129658870399],[-0.095167696475983,-0.054016102105379,0.0031523837242275],[-0.12769216299057,-0.052726294845343,0.066992737352848]],[[-0.067290745675564,0.070369116961956,0.084287382662296],[-0.13536565005779,-0.016587905585766,0.058350510895252],[-0.15124098956585,-0.016007514670491,-0.011199969798326]],[[-0.071793764829636,-0.037615917623043,-0.021697925403714],[-0.010930461809039,0.044879503548145,-0.019935946911573],[-0.034596562385559,0.020372899249196,-0.0077849091030657]],[[0.03348147124052,0.057118948549032,0.19464422762394],[-0.13855472207069,-0.016302140429616,-0.019796773791313],[-0.047536540776491,0.026313923299313,-0.005607018712908]],[[-0.12724527716637,-0.021288603544235,0.078997366130352],[0.096239879727364,0.1539149582386,0.013267436996102],[-0.048851542174816,-0.01126806717366,-0.043174151331186]],[[-0.059847056865692,-0.056587714701891,0.055683996528387],[-0.040026903152466,0.068557277321815,-0.041932675987482],[-0.080995604395866,-0.039176359772682,-0.028566332533956]],[[-0.072231240570545,-0.054252576082945,0.024017963558435],[-0.050199300050735,-0.023123485967517,0.14184483885765],[-0.042072497308254,-0.14235238730907,0.10071881860495]],[[0.018727190792561,-0.022120866924524,0.16987901926041],[0.015627134591341,-0.0022994969040155,0.029864013195038],[-0.16336305439472,-0.11162038892508,-0.13382656872272]],[[-0.065604478120804,-0.050708502531052,0.035054743289948],[-0.098699100315571,-0.053582593798637,0.1119337528944],[-0.038848828524351,-0.050998438149691,0.071236938238144]],[[-0.029391411691904,-0.1165988817811,0.049889989197254],[-0.036534283310175,-0.16127115488052,0.079243332147598],[-0.18601259589195,-0.098709233105183,0.0058717969805002]],[[0.043425042182207,-0.09050976485014,0.00024053221568465],[-0.050750948488712,-0.03653834015131,-0.047639984637499],[-0.10509771108627,0.049457352608442,0.065991289913654]],[[-0.14289729297161,-0.036842588335276,0.025897489860654],[-0.079893194139004,0.089210949838161,-0.039270263165236],[0.015672327950597,-0.14056240022182,0.11412134766579]],[[0.0069460216909647,-0.086565956473351,0.044274788349867],[-0.076631247997284,0.067179434001446,-0.0093292184174061],[-0.21909461915493,-0.037154752761126,0.051555935293436]],[[-0.052614502608776,-0.057552229613066,-0.016317840665579],[-0.075592249631882,0.0090838707983494,0.054958146065474],[-0.044403038918972,-0.043057627975941,0.061587430536747]],[[0.09294168651104,0.10564012825489,0.10680984705687],[-0.032045125961304,0.078580796718597,0.032124195247889],[-0.22621069848537,-0.064739175140858,0.1445482224226]],[[-0.061137180775404,-0.01992185972631,0.0065063280053437],[-0.15051794052124,-0.077686108648777,0.0077711236663163],[-0.09736330807209,0.0052172392606735,0.06955124437809]],[[-0.044633261859417,0.019634895026684,0.11783158034086],[-0.15622808039188,0.057385604828596,0.12077394127846],[-0.019965209066868,-0.062779314815998,0.092816524207592]],[[0.032378014177084,0.05082106217742,0.082899078726768],[-0.07602322101593,0.017169060185552,0.094046384096146],[0.064095541834831,0.082107193768024,0.074039690196514]],[[0.018460910767317,-0.07539701461792,0.095487162470818],[-0.022249212488532,0.062651216983795,-0.084022350609303],[-0.015461897477508,0.081835575401783,0.073359690606594]],[[-0.1130533888936,0.075719565153122,0.17063139379025],[-0.07064963132143,0.022099938243628,0.087339699268341],[-0.17204585671425,-0.040182806551456,-0.020990887656808]],[[-0.13058006763458,-0.063762374222279,0.087641581892967],[-0.14070852100849,0.014522486366332,0.01575942710042],[-0.21988195180893,-0.21105889976025,0.056431353092194]],[[-0.013043038547039,0.024497743695974,-0.044185884296894],[-0.070419378578663,0.092528276145458,-0.061939992010593],[-0.05572571977973,0.021634610369802,-0.030453752726316]],[[-0.050466060638428,-0.0021314702462405,0.028230793774128],[0.027963202446699,-0.013323530554771,0.10781895369291],[-0.046063262969255,-0.10244088619947,0.075476437807083]],[[0.043308679014444,-0.062653005123138,0.069373965263367],[-0.065355613827705,-0.081694006919861,-0.024754896759987],[-0.017407370731235,0.06047660112381,-0.11671457439661]],[[0.076630920171738,-0.062312033027411,0.038883663713932],[0.12939804792404,0.044561814516783,-0.11438880115747],[0.040945075452328,-0.0083059398457408,-0.11827636510134]],[[-0.07894641906023,-0.023864218965173,0.10899142175913],[-0.016082121059299,-0.050848834216595,0.055201921612024],[-0.090613789856434,0.055270746350288,0.0048614959232509]],[[-0.20661753416061,-0.010843769647181,0.1012941300869],[-0.12093464285135,0.055574361234903,0.13219839334488],[-0.014511343091726,-0.0025852075777948,0.035716891288757]],[[0.043687611818314,-0.016094073653221,-0.13428357243538],[0.14606258273125,0.00073663651710376,-0.11518733203411],[0.11609488725662,-0.031579662114382,-0.0098635470494628]],[[0.027292374521494,0.0076062786392868,0.026932131499052],[0.0060808421112597,0.019179530441761,0.011560251004994],[-0.15549929440022,-0.041365850716829,0.054194282740355]],[[-0.089447341859341,-0.18401639163494,-0.0087446663528681],[-0.081104055047035,-0.00025235762586817,0.036863032728434],[0.020160548388958,-0.018066851422191,0.074215449392796]],[[0.059994533658028,0.069435596466064,-0.076817974448204],[0.043888933956623,0.040849331766367,0.025824695825577],[0.078471042215824,0.10263135284185,0.04638546705246]],[[-0.021250914782286,0.0070085148327053,0.15750350058079],[-0.025242967531085,0.047209728509188,0.035865992307663],[0.018471617251635,-0.072512596845627,-0.10275076329708]],[[0.11306984722614,0.011010573245585,0.090458795428276],[-0.11573408544064,-0.02511745877564,0.043851085007191],[-0.19578537344933,-0.15259677171707,-0.15189684927464]],[[-0.076129823923111,-0.018148979172111,-0.054866518825293],[-0.25038492679596,-0.0080153876915574,0.089801616966724],[-0.25778287649155,-0.064561687409878,0.05955320969224]],[[-0.067179091274738,0.02295932546258,0.15594686567783],[-0.013921844772995,0.1154977530241,0.062411367893219],[-0.23445053398609,-0.030444044619799,-0.011454645544291]],[[0.16401666402817,-0.0040568592958152,0.027577919885516],[-0.0034159666392952,-0.0029068400617689,-0.034870788455009],[0.076411917805672,0.010552193038166,-0.07087454944849]],[[0.11903217434883,-0.031961794942617,-0.073191240429878],[0.086818307638168,0.093311190605164,-0.048168323934078],[0.018615446984768,0.14477635920048,-0.1351296454668]],[[-0.017171962186694,-0.015605305321515,0.031479477882385],[-0.03391195833683,-0.017688600346446,0.074158109724522],[-0.10910046845675,-0.10636634379625,0.13374280929565]],[[0.082325406372547,-0.019490556791425,-0.018876664340496],[-0.053447969257832,0.016628241166472,-0.032835941761732],[-0.033512234687805,-0.075908951461315,-0.021698584780097]],[[-0.15861693024635,0.044831439852715,0.046899173408747],[-0.12714806199074,-0.020192187279463,-0.065776117146015],[-0.014560247771442,-0.07153395563364,0.068252325057983]],[[-0.095271520316601,-0.0075480407103896,0.07737935334444],[0.087176606059074,-0.11806370317936,-0.16182321310043],[-0.057455755770206,-0.029735520482063,-0.033339913934469]],[[0.04958626255393,0.14258359372616,0.091022923588753],[-0.026605512946844,0.060606721788645,0.032769672572613],[-0.2050743252039,0.086638204753399,0.095584496855736]],[[-0.015218725427985,0.070104606449604,0.084088489413261],[0.09255114197731,0.026238717138767,-0.085380978882313],[-0.31400373578072,0.14849139750004,0.053761631250381]],[[-0.012810658663511,0.086683116853237,-0.06291102617979],[-0.23487977683544,-0.04763388633728,0.042712360620499],[-0.027258411049843,0.047027092427015,0.017697378993034]],[[0.14522308111191,-0.038018632680178,-0.088088162243366],[0.078987948596478,-0.050859689712524,-0.012127361260355],[0.057642806321383,-0.022602923214436,0.096437335014343]],[[-0.14462728798389,-0.079356260597706,-0.19960840046406],[-0.039486944675446,-0.13486199080944,-0.1084836050868],[-0.051966413855553,-0.0054782228544354,-0.049747835844755]],[[0.12729035317898,0.0027702881488949,0.036875933408737],[0.11476186662912,-0.054917693138123,0.092547819018364],[0.1217924952507,0.03637982904911,-0.067578844726086]],[[-0.0093045439571142,-0.11200266331434,-0.058518711477518],[0.052936889231205,-0.094988368451595,-0.055588729679585],[0.063843443989754,-0.065511368215084,-0.037020847201347]],[[0.06394500285387,0.014904142357409,-0.043360307812691],[0.052421469241381,-0.027823518961668,0.017963396385312],[0.068089164793491,-0.06069228053093,-0.065849937498569]],[[-0.083832196891308,0.029231229797006,0.027571149170399],[0.029582947492599,0.037848852574825,0.12527135014534],[0.070127815008163,-0.0010664920555428,0.046306997537613]],[[-0.082499019801617,-0.03623678162694,0.027468578889966],[0.030433485284448,-0.035590525716543,0.081711187958717],[-0.11841673403978,-0.016019510105252,0.12145727872849]],[[-0.025069219991565,-0.034980032593012,-0.096768960356712],[-0.11747749894857,0.039034202694893,-0.061037335544825],[-0.054025959223509,0.083422042429447,-0.056938640773296]],[[-0.12657910585403,-0.038183521479368,0.071949392557144],[-0.15647047758102,0.042619336396456,0.012967557646334],[-0.11888226866722,0.025275060907006,0.06479723751545]],[[0.064432613551617,0.031185459345579,-0.010211225599051],[0.1293286383152,0.012705598026514,-0.0047127692960203],[0.15786138176918,0.00082953117089346,0.033329516649246]],[[0.097723543643951,-0.030466385185719,0.037973459810019],[0.072865933179855,-0.12509697675705,-0.016065878793597],[-0.090303733944893,0.031184084713459,0.00092530762776732]],[[0.061495535075665,0.042321793735027,0.042749162763357],[0.053237643092871,0.026273593306541,0.036770433187485],[-0.10214219987392,0.037019446492195,0.025706214830279]],[[-0.15787854790688,-0.042280353605747,0.063792861998081],[-0.012251333333552,0.060610931366682,0.049192074686289],[-0.081371806561947,-0.015888210386038,0.05986825376749]],[[-0.051176924258471,-0.092234052717686,0.04039528593421],[-0.064612090587616,-0.21561707556248,0.0069653647951782],[-0.091793023049831,-0.022693892940879,0.071221426129341]],[[0.11380864679813,0.052656751126051,-0.062550753355026],[0.080499388277531,0.064417168498039,-0.063834272325039],[0.13018982112408,0.09074479341507,0.012897435575724]],[[0.167156919837,-0.010450375266373,0.077743887901306],[0.12058218568563,0.07834205031395,-0.025885686278343],[0.22560101747513,0.014362151734531,-0.048845268785954]],[[0.017791919410229,0.049971349537373,0.057395726442337],[0.16151498258114,0.022345926612616,0.065300464630127],[0.049129337072372,0.089772075414658,0.0013135763583705]],[[0.12488767504692,0.021199503913522,-0.027921637520194],[0.037943992763758,0.060400433838367,-0.096657253801823],[-0.10397955030203,-0.062816545367241,0.053618993610144]],[[-0.11669465154409,0.085354633629322,0.013866576366127],[-0.02884822897613,0.055500995367765,-0.0010573867475614],[-0.090219341218472,0.048543833196163,0.15434111654758]],[[-0.010570975020528,-0.011854717507958,0.0086095314472914],[-0.0078615061938763,-0.025222755968571,0.050460442900658],[0.089767560362816,-0.072022803127766,-0.017550202086568]]],[[[-0.043145123869181,-0.047975812107325,-0.20459122955799],[-0.00010738892888185,-0.014325769618154,-0.057986069470644],[-0.029249258339405,-0.010176994837821,-0.090001150965691]],[[-0.014866830781102,-0.048498671501875,-0.12643420696259],[-0.066947922110558,0.0093976901844144,0.10873702913523],[-0.052939243614674,0.010140377096832,0.062567256391048]],[[0.10036924481392,0.00080677797086537,-0.038397874683142],[-0.016507960855961,-0.099383056163788,-0.18503104150295],[-0.038137186318636,-0.037699703127146,-0.061772849410772]],[[-0.0047755977138877,0.059743627905846,-0.023754522204399],[0.15291564166546,-0.029926599934697,-0.058925461024046],[-0.010680737905204,-0.0049590277485549,-0.076789155602455]],[[0.011394947767258,-0.01848915591836,-0.055177520960569],[0.060529783368111,-0.02412049099803,-0.19147707521915],[-0.026844451203942,0.10423623025417,0.07062403857708]],[[-0.031304877251387,-0.0464380197227,0.046904608607292],[-0.07566849142313,0.064521551132202,0.086067743599415],[0.13577543199062,0.05691010132432,-0.05952301248908]],[[-0.10734114050865,-0.010515038855374,-0.084522537887096],[0.032073806971312,0.088525682687759,-0.06791940331459],[0.068581320345402,0.098127461969852,0.11872604489326]],[[-0.11001608520746,-0.043223962187767,0.0012163403443992],[-0.018061811104417,0.1043599396944,0.052448708564043],[-0.057413142174482,0.089429572224617,-0.068267352879047]],[[0.049070712178946,0.011275069788098,0.042831059545279],[-0.010145041160285,-0.066776908934116,-0.12182915955782],[-0.092537850141525,-0.14479513466358,-0.020103408023715]],[[-0.063203997910023,0.15250131487846,-0.13078920543194],[0.13148276507854,-0.029540669173002,-0.10957745462656],[-0.0083474265411496,-0.0091003440320492,-0.061460468918085]],[[0.065197952091694,-0.037195317447186,-0.17546969652176],[0.084036149084568,0.0091993771493435,0.028978522866964],[-0.03997066244483,0.050649724900723,-0.12952682375908]],[[0.025713361799717,0.064109236001968,0.026432119309902],[-0.004456952214241,-0.086160242557526,0.044989455491304],[-0.14970701932907,0.017641924321651,-0.009770205244422]],[[-0.079402677714825,0.0025469993706793,-0.034394890069962],[-0.14370462298393,-0.06109206750989,0.05128413438797],[-0.099806435406208,-0.024971501901746,0.013230996206403]],[[-0.16180913150311,-0.083143420517445,-0.12334508448839],[-0.11280162632465,-0.082671955227852,-0.13792563974857],[-0.1149560213089,0.03560895472765,-0.16150489449501]],[[0.12447336316109,0.037072375416756,0.048341058194637],[-0.089509904384613,-0.039837397634983,0.091584131121635],[-0.00069565058220178,-0.0044692093506455,-0.070161178708076]],[[0.070542126893997,-0.19208368659019,-0.016169028356671],[-0.060117527842522,0.089826963841915,0.2223661839962],[-0.033569648861885,-0.00696069188416,0.012403787113726]],[[0.023993307724595,-0.10700918734074,-0.15113168954849],[-0.012308369390666,0.063451558351517,0.18246608972549],[-0.040296085178852,0.09173846244812,0.016415337100625]],[[-0.14065669476986,0.064319118857384,-0.11584212630987],[0.089151442050934,-0.031812179833651,-0.18165639042854],[-0.14218950271606,-0.16838075220585,-0.13131010532379]],[[-0.066157758235931,0.070793680846691,-0.059129752218723],[-0.045424375683069,-0.0010746838524938,-0.088247269392014],[0.035012047737837,-0.017547685652971,-0.069108903408051]],[[-0.035399403423071,0.10030648857355,0.049078572541475],[0.089424081146717,-0.044035043567419,-0.059833887964487],[-0.09371992200613,-0.12164977937937,0.088928490877151]],[[-0.051203642040491,0.033062264323235,0.028827795758843],[0.042638678103685,0.12384757399559,0.050815355032682],[0.11345801502466,0.015158933587372,0.0050883130170405]],[[-0.013008574955165,-0.083982944488525,0.013886860571802],[0.013009825721383,-0.050338000059128,-0.0049090785905719],[-0.010820706374943,-0.0083484146744013,-0.041867185384035]],[[0.043094497174025,0.069146201014519,0.0047068758867681],[0.017810789868236,0.078248500823975,0.020737767219543],[0.0074179135262966,-0.040724210441113,0.057113323360682]],[[0.033238515257835,-0.00052236294141039,0.041891772300005],[0.01246125344187,0.057973109185696,0.11595889925957],[0.12885989248753,-0.16745682060719,0.046129029244184]],[[0.060083720833063,-0.043625351041555,-0.075052835047245],[0.095451511442661,0.064265221357346,0.056873578578234],[0.098013073205948,0.0076609393581748,0.13407163321972]],[[0.056007299572229,0.12122917920351,-0.065860338509083],[0.024516750127077,-0.00706059159711,-0.051048640161753],[-0.064340032637119,0.040538959205151,-0.064169004559517]],[[0.083887070417404,0.089382238686085,0.08121670037508],[-0.017720252275467,0.065510734915733,-0.028635688126087],[-0.050955414772034,0.0027965742629021,-0.044895004481077]],[[0.0039725052192807,0.047747790813446,-0.033444922417402],[0.013585223816335,0.013628308661282,0.0036484918091446],[0.16293503344059,0.014933736994863,-0.050931956619024]],[[0.0049768448807299,0.11971326172352,0.073078945279121],[0.025910165160894,0.091851010918617,-0.043055038899183],[-0.030481228604913,-0.051563315093517,-0.0072101736441255]],[[0.076795816421509,0.00078428059350699,0.031601510941982],[-0.044390503317118,-0.098138213157654,-0.058506820350885],[-0.0566829405725,0.038901306688786,-0.13848930597305]],[[-0.011766005307436,-0.072822891175747,-0.012893382459879],[-0.048731818795204,-0.083202369511127,0.0064843096770346],[-0.033476628363132,0.01318749319762,-0.022344894707203]],[[-0.093234144151211,-0.036373049020767,-0.069015674293041],[-0.014271744526923,-0.041976653039455,-0.010368198156357],[0.029063677415252,-0.041462939232588,0.055009331554174]],[[0.044532548636198,-0.041058227419853,-0.024280155077577],[-0.027442933991551,-0.21476404368877,0.045307490974665],[-0.00045832258183509,-0.066247567534447,-0.045226953923702]],[[-0.0922976359725,0.027872217819095,0.15987169742584],[0.071085333824158,0.081389829516411,-0.083912469446659],[0.091826282441616,0.024451732635498,-0.064336590468884]],[[0.020476669073105,-0.026409624144435,-0.076301887631416],[-0.060810178518295,-0.047234375029802,-0.043552432209253],[0.020329669117928,0.07197467237711,0.031003041192889]],[[0.13192895054817,0.10024470835924,0.047199331223965],[0.094757303595543,0.10638384521008,-0.025667732581496],[0.14512066543102,0.014765460044146,-0.13492579758167]],[[0.023602465167642,0.17411303520203,0.035441461950541],[-0.037422522902489,0.049597673118114,0.064115218818188],[-0.012340853922069,0.14218154549599,-0.10366807132959]],[[-0.032687447965145,0.064273796975613,-0.0014872305328026],[-0.014123375527561,-0.087653979659081,-0.034060548990965],[0.13460467755795,0.08420804142952,-0.030553722754121]],[[-0.11358816921711,0.087430819869041,0.051981382071972],[-0.020806754007936,0.017425334081054,-0.23398688435555],[0.045346952974796,-0.12200064212084,-0.091070450842381]],[[-0.012535158544779,-0.065722905099392,-0.21166963875294],[-0.0023494842462242,0.083729155361652,0.0027815154753625],[-0.10797022283077,-0.033158469945192,-0.070209316909313]],[[0.091296777129173,-0.05450601875782,0.13437201082706],[-0.12267656624317,-0.020403327420354,-0.0059211603365839],[-0.070874981582165,0.046545747667551,0.036377433687449]],[[0.039146494120359,-0.14941599965096,-0.084633335471153],[-0.10146181285381,-0.092719480395317,0.020114263519645],[-0.031759764999151,-0.014277360402048,0.082049563527107]],[[-0.10636692494154,-0.022519860416651,-0.052906632423401],[-0.023674696683884,-0.15108719468117,-0.031418386846781],[0.041972704231739,0.077693812549114,0.16084511578083]],[[0.094536937773228,-0.028612157329917,-0.1149884313345],[-0.0069514308124781,0.17151837050915,0.087417870759964],[0.043602045625448,0.050373636186123,0.013479500077665]],[[0.24719071388245,-0.18950067460537,-0.30943188071251],[-0.037869937717915,-0.015231595374644,-0.045605316758156],[-0.0087952958419919,-0.095467247068882,0.10317195206881]],[[-0.0023783827200532,-0.058344293385744,-0.0060033407062292],[-0.030173402279615,-0.14557941257954,-0.057967580854893],[0.043569404631853,0.037753526121378,0.027271704748273]],[[0.079868450760841,-0.017325151711702,0.18729290366173],[0.067081481218338,0.050900164991617,-0.13021539151669],[-0.10434366762638,-0.0023498148657382,0.060039106756449]],[[-0.023884780704975,-0.058254029601812,0.03430612385273],[0.080703280866146,0.07442793995142,-0.10635067522526],[0.050470631569624,0.11375489085913,0.055636152625084]],[[0.058571986854076,-0.050760686397552,0.072844184935093],[0.018160944804549,0.029343185946345,-0.02461046539247],[-0.051394555717707,-0.070134609937668,-0.034374564886093]],[[0.12358127534389,-0.085509493947029,-0.18697868287563],[0.016696589067578,0.014978065155447,-0.016247693449259],[0.070622071623802,0.0012842956930399,-0.13481970131397]],[[-0.10872681438923,-0.060251053422689,0.027839321643114],[-0.0031140064820647,0.068395525217056,0.039446823298931],[-0.058354377746582,-0.10366207361221,-0.0097678722813725]],[[-0.12500317394733,-0.061545211821795,-0.04874724149704],[-0.02570690959692,0.12358890473843,0.038256026804447],[-0.095363095402718,0.050562717020512,0.055402416735888]],[[0.0044941059313715,0.014320739544928,0.075198315083981],[0.019621834158897,0.040460120886564,0.050490379333496],[0.064224861562252,0.011756554245949,0.034203141927719]],[[0.0069105243310332,-0.019888402894139,-0.076011084020138],[-0.073912128806114,-0.090618424117565,-0.12735833227634],[0.056831311434507,0.051532413810492,0.016561698168516]],[[0.042475342750549,-0.0067161424085498,-0.046322777867317],[0.068642288446426,-0.044487424194813,-0.0029342577327043],[-0.048381209373474,-0.0042283977381885,-0.089229814708233]],[[0.044120535254478,-0.053779765963554,0.025306213647127],[0.098883777856827,0.011129799298942,-0.098159044981003],[0.087786749005318,-0.095875702798367,-0.14631617069244]],[[-0.066873610019684,-0.0051163053140044,0.0608039945364],[0.058663062751293,-0.047528337687254,-0.0088135581463575],[0.099345944821835,-0.012107709422708,-0.033376552164555]],[[0.023975806310773,-0.079608500003815,-0.027102859690785],[-0.055775880813599,-0.017567455768585,0.078479714691639],[0.04941775277257,-0.010241415351629,0.12823678553104]],[[-0.0072379084303975,-0.02840200252831,0.11233067512512],[-0.042933594435453,0.12553077936172,0.1396678686142],[-0.049325790256262,0.14484620094299,0.24908213317394]],[[-0.12034910917282,-0.053913574665785,0.11309316754341],[0.089464902877808,0.014641953632236,-0.0049923839978874],[-0.12880004942417,0.1384132951498,-0.090221680700779]],[[-0.20781290531158,-0.055129375308752,0.043958704918623],[-0.12682256102562,-0.098506189882755,-0.022605150938034],[-0.017213674262166,-0.18060426414013,0.072191074490547]],[[-0.075085267424583,0.10244274884462,0.034769378602505],[-0.096290528774261,-0.0054403534159064,-0.14015382528305],[0.07814509421587,-0.1863696873188,-0.12716129422188]],[[-0.04033900052309,0.057204365730286,-0.058282304555178],[-0.037789206951857,0.19671437144279,0.046611793339252],[-0.1020599976182,-0.14787678420544,0.037883024662733]],[[0.03946303203702,0.10226525366306,0.011579351499677],[0.06646104902029,0.0089541804045439,0.018558841198683],[-0.25463071465492,-0.0260174497962,-0.061907261610031]]],[[[0.024529200047255,-0.1299706697464,-0.11365757882595],[-0.14950503408909,-0.1054514721036,0.023555742576718],[-0.040025647729635,0.0069430610165,-0.011466698721051]],[[-0.1628285497427,-0.098152130842209,-0.083610653877258],[0.095929943025112,0.0089994091540575,-0.076772294938564],[-0.10774774104357,-0.003250831970945,-0.044003132730722]],[[0.10994598269463,-0.020355027168989,0.042988538742065],[-0.007663116324693,-0.028567334637046,-0.035135507583618],[-0.034342769533396,-0.035124912858009,-0.013142549432814]],[[0.041640773415565,-0.042109079658985,0.09081644564867],[-0.052317999303341,0.14833624660969,-0.018145032227039],[-0.056252352893353,0.0035391231067479,-0.11696595698595]],[[0.048437971621752,0.088410265743732,0.17744761705399],[0.073245197534561,0.01995456404984,-0.0055803637951612],[0.030133724212646,0.027445361018181,-0.090785928070545]],[[0.098204143345356,-0.084966696798801,-0.096653617918491],[0.0035641370341182,-0.017397172749043,0.035314343869686],[0.024409014731646,0.032319456338882,0.024830736219883]],[[-0.07983124256134,0.067509040236473,0.17087738215923],[-0.046899676322937,0.074305936694145,0.078110568225384],[-0.052594285458326,0.045469529926777,-0.00075940258102491]],[[0.027228035032749,-0.068124674260616,-0.082178093492985],[0.035976245999336,0.10436920821667,-0.094698488712311],[-0.0010371847311035,-0.061467435210943,-0.14224989712238]],[[0.0074480231851339,-0.052070546895266,0.031357850879431],[0.051508117467165,0.020994549617171,-0.02231814712286],[0.10771277546883,0.10860762000084,0.024236327037215]],[[0.021022396162152,0.071122817695141,-0.10919263958931],[-0.069784231483936,-0.022732585668564,-0.13314715027809],[0.055770378559828,-0.059243842959404,-0.030782902613282]],[[-0.029932418838143,-0.10552462935448,0.011152810417116],[0.082927167415619,-0.01157992053777,0.051434598863125],[-0.08359806984663,-0.020841222256422,-0.16573441028595]],[[0.083822079002857,0.13147895038128,0.16907365620136],[0.0010565903503448,-0.041764285415411,-0.12387000769377],[0.11324910074472,-0.0073965382762253,-0.029449880123138]],[[-0.27456629276276,-0.22916728258133,-0.25556710362434],[-0.050455585122108,-0.1503950804472,-0.083514086902142],[0.044282510876656,-0.012606963515282,0.057319093495607]],[[-0.019989484921098,-0.053565554320812,0.18069693446159],[0.012105528265238,0.064821891486645,-0.099302060902119],[0.059524241834879,0.1407093256712,0.034296970814466]],[[0.052813313901424,-0.034499417990446,-0.16768623888493],[0.039390869438648,0.069400630891323,-0.044474523514509],[0.062123950570822,-0.18396559357643,-0.12609213590622]],[[-0.093351662158966,0.062020767480135,-0.048919845372438],[0.10277618467808,0.10886742174625,-0.080525659024715],[-0.0086116334423423,0.019253022968769,0.024469867348671]],[[-0.11999825388193,-0.086766704916954,-0.069234557449818],[-0.063823230564594,-0.05039531737566,-0.051958553493023],[-0.11072833091021,-0.058207683265209,0.082309909164906]],[[-0.013744072057307,-0.041397407650948,-0.078215003013611],[0.048379968851805,0.00023051325115375,0.120949216187],[0.085401549935341,0.03779062628746,-0.15814889967442]],[[-0.048615355044603,0.061161585152149,-0.094472028315067],[0.014095093123615,0.084582887589931,0.12556552886963],[-0.034315757453442,-0.075951397418976,-0.035107314586639]],[[-0.037351928651333,0.098550722002983,0.093518197536469],[-0.051387503743172,-0.052793346345425,-0.069149874150753],[-0.08713736385107,0.05510102212429,0.036706615239382]],[[0.0068705757148564,0.071335397660732,-0.061051312834024],[-0.092420488595963,-0.11897871643305,0.059536978602409],[0.00659065740183,-0.016906248405576,-0.039533592760563]],[[-0.047848340123892,-0.017069816589355,-0.037597309798002],[0.019066419452429,0.0042590000666678,-0.062430266290903],[0.011192384175956,0.057131722569466,-0.061242047697306]],[[-0.051602616906166,0.024625327438116,-0.0013677690876648],[0.0024260508362204,-0.12536863982677,0.031671956181526],[0.020545240491629,0.11520443111658,0.024972820654511]],[[-0.022370075806975,0.14293526113033,0.19007080793381],[-0.047731149941683,-0.062145799398422,-0.077086307108402],[0.018772926181555,0.04416861385107,-0.06203081831336]],[[0.12000407278538,0.1876215338707,0.14015991985798],[0.051610466092825,0.032417245209217,-0.049871176481247],[0.05515081807971,0.092986091971397,0.15109317004681]],[[0.00079139188164845,0.017016349360347,0.018318079411983],[0.070685625076294,0.045699965208769,0.089795783162117],[-0.086553171277046,-0.097793310880661,-0.040405496954918]],[[0.099011868238449,-0.08668202906847,-0.08465813100338],[0.061849229037762,0.045579582452774,-0.0525126978755],[0.11342886835337,-0.062257051467896,-0.2057104408741]],[[0.02162922732532,-0.075713127851486,-0.15894308686256],[0.029752034693956,-0.016020487993956,0.15157526731491],[-0.014596795663238,-0.090774141252041,-0.167395144701]],[[0.091881334781647,0.025525245815516,0.071321420371532],[-0.10640110820532,-0.063512332737446,-0.2408067882061],[-0.029806770384312,0.020680345594883,0.086851395666599]],[[-0.2008308172226,-0.1830987483263,-0.3008246421814],[0.060843553394079,-0.073941297829151,-0.0074075944721699],[0.13336133956909,-0.033261172473431,-0.0031882366165519]],[[0.028975818306208,-0.0018656720640138,-0.00075476226629689],[-0.078709907829762,0.0041050999425352,0.085727788507938],[-0.0069607705809176,0.03298319503665,0.086296766996384]],[[-0.050968151539564,0.087458625435829,0.085180200636387],[-0.073794029653072,-0.051763325929642,0.019801495596766],[0.039987243711948,0.0075599127449095,0.17096696794033]],[[-0.0051304982043803,-0.0040146326646209,-0.0040510734543204],[-0.0062798922881484,-0.082033462822437,0.048874050378799],[-0.06683074682951,0.033708941191435,-0.023885171860456]],[[0.11510657519102,0.057261776179075,0.1708769351244],[0.022642264142632,-0.011749872937799,-0.026585515588522],[-0.061551105231047,-0.0060957027599216,0.031247852370143]],[[0.038471706211567,-0.0094122868031263,-0.1656905412674],[0.066975571215153,0.11657270789146,0.024943549185991],[-0.011112749576569,-0.082001402974129,-0.078926540911198]],[[0.10747190564871,-0.0031665011774749,0.047413289546967],[0.01862439326942,-0.0076561509631574,0.071448691189289],[0.084713295102119,-0.010513914749026,0.012978586368263]],[[0.15296290814877,-0.13878586888313,0.035888906568289],[0.060679815709591,0.028354343026876,-0.07984571903944],[-0.038317929953337,0.014850341714919,0.049291748553514]],[[-0.1001201570034,-0.07151785492897,0.015429196879268],[-0.099596664309502,-0.028595209121704,-0.10457847267389],[-0.13822557032108,-0.094657339155674,0.12168791890144]],[[0.12031594663858,0.0088488887995481,0.062232851982117],[-0.16420836746693,-0.090597689151764,-0.11112723499537],[-0.012177589349449,-0.061667554080486,0.077138729393482]],[[-0.071600154042244,-0.0079469215124846,0.018779218196869],[-0.12742775678635,-0.040658749639988,0.083626680076122],[0.051107369363308,0.050104588270187,-0.087267339229584]],[[-0.094917930662632,-0.019188126549125,-0.10740516334772],[0.070864960551262,0.083265483379364,-0.023190751671791],[-0.095224566757679,-0.073157146573067,-0.022982196882367]],[[-0.10427378118038,-0.1781700104475,-0.049417451024055],[0.028324440121651,0.076738283038139,0.068286798894405],[-0.090214885771275,-0.050094544887543,0.0086559187620878]],[[-0.016708118841052,-0.0064972462132573,-0.075762651860714],[0.12298672646284,0.26978242397308,0.080437257885933],[-0.18786409497261,-0.16222903132439,-0.16195493936539]],[[-0.005752993747592,0.018756365403533,-0.067969709634781],[-0.031993199139833,-0.062602192163467,-0.085497103631496],[0.060776401311159,0.1513105481863,0.086139231920242]],[[0.12425996363163,-0.088381581008434,-0.4395612180233],[0.094101965427399,0.0052887033671141,-0.10967390239239],[-0.017019093036652,0.030890483409166,-0.023483779281378]],[[-0.064172625541687,0.10634441673756,0.019680965691805],[-0.051571007817984,0.012948350049555,0.073423333466053],[-0.029153266921639,-0.0043137250468135,-0.10138638317585]],[[0.12043278664351,0.029277047142386,-0.0066677830182016],[0.062527477741241,-0.0059043364599347,0.15779793262482],[0.0068967416882515,0.0045903087593615,0.048675712198019]],[[-0.015488441102207,0.095680929720402,-0.050425533205271],[-0.13389731943607,0.022071754559875,0.041616573929787],[-0.0098081566393375,-0.013991069979966,0.010516177862883]],[[0.012933471240103,-0.027140278369188,0.09641607105732],[-0.079965606331825,-0.0014978348044679,-0.051083862781525],[-0.013709320686758,0.0053514307364821,0.071471706032753]],[[0.0074387192726135,-0.075782284140587,-0.15680027008057],[0.053356841206551,-0.075019396841526,0.028395043686032],[-0.039353635162115,0.016130657866597,0.22599160671234]],[[0.057007923722267,0.0044542951509356,-0.015896363183856],[0.011307270266116,0.025074291974306,0.13756231963634],[-0.056609645485878,0.014141644351184,-0.2550268471241]],[[0.058279391378164,-0.043489817529917,-0.0090204142034054],[-0.030249798670411,-0.042840257287025,0.043340779840946],[-0.15101881325245,0.013639242388308,0.12721438705921]],[[-0.032785277813673,-0.012955205515027,-0.064931012690067],[0.058025266975164,0.10693106800318,0.14557430148125],[-0.12615869939327,-0.084626488387585,-0.058251272886992]],[[-0.096849918365479,-0.033023905009031,-0.074210360646248],[0.045085031539202,-0.081478595733643,-0.10532335937023],[-0.091520205140114,0.098625503480434,0.098734229803085]],[[-0.013342051766813,-0.0030377914663404,-0.092295974493027],[-0.041281051933765,0.067108765244484,-0.080742508172989],[-0.055021084845066,-0.019518487155437,-0.042742095887661]],[[0.013376543298364,0.10458358377218,0.02101925201714],[-0.18115741014481,-0.13309961557388,0.16441865265369],[0.16675481200218,0.11389547586441,0.13048905134201]],[[0.017771501094103,0.04558265581727,-0.0063385055400431],[0.19805324077606,-0.016992514953017,-0.018568836152554],[-0.11467079073191,-0.023860599845648,0.0099477414041758]],[[-0.042387783527374,-0.029539259150624,-0.10038010776043],[0.040121130645275,-0.061048943549395,-0.076189264655113],[-0.14846904575825,0.013111240230501,0.052594687789679]],[[0.009676500223577,-0.10299741476774,-0.006041266489774],[0.038822822272778,0.10127174109221,0.12023309618235],[0.035141289234161,0.17659488320351,0.10850842297077]],[[0.023137906566262,0.025693042203784,-0.073928482830524],[0.13507720828056,0.084565207362175,-0.11872299015522],[-0.03565289080143,-0.0021779180970043,-0.033278957009315]],[[-0.065760985016823,0.020701957866549,-0.000742745003663],[0.1385053396225,-0.043449375778437,-0.01186802983284],[-0.086781218647957,0.03990475460887,-0.0066670039668679]],[[-0.052680231630802,-0.014113396406174,0.0046967221423984],[-0.051426962018013,-0.022093288600445,-0.008677002042532],[-0.13226644694805,0.050279956310987,0.097042374312878]],[[0.03304410725832,-0.010504926554859,-0.056221187114716],[-0.014981862157583,0.027892267331481,-0.013156348839402],[0.021360039710999,-0.080045476555824,-0.10489095747471]],[[0.1371414065361,0.039121869951487,-0.085229441523552],[-0.14756777882576,-0.040979843586683,0.083423636853695],[0.025249850004911,0.059636157006025,0.061873033642769]]],[[[0.00077030737884343,-0.018779344856739,-0.059170968830585],[-0.017449241131544,-0.077773161232471,-0.060787416994572],[0.0087221264839172,0.071769811213017,0.032548513263464]],[[0.044338919222355,0.0012349981116131,-0.017756560817361],[0.083302594721317,0.015494244173169,0.019799306988716],[0.0030171968974173,-0.080101832747459,-0.17762659490108]],[[0.027278227731586,0.019909672439098,-0.0094166044145823],[-0.14662519097328,-0.097449325025082,-0.10152103751898],[-0.069767691195011,0.0053371130488813,0.061227954924107]],[[-0.087296314537525,0.0070114610716701,0.015701526775956],[-0.053705617785454,0.0043907929211855,0.017452513799071],[0.074702352285385,-0.097587443888187,-0.072085745632648]],[[-0.12324389070272,-0.17424054443836,-0.020768677815795],[-0.083829410374165,-0.022269262000918,-0.024447310715914],[0.11583243310452,-0.003691005287692,0.022102996706963]],[[-0.13538606464863,-0.1088177934289,0.085054263472557],[-0.041411977261305,-0.019809594377875,-0.075455710291862],[-0.080468751490116,-0.10378909111023,-0.045098435133696]],[[-0.13029605150223,-0.099514335393906,-0.054895780980587],[-0.17390334606171,-0.089398875832558,-0.0057943752035499],[-0.070795580744743,0.0035086537245661,0.077763497829437]],[[0.055648677051067,-0.038591433316469,0.047561790794134],[-0.09906017780304,0.014914179220796,-0.058952294290066],[0.24277102947235,0.013920478522778,-0.060996942222118]],[[-0.0012433661613613,0.038909263908863,-0.0073283789679408],[0.10237292200327,-0.069849207997322,-0.0034934422001243],[-0.0015297039644793,0.021486602723598,0.010433976538479]],[[0.054345719516277,0.039409745484591,0.060498621314764],[0.010076076723635,-0.040221095085144,0.075422845780849],[-0.27916419506073,0.017197512090206,-0.013259752653539]],[[-0.025542633607984,0.012526692822576,0.013482300564647],[0.05961012840271,-0.050225503742695,-0.13893455266953],[0.14088325202465,0.049575679004192,0.16684584319592]],[[-0.025758258998394,-0.050211552530527,-0.1250182390213],[0.034510131925344,-0.05452885851264,0.08137733489275],[0.0073148910887539,0.00475486041978,-0.08173805475235]],[[-0.08849324285984,0.0049966019578278,-0.035470552742481],[-0.11179485172033,0.02672072686255,0.02006471902132],[-0.057632125914097,0.03163443133235,0.010531428270042]],[[0.092569455504417,0.020280653610826,-0.076237760484219],[-0.010195322334766,-0.0071938424371183,-0.030298970639706],[-0.10624595731497,0.031345438212156,0.13380329310894]],[[-0.026872491464019,-0.029018353670835,0.076934948563576],[-0.0022648675367236,-0.032047599554062,-0.01760520413518],[-0.11763194948435,-0.066512912511826,0.0064089074730873]],[[0.078235767781734,0.064945340156555,-0.035493299365044],[-0.027816999703646,-0.030445175245404,-0.10087613016367],[-0.030479421839118,-0.049047537147999,0.036587201058865]],[[0.13790267705917,0.038997028023005,0.011588986031711],[-0.0093608368188143,-0.013714441098273,0.01841707713902],[0.060432769358158,-0.02440469712019,-0.016982374712825]],[[-0.042374044656754,-0.009818303398788,-0.15040098130703],[0.017605140805244,0.0047721834853292,-0.002692305482924],[0.05408001691103,0.054006960242987,0.075177371501923]],[[0.016800010576844,0.06711708009243,-0.062022741883993],[0.13391721248627,0.028867915272713,-0.069147981703281],[-0.27260330319405,0.00842828117311,0.095676846802235]],[[0.038572382181883,-0.1120508313179,-0.073414288461208],[-0.036766845732927,0.1021264269948,0.038917317986488],[-0.11168847978115,0.066261805593967,-0.077281132340431]],[[-0.013686683960259,-0.0008023057016544,0.025291159749031],[-0.22831650078297,-0.11071484535933,-0.19420129060745],[0.037519324570894,-0.041578151285648,-0.13279256224632]],[[-0.022500222548842,-0.090847358107567,0.092889852821827],[-0.074307702481747,-0.013137495145202,-0.0042733731679618],[0.008167133666575,-0.049927081912756,-0.012748601846397]],[[0.058966182172298,-0.027656404301524,0.0042542708106339],[-0.072214767336845,-0.054433297365904,0.0067248018458486],[0.027188915759325,-0.056854106485844,-0.047813542187214]],[[0.06206352263689,0.05659431964159,0.13707596063614],[0.18828345835209,-0.091675378382206,-0.082516491413116],[0.021240249276161,-0.029524954035878,0.047700971364975]],[[-0.03910019248724,-0.020322173833847,-0.05599994584918],[0.044234469532967,0.10329016298056,0.032458364963531],[-0.041598983108997,0.040203768759966,-0.013103854842484]],[[0.0065965577960014,-0.015077959746122,-0.004544738214463],[0.0088659143075347,-0.0092161502689123,-0.046920903027058],[0.093522556126118,0.045613501220942,-0.026690620929003]],[[-0.077196069061756,-0.13355319201946,-0.046621214598417],[-0.047883309423923,0.025035627186298,0.056892652064562],[0.0064803222194314,0.14091105759144,0.085147492587566]],[[-0.10910099744797,-0.075663097202778,-0.0070130117237568],[0.10521791130304,-0.074617251753807,0.037801899015903],[-0.1879820227623,-0.05956195294857,0.014371591620147]],[[-0.022172139957547,-0.031292155385017,0.028429942205548],[0.039643950760365,0.17075033485889,0.071815893054008],[-0.03401867672801,-0.04541140794754,-0.055254559963942]],[[0.068105541169643,0.093355543911457,0.017052894458175],[-0.12580180168152,0.005168464500457,0.14566077291965],[-0.12015350908041,-0.064055606722832,-0.02690969593823]],[[-0.084825694561005,-0.069518759846687,-0.17372624576092],[0.10436114668846,0.06828036904335,0.09223672747612],[-0.27743855118752,-0.090164177119732,0.075189724564552]],[[0.030638296157122,0.033181115984917,0.051985275000334],[0.1272883862257,0.049160502851009,0.066620767116547],[-0.037716664373875,0.058159757405519,-0.032978840172291]],[[-0.10748893767595,0.051210794597864,0.015208196826279],[-0.016775496304035,0.072876609861851,-0.00046576833119616],[-0.034159511327744,0.086782969534397,0.0027051831129938]],[[-0.077412456274033,-0.013699385337532,-0.089207097887993],[-0.11554628610611,-0.13224063813686,0.016429118812084],[-0.022516718134284,-0.15699276328087,0.010216089896858]],[[0.18360424041748,0.023405894637108,-0.046438984572887],[-0.22079308331013,0.030462477356195,0.079247035086155],[-0.017928233370185,0.15412454307079,-0.0064091100357473]],[[-0.079527780413628,-0.03706843405962,-0.02096088975668],[0.041984792798758,-0.0099535239860415,0.078008823096752],[0.11779805272818,0.09103661775589,0.15630333125591]],[[0.019611220806837,0.13523158431053,-0.018518757075071],[-0.072594240307808,0.038678470999002,0.10163028538227],[-0.14215493202209,0.071698129177094,-0.026485942304134]],[[0.12693683803082,-0.029323192313313,-0.022368622943759],[0.013262634165585,-0.086271852254868,-0.012605105526745],[-0.093099564313889,-0.10345178842545,-0.0029762759804726]],[[-0.19128961861134,-0.093535117805004,-0.029924156144261],[-0.00059948134003207,-0.095981068909168,-0.047947838902473],[0.014928649179637,-0.014963057823479,0.0098537458106875]],[[0.081858836114407,-0.089760974049568,-0.07494343817234],[-0.08260889351368,0.1710352152586,0.039998974651098],[0.018394846469164,0.034630488604307,0.058480385690928]],[[0.0195407923311,-0.03846275433898,-0.0075564268045127],[0.075596392154694,-0.0097982324659824,0.015553968027234],[0.093661203980446,0.10424852371216,-0.11727035790682]],[[-0.027086408808827,-0.092118322849274,-0.054161753505468],[-0.078188553452492,-0.020962471142411,-0.00029175158124417],[0.20306597650051,0.038718789815903,0.078642822802067]],[[0.010836425237358,0.029669618234038,0.032416857779026],[-0.020946094766259,0.0098343268036842,-0.033991698175669],[0.028941078111529,0.034190818667412,0.20557998120785]],[[0.058020945638418,-0.027316089719534,0.052463140338659],[0.041538380086422,0.026722673326731,-0.070161059498787],[-0.10120612382889,-0.047818761318922,-0.095389649271965]],[[-0.032886039465666,0.0031261758413166,0.035694386810064],[-0.055998187512159,-0.025140676647425,-0.045143935829401],[-0.038911305367947,-0.12055597454309,0.0095743108540773]],[[0.1278817653656,0.095902390778065,0.0064045591279864],[0.040303777903318,0.037638276815414,0.10993805527687],[0.036561395972967,-0.034064684063196,-0.053781602531672]],[[0.15795947611332,-0.01720567420125,-0.062577404081821],[-0.056086387485266,-0.036839917302132,0.11476913839579],[0.070567190647125,-0.053961180150509,-0.091312885284424]],[[-0.074373811483383,-0.11398790031672,-0.13131253421307],[-0.092071674764156,0.059659253805876,0.14495995640755],[-0.12239100784063,-0.16198302805424,-0.027957517653704]],[[-0.017100529745221,-0.039420306682587,0.0051435045897961],[0.02856701426208,0.013464742340147,-0.048646308481693],[-0.18118019402027,0.041036549955606,0.21479646861553]],[[0.088349588215351,0.12963223457336,0.18701060116291],[-0.10502260923386,0.017202869057655,-0.053004708141088],[-0.0082065034657717,0.014788193628192,0.11390045285225]],[[-0.032989922910929,-0.1911798864603,-0.072223179042339],[-0.022195247933269,0.035218540579081,0.13313663005829],[-0.032466527074575,-0.055564530193806,-0.054952565580606]],[[0.056190848350525,-0.0072433724999428,-0.079708196222782],[-0.010297161526978,-0.043284106999636,-0.089464224874973],[0.19985215365887,0.16837711632252,0.027131324633956]],[[-0.021820137277246,0.070847675204277,0.1089673936367],[-0.043813139200211,-0.053392488509417,-0.014343222603202],[-0.14724087715149,-0.0097934724763036,0.10545026510954]],[[-0.019454060122371,0.01287311501801,0.18451172113419],[0.047357469797134,-0.00099895184393972,0.054438825696707],[0.045466832816601,-0.0040439520962536,-0.1856052428484]],[[-0.047294747084379,-0.030936753377318,-0.071754202246666],[-0.015324458479881,-0.033210646361113,-0.026138102635741],[0.088232442736626,0.1399657279253,0.078942030668259]],[[0.0759097635746,-0.049143262207508,-0.15078610181808],[-0.10779729485512,0.072291925549507,0.094120167195797],[0.1393576413393,0.083609201014042,-0.046045452356339]],[[0.043577402830124,0.14439111948013,0.069520801305771],[-0.022705035284162,-0.042455550283194,-0.039188835769892],[-0.029294112697244,0.040708556771278,-0.064640149474144]],[[-0.072109043598175,0.080515690147877,0.13048724830151],[0.036841459572315,0.01355439517647,0.031828921288252],[0.034837730228901,0.074785232543945,-0.092234015464783]],[[0.12573604285717,0.09727168828249,0.15762260556221],[0.095906145870686,0.080542989075184,0.019951758906245],[-0.0079949712380767,0.075434476137161,0.013530272059143]],[[-0.010459958575666,0.027009841054678,0.18705508112907],[-0.053004827350378,-0.053007643669844,0.062114104628563],[-0.01946865953505,0.11089906841516,-0.048846337944269]],[[-0.10048864036798,-0.10109453648329,-0.15414486825466],[-0.066413752734661,0.041282750666142,0.084374576807022],[0.06083757057786,-0.027276435866952,-0.04301556199789]],[[-0.090322270989418,-0.0047781774774194,0.047174781560898],[-0.013879640027881,0.091713510453701,-0.078816950321198],[-0.065535180270672,-0.11883377283812,-0.13484592735767]],[[-0.024893909692764,-0.012223645113409,0.00060542381834239],[-0.052558224648237,0.038417477160692,0.089578822255135],[0.0019592205062509,0.010050299577415,0.10008261352777]],[[0.14815431833267,0.15470997989178,0.021610703319311],[-0.15293557941914,-0.05788816139102,-0.11614249646664],[-0.13070291280746,0.034691464155912,-0.12767323851585]]],[[[0.024574004113674,-0.036782819777727,-0.09127851575613],[-0.090268172323704,-0.029894646257162,-0.09464704990387],[-0.078184813261032,-0.0086814071983099,0.071675159037113]],[[-0.086119443178177,-0.0071138758212328,-0.059930581599474],[0.013486720621586,-0.15420331060886,-0.027499241754413],[-0.043308101594448,-0.061558861285448,0.055803894996643]],[[0.016120823100209,0.047365605831146,0.026170920580626],[-0.11885990202427,-0.031887155026197,-0.0047056344337761],[-0.045524168759584,0.045396439731121,0.058626443147659]],[[-0.042360037565231,0.14049042761326,-0.11070412397385],[0.089799582958221,-0.0066466419957578,-0.032553397119045],[0.069809794425964,-0.052235774695873,-0.063035815954208]],[[-0.066303938627243,-0.015451306477189,-0.10203973203897],[-0.067543432116508,-0.054746650159359,-0.050548702478409],[-0.034918736666441,-0.053655415773392,-0.013713885098696]],[[-0.060691900551319,-0.084930129349232,-0.14282627403736],[0.022502196952701,-0.00034715791116469,0.052777942270041],[0.026311485096812,0.010951749049127,0.040408466011286]],[[-0.087020993232727,0.019193295389414,-0.13481557369232],[-0.061909042298794,-0.023178389295936,-0.054968815296888],[-0.042040806263685,0.00052582228090614,-0.11193916201591]],[[0.012154385447502,-0.07792204618454,0.071236416697502],[-0.027325134724379,0.026769047603011,0.077742762863636],[-0.022261399775743,0.086510084569454,-0.036597218364477]],[[0.050726030021906,0.02638242021203,0.010140563361347],[0.023274246603251,0.064831010997295,-0.070672243833542],[0.098725080490112,-0.10167167335749,0.043961122632027]],[[0.1058230176568,-0.060850139707327,-0.085647657513618],[0.11113487184048,-0.015998037531972,-0.0065866359509528],[0.059369914233685,0.080084957182407,0.056738458573818]],[[0.0021231947466731,0.016805535182357,-0.13327594101429],[0.041189916431904,-0.070030391216278,-0.17996327579021],[-0.017987353727221,-0.064684964716434,0.068375580012798]],[[-0.09568177908659,0.043442420661449,-0.01569938659668],[-0.19258792698383,-0.093667671084404,-0.11489599943161],[-0.014950582757592,-0.08482114225626,-0.020081035792828]],[[-0.297906935215,-0.080349206924438,-0.14274370670319],[0.075786665081978,-0.02431770041585,-0.11364535987377],[0.04991053789854,0.0014278901508078,-0.02956323698163]],[[-0.068082988262177,0.035508036613464,-0.2075285166502],[-0.039124768227339,-0.062751807272434,0.061658874154091],[0.15536618232727,0.15501165390015,0.029242305085063]],[[0.011822166852653,0.04393008351326,-0.021535711362958],[-0.027683494612575,-0.033875215798616,0.0038266438059509],[0.046731971204281,0.086595766246319,-0.016345467418432]],[[0.021113004535437,0.014209833927453,-0.076897092163563],[0.092482663691044,-0.05669903755188,-0.21004396677017],[-0.062444776296616,-0.10225881636143,-0.025613632053137]],[[-0.098531723022461,-0.00809555221349,-0.0092252604663372],[0.044031109660864,0.055888704955578,-0.021614344790578],[0.12948930263519,0.016632054001093,0.049231082201004]],[[-0.086727559566498,-0.082430623471737,0.077412523329258],[0.035211835056543,0.050672456622124,-0.11393967270851],[-0.29358500242233,0.10575647652149,0.0046246787533164]],[[0.0089905243366957,-0.0075703365728259,0.070229776203632],[0.01603183336556,-0.023352086544037,-0.0075914459303021],[-0.14368483424187,-0.07084147632122,-0.077939867973328]],[[-0.046600107103586,-0.021840212866664,0.0958112180233],[0.015479686670005,0.13423547148705,-0.16268029808998],[-0.10924860835075,-0.047968856990337,-0.048456531018019]],[[-0.018239628523588,-0.097969703376293,-0.057195998728275],[-0.032387517392635,0.05093302205205,-0.029557012021542],[0.12321121990681,0.034760739654303,0.16919159889221]],[[0.0075854226015508,0.072146363556385,0.027324460446835],[-0.010853766463697,0.046993024647236,-0.025259517133236],[-0.090118944644928,0.030784510076046,-0.12955190241337]],[[-0.054311834275723,-0.0035002022050321,0.065422579646111],[-0.10127393901348,0.028754623606801,-0.0099235055968165],[-0.032947335392237,-0.016888193786144,-0.063891239464283]],[[-0.047286208719015,0.083795107901096,0.073866941034794],[0.072664804756641,0.038802348077297,-0.019851095974445],[-0.0087167071178555,0.10184314101934,0.12189090996981]],[[0.061439484357834,0.10579226911068,0.22624929249287],[0.15880151093006,0.060460768640041,0.028861852362752],[0.0079563576728106,0.092283234000206,0.054187044501305]],[[0.036659736186266,-0.044580370187759,-0.050426885485649],[0.026318121701479,-0.0060225017368793,-0.057006690651178],[0.037401407957077,-0.0057282517664135,0.034309756010771]],[[0.013866442255676,0.096678994596004,0.044352360069752],[-0.12966185808182,0.0039447918534279,0.090076230466366],[-0.15199436247349,0.1166780218482,-0.069078385829926]],[[-0.047781080007553,-0.1628473252058,0.1247535571456],[-0.02352955378592,-0.093682654201984,0.025486953556538],[-0.11226215213537,-0.055548317730427,0.11159970611334]],[[-0.18937675654888,-0.10653481632471,0.0078591154888272],[-0.039780724793673,0.0016640208195895,0.062177248299122],[-0.044525679200888,0.03947788476944,-0.0040828841738403]],[[-0.012374675832689,0.05719355493784,-0.011643609032035],[0.0242835059762,-0.093129798769951,-0.0031871625687927],[0.049063794314861,0.090920001268387,-0.023488998413086]],[[-0.056700382381678,-0.15323404967785,0.050021391361952],[-0.021593986079097,-0.046469800174236,0.01280776783824],[-0.031679172068834,0.0025260150432587,0.022547792643309]],[[-0.054216787219048,0.039863474667072,-0.017135271802545],[0.018046425655484,0.041632052510977,0.093026727437973],[0.059049375355244,0.010360701009631,0.22421815991402]],[[0.048631805926561,0.045658189803362,-0.04002446308732],[-0.0079439049586654,0.068970866501331,-0.014018746092916],[-0.0039019742980599,-0.014183077029884,0.10666155815125]],[[0.036893580108881,-0.021766178309917,0.085796684026718],[-0.042691361159086,-0.0034248945303261,0.042403876781464],[-0.064043588936329,-0.0029242718592286,0.031161747872829]],[[0.016608042642474,0.033317245543003,-0.061958953738213],[0.04448801651597,-0.012833910994232,-0.06976580619812],[0.060343764722347,-0.046926446259022,-0.19828909635544]],[[0.071974210441113,0.087636783719063,0.083839304745197],[-0.039087105542421,0.014017627574503,0.080560766160488],[0.018168278038502,-0.033129092305899,-0.057306420058012]],[[-0.14997465908527,-0.11980094015598,-0.046491850167513],[-0.056868273764849,0.028344858437777,0.032488100230694],[0.176678404212,0.14511415362358,-0.043218500912189]],[[0.071991130709648,0.0053294966928661,-0.038818094879389],[-0.1032248288393,0.073619551956654,0.01300173252821],[-0.10202422738075,0.056035216897726,-0.017612477764487]],[[-0.093240320682526,0.080292053520679,0.1327477991581],[0.0057697216980159,-0.031709279865026,0.093925945460796],[-0.025388734415174,-0.001217320561409,-0.027392651885748]],[[-0.05305340886116,-0.0038936943747103,-0.03523138910532],[-0.041680335998535,0.038251589983702,-0.0065282955765724],[-0.0075090569444001,0.036717280745506,0.011278283782303]],[[0.075330071151257,-0.022529853507876,-0.034175951033831],[0.017527613788843,0.021284140646458,-0.11056051403284],[-0.036998655647039,0.15645329654217,0.0079370113089681]],[[-0.068758644163609,-0.048545502126217,0.02979402244091],[-0.10578206181526,-0.011118549853563,-0.025207350030541],[0.078176729381084,-0.046017535030842,0.038297653198242]],[[-0.051457069814205,-0.021758833900094,0.045430436730385],[-0.028663385659456,0.053778331726789,0.019952377304435],[-0.020195098593831,-0.084131434559822,0.007587383966893]],[[0.039197187870741,-0.081534951925278,-0.15157467126846],[-0.081134684383869,0.084963902831078,-0.05530696734786],[0.0076917326077819,-0.061390187591314,-0.069441370666027]],[[-0.019574942067266,0.074342586100101,0.13316136598587],[0.21966205537319,-0.1057513281703,-0.13636185228825],[0.091807886958122,-0.036188740283251,0.013558398000896]],[[-0.044423542916775,-0.051379833370447,0.10546058416367],[0.021160926669836,-0.11149434000254,-0.014069896191359],[0.029569987207651,0.014883860945702,0.012467699125409]],[[0.12598745524883,0.019758371636271,0.15008151531219],[0.076125703752041,0.010679944418371,0.0013559779617935],[-0.019547475501895,-0.089945502579212,-0.0080672781914473]],[[0.067736372351646,-0.064364567399025,0.062169451266527],[-0.14952106773853,0.028713718056679,-0.010858541354537],[0.089180417358875,0.025392543524504,-0.090827494859695]],[[-0.091416269540787,0.074238240718842,0.017391132190824],[0.018331388011575,-0.033299751579762,-0.017199972644448],[0.0081050340086222,-0.033200886100531,0.01755160652101]],[[-0.011675833724439,0.036381315439939,-0.064115419983864],[-0.12264925986528,-0.057812809944153,0.012494024820626],[-0.062696687877178,-0.11562632024288,0.10723548382521]],[[0.061923086643219,0.049150973558426,-0.057939574122429],[0.037859007716179,0.023074213415384,0.020163085311651],[0.17832726240158,0.0020075512584299,-0.050995539873838]],[[-0.030813472345471,0.065271750092506,-0.076162748038769],[0.04364925250411,-0.0060728238895535,-0.0091825686395168],[-0.11409229785204,0.11131057888269,0.07764657586813]],[[-0.15137629210949,-0.033870410174131,-0.17916226387024],[-0.067396730184555,0.0081453211605549,-0.033186051994562],[-0.13586848974228,0.020643413066864,0.051498960703611]],[[0.058017123490572,0.027694337069988,1.1219326552236e-06],[0.018007442355156,0.013356977142394,0.061834692955017],[0.10591499507427,-0.15227492153645,-0.029832188040018]],[[0.029734680429101,0.055255934596062,-0.030947482213378],[-0.049108274281025,-0.052409391850233,0.011524518020451],[0.058485083281994,0.056090530008078,-0.045301742851734]],[[0.13344010710716,-0.12393997609615,-0.049743846058846],[0.0019794825930148,-0.0039921817369759,0.041807290166616],[-0.092505849897861,0.091351822018623,-0.23221507668495]],[[0.053389217704535,0.068412512540817,-0.10705828666687],[0.12040603160858,-0.030394887551665,-0.071931213140488],[0.076496496796608,0.0031250498723239,0.0067058568820357]],[[0.046538319438696,0.022758450359106,-0.01852392219007],[-0.15570546686649,-0.03137157484889,-0.036500498652458],[-0.023974198848009,-0.0039125811308622,-0.078523993492126]],[[-0.044365055859089,0.036817137151957,-0.0066851815208793],[-0.059807203710079,0.087867006659508,-0.013376401737332],[0.072385273873806,0.058306720107794,0.093442365527153]],[[-0.031395714730024,-0.03478741645813,-0.10651407390833],[0.029524719342589,0.059124708175659,0.024709846824408],[-0.090829186141491,-0.08103484660387,0.034245118498802]],[[-0.11025284230709,0.040941823273897,-0.017478158697486],[-0.010089349932969,-0.020955540239811,0.028699183836579],[0.016666397452354,0.012628881260753,-0.090230621397495]],[[-0.017071168869734,-0.15610933303833,0.027912758290768],[-0.068831786513329,0.021945243701339,-0.002807849785313],[0.15957401692867,0.12004718929529,0.058519713580608]],[[-0.10256057232618,-0.016749940812588,-0.023156790062785],[-0.035068932920694,-0.0072237616404891,-0.047394625842571],[0.07084034383297,0.010015610605478,-0.0018831406487152]],[[0.052970446646214,-0.076369777321815,-0.067675173282623],[0.019218690693378,0.043836984783411,0.068299517035484],[-0.021571082994342,0.11650856584311,0.0038009870331734]]],[[[0.024027962237597,0.049647364765406,0.025608776137233],[-0.0036859817337245,-0.052195511758327,-0.015004010871053],[-0.069206431508064,0.0061777727678418,0.036649491637945]],[[-0.096964374184608,-0.049660459160805,0.015353473834693],[0.042476154863834,-0.062342885881662,-0.059210170060396],[0.079032719135284,-0.060106821358204,0.055812202394009]],[[-0.027955668047071,-0.027700144797564,-0.087099030613899],[-0.02411469630897,0.056038949638605,0.026336902752519],[-0.026394890621305,-0.10013445466757,-0.0038158397655934]],[[-0.086837105453014,-0.0161137804389,-0.051348317414522],[0.027588896453381,-0.001266879378818,0.0075098681263626],[0.060715429484844,-0.02889883518219,0.028248619288206]],[[-0.021166866645217,-0.056640014052391,-0.050868783146143],[-0.015090587548912,-0.081242077052593,-0.052073251456022],[-0.12283319979906,-0.0040501924231648,-0.071210309863091]],[[-0.027833936735988,-0.036378018558025,0.044441465288401],[0.014927243813872,-0.033050894737244,-0.010262883268297],[-0.056044206023216,-0.075861804187298,-0.021134339272976]],[[-0.10953091084957,-0.092316173017025,-0.00045738805783913],[0.067740358412266,-0.0075486893765628,0.0057593663223088],[-0.045366425067186,0.084202446043491,0.079664789140224]],[[-0.11899420619011,0.014966266229749,-0.025761565193534],[-0.086571969091892,-0.1062553152442,-0.0015176135348156],[0.050788845866919,0.0079232379794121,0.11933460831642]],[[-0.098924741148949,-0.029126588255167,0.066696241497993],[0.019245041534305,-0.024308232590556,-0.0801932066679],[-0.026132335886359,0.036649275571108,-0.040058672428131]],[[0.014057073742151,0.014635774306953,-0.081309534609318],[0.0033998021390289,-0.043577909469604,0.092578455805779],[0.094916805624962,0.013123276643455,0.1106781065464]],[[0.080533429980278,-0.033273741602898,0.1117305457592],[-0.0066989371553063,-0.088962510228157,-0.060259234160185],[-0.067401453852654,0.032781135290861,-0.03578408062458]],[[-0.074807688593864,-0.1526175737381,0.0012049198849127],[-0.00068783451570198,-0.058641448616982,0.034438651055098],[-0.025095926597714,-0.047837059944868,-0.20624850690365]],[[0.064948238432407,-0.050175134092569,-0.039167430251837],[-0.055699791759253,0.059042755514383,-0.1021092236042],[0.047210998833179,-0.041983596980572,-0.0047279316931963]],[[0.033567521721125,-0.15459720790386,-0.16147826611996],[0.073780238628387,-0.026738239452243,0.021575367078185],[0.03171369805932,0.041229836642742,0.016338290646672]],[[-0.03098463639617,-0.046098198741674,-0.12051464617252],[-0.019294407218695,-0.1022791415453,0.036093182861805],[0.068282008171082,-0.018550014123321,0.042897675186396]],[[-0.02109313942492,-0.045438040047884,-0.10659454762936],[-0.075223125517368,0.036667767912149,0.042642813175917],[-0.0095243016257882,-0.11035528033972,-0.034784462302923]],[[-0.078114189207554,-0.18338362872601,-0.033143162727356],[0.071230508387089,-0.021066147834063,-0.019119866192341],[0.0062183486297727,0.10077053308487,0.032498028129339]],[[-0.076697304844856,-0.002721190918237,0.019710829481483],[0.11414655297995,0.017948940396309,-0.078929826617241],[0.034704267978668,-0.0021675424650311,0.027009125798941]],[[-0.023630296811461,-0.075892046093941,-0.039297606796026],[-0.034084916114807,-0.14893752336502,-0.020291429013014],[-0.035311214625835,-0.000879182072822,-0.026968449354172]],[[-0.064518608152866,-0.017825685441494,-0.10679160803556],[0.046082984656096,-0.080352582037449,-0.059082195162773],[0.035262115299702,0.030895791947842,-0.031449802219868]],[[0.022093767300248,-0.082206696271896,0.034992806613445],[0.014794060960412,0.054647345095873,0.051951516419649],[0.12211498618126,0.11779879033566,0.033605333417654]],[[0.018875217065215,-0.011510568670928,0.020597713068128],[0.011610768735409,0.019065037369728,-0.080244332551956],[-0.1069982945919,0.022631382569671,0.0012720129452646]],[[0.076998390257359,-0.026361456140876,-0.044781479984522],[-0.084797687828541,-0.053668737411499,-0.058389972895384],[-0.083222225308418,-0.094161845743656,0.0076549616642296]],[[-0.041400387883186,0.12900578975677,-0.052123002707958],[0.12425320595503,0.0066977059468627,0.045633103698492],[0.13480038940907,-0.039138071238995,0.11577656120062]],[[-0.014918651431799,-0.014826187863946,-0.15414518117905],[0.18719793856144,-0.0013688041362911,0.024073082953691],[0.029826080426574,-0.017021594569087,-0.12398935854435]],[[-0.080928690731525,-0.058856528252363,0.026584826409817],[0.018077999353409,-0.035233050584793,-0.00011001407983713],[0.046755779534578,0.013332285918295,0.044940385967493]],[[0.013312583789229,0.078910514712334,-0.078153684735298],[-0.10316438227892,0.079052485525608,7.5497257057577e-05],[0.0012415766250342,0.013156222179532,0.16209256649017]],[[-0.10672981292009,0.06090933829546,-0.13038767874241],[-0.013213974423707,0.13994456827641,-0.16030882298946],[-0.054527640342712,0.091847583651543,0.025287006050348]],[[-0.13409903645515,0.018871027976274,-0.035075828433037],[0.067580282688141,-0.13988469541073,-0.040029812604189],[0.16033425927162,0.18446499109268,-0.035558946430683]],[[0.023091463372111,-0.0464076846838,-0.057358384132385],[-0.075979895889759,0.051822114735842,0.0038779028691351],[-0.10280016064644,-0.15801502764225,0.15547455847263]],[[0.042241126298904,-0.035021897405386,-0.015613147988915],[0.025522999465466,0.056388445198536,0.019259618595243],[-0.090891219675541,0.064626380801201,0.039175722748041]],[[0.014064233750105,0.021097065880895,-0.046988967806101],[0.079150713980198,0.0030837506055832,0.046002455055714],[0.014463925734162,-0.055489622056484,0.097985699772835]],[[-0.10280890762806,-0.094320796430111,0.072999410331249],[0.10536998510361,0.093405529856682,0.068158447742462],[0.050596043467522,0.11489928513765,0.11265766620636]],[[0.033980090171099,0.094185680150986,0.031383734196424],[-0.083712548017502,-0.0021588110830635,0.0090254126116633],[-0.03922588378191,-0.090649999678135,-0.0053217178210616]],[[-0.057530552148819,-0.063538648188114,-0.031768273562193],[-0.080026753246784,-0.1353186070919,-0.056437209248543],[0.020003529265523,-0.089302755892277,0.15341797471046]],[[0.0041667139157653,-0.003144929651171,0.061593875288963],[-0.057523120194674,0.0010966449044645,-0.082900680601597],[-0.078964412212372,0.044077541679144,0.14595110714436]],[[0.038859698921442,-0.0084724398329854,-0.080707460641861],[0.11207264661789,0.13573141396046,-0.002811721060425],[-0.17963214218616,0.14190328121185,-0.087122544646263]],[[-0.0058162943460047,-0.026275679469109,0.055485624819994],[-0.031132202595472,-0.088034853339195,-0.075107112526894],[-0.034069880843163,0.026186559349298,-0.073612853884697]],[[0.006416916847229,-0.20961701869965,-0.13203711807728],[0.0022134995087981,0.0073603470809758,-0.064002364873886],[-0.058239180594683,0.047230180352926,0.062496963888407]],[[-0.067546524107456,-0.0103177158162,-0.082609854638577],[-0.033146899193525,-0.020411942154169,-0.0028260361868888],[0.12343369424343,0.13051794469357,-0.026354851201177]],[[-0.034636434167624,-0.066030621528625,0.064960569143295],[-0.012899198569357,0.016839724034071,0.11710251122713],[-0.070068724453449,-0.087069794535637,-0.08496655523777]],[[-0.088247917592525,-0.062341205775738,-0.0679080337286],[-0.014661254361272,-0.038471031934023,-0.076426364481449],[0.086153127253056,-0.061146274209023,0.04088432341814]],[[0.06836224347353,-0.053571939468384,-0.030260669067502],[-0.010737125761807,-0.067904390394688,0.0020862789824605],[-0.060422413051128,-0.10362701117992,-0.17116498947144]],[[-0.047700587660074,-0.030199313536286,0.13967382907867],[0.09525641053915,0.10088912397623,-0.03835853561759],[0.062297601252794,0.068707495927811,0.22746096551418]],[[-0.034473966807127,0.068978890776634,-0.1020652204752],[0.15758922696114,0.024941140785813,-0.034239541739225],[0.15088029205799,-0.038719240576029,-0.0652085095644]],[[-0.017559681087732,-0.027021065354347,-0.084710158407688],[-0.066801778972149,-0.033951062709093,-0.094392843544483],[-0.062575921416283,0.043252397328615,0.04303415119648]],[[0.028123825788498,0.088064469397068,-0.0090318312868476],[-0.18681153655052,-0.069874607026577,-0.063241340219975],[-0.056620292365551,0.078449130058289,0.05853708460927]],[[-0.057775299996138,-0.063194371759892,-0.072532907128334],[0.022454619407654,-0.073140799999237,0.032853610813618],[-0.017560739070177,-0.077595129609108,-0.010111437179148]],[[-0.233741953969,-0.0039546303451061,0.019751520827413],[0.03200251609087,-0.049449410289526,-0.014279738068581],[-0.034712068736553,-0.055415671318769,-0.11234325915575]],[[-0.050111878663301,-0.095258265733719,-0.018766222521663],[0.048546127974987,-0.12801755964756,-0.0029702184256166],[0.074492827057838,-0.14840975403786,-0.15631540119648]],[[0.23601059615612,-0.13596986234188,-0.053004462271929],[0.034092053771019,0.066042609512806,0.074177198112011],[-0.22911529242992,0.093321427702904,-0.044518332928419]],[[-0.014056702144444,-0.067914910614491,0.0086455587297678],[-0.057165686041117,0.065874613821507,0.12885585427284],[0.010447615757585,0.066016480326653,0.064956799149513]],[[0.089890390634537,-0.049509800970554,0.060830265283585],[-0.025080628693104,-0.097631342709064,0.039590060710907],[-0.015701450407505,-0.15029141306877,-0.026352617889643]],[[0.092545531690121,0.04750669375062,-0.025478353723884],[0.00022693585196976,0.034424237906933,-0.097795784473419],[0.0024573819246143,-0.073718838393688,0.04120197147131]],[[0.0052049020305276,-0.002258509863168,0.061709139496088],[-0.042181558907032,0.1156912073493,-0.16815754771233],[-0.079892888665199,-0.07227611541748,-0.11215227097273]],[[0.037055216729641,-0.048111103475094,-0.061151009052992],[0.037812508642673,-0.20039786398411,0.18040481209755],[0.16050566732883,-0.053186561912298,0.083576552569866]],[[0.063773900270462,-0.057361356914043,-0.036106172949076],[0.081897102296352,-0.1294521689415,0.025530010461807],[0.09974180161953,0.053354885429144,-0.050288364291191]],[[-0.077859945595264,-0.11757420003414,0.078640878200531],[-0.0022030994296074,-0.0031904075294733,-0.07916047424078],[-0.00696941325441,0.011838411912322,-0.036724932491779]],[[0.031163530424237,0.031474441289902,0.044622082263231],[0.067438222467899,0.06249725818634,0.052379865199327],[0.066808387637138,0.023221276700497,-0.0068709789775312]],[[0.061595533043146,-0.057975817471743,0.16143783926964],[-0.15305061638355,0.045642528682947,-0.12912099063396],[-0.11506539583206,-0.085874773561954,0.11989611387253]],[[-0.0093583557754755,-0.10205785185099,-0.076156549155712],[0.068604737520218,0.011178095825016,-0.0021483516320586],[-0.079350180923939,-0.071743406355381,0.17086587846279]],[[-0.10839089751244,0.034820433706045,-0.023880835622549],[-0.086203075945377,0.011831574141979,0.1146979033947],[0.035460982471704,-0.10989794135094,0.035022467374802]],[[0.026193218305707,-0.062518984079361,-0.0095109939575195],[0.091964967548847,0.011302963830531,-0.059524051845074],[0.0068352059461176,0.18852593004704,0.19722485542297]],[[-0.029160019010305,-0.1820922344923,-0.12857097387314],[-0.039846211671829,0.11071169376373,-0.027821099385619],[0.016733912751079,-0.061196271330118,0.04599117860198]]],[[[0.0026255429256707,-0.010698551312089,0.0038285963237286],[-0.024125499650836,-0.035127401351929,0.03490224853158],[-0.028168329969049,0.014147745445371,0.039115075021982]],[[0.026381997391582,0.0095335626974702,0.083512417972088],[-0.15372253954411,-0.044771298766136,-0.14118593931198],[-0.097869709134102,0.05528462678194,0.08097568154335]],[[-0.10070715099573,0.016435176134109,-0.098371013998985],[0.0082366922870278,0.032458927482367,-0.075485907495022],[-0.054400503635406,0.014877181500196,0.061341021209955]],[[-0.055563349276781,0.071146659553051,-0.070919573307037],[-0.026222614571452,-0.11833135038614,-0.022023120895028],[-0.015825575217605,0.067044228315353,0.097015373408794]],[[-0.029633719474077,0.027813648805022,-0.020044934004545],[-0.0030855175573379,-0.06520264595747,0.051624663174152],[-0.010078756138682,0.1134831905365,-0.00075404410017654]],[[-0.035597708076239,-0.042401131242514,-0.20377622544765],[-0.0023873194586486,-0.094426825642586,0.0035616564564407],[-0.10545402765274,0.062341906130314,0.02480954490602]],[[-0.036598648875952,-0.023336239159107,-0.097361907362938],[-0.16324345767498,-0.24402453005314,0.009525335393846],[0.13556399941444,-0.042152084410191,0.065068073570728]],[[0.096122480928898,0.14955760538578,0.095838330686092],[-0.16359555721283,-0.14955405890942,-0.046996846795082],[-0.00037599290953949,0.024886153638363,-0.11145966500044]],[[-0.005055426619947,-0.01915792003274,0.052892740815878],[-0.050590217113495,0.012189094908535,-0.066148802638054],[0.10825479775667,-0.056152645498514,0.095118410885334]],[[0.01710651256144,-0.049713511019945,0.043354600667953],[-0.026163551956415,0.029195919632912,0.017832888290286],[0.0096171740442514,-0.094771102070808,-0.059013765305281]],[[0.0028919405303895,0.20334841310978,-0.048154652118683],[-0.052949048578739,-0.066870786249638,-0.016071369871497],[-0.074658550322056,-0.12007858604193,0.013441370800138]],[[-0.024544354528189,-0.11731498688459,-0.057907860726118],[-0.0017250721575692,0.01385342516005,0.015384783037007],[0.025220246985555,-0.050699334591627,-0.098040595650673]],[[-0.040438387542963,0.023260429501534,0.098071396350861],[0.077127389609814,-0.055434510111809,-0.047910280525684],[0.023046217858791,0.062366038560867,-0.10875868052244]],[[0.078575633466244,0.046291187405586,0.072425954043865],[-0.048793755471706,-0.0010979821672663,-0.020180702209473],[-0.033294510096312,0.015146666206419,-0.052914254367352]],[[-0.004477197304368,-0.016410902142525,0.13933888077736],[-0.10739225894213,0.098314747214317,-0.20459346473217],[-0.066117964684963,-0.033210683614016,0.079186588525772]],[[-0.079268254339695,-0.098244607448578,-0.13420397043228],[-0.0083078816533089,-0.037421889603138,0.037790238857269],[0.040008682757616,0.078946456313133,0.012889614328742]],[[0.0076609291136265,-0.15370847284794,-0.0050036646425724],[-0.071887359023094,0.0054379738867283,-0.020446518436074],[0.015720518305898,-0.10467290133238,0.011423828080297]],[[-0.0086975134909153,-0.059747245162725,-0.10325196385384],[-0.040288433432579,-0.030584681779146,-0.10455945134163],[-0.015698870643973,0.0049060843884945,-0.022671669721603]],[[-0.043569721281528,0.026812832802534,-0.058594360947609],[0.033188376575708,-0.038602937012911,0.028065409511328],[0.020282594487071,-0.0081692561507225,0.053004641085863]],[[-0.051518201828003,-0.10930601507425,-0.12159062176943],[0.050551500171423,-0.080183103680611,0.042847760021687],[0.085181221365929,0.064483597874641,-0.10773913562298]],[[-0.12308470904827,0.026937685906887,0.077247604727745],[0.11990136653185,-0.036157839000225,-0.080224819481373],[0.15474009513855,0.031938631087542,0.10472840815783]],[[0.03557462990284,-0.026239637285471,0.057545941323042],[-0.10122616589069,-0.095400616526604,-0.13090772926807],[0.054491341114044,0.037661451846361,0.032275825738907]],[[-0.057137154042721,-0.0059899650514126,-0.080724216997623],[-0.019720194861293,0.072338744997978,0.068260967731476],[-0.077955722808838,-0.036088805645704,-0.047658737748861]],[[0.061672307550907,0.094694651663303,-0.26806995272636],[-0.0083677275106311,-0.11697146296501,-0.020726533606648],[-0.065552800893784,0.075281985104084,0.0078392485156655]],[[-0.084975905716419,0.11004024744034,0.14002560079098],[0.082177065312862,0.0094005418941379,0.073366463184357],[2.3250600861502e-05,0.026804758235812,-0.042014129459858]],[[0.0262187756598,0.0026421537622809,0.023787051439285],[-0.0029895531479269,-0.0029618164990097,0.069949768483639],[-0.061708766967058,-0.070844069123268,-0.03086743876338]],[[-0.071986541152,-0.11052448302507,0.0015320776728913],[-0.093228302896023,-0.17023004591465,-0.048198089003563],[0.038777131587267,0.054089866578579,0.084233783185482]],[[-0.12919199466705,-0.11976856738329,-0.006890696939081],[0.070948407053947,-0.078785255551338,-0.030489657074213],[-0.045685898512602,0.089917130768299,-0.043927531689405]],[[0.022498652338982,0.029780717566609,0.038016531616449],[0.029152853414416,-0.069331936538219,-0.1373193114996],[0.097412787377834,-0.013100589625537,-0.037474613636732]],[[-0.041445165872574,-0.067419767379761,0.034804537892342],[-0.10991560667753,-0.053445119410753,-0.058628786355257],[0.1088404878974,-0.034783255308867,0.027985461056232]],[[0.027075285091996,0.0798100233078,-0.024159424006939],[0.093715585768223,-0.05192581936717,-0.081879392266273],[-0.11494764685631,0.030514726415277,-0.054733388125896]],[[0.026677707210183,0.11556431651115,-0.040368836373091],[0.080603986978531,0.089436799287796,-0.02051187120378],[-0.045180540531874,-0.073431856930256,0.031230665743351]],[[0.18204835057259,0.0061855143867433,0.13241501152515],[-0.11265011876822,-0.075886987149715,-0.062764674425125],[0.092593722045422,-0.076507285237312,-0.050106164067984]],[[0.040127940475941,-0.016553597524762,-0.11654683202505],[0.0086640603840351,0.0015811459161341,0.1374431848526],[0.048862092196941,-0.054579943418503,-0.041267458349466]],[[-0.035027973353863,0.057627335190773,-0.13637743890285],[-0.062996000051498,-0.090768612921238,0.016654741019011],[-0.019129937514663,0.15688733756542,-0.0011057062074542]],[[0.031921271234751,0.018100036308169,0.15818959474564],[0.022607494145632,0.047048918902874,0.056058216840029],[0.04574766382575,-0.015530173666775,-0.034966383129358]],[[0.069785974919796,-0.081596091389656,0.17312407493591],[-0.050175432115793,0.13640783727169,0.066284582018852],[-0.064136363565922,-0.071689397096634,0.025588197633624]],[[-0.10477264225483,0.029042666777968,-0.072730727493763],[-0.14796912670135,-0.039393909275532,-0.09177953004837],[-0.02378461509943,0.029875488951802,-0.00264274305664]],[[-0.079978503286839,-0.11171531677246,-0.060802843421698],[0.11008583754301,0.12355021387339,0.075255066156387],[-0.17655773460865,-0.098821826279163,-0.23797339200974]],[[-0.02796615101397,-0.0030508325435221,0.13552759587765],[0.031908981502056,-0.0014779346529394,0.020003443583846],[0.059733662754297,-0.017297837883234,-0.023965602740645]],[[0.07201837003231,-0.025279995054007,0.069066271185875],[-0.047719340771437,-0.051538400352001,-0.1440791785717],[-0.033863164484501,-0.0096365548670292,0.15608733892441]],[[-0.095946282148361,-0.070479393005371,-0.19959042966366],[0.0092457477003336,0.046236999332905,0.021797934547067],[-0.017809381708503,-0.041705962270498,0.013530292548239]],[[-0.072677172720432,0.075374342501163,-0.058970302343369],[0.030629057437181,-0.081887826323509,-0.088091850280762],[-0.073836147785187,0.056709390133619,0.082637533545494]],[[-0.074801921844482,0.087376445531845,-0.22512502968311],[-0.0021462121512741,0.11048224568367,0.078480884432793],[-0.054952852427959,-0.070627018809319,-0.053394462913275]],[[0.040441863238811,-0.0026764839421958,0.037050578743219],[0.093441002070904,-0.048183932900429,0.12633244693279],[0.0085403015837073,0.00082058302359655,-0.053144913166761]],[[0.091600552201271,-0.054748270660639,0.073531717061996],[-0.017654547467828,-0.040991012006998,-0.087901726365089],[0.023306354880333,-0.055500987917185,0.040971450507641]],[[-0.075079441070557,0.10505763441324,-0.010335176251829],[-0.11905639618635,-0.076202645897865,0.11638559401035],[0.12735694646835,-0.077094405889511,-0.014956431463361]],[[-0.095616921782494,0.009508621878922,-0.082734264433384],[-0.025876097381115,-0.0078996401280165,-0.01427807379514],[0.017066843807697,-0.12770484387875,-0.03500372171402]],[[0.070348411798477,0.085095167160034,0.032732639461756],[-0.0072894152253866,-0.044329736381769,-0.12290950119495],[0.0062584392726421,-0.058842167258263,-0.036980416625738]],[[0.012759123928845,-0.048119813203812,0.068872734904289],[0.050790354609489,0.039484802633524,-0.077134370803833],[-0.076177909970284,-0.020712280645967,-0.12415796518326]],[[0.14996133744717,-0.1910691857338,0.012996908277273],[-0.13173401355743,0.037141937762499,0.02100938372314],[0.030484674498439,-0.10217621177435,-0.19391550123692]],[[-0.18641817569733,-0.043743949383497,0.032664321362972],[-0.0086968513205647,-0.020456057041883,-0.024990284815431],[0.09786643832922,0.030429920181632,0.026513896882534]],[[-0.01421757042408,0.061861556023359,0.070753328502178],[0.042775139212608,-0.11424241960049,0.060762271285057],[-0.041206441819668,-0.022084640339017,0.025662148371339]],[[0.0070742489770055,0.054107964038849,0.01813923753798],[-0.017807716503739,-0.072029516100883,0.031462822109461],[-0.021356606855989,-0.06450118124485,-0.021686451509595]],[[-0.041449822485447,-0.058052901178598,-0.0062020882032812],[0.0089382035657763,-0.032092850655317,0.10165753215551],[-0.048746861517429,-0.10856089740992,-0.079921059310436]],[[0.070480704307556,-0.083920903503895,-0.10003068298101],[-0.0078845676034689,0.13136087357998,0.1334875524044],[-0.0038525371346623,-0.11952633410692,-0.08038567006588]],[[-0.069434784352779,0.039533905684948,0.11942215263844],[-0.30921682715416,-0.028024852275848,-0.099930554628372],[0.063960984349251,-0.069904148578644,-0.058799639344215]],[[-0.058643463999033,-0.066500432789326,-0.02158454246819],[-0.035731784999371,-0.088317513465881,-0.036854706704617],[0.02280686236918,-0.038249522447586,0.039180606603622]],[[0.045837812125683,0.034533884376287,0.07231817394495],[0.0464275367558,0.037079114466906,0.052124429494143],[0.019517930224538,0.01376271340996,0.11004382371902]],[[0.10702545195818,-0.035188499838114,-0.11044770479202],[0.019483752548695,-0.13699907064438,-0.030356245115399],[-0.037829838693142,-0.012442707084119,0.045128129422665]],[[0.030948325991631,0.036153752356768,0.0042696464806795],[-0.015951253473759,0.00036162688047625,-0.015183900482953],[0.027228370308876,-0.013262571766973,0.019134610891342]],[[-0.11489509046078,0.048412431031466,-0.085678331553936],[0.013625640422106,-0.088487833738327,-0.051446121186018],[-0.0078483065590262,-0.033955611288548,-0.0059347301721573]],[[-0.012857551686466,-0.054468408226967,-0.012721548788249],[0.12100246548653,0.018221221864223,0.07049485296011],[-0.079346552491188,0.012672363780439,0.053354643285275]],[[-0.093805991113186,-0.024417765438557,-0.075119286775589],[0.088521689176559,-0.069483377039433,0.035284269601107],[0.052433390170336,-0.021339245140553,-0.047923792153597]]],[[[-0.052092168480158,-0.050766102969646,-0.0022526241373271],[-0.12399084866047,-0.11483739316463,-0.06623487919569],[0.03849758580327,0.037192989140749,0.04702989384532]],[[-0.046874098479748,-0.0246855430305,0.083533339202404],[-0.097320564091206,-0.093719013035297,0.0071667996235192],[-0.077979981899261,-0.04565691202879,-0.05064307525754]],[[-0.084449298679829,-0.021521430462599,-0.020755011588335],[-0.10581173747778,-0.085949927568436,-0.099492654204369],[0.053818099200726,0.045854706317186,0.062210261821747]],[[0.046062510460615,0.071792617440224,-0.018600607290864],[0.0071534216403961,0.040108282119036,-0.03551260381937],[0.10774119198322,0.049209859222174,0.035765770822763]],[[0.084098763763905,-0.0080496855080128,-0.045795019716024],[0.065379589796066,-0.12969747185707,-0.15750530362129],[-0.13287979364395,-0.064938940107822,0.075045987963676]],[[-0.051774576306343,0.018964014947414,-0.17553949356079],[-0.006230297498405,0.043245375156403,0.085175685584545],[-0.055637400597334,-0.11627073585987,-0.064365461468697]],[[0.021556587889791,-0.017548233270645,0.045120410621166],[-0.12379739433527,0.13644914329052,0.184236317873],[-0.12481768429279,0.010078492574394,-0.16064894199371]],[[-0.023871432989836,0.015185448341072,0.072190955281258],[0.16157639026642,0.0064377803355455,-0.0028815863188356],[-0.12053637206554,-0.072969108819962,-0.05986001715064]],[[0.057297889143229,-0.066343009471893,0.024036098271608],[0.029879800975323,-0.021613106131554,-0.051862247288227],[0.020211769267917,-0.15952038764954,-0.014136223122478]],[[-0.0342609398067,0.12316106259823,-0.13449630141258],[0.016674963757396,0.038321811705828,-0.097882993519306],[-0.059580612927675,0.078331895172596,-0.0069598932750523]],[[0.029176650568843,0.10144714266062,-0.10851906985044],[0.005140966270119,-0.062661349773407,0.0015559621388093],[0.049616616219282,0.020591573789716,0.091639883816242]],[[-0.084766238927841,-0.070169158279896,-0.080278404057026],[0.0074579389765859,-0.074186503887177,0.026452347636223],[0.0013267279136926,-0.015828331932425,-0.0061812764033675]],[[-0.12127756327391,-0.13878470659256,-0.058967020362616],[-0.043519984930754,-0.057561684399843,-0.012045545503497],[0.023425661027431,0.060867246240377,-0.02266613766551]],[[-0.20472486317158,-0.10835331678391,0.043861731886864],[-0.069308146834373,-0.059620968997478,0.11173325777054],[-0.074732385575771,-0.0096794012933969,0.021572602912784]],[[0.03913663700223,-0.10810260474682,-0.02915059402585],[-0.10345444083214,-0.055549263954163,0.02786223962903],[-0.14405107498169,-0.11640620976686,0.11211232841015]],[[0.11221340298653,-0.010424138978124,-0.17405931651592],[-0.11844190955162,0.096534080803394,-0.012712028808892],[-0.17122763395309,0.0066473023034632,-0.058192044496536]],[[-0.09301520884037,-0.054788995534182,-0.075529158115387],[-0.0067278360947967,-0.026339564472437,0.023160874843597],[-0.095614358782768,0.059591479599476,-0.15013149380684]],[[0.0040105558000505,-0.048226941376925,-0.22174656391144],[0.012939778156579,0.1396841108799,-0.048655740916729],[0.0031484274659306,0.002635907381773,-0.0034375924151391]],[[0.030084198340774,0.049189858138561,0.0080266743898392],[-0.062972880899906,-0.080237336456776,-0.072397083044052],[-0.06974046677351,0.01353115029633,0.11723262071609]],[[0.0046630469150841,-0.11142482608557,0.016379084438086],[0.065698102116585,-0.019871527329087,0.016281710937619],[0.017187248915434,-0.14245854318142,0.027661398053169]],[[-0.030762808397412,0.091704301536083,0.11479583382607],[-0.060705929994583,0.010643308050931,-0.010346502996981],[0.049786441028118,0.089069746434689,0.020663952454925]],[[0.030421733856201,-0.026608424261212,0.059530828148127],[-0.090543076395988,-0.021356489509344,-0.0033212644048035],[-0.02408055961132,-0.040871120989323,0.012621436268091]],[[-0.073150217533112,-0.042844381183386,-0.029409315437078],[-0.01382403075695,0.013763120397925,-0.038771372288465],[-0.041335988789797,0.013664086349308,-0.063262544572353]],[[0.15449497103691,-0.12442642450333,-0.021385783329606],[-0.1757008433342,-0.17597836256027,0.028262605890632],[0.063385277986526,0.069039270281792,-0.032780755311251]],[[0.067495115101337,0.11731775850058,-0.029620580375195],[0.10673407465219,0.053560510277748,-0.024293292313814],[0.010217833332717,0.036788128316402,0.024856319651008]],[[-0.072804622352123,-0.01296622492373,-0.027464024722576],[-0.010393786244094,0.017776593565941,0.039092872291803],[-0.013623891398311,-0.039584670215845,0.010541987605393]],[[0.024510851129889,0.10760090500116,-0.0084984805434942],[-0.049468234181404,-0.0087417811155319,-0.013954910449684],[0.23144340515137,0.21075740456581,0.030834168195724]],[[0.023635365068913,0.0011490944307297,0.06380320340395],[0.068530768156052,-0.012020559050143,0.06067743897438],[-0.10333898663521,0.13384068012238,-0.23875343799591]],[[-0.024444362148643,-0.038553595542908,-0.0531160607934],[-0.15900193154812,-0.06918279081583,0.0038532256148756],[0.10040818154812,0.059022229164839,0.038399815559387]],[[-0.034378692507744,-0.066428028047085,-0.0067043881863356],[0.05762991681695,0.011456727981567,-0.1239310875535],[0.015060621313751,0.059662230312824,0.027475757524371]],[[0.034715361893177,-0.034556165337563,0.09598945081234],[-0.098230667412281,0.076817281544209,0.10073693841696],[-0.076887607574463,0.047091193497181,0.027489021420479]],[[0.1694883108139,0.15013200044632,0.04185988754034],[0.11700335144997,-0.098652414977551,-0.089707218110561],[-0.060155127197504,0.11380147188902,0.093315936625004]],[[0.065522752702236,-0.12518171966076,-0.018481554463506],[-0.071898601949215,0.0048193847760558,0.037086363881826],[0.07932885736227,-0.025968568399549,-0.23623490333557]],[[-0.079707138240337,0.054466258734465,-0.0060201003216207],[-0.058597452938557,-0.044248193502426,0.018057011067867],[-0.035317867994308,-0.1193985491991,0.10676933825016]],[[-0.089596047997475,-0.059113647788763,-0.012841109186411],[0.04625042527914,-0.14502613246441,-0.022809129208326],[-0.060579653829336,0.043516125530005,0.17700333893299]],[[0.16506540775299,0.085218846797943,-0.065853491425514],[0.045938659459352,0.14939612150192,0.054781254380941],[0.074001923203468,-0.064952470362186,0.079413160681725]],[[0.025277815759182,-0.20397092401981,-0.099533684551716],[-0.047015085816383,0.14064867794514,-0.023537987843156],[0.062970101833344,0.18073712289333,0.12180358171463]],[[0.023206764832139,-0.036730017513037,-0.039723284542561],[-0.049266155809164,-0.0093634203076363,-0.012412228621542],[0.02595822326839,-0.049733314663172,-0.062291383743286]],[[-0.031629826873541,-0.098816119134426,-0.014316054061055],[0.03185098618269,0.1069757938385,0.029339404776692],[0.012533651664853,0.0073664374649525,-0.042800270020962]],[[-0.099804267287254,-0.10044790059328,0.075370915234089],[-0.12677752971649,-0.012825180776417,-0.26740744709969],[0.035861127078533,0.020482314750552,0.067936286330223]],[[0.03331470489502,-0.04518361389637,0.07496589422226],[-0.050318017601967,0.062464449554682,0.067359425127506],[0.081031203269958,-0.25549805164337,0.0010047164978459]],[[0.030703341588378,-0.0041296929121017,-0.17523577809334],[0.045070704072714,-0.06299539655447,-0.03821062669158],[0.031933013349771,0.019381634891033,-0.0026756555307657]],[[-0.043964020907879,0.029058327898383,0.097160287201405],[0.041767779737711,-0.026558492332697,0.11128593236208],[-0.044743407517672,0.1174583658576,-0.11839127540588]],[[-0.024561041966081,0.013918840326369,0.068460926413536],[-0.11430244892836,-0.035844087600708,-0.010976458899677],[0.057188671082258,-0.0095002045854926,-0.060826245695353]],[[0.088268905878067,-0.0090365810319781,0.034259762614965],[-0.11306907236576,-0.041679430752993,0.14425648748875],[-0.0502093359828,0.018643083050847,-0.026125628501177]],[[-0.16193331778049,-0.071383878588676,-0.052902720868587],[-0.1550026088953,0.14420159161091,0.18059226870537],[-0.10334421694279,-0.14432288706303,-0.052688051015139]],[[-0.08183466643095,-0.037617828696966,-0.046397618949413],[0.095552816987038,0.12824308872223,0.030752694234252],[0.065658822655678,-0.10195396840572,-0.037959381937981]],[[-0.029004219919443,0.066598236560822,0.12527215480804],[-0.075871482491493,0.029823051765561,-0.072123348712921],[-0.034227017313242,-0.089216291904449,-0.13184621930122]],[[-0.03288447111845,0.0074588623829186,-0.060101438313723],[0.11523160338402,0.023843793198466,0.040062624961138],[-0.11644771695137,0.13929809629917,0.15672436356544]],[[0.055194679647684,0.03710538521409,0.1385370194912],[0.16880616545677,0.20204249024391,0.013077044859529],[0.059550527483225,-0.093156106770039,0.020265115424991]],[[-0.030800871551037,-0.037093501538038,0.08651178330183],[0.012142641469836,-0.12985414266586,-0.10649643093348],[-0.068901494145393,-0.051027592271566,-0.002142229815945]],[[-0.12082346528769,-0.023953344672918,-0.080377660691738],[-0.087505899369717,-0.088557809591293,-0.025994453579187],[-0.11602131277323,-0.0046435943804681,-0.14274489879608]],[[0.016523137688637,-0.0473004989326,-0.091543972492218],[0.02918160147965,-0.051287781447172,0.034153662621975],[0.0091411452740431,-0.0017242764588445,0.031408745795488]],[[0.0051882779225707,-0.009642681106925,-0.0095313088968396],[-0.067454166710377,-0.089329525828362,0.067276924848557],[0.12190068513155,-0.11472377926111,0.0017396201146767]],[[0.055453486740589,0.0012820713454857,0.02767520584166],[-0.090775720775127,-0.10201348364353,0.019911585375667],[0.028761342167854,0.027533249929547,-0.1019274815917]],[[-0.076348967850208,0.099403768777847,-0.014256592839956],[0.00077424669871107,0.080243587493896,0.0055903531610966],[-0.058708481490612,0.030710512772202,-0.023768167942762]],[[-0.043750748038292,-0.024694561958313,-0.037345934659243],[-0.029973302036524,0.0078245578333735,-0.048711694777012],[-0.016043523326516,-0.00026981913833879,0.017143791541457]],[[0.028516100719571,-0.0075577227398753,0.038681287318468],[-0.17318902909756,-0.10003607720137,0.029939383268356],[0.07995180785656,-0.082169763743877,-0.056240703910589]],[[0.037239737808704,0.021365772932768,0.023440029472113],[0.071321204304695,-0.087555579841137,0.012690446339548],[0.03930277377367,0.091577298939228,0.10552083700895]],[[0.054088532924652,0.16036188602448,0.19201120734215],[-0.041891921311617,-0.014185296371579,-0.095428191125393],[-0.13756170868874,-0.091066792607307,-0.028866341337562]],[[-0.042449120432138,-0.018194390460849,-0.085015594959259],[0.079395860433578,-0.0041052736341953,0.081939727067947],[-0.030974514782429,0.03280845656991,-0.03998489305377]],[[0.11722146719694,-0.011889795772731,-0.057927537709475],[0.099509060382843,0.017280355095863,0.03934945166111],[0.11931671202183,-0.10336975008249,0.16163223981857]],[[-0.027069607749581,0.041226640343666,-0.075720302760601],[-0.17051020264626,0.0056666568852961,-0.005336232483387],[-0.026162192225456,-0.065745420753956,0.08392196148634]],[[-0.0020580412819982,0.00088088744087145,0.084696963429451],[-0.052158489823341,0.082786165177822,-0.038353744894266],[0.11791767925024,-0.096726164221764,-0.095994167029858]]],[[[0.058439690619707,-0.052409615367651,-0.05355517193675],[-0.005429636221379,-0.054525431245565,-0.042773794382811],[0.11145008355379,0.067397996783257,-0.11950577795506]],[[0.13155993819237,0.035765167325735,0.036361798644066],[-0.045767527073622,0.059279568493366,0.06564823538065],[-0.098512731492519,-0.048390321433544,-0.048593509942293]],[[-0.026093356311321,-0.012734247371554,-0.041262254118919],[-0.0049580624327064,-0.024101013317704,-0.026089685037732],[0.037695940583944,-0.031513396650553,-0.14091031253338]],[[0.14106298983097,-0.010699117556214,-0.058654762804508],[0.0078807091340423,0.00037412546225823,-0.024135129526258],[-0.13052161037922,-0.11308259516954,-0.13470301032066]],[[-0.0069114002399147,-0.040552545338869,0.054166309535503],[-0.084779374301434,-0.089461036026478,-0.081210575997829],[-0.016914617270231,0.035932473838329,-0.11071640253067]],[[-0.060336135327816,0.015092554502189,-0.014056900516152],[0.034656867384911,-0.010309279896319,0.011002937331796],[-0.065924592316151,-0.14263099431992,0.019277568906546]],[[-0.075294576585293,0.05262403562665,0.065135613083839],[-0.045821234583855,-0.084172576665878,-0.19337113201618],[-0.089117787778378,0.05291361361742,-0.27520275115967]],[[0.011628492735326,0.0099885333329439,-0.056098707020283],[0.08356124907732,-0.003694383893162,0.077913746237755],[-0.078790299594402,-0.021672632545233,-0.069057233631611]],[[-0.0029825130477548,0.0035836212337017,0.084829889237881],[-0.17878222465515,-0.12025522440672,-0.027811162173748],[-0.065449297428131,-0.10570009052753,0.015876591205597]],[[-0.037972077727318,-0.018890665844083,-0.15649789571762],[0.027805367484689,0.076608791947365,0.094477534294128],[0.011656130664051,0.0038218169938773,-0.028713218867779]],[[-0.041394576430321,-0.10745618492365,-0.0071733267977834],[0.11333870142698,0.028949521481991,-0.052691135555506],[0.052892711013556,-0.0045307488180697,-0.064030013978481]],[[-0.012401005253196,0.03931949287653,0.13503940403461],[-0.047752261161804,-0.028609814122319,0.0059011094272137],[0.064806565642357,0.081623636186123,-0.044448658823967]],[[0.10212845355272,0.079552233219147,0.068435244262218],[-0.11736439168453,0.077881850302219,-0.017243480309844],[-0.11772388219833,0.054288055747747,0.056332670152187]],[[-0.073727011680603,0.022316938266158,-0.073262833058834],[0.056689567863941,-0.028707033023238,-0.027150424197316],[0.097157433629036,-0.054496549069881,-0.0088644735515118]],[[-0.045870054513216,0.037530716508627,0.026098487898707],[0.050341755151749,-0.0076663540676236,0.076585881412029],[0.0073782871477306,0.054880157113075,0.011559566482902]],[[0.067621767520905,0.0626535192132,0.10866914689541],[-0.062380820512772,0.0087765268981457,0.13019107282162],[0.020106956362724,-0.058839451521635,-0.23085944354534]],[[0.023431159555912,0.051056437194347,-0.022679572924972],[-0.094476692378521,0.002076308708638,-0.034630950540304],[-0.020502125844359,-0.033862307667732,-0.060734141618013]],[[0.005901915486902,0.088063791394234,0.087736070156097],[0.019381858408451,-0.015271745622158,-0.047410827130079],[0.015490503050387,0.029274243861437,0.026549069210887]],[[-0.0092830918729305,-0.0079830763861537,-0.073355168104172],[0.042037963867188,-0.12225241959095,-0.065371826291084],[-0.034520298242569,-0.016828250139952,0.066768139600754]],[[-0.038819320499897,0.019302295520902,0.0072760004550219],[0.036119882017374,-0.16244761645794,-0.13600593805313],[-0.078504174947739,-0.14719408750534,-0.082698360085487]],[[0.080642871558666,-0.021881755441427,-0.0045117042027414],[-0.012042694725096,0.019420506432652,-0.20654788613319],[0.077818430960178,-0.05831640958786,-0.00090862705837935]],[[0.061859838664532,0.046360239386559,0.033106315881014],[-0.04953783005476,-0.05084702372551,-0.041932918131351],[-0.046874061226845,-0.027780830860138,-0.093085922300816]],[[-0.02936539426446,-0.066391460597515,-0.052497141063213],[-0.10654082149267,-0.038901824504137,-0.16597683727741],[0.044411279261112,-0.050509303808212,-0.14461645483971]],[[0.14627186954021,-0.0068423850461841,0.068549171090126],[0.10973089188337,0.039117377251387,0.053055018186569],[-0.039681687951088,-0.0088621424511075,-0.044170297682285]],[[-0.080631978809834,-0.088930062949657,-0.12041833996773],[-0.011060173623264,-0.17697601020336,-0.02023116312921],[0.024171175435185,0.20689341425896,0.076318338513374]],[[0.053341694176197,-0.047249086201191,-0.019036898389459],[-0.032685969024897,-0.039092477411032,0.023200117051601],[0.0070988326333463,-0.028191145509481,-0.043388664722443]],[[-0.14157515764236,-0.18529295921326,-0.17743314802647],[-0.09593840688467,0.082249708473682,-0.048067566007376],[0.065221779048443,0.00078881054650992,-0.047484941780567]],[[-0.087931983172894,-0.042415965348482,-0.097597531974316],[-0.11981474608183,0.015097669325769,-0.058515548706055],[-0.04576076194644,-0.0037061679176986,-0.062384158372879]],[[-0.10738531500101,0.069798223674297,0.022661134600639],[0.0450274720788,0.04623943567276,0.065346397459507],[-0.020623084157705,-0.20660603046417,-0.061813183128834]],[[0.12932808697224,-0.008276873268187,0.013832609169185],[-0.020286083221436,0.07317678630352,-0.12147485464811],[0.058301821351051,-0.025835486128926,-0.0035786668304354]],[[-0.053508672863245,0.034865736961365,0.013681906275451],[-0.037143599241972,-0.023464048281312,-0.04547706246376],[0.039873074740171,0.11324398219585,0.19017945230007]],[[-0.0010130733717233,0.061293039470911,-0.038809843361378],[0.030561039224267,-0.021345911547542,-0.059663753956556],[0.16399194300175,0.12383545935154,0.13798609375954]],[[-0.10492926090956,0.14382641017437,0.085746824741364],[-0.032662834972143,-0.12550710141659,-0.040451876819134],[0.22844351828098,-0.20750381052494,0.1636940985918]],[[-0.087147936224937,-0.11762034893036,-0.10571296513081],[-0.016836751252413,-0.21064506471157,-0.0042025037109852],[-0.13114619255066,-0.043137557804585,0.038099709898233]],[[-0.061418686062098,0.048952896147966,0.0029911431483924],[-0.062410723417997,-0.044142678380013,-0.0065254708752036],[-0.071944870054722,-0.10016197711229,-0.065964795649052]],[[-0.04604184627533,0.084049791097641,-0.094526499509811],[0.037582483142614,-0.01829351298511,0.070766434073448],[-7.43739947211e-05,0.072210296988487,-0.0013147956924513]],[[-0.01262968685478,-0.026931524276733,0.088295206427574],[0.10226357728243,0.17856603860855,0.04059898853302],[-0.028076626360416,0.021150544285774,0.14288346469402]],[[-0.082639001309872,-0.01839798502624,0.048385135829449],[0.019205842167139,0.092227108776569,0.015059927478433],[-0.023819725960493,0.067242689430714,0.0028484724462032]],[[-0.1084169447422,-0.021014414727688,-0.018849788233638],[-0.13748963177204,-0.033209122717381,-0.088113494217396],[-0.020331099629402,0.038085866719484,0.12008433789015]],[[0.088333323597908,0.05160665884614,-0.015589587390423],[-0.12761051952839,-0.1581354290247,-0.046145785599947],[-0.069574251770973,-0.10059129446745,0.12987478077412]],[[0.109539732337,0.008252888917923,0.0083594853058457],[-0.01279535703361,-0.058442983776331,0.033868763595819],[-0.12940634787083,-0.18035194277763,-0.027412954717875]],[[-0.048003297299147,0.032488483935595,-0.041550550609827],[0.038980953395367,-0.040611688047647,-0.0020269453525543],[-0.075970940291882,-0.049510952085257,-0.095182038843632]],[[0.042613480240107,0.14367683231831,0.026017749682069],[0.19422824680805,0.11171384900808,0.074324205517769],[-0.066299565136433,-0.055691104382277,0.092639401555061]],[[0.011626002378762,0.023337529972196,-0.038952015340328],[0.068907432258129,0.0093806004151702,-0.088525339961052],[-0.12774403393269,-0.19794610142708,-0.1360964179039]],[[0.016088655218482,0.13768900930882,0.070073425769806],[-0.023420704528689,-0.054132584482431,0.057378720492125],[-0.035145662724972,-0.12031535059214,-0.11153687536716]],[[0.070422045886517,-0.059844344854355,-0.089565977454185],[-0.027135979384184,-0.078650332987309,-0.06617583334446],[0.10834912210703,0.10173304378986,0.13203996419907]],[[-0.023344462737441,-0.070127092301846,0.031863588839769],[0.057186435908079,-0.055335097014904,-0.065639771521091],[-0.054532822221518,-0.049024268984795,-0.12656755745411]],[[-0.10071558505297,-0.0013656760565937,-0.057298567146063],[0.025433152914047,-0.053635939955711,-0.19968204200268],[0.010579842142761,0.17967037856579,0.015151154249907]],[[-0.031260684132576,-0.021618014201522,-0.0046902950853109],[0.0074242288246751,-0.020261168479919,0.044803488999605],[-0.034343555569649,-0.039223819971085,-0.077898234128952]],[[0.079904802143574,0.070462875068188,-0.0096577731892467],[-0.063330665230751,0.040000084787607,0.064212419092655],[-0.027269050478935,-0.13624076545238,-0.11995518952608]],[[-0.066708043217659,-0.077429935336113,0.030010972172022],[-0.020085560157895,0.0085863498970866,-0.14557971060276],[-0.045282788574696,0.039660297334194,0.087480530142784]],[[0.16122642159462,0.043357968330383,0.062331769615412],[-0.11379075795412,0.01955383643508,-0.14387427270412],[-0.065192066133022,-0.058092497289181,-0.033348266035318]],[[-0.052556838840246,0.092436134815216,0.023103354498744],[0.057438444346189,-0.042049765586853,-0.049322832375765],[-0.0075850444845855,-0.00015839368279558,0.020084779709578]],[[0.0089587783440948,-0.051142018288374,0.014640805311501],[0.091642633080482,0.089833065867424,0.063082836568356],[0.069610923528671,-0.10440889000893,0.079045511782169]],[[0.10299705713987,-0.022551521658897,0.056862771511078],[-0.11612832546234,-0.010144475847483,0.19540163874626],[-0.11515564471483,-0.15057863295078,-0.14754761755466]],[[-0.060849644243717,-0.004472688306123,0.11969941109419],[-0.063442833721638,-0.019452266395092,0.01602371968329],[-0.19241178035736,-0.16311830282211,-0.082854487001896]],[[0.057969462126493,-0.068090707063675,-0.054850045591593],[0.036210455000401,0.043586019426584,-0.0039476952515543],[-0.11336521804333,-0.11241701245308,-0.20712180435658]],[[0.069588795304298,0.015293331816792,0.059549827128649],[0.098383963108063,0.09187938272953,0.01580030657351],[-0.1181943193078,-0.19141931831837,-0.10691771656275]],[[0.017551749944687,0.013557623140514,0.026488747447729],[0.024443240836263,0.046115096658468,0.097065679728985],[0.029268583282828,0.091694742441177,-0.016347775235772]],[[-0.013825378380716,0.035739623010159,0.090066470205784],[0.063061095774174,-0.005703245755285,-0.13969327509403],[-0.10673931241035,-0.056093003600836,-0.067705854773521]],[[-0.14056770503521,0.055554687976837,-0.047493036836386],[-0.19311439990997,-0.1372971534729,-0.16325148940086],[0.05533380433917,-0.011935954913497,0.059420928359032]],[[0.0019561399240047,0.049395516514778,0.0295948702842],[0.034396350383759,-0.073543317615986,0.0622868090868],[-0.045614257454872,-0.05284072458744,-0.061583481729031]],[[-0.0017514112405479,-0.023672562092543,-0.13953568041325],[0.068399980664253,0.012313632294536,0.050764586776495],[-0.16203366219997,-0.068057797849178,-0.069293297827244]],[[0.065167672932148,0.034826796501875,0.13400873541832],[0.11583436280489,-0.07114040851593,-0.062836095690727],[-0.0051147504709661,-0.014986415393651,0.001778643229045]]],[[[0.086588837206364,-0.032835271209478,0.021065162494779],[-0.11457565426826,0.016879197210073,-0.0071086292155087],[0.044845666736364,0.11031836271286,0.10945437848568]],[[-0.03161958232522,-0.022386804223061,0.0044338339939713],[0.09656985104084,-0.037815760821104,0.018556170165539],[-0.21753989160061,-0.021044155582786,-0.17870901525021]],[[0.012495203875005,-0.13336347043514,-0.27855217456818],[-0.073250085115433,-0.094086907804012,-0.02452027797699],[-0.028908697888255,-0.1079606115818,-0.00039003556594253]],[[-0.059977382421494,0.039081208407879,-0.032462641596794],[-0.010178008116782,0.029219878837466,-0.073113650083542],[-0.071780547499657,0.17706277966499,-0.032068636268377]],[[0.022360634058714,0.01376564335078,-0.036454260349274],[0.043963167816401,-0.028890188783407,0.14676743745804],[0.046562343835831,-0.059126041829586,-0.052554626017809]],[[0.032376039773226,-0.17159649729729,-0.0469139367342],[0.021156979724765,-0.095150105655193,-0.040581829845905],[-0.10239908099174,-0.038357142359018,-0.12223750352859]],[[-0.05706762522459,0.005054943729192,-0.055646453052759],[-0.033793061971664,-0.045749224722385,-0.017542764544487],[-0.0052133579738438,0.040779549628496,-0.10938813537359]],[[0.061659086495638,0.020390259101987,0.027417553588748],[-0.019783647730947,-0.017434542998672,-0.083650156855583],[-0.014736167155206,0.0078053013421595,-0.054168231785297]],[[-0.027987124398351,-0.054816979914904,0.058016624301672],[0.060913920402527,-0.014321614988148,0.012532957829535],[-0.091811008751392,-0.12263039499521,-0.10992775112391]],[[-0.21663875877857,-0.016220344230533,-0.034919366240501],[-0.13572020828724,-0.016694894060493,-0.15003941953182],[-0.0861641690135,0.041113503277302,0.078265659511089]],[[-0.1382924169302,0.068713165819645,0.095374457538128],[-0.062502108514309,0.071700066328049,0.05664024502039],[0.070862464606762,0.014013363979757,-0.045174982398748]],[[0.12303728610277,0.0078360745683312,0.11481775343418],[0.022352445870638,0.013924785889685,0.15243165194988],[-0.18333111703396,-0.1279693543911,0.20460034906864]],[[-0.025034399703145,-0.063931412994862,0.02552280202508],[-0.033822845667601,0.016714317724109,0.004743670579046],[-0.071626603603363,0.020608568564057,0.037467375397682]],[[0.15047660470009,0.008265657350421,-0.12830930948257],[0.20361542701721,0.042858831584454,0.0040122107602656],[-0.12752905488014,0.079692356288433,-0.035891812294722]],[[-0.018130300566554,0.034919273108244,-0.18431685864925],[0.040146317332983,0.036014653742313,-0.13433773815632],[-0.0056257885880768,0.05279479175806,0.059784512966871]],[[0.086198523640633,-0.025218263268471,0.11911734193563],[-0.05562973767519,-0.0094288755208254,0.00033187202643603],[-0.0041979905217886,-0.027355873957276,0.10386384278536]],[[-0.043378412723541,0.0078501012176275,-0.048412714153528],[-0.02183966524899,-0.015918990597129,0.077061824500561],[-0.048081289976835,-0.17305910587311,-0.054585341364145]],[[0.031426284462214,0.13281339406967,-0.16361571848392],[0.068991392850876,0.02696686796844,-0.038275677710772],[0.1097337603569,0.090223997831345,-0.0016683967551216]],[[0.027747211977839,0.084154449403286,-0.097955346107483],[-0.043570924550295,0.032321196049452,0.046029217541218],[-0.15360483527184,0.0028650255408138,0.084734812378883]],[[0.062020611017942,0.033432397991419,0.010792509652674],[0.038789607584476,-0.041250474750996,-0.080214843153954],[0.09723998606205,0.017017360776663,0.061174102127552]],[[-0.021912876516581,-0.09579262137413,-0.15606977045536],[0.019676838070154,0.06520826369524,-0.13720862567425],[-0.010080503299832,-0.051387466490269,0.014925342053175]],[[0.10121165961027,-0.02461826428771,-0.034240029752254],[-0.002993936650455,-0.022854307666421,-0.12159094959497],[0.026401527225971,-0.029744278639555,-0.066417694091797]],[[0.12138944864273,-0.029593015089631,0.0027377193327993],[0.055481772869825,-0.050582006573677,-0.04806374758482],[-0.055637389421463,-0.0087101245298982,-0.080423466861248]],[[0.22848320007324,0.14265449345112,-0.016217051073909],[-0.091440744698048,-0.015211246907711,-0.055540502071381],[0.043590854853392,0.010839471593499,-0.039685498923063]],[[0.0052214548923075,-0.048941813409328,-0.053835216909647],[0.12674182653427,-0.0069737886078656,0.054765980690718],[-0.019237207248807,0.012664140202105,-0.072107531130314]],[[-0.050947997719049,-0.031366270035505,-0.012709478847682],[-0.021342730149627,0.019926745444536,0.049796923995018],[-0.004626608453691,0.023670747876167,-0.004532880615443]],[[0.09746877104044,-0.043490547686815,0.03769064694643],[0.060182087123394,-0.074810288846493,-0.081630922853947],[0.080713838338852,-0.045391406863928,-0.0063714422285557]],[[0.020125638693571,0.017414037138224,0.10760822147131],[-0.029365386813879,-0.073057092726231,0.17861880362034],[-0.11331258714199,0.027647698298097,0.038428731262684]],[[-0.015694703906775,0.032337885349989,0.040359634906054],[0.045446716248989,-0.035281129181385,-0.095414005219936],[-0.11049704253674,-0.14453047513962,0.10865244269371]],[[-0.030538035556674,-0.024153584614396,0.14579738676548],[-0.036447465419769,-0.047473985701799,-0.0048055383376777],[-0.11597446352243,-0.079519465565681,0.097822189331055]],[[-0.14351238310337,-0.011116882786155,0.037025768309832],[-0.074625767767429,0.054874248802662,0.060246028006077],[-0.099272385239601,0.014891775324941,0.10461155325174]],[[0.039091058075428,0.0013038244796917,0.11303439736366],[-0.0018717753700912,-0.058999091386795,-0.040027499198914],[0.10968743264675,0.03505727276206,0.096190005540848]],[[-0.076912991702557,0.083552472293377,0.0063478830270469],[-0.051515121012926,0.090042255818844,-0.13881479203701],[0.065133020281792,0.032419826835394,0.077573835849762]],[[-0.15281394124031,-0.1205040961504,-0.14563277363777],[0.0059093153104186,-0.059731561690569,-0.03910318762064],[-0.046545438468456,-0.036674942821264,0.0056797410361469]],[[-0.019372172653675,-0.032159492373466,-0.016652693971992],[0.071660779416561,-0.023798523470759,-0.11825131624937],[0.079435490071774,0.12486048787832,0.064261883497238]],[[-0.042748801410198,-0.007853165268898,0.042210351675749],[0.020018614828587,0.032667648047209,0.097402840852737],[-0.13400003314018,0.20107673108578,0.13351081311703]],[[0.065294794738293,-0.0039099766872823,0.155651897192],[0.11295748502016,0.090431079268456,-0.046170387417078],[-0.1429145783186,-0.15608122944832,0.045412059873343]],[[0.030600097030401,-0.095203071832657,-0.10589457303286],[0.0028670572210103,0.11293195188046,-0.052479881793261],[-0.10862266272306,-0.093013532459736,-0.13571514189243]],[[-0.12805381417274,-0.063284322619438,0.0345239341259],[0.10879570990801,-0.15093611180782,-0.071706585586071],[-0.10456244647503,-0.25997385382652,-0.018505556508899]],[[0.0055143758654594,0.0081002879887819,-0.08974976837635],[0.059607867151499,-0.079889610409737,-0.1348497569561],[0.12403289228678,0.055923216044903,-0.025509504601359]],[[0.006731596775353,-0.1441213041544,-0.15244592726231],[-0.15277847647667,-0.16646260023117,-0.099926598370075],[0.07154618948698,0.098446056246758,-0.040726199746132]],[[-0.14582109451294,-0.1031734123826,-0.036945041269064],[0.11528248339891,0.019613362848759,-0.092277966439724],[-0.054019052535295,0.073582872748375,-0.055456481873989]],[[-0.017848134040833,0.053107380867004,-0.18226137757301],[0.095893204212189,0.10159388929605,-0.15754897892475],[0.050866860896349,0.013304603286088,-0.05432965233922]],[[0.1223129555583,0.087557218968868,-0.054644629359245],[0.081715017557144,0.13095591962337,0.14648094773293],[0.091860964894295,-0.079179033637047,-0.26546615362167]],[[-0.063594318926334,-0.06603892147541,-0.026545085012913],[-0.020607441663742,0.068329147994518,0.030576495453715],[-0.011256154626608,0.013069692067802,0.032991908490658]],[[0.1277216821909,0.09119438380003,0.14180643856525],[0.055513978004456,0.030211050063372,0.016467271372676],[-0.059414908289909,0.033344272524118,-0.032827980816364]],[[-0.085650235414505,-0.079859666526318,0.025795625522733],[-0.14930698275566,0.031849917024374,-0.01984241232276],[-0.021524719893932,-0.096630297601223,0.011726482771337]],[[0.083550363779068,-0.0062846881337464,0.034178599715233],[0.014404474757612,0.042073797434568,0.00092870788648725],[-0.084221392869949,-0.070631809532642,-0.036979541182518]],[[0.074636436998844,0.0053162882104516,-0.032527986913919],[-0.17106860876083,-0.034252088516951,-0.025630358606577],[0.014591896906495,-0.067638278007507,-0.10723517090082]],[[0.066659778356552,0.033374045044184,-0.0012470481451601],[-0.13334776461124,0.017380243167281,-0.011162522248924],[0.1761491894722,-0.15963327884674,-0.054252408444881]],[[-0.050708144903183,0.20515063405037,0.12024466693401],[0.027290765196085,0.00099750957451761,-0.028813075274229],[-0.0056344983167946,-0.0033974137622863,-0.17936433851719]],[[-0.021595574915409,0.097280435264111,0.014618217013776],[0.012181513011456,0.057350073009729,-0.078856214880943],[-0.048393566161394,0.021904990077019,-0.049793444573879]],[[0.039866235107183,-0.04500001296401,0.043079294264317],[-0.11272906512022,-0.032915979623795,0.038091350346804],[0.027865685522556,-0.017586981877685,-0.033345408737659]],[[-0.046747013926506,0.14247864484787,0.035569317638874],[-0.033644273877144,-0.018832299858332,-0.058167051523924],[-0.051157362759113,0.034492019563913,-0.0033884076401591]],[[0.024008167907596,-0.025701971724629,-0.10798323899508],[-0.084231808781624,0.10604809224606,0.080609604716301],[-0.036025505512953,-0.029316050931811,-0.064007088541985]],[[0.043989710509777,-0.062943041324615,0.021009789779782],[-0.019384073093534,-0.090201675891876,-0.051241979002953],[-0.097852289676666,-0.1691712141037,0.070948876440525]],[[0.025374960154295,0.015054471790791,-0.1232623681426],[-0.026629539206624,-0.067934662103653,-0.11083634197712],[-0.067237086594105,-0.079123318195343,0.041860461235046]],[[-0.06168357282877,0.064019285142422,-0.038541976362467],[-0.1359316855669,0.088863715529442,-0.17428988218307],[-0.077948734164238,0.054674793034792,-0.038476519286633]],[[0.055686935782433,-0.0042081079445779,0.066509306430817],[0.050886671990156,0.1433801651001,0.068963199853897],[0.069383822381496,0.087496049702168,-0.0011084171710536]],[[-0.06003288179636,0.023715713992715,-0.04429667070508],[-0.05401598289609,0.077447831630707,-0.077689401805401],[0.0046022394672036,-0.080878429114819,-0.024286683648825]],[[0.07098400592804,-0.18395546078682,-0.094429977238178],[-0.02459554001689,-0.039189774543047,0.077933549880981],[0.095446676015854,0.0022231256589293,-0.046631690114737]],[[0.01593448407948,-0.021352903917432,0.076283372938633],[0.080459199845791,0.027646480128169,-0.04722173511982],[0.020982610061765,0.013131225481629,-0.012428098358214]],[[-0.040815453976393,-0.10610558092594,0.07228022813797],[0.095122866332531,-0.1604125648737,-0.035765614360571],[0.040529649704695,-0.00018467467452865,-0.036797750741243]],[[-0.066509358584881,0.022935766726732,0.11344455182552],[-0.13476999104023,-0.12243466824293,0.064056873321533],[-0.10185413807631,-0.08132366091013,-0.12946732342243]]],[[[0.091053731739521,0.030272448435426,0.10437898337841],[-0.0054120123386383,-0.056927695870399,0.038101568818092],[0.022987805306911,-0.098796248435974,-0.009259638376534]],[[-0.12918123602867,-0.1890571564436,-0.060089100152254],[-0.017940796911716,0.004930165130645,-0.031434547156096],[0.041124641895294,0.10712772607803,0.09814840555191]],[[-0.039777297526598,-0.076534852385521,-0.13276782631874],[0.018951749429107,0.034769989550114,-0.083421245217323],[-0.020020689815283,0.064545400440693,0.029551677405834]],[[0.017315289005637,-0.00057975010713562,-0.079081244766712],[0.042851287871599,-0.069123640656471,-0.21430060267448],[0.068477757275105,0.099087744951248,0.023612743243575]],[[-0.077940993010998,-0.030893767252564,0.048657730221748],[0.038137294352055,0.0016783105675131,-0.0026432175654918],[0.0083059761673212,-0.014696393162012,-0.0064741000533104]],[[0.047651875764132,-0.12543575465679,-0.056806717067957],[0.0019260059343651,-0.0077365860342979,0.025765338912606],[0.054747153073549,0.1865032017231,0.016552498564124]],[[0.017020862549543,-0.055527791380882,-0.13295729458332],[0.033005189150572,-0.040659867227077,0.031188840046525],[0.088035069406033,0.014291697181761,-0.0074654095806181]],[[0.083319596946239,0.16338513791561,0.067666299641132],[-0.0048993546515703,-0.05932928994298,-0.038421213626862],[0.059737741947174,0.074950307607651,-0.10835143923759]],[[0.011303352192044,0.035280026495457,-0.14676979184151],[-0.030898202210665,0.075229994952679,-0.1425216794014],[0.10872967541218,0.11733783781528,-0.16661670804024]],[[0.010157071985304,0.0038669439963996,-0.13458302617073],[0.072926193475723,-0.012364230118692,-0.054614551365376],[0.08355388045311,0.032105710357428,-0.054652396589518]],[[0.058605786412954,-0.18037663400173,0.23275761306286],[0.05806490033865,-0.15330177545547,-0.0085374694317579],[0.11593198776245,-0.11255667358637,-0.012060151435435]],[[-0.18627609312534,-0.14215707778931,0.057920705527067],[0.064973875880241,-0.0077826688066125,0.082478046417236],[0.035714987665415,0.046571042388678,-0.041579067707062]],[[0.076596014201641,0.13457733392715,0.098992332816124],[-0.19379107654095,-0.0079028122127056,-0.22263693809509],[0.045309700071812,0.039722602814436,-0.067671611905098]],[[0.001612757332623,0.088055774569511,-0.056321952491999],[0.04459722340107,0.011849730275571,0.051106788218021],[-0.0068600438535213,-0.070088364183903,-0.13415914773941]],[[-0.03486305102706,-0.10184764862061,0.079549551010132],[0.0027022697031498,0.038077477365732,0.13981440663338],[0.059419050812721,0.099255561828613,-0.11556985974312]],[[-0.16826173663139,-0.08081854134798,-0.25297775864601],[-0.083085991442204,0.013857275247574,-0.15854041278362],[0.1050500869751,-0.020168822258711,-0.014973222278059]],[[0.072557829320431,-0.1084937825799,0.061610147356987],[-0.010077587328851,0.10980027914047,0.051857780665159],[-0.031854279339314,0.046914055943489,-0.036189969629049]],[[-0.13102650642395,-0.16002497076988,-0.22781886160374],[-0.12940753996372,-0.042980052530766,-0.087681233882904],[0.10134189575911,0.036608323454857,0.13108260929585]],[[0.040824830532074,-0.10955998301506,0.16741821169853],[0.029510207474232,-0.0018111910903826,0.053280029445887],[-0.033079221844673,-0.11817184090614,0.0018902868032455]],[[0.082226701080799,-0.035440620034933,0.12960051000118],[-0.014063390903175,-0.090191081166267,0.091449335217476],[-0.083360843360424,0.012145123444498,-0.075743399560452]],[[0.010705362074077,0.089398726820946,-0.25985196232796],[-0.047091148793697,0.039151143282652,-0.00056812528055161],[0.041474740952253,0.078756973147392,-0.027145385742188]],[[0.019272647798061,-0.065404959022999,0.018358884379268],[-0.063945531845093,-0.046536024659872,-0.064474985003471],[0.015394248999655,0.0094577595591545,0.03498762845993]],[[-0.070391185581684,0.010075626894832,0.043838541954756],[-0.10209243744612,-0.03083099424839,0.031139483675361],[-0.041752368211746,-0.080899283289909,-0.022164039313793]],[[0.013004601933062,0.019006501883268,-0.022955421358347],[0.012056484818459,0.10445878654718,0.13661308586597],[-0.17624706029892,-0.0040173530578613,-0.035177227109671]],[[0.083615809679031,0.023202897980809,0.18734835088253],[0.061229925602674,0.19162720441818,0.10973583906889],[0.058415297418833,-0.044104021042585,0.0080105680972338]],[[0.018371812999249,0.011594949290156,0.061464231461287],[-0.0026823575608432,0.087103001773357,0.022543674334884],[-0.058505438268185,-0.078871555626392,-0.059148702770472]],[[-0.10043174028397,-0.1063150241971,-0.13257637619972],[-0.15077404677868,0.022952297702432,-0.061546072363853],[-0.097223505377769,0.016463976353407,-0.034416571259499]],[[-0.014687767252326,-0.068211071193218,0.021362103521824],[-0.019279113039374,-0.015728672966361,-0.013479643501341],[-0.0020040269009769,0.033401474356651,-0.019911034032702]],[[0.15239225327969,-0.014846338890493,-0.030230360105634],[-0.09567154943943,-0.054930947721004,0.090120062232018],[-0.080746673047543,-0.074877999722958,-0.0032318457961082]],[[-0.051431953907013,0.088418126106262,-0.14722436666489],[-0.13675209879875,-0.059315260499716,-0.014644396491349],[-0.015790097415447,0.052849777042866,0.1438599973917]],[[0.010900271125138,0.10453852266073,-0.051604397594929],[0.10903257876635,0.054250754415989,-0.031826686114073],[0.094002105295658,0.061943173408508,0.088760115206242]],[[0.10771176218987,0.11309846490622,0.30663555860519],[0.0027770975138992,-0.093193478882313,-0.025526728481054],[0.12877508997917,0.0040396726690233,0.12325264513493]],[[0.13345940411091,0.001678554690443,0.14712549746037],[-0.07980027794838,-0.030710408464074,0.034713599830866],[0.022753275930882,0.01127091050148,0.064108625054359]],[[-0.0025970868300647,0.096868224442005,0.15266880393028],[0.10346499085426,0.072480127215385,0.061710827052593],[-0.01829088293016,0.019500629976392,0.053688228130341]],[[-0.0088228899985552,-0.1563251465559,-0.029979201033711],[0.020109983161092,0.04071331396699,-0.0039872005581856],[-0.022256745025516,-0.08305287361145,-0.12781646847725]],[[0.073480635881424,0.15746723115444,0.16593679785728],[0.0089886980131269,0.045936189591885,0.044488456100225],[-0.1109359934926,-0.11722648143768,-0.13255494832993]],[[-0.029560333117843,0.23082798719406,-0.034359492361546],[0.030988393351436,0.073306642472744,0.13424074649811],[-0.09187076985836,-0.061141639947891,0.050003699958324]],[[0.022152092307806,0.063143983483315,-0.055804535746574],[-0.039548631757498,0.13686011731625,-0.054239857941866],[0.0078818816691637,-0.20666904747486,-0.22611121833324]],[[-0.051407787948847,-0.001839580014348,-0.096577562391758],[0.076936110854149,0.056923389434814,0.069744847714901],[-0.034134939312935,0.028950283303857,-0.085855722427368]],[[0.082353487610817,-0.041759215295315,0.1225668489933],[0.0024654325097799,0.017114264890552,0.010605274699628],[0.011334556154907,-0.046604979783297,-0.0091412123292685]],[[0.0060730655677617,-0.075387261807919,-0.051586478948593],[-0.078809976577759,-0.11327601969242,-0.059560131281614],[0.062150966376066,0.05131608247757,0.027144161984324]],[[-0.032632797956467,-0.0053326971828938,0.011506355367601],[-0.0085561024025083,-0.0072822165675461,-0.093231521546841],[0.034639872610569,0.11680141091347,0.073895633220673]],[[0.053879026323557,0.03769500926137,-0.062484212219715],[0.044470127671957,-0.23637565970421,-0.050127401947975],[0.017589773982763,0.0028714486397803,0.21959729492664]],[[-0.050905242562294,-0.084738127887249,-0.051703076809645],[0.20127964019775,0.08148530870676,-0.02775364369154],[0.020474199205637,-0.033514641225338,0.076262727379799]],[[-0.09815302491188,-0.056220129132271,-0.18597064912319],[-0.24604238569736,-0.18001385033131,-0.13845744729042],[-0.075814768671989,0.00946572329849,0.015817437320948]],[[-0.011125073768198,0.0059731532819569,0.064211770892143],[-0.030416145920753,-0.10442098230124,-0.10760073363781],[0.11699385941029,-0.069449469447136,0.019074017181993]],[[0.023510202765465,0.14191024005413,0.24798713624477],[-0.0034946335945278,-0.030677460134029,-0.054777748882771],[-0.016157971695065,-0.13928960263729,0.069153241813183]],[[0.13326187431812,-0.026466775685549,0.037680484354496],[0.075046077370644,0.050590142607689,0.10572079569101],[0.018042750656605,-0.10438594222069,-0.018896374851465]],[[0.19404062628746,0.1199462339282,0.053127862513065],[0.070313178002834,-0.0082464758306742,-0.087283633649349],[-0.015609163790941,0.10988168418407,-0.11829033493996]],[[-0.20984624326229,-0.030446356162429,0.054067771881819],[-0.0041793524287641,0.1856000572443,0.052244242280722],[-0.075593061745167,-0.14338614046574,-0.059044063091278]],[[0.098067618906498,-0.04466513171792,0.30488938093185],[0.048044707626104,-0.061742845922709,0.035154186189175],[0.03634724393487,-0.041283261030912,0.027249366044998]],[[0.04497168213129,-0.078719079494476,0.052629958838224],[0.11507306993008,0.15091913938522,-0.046492975205183],[0.0017896285280585,-0.080358974635601,0.025768229737878]],[[-0.058085180819035,-0.11382937431335,-0.13368816673756],[-0.042499516159296,0.020619673654437,-0.021365122869611],[0.01490172650665,0.075470119714737,0.14386206865311]],[[-0.082766368985176,0.010504304431379,-0.16864389181137],[0.043460749089718,0.060971572995186,-0.063431695103645],[-0.026934405788779,0.055649854242802,-0.11884844303131]],[[0.018068572506309,-0.070757105946541,0.070442385971546],[-0.097434088587761,-0.012777681462467,-0.059930976480246],[-0.053510535508394,-0.1181827262044,0.035804435610771]],[[-0.0037315825466067,-0.04585338011384,-0.028450954705477],[-0.1373882740736,-0.056774590164423,-0.073301717638969],[-0.11863140761852,-0.027721185237169,-0.18589451909065]],[[0.01627198047936,-0.14153352379799,0.011762142181396],[-0.037127960473299,0.00047413058928214,0.14781408011913],[0.016072915866971,0.064393945038319,-0.064167991280556]],[[-0.1038246974349,-0.16759915649891,-0.34204563498497],[-0.048052664846182,0.075800642371178,0.094847410917282],[-0.028965104371309,0.02942525036633,-0.029020708054304]],[[0.058162059634924,0.017286589369178,-0.042200725525618],[0.047451287508011,0.070310577750206,-0.043933633714914],[0.1071510836482,0.1646768450737,0.071638740599155]],[[-0.085526436567307,-0.009543327614665,-0.17109532654285],[-0.012284433469176,-0.15842416882515,0.017637610435486],[0.02723004668951,0.021808817982674,0.16239057481289]],[[0.028960911557078,-0.010641013272107,0.17134128510952],[0.0093106999993324,0.05007441714406,-0.061293993145227],[-0.0089617315679789,0.004901731852442,-0.023763228207827]],[[-0.1000784561038,-0.19059869647026,-0.056499563157558],[-0.07126621901989,-0.08404566347599,-0.18040649592876],[0.0026395244058222,0.0020860345102847,0.018724611029029]],[[0.058323107659817,-0.015735203400254,-0.063988752663136],[0.026934741064906,0.035762716084719,0.1037173345685],[-0.017662404105067,-0.030401201918721,0.11176042258739]],[[-0.035124432295561,-0.051552966237068,-0.13790600001812],[0.018599979579449,-0.0056298864074051,0.020096572116017],[0.045464992523193,-0.028821658343077,-0.1234432682395]]],[[[-0.031671334058046,0.027830112725496,0.0069425259716809],[0.059724949300289,0.041995447129011,-0.03351454436779],[0.044725775718689,-0.11161957681179,0.041921585798264]],[[0.0036621117033064,0.081368759274483,-0.0028698949608952],[-0.10921300947666,-0.0649289265275,0.022226409986615],[-0.1742849946022,-0.042523976415396,0.081806398928165]],[[0.025004372000694,0.02179342508316,-0.060241557657719],[-0.024843292310834,-0.018995817750692,0.092373415827751],[0.01750154606998,-0.016856804490089,-0.0057469857856631]],[[-0.0011754757724702,-0.13639721274376,-0.036672584712505],[0.03837376087904,-0.095701344311237,-0.0017697052098811],[-0.0055083222687244,0.024182762950659,0.088784016668797]],[[0.049287017434835,0.10279677808285,0.034316964447498],[-0.03125137463212,-0.010989112779498,0.0062006190419197],[-0.1206379160285,0.048861239105463,-0.069959841668606]],[[0.10779452323914,-0.1647542566061,-0.077425539493561],[-0.031016180291772,0.061978969722986,-0.015767086297274],[-0.015390968881547,-0.10183227807283,-0.076799005270004]],[[0.099960289895535,0.0162063986063,0.012595147825778],[0.066940985620022,0.11564122885466,0.086468942463398],[0.057153139263391,0.0083024278283119,0.021772051230073]],[[0.074232906103134,0.082773141562939,-0.02523391880095],[-0.018725516274571,-0.098973654210567,0.093362025916576],[0.0099520878866315,-0.057275135070086,-0.078492239117622]],[[-0.1011316627264,0.053642455488443,-0.078860156238079],[0.040164794772863,-0.019140167161822,-0.14402036368847],[-0.00012179167970316,-0.03015418164432,-0.2451746314764]],[[-0.022067999467254,-0.07485893368721,-0.10657142847776],[-0.11006078869104,-0.032239515334368,-0.091471590101719],[0.08016799390316,-0.059167817234993,-0.048139572143555]],[[-0.10009413957596,-0.030368860810995,0.030789352953434],[-0.063285276293755,-0.041676342487335,-0.026073260232806],[0.098690956830978,-0.092141911387444,0.023416582494974]],[[-0.074781879782677,-0.0012501731980592,-0.015825930982828],[0.067756973206997,0.079511679708958,-0.036672092974186],[-0.0078267818316817,0.083755418658257,0.0061270999722183]],[[0.10845354944468,-0.027224084362388,-0.026130387559533],[-0.064194828271866,-0.060620319098234,0.021617656573653],[0.012371621094644,-0.0063340649940073,0.0045447777956724]],[[0.14839655160904,0.074144527316093,-0.02231222204864],[-0.073075629770756,-0.098091661930084,-0.01454808190465],[-0.018528228625655,-0.13733319938183,-0.057269539684057]],[[0.12875352799892,-0.018893882632256,-0.0793671682477],[0.062458500266075,-0.034263730049133,-0.063692383468151],[0.22082412242889,0.010871429927647,0.10565589368343]],[[0.00953324791044,0.048396594822407,-0.13570518791676],[-0.079885795712471,-0.015845581889153,0.010284043848515],[-0.044758446514606,-0.01291739102453,0.042002324014902]],[[-0.034245751798153,0.017027828842402,-0.22297047078609],[-0.062277410179377,-0.10946776717901,-0.15786346793175],[0.10709318518639,0.013001156970859,-0.040737517178059]],[[-0.18472281098366,0.10277818143368,0.021508743986487],[-0.019493479281664,0.0080842915922403,0.043702024966478],[0.036266181617975,0.094403699040413,0.035368032753468]],[[0.064627856016159,-0.11395709961653,-0.065871700644493],[-0.022171476855874,-0.027013963088393,-0.023713482543826],[-0.046422354876995,-0.08974102884531,-0.033879961818457]],[[0.11813016980886,-0.11581426113844,-0.088854447007179],[-0.072559028863907,-0.0027131433598697,0.077187970280647],[-0.046714551746845,0.044640131294727,0.015672860667109]],[[0.10947691649199,0.10222586244345,-0.026209799572825],[0.018614461645484,0.054633732885122,0.044255115091801],[-0.075491644442081,0.044464882463217,-0.01508548669517]],[[0.066755875945091,0.046601809561253,-0.083221822977066],[0.063629999756813,-0.05737978592515,-0.1255234926939],[-0.059650328010321,-0.010884606279433,0.016074081882834]],[[-0.01024659909308,0.017859539017081,-0.021900463849306],[-0.11763620376587,-0.1260190308094,0.10106671601534],[-0.082810804247856,0.0064825522713363,0.035557594150305]],[[0.037188079208136,0.0454932898283,-0.046540293842554],[-0.19755551218987,-0.036150403320789,0.071968697011471],[0.11652425676584,-0.03811576589942,0.021891236305237]],[[-0.041583295911551,0.11563044786453,-0.15912368893623],[0.080008044838905,0.080757796764374,0.041590325534344],[0.056940335780382,-0.02398470044136,-0.058451376855373]],[[0.021475069224834,-0.011531228199601,-0.034539625048637],[0.014083209447563,-0.12268682569265,0.03096049465239],[0.016711296513677,0.043591756373644,0.027966216206551]],[[-0.21119424700737,-0.016874914988875,0.027410063892603],[0.11982039362192,0.051650688052177,-0.16941270232201],[-0.09965530782938,-0.00095522875199094,-0.032635319977999]],[[0.024753853678703,-0.023055845871568,-0.077608987689018],[0.029224615544081,-0.13939069211483,-0.011748862452805],[0.082115337252617,0.095442816615105,-0.00069097033701837]],[[0.01673280261457,-0.042789503931999,0.052360665053129],[-0.037752564996481,-0.10234382003546,-0.036815796047449],[-0.088764831423759,-0.063293129205704,-0.0014746813103557]],[[0.0087517788633704,0.088979259133339,-0.022462135180831],[-0.01245220284909,-0.072476364672184,0.0074396403506398],[0.086079970002174,0.091101862490177,-0.049255888909101]],[[0.0036256471648812,-0.040376074612141,-0.023732589557767],[0.15472060441971,-0.030719624832273,0.058158677071333],[0.097532272338867,-0.13230685889721,-0.00061449117492884]],[[-0.023548504337668,-0.04283469170332,0.081207297742367],[-0.070690929889679,0.0085168043151498,-0.063831478357315],[0.077610194683075,-0.031116981059313,0.056424397975206]],[[0.01579238474369,-0.12102258205414,-0.081326827406883],[0.10608636587858,0.11509611457586,-0.036248236894608],[-0.15376588702202,-0.010961334221065,-0.13935400545597]],[[0.11905059218407,-0.047573674470186,-0.12776528298855],[0.020717035979033,-0.021220620721579,-0.042821522802114],[0.013157562352717,-0.077959947288036,0.031698182225227]],[[-0.064275920391083,-0.097147800028324,0.10302236676216],[-0.051730334758759,-0.1774570196867,-0.1194676309824],[-0.0072807804681361,-0.035713884979486,-0.10070782154799]],[[-0.037567894905806,0.12635596096516,0.040022190660238],[0.022897202521563,0.048434618860483,-0.00016668532043695],[-0.013746999204159,0.10254597663879,-0.13135077059269]],[[-0.015770811587572,-0.079524323344231,0.087529741227627],[-0.10106132924557,0.030514726415277,0.096746869385242],[0.060352213680744,-0.052653040736914,-0.05615821108222]],[[0.03798932954669,0.0020403815433383,-0.021362289786339],[-0.032927185297012,-0.059780601412058,-0.082966484129429],[0.10821039974689,-0.057475335896015,-0.078885599970818]],[[-0.094923906028271,0.0024547050707042,0.080370634794235],[-0.071398742496967,0.0079995021224022,-0.026094982400537],[-0.081514291465282,0.0082829706370831,-0.081998951733112]],[[0.084433600306511,0.073139674961567,0.03948824480176],[-0.19630043208599,-0.085773222148418,-0.025085778906941],[0.058871194720268,0.10953252017498,0.079616211354733]],[[0.031255632638931,0.080028139054775,0.070005729794502],[0.15308123826981,0.078490607440472,0.017270904034376],[-0.14183516800404,-0.11959731578827,0.047607239335775]],[[0.0065683452412486,-0.098919562995434,0.19452886283398],[0.09165532886982,-0.14154642820358,0.051499158143997],[0.035632409155369,-0.020860949531198,0.0053110453300178]],[[0.11829558759928,0.018109533935785,0.096622012555599],[0.14432993531227,-0.079419009387493,-0.019394041970372],[0.085274569690228,-0.10864182561636,-0.031107101589441]],[[-0.086010254919529,-0.0071336580440402,-0.25882232189178],[0.050900511443615,0.020973982289433,-0.046555269509554],[0.0010499923955649,0.022509943693876,-0.025049461051822]],[[-0.058745875954628,0.042388804256916,0.056143134832382],[0.033915787935257,-0.066396549344063,0.00075548992026597],[0.074184626340866,0.036609645932913,-0.030704801902175]],[[-0.032058890908957,0.01406988222152,-0.0051652821712196],[-0.04909360781312,-0.12766921520233,-0.03701326996088],[-0.0079868203029037,-0.023789659142494,0.095628447830677]],[[-0.014417828992009,-0.029591619968414,0.14009137451649],[-0.0023880866356194,0.035525646060705,-0.012141423299909],[-0.11322454363108,-0.031677708029747,0.049220465123653]],[[0.10109506547451,0.053926266729832,0.12324384599924],[-0.080324448645115,-0.11315377801657,0.027397528290749],[0.061757005751133,0.049401722848415,0.080390863120556]],[[-0.066816776990891,-0.095677778124809,-0.057796560227871],[-0.05140470713377,0.078960716724396,-0.016986997798085],[0.021509621292353,0.066251687705517,-0.064575724303722]],[[0.12830048799515,0.067479893565178,0.016509236767888],[0.053064782172441,0.0028654949273914,-0.095768064260483],[0.095784462988377,0.19718019664288,-0.10571554303169]],[[0.098193012177944,0.0066461567766964,0.12134726345539],[0.041886448860168,0.030901305377483,-0.01897406578064],[-0.034522168338299,-0.020553471520543,-0.10011700540781]],[[-0.0056886547245085,-0.044882018119097,-0.032329469919205],[-0.0048575270920992,0.07883994281292,-0.013363267295063],[0.069115333259106,-0.015288816764951,-0.013710985891521]],[[-0.020461650565267,-0.057687278836966,0.077125556766987],[0.0043033012188971,0.060175739228725,-0.10803712904453],[0.010584462434053,-0.023025551810861,-0.0022344486787915]],[[0.060958672314882,0.038086969405413,-0.10728442668915],[-0.030907021835446,0.030341411009431,0.018674233928323],[0.04701380059123,0.052383493632078,-0.013753992505372]],[[-0.03200950846076,0.046308279037476,-0.082633502781391],[0.094329319894314,-0.044413238763809,-0.10068348795176],[0.011463055387139,-0.094900742173195,-0.023747926577926]],[[-0.035870727151632,0.059108357876539,0.028511494398117],[-0.012589859776199,0.065079040825367,-0.094813980162144],[0.074611701071262,0.063844196498394,0.099504023790359]],[[-0.05745081230998,0.036315377801657,0.034756150096655],[-0.14596647024155,-0.011960719712079,0.081560663878918],[-0.065123811364174,-0.013085947372019,0.032840196043253]],[[0.018449848517776,0.019294211640954,-0.0016114641912282],[-0.16322320699692,0.026039937511086,-0.0080378483980894],[-0.024402651935816,-0.10302913188934,0.021792579442263]],[[-0.00055002886801958,-0.010196018964052,0.112752340734],[0.11804957687855,-0.010912755504251,0.065783903002739],[-0.00078153202775866,0.12268277257681,0.10276489704847]],[[0.031895123422146,-0.029221277683973,-0.078308343887329],[0.062826551496983,0.083884701132774,-0.039884004741907],[0.091950356960297,-0.047720775008202,0.062303725630045]],[[0.10581698268652,-0.1092215180397,0.22677606344223],[-0.03919879347086,-0.092438437044621,-0.091065295040607],[0.043607175350189,0.0054478598758578,-0.068651810288429]],[[0.015081522986293,0.069517493247986,0.046646390110254],[0.029939709231257,-0.027231900021434,0.042678616940975],[0.045519318431616,0.023334629833698,0.043303795158863]],[[0.058675721287727,0.029120268300176,-0.16648133099079],[-0.085731104016304,0.014524192549288,0.069072470068932],[-0.015369248576462,0.095739528536797,-0.11231466382742]],[[0.073502235114574,0.028114687651396,-0.063716158270836],[0.051226671785116,0.070612162351608,-0.035363916307688],[-0.061905596405268,0.015736339613795,0.02969136275351]]],[[[0.031550902873278,-0.060101345181465,0.037129268050194],[-0.034564904868603,0.033493675291538,0.10570387542248],[0.032781217247248,-0.016114965081215,0.024594634771347]],[[0.074019007384777,0.01323979627341,-0.028754120692611],[-0.047353398054838,-0.062131904065609,-0.041782509535551],[0.1281391531229,-0.021990943700075,-0.050480611622334]],[[-0.2462751865387,0.064956404268742,-0.083528257906437],[-0.078381963074207,-0.1050686314702,-0.10929245501757],[0.01309432182461,-0.090279117226601,0.043027587234974]],[[-0.012422081083059,0.0057162968441844,-0.065969325602055],[-0.14461082220078,0.029745047912002,-0.037124883383512],[0.0038932994939387,-0.038882341235876,-0.1876098960638]],[[-0.02452727407217,0.056039787828922,0.033657647669315],[0.063946850597858,-0.090814359486103,-0.15116336941719],[-0.041122030466795,0.052221491932869,0.023098604753613]],[[-0.026539396494627,-0.053170599043369,-0.010146041400731],[0.031681258231401,-0.019712183624506,-0.046301506459713],[-0.089000701904297,-0.029462547972798,-0.088151127099991]],[[6.7176864831708e-05,0.047680348157883,-0.14336995780468],[-0.09927524626255,0.026232330128551,-0.024319550022483],[0.15719750523567,-0.0024510947987437,-0.044680897146463]],[[0.01189186796546,0.10449041426182,-0.048751246184111],[-0.097452417016029,0.052538961172104,-0.056017477065325],[0.031338103115559,-0.05617755278945,0.0065539279021323]],[[-0.099776424467564,-0.024783747270703,-0.16070006787777],[-0.020122868940234,0.06382928788662,-0.21836198866367],[0.04713623970747,0.1256507486105,0.060986142605543]],[[0.040536664426327,-0.093739852309227,-0.074126727879047],[0.0093005737289786,-0.054481294006109,0.0032053275499493],[-0.022267885506153,0.016577599570155,-0.11110191047192]],[[-0.0065430859103799,-0.051919855177402,0.15891878306866],[0.01906381174922,0.017552156001329,-0.0028681557159871],[0.024693455547094,-0.11015597730875,-0.1331053674221]],[[0.13170465826988,-0.14100021123886,0.024957738816738],[0.037454325705767,-0.024848634377122,-0.058473519980907],[0.072932511568069,-0.005224003456533,-0.10708913952112]],[[-0.027216847985983,0.0080431886017323,-0.059410318732262],[0.038770873099566,-0.040544483810663,0.00045586444321088],[-0.077520214021206,0.036355398595333,0.09590969979763]],[[0.070230424404144,-0.15036971867085,0.033346891403198],[0.087932601571083,0.050361834466457,0.006643870845437],[0.16250781714916,-0.064160495996475,-0.03310964256525]],[[0.10343137383461,-0.039216507226229,0.055177692323923],[0.10804596543312,-0.045697070658207,-0.089234434068203],[0.12696832418442,0.04604709893465,-0.067947179079056]],[[0.069754563271999,-0.044910006225109,-0.2276239991188],[0.15360216796398,0.082408152520657,-0.10454581677914],[-0.011252806521952,0.010088259354234,-0.058076024055481]],[[-0.056338671594858,-0.10150749236345,-0.10757016390562],[-0.1012190580368,-0.024020941928029,0.060090366750956],[0.053595371544361,-0.02311259880662,0.1843024790287]],[[0.031854707747698,0.07525410503149,-0.05620701611042],[0.10746300965548,0.077662013471127,-0.054397389292717],[0.0071565485559404,-0.060576435178518,-0.080929055809975]],[[0.00060235854471102,-0.12693123519421,0.15275931358337],[0.060057435184717,-0.11824671179056,0.048934400081635],[0.0058383443392813,-0.089823164045811,0.016236977651715]],[[-0.090612106025219,-0.10412187874317,0.017648883163929],[0.12630933523178,0.079838626086712,-0.032130040228367],[-0.0014513646019623,-0.030470630154014,-0.17876869440079]],[[0.096182577311993,0.06346507370472,0.07957362383604],[-0.051320761442184,0.003714733524248,-0.078243911266327],[0.050137341022491,0.060772214084864,0.12936788797379]],[[-0.060668338090181,-0.034056171774864,-0.015280931256711],[0.026302311569452,0.010999976657331,-0.015495566651225],[-0.00016386977222282,-0.034113708883524,-0.0024159837048501]],[[-0.20661416649818,0.02232813835144,0.014530882239342],[-0.050221495330334,-0.049395434558392,-0.10707744210958],[-0.0047304732725024,0.027125248685479,0.051053892821074]],[[-0.078842833638191,-0.039746228605509,0.33146291971207],[0.092424042522907,0.040735367685556,-0.035821169614792],[-0.056593984365463,0.092676773667336,-0.062506079673767]],[[-0.10287773609161,0.11668940633535,0.14124485850334],[0.042717516422272,0.028720756992698,0.028436135500669],[0.17436994612217,-0.033444315195084,0.013092164881527]],[[-0.021849883720279,0.058507744222879,-0.015253003686666],[-0.049753349274397,-0.027235368266702,0.10790767520666],[0.062195472419262,-0.037539646029472,-0.070758953690529]],[[-0.030842617154121,0.10293121635914,-0.14004354178905],[-0.12245106697083,0.077461153268814,-0.045277070254087],[-0.035434246063232,0.049472723156214,-0.014294300228357]],[[0.096095323562622,0.13605466485023,-0.12904851138592],[-0.12225510179996,0.1424865424633,-0.23142123222351],[-0.044217184185982,-0.048866372555494,0.026092885062099]],[[0.044992100447416,0.0091756721958518,-0.015585022978485],[-0.07411190867424,0.046280033886433,0.10080436617136],[-0.062561966478825,-0.094186179339886,-0.060735370963812]],[[0.11964415758848,0.044080447405577,-0.035478644073009],[-0.05071485042572,-0.042567059397697,-0.089347392320633],[-0.1110355630517,0.0015114702982828,-0.0084234215319157]],[[0.12699230015278,0.0070535042323172,-0.18492117524147],[0.0060219820588827,-0.10772817581892,-0.078595168888569],[0.0012893865350634,0.10079185664654,-0.13038973510265]],[[0.16607396304607,0.05457592010498,0.17952534556389],[0.14510379731655,0.0018059130525216,0.035314567387104],[-0.042910326272249,0.00056430243421346,-0.038612961769104]],[[-0.010365717113018,-0.12373068183661,0.23172700405121],[0.13188324868679,-0.10380785912275,0.061256356537342],[0.1030301079154,-0.077688984572887,-0.017733050510287]],[[0.12966097891331,0.12424007058144,-0.074083916842937],[-0.065974086523056,-0.013018073514104,0.11218976229429],[-0.019385099411011,-0.081237688660622,-0.032031677663326]],[[0.12477697432041,-0.0069671785458922,0.039797231554985],[-0.12717939913273,-0.00082159729208797,-0.13850601017475],[0.11827740818262,-0.042341414839029,-0.083515904843807]],[[-0.032307673245668,-0.02946868352592,-0.023487260565162],[0.02383528649807,0.03872999548912,0.05869597569108],[-0.0054009826853871,-0.011686897836626,0.063302375376225]],[[0.025492584332824,-0.12722800672054,-0.084217339754105],[0.20016556978226,0.13244922459126,0.19285544753075],[0.037711147218943,-0.12128004431725,0.12855181097984]],[[0.005289894528687,-0.12677709758282,0.024065477773547],[0.089617632329464,0.057185132056475,-0.025068450719118],[0.059100966900587,-0.042524632066488,-0.024926638230681]],[[-0.069164648652077,0.050369370728731,-0.043105911463499],[-0.10489249974489,-0.00059603695990518,0.032879747450352],[-0.048818591982126,-0.046698525547981,-0.18192958831787]],[[-0.09507142752409,-0.14422056078911,-0.006801110226661],[0.1482789516449,0.0068245586007833,-0.058773454278708],[0.082840643823147,0.10148555785418,-0.12454360723495]],[[-0.031896032392979,-0.076319076120853,-0.037942633032799],[-0.044918023049831,-0.073709636926651,-0.02140755392611],[0.039930287748575,0.015677276998758,-0.13114750385284]],[[-0.09598545730114,-0.013519224710763,-0.10143758356571],[-0.0061941356398165,0.0013796465937048,-0.0098086958751082],[0.097068123519421,-0.043318554759026,0.038093652576208]],[[0.017582269385457,-0.098485618829727,0.0044198576360941],[-0.058045018464327,-0.061065934598446,-0.038665324449539],[0.038466453552246,0.073788218200207,-0.072316266596317]],[[0.074579000473022,-0.076841652393341,0.074273191392422],[0.068324036896229,0.0055559077300131,-0.044704589992762],[0.17516253888607,-0.044909872114658,0.012271858751774]],[[-0.19711068272591,-0.23200950026512,-0.069403037428856],[0.05391077324748,-0.14558075368404,-0.19629868865013],[-0.10854016244411,-0.076898500323296,-0.068436674773693]],[[-0.073699429631233,-0.074264571070671,-0.073896430432796],[0.0060276258736849,-0.13570947945118,-0.021700585260987],[0.060215853154659,0.057164058089256,0.027266582474113]],[[-0.12772673368454,-0.060314446687698,0.032087907195091],[0.036530014127493,-0.032814614474773,0.0073864739388227],[-0.080325931310654,-0.033189233392477,0.016244759783149]],[[-0.0019904226064682,-0.012931938283145,-0.055313773453236],[0.081241481006145,-0.042467579245567,0.050180360674858],[0.024196336045861,-0.052822563797235,0.15474018454552]],[[0.035032730549574,-0.02795703150332,0.14617919921875],[-0.0019697179086506,0.0051019745878875,0.076784946024418],[-0.12038812041283,-0.07009544223547,0.046375721693039]],[[0.0060999030247331,0.091219425201416,0.062803961336613],[-0.10653781145811,-0.033759463578463,0.11638557910919],[-0.045348223298788,-0.012899983674288,0.11346960067749]],[[0.050008445978165,0.1033238619566,0.0033234190195799],[-0.096903830766678,0.0050779106095433,-0.12141349166632],[-0.17762349545956,-0.0027853203937411,-0.036497205495834]],[[-0.10622741281986,-0.068012945353985,-0.19095440208912],[0.0075949048623443,0.024943629279733,0.15934897959232],[0.020555732771754,0.022804241627455,-0.0020562198478729]],[[0.02556879632175,0.009915042668581,0.036322701722383],[0.13014054298401,0.12379856407642,-0.039007101207972],[-0.000540628854651,0.044088050723076,-0.20737819373608]],[[-0.034046433866024,-0.07315368950367,0.15216463804245],[0.015973187983036,-0.038030464202166,-0.068813540041447],[-0.04006864875555,-0.072601765394211,-0.12252008169889]],[[-0.021541401743889,-0.072737023234367,-0.057482302188873],[-0.055034972727299,-0.0060606468468904,-0.020175561308861],[-0.10019937157631,0.0016956981271505,0.12578648328781]],[[-0.050741393119097,-0.068886153399944,-0.049020413309336],[-0.1152910515666,-0.093215003609657,0.11110933870077],[-0.095228813588619,0.083041749894619,-0.088800333440304]],[[-0.067579917609692,0.017697149887681,0.070932529866695],[0.063711978495121,-0.04606569185853,0.0090472362935543],[-0.039901535958052,0.016286604106426,0.047833703458309]],[[-0.078163504600525,0.076400458812714,0.045094400644302],[-0.088585808873177,-0.050757247954607,-0.15133039653301],[0.050956755876541,-0.046745993196964,0.031336542218924]],[[0.061404280364513,0.036709789186716,-0.013962267898023],[0.056492622941732,0.039529446512461,0.044310908764601],[0.047998651862144,-0.050789754837751,0.15716429054737]],[[0.11413730680943,-0.01532543823123,0.056946035474539],[0.14861759543419,0.096475437283516,0.076101221144199],[-0.037853874266148,-0.17725098133087,0.12018097937107]],[[0.0094395177438855,-0.089425921440125,-0.0076069650240242],[-0.015673840418458,-0.095885947346687,-0.035274758934975],[-0.083693735301495,-0.061070248484612,-0.034317992627621]],[[-0.060395892709494,-0.077356085181236,-0.085343278944492],[-0.14134998619556,-0.0035176880192012,-0.035785011947155],[0.094530560076237,-0.020093562081456,-0.2293216586113]],[[0.098075844347477,-0.12436866015196,-0.074545003473759],[0.074790127575397,-0.059557694941759,0.0036582055035979],[-0.095882125198841,0.073996551334858,0.059699911624193]],[[0.0042817224748433,-0.11009643226862,0.0045644347555935],[0.013577654957771,0.0050522005185485,0.095037505030632],[-0.03672881051898,-0.0090706562623382,-0.081827685236931]]],[[[-0.077684499323368,0.14372938871384,-0.010516472160816],[-0.033710539340973,0.10375863313675,-0.098863743245602],[0.032577704638243,-0.070081301033497,-0.033169507980347]],[[0.025905916467309,0.12399195879698,-0.054126486182213],[0.091529928147793,-0.058110993355513,0.016527149826288],[-0.013357589952648,0.1063736602664,0.046687979251146]],[[-0.066885337233543,-0.066989250481129,-0.10356209427118],[0.014204576611519,0.022866187617183,-0.01195308752358],[0.040305722504854,-0.087527558207512,-0.096495077013969]],[[0.038072917610407,0.1323493719101,-0.1744197756052],[-0.0050840936601162,0.062636740505695,0.14878307282925],[-0.019282119348645,-0.098768010735512,0.09815438836813]],[[-0.078303344547749,-0.025759348645806,-0.050205789506435],[-0.088047467172146,-0.027812171727419,0.042309358716011],[-0.014435374177992,-0.069040611386299,-0.08258880674839]],[[-0.067432262003422,-0.054907940328121,-0.041359756141901],[0.098758868873119,0.0016669791657478,-0.042680814862251],[-0.048802554607391,0.080230951309204,0.005032058339566]],[[-0.016246937215328,-0.021884366869926,0.12211210280657],[0.069631345570087,-0.095722489058971,0.032629616558552],[0.1003709807992,0.055475998669863,0.021908720955253]],[[0.091715849936008,0.072250232100487,0.0066870185546577],[0.028643390163779,0.0066367527469993,0.068319708108902],[0.035230319947004,0.074688799679279,0.041216384619474]],[[0.031894661486149,0.042213771492243,0.069256864488125],[0.084044590592384,0.0054572434164584,0.017614623531699],[-0.085344456136227,0.031133381649852,0.12136912345886]],[[-0.16028119623661,-0.012779015116394,-0.070737242698669],[-0.14723140001297,0.022156301885843,-0.087308585643768],[0.00054365338291973,0.020324787124991,0.088612526655197]],[[0.0067912749946117,0.024676943197846,-0.16988667845726],[0.022826546803117,0.075902454555035,0.0028711506165564],[-0.046683859080076,-0.16162814199924,-0.12633976340294]],[[-0.055437956005335,0.039825432002544,-0.097607664763927],[-0.15324087440968,-0.037764854729176,0.075930304825306],[0.10784678161144,-0.010055622085929,-0.0063969632610679]],[[0.058224748820066,0.0082144159823656,-0.014633439481258],[-0.027422772720456,-0.025139596313238,0.048075322061777],[0.0057384530082345,-0.040760241448879,0.011006014421582]],[[0.18802954256535,0.16914673149586,-0.011331979185343],[-0.097883068025112,0.013877644203603,0.020966837182641],[-0.026212278753519,0.054142415523529,0.14257031679153]],[[0.014260495081544,-0.02742051333189,0.01446928922087],[0.088609926402569,-0.024905759841204,0.031853068619967],[-0.072770118713379,-0.056758649647236,-0.010568630881608]],[[0.082698985934258,-0.048875577747822,0.021861152723432],[-0.054693847894669,-0.071596071124077,0.031251456588507],[0.042973168194294,-0.044498510658741,0.086188599467278]],[[-0.15721797943115,0.20669700205326,-0.024672251194715],[-0.0028919468168169,-0.14719507098198,-0.0065110689029098],[0.082235656678677,0.04313437640667,-0.046021964401007]],[[0.002826809650287,0.070439018309116,-0.10783633589745],[0.023545432835817,0.1278108805418,0.15764625370502],[0.018395539373159,0.049375914037228,0.026788106188178]],[[0.091207414865494,0.083574190735817,-0.043540999293327],[0.021051624789834,0.027288289740682,-0.10799869894981],[0.056433990597725,-0.021516144275665,-0.0091421324759722]],[[0.027486942708492,-0.11681923270226,-0.00014712871052325],[-0.0097157834097743,0.016110790893435,0.026866186410189],[-0.0013596855569631,-0.012602372094989,0.008759225718677]],[[0.042132180184126,-0.19326481223106,-0.017574125900865],[-0.10117257386446,0.085363499820232,-0.041927557438612],[0.01841788738966,0.038770735263824,0.11565043777227]],[[0.0045426040887833,0.10000593215227,0.0051812818273902],[-0.010421709157526,-0.082660563290119,-0.038123905658722],[0.0095221418887377,-0.030649354681373,-0.023324903100729]],[[0.033901639282703,-0.071729317307472,0.018507795408368],[0.16837711632252,0.022037986665964,-0.048044111579657],[-0.029067311435938,0.02122369594872,-0.073890373110771]],[[0.0051618027500808,0.096982054412365,0.050968293100595],[-0.073378764092922,-0.041002236306667,-0.0015866146422923],[0.015464461408556,0.024191865697503,0.19384126365185]],[[0.047284051775932,0.17152039706707,0.14953956007957],[0.0055990214459598,-0.019893201068044,0.0093905311077833],[0.0046047051437199,0.15162406861782,0.12017221003771]],[[-0.024434551596642,-0.082293190062046,-0.023989012464881],[-0.0012064216425642,0.052583672106266,0.068945683538914],[-0.018845761194825,-0.020612046122551,0.022861640900373]],[[0.13961660861969,0.073220975697041,0.060841709375381],[0.054727051407099,-0.054497715085745,-0.06963399797678],[-0.052634127438068,0.03457310795784,-0.12535646557808]],[[-0.14999677240849,-0.16225384175777,-0.03980640694499],[0.018353551626205,0.020606631413102,0.033967789262533],[0.042875893414021,0.039734799414873,-0.028341030701995]],[[-0.093765370547771,-0.081353068351746,-0.081884779036045],[0.0018992777913809,-0.032203681766987,-0.17554162442684],[-0.090402863919735,0.051536735147238,-0.013278050348163]],[[0.097324222326279,-0.047129236161709,-0.023762498050928],[-0.070467866957188,-0.077527977526188,0.131491497159],[0.17865510284901,-0.018579417839646,-0.18344704806805]],[[-0.064595766365528,-0.066294573247433,0.09966729581356],[-0.064308561384678,-0.11666102707386,-0.1204070597887],[-0.070777207612991,0.034032348543406,0.029159078374505]],[[-0.063913613557816,0.0010311556980014,-0.045602463185787],[-0.010816341266036,-0.039246879518032,-0.083801940083504],[0.047420348972082,0.057729884982109,0.0077813039533794]],[[0.071644082665443,0.11055935919285,-0.13274367153645],[0.039865795522928,0.066803567111492,-0.10054235905409],[-0.0061607244424522,0.042190577834845,0.019623070955276]],[[-0.15514376759529,-0.057235974818468,-0.22355608642101],[-0.0092416880652308,0.039366587996483,-0.09698674082756],[-0.011175786145031,0.085128158330917,-0.13290365040302]],[[-0.055910497903824,0.0070496117696166,-0.019127788022161],[0.060166344046593,-0.091740682721138,0.086303763091564],[0.18935497105122,0.05972982943058,0.0064279190264642]],[[-0.027908289805055,0.011747133918107,0.16585139930248],[0.055048793554306,0.026236895471811,0.023413427174091],[-0.14590640366077,0.031105078756809,0.069200709462166]],[[-0.074816197156906,0.058585308492184,0.08714634180069],[-0.010216822847724,0.04146147146821,-0.026631910353899],[-0.017758442088962,0.04279437661171,-0.045025814324617]],[[-0.017826357856393,-0.027242414653301,0.045375686138868],[-0.092613957822323,0.026808712631464,-0.089439749717712],[-0.070676028728485,-0.017502041533589,-0.10134425759315]],[[0.047710493206978,0.0052885254845023,0.00041545153362677],[0.090502485632896,0.057066425681114,0.04111747816205],[-0.11344590783119,0.013326226733625,0.026696620509028]],[[-0.060379859060049,0.022452684119344,-0.1364111751318],[-0.053154438734055,-0.15847162902355,-0.08264496922493],[0.042004536837339,0.11323535442352,0.012380706146359]],[[-0.10618367046118,-0.013378857634962,-0.13057860732079],[-0.10463365167379,-0.0017502011032775,-0.0053928019478917],[0.14609122276306,0.09420108050108,0.030674306675792]],[[-0.16920284926891,-0.12096209824085,-0.12786203622818],[0.077410213649273,0.064633399248123,-0.010357089340687],[0.058480110019445,0.087956219911575,-0.027339534834027]],[[0.1252623051405,0.11260325461626,-0.064186088740826],[0.077188439667225,0.10486238449812,0.042832668870687],[-0.12184362113476,-0.27560651302338,-0.13716912269592]],[[-0.082464747130871,0.016368839889765,-0.022402666509151],[-0.15218588709831,-0.14249950647354,-0.068278878927231],[0.071364842355251,0.11478880792856,0.051132794469595]],[[0.01256297994405,-0.024110479280353,0.076908081769943],[-0.001758603961207,-0.01192837394774,-0.014662801288068],[0.10508031398058,0.10461588948965,-0.028450643643737]],[[-0.055005587637424,-0.0076355412602425,0.026584923267365],[-0.019112890586257,0.11210072785616,-0.035366237163544],[-0.044567834585905,-0.15590085089207,-0.069467656314373]],[[-0.0075731580145657,-0.013082770630717,0.028853215277195],[0.054353300482035,-0.059898175299168,0.10254523158073],[-0.084164254367352,0.048522863537073,0.027807105332613]],[[0.043958954513073,-0.083896584808826,0.091624714434147],[-0.020316606387496,0.0099906623363495,-0.069612823426723],[-0.065878443419933,-0.12109085172415,0.012799369171262]],[[-0.15598909556866,-0.041134428232908,-0.088562488555908],[0.16217106580734,0.016563462093472,-0.049241174012423],[-0.18618334829807,-0.066404759883881,-0.075485944747925]],[[-0.093627378344536,-0.12795434892178,-0.029110653325915],[0.029956746846437,-0.09428084641695,-0.12201993912458],[0.058199469000101,0.12179352343082,0.050304345786572]],[[0.17053404450417,0.069256529211998,0.064339354634285],[0.0060731475241482,-0.085344918072224,-0.064532987773418],[-0.0022115472238511,-0.073799312114716,0.035245951265097]],[[0.073271833360195,0.089540883898735,-0.082140684127808],[-0.17027874290943,-0.080425687134266,-0.12730439007282],[-0.018268838524818,-0.030099961906672,0.0047581321559846]],[[-0.03435530140996,-0.13499090075493,0.026103597134352],[-0.10170624405146,0.074038624763489,0.1046209409833],[-0.052336070686579,-0.15091741085052,-0.19276416301727]],[[0.061922058463097,0.075376190245152,0.095756873488426],[-0.031524993479252,0.0015320663806051,0.038548450917006],[-0.12924371659756,-0.12420976161957,-0.03104037232697]],[[-0.029697336256504,-0.016789795830846,-0.069077521562576],[-0.024244593456388,0.088626757264137,0.10412026941776],[0.10949918627739,-0.028035998344421,-0.13165667653084]],[[-0.03838723897934,-0.060765746980906,-0.11901203542948],[-0.12021291255951,-0.086489245295525,-0.09705612808466],[0.10948204994202,0.012425256893039,0.092716000974178]],[[-0.18271115422249,0.0053790523670614,-0.0078568151220679],[-0.0048654051497579,0.016882790252566,-0.037049558013678],[0.15181764960289,-0.050579335540533,0.096105970442295]],[[-0.00097202631877735,-0.074398718774319,-0.071182489395142],[-0.069110102951527,-0.019648496061563,-0.11720246076584],[0.044356614351273,-0.076778545975685,-0.065813407301903]],[[0.057983014732599,0.016958920285106,0.026504078879952],[0.035606529563665,-0.027448354288936,0.0093854106962681],[0.059379935264587,-0.01582620665431,-0.028132045641541]],[[-0.030709758400917,0.066964082419872,0.00068935548188165],[0.041869506239891,0.04361804574728,0.020152641460299],[0.021652262657881,-0.050646621733904,0.092203937470913]],[[-0.0021875367965549,-0.099311880767345,0.14510563015938],[-0.043758641928434,0.014334607869387,0.065030872821808],[0.053957033902407,0.077828757464886,-0.10025143623352]],[[-0.053060721606016,-0.057748351246119,0.024016905575991],[0.072467111051083,-0.002626925939694,0.039438754320145],[0.038435608148575,0.013116362504661,-0.02704118937254]],[[0.076001822948456,0.027462804690003,0.18624702095985],[-0.13461674749851,-0.1811808347702,-0.0049658115021884],[0.025559589266777,0.091471657156944,-0.063716441392899]],[[0.050212908536196,-0.086573503911495,-0.022281663492322],[-0.018618138507009,0.043257817625999,0.001950039411895],[0.00045545471948572,0.01213735062629,-0.0027382834814489]]],[[[-0.0034288712777197,-0.09832077473402,-0.094772353768349],[-0.058805111795664,-0.10460843145847,-0.13694636523724],[0.078958220779896,-0.07492583990097,-0.060254968702793]],[[-0.088107913732529,-0.019169591367245,0.11833662539721],[-0.0080135371536016,0.0331115052104,0.075630262494087],[0.070061028003693,-0.063562788069248,0.077827371656895]],[[0.085204802453518,-0.033711511641741,0.092462837696075],[-0.077972546219826,-0.13704280555248,-0.052811440080404],[0.076549179852009,-0.10070076584816,-0.0666513890028]],[[0.013641033321619,-0.04343655705452,0.01298488304019],[0.055728085339069,-0.1326609402895,0.14159971475601],[-0.06914845854044,-0.037470083683729,-0.11780796200037]],[[-0.0029246383346617,0.0001676601532381,-0.12377151846886],[-0.084112964570522,-0.011734790168703,0.05330041795969],[-0.10892952233553,0.0036968414206058,0.081869356334209]],[[-0.06064135581255,-0.023998972028494,0.0042761960066855],[-0.089054971933365,-0.089554123580456,0.0053628054447472],[0.0077909911051393,0.015777746215463,0.013013689778745]],[[-0.081917501986027,-0.13878419995308,0.051219787448645],[0.038217630237341,-0.076620236039162,0.014489044435322],[0.010861480608582,0.094345711171627,0.014104320667684]],[[-0.046108886599541,0.0257324334234,-0.016158735379577],[0.051375094801188,0.054373905062675,0.061915002763271],[-0.048156477510929,0.13267271220684,-0.03968058526516]],[[0.0057117282412946,-0.088378973305225,0.10933421552181],[-0.11171270906925,0.039029605686665,0.081998094916344],[0.021526159718633,0.051866263151169,-0.21592128276825]],[[-0.005696936044842,0.0001174308345071,-0.13788558542728],[-0.025101689621806,0.011421100236475,-0.10212437063456],[-0.080532193183899,-0.049030892550945,-0.0067969872616231]],[[0.03313609957695,0.046679295599461,-0.053424686193466],[-0.062713302671909,0.11946254968643,0.01273010764271],[0.1047830209136,0.038382016122341,0.024846261367202]],[[-0.047064404934645,0.048076488077641,-0.19173862040043],[0.040574971586466,0.051169618964195,0.063626922667027],[0.067117057740688,0.0097527522593737,-0.093650154769421]],[[-0.11126931011677,-0.15307138860226,-0.080478861927986],[-0.02408904209733,-0.033357597887516,0.054682783782482],[0.062745675444603,0.024793431162834,0.01460148114711]],[[-0.13901829719543,0.042327705770731,0.059627432376146],[0.012562616728246,0.087715834379196,0.057378001511097],[0.041198924183846,-0.049336481839418,-0.00059535086620599]],[[0.088042832911015,-0.043015006929636,0.072572790086269],[0.033231072127819,-0.14513930678368,0.062164094299078],[0.17144587635994,-0.16263325512409,-0.054613057523966]],[[-0.002766479505226,0.040002509951591,0.083820573985577],[-0.054316073656082,-0.16512799263,0.031788390129805],[0.0078124715946615,-0.010659019462764,-0.035991389304399]],[[-0.067455805838108,-0.054311331361532,-0.020153159275651],[-0.061877489089966,-0.00482237059623,0.058176565915346],[0.064095467329025,-0.057024322450161,-0.12638522684574]],[[-0.078360259532928,-0.033080525696278,0.12201424688101],[0.025526249781251,-0.082069523632526,-0.188736140728],[-0.066386826336384,-0.15498746931553,-0.028949182480574]],[[-0.017577420920134,-0.097596295177937,-0.21603234112263],[-0.08524152636528,-0.063419230282307,-0.082519583404064],[-0.086502633988857,-0.012149436399341,0.062823422253132]],[[0.06958843767643,-0.053591139614582,-0.072362795472145],[-0.024296028539538,0.053132876753807,0.066502153873444],[-0.065787948668003,-0.017804784700274,0.089632220566273]],[[-0.045644350349903,0.014025208540261,-0.0081897713243961],[0.031806733459234,-0.11369071900845,0.018077852204442],[0.18343330919743,0.037801265716553,0.022156504914165]],[[-0.037015274167061,0.0057661631144583,0.038778580725193],[-0.049603600054979,-0.060806009918451,0.052255887538195],[-0.017769426107407,-0.014772203750908,-0.0065131890587509]],[[0.069937683641911,-0.13380907475948,-0.0055823577567935],[0.13192474842072,-0.072757124900818,0.05295630171895],[-0.009035668335855,-0.018729196861386,0.02886595018208]],[[0.076479122042656,-0.1542958766222,-0.11592020839453],[0.20502409338951,0.059106081724167,0.14118079841137],[0.086747795343399,-0.012653491459787,-0.042282294481993]],[[-0.045501556247473,-0.12398442625999,-0.055649232119322],[0.19098223745823,0.010645108297467,-0.040019351989031],[0.0050706807523966,-0.0097511168569326,-0.10660170763731]],[[-0.0020173671655357,0.063602082431316,0.054602492600679],[-0.020069336518645,-0.055838644504547,0.024400455877185],[-0.04753515124321,-0.025297665968537,0.021650478243828]],[[-0.0049560009501874,0.10924511402845,0.085378609597683],[0.099303342401981,0.018827952444553,0.073607169091702],[-0.0037691567558795,0.15661935508251,-0.057243138551712]],[[0.049709152430296,0.047979149967432,0.11830403655767],[-0.074339121580124,-0.16454793512821,-0.025561630725861],[0.036958243697882,0.067568130791187,-0.17394384741783]],[[-0.085366204380989,-0.08717930316925,-0.069349884986877],[0.084165774285793,-0.0076623219065368,-0.070114992558956],[-0.043079495429993,-0.055505733937025,-0.13754367828369]],[[0.061301037669182,0.10620544105768,0.20543372631073],[-0.072050467133522,0.046344805508852,-0.084493301808834],[0.011430149897933,-0.0079197278246284,-0.017967756837606]],[[-0.11888093501329,-0.14050917327404,0.042521264404058],[0.066075399518013,-0.083806715905666,0.10804057121277],[-0.0097168767824769,-0.070562653243542,-0.046818625181913]],[[-0.1107699945569,0.015578100457788,-0.052201814949512],[-0.021164106205106,0.11841873079538,0.01469620782882],[0.061348598450422,-0.078757405281067,-0.042020730674267]],[[0.045058514922857,-0.080538161098957,0.096006006002426],[-0.010314140468836,-0.022774234414101,0.10342118889093],[0.13231036067009,0.022000707685947,0.15061658620834]],[[-0.1132288724184,0.09711617231369,-0.10574419796467],[0.012884782627225,-0.056705404073,0.11774788796902],[0.012247228063643,-0.0924923568964,0.066045619547367]],[[0.067776724696159,0.022566087543964,-0.10272159427404],[-0.0460708104074,-0.059570051729679,0.013216983526945],[-0.20374158024788,-0.038736935704947,0.053978521376848]],[[0.16754220426083,0.11664474755526,-0.0038577727973461],[0.012735012918711,0.018016232177615,0.12177053838968],[-0.12000858038664,0.0013869050890207,0.022002477198839]],[[0.25831946730614,0.083863988518715,0.041207112371922],[-0.068793810904026,-0.035953033715487,0.061793759465218],[0.27114775776863,-0.071588233113289,-0.075272873044014]],[[0.028464904054999,0.020623471587896,-0.1483501046896],[-0.050064876675606,-0.012480353936553,0.041395980864763],[-0.012379830703139,-0.070373766124249,-0.087972566485405]],[[0.076947174966335,0.016756327822804,-0.033638451248407],[0.089050136506557,-0.075799144804478,-0.039542321115732],[-0.032176960259676,-0.1132323667407,-0.03045267984271]],[[-0.064896635711193,-0.066301740705967,0.0463912114501],[-0.026600018143654,-0.031379316002131,0.0089129284024239],[0.043347012251616,-0.02971033193171,0.0046746912412345]],[[-0.0030219403561205,0.03401406109333,0.020126746967435],[0.11702082306147,-0.016832910478115,-0.05298774689436],[-0.13974057137966,0.045768335461617,-0.13498382270336]],[[0.0023245555348694,0.023923045024276,-0.072571843862534],[-0.057582467794418,0.02135912142694,0.029343396425247],[-0.083413332700729,0.0031484754290432,0.072727479040623]],[[0.029943054541945,0.059653542935848,-0.043065760284662],[-0.077285341918468,0.021040389314294,-0.10770773142576],[-0.042356718331575,-0.0730100274086,-0.10647305101156]],[[-0.23599137365818,0.084356844425201,0.0038829799741507],[0.054968059062958,0.065452568233013,-0.039833009243011],[0.020585585385561,0.076097473502159,-0.16592442989349]],[[-0.063280671834946,0.021290535107255,0.072988048195839],[-0.20502956211567,0.0089631648734212,0.12665444612503],[-0.14723049104214,-0.0095920562744141,-0.14413633942604]],[[-0.023018512874842,-0.0059636575169861,0.087970666587353],[-0.027625875547528,0.055226061493158,0.044859196990728],[-0.052256565541029,-0.024481479078531,-0.038789048790932]],[[-0.0041487840935588,0.048103291541338,0.12516467273235],[0.023121703416109,-0.13392259180546,-0.012929495424032],[0.032417859882116,0.020323662087321,0.055417209863663]],[[-0.1499305665493,-0.11177667230368,0.10505681484938],[-0.068863905966282,-0.22565121948719,-0.046317510306835],[0.12569913268089,-0.086197033524513,0.069988556206226]],[[-0.016583487391472,-0.060806035995483,0.066007159650326],[0.1633608341217,-0.12759558856487,-0.04592951387167],[0.035689394921064,0.10398560017347,-0.12037396430969]],[[-0.092594303190708,0.11699950695038,0.0047476477921009],[-0.0083424262702465,0.042231097817421,-0.090764999389648],[0.065454550087452,-0.033518571406603,0.093330718576908]],[[-0.1005821749568,-0.038994058966637,0.086109787225723],[0.06920425593853,-0.017276814207435,0.1404442191124],[-0.16563002765179,-0.0413798391819,0.046285711228848]],[[0.016665883362293,-0.16416983306408,0.050669047981501],[-0.04835494235158,-0.22873614728451,0.069252490997314],[-0.00057881569955498,0.12121674418449,0.028407642617822]],[[-0.032054655253887,0.15175114572048,-0.013585542328656],[0.025311972945929,0.016810975968838,-0.08635987341404],[0.062621012330055,0.011124979704618,0.080948919057846]],[[-0.040605086833239,0.073649160563946,-0.08691243827343],[-0.013139246962965,0.054816104471684,0.040738195180893],[-0.21281352639198,-0.032681606709957,0.081022948026657]],[[0.029340818524361,-0.026076085865498,-0.12360412627459],[-0.03280571475625,0.019950959831476,-0.039766248315573],[-0.024672642350197,0.13203103840351,-0.091328285634518]],[[0.042946632951498,0.019708750769496,0.05597548186779],[-0.089980497956276,0.017953850328922,0.10651244968176],[-0.11749622970819,0.039900597184896,0.07673904299736]],[[0.034164424985647,-0.052569128572941,0.21333311498165],[-0.16446708142757,0.041921827942133,-0.090424157679081],[-0.044099442660809,-0.068101570010185,0.081779137253761]],[[0.068460047245026,0.038405302911997,0.056238755583763],[0.041621565818787,-0.13231624662876,0.0010698912665248],[-0.020118776708841,-0.12282647192478,-0.079629510641098]],[[0.0068039800971746,-0.07363286614418,-0.028026077896357],[0.053872030228376,0.084005698561668,0.077247329056263],[0.029698604717851,0.014942236244678,0.05612476542592]],[[0.030854314565659,0.098588719964027,-0.02993094548583],[0.0024337684735656,0.0086113214492798,0.028298588469625],[-0.22373574972153,0.01098358258605,-0.0044696675613523]],[[0.042172953486443,-0.015590171329677,0.092833906412125],[0.05505707487464,-0.1330222338438,0.1561833024025],[-0.019021073356271,-0.048082232475281,0.12480708956718]],[[-0.094656459987164,-0.044629506766796,-0.04483437538147],[-0.058325182646513,0.096005566418171,-0.035415038466454],[-0.0092683285474777,0.061233889311552,0.071853041648865]],[[-0.027780469506979,-0.029715968295932,-0.10880705714226],[0.0062423422932625,0.15595601499081,0.051981005817652],[-0.20314621925354,-0.011590619571507,0.1277307420969]],[[-0.0047142249532044,-0.021640948951244,0.097821302711964],[-0.20633974671364,-0.065558329224586,0.072912566363811],[-0.17344158887863,-0.013907860964537,-0.057813867926598]]],[[[0.064839705824852,0.033326305449009,-0.016492074355483],[0.0060176244005561,0.038758635520935,0.034097194671631],[-0.075941547751427,-0.16246409714222,0.066842503845692]],[[-0.015318749472499,-0.091308273375034,-0.060709185898304],[0.0084898192435503,-0.053159981966019,0.093362875282764],[-0.077634118497372,0.075750678777695,0.016459895297885]],[[-0.11425968259573,-0.069918505847454,-0.00049218896310776],[-0.13330256938934,0.086037315428257,-0.081500448286533],[0.041207060217857,0.024832371622324,-0.084042944014072]],[[0.026983166113496,-0.0025325710885227,-0.049096994102001],[-0.15468676388264,-0.087027095258236,0.050968065857887],[0.014077956788242,-0.063804589211941,-0.087249830365181]],[[-0.10844688117504,-0.18231904506683,-0.053508758544922],[0.043542731553316,0.001626961864531,-0.0067456886172295],[-0.10537768900394,0.018444171175361,0.028845530003309]],[[-0.086829319596291,-0.075946629047394,0.055375915020704],[-0.088306769728661,-0.019994558766484,-0.11549388617277],[0.035779859870672,-0.0418073348701,-0.044351678341627]],[[-0.05716335400939,-0.038952022790909,-0.048524856567383],[-0.041611019521952,0.043972160667181,0.056228451430798],[0.13569706678391,0.050945691764355,0.07000033557415]],[[0.1332324296236,0.030872466042638,0.01963815651834],[0.049672067165375,0.052469182759523,0.1093490421772],[-0.011780679225922,0.074441812932491,0.14716793596745]],[[-0.12689635157585,-0.038209766149521,-0.044197004288435],[-0.023864468559623,-0.065824516117573,-0.075215026736259],[-0.077464744448662,-0.0038228973280638,-0.029416508972645]],[[-0.027795327827334,-0.12310764938593,0.072847679257393],[0.073997661471367,-0.13380789756775,-0.084508486092091],[-0.0071253976784647,0.1456922441721,0.0081449961289763]],[[-0.063242889940739,0.010812412947416,0.022601181641221],[-0.013334862887859,-0.056648850440979,-0.026991624385118],[-0.1196411922574,-0.20196618139744,-0.059537597000599]],[[-0.025330735370517,0.02250831015408,-0.01762886531651],[0.041120585054159,0.039884213358164,-0.088002882897854],[0.070162713527679,-0.040681477636099,-0.066634982824326]],[[0.031228333711624,-0.021639194339514,-0.084838554263115],[0.088612444698811,0.11126581579447,-0.046370178461075],[-0.040637739002705,0.022170541808009,0.053220104426146]],[[0.10217184573412,0.2501115500927,0.040346384048462],[0.10575996339321,0.024105193093419,0.032846733927727],[0.038551360368729,-0.12790276110172,0.14831563830376]],[[-0.00026866927510127,-0.085191145539284,-0.058127511292696],[-0.021031314507127,-0.1617439687252,0.014957589097321],[0.091581977903843,0.0036501155700535,0.031865444034338]],[[-0.021506302058697,-0.050115957856178,0.046722419559956],[-0.046870213001966,-0.11592136323452,-0.14494040608406],[-0.065820388495922,-0.096218064427376,-0.19541054964066]],[[-0.0074975728057325,0.095467522740364,-0.04441574960947],[0.12304779142141,0.021880047395825,-0.0042519550770521],[-0.015040259808302,-0.011018574237823,0.03573139756918]],[[-0.059269823133945,0.0045860223472118,0.2114159911871],[-0.019005250185728,0.015480815432966,0.044248662889004],[-0.053063467144966,-0.086866803467274,0.1002691835165]],[[-0.0030576998833567,-0.20253260433674,0.018410226330161],[0.080268263816833,-0.039708841592073,-0.034069810062647],[-0.17170189321041,0.03023824095726,0.0068469406105578]],[[0.087049409747124,0.06530037522316,-0.042451798915863],[-0.10916811972857,-0.08592014759779,0.01118067279458],[0.00079371040919796,0.085519194602966,-0.056284364312887]],[[0.15149217844009,-0.071242675185204,-0.0041610328480601],[-0.0057121943682432,0.091595008969307,0.041077207773924],[-0.061524242162704,-0.015243025496602,0.11407500505447]],[[0.00039025594014674,-0.045202814042568,-0.087475650012493],[0.020607406273484,0.018866682425141,-0.042137160897255],[-0.056088827550411,0.044656198471785,0.033730678260326]],[[-0.033022966235876,0.049189545214176,-0.0097894603386521],[-0.093388341367245,0.020640088245273,-0.11101812124252],[0.029771968722343,0.099009566009045,-0.087144888937473]],[[0.11201998591423,0.093008294701576,0.014755770564079],[0.1050825715065,-0.0084714768454432,-0.014588831923902],[0.10113397240639,0.10672182589769,0.033498875796795]],[[0.020510733127594,-0.25899344682693,-0.076787896454334],[-0.13389256596565,-0.090836971998215,0.0099648106843233],[0.043060146272182,-0.069605946540833,0.03641115128994]],[[-0.012998159974813,0.043650131672621,-0.025894934311509],[-0.048184726387262,-0.03327726572752,-0.0037315066438168],[0.024006938561797,-0.027096377685666,0.06295719742775]],[[-0.11238854378462,0.073551520705223,-0.0014539562398568],[-0.05334510281682,-0.047095023095608,0.038534037768841],[-0.1310034096241,-0.04642054438591,0.0033610195387155]],[[-0.050525866448879,-0.0026302998885512,-0.076538257300854],[0.070599645376205,0.10556508600712,-0.18563561141491],[-0.1099074408412,0.071186371147633,-0.023285195231438]],[[-0.045017831027508,-0.029402878135443,-0.039934579282999],[0.059033270925283,0.029296452179551,0.058721501380205],[0.07607688754797,0.10159090906382,0.027861848473549]],[[-0.022324070334435,-0.021064814180136,0.072667047381401],[-0.11605498939753,0.012802060693502,-0.039420153945684],[-0.11133486777544,-0.042644634842873,-0.12123370170593]],[[-0.23918673396111,0.069231137633324,0.0998215675354],[-0.099865913391113,-0.028774973005056,0.020184518769383],[0.00018305421690457,0.079580165445805,-0.050137903541327]],[[-0.0051257982850075,0.11676113307476,0.041764803230762],[0.092002086341381,-0.052234247326851,-0.089141860604286],[0.13513427972794,0.15867881476879,0.15107391774654]],[[0.051554657518864,-0.020780134946108,-0.020172242075205],[-0.027302406728268,0.0075827622786164,-0.089813202619553],[-0.1423351764679,0.028694668784738,-0.058149933815002]],[[0.001629167702049,0.040843613445759,-0.010781971737742],[0.008434671908617,-0.077312096953392,-0.053562518209219],[-0.05255476012826,-0.064178019762039,-0.11603710800409]],[[-0.11382773518562,-0.058354735374451,0.021108755841851],[-0.17089647054672,-0.081336624920368,-0.025142390280962],[0.14511233568192,0.15205164253712,0.16518771648407]],[[0.13629284501076,-0.03651637583971,-0.0034782341681421],[0.0081660309806466,0.0413933172822,0.0028928415849805],[0.0011795564787462,0.048239294439554,0.0056457980535924]],[[-0.03767953068018,0.15635226666927,0.11899590492249],[-0.014080168679357,-0.1003205254674,-0.034846104681492],[-0.067499496042728,0.048760272562504,0.038083229213953]],[[0.18584078550339,-0.097452715039253,-0.03134822845459],[0.070431113243103,-0.11965050548315,0.0067507275380194],[0.061068683862686,-0.019729651510715,0.10943564772606]],[[-0.19124795496464,-0.040445830672979,-0.022992696613073],[0.052343621850014,-0.018347857519984,0.0083894859999418],[0.079520158469677,-0.094187557697296,-0.094658046960831]],[[-0.018442243337631,-0.035875517874956,-0.037017688155174],[0.073015108704567,0.035207249224186,0.17092624306679],[0.033394776284695,-0.0074070459231734,0.010500125586987]],[[-0.11008749902248,-0.035850029438734,-0.022973891347647],[-0.12893986701965,-0.14844153821468,0.046535160392523],[-0.08853967487812,-0.043823663145304,-0.0091520911082625]],[[-0.013349869288504,-0.12586519122124,-0.0075163580477238],[-0.021466769278049,0.016432924196124,-0.089683704078197],[-0.063510432839394,0.14091263711452,0.10997817665339]],[[-0.04635563492775,0.17574933171272,0.063261218369007],[0.014871804043651,-0.098424479365349,-0.20265239477158],[0.086850449442863,0.12105243653059,-0.042620334774256]],[[-0.03332531824708,0.015089113265276,0.051168415695429],[-0.20759135484695,-0.16742837429047,0.038106061518192],[0.14607901871204,0.060295309871435,0.070983693003654]],[[-0.12900643050671,0.0055672531016171,-0.11258474737406],[-0.03816270083189,-0.20776955783367,0.042581550776958],[-0.016295844689012,-0.13941964507103,-0.0045612431131303]],[[-0.065899379551411,-0.04482190310955,-0.12320023030043],[0.0053194547072053,-0.04214333742857,0.041904922574759],[0.27799543738365,0.097689352929592,-0.042065732181072]],[[0.14122965931892,-0.097607605159283,-0.077913574874401],[0.071937918663025,-0.10882516205311,0.038682851940393],[-0.052128221839666,-0.066173978149891,-0.018000949174166]],[[0.085820108652115,-0.065061308443546,-0.001735107623972],[-0.014177957549691,0.0085069518536329,0.082456544041634],[-0.034889791160822,-0.0093699460849166,-0.13289548456669]],[[0.013578243553638,0.023554122075438,0.057448908686638],[-0.038606319576502,-0.001334794331342,-0.071773923933506],[-0.054963961243629,-0.0047324602492154,0.0061744707636535]],[[0.03052488155663,-0.0043146540410817,-0.096336081624031],[-0.2654949426651,0.094811074435711,-0.010675225406885],[0.23095950484276,0.097209572792053,0.17040412127972]],[[0.15622219443321,0.1801261305809,-0.033073745667934],[-0.015830844640732,-0.062420953065157,-0.037146106362343],[-0.066913582384586,-0.11024785786867,0.054912738502026]],[[0.095408126711845,-0.032207239419222,0.10959541797638],[-0.012061085551977,-0.010058029554784,0.025636594742537],[-0.20033876597881,0.10522461682558,-0.0050143748521805]],[[0.10493072867393,-0.096440024673939,0.15470691025257],[0.0023622894659638,-0.051136624068022,-0.078789614140987],[-0.16076968610287,-0.1197806969285,-0.14842197299004]],[[0.033042080700397,-0.010047267191112,0.1447743922472],[-0.02866673655808,0.069662503898144,0.092856362462044],[0.027523815631866,0.076835907995701,0.18493102490902]],[[-0.037972431629896,-0.078439868986607,-0.071170710027218],[-0.00086450565140694,0.014469330199063,0.053029865026474],[-0.11115376651287,-0.10212155431509,-0.032205373048782]],[[-0.00082530599320307,0.11091885715723,-0.057874768972397],[-0.010004891082644,-0.024450728669763,-0.041972283273935],[-0.055409461259842,0.11997371912003,0.073573730885983]],[[0.035247333347797,-0.12896759808064,0.10705132782459],[-0.070506915450096,-0.020548550412059,0.002492779167369],[-0.05767372623086,0.077448427677155,0.097877085208893]],[[0.021217321977019,-0.15136781334877,0.010384408757091],[0.14138785004616,0.029748963192105,-0.024289833381772],[-0.022491406649351,-0.097267657518387,-0.029263699427247]],[[0.12558333575726,-0.02026455104351,0.059188947081566],[0.010259262286127,0.070369951426983,0.054299488663673],[-0.066102810204029,0.0040786834433675,0.063181959092617]],[[0.15047279000282,-0.065421670675278,0.038381110876799],[0.16673146188259,0.20292070508003,0.051845025271177],[0.10007036477327,-0.026718750596046,0.033659923821688]],[[0.0014572809450328,-0.0232297424227,0.0063607892952859],[-0.07310076802969,-0.020144749432802,-0.0004101715167053],[-0.082644693553448,-0.018255151808262,-0.0017797435866669]],[[-0.042967986315489,-0.063363954424858,0.030355801805854],[0.023009430617094,-0.034195337444544,-0.038123615086079],[0.098998971283436,0.10857417434454,0.055482622236013]],[[-0.090720698237419,-0.20536509156227,0.019782088696957],[-0.04383247718215,0.006144205108285,0.042281605303288],[-0.082236394286156,0.10459143668413,0.046330310404301]],[[-0.024591533467174,0.033699780702591,0.061252728104591],[0.078768290579319,-0.07028666883707,-0.13398414850235],[-0.030947703868151,0.06143744289875,-0.086469702422619]]],[[[0.13302385807037,0.0067640468478203,0.084618367254734],[-0.082418665289879,-0.11031572520733,-0.11831575632095],[-0.026733843609691,0.043904177844524,0.016114290803671]],[[0.018461851403117,-0.10315392911434,-0.051195863634348],[-0.15310934185982,-0.020530864596367,-0.019257161766291],[0.031063968315721,0.046437833458185,-0.022963874042034]],[[-0.12172950059175,0.083269968628883,0.14410316944122],[-0.17475338280201,0.040504831820726,-0.16355180740356],[-0.1531343460083,-0.1807436645031,-0.21329744160175]],[[-0.01921814493835,0.088625907897949,0.10626143217087],[0.0010213654022664,-0.02761571854353,0.16017390787601],[-0.055241599678993,0.051496110856533,0.036606539040804]],[[-0.11399129033089,-0.031317703425884,0.069181151688099],[-0.14094254374504,0.019294777885079,-0.087788544595242],[-0.1358608007431,0.088570199906826,0.026127638295293]],[[-0.0041792970150709,-0.0056819957681,-0.10144756734371],[-0.066483192145824,-0.10889413207769,-0.053242042660713],[-0.092906937003136,-0.17026591300964,0.014170781709254]],[[-0.23587517440319,-0.057014651596546,0.092850431799889],[-0.17485511302948,-0.087149403989315,0.0088612604886293],[0.022409612312913,0.16615462303162,0.18431843817234]],[[0.03107943572104,-0.11107400804758,0.10755059868097],[0.016650550067425,-0.10553129762411,0.079854659736156],[0.069503039121628,-0.036872662603855,0.010487649589777]],[[0.083702936768532,-0.082868784666061,0.080316536128521],[-0.044945985078812,-0.044578641653061,0.019166914746165],[0.047993648797274,-0.1000824123621,0.064891509711742]],[[-0.045639291405678,0.11182253807783,0.12701539695263],[0.086430013179779,-0.024903170764446,-0.021065099164844],[-0.059491157531738,-0.093485489487648,0.049517832696438]],[[0.15038019418716,-0.0085566518828273,-0.10714679211378],[0.073320604860783,-0.0035411329008639,-0.057308506220579],[0.11584130674601,0.10873687267303,0.065394729375839]],[[0.053094364702702,0.032011725008488,-0.065179169178009],[-0.0068206824362278,-0.049089971929789,0.09355615824461],[0.014872504398227,-0.090989656746387,0.0032203809823841]],[[-0.10715122520924,-0.042021561414003,-0.19352005422115],[-0.044136188924313,-0.083032488822937,0.10020119696856],[-0.209851115942,-0.0074013075791299,0.042309250682592]],[[0.092694908380508,0.055341724306345,0.063038237392902],[-0.19784560799599,-0.15473762154579,-0.19632811844349],[-0.064969554543495,-0.012545539066195,0.2031241953373]],[[-0.071995735168457,-0.056886833161116,-0.23335808515549],[0.011247856542468,0.022070232778788,0.033679131418467],[0.025363409891725,-0.049072738736868,-0.094553999602795]],[[-0.019010610878468,-0.074601925909519,0.14091672003269],[0.075806468725204,0.030860869213939,-0.1667106449604],[0.24168993532658,0.044414255768061,-0.19319827854633]],[[-0.067487969994545,-0.043026588857174,-0.11186035722494],[-0.12402834743261,-0.078933827579021,-0.065616704523563],[-0.13935390114784,0.0034205419942737,0.087929219007492]],[[0.031903069466352,-0.10178122669458,-0.10617023706436],[0.048198603093624,-0.04589070007205,0.085073232650757],[0.066706299781799,-0.16641494631767,-0.11256874352694]],[[0.10333661735058,-0.071162715554237,-0.14817143976688],[0.074372887611389,-0.12534394860268,-0.095860846340656],[0.072351634502411,-0.027646077796817,0.0076221213676035]],[[0.032896775752306,-0.03367518261075,-0.18524856865406],[-0.042006529867649,-0.00045306191896088,0.029076809063554],[0.070641487836838,0.042796172201633,-0.12146882712841]],[[0.12358184158802,0.019832516089082,0.028542675077915],[0.044302195310593,0.076090127229691,-0.022385289892554],[-0.087502978742123,0.024868864566088,0.14123632013798]],[[0.010882898233831,0.060313116759062,-0.038796629756689],[-0.026773989200592,0.033576138317585,-0.050299074500799],[-0.060685217380524,-0.029862701892853,-0.054058063775301]],[[0.10052743554115,-0.083773247897625,-0.17471119761467],[0.032946884632111,-0.10215087980032,-0.044129509478807],[-0.060186628252268,0.10149335861206,0.0092078810557723]],[[-0.18133892118931,-0.083527289330959,-0.089645639061928],[-0.13658083975315,-0.1295860260725,0.12781666219234],[0.073353536427021,-0.016638545319438,0.1989664286375]],[[-0.0066854641772807,0.014747845008969,-0.037719763815403],[0.041728232055902,0.12738399207592,0.076334252953529],[0.011377948336303,0.016435246914625,0.047178454697132]],[[-0.090109556913376,-0.08668165653944,0.042718164622784],[-0.050291746854782,0.042596679180861,-0.020803190767765],[0.060949496924877,0.051512666046619,0.056718945503235]],[[-0.095880389213562,-0.063867263495922,-0.13161842525005],[-0.015071654692292,-0.15874287486076,0.14813123643398],[-0.14228072762489,-0.046723641455173,-0.026389328762889]],[[-0.042251173406839,-0.033759616315365,-0.15145999193192],[-0.005436644423753,-0.00061280914815143,0.087868049740791],[0.11412265151739,0.052116103470325,0.039756450802088]],[[-0.20454585552216,-0.024344498291612,-0.18311414122581],[-0.18609255552292,0.11095064878464,-0.0010540313087404],[-0.049441378563643,0.080180712044239,0.088133223354816]],[[0.0083565898239613,-0.018025955185294,0.036114528775215],[0.045347839593887,-0.048433318734169,-0.15343552827835],[0.019292557612062,0.09719018638134,-0.10332361608744]],[[-0.059112254530191,-0.07441683113575,-0.14489795267582],[-0.073800168931484,0.069229498505592,0.015991125255823],[-0.077463649213314,0.055706944316626,0.026695840060711]],[[-0.0070953690446913,0.10366374999285,-0.013316032476723],[-0.059760488569736,-0.0053440830670297,-0.079874500632286],[0.010706713423133,-0.0025766545441002,0.19077982008457]],[[-0.094967149198055,0.20760609209538,-0.015603119507432],[0.033226996660233,0.1278760433197,0.14754600822926],[-0.11410108208656,-0.077439941465855,-0.24594366550446]],[[-0.019125062972307,0.037138517946005,-0.057584647089243],[-0.065629161894321,0.15622764825821,0.044352605938911],[-0.02815780416131,0.0043962821364403,-0.11034396290779]],[[0.086405858397484,-0.051516011357307,-0.0064760465174913],[0.17618949711323,0.018168207257986,0.096080109477043],[-0.12060238420963,-0.024051576852798,0.054278757423162]],[[-0.070634640753269,-0.032068844884634,0.13495333492756],[0.059287998825312,-0.0086223687976599,0.15487726032734],[0.012700336053967,0.070239797234535,0.068437643349171]],[[0.23383817076683,0.25578263401985,0.052628200501204],[-0.038499023765326,-0.019148981198668,-0.06529576331377],[-0.08650729060173,0.033746425062418,-0.094563454389572]],[[-0.00096766767092049,-0.035281550139189,0.061279784888029],[-0.049243818968534,-0.16745941340923,-0.14560870826244],[-0.069922477006912,-0.090304546058178,0.096375994384289]],[[-0.21671786904335,0.046925250440836,0.023582877591252],[-0.012374242767692,0.0098972273990512,0.025425031781197],[-0.087574392557144,0.0032526412978768,-0.11296524852514]],[[-0.16460181772709,0.045299101620913,0.054523255676031],[-0.087451800704002,-0.09132707118988,-0.062495145946741],[0.026451362296939,-0.020892465487123,0.11032775789499]],[[-0.12020006030798,-0.17322874069214,0.073006898164749],[-0.024136267602444,-0.059659995138645,0.1323443800211],[-0.0091329701244831,-0.033942967653275,0.19136179983616]],[[-0.029815476387739,-0.018308334052563,-0.050164718180895],[-0.010127539746463,0.015000893734396,-0.050846710801125],[0.016180623322725,0.060832284390926,0.087928503751755]],[[0.15590827167034,-0.095012836158276,0.19398082792759],[-0.017394635826349,-0.14066685736179,-0.27983340620995],[0.045074950903654,-0.0084744859486818,0.062089938670397]],[[0.12859359383583,-0.035007622092962,0.071034148335457],[-0.010777693241835,-0.014695253223181,-0.017128886654973],[0.036380391567945,-0.061389956623316,0.039867173880339]],[[0.063257440924644,-0.023096298798919,0.047268483787775],[-0.05756563320756,-0.14683046936989,0.12439016252756],[-0.039576385170221,-0.067617997527122,0.034303560853004]],[[-0.014552706852555,0.17773771286011,0.12626744806767],[0.11184239387512,-0.016336360946298,-0.032903470098972],[-0.031886365264654,-0.074996240437031,-0.074150502681732]],[[-0.03497114777565,-0.088175639510155,0.043368332087994],[-0.042247012257576,0.027764918282628,0.16879378259182],[-0.0069101513363421,-0.07152634114027,-0.15497063100338]],[[-0.086420029401779,-0.072272516787052,-0.1840954720974],[-0.069330781698227,-0.083959832787514,0.014453619718552],[-0.11086889356375,0.014045880176127,-0.00369430356659]],[[-0.12064811587334,0.1099710687995,-0.032650340348482],[-0.051090925931931,-0.028494231402874,-0.18416449427605],[-0.19421969354153,-0.034269984811544,-0.22678536176682]],[[0.20236794650555,0.10414550453424,0.021662048995495],[2.1996098439558e-05,-0.064736545085907,-0.0089637152850628],[-0.00094810634618625,-0.0048575680702925,0.087131470441818]],[[-0.075258761644363,0.0015973892295733,-0.030706865713],[0.031499914824963,0.052148468792439,0.07435867190361],[0.082693293690681,0.16168227791786,-0.061844170093536]],[[0.10581703484058,0.0264837089926,-0.20337325334549],[-0.065179772675037,-0.18122731149197,0.1279017329216],[0.10845738649368,-0.13360197842121,-0.11311545968056]],[[0.0076368884183466,0.06734810769558,0.001280335127376],[0.009593210183084,-0.064509488642216,0.072705194354057],[-0.0092346770688891,-0.15344089269638,-0.093705765902996]],[[0.03812637925148,0.080853559076786,0.0017370858695358],[-0.10497154295444,-0.053546994924545,0.048591028898954],[0.020474519580603,0.011315149255097,0.1395153850317]],[[0.064745739102364,-0.16863825917244,-0.074582062661648],[0.053665742278099,-0.16638334095478,0.025058124214411],[0.071542128920555,-0.025466594845057,-0.25362575054169]],[[0.074664935469627,0.038988463580608,-0.035856183618307],[0.046737596392632,0.11872392892838,0.15630574524403],[0.0473303347826,0.086836867034435,0.11449012905359]],[[0.057065434753895,0.11086431890726,-0.068015858530998],[-0.14218056201935,-0.016468228772283,-0.075768873095512],[0.019152203574777,-0.11466324329376,-0.020876366645098]],[[0.099062576889992,-0.14311495423317,-0.14044791460037],[0.062872260808945,-0.097069032490253,0.0086258007213473],[0.067620418965816,-0.1098488047719,-0.21165032684803]],[[0.061844814568758,0.020727433264256,0.098932802677155],[0.0032046425621957,-0.027922896668315,0.053317822515965],[0.010977628640831,0.047071404755116,0.12253525853157]],[[-0.12108793109655,-0.075208783149719,-0.063245259225368],[-0.1619974821806,-0.035914190113544,0.018942771479487],[-0.17223653197289,-0.022564813494682,-0.065657317638397]],[[-0.10169813036919,-0.016768636181951,-0.049470458179712],[-0.16947694122791,0.040995229035616,0.084143556654453],[0.031127182766795,0.07076707482338,0.047575429081917]],[[-0.023990189656615,0.029044298455119,0.0058812922798097],[-0.09947781264782,-0.05831790342927,0.034450616687536],[-0.11044703423977,-0.004043338354677,0.18594188988209]],[[-0.046912804245949,0.11586397886276,-0.04081929475069],[-0.21530342102051,0.046330209821463,-0.11077343672514],[0.087036140263081,0.1459085047245,0.23897194862366]],[[0.037648670375347,0.056591514497995,0.18583171069622],[-0.073379270732403,-0.045909762382507,-0.030803291127086],[0.061062138527632,0.063214875757694,0.01473614666611]]],[[[0.010484408587217,-0.044773194938898,0.017124116420746],[-0.00019757387053687,-0.061983782798052,0.064361579716206],[0.01777701638639,-0.037462741136551,0.014850932173431]],[[-0.29839825630188,-0.0073196436278522,-0.010654595680535],[-0.13361886143684,-0.12191148102283,-0.01051458157599],[-0.017920849844813,0.10561200231314,-0.13701744377613]],[[0.011568178422749,-0.039007868617773,0.052633073180914],[0.043366625905037,-0.18954163789749,-0.085145525634289],[-0.11340449750423,-0.13351461291313,-0.065811522305012]],[[0.057849660515785,-0.042416181415319,-0.029299136251211],[0.0061611463315785,-0.083078913390636,0.073645390570164],[-0.032156083732843,-0.03997640684247,-0.054172642529011]],[[0.0047616115771234,0.060884237289429,-0.016463419422507],[0.07220958173275,0.10699031502008,-0.035143099725246],[-0.044649980962276,0.16495141386986,-0.069768242537975]],[[-0.097716234624386,0.061353534460068,0.047969859093428],[-0.037846349179745,-0.0081020975485444,0.0099071944132447],[-0.050515700131655,-0.0089243454858661,-0.047570787370205]],[[-0.031852152198553,0.0072640036232769,-0.013471470214427],[-0.029934767633677,-0.041698802262545,0.031434718519449],[0.14899636805058,0.031292766332626,0.084619112312794]],[[-0.15762414038181,-0.10923257470131,-0.14701533317566],[-0.033513646572828,-0.14402617514133,0.035654317587614],[0.41659620404243,-0.050934307277203,0.0041526206769049]],[[-0.0089088287204504,-0.037419840693474,-0.012517478317022],[0.11503837257624,-0.062194027006626,-0.022745534777641],[0.087237305939198,-0.067855998873711,0.025591172277927]],[[0.084204480051994,-0.029735228046775,-0.10740234702826],[0.055705197155476,0.010000299662352,0.034358642995358],[0.051929153501987,-0.038969233632088,-0.076824195683002]],[[0.093459904193878,0.028506657108665,0.068610824644566],[-0.0014041467802599,-0.087134942412376,0.00075247255153954],[-0.095529980957508,-0.075234815478325,-0.11450609564781]],[[-0.31065371632576,0.079804427921772,-0.11007682979107],[-0.060786172747612,0.034205727279186,-0.059499345719814],[-0.043278902769089,0.076065897941589,0.00078590260818601]],[[-0.022754056379199,-0.04518748447299,0.012687303125858],[0.11298294365406,0.035518154501915,0.037274081259966],[0.24729046225548,-0.085963644087315,0.045233685523272]],[[0.1235471367836,-0.44609719514847,-0.04033051431179],[-0.060103189200163,-0.049811039119959,-0.10653502494097],[0.011078031733632,0.19519299268723,-0.082854196429253]],[[-0.0016380125889555,-0.066005125641823,0.09276332706213],[0.027913616970181,-0.12429784238338,0.057047609239817],[-0.21943348646164,-0.099637255072594,0.020721511915326]],[[0.039767578244209,-0.10168916732073,-0.037843927741051],[0.06994741410017,-0.044808365404606,-0.05326534062624],[0.020351715385914,-0.084385931491852,-0.031059686094522]],[[-0.087660081684589,-0.12274246662855,-0.12690201401711],[-0.02840480953455,-0.017457161098719,0.10629008710384],[0.057564970105886,0.048443738371134,0.098958633840084]],[[-0.24902355670929,0.016845300793648,0.068304471671581],[-0.10403201729059,0.034253168851137,0.12559102475643],[0.027401562780142,-0.012586675584316,-0.019183972850442]],[[0.0094736535102129,0.013824733905494,-0.043642856180668],[0.16426162421703,-0.1283545345068,-0.08304587751627],[0.067508950829506,0.0016661089612171,-0.04969085752964]],[[0.069253146648407,0.12504422664642,-0.067579030990601],[0.017930883914232,-0.0085975425317883,0.064382791519165],[-0.062926419079304,0.01895759999752,-0.054637540131807]],[[0.084900014102459,0.013531184755266,0.066973805427551],[-0.011117641814053,-0.10188594460487,-0.024889472872019],[0.072963178157806,-0.031629450619221,0.082080140709877]],[[-0.029932353645563,-0.064210020005703,0.019125960767269],[0.012066333554685,-0.030921531841159,-0.078685827553272],[0.0181700643152,0.018487537279725,-0.022584740072489]],[[-0.052018389105797,0.044723872095346,-0.00099820282775909],[-0.20325119793415,-0.0095071047544479,-0.087580114603043],[-0.070915333926678,-0.14769096672535,-0.0027499676216394]],[[0.013451094739139,-0.023081170395017,-0.042549420148134],[0.068996831774712,0.11649775505066,0.012304563075304],[0.19365441799164,0.15353308618069,-0.02939996868372]],[[0.11043502390385,-0.19921661913395,-0.073518864810467],[-0.043188858777285,-0.066397219896317,-0.096154548227787],[0.11070568114519,0.03110988996923,0.060465548187494]],[[0.033873684704304,0.031644649803638,-0.0025047878734767],[-0.014131091535091,0.0089464392513037,-0.011086930520833],[-0.049499779939651,-0.028585404157639,0.0094732297584414]],[[0.047157373279333,0.13960255682468,0.027734691277146],[-0.043227002024651,-0.0032781879417598,-0.0066632027737796],[-0.17831560969353,0.06867266446352,0.085555426776409]],[[-0.013175079599023,0.038395654410124,0.090754061937332],[0.15862481296062,-0.067333944141865,-0.075047217309475],[0.083188563585281,-0.15691860020161,0.078450210392475]],[[0.022540058940649,-0.02653893083334,0.083360277116299],[-0.10546618700027,0.024378303438425,-0.054421108216047],[-0.080218121409416,0.076007351279259,0.018160089850426]],[[0.06110231205821,-0.011866469867527,0.04583989828825],[0.012244706042111,0.043851908296347,-0.0015247303526849],[0.097302168607712,-0.086052693426609,0.0022033252753317]],[[0.13202683627605,-0.064269937574863,-0.15482948720455],[0.12822385132313,0.10330813378096,0.0041004209779203],[0.061687130481005,-0.019037531688809,0.15232008695602]],[[0.12855985760689,-0.045380413532257,-0.19164417684078],[0.073678486049175,0.070519864559174,-0.041949298232794],[0.047381293028593,0.17613169550896,-0.010144525207579]],[[-0.10098670423031,-0.056557770818472,-0.11122124642134],[-0.01555862557143,-0.033128172159195,0.018911378458142],[-0.15438537299633,0.092817947268486,-0.010513153858483]],[[0.094148196280003,0.091791406273842,0.0033637655433267],[-0.066083565354347,0.080521658062935,-0.028034327551723],[-0.098209455609322,-0.054339755326509,-0.044043228030205]],[[-0.05021445453167,0.11730720847845,-0.15420132875443],[0.01118627935648,0.025757251307368,-0.019747937098145],[-0.055889721959829,0.0071655036881566,0.16156351566315]],[[0.15845699608326,0.06875778734684,0.0057838554494083],[0.15603955090046,-0.053058907389641,0.0080542992800474],[-0.0072891735471785,-0.093012467026711,-0.09088160097599]],[[0.17969106137753,-0.0078853908926249,0.034999340772629],[-0.038387816399336,0.069904997944832,0.028130561113358],[-0.0074331499636173,0.14195336401463,-0.12604826688766]],[[-0.21462689340115,0.072745814919472,0.040959618985653],[0.0033110252115875,-0.079811319708824,-0.082112722098827],[0.24260766804218,-0.23485547304153,-0.028030661866069]],[[-0.23118121922016,-0.00071528076659888,-0.034885492175817],[-0.09399551153183,-0.024118714034557,0.0016903803916648],[-0.090579725801945,0.032162677496672,0.012019782327116]],[[0.054174922406673,-0.056443031877279,0.03541911765933],[-0.017340932041407,-0.01861466653645,-0.0047224722802639],[-0.10212901979685,0.065049037337303,0.011527265422046]],[[0.028242269530892,0.047893866896629,0.084795251488686],[-0.0090051731094718,0.085948646068573,0.064069539308548],[-0.16777929663658,0.16757117211819,0.050339426845312]],[[-0.079771265387535,-0.12411561608315,-0.13324229419231],[-0.015877574682236,-0.10994553565979,0.016010839492083],[0.1604450494051,-0.11351873725653,-0.031779896467924]],[[-0.0029454841278493,-0.072438061237335,0.037021141499281],[-0.12313108891249,0.019482780247927,0.065227262675762],[0.01782956533134,0.096000261604786,-0.025319579988718]],[[-0.13081760704517,0.13469459116459,-0.12908783555031],[-0.06021174788475,0.063472852110863,-0.1032492890954],[-0.061367087066174,0.041762981563807,0.0042684720829129]],[[-0.099353909492493,0.16992169618607,-0.032871503382921],[-0.0085875978693366,0.053911421447992,-0.019841063767672],[-0.091554366052151,-0.044556394219398,-0.1391731351614]],[[-0.038717560470104,0.063180573284626,0.017312776297331],[-0.048339303582907,-0.11035405099392,-0.012728122062981],[0.031633470207453,-0.044444516301155,-0.090465232729912]],[[0.1159158423543,0.039392478764057,0.12460442632437],[0.07367766648531,-0.068163886666298,-0.028012031689286],[0.021895026788116,-0.12423199415207,0.0085133668035269]],[[-0.11135758459568,-0.1601223051548,-0.021964268758893],[0.0089694438502192,-0.018492378294468,-0.095613472163677],[0.068172112107277,-0.051969897001982,-0.011530584655702]],[[-0.070263594388962,-0.047315903007984,0.044713258743286],[0.037718258798122,-0.047381423413754,0.015135494992137],[0.028594668954611,-0.085859574377537,-0.086228981614113]],[[0.040663812309504,0.052629359066486,0.093403451144695],[0.085527472198009,-0.031514219939709,-0.035640101879835],[0.17654295265675,-0.21051450073719,-0.22096166014671]],[[-0.2070349752903,0.25752660632133,-0.20160549879074],[-0.045618135482073,0.0325797945261,0.075612552464008],[0.095658458769321,-0.0024718574713916,0.069756276905537]],[[-0.014688304625452,0.16424830257893,0.11857444047928],[-0.028820184990764,-0.030860686674714,-0.0059642363339663],[-0.10571913421154,-0.086556568741798,0.14771588146687]],[[-0.18405914306641,0.049445066601038,0.032699473202229],[-0.088792972266674,0.054827410727739,0.023708848282695],[-0.20181393623352,0.079110734164715,0.17199315130711]],[[0.012912608683109,-0.10982026904821,0.13266424834728],[0.030317254364491,-0.097444757819176,0.063600584864616],[0.18484751880169,-0.12422759085894,-0.023208303377032]],[[-0.044394847005606,0.054767332971096,0.022459041327238],[0.085789859294891,-0.063390873372555,0.023403720930219],[-0.10040987282991,-0.11483868956566,-0.023088460788131]],[[-0.017180783674121,-0.0033553531393409,-0.044239949434996],[0.042856998741627,0.030182715505362,0.039264254271984],[0.056087613105774,0.071133933961391,-0.022106470540166]],[[-0.033011250197887,0.15043221414089,-0.10199376940727],[0.09730701893568,-0.065331637859344,0.072223193943501],[0.13634790480137,0.025632601231337,-0.022840211167932]],[[-0.060185175389051,-0.032707825303078,0.001954278210178],[-0.015491714701056,0.052874948829412,-0.019566513597965],[0.038385849446058,-0.078032411634922,-0.06232837215066]],[[-0.0013001747429371,-0.012734699994326,0.13225392997265],[0.09998582303524,0.017800372093916,0.023655196651816],[0.10160841792822,0.078211449086666,-0.007361507974565]],[[0.054298110306263,0.02263717353344,0.075546279549599],[-0.091298878192902,0.15127225220203,-0.032622471451759],[-0.10185136646032,-0.019569467753172,-0.043884210288525]],[[0.16901923716068,-0.15647876262665,-0.02106792293489],[-0.14888840913773,-0.015756180509925,-0.010117569938302],[-0.11146605759859,0.075808703899384,0.02475349791348]],[[-0.2722814977169,0.021679997444153,0.11800823360682],[-0.2070686519146,-0.081063061952591,0.040014233440161],[-0.10167202353477,-0.14877818524837,-0.06377175450325]],[[-0.063248701393604,-0.013203557580709,0.12522704899311],[-0.0066038658842444,-0.040472876280546,0.045105323195457],[0.13669463992119,-0.07597292214632,-0.027827776968479]],[[0.16077680885792,0.089621379971504,0.075117245316505],[-0.061924308538437,-0.027023555710912,0.01526993047446],[-0.05988521873951,-0.040696773678064,-0.136364325881]]],[[[-0.32106006145477,-0.10992472618818,-0.1291638314724],[-0.17867977917194,-0.13166698813438,-0.21900050342083],[-0.057637017220259,-0.088351175189018,-0.095607258379459]],[[-0.21133820712566,0.017259702086449,0.073711656033993],[-0.11941654980183,-0.037044163793325,-0.068002723157406],[-0.17108033597469,-0.028988674283028,-0.043557416647673]],[[-0.075199946761131,0.027008393779397,-0.071987479925156],[0.034900326281786,-0.19260308146477,-0.066520243883133],[-0.16308784484863,-0.20261852443218,-0.060437243431807]],[[-0.029471516609192,-0.19473108649254,-0.20112243294716],[-0.086803339421749,0.0093565145507455,-0.0050705620087683],[0.15943126380444,0.15873874723911,0.0066311215050519]],[[0.040108062326908,0.062354274094105,-0.15502306818962],[-0.00045723840594292,0.014358676038682,-0.10732915252447],[-0.088034488260746,-0.095854997634888,-0.086216226220131]],[[-0.075393579900265,0.047925774008036,0.0094678262248635],[0.042942941188812,-0.02071563526988,0.03087218105793],[0.0022884956561029,-0.099134303629398,-0.098521180450916]],[[-0.17216257750988,0.059959188103676,-0.027051601558924],[-0.089669197797775,-0.051346581429243,-0.13152600824833],[-0.18764974176884,0.068606019020081,0.13003148138523]],[[-0.094167850911617,-0.025133848190308,-0.0019841080065817],[-0.080707423388958,-0.10875110328197,-0.016337199136615],[0.042341221123934,-0.030843345448375,0.09863518178463]],[[-0.21373251080513,-0.16805399954319,-0.12978060543537],[0.01075595151633,-0.051999296993017,-0.11806918680668],[0.10960488021374,-0.062854714691639,-0.12777577340603]],[[-0.19581645727158,-0.11653462052345,-0.097453497350216],[0.013831536285579,0.094469353556633,-0.0096664698794484],[0.034191653132439,-0.0074229603633285,-0.088394418358803]],[[0.055955726653337,-0.0050510331057012,-0.041447184979916],[0.020535172894597,-0.07000669836998,-0.13961966335773],[-0.23935705423355,-0.040690876543522,0.13043269515038]],[[-0.015461331233382,-0.064097106456757,-0.1168427914381],[-0.023781007155776,-0.014957793988287,-0.0097195133566856],[0.029809314757586,0.15639473497868,0.02744715474546]],[[0.060621667653322,0.068037062883377,-0.059016287326813],[0.058584976941347,-0.029646523296833,-0.0096768578514457],[-0.13283875584602,-0.052898790687323,-0.020332911983132]],[[-0.077086560428143,0.25193080306053,-0.011479263193905],[-0.012243179604411,-0.17589402198792,-0.26723182201385],[-0.090966895222664,-0.026775147765875,0.18020169436932]],[[-0.046025462448597,-0.06536415964365,0.040832486003637],[-0.035733602941036,0.11861836910248,0.09625094383955],[-0.038761802017689,0.099165432155132,0.053430903702974]],[[0.038928657770157,-0.064060293138027,0.17497834563255],[-0.072543859481812,-0.13206730782986,-0.080188184976578],[0.045619182288647,-0.087068967521191,-0.14591102302074]],[[-0.11163975298405,0.066820278763771,-0.051616255193949],[0.095847718417645,0.027598269283772,-0.04662224277854],[0.15473413467407,0.12873308360577,-0.019728856161237]],[[-0.020351950079203,-0.011142766103148,-0.048116199672222],[-0.02592390216887,-0.18613052368164,0.03526846319437],[0.06797318905592,0.077324531972408,-0.101229198277]],[[-0.066160917282104,-0.0030867785681039,-0.22298806905746],[0.040221869945526,-0.12526662647724,0.030651805922389],[0.010930310003459,-0.011257863603532,0.015514423139393]],[[-0.085046641528606,-0.15905469655991,-0.11335479468107],[-0.067497037351131,-0.068060912191868,0.066283471882343],[-0.1668257266283,0.038304582238197,0.076355114579201]],[[-0.01138555817306,-0.11818958073854,-0.064572788774967],[-0.11186560988426,0.1448285728693,0.20988503098488],[-0.2586812376976,-0.045235931873322,-0.075593754649162]],[[-0.11438968777657,-0.020168278366327,0.009659037925303],[-0.17134906351566,-0.015186164528131,0.10277592390776],[-0.010970042087138,0.041303526610136,0.015458298847079]],[[-0.056259915232658,-0.013194200582802,-0.092662803828716],[-0.0086738662794232,-0.13621474802494,-0.1425359249115],[0.16433840990067,-0.0052093309350312,0.11886882036924]],[[0.23087732493877,0.14120808243752,-0.094346724450588],[0.12630632519722,-0.067183881998062,-0.1563865840435],[-0.037022922188044,-0.16345208883286,0.14064788818359]],[[0.050025943666697,-0.058745987713337,-0.0043941931799054],[-0.039157267659903,0.12517526745796,0.16085611283779],[0.083651326596737,0.049140922725201,0.058999434113503]],[[0.10803706198931,-0.087010778486729,-0.10102070122957],[0.058426525443792,0.031105954200029,-0.025784125551581],[0.032119143754244,-0.060554955154657,0.0096039948984981]],[[-0.10561921447515,-0.073338113725185,0.03246683999896],[0.10148703306913,0.009632894769311,0.036525350064039],[-0.23076204955578,-0.23523676395416,0.0048279827460647]],[[-0.031545840203762,-0.13421192765236,0.019043944776058],[0.12858292460442,0.022861426696181,-0.0097175361588597],[0.052733354270458,-0.03474797308445,-0.073562830686569]],[[-0.19433565437794,0.016730826348066,-0.097138442099094],[-0.033514477312565,-0.00097843038383871,0.029449271038175],[0.13021895289421,-0.0154476929456,-0.070671752095222]],[[0.14207436144352,0.10201682150364,-0.057266347110271],[0.15207105875015,0.017317732796073,-0.06656689196825],[-0.010998524725437,-0.04694950953126,0.027387380599976]],[[0.092334821820259,0.0024394241627306,0.017283735796809],[-0.11385508626699,0.038574282079935,0.14435966312885],[-0.078748933970928,0.039113365113735,0.080981306731701]],[[0.050129283219576,-0.029730919748545,-0.13732655346394],[0.02229830622673,0.075305141508579,-0.0087294280529022],[0.1100527793169,0.071131400763988,0.15509468317032]],[[-0.2486747354269,-0.058207035064697,-0.012291662395],[0.16378846764565,0.016375929117203,0.082908533513546],[-0.01513115875423,0.010136840865016,0.0095300152897835]],[[-0.027790181338787,-0.039257206022739,0.013567167334259],[-0.028446508571506,-0.074988782405853,0.071680188179016],[0.13069662451744,-0.080606363713741,-0.24978157877922]],[[-0.014255014248192,-0.04277515783906,-0.1342014670372],[-0.0078961672261357,-0.014251336455345,0.14779794216156],[-0.14287050068378,0.010452570393682,0.23258382081985]],[[0.082263596355915,0.084208391606808,0.1707871556282],[0.084712989628315,0.036135621368885,-0.017296761274338],[-0.037353955209255,0.037755243480206,0.092408828437328]],[[0.45018264651299,-0.076265908777714,-0.27463859319687],[0.05485762655735,0.26724255084991,0.25700360536575],[-0.073792822659016,0.16881747543812,0.095905587077141]],[[0.096055716276169,0.041631869971752,0.087683610618114],[0.012805541977286,0.076241925358772,-0.036319006234407],[-0.14497132599354,-0.23673704266548,0.02178743481636]],[[-0.035691551864147,0.026360709220171,-0.035968914628029],[0.072716563940048,0.030855605378747,0.01511488109827],[-0.059953514486551,-0.06288942694664,-0.1358950138092]],[[-0.060049951076508,0.019194349646568,-0.13538950681686],[0.12957707047462,0.019774239510298,-0.14823558926582],[0.2802669107914,0.14008629322052,-0.067293033003807]],[[-0.10053583979607,-0.12921120226383,0.0025797211565077],[0.13237725198269,0.038196843117476,0.091290466487408],[0.016342235729098,0.12279085814953,9.6600015240256e-05]],[[-0.1093247756362,0.013617726974189,0.047873113304377],[0.0058868862688541,-0.080025747418404,-0.038813814520836],[0.013514067977667,-0.046351637691259,-0.062081061303616]],[[0.043853580951691,-0.038763478398323,0.028119491413236],[-0.057112839072943,-0.12556473910809,-0.10788770020008],[-0.1481204777956,-0.16435599327087,-0.051052518188953]],[[0.14923189580441,-0.070179872214794,0.010846371762455],[0.13932865858078,0.12099903076887,0.05028023570776],[-0.093946896493435,-0.03390784189105,-0.082857988774776]],[[0.0043410300277174,0.060308896005154,-0.012042047455907],[-0.15672059357166,-0.0077735716477036,-0.1321008503437],[0.15650813281536,0.036487232893705,0.037584491074085]],[[-0.010376174934208,0.07499997317791,0.27767607569695],[0.15706415474415,-0.023699963465333,-0.18302324414253],[-0.18463088572025,-0.17861331999302,0.050377547740936]],[[0.021911531686783,0.028675127774477,-0.027068005874753],[-0.083591714501381,0.046588748693466,0.16074565052986],[0.13901354372501,-0.003705388866365,0.019740408286452]],[[0.010002941824496,-0.024467021226883,-0.11653743684292],[0.088344417512417,-0.042619705200195,0.057034451514482],[-0.13503223657608,0.1251902282238,0.043526865541935]],[[-0.087180726230145,0.047708131372929,0.13781318068504],[-0.1283096820116,0.037374150007963,0.18320959806442],[0.070389501750469,-0.074791513383389,0.086003065109253]],[[0.1169943138957,0.16198143362999,0.12268394976854],[-0.010367979295552,0.10205485671759,0.16111949086189],[-0.057528797537088,-0.19836547970772,0.025039000436664]],[[-0.30204489827156,-0.15082132816315,-0.10585998743773],[-0.010953989811242,0.026399718597531,0.0056716133840382],[0.0030134574044496,0.046677358448505,0.11062072962523]],[[-0.17958571016788,-0.13402205705643,-0.31056845188141],[0.091594457626343,-0.21207657456398,-0.17541219294071],[-0.068366460502148,-0.10348029434681,-0.057429548352957]],[[-0.012613375671208,0.045042723417282,0.067305490374565],[-0.09770243614912,-0.08952422440052,-0.052629563957453],[0.094128325581551,-0.1225902363658,-0.11062427610159]],[[-0.030841108411551,0.023641459643841,-0.0023805478122085],[0.036731641739607,0.0042871171608567,0.033117689192295],[-0.085723645985126,0.082407668232918,0.085972025990486]],[[0.049044281244278,-0.077794007956982,-0.018749026581645],[0.084485225379467,-0.0017296957084909,0.03918070346117],[-0.17898797988892,-0.030553180724382,-0.104013890028]],[[-0.07814884185791,-0.046829521656036,0.24930940568447],[-0.10000641644001,-0.016238650307059,0.065130271017551],[0.062565110623837,-0.015837449580431,-0.074767239391804]],[[-0.073104552924633,0.10674704611301,-0.075795508921146],[0.088418692350388,-0.18680919706821,-0.053040839731693],[0.094116553664207,0.040201552212238,-0.032755687832832]],[[-0.043857716023922,-0.18551614880562,0.035884510725737],[0.021867347881198,0.017910405993462,0.02797120064497],[-0.076375298202038,-0.066647030413151,0.049820229411125]],[[0.19062702357769,0.086468823254108,0.025916332378983],[0.0079256631433964,-0.022035866975784,0.13909330964088],[0.067884221673012,0.072786182165146,0.06404273211956]],[[-0.12390118092299,0.056671615689993,0.033708672970533],[0.03461030125618,0.013510058633983,0.024255711585283],[0.15585844218731,0.034221198409796,0.05953462049365]],[[-0.06742849946022,-0.11144240945578,-0.094444364309311],[-0.18710742890835,-0.25829058885574,0.13230150938034],[0.037121023982763,0.0082370694726706,0.037353001534939]],[[0.21041910350323,0.015659088268876,-0.011110839433968],[0.020239593461156,-0.074815385043621,0.055863305926323],[0.069631524384022,-0.027687918394804,-0.029692634940147]],[[-0.087133131921291,-0.092500455677509,-0.10315593332052],[-0.31352627277374,-0.23942038416862,-0.11526504904032],[0.22012956440449,0.17539367079735,0.3147999048233]],[[-0.11592648923397,-0.1490930467844,0.1736027598381],[0.26567324995995,0.20368021726608,-0.016761591657996],[-0.1345482468605,-0.04734593257308,-0.068281129002571]]],[[[-0.10253310203552,-0.076749660074711,-0.015836417675018],[-0.025811336934566,-0.03213682025671,-0.036346506327391],[0.12481214106083,0.016934935003519,0.02698589861393]],[[-0.17471408843994,-0.15886594355106,-0.098510257899761],[-0.14911060035229,0.071460954844952,0.020162140950561],[-0.016530126333237,0.093237236142159,-0.081600725650787]],[[-0.083726659417152,-0.019254360347986,-0.017983568832278],[-0.19036936759949,-0.047867078334093,-0.098972760140896],[0.051545448601246,0.067896626889706,0.073838390409946]],[[-0.17315223813057,-0.092752672731876,-0.14412578940392],[0.014929389581084,0.05179438367486,-0.11685234308243],[0.027323333546519,-0.013277353718877,0.18182802200317]],[[-0.10967385023832,-0.036972660571337,-0.14096094667912],[-0.0056883031502366,0.13910566270351,0.073184631764889],[-0.061325274407864,-0.066908441483974,0.0090617453679442]],[[-0.030809426680207,-0.15081335604191,0.053102266043425],[0.0061117089353502,0.018776841461658,-0.030506672337651],[0.04237338155508,-0.011604172177613,-0.025754461064935]],[[0.097525522112846,-0.043904792517424,-0.13094487786293],[-0.096902951598167,-0.024069406092167,0.073390431702137],[-0.049531683325768,-0.14449527859688,-0.021301548928022]],[[0.060866486281157,0.049561429768801,0.0051612784154713],[0.03077664040029,0.091335110366344,0.12036262452602],[0.11704834550619,-0.15782900154591,-0.0068926243111491]],[[-0.08250330388546,0.056395918130875,0.031212419271469],[0.02045065164566,-0.062442183494568,-0.04474113881588],[0.010023644194007,0.17530830204487,0.033472549170256]],[[0.036034937947989,-0.053634315729141,-0.037411902099848],[0.051061552017927,-0.02758190408349,0.11863547563553],[0.022592468187213,-0.094174593687057,-0.06925406306982]],[[-0.062402676790953,-0.0075539718382061,0.016042437404394],[0.094757899641991,-0.0023120765108615,0.038567572832108],[-0.044160518795252,-0.009382501244545,0.012697093188763]],[[0.032566651701927,0.0034568232949823,-0.059509668499231],[0.01377316378057,-0.034830886870623,-0.090614944696426],[-0.025277612730861,0.053421594202518,0.014781076461077]],[[-0.18571284413338,0.022396244108677,0.2002782523632],[-0.11270801723003,0.01783567853272,-0.077262327075005],[-0.076591059565544,0.026603391394019,0.01698880456388]],[[-0.056417386978865,0.071881525218487,-0.10508158802986],[0.021139202639461,-0.010819520801306,0.012625245377421],[0.098398551344872,0.071097314357758,-0.020917626097798]],[[0.034700732678175,0.082940272986889,0.07870838791132],[0.050352562218904,-0.036960985511541,0.037324018776417],[0.13201668858528,0.062879659235477,0.12170124053955]],[[-0.050404634326696,-0.075988814234734,-0.048033379018307],[-0.051294714212418,0.089363113045692,-0.022221239283681],[-0.0094900149852037,-0.12006845325232,-0.028933737426996]],[[0.0081223389133811,0.019553996622562,-0.0110774487257],[0.078325733542442,0.10453999787569,0.070830464363098],[0.066428780555725,0.040012765675783,0.011792236939073]],[[-0.028419952839613,-0.035717092454433,-0.011256619356573],[-0.030413554981351,0.026402080431581,-0.13702657818794],[-0.10047829896212,0.0023316186852753,0.045204486697912]],[[-0.14938886463642,-0.018575483933091,-0.011400635354221],[0.0039484482258558,-0.039219971746206,-4.9092523113359e-05],[-0.034821387380362,0.045453555881977,-0.034570261836052]],[[-0.046572290360928,0.030294580385089,-0.0756925791502],[-0.087555803358555,-0.019019227474928,-0.043474465608597],[0.099570579826832,0.09284546226263,-0.050844773650169]],[[0.0046987975947559,0.032420463860035,-0.031520899385214],[-0.029696308076382,-0.18853497505188,0.11359713971615],[-0.036490350961685,0.12462183088064,0.12191274762154]],[[-0.055151168256998,-0.03291018679738,-0.019497400149703],[0.057686034590006,0.071177646517754,0.060119640082121],[-0.053130645304918,-0.032012864947319,-0.0265181530267]],[[0.00020939265959896,-0.00025730335619301,0.036078110337257],[0.065653413534164,-0.031440876424313,0.056584153324366],[-0.034899685531855,-0.076256267726421,-0.066027231514454]],[[0.070261672139168,0.014593466185033,0.02684511244297],[0.032818678766489,0.037684589624405,-0.0037397707346827],[-0.0022427185904235,-0.042002484202385,0.1205680295825]],[[0.086137041449547,0.15607546269894,0.11639297753572],[-0.055409949272871,-0.019087269902229,0.068199567496777],[0.16099913418293,-0.047920428216457,0.026091132313013]],[[-0.0030720946379006,-0.035262390971184,0.064288653433323],[0.024649521335959,-0.014961898326874,-0.0028525528032333],[0.026261733844876,-0.0051782736554742,-0.038581293076277]],[[0.051613986492157,0.1575939655304,0.033484436571598],[-0.060173597186804,-0.02875791862607,0.012786900624633],[-0.026949660852551,0.10624309629202,0.035142466425896]],[[0.025306321680546,-0.096631146967411,0.22009479999542],[0.023573825135827,0.032843451946974,-0.10357666760683],[0.0069901165552437,-0.034184139221907,0.096414469182491]],[[-0.1942026913166,-0.068862646818161,0.017949122935534],[-0.10336004197598,-0.018281038850546,-0.024114238098264],[-0.14293022453785,-0.094608329236507,-0.0069105448201299]],[[0.14173842966557,0.027685634791851,-0.059832189232111],[-0.13203339278698,-0.053312879055738,0.025366837158799],[0.086744397878647,0.068233221769333,0.13896538317204]],[[-0.021059602499008,0.074645735323429,0.12800739705563],[0.07547602057457,0.039513986557722,0.079976685345173],[0.05372690781951,0.022037081420422,-0.020183818414807]],[[0.10688914358616,-0.01207541488111,-0.027886033058167],[0.1667305380106,0.0020523257553577,-0.020634206011891],[-0.24477523565292,0.013416524045169,-0.0070306695997715]],[[0.021935317665339,0.024377448484302,-0.049431767314672],[-0.06247079744935,-0.047163590788841,-0.14419159293175],[0.08479417860508,0.23107638955116,0.12782448530197]],[[-0.077088989317417,-0.062299747020006,0.04316733032465],[-0.12053301930428,-0.094866767525673,-0.018804907798767],[0.072824358940125,0.057945031672716,-0.11272665113211]],[[-0.13715662062168,-0.046177711337805,-0.047894064337015],[-0.11882226914167,-0.070073738694191,-0.038554951548576],[0.036295995116234,-0.017749566584826,0.13029858469963]],[[-0.0020054415799677,-0.026073472574353,0.047385480254889],[0.1013969630003,0.01877361536026,0.21817515790462],[-0.030450390651822,0.036316134035587,0.0058339079841971]],[[0.11840403079987,-0.087269097566605,0.023250937461853],[0.029479483142495,0.047856915742159,0.05823664739728],[-0.19775469601154,-0.28818017244339,-0.085545115172863]],[[-0.023693438619375,-0.001270146924071,-0.2405452132225],[-0.0048311767168343,-0.0014340602792799,0.11771728098392],[0.0086829978972673,-0.060790419578552,0.0045335427857935]],[[0.073304824531078,0.042337704449892,-0.0041692135855556],[0.10165182501078,0.023231685161591,-0.14408005774021],[0.037282064557076,-0.060656365007162,0.060569398105145]],[[-0.032911583781242,-0.0012794765643775,-0.012957341969013],[-0.10292732715607,0.02471642382443,-0.073127821087837],[0.18201720714569,0.011275824159384,0.10817440599203]],[[-0.068870775401592,-0.054461479187012,-0.035143285989761],[0.024109203368425,-0.078464441001415,0.009704602882266],[-0.10967615991831,0.08645311743021,-0.067461304366589]],[[-0.038611810654402,-0.0045517240650952,0.006626920774579],[0.026426224038005,0.14273156225681,-0.041961371898651],[-0.053923718631268,-0.056873980909586,0.013381873257458]],[[-0.1196378916502,-0.16324046254158,-0.013542256318033],[-0.052403070032597,-0.019347723573446,0.0093247331678867],[0.032252483069897,-0.03069819137454,0.035858683288097]],[[-0.086190894246101,-0.095136754214764,-0.066592879593372],[-0.025484038516879,-0.025549219921231,0.075494684278965],[0.024494355544448,-0.068584099411964,0.063937805593014]],[[-0.12642535567284,-0.11424455791712,0.22191523015499],[-0.066899754106998,0.065600141882896,-0.0085307452827692],[-0.015295422635972,-0.094287231564522,0.079555943608284]],[[0.0044879531487823,0.13798116147518,0.2067464441061],[-0.016706755384803,-0.031872544437647,-0.17202614247799],[-0.060008693486452,0.0086811222136021,-0.0023935837671161]],[[0.07489825040102,0.17135663330555,0.10760454088449],[0.068432092666626,0.0068146539852023,-0.063151836395264],[-0.0013276583049446,-0.05356477946043,0.061806328594685]],[[-0.079030573368073,0.13751490414143,0.064534246921539],[0.071100451052189,0.020362270995975,-0.19377616047859],[-0.010807487182319,-0.035916969180107,-0.075520545244217]],[[0.086882680654526,0.026938691735268,0.00820442289114],[0.084381073713303,-0.051095724105835,-0.031804926693439],[-0.032029557973146,0.027501666918397,-0.08019894361496]],[[0.0062497444450855,0.15251681208611,0.16291426122189],[0.0173913333565,-0.030535161495209,-0.084189936518669],[-0.069711729884148,0.10110449790955,0.018812488764524]],[[-0.0045435512438416,0.038422837853432,0.074431419372559],[-0.080755293369293,0.057165086269379,-0.023360589519143],[-0.017913529649377,-0.0013543907552958,-0.044937212020159]],[[0.032280139625072,-0.11424138396978,0.0671152099967],[-0.084233514964581,-0.057610467076302,-0.057862512767315],[0.050938658416271,0.062944449484348,-0.037066116929054]],[[-0.091666772961617,-0.087025672197342,-0.022090004757047],[0.0011507638264447,-0.057207997888327,0.082218006253242],[0.015696311369538,0.033948089927435,-0.10789578408003]],[[0.039735283702612,0.12302076816559,0.023799818009138],[0.0713235065341,0.089037530124187,0.022773943841457],[-0.16442868113518,-0.024740366265178,-0.017105268314481]],[[-0.018386950716376,0.0022096331231296,0.026643477380276],[-0.11776385456324,-0.027620023116469,0.019842924550176],[-0.0058755162172019,0.011716773733497,0.020158335566521]],[[0.062750086188316,-0.037361945956945,-0.013584698550403],[-0.046746179461479,0.085867166519165,-0.03937166556716],[-0.041976850479841,0.0083484658971429,-0.023148076608777]],[[-0.077655121684074,-0.093652054667473,-0.13360691070557],[0.052493583410978,-0.11777215451002,-0.052021268755198],[-0.015021594241261,0.019988043233752,-0.062965005636215]],[[0.083338342607021,-0.18841135501862,-0.061053309589624],[-0.046303372830153,-0.017611663788557,0.07881586253643],[0.058243051171303,0.076268151402473,0.01106183975935]],[[0.032656505703926,0.015722658485174,0.062535144388676],[0.088678650557995,0.086712762713432,-0.016050659120083],[-0.03855536878109,-0.027045538648963,-0.11399397999048]],[[-0.12007953971624,-0.019362745806575,-0.079552561044693],[0.025287026539445,-0.0050784894265234,-0.036894179880619],[-0.030958348885179,-0.060852728784084,-0.08540802448988]],[[0.065974809229374,0.1627211868763,0.18546456098557],[0.033620048314333,-0.054914224892855,-0.02012075483799],[-0.16097719967365,-0.056743782013655,-0.025565026327968]],[[-0.16841788589954,-0.044593058526516,-0.16026937961578],[-0.17446161806583,-0.070621177554131,-0.038984414190054],[-0.072375610470772,-0.011532533913851,-0.059583924710751]],[[0.025203576311469,-0.066772609949112,-0.012727948836982],[-0.055659636855125,0.038191709667444,0.13665905594826],[-0.037691876292229,-0.15146337449551,-0.066391728818417]],[[-0.064533844590187,-0.11043191701174,-0.009113029576838],[-0.11403129994869,0.03299655765295,-0.17639625072479],[0.036115933209658,-0.042330089956522,0.013446184806526]]],[[[-0.11930326372385,-0.15019039809704,-0.10828804969788],[0.028234969824553,0.016578121110797,-0.024162566289306],[0.014861905947328,0.025274334475398,-0.13246718049049]],[[-0.0031686120200902,0.05700521171093,0.051337048411369],[-0.091621123254299,-0.052288725972176,-0.087751895189285],[0.058018039911985,0.084765635430813,0.0032480303198099]],[[-0.073066048324108,-0.033165022730827,0.045697383582592],[-0.038643594831228,-0.080581426620483,0.029441935941577],[-0.035168714821339,-0.038653422147036,0.004316876642406]],[[-0.059737700968981,-0.0049548586830497,-0.054106988012791],[-0.0083230920135975,-0.056047800928354,0.026245852932334],[0.010816155932844,0.019693356007338,0.00092767470050603]],[[-0.0074037369340658,-0.020828068256378,-0.025265816599131],[-0.012333855964243,0.053794398903847,-0.14369361102581],[0.05478485673666,0.03459344804287,-0.11666965484619]],[[-0.096377588808537,-0.10208977013826,0.080756515264511],[0.061586212366819,-0.032511949539185,0.0092419814318419],[-0.035769894719124,0.15034599602222,0.10754578560591]],[[-0.063142657279968,-0.015572759322822,0.1483827829361],[0.019168302416801,-0.092131346464157,0.077953867614269],[0.13256537914276,0.039139557629824,0.038082260638475]],[[-0.065735392272472,0.12739214301109,0.1236038133502],[-0.021633569151163,-0.11039739102125,0.069070801138878],[0.039163433015347,0.0099620055407286,0.071410402655602]],[[-0.084634386003017,-0.015267464332283,-0.0086841164156795],[0.090200841426849,-0.075934931635857,-0.027312340214849],[-0.0028456517029554,0.085570842027664,0.040006507188082]],[[0.017005145549774,-0.034767303615808,0.018699008971453],[-0.0087329652160406,-0.061992287635803,0.030145211145282],[0.030920531600714,0.021712487563491,-0.0019513207953423]],[[-0.022216700017452,-0.073896326124668,-0.12168969213963],[0.037464514374733,-0.036950089037418,-0.050842769443989],[-0.030536228790879,0.11134694516659,0.0017863755347207]],[[0.027034595608711,-0.15276949107647,-0.058899965137243],[-0.019828012213111,0.055879060178995,-0.015965761616826],[0.03246833384037,-0.11582827568054,-0.085157670080662]],[[-0.011796756647527,0.035709585994482,0.0007390360115096],[-0.006242407951504,0.025232320651412,-0.042057201266289],[0.10008138418198,0.042705539613962,-0.023950578644872]],[[0.014741219580173,-0.04974839836359,-0.069723509252071],[-0.080313876271248,-0.017008394002914,0.071803748607635],[-0.076323784887791,-0.00058988167438656,-0.039123028516769]],[[0.040178466588259,-0.063832119107246,-0.14641481637955],[0.016857614740729,0.030661066994071,-0.013710208237171],[-0.16335316002369,0.028386769816279,0.15359181165695]],[[-0.047177512198687,0.013572284020483,0.050447333604097],[0.077989257872105,0.023155029863119,0.14148569107056],[-0.09926450997591,-0.10072663426399,0.048525519669056]],[[-0.14404322206974,-0.029512718319893,0.018134148791432],[-0.1457931548357,-0.10629718750715,-0.037241969257593],[0.030623001977801,0.10323591530323,-0.029530484229326]],[[0.01649216376245,-0.017734291031957,-0.05572160333395],[-0.076299302279949,0.16229286789894,0.0026812837459147],[-0.02258181758225,-0.0087758218869567,-0.0025987594854087]],[[0.14691369235516,0.041385885328054,0.0257632676512],[0.017758930101991,0.026362176984549,-0.02312047034502],[0.050045538693666,0.053621523082256,-0.13930393755436]],[[-0.03565825521946,0.055483389645815,0.040231611579657],[-0.13030609488487,-0.12797778844833,-0.063957557082176],[-0.084147393703461,0.10145191848278,0.045889314264059]],[[-0.14588670432568,-0.078768134117126,-0.031248735263944],[-0.067789398133755,0.11014084517956,-0.0021569069940597],[0.097254298627377,-0.043657705187798,0.10412964224815]],[[-0.057970367372036,-0.038650691509247,0.021604018285871],[-0.010814495384693,-0.10012225806713,0.041859820485115],[-0.023586247116327,-0.032726984471083,0.066777221858501]],[[0.01997690461576,-0.022535298019648,-0.064572840929031],[0.026752851903439,-0.085306368768215,0.016195917502046],[-0.028742220252752,-0.081366568803787,0.087494149804115]],[[0.03921801969409,0.18184608221054,0.089483074843884],[0.057560708373785,-0.056172605603933,0.073665097355843],[-0.016179744154215,0.13475950062275,-0.0037295157089829]],[[0.049898602068424,-0.015150647610426,0.079301744699478],[0.095883585512638,-0.044804099947214,-0.04016949236393],[-0.13739031553268,-0.069851577281952,-0.082091450691223]],[[-0.018474558368325,-0.058025933802128,0.01153592672199],[0.05125167965889,0.063007682561874,-0.021405538544059],[-0.034434344619513,-0.0099046947434545,0.00014161558647174]],[[0.12858636677265,0.012584223411977,-0.058201853185892],[0.13033074140549,0.083351522684097,-0.18920804560184],[-0.00081676593981683,-0.070573836565018,-0.041436318308115]],[[0.0808230265975,0.11486264318228,0.016746526584029],[0.020137619227171,0.043943747878075,-0.11111868917942],[0.11271407455206,0.066879794001579,-0.12727943062782]],[[-0.070495285093784,0.02426584251225,-0.19952619075775],[-0.066460929811001,-0.013254107907414,-0.21272024512291],[0.24628898501396,0.070047102868557,0.066807746887207]],[[-0.15049934387207,0.026170909404755,0.055027335882187],[0.068301603198051,-0.010791594162583,-0.11599472165108],[0.084143824875355,-0.057304140180349,-0.013316741213202]],[[0.094901077449322,0.0045801056548953,-0.0052135693840683],[0.0050768498331308,0.10870657861233,-0.0044776001013815],[-0.078101679682732,-0.03255245834589,-0.11761146783829]],[[0.094040796160698,-0.095550335943699,0.11359293758869],[0.0872957482934,-0.00090217456454411,-0.054674487560987],[0.087103217840195,-0.0067670936696231,0.12895855307579]],[[0.0053125275298953,0.054253574460745,-0.038529071956873],[-0.14135386049747,0.04487032815814,0.097015798091888],[0.031662426888943,0.012183262966573,0.13406978547573]],[[-0.026334967464209,0.058046232908964,-0.046811006963253],[-0.10378410667181,0.03481413051486,-0.10807984322309],[0.069985032081604,-0.011706043034792,0.08218415081501]],[[0.020641030743718,-0.090454794466496,0.14387020468712],[0.070651821792126,-0.11123649030924,-0.081333421170712],[0.015325968153775,-0.11216681450605,-0.020353628322482]],[[0.074396707117558,0.034008797258139,-0.050384413450956],[-0.032689355313778,0.060044761747122,0.066735982894897],[0.068762578070164,0.0081663876771927,0.010697346180677]],[[-0.065521106123924,0.075252301990986,0.10511617362499],[0.13243907690048,0.044299576431513,-0.13997736573219],[0.088523283600807,0.18468810617924,0.0047534229233861]],[[0.033792544156313,-0.026125643402338,0.11494994908571],[-0.00098832056391984,0.0071671158075333,0.0026994834188372],[-0.041178811341524,-0.057276461273432,-0.030552376061678]],[[-0.042471241205931,-0.0038989319000393,0.02321732789278],[-0.039980657398701,0.013716884888709,-0.059248190373182],[0.055355526506901,-0.023938087746501,-0.044439535588026]],[[-0.0034210348967463,-0.13893088698387,-0.049974378198385],[0.023967429995537,-0.020505126565695,-0.0078231003135443],[0.080982707440853,-0.083139918744564,-0.052197735756636]],[[-0.085004799067974,0.0085582733154297,0.049579549580812],[0.018139347434044,-0.031938645988703,-0.0010826322250068],[0.035140261054039,0.054042760282755,0.025779405608773]],[[0.040909510105848,0.050775688141584,0.1968055665493],[-0.076784282922745,-0.018030928447843,-0.077842965722084],[-0.042909182608128,0.0044295783154666,-0.036181855946779]],[[0.061840433627367,-0.018572214990854,0.034511905163527],[-0.070790514349937,0.01789933629334,0.068815149366856],[-0.071232184767723,0.045107547193766,-0.069915428757668]],[[-0.10230197012424,0.11633361876011,-0.22181674838066],[-0.0014559200499207,-0.098735228180885,0.09996971487999],[0.026743330061436,-0.0063119535334408,0.0063822045922279]],[[0.071172431111336,-0.0053443270735443,-0.082583695650101],[-0.018717048689723,-0.06439670920372,-0.049811579287052],[-0.056089587509632,-0.006359837949276,-0.085129529237747]],[[-0.011557351797819,-0.070531137287617,-0.04301168397069],[-0.012356079183519,0.017217751592398,0.042864333838224],[0.097274869680405,-0.068536162376404,-0.19811783730984]],[[-0.025630667805672,-0.0061854412779212,0.11199187487364],[-0.18090492486954,-0.10585086792707,0.0045405467972159],[0.027627741917968,-0.062485419213772,0.14143738150597]],[[-0.049828711897135,-0.16561438143253,0.10354796797037],[0.076623238623142,0.041366882622242,-0.073391236364841],[-0.018300671130419,0.009714056737721,0.073905542492867]],[[0.0091838175430894,-0.006361860781908,-0.10971783101559],[0.046872012317181,0.011349037289619,0.064259983599186],[-0.060333117842674,-0.039772965013981,0.18822605907917]],[[-0.033073045313358,-0.099371507763863,-0.057237822562456],[0.22915777564049,0.16134747862816,0.060205265879631],[-0.22247496247292,-0.01497657597065,-0.18288768827915]],[[0.024179669097066,-0.20980517566204,0.026135148480535],[-0.15344665944576,-0.034978829324245,-0.033046334981918],[-0.047171197831631,0.11575934290886,0.046370219439268]],[[0.010097988881171,0.046535596251488,0.13403813540936],[0.035759583115578,-0.07637482136488,-0.010696965269744],[0.07714020460844,0.064123600721359,-0.061484348028898]],[[0.053741440176964,0.078407526016235,0.10834630578756],[0.031708121299744,0.0070315808989108,0.021874835714698],[0.065826669335365,-0.1504277586937,-0.024161376059055]],[[-0.035672292113304,-0.037821747362614,-0.050900250673294],[0.083627305924892,-0.01361579913646,0.054275453090668],[-0.032162763178349,0.034996338188648,-0.14989128708839]],[[-0.055964969098568,0.016250686720014,-0.0040442747995257],[-0.015571311116219,-0.12988635897636,-0.015351132489741],[0.16727039217949,0.043270476162434,0.041596785187721]],[[0.070168353617191,0.010773004963994,0.10088735818863],[0.031341820955276,-0.064360655844212,0.16375780105591],[0.12609894573689,0.0036507805343717,0.037326205521822]],[[-0.043237645179033,-0.14538550376892,-0.070631541311741],[0.01330713648349,-0.05391089245677,-0.030518697574735],[-0.16018383204937,0.074214912950993,-0.017977820709348]],[[0.079854026436806,0.0027076920960099,0.042938891798258],[-0.049142215400934,-0.13583374023438,-0.014822206459939],[-0.017566820606589,-0.087961189448833,0.017724253237247]],[[0.19879351556301,0.030234159901738,-0.057289224117994],[0.1212662756443,0.060493852943182,0.011207155883312],[0.088046796619892,0.051473960280418,0.016163861379027]],[[-0.048709325492382,0.021759781986475,-0.035247076302767],[-0.13105404376984,0.078291669487953,-0.036421019583941],[0.06195518001914,-0.073820732533932,0.14791494607925]],[[0.12932986021042,-0.17604260146618,-0.13927558064461],[-0.10246949642897,-0.1173727735877,-0.049823291599751],[0.021242989227176,0.035928573459387,0.06712169200182]],[[0.22429710626602,-0.031620912253857,-0.23846146464348],[0.14446039497852,0.025409422814846,-0.20331665873528],[-0.076554469764233,-0.080666519701481,-0.10351999104023]],[[-0.15186113119125,0.0088979853317142,0.027266146615148],[-0.14830112457275,-0.029846338555217,-0.078629679977894],[-0.11110433936119,-0.10644125193357,-0.12345442175865]],[[-0.054978512227535,0.087585031986237,0.021746389567852],[-0.082721717655659,0.023966822773218,0.12515977025032],[0.044413298368454,-0.04585587605834,-0.035516262054443]]],[[[-0.061552558094263,-0.019126633182168,0.063456460833549],[-0.059807017445564,0.11339078098536,0.018745744600892],[-0.037891618907452,-0.028287030756474,-0.15186730027199]],[[-0.05486374348402,-0.061443511396646,0.052065812051296],[0.012165883556008,-0.083887368440628,-0.028095964342356],[0.050784844905138,0.063911102712154,-0.18965269625187]],[[-0.112886890769,0.0083427047356963,0.053257573395967],[-0.01557613350451,-0.085277833044529,-0.023612160235643],[0.033215124160051,-0.010150635614991,0.022709337994456]],[[0.051912125200033,-0.042478978633881,0.039231225848198],[-0.062863081693649,-0.074499510228634,-0.15472510457039],[-0.035331480205059,0.012917187996209,0.031674917787313]],[[0.038751367479563,0.029693230986595,-0.045475371181965],[-0.059435628354549,-0.044466536492109,-0.11774622648954],[-0.017706420272589,-0.074258022010326,0.0018482056912035]],[[-0.026487955823541,-0.0096755884587765,-0.045836102217436],[0.00852613709867,-0.03151847422123,0.087337642908096],[0.012166919186711,0.066885761916637,-0.19843722879887]],[[0.032809343189001,0.032199651002884,-0.058759395033121],[0.060400988906622,-0.029225902631879,-0.0099412510171533],[-0.04443109408021,-0.10800655931234,-0.079238243401051]],[[-0.039615262299776,-0.017563156783581,-0.05195514857769],[0.041724745184183,-0.054943017661572,0.078569948673248],[-0.11228588968515,0.025797814130783,-0.042506624013186]],[[-0.084196902811527,0.071398936212063,-0.02729419618845],[-0.18301124870777,0.086437158286572,0.053983025252819],[-0.00070817384403199,-0.12625335156918,-0.16897581517696]],[[0.03645870834589,-0.0040524336509407,-0.045288629829884],[-0.0070056244730949,-0.0033950346987695,-0.089952684938908],[-0.054403517395258,-0.05885973200202,-0.086207807064056]],[[-0.046528305858374,0.089022099971771,0.013328206725419],[-0.040468234568834,-0.10267313569784,-0.015070111490786],[-0.05089096352458,-0.049324914813042,0.019664391875267]],[[-0.021301347762346,-0.021572737023234,0.054255060851574],[-0.0026692878454924,0.048042848706245,0.062226194888353],[0.081676512956619,0.02073360607028,0.082979686558247]],[[0.025242805480957,-0.048870753496885,-0.011178125627339],[-0.10759685188532,0.012439562007785,-0.00036593541153707],[0.030866308137774,-0.032576974481344,-0.042937386780977]],[[-0.061097890138626,-0.035889785736799,0.038141258060932],[-0.18305750191212,0.026256680488586,0.044945031404495],[-0.056346412748098,0.15686821937561,-0.050916843116283]],[[0.021139863878489,-0.064123287796974,-0.00081789179239422],[-0.10565565526485,0.026680491864681,0.089735828340054],[0.029959384351969,0.018435448408127,0.0088190389797091]],[[-0.0093970876187086,-0.051889978349209,0.097923278808594],[-0.056453641504049,0.0029497109353542,0.11276736855507],[-0.24107556045055,-0.020018056035042,0.061813846230507]],[[0.11696764081717,0.021298004314303,0.073197714984417],[-0.03833269700408,0.012035665102303,0.022825950756669],[-0.12608014047146,-0.042099174112082,-0.03487004339695]],[[0.072671130299568,-0.08699357509613,0.0086442492902279],[0.0072329812683165,0.049233671277761,-0.039872333407402],[-0.16504734754562,-0.047619957476854,-0.17117163538933]],[[-0.064598895609379,-0.072457000613213,-0.030871782451868],[-0.064931966364384,-0.00057482003467157,0.028314413502812],[0.059501014649868,-0.038228485733271,0.004770175088197]],[[0.087117433547974,0.087495647370815,0.062940396368504],[-0.060557547956705,0.017217947170138,-0.0024022902362049],[0.012072460725904,-0.0027749331202358,-0.047449752688408]],[[0.085294157266617,0.1400513201952,0.015662964433432],[-0.064486384391785,0.0061294627375901,-0.022733518853784],[-0.006663404405117,-0.08826295286417,-0.12091727554798]],[[-0.051955237984657,-0.011503933928907,0.042560964822769],[-0.073029458522797,-0.04397701844573,0.017543774098158],[0.034371543675661,0.0050595700740814,0.039693020284176]],[[-0.13446392118931,-0.010155855678022,0.03627498075366],[-0.094952158629894,-0.042466212064028,0.052970536053181],[-0.035599630326033,-0.072295658290386,0.06196279078722]],[[0.12721617519855,0.16207484900951,0.088002815842628],[0.022128712385893,0.014738342724741,0.080262422561646],[0.041618496179581,-0.003189061768353,-0.03087474219501]],[[-0.071404904127121,-0.012682056054473,-0.14777509868145],[-0.089749827980995,-0.064239956438541,0.1690219193697],[-0.010895955376327,0.067201606929302,-0.054437417536974]],[[-0.080308578908443,-0.016474740579724,0.037040144205093],[0.054158173501492,0.025675054639578,-0.095259837806225],[0.012950752861798,0.022350862622261,-0.0088134640827775]],[[0.12124717235565,-0.014720209874213,0.091789856553078],[-0.020240088924766,0.045757830142975,-0.055370967835188],[-0.060591045767069,-0.069702640175819,-0.10498601198196]],[[-0.0074288034811616,-0.028071146458387,0.046532716602087],[-0.07415959239006,-0.073858790099621,0.061034064739943],[-0.046500097960234,-0.020925331860781,-0.12955820560455]],[[0.045127347111702,-0.016165554523468,-0.05242071300745],[0.0030028456822038,-0.034428492188454,0.060530755668879],[-0.15705169737339,-0.013025192543864,-0.15928754210472]],[[0.049361187964678,0.0073571586981416,-0.042822279036045],[0.031368762254715,-0.031655211001635,0.024672558531165],[-0.074278794229031,0.015058452263474,0.073382772505283]],[[-0.00035640606074594,-0.096215084195137,-0.041518896818161],[-0.038483932614326,0.10053312033415,-0.037877153605223],[-0.00036925610038452,-0.013855706900358,-0.10975160449743]],[[0.00061903393361717,0.11525558680296,0.011291140690446],[-0.0088707655668259,0.026243241503835,0.036515358835459],[0.013460044749081,0.044388148933649,0.11874328553677]],[[0.073435768485069,0.016619680449367,-0.081353284418583],[0.015979334712029,0.042864199727774,0.00055484083713964],[-0.061561059206724,-0.098506487905979,-0.051311273127794]],[[-0.020621940493584,-0.0017510213656351,-0.090563282370567],[0.081192515790462,-0.029423039406538,0.081694915890694],[-0.067247427999973,0.015234149992466,-0.06774515658617]],[[-0.036798603832722,0.0067144888453186,0.045801348984241],[-0.059242326766253,-0.033958200365305,-0.071073241531849],[-0.043523371219635,0.051916491240263,-0.05760645493865]],[[-0.018145553767681,-0.0084849847480655,-0.037156440317631],[0.10361326485872,0.020592240616679,-0.069304160773754],[0.15541061758995,0.096484795212746,0.055948123335838]],[[0.085963524878025,0.11116336286068,0.2002882361412],[0.092332758009434,0.030359629541636,0.068426564335823],[0.093421079218388,0.021973622962832,-0.033370327204466]],[[0.020704478025436,0.053485821932554,-0.049809940159321],[0.021823793649673,0.020856050774455,-0.025027450174093],[-0.095104418694973,-0.00054154399549589,-0.12782068550587]],[[-0.012756042182446,-0.05187863111496,-0.047673474997282],[-0.0034070797264576,0.076257579028606,0.11889126896858],[-0.093370512127876,-0.0055438089184463,-0.014020130969584]],[[0.018271194770932,-0.0028544361703098,0.022270468994975],[-0.050801921635866,0.061000406742096,0.042154468595982],[0.10078354179859,-0.030868729576468,-0.07443343102932]],[[0.01655693538487,-0.052197828888893,0.028606215491891],[-0.16188310086727,0.1039420440793,-0.057450264692307],[-0.018929315730929,0.09437084197998,0.03981002792716]],[[0.062228508293629,-0.075641125440598,-0.029909059405327],[0.10785460472107,-0.057958867400885,0.020383501425385],[0.034299049526453,-0.006426069419831,0.022774592041969]],[[0.061021532863379,-0.032942127436399,0.082029208540916],[-0.068957775831223,-0.22174541652203,-0.01814172975719],[-0.062968418002129,-0.0016041302587837,0.0019367656204849]],[[-0.11259623616934,0.008949582464993,-0.062629818916321],[-0.022300396114588,-0.106230430305,-0.067207902669907],[-0.037583842873573,-0.00217992416583,0.023393169045448]],[[-0.050053313374519,-0.018364967778325,-0.082435004413128],[-0.04073516279459,-0.005879441741854,-0.011661571450531],[0.03472987562418,0.013453003019094,-0.012106291018426]],[[0.12100727856159,-0.072918079793453,-0.020947903394699],[-0.13921342790127,-0.0056568519212306,0.13160847127438],[-0.084994360804558,-0.071173526346684,0.089474745094776]],[[-0.19700382649899,-0.080595165491104,-0.09874052554369],[-0.057722542434931,0.1112193018198,0.046111855655909],[0.0015887750778347,-0.07468755543232,-0.038156047463417]],[[0.0012045237235725,0.023716961964965,-0.078237846493721],[0.12241884320974,0.076363049447536,-0.014598546549678],[-0.037117447704077,-0.11219493299723,0.057639349251986]],[[-0.044881116598845,0.083382241427898,-0.089716605842113],[-0.020520873367786,-0.03546030074358,0.087107546627522],[0.075415998697281,0.13132829964161,0.092286586761475]],[[-0.12255845963955,-0.035826373845339,-0.086482875049114],[0.10757361352444,0.15261980891228,0.032853331416845],[-0.10734254866838,0.12165638804436,-0.079881362617016]],[[-0.20990133285522,-0.12980879843235,-0.067658200860023],[-0.039833262562752,-0.10518144071102,0.013411718420684],[0.043985784053802,0.025556368753314,0.0040818639099598]],[[0.081019014120102,-0.063625067472458,-0.076880164444447],[-0.15159280598164,0.020549759268761,-0.035525310784578],[-0.048324272036552,-0.064288713037968,-0.074826754629612]],[[0.063546195626259,0.012229785323143,0.0062493355944753],[0.012588723562658,-0.037713032215834,0.1022562533617],[0.062679372727871,-0.00088977487757802,-0.010081618092954]],[[0.022182643413544,0.11752513796091,0.0049049044027925],[0.016104022040963,0.098706386983395,-0.063455671072006],[-0.081089675426483,-0.0040004095062613,-0.024909811094403]],[[0.038014251738787,-0.020724840462208,-0.052672754973173],[0.018706014379859,-0.060005813837051,-0.0599658600986],[-0.072059080004692,-0.074807927012444,-0.028351942077279]],[[-0.074615724384785,-0.055762656033039,0.052383244037628],[0.0025926972739398,0.0090167876332998,-0.12048409879208],[-0.092515282332897,0.009745467454195,0.093786671757698]],[[-0.066239252686501,0.10886349529028,0.098804295063019],[0.008485022932291,0.113271728158,0.058614049106836],[0.02597782574594,-0.021958185359836,-0.20141825079918]],[[0.025822717696428,-0.025263199582696,-0.043288517743349],[-0.047390542924404,0.091464713215828,0.041349768638611],[-0.01292026322335,-0.027079371735454,0.058092322200537]],[[0.094089634716511,0.022394606843591,0.043055351823568],[0.0018204625230283,-0.0015794320497662,-0.12268007546663],[0.0024348904844373,-0.036349136382341,0.041341751813889]],[[-0.050937801599503,0.081008300185204,-0.037906147539616],[0.031939636915922,-0.01742041669786,-0.13752625882626],[0.080050379037857,-0.0009184442460537,-0.061512429267168]],[[-0.10409673303366,-0.1335391253233,-0.022801626473665],[-0.054540224373341,-0.007032613735646,0.040789503604174],[0.014796015806496,-0.12163187563419,-0.093165926635265]],[[0.046734236180782,0.10297510772943,-0.088123373687267],[0.044612485915422,-0.10286416113377,0.1137418448925],[0.037400312721729,0.081502087414265,-0.057465776801109]],[[0.0087498342618346,-0.052532691508532,0.025271624326706],[-0.073707640171051,-0.17295937240124,-0.013208745978773],[0.087848328053951,0.19259040057659,0.048386257141829]],[[-0.067004010081291,-0.02316265180707,0.044108357280493],[-0.090493492782116,0.061400257050991,0.041656520217657],[-0.0026207419577986,0.022832714021206,0.072449944913387]]],[[[-0.13686688244343,0.014535809867084,-0.016117431223392],[0.040933821350336,-0.078569769859314,-0.10533716529608],[0.10168348252773,-0.10518653690815,-0.046782214194536]],[[-0.14948585629463,-0.12049170583487,-0.099154651165009],[-0.046077027916908,-0.015397985465825,0.043885007500648],[-0.042584147304296,0.13654360175133,-0.0031156050972641]],[[-0.15629628300667,-0.13507224619389,0.053547047078609],[-0.056796927005053,0.062736988067627,-0.02936920337379],[-0.0086404662579298,0.01487569604069,-0.0017048001755029]],[[-0.10080534219742,-0.012181216850877,-0.061480421572924],[-0.08738762140274,0.029227521270514,0.0087963100522757],[-0.086410477757454,0.011638652533293,-0.084860160946846]],[[0.013569221831858,-0.070989310741425,-0.074027262628078],[-0.033466331660748,-0.069310314953327,-0.0081175453960896],[0.014498112723231,-0.00017005819245242,-0.017081102356315]],[[-0.096541419625282,-0.033400230109692,-0.078539676964283],[-0.057017643004656,-0.013219184242189,-0.0566779486835],[-0.17234893143177,-0.022332634776831,-0.002489376347512]],[[0.056084718555212,0.016101937741041,0.038781519979239],[0.013858182355762,0.046560805290937,-0.060905169695616],[0.055542200803757,-0.035488728433847,-0.089953795075417]],[[0.14114163815975,0.095960415899754,0.14333666861057],[0.058043621480465,0.071154668927193,-0.0055511905811727],[0.058148797601461,-0.036233190447092,0.0092601915821433]],[[-0.027866091579199,0.053109709173441,0.062070451676846],[0.027545895427465,0.096118852496147,0.014274515211582],[-0.02837142162025,-0.022450897842646,-0.03395638987422]],[[-0.0011856349883601,0.070502080023289,-0.06595803052187],[-0.024876249954104,0.098679594695568,0.0063231335952878],[0.0086065009236336,0.060480963438749,-0.12123870104551]],[[0.019329784438014,0.047546062618494,0.015826223418117],[-0.16995984315872,-0.038486763834953,0.016257090494037],[-0.18936434388161,-0.11319224536419,-0.058500349521637]],[[0.0039884019643068,-0.10408729314804,0.040575794875622],[-0.01595725864172,0.082951627671719,0.1140153631568],[-0.06093979254365,-0.069420158863068,0.046998169273138]],[[-0.1111448481679,-0.080242566764355,-0.15305081009865],[0.013678655959666,-0.082029223442078,-0.06676110625267],[0.072576150298119,0.089909002184868,-0.055219251662493]],[[-0.087932907044888,0.10803212970495,-0.005854825489223],[-0.076695747673512,-0.031765818595886,-0.032868932932615],[-0.028153326362371,0.1676427423954,0.074830330908298]],[[-0.051931269466877,0.085900887846947,0.0053939172066748],[0.049251429736614,-0.04276379570365,0.022304497659206],[-0.062567830085754,-0.0052540679462254,0.010369994677603]],[[0.058036305010319,0.14004741609097,0.043030500411987],[-0.029999554157257,0.044935833662748,0.1252820789814],[-0.072197809815407,-0.13302195072174,-0.11360730975866]],[[0.056162465363741,0.13230399787426,0.052861124277115],[0.034870490431786,0.025384159758687,0.11330506205559],[0.048471886664629,0.088420696556568,0.067705735564232]],[[-0.13566951453686,-0.11731069535017,-0.060050863772631],[-0.1104396879673,-0.19876159727573,0.050292108207941],[0.045351162552834,0.0068548521958292,-0.043532732874155]],[[-0.066026046872139,-0.008200790733099,0.097492963075638],[-0.15358753502369,0.051298521459103,0.03571766987443],[0.040353637188673,-0.07655806094408,-0.0085266306996346]],[[-0.078959822654724,-0.038353648036718,-0.1381594389677],[-0.021775925531983,-0.12909883260727,-0.14485627412796],[0.037018295377493,0.0055172145366669,-0.0021545356139541]],[[-0.025824317708611,0.065302528440952,0.10365050286055],[-0.035879887640476,-0.014076882973313,0.077405050396919],[0.14884686470032,-0.060647077858448,0.034529350697994]],[[-0.040069408714771,-0.069502294063568,0.030314384028316],[-0.068655505776405,-0.05289363488555,0.032561112195253],[0.013605472631752,0.053408533334732,0.0028403049800545]],[[0.02731891348958,-0.01538966409862,-0.064263768494129],[0.055689509958029,0.048160720616579,-0.033492639660835],[-0.090942353010178,-0.056185983121395,-0.097443327307701]],[[0.034590173512697,0.090514071285725,0.10271573066711],[-0.050415374338627,-0.12197661399841,0.002274027094245],[0.082016550004482,0.019587982445955,0.099671080708504]],[[0.010924769565463,0.15235564112663,-0.060326877981424],[0.033638522028923,0.073779009282589,0.08232706040144],[0.013389630243182,-0.07200688123703,0.14433386921883]],[[0.054125275462866,0.0098694441840053,-0.10245424509048],[0.029634859412909,0.029859548434615,-0.033656362444162],[-0.041410531848669,-0.042958896607161,0.062548138201237]],[[-0.080087170004845,0.015619478188455,-0.050979718565941],[-0.096709482371807,0.14540150761604,0.10484421253204],[-0.10557494312525,-0.0091887349262834,-0.079276904463768]],[[0.026679147034883,-0.074948258697987,0.012400292791426],[0.16571997106075,-0.0585429482162,-0.040152832865715],[-0.05622885003686,0.022120324894786,-0.0010538637870923]],[[0.031136941164732,0.021936828270555,-0.035111233592033],[-0.085223600268364,-0.085849948227406,0.0030564062763005],[-0.040194384753704,-0.021682785823941,0.056426789611578]],[[0.098523683845997,-0.075053133070469,0.037963204085827],[-0.062624134123325,-0.069838240742683,0.052038971334696],[-0.14305603504181,-0.0084833782166243,0.019922155886889]],[[-0.078777261078358,0.1570882499218,-0.086235448718071],[0.081974416971207,0.12612633407116,-0.028989439830184],[0.047073803842068,0.053436197340488,-0.020619302988052]],[[0.020626412704587,0.15692931413651,-0.013822895474732],[-0.0034256668295711,0.060896456241608,0.046653173863888],[0.012035199441016,0.039549142122269,0.0051444820128381]],[[0.040079664438963,0.011522528715432,0.010501156561077],[0.077249437570572,0.063644699752331,-0.036358918994665],[0.17800529301167,0.048618819564581,0.15980878472328]],[[-0.036794509738684,-0.015115407295525,0.00072793429717422],[-0.048535216599703,-0.032606974244118,0.041652388870716],[0.0083222603425384,0.0055705504491925,-0.21117541193962]],[[-0.043367557227612,-0.26121494174004,0.16791971027851],[-0.019084809347987,0.051195468753576,0.045389119535685],[0.097045831382275,-0.16719456017017,0.078378327190876]],[[0.055759821087122,0.035921398550272,0.073934003710747],[0.10898101329803,0.041899807751179,0.0016844095662236],[0.060178194195032,-0.019573155790567,0.007425666321069]],[[0.012046694755554,0.017057919874787,-0.010531916283071],[-0.024298237636685,0.032011620700359,0.024574965238571],[-0.069950513541698,-0.10486939549446,-0.016940241679549]],[[-0.19149242341518,-0.028742613270879,-0.090277172625065],[0.0077199484221637,0.023856291547418,0.039188258349895],[0.12772670388222,0.071742951869965,0.034423474222422]],[[0.1918982565403,-0.17320919036865,-0.020297264680266],[0.049708392471075,0.021047551184893,0.062396574765444],[-0.086555384099483,-0.20273214578629,0.061383847147226]],[[0.10091662406921,0.036568637937307,0.089627951383591],[-0.084687508642673,0.12107308208942,-0.098812557756901],[-0.075148798525333,0.035310920327902,-0.080483660101891]],[[-0.0034021597821265,-0.025143316015601,-0.19897873699665],[-0.15144743025303,0.020619546994567,-0.051784656941891],[-0.10934678465128,0.079863354563713,-0.026501949876547]],[[0.093011155724525,0.0037400911096483,-0.020139424130321],[0.021185945719481,0.020417978987098,0.0084567060694098],[0.16503813862801,0.044571820646524,-0.067324444651604]],[[-0.16187338531017,-0.008875391446054,0.0011563431471586],[-0.1683235168457,-0.056856133043766,-0.051834888756275],[0.14669993519783,0.13583777844906,0.038833979517221]],[[-0.030571468174458,-0.049815487116575,0.064792849123478],[-0.036183375865221,0.024507224559784,0.0094904191792011],[0.056881681084633,-0.10230148583651,0.052812550216913]],[[0.045559193938971,-0.0029095506761223,-0.10110515356064],[0.0426668189466,-0.040856786072254,-0.068406812846661],[-0.014195024967194,0.0073438170365989,-0.095822088420391]],[[0.0074601657688618,-0.033493347465992,0.033909995108843],[0.030566399917006,-0.010157709009945,-0.094380505383015],[0.09325236082077,0.05735370144248,0.12874233722687]],[[-0.19783607125282,0.061021942645311,0.069671407341957],[-0.01972826756537,-0.013834560289979,0.074014849960804],[0.10356391966343,-0.028119897469878,0.078806586563587]],[[0.047284997999668,0.064746491611004,-0.14528380334377],[-0.069454170763493,0.011005933396518,0.0092610362917185],[0.046556189656258,-0.034377824515104,0.01899004727602]],[[0.025347830727696,0.024920597672462,0.024251699447632],[-0.020784301683307,-0.0060700080357492,-0.0026314901188016],[0.034737724810839,-0.045213934034109,-0.059195458889008]],[[-0.032553065568209,0.12624025344849,-0.024029226973653],[-0.031847704201937,0.024249961599708,0.0089162709191442],[-0.13056994974613,0.042764231562614,-0.18203285336494]],[[-0.17152211070061,-0.069310985505581,-0.06996900588274],[-0.026894763112068,-0.064431630074978,0.012417663820088],[0.21997079253197,0.098546974360943,-0.0472700484097]],[[-0.19670429825783,-0.16840079426765,-0.036420822143555],[-0.150097027421,0.032326173037291,0.059561762958765],[-0.14484563469887,0.095032557845116,-0.028979383409023]],[[-0.050891984254122,-0.0082649830728769,-0.017762979492545],[0.1197160333395,0.006708363071084,-0.07751140743494],[-0.035968121141195,0.001079311594367,-0.03296896442771]],[[-0.029477130621672,-0.07827091217041,-0.14028957486153],[-0.06371508538723,-0.059648007154465,-0.01581415720284],[0.070842951536179,0.016150176525116,-0.010999121703207]],[[-0.05431903898716,0.029684139415622,-0.029609126970172],[-0.055053874850273,-0.093894608318806,0.10111915320158],[0.010579043067992,0.065752118825912,-0.018381264060736]],[[-0.062579780817032,0.027301954105496,0.03698493167758],[0.15510059893131,-0.010255072265863,0.046309847384691],[-0.050510663539171,0.14374676346779,-0.13546411693096]],[[0.11891020834446,-0.022586841136217,-0.11558789014816],[-0.0064344517886639,-0.16350723803043,0.039661049842834],[0.035106997936964,-0.2221939265728,-0.021464919671416]],[[0.013781337067485,-0.059639610350132,-0.081949345767498],[-0.018124455586076,-0.0030640834011137,0.086130052804947],[-0.0044306656345725,-0.12612482905388,0.10406748205423]],[[0.012528914958239,0.041002545505762,0.05968701839447],[0.036327913403511,0.082040846347809,-0.10206729918718],[0.067949399352074,0.048852607607841,-0.033607121556997]],[[-0.043027296662331,0.01689350605011,0.014769705943763],[0.093879848718643,-0.10681930929422,0.033674508333206],[-0.060023792088032,-0.03507024794817,0.13689167797565]],[[-0.10451905429363,0.098487533628941,0.040187083184719],[-0.033237043768167,0.0083509441465139,0.039878986775875],[0.042838353663683,0.0051083974540234,-0.05866827070713]],[[-0.1040251031518,0.083233036100864,-0.0071799545548856],[0.016430716961622,0.044910758733749,-0.032214969396591],[-0.10733702778816,-0.0781374797225,0.017596732825041]],[[0.038481555879116,0.052844438701868,-0.082126565277576],[-0.054787628352642,-0.044481571763754,-0.033937629312277],[-0.10696628689766,0.0084872664883733,0.016860501840711]],[[0.09584653377533,0.03819302469492,-0.05720217898488],[0.01213993690908,0.01193995308131,-0.024416889995337],[0.011941885575652,0.06893015652895,0.0023978797253221]]],[[[-0.053851500153542,0.027811471372843,0.052564132958651],[-0.02033900283277,0.066385857760906,0.027841936796904],[0.047338590025902,0.014571394771338,-0.06926991045475]],[[0.0016703841974959,-0.038329515606165,-0.00076775730121881],[-0.082999646663666,-0.012511922046542,0.023219307884574],[-0.036237500607967,0.088697731494904,0.096564747393131]],[[-0.0091057932004333,0.0064446246251464,-0.027947992086411],[0.011404553428292,-0.17036932706833,-0.03698680177331],[-0.043441645801067,-0.01438198890537,0.035565219819546]],[[0.11840471625328,-0.012099669314921,-0.070531532168388],[-0.087407454848289,-0.077362954616547,-0.16544006764889],[0.053893961012363,0.028396552428603,0.015715530142188]],[[-0.0045114834792912,-0.04426009580493,-0.082047276198864],[0.0091265700757504,-0.059077296406031,-0.058319579809904],[0.07727175951004,-0.077314965426922,-0.2533275783062]],[[0.11650554090738,0.10620917379856,-0.080159477889538],[0.020394569262862,0.018984623253345,-0.015695592388511],[0.14532719552517,-0.07546304911375,-0.15130740404129]],[[0.029696201905608,-0.050370808690786,0.078132830560207],[-0.019497698172927,0.10565364360809,0.021927630528808],[0.022948214784265,-0.0053206020966172,-0.076838150620461]],[[0.00065844709752128,0.12443169951439,0.16163782775402],[0.074284583330154,0.06586816906929,0.017148546874523],[-0.25118851661682,-0.21615658700466,-0.17112444341183]],[[0.028243018314242,0.031126236543059,0.15449075400829],[0.060925152152777,0.0031385375186801,-0.055784869939089],[0.073446534574032,0.0035323016345501,-0.039077792316675]],[[-0.015441386029124,0.036432329565287,0.0014799276832491],[0.03677311912179,-0.054946351796389,0.020185166969895],[0.1099845841527,-0.069770708680153,-0.083145178854465]],[[-0.035888586193323,0.062284100800753,0.042022231966257],[0.050471279770136,0.10381473600864,-0.02790112234652],[0.0039829490706325,-0.025938112288713,0.057212892919779]],[[-0.071867138147354,-0.056609369814396,0.0085706189274788],[0.11188902705908,0.020126692950726,0.14449369907379],[-0.030201891437173,0.0042994520626962,0.081177301704884]],[[0.11058556288481,0.01040250621736,0.040947202593088],[-0.012371115386486,-0.15617272257805,0.02029699832201],[0.0060798684135079,0.028055753558874,0.026194833219051]],[[0.0050814826972783,0.11927429586649,-0.01813349314034],[-0.0056273411028087,0.014922353439033,0.030599866062403],[0.046063594520092,0.063140816986561,0.16626758873463]],[[0.04399947822094,0.037652183324099,0.028966646641493],[0.042799711227417,0.14421054720879,-0.098991580307484],[-0.0077351327054203,-0.035328514873981,0.02742912620306]],[[0.021150823682547,0.012110623531044,-0.041044633835554],[-0.09157969802618,-0.11196359246969,0.094821207225323],[-0.049314521253109,-0.042042758315802,-0.053331095725298]],[[-0.042855970561504,0.07802326977253,0.0057051386684179],[-0.052557151764631,0.038504403084517,0.10690250992775],[-0.056347321718931,0.094639167189598,-0.053298577666283]],[[-0.018966883420944,-0.0099652828648686,0.0079429168254137],[0.059848077595234,0.016633784398437,-0.033631823956966],[0.15418022871017,0.040665026754141,0.0092012751847506]],[[-0.13620306551456,0.044300355017185,0.19737181067467],[-0.0064583835192025,-0.011959698051214,-0.073938295245171],[-0.13566380739212,0.013332536444068,-0.10245916247368]],[[0.041615359485149,-0.069576635956764,-0.060893550515175],[-0.027591181918979,0.079516060650349,-0.057737868279219],[-0.11574894934893,-0.2408143132925,0.11448645591736]],[[0.056780312210321,0.0017444825498387,-0.11869286000729],[-0.014028123579919,0.085075758397579,0.041723612695932],[0.055792547762394,0.025375893339515,0.031663943082094]],[[0.098871856927872,0.021370211616158,0.006532228551805],[-0.027860186994076,-0.066423557698727,-0.017174167558551],[0.0058040977455676,-0.10064806044102,0.0065921568311751]],[[0.088873319327831,0.0062574245966971,-0.015891445800662],[-0.28912544250488,-0.0089218206703663,0.0769337490201],[-0.065886095166206,0.027570843696594,0.05867201089859]],[[-0.062824420630932,0.17467181384563,0.18270368874073],[0.063383519649506,0.04123704507947,-0.1490952372551],[0.089055962860584,0.00026418580091558,0.080490313470364]],[[0.022901762276888,0.02141934260726,-0.096917256712914],[-0.0618497133255,-0.018551331013441,0.056204993277788],[0.033409427851439,0.0092622330412269,0.16237650811672]],[[-0.085514716804028,-0.032677747309208,-0.034684803336859],[0.034884035587311,-0.02215469814837,0.020852206274867],[0.059752725064754,0.068907842040062,-0.040562819689512]],[[0.063210211694241,-0.01209309976548,-0.33209526538849],[-0.010519159957767,-0.00043081515468657,-0.086676970124245],[-0.021720197051764,0.12134984135628,-0.11698953807354]],[[-0.16422258317471,-0.048166766762733,-0.054479237645864],[-0.054294019937515,-0.039921034127474,0.036348253488541],[-0.13264891505241,-0.087371669709682,0.073082834482193]],[[-0.080702118575573,0.012625789269805,-0.17464932799339],[0.10558483749628,0.049741432070732,0.080397814512253],[0.031586140394211,0.042569953948259,-0.039603017270565]],[[-0.069203056395054,0.047927036881447,-0.12542346119881],[-0.014049390330911,-0.03891784325242,0.13787646591663],[-0.015640042722225,0.093393266201019,0.060822486877441]],[[-0.032332576811314,-0.0062071229331195,0.045924674719572],[0.041137378662825,-0.032403390854597,0.03550611436367],[0.099893294274807,-0.012417088262737,0.16771641373634]],[[-0.065792165696621,0.11725675314665,0.069596320390701],[-0.047302883118391,0.093540027737617,0.11212564259768],[0.11165323853493,-0.054341621696949,0.0051467656157911]],[[0.047792356461287,-0.077067352831364,0.059931214898825],[0.028254635632038,-0.12040307372808,-0.08986658602953],[-0.0047510475851595,0.21202355623245,-0.16425107419491]],[[-0.099105656147003,-0.11333429813385,-0.073008619248867],[-0.029016809538007,0.039850883185863,-0.12835133075714],[-0.13074225187302,0.0085960952565074,-0.12764404714108]],[[0.019771000370383,-0.059849377721548,-0.10273240506649],[0.049498252570629,-0.024195434525609,0.083547040820122],[0.072216004133224,-0.0099507421255112,-0.077568106353283]],[[0.064099326729774,0.038692243397236,-0.039671935141087],[-0.0057124411687255,0.0072211883962154,0.012888287194073],[0.0026342000346631,0.092225730419159,0.041001107543707]],[[-0.10490356385708,0.034649763256311,0.074865080416203],[0.012186614796519,-0.066239029169083,-0.050629254430532],[0.030743390321732,0.055978506803513,0.063176706433296]],[[0.067664109170437,0.077866248786449,-0.037996146827936],[0.041674587875605,-0.080467499792576,-0.15006767213345],[-0.13763710856438,-0.024106504395604,0.04810319468379]],[[-0.023445526137948,-0.026275353506207,-0.030674356967211],[-0.074448220431805,-0.056709036231041,0.06074532866478],[0.047666911035776,-0.0022593725007027,-0.16512285172939]],[[-0.20274510979652,-0.15252800285816,-0.17013417184353],[0.16122044622898,0.11056908965111,0.03410305082798],[0.0050423783250153,0.054447431117296,-0.0092025157064199]],[[-0.15544708073139,0.016080476343632,-0.12521836161613],[0.0045391228049994,0.064189992845058,-0.058031816035509],[-0.065255366265774,-0.0060929176397622,-0.0429672524333]],[[-0.035404734313488,-0.085953079164028,0.079311974346638],[-0.11401583999395,0.040051605552435,0.11001541465521],[-0.069223314523697,0.030840495601296,-0.019725140184164]],[[0.06951630115509,0.025477627292275,0.028929235413671],[0.070258893072605,0.0075269839726388,-0.14220133423805],[0.014847884885967,-0.0077281477861106,0.014902298338711]],[[0.12730456888676,-0.02881077490747,0.048473984003067],[-0.1161577925086,-0.06805806607008,-0.01953942142427],[-0.058141954243183,-0.098797462880611,-0.015747053548694]],[[0.0075981575064361,-0.055967647582293,0.19438026845455],[0.064621545374393,0.10229001194239,-0.067239426076412],[-0.013007666915655,-0.0052563040517271,0.15772241353989]],[[0.04346489533782,-0.11303716152906,-0.056766126304865],[0.1209584325552,0.17629417777061,-0.11076252162457],[-0.11487285792828,-0.03345250710845,0.017127899453044]],[[-0.094531357288361,-0.074590340256691,0.14820432662964],[-0.11401765793562,-0.072119288146496,0.059885285794735],[-0.099556900560856,-0.037749461829662,-0.03602110221982]],[[0.00014683819608763,-0.13076119124889,-0.090786650776863],[0.048421118408442,-0.0055031310766935,-0.037916593253613],[0.032379563897848,0.0092007294297218,0.12912666797638]],[[-0.03506663441658,-0.041354298591614,-0.013085465878248],[0.042428229004145,-0.10405306518078,-0.022213416174054],[0.034988954663277,0.18990249931812,0.080974288284779]],[[0.099713928997517,-0.082861661911011,0.16713143885136],[0.10213979333639,0.085358820855618,0.08904056251049],[-0.013445624150336,-0.066092513501644,-0.073233619332314]],[[-0.037804123014212,0.0092850001528859,0.10529692471027],[0.24327366054058,0.12396997213364,-0.079241044819355],[0.0033136429265141,0.051149819046259,-0.025258433073759]],[[-0.03186322003603,0.012114184908569,-0.03865947201848],[0.084747307002544,0.079357199370861,-0.062586948275566],[0.053182274103165,-0.014408636838198,0.11564868688583]],[[0.064049378037453,-0.018340893089771,-0.063347086310387],[0.0041927620768547,-0.0095653114840388,0.014549034647644],[-0.0076879789121449,-0.068902440369129,0.013193731196225]],[[-0.048042740672827,0.10032378137112,0.038795959204435],[0.10982760041952,0.005023505538702,0.058189131319523],[-0.078455336391926,-0.15220613777637,-0.04863465577364]],[[-0.029034335166216,0.0099238902330399,0.02650904469192],[-0.030895253643394,-0.018242547288537,0.037925496697426],[-0.25371983647346,0.0081256544217467,0.065137922763824]],[[0.067254289984703,-0.015289383940399,0.10202930122614],[-0.013195814564824,-0.017889969050884,0.027482064440846],[-0.069854430854321,-0.11258438229561,-0.10174803435802]],[[-0.028204126283526,-0.050779055804014,-0.0010991422459483],[-0.073155701160431,-0.094933681190014,-0.04899962246418],[0.14197300374508,0.042114701122046,-0.052004061639309]],[[0.033112332224846,-0.083244651556015,0.010000447742641],[-0.15315029025078,-0.002850177930668,0.10075653344393],[-0.073179803788662,0.023313349112868,-0.10565183311701]],[[0.061270847916603,0.13359908759594,0.081081382930279],[-0.060614135116339,-0.010418443009257,0.014420794323087],[-0.0037728359457105,-0.046624656766653,0.01720205694437]],[[0.08378928154707,0.021749576553702,-0.15899360179901],[0.016795750707388,0.024517361074686,-0.0019605697598308],[-0.0096216108649969,-0.0064878487028182,-0.022463072091341]],[[-0.017409864813089,-0.0011558962287381,-0.057548031210899],[0.080555394291878,-0.024074284359813,-0.022236950695515],[-0.01288148202002,-0.0045338738709688,-0.069434158504009]],[[-0.056065164506435,-0.067290455102921,0.03486829996109],[-0.020049013197422,0.011078801937401,-0.049829684197903],[0.030614346265793,0.0069655952975154,0.0091417701914907]],[[-0.009992397390306,0.011288742534816,-0.010723053477705],[-0.083675622940063,0.029374159872532,0.033152472227812],[0.027632735669613,-0.0043590562418103,0.03246583789587]],[[-0.046965442597866,-0.10120493173599,0.037786830216646],[-0.033500868827105,-0.097301319241524,0.04129946231842],[-0.17501291632652,-0.049089554697275,0.055259142071009]]],[[[-0.033561788499355,0.12139067798853,0.14518460631371],[-0.019725603982806,0.022852879017591,0.072560705244541],[-0.076139964163303,-0.062934160232544,-0.0024316939525306]],[[0.0094269691035151,-0.059254124760628,0.11562597751617],[0.048744894564152,0.021951608359814,0.099741578102112],[0.033947724848986,-0.061406150460243,-0.057179372757673]],[[0.048514276742935,-0.012358698062599,-0.025467816740274],[0.050284463912249,-0.072274804115295,-0.062103986740112],[0.011871262453496,-0.059593759477139,-0.1668389737606]],[[0.16060265898705,-0.10676489025354,-0.10698154568672],[-0.01186603680253,0.033201180398464,-0.080855503678322],[-0.1096858009696,-0.10436560958624,0.090636752545834]],[[0.097522713243961,-0.0295490603894,0.07738646119833],[0.19655025005341,-0.10397288203239,-0.03270922601223],[0.014294609427452,0.0002178949653171,-0.011017987504601]],[[-0.082302905619144,-0.10631712526083,0.011875730007887],[0.11939242482185,-0.020558465272188,-0.047584399580956],[0.0013233830686659,-0.030863124877214,-0.01672082580626]],[[0.070184998214245,-0.0053420625627041,0.18680289387703],[0.071578741073608,-0.109066426754,-0.048345848917961],[-0.01685843989253,-0.030034048482776,-0.010453448630869]],[[-0.14533104002476,-0.004879102576524,-0.022951478138566],[0.1142745167017,0.12185986340046,-0.086022272706032],[0.012213787995279,-0.086449332535267,-0.10679095238447]],[[-0.083127692341805,-0.068299248814583,0.031923219561577],[0.079584673047066,-0.06647277623415,-0.090415097773075],[-0.018713358789682,0.10237581282854,-0.038836449384689]],[[-0.055968318134546,-0.10811183601618,-0.10784599930048],[0.033687081187963,0.046947203576565,0.065248288214207],[0.013598338700831,0.0066453670151532,0.033471282571554]],[[0.1107709556818,-0.031272787600756,-0.074863687157631],[0.00088570412481204,0.043225400149822,-0.031446501612663],[0.00060133478837088,-0.1232378333807,0.0078838272020221]],[[0.023001359775662,-0.058612048625946,-0.031063972041011],[-0.052807860076427,-0.053262412548065,-0.1421444863081],[-0.0119539629668,0.039184521883726,-0.019602688029408]],[[0.092437580227852,0.10901290178299,0.093041121959686],[0.07738471031189,0.016810754314065,0.035038776695728],[0.0036064593587071,-0.03259789198637,0.025087406858802]],[[-0.13029856979847,-0.0059289853088558,0.10302495211363],[0.024688895791769,0.0084791202098131,0.014474264346063],[0.021751154214144,-0.27102074027061,0.030207902193069]],[[0.00377630116418,-0.14378127455711,-0.033250167965889],[0.0043395585380495,-0.0065796454437077,-0.036396190524101],[-0.025562651455402,-0.012812234461308,-0.065311826765537]],[[0.10259864479303,-0.045142401009798,-0.25493043661118],[0.047327298671007,-0.068188905715942,-0.028356160968542],[-0.011066804639995,0.069485642015934,-0.04829690977931]],[[0.014277650974691,0.047183994203806,0.016332326456904],[0.0059937159530818,-0.060237362980843,-0.041306138038635],[0.027093235403299,-0.025292538106441,0.0033527254126966]],[[0.021100951358676,0.022888844832778,0.09920559078455],[0.085866913199425,0.11883342266083,-0.010569028556347],[-0.041970126330853,0.14450903236866,0.12674382328987]],[[0.05175095051527,-0.044400949031115,0.12430475652218],[0.0034114522859454,-0.081868186593056,0.030005091801286],[-0.014996029436588,-0.057840377092361,-0.0063716969452798]],[[-0.01498797070235,-0.10428724437952,0.040499031543732],[-0.064403340220451,-0.0025805097538978,0.062211524695158],[-0.046945873647928,-0.15325590968132,-0.16401202976704]],[[0.070545256137848,0.043560829013586,0.096169590950012],[0.10712496936321,0.0060435868799686,-0.059697102755308],[-0.22887007892132,-0.035663448274136,-0.028472384437919]],[[-0.0092933923006058,0.005495592020452,-0.076194934546947],[0.0084134172648191,0.058201555162668,-0.071407996118069],[-0.034480825066566,0.0512217245996,-0.14582334458828]],[[-0.044712565839291,-0.065819725394249,-0.01982693746686],[0.0033035958185792,0.025063008069992,-0.016637204214931],[0.022793330252171,-0.023369938135147,0.01616825722158]],[[-0.18877139687538,0.058528579771519,0.071600832045078],[-0.049558568745852,0.051691822707653,-0.078337535262108],[0.14637200534344,0.030405664816499,0.025599563494325]],[[0.090715944766998,0.0078069963492453,-0.14060500264168],[0.026237402111292,0.056083887815475,-0.14240334928036],[-0.11368793994188,0.072008140385151,0.032898340374231]],[[-0.0091626951470971,0.02779876999557,0.074185892939568],[-0.078994005918503,0.019209051504731,-0.037655226886272],[-0.038540851324797,0.020845212042332,-0.0098057258874178]],[[0.11547060310841,0.14061702787876,-0.012916051782668],[0.033473931252956,0.10369399189949,-0.016923541203141],[-0.09613960981369,0.034039862453938,-0.020592579618096]],[[-0.011802917346358,0.017626281827688,0.035117480903864],[0.12676309049129,-0.15205493569374,-0.063931062817574],[0.027878636494279,-0.023914681747556,0.0012349147582427]],[[-0.14074285328388,-0.0077613168396056,0.090924330055714],[0.011155630461872,0.051577024161816,0.017196703702211],[0.045489221811295,0.049909833818674,0.014140708371997]],[[-0.010979058220983,-0.0045990883372724,0.060436520725489],[0.053057834506035,-0.064197093248367,0.10416951775551],[0.055302932858467,-0.09262353926897,0.012736042030156]],[[0.012304427102208,0.023623725399375,-0.043638814240694],[0.038896840065718,0.0055687548592687,0.076783619821072],[0.0419767126441,-0.094829127192497,0.098276481032372]],[[-0.094222620129585,-0.11137080937624,-0.018268458545208],[0.044983170926571,-0.016384558752179,-0.031613927334547],[0.05082643404603,-0.0015919653233141,0.060763113200665]],[[0.085460834205151,-0.025520896539092,0.022652400657535],[0.15965984761715,-0.12897633016109,0.059521317481995],[-0.21894823014736,0.081992037594318,0.025821743533015]],[[0.0062872320413589,-0.022027960047126,-0.035017143934965],[-0.0018522903556004,0.048236031085253,-0.10552359372377],[-0.13502742350101,-0.068452320992947,-0.05099331587553]],[[-0.021816654130816,0.030431715771556,0.069918058812618],[0.052925053983927,-0.027255387976766,0.061736572533846],[-0.072916999459267,0.15529535710812,0.024336241185665]],[[0.0437848046422,-0.0021093902178109,0.14431981742382],[0.088552854955196,0.021254746243358,0.047584291547537],[0.038276255130768,0.097592547535896,-0.026303136721253]],[[0.07342604547739,0.072346791625023,0.0069208247587085],[-0.038797043263912,-0.017893563956022,-0.019373482093215],[0.12321301549673,-0.014288149774075,-0.0087407538667321]],[[-0.052417799830437,-0.030554605647922,-0.071421392261982],[0.082473285496235,0.03103400953114,-0.096277572214603],[0.18136470019817,-0.0074163456447423,-0.11308225989342]],[[-0.00226139719598,0.067430056631565,-0.055487420409918],[0.0069055161438882,-0.050673056393862,0.011373792774975],[0.031521990895271,-0.10014463961124,0.0049446877092123]],[[0.0010658653918654,0.019065335392952,-0.071311041712761],[-0.071380585432053,0.031964384019375,-0.075524091720581],[-0.0058329124003649,-0.026407079771161,0.093287356197834]],[[-0.040264945477247,0.023507665842772,0.17509354650974],[-0.13286554813385,0.020538402721286,-0.014176321215928],[-0.035278338938951,0.055523492395878,0.071317851543427]],[[0.04312739521265,-0.052738144993782,0.13756097853184],[0.021141048520803,-0.022116992622614,0.080612562596798],[-0.094918809831142,0.0086625711992383,-0.11676865816116]],[[-0.159762352705,-0.0041414350271225,0.12860605120659],[0.050114963203669,0.093196220695972,0.038866065442562],[0.028181239962578,0.0087256198748946,0.02664490044117]],[[0.030223609879613,0.051448386162519,0.033246193081141],[0.06643108278513,-0.0081378817558289,-0.0015557606238872],[0.14046141505241,0.093554444611073,-0.24306403100491]],[[-0.11555947363377,-0.048636939376593,-0.021354863420129],[-0.047036115080118,0.039641678333282,0.13335990905762],[-0.0084850117564201,0.030755681917071,0.10275533050299]],[[-0.0261908788234,-0.0083500621840358,-0.051810406148434],[-0.045414943248034,-0.034452434629202,0.10569194704294],[-0.057911198586226,0.068613566458225,-0.055128157138824]],[[-0.071515746414661,-0.020141391083598,0.15303346514702],[0.033643435686827,0.064286850392818,-0.085079349577427],[0.041927732527256,0.025545643642545,-0.1785647124052]],[[0.082840643823147,0.065865278244019,-0.0096908640116453],[0.10671202093363,-0.012675645761192,-0.028046540915966],[-0.030878135934472,-0.01821924187243,-0.08607441931963]],[[-0.042952794581652,0.028275914490223,-0.096352085471153],[0.024472875520587,-0.00059244030853733,-0.065736673772335],[0.061451692134142,0.012083921581507,-0.075691498816013]],[[-0.10582353919744,-0.0031877364963293,0.037922166287899],[-0.033843904733658,0.16978369653225,-0.0079725785180926],[-0.025363052263856,-0.016868168488145,0.11623837798834]],[[-0.0038344881031662,0.065764680504799,0.090602144598961],[0.10902759432793,-0.082549102604389,0.016320733353496],[-0.036705650389194,-0.048144660890102,-0.051454748958349]],[[-0.099061377346516,-0.20029373466969,0.023036882281303],[-0.17835102975368,0.099218092858791,0.040757305920124],[0.074333727359772,-0.018816808238626,-0.12507189810276]],[[0.10377085208893,0.012242651544511,-0.019720384851098],[-0.0099555216729641,-0.044653926044703,-0.11113583296537],[0.028550187125802,-0.13433943688869,-0.12432110309601]],[[0.080522187054157,0.021080324426293,-0.044764582067728],[0.1193370744586,-0.04949190095067,-0.049355573952198],[-0.10871742665768,0.064417354762554,0.0041899881325662]],[[0.022557014599442,0.0048882481642067,0.0098338946700096],[0.063566520810127,-0.064158163964748,-0.029030846431851],[0.015366971492767,0.060423515737057,0.053934156894684]],[[-0.12691400945187,0.016718735918403,-0.078976206481457],[0.090089432895184,0.0061879148706794,0.028493534773588],[0.0089821238070726,-0.095164053142071,0.0776581838727]],[[0.015462826937437,-0.014191861264408,0.066372849047184],[-0.013258630409837,0.041790518909693,-0.03767066821456],[-0.014729890972376,0.012424366548657,0.11579644680023]],[[0.01973369717598,-0.028945768252015,-0.047071378678083],[0.051663007587194,-0.11986357718706,-0.042297668755054],[-0.05229327455163,0.060899026691914,0.066560082137585]],[[0.065145090222359,-0.0042939260601997,-0.0095724016427994],[0.01545964833349,0.13370391726494,0.10796973109245],[0.085185669362545,0.15342430770397,0.16332900524139]],[[-0.049499228596687,-0.11938258260489,0.036562155932188],[0.022786036133766,-0.076130479574203,0.026329260319471],[0.068158201873302,0.010464752092957,0.11231008172035]],[[0.021870730444789,-0.10726587474346,-0.063575722277164],[-0.001004233607091,0.019620459526777,0.013561300933361],[-0.041283424943686,0.022128503769636,-0.086047627031803]],[[-0.16329808533192,0.036469381302595,-0.10124292969704],[-0.16353294253349,-0.0194061845541,-0.023197406902909],[0.022306371480227,0.034538984298706,-0.047426328063011]],[[-0.097336068749428,-0.087846845388412,0.043029602617025],[-0.040367849171162,-0.00072562060086057,-0.09463507682085],[0.040614724159241,0.031084209680557,0.078058212995529]],[[0.088586591184139,0.090339615941048,0.0039499020203948],[-0.05695528537035,0.052965890616179,0.023126043379307],[0.13788791000843,0.066179744899273,0.023425413295627]]],[[[0.12958590686321,-0.049905478954315,-0.07048761099577],[0.038869239389896,0.10565023124218,-0.07386576384306],[-0.14489078521729,0.057575888931751,0.040647976100445]],[[0.048434525728226,0.0052873915992677,-0.031950421631336],[-0.079545982182026,0.014231859706342,0.040609620511532],[0.035795409232378,0.073560401797295,-0.11354019492865]],[[-0.016588745638728,0.067166574299335,0.026060864329338],[-0.010251453146338,-0.10871873050928,0.15427239239216],[-0.13964489102364,-0.074325583875179,-0.1363713145256]],[[-0.20745454728603,0.022705240175128,0.07034507393837],[0.017571698874235,0.032109256833792,-0.11889583617449],[0.0092000467702746,-0.048020891845226,0.086518496274948]],[[-0.04556080698967,-0.059204142540693,-0.11166189610958],[-0.022796357050538,-0.077313303947449,-0.049203220754862],[-0.0029135048389435,0.06171116232872,-0.026146082207561]],[[-0.085381880402565,-0.065547958016396,0.12571631371975],[0.12936273217201,-0.003039141651243,-0.010225446894765],[-0.29219216108322,-0.092644438147545,-0.2329902946949]],[[-0.10078497231007,-0.0027492109220475,0.012659196741879],[-0.0012361254775897,-0.055284589529037,-0.092061802744865],[0.047979958355427,0.16620652377605,0.012140151113272]],[[0.13973803818226,0.05069961771369,0.067698150873184],[-0.056412648409605,0.042194411158562,0.080336414277554],[0.089827843010426,0.16165687143803,-0.14020685851574]],[[-0.03602646663785,-0.13746304810047,0.013491745106876],[0.11906135082245,0.10834426432848,-0.041108101606369],[0.047452051192522,-0.12398798763752,-0.0029306036885828]],[[0.064154699444771,-0.070502854883671,-0.060837853699923],[0.070147097110748,-0.023353282362223,0.007150970865041],[0.048720367252827,0.0018127454677597,-0.057531397789717]],[[-0.033292900770903,-0.015010317787528,0.06859540194273],[0.0044624358415604,-0.032362274825573,0.043225590139627],[-0.064538069069386,0.024148382246494,-0.079479791224003]],[[-0.066098935902119,-0.050655703991652,-0.22712372243404],[0.0094978883862495,0.031823880970478,-0.068605877459049],[-0.030486945062876,0.046529248356819,0.062054850161076]],[[-0.069914765655994,0.10398396104574,-0.096869260072708],[-0.025720110163093,0.02481665275991,0.0042569665238261],[-0.085338041186333,0.081785045564175,-0.024912824854255]],[[0.14538452029228,-0.021056877449155,0.02424169704318],[0.041351858526468,-0.17423495650291,0.078130953013897],[0.038849756121635,-0.058781716972589,-0.084810078144073]],[[-0.17049841582775,0.0070512895472348,-0.046490900218487],[0.10874647647142,0.018675327301025,-0.26450115442276],[0.062669411301613,0.11516980081797,0.027006322517991]],[[0.083255507051945,0.031665902584791,-0.050523478537798],[0.096158213913441,-0.045867223292589,-0.006671906914562],[0.025346137583256,0.064243271946907,-0.074261538684368]],[[-0.035771030932665,-0.040483582764864,-0.20469672977924],[0.062782593071461,0.025565786287189,-0.095159277319908],[0.014047867618501,-0.084419317543507,0.072794109582901]],[[-0.057965718209743,-0.057365361601114,-0.050229668617249],[-0.060090102255344,0.066615909337997,-0.035708777606487],[0.050053685903549,0.075106129050255,0.10067754238844]],[[-0.12898330390453,-0.14887757599354,0.068051926791668],[-0.1647824794054,0.0022613049950451,-0.01498606055975],[-0.02991402707994,-0.011167906224728,-0.062132027000189]],[[-0.12940868735313,-0.086653053760529,-0.07574250549078],[-0.085966356098652,-0.053814150393009,-0.074480719864368],[-0.063246436417103,-0.17746226489544,-0.19724327325821]],[[0.17595721781254,-0.03849109634757,0.062724076211452],[0.056176368147135,0.11972426623106,0.044051870703697],[-0.12415008991957,-0.13555656373501,-0.036671675741673]],[[0.018743259832263,-0.029908418655396,-0.026821613311768],[0.034230593591928,0.060973022133112,-0.0042839632369578],[-0.077876150608063,-0.054530661553144,-0.037614822387695]],[[0.0052216113545001,0.0710713788867,0.0059010004624724],[-0.048662215471268,-0.038706887513399,0.029637672007084],[-0.04047330096364,0.035247087478638,-0.12315904349089]],[[0.065848223865032,0.12888416647911,0.07244436442852],[-0.17007306218147,0.037977386265993,0.015265394933522],[0.17369948327541,0.18478806316853,0.00066217279527336]],[[0.094349168241024,0.08111510425806,-0.005467152222991],[0.059650421142578,0.087807610630989,0.098509825766087],[0.054340753704309,0.091870933771133,0.0022110443096608]],[[0.063015975058079,-0.075460769236088,-0.051077589392662],[-0.044668972492218,0.033876746892929,0.0027679041959345],[0.02772780880332,-0.0021779797971249,0.046342059969902]],[[-0.05990381911397,0.061630170792341,0.00039561864105053],[0.056308142840862,-0.058953419327736,-0.20971700549126],[0.0042271218262613,-0.20709277689457,-0.14354091882706]],[[0.10411129146814,-0.064630284905434,-0.055854555219412],[-0.11226055771112,-0.070686168968678,-0.037409242242575],[0.0038555704522878,0.066885404288769,0.063133783638477]],[[-0.010129206813872,0.074633449316025,-0.011720922775567],[-0.039294630289078,-0.059279676526785,0.0032337831798941],[0.052833821624517,-0.045542329549789,0.10820496827364]],[[-0.064092628657818,0.092910654842854,0.021103063598275],[0.019809249788523,-0.055987790226936,0.028191532939672],[-0.095770187675953,0.015903638675809,-0.048379823565483]],[[-0.10642360150814,-0.065917387604713,0.14071092009544],[0.0097401160746813,0.024580789729953,-0.0023584458976984],[-0.073634497821331,-0.036939419806004,0.018306730315089]],[[-0.0073378952220082,0.015017895027995,-0.0007145898998715],[-0.037144090980291,0.035878211259842,-0.028962252661586],[0.17581970989704,0.093299433588982,0.19354932010174]],[[-0.091244071722031,0.033603813499212,0.099127605557442],[0.09962809830904,0.027272589504719,0.063784889876842],[-0.091549217700958,0.072888851165771,0.00942263007164]],[[0.042845778167248,-0.14310044050217,-0.07843391597271],[-0.1788649559021,0.014072799123824,-0.18727789819241],[-0.078771345317364,-0.06513138115406,-0.16544400155544]],[[-0.10210204124451,-0.22137035429478,-0.11199001967907],[-0.11187714338303,-0.12293540686369,0.077694460749626],[-0.14627100527287,-0.11141104251146,-0.050330378115177]],[[0.091276921331882,-0.073795504868031,-0.043654125183821],[0.006375634111464,-0.12408426403999,-0.040226750075817],[0.083937495946884,0.048942733556032,-0.010805084370077]],[[0.05285781621933,0.0036084076855332,-0.05418873950839],[0.037482392042875,-0.034306280314922,-0.091519899666309],[0.00020345255325083,0.052642468363047,-0.080725096166134]],[[-0.097788818180561,-0.076344639062881,-0.069608978927135],[0.080695144832134,-0.050111226737499,-0.012170044705272],[0.15905167162418,0.014817841351032,0.054076142609119]],[[-0.026710700243711,-0.13379108905792,-0.11943506449461],[-0.16304281353951,-0.072114445269108,0.061872035264969],[0.15838113427162,-0.073262467980385,0.056201130151749]],[[-0.082124508917332,0.17536324262619,-0.049505770206451],[-0.054490324109793,-0.060534540563822,-0.054248508065939],[0.031125830486417,0.042379308491945,0.0029816417954862]],[[0.17381405830383,0.074839487671852,-0.11038670688868],[-0.067987374961376,0.0088267158716917,-0.096931226551533],[0.0067534097470343,-0.092481836676598,-0.1945077329874]],[[0.099544160068035,-0.022122202441096,-0.027312038466334],[0.060825016349554,0.044340912252665,-0.073283739387989],[-0.14139507710934,0.051971506327391,-0.099478140473366]],[[0.13000969588757,-0.16530710458755,0.12617135047913],[0.030175883322954,-0.0077659394592047,-0.059485755860806],[0.040273576974869,0.076182305812836,0.003856617026031]],[[0.031938336789608,0.0096192425116897,0.10884533077478],[0.076344318687916,0.0052897944115102,-0.088240936398506],[-0.25007504224777,0.039772897958755,-0.0058896606788039]],[[-0.10548686236143,0.052671648561954,0.01429258286953],[0.010524736717343,0.019161030650139,-0.0073701846413314],[0.11990214884281,0.019477985799313,0.015617222525179]],[[0.071446813642979,0.025848092511296,0.1282297372818],[-0.052866362035275,-0.052780795842409,-0.097341537475586],[0.029223214834929,-0.029862677678466,-0.08611374348402]],[[0.083137385547161,-0.067487671971321,-0.053801979869604],[0.18190267682076,-0.029024528339505,-0.067550972104073],[0.052769042551517,0.0021502440795302,-0.085201576352119]],[[0.057847116142511,0.020560456439853,0.019387766718864],[-0.038460902869701,-0.13524363934994,-0.03622131049633],[0.011689404025674,0.018749581649899,0.077645666897297]],[[-0.038288317620754,0.044810861349106,-0.11416637897491],[0.0010526002151892,0.099944584071636,0.093837730586529],[0.026404291391373,-0.073855526745319,-0.069148547947407]],[[-0.075636848807335,-0.030529085546732,0.13847908377647],[-0.090599171817303,0.097023367881775,0.039239358156919],[0.12717500329018,0.026530483737588,-0.022666594013572]],[[0.17148387432098,0.013288530521095,0.042122561484575],[0.090736076235771,-0.01931513287127,-0.10518866032362],[0.011961027048528,-0.20600412786007,0.11654877662659]],[[0.25477883219719,0.083442933857441,0.057386536151171],[-0.072201520204544,0.046594198793173,0.096170589327812],[-0.082515306770802,-0.0053227012977004,-0.029535168781877]],[[-0.087699800729752,-0.056654840707779,0.036402005702257],[0.018982628360391,-0.033045619726181,-0.028932495042682],[-0.048643194139004,-0.010373235680163,-0.064932279288769]],[[0.069713778793812,-0.024932665750384,-0.011209421791136],[-0.00099529849831015,0.0088018160313368,-0.023792289197445],[0.20199786126614,0.14760556817055,0.11399421095848]],[[-0.060275498777628,-0.025615114718676,-0.055257428437471],[0.034669801592827,-0.061127919703722,-0.098118714988232],[-0.0067101703025401,0.036376498639584,0.21077473461628]],[[0.04987645149231,0.011428986676037,-0.030715124681592],[-0.0037280751857907,-0.065580800175667,-0.14036945998669],[-0.02577287517488,0.12624821066856,-0.10823828727007]],[[0.10902386158705,0.022667549550533,0.059409115463495],[-0.13761748373508,-0.014054969884455,-0.060551412403584],[-0.053238097578287,-0.0048561664298177,-0.0087765725329518]],[[-0.050484303385019,0.019859289750457,0.09062571823597],[-0.014638509601355,-0.026802504435182,-0.026691121980548],[0.044582031667233,0.024501346051693,0.017364714294672]],[[-0.047489076852798,0.070863395929337,-0.047223631292582],[0.061011526733637,0.060568742454052,0.070782065391541],[-0.042301416397095,0.029513381421566,0.08748883754015]],[[-0.23119357228279,-0.096560843288898,0.13775353133678],[-0.17395536601543,-0.0098605807870626,0.18460792303085],[-0.092912726104259,-0.064083978533745,0.063767343759537]],[[0.034188978374004,-0.09588848054409,-0.098831981420517],[-0.10032100230455,-0.0066824806854129,0.008017030544579],[0.019887693226337,-0.069184117019176,-0.0029562641866505]],[[-0.11537945270538,-0.0764240026474,-0.056583907455206],[-0.017236663028598,-0.12458532303572,-0.14111621677876],[0.026403551921248,0.037325974553823,-0.11472196131945]],[[-0.040725212544203,0.1027072891593,0.13060532510281],[0.064172029495239,0.090181827545166,-0.0086373649537563],[-0.038977045565844,0.030891178175807,0.14600642025471]],[[0.090585447847843,-0.14059048891068,-0.10522271692753],[-0.12894374132156,-0.070292055606842,-0.030011836439371],[-0.030107257887721,-0.072702869772911,-0.098613001406193]]],[[[-0.10738991200924,-0.052983742207289,-0.073856085538864],[-0.042974781244993,-0.093406707048416,-0.020182564854622],[-0.071618169546127,-0.042635299265385,-0.050464853644371]],[[0.045346438884735,0.070982359349728,0.0093416599556804],[0.055229175835848,-0.0075078089721501,-0.038515761494637],[-0.016558635979891,0.067296616733074,-0.02704006806016]],[[-0.11880787461996,-0.069138988852501,0.01867919228971],[-0.063783332705498,-0.11755323410034,-0.053175456821918],[-0.023116644471884,0.011092557571828,-0.097180783748627]],[[-0.034757431596518,0.11245451122522,0.092581607401371],[-0.035963080823421,-0.078109852969646,0.13876214623451],[0.00042480489355512,0.019487105309963,-0.011510048061609]],[[0.017025234177709,-0.10175997018814,0.010150723159313],[0.0062701655551791,-0.11140472441912,0.0057585872709751],[-0.041219256818295,-0.19234822690487,0.048922676593065]],[[-0.056061588227749,0.14335045218468,-0.011385839432478],[0.055622857064009,0.071971096098423,-0.016163479536772],[0.07310651242733,-0.015396079979837,0.061506323516369]],[[-0.11894591897726,0.010438471101224,-0.017707111313939],[0.02382673509419,0.08715233206749,-0.02399742975831],[0.0082140751183033,-0.029375340789557,-0.079125620424747]],[[0.0077393394894898,0.012521459721029,-0.062518700957298],[0.060777798295021,0.022173004224896,-0.078217707574368],[-0.00067377689993009,-0.041073679924011,0.031555898487568]],[[-0.0053438879549503,0.047172661870718,-0.053330797702074],[0.0017210292862728,-0.00085646327352151,0.043291222304106],[0.019749697297812,0.084914736449718,-0.015973994508386]],[[-0.045449703931808,-0.043266542255878,0.040547717362642],[0.015688832849264,0.034797959029675,-0.011076250113547],[-0.0064909067004919,-0.025394160300493,-0.0017290683463216]],[[0.085347689688206,-0.037419762462378,-0.03178183734417],[-0.026796400547028,-0.16522477567196,0.022995969280601],[0.013828288763762,-0.055776551365852,0.11195328831673]],[[0.04120259732008,0.026306062936783,-0.054411917924881],[-0.019027223810554,-0.029511397704482,0.019067915156484],[-0.051296230405569,-0.027498928830028,0.081311121582985]],[[0.054907903075218,-0.050026141107082,-0.010187522508204],[-0.065783925354481,-0.015840012580156,0.0084389708936214],[-0.024166524410248,0.0012467949418351,0.059464532881975]],[[0.00048868742305785,0.050817251205444,0.016243850812316],[-0.028704602271318,-0.12024939805269,-0.013634043745697],[-0.11681516468525,0.02156275883317,-0.061070796102285]],[[0.0064382324926555,0.0033790692687035,0.1211002022028],[0.10565852373838,-0.11246659606695,0.015633082017303],[0.054472662508488,-0.039293501526117,0.12191140651703]],[[0.073631167411804,-0.039215344935656,0.015967488288879],[-0.017407789826393,0.032914411276579,-0.042161922901869],[-0.022212192416191,-0.040201250463724,0.19904088973999]],[[-0.00040328421164304,0.065299838781357,0.14136728644371],[0.095180951058865,-0.064747385680676,0.05997334420681],[0.026528913527727,-0.055095858871937,-0.067224808037281]],[[0.026437949389219,0.0099933575838804,-0.013017914257944],[-0.069524116814137,-0.0050581032410264,0.075532048940659],[-0.09334272891283,0.040214523673058,-0.0051987320184708]],[[-0.015764813870192,-0.0090045696124434,-0.025830090045929],[0.035029098391533,-0.082899659872055,0.040149737149477],[-0.026816485449672,-0.10527338087559,-0.032456092536449]],[[-0.06112290173769,-0.0063292351551354,-0.066474005579948],[-0.094150751829147,0.087338760495186,-0.029522145166993],[0.043643157929182,-0.14378237724304,-0.051702279597521]],[[-0.047821838408709,-0.074835628271103,0.037248808890581],[0.10871797055006,0.022669674828649,-0.023548617959023],[-0.038836970925331,0.026930356398225,-0.028386374935508]],[[-0.0096256975084543,-0.052811525762081,-0.017554491758347],[-0.024109721183777,0.0023393286392093,0.027229374274611],[-0.06399592757225,-0.0263313036412,0.03313647210598]],[[-0.01201696228236,-0.064305782318115,0.034497503191233],[-0.0030277688056231,-0.055456690490246,0.017283411696553],[0.0095999296754599,-0.12170265614986,0.17499060928822]],[[0.049730230122805,0.10398911684752,0.076413251459599],[0.067663609981537,0.042520128190517,0.1879567950964],[-0.077167794108391,0.078747950494289,0.067238867282867]],[[0.031915690749884,0.070458546280861,0.11168160289526],[0.048858001828194,0.079240761697292,0.093106344342232],[-0.097962126135826,0.039969924837351,0.073555186390877]],[[0.052425522357225,0.0150001719594,-0.0049012289382517],[0.060319196432829,0.071902133524418,-0.067415922880173],[-0.017710851505399,0.018233146518469,-0.079178303480148]],[[-0.011019162833691,-0.086211323738098,-0.021187728270888],[-0.00778733426705,0.034496556967497,0.00072612677467987],[-0.07063215225935,-0.00090824521612376,-0.037188943475485]],[[0.14279599487782,-0.030607899650931,-0.019847631454468],[-0.018374832347035,-0.098756149411201,0.024215288460255],[-0.058332204818726,0.057871833443642,-0.047169968485832]],[[0.0017567749600857,0.029184892773628,-0.01220297627151],[-0.061224650591612,0.073130719363689,-0.056624677032232],[0.044723324477673,0.085488311946392,-0.1077418550849]],[[0.036834020167589,-0.0067097083665431,-0.0034547203686088],[0.10824878513813,0.082300245761871,-0.074534356594086],[0.0065978937782347,-0.04648282378912,-0.094463102519512]],[[0.013842897489667,0.018839921802282,0.05274598672986],[0.067975513637066,-0.039349015802145,0.14555969834328],[-0.036301400512457,-0.029123796150088,0.21292272210121]],[[0.022093748673797,0.12896859645844,0.054967798292637],[0.17899996042252,-0.002283648820594,-0.046649005264044],[-0.022479634732008,0.011961189098656,-0.055858422070742]],[[-0.0021507076453418,0.017274778336287,0.062500059604645],[0.0006108584930189,0.066872425377369,-0.037856295704842],[0.033265959471464,0.050242997705936,-0.07011467218399]],[[0.012488504871726,0.015495021827519,-0.10097838193178],[0.02663167193532,-0.0063701122999191,0.14575643837452],[0.18635296821594,0.073366306722164,0.091379210352898]],[[-0.015775559470057,-0.0051354449242353,0.0011768677504733],[0.037352867424488,-0.16576054692268,0.045084498822689],[0.034135989844799,0.001291639637202,-0.04176090657711]],[[0.057431202381849,0.077887803316116,0.055876761674881],[-0.0020792328286916,0.073334604501724,-0.03137594088912],[-0.036169663071632,-0.020540254190564,0.027051668614149]],[[0.000174294837052,0.033897783607244,-0.051166769117117],[-0.041874472051859,-0.0080390572547913,-0.0023176551330835],[0.10581158101559,0.082537427544594,-0.036780707538128]],[[0.065237998962402,-0.027434166520834,-0.0093537997454405],[0.0064691565930843,-0.051533058285713,-0.11191307753325],[0.089889951050282,0.030514208599925,-0.088385477662086]],[[0.054426699876785,0.016039319336414,-0.093020670115948],[-0.042748063802719,-0.03454577177763,-0.024013010784984],[-0.10526995360851,-0.024820743128657,-0.045543950051069]],[[0.022992642596364,0.0038818195462227,-0.049198292195797],[-0.023105775937438,-0.029980411753058,-0.013336014933884],[0.064776733517647,0.14768850803375,0.014587027952075]],[[0.029375540092587,0.096325956285,0.035629503428936],[-0.014907937496901,-0.083328239619732,-0.084693767130375],[-0.035698741674423,-0.088213875889778,-0.040604285895824]],[[0.13221263885498,0.041132349520922,0.0032908646389842],[0.052046578377485,-0.18216019868851,-0.0081552444025874],[0.018888261169195,-0.0090313646942377,-0.0062612919136882]],[[-0.027506383135915,-0.041396748274565,0.13598388433456],[-0.13190743327141,-0.080335669219494,-0.080557659268379],[0.010859557427466,0.01488296687603,-0.15159332752228]],[[0.039662156254053,-0.0067757139913738,-0.049866653978825],[-0.026480810716748,-0.043422173708677,0.047872696071863],[-0.1790521889925,0.078057408332825,0.014250149950385]],[[0.093541838228703,0.051869090646505,-0.033153492957354],[-0.045746404677629,0.058683414012194,-0.026521006599069],[-0.0014228640357032,0.075083918869495,-0.19391399621964]],[[0.14439421892166,0.11611653864384,-0.041080214083195],[0.021337931975722,-0.0090377787128091,-0.046139236539602],[0.12669418752193,0.089403986930847,0.050146002322435]],[[0.055668711662292,-0.091035716235638,-0.062652707099915],[-0.14114394783974,0.0088445190340281,0.10774763673544],[0.060097046196461,0.034833397716284,0.029032472521067]],[[-0.031147269532084,0.092643693089485,0.048564255237579],[-0.01047879550606,0.057267148047686,-0.041401889175177],[0.045457620173693,-0.093167096376419,0.03584598004818]],[[0.023270538076758,-0.035250063985586,0.067815192043781],[-0.027779722586274,-0.015969628468156,0.11494550853968],[-0.07037890702486,-0.085736714303493,-0.041649125516415]],[[-0.037410091608763,0.082971259951591,0.15279433131218],[0.053048484027386,-0.06477764248848,-0.099734410643578],[-0.017334189265966,0.11291340738535,-0.13441929221153]],[[-0.0055648577399552,-0.022872880101204,-0.030300805345178],[-0.058174934238195,0.035261537879705,0.072768658399582],[-0.056900918483734,-0.055503811687231,-0.059043556451797]],[[-0.14157019555569,-0.034625321626663,-0.0764140188694],[0.047756385058165,-0.088400296866894,0.11058796197176],[0.22036997973919,-0.041113134473562,-0.026345198974013]],[[-0.023733021691442,0.013800845481455,0.15446496009827],[0.14426352083683,0.010529571212828,-0.066494502127171],[-0.036047838628292,0.10926747322083,0.11222972720861]],[[-0.14455412328243,-0.03575261682272,-0.053666703402996],[-0.14894758164883,-0.11837945878506,-0.027962369844317],[0.1003644540906,-0.060274470597506,-0.19286680221558]],[[-0.091133907437325,0.0029982547275722,-0.011307870969176],[-0.045258458703756,-0.082226634025574,-0.1974949836731],[0.10368227958679,-0.045979864895344,-0.07049922645092]],[[0.024427641183138,-0.04063905775547,-0.13056492805481],[0.007911148481071,0.06092194840312,-0.072234243154526],[0.113674685359,-0.070848226547241,0.064687691628933]],[[-0.033782932907343,-0.035949066281319,-0.03061649017036],[-0.027619006112218,-0.067895494401455,0.0065424661152065],[-0.00087535544298589,-0.040906898677349,0.07890248298645]],[[0.024692257866263,0.047865502536297,0.020611699670553],[-0.030419999733567,0.056090593338013,0.058562789112329],[-0.028018129989505,0.062710598111153,-0.0072363326326013]],[[0.040265154093504,0.072177328169346,0.085960291326046],[0.0074175456538796,0.024425983428955,0.023602869361639],[0.077586516737938,0.04713536053896,0.035249125212431]],[[-0.19471944868565,0.011678019538522,0.064239218831062],[-0.099187962710857,0.015819728374481,-0.080740191042423],[0.01386312302202,-0.012762123718858,-0.054843209683895]],[[0.055825743824244,-0.10154189914465,-0.024016555398703],[0.075126349925995,0.091963872313499,0.019772924482822],[0.041721738874912,0.068303778767586,-0.0096896085888147]],[[-0.18785440921783,0.00048365359543823,-0.025955541059375],[0.073469214141369,0.029844928532839,0.093438178300858],[0.065883658826351,-0.09739001095295,0.0015315543860197]],[[-0.061995767056942,-0.061649702489376,-0.12731590867043],[0.13047650456429,0.073394261300564,-0.14815694093704],[-0.090420700609684,-0.016426021233201,0.031264495104551]],[[0.096980817615986,-0.012539009563625,-0.14303231239319],[0.017202243208885,-0.051754496991634,-0.049582693725824],[-0.045949909836054,0.10495290160179,-0.11566361784935]]],[[[-0.0061591998673975,0.022506268694997,-0.0090072732418776],[0.032118752598763,0.051740601658821,-0.031765904277563],[-0.0038836423773319,-0.0049310252070427,-0.093983449041843]],[[-0.012866889126599,0.006836689542979,-0.0034941688645631],[-0.0028754596132785,0.031961031258106,0.0069999839179218],[-0.0095837358385324,-0.023375909775496,-0.012784627266228]],[[-0.015104719437659,-0.023016827180982,0.02996027469635],[-0.032553523778915,-0.079929746687412,0.037863153964281],[0.029666528105736,-0.017617048695683,-0.029065392911434]],[[0.014577903784811,-0.039849631488323,0.0058748871088028],[0.053237721323967,-0.025503266602755,0.0072217350825667],[-0.0029102438129485,0.0033260039053857,0.0065010855905712]],[[-0.0098777087405324,-0.018496869131923,-0.022629862651229],[0.013385642319918,-0.033632162958384,-0.053713738918304],[0.053307559341192,0.031216230243444,0.0064231599681079]],[[-0.0027151734102517,-0.013125899247825,0.017246138304472],[-0.0033628556411713,-0.021750034764409,-0.055775031447411],[-0.0053005912341177,0.0066505540162325,0.052358284592628]],[[-0.0073083466850221,0.017643446102738,-0.04842621088028],[0.060017298907042,0.016380000859499,-0.0015092018293217],[-0.0039464998990297,-0.013389428146183,-0.023223636671901]],[[0.0091060437262058,0.0066005405969918,0.0024609011597931],[-0.00012576843437273,-0.015208460390568,-0.020870523527265],[0.023916967213154,-0.0047241444699466,-0.0032705590128899]],[[0.0059653287753463,-0.023953061550856,0.019189808517694],[0.020116126164794,-0.017156826332211,0.010108455084264],[0.024125508964062,-0.026169903576374,-0.0075585450977087]],[[-0.0035672609228641,0.049528200179338,0.048856839537621],[-0.073962494730949,-0.053364038467407,-0.024784214794636],[0.039861790835857,-0.025970499962568,0.023916509002447]],[[0.003778449492529,0.024251904338598,0.018416155129671],[-0.023346276953816,0.028889514505863,-0.027212722226977],[-0.015542356297374,-0.0077897808514535,0.012312388047576]],[[0.024034600704908,-0.036296743899584,0.020750414580107],[-0.034461844712496,0.025940822437406,-0.0012226573890075],[0.03598640859127,-0.039835836738348,0.014277231879532]],[[0.0030759030487388,0.0081017399206758,0.016231080517173],[-0.038008112460375,-0.024565162137151,5.702761336579e-05],[0.01911018230021,0.026804570108652,-0.02457781881094]],[[0.025064293295145,-0.015814932063222,-0.00043140319758095],[0.013856331817806,-0.017481166869402,-0.0092628840357065],[0.024239027872682,-0.002207987010479,-0.018653154373169]],[[0.0050189318135381,0.03148939833045,-0.04648432135582],[0.019552163779736,-0.021202402189374,0.052620001137257],[-0.00056310911895707,-0.0029209910426289,-0.021238412708044]],[[0.0071763996966183,0.025410233065486,-0.015713775530457],[-0.029236378148198,-0.032301634550095,0.020750880241394],[0.030840357765555,-0.037727870047092,0.023429028689861]],[[0.0051191565580666,0.038623835891485,-0.0016822097823024],[-0.048505261540413,-0.017533706501126,0.01243145018816],[-0.012001254595816,-0.0059165148995817,0.011766748502851]],[[0.050656292587519,-0.012242779135704,0.0016021532937884],[0.006736836861819,-0.014511716552079,-0.039730917662382],[0.055967818945646,-0.060846146196127,0.0095120575278997]],[[-0.0039881905540824,-0.011841737665236,-0.01742591150105],[0.0064907232299447,0.0040439083240926,0.02894214913249],[-0.0098651824519038,0.025586202740669,-0.017012219876051]],[[-0.0012080208398402,-0.020886776968837,-0.005013492424041],[0.0093700205907226,-0.008045069873333,-0.022717159241438],[-0.015043555758893,-0.020156005397439,-0.0052342009730637]],[[-0.00072136329254135,0.011027573607862,-0.022526351734996],[-0.012331832200289,-0.0028462090995163,0.028403731063008],[0.034860748797655,-0.01964284107089,-0.011839024722576]],[[0.012508873827755,0.069726034998894,0.064750857651234],[0.056359153240919,0.18862901628017,0.05377196893096],[0.054831650108099,0.10317753255367,0.098697885870934]],[[0.029810536652803,-0.040821209549904,0.020874148234725],[-0.021475404500961,-0.030540633946657,0.01418524235487],[0.021394805982709,-0.041304670274258,0.0344393029809]],[[0.019397405907512,0.049200262874365,0.001576571026817],[-0.021556040272117,-0.026644948869944,0.010340128093958],[-0.020823713392019,-0.0020179937127978,0.0042541404254735]],[[-0.010364085435867,-0.0013200520770624,0.045594219118357],[0.026770051568747,-0.011837359517813,-0.01350742392242],[-0.0275848377496,-0.0080776251852512,0.0099989017471671]],[[-0.025997176766396,-0.043254110962152,0.0060519380494952],[-0.017411950975657,-0.023057935759425,0.0012432946823537],[-0.0087080737575889,-0.055807799100876,0.009449552744627]],[[-0.018255989998579,-0.027865242213011,-0.031734820455313],[-0.024777490645647,0.011360916309059,0.049980856478214],[0.032756295055151,-0.043266888707876,0.039894763380289]],[[-0.0022211004979908,-0.025123059749603,-0.0085474578663707],[-0.0021382297854871,0.041242197155952,0.026934299618006],[0.019827155396342,-0.0067945225164294,-0.042508482933044]],[[-0.025292981415987,0.024229502305388,0.026903815567493],[0.015583825297654,-0.0060827867127955,-0.045389093458652],[0.0073781530372798,0.030752705410123,-0.022670663893223]],[[-0.0072282035835087,-0.0080453334376216,0.0012740360107273],[0.023150000721216,-0.0058652968145907,-0.012957746163011],[-0.027587676420808,0.0062979958020151,0.028834102675319]],[[0.038405690342188,-0.036954741925001,0.025926018133759],[-0.020817747339606,0.013971604406834,-0.036746744066477],[0.002426449675113,-0.012871542014182,0.0024840214755386]],[[0.010670940391719,-0.024602860212326,-0.0064844116568565],[-0.028597708791494,0.0055240453220904,0.027216667309403],[0.027276067063212,-0.0084353601559997,-0.0030649029649794]],[[-0.010832072235644,-0.027706040069461,0.022464593872428],[0.025067919865251,-0.0089790904894471,0.011545980349183],[-0.023366907611489,0.015889702364802,0.010122866369784]],[[-0.0032447683624923,0.02204761095345,0.027041628956795],[-0.042858473956585,-0.011292152106762,0.00382165517658],[-0.038639526814222,0.016499510034919,0.033436123281717]],[[0.011001398786902,-0.016614949330688,0.032147333025932],[0.0067237983457744,-0.0036512999795377,-0.020148698240519],[0.030310370028019,-0.024833025410771,-0.021382983773947]],[[-0.014147602953017,0.01759029366076,0.010785995051265],[-0.084252811968327,0.022311650216579,-0.08317955583334],[0.035555645823479,0.04246536269784,0.049314245581627]],[[-0.0094471555203199,-0.052941016852856,0.049175448715687],[0.021285258233547,-0.04026398435235,0.045141123235226],[0.011350370012224,-0.0015485661569983,0.027702134102583]],[[-0.00082514283712953,-0.0046634254977107,0.0057725626975298],[0.0054112221114337,-0.022174378857017,0.039228390902281],[0.0011110239429399,0.0058219791390002,-0.030762396752834]],[[0.021189911291003,-0.0016116902697831,-0.035504277795553],[-0.012613088823855,0.029548151418567,0.030667347833514],[-0.013078571297228,-0.0096278842538595,-0.0087911691516638]],[[-0.049925584346056,0.029014378786087,0.003896324429661],[0.0066343476064503,0.035567093640566,0.00013726379256696],[-0.010349966585636,-0.049879010766745,-0.0021131783723831]],[[-0.06271043419838,0.02208237349987,-0.050199925899506],[0.010917253792286,0.017501095309854,0.031172819435596],[-0.0053015891462564,0.014012763276696,-0.051086984574795]],[[-0.00052727328147739,-0.026688031852245,0.0023162534926087],[-0.0065334988757968,-0.028535235673189,0.021711310371757],[0.0045859538950026,0.00037299582618289,0.012081959284842]],[[0.012959529645741,-0.022378265857697,0.0023556021042168],[0.013716015033424,-0.013117738068104,-0.013877082616091],[0.0046315756626427,0.037362165749073,-0.022821340709925]],[[0.018321288749576,0.0074298847466707,-0.03871551528573],[-0.012761602178216,0.0397725738585,-0.051555898040533],[0.027305850759149,0.020095923915505,-0.038300670683384]],[[-0.0022076764144003,-0.0050663258880377,0.030959993600845],[0.031556233763695,0.028013030067086,-0.024791980162263],[-0.021175030618906,-0.05090780928731,-0.0065018106251955]],[[-0.040683202445507,0.015195134095848,0.0079075852409005],[-0.0097793452441692,0.041252747178078,-0.026500284671783],[-0.004910231102258,-0.0016764418687671,-0.021241398528218]],[[-0.0064659276977181,0.00056296243565157,0.005901699885726],[0.0058346418663859,-0.025212962180376,0.017041897401214],[-0.03215079382062,0.012595558539033,0.024852247908711]],[[-0.017818281427026,0.018749438226223,-0.0064462078735232],[0.025631014257669,-0.030370734632015,0.011952211149037],[-0.016068510711193,0.012226023711264,-0.014024090021849]],[[-0.00011862437531818,0.018794184550643,-0.019078647717834],[0.020581236109138,-0.056723788380623,0.031619906425476],[-0.027195570990443,0.016059268265963,0.0037247957661748]],[[0.0063397572375834,-0.0028575712349266,0.0059267617762089],[0.019935360178351,-0.014214430935681,-0.012630116194487],[0.032764784991741,-0.0099494932219386,0.027441589161754]],[[-0.021610649302602,-0.0057100420817733,-0.034880328923464],[0.061725303530693,-0.0080725839361548,0.0037616528570652],[0.025540187954903,-0.065458491444588,0.035933844745159]],[[-0.0063456469215453,0.040664009749889,0.0025649366434664],[0.011314214207232,-0.0095755718648434,0.0061916834674776],[-0.025362610816956,-0.023251008242369,0.0012057403801009]],[[-0.019345967099071,-0.014931021258235,0.0089082783088088],[-0.011119442991912,0.035503122955561,-0.0065512652508914],[0.0067498059943318,-0.00095478113507852,0.018209552392364]],[[0.0055828555487096,0.019816808402538,-0.0020718108862638],[0.000974063470494,-0.033419132232666,0.012961533851922],[-0.010508335195482,0.022314684465528,-0.019139260053635]],[[-0.012264473363757,0.044872999191284,-0.00036170368548483],[0.0061579197645187,-0.0050932890735567,-0.043399233371019],[-0.0046471636742353,-0.00259387656115,0.0074596581980586]],[[0.0096279503777623,0.017787305638194,0.0041087660938501],[0.0019532681908458,0.011639201082289,-0.0064548966474831],[0.0039767376147211,0.0047188363969326,-0.002463796408847]],[[-0.011908423155546,-0.0064542745240033,0.013507695868611],[0.017862647771835,0.0071767983026803,-0.010187715291977],[-0.02243142388761,-0.001203645253554,0.011326929554343]],[[-0.00038756328285672,-0.014043176546693,0.033893994987011],[-0.030529636889696,-0.066960051655769,0.0093224551528692],[0.031167173758149,-0.026440458372235,0.081778816878796]],[[-0.061463665217161,0.043188937008381,-0.031183902174234],[0.00094596669077873,0.003166688606143,0.065851218998432],[0.019555822014809,0.031803362071514,-0.033575944602489]],[[-0.028691325336695,-0.013922768644989,-0.0017003250541165],[-0.0024259074125439,0.013649289496243,-0.0012486334890127],[0.036370560526848,0.0031395445112139,-0.018903627991676]],[[-0.046449147164822,0.0093891192227602,0.01882947422564],[-0.0089795822277665,0.0046618389897048,-0.022194106131792],[-0.0067180385813117,0.032368753105402,0.004120675381273]],[[-0.046428788453341,0.047835983335972,-0.030997607856989],[0.060888208448887,0.04021255671978,0.02728514559567],[-0.049085106700659,-0.021676070988178,-0.03130579739809]],[[0.011309471912682,-0.00071256718365476,0.019973840564489],[-0.0051505239680409,0.049885932356119,-0.00034996273461729],[-0.059725411236286,-0.0076409839093685,0.0049966042861342]],[[0.0030541636515409,-0.018462169915438,-0.0099865356460214],[-0.01245819684118,0.017629574984312,0.0022172599565238],[0.0089068785309792,0.056404143571854,-0.052966978400946]]],[[[0.11533527821302,0.061006437987089,-0.00019672018243],[-0.0055297636426985,0.14275966584682,-0.08848825097084],[0.0042679579928517,-0.086559146642685,-0.2449569106102]],[[0.062850721180439,0.012270798906684,-0.044145978987217],[-0.09191171079874,0.0030547291971743,-0.20634749531746],[-0.087970048189163,-0.089255750179291,-0.22793251276016]],[[0.00086230575107038,0.022857915610075,0.018368164077401],[0.05542765930295,0.0098175294697285,-0.063033819198608],[-0.011639449745417,-0.0039330110885203,-0.028198696672916]],[[0.01778874732554,0.10379835218191,-0.048076033592224],[-0.099206931889057,-0.089909695088863,-0.05844921246171],[-0.0047331089153886,-0.11611675471067,0.02660146728158]],[[0.063495084643364,-0.0013285392196849,-0.0097098061814904],[-0.044287402182817,-0.15387423336506,-0.088605672121048],[0.06289042532444,-0.024476008489728,-0.028733508661389]],[[0.10721658170223,-0.026961451396346,-0.027557393535972],[-0.0044712186791003,0.15345567464828,-0.087149888277054],[-0.07437851279974,-0.12587670981884,-0.15215899050236]],[[0.040119275450706,0.044151861220598,-0.0076108304783702],[-0.076013542711735,0.11117547005415,-0.043481361120939],[0.0038080252707005,-0.049038901925087,0.038945600390434]],[[0.067032478749752,0.018939981237054,-0.018778933212161],[-0.0602359585464,-0.088365495204926,-0.10808369517326],[-0.10469496995211,-0.058354746550322,0.067485079169273]],[[0.13311088085175,0.12031877785921,-0.036615621298552],[0.059461489319801,-0.10980304330587,-0.053748700767756],[0.030781170353293,-0.079690665006638,0.049328185617924]],[[0.082545936107635,0.023503337055445,0.012661576271057],[-0.023359378799796,-0.023719049990177,-0.15643435716629],[0.0541827455163,-0.13475365936756,-0.040535394102335]],[[0.1653189510107,0.034041590988636,-0.025556616485119],[0.06635520607233,-0.00017276742437389,-0.15199749171734],[-0.11139363050461,0.095202781260014,-0.19520831108093]],[[-0.039663840085268,0.075320430099964,0.1310680359602],[0.045591451227665,0.038152221590281,-0.032403096556664],[0.067550338804722,-0.037880066782236,-0.035468805581331]],[[-0.073631979525089,-0.027420407161117,-0.029252784326673],[0.060410007834435,0.088602215051651,-0.077398538589478],[0.026025107130408,-0.078081041574478,-0.038244429975748]],[[-0.071943685412407,0.11447423696518,-0.052026987075806],[-0.088280774652958,0.010639186017215,0.023032490164042],[0.048084735870361,-0.06051180139184,0.013889946974814]],[[0.051135260611773,0.04149616882205,-0.0014577666297555],[-0.08859009295702,0.060078676789999,-0.047595046460629],[0.010491080582142,0.12032303959131,-0.035175617784262]],[[0.079559937119484,-0.069682069122791,0.067813135683537],[0.042958483099937,0.0018426869064569,-0.022501697763801],[0.044327564537525,-0.037624198943377,0.016437983140349]],[[0.010408978909254,-0.014780341647565,-0.022753553465009],[-0.047235548496246,0.042087443172932,-0.019934387877584],[-0.093062110245228,-0.10987444967031,0.023591309785843]],[[0.027266334742308,-0.014503072947264,0.027205858379602],[0.055404637008905,0.0065080989152193,-0.044288761913776],[-0.0033330880105495,-0.11662967503071,-0.0017781718634069]],[[0.0074017755687237,-0.031174521893263,0.04719764739275],[0.065510526299477,-0.0070803016424179,0.063607916235924],[-0.033529363572598,0.049588091671467,0.032706048339605]],[[0.09257085621357,0.092352271080017,0.015831910073757],[0.057408504188061,0.12670706212521,-0.19630496203899],[0.010072343051434,-0.04287501424551,-0.09667694568634]],[[0.0068722544237971,0.022238159552217,-0.0095742028206587],[0.082694038748741,0.016085056588054,-0.013971618376672],[-0.10984735190868,0.056190676987171,-0.17834769189358]],[[0.014242225326598,-0.050557032227516,-0.038435272872448],[-0.0027341858949512,0.024507747963071,0.0026114622596651],[0.012284473516047,0.0058176601305604,-0.098556086421013]],[[0.097955033183098,0.022120429202914,0.077115163207054],[0.016107603907585,-0.10119384527206,-0.03606278449297],[-0.17742189764977,-0.079400070011616,0.0080263614654541]],[[-0.090989597141743,-0.087039344012737,-0.25395199656487],[-0.054801888763905,0.048539035022259,-0.077987417578697],[-0.081543989479542,-0.0060644713230431,-0.00021910692157689]],[[0.045309290289879,0.08510422706604,0.080723457038403],[0.076241672039032,0.023154105991125,0.11603397130966],[-0.020172670483589,0.038070410490036,0.078320100903511]],[[0.057043928653002,0.014545974321663,-0.028312182053924],[-0.03678523004055,-0.11409313231707,0.006133068818599],[0.055904038250446,-0.020831245929003,-0.0039458679966629]],[[0.12326231598854,0.028752915561199,0.046549838036299],[0.061642829328775,0.027375428006053,-0.0055839405395091],[-0.068398371338844,-0.14094907045364,-0.072322927415371]],[[0.048985559493303,-0.089023359119892,-0.044911041855812],[-0.087597653269768,0.010528129525483,0.056854490190744],[0.071730762720108,-0.05440704151988,0.049754805862904]],[[-0.0085389139130712,0.015502638183534,-0.11888198554516],[-0.044399168342352,-0.097730129957199,-0.020476039499044],[0.039770357310772,-0.021826773881912,0.01747315749526]],[[-0.060306537896395,0.070012927055359,-0.093924500048161],[0.012853814288974,-0.013217411004007,0.073818981647491],[-0.038013372570276,-0.07362087816,-0.047732084989548]],[[-0.003970636986196,-0.00040921146865003,0.044171296060085],[-0.065540060400963,-0.077193818986416,0.079756163060665],[0.069587767124176,0.077582582831383,0.04551973938942]],[[-0.040092587471008,0.036697883158922,0.02115573734045],[-0.020534915849566,-0.026496086269617,-0.026293626055121],[0.11321519315243,0.078190334141254,0.11066737771034]],[[-0.019204597920179,-0.057660333812237,-0.064202666282654],[0.041578199714422,-0.0072312108241022,0.078048646450043],[0.031213207170367,-0.092054694890976,-0.037152573466301]],[[0.080445446074009,-0.094000563025475,-0.025610733777285],[0.048870354890823,0.16536350548267,0.0075642862357199],[-0.045584514737129,-0.12678511440754,-0.21625207364559]],[[0.060598768293858,-0.018596574664116,-0.089772030711174],[0.015705920755863,-0.06945675611496,-0.035064503550529],[0.080039449036121,-0.10588108003139,-0.035327021032572]],[[0.060297999531031,0.039640415459871,0.06267211586237],[0.075632929801941,0.0081530557945371,0.0063015138730407],[0.072549656033516,0.024162694811821,0.061955835670233]],[[0.089356072247028,0.040942452847958,0.021136965602636],[0.062039200216532,-0.015774860978127,0.035093270242214],[-0.038049064576626,0.19773632287979,0.0012605038937181]],[[0.018781334161758,0.052836526185274,0.10062423348427],[0.037297017872334,0.089164055883884,-0.057622950524092],[-0.039781246334314,-0.08929256349802,-0.067169263958931]],[[-0.062678620219231,0.033767390996218,0.043119762092829],[-0.074737578630447,-0.060970272868872,0.022547548636794],[-0.019920270889997,-0.0052419444546103,0.0089511489495635]],[[-0.049587272107601,-0.044006623327732,-0.094831757247448],[0.014907660894096,-0.13532516360283,0.024828543886542],[-0.010986721143126,-0.0064548025839031,0.0046086702495813]],[[0.14174991846085,-0.006090990267694,-0.12692628800869],[0.014794914983213,0.055536046624184,-0.097456566989422],[-0.03624714538455,-0.095564067363739,-0.068790182471275]],[[0.013604271225631,-0.061932846903801,-0.053308311849833],[0.081899143755436,0.071348831057549,-0.074233964085579],[-0.013595130294561,-0.094049856066704,-0.020423932000995]],[[0.09371480345726,-0.014891128987074,0.090097360312939],[0.061972517520189,-0.069122508168221,-0.060569394379854],[-0.016606511548162,0.0039778482168913,0.03764708712697]],[[0.17479136586189,0.040510583668947,0.085408166050911],[0.067865572869778,-0.0041081947274506,-0.10253030061722],[0.10775344073772,0.060111347585917,-0.16505515575409]],[[0.078276686370373,-0.00029430608265102,0.082530863583088],[0.048478171229362,0.034954600036144,-0.11635407805443],[-0.1111596673727,-0.20842313766479,-0.18374313414097]],[[0.045145563781261,-0.078034162521362,0.042343568056822],[0.03663183003664,0.062864631414413,0.059445463120937],[0.0058541456237435,-0.017056088894606,-0.12193193286657]],[[-0.062282785773277,-0.014066460542381,-0.062082003802061],[0.05609979107976,0.012029246427119,-6.0282545746304e-05],[-0.074438072741032,-0.050065383315086,0.054193194955587]],[[0.049067743122578,0.13817276060581,-0.038781590759754],[0.081055633723736,-0.0079258289188147,0.017815472558141],[0.010495039634407,0.035866361111403,0.11119877547026]],[[-0.021857794374228,0.12181487679482,-0.0060788202099502],[0.036973621696234,-0.016065595671535,-0.05510438978672],[0.0052155833691359,-0.061526864767075,0.15062464773655]],[[-0.076709449291229,0.12406232208014,0.13272500038147],[0.011151780374348,0.073272593319416,0.083593875169754],[0.04651290178299,-0.010827261023223,0.085736721754074]],[[-0.028618866577744,-0.027860946953297,0.0078214034438133],[0.0090357316657901,0.045586913824081,-0.0041109751909971],[-0.089220829308033,-0.02969316765666,-0.061108004301786]],[[-0.0068963821977377,0.010117395780981,-0.043128851801157],[0.038121465593576,-0.067849338054657,-0.033075965940952],[-0.035966102033854,-0.093359902501106,0.10532160848379]],[[-0.004164669662714,0.015654249116778,0.07185136526823],[-0.002415272872895,0.053198136389256,-0.031348571181297],[-0.065417714416981,0.010403394699097,-0.19906517863274]],[[-0.02035397849977,-0.076004482805729,0.0092575484886765],[0.08817682415247,-0.029866581782699,0.0077489838004112],[0.010423693805933,0.046849984675646,0.10157176107168]],[[0.061930876225233,0.02662405371666,0.12335383892059],[0.022350534796715,0.15511703491211,-0.064018689095974],[0.0079544214531779,-0.036411255598068,-0.01430756226182]],[[0.10005100816488,-0.051806759089231,-0.0010335928527638],[0.10878331959248,-0.016065333038568,-0.10287743061781],[0.12459830194712,-0.096072763204575,-0.115334443748]],[[-0.0016416978323832,0.074730768799782,-0.026491707190871],[0.070498988032341,-0.017066948115826,0.013076961040497],[-0.053901400417089,0.01981102861464,-0.069553434848785]],[[0.082117311656475,0.051530640572309,-0.15900528430939],[0.069604605436325,-0.052727714180946,-0.011498834006488],[0.019988548010588,0.06406369805336,-0.0045156367123127]],[[-0.12793900072575,0.058602806180716,0.06988587230444],[-0.1113803088665,0.079733774065971,0.1274825334549],[0.13301922380924,0.063236884772778,0.17873667180538]],[[0.0426917783916,-0.023666303604841,-0.043332319706678],[-0.060267493128777,-0.11838436126709,-0.14859834313393],[-0.063226915895939,-0.087073095142841,0.091945290565491]],[[-0.011162801645696,-0.06045489013195,-0.17355011403561],[0.050901383161545,0.0021645952947438,-0.019931972026825],[-0.032089103013277,-0.095945104956627,0.06742088496685]],[[0.045802175998688,0.053015753626823,0.054865673184395],[-0.030111374333501,0.021525667980313,-0.049833606928587],[0.040659032762051,-0.022883374243975,-0.052820559591055]],[[0.081612169742584,0.04197520762682,0.072789512574673],[-0.068891696631908,-0.020086575299501,0.052920013666153],[-0.051801931113005,-0.0015951570821926,0.24033822119236]],[[0.095443651080132,0.040686544030905,0.082160733640194],[0.027233628556132,-0.052547242492437,0.023377031087875],[0.059533629566431,0.035827029496431,-0.11471974849701]]],[[[-0.0094303060323,0.047707680612803,0.0079809753224254],[0.01512510702014,-0.024807706475258,-0.089189045131207],[-0.068541005253792,-0.03355185687542,-0.084669902920723]],[[0.0049810404889286,-0.063784517347813,0.037377376109362],[0.052452228963375,-0.0075919181108475,-0.11152398586273],[-0.033027246594429,0.015081687830389,0.058362636715174]],[[0.095782615244389,0.024485504254699,-0.017581647261977],[-0.093553006649017,-0.0043776729144156,-0.052882686257362],[0.06334563344717,-0.066689342260361,0.070363275706768]],[[-0.16369198262691,-0.011291734874249,0.10778976976871],[-0.10422319173813,-0.017601581290364,-0.034958425909281],[-0.078785814344883,0.028366271406412,-0.1123948097229]],[[0.032031048089266,0.061678938567638,-0.039513077586889],[0.058716908097267,0.03048243932426,-0.029371039941907],[0.036013647913933,0.069479644298553,-0.044305913150311]],[[0.067377820611,-0.057782102376223,0.0088335042819381],[0.0057787112891674,-0.086239032447338,0.044489677995443],[-0.034833032637835,0.080804653465748,-0.070979453623295]],[[0.10215925425291,-0.0079521080479026,0.042443566024303],[-0.076651126146317,-0.059075821191072,-0.080595217645168],[-0.066740982234478,0.065858393907547,0.16724498569965]],[[0.10157260298729,0.069951683282852,-0.058591060340405],[-0.062321044504642,-0.039129104465246,0.01791025698185],[0.10216088593006,-0.05646176636219,0.042238131165504]],[[-0.00059287861222401,0.029961716383696,0.010184332728386],[-0.11130364239216,-0.025105681270361,-0.014574704691768],[0.012258947826922,0.097968190908432,-0.011199134401977]],[[-0.016399122774601,-0.013879492878914,0.04330899938941],[-0.12586341798306,-0.11181097477674,-0.0051930341869593],[0.031308390200138,-0.060664661228657,-0.11968865245581]],[[-0.022294703871012,-0.043908711522818,0.01898262090981],[0.02206090465188,0.0082172332331538,0.028054034337401],[0.057804562151432,0.034468155354261,0.11433684825897]],[[0.059601929038763,-0.038161549717188,-0.02217410877347],[0.0065593346953392,-0.17593686282635,0.056255914270878],[0.11150739341974,-0.028234913945198,0.061465967446566]],[[-0.10411206632853,0.043460767716169,0.013804964721203],[-0.037915661931038,0.042428743094206,-0.012923111207783],[0.035831891000271,-0.01143784634769,0.11953044682741]],[[0.072922222316265,-0.028247965499759,-0.060140464454889],[0.049364600330591,-0.015249748714268,0.083471663296223],[0.054674707353115,-0.08116552233696,-0.004700904712081]],[[-0.09485025703907,0.02920569293201,-0.050699397921562],[0.15308566391468,-0.12704207003117,-0.063111774623394],[-0.0040383394807577,0.037771932780743,-0.025534629821777]],[[-0.16230350732803,0.079760603606701,0.021194770932198],[0.020293241366744,0.063359305262566,0.11026687175035],[0.062446594238281,-0.08313000202179,0.022546557709575]],[[0.039398353546858,0.034675933420658,0.017448266968131],[-0.23677451908588,0.0078852213919163,7.8910896263551e-05],[0.011644678190351,0.047800131142139,0.012623679824173]],[[-0.054047826677561,-0.025300744920969,0.073692969977856],[0.01130248233676,0.027369836345315,-0.017618650570512],[-0.064416214823723,0.03342991694808,0.11740082502365]],[[-0.071939155459404,-0.061236601322889,0.068366914987564],[-0.07115463167429,-0.016596196219325,-0.1425417214632],[0.029174933210015,-0.051671084016562,0.07844191044569]],[[-0.081524416804314,-0.090427748858929,-0.082418978214264],[-0.0043521663174033,0.085379675030708,0.015293476171792],[-0.12360900640488,-0.028880598023534,0.059707723557949]],[[0.094287760555744,0.086419299244881,0.071069873869419],[0.11669743061066,0.0059428759850562,-0.089882142841816],[0.0016628671437502,-0.077772758901119,0.068440444767475]],[[0.02871423587203,-0.11022941023111,-0.057096526026726],[0.05202778428793,-0.038442134857178,-0.046151392161846],[0.025923203676939,-0.0023365342058241,0.026117242872715]],[[0.034473024308681,-0.082129664719105,0.047529056668282],[-0.072633549571037,0.063758462667465,0.02416529878974],[-0.1673172712326,0.066871583461761,-0.058378059417009]],[[0.10655736923218,-0.047398064285517,-0.065221630036831],[0.011839327402413,0.033466529101133,-0.14903172850609],[0.021061800420284,0.017893774434924,0.059980124235153]],[[-0.065080143511295,0.063193179666996,-0.048515647649765],[-0.0058593852445483,0.057906404137611,0.0059735202230513],[0.059819556772709,0.033170148730278,-0.0024269968271255]],[[0.025965048000216,0.043865647166967,-0.0052019385620952],[-0.037227787077427,-0.021427715197206,0.024934871122241],[-0.018390187993646,-0.036668196320534,-0.00050258688861504]],[[-0.031949732452631,-0.079578220844269,0.025188323110342],[-0.13237963616848,-0.052227884531021,0.14993871748447],[0.077780321240425,0.027870299294591,0.053028836846352]],[[-0.028966888785362,-0.014000116847456,-0.14471484720707],[-0.031940307468176,-0.00082565017510206,-0.23140716552734],[-0.018842626363039,-0.073405802249908,-0.18542771041393]],[[-0.02841042727232,0.06572449952364,-0.031306430697441],[0.11627158522606,-0.038708463311195,-0.00062227190937847],[0.050397824496031,-0.07864248752594,0.065173253417015]],[[0.062013935297728,0.022861659526825,0.12923215329647],[-0.030492402613163,0.0031586065888405,-0.058004360646009],[-0.08396865427494,-0.047790624201298,-0.13775108754635]],[[0.047499310225248,-0.10199698805809,0.034902155399323],[0.13172641396523,-0.0025594036560506,0.13460323214531],[-0.010121062397957,0.061367858201265,0.020850820466876]],[[-0.038092866539955,-0.065216593444347,-0.028631107881665],[0.033926971256733,-0.0016076850006357,0.027130842208862],[0.17936804890633,0.02199237793684,-0.0085966531187296]],[[-0.10182163119316,-0.023324262350798,0.011308338493109],[0.079389028251171,0.053582582622766,0.0564344227314],[-0.077487729489803,0.020078040659428,-0.020899586379528]],[[-0.14083714783192,-0.050506569445133,-0.065778315067291],[-0.037667032331228,-0.002980794524774,-0.029834875836968],[-0.022541346028447,0.12618516385555,0.024305829778314]],[[0.072143323719501,0.034499444067478,-0.012832110747695],[0.018986174836755,-0.046947296708822,-0.059285834431648],[0.032794591039419,-0.075178183615208,0.043393302708864]],[[-0.0051793898455799,0.11105196177959,0.059227973222733],[0.088132306933403,0.013928445987403,0.016685394570231],[0.036676317453384,0.094827964901924,0.088565304875374]],[[0.044669277966022,0.049781333655119,0.08357210457325],[0.078675746917725,-0.026838509365916,0.064220450818539],[-0.045704394578934,-0.027633156627417,0.033890321850777]],[[0.034586127847433,0.036206409335136,-0.025762058794498],[0.023973144590855,-0.0054730628617108,0.042650546878576],[0.03663657605648,-0.080574102699757,-0.15647640824318]],[[0.021440841257572,-0.059759438037872,-0.065143287181854],[-0.044234298169613,0.096553102135658,-0.024374004453421],[-0.13649468123913,-0.09733397513628,0.029390383511782]],[[0.027251202613115,-0.034901861101389,-0.039563126862049],[0.099074453115463,-0.067718528211117,-0.097497753798962],[0.19444693624973,-0.038884773850441,0.11758581548929]],[[0.074333176016808,-0.14279146492481,-0.055173497647047],[-0.082903690636158,-0.22293998301029,0.049663566052914],[-0.059961274266243,-0.061949782073498,0.15603491663933]],[[-0.023641077801585,-0.060340024530888,0.061289735138416],[-0.051480799913406,0.059217520058155,0.090636648237705],[-0.027920326218009,-0.013424574397504,0.10346557199955]],[[0.11174122989178,0.10376466065645,0.0098807811737061],[-0.074267037212849,0.010816850699484,0.03523937240243],[0.11520391702652,-0.2122932523489,0.12804003059864]],[[0.029293267056346,0.016459656879306,0.066047467291355],[0.03537580370903,-0.17638540267944,0.13117283582687],[-0.066764973104,-0.024852404370904,0.030791951343417]],[[-0.20949859917164,0.056666471064091,-0.040849070996046],[-0.069376900792122,0.00061673787422478,0.030400926247239],[-0.032299380749464,-0.0036387541331351,-0.021210055798292]],[[-0.085635408759117,0.086721643805504,-0.052206840366125],[0.0022916349116713,0.11396514624357,0.088104709982872],[-0.049356829375029,0.0050758505240083,-0.15525652468204]],[[0.025645134970546,0.0031958648469299,0.084255032241344],[0.059872895479202,-0.029731597751379,-0.017500758171082],[-0.056286461651325,-0.01627803966403,-0.080480672419071]],[[0.11024846881628,-0.098214015364647,0.14345563948154],[0.05740774795413,0.018613040447235,-0.050020076334476],[-0.074882186949253,-0.16029568016529,-0.063886545598507]],[[-0.0025462352205068,-0.039028272032738,-0.15083450078964],[-0.1148050352931,-0.015431301668286,-0.042512245476246],[0.011195003986359,-0.015270697884262,-0.1117362305522]],[[0.048900157213211,0.10682594776154,-0.026436043903232],[0.015775881707668,-0.1242838203907,-0.089912690222263],[-0.037746254354715,-0.061827383935452,0.0066451467573643]],[[-0.0082687484100461,-0.06524819880724,-0.041942209005356],[-0.066789075732231,-0.035195656120777,0.12373997271061],[0.038725633174181,-0.052275367081165,-0.17937542498112]],[[0.039109919220209,0.035117015242577,0.079861156642437],[-0.065825887024403,-0.16755418479443,-0.089080572128296],[-0.019218968227506,-0.076786212623119,-0.036418687552214]],[[-0.013560397550464,0.0031023793853819,0.070443898439407],[-0.036239236593246,-0.047630108892918,0.056786846369505],[-0.091854766011238,0.067095838487148,0.10947290807962]],[[-0.011958775110543,-0.089714765548706,-0.028831856325269],[0.095430567860603,0.0072939405217767,-0.021214839071035],[0.054270643740892,0.081787750124931,-0.017918542027473]],[[-0.13913798332214,0.11190447211266,-0.12453907728195],[-0.073502160608768,0.053713619709015,0.036753293126822],[0.017842905595899,0.15508104860783,0.082180134952068]],[[0.066988795995712,0.020641520619392,-0.021418277174234],[-0.11302356421947,0.013398776762187,0.15980370342731],[0.11227818578482,0.089056521654129,0.0039805574342608]],[[-0.0059020086191595,0.053824037313461,0.011283174157143],[-0.012475123628974,-0.053186811506748,-0.12058117985725],[0.16104255616665,0.085822895169258,-0.11348061263561]],[[0.052991848438978,-0.0033601121976972,-0.13997767865658],[0.01802029274404,-0.049837581813335,-0.06346184015274],[-0.13282310962677,0.090757787227631,0.13773219287395]],[[0.075584582984447,-0.04845567047596,0.10873776674271],[0.087800033390522,0.060802675783634,-0.013366554863751],[0.10131128877401,0.073554337024689,0.049663413316011]],[[-0.040351215749979,-0.0087038306519389,0.039273597300053],[0.0072353770956397,-0.024391012266278,-0.024452034384012],[0.028848726302385,-0.049711782485247,-0.061746265739202]],[[-0.066864162683487,0.080927118659019,-0.12502981722355],[0.026592951267958,-0.078570730984211,-0.050758767873049],[0.016095804050565,-0.12310399115086,0.13423439860344]],[[-0.0090778162702918,-0.091705776751041,0.034229353070259],[0.057681482285261,-0.010190287604928,-0.021001068875194],[-0.042692471295595,-0.041467443108559,0.20404858887196]],[[0.061073023825884,-0.059924226254225,0.075012870132923],[0.018738519400358,-0.015229137614369,-0.10293850302696],[0.0089707979932427,0.064985431730747,0.029049230739474]],[[0.10322197526693,0.03957299888134,0.078851260244846],[-0.061210606247187,-0.060226138681173,0.011231406591833],[0.14669942855835,0.028985241428018,0.021999169141054]]],[[[0.090418934822083,0.09899628162384,0.053199861198664],[-0.053915150463581,0.017987404018641,0.011620753444731],[0.065883934497833,-0.1208778694272,-0.11079849302769]],[[0.095893204212189,-0.018658293411136,-0.005861684679985],[-0.050523851066828,0.026526015251875,-0.084872789680958],[-0.07014874368906,-0.08065539598465,-0.067394442856312]],[[-0.044152073562145,0.05688688531518,-0.055979017168283],[-0.072199366986752,-0.036712042987347,0.025886775925756],[-0.153445109725,-0.16664956510067,-0.053596064448357]],[[0.075937815010548,0.060890004038811,0.045284874737263],[-0.0024181166663766,0.087203592061996,-0.021561672911048],[0.0020286682993174,-0.0087973112240434,0.084500938653946]],[[-0.071463793516159,0.038314681500196,-0.015833983197808],[-0.0070668603293598,-0.064616568386555,-0.084163703024387],[-0.12292721867561,0.013738718815148,0.0058471262454987]],[[-0.043600328266621,0.020190246403217,-0.096157945692539],[0.039589043706656,-0.010278150439262,-0.0056094788014889],[-0.037763562053442,0.063755959272385,0.19824023544788]],[[0.053874101489782,-0.061111997812986,0.056188099086285],[-0.05959090590477,-0.10729485750198,0.042459227144718],[-0.035310421139002,0.047656964510679,-0.0018059655558318]],[[-0.092539124190807,0.032527450472116,-0.033825151622295],[-0.023602252826095,0.029784707352519,-0.076526753604412],[-0.0866993740201,0.035787642002106,-0.12757052481174]],[[0.014140710234642,0.072229720652103,0.089145421981812],[0.0025237035006285,0.064227260649204,0.044535715132952],[0.066678509116173,0.13198032975197,-0.0095834080129862]],[[0.12936733663082,0.052649304270744,0.14130465686321],[-0.064503617584705,0.093252427875996,0.022306423634291],[0.022594274953008,0.093394242227077,0.061812214553356]],[[-0.078642606735229,-0.00046202115481719,0.052801109850407],[0.057653930038214,-0.081048026680946,-0.040041290223598],[-0.0092712799087167,-0.013004142791033,0.034874342381954]],[[0.092873498797417,0.17345784604549,-0.040457259863615],[-0.020450308918953,-0.095986098051071,0.0034464187920094],[0.0074303867295384,0.012675668112934,0.042373314499855]],[[-0.023712534457445,-0.026973417028785,0.038796003907919],[-0.0058576758019626,0.096286036074162,0.071549110114574],[-0.017727486789227,-0.12234401702881,0.066609732806683]],[[0.067130841314793,-0.019126798957586,0.065194956958294],[0.072917252779007,0.031222445890307,-0.045331340283155],[0.059776268899441,-0.023229017853737,-0.0068084350787103]],[[-0.094397611916065,0.030167650431395,-0.018792234361172],[-0.042170003056526,-0.073281235992908,-0.014102484099567],[0.060789402574301,-0.054158084094524,0.0035222349688411]],[[-0.094993382692337,0.14053793251514,-0.074528530240059],[0.027718979865313,0.16191045939922,-0.027523912489414],[0.08835081756115,0.02083383128047,0.028781535103917]],[[0.09672849625349,-0.00041767611401156,0.024360809475183],[-0.026298483833671,0.032285343855619,0.081183284521103],[-0.024194095283747,-0.014931562356651,-0.019211906939745]],[[0.025186030194163,-0.027182511985302,-0.10378638654947],[0.027402089908719,0.010815594345331,0.068623729050159],[0.066940195858479,0.022974424064159,0.043558243662119]],[[-0.048018600791693,-0.051786705851555,0.07529441267252],[-0.044303048402071,-0.096343658864498,-0.064415469765663],[-0.082840524613857,-0.099449068307877,0.079106047749519]],[[-0.033735409379005,-0.15106503665447,0.13439919054508],[-0.055554956197739,0.014100669883192,-0.050679169595242],[-0.0052731004543602,-0.052234340459108,0.0046543315984309]],[[0.022704288363457,0.0057606417685747,-0.056073144078255],[-0.0028490675613284,-0.093194134533405,0.029708690941334],[0.014257274568081,0.1357416510582,0.046196028590202]],[[0.060419481247663,0.047490656375885,0.040856335312128],[-0.020427783951163,-0.060647953301668,-0.045114144682884],[-0.013774550519884,-0.021224249154329,0.011096689850092]],[[-0.015243573114276,0.011707308702171,0.20989862084389],[0.021268147975206,0.026793716475368,0.0037310137413442],[0.062049694359303,0.05893811956048,-0.040387332439423]],[[0.10876027494669,-0.052471872419119,0.06625172495842],[-0.048228688538074,-0.070049352943897,-0.010266961529851],[0.030438272282481,0.032637745141983,-0.049320861697197]],[[0.121159106493,0.11694152653217,0.070513308048248],[-0.012120035476983,0.019387042149901,0.019247556105256],[0.14900441467762,0.077732995152473,0.037639539688826]],[[-0.060646668076515,-0.076200671494007,0.018897211179137],[0.024544367566705,0.061864845454693,-0.043654438108206],[-0.047438763082027,0.033197719603777,0.072767525911331]],[[0.023309731855989,-0.043883856385946,0.024097844958305],[-0.011222145520151,0.026865821331739,0.01866408623755],[-0.046304475516081,-0.096888579428196,-0.015258836559951]],[[-0.024587977677584,-0.12302325665951,-0.14076046645641],[0.042548075318336,0.01999725215137,0.0094699943438172],[-0.037868998944759,0.0024530189111829,-0.052787024527788]],[[0.0035921041853726,-0.10020437836647,0.0069970823824406],[0.068868190050125,0.067636109888554,0.0066628302447498],[0.047212734818459,0.044021371752024,0.096136994659901]],[[0.019088545814157,-0.083921857178211,0.016668245196342],[0.0055213971063495,-0.038277205079794,-0.043842487037182],[-0.1161343306303,0.060028277337551,0.19059313833714]],[[0.09579611569643,0.022288372740149,0.064241796731949],[-0.031152158975601,0.0042181005701423,-0.12207007408142],[0.18069289624691,0.038667682558298,-0.062574654817581]],[[0.20506089925766,0.059330765157938,-0.034518606960773],[-0.13488212227821,-0.023220485076308,0.042472712695599],[-0.085685014724731,0.0093580484390259,0.005780934356153]],[[0.045393079519272,-0.007221058011055,-0.091201767325401],[0.030807975679636,-0.056247632950544,-0.18938893079758],[-0.10074000805616,0.04621160775423,0.089815437793732]],[[0.010351699776947,-0.017259284853935,0.0070800837129354],[-0.024998469278216,-0.082522690296173,-0.089902192354202],[-0.15090209245682,0.045736905187368,-0.021480722352862]],[[0.028511799871922,0.10034741461277,0.022172916680574],[-0.15585649013519,0.085332967340946,0.11686955392361],[0.0026957809459418,-0.13786086440086,0.088404484093189]],[[-0.099191024899483,0.034925229847431,-0.070716314017773],[0.021858079358935,-0.005315660033375,0.10421098768711],[0.20760914683342,0.090670600533485,-0.010906879790127]],[[0.10217357426882,-0.21840883791447,-0.053246948868036],[0.1125656068325,0.026184355840087,0.0055922791361809],[0.095947846770287,0.047826617956161,0.090261422097683]],[[-0.025635670870543,-0.12745919823647,0.10572101175785],[-0.074999824166298,-0.1290081590414,-0.011190618388355],[0.07542596757412,0.097255989909172,0.021443001925945]],[[-0.019482230767608,-0.17709100246429,-0.077734507620335],[-0.0876629576087,-0.11213394254446,-0.0053564705885947],[-0.13528722524643,-0.031729742884636,-0.0041725314222276]],[[-0.070146009325981,-0.02423837967217,0.05799375846982],[0.091931350529194,0.0069514331407845,-0.045929927378893],[0.10992976278067,-0.062937304377556,-0.013615262694657]],[[0.0766396895051,-0.12926837801933,-0.16091184318066],[0.033017557114363,0.07542247325182,-0.027732569724321],[-0.011194390244782,0.038369793444872,0.04791321977973]],[[0.0093828141689301,0.010709662921727,-0.052143972367048],[-0.069674640893936,-0.056791197508574,0.15231955051422],[0.15547347068787,0.015807159245014,0.022083953022957]],[[-0.068361781537533,0.02717768587172,-0.039954274892807],[0.033727690577507,0.067851491272449,-0.20344457030296],[-0.075489282608032,0.037489280104637,-0.021462621167302]],[[-0.077543340623379,-0.025524510070682,0.1708694845438],[0.045481044799089,0.085666462779045,-0.039012912660837],[-0.024181364104152,0.038370672613382,-0.034760363399982]],[[0.060835536569357,0.0075545511208475,0.023333812132478],[-0.086598828434944,0.068461246788502,0.12253189831972],[0.031082201749086,0.063938029110432,0.053030896931887]],[[0.030380200594664,0.044343400746584,-0.0098707517609],[-0.02350159175694,-0.04589557275176,0.038682330399752],[-0.048225607722998,-0.034949705004692,-0.098720222711563]],[[-0.032720562070608,-0.023206289857626,0.012125718407333],[0.057180009782314,0.041604213416576,-0.041576080024242],[-0.022584257647395,-0.096960186958313,0.055977933108807]],[[-0.0030512185767293,0.076708190143108,-0.058337066322565],[0.12667122483253,-0.067050501704216,0.033739697188139],[0.029971297830343,-0.046985983848572,0.096933245658875]],[[-0.0015047424240038,-0.057123653590679,-0.029949521645904],[-0.053742934018373,0.0086193447932601,-0.016534425318241],[0.092177711427212,-0.078358344733715,-0.13585282862186]],[[0.11286785453558,-0.046255476772785,0.14817370474339],[0.13390739262104,0.090255327522755,0.058967284858227],[0.038377366960049,0.0086170081049204,0.017258293926716]],[[0.016239238902926,0.09067989140749,0.068374738097191],[0.097826421260834,0.14330445230007,-0.029142813757062],[0.081184357404709,-0.014804137870669,0.018320517614484]],[[0.13754308223724,-0.054961882531643,-0.043389998376369],[0.010401743464172,0.073817320168018,-0.031524553894997],[-0.0079019889235497,-0.0060409787110984,0.13759160041809]],[[-0.022765703499317,-0.091182067990303,-0.014164689928293],[0.14372983574867,-0.022238234058022,0.0081795593723655],[0.015917785465717,-0.09718519449234,0.0223990958184]],[[0.072717182338238,0.043333027511835,-0.057260259985924],[-0.057256706058979,0.040948312729597,-0.011769627220929],[0.076463855803013,-0.034258313477039,0.0022669497411698]],[[0.069698177278042,0.012186073698103,0.12015292048454],[0.094252035021782,-0.11368546634912,0.026623036712408],[-0.059634771198034,0.0021404314320534,0.039305064827204]],[[0.0057408106513321,-0.0078164516016841,0.087289124727249],[-0.020069010555744,-0.093504555523396,-0.12997660040855],[0.028668424114585,0.10795208066702,0.031635016202927]],[[0.016429249197245,0.17823815345764,0.010868180543184],[-0.035119198262691,0.027015076950192,0.096357986330986],[-0.077413082122803,0.052241578698158,0.14375886321068]],[[0.11172212660313,-0.10915012657642,-0.030966112390161],[0.064710818231106,-0.11880637705326,-0.0047331778332591],[-0.04561835154891,-0.11368517577648,-0.013102673925459]],[[-0.014258784241974,-0.0056013339199126,-0.026805864647031],[0.030565472319722,-0.0086954794824123,0.041623957455158],[-0.050434391945601,0.022036965936422,0.018899532034993]],[[-0.042024899274111,0.060305178165436,-0.032810382544994],[0.035107616335154,0.10934791713953,0.083830036222935],[-0.033070012927055,-0.047423280775547,-0.0088328802958131]],[[-0.12016167491674,0.05456356331706,0.064503118395805],[0.068256370723248,0.091329209506512,0.097146227955818],[-0.0085655655711889,-0.049139302223921,-0.075139939785004]],[[-0.036613594740629,-0.0087435441091657,-0.099137164652348],[0.058384925127029,0.030776929110289,0.027123883366585],[0.020119443535805,0.012588325887918,-0.029338577762246]],[[-0.13055177032948,-0.11268085986376,-0.058272775262594],[-0.078698500990868,0.03395140171051,-0.032091215252876],[-0.012936621904373,-0.13955323398113,0.10847549140453]],[[-0.14302811026573,-0.023971537128091,-0.16048173606396],[-0.044263087213039,-0.0030163340270519,-0.19307522475719],[-0.11432711035013,0.00049839017447084,-0.13821896910667]]],[[[0.028964934870601,-0.19230248034,0.20522297918797],[0.023250326514244,-0.054607700556517,0.10523997247219],[0.072635278105736,-0.016431638970971,0.019784979522228]],[[0.093506947159767,0.063804067671299,-0.16484709084034],[0.027283702045679,-0.089444398880005,-0.13605971634388],[0.057286385446787,-0.032410133630037,-0.081991150975227]],[[-0.012080457061529,-0.061551749706268,-0.043363261967897],[-0.073872253298759,-0.17712189257145,0.0089260535314679],[-0.048706583678722,-0.1511621773243,-0.24197161197662]],[[-0.035561442375183,0.025234458968043,0.031761951744556],[0.010073165409267,0.024092042818666,0.07545468211174],[0.034198753535748,-0.00032323406776413,-0.11828792095184]],[[-0.098190926015377,0.060940682888031,0.052545595914125],[-0.057824283838272,0.085571765899658,-0.1177554577589],[-0.044005591422319,0.010487308725715,-0.045043103396893]],[[0.085512720048428,-0.09190595895052,0.023899080231786],[-0.084303431212902,-0.020038845017552,-0.038733091205359],[-0.14575442671776,-0.053179074078798,-0.031463459134102]],[[-0.014109089970589,0.11518863588572,-0.036351777613163],[-0.0056878784671426,0.032768782228231,-0.078482791781425],[0.087102524936199,-0.10553522408009,-0.10320515185595]],[[0.062023367732763,-0.058805719017982,-0.050804950296879],[-0.0049810311757028,-0.044865384697914,-0.0041963751427829],[0.17552177608013,-0.13467666506767,0.035099159926176]],[[-0.11468437314034,-0.092659845948219,-0.023647658526897],[-0.12774273753166,0.0062964502722025,-0.060939725488424],[0.016040796414018,0.043626341968775,0.084063373506069]],[[-0.0036031214985996,0.095568008720875,-0.0011129460763186],[0.0016982610104606,-0.00074802379822358,-0.023056294769049],[0.080539084970951,-0.051155310124159,0.11975968629122]],[[-0.042611431330442,-0.087439566850662,0.041093572974205],[0.09150292724371,0.026384849101305,-0.071150407195091],[-0.030460961163044,-0.082768648862839,-0.1342680901289]],[[0.1682496368885,-0.1276153922081,-0.014844793826342],[-0.0074773449450731,0.057863857597113,-0.035283055156469],[-0.016433466225863,0.0012807770399377,-0.13623510301113]],[[-0.29556262493134,0.12205265462399,-0.031324878334999],[-0.057867344468832,0.017581133171916,-0.038211222738028],[-0.0038550621829927,0.062298979610205,0.052896823734045]],[[-0.0090515427291393,-0.0083224289119244,-0.037910960614681],[-0.00072914059273899,-0.032553292810917,0.12031310796738],[0.052727330476046,-0.01934770308435,-0.066020876169205]],[[-0.11679619550705,0.0023215429391712,-0.038687702268362],[0.085404463112354,-0.11506349593401,0.031175086274743],[0.013193077407777,-0.084041506052017,0.024814203381538]],[[-0.077070862054825,-0.037023764103651,-0.05090993270278],[-0.0966886729002,-0.069485776126385,-0.020928358659148],[0.11358217149973,-0.034745756536722,-0.14022015035152]],[[-0.039295978844166,-0.051291156560183,0.16926276683807],[-0.069032050669193,-0.033254995942116,0.030461089685559],[0.083425365388393,0.017342004925013,0.0069401799701154]],[[-0.22931592166424,0.075776860117912,-0.092067621648312],[-0.086199127137661,0.10489746928215,-0.030260836705565],[-0.0085773328319192,-0.01207834854722,0.23646900057793]],[[-0.12995198369026,0.080732241272926,-0.12724700570107],[-0.0093019418418407,-0.05718794092536,-0.15127727389336],[0.043738670647144,-0.012963968329132,-0.031196255236864]],[[0.023645430803299,0.0068823536857963,0.015984648838639],[-0.02514685690403,0.040147133171558,-0.096232026815414],[0.0083330115303397,-0.042753513902426,-0.040910601615906]],[[0.10939645022154,-0.10069214552641,0.16444864869118],[-0.033946368843317,-0.17832571268082,0.087419345974922],[0.054856341332197,-0.020663058385253,0.022526571527123]],[[0.035441234707832,-0.03887502476573,0.01790970005095],[-0.037443183362484,0.0018427971517667,-0.021072365343571],[-0.011790330521762,0.0013455647276714,-0.040361925959587]],[[-0.16811573505402,-0.1547944098711,0.13193272054195],[-0.15544047951698,-0.050795756280422,0.0011074850335717],[-0.013982822187245,-0.029359683394432,0.0059679164551198]],[[0.18455289304256,-0.022785618901253,0.21649651229382],[0.079720377922058,-0.054168526083231,0.070559076964855],[-0.045316729694605,0.089029103517532,0.025069968774915]],[[-0.081181302666664,-0.048533853143454,-0.094419501721859],[0.019423246383667,0.052229564636946,-0.0025137385819107],[-0.014425850473344,0.029079971835017,0.048316519707441]],[[-0.038923155516386,0.040979102253914,-0.013173461891711],[-0.046326402574778,0.017866786569357,0.0085885655134916],[-0.014645975083113,0.018058232963085,-0.0036491160281003]],[[0.058031566441059,0.058663565665483,-0.21270951628685],[0.055339340120554,0.011949660256505,-0.094825461506844],[-0.046162374317646,-0.065833196043968,0.065033875405788]],[[-0.070830568671227,-0.060539111495018,0.066086411476135],[0.10795351862907,-0.052560418844223,-0.070259571075439],[-0.0087329037487507,-0.049463972449303,-0.10213631391525]],[[0.028236957266927,-0.076823242008686,-0.082111917436123],[0.048207804560661,-0.085398748517036,0.020600639283657],[-0.15317299962044,-0.0089274002239108,-0.035017631947994]],[[0.042111873626709,-0.0083887707442045,-0.031620495021343],[-0.0338414311409,0.063159480690956,-0.11938038468361],[0.013028337620199,-0.0506093762815,0.033788949251175]],[[-0.077507928013802,0.05718806758523,0.0047426288947463],[-0.066190168261528,0.14401505887508,-0.04240307956934],[0.11861597746611,0.13425989449024,0.0044411439448595]],[[-0.03689432144165,-0.011838090606034,0.034353509545326],[-0.008670300245285,-0.027485135942698,0.0061800773255527],[0.089403375983238,0.053803123533726,0.075867690145969]],[[-0.15001493692398,-0.032162271440029,0.025214599445462],[-0.074639528989792,0.074872493743896,0.16523408889771],[-0.16542786359787,-0.053868051618338,0.29513192176819]],[[-0.11052789539099,0.039654053747654,-0.23520362377167],[-0.039885129779577,0.094871029257774,-0.03899035602808],[0.027333289384842,-0.1013375222683,-0.092201553285122]],[[-0.048593934625387,-0.076310187578201,7.4849762313534e-05],[0.056794907897711,0.012618212029338,0.07456611841917],[-0.13694882392883,-0.082254849374294,-0.030237635597587]],[[0.021204495802522,0.028065891936421,0.030746566131711],[-0.0038870160933584,0.07098925113678,0.09432078152895],[-0.025689763948321,0.10566894710064,0.052079923450947]],[[0.1024472489953,0.093873001635075,-0.00098267139401287],[0.25295129418373,0.1427676230669,0.13143028318882],[0.093032576143742,0.028605818748474,-0.01535047031939]],[[-0.035607755184174,-0.011016897857189,0.011617936193943],[-0.1789698600769,-0.08932688087225,-0.12003283202648],[0.10665582120419,-0.068278193473816,-0.048213642090559]],[[0.085919588804245,-0.10698562115431,0.06039622798562],[-0.070127837359905,-0.12809173762798,-0.11780796945095],[0.042010463774204,-0.059234976768494,-0.088207319378853]],[[-0.16055937111378,-0.03852254897356,-0.082238182425499],[0.014410544186831,0.04431127011776,-0.098577104508877],[-0.034562133252621,0.077718809247017,0.021467391401529]],[[-0.0051184073090553,0.010021484456956,-0.090725004673004],[-0.038976646959782,-0.092956632375717,-0.071418970823288],[-0.070110939443111,-0.025885581970215,-0.034777924418449]],[[-0.16934055089951,-0.090125903487206,0.061679787933826],[-0.050788514316082,0.061754275113344,0.092877618968487],[0.098827242851257,-0.012052507139742,-0.05843910202384]],[[0.16815286874771,0.12898287177086,-0.17369249463081],[-0.01572585478425,0.064727805554867,-0.0029414494056255],[-0.14242194592953,-0.047813095152378,0.0038346929941326]],[[-0.069249905645847,-0.077656053006649,-0.083138041198254],[0.052394162863493,0.088493764400482,0.031903263181448],[-0.06114325299859,0.09423092007637,0.10093963891268]],[[-0.065595224499702,-0.082385741174221,-0.024880105629563],[-0.077284641563892,-0.13670244812965,-0.0032974896021187],[-0.12373737245798,0.030734978616238,-0.049420353025198]],[[-0.1095381975174,-0.12761241197586,-0.026803378015757],[0.036183174699545,-0.014498610980809,0.0091045126318932],[-0.011425160802901,-0.080149754881859,-0.11795258522034]],[[-0.24861969053745,-0.14089021086693,-0.059990897774696],[-0.20061269402504,0.0089235138148069,0.059298198670149],[0.0053016631864011,-0.057945981621742,0.19239656627178]],[[0.017576424404979,0.00099009228870273,-0.037853699177504],[0.034272827208042,0.042279083281755,0.0066726370714605],[-0.22541412711143,0.025882402434945,-0.24000561237335]],[[0.23873992264271,-0.010688695125282,0.023414803668857],[-0.013613505288959,-0.040037877857685,-0.18745000660419],[0.040155973285437,-0.054674345999956,-0.044359512627125]],[[0.14729325473309,-0.078154109418392,0.064682111144066],[0.06485865265131,0.088337533175945,-0.105188973248],[-0.13796697556973,0.14522403478622,-0.049816638231277]],[[-0.012912603095174,-0.14743272960186,-0.035410940647125],[0.13911268115044,-0.00066678272560239,-0.11786379665136],[0.032954711467028,0.086989395320415,-0.059191036969423]],[[0.092896267771721,0.18890058994293,-0.14519484341145],[0.13490256667137,-0.10127418488264,0.060753408819437],[-0.033381503075361,0.046356145292521,0.028314057737589]],[[0.020377976819873,-0.038180507719517,0.072652973234653],[-0.15840719640255,-0.076391264796257,0.059532035142183],[-0.31627550721169,0.10262437164783,0.03861640766263]],[[0.054682418704033,-0.044319652020931,-0.051241789013147],[0.033165380358696,-0.089008562266827,-0.039382070302963],[0.017953112721443,-0.034206103533506,-0.068771600723267]],[[-0.2082556784153,-0.015746897086501,-0.15767374634743],[-0.21825183928013,-0.049818620085716,-0.040884610265493],[-0.10283888876438,-0.037873949855566,-0.041097570210695]],[[-0.14807444810867,0.093070320785046,-0.13498537242413],[-0.034868285059929,-0.13007116317749,0.02600397542119],[0.12985514104366,-0.16132745146751,0.072381988167763]],[[0.39318200945854,-0.27764245867729,0.17579458653927],[0.0047249468043447,0.0059000439941883,-0.046900257468224],[-0.036915592849255,0.0014697794103995,-0.080379232764244]],[[0.055139161646366,-0.0016066515818238,-0.026383779942989],[-0.019876958802342,-0.031464137136936,-0.051108784973621],[-0.13197126984596,-0.011430441401899,0.14690454304218]],[[0.086907275021076,0.0036057077813894,0.018728399649262],[0.061002515256405,0.030323999002576,0.0078789899125695],[0.015751833096147,0.076781004667282,-0.017195587977767]],[[0.0094927912577987,-0.1516879349947,0.16468186676502],[-0.027733171358705,-0.016997883096337,0.11292114108801],[0.058327071368694,0.11106840521097,0.056338805705309]],[[-0.016491351649165,0.19169595837593,0.014244578778744],[-0.020386833697557,-0.088358886539936,0.059594634920359],[-0.074030444025993,-0.1210448667407,0.057867266237736]],[[-0.20845288038254,-0.078457079827785,-0.13965217769146],[-0.061363413929939,-0.11690460145473,-0.21621111035347],[-0.12588788568974,-0.13017342984676,0.029064234346151]],[[-0.015690926462412,-0.031134210526943,-0.075031086802483],[0.032544616609812,-0.027739144861698,0.050982464104891],[0.16373062133789,0.17317314445972,-0.051565028727055]],[[-0.11829745769501,0.12265677750111,-0.0063974177464843],[-0.12879291176796,-0.10090439021587,0.010081985965371],[-0.15777391195297,0.02002383209765,-0.014318470843136]]],[[[0.044192660599947,-0.051898438483477,-0.07281956076622],[-0.066597573459148,-0.055870916694403,-0.022224334999919],[0.046840343624353,-0.07396250218153,-0.014085173606873]],[[-0.14590667188168,-0.14086243510246,0.0091617051512003],[0.022085895761847,-0.068878270685673,-0.051123049110174],[0.050201877951622,-0.036537598818541,-0.062277935445309]],[[0.053273063153028,-0.0056478544138372,-0.13456968963146],[0.0005687631200999,0.052501235157251,0.081816956400871],[-0.11350808292627,-0.1473726183176,-0.0040141325443983]],[[-0.090600527822971,-0.06427163630724,-0.13106252253056],[0.053029738366604,0.018499029800296,0.010789937339723],[-0.00037053300184198,0.029651796445251,0.032872308045626]],[[0.010469766333699,-0.07157951593399,0.035859726369381],[-0.0075826374813914,-0.02783052995801,-0.05120599642396],[-0.062937363982201,-0.0043107173405588,-0.16622745990753]],[[-0.044509585946798,-0.044561136513948,-0.037446800619364],[-0.033919289708138,-0.11132997274399,0.076639629900455],[-0.02764125354588,0.010659197345376,-0.031296819448471]],[[0.021604491397738,0.033881362527609,0.12200144678354],[-0.11392011493444,0.062090665102005,0.059348318725824],[-0.061807699501514,-0.084133669734001,0.020372292026877]],[[0.089805357158184,0.030958622694016,0.012739758938551],[-0.057927414774895,0.043692734092474,-0.0068124262616038],[0.018673041835427,-0.014772799797356,0.008096668869257]],[[-0.2380009740591,-0.24160189926624,0.062792740762234],[-0.035102836787701,-0.021791303530335,-0.10410293191671],[0.089811630547047,-0.055132165551186,0.072194159030914]],[[-0.0028767995536327,-0.020872237160802,0.010075155645609],[-0.042506534606218,-0.055033981800079,0.023556474596262],[0.077921465039253,0.07427054643631,-0.0048091760836542]],[[-0.017320835962892,-0.015978859737515,-0.0037932046689093],[-0.085053145885468,0.053738124668598,-0.0045343395322561],[0.043240301311016,-0.012659658677876,-0.10756000131369]],[[0.031274739652872,-0.095684982836246,-0.080593340098858],[0.019418779760599,0.058090180158615,-0.101672783494],[-0.076606869697571,0.017859626561403,0.10338781028986]],[[-0.0015111786779016,0.085976734757423,0.038937401026487],[-0.024014351889491,-0.12374793738127,-0.037828426808119],[0.0018313445616513,0.026390625163913,0.014398426748812]],[[-0.12073031067848,-0.027678266167641,0.064587697386742],[-0.016745515167713,-0.05573770031333,-0.027790727093816],[-0.0057057258673012,0.030898844823241,0.12308917194605]],[[0.050253111869097,-0.0072945114225149,-0.061962850391865],[0.094214953482151,-0.07426056265831,0.0013108953135088],[-0.081028379499912,-0.12761677801609,0.12849640846252]],[[-0.066247269511223,-0.01585790514946,-0.0098455995321274],[0.052348271012306,0.051252610981464,-0.014096360653639],[0.038092788308859,0.028176695108414,0.12439029663801]],[[0.11146794259548,0.10377285629511,0.060871880501509],[-0.011838126927614,0.052291225641966,0.038497257977724],[0.012854638509452,-0.040913164615631,0.11020036786795]],[[-0.047597963362932,0.056402254849672,-0.093354538083076],[0.021431026980281,-0.061435483396053,-0.013422487303615],[0.0062196897342801,0.075854547321796,0.028052756562829]],[[0.10942331701517,0.04104558005929,-0.11923042684793],[0.090784199535847,0.034147303551435,-0.012821995653212],[-0.022117609158158,0.028175873681903,-0.0039121275767684]],[[-0.042868223041296,0.027427921071649,0.033198468387127],[0.046717863529921,-0.038939405232668,-0.0085088005289435],[-0.014598463661969,0.081677280366421,-0.047841645777225]],[[0.030671397224069,0.0070369555614889,-0.018583305180073],[-0.0572046674788,-0.080467790365219,-0.026967788115144],[0.15818656980991,-0.064685806632042,0.11919029057026]],[[-0.064070083200932,-0.04020493850112,-0.050660636276007],[0.018709624186158,0.037172827869654,0.015810677781701],[-0.025677312165499,-0.075131580233574,0.037215381860733]],[[-0.031834874302149,0.1226439923048,-0.10463737696409],[-0.010020741261542,-0.11595603823662,-0.0036422009579837],[-0.098932519555092,0.092327728867531,-0.011649722233415]],[[-0.10546393692493,-0.05546322837472,-0.035926982760429],[-0.073423057794571,0.018225649371743,-0.13377767801285],[-0.12565442919731,0.11085716634989,0.16507197916508]],[[0.067042045295238,0.18846353888512,0.0050879856571555],[0.17127647995949,0.087693281471729,-0.05022781342268],[-0.014972247183323,-0.075128763914108,-0.1216506510973]],[[0.049914166331291,-0.075493551790714,0.023535821586847],[-0.013181014917791,-0.058010209351778,-0.0095255672931671],[0.0062658037059009,0.06553927809,-0.0033391905017197]],[[-0.2245716303587,-0.10313088446856,-0.13003742694855],[-0.13550934195518,0.025497416034341,-0.033339560031891],[-0.047062501311302,0.038979936391115,0.03664056956768]],[[-0.16474355757236,-0.064063206315041,-0.074754238128662],[-0.0057047242298722,-0.041221622377634,0.24855613708496],[0.042479153722525,-0.0018179600592703,-0.012948189862072]],[[0.064132153987885,-0.021319368854165,0.054395623505116],[-0.16565708816051,-0.0012722896644846,-0.072317041456699],[-0.26498490571976,-0.088068135082722,-0.044893879443407]],[[0.083543337881565,0.0127197150141,-0.072065867483616],[-0.063105307519436,0.092529095709324,0.065655052661896],[0.016303572803736,0.016789488494396,-0.083194077014923]],[[0.0054305698722601,-0.11056412756443,-0.049239236861467],[0.035653255879879,-0.055991191416979,0.10796538740396],[0.033175352960825,-0.029595008119941,-0.012389528565109]],[[0.026666276156902,0.011883069761097,0.088390953838825],[0.089937634766102,0.10589024424553,0.047684971243143],[0.12931351363659,0.013794827274978,-0.062356438487768]],[[0.11273264884949,0.041196256875992,0.090826727449894],[-0.16170148551464,0.031524788588285,-0.034725803881884],[0.071645870804787,0.067307814955711,0.0090239057317376]],[[0.086846962571144,-0.025937775149941,0.030972836539149],[0.024475837126374,0.085261858999729,0.012129333801568],[-0.097147196531296,-0.13053412735462,0.033727549016476]],[[-0.1701465845108,-0.10118038207293,0.080742545425892],[-0.052660420536995,-0.10452038794756,-0.065638057887554],[-0.10673437267542,0.045604705810547,0.029439941048622]],[[-0.033672489225864,-0.037429332733154,0.0083562526851892],[-0.0059970407746732,0.10266583412886,0.051303170621395],[0.030514284968376,-0.01515437848866,0.10437720268965]],[[-0.016923367977142,-0.11653441935778,-0.034089740365744],[0.091882631182671,-0.031939994543791,0.058046836405993],[0.1365373134613,0.042384639382362,-0.08563032746315]],[[-0.082038670778275,0.082910895347595,0.05210517346859],[-0.083357736468315,-0.074912846088409,-0.10652510821819],[0.03625026717782,0.043172277510166,0.024862008169293]],[[-0.020977323874831,-0.040434770286083,-0.052094500511885],[0.020583853125572,-0.00036253561847843,-0.047051552683115],[0.020040664821863,0.12700766324997,0.043382432311773]],[[-0.0041840709745884,0.007958079688251,0.056911490857601],[-0.063261337578297,-0.13580232858658,-0.0080564469099045],[-0.078435152769089,-0.041376117616892,0.046988319605589]],[[-0.094217486679554,0.0049480106681585,-0.048582419753075],[-0.11788146197796,-0.016935959458351,-0.027741298079491],[-0.088139668107033,-0.033125720918179,0.04132791236043]],[[-0.08487656712532,-0.14162389934063,0.037088084965944],[0.053909651935101,0.025911089032888,-0.021524928510189],[-0.039407834410667,0.037979926913977,-0.08718353509903]],[[-0.086373254656792,-0.031416490674019,-0.0047824420034885],[0.15748773515224,-0.022438080981374,0.073208078742027],[-0.095345385372639,-0.014981936663389,-0.15777368843555]],[[-0.12695199251175,0.069601580500603,0.096077583730221],[-0.0029626246541739,0.035280916839838,-0.042899042367935],[0.012797781266272,0.04007076472044,-0.0064759617671371]],[[0.026574211195111,0.01182503439486,-0.032259214669466],[0.040180396288633,0.1535926759243,0.16517063975334],[-0.048704382032156,0.019566565752029,-0.044776525348425]],[[0.069093450903893,0.10224957764149,-0.037592072039843],[-0.088909469544888,-0.13204261660576,-0.086851097643375],[0.055698469281197,-0.031779825687408,0.083547212183475]],[[0.18755002319813,-0.044085621833801,0.096610844135284],[0.011163616552949,-0.074851527810097,-0.092372350394726],[-0.072723306715488,-0.074815802276134,-0.030219927430153]],[[-0.032119482755661,0.16647103428841,-0.092387676239014],[-0.016679117456079,-0.11300373077393,0.13378848135471],[-0.020237971097231,-0.16962371766567,-0.14024809002876]],[[0.013037358410656,-0.10256642103195,-0.046404365450144],[0.009140252135694,-0.079624019563198,0.036698382347822],[-0.088534712791443,0.03764883056283,-0.024680450558662]],[[0.032294325530529,-0.048702508211136,-0.0051451735198498],[0.07032698392868,0.073882274329662,-0.04784194752574],[0.073159083724022,-0.11862596869469,-0.012298610061407]],[[-0.097230955958366,-0.11883706599474,-0.11510255932808],[-0.0072977687232196,-0.08784145116806,0.0092467684298754],[-0.094083942472935,0.043296810239553,0.11630077660084]],[[0.069677010178566,-0.0067143272608519,0.011943489313126],[0.18960948288441,0.042928401380777,0.077586360275745],[0.057770468294621,-0.1095572039485,0.033006872981787]],[[0.028473487123847,-0.024180550128222,-0.11685341596603],[0.018366483971477,0.028743486851454,-0.016166813671589],[0.0043947622179985,0.085803136229515,0.0070686945691705]],[[0.20749922096729,-0.030396055430174,-0.0056018698960543],[0.15606035292149,0.00080898986198008,0.108806617558],[-0.10712661594152,-0.049096144735813,-0.031925782561302]],[[0.020603071898222,0.065100565552711,-0.15672712028027],[-0.045929800719023,0.061570204794407,-0.083294659852982],[-0.085234969854355,0.034277070313692,-0.058873526751995]],[[-0.012773081660271,0.0045134662650526,0.046163402497768],[-0.094468384981155,0.072690397500992,-0.029879981651902],[-0.041553717106581,-0.053710073232651,-0.073930390179157]],[[0.017682900652289,0.0077565815299749,-0.030512779951096],[-0.05973881855607,-0.11101508140564,-0.094471760094166],[0.0043916865251958,-0.045490950345993,0.12391082197428]],[[-0.053530983626842,-0.049779154360294,-0.044320084154606],[0.010797347873449,0.077471174299717,-0.054896861314774],[0.042586654424667,0.087651446461678,0.10808841884136]],[[0.088447764515877,0.031983584165573,0.059943426400423],[0.073232389986515,0.079351350665092,0.12510332465172],[-0.034356728196144,-0.040935385972261,-0.03857696801424]],[[-0.030668823048472,0.012062462978065,0.098414197564125],[-0.038839735090733,0.026702608913183,0.10205371677876],[-0.10565296560526,-0.048918973654509,0.058659166097641]],[[0.0014933762140572,0.073052994906902,0.16261726617813],[0.080321468412876,-0.031534399837255,0.047483742237091],[-0.01870926655829,0.019407002255321,0.061680670827627]],[[-0.13556335866451,-0.08382123708725,0.02538506500423],[0.054004333913326,0.015136079862714,-0.062438428401947],[-0.045291297137737,-0.039341326802969,-0.05251295119524]],[[0.010809273459017,-0.078290648758411,0.19785656034946],[0.027750829234719,-0.073829099535942,-0.026141917333007],[-0.034410800784826,0.025501497089863,-0.035228747874498]],[[-0.086407385766506,-0.11484128236771,-0.16262121498585],[-0.050384920090437,0.03868330642581,-0.054629594087601],[0.074597828090191,-0.065664224326611,-0.13428583741188]]],[[[-0.083085246384144,-0.12128522247076,-0.057669404894114],[-0.0042913956567645,0.023974001407623,-0.038688335567713],[0.099360808730125,0.096068635582924,0.050240594893694]],[[-0.078311778604984,0.01294179726392,-0.066416889429092],[-0.11749905347824,-0.062052026391029,0.034182265400887],[-0.19462761282921,-0.070860862731934,-0.10400316864252]],[[-0.037214301526546,-0.12143822014332,-0.026808803901076],[0.0042123296298087,-0.016259076073766,-0.047071754932404],[-0.084087014198303,-0.040980890393257,0.0066716652363539]],[[-0.10049882531166,-0.036718152463436,0.067919887602329],[0.031432524323463,-0.037255059927702,0.022917225956917],[-0.10389266908169,0.081581801176071,-0.049884609878063]],[[0.01392204221338,0.09760157763958,0.092549398541451],[-0.0011981173884124,-0.095750473439693,0.0090787280350924],[0.081744559109211,0.1130213290453,0.019968925043941]],[[-0.13178966939449,0.020126545801759,-0.0075469752773643],[-0.12575903534889,0.045790899544954,-0.067210339009762],[0.055185474455357,0.021308267489076,-0.033402539789677]],[[0.026061801239848,0.049123257398605,0.010510247200727],[-0.031281884759665,0.02842440828681,0.010808014310896],[0.0038322128821164,0.074650540947914,0.113998927176]],[[0.016629796475172,0.092458173632622,0.1582153737545],[0.017559982836246,0.088050827383995,-0.14238196611404],[0.072170227766037,0.057373460382223,0.015246110968292]],[[-0.014739924110472,-0.1471198797226,-0.081756494939327],[-0.041874647140503,-0.046926613897085,0.04372251778841],[0.040582668036222,0.015576510690153,0.13499930500984]],[[-0.1107863932848,-0.0887141674757,0.043128076940775],[-0.072138451039791,0.061679787933826,-0.092003501951694],[-0.061216056346893,-0.11997045576572,-0.12549437582493]],[[-0.051752861589193,0.012961577624083,-0.024820065125823],[0.060409463942051,-0.06164400652051,-0.023229232057929],[-0.038311429321766,0.038303922861814,0.061910722404718]],[[0.0079692378640175,0.013414725661278,0.016398042440414],[-0.032319381833076,0.060982957482338,0.047462936490774],[0.038968276232481,-0.036129470914602,-0.027966195717454]],[[-0.10540242493153,0.027673045173287,-0.019193379208446],[0.1026918888092,0.045868158340454,0.041977617889643],[0.077163368463516,-0.060209590941668,0.069909110665321]],[[-0.052522271871567,0.094362333416939,0.080458141863346],[-0.10754607617855,0.034646965563297,-0.034383963793516],[-0.030160391703248,0.13717353343964,0.035710025578737]],[[0.014770600944757,0.026351545006037,0.023233775049448],[0.026392791420221,-0.017840377986431,-0.048953764140606],[-0.087664946913719,0.035387400537729,0.048617798835039]],[[0.091005429625511,-0.12579970061779,0.058265913277864],[-0.079351484775543,-0.014407413080335,0.014684065245092],[0.079503655433655,0.023333920165896,0.030012203380466]],[[0.013305524364114,-0.047926962375641,0.033157840371132],[0.010476378723979,-0.038404379040003,0.069438889622688],[-0.034568872302771,0.01161072589457,-0.036955375224352]],[[-0.002439180854708,-0.028696799650788,0.015140442177653],[0.075583808124065,0.008957514539361,-0.021739963442087],[0.1172710955143,-0.025523643940687,0.03819639980793]],[[-0.10921949148178,-0.0010569434380159,-0.12851265072823],[0.052410215139389,-0.081682614982128,-0.053147114813328],[0.013050436042249,-0.072469152510166,0.050851412117481]],[[0.084283724427223,0.027088949456811,-0.037802886217833],[-0.10016328841448,-0.030864000320435,0.044121246784925],[-0.13596601784229,-0.042750652879477,-0.080122493207455]],[[0.068511374294758,0.14396899938583,0.07300654053688],[0.11310835927725,0.056875307112932,0.02908081188798],[0.14086391031742,-0.09482067078352,0.050420537590981]],[[-0.041114326566458,-0.038332335650921,0.021949253976345],[0.032769966870546,0.010643223300576,-0.0041323946788907],[0.10187575221062,-0.011690066196024,-0.085633769631386]],[[-0.026728557422757,-0.082108519971371,0.0011644749902189],[-0.022869870066643,-0.0082141440361738,0.15307751297951],[0.0010961963562295,-0.054538011550903,-0.053459905087948]],[[0.25808531045914,0.021385865285993,-0.099448353052139],[0.041436292231083,-0.16336603462696,-0.049739986658096],[-0.013354661874473,0.063660025596619,-0.053085122257471]],[[0.046088065952063,-0.0096972249448299,0.054959386587143],[-0.015577629208565,-0.082422375679016,-0.030815059319139],[0.032504424452782,-0.0050278063863516,0.00020754667639267]],[[0.027361895889044,0.026177918538451,0.036643609404564],[-0.055322635918856,-0.046230725944042,0.035887587815523],[-0.054509475827217,0.0099066691473126,0.014628582634032]],[[-0.059659466147423,-0.081506736576557,-0.087476931512356],[-0.07740943133831,-0.019042130559683,-0.068024851381779],[0.0045682080090046,-0.048835087567568,-0.21640582382679]],[[-0.012460143305361,-0.014836292713881,-0.056475635617971],[0.05389341711998,-0.037092939019203,-0.13775090873241],[-0.060318738222122,-0.0754129961133,-0.041571345180273]],[[-0.088172294199467,0.046313218772411,-0.1550577878952],[-0.11931404471397,-0.041640151292086,0.041557259857655],[0.15061371028423,0.059932209551334,-0.093130171298981]],[[0.025060219690204,0.048755001276731,-0.045988664031029],[0.11862076073885,0.066204413771629,0.061410773545504],[-0.036022916436195,-0.11744531989098,-0.020105747506022]],[[-0.0069520864635706,0.041016969829798,-0.0029897980857641],[0.0043099480681121,0.010876447893679,-0.024659220129251],[-0.051593776792288,-0.12951551377773,-0.064574018120766]],[[0.073879480361938,-0.010282557457685,-0.0015009371563792],[-0.10204660147429,0.10403141379356,-0.073331244289875],[0.10403655469418,0.11441013216972,-0.049593713134527]],[[0.00066853611497208,0.053084414452314,0.1496576666832],[0.060361754149199,0.094196066260338,0.06730218231678],[-0.11306974291801,-0.00012687961861957,-0.038274459540844]],[[0.017455127090216,-0.012994064949453,-0.14202010631561],[0.071433804929256,-0.026025982573628,-0.013679102994502],[-0.040593411773443,0.0076174386776984,-0.002090998692438]],[[0.007234379183501,0.047507673501968,0.12049145996571],[-0.035420197993517,0.070842303335667,0.07044755667448],[-0.16479493677616,-0.092690646648407,-0.050090659409761]],[[0.044832311570644,0.08213659375906,0.10477143526077],[-0.0033836297225207,0.024309726431966,0.096128441393375],[-0.055808190256357,-0.02070420794189,0.022194020450115]],[[0.16624702513218,0.055475939065218,0.088144674897194],[-0.022926770150661,0.042557626962662,-0.24221497774124],[0.065587140619755,0.14532624185085,0.040670610964298]],[[0.089275173842907,0.017497440800071,-0.00092107953969389],[-0.093499161303043,-0.04999390617013,-0.010638278909028],[-0.056040644645691,0.014002939686179,-0.049336075782776]],[[0.10782830417156,-0.027394481003284,0.0062765735201538],[-0.059618458151817,-0.050019290298223,-0.054956030100584],[-0.14063577353954,-0.034445960074663,-0.0030687400139868]],[[0.0069215376861393,0.022974563762546,0.017386991530657],[-0.0027063449379057,0.10704001039267,-0.014040493406355],[-0.16968616843224,0.070516683161259,-0.035867862403393]],[[0.04335954785347,0.095347478985786,0.11135284602642],[-0.051421541720629,0.067303314805031,-0.045925065875053],[-0.038580756634474,0.028037266805768,0.012827787548304]],[[0.036163590848446,-0.077318020164967,0.019351001828909],[0.024648679420352,-0.059647615998983,0.0061910334043205],[0.091741301119328,-0.018489187583327,0.10317832231522]],[[0.11687949299812,0.088122799992561,-0.039750467985868],[-0.21038475632668,-0.04453956335783,-0.094853483140469],[-0.13232892751694,0.081279344856739,-0.076831743121147]],[[0.14556774497032,0.0618806630373,0.052199099212885],[-0.05514919757843,0.030580341815948,-0.065137095749378],[0.045024894177914,0.096347808837891,0.076047882437706]],[[-0.12426130473614,-0.057439286261797,0.020146165043116],[0.079786732792854,-0.059022270143032,-0.051250848919153],[0.083418227732182,-0.0560402572155,-0.017691522836685]],[[0.029429197311401,0.087150648236275,-0.064477205276489],[0.0038134774658829,0.15217866003513,-0.09362718462944],[0.050059460103512,-0.015803918242455,0.060832045972347]],[[-0.0025550746358931,0.0040063401684165,0.0490887388587],[0.098001286387444,-0.079057097434998,0.052500300109386],[0.066228374838829,0.033914759755135,-0.047543797641993]],[[-0.062980808317661,-0.040881544351578,-0.10439974069595],[-0.045600220561028,-0.040826469659805,-0.098228491842747],[-0.010925507172942,-0.0082717183977365,0.071261189877987]],[[0.065337792038918,-0.047101888805628,-0.079387925565243],[0.061425127089024,-0.0078463247045875,0.017289277166128],[-0.082128159701824,-0.047022748738527,-0.060974303632975]],[[0.077159874141216,-0.11779253184795,0.061658680438995],[0.081696607172489,0.0092814238741994,-0.088639751076698],[0.093408659100533,0.10949315130711,0.057128611952066]],[[0.014140850864351,-0.093176908791065,0.054324310272932],[-0.036668691784143,-0.062092263251543,0.068323373794556],[-0.0093076778575778,0.018739743158221,-0.062195606529713]],[[0.059015855193138,0.055502209812403,0.088805079460144],[0.0017166666220874,0.019566237926483,0.063783623278141],[-0.059033624827862,-0.11964717507362,-0.030757036060095]],[[0.00021843590366188,-0.1745297908783,0.030259091407061],[-0.035540610551834,0.065262250602245,-0.079046227037907],[-0.070040561258793,-0.011640953831375,0.050285279750824]],[[0.00061937671853229,-0.0016880907351151,-0.019701981917024],[-0.10212213546038,-0.03608863055706,0.038138534873724],[0.0798205062747,-0.0012870266800746,-0.052824031561613]],[[-0.053587198257446,-0.057998452335596,-0.041972305625677],[0.036996338516474,-0.021975673735142,-0.063982635736465],[0.053799841552973,0.060387119650841,0.13900914788246]],[[-0.007553952280432,0.010335370898247,0.028297308832407],[-0.050962924957275,0.063716270029545,0.0026329488027841],[0.15791121125221,0.088173471391201,0.15618920326233]],[[0.0042788884602487,-0.081687338650227,-0.015487402677536],[-0.10058356821537,-0.12760181725025,0.080089904367924],[0.063922293484211,0.051926668733358,0.15621601045132]],[[0.1053864210844,0.079529851675034,-0.010315390303731],[0.00016242507263087,0.0015576021978632,-0.072678901255131],[-0.075163125991821,-0.0077382330782712,0.05510089546442]],[[-0.0045924899168313,-0.031598575413227,0.0026138287503272],[0.0068218903616071,0.039313245564699,-0.090665087103844],[0.084462232887745,0.00036723469384015,-0.017441296949983]],[[0.077612169086933,-0.032891288399696,0.050960432738066],[0.0093982936814427,-0.11152858287096,0.010347411967814],[0.021259309723973,0.056107003241777,0.085724204778671]],[[0.091055080294609,0.024777082726359,0.041610412299633],[0.051331851631403,-0.073109187185764,0.0079305116087198],[-0.011031957343221,0.019612664356828,0.0412930957973]],[[-0.022225871682167,0.025237465277314,-0.0698471814394],[-0.052787940949202,0.089971713721752,-0.064306527376175],[-0.030679916962981,0.019927063956857,-0.025924576446414]],[[0.043468579649925,-0.015164881944656,0.031924124807119],[-0.15267549455166,-0.0012862150324509,0.064282119274139],[0.11472169309855,0.059513252228498,0.062989093363285]],[[0.057900153100491,0.087329193949699,0.021124925464392],[-0.025664819404483,-0.089866310358047,-0.1277137696743],[-0.087797380983829,0.054333999752998,-0.020491292700171]]],[[[0.083965636789799,0.03891384601593,0.1064834445715],[-0.085287556052208,-0.044003833085299,-0.071625240147114],[-0.017876952886581,-0.011774249374866,-0.060910794883966]],[[-0.16225077211857,0.043967168778181,0.044346712529659],[-0.014930166304111,-0.0060090175829828,-0.07717702537775],[-0.18566082417965,-0.046968325972557,-0.13277608156204]],[[0.093877762556076,0.087956421077251,-0.05619965493679],[-0.041752111166716,0.059011191129684,-0.12895356118679],[-0.035326696932316,-0.098103396594524,-0.040707778185606]],[[-0.092600457370281,-0.063762724399567,0.025031723082066],[-0.22324120998383,-0.076188452541828,-0.13874483108521],[0.069118194282055,-0.022312710061669,-0.060580305755138]],[[0.037462625652552,-0.037488650530577,-0.18540991842747],[-0.092199943959713,-0.09650194644928,0.026524677872658],[-0.071102656424046,-0.015574018470943,-0.030574463307858]],[[0.054869100451469,-0.031422395259142,-0.068531207740307],[0.08117513358593,0.083970583975315,0.051454972475767],[-0.17477217316628,-0.11960307508707,-0.093979202210903]],[[0.045390345156193,0.089994564652443,0.11663872003555],[0.0046296445652843,0.039555784314871,0.069303624331951],[0.03972988948226,-0.021042801439762,-0.16253279149532]],[[-0.047310695052147,-0.082442551851273,-0.053514443337917],[-0.056064464151859,0.088523857295513,0.2390508800745],[-0.0025006146170199,-0.021373625844717,-0.054123122245073]],[[-0.13790349662304,0.014314359053969,-0.17103509604931],[-0.083963714540005,-0.045297186821699,-0.17777338624001],[0.041858799755573,0.018051439896226,-0.22547121345997]],[[0.074342362582684,0.18774704635143,0.092382423579693],[-0.0059606623835862,-0.078523151576519,0.14455124735832],[-0.074443675577641,-0.12034172564745,-0.037096004933119]],[[0.020540660247207,0.054245889186859,0.020522769540548],[-0.0040667578577995,-0.043560050427914,0.20027317106724],[-0.015241259709001,-0.12349133193493,-0.10037747770548]],[[0.037407718598843,0.061340529471636,0.051850143820047],[0.11324336379766,0.14116542041302,0.07830436527729],[-0.045851726084948,-0.013637384399772,-0.028503354638815]],[[-0.055015590041876,-0.016659546643496,-0.074270479381084],[0.080730155110359,0.076458796858788,0.078371658921242],[0.08140629529953,-0.18672940135002,-0.065682612359524]],[[-0.19879464805126,-0.035782236605883,0.11121070384979],[-0.071768008172512,-0.081067219376564,0.035364594310522],[-0.031562242656946,0.020512407645583,-0.02532372623682]],[[-0.051113076508045,0.071932248771191,0.16655600070953],[-0.041459202766418,-0.035003736615181,-0.065864980220795],[0.033429995179176,-0.12011203169823,-0.12699565291405]],[[0.032334014773369,0.021118173375726,0.10456522554159],[0.011072047054768,-0.060598310083151,0.055639795958996],[0.013843433000147,-0.11328171938658,0.0278972517699]],[[-0.089770697057247,0.021486224606633,0.10993409901857],[0.026594961062074,0.038303785026073,0.0281215403229],[0.1013013496995,-0.037691984325647,-0.10064320266247]],[[-0.06428174674511,-0.1790546476841,-0.17595645785332],[0.072280615568161,-0.024208229035139,0.005159979686141],[-0.098269693553448,-0.01622973382473,0.15823015570641]],[[-0.047178152948618,0.097260944545269,0.10686033219099],[-0.09158443659544,0.07842742651701,-0.0023669998627156],[-0.1948955655098,0.06120777502656,-0.26504302024841]],[[0.19057473540306,0.15651312470436,0.074346669018269],[-0.1136259958148,-0.20812198519707,-0.047061398625374],[-0.15725773572922,-0.031654465943575,-0.022474706172943]],[[0.040361989289522,0.0026435537729412,0.040979065001011],[-0.14793810248375,-0.078054249286652,0.067187570035458],[-0.035518668591976,-0.031568329781294,-0.04992701113224]],[[-0.019070517271757,-0.049252938479185,0.094382114708424],[-0.073465444147587,-0.03413425385952,-0.018552601337433],[0.067355073988438,-0.080383636057377,-0.12046007812023]],[[0.021040506660938,0.0070782564580441,-0.11505828797817],[-0.080067954957485,-0.15949180722237,0.041161358356476],[0.038216907531023,0.09259882569313,0.070001132786274]],[[-0.10536032170057,0.0051726433448493,0.21921068429947],[0.12137658149004,-0.019752077758312,-0.14537769556046],[-0.14935424923897,-0.10445836186409,0.052123628556728]],[[0.1380969285965,-0.2494475543499,-0.047724839299917],[0.015858866274357,0.025647733360529,0.073882326483727],[-0.082469753921032,0.09847317636013,0.005166273098439]],[[-0.025257447734475,0.020431729033589,-0.0064582377672195],[-0.014964512549341,-0.0092499908059835,0.078360453248024],[-0.10755533725023,-0.016955893486738,0.085307262837887]],[[-0.05331501737237,-0.12931895256042,-0.020304901525378],[-0.20709164440632,-0.07508759945631,0.28094825148582],[0.056269004940987,-0.0061821080744267,0.0074542476795614]],[[-0.022063238546252,-0.00046202732482925,-0.041991990059614],[-0.065697193145752,-0.013667948544025,-0.033655762672424],[0.078530982136726,-0.047508422285318,0.062625043094158]],[[-0.022494364529848,-0.078886598348618,0.093304544687271],[0.13247631490231,0.026899747550488,-0.062001410871744],[-0.11639289557934,0.082796201109886,-0.10316816717386]],[[0.21678903698921,0.036390919238329,-0.061811424791813],[-0.11366444081068,0.036007855087519,0.0025026795919985],[0.097003519535065,0.14664202928543,0.059247821569443]],[[0.087783344089985,-0.11995916068554,0.073148228228092],[0.043174508959055,-0.02988988161087,-0.077681325376034],[0.012270510196686,-0.010457333177328,0.080503106117249]],[[0.020241549238563,-0.063237480819225,-0.022395281121135],[0.03248044475913,-0.069639079272747,0.026467787101865],[0.022795742377639,-0.0039067752659321,0.084580115973949]],[[-0.010569844394922,-0.0069286972284317,-0.19998694956303],[0.19972795248032,0.067190364003181,-0.0067699053324759],[0.068810559809208,0.012369065545499,-0.028471074998379]],[[-0.069261483848095,-0.026831481605768,0.051950126886368],[0.011718258261681,0.18668013811111,-0.042370427399874],[-0.014849420636892,-0.13011166453362,-0.058325327932835]],[[0.096748977899551,0.044222205877304,0.022412095218897],[0.062938153743744,0.090384550392628,0.15295423567295],[0.031015669927001,0.015139680355787,-0.0055198781192303]],[[0.13297459483147,0.091131135821342,0.17275962233543],[0.1280439645052,0.14019076526165,0.05061324313283],[0.040940921753645,0.074947468936443,0.039215307682753]],[[0.066053919494152,-0.015155897475779,-0.010449424386024],[0.21303379535675,-0.09693531692028,0.075957015156746],[-0.096517659723759,0.05535276979208,0.11192756891251]],[[0.025426112115383,-0.098132766783237,-0.070432767271996],[0.0054324273951352,-0.046346973627806,0.063001923263073],[-0.069852396845818,-0.050251863896847,-0.044824786484241]],[[-0.096482753753662,0.040935259312391,0.053730342537165],[-0.024135682731867,0.10255239903927,-0.060799065977335],[0.002883736975491,-0.013677967712283,0.033706448972225]],[[-0.069694817066193,-0.068076871335506,-0.24369406700134],[-0.052330620586872,0.017308752983809,0.14302125573158],[-0.13694903254509,-0.068148083984852,0.026065675541759]],[[-0.16990101337433,-0.070529371500015,0.11780828982592],[0.17874655127525,0.084040105342865,-0.061711329966784],[0.090187400579453,0.098104871809483,0.090763278305531]],[[-0.046356957405806,-0.14846931397915,-0.29027420282364],[0.10918077081442,0.0093521047383547,0.12513297796249],[0.048743683844805,0.02997912093997,0.14181563258171]],[[0.019344117492437,0.054527662694454,0.087806098163128],[0.070128932595253,0.096560016274452,0.18959483504295],[-0.078439645469189,-0.12017549574375,-0.28986266255379]],[[0.046309888362885,0.051279090344906,0.19417332112789],[-0.082342736423016,-0.01081753987819,-0.12725950777531],[-0.14877742528915,0.1268534809351,-0.053855512291193]],[[0.0021351152099669,0.10400879383087,-0.16382616758347],[-0.032246306538582,-0.029221059754491,-0.33688443899155],[-0.12428902089596,-0.058457389473915,0.12903700768948]],[[0.068017587065697,-0.089660502970219,-0.40165928006172],[0.069725573062897,-0.0010615980718285,0.0092304954305291],[-0.17677783966064,-0.063438437879086,0.17423431575298]],[[0.20692582428455,0.1438635289669,-0.0047813500277698],[-0.12928251922131,0.01611509360373,0.11587385833263],[-0.056649707257748,-0.071102872490883,-0.033140577375889]],[[0.014387510716915,0.072110369801521,0.04178161919117],[-0.072097510099411,0.056914612650871,0.052943367511034],[0.035154856741428,-0.06581437587738,0.00056357635185122]],[[0.14028091728687,-0.0025902141351253,0.19799433648586],[0.0067026726901531,0.017589844763279,-0.0026555869262666],[-0.089953385293484,-0.040425725281239,-0.07612956315279]],[[-0.13308276236057,-0.156647965312,-0.21646465361118],[0.024224150925875,-0.071969620883465,0.087652161717415],[0.275505900383,0.12572291493416,0.16101518273354]],[[0.044716559350491,0.094953671097755,-0.078903131186962],[-0.02541010081768,0.020316179841757,-0.26800948381424],[-0.076024942100048,0.15716849267483,0.08745814114809]],[[0.054966069757938,0.0074518159963191,0.21406446397305],[-0.0087040811777115,-0.016603304073215,0.15665367245674],[-0.0810312256217,-0.066081687808037,-0.0088543882593513]],[[-0.031059702858329,-0.045615330338478,0.082601822912693],[-0.080348625779152,0.095095567405224,0.014989164657891],[0.023824626579881,0.049622684717178,0.045674338936806]],[[0.003589057829231,0.0084750279784203,0.069283954799175],[0.10831643640995,0.017193406820297,-0.02167360112071],[-0.10569807887077,-0.12335446476936,-0.075265973806381]],[[-0.19351226091385,-0.058657120913267,-0.058404337614775],[0.044328466057777,0.12057238072157,-0.069701358675957],[0.15028551220894,-0.012541796080768,-0.1110940054059]],[[0.073768943548203,0.087604962289333,0.017195526510477],[-0.015962410718203,-0.082631230354309,0.13732133805752],[-0.091564834117889,-0.0086202323436737,-0.069021113216877]],[[-0.025240687653422,0.04048066213727,0.00082386995200068],[-0.10339336842299,0.0059733767993748,-0.14120788872242],[0.013161829672754,0.053195629268885,0.078405670821667]],[[-0.093704074621201,-0.10742305219173,0.0063588605262339],[0.093995563685894,-0.0062136179767549,-0.10811270773411],[0.092166177928448,-0.029090281575918,-0.068873077630997]],[[-0.034858852624893,0.13687664270401,0.059571426361799],[0.073197595775127,0.15397398173809,0.072329461574554],[0.1148885935545,0.1979533880949,0.19128938019276]],[[-0.15880934894085,0.04951611161232,0.28490555286407],[-0.1182916611433,0.13148140907288,0.00074389856308699],[-0.0010330437216908,0.11049539595842,-0.038203120231628]],[[-0.044661238789558,-0.11005431413651,-0.15745685994625],[0.12066476792097,-0.043349657207727,0.076211579144001],[0.0038637691177428,0.10622479766607,0.045365694910288]],[[0.070572204887867,0.08070657402277,-0.14186607301235],[0.082976154983044,0.035001758486032,-0.17443017661572],[0.052964471280575,-0.20185396075249,-0.10118600726128]],[[-0.075881958007812,0.0036160061135888,-0.19021758437157],[0.082978621125221,0.11662144958973,0.15801350772381],[-0.21700805425644,-0.067681334912777,-0.053618296980858]],[[-0.11263471841812,0.1037255898118,-0.054421428591013],[-0.055798012763262,-0.094574593007565,-0.092652469873428],[0.12013023346663,0.066806852817535,0.10771527141333]]],[[[-0.022325413301587,0.09634805470705,-0.1266206651926],[-0.026464883238077,-0.064647376537323,0.078152932226658],[-0.12464137375355,-0.10856612771749,0.0065471571870148]],[[-0.00240792427212,-0.021799108013511,-0.019702957943082],[0.040323533117771,0.097056016325951,0.082640178501606],[-0.019620364531875,-0.14716884493828,-0.10810904949903]],[[0.025150619447231,-0.025219349190593,0.041958715766668],[0.053124792873859,0.05429507419467,0.06991907954216],[0.032514948397875,-0.014670697040856,0.0055931252427399]],[[-0.085606582462788,0.056086450815201,0.01970624178648],[0.057724040001631,0.0087440507486463,0.013680995441973],[0.11296956241131,0.0097524495795369,0.078084483742714]],[[-0.019446134567261,0.01404676027596,-0.002669014967978],[0.026425257325172,-0.024567114189267,0.0017094898503274],[0.071336001157761,0.025964129716158,-0.09755777567625]],[[-0.031011812388897,-0.063423871994019,0.0068732029758394],[0.035590544342995,-0.056181523948908,0.0022854441776872],[-0.080678306519985,0.028921527788043,-0.0084962472319603]],[[0.057860359549522,-0.065412744879723,-0.0049911602400243],[0.05312268063426,0.02795223519206,-0.068889133632183],[-0.040816459804773,0.17848514020443,-0.052935943007469]],[[-0.067212522029877,-0.15182134509087,-0.003537101438269],[0.040754683315754,-0.019391190260649,0.071920856833458],[0.12562483549118,0.031964812427759,0.054879240691662]],[[-0.053926143795252,-0.073925159871578,-0.075057804584503],[0.0316311866045,-0.0729955509305,-0.094245344400406],[0.01891527697444,-0.10140262544155,0.043388616293669]],[[-0.044103190302849,0.019377974793315,0.087120406329632],[0.01167450658977,-0.07142711430788,0.017516968771815],[0.063485361635685,0.04475774616003,0.012601001188159]],[[0.15573047101498,0.037399742752314,0.02681097202003],[0.072653628885746,0.033406902104616,0.057693522423506],[-0.11874803155661,-0.021231435239315,0.019394205883145]],[[0.10626301169395,-0.048625417053699,-0.10840527713299],[0.013480572029948,0.019404567778111,0.011685685254633],[-0.040929917246103,0.07871425896883,-0.18666505813599]],[[-0.07825730741024,0.0098005086183548,0.0086161438375711],[-0.051079619675875,-0.068228028714657,-0.041122868657112],[0.020261792466044,0.056315269321203,-0.0119046587497]],[[-0.073634453117847,0.0041512586176395,-0.166921839118],[-0.10582999140024,0.042306151241064,-0.035443294793367],[-0.091677829623222,0.0075402944348752,-0.02360725402832]],[[0.09439055621624,0.042659830302,-0.042713064700365],[0.021325865760446,-0.07792080193758,0.029110703617334],[0.097833745181561,-0.011573977768421,0.052860591560602]],[[-0.15857221186161,-0.12837103009224,-0.05710457265377],[-0.21108767390251,-0.026615928858519,-0.0022792329546064],[0.0082821017131209,-0.13878266513348,-0.036902949213982]],[[-0.076042994856834,-0.042603079229593,-0.15924392640591],[0.06938523799181,0.069501668214798,0.078984208405018],[0.14932292699814,-0.031223403289914,0.093057818710804]],[[-0.0062917284667492,-0.0035544959828258,-0.011554292403162],[0.043536067008972,0.11874036490917,-0.0059353900142014],[-0.012478840537369,0.0055437278933823,-0.058330219238997]],[[0.14230698347092,0.054950647056103,0.0061301901005208],[0.016388056799769,-0.025639183819294,0.095016039907932],[0.06814631819725,-0.11669643968344,0.028573032468557]],[[-0.039156805723906,0.0031320580746979,-0.065834939479828],[0.095940686762333,-0.010593437589705,-0.045722991228104],[-0.14636020362377,-0.067192673683167,-0.056611970067024]],[[0.10603722929955,0.053253751248121,-0.051321476697922],[-0.012338927946985,0.10961482673883,0.015889178961515],[0.051994986832142,0.033301424235106,-0.14242796599865]],[[-0.048330675810575,-0.035985440015793,0.012261349707842],[-0.040500301867723,0.032306686043739,0.061195954680443],[-0.062558688223362,-0.031422402709723,-0.0081692142412066]],[[0.0066755008883774,0.010334682650864,-0.062318123877048],[0.0057071610353887,-0.0064069801010191,0.047767836600542],[-0.0051886402070522,-0.016091851517558,-0.036148604005575]],[[-0.10351257771254,-0.14458222687244,0.0029187283944339],[-0.044006165117025,-0.040798425674438,0.1181049272418],[0.076603263616562,-0.10777741670609,0.034161649644375]],[[-0.02750157751143,-0.045253545045853,0.037358347326517],[-0.11247215420008,0.023275895044208,0.031387198716402],[-0.029300028458238,0.010837384499609,0.05757587775588]],[[0.01106611546129,-0.012307989411056,-0.060600619763136],[0.015502391383052,0.089460514485836,0.016414994373918],[-0.097031600773335,0.011960074305534,0.017144169658422]],[[0.14192682504654,-0.079805873334408,0.086399592459202],[0.038615923374891,-0.016416912898421,0.037114396691322],[-0.028012629598379,-0.037855375558138,0.086338020861149]],[[0.033301401883364,-0.015401633456349,0.13738334178925],[0.039949674159288,-0.060437604784966,0.035591468214989],[0.079387009143829,0.068441495299339,-0.048272646963596]],[[-0.051127910614014,0.010169987566769,-0.0057877106592059],[0.014265585690737,-0.012168345041573,0.017272396013141],[-0.13586071133614,-0.049336101859808,-0.044321332126856]],[[0.0037774301599711,0.0045037996023893,0.021814376115799],[-0.0033813938498497,0.065256044268608,-0.064227640628815],[-0.22974386811256,-0.0031414795666933,0.014924801886082]],[[0.091131187975407,-0.044295147061348,0.027018409222364],[0.10805144906044,-0.11738649010658,-0.00098794675432146],[-0.010303797200322,-0.032865636050701,0.064955458045006]],[[0.10497055202723,0.037674963474274,-0.063021048903465],[-0.046102657914162,-0.027752915397286,0.055361285805702],[0.057476416230202,0.096810303628445,0.20917698740959]],[[0.050723060965538,-0.029661510139704,-0.0083269150927663],[0.010293088853359,-0.017667945474386,-0.087878443300724],[-0.069524846971035,-0.084907032549381,-0.093496955931187]],[[-0.060822032392025,-0.0037528213579208,0.018942151218653],[0.064920790493488,0.027101552113891,0.064163357019424],[-0.061374381184578,-0.03182702511549,0.064143039286137]],[[-0.048590999096632,-0.073659859597683,-0.26250714063644],[-0.040958896279335,0.068571679294109,0.077908970415592],[-0.027953734621406,0.024280194193125,-0.094108253717422]],[[-0.0053433356806636,0.091477915644646,0.096426047384739],[0.06555400043726,0.15798400342464,0.024569984525442],[-0.079346545040607,-0.02596671693027,0.037030432373285]],[[0.011260197497904,0.039569534361362,0.065274327993393],[0.10898712277412,0.042524769902229,-0.070049740374088],[0.05675059184432,0.078209720551968,0.087151058018208]],[[-0.03262759745121,0.012196691706777,-0.062851123511791],[-0.021579528227448,-0.065316259860992,0.0040524965152144],[0.0092643704265356,-0.00012222517398186,-0.14884820580482]],[[0.15097898244858,0.074144408106804,-0.053724259138107],[0.026752751320601,-0.045136202126741,0.011146045289934],[-0.1211349889636,0.033611539751291,-0.12154498696327]],[[0.046736471354961,0.06756716966629,-0.011919397860765],[0.088212922215462,-0.063254080712795,0.11404038220644],[-0.049201443791389,-0.043493997305632,0.042677126824856]],[[-0.0018260857323185,0.057081826031208,0.060616496950388],[0.011883409693837,0.071815758943558,0.16764187812805],[-0.076404437422752,0.049426190555096,-0.06523210555315]],[[0.020658556371927,-0.094826929271221,-0.063471153378487],[0.10343211889267,-0.038077253848314,-0.21503689885139],[0.091297373175621,0.04662623628974,-0.077783167362213]],[[0.028316963464022,0.058830715715885,0.016656070947647],[0.11191450804472,-0.1262620985508,-0.071388386189938],[-0.027001369744539,0.050815135240555,0.052148427814245]],[[0.010222023352981,-0.034666303545237,-0.017989415675402],[0.13330581784248,0.042415991425514,-0.042145717889071],[0.04259181022644,-0.022822599858046,0.046086698770523]],[[-0.10320142656565,0.042880494147539,-0.037740584462881],[-0.018390644341707,0.05441765114665,0.118791423738],[-0.07797060161829,0.082768321037292,0.097833201289177]],[[-0.06301923841238,0.089828379452229,0.016249625012279],[0.077791191637516,0.0014388430863619,0.022712435573339],[-0.18221575021744,-0.033244259655476,0.26648280024529]],[[-0.11281372606754,-0.049550972878933,-0.050225108861923],[0.025521410629153,0.073168978095055,-0.043249327689409],[-0.11169286072254,0.019085142761469,-0.011188414879143]],[[0.014531246386468,0.057980269193649,0.015722565352917],[-0.067631788551807,-0.046818263828754,-0.080425642430782],[-0.11328049749136,-0.061476793140173,0.12026104331017]],[[0.042551945894957,-0.092501021921635,0.072942346334457],[0.024030309170485,0.0039234482683241,0.028375511988997],[-0.018661273643374,-0.0091869179159403,0.055626712739468]],[[0.033447526395321,-0.029771998524666,0.036566585302353],[0.023859431967139,-0.032196585088968,0.065779700875282],[0.057192575186491,-0.039245780557394,0.078304022550583]],[[-0.030428754165769,0.21018008887768,-0.10787016153336],[-0.17699754238129,0.084463372826576,-0.10632235556841],[-0.050860360264778,0.066613912582397,0.15113663673401]],[[-0.030556490644813,0.021765973418951,0.025478985160589],[-0.057806104421616,-0.010335079394281,0.086017645895481],[-0.1398970335722,-0.063996486365795,0.049625765532255]],[[0.10991154611111,-0.064461730420589,0.016333365812898],[0.14531686902046,0.073899082839489,0.06161493062973],[0.087358474731445,0.039557788521051,0.0011410950683057]],[[0.01304494868964,-0.10785043239594,0.034592069685459],[0.081079564988613,0.045406304299831,0.062119942158461],[-0.065746791660786,0.081056416034698,0.026463197544217]],[[-0.051891654729843,0.060425084084272,0.053883757442236],[-0.030210610479116,-0.024325236678123,0.0017833455931395],[0.062267407774925,-0.076700240373611,-0.0038399891927838]],[[0.04275918379426,0.030729755759239,0.081559613347054],[0.090740531682968,-0.012227512896061,0.04639020934701],[0.15469864010811,0.019635180011392,0.074027501046658]],[[-0.012853715568781,0.11782169342041,0.031976316124201],[0.0093672461807728,0.078730881214142,0.065457917749882],[0.0075657414272428,0.055954825133085,-0.045947022736073]],[[-0.071362629532814,0.041311711072922,-0.16088281571865],[-0.021287683397532,0.062878750264645,-0.029603788629174],[-0.065119385719299,-0.036993488669395,0.1451191753149]],[[0.013477036729455,0.015212154947221,-0.036502860486507],[0.0031713114585727,0.011995050124824,-0.070424623787403],[0.11471082270145,0.09885623306036,0.15686132013798]],[[0.1215443983674,0.025080349296331,0.043313756585121],[0.025097394362092,0.089095272123814,-0.064175762236118],[-0.028604254126549,-0.17402122914791,0.018330389633775]],[[0.052428148686886,0.06438884139061,-0.016146846115589],[0.06695693731308,0.024231635034084,-0.11559507995844],[0.032213229686022,0.090152405202389,-0.060025442391634]],[[0.019300777465105,0.10233893990517,0.018289072439075],[-0.15975424647331,-0.044964928179979,0.079850919544697],[-0.0065277242101729,0.085716210305691,0.051798678934574]],[[-0.066288031637669,-0.071663856506348,0.076453074812889],[-0.010179177857935,-0.035513170063496,0.0076015642844141],[0.10058433562517,0.021651402115822,0.035382017493248]],[[0.026110507547855,0.18558210134506,0.029712278395891],[0.012788229621947,0.02693267352879,0.054272670298815],[-0.027291113510728,-0.00013163205585442,-0.05406516045332]]],[[[-0.15071335434914,-0.10753880441189,-0.015950346365571],[-0.169822499156,-0.069908611476421,0.11506778746843],[-0.072534091770649,-0.012959633953869,-0.063613101840019]],[[0.0013878374593332,0.1009855568409,0.068030089139938],[0.059359516948462,0.022268552333117,-0.088113903999329],[0.028266325592995,0.020490251481533,0.073187820613384]],[[-0.046932581812143,-0.20637463033199,-0.072649873793125],[-0.075586296617985,-0.12602016329765,0.018321169540286],[0.013798256404698,-0.081983618438244,-0.0030123069882393]],[[-0.13238976895809,0.00175870815292,0.057994108647108],[-0.048822730779648,-0.088248759508133,-0.018275922164321],[0.039716728031635,-0.071981996297836,-0.029124215245247]],[[0.081178314983845,-0.14009869098663,0.0063676671124995],[-0.07896862924099,-0.043770413845778,-0.10685667395592],[0.085002243518829,-0.0038482171948999,0.049691956490278]],[[-0.085446894168854,-0.095415450632572,0.05927736312151],[0.013622843660414,0.068078428506851,-0.049635462462902],[-0.18648195266724,-0.024056075140834,-0.08524177968502]],[[-0.095132857561111,0.013356219045818,0.033639907836914],[-0.02594280615449,-0.10374136269093,-0.14232386648655],[-0.11329456418753,-0.0065983887761831,-0.1281460672617]],[[-0.077860310673714,-0.1201348900795,0.0039394376799464],[-0.012653247453272,0.026570145040751,0.0045786509290338],[0.12708653509617,0.006206626072526,-0.099944435060024]],[[-0.073221661150455,-0.15943536162376,0.071397833526134],[-0.017594920471311,-0.10992973297834,0.026201568543911],[-0.045529451221228,0.031618468463421,0.04849961027503]],[[0.054158426821232,0.0092450771480799,-0.0355044901371],[-0.075492918491364,-0.11865310370922,0.014759683050215],[0.039554718881845,0.092664413154125,0.025776920840144]],[[0.074636414647102,0.14318545162678,-0.058450005948544],[-0.13908471167088,-0.19469986855984,0.011933916248381],[-0.11863812059164,-0.089358970522881,0.021939050406218]],[[-0.022307876497507,-0.042404938489199,-0.16181667149067],[0.088127076625824,-0.08404166251421,-0.17664209008217],[-0.026498576626182,-0.038823682814837,-0.12284594029188]],[[-0.032684151083231,0.094185046851635,0.12442784756422],[0.036900863051414,0.06684310734272,0.014328016899526],[-0.065638072788715,-0.026962954550982,0.0085456827655435]],[[-0.13952702283859,0.07058984041214,-0.0067018768750131],[0.055630918592215,0.066896468400955,-0.044513780623674],[-0.04613932967186,-0.18827910721302,0.025039423257113]],[[-0.13384874165058,-0.087586864829063,0.055913709104061],[-0.040563944727182,-0.087038770318031,-0.14151495695114],[0.096497088670731,-0.019180096685886,0.13773018121719]],[[-0.043220892548561,0.10948035120964,0.20216089487076],[-0.15574608743191,-0.0061610536649823,0.18341508507729],[0.10010439902544,0.10420229285955,0.12318603694439]],[[-0.06571402400732,-0.22661629319191,-0.019728630781174],[0.041492905467749,-0.062553010880947,-0.10958296060562],[-0.062925808131695,-0.051447339355946,-0.061459083110094]],[[-0.0032683880999684,0.11554194241762,-0.025725491344929],[-0.00044361298205331,-0.031248910352588,0.078467458486557],[-0.078642457723618,-0.013162254355848,0.00062550528673455]],[[-0.077941864728928,-0.049815740436316,0.15678024291992],[-0.028569618239999,0.052922159433365,-0.032075461000204],[-0.25349673628807,0.041105039417744,-0.1804226487875]],[[-0.15888847410679,0.033848132938147,0.0083768768236041],[-0.10743760317564,0.016924418509007,0.06117383018136],[-0.069888927042484,-0.10471732914448,-0.049438156187534]],[[-0.061485096812248,-0.10991202294827,-0.091035440564156],[-0.019293416291475,-0.080284751951694,0.10632651299238],[-0.14296765625477,-0.019270846620202,0.090797983109951]],[[-0.021866243332624,-0.032687708735466,0.012069404125214],[-0.036145724356174,0.024395857006311,-0.020226091146469],[0.0025853437837213,-0.076950147747993,0.010469350963831]],[[-0.022629460319877,-0.046086527407169,-0.033174321055412],[-0.023989642038941,-0.12100884318352,0.13872499763966],[-0.073120847344398,-0.19682671129704,-0.056564528495073]],[[0.043682921677828,0.096138179302216,0.10026819258928],[0.073412701487541,0.084339492022991,0.12785302102566],[-0.02334270067513,-0.069333381950855,-0.060714665800333]],[[0.061876878142357,-0.10848372429609,-0.096700727939606],[0.061799537390471,0.10926349461079,-0.0079222936183214],[0.20504604279995,0.086789190769196,0.032609783113003]],[[0.014972516335547,0.0045259092003107,-0.033562924712896],[0.013458961620927,-0.082360796630383,-0.028441030532122],[-0.033031854778528,0.014275161549449,0.027230670675635]],[[-0.029528608545661,-0.010286240838468,0.012582347728312],[0.18418538570404,0.064690120518208,0.10969261825085],[0.067324958741665,0.0025013759732246,-0.13514024019241]],[[-0.095037423074245,-0.092399209737778,-0.23772631585598],[0.09058989584446,-0.059332422912121,0.11869772523642],[0.021483020856977,-0.058141779154539,-0.078869313001633]],[[-0.055461425334215,0.045579314231873,0.055511947721243],[-0.094752714037895,-0.028910676017404,0.068617090582848],[0.078376777470112,0.098637744784355,-0.16853505373001]],[[0.055685292929411,0.00075829226989299,-0.074797593057156],[0.054958697408438,0.029853533953428,-0.290781468153],[-0.065911889076233,-0.065593630075455,-0.14954121410847]],[[-0.048055186867714,0.027450921013951,0.040634844452143],[-0.0031857066787779,-0.089004196226597,-0.0151885766536],[0.0028924816288054,-0.058756142854691,0.10222544521093]],[[0.18968264758587,0.025290736928582,0.094939403235912],[-0.058632135391235,-0.04901921376586,-0.087194755673409],[0.083450242877007,-0.015852713957429,0.062211524695158]],[[-0.022458480671048,0.022615822032094,0.18946214020252],[-0.053455516695976,-0.061651635915041,-0.063260704278946],[0.13605213165283,0.047781366854906,0.1005762591958]],[[0.035452201962471,-0.058682058006525,-0.083101727068424],[0.088974565267563,0.1159745156765,0.016152640804648],[-0.1203516125679,-0.16592505574226,-0.21217408776283]],[[-0.076749093830585,-0.015393381007016,-0.088567078113556],[0.064245231449604,0.029299546033144,-0.25747200846672],[0.09174320101738,-0.027958227321506,0.15922649204731]],[[0.0091812033206224,0.039340265095234,-0.028044609352946],[0.014072716236115,0.033881444483995,0.04106616973877],[0.057899791747332,0.074640698730946,0.18754389882088]],[[0.021489245817065,-0.0026809545233846,0.074932686984539],[0.097998358309269,-0.012177244760096,0.058413207530975],[-0.088757686316967,-0.083792045712471,0.0051078866235912]],[[0.053699225187302,-0.061312537640333,-0.13579541444778],[0.043301600962877,0.012589800171554,-0.095330692827702],[-0.037334699183702,-0.095096483826637,-0.069982439279556]],[[-0.098315097391605,-0.13376232981682,-0.1311276704073],[-0.017295975238085,-0.052255768328905,0.026430808007717],[0.00040994482696988,-0.076743692159653,0.090914785861969]],[[-0.039832297712564,-0.11505508422852,0.050072535872459],[-0.007201611995697,0.082983940839767,0.064878456294537],[-0.12768015265465,0.10561969876289,-0.014158794656396]],[[-0.034412704408169,0.1475814729929,0.014953300356865],[0.060335334390402,-0.14544020593166,-0.023538045585155],[-0.070925831794739,-0.026822842657566,-0.056189619004726]],[[0.061958149075508,-0.091710180044174,-0.09579761326313],[-0.10549049079418,-0.058635696768761,0.029962437227368],[0.11447320133448,0.092818818986416,-0.15645430982113]],[[-0.14143827557564,-0.011336912401021,0.090084612369537],[-0.081977836787701,0.074603922665119,-0.036430928856134],[0.12226143479347,-0.024634204804897,-0.18165965378284]],[[-0.15273526310921,-0.19314986467361,-0.11855532228947],[0.056439407169819,-0.00093376857694238,0.13715255260468],[0.038552030920982,-0.12958008050919,-0.13897819817066]],[[-0.016651164740324,-0.0280452799052,-0.064363166689873],[0.002063870197162,-0.16840979456902,0.0085912272334099],[-0.055953923612833,0.06464659422636,-0.0057068592868745]],[[-0.10338903218508,-0.019417729228735,-0.020262166857719],[-0.029209926724434,0.085407190024853,0.090347126126289],[-0.03179344907403,-0.091240800917149,-0.17279590666294]],[[0.041679240763187,0.10854133963585,0.066045865416527],[-0.13147874176502,-0.075110174715519,-0.053604487329721],[0.0022124827373773,-0.015211615711451,-0.0025341643486172]],[[0.011729697696865,-0.041174307465553,-0.23743286728859],[-0.047291468828917,-0.032567989081144,0.030073467642069],[-0.11500456929207,-0.050471521914005,-0.099673457443714]],[[-0.015092334710062,0.060984432697296,0.20704428851604],[0.017322435975075,0.087824858725071,0.015924753621221],[-0.076315581798553,-0.15221562981606,-0.11360089480877]],[[-0.028868101537228,-0.16155390441418,-0.092818334698677],[0.048852507025003,-0.01824826002121,-0.016774287447333],[-0.071427762508392,-0.058828145265579,-0.24174603819847]],[[-0.13455800712109,-0.06016331166029,-0.18997824192047],[-0.14280061423779,-0.07784379273653,-0.054208297282457],[-0.038160815834999,0.118497595191,0.064183503389359]],[[-0.038338210433722,0.070602297782898,0.031899385154247],[-0.096390657126904,0.050730165094137,-0.058476578444242],[-0.070100829005241,-0.16101762652397,0.10470758378506]],[[-0.045169282704592,0.065147861838341,-0.040016107261181],[0.069384850561619,-0.092482902109623,0.06817390024662],[-0.020619936287403,0.099722564220428,-0.047009948641062]],[[0.03097540140152,-0.054911497980356,-0.022389778867364],[0.021045118570328,-0.051356133073568,-0.051459338515997],[-0.14997531473637,-0.12230273336172,-0.0020610634237528]],[[0.011176716536283,-0.081497825682163,-0.030304906889796],[-0.067195534706116,-0.064142853021622,-0.15568141639233],[-0.12078961730003,-0.032585144042969,-0.19153559207916]],[[0.094133608043194,0.07732205837965,0.1453804820776],[-0.031967923045158,0.036801043897867,0.026961078867316],[0.047018438577652,0.097234308719635,0.031301856040955]],[[0.19487449526787,0.11089544743299,-0.03151585534215],[-0.14014026522636,-0.098445169627666,0.040017060935497],[-0.020641664043069,0.059610564261675,-0.052520547062159]],[[0.058520272374153,0.0091097233816981,0.012461705133319],[-0.018227156251669,0.0071604489348829,0.11128541827202],[-0.094696424901485,-0.096260137856007,-0.25797361135483]],[[-0.05520898476243,-0.048896662890911,0.075042620301247],[0.068468376994133,-0.023204954341054,0.098971515893936],[0.0941102206707,-0.065418027341366,0.048156544566154]],[[0.19161128997803,0.054867174476385,-0.032702174037695],[-0.051855232566595,0.071189068257809,0.046475272625685],[-0.032328993082047,-0.05039332434535,-0.028916843235493]],[[-0.19079333543777,-0.24541476368904,-0.10489662736654],[0.003369334153831,-0.043038081377745,-0.10582530498505],[-0.0053728115744889,0.042876441031694,0.063422635197639]],[[0.069393008947372,0.0020462132524699,-0.093539871275425],[-0.073651731014252,0.03957162052393,-0.056322392076254],[-0.13509640097618,-0.097920812666416,-0.019266167655587]],[[-0.062780745327473,-0.11547822505236,0.014707838185132],[0.011921528726816,0.080120384693146,0.055077467113733],[0.051163580268621,-0.029458228498697,0.0023744448553771]],[[0.13557831943035,-0.087907053530216,-0.10025524348021],[0.018176795914769,0.045172799378633,-0.10570850223303],[-0.1605211943388,-0.078822836279869,0.0072752181440592]]],[[[0.036193989217281,0.03578782081604,-0.020855791866779],[-0.089215561747551,0.025945277884603,0.053436644375324],[-0.0082665095105767,0.068165570497513,-0.06939260661602]],[[-0.083570510149002,-0.012398582883179,-0.071284927427769],[-0.11421965807676,-0.10278522223234,0.045109234750271],[0.006791447289288,0.020630728453398,-0.12399726361036]],[[-0.050720930099487,0.022211372852325,0.12713055312634],[-0.15869610011578,-0.1122864112258,0.0052660796791315],[-0.067879691720009,-0.1267569065094,0.008981972001493]],[[0.02575171366334,-0.010828096419573,0.015831522643566],[0.0055919913575053,0.067140497267246,0.0077243368141353],[-0.015877092257142,-0.070402331650257,0.017555452883244]],[[0.10379776358604,0.11140903830528,0.078593567013741],[-0.00662114424631,-0.048098042607307,-0.12372425198555],[-0.1272524446249,-0.040816392749548,-0.051146704703569]],[[0.13511691987514,-0.0045560006983578,0.02343357168138],[-0.10800245404243,-0.1374297440052,-0.032156467437744],[-0.1842855066061,0.06204916536808,0.022297475486994]],[[-0.037967137992382,-0.008431457914412,0.13273955881596],[0.069014981389046,0.08700842410326,-0.076817601919174],[-0.053347408771515,-0.06992445141077,-0.097296364605427]],[[-0.10706430673599,-0.16380408406258,-0.10923428833485],[-0.063144944608212,0.11262732744217,-0.11113011091948],[-0.040499854832888,0.13444824516773,0.27547258138657]],[[0.16619038581848,0.071098007261753,-0.04399836063385],[0.043614968657494,-0.019192630425096,0.046739116311073],[-0.016503851860762,-0.068909533321857,-0.13078713417053]],[[0.009271695278585,0.077793046832085,0.073572672903538],[0.14270044863224,-0.097432985901833,-0.21854424476624],[0.023044429719448,-0.021958813071251,-0.15378265082836]],[[0.11431154608727,-0.10078976303339,0.01295832823962],[-0.12764213979244,-0.008432999253273,-0.101711563766],[-0.021039079874754,0.010296658612788,-0.064658232033253]],[[0.058475580066442,-0.085940130054951,0.062135983258486],[0.021076515316963,-0.005892829503864,-0.073789931833744],[-0.015197787433863,0.074174836277962,-0.029179129749537]],[[-0.085416749119759,-0.13560916483402,-0.041739489883184],[0.04345466569066,-0.070122860372066,-0.066475428640842],[-0.019240634515882,-0.058594033122063,0.0018030304927379]],[[-0.14381819963455,0.1427509188652,0.014346295967698],[0.0028962118085474,-0.060021303594112,0.053993325680494],[0.022605339065194,0.046938247978687,0.037860512733459]],[[-0.068444237112999,0.041025724261999,-0.061291851103306],[0.010316445492208,0.025838097557425,0.00046786334132776],[-0.088761150836945,0.091276794672012,0.036018289625645]],[[0.071183383464813,0.019641246646643,0.15337519347668],[0.092671789228916,0.039813235402107,-0.036720082163811],[0.0093114925548434,0.10846937447786,0.19574473798275]],[[-0.050425689667463,-0.16200739145279,-0.15407666563988],[0.067729540169239,-0.034155800938606,-0.15518307685852],[0.080944247543812,-0.060489490628242,0.031356256455183]],[[-0.034472931176424,0.08468371629715,0.027530279010534],[0.0042733452282846,-0.046838987618685,-0.041911143809557],[-0.13152095675468,-0.0095869610086083,-0.062928073108196]],[[0.0056434385478497,-0.014048838056624,-0.11831830441952],[0.052024021744728,-0.072889238595963,0.057776536792517],[0.10500574856997,0.0057001626119018,-0.076493322849274]],[[-0.050739891827106,-0.093919277191162,-0.028469769284129],[-0.029873223975301,-0.0046702180989087,0.077093563973904],[-0.059213735163212,0.035442885011435,-0.02749097160995]],[[0.21235385537148,0.0047845914959908,-0.05781576409936],[-0.060591332614422,0.071123719215393,0.081131920218468],[-0.17055656015873,-0.087656535208225,0.032948039472103]],[[-0.0082900524139404,-0.00052682613022625,-0.027782632037997],[-0.037378195673227,-0.022471403703094,-0.011205658316612],[-0.0037085674703121,0.030002277344465,-0.005707903765142]],[[0.031116846948862,0.0094423023983836,0.071556285023689],[-0.15640044212341,-0.026669459417462,-0.014601827599108],[0.10209941118956,-0.022366661578417,-0.0076472298242152]],[[0.21780548989773,0.034096203744411,-0.012091791257262],[0.065113440155983,0.069719545543194,0.088378243148327],[0.028564481064677,-0.056441556662321,0.082350239157677]],[[0.11515232920647,0.016824025660753,-0.0020345374941826],[0.082369163632393,0.086902186274529,-0.022638622671366],[0.13665409386158,0.13308027386665,0.018599305301905]],[[-0.015412826091051,-0.040864385664463,0.016919979825616],[-0.05684307217598,-0.029487244784832,-0.027001207694411],[0.025245495140553,0.030392445623875,0.057047050446272]],[[0.02078372426331,-0.032279446721077,-0.060404129326344],[0.17728240787983,0.13120771944523,0.031148603186011],[-0.14047315716743,-0.033273920416832,0.081878922879696]],[[0.062281295657158,-0.16465072333813,0.01827003993094],[0.045018695294857,-0.036031000316143,-0.20692072808743],[0.019238507375121,0.044817872345448,0.079899445176125]],[[-0.093332208693027,-0.020371589809656,-0.15454711019993],[0.12404027581215,-0.032450545579195,-0.0016372903482988],[0.07869865000248,-0.041591543704271,-0.055696189403534]],[[-0.039654333144426,-0.01060551777482,0.056134466081858],[0.056725852191448,0.031572744250298,-0.044767610728741],[0.10008235275745,-0.013242062181234,-6.1463342717616e-06]],[[0.016460921615362,0.047378867864609,0.062895178794861],[-0.11279059201479,-0.078681834042072,0.13230009377003],[-0.043008115142584,-0.027236495167017,0.059733796864748]],[[0.019118776544929,0.024918707087636,-0.045620400458574],[-0.11511664092541,-0.066179923713207,-0.024817703291774],[0.015956280753016,-0.0025586595293134,0.012444108724594]],[[-0.016775665804744,-0.014438993297517,-0.042948346585035],[0.21405754983425,0.039212547242641,-0.049094785004854],[-0.074347473680973,-0.0091373976320028,-0.13931272923946]],[[-0.0072668408975005,-0.013514745980501,-0.080187894403934],[0.054090764373541,0.024875497445464,0.038425236940384],[0.01986033283174,-0.13122217357159,-0.0035429222043604]],[[0.10602568089962,-0.0026991264894605,-0.1069725677371],[0.09776970744133,0.085300453007221,-0.091942869126797],[-0.19497282803059,-0.14335046708584,-0.035228572785854]],[[-0.033860243856907,0.098019927740097,0.12745320796967],[-0.041829660534859,-0.11006291210651,0.1126319244504],[0.019226001575589,0.10889036208391,-0.0067553441040218]],[[0.074191085994244,0.099370144307613,0.066280417144299],[-0.019745040684938,-0.052018728107214,-0.024515161290765],[-0.0086723752319813,0.24371284246445,0.047089822590351]],[[-0.051425706595182,-0.069136768579483,-0.077210821211338],[-0.042862989008427,0.012614014558494,-0.034325066953897],[-0.14609569311142,-0.071001455187798,-0.041147954761982]],[[-0.036089729517698,0.02524920925498,0.099165596067905],[-0.062568813562393,-0.080488212406635,-0.17040310800076],[-0.051418203860521,0.00093153602210805,-0.17646765708923]],[[0.024025313556194,0.075428552925587,-0.051511842757463],[0.10349979251623,-0.090441815555096,-0.076564088463783],[0.055754259228706,0.085006967186928,0.022023810073733]],[[-0.10779847949743,0.082916863262653,0.090690545737743],[-0.16554591059685,-0.18348367512226,0.03273793309927],[-0.085266627371311,-0.18752598762512,-0.065894819796085]],[[0.048739925026894,-0.00028672293410636,0.035710904747248],[0.10420770943165,0.0055128470994532,-0.06490683555603],[0.052656646817923,0.092106774449348,0.10120835155249]],[[0.026453891769052,-0.061590693891048,-0.07813860476017],[-0.15632463991642,0.019001757726073,-0.037027154117823],[-0.10869415849447,-0.10814854502678,-0.029619514942169]],[[-0.034774497151375,0.1630345582962,0.19243682920933],[-0.047346845269203,0.047513976693153,-0.02792545966804],[-0.082779355347157,-0.16369450092316,-0.057897664606571]],[[-0.008217447437346,-0.10582941025496,0.10987167060375],[-0.013946268707514,0.028273487463593,-0.041463322937489],[0.078344464302063,0.06005610153079,0.03867631405592]],[[-0.11015563458204,0.035882066935301,0.057224445044994],[-0.063642792403698,-0.12770144641399,-0.022373706102371],[-0.1709851026535,-0.040783792734146,0.11515308171511]],[[-0.23331283032894,-0.056695893406868,0.13794845342636],[-0.043319784104824,-0.065932013094425,-0.11572276800871],[0.11045365780592,-0.042197871953249,-0.099669940769672]],[[-0.062250059098005,0.1124961450696,-0.10506171733141],[-0.016249207779765,-0.048390794545412,-0.020965976640582],[-0.0097373612225056,0.085522167384624,0.052347507327795]],[[-0.024187304079533,-0.010226594284177,0.033408675342798],[0.041162192821503,-0.02774247713387,0.042207881808281],[-0.089805595576763,-0.11263874918222,0.1275690048933]],[[0.090579234063625,0.09683271497488,-0.11976561695337],[-0.045398823916912,-0.090728886425495,-0.032288044691086],[-0.075470753014088,-0.054767437279224,-0.075149178504944]],[[-0.06941644102335,-0.071169838309288,-0.12366076558828],[-0.057513933628798,-0.032457381486893,-0.012514119036496],[-0.082108356058598,-0.36600762605667,-0.03398086130619]],[[-0.078321874141693,0.014724262058735,-0.14353831112385],[0.14492093026638,-0.16514591872692,-0.070626802742481],[-0.11090280115604,-0.089469507336617,0.12765949964523]],[[0.072094827890396,-0.016951093450189,0.0279321372509],[0.032274302095175,-0.021328710019588,0.016467796638608],[0.081639461219311,0.044463369995356,0.010376608930528]],[[-0.13946270942688,-2.3388658519252e-05,0.087144173681736],[0.043308664113283,-0.080862633883953,-0.10706110298634],[-0.064864076673985,0.038786306977272,0.070873200893402]],[[-0.090642541646957,-0.014036301523447,0.067838050425053],[0.063650123775005,-0.14064203202724,-0.12994748353958],[0.068734407424927,-0.018178256228566,-0.0067062852904201]],[[0.024727245792747,0.0616185516119,0.25498434901237],[-0.071964271366596,-0.14305827021599,-0.13247209787369],[0.074288703501225,-0.00031173179741018,-0.031161069869995]],[[-0.084714666008949,0.018687892705202,-0.041126761585474],[0.067410849034786,-0.038144618272781,-0.032454781234264],[-0.023651648312807,0.074426986277103,0.057515926659107]],[[-0.12908257544041,-0.084701105952263,-0.060762997716665],[-0.038277547806501,-0.071756832301617,-0.076902955770493],[-0.035456918179989,-0.038698472082615,-0.07913139462471]],[[0.039125993847847,-0.036683473736048,0.0079564116895199],[-0.03413137793541,-0.00095857941778377,0.095518656075001],[0.016471384093165,0.10182319581509,0.075806602835655]],[[0.069985933601856,-0.073344640433788,-0.26059508323669],[-0.031885895878077,0.07053305208683,0.048916660249233],[0.033016793429852,0.033190127462149,-0.09710118919611]],[[-0.029131054878235,0.10656721889973,0.053635653108358],[-0.12341126054525,-0.019684914499521,0.01498700119555],[-0.13203713297844,-0.15101732313633,-0.11552487313747]],[[0.11981397867203,0.0081599690020084,-0.10840681940317],[-0.053110878914595,0.024070058017969,0.18464685976505],[-0.011791215278208,-0.14471861720085,0.029462652280927]],[[0.068875938653946,-0.04379491508007,0.026857390999794],[0.037026848644018,-0.023928934708238,0.0047529549337924],[-0.076161742210388,-0.035539694130421,0.22867353260517]],[[0.037496887147427,-0.057172294706106,0.039338391274214],[0.078483641147614,0.091242410242558,-0.076036706566811],[-0.21267119050026,-0.064251631498337,0.025894746184349]]],[[[-0.0965890660882,0.074607163667679,-0.25079247355461],[-0.09327107667923,0.069451116025448,-0.026444792747498],[0.083663813769817,0.074405536055565,0.015563679859042]],[[-0.034375306218863,-0.058711025863886,-0.23881506919861],[-0.044719733297825,-0.052741762250662,-0.11653602868319],[0.07688570022583,-0.069726191461086,-0.027491167187691]],[[-0.17897564172745,-0.22800730168819,0.060101434588432],[-0.10647767782211,-0.22648751735687,-0.054622281342745],[0.047070734202862,-0.14980116486549,0.070997096598148]],[[-0.41748249530792,0.11255722492933,-0.024762002751231],[-0.19347439706326,0.030292401090264,-0.035146594047546],[-0.10974960029125,0.08187098801136,-0.082620643079281]],[[0.041878636926413,-0.11246153712273,-0.066721491515636],[-0.013232164084911,-0.11912393569946,-0.12929271161556],[0.040926575660706,-0.12969435751438,-0.22540281713009]],[[-0.061923023313284,0.089841268956661,-0.053000416606665],[-0.17261452972889,-0.033562269061804,0.062507718801498],[-0.095208801329136,0.042956288903952,0.013685151003301]],[[0.021481050178409,-0.058992125093937,-0.12607124447823],[-0.05273474380374,-0.00065137236379087,-0.096476435661316],[-0.042043879628181,-0.099643543362617,-0.034148268401623]],[[0.0075892154127359,-0.049763355404139,0.1040972173214],[-0.053246937692165,0.036472197622061,0.065160326659679],[-0.058864127844572,-0.028731219470501,0.072269968688488]],[[-0.013146505691111,-0.0031870459206402,0.10641399770975],[-0.01466516032815,-0.050267197191715,0.099381744861603],[-0.12381597608328,0.055388774722815,0.099917210638523]],[[-0.13980276882648,-0.09304254502058,0.12436919659376],[-0.064797930419445,-0.10660453140736,-0.0091995168477297],[-0.10502319782972,-0.027734605595469,-0.081175118684769]],[[0.0060542467981577,-0.016901699826121,-0.41693291068077],[-0.042143505066633,-0.05290637537837,-0.083085253834724],[0.09722263365984,0.079487174749374,0.28352203965187]],[[0.16567893326283,0.055996231734753,-0.26911169290543],[0.03433496132493,-0.10158937424421,-0.07792991399765],[-0.098138481378555,-0.11267294734716,0.051983367651701]],[[-0.062756136059761,-0.032750908285379,-0.086394891142845],[0.019482119008899,0.054265528917313,-0.032203789800406],[-0.032595854252577,0.010441086255014,-0.033187497407198]],[[-0.0028765911702067,0.011008405126631,0.038394659757614],[0.039165023714304,-0.0065225814469159,0.035581242293119],[-0.1101803407073,0.021536191925406,0.010549115017056]],[[-0.047817468643188,0.015268408693373,-0.10721535980701],[0.0098040038719773,-0.01857628673315,-0.17712089419365],[-0.051433254033327,-0.10680448263884,-0.18184950947762]],[[0.061711248010397,-0.11331613361835,-0.020602965727448],[-0.089660309255123,-0.10867709666491,0.14311355352402],[-0.12930709123611,-0.11719261109829,0.086422547698021]],[[-0.0044057671912014,-0.059708908200264,0.0099946698173881],[0.068499617278576,-0.041057147085667,-0.080530233681202],[-0.019296105951071,-0.11523836106062,-0.11226590722799]],[[-0.040936250239611,0.11176607757807,-0.17436867952347],[-0.050676599144936,0.15205132961273,-0.15440018475056],[0.083734378218651,-0.013609677553177,-0.01974437944591]],[[0.02612191811204,-0.072028756141663,-0.00501748919487],[-0.15095257759094,-0.084838517010212,-0.11569267511368],[-0.29153463244438,-0.050786461681128,-0.042090576142073]],[[-0.056544717401266,-0.069985575973988,-0.070084191858768],[-0.05263239517808,-0.10521625727415,-0.029296025633812],[-0.1698172390461,-0.23528204858303,-0.06786122918129]],[[0.072289653122425,0.02928889170289,-0.022259540855885],[0.17781308293343,-0.023064494132996,-0.057180650532246],[-0.030425362288952,0.11647816747427,0.047983404248953]],[[-0.018267890438437,0.023391507565975,-0.050633601844311],[-0.028986498713493,-0.14714430272579,-0.049223940819502],[0.064781531691551,0.034979972988367,-0.03861815482378]],[[-0.093687638640404,0.056877233088017,-0.030709411948919],[-0.15804615616798,0.015678260475397,-0.021395526826382],[-0.15610009431839,0.082169331610203,-0.02203063480556]],[[0.020697398111224,0.26472818851471,-0.10229318588972],[0.17062644660473,0.12181513756514,-0.076586782932281],[0.13823798298836,0.072035066783428,-0.079297952353954]],[[0.064464047551155,-0.040805660188198,0.062140796333551],[0.014780103228986,-0.032770089805126,0.047071184962988],[-0.03303599730134,0.10623879730701,0.03782669082284]],[[0.0021467602346092,0.044251039624214,-0.041919894516468],[-0.059177696704865,-0.029703460633755,-0.015504724346101],[-0.070108614861965,0.060308527201414,0.050123274326324]],[[-0.051371414214373,0.043956022709608,-0.013179081492126],[-0.078413583338261,-0.015387432649732,-0.1070818156004],[0.022055078297853,-0.040553167462349,0.11349850147963]],[[-0.098825141787529,-0.01424075756222,-0.095405265688896],[-0.095112793147564,-0.051174007356167,-0.10740731656551],[-0.072473250329494,-0.14094740152359,-0.040692538022995]],[[-0.12562343478203,-0.058009557425976,-0.20824682712555],[-0.027701707556844,0.0080862194299698,0.014348403550684],[0.062854453921318,-0.16382823884487,-0.074394188821316]],[[0.0085248807445168,-0.16045396029949,-0.18444150686264],[0.013087750412524,-0.086583115160465,-0.046446416527033],[-0.028978211805224,-0.074392698705196,-0.065314814448357]],[[0.13691288232803,-0.068273909389973,-0.053048383444548],[0.0058188773691654,0.071734800934792,-0.043268635869026],[-0.014891694299877,0.077430918812752,-0.0017032374162227]],[[0.0705880895257,-0.02318112552166,-0.04084612429142],[0.020555272698402,-0.0030599739402533,-0.050847645848989],[0.27172461152077,0.019789734855294,-0.016318041831255]],[[0.10537817329168,-0.067348629236221,-0.06412748247385],[0.093716666102409,-0.1649704426527,0.057948857545853],[0.18248838186264,-0.038494940847158,0.077724754810333]],[[0.08669251948595,0.0091147720813751,-0.04067450761795],[-0.030632423236966,-0.1750795096159,0.012853398919106],[-0.081355772912502,-0.10770477354527,-0.033733777701855]],[[0.05264649912715,-0.070162869989872,0.011844404041767],[0.0031930687837303,-0.084499768912792,0.066503994166851],[0.015852687880397,-0.15400892496109,0.14984355866909]],[[-0.0048134298995137,0.095548890531063,0.03494593501091],[-0.02522686123848,0.058047007769346,0.085590593516827],[-0.045649953186512,-0.05154075101018,0.16352505981922]],[[-0.11352045089006,0.083347879350185,0.048680938780308],[0.071006186306477,0.12713797390461,0.048198323696852],[0.24536521732807,0.15395221114159,0.0069476533681154]],[[0.071528911590576,0.094332113862038,-0.038780938833952],[-0.039399661123753,0.014872135594487,-0.20434917509556],[0.018399612978101,-0.086136072874069,-0.23733213543892]],[[-0.0038106134161353,-0.026829773560166,0.064866714179516],[-0.095758154988289,0.046606183052063,0.033817909657955],[-0.056080613285303,0.01586427539587,0.15046308934689]],[[0.09515692293644,-0.081862203776836,-0.001930090598762],[0.066102609038353,0.0094268461689353,-0.081979095935822],[0.11210857331753,-0.023705957457423,-0.11497455090284]],[[-0.03048942796886,-0.057558298110962,0.011247143149376],[-0.080844700336456,-0.20791505277157,-0.021026799455285],[0.10715252161026,-0.22819590568542,-0.012948517687619]],[[-0.19608181715012,-0.15210269391537,-0.17265041172504],[-0.0677370429039,-0.0060974527150393,-0.14785975217819],[-0.14958463609219,0.15769313275814,-0.01840502768755]],[[-0.025843339040875,-0.06401951611042,0.28591629862785],[0.076182626187801,-0.024444619193673,0.0080881556496024],[-0.079509496688843,-0.02227683365345,-0.11098759621382]],[[0.19110006093979,-0.16012778878212,0.030734669417143],[0.049622487276793,-0.14058990776539,-0.041483372449875],[-0.073659315705299,-0.13297773897648,0.093391232192516]],[[-0.10881381481886,-0.014923152513802,0.030796155333519],[-0.17003192007542,0.083541162312031,-0.072687432169914],[-0.098601415753365,0.18184538185596,0.070625551044941]],[[0.049954362213612,0.020640641450882,0.075528338551521],[-0.067652344703674,-0.041572511196136,0.1221217662096],[-0.0091046802699566,-0.21326711773872,-0.0069647976197302]],[[0.0028078856412321,0.041291322559118,-0.096315674483776],[-0.056408364325762,0.016531974077225,-0.08644487708807],[0.03856136277318,-0.046669669449329,-0.043818078935146]],[[0.0014407616108656,-0.18214184045792,-0.05854170396924],[0.029408030211926,-0.10691394656897,-0.004736106377095],[0.064388692378998,-0.0065460209734738,0.00095926295034587]],[[0.067522250115871,-0.063899524509907,-0.075901612639427],[0.0011036451905966,-0.032645709812641,0.014250855892897],[-0.1291012018919,-0.043449901044369,0.16553170979023]],[[0.19109192490578,-0.12860068678856,0.10667759925127],[0.092531360685825,-0.12091257423162,0.025237910449505],[0.006671232637018,-0.030936600640416,-0.083012022078037]],[[0.16938748955727,-0.14559286832809,-0.049596313387156],[0.044449955224991,-0.088605582714081,-0.014846235513687],[0.098185695707798,-0.070833452045918,0.095622196793556]],[[0.11709187924862,0.17861722409725,-0.12928830087185],[0.0050077335909009,-0.15278802812099,-0.10133717209101],[-0.035090293735266,0.068414464592934,-0.045759104192257]],[[-0.12791676819324,0.17098186910152,0.028030406683683],[-0.14753060042858,0.015271326526999,-0.023333679884672],[-0.23184041678905,0.24857717752457,-0.093826949596405]],[[-0.17757435142994,0.18032975494862,0.096019618213177],[-0.071216374635696,0.019598346203566,-0.097376756370068],[-0.10797534883022,-0.11171206831932,0.028046371415257]],[[-0.078553408384323,0.018695199862123,-0.14016801118851],[0.0056561785750091,0.060604099184275,-0.13366831839085],[-0.00095701997634023,0.0076008383184671,0.097674764692783]],[[0.035977937281132,-0.022604120895267,0.03242564946413],[0.044489592313766,-0.069308124482632,-0.10229108482599],[-0.24424502253532,-0.034366060048342,-0.18900217115879]],[[-0.13851316273212,-0.11732398718596,0.13754293322563],[-0.054745763540268,-0.097452759742737,0.016263697296381],[0.014297680929303,0.006685615517199,-0.035073518753052]],[[-0.060357760637999,0.072204358875751,0.068992391228676],[-0.031064722687006,0.049798421561718,0.035120312124491],[-0.059339888393879,-0.021647350862622,-0.025366626679897]],[[0.085187360644341,0.092353135347366,0.035526357591152],[0.010242565535009,-0.0014955217484385,0.11160509288311],[0.084954060614109,-0.047801837325096,0.08051997423172]],[[-0.13206557929516,0.04508376121521,-0.058902233839035],[0.012197518721223,-0.060161430388689,0.060659926384687],[0.016304317861795,-0.052750568836927,-0.021248454228044]],[[-0.073371566832066,-0.13383173942566,-0.02208324149251],[0.046890445053577,-0.025530086830258,0.0092076137661934],[0.10337047278881,-0.028397623449564,0.079648219048977]],[[-0.023237390443683,-0.10513693094254,-0.14329306781292],[-0.039435997605324,-0.059034198522568,0.0036812457256019],[-0.039180152118206,-0.01659313775599,0.099242955446243]],[[-0.11434657126665,0.078810125589371,-0.029983028769493],[-0.056802026927471,0.0068439515307546,0.02531916461885],[0.056892842054367,-0.11165457963943,0.040067404508591]],[[0.13752646744251,-0.042019002139568,-0.0017848865827546],[-0.032402079552412,-0.15243856608868,-0.0090474486351013],[-0.021891867741942,-0.17941334843636,-0.32178929448128]]],[[[-0.061255734413862,-0.049634281545877,-0.097842693328857],[-0.042382333427668,0.0039850529283285,-0.058558080345392],[0.0010249805636704,0.05109142139554,-0.0058267479762435]],[[0.028525387868285,0.02532934397459,-0.086174644529819],[0.051346212625504,-0.042936280369759,0.0032166354358196],[-0.045182950794697,-0.071099184453487,0.011733269318938]],[[-0.019071457907557,-0.055636841803789,0.027965487912297],[0.0031592028681189,0.023638935759664,0.040641482919455],[-0.030669502913952,-0.084875732660294,-0.084731869399548]],[[-0.013773510232568,0.06796520203352,-0.085641704499722],[-0.007985052652657,-0.095880053937435,-0.088523395359516],[0.025723870843649,0.014597960747778,-0.061618845909834]],[[0.026484936475754,0.019966999068856,-0.13467422127724],[0.082447521388531,0.018072510138154,0.082768335938454],[0.075368113815784,-0.019374521449208,0.0704026222229]],[[-0.015241258777678,0.0089167393743992,0.073608048260212],[0.041832990944386,-0.022453119978309,-0.033758848905563],[-0.00033962613088079,0.10683190822601,0.0031227834988385]],[[0.023627620190382,-0.065424025058746,-0.024343119934201],[-0.072886250913143,-0.043998491019011,-0.12737601995468],[0.021389618515968,0.12479545921087,0.0270338319242]],[[-0.048351563513279,0.067123219370842,0.011464023031294],[-0.013892461545765,0.032633572816849,-0.10553951561451],[0.1301875859499,0.017290554940701,0.01467087585479]],[[0.046496361494064,0.016367089003325,-0.065640054643154],[-0.051681354641914,-0.037662208080292,-0.022616811096668],[-0.042468570172787,0.024987848475575,0.018553268164396]],[[-0.016690086573362,0.085510358214378,0.05666159465909],[-0.080468125641346,-0.11771877855062,0.019573854282498],[0.066641300916672,-0.077634371817112,0.10082091391087]],[[0.053706951439381,-0.03034602291882,-0.044564127922058],[0.055729314684868,-0.078167103230953,-0.083612091839314],[0.051253352314234,0.034988965839148,-0.010216815397143]],[[0.036741070449352,0.048118583858013,0.0532261505723],[-0.051691640168428,-0.052957359701395,0.045140575617552],[0.055627465248108,-0.054370876401663,0.11474859714508]],[[0.028447521850467,0.028781456872821,0.032576631754637],[0.012083837762475,0.0044502131640911,0.14072740077972],[0.072668097913265,0.013427679426968,4.9916543503059e-05]],[[-0.14543707668781,-0.010501072742045,0.091989919543266],[0.11238621175289,0.021310651674867,0.026413293555379],[-0.11273326724768,0.039573937654495,0.0964600071311]],[[0.0052772122435272,0.079496026039124,0.060323789715767],[0.038053084164858,0.052534956485033,-0.054066032171249],[-0.014565118588507,0.028993954882026,0.13106912374496]],[[0.079738214612007,0.098386496305466,-0.0015727279242128],[0.053396359086037,-0.063025616109371,-0.014312441460788],[0.020806943997741,0.0052796434611082,-0.10809818655252]],[[0.027690147981048,0.023752111941576,0.026759335771203],[-0.068480141460896,-0.050527106970549,0.045047003775835],[0.10121786594391,0.01501489430666,0.085461124777794]],[[0.034315180033445,-0.077296353876591,0.016090685501695],[-0.023893183097243,-0.053407032042742,-0.033159404993057],[0.08634702116251,-0.01034037861973,-0.076821357011795]],[[0.012665152549744,0.061536774039268,-0.046540550887585],[0.018382707610726,0.03389997407794,0.012153735384345],[0.057751018553972,-0.046725165098906,-0.025113686919212]],[[-0.065419241786003,-0.10551866143942,0.09044548869133],[-0.030303640291095,-0.018416970968246,0.10345815867186],[0.026636589318514,-0.023121105507016,-0.092578187584877]],[[0.012405529618263,-0.081796564161777,-0.00049671938177198],[-0.049179721623659,0.043671492487192,-0.044432744383812],[0.063608147203922,-0.023281747475266,-0.013972255401313]],[[-0.0061165574006736,0.050008088350296,-0.062200143933296],[-0.019683929160237,0.087538868188858,0.077599562704563],[0.0023523874115199,0.041713654994965,0.045215770602226]],[[-0.048793070018291,-0.080749034881592,-0.012119937688112],[-0.080557823181152,0.055650807917118,0.12729300558567],[-0.073778614401817,-0.028067380189896,-0.018447758629918]],[[0.082803152501583,0.023379120975733,0.027678020298481],[0.094379737973213,0.074022524058819,0.050379939377308],[-0.013082318939269,-0.0087360441684723,0.093193396925926]],[[0.028481801971793,0.0072973137721419,-0.049073863774538],[0.024935042485595,0.031615484505892,0.018851432949305],[0.024457795545459,0.071746774017811,-0.019750325009227]],[[-0.011323377490044,0.0034060995094478,-0.067463546991348],[0.013434786349535,0.1238077506423,0.10580315440893],[-0.068484626710415,0.0094997873529792,0.0224196203053]],[[0.0049046073108912,-0.034252393990755,-0.024251798167825],[0.035355005413294,0.12575489282608,0.073484264314175],[0.046194262802601,0.010634275153279,0.028191218152642]],[[-0.14173825085163,-0.038011752068996,0.040049977600574],[0.093187518417835,-0.040439125150442,-0.16174870729446],[-0.036538999527693,0.046979330480099,0.013545509427786]],[[-0.036603111773729,-0.067028999328613,-0.025697803124785],[-0.027247488498688,0.0077674528583884,0.030468543991446],[0.051078099757433,-0.027986254543066,0.023213218897581]],[[0.059048134833574,-0.043568830937147,0.015912130475044],[-0.019549338147044,-0.053755134344101,0.10304758697748],[0.014997508376837,-0.038814093917608,0.003583442652598]],[[-0.029068555682898,0.065038926899433,0.1405843347311],[-0.12447019666433,0.041670732200146,0.060575567185879],[-0.10128421336412,-0.037196546792984,0.041226468980312]],[[-0.033836804330349,-0.06981435418129,0.040902767330408],[0.012423045933247,0.15062570571899,0.15576216578484],[-0.046436965465546,-0.081840120255947,-0.11862390488386]],[[-0.0090602030977607,-0.15962472558022,0.021078934893012],[0.003017702139914,-0.14457945525646,-0.16162131726742],[0.11131182312965,-0.078939013183117,-0.095931991934776]],[[-0.030790315940976,-0.065007127821445,0.11915174871683],[0.10002794116735,-0.10475746542215,0.014124758541584],[-0.028483808040619,-0.062635123729706,0.097559936344624]],[[0.061253920197487,-0.03531052544713,0.035082679241896],[0.090274088084698,0.014140045270324,0.10130929201841],[0.0048947734758258,0.018146110698581,-0.13192015886307]],[[0.04498303681612,0.10160870850086,0.073887705802917],[0.076193399727345,0.027861939743161,-0.014146745204926],[0.07746871560812,0.024672362953424,0.0086462153121829]],[[-0.073440998792648,-0.053133498877287,0.041798487305641],[0.062630392611027,-0.026382690295577,0.044135414063931],[-0.030494535341859,0.07408045232296,-0.082415357232094]],[[0.033009257167578,0.06251834332943,0.043664667755365],[0.0095678716897964,0.054763417690992,-0.066078819334507],[0.033298876136541,-0.016697328537703,-0.059075996279716]],[[0.053239651024342,-0.018378170207143,0.019743530079722],[-0.055724266916513,0.048260349780321,-0.00031231960747391],[-0.11452529579401,-0.11709979921579,0.041515812277794]],[[0.065764166414738,0.018171608448029,0.056251276284456],[-0.061216522008181,-0.036385279148817,0.089517794549465],[0.017370779067278,-0.008918278850615,-0.059615664184093]],[[0.048814967274666,0.11097782850266,0.074710883200169],[0.10729666799307,-0.01308695692569,0.10592237859964],[0.10875762999058,0.10518737137318,0.057246617972851]],[[0.017599577084184,0.045918259769678,0.028654638677835],[0.0024146097712219,0.017362229526043,0.092865027487278],[0.034188542515039,-0.032604273408651,-0.0040932237170637]],[[-0.038870561867952,-0.010658848099411,-0.046859420835972],[0.1619176119566,-0.071024663746357,-0.072556264698505],[-0.0069848578423262,-0.019977817311883,-0.071969777345657]],[[-0.11687575280666,-0.021305486559868,0.026719875633717],[0.10500147938728,0.023706888779998,0.03051426820457],[-0.018414091318846,-0.022761350497603,0.086972631514072]],[[0.076448507606983,0.12600806355476,0.082862481474876],[-0.03820076584816,0.070846363902092,0.045328546315432],[-0.086516566574574,0.039764001965523,-0.10101549327374]],[[0.047050774097443,0.0062612597830594,-0.031878333538771],[-0.012975547462702,0.060278132557869,-0.089952737092972],[0.011050815694034,0.063557885587215,0.00082193623529747]],[[0.071889750659466,-0.11100562661886,-0.022017605602741],[0.018473520874977,0.091314591467381,0.042556654661894],[-0.071475073695183,-0.062013782560825,-0.031552139669657]],[[-0.097779899835587,-0.14614728093147,0.088970363140106],[0.062245652079582,0.041019454598427,-0.061285585165024],[-0.17675399780273,-0.050573509186506,0.0057712751440704]],[[-0.094025604426861,0.014028943143785,-0.04403480887413],[0.02399517595768,-0.036922745406628,-0.048520024865866],[-0.020561598241329,0.040227174758911,0.02879530377686]],[[-0.012293805368245,0.049709618091583,0.037584967911243],[0.022586515173316,0.059070102870464,0.012456723488867],[-0.11739429086447,-0.0047311196103692,-0.0035179052501917]],[[-0.014997326768935,0.058793067932129,0.036373060196638],[-0.10222551971674,0.0028946525417268,0.053693149238825],[-0.045491050928831,0.026421591639519,0.014441310428083]],[[-0.021208306774497,-0.0053153610788286,-0.02616798132658],[-0.11922925710678,-0.12319947034121,-0.10735364258289],[0.0028927198145539,-0.088641837239265,-0.13022644817829]],[[-0.039939556270838,0.05645664036274,-0.0007642432465218],[-0.10120237618685,-0.1036432236433,-0.04834408685565],[0.077841810882092,0.019379185512662,0.022721843793988]],[[0.034014645963907,0.018323302268982,-0.019236411899328],[-0.043957281857729,-0.0019892659038305,0.046624328941107],[-0.048653122037649,-0.11681807786226,-0.084845796227455]],[[0.022759264335036,-0.032139755785465,-0.047572888433933],[0.034260537475348,-0.058166153728962,-0.051947597414255],[0.0080367298796773,0.061085656285286,0.050783269107342]],[[0.027035497128963,0.031587768346071,0.049778591841459],[0.057448964565992,-0.035518247634172,-0.0096494005993009],[0.024476557970047,0.14055836200714,-0.026239970698953]],[[-0.022648196667433,0.046122595667839,0.05516155436635],[0.015172938816249,-0.049363493919373,0.033057056367397],[0.0079889083281159,-0.010258437134326,-0.0025780261494219]],[[-0.025103027001023,-0.0065302127040923,0.058794196695089],[0.006651861127466,0.052223235368729,0.056969113647938],[0.073216490447521,0.0017212411621585,-0.016400368884206]],[[-0.038417395204306,-0.077368699014187,-0.12927755713463],[-0.10014967620373,-0.072470776736736,-0.063242979347706],[-0.22054578363895,-0.11452924460173,-0.051915757358074]],[[-0.02581712603569,0.030352169647813,0.060303036123514],[-0.068865858018398,-0.0045693782158196,-0.032675698399544],[-0.037991244345903,-0.037602078169584,0.01008018758148]],[[0.03660211712122,-0.058204744011164,0.060788817703724],[-0.029057597741485,-0.021197378635406,-0.018815828487277],[-0.061886955052614,0.057054530829191,-0.00046191294677556]],[[-0.024051867425442,0.0016102615045384,0.11331002414227],[-0.064248256385326,-0.0046568303368986,0.017300454899669],[-0.060211829841137,0.0089086340740323,-0.01194765791297]],[[-0.12127728015184,-0.1316731274128,-0.1271201223135],[0.050334636121988,0.033194907009602,0.11644516140223],[-0.10039784014225,-0.045380413532257,-0.089619696140289]],[[0.0046089901588857,-0.014177227392793,-0.10199543833733],[0.02144511975348,0.029658140614629,0.0065459990873933],[0.085887782275677,0.066336251795292,-0.036609001457691]]],[[[0.025666400790215,-0.08633965998888,0.11148438602686],[0.00099021522328258,-0.024484310299158,0.0051559321582317],[-0.029630079865456,-0.029297094792128,0.11903596669436]],[[-0.12044322490692,-0.051977459341288,-0.050519928336143],[0.016010001301765,0.0036464279983193,-0.011149923317134],[0.023054776713252,0.0066678659059107,-0.11725506186485]],[[0.036977034062147,0.0020666045602411,-0.17173513770103],[-0.021030195057392,-0.0053845481015742,-0.026997046545148],[-0.0549107901752,-0.062627501785755,0.00086435640696436]],[[-0.10336917638779,0.011096489615738,-0.034656211733818],[-0.04988282546401,0.045321632176638,0.049279291182756],[-0.044751588255167,0.084100730717182,-0.07189580053091]],[[-0.14587058126926,0.0048777032643557,0.037583075463772],[-0.0048849899321795,0.031371846795082,-0.03979580104351],[-0.023661982268095,0.053007882088423,-0.046451151371002]],[[-0.036988746374846,0.082775637507439,-0.18920908868313],[-0.0011253168340772,0.073458641767502,0.011385885067284],[-0.056910663843155,-0.041746400296688,0.04655084758997]],[[-0.0066200783476233,0.005789658986032,0.053273972123861],[0.030974494293332,0.060219470411539,-0.0015100305899978],[0.1084823384881,0.15021266043186,-0.15535502135754]],[[0.020878380164504,-0.02400628477335,0.046023350208998],[0.0050820163451135,-0.050749618560076,0.0070272409357131],[0.27063971757889,-0.11153221875429,0.20137210190296]],[[-0.036183644086123,-0.0061358870007098,-0.064237356185913],[0.083437241613865,-0.0046424074098468,-0.025532070547342],[0.044550139456987,-0.13784709572792,0.15514548122883]],[[-0.060731209814548,-0.0060382750816643,0.041158333420753],[0.064873516559601,0.048547837883234,-0.11162093281746],[0.048089038580656,-0.034835074096918,0.064205557107925]],[[-0.032594259828329,-0.1097429767251,0.048507411032915],[0.13062040507793,-0.027446022257209,0.012839576229453],[-0.01140308752656,0.044465392827988,-0.097196377813816]],[[-0.061110220849514,-0.048950102180243,-0.15969988703728],[0.031338825821877,-0.057876914739609,-0.033660691231489],[0.093462504446507,-0.067635633051395,-0.053944855928421]],[[-0.04363164678216,-0.14376001060009,0.087609194219112],[-0.010489852167666,0.026792228221893,0.056186109781265],[0.22110670804977,-0.0076854196377099,-0.039855804294348]],[[-0.10344403237104,-0.076992973685265,0.10457099229097],[0.051346145570278,-0.053379524499178,-0.017796570435166],[0.15116229653358,0.069961979985237,0.046686325222254]],[[0.0042504514567554,-0.10524675995111,-0.016723161563277],[-0.074215538799763,0.011384921148419,-0.031799949705601],[-0.058706734329462,0.077146470546722,0.089684538543224]],[[0.029286948964,-0.058995027095079,0.024901486933231],[0.003446604590863,-0.085724405944347,0.011999696493149],[0.058479908853769,-0.053928378969431,-0.081951178610325]],[[-0.017516678199172,-0.03896301612258,0.0049471496604383],[0.039968799799681,0.026787435635924,0.020956892520189],[-0.10696467012167,0.13664591312408,0.18876241147518]],[[-0.055089615285397,-0.083289757370949,0.13059376180172],[0.0021750906016678,-0.026754088699818,0.040684964507818],[0.0036840287502855,0.064929537475109,-0.045416682958603]],[[-0.1072331815958,-0.022052835673094,-0.20921759307384],[-0.16080412268639,-0.0073346709832549,-0.068673759698868],[-0.31126308441162,-0.086087964475155,-0.015325943939388]],[[-0.066432915627956,0.021525874733925,-0.014344660565257],[-0.078389905393124,0.10010565817356,-0.092771150171757],[-0.051827233284712,0.049566078931093,0.0051028528250754]],[[0.054345056414604,-0.00079198408639058,0.0043350216001272],[0.016176605597138,0.035686925053596,0.1441196501255],[0.034594904631376,0.010576604865491,0.044362060725689]],[[-0.015632467344403,0.023793315514922,-0.083374582231045],[0.036185652017593,-0.026337886229157,-0.0089982384815812],[0.010679412633181,-0.040498968213797,0.0025919459294528]],[[-0.1078672632575,0.0761578977108,0.072085909545422],[-0.23680663108826,-0.10566653311253,0.010927646420896],[-0.044294066727161,-0.013526622205973,0.0030385851860046]],[[0.012790541164577,-0.03114845789969,-0.061398170888424],[0.14071597158909,-0.11479324102402,0.052645064890385],[0.17202690243721,0.11344520002604,0.12994711101055]],[[0.12465339899063,0.16239780187607,0.017504770308733],[-0.032175432890654,-0.059322606772184,0.14165323972702],[-0.091932371258736,-0.04964117705822,0.041971918195486]],[[-0.067647375166416,-0.025718787685037,0.011364376172423],[0.011083313263953,-0.035996347665787,0.033074237406254],[0.0046192542649806,0.090000316500664,-0.0015224417438731]],[[-0.10448861122131,0.064669258892536,-0.046261932700872],[-0.065117046236992,0.022478006780148,0.05661728978157],[-0.11098254472017,0.017788831144571,-0.025115996599197]],[[-0.043495830148458,0.042329721152782,0.11957418173552],[-0.07657253742218,-0.071187674999237,-0.10795016586781],[-0.059178557246923,0.092619054019451,-0.09279740601778]],[[-0.059959046542645,-0.093312688171864,0.13493674993515],[-0.0032651817891747,0.078669764101505,0.010383631102741],[0.13091149926186,0.071803793311119,-0.079192772507668]],[[-0.061228953301907,-0.068037442862988,0.061645440757275],[-0.024901013821363,-0.022987581789494,-0.051633138209581],[0.15335489809513,-0.024361049756408,-0.072048343718052]],[[0.11040221899748,0.066419623792171,0.072422809898853],[-0.060323759913445,-0.039636064320803,0.016051355749369],[0.06752172857523,-0.0015690647996962,-0.098704271018505]],[[-0.00095752824563533,-0.0060251001268625,0.010071453638375],[0.059521660208702,-0.02744653634727,-0.0019591676536947],[0.050980318337679,0.11348231881857,0.18976670503616]],[[0.062845893204212,0.0096835838630795,-0.016845820471644],[-0.053900960832834,0.037406008690596,-0.02435396052897],[-0.006861868314445,-0.071750342845917,-0.2104799747467]],[[0.013874375261366,0.074250519275665,-0.110535338521],[0.028975190594792,-0.043813373893499,-0.071138940751553],[-0.085848055779934,-0.093114048242569,0.019524246454239]],[[-0.026960723102093,-0.051255468279123,-0.043420694768429],[0.010324998758733,-0.039896510541439,-0.11487990617752],[-0.01764890179038,0.1222151517868,0.03064346127212]],[[0.010680532082915,0.05768895894289,0.00073644338408485],[-0.051814902573824,0.018843771889806,-0.021415019407868],[-0.020664393901825,-0.003188933013007,0.12116047739983]],[[-0.094863444566727,0.04189221560955,0.04904905334115],[-0.0036688337568194,0.14019300043583,0.037110161036253],[0.18234324455261,0.1370253264904,0.1590037047863]],[[-0.081149108707905,0.019780889153481,0.069245763123035],[0.0020984252914786,-0.055497124791145,0.10885170847178],[0.11274245381355,0.044624555855989,-0.16343192756176]],[[-0.1957460641861,-0.0012359786778688,-0.093043960630894],[-0.023320388048887,0.018907487392426,0.052625719457865],[-0.17067831754684,-0.15332210063934,0.085271283984184]],[[0.060208603739738,0.17806272208691,-0.019434586167336],[-0.10942313075066,0.094933621585369,0.032745212316513],[-0.10201286524534,0.019509008154273,-0.030814794823527]],[[-0.068926729261875,-0.0068485545925796,0.094535566866398],[-0.054196234792471,0.012988192029297,0.020011169835925],[-0.095145553350449,-0.12445205450058,-0.13420908153057]],[[0.032746952027082,0.020070025697351,0.077185727655888],[0.0077091935090721,0.049576725810766,-0.072736747562885],[-0.060660850256681,0.092062257230282,0.11935314536095]],[[-0.13888086378574,0.095577985048294,-0.050550270825624],[-0.13077741861343,0.090358518064022,-0.019955867901444],[-0.14266522228718,-0.014017885550857,-0.12832400202751]],[[-0.08659727871418,-0.039295796304941,-0.0082906493917108],[0.053792890161276,0.016697404906154,-0.11628881841898],[0.01830030605197,-0.041095279157162,0.17130117118359]],[[-0.01701819896698,-0.067487768828869,0.16741953790188],[0.040329672396183,-0.088635437190533,0.026483492925763],[-0.093338318169117,-0.082182638347149,-0.031849566847086]],[[-0.058133780956268,0.066601611673832,-0.088491179049015],[0.014594621956348,-0.038250617682934,-0.07320462167263],[0.083735607564449,0.0096497721970081,-0.043662063777447]],[[0.0061164060607553,-0.051875475794077,0.091658271849155],[0.039739698171616,-0.10213436931372,0.065713450312614],[0.1673074811697,-0.19082477688789,0.0084614912047982]],[[-0.094679951667786,0.10269251465797,-0.013228840194643],[0.035222455859184,-0.10964994877577,-0.0081922588869929],[0.051814399659634,-0.0041385679505765,0.096335597336292]],[[0.013732413761318,-0.017043324187398,-0.029480850324035],[0.043904654681683,-0.029127728193998,-0.12227281928062],[0.1064637824893,-0.007837476208806,0.027118830010295]],[[0.17869704961777,-0.0038331444375217,-0.084695443511009],[-0.024717284366488,-0.12200008332729,-0.034587260335684],[0.15129894018173,-0.025241767987609,-0.047429233789444]],[[0.077333711087704,0.015065321698785,-0.049699515104294],[0.016380408778787,-0.0072360951453447,0.019456520676613],[-0.00029503178666346,0.15241985023022,-0.14407795667648]],[[-0.065367169678211,0.013938842341304,-0.036405354738235],[-0.079097047448158,0.092745780944824,0.09566418081522],[-0.066975399851799,0.04165817797184,-0.018213184550405]],[[0.16213680803776,0.11063937097788,-0.040376130491495],[0.046767238527536,-0.018103277310729,0.0035419766791165],[-0.26739263534546,-0.075994089245796,0.10168951749802]],[[0.089387319982052,-0.079816162586212,0.034829154610634],[0.039486035704613,0.066357992589474,0.10452865064144],[0.17376391589642,-0.063982449471951,-0.017463548108935]],[[-0.01752769947052,-0.021134793758392,-0.016261478886008],[0.0591313354671,-0.054877903312445,-0.035763449966908],[-0.039955627173185,-0.1313132494688,0.02724134363234]],[[0.05245990306139,-0.10586062073708,0.045092418789864],[-0.058893956243992,0.10378659516573,-0.001680733053945],[-0.056889016181231,0.13404208421707,0.091204807162285]],[[-0.046594068408012,0.0016954991733655,-0.11228927969933],[-0.094820484519005,0.062314745038748,-0.11010313034058],[0.090775154531002,-0.062483564019203,0.075612358748913]],[[0.017115509137511,0.006422015838325,0.063871711492538],[-0.018420293927193,-0.019262485206127,-0.036332111805677],[-0.093350864946842,-0.15740159153938,0.032300263643265]],[[0.036150153726339,0.017316272482276,0.073260240256786],[0.037689160555601,0.033475808799267,0.12591122090816],[-0.002395890885964,-0.0047198482789099,0.073520742356777]],[[-0.066658027470112,0.04716993495822,0.096059687435627],[0.080847099423409,-0.035352416336536,0.16074167191982],[-0.10322053730488,-0.15392875671387,0.043386217206717]],[[-0.10756397247314,0.094670742750168,-0.033924549818039],[0.018924370408058,0.015553625300527,-0.03941984474659],[-0.10303963720798,-0.051829520612955,-0.038781888782978]],[[-0.13578800857067,0.031680561602116,-0.012105251662433],[-0.12300729751587,0.028596166521311,0.10086565464735],[-0.050815142691135,0.0032179292757064,0.11032424122095]],[[-0.13111588358879,0.10522805899382,0.070242658257484],[-0.034596033394337,-0.026726299896836,-0.013618689030409],[0.16560460627079,0.010421647690237,0.059843510389328]],[[0.11186684668064,-0.051979083567858,-0.05424015969038],[0.083379715681076,-0.17134629189968,0.0031664315611124],[-0.080608852207661,-0.10042922198772,-0.043958555907011]]],[[[0.048555914312601,-0.02192578278482,-0.060242645442486],[-0.090078338980675,0.0080558201298118,-0.022202476859093],[-0.0052768662571907,0.11762756109238,-0.015713304281235]],[[0.011950258165598,0.13221754133701,-0.057967979460955],[-0.14246867597103,0.016634184867144,-0.082415357232094],[-0.16900213062763,-0.0038030445575714,-0.14462815225124]],[[0.010702648200095,-0.059235829859972,-0.12675288319588],[-0.010360733605921,0.039870474487543,-0.012712168507278],[-0.027315426617861,-0.087934285402298,-0.064638070762157]],[[-0.055574744939804,0.024216078221798,0.029971366748214],[-0.030162429437041,-0.12424291670322,0.055183731019497],[-0.024779258295894,0.019262610003352,-0.035080634057522]],[[-0.056362003087997,-0.083401657640934,-0.0038152253255248],[0.015561029314995,0.0041107991710305,0.021140156313777],[-0.016126830130816,-0.033604603260756,-0.0030611755792052]],[[-0.0068755419924855,0.059554141014814,-0.024318102747202],[0.055484101176262,0.06023683026433,-0.024511745199561],[0.041688248515129,-0.10834950953722,0.078984424471855]],[[-0.095863148570061,-0.16679622232914,0.024203443899751],[-0.10622727125883,0.090477496385574,-0.07203746587038],[0.15880714356899,0.00011964222358074,0.017873384058475]],[[-0.058298666030169,0.069033585488796,0.057090409100056],[-0.12012504786253,0.11952577531338,-0.11886860430241],[0.012372631579638,-0.020942091941833,-0.01673817075789]],[[-0.031618230044842,-0.077488653361797,-0.016506751999259],[0.072294294834137,-0.063508525490761,0.010795928537846],[0.041325643658638,-0.053643729537725,-0.097528867423534]],[[0.01710438914597,0.095117829740047,0.047955702990294],[0.078759305179119,-0.12921591103077,-0.03458134829998],[0.0062267035245895,-0.037665449082851,-0.0051360526122153]],[[-0.090527780354023,-0.008430490270257,0.09632308781147],[-0.044742666184902,0.023775199428201,0.04413253068924],[-0.012726808898151,-0.013006560504436,0.0025244446005672]],[[0.030797867104411,-0.047614216804504,-0.07390208542347],[-0.010287939570844,-0.016920896247029,0.01954773068428],[-0.064001820981503,0.068101570010185,-0.0626615062356]],[[-0.20174579322338,0.026854902505875,0.056612230837345],[-0.058535095304251,-0.053305845707655,-0.034983392804861],[-0.030632020905614,0.10075362026691,0.069481544196606]],[[0.047920752316713,0.0053367498330772,0.055915586650372],[0.042679846286774,0.026512296870351,-0.054292943328619],[-0.083895966410637,-0.0096167735755444,-0.09506855905056]],[[-0.03279098123312,0.068154357373714,-0.0075996234081686],[-0.0080039612948895,-0.04614045470953,0.069554075598717],[0.013668355531991,-0.056674748659134,0.019596770405769]],[[-0.0096115320920944,0.063179187476635,0.083604663610458],[-0.064152367413044,-0.11497592180967,0.11677347123623],[-0.0086131785064936,0.015143134631217,-0.015098626725376]],[[-0.011391149833798,-0.17292483150959,-0.053796585649252],[0.00020838908676524,0.050105389207602,-0.0030991758685559],[0.0042898370884359,0.097655221819878,-0.031248329207301]],[[-0.042066417634487,0.070181109011173,0.046901896595955],[-0.0090503469109535,-0.087146081030369,-0.14084707200527],[0.076919548213482,0.070715375244617,0.061714675277472]],[[-0.017896980047226,0.09541080147028,-0.01600719243288],[0.020633175969124,0.06078277155757,-0.072152279317379],[0.13404993712902,-0.02714348770678,-0.15074473619461]],[[0.071844890713692,0.050761889666319,0.050615105777979],[-0.15508812665939,-0.088521331548691,-0.11351623386145],[0.06092332676053,-0.060125783085823,0.027133099734783]],[[0.059189599007368,0.04531118273735,0.053407363593578],[0.085571236908436,-0.032308157533407,-0.049363687634468],[-0.078689485788345,-0.043991822749376,0.021482629701495]],[[-0.03663482889533,-0.034685119986534,-0.029544960707426],[-0.0046479986049235,-0.021130150184035,-0.020186820998788],[-0.020416917279363,-0.0094157410785556,0.015514843165874]],[[0.13301835954189,0.00824926327914,-0.14261934161186],[0.0079611865803599,0.065671026706696,-0.041573144495487],[-0.22229669988155,-0.022499844431877,0.024728493764997]],[[0.10555996000767,0.084939576685429,0.15075857937336],[-0.061913151293993,-0.031090274453163,-0.015295603312552],[0.10015146434307,-0.22491833567619,-0.071894459426403]],[[0.074984326958656,0.25216695666313,0.020164316520095],[-0.056355122476816,0.25026977062225,0.18234492838383],[-0.091740950942039,0.027202757075429,0.063541635870934]],[[0.0003941485483665,-0.018948558717966,0.02858174405992],[-0.0092159397900105,-0.020797537639737,-0.0016267899191007],[0.0042935139499605,-0.031676776707172,0.027096211910248]],[[-0.054601073265076,0.11702292412519,0.087012991309166],[0.20912927389145,0.039237417280674,-0.1369152367115],[0.018480097874999,-0.19990272819996,0.10422052443027]],[[-0.067540921270847,-0.12896700203419,0.13113415241241],[0.076071292161942,-0.052365396171808,0.079993225634098],[-0.0010763320606202,-0.12329822778702,-0.055208507925272]],[[-0.022453144192696,0.0017856318736449,0.009101964533329],[-0.0032225258182734,0.044482674449682,-0.045976046472788],[-0.056128263473511,-0.051667645573616,0.0208689738065]],[[-0.11968726664782,0.012483404949307,0.09080371260643],[-0.022404449060559,-0.037636019289494,-0.094361528754234],[0.048346273601055,-0.075529888272285,-0.14849448204041]],[[-0.061045095324516,-0.075543217360973,0.12304705381393],[0.062034789472818,-0.047051087021828,-0.035387516021729],[0.1473488509655,0.13496072590351,9.1009074822068e-05]],[[0.063393913209438,-0.10800967365503,0.028484331443906],[0.034787222743034,-0.036856394261122,-0.0087863747030497],[0.014541585929692,0.017030503600836,0.00858392752707]],[[-0.057613026350737,0.076793856918812,0.069864138960838],[0.08028356730938,0.060234759002924,-0.029206916689873],[0.080145612359047,-0.042899541556835,-0.067727632820606]],[[0.087148420512676,-0.098965138196945,0.029114168137312],[-0.047987017780542,0.0065765767358243,-0.017768094316125],[-0.094445385038853,0.0094818044453859,0.052150849252939]],[[-0.20718002319336,0.015524015761912,-0.10685904324055],[0.06403786689043,0.079388998448849,-0.021217280998826],[0.11756101250648,-0.063362099230289,-0.029724068939686]],[[0.18207101523876,0.084641553461552,-0.13822524249554],[0.028312414884567,0.026787338778377,0.060465980321169],[0.16932129859924,0.05574356764555,0.064351297914982]],[[0.060840211808681,0.013173659332097,-0.070941604673862],[0.055361524224281,0.04216455295682,-0.11841544508934],[-0.13040305674076,0.13885988295078,-0.14670671522617]],[[-0.14719191193581,0.0077684391289949,0.054187182337046],[0.028429783880711,-0.01293362211436,-0.069389000535011],[0.025107357650995,0.019258294254541,-0.062570489943027]],[[0.075628325343132,0.0076212426647544,0.0068450681865215],[0.0052228369750082,-0.01988347619772,-0.013903896324337],[-0.10441248118877,0.013565090484917,-0.053932223469019]],[[0.12608276307583,-0.059547636657953,-0.028181599453092],[-0.00040390630601905,-0.029138706624508,0.011326836422086],[-0.064402014017105,0.15001407265663,-0.16502721607685]],[[0.0010420578764752,0.12244235724211,-0.15490989387035],[0.0080096311867237,0.0026133900973946,-0.050633292645216],[0.021059462800622,0.021325163543224,0.0038153373170644]],[[-0.15350925922394,-0.032034087926149,-0.0074270186014473],[0.013666695915163,-0.011235099285841,0.034595396369696],[-0.0040058852173388,0.025829337537289,0.01869797334075]],[[0.035790905356407,0.059344992041588,-0.10896760970354],[0.039306320250034,-0.082769267261028,-0.035134758800268],[-0.00019862339831889,-0.011349953711033,-0.070721693336964]],[[-0.037007085978985,0.13115087151527,0.052407369017601],[-0.060748167335987,-0.080376155674458,0.045831814408302],[-0.13539057970047,0.069663412868977,-0.064517214894295]],[[-0.12914635241032,-0.087392747402191,0.16450493037701],[-0.097665570676327,-0.12257073074579,-0.10860271751881],[-0.14620205760002,-0.0879997164011,-0.18429431319237]],[[0.054442673921585,0.061938371509314,-0.036795541644096],[-0.095527902245522,-0.032082822173834,0.041824471205473],[-0.025102768093348,0.0030503617599607,0.017957853153348]],[[-0.079277276992798,0.062559045851231,0.11447228491306],[-0.096142202615738,-0.048652805387974,0.0038273115642369],[0.13286752998829,-0.029253199696541,0.015418612398207]],[[-0.083083398640156,-0.078170537948608,-0.052493039518595],[-0.02832661755383,0.051578897982836,-0.067221529781818],[0.08186337351799,-0.053464572876692,-0.0033633045386523]],[[-0.026414129883051,-0.090491026639938,0.11661049723625],[0.1339223831892,-0.085236147046089,-0.074713580310345],[0.11888182908297,-0.16439831256866,-0.13779181241989]],[[0.0027611164841801,-0.117376498878,0.018333397805691],[0.021917890757322,-0.068589203059673,-0.066621489822865],[0.015030276030302,-0.045694213360548,0.075328558683395]],[[0.054858241230249,-0.090665571391582,-0.09273998439312],[-0.075444169342518,-0.0083577120676637,-0.045024562627077],[0.07016421854496,0.023781875148416,0.071644358336926]],[[0.0073582883924246,0.037547800689936,-0.0011473441263661],[-0.0088128093630075,-0.22458131611347,0.025904463604093],[-0.0034463442862034,-0.071818955242634,-0.036723207682371]],[[0.062800981104374,0.026059802621603,-0.088225238025188],[-0.082260124385357,-0.10089477151632,0.0074656968936324],[0.023482555523515,-0.043589193373919,0.061835110187531]],[[0.11372627317905,0.075928509235382,0.042384799569845],[-0.081613451242447,-0.11262350529432,0.082510769367218],[-0.083771057426929,-0.11367469280958,-0.090772993862629]],[[-0.046876318752766,0.030655415728688,-0.10529045760632],[-0.093910686671734,0.003418255597353,0.00078178325202316],[-0.19262060523033,0.063173398375511,-0.093893267214298]],[[0.065022103488445,0.10627397149801,-0.0064849522896111],[-0.022990956902504,-0.037891786545515,-0.074361115694046],[0.0080506289377809,0.085495173931122,-0.018097393214703]],[[-0.045602656900883,0.057866100221872,-0.038891680538654],[-0.067137509584427,0.049856804311275,-0.040166027843952],[-0.075243808329105,-0.11837606877089,0.0014575733803213]],[[-0.025024484843016,0.029267694801092,-0.046811271458864],[-0.067834921181202,-0.016557555645704,-0.097096510231495],[-0.070106901228428,-0.040151279419661,0.017883958294988]],[[0.050166126340628,-0.012054070830345,0.17996989190578],[0.022874312475324,-0.029883440583944,0.092574618756771],[0.043235663324594,0.073358930647373,0.037105444818735]],[[0.027249880135059,-0.023898532614112,-0.050063408911228],[-0.012896590866148,0.042634673416615,-0.033287424594164],[-0.07929603010416,0.074059724807739,-0.12922328710556]],[[-0.019668109714985,-0.11037228256464,-0.027657605707645],[0.050716746598482,-0.11919559538364,-0.058506328612566],[0.07597579061985,0.066247783601284,-0.041220091283321]],[[0.077504403889179,0.011774984188378,0.010403485968709],[-0.12569311261177,-0.028957232832909,0.03431374579668],[-0.015059086494148,-0.089994162321091,0.020605467259884]],[[-0.12434954941273,0.055896546691656,0.019617065787315],[-0.0417360663414,-0.081425718963146,-0.027530090883374],[-0.0039823804982007,0.0087198596447706,-0.086374744772911]],[[0.01794945821166,0.024540117010474,-0.055143587291241],[-0.015626549720764,0.030407637357712,0.085938349366188],[-0.091571599245071,-0.053822781890631,0.016782511025667]]],[[[-0.1150491386652,-0.037782348692417,0.052474413067102],[0.073183886706829,-0.06060753762722,0.016322968527675],[-0.048902407288551,0.08819854259491,-0.082985587418079]],[[-0.053234912455082,0.020108861848712,-0.092136465013027],[-0.055263232439756,-0.049644347280264,0.063679218292236],[0.10465336591005,-0.03127084672451,0.08928170800209]],[[-0.031320210546255,0.098547630012035,0.096134305000305],[-0.094667978584766,-0.048242557793856,-0.048424288630486],[-0.017285168170929,0.018185803666711,-0.036793615669012]],[[0.030535284429789,0.074168033897877,0.042359966784716],[0.11730980873108,0.020059468224645,-0.057682454586029],[0.05197548866272,-0.060121044516563,-0.12085678428411]],[[0.079097077250481,-0.027413895353675,0.020100716501474],[-0.0019824134651572,-0.041419614106417,0.0050288992933929],[-0.05168953537941,0.052302479743958,0.021517271175981]],[[0.047533176839352,-0.11586326360703,0.0052027641795576],[-0.0071813953109086,-0.041252221912146,0.0006758130621165],[-0.037017371505499,0.084707222878933,0.05716885253787]],[[-0.077059350907803,0.025673760101199,-0.0056007215753198],[-0.16724617779255,0.031661059707403,-0.084208406507969],[-0.042489096522331,-0.0015927174827084,0.061223711818457]],[[-0.050242576748133,-0.011954949237406,-0.072421565651894],[0.0048792753368616,-0.038360241800547,0.053466565907001],[-0.045201186090708,0.14658637344837,0.12764303386211]],[[0.0083267819136381,0.0070474985986948,-0.014393659308553],[-0.042204834520817,0.12417448312044,0.05315026640892],[-0.13357502222061,0.078237935900688,0.10950274020433]],[[0.077684693038464,0.017359346151352,-0.10443583875895],[-0.18849042057991,0.044665891677141,-0.039141289889812],[-0.036848373711109,-0.076655842363834,-0.095265403389931]],[[0.061626899987459,-0.087785482406616,0.02636905759573],[0.068916067481041,-0.057177025824785,-0.063900001347065],[0.099188484251499,0.056780103594065,0.017277108505368]],[[0.050148013979197,-0.054125521332026,0.014840145595372],[0.041857119649649,-0.051092714071274,-0.056412093341351],[-0.02048990689218,0.037362460047007,-0.15121449530125]],[[-0.060874722898006,0.038129482418299,-0.012105462141335],[-0.032528907060623,0.037926271557808,0.073559790849686],[-0.013650693930686,0.0012546251527965,-0.015067867003381]],[[-0.0081631727516651,0.060910861939192,0.0032667170744389],[0.034212075173855,0.0024943046737462,-0.052303791046143],[-0.041498206555843,-0.094786494970322,0.095573924481869]],[[0.076132193207741,0.037363898009062,-0.089227013289928],[-0.039531882852316,0.036217253655195,0.025937059894204],[0.049523882567883,0.099370189011097,0.079905234277248]],[[0.040918868035078,0.0080043012276292,-0.095813103020191],[0.023941123858094,-0.030017970129848,0.014244142919779],[-0.026150962337852,-0.087689749896526,-0.06847783178091]],[[-0.016541110351682,-0.0032476894557476,0.013212641701102],[-0.099943213164806,0.096776910126209,-0.066246017813683],[-0.098975725471973,-0.032688710838556,0.11233127862215]],[[-0.02738968655467,-0.0037064938805997,-0.035442888736725],[-0.091478511691093,0.051616191864014,-0.12553025782108],[-0.017228625714779,-0.04813763871789,-0.015124910511076]],[[0.0034926247317344,-0.014432246796787,0.13325284421444],[0.034848388284445,0.037508502602577,0.020484128966928],[-0.090085916221142,0.016410171985626,0.091172441840172]],[[0.010735213756561,0.095362327992916,0.0086937872692943],[0.00086890737293288,0.040765304118395,0.097394995391369],[-0.017959918826818,-0.096266888082027,-0.13648067414761]],[[0.03843017667532,0.08124090731144,0.11226560920477],[0.042800150811672,0.089059941470623,0.06205915287137],[-0.10284033417702,0.028223514556885,0.0038404832594097]],[[0.0064232898876071,0.00048180064186454,-0.0093947825953364],[-0.025002807378769,0.030128946527839,-0.044196050614119],[0.019229494035244,0.0034647728316486,-0.017641404643655]],[[0.0155407236889,0.088338829576969,-0.021013628691435],[-0.087526760995388,0.072913713753223,0.017684547230601],[0.0062725520692766,-0.018107626587152,-0.091063745319843]],[[0.030260935425758,0.14683730900288,0.17563115060329],[0.14176715910435,0.038312263786793,0.078225828707218],[-0.16333240270615,0.099627897143364,-0.23185071349144]],[[-0.062903538346291,-0.028993900865316,0.037777502089739],[0.018344443291426,0.052599649876356,-0.096470229327679],[-0.049307066947222,0.045168712735176,0.071434557437897]],[[0.015119625255466,-0.011215931735933,0.00034043352934532],[-0.0047756494022906,-0.027712872251868,-0.0057344622910023],[0.039045579731464,-0.0071043674834073,-0.019565489143133]],[[0.032908998429775,-0.10115700960159,-0.082178480923176],[0.088139407336712,-0.030734086409211,-0.10917901992798],[-0.076896838843822,0.1772795766592,-0.015798460692167]],[[0.063020639121532,-0.0032633091323078,0.01021915115416],[-0.13143762946129,0.046875786036253,0.010877234861255],[-0.023292472586036,0.013036808930337,-0.079444691538811]],[[-0.027497811242938,0.13355901837349,-0.02226547524333],[0.12790539860725,-0.016189485788345,-0.045067578554153],[0.064994797110558,-0.035203035920858,-0.02750507555902]],[[-0.013289637863636,-0.12084142118692,-0.11028895527124],[0.069348841905594,-0.0021227186080068,0.090235777199268],[-0.11039767414331,-0.041352827101946,0.024662923067808]],[[0.025132263079286,-0.03325067460537,0.075208969414234],[0.11476150900126,-0.02881895005703,0.016421848908067],[-0.10020987689495,-0.080423265695572,0.057345315814018]],[[-0.11656483262777,0.062606662511826,-0.10560210049152],[0.056531403213739,0.028110440820456,0.10283612459898],[0.017720840871334,0.020346276462078,0.063166029751301]],[[0.0362762324512,0.10771375894547,0.14802987873554],[-0.069430902600288,-0.062435802072287,-0.083960548043251],[-0.030255982652307,-0.15348844230175,0.038164462894201]],[[-0.071631774306297,-0.13990078866482,-0.099518693983555],[-0.027639141306281,0.035316381603479,-0.03334329649806],[0.10383550077677,-0.059421088546515,0.1195402815938]],[[-0.080177448689938,-0.13349643349648,0.0090347295626998],[0.020944632589817,0.08136710524559,0.11551436781883],[-0.02088737487793,0.089470639824867,-0.029497310519218]],[[0.022341694682837,-0.021798247471452,0.14761017262936],[0.03813099116087,0.041885275393724,0.018364734947681],[0.0041338563896716,-0.03671620041132,0.057556159794331]],[[0.11680603772402,0.051215168088675,0.18269400298595],[0.0061970730312169,0.028979266062379,0.04834421351552],[0.060212340205908,0.06720782071352,0.11914663761854]],[[-0.0089007494971156,0.032415371388197,0.11380675435066],[-0.12002781033516,-0.066268965601921,-0.015839548781514],[0.039482276886702,-0.038452964276075,-0.061209660023451]],[[0.12241373956203,-0.039115648716688,0.08414077013731],[-0.056379541754723,-0.011765390634537,-0.010652210563421],[-0.032628983259201,-0.13440275192261,-0.10899567604065]],[[0.062431924045086,0.083371505141258,-0.049119561910629],[-0.024810848757625,-0.14145587384701,-0.016736118122935],[0.008033930324018,-0.035610549151897,0.04816210269928]],[[0.20335811376572,-0.0071634058840573,0.091644458472729],[0.004935426171869,-0.097050130367279,0.052726902067661],[-0.031585149466991,0.038324031978846,-0.020451566204429]],[[0.12599192559719,-0.0098851304501295,0.059313457459211],[-0.13447636365891,0.05411571636796,-0.14612765610218],[0.076885491609573,0.035587970167398,0.07447300106287]],[[0.042413957417011,0.027819529175758,-0.05031818151474],[-0.061969295144081,0.067452020943165,0.096014104783535],[-0.14873565733433,0.034518081694841,0.091156750917435]],[[-0.018714735284448,-0.036855943500996,0.061097409576178],[-0.03693276271224,-0.064710646867752,0.098790891468525],[-0.028603702783585,0.11405755579472,0.10751439630985]],[[0.012531184591353,-0.058254320174456,-0.05337069183588],[0.0057769999839365,0.072653584182262,-0.04413527995348],[-0.0067562093026936,0.072604425251484,-0.043602835386992]],[[0.067797094583511,-0.014521634206176,-0.002369120484218],[-0.073011234402657,-0.059829045087099,-0.009727219119668],[0.076785758137703,0.050209365785122,-0.078156396746635]],[[-0.051525916904211,-0.019324887543917,-0.03836303576827],[-0.069430842995644,0.018636841326952,-0.034671310335398],[0.074360452592373,-0.0047583789564669,-0.048950601369143]],[[-0.10393890738487,-0.0029612309299409,0.075455002486706],[0.075396984815598,-0.076941907405853,-0.065043263137341],[-0.081405945122242,0.016867272555828,0.068734839558601]],[[0.019945044070482,-0.0014040153473616,-0.067922808229923],[-0.055599078536034,-0.028633773326874,-0.087172232568264],[0.18513974547386,0.079058110713959,-0.076007477939129]],[[-0.019085021689534,-0.092608563601971,-0.1215855255723],[-0.043507944792509,-0.050072375684977,-0.011368248611689],[0.17503064870834,0.075732663273811,0.09388180822134]],[[-0.0018205578671768,0.018694493919611,0.14539800584316],[-0.090746887028217,0.063789129257202,-0.10584612190723],[-0.021629830822349,-0.051893670111895,0.0090009793639183]],[[0.058141995221376,-0.087694950401783,0.12135951966047],[0.00036093930248171,-0.037921607494354,0.036404900252819],[-0.0016234209761024,-0.097364827990532,0.13595548272133]],[[-0.1455020904541,-0.11255794018507,-0.064826294779778],[-0.037103831768036,-0.0025869179517031,0.0043869176879525],[0.097343005239964,-0.017153602093458,-0.0089608365669847]],[[0.056253582239151,-0.023826545104384,0.12915402650833],[0.0075236489064991,-0.079457499086857,0.05025465041399],[0.072469465434551,0.010357423685491,-0.03754049539566]],[[-0.048757735639811,0.080243311822414,0.078897066414356],[-0.042925078421831,0.0042069652117789,0.064368173480034],[-0.017696740105748,0.005315778311342,-0.011081950739026]],[[-0.09914419054985,0.049403939396143,0.088866703212261],[-0.0061477720737457,0.074949085712433,0.05570300668478],[-0.10815896838903,-0.0053672618232667,0.017043724656105]],[[0.02527098543942,0.023990405723453,-0.064898580312729],[-0.03853227570653,-0.0051636761054397,0.003973969258368],[-0.14926289021969,-0.0061822696588933,-0.093080453574657]],[[-0.022007346153259,-0.072546273469925,0.045022755861282],[-0.11205248534679,0.025435078889132,0.0728550106287],[-0.05925340950489,-0.10208576917648,0.0018850384512916]],[[-0.027954651042819,0.033833395689726,0.10080503672361],[-0.023791704326868,0.0063550001941621,0.1174970343709],[-0.025433458387852,0.0171810798347,0.087852917611599]],[[0.089100934565067,0.12480906397104,-0.090131647884846],[0.055052489042282,-0.065397411584854,0.045808609575033],[-0.024991462007165,0.02700530923903,-0.045550141483545]],[[-0.019345859065652,-0.065187387168407,-0.17372433841228],[0.024692103266716,0.072642125189304,-0.014235048554838],[-0.1988796889782,0.090919099748135,-0.095189347863197]],[[0.075065173208714,-0.037175185978413,-0.068332426249981],[-0.0068532289005816,-0.018607538193464,-0.084614224731922],[-0.059101395308971,-0.052602797746658,0.053632844239473]],[[-0.033401306718588,-0.059498865157366,0.14933595061302],[-0.035623718053102,0.079576879739761,0.049946248531342],[-0.048949345946312,-0.019140595570207,0.04727503657341]],[[-0.089138984680176,-0.080056756734848,0.063578523695469],[-0.15917155146599,-0.062694698572159,-0.099654868245125],[-0.0721490457654,-0.024099951609969,-0.044271796941757]]],[[[-0.13754999637604,-0.020398732274771,-0.16451466083527],[-0.14256888628006,0.070066429674625,-0.092853851616383],[-0.074333429336548,0.0099230594933033,0.012979864142835]],[[0.16026464104652,-0.018062878400087,0.011708907783031],[0.088935934007168,0.014697964303195,0.10423769056797],[0.052336171269417,-0.030305067077279,-0.056383475661278]],[[0.042736511677504,-0.10793760418892,-0.07309602946043],[0.035210285335779,-0.058710973709822,0.013984885066748],[0.037353746592999,-0.12011411786079,-0.027336221188307]],[[-0.15368650853634,0.12103280425072,-0.0056187552399933],[-0.069681525230408,0.064147762954235,-0.021661829203367],[-0.064988382160664,-0.121551848948,-0.06809900701046]],[[-0.075097501277924,-0.17337818443775,-0.035388711839914],[-0.17972642183304,-0.036925051361322,0.029576921835542],[-0.19926439225674,-0.071638435125351,-0.026539510115981]],[[-0.029234763234854,0.05928348377347,0.015203394927084],[0.10607177019119,0.050364203751087,-0.020480796694756],[0.057371847331524,-0.10155721008778,-0.084973201155663]],[[-0.0014839250361547,-0.078158020973206,-0.016827972605824],[0.057933162897825,-0.0067268302664161,-0.011503263376653],[0.076591722667217,-0.063373565673828,-0.054005812853575]],[[0.072932906448841,-0.020541919395328,-0.016534129157662],[-0.057381179183722,-0.049220506101847,0.043702557682991],[-0.11235222220421,-0.0053341253660619,0.077634446322918]],[[-0.076907962560654,-0.080265671014786,0.14225454628468],[0.066049426794052,-0.054762501269579,-0.0071677747182548],[-0.040321435779333,-0.20110227167606,-0.068513311445713]],[[0.13612808287144,0.041146829724312,-0.14991194009781],[0.046092838048935,-0.0068842652253807,0.010335021652281],[0.031240787357092,-0.063378140330315,0.22976446151733]],[[0.041181240230799,0.083498992025852,-0.073628462851048],[0.033201437443495,0.12229224294424,-0.084785990417004],[0.020740700885653,-0.029539974406362,0.06073460355401]],[[0.083845764398575,0.05285781249404,0.012369004078209],[0.025688981637359,-0.051088359206915,-0.082250669598579],[0.026867287233472,-0.050777465105057,0.025865945965052]],[[-0.058750338852406,0.037189152091742,0.044907595962286],[0.025261299684644,-0.031547430902719,0.0092842141166329],[-0.17192688584328,-0.014234308153391,-0.10387320071459]],[[-0.054375786334276,-0.029041742905974,-0.041190382093191],[-0.18956533074379,0.16999398171902,0.083658345043659],[0.082367211580276,0.0050013838335872,-0.12018446624279]],[[0.085447855293751,0.00059246143791825,-0.10608754307032],[0.04571919888258,0.084366887807846,-0.018314339220524],[-0.015896111726761,-0.078469343483448,-0.024482037872076]],[[-0.13192619383335,-0.040172789245844,0.12213565409184],[-0.004183046054095,-0.1674533188343,0.099389992654324],[-0.080694906413555,0.0028032693080604,-0.041225016117096]],[[-0.13089182972908,-0.036763552576303,0.052945103496313],[-0.040594801306725,-0.064620584249496,0.0093191470950842],[0.088244900107384,-0.03837550804019,0.044017545878887]],[[0.047976464033127,-0.10971713811159,-0.005435022059828],[0.013880894519389,-0.11341882497072,0.0973961353302],[-0.087819784879684,-0.050540823489428,-0.027967749163508]],[[-0.055247977375984,-0.009435061365366,-0.020451700314879],[-0.010911263525486,-0.043346878141165,0.02405977062881],[0.0016939248889685,0.0083654588088393,0.099949061870575]],[[-0.018120374530554,-0.056899797171354,-0.12647596001625],[-0.001866796403192,-0.031946111470461,-0.11634580790997],[0.19154199957848,-6.7850080085918e-05,-0.072122126817703]],[[0.1196728348732,-0.085882514715195,-0.069297693669796],[-0.078919850289822,-0.04891474917531,-0.11559927463531],[-0.15897937119007,0.070873066782951,-0.068540401756763]],[[-0.0049932422116399,0.044242613017559,0.051882356405258],[-0.059860270470381,-0.057134315371513,-0.023859415203333],[-0.086765334010124,0.0076178256422281,0.0060053998604417]],[[0.12074638158083,-0.055195968598127,-0.034903813153505],[-0.10618935525417,0.029842704534531,-0.033777054399252],[-0.16246800124645,-0.017412697896361,-0.10078417509794]],[[0.23122669756413,0.024334536865354,-0.049226719886065],[0.014849652536213,0.034129247069359,0.13027203083038],[-0.012295957654715,-0.0013682099524885,0.075043424963951]],[[0.01801048964262,0.11375018209219,0.096748910844326],[0.016539791598916,0.082279212772846,0.10553035885096],[-0.025781927630305,0.036929737776518,0.078701503574848]],[[0.030522532761097,0.0034241057001054,-0.036665230989456],[0.049314241856337,-0.0019933930598199,-0.074646860361099],[0.034058462828398,-0.013857200741768,0.0073691164143384]],[[-0.060930114239454,-0.061537951231003,0.039656698703766],[0.034394707530737,0.057567991316319,-0.037540819495916],[0.147546261549,0.009638262912631,-0.055106818675995]],[[-0.11355958878994,-0.099482461810112,0.21025116741657],[-0.043241903185844,-0.038493763655424,0.024823743849993],[-0.12620969116688,-0.036110449582338,-0.00065329414792359]],[[0.11015985161066,-0.029488334432244,0.0049413712695241],[0.08817183226347,0.016131781041622,-0.063797533512115],[-0.096473217010498,0.15984836220741,-0.050138056278229]],[[0.046068362891674,-0.01226310711354,0.084611669182777],[-0.022279001772404,-0.043063148856163,0.036228083074093],[-0.080319672822952,0.037861868739128,-0.059866324067116]],[[-0.086658515036106,0.094211675226688,-0.056045077741146],[-0.077087804675102,0.052327822893858,-0.074498318135738],[-0.053989175707102,0.0038568642921746,0.11810369044542]],[[-0.043862391263247,-0.021097922697663,-0.045238628983498],[0.093116991221905,0.035383865237236,-0.097017511725426],[0.044739171862602,0.078349247574806,-0.023208657279611]],[[-0.029626071453094,0.096385337412357,-0.24205562472343],[-0.035597026348114,-0.028141995891929,-0.084323920309544],[0.028365537524223,-0.10695847868919,0.10829547792673]],[[-0.028395457193255,-0.0066431788727641,-0.1549437046051],[-0.0039612632244825,0.017501845955849,-0.074338920414448],[-0.019954454153776,0.0569605268538,-0.07564090937376]],[[0.028906693682075,-0.010652787983418,0.10900795459747],[-0.086614020168781,-0.024570563808084,0.062567673623562],[0.022107016295195,-0.058872256428003,-0.042233031243086]],[[0.048559527844191,-0.020676124840975,0.11505153775215],[-0.052759360522032,0.091776855289936,0.06091071292758],[-0.028740748763084,-0.0037320093251765,0.05893025919795]],[[0.073456481099129,0.015228412114084,0.1117525100708],[-0.024477675557137,0.095817901194096,0.0045131575316191],[-0.040936276316643,-0.0092022214084864,0.13684631884098]],[[0.019235655665398,-0.10758753865957,0.012097821570933],[-0.028921311721206,-0.057388499379158,-0.043507110327482],[-0.060097727924585,-0.13063409924507,0.20336355268955]],[[-0.013554885983467,0.19602946937084,0.01206804253161],[0.026456210762262,0.0023867532145232,-0.099781528115273],[0.0023760832846165,-0.17859362065792,0.14778812229633]],[[-0.02895374968648,-0.10300873219967,-0.088502794504166],[-0.10890414565802,-0.011113580316305,0.13137896358967],[0.12570181488991,0.019647601991892,0.095123320817947]],[[0.057210028171539,-0.10624916851521,0.040002077817917],[0.00081174093065783,-0.079007118940353,-0.034376725554466],[0.10977389663458,-0.04875011369586,-0.088531360030174]],[[-0.059818409383297,0.092091709375381,0.048640571534634],[-0.11637957394123,-0.086635790765285,0.016943579539657],[-0.058985557407141,0.018272275105119,0.083452560007572]],[[0.018871754407883,0.07030076533556,-0.11614206433296],[-0.15228281915188,-0.0066950530745089,-0.035748839378357],[-0.049534671008587,-0.19213281571865,0.019911019131541]],[[-0.057706736028194,-0.053040642291307,0.033003512769938],[0.022441634908319,-0.027148881927133,0.016610883176327],[0.10592044144869,-0.11166014522314,-0.0076122502796352]],[[-0.051954921334982,-0.028625322505832,0.1965399235487],[0.12674234807491,0.00076404004357755,-0.050619319081306],[0.059928443282843,-0.14644150435925,0.0016171303577721]],[[0.069921731948853,0.074626535177231,-0.051656804978848],[0.026406185701489,-0.031950749456882,-0.010952175594866],[0.0011073466157541,-0.019004521891475,-0.082316130399704]],[[0.1573970168829,-0.046859331429005,0.0099590430036187],[-0.072050973773003,-0.030557028949261,0.01402304880321],[0.040942307561636,-0.066622376441956,-0.031541347503662]],[[-0.058832135051489,0.055614359676838,-0.032881405204535],[0.088703587651253,-0.11228777468204,-0.032902602106333],[-0.086685068905354,-0.038767136633396,-0.10484836250544]],[[-0.14362831413746,0.10119688510895,-0.13502064347267],[-0.016258435323834,-0.00059082475490868,0.027174567803741],[0.039983253926039,-0.066074132919312,-0.011736432090402]],[[-0.050893936306238,-0.041902557015419,-0.059607040137053],[-0.010372092947364,-0.083576738834381,0.10072577744722],[0.12692964076996,0.085294365882874,0.028240026906133]],[[-0.093113049864769,-0.13348594307899,-0.0080716228112578],[0.081464186310768,-0.12989316880703,-0.066066652536392],[0.11018434911966,0.11315081268549,0.083752386271954]],[[0.0739656239748,-0.063253358006477,0.062197603285313],[-0.17752110958099,0.06623999029398,0.10958747565746],[-0.02494858764112,0.066459968686104,-0.097763933241367]],[[-0.0088335620239377,-0.077294662594795,0.0010094919707626],[-0.030158121138811,-0.070725120604038,0.035076022148132],[0.050795696675777,0.016806971281767,0.068178914487362]],[[0.058360990136862,-0.030219797044992,-0.043942980468273],[0.0142304841429,0.019432304427028,-0.010845425538719],[0.003041289979592,0.079439543187618,0.071029976010323]],[[-0.061972986906767,0.010017580352724,0.073277130723],[-0.071614235639572,-0.074073821306229,-0.11012710630894],[-0.15768350660801,-0.059012461453676,0.094728164374828]],[[0.02229412458837,0.057951334863901,0.040030777454376],[0.0077223111875355,-0.0070957387797534,-0.0059818169102073],[0.072341129183769,-0.041438620537519,0.085318453609943]],[[-0.025312844663858,0.18504795432091,-0.098001852631569],[-0.11432877928019,0.10931716859341,0.094732016324997],[0.035919904708862,0.1304604113102,-0.042092427611351]],[[0.0065056001767516,0.022202018648386,-0.00074584322283044],[-0.079001910984516,0.037513725459576,0.11643897742033],[0.030249934643507,0.13562120497227,0.096960455179214]],[[0.043084006756544,0.099636651575565,0.011231436394155],[-0.091635808348656,0.091240733861923,0.045610409229994],[0.048306077718735,0.01830723695457,0.080480210483074]],[[-0.021227000281215,-0.054939419031143,-0.0011052233166993],[0.049117077142,-0.09232534468174,-0.029301324859262],[-0.043245580047369,0.018430335447192,-0.058932464569807]],[[-0.044531546533108,0.020011899992824,-0.0011798640480265],[-0.10804922878742,0.027741050347686,-0.020709957927465],[-0.019922614097595,0.027833363041282,0.076357066631317]],[[-0.16189977526665,-0.020706592127681,-0.08935484290123],[0.00038350030081347,0.033896595239639,-0.06592932343483],[0.09469024091959,-0.054849036037922,-0.03065968118608]],[[0.1834568977356,0.13332960009575,0.092413917183876],[-0.066546224057674,-0.013954266905785,-0.043884582817554],[-0.00144520890899,0.1120638474822,-0.096019946038723]],[[-0.16459436714649,-0.1929846405983,-0.04753340408206],[-0.18105752766132,-0.027674306184053,0.035413008183241],[0.084759034216404,0.082787863910198,0.14395758509636]]],[[[-0.065723076462746,-0.048755746334791,-0.040485724806786],[0.019660972058773,-0.026294285431504,-0.050795044749975],[-0.11190017312765,-0.012286555022001,0.015402506105602]],[[0.0034435286652297,-0.13375988602638,-0.017471712082624],[0.048234894871712,-0.035202242434025,-0.11253257840872],[0.0026033448521048,0.090718232095242,-0.093128979206085]],[[-0.1397930085659,-0.047077018767595,0.15158711373806],[0.15830408036709,-0.11755577474833,-0.088091723620892],[-0.021197197958827,-0.0058890865184367,0.019503658637404]],[[0.01931662671268,-0.079668954014778,0.01689200848341],[-0.028943460434675,-0.042236093431711,0.11351066082716],[-0.058096006512642,-0.051517352461815,0.024805540218949]],[[-0.068183064460754,-0.096367932856083,-0.11641575396061],[0.00081607885658741,0.00023078548838384,-0.11198420077562],[0.0093260314315557,-0.076249204576015,-0.040415853261948]],[[-0.057224575430155,0.061533775180578,0.0024422516580671],[-0.11664704978466,-0.052565649151802,-0.077800944447517],[0.046943303197622,0.11438525468111,0.080671966075897]],[[-0.18449580669403,0.056082628667355,0.21159419417381],[-0.0080550154671073,-0.022118180990219,0.0068380427546799],[-0.019075917080045,-0.091417156159878,-0.079113900661469]],[[-0.15196554362774,0.022368017584085,-0.046153623610735],[0.10242190957069,-0.13739956915379,-0.015884490683675],[0.13031409680843,0.02833934314549,0.056145835667849]],[[0.0025432843249291,0.015102894045413,-0.00092703063273802],[0.002672617090866,-0.043905798345804,0.065462306141853],[0.075589783489704,-0.067715995013714,0.063851393759251]],[[0.0015283469110727,-0.045307878404856,0.15128919482231],[-0.01164136826992,0.067177101969719,-0.059160482138395],[-0.017291637137532,0.084083423018456,-0.093697033822536]],[[0.014885603450239,-0.027288679033518,-0.037706036120653],[-0.029792441055179,-0.11642715334892,0.0033340349327773],[0.060813795775175,0.095795996487141,-0.077336624264717]],[[-0.043104667216539,-0.15816120803356,-0.0092239379882812],[-0.049664232879877,-0.03022381849587,-0.059659965336323],[-0.016491325572133,-0.030134694650769,-0.10128726810217]],[[0.16218116879463,0.067809171974659,-0.18798464536667],[0.039991669356823,0.049708906561136,0.065035201609135],[-0.016827018931508,0.1037954390049,-0.0058381911367178]],[[-0.0080656623467803,-0.028641974553466,0.045482154935598],[0.21219600737095,0.015974575653672,-0.2307296693325],[-0.022632963955402,-0.075794726610184,-0.063030660152435]],[[0.028960693627596,0.040023047477007,0.066836789250374],[0.11030869930983,0.056251030415297,-0.13129904866219],[-0.08848000317812,0.078834161162376,0.17571732401848]],[[-0.09495160728693,-0.1029309257865,0.14312747120857],[-0.055337935686111,-0.064494028687477,0.20361588895321],[-0.014154821634293,-0.056972052901983,0.069993667304516]],[[0.03999925032258,-0.03101921826601,-0.0026920347008854],[0.040782809257507,-0.071105644106865,0.13475359976292],[0.043376546353102,-0.058117687702179,0.085963182151318]],[[-0.12705585360527,0.065521933138371,0.1198698580265],[-0.079628400504589,-0.0060364329256117,0.067819111049175],[-0.085965432226658,0.005773046053946,0.20418751239777]],[[-0.11694490164518,-0.066986888647079,0.085786730051041],[-0.026505855843425,-0.016596155241132,-0.074158310890198],[-0.099456317722797,-0.050748109817505,-0.14145146310329]],[[0.028607998043299,0.0033329690340906,0.065286122262478],[0.089751027524471,0.058734808117151,0.096612632274628],[-0.01533923111856,0.047272488474846,0.11975315213203]],[[0.032535288482904,-0.041266866028309,0.097848027944565],[0.12927863001823,0.028523558750749,-0.064963079988956],[0.040312264114618,-0.076247967779636,-0.0018309146398678]],[[0.0025057145394385,-0.052419438958168,0.04705672711134],[-0.026797879487276,-0.074255533516407,0.016959998756647],[-0.051872361451387,-0.0057141720317304,0.025056859478354]],[[-0.1158669963479,0.060094758868217,0.15459769964218],[-0.18373389542103,-0.011360909789801,-0.07185024023056],[0.10049296915531,0.0057945405133069,0.12031074613333]],[[-0.019227726384997,-0.13189387321472,0.026252690702677],[-0.016571369022131,-0.028315765783191,0.031832121312618],[-0.090231113135815,0.0089863575994968,0.10255431383848]],[[0.074220828711987,0.0067677088081837,-0.22463047504425],[0.17300933599472,0.16204008460045,-0.057473435997963],[0.10231889784336,0.0940171033144,-0.043227560818195]],[[0.050857879221439,0.063906595110893,-0.079732961952686],[-0.046180911362171,0.043598398566246,-0.016348879784346],[0.010559716261923,-0.0073090544901788,0.054277073591948]],[[-0.018734758719802,0.0019238786771894,0.036068219691515],[0.038421437144279,-0.0020122400019318,-0.2147858440876],[-0.0031220004893839,-0.15575787425041,-0.21263994276524]],[[-0.048293318599463,0.14306226372719,0.10561970621347],[0.11392087489367,-0.012973244301975,0.19418299198151],[-0.11733284592628,-0.078669123351574,-0.011042425408959]],[[0.092098034918308,-0.050132166594267,0.07519692927599],[-0.017119746655226,-0.057546652853489,-0.10751847177744],[-0.024614099413157,-0.11715166270733,-0.11047853529453]],[[0.0071849413216114,-0.068720735609531,-0.043738048523664],[0.088951475918293,0.12118697911501,0.030180167406797],[0.037903644144535,0.062881797552109,0.0073613058775663]],[[0.107486538589,0.060239516198635,0.030949223786592],[0.0082187782973051,-0.033528726547956,0.0064582535997033],[-0.093607753515244,-0.056950200349092,0.037577837705612]],[[-0.12317850440741,-0.10090945661068,0.049993552267551],[-0.10646288096905,-0.016050972044468,-0.0077351778745651],[0.16949014365673,0.15873020887375,0.077137403190136]],[[-0.16554728150368,0.049048747867346,0.22170643508434],[-0.13799819350243,0.060282077640295,-0.00059339380823076],[0.02838290669024,-0.04861643910408,-0.23944766819477]],[[0.076700799167156,-0.0023884337861091,-0.040367215871811],[0.0343411937356,-0.087078556418419,-0.096713870763779],[-0.069312147796154,0.1184843853116,0.016445366665721]],[[0.088952526450157,0.028705462813377,-0.0087618259713054],[-0.17656986415386,-0.21805746853352,0.012312065809965],[-0.089059002697468,-0.16619078814983,0.052259512245655]],[[0.066651359200478,0.069075480103493,0.069657750427723],[0.023338487371802,0.049487087875605,0.078181199729443],[-0.053675994277,0.027673877775669,-0.030716622248292]],[[-0.052208051085472,0.089508198201656,0.090898774564266],[0.061324506998062,0.060655552893877,0.025570996105671],[-0.10035467892885,0.071247592568398,0.00050444330554456]],[[-0.044118903577328,0.066124528646469,0.0035034276079386],[0.022496094927192,0.061271227896214,-0.035348303616047],[0.14874769747257,-0.044208727777004,-0.070281870663166]],[[-0.11630509793758,0.073569543659687,-0.025790797546506],[-0.0020080970134586,0.067851759493351,0.07991211861372],[-0.033551260828972,-0.074217014014721,-0.0081050926819444]],[[0.034956447780132,-0.062379844486713,0.16738373041153],[-0.13620099425316,-0.042695865035057,-0.19536978006363],[0.039694711565971,-0.041464086622,-0.0082120066508651]],[[-0.049033690243959,0.02544080093503,0.076285429298878],[-0.094562761485577,-0.03219835832715,0.13396832346916],[-0.12134768813848,-0.097400851547718,-0.11675062030554]],[[-0.00078572961501777,0.065590478479862,0.078213416039944],[0.016834393143654,-0.10312651842833,-0.11120961606503],[-0.03043720126152,-0.020906008780003,-0.21663618087769]],[[-0.05786894634366,-0.052473030984402,-0.073930770158768],[0.14070975780487,-0.069359980523586,0.10753517597914],[0.10868596285582,-0.011072332039475,-0.0025385892949998]],[[-0.043325606733561,0.0089502604678273,-0.13260054588318],[0.0085361963137984,0.15346063673496,-0.12673841416836],[-0.065004430711269,-0.073231652379036,0.24927490949631]],[[0.1057513281703,0.10674105584621,-0.10333231091499],[0.032072190195322,0.10897234082222,-0.2089130282402],[-0.1555400788784,0.11580139398575,-0.1810267418623]],[[0.065366737544537,0.048497948795557,-0.022610360756516],[-0.015038281679153,0.057134497910738,0.023245191201568],[-0.029012214392424,0.092168532311916,0.016997445374727]],[[0.021211134269834,-0.14337661862373,-0.026275664567947],[0.045922797173262,0.059700977057219,-0.034004829823971],[-0.09452822804451,0.040393672883511,0.17356108129025]],[[0.10216762125492,0.0058342139236629,0.13223354518414],[0.026454262435436,0.028746800497174,0.073233373463154],[-0.075924001634121,-0.13469994068146,-0.011809882707894]],[[-0.12372141331434,0.13681018352509,-0.016844248399138],[0.019928438588977,-0.017752703279257,0.0048273908905685],[-0.10253010690212,0.036160480231047,0.13525341451168]],[[-0.19646044075489,0.12985573709011,0.031264673918486],[-0.068028420209885,-0.06684210896492,0.048192672431469],[-0.05887845531106,-0.019037591293454,-0.036427076905966]],[[0.012693712487817,0.0145008796826,0.045282270759344],[0.19272848963737,0.03676076233387,0.045199178159237],[0.10089316964149,0.030256701633334,0.12817198038101]],[[0.1241137906909,-0.15921269357204,0.077292375266552],[0.13782188296318,-0.074617497622967,0.13853345811367],[-0.059268668293953,0.087729327380657,0.0075083887204528]],[[0.13779793679714,0.03541936352849,-0.0060758548788726],[-0.0059657283127308,-0.026085648685694,-0.11425297707319],[0.034560825675726,0.036066684871912,-0.049434881657362]],[[0.02816903591156,-0.078872457146645,-0.051179792732],[-0.0080308262258768,-0.027088589966297,-0.077973917126656],[0.15097400546074,0.028594404459,-0.061311036348343]],[[-0.0023065500427037,-0.014487866312265,0.061535492539406],[-0.01118908636272,0.0028071908745915,-0.053415820002556],[-0.05953312292695,-0.079886510968208,0.13002152740955]],[[-0.10564941912889,-0.040006514638662,0.11475637555122],[0.11486840993166,-0.015149126760662,0.008487407118082],[0.083878576755524,-0.069953173398972,0.10066930949688]],[[-0.046375997364521,-0.0021596455480903,0.010813269764185],[0.25069439411163,-0.015535085462034,0.081503324210644],[0.045494761317968,-0.015499140135944,-0.07354249805212]],[[0.0062378779985011,0.030289962887764,0.13026683032513],[-0.0023932158946991,0.093145586550236,0.17134784162045],[-0.065078511834145,-0.028841791674495,-0.086425960063934]],[[-0.020521448925138,0.033068086951971,0.03011223860085],[0.073866546154022,0.10844848304987,0.054523717612028],[0.17110602557659,0.10207138210535,0.099051535129547]],[[0.12301862239838,0.090986058115959,-0.082077279686928],[0.039439272135496,0.057376552373171,0.056207317858934],[0.04045844450593,0.02212599106133,0.072809480130672]],[[0.071205250918865,-0.0072673326358199,0.28739610314369],[0.047390535473824,-0.060127772390842,-0.067277535796165],[-0.07729447633028,0.014396527782083,0.051896117627621]],[[-0.012337831780314,0.075352817773819,0.19209215044975],[-0.13038915395737,0.073435619473457,0.22273369133472],[-0.021101290360093,0.042504861950874,0.0012332274345681]],[[0.05882254242897,0.071101427078247,0.030103508383036],[0.040305234491825,0.029205689206719,-0.10052632540464],[-0.0043180231004953,-0.15873509645462,-0.023859983310103]],[[0.074113368988037,-0.11166792362928,-0.10200072079897],[0.036207672208548,-0.11245238780975,0.038666602224112],[0.0083073601126671,0.08322723954916,-0.11330734193325]]]],"nOutputPlane":128,"kW":3,"kH":3,"bias":[-0.026056891307235,-0.01298064738512,-0.024744998663664,-0.011116101406515,-0.013614369556308,-0.013507729396224,-0.011666486039758,-0.013749482110143,-0.01103846821934,-0.01778019964695,-0.018776880577207,-0.017901923507452,-0.012289841659367,-0.022361056879163,-0.021210491657257,-0.025892226025462,-0.015301206149161,-0.0088251093402505,-0.017149278894067,-0.01425720565021,-0.0053577721118927,-0.014356612227857,-0.011739789508283,-0.015014932490885,-0.012453930452466,-0.01022866833955,-0.01662041246891,-0.016718292608857,-0.025303898379207,-0.013617545366287,-0.016530144959688,-0.013714022003114,-0.0093134166672826,-0.0095264064148068,-0.0047531425952911,-0.014066753908992,-0.015279632993042,-0.01047260966152,-0.0088733714073896,-0.016312979161739,-0.010930553078651,-0.016044275835156,-0.0098395086824894,-0.012551329098642,-0.012774123810232,-0.013133616186678,-0.016300950199366,-0.010053531266749,-0.017217565327883,-0.0080712949857116,-0.029427010565996,-0.017391532659531,0.0018669569399208,-0.013150968588889,-0.017300115898252,-0.014890076592565,-0.011541057378054,-0.037836469709873,-0.013079909607768,-0.021200481802225,-0.0046205767430365,-0.012706366367638,-0.01949249394238,-0.019509268924594,-0.0081580597907305,-0.014825160615146,-0.017855560407043,-0.016442134976387,-0.0078561026602983,-0.018782671540976,-0.016015127301216,-0.010170502588153,-0.01113766245544,-0.015113985165954,-0.01031953189522,-0.014269861392677,-0.014078508131206,-0.010404966771603,-0.013500208035111,-0.015408399514854,-0.015370397828519,-0.0090552642941475,-0.014136315323412,-0.0081526823341846,-0.01516848616302,-0.013745142146945,-0.013203728012741,-0.011619112454355,-0.011737931519747,-0.013722442090511,-0.014394938014448,-0.010360977612436,-0.01226307824254,-0.014138614758849,-0.019313085824251,-0.01179035846144,-0.012571267783642,-0.015276987105608,-0.017866861075163,-0.019991874694824,-0.017199084162712,-0.023151688277721,-0.014199679717422,-0.010476110503078,-0.014493627473712,-0.017161309719086,-0.016990605741739,-0.0078994259238243,-0.025786651298404,-0.0081925205886364,0.0061315684579313,-0.0032970020547509,-0.011756276711822,-0.009323813021183,-0.019316293299198,-0.014668634161353,-0.010882104746997,-0.01656480692327,-0.010522462427616,-0.018867613747716,-0.01336432993412,-0.027132168412209,-0.036285288631916,-0.011756669729948,-0.017150057479739,-0.0089635876938701,-0.01076752319932,-0.019921321421862],"nInputPlane":64},{"weight":[[[[0.002193491673097,-0.026343662291765,0.059390231966972],[0.041366688907146,0.077055849134922,0.0136853819713],[-0.01859756372869,-0.0088797872886062,0.056477084755898]],[[0.029942356050014,0.0012539674062282,-0.014807171188295],[-0.051094070076942,-0.044345956295729,0.11678379774094],[0.059287399053574,-0.035706236958504,0.0064384979195893]],[[-0.066179156303406,0.09411558508873,-0.033154919743538],[-0.030113581568003,0.025107221677899,-0.10236317664385],[-0.16188292205334,0.061129715293646,0.039531502872705]],[[0.0015544410562143,0.019944915547967,0.086357094347477],[-0.038147576153278,0.10574308782816,-0.02452278137207],[-0.050509948283434,0.045593701303005,-0.046336606144905]],[[-0.035785555839539,-0.026030000299215,0.011650580912828],[0.015804609283805,-0.071549415588379,-0.016833707690239],[-0.010902862995863,0.033854067325592,0.0089342361316085]],[[0.060494516044855,-0.034500066190958,-0.071442320942879],[-0.064746372401714,-0.061941970139742,-0.072247833013535],[0.038295529782772,-0.034705750644207,0.020479012280703]],[[0.048058155924082,-0.021403826773167,0.040319487452507],[-0.069683313369751,-0.08758457750082,-0.042080134153366],[0.012940253131092,-0.0041856323368847,-0.11551296710968]],[[0.037533447146416,0.01967491954565,-0.030125986784697],[-0.074879482388496,-0.070922777056694,0.025635298341513],[0.032100461423397,0.020845778286457,0.0096325539052486]],[[-0.0021050807554275,-0.036377780139446,-0.035024959594011],[0.02036695368588,-0.053793713450432,0.013241368345916],[0.058169215917587,-0.090981587767601,0.034386280924082]],[[-0.013576854020357,0.085576802492142,0.14048963785172],[0.0062414412386715,0.017179235816002,-0.0010153187904507],[0.1097933575511,-0.03682392463088,-0.0067676585167646]],[[-0.0076148575171828,-0.068699322640896,-0.051809057593346],[0.026029514148831,-0.0086307926103473,0.095271125435829],[0.018464859575033,0.04365673661232,0.15108253061771]],[[-0.030429707840085,-0.085183046758175,-0.060971554368734],[0.15941132605076,0.0089211827144027,-0.1070284768939],[-0.033926151692867,0.0086055137217045,-0.017069889232516]],[[-0.059630084782839,0.027141775935888,0.033748313784599],[0.056116443127394,0.018638405948877,0.10309729725122],[-0.054773684591055,-0.0061697689816356,0.056038174778223]],[[-0.0064563411287963,-0.027739698067307,-0.092848375439644],[-0.041297242045403,-0.081799626350403,0.025691539049149],[0.049391236156225,-0.070556372404099,-0.071592062711716]],[[-0.061055224388838,-0.010852982290089,0.09359685331583],[-0.084164142608643,-0.0012298407964408,0.0379419028759],[0.10570511966944,-0.087447255849838,0.020606867969036]],[[-0.061760939657688,-0.089273370802402,-0.024544781073928],[0.043230384588242,0.034178901463747,0.031247586011887],[0.03752314299345,-0.087044768035412,0.0047242511063814]],[[-0.061017625033855,0.029851207509637,0.011353057809174],[-0.090817578136921,0.0021802575793117,0.13471284508705],[-0.0068099927157164,0.096251927316189,-0.023148549720645]],[[-0.027284979820251,0.018578104674816,0.087953843176365],[0.048895843327045,-0.011935733258724,-0.11366354674101],[0.039803486317396,0.10139346122742,-0.064997725188732]],[[-0.082417599856853,0.015411512926221,0.026173045858741],[-0.0052024628967047,-0.019227648153901,0.018115309998393],[0.00054378749337047,0.10317244380713,-0.026496205478907]],[[0.012559584341943,0.0057862508110702,-0.00918123498559],[0.0095873661339283,-0.060349695384502,-0.035689245909452],[-0.010243133641779,0.028520155698061,-0.064117021858692]],[[-0.081892818212509,0.025465257465839,0.042531467974186],[0.094268843531609,-0.061742469668388,0.033077705651522],[0.043062124401331,-0.0027691961731762,0.086255103349686]],[[0.013925894163549,-0.024206617847085,-0.0052762539125979],[-0.033126812428236,0.039780888706446,0.038133949041367],[0.031924281269312,-0.0038489433936775,-0.02513382025063]],[[0.052513178437948,0.0075355009175837,0.21120496094227],[-0.001591513864696,0.16589738428593,-0.052699044346809],[0.015614179894328,0.01627142354846,0.030280258506536]],[[-0.01244411431253,0.0025572960730642,0.17043836414814],[-0.11271585524082,0.046504497528076,0.013213052414358],[0.079245388507843,0.045732408761978,-0.0031748886685818]],[[-0.056148488074541,0.0057858065702021,-0.082170754671097],[0.0045002861879766,-0.016367366537452,-0.017096124589443],[0.015291515737772,0.05727468803525,0.013611457310617]],[[-0.054326042532921,0.070697106420994,-0.098802641034126],[0.04796876758337,0.000730944739189,-0.021889420226216],[-0.0041133463382721,0.054430078715086,-0.088302627205849]],[[-0.057868231087923,-0.041931334882975,0.044851537793875],[-0.071388386189938,-0.10638187080622,-0.019358113408089],[0.1034814119339,0.11129852384329,0.044968325644732]],[[-0.051343072205782,-0.010446235537529,0.006668436806649],[0.016796454787254,0.087842337787151,-0.0070303371176124],[0.035918649286032,0.0054802186787128,-0.06999022513628]],[[-0.0048565655015409,0.026585290208459,-0.028658891096711],[-0.096546947956085,-0.070238165557384,-0.056704264134169],[-0.014228958636522,-0.11086022853851,-0.040588911622763]],[[-0.051704175770283,-0.0036281095817685,0.011680463328958],[-0.00053904112428427,-0.045187693089247,0.034577004611492],[-0.040910467505455,-0.033998969942331,0.023022683337331]],[[-0.0021128377411515,0.15080931782722,0.056606907397509],[0.058277010917664,0.054814595729113,-0.057392466813326],[-0.078716620802879,-0.055374186486006,-0.063703626394272]],[[-0.020854851230979,0.00042087846668437,-0.082978136837482],[0.15160767734051,-0.033665034919977,-0.023321583867073],[-0.047283057123423,0.077418938279152,-0.085263691842556]],[[-0.026599576696754,-0.055711813271046,0.016688590869308],[-0.014317535795271,-0.017315734177828,-0.019079275429249],[0.0050233122892678,0.061557155102491,0.0085306344553828]],[[-0.001536502270028,-0.10267613828182,0.041496217250824],[-0.040122769773006,-0.09245041757822,-0.034444432705641],[-0.021651152521372,0.021354109048843,-0.0092707881703973]],[[-0.014279455877841,-0.052276019006968,-0.025197541341186],[0.11027812957764,0.0046453946270049,0.002081910148263],[0.056622497737408,0.089373782277107,0.044421963393688]],[[-0.025221072137356,0.082623928785324,-0.0027625125367194],[-0.016365991905332,0.047218564897776,0.11711078137159],[-0.032868985086679,0.056405462324619,0.14176125824451]],[[-0.06103939563036,-0.0082453629001975,0.1844352632761],[0.033835168927908,0.001429806696251,0.095469668507576],[-0.0094410879537463,-0.072198122739792,0.097277984023094]],[[0.035097949206829,-0.014050574973226,-0.0039840368553996],[-0.11113210022449,-0.011680863797665,-0.067696914076805],[0.027866523712873,0.0056507061235607,-0.010537272319198]],[[0.016738042235374,0.029554085806012,0.12009145319462],[0.074844039976597,0.066161334514618,0.15857098996639],[0.036919131875038,-0.058068290352821,-0.0058492328971624]],[[-0.012751116417348,0.01272436697036,0.038694024085999],[-0.032697204500437,-0.091044075787067,-0.01116893813014],[-0.037441369146109,0.11746252328157,0.1424113959074]],[[0.063033379614353,-0.060624599456787,0.059969402849674],[0.035340663045645,0.024511329829693,-0.0049368618056178],[-0.021927986294031,0.022244423627853,0.07330996543169]],[[0.06061102449894,-0.031573358923197,-0.076496221125126],[-0.026498937979341,-0.013958926312625,-0.0082616582512856],[0.014916378073394,0.065251424908638,0.038418244570494]],[[-0.041620589792728,0.099888429045677,-0.042061042040586],[-0.0083896098658442,0.022906308993697,0.0048391208983958],[0.038687974214554,0.063142843544483,-0.0013712967047468]],[[-0.00047176494263113,0.021581623703241,0.027584372088313],[-0.01605524122715,0.039138235151768,0.061242297291756],[0.043896671384573,0.00028717800159939,0.033870499581099]],[[0.034492086619139,0.084454752504826,0.036016531288624],[0.018503295257688,0.0010167809668928,0.047895226627588],[-0.06845211237669,-0.049960557371378,-0.047369241714478]],[[0.059348218142986,0.013157812878489,0.025214463472366],[-0.014110292308033,0.05044823884964,-0.04375459626317],[-0.07074423879385,-0.017738562077284,-0.021073557436466]],[[0.0027800993993878,0.034255895763636,-0.015731193125248],[0.066465385258198,-0.049578003585339,-0.0042849876917899],[-0.056898593902588,-0.01745668426156,0.020300367847085]],[[-0.029953634366393,-0.025840785354376,-0.058464013040066],[0.040665436536074,-0.0091030560433865,-0.02400385402143],[-0.013139609247446,0.070122443139553,-0.013939563184977]],[[0.023080689832568,0.0085967434570193,0.1510643362999],[-0.027722127735615,0.017373658716679,0.28036525845528],[0.037484116852283,-0.019448174163699,0.067095600068569]],[[-0.046095490455627,0.0068424013443291,-0.040299605578184],[0.015819007530808,0.038799095898867,-0.049305539578199],[-0.0048201992176473,0.0032208214979619,0.05152914300561]],[[0.0012619006447494,0.017029773443937,-0.024575820192695],[-0.031120132654905,-0.027157114818692,-0.036856293678284],[0.031400661915541,-0.069934763014317,0.019271804019809]],[[-0.039550378918648,0.056685093790293,-0.0043269130401313],[-0.09246701747179,-0.040047202259302,0.058411344885826],[0.032348338514566,-0.042010843753815,0.073952682316303]],[[-0.048562649637461,-0.094984963536263,-0.0888641923666],[-0.026238964870572,-0.057940829545259,-0.042105928063393],[-0.0085037294775248,-0.062047224491835,0.026170393452048]],[[0.028034629300237,0.080543428659439,-0.067420333623886],[-0.034965436905622,-0.039737034589052,-0.039597049355507],[0.11408071219921,0.066203609108925,0.053117070347071]],[[0.11942525207996,-0.075013235211372,0.02469433285296],[-0.035819120705128,-0.085798807442188,-0.049928408116102],[-0.022309696301818,-0.049151014536619,-0.03236435353756]],[[0.04336966201663,0.062910325825214,-0.0016732928343117],[-0.0081973671913147,-0.0068379784934223,0.050048064440489],[-0.013938182033598,-0.034087561070919,0.021319083869457]],[[-0.011017244309187,0.030811684206128,0.089361943304539],[0.017746031284332,-0.076852686703205,0.0049696797505021],[0.047771971672773,-0.046155512332916,0.038548659533262]],[[-0.051541745662689,-0.10052659362555,-0.0063350452110171],[-0.012823083437979,-0.046587504446507,-0.073225654661655],[0.009040329605341,0.0059323040768504,0.051740549504757]],[[0.026154981926084,-0.020638575777411,0.0078957881778479],[0.047298464924097,-0.045680154114962,-0.078669779002666],[0.054212737828493,0.031525235623121,0.056562524288893]],[[-0.019403928890824,-0.011455188505352,0.025823585689068],[0.01403811853379,0.1241691634059,-0.068128041923046],[0.022215705364943,-0.077591516077518,0.059241972863674]],[[-0.054712485522032,0.015519262291491,0.058283470571041],[-0.0004367847868707,-0.0079975547268987,0.11259559541941],[0.074379585683346,0.044449437409639,0.0041275676339865]],[[0.030218442901969,-0.067570634186268,0.035254061222076],[0.013150949962437,-0.058128658682108,0.06030248478055],[-0.0093319648876786,0.027425857260823,0.034250672906637]],[[-0.070271693170071,-0.017256347462535,0.027484398335218],[-0.010051776655018,0.0268694460392,0.018954031169415],[0.015181997790933,0.034942995756865,-0.048645325005054]],[[0.017281789332628,0.15221227705479,0.0032631151843816],[0.037712730467319,-0.0003632205480244,0.13783125579357],[-0.017602672800422,-0.053195778280497,-0.018540415912867]],[[-0.05272500962019,-0.13808661699295,-0.025799833238125],[-0.067085430026054,-0.028343871235847,0.00058053358225152],[0.003135334700346,0.015319338068366,0.053601481020451]],[[-0.023432049900293,-0.062258709222078,0.077775083482265],[-0.0041549503803253,0.015205474570394,-0.070142716169357],[0.035553999245167,0.043947003781796,-0.055249113589525]],[[0.077886551618576,-0.0045526847243309,-0.013520433567464],[0.036948293447495,-0.043199893087149,-0.023286048322916],[0.043439798057079,0.056262861937284,0.095334388315678]],[[0.040648065507412,-0.036601763218641,0.046913590282202],[-0.070145636796951,-0.015652950853109,0.038209993392229],[-0.035325407981873,0.065706714987755,-0.021997980773449]],[[0.012092026881874,-0.083404801785946,0.070068039000034],[0.0057061952538788,-0.089158073067665,0.040993854403496],[0.052768718451262,-0.051147282123566,0.027172639966011]],[[-0.04803067818284,0.026451103389263,0.025549583137035],[-0.075019724667072,-0.015865629538894,0.084571309387684],[0.065943971276283,-0.020953714847565,-0.025796113535762]],[[-0.035326465964317,-0.019077239558101,-0.072204396128654],[-0.042255025357008,0.09289439022541,0.023847067728639],[-0.052635375410318,0.04496318846941,0.027927219867706]],[[-0.02555906958878,-0.050649799406528,0.0019775384571403],[-0.073826797306538,-0.053694434463978,0.047129984945059],[0.020268203690648,0.073219127953053,-0.024855364114046]],[[-0.059014778584242,-0.028375338762999,0.032927192747593],[-0.090630732476711,0.017350943759084,0.036925621330738],[0.0099034812301397,-0.061905093491077,-0.021259225904942]],[[0.047073472291231,0.011092516593635,-0.01336928550154],[0.0047002835199237,0.0021800512913615,0.015413421206176],[0.011670306324959,-0.0051372521556914,-0.038867615163326]],[[-0.020628018304706,0.018086235970259,-0.087675474584103],[0.066185601055622,-0.083554148674011,-0.16240562498569],[-0.040845111012459,0.0016854366986081,-0.017399739474058]],[[-0.041836567223072,0.10573336482048,0.070515312254429],[-0.00065935397287831,0.00069920701207593,0.02773655205965],[-0.040337327867746,0.03003716096282,0.010649467818439]],[[-0.052541043609381,0.051866874098778,0.11884678900242],[-0.07225788384676,-0.060864750295877,0.039120849221945],[-0.023118183016777,-0.10611882060766,0.022738868370652]],[[-0.011679821647704,-0.0044359229505062,-0.022718204185367],[0.012824374251068,0.050174508243799,0.00072024285327643],[0.021927028894424,0.055762771517038,0.005678819026798]],[[0.060346785932779,-0.052368510514498,-0.01016036234796],[0.023937055841088,-0.11265441775322,-0.035478003323078],[0.067525841295719,-0.094123296439648,-0.03959571570158]],[[-0.049213960766792,-0.019059062004089,-0.05889506265521],[0.036295954138041,0.044159166514874,-0.07934532314539],[0.023005312308669,0.051856972277164,0.074568323791027]],[[0.028526874259114,-0.031303595751524,-0.025422366335988],[0.030895506963134,-0.0014947716845199,-0.019106457009912],[-0.025358028709888,0.03059222176671,-0.073510684072971]],[[-0.013574659824371,-0.011818498373032,0.014137648977339],[0.07831209897995,0.063532955944538,-0.056262124329805],[0.032389830797911,0.060283154249191,-0.0048281997442245]],[[-0.11989615857601,0.053306605666876,0.036398638039827],[-0.062073778361082,-0.010803824290633,-0.096220821142197],[-0.070745915174484,0.027159456163645,-0.07949435710907]],[[-0.076399937272072,-0.06215563416481,0.0063922652043402],[0.016441900283098,0.031573325395584,-0.0056721824221313],[-0.011163086630404,-0.007463475689292,0.033642590045929]],[[0.039953846484423,0.05934776738286,0.048942424356937],[-0.11014331877232,0.012350281700492,-0.0063235401175916],[0.017992086708546,0.078505001962185,0.059845726937056]],[[0.062208209186792,0.037787139415741,-0.01599932461977],[-0.10330981016159,-0.009713594801724,0.039072204381227],[-0.0066439583897591,0.05038084462285,0.023345753550529]],[[0.036537908017635,-0.010097464546561,-0.07098001986742],[-0.058153491467237,-0.062488995492458,0.024221720173955],[0.036571186035872,0.056379970163107,0.055320639163256]],[[0.00047730727237649,0.035766333341599,-0.00040326893213205],[0.032512094825506,-0.062730401754379,-0.015000952407718],[-0.0025278716348112,0.0054341312497854,-0.014870224520564]],[[-0.0070135979913175,-0.034797292202711,-0.044884592294693],[0.011977000162005,-0.090515457093716,-0.061601679772139],[-0.0041117831133306,0.023844765499234,-0.098639652132988]],[[0.0049258316867054,0.12563981115818,-0.0047751246020198],[0.015425154007971,0.014226264320314,0.012746868655086],[-0.097129441797733,-0.037584610283375,0.075150787830353]],[[-0.11161372065544,-0.022031277418137,0.0012648304691538],[0.012498659081757,-0.092193298041821,-0.012372331693769],[-0.0057802596129477,-0.065213777124882,-0.07268625497818]],[[0.021051252260804,0.095750346779823,0.024759005755186],[-0.016129432246089,-0.015130587853491,0.0034587413538247],[-0.073297657072544,0.0064581697806716,0.078895635902882]],[[0.0013404566561803,-0.042224653065205,0.095639705657959],[0.047461729496717,-0.0030860116239637,0.092216819524765],[0.11288499087095,-0.063792638480663,-0.011347536928952]],[[0.0010604725684971,0.050626926124096,-0.049693875014782],[-0.01917508803308,-0.054922662675381,0.017145946621895],[0.0089565245434642,0.19800417125225,0.034788146615028]],[[-0.025207413360476,-0.050344206392765,-0.0070034293457866],[-0.0326320938766,0.0024325281847268,0.050047356635332],[0.063198938965797,0.025235936045647,-0.16658215224743]],[[-0.047847364097834,0.043930381536484,-0.044790796935558],[0.010113805532455,0.095643542706966,-0.06841766089201],[0.047174051403999,0.0036393627524376,-0.0051865712739527]],[[-0.077309250831604,0.10915834456682,-0.0080052800476551],[0.090540766716003,0.013460349291563,-0.050066888332367],[-0.0072284773923457,-0.0027471389621496,0.015593942254782]],[[0.055998370051384,-0.064369156956673,0.011692237108946],[0.058862544596195,-0.073778048157692,0.066368781030178],[-0.12407242506742,-0.01009860727936,-0.0047469176352024]],[[0.043895959854126,-0.049198031425476,-0.095961451530457],[-0.019121624529362,0.04301805794239,-0.081705503165722],[-0.0098006427288055,-0.016592100262642,0.0016843072371557]],[[-0.044595513492823,-0.051477201282978,-0.040136996656656],[-0.055433981120586,0.014495971612632,0.086927630007267],[-0.013580150902271,-0.030605427920818,0.025016797706485]],[[-0.046394411474466,-0.02964342199266,-0.031798496842384],[0.059741090983152,0.024940919131041,-0.046418372541666],[-0.067060083150864,-0.02543899603188,-0.0057399868965149]],[[0.09325996786356,0.064866915345192,-0.018026540055871],[-0.030723111703992,0.0022993220482022,-0.029975084587932],[0.0027454332448542,0.015117510221899,-0.035771869122982]],[[0.022817248478532,0.00012689814320765,-0.081494048237801],[-0.040225494652987,-0.080699540674686,-0.052848197519779],[0.033605147153139,0.036063350737095,0.032256331294775]],[[0.078656598925591,0.013432913459837,0.043587613850832],[-0.026865780353546,0.054283905774355,0.086880624294281],[-0.03471415117383,-0.064866684377193,0.074991419911385]],[[0.011570989154279,0.028194211423397,-0.0626240670681],[-0.0003833650262095,0.025499049574137,0.04807997867465],[-0.023975221440196,-0.040714383125305,-0.0015328729059547]],[[-0.063228212296963,0.014013444073498,-0.040834441781044],[-0.020291037857533,0.031868495047092,-0.12368860095739],[0.076956890523434,-0.064869701862335,0.0011191871017218]],[[-0.096115671098232,-0.027658574283123,-0.026160098612309],[0.070680856704712,0.010157915763557,-0.0092480415478349],[-0.018193056806922,0.020357372239232,-0.018335578963161]],[[0.066966898739338,0.010359667241573,-0.033010717481375],[0.059220857918262,-0.023922571912408,0.029916141182184],[-0.057958334684372,0.033554594963789,-0.0076612131670117]],[[0.033992882817984,-0.032268777489662,-0.0040961797349155],[-0.018998887389898,0.024681642651558,-0.0073278751224279],[-0.025042694061995,-0.020591240376234,-0.038379088044167]],[[0.084858231246471,-0.068939097225666,0.0051777074113488],[-0.04223133996129,-0.02410639077425,0.0057815918698907],[0.016209542751312,-0.015878358855844,-0.020982308313251]],[[0.040170647203922,0.055466212332249,0.053448535501957],[0.049463599920273,-0.049571804702282,-0.013795069418848],[0.062760084867477,0.042237676680088,0.014170775189996]],[[-0.046538800001144,0.026990927755833,0.027581259608269],[-0.019589437171817,-0.0079223737120628,-0.032981120049953],[-0.011216249316931,-0.0055917464196682,0.029431192204356]],[[-0.040649354457855,0.0040727942250669,-0.036914192140102],[0.12891738116741,0.054213605821133,-0.1378385424614],[0.012865654192865,0.081917822360992,-0.0049421079456806]],[[-0.053749404847622,0.035489302128553,-0.033403843641281],[-0.005282764788717,0.00096767756622285,-0.0032063382677734],[-0.071007318794727,-0.014874218963087,-0.04506092146039]],[[-0.10815131664276,-0.12583735585213,0.12150823324919],[-0.050101570785046,-7.8967743320391e-05,-0.013969174586236],[0.048727095127106,0.015221307054162,-0.044597148895264]],[[-0.07699066400528,-0.10833416879177,-0.021493019536138],[0.02838035300374,-0.042401093989611,0.03264033421874],[-0.058196738362312,-0.01026442181319,-0.046196222305298]],[[0.03830849006772,0.014545197598636,0.00055050308583304],[-0.027269808575511,-0.066937707364559,0.011127691715956],[0.028638510033488,-0.083991691470146,0.027261186391115]],[[0.063022799789906,-0.039298143237829,0.0057147643528879],[0.046801265329123,-0.004188702441752,0.010742635466158],[0.024533351883292,0.057494394481182,0.19408150017262]],[[0.017341239377856,0.074282176792622,-0.0049242782406509],[-0.022292330861092,-0.0032934264745563,0.0080578550696373],[-0.025370748713613,0.019742909818888,0.14685563743114]],[[0.10625275969505,-0.047922100871801,0.038803473114967],[0.095832973718643,0.098282910883427,0.10192365199327],[-0.074578799307346,-0.0120301945135,0.035363972187042]],[[0.021450880914927,0.010527268052101,0.042820960283279],[0.087480686604977,-0.018535600975156,0.032234381884336],[-0.028427235782146,-0.037331365048885,-0.045057602226734]],[[-0.0041358615271747,0.017582813277841,-0.091102577745914],[-0.046378392726183,-0.10288435965776,-0.061743631958961],[-0.068744421005249,0.064411491155624,0.038943376392126]],[[-0.021950012072921,-0.0030543010216206,0.08904954791069],[-0.075615264475346,-0.02100563980639,0.018811970949173],[0.048631552606821,-0.0096426587551832,-0.0080588310956955]],[[0.04829603433609,-0.029942199587822,-0.092240236699581],[-0.012181241996586,0.046163350343704,0.068832628428936],[-0.061557628214359,0.044937886297703,-0.0071318671107292]],[[-0.023506155237556,-0.033480100333691,0.041526846587658],[0.024834685027599,-0.025646874681115,0.1443490087986],[-0.094265550374985,-0.042934514582157,0.1094767972827]],[[0.011258947663009,0.17327371239662,-0.0091777322813869],[-0.0051930923946202,0.079916179180145,0.041017718613148],[-0.004107678309083,-0.069927982985973,-0.038417026400566]],[[-0.081704713404179,0.038112748414278,0.023335224017501],[0.018750378862023,0.017137516289949,0.084389828145504],[0.057229604572058,0.041421353816986,-0.034156031906605]],[[-0.050408612936735,-0.011691942811012,-0.0051430347375572],[0.035018343478441,0.078752584755421,-0.033916611224413],[-0.020464830100536,0.031115222722292,0.024683309718966]]],[[[0.077103108167648,-0.021051915362477,0.10382452607155],[0.059121530503035,0.017459340393543,0.15040558576584],[-0.058175999671221,-0.050818059593439,0.12088514119387]],[[-0.17456857860088,-0.036891765892506,-0.046947222203016],[-0.1126311942935,0.0011953325010836,-0.029790446162224],[0.1289467215538,0.07414898276329,0.033280786126852]],[[-0.020043166354299,-0.006128222681582,0.030804697424173],[-0.00038451570435427,0.027280103415251,0.029601693153381],[0.02986559830606,0.073657140135765,-0.028455479070544]],[[0.032902806997299,0.038937468081713,-0.18290156126022],[0.052964892238379,-0.082754477858543,-0.10493645071983],[-0.049880005419254,-0.059811916202307,-0.17054450511932]],[[0.15512280166149,0.10028520226479,0.11893307417631],[-0.038281410932541,0.096099071204662,0.18258677423],[-0.1154398098588,-0.058208022266626,0.13545259833336]],[[0.11733058840036,-0.015646953135729,0.092890933156013],[0.061093106865883,-0.097023367881775,0.012415976263583],[0.24965991079807,-0.12482789158821,-0.0054883160628378]],[[0.044623665511608,0.11900552362204,0.20174154639244],[-0.027629688382149,0.056747835129499,0.050141375511885],[0.13524509966373,0.0074750292114913,-0.032953061163425]],[[-0.01532293856144,-0.050176691263914,0.0040021636523306],[-0.044446025043726,0.040527701377869,-0.051514390856028],[-0.12071803212166,0.0028826738707721,-0.024472245946527]],[[-0.0094522181898355,-0.12134228646755,-0.026276065036654],[-0.084920383989811,0.048051729798317,-0.024111568927765],[-0.056785851716995,-0.083440691232681,0.068162299692631]],[[-0.023769477382302,0.055267155170441,-0.029412023723125],[0.020947942510247,-0.07877004891634,0.061677373945713],[0.027825783938169,-0.085488103330135,0.042336728423834]],[[0.13471041619778,0.1204826682806,0.11813539266586],[0.17335945367813,0.17215517163277,-0.10711435973644],[0.069847099483013,-0.0057841218076646,0.038075018674135]],[[0.13609965145588,0.037210531532764,0.087294466793537],[0.16513961553574,0.075993582606316,0.0024786049034446],[-0.11628787219524,-0.047812666743994,-0.15608805418015]],[[-0.097247630357742,-0.1070487126708,0.0036373571492732],[-0.032739974558353,0.036131769418716,0.20600567758083],[-0.11176580935717,0.13887679576874,0.10575672984123]],[[0.0069918809458613,0.073580019176006,0.057626210153103],[0.029173040762544,0.034901406615973,0.040792752057314],[0.045416701585054,0.12005236744881,0.019241468980908]],[[-0.090864382684231,-0.031289514154196,-0.16755838692188],[-0.059901222586632,-0.12331796437502,-0.14991898834705],[0.012097164057195,0.026065777987242,-0.050739578902721]],[[0.27607959508896,-0.056753642857075,0.14884477853775],[0.071764536201954,-0.06064311042428,-0.014633799903095],[0.20511493086815,-0.10350408405066,-0.078800603747368]],[[-0.025076147168875,0.092074789106846,0.07192649692297],[-0.0069492165930569,0.012274581007659,-0.031019359827042],[-0.14094687998295,-0.012963309884071,-0.02720233798027]],[[0.0204819701612,0.043982457369566,0.022195804864168],[-0.018225584179163,-0.00023277233412955,-0.0013968325220048],[-0.059841115027666,-0.11072313040495,0.11160077154636]],[[0.21770480275154,0.18038833141327,0.090130746364594],[0.061937712132931,-0.015342248603702,0.041746359318495],[-0.069211587309837,0.064302772283554,-0.12341138720512]],[[0.015705805271864,0.061610259115696,-0.082311823964119],[-0.19372898340225,0.059970751404762,-0.12789061665535],[-0.15434929728508,0.02854048833251,-0.14006446301937]],[[-0.10159692168236,-0.062590695917606,-0.036311995238066],[-0.11271995306015,-0.089270375669003,-0.13652269542217],[-0.057475171983242,-0.19121362268925,-0.10147169232368]],[[0.22671057283878,-0.069088660180569,-0.12977387011051],[0.15615785121918,0.080978736281395,0.0037811859510839],[0.12331146001816,0.03208677098155,0.093021936714649]],[[0.031710416078568,-0.078392557799816,0.0074164369143546],[0.0086996704339981,0.13374321162701,0.029107235372066],[0.001468475908041,-0.016943216323853,-0.099580988287926]],[[-0.095981270074844,-0.0060616596601903,0.086862683296204],[-0.058520261198282,-0.026085337623954,-0.02564200013876],[-0.027442755177617,0.055200155824423,-0.095974683761597]],[[0.09739201515913,-0.0071024755015969,0.11998685449362],[0.15827108919621,0.076344840228558,-0.093975827097893],[0.072488434612751,-0.035442519932985,0.086526416242123]],[[0.039886463433504,0.12887388467789,-0.059563837945461],[0.052362184971571,-0.071085207164288,-0.004492592997849],[-0.017040247097611,-0.13649424910545,0.19401784241199]],[[-0.087105602025986,0.14041709899902,0.027623688802123],[-0.12801806628704,0.1121481359005,-0.070044241845608],[-0.0069489497691393,0.1423653960228,0.017737753689289]],[[-0.134850025177,-0.080198511481285,-0.083115339279175],[-0.043037191033363,0.12417820096016,0.054096072912216],[0.10979671031237,0.050409618765116,-0.1761082559824]],[[-0.068719767034054,0.070642083883286,-0.10249399393797],[-0.061986643821001,0.021780323237181,-0.025982413440943],[-0.034411385655403,0.031110025942326,-0.15030743181705]],[[-0.034016858786345,0.040936984121799,-0.021165611222386],[0.097955718636513,-0.13508814573288,-0.044658344238997],[0.11083343625069,0.042408850044012,0.071757666766644]],[[-0.075620487332344,0.22390885651112,0.0442880615592],[0.030752839520574,-0.01161321438849,-0.11308114975691],[0.093436501920223,-0.095399118959904,-0.017994608730078]],[[-0.077947579324245,-0.073247388005257,0.19600276648998],[-0.10694513469934,0.095476172864437,0.21883401274681],[-0.08318030834198,-0.074399426579475,-0.010603429749608]],[[-0.022819010540843,-0.015811499208212,0.12642017006874],[-0.10412066429853,0.034034091979265,0.082816310226917],[0.066748969256878,0.044674906879663,-0.064278200268745]],[[-0.0063618305139244,-0.081416487693787,0.043893273919821],[0.059775438159704,-0.097762361168861,-0.037650167942047],[-0.13650232553482,-0.052178487181664,-0.043936550617218]],[[-0.18283653259277,-0.17816011607647,-0.052871156483889],[-0.17255061864853,-0.14458109438419,-0.069010496139526],[0.036557044833899,-0.090279422700405,-0.061713993549347]],[[-0.14809164404869,-0.068115808069706,0.025270108133554],[-0.089363485574722,-0.094284974038601,-0.084351375699043],[-0.18136976659298,-0.097958073019981,-0.093495026230812]],[[0.037337590008974,-0.0091379350051284,-0.048500649631023],[0.013587386347353,0.051933884620667,0.016372490674257],[-0.0015857273247093,-0.020889231935143,0.034804027527571]],[[-0.10148590803146,-0.065670095384121,0.17012667655945],[0.04912431165576,-0.083989500999451,-0.083301767706871],[0.23895111680031,0.1276952624321,0.13204400241375]],[[-0.024995669722557,0.033293254673481,-0.025477590039372],[0.11005206406116,-0.018664311617613,0.0060946238227189],[0.10271557420492,0.076202623546124,0.02241675183177]],[[0.13420939445496,-0.019363747909665,-0.1311709433794],[0.11463911086321,-0.085764594376087,0.064361400902271],[0.12167804688215,0.014047355391085,0.050803352147341]],[[0.059313531965017,-0.041486851871014,0.061488468199968],[0.062202133238316,-0.018409300595522,-0.087117224931717],[0.13399671018124,-0.0068607525900006,0.072515554726124]],[[-0.043508604168892,0.074382737278938,0.0011033961782232],[0.094287104904652,-0.05227754637599,-0.043919064104557],[0.090787477791309,0.061570946127176,-0.060845587402582]],[[-0.09725184738636,-0.065566748380661,0.021205069497228],[0.0065581556409597,-0.054243113845587,-0.10115669667721],[-0.098420158028603,0.078709818422794,-0.019172843545675]],[[0.082025274634361,-0.0025034788995981,-0.022831970825791],[-0.046931114047766,-0.033314812928438,-0.038652915507555],[-0.011964983306825,-0.041746497154236,-0.01835785806179]],[[0.0061327153816819,0.015559522435069,-0.013218875043094],[-0.056947231292725,-0.019659079611301,-0.044859360903502],[-0.01638706587255,0.036183629184961,0.033026628196239]],[[0.0029244171455503,-0.072646521031857,0.033644780516624],[0.030105514451861,-0.074289232492447,-0.15685008466244],[0.056638836860657,-0.057499572634697,-0.14893038570881]],[[-0.06046960875392,0.038237281143665,0.028080837801099],[0.058464221656322,-0.036743436008692,-0.16196075081825],[0.13641960918903,-0.11412643641233,0.024306502193213]],[[-0.031038971617818,-0.055873181670904,0.12258096784353],[-0.026204045861959,0.13920797407627,-0.0066401418298483],[0.067617811262608,0.099252730607986,-0.061304952949286]],[[-0.19602899253368,0.17473767697811,-0.011098459362984],[-0.015368731692433,0.10789308696985,-0.076715104281902],[-0.16768887639046,-0.029615877196193,-0.05763653293252]],[[-0.082114569842815,-0.0085088228806853,-0.11543869227171],[-0.010410679504275,-0.052396576851606,-0.086425460875034],[0.052682109177113,-0.021459838375449,0.042967423796654]],[[0.11164008826017,0.056472424417734,-0.050920747220516],[-0.051511213183403,-0.062112309038639,-0.053252335637808],[0.17265841364861,-0.14051350951195,-0.079069070518017]],[[-0.034581877291203,-0.07229145616293,0.07479389756918],[-0.0026338375173509,-0.074177756905556,0.020197782665491],[-0.061709146946669,-0.0115200066939,0.011440518312156]],[[0.11954761296511,0.014127026312053,0.012145280838013],[0.16965049505234,0.044556751847267,0.026243647560477],[0.10153391957283,-0.024635348469019,-0.063502639532089]],[[-0.097751371562481,-0.035485420376062,0.032636076211929],[-0.086956940591335,-0.022458432242274,0.0070199174806476],[-0.072143271565437,-0.051953759044409,-0.16825066506863]],[[0.013786602765322,0.12629766762257,0.054214015603065],[0.063408955931664,0.031622994691133,-0.19071233272552],[0.16040273010731,0.044855501502752,-0.066534735262394]],[[-0.045717295259237,0.0093620223924518,-0.014817145653069],[-0.074041962623596,-0.092521734535694,0.017499770969152],[0.003430649638176,0.081222787499428,-0.055081509053707]],[[-0.030501561239362,-0.038812264800072,0.060432583093643],[-0.093100994825363,-0.0077532799914479,-0.066785842180252],[-0.08315359801054,0.099132023751736,0.13352578878403]],[[-0.11939137428999,-0.10402311384678,0.046988505870104],[-0.10591910034418,-0.10403582453728,0.039182599633932],[-0.11438358575106,-0.055881977081299,0.11017994582653]],[[0.084105089306831,0.052503492683172,-0.1088273152709],[-0.087085075676441,-0.13567298650742,-0.033438064157963],[-0.081226423382759,-0.23158337175846,0.038241378962994]],[[0.11537938565016,0.2106748521328,-0.087567202746868],[0.094129115343094,0.091045245528221,-0.065561838448048],[0.15263076126575,0.20829510688782,0.027211895212531]],[[-0.082441806793213,-0.11721784621477,0.018235767260194],[-0.15222555398941,-0.047883603721857,-0.13361783325672],[-0.21795709431171,-0.19978168606758,0.16341538727283]],[[0.042511951178312,0.011244983412325,-0.091336190700531],[0.045574598014355,-0.11626848578453,-0.077614463865757],[-0.097118370234966,-0.12813402712345,-0.22213363647461]],[[0.020080370828509,0.05451736971736,0.017904227599502],[0.067397460341454,0.084152095019817,-0.0082078268751502],[-0.028354614973068,0.018040362745523,-0.097881272435188]],[[0.050163563340902,0.018527103587985,0.013995999470353],[0.0057588252238929,-0.061867985874414,-0.031593590974808],[-0.062889970839024,-0.1452903598547,0.041368070989847]],[[0.079007923603058,0.1043052598834,0.063652113080025],[0.011748882941902,0.10752414911985,0.00034852733369917],[0.075731813907623,0.080617420375347,-0.063013166189194]],[[-0.099907211959362,-0.12690107524395,-0.053125705569983],[-0.1532037705183,-0.053337458521128,0.089902520179749],[-0.11633114516735,0.065934404730797,0.043266288936138]],[[-0.086899429559708,-0.10575263947248,-0.1364706158638],[0.0083980038762093,-0.019440300762653,-0.034601025283337],[-0.0018826071172953,-0.061664681881666,-0.038501124829054]],[[0.0076706307008862,-0.03915848955512,-0.08824572712183],[-0.031742606312037,-0.021455204114318,0.0013079902855679],[0.035105992108583,-0.020741274580359,0.038231063634157]],[[-0.072821132838726,0.0034533804282546,0.091513000428677],[-0.060986246913671,0.048615451902151,0.12137264758348],[-0.009485905058682,0.092351645231247,0.094669133424759]],[[-0.008939272724092,-0.027830712497234,-0.073776841163635],[0.016613436862826,-0.011345730163157,0.097176052629948],[0.052291225641966,0.082209937274456,0.26100769639015]],[[0.075009562075138,-0.054670289158821,-0.090139873325825],[-0.11410906165838,-0.050293650478125,0.026562940329313],[-0.057698294520378,-0.062047388404608,-0.0012570032849908]],[[0.004251595120877,0.043545592576265,0.062999919056892],[0.066568225622177,0.0022841542959213,-0.053304892033339],[-0.0039322758093476,0.030216535553336,-0.010706044733524]],[[-0.0024505243636668,0.0034291534684598,-0.025059776380658],[-0.10247500240803,-0.050507560372353,-0.02463635802269],[-0.14164301753044,-0.087946467101574,-0.035440947860479]],[[0.044992972165346,-0.034570805728436,0.066551819443703],[-0.044456716626883,0.029664015397429,0.069319382309914],[-0.08762776106596,0.12483599036932,0.03239881247282]],[[-0.054658520966768,0.044924523681402,-0.15533097088337],[0.029184063896537,-0.024318479001522,-0.041292071342468],[-0.17163722217083,-0.10233172029257,-0.081933595240116]],[[-0.091616094112396,0.087966188788414,0.16327160596848],[-0.046588554978371,0.096947759389877,0.096679411828518],[-0.13528577983379,0.077655129134655,0.13514798879623]],[[-0.15824228525162,-0.070783250033855,-0.08604821562767],[-0.074703246355057,-0.12953196465969,-0.063664801418781],[-0.10120491683483,-0.052774362266064,-0.0099736480042338]],[[-0.19664327800274,-0.11143489181995,-0.14161556959152],[-0.1285116225481,0.049530282616615,-0.13780845701694],[-0.12405840307474,0.029657419770956,-0.086424879729748]],[[0.082717880606651,0.19075298309326,-0.032229721546173],[0.090648628771305,-0.16467675566673,-0.06719733774662],[-0.057842083275318,0.010177769698203,-0.031979586929083]],[[-0.11299058794975,-0.043127864599228,-0.043757576495409],[-0.075485624372959,-0.087083645164967,-0.097317092120647],[-0.15291680395603,-0.019792271777987,-0.094390779733658]],[[0.03932423889637,-0.020036716014147,0.089423142373562],[0.038091454654932,0.044419445097446,0.096429087221622],[0.1292409747839,-0.13042399287224,-0.100047506392]],[[0.11969677358866,0.1518137305975,-0.10439898073673],[0.0031314725056291,0.1215011999011,0.05573658645153],[-0.090195998549461,-0.11137188225985,-0.066371187567711]],[[-0.031155176460743,0.27775430679321,0.21866625547409],[-0.090242385864258,0.099555172026157,0.09120536595583],[-0.17349129915237,0.063509918749332,0.28199303150177]],[[-0.028130883350968,-0.0666608735919,-0.14951014518738],[-0.13320653140545,-0.18324725329876,-0.11706801503897],[-0.16784903407097,-0.23996469378471,-0.17554724216461]],[[-0.031295362859964,-0.05754966288805,-0.039493631571531],[0.17220084369183,-0.12402641773224,0.024034580215812],[0.021232267841697,-0.029799304902554,0.064384952187538]],[[0.0068989377468824,-0.011393553577363,-0.012195257470012],[0.037093739956617,0.014981852844357,0.016941379755735],[-0.00068351451773196,-0.019083393737674,0.091183595359325]],[[-0.014549496583641,0.0081500178202987,-0.12704975903034],[-0.025316998362541,-0.098249733448029,-0.18762159347534],[0.035420220345259,-0.068208202719688,0.020329490303993]],[[0.13319200277328,-0.035304475575686,-0.1081984937191],[0.063983872532845,-0.074046581983566,-0.040586918592453],[0.045793510973454,0.062874428927898,-0.029712246730924]],[[0.1861307322979,0.25415608286858,0.028986174613237],[0.05552290007472,0.036855962127447,0.030850669369102],[0.13430140912533,0.091601982712746,0.0096584353595972]],[[-0.013290020637214,0.074616007506847,-0.075358361005783],[0.12682415544987,-0.019450413063169,-0.13707469403744],[0.00059931754367426,0.054567441344261,-0.1619931012392]],[[-0.058052472770214,-0.050863593816757,-0.074833884835243],[-0.022776773199439,-0.070116862654686,-0.022424563765526],[0.0029288732912391,-0.074312642216682,-0.025224670767784]],[[-0.060801845043898,-0.049034889787436,-0.12030076980591],[-0.048320766538382,-0.14859004318714,-0.055129330605268],[-0.074643075466156,0.039140336215496,0.055824428796768]],[[-0.055992156267166,-0.066946960985661,-0.065900802612305],[0.1367542296648,0.032678924500942,0.035265140235424],[-0.10653983056545,-0.0034432862885296,0.21976183354855]],[[-0.13524259626865,-0.26510936021805,0.063874401152134],[-0.20281879603863,-0.12845702469349,0.050260197371244],[-0.058014653623104,-0.14473402500153,0.055464956909418]],[[-0.020847389474511,0.039159383624792,0.043737601488829],[-0.051031198352575,0.001760576153174,0.1693709641695],[0.17000895738602,0.18609030544758,0.1344732940197]],[[0.061933856457472,0.047802969813347,0.092353366315365],[0.02887493185699,0.015184610150754,0.032819129526615],[0.10390955209732,-0.18612568080425,-0.040669403970242]],[[-0.093076936900616,0.015713788568974,-0.063636139035225],[-0.16319900751114,-0.12733022868633,-0.023557767271996],[-0.13827387988567,-0.053545568138361,0.10957191884518]],[[-0.048023615032434,0.1257041990757,0.056720815598965],[0.077311061322689,0.20341883599758,-0.02415824867785],[-0.20661024749279,0.11388869583607,0.071641214191914]],[[0.16922828555107,-0.071974046528339,0.083992436528206],[0.1449479162693,-0.0048639192245901,0.044855903834105],[-0.021705580875278,0.015983030200005,0.018140260130167]],[[-0.020992636680603,-0.048279251903296,0.065227784216404],[-0.02877744846046,-0.11122053861618,0.099450968205929],[-0.016564413905144,0.18166179955006,-0.0061612520366907]],[[0.1382692605257,-0.040315695106983,0.0262869913131],[0.10691588371992,-0.11858499795198,-0.062994055449963],[0.14570833742619,-0.046214748173952,0.012248460203409]],[[-0.038594868034124,0.015359216369689,-0.0038681121077389],[-0.028079129755497,-0.040306694805622,-0.079042471945286],[0.029253479093313,0.054840326309204,-0.072907671332359]],[[0.040130250155926,0.080816395580769,-0.018655197694898],[-0.12084545195103,-0.0047578634694219,-0.016040785238147],[-0.082993768155575,0.011030539870262,-0.019949147477746]],[[-0.039017587900162,-0.081886619329453,-0.0090137645602226],[0.035857461392879,0.0040709259919822,-0.15636935830116],[0.18112826347351,0.14948581159115,0.032526541501284]],[[0.10255194455385,0.075283259153366,-0.015689788386226],[-0.0073014921508729,-0.058232069015503,-0.06974969804287],[-0.052082695066929,-0.097808994352818,-0.0064704427495599]],[[-0.199921682477,0.089717529714108,0.0087044015526772],[-0.048630300909281,-0.14207488298416,0.01859463006258],[-0.071930520236492,-0.0065300026908517,0.063297212123871]],[[-0.016015162691474,0.044671066105366,0.11676818132401],[-0.052428841590881,0.040545593947172,-0.041149731725454],[0.077083326876163,-0.013227036222816,0.038230564445257]],[[-0.03439849242568,-0.16725018620491,-0.11154244095087],[0.11534620821476,-0.054397825151682,-0.042266000062227],[0.11926183104515,0.037465427070856,0.052956018596888]],[[-0.072438418865204,-0.0024357330985367,0.017233360558748],[-0.17180535197258,0.13305027782917,0.090550966560841],[0.064927808940411,-0.019668905064464,-0.018914690241218]],[[0.11525718122721,-0.014955352060497,-0.020666962489486],[0.089430935680866,-0.037632331252098,-0.072147466242313],[0.10934084653854,0.018400214612484,-0.077011279761791]],[[0.043550778180361,0.014060145244002,0.074179075658321],[-0.0097960690036416,-0.028926907107234,0.039206329733133],[0.070205457508564,0.017133047804236,0.021561274304986]],[[-0.14075915515423,-0.054839886724949,-0.088380314409733],[-0.08812803030014,-0.07844927161932,-0.088319510221481],[-0.10128479450941,-0.055332947522402,0.19040089845657]],[[-0.19258505105972,0.018400015309453,0.13664048910141],[-0.017370412126184,0.01664043776691,-0.0070516308769584],[-0.0048528788611293,0.097866460680962,-0.08753590285778]],[[-0.041359562426805,0.11956576257944,0.031526669859886],[0.038689069449902,-0.0095841065049171,-0.070983856916428],[0.0025020043831319,0.085148423910141,0.14058639109135]],[[-0.12609265744686,0.044651046395302,0.013478874228895],[0.034049741923809,0.034397684037685,-0.019328910857439],[0.0038925653789192,0.045538369566202,0.14878740906715]],[[-0.24156963825226,0.041408631950617,0.013338849879801],[-0.11224763095379,0.024538857862353,-0.0016078882617876],[-0.10603310167789,0.0333561450243,-0.076458588242531]],[[0.10524070262909,0.068193078041077,0.021244596689939],[0.060881048440933,-0.074045471847057,0.023547975346446],[0.13261780142784,-0.014993561431766,0.0021440058480948]],[[0.027122320607305,0.12939091026783,-0.01257502194494],[0.14809529483318,0.13877546787262,0.0038108418229967],[-0.052887510508299,0.011496712453663,0.082475088536739]],[[-0.12588195502758,-0.15423321723938,0.086452841758728],[-0.00052757502999157,0.003492291085422,0.016161348670721],[-0.069402612745762,-0.039579432457685,-0.021156843751669]],[[-0.0059705702587962,0.050579324364662,0.062498286366463],[-0.097080029547215,0.0048929695039988,-0.066416174173355],[-0.065045267343521,0.099459648132324,-0.054325394332409]],[[-0.084586657583714,0.00028649833984673,-0.010673657990992],[-0.028520841151476,-0.10477010905743,-0.039934985339642],[0.0049428693018854,-0.075054571032524,-0.14759522676468]],[[0.042134296149015,0.024790331721306,0.1107510253787],[0.051964342594147,0.11915099620819,-0.054630059748888],[0.10589745640755,0.09311555325985,-0.078667424619198]],[[-0.026451528072357,-0.044016845524311,-0.041808094829321],[-0.033863127231598,-0.11590645462275,-0.14376227557659],[-0.10001397877932,-0.10959593206644,-0.059574585407972]],[[0.043984271585941,0.081676855683327,-0.034867417067289],[0.082952126860619,-0.071254000067711,0.044493824243546],[0.19061775505543,-0.15795198082924,-0.1445452272892]],[[0.0065589360892773,-0.0089462259784341,-0.068418979644775],[-0.071668803691864,-0.026560992002487,-0.079705528914928],[-0.18349181115627,0.047784332185984,0.13244280219078]],[[0.039089851081371,0.072216175496578,-0.030033625662327],[0.047883417457342,0.072044752538204,-0.038710109889507],[0.055443003773689,0.12857455015182,0.038091275840998]],[[-0.022818718105555,0.0067868214100599,0.15339447557926],[-0.024406811222434,-0.1151932477951,0.15966761112213],[-0.14791359007359,-0.11251999437809,0.039506431668997]],[[0.10942406952381,-0.083046428859234,-0.082985654473305],[0.13886032998562,0.18741217255592,-0.13109469413757],[0.16208127140999,-0.10954997688532,-0.054086480289698]]],[[[0.033455148339272,-0.098556071519852,-0.099130481481552],[0.0079052206128836,-0.07055327296257,-0.076725021004677],[0.031570944935083,-0.096655905246735,-0.0063263759948313]],[[-0.16783161461353,0.084573969244957,0.025232603773475],[0.0868134573102,0.053623147308826,0.027109529823065],[-0.18518368899822,-0.19005288183689,-0.14702329039574]],[[0.056474037468433,0.10030870139599,0.10523119568825],[0.018109472468495,-0.0026103514246643,-0.1113972440362],[-0.01914443820715,-0.089317888021469,0.021012535318732]],[[-0.14758488535881,0.009150986559689,-0.046224977821112],[-0.0036778764333576,-0.025456020608544,-0.029541244730353],[-0.022274870425463,-0.12180442363024,-0.021512728184462]],[[-0.11230149120092,-0.076379202306271,-0.1363575309515],[0.13780750334263,0.027832992374897,-0.078871481120586],[0.046471983194351,0.090673811733723,0.069375641644001]],[[0.10186926275492,-0.070578187704086,-0.1279436647892],[0.34618440270424,0.12790854275227,0.028511280193925],[-0.074172928929329,0.052259143441916,-0.097445704042912]],[[0.090417861938477,0.035862442106009,0.021886838600039],[0.17601205408573,-0.00010873537394218,-0.022790757939219],[-0.14167815446854,-0.015601447783411,0.00090001081116498]],[[0.098070047795773,0.12542730569839,0.055571913719177],[0.080432645976543,0.018126158043742,0.057307798415422],[0.032068956643343,-0.0063739437609911,-0.025078307837248]],[[-0.0067578968591988,-0.040975738316774,0.0078143188729882],[0.034896168857813,-0.041249427944422,0.024475362151861],[-0.15380667150021,-0.039288185536861,-0.076647341251373]],[[-0.026112684980035,-0.092657126486301,-0.0049997474998236],[-0.092147782444954,0.10748954117298,0.081388778984547],[0.010598788969219,-0.062306582927704,-0.067034311592579]],[[-0.049604307860136,-0.024320079013705,0.044440370053053],[-0.09896194934845,0.076491162180901,0.023857513442636],[-0.080424353480339,-0.061433773487806,-0.051401741802692]],[[-0.0039713173173368,-0.043761499226093,-0.063307762145996],[0.093753091990948,0.050567537546158,0.011436725966632],[0.01762449927628,0.00064110296079889,-0.0029644719325006]],[[-0.10377738624811,-0.087477400898933,-0.10128600895405],[-0.15972773730755,-0.08131555467844,-0.018720410764217],[-0.10393967479467,-0.024924984201789,0.15569403767586]],[[-0.03830248862505,0.034774526953697,0.062014497816563],[-0.085647642612457,-0.074719846248627,-0.13859108090401],[0.095337003469467,0.055208962410688,-0.034794341772795]],[[0.026939863339067,0.094564959406853,0.14077077805996],[0.099912196397781,-0.0041751442477107,-0.084746539592743],[-0.014149868860841,-0.073400504887104,-0.068108402192593]],[[-0.0024937151465565,-0.16873136162758,-0.12070360779762],[-0.069071009755135,-0.073876149952412,0.067679204046726],[0.078300185501575,-0.0010042794747278,-0.012164828367531]],[[0.030311744660139,-0.073614746332169,0.013565971516073],[-0.055526055395603,-0.10290071368217,-0.059112273156643],[0.031265310943127,-0.030448168516159,0.0082487231120467]],[[0.016567004844546,0.088092595338821,-0.049016840755939],[0.022677686065435,-0.038402449339628,0.038772888481617],[0.033286351710558,0.0086901104077697,-0.050736978650093]],[[-0.026868041604757,-0.0024827742017806,-0.15960296988487],[0.041241142898798,-0.041373427957296,0.017283489927649],[0.038480263203382,0.051252603530884,0.019123911857605]],[[0.0067633581347764,0.051346629858017,0.04133927449584],[-0.0074289869517088,0.087562747299671,0.1031830906868],[0.051778040826321,0.099148035049438,0.10684804618359]],[[0.061730094254017,0.078794658184052,-0.015791162848473],[-0.098910182714462,0.0036719017662108,0.04305112361908],[0.12644077837467,0.11587162315845,0.14468298852444]],[[-0.029023420065641,0.067143261432648,-0.0070001953281462],[0.1149825155735,0.073165901005268,-0.023073362186551],[0.054072722792625,0.13118359446526,0.037499584257603]],[[0.20687292516232,-0.058495759963989,-0.1099905371666],[-0.011441676877439,0.065531648695469,-0.14902153611183],[0.031132327392697,0.089388273656368,0.015181992202997]],[[0.0098113985732198,0.081450402736664,0.068869806826115],[-0.013134852051735,-0.11574210971594,0.16717217862606],[-0.17689780890942,-0.15535841882229,-0.092983677983284]],[[-0.0040877908468246,0.052209291607141,0.17327113449574],[0.010120898485184,0.029442731291056,0.11080374568701],[0.1392230540514,0.041294705122709,-0.0092129744589329]],[[-0.084294997155666,-0.034113578498363,-0.011964166536927],[-0.011194640770555,-0.025411933660507,-0.059894274920225],[-0.061392772942781,-0.050038430839777,0.024394964799285]],[[-0.1733630001545,-0.041469924151897,0.10640218853951],[-0.0074727730825543,-0.011986420489848,0.017406027764082],[-0.15576414763927,-0.1070125028491,-0.010500937700272]],[[-0.06781841814518,0.062873922288418,0.00058150291442871],[-0.023059379309416,-0.1643425822258,-0.23712919652462],[0.045527722686529,-0.066384516656399,-0.073337577283382]],[[-0.049060940742493,-0.0094438726082444,0.14095109701157],[-0.072008617222309,-0.21271885931492,0.079163439571857],[-0.10261107981205,-0.038362458348274,-0.15232495963573]],[[0.042124882340431,-0.11580044776201,-0.098255984485149],[-0.065681830048561,-0.023629790171981,0.056419108062983],[0.091384552419186,0.0078752096742392,0.027847437188029]],[[-0.09044698625803,0.0069329007528722,-0.025413850322366],[-0.0065416470170021,0.14100454747677,0.048396557569504],[-0.049415051937103,0.04700043424964,-0.13353942334652]],[[0.015758618712425,-0.062476318329573,-0.11526431143284],[-0.022273907437921,-0.10307773947716,0.06641598790884],[0.061255443841219,0.13817885518074,0.13812249898911]],[[0.084093302488327,0.24487036466599,-0.095557890832424],[0.019916821271181,-0.008445180952549,0.059934936463833],[0.059894166886806,0.1257980465889,0.077848866581917]],[[-0.04655534401536,-0.018154818564653,0.03313010185957],[0.090033315122128,-0.037326212972403,0.11371014267206],[0.09224746376276,0.13113079965115,0.041045855730772]],[[-0.047238979488611,-0.12773910164833,0.11273281276226],[-0.0024495769757777,-0.042723283171654,0.010729122906923],[-0.084786750376225,-0.022170709446073,0.04169213399291]],[[0.012995501980186,0.10159296542406,0.04038443416357],[0.069384023547173,0.098452545702457,-0.037629745900631],[-0.11269804090261,0.12573041021824,0.034475475549698]],[[-0.074477031826973,-0.081646032631397,0.024830577895045],[0.12182348966599,0.10759846121073,0.10268551111221],[0.066535152494907,-0.030213402584195,-0.012936799786985]],[[0.036733716726303,0.076616302132607,0.041906103491783],[-0.065393500030041,0.055711459368467,0.26723510026932],[0.049801807850599,0.054602399468422,-0.054162997752428]],[[-0.082861892879009,-0.15607240796089,-0.086502194404602],[0.20639838278294,0.15422143042088,-0.11474598199129],[-0.17852975428104,-0.18176874518394,-0.039592988789082]],[[-0.042292557656765,-0.019126206636429,-0.025004411116242],[-0.020916795358062,0.076313532888889,-0.02031166665256],[0.043649692088366,-0.20727935433388,-0.13406957685947]],[[-0.070593513548374,0.057314049452543,-0.013814534060657],[0.096371918916702,0.014793615788221,-0.027909507974982],[0.056514043360949,0.11237221956253,0.13523635268211]],[[-0.040143936872482,0.018773375079036,-0.040914259850979],[0.16838225722313,0.042091097682714,-0.019068608060479],[0.060202423483133,0.1044958755374,0.14786878228188]],[[-0.07515736669302,0.0027261483483016,-0.11118193715811],[-0.12992325425148,0.10562171041965,-0.2192716896534],[0.017929105088115,0.040777575224638,-0.037262920290232]],[[0.035799492150545,0.0080262487754226,-0.017389683052897],[-0.020732171833515,-0.052981749176979,-0.03638456389308],[0.022566528990865,0.028402164578438,0.072060845792294]],[[-0.088106013834476,-0.1174003854394,-0.014808714389801],[0.011658053845167,0.015343164093792,-0.025291364639997],[0.063096016645432,-0.04273796081543,0.019188629463315]],[[0.025196667760611,0.034955766052008,-0.10507345944643],[-0.039400804787874,-0.14549849927425,-0.010160781443119],[-0.019838642328978,0.044544477015734,0.015287447720766]],[[-0.12154863029718,-0.013127572834492,-0.0038963456172496],[-0.055091641843319,0.052920591086149,0.0084779728204012],[-0.11770759522915,-0.027994522824883,-0.075956590473652]],[[-0.024781106039882,-0.066369421780109,-0.046988774091005],[0.008975806646049,0.056092843413353,0.11088710278273],[-0.019593698903918,0.032789118587971,-0.07133112102747]],[[-0.053402584046125,-0.089980967342854,-0.046679001301527],[-0.024084454402328,-0.019878394901752,0.047410763800144],[0.014551483094692,0.04923228546977,0.035583768039942]],[[0.024066949263215,-0.053398717194796,0.027224209159613],[-0.017742646858096,-0.044130500406027,0.040660120546818],[0.033549249172211,-0.038598049432039,-0.049953259527683]],[[0.075915932655334,-0.11615508794785,-0.035074520856142],[0.13640250265598,-0.032939065247774,-0.042165622115135],[0.052236050367355,-0.057064671069384,-0.09756064414978]],[[0.026097631081939,-0.023715630173683,0.09457428753376],[-0.049808949232101,-0.029279518872499,-0.018245270475745],[-0.0045548821799457,-0.091473832726479,-0.080980025231838]],[[-0.087358146905899,-0.01067640632391,-0.028576826676726],[0.029199520125985,-0.095112234354019,0.00077490886906162],[-0.029269766062498,-0.014907649718225,0.036245580762625]],[[0.075156711041927,-0.032649803906679,0.05435735732317],[-0.12103261053562,0.029245676472783,0.16877630352974],[-0.054376143962145,-0.14388306438923,-0.1105647161603]],[[-0.05653129145503,-0.040065199136734,-0.13384585082531],[0.04618039354682,-0.0088201798498631,-0.11274904757738],[0.096017822623253,-0.022624982520938,0.067433170974255]],[[0.051784764975309,-0.082078129053116,-0.032909911125898],[0.25287976861,0.17931331694126,0.19407126307487],[-0.065948829054832,-0.11271954327822,-0.023101521655917]],[[-0.0089318640530109,-0.068242892622948,0.028406174853444],[-0.011461564339697,0.014702544547617,0.22281733155251],[0.008039272390306,-0.057899873703718,0.053939748555422]],[[-0.047295957803726,-0.087824702262878,-0.11134940385818],[-0.023957030847669,-0.13636121153831,-0.19458608329296],[0.015759769827127,0.17267286777496,0.13380055129528]],[[0.043411135673523,0.07400219887495,-0.0097532020881772],[-0.095435343682766,-0.0017762773204595,-0.15634196996689],[0.047030434012413,-0.12717238068581,0.023042114451528]],[[0.048453584313393,0.036220479756594,-0.018690085038543],[-0.019296053797007,-0.11778555065393,-0.051539070904255],[-0.07447961717844,0.033755023032427,0.082678645849228]],[[-0.046375688165426,-0.068269155919552,-0.023699743673205],[-0.11379777640104,-0.052633006125689,0.041031312197447],[-0.016601327806711,-0.01989983394742,0.019497837871313]],[[-0.035655084997416,-0.022709771990776,-0.027550583705306],[-0.075989089906216,0.017354786396027,-0.080943912267685],[-0.050137162208557,-0.13726231455803,-0.020781151950359]],[[-0.0998545140028,0.015808345749974,0.0442687086761],[-0.061528354883194,0.06467816978693,-0.084537915885448],[0.083660751581192,0.1122861802578,-0.009613280184567]],[[0.12258572876453,0.059508722275496,0.020970124751329],[-0.088014237582684,-0.028763186186552,0.048062983900309],[0.041406825184822,-0.052017003297806,0.042810682207346]],[[0.054525654762983,0.056912034749985,0.0096862195059657],[-0.036650374531746,0.007479231338948,-0.023823888972402],[0.051466707140207,0.00020688996301033,-0.07130504399538]],[[-0.060910541564226,-0.062368776649237,-0.11582667380571],[-0.023347167298198,-0.038156691938639,0.032106224447489],[0.053597193211317,0.038836888968945,0.10838109254837]],[[0.078566081821918,0.048052776604891,0.069157339632511],[0.042155537754297,-0.081292077898979,-0.050904881209135],[0.22261871397495,-0.040498323738575,-0.12069829553366]],[[0.058036290109158,0.071004204452038,0.021488906815648],[-0.023706909269094,-0.018887596204877,0.0080844592303038],[0.0063706361688673,-0.13202714920044,0.030949046835303]],[[0.089075073599815,-0.02065865881741,-0.022839512676001],[0.043828949332237,-0.0076002036221325,0.041677568107843],[-0.03777165338397,-0.026997150853276,0.0072644497267902]],[[0.035755515098572,0.068993620574474,-0.026401439681649],[-0.030362315475941,-0.076085932552814,-0.084334783256054],[0.012336472980678,-0.063263662159443,-0.064825847744942]],[[0.033795595169067,0.0060626599006355,0.043461013585329],[0.030120654031634,-0.089815989136696,-0.088923029601574],[0.0015605326043442,-0.065502882003784,-0.13962338864803]],[[0.00634890422225,0.012179077602923,-0.063301980495453],[0.049419429153204,-0.057871628552675,-0.0032322849147022],[0.011808813549578,0.013775343075395,-0.054548356682062]],[[0.012822279706597,0.034628294408321,-0.050606213510036],[-0.053879037499428,0.013279265724123,-0.15030036866665],[-0.11511114984751,-0.0053484193049371,0.043721668422222]],[[0.058572243899107,0.055924735963345,0.084435947239399],[-0.016645954921842,-0.032635614275932,-0.045526005327702],[-0.090869724750519,0.038309145718813,0.10734057426453]],[[-0.083798781037331,0.024147275835276,0.016117250546813],[0.043922942131758,-0.049341268837452,-0.006394614931196],[-0.0057280394248664,0.042619861662388,0.072630733251572]],[[-0.13798981904984,-0.023618575185537,-0.055074289441109],[-0.051340062171221,-0.020676465705037,0.013455213978887],[-0.012458376586437,0.050951156765223,0.043382946401834]],[[-0.084253385663033,-0.078375652432442,-0.29331058263779],[-0.055015947669744,-0.15547430515289,0.13202902674675],[-0.10723220556974,0.011080608703196,-0.042912915349007]],[[-0.065351635217667,-0.069616451859474,-0.0060523650608957],[-0.016830136999488,-0.099689319729805,-0.11106012761593],[0.075373366475105,0.14089596271515,0.10176082700491]],[[-0.17936912178993,-0.018985327333212,-0.047362700104713],[-0.130526304245,0.11554373800755,-0.042525567114353],[0.035422623157501,-0.0036688135005534,0.012136415578425]],[[0.006674240808934,-0.040325272828341,0.046398647129536],[-0.10900474339724,0.010673493146896,-0.15790230035782],[0.088809154927731,0.082341872155666,-0.052822083234787]],[[-0.071650698781013,-0.033235818147659,-0.090230047702789],[0.00018946637283079,-0.045204523950815,-0.0053164218552411],[-0.032352175563574,0.032843001186848,-0.0045456918887794]],[[-0.21366068720818,-0.018562769517303,0.10179165750742],[-0.14999336004257,-0.050418604165316,-0.10415450483561],[-0.038200072944164,-0.0016054636798799,0.020819816738367]],[[-0.092416651546955,-0.003182431217283,0.12978114187717],[0.09548994153738,-0.020082479342818,0.11307884007692],[-0.022472577169538,-0.059030119329691,-0.028172036632895]],[[-0.044934879988432,-0.051667857915163,0.035960994660854],[0.17553219199181,0.099080942571163,-0.078099317848682],[-0.15551018714905,-0.01364247687161,-0.096435986459255]],[[0.01005152054131,0.0034128606785089,0.15757863223553],[-0.05586015060544,-0.12360879778862,-0.019758090376854],[0.035811435431242,-0.067114152014256,-0.091289207339287]],[[-0.083511359989643,-0.12481579184532,0.027265908196568],[0.033909648656845,-0.04372725263238,-0.10579404979944],[0.087216183543205,0.063010856509209,0.062421374022961]],[[-0.011065248399973,0.019944464787841,0.088870942592621],[0.14909607172012,0.044815365225077,0.15313740074635],[0.095353305339813,-0.12929405272007,-0.16878642141819]],[[0.069810248911381,0.066453047096729,-0.11950666457415],[-0.014054927043617,0.040869846940041,0.048706740140915],[0.030712319537997,0.10796228051186,0.038736261427402]],[[0.020141802728176,-0.087794743478298,-0.18740662932396],[-0.012822532095015,-0.070038914680481,-0.088692180812359],[-0.064380496740341,0.037807945162058,0.032737735658884]],[[0.026692507788539,-0.0022167935967445,-0.026434069499373],[-0.0050287870690227,0.063758991658688,0.063037045300007],[-0.059069309383631,-0.10453616082668,0.0044472105801105]],[[-0.07876630872488,-0.0013759755529463,0.052230149507523],[-0.00071418093284592,0.14290682971478,0.16821978986263],[-0.010059813037515,0.027693631127477,0.039746459573507]],[[-0.13427165150642,-0.13670901954174,-0.047059569507837],[-0.020115152001381,-0.014423428103328,-0.039974268525839],[-0.071558333933353,0.13230808079243,0.1835573464632]],[[0.074247509241104,-0.13145296275616,0.0065344539470971],[0.026419831439853,-0.012152012437582,-0.065214544534683],[0.037955746054649,-0.059902481734753,0.10200268775225]],[[-0.055142868310213,-0.045674663037062,-0.051517907530069],[0.023157751187682,0.062908411026001,-0.038843762129545],[0.089963398873806,0.0082198353484273,-0.032655984163284]],[[-0.11179325729609,-0.053178567439318,-0.12392719089985],[0.024867083877325,0.10665334761143,0.15336088836193],[-0.096515685319901,-0.05635192245245,0.079169735312462]],[[-0.058502208441496,0.041561130434275,0.036088701337576],[0.094438627362251,-0.024341013282537,-0.060029588639736],[-0.022264458239079,0.0048800818622112,-0.13961933553219]],[[0.044062867760658,0.050956342369318,0.053002685308456],[-0.16050137579441,-0.014214660041034,-0.039378389716148],[-0.056000728160143,-0.15663236379623,-0.10101272910833]],[[0.11201591789722,0.055937387049198,0.01048875413835],[0.0032487106509507,0.010672741569579,-0.10626276582479],[0.049158934503794,-0.02751780860126,-0.015937376767397]],[[0.14129117131233,-0.10985933244228,0.0038407621905208],[-0.0096668489277363,-0.024152953177691,0.0057902331463993],[0.025051549077034,-0.075716271996498,0.14591360092163]],[[0.11641470342875,-0.020892530679703,-0.10483992099762],[-0.097666293382645,-0.047221839427948,-0.11500103771687],[0.055902633816004,0.12729249894619,0.15948411822319]],[[0.01723125576973,-0.042047243565321,-0.019999876618385],[0.031627401709557,-0.051594454795122,-0.18478482961655],[0.17759491503239,0.02734993211925,0.093090273439884]],[[-0.11406745761633,-0.044299446046352,-0.13017563521862],[0.025472795590758,0.053541589528322,-0.077959224581718],[0.16140861809254,0.21388599276543,0.26332256197929]],[[0.068253375589848,-0.039641801267862,-0.11434696614742],[0.11854419857264,-0.052859354764223,-0.11030641198158],[0.041578143835068,-0.038204837590456,-0.081766568124294]],[[-0.17119033634663,-0.0848558396101,-0.068409152328968],[0.047485541552305,0.071706004440784,0.04265046864748],[-0.023853113874793,-0.077458254992962,-0.026413494721055]],[[0.010765110142529,-0.071499891579151,0.064017780125141],[0.035585183650255,-0.023785268887877,-0.066037356853485],[-0.029452642425895,0.0049368110485375,-0.071981526911259]],[[-0.0024952017702162,0.012217881157994,-0.020574351772666],[0.074720203876495,-0.04945470765233,-0.0033151074312627],[0.02638585306704,0.020036537200212,-0.014410808682442]],[[-0.013855089433491,-0.15682969987392,-0.051780816167593],[0.058419641107321,0.0012971865944564,0.15557692945004],[0.14845255017281,0.082369402050972,0.11783330887556]],[[-0.065455354750156,0.015083978883922,-0.059213675558567],[-0.10968559980392,-0.032010648399591,-0.031785633414984],[0.025855973362923,0.034931920468807,0.091103330254555]],[[0.030684744939208,-0.057638987898827,-0.0214016251266],[0.046628143638372,0.11114744842052,0.19370974600315],[0.099796995520592,0.1510506272316,0.060515698045492]],[[-0.050964653491974,-0.052724856883287,-0.032366804778576],[0.046360023319721,0.027745364233851,-0.042062915861607],[-0.065330013632774,-0.0073285414837301,0.022217569872737]],[[-0.008453774265945,0.016099018976092,0.066223330795765],[-0.012072741985321,0.040987357497215,0.080769047141075],[-0.0079482588917017,-0.025348218157887,0.021680265665054]],[[0.069565385580063,-0.016591107472777,-0.0030525589827448],[-0.12182878702879,-0.11194591969252,0.0014208941720426],[-0.052538186311722,0.011844164691865,-0.032991912215948]],[[-0.031726591289043,-0.065498925745487,0.090647220611572],[-0.08490976691246,-0.06368312984705,-0.025545531883836],[0.061753302812576,0.10759814083576,-0.055144872516394]],[[-0.030788717791438,-0.10945648699999,0.023162022233009],[0.10093890875578,0.020259544253349,-0.055291425436735],[0.075451456010342,0.02598319388926,-0.070551633834839]],[[0.0024798654485494,-0.029971841722727,-0.090579263865948],[0.038586370646954,-0.037220884114504,0.028846429660916],[0.067691892385483,0.030699798837304,-0.0060890344902873]],[[0.11851562559605,0.033375862985849,-0.046580612659454],[0.28264084458351,0.068953357636929,-0.061853110790253],[-0.054296486079693,-0.042792525142431,-0.018708921968937]],[[0.045290574431419,-0.012270139530301,0.042557053267956],[0.029229687526822,0.0038858340121806,-0.10060030221939],[-0.0045490004122257,-0.024975320324302,-0.024934640154243]],[[-0.042492359876633,-0.032004911452532,0.041729018092155],[0.11975309252739,-0.010578528046608,-0.057949081063271],[0.053006500005722,-0.10969571024179,-0.062647059559822]],[[-0.051676392555237,0.0055757299996912,0.013533205725253],[-0.047972526401281,-0.093605920672417,-0.020950092002749],[0.31090068817139,-0.031504634767771,-0.085630364716053]],[[-0.082802996039391,-0.10855683684349,-0.036993101239204],[-0.026463899761438,-0.060950018465519,-0.037613570690155],[0.019812554121017,0.16560412943363,0.22325806319714]],[[-0.042233139276505,-0.041694026440382,0.09452810883522],[-0.018743662163615,-0.023918781429529,-0.088740214705467],[0.03843916580081,0.030412139371037,0.14876639842987]],[[0.025396404787898,-0.014454126358032,-0.072172701358795],[-0.029287094250321,0.089089579880238,-0.067966409027576],[0.0035341673064977,0.12558279931545,0.093626581132412]],[[-0.0037906891666353,0.11734331399202,-0.0032377680763602],[0.014431556686759,0.037133269011974,-0.078334711492062],[-0.089653126895428,-0.09674384444952,-0.090585649013519]],[[-0.021198624745011,0.039362315088511,-0.045895766466856],[-0.044117450714111,-0.072587318718433,-0.030255381017923],[0.049561239778996,0.015312636271119,0.00082587794167921]],[[0.2357884645462,0.011847820132971,-0.024298205971718],[0.17937183380127,-0.018097018823028,-0.019654894247651],[-0.1082076728344,-0.049256842583418,-0.026597332209349]],[[0.022213973104954,-0.0041744569316506,-0.047109331935644],[-0.052797764539719,-0.032416637986898,-0.03152371942997],[-0.049123588949442,0.15375569462776,-0.10830161720514]],[[0.081018313765526,0.087080053985119,0.055195782333612],[0.039019253104925,0.25755017995834,0.12326653301716],[-0.05565383285284,-0.018067156895995,-0.1717407554388]],[[-0.16836413741112,-0.05146250128746,-0.11532747745514],[-0.057562783360481,-0.051497273147106,-0.1675331890583],[-0.096314266324043,0.10115487128496,-0.060692980885506]]],[[[0.040438685566187,0.086416505277157,0.07262510061264],[0.049955978989601,-0.0628722012043,-0.028456285595894],[0.0030354438349605,-0.0094741079956293,0.07386189699173]],[[0.07010468095541,0.1451056599617,0.12203569710255],[-0.073537416756153,-0.0079498961567879,0.057186063379049],[-0.12020696699619,-0.039406932890415,0.072059378027916]],[[0.035269573330879,0.1152832582593,0.11861126124859],[0.099467501044273,-0.0038680923171341,-0.0096606155857444],[0.055300861597061,0.076056554913521,0.09343346953392]],[[0.054797485470772,-0.020271761342883,-0.01322215795517],[0.049792021512985,0.022015165537596,0.061570435762405],[0.012589524500072,-0.0068915542215109,0.0011964651057497]],[[-0.15223759412766,0.088443428277969,0.00098124344367534],[0.04891674220562,-0.030522083863616,0.0095427511259913],[-0.14709806442261,-0.010490064509213,0.16136860847473]],[[-0.0045385747216642,0.16256611049175,0.049608685076237],[-0.005122097209096,-0.18822430074215,-0.17145346105099],[-0.086641125380993,-0.023144863545895,0.0039669186808169]],[[0.15268479287624,0.17533776164055,0.091781951487064],[0.0028908534441143,0.02559806779027,-0.096390463411808],[-0.15285368263721,-0.1099361255765,0.053417392075062]],[[0.012081574648619,-0.032020390033722,-0.04120858758688],[0.19645331799984,-0.10535897314548,-0.022600760683417],[0.058817699551582,0.0083463788032532,0.12986919283867]],[[-0.072523735463619,-0.13255453109741,0.045484349131584],[0.078590378165245,0.16373614966869,0.14038994908333],[0.14665092527866,0.12680384516716,0.12482339143753]],[[-0.0096420450136065,-0.12999105453491,0.10019166767597],[0.080594040453434,-0.092689722776413,-0.033051185309887],[0.016381835564971,0.094131343066692,-0.039566077291965]],[[-0.015420783311129,-0.091984674334526,0.011026105843484],[-0.15712293982506,-0.021544262766838,0.030139923095703],[-0.092804469168186,0.090623416006565,-0.13990832865238]],[[-0.19376230239868,-0.056897964328527,-0.019220825284719],[0.0565648637712,0.14340604841709,-0.087003953754902],[-0.068133741617203,0.036470130085945,-0.038738664239645]],[[-0.028051434084773,-0.058470722287893,0.071280166506767],[-0.12172081321478,-0.014626716263592,-0.093106836080551],[0.033607918769121,0.054361026734114,0.11897134035826]],[[-0.039016980677843,0.043714795261621,-0.11155427992344],[0.090038917958736,0.017622077837586,0.087690122425556],[-0.11789195239544,-0.056958053261042,0.063434451818466]],[[-0.06010452285409,-0.033352300524712,-0.057276751846075],[-0.018672024831176,-0.039058655500412,-0.0097409784793854],[-0.17196153104305,0.045307978987694,0.043089456856251]],[[-0.033097628504038,-0.011599496006966,-0.051472011953592],[-0.010534052737057,-0.094810180366039,-0.18170031905174],[0.10302016884089,0.078165046870708,-0.087066359817982]],[[-0.080057621002197,-0.059581734240055,-0.13471874594688],[0.037950649857521,0.017805125564337,-0.044430378824472],[0.036817591637373,-0.098203599452972,-0.17801868915558]],[[-0.060980167239904,0.091246157884598,0.032185796648264],[-0.001689319498837,0.017082961276174,0.10040140897036],[-0.025023384019732,0.059318799525499,-0.037015527486801]],[[-0.032499391585588,-0.07588753849268,0.0046310196630657],[0.061423245817423,-0.027574561536312,-0.0081421872600913],[0.013073396869004,0.044750973582268,0.071903504431248]],[[-0.019137278199196,-0.054564535617828,-0.063416995108128],[0.070234946906567,0.016320988535881,-0.063300549983978],[-0.031718745827675,0.063377216458321,0.16657263040543]],[[0.025476695969701,0.011034300550818,-0.01306801661849],[-0.0025167618878186,-0.08162335306406,-0.10337446630001],[-0.082938529551029,-0.16405045986176,-0.012026078999043]],[[0.050306767225266,-0.014272751286626,0.042747717350721],[0.025817988440394,-0.040276002138853,-0.06246304884553],[0.0010845225770026,0.016010483726859,-0.043782707303762]],[[0.08945194631815,-0.0055295499041677,0.0011086296290159],[-0.047811433672905,0.00039237673627213,0.064606331288815],[-0.12116497755051,-0.0056063034571707,0.066002383828163]],[[-0.049465704709291,-0.075112447142601,-0.12341812252998],[0.054463367909193,-0.04291107878089,-0.011605899780989],[-0.11460815370083,-0.081487737596035,0.042746338993311]],[[-0.035825040191412,-0.12073384970427,0.10585160553455],[0.12305062264204,-0.06712681800127,0.12814472615719],[-0.12907557189465,0.00059160456294194,0.040014948695898]],[[0.15298196673393,-0.1127105653286,-0.037391819059849],[0.10675832629204,0.025334136560559,-0.11084040999413],[0.098068416118622,0.061873860657215,-0.10903358459473]],[[0.077245242893696,-0.038200620561838,-0.06495213508606],[-0.035676803439856,0.075615882873535,-0.011318052187562],[-0.010182270780206,0.20993928611279,-0.014479015953839]],[[0.07137344032526,0.023298854008317,0.01328135933727],[-0.10574757307768,-0.083750136196613,-0.093163371086121],[0.088642574846745,0.037141002714634,0.028785850852728]],[[-0.10197580605745,-0.099250979721546,-0.11341784149408],[-0.030427733436227,-0.10379172116518,-0.20814177393913],[-0.17343474924564,-0.032235253602266,-0.13067285716534]],[[0.017773669213057,-0.097304694354534,-0.12861326336861],[0.0075408136472106,0.058221448212862,-0.033068224787712],[0.097138866782188,0.057721503078938,0.03983785957098]],[[0.14836658537388,-0.0044623613357544,0.0040543940849602],[0.023166811093688,0.088059358298779,0.014054553583264],[0.091841638088226,0.096593007445335,-0.065063208341599]],[[-0.036051340401173,0.038023982197046,0.10090756416321],[-0.059776090085506,-0.072808109223843,-0.0603540353477],[-0.01836609095335,0.056404732167721,0.16574689745903]],[[-0.034453902393579,0.028607172891498,0.041751313954592],[0.00099656241945922,-0.065641783177853,-0.19779522716999],[-0.061357848346233,-0.0020415673498064,-0.0011072661727667]],[[-0.042523492127657,-0.020560132339597,0.0087117068469524],[-0.011132273823023,0.052795015275478,-0.11394526064396],[-0.073282703757286,-0.045590627938509,-0.015897816047072]],[[-0.023528259247541,-0.0039996923878789,-0.052926652133465],[-0.007630574516952,-0.075298279523849,-0.14180485904217],[-0.068177595734596,-0.093438260257244,0.020300613716245]],[[-0.019426004961133,0.0067435284145176,0.13764005899429],[0.045818034559488,0.13524234294891,0.0093835610896349],[-0.038922876119614,-0.08123854547739,0.062608815729618]],[[-0.017156571149826,-0.026235712692142,-0.032260198146105],[-0.034793015569448,-0.0092884264886379,0.10948570817709],[-0.048101484775543,-0.057004433125257,-0.18344888091087]],[[-0.049201983958483,-0.08098492026329,0.00011795591854025],[0.035035483539104,-0.12206445634365,0.033712737262249],[-0.014137137681246,-0.010826875455678,0.10224042832851]],[[-0.023932242766023,-0.041803177446127,0.018520936369896],[-0.20403125882149,-0.10738109797239,-0.0048945690505207],[-0.083061799407005,-0.11050254106522,-0.096968226134777]],[[-0.12429873645306,-0.06446997821331,-0.000827846233733],[0.084738478064537,0.018319305032492,-0.14664888381958],[0.033203881233931,-0.028144352138042,-0.021207936108112]],[[-0.060863792896271,-0.079745054244995,0.10117974132299],[-0.018802369013429,0.01606385409832,0.021130951121449],[0.038304544985294,0.056975059211254,0.043325524777174]],[[0.013202315196395,-0.022417332977057,0.096824251115322],[-0.0063099386170506,0.0067727700807154,-0.015917833894491],[-0.030423898249865,-0.0067879632115364,-0.09012345969677]],[[-0.039235286414623,-0.033508993685246,-0.030825916677713],[0.031054101884365,-0.00031688259332441,-0.053539093583822],[-0.017469985410571,-0.089144617319107,-0.077169485390186]],[[-0.0063644219189882,0.022021999582648,0.04862305149436],[0.077857322990894,0.035202633589506,-0.020453989505768],[0.025112487375736,0.043558333069086,-0.022939890623093]],[[-0.031959287822247,0.037112917751074,0.015676712617278],[0.1423991471529,0.15518763661385,0.15226879715919],[-0.0025907859671861,-0.012754863128066,-0.0035579251125455]],[[-0.0098016178235412,-0.029234098270535,-0.13893492519855],[0.084710255265236,0.092819474637508,0.033760588616133],[-0.064101532101631,0.033490754663944,-0.055009488016367]],[[0.04752392321825,0.14197362959385,0.19832636415958],[-0.0047163176350296,0.14915907382965,0.13355092704296],[0.073330201208591,0.12840536236763,-0.062943652272224]],[[-0.086266964673996,0.10957902669907,0.21546645462513],[0.11601906269789,0.15345230698586,0.12355022132397],[0.16038145124912,0.12710422277451,0.048100341111422]],[[-0.0078617092221975,0.0031299411784858,-0.080719441175461],[-0.011869582347572,0.029087180271745,-0.057936027646065],[-0.012989712879062,-0.049696367233992,0.07323307543993]],[[0.00475456379354,0.085421420633793,-0.06016980856657],[-0.099234215915203,-0.0073311603628099,-0.054321218281984],[-0.023653250187635,-0.040676813572645,0.10264502465725]],[[-0.053561847656965,-0.092945344746113,-0.059626266360283],[0.077948711812496,-0.10514806210995,0.016872331500053],[-0.055426266044378,-0.081232160329819,0.11356132477522]],[[-0.067212298512459,-0.065423734486103,-0.00051572959637269],[-0.032911695539951,-0.025182075798512,-0.019363019615412],[-0.0056277411058545,0.029919877648354,0.058481015264988]],[[-0.0030246942769736,0.056093811988831,0.0034844630863518],[0.046250332146883,0.05836396291852,-0.020713154226542],[-0.021467357873917,-0.052179735153913,0.023687954992056]],[[-0.023042345419526,-0.038755223155022,-0.057352785021067],[-0.013015924021602,-0.043048109859228,-0.0077649299055338],[-0.050705663859844,-0.013335117138922,-0.024870179593563]],[[0.12460857629776,0.18118363618851,0.047978851944208],[-0.0046898941509426,-0.005482907872647,-0.0046595307067037],[0.012657349929214,-0.010985320433974,-0.21181945502758]],[[0.013179588131607,-0.065606825053692,-0.0054057165980339],[-0.018087185919285,0.049222685396671,0.0080028604716063],[0.086077265441418,0.14705714583397,0.07032598555088]],[[-0.124436609447,0.036483380943537,0.062555365264416],[0.065712928771973,0.00379669200629,0.10752443224192],[-0.17574845254421,-0.036306742578745,0.0035742362961173]],[[-0.064093247056007,0.00044412189163268,-0.066752813756466],[-0.029498247429729,0.075303956866264,-0.054550498723984],[-0.077931113541126,-0.090340495109558,0.12928658723831]],[[0.02880541048944,-0.050200924277306,0.082224518060684],[0.018346222117543,-0.043109375983477,-0.049539484083652],[-0.19836470484734,-0.059086658060551,-0.089845806360245]],[[0.020007507875562,0.025267856195569,-0.011241711676121],[0.031109493225813,-0.032502189278603,0.024509990587831],[0.062298253178596,0.15526258945465,0.057522732764482]],[[-0.04108502343297,-0.035210222005844,-0.025005739182234],[-0.082426212728024,0.014410860836506,-0.06825352460146],[-0.048689104616642,-0.014224845916033,-0.074761182069778]],[[0.02016026340425,0.18890415132046,0.012413853779435],[-0.014337016269565,0.025498067960143,-0.10928235948086],[-0.047474984079599,0.032272908836603,0.066580377519131]],[[0.0084705129265785,-0.023326871916652,0.0074360547587276],[-0.090993069112301,-0.050537053495646,0.0046917381696403],[0.0093809654936194,-0.059079512953758,-0.0060214935801923]],[[0.076150096952915,0.0523900128901,-0.0095969522371888],[-0.099379405379295,0.030955268070102,-0.053620275110006],[-0.059096340090036,-0.080408677458763,-0.054711163043976]],[[0.030263680964708,0.004684439394623,0.11046984791756],[0.031720612198114,0.0034303641878068,-0.12010932713747],[-0.022144891321659,-0.070984497666359,-0.12237310409546]],[[0.044325336813927,-0.071415327489376,0.11371178179979],[0.13215844333172,0.040794499218464,-0.0053594298660755],[0.069229185581207,0.047101721167564,-0.047122109681368]],[[0.04328977316618,-0.01387220621109,-0.035630013793707],[0.025647800415754,-0.066228859126568,-0.11819646507502],[0.056221727281809,-0.0018097425345331,0.090843051671982]],[[-0.013582003302872,-0.0048165870830417,-0.042371675372124],[-0.033176209777594,0.0515031889081,-0.0055487207137048],[-0.077900461852551,-0.0005660277674906,-0.049355570226908]],[[-0.014911117963493,-0.033176574856043,-0.025042915716767],[0.01011308748275,-0.087323352694511,-0.04977572709322],[-0.025799311697483,0.020052453503013,0.063483454287052]],[[0.065203368663788,-0.052429389208555,0.10337891429663],[0.05686604231596,-0.12852634489536,0.050974559038877],[0.040171522647142,-0.0081484727561474,-0.012639679014683]],[[-0.0028436512220651,0.0062515093013644,0.020949073135853],[0.052893217653036,0.020376903936267,-0.033914882689714],[0.087826274335384,0.0072884880937636,0.10045911371708]],[[-0.050247069448233,-0.15442188084126,-0.086438998579979],[0.12602885067463,0.10120625793934,-0.10581665486097],[0.0862100943923,-0.087399989366531,-0.017307821661234]],[[0.13495662808418,-0.051220458000898,-0.025437075644732],[-0.065121963620186,-0.048031207174063,0.014105282723904],[0.038921549916267,0.011350353248417,0.052672646939754]],[[-0.074802681803703,0.059837598353624,0.087106242775917],[0.029737545177341,-0.053994938731194,0.0030566395726055],[0.067483499646187,0.023968379944563,-0.016386978328228]],[[0.020581692457199,0.05599182471633,0.041202932596207],[-0.0080838995054364,-0.0035516696516424,-0.10206884890795],[-0.083503864705563,-0.11689952015877,-0.16241413354874]],[[-0.052376184612513,0.068877257406712,-0.045335344970226],[-0.059127744287252,0.0066171577200294,-0.020263073965907],[0.00934131257236,-0.056040786206722,0.071283951401711]],[[-0.10025786608458,-0.038635559380054,0.058185312896967],[-0.033748265355825,-0.011566792614758,0.10134270787239],[0.051101163029671,-0.079699344933033,-0.091481573879719]],[[0.0022345846518874,0.016688242554665,-0.041075449436903],[-0.083079136908054,-0.034332491457462,-0.015039489604533],[0.0085114128887653,-0.070103615522385,0.10366579890251]],[[-0.0097493482753634,-0.096203818917274,-0.078381687402725],[-0.17914833128452,-0.032690644264221,-0.059694986790419],[-0.041199054569006,0.03147741779685,0.0014413235476241]],[[-0.072734639048576,0.070484258234501,0.0066972742788494],[0.015545351430774,-0.088560499250889,-0.068959131836891],[0.078162327408791,-0.011399795301259,0.052681215107441]],[[-0.029926342889667,0.14437061548233,0.011248811148107],[-0.039315663278103,0.030530055984855,0.028523255139589],[-0.010118681937456,-0.05652754753828,0.039715025573969]],[[-0.0079962145537138,-0.058150250464678,0.073948003351688],[-0.026557110249996,-0.042976520955563,-0.087002456188202],[0.030028948560357,0.093850158154964,-0.0042087100446224]],[[0.042820896953344,0.044160146266222,0.047568462789059],[-0.030048614367843,-0.017949175089598,0.0060121300630271],[0.11203093081713,0.052476678043604,0.10857529938221]],[[0.17397853732109,0.016601290553808,0.055514242500067],[0.001088080345653,-0.041066877543926,-0.076565988361835],[-0.096839182078838,0.039198707789183,-0.018429713323712]],[[-0.10872555524111,-0.18318282067776,0.047024942934513],[0.023372745141387,0.18760015070438,0.13950099050999],[0.10292712599039,0.17221342027187,-0.054267957806587]],[[-0.1375303119421,0.0049965586513281,0.10702972114086],[0.093386009335518,0.071893461048603,-0.078341126441956],[-0.016575196757913,-0.06017142534256,-0.1138751283288]],[[0.0096024135127664,-0.021511316299438,0.0077066286467016],[-0.0028142107184976,0.01314193662256,0.016824560239911],[0.15164026618004,-0.12558034062386,0.18981136381626]],[[-0.028059154748917,-0.079638130962849,-0.00039492693031207],[0.087708659470081,0.035831145942211,-0.0012087182840332],[0.098847858607769,-0.040797337889671,-0.10699143260717]],[[0.067601047456264,0.15025237202644,0.0065211141481996],[-0.032939556986094,0.080228313803673,-0.0022189423907548],[0.013074513524771,0.0065844533964992,-0.068891324102879]],[[0.037761569023132,-0.0056032510474324,0.073812313377857],[0.079083599150181,-0.00012852151121479,-0.041212424635887],[-0.078973107039928,-0.13591974973679,-0.079808905720711]],[[-0.033073227852583,-0.065587975084782,0.037289559841156],[-0.044352166354656,-0.029742186889052,0.037047237157822],[0.11452497541904,-0.084661811590195,-0.014536429196596]],[[0.10892002284527,-0.062236815690994,-0.086046546697617],[0.031741660088301,0.04494459554553,-0.013620693236589],[0.018300604075193,-0.030569290742278,-0.12197618931532]],[[0.031363908201456,0.0087600201368332,0.033561021089554],[0.018252436071634,0.027334714308381,-0.04935697466135],[0.03933572396636,0.010975661687553,-0.029669651761651]],[[0.054888159036636,0.077430412173271,0.068210534751415],[0.021049225702882,-0.028628969565034,0.11443125456572],[-0.072666220366955,-0.02186750434339,0.10139358788729]],[[0.00065867562079802,-0.088674314320087,-0.026219071820378],[0.0090057086199522,0.061795249581337,0.074310153722763],[0.12914688885212,0.067987263202667,0.0032636527903378]],[[-0.057191733270884,-0.015751346945763,0.057400699704885],[-0.0055231917649508,0.018086850643158,0.019676564261317],[-0.16219690442085,0.086108818650246,0.050690308213234]],[[0.020402494817972,0.079548314213753,-0.046931628137827],[-0.12154464423656,-0.097902595996857,-0.034956723451614],[-0.023911837488413,-0.027810012921691,-0.10200761258602]],[[0.002404096769169,-0.082050234079361,0.11325993388891],[0.0060412497259676,-0.034198716282845,-0.070079647004604],[0.01997697353363,0.017543757334352,-0.00091663160128519]],[[0.09929558634758,-0.03212396800518,-0.0079521089792252],[0.0712905600667,-0.022405588999391,-0.028512723743916],[-0.016989605501294,-0.15044572949409,-0.079436495900154]],[[0.068590402603149,0.021977372467518,0.17114801704884],[0.093222267925739,0.19324621558189,0.27550947666168],[-0.022414289414883,0.019597142934799,0.089173808693886]],[[-0.10027226805687,-0.049981310963631,-0.02882887609303],[-0.00014819196076132,-0.073433078825474,-0.010483603924513],[0.10784178227186,0.097338639199734,-0.011908022686839]],[[-0.10974612832069,-0.077719390392303,0.01904233917594],[0.19322249293327,0.10915689915419,0.166528403759],[-0.0037971972487867,0.075598120689392,0.0037739323452115]],[[-0.068310938775539,-0.013069082051516,-0.048835135996342],[-0.088871337473392,-0.10180336982012,0.0021604329813272],[-0.043708320707083,0.031137943267822,0.023876735940576]],[[-0.0035901693627238,-0.15235111117363,-0.0047440747730434],[0.010190368629992,-0.15430435538292,-0.060855835676193],[-0.099725358188152,-0.11902451515198,-0.043144818395376]],[[0.081145450472832,-0.095294423401356,-0.16665199398994],[0.019258514046669,-0.056154422461987,-0.0056449803523719],[-0.064673528075218,0.010161780752242,0.018215326592326]],[[-0.01792710646987,0.02062770165503,0.031890615820885],[0.028125813230872,-0.10997761785984,-0.073238953948021],[0.058122612535954,0.039233881980181,0.079094395041466]],[[-0.021299738436937,-0.056634318083525,-0.047321226447821],[-0.058940730988979,-0.02237112633884,-0.0050474447198212],[-0.0010401501785964,0.10448986291885,0.1793926358223]],[[-0.0637177079916,0.062962263822556,0.021783594042063],[-0.039560973644257,-0.082403421401978,-0.030388530343771],[-0.046044442802668,-0.017884202301502,0.10026276111603]],[[0.012934420257807,0.031047694385052,0.043461561203003],[0.0074542947113514,0.074343308806419,0.072216145694256],[-0.20277242362499,-0.18413154780865,-0.07559222728014]],[[-0.11180627346039,-0.010995950549841,0.1375630646944],[-0.037455283105373,-0.13815078139305,-0.039584908634424],[0.10390482097864,0.041300799697638,0.13218382000923]],[[-0.022958669811487,-0.028788777068257,0.068344689905643],[0.014271715655923,0.0013382423203439,0.032132424414158],[0.022187672555447,0.012030477635562,0.041053507477045]],[[0.0098392674699426,0.0058611598797143,-0.026421753689647],[-0.028055852279067,-0.028494441881776,0.11732129752636],[-0.071410953998566,-0.049880359321833,-0.075995251536369]],[[0.094864875078201,0.20621500909328,0.009673529304564],[0.14456795156002,0.082557022571564,0.043109610676765],[-0.08599765598774,-0.047264337539673,-0.033567480742931]],[[-0.01981164701283,0.061587926000357,-0.10149962455034],[0.055440407246351,0.062407366931438,0.094428785145283],[-0.11269802600145,0.0068913614377379,0.027160599827766]],[[0.014585935510695,0.10638599097729,-0.044470377266407],[-0.040540106594563,0.084135830402374,-0.05008989199996],[-0.0023471114691347,-0.008152836933732,-0.029966605827212]],[[0.049327973276377,0.012305348180234,0.067209668457508],[-0.095119841396809,0.1012124940753,0.19437648355961],[-0.047051258385181,-0.063557259738445,-0.10643257200718]],[[0.028422705829144,-0.0132379187271,-0.10212223231792],[-0.027371684089303,0.054219719022512,0.078799337148666],[-0.1344129294157,0.022960733622313,-0.0065686423331499]],[[-0.026349196210504,-0.0036507658660412,0.045997433364391],[0.058058891445398,0.025241352617741,-0.0275789629668],[0.023645110428333,-0.01909951120615,0.0012318709632382]],[[0.06028376147151,-0.044138859957457,-0.04160949587822],[0.03952906280756,-0.099977821111679,-0.13413497805595],[0.024794787168503,-0.015727957710624,-0.15781970322132]],[[-0.095672212541103,0.034882176667452,0.076482810080051],[-0.02562372200191,-0.013917373493314,-0.081902056932449],[0.016699030995369,-0.09620688855648,-0.12078870087862]],[[0.024681994691491,0.078785978257656,0.14029330015182],[0.081674225628376,-0.034825306385756,0.077381730079651],[0.085435502231121,0.018105451017618,-0.0096970312297344]],[[0.092443443834782,-0.054851599037647,0.0083165038377047],[-0.045696835964918,-0.039295747876167,0.056639447808266],[0.11234712600708,0.010167766362429,-0.027386272326112]],[[-0.035015717148781,-0.21759554743767,-0.096768870949745],[-0.14225323498249,-0.14288590848446,-0.190500035882],[-0.017536098137498,0.015167632140219,-0.039299011230469]],[[0.047845005989075,0.053060721606016,-0.027178285643458],[-0.081033706665039,0.0040316702798009,-0.019029067829251],[0.0085517317056656,-0.0062115020118654,-0.020929027348757]],[[-0.038681846112013,0.14203810691833,0.029665978625417],[-0.062613613903522,0.052450623363256,-0.053657792508602],[-0.0039600180462003,-0.10825960338116,0.026465093716979]],[[0.0097275134176016,0.019822711125016,0.02183118276298],[-0.018575273454189,0.0018712194869295,-0.046393323689699],[0.051188863813877,-0.11040224134922,-0.031896241009235]],[[-0.07615077495575,0.067655108869076,0.094075255095959],[-0.088065609335899,0.061823453754187,-0.10077315568924],[-0.10382417589426,0.039810128509998,0.078533224761486]],[[-0.054202400147915,-0.070719860494137,-0.063971385359764],[-0.063934229314327,-0.027207862585783,0.079075314104557],[0.030915690585971,-0.027523992583156,-0.016058720648289]]],[[[-0.029335685074329,0.034515712410212,-0.06877489387989],[0.014437671750784,0.029051104560494,0.12295355647802],[0.017225250601768,0.18659949302673,-0.096087835729122]],[[0.10964647680521,0.081837795674801,-0.079207621514797],[-0.015764130279422,0.10506148636341,-0.017047548666596],[-0.047586429864168,-0.067525260150433,0.012224617414176]],[[-0.12286034971476,0.080093093216419,-0.016217026859522],[-0.08822713047266,0.16332158446312,-0.010938478633761],[0.089264750480652,0.066347815096378,0.12088707089424]],[[-0.42874851822853,-0.019647929817438,0.06943354010582],[-0.079124785959721,-0.023943487554789,-0.2114665210247],[-0.13088412582874,-0.051869191229343,-0.10270418971777]],[[-0.037821870297194,0.0061145997606218,-0.034587830305099],[0.018596842885017,0.14001031219959,-0.16614782810211],[0.061659548431635,0.013566613197327,-0.14229425787926]],[[-0.020316137000918,-0.10459232330322,0.01266485452652],[-0.0060739424079657,0.06028963252902,0.075993023812771],[-0.0020232419483364,0.030852429568768,0.05369957536459]],[[0.045665591955185,0.11199050396681,0.019477417692542],[0.071341030299664,-0.1508751064539,0.02871829085052],[0.025331147015095,-0.052412200719118,0.097335882484913]],[[0.15017144382,-0.00084114848868921,0.053487159311771],[-0.021930051967502,0.046584192663431,0.026593711227179],[0.044970404356718,0.0049487836658955,-0.10581809282303]],[[-0.10922352224588,0.046988889575005,0.051084812730551],[-0.093518011271954,-0.053137458860874,0.035750154405832],[-0.075185351073742,-0.089829690754414,-0.13774316012859]],[[0.03103200532496,-0.10562529414892,0.020226802676916],[-0.01744269579649,-0.32812616229057,0.065643787384033],[-0.30467599630356,-0.17101934552193,0.082086466252804]],[[0.012532765977085,0.018131967633963,-0.070861250162125],[0.041038542985916,0.044429711997509,-0.075500771403313],[0.010164723731577,-0.0068734767846763,0.042093981057405]],[[-0.061395660042763,-0.26951590180397,-0.047032661736012],[-0.062088839709759,0.13921894133091,0.18713094294071],[-0.0020270503591746,-0.049474984407425,0.038542360067368]],[[-0.070088028907776,-0.090792141854763,-0.086217418313026],[-0.14648897945881,-0.099838018417358,-0.084187552332878],[-0.063940331339836,0.003504999447614,-0.030706519261003]],[[0.22224327921867,0.018512325361371,-0.0036763183306903],[0.022517079487443,0.019985031336546,-0.034074682742357],[0.096539333462715,0.18405398726463,0.1098640114069]],[[0.1058162972331,0.14374662935734,0.057416282594204],[-0.28172218799591,0.14438499510288,0.14924636483192],[-0.0017992937937379,0.068991057574749,0.29768601059914]],[[-0.029492473229766,0.032975994050503,0.046226069331169],[-0.060147684067488,0.052265226840973,0.03858045861125],[-0.034253600984812,0.090441726148129,-0.10044905543327]],[[0.065945468842983,0.0083820512518287,-0.11780913174152],[-0.044153951108456,0.12007768452168,-0.0017083556158468],[0.039331585168839,0.10166446119547,-0.034872278571129]],[[0.022853158414364,-0.031523663550615,0.11822444200516],[0.0058246445842087,0.0092965783551335,-0.083168894052505],[0.039990868419409,-0.010215525515378,-0.1337206363678]],[[0.0009976556757465,-0.012967985123396,0.17027258872986],[0.043303813785315,-0.13392278552055,0.021780280396342],[-0.13534384965897,-0.12760682404041,0.070421017706394]],[[0.034539338201284,-0.19028899073601,-0.067298218607903],[0.066465526819229,0.021471230313182,0.054798658937216],[-0.12168817967176,-0.06621976941824,-0.045412741601467]],[[-0.057067513465881,0.061161741614342,-0.10301244258881],[0.10292489826679,-0.059781912714243,-0.16801096498966],[-0.0091601414605975,-0.084236890077591,-0.16368770599365]],[[-0.085568852722645,0.069377034902573,0.08683592826128],[0.022665426135063,-0.11570020765066,0.015387350693345],[-0.047230541706085,-0.26245081424713,-0.10693027079105]],[[-0.05525366589427,0.12341165542603,-0.01103110704571],[0.034392226487398,0.027748193591833,0.069568999111652],[-0.20462834835052,-0.030720734968781,-0.14567555487156]],[[0.094501003623009,-0.1075529307127,-0.035747263580561],[-0.37287610769272,0.015315906144679,-0.16258178651333],[-0.14815239608288,0.0073525900952518,-0.02368644811213]],[[0.082558326423168,0.013331949710846,0.010085021145642],[-0.14255483448505,0.036111298948526,-0.045584846287966],[0.016868716105819,0.062496069818735,-0.08861393481493]],[[0.052432097494602,-0.094809360802174,-0.0030220788903534],[-0.076997563242912,-0.068630456924438,-0.0049802339635789],[-0.078334920108318,0.058779627084732,-0.10480739921331]],[[0.073548071086407,0.015633827075362,0.085175901651382],[0.16487880051136,0.028740614652634,-0.015829794108868],[0.21905748546124,-0.017341360449791,-0.12220130860806]],[[-0.061983231455088,0.1048004925251,0.12639738619328],[-0.12915661931038,0.066594831645489,-0.021983617916703],[-0.052197925746441,0.16422712802887,-0.032264970242977]],[[0.13162705302238,-0.079875819385052,-0.045154739171267],[0.0068320166319609,-0.17421643435955,0.0064311777241528],[-0.14838218688965,-0.063387528061867,0.03314771130681]],[[0.12871330976486,-0.023288331925869,0.066976100206375],[-0.092433616518974,0.035603743046522,-0.062488723546267],[-0.13977421820164,0.067668281495571,-0.017370611429214]],[[-0.11911052465439,-0.12900784611702,0.067754067480564],[-0.11517877131701,0.10021831840277,-0.029678361490369],[0.088163204491138,0.11365862935781,-0.0070351986214519]],[[-0.12720602750778,0.0069881877861917,0.057789124548435],[-0.11575192958117,0.073055788874626,-0.064432322978973],[0.093779243528843,0.046946723014116,-0.080987609922886]],[[0.044584166258574,-0.10238391906023,0.068808548152447],[0.10702076554298,-0.026363981887698,-0.010753485374153],[0.10534831881523,-0.084897488355637,-0.065498769283295]],[[-0.06558907777071,0.062593951821327,-0.029126832261682],[-0.019729744642973,0.11420779675245,-0.11883390694857],[-0.26002588868141,0.2460590749979,-0.081375785171986]],[[0.013551612384617,-0.069322600960732,0.023120906203985],[-0.0002451213367749,0.012647248804569,0.030441587790847],[-0.047058936208487,-0.02581874653697,0.00078909017611295]],[[0.15087859332561,0.011244861409068,-0.039211060851812],[0.13047677278519,0.033431954681873,-0.12552280724049],[0.27619004249573,-0.16024546325207,-0.10589870810509]],[[-0.12795680761337,-0.0096333744004369,-0.13516815006733],[-0.11560375243425,-0.04896342754364,0.18932923674583],[-0.10736456513405,0.11147689819336,0.14885364472866]],[[-0.034080237150192,-0.15364266932011,0.00228590820916],[-0.0081989578902721,-0.061046004295349,-0.078074440360069],[-0.053929507732391,-0.039048191159964,0.019620969891548]],[[0.015634406358004,0.097825013101101,0.035109914839268],[-0.076387390494347,-0.043835833668709,-0.011815235950053],[-0.098042987287045,0.00049118342576548,0.026858814060688]],[[-0.061771150678396,0.14325062930584,0.025913601741195],[-0.020094411447644,0.12688754498959,-0.083548091351986],[-0.21826495230198,0.092885673046112,-0.047779850661755]],[[-0.054446008056402,0.046470187604427,-0.036694940179586],[0.20016947388649,0.09887669980526,-0.054393406957388],[0.09368622303009,-0.13030667603016,-0.14874640107155]],[[-0.0055661629885435,0.14106456935406,-0.01242078281939],[0.043594967573881,0.055586878210306,0.064306810498238],[-0.0053468951955438,-0.02503720484674,-0.031010614708066]],[[0.022113926708698,-0.019448585808277,0.0090160295367241],[0.044206351041794,-0.011176290921867,-0.044075462967157],[0.12539114058018,-0.1026923879981,-0.24180433154106]],[[0.073079645633698,0.15572987496853,0.078750893473625],[0.10124496370554,-0.025931980460882,-0.11044110357761],[0.058055330067873,-0.20968960225582,-0.17242369055748]],[[-0.086081370711327,0.067804545164108,0.095173060894012],[0.2088810056448,0.11467517912388,0.19405317306519],[-0.0069124666042626,-0.044142633676529,-0.019423274323344]],[[-0.43794560432434,-0.057180669158697,0.13310493528843],[0.049790296703577,0.067151010036469,0.10031847655773],[-0.014882451854646,0.041046231985092,0.02800434269011]],[[0.12241118401289,0.16896325349808,-0.05379756167531],[0.051734536886215,0.014684963971376,-0.12178789824247],[-0.016434106975794,-0.055971123278141,-0.018783750012517]],[[-0.061651021242142,-0.062851510941982,-0.19092781841755],[0.0037674789782614,0.028705360367894,0.031962256878614],[0.16955353319645,-0.059469848871231,-0.051859375089407]],[[0.10485699027777,-0.12192863225937,-0.10056136548519],[0.0048303189687431,-0.082006961107254,-0.0096632586792111],[0.085667237639427,0.006710309535265,0.069195598363876]],[[0.097210988402367,-0.028521744534373,-0.018475212156773],[0.0061432463116944,-0.055921725928783,-0.12969137728214],[-0.10721293091774,0.075998961925507,-0.055096536874771]],[[0.029754925519228,-0.15359728038311,-0.078645765781403],[-0.062835805118084,-0.076685301959515,-0.0044882013462484],[-0.096525572240353,-0.02553660236299,0.085905849933624]],[[-0.040907353162766,-0.037521786987782,0.13220883905888],[-0.088369384407997,0.012589476071298,-0.0067949276417494],[-0.012150485999882,0.012455205433071,-0.098769016563892]],[[0.087682120501995,0.10965583473444,-0.039773873984814],[0.076123125851154,0.068929605185986,-0.074966408312321],[0.035529647022486,-0.048321265727282,-0.35476186871529]],[[0.068596892058849,0.00042252423008904,-0.29864618182182],[0.059891302138567,-0.13378366827965,-0.1920682489872],[0.037661883980036,0.01551063824445,0.034366521984339]],[[0.068030290305614,-0.10557749122381,0.0047911498695612],[0.0018356911605224,0.011320475488901,0.012787664309144],[-0.018756398931146,-0.064871892333031,-0.071401424705982]],[[0.0070811165496707,0.11915470659733,0.013414300046861],[0.11332924664021,0.071538105607033,-0.068468384444714],[0.026301274076104,-0.050781089812517,-0.053840961307287]],[[-0.23429988324642,0.067404113709927,0.098642684519291],[0.12786540389061,0.15061855316162,-0.020098628476262],[0.011500340886414,-0.26371505856514,-0.16449561715126]],[[-0.031829997897148,0.066602513194084,-0.04057714343071],[0.051155261695385,0.014179985038936,0.0070286206901073],[-0.06233024597168,-0.066511787474155,0.010214563459158]],[[0.024504220113158,-0.08517137914896,-0.070966936647892],[-0.013729712925851,-0.057178184390068,-0.042664896696806],[0.031292319297791,-0.064799420535564,-0.098758913576603]],[[-0.030368315055966,-0.024929068982601,0.11415310949087],[-0.076016888022423,-0.1045830398798,0.045537885278463],[0.056863464415073,0.12280263006687,0.085066586732864]],[[0.012416185811162,0.031148687005043,0.016777031123638],[-0.045596860349178,-0.039387356489897,-0.20682023465633],[-0.025342851877213,-0.17569889128208,-0.41653588414192]],[[0.054937839508057,0.090989321470261,-0.077420987188816],[0.066243246197701,0.038687851279974,-0.024111678823829],[0.027704147621989,-0.13616898655891,-0.053790956735611]],[[0.049709092825651,0.11721000820398,-0.0599644780159],[0.1354940533638,0.10918156057596,-0.040975738316774],[-0.039692338556051,0.017035225406289,0.084702461957932]],[[0.05395445972681,0.059076376259327,-0.099515080451965],[-0.067887306213379,0.11603542417288,0.081662110984325],[-0.043199490755796,0.086804077029228,-0.025501834228635]],[[0.20132987201214,-0.18623028695583,0.05523869022727],[-0.055375501513481,-0.068797148764133,0.064739666879177],[-0.016558609902859,-0.0036189574748278,0.13586683571339]],[[0.0039633088745177,-0.097685389220715,0.1749881953001],[-0.044372744858265,0.028370866551995,0.1314439624548],[-0.18620620667934,0.0064763901755214,-0.060639925301075]],[[0.24271070957184,0.047626990824938,-0.19639666378498],[-0.001374275656417,-0.023216899484396,-0.1714383661747],[0.10299483686686,-0.031196365132928,0.069349430501461]],[[0.019055342301726,-0.085920214653015,-0.051912236958742],[-0.15165154635906,-0.063712581992149,-0.070639476180077],[-0.02378972619772,-0.081211008131504,-0.1304045021534]],[[0.030295142903924,-0.0031654997728765,-0.11894427239895],[0.080022968351841,-0.056353762745857,0.070246666669846],[0.17866924405098,0.091443911194801,0.04756398499012]],[[0.0074591310694814,0.19744390249252,0.021962953731418],[-0.068350948393345,0.14172838628292,-0.02455380000174],[-0.041847709566355,0.11159564554691,0.099446564912796]],[[0.063429221510887,0.044682580977678,0.0622170381248],[0.11291559040546,-0.087727405130863,-0.18982598185539],[0.13448947668076,0.027763860300183,0.11117780208588]],[[-0.10080935060978,0.14167308807373,-0.10186978429556],[0.16468481719494,-0.074645824730396,-0.0098546240478754],[0.019060617312789,-0.036935467272997,0.087837189435959]],[[0.04126800596714,-0.10541152954102,-0.045350097119808],[-0.040978897362947,-0.011182622984052,0.00070782890543342],[0.18535080552101,0.059841062873602,-0.18706710636616]],[[0.17371261119843,0.15279899537563,0.073526360094547],[-0.071987561881542,0.01438729185611,0.010071781463921],[-0.09222798794508,-0.12936393916607,-0.10408426821232]],[[-0.14014849066734,-0.084359131753445,-0.004162791185081],[-0.041113026440144,0.17869481444359,0.070884644985199],[-0.0072619873099029,-0.22939531505108,-0.13565830886364]],[[0.1104456409812,0.066647544503212,-0.31133258342743],[0.084984540939331,-0.024342007935047,-0.056913547217846],[0.076995901763439,-0.11468741297722,-0.12279126793146]],[[-0.033463284373283,-0.1247119680047,0.10864701122046],[-0.070861116051674,-0.13994318246841,0.12220185250044],[-0.046858716756105,-0.015927804633975,0.21354384720325]],[[-0.26399683952332,-0.17587786912918,0.074998788535595],[-0.018055053427815,-0.068937286734581,-0.010839831084013],[-0.043406933546066,-0.014686704613268,-0.15873603522778]],[[0.37524047493935,-0.21143431961536,-0.024314895272255],[0.14867641031742,0.023821467533708,0.049366403371096],[-0.072742648422718,0.010757693089545,0.19290564954281]],[[-0.076684139668941,-0.18913999199867,-0.20827850699425],[0.056346725672483,-0.065601825714111,-0.14915028214455],[-0.052583511918783,-0.020847523584962,0.067280128598213]],[[-0.13065592944622,-0.021059967577457,-0.044357191771269],[0.11573439091444,-0.0071216118521988,0.062108296900988],[0.032534047961235,0.0029783931095153,0.15903927385807]],[[-0.088154464960098,-0.020066201686859,-0.084184043109417],[-0.10086699575186,-0.09568128734827,-0.054321583360434],[0.15540705621243,-0.033996116369963,-0.13150815665722]],[[0.17068417370319,0.034609738737345,-0.080154433846474],[0.17510642111301,0.030199956148863,-0.093270339071751],[0.078870043158531,-0.090440593659878,0.026506828144193]],[[0.1299249380827,0.06910902261734,0.0047249044291675],[-0.045524176210165,-0.10539861023426,-0.14670512080193],[-0.26972037553787,-0.049295075237751,-0.12588204443455]],[[-0.062206238508224,0.055494859814644,0.015234953723848],[-0.11604532599449,0.024554163217545,0.048746861517429],[-0.062939420342445,0.018880501389503,0.31124177575111]],[[0.018773091956973,-0.14500823616982,0.056315839290619],[0.028897427022457,0.13333940505981,0.041388187557459],[0.1504190415144,-0.11984705924988,-0.10329244285822]],[[0.067721083760262,0.12608514726162,-0.019361888989806],[0.22200536727905,0.18753549456596,0.02753565274179],[0.049165677279234,0.064294762909412,-0.029463050886989]],[[0.076631881296635,-0.038621854037046,-0.09157957136631],[0.030213298276067,0.0065606175921857,0.1341807693243],[0.066941693425179,-0.09162113815546,-0.13619691133499]],[[-0.035317916423082,0.093126460909843,-0.024200307205319],[0.057677194476128,-0.036395065486431,0.026529368013144],[-0.16397327184677,-0.073284506797791,0.0311638712883]],[[-0.1098645851016,-0.032774306833744,0.074370130896568],[-0.061308443546295,0.17573261260986,-0.028191827237606],[-0.049390070140362,-0.12513893842697,-0.056018959730864]],[[-0.033086076378822,0.26880392432213,0.058491747826338],[0.033077497035265,0.14909641444683,0.11319147050381],[0.0033919143024832,-0.031941451132298,-0.16159997880459]],[[-0.10819976776838,0.012600501067936,-0.024970481172204],[-0.12227445095778,-0.071034006774426,0.17967423796654],[-0.14200215041637,-0.019229643046856,-0.02185845375061]],[[0.00091848452575505,-0.13643763959408,-0.056532587856054],[0.047835160046816,-0.18214249610901,0.0053551862947643],[-0.02387466467917,-0.051254075020552,-0.088175266981125]],[[0.10185139626265,0.18638782203197,0.090053960680962],[0.027747746556997,0.050971738994122,-0.14120961725712],[-0.10988780856133,0.081949263811111,-0.1302352398634]],[[0.18996340036392,0.032872952520847,-0.093589298427105],[0.065120793879032,-0.017376249656081,-0.064064703881741],[-0.069687001407146,-0.045541003346443,-0.028562968596816]],[[-0.14018572866917,0.032166071236134,-0.058137983083725],[0.013797879219055,0.065518736839294,0.044400986284018],[0.014005054719746,0.086851224303246,-0.076492160558701]],[[0.039679512381554,0.099820882081985,0.059380702674389],[-0.11377380788326,0.016552453860641,-0.12083398550749],[-0.01700091548264,-0.071520239114761,-0.12647460401058]],[[-0.038422502577305,-0.020616451278329,-0.0084282951429486],[-0.041006304323673,-0.14797724783421,0.02936383895576],[-0.19218389689922,-0.034117698669434,0.10688903182745]],[[-0.31713664531708,0.17236340045929,0.091462604701519],[-0.005654779728502,0.049562342464924,0.045352626591921],[-0.13329854607582,0.01285419985652,-0.013278149999678]],[[0.11018991470337,0.021752515807748,-0.079072460532188],[-0.068781584501266,0.13355702161789,-0.08972006291151],[0.0032986195292324,-0.083729758858681,-0.096086673438549]],[[-0.14407621324062,-0.10158969461918,0.20426915585995],[-0.26567152142525,0.026675401255488,0.16047494113445],[-0.21990396082401,0.018421923741698,0.10360185056925]],[[-0.068730764091015,-0.060195431113243,-0.11199229955673],[0.025781445205212,0.10813626646996,0.12891466915607],[0.082554534077644,0.00066198309650645,-0.045918438583612]],[[0.15283887088299,0.13870252668858,-0.0142622301355],[-0.14004103839397,0.022647764533758,0.015579015947878],[-0.093853503465652,0.020501136779785,0.0095095774158835]],[[-0.075098432600498,-0.076084449887276,0.18768073618412],[-0.070088401436806,-0.21145111322403,0.107157073915],[-0.052418071776628,0.037240002304316,0.15135529637337]],[[-0.12014515697956,-0.041325528174639,-0.14545878767967],[-0.046290919184685,-0.052319120615721,-0.01970561221242],[-0.046515867114067,-0.063243210315704,0.22006425261497]],[[0.061997000128031,0.061403851956129,-0.38050302863121],[0.081831499934196,-0.083648659288883,0.070153325796127],[0.096641108393669,0.11006104201078,0.32647097110748]],[[-0.049792777746916,-0.064369760453701,-0.1254658550024],[-0.026456251740456,0.0042185746133327,-0.12712849676609],[-0.046416576951742,0.0051316670142114,-0.13953211903572]],[[0.11725196242332,0.14098818600178,-0.028349686414003],[0.092360474169254,0.031956572085619,0.0087267784401774],[0.075810626149178,-0.064334310591221,-0.041916653513908]],[[-0.015636816620827,-0.077969804406166,0.075389742851257],[-0.094687923789024,0.11302425712347,-0.085449025034904],[-0.1034789904952,0.023132033646107,-0.045838877558708]],[[-0.045868583023548,0.051349759101868,0.06984993070364],[0.0034914494026452,-0.056410148739815,-0.023438571020961],[0.046061176806688,0.11087190359831,-0.01649677567184]],[[-0.0018857043469325,-0.067854627966881,0.030888855457306],[-0.029612168669701,-0.16519092023373,0.023338848724961],[-0.071310684084892,0.055953621864319,0.1028131172061]],[[-0.041041482239962,-0.030953986570239,-0.1142992824316],[-0.028997261077166,-0.031208531931043,-0.17924748361111],[0.063144065439701,-0.17800828814507,0.0052679716609418]],[[-0.057841565459967,-0.11071560531855,-0.16206347942352],[0.029642380774021,-0.00097659637685865,-0.013326873071492],[0.036871396005154,0.17232565581799,0.036326754838228]],[[-0.077980689704418,-0.03481874987483,-0.21343886852264],[0.11111164838076,-0.062694311141968,-0.074840858578682],[0.1307584643364,0.040364030748606,-0.075971618294716]],[[-0.0174709726125,0.08987332880497,-0.080307736992836],[0.048584457486868,0.07064513117075,0.089485727250576],[0.0045884088613093,0.15269392728806,0.078495934605598]],[[0.11920347064734,-0.14769175648689,-0.1268140822649],[0.026193536818027,0.033881783485413,0.039118036627769],[0.091719977557659,0.070491507649422,-0.12792395055294]],[[-0.14196103811264,0.0034376559779048,-0.060117620974779],[0.025138350203633,-0.048501931130886,-0.063399769365788],[0.025283792987466,-0.046212948858738,0.14561587572098]],[[0.031467337161303,-0.016037929803133,0.10479222238064],[-0.01258126553148,-0.039724607020617,0.030647372826934],[-0.093694940209389,0.031898573040962,0.024918297305703]],[[-0.0079981042072177,-0.016275698319077,0.33241307735443],[-0.12348448485136,-0.017827117815614,0.044397346675396],[-0.043510746210814,-0.004480391740799,0.10920443385839]],[[-0.12487418949604,0.016511388123035,-0.076016999781132],[0.023544991388917,0.011140318587422,-0.046214390546083],[0.11847473680973,-0.027155557647347,-0.16097855567932]],[[-0.13507971167564,-0.1611365377903,-0.2619691491127],[-0.12608858942986,-0.16038164496422,0.028500787913799],[0.062843963503838,0.17417761683464,0.011203777045012]],[[0.024362998083234,0.11636831611395,0.097837626934052],[0.073077537119389,0.02405614964664,-0.019176479429007],[-0.010189686901867,-0.096597246825695,0.08563493937254]],[[0.044872190803289,-0.14175622165203,-0.0077174194157124],[0.071740314364433,-0.15398977696896,-0.063952155411243],[0.061813104897738,-0.028363738209009,-0.033575978130102]],[[0.19990223646164,-0.085365027189255,-0.11220820248127],[-0.053468391299248,-0.017589952796698,-0.049622338265181],[-0.22974403202534,-0.0095481174066663,0.18358966708183]],[[-0.056273248046637,-0.14458599686623,-0.027754694223404],[-0.17876544594765,0.026917727664113,0.12502703070641],[-0.067712716758251,0.19388304650784,-0.047772120684385]],[[0.014882562682033,-0.0096808886155486,-0.1436328291893],[-0.11582347005606,0.16843071579933,-0.020166646689177],[0.020140394568443,0.153568983078,0.026877854019403]],[[0.015773123130202,-0.04573717340827,0.018002977594733],[-0.0084779411554337,0.0078943697735667,-0.010812195017934],[-0.01526132132858,0.14279444515705,-0.002936395816505]],[[-0.070980109274387,0.047577310353518,-0.16805475950241],[-0.051032137125731,0.001265564118512,0.019314043223858],[-0.017281411215663,-0.014360365457833,0.20166689157486]]],[[[0.0050557861104608,-0.077645912766457,0.0085223177447915],[-0.012308852747083,-0.081694968044758,0.1708750128746],[-0.011404870077968,-0.12967403233051,-0.071364842355251]],[[0.20736065506935,0.091601446270943,0.098000958561897],[-0.31748279929161,-0.16348916292191,0.055260017514229],[0.11884132027626,0.019471833482385,0.15666735172272]],[[-0.040330447256565,-0.052240993827581,-0.062475431710482],[0.16469405591488,0.10986471176147,0.24712918698788],[0.047790288925171,0.058123271912336,-0.023443492129445]],[[0.035290036350489,-0.013065834529698,0.027495853602886],[0.17331270873547,0.012825244106352,-0.036466598510742],[-0.0089153284206986,-0.088241271674633,-0.11148485541344]],[[-0.17802281677723,-0.23333404958248,-0.12296660989523],[0.044878032058477,-0.11495883017778,0.11548440903425],[0.12565405666828,-0.039535660296679,-0.019959818571806]],[[-0.037845809012651,-0.1906965225935,0.059036064893007],[-0.026076065376401,-0.076361127197742,-0.059185147285461],[0.049747779965401,0.074158422648907,0.0024369270540774]],[[0.23904100060463,0.11904475092888,0.38096162676811],[0.083631083369255,0.033376134932041,-0.078040316700935],[0.040160056203604,0.049315098673105,-0.033503651618958]],[[0.088644102215767,0.0024059535935521,0.0090901739895344],[-0.09246451407671,0.064062483608723,-0.13310487568378],[0.12294578552246,0.17693266272545,0.21063894033432]],[[0.081040509045124,0.088860809803009,0.1541847884655],[-0.077020838856697,-0.16930666565895,-0.2860144674778],[0.18851953744888,0.24533638358116,0.21535423398018]],[[0.0024038935080171,-0.016670050099492,-0.028960986062884],[-0.0049676015041769,-0.12590856850147,-0.097211591899395],[-0.13945932686329,-0.18670761585236,-0.12153104692698]],[[0.049677163362503,0.053855169564486,0.068456403911114],[-0.052620694041252,-0.055837973952293,-0.12018578499556],[-0.11911875009537,0.0026119623798877,-0.099357835948467]],[[-0.16902239620686,0.064887583255768,0.048626538366079],[0.00063522555865347,-0.1165349110961,-0.147221326828],[0.12694358825684,0.11175640672445,-0.036234553903341]],[[-0.037398405373096,-0.090248741209507,-0.14984580874443],[0.037005800753832,0.076946698129177,0.064714185893536],[-0.067177459597588,0.0087395282462239,-0.032545026391745]],[[-0.096623472869396,-0.18829600512981,-0.15361461043358],[0.082347311079502,0.060250222682953,0.12212787568569],[0.0085006877779961,-0.27343580126762,-0.21639105677605]],[[0.010706068016589,0.011737760156393,-0.104681417346],[-0.19679978489876,-0.014351720921695,-0.033380825072527],[0.077384777367115,0.09400749206543,0.18361438810825]],[[-0.0098752975463867,0.016978971660137,-0.038633909076452],[0.047921985387802,-0.046477481722832,-0.13398016989231],[-0.080803819000721,-0.14411704242229,-0.0060055758804083]],[[-0.11166197061539,-0.038572564721107,-0.16473273932934],[0.032639946788549,0.10467925667763,0.034503437578678],[0.029933884739876,0.02509168908,0.010086756199598]],[[-0.029431242495775,-0.14164170622826,-0.090065605938435],[-0.010253366082907,-0.074389509856701,0.23526304960251],[0.19292585551739,-0.0047051892615855,-0.015684517100453]],[[-0.13115257024765,-0.16536226868629,-0.10226362943649],[0.089136026799679,0.036409161984921,0.013135050423443],[-0.05832277983427,-0.075816303491592,-0.054109260439873]],[[-0.098749130964279,-0.047306068241596,0.046551492065191],[-0.35744363069534,-0.25460115075111,-0.081982165575027],[0.15133728086948,0.16400182247162,0.029161611571908]],[[-0.0065988609567285,-0.1123570650816,0.13709968328476],[-0.033219739794731,0.096820876002312,0.011653489433229],[-0.12902051210403,-0.14675225317478,-0.17867782711983]],[[0.043243445456028,-0.0014954820508137,-0.10727227479219],[0.040624100714922,0.036657821387053,-0.09245590120554],[-0.12038383632898,-0.0055790282785892,0.039911072701216]],[[0.22847080230713,0.30829209089279,0.071859240531921],[0.074364364147186,0.010160990990698,-0.2858834862709],[-0.20520479977131,-0.13096046447754,0.31581428647041]],[[0.003740751883015,-0.074568092823029,-0.0022947585675865],[0.0077652619220316,0.047313705086708,0.11294943094254],[-0.08561584353447,-0.017019491642714,-0.030249267816544]],[[0.1309901624918,0.11803319305182,-0.022629249840975],[-0.14263191819191,0.072302721440792,0.17586217820644],[0.18155510723591,0.059097066521645,-0.023115841671824]],[[0.0040460838936269,0.056556273251772,0.091894842684269],[0.026153823360801,0.06312558054924,0.040776796638966],[-0.02728271856904,0.0038565977010876,-0.073630653321743]],[[0.13399629294872,0.025960199534893,-0.0018591965781525],[-0.05757112801075,0.031260095536709,0.12213700264692],[-0.11435066908598,0.015739683061838,0.0070941685698926]],[[-0.011596945114434,-0.095818534493446,-0.046976700425148],[0.14429548382759,-0.05214386433363,-0.29223683476448],[0.030661588534713,0.11448711156845,0.21905234456062]],[[0.10552775859833,-0.050478585064411,0.0067945877090096],[-0.11999669671059,-0.034481707960367,-0.0062834126874804],[-0.21857409179211,-0.37473577260971,-0.030942298471928]],[[0.13479523360729,0.051541212946177,0.062996402382851],[0.039302591234446,0.048326544463634,0.13382244110107],[-0.051158297806978,-0.062637954950333,-0.0063878018409014]],[[0.028755631297827,-0.0014329577097669,-0.024656169116497],[-0.17354273796082,-0.2025258243084,-0.36940687894821],[0.17708422243595,0.058986525982618,0.2057881206274]],[[0.026950491592288,-0.081479072570801,-0.079154334962368],[0.16731618344784,-0.064049057662487,-0.1552450209856],[0.083195358514786,0.080186106264591,-0.037826735526323]],[[0.0038033886812627,-0.13023538887501,-0.24141411483288],[-0.086188219487667,-0.047262910753489,-0.13365970551968],[0.05499966070056,0.063911288976669,-0.087965585291386]],[[0.12977042794228,0.069202855229378,-0.0022318563424051],[-0.0074874004349113,0.0021765113342553,0.046475358307362],[-0.098543718457222,0.025320701301098,0.22220626473427]],[[-0.10002915561199,-0.19933576881886,-0.25890654325485],[-0.022073408588767,0.022849339991808,0.089438006281853],[-0.016384931281209,0.1444994956255,0.012908408418298]],[[0.20532709360123,0.15494124591351,0.056707579642534],[-0.096004955470562,0.012232297100127,0.2110782712698],[-0.21491731703281,-0.23556858301163,-0.097693294286728]],[[-0.1271336376667,-0.20527356863022,-0.22350727021694],[0.2013938575983,0.07156641036272,0.13061946630478],[-0.010131911374629,-0.050128143280745,-0.069545306265354]],[[0.047656707465649,0.071392722427845,0.06516619771719],[-0.15117847919464,-0.049808956682682,0.01134722866118],[0.017798354849219,0.096122868359089,-0.14377239346504]],[[-0.02034879103303,0.074233293533325,0.23406359553337],[-0.19967222213745,-0.15229517221451,-0.22146531939507],[0.048949081450701,-0.03960819914937,-0.090359777212143]],[[0.038479536771774,0.1341817677021,0.11575295776129],[-0.062833487987518,-0.1784729808569,-0.33313602209091],[-0.084059663116932,-0.029349371790886,0.046738021075726]],[[-0.03520493209362,-0.1595162153244,-0.097969807684422],[-0.12569218873978,-0.039189796894789,-0.082808211445808],[0.20811195671558,0.015531476587057,-0.023844413459301]],[[0.020781209692359,-0.044978473335505,-0.10105570405722],[0.16689977049828,0.12398856133223,0.072996266186237],[0.10207366198301,0.038143839687109,0.17494282126427]],[[0.13391713798046,-0.068558894097805,-0.10954511165619],[0.014617162756622,0.010022666305304,-0.017505964264274],[-0.16607548296452,-0.18572020530701,-0.16791521012783]],[[-0.056599386036396,-0.070871107280254,-0.055039823055267],[-0.11507019400597,-0.041270174086094,-0.10801637172699],[-0.04024950787425,-0.072662115097046,-0.067647844552994]],[[-0.076779536902905,-0.064113274216652,0.016286317259073],[0.03375206142664,-0.073779992759228,-0.11930736899376],[0.026476930826902,-0.029283095151186,-0.10323694348335]],[[-0.29316967725754,-0.14153629541397,-0.14447683095932],[0.10773400962353,-0.001140222302638,-0.080488212406635],[0.065693005919456,0.0092004025354981,0.1666584610939]],[[0.086474105715752,-0.13568818569183,-0.010147421620786],[0.0081816557794809,-0.058532513678074,-0.13423083722591],[-0.031915776431561,-0.081364221870899,-0.059131674468517]],[[0.24455085396767,0.18047586083412,-0.024722268804908],[-0.31989747285843,-0.13566035032272,0.051934018731117],[-0.027090560644865,-0.031650882214308,-0.093793146312237]],[[-0.07703310251236,0.067269824445248,0.26445156335831],[0.0096141006797552,0.017001563683152,-0.19738571345806],[-0.064423531293869,0.048822153359652,0.11691850423813]],[[-0.033131401985884,-0.062464442104101,0.022642608731985],[-0.12761831283569,-0.16238364577293,-0.18768756091595],[-0.17557805776596,-0.22206792235374,-0.073471255600452]],[[-0.094755277037621,-0.060087408870459,-0.02810394577682],[-0.15714132785797,0.026079995557666,0.064629055559635],[0.2691907286644,-0.072589874267578,-0.14122360944748]],[[0.03731831908226,-0.067654512822628,-0.037782792001963],[0.007118908688426,0.062233489006758,-0.057008441537619],[-0.06472585350275,0.072442620992661,0.15851517021656]],[[0.0051764808595181,-0.0089868027716875,-0.086840711534023],[-0.040009327232838,-0.060727998614311,-0.21351464092731],[-0.063961766660213,-0.099111638963223,-0.15684349834919]],[[0.058215044438839,-0.01766861975193,-0.052677143365145],[-0.10656001418829,-0.0066585610620677,-0.037170883268118],[0.051501367241144,-0.0078746750950813,-0.16895687580109]],[[-0.053982526063919,-0.088646769523621,-0.049713894724846],[0.053047861903906,-0.073614172637463,-0.038128715008497],[-0.038484305143356,-0.063640065491199,-0.15503799915314]],[[0.31905317306519,0.076951257884502,0.085940755903721],[-0.13442888855934,-0.093482926487923,0.0016048032557592],[-0.007472091820091,-0.029163980856538,0.035251215100288]],[[0.034560773521662,0.18852891027927,0.27492865920067],[-0.10946094989777,-0.03886005282402,-0.03248530998826],[-0.028759216889739,-0.10212767869234,-0.10295759886503]],[[-0.018243864178658,0.029206950217485,-0.039195485413074],[-0.089933715760708,-0.13055349886417,-0.20147490501404],[-0.051421266049147,-0.11464973539114,-0.11048530042171]],[[-0.093853674829006,-0.14797347784042,-0.098989434540272],[0.13481602072716,0.070597797632217,0.066478572785854],[0.012056936509907,-0.021463459357619,-0.063465692102909]],[[-0.010865598917007,0.080558128654957,0.091692090034485],[-0.062017932534218,-0.15519724786282,0.10231442004442],[0.15107025206089,0.12612894177437,0.099713504314423]],[[-0.054807402193546,-0.0065057151950896,0.053711954504251],[0.04341647028923,0.041856098920107,-0.088222108781338],[-0.031796958297491,-0.051623169332743,-0.2150661945343]],[[0.10387662053108,-0.0075493766926229,-0.030258128419518],[-0.1626254171133,-0.025672424584627,-0.09079310297966],[-0.33752253651619,-0.10785360634327,-0.069435745477676]],[[-0.0080404598265886,0.022671481594443,-0.00014831531734671],[0.10023221373558,0.036668494343758,-0.066898547112942],[0.065589621663094,0.047632556408644,-0.012721803039312]],[[-0.073452509939671,0.17742726206779,-0.039145097136497],[-0.02901654317975,-0.16750898957253,0.10614190995693],[0.0024048562627286,0.017070706933737,0.14287127554417]],[[0.074291698634624,-0.00087642681319267,-0.3114430308342],[-0.018891518935561,0.020888710394502,0.017625300213695],[0.13227878510952,0.15950526297092,-0.059854537248611]],[[0.10600595921278,0.14595128595829,0.066041193902493],[-0.018427807837725,-0.1193203702569,-0.091869324445724],[0.062912449240685,-0.051664981991053,-0.0084459856152534]],[[0.037112198770046,0.012319153174758,-0.042924452573061],[0.03087367489934,-0.073936082422733,-0.02492188103497],[0.05405554920435,-0.10239122062922,-0.054966788738966]],[[0.114263266325,0.036518596112728,-0.00025090420967899],[-0.29212737083435,-0.10646431148052,-0.0088272094726562],[0.1270337998867,-0.0091633992269635,-0.014469330199063]],[[-0.067788943648338,-0.017867399379611,-0.00254648597911],[-0.017750980332494,0.10978320986032,0.11908759921789],[0.045605570077896,0.06868351995945,-0.084135271608829]],[[0.14599741995335,0.045281793922186,0.0016986518166959],[0.12409700453281,-0.04772125557065,-0.06083495542407],[-0.05035899579525,-0.034469615668058,0.094216652214527]],[[-0.0041630091145635,-0.062286715954542,-0.032742667943239],[-0.020938936620951,0.067590832710266,-0.27142006158829],[-0.034491632133722,0.17005479335785,0.26620575785637]],[[-0.22021161019802,-0.11636160314083,-0.10936036705971],[0.14719085395336,0.082159399986267,-0.16921058297157],[-0.28220996260643,-0.052570197731256,0.28777250647545]],[[0.039569228887558,0.13542747497559,-0.0051850364543498],[-0.030774915590882,-0.062674060463905,0.034111279994249],[-0.077476941049099,-0.01626555249095,0.12932989001274]],[[0.090080723166466,-0.0036055452656001,0.01486399769783],[-0.031480967998505,-0.0045002079568803,-0.0291349850595],[0.0092092379927635,-0.095348834991455,-0.069343343377113]],[[0.034426305443048,0.036728423088789,-0.10325666517019],[-0.044413931667805,-0.051600027829409,-0.075356461107731],[-0.052881967276335,0.077785953879356,-0.025274086743593]],[[-0.17403504252434,-0.067036010324955,0.066288791596889],[0.20032708346844,-0.052177987992764,0.063993878662586],[0.013385689817369,0.010520666837692,-0.068219371140003]],[[-0.21903942525387,-0.13560362160206,-0.026858057826757],[-0.13152286410332,-0.14796794950962,-0.09917775541544],[0.049906671047211,0.11998584866524,0.19131955504417]],[[0.052165843546391,-0.0062714284285903,-0.010898604989052],[-0.059655640274286,0.020411562174559,-0.1044315174222],[0.045897450298071,-0.072826191782951,0.016490902751684]],[[0.0831228941679,0.11666126549244,-0.1499011516571],[0.0090105542913079,-0.022631831467152,-0.32765892148018],[-0.1770224571228,-0.096328407526016,0.17091837525368]],[[-0.082293167710304,-0.15350715816021,-0.06683499366045],[-0.083569742739201,-0.11079128831625,-0.29595991969109],[-0.037786871194839,-0.053247094154358,-0.035118222236633]],[[0.0071419286541641,-0.024169066920877,-0.085569269955158],[0.0241618771106,-0.11641918122768,0.15872643887997],[0.040701799094677,-0.061177290976048,-0.089507542550564]],[[-0.010741178877652,-0.0096891606226563,-0.012092153541744],[-0.19401289522648,0.074155576527119,-0.049914076924324],[0.034243188798428,-0.037904240190983,-0.16447646915913]],[[0.06214414909482,0.22399432957172,0.20111778378487],[0.16698455810547,0.00054301950149238,0.025288289412856],[-0.03406298533082,-0.049289897084236,-0.1297013014555]],[[0.046437565237284,-0.01480969414115,0.0068296273238957],[-0.082462206482887,-0.017027487978339,0.1318529099226],[0.12131248414516,-0.063325770199299,-0.069259785115719]],[[0.10930448770523,0.10731294006109,-0.19230158627033],[0.091412521898746,-0.025502284988761,-0.10016518831253],[-0.078347608447075,-0.10586309432983,-0.057303465902805]],[[-0.13584487140179,-0.087052315473557,-0.077099665999413],[-0.0042905481532216,-0.015425474382937,-0.21926957368851],[-0.16354924440384,-0.11414517462254,-0.086918219923973]],[[0.002019222592935,-0.081120453774929,-0.043903857469559],[0.07528705149889,0.1922695338726,0.18250188231468],[0.0098671205341816,-0.0041942643001676,-0.025383422151208]],[[-0.20174595713615,0.13795477151871,0.14646770060062],[0.066556021571159,-0.051673948764801,-0.057124648243189],[0.0026343809440732,-0.0085343858227134,0.016323946416378]],[[-0.0027180942706764,-0.049135334789753,-0.18182294070721],[-0.087090760469437,-0.044298999011517,0.17803274095058],[0.13171009719372,-0.11946097016335,-0.22061578929424]],[[0.060517214238644,-0.062968380749226,-0.24484795331955],[0.0021341082174331,-0.033788122236729,-0.04023252427578],[0.010172718204558,0.05257710069418,-0.054433234035969]],[[-0.024401795119047,0.0027519352734089,0.13261045515537],[-0.1534843146801,0.0032433739397675,0.068163380026817],[0.049205891788006,0.088048994541168,0.014176433905959]],[[0.034364942461252,0.073801353573799,0.1668950766325],[0.066261239349842,-0.16515313088894,-0.25186169147491],[-0.017995353788137,0.047972191125154,-0.035440292209387]],[[0.19451792538166,0.14781826734543,0.29876947402954],[0.24065342545509,0.18745076656342,0.057546369731426],[0.22759284079075,0.11637932807207,0.086950287222862]],[[0.12461525946856,0.053589399904013,-0.052825435996056],[0.1206369176507,0.057147979736328,0.0095362346619368],[0.022550100460649,-0.017743702977896,0.030863970518112]],[[-0.076207652688026,-0.055187970399857,0.026447147130966],[0.26405185461044,0.029832638800144,-0.092113599181175],[0.16427847743034,0.26376539468765,-7.6747855928261e-05]],[[0.23015563189983,0.063150219619274,-0.055238109081984],[-0.070758402347565,0.054388247430325,0.10136964917183],[0.078628145158291,0.070042639970779,0.1332161128521]],[[0.0090118171647191,-0.11061830818653,-0.10874970257282],[0.13793931901455,-0.0063899829983711,-0.14243702590466],[0.042764391750097,0.00059490848798305,0.076175294816494]],[[-0.079126797616482,-0.11475718766451,0.0055224359966815],[-0.030838398262858,-0.039566166698933,0.027780013158917],[0.078275121748447,0.071645744144917,0.078059613704681]],[[0.0085168955847621,-0.26317286491394,-0.16968920826912],[0.056945320218801,0.0062248515896499,0.32859990000725],[0.038089662790298,-0.20409746468067,-0.030422579497099]],[[-0.17089352011681,-0.11565463989973,-0.10728742927313],[0.11870732903481,0.10283406078815,0.27578893303871],[-0.14243766665459,-0.25291123986244,-0.10403329133987]],[[-0.11060661822557,-0.071251802146435,0.015140756033361],[0.34685415029526,0.049461405724287,0.036886665970087],[-0.042683437466621,0.13969597220421,-0.0082455966621637]],[[-0.15805704891682,-0.21295249462128,-0.21643954515457],[0.15070730447769,0.084984123706818,0.17699672281742],[-0.029486499726772,0.087120935320854,0.12866793572903]],[[0.064249649643898,0.051151320338249,0.024751607328653],[-0.040885038673878,-0.038804929703474,-0.010850926861167],[0.20192117989063,0.15254704654217,0.18372118473053]],[[-0.18595753610134,-0.04216755181551,-0.0099047236144543],[-0.11862111091614,-0.00040030106902122,-0.016004288569093],[0.096773512661457,0.025655578821898,0.048487827181816]],[[-0.12295885384083,-0.019325293600559,-0.139050796628],[0.058528177440166,-0.08910259604454,-0.043966043740511],[0.076777204871178,-0.011717145331204,0.069033369421959]],[[-0.076387867331505,-0.030338782817125,-0.031479127705097],[0.0097548784688115,-0.05045598372817,0.2271730452776],[-0.023119930177927,-0.0014976866077632,0.00054218404693529]],[[0.10672008991241,-0.17945595085621,-0.21924519538879],[0.110744535923,-0.046988271176815,-0.082764036953449],[0.12351856380701,0.060080241411924,-0.036307636648417]],[[-0.072902493178844,0.066015832126141,0.23008060455322],[0.015574552118778,-0.034997474402189,0.091625593602657],[0.02206589281559,-0.043051760643721,-0.19372908771038]],[[0.11485002189875,0.13714082539082,0.059580385684967],[0.0017876989440992,-0.014051715843379,0.010514325462282],[0.032041274011135,-0.033183045685291,-0.061978563666344]],[[0.0523423217237,-0.11290960758924,-0.066970378160477],[-0.027687547728419,-0.052471682429314,-0.064502909779549],[0.015409464016557,0.091638013720512,-0.010776174254715]],[[-0.078420758247375,-0.16198931634426,-0.087568081915379],[-0.019508829340339,-0.0018377755768597,0.0038009809795767],[-0.08594274520874,-0.028654934838414,-0.034978859126568]],[[0.26881182193756,0.081299893558025,0.0534125007689],[0.051775362342596,-0.009361770004034,0.15261423587799],[-0.088977888226509,0.064725250005722,-0.094496108591557]],[[0.0015435785753652,-0.080289714038372,0.068778999149799],[0.088118933141232,0.050530795007944,0.15975883603096],[0.048282083123922,-0.07983024418354,-0.14335271716118]],[[-0.099875405430794,0.087164461612701,0.030106719583273],[0.11324387043715,-0.0032933379989117,-0.037840109318495],[-0.078150659799576,-0.051570277661085,0.09341486543417]],[[-0.217952221632,0.0024648527614772,0.17323586344719],[0.10210338234901,0.076692804694176,0.058878928422928],[-0.015202247537673,0.0162681825459,-0.013345166109502]],[[-0.075702011585236,-0.073107868432999,-0.1522007137537],[0.11013080179691,0.13794803619385,0.14279280602932],[0.068485662341118,-0.047943606972694,-0.10795247554779]],[[-0.048117253929377,-0.18508368730545,-0.19214610755444],[0.15696968138218,0.07041396945715,0.079944863915443],[-0.18846599757671,-0.13593958318233,-0.12439353764057]],[[0.19148434698582,0.065084144473076,0.20701114833355],[-0.16239231824875,-0.09234980493784,-0.41979563236237],[-0.17137950658798,-0.28881683945656,0.22589196264744]],[[0.089929327368736,0.0068484987132251,-0.027568802237511],[-0.25511303544044,0.035625521093607,-0.066119208931923],[0.002466231584549,-0.029695531353354,-0.08116153627634]],[[0.020839713513851,-0.059255618602037,0.057716846466064],[0.00077968992991373,-0.046143531799316,-0.13655467331409],[0.069027721881866,0.083553530275822,0.02116772159934]],[[-0.13907362520695,-0.12604986131191,-0.13256481289864],[0.1497025936842,-0.036015022546053,0.052224140614271],[-0.10989430546761,-0.10616730898619,-0.13938207924366]],[[0.0035110495518893,0.072900928556919,-0.16197954118252],[0.021588625386357,-0.0079230330884457,0.055391307920218],[0.061054892838001,0.042263608425856,-0.15232366323471]],[[-0.13383373618126,-0.10470206290483,0.064491979777813],[-0.10510443150997,-0.075486458837986,-0.11153142154217],[-0.071983553469181,-0.053982000797987,0.025761237367988]],[[0.070232398808002,0.014270330779254,0.020790135487914],[-0.0017941216938198,-0.0013224974973127,0.093461230397224],[-0.031887710094452,-0.057788226753473,-0.10537408292294]],[[0.077718995511532,0.046778921037912,-0.11217506974936],[0.12312086671591,-0.0092687476426363,0.014708681032062],[0.02584763802588,-0.07828427106142,0.054047636687756]],[[0.016350893303752,0.11548996716738,-0.033668104559183],[-0.034773930907249,-0.090438656508923,0.10876747220755],[-0.20331364870071,-0.22012105584145,-0.048647399991751]],[[-0.12151055037975,0.15697675943375,0.12189142405987],[0.079329498112202,-0.032847639173269,-0.22518013417721],[0.14595393836498,0.025332206860185,-0.1948554366827]],[[-0.13957034051418,0.22815330326557,0.11981399357319],[0.066801443696022,-0.088249281048775,-0.30731666088104],[0.28791549801826,0.0049525401555002,0.057776249945164]]],[[[-0.037482567131519,0.020291185006499,-0.036244872957468],[-0.031217481940985,0.019094102084637,-0.011226302944124],[0.014820409938693,-0.00018281739903614,0.014944690279663]],[[-0.016753137111664,-0.00020889958250336,0.0054118507541716],[0.035122785717249,-0.027050567790866,-0.017569269984961],[0.07249054312706,0.041595116257668,-0.0083242654800415]],[[-0.075617723166943,0.097454331815243,0.00082389591261744],[0.012467669323087,0.0069585307501256,-0.01070521119982],[0.045029152184725,-0.043702725321054,-0.0022912919521332]],[[0.030869940295815,-0.0062342737801373,-0.043082375079393],[0.056841235607862,-0.0091730039566755,0.061851553618908],[0.0021330539602786,0.018886549398303,-0.034933034330606]],[[-0.01407587248832,0.011304575018585,0.016557542607188],[0.037124611437321,0.053992949426174,0.026125513017178],[-0.018026256933808,-0.019590677693486,-0.041246242821217]],[[-0.033561609685421,0.054761502891779,0.057147197425365],[-0.015684382990003,-0.00073375052306801,0.049270279705524],[0.0002040836843662,-0.050876885652542,-0.0018655599560589]],[[-0.017131658270955,0.043441854417324,-0.015276637859643],[0.0137730371207,-0.039405308663845,-0.0036173926200718],[-0.020231056958437,-0.021400913596153,-0.02916513197124]],[[0.016471363604069,0.039036478847265,0.021362382918596],[0.0085953855887055,-0.0059717460535467,0.0090304287150502],[0.00043155555613339,-0.0047748424112797,0.0089600188657641]],[[-0.0031157224439085,-0.033672623336315,-0.069695673882961],[0.042038347572088,0.036236681044102,0.047434668987989],[0.017781089991331,0.03852915391326,0.022116901353002]],[[0.066819220781326,-0.013338059186935,-0.077987655997276],[0.013224065303802,-0.089827507734299,-0.026502443477511],[-0.081290677189827,0.034013483673334,0.030638210475445]],[[-0.0095104249194264,0.07017770409584,0.030410999432206],[0.042796932160854,0.067170023918152,-0.04854353889823],[-0.015650853514671,-0.024822097271681,-0.069788336753845]],[[-0.02281161211431,-0.0052682682871819,0.06182038038969],[-0.0066793914884329,0.030891498550773,0.019306406378746],[0.020106939598918,-0.016944583505392,-0.040951512753963]],[[-0.054002206772566,-0.027293788269162,0.06006820872426],[0.044926557689905,-0.037609368562698,0.016509428620338],[-0.02603068575263,-0.029753044247627,-0.042718309909105]],[[0.056880220770836,-0.0044442913495004,-0.025688530877233],[0.020152552053332,0.057508561760187,-0.089998170733452],[0.025094706565142,0.0088545009493828,-0.10997777432203]],[[0.017977133393288,-0.023416107520461,-0.094616539776325],[0.014569438993931,-0.016058156266809,0.050314594060183],[-0.010851562954485,-0.026674322783947,0.021743509918451]],[[0.0015784405404702,-0.029500374570489,-0.0048145735636353],[-0.0097123757004738,-0.073864102363586,-0.0094844419509172],[-0.020061725750566,-0.087024942040443,-0.037263236939907]],[[0.020025946199894,-0.018451100215316,-0.02480592764914],[0.0083403550088406,0.032622195780277,-0.07963889837265],[0.0059123090468347,0.011085712350905,0.0036091990768909]],[[-0.0034706192091107,-0.017026552930474,0.020000535994768],[-0.030195817351341,-0.028818070888519,-0.10103129595518],[0.0090311318635941,-0.051815688610077,-0.006006630603224]],[[0.067586816847324,0.045906230807304,-0.039971314370632],[0.0092048197984695,0.020297192037106,-0.025167599320412],[0.060755245387554,-0.023835187777877,0.037637751549482]],[[0.032412506639957,-0.022850807756186,-0.10590931028128],[0.0085303271189332,0.016057955101132,-0.082158751785755],[0.042763497680426,0.081356227397919,-0.037567082792521]],[[0.038264792412519,0.016859902068973,0.07731518894434],[-0.0010467841057107,0.0063531678169966,-0.014876615256071],[-0.077538304030895,-0.062705233693123,-0.019966933876276]],[[0.021916760131717,-0.010817999951541,-0.00033249935950153],[-0.022608026862144,-0.099888227880001,0.035070594400167],[0.018459876999259,-0.031299751251936,-0.029892081394792]],[[-0.015539351850748,-0.053311992436647,0.0054159113205969],[0.038262609392405,0.073573023080826,0.015750613063574],[-0.017046272754669,0.010358523577452,-0.071690484881401]],[[-0.023996122181416,-0.047242607921362,0.0055764955468476],[-0.027290441095829,-0.054414879530668,-0.055291704833508],[0.019992552697659,-0.010950561612844,-0.019107015803456]],[[0.0091808196157217,0.038623616099358,0.0091297114267945],[0.017377436161041,0.015560928732157,-0.040167968720198],[-0.021760907024145,-0.056833248585463,0.0054261847399175]],[[0.049672223627567,0.061860036104918,0.03295898810029],[0.021838322281837,-0.029389284551144,0.0062613370828331],[0.0080137392506003,-0.029287973418832,0.021778874099255]],[[0.010616808198392,-0.00020090458565392,0.053877219557762],[-0.019555432721972,-0.042136259377003,0.042696159332991],[-0.057753145694733,0.023280575871468,-0.081446997821331]],[[-0.077770128846169,0.0066707502119243,-0.053727705031633],[0.0042401948012412,0.04262076690793,0.040066417306662],[0.019326014444232,0.017254503443837,0.012908237986267]],[[-0.02276579849422,-0.041789572685957,-0.073562294244766],[-0.0041056727059186,0.050641074776649,-0.033925138413906],[-0.026337483897805,0.005706153344363,-0.078755803406239]],[[-0.004112521186471,0.0074149668216705,-0.056370053440332],[0.01873011700809,-0.03572853654623,-0.086816571652889],[0.039628144353628,0.020912025123835,0.072605445981026]],[[-0.010882578790188,-0.029105888679624,0.010970273055136],[-0.066358231008053,-0.046218227595091,0.043067626655102],[-0.00199353415519,0.038333382457495,0.0020179869607091]],[[0.0069815027527511,-0.043759200721979,-0.043883446604013],[-0.015315946191549,-0.055914223194122,0.058721665292978],[-0.0029699732549489,-0.049467418342829,0.031423304229975]],[[-0.048558924347162,-0.051674965769053,0.072181947529316],[-0.002054939744994,0.0026768869720399,0.052802335470915],[0.0088321547955275,-0.020927004516125,0.0049206973053515]],[[0.040616329759359,-0.026902871206403,-0.003840803867206],[-0.023461943492293,0.021390093490481,-0.014058401808143],[-0.023468013852835,0.0883759111166,-0.024079989641905]],[[0.0052174828015268,0.041039638221264,-0.019679315388203],[-0.016216373071074,0.0088508613407612,-0.010390910319984],[0.0062772706151009,0.01314552500844,3.9278245822061e-05]],[[-0.046438775956631,0.053323179483414,-0.034497156739235],[-0.028128771111369,0.052832614630461,0.010235925205052],[-0.10177652537823,0.034561440348625,0.034542791545391]],[[-0.060681503266096,-0.029959546402097,0.071181014180183],[0.0032769958488643,-0.028623595833778,-0.057105891406536],[-0.005218478385359,0.034366827458143,0.003292205510661]],[[0.082810014486313,0.041410759091377,0.020138751715422],[-0.027981827035546,0.027077861130238,-0.01558815408498],[0.0074792369268835,0.00041363737545907,0.036434900015593]],[[0.0712865665555,0.0030429719481617,0.035512924194336],[0.029219448566437,-0.11020562797785,-0.020459102466702],[0.018311660736799,-0.052183859050274,0.020000936463475]],[[0.013339818455279,-0.012789513915777,-0.015569092705846],[0.073669515550137,0.011557016521692,-0.06366079300642],[-0.018979210406542,-0.023130962625146,-0.023587618023157]],[[-0.017252080142498,0.033191282302141,0.072581134736538],[0.044425271451473,-0.038585774600506,-0.005902387201786],[-0.034238662570715,-0.10053351521492,-0.016003135591745]],[[-0.013269794173539,-0.013916939496994,0.012484157457948],[-0.013704570010304,-0.010676821693778,0.010255295783281],[-0.08645636588335,0.033571321517229,0.02065491117537]],[[-0.10263882577419,-0.019331997260451,0.036322046071291],[-0.049063358455896,0.0042931726202369,0.00637446064502],[0.0026403963565826,-0.0069535835646093,0.0017388392006978]],[[-0.056573394685984,-0.01756988465786,0.045563388615847],[-0.053688310086727,0.00048227413208224,-0.025065680965781],[-0.028119517490268,-0.04796464368701,0.0022927902173251]],[[-0.0041285110637546,-0.015695139765739,0.047038670629263],[-0.0048017604276538,0.011651124805212,0.010414591990411],[0.015293742530048,0.098211333155632,-0.018966248258948]],[[-0.02246243134141,-0.038928296416998,-0.011493534781039],[-0.011725530959666,-0.062259454280138,0.0008975884411484],[-0.052945986390114,0.0030075656250119,0.019568527117372]],[[-0.01815795339644,0.034285038709641,0.051319167017937],[0.041437730193138,0.0022090547718108,-0.034623622894287],[0.033277917653322,0.021518718451262,0.073566138744354]],[[-0.042276348918676,-0.044354915618896,0.042134132236242],[0.068890757858753,0.076680816709995,-0.018154826015234],[-0.007808486931026,0.046789240092039,0.046060647815466]],[[-0.071275420486927,-0.039168290793896,0.0067924670875072],[0.030789053067565,-0.016277926042676,-0.054034117609262],[0.027778904885054,0.045664053410292,0.030198909342289]],[[-0.032932292670012,0.0013170109596103,0.029678747057915],[0.016564222052693,-0.056667409837246,-0.044257987290621],[-0.0267827026546,-0.040616437792778,0.052048169076443]],[[0.0048671392723918,-0.059336539357901,-0.074270784854889],[0.080136217176914,-0.017380479723215,-0.011291297152638],[-0.0090031586587429,-0.09437520056963,-0.028690187260509]],[[-0.029376516118646,0.051950816065073,0.011626196093857],[0.061801847070456,0.022442184388638,-0.00040254445048049],[-0.016825169324875,-0.040723912417889,-0.016169821843505]],[[-0.0068687633611262,0.060484834015369,0.05255451053381],[-0.041903730481863,0.034890126436949,0.17720405757427],[0.045148402452469,0.091793574392796,0.020414290949702]],[[0.01347129046917,0.018893213942647,-0.039178226143122],[-0.0019453013082966,-0.031873252242804,-0.034186951816082],[0.025203432887793,-0.0092597482725978,-0.026340261101723]],[[-0.038715183734894,-0.032902076840401,0.0089811142534018],[0.079077698290348,0.029652690514922,-0.048804853111506],[0.0076179238967597,-0.016875566914678,-0.051421273499727]],[[-0.01229527592659,0.0059055178426206,-0.016226874664426],[-0.062550656497478,-0.009643791243434,0.030392916873097],[0.0014250760432333,-0.024797823280096,0.051544114947319]],[[-0.018738323822618,-0.0097817834466696,-0.089784219861031],[-0.011017167009413,0.035072550177574,-0.044163208454847],[0.057666588574648,0.0088623389601707,0.0089401826262474]],[[-0.085105866193771,0.065110117197037,0.053015079349279],[-0.024928953498602,-0.031874030828476,-0.0094690639525652],[0.032789830118418,0.040882464498281,-0.016581363976002]],[[0.035871610045433,-0.01862009242177,-0.031517542898655],[0.036520335823298,-0.022269489243627,0.036590702831745],[-0.035634897649288,0.053652055561543,0.037390865385532]],[[0.0059055127203465,0.025820288807154,-0.05864292755723],[0.033763218671083,0.035688571631908,-0.0034752865321934],[-0.023032177239656,-0.014769778586924,0.029905522242188]],[[-0.011729064397514,0.011387442238629,0.0037973402068019],[-0.034243952482939,-0.013073636218905,-0.011274714022875],[0.024625968188047,0.075458951294422,0.010217132046819]],[[0.041029896587133,-0.016231125220656,-0.0012769188033417],[-0.019172074273229,-0.030795820057392,-0.0062614772468805],[0.010179131291807,-0.00013594560732599,0.028962079435587]],[[0.055713806301355,-0.0054926271550357,-0.017760535702109],[-0.028883770108223,0.046874564141035,0.031911607831717],[-0.081439442932606,-0.0012222825316712,-0.025291195139289]],[[0.059235662221909,0.084294907748699,0.063660055398941],[-0.049001321196556,-0.026232728734612,0.079185754060745],[-0.016484055668116,-0.0065097380429506,0.055043905973434]],[[-0.010128773748875,-0.036983817815781,0.007298284675926],[0.017259346321225,0.030480585992336,-0.0036921573337168],[-0.019204039126635,-0.012071146629751,0.035684026777744]],[[0.020278647542,-0.036659050732851,-0.036955282092094],[0.096328862011433,0.0041720629669726,0.031895093619823],[-0.024718867614865,-0.030352327972651,-0.0051143844611943]],[[-0.025030009448528,0.014445997774601,0.027153547853231],[-0.026452891528606,-0.044212371110916,0.014338710345328],[-0.005060110706836,0.013829367235303,0.031134465709329]],[[-0.022400539368391,-0.020901819691062,0.012284805066884],[0.051541946828365,-0.025691159069538,-0.058828074485064],[0.014070116914809,0.053704414516687,0.038127154111862]],[[-0.013174905441701,-0.0057100672274828,0.024474460631609],[-0.056312337517738,0.049120236188173,-0.015868643298745],[0.026484860107303,0.039483789354563,-0.10131860524416]],[[-0.038697116076946,0.020723558962345,-0.026071097701788],[0.0059583531692624,0.093953147530556,0.025675058364868],[-0.0046954532153904,0.054448626935482,0.0061297114007175]],[[-0.014845747500658,0.016526130959392,-0.018249612301588],[0.017132440581918,0.0050359689630568,0.054381541907787],[0.031809598207474,-0.028383232653141,0.014885392971337]],[[-0.037680856883526,-0.031861439347267,-0.0083037577569485],[-0.028641242533922,0.029654296115041,0.067037038505077],[-0.016430495306849,0.094473019242287,-0.0053148553706706]],[[-0.04362054169178,0.0027145219501108,0.045503985136747],[-0.0026860430371016,-0.016600726172328,0.062314234673977],[-0.033843599259853,0.0157575532794,0.063163869082928]],[[0.035714339464903,0.0094722174108028,0.0098213758319616],[-0.0083360997959971,0.039406735450029,-0.098122879862785],[-0.035684559494257,0.018734315410256,0.001621030154638]],[[-0.037825219333172,-0.061372186988592,0.064434945583344],[0.031849253922701,-0.013112443499267,-0.0085890125483274],[0.028876844793558,0.017289109528065,0.02010433934629]],[[0.02026760391891,-0.00079878605902195,0.01759173348546],[0.013408116996288,0.0095905708149076,0.037796165794134],[-0.024168346077204,0.013657392933965,0.0055415984243155]],[[0.0099737821146846,0.022753871977329,-0.011108988896012],[-0.058225903660059,-0.039483118802309,0.011635513976216],[0.060262251645327,0.0095728328451514,0.023476867005229]],[[-0.033808507025242,0.00079469347838312,0.015168339014053],[0.025731131434441,0.031711127609015,-0.056592110544443],[0.0036268085241318,0.048391491174698,-0.0078451558947563]],[[0.016727847978473,-0.0095202783122659,-0.043208602815866],[-0.025977065786719,-0.03064919449389,0.010405123233795],[-0.032090704888105,0.004819116089493,-0.038591507822275]],[[-0.0076498258858919,0.0018400760600343,0.092227473855019],[-0.029356654733419,-0.085178002715111,-0.0092247035354376],[0.026617413386703,0.033540230244398,-0.015522942878306]],[[-0.0098384618759155,-0.046336036175489,-0.015182579867542],[0.029188899323344,0.032828122377396,-0.027479819953442],[-0.004866308066994,-0.0026326947845519,-0.0045643150806427]],[[0.010962176136672,0.028806721791625,-0.019994432106614],[0.027360301464796,0.0012201125500724,0.0085163256153464],[0.030206715688109,0.028259364888072,-0.023012721911073]],[[-0.025182854384184,-0.029399709776044,-0.025533033534884],[0.035324916243553,-0.093702808022499,0.037327900528908],[0.030522776767612,0.069482140243053,0.023595590144396]],[[0.013468141667545,-0.039204847067595,-0.024583451449871],[0.058533299714327,-0.0070398016832769,0.038980703800917],[0.018604496493936,0.020485835149884,0.071675255894661]],[[-0.016343927010894,0.010855969041586,0.009520823135972],[-0.03613992407918,0.0030940975993872,-0.018552541732788],[-0.082921355962753,0.011288954876363,0.035231340676546]],[[-0.015797141939402,-0.074845492839813,-0.071049556136131],[-0.014182926155627,0.046536095440388,0.01566063053906],[0.0021813693456352,-0.017462708055973,0.097226798534393]],[[0.033627711236477,0.018788741901517,-0.013569433242083],[0.0079446267336607,-0.031294737011194,-0.031730987131596],[-0.066871501505375,0.018782332539558,0.010710370726883]],[[0.063254587352276,-0.068488694727421,0.01106804702431],[0.044442787766457,-0.036135442554951,0.011038221418858],[0.050298925489187,0.041549384593964,-0.0261519998312]],[[0.062412235885859,0.0040763765573502,0.041221745312214],[0.013150366023183,0.017826793715358,-0.026046836748719],[0.067721500992775,-0.030629973858595,-0.059167440980673]],[[0.057770285755396,0.01770949177444,-0.051865600049496],[-0.0057148095220327,-0.0047301244921982,-0.051756747066975],[0.05560003593564,0.030158214271069,-0.01188390981406]],[[0.021237006410956,0.041103832423687,-0.07335003465414],[0.03839760273695,0.026798529550433,-0.057948380708694],[0.040638349950314,0.063043035566807,0.072250664234161]],[[0.036539498716593,-0.050563629716635,0.058170273900032],[-0.048187714070082,-0.010940848849714,0.089961156249046],[0.061263673007488,-0.011882945895195,-0.052303392440081]],[[-0.035646498203278,0.032142542302608,0.0071284337900579],[0.061755035072565,-0.0052935681305826,0.066687248647213],[-0.026058463379741,0.0032017279881984,-0.021358828991652]],[[0.0062335515394807,0.022935463115573,0.020059967413545],[-0.034911908209324,0.074636250734329,-0.031285796314478],[-0.0043708360753953,0.039777055382729,-0.0072579509578645]],[[-0.0061679575592279,0.03131890296936,-0.039687011390924],[0.066092856228352,-0.011643433943391,-0.01904465071857],[0.005469880066812,0.026729179546237,-0.095499500632286]],[[-0.03739295527339,0.032875493168831,0.024588728323579],[-0.014049225486815,0.0071825929917395,-0.029613394290209],[-0.011928605847061,0.025126028805971,0.026579637080431]],[[0.065564334392548,-0.018868679180741,0.030886335298419],[-0.016890499740839,-0.016394261270761,0.026281338185072],[-0.020504876971245,-0.0010303416056558,0.02746444940567]],[[0.038535960018635,-0.024480991065502,-0.10314776003361],[0.038648698478937,0.04968535900116,0.006181369535625],[-0.044404447078705,0.043427661061287,-0.0074731903150678]],[[-0.094055019319057,-0.004109850153327,-0.013748676516116],[0.027596823871136,0.0070282127708197,0.049584593623877],[-0.021089663729072,-0.0049053407274187,-0.021081125363708]],[[0.01203123293817,0.03192937746644,0.008708412759006],[-0.022238543257117,-0.015031495131552,-0.028780685737729],[0.024579063057899,-0.031063610687852,-0.046406537294388]],[[-0.068678766489029,-0.08608690649271,0.027766177430749],[0.046733044087887,-0.058832820504904,0.01354063488543],[0.023269968107343,-0.083259493112564,0.061669785529375]],[[-0.0020232468377799,0.013914036564529,-0.0068607958965003],[-0.042611062526703,-0.039887808263302,-0.016108041629195],[0.014764815568924,0.088974297046661,0.078359626233578]],[[0.072694577276707,-0.026201292872429,-0.0082992007955909],[-0.022831643000245,-0.015340806916356,0.0081186192110181],[-0.049601297825575,0.0040011364035308,-0.0055669583380222]],[[-0.015645379200578,-0.0089186187833548,0.056712664663792],[-0.052572377026081,-0.027972569689155,0.04198145866394],[-0.031045407056808,-0.029436776414514,0.05296366661787]],[[0.025503849610686,0.0092483460903168,0.014926750212908],[0.0056619262322783,-0.017916200682521,-0.042790167033672],[-0.019581386819482,-0.088972508907318,0.03237434849143]],[[0.0060443463735282,0.072195611894131,-0.020525678992271],[0.023619063198566,-0.024065399542451,0.016073577105999],[-0.021503325551748,-0.0061113750562072,0.033316180109978]],[[-0.031358174979687,0.037410214543343,-0.018141010776162],[0.0005650011007674,0.080013789236546,0.033888068050146],[-0.073753707110882,-0.057466812431812,-0.037067778408527]],[[0.017534006386995,0.049015827476978,-0.0098099485039711],[0.023510487750173,-0.017214745283127,0.065930418670177],[0.017827836796641,-0.071195028722286,-0.024571757763624]],[[-0.022629793733358,0.0027080522850156,0.014034733176231],[-0.0097335791215301,-0.035922273993492,0.038982138037682],[0.023874562233686,-0.14017477631569,0.059979371726513]],[[-0.0014613498933613,0.011572118848562,0.010011356323957],[-0.04831151291728,0.0043356460519135,0.078848548233509],[0.03400868922472,-0.049620978534222,0.02549079619348]],[[0.014437128789723,-0.0084233488887548,-0.049448352307081],[-0.055475387722254,-0.061003934592009,-0.19165161252022],[-0.023292638361454,-0.027354450896382,-0.093493320047855]],[[-0.051286917179823,0.00039730494609103,0.029132537543774],[0.014491288922727,0.029986625537276,-0.011569926515222],[0.050687275826931,0.011300092563033,0.018045740202069]],[[-0.051336206495762,-0.0016367436619475,0.0148068331182],[0.0049716057255864,-0.025456147268414,-0.028978582471609],[-0.011226112954319,0.059876028448343,-0.039303429424763]],[[-0.043657515197992,0.0081440145149827,-0.087442196905613],[0.0054893926717341,0.023693270981312,0.062684051692486],[0.062933504581451,-0.030718626454473,0.046243991702795]],[[0.023650407791138,-0.034950785338879,-0.0079344753175974],[-0.037468038499355,-0.016436936333776,-0.01308776345104],[0.032220847904682,0.0065023140050471,-0.037641365081072]],[[0.024303995072842,-0.0073891514912248,0.005638100206852],[-0.019767388701439,0.029742268845439,-0.046072591096163],[0.048266410827637,0.037227515131235,-0.012579741887748]],[[0.0011609983630478,-0.071631088852882,-0.01411734521389],[-0.018019426614046,0.02548948302865,-0.015461380593479],[-0.0039711436256766,0.021082075312734,0.037314645946026]],[[0.071668088436127,-0.030877279117703,-0.059840645641088],[-0.03036648593843,0.067225821316242,0.045294132083654],[0.019580690190196,0.0062947375699878,-0.016083106398582]],[[0.019055336713791,0.039229478687048,0.0011512149358168],[-0.072973266243935,0.040692504495382,0.010677839629352],[0.014860856346786,-0.014943667687476,-0.0095506627112627]],[[0.0098084704950452,0.0085923196747899,-0.010462874546647],[0.0030449193436652,-0.049826145172119,0.0023787163663656],[0.036266092211008,-0.00070707662962377,0.049801889806986]],[[-0.0064712730236351,0.0031146605033427,0.044188763946295],[0.01205753069371,-0.042240671813488,0.0023348135873675],[-0.01509408839047,0.083170473575592,-0.013548876158893]],[[-0.028623320162296,-0.010853399522603,-0.028356937691569],[0.033758945763111,0.046745616942644,-0.012194822542369],[-0.0036154054105282,0.046784609556198,0.0023845427203923]],[[-0.0016026392113417,-0.040372129529715,-0.05196363478899],[0.004149675834924,-0.05247126147151,-0.00093269051285461],[0.055137101560831,-0.039373364299536,0.015978427603841]],[[-0.035239949822426,0.030845684930682,0.02249614149332],[-0.031999729573727,0.050835404545069,0.055033255368471],[0.058688499033451,-0.05284321680665,-0.021045003086329]],[[-0.0071045998483896,-0.022583171725273,-0.074653439223766],[-0.014736531302333,0.090869165956974,0.03239792957902],[0.012054244987667,0.077840998768806,0.0051492238417268]],[[-0.002444141311571,0.01524196844548,0.043046690523624],[0.042608797550201,0.016959922388196,0.0028657633811235],[-0.0077047869563103,-0.0063297562301159,-0.0062229624018073]],[[0.0089682685211301,0.039430841803551,0.070189498364925],[-0.0089137982577085,-0.017082808539271,-0.056571424007416],[0.026226226240396,0.011961092241108,0.02524147555232]],[[0.049333099275827,0.004716937430203,-0.010354427620769],[-0.039383009076118,0.027289470657706,0.019723178818822],[-0.021739842370152,0.003048510523513,-0.012210861779749]]],[[[0.044091131538153,0.06082596629858,-0.043855916708708],[-0.014987239614129,-0.066087566316128,0.047613803297281],[-0.027755090966821,0.062016244977713,-0.00037662338581868]],[[0.033309541642666,0.013475183397532,0.028386747464538],[-0.042129345238209,-0.14384885132313,0.043488215655088],[0.011454480700195,0.037706669420004,-0.0532580986619]],[[0.17174373567104,0.12466319650412,0.031624462455511],[0.0079681714996696,-0.049205716699362,0.027698412537575],[-0.075996853411198,0.0072709759697318,-0.024934848770499]],[[0.018010653555393,-0.1044353172183,-0.057802826166153],[0.054662019014359,0.0023770304396749,-0.037093207240105],[0.041412077844143,-0.11211221665144,0.00081725732889026]],[[0.0097986645996571,-0.026707602664828,0.0020264480262995],[-0.024447042495012,0.055731792002916,-0.044967129826546],[0.029160166159272,-0.035099044442177,-0.058823827654123]],[[-0.04080218449235,0.04939953237772,0.034955363720655],[0.020337224006653,-0.010201591067016,0.095035582780838],[-0.04044171795249,-0.0065979114733636,-0.059481978416443]],[[-0.020934034138918,-0.016746481880546,-0.015161736868322],[-0.02330445125699,-0.05132257193327,-0.063108332455158],[-0.0028504598885775,0.026555201038718,0.038120720535517]],[[0.037223473191261,-0.055456858128309,0.0027577185537666],[-0.0096575915813446,-0.0086328526958823,0.017104625701904],[3.4785545722116e-05,0.057173158973455,-0.032635297626257]],[[0.016925852745771,-0.0091774081811309,0.088195793330669],[0.03223617747426,-0.042683303356171,0.03101827763021],[-0.076405130326748,0.036709025502205,0.012032681144774]],[[0.0017928568413481,-0.018009584397078,0.025369267910719],[0.025267204269767,-0.0062044183723629,-0.025565860792994],[0.043902676552534,-0.043782774358988,0.016450891271234]],[[-0.062244057655334,-0.012772924266756,0.01037114020437],[-0.045382261276245,-0.037469588220119,0.0059210662730038],[-0.010885957628489,0.041555009782314,0.036260910332203]],[[0.095984108746052,-0.029744679108262,0.015910398215055],[-0.019619384780526,0.074448235332966,-0.033623792231083],[0.044821888208389,-0.021494379267097,0.034992702305317]],[[0.0035797564778477,-0.10058477520943,0.025548744946718],[0.013465812429786,-0.013796293176711,0.033202718943357],[-0.0059220483526587,0.051061768084764,0.052565280348063]],[[0.032396297901869,-0.011769033037126,-0.067749783396721],[0.13715577125549,0.10210394114256,-0.088686369359493],[-0.061750371009111,0.07712334394455,0.026362475007772]],[[0.0090156821534038,-0.027849610894918,0.069639712572098],[0.094748064875603,-0.0060819569043815,0.01067622192204],[0.048261307179928,-0.077690921723843,0.072300247848034]],[[0.021504655480385,-0.0053203441202641,0.095425352454185],[-0.017550999298692,-0.069068886339664,0.092868097126484],[-0.034123532474041,-0.026178363710642,-0.014296183362603]],[[-0.0059934947639704,-0.042817059904337,0.014186912216246],[-0.0075073833577335,-0.021509243175387,-0.024069342762232],[0.026430066674948,0.030186150223017,0.017743719741702]],[[-0.072833828628063,-0.04976012930274,0.024469267576933],[0.0060082082636654,0.06998860090971,-0.025763096287847],[-0.0029184196610004,0.0041683842428029,-0.0094905067235231]],[[-0.030352374538779,0.01426150277257,0.0018252423033118],[0.029932105913758,-0.00295459642075,0.059295177459717],[-0.013328940607607,-0.10462684929371,-0.040019568055868]],[[0.010455654002726,0.017002178356051,-0.0028218643274158],[-0.00057469663443044,-0.0039808177389205,-0.0069835493341088],[0.027648167684674,-0.070473186671734,-0.030150292441249]],[[0.050130680203438,-0.032149828970432,-0.03203009814024],[-0.043758291751146,0.064159341156483,0.084036871790886],[0.016336830332875,0.039892785251141,0.051745925098658]],[[0.066744431853294,0.046827748417854,0.0024643079377711],[0.0028338718693703,-0.03260375931859,0.0315259732306],[0.045922487974167,-0.015405494719744,-0.024612726643682]],[[0.05533516779542,-0.022024147212505,0.031789902597666],[-0.044168066233397,-0.024562485516071,-0.016334859654307],[-0.020517123863101,-0.056689973920584,0.014829653315246]],[[-0.053742133080959,0.023259352892637,0.00032540562096983],[0.019593227654696,-0.022335970774293,0.049009200185537],[0.11035217344761,0.063342228531837,-0.015144426375628]],[[0.016200365498662,0.061594877392054,0.034808319061995],[-0.087595507502556,-0.029076889157295,-0.054421070963144],[-0.070724859833717,0.0030799969099462,0.0065493402071297]],[[0.012855329550803,-0.083766870200634,0.042049612849951],[-0.019033934921026,-0.017987785860896,0.011100078001618],[-0.050673499703407,0.037238102406263,0.0040521170012653]],[[0.0040896800346673,0.0033428827300668,-0.008964273147285],[0.086023837327957,0.027963120490313,-0.042055539786816],[0.10261651128531,0.034635502845049,0.014233849011362]],[[-0.024824094027281,-0.012147760950029,0.0056894333101809],[-0.079578131437302,-0.04122057929635,-0.037473112344742],[-0.00040528306271881,0.010553136467934,-0.0038127144798636]],[[-0.031488880515099,0.053935948759317,0.018220501020551],[0.033907990902662,0.051682960242033,-0.004867862444371],[0.024646146222949,0.027040064334869,0.014176925644279]],[[0.042024854570627,-0.017857229337096,-0.0088655781000853],[-0.015292873606086,0.03009639121592,-0.004159374628216],[0.067927829921246,-0.009066253900528,0.02965965680778]],[[0.011586298234761,0.04400971159339,0.026128154247999],[-0.020608380436897,-0.052628334611654,-0.014749303460121],[0.052088290452957,0.0053184307180345,-0.0065886816009879]],[[-0.066705875098705,0.0029577061068267,-0.0092844357714057],[0.040803886950016,0.020698850974441,0.010138512589037],[0.063949823379517,-0.026923945173621,0.064977332949638]],[[-0.012058837339282,-0.052863527089357,-0.0081722037866712],[-0.0070150000974536,-0.037370376288891,0.035827323794365],[-0.033073928207159,-0.0022258760873228,-0.035162884742022]],[[-0.032920762896538,-0.020336030051112,-0.016824120655656],[-0.018975293263793,0.017380449920893,0.065975710749626],[-0.038383889943361,0.039987493306398,0.074605546891689]],[[-0.016574686393142,-0.073227785527706,0.00020566051534843],[-0.097212456166744,0.05771504342556,0.010967815294862],[0.017683839425445,0.0042361817322671,-0.0091535178944468]],[[0.0018214468145743,-0.017569102346897,-0.044806338846684],[-0.006040814332664,-0.013319820165634,-0.016732485964894],[-0.049365289509296,-0.074417747557163,-0.058879353106022]],[[0.028076799586415,-0.0024925270117819,0.0046601551584899],[0.043110549449921,-0.022676220163703,0.083183154463768],[-0.020093843340874,-0.025139756500721,0.047689951956272]],[[0.058429040014744,-0.011697188019753,-0.055524948984385],[0.030807370319963,0.034651774913073,0.0081825759261847],[0.032404314726591,0.020441994071007,0.039698086678982]],[[0.021241119131446,-0.02798219025135,0.027993761003017],[0.10081385076046,-0.061671115458012,0.055586166679859],[-0.018219847232103,0.034269347786903,0.036383461207151]],[[0.0068942564539611,-0.033277455717325,-0.0097753284499049],[0.0099262129515409,0.029428392648697,-0.02481385320425],[-0.013862116262317,0.021138336509466,0.011032238602638]],[[0.025063090026379,-0.072955839335918,-0.039291616529226],[0.027974603697658,-0.034346856176853,-0.025661928579211],[0.057414434850216,0.063385397195816,-0.049511045217514]],[[0.020827664062381,0.06598124653101,-0.045113317668438],[0.015902927145362,0.040230982005596,-0.02265296317637],[-0.099636770784855,-0.031393580138683,-0.00025122010265477]],[[0.013237707316875,-0.040850806981325,0.039073083549738],[0.040384531021118,0.054976940155029,-0.017669161781669],[0.053188469260931,0.10367579758167,0.077646754682064]],[[-0.042045675218105,-0.012267495505512,-0.027222149074078],[-0.06432843208313,0.040413420647383,-0.0094364043325186],[-0.011962303891778,-0.0068002296611667,-0.045722346752882]],[[0.060962155461311,-0.050088748335838,0.010093741118908],[0.015812626108527,-0.0030888665933162,0.010239444673061],[-0.013007499277592,-0.017446732148528,-0.029637701809406]],[[-0.040064111351967,-0.05829294770956,0.012011175975204],[0.052084963768721,-0.10122079402208,-0.0080357128754258],[0.013863136991858,-0.082001961767673,0.031803093850613]],[[-0.02400297857821,0.1312490850687,0.014007661491632],[-0.033636119216681,-0.0030057057738304,-0.0064950888045132],[-0.04017736390233,0.0044104028493166,-0.032825622707605]],[[-0.012811101041734,-0.023183207958937,-0.025319267064333],[0.085746847093105,0.015279286541045,-0.021799882873893],[-0.012803190387785,0.010979793034494,-0.036832004785538]],[[-0.012275581248105,-0.063016310334206,-0.02414633706212],[0.050523590296507,0.0038831245619804,0.014682834967971],[-0.00096917111659423,0.071276821196079,0.024051479995251]],[[0.013654467649758,-0.041670456528664,0.0144222388044],[-0.11662080138922,0.026211760938168,0.02730611898005],[-0.021226378157735,0.0011677979491651,0.095396555960178]],[[0.019811859354377,0.01614405401051,-0.039234776049852],[0.064701117575169,0.050029881298542,0.026352565735579],[0.010568030178547,0.033835489302874,0.037393800914288]],[[0.025218490511179,-0.018201034516096,-0.020087203010917],[-0.052003003656864,0.026523241773248,-0.038762900978327],[-0.0050193280912936,0.053771458566189,0.044912669807673]],[[0.019873548299074,-0.080807410180569,-0.0048574567772448],[-0.14558014273643,0.044890146702528,0.014352290891111],[0.020978922024369,-0.010456137359142,-0.016481513157487]],[[-0.0016873355489224,0.07630418241024,0.0067312060855329],[-0.0054811052978039,-0.0036151499953121,-0.00034786175820045],[-0.012428386136889,0.038757815957069,-0.035768840461969]],[[0.089389353990555,-0.04985672980547,0.0037667383439839],[-0.00027351113385521,0.052900712937117,0.027483362704515],[0.034162055701017,-0.01046519447118,0.0074882749468088]],[[-0.039210636168718,-0.007933889515698,0.051368203014135],[0.037353329360485,0.071688242256641,0.041129488497972],[0.0085595240816474,0.053822949528694,-0.011818652972579]],[[0.050871826708317,-0.038884703069925,-0.044092550873756],[-0.02460153773427,0.034576028585434,-0.052950534969568],[0.036985471844673,0.021502805873752,-0.065548703074455]],[[0.015577550977468,-0.038429789245129,-0.028090983629227],[-0.035872347652912,0.036259617656469,-0.014565775170922],[-0.041530191898346,0.04581455886364,0.044454727321863]],[[-0.039796508848667,0.01844827644527,0.0038793440908194],[0.025889417156577,0.023953752592206,-0.0065854014828801],[0.049111440777779,0.057450525462627,-0.018366526812315]],[[0.057821031659842,-1.8402606656309e-05,0.001026201993227],[-0.043836664408445,-0.013615516014397,-0.043099530041218],[-0.034629285335541,-0.011436111293733,0.0019733265507966]],[[-0.022652851417661,0.012574479915202,0.049526542425156],[-0.060918219387531,0.0053540044464171,0.0048549775965512],[0.031372271478176,0.060521617531776,0.10332282632589]],[[-0.10581380873919,0.0089061446487904,0.065163888037205],[0.023563090711832,0.012871905229986,0.0048114354722202],[0.051621060818434,0.0030644221697003,0.038210671395063]],[[-0.044477354735136,0.040423292666674,-0.050630882382393],[0.040500979870558,0.074711330235004,-0.05559054762125],[0.024266537278891,0.045780126005411,-0.0034640813246369]],[[-0.016649845987558,0.068402327597141,0.0077850902453065],[0.025094905868173,-0.069939561188221,-0.022325215861201],[0.013178842142224,-0.0012586588272825,-0.013752859085798]],[[0.062573276460171,0.0043053906410933,0.03508061543107],[0.062223389744759,-0.03312636911869,0.0028467604424804],[-0.0062230448238552,-0.063416019082069,0.038435488939285]],[[0.082826867699623,0.034226723015308,0.018843833357096],[-0.046380590647459,0.049556545913219,-0.001377064967528],[0.033922526985407,-0.018203200772405,0.060423400253057]],[[-0.038227695971727,-0.0096023110672832,0.01150416303426],[-0.024267744272947,-0.031214606016874,-0.025768231600523],[-0.033581592142582,0.0095272529870272,0.065742515027523]],[[0.029754374176264,-0.0011576582910493,0.0076704644598067],[-0.0033650782424957,0.015817115083337,0.015746789053082],[0.042736046016216,-0.0016054107109085,-0.013182879425585]],[[-0.015001565217972,-0.011753601022065,0.045688390731812],[-0.015022514387965,-0.061098162084818,0.002296342048794],[-0.078289300203323,-0.043710563331842,0.050421219319105]],[[0.036584462970495,-0.022808698937297,-0.013387472368777],[-0.021710079163313,0.035451259464025,0.020936323329806],[-0.01019490044564,-0.011680580675602,-0.062315013259649]],[[0.023837713524699,0.018445655703545,-0.054375611245632],[0.037830837070942,0.059985291212797,0.029850048944354],[0.044405408203602,0.01582520082593,0.10935606062412]],[[0.017510816454887,-0.075075149536133,0.00089904345804825],[-0.036163438111544,-0.033944342285395,0.021863862872124],[0.06918141245842,-0.014017811976373,0.021422930061817]],[[-0.0053769992664456,-0.047712001949549,-0.018249144777656],[0.021822458133101,-0.098848395049572,0.064407266676426],[-0.014223455451429,-0.072173021733761,0.038330640643835]],[[-0.03396400436759,0.0026902097743005,-0.02579484321177],[0.048897564411163,0.050720848143101,0.057979576289654],[0.05676743760705,-0.043840169906616,-0.03168199211359]],[[0.13832189142704,0.010098796337843,-0.078661106526852],[-0.032382898032665,-0.028326461091638,0.098421491682529],[0.00035283938632347,0.027998708188534,0.084909923374653]],[[0.022066982463002,0.067827805876732,0.049025852233171],[0.035636685788631,0.051248028874397,-0.011424698866904],[0.0082038873806596,0.025062719359994,0.04686389490962]],[[-0.043724823743105,0.026298396289349,-0.030506227165461],[0.059919379651546,0.01404757797718,-0.0082973586395383],[-0.025072725489736,-0.032521713525057,0.01586939021945]],[[0.032724492251873,0.046484958380461,0.070059932768345],[0.0028919517062604,0.021067542955279,0.04517088830471],[0.054330132901669,0.024546694010496,-0.019453251734376]],[[0.058686703443527,0.016335131600499,0.03762125223875],[0.077861987054348,-0.026633253321052,-0.0054968362674117],[-0.01683497428894,0.00014560583804268,0.035683825612068]],[[0.015851775184274,-0.06120440736413,0.0040564779192209],[0.00053494144231081,0.041177406907082,0.012035730294883],[-0.016609337180853,0.033075645565987,-0.031142082065344]],[[-0.0045720469206572,-0.093568220734596,-0.04925324395299],[0.020883643999696,-0.031642813235521,0.040412113070488],[-0.011999450623989,-0.024960709735751,0.005392637103796]],[[-0.046504247933626,0.066796369850636,0.0099090505391359],[0.033782128244638,-0.05736580491066,0.027967792004347],[-0.01635012216866,0.050706144422293,-0.085504546761513]],[[-0.036010175943375,0.047507792711258,0.02738780900836],[-0.049043200910091,0.010922701098025,-0.10646384209394],[0.027363484725356,0.071968503296375,-0.05309472233057]],[[0.0058309105224907,0.01607707887888,0.070738427340984],[0.058195319026709,0.056718688458204,0.054451245814562],[-0.0028768982738256,0.048538185656071,-0.088699720799923]],[[-0.012884595431387,0.056918893009424,0.091375529766083],[-0.071592345833778,0.038460627198219,-0.015734728425741],[-0.041865237057209,0.051854569464922,0.04232669621706]],[[0.039560593664646,-0.043506354093552,-0.025092551484704],[-0.011073214933276,0.007594789378345,-0.030578667297959],[-0.033928006887436,-0.024868007749319,-0.01847118884325]],[[0.04847714677453,-0.0014349016128108,0.014159240759909],[-0.056407675147057,-0.0032607917673886,0.046030189841986],[0.037122279405594,0.00064186961390078,-0.048433281481266]],[[0.033111352473497,-0.063367567956448,0.041942946612835],[0.085422836244106,-0.005835501011461,-0.035677026957273],[-0.020143758505583,-0.060455124825239,0.093873336911201]],[[0.052947726100683,-0.063250996172428,-0.036599304527044],[-0.034878134727478,-0.015863670036197,-0.0068355356343091],[0.020465409383178,0.048504203557968,-0.034297522157431]],[[-0.022073367610574,-0.11151088029146,-0.0136684384197],[-0.0078013413585722,0.0097529506310821,-0.013217872008681],[-0.002347094938159,0.024434689432383,-0.062488291412592]],[[0.034388147294521,-0.083083972334862,-0.017355445772409],[-0.01208127476275,-0.044589001685381,0.094098635017872],[-0.023952333256602,-0.012651047669351,-0.024733865633607]],[[-0.02958063967526,0.10946263372898,-0.0072891269810498],[0.0084703667089343,-0.035804186016321,-0.044659923762083],[0.089450195431709,0.049851022660732,0.056771248579025]],[[-0.01267062406987,0.01584231108427,-0.012493495829403],[0.084614053368568,-0.068703509867191,-0.026768185198307],[0.024164894595742,-0.11518298834562,0.055675383657217]],[[0.025097478181124,0.043558653444052,0.027328617870808],[-0.067663840949535,0.073298908770084,0.040492277592421],[-0.05814965441823,0.015720818191767,0.04356487467885]],[[0.0046615796163678,0.0052284654229879,-0.0044370428659022],[-0.011949674226344,-0.019205808639526,-0.036582492291927],[0.032895892858505,0.0034226761199534,0.016731923446059]],[[0.070992857217789,-0.039668191224337,0.077432282269001],[-0.006075004581362,-0.071970768272877,-0.086440160870552],[0.021429013460875,-0.03466035053134,-0.016270842403173]],[[0.054872404783964,0.025188768282533,0.0019068866968155],[-0.0022084368392825,-0.0066358204931021,0.055019613355398],[0.0070907776243985,0.010727072134614,-0.01621475815773]],[[-0.032677978277206,0.026233322918415,0.011521592736244],[0.013547282665968,0.072877384722233,0.0076319924555719],[-0.014913698658347,-0.026293002068996,-0.013593346811831]],[[-0.040514100342989,-0.064543679356575,0.018802665174007],[-0.014903761446476,-0.038541398942471,0.037725307047367],[-0.081827431917191,-0.024400614202023,-0.041879151016474]],[[-0.026578135788441,-0.077519133687019,-0.082284308969975],[-0.012924055568874,0.033913057297468,0.0025091872084886],[0.019464880228043,-0.027708796784282,-0.053401481360197]],[[-0.0093556558713317,0.0072614601813257,-0.037896770983934],[-0.0020102118141949,-0.018277866765857,-0.034751713275909],[-0.077410452067852,0.0019760113209486,0.075280658900738]],[[0.021383328363299,0.049541532993317,0.090095922350883],[0.037422575056553,-0.0026836241595447,-0.052601624280214],[0.11287041753531,0.015804069116712,0.0070263454690576]],[[0.064829148352146,-0.013891149312258,0.10141510516405],[-0.022814530879259,0.05364903435111,-0.010515603236854],[-0.0017118849791586,-0.0019864616915584,-0.040467903017998]],[[0.058730166405439,-0.046452265232801,-0.005588608328253],[-0.049501035362482,-0.0015098211588338,-0.028895009309053],[0.047229062765837,-0.03644135594368,0.019216388463974]],[[0.014402382075787,-0.035896401852369,-0.0080914394930005],[0.075220748782158,-0.060642596334219,-0.027672590687871],[0.014104286208749,0.029632318764925,-0.03968620672822]],[[0.0087389731779695,0.011929485946894,-0.034197799861431],[0.039371408522129,-0.017072079703212,-0.064352124929428],[0.0098755676299334,0.033429812639952,0.032755672931671]],[[-0.076116450130939,-0.031873293220997,0.031844865530729],[0.073716968297958,0.01511824503541,-0.022719763219357],[-0.010183040983975,-0.00652049575001,0.026685748249292]],[[0.030322367325425,0.022255895659328,0.025093646720052],[-0.025077262893319,0.0098390681669116,-0.015044927597046],[-0.043975234031677,-0.0078605990856886,-0.0097748497501016]],[[0.015578961931169,0.045689582824707,0.00045713200233877],[-0.041605737060308,0.081685252487659,0.0036477579269558],[-0.039529666304588,0.047308828681707,-0.030271867290139]],[[-0.016500879079103,0.092761673033237,0.028017852455378],[0.079540900886059,-0.0034264642745256,0.029064318165183],[-0.11373598128557,0.029869996011257,0.036881297826767]],[[-0.015859736129642,0.0027073773089796,0.028042213991284],[0.079547390341759,0.0083773974329233,0.081360131502151],[0.050058968365192,0.040529675781727,0.0436503700912]],[[0.011375023052096,-0.015446092002094,0.03279834985733],[0.01432482432574,-0.021136790513992,0.0094873299822211],[0.028697924688458,-0.012248943559825,0.0050322087481618]],[[0.0150325614959,-0.005603073630482,0.057095244526863],[0.030706189572811,-0.016583397984505,-0.01430357247591],[-0.010772566311061,0.033805120736361,-0.037199161946774]],[[0.074984312057495,-0.0028858766891062,0.010223158635199],[0.00068579195067286,0.060760200023651,-0.019501527771354],[0.055915802717209,-0.04101138189435,0.037224438041449]],[[0.0076623125933111,-0.0072114537470043,0.060337278991938],[0.057100292295218,-0.018936922773719,0.032506018877029],[0.087260738015175,-0.042252540588379,-0.053207349032164]],[[-0.026494722813368,-0.002402521437034,0.00069290969986469],[0.034111578017473,-0.034353580325842,-0.12145718187094],[0.001656383392401,0.032203748822212,0.0041696894913912]],[[0.051977977156639,0.026166727766395,0.061309792101383],[-0.040064595639706,0.0031997011974454,-0.041082616895437],[-0.023046130314469,0.0033430159091949,-0.011289623565972]],[[0.031683467328548,0.0095481611788273,-0.020224925130606],[0.028018120676279,-0.024008620530367,0.0095429820939898],[-0.00064732308965176,0.0010579817462713,0.0037873408291489]],[[0.02839083224535,-0.021205937489867,-0.051458582282066],[-0.023270297795534,0.055321712046862,-0.055696457624435],[0.028316039592028,0.012045292183757,-0.0096142599359155]],[[0.021369783207774,0.00055101671023294,-0.036475110799074],[-0.039067007601261,0.056920479983091,-0.0079587753862143],[-0.010705194436014,-0.024589456617832,-0.027753308415413]],[[0.016445586457849,0.056562714278698,0.03497938066721],[0.087611146271229,0.0078743221238256,-0.026775633916259],[-0.01503677200526,-0.0029199223499745,0.024201676249504]],[[-0.014844374731183,0.017964852973819,-0.033960122615099],[0.077511914074421,0.026832405477762,-0.017596242949367],[0.027091352269053,-0.024052623659372,-0.11612588167191]],[[-0.020164009183645,0.072805933654308,0.040950749069452],[0.0099386293441057,0.040007881820202,-0.0076889228075743],[-0.046578340232372,0.036262936890125,0.045730318874121]],[[-0.032584704458714,0.015679961070418,0.05826111137867],[-0.019385991618037,0.027540864422917,0.010762376710773],[0.0046225474216044,0.013657773844898,0.0089181130751967]],[[-0.0094429207965732,-0.036993578076363,0.0078748660162091],[-0.0046520251780748,-0.036210350692272,0.063911557197571],[0.034878175705671,-0.084115043282509,-0.046712145209312]],[[0.023369269445539,-0.043385729193687,-0.021111559122801],[0.027437467128038,0.050610050559044,0.080891832709312],[-0.037729404866695,0.059123106300831,0.032166600227356]],[[0.026922872290015,0.016172841191292,0.04585312306881],[-0.03487116470933,0.051813114434481,-0.019546067342162],[-0.013602850958705,0.012860701419413,-0.028599124401808]],[[0.018997022882104,-0.014308547601104,0.029284812510014],[0.041263174265623,-0.041040655225515,0.0137226479128],[-0.023854941129684,-0.024075133726001,0.054511211812496]]],[[[0.12051810324192,0.032065328210592,0.047575887292624],[0.10874333977699,-0.0071566598489881,0.077124446630478],[-0.0071814521215856,-0.02906690351665,0.10279305279255]],[[-0.090381100773811,0.0087127704173326,0.038837522268295],[0.025220960378647,0.056288179010153,-0.034511245787144],[0.043922118842602,0.0043740887194872,-0.027084907516837]],[[0.018643777817488,0.10998487472534,0.0044048996642232],[-0.033942319452763,-0.0074870805256069,0.13526253402233],[0.10556731373072,0.016562463715672,-0.057323358952999]],[[-0.04351482540369,-0.066547580063343,-0.054579302668571],[-0.035612601786852,-0.017178542912006,0.058743216097355],[0.032148491591215,-0.0034167319536209,0.0031716916710138]],[[-0.062394920736551,0.079053871333599,0.055680375546217],[-0.05568789690733,-0.018190221861005,0.040290646255016],[0.015964228659868,-0.054073594510555,0.058858744800091]],[[0.05389317497611,0.038824178278446,0.01995431818068],[0.11165111511946,-0.044565979391336,-0.098013907670975],[0.15061743557453,0.037499107420444,0.012440764345229]],[[0.10163863003254,-0.0020725147332996,0.014703697524965],[0.11790043860674,-0.12332794815302,-0.087471775710583],[-0.035524677485228,0.0044427923858166,0.079485327005386]],[[0.030258731916547,0.035933747887611,0.046868190169334],[0.084949016571045,0.041855443269014,-0.025364128872752],[-0.043412819504738,0.044466983526945,-0.050368264317513]],[[0.0058028707280755,0.074045032262802,-0.050746511667967],[-0.040243107825518,-0.0034773440565914,-0.078681997954845],[-0.10694576054811,0.026315454393625,-0.12196611613035]],[[0.012898626737297,-0.031863357871771,0.044871602207422],[-0.091135285794735,0.014386930502951,-0.052788849920034],[-0.0044613783247769,-0.025526056066155,-0.024359932169318]],[[-0.066728860139847,0.0046219569630921,-0.003372760489583],[-0.034924130886793,-0.021794931963086,0.0071167810820043],[-0.073042139410973,-0.10679461807013,-0.003308076877147]],[[-0.01155908498913,0.018945302814245,0.03935743495822],[0.0021046455949545,0.033762417733669,-0.072738640010357],[-0.14911159873009,0.021846564486623,-0.13946378231049]],[[0.013865411281586,-0.051821529865265,0.044036533683538],[0.050948798656464,-0.012091281823814,0.004983430262655],[0.050587043166161,-0.017356431111693,0.01915124990046]],[[0.016273438930511,-0.10095649212599,0.080915898084641],[-0.063769400119781,-0.01256338506937,-0.053234845399857],[-0.0090173538774252,0.029413467273116,0.020732831209898]],[[0.011901778168976,0.04979620501399,0.035409014672041],[0.073837593197823,0.018656129017472,0.07085856795311],[-0.046284072101116,0.0080753471702337,-0.015566009096801]],[[-0.0093760145828128,-0.054457683116198,0.061459045857191],[-0.043929398059845,-0.044172871857882,0.030468510463834],[-0.035780563950539,-0.12094239890575,-0.044267546385527]],[[-0.074027843773365,-0.082641668617725,-0.0581044703722],[0.03280596062541,0.03437152504921,-0.039830937981606],[-0.00081930559827015,0.0034994643647224,-0.039028834551573]],[[-0.059178851544857,0.0071510835550725,-0.16128297150135],[-0.059390038251877,0.070017918944359,-0.04835420101881],[-0.11229465156794,0.16052454710007,-0.072441920638084]],[[0.035928461700678,0.012887933291495,-0.094245977699757],[0.01001781783998,0.035088937729597,-0.029158782213926],[-0.020680179819465,-0.0011436061467975,-0.057472329586744]],[[-0.098367393016815,0.052438955754042,-0.12965826690197],[-0.11236375570297,0.08480117470026,-0.10902256518602],[-0.088505670428276,0.027616422623396,-0.045604862272739]],[[0.017054906114936,-0.089464388787746,-0.010252031497657],[-0.0016711049247533,-0.053816359490156,-0.010076984763145],[-0.12509618699551,-0.0025440822355449,-0.065854467451572]],[[-0.0072379591874778,0.1033426001668,-0.062642015516758],[0.035722866654396,0.055752832442522,-0.016021527349949],[-0.040701381862164,0.028878325596452,-0.014353388920426]],[[-0.0044706389307976,-0.056803055107594,-0.037296410650015],[0.060101203620434,-0.034458067268133,-0.05987923592329],[0.094093479216099,0.0043291482143104,-0.010735994204879]],[[-0.0037908814847469,-0.053368169814348,-0.020116448402405],[0.010789077728987,-0.0026854036841542,0.014938106760383],[0.052841022610664,0.051001947373152,0.033934369683266]],[[-0.02080606482923,0.020627895370126,-0.024508928880095],[-0.061244729906321,0.062684014439583,0.006684890948236],[0.018024558201432,0.10965748876333,-0.021887036040425]],[[0.14956094324589,-0.043213654309511,0.0053385710343719],[-0.0039404714480042,-0.022502159699798,0.054691385477781],[-0.089395962655544,0.042066670954227,-0.083396837115288]],[[0.032113201916218,0.060431305319071,-0.002710118656978],[0.0065023005008698,0.061426408588886,-0.025368237867951],[0.037847045809031,-0.050773844122887,-0.0040597505867481]],[[0.017034312710166,-0.019298136234283,-0.049716554582119],[0.012348296120763,-0.026215082034469,0.02044589817524],[0.043637406080961,0.0043829260393977,0.032741822302341]],[[-0.042995125055313,0.0046874000690877,-0.0069013540633023],[0.038471415638924,-0.027648730203509,0.030132122337818],[0.068471290171146,-0.11920643597841,-0.0093419160693884]],[[-0.01718757301569,0.03210387378931,0.034991513937712],[0.10314471274614,-0.054170697927475,-0.021656971424818],[0.10518635809422,-0.019587365910411,0.030285593122244]],[[0.06065608561039,-0.017569232732058,0.032025974243879],[-0.11851661652327,-0.062796860933304,-0.018671689555049],[-0.078835599124432,-0.0024042786099017,0.042219746857882]],[[-0.00086922460468486,-0.014331147074699,-0.066325485706329],[-0.0089135505259037,0.037198483943939,-0.024269971996546],[-0.083932988345623,0.14199627935886,0.13415029644966]],[[-0.029742801561952,-0.067835383117199,-0.060329604893923],[-0.060643285512924,-0.037188339978456,0.052930895239115],[-0.10199098289013,0.013650570064783,0.091549277305603]],[[0.044248163700104,0.0062994663603604,0.11666235327721],[-0.0024962811730802,-0.016789166256785,0.032746262848377],[-0.052092686295509,0.04444732144475,0.056862071156502]],[[-0.10829040408134,-0.058920759707689,0.055486723780632],[-0.082068875432014,-0.1406369805336,-0.088245630264282],[-0.042743839323521,-0.10661173611879,-0.089445009827614]],[[-0.01073829177767,-0.02492424659431,-0.074334695935249],[-0.036990258842707,-0.040315393358469,0.0067392331548035],[-0.016392467543483,0.049460802227259,-0.0039921905845404]],[[0.099839821457863,-0.021975573152304,0.031772200018167],[0.0023134313523769,0.0041435700841248,0.05085926130414],[0.047730851918459,-0.010379897430539,0.063442587852478]],[[0.0005167024792172,-0.058776721358299,0.023712133988738],[0.0065660462714732,-0.0031796814873815,-0.012790245003998],[0.0031841879244894,0.078929468989372,-0.048998277634382]],[[0.026698913425207,0.0020980653353035,0.056468788534403],[0.049476895481348,-0.019616508856416,-0.066746897995472],[0.019408801570535,0.052850723266602,-0.14271904528141]],[[-0.069035768508911,0.019991975277662,-0.075018845498562],[-0.0036994246765971,-0.067607007920742,-0.012865578755736],[0.085210353136063,-0.08179048448801,-0.079381883144379]],[[0.06972724199295,-0.0069112782366574,0.047840062528849],[0.052170317620039,-0.063585177063942,-0.081812717020512],[0.14935803413391,-0.0028267775196582,0.0059822942130268]],[[-0.017680758610368,0.073512740433216,0.005878790281713],[-0.053267020732164,-0.029666969552636,0.090746700763702],[-0.010089627467096,0.023744601756334,0.017868928611279]],[[0.0054438202641904,0.044127073138952,0.035241190344095],[0.011262270621955,0.042347095906734,0.027155561372638],[0.017791902646422,-0.12155989557505,0.049757838249207]],[[-0.020969236269593,-0.051018167287111,-0.040222283452749],[-0.032394483685493,-0.093331940472126,0.040462959557772],[-0.12634825706482,-0.091483540832996,-0.01288253441453]],[[-0.03079504519701,-0.017128763720393,-0.040958799421787],[0.016909396275878,0.0081269480288029,-0.047885578125715],[0.093191087245941,0.016544545069337,0.075652681291103]],[[0.039695411920547,-0.016182875260711,-0.048333369195461],[0.03400969132781,-0.043041002005339,0.04929842799902],[-0.030047377571464,-0.056167125701904,0.034038748592138]],[[-0.011283996514976,-0.015167543664575,0.025444239377975],[-0.022570975124836,0.0087859639897943,-0.092581130564213],[-0.057806201279163,-0.05467976629734,-0.018547108396888]],[[0.051925919950008,-0.074439331889153,-0.019225699827075],[0.0027217452879995,0.050238110125065,0.013156794942915],[-0.00071668962482363,0.095220036804676,-0.01124837808311]],[[0.07361414283514,-0.13998264074326,-0.042344518005848],[0.021995477378368,0.018118090927601,-0.082680016756058],[-0.023750772699714,0.077122740447521,-0.04272161051631]],[[-0.02363614551723,0.0015335339121521,-0.048802141100168],[-0.0062607452273369,0.024526555091143,-0.020208371803164],[-0.0086586633697152,0.091980345547199,0.075217604637146]],[[-0.0078267585486174,0.022958433255553,0.018820442259312],[-0.00055079843150452,-0.033460505306721,0.019146522507071],[-0.026555508375168,0.063758887350559,0.037758748978376]],[[-0.0012188535183668,0.0047906902618706,0.041207700967789],[0.072505719959736,-0.0066652442328632,-0.00060257560107857],[0.022883478552103,-0.10006178170443,-0.062816254794598]],[[-0.011477202177048,-0.013778240419924,-0.033494766801596],[0.00070145993959159,-0.075289234519005,-0.0051549873314798],[-0.066679328680038,-0.039729986339808,0.02447921037674]],[[0.045367952436209,-0.028278540819883,-0.043272968381643],[0.043507318943739,-0.042011931538582,-0.022910984233022],[0.054835073649883,0.093762151896954,-0.037488091737032]],[[-0.038792673498392,-0.013686943799257,0.0082424031570554],[0.10057047009468,-0.043435998260975,-0.074282929301262],[0.079692490398884,0.055265329778194,-0.024431377649307]],[[-0.067090056836605,-0.0055366670712829,0.060443751513958],[0.04586760699749,0.012601256370544,-0.0056101614609361],[-0.017313301563263,-0.0086062820628285,0.075902126729488]],[[-0.014762063510716,0.030787525698543,0.045951329171658],[-0.045571066439152,0.031250339001417,0.0084351757541299],[0.0078790923580527,0.050072725862265,0.054216887801886]],[[-0.016241738572717,-0.13579742610455,0.087213650345802],[-0.022250408306718,-0.044474236667156,0.022046880796552],[-0.035065483301878,-0.011848656460643,-0.025685653090477]],[[-0.0023950566537678,0.061428233981133,-0.014499485492706],[-0.045103598386049,-0.027938891202211,-0.090034537017345],[0.10569213330746,-0.057326387614012,0.04757571592927]],[[0.099330499768257,-0.04554596170783,0.087296716868877],[0.081438489258289,-0.10510674864054,0.0097820907831192],[0.042123936116695,-0.10997363179922,0.068117327988148]],[[-0.061146542429924,-0.05234656855464,0.10504410415888],[-0.017192896455526,-0.0015442384174094,0.11455008387566],[-0.059447921812534,0.01191498618573,0.045145865529776]],[[-0.092493802309036,-0.077409006655216,0.12047722190619],[0.15237954258919,-0.034348551183939,-0.089945040643215],[0.038309801369905,-0.018388569355011,-0.054827611893415]],[[0.075506821274757,-0.0037156483158469,0.034850306808949],[0.036056023091078,0.07349019497633,0.012842427007854],[0.015091547742486,-0.043936539441347,0.10038352012634]],[[0.057806454598904,-0.092553220689297,0.14613696932793],[-0.057906717061996,0.00274977250956,-0.13198806345463],[-0.029925744980574,0.11800348013639,-0.052879687398672]],[[-0.019134096801281,-0.052439864724874,-0.028166674077511],[0.18222211301327,-0.055489934980869,-0.0095775835216045],[0.068575739860535,-0.066356651484966,0.16952058672905]],[[-0.0042209690436721,0.019481647759676,-0.022989286109805],[-0.031429503113031,0.070536755025387,0.0066353674046695],[-0.052210614085197,-0.044444032013416,-0.039974380284548]],[[0.013324149884284,0.044853273779154,0.032799035310745],[-0.043978273868561,0.014709059149027,-0.011513731442392],[-0.066251590847969,0.026078619062901,-0.083217054605484]],[[-0.0787717923522,-0.012483485043049,-0.014675484970212],[-0.0074232104234397,-0.05500403046608,-0.047592170536518],[0.038819316774607,-0.013544973917305,-0.023843340575695]],[[-0.046215087175369,0.017572592943907,0.099639765918255],[0.013568412512541,-0.023931516334414,0.029589267447591],[-0.014475932344794,0.052038338035345,0.013988324441016]],[[-0.061049979180098,-0.038080412894487,0.19721777737141],[-0.052539844065905,-0.0075582605786622,0.02542726136744],[-0.074141904711723,-0.0043044821359217,-0.0016356974374503]],[[-0.016361808404326,0.078251756727695,0.078507095575333],[-0.031181482598186,0.021976731717587,0.022474834695458],[-0.014803527854383,0.019629383459687,0.029859790578485]],[[-0.010702693834901,-0.012036170810461,0.03451881930232],[0.07720248401165,0.059150472283363,0.045656379312277],[-0.012746605090797,0.016644543036819,0.011794248595834]],[[0.16884668171406,0.012444143183529,-0.053562480956316],[-0.041455507278442,-0.043206267058849,0.02584794908762],[-0.0046800696291029,-0.017914662137628,0.0018652359722182]],[[0.077091418206692,-0.037000693380833,0.0083539253100753],[0.23362989723682,0.051062989979982,-0.046163659542799],[0.051702059805393,0.033171195536852,-0.0066301850602031]],[[-0.04224057123065,0.0023740839678794,0.096910089254379],[-0.021860329434276,-0.052653394639492,0.085510358214378],[-0.092080898582935,0.056055754423141,0.042090825736523]],[[-0.052940618246794,0.065135918557644,-0.024126872420311],[-0.0079112648963928,0.035484571009874,-0.036880172789097],[-0.025294085964561,0.063679538667202,0.10626255720854]],[[-0.017339019104838,-0.0058443266898394,-0.029518850147724],[0.0033013408537954,-0.0064165783114731,-0.071301870048046],[-0.020983086898923,0.024161256849766,-0.10479974746704]],[[0.071408480405807,-0.022033026441932,0.057775944471359],[-0.0025552085135132,-0.04775808006525,0.085607834160328],[0.010413161478937,-0.025551445782185,0.002122926292941]],[[-0.07839073985815,0.034881960600615,-0.042153131216764],[0.0076505681499839,0.040956016629934,-0.057108499109745],[0.088352732360363,-0.036828171461821,0.061789784580469]],[[-0.0073807612061501,-0.070778779685497,-0.044512700289488],[0.0082097975537181,-0.049494609236717,-0.072505354881287],[-0.040175251662731,-0.0048261731863022,-0.016249887645245]],[[-0.0076976371929049,-0.10480158030987,-0.043661169707775],[0.063302494585514,-0.024388272315264,-0.083290502429008],[0.14421632885933,-0.020203748717904,0.00069877953501418]],[[0.089608751237392,-0.025859549641609,0.051445163786411],[0.1566102206707,0.049162060022354,0.050389144569635],[0.080285966396332,0.13016836345196,-0.019671656191349]],[[-0.012956990860403,0.081837795674801,-0.023834496736526],[-0.085274398326874,-0.0056651555933058,-0.076042391359806],[-0.0073887673206627,0.082107961177826,-0.028141688555479]],[[-0.078944772481918,-0.0012224458623677,-0.016955573111773],[-0.001793367555365,-0.0114870890975,-0.06244794651866],[0.0023804274387658,0.072564318776131,0.021072411909699]],[[0.07073749601841,0.059587236493826,0.032781679183245],[0.066027164459229,-0.021390035748482,-0.013224681839347],[0.1537903547287,-0.0024040343705565,0.052561894059181]],[[-0.064395032823086,-0.10225226730108,-0.014015995897353],[-0.035402316600084,0.02667879126966,-0.020426597446203],[-0.00053407158702612,0.045436073094606,0.1180714070797]],[[-0.056381419301033,-6.4119165472221e-05,-0.035403698682785],[-0.092092737555504,-0.057079020887613,0.005423238966614],[-0.072900734841824,0.025249475613236,0.042691513895988]],[[0.099078394472599,-0.055338568985462,0.1012069657445],[-0.042200930416584,0.0097484132274985,0.023698169738054],[-0.033813718706369,-0.11838237941265,0.094558358192444]],[[0.1520179361105,-0.027549488469958,0.050783988088369],[0.16832143068314,-0.074952833354473,-0.050069849938154],[0.17321082949638,-0.01353451795876,-0.020541924983263]],[[-0.068177320063114,-0.033523596823215,0.0043460461311042],[-0.026961153373122,0.038143984973431,0.033442843705416],[-0.03129268810153,0.065415263175964,0.055181354284286]],[[0.013054797425866,-0.0059630903415382,0.026816682890058],[0.033604472875595,-0.029215192422271,-0.031788375228643],[0.0015624252846465,-0.091452941298485,0.086426310241222]],[[0.011200752109289,-0.022725565358996,0.076747164130211],[0.00096014956943691,-0.0080956751480699,0.13607650995255],[0.065594181418419,-0.018703565001488,0.037981364876032]],[[0.12551508843899,-0.039553869515657,0.0031107675749809],[0.057005155831575,0.069487124681473,-0.028042351827025],[0.017264990136027,0.0026545806322247,-0.00450628856197]],[[-2.6560617698124e-05,-0.025393648073077,-0.076787427067757],[0.005206678994,0.010464820079505,0.10083985328674],[0.047603398561478,0.051996100693941,0.011191387660801]],[[-0.031377870589495,0.03968570381403,0.0090622063726187],[0.002972332527861,-0.1163881868124,-0.069799937307835],[-0.05273362249136,-0.10309947282076,-0.086620151996613]],[[-0.013225103728473,-0.019258754327893,-0.00011470598838059],[-0.027957316488028,-0.013372480869293,0.0032774917781353],[0.0079559832811356,-0.084959998726845,0.0066001545637846]],[[0.0064615234732628,0.038930870592594,0.038976583629847],[0.026705961674452,-0.075492151081562,-0.078791238367558],[0.089513659477234,0.025139182806015,-0.07695734500885]],[[0.0081853093579412,0.070576205849648,-0.030135333538055],[-0.016380855813622,0.11550508439541,0.055035885423422],[-0.054176989942789,0.13267865777016,-0.01761824823916]],[[-0.021125921979547,0.010429702699184,0.041776180267334],[0.012320646084845,-0.070102699100971,-0.023674616590142],[0.13369663059711,-0.068928815424442,-0.038712911307812]],[[0.099773891270161,0.088834770023823,-0.016084503382444],[0.020517280325294,-0.019314726814628,-0.042505528777838],[-0.029668781906366,-0.015028766356409,-0.065838374197483]],[[0.004398993216455,-0.00071958155604079,0.014036254957318],[0.090503968298435,-0.012065763585269,0.015728877857327],[-0.011151392944157,-0.030848156660795,-0.039955545216799]],[[0.016518298536539,0.040530186146498,0.030853964388371],[-0.018400363624096,-0.025985268875957,0.011118992231786],[0.019782559946179,-0.0096016181632876,-0.0051176212728024]],[[-0.074616618454456,0.026343932375312,0.0042505622841418],[0.021021069958806,0.0030165461357683,-0.014049983583391],[0.053116653114557,0.053769618272781,-0.062438808381557]],[[-0.069887332618237,0.083001099526882,0.083655901253223],[-0.0031955852173269,0.032992489635944,0.013949191197753],[0.064335405826569,-0.038827698677778,0.021425249055028]],[[-0.018563166260719,0.10004772245884,0.021571483463049],[-0.075232468545437,-0.0058696065098047,-0.023847319185734],[-0.016336366534233,-0.057727009057999,-0.057377982884645]],[[-0.067021682858467,-0.10978902131319,0.069947183132172],[0.0044985888525844,0.018246417865157,-0.020659007132053],[0.061480462551117,-0.018250420689583,-0.077104806900024]],[[0.092773869633675,0.036158282309771,-0.0049039479345083],[0.05649771541357,0.15099188685417,0.087435245513916],[0.018888220191002,0.0022869361564517,-0.089183963835239]],[[0.052495636045933,0.040752202272415,-0.059784173965454],[0.03807745501399,0.077240020036697,0.061270423233509],[-0.007154889870435,0.0036692896392196,-0.064878605306149]],[[-0.009296391159296,0.050102166831493,0.074221804738045],[-0.016587940976024,0.035011079162359,0.0050739729776978],[-0.0073661846108735,-0.0052518676966429,-0.0071775037795305]],[[-0.032968055456877,-0.0024820088874549,-0.056222911924124],[-0.096388004720211,0.0044777230359614,0.034101851284504],[-0.13611224293709,0.036713521927595,-0.02383241802454]],[[-0.054004717618227,-0.044262770563364,-0.042674817144871],[-0.040426336228848,0.023038476705551,0.0058159735053778],[0.0030592500697821,0.019585452973843,-0.045933969318867]],[[0.077160961925983,-0.02198065072298,-0.048036623746157],[0.076633214950562,-0.017877524718642,-0.027816582471132],[0.018679533153772,-0.025850921869278,-0.076990649104118]],[[0.054853390902281,-0.0020878331270069,0.056199803948402],[0.053312815725803,-0.033612500876188,-0.018390322104096],[-0.0059241745620966,0.1016301959753,0.012754880823195]],[[-0.13367792963982,-0.02410439774394,-0.016523102298379],[-0.020964134484529,0.04148007184267,-0.020810993388295],[0.007678103633225,0.0688306838274,-0.19083838164806]],[[0.031005915254354,-0.088449388742447,-0.03771772608161],[0.024877771735191,-0.06349316239357,0.033329430967569],[0.0010401743929833,-0.075765490531921,0.031748402863741]],[[0.059095200151205,-0.095050387084484,0.011073226109147],[0.029101399704814,-0.033175151795149,-0.044971209019423],[-0.00027285519172437,0.012508847750723,-0.010852058418095]],[[-0.063635498285294,0.055198479443789,0.10835853219032],[-0.04875835776329,-0.0032227598130703,-0.0032611761707813],[0.018694225698709,0.025547279044986,-0.066131077706814]],[[-0.014894152991474,0.011226443573833,0.097730793058872],[0.06865881383419,0.089511804282665,0.037027511745691],[-0.14048078656197,-0.039478160440922,-0.10266977548599]],[[-0.027502121403813,0.018394574522972,0.11346980184317],[-0.077458038926125,0.067359171807766,0.085067674517632],[-0.016196364536881,-0.037770558148623,0.054217990487814]],[[0.024997418746352,-0.014010481536388,-0.040399149060249],[0.030564615502954,-0.049185823649168,0.022641686722636],[0.037219107151031,0.0034345246385783,0.014945416711271]],[[0.0084323147311807,0.012254118919373,-0.0020376541651785],[-0.026503227651119,0.013154529966414,0.041622225195169],[-0.034352011978626,-0.01865728199482,0.054099675267935]],[[0.0052315103821456,0.01049857866019,-0.12341595441103],[0.054060779511929,-0.054419994354248,-0.001219252939336],[0.047177892178297,-0.024118674919009,-0.021899228915572]],[[-0.09836932271719,-0.012792535126209,0.05879732593894],[-0.086142994463444,-0.019370852038264,0.041541405022144],[-0.10007740557194,-0.065132699906826,0.042611435055733]],[[-0.036802466958761,-0.035877149552107,0.036095291376114],[0.057459693402052,-0.01089514605701,0.05396169051528],[0.14074409008026,0.0006099488819018,0.0061807432211936]],[[0.019330956041813,0.05569064244628,0.015753757208586],[0.014345386996865,0.12827786803246,-0.051541432738304],[0.047082748264074,0.13306541740894,-0.09707298874855]],[[0.08085635304451,-0.037936478853226,0.14334863424301],[-0.037021990865469,0.016231084242463,0.093913078308105],[-0.047411765903234,-0.0023010834120214,0.098004668951035]],[[-0.056138146668673,0.0027685626409948,-0.0063383006490767],[0.0084783351048827,0.0071713360957801,0.096197798848152],[-0.0045111095532775,0.056328613311052,0.010600361973047]],[[-0.069912604987621,0.070006772875786,0.041226956993341],[0.10190853476524,-0.081415332853794,-0.024897867813706],[0.15666720271111,-0.097071692347527,0.061196628957987]]],[[[-0.088079020380974,0.08333470672369,-0.020624889060855],[0.043380137532949,0.021055268123746,-0.17322246730328],[0.10646160691977,-0.071927219629288,0.052657727152109]],[[0.045260310173035,0.055140871554613,0.0037302831187844],[0.072626039385796,0.050872195512056,0.0088190250098705],[0.050054520368576,-0.072400934994221,0.035239044576883]],[[0.0090119866654277,0.028916129842401,-0.030982432886958],[0.15833960473537,0.027206083759665,0.11389791965485],[0.080764912068844,0.14779764413834,0.10384041815996]],[[0.021687271073461,-0.15223222970963,-0.060058694332838],[0.057172831147909,0.11742556095123,-0.038922972977161],[-0.069702878594398,0.089827597141266,0.2128933519125]],[[0.10981518775225,0.028271030634642,-0.0010993235046044],[-0.0078690703958273,-0.026473969221115,0.12451048195362],[0.05183406919241,0.05187950655818,0.22643262147903]],[[-0.015817996114492,-0.032042410224676,0.056534703820944],[-0.055857885628939,0.0027203799691051,-0.036951001733541],[0.01256406866014,0.092105410993099,-0.016964053735137]],[[-0.02525088749826,0.0057045640423894,-0.064332440495491],[-0.083650313317776,0.073687747120857,0.053117591887712],[-0.10201245546341,-0.15103407204151,0.078320182859898]],[[0.078294150531292,0.041716475039721,-0.014521948061883],[0.075020462274551,0.094579622149467,-0.026452582329512],[-0.016904227435589,-0.0042396574281156,0.17995642125607]],[[0.10470309108496,-0.0026326491497457,0.041533906012774],[-0.14978101849556,-0.064600102603436,0.10469325631857],[-0.062123779207468,-0.05711780115962,0.023222245275974]],[[-0.065447673201561,-0.032732550054789,0.001557806506753],[-0.0029778741300106,0.031187515705824,-0.18873471021652],[0.022050023078918,-0.12129423767328,-0.10853833705187]],[[-0.092114426195621,-0.14941515028477,-0.13781055808067],[0.01630051061511,-0.0071815685369074,-0.032000076025724],[-0.11617155373096,0.006030258256942,-0.033690605312586]],[[0.14048950374126,0.13696923851967,0.079779304563999],[0.084820210933685,0.022272257134318,-0.015966311097145],[0.079162888228893,0.1244590356946,0.015196395106614]],[[0.0068486891686916,-0.0020656047854573,-0.073249988257885],[-0.0030457093380392,-0.040976271033287,0.048614539206028],[-0.082761317491531,-0.090628311038017,-0.093395031988621]],[[-0.010719651356339,-0.064368203282356,0.02064929716289],[0.0028260364197195,-0.0042805010452867,-0.04343156516552],[-0.035497359931469,0.063256077468395,-0.039198510348797]],[[0.074545055627823,-0.034442491829395,-0.022941365838051],[-0.052814874798059,0.11770135909319,0.014451037161052],[0.062011390924454,0.049200590699911,0.0029009662102908]],[[0.17224596440792,-0.00082565791672096,-0.051838107407093],[0.10789006948471,-0.016648262739182,-0.075119987130165],[0.20179244875908,0.016900632530451,-0.13051114976406]],[[0.070454604923725,0.14912863075733,0.12527844309807],[-0.033990819007158,0.098527796566486,-0.11925396323204],[-0.052847988903522,-0.10073402523994,-0.16737526655197]],[[-0.052091132849455,0.015147192403674,0.15074591338634],[-0.15749758481979,0.041264697909355,-0.032833263278008],[-0.039803497493267,0.055114459246397,0.0039883586578071]],[[0.14890596270561,0.065407618880272,0.081329636275768],[-0.051340490579605,-0.020805209875107,0.010751126334071],[-0.036096647381783,0.098652139306068,-0.016265055164695]],[[0.020772011950612,-0.059739898890257,0.043342173099518],[-0.013399217277765,-0.028185337781906,-0.04072318598628],[-0.11112725734711,-0.016237590461969,0.06676884740591]],[[-0.02946756593883,-0.11698895692825,-0.072855934500694],[-0.13771748542786,-0.17890872061253,-0.04473938792944],[0.17026257514954,-0.011185981333256,-0.040068238973618]],[[0.065774999558926,-0.029866769909859,0.10214776545763],[-0.0022668263409287,0.074790827929974,0.15436758100986],[-0.11135514825583,0.22358727455139,0.021943088620901]],[[-0.09579449146986,-0.11602783203125,-0.035961236804724],[0.026929454877973,-0.0012697473866865,-0.041118625551462],[0.0015575463185087,0.027470080181956,-0.07018568366766]],[[-0.0043418412096798,-0.10219472646713,0.053308833390474],[-0.05155511572957,0.038165561854839,-0.086819484829903],[-0.10324707627296,-0.028839798644185,-0.093953408300877]],[[0.008340478874743,-0.054063834249973,0.097814545035362],[0.10731006413698,0.13580337166786,0.042815621942282],[0.069088764488697,-0.064817234873772,0.070727236568928]],[[-0.028204724192619,0.020969165489078,-0.052127417176962],[0.030472576618195,0.034867517650127,-0.059096775949001],[-0.035160232335329,0.091709442436695,-0.029610861092806]],[[0.088074557483196,-0.0075883585959673,-0.1002047508955],[0.006316845305264,-0.041873056441545,-0.042104873806238],[-0.1271924674511,-0.0033515016548336,0.042298164218664]],[[0.022085497155786,-0.055345762521029,0.049778383225203],[0.14609517157078,0.15872503817081,-0.0057423985563219],[-0.053862538188696,-0.027382081374526,-0.025231149047613]],[[-0.067548453807831,-0.24995629489422,-0.048248868435621],[-0.11298771947622,-0.16440105438232,-0.090352177619934],[0.13858659565449,0.063862010836601,0.01232379861176]],[[0.0096655488014221,-0.024527706205845,0.046443425118923],[-0.029321320354939,-0.17876876890659,0.03011011146009],[-0.09734508395195,-0.077532447874546,0.024014724418521]],[[0.079759746789932,0.029023807495832,-0.021022533997893],[0.073712818324566,-0.068197682499886,0.12042769044638],[-0.0034357635304332,-0.087346538901329,-0.022651506587863]],[[0.12783226370811,0.13539026677608,0.028107702732086],[-0.034125577658415,0.057548146694899,0.011462994851172],[0.043870683759451,-0.022498067468405,-0.05240435898304]],[[0.012155813165009,0.06467105448246,-0.093665726482868],[-0.079390622675419,0.068784706294537,-0.12714587152004],[0.12779825925827,0.091304250061512,-0.15716913342476]],[[-0.061613783240318,-0.029260484501719,-0.0256506819278],[0.095896482467651,0.10339800268412,-0.028554458171129],[0.10407155752182,-0.11973062157631,-0.056471087038517]],[[0.055440757423639,-0.021221086382866,-0.20607227087021],[-0.075272113084793,-0.057498995214701,-0.15468309819698],[-0.02605596370995,-0.10422962158918,-0.17037592828274]],[[-0.13546296954155,-0.10144747048616,-0.040149632841349],[-0.24894058704376,-0.059351067990065,-0.011411760002375],[-0.01715294457972,-0.07182727009058,0.0085646035149693]],[[0.01865565776825,0.068941235542297,0.0045365621335804],[-0.032647915184498,-0.045063443481922,-0.11347169429064],[0.044747076928616,-0.12808129191399,-0.11745186895132]],[[0.067570187151432,-0.20128256082535,-0.00082042062422261],[-0.0099463677033782,0.016951425001025,-0.011871141381562],[-0.097859255969524,-0.11569125950336,0.10472043603659]],[[0.038436967879534,-0.0074277450330555,0.00060278980527073],[-0.066340543329716,0.094779133796692,0.088461220264435],[-0.11851840466261,-0.0051931403577328,-0.10793141275644]],[[0.045637972652912,0.03461105749011,-0.044021423906088],[-0.075753606855869,-0.083273284137249,-0.051529634743929],[-0.025542652234435,-0.15475870668888,-0.23398892581463]],[[0.020680755376816,0.016940297558904,-0.098160728812218],[-0.059841461479664,0.075770437717438,0.02031615935266],[-0.10776390135288,-0.0050600958056748,-0.025395734235644]],[[-0.0087123848497868,-0.044017046689987,0.010033311322331],[0.087775535881519,-0.04286926984787,-0.0080208089202642],[0.035531990230083,0.10765888541937,-0.088240161538124]],[[-0.0026309732347727,0.001404075184837,-0.024187600240111],[0.083200059831142,-0.011936062946916,0.047616939991713],[0.072017662227154,0.019118253141642,0.041994675993919]],[[0.030489543452859,-0.023534137755632,-0.062347270548344],[0.052387487143278,-0.0382922552526,0.052757658064365],[-0.025078563019633,-0.027257906273007,-0.072049111127853]],[[0.12387999892235,0.13771259784698,0.10244450718164],[-0.095901466906071,0.02264703437686,0.010813491418958],[0.023777771741152,-0.02666231431067,0.10432217270136]],[[0.10702145844698,0.007843516767025,-0.0015076515264809],[-0.015360534191132,-0.16096062958241,-0.16837881505489],[0.1739923208952,-0.07643998414278,-0.099856719374657]],[[-0.051533553749323,0.051026459783316,-0.072152756154537],[-0.050012782216072,0.0523417070508,-0.10325399786234],[-0.043555371463299,0.071539372205734,-0.061794236302376]],[[-0.020843099802732,0.076291032135487,0.038041289895773],[0.052124205976725,-0.13206949830055,-0.085587151348591],[-0.10031425207853,-0.010731095448136,0.15956816077232]],[[-0.092632465064526,0.020834753289819,-0.053178615868092],[-0.0035868433769792,0.088239558041096,-0.11900246143341],[0.002909520175308,-0.01284854952246,-0.1250986456871]],[[-0.14426909387112,-0.064596630632877,-0.11264151334763],[-0.052437886595726,0.0065980893559754,-0.026281731203198],[0.011378317140043,0.031893324106932,0.046786982566118]],[[-0.22657556831837,-0.04584338888526,0.0030236376915127],[-0.13823775947094,-0.11584129184484,-0.02852519415319],[0.030026618391275,-0.13648895919323,-0.035924728959799]],[[-0.028509601950645,0.013225567527115,0.069550886750221],[-0.11396173387766,0.012837863527238,0.0016531181754544],[-0.11708461493254,0.062003087252378,0.04274532943964]],[[-0.0028709422331303,-0.0075406543910503,-0.063294813036919],[-0.03167612105608,-0.0016962471418083,-0.12979221343994],[0.093223080039024,0.035055678337812,-0.032150618731976]],[[0.018706928938627,-0.05325635150075,-0.19084487855434],[-0.036428108811378,0.0034415908157825,-0.034045439213514],[0.018228743225336,-0.003150001866743,-0.0029801269993186]],[[-0.028026308864355,-0.085635483264923,-0.082024350762367],[-0.068149320781231,-0.17661906778812,-0.088618695735931],[0.014806629158556,-0.14284299314022,-0.10791502147913]],[[0.0033963585738093,0.026764864102006,0.055580426007509],[-0.074103325605392,-0.0028734924271703,0.031077584251761],[0.063562303781509,-0.083528354763985,0.015843566507101]],[[0.080207318067551,-0.066328562796116,-0.17184171080589],[-0.1007032468915,0.050807412713766,-0.067140951752663],[0.037300914525986,-0.06338120251894,-0.25263419747353]],[[0.041964627802372,-0.022783344611526,0.050198066979647],[-0.10138596594334,-0.1203503087163,0.014866415411234],[-0.09429194778204,-0.24773301184177,-0.1761771440506]],[[-0.01017134077847,-0.053164131939411,-0.11216801404953],[-0.0069104707799852,-0.077589616179466,-0.005392414983362],[-0.052280958741903,-0.098339959979057,-0.0019477905007079]],[[0.0083053605630994,0.061000071465969,0.0084373373538256],[-0.041709329932928,0.089087158441544,0.067445069551468],[0.041822351515293,0.056368265300989,0.090914510190487]],[[-0.081333301961422,-0.019988264888525,-0.097336664795876],[-0.015208459459245,0.045226514339447,-0.057423979043961],[0.036335125565529,0.13493585586548,-0.028603207319975]],[[-0.1452060341835,-0.089408531785011,-0.052531212568283],[-0.22251337766647,0.006623606197536,-0.039989415556192],[0.00044646955211647,0.013124346733093,-0.20210964977741]],[[0.0059273336082697,0.013569193892181,0.048563275486231],[-0.039244521409273,0.1764664798975,0.096622355282307],[0.020426623523235,0.034547299146652,0.063012801110744]],[[0.1825425028801,0.13408400118351,-0.0062126754783094],[0.14993505179882,0.016635878011584,0.013329195789993],[0.063959531486034,-0.0096689136698842,-0.075700245797634]],[[-0.054746422916651,-0.19118849933147,-0.24143619835377],[-0.0076018669642508,-0.064214780926704,-0.080923087894917],[0.019719259813428,0.1894595772028,-0.054675836116076]],[[0.021094284951687,-0.033986538648605,0.044547222554684],[-0.032031495124102,-0.0062552760355175,0.058717958629131],[0.012533899396658,0.22981829941273,0.069662556052208]],[[-0.17171432077885,-0.10532422363758,7.8375553130172e-05],[-0.10074408352375,0.051649209111929,0.21048736572266],[-0.2120491117239,-0.050481114536524,0.11591067910194]],[[-0.22785221040249,-0.29263332486153,-0.0023766285739839],[0.047589957714081,-0.20704013109207,-0.19364482164383],[0.031674787402153,0.048215948045254,0.16976743936539]],[[-0.020561423152685,0.036177325993776,0.037819810211658],[-0.11186146736145,0.023438449949026,0.017668353393674],[-0.018928773701191,0.05879084020853,0.11482734233141]],[[-0.050026290118694,-0.13818094134331,-0.1065441891551],[0.070619441568851,0.16826890408993,0.1971633285284],[-0.0041187712922692,0.091299712657928,0.0042711137793958]],[[-0.095621913671494,-0.10309702903032,-0.091577336192131],[-0.0099588558077812,0.0040737381204963,0.078252106904984],[0.018434086814523,0.06896186619997,0.0015384878497571]],[[0.042236503213644,0.010796301066875,-0.097645401954651],[-0.074697159230709,-0.06787895411253,-0.10106794536114],[0.064970374107361,-0.040524180978537,-0.046446599066257]],[[0.032152816653252,-0.028324721381068,-0.16622218489647],[0.0085923355072737,-0.088923573493958,-0.14057137072086],[-0.046088345348835,-0.19373244047165,-0.13937623798847]],[[-0.042507354170084,-0.036320444196463,0.064723789691925],[-0.060744389891624,-0.060113687068224,0.063367657363415],[-0.081414490938187,-0.007312876638025,-0.064578227698803]],[[0.1218232139945,-0.01605605892837,-0.093210071325302],[-0.13656403124332,-0.17886956036091,-0.11209930479527],[0.034071069210768,-0.11278805881739,-0.11715284734964]],[[-0.049548204988241,0.0053859655745327,-0.051446225494146],[-0.038973446935415,0.041688285768032,0.069709241390228],[-0.021433550864458,-0.0177938695997,0.14659057557583]],[[-0.15845699608326,-0.13632430136204,-0.14319282770157],[-0.058488048613071,-0.077094532549381,-0.1645178347826],[-0.039859365671873,-0.18300005793571,0.01460683811456]],[[-0.026015909388661,0.00042410279274918,-0.03429302200675],[-0.13772538304329,-0.032558381557465,0.047644227743149],[-0.02855141274631,-0.074356846511364,0.059683818370104]],[[0.030474357306957,0.0029030914884061,-0.14994512498379],[-0.046756997704506,0.099749781191349,-0.061717078089714],[0.05543114989996,0.032998684793711,0.056316681206226]],[[-0.16801978647709,-0.010094727389514,-0.049718830734491],[-0.074499256908894,-0.17968226969242,-0.03225152939558],[0.14356634020805,-0.047426857054234,-0.034324955195189]],[[-0.05288802087307,-0.019765404984355,0.050783790647984],[0.040210619568825,-0.27596417069435,0.068941608071327],[0.044368308037519,-0.091730177402496,0.075615830719471]],[[-0.080096431076527,-0.077407717704773,-0.18022659420967],[-0.0096941776573658,0.010318458080292,0.10451622307301],[-0.068753682076931,-0.092581488192081,0.049958676099777]],[[-0.066746041178703,0.084809653460979,-0.0062500312924385],[0.054304771125317,0.11099338531494,-0.13619334995747],[-0.10089416801929,0.0091045061126351,-0.084343835711479]],[[-0.0042749061249197,-0.09537848085165,-0.015122056938708],[0.17092993855476,-0.02327279932797,-0.010433527640998],[0.19103163480759,-0.07145956158638,-0.10740583389997]],[[0.086549803614616,0.030678696930408,0.080772258341312],[0.07260063290596,-0.031276240944862,-0.052606128156185],[0.052836541086435,-0.15040351450443,-0.076728008687496]],[[0.070900097489357,0.17385469377041,0.081160232424736],[-0.025163520127535,-0.025184957310557,-0.05193293094635],[-0.046914346516132,0.033583901822567,-0.11783166229725]],[[0.0821268633008,0.042315866798162,0.074686594307423],[0.014272443950176,-0.14609760046005,-0.061582397669554],[-0.054599557071924,-0.058356143534184,-0.22636839747429]],[[-0.16176438331604,-0.10375786572695,-0.13290943205357],[0.077413201332092,-0.027599344030023,-0.02545964345336],[0.17559711635113,0.18073047697544,0.14530889689922]],[[0.049905579537153,0.056552600115538,0.026530234143138],[-0.045101780444384,0.079940430819988,-0.04888815805316],[0.051194287836552,0.11328677088022,0.010454884730279]],[[-0.14010578393936,-0.02759176492691,-0.083185359835625],[-0.060684777796268,0.056702949106693,-0.1281603127718],[0.055429149419069,0.0091826738789678,0.020247355103493]],[[0.14344450831413,0.0031593847088516,0.075962916016579],[-0.089715726673603,-0.011238071136177,-0.12320541590452],[0.093475766479969,0.033889107406139,0.10286063700914]],[[-0.0069681550376117,-0.054040838032961,0.025062639266253],[-0.021403256803751,-0.080472692847252,-0.043319687247276],[0.18744166195393,0.084776937961578,0.03988828882575]],[[-0.18699234724045,-0.029042100533843,0.010004381649196],[0.15646307170391,-0.072207510471344,0.076984114944935],[0.056289758533239,0.017697025090456,0.012296248227358]],[[-0.044092793017626,-0.10491290688515,-0.098120115697384],[-0.088820107281208,-0.033152338117361,-0.042101621627808],[0.0080723352730274,-0.063141159713268,0.1501856148243]],[[0.11162445694208,0.17506539821625,0.072317555546761],[0.015513373538852,0.09712390601635,0.087571449577808],[0.0094702914357185,-0.086147129535675,-0.11410838365555]],[[-0.022899555042386,-0.10540077090263,-0.023736510425806],[0.052855085581541,-0.0037117598112673,0.14801703393459],[0.12310692667961,-0.029109947383404,0.11258585751057]],[[-0.14414814114571,-0.10948179662228,-0.16844899952412],[0.010332075878978,-0.0010218470124528,-0.078250870108604],[-0.14735712110996,-0.057822667062283,0.022643657401204]],[[-0.097281701862812,-0.080395385622978,0.057660594582558],[-0.024905800819397,0.14870958030224,0.15203931927681],[-0.042838398367167,0.06197502091527,0.33469706773758]],[[-0.0081134717911482,0.024293266236782,-0.18475955724716],[0.11307698488235,0.066642493009567,-0.13875414431095],[0.19811303913593,0.055287767201662,0.20228108763695]],[[0.12269730865955,0.1076373681426,0.12575104832649],[0.022236876189709,0.048852514475584,-0.00025755009846762],[-0.036168247461319,0.017802201211452,0.043295215815306]],[[0.13927759230137,0.1062003672123,0.027772163972259],[0.010698743164539,-0.0079359225928783,-0.090866483747959],[-0.0197126660496,-0.03762586787343,0.012457757256925]],[[0.067205429077148,0.13982443511486,0.18732400238514],[0.080517999827862,0.085026018321514,0.099206157028675],[-0.0047524054534733,-0.09428483247757,0.048240672796965]],[[-0.11082699149847,-0.074114084243774,-0.17679026722908],[0.012085787020624,0.056302584707737,0.11811626702547],[-0.024890340864658,-0.098035871982574,0.1589727550745]],[[-0.022960675880313,0.028386624529958,0.018605962395668],[-0.025119297206402,-0.016570402309299,-0.056742880493402],[0.15411333739758,-0.03747108951211,-0.0043474524281919]],[[-0.057578470557928,0.040199626237154,-0.0026176981627941],[0.037560898810625,0.043695937842131,-0.095066145062447],[-0.14860372245312,-0.10751842707396,-0.17132297158241]],[[-0.16869914531708,0.027844293043017,-0.094190932810307],[-0.027254972606897,0.16736075282097,0.06092407554388],[0.0066309929825366,-0.077761486172676,0.12588953971863]],[[0.072170108556747,0.024302517995238,0.14207556843758],[0.021379852667451,-0.015125377103686,-0.0057566273026168],[-0.033175688236952,0.042842537164688,-0.09293619543314]],[[0.12398298829794,0.006110935471952,0.06369286775589],[0.066600956022739,0.0097676925361156,-0.087418757379055],[-0.084904722869396,-0.085280656814575,0.14144395291805]],[[0.030057661235332,-0.015347208827734,0.00062278448604047],[0.11041705310345,0.1665558218956,0.035551082342863],[0.023619906976819,0.10734181106091,-0.0055246660485864]],[[0.0012116773286834,-0.034049101173878,0.033667013049126],[0.011536079458892,0.059065639972687,0.061615381389856],[-0.10514085739851,-0.030633050948381,-0.061006926000118]],[[-0.029780874028802,-0.0819361358881,-0.0040683904662728],[0.0293446816504,0.061772953718901,-0.035174086689949],[-0.05701282247901,-0.05474703758955,0.055291142314672]],[[-0.018544007092714,-0.06714728474617,-0.025574656203389],[0.021060531958938,0.02181782014668,0.10837287455797],[-0.024174511432648,-0.036715980619192,0.091690108180046]],[[-0.040030103176832,0.11448697000742,-0.035714693367481],[-0.0022797179408371,0.01659993454814,-0.032318245619535],[-0.022462142631412,-0.036112453788519,-0.10813961923122]],[[0.02265333943069,-0.033226232975721,0.076421439647675],[-0.080148234963417,-0.12759947776794,0.0011149436468259],[-0.071689307689667,-0.096567519009113,-0.067451179027557]],[[-0.1352531015873,0.034939423203468,0.13717545568943],[0.093119889497757,-0.053133513778448,0.10087639093399],[0.14213162660599,-0.034398410469294,0.092913866043091]],[[0.0018551761750132,0.038951829075813,-0.10934156179428],[0.068813033401966,0.060648895800114,-0.045290313661098],[0.038388583809137,-0.085954576730728,0.027307234704494]],[[-0.14005002379417,-0.0040214355103672,0.11695941537619],[-0.10322303324938,0.00088387954747304,0.074596032500267],[0.031156526878476,0.077249735593796,0.04428855702281]],[[-0.0014467283617705,0.030280141159892,0.089241832494736],[0.038720186799765,-0.010365884751081,0.051586020737886],[0.14024245738983,-0.049072250723839,-0.025266973301768]],[[0.053121600300074,-0.010803789831698,-0.10873383283615],[0.073255568742752,0.019948484376073,-0.058851473033428],[-0.078630231320858,-0.021633056923747,-0.13649037480354]],[[0.12838986515999,0.11861496418715,0.17991678416729],[0.017547627910972,0.0081532346084714,0.079454563558102],[0.039417717605829,0.02594905719161,0.070045471191406]],[[-0.040569756180048,0.067743726074696,0.14640931785107],[-0.02436931245029,0.10069738328457,-0.041979402303696],[-0.25382813811302,-0.10283598303795,-0.068568497896194]],[[-0.021947603672743,-0.03617487102747,0.063036113977432],[0.056976173073053,-0.00042059581028298,-0.080116994678974],[0.13219285011292,0.10152961313725,0.10436986386776]],[[-0.16828368604183,-0.1835520118475,-0.17861846089363],[-0.099795490503311,-0.1858794093132,-0.19403879344463],[-0.027662880718708,0.02734512090683,-0.052404321730137]],[[-0.084343314170837,-0.066570043563843,-0.0086333891376853],[0.090066701173782,0.070532113313675,0.1240075007081],[0.11657729744911,0.11441565304995,0.03123914450407]],[[0.067874379456043,0.0492820776999,0.0039880275726318],[0.10202418267727,-0.029611438512802,0.065212272107601],[-0.029646323993802,0.029199151322246,0.07941509783268]],[[0.015594338998199,-0.012317650951445,0.067700669169426],[0.0020473033655435,-0.042956575751305,0.03575662150979],[-0.18260169029236,0.01689512655139,-0.018623610958457]],[[0.096409998834133,0.17316626012325,-0.065702773630619],[0.068766258656979,-0.061451286077499,-0.064315192401409],[0.068004295229912,-0.061411995440722,-0.0015688466373831]],[[0.048170261085033,-0.048098791390657,0.071873337030411],[-0.085556738078594,0.16289712488651,0.047633692622185],[-0.20599873363972,0.045125678181648,-0.17166613042355]]],[[[0.070399343967438,0.0032619272824377,0.03213469684124],[0.10621566325426,0.053421728312969,0.0027305660769343],[0.054179716855288,0.013084081932902,0.048385232686996]],[[0.12387958168983,0.02611449919641,-0.047992017120123],[-0.0039174645207822,-0.026384262368083,-0.059621393680573],[-0.023672856390476,0.017325680702925,0.073135904967785]],[[-0.059753622859716,-0.093992091715336,-0.040908925235271],[-0.045268371701241,0.036258120089769,0.010894949547946],[0.029778180643916,0.11056450009346,0.085601195693016]],[[0.057805713266134,-0.023996533825994,0.0088995369151235],[0.049982957541943,0.0045803692191839,-0.099050045013428],[0.025617862120271,0.01343579031527,0.020731519907713]],[[-0.13719621300697,-0.027300518006086,0.031839799135923],[0.17642234265804,0.026806868612766,0.24245543777943],[-0.024731555953622,-0.0022261682897806,-0.046574838459492]],[[-0.083007805049419,0.01905881613493,0.038817845284939],[0.036065917462111,-0.017131373286247,-0.00044330241507851],[0.017062792554498,0.0084171816706657,0.053932193666697]],[[0.12142764031887,0.13263833522797,0.17332501709461],[0.021542528644204,-0.093771055340767,-0.19708502292633],[-0.024305567145348,-0.0032363387290388,0.073836229741573]],[[0.049922920763493,0.082190148532391,-0.053645145148039],[-0.015684412792325,-0.019780643284321,0.029516279697418],[0.10318224877119,-0.040407288819551,-0.10388488322496]],[[-0.064027152955532,-0.027662573382258,-0.05111275985837],[-0.026801439002156,-0.080528579652309,-0.1515838354826],[0.022951135411859,-0.0025934677105397,0.055448994040489]],[[0.015833226963878,-0.011014330200851,0.0095322355628014],[0.063807040452957,0.017755338922143,0.0061347745358944],[0.041509542614222,-0.045599199831486,0.036849204450846]],[[-0.034291088581085,0.021230509504676,-0.0041255406104028],[0.03482685610652,0.077829226851463,-0.034787286072969],[-0.0052976836450398,-0.020550087094307,-0.021309422329068]],[[-0.079999826848507,-0.022295594215393,0.042728669941425],[0.054312396794558,0.0020541122648865,0.079553052783012],[0.094098217785358,0.11200121790171,0.14817737042904]],[[-0.059225805103779,-0.10680032521486,-0.021873768419027],[-0.056670274585485,-0.072896346449852,-0.090095743536949],[0.05040742456913,0.063057012856007,-0.048243004828691]],[[-0.053388405591249,-0.021690519526601,-0.0073324991390109],[-0.063174925744534,-0.039857428520918,-0.080425925552845],[-0.020297693088651,-0.084874734282494,0.094719752669334]],[[0.019537279382348,0.071245469152927,-0.097258806228638],[0.047774445265532,-0.049172602593899,-0.040506593883038],[-0.018551578745246,-0.0092816669493914,0.04305324703455]],[[-0.0057125319726765,-0.065158121287823,0.0036162671167403],[0.0032954681664705,-0.025983531028032,-0.03674716129899],[-0.045370861887932,-0.11614916473627,-0.11186207830906]],[[0.0041171228513122,0.0038668601773679,-0.13180400431156],[-0.032633580267429,0.01718876324594,0.028429470956326],[-0.02167739905417,0.059902179986238,-0.0045765973627567]],[[-0.13419654965401,-0.11845225095749,-0.021516831591725],[0.084004245698452,0.059358980506659,0.17102265357971],[-0.025863438844681,-0.05132383108139,-0.038790814578533]],[[-0.059150956571102,-0.04585837572813,0.038591846823692],[0.081274196505547,0.13535226881504,0.11025611311197],[0.023665057495236,0.018468456342816,0.1327448040247]],[[0.050222747027874,0.035996120423079,-0.10550802201033],[0.026469433680177,0.068780727684498,0.10185202211142],[0.082999497652054,0.080647483468056,0.053326439112425]],[[-0.032240387052298,0.0015604043146595,0.014136975631118],[-0.098702229559422,-0.059475310146809,0.04393444955349],[-0.065097779035568,-0.03037790581584,-0.023531069979072]],[[-0.064907222986221,0.071901746094227,0.14902406930923],[0.059300802648067,0.14715558290482,-0.01273700594902],[0.11371959000826,0.042431976646185,0.041724693030119]],[[0.053722877055407,0.015251383185387,-0.040471665561199],[-0.00013089171261527,0.078377313911915,0.1089381724596],[-0.061750553548336,0.05387445166707,0.08278214931488]],[[0.016849108040333,-0.024276550859213,-0.099512986838818],[-0.027901289984584,-0.033704981207848,-0.16151633858681],[-0.035058107227087,0.023429593071342,-0.0079484507441521]],[[-0.014698894694448,-0.0013614312047139,0.028977377340198],[0.0016303197480738,0.010307732969522,0.092597633600235],[0.063479416072369,0.035126369446516,0.074461176991463]],[[0.18723680078983,-0.014927207492292,-0.01144434325397],[0.06884577870369,-0.044924076646566,0.099614366889],[0.10268352925777,-0.0073639615438879,0.048322379589081]],[[-0.045179482549429,-0.042108468711376,-0.10001092404127],[-0.12784914672375,-0.070775993168354,-0.13110855221748],[-0.018366660922766,0.077928930521011,0.033107306808233]],[[-0.035456452518702,-0.070039242506027,-0.057751853018999],[0.03945168107748,0.026898747310042,-0.093111179769039],[-0.014339236542583,0.047217652201653,0.013595066964626]],[[-0.039883960038424,0.035058289766312,-0.12683913111687],[-0.12807035446167,-0.10441742092371,0.027516148984432],[-0.10960722714663,-0.051469013094902,0.087917625904083]],[[0.076850078999996,0.024476382881403,0.014422397129238],[0.0013073853915557,0.036667224019766,-0.018503105267882],[0.01555208209902,0.027197228744626,0.017734529450536]],[[0.087971910834312,0.036273207515478,-0.12154122442007],[0.019038604572415,-0.065011598169804,0.096805803477764],[0.032010097056627,0.15581548213959,0.17662985622883]],[[0.032619751989841,0.015233535319567,-0.051556225866079],[0.14322379231453,0.013417228125036,0.097363486886024],[-0.14570836722851,-0.085224486887455,-0.15992443263531]],[[0.017198633402586,0.015425007790327,0.14800848066807],[0.020123591646552,0.043057050555944,-0.10680761188269],[-0.10478037595749,0.076225891709328,-0.052409950643778]],[[0.064801231026649,0.0036125821061432,-0.069097653031349],[0.032934915274382,0.056479126214981,0.011705438606441],[0.0088840546086431,0.05870708823204,0.10189548879862]],[[-0.014723489060998,0.027316324412823,-0.010915320366621],[-0.031682658940554,0.011901564896107,0.038820896297693],[-0.074438758194447,-0.037170723080635,-0.061839427798986]],[[-0.0105787999928,-0.016266256570816,-0.074795432388783],[0.04388489574194,0.054724518209696,0.018085898831487],[0.034775968641043,0.050796329975128,0.050872772932053]],[[0.047549493610859,-0.020055940374732,-0.0083832005038857],[0.1117065474391,0.023271072655916,0.11763977259398],[-0.030339013785124,0.081207759678364,0.0045360340736806]],[[0.0096961818635464,0.034934658557177,-0.041870772838593],[-0.040204588323832,-0.034570064395666,-0.073357485234737],[-0.038744259625673,0.080827295780182,0.12901255488396]],[[0.11228033900261,0.081914961338043,0.098244868218899],[-0.075484104454517,-0.16254848241806,-0.10115931928158],[0.09722650796175,-0.056745883077383,0.041492775082588]],[[0.053124636411667,0.022297509014606,-0.022708605974913],[-0.037539321929216,-0.13748654723167,-0.16057187318802],[0.023094575852156,-0.074124254286289,0.096746474504471]],[[-0.085062019526958,0.0065908832475543,-0.03495030850172],[0.07118683308363,-0.037659000605345,-0.0027283956296742],[-0.017701035365462,-0.027868457138538,0.030555220320821]],[[-0.072956591844559,-0.073886275291443,0.03989052772522],[0.063046984374523,0.078713692724705,0.042947854846716],[0.023566193878651,-0.019629184156656,-0.029037782922387]],[[0.036757294088602,0.019697209820151,0.050252575427294],[-0.0024471725337207,-0.051397144794464,0.076971724629402],[-0.020436804741621,-0.016596863046288,0.0026845869142562]],[[-0.08264072239399,-0.096144303679466,-0.032585076987743],[0.030721785500646,0.024715293198824,0.076191686093807],[0.031187893822789,0.0076544657349586,0.10167320072651]],[[-0.028692891821265,0.022684464231133,-0.0083549069240689],[0.069675244390965,0.027742132544518,-0.018075034022331],[0.043173778802156,0.093841746449471,0.035276964306831]],[[0.014209146611392,0.0430553779006,0.0087478840723634],[0.10414046049118,-0.043911553919315,0.014670335687697],[0.019626470282674,-0.028522444888949,0.086564257740974]],[[-0.015293532982469,0.020193917676806,-0.045104004442692],[-0.025599513202906,0.0044213701039553,-0.0053284405730665],[0.097745656967163,0.015222186222672,-0.0044453395530581]],[[0.040559850633144,0.10084818303585,0.056238874793053],[-0.08349821716547,0.076909385621548,-0.00095057114958763],[-0.03260649740696,0.031833562999964,0.17800347507]],[[0.10629941523075,0.11684803664684,0.13629998266697],[-0.0025730011984706,0.050770003348589,0.082572355866432],[-0.064466379582882,-0.099079139530659,-0.060976002365351]],[[0.065891362726688,0.11516724526882,0.00049931916873902],[0.037668462842703,-0.0017919619567692,0.056572966277599],[-0.027539474889636,-0.050455737859011,-0.057471632957458]],[[0.03344950824976,-0.093773491680622,-0.079735167324543],[0.090902961790562,-0.083098083734512,-0.07116686552763],[0.17823967337608,0.046093221753836,-0.05043138563633]],[[-0.01694718003273,-0.036594428122044,0.094318486750126],[0.035234730690718,0.12517212331295,0.075137376785278],[-0.057407040148973,0.025776194408536,0.015897836536169]],[[-0.10268829017878,-0.10146813839674,-0.0014553482178599],[-0.06065259873867,0.030837843194604,0.10101844370365],[0.18740454316139,0.064206354320049,0.17799310386181]],[[-0.04239609465003,-0.089989148080349,-0.14866928756237],[-0.013354844413698,-0.084259778261185,-0.0074932244606316],[0.0055587156675756,-0.011812008917332,-0.0061179464682937]],[[-0.14288146793842,-0.052750419825315,0.034551098942757],[-0.074139654636383,-0.06169805303216,-0.053822427988052],[0.014091803692281,-0.076900534331799,-0.057700235396624]],[[0.21331995725632,0.14491680264473,0.13184793293476],[0.0016086706891656,-0.029258260503411,0.017682928591967],[-0.051328111439943,-0.087703943252563,0.012470036745071]],[[-0.010025950148702,0.045044589787722,0.031011110171676],[-0.026943109929562,0.03051383793354,-0.019387673586607],[0.047840155661106,-0.023586271330714,0.015310297720134]],[[-0.00028769989148714,0.063771642744541,-0.013088840991259],[-0.016958164051175,0.077795751392841,-0.05126978084445],[-0.064280994236469,-0.070577293634415,-0.019932374358177]],[[-0.095690526068211,-0.071204759180546,0.033439770340919],[-0.039389237761497,0.055896759033203,0.016660027205944],[0.079196073114872,0.072788797318935,0.076587624847889]],[[-0.081722252070904,0.038181357085705,-0.083567567169666],[0.056780889630318,0.11191748827696,0.1380966603756],[0.048833850771189,-0.00072661874582991,0.12668332457542]],[[-0.010935042053461,0.029556026682258,0.015200569294393],[0.060219470411539,0.051128715276718,0.10602115094662],[-0.015172288753092,-0.0089640682563186,-0.092457167804241]],[[-0.11250492930412,-0.014766757376492,-0.050492882728577],[-0.02873457223177,0.009844190441072,-0.039328776299953],[-0.11253670603037,-0.085147090256214,0.0050039566121995]],[[0.036103796213865,0.10721391439438,0.084030374884605],[0.030787946656346,-0.0031698613893241,-0.012891914695501],[0.01998395845294,-0.025939887389541,0.094225406646729]],[[0.15052507817745,0.061595659703016,-0.029212191700935],[0.092116266489029,0.010566805489361,0.13595102727413],[0.06120690703392,0.068308062851429,0.034627910703421]],[[-0.044272527098656,-0.069528244435787,0.0042471778579056],[0.10064151883125,0.021083794534206,0.097356401383877],[0.00067618204047903,0.060333613306284,0.11231809109449]],[[0.074004955589771,-0.0044015645980835,-0.066477954387665],[-0.0098324464634061,0.015159490518272,0.10059298574924],[-0.067345127463341,0.06764917075634,0.066483415663242]],[[0.019997037947178,0.072015911340714,-0.067965805530548],[0.055874560028315,-0.072945423424244,-0.057470094412565],[-0.048806838691235,0.064464092254639,0.14681842923164]],[[0.024059010669589,-0.030083995312452,-0.0026376920286566],[0.036738380789757,6.1372847994789e-06,-0.081001162528992],[0.071664907038212,0.046987868845463,0.078408874571323]],[[-0.069106079638004,-0.012265492230654,0.018972799181938],[-0.072568692266941,0.093715339899063,0.017242109403014],[-0.0054901158437133,0.042578689754009,0.088684305548668]],[[0.011747540906072,-0.050727859139442,-0.03296972066164],[0.040332056581974,-0.032993201166391,-0.029529541730881],[0.093258246779442,0.022669918835163,0.032543543726206]],[[-0.036167200654745,0.02065054513514,-0.037873812019825],[-0.035135503858328,0.071918994188309,-0.042178872972727],[0.079336993396282,0.11594375967979,0.065046697854996]],[[-0.17686073482037,-0.11347560584545,-0.01374227553606],[0.049607500433922,-0.014851400628686,-0.0082957902923226],[0.13443000614643,0.058046143501997,0.13401670753956]],[[-0.040640309453011,-0.016267145052552,-0.15858969092369],[0.022489994764328,0.072707615792751,0.077143616974354],[-0.02504001557827,-0.0047511863522232,0.025072280317545]],[[-0.047674290835857,0.0068712686188519,0.033639799803495],[0.089237488806248,0.072554662823677,0.043251421302557],[-0.023637540638447,0.043315801769495,0.082013554871082]],[[-0.046054068952799,-0.05163786932826,-0.045999050140381],[0.037919107824564,-0.0082931406795979,-0.036617510020733],[0.079631835222244,-0.031931530684233,0.076154604554176]],[[-0.04794180765748,-0.0069083329290152,-0.11063167452812],[0.079586938023567,-0.035220138728619,-0.015853427350521],[0.023311598226428,-0.071156807243824,-0.047529309988022]],[[-0.037150945514441,-0.093838080763817,0.011524096131325],[-0.10400667786598,-0.058492597192526,-0.01772253215313],[-0.0079613253474236,-0.023274702951312,0.10563603788614]],[[-0.035597026348114,-0.064513564109802,0.029678357765079],[-0.016227032989264,0.061517409980297,-0.01405241433531],[-0.00591752352193,0.047980062663555,-0.014840928837657]],[[-0.049474507570267,-0.085782334208488,-0.093632094562054],[-0.086991287767887,-0.022473957389593,-0.035141713917255],[0.00273621478118,-0.064814142882824,0.058625090867281]],[[-0.04494147375226,-0.021360861137509,0.043472196906805],[-0.031484495848417,-0.047927301377058,-0.011275606229901],[-0.0020020874217153,0.082539573311806,-0.022148743271828]],[[-0.0797024294734,-0.085015662014484,-0.022279152646661],[-0.084944814443588,-0.073171727359295,-0.0337132550776],[-0.054335284978151,-0.012577262707055,-0.052373304963112]],[[-0.053482059389353,-0.081702843308449,-0.077475778758526],[-0.083827026188374,-0.044244814664125,-0.0012370423646644],[-0.10313533991575,0.0080414777621627,0.025749666616321]],[[0.078702807426453,0.13814949989319,0.12444639205933],[-0.019763924181461,0.02884035371244,0.018150139600039],[0.097824402153492,0.059041362255812,-0.045574896037579]],[[-0.1246685013175,-0.055016808211803,-0.0092213740572333],[0.012625531293452,-0.078020177781582,0.00025585043476894],[0.072300836443901,-0.031504198908806,-0.021313341334462]],[[-0.051614962518215,-0.022088335826993,0.072756230831146],[-0.07577507942915,-0.1044130474329,-0.052584115415812],[0.12695387005806,0.060399800539017,-0.084058046340942]],[[-0.006181257776916,-0.036376409232616,0.030410442501307],[0.081696286797523,-0.01081367675215,0.10480254888535],[0.062192421406507,-0.024988308548927,0.026148175820708]],[[-0.096166953444481,-0.0021476128604263,0.052521921694279],[0.0075406488031149,-0.003385332878679,-0.0013295421376824],[0.022850908339024,0.00614163139835,0.014229389838874]],[[-0.065896697342396,-0.048084430396557,0.0028687182348222],[0.15357914566994,0.056399289518595,0.0042652902193367],[0.033825114369392,-0.047323510050774,-0.031831916421652]],[[-0.052984420210123,-0.0066297482699156,0.10641584545374],[-0.011064572259784,-0.018864328041673,0.037767503410578],[0.099941194057465,-0.048644509166479,-0.16209925711155]],[[-0.10447030514479,-0.063811257481575,-0.14728935062885],[0.039724983274937,0.038870874792337,0.074522040784359],[0.056702945381403,0.040163230150938,-0.028065903112292]],[[0.1552527397871,0.049589015543461,0.024908835068345],[0.052776411175728,0.19604657590389,0.056838009506464],[-0.026035530492663,-0.10427452623844,0.0078552076593041]],[[0.024129394441843,0.030188543722034,-0.0083244126290083],[-0.0011570369824767,0.060137379914522,-0.09198834747076],[0.089392803609371,0.04284892976284,0.10081747174263]],[[0.052342616021633,0.030157467350364,0.084276974201202],[0.011000983417034,-0.049701582640409,-0.060881834477186],[0.096708379685879,-0.022497599944472,-0.025622276589274]],[[-0.0031287034507841,0.049717642366886,0.00054304039804265],[0.012587548233569,0.16156582534313,0.058701444417238],[0.089185170829296,0.09445782750845,0.022787731140852]],[[-0.045288894325495,0.0095407329499722,0.020805530250072],[0.12895336747169,0.046679075807333,-0.029484242200851],[0.012469438835979,-0.11840863525867,-0.057177055627108]],[[-0.013664921745658,0.047205749899149,-0.15360687673092],[0.074046202003956,-0.075166247785091,-0.027389334514737],[0.0442182905972,-0.011261829175055,-0.020012510940433]],[[-0.073120757937431,-0.08177550137043,-0.052544258534908],[-0.025312269106507,-0.041875429451466,-0.048601638525724],[0.048692271113396,0.029048681259155,0.0049894829280674]],[[-0.14646792411804,-0.096219934523106,-0.047296863049269],[0.010216873139143,0.062180750072002,0.04857238009572],[0.037990543991327,0.13127702474594,0.056419473141432]],[[-0.049325309693813,-0.055796898901463,-0.034011498093605],[0.0014645048649982,0.17109994590282,0.20046862959862],[0.11798296868801,0.052089132368565,-0.033234972506762]],[[0.040378712117672,-0.036258172243834,-0.027295617386699],[0.14753326773643,0.078901939094067,0.14407166838646],[0.035353843122721,-0.1349151879549,-0.20168074965477]],[[-0.080472186207771,-0.0048207901418209,0.0034559878986329],[0.0733382999897,0.0062652882188559,0.078203946352005],[0.13222949206829,0.015313585288823,0.03910380974412]],[[-0.050842184573412,-0.083887614309788,-0.054946694523096],[0.24981351196766,0.23538893461227,0.25048613548279],[-0.035031527280807,0.096001014113426,-0.006169896107167]],[[-0.043570343405008,-0.041437219828367,-0.043366178870201],[-0.13570488989353,-0.094816647469997,0.016991464421153],[0.014867591671646,0.044133134186268,0.08861368149519]],[[0.10857155919075,0.060075584799051,0.027644647285342],[-0.11459724605083,-0.14535208046436,-0.052675873041153],[-0.025733793154359,-0.10203247517347,-0.044454652816057]],[[-0.029348345473409,-0.025991477072239,-0.047732375562191],[-0.04163671284914,-0.027368219569325,0.025766735896468],[0.084658950567245,0.0033530537039042,0.10744038969278]],[[0.13426618278027,0.0053528579883277,-0.012845404446125],[0.063565261662006,0.049079261720181,0.10642309486866],[-0.041040793061256,0.040628273040056,0.1215840280056]],[[-0.046382628381252,0.037915773689747,-0.13435736298561],[0.077710844576359,-0.012912883423269,0.033759716898203],[0.011645044200122,-0.096878319978714,0.019445588812232]],[[-0.096169903874397,-0.086750358343124,0.0056362058967352],[0.089059583842754,0.028117839246988,0.0010869228281081],[-0.023228881880641,0.058430351316929,0.070772707462311]],[[0.067683562636375,0.0013100698124617,-0.034954506903887],[0.1678079366684,0.088311567902565,0.055945854634047],[0.13255260884762,-0.011123850010335,-0.045105125755072]],[[0.10415940731764,0.097942307591438,0.081358022987843],[0.021137457340956,0.0064063952304423,0.083283729851246],[0.09159193187952,-0.039825096726418,-0.034909933805466]],[[0.11614156514406,0.21785329282284,0.095591925084591],[0.048164740204811,0.022231949493289,-0.079559959471226],[-0.092164270579815,-0.088104166090488,-0.030953206121922]],[[0.11543901264668,-0.054350752383471,0.074123479425907],[0.14179143309593,0.065689370036125,0.040711347013712],[-0.023902162909508,0.0074895415455103,0.084478572010994]],[[0.05174271017313,0.037399236112833,0.026747902855277],[0.030855942517519,-0.0013607647269964,0.0032584019936621],[0.069366790354252,-0.043087050318718,-0.021264413371682]],[[0.089632585644722,-0.05243606120348,0.14190937578678],[0.10915447771549,0.015609135851264,-0.11600241065025],[0.027416905388236,0.13042034208775,-0.13044740259647]],[[-0.06973821669817,-0.11243287473917,-0.00051631539827213],[0.0722286850214,0.061636008322239,-0.063039943575859],[-0.052329149097204,-0.045117270201445,0.01374701783061]],[[-0.06267511844635,0.040049217641354,-0.017811061814427],[-0.029740853235126,-0.12804208695889,-0.053379263728857],[0.070520401000977,-0.0080237314105034,0.02337234467268]],[[-0.062374278903008,-0.031418982893229,-0.067454226315022],[0.030480973422527,0.046451933681965,0.068784922361374],[0.008778503164649,0.029397211968899,0.0047529144212604]],[[-0.060888648033142,0.087756119668484,-0.089613743126392],[-0.043837241828442,0.0047148787416518,-0.073983624577522],[0.11584697663784,0.077645368874073,0.17863301932812]],[[0.025999577715993,-0.072807960212231,-0.061392284929752],[-0.10532452911139,-0.06949445605278,-0.04038106277585],[0.047011502087116,-0.017701299861073,0.052604425698519]],[[-0.12830881774426,-0.042584210634232,0.14130218327045],[0.017242142930627,-0.055153273046017,0.054980337619781],[0.04783445969224,-0.030559550970793,-0.059973631054163]],[[-0.0032452458981425,0.018647128716111,0.017459271475673],[0.018376486375928,0.051757678389549,0.042075853794813],[-0.040007218718529,-0.014849725179374,0.015767745673656]],[[-0.06466556340456,-0.051611579954624,0.00034548778785393],[0.021703699603677,0.068403117358685,0.079623505473137],[0.05390215292573,-0.055182959884405,0.11550656706095]],[[-0.11365825682878,-0.031707771122456,0.051241487264633],[-0.11875043064356,-0.083653844892979,-0.012340146116912],[-0.18371839821339,-0.10087634623051,0.098120845854282]],[[0.10093849152327,-0.012818341143429,0.018510973080993],[0.05557394400239,0.042060770094395,0.13770313560963],[0.015850778669119,-0.056849844753742,0.039941020309925]],[[0.043916177004576,-0.026785800233483,0.074943691492081],[0.023319121450186,0.10721853375435,0.044876024127007],[-0.03570581972599,0.026166437193751,0.066906653344631]],[[0.096031464636326,0.033317983150482,0.21279795467854],[-0.0141407167539,-0.055462051182985,-0.013575511053205],[-0.089069478213787,-0.033688604831696,-0.065296530723572]],[[0.079285182058811,0.14495526254177,0.025337496772408],[-0.020722098648548,0.0075123677961528,-0.029801264405251],[0.022187691181898,-0.075799949467182,0.0052906642667949]],[[-0.018512338399887,-0.063101716339588,-0.094723455607891],[-0.0053044371306896,-0.0098650567233562,-0.014896272681653],[0.0064246826805174,0.11338643729687,0.026488941162825]]],[[[0.024784363806248,-0.062131077051163,0.097870513796806],[-0.0012552094412968,0.03542959317565,0.045398995280266],[-0.034693792462349,0.026407305151224,-0.016338495537639]],[[0.0053365402854979,-0.014324363321066,-0.035180062055588],[0.003548794426024,-0.025586638599634,-0.0044137854129076],[0.031076263636351,-0.023773254826665,-0.11725224554539]],[[-0.040431182831526,-0.0033081145957112,0.030568176880479],[0.052578814327717,-0.068232022225857,-0.03225264698267],[-0.0046087983064353,0.042200800031424,-0.027939217165112]],[[0.069699205458164,0.024249490350485,-0.051647707819939],[-0.0050257770344615,0.034425314515829,0.046713873744011],[-0.032767727971077,-0.048840388655663,-0.017106480896473]],[[-0.02257994376123,-0.056499592959881,-0.055326197296381],[-0.024077640846372,0.060606632381678,0.0042955884709954],[0.049824677407742,0.12346070259809,-0.077398329973221]],[[0.073183469474316,0.072682619094849,0.019912637770176],[-0.017978643998504,0.049041192978621,-0.02972942776978],[0.063662707805634,0.015915859490633,-0.10299371927977]],[[-0.0057203941978514,0.1269022077322,-0.045253176242113],[-0.0066445893608034,0.084654100239277,-0.020710630342364],[-0.032510403543711,0.074655570089817,0.026172680780292]],[[0.13585631549358,-0.065716981887817,-0.049829829484224],[0.076175309717655,-0.023302601650357,0.043485395610332],[-0.077798530459404,-0.026740221306682,-0.091227255761623]],[[0.034876309335232,0.032683707773685,0.010895191691816],[-0.041838869452477,-0.14779303967953,0.053645968437195],[0.046732023358345,-0.041041664779186,0.015865867957473]],[[-0.031452376395464,0.01935151964426,-0.14190842211246],[0.056281991302967,0.023683350533247,-0.060314174741507],[-0.012039267458022,-0.10035318136215,-0.057314608246088]],[[0.051892653107643,-0.077055208384991,0.018955593928695],[-0.095498085021973,-0.018627224490047,-0.063515365123749],[0.060766570270061,-0.010539254173636,-0.007862513884902]],[[-0.037628941237926,-0.082595221698284,-0.0048004263080657],[0.097373567521572,0.039497133344412,0.077765762805939],[0.016920778900385,-0.044053681194782,-0.079474054276943]],[[-0.062394179403782,-0.015349832363427,0.070118755102158],[-0.0043540755286813,0.045603401958942,-0.061206698417664],[0.05745504796505,0.08097318559885,0.0083430232480168]],[[0.0063282991759479,0.047073971480131,0.027983855456114],[-0.025930024683475,0.018994972109795,0.030412701889873],[-0.03732518479228,0.053678777068853,0.055209569633007]],[[0.0044967150315642,-0.079188197851181,-0.075640842318535],[-0.023425415158272,-0.029435953125358,0.015108979307115],[0.046458829194307,-0.016881881281734,-0.0034903085324913]],[[0.061781246215105,-0.044407282024622,-0.067076608538628],[0.041860688477755,-0.061205312609673,-0.02058701403439],[0.047851376235485,-0.04972991719842,-0.1267883181572]],[[0.03682142868638,0.099547699093819,-0.070424415171146],[0.022121109068394,-0.10980653017759,-0.03545493260026],[-0.04004093632102,-0.097029991447926,-0.052680894732475]],[[-0.069595575332642,-0.0091186864301562,0.017044175416231],[0.012033494189382,-0.11875528842211,0.12978535890579],[0.032747730612755,-0.057011347264051,0.092160150408745]],[[-0.060730911791325,-0.053809877485037,0.03075035661459],[-0.047710705548525,-0.058991655707359,-0.093769192695618],[0.025264652445912,-0.1270005851984,-0.010202766396105]],[[0.04005379602313,-0.1369845867157,0.011921611614525],[-0.012160423211753,-0.077343642711639,0.061032220721245],[-0.067683286964893,-0.20072580873966,0.0035989265888929]],[[-0.093570739030838,-0.072376638650894,0.06128503382206],[0.015716092661023,-0.018108926713467,-0.036102809011936],[0.0015819263644516,-0.013261372223496,0.017022056505084]],[[-0.05663176625967,-0.10303331166506,-0.108598344028],[-0.040264595299959,0.047461494803429,-0.0001507958950242],[0.00047369778621942,0.090273886919022,-0.023953484371305]],[[-0.0033100552391261,0.043431658297777,0.0022771556396037],[0.065994516015053,0.028345579281449,0.08964803814888],[-8.8390035671182e-05,-0.061730865389109,-0.058707635849714]],[[0.038120545446873,0.025150125846267,-0.012718605808914],[-0.046605382114649,-0.021860785782337,0.028727177530527],[0.065773241221905,-0.012823226861656,-0.015142142772675]],[[-0.0016965979011729,-0.068529851734638,-0.025703575462103],[0.070895455777645,0.041985582560301,-0.12238281220198],[0.017958356067538,0.073058590292931,0.040754854679108]],[[0.10542101413012,0.012410758063197,0.05315350741148],[0.05049516633153,-0.001801478327252,0.045405294746161],[0.021796526387334,-0.058414038270712,-0.033831007778645]],[[-0.02576350979507,0.019590927287936,0.050689645111561],[-0.045007586479187,-0.058555122464895,0.025054346770048],[-0.11344718188047,-0.010721473954618,0.075411476194859]],[[0.049936320632696,0.10993868112564,-0.041460286825895],[0.083486281335354,-0.1421727836132,0.025070143863559],[-0.034958533942699,0.053861826658249,-0.10938950628042]],[[0.021390369161963,0.0081195728853345,-0.083222739398479],[-0.030987912788987,-0.11984081566334,-0.073175475001335],[-0.070649527013302,-0.034669443964958,0.0024465871974826]],[[-0.019693572074175,-0.020656244829297,-0.055453401058912],[0.00028297345852479,0.072269454598427,-0.043295815587044],[0.080949865281582,-0.013920981436968,-0.10718570649624]],[[-0.12212952971458,-0.031971700489521,-0.1223364546895],[-0.014957375824451,-0.023810433223844,-0.0076223257929087],[-0.024290025234222,0.05081644281745,0.082014471292496]],[[-0.019434753805399,-0.014838590286672,0.11706508696079],[-0.061374884098768,-0.08664682507515,0.0057486537843943],[-0.073794603347778,-0.028143899515271,0.10563652962446]],[[-0.052997052669525,-0.030975420027971,0.034650005400181],[-0.011566987261176,-0.033154007047415,-0.053703419864178],[-0.040362246334553,0.0070471065118909,-0.081869930028915]],[[0.023351779207587,0.0061093727126718,-0.015359645709395],[-0.078747071325779,0.00075973448110744,-0.011980446055532],[0.02852857299149,0.060314293950796,0.035063497722149]],[[-0.0031577178742737,-0.0843106508255,-0.13436049222946],[0.016982289031148,-0.032744131982327,-0.061566591262817],[-0.051383212208748,0.057732556015253,-0.045600239187479]],[[-0.13670501112938,0.03299729898572,0.027355579659343],[0.082302175462246,-0.03266541659832,-0.073599353432655],[-0.061813149601221,-0.027052769437432,-0.028401106595993]],[[0.02267299592495,-0.080738015472889,-0.039857737720013],[0.042744655162096,-0.059736002236605,-0.069773316383362],[0.004742787219584,-0.019369930028915,-0.090697608888149]],[[0.0066912402398884,0.042840082198381,-0.035392951220274],[0.12003197520971,-0.067067310214043,0.0016301792347804],[0.15479989349842,-0.021757766604424,0.056715987622738]],[[0.11115894466639,-0.00014813398593105,-0.010129529051483],[-0.011863929219544,-0.096302784979343,-0.043513935059309],[0.065346591174603,0.010850319638848,-0.024636838585138]],[[0.019355174154043,0.082608096301556,-0.050925306975842],[0.088439740240574,-0.072090424597263,0.032714165747166],[0.0033234048169106,0.015432628802955,0.10138013958931]],[[-0.052178353071213,-0.069166637957096,-0.01748569868505],[-0.013035628944635,0.086300753057003,-0.053672697395086],[0.065569430589676,0.15950758755207,-0.006956263910979]],[[0.042619738727808,-0.05094288662076,-0.028673840686679],[-0.020878694951534,-0.020620668306947,0.024737387895584],[-0.039675995707512,-0.0057904282584786,0.022588239982724]],[[-0.021210849285126,-0.054791964590549,0.12425308674574],[-0.060461588203907,-0.08968397974968,0.030677143484354],[0.033713441342115,0.012913032434881,-0.073844760656357]],[[-0.042271375656128,-0.016707891598344,0.013493252918124],[0.046749860048294,-0.063970722258091,-0.068212546408176],[0.014275797642767,-0.030660361051559,-0.075518593192101]],[[-0.042342163622379,0.048356428742409,-0.021749308332801],[0.056715495884418,0.040892995893955,-0.05772290751338],[0.0020243364851922,0.042726445943117,0.036083452403545]],[[-0.025474930182099,-0.059436619281769,-0.070597931742668],[0.090482316911221,0.022398307919502,-0.037779334932566],[0.055237576365471,0.019659010693431,-0.07189965993166]],[[-0.058454919606447,-0.14243224263191,0.028399165719748],[-0.092488467693329,-0.0066674230620265,0.042149394750595],[0.035887006670237,-0.064245909452438,0.027931723743677]],[[0.064367555081844,-0.048108492046595,-0.11852536350489],[-0.027296096086502,-0.08365810662508,-0.019141169264913],[0.090816490352154,0.02645605057478,0.079762406647205]],[[-0.047161608934402,-0.015585504472256,0.031930439174175],[-0.047605037689209,0.03775005415082,0.13583055138588],[0.084105849266052,-0.015832614153624,-0.16636714339256]],[[0.020530737936497,0.014458633959293,-0.051425244659185],[-0.055796530097723,0.035714190453291,-0.028080860152841],[-0.041325483471155,0.037187360227108,-0.021357107907534]],[[-0.008378230035305,0.0063990424387157,-0.066184006631374],[0.0098812822252512,0.060768861323595,-0.084861405193806],[0.094729773700237,-0.11499878019094,-0.060147237032652]],[[0.023993147537112,-0.058942347764969,0.042125441133976],[-0.044126257300377,0.0036259796470404,0.0067861783318222],[0.024862768128514,5.2786479500355e-05,0.089096777141094]],[[-0.043095357716084,-0.098085224628448,-0.1054301187396],[-0.069625772535801,-0.052831627428532,-0.043473742902279],[-0.011588812805712,-0.036053486168385,-0.020486261695623]],[[0.031137332320213,-0.023540936410427,0.011649606749415],[0.054779995232821,0.025078028440475,-0.031025346368551],[0.013460672460496,-0.0026034882757813,-0.011811432428658]],[[0.019145250320435,0.049613017588854,-0.044640742242336],[-0.077991388738155,0.067829981446266,0.068614974617958],[-0.096624001860619,0.016205722466111,0.083954192698002]],[[0.091579027473927,-0.0098631242290139,0.044176045805216],[0.013038551434875,-0.035801775753498,0.01470394525677],[0.1102231964469,-0.0065268934704363,0.034784648567438]],[[-0.062570855021477,0.045730575919151,-0.025367589667439],[0.11351478844881,-0.067618601024151,0.0097120385617018],[-0.082332208752632,-0.04863403365016,0.082430303096771]],[[0.071022912859917,-0.032715685665607,-0.088321916759014],[-0.056440878659487,-0.025216685608029,-0.053537964820862],[-0.024165688082576,-0.020744636654854,0.036938648670912]],[[-0.0584373511374,-0.00022976219770499,-0.030290722846985],[0.028635641559958,-0.049312062561512,-0.040431998670101],[-0.00051304569933563,-0.056871920824051,0.031079458072782]],[[-0.085169218480587,0.14657452702522,-0.006013672798872],[-0.084576807916164,0.10060968250036,-0.065504737198353],[0.085225775837898,-0.017026210203767,-0.023556262254715]],[[0.078717857599258,-0.004119236022234,0.012272300198674],[-0.013769082725048,-0.0011146445758641,-0.00023248707293533],[-0.083970874547958,-0.024763470515609,-0.096642799675465]],[[0.013702359981835,-0.0074641136452556,0.035068601369858],[-0.0050337458960712,-0.0086252186447382,0.078473709523678],[0.082212194800377,-0.014167523942888,-0.078429579734802]],[[0.082270629703999,0.014285313896835,-0.053827211260796],[-0.0533930324018,0.02459972910583,0.023674292489886],[0.023841099813581,-0.088563375174999,0.0092116370797157]],[[0.1411114782095,0.087624453008175,-0.023112509399652],[-0.034714546054602,-0.088258296251297,0.00010633213969413],[-0.097138844430447,-0.042760848999023,0.020492585375905]],[[0.02315079793334,0.014294705353677,0.043380748480558],[0.033652827143669,0.033805046230555,0.0086514158174396],[0.018767012283206,0.043679792433977,0.037473421543837]],[[-0.020003976300359,0.059266649186611,-0.0098363263532519],[0.06683661788702,-0.041157837957144,-0.0058041317388415],[0.011290253140032,0.0059916698373854,0.003684125142172]],[[-0.053951125591993,-0.065248936414719,0.030419755727053],[-0.01278386451304,-0.064584597945213,-0.037049606442451],[0.0032608322799206,-0.054876856505871,0.00049083243357018]],[[0.0044495463371277,-0.02881140075624,-0.024057283997536],[-0.064290717244148,-0.027870366349816,0.01175647135824],[-0.0057910145260394,-0.024230550974607,-0.087992966175079]],[[-0.078431077301502,-0.050160650163889,0.01127533428371],[-0.067491769790649,-0.099545232951641,0.032317657023668],[-0.018237836658955,-0.026125809177756,0.083285570144653]],[[0.0031737303361297,0.0094418842345476,0.028431063517928],[0.020155834034085,-0.022875702008605,0.036717180162668],[0.0019556705374271,0.06892029941082,0.040129251778126]],[[-0.015000968240201,-0.039500020444393,-0.045920014381409],[-0.0092420587316155,-0.018514866009355,-0.064228892326355],[-0.038898717612028,-0.065834052860737,0.054832234978676]],[[0.10227449983358,0.068335376679897,-0.0010735742980614],[-0.010270199738443,-0.032559774816036,0.022577350959182],[0.00085357844363898,0.048224192112684,-0.050876665860415]],[[0.094799757003784,0.013019178994,0.042092468589544],[-0.017228551208973,0.097356624901295,-0.086983785033226],[-0.09138759970665,0.044773694127798,-0.1154528260231]],[[0.012371115386486,0.031167451292276,-0.036785945296288],[-0.0076887276954949,0.02654042840004,-0.035387393087149],[-0.047171652317047,0.0027299844659865,0.092764191329479]],[[-0.15961715579033,0.025396587327123,0.018044266849756],[0.061096251010895,-0.084901750087738,-0.038432314991951],[0.058951999992132,-0.028954299166799,0.1158390045166]],[[-0.010388439521194,0.0013649101601914,0.19791376590729],[-0.033633772283792,0.087035432457924,0.087336868047714],[-0.060928951948881,-0.03821475058794,0.067492969334126]],[[0.028863979503512,-0.011323993094265,0.057213321328163],[-0.081328324973583,0.014165833592415,-0.041288547217846],[-0.055930953472853,-0.06652095913887,-0.0063098650425673]],[[0.0014258611481637,-0.002688241424039,-0.011106064543128],[-0.053986623883247,-0.060717694461346,-0.026802625507116],[-0.077447317540646,-0.097717478871346,-0.00613615475595]],[[0.016932850703597,0.027734834700823,0.087820209562778],[0.0066550117917359,-0.013695248402655,-0.021513288840652],[-0.071359433233738,-0.12524969875813,-0.054424073547125]],[[-0.012636865489185,0.054488461464643,-0.024421118199825],[0.029231496155262,0.09959751367569,-0.048068810254335],[-0.040326125919819,-0.063293732702732,-0.0088105127215385]],[[0.11130550503731,0.055307347327471,0.025205181911588],[-0.018276792019606,0.072068966925144,0.084160663187504],[-0.00011617362906691,-0.020606664940715,-0.055561352521181]],[[0.097013458609581,-0.00062023440841585,-0.048529133200645],[-0.0038939518854022,0.011799116618931,-0.010586069896817],[-0.02247797138989,0.076695486903191,0.043132465332747]],[[-0.0098571805283427,-0.047865405678749,0.073906362056732],[-0.042490657418966,0.00020212244999129,0.0014471194008365],[-0.04241931438446,-0.0087031442672014,0.018052611500025]],[[-0.010898380540311,0.021329378709197,0.017646249383688],[-0.077736407518387,-0.063219092786312,-0.12895420193672],[-0.0067523154430091,-0.03463939204812,-0.11357811838388]],[[-0.1343582123518,-0.10756582021713,0.0084977382794023],[-0.058722976595163,-0.048972465097904,0.094858236610889],[-0.068326108157635,0.052200544625521,0.10281639546156]],[[-0.095110207796097,-0.018857995048165,-0.031829319894314],[-0.042095135897398,0.00050267088226974,-0.020929297432303],[-0.0162691809237,0.089162908494473,-0.0092970291152596]],[[-0.056450691074133,0.018726002424955,0.032858144491911],[-0.01896995678544,-0.048930011689663,-0.061716727912426],[0.04323161765933,0.04151464253664,-0.087679699063301]],[[-0.090055882930756,-0.02467748709023,-0.003410023637116],[-0.12178830057383,0.032151632010937,-0.17050884664059],[-0.010429104790092,0.027898702770472,-0.068570487201214]],[[0.024018388241529,0.11012171208858,0.078058548271656],[-0.066641710698605,-0.018181649968028,-0.011456448584795],[0.0055479928851128,0.06730829924345,-0.048617083579302]],[[0.06816354393959,0.055516134947538,-0.0182587467134],[0.046161815524101,0.048630781471729,0.050343085080385],[0.068010099232197,0.088227510452271,0.14888335764408]],[[-0.13145489990711,0.0061190482228994,-0.044278670102358],[-0.073638536036015,-0.0031323658768088,-0.0091307647526264],[-0.013073829934001,-0.0547836124897,-0.089989170432091]],[[-0.043422501534224,0.10003230720758,0.070125468075275],[0.027014888823032,0.18519428372383,-0.047928232699633],[-0.011291646398604,-0.010217314586043,0.0001683943264652]],[[-0.0089503061026335,-0.031527485698462,0.044412694871426],[-0.024222444742918,-0.014648516662419,-0.0099291885271668],[0.038191616535187,0.021659277379513,-0.0095319515094161]],[[0.057750314474106,0.060251895338297,-0.041244242340326],[0.036071989685297,-0.068831719458103,-0.076477468013763],[-0.036804385483265,0.01802503503859,-0.043337125331163]],[[-0.076907299458981,-0.030108464881778,-0.04061284288764],[-0.051012028008699,-0.0056526195257902,0.12801930308342],[-0.036214545369148,-0.098320879042149,0.0059868535026908]],[[0.031801640987396,0.0049298126250505,-0.07541586458683],[0.093226946890354,0.06753695756197,-0.014710391871631],[0.080807559192181,-0.070353142917156,-0.089921489357948]],[[0.017323298379779,-0.054450668394566,-0.06208024546504],[-0.065786398947239,0.016882076859474,0.0006896075210534],[-0.032620683312416,-0.11249504983425,-0.018623759970069]],[[-0.027132466435432,0.071339793503284,-0.047903161495924],[0.031257398426533,0.06984119862318,0.13408666849136],[-0.065604232251644,-0.06520214676857,0.023146839812398]],[[-0.019846083596349,-0.0093494923785329,-0.022962354123592],[0.01269717887044,-0.0067613949067891,-0.040273666381836],[-0.008473189547658,0.041771840304136,0.022945428267121]],[[-0.069745279848576,-0.13090115785599,-0.030702915042639],[-0.00084565376164392,-0.045175734907389,0.030684346333146],[-0.075177758932114,-0.082556396722794,-0.026615876704454]],[[0.046850465238094,0.024315608665347,-0.082659751176834],[0.065094113349915,-0.036854479461908,-0.079340025782585],[0.065490633249283,-0.028208550065756,-0.036235120147467]],[[0.008159264922142,0.035585463047028,-0.18567715585232],[0.023168614134192,0.042624436318874,-0.057815443724394],[0.021757706999779,-0.031884294003248,-0.049060545861721]],[[0.021954949945211,0.019503360614181,-0.0066556897945702],[-0.010843186639249,-0.012970290146768,-0.14338542521],[0.033979974687099,-0.11229377985001,0.028720706701279]],[[0.055616572499275,0.10210187733173,-0.015019745565951],[0.0083548650145531,0.016916627064347,0.067989476025105],[0.053106758743525,-0.075831428170204,-0.057565849274397]],[[-0.027831876650453,-0.072274342179298,-0.036390587687492],[0.0077403238974512,0.021053962409496,-0.0035818726755679],[0.042829267680645,-0.027275031432509,-0.047003645449877]],[[-0.033706825226545,0.081212013959885,0.0084705576300621],[-0.052504818886518,-0.036751911044121,-0.00064354832284153],[0.082442410290241,-0.074903085827827,-0.050910152494907]],[[0.10293099284172,0.0097814872860909,0.070587895810604],[0.051401704549789,-0.023978598415852,-0.074872568249702],[-0.0022847808431834,-0.049625210464001,0.021432945504785]],[[0.049433670938015,-0.069561168551445,-0.068064883351326],[0.0042680464684963,-0.026131311431527,-0.04341684654355],[0.047328252345324,0.054577115923166,-0.088694103062153]],[[0.10663784295321,-0.029881281778216,-0.041252676397562],[0.079346545040607,0.028213430196047,-0.0045608449727297],[-0.02218522131443,-0.071268610656261,0.011720755137503]],[[-0.05577414855361,0.026424499228597,-0.031779196113348],[0.023886684328318,0.013423258438706,-0.041690602898598],[-0.06976605951786,-0.018079007044435,-0.041921090334654]],[[0.0099223861470819,0.08500874787569,0.048182267695665],[-0.0024223295040429,0.086295567452908,-0.0075636012479663],[0.027953300625086,-0.046226531267166,-0.056555166840553]],[[0.0056719221174717,-0.039558727294207,0.0055818385444582],[-0.055694323033094,-0.015468463301659,0.06267873197794],[-0.025382477790117,0.14826618134975,-0.031302928924561]],[[-0.04711202904582,-0.1143686696887,0.011734200641513],[0.040971912443638,-0.14821287989616,0.028207253664732],[0.0027786940336227,-0.027793558314443,0.071868367493153]],[[-0.050619687885046,0.11281832307577,0.020469035953283],[-0.041162952780724,-0.028876284137368,0.016233181580901],[0.011625290848315,-0.0063342987559736,-0.047020591795444]],[[0.0091571947559714,0.022685371339321,0.0032679049763829],[0.015700256451964,0.02060654759407,0.084248475730419],[-0.016669292002916,0.032054789364338,0.022033227607608]],[[-0.061699628829956,0.032148081809282,0.038236808031797],[-0.078078292310238,-0.032638944685459,0.0090937661007047],[0.031429503113031,-0.081649497151375,0.02480979450047]],[[-0.059001058340073,-0.10144598782063,-0.085715636610985],[-0.035841181874275,0.086668282747269,-0.09707172960043],[-0.0089453998953104,-0.087187267839909,-0.13861073553562]],[[0.062366206198931,-0.047594897449017,0.0044458443298936],[-0.089681230485439,-0.0038806018419564,0.062094189226627],[-0.041016139090061,-0.078475594520569,-0.0057167271152139]],[[0.045656491070986,0.069406487047672,0.060666874051094],[-0.034185007214546,-0.1301824003458,-0.08829765021801],[-0.0182368401438,-0.036814369261265,-0.049274940043688]],[[-0.031690988689661,0.0082642612978816,-0.11105346679688],[-0.031516101211309,-0.11557519435883,0.01166969165206],[0.0049942685291171,-0.0032146463636309,0.098209552466869]],[[-0.077914014458656,0.075826339423656,-0.087449379265308],[-0.033848240971565,-0.032823991030455,-0.09266410022974],[0.083600975573063,0.024148792028427,-0.013050589710474]],[[0.021800557151437,-0.0067396746017039,0.086899824440479],[0.0045210742391646,0.030861111357808,0.048268031328917],[0.010193483904004,0.15054522454739,0.017722329124808]],[[0.027421966195107,-0.028563724830747,-0.12475774437189],[-0.01656830497086,-0.062796205282211,-0.018167350441217],[-0.022209141403437,-0.0043684118427336,-0.0038088869769126]],[[-0.054963067173958,0.0011685906210914,-0.077586092054844],[0.051523186266422,-0.0081749986857176,-0.014201325364411],[0.00028729211771861,-0.12127701938152,-0.0056875082664192]],[[-0.018063228577375,0.0225745793432,-0.069882400333881],[0.019113421440125,0.066227436065674,-0.014879961498082],[0.012685754336417,-0.051903124898672,0.035670507699251]],[[-0.055229287594557,0.119419015944,0.12107256799936],[0.022673854604363,0.0044585685245693,-0.0071396534331143],[-0.065048694610596,0.030436474829912,-0.032712128013372]],[[-0.076399572193623,0.0027650399133563,-0.019586930051446],[-0.022436399012804,-0.0060654301196337,-0.04289036989212],[-0.0015576344449073,-0.014559114351869,0.086075872182846]],[[-0.040309172123671,-0.043145380914211,-0.026112496852875],[-0.044862754642963,0.0036960488650948,-0.06412061303854],[-0.038062520325184,0.050678871572018,0.029907142743468]]],[[[-0.15111082792282,0.045282032340765,0.16854618489742],[0.1172326952219,0.025795139372349,0.11016274243593],[0.13175556063652,0.13031284511089,0.090203069150448]],[[-0.045035097748041,-0.050808541476727,-0.034805785864592],[0.054599948227406,0.011438431218266,-0.069173999130726],[0.031497895717621,0.037988811731339,-0.062412727624178]],[[0.063433930277824,0.0036470845807344,0.020840045064688],[0.23469686508179,0.024838307872415,-0.015467681922019],[0.11593180149794,0.042273171246052,0.043449491262436]],[[-0.092421911656857,0.092137776315212,0.045098975300789],[0.091492854058743,0.1473023891449,0.006710956338793],[-0.073488779366016,-0.15225699543953,0.17077811062336]],[[0.011515120044351,0.17095202207565,0.072993434965611],[0.0086559625342488,0.029576798900962,0.069679126143456],[0.086716040968895,0.08549539744854,-0.047239042818546]],[[-0.047166604548693,0.05116256698966,-0.002502225805074],[0.00091186352074146,-0.0028452782426029,-0.05672400072217],[0.033337477594614,-0.14634746313095,-0.018766077235341]],[[-0.07073500007391,0.034880764782429,0.050406809896231],[-0.19747552275658,0.038799338042736,-0.059537820518017],[0.092850536108017,-0.094457685947418,-0.057785976678133]],[[-0.049600850790739,-0.044165071099997,0.17220628261566],[-0.0061742966063321,0.11755913496017,0.091323174536228],[0.15676552057266,0.17288419604301,0.066411726176739]],[[-0.05167543888092,-0.014136116020381,0.1038571819663],[0.0028673689812422,-0.050840109586716,-0.035835545510054],[0.03070499189198,-0.053103931248188,0.021191468462348]],[[0.057963848114014,-0.064472414553165,-0.21671076118946],[0.0096124261617661,0.042806077748537,-0.1530958712101],[0.021985849365592,0.025118617340922,-0.22829413414001]],[[0.075414523482323,-0.041028387844563,-0.14827090501785],[0.013056033290923,-0.081694737076759,-0.037858314812183],[-0.081517398357391,-0.052683688700199,-0.098523043096066]],[[-0.063363507390022,-0.14866699278355,-0.0084363427013159],[0.13717287778854,0.16363069415092,0.20753239095211],[-0.013406244106591,0.0036561049055308,0.066086679697037]],[[0.1115216165781,-0.046689476817846,0.034759037196636],[0.027686066925526,-0.11723925173283,-0.041503701359034],[-0.0132937701419,0.0078147640451789,-0.059631798416376]],[[-0.078755974769592,0.027035064995289,-0.12190959602594],[-0.11012219637632,-0.059247769415379,-0.072290167212486],[-0.042982034385204,0.021529983729124,-0.01084653660655]],[[-0.057475212961435,0.0087115792557597,0.061105892062187],[-0.10668163746595,-0.089212290942669,0.055584318935871],[-0.14050929248333,0.012389114126563,0.13555045425892]],[[0.17671675980091,0.021107779815793,-0.12276746332645],[-0.037820532917976,0.055090356618166,-0.10491519421339],[-0.055461172014475,-0.054230730980635,0.14326897263527]],[[0.040427584201097,0.037198558449745,0.088995613157749],[-0.044241439551115,0.11027014255524,0.040884729474783],[-0.13974437117577,0.01085955183953,-0.089001588523388]],[[-0.12069225311279,0.081943541765213,0.091155596077442],[-0.094781421124935,0.16848801076412,0.14720785617828],[0.027589531615376,0.13142871856689,-0.040402099490166]],[[-0.060403596609831,0.090935729444027,0.0060302522033453],[-0.031789977103472,-0.07695734500885,0.0058416691608727],[0.074988670647144,-0.19650404155254,0.039577912539244]],[[0.02369362488389,0.088400550186634,-0.19419105350971],[0.09755926579237,0.033611189574003,-0.15633592009544],[0.012224201112986,-0.042268119752407,-0.0287767034024]],[[-0.074208229780197,-0.022461613640189,0.047496363520622],[-0.0045122890733182,-0.083842098712921,0.023485148325562],[-0.02447353862226,-0.10696355253458,-0.0090348348021507]],[[0.11716041713953,-0.040179152041674,0.0054403245449066],[0.015246287919581,-0.00089665676932782,-0.073829285800457],[0.14295953512192,-0.13364078104496,-0.018611634150147]],[[-0.0012736263452098,0.12267003208399,0.052442383021116],[-0.09213911741972,-0.063083074986935,0.089365139603615],[0.055440120398998,-0.18991392850876,-0.076099194586277]],[[-0.084859572350979,0.091477058827877,0.031525600701571],[-0.0074058384634554,-0.086247973144054,0.080853931605816],[-0.054523829370737,0.029867811128497,0.045361444354057]],[[0.04603473469615,-0.20555032789707,0.054433938115835],[-0.018101800233126,-0.11894694715738,0.03639929741621],[-0.0093376282602549,-0.0065780146978796,0.014493689872324]],[[0.17119413614273,-0.00048664142377675,0.043713692575693],[0.059931613504887,0.18116638064384,0.080639950931072],[0.090314105153084,0.064179576933384,0.15504536032677]],[[-0.093962296843529,-0.0085510052740574,-0.016833851113915],[-0.045772347599268,0.098632007837296,0.036273784935474],[-0.054025143384933,0.073806956410408,-0.061453748494387]],[[0.022250210866332,-0.06894439458847,0.14735308289528],[0.12763659656048,-0.0045597869902849,-0.11628092825413],[0.1294729411602,0.026036456227303,-0.055511180311441]],[[-0.10795164853334,-0.060989286750555,0.024528795853257],[-0.11330877244473,0.02473109215498,-0.095548763871193],[-0.010667161084712,-0.036514334380627,0.019655948504806]],[[-0.033303655683994,-0.097797572612762,0.050009962171316],[-0.013929994776845,-0.036149971187115,-0.076774753630161],[0.013079807162285,0.040994100272655,-0.00066996860550717]],[[-0.013583493418992,0.042549807578325,0.049438282847404],[-0.069398239254951,-0.086388938128948,0.018919117748737],[0.0091195786371827,-0.049641564488411,0.056084699928761]],[[0.10765177756548,-0.0097706858068705,-0.05111725628376],[-0.029957311227918,-0.0040066540241241,0.12977078557014],[0.015169781632721,0.031650338321924,0.038938827812672]],[[-0.083095371723175,0.028211921453476,0.091799326241016],[0.083158582448959,0.036189541220665,0.049167551100254],[0.00046947604278103,-0.014367771334946,0.034991819411516]],[[-0.033587951213121,0.030609333887696,0.048794750124216],[0.049517575651407,-0.0019256955711171,-0.010972914285958],[0.091377817094326,-0.12549203634262,-0.014367014169693]],[[0.010023555718362,-0.021044539287686,-0.083785459399223],[-0.069342687726021,-0.086169466376305,-0.062845312058926],[-0.012626585550606,-0.074285678565502,-0.15758612751961]],[[0.025319196283817,0.019414573907852,-0.011955031193793],[-0.20475041866302,0.081813335418701,0.027270969003439],[-0.060409337282181,0.058564126491547,0.053499352186918]],[[-0.051910031586885,-0.057895116508007,0.028759397566319],[-0.00032031437149271,0.13525228202343,-0.11190609633923],[0.0087498156353831,-0.016126049682498,-0.01509618666023]],[[0.037136014550924,-0.022360341623425,0.086678333580494],[0.075225837528706,-0.012993693351746,-0.14941562712193],[-0.05652978643775,-0.056298371404409,-0.2748983502388]],[[-0.023419314995408,0.02093418687582,0.036892417818308],[0.001608218299225,-0.080039575695992,-0.046447530388832],[-0.17603208124638,0.055302418768406,0.06240376830101]],[[0.048234134912491,-0.065221399068832,0.026596644893289],[-0.054279077798128,0.08473938703537,0.071479983627796],[-0.12151402235031,0.13732369244099,0.1007451787591]],[[-0.068739980459213,-0.023931723088026,0.010227862745523],[0.0061917705461383,-0.060380227863789,-0.10732877254486],[0.076665014028549,0.088119186460972,-0.053443737328053]],[[0.056172549724579,0.096508793532848,-0.12048686295748],[0.036901827901602,0.01466454192996,-0.15778535604477],[0.071411497890949,-0.034835025668144,0.077390410006046]],[[-0.044062085449696,0.070295892655849,-0.072190038859844],[-0.026069825515151,-0.051134254783392,0.051613502204418],[-0.024853745475411,0.14134074747562,-0.043060153722763]],[[-0.093815580010414,0.0031930874101818,-0.0042583262547851],[-0.0079852109774947,0.027302442118526,0.056798215955496],[0.15350748598576,-0.060428857803345,-0.1616545766592]],[[-0.076166488230228,-0.060248084366322,-0.011194048449397],[-0.072895474731922,-0.097689159214497,0.084191843867302],[0.038040924817324,0.044342909008265,0.11026052385569]],[[-0.07786899805069,-0.047233082354069,-0.054234229028225],[0.039487835019827,0.024309484288096,-0.01456359680742],[-0.037321746349335,0.0015387673629448,-0.087522141635418]],[[-0.019164046272635,-0.14180916547775,0.10763730108738],[-0.03092747181654,-0.094348952174187,-0.0046333079226315],[0.099941968917847,-0.069188691675663,-0.074241779744625]],[[0.035476617515087,0.069622963666916,0.073234580457211],[0.012719073332846,-0.04013154655695,0.0085881315171719],[0.087202578783035,-0.25516587495804,-0.11004752665758]],[[-0.19675858318806,0.046609967947006,0.11574859917164],[-0.20897160470486,0.044898707419634,-0.13545368611813],[-0.028974147513509,-0.08317892998457,-0.040123324841261]],[[0.03294962644577,-0.0039362222887576,0.0037177363410592],[-0.038815911859274,0.045560911297798,-0.004886454436928],[-0.039904057979584,-0.12384239584208,-0.059814512729645]],[[-0.055661112070084,0.1045540496707,0.01413518935442],[0.040712974965572,-0.035710077732801,-0.14210444688797],[-0.019041394814849,-0.18957091867924,-0.24524450302124]],[[0.0060505568981171,0.06406294554472,0.017117159441113],[-0.16054946184158,-0.14856323599815,-0.043223764747381],[0.015709662809968,-0.10043130815029,0.080415606498718]],[[-0.023052113130689,-0.036430429667234,0.043447807431221],[-0.031495243310928,-0.023225026205182,-0.021041583269835],[0.028682136908174,0.10824634134769,-0.081136398017406]],[[-0.052559725940228,0.086086139082909,-0.05186066403985],[0.0038614384829998,0.059082046151161,-0.046285476535559],[-0.033174965530634,-0.053520292043686,-0.017374204471707]],[[0.045089196413755,0.018292704597116,0.1981984525919],[-0.12453034520149,-0.021821996197104,0.12940396368504],[-0.12599696218967,-0.11582470685244,-0.21381928026676]],[[0.03400507569313,-0.080591686069965,-0.082311049103737],[0.11216732859612,0.036819264292717,0.018260594457388],[0.065467096865177,0.13929262757301,-0.020713118836284]],[[0.02069192007184,-0.032948337495327,-0.16952760517597],[0.0031724239233881,0.10871966928244,0.069658704102039],[0.050163701176643,0.14048555493355,-0.041936665773392]],[[0.013747560791671,-0.062041908502579,0.16473969817162],[-0.12281215935946,-0.10893140733242,0.048147406429052],[-0.099711231887341,-0.092017769813538,0.0054159262217581]],[[0.0086507564410567,0.0057176756672561,-0.070548415184021],[0.02798236720264,-0.016596825793386,-0.16065938770771],[0.019453179091215,-0.2450352460146,-0.21021647751331]],[[0.0061684120446444,-0.043422408401966,-0.089854054152966],[0.04124678298831,0.052128966897726,0.029207387939095],[-0.081399172544479,-0.046984560787678,0.087726682424545]],[[-0.086150892078876,-0.0020873483736068,-0.051374685019255],[-0.1360247284174,-0.020336121320724,0.0022262472193688],[0.014560790732503,0.063708908855915,0.073553316295147]],[[-0.057872887700796,-0.0561284981668,-0.023204449564219],[-0.13446393609047,-0.12376388907433,-0.035079196095467],[0.0042923269793391,-0.12116487324238,-0.078671790659428]],[[0.031875390559435,-0.14598509669304,0.056748401373625],[0.065967716276646,-0.12065587937832,0.072526149451733],[0.091405563056469,0.021245891228318,0.19145500659943]],[[0.0080287484452128,0.071406722068787,0.14158882200718],[-0.045995999127626,0.070626027882099,0.24843323230743],[-0.017863595858216,0.015870273113251,0.15368157625198]],[[0.12028460204601,0.12757427990437,-0.16006916761398],[-0.024673886597157,0.024798832833767,-0.039728872478008],[0.035336427390575,0.055772256106138,0.045173246413469]],[[-0.041813302785158,0.12566161155701,-0.046856045722961],[0.086422935128212,0.12826393544674,0.037479016929865],[0.037887036800385,0.046431232243776,-0.013879033736885]],[[-0.038867462426424,-0.010826184414327,-0.025470538064837],[0.0030455456580967,-0.048477780073881,-0.021956792101264],[-0.060462865978479,0.044072926044464,-0.075254261493683]],[[0.15738002955914,0.19864219427109,0.070653893053532],[0.080430507659912,0.018718795850873,0.051468089222908],[0.12863899767399,0.010212198831141,0.10423668473959]],[[0.013216529041529,-0.05969950184226,0.10535215586424],[-0.033785346895456,0.034309554845095,0.074983514845371],[0.13531130552292,0.071495212614536,-0.12411820143461]],[[0.11218331754208,-0.097624525427818,0.0032074467744678],[0.085691228508949,0.089689634740353,-0.022899381816387],[0.031459826976061,0.017577975988388,0.11606086790562]],[[-0.08239109814167,-0.023066449910402,-0.066589683294296],[-0.084649361670017,-0.011360595934093,0.16215546429157],[-0.054851252585649,0.17561180889606,0.32432961463928]],[[0.076419144868851,-0.037956189364195,0.010213632136583],[0.10440514981747,-0.03521791100502,-0.15998414158821],[0.07660036534071,-0.0021078097634017,0.00036150575033389]],[[-0.074553847312927,-0.030421858653426,-0.12610317766666],[-0.06696567684412,-0.077274933457375,-0.058742497116327],[-0.049370680004358,-0.059296049177647,-0.0703429505229]],[[-0.046828035265207,0.025622563436627,0.0095784971490502],[0.10576828569174,0.081157170236111,0.09276806563139],[0.020888743922114,-0.068648889660835,-0.031052425503731]],[[0.082128874957561,-0.048027638345957,-0.16326121985912],[-0.038923341780901,0.10683900862932,-0.076754383742809],[0.039570085704327,0.11017356812954,0.20870658755302]],[[-0.026198890060186,0.081646263599396,-0.0053417515009642],[-0.0024689056444913,0.098865337669849,-0.043354019522667],[0.03574787825346,-0.032698277384043,-0.08069159835577]],[[-0.072733469307423,0.10753356665373,0.020521961152554],[0.056216698139906,-0.12352687120438,0.06683524698019],[0.060775574296713,-0.02185875736177,-0.16311816871166]],[[0.067678086459637,-0.020583441480994,-0.012829839251935],[-0.1306591629982,-0.06793636828661,-0.17443969845772],[-0.23147967457771,0.12754186987877,-0.07965874671936]],[[-0.04355176538229,-0.081360690295696,0.034238554537296],[0.0084406509995461,0.041755776852369,-0.1791367828846],[0.089686691761017,0.044671729207039,-0.098426558077335]],[[0.08083338290453,-0.10161260515451,-0.026030717417598],[-0.2766780257225,0.059441510587931,-0.26468175649643],[-0.020065074786544,0.17837576568127,0.00088818249059841]],[[-0.0064162365160882,0.10585623979568,0.019765051081777],[-0.012368644587696,0.086848475039005,-0.033221136778593],[-0.08003906160593,-0.16538746654987,-0.090284153819084]],[[0.11427804082632,-0.06222964450717,-0.073231317102909],[0.047637015581131,0.017810210585594,-0.028037494048476],[0.075671724975109,0.25835698843002,-0.0073474245145917]],[[0.1000811830163,-0.04440750926733,0.16050326824188],[-0.032642368227243,0.035219352692366,-0.0011491253972054],[0.18100124597549,0.043204184621572,0.044597517699003]],[[-0.031667914241552,0.029048230499029,-0.077267698943615],[0.078671641647816,0.039608314633369,-0.12339888513088],[0.063039027154446,-0.079044386744499,-0.087291218340397]],[[0.0047110905870795,-0.1072052270174,0.040998939424753],[-0.090260781347752,-0.082907170057297,0.12607336044312],[-0.025116439908743,-0.15839725732803,0.087231025099754]],[[0.17667047679424,-0.14167413115501,-0.13320808112621],[0.0641138702631,0.14854335784912,-0.02223689481616],[0.040820505470037,0.016973530873656,0.042890660464764]],[[0.049331501126289,0.0034640619996935,0.061266612261534],[-0.00018433650257066,0.048872951418161,0.0012468425557017],[-0.098209090530872,0.036431681364775,0.011603282764554]],[[0.076571561396122,0.020601103082299,-0.15676894783974],[0.048394944518805,0.096454448997974,-0.03998776897788],[-0.013376483693719,-0.038214862346649,0.056390982121229]],[[-0.13959287106991,-0.0037254723720253,-0.041175622493029],[0.047953430563211,0.12727230787277,0.03188593685627],[0.062135748565197,0.03799807280302,-0.085421673953533]],[[0.13337975740433,-0.040431436151266,-0.025169154629111],[-0.060915317386389,-0.095491498708725,0.066365323960781],[-0.047531042248011,-0.034640166908503,0.068431697785854]],[[-0.080367363989353,-0.0046690260060132,0.064245752990246],[-0.055466361343861,-0.014830347150564,0.036356009542942],[0.17204955220222,0.19916258752346,0.13061451911926]],[[-0.0035682506859303,0.049720481038094,0.02493411116302],[-0.038153674453497,-0.060498457401991,0.097052931785583],[0.094598993659019,0.061899069696665,0.07419741153717]],[[0.036003246903419,0.0071813417598605,0.17101284861565],[-0.035950947552919,-0.089782357215881,0.0083669712767005],[0.012278405018151,-0.11665320396423,-0.033649150282145]],[[0.033150233328342,-0.23998036980629,-0.060427155345678],[-0.22411680221558,-0.026093078777194,0.086005583405495],[-0.10610499233007,-0.098105758428574,-0.042989742010832]],[[-0.0016232362249866,0.038719512522221,0.073936589062214],[0.017612194642425,0.040932025760412,-0.018842427060008],[0.11257814615965,0.052620366215706,-0.03937591984868]],[[0.080381527543068,-0.17077521979809,0.0075934827327728],[0.096085771918297,0.02319660782814,-0.0066069466993213],[0.00041561835678294,0.063366338610649,0.1338281929493]],[[0.010371377691627,0.01107345148921,0.13250122964382],[-0.069646425545216,-0.032673817127943,0.17742362618446],[0.047793444246054,-0.00076745927799493,-0.15288807451725]],[[-0.10581781715155,0.054782394319773,0.18643875420094],[-0.085040882229805,0.023060772567987,0.053970728069544],[0.10814587026834,-0.047253325581551,-0.15760526061058]],[[0.072478458285332,0.00064177979947999,0.020098477602005],[0.015210365876555,0.038358882069588,0.068039506673813],[0.13724462687969,0.049971874803305,-0.021926809102297]],[[0.11735099554062,0.031357765197754,0.094156049191952],[0.047955207526684,0.067452035844326,0.076697446405888],[-0.14095263183117,-0.15800556540489,-0.0018112324178219]],[[0.055176321417093,-0.053504467010498,-0.086678683757782],[0.063049964606762,-0.26930338144302,-0.12416987121105],[-0.14543358981609,-0.22731301188469,0.053441546857357]],[[-0.0090594943612814,-0.094067312777042,0.0670126080513],[0.15195892751217,-0.097783803939819,0.11485780775547],[0.17657840251923,0.036594491451979,0.1212647408247]],[[-0.056585773825645,-0.019480492919683,-0.074653550982475],[0.098953820765018,-0.0013669913168997,-0.064594864845276],[0.018562588840723,0.061885487288237,-0.22938071191311]],[[0.16015507280827,-0.056864906102419,-0.087668992578983],[0.14979170262814,-0.13338093459606,-0.029609484598041],[0.0089849522337317,0.077587574720383,0.015573589131236]],[[-0.022156689316034,0.027010798454285,-0.064098693430424],[0.01659044995904,0.067039787769318,-0.15532252192497],[0.013715336099267,0.10953490436077,-0.087967254221439]],[[-0.053405914455652,0.11921997368336,-0.046854972839355],[0.045865576714277,-0.013150494545698,-0.119205750525],[-0.024874333292246,-0.043936714529991,0.075430706143379]],[[-0.027324492111802,0.073250576853752,-0.010927572846413],[0.020629860460758,-0.004931359551847,0.0022091884166002],[0.16960407793522,0.15320754051208,0.097782447934151]],[[-0.19064672291279,-0.047295123338699,0.0033169039525092],[-0.025776566937566,0.0092170536518097,0.083014093339443],[0.095889940857887,-0.16008052229881,-0.048715341836214]],[[0.02506747841835,0.16382579505444,-0.08440189063549],[-0.034990459680557,0.18237383663654,0.13219384849072],[-0.0018515849951655,0.076762162148952,0.2754193842411]],[[0.088773727416992,-0.16768155992031,0.051066558808088],[0.039714783430099,-0.12832261621952,0.11423389613628],[0.10987461358309,-0.051046743988991,0.0011248579248786]],[[0.048802681267262,0.099322207272053,-0.085552357137203],[0.028199402615428,-0.058819141238928,-0.025252064689994],[-0.034290727227926,-0.098514564335346,0.081717908382416]],[[-0.01186952739954,0.2464891076088,-0.053948607295752],[0.081729710102081,0.073698252439499,-0.049579981714487],[0.038956474512815,0.10646933317184,-0.15584369003773]],[[-0.029196999967098,0.074322804808617,0.062276393175125],[-0.073495075106621,0.23187302052975,-0.088659726083279],[-0.091606102883816,0.035465650260448,-0.19936473667622]],[[0.11002629250288,0.032899543642998,0.028469361364841],[-0.023101136088371,-0.034658081829548,-0.0083952266722918],[0.041900772601366,-0.13998387753963,0.042286112904549]],[[-0.063249759376049,0.072370871901512,0.11584767699242],[-0.034607294946909,0.091335020959377,-0.074204623699188],[0.045826710760593,0.043710242956877,-0.060547292232513]],[[0.082466371357441,0.079152166843414,0.0068526049144566],[0.20653750002384,0.13958004117012,-0.078578323125839],[-0.11524090915918,0.12208030372858,-0.0094671985134482]],[[-0.027629183605313,0.076274305582047,-0.001256933202967],[0.059438094496727,0.051214046776295,-0.047378562390804],[0.047662556171417,-0.11498260498047,0.047460272908211]],[[0.093031235039234,0.014251460321248,0.083600886166096],[0.10385566949844,0.13048353791237,-0.0017635704716668],[0.094641707837582,0.0085540292784572,0.1358916759491]],[[0.04365848004818,-0.21360886096954,0.0041035125032067],[-0.017153054475784,-0.11767095327377,0.081221230328083],[0.13894920051098,-0.048054654151201,0.01629338786006]],[[0.19547255337238,-0.02680517360568,-0.071670912206173],[-0.19324116408825,-0.09868698567152,0.12642367184162],[0.12427432835102,0.19664065539837,0.083594873547554]],[[0.030609408393502,0.070515960454941,-0.0056639183312654],[0.1265250146389,-0.13354381918907,-0.096218541264534],[-0.037187110632658,-0.084776662290096,0.0067003541626036]],[[0.1004668623209,0.056044187396765,-0.047317527234554],[0.0010390708921477,0.014712694101036,-0.17812845110893],[-0.015340765938163,-0.024436727166176,-0.22462595999241]],[[-0.10267993807793,-0.028257388621569,-0.2023578286171],[-0.063759967684746,-0.12596936523914,-0.061658702790737],[-0.0097696976736188,0.041769616305828,-0.091296344995499]],[[-0.00026618360425346,0.039904810488224,0.29517567157745],[0.037752069532871,-0.0042001926340163,0.16065628826618],[0.082784920930862,0.074221603572369,-0.10103696584702]],[[0.077262625098228,-0.066853880882263,0.052032593637705],[0.11740173399448,-0.028660323470831,0.056768644601107],[-0.048388827592134,-0.0062326015904546,0.078527122735977]],[[-0.016444699838758,0.0075602713041008,-0.13465563952923],[-0.063018590211868,-0.022119533270597,-0.1240738928318],[0.019748480990529,-0.17842800915241,0.040071327239275]],[[0.037618439644575,-0.028315652161837,0.066816583275795],[-0.047024592757225,-0.10626824200153,0.083946958184242],[-0.0040293256752193,-0.038548164069653,0.01694100536406]],[[-0.14468911290169,-0.042388994246721,0.0062289298512042],[0.10627999901772,0.015934091061354,-0.055658750236034],[0.075143575668335,-0.0086552565917373,-0.057153519243002]]],[[[0.10427587479353,0.072962015867233,0.073833160102367],[-0.018124461174011,-0.084057129919529,-0.08915102481842],[-0.069129787385464,0.044584028422832,0.033558405935764]],[[-0.14667794108391,-0.15005770325661,0.025145247578621],[0.064958371222019,-0.022150302305818,0.018055476248264],[0.021308165043592,-0.0023087833542377,-0.055955231189728]],[[0.22984649240971,0.092253163456917,0.17388479411602],[-0.05956557393074,-0.033900640904903,-0.072624042630196],[0.019462445750833,0.0012901746667922,0.14395540952682]],[[-0.0083674965426326,0.10653242468834,-0.0084169246256351],[-0.21008843183517,-0.12342766672373,-0.15637685358524],[0.010840550996363,-0.055708691477776,0.03488052636385]],[[0.0057249758392572,0.11141848564148,0.033376503735781],[0.03461292386055,-0.018677446991205,-0.048472568392754],[0.11204273998737,0.04936308413744,0.15861997008324]],[[0.009773681871593,0.090766608715057,-0.0083486987277865],[0.040604505687952,-0.11428865790367,-0.092541858553886],[-0.070929728448391,-0.092820301651955,0.0080192657187581]],[[0.058194756507874,-0.052698217332363,-0.022847754880786],[0.05015629902482,-0.0023913315963,0.010265158489347],[0.13380743563175,0.059347793459892,0.16729590296745]],[[0.051847711205482,0.1085157468915,0.040434956550598],[-0.075196012854576,0.072013169527054,0.086327478289604],[0.053534049540758,0.019380090758204,0.013289659284055]],[[-0.15709240734577,-0.11865694075823,0.0055959010496736],[-0.0015311203896999,-0.10884698480368,-0.068881146609783],[-0.04195748642087,0.024482810869813,-0.11460646241903]],[[0.041303485631943,-0.088801600039005,0.1109332293272],[-0.084132149815559,-0.093126483261585,-0.065037935972214],[0.026716934517026,-0.10292667895555,0.0024795529898256]],[[0.10397195070982,0.044860474765301,-0.0036181989125907],[-0.09216845035553,0.09662040323019,0.15547026693821],[0.035786032676697,0.057102374732494,-0.15806494653225]],[[-0.084085777401924,0.0023052336182445,0.052341483533382],[-0.026456408202648,0.057146158069372,0.084500521421432],[0.031428799033165,0.11682672053576,0.11082616448402]],[[0.16417135298252,-0.038544438779354,0.06903812289238],[-0.026976093649864,-0.11275213956833,-0.12146750092506],[0.064131021499634,-0.0027318927459419,-0.021326147019863]],[[-0.15401582419872,-0.13668854534626,-0.11446596682072],[-0.0033995360136032,-0.02556124702096,-0.1280684620142],[-0.021361449733377,-0.23374716937542,-0.10832661390305]],[[-0.044065527617931,-0.013787693344057,-0.050573378801346],[-0.060545414686203,0.066747702658176,0.13847208023071],[0.032332200556993,0.084250383079052,0.058836411684752]],[[0.073051728308201,-0.027707576751709,-0.050808612257242],[-0.11669871211052,0.03857621923089,-0.036407630890608],[-0.13320343196392,-0.036277156323195,-0.11323793977499]],[[-0.11647343635559,-0.086097225546837,0.0039572189562023],[-0.023181768134236,-0.13006311655045,-0.19285003840923],[-0.090349175035954,-0.084693595767021,-0.04487781971693]],[[0.015788858756423,0.075680091977119,0.1113221347332],[-0.083468608558178,-0.10374768078327,-0.088744662702084],[0.057566870003939,-0.034496407955885,0.1287622153759]],[[-0.028415281325579,0.010311542078853,0.013638775795698],[-0.11420852690935,-0.069642037153244,-0.19098281860352],[-0.027943635359406,-0.080465659499168,-0.076502569019794]],[[0.13049620389938,-0.03064058534801,0.10253693163395],[-0.014056889340281,0.057717014104128,-0.065478540956974],[0.055580087006092,0.028228498995304,0.090765401721001]],[[-0.11453355848789,-0.054404720664024,-0.080040536820889],[0.09985227137804,-0.059932127594948,-0.09602066129446],[0.051644772291183,0.046083554625511,-0.065627135336399]],[[0.056764170527458,-0.050968162715435,-0.028941314667463],[-0.03173803165555,-0.051249992102385,0.05995150655508],[-0.087375178933144,-0.12886670231819,0.061439421027899]],[[-0.0062269465997815,-0.041340555995703,0.010758748278022],[-0.16588723659515,0.019784552976489,0.035110205411911],[0.046528592705727,0.088901974260807,0.041160617023706]],[[-0.043783813714981,0.040099501609802,-0.066397689282894],[-0.042539391666651,0.098366111516953,0.14418323338032],[-0.024573165923357,0.060094069689512,0.0038983458653092]],[[-0.05361457914114,0.17416799068451,0.022447530180216],[-0.058056440204382,0.018270414322615,0.013607162050903],[0.0023587790783495,-0.17108762264252,0.011261269450188]],[[-0.003016113769263,-0.10246649384499,0.018946409225464],[-0.069792166352272,0.047814689576626,-0.03264494612813],[-0.11608528345823,0.070397205650806,0.010603779926896]],[[-0.068177372217178,-0.061424352228642,0.056847378611565],[0.022199900820851,0.056226555258036,0.080574534833431],[0.051215276122093,0.093405924737453,0.040100283920765]],[[-0.08406325429678,0.089117586612701,-0.0061011770740151],[-0.017258139327168,0.09561974555254,0.21078903973103],[0.13218376040459,-0.012597707100213,-0.0494020357728]],[[-0.042111571878195,-0.15208910405636,-0.19816844165325],[-0.038698568940163,-0.036856703460217,0.0050651957280934],[-0.097568839788437,-0.046643484383821,0.0092138042673469]],[[-0.076003007590771,-0.063451439142227,-0.037253424525261],[-0.022115936502814,0.026038574054837,-0.0060584121383727],[0.032455489039421,0.018776413053274,0.11025129258633]],[[-0.1324795037508,0.04430540651083,-0.088935144245625],[-0.1523452848196,-0.035308331251144,-0.024627732113004],[-0.021059764549136,-0.034956317394972,-0.021065762266517]],[[0.10569336265326,0.17314746975899,0.12802739441395],[-0.061513051390648,-0.097094237804413,0.075216218829155],[-0.029744887724519,0.032533798366785,0.039652097970247]],[[0.20035035908222,0.082570180296898,0.13873946666718],[-0.02668871358037,-0.080308564007282,-0.0657764300704],[0.042315889149904,-0.02547855488956,0.03973426297307]],[[0.10587873309851,-0.03943408280611,0.10355713218451],[-0.033820725977421,0.021830096840858,-0.015084389597178],[0.054158050566912,0.14429308474064,-0.19752068817616]],[[-0.022624369710684,-0.046747095882893,-0.074568390846252],[-0.020330110564828,-0.10307066887617,-0.10560027509928],[-0.086348451673985,-0.076520748436451,0.071884997189045]],[[-0.12144332379103,0.041324526071548,0.044283635914326],[-0.013583379797637,-0.025455597788095,0.084470383822918],[-0.013288456946611,-0.052155308425426,0.03902368620038]],[[0.14676335453987,0.042495954781771,0.12676383554935],[-0.11785931140184,0.032729018479586,-0.047161750495434],[0.062475360929966,0.069745138287544,0.056254222989082]],[[-0.060190986841917,-0.031640414148569,-0.044993836432695],[-0.10823081433773,-0.055810321122408,-0.0073533835820854],[-0.03339309990406,0.0052205012179911,-0.044970959424973]],[[-0.069504223763943,-0.055919464677572,0.048787664622068],[-0.11510716378689,0.091206900775433,0.027848923578858],[-0.032310865819454,-0.042278334498405,-0.032788764685392]],[[0.039282742887735,0.1375824213028,0.050320040434599],[0.022115400061011,0.043698087334633,0.050682596862316],[-0.065783709287643,0.010469724424183,-0.056983765214682]],[[0.038738053292036,-0.010127848945558,0.11062097549438],[-0.012134028598666,-0.015305796638131,0.035624537616968],[-0.0063656554557383,0.034070536494255,0.017625253647566]],[[0.27381429076195,0.16945713758469,0.019408136606216],[0.046671971678734,-0.092166781425476,0.075664564967155],[0.084602057933807,0.053907386958599,0.098261028528214]],[[0.035568881779909,-0.082960560917854,-0.019126310944557],[-0.080632425844669,0.0082579413428903,-0.019835405051708],[-0.082169905304909,-0.012087425217032,-0.20823699235916]],[[-0.010518849827349,-0.067079335451126,-0.030304538086057],[-0.020270239561796,-0.086932778358459,-0.064087353646755],[-0.017662623897195,-0.0032989757601172,0.045222628861666]],[[-0.018892548978329,-0.10999593138695,0.11212962865829],[0.014451276510954,-0.066206708550453,-0.093939661979675],[0.18603906035423,0.079532943665981,-0.11793383955956]],[[0.048987485468388,-0.071935027837753,0.00061698909848928],[0.057326011359692,0.073162414133549,-0.046456478536129],[0.010768574662507,0.0029113697819412,-0.043370634317398]],[[0.15480999648571,0.0019355331314728,-0.105205334723],[0.097952842712402,0.051597520709038,-0.056961312890053],[-0.026582410559058,-0.049387268722057,-0.10431203991175]],[[-0.023899773135781,0.019477862864733,0.092300616204739],[0.15127728879452,0.13632740080357,0.11712292581797],[-0.0013892869465053,-0.061840198934078,-0.090543821454048]],[[-0.13290756940842,0.027283243834972,-0.042366120964289],[0.088307753205299,-0.03183301910758,0.045019906014204],[0.15005452930927,0.040743935853243,-0.14083750545979]],[[0.028577994555235,-0.08047791570425,0.0068730120547116],[-0.085083454847336,-0.18045541644096,-0.18102411925793],[-0.014135526493192,0.18515089154243,0.10618226975203]],[[-0.075870364904404,-0.045138280838728,-0.023464066907763],[-0.031257092952728,-0.03877392411232,0.0049857497215271],[0.067378044128418,0.085507459938526,-0.23623593151569]],[[-0.027407083660364,-0.04640294238925,0.13066336512566],[-0.059927389025688,0.03977283462882,-0.019292978569865],[0.034970641136169,0.065313279628754,0.075154528021812]],[[0.089084103703499,-0.028451595455408,0.040414460003376],[-0.023453811183572,-0.0062645375728607,-0.089182153344154],[-0.049267750233412,-0.091582402586937,0.035964220762253]],[[-0.21876913309097,0.037966344505548,0.093415960669518],[0.054416429251432,0.098416686058044,-0.042508691549301],[-0.013659328222275,0.079653814435005,0.031044417992234]],[[0.1083135008812,0.038218181580305,0.056473731994629],[-0.014861042611301,0.11071030050516,0.045818962156773],[-0.029736343771219,0.01702886633575,-0.014352654106915]],[[-0.11850848048925,-0.22328525781631,-0.086239688098431],[0.021530017256737,0.10868647694588,0.012519340962172],[0.0090269539505243,0.085014007985592,0.13067060709]],[[0.084529362618923,0.079813860356808,0.054885782301426],[0.077643483877182,-0.040866099298,0.04819468781352],[0.065590210258961,-0.055566564202309,0.18346627056599]],[[-0.10457892715931,0.03548601269722,-0.071069598197937],[-0.10300532728434,-0.13808639347553,-0.1340918391943],[0.036497868597507,0.056871850043535,-0.040527630597353]],[[-0.1469019651413,-0.06098559871316,-0.19389875233173],[0.043214846402407,0.0080905146896839,-0.1429720968008],[-0.073591008782387,-0.12750449776649,0.0055182976648211]],[[-0.20640352368355,-0.040886800736189,0.099540531635284],[0.011998331174254,0.043798357248306,-0.037097159773111],[0.15783473849297,0.039100077003241,-0.11852434277534]],[[-0.093579448759556,0.032361164689064,-0.096394903957844],[-0.12866827845573,-0.082410424947739,-0.09125691652298],[0.012777864001691,-0.0058419746346772,0.01194894593209]],[[-0.075154490768909,-0.06115822121501,0.059276949614286],[-0.022171748802066,-0.11439923942089,-0.070109806954861],[-0.1115652397275,-0.066875994205475,-0.047612745314837]],[[-0.18111537396908,-0.18379981815815,-0.012578594498336],[0.14984983205795,-0.038727760314941,0.13906882703304],[0.097107358276844,0.0021459020208567,0.007736049592495]],[[0.008547430858016,0.14048482477665,0.13145130872726],[-0.074664950370789,0.080429285764694,-0.034138824790716],[0.051694929599762,0.10354109108448,0.085610799491405]],[[0.10416971892118,0.070586107671261,-0.091016426682472],[-0.014065822586417,-0.015079508535564,-0.083520315587521],[0.034211523830891,-0.074660003185272,-0.024128958582878]],[[-0.14410704374313,-0.0022822266910225,-0.10957004129887],[0.17874389886856,0.00772814033553,-0.13207125663757],[-0.030048336833715,-0.019010009244084,0.034339897334576]],[[0.25552985072136,-0.058533795177937,0.038981441408396],[-0.13405522704124,0.077468931674957,0.081598646938801],[-0.14999827742577,0.095079325139523,0.0043027983047068]],[[-0.035115081816912,-0.046678237617016,-0.076529376208782],[-0.11279430985451,0.093500249087811,0.029923919588327],[-0.06913560628891,-0.016704071313143,-0.076259300112724]],[[-0.14352902770042,0.043863222002983,0.030431538820267],[0.029330538585782,-0.018496172502637,0.028472615405917],[0.18938153982162,0.073428593575954,-0.073010332882404]],[[-0.20544396340847,0.098343215882778,-0.0091945342719555],[0.15049484372139,-0.057687997817993,0.022335084155202],[-0.0091497590765357,-0.079704381525517,-0.065383672714233]],[[0.0034401128068566,0.073082953691483,-0.038956858217716],[-0.023544739931822,-0.073089256882668,-0.0022715134546161],[0.02490221336484,0.034170474857092,0.0011522357817739]],[[-0.17343620955944,-0.055620033293962,0.043169386684895],[-0.081066839396954,-0.15448473393917,-0.095143690705299],[0.11857401579618,0.10023531317711,0.028050364926457]],[[-0.058590736240149,-0.012714387848973,0.11539076268673],[-0.083394855260849,-0.19020095467567,-0.17513005435467],[-0.021549228578806,-0.01634095236659,-0.11212419718504]],[[0.12811122834682,-0.063231736421585,0.031549800187349],[-0.063828103244305,-0.05096634849906,0.045867428183556],[0.044632639735937,0.033125810325146,0.0074332309886813]],[[0.029269028455019,-0.028152326121926,0.077781543135643],[0.035399440675974,-0.038446635007858,-0.13203774392605],[0.10313935577869,-0.0019693428184837,-0.0084991557523608]],[[0.070896036922932,-0.021667305380106,0.10069750249386],[-0.0036496720276773,0.039285212755203,-0.052159540355206],[-0.01273126527667,-0.027632491663098,-0.032157350331545]],[[0.035691697150469,-0.034356214106083,0.032650582492352],[-0.083209067583084,-0.039125137031078,0.13690078258514],[-0.077869653701782,-0.034910097718239,-0.10954953730106]],[[0.062530301511288,0.072995699942112,-0.13930894434452],[0.10348524153233,0.021881835535169,-0.018156282603741],[-0.045071233063936,0.0033746785484254,-0.053248025476933]],[[0.064065389335155,0.10362573713064,0.073568619787693],[0.1473616361618,0.046414211392403,0.08840511739254],[-0.027908805757761,-0.023826586082578,-0.12553125619888]],[[-0.036994393914938,-0.16474169492722,-0.10623073577881],[0.16640591621399,0.045395769178867,-0.016108885407448],[-0.13591247797012,-0.024923872202635,-0.061191953718662]],[[-0.014120342209935,-0.032267175614834,-0.22089189291],[-0.013794249854982,-0.021831501275301,-0.094869993627071],[0.02518549375236,-0.10367664694786,0.0093882260844111]],[[-0.071786627173424,0.069177538156509,0.15798999369144],[0.10596454888582,0.016932740807533,0.079075433313847],[0.029520394280553,0.00090323289623484,0.15368303656578]],[[-0.005542020779103,0.12189797312021,0.16603635251522],[0.11081050336361,0.074443966150284,-0.036519944667816],[0.05335184559226,0.16584125161171,0.23019593954086]],[[0.10711009800434,-0.0051400414668024,0.051401000469923],[-0.067851603031158,0.023385982960463,0.038363497704268],[0.067514680325985,-0.071380242705345,0.036332227289677]],[[0.05307162553072,0.15621520578861,0.18228876590729],[-0.048686072230339,0.046558260917664,0.14711908996105],[-0.073181599378586,0.058016449213028,-0.094239994883537]],[[0.019028328359127,0.25580003857613,0.10110465437174],[0.13293541967869,-0.11183577775955,-0.24330413341522],[-0.07225401699543,0.030010487884283,-0.07354997843504]],[[-0.033466003835201,0.0064114313572645,-0.057824369519949],[0.027606211602688,-0.036204725503922,-0.0061098951846361],[-0.14849281311035,-0.013592102564871,0.043220985680819]],[[0.005262091755867,0.030773648992181,0.0013417475856841],[0.08190630376339,-0.014340690337121,-0.064574211835861],[0.072924122214317,0.015301599167287,-0.013275677338243]],[[-0.083935506641865,-0.095644824206829,0.024440279230475],[-0.045859914273024,-0.035678375512362,0.03792392462492],[-0.011519462801516,-0.031631723046303,-0.025048974901438]],[[0.082860738039017,0.028754372149706,-0.1137949898839],[-0.13511823117733,-0.078936077654362,0.034919839352369],[-0.072960808873177,-0.070178084075451,0.051692627370358]],[[-0.048618357628584,-0.033909011632204,-0.12603610754013],[-0.059945542365313,0.050532937049866,0.016842918470502],[0.10714880377054,0.016044804826379,0.013675260357559]],[[-0.047985766083002,-0.037640701979399,0.083089485764503],[0.0039508733898401,-0.19358289241791,-0.069900631904602],[-0.1264196485281,0.11659130454063,0.0050181159749627]],[[0.10575817525387,0.096307851374149,0.07711511105299],[-0.054946150630713,0.0064887735061347,0.0066800233907998],[0.049550902098417,0.042759232223034,0.06229891628027]],[[0.035424031317234,-0.025709431618452,0.028369646519423],[-0.035912651568651,-0.050940357148647,0.016819378361106],[0.020497251302004,-0.038869805634022,-0.0068341628648341]],[[-0.1199389398098,0.021248226985335,0.10749696195126],[0.083751827478409,0.065336652100086,0.19894871115685],[-0.088048830628395,0.025805616751313,0.012345707975328]],[[0.051209062337875,0.026195740327239,-0.003331518964842],[0.026293916627765,0.072548113763332,0.031288560479879],[-0.073227070271969,0.08377343416214,0.012160523794591]],[[-0.11933811753988,-0.099179789423943,-0.038986556231976],[-0.084048233926296,-0.060387536883354,0.056239236146212],[-0.015592597424984,0.092984080314636,0.002387166256085]],[[-0.1765441596508,0.024082392454147,0.083250910043716],[-0.073657140135765,-0.11244529485703,0.05382078140974],[-0.026562463492155,-0.18839679658413,-0.090274184942245]],[[0.0062301228754222,-0.038204032927752,-0.0023157196119428],[-0.12085405737162,0.03872299566865,0.16233307123184],[0.13733297586441,0.059974066913128,0.055745486170053]],[[-0.18819057941437,-0.1782703101635,-0.0098412679508328],[-0.053925678133965,0.048092197626829,-0.061108026653528],[0.0035524263512343,-0.086663372814655,-0.084622509777546]],[[-0.049904614686966,-0.0026208406779915,-0.040745347738266],[0.059914451092482,-0.090439647436142,-0.015892589464784],[-0.072025910019875,-0.10792499780655,0.059060122817755]],[[0.10930692404509,0.073674842715263,0.10104393959045],[0.12085206061602,0.094681777060032,0.085408702492714],[0.039710313081741,0.058134362101555,-0.11470883339643]],[[-0.086763702332973,0.015746267512441,0.09235955029726],[-0.03085563890636,-0.09125304967165,-0.11573388427496],[0.10213067382574,-0.11377177387476,-0.043046317994595]],[[-0.1648001819849,-0.13350383937359,0.027700699865818],[-0.0060027153231204,-0.051184635609388,0.10946420580149],[-0.0089619141072035,0.03853015974164,-0.074747897684574]],[[-0.17051541805267,0.080858580768108,-0.02035397104919],[0.012229010462761,-0.0015278769424185,-0.071236409246922],[-0.048376012593508,-0.022833859547973,0.062611468136311]],[[-0.058650307357311,0.052125740796328,-0.073974125087261],[-0.1115008443594,0.071507446467876,0.014437129721045],[0.060811441391706,-0.15556545555592,-0.046672221273184]],[[0.11839602142572,0.0041535734198987,0.16695462167263],[0.041526809334755,-0.0012621108908206,-0.06963224709034],[-0.0032004714012146,0.011493610218167,0.0016666307346895]],[[-0.16753853857517,0.0053772097453475,-0.019214078783989],[-0.1488128900528,0.02114881016314,0.14798729121685],[0.075112789869308,-0.014297698624432,-0.0019116128096357]],[[-0.042873956263065,-0.057286035269499,-0.079251252114773],[0.039535783231258,0.13868580758572,-0.010381737723947],[0.019996654242277,0.065640300512314,0.15656170248985]],[[0.083622798323631,0.094016849994659,0.083791993558407],[-0.085595071315765,-0.11304304003716,0.033094599843025],[0.034476533532143,0.16434210538864,-0.081182383000851]],[[-0.024253387004137,-0.028428973630071,-0.00015560898464173],[0.059803415089846,-0.033051732927561,0.056798063218594],[-0.052682608366013,-0.059389431029558,-0.027650281786919]],[[-0.016192657873034,-0.00854167714715,0.033167757093906],[-0.10633007436991,-0.037635151296854,0.095494091510773],[0.046560604125261,0.064118884503841,-0.12471809983253]],[[-0.10757306218147,-0.10259408503771,-0.044713396579027],[0.13953301310539,0.034694135189056,-0.10176540911198],[-0.051822584122419,-0.060999117791653,0.0088015366345644]],[[0.033255651593208,-0.017953008413315,-0.051752261817455],[-0.07494243234396,-0.11202903091908,0.029617760330439],[0.073219336569309,0.029067335650325,-0.026222912594676]],[[-0.089512936770916,-0.077761106193066,0.13183817267418],[0.052891451865435,0.060901664197445,-0.066130489110947],[-0.038349580019712,0.012312543578446,0.041543018072844]],[[-0.028210185468197,0.018755588680506,0.034414764493704],[-0.033081546425819,0.084844939410686,0.056209307163954],[0.10860530287027,0.063970968127251,-0.18343365192413]],[[-0.027633249759674,-0.0044731078669429,-0.063935488462448],[0.14763978123665,0.097062490880489,0.057463325560093],[0.063200399279594,-0.14206770062447,-0.063507243990898]],[[0.079711146652699,0.028394103050232,0.057832777500153],[-0.054968126118183,0.04690146446228,0.14435900747776],[0.044798113405704,0.015343985520303,-0.0092384843155742]],[[-0.030285220593214,-0.058240052312613,-0.025274204090238],[-0.026929024606943,-0.059884123504162,-0.023939089849591],[-0.047265604138374,-0.069635353982449,-0.015801744535565]],[[-0.033681709319353,-0.010501463897526,-0.021715082228184],[0.11220326274633,-0.082704730331898,-0.014397397637367],[-0.023613793775439,-0.015832709148526,0.030375400558114]],[[-0.082114912569523,-0.015180435031652,0.0678486302495],[-0.032964788377285,0.14144895970821,-0.0033541196025908],[0.08022316545248,0.021082520484924,-0.023192038759589]],[[0.0089341243728995,-0.093867175281048,0.078387707471848],[0.056218311190605,0.024020668119192,0.037522971630096],[0.055112767964602,0.09714712202549,0.061160825192928]],[[-0.060128998011351,-0.0061934124678373,0.01607839949429],[-0.065414324402809,-0.112484395504,-0.17904591560364],[0.0039286427199841,-0.073087722063065,-0.15648759901524]],[[0.083285234868526,-0.018829153850675,-0.027333753183484],[0.12396570295095,-0.0033392142504454,-0.052843496203423],[-0.10457176715136,-0.01858102530241,-0.048440605401993]],[[-0.048948992043734,-0.098886176943779,-0.042062412947416],[0.037530388683081,-0.059105239808559,0.0076043317094445],[0.12129215151072,0.014914890751243,0.043541572988033]],[[0.081717140972614,0.028560129925609,0.051921535283327],[-0.051302015781403,-0.14446827769279,-0.08588208258152],[-0.07414123415947,-0.071727842092514,-0.031406104564667]],[[-0.052621722221375,0.14003059267998,0.010664526373148],[-0.040336694568396,-0.010241861455142,-0.12258398532867],[-0.013786428608,0.028524618595839,0.033234558999538]],[[0.028080619871616,0.062686905264854,-0.067587718367577],[0.12070599198341,0.036280903965235,0.12292115390301],[0.038163993507624,0.0011100606061518,-0.038053140044212]]],[[[0.00049580860650167,-0.1339291036129,0.01318278349936],[0.037589807063341,-0.029831189662218,-0.10142125934362],[0.065567083656788,0.017514174804091,-0.07458309084177]],[[0.21914911270142,-0.061872702091932,0.15944503247738],[0.088000513613224,0.055756635963917,-0.040841087698936],[-0.10858969390392,0.017166821286082,0.0035739000886679]],[[0.19620697200298,0.069892667233944,-0.12892092764378],[0.15334644913673,-0.0040518292225897,0.015424507670105],[0.15808318555355,0.0097741922363639,0.19514806568623]],[[-0.094512544572353,-0.17186132073402,0.011839903891087],[0.021861290559173,-0.011489543132484,-0.1385934650898],[-0.086897075176239,-0.03191801905632,-0.054544195532799]],[[0.13606348633766,-0.12767365574837,-0.031565628945827],[-0.037168376147747,-0.039128191769123,0.065050765872002],[-0.043658714741468,0.14539438486099,-0.088165365159512]],[[-0.072866372764111,0.076761871576309,-0.12698702514172],[-0.095504894852638,0.063367702066898,0.11117296665907],[-0.15126855671406,-0.10851982235909,0.21838885545731]],[[0.041891776025295,-0.011675769463181,0.12991161644459],[0.01828889735043,-0.042308803647757,0.12506966292858],[0.02559152059257,-0.12048525363207,-0.018601996824145]],[[0.26848289370537,-0.1252083927393,-0.12002240866423],[-0.079691268503666,0.029953157529235,0.016227819025517],[-0.053056947886944,-0.067907765507698,-0.14785812795162]],[[0.062208969146013,-0.16874338686466,-0.085825107991695],[0.021875718608499,0.051212202757597,0.04174517467618],[-0.0048234690912068,-0.1285620033741,-0.012400213629007]],[[0.083029344677925,-0.0050022979266942,0.01926201954484],[0.10844811052084,0.0051145730540156,-0.014678528532386],[0.053596112877131,-0.18882839381695,-0.11162773519754]],[[0.039506867527962,-0.13140670955181,-0.086286514997482],[-0.12995333969593,-0.03436791524291,-0.26800355315208],[0.010496207512915,-0.036409981548786,-0.10749834775925]],[[0.056858580559492,0.018867941573262,0.093346990644932],[-0.0012045191833749,-0.042598482221365,0.05968177318573],[0.088786065578461,0.02812922373414,-0.022892190143466]],[[-0.051092583686113,0.10494787245989,-0.060434646904469],[-0.032172199338675,0.051408533006907,-0.055488146841526],[0.068628735840321,-0.019407022744417,-0.042263422161341]],[[-0.029473504051566,0.0047884308733046,-0.043029565364122],[-0.042346116155386,0.034777719527483,-0.075244233012199],[-0.029856074601412,-0.15587536990643,-0.14424949884415]],[[0.0063396641053259,-0.03492908924818,-0.12988938391209],[-0.013925031758845,-0.03940211981535,0.06094890460372],[-0.11318577080965,0.012796469032764,-0.010657051578164]],[[0.19447663426399,0.023258863016963,-0.079907357692719],[-0.0018574619898573,0.042458705604076,-0.15671610832214],[0.041660230606794,0.11620769649744,-0.14357812702656]],[[0.12369497865438,0.011306936852634,-0.25212052464485],[-0.10304141789675,0.054285567253828,-0.1696110367775],[-0.024072868749499,0.15715730190277,-0.19308997690678]],[[-0.043398026376963,-0.10799866169691,0.081016324460506],[0.080102272331715,-0.1419782191515,-0.1822135001421],[0.01108992099762,-0.1767461001873,0.04497379809618]],[[-0.0096094310283661,-0.016770053654909,0.30530485510826],[0.025607939809561,-0.12422048300505,0.18494288623333],[-0.027885494753718,-0.10257342457771,0.24261517822742]],[[-0.053015980869532,-0.085781827569008,0.09354667365551],[-0.076197400689125,0.023125898092985,0.059525176882744],[0.068321876227856,-0.074439890682697,-0.030789017677307]],[[-0.035862557590008,-0.049088157713413,-0.062779940664768],[-0.1975215524435,-0.087476521730423,-0.045551992952824],[-0.10281886905432,0.11516393721104,0.00025918110623024]],[[0.12385984510183,-0.070711016654968,0.027748864144087],[-0.089363418519497,-0.084735572338104,-0.031581971794367],[-0.023172793909907,0.013639183714986,0.01478405483067]],[[-0.03888637945056,0.0094466833397746,0.050021976232529],[-0.13127008080482,0.16356064379215,-0.19238053262234],[-0.28499352931976,0.12416715174913,-0.21970704197884]],[[0.033144850283861,0.055597748607397,-0.040995124727488],[0.017494944855571,0.031891658902168,-0.071422822773457],[-0.1742377281189,0.12931904196739,0.036298699676991]],[[-0.049282521009445,-0.038448225706816,-0.047956027090549],[0.028146674856544,0.091916717588902,-0.040279060602188],[0.0071172998286784,0.092060275375843,0.038621429353952]],[[0.039357468485832,0.049803551286459,-0.007192010525614],[0.045098688453436,0.021225292235613,0.065200500190258],[0.2559589445591,0.0077449535019696,0.091211132705212]],[[-0.043309893459082,-0.13525021076202,0.11219596862793],[-0.017636617645621,-0.13089147210121,-0.013032688759267],[0.076774261891842,0.011634046211839,-0.037693448364735]],[[0.056496735662222,0.065263286232948,-0.05175331607461],[0.05823215842247,0.0070853787474334,-0.050112143158913],[0.20593771338463,0.0068387538194656,-0.058747578412294]],[[-0.10729088634253,-0.069742456078529,0.079006537795067],[0.097628906369209,-0.42151847481728,-0.041042935103178],[0.12192176282406,-0.45648902654648,-0.11732797324657]],[[0.12156264483929,0.11587250232697,0.044700238853693],[-0.0022980913054198,0.023737117648125,-0.22153601050377],[-0.050006974488497,0.090424783527851,-0.14720936119556]],[[-0.10448841005564,0.0272943880409,-0.034817516803741],[-0.041166570037603,0.098243333399296,-0.15858210623264],[-0.021217629313469,0.12771683931351,-0.058225806802511]],[[-0.08503583073616,-0.0077413041144609,0.17112189531326],[-0.062926486134529,-0.0030637925956398,-0.025333063676953],[-0.11820837110281,-0.024422595277429,0.095952957868576]],[[0.071537524461746,-0.08211175352335,-0.19763816893101],[0.094663314521313,-0.21306864917278,-0.16034749150276],[0.10711441934109,-0.13091893494129,-0.11961306631565]],[[-0.064934425055981,-0.10507979989052,-0.095830775797367],[-0.061838734894991,0.0040700202807784,-0.17682832479477],[-0.047844719141722,0.3116948902607,-0.030979622155428]],[[0.049538113176823,0.10779667645693,-0.031257901340723],[-0.077525824308395,0.026051545515656,-0.10024058073759],[-0.060644078999758,-0.013116180896759,-0.16947187483311]],[[0.12135708332062,-0.022047579288483,0.018992748111486],[0.15149971842766,-0.0023544263094664,-0.068725876510143],[0.017874840646982,0.047555360943079,-0.06693521887064]],[[0.058911584317684,0.058703415095806,0.15825833380222],[-0.017321968451142,-0.030139341950417,0.05354044213891],[0.13314908742905,0.085912853479385,-0.030451068654656]],[[-0.25417041778564,-0.025222988799214,-0.1316998898983],[0.033639255911112,-0.071341216564178,-0.044740453362465],[0.035360563546419,0.03128058463335,-0.026277832686901]],[[0.20833452045918,-0.060214642435312,-0.043259974569082],[0.069163076579571,-0.0066643981263041,0.1423245370388],[0.099178403615952,-0.062941305339336,0.0032228911295533]],[[0.0023034559562802,-0.11219700425863,0.046788420528173],[-0.078728266060352,-0.12936463952065,0.026974581182003],[-0.027203690260649,-0.011659996584058,-0.14888782799244]],[[0.052346885204315,0.094471864402294,0.12082390487194],[0.011389886029065,0.028334319591522,0.053238566964865],[-0.045458823442459,-0.036590602248907,-0.044344179332256]],[[-0.12343253195286,0.016333963721991,0.042704656720161],[-0.0091857109218836,0.11301788687706,0.058539617806673],[-0.10885136574507,0.22164213657379,0.11029940098524]],[[-0.046470191329718,-0.020640812814236,-0.08451072871685],[0.03135284408927,-0.13174173235893,-0.087111912667751],[0.20671762526035,-0.016185417771339,-0.12574334442616]],[[-0.018156066536903,-0.10124219208956,-0.020232208073139],[-0.0053206225857139,-0.18370309472084,-0.05406891182065],[0.069694466888905,-0.051066346466541,-0.0052222483791411]],[[-0.030577855184674,0.078285858035088,0.035125941038132],[-0.077926158905029,0.10582394897938,0.064388856291771],[0.14653007686138,-0.016000872477889,-0.015458065085113]],[[-0.17501863837242,-0.11156143993139,-0.072666831314564],[0.044697161763906,0.048421140760183,-0.1013322994113],[0.12380985915661,0.073989361524582,0.016876289620996]],[[0.16201025247574,0.045512244105339,-0.070105351507664],[-0.011097183451056,0.069752037525177,-0.13425706326962],[0.12984734773636,0.062324199825525,-0.18282681703568]],[[-0.0299152135849,0.0095667308196425,-0.013002871535718],[0.011565500870347,0.0047637042589486,-0.013709026388824],[-0.062662810087204,-0.072688736021519,-0.00826421007514]],[[-0.029941154643893,0.065144307911396,-0.068109713494778],[-0.082190632820129,0.11328922957182,-0.11722041666508],[0.11124294251204,0.036928802728653,-0.018404329195619]],[[-0.01492870785296,-0.22306986153126,-0.023261640220881],[0.051968730986118,-0.10535348951817,-0.054064624011517],[-0.041379675269127,-0.02455017529428,0.018770180642605]],[[0.047164987772703,-0.094851978123188,-0.21076990664005],[-0.0021100516896695,-0.061779867857695,0.030834717676044],[0.03267027810216,-0.10206948965788,0.004252509213984]],[[0.12559741735458,0.12242253124714,0.06404572725296],[0.065389171242714,-0.035657159984112,0.096249654889107],[-0.046414524316788,0.016619939357042,-0.060295920819044]],[[0.011737387627363,0.080920450389385,-0.00098987005185336],[0.088497087359428,-0.063400834798813,-0.028126308694482],[0.13074600696564,-0.015801049768925,-0.02323236130178]],[[0.038815557956696,0.1206828057766,-0.19505648314953],[-0.042745281010866,-0.00014887003635522,-0.13824519515038],[-0.057295959442854,0.043262850493193,-0.058330301195383]],[[-0.1225938424468,-0.060195870697498,-0.064165994524956],[0.02687375806272,-0.12679460644722,0.062401443719864],[1.0766798368422e-05,-0.095706634223461,0.33412832021713]],[[0.036456566303968,-0.054486896842718,-0.0085135186091065],[-0.033912088721991,0.016941390931606,-0.044433798640966],[0.050423935055733,-0.059956464916468,-0.01075575593859]],[[0.012526923790574,0.067672327160835,0.28871366381645],[0.0097884517163038,-0.086632639169693,0.15130019187927],[0.030135834589601,-0.1571372449398,0.039474319666624]],[[-0.042405009269714,-0.12125872075558,-0.028097530826926],[-0.23260639607906,-0.023087644949555,-0.17207379639149],[-0.17928585410118,0.057351022958755,-0.13828721642494]],[[-0.058622002601624,0.0066278302110732,-0.14971199631691],[-0.025477884337306,0.093421913683414,0.095937103033066],[-0.092376329004765,0.1098510324955,0.073407530784607]],[[0.0075542503036559,0.032368265092373,-0.11505103856325],[-0.011852068826556,-0.069853655993938,0.062337540090084],[0.0019572875462472,-0.0082067865878344,-0.082970559597015]],[[0.095976382493973,-0.091061301529408,-0.15113815665245],[0.050495032221079,-0.04503671079874,-0.20667277276516],[-0.050036042928696,0.1095300167799,-0.19226716458797]],[[-0.052739854902029,-0.055315274745226,-0.012188325636089],[-0.065419308841228,-0.024927845224738,-0.034621089696884],[-0.051319573074579,-0.10576392710209,-0.081310287117958]],[[0.13722708821297,0.061921630054712,-0.005988631863147],[0.13243545591831,0.043895211070776,-0.032457053661346],[-0.020738141611218,0.10704422742128,-0.064865924417973]],[[0.18241986632347,0.07718364149332,-0.031748462468386],[0.020437635481358,0.29381078481674,0.04572805762291],[-0.21684746444225,0.1976330280304,-0.078759610652924]],[[0.024263851344585,-0.11089435964823,-0.070037089288235],[0.11523353308439,0.018886137753725,-0.094015568494797],[0.020096603780985,0.14761838316917,-0.088175259530544]],[[-0.012862334959209,0.013559936545789,0.089829750359058],[-0.013756727799773,0.13349126279354,0.12921315431595],[0.047170251607895,0.080940194427967,0.046781919896603]],[[-0.11777681857347,0.037098817527294,0.19126079976559],[0.13425147533417,0.16798374056816,-0.018406176939607],[0.003247543470934,-0.031118214130402,-0.0041964114643633]],[[0.043012522161007,-0.16370299458504,-0.017448967322707],[0.095026835799217,-0.19580940902233,-0.071878284215927],[-0.035539854317904,-0.092410050332546,0.00046519271563739]],[[-0.0093740606680512,0.062119796872139,-0.001873146626167],[-0.036506202071905,-0.092662587761879,0.044673897325993],[0.12672998011112,-0.14521735906601,-0.10556188970804]],[[0.069952517747879,-0.10049577057362,0.098314672708511],[-0.11234552413225,-0.017264826223254,-0.032812356948853],[-0.057773899286985,-0.17933435738087,0.091931462287903]],[[-0.010911174118519,-0.019180618226528,0.026997132226825],[0.023206459358335,-0.0086344070732594,0.042443942278624],[0.075156912207603,-0.012637193314731,0.0048990682698786]],[[0.16875194013119,-0.012829034589231,-0.077778153121471],[0.11297754943371,0.056312799453735,-0.075599886476994],[0.068199463188648,0.037297826260328,-0.17269048094749]],[[0.033603295683861,-0.020907327532768,-0.090983673930168],[0.077382050454617,-0.10605507344007,-0.21288193762302],[0.040823310613632,-0.14867357909679,-0.16033318638802]],[[-0.021909357979894,0.0012298807268962,0.16910834610462],[0.10038540512323,-0.0017747945385054,0.0072128898464143],[0.18583863973618,-0.10949449241161,0.036754928529263]],[[-0.059052634984255,-0.097649730741978,-0.0067697269842029],[-0.093217439949512,0.094241969287395,0.029914453625679],[-0.075740143656731,-0.10598763078451,-0.074437886476517]],[[-0.064893610775471,-0.10421647876501,0.048772312700748],[-0.048018164932728,-0.026211060583591,0.072347804903984],[0.11768887937069,-0.048757374286652,0.066866807639599]],[[-0.004201730247587,-0.017735430970788,-0.1553331464529],[-0.013811807148159,-0.31327855587006,0.16558416187763],[0.11463701725006,-0.17077159881592,-0.025264974683523]],[[0.041120395064354,-0.12997402250767,-0.095390662550926],[0.18424995243549,0.014472523704171,-0.077220119535923],[0.025459725409746,0.14645148813725,-0.083410657942295]],[[0.098949328064919,-0.014849081635475,0.097894817590714],[-0.079939126968384,0.062795653939247,0.038423765450716],[-0.10813831537962,0.093088835477829,-0.14992293715477]],[[-0.12848362326622,-0.2776143848896,-0.16801878809929],[0.064076393842697,-0.11512080579996,0.015177592635155],[0.028004912659526,-0.068101920187473,-0.005439090076834]],[[-0.16770839691162,0.089312098920345,-0.16147914528847],[0.073198139667511,-0.13681003451347,-0.021112766116858],[-0.046356204897165,-0.040608037263155,0.10438062250614]],[[-0.11830544471741,0.0051502236165106,-0.034862272441387],[-0.17160923779011,-0.25918075442314,0.13415566086769],[0.10730738192797,-0.017325861379504,0.043471120297909]],[[0.14293740689754,-0.052503671497107,-0.01682417653501],[0.075746275484562,0.17726543545723,0.00056143605615944],[-0.016424221917987,-0.1720078587532,-0.084886811673641]],[[-0.11631710082293,0.20326937735081,0.00089074671268463],[-0.19070148468018,-0.042699314653873,0.053806435316801],[-0.24737155437469,-0.06367938965559,-0.058042120188475]],[[0.059313360601664,0.12336577475071,-0.16522726416588],[-0.011333791539073,-0.024600848555565,-0.1976325660944],[-0.0026250702794641,-0.05477237701416,0.034177739173174]],[[-0.13324557244778,-0.055384919047356,0.11765579134226],[-0.053421940654516,0.050109099596739,-0.05338703840971],[0.24365508556366,-0.11320561170578,-0.096307203173637]],[[0.084679558873177,0.081774652004242,-0.19821129739285],[0.059040274471045,0.18570649623871,-0.090084381401539],[0.063845671713352,-0.18901063501835,-0.10577126592398]],[[0.017729504033923,0.0058535984717309,-0.089885488152504],[-0.050606846809387,0.19652786850929,-0.16766396164894],[-0.040007088333368,0.06706865131855,-0.13910485804081]],[[0.013067159801722,-0.013221833854914,-0.017053866758943],[0.091802716255188,-0.028070818632841,0.066336311399937],[-0.077581770718098,0.0043544555082917,0.079110905528069]],[[-0.14637576043606,-0.052467759698629,0.067120365798473],[0.042664580047131,-0.067555792629719,0.035314533859491],[-0.057507015764713,-0.045323818922043,0.06719883531332]],[[-0.093851089477539,0.088455528020859,0.016171408817172],[0.05635305121541,0.013940894976258,-0.028627224266529],[-0.041061900556087,0.024583362042904,-0.040901731699705]],[[0.045503739267588,-0.0035340196918696,0.034677591174841],[-0.11353974789381,0.2023604363203,-0.10784494131804],[-0.17664797604084,0.21893826127052,-0.0059623871929944]],[[0.096100680530071,-0.057682115584612,-0.022542865946889],[-0.044164683669806,-0.016627239063382,0.028905192390084],[0.049508567899466,-0.077688962221146,-0.10915283858776]],[[-0.063664212822914,-0.033568371087313,-0.063623040914536],[-0.067427851259708,-0.10463097691536,-0.055450037121773],[0.052250675857067,-0.15496844053268,-0.057984795421362]],[[-0.11316078901291,0.21387831866741,0.11766367405653],[0.037363339215517,-0.12751945853233,-0.037668220698833],[0.02157774195075,-0.0025610134471208,-0.10049064457417]],[[0.16007786989212,0.039531216025352,0.040053997188807],[-0.13281263411045,0.016568219289184,-0.089409098029137],[0.066832609474659,-0.011278575286269,-0.11187057942152]],[[-0.04123829677701,0.091144077479839,0.044393584132195],[0.051232106983662,0.059097867459059,-0.050085667520761],[-0.07665491849184,0.069721102714539,0.10740447044373]],[[0.074851907789707,0.016087662428617,0.034131642431021],[0.22919923067093,0.062696538865566,-0.029487123712897],[0.086736463010311,-0.055363804101944,0.051824174821377]],[[-0.1771577000618,-0.095032930374146,0.20870526134968],[-0.17028295993805,-0.09472794085741,0.050366882234812],[-0.018097434192896,-0.056298870593309,0.063393086194992]],[[-0.015578100457788,0.01062700804323,0.016287457197905],[0.090540833771229,0.02671192958951,0.063161171972752],[0.010479065589607,0.032721798866987,0.13896045088768]],[[-0.15944328904152,-0.0035473264288157,0.059362351894379],[-0.24059833586216,-0.032719168812037,-0.041752696037292],[-0.35507974028587,-0.15598705410957,0.012320744805038]],[[-0.14629548788071,0.030195165425539,0.01144649926573],[-0.044253166764975,-0.086492717266083,-0.025641981512308],[0.010768828913569,0.047513414174318,0.041090205311775]],[[0.1698262244463,-0.05637613683939,-0.060595024377108],[0.095170460641384,-0.00071534217568114,0.087664514780045],[0.1156317666173,0.14757220447063,0.022354315966368]],[[-0.090485312044621,0.02271606400609,0.10707872360945],[-0.12686036527157,-0.25253629684448,0.11144584417343],[-0.13788118958473,-0.18911658227444,0.12283955514431]],[[0.16445094347,0.021131938323379,-0.0189113561064],[-0.026550417765975,-0.18792054057121,-0.058492347598076],[0.14114366471767,-0.13610924780369,-0.022089378908277]],[[0.028153512626886,0.14628332853317,-0.15968132019043],[-0.023068575188518,0.047089695930481,0.024835212156177],[-0.026345571503043,-0.12286259233952,0.13984397053719]],[[-0.047365050762892,0.10915197432041,0.10869061201811],[0.16474507749081,0.079377971589565,-0.019737491384149],[0.076710507273674,-0.022075649350882,0.034894946962595]],[[0.17289417982101,-0.11615157872438,-0.083709381520748],[0.24850419163704,-0.1883462369442,-0.10508066415787],[-0.0049064690247178,-0.27573928236961,-0.21862459182739]],[[0.21866716444492,0.20038098096848,-0.06421535462141],[0.055008821189404,0.15682418644428,0.031427435576916],[-0.18175315856934,0.22824560105801,-0.026853675022721]],[[0.10011565685272,-0.050206143409014,0.017478164285421],[-0.0038227851036936,0.0067245638929307,-0.10755798220634],[0.16683760285378,-0.00525220669806,-0.020839178934693]],[[-0.10479225218296,-0.001987601397559,-0.0037519410252571],[0.051525700837374,-0.067693173885345,-0.03248356282711],[0.052549857646227,-0.057020619511604,0.0094998953863978]],[[0.029659066349268,-0.15512412786484,0.020201332867146],[-0.026005942374468,-0.061630234122276,-0.040229700505733],[-0.14416259527206,-0.092108450829983,0.042729161679745]],[[-0.073925510048866,0.012015791609883,-0.051628403365612],[-0.033616721630096,0.029144652187824,-0.17896391451359],[0.13397566974163,0.16114085912704,-0.057526361197233]],[[0.012018345296383,-0.063610650599003,-0.2158800214529],[0.14149349927902,0.062722451984882,-0.018213909119368],[-0.06419513374567,0.058401957154274,-0.041210889816284]],[[-0.040135521441698,0.044049520045519,0.009494611993432],[-0.065528757870197,0.0026617546100169,0.050975278019905],[-0.035594664514065,-0.14390973746777,0.075621098279953]],[[-0.080744452774525,0.0063219806179404,0.00094983208691701],[-0.013265625573695,-0.1620884090662,0.14967179298401],[-0.012294321320951,0.014247911982238,0.21375952661037]],[[-0.19427651166916,0.050492636859417,-0.034879840910435],[-0.055130075663328,-0.053409371525049,0.019267516210675],[0.053157445043325,-0.064840488135815,0.039436139166355]],[[-0.08551649749279,-0.10122368484735,0.15246906876564],[-0.057802479714155,-0.13363954424858,-0.058387439697981],[0.057657886296511,-0.24054628610611,0.059640858322382]],[[0.10959979891777,0.0022317057009786,0.0020318019669503],[0.1442299336195,-0.084057115018368,0.01683260127902],[-0.042480126023293,-0.22922247648239,-0.012984513305128]],[[0.0038463321980089,0.0095363762229681,-0.081653892993927],[0.025624724105,0.078554682433605,-0.079120777547359],[0.010252860374749,0.057276040315628,-0.13600814342499]],[[-0.14913964271545,-0.12046675384045,-0.0082395831122994],[-0.14000187814236,-0.10793494433165,0.071934580802917],[-0.036091383546591,0.17345587909222,0.13429135084152]],[[0.0091846771538258,0.027894603088498,0.043901827186346],[0.059995695948601,0.017800223082304,0.044380165636539],[0.056682720780373,0.0059823771007359,0.070614442229271]],[[0.058685336261988,-0.078251011669636,-0.063990578055382],[-0.05932703986764,-0.12714193761349,-0.23667195439339],[0.044678203761578,-0.040820755064487,-0.15274007618427]],[[0.055439092218876,0.084631338715553,0.021127013489604],[0.0067405328154564,0.11180152744055,-0.038768243044615],[-0.10788045823574,0.00741499196738,0.15452751517296]],[[0.10970243066549,0.031993176788092,0.049033429473639],[0.081620626151562,0.026372974738479,0.016281493008137],[0.056135766208172,0.039527609944344,0.0049789738841355]],[[-0.083081983029842,-0.072407081723213,0.11792116612196],[-0.047573667019606,-0.019676819443703,-0.018068050965667],[0.096805304288864,-0.0037583312951028,0.12738925218582]],[[0.14578692615032,-0.026541693136096,-0.10570472478867],[0.045875735580921,0.089189298450947,-0.072031810879707],[-0.095481373369694,0.23964641988277,-0.077964968979359]],[[-0.19092507660389,0.12094256281853,0.026867812499404],[-0.31977498531342,0.068195797502995,0.12252688407898],[-0.04229461401701,-0.027176601812243,0.084235079586506]]],[[[0.1316427141428,-0.042680289596319,0.047570448368788],[-0.054968517273664,0.031279250979424,0.025715664029121],[0.038974527269602,-0.091606862843037,0.055435046553612]],[[0.15094885230064,0.095471628010273,0.13365942239761],[-0.025685120373964,-0.009429857134819,-0.089309029281139],[0.17782555520535,0.11320747435093,0.10502353310585]],[[0.083309352397919,-0.13085705041885,-0.086844623088837],[0.024371061474085,0.04657531902194,-0.018779469653964],[-0.061452139168978,0.00013793323887512,-0.020479748025537]],[[0.024061946198344,0.09912633150816,-0.016424270346761],[0.0014104201691225,-0.0023000321816653,0.033307179808617],[0.02890095487237,-0.10002725571394,-0.023324305191636]],[[0.028993085026741,-0.028727233409882,-0.11353744566441],[0.028298428282142,0.14358608424664,0.010362681932747],[-0.090483896434307,-0.11791826039553,-0.17460003495216]],[[0.0035693778190762,0.11266525089741,0.026764158159494],[-0.026020754128695,-0.071916304528713,-0.17774701118469],[0.20941372215748,0.11369811743498,0.24971780180931]],[[0.095424823462963,0.043860170990229,-0.11347333341837],[0.0020100742112845,0.20681299269199,0.21871493756771],[0.039790369570255,-0.045371528714895,0.026413211598992]],[[-0.0073905866593122,0.0055142729543149,-0.0042993891984224],[-0.067581050097942,0.11396756768227,0.10576802492142],[-0.026287015527487,0.099362038075924,0.13930357992649]],[[-0.022955927997828,-0.00055889110080898,0.12721863389015],[-0.13842959702015,0.11872448027134,-0.042316198348999],[0.10600221157074,-0.055996492505074,-0.086302310228348]],[[0.04840274527669,0.091902159154415,-0.14241985976696],[-0.19505427777767,-0.027765657752752,-0.014323047362268],[-0.036010947078466,-0.02298198081553,-0.022159427404404]],[[0.26897543668747,-0.021709814667702,-0.23549874126911],[0.011803149245679,0.084916710853577,0.14701688289642],[-0.048851948231459,0.054644826799631,0.043621022254229]],[[-0.077979348599911,-0.085644863545895,-0.0051936246454716],[-0.062993235886097,0.01657434925437,0.13603720068932],[0.021391166374087,-0.12660127878189,-0.040010549128056]],[[-0.098978698253632,-0.10237788408995,0.053292080760002],[0.013518462888896,0.093519859015942,0.12662544846535],[-0.12943908572197,0.10652178525925,-0.18870902061462]],[[-0.26280185580254,-0.12139771878719,-0.081505157053471],[-0.13660261034966,-0.012276759371161,-0.0094025637954473],[-0.13561044633389,0.03284402564168,-0.024153085425496]],[[-0.12142933905125,-0.020586043596268,-0.010641412809491],[0.012869141064584,0.063175097107887,-0.0064908526837826],[-0.031861111521721,0.087063401937485,0.069526150822639]],[[0.002129839733243,-0.048250164836645,-0.11035253107548],[-0.10454711318016,-0.20931750535965,-0.24382548034191],[0.060028411448002,-0.081329397857189,0.09615246206522]],[[-0.057745426893234,-0.0071280640549958,0.064976036548615],[0.0079104043543339,0.063391819596291,0.016218742355704],[-0.071169748902321,-0.095759861171246,-0.02313594892621]],[[0.10166005045176,0.082938224077225,-0.10203278064728],[-0.016693295910954,-0.0052249110303819,-0.15334564447403],[-0.021885991096497,-0.023295478895307,0.10686783492565]],[[0.015953252092004,0.038369543850422,0.027171578258276],[-0.078092001378536,0.012029723264277,-0.015627706423402],[-0.11189702898264,0.087460167706013,0.045089311897755]],[[0.073772348463535,-0.043267883360386,0.10711569339037],[0.11023695766926,0.0047528333961964,0.18775922060013],[0.091146692633629,0.0014051262987778,0.096233271062374]],[[-0.081654600799084,-0.13951678574085,0.081729039549828],[-0.056725565344095,0.042322378605604,0.083373121917248],[-0.16518089175224,-0.029262023046613,0.043648615479469]],[[0.25003775954247,0.21536296606064,-0.15132406353951],[0.20776470005512,0.040816180408001,0.067230977118015],[0.13786809146404,-0.11056257784367,-0.082222491502762]],[[-0.18325044214725,0.042436100542545,0.032142996788025],[0.23817133903503,0.0057445205748081,-0.085926108062267],[-0.037472765892744,-0.10259170085192,-0.019740061834455]],[[-0.10503723472357,-0.12058793008327,-0.032904677093029],[-0.078538447618484,-0.053704813122749,0.07755184173584],[-0.027042403817177,-0.013322263024747,0.041111644357443]],[[0.060495190322399,0.094107434153557,0.05072757601738],[0.071462772786617,-0.0083777830004692,-0.13820640742779],[0.054206810891628,-0.040159411728382,0.074757240712643]],[[0.012802362442017,0.044568076729774,0.068449608981609],[0.036720767617226,0.039379842579365,-0.064651004970074],[-0.030082821846008,-0.049325421452522,0.10734594613314]],[[-0.0043118284083903,-0.10144907981157,0.0032864287495613],[0.13702245056629,-0.018493846058846,0.0015146908117458],[-0.075881645083427,-0.059623897075653,0.096602767705917]],[[-0.058244373649359,-0.09038582444191,0.014389109797776],[0.08373299241066,0.055733773857355,0.057183735072613],[-0.061268337070942,0.071940466761589,-0.16423024237156]],[[-0.063271783292294,-0.11484844982624,-0.027628462761641],[-0.059357479214668,-0.10096430033445,-0.063509464263916],[0.089656859636307,-0.049384281039238,-0.0039055056404322]],[[-0.00088540610158816,-0.097806707024574,0.026204816997051],[-0.071466028690338,0.010927479714155,0.021139778196812],[-0.015071788802743,-0.019736556336284,0.077967718243599]],[[-0.014741668477654,0.076909966766834,-0.071377314627171],[-0.17760014533997,0.030641390010715,0.046471893787384],[-0.1477165222168,-0.060219794511795,-0.12732771039009]],[[-0.028111455962062,-0.083713933825493,0.0249203145504],[0.076880641281605,0.010647416114807,-0.043426256626844],[0.055330630391836,-0.058135878294706,-0.037371456623077]],[[0.012278941459954,-0.05114721506834,0.11845551431179],[-0.075271189212799,0.083986558020115,0.21909555792809],[0.080398507416248,0.0051773372106254,0.15539188683033]],[[0.057861428707838,0.011863799765706,0.042441748082638],[0.017378391698003,0.024016056209803,0.12282062321901],[-0.12867951393127,-0.013591683469713,0.05179350450635]],[[-0.14038954675198,0.02956379763782,0.12039453536272],[0.048079416155815,-0.03603358566761,-0.049731153994799],[0.072982229292393,-0.052093394100666,0.11314731836319]],[[0.1011720225215,0.10257063806057,0.11243513971567],[-0.021995345130563,0.074484221637249,0.063210293650627],[0.11912098526955,-0.026160951703787,0.047567896544933]],[[-0.012546797282994,0.11650489270687,-0.054773427546024],[-0.082259438931942,-0.066855855286121,0.097166500985622],[0.03633051738143,0.21672734618187,0.13947296142578]],[[0.067213855683804,-0.081468790769577,0.13865548372269],[-0.13658040761948,-0.11402716487646,-0.037335313856602],[-0.10377156734467,0.14309392869473,-0.031765282154083]],[[-0.065852150321007,-0.016386574134231,0.047863822430372],[0.029217211529613,-0.034400723874569,0.10394329577684],[0.06089449301362,0.016853848472238,-0.15444934368134]],[[-0.068382665514946,0.047588441520929,-0.010985365137458],[0.026868341490626,-0.098933905363083,0.14020405709743],[0.22793439030647,0.093232586979866,-0.086591117084026]],[[0.0099561614915729,-0.056155357509851,-0.0017698808806017],[0.18672388792038,-0.12220155447721,-0.084839276969433],[-0.13921271264553,0.022009497508407,0.01250178553164]],[[0.011216089129448,-0.036200672388077,-0.042957872152328],[0.073790922760963,0.091884531080723,-0.035722322762012],[0.092749118804932,0.094626471400261,0.043194092810154]],[[-0.083782158792019,0.028089124709368,-0.0041689602658153],[-0.1484280526638,-0.14895284175873,-0.12137298285961],[-0.12109655886889,-0.1209390386939,-0.074603147804737]],[[-0.061684530228376,0.007413865532726,0.061849217861891],[-0.10310868173838,-0.029504096135497,0.032321289181709],[-0.099940478801727,-0.016412096098065,-0.037583753466606]],[[0.064589984714985,-0.024950971826911,-0.075780153274536],[0.016456961631775,0.0011899142991751,-0.0021928385831416],[-0.071263089776039,-0.11433947831392,0.0997444242239]],[[-0.049334522336721,-0.084637366235256,0.012078128755093],[-0.058151792734861,-0.058361738920212,-0.062346085906029],[0.071886211633682,0.088919296860695,0.053499169647694]],[[-0.21690194308758,0.011269732378423,-0.092608921229839],[-0.13374379277229,-0.047409750521183,-0.11101664602757],[0.054819978773594,0.047701310366392,-0.12893134355545]],[[0.085293628275394,0.038785714656115,-0.020322095602751],[0.0076878690160811,0.053530592471361,0.029759267345071],[-0.028413994237781,-0.06857892870903,-0.14129796624184]],[[-0.052782036364079,0.095023699104786,-0.045328371226788],[-0.20314824581146,-0.020992953330278,0.16918736696243],[-0.016396034508944,-0.028816377744079,0.046192206442356]],[[-0.027941005304456,-0.0056096194311976,0.12159779667854],[-0.017787832766771,-0.07595919072628,-0.0020837991032749],[-0.1265586912632,-0.029550518840551,0.006047869566828]],[[-0.031537771224976,-0.036056775599718,0.082158260047436],[-0.062266621738672,-0.084918789565563,0.033823005855083],[-0.01982232183218,0.0058580646291375,-0.054389975965023]],[[-0.0060274451971054,0.0053358967415988,-0.20454104244709],[0.090469874441624,0.0081716785207391,-0.070915497839451],[-0.072685614228249,-0.02935953065753,0.1012322679162]],[[-0.033205363899469,-0.099114246666431,-0.022031037136912],[-0.019828444346786,0.021446391940117,0.062800422310829],[-0.15542224049568,-0.038411367684603,0.026728490367532]],[[0.032044388353825,-0.059571713209152,-0.014872077852488],[0.013356698676944,0.10328076779842,0.022109905257821],[0.12253663688898,-0.014406681060791,0.071826539933681]],[[0.0058984365314245,0.070350386202335,-0.040554858744144],[0.15935331583023,-0.001187375979498,-0.078829534351826],[-0.0028084937948734,-0.065703183412552,-0.090506695210934]],[[0.0028658458031714,-0.092348620295525,0.020045092329383],[0.051455419510603,0.0013372398680076,0.030820857733488],[-0.0070179798640311,0.065480619668961,0.060081638395786]],[[0.26502719521523,0.10950464755297,-0.036707926541567],[0.12622061371803,-0.052572883665562,-0.055687945336103],[0.041793316602707,0.028274020180106,0.057112619280815]],[[-0.23000472784042,0.017115268856287,-0.015203597024083],[-0.089756272733212,0.079873852431774,0.060271665453911],[-0.063220232725143,-0.011204329319298,-0.015752628445625]],[[-0.053111348301172,-0.073636747896671,-0.14179237186909],[-0.0024278468918055,0.0063363970257342,-0.12949529290199],[0.15560410916805,-0.0086926436051726,0.018381331115961]],[[0.045387595891953,-0.11336454004049,-0.0002419437514618],[-0.073607690632343,0.0062966137193143,-0.0064052399247885],[-0.11853573471308,-0.027748718857765,0.017008872702718]],[[0.049319706857204,0.0019191286992282,0.053992208093405],[-0.072431959211826,0.026853194460273,0.022558934986591],[0.035520248115063,-0.044044580310583,-0.013500440865755]],[[-0.034373801201582,0.01643673889339,0.0074390871450305],[-0.27522704005241,-0.041492313146591,-0.11184992641211],[0.079643249511719,-0.054832153022289,-0.12524470686913]],[[-0.067041829228401,-0.1150171533227,0.080360725522041],[-0.024736527353525,-0.0291494615376,0.096130341291428],[-0.05263901501894,0.10100062191486,0.031969424337149]],[[0.097356073558331,0.20767840743065,0.21780508756638],[-0.13143393397331,0.056986715644598,0.032042410224676],[-0.035833723843098,-0.086244203150272,0.013919001445174]],[[-0.013067119754851,-0.056536510586739,0.021329265087843],[-0.14269331097603,-0.13654331862926,-0.011285700835288],[-0.017513072118163,-0.019574768841267,0.048354394733906]],[[-0.01575155928731,0.036628883332014,-0.037709821015596],[-0.03719787299633,0.050467886030674,-0.039687715470791],[-0.11526846885681,-0.01181935146451,-0.017249051481485]],[[-0.13636758923531,0.076711289584637,0.16183356940746],[0.061287984251976,-0.044808845967054,-0.0037897638976574],[-0.11978314071894,-0.092532135546207,0.019596500322223]],[[0.07638156414032,0.090486660599709,0.041614904999733],[0.10669109225273,0.02972506172955,-0.12128769606352],[-0.21472570300102,-0.02514368109405,-0.056296870112419]],[[0.11390920728445,-0.015278616920114,-0.091642469167709],[-0.14572714269161,-0.061847239732742,-0.037686571478844],[-0.02466688118875,0.043291423469782,0.058145999908447]],[[0.033267062157393,-0.07527170330286,-0.12012568861246],[-0.10967288911343,0.012281315401196,0.11362982541323],[0.035746324807405,-0.032773889601231,-0.044874224811792]],[[-0.22874172031879,-0.099548034369946,0.15309903025627],[-0.13672597706318,-0.097788959741592,0.21118004620075],[0.10935448110104,0.10378652065992,-0.10659784078598]],[[-0.016605116426945,0.00020815699826926,-0.010909389704466],[-0.10596975684166,-0.055679902434349,0.028355808928609],[-0.073298864066601,-0.02964872866869,-0.063207790255547]],[[-0.0032294834963977,-0.055609431117773,0.03162981197238],[0.14379018545151,-0.0062477504834533,0.021513141691685],[-0.021930411458015,0.001725368318148,-0.16187578439713]],[[0.25955593585968,0.13533096015453,0.014206939376891],[-0.058140508830547,-0.0063605047762394,-0.024308633059263],[-0.041541017591953,-0.05776109918952,-0.057533971965313]],[[0.0014447016874328,-0.07457721978426,-0.083441987633705],[-0.0029499211814255,0.1548684835434,0.1361081302166],[-0.05151080712676,-0.037170495837927,0.014057309366763]],[[0.022218994796276,0.033484313637018,-0.020620100200176],[0.065246902406216,0.034634161740541,-0.01291395444423],[0.036211278289557,-0.066504530608654,-0.11583568155766]],[[0.070210032165051,-0.0048378692008555,-0.018251948058605],[-0.12548054754734,-0.038759004324675,0.0030179845634848],[-0.050642259418964,-0.029169846326113,-0.15794493257999]],[[0.054191559553146,0.106210693717,0.021981630474329],[-0.068274304270744,-0.060771577060223,0.031495906412601],[-0.13232257962227,-0.028446661308408,-0.06484616547823]],[[0.077513411641121,0.038191150873899,-0.18386834859848],[0.053123958408833,-0.10090228170156,-0.13721679151058],[0.036511715501547,0.18683452904224,-0.064338527619839]],[[-0.043696690350771,-0.21973812580109,0.052113104611635],[-0.050343960523605,-0.041562162339687,0.048185743391514],[-0.10040985792875,0.0032885877881199,-0.03262535110116]],[[-0.13400158286095,0.046407356858253,0.024011069908738],[-0.0018709996948019,0.091651603579521,-0.12385097146034],[0.045813445001841,-0.11156367510557,0.026085942983627]],[[0.015953253954649,-0.047976937144995,0.030090283602476],[-0.072621546685696,-0.093303442001343,0.22149883210659],[-0.10433495044708,0.12124706059694,0.20238962769508]],[[0.071485832333565,-0.07296422123909,0.062913320958614],[0.047729030251503,-0.01460678409785,0.1932045519352],[0.061817366629839,0.048752713948488,0.23477466404438]],[[-0.12507367134094,0.0090901236981153,0.015332563780248],[-0.018865093588829,-0.040636297315359,0.071257308125496],[-0.063032425940037,-0.073633961379528,0.00070797908119857]],[[0.16580517590046,0.063701882958412,0.11598693579435],[-0.034858420491219,-0.14276073873043,-0.012067331932485],[-0.069785706698895,-0.092658437788486,0.16212238371372]],[[-0.10944962501526,-0.16879899799824,-0.071684889495373],[-0.08066088706255,-0.083899356424809,-0.038282930850983],[-0.0066294739954174,0.034857179969549,0.1148661673069]],[[-0.046016443520784,-0.016378507018089,0.098354339599609],[-0.2028785943985,-0.0072503690607846,-0.026096314191818],[-0.045524481683969,0.029865758493543,0.18022894859314]],[[0.015468962490559,-0.0462346971035,0.047532614320517],[-0.0096690021455288,0.070722922682762,0.27705651521683],[-0.061416033655405,-0.064887724816799,-0.039543125778437]],[[0.097107194364071,0.011598568409681,0.017489239573479],[0.092075571417809,-0.030033148825169,-0.024546219035983],[0.015999898314476,0.011876105330884,0.098053082823753]],[[-0.00014022755203769,-0.07486379891634,-0.16251912713051],[-0.091840289533138,0.055365957319736,0.063061811029911],[-0.043860957026482,0.039228811860085,-0.060133788734674]],[[-0.1183143928647,-0.12996666133404,0.041276589035988],[0.032989140599966,0.047715310007334,-0.1475456058979],[0.069477632641792,-0.036872591823339,0.07513090223074]],[[0.012241130694747,-0.15838240087032,-0.095967635512352],[-0.040791656821966,-0.0074418517760932,0.059563223272562],[-0.11744800209999,-0.092581741511822,-0.13962130248547]],[[0.015885140746832,-0.062584206461906,-0.1648486405611],[0.097316391766071,-0.10511447489262,-0.1019941046834],[-0.044700782746077,0.081225924193859,0.085431188344955]],[[0.0023599164560437,0.016341730952263,0.045050691813231],[-0.12080402672291,-0.079307518899441,0.22336541116238],[-0.081124417483807,-0.14327216148376,-0.14762072265148]],[[-0.11658737063408,0.0431800596416,0.076846711337566],[0.11066257208586,-0.071480788290501,-0.0024361156392843],[0.087720692157745,0.0014062586706132,-0.05864791944623]],[[0.14779898524284,0.04914953187108,0.31015685200691],[0.030512474477291,-0.099748097360134,-0.14894695580006],[-0.16668510437012,0.097684815526009,0.073515973985195]],[[0.044826284050941,-0.058921318501234,0.11005759984255],[0.016385046765208,-0.12747757136822,-0.043950345367193],[0.1725447922945,-0.057677160948515,0.092823952436447]],[[0.039708618074656,0.063262164592743,0.03269974142313],[0.16901601850986,-0.010591830126941,-0.050267666578293],[-0.089204400777817,-0.044891759753227,0.099075451493263]],[[0.18416824936867,-0.019246209412813,0.22355446219444],[0.142468765378,0.041093289852142,-0.073414094746113],[-0.0090165883302689,0.045354634523392,0.072965763509274]],[[0.061153367161751,0.079673208296299,-0.04929768294096],[-0.019058678299189,-0.14802937209606,-0.038052592426538],[0.13748523592949,0.060403119772673,0.12083918601274]],[[0.077847898006439,-0.13914428651333,-0.049716088920832],[0.027652956545353,0.011413619853556,-0.014033616520464],[0.023978598415852,-0.052851788699627,-0.057460028678179]],[[0.037879224866629,0.23278634250164,0.11115119606256],[-0.052803780883551,0.038171887397766,0.0415646918118],[0.015644242987037,-0.024258373305202,0.23276650905609]],[[0.045145981013775,-0.0080070970579982,0.047758065164089],[0.042168606072664,-0.059182692319155,-0.0025300993584096],[0.031659416854382,0.1030620932579,-0.015758968889713]],[[0.06408953666687,-0.09038307517767,0.08920618891716],[0.096149072051048,-0.01870740018785,-0.073107838630676],[0.28864648938179,-0.010419991798699,-0.0077835530973971]],[[0.20488023757935,0.074881330132484,0.0013204582501203],[-0.019032441079617,-0.048623103648424,-0.011725327000022],[-0.11396779865026,0.030227676033974,0.10162150114775]],[[-0.19132730364799,-0.0072627924382687,0.10819343477488],[0.10434582084417,-0.018833734095097,-0.034612767398357],[-0.072530932724476,0.0050101233646274,0.085906937718391]],[[0.0044140368700027,-0.030926004052162,-0.045386783778667],[0.043432742357254,0.062147669494152,0.011388155631721],[0.11469706147909,-0.032614901661873,0.046258863061666]],[[-0.0048169242218137,-0.076417773962021,0.050912506878376],[-0.043802917003632,-0.11967486143112,0.079331934452057],[0.0099955983459949,0.0046244193799794,0.057928897440434]],[[0.057611990720034,-0.045296475291252,-0.10624176263809],[0.19523426890373,-0.060521569103003,-0.013037542812526],[0.13757091760635,-0.016053631901741,-0.05364028736949]],[[0.14611166715622,-0.21600763499737,-0.15820989012718],[-0.0013371715322137,-0.21476259827614,-0.029847823083401],[-0.179732888937,-0.093650713562965,-0.059937849640846]],[[-0.090079367160797,-0.039449255913496,0.00046812710934319],[-0.043750341981649,-0.13906900584698,0.030704475939274],[-0.13662992417812,0.039035007357597,0.058364797383547]],[[0.084089189767838,-0.22472773492336,-0.068167045712471],[0.026664637029171,-0.0076702455990016,-0.067718230187893],[0.06866242736578,-0.016835892572999,0.14370833337307]],[[-0.0060043539851904,-0.037534099072218,0.042338885366917],[-0.027196044102311,-0.23309154808521,-0.11168036609888],[0.0050441860221326,-0.06909653544426,0.079741179943085]],[[-0.0021407618187368,-0.051844451576471,0.0049809422343969],[0.0080989794805646,0.068070866167545,0.024325650185347],[-0.064903669059277,-0.24134540557861,-0.076595962047577]],[[-0.17941805720329,-0.079446017742157,-0.037543907761574],[-0.079623483121395,0.087310045957565,0.086023397743702],[-0.016092240810394,-0.033154759556055,-0.051795188337564]],[[-0.15370285511017,-0.094063371419907,-0.0068566990084946],[0.018948467448354,-0.0077168480493128,-0.13261310756207],[-0.048865657299757,0.084699906408787,0.093532249331474]],[[-0.11783240735531,-0.042621400207281,0.022439792752266],[-0.19836373627186,0.0076989531517029,0.037531733512878],[0.015302072279155,-0.059794161468744,0.078108720481396]],[[-0.12221238017082,-0.18479070067406,-0.025944627821445],[0.18387362360954,0.14458313584328,0.13161239027977],[-0.1278340369463,-0.054388139396906,0.0029333212878555]],[[-0.004071562550962,-0.064103163778782,0.18217547237873],[-0.12952522933483,-0.13197903335094,0.005698730237782],[-0.11767143756151,0.13520310819149,0.13000081479549]],[[0.039970614016056,-0.034538373351097,-0.0644626095891],[0.067535854876041,0.066349320113659,0.066345922648907],[0.12153427302837,-0.14923577010632,-0.1542022973299]],[[-0.033386953175068,0.087088376283646,-0.032291632145643],[0.014179925434291,-0.026201155036688,0.017564382404089],[0.12835384905338,0.064560115337372,0.11623629927635]],[[-0.17923252284527,0.0092511521652341,0.011190097779036],[0.058908373117447,0.030581576749682,-0.011060275137424],[0.13706061244011,0.10542418062687,-0.043066654354334]],[[-0.14078429341316,-0.09428945928812,0.084725901484489],[-0.04797950387001,-0.02115485817194,-0.12427466362715],[-0.13121035695076,-0.053094815462828,0.098360955715179]],[[0.13013558089733,0.2268008440733,0.11969146132469],[-0.077929444611073,-0.086010359227657,0.054247479885817],[-0.0063617206178606,0.074445180594921,-0.075826376676559]],[[0.1439632922411,0.043786562979221,0.10586399585009],[0.065488688647747,-0.0088254250586033,-0.014619122259319],[0.016493868082762,0.017830586060882,-0.018026866018772]],[[-0.11687289178371,-0.069692187011242,-0.16190156340599],[-0.039517808705568,0.068336397409439,0.053620472550392],[-0.13729213178158,0.052234925329685,0.12850169837475]],[[-0.078086040914059,-0.13786877691746,-0.20838794112206],[-0.019790897145867,-0.15283182263374,-0.046241540461779],[-0.10187015682459,-0.064435340464115,0.043791152536869]],[[-0.072003990411758,-0.0094345891848207,-0.12296330183744],[0.062500432133675,0.055409613996744,0.025563424453139],[0.032752823084593,-0.016021126881242,0.088419117033482]]],[[[-0.025758748874068,0.051337938755751,-0.016370354220271],[0.00093361467588693,-0.061271119862795,-0.064287632703781],[-0.10368327796459,-0.037328783422709,0.10097035765648]],[[-0.028610406443477,-0.010002074763179,-0.061690367758274],[0.043957866728306,0.026108540594578,0.073881953954697],[-0.012139193713665,0.028009511530399,0.051019605249166]],[[0.065208084881306,0.015673082321882,0.06322006881237],[0.0035340636968613,0.019616812467575,0.074000038206577],[-0.051902242004871,0.15274888277054,-0.060448762029409]],[[0.028945261612535,0.028396911919117,0.0081611201167107],[0.0065215979702771,0.040420614182949,-0.090832784771919],[-0.025436751544476,-0.082869634032249,-0.02424369007349]],[[0.046635422855616,0.046379584819078,0.07783117890358],[-0.16928680241108,-0.025047631934285,-0.100800588727],[0.0437624566257,-0.025648169219494,0.037992373108864]],[[-0.0073267975822091,0.11668381839991,0.010463820770383],[0.0011258077574894,-0.050382472574711,0.086146086454391],[-0.032832950353622,-0.053744550794363,0.057846073061228]],[[-0.011870186775923,0.011162236332893,0.018092010170221],[0.022147366777062,0.10101324319839,0.038849331438541],[0.1253447085619,0.024649940431118,0.096354372799397]],[[-0.024526281282306,0.02241051569581,-0.045720677822828],[-0.057029191404581,0.15006938576698,0.017885873094201],[-0.0067317588254809,0.0077636176720262,0.015170380473137]],[[0.11223394423723,-0.052915371954441,-0.02882357686758],[0.033278722316027,0.023747589439154,0.003647344186902],[-0.076249592006207,0.014229850843549,-0.12455838173628]],[[-0.051683429628611,-0.011842909269035,0.028591400012374],[0.084951221942902,0.032459188252687,-0.1595423668623],[0.1488830447197,-0.032974593341351,0.053538955748081]],[[-0.006249887868762,-0.040220089256763,0.07972002774477],[0.038681164383888,0.098721444606781,0.26188141107559],[-0.058289241045713,-0.044861912727356,-0.0067139961756766]],[[0.12427131831646,0.014074726961553,0.1658433675766],[-0.051217559725046,-0.016016699373722,-0.083656780421734],[-0.025427835062146,-0.15413352847099,-0.028686689212918]],[[-0.028949785977602,-0.0235211327672,0.0045069507323205],[-0.020016197115183,-0.088037915527821,0.069901287555695],[0.015839092433453,-0.017756933346391,0.16137273609638]],[[0.00010661745909601,-0.082347892224789,-0.21811793744564],[0.0049558887258172,-0.15081289410591,-0.15445721149445],[0.11782573163509,-0.089876763522625,-0.13667361438274]],[[0.08478906750679,-0.0076064043678343,0.01791482232511],[0.033545326441526,0.10687501728535,0.12167855352163],[-0.12496150285006,-0.018574561923742,0.050959940999746]],[[0.0042651537805796,-0.07482784986496,0.03683078661561],[-0.01853839494288,-0.0059252064675093,-0.01010603364557],[0.0058811297640204,-0.020693665370345,-0.15345656871796]],[[0.040055766701698,0.077157996594906,0.10879632085562],[0.029970932751894,-0.012421649880707,-0.16192774474621],[-0.025753267109394,-0.129245236516,-0.12131555378437]],[[-0.052473671734333,0.10877088457346,-0.031604893505573],[-0.080457463860512,0.060690704733133,-0.14316491782665],[0.077214024960995,0.084227077662945,-0.0010039417538792]],[[0.099752247333527,0.1521563231945,0.053441163152456],[0.0042805494740605,-0.13491037487984,-0.022816998884082],[0.042367484420538,-0.078239500522614,-0.053538389503956]],[[0.03327676281333,-0.058262553066015,-0.010393525473773],[0.12938092648983,-0.14634412527084,-0.20676116645336],[0.094964325428009,0.027989992871881,-0.16583172976971]],[[-0.030046006664634,-0.063285753130913,0.015061048790812],[-0.15344312787056,-0.074513077735901,-0.013487997464836],[0.020828170701861,0.0022582039237022,0.051287416368723]],[[-0.057831615209579,-0.1225877776742,0.034764483571053],[0.067244432866573,-0.033633317798376,0.14095583558083],[-0.00078762345947325,0.026508579030633,0.026026276871562]],[[0.09453772008419,-0.074232280254364,-0.18198017776012],[0.020904738456011,0.11673980951309,0.050888001918793],[0.055917769670486,-0.0081929387524724,0.099367700517178]],[[0.1077983379364,-0.00040717417141423,0.013708622194827],[0.1022681593895,0.10772088170052,0.045415930449963],[-0.30917993187904,-0.034539517015219,0.063130989670753]],[[-0.035158157348633,-0.055034603923559,-0.027186285704374],[-0.03438563272357,0.037250895053148,0.072963774204254],[0.09791387617588,-0.015968177467585,0.090948916971684]],[[0.076652191579342,0.014828139916062,0.021606801077724],[0.077477477490902,-0.012499394826591,0.052388422191143],[-0.073919363319874,-0.055981382727623,0.014701947569847]],[[0.023111678659916,0.034437995404005,-0.052457381039858],[0.031426727771759,0.17913107573986,-0.07198241353035],[-0.023495644330978,0.12863519787788,-0.011337115429342]],[[-0.017637759447098,0.12362992763519,-0.0031020094174892],[-0.05832751467824,-0.055132407695055,0.045764721930027],[0.036184851080179,-0.090381629765034,-0.13442553579807]],[[0.098522238433361,-0.020377818495035,0.011562426574528],[0.031774617731571,-0.10585264116526,-0.024866107851267],[-0.038692519068718,-0.00088044442236423,-0.07184062898159]],[[-0.035753194242716,0.062680661678314,-0.016406847164035],[0.081748314201832,-0.0041777542792261,-0.09060924500227],[0.0096602393314242,-0.032004028558731,0.076407589018345]],[[0.045268382877111,0.079287633299828,-0.077117130160332],[-0.044459946453571,0.071683652698994,-0.043606750667095],[-0.017970392480493,0.050416052341461,-0.11328868567944]],[[-0.09096834808588,0.01863794401288,-0.0059399516321719],[-0.16635544598103,-0.083880253136158,0.035649705678225],[0.059124540537596,0.15856094658375,-0.026953183114529]],[[-0.0097016729414463,0.077659420669079,0.053320404142141],[-0.028625149279833,-0.053574170917273,0.068614669144154],[0.0048864125274122,0.049490731209517,0.11093493551016]],[[0.034248080104589,0.049507223069668,0.06465570628643],[0.022023390978575,-0.031158205121756,0.025207862257957],[-0.039857380092144,-0.14879144728184,0.031373307108879]],[[-0.080722324550152,0.039715200662613,-0.056076068431139],[-0.043115302920341,-0.11955872178078,0.041941158473492],[-0.091933533549309,0.065576791763306,0.050721950829029]],[[0.12605153024197,0.055086150765419,0.019519750028849],[-0.072104193270206,-0.055098630487919,0.0094674304127693],[-0.11179180443287,-0.036921374499798,-0.052808340638876]],[[-0.13170702755451,0.0068811783567071,0.037907123565674],[0.029686946421862,0.0099156247451901,0.04183766618371],[-0.053721342235804,0.029061222448945,0.14591926336288]],[[-0.040227867662907,0.03524224460125,-0.038285650312901],[-0.048101063817739,0.1109349951148,0.11553776264191],[0.089949890971184,0.027960224077106,0.11626805365086]],[[-0.030286578461528,-0.079856708645821,0.0052053383551538],[0.13876312971115,0.056688010692596,0.039425812661648],[-0.079984322190285,-0.12233585119247,0.034898068755865]],[[-0.12719810009003,-0.028100186958909,-0.029857879504561],[-0.01591962389648,0.043157335370779,0.13491521775723],[-0.0065069212578237,-0.042402971535921,0.023539204150438]],[[0.047339972108603,-0.012624894268811,0.068743132054806],[-0.12308663129807,0.028937969356775,0.037352573126554],[-0.070228666067123,-0.10582552105188,0.078725390136242]],[[0.062799066305161,-0.020661693066359,-0.075426027178764],[-0.031593523919582,0.019061487168074,-0.10335025191307],[0.054176099598408,0.051712527871132,-0.03232441842556]],[[-0.085024476051331,0.071490436792374,0.034060638397932],[-0.046458411961794,0.021419737488031,0.032659132033587],[-0.018497241660953,-0.065919652581215,-0.16736473143101]],[[-0.027579916641116,0.015177179127932,-0.045743890106678],[-0.027361858636141,0.018121773377061,0.038438778370619],[-0.03297409042716,0.0641720443964,0.011536265723407]],[[-0.01099366042763,0.053012359887362,0.053181495517492],[-0.073196887969971,-0.0094261476770043,-0.017099764198065],[-0.031415894627571,-0.053098142147064,0.026082133874297]],[[0.09390639513731,-0.027452234178782,0.078419245779514],[-0.012297832407057,-0.063187547028065,-0.069354377686977],[-0.021327586844563,-0.14162886142731,-0.062670812010765]],[[-0.13514867424965,-0.020164065063,-0.022242883220315],[-0.011358198709786,0.11515990644693,-0.30095461010933],[0.12067487090826,0.024296065792441,-0.17594896256924]],[[0.082673586905003,0.056030821055174,0.035806424915791],[0.011970235034823,0.046280097216368,0.10241743177176],[-0.08677676320076,0.02156868763268,-0.043608509004116]],[[-0.012198716402054,0.041922632604837,-0.13316532969475],[0.034974008798599,0.12453779578209,0.094631060957909],[-0.12568850815296,-0.12557779252529,0.080522820353508]],[[0.0015628391411155,0.016350654885173,-0.006015682592988],[-0.013101343996823,-0.13879558444023,-0.060178149491549],[-0.080138713121414,-0.045611165463924,-0.065114207565784]],[[0.018046472221613,0.020565927028656,0.0015304452972487],[0.064822971820831,0.028524985536933,-0.090462110936642],[-0.032109621912241,-0.043544948101044,-0.02372819185257]],[[0.060237061232328,-0.029289161786437,-0.017203548923135],[-0.022774111479521,-0.042399007827044,0.011355572380126],[-0.012291848659515,0.039544425904751,-0.0084583647549152]],[[0.0057019218802452,0.025907807052135,0.016386177390814],[-0.081126622855663,0.1012900993228,0.031932286918163],[0.012757866643369,0.13285081088543,0.029475370422006]],[[0.065250173211098,0.08480454236269,0.027399268001318],[0.0029826427344233,-0.0072022783569992,-0.0072453552857041],[0.12806364893913,-0.0040344544686377,-0.12248064577579]],[[0.02201677300036,-0.074001990258694,-0.087411940097809],[0.095441125333309,0.085908807814121,-0.054022382944822],[0.11084980517626,-0.033602483570576,0.045856270939112]],[[-0.23353333771229,-0.011215445585549,-0.010209825821221],[-0.06519041210413,0.048230569809675,0.010991584509611],[0.22116127610207,0.077478244900703,0.066081255674362]],[[-0.055617853999138,-0.095877304673195,-0.11937122792006],[0.054554127156734,0.051916182041168,0.14456069469452],[-0.086553037166595,0.095567621290684,0.13014374673367]],[[-0.044816106557846,-0.011085051111877,-0.0025148731656373],[-0.0035363216884434,-0.00090776587603614,0.029202729463577],[-0.012388358823955,-0.087150305509567,-0.091619789600372]],[[0.090577952563763,0.071557015180588,0.063883729279041],[-0.074154034256935,-0.1602411866188,-0.13506677746773],[-0.018676282837987,-0.26026204228401,-0.024280767887831]],[[0.19474650919437,0.089508906006813,-0.011006657965481],[0.14773134887218,0.015316370874643,-0.099325515329838],[0.1278790384531,-0.082818597555161,-0.066086791455746]],[[-0.032217666506767,-0.082405619323254,-0.024881744757295],[-0.035340268164873,-0.057296719402075,0.037031300365925],[-0.10296620428562,-0.07476069778204,-0.023077676072717]],[[-0.070262506604195,-0.065333969891071,0.014624437317252],[0.017502913251519,0.028852673247457,-0.10200475156307],[0.18460549414158,-0.15024466812611,-0.11896806210279]],[[0.012802544981241,0.09341511875391,0.18584589660168],[-0.10877378284931,0.10198437422514,0.15980334579945],[0.15776850283146,0.0073880250565708,-0.0034145868849009]],[[0.065485060214996,0.062802813947201,-0.022163987159729],[-0.013882299885154,0.013402575626969,0.031808819621801],[-0.15273809432983,0.041743505746126,0.13417048752308]],[[0.012943198904395,0.009542596526444,-0.0084298020228744],[-0.054935779422522,-0.0031417738646269,-0.10991933941841],[0.0075029185973108,0.018947528675199,-0.087368346750736]],[[0.099679976701736,0.015202910639346,-0.01511821616441],[0.042812746018171,0.032609991729259,0.028942242264748],[-0.15175822377205,0.026719637215137,0.091248445212841]],[[-0.12018448859453,0.080448754131794,-0.0099767483770847],[0.16945153474808,0.020150147378445,-0.053727645426989],[0.051976248621941,0.0038526821881533,-0.074784725904465]],[[0.086395882070065,-0.045959200710058,-0.025721983984113],[0.14438320696354,-0.055462136864662,-0.16554927825928],[-0.065505541861057,-0.032294701784849,-0.042278297245502]],[[-0.066501349210739,0.068386420607567,-0.058782037347555],[-0.01842980273068,-0.032515440136194,-0.06730604916811],[0.0048964926972985,0.014436920173466,-0.037651225924492]],[[-0.0068924585357308,0.03394628316164,0.1076732724905],[0.068194560706615,0.010683567263186,-0.046841513365507],[-0.03726564347744,-0.043611709028482,0.058129291981459]],[[-0.016155878081918,-0.038118168711662,-0.034846220165491],[-0.083305269479752,0.022846724838018,0.22286015748978],[-0.034317277371883,0.0079917935654521,-0.1220797598362]],[[0.038896750658751,0.080579407513142,0.22025932371616],[-0.059393391013145,-0.0051514646038413,-0.0685148909688],[0.08708830177784,0.085345663130283,-0.12599357962608]],[[0.053790494799614,0.16073590517044,0.060944128781557],[0.022135490551591,-0.036230590194464,-0.025432066991925],[-0.14115713536739,-0.057958692312241,-0.12317206710577]],[[-0.057039462029934,0.0069005750119686,-0.070543818175793],[0.04050849750638,-0.00023175968090072,-0.13481329381466],[0.0072114174254239,0.10360988229513,0.068653717637062]],[[-0.027694094926119,-0.035392723977566,-0.04287401214242],[-0.013651371002197,-0.066836751997471,-0.07538565248251],[0.01291379891336,-0.086051695048809,-0.15562528371811]],[[-0.0079272696748376,0.12601742148399,-0.065708100795746],[0.033408746123314,0.10132183134556,-0.25547647476196],[-0.018802648410201,0.13088369369507,-0.13246701657772]],[[-0.027703216299415,-0.015312402509153,-0.074813552200794],[-0.047137558460236,-0.090496994554996,0.1115864366293],[0.089829459786415,-0.019868146628141,0.13766676187515]],[[-0.017590193077922,-0.080040022730827,-0.054520960897207],[-0.052138555794954,-0.074928045272827,-0.11343157291412],[0.090198121964931,-0.13222140073776,-0.084255583584309]],[[-0.029431704431772,0.11003839224577,0.12518766522408],[0.024292940273881,0.0065788463689387,-0.085126265883446],[-0.061890982091427,-0.033411797136068,-0.060424417257309]],[[-0.0093872928991914,-0.11075796931982,0.039968598634005],[0.0035125478170812,-0.046506267040968,-0.071384064853191],[0.055991474539042,0.070672392845154,-0.11569462716579]],[[0.011122534051538,0.048441506922245,0.011194466613233],[-0.0534862652421,-0.0015675013419241,0.0086638182401657],[-0.013387621380389,0.075417302548885,-0.073978111147881]],[[0.094762161374092,-0.056334231048822,0.13420151174068],[-0.048929814249277,0.013518399558961,0.0034328149631619],[-0.012963718734682,-0.082036800682545,0.014462298713624]],[[-0.01397951412946,-0.0062552276067436,-0.043249350041151],[0.055056281387806,0.054396353662014,-0.098945945501328],[0.056614402681589,0.2026205509901,0.2638965845108]],[[-0.026638524606824,-0.040174819529057,-0.054866280406713],[-0.10471702367067,-0.16942240297794,-0.071424975991249],[-0.093546345829964,-0.16042837500572,-0.032947830855846]],[[-0.024781903252006,0.040751066058874,0.10449846088886],[-0.050718322396278,-0.0026372733991593,-0.13000564277172],[0.100401699543,-0.054821562021971,0.078569941222668]],[[-0.14383700489998,-0.15457762777805,-0.15812201797962],[-0.063069112598896,-0.091462031006813,-0.08412392437458],[-0.010537137277424,0.017535703256726,0.12437354028225]],[[0.026541182771325,0.040927782654762,-0.049831710755825],[0.081897363066673,-0.02665738388896,0.064331874251366],[-0.024830512702465,0.043167971074581,0.065839402377605]],[[-0.045127909630537,-0.044516790658236,-0.074040286242962],[-0.025278070941567,0.024450672790408,0.036189883947372],[-0.068122439086437,-0.012238996103406,-0.0040849009528756]],[[-0.042286645621061,-0.12904892861843,0.044475179165602],[0.097792066633701,-0.092737846076488,-0.1182067245245],[0.074599489569664,0.0035896387416869,-0.063551187515259]],[[0.02508645132184,-0.097788043320179,-0.18086375296116],[0.0039564701728523,0.034910377115011,0.17905215919018],[0.014755392447114,0.066828578710556,0.058723103255033]],[[0.0061749652959406,0.018265023827553,0.03934883326292],[-0.080809041857719,-0.038440588861704,0.0081420755013824],[0.036262456327677,0.13423404097557,0.13873034715652]],[[-0.0015899330610409,-0.026419589295983,-0.071628272533417],[-0.085294663906097,-0.10195485502481,-0.081751570105553],[0.025454923510551,-0.0684854388237,-0.031747490167618]],[[-0.076617240905762,-0.087745808064938,0.15615808963776],[0.051496237516403,0.042084977030754,0.066615179181099],[-0.010742265731096,-0.025341600179672,0.074009515345097]],[[-0.14366181194782,-0.1558613628149,-0.014645227231085],[-0.14503416419029,-0.068897344172001,0.13066582381725],[0.022966785356402,-0.05023218691349,0.06839819252491]],[[0.0090464567765594,0.12628622353077,-0.028926448896527],[-0.028166992589831,-0.034288678318262,0.053861532360315],[0.066741734743118,0.041194342076778,-0.011038096621633]],[[0.024405913427472,-0.0067918309941888,0.13255102932453],[-0.10620906203985,0.074656412005424,0.0048883962444961],[-0.016137370839715,-0.033650752156973,-0.070065826177597]],[[0.0012238493654877,-0.037061143666506,0.021730935201049],[0.051307201385498,0.06406494230032,0.13031031191349],[-0.1471604257822,-0.10357218235731,-0.074516579508781]],[[0.10669182986021,0.075228035449982,0.067820847034454],[0.070964947342873,-0.059209477156401,-0.0087121101096272],[-0.13808317482471,0.024993095546961,0.11588428914547]],[[0.061706330627203,-0.017382428050041,0.075671434402466],[-0.041704095900059,-0.030373211950064,0.060677461326122],[-0.036313775926828,0.0082042813301086,-0.040688283741474]],[[-0.024023503065109,0.055513922125101,0.090880043804646],[-0.006361732725054,0.10635093599558,-0.062238529324532],[-0.19306898117065,0.10017527639866,0.11162804067135]],[[0.012857309542596,0.036466404795647,-0.041010480374098],[-0.1166989132762,-0.17437919974327,-0.063170813024044],[-0.064188048243523,-0.099616691470146,0.070754632353783]],[[-0.012953665107489,-0.022287331521511,-0.068996980786324],[-0.019787443801761,-0.074643604457378,0.0095469551160932],[-0.081131227314472,-0.02717025578022,0.11515067517757]],[[0.17163369059563,0.078106828033924,0.028932960703969],[0.1070638820529,0.030498081818223,0.078712739050388],[-0.071513816714287,-0.066186301410198,-0.029509704560041]],[[0.043942116200924,-0.024866383522749,0.076007708907127],[0.049201928079128,0.020160432904959,-0.020366653800011],[0.00183890608605,-0.0029396994505078,0.1216854378581]],[[-0.065288335084915,-0.078373536467552,-0.019279211759567],[0.028050504624844,0.0083568189293146,0.030694354325533],[-0.098435118794441,-0.086730062961578,-0.082587726414204]],[[0.049712512642145,0.11682445555925,-0.012731130234897],[0.10402988642454,0.030275765806437,0.16750091314316],[-0.038989700376987,0.010286868549883,-0.014430003240705]],[[-0.10532362014055,-0.012640533968806,-0.017657505348325],[0.1156208589673,-0.032481268048286,-0.12531153857708],[0.042417742311954,0.055758718401194,-0.088505581021309]],[[-0.03994358330965,0.0016606367425993,-0.00026501680258662],[-0.10047115385532,-0.11506306380033,0.12427116930485],[-0.032787971198559,0.066357895731926,0.058774001896381]],[[-0.14186137914658,0.12618860602379,-0.12626734375954],[0.091134168207645,0.036455571651459,-0.093909345567226],[0.15187315642834,0.16729664802551,0.17106507718563]],[[-0.069051027297974,0.045391980558634,0.042181592434645],[-0.056878536939621,0.001395836356096,-0.0069677527062595],[-0.14713218808174,-0.018262354657054,-0.03791918605566]],[[-0.0022585256956518,0.03627921640873,-0.0093575483188033],[-0.066391505300999,-0.10144556313753,-0.027482707053423],[-0.032311700284481,0.059724159538746,0.023217100650072]],[[-0.055783033370972,-0.0080831982195377,0.022492572665215],[-0.025140378624201,-0.031378425657749,0.039879214018583],[0.030137011781335,-0.020476011559367,-0.091590754687786]],[[-0.044103376567364,-0.036234483122826,-0.013493564911187],[-0.04809495806694,0.0010922406800091,-0.096324630081654],[0.072263278067112,-0.0040218704380095,0.033251401036978]],[[-0.01186175365001,0.010811859741807,-0.024308508262038],[0.039553642272949,-0.02933556586504,0.038492932915688],[0.019123433157802,0.060985662043095,0.12934474647045]],[[-0.041182171553373,0.14741268754005,0.0035920697264373],[-0.13581517338753,0.092103131115437,-0.026103515177965],[-0.14607337117195,0.071064963936806,-0.013478085398674]],[[-0.076393902301788,0.077897615730762,0.12815898656845],[0.03217763453722,0.064735554158688,0.14729532599449],[-0.20515623688698,-0.11050987243652,-0.079117253422737]],[[-0.043543983250856,0.016057573258877,-0.098575875163078],[0.0051849805749953,0.019453890621662,-0.072474293410778],[0.052262328565121,-0.010112174786627,0.079196318984032]],[[-0.012331211008132,0.017889088019729,0.034967724233866],[0.19157899916172,0.099274024367332,0.093740992248058],[-0.074864521622658,0.0087531488388777,-0.10137610882521]],[[-0.031689804047346,-0.048330672085285,-0.1085774153471],[-0.07729659229517,0.07635722309351,0.0081362202763557],[-0.03832894936204,-0.058825135231018,0.018902977928519]],[[0.0118686882779,-0.031780865043402,0.017156314104795],[-0.069621555507183,-0.06890993565321,-0.085357047617435],[-0.054796680808067,0.016317363828421,0.053260833024979]],[[-0.13896438479424,0.02794087678194,-0.015047760680318],[-0.011746332980692,-0.026484558358788,0.0075608002953231],[-0.12854088842869,-0.00087906332919374,0.14198544621468]],[[0.021083360537887,-0.13701629638672,-0.12804459035397],[0.069149181246758,0.0064916522242129,-0.064811371266842],[0.18503215909004,0.02374585904181,-0.021739929914474]],[[0.073283463716507,-0.085624694824219,0.085183225572109],[-0.12209840863943,-0.047609876841307,-0.087173312902451],[-0.036635965108871,0.017240196466446,-0.10602109879255]],[[0.053873550146818,0.12496990710497,-0.047524459660053],[-0.055098328739405,0.0024441857822239,0.023555092513561],[0.065897896885872,-0.022870456799865,-0.019071584567428]],[[0.093401454389095,-0.13195717334747,0.01072418410331],[0.073224298655987,-0.060705740004778,0.12629270553589],[-0.038114920258522,0.035676971077919,-0.029943788424134]],[[0.015556441619992,-0.033663250505924,-0.0063333832658827],[-0.004388861823827,-0.15069809556007,-0.0053612045012414],[0.070048168301582,-0.014279931783676,-0.052263386547565]],[[-0.047316577285528,-0.049003254622221,0.060657903552055],[-0.046405903995037,0.14563101530075,0.073511987924576],[-0.17118418216705,0.18140561878681,0.12576103210449]],[[-0.0088532445952296,0.075352787971497,-0.032261978834867],[-0.0047925538383424,0.13822712004185,0.06210982427001],[-0.15309730172157,-0.085819035768509,0.0087251467630267]]],[[[0.0029569908510894,-0.12634845077991,0.12376814335585],[0.1014923080802,0.039545089006424,0.00060244026826695],[0.016995804384351,-0.055269178003073,-0.0099133895710111]],[[0.052421253174543,0.047450583428144,0.10979793220758],[0.23440663516521,0.0074308314360678,0.023417051881552],[-0.0018859980627894,0.1076831817627,-0.024920631200075]],[[0.0092238942161202,-0.02899007499218,0.067583978176117],[0.10779057443142,0.039981342852116,0.047795545309782],[-0.052775342017412,-0.008997998200357,0.038683284074068]],[[-0.031840160489082,-0.068374820053577,0.051177740097046],[-0.074274852871895,-0.014281750656664,0.041857372969389],[0.0027706767432392,-0.11521900445223,-0.21910026669502]],[[0.09148445725441,0.024073412641883,-0.088568389415741],[-0.099979542195797,-0.025200502946973,-0.10793981701136],[-0.076433941721916,-0.016731314361095,-0.021757168695331]],[[0.055262017995119,0.081673160195351,-0.11122401058674],[0.11848310381174,-0.14366787672043,-0.13194128870964],[-0.14863541722298,0.092695191502571,0.13095469772816]],[[-0.024956421926618,-0.041683178395033,0.036796592175961],[0.35194125771523,0.12003897875547,-0.022370748221874],[0.10352094471455,0.14868932962418,0.16275672614574]],[[-0.11745523661375,0.056706424802542,0.052746638655663],[-0.23734223842621,-0.055694699287415,0.10271167010069],[-0.0040023876354098,0.047965697944164,0.20880423486233]],[[-0.037281554192305,0.050699304789305,0.053648635745049],[-0.025809749960899,0.062150049954653,-0.17591221630573],[-0.12544772028923,0.0038361800834537,0.088517412543297]],[[-0.026784727349877,-0.004494528286159,-0.093885608017445],[-0.070433303713799,-0.030701665207744,-0.044483069330454],[-0.13528996706009,0.13154102861881,-0.040327910333872]],[[-0.064125344157219,0.041186384856701,-0.070697903633118],[0.14837741851807,0.11207086592913,-0.085231423377991],[-0.15475445985794,-0.15198780596256,-0.028774194419384]],[[0.17102190852165,0.064396448433399,-0.015249476768076],[-0.062034480273724,-0.088597327470779,0.0043845516629517],[-0.044701110571623,-0.041427135467529,0.060207791626453]],[[-0.025006704032421,-0.049758441746235,-0.11796163022518],[0.047937326133251,-0.0086828144267201,0.015399046242237],[-0.11699459701777,-0.090690992772579,-0.019882764667273]],[[-0.089037381112576,-0.13698214292526,-0.14161752164364],[-0.17594675719738,-0.15024769306183,-0.25969436764717],[0.10512932389975,0.1496552079916,-0.064945727586746]],[[-0.061503119766712,0.096843004226685,0.13337157666683],[-0.076961509883404,0.020244097337127,0.1058047786355],[0.15973699092865,0.0060003204271197,0.0020107708405703]],[[0.19550225138664,0.030814345926046,0.0013553047319874],[0.051758699119091,-0.084268234670162,-0.087923921644688],[0.1600461602211,-0.062392186373472,-0.063884250819683]],[[-0.10448449850082,-0.084832616150379,0.21893784403801],[-0.045008212327957,-0.013142784126103,-0.077262818813324],[0.058388017117977,-0.029155725613236,-0.017380084842443]],[[0.051949348300695,0.1652234941721,-0.021592305973172],[0.046586394309998,0.12555566430092,0.14936004579067],[0.10327423363924,0.16549451649189,0.078072004020214]],[[-0.13148069381714,0.16464245319366,0.22496098279953],[-0.12536412477493,-0.10528495162725,-0.11175931245089],[-0.10842404514551,-0.072228878736496,-0.18553249537945]],[[-0.073485925793648,0.036756303161383,0.062762297689915],[-0.04401983320713,-0.055164691060781,0.14719869196415],[-0.076877772808075,-0.086829654872417,0.21623283624649]],[[0.0085468590259552,-0.058176640421152,-0.054420311003923],[-0.055583275854588,0.0069045717827976,0.1167426481843],[-0.12193815410137,-0.15152278542519,-0.070967689156532]],[[0.13183709979057,-0.006338270381093,-0.057628843933344],[0.026293680071831,-0.09324286878109,-0.074064344167709],[0.027282025665045,0.074346102774143,-0.15126492083073]],[[-0.16688714921474,-0.15167720615864,-0.19455425441265],[-0.12009758502245,0.0079067656770349,0.086429096758366],[-0.12657107412815,0.18272888660431,-0.068888336420059]],[[0.023417454212904,0.029347123578191,-0.036731049418449],[0.16757334768772,-0.10827945172787,-0.079344138503075],[-0.14944532513618,-0.076111756265163,-0.10187654197216]],[[0.050827961415052,0.15718333423138,0.22365047037601],[-0.011779327876866,-0.066534399986267,-0.16935211420059],[0.16222797334194,0.024708116427064,0.065453663468361]],[[0.034502688795328,0.017401164397597,-0.043199118226767],[0.080211699008942,0.063971988856792,-0.10630894452333],[-0.06053926050663,-0.024665707722306,0.00076010060729459]],[[-0.1082306727767,-0.035913269966841,-0.014527366496623],[0.24527876079082,0.066269107162952,-0.086705356836319],[-0.15765127539635,0.01112250238657,0.13313591480255]],[[-0.074022673070431,-0.062746696174145,0.2289883941412],[0.11402502655983,0.037062246352434,0.027749130502343],[0.06859664618969,-0.036158952862024,-0.14656917750835]],[[-0.32094851136208,-0.15913504362106,-0.011039067991078],[0.10990323126316,0.055650781840086,-0.050948418676853],[0.059686843305826,-0.15446312725544,-0.086085140705109]],[[-0.0094804875552654,0.19145973026752,0.29140523076057],[0.045446962118149,-0.25509369373322,0.017184235155582],[-0.014497484080493,0.057121451944113,-0.098550207912922]],[[0.028313366696239,-0.037423606961966,-0.085599809885025],[-0.10193636268377,-0.036019627004862,0.076645858585835],[0.03719786554575,-0.17370228469372,-0.24774658679962]],[[0.020521787926555,0.057953421026468,0.096710540354252],[0.018384970724583,0.0018975816201419,0.02311784774065],[0.19118767976761,-0.05913420766592,-0.021199323236942]],[[0.096790984272957,-0.075680337846279,0.058601219207048],[-0.13091187179089,-0.031304717063904,0.019223177805543],[0.087864421308041,0.13163359463215,0.17639510333538]],[[-0.22653180360794,0.041385918855667,0.046081345528364],[-0.053946457803249,-0.09710506349802,-0.0098430048674345],[0.048006776720285,0.015934243798256,0.036688506603241]],[[0.09789264947176,-0.012027328833938,-0.20272427797318],[0.099275179207325,-0.0072757634334266,0.0084291631355882],[-0.072436191141605,-0.05939119681716,-0.11879347264767]],[[0.082307226955891,0.1588124781847,0.13107123970985],[-0.13007648289204,0.0020255853887647,0.099494487047195],[-0.010205653496087,-0.10440424084663,-0.031471695750952]],[[-0.019411416724324,-0.015590498223901,-0.14142400026321],[0.10381116718054,0.10729705542326,0.14806668460369],[-0.079274900257587,-0.085105672478676,0.081195667386055]],[[-0.045484721660614,0.0024152593687177,-0.067863836884499],[0.033731620758772,-0.0028474638238549,-0.065166853368282],[-0.10347648710012,-0.28379526734352,0.046520505100489]],[[-0.21948359906673,-0.17129692435265,-0.12636561691761],[0.33549031615257,0.17367668449879,-0.20942676067352],[-0.12742325663567,0.099593013525009,-0.061559066176414]],[[0.059349574148655,0.025094319134951,-0.10151804238558],[-0.076079629361629,0.030268738046288,0.23875191807747],[-0.033457580953836,-0.17868214845657,0.038742002099752]],[[0.059494152665138,-0.086736917495728,-0.053282048553228],[-0.020575977861881,-0.0063827186822891,-0.050771772861481],[-0.13135519623756,0.044016916304827,-0.036176674067974]],[[0.0062138983048499,0.051609586924314,0.022570822387934],[-0.048190414905548,-0.0026272805407643,-0.092387013137341],[0.21989274024963,0.028075374662876,0.016753144562244]],[[0.026007406413555,-0.15815553069115,-0.058211892843246],[0.059864081442356,0.018953358754516,0.0042699030600488],[-0.037457067519426,-0.075815908610821,-0.13477294147015]],[[-0.0010116117773578,0.015315691940486,0.025520293042064],[-0.027089068666101,-0.040910247713327,-0.077417500317097],[-0.067410044372082,-0.1561628729105,-0.06409066170454]],[[0.084270641207695,0.02494609169662,-0.056931149214506],[-0.11994061619043,0.064519934356213,0.10943153500557],[0.018310625106096,0.0036794836632907,0.026929277926683]],[[0.13303500413895,0.075472511351109,0.16453719139099],[-0.082548141479492,-0.1797007471323,-0.15623824298382],[-0.010183289647102,0.029144970700145,0.022514212876558]],[[-0.035367012023926,0.064347855746746,-0.10689265280962],[0.016786105930805,-0.10778118669987,-0.096918985247612],[-0.021622467786074,-0.13237282633781,-0.077226929366589]],[[-0.048481117933989,0.096098862588406,-0.10807363688946],[-0.16177900135517,0.043901011347771,-0.0064454777166247],[0.15290722250938,0.016839489340782,-0.089054718613625]],[[-0.059087295085192,0.017437543720007,-0.23422430455685],[0.068704716861248,0.06552542001009,0.23731663823128],[-0.094248861074448,-0.13340063393116,-0.02336204610765]],[[-0.24980247020721,-0.070369184017181,-0.12605644762516],[-0.069130964577198,-0.14489595592022,-0.083328902721405],[0.058457221835852,0.15324276685715,0.0067780208773911]],[[-0.17155115306377,-0.2012926787138,0.17153643071651],[0.068126440048218,-0.092493936419487,-0.1065179258585],[0.0076221800409257,0.021567855030298,0.14649739861488]],[[0.066700860857964,0.030629247426987,0.10433955490589],[0.012569349259138,-0.012337451800704,0.06304506957531],[-0.0045368750579655,-0.023573752492666,-0.10527947545052]],[[0.0089753940701485,-0.0083224000409245,0.015021404251456],[-0.0031218912918121,0.027210131287575,-0.03483409434557],[-0.058606900274754,-0.087310880422592,-0.11588518321514]],[[0.048975639045238,0.059412237256765,0.09039881080389],[-0.0057161059230566,0.023808805271983,0.014691831544042],[0.0816266015172,0.11743178963661,0.047125354409218]],[[0.10177024453878,-0.043137211352587,-0.090413555502892],[0.097314901649952,0.13426867127419,-0.0087075596675277],[0.018129535019398,-0.17034101486206,-0.063595414161682]],[[-0.0016020536422729,-0.06514085829258,0.012309871613979],[0.1214404553175,-0.076720610260963,-0.078053005039692],[0.14247883856297,0.18977573513985,0.024056788533926]],[[-0.044926967471838,0.054659500718117,-0.059490084648132],[0.17384365200996,0.096241801977158,-0.0021340502426028],[0.079681783914566,-0.11990423500538,-0.10042141377926]],[[-0.011718499474227,-0.019670072942972,0.015435303561389],[-0.12296813726425,-0.13141171634197,-0.15793401002884],[-0.10163449496031,-0.27253794670105,-0.24349687993526]],[[-0.073953829705715,-0.17663368582726,-0.23321188986301],[-0.10517019033432,-0.022475736215711,0.067909255623817],[-0.0036526506301016,-0.0096399644389749,-0.070716202259064]],[[0.1410271525383,0.17881086468697,0.19607636332512],[-0.062582656741142,-0.13239409029484,-0.13216543197632],[-0.057459078729153,0.076606452465057,-0.018903899937868]],[[-0.093209572136402,-0.080334305763245,-0.016778582707047],[0.076752051711082,0.037906792014837,-0.071489043533802],[0.096295893192291,0.049406353384256,-0.012128181755543]],[[-0.2772125005722,-0.0097286654636264,0.11223251372576],[-0.058784212917089,0.0011415897170082,0.018280664458871],[-0.26854529976845,-0.087743997573853,-0.013281500898302]],[[-0.036517433822155,-0.081747218966484,-0.088117346167564],[0.093145184218884,0.098344877362251,0.0063467491418123],[0.024771781638265,0.03943108394742,-0.038658656179905]],[[0.04536310210824,0.048178244382143,0.15749981999397],[0.15937553346157,-0.024358049035072,-0.11906361579895],[0.050683561712503,0.062895737588406,0.02270769700408]],[[-0.15847036242485,-0.17378842830658,-0.2480149269104],[-0.086342208087444,0.077825859189034,0.033972974866629],[0.022979220375419,0.049363326281309,0.063177332282066]],[[-0.12397088110447,0.041224610060453,0.012646046467125],[-0.054974108934402,0.015112828463316,-0.011862539686263],[-0.033959534019232,0.17384620010853,0.066274903714657]],[[0.15875937044621,0.022976061329246,-0.057623561471701],[-0.10258544236422,-0.0054622273892164,-0.13201551139355],[-0.023172685876489,-0.013241704553366,-0.053275737911463]],[[-0.097336567938328,0.016091147437692,-0.015992915257812],[0.099156461656094,-0.0031511541455984,-0.041209060698748],[-0.025316495448351,-0.031233737245202,-0.03433271497488]],[[0.023710096254945,-0.0042807725258172,0.015365646220744],[-0.16492147743702,0.050534952431917,0.12085948139429],[-0.00064089137595147,-0.041330754756927,-0.36131557822227]],[[-0.12855778634548,-0.048957325518131,0.036737900227308],[-0.0024173981510103,0.043445117771626,0.21502286195755],[0.080248951911926,-0.0067928074859083,-0.17681691050529]],[[0.05482105910778,0.052845828235149,-0.032488934695721],[-0.11312481760979,0.019514016807079,0.089275166392326],[-0.072775661945343,-0.0029700959566981,-0.1876584738493]],[[-0.18540339171886,-0.030469065532088,0.15730331838131],[-0.037783853709698,-0.11300609260798,0.022018671035767],[-0.10204131156206,-0.03479515388608,0.10916571319103]],[[-0.010639691725373,-0.025190392509103,0.024634568020701],[-0.041030414402485,-0.13958756625652,-0.083567500114441],[0.009160085581243,-0.0024282732047141,0.043206959962845]],[[0.11126402765512,0.010506422258914,-0.06289217621088],[0.019695254042745,0.1262144446373,0.17144918441772],[-0.14160062372684,-0.096090607345104,-0.067739114165306]],[[0.26427471637726,0.082408554852009,-0.16037850081921],[-0.03162007778883,-0.015410291962326,-0.035180598497391],[-0.018907267600298,-0.018747439607978,-0.066705167293549]],[[0.10913015156984,0.14019554853439,0.064079701900482],[-0.0089440606534481,-0.15501122176647,-0.0058975424617529],[0.013240196742117,-0.013263803906739,-0.11866832524538]],[[-0.052963279187679,-0.26756137609482,-0.012271178886294],[-0.067734777927399,-0.061180077493191,0.015236547216773],[0.056830663233995,-0.095106244087219,-0.024234525859356]],[[-0.0018145112553611,0.0075402269139886,-0.035314403474331],[-0.035470250993967,-0.20567338168621,-0.22348310053349],[-0.040285792201757,-0.043702837079763,-0.057212188839912]],[[0.20600712299347,0.17725473642349,0.0059269848279655],[-0.10592789947987,-0.072430349886417,-0.13173781335354],[0.10826782137156,0.2902794778347,-0.015674188733101]],[[-0.10476498305798,0.0078111798502505,-0.065368331968784],[-0.12570321559906,-0.13190957903862,-0.14214549958706],[-0.081215038895607,-0.073997989296913,-0.053753457963467]],[[-0.12937122583389,-0.0024011447094381,-0.15603074431419],[0.17843301594257,0.042390797287226,-0.062902852892876],[0.083634875714779,-0.14398966729641,0.047630224376917]],[[0.055251743644476,0.11766338348389,-0.16884933412075],[-0.070441514253616,-0.13209772109985,0.059815559536219],[0.07019080221653,-0.11085683852434,-0.043610602617264]],[[-0.046374708414078,0.00031228412990458,-0.083933979272842],[-0.055782347917557,-0.15128995478153,0.020412901416421],[-0.085030443966389,0.068121522665024,0.17352496087551]],[[-0.067997984588146,-0.025372803211212,0.052692130208015],[0.040124166756868,0.047825131565332,0.052941121160984],[-0.23809154331684,-0.0039076413959265,0.0079983929172158]],[[0.13418810069561,0.24606867134571,-0.039532110095024],[-0.16358721256256,-0.10008930414915,0.0190992616117],[0.03752014040947,0.054747052490711,-0.068886250257492]],[[0.08001496642828,-0.10217490047216,-0.033308397978544],[-0.12300885468721,-0.085614830255508,-0.03343452885747],[-0.058154653757811,-0.035875838249922,-0.077309809625149]],[[0.031538750976324,0.06636855751276,-0.0020917833317071],[0.14372284710407,-0.083681546151638,-0.14532718062401],[-0.016710346564651,0.004032074008137,0.13178937137127]],[[0.24207159876823,-0.017619842663407,-0.086391024291515],[0.17149285972118,0.086751334369183,0.040772203356028],[0.20512099564075,0.075693145394325,0.09109553694725]],[[-0.043540131300688,-0.086303539574146,0.074716992676258],[0.029432568699121,0.085355453193188,-0.22134444117546],[0.096365407109261,-0.11890816688538,0.11580868810415]],[[-0.030078433454037,-0.08467174321413,-0.13998159766197],[-0.041158005595207,0.018868118524551,0.0075742439366877],[0.042550001293421,0.083548747003078,0.073443733155727]],[[-0.017543544992805,0.069519340991974,-0.045725885778666],[0.066619604825974,-0.065973848104477,-0.2932850420475],[0.29673781991005,0.032331500202417,0.27900785207748]],[[0.059834700077772,0.047789558768272,0.018050758168101],[-0.2191154062748,-0.19726030528545,-0.11537417024374],[-0.011798144318163,-0.03365545719862,-0.014635260216892]],[[0.08268653601408,0.073544688522816,0.099515944719315],[0.19852744042873,0.29433616995811,-0.083263263106346],[0.031152531504631,-0.073033027350903,-0.035622227936983]],[[-0.093878619372845,-0.034524794667959,-0.030384000390768],[0.064108587801456,0.032679088413715,0.065627373754978],[0.089169584214687,-0.034103937447071,0.0088281519711018]],[[-0.093902342021465,-0.091986872255802,-0.16088709235191],[-0.066612392663956,-0.075093433260918,-0.081862710416317],[-0.069188892841339,0.18358035385609,0.23351255059242]],[[-0.037064179778099,0.17001101374626,0.32461470365524],[0.066365294158459,0.01231896225363,-0.081677854061127],[-0.024895720183849,-0.069939501583576,-0.0044996626675129]],[[-0.047940962016582,0.048368375748396,-0.053290687501431],[0.065232783555984,0.10149370878935,0.025581303983927],[-0.055351924151182,0.053583778440952,-0.036649953573942]],[[-0.028747595846653,0.065486282110214,0.13596628606319],[-0.052527014166117,-0.14212477207184,-0.11310479044914],[0.039287161082029,-0.16036275029182,-0.11220330744982]],[[-0.001846781000495,0.16441048681736,0.049203097820282],[-0.0079408371821046,0.21162174642086,-0.0016392020042986],[0.034243918955326,0.017491713166237,-0.079359620809555]],[[-0.0050285989418626,-0.080928958952427,-0.091051943600178],[-0.038518182933331,0.05117242410779,0.031881522387266],[-0.053820833563805,-0.024874063208699,0.10111308097839]],[[0.12271467596292,0.08285066485405,-0.089985877275467],[0.061106327921152,-0.11800169944763,-0.027773819863796],[-0.17788249254227,-0.037487186491489,0.020691392943263]],[[0.0041861683130264,0.058908879756927,0.08125851303339],[-0.0981714874506,0.020515998825431,0.064903661608696],[0.16505855321884,-0.10028260201216,-0.093763262033463]],[[0.04314037784934,0.14514015614986,0.039383929222822],[0.15885923802853,0.18924556672573,0.076829440891743],[-0.014248923398554,-0.021426193416119,-0.039760958403349]],[[-0.019173892214894,0.00057855201885104,0.072919227182865],[-0.13946868479252,-0.28458577394485,-0.19781041145325],[0.34802913665771,0.021052196621895,0.032175965607166]],[[-0.13322009146214,0.010117143392563,-0.054941594600677],[-0.0087821092456579,-0.06796370446682,-0.061566781252623],[-0.14763560891151,-0.013850037939847,0.13512156903744]],[[-0.12147853523493,0.075531825423241,0.10166165232658],[0.036215968430042,0.081055954098701,-0.17102380096912],[-0.1220566406846,0.091502226889133,0.021058099344373]],[[-0.061519078910351,-0.046355716884136,-0.064549677073956],[-0.080508403480053,-0.057002924382687,0.01274583209306],[0.0080978330224752,-0.058663967996836,0.053385708481073]],[[0.094931915402412,-0.16960510611534,-0.18365977704525],[-0.046000428497791,-0.087714478373528,-0.23421870172024],[0.19727028906345,0.047727931290865,-0.13001607358456]],[[-0.01068015396595,0.05158644169569,-0.11230204254389],[-0.20624633133411,-0.059832140803337,-0.1493923664093],[0.28234601020813,0.19828808307648,0.22482052445412]],[[0.035128049552441,-0.059555951505899,-0.10247460007668],[0.078302592039108,-0.03919580206275,0.089085124433041],[0.12648949027061,0.17168015241623,-0.20793128013611]],[[-0.085593275725842,-0.055688235908747,-0.010317528620362],[0.056157603859901,0.0097732283174992,-0.08610025793314],[0.0046518594026566,-0.080494947731495,-0.14393459260464]],[[0.078488290309906,0.063839957118034,-0.064173065125942],[-0.068495206534863,0.077964499592781,0.25821363925934],[-0.1120927259326,-0.050158049911261,0.26533395051956]],[[-0.0024403997231275,0.2209020704031,0.17879861593246],[-0.037111282348633,-0.049444120377302,-0.02430160716176],[0.11489824205637,0.022585120052099,-0.071899473667145]],[[0.069278724491596,-0.13262560963631,-0.020221468061209],[0.032707802951336,-0.080680467188358,0.18726052343845],[0.012560329400003,0.068725183606148,0.2180353552103]],[[0.014952788129449,-0.086158357560635,-0.079437740147114],[-0.01475559361279,-0.08122219145298,-0.13234987854958],[0.13787280023098,-0.0004622784035746,0.031473107635975]],[[-0.042293939739466,-0.18454383313656,-0.071066670119762],[0.10293370485306,-0.03990563377738,-0.0037550127599388],[0.046072576195002,-0.022698758170009,-0.10010174661875]],[[-0.026115128770471,-0.120306186378,-0.058721449226141],[0.021519258618355,0.11494234204292,0.14111010730267],[0.27070331573486,0.16751569509506,-0.0051129986532032]],[[-0.1111571341753,-0.12317658215761,-0.11123190820217],[0.32848426699638,-0.017048880457878,-0.026889964938164],[-0.0032085762359202,-0.0089513827115297,-0.2447783946991]],[[-0.098516091704369,0.059323560446501,-0.070750407874584],[0.077744506299496,0.039664037525654,0.011848597787321],[-0.14579689502716,-0.1308710873127,-0.03455226495862]],[[0.21677102148533,0.087423570454121,0.044211450964212],[0.0028770279604942,0.019991664215922,-0.10825951397419],[0.12939018011093,0.09068638831377,-0.011062906123698]],[[-0.25137406587601,-0.22878636419773,-0.049356989562511],[-0.21503567695618,-0.043380279093981,-0.020411198958755],[-0.062168192118406,-0.0080823125317693,0.15174099802971]],[[0.076470099389553,-0.096940986812115,-0.13760276138783],[0.10740869492292,0.04912032186985,0.010400513187051],[0.014012557454407,-0.083099216222763,-0.046130269765854]],[[0.001200629863888,-0.031055150553584,0.096500903367996],[-0.044055569916964,-0.16951014101505,-0.10738841444254],[0.04430165886879,-0.21027174592018,-0.11148115247488]],[[-0.064915738999844,-0.089996725320816,-0.018240148201585],[0.20929583907127,0.24852053821087,0.0186478625983],[0.081664495170116,0.036408163607121,0.030780432745814]],[[0.17849446833134,0.053803905844688,-0.085225529968739],[0.091947682201862,0.00076989451190457,0.10872274637222],[0.013819499872625,0.073522977530956,-0.1873244792223]],[[-0.18488456308842,0.064310804009438,0.12243834137917],[-0.078907661139965,0.0040280465036631,-0.053868263959885],[-0.036997228860855,-0.16610193252563,-0.085454791784286]],[[0.061045441776514,-0.087727397680283,-0.26684063673019],[-0.089388430118561,-0.028638128191233,-0.17625848948956],[-0.13112780451775,-0.11860940605402,0.11258727312088]],[[0.023413078859448,0.013061414472759,0.043144356459379],[0.13025361299515,0.11185378581285,0.04635414108634],[0.028683856129646,-0.082237541675568,-0.19472232460976]]],[[[0.011848399415612,-0.0047088828869164,-0.17840996384621],[-0.0076567674987018,0.09834861010313,0.10764457285404],[0.014025061391294,0.069667458534241,0.023385588079691]],[[0.10005756467581,-0.074333637952805,-0.074316740036011],[-0.095634005963802,-0.17220625281334,-0.13721041381359],[0.086749851703644,0.19997657835484,0.050500489771366]],[[0.089793212711811,-0.0063681788742542,-0.041408460587263],[0.055215284228325,0.039429690688848,0.070870012044907],[-0.022890765219927,0.096545688807964,0.040153499692678]],[[-0.10228371620178,-0.086588613688946,0.038683623075485],[0.0022479479666799,-0.26483818888664,-0.011821217834949],[0.051787242293358,0.010098529048264,-0.030363015830517]],[[0.095781296491623,0.042111333459616,-0.078958600759506],[0.094574920833111,-0.015123296529055,-0.074384719133377],[-0.087911814451218,0.13813085854053,0.045956701040268]],[[-0.03228098154068,0.045416180044413,0.02148206345737],[-0.16322304308414,-0.13898155093193,-0.0015068536158651],[0.24388629198074,-0.021762546151876,-0.036700773984194]],[[0.071300536394119,-0.024663720279932,-0.099690191447735],[0.054981850087643,0.11500138789415,-0.18192213773727],[-0.082166261970997,-0.016075225546956,-0.20928260684013]],[[0.051384445279837,-0.030421515926719,-0.028671752661467],[0.031160101294518,-0.095312118530273,-0.11083678156137],[0.17491829395294,0.12048264592886,0.061971344053745]],[[-0.074289292097092,0.090441271662712,0.19760683178902],[-0.020454017445445,-0.14563439786434,-0.02052484638989],[0.017051136121154,-0.088880397379398,-0.16485604643822]],[[0.017185565084219,-0.046139501035213,-0.063251972198486],[-0.044435348361731,-0.059207551181316,-0.073187872767448],[-0.15685033798218,-0.0057444721460342,-0.043096378445625]],[[-0.043746814131737,0.041263327002525,0.095890931785107],[0.054066821932793,-0.044428691267967,0.038673646748066],[-0.051283862441778,-0.13177220523357,-0.076819464564323]],[[0.053611263632774,0.1136777177453,0.17699337005615],[0.042742501944304,0.14570865035057,0.1480005979538],[-0.0045084105804563,-0.01139972358942,-0.094393208622932]],[[-0.020217126235366,-0.10342438519001,-0.10775778442621],[0.016688551753759,0.074869371950626,0.12108379602432],[0.045914825052023,0.073108121752739,0.047621414065361]],[[-0.058593358844519,-0.19101858139038,-0.13362072408199],[-0.058403003960848,-0.0183080509305,-0.0024773734621704],[-0.033041644841433,-0.19567610323429,0.046557169407606]],[[-0.040361318737268,0.0015602639177814,0.011283800937235],[0.060690879821777,-0.0007081709918566,-0.092108331620693],[-0.011094029992819,-0.060941811650991,-0.10475086420774]],[[0.056404557079077,0.087264165282249,0.088148303329945],[0.0099100368097425,-0.003004583530128,-0.14080803096294],[-0.048572231084108,0.017935365438461,0.097945973277092]],[[-0.010546151548624,-0.037156410515308,0.054871328175068],[-0.067297995090485,-0.15465368330479,-0.0062051499262452],[-0.0560157969594,-0.034793753176928,0.097599714994431]],[[-0.037179719656706,0.040461696684361,0.0078433472663164],[-0.012854773551226,0.027243345975876,-0.030575037002563],[0.02756386063993,-0.022293958812952,0.034392725676298]],[[-0.08326194435358,0.0047261635772884,0.04925849661231],[-0.12014458328485,-0.072007179260254,-0.0085884546861053],[-0.060500156134367,-0.1062027066946,-0.16289179027081]],[[-0.050486844033003,0.10375355929136,0.060751762241125],[0.094762310385704,0.11299365758896,0.18374755978584],[-0.031901892274618,0.070531122386456,0.160949036479]],[[0.01942216604948,0.02289779111743,0.0011362334480509],[0.012653040699661,-0.16330580413342,-0.054262150079012],[-0.1351176649332,-0.081436447799206,-0.13582587242126]],[[0.17610386013985,0.11370805650949,-0.086954332888126],[0.021105527877808,0.0048010917380452,0.11760760098696],[-0.037646107375622,-0.17461259663105,-0.01370120421052]],[[-0.096054442226887,-0.040502432733774,0.048117827624083],[0.120206810534,-0.0025720768608153,-0.065132774412632],[-0.11456929892302,-0.098537839949131,-0.06091470271349]],[[-0.046170458197594,0.014029701240361,0.10754856467247],[0.014719246886671,-0.14937403798103,-0.064344555139542],[-0.04090354219079,0.077306874096394,0.077913708984852]],[[0.10896586626768,0.15872409939766,0.07599513977766],[-0.037792883813381,-0.10135066509247,0.026870984584093],[0.018001055344939,0.13546065986156,-0.041304361075163]],[[-0.072811484336853,0.0046387822367251,0.03302351385355],[-0.022366421297193,-0.1044499874115,-0.010750846005976],[-0.04969859868288,-0.14935718476772,0.068744644522667]],[[-0.10290624946356,0.075300619006157,-0.073396138846874],[-0.017755389213562,0.019522693008184,-0.16023914515972],[0.019897600635886,-0.16219842433929,-0.012520666234195]],[[-0.12210115790367,-0.064088955521584,-0.10306324064732],[-0.034883450716734,-0.075683683156967,0.16445170342922],[-0.11337622255087,-0.094561479985714,0.086703181266785]],[[-0.05861246958375,-0.19087827205658,-0.052961673587561],[-0.19480004906654,-0.087562426924706,0.070077165961266],[-0.12320282310247,-0.041798904538155,0.063034810125828]],[[-0.024539444595575,0.045998837798834,0.0088465344160795],[0.050054151564837,0.12884485721588,0.16325688362122],[0.16644132137299,0.099586211144924,-0.046639531850815]],[[-0.03410817310214,-0.098737627267838,-0.065374970436096],[-0.10154144465923,-0.08315010368824,-0.0051525882445276],[0.10500071197748,0.034199565649033,-0.11637205630541]],[[-0.028462201356888,0.19020517170429,0.050880175083876],[-0.0035024660173804,-0.05738503113389,-0.037981003522873],[0.009513913653791,0.12534731626511,-0.032381221652031]],[[0.063964642584324,-0.05559778958559,-0.10747098922729],[0.028968274593353,-0.031247803941369,0.094689466059208],[-0.036901276558638,-0.014378109946847,-0.16209203004837]],[[-0.16390313208103,0.044988941401243,0.13134083151817],[-0.092779748141766,-0.040242057293653,0.10619097203016],[-0.057196274399757,0.019316710531712,-0.032969005405903]],[[-0.0070793754421175,-0.054073318839073,-0.086324855685234],[-0.10056085884571,-0.083992801606655,-0.24856448173523],[0.0010567632270977,-0.10842573642731,-0.00056920322822407]],[[0.040126696228981,0.070669442415237,0.14702181518078],[-0.057608671486378,0.058080211281776,-0.014825899153948],[-0.022926911711693,-0.098042599856853,0.038492117077112]],[[0.060968328267336,0.12745748460293,-0.0028603069949895],[-0.050498653203249,-0.0046468880027533,-0.023822342976928],[-0.10940107703209,0.095712132751942,0.085255786776543]],[[-0.028046052902937,-0.10228348523378,-0.088234074413776],[-0.061129342764616,-0.062341555953026,-0.076625309884548],[-0.07134597748518,0.032045736908913,0.17813292145729]],[[-0.043238833546638,0.018671246245503,-0.11339116096497],[-0.00054077635286376,-0.22925592958927,-0.29881143569946],[0.061128813773394,0.025875905528665,0.00773138506338]],[[-0.0066769807599485,-0.054874625056982,0.16914486885071],[0.048301491886377,0.1631130874157,0.12148253619671],[-0.016146844252944,0.10317020863295,0.0028017943259329]],[[0.031115502119064,-0.054201319813728,-0.036683708429337],[-0.13148047029972,-0.027445502579212,0.017299426719546],[0.046825811266899,0.11555344611406,0.20265516638756]],[[0.14319632947445,0.12010408937931,0.13910794258118],[-0.034796308726072,0.027229942381382,0.16463565826416],[-0.025789953768253,-0.074375219643116,0.10107543319464]],[[-0.061129055917263,-0.07087729126215,-0.021449482068419],[-0.093091160058975,-0.045509144663811,0.14761854708195],[0.014049723744392,-0.086783833801746,-0.029130376875401]],[[-0.022942280396819,-0.00069648417411372,-0.0014363069785759],[-0.081024669110775,-0.16470630466938,-0.056197807192802],[0.0032552508637309,-0.044113039970398,-0.052698343992233]],[[0.028920015320182,-0.091994285583496,0.13656932115555],[-0.10074400901794,-0.054902099072933,0.12356273829937],[0.081891156733036,0.030553260818124,0.12737327814102]],[[-0.0065338904969394,-0.085773713886738,0.064794220030308],[-0.012473245151341,-0.049123477190733,0.1828637868166],[-0.0096495356410742,0.034600205719471,0.036754887551069]],[[0.096250288188457,0.012187229469419,0.074791334569454],[0.049235884100199,-0.075225695967674,0.020341424271464],[-0.14119502902031,-0.086696915328503,-0.10665702074766]],[[-0.095620393753052,-0.03938203305006,-0.10787331312895],[-0.054045684635639,-0.091456912457943,-0.0096847517415881],[0.016791131347418,-0.0058776829391718,-0.092987135052681]],[[0.05072284117341,0.18976955115795,-0.11608316004276],[0.088605388998985,0.1263512969017,0.26340559124947],[-0.024423798546195,-0.097591333091259,-0.12050042301416]],[[-0.19342675805092,-0.10727403312922,-0.049410659819841],[0.033658239990473,-0.31368979811668,-0.076362088322639],[-0.042939819395542,-0.041111625730991,-0.060445915907621]],[[-0.1254420876503,-0.089998081326485,0.20079629123211],[0.08075226098299,-0.15350651741028,0.072660878300667],[-0.033246818929911,-0.022532081231475,0.033576529473066]],[[-0.04842484369874,-0.12039998918772,-0.0074887457303703],[0.091247886419296,0.010582177899778,-0.065269909799099],[0.055954989045858,0.079964078962803,-0.039610266685486]],[[-0.060068033635616,-0.0035332038532943,-0.063856065273285],[-0.061592593789101,-0.090860180556774,-0.01733211055398],[0.025334959849715,-0.12236313521862,0.022355811670423]],[[0.19004648923874,0.00055430445354432,-0.019121935591102],[-0.016646593809128,-0.12420435249805,-0.064519375562668],[0.080891765654087,-0.034994889050722,-0.041460227221251]],[[0.024205151945353,0.010520811192691,-0.083778642117977],[-0.056777630001307,-0.014434354379773,0.097121320664883],[-0.16777990758419,-0.062080971896648,-0.030775923281908]],[[0.059532474726439,0.081410549581051,-0.021853057667613],[0.0092265103012323,-0.011758270673454,-0.0057572177611291],[0.13921213150024,-0.061019998043776,-0.031218713149428]],[[0.24103643000126,0.19255371391773,0.1113920211792],[0.21903379261494,0.065093375742435,0.02599148452282],[-0.0723876953125,0.10660783946514,0.018456298857927]],[[0.057786926627159,-0.027282156050205,-0.030826907604933],[-0.15927405655384,0.019266184419394,-0.1789331138134],[-0.08645536750555,-0.13270047307014,-0.12442315369844]],[[-0.045694962143898,-0.1040630787611,-0.067432962357998],[-0.16146019101143,-0.1025325730443,0.03541511297226],[-0.1357941031456,0.010722265578806,0.043074697256088]],[[-0.052775368094444,-0.027087820693851,0.016214048489928],[-0.050190441310406,0.016661569476128,0.066532149910927],[-0.092689074575901,0.013726516626775,0.064437203109264]],[[-0.10372366011143,0.0023970261681825,-0.0098723312839866],[-0.065271586179733,-0.032329142093658,0.09595663100481],[-0.09309134632349,-0.10901986807585,-0.14594887197018]],[[-0.01609624363482,-0.076009258627892,-0.10895761102438],[-0.18099494278431,-0.043226100504398,0.015653382986784],[-0.20734848082066,-0.071196116507053,0.042337868362665]],[[-0.042293228209019,-0.17340196669102,0.017197515815496],[-0.083207748830318,-0.010426101274788,0.032570518553257],[0.077439658343792,0.063717901706696,0.026497850194573]],[[0.18062414228916,0.22120444476604,0.2318219691515],[-0.032038688659668,-0.059267800301313,-0.091159410774708],[0.36544853448868,0.34039524197578,0.11863226443529]],[[0.10254696756601,-0.0025492396671325,-0.059477530419827],[0.0024886042810977,-0.081634722650051,-0.011011898517609],[0.18351593613625,-0.031437337398529,0.05745206028223]],[[-0.18317237496376,0.16051432490349,0.064330711960793],[0.018961414694786,0.058882426470518,0.021313913166523],[0.0045816372148693,0.048448365181684,-0.086383633315563]],[[0.16726180911064,-0.052035272121429,-0.099145576357841],[-0.0035009202547371,-0.056426126509905,-0.0096715986728668],[-0.02369219250977,-0.015450454317033,-0.12318517267704]],[[-0.02005142532289,-0.097642958164215,-0.10414071381092],[-0.080245472490788,-0.19457899034023,0.031164642423391],[-0.019741337746382,-0.013357286341488,-0.063518390059471]],[[-0.071181401610374,-0.10293509066105,-0.063401192426682],[-0.084685154259205,-0.029166102409363,-0.084125094115734],[0.085484400391579,0.012255706824362,0.016240524128079]],[[-0.050159826874733,0.0014576320536435,0.16009993851185],[0.051319543272257,0.058308981359005,0.1604570299387],[0.086503706872463,0.015790207311511,0.021856222301722]],[[0.078416712582111,0.11477985978127,0.027485521510243],[-0.011719891801476,-0.10706305503845,0.11218053847551],[0.20212237536907,-0.067443929612637,-0.084795065224171]],[[0.0024136444553733,0.048670180141926,-0.043127149343491],[-0.15179033577442,-0.14556935429573,-0.14273218810558],[-0.052764017134905,0.083214722573757,-0.035310637205839]],[[0.0017568439943716,-0.048600733280182,0.035875231027603],[-0.13608746230602,-0.078827418386936,-0.014217145740986],[-0.070200257003307,-0.036981444805861,-0.053604744374752]],[[0.0069826957769692,0.0092137381434441,0.0072820903733373],[0.0081578223034739,-0.013856493867934,0.014898876659572],[0.047336302697659,0.049177434295416,-0.037522234022617]],[[-0.086155034601688,0.012797249481082,0.067325636744499],[-0.069004155695438,-0.064695201814175,-0.012345541268587],[0.054073192179203,0.046639245003462,0.054637085646391]],[[0.13893359899521,-0.026801582425833,-0.04402219504118],[-0.0087651554495096,-0.045787211507559,0.1027330160141],[-0.096098162233829,-0.16491530835629,-0.091631889343262]],[[-0.059145648032427,-0.049951240420341,0.0064315763302147],[-0.038116849958897,0.075306266546249,0.0079140523448586],[-0.065340928733349,0.1726398319006,-0.010899202898145]],[[-0.04453244805336,-0.042222339659929,0.058501150459051],[-0.26839604973793,-0.14285290241241,-0.090473987162113],[0.0068719340488315,0.081021793186665,-0.098529770970345]],[[0.04078122600913,0.028009420260787,-0.060829896479845],[0.0040215644985437,-0.090086713433266,0.091770276427269],[-0.047335293143988,0.14015185832977,0.09044636040926]],[[-0.081002540886402,-0.088997721672058,-0.068131946027279],[-0.11968938261271,0.037642937153578,0.087963543832302],[-0.13560868799686,-0.058636747300625,-0.071004658937454]],[[-0.15748301148415,-0.0061938571743667,0.090507484972477],[0.065619006752968,-0.0076479720883071,-0.026794010773301],[-0.00033952028024942,-0.0063281208276749,-0.035885933786631]],[[0.018014362081885,0.2216545343399,0.10214184969664],[0.05796454846859,0.249572083354,-0.057891361415386],[-0.13197086751461,0.13604006171227,0.17212104797363]],[[0.092861205339432,-0.016814436763525,0.043823383748531],[0.0033953541424125,-0.098029069602489,-0.10866170376539],[0.25725322961807,0.18161456286907,0.036841697990894]],[[-0.018559649586678,-0.070810131728649,-0.056167367845774],[-0.037158098071814,-0.054770983755589,0.035137128084898],[0.0022458559833467,-0.047396503388882,0.036238517612219]],[[0.066979192197323,-0.080561682581902,-0.0057187103666365],[0.18915818631649,0.059068694710732,-0.31532165408134],[0.00044659190461971,0.10606303811073,-0.12541821599007]],[[0.17844769358635,0.095542512834072,0.074930422008038],[-0.17262269556522,-0.18050794303417,-0.018346836790442],[-0.035544872283936,-0.00058781285770237,0.065049819648266]],[[0.094973884522915,0.055395495146513,-0.074547320604324],[-0.15668632090092,-0.23784820735455,-0.14717271924019],[0.068569019436836,0.0015183588257059,-0.0096935117617249]],[[0.034319810569286,0.1672043800354,-0.03163293749094],[-0.10737657546997,-0.24827298521996,-0.10304368287325],[0.064086124300957,-0.026450365781784,0.0076933316886425]],[[0.04636899754405,-0.021659158170223,-0.10342712700367],[-0.096858568489552,-0.01884869672358,-0.066320471465588],[-0.17085064947605,0.058370549231768,0.2184244543314]],[[-0.10104274749756,0.049783919006586,-0.016307150945067],[-0.019901603460312,-0.0098199239000678,-0.084839269518852],[0.025052074342966,-0.08403243124485,-0.020816348493099]],[[-0.096370361745358,-0.079439617693424,-0.19254226982594],[-0.0071057216264307,-0.10063390433788,-0.14385493099689],[-0.043657906353474,0.013134652748704,0.064483322203159]],[[-0.076536558568478,-0.0035030110739172,0.016300613060594],[-0.13951475918293,-0.095569722354412,0.014533779583871],[-0.19036445021629,-0.15226164460182,0.036817904561758]],[[-0.027718665078282,0.095555163919926,0.079997733235359],[0.14940474927425,0.068464323878288,0.12618632614613],[-0.048044458031654,0.05016328021884,0.11100893467665]],[[0.031476784497499,0.055972564965487,0.06420911103487],[-0.0067465645261109,0.018495557829738,-0.025386840105057],[0.0048872800543904,-0.0081011578440666,0.04682245850563]],[[-0.012387666851282,0.022255405783653,-0.039436738938093],[0.017749682068825,-0.035979937762022,-0.0026904309634119],[0.11541704833508,-0.00017446352285333,0.031548794358969]],[[0.17778186500072,0.11648123711348,0.28486275672913],[0.23213455080986,-0.016142044216394,-0.12721785902977],[0.11341672390699,-0.043265696614981,-0.034325126558542]],[[-0.025755813345313,-0.09967627376318,-0.018223622813821],[-0.038026310503483,-0.17472399771214,-0.11633831262589],[-0.070107735693455,-0.07240579277277,-0.035137042403221]],[[0.0019293911755085,0.017909843474627,-0.052869476377964],[-0.10235767811537,-0.13177338242531,-0.022861694917083],[-0.10184121876955,0.044850509613752,0.11028439551592]],[[0.10530892759562,-0.027071252465248,0.1273206025362],[0.19363775849342,0.1037013605237,0.044823933392763],[-0.063541598618031,-3.890030347975e-05,-0.05170164629817]],[[-0.070484504103661,0.010743991471827,0.056687664240599],[0.1033910214901,-0.047158431261778,-0.0083926841616631],[0.023525945842266,-0.085714906454086,-0.070494212210178]],[[0.018719570711255,0.054332591593266,-0.15944595634937],[-0.00042936787940562,0.05837718769908,0.12175535410643],[-0.0562495701015,0.028627954423428,-0.0047795409336686]],[[-0.012366166338325,0.0094752470031381,0.014611688442528],[-0.018003819510341,0.0052255489863455,0.051178000867367],[0.29954507946968,0.11020602285862,-0.11596345901489]],[[0.070030957460403,0.047783304005861,-0.11471342295408],[0.016922762617469,0.036735128611326,-0.054198376834393],[0.023203622549772,-0.067123018205166,-0.074379935860634]],[[-0.024743542075157,0.00053631694754586,0.055171027779579],[-0.09104872494936,0.061349496245384,-0.0090316757559776],[0.12063357234001,-0.049172181636095,-0.11940478533506]],[[-6.8471359554678e-05,0.032756388187408,0.037523999810219],[-0.15471115708351,0.0065413084812462,-0.049698159098625],[0.083676218986511,0.049769055098295,-0.049468565732241]],[[-0.067689307034016,0.06490071117878,-0.096527919173241],[0.029341293498874,0.0042070127092302,0.081399947404861],[-0.011494822800159,-0.015345407649875,0.13427186012268]],[[-0.044056240469217,0.028141362592578,-0.042595852166414],[0.1010968759656,0.10117080062628,0.066477753221989],[0.03634862229228,-0.10867081582546,0.012522585690022]],[[0.058868039399385,-0.19084291160107,-0.042783863842487],[-0.063251674175262,-0.036271963268518,-0.11889263242483],[-0.095786601305008,0.078638665378094,-0.062469143420458]],[[0.072532452642918,0.038572765886784,0.074340283870697],[0.055155463516712,0.019970517605543,0.086991526186466],[0.0050006932578981,0.14564499258995,0.0031281325500458]],[[-0.0068675400689244,0.17559839785099,0.11711427569389],[0.1057590842247,-0.077085085213184,-0.16241197288036],[-0.01318518538028,-0.062129657715559,0.008979894220829]],[[-0.070634379982948,-0.028772197663784,0.010799371637404],[-0.098560363054276,-0.059682574123144,0.013498640619218],[-0.062882170081139,-0.12599202990532,0.011011453345418]],[[-0.042041633278131,-0.11018149554729,-0.1131576821208],[0.092346183955669,-0.036474756896496,-0.10569585859776],[-0.093034483492374,0.071038775146008,0.094665542244911]],[[0.13679248094559,0.020443879067898,0.0034546924289316],[0.098670080304146,-0.028991019353271,-0.12444289773703],[0.049087442457676,0.040995266288519,0.053635001182556]],[[-0.019759317860007,0.0021470561623573,0.028313372284174],[-0.063380889594555,0.030427884310484,-0.010327140800655],[-0.19940359890461,0.18936631083488,0.25895866751671]],[[-0.038775999099016,0.17182163894176,-0.12013433873653],[-0.010576688684523,0.15926890075207,0.0025474601425231],[-0.13304896652699,0.0066403318196535,0.087463900446892]],[[0.078587606549263,0.11678240448236,-0.066616088151932],[0.1635183095932,0.0647794008255,-0.040396511554718],[-0.023412082344294,0.0069655617699027,0.035361427813768]],[[0.038840752094984,0.030091555789113,-0.026102187111974],[-0.020815214142203,0.12346276640892,0.083002395927906],[-0.091826736927032,-0.01683335006237,-0.058449883013964]],[[0.0058370232582092,0.089170999825001,0.042110428214073],[0.067681238055229,0.11191370338202,0.090671397745609],[-0.084021188318729,-0.034209240227938,-0.27352559566498]],[[-0.14923183619976,-0.020660139620304,-0.011975408531725],[-0.087460376322269,-0.054860237985849,0.18703791499138],[0.0033917026594281,0.043516807258129,-0.17505741119385]],[[-0.0061684078536928,-0.16112443804741,0.0015861005522311],[0.19054648280144,0.070805661380291,0.058954924345016],[0.051693800836802,0.044349927455187,-0.068446010351181]],[[-0.040163297206163,-0.096131816506386,0.025188501924276],[0.031979687511921,0.019312247633934,-0.040238194167614],[0.0861576795578,-0.067611612379551,-0.16944462060928]],[[-0.033606614917517,-0.009389154613018,0.01355951000005],[-0.037685003131628,0.097762614488602,-0.011591411195695],[0.025516340509057,0.014246439561248,-0.090382657945156]],[[-0.034872770309448,-0.15730118751526,-0.14462301135063],[-0.1453772932291,-0.062718942761421,0.028038576245308],[-0.030075374990702,-0.25154852867126,0.093983240425587]],[[0.1617446243763,0.0047420538030565,-0.010954591445625],[-0.016996731981635,-0.039702355861664,-0.027868671342731],[-0.053979750722647,0.041654504835606,0.049576882272959]],[[-0.020684557035565,0.054576005786657,0.10185933858156],[0.17349547147751,0.099366746842861,-0.10524306446314],[0.10042123496532,0.015440329909325,-0.093701161444187]],[[-0.10631566494703,-0.13599723577499,0.1189800798893],[0.12500831484795,-0.099675849080086,-0.03319551050663],[0.18973326683044,-0.015089670196176,0.068098202347755]],[[0.017375465482473,-0.044120218604803,0.024829650297761],[-0.00048918795073405,0.16044847667217,0.074917808175087],[0.056895803660154,0.13578774034977,0.11441840231419]],[[0.15945166349411,-0.074900478124619,-0.21566313505173],[0.030798144638538,0.22382988035679,0.12750838696957],[-0.10213029384613,0.0042628576047719,-0.30610090494156]]],[[[-0.081289559602737,-0.016668971627951,-0.040184915065765],[-0.052621714770794,-0.011981724761426,-0.096262380480766],[0.097145952284336,-0.053948029875755,0.13702170550823]],[[-0.026186155155301,-0.069648064672947,-0.045644536614418],[-0.16393890976906,-0.036929529160261,0.075603947043419],[-0.09277705848217,0.095779865980148,0.06577081233263]],[[0.1316389888525,0.065957129001617,0.085456214845181],[0.10816738754511,0.11677243560553,0.11862197518349],[0.035645574331284,0.048462174832821,0.14143246412277]],[[0.19376309216022,-0.17412780225277,-0.07252586632967],[-0.0063172238878906,-0.018924329429865,-0.11523228883743],[-0.14116103947163,0.045989826321602,0.039261382073164]],[[-0.015664761886001,0.074518799781799,0.061840392649174],[0.045047748833895,0.0082184737548232,0.070755787193775],[0.21853609383106,0.080843731760979,-0.056959349662066]],[[-0.10200352966785,-0.096923418343067,-0.042450893670321],[0.026154672726989,0.034503046423197,0.093680329620838],[-0.032704848796129,0.18901595473289,0.12171157449484]],[[-0.10040478408337,-0.12761847674847,0.062770575284958],[0.10067531466484,0.020004229620099,-0.018238950520754],[0.10723850131035,0.10208258777857,0.077859193086624]],[[-0.18973775207996,0.054478202015162,-0.05488546192646],[-0.055434305220842,-0.026063527911901,0.014589527621865],[0.1051192805171,0.0081744752824306,-0.076463930308819]],[[0.058846659958363,0.1310226470232,-0.12142576277256],[0.15865038335323,-0.16479453444481,0.10631870478392],[-0.18934637308121,-0.086991019546986,-0.25182807445526]],[[0.10204702615738,-0.078546144068241,-0.072855554521084],[-0.14229182898998,-0.23481348156929,-0.032421503216028],[-0.010882862843573,-0.15733096003532,-0.26695802807808]],[[0.15117999911308,0.17278738319874,-0.0044204783625901],[0.036269668489695,-0.064422555267811,0.23589226603508],[-0.034642282873392,-0.028835857287049,0.18187609314919]],[[0.024143977090716,0.10796343535185,0.033458806574345],[0.0080408249050379,0.14047585427761,0.10078781098127],[0.10555875301361,-0.012366663664579,-0.036807682365179]],[[-0.11082008481026,-0.00079867674503475,-0.17027156054974],[0.049511056393385,-0.039517641067505,-0.24628742039204],[-0.0081896018236876,-0.11763071268797,-0.26890376210213]],[[0.070558331906796,0.09598658233881,0.076334990561008],[-0.17524360120296,-0.11181785166264,-0.12761217355728],[-0.16216573119164,-0.080001667141914,0.10275024175644]],[[0.19653388857841,0.15757511556149,0.050653833895922],[-0.14336141943932,-0.053972560912371,-0.013021070510149],[0.16162008047104,0.12477158755064,0.3731517791748]],[[0.038301549851894,0.11139009147882,0.074992939829826],[0.10057185590267,-0.010105967521667,-0.069810211658478],[0.030603295192122,0.0091692740097642,-0.064108282327652]],[[-0.013321128673851,-0.1237016171217,0.078529693186283],[-0.045634467154741,-0.1472755074501,0.12452785670757],[0.12036424875259,0.0777308344841,0.040935754776001]],[[0.025791265070438,0.10780619829893,0.088651023805141],[-0.049642030149698,0.048311032354832,0.1865067332983],[0.0027300058864057,0.0055469651706517,-0.089152857661247]],[[-0.23053434491158,-0.12548296153545,0.10997220873833],[-0.052952580153942,-0.10442239791155,0.21535043418407],[0.049059797078371,-0.024801814928651,-0.0098568508401513]],[[-0.14383442699909,-0.019122371450067,0.15917007625103],[-0.013096446171403,-0.0069790743291378,0.0032011156436056],[0.065095081925392,0.011772945523262,-0.034601252526045]],[[-0.16002371907234,-0.039081640541553,0.1914356648922],[0.050750199705362,0.028579693287611,-0.043247271329165],[-0.075701311230659,-0.032355934381485,-0.072237603366375]],[[-0.050484005361795,-0.026286534965038,0.078656084835529],[0.10224023461342,-0.067493908107281,-0.057995855808258],[-0.12429689615965,0.032023917883635,-0.027586791664362]],[[-0.16086106002331,0.031304992735386,0.11200861632824],[0.13091567158699,0.15886449813843,0.080401718616486],[0.10134054720402,0.050762079656124,-0.030498865991831]],[[0.18259845674038,0.025393517687917,-0.031962148845196],[0.0015939947916195,-0.072657220065594,-0.012042414397001],[-0.13299567997456,-0.0014177118428051,0.25370103120804]],[[0.074131816625595,0.12659952044487,0.032778713852167],[-0.046695463359356,0.060777973383665,-0.0037282886914909],[-0.33283519744873,0.020786363631487,0.17258858680725]],[[-0.026322031393647,0.095232896506786,0.014410643838346],[-0.071140542626381,0.049671936780214,-0.10112976282835],[-0.025263929739594,0.12962958216667,-0.00066107948077843]],[[-0.0076888017356396,0.0012246404075995,0.095158107578754],[-0.07494480907917,-0.018803158774972,0.084665834903717],[-0.0076603624038398,0.14791014790535,0.099763043224812]],[[0.083026796579361,0.12355428934097,-0.01862152479589],[-0.15378026664257,-0.017606798559427,0.12709553539753],[-0.086573846638203,0.074814237654209,-0.062783673405647]],[[0.0092861130833626,-0.01148394215852,0.011453943327069],[-0.015238597989082,-0.093018509447575,-0.12158701568842],[-0.051325812935829,-0.021319741383195,-0.084896355867386]],[[-0.081914253532887,-0.10373478382826,0.010799412615597],[-0.0042996099218726,-0.03394427895546,0.13937711715698],[-0.0048641464672983,0.059228155761957,0.18018874526024]],[[0.17961557209492,0.024161467328668,-0.25057926774025],[-0.070881895720959,0.15637159347534,0.12696477770805],[-0.14754548668861,-0.011624721810222,-0.020225359126925]],[[-0.13206939399242,0.061409048736095,-0.095287829637527],[0.062939815223217,0.038902845233679,-0.14689058065414],[0.011700475588441,0.027584342285991,-0.20880338549614]],[[0.02434578537941,0.0065854177810252,0.1337828785181],[-0.11157906800508,0.0849978774786,-0.039229307323694],[-0.011769971810281,-0.087694473564625,0.061584200710058]],[[-0.0033758641220629,-0.077601179480553,-0.049065075814724],[-0.075189150869846,-0.058481678366661,-0.0047219255939126],[0.10752761363983,-0.0012825690209866,-0.11645901203156]],[[-0.025209084153175,0.031053498387337,-0.055705882608891],[0.063063889741898,0.018782004714012,0.02293567918241],[0.13338309526443,-0.0066626211628318,0.034544236958027]],[[-0.042083330452442,-0.051949936896563,0.097415782511234],[0.046057570725679,-0.069045670330524,-0.017715992406011],[0.17292565107346,-0.019095201045275,0.05399027466774]],[[-0.050509944558144,0.023849135264754,0.056099433451891],[-0.11605475842953,-0.1195207759738,0.11962210386992],[-0.12388671189547,0.078743107616901,0.047636415809393]],[[0.054020326584578,0.17803330719471,-0.038368694484234],[-0.18596591055393,0.016016883775592,-0.10092598944902],[-0.075255282223225,-0.04610226675868,0.057145599275827]],[[0.072680570185184,-0.035948906093836,0.026812292635441],[0.11285042762756,-0.032348647713661,-0.0073731066659093],[-0.12303436547518,-0.1184513643384,-0.060825482010841]],[[0.052992101758718,-0.020211005583405,0.012900475412607],[0.025830933824182,-0.08600427210331,-0.013872871175408],[-0.15748496353626,-0.22862982749939,0.17324137687683]],[[-0.028862480074167,0.014336028136313,0.21547690033913],[0.059995707124472,0.064814321696758,-0.063622340559959],[0.14909397065639,0.09657409787178,0.17569401860237]],[[0.016872519627213,-0.0028959817718714,-0.076342009007931],[0.20964553952217,0.093702167272568,0.015435862354934],[0.17141869664192,-0.059364050626755,0.024962093681097]],[[-0.097735799849033,-0.13550825417042,-0.042313862591982],[0.023005170747638,-0.16431260108948,0.081546731293201],[0.13690941035748,0.067332454025745,-0.05660929530859]],[[-0.14704698324203,-0.078289955854416,0.049064259976149],[0.10012807697058,0.084457531571388,0.076080068945885],[0.058005172759295,-0.01014999859035,-0.11461428552866]],[[-0.049832750111818,-0.0035036175977439,0.14268618822098],[-0.095476076006889,0.0069950739853084,-0.020512264221907],[0.01039694994688,0.063725970685482,0.016652626916766]],[[0.075674548745155,0.048689033836126,0.14123797416687],[-0.051702801138163,-0.07672992348671,0.014826173894107],[0.12169001251459,0.080524288117886,0.060475397855043]],[[0.1468136459589,-0.050360385328531,-0.09516579657793],[0.10169793665409,-0.052123315632343,0.032725773751736],[-0.090714380145073,-0.069508649408817,-0.11685016751289]],[[0.084531001746655,0.095561563968658,0.060775369405746],[-0.02708749845624,-0.059762254357338,0.041151288896799],[-0.1738882958889,-0.2031974196434,-0.1960728764534]],[[0.041841439902782,0.020042106509209,-0.12497343868017],[0.085952877998352,-0.19087888300419,-0.06936601549387],[0.023361839354038,0.00079860893310979,0.027946626767516]],[[-0.17980298399925,-0.1090365126729,-0.10374829173088],[-0.18873080611229,0.014344994910061,-0.038622885942459],[-0.078255370259285,-0.03942146897316,-0.012251607142389]],[[-0.01495995093137,-0.027169836685061,0.00023974015493877],[-0.27719834446907,-0.0001764286425896,-0.095427222549915],[-0.094817727804184,-0.26764711737633,-0.059075515717268]],[[0.096486128866673,0.095080770552158,0.074149169027805],[0.091913662850857,0.047046601772308,0.088234387338161],[0.027447329834104,0.12162268161774,0.15146768093109]],[[-0.12043410539627,0.0040041576139629,0.032547384500504],[0.024208061397076,0.067177027463913,0.076793283224106],[0.056421723216772,-0.06402875483036,-0.087778754532337]],[[0.087208889424801,0.016174094751477,-0.069625750184059],[0.072622165083885,0.10804699361324,0.41988748311996],[-0.034125331789255,-0.060841538012028,-0.1115340590477]],[[0.12426690012217,0.040071938186884,-0.025865888223052],[0.082828365266323,0.0059306118637323,-0.041518848389387],[-0.17995209991932,-0.11431755870581,0.11019482463598]],[[0.020744746550918,-0.069789066910744,-0.14878304302692],[0.027625933289528,0.041683055460453,-0.077258713543415],[-0.015478582121432,0.014171243645251,0.091443434357643]],[[-0.057104647159576,-0.057327385991812,-0.053064443171024],[0.055571291595697,-0.044539339840412,0.066570602357388],[0.031539048999548,0.13719248771667,-0.034084051847458]],[[-0.071859709918499,-0.086285747587681,-0.19979251921177],[-0.12104085087776,-0.070379756391048,0.026604508981109],[0.14179389178753,0.015679702162743,-0.25504821538925]],[[-0.034595109522343,-0.028853677213192,0.048761770129204],[-0.1544638723135,-0.095814391970634,0.016641931608319],[-0.02305905520916,0.069197118282318,-0.078144125640392]],[[-0.1726076155901,-0.1003770083189,0.15162461996078],[0.1190485060215,0.064369112253189,0.24800257384777],[0.036721624433994,0.072169274091721,-0.045631933957338]],[[-0.044589288532734,-0.049350757151842,0.00030350501765497],[0.002561210654676,0.0016898476751521,0.012099822051823],[-0.0043983231298625,0.091866910457611,0.049545053392649]],[[0.032349698245525,0.048424057662487,-0.032519984990358],[-0.13885879516602,-0.087395906448364,-0.096091397106647],[-0.14209027588367,0.078128650784492,-0.21360950171947]],[[0.017134381458163,0.017056936398149,-0.027338907122612],[-0.13132625818253,-0.014983643777668,0.041909106075764],[-0.16026909649372,-0.016619296744466,0.11101424694061]],[[0.12169034034014,0.019497195258737,-0.025575999170542],[0.039748702198267,0.13225317001343,0.039460096508265],[-0.071421906352043,-0.032647736370564,0.13180769979954]],[[-0.17167699337006,-0.12083664536476,-0.083293169736862],[0.019537238404155,-0.18006548285484,-0.13609001040459],[-0.0060701072216034,-0.0060188365168869,-0.10631185024977]],[[-0.038802739232779,-0.13555397093296,-0.031853042542934],[0.029236551374197,0.021682936698198,-0.070899218320847],[0.13509868085384,-0.11701648682356,-0.078163303434849]],[[0.083876356482506,0.056919079273939,-0.11988990753889],[-0.075039356946945,-0.13203904032707,-0.023504925891757],[-0.23889867961407,-0.088103704154491,-0.11901462823153]],[[0.17172828316689,0.013956533744931,0.13666726648808],[-0.090341001749039,0.065748013556004,-0.10992223769426],[0.0084024332463741,0.043556202203035,-0.40840321779251]],[[-0.051765505224466,0.06827475130558,-0.1462269872427],[0.10836864262819,0.0064167589880526,-0.30599799752235],[0.12478483468294,0.056661337614059,-0.041978009045124]],[[-0.059999320656061,0.013838657177985,0.11233063042164],[0.0043900101445615,-0.04022204130888,-0.069778293371201],[0.16444334387779,0.14622129499912,0.076481848955154]],[[0.19339133799076,0.088820569217205,-0.045206874608994],[-0.04354028403759,0.065592095255852,0.48658990859985],[-0.11023159325123,0.071169070899487,0.23900429904461]],[[-0.054029621183872,0.019328193739057,0.14562897384167],[-0.0040197521448135,-0.16898815333843,0.030098538845778],[-0.10344714671373,-0.11558346450329,-0.11250736564398]],[[-0.043303295969963,-0.15632313489914,-0.1987672150135],[-0.073809944093227,-0.17347922921181,-0.12161819636822],[0.11673550307751,-0.11003634333611,-0.21210107207298]],[[-0.026389436796308,0.068300068378448,0.090802304446697],[-0.021137610077858,0.040911715477705,-0.01161289960146],[-0.037769269198179,-0.039512977004051,0.04361454769969]],[[-0.23131942749023,0.016273258253932,-0.049820318818092],[-0.079457230865955,-0.13296909630299,0.16992449760437],[0.098961591720581,0.20242327451706,-0.14561919867992]],[[0.070810317993164,0.032815352082253,0.027049159631133],[0.044487152248621,-0.0092565845698118,-0.044120490550995],[0.089828319847584,-0.077561467885971,-0.0628961622715]],[[0.15674588084221,-0.078766174614429,-0.0148721691221],[-0.061747923493385,0.16038106381893,-0.014165545813739],[0.096854656934738,-0.17921762168407,-0.22368834912777]],[[0.15259301662445,-0.051167976111174,-0.02362060546875],[-0.051437571644783,-0.084634467959404,0.032739754766226],[0.018879994750023,0.015093848109245,0.083202458918095]],[[0.18252111971378,-0.036914937198162,-0.084699399769306],[-0.071757882833481,-0.045484401285648,-0.021833835169673],[0.14955298602581,0.0099566243588924,-0.094573087990284]],[[-0.15406489372253,-0.10790023952723,0.1190220862627],[0.12319462746382,-0.26269215345383,0.056882500648499],[0.16323685646057,-0.1047293022275,-0.1013941988349]],[[-0.11927395313978,-0.088206581771374,-0.14680820703506],[-0.098196811974049,-0.10081318765879,0.19786943495274],[-0.12864890694618,-0.14049160480499,-0.18551181256771]],[[-0.023752013221383,0.1080486997962,-0.028167748823762],[0.14220766723156,0.018784878775477,-0.040095012634993],[-0.18862900137901,0.033615507185459,0.099447712302208]],[[0.20778359472752,0.042903963476419,0.061560716480017],[-0.0055365874432027,0.071094043552876,-0.024956522509456],[0.081035688519478,0.23528784513474,0.19044627249241]],[[0.0014172064838931,-0.047273423522711,-0.0057398709468544],[0.039811190217733,-0.013566522859037,-0.0012731207534671],[-0.11616979539394,0.013197223655879,-0.050349108874798]],[[0.047882780432701,0.2228826135397,0.16730734705925],[-0.071380019187927,0.005509375128895,-0.089969679713249],[0.18529137969017,-0.027040392160416,0.07708865404129]],[[-0.22088062763214,-0.0041445298120379,0.042387165129185],[0.013524712063372,0.033565800637007,0.11623428016901],[0.12072809785604,-0.042676344513893,-0.035677924752235]],[[-0.0045568617060781,0.11402372270823,0.22023303806782],[0.22794443368912,0.055901285260916,-0.11692003160715],[-0.15769661962986,-0.082937352359295,0.18304228782654]],[[-0.15467375516891,0.15178783237934,0.11068527400494],[-0.12087223678827,-0.0036194110289216,-0.18985445797443],[0.073110714554787,0.03261961042881,-0.03091849386692]],[[0.098448306322098,-0.14010608196259,-0.09410884976387],[-0.025049541145563,0.048026110976934,0.064860545098782],[-0.036757286638021,-0.10478471964598,0.052695099264383]],[[-0.092656366527081,-0.027849121019244,-0.27869665622711],[-0.17822487652302,-0.1594165712595,-0.27915507555008],[-0.045182548463345,-0.095783807337284,0.12890185415745]],[[-0.035854067653418,-0.0037260262761265,-0.0062490813434124],[0.20754544436932,0.22091722488403,0.1419263780117],[0.1512666195631,0.041156310588121,0.094299592077732]],[[-0.036944955587387,-0.0045772707089782,0.014242326840758],[-0.095356568694115,0.044492889195681,0.074238769710064],[0.21239739656448,0.059500191360712,0.0021438605617732]],[[-0.020513538271189,0.12904942035675,0.025426840409636],[0.10422165691853,0.17622861266136,0.031185872852802],[-0.29078933596611,0.078632190823555,0.19210800528526]],[[-0.053651582449675,-0.061172533780336,-0.084242612123489],[-0.034479811787605,-0.083761945366859,-0.22900408506393],[0.003823607461527,0.023584010079503,-0.080052301287651]],[[0.12602688372135,0.038122341036797,-0.055921670049429],[0.22430761158466,-0.085642851889133,-0.0087729580700397],[-0.11569136381149,-0.11317967623472,0.084433481097221]],[[-0.10700982809067,0.2226482629776,-0.0019190264865756],[0.12878772616386,-0.068620815873146,-0.16659271717072],[0.028940944001079,-0.042501252144575,-0.032662905752659]],[[0.13684484362602,0.091775320470333,0.12545523047447],[0.0075029856525362,-0.0006260511581786,-0.10343809425831],[0.14890511333942,-0.097298957407475,0.069351814687252]],[[0.031392756849527,-0.11804791539907,0.18729367852211],[-0.016717305406928,-0.06708636879921,-0.061960309743881],[0.016337513923645,0.048799090087414,-0.050130270421505]],[[-0.034146942198277,0.029809361323714,0.050819825381041],[-0.051616042852402,-0.02832000143826,-0.04607467353344],[0.0097235813736916,-0.088027112185955,-0.090818718075752]],[[0.002748851897195,0.10358948260546,0.029958138242364],[0.093386866152287,0.17004914581776,-0.051054604351521],[0.13221354782581,0.050281830132008,-0.072872415184975]],[[-0.17316855490208,0.030169133096933,-0.034764394164085],[-0.17990949749947,-0.0066507747396827,-0.068948596715927],[0.011657167226076,0.085976675152779,-0.036549691110849]],[[-0.2442961782217,-0.010704596526921,0.078129820525646],[0.03530065715313,0.19870118796825,0.1625112593174],[0.07625587284565,0.073783129453659,0.043675549328327]],[[0.10898326337337,0.041752636432648,0.043066564947367],[0.023559365421534,-0.044417664408684,0.21157382428646],[0.020564619451761,-0.079969219863415,0.016228530555964]],[[0.13551141321659,0.0020701137837023,-0.039470184594393],[0.10615813732147,0.12845128774643,-0.020315993577242],[-0.062842383980751,0.018020883202553,-0.091285534203053]],[[-0.11042136698961,-0.045971140265465,0.028472892940044],[-0.0021401992999017,-0.08067836612463,0.062348309904337],[0.0045558954589069,-0.19933654367924,-0.09106607735157]],[[0.20347025990486,-0.26312431693077,-0.028691910207272],[0.14730642735958,0.036833059042692,0.026882695034146],[0.096064455807209,0.14648859202862,0.16024771332741]],[[0.012719877995551,0.026747377589345,0.096182256937027],[0.073705740272999,-0.0016219652025029,-0.13497099280357],[0.10084488242865,0.049248289316893,-0.06896810978651]],[[0.0019111136207357,-0.03907947987318,-0.07015098631382],[-0.063772097229958,-0.066586636006832,0.00055247789714485],[-0.021717855706811,-0.076160095632076,0.13485658168793]],[[0.12853802740574,0.13037873804569,0.038772750645876],[0.041923731565475,-0.018902000039816,-0.09072682261467],[0.010687823407352,0.12882797420025,-0.031816571950912]],[[-0.17969685792923,-0.060636304318905,-0.0021378756500781],[-0.075000800192356,-0.15851786732674,0.21093994379044],[0.076580211520195,-0.036919478327036,-0.07674440741539]],[[0.045172609388828,-0.074879042804241,-0.044577728956938],[-0.081341080367565,-0.13257613778114,0.0023057693615556],[0.018430694937706,0.13387805223465,0.10864927619696]],[[0.091328278183937,0.061639919877052,0.072132125496864],[0.023718301206827,0.083918407559395,0.031587608158588],[0.063773602247238,0.07947850227356,-0.025699753314257]],[[0.014729474671185,-0.053272988647223,0.21256506443024],[0.14150854945183,-0.067698866128922,-0.02264322899282],[-0.036288011819124,-0.13838037848473,-0.03960307314992]],[[-0.012413518503308,-0.10081931948662,-0.0017371190479025],[0.0024081938900054,-0.0095070768147707,-0.062007334083319],[0.082856193184853,0.13925428688526,0.089020378887653]],[[0.13046528398991,0.10882283747196,0.049366682767868],[0.10130474716425,-0.071751199662685,0.14900200068951],[0.15983927249908,0.074386708438396,0.064696818590164]],[[0.14029021561146,0.025537123903632,-0.074492901563644],[-0.14090266823769,-0.20277914404869,-0.048418302088976],[-0.0076049934141338,-0.15202564001083,-0.13647635281086]],[[0.037877075374126,0.041303083300591,0.07897000014782],[-0.091072149574757,-0.035987555980682,0.016331002116203],[-0.066382840275764,-0.11047445237637,0.052050206810236]],[[0.15267071127892,0.12361914664507,-0.056177511811256],[0.15351960062981,-0.01384746003896,0.015227862633765],[0.13841393589973,-0.071795247495174,-0.041883837431669]],[[-0.040502160787582,0.074845604598522,-0.04830813780427],[-0.082069858908653,-0.12249534577131,-0.078999251127243],[0.022344067692757,0.0047597256489098,0.11836936324835]],[[-0.032232955098152,0.0055580828338861,0.019755333662033],[0.0062254276126623,-0.04387828707695,-0.1642784178257],[0.25153523683548,0.099394015967846,-0.18081487715244]],[[0.043543573468924,0.01781496219337,0.14273236691952],[0.015900783240795,0.098560832440853,0.018862422555685],[0.044776033610106,-0.10923210531473,-0.20707258582115]],[[0.024040546268225,-0.066972561180592,0.019556416198611],[0.072202362120152,-0.048605944961309,0.01068128272891],[0.039709128439426,-0.062496729195118,0.010581829585135]],[[-0.15783888101578,-0.029490577057004,-0.11481355875731],[0.10168305039406,-0.11674480885267,-0.10517130792141],[-0.068902164697647,0.03241752833128,0.059955194592476]],[[0.010215288959444,-0.043619800359011,-0.02073928155005],[0.099139526486397,0.054210487753153,0.056613266468048],[0.19325856864452,-0.04287613555789,0.13861601054668]],[[0.06570590287447,0.018174815922976,-0.010347790084779],[-0.091088734567165,0.14962346851826,-0.020511690527201],[-0.062105175107718,0.10132879018784,0.071403644979]],[[0.041764475405216,0.077191017568111,0.15797500312328],[-0.10742200165987,-0.051886040717363,-0.055154293775558],[-0.081709362566471,-0.081264965236187,0.0079074427485466]],[[0.018798651173711,0.0085489479824901,-0.03611595928669],[-0.075191237032413,0.1008620634675,-0.0089498590677977],[0.093049600720406,-0.15117113292217,-0.019108716398478]],[[0.013953365385532,0.012331199832261,0.031882815063],[-0.10705483704805,-0.067763321101665,0.025914253666997],[-0.17164567112923,-0.064182229340076,0.1382872313261]]],[[[0.073229782283306,0.046833980828524,-0.12110675126314],[0.11701713502407,0.088238194584846,-0.067591182887554],[0.13500939309597,0.10781543701887,-0.18898072838783]],[[-0.044061101973057,-0.031810730695724,0.012481381185353],[-0.015816630795598,-0.046502791345119,0.011670712381601],[-0.034213114529848,0.065768852829933,0.14840722084045]],[[-0.050395630300045,0.086999095976353,-0.087386704981327],[0.074306443333626,0.014795604161918,0.014150975272059],[-0.012607891112566,-0.02077298425138,0.0037135947495699]],[[-0.12164121121168,-0.24599993228912,0.076119437813759],[0.046749290078878,-0.04622008278966,-0.066108100116253],[0.063958793878555,0.12740212678909,-0.038083728402853]],[[-0.026593048125505,0.040588270872831,-0.03146231174469],[-0.027380296960473,0.052281506359577,-0.0013801000313833],[0.016244783997536,0.018719371408224,-0.0044137956574559]],[[0.030615163967013,0.0042637409642339,0.042017180472612],[-0.014481381513178,0.021160863339901,0.044168133288622],[0.07048399746418,-0.023414392024279,-0.0024785629939288]],[[-0.089420400559902,0.037644356489182,0.15789058804512],[-0.00065623567206785,-0.14181786775589,0.014609536156058],[0.021984532475471,-0.093593567609787,-0.017463894560933]],[[0.023457955569029,-0.14409075677395,-0.22491706907749],[0.12653769552708,0.020275481045246,-0.032432910054922],[0.090885370969772,-0.037529122084379,-0.024174902588129]],[[-0.032987449318171,-0.047111961990595,0.06047535687685],[-0.0029081958346069,-0.025592219084501,-0.092460669577122],[0.017897222191095,-0.010908861644566,-0.11392847448587]],[[-0.076560162007809,-0.0028318986296654,0.12222497910261],[0.0094546470791101,-0.1360606700182,0.01649340428412],[-0.20430773496628,0.0094781666994095,-0.085622079670429]],[[-0.072309747338295,-0.085380166769028,0.024003490805626],[-0.11861638724804,-0.018357815220952,-0.06988587975502],[-0.11755565553904,0.016601769253612,0.011065388098359]],[[0.0060136318206787,0.11958031356335,0.047470398247242],[-0.076180495321751,-0.06464671343565,0.16441051661968],[-0.032429587095976,0.013286120258272,-0.026872303336859]],[[-0.088211290538311,-0.1429398804903,-0.10900124162436],[-0.065096028149128,-0.19453357160091,-0.17880094051361],[-0.04721749946475,0.049832250922918,-0.1174928098917]],[[0.0014975273516029,0.015725856646895,0.0042488677427173],[-0.041714485734701,0.080432742834091,0.03247419372201],[0.02290010266006,-0.015551894903183,0.036009956151247]],[[-0.064398549497128,0.053893800824881,-0.077315598726273],[-0.11705496907234,0.020884126424789,-0.051256582140923],[0.0073862839490175,-0.091209672391415,0.064714103937149]],[[-0.093510612845421,-0.1234400421381,0.0056739165447652],[-0.016960619017482,-0.04027821496129,-0.033408477902412],[0.089962251484394,-0.062860518693924,-0.00073483982123435]],[[0.010888984426856,-0.00079104118049145,0.061803583055735],[0.083107367157936,-0.0054715168662369,-0.0053287041373551],[0.0086631523445249,-0.16250267624855,-0.11299633234739]],[[0.067816041409969,0.11279048025608,0.043242752552032],[-0.0013831577962264,-0.037097472697496,0.02175759524107],[-0.05849876254797,-0.098075360059738,0.026473058387637]],[[0.048821114003658,-0.084602147340775,0.068976223468781],[0.06219270080328,-0.16838729381561,-0.0295803938061],[0.0053969421423972,-0.12592768669128,0.0089112175628543]],[[0.026208659633994,0.02460714802146,0.13008281588554],[0.035662196576595,0.0055219079367816,0.13151358067989],[-0.011298461817205,0.11458691954613,0.1157124787569]],[[0.03371562063694,-0.055075436830521,-0.081568747758865],[-0.089200869202614,-0.073058106005192,-0.07755471020937],[-0.13021975755692,-0.12959679961205,-0.035196609795094]],[[-0.08346976339817,-0.0071399821899831,0.16074791550636],[0.0032265828922391,0.030844124034047,0.12719570100307],[-0.11304998397827,0.10127233713865,0.11731051653624]],[[-0.028118936344981,0.022733455523849,0.030663840472698],[0.080783449113369,0.0048470352776349,0.0018809970933944],[0.0073264022357762,-0.069062769412994,0.049278743565083]],[[-0.10932725667953,-0.14294855296612,-0.032421424984932],[0.10048586130142,-0.011699953116477,-0.027788691222668],[-0.027289621531963,-0.0131995677948,-0.021067935973406]],[[-0.018526596948504,-0.052004769444466,-0.13225929439068],[0.0011179153807461,0.056993037462234,0.031082138419151],[0.099969126284122,0.23231266438961,0.012559027411044]],[[0.040858767926693,0.038572080433369,0.1802794188261],[0.011729598976672,-0.0018832453060895,-0.030752323567867],[0.010403485968709,-0.10187143087387,-0.19525837898254]],[[0.055042810738087,-0.13807785511017,0.062975808978081],[0.090315163135529,-0.015337833203375,-0.019945237785578],[0.1505671441555,-0.040652986615896,-0.0085954377427697]],[[-0.17958995699883,-0.049217816442251,0.058512307703495],[-0.031281027942896,-0.049782179296017,0.066501922905445],[0.020897872745991,-0.1231284737587,0.064331375062466]],[[0.034616973251104,0.022034078836441,0.030540501698852],[-0.15320320427418,0.10038837790489,0.10053962469101],[-0.13602739572525,0.015081187710166,-0.021686783060431]],[[-0.072268806397915,-0.084070198237896,0.070199005305767],[0.1105707064271,-0.038792375475168,-0.029708718881011],[0.071484886109829,0.0090660629794002,-0.1008880212903]],[[-0.053945429623127,0.027036918327212,0.012825818732381],[0.10557913780212,-0.071790665388107,-0.015907159075141],[0.078267313539982,-0.017805881798267,0.10488083958626]],[[0.01348537299782,0.064907521009445,-0.0084284897893667],[0.050637576729059,0.025335622951388,0.001864317455329],[0.11621807515621,0.051553126424551,-0.066751696169376]],[[0.049321841448545,-0.031976241618395,0.096496470272541],[0.070439107716084,-0.018765904009342,-0.032156318426132],[0.020538453012705,-0.12701714038849,-0.089367374777794]],[[-0.022079152986407,0.079313337802887,0.0034623239189386],[-0.19214648008347,0.10612475126982,0.092491649091244],[-0.030097616836429,-0.033140797168016,0.026192553341389]],[[-0.10703778266907,-0.11702094227076,-0.020770845934749],[-0.06428836286068,-0.0021876450628042,0.031765282154083],[-0.076149448752403,0.024586779996753,0.08431713283062]],[[-0.1475891917944,-0.20443074405193,-0.067853778600693],[0.013041363097727,-0.17004717886448,-0.035891007632017],[-0.050908152014017,-0.13916365802288,-0.13466691970825]],[[0.039359975606203,-0.068871200084686,-0.11225891858339],[-0.00015551774413325,-0.1016446724534,-0.06552766263485],[0.030257558450103,-0.061936371028423,0.004846144001931]],[[0.0077576548792422,-0.086515553295612,-0.17361801862717],[0.039005428552628,0.14670869708061,-0.0017460285453126],[-0.051225181668997,0.076430648565292,0.048742942512035]],[[0.058944132179022,-0.080283261835575,0.044920194894075],[0.008149185217917,-0.071328587830067,-0.004235050175339],[0.0097985723987222,-0.0069669326767325,0.0051353680901229]],[[-0.024552967399359,0.026180390268564,-0.05886547267437],[0.12353067100048,-0.010480672121048,-0.013545543886721],[-0.026958450675011,-0.029600312933326,-0.068759508430958]],[[-0.03832296282053,0.032444395124912,0.082643106579781],[-0.043205678462982,0.11036802828312,0.099124364554882],[-0.189024284482,0.016050487756729,-0.0015469378558919]],[[-0.049955129623413,0.12612400949001,0.11670059710741],[-0.047328539192677,-0.030830813571811,0.12348382920027],[-0.047772813588381,0.099873214960098,0.19173273444176]],[[-0.13945898413658,0.0084376102313399,-0.012023739516735],[-0.012880403548479,-0.018657678738236,0.028990106657147],[0.00017051663598977,-0.30109062790871,-0.031456056982279]],[[-0.067754551768303,-0.060366615653038,0.074118852615356],[0.039036460220814,-0.0075885010883212,0.010283777490258],[0.0035574191715568,-0.028548194095492,0.020405093207955]],[[-0.0072260592132807,0.083634786307812,-0.14741133153439],[-0.08208791911602,-0.015594220720232,-0.033076092600822],[-0.1133768260479,0.022419353947043,0.029921704903245]],[[0.10920464247465,0.068142771720886,0.064256139099598],[-0.011194366961718,-0.001696907915175,-0.028108578175306],[0.065346285700798,0.11284126341343,-0.10058778524399]],[[-0.20009368658066,0.09374888241291,0.13888861238956],[0.030979704111814,-0.017339523881674,0.062709651887417],[0.030609434470534,-0.057989399880171,0.042470443993807]],[[0.10134409368038,-0.0062112119048834,0.01293468195945],[0.025342706590891,-0.087119996547699,-0.032078437507153],[0.052545316517353,0.060613706707954,0.051958348602057]],[[-0.093861997127533,-0.14505918323994,-0.028708789497614],[0.05866776406765,-0.054946325719357,0.070740960538387],[0.084844574332237,-0.004519993904978,-0.087338231503963]],[[-0.04373974353075,-0.18175055086613,-0.052753742784262],[0.00023022954701446,-0.056537613272667,-0.082281045615673],[0.026980230584741,0.039700292050838,-0.11464340239763]],[[-0.023279951885343,-0.00119112606626,-0.055363658815622],[0.21865683794022,0.12226800620556,0.080534555017948],[0.13847449421883,0.1807946562767,-0.04957627505064]],[[-0.0083787105977535,0.11151859164238,-0.10483877360821],[0.014667356386781,0.092979766428471,0.013282274827361],[-0.079209730029106,-0.035062108188868,0.10108609497547]],[[-0.017326502129436,-0.022098958492279,0.037910725921392],[0.07026618719101,-0.11088561266661,-0.088924750685692],[0.15391774475574,-0.071536980569363,-0.043002109974623]],[[0.0369972884655,0.0051250359974802,0.14274656772614],[-0.056456610560417,-0.14622583985329,0.049420658499002],[-0.073810406029224,-0.076130583882332,0.073255054652691]],[[-0.10757089406252,-0.037761673331261,-0.196333527565],[-0.099198125302792,0.022447099909186,-0.028520621359348],[0.001247244537808,0.11900536715984,0.044841460883617]],[[-0.15073010325432,0.0017229780787602,-0.062251675873995],[-0.080263733863831,0.053388942033052,-0.067585125565529],[-0.00052487466018647,-0.020996183156967,0.033852186053991]],[[-0.017678646370769,0.030793998390436,0.059770364314318],[0.063956096768379,0.06495850533247,0.027432963252068],[-0.078681342303753,-0.034833494573832,0.13563607633114]],[[-0.052904713898897,-0.021811822429299,-0.080930083990097],[-0.14488960802555,-0.017464006319642,-0.14040368795395],[-0.24705432355404,-0.13052763044834,-0.20338207483292]],[[-0.038215756416321,-0.0075455685146153,-0.058095756918192],[0.079200312495232,0.004504413343966,0.0099871987476945],[0.026647290214896,-0.017631875351071,-0.020512159913778]],[[-0.073432058095932,-0.049282897263765,0.014136031270027],[-0.004167492967099,-0.0097297327592969,-0.094353303313255],[0.04829241335392,-0.018597692251205,-0.025855660438538]],[[0.049934938549995,0.084908694028854,0.14128202199936],[-0.046472284942865,0.091850109398365,0.061065975576639],[-0.10422372072935,-0.080916441977024,-0.0253586769104]],[[-0.073602229356766,0.01522677205503,0.02530649676919],[-0.025439405813813,-0.032674416899681,0.029960779473186],[-0.17472465336323,-0.038345731794834,0.019988596439362]],[[-0.057276863604784,-0.023195100948215,-0.039180669933558],[-0.12200626730919,0.042631916701794,-0.031506266444921],[-0.090843759477139,0.098289802670479,-0.068470731377602]],[[-0.0080556403845549,-0.12582977116108,-0.053314048796892],[0.065577156841755,0.077719517052174,-0.065876051783562],[0.049236033111811,0.069300256669521,0.011365346610546]],[[-0.10252752155066,0.069946236908436,0.083331622183323],[-0.090405322611332,-0.0056175389327109,0.11211552470922],[-0.048866286873817,-0.029033793136477,0.10031607747078]],[[0.019432839006186,0.036080926656723,-0.0069127245806158],[0.091627180576324,0.020711934193969,-0.059915777295828],[-0.038129705935717,-0.12944003939629,-0.13052204251289]],[[-0.057869233191013,0.026373291388154,0.1107160449028],[-0.11066956818104,-0.14568342268467,0.030992109328508],[0.0029572634957731,-0.027009986341,-0.055713258683681]],[[-0.16187316179276,0.044238045811653,0.12449157983065],[0.033466201275587,-0.18190515041351,0.016094142571092],[-0.014909680001438,-0.01156167127192,-0.14847153425217]],[[0.024677099660039,0.023595113307238,0.15177340805531],[-0.071378111839294,-0.028273038566113,0.056670110672712],[-0.0049822484143078,0.0040092300623655,0.019543346017599]],[[0.011534424498677,-0.014365723356605,0.046436350792646],[-0.039861179888248,0.036159578710794,-0.054566655308008],[0.043803527951241,0.019335193559527,-0.043296486139297]],[[-0.12639366090298,0.071231842041016,0.026388961821795],[-0.013958186842501,0.070539765059948,0.080916471779346],[0.014971856027842,0.037667974829674,0.06892529129982]],[[0.033954013139009,0.023221302777529,0.11290727555752],[-0.013133326545358,-0.12003838270903,0.1021387130022],[-0.045866262167692,0.08481589704752,0.044095806777477]],[[0.0021502741146833,-0.03362175822258,-0.084613546729088],[-0.047589126974344,-0.12210476398468,-0.15541400015354],[-0.033116694539785,-0.24109324812889,-0.14323946833611]],[[0.088205598294735,-0.024755399674177,0.052165511995554],[-0.027897210791707,0.012287305667996,0.046637900173664],[-0.14759193360806,0.036553390324116,0.026013588532805]],[[-0.085496962070465,0.11670122295618,0.056015692651272],[0.121262781322,0.0018836450763047,0.10921780765057],[5.8476831327425e-05,0.034301534295082,0.093539848923683]],[[0.027701081708074,0.094618707895279,0.02686870470643],[0.053736850619316,-0.041541133075953,0.095191434025764],[-0.027026010677218,0.055097874253988,0.10363833606243]],[[0.070888862013817,-0.052974831312895,-0.148712053895],[-0.051222216337919,0.094139687716961,-0.093718349933624],[-0.042031761258841,0.059863526374102,0.12197262793779]],[[0.070643313229084,-0.025178141891956,0.0067695979960263],[-0.053131259977818,0.021633785218,-0.10752441734076],[-0.070887602865696,-0.052947383373976,-0.0012597828172147]],[[-0.02110449783504,-0.025446783751249,-0.035980448126793],[0.0066620935685933,0.085550203919411,-0.031183309853077],[-0.047576852142811,0.0063611553050578,-0.062223840504885]],[[-0.035569485276937,0.12536980211735,-0.020144246518612],[0.041074965149164,0.070936597883701,0.12007752805948],[0.073963403701782,-0.053485840559006,0.061396446079016]],[[0.063390903174877,-0.027413381263614,0.044434785842896],[0.10046398639679,0.03500023111701,-0.17844519019127],[0.064796879887581,0.097375012934208,0.02942525036633]],[[0.070177182555199,0.019342174753547,0.0079128788784146],[0.040754415094852,-0.034795869141817,0.041425801813602],[0.023403143510222,-0.062218546867371,0.050942972302437]],[[-0.12228998541832,-0.022828582674265,0.099391885101795],[0.018782705068588,0.018124325200915,0.00037168507697061],[0.0040796939283609,0.084282577037811,0.1459755897522]],[[-0.15367546677589,-0.03146917745471,-0.028008628636599],[-0.21676474809647,-0.041940040886402,0.035717491060495],[-0.33504885435104,-0.19699980318546,0.0080711096525192]],[[-0.045328743755817,0.037120897322893,0.091286763548851],[-0.019324513152242,0.029386701062322,0.064674332737923],[-0.047361075878143,0.10887290537357,-0.094134151935577]],[[-0.12978784739971,0.033184953033924,0.068931393325329],[-0.13163362443447,-0.068261973559856,0.038134820759296],[-0.09036573767662,-0.12361623346806,-0.067912474274635]],[[-0.041150711476803,-0.040597818791866,0.0024942338932306],[-0.048913184553385,-0.078883782029152,-0.049926433712244],[0.012693003751338,-0.033884420990944,-0.055821530520916]],[[-0.0096941366791725,0.13799020648003,0.10232543945312],[0.010139754973352,0.029884049668908,0.045937024056911],[0.033958032727242,0.064502276480198,0.043319080024958]],[[-0.057208485901356,0.14142763614655,0.11997072398663],[-0.068568877875805,-0.033642075955868,0.019649092108011],[0.069325424730778,-0.03574838116765,0.013776131905615]],[[-0.049598801881075,-0.086479932069778,0.0076671009883285],[0.036219913512468,-0.080164335668087,-0.10517101734877],[-0.28274917602539,-0.13431741297245,-0.0010190319735557]],[[-0.069665670394897,-0.11213993281126,-0.029746858403087],[0.016748338937759,-0.087836474180222,-0.15548804402351],[0.095044165849686,0.01166086550802,0.0068838056176901]],[[0.025876112282276,-0.030536022037268,0.040850073099136],[-0.093435488641262,0.072950057685375,-0.034479174762964],[0.059480901807547,-0.016902258619666,0.10588955879211]],[[0.027453240007162,0.048216879367828,0.0015770768513903],[-0.043078437447548,-0.048257555812597,-0.16444529592991],[-0.030619060620666,0.089144825935364,-0.17587757110596]],[[-0.038157939910889,-0.0080270506441593,-0.16943602263927],[-0.090318687260151,-0.0090538579970598,-0.16196832060814],[-0.12680278718472,-0.032493103295565,-0.077162578701973]],[[0.11863668262959,0.074121043086052,0.10299183428288],[0.062101472169161,0.014005306176841,0.12159088999033],[-0.026893693953753,-0.0182517003268,0.14178900420666]],[[0.043497141450644,-0.018893672153354,0.052638627588749],[-0.071880899369717,0.055172555148602,-0.051141623407602],[-0.0078814020380378,0.05046571046114,0.049703858792782]],[[0.061960272490978,-0.076102823019028,-0.14079943299294],[0.026340099051595,0.019017426297069,-0.10007148236036],[-0.097306840121746,-0.0031580023933202,0.023383324965835]],[[0.018823944032192,-0.061286263167858,-0.030455308035016],[-0.0037097975146025,0.020036865025759,-0.057167798280716],[0.033607445657253,0.051147647202015,-0.0072854259051383]],[[0.085559107363224,0.050196155905724,-0.08707420527935],[-0.016845693811774,-0.11791767179966,-0.026040602475405],[0.0074634063057601,-0.065144792199135,-0.073413982987404]],[[0.064427882432938,-0.10976696014404,-0.069725997745991],[0.098586387932301,-0.018064562231302,-0.072257772088051],[0.068673633038998,-0.0052198129706085,-0.14992864429951]],[[-0.0038279846776277,0.047260269522667,-0.066706024110317],[-0.089852221310139,0.033950325101614,-0.1191741079092],[-0.085733979940414,-0.095442675054073,-0.099693335592747]],[[-0.071198314428329,-0.009177815169096,0.11948435753584],[-0.071371749043465,-0.0011024224804714,-0.048963770270348],[-0.0070556784048676,0.020944509655237,-0.038709655404091]],[[0.076198637485504,-0.086435057222843,-0.0726073756814],[-0.1636393815279,-0.054559860378504,-0.010005728341639],[-0.15111842751503,-0.16417346894741,0.039381265640259]],[[-0.037634272128344,0.10106813907623,0.01821275241673],[-0.078425571322441,0.066979579627514,-0.076664477586746],[0.060852728784084,-0.014297907240689,-0.08864389359951]],[[0.058564722537994,-0.10434970259666,0.099371641874313],[-0.017933281138539,-0.023898785933852,0.1001004204154],[0.061645373702049,-0.05762630328536,-0.28962218761444]],[[-0.010347529314458,-0.15404053032398,0.098294578492641],[0.052697323262691,-0.056115485727787,-0.024382209405303],[0.063436880707741,0.04769666865468,0.095620885491371]],[[0.0864322707057,0.11962512880564,-0.017931392416358],[0.040727157145739,0.084304362535477,-0.017722880467772],[0.16055403649807,0.03743128105998,-0.023557798936963]],[[0.012607679702342,-0.024066654965281,-0.030223436653614],[0.010758923366666,-0.087864257395267,0.043485194444656],[-0.007412975654006,-0.021072341129184,0.02780039049685]],[[0.066262647509575,0.0078603532165289,0.063724480569363],[0.0042314436286688,0.031869266182184,-0.071275264024734],[0.094846367835999,0.0066636903211474,0.062219694256783]],[[0.025724202394485,0.028571810573339,0.093123488128185],[-0.039449203759432,-0.050141602754593,0.065830923616886],[0.048507530242205,-0.035992991179228,0.021595865488052]],[[0.026220500469208,0.023795152083039,0.046874560415745],[-0.19953635334969,-0.035757027566433,0.13763278722763],[-0.10885896533728,-0.027814226225019,0.085358761250973]],[[-0.06965609639883,-0.10381320118904,0.048187427222729],[-0.16863343119621,-0.068750992417336,0.077953778207302],[-0.12645764648914,0.04939141497016,0.069478556513786]],[[0.023185864090919,-0.019529718905687,-0.002753317123279],[0.071450084447861,-0.053762972354889,0.060269095003605],[0.090262167155743,0.044501408934593,-0.026664661243558]],[[-0.02943136356771,0.020753988996148,0.010507246479392],[0.085165828466415,-0.035291738808155,-0.0055036977864802],[-0.028549076989293,-0.087144769728184,-0.1032826602459]],[[0.092899322509766,-0.010208734311163,0.12857080996037],[0.070754297077656,0.0060146022588015,0.14937570691109],[0.099510505795479,-0.083314180374146,0.010875906795263]],[[0.016629964113235,-0.036930423229933,0.0096770999953151],[-0.068141900002956,-0.037612427026033,0.11639070510864],[0.036712773144245,-0.046247661113739,-0.04087944701314]],[[-0.04523141682148,-0.018863901495934,-0.078473396599293],[-0.018864322453737,-0.020384153351188,-0.016930775716901],[0.0081523805856705,0.0021496186964214,-0.050484109669924]],[[-0.0093951532617211,-0.019031735137105,-0.044942308217287],[0.040528606623411,-0.072862632572651,-0.11892238259315],[0.077578850090504,0.036009959876537,0.015052614733577]],[[0.11686981469393,0.093275167047977,-0.086123809218407],[0.11856477707624,0.018794035539031,0.0018019422423095],[-0.058292038738728,-0.070301428437233,-0.22801597416401]],[[-0.14579182863235,0.022709168493748,0.028146367520094],[0.018377752974629,-0.082928851246834,0.051678646355867],[0.037995621562004,-0.057898957282305,-0.044185321778059]],[[-0.16580459475517,-0.12269599735737,-0.033093880861998],[-0.085946135222912,-0.023790020495653,-0.091615349054337],[0.048244763165712,0.0037434466648847,-0.14634069800377]],[[0.047379583120346,0.17647051811218,0.093282602727413],[-0.028833448886871,0.11880933493376,0.13612185418606],[0.014346952550113,-0.012649832293391,0.19306123256683]],[[0.031184390187263,0.11737778782845,0.0406858548522],[-0.14528968930244,0.074478685855865,0.042776677757502],[-0.021597789600492,-0.10553483664989,0.077450051903725]],[[0.029844513162971,-0.079439520835876,0.089784771203995],[0.079754263162613,-0.043432030826807,-0.018293619155884],[-0.067514657974243,-0.0071246419101954,-0.031374424695969]],[[-0.032803893089294,0.06896510720253,-0.033067677170038],[-0.041224356740713,0.035122957080603,0.0015077700372785],[-0.0305903442204,-0.10618980228901,0.025785667821765]],[[-0.022189982235432,0.039832130074501,-0.028056124225259],[-0.044661935418844,0.046747159212828,0.011202366091311],[-0.00077604438411072,-0.044679407030344,0.046362645924091]],[[-0.0053208847530186,-0.014980654232204,0.066157653927803],[0.091946817934513,0.10060165077448,-0.12482018023729],[0.16826148331165,-0.042157325893641,-0.13226945698261]],[[0.07679895311594,0.0038769100792706,-0.10234747081995],[0.099849671125412,0.13752581179142,-0.072415225207806],[-0.0071761207655072,-0.048435792326927,-0.12783022224903]]],[[[-0.037957448512316,0.019253699108958,0.090602189302444],[-0.076964065432549,-0.099118299782276,-0.019013445824385],[-0.02090035378933,-0.08907875418663,-0.053142238408327]],[[-0.10401356965303,0.053863316774368,0.015391795895994],[-0.12032654136419,-0.041116431355476,0.017237873747945],[-0.073299206793308,0.094758898019791,0.069215558469296]],[[0.069980971515179,-0.081540010869503,0.013490512035787],[-0.017298016697168,0.024197213351727,0.019699042662978],[0.038835361599922,0.086925961077213,0.23878015577793]],[[-0.12825042009354,0.0031512845307589,-0.10154626518488],[0.047548662871122,0.030696822330356,-0.15078546106815],[0.36354610323906,0.058532740920782,0.015275808982551]],[[-0.027376927435398,0.010026436299086,0.040203422307968],[-0.012711481191218,-0.018339723348618,-0.020246973261237],[0.051544155925512,-0.01535162422806,-0.0048307697288692]],[[-0.0085194120183587,0.069277673959732,-0.14003682136536],[0.094802498817444,-0.026153212413192,-0.10433715581894],[0.045776940882206,0.11388774961233,-0.072234153747559]],[[0.055673535913229,-0.032863490283489,-0.0083041051402688],[-0.011910978704691,0.079486452043056,0.090500272810459],[-0.045505650341511,0.17289328575134,-0.039039060473442]],[[-0.11251141875982,0.015784405171871,-0.08259042352438],[-0.025494704023004,0.039638739079237,0.1778694242239],[-0.024002788588405,-0.13330166041851,0.18193912506104]],[[0.0045036543160677,-0.11466209590435,0.11156792938709],[0.0082333320751786,-0.12733301520348,0.060556404292583],[-0.14107185602188,0.0051163965836167,0.11386086046696]],[[-0.077851258218288,0.051041219383478,-0.015355644747615],[-0.070485584437847,-0.11880315840244,0.095729641616344],[-0.24666318297386,-0.069792687892914,-0.09503497928381]],[[0.12781795859337,0.1148983463645,-0.0072607938200235],[-0.10369435697794,-0.14363189041615,-0.0089339492842555],[0.039419367909431,0.0071764015592635,-0.18533138930798]],[[-0.25495654344559,-0.22354376316071,0.10094378888607],[-0.073303230106831,-0.19018357992172,0.12313931435347],[0.19878789782524,0.13052143156528,0.13411474227905]],[[-0.035449765622616,0.048416908830404,0.078488752245903],[0.16803082823753,0.021947771310806,-0.043588124215603],[-0.047449339181185,-0.067475348711014,-0.11155597120523]],[[-0.020693985745311,0.059291865676641,-0.026367334648967],[-0.12490200996399,-0.0070141707547009,-0.054181329905987],[0.016318963840604,0.094494894146919,0.036142915487289]],[[-0.12680380046368,-0.040943190455437,-0.067394755780697],[0.02018029242754,0.025706171989441,0.14975097775459],[0.18996687233448,0.069269277155399,0.03797971829772]],[[0.19445668160915,0.026096731424332,-0.039261929690838],[0.28542956709862,0.0075709074735641,-0.025865657255054],[0.23964367806911,-0.0014298548921943,-0.11728782206774]],[[-0.057428419589996,0.031301129609346,0.083580106496811],[0.12804155051708,0.09862557798624,0.00078812061110511],[0.039028760045767,-0.15193995833397,-0.14487428963184]],[[-0.16316130757332,-0.04685415700078,0.052759241312742],[-0.10703212767839,-0.022146055474877,0.19336186349392],[-0.032458659261465,-0.070446401834488,0.10020190477371]],[[-0.09338591247797,0.033926334232092,0.12721833586693],[-0.068737499415874,-0.13494016230106,-0.061024181544781],[0.070721171796322,-0.14832247793674,-0.17297361791134]],[[-0.1314785182476,-0.090572126209736,0.16909128427505],[-0.049579109996557,-0.26643562316895,0.014818717725575],[0.040846552699804,0.03438414260745,-0.046898484230042]],[[-0.012078723870218,-0.065943628549576,-0.23031531274319],[-0.0059961257502437,-0.17757549881935,-0.14995723962784],[-0.15241934359074,0.0063387658447027,0.15826822817326]],[[0.047861453145742,-0.17918895184994,0.139004945755],[-0.10927125066519,0.044184539467096,0.07946440577507],[0.075996197760105,0.13968266546726,0.11342012882233]],[[0.0049999472685158,0.15378297865391,-0.2430005967617],[-0.037625331431627,-0.067570611834526,-0.17771025002003],[0.1656316369772,0.19524104893208,-0.015845108777285]],[[-0.034870374947786,0.037912618368864,-0.037891961634159],[-0.0077196480706334,-0.037545874714851,-0.058374516665936],[0.20153969526291,0.15712893009186,0.1004725843668]],[[-0.064581915736198,-0.25660315155983,0.047667477279902],[0.27879104018211,0.083678565919399,0.098058953881264],[0.33110764622688,-0.031692393124104,0.10613638907671]],[[-0.1151807308197,0.035283025354147,-0.044918924570084],[-0.16720589995384,-0.18219713866711,-0.096065945923328],[0.079884573817253,-0.051404654979706,-0.077248953282833]],[[-0.024917518720031,-0.0092394407838583,0.026802679523826],[-0.020120538771152,-0.049185872077942,0.01552992593497],[0.010053136385977,-0.022681508213282,0.087113581597805]],[[-0.072615347802639,-0.023086182773113,-0.038271445780993],[0.0040383520536125,0.18011458218098,0.077811688184738],[0.0060645015910268,0.16238622367382,0.027678936719894]],[[0.0068910857662559,-0.11320120841265,-0.10836295038462],[0.012586526572704,-0.032447274774313,-0.19511558115482],[0.031294379383326,0.074642740190029,-0.12481255084276]],[[0.082441471517086,0.050148744136095,0.032777354121208],[-0.030402099713683,0.12472526729107,0.10518879443407],[-0.11317965388298,-0.10232135653496,-0.075768828392029]],[[-0.066206060349941,0.099929414689541,0.10695303976536],[0.025716859847307,-0.0015652906149626,-0.066995419561863],[-0.059086658060551,0.086630187928677,-0.01360924448818]],[[-0.11192187666893,0.078103870153427,0.15637795627117],[-0.059134777635336,0.10567159950733,0.087585844099522],[0.035121981054544,-0.01872518286109,0.22212569415569]],[[-0.18116447329521,-0.30767676234245,0.027544289827347],[-0.10596270114183,-0.064713984727859,-0.068974561989307],[-0.094444297254086,-0.08188683539629,0.12039374560118]],[[-0.10318870842457,-0.084349900484085,0.0014983724104241],[-0.014143800362945,0.12671437859535,0.0089424680918455],[-0.039561472833157,-0.152756690979,0.031527746468782]],[[-0.051626939326525,-0.14587892591953,-0.21662846207619],[-0.070926703512669,-0.11210674792528,-0.10538671910763],[-0.0048757884651423,0.052843768149614,0.095529288053513]],[[0.044379498809576,0.049906309694052,-0.040975462645292],[-0.23829065263271,-0.09838155657053,0.050995945930481],[-0.12254207581282,0.097156912088394,0.089506529271603]],[[0.061929453164339,0.16249030828476,0.23062448203564],[-0.12986077368259,0.1096834987402,0.17081552743912],[0.055053263902664,0.068121135234833,0.026916172355413]],[[0.082065209746361,-0.017543086782098,-0.070232428610325],[0.12820142507553,0.037386540323496,0.070632226765156],[-0.035510573536158,-0.07357993721962,-0.051476191729307]],[[0.013395407237113,0.074251495301723,-0.12208608537912],[-0.079428732395172,0.10626673698425,-0.089557990431786],[-0.085966691374779,0.1241614818573,0.031874429434538]],[[0.077201902866364,-0.00032568705501035,-0.2002794444561],[0.065644025802612,-0.11133075505495,-0.074292823672295],[0.044488571584225,0.021820455789566,0.0557931214571]],[[0.19276875257492,0.11649738252163,-0.12677465379238],[0.040123283863068,0.098194748163223,-0.054416809231043],[-0.095513537526131,-0.02299521677196,-0.053521182388067]],[[-0.079092249274254,-0.11658953130245,-0.0062118349596858],[-0.093784764409065,-0.035420808941126,-0.019220490008593],[-0.015943627804518,0.0081898961216211,0.040889501571655]],[[0.024408295750618,-0.052381794899702,0.10076504945755],[-0.054808974266052,0.009866688400507,0.10970874875784],[0.14940336346626,0.055780224502087,0.058929562568665]],[[0.055051982402802,-0.042748887091875,-0.19229248166084],[-0.0088555132970214,0.074084378778934,-0.05643117800355],[0.093454107642174,0.12425817549229,0.061108700931072]],[[0.2407564073801,0.057682987302542,0.06426914781332],[0.02779552526772,0.029609974473715,-0.10935293883085],[-0.093482658267021,-0.11255409568548,-0.0020452002063394]],[[-0.092873848974705,0.059538345783949,0.1159937530756],[0.04166017845273,-0.054248616099358,-0.11172028630972],[0.087500162422657,-0.087321512401104,0.0028244501445442]],[[0.076827876269817,-0.011122800409794,0.073901019990444],[-0.13341026008129,0.059854663908482,0.11466640233994],[-0.020465919747949,-0.080964386463165,-0.070113107562065]],[[0.037517964839935,-0.1089831367135,-0.1071093082428],[-0.046966403722763,-0.066818132996559,-0.030479477718472],[0.16988848149776,0.069006986916065,0.031740710139275]],[[0.13722802698612,0.12071893364191,0.093206338584423],[-0.023360902443528,0.007790117058903,0.017262240871787],[-0.08654660731554,0.11772228032351,0.026977738365531]],[[-0.17812788486481,-0.14371663331985,-0.010576019063592],[-0.089030772447586,-0.031982116401196,0.010382478125393],[0.18082648515701,0.17069923877716,-0.067083470523357]],[[0.02015246078372,-0.22097107768059,-0.090672679245472],[0.12884469330311,-0.10324236750603,-0.1764170229435],[0.23929008841515,-0.031985875219107,-0.16313929855824]],[[-0.026515679433942,-0.14847633242607,0.00095534860156476],[-0.048371020704508,-0.044100921601057,0.032708648592234],[-0.058288294821978,0.029728496447206,0.035455949604511]],[[0.018155585974455,0.028797136619687,-0.075350977480412],[-0.028220096603036,-0.079463429749012,-0.13013733923435],[-0.062868662178516,0.046506240963936,0.010573441162705]],[[0.0043655135668814,-0.1851352006197,0.12552677094936],[-0.0068557299673557,0.011327258311212,0.28649908304214],[0.02681627497077,-0.01254549715668,0.15822087228298]],[[0.047940246760845,-0.11228999495506,-0.043483108282089],[-0.063055999577045,0.10699237138033,0.054919123649597],[-0.028621532022953,0.19368295371532,-0.028656031936407]],[[0.181028008461,0.19074414670467,0.014430715702474],[-0.087712109088898,-0.0218610111624,-0.051804985851049],[-0.069011963903904,0.012980452738702,-0.12390103191137]],[[0.17324833571911,0.12645399570465,0.029094234108925],[-0.080001160502434,-0.2443164139986,-0.12448676675558],[-0.00091081066057086,-0.062991760671139,0.035957798361778]],[[-0.0058478699065745,0.042334821075201,-0.16953858733177],[-0.03185185790062,-0.086989812552929,-0.16079807281494],[-0.07616151124239,-0.078284367918968,-0.1359695494175]],[[-0.092521734535694,-0.21818551421165,-0.10062233358622],[0.041000984609127,-0.07521778345108,-0.08808384090662],[0.018721541389823,-0.006290627643466,-0.057883951812983]],[[-0.12800607085228,0.24631734192371,0.10518802702427],[0.0916353687644,0.15744322538376,-0.03713097423315],[-0.0010215558577329,0.1914250254631,-0.022961538285017]],[[-0.12648595869541,0.01586196012795,-0.24162559211254],[-0.018835948780179,-0.037102531641722,-0.14992608129978],[-0.018862005323172,-0.085987530648708,-0.27138325572014]],[[-0.10826401412487,-0.027224253863096,-0.036038409918547],[-0.016334444284439,-0.038257420063019,-0.00012574694119394],[-0.17576706409454,0.11052003502846,0.0016623802948743]],[[0.19153727591038,0.10379153490067,-0.024818560108542],[0.20069283246994,0.022981520742178,0.14139986038208],[0.033224560320377,0.037421133369207,-0.0022441816981882]],[[-0.03427405282855,-0.11717792600393,0.12520115077496],[0.066329322755337,-0.1514151096344,0.031736399978399],[-0.18021357059479,-0.082231745123863,-0.031268805265427]],[[0.052432790398598,0.00064194807782769,-0.13588351011276],[-0.1195956543088,-0.050394657999277,-0.13095673918724],[-0.071461260318756,0.22023703157902,-0.057868622243404]],[[-0.026265792548656,0.23375777900219,0.047462236136198],[0.1058720946312,-0.25575163960457,-0.13032196462154],[-0.054550513625145,-0.24872294068336,-0.0051026493310928]],[[0.055097568780184,-0.14120553433895,0.031899146735668],[-0.0053832968696952,0.058294251561165,0.23636414110661],[0.14792008697987,0.22917465865612,-0.012520065531135]],[[-0.048910412937403,-0.086714893579483,-0.0058449422940612],[-0.22595508396626,0.084034271538258,0.015639401972294],[0.049460962414742,-0.0074774310924113,-0.18028385937214]],[[-0.066970981657505,0.13235092163086,-0.0926508679986],[0.068834275007248,0.056314308196306,0.055805373936892],[-0.17445883154869,0.017553858458996,-0.017753195017576]],[[0.057885330170393,-0.13302539288998,-0.022369248792529],[-0.03605742752552,-0.053177457302809,-0.043286766856909],[0.065576985478401,0.048504404723644,0.061748564243317]],[[0.18720415234566,-0.045555979013443,-0.25025707483292],[0.076774425804615,0.022974144667387,0.10363269597292],[0.018603779375553,0.14352776110172,0.12589906156063]],[[-0.16150869429111,-0.16849610209465,-0.095886960625648],[0.10924506187439,0.054400082677603,0.063354328274727],[0.047680646181107,0.033467885106802,0.06561791151762]],[[-0.16788904368877,0.038961168378592,-0.01040968298912],[0.033616714179516,0.026492601260543,-0.20209188759327],[-0.017151821404696,-0.14617936313152,-0.15498381853104]],[[0.051025025546551,0.068979047238827,0.088424660265446],[-0.024921135976911,0.090419471263885,-0.062968038022518],[-0.14871464669704,0.077333971858025,0.07899434864521]],[[-0.0048845764249563,-0.11806085705757,0.14188024401665],[0.098202958703041,-0.048240929841995,-0.085723608732224],[-0.10609902441502,-0.10444040596485,-0.21960717439651]],[[0.036083854734898,-0.022608313709497,0.053107682615519],[0.016684573143721,-0.0070748799480498,0.01324852462858],[-0.024422314018011,0.022237375378609,0.14442798495293]],[[-0.017069453373551,0.043305438011885,0.0019298248225823],[-0.27764675021172,-0.21929600834846,0.094210252165794],[-0.027520708739758,-0.0014047004515305,-0.097725555300713]],[[-0.052283920347691,-0.10040651261806,-0.086933583021164],[-0.071305528283119,0.037831332534552,0.054702986031771],[0.074056811630726,0.0042113978415728,-0.034941434860229]],[[-0.12049826979637,-0.054016962647438,0.25908741354942],[0.0062432438135147,0.022071791812778,0.14137896895409],[0.020935367792845,0.086795710027218,-0.14298410713673]],[[-0.23457218706608,-0.032601252198219,-0.067320257425308],[0.024430029094219,-0.086226291954517,-0.11502425372601],[-0.30793786048889,-0.1244270503521,-0.098192602396011]],[[0.083388857543468,-0.057119697332382,-0.094820939004421],[0.060054987668991,-0.069813795387745,-0.11139003932476],[0.19445748627186,0.022784972563386,0.051084756851196]],[[-0.07039175927639,-0.088057555258274,-0.11178071051836],[-0.02653413079679,0.26049757003784,0.079981230199337],[-0.11273141950369,-0.043317686766386,0.031095517799258]],[[-0.092267088592052,-0.098867334425449,0.18009513616562],[0.057969458401203,-0.062870539724827,0.075003899633884],[-0.13063265383244,-0.0893834233284,0.19450840353966]],[[-0.078286290168762,-0.10612006485462,0.015345829539001],[-0.0047657852992415,0.092430032789707,-0.083753906190395],[-0.039768908172846,0.036284480243921,0.046293240040541]],[[-0.24909962713718,0.11942121386528,0.16446137428284],[-0.072900056838989,0.11940295249224,0.0058130156248808],[0.16260726749897,0.082878544926643,-0.094743520021439]],[[0.024640429764986,0.017034878954291,0.034725651144981],[-0.0037952119018883,0.046679951250553,-0.19100886583328],[-0.086657926440239,0.059111416339874,-0.064444482326508]],[[0.11109772324562,0.083912126719952,0.03024286031723],[-0.0085505731403828,0.032894257456064,-0.053582150489092],[0.050837486982346,0.043857716023922,0.078890085220337]],[[-0.12724241614342,0.10851309448481,0.11939343065023],[-0.11616203933954,-0.041841775178909,-0.053799882531166],[-0.14379358291626,-0.13550496101379,0.067975118756294]],[[-0.062563866376877,0.20185087621212,-0.0073465425521135],[-0.073353812098503,0.2762211561203,0.04023939371109],[0.071229040622711,0.0043413583189249,-0.20901933312416]],[[0.084259800612926,0.1873324662447,0.044487059116364],[-0.19149021804333,-0.064362429082394,-0.020743871107697],[-0.15245132148266,-0.0078383758664131,0.11415485292673]],[[0.12071766704321,0.14516888558865,-0.17372900247574],[-0.13435357809067,0.039007555693388,0.10168511420488],[0.06032944098115,-0.030424786731601,-0.05990120023489]],[[-0.29545414447784,0.16809548437595,0.027448870241642],[-0.062682338058949,0.025991279631853,-0.031360808759928],[-0.097708351910114,-0.0058156554587185,-0.15434347093105]],[[0.18584084510803,0.066581159830093,0.0055557647719979],[-0.035714223980904,-0.06295882165432,-0.038771077990532],[-0.22079718112946,-0.23403126001358,0.019581135362387]],[[0.099289007484913,-0.065860696136951,-0.31182068586349],[-0.14502690732479,-0.096787758171558,-0.022429618984461],[-0.12334226071835,-0.21154341101646,0.030826875939965]],[[0.069641262292862,-0.17082969844341,0.2472475618124],[0.0049615260213614,-0.074238300323486,0.20249554514885],[0.061128407716751,0.0055551948025823,0.086839139461517]],[[-0.053613059222698,-0.14280673861504,-0.35553884506226],[-0.061898168176413,0.076349020004272,-0.084796778857708],[0.058618720620871,0.23314239084721,-0.12387461215258]],[[-0.05539495497942,-0.10726395994425,-0.12843529880047],[-0.055987890809774,0.011777643114328,-0.074714459478855],[-0.046849381178617,0.029153544455767,-0.13983288407326]],[[-0.027586866170168,0.016434662044048,0.14429984986782],[0.087702035903931,0.012557441368699,0.044850882142782],[0.016723968088627,-0.30345219373703,0.15894460678101]],[[0.057233341038227,0.055710230022669,-0.13220307230949],[0.18177911639214,0.13667298853397,-0.12370181828737],[0.21708717942238,0.16328735649586,-0.18593207001686]],[[0.053026333451271,-0.061717797070742,-0.088752143085003],[0.046041946858168,0.10259448736906,0.0042034653015435],[0.10977856069803,0.16001349687576,0.022998476400971]],[[0.1783509850502,-0.05216496065259,0.042547333985567],[0.10717714577913,-0.069265186786652,-0.1070254445076],[-0.079997465014458,-0.096962042152882,0.057609800249338]],[[0.036382421851158,0.17341676354408,0.17980813980103],[0.076091177761555,0.11809565126896,0.20107300579548],[-0.046950649470091,0.02587534300983,-0.020857777446508]],[[-0.20106762647629,-0.080014318227768,-0.10887979716063],[-0.24767896533012,0.053849037736654,-0.028392696753144],[0.026488553732634,0.03177010640502,0.10101683437824]],[[-0.037245944142342,0.094732537865639,0.015735026448965],[-0.058220505714417,0.059901148080826,0.042512699961662],[0.17501427233219,-0.12230394035578,-0.26491305232048]],[[-0.15612806379795,-0.082652546465397,0.14943426847458],[-0.17566402256489,0.12147045135498,0.11366745084524],[0.14132592082024,0.0075197238475084,-0.14671596884727]],[[-0.082311905920506,-0.028403179720044,0.0051440172828734],[0.056217886507511,0.025264289230108,-0.10127730667591],[0.060486417263746,0.066417723894119,0.20717583596706]],[[-0.14254827797413,-0.13581281900406,0.10169418901205],[-0.0072220312431455,-0.065589748322964,0.11509272456169],[-0.090994656085968,-0.056881859898567,0.082436516880989]],[[0.13562551140785,0.11316706985235,-0.11261392384768],[0.01519878115505,0.10893889516592,-0.021619077771902],[-0.0449059009552,0.089879266917706,0.15413676202297]],[[0.061222456395626,0.055435303598642,-0.021140834316611],[-0.013343437574804,-0.050331927835941,-0.13619907200336],[-0.11573909968138,0.03655356913805,0.0023737633600831]],[[0.17331850528717,-0.030136620625854,0.089630872011185],[0.052770372480154,-0.03208713978529,0.0093178069218993],[0.027622696012259,-0.048002954572439,-0.036587283015251]],[[-0.090673863887787,-0.15621180832386,-0.014745812863111],[-0.023663908243179,-0.079744540154934,0.076516352593899],[0.072277210652828,0.038892261683941,0.026910958811641]],[[0.021308036521077,0.10417369008064,-0.13626971840858],[-0.17385835945606,-0.081748403608799,0.064724080264568],[-0.011736523360014,-0.048454258590937,0.039297591894865]],[[-0.0063116848468781,-0.098437413573265,0.086050488054752],[0.12409427762032,-0.010881367139518,-0.12273342907429],[-0.13909189403057,-0.039520796388388,0.078994892537594]],[[-0.0082264449447393,0.097343444824219,-0.010365876369178],[-0.017489813268185,-0.065801829099655,-0.15293857455254],[-0.010607959702611,-0.13549143075943,-0.040075957775116]],[[0.043767523020506,-0.081652976572514,0.13481901586056],[0.0077911769039929,-0.083761028945446,0.048584472388029],[-0.091753415763378,-0.083449140191078,0.13067443668842]],[[-0.13768567144871,-0.019405610859394,0.076127201318741],[0.033232729882002,-0.0039457622915506,0.035876505076885],[-0.082742981612682,0.023667577654123,-0.061180338263512]],[[0.023116292431951,-0.13405959308147,-0.058340724557638],[0.018914215266705,-0.081973731517792,0.039432931691408],[0.10037879645824,-0.074966356158257,0.054061181843281]],[[0.15560533106327,0.054385807365179,0.043856129050255],[0.1049365401268,-0.17216211557388,0.0031915418803692],[-0.021472157910466,-0.13554830849171,-0.12864680588245]],[[0.084389626979828,0.045860446989536,-0.17968122661114],[0.14751599729061,-0.1205323562026,0.12340508401394],[-0.0018490849761292,0.053767722100019,-0.026698186993599]],[[0.042207855731249,-0.027923399582505,0.10268031060696],[0.0021624544169754,0.077826902270317,-0.048614501953125],[-0.24741776287556,0.078217566013336,0.021868452429771]],[[-0.077229432761669,-0.014012143947184,0.26718392968178],[-0.071245402097702,0.19095402956009,0.10766865313053],[0.019618067890406,-0.071371309459209,0.0057036834768951]],[[-0.048594381660223,0.027516517788172,-0.027660666033626],[0.046523571014404,-0.14455725252628,-0.057591531425714],[-0.028761902824044,-0.077938839793205,-0.015840176492929]],[[-0.088809959590435,-0.19168062508106,-0.21427993476391],[-0.10771681368351,0.037809561938047,-0.097078673541546],[0.042262513190508,0.065260618925095,0.1212947294116]],[[-0.022382574155927,-0.050068452954292,0.046575658023357],[0.064760752022266,0.19752961397171,-0.027757722884417],[-0.033971030265093,0.0059787090867758,-0.20220053195953]],[[-0.12111568450928,0.026185732334852,0.11711899936199],[-0.24153539538383,-0.0058603254146874,0.045201774686575],[-0.29540428519249,0.062315721064806,0.11320351809263]],[[-0.13611371815205,0.14915476739407,0.18121965229511],[0.0023970226757228,-0.038776025176048,0.070783920586109],[-0.14430552721024,-0.067798621952534,0.039071835577488]],[[-0.0097749978303909,-0.0019671621266752,-0.057847816497087],[0.14339737594128,0.21321666240692,-0.03009333088994],[-0.16701476275921,0.076627001166344,-0.041627265512943]],[[0.26510947942734,-0.044319119304419,-0.10175576806068],[0.12409000098705,0.015527518466115,-0.088170602917671],[0.038302805274725,0.21672789752483,-0.044283919036388]]],[[[-0.016057081520557,0.061236280947924,0.085311278700829],[0.042900178581476,0.064281567931175,-0.20575819909573],[-0.093959793448448,-0.23690840601921,-0.16480255126953]],[[-0.09756276011467,-0.077681720256805,-0.0054619326256216],[-0.052637189626694,-0.12797951698303,-0.037113688886166],[0.23233704268932,0.17193314433098,-0.11454606801271]],[[0.1748251914978,0.13735453784466,0.14188906550407],[0.022956917062402,0.057123977690935,0.25028136372566],[0.16502794623375,0.080427564680576,0.069487780332565]],[[-0.11088091880083,-0.22272384166718,-0.028760425746441],[0.022076420485973,0.032094482332468,-0.010950311087072],[0.12384019047022,0.030234796926379,-0.090814776718616]],[[0.15831780433655,0.19468247890472,-0.072520643472672],[-0.10693939775229,-0.01406963262707,0.080935575067997],[0.015153654851019,-0.03430100530386,-0.014639628119767]],[[-0.0089480467140675,0.026607435196638,-0.10499806702137],[-0.0012955567799509,-0.086901053786278,-0.0089498749002814],[0.10004382580519,0.062411595135927,0.047784563153982]],[[0.16693273186684,0.11217427998781,0.022091338410974],[-0.13996529579163,0.038548521697521,-0.044698890298605],[0.15915790200233,0.12056095153093,-0.23879024386406]],[[-0.065252058207989,0.010628144256771,-0.15529882907867],[-0.044121898710728,0.15366567671299,0.15593938529491],[0.15359948575497,0.094030916690826,0.1297240704298]],[[0.029701605439186,0.059997037053108,-0.11789902299643],[-0.034528415650129,-0.11691857874393,-0.26299524307251],[0.039470832794905,0.1838740259409,0.039653070271015]],[[0.13063071668148,-0.087065175175667,0.17069073021412],[0.071714095771313,-0.23481607437134,0.10017791390419],[-0.087422020733356,-0.025320872664452,-0.27818989753723]],[[0.074969068169594,0.15780048072338,-0.00097577029373497],[-0.072836615145206,0.028645120561123,0.21996438503265],[-0.072926983237267,0.045011423528194,0.030866239219904]],[[-0.12868438661098,0.035650610923767,0.16035470366478],[-0.20621444284916,0.13427184522152,0.13866458833218],[0.15608704090118,0.006449275650084,-0.18194505572319]],[[-0.19647759199142,-0.32952296733856,-0.19781759381294],[0.16445882618427,0.19930648803711,-0.030475897714496],[0.012750322930515,0.026587085798383,0.28800898790359]],[[-0.14603336155415,-0.10625100135803,-0.060280416160822],[-0.16440889239311,-0.067945621907711,0.074568517506123],[0.014971074648201,0.0022646132856607,-0.03637208417058]],[[-0.33076664805412,0.033791039139032,-0.040393467992544],[-0.1469556838274,0.19755195081234,0.15130929648876],[0.034010861068964,0.076168686151505,0.15125319361687]],[[0.025743644684553,-0.088371589779854,-0.015071731060743],[-0.043352991342545,-0.053617257624865,-0.093346580862999],[0.10422840714455,-0.041146833449602,-0.0038655342068523]],[[-0.11605293303728,0.026067491620779,0.29184192419052],[0.018141081556678,0.052389651536942,0.051118820905685],[0.11407990753651,-0.043248314410448,-0.20587733387947]],[[-0.13396202027798,-0.038834266364574,0.028343172743917],[-0.0035813618451357,0.14699168503284,0.051754504442215],[-0.092982038855553,-0.088803425431252,-0.050351042300463]],[[0.083709508180618,-0.10002788156271,0.091379433870316],[-0.029665097594261,0.12076694518328,0.23563039302826],[-0.034055780619383,-0.10242829471827,-0.091742433607578]],[[0.0035062881652266,0.11665150523186,0.16374626755714],[-0.16902197897434,0.014417706057429,0.050381992012262],[-0.10304389148951,-0.04586673900485,-0.1678669154644]],[[-0.012976047582924,0.016944944858551,-0.041236236691475],[-0.20097561180592,-0.10342959314585,-0.042199362069368],[-0.091409727931023,0.10667516291142,0.23964589834213]],[[0.13137619197369,0.16122370958328,0.11018554866314],[0.070306502282619,-0.025008274242282,0.1956779807806],[-0.11541886627674,0.091014198958874,0.10672751814127]],[[-0.0099003696814179,-0.12875844538212,-0.23301926255226],[0.0064718574285507,0.012008164077997,-0.074873067438602],[0.015285153873265,0.081809528172016,-0.04785580188036]],[[-0.07475421577692,-0.15029312670231,-0.13805669546127],[-0.16936472058296,-0.19289509952068,-0.19229716062546],[0.15760163962841,0.09548681974411,-0.035942450165749]],[[-0.13815021514893,0.045273315161467,-0.067390091717243],[-0.041889499872923,0.053552463650703,0.14940971136093],[0.11359021812677,-0.061062712222338,-0.055183075368404]],[[0.045097563415766,0.12161096185446,-0.04324896261096],[-0.12071291357279,-0.094121769070625,-0.16622510552406],[0.077464513480663,0.057595103979111,0.019003828987479]],[[-0.070274025201797,-0.13794043660164,-0.11863594502211],[-0.045045744627714,-0.049360614269972,-0.064571186900139],[0.18561035394669,0.020322415977716,-0.025898534804583]],[[0.17711387574673,0.14561440050602,0.094676055014133],[0.046894948929548,0.1300960034132,0.15261323750019],[0.042082190513611,-0.12315817177296,-0.19929499924183]],[[-0.095411382615566,-0.13850976526737,0.024530082941055],[-0.067615635693073,-0.032371703535318,-0.039743013679981],[0.091217294335365,-0.00094692362472415,-0.17949970066547]],[[0.056948378682137,-0.007628149818629,-0.016182214021683],[0.059767782688141,0.089538902044296,-0.032412484288216],[-0.19695600867271,-0.17733466625214,0.015614371746778]],[[-0.0043649994768202,0.055011063814163,-0.061233587563038],[-0.033765219151974,0.072273597121239,0.077182345092297],[-0.13503777980804,-0.12772123515606,0.11769817024469]],[[0.16897138953209,0.1432196944952,0.003264352446422],[-0.14415900409222,0.12799689173698,-0.018031606450677],[0.041161682456732,0.073894806206226,0.14704512059689]],[[-0.18456076085567,-0.270626693964,0.022844789549708],[0.078249387443066,0.073571033775806,0.11884617060423],[-0.21441718935966,-0.074963919818401,0.025411458685994]],[[0.089729748666286,0.037474066019058,-0.012905465438962],[0.12561310827732,0.13097932934761,0.10823742300272],[-0.16450768709183,-0.19390968978405,0.11180236190557]],[[-0.11795773357153,-0.11269876360893,-0.00043496920261532],[0.084049500524998,-0.14516419172287,-0.1543186455965],[0.12766985595226,0.076570689678192,0.018257373943925]],[[-0.083805255591869,0.17582152783871,0.25943422317505],[-0.0085508087649941,-0.28586110472679,-0.15641701221466],[-0.064660310745239,-0.024537544697523,0.013537126593292]],[[0.045561231672764,0.095607705414295,0.084580853581429],[-0.094527997076511,0.081659972667694,0.19697692990303],[-0.088693164288998,0.037363775074482,0.062253639101982]],[[0.15678034722805,0.12488868832588,-0.051154650747776],[-0.0049189757555723,0.039001610130072,0.055354662239552],[-0.061448212713003,0.024806000292301,0.0320481993258]],[[-0.11374204605818,-0.12664468586445,-0.13033980131149],[0.076198101043701,-0.12648259103298,-0.062289018183947],[0.05839316546917,0.00032911487505771,-0.0079827522858977]],[[0.12781836092472,0.051684595644474,-0.099254876375198],[-0.059434678405523,-0.18789514899254,-0.10812250524759],[0.029781028628349,0.12981301546097,0.21227245032787]],[[0.16538907587528,0.15681172907352,-0.066206395626068],[-0.063905656337738,-0.17932166159153,-0.084807068109512],[-0.1762270629406,-0.058246847242117,0.14193615317345]],[[-0.036158539354801,0.087063901126385,0.095542751252651],[-0.10749605298042,0.15031078457832,0.071300834417343],[-0.015914358198643,0.0010608488228172,-0.1340903788805]],[[-0.073426887392998,-0.092332817614079,-0.11754832416773],[-0.094405338168144,-0.21507708728313,-0.06083770096302],[-0.015450493432581,0.20630203187466,0.19241604208946]],[[0.13126468658447,-0.042302459478378,-0.087841995060444],[0.09218192845583,0.1405483931303,0.1735152900219],[-0.093558333814144,-0.071611121296883,-0.023224776610732]],[[0.26342770457268,0.20100477337837,0.16898603737354],[-0.11300954967737,0.0098957745358348,-0.070361457765102],[0.024257481098175,0.068781189620495,0.01858764141798]],[[-0.10392440855503,-0.022510766983032,0.12406805157661],[-0.2017797678709,-0.25396764278412,-0.13333374261856],[-0.01850757189095,0.046862661838531,0.048156205564737]],[[0.0041822362691164,-0.012550682760775,-0.071983464062214],[0.031077183783054,-0.24251328408718,0.037435662001371],[0.07932037115097,0.079399079084396,-0.30763548612595]],[[0.062567017972469,0.023368628695607,0.032178103923798],[-0.038331273943186,-0.12423135340214,-0.027445731684566],[0.12771493196487,-0.030901493504643,0.01071198284626]],[[0.1225812509656,0.037123497575521,0.043361466377974],[-0.14457987248898,-0.087928049266338,-0.030140455812216],[0.042564004659653,0.089325055480003,-0.12063854932785]],[[-0.23078928887844,-0.43761530518532,-0.22606302797794],[-0.074008889496326,-0.05369109287858,-0.056414753198624],[-0.092841379344463,-0.10966540127993,-0.034409057348967]],[[-0.12370051443577,-0.073385588824749,0.087190061807632],[-0.17024584114552,0.007212798576802,-0.046115972101688],[0.21675212681293,-0.17241680622101,-0.31331139802933]],[[0.16620613634586,-0.076092831790447,0.0097440127283335],[0.17477962374687,0.14408439397812,-0.10589976608753],[-0.10289640724659,-0.14709083735943,-0.092999510467052]],[[-0.0048512951470912,-0.011668385006487,-0.044406231492758],[0.12391738593578,0.055570106953382,-0.013978569768369],[-0.11929576843977,-0.060185953974724,-0.04932252317667]],[[-0.013807468116283,-0.01200136449188,0.050129484385252],[-0.055229868739843,-0.0031371605582535,0.06264490634203],[-0.018588664010167,0.019919926300645,-0.080738969147205]],[[-0.047688864171505,-0.18989835679531,0.050623796880245],[0.070502407848835,-0.083458870649338,-0.14815483987331],[0.00062028982210904,0.036079701036215,0.11555992811918]],[[0.10140381008387,-0.1720877289772,-0.059831857681274],[-0.0050975251942873,0.072678476572037,0.032798934727907],[0.002026041271165,0.051434420049191,0.034648790955544]],[[0.27714878320694,0.31731957197189,0.050476081669331],[-0.24081142246723,-0.020709300413728,-0.085498571395874],[-0.15924282371998,0.028312738984823,0.086550779640675]],[[-0.11652977764606,-0.15020237863064,-0.196463316679],[-0.084394909441471,-0.067955553531647,-0.10373230278492],[-0.25089529156685,-0.21057385206223,-0.049029517918825]],[[0.080765791237354,0.012534042820334,-0.063804775476456],[-0.036735434085131,-0.093658208847046,-0.00036933514638804],[-0.078420862555504,-0.14364016056061,-0.14920824766159]],[[-0.22233252227306,-0.10877449810505,-0.095104321837425],[0.23209400475025,0.1669750213623,0.12347114831209],[-0.14941690862179,-0.25781500339508,-0.096284031867981]],[[-0.013527699746192,-0.042641881853342,-0.067473724484444],[-0.014863914810121,-0.0051699918694794,-0.086960077285767],[-0.044907305389643,-0.053921088576317,-0.1930967271328]],[[-0.0028028725646436,-0.049939669668674,-0.0407296679914],[-0.025239469483495,-0.084028899669647,0.040301870554686],[0.076191008090973,0.025855042040348,-0.030283484607935]],[[0.15577811002731,-0.0017758930334821,-0.039083201438189],[-0.041116688400507,-0.053197804838419,-0.11699343472719],[0.18393929302692,0.14431062340736,0.0070939655415714]],[[-0.015372073277831,-0.0067607127130032,-0.021733758971095],[0.03481100872159,-0.10021491348743,0.042619582265615],[0.16762375831604,0.028417967259884,0.053435627371073]],[[-0.18436869978905,-0.16145861148834,-0.048745162785053],[0.020475378260016,-0.081527851521969,-0.10234607756138],[0.0005919118411839,0.032500717788935,0.10115095973015]],[[0.048794280737638,-0.10360813885927,-0.24215869605541],[-0.04420517757535,0.1249777302146,0.023443784564734],[0.0057857651263475,0.075163923203945,0.031379368156195]],[[0.10627865791321,-0.056331925094128,0.022096425294876],[-0.14353528618813,-0.098289124667645,-0.050177033990622],[0.40341785550117,0.10427316278219,-0.12874558568001]],[[-0.29407957196236,-0.10997917503119,0.052887711673975],[-0.086088083684444,-0.0092176022008061,-0.048679288476706],[0.10684044659138,-0.14985139667988,-0.19461578130722]],[[-0.030278054997325,-0.088783942162991,0.051234636455774],[0.26466143131256,0.16640022397041,-0.043743882328272],[-0.24478633701801,-0.1310783624649,0.014483531937003]],[[0.035584237426519,0.050134528428316,-0.051070027053356],[-0.19010703265667,-0.057649109512568,0.09387468546629],[0.0061721187084913,-0.0095803635194898,-0.047147262841463]],[[0.17481029033661,0.046561319380999,-0.015682017430663],[-0.013305880129337,0.088400788605213,0.37174773216248],[0.096198283135891,0.076060228049755,0.0982471331954]],[[0.10106239467859,0.20356529951096,0.1250236928463],[-0.075086697936058,-0.061471149325371,0.048605173826218],[-0.060573760420084,-0.11014577746391,-0.17300170660019]],[[-0.15409271419048,-0.19400304555893,-0.17430098354816],[0.20049987733364,0.075302116572857,0.00099522050004452],[-0.27574035525322,-0.41492515802383,-0.24996620416641]],[[-0.12748849391937,0.01786451973021,0.064393691718578],[-0.0049469079822302,-0.037220064550638,-0.1090250313282],[-0.081390902400017,0.004949058406055,0.18267534673214]],[[-0.15008723735809,-0.17737585306168,0.030951736494899],[-0.035021800547838,-0.0049879676662385,-0.033472545444965],[-0.11979437619448,-0.19391220808029,-0.24151457846165]],[[0.17276832461357,0.20324824750423,0.11927742511034],[-0.19248993694782,-0.17439059913158,-0.064687192440033],[-0.054634798318148,0.0010143128456548,0.049594704061747]],[[-0.051639400422573,-0.17392578721046,-0.095080025494099],[-0.13976126909256,0.037582609802485,0.22510023415089],[0.011628600768745,0.047890197485685,0.1602231413126]],[[-0.20729990303516,-0.29290056228638,-0.1123448908329],[0.16479797661304,0.17353831231594,0.011772589758039],[0.0011301545891911,-0.040441710501909,-0.085624352097511]],[[-0.033576726913452,-0.04746326059103,-0.12351302802563],[-0.093255154788494,0.11948385089636,0.25234878063202],[-0.1440681219101,-0.093296974897385,-0.017269482836127]],[[-0.029890257865191,-0.0084883123636246,-0.11833100020885],[-0.23860363662243,-0.080195091664791,-0.094503365457058],[-0.13203608989716,-0.16802203655243,0.030342804268003]],[[-0.030920015648007,-0.00013441426563077,0.1816531419754],[-0.15638795495033,-0.19533924758434,0.0050094872713089],[-0.091175496578217,0.079294376075268,0.15363636612892]],[[-0.004130071029067,-0.098394922912121,-0.02798230573535],[0.29683029651642,-0.064118981361389,0.05467239394784],[-0.22363293170929,-0.14469446241856,0.16347278654575]],[[0.17549709975719,-0.0086646750569344,0.061340123414993],[0.13535363972187,-0.019885635003448,-0.069676004350185],[0.084310464560986,0.10396962612867,0.14169025421143]],[[-0.075743608176708,-0.032729919999838,0.037781227380037],[-0.026992298662663,-0.017944788560271,0.0060346038080752],[0.0092160599306226,-0.071025162935257,-0.093690223991871]],[[0.034277532249689,0.032663699239492,0.017543340101838],[0.036635499447584,-0.051777295768261,-0.12892132997513],[0.3249988257885,0.019168255850673,-0.048453390598297]],[[0.031812340021133,0.11366395652294,0.1265009790659],[-0.12823607027531,-0.21967819333076,-0.26545202732086],[0.0021883219014853,-0.027056489139795,-0.035678062587976]],[[0.043332286179066,0.12370036542416,0.04734942317009],[-0.14736573398113,-0.10666354745626,-0.057375974953175],[0.15456163883209,0.082646332681179,-0.044940285384655]],[[0.013300951570272,0.19324070215225,0.072280056774616],[-0.025488115847111,-0.036960408091545,0.023818587884307],[-0.060355760157108,0.036881621927023,-0.039636112749577]],[[0.14663442969322,0.028976961970329,-0.060692511498928],[-0.017069520428777,-0.046930108219385,0.12184242904186],[0.0061128591187298,-0.27424156665802,-0.22999396920204]],[[-0.36678332090378,-0.24368397891521,-0.27829194068909],[-0.077129691839218,-0.070172563195229,-0.15946988761425],[0.19145078957081,0.029479632154107,-0.023003762587905]],[[0.025748778134584,-0.011409358121455,-0.17050644755363],[0.025171065703034,0.2300326526165,0.21291832625866],[-0.15081577003002,-0.1059505790472,-0.17049258947372]],[[-0.056351341307163,-0.17368178069592,0.031056731939316],[-0.041369177401066,-0.038845706731081,-0.10405900329351],[0.073282346129417,-0.048954259604216,-0.080135866999626]],[[-0.0016313593368977,0.053423378616571,-0.061678372323513],[0.15555277466774,0.14180214703083,-0.033850349485874],[-0.17028401792049,0.033840883523226,0.046273477375507]],[[-0.18593716621399,-0.13050737977028,-0.31978553533554],[-0.14035651087761,-0.099591866135597,-0.13074408471584],[0.0076102875173092,0.032687056809664,0.0885054692626]],[[0.18197576701641,0.022997869178653,-0.031640846282244],[-0.024567170068622,-0.078513972461224,-0.082798808813095],[0.18857511878014,0.10677109658718,-0.047730199992657]],[[0.064694851636887,-0.018959963694215,-0.44782611727715],[-0.00099996663630009,0.071382433176041,0.25185170769691],[0.016571464017034,-0.019632523879409,-0.032801009714603]],[[-0.14779032766819,-0.11033809185028,-0.018284656107426],[-0.012668686918914,-0.013849342241883,-0.043320152908564],[0.089849002659321,-0.029766552150249,-0.11179277300835]],[[-0.027621809393167,-0.1089206263423,-0.0052494262345135],[-0.07661247998476,0.026408994570374,0.047160647809505],[0.036143157631159,-0.041085280478001,-0.1187646985054]],[[-0.16651073098183,0.037721257656813,0.1313858628273],[-0.044391464442015,0.021774053573608,-0.012363810092211],[-0.025129906833172,0.018540499731898,-0.10401651263237]],[[0.085591249167919,0.11582393199205,0.1135675907135],[0.0088574904948473,-0.027035731822252,-0.080148339271545],[-0.01012138556689,-0.078509174287319,-0.13463453948498]],[[-0.11856213957071,-0.010359570384026,-0.024977242574096],[0.045150652527809,0.077852427959442,-0.10698894411325],[0.086624540388584,-0.041631691157818,-0.11015820503235]],[[0.080162815749645,0.20826645195484,0.23575869202614],[0.045021113008261,0.15062940120697,0.21593005955219],[-0.22141444683075,-0.080897465348244,-0.042872577905655]],[[0.034728296101093,-0.05659008026123,0.091707460582256],[0.012592788785696,-0.051206141710281,-0.059337548911572],[-0.053420539945364,-0.12348570674658,-0.054691132158041]],[[-0.096621431410313,0.07492433488369,0.034665152430534],[0.089269384741783,0.039990529417992,-0.028926910832524],[-0.030563738197088,-0.23124194145203,-0.1196658462286]],[[-0.064266487956047,-0.043069999665022,-0.035513445734978],[0.020304959267378,0.099246755242348,0.2097302377224],[-0.29816263914108,-0.18182972073555,-0.33360746502876]],[[-0.0043836841359735,-0.0069622904993594,0.047881703823805],[0.046389784663916,0.086751036345959,0.023171657696366],[0.13238377869129,0.23415400087833,0.18920934200287]],[[0.014757034368813,0.1303378790617,-0.0018869556952268],[0.080614246428013,0.034506168216467,-0.016655305400491],[-0.22305031120777,-0.024333106353879,0.26499545574188]],[[-0.1401475071907,-0.29610377550125,-0.15057246387005],[0.17993386089802,0.099486112594604,0.086789906024933],[-0.014173457399011,0.02740240842104,0.12593632936478]],[[-0.065039329230785,0.071296118199825,-0.09504073113203],[0.044569700956345,0.15424607694149,-0.060451660305262],[-0.010696392506361,0.051778357475996,0.0024080250877887]],[[0.23536144196987,-0.076459050178528,-0.16434143483639],[0.20146091282368,0.059056259691715,-0.00074576120823622],[-0.071949355304241,0.059952825307846,-0.027850920334458]],[[-0.038451224565506,-0.053716469556093,0.067887626588345],[-0.11761847883463,-0.14061297476292,-0.060257531702518],[0.14744518697262,0.062941558659077,0.046940945088863]],[[0.021513186395168,-0.046146966516972,-0.11699620634317],[-0.16738411784172,-0.06113513186574,0.22567161917686],[0.012813056819141,-0.068059422075748,-0.10010382533073]],[[0.11803507804871,0.07821974158287,0.026925001293421],[0.19875305891037,0.00041852123104036,-0.14195983111858],[-0.059652164578438,-0.044975657016039,-0.016976531594992]],[[0.13993845880032,-0.031687393784523,0.022143632173538],[-0.12061816453934,-0.1545112580061,-0.17928944528103],[-0.047155387699604,0.0052826618775725,0.051237393170595]],[[-0.019920751452446,-0.020664365962148,-0.11477607488632],[0.053199861198664,0.13295881450176,0.054448898881674],[0.058763023465872,-0.070273160934448,-0.11875484138727]],[[0.079938150942326,0.13594369590282,0.13258691132069],[-0.14376325905323,-0.053132738918066,-0.081993959844112],[0.025918014347553,-0.027710285037756,-0.11699274927378]],[[0.0021343189291656,0.051664061844349,0.085741713643074],[-0.11025938391685,-0.14282897114754,-0.23708416521549],[-0.056833688169718,0.15897271037102,0.20730628073215]],[[0.06820984184742,0.14925415813923,-0.09548632055521],[-0.10929092019796,0.05976477265358,0.18437622487545],[0.0091815143823624,0.0069294730201364,-0.0050444412045181]],[[-0.014261464588344,-0.031767133623362,-0.12145991623402],[-0.064301505684853,-0.061611700803041,0.08781535923481],[-0.11411544680595,0.096524797379971,0.014240034855902]],[[0.15651504695415,0.089121118187904,0.087275430560112],[0.13173979520798,-0.0025768431369215,-0.068535685539246],[-0.029375953599811,-0.059428907930851,-0.37870642542839]],[[0.052443694323301,0.10249370336533,0.25065636634827],[0.015284921042621,0.07258340716362,-0.013261369429529],[-0.063956156373024,-0.0094359647482634,0.031835746020079]],[[-0.066573403775692,-0.046202130615711,0.078164666891098],[0.055490635335445,0.015631441026926,-0.0028861011378467],[-0.013369319029152,0.11263153702021,0.015863578766584]],[[-0.26863843202591,-0.16291515529156,0.0020987477619201],[0.00132105499506,-0.096386507153511,-0.026172321289778],[0.13101433217525,0.10877680778503,0.068290568888187]],[[0.03327240422368,0.023439040407538,0.012305337935686],[-0.03488290309906,-0.027000464498997,0.1203597933054],[-0.072131603956223,-0.13948318362236,-0.19399903714657]],[[-0.16861361265182,-0.080898612737656,-0.078896343708038],[-0.039292968809605,-0.067132510244846,-0.16533078253269],[0.055190246552229,0.053731825202703,0.053235348314047]],[[0.00022457650629804,0.079895056784153,0.11315909773111],[-0.0046067689545453,0.071911446750164,0.1172159537673],[-0.09337230026722,-0.18308208882809,0.088174656033516]],[[-0.079673737287521,0.053313266485929,-0.04975912719965],[0.090369291603565,-0.0011677230941132,-0.012142417952418],[0.056489709764719,0.033181451261044,0.010394188575447]],[[-0.017865799367428,-0.14430271089077,-0.37025332450867],[0.044458284974098,0.10541810840368,0.028388511389494],[0.083124078810215,0.14041887223721,-0.059370934963226]]],[[[0.10838847607374,0.044081509113312,-0.019308118149638],[0.0086970711126924,0.024107562378049,0.059366833418608],[-0.1526795476675,0.066583022475243,0.14350566267967]],[[0.045153703540564,0.038048185408115,-0.021926367655396],[-0.025340979918838,0.079198554158211,-0.042915105819702],[-0.026202090084553,-0.083451390266418,0.066171765327454]],[[0.22267250716686,0.061725918203592,-0.13695727288723],[0.17072583734989,-0.03150413185358,0.11542208492756],[0.22601369023323,0.21005961298943,0.092522814869881]],[[0.033736284822226,0.018372483551502,-0.17359955608845],[-0.068933047354221,-0.077180445194244,0.068436667323112],[-0.081728465855122,-0.31794822216034,-0.10030939429998]],[[0.0465107858181,-0.017365720123053,-0.070539899170399],[-0.089827731251717,0.10462721437216,0.12602168321609],[-0.067143447697163,0.21834486722946,0.27682235836983]],[[-0.13385806977749,-0.062629535794258,-0.0082056354731321],[-0.0015687295235693,0.013956937007606,0.098906166851521],[-0.056615177541971,0.047908402979374,0.064135745167732]],[[-0.027962552383542,0.072023883461952,-0.11401417851448],[0.21938155591488,0.061197027564049,0.058352097868919],[0.005550931673497,-0.15929514169693,-0.095530800521374]],[[-0.027660889551044,-0.028578758239746,0.057593651115894],[0.010215136222541,-0.022934155538678,0.061364062130451],[0.016823779791594,-0.041048243641853,-0.042792186141014]],[[0.055450342595577,-0.035105425864458,0.11341581493616],[0.13899146020412,0.10901995003223,-0.050178743898869],[0.10040137916803,-0.12845955789089,0.094210863113403]],[[-0.086027458310127,-0.018807467073202,-0.1593241840601],[0.10666683316231,-0.053243961185217,-0.095343872904778],[0.091455794870853,-0.034154880791903,0.19596476852894]],[[0.15270522236824,0.03695073351264,0.31803289055824],[-0.018780251964927,0.0029167083557695,-0.099705383181572],[-0.16170893609524,-0.096517577767372,0.043597456067801]],[[0.11162972450256,0.14834399521351,-0.036795187741518],[-0.020428638905287,0.061561074107885,-0.060620822012424],[0.048877164721489,-0.0029461495578289,0.092501029372215]],[[0.019692301750183,0.009985102340579,-0.10691097378731],[0.053770828992128,-0.040771529078484,0.079756654798985],[0.10666026175022,-0.025392428040504,-0.19610027968884]],[[-0.2085595279932,0.018996305763721,0.16115766763687],[-0.046071913093328,-0.06445524841547,0.0008786633843556],[-0.099697090685368,-0.053632766008377,-0.11528433859348]],[[0.1419168561697,0.05410086363554,0.13424211740494],[-0.050587367266417,0.02076586522162,0.027009705081582],[-0.079607039690018,0.0043361280113459,-0.093712128698826]],[[-0.066739149391651,-0.10741154849529,0.073527365922928],[-0.036462415009737,0.0072995536029339,-0.11845856159925],[-0.12503297626972,-0.097454264760017,-0.10623220354319]],[[-0.1069063693285,-0.1762351244688,-0.20196563005447],[-0.1232552677393,-0.0554573610425,0.056934569031],[-0.0018519791774452,0.0058916411362588,-0.056269869208336]],[[-0.044329009950161,-0.12198519706726,-0.10132562369108],[-0.011661233380437,0.11242343485355,0.073645189404488],[0.10797227174044,0.17716896533966,0.2408035248518]],[[0.12115052342415,0.023185629397631,-0.17557026445866],[0.031079847365618,-0.021885070949793,-0.020506232976913],[-0.065266020596027,0.094807550311089,0.0040744771249592]],[[-0.001158828032203,0.057102847844362,-0.12420084327459],[0.067507177591324,0.095684759318829,-0.14350482821465],[0.0085476329550147,0.057016666978598,-0.11182099580765]],[[-0.085762605071068,-0.18665319681168,0.045602612197399],[0.010069404728711,-0.071694374084473,0.038515016436577],[0.0028301347047091,-0.068067654967308,0.04122468829155]],[[0.013939862139523,0.13827440142632,-0.057411756366491],[0.13346087932587,0.1713659465313,-0.010572752915323],[-0.019927436485887,-0.038543615490198,0.055184736847878]],[[0.027962746098638,-0.046844992786646,-0.01368123292923],[0.10441891103983,-0.024503270164132,0.038048651069403],[-0.015992363914847,-0.020890170708299,-0.049081649631262]],[[0.038900449872017,0.055088952183723,0.079223245382309],[-0.10683622211218,-0.12800835072994,-0.02209085226059],[-0.05392974242568,-0.19219976663589,-0.25984761118889]],[[0.11248511075974,-0.065020546317101,-0.031810950487852],[0.1130256652832,0.098506025969982,0.10115951299667],[0.060652516782284,-0.14566724002361,-0.21822082996368]],[[0.20174343883991,-0.062870115041733,0.066989041864872],[0.16526751220226,0.052820023149252,0.096872419118881],[-0.046922076493502,0.092803858220577,0.36738169193268]],[[0.026160560548306,0.034292660653591,0.099844850599766],[-0.041798751801252,0.20107297599316,0.12119130790234],[-0.050926096737385,0.25004497170448,-0.034136332571507]],[[0.082175172865391,-0.051908016204834,-0.0417745038867],[0.016583422198892,0.0069607752375305,-0.10604888945818],[0.14800649881363,-0.049994647502899,0.025463718920946]],[[-0.066312871873379,-0.070562481880188,-0.018366878852248],[-0.049724314361811,-0.060299403965473,-0.03416458889842],[0.019904512912035,0.0073918052949011,-0.04641617834568]],[[0.0091589763760567,-0.13641467690468,-0.082114271819592],[-0.16406200826168,-0.017391581088305,-0.041915319859982],[-0.1356281042099,-0.09390103071928,-0.063551537692547]],[[0.089039698243141,0.0070853941142559,0.054164338856936],[0.020663095638156,-0.071959011256695,0.080018021166325],[-0.073897056281567,-0.17580936849117,-0.17569133639336]],[[0.05441253259778,-0.23752737045288,0.035912871360779],[-0.03088734485209,0.031285911798477,0.081541024148464],[0.069602459669113,0.076169848442078,-0.11287415027618]],[[-0.022552121430635,-0.022716676816344,-0.039492394775152],[-3.6811350582866e-05,-0.01825663074851,0.17510382831097],[-0.12598377466202,-0.075543656945229,0.1070399954915]],[[-0.061634786427021,0.075278148055077,0.094988889992237],[0.0025229842867702,-0.025167267769575,0.053428884595633],[-0.15956661105156,0.093518294394016,0.24223808944225]],[[-0.012691911309958,-0.046484459191561,0.05377396941185],[0.040855940431356,-0.070830777287483,0.061676431447268],[0.0093390345573425,0.044776331633329,-0.19306647777557]],[[0.03458371385932,-0.16277879476547,-0.017673561349511],[-0.08058388531208,-0.13832624256611,0.045838709920645],[-0.1541049182415,-0.013547269627452,-0.012780372984707]],[[0.10025305300951,-0.023072661831975,0.16373616456985],[0.055264692753553,0.099793508648872,0.016949044540524],[-0.098152115941048,0.014587067998946,0.11849521100521]],[[-0.060334768146276,-0.043284587562084,0.070243142545223],[0.0038378860335797,-0.041629549115896,0.0049618603661656],[0.10354239493608,-0.013303061015904,-0.066624604165554]],[[0.097039841115475,0.02804990299046,0.10332145541906],[-0.034287363290787,-0.13599489629269,0.033317007124424],[0.11383225023746,-0.12104859948158,-0.12387893348932]],[[-0.054789576679468,-0.093817070126534,0.080908164381981],[0.019429059699178,-0.047257516533136,0.039498526602983],[0.043610256165266,0.003493539057672,0.042787600308657]],[[-0.015843516215682,0.063896238803864,0.03305509313941],[0.084841191768646,-0.027425304055214,-0.15400655567646],[-0.076304100453854,0.010842566378415,-0.18626882135868]],[[0.14720694720745,0.011345289647579,-0.033109921962023],[-0.0032032041344792,0.055467050522566,0.043821699917316],[0.04914154112339,0.061358004808426,-0.2146589756012]],[[-0.020853837952018,-0.10592655837536,-0.025747867301106],[-0.034399267286062,0.020582521334291,-0.19636315107346],[-0.12059555947781,0.006461035925895,0.0064944527111948]],[[-0.0058844271115959,-0.035536032170057,-0.10702119767666],[0.014721737243235,0.05804331600666,0.028465613722801],[0.0063932705670595,0.051763493567705,-0.10506735742092]],[[0.013075677677989,-0.22075016796589,-0.030324056744576],[0.073213934898376,0.03328350186348,-0.0071464236825705],[0.26218456029892,-0.076028600335121,-0.013093234039843]],[[-0.05233845859766,0.1499324887991,-0.02572737634182],[-0.091233558952808,0.072376534342766,-0.013836619444191],[0.070148579776287,0.045579243451357,0.14295069873333]],[[-0.2073920071125,-0.31395190954208,-0.03054678440094],[-0.05554535984993,-0.19212119281292,-0.10364204645157],[0.0040030064992607,-0.12211824953556,0.021800329908729]],[[0.31940680742264,0.066652819514275,-0.079155676066875],[0.041392914950848,-0.11562493443489,-0.05314539372921],[-0.048975847661495,0.053295880556107,-0.061657670885324]],[[-0.047855086624622,0.018822524696589,0.13068072497845],[0.04100476205349,-0.1091950237751,-0.063002973794937],[-0.0063028018921614,0.046745501458645,0.033439848572016]],[[-0.11782786250114,0.083829686045647,-0.053697314113379],[-0.12805317342281,0.070876248180866,0.022828947752714],[-0.18574047088623,0.055189643055201,0.0029318192973733]],[[0.02464959397912,0.10264237970114,0.010538570582867],[-0.081859923899174,-0.0086989188566804,-0.057466465979815],[-0.13154679536819,-0.12726134061813,0.083660446107388]],[[-0.036652319133282,-0.0013852212578058,0.072034329175949],[-0.10607766360044,-0.077721178531647,-0.049258891493082],[-0.06704269349575,-0.030188195407391,-0.27827432751656]],[[-0.035855017602444,-0.065541870892048,-0.021382911130786],[-0.058008961379528,0.037110384553671,0.11285188794136],[-0.044112350791693,-0.032263644039631,-0.047787737101316]],[[0.0560362637043,0.0039175045676529,0.2583295404911],[0.058914478868246,0.1102499589324,0.054834600538015],[-0.0094245644286275,0.0042179129086435,0.09440029412508]],[[-0.010623105801642,-0.062678709626198,-0.052463002502918],[0.12737515568733,0.0073874713853002,-0.14120168983936],[0.031236682087183,-0.0056334775872529,-0.047270715236664]],[[-0.053866852074862,0.028295876458287,0.11191172897816],[0.14399933815002,0.21890370547771,0.14699606597424],[-0.16789329051971,-0.05121672898531,-0.040761265903711]],[[-0.058776948601007,0.11597185581923,-0.06636606156826],[-0.049273829907179,0.07348944246769,-0.01670647226274],[-0.036454405635595,0.25206169486046,0.091032482683659]],[[-0.13105526566505,-0.1633660197258,-0.0069977953098714],[-0.15993103384972,-0.11316215246916,0.0094536235556006],[0.093356572091579,-0.023046590387821,0.0059197847731411]],[[-0.015286871232092,-0.16386315226555,-0.0013569083530456],[-0.061835449188948,-0.20375697314739,0.033505752682686],[-0.070521101355553,-0.16001579165459,0.16727821528912]],[[-0.053636748343706,-0.087384082376957,0.088261224329472],[-0.13217562437057,0.0064180134795606,0.093916989862919],[0.039994668215513,0.02500019967556,-0.0044725751504302]],[[0.011354741640389,-0.10782294720411,0.084977738559246],[0.034251891076565,-0.089619942009449,0.14946855604649],[-0.041281789541245,-0.13878773152828,0.10187335312366]],[[-0.083485558629036,-0.045862894505262,0.10454270988703],[-0.14349041879177,-0.13121192157269,-0.10304307937622],[-0.12779405713081,-0.10904340445995,0.070985212922096]],[[-0.21621745824814,-0.03812513500452,0.085965760052204],[-0.020241919904947,0.019053434953094,-0.0066952044144273],[0.074397332966328,0.041787128895521,0.044482320547104]],[[0.1405066549778,0.14673440158367,-0.15492503345013],[-0.013424498029053,-0.035696353763342,0.021276228129864],[0.074048087000847,-0.10612569004297,-0.013194551691413]],[[-0.095167383551598,0.17257004976273,-0.057957652956247],[0.055811163038015,0.083775632083416,-0.082355596125126],[0.20706327259541,-0.088051497936249,-0.25812396407127]],[[-0.02686501480639,-0.11771741509438,-0.081850282847881],[-0.11057447642088,-0.0032435541506857,0.092442534863949],[0.053975656628609,0.098817370831966,0.14006595313549]],[[0.045915737748146,0.25392755866051,0.11771916598082],[0.067493811249733,-0.21728900074959,-0.087731517851353],[-0.16341483592987,-0.14640361070633,8.4426421381067e-05]],[[0.045807924121618,0.069776758551598,-0.035345602780581],[0.037930835038424,0.19794072210789,-0.052406448870897],[0.010397274978459,0.0040203551761806,0.061372850090265]],[[0.03072233684361,-0.037920817732811,-0.076616510748863],[0.070167697966099,-0.12453370541334,-0.009311355650425],[-0.17583391070366,-0.096536129713058,0.17287673056126]],[[-0.11396659910679,-0.10648261010647,-0.093795575201511],[-0.009648572653532,0.034366734325886,0.093632832169533],[0.087731294333935,0.12176471948624,0.054057270288467]],[[-0.10157129913568,-0.098150789737701,0.17854072153568],[-0.16982924938202,-0.00015357267693616,-0.030646394938231],[0.01865841448307,0.015151872299612,0.064551994204521]],[[-0.063751339912415,-0.039833679795265,0.070901021361351],[-0.074415415525436,-0.043948598206043,0.061543002724648],[0.069799259305,-0.0028878266457468,0.061404973268509]],[[-0.033972024917603,-0.079622998833656,-0.1339875459671],[-0.1702588647604,-0.029146628454328,0.021638991311193],[-0.104861356318,0.2292422503233,-0.096457481384277]],[[-0.0090868696570396,-0.0838922560215,-0.033722925931215],[0.039518930017948,0.089635334908962,0.027895702049136],[-0.064070910215378,0.19473387300968,-0.01503651868552]],[[-0.073712795972824,-0.032980248332024,-0.076029077172279],[-0.15582655370235,-0.090146735310555,-0.11471307277679],[-0.11917603760958,0.033661212772131,0.0046512843109667]],[[0.077769935131073,-0.090394996106625,-0.052431002259254],[-0.14544884860516,-0.099977537989616,-0.10768651217222],[0.0379448980093,0.073688641190529,-0.011896220967174]],[[0.00036336146877147,-0.0020014396868646,0.011119140312076],[-0.042105488479137,-0.058500483632088,-0.15968102216721],[-0.092219665646553,-0.19893816113472,-0.19674551486969]],[[-0.019413439556956,-0.050291556864977,0.043339181691408],[-0.10199911147356,-0.21674829721451,0.0502924695611],[0.028724918141961,-0.013804364018142,0.0019907355308533]],[[0.087781459093094,-0.078923642635345,-0.030061544850469],[0.19440613687038,-0.16088654100895,-0.045931503176689],[0.03081139922142,0.058883186429739,0.0095439683645964]],[[-0.070378452539444,-0.10739915072918,-0.10468756407499],[-0.10352292656898,-0.080292768776417,-0.16813398897648],[-0.072028264403343,-0.0068401349708438,-0.086706176400185]],[[-0.0021231635473669,0.031728036701679,-0.095646291971207],[-0.025013333186507,-0.055237129330635,-0.048410214483738],[0.12726204097271,-0.087487518787384,-0.047727417200804]],[[0.012155878357589,0.17303644120693,0.010692606680095],[0.0079828593879938,-0.065135523676872,0.021562676876783],[0.043476980179548,0.024075666442513,-0.051842756569386]],[[-0.012541154399514,-0.042493637651205,0.055416233837605],[-0.063773311674595,0.011797539889812,0.21313013136387],[0.058424383401871,-0.014856864698231,0.028931122273207]],[[-0.16036495566368,0.014848339371383,-0.01933884434402],[0.00049995706649497,-0.065754719078541,-0.0068439459428191],[-0.13542303442955,0.051239900290966,-0.052004970610142]],[[0.034128494560719,0.12919442355633,0.11395969241858],[0.057285130023956,-0.14659336209297,-0.14591112732887],[-0.085964061319828,-0.18797953426838,-0.03349469602108]],[[-0.080452173948288,-0.081666350364685,-0.15253072977066],[-0.032236590981483,-0.0053234361112118,0.097384378314018],[-0.11020521819592,0.15166445076466,0.10280232131481]],[[-0.078972488641739,-0.032161455601454,0.047880977392197],[-0.047561921179295,0.12036810815334,0.16303203999996],[-0.11079873144627,0.0035713026300073,-0.13534741103649]],[[0.034003637731075,-0.061488073319197,0.11000951379538],[0.021973449736834,0.015317391604185,0.12881650030613],[0.042850024998188,0.0088412165641785,0.054684977978468]],[[0.074346840381622,-0.13949801027775,0.03771510720253],[0.04114593937993,-0.096150755882263,-0.024097092449665],[0.053644303232431,0.04377993196249,-0.026794815436006]],[[-0.052125230431557,-0.1359826028347,-0.078633144497871],[-0.032531797885895,-0.20429104566574,0.0084408102557063],[-0.11637842655182,-0.11209483444691,-0.012530430220068]],[[-0.068411976099014,-0.11293122917414,-0.10253494977951],[0.042713485658169,0.094373933970928,0.10184221714735],[-0.01183832809329,-0.00015548756346107,0.10936068743467]],[[0.031156983226538,-0.070211037993431,0.052545238286257],[0.071563735604286,-0.15475767850876,0.09213649481535],[0.043109953403473,0.032653525471687,0.14344881474972]],[[0.042298011481762,-0.011723261326551,0.039276335388422],[0.032061204314232,0.00013743946328759,0.15175086259842],[0.06182038038969,-0.13696609437466,0.081115558743477]],[[-0.12805992364883,0.030919369310141,-0.033048551529646],[-0.023581681773067,-0.09174906462431,-0.061133544892073],[0.040043346583843,0.0600003041327,-0.037341009825468]],[[-0.073045283555984,-0.026572136208415,0.11073610186577],[0.1297681927681,-0.054298263043165,0.043777193874121],[-0.071818336844444,-0.076808296144009,0.061046328395605]],[[0.0021009037736803,-0.12266482412815,0.014420839957893],[0.064199298620224,0.011852925643325,-0.077998474240303],[-0.012331138364971,0.039116501808167,-0.20188136398792]],[[-0.046157948672771,0.1509665697813,0.16318841278553],[-0.066039897501469,-0.071056447923183,-0.08561235666275],[-0.052376769483089,-0.061614319682121,-0.1142480224371]],[[-0.023091001436114,0.12388032674789,-0.039574034512043],[0.12317810952663,-0.081853747367859,-0.072530820965767],[0.040631480515003,-0.00082094111712649,-0.0053352080285549]],[[0.014851629734039,0.043126918375492,0.040340222418308],[-0.050603341311216,-0.11096065491438,0.010115241631866],[0.015148204751313,-0.10498032718897,0.14464960992336]],[[0.13283550739288,0.035221677273512,0.15249234437943],[-0.010550533421338,-0.21702462434769,0.1883831769228],[-0.048554085195065,-0.044797852635384,0.11602399498224]],[[-0.036945149302483,-0.0068682134151459,-0.1726426333189],[-0.16867445409298,-0.18397460877895,-0.0022360116709024],[-0.21655640006065,-0.078487128019333,-0.066572532057762]],[[0.094543986022472,-0.085656344890594,-0.16833847761154],[0.034084405750036,0.030908754095435,-0.049775049090385],[0.19652852416039,0.066951021552086,0.099590755999088]],[[0.056762740015984,-0.020301252603531,-0.075426816940308],[0.085506238043308,-0.064066022634506,-0.11135447770357],[0.098491951823235,0.092684872448444,0.055825415998697]],[[0.076868258416653,-0.055886227637529,-0.063756465911865],[0.027480566874146,0.063355579972267,-0.045816946774721],[-0.11851233989,-0.015248088166118,0.044705979526043]],[[0.0093848798424006,-0.089128538966179,-0.18890769779682],[0.019915755838156,-0.0067321015521884,0.013091961853206],[0.025938870385289,-0.0453846976161,0.080816090106964]],[[0.075423888862133,0.15940189361572,0.11150287091732],[-0.098390012979507,0.011396955698729,-0.0068335402756929],[-0.11639599502087,-0.1340290158987,0.035661101341248]],[[-0.16632756590843,-0.060251329094172,0.070075206458569],[-0.041368115693331,0.046957205981016,-0.025680508464575],[0.11323381215334,0.098096027970314,0.014731313101947]],[[-0.10217745602131,0.057727672159672,0.02333315834403],[0.006327835842967,-0.16531074047089,-0.14194722473621],[0.067911744117737,-0.14619439840317,-0.044833369553089]],[[-0.083515956997871,0.0030540910083801,0.041768752038479],[0.098030880093575,0.067816182971001,0.19422869384289],[-0.010024555958807,-0.11047620326281,0.11155075579882]],[[-0.0096111129969358,0.0054844962432981,0.083583995699883],[0.045440651476383,-0.011803907342255,-0.052047152072191],[-0.0062070232816041,0.087637424468994,0.051192931830883]],[[-0.13524144887924,-0.039105486124754,-0.069494977593422],[-0.052720308303833,0.017596550285816,0.051907360553741],[0.029076231643558,0.027057681232691,0.048188541084528]],[[0.12321688979864,-0.0034959705080837,-0.1108819693327],[0.036291066557169,0.055787637829781,-0.019550627097487],[-0.028285268694162,-0.11285749822855,0.11851321905851]],[[0.040984977036715,-0.036806248128414,0.12635132670403],[-0.039559125900269,-0.22042062878609,-0.036756593734026],[0.16625688970089,-0.059562988579273,0.028340762481093]],[[-0.00037492316914722,-0.033759146928787,0.03215391561389],[-0.19841133058071,-0.060769714415073,0.11541614681482],[0.0085835177451372,-0.058443062007427,0.022193795070052]],[[0.0285863019526,-0.050188329070807,-0.02014896273613],[-0.041610512882471,0.16186222434044,-0.05506107583642],[-0.12672631442547,0.1162148937583,0.032625392079353]],[[0.035573836416006,0.13889899849892,0.18197906017303],[-0.0019844728522003,0.14529553055763,-0.082764521241188],[-0.044881403446198,0.051088023930788,0.024580769240856]],[[-0.049394335597754,-0.079711206257343,-0.055985894054174],[0.038201324641705,0.058940649032593,0.030932797119021],[-0.066150546073914,0.12613974511623,-0.05814029276371]],[[0.011988562531769,0.23089677095413,0.20528756082058],[0.051155149936676,0.0066003357060254,-0.066410459578037],[0.015918569639325,-0.13582979142666,0.051642071455717]],[[-0.13082139194012,-0.22291420400143,0.015740064904094],[-0.2000772356987,-0.031495381146669,0.02264304831624],[-0.059759292751551,0.14781744778156,0.095462426543236]],[[0.07453577965498,-0.11553771793842,-0.10175509005785],[-0.052477609366179,-0.086666814982891,-0.084736764431],[0.16384008526802,0.10785488784313,0.11479014158249]],[[0.065273940563202,0.058495070785284,0.038473080843687],[0.070629343390465,-0.13013757765293,-0.14072303473949],[-0.18408177793026,-0.085314214229584,-0.008262692950666]],[[-0.042227398604155,0.00093610212206841,0.17024737596512],[0.051491025835276,0.011147009208798,0.010037608444691],[0.20776754617691,0.13610033690929,0.01443896163255]],[[-0.077077686786652,-0.21733540296555,0.11788763850927],[-0.049462862312794,-0.010816305875778,-0.030691856518388],[-0.068368278443813,-0.1060376688838,-0.10442999750376]],[[0.10133591294289,0.099983893334866,0.09820207208395],[0.046408165246248,0.062869645655155,0.054382313042879],[-0.10179480910301,-0.0075984094291925,-0.052039068192244]],[[-0.10410133749247,0.15055298805237,0.11042648553848],[-0.048746407032013,-0.1427758038044,0.22989153862],[-0.061579260975122,0.28867974877357,0.14790222048759]],[[0.21382002532482,-0.12027054280043,0.16422654688358],[0.2120097130537,-0.2114255130291,-0.026415573433042],[0.16324865818024,0.050120372325182,0.012477825395763]],[[-0.027847938239574,-0.01939089782536,-0.064653716981411],[0.0033080985303968,0.013164114207029,0.032081369310617],[-0.078257203102112,-0.026836156845093,-0.00045863585546613]],[[-0.043189931660891,0.085754781961441,0.090990297496319],[-0.17569363117218,0.032463379204273,-0.0032991478219628],[-0.01262164209038,-0.02650910243392,0.070389650762081]]],[[[-0.0012103518238291,-0.063334375619888,-0.144312530756],[0.0050047719851136,0.021105121821165,-0.044557090848684],[0.064482539892197,0.042817048728466,-0.12737910449505]],[[0.14914682507515,0.039768543094397,-0.1571751832962],[0.11795403063297,0.004400831181556,0.089268110692501],[0.082132562994957,0.0065742023289204,0.090992324054241]],[[0.055460777133703,0.010101335123181,0.029660446569324],[0.094043359160423,-0.0078698880970478,-0.024683706462383],[0.067744456231594,-0.040246102958918,-0.011914917267859]],[[-0.073171272873878,-0.096181385219097,0.068305715918541],[-0.048003327101469,-0.090853080153465,-0.14604043960571],[-0.013418059796095,-0.10627397149801,0.067169696092606]],[[0.036733817309141,0.094151802361012,0.089496456086636],[0.16329853236675,-0.10752521455288,-0.053571164608002],[0.050724398344755,0.14222203195095,0.14620168507099]],[[-0.13177017867565,-0.053137123584747,-0.03705221414566],[-0.0085591981187463,-0.18846620619297,0.010801349766552],[0.096124544739723,0.14754372835159,-0.07488851249218]],[[0.037864930927753,0.055005419999361,0.039367966353893],[-0.033072698861361,0.017048362642527,-0.11126685887575],[0.043929696083069,0.11331272870302,-0.0076868059113622]],[[-0.1057303622365,0.019978636875749,-0.015503260307014],[0.065425164997578,0.036266598850489,0.057016212493181],[0.069971688091755,-0.011168808676302,0.055032018572092]],[[0.11189265549183,-0.039698641747236,-0.17710100114346],[0.1237118691206,0.011554501950741,-0.096923977136612],[-0.14838024973869,-0.15972228348255,0.0024150302633643]],[[-0.10674127191305,-0.027462201192975,0.022417092695832],[-0.014930114150047,-0.076851941645145,-0.0014560286654159],[-0.11584631353617,0.042477581650019,0.012004098854959]],[[-0.021056381985545,0.17037670314312,0.085884660482407],[0.11537929624319,0.2443054318428,0.21407505869865],[0.1497447937727,0.075740821659565,0.10980526357889]],[[0.25866806507111,0.098688594996929,0.047025211155415],[-0.01208427362144,-0.026087751612067,-0.068046189844608],[0.0060393954627216,-0.035903606563807,0.076023578643799]],[[0.050698913633823,-0.044065956026316,0.013966523110867],[0.016787678003311,0.014012672938406,0.0076394914649427],[-0.016982052475214,-0.17406913638115,-0.20915828645229]],[[-0.11394184082747,-0.079661458730698,0.099540568888187],[-0.065684743225574,0.021707022562623,0.053751304745674],[-0.1504852771759,-0.14509277045727,-0.045158449560404]],[[0.16853298246861,-0.0049164495430887,0.099047400057316],[-0.081673078238964,-0.0133051360026,-0.10369561612606],[-0.055400557816029,-0.057327914983034,-0.11752105504274]],[[0.070200130343437,-0.16709633171558,-0.10983266681433],[-0.010809354484081,0.0020261774770916,0.073367729783058],[0.11666483432055,0.0024497555568814,-0.020467396825552]],[[0.025628076866269,-0.018312135711312,0.1094391644001],[-0.02493929490447,-0.099330671131611,-0.022371951490641],[0.086863480508327,-0.005098550580442,-0.088002525269985]],[[0.00047671410720795,0.061719287186861,0.034106239676476],[-0.1082823947072,-0.090684436261654,-0.048578839749098],[-0.016252873465419,0.025069061666727,0.15791930258274]],[[0.018835477530956,0.10877513885498,0.013888790272176],[-0.040107034146786,-0.021906085312366,0.046385824680328],[-0.075810216367245,0.1025610640645,-0.12332189083099]],[[0.029695767909288,-0.00073835923103616,0.023244628682733],[-0.057817399501801,-0.0075409552082419,0.025467088446021],[0.074613116681576,0.058982010930777,0.13781842589378]],[[0.032576560974121,-0.00098656571935862,-0.07454926520586],[-0.12811881303787,0.023674754425883,-0.11599249392748],[-0.062392204999924,0.061177995055914,-0.071698598563671]],[[-0.042573112994432,0.02124260365963,0.062659330666065],[0.15859414637089,0.028216140344739,0.05442363396287],[-0.1035795211792,0.057510070502758,0.038754682987928]],[[0.0054573132656515,0.010173191316426,-0.10851361602545],[0.12948653101921,0.072784997522831,-0.029136497527361],[0.034244816750288,-0.016866577789187,0.1410016566515]],[[-0.067799210548401,-0.063559308648109,0.026537457481027],[0.090531297028065,-0.042324490845203,0.050719883292913],[0.067194692790508,-0.10546381771564,0.055752765387297]],[[0.017624277621508,-0.017246963456273,0.014495161361992],[-0.052438747137785,0.039176102727652,-0.080565944314003],[-0.0036103096790612,0.20806621015072,0.091180615127087]],[[-0.049500960856676,0.060053005814552,0.056901577860117],[0.025138109922409,-0.11003582924604,0.14732210338116],[0.021041059866548,-0.0078636761754751,-0.045217074453831]],[[0.25378581881523,-0.085256852209568,-0.05972870066762],[0.15775698423386,-0.020893845707178,0.14868314564228],[0.17372994124889,0.014100880362093,0.026342749595642]],[[0.040639337152243,0.042335901409388,-0.059163223952055],[-0.12404931336641,-0.048201620578766,0.045618426054716],[0.070519834756851,0.042388040572405,0.091282866895199]],[[0.1559020280838,-0.08331398665905,-0.10761951655149],[0.088892698287964,0.061590258032084,-0.13937972486019],[-0.1448518037796,-0.00026746050571091,-0.055294755846262]],[[0.082610405981541,0.004229492507875,-0.060360301285982],[-0.090889386832714,0.064653217792511,0.065683931112289],[0.10749060660601,-0.11744849383831,-0.15764817595482]],[[-0.15993583202362,-0.13497510552406,0.038520716130733],[0.021957622841001,0.1237618625164,0.044240117073059],[0.11896463483572,-0.053043887019157,0.23405984044075]],[[0.0091085433959961,0.010664885863662,-0.053730588406324],[0.014907341450453,-0.046674203127623,0.16698119044304],[-0.025073351338506,0.07168436050415,0.073123052716255]],[[0.12988391518593,0.058965463191271,-0.041662264615297],[0.094464935362339,-0.0082971742376685,-0.027454573661089],[0.079437211155891,0.063542768359184,-0.088274598121643]],[[-0.18506963551044,-0.036416992545128,-0.040347095578909],[0.02043455094099,-0.045114476233721,-0.088221460580826],[0.027455728501081,-0.13896237313747,0.063496023416519]],[[-0.0076226722449064,0.090852633118629,0.17604824900627],[0.060641754418612,-0.034257609397173,-0.098392024636269],[-0.11811709403992,-0.10127314925194,0.0040856474079192]],[[0.0012704071123153,-0.079726621508598,0.02279919013381],[-0.11518575996161,-0.027388399466872,-0.02085193246603],[-0.086022391915321,-0.042172554880381,0.049924563616514]],[[0.080696910619736,0.033882711082697,-0.031004352495074],[-0.026934485882521,0.024668481200933,-0.032562356442213],[-0.05276158079505,0.042354788631201,0.075229421257973]],[[-0.083935081958771,0.10830161720514,-0.1322827488184],[-0.18331032991409,0.12549766898155,0.018293689936399],[0.019463090226054,0.085301786661148,0.23394836485386]],[[0.087704867124557,0.12623709440231,-0.044664617627859],[0.055682566016912,0.055218789726496,0.056308086961508],[0.10859956592321,-0.011390740051866,-0.0096423048526049]],[[0.14474362134933,-0.082674399018288,-0.080947734415531],[0.0043727937154472,0.15669891238213,0.081870414316654],[-0.0030022680293769,-0.059774339199066,0.13400569558144]],[[0.11187364161015,0.10844183713198,-0.013579702936113],[-0.15559142827988,-0.096360012888908,0.014439556747675],[-0.07786963135004,-0.095315806567669,0.023903960362077]],[[-0.063609801232815,0.067793779075146,-0.018587827682495],[-0.050145860761404,-0.10018686950207,-0.031267825514078],[0.068544805049896,0.12760488688946,0.045206468552351]],[[0.026249160990119,-0.021388782188296,-0.029354497790337],[-0.014501227997243,-0.092295452952385,0.08447377383709],[-0.028969299048185,-0.18716152012348,-0.07964651286602]],[[0.050120744854212,-0.080551914870739,-0.015230055898428],[-0.098062492907047,0.10615382343531,-0.030352452769876],[0.053561709821224,-0.095128789544106,-0.045998815447092]],[[-0.0075413435697556,0.0072231646627188,0.091595135629177],[-0.16669483482838,-0.020648811012506,-0.049744412302971],[0.077157415449619,-0.034233767539263,-0.0046826186589897]],[[0.094614632427692,0.027344575151801,-0.017127316445112],[-0.047183446586132,-0.039877131581306,-0.060651332139969],[-0.069378845393658,0.043445564806461,0.0050933132879436]],[[-0.01451397780329,-0.1122558042407,-0.038284529000521],[-0.12294737249613,-0.049891103059053,-0.036509435623884],[-0.10661835223436,-0.020555581897497,0.068823806941509]],[[0.052103023976088,-0.079393766820431,0.11823629587889],[-0.0034611762966961,0.03233128413558,0.051939737051725],[0.080541163682938,0.038668312132359,-0.11844855546951]],[[-0.10411912947893,-0.1347282230854,-0.036028224974871],[-0.0026617427356541,0.075613468885422,0.11534614861012],[-0.10984525084496,0.10375166684389,0.028505127876997]],[[-0.0081344349309802,-0.12626896798611,-0.068469263613224],[-0.049659762531519,-0.10715578496456,-0.053730741143227],[0.063275411725044,0.011586708016694,-0.0022262311540544]],[[0.06812921911478,-0.045109882950783,-0.11270116269588],[-0.084343262016773,0.083997510373592,-0.035085201263428],[0.18763007223606,-0.0098500140011311,-0.10957379639149]],[[0.099670648574829,-0.011670936830342,0.13921734690666],[0.083041071891785,0.075951665639877,-0.025391526520252],[-0.048006009310484,-0.1241277679801,0.05970124900341]],[[0.013505980372429,0.096588291227818,0.019355358555913],[-0.011512761935592,0.0013170458842069,-0.043883677572012],[0.017124926671386,-0.0026841543149203,-0.063913442194462]],[[0.020966600626707,0.048627097159624,0.068470165133476],[-0.0011984414886683,-0.11268100142479,-0.097591750323772],[-0.058850232511759,-0.11906442791224,-0.012589198537171]],[[-0.020889410749078,-0.15797439217567,-0.046294789761305],[0.11140663176775,0.11222160607576,-0.0080081224441528],[-0.075036086142063,0.12263788282871,-0.021425068378448]],[[-0.02366304397583,-0.039834231138229,-0.088059209287167],[-0.13859851658344,0.15253435075283,0.10498747974634],[0.15710413455963,0.14160330593586,0.15109035372734]],[[-0.039822105318308,0.076199725270271,0.088257662951946],[0.027149586006999,0.037289090454578,0.02402526140213],[-0.05976290255785,-0.011012189090252,0.018823938444257]],[[-0.12873513996601,0.0041782278567553,0.0028001109603792],[-0.014687724411488,-0.15920130908489,-0.043837312608957],[-0.075112700462341,-0.066205583512783,-0.16466848552227]],[[0.0093719512224197,0.03924697637558,0.14551682770252],[-0.17679518461227,-0.05921733006835,-0.019826404750347],[-0.17536698281765,-0.092055946588516,0.070911206305027]],[[0.1631570905447,0.068825580179691,0.080368168652058],[-0.059437017887831,-0.009776615537703,0.082948327064514],[-0.11065112799406,-0.041442532092333,-0.0027475035749376]],[[0.010834312997758,-0.052809506654739,-0.043910760432482],[-0.088515065610409,-0.063713565468788,-0.092562116682529],[-0.040124088525772,-0.034963168203831,-0.010045155882835]],[[-0.087630696594715,-0.18486098945141,-0.057423755526543],[-0.11767413467169,0.038536109030247,-0.14726030826569],[-0.21148210763931,0.0099735101684928,-0.072101712226868]],[[-0.15044158697128,0.12658739089966,0.024568682536483],[-0.21393114328384,-0.040521264076233,0.1169863268733],[0.030304847285151,0.047416061162949,0.0058293957263231]],[[-0.04526075348258,0.1427840590477,0.017781395465136],[0.1255419999361,0.10818187147379,0.11373651772738],[0.15841369330883,0.1255155056715,0.19176515936852]],[[-0.098039619624615,0.050692368298769,-0.12467683851719],[-0.14314332604408,-0.084870770573616,-0.043764535337687],[-0.017645699903369,-0.011097208596766,0.010351978242397]],[[-0.12419524043798,-0.035299073904753,0.15044967830181],[-0.16608157753944,-0.030841529369354,0.022568732500076],[-0.054231610149145,-0.090495653450489,-0.069898523390293]],[[0.022767558693886,0.014046602882445,-0.083575122058392],[0.068817526102066,0.10355572402477,-0.050236657261848],[-0.040318209677935,0.0027949521318078,-0.019141308963299]],[[-0.096044465899467,-0.064176745712757,0.029243815690279],[0.026504170149565,0.0066435961052775,-0.036890611052513],[-0.028835998848081,-0.036933228373528,0.065753094851971]],[[-0.013496716506779,-0.05451949685812,0.052896670997143],[-0.051883205771446,-0.05431804805994,0.0625219643116],[-0.045888539403677,0.045651562511921,0.012529640458524]],[[0.1008118018508,-0.084222570061684,-0.04464315995574],[0.1258150190115,-0.048904810100794,0.08670949190855],[0.058909449726343,0.00097202201141044,-0.065446607768536]],[[0.054361566901207,-0.21945229172707,0.16568921506405],[0.039920933544636,0.1338464319706,0.026991374790668],[-0.077621333301067,0.062843345105648,-0.14858739078045]],[[0.13365736603737,0.037151698023081,0.085157006978989],[-0.0084099005907774,0.096930846571922,-0.040185332298279],[0.005929371342063,-0.14124251902103,-0.037461124360561]],[[0.018877357244492,0.12741114199162,0.011813186109066],[-0.028965305536985,-0.14198623597622,-0.13344193994999],[0.075371667742729,-0.19182658195496,-0.06554152071476]],[[0.060394313186407,-0.00034345022868365,-0.027643594890833],[0.20012576878071,0.022359477356076,-0.050344277173281],[0.1711613535881,-0.0089866723865271,-0.012790556997061]],[[0.038326054811478,0.011699329130352,-0.083554305136204],[-0.069972634315491,-0.031645026057959,0.038739245384932],[-0.026494668796659,0.081211671233177,0.033905986696482]],[[-0.010265675373375,-0.0082439053803682,0.030249319970608],[-0.030492251738906,-0.087607808411121,0.035589266568422],[-0.019365193322301,0.0058455718681216,-0.049982208758593]],[[-0.022688673809171,-0.029233815148473,0.019126949831843],[0.055116139352322,0.047267556190491,0.073749803006649],[-0.016548609361053,-0.026043675839901,0.064274214208126]],[[-0.11164573580027,-0.095970936119556,0.065433911979198],[0.050745651125908,0.032435048371553,-0.12645417451859],[0.022573683410883,0.035456374287605,-0.012290213257074]],[[0.096231929957867,-0.16365388035774,-0.025016250088811],[0.0420788154006,-0.025398444384336,-0.17694096267223],[0.059829421341419,0.19156524538994,0.012890118174255]],[[-0.0012637746986002,0.012644764967263,0.021814007312059],[-0.22519175708294,-0.050225131213665,0.053035087883472],[-0.087825432419777,-0.05587524920702,0.098725035786629]],[[0.042744435369968,-0.077104412019253,-0.13118168711662],[-0.0093489363789558,-0.091089203953743,-0.049260772764683],[-0.066868953406811,0.050031129270792,-0.041173379868269]],[[0.15193882584572,0.025678670033813,0.17676940560341],[-0.14654995501041,0.0023836176842451,0.10483787953854],[-0.015299779362977,0.097792342305183,-0.038383357226849]],[[0.16108672320843,0.13716615736485,0.065619483590126],[0.0068304762244225,0.028517568483949,-0.015536434017122],[0.26009932160378,0.19261573255062,0.21771642565727]],[[-0.14681567251682,-0.010878465138376,0.039395827800035],[-0.029013453051448,0.034336421638727,-0.067429788410664],[0.037661392241716,-0.177002415061,-0.069651901721954]],[[0.0402314029634,0.13970784842968,0.072870880365372],[0.2259935438633,0.050584308803082,-0.012835066765547],[-0.098158419132233,0.013186995871365,0.17055828869343]],[[0.11124280840158,0.13382783532143,0.046645551919937],[-0.063584163784981,0.0044226697646081,0.079439908266068],[-0.037178564816713,-0.01419236138463,0.22148059308529]],[[0.041675999760628,-0.10331385582685,0.037324611097574],[0.038778502494097,0.0073442873544991,-0.015201856382191],[-0.099787667393684,-0.074424602091312,0.038072191178799]],[[-0.061633910983801,-0.075611062347889,-0.013993533328176],[-0.0088248057290912,0.04101499542594,-0.041788462549448],[-0.040256384760141,0.070854544639587,-0.01324491482228]],[[-0.02735054679215,0.10875390470028,0.021824738010764],[-0.083656303584576,0.0171625521034,-0.18089927732944],[-0.0064364750869572,0.12449018657207,-0.084030576050282]],[[-0.036547906696796,-0.0091179255396128,-0.044437974691391],[-0.06110779568553,0.012523358687758,0.15251633524895],[-0.02794399484992,-0.079098246991634,0.053607143461704]],[[-0.099600270390511,-0.1739235073328,0.045537073165178],[0.056405786424875,-0.066874802112579,-0.13840542733669],[0.16224181652069,-0.027323685586452,0.1905609369278]],[[-0.099241212010384,-0.11510195583105,-0.087254375219345],[-0.070382140576839,-0.0047928565181792,0.0043794945813715],[-0.0038489126600325,0.0098947770893574,0.094782024621964]],[[-0.12374450266361,-0.12421765178442,0.091512322425842],[0.034549400210381,-0.075902529060841,0.13781303167343],[0.21792328357697,0.2767262160778,0.17612405121326]],[[-0.062800385057926,-0.030365763232112,0.034014370292425],[-0.075845666229725,-0.061805695295334,0.006003824993968],[-0.094180338084698,-0.022809717804193,-0.049438074231148]],[[0.0039360006339848,0.029932102188468,0.23085342347622],[-0.1445564776659,-0.088528610765934,0.14053691923618],[0.016566053032875,0.12138544768095,-0.01500415802002]],[[-0.0049983942881227,-0.019358037039638,-0.033679734915495],[0.04681109264493,0.12699887156487,0.077254183590412],[0.04942936077714,0.0029542138800025,-0.039074890315533]],[[-0.10768757015467,0.024952705949545,0.1347920447588],[0.044548574835062,-0.12060344219208,0.009143047966063],[0.083690866827965,-0.12337651103735,0.085586659610271]],[[0.10325989127159,0.17990632355213,0.088784888386726],[-0.07439336925745,-0.051332902163267,-0.14185643196106],[0.049094755202532,0.019979257136583,-0.013728345744312]],[[0.025730034336448,-0.076051332056522,0.012634823098779],[0.015003133565187,-0.11799881607294,0.050491463392973],[0.0029597629327327,0.099252268671989,-0.088898107409477]],[[0.062676280736923,0.031113181263208,0.13000148534775],[0.0013946407707408,-0.052086059004068,-0.2126416862011],[0.040827844291925,0.078035719692707,-0.018764024600387]],[[0.01325464900583,0.099046029150486,0.0015380923869088],[-0.052029091864824,0.04624193534255,-0.035995088517666],[-0.082005925476551,-0.013612027280033,0.00058114569401368]],[[0.10727326571941,-0.1100212931633,0.051464527845383],[-0.12098489701748,-0.037522286176682,0.13981065154076],[-0.0055039208382368,0.096482574939728,0.10049469769001]],[[0.069342263042927,0.10196992009878,0.16911552846432],[0.063634894788265,0.002700716489926,0.024243749678135],[-0.081132091581821,-0.10174918174744,0.048753023147583]],[[0.040519572794437,-0.10667803138494,0.020640900358558],[-0.15781958401203,0.011631241999567,-0.19004544615746],[0.032755378633738,0.016587696969509,0.091202475130558]],[[-0.08350595831871,-0.076454661786556,0.035276830196381],[-0.2231123149395,-0.045335821807384,-0.091421149671078],[-0.18862801790237,-0.15595233440399,0.010823948308825]],[[0.09464219212532,-0.023213490843773,0.011173226870596],[0.074844248592854,0.0012565409997478,0.026305897161365],[0.0042731827124953,-0.091672524809837,0.096022963523865]],[[0.0031260335817933,-0.0093855941668153,0.13354420661926],[0.051782052963972,-0.066119767725468,-0.10830869525671],[-0.0070297420024872,-0.1488429158926,0.017868874594569]],[[-0.055160701274872,0.073259018361568,-0.031788535416126],[0.12876836955547,0.047776639461517,0.027860747650266],[-0.032034374773502,-0.093254126608372,-0.034264400601387]],[[-0.13048741221428,0.019978687167168,0.076189249753952],[0.094824358820915,-0.045156575739384,0.00026835291646421],[0.11873683333397,-0.017961604520679,0.066652521491051]],[[-0.067083694040775,0.068465121090412,-0.068577781319618],[0.032010614871979,0.0051752915605903,-0.059537306427956],[0.19436924159527,0.14197917282581,-0.00054954673396423]],[[-0.089771576225758,0.028311187401414,-0.0023816137108952],[0.02437486872077,0.032237131148577,0.049014076590538],[-0.013478860259056,-0.0018605361692607,-0.072159834206104]],[[-0.027716068550944,-0.033266820013523,-0.090367451310158],[-0.054718028753996,-0.11995130032301,0.037972997874022],[-0.10669694840908,-0.05671376734972,-0.022401098161936]],[[0.043404784053564,-0.063141472637653,-0.12931095063686],[-0.00023564658476971,0.042292322963476,-0.033664062619209],[0.070894069969654,0.11387673020363,-0.1245031952858]],[[0.029108205810189,0.044175788760185,0.092523343861103],[-0.082403160631657,0.11865186691284,0.14994513988495],[0.072044596076012,-0.039940200746059,-0.00071529258275405]],[[-0.022846683859825,-0.033926155418158,0.098588034510612],[-0.031505189836025,-0.047165300697088,0.088281437754631],[-0.096479579806328,0.095906361937523,-0.02437992952764]],[[0.18457774817944,-0.013033370487392,0.085680082440376],[0.072354264557362,-0.024607546627522,0.081787399947643],[-0.082054436206818,-0.037535458803177,-0.10994200408459]],[[0.024285413324833,0.083673730492592,-0.00039974242099561],[-0.087317936122417,-0.049366191029549,-0.07977220416069],[0.024861127138138,0.046029113233089,-0.13834461569786]],[[-0.065600827336311,0.054581519216299,0.14686843752861],[0.11159083992243,0.06968566775322,0.14298167824745],[0.24539570510387,0.10331243276596,-0.051085840910673]],[[0.086370572447777,0.082520812749863,-0.012934905476868],[-0.081023097038269,0.046662051230669,-0.16736389696598],[-0.070898726582527,-0.013859775848687,-0.25240874290466]],[[-0.034589067101479,-0.073700517416,-0.0036792864557356],[-0.1023116633296,-0.09045398235321,-0.024030491709709],[-0.020260315388441,0.096067868173122,0.1190539598465]],[[0.047177564352751,0.017743479460478,0.02756929025054],[-0.084074601531029,-0.037979502230883,-0.02899251319468],[-0.039016854017973,-0.045016627758741,-0.067360281944275]],[[0.042206231504679,0.00019549056014512,-0.040436118841171],[0.027860667556524,0.0014391342410818,-0.028551673516631],[-0.068746984004974,-0.043629754334688,0.030719321221113]],[[-0.12701328098774,-0.020764131098986,-0.08686488121748],[-0.034025106579065,-0.096878699958324,-0.039314955472946],[-0.012363311834633,-0.1526034027338,-0.058127976953983]],[[-0.040353607386351,-0.029220350086689,0.1087191849947],[0.055510148406029,-0.022414335981011,0.0038067020941526],[0.027944115921855,0.0386026725173,-0.092352032661438]],[[0.059920437633991,0.01148546487093,-0.065458312630653],[0.063403189182281,0.097777709364891,-0.017605429515243],[-0.029071029275656,0.065493732690811,0.067916244268417]],[[-0.079972445964813,0.042054805904627,-0.066613659262657],[-0.12634447216988,-0.093905046582222,-0.0046286131255329],[-0.12849575281143,-0.0077018309384584,-0.041557375341654]],[[-0.10138404369354,-0.07281606644392,0.091869547963142],[0.02167734131217,-0.089813180267811,0.021597580984235],[0.020106727257371,0.0089217210188508,0.26973450183868]],[[0.022656248882413,0.040599629282951,0.0049149440601468],[0.11192450672388,-0.020548259839416,0.054914932698011],[0.029072627425194,-0.081132121384144,-0.066992364823818]]],[[[-0.096501842141151,0.33248996734619,-0.016488650813699],[0.04609065130353,0.11682546138763,0.18764364719391],[0.02171135880053,-0.12194181978703,-0.0837761759758]],[[-0.084278114140034,-0.090955100953579,0.066769227385521],[-0.06105187907815,0.032678473740816,-0.15017172694206],[-0.096483245491982,-0.043741255998611,-0.12166794389486]],[[-0.031509425491095,0.17857877910137,0.145910769701],[-0.13167640566826,0.12797519564629,0.16154535114765],[-0.050734434276819,-0.01784005574882,-0.025127435103059]],[[-0.17888356745243,0.057938743382692,0.18038129806519],[-0.057197816669941,0.16090148687363,0.014169354923069],[-0.17302712798119,0.079465687274933,-0.14559000730515]],[[0.045139346271753,0.1155359223485,-0.062291998416185],[0.10001097619534,0.01697857119143,-0.19506374001503],[-0.16157661378384,0.039283271878958,-0.10176202654839]],[[0.049751259386539,-0.078762397170067,0.060051910579205],[0.018672304227948,0.014840553514659,-0.040202371776104],[0.011304401792586,0.0076544852927327,-0.16871812939644]],[[-0.16985784471035,-0.14030359685421,0.062236972153187],[0.11653196811676,0.039194207638502,0.23149426281452],[0.16665430366993,0.016620188951492,-0.043144803494215]],[[0.12361372262239,-0.033628948032856,0.0693394318223],[0.017816212028265,0.1008059233427,-0.10329215228558],[-0.063608728349209,0.09783872961998,0.25357508659363]],[[0.080201163887978,-0.020209031179547,-0.020779689773917],[-0.12462501227856,-0.094036139547825,-0.07499697804451],[-0.016873244196177,0.040577288717031,0.042725492268801]],[[-0.09748862683773,-0.12460334599018,-0.050245456397533],[-0.088231913745403,0.062528476119041,0.11424534022808],[-0.09549418836832,-0.064707010984421,-0.017487443983555]],[[0.077125810086727,-0.061645790934563,0.028811484575272],[0.095014937222004,-0.073015168309212,-0.060876030474901],[0.16826857626438,-0.031487129628658,0.16071380674839]],[[-0.20778684318066,0.0046549770049751,-0.092504359781742],[-0.16934821009636,-0.08797000348568,0.16625098884106],[-0.12873357534409,-0.086666747927666,0.13506276905537]],[[0.14010490477085,0.066433101892471,0.022119151428342],[0.032762538641691,-0.042816959321499,-0.080526798963547],[0.060983307659626,0.0677605047822,-0.12630477547646]],[[-0.085556536912918,0.073947727680206,-0.066553995013237],[-0.24765531718731,-0.089014209806919,-0.16522026062012],[-0.012020993977785,-0.078999549150467,-0.12101095914841]],[[0.074004925787449,0.042440690100193,0.082131288945675],[-0.069905050098896,0.043453983962536,-0.05024267360568],[0.062810823321342,-0.004872118588537,0.038330905139446]],[[0.23022817075253,-0.11636892706156,-0.014632127247751],[0.15202075242996,-0.046998258680105,-0.096442021429539],[0.043793994933367,-0.02035466581583,-0.039726629853249]],[[0.18261498212814,-0.22741669416428,-0.19350196421146],[0.011170417070389,0.079773686826229,0.040650278329849],[0.096065379679203,-0.00062467297539115,-0.11855226010084]],[[-0.11211388558149,-0.070018418133259,-0.039429500699043],[0.081105574965477,-0.052846789360046,-0.31183135509491],[0.045430794358253,0.0095985606312752,0.0068387966603041]],[[0.0042535210959613,-0.040825322270393,0.16048803925514],[-0.033442441374063,-0.0083225164562464,-0.1473995745182],[-0.11426309496164,0.056267727166414,0.05345019325614]],[[-0.032143548130989,-0.17555348575115,0.01727632060647],[0.082670614123344,0.0046575223095715,-0.050595443695784],[0.041057024151087,0.018476467579603,-0.13692943751812]],[[-0.11099418252707,-0.0460304915905,0.044648554176092],[-0.095216445624828,-0.18974535167217,-0.12588493525982],[0.014249264262617,-0.0174680352211,-0.11325936019421]],[[-0.16042299568653,0.066261537373066,0.10597859323025],[0.13150873780251,0.048867154866457,-0.077464953064919],[-0.17434629797935,0.025466861203313,-0.02400828525424]],[[-0.13317038118839,0.15428926050663,0.21503984928131],[0.063008241355419,0.091105297207832,-0.15415017306805],[-0.094532907009125,0.087836310267448,0.13020797073841]],[[-0.1308871358633,-0.069954246282578,-0.061606325209141],[-0.12642841041088,-0.019820973277092,0.099507287144661],[-0.21567219495773,0.039647713303566,0.017182337120175]],[[-0.050828214734793,-0.01246889680624,0.084266625344753],[-0.31402882933617,-0.096835277974606,0.035888962447643],[-0.0047121196985245,0.1690845489502,0.037811350077391]],[[-0.0405726544559,0.10799530893564,-0.10688742995262],[-0.048795133829117,0.0091836685314775,-0.0077217514626682],[-0.10493842512369,-0.22374951839447,-0.0042580757290125]],[[0.11305355280638,-0.13411454856396,-0.12012400478125],[0.065798245370388,-0.17598286271095,-0.1403691470623],[0.089029565453529,-0.10128979384899,0.05633832514286]],[[-0.072970248758793,0.11296889930964,-0.0065928450785577],[0.16790181398392,0.085973851382732,0.082904681563377],[0.10615891218185,0.069729872047901,-0.083116546273232]],[[-0.10261031985283,0.053496241569519,-0.030379055067897],[-0.14017537236214,0.10289357602596,-0.011406801640987],[-0.13183243572712,0.0069501912221313,-0.054614145308733]],[[0.11715508252382,0.085290692746639,-0.20788922905922],[-0.14808419346809,0.049866247922182,0.12667478621006],[-0.080369889736176,0.012405665591359,0.10217034071684]],[[0.089497543871403,-0.068993084132671,-0.15147766470909],[0.02705130726099,-0.052903268486261,0.039961837232113],[-0.18936583399773,-0.046363439410925,-0.035575196146965]],[[-0.29679164290428,0.1381199657917,0.0066085155121982],[-0.065026134252548,-0.062558859586716,-0.078541621565819],[0.085792079567909,-0.18312571942806,-0.15959437191486]],[[0.02841647900641,-0.045792490243912,-0.13222628831863],[-0.035137854516506,-0.04210002720356,0.21013820171356],[0.20515212416649,0.2104022949934,-0.056661453098059]],[[-0.02816597558558,0.015041826292872,-0.04596209898591],[-0.12173217535019,-0.038994204252958,-0.047765951603651],[0.014536221511662,0.025478271767497,-0.0044664181768894]],[[0.1601300239563,0.068048618733883,0.14604119956493],[-0.068865284323692,-0.043273281306028,-0.12248190492392],[0.0043145716190338,0.00091028900351375,-0.095785893499851]],[[0.17322219908237,0.17971216142178,0.040342345833778],[-0.0027279257774353,0.040670730173588,0.0053023886866868],[-0.024115452542901,-0.018388448283076,-0.018948724493384]],[[-0.1083407253027,0.070414081215858,-0.11274061352015],[-0.012199119664729,0.03265730664134,0.066965483129025],[-0.094276674091816,0.12270987778902,0.10878942161798]],[[0.12902329862118,-0.0031872324179858,-0.1893297880888],[-0.040229458361864,0.081781901419163,0.04115617275238],[-0.19746500253677,0.07032935321331,0.22768659889698]],[[-0.08938917517662,0.17144700884819,-0.017928505316377],[-0.026153545826674,-0.0019281185232103,-0.15719868242741],[-0.035110618919134,-0.084797531366348,0.11781629920006]],[[0.16653156280518,0.051870051771402,-0.042574670165777],[0.05091392621398,0.054698754101992,-0.085582934319973],[-0.11040391772985,-0.061706468462944,0.07039200514555]],[[-0.082297921180725,-0.078491218388081,-0.05187876522541],[-0.20885048806667,-0.071056917309761,0.073295645415783],[0.091290131211281,0.008951298892498,0.1364509165287]],[[-0.015415603294969,0.069684691727161,0.039832446724176],[-0.020691160112619,0.1608529984951,0.055906627327204],[0.014328133314848,0.13062563538551,0.13187822699547]],[[0.04160575941205,0.013195735402405,-0.023136287927628],[-0.074859954416752,-0.021483588963747,-0.10140071064234],[-0.16872572898865,-0.12304212152958,-0.20980477333069]],[[0.039608780294657,0.031461369246244,0.040383964776993],[-0.019958443939686,-0.051712401211262,-0.078188829123974],[-0.034378424286842,-0.030504576861858,-0.074889957904816]],[[-0.023287583142519,0.023852922022343,0.12641203403473],[0.081792213022709,0.022094303742051,0.01127558387816],[-0.021656148135662,0.01287089381367,-0.039965827018023]],[[-0.17260472476482,-0.054928604513407,-0.14693959057331],[-0.084757544100285,-0.074476100504398,0.075611218810081],[0.12922701239586,0.02256571687758,-0.042472403496504]],[[-0.057106465101242,-0.021808484569192,0.26234996318817],[0.044326577335596,0.061811365187168,-0.056216605007648],[0.036748562008142,-0.004658589605242,-0.051847107708454]],[[-0.15930490195751,-0.17707960307598,-0.11343011260033],[-0.019261529669166,-0.097304813563824,0.13807821273804],[0.20174491405487,0.072606854140759,-0.10373308509588]],[[-0.099385723471642,0.1743596047163,0.082675606012344],[-0.11799705773592,0.05916753411293,-0.17658396065235],[-0.068293876945972,0.11003534495831,0.051734328269958]],[[-0.11589138954878,0.074258796870708,-0.20494775474072],[0.066793911159039,0.011879255063832,0.031464286148548],[0.0040293768979609,0.025885673239827,0.043065547943115]],[[0.11744863539934,-0.13574673235416,0.059238441288471],[0.1502585709095,-0.084050811827183,0.039713174104691],[0.04912967607379,-0.13663800060749,-0.077261127531528]],[[-0.01852591149509,0.02286353521049,-0.023900635540485],[-0.040610138326883,0.080060914158821,-0.020740609616041],[0.12416711449623,-0.091397911310196,0.026650262996554]],[[0.0020859795622528,0.083391353487968,0.11088719964027],[0.08404678106308,0.0047928420826793,-0.058304473757744],[-0.060822870582342,-0.14907512068748,-0.07900246232748]],[[-0.12505774199963,0.013158721849322,0.12061104923487],[0.040587514638901,-0.035179652273655,0.069275543093681],[0.0044636828824878,-0.097451344132423,0.011048970744014]],[[0.12912811338902,0.052405413240194,-0.063765145838261],[0.088769853115082,0.047873340547085,0.010912111960351],[0.14092336595058,0.075689531862736,0.07046340405941]],[[0.02364275418222,0.081342294812202,0.087985903024673],[0.12053364515305,-0.013030092231929,0.022179795429111],[0.11596702039242,-0.04874587059021,-0.0085802637040615]],[[-0.027158452197909,-0.14833037555218,0.045868068933487],[0.050600193440914,-0.026378057897091,-0.05406516417861],[-0.22277590632439,-0.16891241073608,0.055438920855522]],[[-0.053145907819271,-0.042745519429445,-0.10397602617741],[-0.12251484394073,-0.12910979986191,-0.25018456578255],[0.0079342154785991,-0.26853561401367,-0.22866687178612]],[[-0.038685638457537,-0.0421460904181,0.064155839383602],[0.055231004953384,0.047169990837574,0.1094757989049],[-0.16606795787811,-0.01593442261219,-0.13161909580231]],[[-0.11415484547615,0.18712329864502,-0.083523795008659],[-0.19831569492817,0.071282349526882,0.088622413575649],[-0.1821556687355,-0.069582425057888,-0.067154563963413]],[[0.03046689927578,-0.079496249556541,0.31474676728249],[-0.041103061288595,-0.20595501363277,0.095666475594044],[0.045540302991867,-0.15606184303761,-0.076342083513737]],[[-0.19826500117779,-0.075025141239166,0.16241003572941],[-0.0076058986596763,0.00023824692470953,0.068134501576424],[-0.10881480574608,-0.13110503554344,-0.057521179318428]],[[0.053334970027208,0.073922522366047,0.055231336504221],[0.037046521902084,-0.016446564346552,-0.020361235365272],[0.04807323589921,0.11100015044212,0.10784006118774]],[[-0.065704748034477,-0.022075833752751,0.18593873083591],[0.25072810053825,0.032422572374344,0.04350746050477],[0.18028208613396,0.23492063581944,0.11207938194275]],[[0.045704528689384,0.24764731526375,-0.053212847560644],[0.099110022187233,0.058103747665882,-0.024718269705772],[0.043824151158333,-0.012004700489342,-0.0065130693838]],[[-0.034881506115198,0.022023582831025,-0.10950103402138],[-0.049397595226765,0.059935562312603,-0.11846847087145],[-0.080629095435143,0.2214050590992,-0.054296016693115]],[[0.071327291429043,0.012953764759004,0.026030628010631],[0.13107125461102,0.13703317940235,-0.082891918718815],[0.014467411674559,-0.12335227429867,-0.20255635678768]],[[-0.067546263337135,-0.047008968889713,0.012355268001556],[-0.05964944884181,-0.20679853856564,0.027395598590374],[-0.018765585497022,0.033783119171858,-0.095199666917324]],[[0.040701415389776,0.086602360010147,-0.022243788465858],[-0.076609015464783,0.048487775027752,0.049975618720055],[0.12751239538193,0.031278621405363,-0.028067901730537]],[[0.11612497270107,0.0080538624897599,-0.056185532361269],[0.050185415893793,-0.21279336512089,-0.087557516992092],[0.080093383789062,-0.041426226496696,0.099370889365673]],[[0.081232130527496,0.13172715902328,0.021063458174467],[0.080788850784302,0.023798720911145,-0.21242682635784],[-0.09755253046751,-0.12032671272755,0.13023924827576]],[[-0.17982432246208,0.098840139806271,0.013404445722699],[-0.17324954271317,0.067790381610394,0.083269350230694],[-0.1358223259449,0.082348793745041,0.036913331598043]],[[-0.19215828180313,-0.0051586730405688,-0.15728344023228],[0.0059988284483552,-0.091225519776344,-0.10454033315182],[-0.18926198780537,-0.14894314110279,-0.21666851639748]],[[0.081275679171085,0.076771542429924,0.05446045845747],[-0.011721846647561,-0.066677786409855,0.055795177817345],[-0.029551260173321,0.047479964792728,0.0075082923285663]],[[-0.054949998855591,-0.012931671924889,-0.05818909406662],[-0.00046731941984035,-0.0065766964107752,-0.049325603991747],[-0.049711443483829,-0.0056612635962665,-0.18604040145874]],[[0.086896575987339,-0.12142535299063,0.20455113053322],[0.052487555891275,-0.085029691457748,0.11241076886654],[0.0048458892852068,-0.060323398560286,0.11484979093075]],[[0.069997176527977,0.021590504795313,-0.095332287251949],[0.015380304306746,-0.11069843918085,-0.15715831518173],[-0.30530396103859,-0.01989228464663,-0.3106983602047]],[[0.05040306225419,0.086194515228271,0.0079701282083988],[-0.096775978803635,-0.033188793808222,-0.041565697640181],[-0.044937718659639,-0.061583049595356,-0.217659547925]],[[-0.074468217790127,-0.063776627182961,-0.10825857520103],[0.044291518628597,0.13721427321434,-0.013491047546268],[0.015586568042636,0.12134198099375,0.12611408531666]],[[-0.11195959150791,0.072294235229492,0.027726486325264],[-0.071193724870682,-0.10132770985365,0.19518761336803],[-0.077824741601944,-0.093132428824902,-0.030980583280325]],[[0.34074723720551,0.066104352474213,-0.039434298872948],[0.041767545044422,-0.05775374174118,-0.088471613824368],[0.26059284806252,0.073120251297951,-0.01907854154706]],[[-0.080642767250538,-0.17096255719662,0.053048495203257],[-0.045242786407471,0.024562383070588,-0.035336755216122],[0.045855268836021,0.021796233952045,-0.17130501568317]],[[0.24663443863392,-0.12279926985502,0.3351463675499],[0.017383348196745,-0.0081812385469675,0.16407544910908],[0.12079291790724,-0.096656374633312,0.12833167612553]],[[0.14113965630531,0.054997712373734,0.10885211825371],[-0.12244287133217,-0.086339011788368,-0.082846291363239],[-0.195357888937,-0.018159436061978,0.017206007614732]],[[0.056170336902142,-0.10274750739336,0.12488187849522],[0.032637540251017,-0.13492479920387,0.3207203745842],[0.019790345802903,-0.012844995595515,-0.22984881699085]],[[0.15327650308609,0.232492223382,0.16693505644798],[0.078172534704208,-0.022920995950699,-0.071514323353767],[-0.10662841051817,-0.012863747775555,-0.055146232247353]],[[-0.047312755137682,-0.050364144146442,0.022128824144602],[0.13051001727581,0.090000934898853,0.021689174696803],[0.011610577814281,0.10517771542072,-0.029982140287757]],[[0.013206016272306,0.19415727257729,0.21750696003437],[0.078249432146549,-0.057142946869135,0.041348166763783],[0.03504665941,0.094661206007004,0.049711626023054]],[[-0.13194014132023,0.035094946622849,0.073097802698612],[-0.031590864062309,-0.019435841590166,0.11108990758657],[-0.063471734523773,-0.01214153598994,0.11195947229862]],[[-0.019817057996988,-0.067448131740093,-0.037524521350861],[0.090492881834507,0.00057718582684174,0.0085075758397579],[0.10449835658073,-0.013211127370596,0.089668959379196]],[[0.17498734593391,0.064587131142616,-0.088209338486195],[0.15153627097607,-0.14639267325401,0.1370492130518],[0.063715182244778,0.10531356185675,-0.041062895208597]],[[-0.40929448604584,-0.048182740807533,0.10030630975962],[0.021944688633084,-0.032354880124331,0.065320506691933],[-0.086216315627098,-0.050485864281654,-0.049908526241779]],[[0.12980614602566,0.017691703513265,0.015247879549861],[-0.085165061056614,-0.07440173625946,-0.089589230716228],[0.14755344390869,-0.037469401955605,0.12468350678682]],[[0.18127411603928,0.014995628967881,0.038511779159307],[-0.024620270356536,-0.042165689170361,-0.0025224175769836],[-0.095401160418987,-0.117565497756,-0.033280074596405]],[[0.12540157139301,0.11179689317942,-0.048660468310118],[-0.045465130358934,-0.087183214724064,-0.10065171122551],[0.06426640599966,-0.02356931194663,-0.093446180224419]],[[0.1148395165801,-0.008053875528276,-0.0017238999716938],[0.0264707878232,0.063298672437668,-0.020463529974222],[0.23605117201805,-0.052581481635571,0.010498349554837]],[[-0.12635080516338,-0.097050122916698,0.11657612025738],[0.029665097594261,0.06395560503006,-0.011977416463196],[-0.11121740937233,0.15655879676342,-0.14413547515869]],[[-0.13358923792839,-0.15719895064831,-0.16928933560848],[0.04843233525753,-0.03280682861805,0.10786591470242],[0.14901737868786,0.010874387808144,0.18132744729519]],[[-0.038110069930553,-0.087981887161732,0.077563978731632],[0.14908744394779,0.069695971906185,-0.053242303431034],[-0.053746037185192,0.058991122990847,0.022215152159333]],[[0.027410328388214,-0.070670142769814,-0.11513114720583],[0.29423877596855,0.014344768598676,-0.171650364995],[-0.040681406855583,-0.1150982901454,-0.0044592800550163]],[[-0.10785514116287,0.092355661094189,0.055466905236244],[-0.058092597872019,-0.010488641448319,-0.010029927827418],[-0.090746842324734,-0.066541880369186,-0.041933462023735]],[[-0.01329146604985,0.19985938072205,0.071356326341629],[0.078392930328846,0.23086777329445,-0.10404205322266],[0.076409094035625,0.15189705789089,0.045459114015102]],[[0.061321638524532,0.0013548947172239,-0.067470371723175],[-0.14063656330109,0.019300024956465,0.20631647109985],[-0.10397873073816,0.053931999951601,0.067550532519817]],[[-0.061705898493528,0.19392244517803,0.071870148181915],[-0.048090919852257,-0.16417714953423,-0.19863441586494],[0.17228990793228,0.028878381475806,-0.12526859343052]],[[-0.092910066246986,0.034839075058699,-0.067064456641674],[0.035140804946423,0.00706229172647,-0.07141251116991],[-0.095724247395992,-0.13743223249912,-0.098954543471336]],[[-0.031744886189699,0.33751657605171,0.28497964143753],[-0.11464677006006,0.030423479154706,0.071737095713615],[0.031954605132341,-0.019482932984829,-0.083883449435234]],[[-0.13682463765144,-0.080845907330513,-0.015100403688848],[0.032680418342352,-0.17409935593605,-0.066843874752522],[0.093138061463833,-0.035323731601238,0.031479083001614]],[[0.059814382344484,0.11451818794012,0.052810546010733],[-0.0049368245527148,0.091392278671265,0.0074615464545786],[-0.01972115598619,0.078716456890106,0.067389585077763]],[[-0.0093010496348143,-0.024549249559641,-0.095158852636814],[-0.015534186735749,0.0073858085088432,-0.022542580962181],[0.31570142507553,0.014069265685976,0.11262098699808]],[[-0.026781095191836,-0.10976607352495,0.13058641552925],[0.024512683972716,-0.13453531265259,-0.079891309142113],[0.26588121056557,-0.014666301198304,-0.13867522776127]],[[-0.035707961767912,-0.06881208717823,-0.03990925103426],[0.0051139621064067,0.11766201257706,0.10824332386255],[0.023249380290508,-0.16283145546913,-0.02811667881906]],[[-0.028531411662698,-0.10246562212706,0.0040921811014414],[-0.041784696280956,-0.096305459737778,-0.10232726484537],[0.026181507855654,0.11625149101019,-0.062132228165865]],[[-0.099555984139442,0.04675880074501,0.048705622553825],[-0.065713629126549,0.0027908352203667,0.02436506934464],[0.051824301481247,-0.036258801817894,-0.064372323453426]],[[0.12838692963123,-0.31151708960533,-0.11237888783216],[0.17051146924496,0.024667106568813,0.035058781504631],[-0.010260445997119,-0.068708941340446,-0.021378010511398]],[[0.13555333018303,0.016319965943694,-0.093891486525536],[0.045927301049232,0.07020466029644,-0.098495632410049],[0.0050325291231275,0.18435771763325,-0.011158592067659]],[[0.014957653358579,-0.055544845759869,-0.089252680540085],[0.014310019090772,0.021439148113132,-0.04670637100935],[-0.043079689145088,-0.078887864947319,0.075372241437435]],[[-0.13992464542389,-0.11643245071173,0.030881443992257],[-0.030388586223125,-0.11038138717413,0.040589269250631],[0.11859174817801,-0.11008571088314,-0.091323308646679]],[[0.064641579985619,-0.070588879287243,-0.14445006847382],[0.059754528105259,-0.031606957316399,0.059358388185501],[0.15611644089222,0.040759313851595,-0.17678672075272]],[[-0.15157371759415,0.074792049825191,0.10595498979092],[0.054687574505806,0.085470490157604,0.18051105737686],[0.076228894293308,0.048323810100555,0.1222885325551]],[[0.10220680385828,0.069157034158707,-0.032607134431601],[0.059814538806677,0.0021321498788893,-0.051726043224335],[-0.0289311632514,0.050028972327709,-0.025120476260781]],[[0.0075323907658458,-0.099700421094894,-0.078205958008766],[-0.05534278601408,-0.047728091478348,-0.13751113414764],[0.097061574459076,0.019839758053422,-0.15529027581215]],[[-0.036770716309547,0.26712852716446,0.066564902663231],[0.0087495418265462,0.037298277020454,-0.034538265317678],[0.021604377776384,0.072207652032375,0.036056715995073]],[[-0.0087748412042856,0.029498025774956,0.042533621191978],[-0.26578223705292,-0.2017939388752,0.010804931633174],[-0.26374199986458,-0.135602414608,-0.070356272161007]],[[0.029037779197097,-0.021489130333066,0.08614057302475],[0.016668325290084,0.19713787734509,0.05523930862546],[-0.12873767316341,-0.056462105363607,-0.037110488861799]],[[-0.035158846527338,0.11148056387901,0.0090245893225074],[-0.011170251294971,-0.16795931756496,0.091463997960091],[-0.080609828233719,-0.066963210701942,0.00031546090031043]],[[0.18581813573837,0.064876973628998,0.050670605152845],[-0.02662069350481,-0.12995588779449,0.14664393663406],[-0.0096992226317525,-0.13102486729622,-0.11899379640818]],[[-0.14599400758743,0.13830152153969,0.0055592288263142],[-0.10615053772926,0.097346618771553,-0.23860286176205],[-0.073086775839329,0.12735864520073,-0.22579792141914]],[[-0.035182263702154,-0.065472967922688,-0.085688851773739],[-0.14896361529827,-0.11556386202574,-0.24922576546669],[0.025895580649376,0.070107519626617,-0.08020357042551]]],[[[-0.060500685125589,-0.068131059408188,0.10285021364689],[-0.037919823080301,-0.11209500581026,-0.173682898283],[0.085884377360344,-0.060606308281422,-0.16444678604603]],[[-0.22338120639324,-0.058304157108068,0.071785360574722],[0.11636979877949,0.045480374246836,0.074293754994869],[-0.079890340566635,-0.085399515926838,-0.0024086378980428]],[[-0.062464106827974,-0.042291458696127,-0.019527122378349],[0.077293083071709,0.13714727759361,0.071793854236603],[0.044621337205172,0.037008438259363,-0.0048021478578448]],[[0.11303214728832,-0.088232412934303,-0.096900820732117],[-0.12694784998894,-0.038987163454294,0.011691238731146],[0.071237429976463,-0.1275962293148,-0.1472048163414]],[[0.33747944235802,0.1915749758482,-0.22426845133305],[-0.16971012949944,0.021537374705076,0.074114710092545],[-0.059973172843456,-0.01831573061645,-0.016745151951909]],[[0.09893724322319,0.13884580135345,0.07803812623024],[-0.071917720139027,-0.15086376667023,0.04839925467968],[0.23814836144447,0.13815774023533,0.0075097884982824]],[[0.1582704782486,0.042920932173729,-0.046142101287842],[-0.040108688175678,-0.026012163609266,-0.039917044341564],[0.35730537772179,0.067800611257553,-0.13602374494076]],[[-0.12460277974606,-0.08040077984333,-0.17879918217659],[-0.1892018020153,0.08014751970768,0.22501893341541],[-0.090700060129166,0.054005540907383,0.068804994225502]],[[0.057499617338181,0.04256359115243,-0.0051880241371691],[0.0034862556494772,-0.048991911113262,-0.06773491948843],[0.03071372397244,0.14025405049324,-0.058470871299505]],[[-0.014026834629476,0.017143037170172,-0.021254425868392],[-0.036803022027016,-0.10311855375767,0.022907288745046],[-0.15472622215748,-0.031211141496897,-0.084684669971466]],[[-0.06122499704361,-0.088306613266468,-0.17013093829155],[0.08518660068512,0.075833544135094,0.10939154773951],[-0.31189322471619,-0.37263402342796,-0.22096037864685]],[[0.081879317760468,-0.038918226957321,-0.059564173221588],[0.042819984257221,-0.065875463187695,-0.023839101195335],[0.14771310985088,0.15891468524933,0.019018022343516]],[[0.11668940633535,0.075279697775841,-0.0011648423969746],[0.025849882513285,-0.079909712076187,-0.081949561834335],[0.07561045140028,0.0067357174120843,-0.12479522079229]],[[0.069718092679977,-0.0057241483591497,-0.11207991093397],[-0.025826923549175,-0.047845929861069,-0.050789520144463],[0.11393573880196,-0.082994721829891,0.016902957111597]],[[-0.30442863702774,-0.063159249722958,-0.037247873842716],[-0.053566176444292,0.047216799110174,0.13727617263794],[-0.1537506878376,-0.0057742153294384,-0.024594657123089]],[[-0.026725526899099,-0.029377873986959,-0.0076191551052034],[0.10447496175766,0.0060574836097658,-0.14743641018867],[-0.19450287520885,-0.17167234420776,-0.099337607622147]],[[-0.11433492600918,-0.038462933152914,0.12555700540543],[0.015102337114513,-0.10139186680317,-0.19067293405533],[-0.044024899601936,-0.033969786018133,-0.075367622077465]],[[-0.10049071907997,0.014188559725881,0.053667943924665],[0.070636160671711,-0.02679505571723,-0.079347863793373],[-0.073299773037434,-0.074824370443821,0.086312830448151]],[[-0.24733355641365,0.031751677393913,0.02161268144846],[-0.26451227068901,-0.2194606512785,-0.18562990427017],[-0.13069948554039,0.069102935492992,0.13765606284142]],[[0.096278071403503,0.15043444931507,0.18066589534283],[-0.15370392799377,-0.045776207000017,-0.081557400524616],[0.14657624065876,-0.034235715866089,-0.024567363783717]],[[-0.11302779614925,-0.075814418494701,-0.082479238510132],[0.029773980379105,0.013029020279646,-0.087325990200043],[-0.043111059814692,-0.0066705229692161,0.17659251391888]],[[0.083505652844906,0.16712319850922,0.0093844942748547],[-0.029890669509768,-0.071696482598782,0.053867064416409],[0.003419749205932,-0.065760806202888,-0.0069700083695352]],[[0.043773796409369,-0.18338073790073,-0.24157489836216],[-0.093764796853065,-0.1137088611722,-0.030675487592816],[-0.027778334915638,0.029814852401614,-0.0064895614050329]],[[-0.071537703275681,-0.057656198740005,-0.026661133393645],[-0.08118361979723,-0.121930077672,-0.098630152642727],[0.094388067722321,-0.050756469368935,-0.03429339453578]],[[-0.012775405310094,0.13067401945591,0.161288022995],[0.023497108370066,0.20702718198299,0.1245773807168],[0.10835310071707,0.067132316529751,-0.0715172290802]],[[-0.079643540084362,-0.051656197756529,0.019704699516296],[0.12288857251406,0.015524769201875,-0.0471494756639],[-0.035947095602751,-0.031666502356529,0.10957919806242]],[[-0.14443410933018,-0.19638405740261,0.065344527363777],[0.13354559242725,0.019323710352182,0.027860816568136],[0.17448209226131,0.023600067943335,-0.013872163370252]],[[0.17201425135136,-0.032918248325586,-0.20955596864223],[-0.056575261056423,-0.015471896156669,0.062784507870674],[-0.023700248450041,-0.10295102000237,-0.14116878807545]],[[-0.074607856571674,-0.077343791723251,0.024500232189894],[0.1974935978651,0.020229615271091,-0.083973444998264],[-0.08007575571537,-0.079039670526981,-0.14858105778694]],[[0.048566356301308,0.029012629762292,-0.058106578886509],[0.081521451473236,-0.038761265575886,-0.056667774915695],[0.017927970737219,-0.13869965076447,0.017972346395254]],[[-0.1047520712018,-0.11089894175529,-0.18915867805481],[-0.15878157317638,0.027997093275189,0.18409761786461],[0.19130204617977,0.017002059146762,-0.15352441370487]],[[-0.092499226331711,-0.0061979489400983,0.01867993734777],[-0.0040449728257954,0.064702644944191,0.049486376345158],[0.033058546483517,0.025615258142352,0.15197806060314]],[[-0.080789975821972,-0.11672470718622,0.29889950156212],[-0.14829936623573,0.10898298025131,0.040203802287579],[0.053701538592577,-0.019400989636779,-0.025671934708953]],[[-0.083634100854397,-0.047072622925043,-0.081442564725876],[0.088244400918484,0.15380494296551,0.087992802262306],[-0.097932755947113,-0.11388391256332,-0.0077041313052177]],[[0.015060839243233,0.053651440888643,0.033875696361065],[-0.18093967437744,-0.19623054563999,-0.30783903598785],[0.03346773609519,0.11221338808537,0.078198447823524]],[[-0.036859143525362,0.24902307987213,0.22012919187546],[0.19825260341167,0.156639367342,-0.0020906438585371],[-0.025949966162443,-0.089406132698059,-0.0216397754848]],[[-0.0837447270751,0.054725799709558,0.096872270107269],[0.088122025132179,0.11298113316298,0.19315095245838],[-0.10641918331385,-0.0455705486238,-0.0080625582486391]],[[-0.0070774429477751,-0.0762098133564,-0.050817888230085],[-0.045387834310532,0.033370707184076,0.12900753319263],[0.058342102915049,0.0046346308663487,-0.033707957714796]],[[0.0039780787192285,-0.12543001770973,-0.12771327793598],[0.15882752835751,-0.11733838915825,-0.25446844100952],[-0.10865031927824,0.012456316500902,0.14995019137859]],[[0.18521669507027,0.076451726257801,-0.054114911705256],[-0.1073611676693,-0.0068177944049239,0.073467805981636],[-0.17765878140926,0.034044273197651,0.076690204441547]],[[-0.071336440742016,-0.093357935547829,-0.14434073865414],[0.034070525318384,0.030168827623129,-0.051274765282869],[-0.062932379543781,-0.0059810257516801,-0.010694068856537]],[[0.048613350838423,0.10046508163214,0.0085448212921619],[-0.12677527964115,0.048506900668144,0.037898648530245],[0.055712260305882,0.17084443569183,0.10290199518204]],[[-0.036114897578955,-0.055617276579142,-0.048919845372438],[-0.0025630933232605,-0.035003375262022,-0.031662423163652],[-0.12402070313692,-0.1676032692194,-0.13209688663483]],[[0.031739827245474,-0.014384543523192,0.0060732434503734],[-0.051593698561192,-0.085733361542225,-0.14319176971912],[0.016243901103735,0.014251040294766,0.048184275627136]],[[0.12682241201401,0.019573669880629,0.080358564853668],[-0.11873265355825,-0.037545822560787,-0.10715365409851],[-0.081928722560406,-0.09493599832058,-0.14968028664589]],[[0.044239539653063,0.061338808387518,0.14888252317905],[0.020640483126044,-0.19914814829826,-0.15033200383186],[0.074476324021816,-0.03218400105834,-0.042789064347744]],[[-0.015514198690653,-0.0055073741823435,-0.04457675293088],[0.05364953354001,0.028427433222532,-0.089536838233471],[-0.11244880408049,-0.066753655672073,-0.097881004214287]],[[-0.084082618355751,-0.060959193855524,0.072206266224384],[0.1453368216753,-0.13750039041042,-0.28803858160973],[-0.023027688264847,-0.058168940246105,-0.16850942373276]],[[-0.042740598320961,-0.051361452788115,-0.20925994217396],[0.049935802817345,0.17903539538383,0.27984148263931],[-0.050430096685886,-0.13185907900333,-0.32006549835205]],[[-0.014756097458303,-0.15215994417667,-0.20040239393711],[-0.07065537571907,-0.22295945882797,-0.20567785203457],[-0.063086152076721,-0.17470505833626,-0.042197786271572]],[[-0.095616303384304,-0.047613952308893,0.078002147376537],[0.044570036232471,-0.058413472026587,-0.097485035657883],[0.076783426105976,0.0016307521145791,0.080614380538464]],[[0.096415475010872,0.15320506691933,0.068147651851177],[-0.026939705014229,0.11885286122561,-0.096637897193432],[0.092921815812588,0.043066818267107,0.019090348854661]],[[0.031850419938564,0.024904020130634,-0.067566238343716],[-0.11291532218456,-0.07994382828474,-0.14019513130188],[-0.07485131919384,-0.086042188107967,-0.12235327810049]],[[-0.12817032635212,-0.10347634553909,-0.10629057884216],[0.070940755307674,0.07477418333292,0.031124975532293],[0.20790940523148,0.14985871315002,-0.13102760910988]],[[-0.081354767084122,-0.0065447431989014,0.10158731788397],[0.051040533930063,-0.1142239049077,-0.090374380350113],[-0.14694833755493,-0.0038834838196635,-0.0230015181005]],[[-0.11573915183544,-0.068761900067329,-0.0049524330534041],[0.020658103749156,-0.0077473297715187,-0.066917605698109],[0.2626790702343,0.10789933800697,0.052649628371]],[[0.12937366962433,0.083596348762512,-0.1734477430582],[-0.072669513523579,0.095453225076199,0.063832148909569],[0.033108949661255,-0.061462372541428,-0.1233903542161]],[[-0.22171945869923,-0.1649000197649,-0.1359169781208],[0.18919710814953,0.12574397027493,0.045830681920052],[-0.095571517944336,-0.12720522284508,-0.1525787115097]],[[-0.017317967489362,0.0074895643629134,-0.090898051857948],[-0.19096191227436,-0.1789475530386,-0.17328879237175],[0.12865036725998,-0.023405469954014,0.075149066746235]],[[-0.027768708765507,-0.083604417741299,0.099542155861855],[-0.018896946683526,0.0058044530451298,0.055094324052334],[-0.15784764289856,0.0021204224321991,-0.029448175802827]],[[0.098043642938137,0.035899881273508,-0.054031778126955],[-0.041544295847416,-0.080910876393318,-0.21321494877338],[0.013851264491677,0.040137335658073,0.053758203983307]],[[0.035543292760849,-0.091041468083858,-0.091764651238918],[-0.21494208276272,-0.10161639750004,-0.13631869852543],[-0.085125260055065,-0.13217194378376,-0.10494215041399]],[[0.073707066476345,0.041485495865345,-0.036694291979074],[0.036486651748419,0.042445320636034,0.12677536904812],[-0.03590590134263,-0.0012326602591202,0.0018753325566649]],[[-0.052710622549057,0.086542762815952,0.049650628119707],[0.058605901896954,-0.076123237609863,-0.030431328341365],[0.031844992190599,0.083192959427834,-0.14744518697262]],[[0.10818349570036,0.0078778453171253,-0.0026376778259873],[0.0025244595017284,-0.041851900517941,-0.11823435127735],[0.0028729566838592,0.014245261438191,0.0105363400653]],[[0.053862735629082,-0.01135749835521,-0.062447547912598],[-0.053594499826431,0.0378547757864,0.058667622506618],[0.012239540927112,-0.040319465100765,-0.14867348968983]],[[0.0055739055387676,0.05146811902523,-0.13944035768509],[-0.070423483848572,-0.067952260375023,-0.18270875513554],[-0.048085816204548,-0.13594569265842,-0.074556820094585]],[[-0.18523365259171,-0.13009326159954,-0.046499658375978],[-0.026133760809898,-0.08602923899889,0.014369747601449],[-0.042840983718634,-0.048185359686613,-0.016461262479424]],[[0.080743253231049,-0.022610321640968,-0.0809426009655],[0.16502480208874,0.062314607203007,0.010336820036173],[-0.090556390583515,-0.16528777778149,-0.19792027771473]],[[-0.077212356030941,-0.0091317165642977,0.09445209056139],[-0.095448657870293,0.089988380670547,0.12908232212067],[0.18973526358604,-0.032632853835821,-0.23379319906235]],[[0.047037854790688,-0.014071650803089,-0.25989583134651],[-0.1363846808672,0.046819649636745,0.32287937402725],[-0.06270057708025,-0.10389029234648,-0.17159232497215]],[[0.016617685556412,0.034553196281195,0.19823460280895],[-0.21708016097546,-0.11025649309158,0.056018088012934],[0.10364314168692,0.089476510882378,0.062308985739946]],[[-0.085865087807178,-0.11580606549978,-0.024741005152464],[-0.15858595073223,-0.17513421177864,-0.027041830122471],[-0.028507897630334,-0.025977615267038,-0.20751149952412]],[[-0.052260924130678,0.019065357744694,0.012411819770932],[0.060380656272173,-0.051092650741339,-0.03006461635232],[-0.13659445941448,-0.081965059041977,-0.042364925146103]],[[0.11881159245968,-0.0224565025419,-0.00869897659868],[0.047152750194073,-0.11101341247559,-0.11139159649611],[-0.042419467121363,-0.10049275308847,-0.22293336689472]],[[0.1496376991272,0.13746050000191,0.09068613499403],[-0.074988327920437,-0.056334655731916,-0.054381344467402],[0.075290396809578,-0.016265628859401,0.0050580711103976]],[[-0.084209442138672,-0.18600070476532,-0.23251062631607],[-0.13210116326809,0.087978594005108,0.1936374604702],[0.097907595336437,-0.019256062805653,-0.17694309353828]],[[0.020603328943253,-0.059713251888752,-0.12780579924583],[-0.15198631584644,-0.25128018856049,-0.32232490181923],[-0.068733982741833,-0.086611606180668,-0.17910847067833]],[[-0.10756712406874,-0.092478305101395,-0.16672812402248],[-0.13560354709625,-0.091158129274845,0.15122973918915],[0.040180042386055,-0.013086740858853,-0.085163660347462]],[[-0.14169670641422,-0.13700489699841,-0.098140373826027],[-0.16695256531239,-0.17223919928074,-0.1541935056448],[-0.055882483720779,-0.10035119205713,-0.27921062707901]],[[0.092347607016563,0.017979262396693,-0.054393406957388],[-0.04549290984869,-0.0021419739350677,0.032917317003012],[0.032284703105688,0.071367487311363,0.11471552401781]],[[-0.089275524020195,-0.093893595039845,-0.097730495035648],[0.1981778293848,0.043354526162148,-0.0094929486513138],[-0.077582985162735,-0.057608745992184,0.052835416048765]],[[0.060662522912025,0.090322487056255,0.046170104295015],[-0.058184087276459,-0.044039715081453,-0.040790848433971],[-0.081249721348286,0.092172957956791,0.16896235942841]],[[-0.018829422071576,-0.011425203643739,-0.018295157700777],[0.008186592720449,0.080132529139519,0.12053832411766],[-0.11744765937328,-0.055632088333368,-0.073788844048977]],[[-0.11372029036283,-0.046481620520353,0.012777593918145],[0.09121211618185,0.077973037958145,-0.019810842350125],[-0.010116731747985,-0.046431019902229,-0.15537658333778]],[[0.010863576084375,0.0070002153515816,0.099261574447155],[0.076038211584091,-0.093764394521713,-0.17574916779995],[0.068513184785843,0.0021635070443153,-0.080869719386101]],[[0.03538516908884,0.036234878003597,0.034211155027151],[0.057711862027645,-0.16502891480923,-0.27963837981224],[0.13189427554607,0.024576883763075,0.055394131690264]],[[0.10551682859659,0.20569065213203,-0.048833064734936],[0.11770234256983,-0.033506952226162,-0.098521701991558],[-0.031691458076239,-0.087312899529934,-0.012130073271692]],[[-0.079106956720352,-0.10826820135117,-0.11165785044432],[0.15245118737221,0.011035654693842,0.048765581101179],[0.041220385581255,-0.13803912699223,-0.071120403707027]],[[0.04164269939065,0.049412161111832,-0.06140149757266],[-0.11431642621756,-0.034291189163923,-0.075340181589127],[0.11845456063747,-0.034508783370256,-0.041275780647993]],[[-0.018768714740872,0.0083467308431864,-0.066833645105362],[-0.0086543206125498,0.23562042415142,0.2550091445446],[0.0099000735208392,0.13064368069172,0.15568535029888]],[[-0.027781706303358,-0.14099329710007,-0.19040060043335],[-0.2290703356266,-0.1107430383563,-0.091349966824055],[-0.023898173123598,0.029504302889109,-0.045191910117865]],[[-0.1113189086318,-0.076038353145123,-0.044851634651423],[0.011885430663824,-0.023979539051652,-0.016882993280888],[-0.027436394244432,0.1423474997282,0.095454923808575]],[[-0.051811680197716,-0.045280177146196,0.043673351407051],[0.032885205000639,-0.049504775553942,-0.00016216392396018],[-0.060260914266109,-0.14630927145481,-0.16594853997231]],[[0.095367819070816,0.052594948559999,-0.025438588112593],[-0.14836367964745,0.05070823803544,0.12536592781544],[0.26230749487877,0.040915310382843,-0.26173281669617]],[[-0.079929493367672,-0.063051484525204,0.13529185950756],[0.024163790047169,-0.009942295961082,-0.010299830697477],[0.029289657250047,-0.019092177972198,-0.060040663927794]],[[-0.072050370275974,-0.089127205312252,-0.15636625885963],[-0.074552625417709,-0.093084573745728,0.073526293039322],[-0.053032118827105,0.0033597403671592,0.017223291099072]],[[0.002492095110938,0.088418669998646,0.14899168908596],[0.016261639073491,-0.084411986172199,-0.16427631676197],[0.045840255916119,-0.08051386475563,-0.078252911567688]],[[-0.18686302006245,-0.057990334928036,0.19435377418995],[-0.020000712946057,0.084741547703743,0.071298450231552],[0.14211103320122,0.047533351927996,-0.028499634936452]],[[0.0060000820085406,0.13911683857441,0.27260857820511],[0.18469762802124,0.12360659986734,-0.0018950236262754],[0.022274723276496,-0.16126368939877,-0.16855476796627]],[[0.082538895308971,-0.10940560698509,-0.077606849372387],[-0.1763699054718,-0.008882169611752,-0.010922022163868],[-0.10692945122719,-0.088375844061375,0.038690067827702]],[[0.13550336658955,0.13066498935223,0.044114619493484],[-0.067912951111794,0.064082585275173,-0.072424277663231],[-0.033080939203501,-0.15652295947075,-0.30657085776329]],[[-0.02980225160718,0.012753364630044,-0.0013946547405794],[0.0025930760893971,-0.10108390450478,-0.044303648173809],[0.080470129847527,-0.062296938151121,-0.23464831709862]],[[-0.084454454481602,-0.099152684211731,-0.063237704336643],[-0.10800145566463,0.056329909712076,0.083599120378494],[0.1510109603405,0.14410015940666,-0.015731828287244]],[[-0.04288050159812,0.0073151220567524,0.0086246989667416],[-0.029469098895788,-0.088028781116009,0.034932874143124],[-0.1390615105629,0.089334860444069,0.034129865467548]],[[0.075343362987041,-0.029102206230164,-0.065328359603882],[-0.030682049691677,0.050833363085985,0.14470234513283],[0.027479983866215,-0.071957841515541,-0.087087012827396]],[[-0.18172560632229,0.010293678380549,-0.0092091578990221],[0.01458509452641,0.12276926636696,0.056654535233974],[0.0088691152632236,0.042294658720493,0.051563281565905]],[[-0.029975896701217,-0.0012261623051018,-0.016300518065691],[0.11672949045897,0.04493996873498,0.2233490049839],[-0.20779299736023,-0.082215890288353,-0.046839125454426]],[[0.033496119081974,-0.06006433069706,-0.18092165887356],[-0.059889256954193,0.07468655705452,0.1345978975296],[0.2744822204113,0.15325845777988,-0.021850420162082]],[[-0.0031818835996091,-0.040006946772337,-0.082013882696629],[0.027224054560065,-0.10504530370235,-0.014283650554717],[0.17134507000446,-0.042560938745737,-0.19413013756275]],[[-0.042367465794086,-0.15454271435738,-0.047388531267643],[-0.082908622920513,-0.10909777879715,-0.16711433231831],[-0.12694479525089,-0.16771766543388,-0.053322087973356]],[[0.12795619666576,0.086096607148647,0.11052651703358],[0.067375123500824,0.1122081130743,0.211077272892],[-0.12594990432262,-0.21790038049221,-0.14937117695808]],[[0.044902797788382,-0.099037311971188,0.12914070487022],[0.14588332176208,0.0055955206044018,-0.13844218850136],[-0.03438676148653,-0.062475327402353,-0.024518448859453]],[[0.17023082077503,-0.1396906375885,-0.0027710380963981],[-0.13075049221516,-0.23862454295158,-0.055998053401709],[-0.14028222858906,0.034922707825899,0.3720511496067]],[[-0.0012770897010341,-0.063258409500122,-0.035161521285772],[0.085893996059895,0.078640818595886,-0.013530345633626],[-0.056510239839554,-0.12113114446402,-0.14335830509663]],[[-0.031937807798386,0.15832562744617,0.06254781037569],[0.042522173374891,0.14242886006832,0.16213342547417],[-0.14059795439243,-0.078088529407978,-0.16493266820908]],[[0.10002179443836,0.018187500536442,0.03243950381875],[-0.21181927621365,0.025919616222382,-0.02140742726624],[-0.063987717032433,-0.063179567456245,-0.0084290346130729]],[[-0.0031730348709971,0.13958731293678,-0.087695978581905],[0.15554927289486,0.076133735477924,0.19608429074287],[-0.050794918090105,-0.14736515283585,-0.2832972407341]],[[-0.17602044343948,-0.13489644229412,-0.18848592042923],[0.14498156309128,0.098286345601082,0.065873615443707],[-0.21839284896851,-0.12317985296249,-0.16159671545029]],[[0.010965992696583,0.014194875955582,-0.093400746583939],[0.028766553848982,-0.047422092407942,-0.090245246887207],[-0.015293770469725,0.014892569743097,-0.0037572977598757]],[[0.025272522121668,0.076120346784592,0.045361079275608],[-0.030968144536018,0.12303854525089,0.077682502567768],[-0.11157566308975,-0.17202371358871,-0.11504023522139]],[[-0.090248294174671,-0.021105388179421,0.16407981514931],[0.088300161063671,0.054992619901896,0.062143102288246],[0.0021997219882905,0.15820075571537,0.11502179503441]],[[-0.18621179461479,-0.065952330827713,0.054643910378218],[-0.026378467679024,-0.024844607338309,-0.12561784684658],[-0.096658080816269,-0.021282825618982,-0.0060079144313931]],[[-0.13606439530849,-0.099465407431126,0.097254015505314],[0.076058924198151,0.11947444826365,0.12661875784397],[0.15861436724663,-0.021929949522018,-0.088352762162685]],[[-0.037127498537302,0.078193642199039,-0.062833845615387],[0.010790385305882,0.11433970928192,-0.040075063705444],[0.04674094542861,-0.016972130164504,-0.064416132867336]],[[-0.10275904089212,-0.070250898599625,0.0082683647051454],[-0.062607325613499,-0.022564308717847,-0.0468341819942],[-0.021212495863438,0.025915298610926,-0.078821018338203]],[[0.063003160059452,0.064531899988651,-0.12092917412519],[-0.027841543778777,0.031868942081928,-0.05740836635232],[-0.0048694931901991,-0.041223868727684,0.0043567456305027]],[[0.046819780021906,-0.10899129509926,-0.21427081525326],[-0.097178839147091,0.10594862699509,0.31388103961945],[0.071993663907051,-0.19822666049004,-0.06481958180666]]],[[[-0.075407385826111,-0.028754130005836,0.0057287230156362],[-0.022367876023054,0.023619074374437,0.037320766597986],[-0.088618822395802,-0.047472342848778,-0.041684653609991]],[[-0.028903264552355,-0.041592594236135,0.084459789097309],[0.053851701319218,0.046641778200865,0.018854737281799],[-0.0081396410241723,-0.083126038312912,-0.055541332811117]],[[0.063766211271286,-0.065118908882141,-0.014075967483222],[-0.0058972290717065,-0.018193881958723,-0.081620410084724],[-0.074369534850121,-0.032136987894773,-0.0086181331425905]],[[-0.10185301303864,0.0025314975064248,-0.077530853450298],[-0.087798826396465,-0.063398413360119,-0.064957395195961],[0.024908514693379,-0.043296564370394,-0.00085456867236644]],[[-0.011627778410912,-0.03940661624074,0.019335212185979],[-0.031708151102066,0.044889088720083,0.10424534976482],[0.0019652941264212,-0.0095368092879653,0.038501542061567]],[[0.079290471971035,-0.010562762618065,0.108179949224],[0.075180657207966,-0.078003980219364,0.059433087706566],[-0.010630274191499,-0.076710976660252,-0.04238648340106]],[[0.097113542258739,0.056469030678272,0.10384979844093],[-0.022818321362138,0.02236595377326,-0.013591812923551],[0.012468824163079,0.02593139745295,0.062201749533415]],[[-0.080752417445183,-0.049944773316383,-0.10151851922274],[0.090465165674686,0.018104357644916,-0.0045737405307591],[-0.062558516860008,-0.050518475472927,-0.074050031602383]],[[0.014051303267479,-0.0087337819859385,0.023897891864181],[-0.039444219321012,0.023587644100189,-0.02886794321239],[0.0031518589239568,0.023921351879835,-0.030551116913557]],[[-0.035081993788481,-0.00011313192226226,-0.10919155925512],[0.038086872547865,0.027935096994042,-0.065707825124264],[-0.023804055526853,0.01047926209867,0.1131951585412]],[[-0.009343458339572,-0.10451962798834,0.0076296939514577],[-0.10840059071779,0.022010806947947,0.021343925967813],[-0.062618084251881,0.019214125350118,-0.15309754014015]],[[-0.04401196166873,-0.046491131186485,0.017335580661893],[-0.024936450645328,-0.037292398512363,-0.011808322742581],[-0.058270812034607,-0.13693714141846,-0.031452752649784]],[[-0.053663019090891,-0.028711598366499,0.095696091651917],[-0.0019430819666013,-0.10098775476217,0.1259933412075],[-0.1138811558485,-0.076630413532257,0.0034799231216311]],[[0.11332758516073,-0.015358814038336,-0.12348027527332],[0.092014275491238,0.03650140017271,-0.035253711044788],[0.0017047259025276,0.072278708219528,-0.023347878828645]],[[-0.088136687874794,-0.044728204607964,0.041823923587799],[-0.0035968672018498,-0.067027188837528,-0.10022080689669],[-0.026510303840041,-0.054995402693748,0.029251156374812]],[[-0.053728833794594,-0.036408383399248,-0.040893886238337],[0.093647412955761,-0.02452933229506,-0.0073520755395293],[0.13217142224312,-0.10215018689632,-0.042686577886343]],[[-0.1268143504858,0.08792944252491,0.087384954094887],[0.043773535639048,-0.02187979221344,0.039169572293758],[-0.10240755975246,-0.039537314325571,-0.004108255263418]],[[-0.042235147207975,0.096585847437382,0.074523687362671],[0.056867580860853,0.11755578964949,0.064914658665657],[0.060351826250553,0.064912788569927,-0.020822932943702]],[[-0.050446584820747,0.035937402397394,-0.065952226519585],[0.14755526185036,0.036811385303736,0.031405888497829],[-0.042543191462755,-0.030422629788518,-0.066411100327969]],[[-0.042404413223267,0.038631033152342,0.065437339246273],[-0.05956569686532,0.089694403111935,0.019364856183529],[0.047896977514029,0.044935770332813,0.015842126682401]],[[-0.040992673486471,-0.01381518971175,-0.06025380268693],[-0.031312424689531,0.044099871069193,0.068322844803333],[0.054598171263933,-0.069373063743114,-0.071049056947231]],[[-0.042381651699543,-0.022458884865046,-0.010780986398458],[0.10164488852024,0.078518845140934,0.0072664585895836],[0.017313865944743,-0.096208281815052,-0.038715310394764]],[[0.050004858523607,-0.0026783461216837,-0.051731843501329],[-0.0081352684646845,0.01823260448873,0.028990872204304],[-0.011078333482146,-0.012868281453848,-0.051925644278526]],[[-0.019464997574687,-0.031334217637777,0.037978671491146],[0.03471789881587,-0.036141917109489,-0.044039465487003],[0.034407023340464,-0.1131806820631,-0.088504865765572]],[[0.005572771653533,-0.065434776246548,-0.071885146200657],[0.062411911785603,-0.09042950719595,-0.051541872322559],[-0.0088400226086378,-0.013529579155147,-0.06139912083745]],[[-0.0028240261599422,-0.025183433666825,-0.058394268155098],[-0.013497695326805,-0.018747884780169,0.068355284631252],[-0.027973368763924,0.0085337748751044,0.1486751139164]],[[0.010523139499128,0.060942217707634,0.018193300813437],[-0.002569587668404,0.062369853258133,-0.015206419862807],[-0.060881894081831,0.042773868888617,-0.089198268949986]],[[-0.019174629822373,0.0056206285953522,0.032235272228718],[0.063046932220459,0.044961154460907,-0.024494687095284],[-0.032979026436806,0.061394724994898,0.04009297862649]],[[0.045494075864553,-0.015041410923004,-0.046255808323622],[-0.072359956800938,-0.072253979742527,0.01957637257874],[-0.031995497643948,-0.029020451009274,0.060368604958057]],[[-0.010443692095578,-0.027894454076886,-0.023845432326198],[0.018120294436812,0.012622813694179,-0.10553713142872],[0.18149387836456,-0.025643000379205,0.055347643792629]],[[0.051349472254515,0.064042322337627,-0.027169877663255],[-0.10997971892357,-0.045086942613125,-0.047132302075624],[0.027427123859525,0.084095776081085,-0.014297733083367]],[[-0.079582452774048,0.01675364933908,0.0035300401505083],[0.052045054733753,-0.006296522449702,0.050777271389961],[0.047999434173107,0.067231416702271,-0.015434003435075]],[[-0.015854921191931,-0.044674891978502,0.04257794469595],[-0.058098044246435,-0.085911028087139,-0.063212968409061],[0.0272920075804,-0.054363869130611,-0.0058870338834822]],[[-0.024500206112862,0.019502006471157,0.055474374443293],[-0.11100450158119,0.0021281726658344,0.045076604932547],[-0.057179886847734,-0.00058835599338636,0.048986367881298]],[[-0.047386076301336,-0.14514355361462,0.014921388588846],[0.022944388911128,-0.042443498969078,-0.11065953969955],[0.0074938093312085,-0.035490337759256,-0.024115500971675]],[[-0.055716242641211,0.0072226556949317,-0.0046528675593436],[-0.067197419703007,-0.026226762682199,-0.051681440323591],[0.072478458285332,0.022004889324307,-0.040603138506413]],[[0.045529898256063,0.028003010898829,0.087407074868679],[0.052616953849792,0.11849697679281,0.098553113639355],[-0.020830513909459,-0.093891061842442,0.057107325643301]],[[-0.0017127932514995,-0.0944784283638,-0.055857699364424],[-0.051034029573202,-0.012042849324644,-0.021528040990233],[0.0072734863497317,0.030093505978584,0.063143238425255]],[[0.06839607656002,-0.0014873936306685,-0.056167230010033],[-0.093844823539257,0.089335389435291,-0.0023187869228423],[0.04413540288806,-0.005451035220176,-0.022335199639201]],[[-0.070947229862213,-0.018277373164892,0.022120317444205],[-0.021797811612487,0.026879785582423,-0.026402479037642],[-0.074161991477013,-0.0018929780926555,-0.099384754896164]],[[-0.083397023379803,-0.058939445763826,-0.020939007401466],[-0.019811926409602,-0.05536138266325,0.040835101157427],[0.013444378972054,-0.049524568021297,-0.042180869728327]],[[0.023146500810981,-0.033300153911114,-0.038266330957413],[-0.070562064647675,-0.10434597730637,0.016650410369039],[-0.0073453555814922,-0.03632639721036,0.06471835821867]],[[-0.046848587691784,-0.091749407351017,-0.0045327814295888],[-0.094432525336742,0.036172270774841,-0.039335817098618],[-0.015449597500265,0.016067862510681,-0.01452019251883]],[[0.0081810429692268,-0.073165684938431,0.031923905014992],[-0.020160043612123,-0.040537249296904,0.022981144487858],[0.0051477951928973,-0.035053431987762,0.0019948149565607]],[[0.032492276281118,-0.027466399595141,0.028923235833645],[-0.11362663656473,0.041723895817995,-0.049669746309519],[-0.027560664340854,0.031649179756641,-0.089977912604809]],[[0.003878268878907,-0.066946111619473,-0.02038367651403],[0.011183824390173,-0.071508675813675,-0.087817080318928],[-0.01112109888345,-0.053644277155399,0.018050061538815]],[[-0.11690558493137,-0.037161059677601,-0.0012340748216957],[-0.017662551254034,0.072766005992889,-0.018417535349727],[0.013550150208175,-0.10529518127441,0.062342371791601]],[[0.14609831571579,0.027239486575127,-0.02037170343101],[0.081787332892418,0.021136242896318,-0.0031915479339659],[-0.039081308990717,0.11281080543995,-0.041242614388466]],[[0.051204580813646,0.0050633563660085,-0.012357736937702],[0.021523321047425,0.017316495999694,-0.0005710240220651],[0.013026462867856,0.029804425314069,0.0079537378624082]],[[-0.002120564924553,-0.057239279150963,0.046941056847572],[0.028316214680672,-0.024560613557696,-0.035566564649343],[-0.023273630067706,-0.031269907951355,-0.02901416644454]],[[0.010156096890569,-0.061057586222887,0.020400540903211],[0.031844418495893,-0.070229537785053,-0.035980023443699],[-0.020949564874172,-0.065114960074425,-0.049539282917976]],[[-0.084159784018993,-0.039713773876429,-0.021628506481647],[-0.014855856075883,-0.02294728346169,-0.065228141844273],[-0.0067289127036929,0.065548799932003,0.010756447911263]],[[-0.064039118587971,-0.03575349226594,-0.06947884708643],[-0.022276248782873,-0.059718351811171,-0.012638347223401],[-0.065597958862782,-0.0072621325962245,-0.033137258142233]],[[0.045877628028393,-0.07808630168438,-0.029981065541506],[0.077341675758362,-0.052278056740761,-0.022063482552767],[0.033232171088457,-0.039089128375053,-0.0030978838913143]],[[0.060019452124834,0.0044281780719757,0.04070832952857],[-0.10325565189123,-0.091190628707409,0.036380060017109],[-0.066826872527599,-0.088683411478996,-0.036600604653358]],[[0.024004964157939,-0.019649725407362,0.046870525926352],[0.031885851174593,0.11199469864368,0.056928139179945],[0.064150892198086,-0.082193218171597,0.013889774680138]],[[0.04492661729455,-0.0039798892103136,-0.0240837354213],[-0.011579159647226,0.034653834998608,-0.016649732366204],[-0.024959886446595,0.093176998198032,-0.015269176103175]],[[0.005215800832957,-0.022887352854013,-0.016253739595413],[0.006782861892134,-0.021781764924526,0.047199886292219],[-0.14880204200745,-0.025548255071044,0.05712528154254]],[[-0.086954042315483,-0.05793996155262,-0.1110522300005],[-0.014313850551844,0.033514529466629,0.12357542663813],[0.0018963359761983,-0.01100958045572,0.075495198369026]],[[0.12657748162746,0.19715492427349,0.14706826210022],[0.024070391431451,0.093013271689415,0.015815755352378],[-0.093592740595341,-0.0093927066773176,-0.040111113339663]],[[-0.041833739727736,-0.077672533690929,0.01639449223876],[-0.0089667923748493,-0.12851114571095,0.029591472819448],[-0.015248956158757,-0.079576976597309,0.069517381489277]],[[0.0098092164844275,-0.066258013248444,-0.11893144249916],[-0.066352933645248,-0.0032306725624949,-0.033379338681698],[0.022727254778147,0.072013899683952,-0.097410149872303]],[[0.0022274544462562,-0.028628662228584,-0.028555389493704],[-0.094188898801804,-0.042923659086227,0.013014160096645],[-0.044935170561075,0.013726208359003,-0.055422347038984]],[[-0.037259720265865,0.023434992879629,-0.010767922736704],[-0.083462320268154,-0.060388766229153,0.068438313901424],[-0.074151955544949,0.030116133391857,-0.030940027907491]],[[-0.050140108913183,-0.12652350962162,0.028074054047465],[0.015834122896194,-0.071587480604649,-0.049527242779732],[-0.0065322313457727,-0.045766789466143,0.0019299281993881]],[[0.017279332503676,-0.0018634193111211,-0.092079237103462],[-0.021610112860799,0.014683905988932,0.021827578544617],[-0.050711248070002,0.045052673667669,-0.016596227884293]],[[-0.0048903729766607,0.086854256689548,-0.037314884364605],[0.047095499932766,0.00095413404051214,-0.058669965714216],[0.016004497185349,-0.048243667930365,0.045621443539858]],[[0.063281178474426,-0.074728697538376,0.0092382375150919],[0.12887439131737,-0.091991789638996,-0.017518846318126],[0.037326171994209,-0.015790978446603,0.035131882876158]],[[-0.085488967597485,0.11249557137489,0.17688873410225],[0.032037977129221,0.12470651417971,0.18096342682838],[-0.026068272069097,0.05335733294487,0.14514616131783]],[[-0.0026569447945803,-0.11208620667458,0.030576637014747],[0.012827098369598,0.011577418074012,0.040143612772226],[-0.05852210149169,0.073711186647415,-0.0059651155024767]],[[0.092294804751873,0.086462169885635,0.041845567524433],[-0.053894232958555,-0.095436438918114,-0.13898172974586],[0.022594535723329,-0.0092117562890053,-0.017795430496335]],[[-0.015406752005219,-0.027162499725819,0.078398838639259],[-0.0051509267650545,4.607160735759e-05,-0.033283483237028],[-0.062490552663803,-0.027322217822075,-0.021465323865414]],[[-0.076469734311104,0.0081879384815693,0.01447407528758],[-0.028392009437084,-0.010143912397325,0.053943153470755],[0.010230634361506,0.021140325814486,-0.024822333827615]],[[0.017337575554848,0.062450934201479,-0.001569346524775],[-0.064560122787952,-0.05986101180315,-0.029325950890779],[-0.0029730247333646,-0.026906402781606,-0.051600486040115]],[[0.046751033514738,0.018799159675837,0.0053601008839905],[-0.16084572672844,-0.062703564763069,0.070771798491478],[-0.063378505408764,-0.074314132332802,0.01194422505796]],[[0.099239371716976,0.032339174300432,-0.02750632725656],[0.03696221113205,0.020407166332006,-0.057838458567858],[-0.085158944129944,0.065546222031116,0.021456342190504]],[[0.081150874495506,-0.015222775749862,0.14699566364288],[-0.040473878383636,-0.0074927154928446,0.057613149285316],[-0.029860777780414,-0.072636157274246,0.0077000074088573]],[[0.052239820361137,0.046910356730223,0.0046377065591514],[-0.029671058058739,0.04967001453042,0.021477706730366],[-0.079014763236046,0.013221407309175,0.045603100210428]],[[-0.0079020615667105,0.021104553714395,-0.064052179455757],[-0.13074247539043,-0.11821828782558,0.0028270983602852],[-0.11653365939856,-0.0051527717150748,-0.011181090958416]],[[-0.054255083203316,-0.023848325014114,0.010715273208916],[-0.043763279914856,0.035759586840868,-0.005614151712507],[-0.024220267310739,0.083349540829659,-0.045431312173605]],[[0.17885231971741,-0.044950440526009,-0.023172738030553],[-0.0014785774983466,-0.055637467652559,0.005919084418565],[0.049561001360416,-0.019364699721336,0.033354565501213]],[[-0.080444745719433,-0.0026527317240834,0.031746011227369],[-0.024321805685759,0.072008818387985,-0.0029941909015179],[0.056240811944008,0.02884660474956,-0.10168259590864]],[[0.021160624921322,0.014980478212237,0.037299033254385],[0.1030213907361,0.001208643312566,0.020937412977219],[0.073370136320591,-0.034009825438261,-0.034878108650446]],[[0.040156733244658,-0.0081309089437127,-0.032851491123438],[0.11099588125944,-0.097978726029396,-0.023785823956132],[0.12142530828714,-0.0382931381464,-0.067105673253536]],[[-0.063328221440315,-0.021064942702651,0.021201537922025],[-0.081836901605129,-0.016820300370455,-0.034387979656458],[-0.068019866943359,-0.012729803100228,0.019930094480515]],[[-0.081040307879448,0.027112662792206,-0.085481725633144],[0.0083046788349748,-0.046423532068729,-0.01513209939003],[-0.026636632159352,-0.046704594045877,-0.12073792517185]],[[-0.034649524837732,-0.10046820342541,-0.11744618415833],[0.25996625423431,0.084928520023823,-0.04568238183856],[0.17021781206131,-0.018048731610179,0.088143043220043]],[[0.092807240784168,-0.017688754945993,-0.029040183871984],[0.080694235861301,0.046232033520937,-0.058138940483332],[0.038576077669859,-0.024214459583163,0.0054246578365564]],[[0.046131730079651,-0.047859776765108,-0.01907991990447],[0.14998741447926,0.056282576173544,-0.0080770505592227],[-0.062022142112255,-0.034015741199255,0.013483956456184]],[[0.0049319081008434,0.047069393098354,-0.025747451931238],[-0.072773694992065,0.002383470069617,0.10803139954805],[0.010864918120205,-0.040979389101267,-0.070188112556934]],[[-0.036583930253983,-0.01145613566041,0.10348247736692],[-0.020294602960348,0.12602080404758,0.12286703288555],[-0.01726989634335,0.13173691928387,0.14470548927784]],[[0.046429835259914,0.014991356059909,0.021269449964166],[-0.03080028668046,-0.052463833242655,-0.11265602707863],[-0.017172817140818,-0.021708723157644,0.00078361708438024]],[[-0.08876496553421,0.022251078858972,0.038739655166864],[-0.058818012475967,-0.037561468780041,0.0045058159157634],[0.11018130928278,-0.073296181857586,0.085384540259838]],[[0.035828828811646,-0.075735308229923,0.045797452330589],[-0.081991314888,-0.10952840000391,-0.05901362746954],[0.044005677103996,-0.06744284927845,-0.034044522792101]],[[0.0038667826447636,0.049649350345135,-0.0087331933900714],[-0.00087506475392729,0.046652719378471,0.016269745305181],[-0.010438653640449,0.18082788586617,0.0055017080157995]],[[-0.083343453705311,-0.08686425536871,0.0086387619376183],[0.051343515515327,-0.030284190550447,-0.0894475877285],[-0.048763025552034,0.051710326224566,-0.033428676426411]],[[-0.086430326104164,0.015886101871729,-0.046272732317448],[-0.0615129545331,-0.093632891774178,0.06819710880518],[-0.1059635579586,0.028277924284339,-0.0026877247728407]],[[-0.026649326086044,-0.025327000766993,-0.0054745501838624],[-0.07757942378521,0.093827165663242,0.060165520757437],[-0.13391031324863,0.099054038524628,-0.033342953771353]],[[0.079091563820839,-0.020626522600651,-0.018853871151805],[0.04297336563468,-0.11375706642866,-0.041583117097616],[-0.015108819119632,-0.0012301510432735,-0.03305945917964]],[[0.06655029207468,-0.0028616089839488,0.11064179986715],[0.010132931172848,0.087761372327805,0.20605038106441],[-0.043922401964664,0.023178651928902,0.062399566173553]],[[0.12185971438885,0.025722444057465,-0.06348130851984],[0.026232661679387,0.0027460332494229,0.0046654804609716],[-0.0088737737387419,-0.03856997191906,-0.054316826164722]],[[0.00489312550053,-0.036708142608404,-0.031632326543331],[0.065120249986649,0.046954121440649,0.04393270239234],[-0.042576160281897,-0.087906420230865,0.039154462516308]],[[0.041188634932041,-0.028960179537535,-0.025061162188649],[0.014813555404544,0.015817474573851,-0.037202961742878],[-0.092591553926468,0.00058777973754331,0.0084250597283244]],[[0.14389169216156,0.074505046010017,-0.026301445439458],[0.022300930693746,0.035052292048931,0.032094560563564],[-0.069729290902615,0.041008315980434,0.14405247569084]],[[0.041763722896576,-0.0074811447411776,-0.056024588644505],[-0.013381002470851,-0.05712878331542,-0.039519157260656],[-0.016863316297531,-0.029158668592572,0.0003661798837129]],[[0.060418382287025,0.06910814344883,-0.0014559004921466],[0.035716868937016,-0.0177904330194,0.0052948701195419],[0.01701538823545,-0.091296009719372,0.0092684039846063]],[[0.01052138581872,0.066350787878036,0.03033378534019],[-0.043339468538761,0.046851873397827,0.037521872669458],[-0.053898606449366,0.11449704319239,0.022451937198639]],[[0.033723562955856,-0.019711131229997,-0.046962738037109],[0.0095480559393764,0.10914008319378,-0.1395225673914],[0.094053827226162,0.048371363431215,-0.076342105865479]],[[-0.057593114674091,-0.074268594384193,0.074213244020939],[-0.0051902970299125,-0.040500555187464,0.0044307475909591],[0.0047236019745469,-0.012980097904801,0.056943222880363]],[[-0.034688100218773,-0.046257469803095,0.0057986243627965],[0.011515998281538,-0.065718241035938,-0.023078450933099],[0.17264828085899,0.030314411967993,0.028095016255975]],[[0.047426491975784,-0.052348989993334,0.018537016585469],[0.023881705477834,0.055877849459648,0.04056554287672],[0.018006762489676,-0.030205082148314,0.016730140894651]],[[-0.065040051937103,-0.061662282794714,-0.0051875421777368],[-0.01398295443505,0.058442424982786,0.056997291743755],[-0.0403738245368,-0.057307548820972,0.036104843020439]],[[-0.027865344658494,0.09391326457262,0.0052928789518774],[0.0048860525712371,0.077545940876007,0.05147959291935],[0.019532281905413,-0.010214745998383,0.039897087961435]],[[0.058559656143188,0.045105863362551,0.01531430426985],[-0.018539778888226,0.075196750462055,-0.059451691806316],[0.013056550174952,0.015336233191192,-0.014228626154363]],[[-0.031524941325188,0.070980153977871,0.064664199948311],[0.0025230420287699,0.045937746763229,-0.008016319014132],[-0.049372233450413,0.0041220840066671,-0.036442957818508]],[[0.062211010605097,0.077384628355503,-0.0025245971046388],[0.037665076553822,-0.0090300720185041,0.077730797231197],[-0.06101493537426,0.0032462778035551,-0.15125150978565]],[[0.0329270362854,0.048699054867029,-0.02621609903872],[0.072463653981686,0.068958185613155,-0.062912739813328],[0.072076082229614,-0.00810432061553,-0.067438513040543]],[[-0.023316934704781,0.0088594369590282,0.089718990027905],[0.019019303843379,0.049158506095409,-0.028997050598264],[-0.058185558766127,-0.070425271987915,0.02359713613987]],[[0.026515208184719,-0.024476647377014,-0.078181929886341],[0.019056791439652,-0.037848006933928,-0.023555181920528],[0.054325371980667,-0.0035263306926936,-0.042612113058567]],[[0.061064619570971,-0.049390859901905,0.014330813661218],[-0.16180305182934,-0.024937389418483,-0.01682566665113],[-0.072437331080437,-0.027943395078182,-0.023724379017949]],[[-0.014963848516345,-0.034548509865999,0.05132669955492],[0.042159173637629,0.0069935796782374,0.045829821377993],[-0.07817592471838,0.11560494452715,0.13317538797855]],[[0.043412499129772,0.089643485844135,0.019308444112539],[0.060675069689751,-0.018640635535121,-0.037319768220186],[0.083688884973526,-0.023591209203005,-0.075101464986801]],[[-0.0060498877428472,-0.075015105307102,-0.092601142823696],[0.058106031268835,-0.10134573280811,-0.080684371292591],[0.072154320776463,0.0014779295306653,-0.078284330666065]],[[-0.02026554197073,-0.042070884257555,0.0085782408714294],[0.034674521535635,-0.035399127751589,-0.0074091921560466],[0.051341913640499,-0.090162798762321,-0.0025963233783841]],[[-0.0046349428594112,0.014832301065326,-0.0034120145719498],[-0.079353950917721,0.010807516984642,0.032126676291227],[0.048615679144859,0.016687242314219,-0.030567709356546]],[[-0.057079646736383,-0.044698692858219,-0.055103078484535],[0.010882004164159,-0.078591607511044,-0.065300211310387],[0.058959372341633,-0.075230360031128,0.0055923103354871]],[[-0.072765536606312,0.12257377058268,0.085033364593983],[-0.057497221976519,0.087530955672264,0.099713705480099],[-0.065226428210735,0.096160627901554,0.1141192317009]],[[0.073347650468349,0.038082040846348,0.1294933706522],[-0.052839402109385,-0.10857144743204,-0.023205326870084],[-0.045789070427418,-0.072013847529888,-0.057806078344584]]],[[[0.044986676424742,-0.025580838322639,0.019127720966935],[0.055937733501196,-0.0032180796843022,0.025383749976754],[0.0013018011813983,-0.0079117873683572,-0.038604632019997]],[[-0.11116109788418,0.021822212263942,-0.037979938089848],[-0.083340637385845,0.091466076672077,-0.040416430681944],[0.017006147652864,-0.035889461636543,0.045333717018366]],[[0.035955861210823,-0.0024926245678216,0.079064130783081],[-0.049521498382092,0.062719322741032,0.034235924482346],[-0.054329425096512,0.049991615116596,0.037033531814814]],[[-0.028895776718855,-0.019424349069595,0.016709834337234],[0.081593878567219,-0.07299429923296,0.030722606927156],[0.0047788098454475,0.0038356154691428,-0.018019335344434]],[[0.065818414092064,-0.05461323261261,0.0029173716902733],[0.0094049470499158,-0.021885158494115,0.029232911765575],[0.037210486829281,0.020939277485013,0.074687406420708]],[[-0.0045993090607226,0.052427064627409,0.070562794804573],[0.024202885106206,-0.031669784337282,-0.015114213339984],[0.079969085752964,0.051467657089233,-0.07224328815937]],[[-0.0033787726424634,-0.00032512305187993,0.01433527469635],[0.035048540681601,-0.0091673284769058,0.021939717233181],[-0.022126952186227,-0.016809117048979,0.066976308822632]],[[0.0011816365877166,0.0093072568997741,0.049292255192995],[-0.0073021999560297,0.017098359763622,-0.024378588423133],[-0.038708433508873,0.030945098027587,0.01195708848536]],[[0.026259563863277,0.027847904711962,-0.054955072700977],[0.042848821729422,0.0067123267799616,-0.022820804268122],[0.026619425043464,-0.049678038805723,0.033007737249136]],[[-0.0022564174141735,-0.046554673463106,0.033526930958033],[-0.085110664367676,-0.035059779882431,0.020863629877567],[-0.069780305027962,-0.01287370081991,0.040630374103785]],[[-0.048382189124823,0.031093010678887,0.0048168189823627],[-0.076368696987629,0.029574161395431,0.024227827787399],[-0.00098532694391906,-0.030099362134933,-0.0092380065470934]],[[0.014930532313883,-0.050748161971569,-0.080117084085941],[-0.031489014625549,0.049621935933828,0.061570253223181],[0.050638068467379,0.09074167907238,-0.056540422141552]],[[-0.0046950709074736,0.012727780267596,0.16028654575348],[0.0093167433515191,0.058282785117626,0.029563406482339],[0.039923902601004,-0.054402638226748,-0.022588655352592]],[[-0.034171044826508,-0.067781575024128,-0.049566593021154],[0.0031624985858798,-0.050732094794512,-0.0036909312475473],[-0.10591720044613,-0.025954684242606,0.019197823479772]],[[0.0094339959323406,0.099537186324596,0.062718033790588],[-0.017630590125918,-0.058247338980436,-0.023591203615069],[-0.041640419512987,0.044173326343298,-0.016819505020976]],[[0.0021042497828603,0.080289006233215,0.030071437358856],[0.043586850166321,-0.064357914030552,-0.016620444133878],[0.084093742072582,-0.00063799048075452,0.035879820585251]],[[-0.029212303459644,-0.058868039399385,-0.0049101505428553],[-0.03243312984705,0.019081875681877,0.015804262831807],[-0.010470479726791,0.021488448604941,0.022736720740795]],[[-0.029632579535246,-0.033293500542641,-0.010743453167379],[0.013154413551092,-0.054840125143528,-0.0051367627456784],[0.047960124909878,0.043020758777857,0.036434222012758]],[[0.010742655023932,-0.058556616306305,-0.030108902603388],[0.036460269242525,-0.073004156351089,-0.047583747655153],[-0.018469234928489,0.026547389104962,-0.025949416682124]],[[-0.051266368478537,-0.010863087140024,-0.010116536170244],[-0.050604052841663,-0.069088958203793,-0.025131545960903],[-0.036027379333973,-0.076354898512363,-0.016964677721262]],[[0.004427635576576,-0.026121124625206,-0.03692590072751],[0.026337685063481,0.042455658316612,-0.02274901419878],[0.06239427626133,0.014721363782883,-0.041312392801046]],[[0.02371827326715,0.021413050591946,0.064941473305225],[-0.07199615240097,0.033922515809536,-0.056614443659782],[-0.074257589876652,-0.037087552249432,-0.012399095110595]],[[-0.13711373507977,-0.030787337571383,0.037647109478712],[0.015049867331982,-0.015566192567348,-0.047090720385313],[0.04596421867609,0.0069549335166812,-0.039314325898886]],[[-0.02114618755877,-0.070323877036572,-0.0097177037969232],[0.022082725539804,-0.054278567433357,-0.079263389110565],[-0.070006720721722,-0.0079813115298748,-0.023352472111583]],[[0.011066077277064,-0.043357729911804,0.07905450463295],[0.057391181588173,0.02646860294044,-0.062395818531513],[0.0024100637529045,0.002688362961635,-0.044849779456854]],[[-0.068097062408924,-0.061523098498583,-0.057564198970795],[0.15856473147869,0.012509566731751,0.028014713898301],[0.033990602940321,-0.023308269679546,0.044249843806028]],[[0.10926171392202,0.029214352369308,0.0015778046799824],[0.031086482107639,-0.02535349316895,0.083788864314556],[0.014738659374416,-0.059686195105314,0.022490903735161]],[[0.025311272591352,-0.0086264368146658,0.07347559928894],[0.064639277756214,-0.035266496241093,0.0081785330548882],[-0.059446476399899,-0.030206054449081,-0.028085853904486]],[[-0.095760174095631,-0.0084666963666677,0.0045532998628914],[-0.054233286529779,0.065297573804855,0.032934296876192],[0.026257324963808,0.033675957471132,0.037969194352627]],[[-0.036846902221441,-0.04230609536171,0.025420220568776],[-0.10569678246975,-0.023455888032913,-0.0098791252821684],[0.023739065974951,0.040695074945688,0.042654190212488]],[[-0.076995961368084,0.03383269533515,-0.047837756574154],[-0.037174291908741,-0.058913629502058,-0.0059828250668943],[0.041913639754057,-0.010766007006168,0.048097722232342]],[[-0.038792487233877,-0.026020899415016,-0.009584104642272],[0.0011081534903497,-0.068664066493511,0.0033428349997848],[-0.013416835106909,-0.04370005056262,-0.053953684866428]],[[0.052590128034353,0.00020086432050448,-0.020182091742754],[0.0067733875475824,-0.062240712344646,-0.0018897792324424],[0.063356161117554,0.019158523529768,-0.068893775343895]],[[-0.020858323201537,-0.047758847475052,0.088208943605423],[0.069076776504517,0.081641152501106,0.075134813785553],[-0.00079500989522785,0.0060491729527712,-0.016749408096075]],[[-0.021813821047544,0.000384789891541,-0.019561689347029],[0.045174855738878,0.015356807969511,-0.03508585691452],[0.032436888664961,-0.06831830739975,0.01885998621583]],[[-0.0069051799364388,0.071609728038311,0.012239081785083],[0.033601000905037,0.0041984026320279,-0.010035301558673],[0.037203390151262,0.020221604034305,-0.014400783926249]],[[0.017979450523853,-0.034363210201263,-0.010839601047337],[0.053797010332346,-0.046885851770639,-0.01539814658463],[-0.053351227194071,-0.067904561758041,0.01019854657352]],[[-0.038224406540394,-0.034243702888489,0.056113287806511],[-0.033411707729101,-0.050462108105421,-0.011377213522792],[-0.014210348017514,-0.024278677999973,0.063210919499397]],[[-0.0039857062511146,-0.064035907387733,-0.011012827977538],[0.015840237960219,-0.02773111872375,0.063914075493813],[-0.0028867584187537,0.0213677380234,0.014672364108264]],[[-0.019264943897724,0.040670953691006,0.022388454526663],[0.014874290674925,-0.022673727944493,-0.059186182916164],[0.022536499425769,-0.012763344682753,-0.039285786449909]],[[0.016376780346036,-0.031742259860039,0.05136001855135],[-0.019683720543981,0.0051055196672678,-0.060120422393084],[-0.041136432439089,0.023858735337853,-0.018724791705608]],[[0.056547440588474,-0.0076692611910403,-0.022237505763769],[-0.01364687550813,-0.044113975018263,-0.0039596231654286],[-0.014763047918677,-0.058521941304207,-0.050749626010656]],[[0.012182762846351,-0.028724113479257,0.020310329273343],[-0.017032520845532,0.040506467223167,0.0070916297845542],[-0.094946719706059,-0.042903780937195,0.01157302968204]],[[0.054934117943048,0.060637600719929,0.048339325934649],[-0.024275591596961,-0.049738690257072,-0.10140033811331],[-0.044920206069946,0.021608110517263,0.0033911159262061]],[[-0.011699432507157,0.036099456250668,-0.031120853498578],[0.086674332618713,0.00045971435611136,0.028921689838171],[0.011599493212998,-0.0017257948638871,0.00087820208864287]],[[-0.024399550631642,0.023503867909312,-0.05524580553174],[0.044424224644899,0.035590119659901,-0.023444190621376],[-0.052072141319513,0.066045112907887,0.0073527512140572]],[[-0.041971545666456,0.021967358887196,0.031993202865124],[-0.030415501445532,0.029518608003855,0.031940761953592],[0.020916240289807,0.015095238573849,0.026964502409101]],[[0.0067958431318402,0.046398106962442,0.0069427443668246],[0.028289340436459,0.078810423612595,0.017682051286101],[0.001252586604096,-0.044045373797417,0.0016730779316276]],[[0.0097085339948535,-0.02832905203104,-0.042151980102062],[-0.02481210231781,0.03013501316309,0.023917881771922],[-0.062215533107519,0.068033039569855,-0.0078103742562234]],[[-0.068357326090336,0.011081567965448,-0.029001798480749],[-0.027533326297998,0.053987488150597,-0.010530164465308],[-0.058276928961277,0.022283753380179,0.0043555302545428]],[[0.0031898613087833,-0.056319199502468,-0.030485354363918],[0.015722848474979,0.0040654139593244,0.029302345588803],[0.036729481071234,0.032729115337133,0.034871060401201]],[[0.012814744375646,0.035565212368965,-0.0072589609771967],[-0.071859069168568,0.0094981910660863,0.035675391554832],[-0.030532449483871,-0.064586348831654,-0.040135964751244]],[[-0.03285575658083,0.01132841501385,-0.060121301561594],[0.11673574149609,-0.03504915907979,-0.024861540645361],[-0.013002346269786,-0.14585347473621,-0.10290357470512]],[[0.084496319293976,0.032234873622656,0.025423899292946],[0.066071458160877,-0.053816091269255,0.030466161668301],[0.024934086948633,-0.0064723291434348,-0.049461796879768]],[[0.0090459557250142,0.04454730078578,0.026237171143293],[0.060088403522968,0.023381045088172,-0.052813272923231],[-0.010850071907043,0.028871906921268,-0.028330489993095]],[[-0.03804948925972,0.00049737119115889,0.05110489577055],[0.050488840788603,-0.019999435171485,-0.020981790497899],[0.028027098625898,-0.093687862157822,0.019449189305305]],[[-0.025977930054069,0.00052673433674499,0.0036976502742618],[-0.018854100257158,0.03674903512001,0.014167658053339],[-0.025477822870016,0.01433421485126,-0.03522215783596]],[[0.021113423630595,-0.0090421363711357,0.058733392506838],[0.04467211291194,-0.0064696902409196,0.023463770747185],[0.040223270654678,0.014658147469163,-0.011962747201324]],[[0.015297330915928,0.0062707285396755,-0.02288861759007],[-0.089738130569458,-0.093354478478432,-0.024385957047343],[-0.025694807991385,-7.0765963755548e-05,0.063748344779015]],[[-0.02446223795414,-0.03161296248436,0.019739096984267],[-0.071561716496944,-0.026607107371092,0.032688479870558],[-0.04092625156045,-0.028589587658644,-0.023307604715228]],[[0.0071060778573155,0.0086507648229599,0.034566041082144],[-0.013064163736999,-0.0643420368433,-0.022686161100864],[0.089881800115108,0.043466195464134,0.011391616426408]],[[-0.0084649827331305,-0.0049315788783133,0.036102429032326],[-0.0078325532376766,-0.0053499964997172,-0.021778784692287],[-0.032572373747826,-0.01750099286437,0.066138096153736]],[[0.039298038929701,-0.019883370026946,0.061720136553049],[0.016175666823983,-0.0094151878729463,-0.025697050616145],[-0.042763836681843,0.02358871512115,0.076055943965912]],[[0.0035325684584677,-0.040170203894377,-0.034327238798141],[-0.073903515934944,-0.027518888935447,-0.010217037983239],[-0.020749878138304,0.014266004785895,-0.0064703789539635]],[[-0.03114509396255,0.042954534292221,0.064923271536827],[0.042955886572599,-0.073721848428249,-0.0043868869543076],[0.0072448463179171,0.073138132691383,-0.013328629545867]],[[-0.031976606696844,-0.025859337300062,0.01625706627965],[-0.047257050871849,-0.03573165461421,0.013385744765401],[-0.016999661922455,-0.0807179287076,-0.046727206557989]],[[-0.067832782864571,0.13708950579166,-0.037324462085962],[-0.045554503798485,0.019617415964603,-0.019074631854892],[0.032529454678297,0.016815923154354,-0.027750371024013]],[[0.0078679537400603,-0.034789215773344,0.031732264906168],[-0.026399685069919,-0.052890621125698,-0.0509241707623],[0.031332921236753,0.10196094959974,0.0015732879983261]],[[-0.0077095231972635,-0.0015661031939089,0.053090542554855],[0.025085171684623,-0.02594968304038,0.05269418284297],[0.028050150722265,-0.01524904742837,0.059237346053123]],[[-0.0078079095110297,-0.011623315513134,-0.095226526260376],[-0.087521947920322,-0.0556327290833,0.011533097364008],[0.05457641556859,-0.036177821457386,-0.016161277890205]],[[0.037219669669867,0.05481731146574,0.050511565059423],[0.019797299057245,-0.0092695746570826,-0.025111801922321],[-0.0063774711452425,-0.081726081669331,-0.047055449336767]],[[0.085428208112717,0.053116232156754,0.015737427398562],[-0.03035506978631,-0.073959402740002,0.070214755833149],[0.07619409263134,-0.082480736076832,0.017661541700363]],[[-0.0032285291235894,0.056304380297661,0.0097808064892888],[-0.0021703687962145,0.00026126968441531,0.024237921461463],[-0.08614706248045,0.045069433748722,0.024625571444631]],[[-0.071535959839821,-0.010146323591471,0.077244535088539],[0.0052316389046609,-0.012943282723427,0.055770225822926],[0.011982598342001,-0.034195259213448,0.038576077669859]],[[0.031481064856052,0.011616027913988,-0.050171356648207],[0.097430132329464,0.10075000673532,0.040982201695442],[-0.034225076436996,-0.073883734643459,0.024557130411267]],[[0.080879643559456,0.093278937041759,-0.024500930681825],[0.0012573330895975,0.00074221537215635,0.080843523144722],[-0.01836546882987,0.0015636302996427,0.017833646386862]],[[0.059971854090691,-0.022657202556729,0.049340061843395],[0.005633195862174,-0.013739313930273,0.093187116086483],[-0.0010912561556324,0.048399288207293,-0.0015223993686959]],[[0.032468795776367,0.093656621873379,0.017431868240237],[0.031916540116072,0.033031158149242,-0.081646054983139],[0.064219020307064,-0.049305655062199,-0.031181799247861]],[[0.021725978702307,-7.2107119194698e-05,0.032511543482542],[0.024160873144865,0.028017371892929,0.059233535081148],[0.090216860175133,0.043187670409679,0.029681276530027]],[[-0.017977047711611,0.036883514374495,-0.099426202476025],[-0.020095735788345,-0.010610725730658,-0.056277591735125],[0.054269548505545,-0.022963743656874,-0.094452083110809]],[[0.040208034217358,0.0099357077851892,0.073919683694839],[-0.021069630980492,0.053521886467934,0.032024629414082],[-0.019383007660508,0.082276076078415,-0.081152953207493]],[[0.026228256523609,0.038968697190285,0.011423765681684],[0.01910094358027,-0.014579886570573,0.015463086776435],[-0.018945723772049,-0.015423898585141,-0.022412311285734]],[[0.015707036480308,-0.080055370926857,-0.012608800083399],[-0.063186712563038,0.033321175724268,-0.058574739843607],[-0.033198807388544,0.070827312767506,0.0010825514327735]],[[0.1111952662468,0.072936944663525,0.036585811525583],[0.089755296707153,-0.061685126274824,-0.076412208378315],[0.046411857008934,-0.013857436366379,0.029276683926582]],[[-0.029828997328877,0.062663860619068,0.052349425852299],[0.022642517462373,0.17573055624962,0.0066686873324215],[-0.014793774113059,-0.0034078618045896,0.012128607369959]],[[0.021146651357412,0.014526562765241,0.011898207478225],[0.016323117539287,0.02754987962544,0.048106353729963],[0.0089959474280477,0.0052646198309958,0.033574797213078]],[[-0.034510672092438,0.10692834854126,-0.011834995821118],[-0.028711622580886,0.090707905590534,-0.070459075272083],[-0.075272358953953,0.021181927993894,0.012471812777221]],[[0.1167012155056,-0.0050824829377234,0.14090193808079],[-0.026139026507735,0.047768656164408,0.062219172716141],[-0.0081200245767832,0.059652101248503,0.00048584619071335]],[[0.10132462531328,0.065551280975342,-0.071943372488022],[0.028279911726713,-0.046743609011173,-0.055199723690748],[0.02334058098495,-0.020519087091088,-0.056709222495556]],[[0.055771913379431,0.066422834992409,-0.040211863815784],[-0.039091192185879,0.045142952352762,-0.050023660063744],[-0.083286121487617,0.031025899574161,0.033397853374481]],[[0.058005057275295,-0.066121086478233,0.018626885488629],[-0.070996947586536,0.047638326883316,-0.0022191544994712],[0.046682223677635,0.010096788406372,-0.030972080305219]],[[-0.0093820886686444,-0.05427934601903,0.00095197919290513],[0.00012885770411231,0.0083516044542193,0.077694155275822],[0.046401042491198,0.0026652573142201,-0.050042636692524]],[[0.018241019919515,0.017851792275906,0.066852979362011],[-0.043337032198906,-0.0010532176820561,0.067070998251438],[0.052725117653608,0.0023676012642682,0.062341921031475]],[[0.0095037911087275,0.034040287137032,0.032780829817057],[-0.023560544475913,0.062017079442739,-0.061757486313581],[-0.034095238894224,0.09527613222599,-0.046097066253424]],[[0.030968753620982,0.075162656605244,-0.044949315488338],[0.014011655002832,-0.017617093399167,-0.034654024988413],[0.061814356595278,0.054065898060799,-0.1088310033083]],[[-0.012624244205654,-0.0099178710952401,0.026180008426309],[0.051667992025614,0.05111175775528,-0.01779299043119],[0.035892877727747,-0.030513495206833,0.05277456343174]],[[0.070755526423454,-0.0025535095483065,0.045909114181995],[0.017756724730134,0.013836848549545,0.012860516086221],[-0.042613014578819,-0.040913075208664,-0.012962796725333]],[[0.072029925882816,-0.10718131810427,0.051877591758966],[0.013526005670428,-0.046809501945972,0.032402530312538],[-0.069312952458858,-0.09079348295927,0.021658787503839]],[[-0.017058646306396,0.011504119262099,0.044775649905205],[0.16936632990837,-0.0079972259700298,0.054251477122307],[0.034484621137381,0.030346686020494,-0.099529884755611]],[[-0.016964539885521,0.023093638941646,0.043964389711618],[0.021251726895571,-0.027217045426369,0.020140409469604],[0.10596095025539,-0.076666064560413,-0.067202061414719]],[[0.1144697740674,-0.017158763483167,-0.0026209831703454],[0.053339459002018,-0.076126672327518,-0.00064327946165577],[0.0025709308683872,0.0027515657711774,0.092350237071514]],[[0.014807909727097,0.025576585903764,0.068720296025276],[-0.074055224657059,0.0046375975944102,0.078236289322376],[-0.021037178114057,-0.12658669054508,-0.0077917547896504]],[[0.0012311914470047,-0.068082869052887,0.053242743015289],[0.0007705322932452,0.037621714174747,-0.06556474417448],[-0.12654174864292,0.08330687135458,-0.0455063842237]],[[0.032039746642113,0.079899974167347,-0.052101671695709],[0.022864948958158,0.00027118250727654,-0.031527325510979],[-0.013513663783669,0.034156400710344,0.019964808598161]],[[0.032741837203503,0.029539905488491,-0.012865690514445],[-0.033004868775606,0.061679873615503,-0.0057359985075891],[0.010275768116117,0.022711949422956,0.033337783068419]],[[0.086603969335556,-0.031423144042492,-0.057245824486017],[0.028086686506867,-0.022091440856457,0.047428674995899],[0.031379785388708,0.0072050476446748,0.042980123311281]],[[0.031211111694574,-0.025825645774603,-0.037486717104912],[-0.037490483373404,0.011910342611372,0.00058399175759405],[-0.058211393654346,-0.024482764303684,-0.0354213565588]],[[0.076285906136036,0.036109630018473,0.024473531171679],[-0.043028227984905,0.011314737610519,0.0056283865123987],[0.010312966071069,0.024497443810105,0.052858453243971]],[[-0.020959416404366,-0.029577886685729,0.023795790970325],[0.071664996445179,0.0046233586035669,0.017109887674451],[-0.011394189670682,-0.11139698326588,-0.057087913155556]],[[-0.067418366670609,-0.057403463870287,0.034350514411926],[-0.026804186403751,-0.019027600064874,-0.01766144298017],[-0.0081140575930476,0.073567323386669,-0.039079383015633]],[[0.00069037062348798,0.093632265925407,0.0080674942582846],[0.042303115129471,0.030820190906525,-0.0030832877382636],[0.017644887790084,0.022490656003356,0.017695870250463]],[[0.040588177740574,0.003227541455999,0.020616959780455],[0.019946662709117,-0.043423768132925,0.024899119511247],[0.0086703924462199,0.021636305376887,0.15992772579193]],[[-0.012062050402164,0.022051546722651,-0.019201964139938],[0.061254266649485,0.070694893598557,-0.072115160524845],[-0.015220776200294,3.1851210223977e-05,-0.073334380984306]],[[-0.054742690175772,0.082854844629765,0.016785429790616],[0.01656936481595,0.015689028427005,-0.01301983371377],[-0.01726583763957,-0.026946492493153,-0.0058784852735698]],[[0.060850348323584,-0.068486548960209,0.028571488335729],[-0.062916375696659,-0.088982917368412,0.081775970757008],[-0.069894962012768,0.057979632169008,0.092712506651878]],[[0.051591567695141,-0.00026518292725086,-0.015897246077657],[0.060524243861437,0.064206376671791,0.027949906885624],[0.020458351820707,-0.032202031463385,-0.040844634175301]],[[0.091908596456051,0.025860138237476,0.021920207887888],[-0.0079388134181499,-0.027335567399859,-0.015710646286607],[-0.017862420529127,0.009541692212224,-0.0065628685988486]],[[-0.073113553225994,-0.033721510320902,-0.019494270905852],[-0.029064824804664,-0.045822203159332,0.025269286707044],[-0.043614219874144,0.020231133326888,-0.0906782746315]],[[-0.0041555967181921,0.028217835351825,-0.1216533780098],[-0.035511542111635,0.065029963850975,-0.020003056153655],[-0.019973592832685,-0.032104533165693,-0.045466613024473]],[[0.047586191445589,-0.00089623167878017,-0.0013739739079028],[-0.001537086092867,0.024588230997324,0.071258559823036],[0.014911621809006,0.034729156643152,0.066253952682018]],[[-0.027034178376198,-0.0198959633708,0.022982640191913],[0.014642072841525,0.031299948692322,0.06841691583395],[-0.0048762559890747,0.025537379086018,0.023255376145244]],[[-0.044834405183792,0.099159851670265,-0.034777536988258],[-0.025486312806606,-0.019255945459008,-0.011799939908087],[0.015103492885828,-0.0022499572951347,-0.049792423844337]],[[-0.0022208886221051,0.057255536317825,-0.069728635251522],[0.028134729713202,0.0021581954788417,-0.039188113063574],[0.06021374091506,0.013386667706072,0.025954823940992]],[[0.020892800763249,-0.070180758833885,-0.052516222000122],[0.03817131370306,0.049571424722672,0.0034778576809913],[-0.019588679075241,-0.046882051974535,0.025870887562633]],[[-0.00038313757977448,-0.046060249209404,0.043101485818624],[-0.044708073139191,-0.036850322037935,-0.017124300822616],[-0.041684359312057,-0.039251014590263,0.053158193826675]],[[0.042756240814924,0.03626636788249,-0.017909172922373],[0.0092406868934631,0.058367643505335,0.059445258229971],[-0.0098963351920247,0.02740890905261,0.042182665318251]],[[0.013079216703773,0.016452925279737,-0.020374244078994],[0.018865128979087,0.03754897415638,-0.01922420784831],[-0.045004416257143,-0.081914819777012,0.014290581457317]],[[-0.026682889088988,-0.039092041552067,0.051154412329197],[-0.018948741257191,0.089073747396469,0.02786005474627],[-0.012181448750198,0.0060073188506067,0.0052576512098312]]],[[[0.017640324309468,-0.0044413949362934,-0.070816747844219],[0.0041721509769559,0.091872215270996,-0.025194380432367],[-0.039421144872904,0.056303225457668,-0.12708796560764]],[[-0.021830532699823,-0.084027864038944,-0.24637489020824],[0.067531928420067,0.13943545520306,0.087438873946667],[-0.021095998585224,-0.040499780327082,-0.040735602378845]],[[-0.040687035769224,0.096531949937344,0.13231483101845],[0.081515945494175,0.069278754293919,0.00091280433116481],[0.099926881492138,0.022743159905076,-0.042457651346922]],[[0.036794688552618,0.00066605082247406,-0.055478893220425],[-0.055202651768923,-0.016355341300368,-0.0777418166399],[-0.07632078230381,-0.042398691177368,-0.060680419206619]],[[-0.081120766699314,0.089676409959793,0.056022044271231],[-0.1034502312541,0.0081902556121349,0.21231870353222],[-0.064923815429211,0.074553705751896,0.062747567892075]],[[0.028138473629951,-0.07377003133297,-0.13357576727867],[-0.036222286522388,0.019246397539973,0.0100760422647],[0.23037537932396,0.058872494846582,-0.046617463231087]],[[0.084498047828674,-0.050502452999353,-0.0081157945096493],[-0.086837574839592,0.071564450860023,0.11691145598888],[-0.02229524217546,0.017304021865129,0.047654218971729]],[[0.0060801529325545,-0.095662996172905,-0.088583767414093],[0.080467753112316,0.15223775804043,0.073594272136688],[0.085220858454704,0.050670396536589,0.007022256962955]],[[-0.038228120654821,-0.093904785811901,-0.083963580429554],[0.060669098049402,0.0058584553189576,-0.13993842899799],[-0.070885702967644,0.012648044154048,0.019358141347766]],[[0.0086129670962691,0.01702325232327,-0.030086990445852],[-0.092177607119083,0.030259078368545,0.020728502422571],[0.031985875219107,-0.046859864145517,0.13113659620285]],[[0.055309884250164,0.0060336007736623,0.027867998927832],[-0.059571653604507,-0.06957696378231,0.12965126335621],[-0.032749772071838,0.015234497375786,0.0010437567252666]],[[0.049584295600653,0.069571197032928,0.043717630207539],[0.11891974508762,0.068314790725708,-0.075344562530518],[-0.054929170757532,-0.038883581757545,-0.13655990362167]],[[-0.023987444117665,0.015120825730264,0.0046641635708511],[-0.051098223775625,-0.070757508277893,-0.0044671515934169],[0.040300730615854,-0.071311138570309,-0.030168106779456]],[[0.11078970134258,0.011259602382779,-0.030293984338641],[0.017683850601315,-0.052246455103159,-0.05041504278779],[-0.091767691075802,-0.020399887114763,-0.00038242639857344]],[[0.041905906051397,0.047599796205759,-0.085646852850914],[-0.049228362739086,0.03438751026988,-0.075548008084297],[0.034083388745785,-0.0824069455266,-0.10206019878387]],[[-0.10064980387688,0.073784239590168,0.12281912565231],[-0.0065904520452023,0.097868084907532,0.055370844900608],[0.049603655934334,-0.0013008445966989,-0.06458505243063]],[[0.11668439954519,-0.08002857118845,-0.20603521168232],[0.047395899891853,0.019292073324323,0.085468783974648],[-0.069973692297935,-0.081654280424118,-0.086814112961292]],[[0.043527886271477,0.0202008318156,-0.23400504887104],[-0.070029683411121,0.10529480874538,0.085255511105061],[-0.054239384829998,-0.19876381754875,-0.098205327987671]],[[-0.019756047055125,-0.090345449745655,-0.061602536588907],[-0.028230359777808,0.06335362046957,0.015440951101482],[0.013337531127036,-0.12418480962515,0.089305862784386]],[[-0.022675268352032,0.0095002865418792,-0.078179351985455],[-0.0080823665484786,0.1595099568367,-0.053798615932465],[0.040547259151936,0.088440500199795,0.23742187023163]],[[-0.10809399932623,-0.13045500218868,-0.055684849619865],[-0.044876273721457,-0.088549934327602,-0.08430977165699],[0.25718414783478,0.028583463281393,-0.010139980353415]],[[0.016950787976384,0.0091289803385735,0.16507099568844],[0.13666209578514,0.16257174313068,-0.045364111661911],[0.036678794771433,-0.040905084460974,0.049283731728792]],[[-0.071906186640263,0.10839094221592,0.15257124602795],[-0.086779370903969,-0.19834643602371,-0.104048833251],[0.017615126445889,-0.053811598569155,-0.03070336394012]],[[0.074289798736572,-0.047524310648441,-0.042452748864889],[-0.1318836659193,0.028690915554762,-0.06262993067503],[-0.077931329607964,-0.059172861278057,-0.0021975294221193]],[[0.16173510253429,0.090842358767986,-0.081506110727787],[0.05999469384551,0.041910238564014,-0.058511845767498],[0.10723527520895,-0.011675666086376,-0.091375306248665]],[[0.043388169258833,-0.011720207519829,-0.0015032534720376],[0.029211327433586,0.00908078905195,-0.011431423947215],[0.069409549236298,-0.10551539063454,-0.032281640917063]],[[-0.010286844335496,0.00039528484921902,-0.033631686121225],[0.062051247805357,0.10164258629084,0.061623748391867],[-0.076444528996944,-0.045964043587446,-0.0059774583205581]],[[-0.071568466722965,-0.1090832054615,0.017802624031901],[-0.0094629041850567,-0.033499829471111,0.013109171763062],[-0.035827342420816,0.010218188166618,0.089026220142841]],[[-0.036621935665607,-0.18651881814003,-0.11990924179554],[-0.030066978186369,-0.0503542535007,0.14323271811008],[0.16054593026638,-0.025092696771026,-0.013499667868018]],[[-0.066729225218296,-0.1322278380394,0.063917055726051],[-0.036437276750803,0.0469382815063,-0.017666568979621],[-0.033555887639523,0.10594388842583,-0.033088408410549]],[[-0.019851306453347,0.085618086159229,0.017133692279458],[-0.021924085915089,0.00056239106925204,-0.098492048680782],[-0.023288397118449,0.076449625194073,0.17276231944561]],[[-0.024781173095107,-0.071726739406586,0.042714770883322],[-0.13144814968109,-0.039272259920835,0.020272729918361],[0.061397481709719,0.18770244717598,0.12386734783649]],[[0.097752340137959,0.015545612201095,-0.19064316153526],[-0.035889908671379,-0.055085707455873,-0.014535269699991],[0.096726924180984,0.10561253130436,-0.0087579842656851]],[[0.11945329606533,-0.034983474761248,0.028179068118334],[0.020842997357249,0.01807308010757,-0.15532159805298],[0.081929504871368,-0.060258913785219,0.010606460273266]],[[-0.094862267374992,-0.12640985846519,-0.16874217987061],[0.0085478341206908,0.010421355254948,-0.053392879664898],[-0.071077659726143,-0.063796646893024,-0.11781318485737]],[[0.045666504651308,0.15042677521706,-0.013236812315881],[0.021527202799916,0.026582485064864,0.013738989830017],[0.0015514877159148,-0.070460706949234,-0.10675040632486]],[[-0.046210836619139,-0.10634515434504,-0.20641984045506],[0.010618225671351,0.020752642303705,0.081377446651459],[-0.023137200623751,-0.044664818793535,-0.12615719437599]],[[0.036169268190861,0.063157983124256,0.03059620782733],[0.0027591821271926,0.032378599047661,0.14001457393169],[0.094458684325218,0.03663769364357,0.01011704094708]],[[-0.063022024929523,-0.019790787249804,-0.087998874485493],[-0.16506737470627,-0.033702418208122,0.045880194753408],[-0.057637970894575,-0.044919095933437,0.027568114921451]],[[-0.082706615328789,0.15990996360779,0.18214365839958],[0.0017192995874211,0.17818063497543,0.072959519922733],[-0.13360235095024,-0.10419895499945,-0.098035782575607]],[[0.041902925819159,-0.023853231221437,-0.082901500165462],[-0.087235979735851,0.038618233054876,0.1690129339695],[0.14811627566814,0.038194380700588,-0.093338787555695]],[[-0.034062158316374,-0.056343130767345,-0.030851200222969],[-0.12388044595718,-0.13149909675121,0.051038857549429],[0.0393943823874,-0.0028714882209897,0.029845137149096]],[[-0.059256564825773,-0.064663909375668,-0.029191363602877],[-0.00073158321902156,-0.00021753276814707,-0.025220971554518],[0.00046626210678369,-0.03158662840724,-0.081957250833511]],[[-0.038927890360355,-0.020733639597893,-0.1185956671834],[-0.035672210156918,0.069284878671169,-0.021369708701968],[-0.022708613425493,-0.054529346525669,-0.090764418244362]],[[0.056212075054646,0.13437759876251,0.10949540883303],[-0.026966065168381,0.055223371833563,0.080787278711796],[0.0035015158355236,0.064666464924812,0.037688251584768]],[[0.052227817475796,0.038567401468754,0.027784870937467],[0.013497557491064,0.10939773917198,0.072287008166313],[0.0092540802434087,-0.004442451056093,-0.03650663793087]],[[-0.036193430423737,-0.027038402855396,-0.0042968820780516],[-0.091794811189175,0.030727049335837,-0.049148231744766],[0.070822507143021,0.037185586988926,-0.027665708214045]],[[0.29688739776611,-0.090827889740467,-0.11288814991713],[-0.083091549575329,-0.096578896045685,0.02501124329865],[0.016609502956271,-0.012174131348729,0.073989450931549]],[[0.069236740469933,0.16439850628376,0.19534339010715],[0.0036148126237094,0.027177393436432,-0.25936925411224],[-0.027363277971745,-0.011158246546984,0.029261553660035]],[[-0.048851478844881,-0.15073871612549,-0.090692073106766],[-0.11563587188721,-0.08962969481945,-0.083857096731663],[-0.010685360990465,0.057901058346033,-0.035619579255581]],[[0.036541420966387,0.0012843492440879,-0.036530509591103],[0.069113150238991,0.026137746870518,0.03945654630661],[-0.049277696758509,0.092030830681324,0.035422071814537]],[[-0.041146323084831,0.041483551263809,0.088174916803837],[0.092727459967136,0.10162981599569,0.10576882213354],[-0.10243240743876,0.017687302082777,0.0026965527795255]],[[-0.098340019583702,-0.0074651036411524,-0.075204819440842],[-0.047187458723783,0.010650875046849,0.0045100492425263],[-0.088921010494232,-0.01336901076138,-0.096909523010254]],[[0.029007824137807,-0.023251179605722,-0.093274556100368],[-0.0019775494001806,-0.016023783013225,-0.058086406439543],[0.04117089137435,-0.055754262953997,-0.067054629325867]],[[0.0088985916227102,-0.062368661165237,-0.056437503546476],[-0.029365940019488,-0.064807735383511,-0.18131841719151],[0.070586919784546,-0.015189163386822,0.040816500782967]],[[0.094856753945351,0.026946192607284,-0.00055992207489908],[0.022237984463573,-0.066127143800259,-0.034344851970673],[0.29302257299423,0.05694318190217,0.044819168746471]],[[-0.082446776330471,-0.058792944997549,-0.00071806873893365],[-0.16505153477192,-0.06799603998661,0.016743015497923],[0.11992687731981,0.06850516051054,0.12733961641788]],[[0.037287667393684,0.061915904283524,0.086297251284122],[-0.084537446498871,-0.043887220323086,-0.062937669456005],[0.015104561112821,-0.067137852311134,-0.071080006659031]],[[-0.19634048640728,-0.0070491936057806,-0.014644499868155],[-0.065983675420284,-0.061646047979593,-0.0014764585066587],[-0.085222281515598,0.0034238414373249,0.089035972952843]],[[-0.054159551858902,-0.045792240649462,-0.017535842955112],[0.02115536108613,-0.051249139010906,0.0060984799638391],[-0.042139429599047,-0.19682165980339,-0.13734343647957]],[[-0.10582212358713,0.047520212829113,-0.012678912840784],[-0.088056869804859,0.056023564189672,-0.056485436856747],[-0.13875760138035,-0.093978904187679,0.048129633069038]],[[-0.1442192196846,-0.1231903731823,-0.14696694910526],[-0.023575518280268,-0.043963432312012,-0.02340760268271],[-0.1700983196497,-0.035183303058147,0.042827367782593]],[[0.0044304491020739,0.043894723057747,0.1137426123023],[0.042857207357883,0.017396416515112,-0.04360768571496],[-0.0050976923666894,-0.077652215957642,0.11195189505816]],[[0.055662050843239,-0.0622903034091,0.006802795920521],[0.011627956293523,0.14068040251732,-0.0048203025944531],[0.024345692247152,0.091095492243767,-0.0080235367640853]],[[0.0073491376824677,0.025829801335931,0.03790221363306],[-0.058535795658827,-0.039044998586178,0.062484335154295],[-0.07605916261673,0.037180442363024,0.060172714293003]],[[0.052197281271219,0.02534768357873,0.017033774405718],[0.025039441883564,-0.10146671533585,0.034773088991642],[0.006136286072433,0.016781706362963,-0.10013802349567]],[[0.08755062520504,0.095846079289913,0.011302136816084],[-0.010359056293964,-0.094501487910748,0.0084066372364759],[-0.033158637583256,-0.043052151799202,0.031219029799104]],[[0.13068489730358,0.059049759060144,-0.056080158799887],[0.00068269786424935,-0.0047973315231502,-0.049266420304775],[-0.059238635003567,-0.0084191029891372,-0.061381347477436]],[[0.024621048942208,0.07567036896944,-0.095481604337692],[0.070058733224869,0.001530323526822,-0.017604123800993],[-0.029970973730087,-0.068885780870914,-0.036046616733074]],[[-0.046014849096537,-0.0060368441045284,0.14834794402122],[0.00062142394017428,0.0053664017468691,0.06404647231102],[-0.087510228157043,0.042082902044058,0.053020730614662]],[[-0.26694387197495,-0.081357717514038,0.024695562198758],[0.22099314630032,0.076944001019001,-0.13465702533722],[-0.091354385018349,-0.010889227502048,0.19806818664074]],[[-0.11245641112328,-0.038732796907425,0.013915735296905],[-0.060766573995352,0.053996827453375,-0.043938934803009],[0.15101538598537,0.090187318623066,-0.012770871631801]],[[-0.13939772546291,-0.012577061541378,0.037517465651035],[-0.077098317444324,-0.0080825863406062,-0.17685884237289],[-0.055528115481138,0.014859068207443,0.074818044900894]],[[0.014374475926161,-0.057028215378523,0.045740444213152],[0.065973103046417,0.069978035986423,-0.023995833471417],[0.0044670673087239,0.14765188097954,0.035570241510868]],[[-0.0068206754513085,0.029335495084524,0.036076545715332],[-0.016580149531364,0.033863805234432,-0.073848359286785],[-0.11087194085121,-0.06049969419837,-0.11172236502171]],[[-0.027832202613354,0.064578719437122,-0.022677956148982],[-0.005199474748224,-0.028438052162528,0.07604992389679],[0.015676878392696,0.016329763457179,0.052927121520042]],[[-0.18130491673946,-0.089509695768356,0.18181149661541],[0.047302003949881,0.020187612622976,-0.12489879876375],[0.094549410045147,-0.04704325273633,-0.0041888244450092]],[[-0.023715704679489,-0.035726260393858,0.034143023192883],[-0.099605157971382,-0.10338092595339,-0.049672123044729],[-0.078113406896591,0.033202484250069,-0.010719675570726]],[[-0.066998384892941,-0.10383553802967,0.079637832939625],[0.15663638710976,0.080438509583473,-0.0056626726873219],[-0.15285524725914,-0.046052675694227,0.02583989687264]],[[-0.0036319706123322,-0.075925596058369,-0.071077227592468],[-0.12054555863142,-0.024854224175215,0.00072847900446504],[-0.035090610384941,-0.041155625134706,-0.017418267205358]],[[-0.034911006689072,-0.12658117711544,-0.032177355140448],[-0.11564855277538,0.016487723216414,0.052852906286716],[-0.040342640131712,-0.10359673202038,-0.033258803188801]],[[0.014604999683797,0.11371444165707,-0.033241406083107],[-0.044643674045801,0.0043792892247438,-0.034579925239086],[-0.058510236442089,-0.011506851762533,-0.14664059877396]],[[-0.08208442479372,-0.074859254062176,-0.15918995440006],[0.098475486040115,0.02835289388895,0.11622807383537],[0.035250287503004,-0.037806026637554,-0.022422825917602]],[[0.025323273614049,-0.016686139628291,-0.030943224206567],[0.078787289559841,0.014184338971972,0.07971166074276],[-0.062124032527208,-0.021546702831984,-0.11472027003765]],[[0.02509868517518,-0.0077014518901706,-0.14943689107895],[0.10810696333647,-0.083234950900078,0.021161170676351],[-0.052599783986807,-0.0089702596887946,0.066263563930988]],[[0.086597271263599,0.046744253486395,0.011024232022464],[-0.13400961458683,-0.072416730225086,-0.041635293513536],[0.12151543051004,0.033819656819105,0.049967732280493]],[[-0.011554761789739,0.043395288288593,0.047617521136999],[0.13671998679638,-0.045202076435089,0.026616515591741],[-0.09871219098568,-0.18110217154026,-0.068583451211452]],[[0.048878096044064,0.045931298285723,0.086115047335625],[0.10969104617834,0.021911256015301,-0.073998391628265],[0.09336020052433,-0.1188016012311,-0.021584011614323]],[[0.019051089882851,-0.055116631090641,0.0064481305889785],[0.0045362086966634,-0.015879027545452,0.08179235458374],[-0.0048810127191246,-0.09829880297184,-0.020311513915658]],[[0.022385310381651,0.0042918561957777,-0.076420910656452],[-0.041053466498852,-0.080733649432659,-0.190130636096],[0.029538240283728,-0.053278122097254,-0.097360268235207]],[[0.067533098161221,-0.0084271272644401,-0.22028559446335],[-0.07913812994957,-0.008433859795332,0.15159545838833],[0.099880069494247,0.069693103432655,0.09242045879364]],[[-0.01455453876406,-0.058962289243937,-0.11500796675682],[-0.056588415056467,-0.0066774045117199,-0.0086022205650806],[0.059950854629278,-0.0043650642037392,0.084408268332481]],[[0.027988256886601,-0.025339167565107,0.089114710688591],[-0.033578813076019,-0.0799845084548,0.065088868141174],[0.12997613847256,-0.0051665687933564,-0.083819717168808]],[[0.025733700022101,0.075642943382263,-0.0022382100578398],[-0.032956220209599,-0.059139274060726,-0.017141973599792],[0.045832935720682,0.014094093814492,-0.045062098652124]],[[-0.021578527987003,0.044282097369432,0.11596358567476],[0.19483616948128,-0.057482846081257,-0.056657891720533],[0.056111734360456,0.093882963061333,0.13105995953083]],[[0.078234955668449,0.025577161461115,0.014871646650136],[0.15400628745556,0.053613215684891,0.074430115520954],[-0.01110143493861,0.10765778273344,-0.015829985961318]],[[-0.0076952739618719,-0.046172201633453,0.016021372750401],[0.0012707099085674,0.004734137095511,0.012181933969259],[-0.1611505150795,-0.08561810106039,-0.092576071619987]],[[-0.019990991801023,0.0053592417389154,-0.019827218726277],[-0.060756530612707,0.016754474490881,0.064505591988564],[-0.020015614107251,-0.036775816231966,-0.12549148499966]],[[-0.017351347953081,-0.077376611530781,0.040494777262211],[0.02268292941153,-0.076613262295723,0.076898254454136],[-0.06406457722187,-0.023879883810878,-0.086943797767162]],[[0.0090390862897038,-0.040487952530384,-0.080069497227669],[0.098446868360043,0.0017723131459206,0.15852810442448],[-0.11190793663263,-0.042782563716173,-0.18417793512344]],[[-0.050923999398947,-0.018063675612211,0.070506647229195],[-0.034764282405376,-0.124577075243,0.040640495717525],[-0.13334210216999,-0.063340306282043,-0.032359197735786]],[[0.080855093896389,0.059297859668732,-0.00086408597417176],[0.050453048199415,-0.089385345578194,0.12173856049776],[0.06241175532341,0.083131805062294,0.096992962062359]],[[-0.073244772851467,-0.0016125927213579,-0.038471572101116],[0.027987990528345,-0.01131431851536,-0.0079091871157289],[0.078696899116039,0.055638164281845,0.09285157173872]],[[-0.016942318528891,-0.13401220738888,-0.066327892243862],[-0.064275667071342,-0.088298320770264,0.071776308119297],[0.1218543201685,0.078581862151623,0.22485263645649]],[[0.048695936799049,-0.039652600884438,-0.18394576013088],[-0.03280908241868,-0.016847994178534,-0.018373586237431],[-0.0066843079403043,0.030231542885303,-0.054180521517992]],[[0.14120624959469,0.01160151977092,0.10491032153368],[0.070686586201191,-0.054697293788195,-0.06611429899931],[0.12963277101517,0.11899691820145,0.015395347028971]],[[-0.033261820673943,0.10600444674492,0.1741821616888],[0.01078487187624,-0.056212145835161,-0.060877043753862],[0.074567809700966,-0.10919468849897,0.037115328013897]],[[-0.11648081988096,0.039898611605167,-0.093178652226925],[0.02386862039566,0.012244974263012,0.032127402722836],[0.058213248848915,-0.10191921144724,-0.1854534894228]],[[-0.079945668578148,-0.0012814207002521,0.12463898211718],[-0.03395052626729,-0.074874982237816,-0.068731002509594],[0.045658443123102,0.07693737000227,-0.031192040070891]],[[0.07996828854084,-0.082608796656132,-0.012806189246476],[-0.085560739040375,-0.071419022977352,0.0024180319160223],[0.13638371229172,0.072163350880146,0.048259809613228]],[[-0.083762757480145,-0.12577621638775,-0.034549951553345],[-0.10139525681734,-0.16808764636517,-0.11295731365681],[-0.10882047563791,-0.13215850293636,-0.13481837511063]],[[0.044329758733511,0.11915472149849,-0.054316867142916],[0.045264396816492,0.030447410419583,-0.11519092321396],[-0.050943661481142,-0.11496933549643,-0.026853308081627]],[[0.091466844081879,0.12309151887894,0.094657756388187],[0.080684304237366,0.089701950550079,0.22857977449894],[-0.10247006267309,-0.05847941711545,-0.072494007647038]],[[-0.024984510615468,0.13935692608356,0.070471845567226],[-0.34666296839714,-0.099701337516308,0.26696100831032],[-0.033672887831926,-0.041538778692484,-0.034107692539692]],[[0.028128424659371,0.065216921269894,-0.065584950149059],[0.027280449867249,-0.033820651471615,-0.011108967475593],[-0.082099691033363,0.074232384562492,0.018850117921829]],[[0.046719647943974,0.06112863868475,0.10487702488899],[-0.0015460189897567,0.13119280338287,0.065185338258743],[-0.0055031985975802,-0.11437319219112,-0.13028129935265]],[[-0.041184831410646,0.050107859075069,0.047672763466835],[0.14967411756516,-0.07343577593565,3.3372030884493e-05],[0.1117654889822,0.034913446754217,0.097240313887596]],[[-0.062808036804199,0.0031440637540072,0.16790646314621],[0.0087027121335268,0.0065174237824976,-0.27730756998062],[-0.048268217593431,-0.0025691101327538,0.17555910348892]],[[-0.0060600624419749,0.021389193832874,0.18648192286491],[0.036798045039177,-0.036644246429205,-0.040427036583424],[-0.070309653878212,0.043008424341679,0.059735249727964]],[[0.082220740616322,0.18854165077209,0.11925591528416],[0.054229069501162,-0.0027101167943329,0.018755223602057],[-0.02449650131166,0.027436994016171,-0.044196642935276]],[[0.047536700963974,-0.0026800611522049,-0.11991932988167],[0.077030070126057,-0.029145902022719,-0.14928288757801],[0.040294427424669,0.036669701337814,0.1295041590929]],[[0.06557908654213,0.054947972297668,-0.01205710042268],[0.015492127276957,-0.020364293828607,0.00031987036345527],[0.13360613584518,0.037879925221205,-0.048018284142017]],[[-0.11847680807114,-0.059413034468889,0.0001554612244945],[-0.080225676298141,-0.044373843818903,-0.049596086144447],[-0.013918051496148,0.008964067324996,0.13398243486881]],[[-0.024852573871613,0.027135279029608,-0.034168545156717],[0.086888357996941,-0.021755823865533,0.077008686959743],[-0.093909434974194,-0.029087064787745,0.047113861888647]],[[0.023646516725421,0.016023691743612,0.088663026690483],[0.22905871272087,0.091578364372253,0.045267555862665],[0.0023222102317959,0.13227422535419,0.011009903624654]],[[0.032391592860222,0.10001049935818,-0.021609332412481],[-0.17456224560738,-0.021702151745558,-0.05820082873106],[-0.090316347777843,0.030239203944802,-0.036791764199734]],[[-0.11532174795866,0.00077907321974635,0.096460521221161],[-0.025934504345059,0.098253950476646,0.030464731156826],[0.020026311278343,0.13005772233009,-0.013660792261362]],[[0.086482167243958,0.057625740766525,0.19333782792091],[0.0454296246171,-0.10990007221699,-0.18623608350754],[-0.057680781930685,0.087822534143925,0.098368406295776]]],[[[-0.065547071397305,0.022963682189584,-0.10849054902792],[0.051371216773987,0.026063283905387,0.023973196744919],[-0.030699837952852,-0.058983489871025,0.02694002725184]],[[-0.075288072228432,-0.046448811888695,0.15317852795124],[0.036761976778507,0.067043252289295,0.10269695520401],[0.018389388918877,0.12006983160973,0.12338151037693]],[[0.091339886188507,0.074639499187469,-0.09765636920929],[0.012604017741978,0.036988440901041,0.087844125926495],[0.073492743074894,-0.0045933346264064,0.04250805079937]],[[-0.019831446930766,-0.052304849028587,-0.074771329760551],[-0.096416674554348,-0.08317593485117,-0.068924933671951],[-0.016128649935126,-0.038188565522432,-0.13680408895016]],[[0.3333834707737,0.23848153650761,0.16674707829952],[-0.16148197650909,-0.086233131587505,-0.053544029593468],[0.023463685065508,-0.033887386322021,0.10107753425837]],[[0.044874466955662,-0.06985879689455,-0.017468929290771],[0.081978254020214,-0.093286454677582,-0.04241681843996],[0.10053964704275,-0.066645696759224,0.21191762387753]],[[0.1735754609108,0.098599843680859,-0.006516148801893],[-0.19937939941883,-0.14568608999252,-0.013466666452587],[0.20038819313049,0.17550177872181,-0.047557435929775]],[[-0.14569917321205,-0.12469059228897,-0.025300730019808],[-0.10574521124363,0.15944720804691,0.25689291954041],[-0.21868278086185,-0.05192955583334,0.17278751730919]],[[-0.027378641068935,0.071383856236935,-0.068450249731541],[0.030669629573822,0.089861899614334,-0.17441296577454],[-0.099797688424587,0.074920199811459,0.12934333086014]],[[-0.01939426548779,-0.085924364626408,-0.14762178063393],[-0.05943588167429,-0.028950080275536,0.050692498683929],[0.021414121612906,-0.062606915831566,0.018364327028394]],[[0.028286311775446,0.094048090279102,-0.017426252365112],[-0.055061243474483,0.12046751379967,0.11219946295023],[0.15089066326618,0.16193981468678,0.26953855156898]],[[-0.043151870369911,-0.044613283127546,0.1949916779995],[0.018551768735051,-0.049215786159039,0.071952015161514],[0.16148367524147,0.058887306600809,-0.020888976752758]],[[0.065422683954239,0.027380898594856,-0.13037167489529],[0.067373961210251,0.1685231924057,0.041526671499014],[-0.073809787631035,-0.030999468639493,-0.0080388737842441]],[[-0.030719900503755,-0.16487443447113,-0.26944279670715],[-0.058421801775694,-0.15619565546513,-0.12185925245285],[0.093857184052467,0.19303797185421,0.17006260156631]],[[-0.061560984700918,0.0039307880215347,-0.093958973884583],[0.017000196501613,0.14251507818699,0.054938938468695],[-0.029783818870783,-0.082486771047115,-0.047323025763035]],[[0.15788768231869,-0.055572867393494,-0.12189246714115],[-0.032750532031059,0.057925432920456,-0.1675239354372],[0.17849844694138,-0.0064858691766858,-0.2512683570385]],[[0.0024093203246593,-0.32760715484619,-0.14783644676208],[-0.15243858098984,-0.10138711333275,0.075590096414089],[-0.11169787496328,-0.18679574131966,-0.19909660518169]],[[0.14146737754345,0.087070599198341,0.04114643484354],[0.10172116011381,0.18189489841461,0.18221588432789],[-0.13539227843285,-0.15277759730816,-0.043212965130806]],[[0.015664367005229,0.062934398651123,-0.013653779402375],[-0.09588123857975,0.047105427831411,0.069503292441368],[-0.18498419225216,-0.12735928595066,-0.026249961927533]],[[0.067573234438896,0.060252718627453,0.096629358828068],[-0.23563718795776,-0.12355855107307,0.14620099961758],[-0.12097841501236,-0.16617307066917,-0.0041420329362154]],[[0.035215031355619,0.057895302772522,0.06000180542469],[-0.094779051840305,-0.039145190268755,-0.11086612939835],[-0.16755332052708,0.022975726053119,0.17707024514675]],[[0.032152585685253,-0.066954612731934,-0.054498914629221],[0.04644513502717,-0.099143728613853,-0.14602211117744],[0.16070587933064,0.072584345936775,-0.03378576412797]],[[0.045926366001368,-0.020761828869581,-0.020038271322846],[-0.18753786385059,-0.063003972172737,-0.17399816215038],[-0.12877528369427,0.0087218638509512,0.061084646731615]],[[0.0060206511989236,-0.017173139378428,-0.089188143610954],[-0.16409818828106,-0.076987475156784,-0.054599232971668],[0.12513466179371,0.13470557332039,-0.012146872468293]],[[0.092655315995216,0.010977981612086,0.083938650786877],[-0.095476523041725,0.12610204517841,0.14379034936428],[-0.16305446624756,0.19385439157486,0.10518213361502]],[[0.015117873437703,-0.056097876280546,0.055306069552898],[-0.0091361301019788,-0.052451245486736,-0.076934993267059],[0.097288258373737,0.22553490102291,0.083651594817638]],[[0.048340927809477,-0.039941351860762,-0.0047733383253217],[-0.026780311018229,-0.029959056526423,-0.047741089016199],[0.22108821570873,0.076891012489796,0.082893878221512]],[[0.11634753644466,0.17557422816753,-0.030865913257003],[0.043398708105087,-0.20765507221222,-0.37785452604294],[0.0012733056209981,-0.054049395024776,-0.17192056775093]],[[-0.0037629983853549,-0.046058420091867,-0.021164612844586],[-0.0091567626222968,-0.16318592429161,0.02834328263998],[0.083848878741264,-0.013821532018483,-0.068297252058983]],[[0.014641826041043,0.10967525839806,-0.064067468047142],[-0.017836764454842,0.16786129772663,0.0026268891524523],[-0.10375069081783,-0.080743588507175,-0.17693711817265]],[[0.009025851264596,-0.040880776941776,0.046718407422304],[0.24714174866676,-0.014032600447536,-0.18520730733871],[0.032541006803513,-0.21632029116154,0.053144861012697]],[[-0.022933756932616,0.15369589626789,0.17060658335686],[-0.053238313645124,0.035761956125498,-0.036858730018139],[-0.16235177218914,-0.10346518456936,-0.10971725732088]],[[0.20893117785454,-0.14676338434219,-0.023427601903677],[0.013030409812927,-0.10479956865311,-0.039529453963041],[-0.047225285321474,-0.049641575664282,0.049959532916546]],[[0.08033512532711,0.026989601552486,-0.19759447872639],[0.0014153686352074,0.011243521235883,0.052550561726093],[-0.32188728451729,-0.27364218235016,-0.11406850069761]],[[-0.012931846082211,-0.09060987830162,-0.12447620928288],[-0.009841475635767,-0.085913486778736,-0.10505428165197],[0.11992873251438,-0.093221552670002,-0.15352426469326]],[[-0.078261345624924,0.12911286950111,0.10608629137278],[-0.15767827630043,-0.12108820676804,0.066931679844856],[0.045289050787687,0.14639323949814,0.11927846074104]],[[0.19343015551567,0.12153486162424,0.2540667951107],[-0.096362046897411,0.12972454726696,0.23049046099186],[0.064007915556431,0.055057696998119,0.1033735498786]],[[-0.062059842050076,-0.022437492385507,-0.0768036916852],[0.011613981798291,-0.043070908635855,-0.049888715147972],[-0.088739074766636,0.0025856466963887,0.30986964702606]],[[-0.20525228977203,-0.055319789797068,-0.17134130001068],[0.31736409664154,0.098393104970455,-0.19508588314056],[0.0032702831085771,0.02375009842217,-0.039049349725246]],[[0.24836660921574,-0.019816694781184,-0.072608403861523],[-0.11817160248756,-0.13478980958462,0.16549542546272],[-0.088404357433319,-0.067533731460571,0.050958622246981]],[[0.15851256251335,0.13368126749992,0.062783062458038],[0.20387054979801,0.066734850406647,-0.0065430589020252],[-0.040194064378738,0.027853036299348,0.020940629765391]],[[0.14183081686497,0.14747233688831,0.12825621664524],[-0.16021746397018,-0.071004249155521,-0.011903532780707],[-0.033021219074726,0.14446178078651,0.060438875108957]],[[-0.025247579440475,-0.044244274497032,-0.048562880605459],[-0.12143298238516,-0.21668343245983,-0.064916729927063],[0.031494088470936,-0.0010057357139885,0.070588871836662]],[[-0.02792102470994,-0.10593762248755,-0.056753505021334],[-0.035385448485613,0.10531385242939,0.058046072721481],[0.098283529281616,0.0084036197513342,0.054551105946302]],[[0.13518100976944,-0.062013737857342,0.062142573297024],[0.024505279958248,0.063950307667255,0.017918288707733],[0.072921968996525,-0.010943994857371,0.021349966526031]],[[0.0831628292799,0.010371278040111,0.010050917044282],[0.029713919386268,-0.10017287731171,-0.23070888221264],[-0.10663612186909,-0.024518363177776,-0.036965601146221]],[[0.10850305855274,0.078499272465706,-0.10201685130596],[-0.10171702504158,-0.095464080572128,-0.28535577654839],[-0.0070211836136878,0.044265128672123,0.011476909741759]],[[-0.063532643020153,0.1400475949049,0.33811190724373],[0.02235060557723,0.1026759147644,-0.081071510910988],[0.094508484005928,0.028530905023217,0.074569039046764]],[[-0.0892154276371,0.13096977770329,0.020022897049785],[-0.14557078480721,0.14967937767506,0.13645887374878],[-0.26905518770218,-0.11480231583118,-0.038176346570253]],[[-0.23799946904182,-0.12772937119007,0.035405986011028],[0.035161174833775,0.081781670451164,-0.07567372918129],[0.064896263182163,0.0076291686855257,0.065148517489433]],[[-0.10867984592915,-0.016132773831487,-0.030024532228708],[-0.031132746487856,-0.099623672664165,-0.075639463961124],[-0.14780260622501,0.15136653184891,-0.020458173006773]],[[0.25356274843216,-0.032669946551323,-0.076741173863411],[0.013619634322822,-0.036484401673079,-0.14389692246914],[0.097255349159241,-0.076028414070606,0.044697154313326]],[[-0.048698537051678,-0.16605545580387,-0.14152647554874],[0.024411400780082,-0.13296581804752,-0.068375907838345],[-0.067223399877548,-0.016529578715563,0.021763846278191]],[[0.072030603885651,0.093873970210552,-0.08865612745285],[-0.043550860136747,-0.020135896280408,0.036559324711561],[0.014998842030764,0.014112432487309,-0.13203023374081]],[[0.038787603378296,-0.11110750585794,-0.18050640821457],[-0.038483057171106,0.038672748953104,-0.066357895731926],[-0.030985407531261,-0.038493931293488,0.21470794081688]],[[0.020604237914085,-0.014090779237449,-0.026472702622414],[0.015642963349819,-0.060664303600788,0.00059777247952297],[0.07923474162817,0.074798613786697,-0.22128829360008]],[[0.015969326719642,-0.10533159971237,-0.089092776179314],[-0.18889723718166,0.021766068413854,0.017689133062959],[0.056593999266624,0.053842958062887,0.094155184924603]],[[-0.083537638187408,-0.092630214989185,-0.05505957826972],[-0.015493758954108,-0.022227605804801,0.008011338301003],[-0.13228300213814,-0.22832246124744,-0.075767509639263]],[[0.092591352760792,0.0075901038944721,-0.0056450855918229],[-0.13659352064133,0.031158469617367,-0.16166391968727],[0.12851069867611,0.05195577442646,-0.039248876273632]],[[0.035483404994011,-0.22865153849125,-0.055636465549469],[0.038039535284042,0.12522901594639,0.087091319262981],[-0.1899491250515,-0.11333061754704,-0.1311843842268]],[[0.15960486233234,-0.019835911691189,-0.19023251533508],[-0.038886319845915,-0.032655656337738,-0.07662620395422],[-0.034536622464657,-0.041929218918085,-0.19344083964825]],[[-0.14136140048504,-0.1009319126606,-0.07928279042244],[-0.16494365036488,0.017579074949026,0.10607291013002],[-0.13873820006847,-0.017216201871634,-0.050407197326422]],[[0.026778873056173,0.007149625569582,0.10330918431282],[-0.068523228168488,-0.11202292889357,0.011616032570601],[0.11952210217714,0.23681224882603,0.22638314962387]],[[-0.035265378654003,-0.2122557759285,-0.1300061494112],[-0.050377164036036,-0.020737919956446,-0.11026906222105],[-0.073854818940163,-0.013175524771214,0.10109756886959]],[[0.12380046397448,-0.15037901699543,0.075276345014572],[-0.026180721819401,-0.10640431940556,-0.041271850466728],[-0.28068089485168,0.027207143604755,0.0094627141952515]],[[-0.092995621263981,-0.048039488494396,-0.052173718810081],[-0.06584171205759,0.025610335171223,0.08509910851717],[0.13193099200726,0.12255338579416,-0.044205524027348]],[[-0.026843965053558,-0.10568635165691,-0.13129390776157],[-0.0025590073782951,0.032764319330454,0.031313303858042],[0.12980109453201,0.040954876691103,-0.12835273146629]],[[-0.30084645748138,-0.13133136928082,-0.099196657538414],[-0.027563573792577,0.055692430585623,-0.081544108688831],[0.12920248508453,0.022645676508546,-0.042836286127567]],[[0.10462784022093,-0.095214381814003,0.11727680265903],[0.27948886156082,0.0099849589169025,0.1243763640523],[0.00047443236690015,-0.22156420350075,-0.16202600300312]],[[0.15859386324883,0.14309899508953,-0.03001437522471],[-0.14445795118809,-0.057829391211271,0.1612665951252],[0.040932159870863,0.057215921580791,-0.088775172829628]],[[-0.030976252630353,-0.032257687300444,-0.15914446115494],[-0.13669529557228,-0.15713162720203,0.044144473969936],[-0.0094058690592647,0.0099181504920125,0.12478674203157]],[[-0.24182336032391,-0.026021759957075,0.12886315584183],[-0.17959372699261,-0.02412099391222,-0.075945995748043],[0.025165531784296,-0.081482298672199,0.072649419307709]],[[0.0086855934932828,-0.16802097856998,-0.13911071419716],[0.071210741996765,-0.094419032335281,-0.10693597793579],[-0.24816651642323,0.033728908747435,-0.0059126419946551]],[[-0.12087531387806,0.046530157327652,0.005311640445143],[-0.082679584622383,0.082767814397812,-0.023359324783087],[-0.062963344156742,0.099235482513905,0.10994456708431]],[[-0.067589066922665,-0.021626148372889,0.038098961114883],[-0.059103228151798,-0.0039770049043,-0.086088195443153],[-0.064371041953564,-0.11839606612921,-0.29668912291527]],[[0.052491839975119,0.022225838154554,0.011090411804616],[-0.12807421386242,-0.030362049117684,0.069118656218052],[0.1599098443985,-0.023509122431278,-0.087911389768124]],[[-0.058223474770784,-0.087993763387203,-0.097455106675625],[-0.13823740184307,-0.26579806208611,-0.13997931778431],[0.044654626399279,-0.0392788015306,-0.11555513739586]],[[-0.15212450921535,-0.022607965394855,0.080904491245747],[0.080706745386124,0.093915887176991,-0.073246575891972],[-0.078141890466213,-0.10539098829031,-0.15966513752937]],[[-0.23727732896805,-0.037014357745647,-0.018624717369676],[-0.059449799358845,-0.086680099368095,0.079036146402359],[-0.20118334889412,-0.0053959814831614,0.008806062862277]],[[-0.021546157076955,0.086821816861629,-0.023179568350315],[-0.027989460155368,-0.11349976807833,0.013276994228363],[-0.13135062158108,-0.13588327169418,-0.097582034766674]],[[0.11952274292707,-0.029597556218505,-0.06121464446187],[0.0051822611130774,0.069058284163475,-0.064502976834774],[-0.13063961267471,-0.060648549348116,0.031147789210081]],[[-0.12899130582809,-0.040263053029776,-0.15758812427521],[0.17851895093918,0.084298335015774,-0.32082781195641],[-0.30829626321793,-0.082477435469627,0.18623985350132]],[[0.14726942777634,0.0062623918056488,0.0054810326546431],[-0.048504594713449,0.035863805562258,0.038001980632544],[-0.268121778965,-0.089902594685555,0.16089673340321]],[[-0.1896505355835,-0.059756748378277,0.05204738676548],[0.15317961573601,-0.010198597796261,0.25147506594658],[-0.15422254800797,-0.12924559414387,-0.12718325853348]],[[0.074611999094486,0.040255811065435,0.13205303251743],[0.054641138762236,0.18711146712303,-0.013131436891854],[0.21328136324883,-0.0018037229310721,-0.1174865141511]],[[-0.01778413169086,-0.13922780752182,0.042781490832567],[-0.0095596192404628,-0.0058307093568146,-0.022216616198421],[-0.095532134175301,0.012943798676133,-0.0078808004036546]],[[0.076634429395199,0.067859336733818,0.092444092035294],[0.035128731280565,0.0019547794945538,-0.042607232928276],[0.12888053059578,0.058749321848154,0.045464232563972]],[[0.036548838019371,-0.078386895358562,-0.25956788659096],[0.045946832746267,0.085076801478863,0.045040681958199],[-0.057060893625021,-0.06215588748455,-0.12150647491217]],[[-0.11711337417364,-0.073946423828602,0.068508110940456],[-0.058637712150812,0.092989839613438,-0.015206566080451],[-0.042993769049644,0.036090850830078,-0.11338947713375]],[[-0.097392827272415,-0.0073941187001765,-0.14406484365463],[-0.097488738596439,-0.084897682070732,0.02927827462554],[0.052107695490122,0.0075358655303717,0.026619801297784]],[[-0.18804237246513,0.015020440332592,0.064328424632549],[-0.064609810709953,0.10572725534439,0.13601410388947],[-0.14545869827271,0.029833914712071,-0.013751776888967]],[[0.013783460482955,-0.11113335937262,-0.107765391469],[-0.14676794409752,-0.07893168926239,-0.075073577463627],[0.026235148310661,-0.0057023148983717,-0.085363745689392]],[[-0.042508531361818,-0.063009671866894,-0.26508623361588],[0.22388929128647,0.15693981945515,0.011558758094907],[-0.016910986974835,0.12864536046982,0.10276412218809]],[[-0.034816056489944,-0.092792227864265,-0.048783931881189],[-0.14469760656357,-0.19235099852085,-0.049334518611431],[0.061326842755079,0.072901077568531,-0.0045134974643588]],[[0.10135082900524,-0.044544883072376,-0.12338143587112],[0.0071928091347218,-0.086426988244057,-0.14513927698135],[0.00031044788192958,0.16657100617886,0.10456990450621]],[[-0.079469740390778,0.024615295231342,-0.096986070275307],[0.022711956873536,-0.028276067227125,0.12120480835438],[0.09345118701458,-0.015182494185865,-0.060840293765068]],[[-0.19559502601624,-0.13994908332825,-0.21328927576542],[-0.025111591443419,0.0013874997384846,0.062149610370398],[-0.098388850688934,-0.049929857254028,0.016408320516348]],[[-0.0044942772947252,-0.029883516952395,-0.024054048582911],[0.046610236167908,0.070541150867939,-0.061572443693876],[-0.066347405314445,-0.17532439529896,-0.049706369638443]],[[0.37539613246918,-0.11059250682592,0.1437746733427],[0.090316623449326,-0.055920258164406,-0.03216277807951],[-0.038371033966541,0.094645477831364,-0.033550824970007]],[[0.21105355024338,0.16049993038177,0.25008577108383],[-0.043843753635883,-0.10932283848524,-0.25721874833107],[0.15224142372608,0.0012658759951591,-0.093005962669849]],[[-0.00092435599071905,0.00050758954603225,0.015973571687937],[0.062658384442329,-0.066606998443604,-0.14724187552929],[0.061747416853905,0.086790025234222,0.071622908115387]],[[0.17534551024437,0.15752278268337,0.27868646383286],[-0.16577485203743,-0.11109772324562,-0.067340649664402],[-0.054531697183847,0.0046079019084573,-0.06217285618186]],[[-0.058133620768785,0.024611307308078,-0.15944665670395],[0.16127786040306,0.085501998662949,0.036312162876129],[-0.18537798523903,-0.12121692299843,-0.26243016123772]],[[-0.1572280973196,-0.064208917319775,-0.011054726317525],[0.047208748757839,-0.012369078584015,-0.051861029118299],[-0.087609730660915,-0.0051339515484869,-0.070881426334381]],[[-0.19700984656811,-0.12866379320621,-0.045385729521513],[-0.13952803611755,0.11097709834576,0.18093179166317],[0.14123399555683,-0.10889767110348,-0.071636103093624]],[[-0.14542266726494,-0.13693472743034,-0.039682943373919],[0.058020304888487,0.017622651532292,-0.065611615777016],[0.048109214752913,0.099992968142033,-0.21102598309517]],[[-0.020573990419507,0.10007137805223,0.068193733692169],[0.013379918411374,-0.067494504153728,-0.070957720279694],[-0.13068969547749,-0.036207992583513,0.13180312514305]],[[-0.26267674565315,-0.30041852593422,-0.20062954723835],[0.10277414321899,0.010139152407646,0.057831596583128],[0.00023509270977229,-0.04004243761301,0.0269008371979]],[[-0.080068163573742,0.02709343098104,0.027074418962002],[0.099010653793812,0.04853480681777,0.13202531635761],[0.055680524557829,0.12247752398252,-0.051253028213978]],[[0.012359200045466,0.0028036865405738,0.0058328141458333],[0.042131509631872,0.032666277140379,-0.0030196935404092],[-0.061847843229771,-0.048425935208797,0.053583193570375]],[[-0.11410720646381,-0.055956311523914,-0.068927064538002],[0.00094135745894164,-0.13958364725113,-0.07792703807354],[0.095480069518089,0.0006748215528205,0.046030443161726]],[[0.087746843695641,0.064638681709766,0.081082597374916],[-0.12892904877663,-0.065041936933994,0.043713450431824],[-0.057624764740467,-0.0052283341065049,0.1603902131319]],[[0.17178791761398,0.12048849463463,-0.0834925994277],[0.075487732887268,0.16951586306095,0.063937090337276],[-0.15284280478954,-0.2093670964241,-0.0061084153130651]],[[0.052363038063049,0.080408357083797,0.011875945143402],[-0.067161679267883,-0.15078313648701,-0.013239784166217],[0.0007358412258327,-0.080127686262131,0.084931142628193]],[[-0.045751452445984,-0.17765089869499,-0.11521915346384],[-0.1536025851965,0.041055779904127,0.045519631356001],[-0.047352060675621,0.072722442448139,0.1279159039259]],[[-0.14300872385502,-0.027831742540002,0.12211332470179],[-0.0059309415519238,0.035223949700594,0.001841134740971],[-0.099668689072132,-0.13841247558594,-0.027739072218537]],[[0.11300235241652,0.097904123365879,-0.11247789859772],[-0.17044578492641,-0.22227405011654,-0.15834613144398],[0.24349097907543,0.12851391732693,0.27847623825073]],[[-0.033005822449923,0.21211041510105,0.19330768287182],[-0.097483605146408,0.048251304775476,0.18088303506374],[0.26991650462151,0.052963774651289,-0.14958725869656]],[[-0.0041873571462929,-0.1223958581686,0.1004334166646],[0.067654296755791,0.12732741236687,0.1479653865099],[0.00176399666816,-0.12516516447067,-0.031889028847218]],[[-0.060308333486319,-0.0092540504410863,-0.11392400413752],[0.33741214871407,0.1787426918745,-0.011612124741077],[-0.082371450960636,0.053115624934435,-0.11965673416853]],[[-0.033494878560305,-0.014524973928928,0.22090731561184],[0.0043070144020021,0.084991171956062,-0.068279430270195],[-0.23602047562599,-0.12114251405001,-0.11497768759727]],[[-0.033913597464561,-0.10784243047237,0.021619517356157],[-0.048707742244005,0.055191364139318,0.068981602787971],[-0.14168471097946,-0.092910550534725,0.047857739031315]],[[-0.42127481102943,-0.20723353326321,0.0080918241292238],[0.10341589897871,-0.063089929521084,0.08650778979063],[-0.014840226620436,-0.1435689330101,-0.087051540613174]],[[0.1476107686758,-0.024237642064691,0.036828510463238],[-0.086687594652176,-0.026102969422936,-0.099957644939423],[-0.0070224795490503,0.072977215051651,0.041012663394213]],[[-0.030375441536307,-0.064165659248829,5.7343866501469e-05],[0.09553088247776,-0.14953063428402,-0.031811010092497],[-0.031509395688772,-0.12818183004856,-0.031294792890549]],[[-0.037653759121895,0.19895356893539,-0.28399351239204],[-0.10908635705709,-0.059909638017416,-0.23251181840897],[-0.062154352664948,0.055219698697329,0.091649003326893]],[[-0.11677719652653,-0.031149929389358,0.17488014698029],[-0.15247912704945,-0.010520366951823,-0.055699624121189],[0.098708122968674,0.025229591876268,0.28875216841698]],[[0.24855546653271,-0.088343784213066,0.051620561629534],[-0.11769310384989,-0.094703190028667,-0.10867268592119],[-0.09867762029171,-0.24667665362358,-0.052916511893272]]],[[[0.11895646154881,-0.036450009793043,-0.051175780594349],[0.022977344691753,-0.065571285784245,-0.0027093521784991],[0.08878705650568,0.097286842763424,0.052778102457523]],[[0.036247882992029,-0.093204148113728,0.061691366136074],[-0.00030426736338995,0.12253659963608,0.20176775753498],[-0.10749346762896,-0.031519699841738,-0.077007226645947]],[[0.012438800185919,-0.072162993252277,0.083200104534626],[-0.039991784840822,0.13882702589035,0.044460695236921],[0.040449965745211,0.0036077713593841,0.019470866769552]],[[-0.047557901591063,-0.0056157479993999,-0.051978468894958],[-0.079307533800602,0.12453325837851,0.043417666107416],[-0.0067922016605735,0.019353527575731,-0.019185619428754]],[[0.041110768914223,-0.067024022340775,-0.0018098248401657],[0.040492404252291,-0.017161400988698,-0.147181853652],[-0.059019010514021,0.028186656534672,-0.0055009829811752]],[[-0.01609836705029,0.052269738167524,0.004226328805089],[-0.13482488691807,0.056339289993048,-0.070432551205158],[-0.19507001340389,0.20805697143078,0.0087015954777598]],[[0.095778942108154,-0.15721170604229,0.11895614117384],[-0.04035023227334,0.019073214381933,0.095709599554539],[0.13123835623264,-0.0046214214526117,-0.029806107282639]],[[0.20724631845951,-0.026084577664733,0.01951108686626],[0.043568838387728,-0.052572064101696,-0.051984392106533],[0.015613592229784,-0.15984578430653,0.00092587393010035]],[[-0.10967516154051,-0.0051234583370388,0.027392819523811],[-0.039897404611111,0.058151625096798,-0.11910870671272],[0.076536156237125,-0.028961701318622,-0.054128762334585]],[[-0.1171341240406,-0.13009396195412,-0.02747967839241],[0.10717127472162,-0.076985463500023,-0.057446517050266],[0.066823229193687,-0.16675201058388,0.0088299252092838]],[[-0.053042352199554,-0.099399842321873,-0.088846169412136],[-0.063879981637001,-0.11632319539785,-0.0069734607823193],[-0.069828368723392,-0.26590967178345,0.001778818317689]],[[0.082107484340668,-0.0036960423458368,0.11173040419817],[0.039747506380081,-0.15585336089134,-0.11418914049864],[0.018966676667333,-0.13708904385567,-0.037092007696629]],[[-0.0070331380702555,-0.18513011932373,-0.1535606533289],[0.0028179201763123,0.051341291517019,-0.0081260977312922],[-0.012585985474288,0.0086433859542012,-0.18086941540241]],[[-0.031770296394825,-0.0042446595616639,0.055493172258139],[-0.19134782254696,-0.072014532983303,0.093872830271721],[-0.073600247502327,0.079228594899178,0.080910205841064]],[[-0.088457398116589,-0.068052545189857,-0.0063232621178031],[0.0041028498671949,-0.10072072595358,0.066893592476845],[-0.17867921292782,0.0049014170654118,-0.11081495136023]],[[-0.02843096666038,0.070945337414742,-0.098160676658154],[0.013071064837277,0.1130038946867,-0.0038670094218105],[-0.20065450668335,0.08827368915081,-0.037273474037647]],[[0.018369371071458,-0.039745345711708,0.1140460819006],[0.079310841858387,-0.046604100614786,-0.017163628712296],[-0.084265500307083,-0.033635959029198,0.02619612403214]],[[0.0023724660277367,-0.022789914160967,0.0061474330723286],[0.11008819192648,-0.028037892654538,-0.12349332123995],[0.10347940772772,-0.0547935962677,-0.095990963280201]],[[0.044694818556309,-0.062677554786205,0.12907773256302],[0.056168060749769,0.13327816128731,0.026065420359373],[-0.011216560378671,-0.015244771726429,0.0062401043251157]],[[-0.026761543005705,-0.14471906423569,0.18295048177242],[-0.021820982918143,-0.11182627826929,0.013649710454047],[0.05278592184186,-0.063483312726021,0.040536880493164]],[[-0.040204159915447,-0.15312702953815,-0.056045312434435],[0.010383167304099,-0.12217933684587,-0.04072193056345],[-0.028821105137467,-0.045771569013596,-0.072197817265987]],[[-0.11303683370352,-0.0050825835205615,-0.10519879311323],[-0.063855491578579,0.091364555060863,-0.022210976108909],[0.0029343541245908,0.093793965876102,0.021768288686872]],[[0.22169168293476,-0.074776373803616,0.091009542346001],[0.068107850849628,-0.020680507645011,0.081333436071873],[0.033677987754345,0.12029234319925,0.057421986013651]],[[0.038198348134756,-0.080955140292645,-0.088410265743732],[0.043747682124376,0.048120807856321,-0.026669841259718],[0.018352545797825,-0.011812161654234,0.027787627652287]],[[0.0010518360650167,0.06943191587925,-0.083717972040176],[-0.063879311084747,-0.0060281152836978,-0.0076469294726849],[0.0014637468848377,-0.10116043686867,0.073210522532463]],[[0.051807034760714,-0.037900231778622,0.055805396288633],[0.13505877554417,0.067959919571877,0.063894495368004],[0.067445859313011,-0.014590158127248,-0.00110595067963]],[[-0.1047794893384,-0.06135006248951,-0.058871977031231],[-0.043795600533485,-0.039791528135538,0.058839399367571],[0.015760228037834,-0.037929654121399,-0.058456603437662]],[[0.1724541336298,-0.06343774497509,-0.11945198476315],[-0.020736498758197,0.067694038152695,0.0062606385909021],[-0.14987644553185,-0.090014882385731,-0.027794996276498]],[[-0.10561822354794,0.082560427486897,-0.025623692199588],[0.070439264178276,0.046961344778538,-0.063825242221355],[0.068753100931644,0.022154398262501,0.012270169332623]],[[0.10135332494974,0.02484636195004,-0.065516978502274],[0.043028350919485,0.036753211170435,-0.11279611289501],[0.024548863992095,-0.099430166184902,0.044765215367079]],[[0.20903432369232,-0.075896129012108,-0.01897919178009],[-0.062978863716125,0.036094523966312,0.026461845263839],[0.089905478060246,0.16465723514557,0.076269790530205]],[[0.1355587542057,-0.060475777834654,0.026918094605207],[-0.0089254258200526,-0.013756705448031,0.06770271062851],[0.17066332697868,0.032496839761734,-0.044809732586145]],[[-0.20769467949867,-0.10570187866688,-0.091760389506817],[-0.077517986297607,-0.013709155842662,-0.022962626069784],[0.10434900224209,-0.041196670383215,0.091177821159363]],[[-0.0079246554523706,0.065732359886169,0.096403263509274],[-0.14283880591393,-0.068107552826405,0.032525070011616],[0.010266566649079,0.040095139294863,0.13717785477638]],[[-0.043630518019199,0.025582198053598,-0.022886537015438],[-0.10843930393457,-0.085811287164688,-0.024104738608003],[-0.001298911171034,-0.095776431262493,-0.087403498589993]],[[0.012536437250674,-0.10903784632683,-0.024085350334644],[-0.047138027846813,-0.10275623947382,0.028260711580515],[0.053943246603012,0.053860202431679,0.026644831523299]],[[0.06132086366415,-0.042370017617941,-0.032054141163826],[-0.14991594851017,-0.092251308262348,0.080105118453503],[0.075601294636726,0.24315589666367,-0.020972959697247]],[[-0.22780910134315,0.24745731055737,0.0042894352227449],[-0.13988526165485,-0.020470019429922,-0.11704494804144],[-0.18445092439651,-0.044963575899601,-0.040863163769245]],[[0.011605687439442,0.0019770343787968,-0.049893077462912],[-0.064323782920837,0.086733773350716,-0.044385377317667],[-0.13441042602062,-0.10755708813667,-0.13354226946831]],[[0.072715789079666,-0.065298356115818,-0.011995051987469],[-0.031412187963724,0.10173736512661,-0.11327723413706],[-0.089162178337574,-0.077164880931377,-0.071924351155758]],[[0.013462208211422,-0.072999440133572,-0.074060924351215],[-0.077001675963402,-0.032271951436996,-0.057893868535757],[-0.061418142169714,0.01141039095819,0.060281112790108]],[[-0.076595909893513,-0.0017955162329599,0.11938248574734],[0.018642405048013,0.044833932071924,0.061628255993128],[-0.097744554281235,0.024326143786311,0.10003936290741]],[[0.012654674239457,-0.030567687004805,0.022417424246669],[-0.0059938183985651,-0.095278516411781,0.077264465391636],[0.0064479517750442,-0.00077629764564335,0.024401465430856]],[[0.037371225655079,-0.054035004228354,0.051049809902906],[-0.0066459476947784,-0.11007129400969,0.037547491490841],[0.011891469359398,0.07047538459301,0.056255787611008]],[[-0.032195065170527,-0.092522799968719,-0.16311502456665],[-0.047255299985409,-0.096436277031898,0.011911101639271],[0.077390983700752,0.066469244658947,0.073315978050232]],[[-0.10338851809502,-0.00024786128778942,-0.12842088937759],[-0.054567094892263,-0.028687577694654,-0.065311625599861],[-0.039851233363152,0.18173731863499,-0.082928277552128]],[[-0.13257762789726,-0.10015771538019,-0.058245860040188],[0.0066954139620066,-0.0039975130930543,-0.021301962435246],[-0.0384351760149,-0.12437861412764,-0.15130466222763]],[[-0.047472067177296,0.0037512113340199,0.12361790239811],[0.026654083281755,0.074110977351665,-0.11621112376451],[-0.13578914105892,0.042646620422602,-0.048683013767004]],[[0.14729896187782,-0.21338519454002,0.018439052626491],[0.070095963776112,-0.047161396592855,-0.01156154833734],[0.043849777430296,0.070351779460907,0.12189017981291]],[[0.017897356301546,-0.025031518191099,0.11484955251217],[-0.12277252227068,0.084122851490974,-0.012678536586463],[0.0013461820781231,0.041037701070309,0.0077816797420382]],[[0.049717027693987,0.24738109111786,0.019370755180717],[0.01847823150456,0.16259324550629,-0.050833750516176],[-0.16998176276684,0.036862969398499,0.059332367032766]],[[-0.12400625646114,0.0033362549729645,-0.027746601030231],[-0.0041734627448022,-0.19289410114288,0.024252790957689],[-0.063268236815929,0.059870511293411,-0.058891244232655]],[[-0.024399824440479,0.013795429840684,0.030725300312042],[-0.077184364199638,-0.073882505297661,-0.015422379598022],[-0.023128807544708,-0.04538968205452,0.018621956929564]],[[-0.0074847610667348,-0.037572730332613,0.080093063414097],[-0.0086763324216008,-0.11026953160763,-0.052787479013205],[-0.016784464940429,-0.029276439920068,-0.097018241882324]],[[-0.12191231548786,0.14000423252583,-0.088306799530983],[0.075895920395851,0.068108111619949,0.080888487398624],[0.00076058355625719,-0.016223618760705,0.11151838302612]],[[-0.044373549520969,-0.013499739579856,-0.027233673259616],[-0.010293372906744,-0.0054009091109037,-0.046579211950302],[0.16173872351646,-0.050156153738499,0.055058673024178]],[[-0.040566563606262,-0.07103031873703,-0.088811457157135],[0.08169724047184,0.14323683083057,-0.097974993288517],[-0.10351190716028,0.064139395952225,-0.12544232606888]],[[-0.057237952947617,-0.045683525502682,-0.17993155121803],[0.039617411792278,0.0040295608341694,-0.063101246953011],[-0.073331296443939,-0.05934252589941,-0.10573192685843]],[[-0.0078380731865764,-0.035353533923626,0.09854581207037],[0.002951672533527,-0.036471109837294,0.078054420650005],[-0.066664211452007,-0.012130402959883,0.034347634762526]],[[0.0084009040147066,-0.062079463154078,0.15203042328358],[-0.166488930583,-0.11457236856222,0.15086653828621],[-0.053395867347717,0.039025206118822,0.0844956189394]],[[0.0087102651596069,-0.10919214785099,-0.13995230197906],[0.067202068865299,-0.055009093135595,0.1002844274044],[0.02562971226871,-0.07700614631176,0.053859110921621]],[[-0.045988503843546,-0.043483830988407,0.03141912445426],[0.00033581073512323,-0.19549317657948,0.10655573010445],[0.037351153790951,0.0025950069539249,0.0029367618262768]],[[0.047831695526838,-0.10792969167233,-0.038635615259409],[0.013287626206875,-0.075419165194035,-0.021766230463982],[-0.06632212549448,-0.10241202265024,0.0069209118373692]],[[0.12276300042868,0.051586415618658,-0.082822121679783],[0.25116929411888,0.00024003499129321,0.061305295675993],[0.025617966428399,0.071210809051991,0.097987331449986]],[[-0.05650619417429,-0.054192285984755,-0.030736148357391],[0.052395306527615,0.018123298883438,0.0038725822232664],[-0.071927316486835,0.067919619381428,-0.058240298181772]],[[0.1119823679328,0.082447461783886,-0.037939507514238],[0.059679247438908,0.015327072702348,0.12592560052872],[0.048891242593527,-0.053828220814466,0.0061075612902641]],[[0.094569534063339,-0.01251907646656,0.060687780380249],[0.15093849599361,-0.042064771056175,-0.15176090598106],[-0.055488437414169,0.098844721913338,0.036672353744507]],[[-0.093062095344067,-0.13685135543346,0.10718328505754],[0.072531558573246,0.059770300984383,-0.058703798800707],[-0.0007083005621098,-0.074830509722233,0.054657619446516]],[[0.018688147887588,-0.0011659451993182,0.087082847952843],[-0.051548514515162,-0.022679956629872,0.072773583233356],[-0.15635654330254,0.036265712231398,0.050267476588488]],[[0.014410207979381,-0.014357658103108,-0.045362398028374],[0.047033682465553,0.088599987328053,0.043066300451756],[-0.012058241292834,-0.13661675155163,0.055023994296789]],[[-0.081453666090965,-0.013352930545807,-0.095461301505566],[0.046637769788504,-0.084986127912998,-0.043176412582397],[0.15364287793636,0.023512717336416,-0.089737042784691]],[[0.04158741235733,-0.054555725306273,0.13416787981987],[0.024165965616703,0.0083759622648358,-0.099111035466194],[0.039504516869783,-0.035875458270311,0.032711010426283]],[[0.13996827602386,-0.25681775808334,0.011666532605886],[0.031188862398267,-0.13993754982948,0.010446258820593],[0.028708709403872,-0.046398941427469,0.0369265191257]],[[-0.15697805583477,0.026993598788977,-0.040347293019295],[0.012513004243374,-0.061950258910656,0.10405097156763],[-0.023659283295274,-0.034925438463688,-0.053978305310011]],[[0.082826845347881,-0.012287011370063,0.089300535619259],[-0.092971406877041,-0.092954143881798,-0.056208796799183],[0.06498758494854,-0.083680666983128,-0.073125645518303]],[[-0.0022156096529216,-0.15558782219887,-0.022719707340002],[-0.064573138952255,-0.065368436276913,-0.13106028735638],[0.061422936618328,-0.083169855177402,0.023103134706616]],[[-0.045530743896961,0.06400790065527,0.084738038480282],[-0.0022755519021302,-0.043088354170322,-0.05270142480731],[-0.040691886097193,0.1018378958106,0.028718695044518]],[[0.033566374331713,0.1453298330307,0.047057915478945],[0.033733792603016,-0.0069335238076746,0.0058089811354876],[-0.017247961834073,-0.067984394729137,-0.21591633558273]],[[0.12092946469784,0.14712856709957,-0.039974816143513],[-0.0067807510495186,0.0028066716622561,0.13437612354755],[-0.078317403793335,-0.13222873210907,-0.042638324201107]],[[0.061471473425627,-0.099263183772564,0.094266392290592],[-0.048750057816505,-0.16091799736023,-0.19606500864029],[0.044162582606077,0.060976177453995,-0.082134753465652]],[[-0.015957448631525,0.11895377933979,0.047873008996248],[-0.042044438421726,0.21100425720215,-0.04862293228507],[-0.063471779227257,0.095560356974602,0.04888316616416]],[[-0.11643362790346,0.032387666404247,-0.011277882382274],[0.032802354544401,-0.041629105806351,0.084197580814362],[0.01694561354816,-0.19826656579971,-0.065219461917877]],[[-0.020371492952108,-0.13016280531883,0.021642751991749],[0.058601710945368,-0.038275089114904,0.043865822255611],[-0.055455766618252,-0.14269599318504,0.054935369640589]],[[-0.17296408116817,0.013502329587936,-0.026042673736811],[-0.057792529463768,-0.10960391908884,-0.038664318621159],[-0.073364920914173,0.019075462594628,-0.043529707938433]],[[-0.12388344854116,0.02898358926177,-0.11351436376572],[-0.10026177018881,0.023909796029329,-0.022538118064404],[0.081372871994972,0.021343905478716,0.02642484754324]],[[-0.021074948832393,-0.057333536446095,-0.13856741786003],[-0.058909986168146,0.012826836667955,-0.098187036812305],[0.095537625253201,-0.0062096952460706,-0.055803369730711]],[[0.071116752922535,-0.10751980543137,0.011943906545639],[-0.042003005743027,-0.13310565054417,-0.015723198652267],[-0.038196157664061,-0.047499470412731,-0.09145949780941]],[[-0.032596226781607,0.052194572985172,0.037157397717237],[-0.0041130152530968,0.0013603995321319,-0.036169558763504],[-0.19960422813892,-0.028601242229342,0.024176295846701]],[[-0.031252142041922,-0.0046358518302441,-0.076257161796093],[-0.035316944122314,0.036601167172194,-0.068691983819008],[0.012025443837047,0.047191370278597,-0.15128642320633]],[[-0.030773179605603,-0.11277341097593,-0.12348192930222],[-0.088214658200741,0.0044182469137013,-0.060309566557407],[0.070420689880848,0.046187497675419,0.0085141072049737]],[[-0.032200235873461,0.043877486139536,0.048211019486189],[0.010065681301057,-0.0070210206322372,-0.1213144287467],[0.080392360687256,0.065271198749542,0.10483707487583]],[[0.011462544091046,0.019269786775112,0.015139383263886],[0.079257130622864,0.056096524000168,0.017528314143419],[-0.10462743788958,0.11125819385052,0.025185881182551]],[[-0.035920973867178,-0.014819083735347,-0.033592168241739],[0.12291110306978,-0.068738341331482,-0.036582913249731],[0.029970526695251,-0.091966539621353,0.010270433500409]],[[0.036082241684198,-0.10282281041145,-0.15519292652607],[0.034939810633659,-0.12032061070204,-0.032167766243219],[0.012470523826778,-0.051835600286722,0.11695566028357]],[[-0.082737989723682,-0.066176369786263,0.021136553958058],[-0.064619086682796,-0.04041513800621,-0.21519963443279],[0.0002851779863704,0.022039735689759,-0.060421973466873]],[[0.10948632657528,-0.043064419180155,-0.0043419473804533],[0.013964612036943,0.020067296922207,0.04034561663866],[0.13733598589897,0.10228622704744,-0.090042002499104]],[[0.085099495947361,-0.0061864606104791,-0.084853179752827],[0.061604578047991,-0.17225949466228,-0.018517406657338],[0.0029340393375605,-0.10379578918219,-0.015599315054715]],[[-0.018897663801908,-0.096561282873154,-0.057006690651178],[-0.034263394773006,0.067920424044132,0.069951072335243],[-0.03669386729598,0.041060045361519,0.12421117722988]],[[0.068609938025475,0.0039829956367612,-0.036460012197495],[-0.065686821937561,-0.09360608458519,0.069543324410915],[0.13641142845154,-0.04675816744566,-0.031843151897192]],[[-0.0070802932605147,-0.027047947049141,-0.067377120256424],[0.017384650185704,0.10261377692223,0.0028885535430163],[0.072112262248993,0.10537300258875,-0.1143563836813]],[[-0.097147844731808,0.096077680587769,-0.060905281454325],[-0.065287262201309,-0.072658859193325,0.022620687261224],[-0.043380580842495,0.087383389472961,0.038706503808498]],[[-0.05807139724493,-0.0098246354609728,-0.029131319373846],[0.12435699254274,0.041185941547155,0.044845882803202],[0.13811032474041,-0.080514527857304,-0.062758073210716]],[[0.046769712120295,-0.059743102639914,0.072892867028713],[-0.080232113599777,-0.065321445465088,-0.016282761469483],[-0.09223909676075,-0.18099376559258,0.015035443007946]],[[-0.061269018799067,0.14562556147575,0.06631988286972],[0.060901839286089,-0.029215885326266,0.026821102946997],[-0.11171120405197,-0.015673849731684,0.088255889713764]],[[-0.084312707185745,0.15341146290302,-0.00011194626858924],[0.055058412253857,-0.12048770487309,-0.19051443040371],[0.048623517155647,0.058609426021576,0.071674920618534]],[[-0.023365885019302,0.077568061649799,-0.012574781663716],[0.015651324763894,0.10671993345022,0.010655702091753],[-0.032272014766932,-0.041629999876022,-0.049498409032822]],[[0.028742633759975,0.0094345863908529,0.10182861983776],[-0.040828723460436,-0.077661544084549,-0.041425820440054],[0.13091236352921,-0.044788971543312,-0.0030425733420998]],[[0.10812247544527,0.087633445858955,-0.079617463052273],[-0.049767766147852,0.041866421699524,-0.13566379249096],[-0.024076664820313,-0.023127589374781,0.15218046307564]],[[0.19105088710785,0.014855451881886,0.071318320930004],[0.066197343170643,0.02489011362195,-0.16453044116497],[0.012393278069794,0.0014072955818847,0.047489691525698]],[[0.046093475073576,-0.082298740744591,-0.072401240468025],[0.011253190226853,-0.02721906080842,0.037052754312754],[-0.064118251204491,0.093959204852581,-0.0032974893692881]],[[0.034222483634949,0.08284118026495,0.085530057549477],[-0.0013822126202285,0.12555649876595,0.016544979065657],[-0.06207324936986,-0.067656815052032,-0.034731689840555]],[[-0.07997053861618,-0.084097653627396,0.038784354925156],[0.070199102163315,0.018990473821759,-0.043384358286858],[-0.057876016944647,-0.10808397829533,0.11761180311441]],[[-0.0016395014245063,-0.038339789956808,0.097398512065411],[-0.044012647122145,-0.022221233695745,0.13597813248634],[-0.044418647885323,-0.12031056731939,0.056330803781748]],[[0.15330970287323,-0.048879407346249,-0.014364157803357],[-0.037284824997187,-0.11752738058567,-0.026717392727733],[-0.059429835528135,-0.090988151729107,-0.11662607640028]],[[-0.053196601569653,0.080581374466419,0.074646145105362],[-0.035269934684038,0.047168027609587,0.028007976710796],[-0.13034535944462,0.05053773149848,0.003613794920966]],[[-0.029352555051446,-0.0070569054223597,-0.10497809946537],[-0.051031671464443,0.078743934631348,-0.0050820102915168],[-0.073816984891891,-0.019106527790427,-0.016141967847943]],[[0.078674107789993,-0.036808732897043,0.083104752004147],[-0.022110240533948,-0.0068381074815989,0.002228630008176],[0.10951662063599,-0.022059101611376,0.064593695104122]],[[-0.1123059168458,-0.0099376374855638,0.03727238252759],[-0.027881829068065,-0.0088862655684352,0.059384990483522],[0.038166433572769,-0.073213018476963,0.053164530545473]],[[0.073367364704609,-0.094403900206089,-0.010720959864557],[0.0065957615152001,0.09766960144043,-0.11674798280001],[-0.060920711606741,-0.053636271506548,-0.075792618095875]],[[0.045881550759077,-0.2651369869709,-0.063261196017265],[0.030921893194318,-0.056059148162603,-0.016209553927183],[-0.11478447914124,0.041835188865662,0.059220127761364]],[[0.060559917241335,-0.11150044947863,-0.1746257096529],[-0.11603753268719,-0.12669789791107,-0.22953279316425],[-0.14325828850269,0.074681609869003,0.16051462292671]],[[0.0062568485736847,-0.085088156163692,0.13129423558712],[-0.076898247003555,-0.00782136246562,0.13799232244492],[-0.1147575750947,-0.01932273991406,0.028906026855111]],[[-0.029911864548922,0.023985419422388,0.040698979049921],[-0.080970302224159,-0.011228336952627,-0.025379313156009],[-0.17052683234215,-0.21560008823872,-0.020522017031908]],[[-0.04336154460907,0.034745752811432,0.060098525136709],[-0.093041382730007,0.15188702940941,0.056432146579027],[-0.059998709708452,0.1335192322731,0.049309011548758]],[[-0.092131055891514,-0.070183776319027,-0.054820600897074],[-0.14824058115482,-0.11804766207933,-0.025256345048547],[-0.024259036406875,0.077314235270023,0.1123488843441]],[[0.087656438350677,0.0091120237484574,-0.10538621246815],[-0.033005941659212,0.0362329185009,-0.085040338337421],[-0.013343118131161,-0.013521443121135,0.084485314786434]],[[0.18308487534523,-0.10130981355906,-0.16236087679863],[0.3133470416069,-0.03584573790431,-0.064229853451252],[0.12439627945423,0.089836068451405,0.029158227145672]],[[0.006223383359611,0.11659169197083,0.0038558091036975],[-0.060999568551779,-0.01444061845541,0.026283994317055],[-0.17095908522606,0.17346455156803,0.05363254994154]]],[[[0.038046527653933,-0.03208564221859,-0.011553393676877],[-0.011397486552596,-0.05012721195817,0.041148729622364],[0.011806478723884,0.060766246169806,0.036337498575449]],[[0.03742216527462,0.0026363984216005,0.0016056777676567],[0.078845843672752,0.045438371598721,-0.035922799259424],[-0.041109718382359,-0.075786039233208,0.031754918396473]],[[0.055745877325535,0.050933383405209,0.13297471404076],[0.1568668782711,0.11380129307508,0.038566473871469],[0.10473357141018,-0.020924679934978,0.083455823361874]],[[-0.016612140461802,0.0016789984656498,-0.0746880620718],[0.019346360117197,-0.025729320943356,-0.01292856130749],[-0.046955812722445,-0.018506173044443,-0.0038092888426036]],[[-0.054408192634583,-0.13213554024696,-0.058790948241949],[0.09679951518774,-0.035621728748083,-0.035370763391256],[0.055420871824026,0.019749820232391,-0.01428300421685]],[[-0.11238824576139,-0.12365444004536,-0.029656823724508],[-0.057421419769526,-0.0082088755443692,0.059908162802458],[-0.16351547837257,-0.047207225114107,0.0719004124403]],[[0.00142617453821,0.053541444242001,0.0041023176163435],[-0.055331636220217,-0.10190296918154,-0.015771128237247],[-0.01651063375175,0.066016770899296,0.04382386058569]],[[-0.086346261203289,-0.0062823900952935,0.11152151972055],[-0.10891378670931,0.0074858679436147,-0.02752647921443],[-0.062251199036837,-0.046130891889334,0.057543937116861]],[[0.095691278576851,0.062518522143364,-0.044470150023699],[0.011173368431628,-0.046986367553473,0.031263284385204],[0.0365618057549,-0.10721571743488,-0.084155231714249]],[[-0.029157619923353,0.012824546545744,0.040143478661776],[-0.015496855601668,0.10162530839443,0.025052478536963],[-0.10660055279732,0.036709044128656,0.07597254961729]],[[-0.11497960239649,-0.054552789777517,-0.005256234202534],[-0.040704533457756,-0.022405942901969,0.016271498054266],[-0.10496302694082,-0.094447292387486,-0.091462075710297]],[[0.00023242642055266,-0.056734766811132,-0.18370616436005],[-0.04159115254879,-0.0053428146056831,-0.055551640689373],[0.011373460292816,-0.0010552166495472,0.18784806132317]],[[0.084873020648956,-0.077888175845146,-0.0027462923899293],[0.053616099059582,-0.0029795996379107,-0.066361047327518],[0.055750768631697,0.060880642384291,-0.0063929511234164]],[[-0.036180909723043,-0.014983270317316,-0.013781259767711],[-0.029232043772936,-0.1500339359045,0.029080851003528],[0.060314364731312,-0.046555213630199,-0.13117547333241]],[[0.01241366006434,0.011957016773522,0.021222271025181],[0.01420921087265,-0.04229674115777,-0.11512356251478],[-0.040157195180655,-0.077753119170666,-0.022786987945437]],[[-0.018713396042585,-0.05418873950839,-0.037422128021717],[0.094627812504768,0.070371933281422,0.035502001643181],[-0.033702682703733,-0.094737537205219,0.0088321100920439]],[[0.080422773957253,0.055965725332499,-0.14129294455051],[0.022220719605684,0.021747134625912,0.068914443254471],[-0.0048138899728656,0.11207051575184,0.099061235785484]],[[-0.019545130431652,0.031642273068428,-0.085938930511475],[0.014653320424259,0.10256376117468,-0.050000887364149],[-0.064209803938866,-0.070652805268764,-0.088182888925076]],[[-0.047830745577812,0.032180543988943,-0.0071753016673028],[-0.055630765855312,-0.00865837931633,-0.057639297097921],[0.026159029453993,-0.047765117138624,0.03125075250864]],[[-0.19755040109158,-0.056990299373865,-0.16140833497047],[-0.066343478858471,0.04997668042779,-0.011576494202018],[0.023841040208936,0.060917489230633,-0.098608173429966]],[[-0.048727385699749,0.039417322725058,-0.022504638880491],[-0.059066031128168,-0.05830517411232,0.029797073453665],[0.048559468239546,-0.011310566216707,-0.053411245346069]],[[0.024892948567867,-0.021871615201235,0.027169000357389],[0.04133066162467,0.0041149402968585,0.047329008579254],[0.18572163581848,0.035052351653576,0.020706798881292]],[[-0.016659531742334,-0.042886100709438,-0.019637208431959],[0.026829663664103,-0.0026984112337232,-0.014729419723153],[0.10402955114841,0.067820578813553,0.037011433392763]],[[-0.031419556587934,0.028685154393315,0.03595107793808],[0.064287662506104,-0.086877226829529,0.0020654492545873],[-0.01274901162833,-0.099606774747372,-0.090505242347717]],[[-0.043112136423588,-0.033344451338053,-0.0030880537815392],[-0.088277049362659,-0.11778473854065,0.042042169719934],[0.041500944644213,-0.023017957806587,-0.0051530981436372]],[[-0.04371852055192,-0.040526945143938,-0.037752866744995],[0.041441403329372,-0.046182569116354,0.041728641837835],[0.012598267756402,-0.023916410282254,0.0052112727425992]],[[-0.0096075991168618,-0.048634704202414,0.018713489174843],[-0.078443832695484,0.037700034677982,0.016672911122441],[0.16406856477261,0.0067178290337324,0.006589655764401]],[[0.077442564070225,0.051402855664492,-0.064007826149464],[-0.011834336444736,-0.071513503789902,0.00047730625374243],[-0.09051339328289,-0.01051430311054,0.07148689776659]],[[0.060231305658817,-0.029249710962176,-0.14211218059063],[0.07852353900671,0.057253941893578,-0.087267331779003],[0.071752838790417,0.0729004368186,-0.05745666846633]],[[-0.0034435736015439,-0.0037345609162003,0.078309580683708],[0.066083580255508,-0.028106667101383,-0.065416783094406],[-0.0072580613195896,-0.03457061201334,-0.08561959117651]],[[0.022882366552949,0.017395474016666,0.025482160970569],[0.017772549763322,-0.11642478406429,-0.022083474323153],[0.013201636262238,-0.062343206256628,-0.016143074259162]],[[0.015630094334483,-0.067617282271385,-0.10580676048994],[-0.11008539795876,-0.056433547288179,0.089743845164776],[0.059128731489182,0.19010485708714,0.06432818621397]],[[-0.064130336046219,-0.007088671438396,-0.0058049215003848],[-0.017281459644437,0.093501545488834,0.10803527384996],[0.015525857917964,-0.035292580723763,0.070852756500244]],[[-0.0053695035167038,-0.11085102707148,-0.062807522714138],[-0.011109285987914,0.036912210285664,0.019931675866246],[0.065643563866615,0.09026587754488,0.072186447679996]],[[0.024547388777137,-0.082465916872025,-0.085348427295685],[0.011379070580006,-0.042120963335037,-0.019066073000431],[0.069914154708385,-0.025815661996603,-0.038096819072962]],[[-0.065001361072063,-0.071384400129318,-0.049785491079092],[-0.084838502109051,-0.035378184169531,-0.043495878577232],[-0.028819063678384,-0.018468178808689,-0.02585232257843]],[[-0.054283052682877,0.099011972546577,0.063279591500759],[0.11152313649654,0.084469527006149,-0.060226231813431],[-0.022182773798704,-0.010373608209193,0.017573213204741]],[[-0.011535068042576,-0.060933668166399,0.062595620751381],[0.014215830713511,-0.083366669714451,0.059130150824785],[0.024786587804556,-0.020935228094459,0.004375752992928]],[[0.061761029064655,-0.007278420496732,0.0024472055956721],[0.060646913945675,0.026383960619569,0.13954356312752],[-0.049928698688745,-0.052540101110935,0.0027823830023408]],[[0.013846898451447,0.071495279669762,0.047267597168684],[-0.12586723268032,-0.0055351508781314,0.067033492028713],[-0.12502267956734,-0.1263739913702,-0.082265548408031]],[[-0.049720577895641,-0.0040348912589252,-0.0058915093541145],[-0.038479454815388,0.024707598611712,-0.034458220005035],[0.10547789186239,-0.016736503690481,-0.064050190150738]],[[-0.042513720691204,0.0066073606722057,-0.03104785643518],[-0.027715925127268,-0.08414226770401,-0.11789342015982],[-0.038438461720943,0.0062523847445846,-0.087032712996006]],[[-0.061223100870848,-0.049786433577538,0.012828039936721],[-0.016781641170382,-0.10456855595112,-0.033569850027561],[-0.031582102179527,-0.047294192016125,-0.031940899789333]],[[-0.097897060215473,-0.078808039426804,-0.028547840192914],[-0.10165420174599,-0.10517989099026,0.00086828373605385],[-0.017425011843443,-0.021634690463543,-0.0045063910074532]],[[0.07369089871645,0.0673693343997,-0.025224532932043],[-0.043508738279343,-0.087737746536732,-0.082784429192543],[-0.11226788163185,-0.08658442646265,-0.089623734354973]],[[0.041734989732504,-0.018117714673281,-0.055335637181997],[-0.04532752558589,0.0067816530354321,0.044107135385275],[-0.057554960250854,-0.0065640225075185,0.10644758492708]],[[-0.14433054625988,-0.028440076857805,0.037414882332087],[0.031075792387128,-0.048842288553715,-0.016515171155334],[-0.025846818462014,-0.2071860730648,-0.037719585001469]],[[0.11275292187929,0.013229499571025,-0.021921427920461],[0.024604197591543,0.042290989309549,0.043744511902332],[0.073717065155506,0.083229385316372,0.0089101539924741]],[[-0.017294738441706,-0.033330477774143,-0.036655455827713],[0.030317528173327,0.018030039966106,-0.024180365726352],[0.075553998351097,-0.082160003483295,-0.036881864070892]],[[-0.16556078195572,-0.10993558168411,-0.0056228209286928],[-0.043545875698328,-0.019825113937259,-0.077086068689823],[-0.0039981938898563,0.017270090058446,0.023899985477328]],[[-0.087469637393951,0.037885084748268,-0.052664965391159],[0.0035251448862255,0.0059023527428508,-0.081718616187572],[-0.013111305423081,0.052844688296318,0.054227970540524]],[[-0.062963932752609,0.01032464299351,-0.05797491595149],[-0.11568365991116,-0.0085883215069771,-0.039938002824783],[0.026019208133221,-0.046871710568666,-0.067537724971771]],[[-0.15993006527424,-0.17767389118671,-0.077530324459076],[-0.10508867353201,-0.026362325996161,0.034058053046465],[-0.02975794300437,0.0078078317455947,0.071514330804348]],[[-0.088382348418236,-0.034726187586784,0.034102234989405],[0.056781299412251,-0.027502130717039,-0.04231459274888],[0.049083814024925,-0.041529633104801,-0.0065926900133491]],[[-0.045775458216667,-0.011995991691947,0.031254906207323],[-0.045620284974575,-0.014330103062093,0.020944233983755],[0.078105621039867,-0.072749890387058,-0.10756684094667]],[[-0.076780766248703,-0.025213044136763,-0.0022267901804298],[0.019472237676382,0.14136356115341,0.015605308115482],[0.012860129587352,0.056804969906807,-0.022759072482586]],[[-0.070004805922508,-0.095610976219177,0.033178728073835],[-0.082708239555359,-0.058005701750517,-0.014769802801311],[-0.01547818351537,-0.016244782134891,-0.073359318077564]],[[0.00015496270498261,-0.019656339660287,-0.0029399541672319],[0.0092268390581012,-0.02115329541266,0.020533174276352],[-0.10433548688889,-0.05249011516571,-0.0039872680790722]],[[0.001396979787387,-0.067322120070457,-0.09604711830616],[-0.040134575217962,-0.016918133944273,0.031995177268982],[0.0019569892901927,0.032791182398796,0.040151663124561]],[[-0.12204122543335,-0.0057058590464294,0.026844851672649],[-0.042943727225065,-0.065989322960377,-0.014285795390606],[0.090718202292919,-0.027828278020024,0.061290133744478]],[[-0.016255090013146,-0.038090065121651,-0.0053187552839518],[-0.030545178800821,-0.017277309671044,-0.057111404836178],[0.04917823150754,-0.083246402442455,0.099855378270149]],[[-0.021330965682864,0.020966140553355,-0.0031902408227324],[0.030122784897685,0.073283657431602,0.055605251342058],[-0.10634709894657,-0.028635695576668,0.024128194898367]],[[0.047453876584768,0.10516750812531,-0.033683985471725],[-0.032530963420868,0.0012661698274314,-0.062318526208401],[0.074507020413876,0.10105160623789,-0.032855954021215]],[[0.11137337982655,-0.08776880055666,-0.12431051582098],[-0.004969141446054,0.0050400914624333,-0.042311239987612],[0.04120821878314,0.075554221868515,0.014821402728558]],[[-0.15730160474777,0.003866744460538,-0.10195014625788],[-0.084357365965843,-0.014863251708448,0.019134389236569],[0.027811078354716,-0.036038566380739,0.048218261450529]],[[0.031581282615662,-0.040200553834438,-0.015249776653945],[0.036323722451925,-0.00029995132354088,-0.02386998385191],[-0.0039913123473525,0.022319110110402,-0.036461558192968]],[[0.065882422029972,0.051956877112389,-0.035782556980848],[0.0070766555145383,0.039494313299656,-0.0067440341226757],[-0.10293184220791,-0.057595893740654,0.054751884192228]],[[-0.044424135237932,0.012240829877555,-0.088905997574329],[0.022628914564848,-0.030112560838461,-0.014345971867442],[-0.025104809552431,-0.0062729208730161,-0.012740745209157]],[[-0.11394546926022,-0.092981308698654,-0.020872803404927],[0.0016860782634467,-0.049043267965317,-0.038629196584225],[-0.064810074865818,-0.10649930685759,-0.071375228464603]],[[0.069555453956127,-0.096584349870682,-0.015158796682954],[-0.011256502941251,-0.06590760499239,-0.057673402130604],[-0.098343707621098,-0.044519357383251,-0.037291098386049]],[[-0.0057360143400729,0.024160649627447,0.079179041087627],[-0.047642719000578,0.044083442538977,-0.047535952180624],[-0.0076277977786958,0.061550311744213,0.0110700186342]],[[-0.10102818906307,0.011663345620036,0.027573507279158],[-0.093325637280941,-0.045137822628021,0.064988069236279],[-0.072355568408966,0.024815319105983,0.0059844898059964]],[[0.096226200461388,0.060850333422422,0.0014392239972949],[0.0077582355588675,-0.045003019273281,0.040018673986197],[-0.016057575121522,0.034108426421881,-0.049764819443226]],[[0.02177107706666,-0.0015756154898554,-0.0083632301539183],[0.0091454964131117,0.017478747293353,0.010156321339309],[-0.029729722067714,-0.067394807934761,-0.03425433114171]],[[0.0069029033184052,0.0882268846035,-0.021177930757403],[-0.087025061249733,-0.027383940294385,0.035841781646013],[-0.021075189113617,0.018354987725616,-0.053996730595827]],[[-0.073779419064522,-0.072365902364254,0.0096969706937671],[-0.0726248472929,-0.090324871242046,-0.018816266208887],[0.06863721460104,0.10264927148819,-0.13379155099392]],[[-0.005550492554903,0.022147038951516,-0.029174238443375],[0.072798430919647,-0.0084156570956111,-0.087207861244678],[0.046333819627762,-0.044896632432938,-0.0083545334637165]],[[0.013382151722908,0.026810945942998,0.0042197620496154],[-0.0018729198491201,0.0054460312239826,-0.051182050257921],[-0.032704710960388,0.048495747148991,0.034540947526693]],[[0.056241679936647,0.12355070561171,0.076021865010262],[-0.0039435941725969,-0.01245120447129,-0.0064473622478545],[0.011145705357194,0.089113794267178,0.00054537021787837]],[[-0.034487180411816,-0.10065066814423,-0.068840332329273],[-0.0048128212802112,-0.012369057163596,-0.052515801042318],[-0.0030446785967797,-0.053828861564398,0.010122057981789]],[[-0.11746103316545,-0.00092507037334144,-0.016563070937991],[-0.053064402192831,-0.074739016592503,-0.021313907578588],[0.085839599370956,0.062288247048855,0.020947482436895]],[[-0.016110744327307,-0.052217427641153,-0.029950277879834],[-0.014320693910122,0.04584052041173,0.074776723980904],[-0.05378507822752,-0.040576264262199,0.068743638694286]],[[-0.097052946686745,0.0017508311429992,-0.0060958256945014],[-0.079470135271549,-0.10895921289921,0.026450963690877],[-0.0061335819773376,-0.083286620676517,-0.025705803185701]],[[-0.021758133545518,0.034160915762186,-0.010940259322524],[-0.065811768174171,-0.01391847897321,0.0048013632185757],[-0.092136837542057,-0.043271940201521,0.019963946193457]],[[0.007031680084765,0.033135078847408,0.12318933755159],[0.039484888315201,-0.039699338376522,-0.028362100943923],[-0.012574390508235,-0.080601617693901,0.028093447908759]],[[-0.017697144299746,-0.011874323710799,-0.054094217717648],[0.014362219721079,0.014617948792875,-0.021178742870688],[-0.039902396500111,-0.017686581239104,0.019216375425458]],[[-0.055439561605453,0.027857355773449,0.036365061998367],[0.024339497089386,0.0061001358553767,-0.0045324969105422],[-0.10027598589659,-0.07467033714056,-0.022923542186618]],[[-0.098497159779072,0.00099909189157188,-0.012673039920628],[0.11170935630798,0.12897634506226,0.030900306999683],[0.062259346246719,-0.029928801581264,-0.06947398930788]],[[-0.043484598398209,0.012352895922959,0.02361479587853],[0.13471546769142,-0.019422885030508,-0.040620923042297],[0.0028175082989037,-0.025311481207609,-0.031587831676006]],[[0.059005372226238,0.053156562149525,-0.014680188149214],[-0.013813393190503,-0.01065198238939,0.1043476909399],[-0.0033396368380636,0.027114685624838,0.007977039553225]],[[-0.15939885377884,-0.031770080327988,-0.0035631072241813],[-0.047665301710367,0.095485851168633,0.046050820499659],[0.002272286452353,-0.046373214572668,-0.01506563834846]],[[0.017994340509176,-0.030458450317383,-0.037298887968063],[0.075741276144981,-0.036605712026358,-0.11773920804262],[0.021615527570248,0.049095887690783,0.12874484062195]],[[-0.055067852139473,-0.055382318794727,0.069215387105942],[-0.059328302741051,0.0059994226321578,0.10950869321823],[-0.0045570568181574,0.023505307734013,0.058479212224483]],[[-0.10606723278761,-0.062507770955563,-0.063342578709126],[-0.033145435154438,-0.053807787597179,0.047629501670599],[-0.013854835182428,-0.02201703377068,-0.024584831669927]],[[-0.13976910710335,-0.12827889621258,-0.054578542709351],[-0.049500860273838,0.1982059776783,-0.10273943841457],[0.064040325582027,0.1175394654274,-0.10384953767061]],[[-0.25418829917908,-0.13675709068775,-0.10587560385466],[0.060549050569534,0.046332120895386,0.0095542902126908],[-0.050106022506952,-0.064231157302856,0.0014074244536459]],[[-0.094590656459332,-0.074224308133125,-0.039746943861246],[0.084348373115063,0.034848921000957,-0.060341954231262],[-0.0033045234158635,0.034763135015965,0.027934823185205]],[[-0.019604412838817,0.00105137785431,0.08068235963583],[0.01995961740613,0.030947539955378,-0.03010818362236],[-0.12945021688938,0.03419453650713,0.085669130086899]],[[0.09640746563673,0.0036231367848814,0.042682718485594],[-0.0058019873686135,-0.065870493650436,0.046360053122044],[-0.0046187052503228,0.065344616770744,0.027421344071627]],[[0.07793004065752,-0.057820122689009,-0.047459091991186],[0.085680648684502,-0.022498842328787,0.10602337867022],[-0.081168621778488,0.058398403227329,0.11884719133377]],[[-0.014224307611585,-0.027755107730627,-0.032093215733767],[0.037600465118885,-0.0024680155329406,-0.012002606876194],[-0.11461532115936,-0.045965250581503,0.054379284381866]],[[0.007484647911042,-0.0098798368126154,0.043815955519676],[-0.044696446508169,-0.091357499361038,-0.053469456732273],[0.043218638747931,-0.04273508861661,-0.05446806922555]],[[0.070756681263447,0.034297399222851,0.071304202079773],[0.024719739332795,0.017654350027442,0.017591316252947],[0.0016408553346992,0.00095473299734294,-0.030043227598071]],[[0.011842983774841,0.016631511971354,0.042133703827858],[-0.025681147351861,0.022062169387937,0.021871017292142],[-0.095539592206478,-0.021938985213637,0.07059346139431]],[[0.021566584706306,0.020130084827542,-0.05684432387352],[-0.011323279701173,0.032789587974548,-0.0341189019382],[0.038147501647472,-0.079015284776688,0.014071568846703]],[[0.045414060354233,0.036579269915819,-0.11065366864204],[-0.043513815850019,0.0079082250595093,0.042617287486792],[0.01940506696701,-0.07048986107111,-0.042681269347668]],[[0.014391222037375,-0.077585406601429,-0.085926897823811],[-0.11321108043194,-0.029674377292395,-0.07355260103941],[0.071982860565186,0.071366205811501,0.010755819268525]],[[-0.012394225224853,-0.11992174386978,0.011208678595722],[0.052737765014172,0.049077861011028,0.02006446942687],[0.0070106838829815,-0.018153924494982,-0.003038095543161]],[[-0.0062231691554189,-0.11312332004309,-0.015317682176828],[-0.077873945236206,-0.005119273904711,0.028915163129568],[0.1126451715827,0.082403607666492,0.037513043731451]],[[-0.04308158159256,0.0087140686810017,-0.050177719444036],[0.0014195455005392,0.01707680337131,-0.053625106811523],[0.015785247087479,0.025584544986486,0.081661127507687]],[[-0.05428659170866,0.051688753068447,0.034059219062328],[0.030423875898123,0.0027734232135117,-0.033397380262613],[-0.026715440675616,-0.034926597028971,-0.0029200315475464]],[[0.022580439224839,-0.056183107197285,0.0053796009160578],[-0.0069670495577157,0.008419874124229,-0.027467042207718],[-0.010340177454054,-0.086618065834045,-0.024741681292653]],[[-0.07365494966507,0.045606356114149,-0.010864392854273],[-0.054507024586201,-0.10995963960886,-0.0013811513781548],[0.044720787554979,-0.056435395032167,0.0088830525055528]],[[-0.053386658430099,0.037222530692816,0.045511212199926],[-0.063954219222069,-0.11419708281755,0.059399634599686],[0.013581656850874,-0.089406229555607,0.10063590854406]],[[-0.05505196005106,-0.046073418110609,0.075147107243538],[0.047093689441681,0.038929454982281,0.023555260151625],[-0.052115306258202,-0.077334575355053,-0.044576361775398]],[[0.085342660546303,0.034576654434204,-0.070656649768353],[-0.13549926877022,0.055804673582315,0.028118954971433],[-0.038268379867077,0.022446267306805,0.07500808686018]],[[0.049832344055176,-0.042406369000673,-0.052399523556232],[0.034426897764206,-0.028446163982153,0.00064250425202772],[-0.024709418416023,-0.019688470289111,-0.061555996537209]],[[-0.031289804726839,0.050047121942043,0.013879886828363],[-0.088254496455193,-0.093012675642967,-0.045682586729527],[-0.0062747290357947,-0.026143319904804,-0.019102552905679]],[[0.018161699175835,0.0087326988577843,-0.040871877223253],[-0.058089423924685,0.00075242377351969,-0.0011992600047961],[-0.033728893846273,0.048648670315742,-0.0042907032184303]],[[0.11567801982164,0.054826185107231,-0.03347672149539],[0.070582687854767,0.059570945799351,-0.0020642743911594],[0.068370699882507,0.1356593221426,0.13268613815308]],[[0.047540135681629,0.10512702167034,-0.013024558313191],[0.061386123299599,-0.02296382561326,0.0077160261571407],[0.048866018652916,0.11814122647047,0.098805867135525]],[[-0.094772383570671,0.06720757484436,0.076578058302402],[-0.035479616373777,-0.028660854324698,-0.03818640857935],[0.078088574111462,-0.11571060866117,-0.050440859049559]],[[0.015736984089017,0.047011736780405,-0.014068132266402],[0.082415945827961,0.032715085893869,-0.038785167038441],[-0.020359843969345,-0.015910755842924,-0.029133504256606]],[[0.063151217997074,0.024235563352704,0.034110620617867],[0.032290533185005,-0.040234606713057,-0.048394128680229],[-0.028324004262686,-0.0071121812798083,0.067139945924282]],[[0.063365191221237,0.01038795337081,-0.042678594589233],[0.036388341337442,-0.045015934854746,-0.016605079174042],[-0.0089134704321623,-0.02884672023356,0.038692552596331]],[[-0.041878927499056,0.013119503855705,0.023825535550714],[-0.057805147022009,-0.0098318122327328,-0.027066022157669],[0.14600004255772,0.016096830368042,-0.007297707721591]],[[0.020289193838835,-0.058476753532887,-0.00021874238154851],[-0.0063916565850377,0.023113841190934,0.083718009293079],[-0.13833647966385,-0.069108262658119,0.0014595765387639]],[[-0.022170281037688,-0.085369758307934,0.0051897284574807],[0.070701204240322,-0.039402667433023,0.030163520947099],[-0.058771781623363,-0.076028056442738,0.0013497584732249]]],[[[-0.057399976998568,0.031377382576466,0.071011446416378],[0.016567932441831,0.017293242737651,-0.010923183523118],[-0.016832761466503,-0.027454126626253,-0.0043145422823727]],[[0.040122393518686,0.017306718975306,0.032927941530943],[-0.029990153387189,-0.014263838529587,0.037858054041862],[-0.052712090313435,0.036847647279501,0.08857150375843]],[[-0.032829258590937,0.054843574762344,-0.025302583351731],[-0.05958790704608,-0.037692729383707,-0.0055126706138253],[0.0056359199807048,0.070365011692047,0.00050827593076974]],[[-0.067105107009411,-0.006451865658164,-0.025891615077853],[-0.0043774032965302,0.037771228700876,-0.048911798745394],[0.032783936709166,-0.067242607474327,0.020255533978343]],[[0.0033600095193833,-0.022610757499933,-0.022772416472435],[0.0084814233705401,-0.017398789525032,-0.039779908955097],[0.030980782583356,0.03511967509985,-0.018423058092594]],[[-0.08394318073988,0.0038316370919347,-0.0010694336378947],[-0.0079572163522243,-0.087989702820778,-0.069915652275085],[-0.039822306483984,0.11358840018511,0.053934633731842]],[[-0.061704311519861,0.0080997096374631,0.0092788264155388],[0.01340293046087,-0.0031121450010687,0.038913991302252],[-0.001802391721867,0.086925327777863,-0.049311466515064]],[[-0.024057911708951,0.060630425810814,0.037835754454136],[-0.0034673237241805,-0.022433472797275,-0.01488883420825],[-0.025356693193316,0.01258784532547,-0.00069684587651864]],[[0.014780982397497,0.062099039554596,0.018110029399395],[-0.005984858609736,-0.0040616802871227,-0.004051161929965],[-0.084842912852764,-0.0099742766469717,0.076970495283604]],[[0.027676977217197,0.035551760345697,-0.062736324965954],[0.046964552253485,-0.052550382912159,-0.028589673340321],[-0.024143017828465,-0.04971494525671,0.022210823372006]],[[0.075028315186501,-0.012034022249281,0.02012218721211],[-0.090210884809494,0.041289854794741,0.034109406173229],[-0.012350438162684,-0.05061687156558,0.0090210800990462]],[[0.004980206489563,0.011490535922348,-0.0052180434577167],[-0.0046104122884572,0.013429894112051,-0.066051006317139],[0.037200786173344,-0.052143350243568,0.0042084190063179]],[[-0.011057587340474,0.010145870968699,0.012160143814981],[-0.00042152739479207,0.080133184790611,-0.023473292589188],[-0.087729714810848,0.0024660031776875,-0.099543526768684]],[[0.069766834378242,-0.054982099682093,0.028033457696438],[-0.045038513839245,-0.11744628101587,0.051506791263819],[0.024495102465153,-0.021780585870147,0.053927898406982]],[[0.097918272018433,0.022457037121058,-0.014845975674689],[-0.033230058848858,0.044521514326334,0.061385799199343],[-0.10296078026295,0.034819696098566,0.037987943738699]],[[-0.0054992004297674,-0.057827685028315,-0.0091551598161459],[0.04953008890152,0.090349346399307,-0.064446672797203],[-0.020478127524257,0.031328026205301,-0.017275193706155]],[[-0.001192290452309,-0.086359120905399,-0.020616583526134],[0.0058173793368042,0.022074174135923,0.019004145637155],[-0.010159684345126,0.053824312984943,0.078595623373985]],[[0.034121509641409,0.030529264360666,-0.07011853903532],[-0.028186501935124,0.0086599281057715,0.031261961907148],[-0.036549437791109,0.0091666914522648,0.02167184650898]],[[0.0038388988468796,0.023427646607161,0.044347047805786],[0.019635297358036,-0.0066369688138366,-0.054659958928823],[0.037161216139793,-0.061568774282932,0.05709046125412]],[[-0.011811689473689,0.0071068606339395,0.059468254446983],[-0.012155969627202,-0.060913242399693,0.032562606036663],[0.042268618941307,-0.012597480788827,-0.019547108560801]],[[-0.014398970641196,0.063427783548832,-0.02366915345192],[-0.053957115858793,0.099598929286003,0.0058661811053753],[0.0019235257059336,-0.11107707023621,-0.0024492926895618]],[[-0.046363834291697,0.038044951856136,0.059263683855534],[-0.026734076440334,-0.028496580198407,-0.047801245003939],[0.058426722884178,-0.012523209676147,-0.0069542904384434]],[[-0.0040534944273531,-0.058009546250105,0.043638341128826],[-0.010891857556999,0.037195958197117,-0.027275824919343],[-0.053567226976156,-0.018451683223248,0.037790473550558]],[[-0.027812581509352,0.046832870692015,-0.019517742097378],[0.041562605649233,0.067378275096416,-0.058190122246742],[-0.040181864053011,0.033583998680115,-0.045664697885513]],[[0.012320040725172,-0.014311927370727,0.034977704286575],[0.015198263339698,-0.027008395642042,-0.066714182496071],[-0.044041004031897,-0.027809783816338,0.074576757848263]],[[0.032819762825966,-0.034630309790373,-0.043275769799948],[0.0032631792128086,0.0078783184289932,0.047585189342499],[-0.034114759415388,-0.042133770883083,0.043048854917288]],[[0.016337418928742,-0.07741167396307,0.0079917991533875],[0.023844482377172,0.021224115043879,-0.027127647772431],[0.0024207613896579,-0.047647703438997,0.021886536851525]],[[0.053721785545349,0.045035790652037,0.0020448751747608],[-0.043522860854864,-0.023197922855616,0.036737192422152],[0.048092398792505,-0.03280395641923,-0.0036813446786255]],[[-0.010268018580973,-0.065452583134174,-0.020565878599882],[-0.030400248244405,-0.063694536685944,0.011019674129784],[-0.03553843870759,0.01507303211838,0.084859669208527]],[[-0.066884234547615,0.017717652022839,0.032917127013206],[0.006543408613652,-0.078854337334633,-0.013462343253195],[0.029503785073757,-0.045264784246683,0.025644497945905]],[[0.0088030723854899,-0.012849771417677,-0.099370300769806],[-0.044056188315153,0.033176656812429,0.020821219310164],[-0.0078530022874475,0.018220312893391,-0.028927348554134]],[[0.041529409587383,-0.062703318893909,0.0010078811319545],[0.071090556681156,0.0096024964004755,-0.075264297425747],[0.041607163846493,-0.03762860968709,0.034685656428337]],[[-0.025973625481129,0.019613033160567,0.05846469476819],[-0.021674139425159,-0.0047261100262403,-0.067703172564507],[0.01502831839025,0.0056816549040377,-0.10147403180599]],[[0.036697067320347,-0.018516277894378,0.014342459850013],[0.02093100361526,-0.075567357242107,-0.041348110884428],[-0.065996997058392,-0.0045304247178137,0.027488023042679]],[[-0.0098669305443764,-0.011969771236181,0.032468970865011],[-0.014216946437955,0.10161908715963,-0.018390389159322],[-0.029633287340403,-0.0046883332543075,-0.025263598188758]],[[-0.038400676101446,-0.070026442408562,0.089749872684479],[-0.090248890221119,0.076069384813309,0.0039179469458759],[-0.03598627448082,0.055197168141603,0.010650628246367]],[[-0.0087407054379582,0.01754173822701,-0.020344097167253],[-0.033661831170321,-0.028304060921073,-0.024970768019557],[-0.033464699983597,0.047454543411732,-0.013861166313291]],[[-0.031810946762562,-0.027498092502356,0.055808752775192],[0.025097098201513,-0.036053773015738,-0.02988669835031],[0.0085800299420953,-0.058993194252253,0.0038624301087111]],[[0.011178622953594,0.087616637349129,-0.020429059863091],[0.028322529047728,0.017712457105517,0.022931715473533],[-0.006190799176693,-0.012893553823233,0.035487975925207]],[[0.017919357866049,-0.013237146660686,0.080342233181],[0.0017153593944386,0.0047882255166769,-0.016621563583612],[-0.024509871378541,-0.064102463424206,0.067633233964443]],[[0.041010566055775,0.013722599484026,0.039894800633192],[0.05898167565465,-0.039260055869818,0.020770229399204],[0.0061469622887671,0.013835266232491,-0.054838705807924]],[[0.025701990351081,0.037633243948221,-0.029144085943699],[0.044699903577566,-0.021237319335341,-0.0070467521436512],[0.02757409773767,-0.048971608281136,-0.016089091077447]],[[-0.0057588182389736,-0.011990014463663,-0.058481805026531],[0.040767405182123,-0.013476589694619,0.018814068287611],[-0.0093593699857593,0.014379411004484,0.029445234686136]],[[0.076747603714466,0.042716067284346,-0.014396840706468],[0.11415089666843,-0.019662177190185,0.093801476061344],[-0.024732911959291,0.0054975906386971,-0.0455950088799]],[[0.018812544643879,0.040474992245436,0.034204352647066],[-0.040057882666588,0.0011147682089359,0.070684820413589],[-0.071062974631786,0.058986414223909,0.0097460839897394]],[[-0.078430473804474,0.048990346491337,0.042953416705132],[-0.043829068541527,0.031960483640432,0.020613888278604],[0.010981578379869,0.12557856738567,0.0039952956140041]],[[0.01445406768471,0.040608190000057,-0.032106917351484],[-0.047431368380785,0.014800431206822,-0.027452636510134],[-0.033944003283978,-0.040495190769434,-0.059831030666828]],[[0.042712569236755,0.021157724782825,-0.042512476444244],[0.010370017960668,0.037406098097563,-0.011819646693766],[-0.021104216575623,0.027409851551056,-0.037296205759048]],[[-0.056172478944063,-0.011403142474592,-0.0010661364067346],[0.045511275529861,-0.023895617574453,0.065578922629356],[-0.062863953411579,-0.0036171893589199,-0.026073319837451]],[[-0.0013605082640424,-0.038173075765371,0.0067609292455018],[-0.036791037768126,0.051966521888971,-0.062580220401287],[0.052274957299232,0.067282490432262,0.015882695093751]],[[-0.020042736083269,0.038176994770765,-0.0090618673712015],[-0.0015824207803234,-0.084689453244209,0.015175119042397],[0.10494031012058,-0.041419982910156,-0.015427188016474]],[[-0.00011398040805943,-0.007815832272172,-0.0027408546302468],[-0.050287447869778,0.038940757513046,-0.027026902884245],[-0.020238194614649,0.050359051674604,0.040130037814379]],[[-0.033426325768232,0.032747067511082,0.020326446741819],[0.037923652678728,0.11856025457382,0.028643783181906],[0.051542937755585,0.060785971581936,0.066614292562008]],[[-0.0067127859219909,0.11719158291817,-0.0037293278146535],[0.0078850891441107,0.036069720983505,0.01546364929527],[0.015298845246434,0.082326143980026,0.0086742788553238]],[[0.018497599288821,0.056375674903393,-0.011555621400476],[0.005579000338912,0.061884053051472,-0.034834127873182],[0.0048391683958471,-0.0047198492102325,-0.053289480507374]],[[-0.0096205519512296,0.032993707805872,0.01831965893507],[0.039259050041437,0.047382842749357,-0.031742550432682],[0.0089726522564888,0.075518749654293,-0.019421566277742]],[[-0.022916479036212,-0.018818626180291,0.028559193015099],[-0.028293989598751,-0.040081702172756,0.080278910696507],[0.030925642699003,0.068082377314568,-0.014055972918868]],[[-0.015367621555924,-0.076665937900543,0.02872403524816],[0.0098820216953754,-0.03548551723361,0.036937963217497],[-1.303838507738e-05,-0.027419397607446,-0.066535905003548]],[[-0.035289879888296,-0.017268681898713,-0.067139528691769],[-0.086707524955273,0.007395704742521,-0.032061144709587],[0.036089036613703,-0.084379322826862,0.047600790858269]],[[-0.011248530820012,0.052413828670979,0.034815307706594],[-0.035605452954769,-0.028728771954775,0.10714508593082],[-0.0028220245148987,0.023047108203173,0.090415425598621]],[[-0.068276949226856,-0.039007518440485,0.018744161352515],[0.02313657104969,0.021423205733299,-0.015582519583404],[0.052937220782042,-0.013009141199291,-0.024287885054946]],[[-0.020887680351734,0.016603965312243,0.025906255468726],[-0.020819921046495,0.048514004796743,-0.0040737856179476],[0.0010152974864468,-0.078194662928581,-0.054748725146055]],[[-0.01831902936101,-0.0053879907354712,-0.010182062163949],[0.02154878526926,0.051978923380375,-0.024508243426681],[0.012202505022287,-0.033045429736376,0.028906190767884]],[[-0.0039257509633899,-0.084816224873066,-0.020024627447128],[0.0072843278758228,-0.043518342077732,0.013024593703449],[0.0023646871559322,0.025466047227383,-0.031990427523851]],[[-0.015118410810828,-0.06585381925106,0.014336087740958],[-0.078969769179821,0.027342466637492,0.015235062688589],[-0.035797100514174,0.0921630859375,-0.048660974949598]],[[0.042190603911877,-0.050693619996309,-0.04929568246007],[-0.0031922846101224,0.016023462638259,-0.015385481528938],[0.028374098241329,0.013525885529816,-0.0063700554892421]],[[0.04021142795682,0.010542118921876,0.10086544603109],[0.03204808011651,-0.033117059618235,-0.032926496118307],[-0.021426133811474,-0.044458977878094,-0.0061288885772228]],[[0.0038446041289717,-0.021909900009632,-0.041549775749445],[-0.0048121083527803,-0.016552995890379,0.019182132557034],[-0.032393414527178,0.044407110661268,-0.01751347258687]],[[-0.00066648947540671,0.023659180849791,0.00043108846875839],[0.083729438483715,0.033365916460752,-0.087713196873665],[0.017864694818854,0.041696116328239,-0.039538010954857]],[[0.031052833423018,-0.020308081060648,-0.0045283515937626],[-0.03065299987793,0.10818812996149,0.05711455270648],[0.0060460516251624,0.017541721463203,-0.03594559431076]],[[0.036614533513784,0.021827949211001,-0.072204440832138],[0.017617404460907,0.015212868340313,0.066618591547012],[-0.02582174167037,0.034097481518984,0.053682625293732]],[[-0.011737736873329,0.013017624616623,0.023702310398221],[-0.003849171102047,0.07659424841404,-0.0056963982060552],[-0.036166474223137,-0.015022551640868,0.067090265452862]],[[-0.0073464792221785,-0.080450259149075,-0.019546130672097],[-0.073561258614063,-0.069121435284615,0.032491058111191],[-0.084445767104626,0.06020737811923,0.036244474351406]],[[0.029156889766455,0.0014196180272847,-0.089887000620365],[-0.061296295374632,0.034507468342781,0.013733044266701],[0.0043682660907507,-0.096687182784081,0.038188308477402]],[[-0.020439630374312,-0.060811530798674,-0.011829511262476],[-0.0083659291267395,0.052040636539459,0.0023077584337443],[0.031831882894039,0.06910914182663,0.0083169685676694]],[[0.050434164702892,-0.017495896667242,-0.054788798093796],[-0.016662709414959,0.047397494316101,-0.035564497113228],[0.031473908573389,-0.023274114355445,-0.034146096557379]],[[0.026442494243383,-0.01041282620281,0.0068556442856789],[-0.0085363909602165,-0.018848940730095,-0.0033423723652959],[-0.015257590450346,0.0056646349839866,-0.046901699155569]],[[0.025700200349092,0.01741898432374,-0.043561477214098],[0.05238301306963,0.038554914295673,0.037150003015995],[-0.061520118266344,0.05328157171607,-0.043621074408293]],[[0.10597310215235,0.01307004224509,-0.012910650111735],[-0.064690686762333,0.07321348041296,-0.097770310938358],[-0.039387602359056,0.0053393268026412,-0.056605435907841]],[[-0.016008788719773,-0.041390363126993,0.064838007092476],[0.010313460603356,-0.0031190933659673,-0.041124559938908],[-0.0095408577471972,0.054013755172491,0.0036479246336967]],[[0.0054459301754832,-0.026364795863628,0.04420306161046],[-0.019594214856625,0.012555827386677,0.02353055588901],[-0.029557280242443,0.062393579632044,-0.081035651266575]],[[-0.015228307805955,0.045838207006454,0.040580406785011],[-0.089744068682194,-0.016664434224367,0.04827544465661],[0.034401699900627,-0.013311959803104,0.0085550053045154]],[[-0.030683683231473,-0.043600734323263,-0.0055858287960291],[-0.072771325707436,0.049141343683004,0.048760425299406],[-0.0027772444300354,-0.012148212641478,0.00052389217307791]],[[0.036369629204273,-0.11340042203665,-0.0086765270680189],[-0.016880426555872,-0.027738142758608,0.0078983642160892],[-0.0061762011609972,-0.017501965165138,0.001646877033636]],[[0.054127722978592,-0.022169293835759,-0.0071943909861147],[-0.026464398950338,0.0046145850792527,0.043185215443373],[0.0542813539505,0.056186012923717,-0.036964740604162]],[[-0.058556154370308,0.012073488906026,-0.018869280815125],[0.0058296453207731,-0.030837727710605,0.044216830283403],[0.079886384308338,-0.022788586094975,0.030450457707047]],[[0.0031917346641421,0.055775430053473,0.020416203886271],[0.00042504561133683,0.023309074342251,-0.032198052853346],[-0.075399093329906,0.023103134706616,0.031578090041876]],[[0.015533139929175,-0.01083050109446,-0.010107018984854],[0.05155112221837,-0.019235529005527,0.0031365882605314],[-0.015592346899211,-0.039609782397747,-0.014804674312472]],[[-0.011923766694963,0.057772744446993,-0.026082644239068],[-0.061598390340805,0.037161391228437,0.04090341553092],[0.090919643640518,-0.0045931302011013,-0.12369476258755]],[[-0.062493599951267,0.0092972824349999,0.021294053643942],[-0.029608409851789,0.080660186707973,0.051067754626274],[0.012774536386132,0.039585024118423,0.019872929900885]],[[-0.088218055665493,-0.028689347207546,0.018373699858785],[-0.065059594810009,-0.021176867187023,0.05425687879324],[-0.046320490539074,-0.011075856164098,0.0049014515243471]],[[0.0056004892103374,-0.023240931332111,-0.063078857958317],[0.0037032684776932,0.019175617024302,0.025225883349776],[-0.0050815897993743,-0.03903378918767,0.010969541035593]],[[0.12797717750072,-0.10301112383604,-0.016797685995698],[-0.0062408810481429,0.064160063862801,-0.036823481321335],[-0.0082826605066657,0.0012333507183939,0.020965112373233]],[[-0.061165098100901,0.035212300717831,-0.024275681003928],[-0.032517217099667,-0.019074169918895,0.025391539558768],[-0.0035202063154429,0.020866783335805,-0.032392211258411]],[[0.10950639098883,0.00054897728841752,-0.032325383275747],[0.046812996268272,0.014233268797398,-0.061216589063406],[0.0094333533197641,-0.13350631296635,-0.035826038569212]],[[-0.023695720359683,-0.029837720096111,0.026622811332345],[-0.033494934439659,-0.026922496035695,0.06124011054635],[-0.075600661337376,0.029177576303482,0.034777645021677]],[[0.04006477817893,-0.0052548442035913,0.012255942448974],[0.022856438532472,0.049604412168264,-0.054675374180079],[-0.013394009321928,0.017884301021695,0.066407144069672]],[[0.010469444096088,-0.093394227325916,-0.038227267563343],[-0.056574854999781,-0.00020498549565673,-0.0077460338361561],[-0.0073030991479754,-0.044975906610489,0.065309807658195]],[[-0.029024921357632,0.047638393938541,-0.011838350445032],[0.0078942822292447,0.07866345345974,0.061319638043642],[0.011463349685073,0.0043686046265066,-0.051878616213799]],[[-0.0052591459825635,0.013534917496145,-0.038959704339504],[-0.0044590765610337,-0.052747596055269,0.022674525156617],[0.062874503433704,0.039967689663172,0.010654080659151]],[[-0.009511549025774,-0.098663054406643,0.014059566892684],[-0.01593304425478,0.02468940615654,0.011293269693851],[0.022201014682651,0.079935267567635,0.027633970603347]],[[0.0072311572730541,-0.074808776378632,0.0080898534506559],[-0.017089014872909,-0.015480465255678,-0.0107581326738],[0.021519707515836,-0.0063915285281837,0.094742380082607]],[[-0.060126222670078,0.0055616921745241,0.017591645941138],[0.008547461591661,-0.034009929746389,-0.0083284173160791],[-0.057959798723459,0.055837851017714,-0.071954257786274]],[[-0.05697975680232,-0.071273319423199,0.028153328225017],[0.032719854265451,-0.05434949696064,0.012107632122934],[0.055625081062317,-0.038589254021645,0.052885591983795]],[[-0.0047362404875457,-0.014673323370516,-0.0017298426246271],[0.063248470425606,-0.087156176567078,0.049119923263788],[-0.0032569959294051,-0.049369886517525,0.0585055090487]],[[0.021543068811297,-0.055594291538,0.022308338433504],[0.038915503770113,-0.0062639182433486,-0.056894037872553],[-0.03513028845191,0.023294674232602,0.036525022238493]],[[0.051274888217449,-0.031400974839926,-0.014407373033464],[-0.020905120298266,-0.0086916694417596,-0.0099115017801523],[0.026554703712463,-0.090859539806843,-0.030891869217157]],[[0.0072214496321976,-0.0077738268300891,0.022326136007905],[0.077480226755142,0.089659973978996,-0.034183960407972],[-0.031225709244609,-0.042152415961027,-0.022526288405061]],[[0.053345929831266,-0.04082927852869,-0.022947575896978],[-0.018345871940255,0.055057246237993,-0.0051075681112707],[0.012559121474624,-0.0046590031124651,-0.059646748006344]],[[0.01797186397016,0.018738962709904,-0.0030661155469716],[0.0059796986170113,-0.036569003015757,0.047826170921326],[0.0043405913747847,0.09960500895977,-0.028222279623151]],[[-0.034866597503424,-0.13701741397381,-0.056123144924641],[-0.005979108158499,-0.026081930845976,0.014946402981877],[-0.032389331609011,-0.023846378549933,-0.066608153283596]],[[-0.0084848897531629,0.003444712376222,-0.020313050597906],[-0.013143370859325,0.0038213701918721,-0.03546354547143],[-0.0045285257510841,0.047251228243113,-0.016283040866256]],[[0.023321745917201,0.02274720184505,0.0047980113886297],[-0.076245673000813,0.040735740214586,-0.039902478456497],[0.096695356070995,0.031662825495005,0.00038467918056995]],[[-0.042364601045847,0.020610990002751,-0.0013112424639985],[0.0095459027215838,-0.018172595649958,-0.011134460568428],[-0.058382116258144,0.035378195345402,0.025387160480022]],[[0.0019108414417133,-0.022976491600275,0.0036401473917067],[0.0065915849991143,0.0098662609234452,-0.082290641963482],[0.011595569550991,-0.04405539855361,0.073180191218853]],[[0.021612405776978,-0.017973624169827,-0.0012858791742474],[-0.030450658872724,0.019533555954695,0.012261739932001],[-0.03749381005764,0.049951422959566,0.02980293892324]],[[0.0033408873714507,-0.0042354092001915,0.012247115373611],[-0.023738533258438,0.013201404362917,0.026815883815289],[-0.0078819068148732,-0.03438875451684,0.016717894002795]],[[0.085433579981327,0.035798206925392,-0.0040393485687673],[0.061894174665213,-0.097707524895668,0.07863812148571],[-0.069099128246307,0.010613737627864,-0.046283610165119]],[[-0.10930965840816,0.023553820326924,0.0088378181681037],[-0.093738049268723,0.063290968537331,0.084920465946198],[-0.051875673234463,0.072026021778584,-0.0014747626846656]],[[-0.016346883028746,-0.012077541090548,0.028026839718223],[-0.027367187663913,-0.016278253868222,0.0049266805872321],[0.0087227141484618,-0.041644245386124,0.046441495418549]],[[-0.032249953597784,0.032925806939602,0.022406188771129],[-0.020379163324833,-0.078888759016991,0.057990770787001],[-0.01770350895822,0.070062629878521,0.047345161437988]],[[-0.043216556310654,0.0030795314814895,-0.10152319073677],[0.074051082134247,0.012136589735746,0.0073619950562716],[-0.019750863313675,-0.047222927212715,-0.017112733796239]],[[-0.030402371659875,-0.074450060725212,-0.025332102552056],[-0.084322668612003,0.022468278184533,-0.017100859433413],[0.024243738502264,-0.043085943907499,-0.042988434433937]],[[-0.025729477405548,0.016184179112315,-0.01139478571713],[0.0065349503420293,0.0061784139834344,-0.020623030140996],[0.036661148071289,0.064054325222969,-0.079959034919739]],[[-0.010814289562404,0.0013772018719465,-0.03200701251626],[-0.061865862458944,-0.032133389264345,-0.0084877014160156],[-0.029855759814382,0.053045388311148,0.0378752425313]],[[-0.02469103038311,0.060737263411283,0.016240451484919],[-0.016582714393735,0.029853673651814,0.022939855232835],[-0.0056372634135187,-0.030219743028283,0.021876012906432]],[[0.039815668016672,-0.044626642018557,-0.0053924107924104],[0.033237867057323,-0.020995868369937,-0.026574762538075],[-0.0029069571755826,0.0571169257164,-0.017958406358957]],[[0.016684003174305,0.057377487421036,0.0032979291863739],[-0.022714963182807,-0.00061582145281136,-0.039200235158205],[-0.029836239293218,-0.018236497417092,0.020854506641626]]],[[[0.0010796278947964,-0.085456863045692,-0.10715219378471],[0.074861161410809,0.070459492504597,-0.044390685856342],[0.046389825642109,0.04243478178978,0.083294354379177]],[[-0.056827258318663,-0.089266195893288,0.086761310696602],[0.089476674795151,0.093837715685368,0.068538226187229],[0.033789832144976,0.095858693122864,0.010581684298813]],[[0.095249518752098,0.03211771696806,0.040265504270792],[-0.079015970230103,-0.034739810973406,-0.015841986984015],[-0.061720132827759,0.036099810153246,0.027899933978915]],[[0.080541335046291,0.0053337197750807,0.023622330278158],[0.044769782572985,-0.010773493908346,-0.034441456198692],[0.040509637445211,-0.03732018917799,0.016659326851368]],[[0.0077341008000076,-0.061911683529615,0.079896003007889],[-0.020702138543129,-0.082061886787415,0.01051230635494],[0.074467778205872,0.073119312524796,-0.13519175350666]],[[0.012434378266335,0.069483175873756,0.012284797616303],[-0.047678727656603,-0.019115801900625,0.040606886148453],[-0.17346686124802,-0.05046546086669,0.034161623567343]],[[0.03682453930378,-0.043229311704636,0.037205711007118],[0.076622247695923,0.14320144057274,-0.11399826407433],[-0.043259143829346,-0.037977449595928,-0.060441210865974]],[[0.063471503555775,0.15736071765423,-0.0032512722536922],[-0.00073866645107046,0.049010939896107,0.089913442730904],[-0.10617239028215,-0.11044988036156,0.1104614213109]],[[-0.035767078399658,-0.040230724960566,0.079496748745441],[0.010505461134017,0.047376397997141,-0.094233147799969],[-0.014612047933042,0.00050171971088275,0.14979559183121]],[[-0.034557800740004,-0.056576948612928,0.12106732279062],[-0.062456667423248,-0.034568820148706,0.021296812221408],[0.037681892514229,-0.012600528076291,-0.048644229769707]],[[0.10931003838778,-0.015190991573036,0.10852229595184],[-0.0025876534637064,-0.041995625942945,0.10113164782524],[-0.12360644340515,-0.089526325464249,0.074610039591789]],[[0.11906146258116,-0.09008127450943,0.0020292333792895],[0.011681883595884,0.082949459552765,-0.001414623693563],[0.10815563797951,-0.013053829781711,0.15401412546635]],[[-0.011589537374675,-0.099642038345337,0.026031609624624],[0.050434246659279,-0.010123743675649,-0.07488390058279],[-0.10449463874102,0.049802083522081,-0.0073649599216878]],[[0.11882378160954,0.012730528600514,-0.12971146404743],[-0.072021782398224,-0.034697148948908,-0.10389380902052],[-0.0069551691412926,-0.093196205794811,-0.10246592015028]],[[0.050574537366629,0.11579582095146,-0.036504749208689],[0.047551121562719,-0.0080375289544463,-0.053529463708401],[-0.060606256127357,0.0031099263578653,0.0074515463784337]],[[0.11828450113535,-0.028779683634639,0.082194805145264],[0.011251931078732,-0.11139677464962,-0.00020015146583319],[0.021010337397456,0.038784801959991,-0.0051244860514998]],[[-0.027158202603459,-0.050351619720459,0.0083004590123892],[0.040623787790537,-0.058039542287588,0.019542790949345],[0.025976242497563,0.078433193266392,-0.0086796777322888]],[[-0.048004604876041,-0.0098793962970376,-0.035964582115412],[0.096601031720638,-0.043442785739899,-0.037576090544462],[-0.11717145889997,0.080603837966919,-0.068182922899723]],[[-0.033520247787237,-0.066799782216549,-0.02302135899663],[-0.0055699893273413,0.008678212761879,-0.042782235890627],[-0.074077092111111,0.12440873682499,-0.081660807132721]],[[0.071088306605816,-0.054139066487551,-0.040086399763823],[-0.065487928688526,-0.072019159793854,-0.059904597699642],[-0.042301405221224,0.014728283509612,0.051552023738623]],[[0.03894617035985,0.0028520084451884,-0.070024006068707],[-0.041044529527426,-0.041087429970503,0.0073107052594423],[0.044719010591507,-0.012799414806068,0.0047939084470272]],[[0.00073654641164467,-0.038844171911478,0.11954285204411],[-0.018430991098285,-0.09631621837616,0.16316412389278],[-0.028399920091033,-0.046684082597494,-0.015821225941181]],[[-0.06486077606678,-0.012819714844227,-0.051546208560467],[0.030852500349283,0.10619853436947,-0.0038017171900719],[0.0019836670253426,-0.044725734740496,-0.088313892483711]],[[-0.041119396686554,-0.11311788856983,-0.063154637813568],[0.060630839318037,0.01296822540462,-0.0270811971277],[-0.025163689628243,-0.021769531071186,0.093925036489964]],[[0.016708848997951,0.0049679251387715,0.030883714556694],[-0.0065510766580701,0.11446914076805,-0.087462522089481],[0.043790638446808,0.095120415091515,0.094410441815853]],[[0.001850760425441,0.021048976108432,-0.019133558496833],[-0.0055975564755499,-0.084009997546673,0.082159325480461],[0.027954811230302,-0.037724852561951,0.062973871827126]],[[-0.0046242694370449,0.040262941271067,-0.044503305107355],[0.055877242237329,0.027092520147562,0.025249356403947],[-0.11627947539091,0.00044692476512864,-0.034052602946758]],[[-0.2075239866972,0.080698408186436,-0.0046656555496156],[0.076124481856823,0.080023571848869,0.13871279358864],[0.04838677123189,-0.0074738790281117,0.16051022708416]],[[-0.13507668673992,-0.099185094237328,0.073240645229816],[-0.055926498025656,0.024582656100392,0.0015499601140618],[0.043183960020542,-0.019108556210995,-0.018915584310889]],[[-0.0038018776103854,-0.007424580398947,-0.063387759029865],[-0.08411867171526,-0.0091553553938866,0.10408252477646],[0.050197374075651,0.074388280510902,0.027716774493456]],[[-0.070873610675335,-0.074581161141396,0.012536068446934],[0.060961410403252,-0.09400799870491,0.13338160514832],[-0.03927057236433,-0.0091922944411635,0.048238880932331]],[[0.031736671924591,0.05482154712081,-0.14387103915215],[0.11253389716148,-0.06150471046567,-0.023079032078385],[0.15127699077129,-0.06299414485693,-0.012798664160073]],[[-0.18645004928112,-0.01701950468123,0.019306467846036],[0.015526964329183,0.058474570512772,-0.06086528673768],[-0.051275730133057,0.068808950483799,-0.10392263531685]],[[-0.053149193525314,0.070145592093468,0.12803423404694],[0.018095675855875,-0.059988666325808,0.0019009001553059],[0.083912342786789,0.010993195697665,-0.069783344864845]],[[-0.019745336845517,-0.055598892271519,-0.030173398554325],[0.081583626568317,0.003007325110957,-0.022690009325743],[0.019299078732729,-0.075432896614075,-0.002500151982531]],[[0.005166080314666,-0.024101477116346,0.040313802659512],[0.032535545527935,-0.010349256917834,-0.094155259430408],[-0.15215553343296,0.014461427927017,0.032350763678551]],[[-0.057444181293249,-0.065034210681915,-0.076817147433758],[-0.0065252184867859,-0.038318328559399,0.091968283057213],[-0.038387704640627,-0.014302203431726,0.10916575044394]],[[0.036803100258112,0.019204016774893,-0.076412096619606],[0.0047706342302263,0.039698485285044,0.13767187297344],[0.049193549901247,-0.059889324009418,-0.13275974988937]],[[-0.027869088575244,0.063309632241726,0.19224789738655],[-0.066823296248913,0.063063099980354,0.013784226030111],[0.045903068035841,0.038675978779793,-0.027867523953319]],[[-0.00066513515776023,-0.13015063107014,-0.016569463536143],[-0.0086320657283068,-0.059409260749817,0.038265887647867],[0.010386257432401,0.038741078227758,-0.091676466166973]],[[-0.0022655182983726,-0.056392949074507,-0.045840617269278],[0.0032001531217247,0.050831075757742,0.079379439353943],[0.10838931053877,0.028220307081938,0.029095837846398]],[[-0.099637344479561,-0.083088539540768,0.060130596160889],[0.041489344090223,0.072966821491718,-0.029420215636492],[0.0054100886918604,-0.053890351206064,-0.047209173440933]],[[-0.12050129473209,-0.093533791601658,-0.054424617439508],[-0.117550753057,-0.063603349030018,0.041841827332973],[-0.084737353026867,-0.032764311879873,-0.01799545250833]],[[0.0022932197898626,0.020156813785434,-0.0090439841151237],[-0.033741284161806,0.040041580796242,-0.044414393603802],[0.020215481519699,0.023110786452889,-0.0059483456425369]],[[-0.12244736403227,0.049987319856882,-0.097558215260506],[-0.10153486579657,-0.12027240544558,0.019801067188382],[0.063840620219707,0.032692905515432,-0.020587828010321]],[[0.062013078480959,-0.015819270163774,-0.083211466670036],[-0.029618017375469,-0.023884816095233,-0.016843024641275],[-0.016824932768941,0.077314682304859,-0.0041756960563362]],[[-0.14599977433681,0.030639130622149,-0.052099067717791],[-0.016448646783829,-0.012953110039234,0.0621722266078],[-0.014387041330338,-0.041901044547558,0.047722637653351]],[[0.037701942026615,0.037528913468122,-0.052811786532402],[-0.0066847912967205,-0.0077164052054286,-0.033348258584738],[-0.088973306119442,-0.12294100224972,0.010273579508066]],[[-0.15155450999737,0.018774075433612,-0.098322130739689],[-0.022960668429732,0.047768380492926,0.10628995299339],[0.049542468041182,-0.084298089146614,-0.078829601407051]],[[0.038185779005289,-0.035529538989067,-0.12600527703762],[0.011416674591601,-0.045517671853304,-0.023335574194789],[0.029060991480947,-0.054613314568996,0.013774412684143]],[[-0.010206905193627,-0.093262650072575,0.026144806295633],[0.13940532505512,0.0017929080640897,0.034785084426403],[-0.041050512343645,0.079802468419075,-0.081098556518555]],[[0.079960353672504,0.08548778295517,0.047393448650837],[0.14883027970791,0.019850142300129,-0.065860643982887],[0.023646216839552,-0.001907627331093,0.10604050010443]],[[0.018352378159761,0.030758043751121,0.0049510821700096],[0.014776209369302,0.051558822393417,0.0039781234227121],[-0.048825610429049,-0.024312632158399,-0.080544754862785]],[[0.054731480777264,-0.084215946495533,-0.038334004580975],[0.040219128131866,0.007694358471781,-0.015778489410877],[0.047012474387884,-0.060517188161612,-0.031025778502226]],[[0.11924672871828,-0.02784726396203,-0.12077010422945],[-0.021485446020961,0.069219626486301,-0.12410732358694],[-0.017187805846334,-0.030696429312229,0.0031808353960514]],[[-0.02458156272769,-0.021709596738219,-0.021815072745085],[-0.066732443869114,-0.052867982536554,0.027011452242732],[-0.091332770884037,-0.083719350397587,-0.068132527172565]],[[0.059204433113337,-0.097028166055679,-0.021078919991851],[-0.087708249688148,0.0084615871310234,0.078181110322475],[0.014264103025198,0.10044558346272,-0.13561584055424]],[[-0.052064899355173,-0.024962427094579,0.0038553702179343],[-0.12568338215351,0.077935762703419,0.03602847084403],[-0.016707750037313,-0.1010125502944,-0.11016300320625]],[[-0.037017051130533,0.047388602048159,-0.065259791910648],[-0.11163350939751,-0.073924779891968,0.019615607336164],[-0.026261225342751,-0.033418022096157,-0.076351635158062]],[[0.064775712788105,0.044613517820835,-0.094368554651737],[-0.05766025185585,0.074059419333935,-0.011795207858086],[-0.0083646532148123,0.042410578578711,0.022692615166306]],[[-0.050398677587509,-0.024381797760725,0.00082220102194697],[-0.046846035867929,-0.016985515132546,0.0087804514914751],[-0.048572719097137,-0.054407544434071,-0.012121087871492]],[[-0.068770691752434,-0.068245455622673,-0.13937935233116],[0.016966605558991,-0.051270361989737,-0.038317143917084],[-0.0027529711369425,-0.011134287342429,0.14867562055588]],[[0.15294733643532,0.035683013498783,-0.0077007026411593],[-0.0078378319740295,0.044319938868284,-0.063502468168736],[0.020624365657568,-0.069548234343529,0.090219661593437]],[[-0.041628908365965,0.15958924591541,0.11221898347139],[0.11163138598204,0.074901916086674,-0.069342650473118],[0.073824055492878,0.010472923517227,0.084742158651352]],[[0.060681834816933,-0.011077092029154,0.099676996469498],[-0.032415203750134,-0.090603552758694,-0.022087726742029],[0.024886241182685,-0.03610947355628,-0.099897034466267]],[[-0.10876502841711,0.046315919607878,0.0023279821034521],[-0.104646474123,0.13618378341198,0.0054669273085892],[-0.071949653327465,0.0017794281011447,-0.019612208008766]],[[-0.019162407144904,-0.036510970443487,0.025809211656451],[0.032502550631762,0.016158724203706,-0.017321163788438],[-0.0097770877182484,0.019213369116187,-0.009072876535356]],[[-0.12774100899696,0.018463918939233,0.10771486908197],[-0.014069688506424,0.033147193491459,-0.052252434194088],[-0.093805246055126,-0.026807015761733,-0.065620794892311]],[[0.034338049590588,0.014717751182616,-0.031077342107892],[-0.08389950543642,0.060480993241072,-0.071848422288895],[-0.088354304432869,-0.012614538893104,-0.012739610858262]],[[0.00023151162895374,-0.015479293651879,0.01934826374054],[0.016695819795132,0.072526194155216,0.0050336956046522],[-0.025571094825864,0.053050126880407,-0.041727222502232]],[[0.03477456048131,-0.0025509663391858,-0.065358176827431],[-0.060071934014559,0.053000215440989,0.087534084916115],[0.0076037822291255,-0.1150311306119,0.11182763427496]],[[0.013213478028774,0.074903815984726,0.08885595202446],[-0.092228263616562,-0.071993224322796,-0.062277723103762],[-0.00016204988060053,0.034966316074133,0.056801594793797]],[[0.024240974336863,0.055792097002268,0.08976523578167],[0.029797084629536,-0.02676977775991,0.058559209108353],[0.016572434455156,-0.062517054378986,-0.030490687116981]],[[-0.062008026987314,-0.075819574296474,0.10364283621311],[-0.026939479634166,-0.02777330763638,0.048291355371475],[0.0096002528443933,0.03313871845603,-0.055661864578724]],[[0.076128341257572,-0.048909600824118,-0.027919713407755],[0.022623289376497,0.021814996376634,0.062489330768585],[0.050586402416229,-0.031464703381062,0.034976024180651]],[[0.070460893213749,0.05841314420104,-0.08633130043745],[-0.019784964621067,-0.045165546238422,-0.013963120058179],[-0.029579795897007,-0.00019375476404093,-0.041201714426279]],[[-0.091287277638912,-0.11012402176857,-0.085019625723362],[0.090122126042843,0.022372322157025,0.066046856343746],[-0.077636040747166,0.028352398425341,0.027282070368528]],[[-0.021883739158511,0.022329980507493,0.021714536473155],[0.075278766453266,-0.022799357771873,-0.099264293909073],[0.11146166920662,-0.12724992632866,0.016365773975849]],[[-0.11766674369574,0.10335183888674,0.01957356184721],[-0.020172560587525,0.13753889501095,0.083152107894421],[0.13538330793381,-0.035465382039547,-0.028876673430204]],[[0.11581394821405,-0.039016358554363,0.020464155822992],[0.023882776498795,0.049194525927305,-0.022894823923707],[-0.034553863108158,-0.063128761947155,-0.013856212608516]],[[0.077659122645855,0.016268979758024,0.098245695233345],[0.032723374664783,-0.094330206513405,-0.042044475674629],[-0.092688784003258,0.07563728094101,0.082843661308289]],[[0.054269507527351,-0.0037817440461367,0.11041821539402],[-0.032974269241095,-0.12629333138466,-0.086017847061157],[-0.069485060870647,0.063730210065842,0.19018302857876]],[[-0.015426278114319,0.07717490196228,0.18394187092781],[-0.059812378138304,-0.12913607060909,0.06521350890398],[-0.022412557154894,0.015291050076485,-0.024952713400126]],[[-0.06268598139286,0.006473480258137,-0.011323738843203],[0.028440846130252,-0.066696420311928,-0.030614092946053],[-0.022107288241386,-0.022498769685626,-0.11619903147221]],[[-0.10488053411245,-0.067991480231285,0.012347117066383],[-0.096846967935562,0.12048482149839,0.093932054936886],[0.029434502124786,0.10912140458822,-0.087476782500744]],[[0.0094421729445457,0.0037526243831962,-0.10520397126675],[-0.04786029458046,-0.082768268883228,-0.0067399321123958],[0.037522550672293,-0.0042193699628115,0.050395738333464]],[[0.048045270144939,-0.030470943078399,0.081558801233768],[0.11380667239428,-0.048326697200537,0.045720051974058],[-0.032743733376265,0.016393667086959,0.056795675307512]],[[0.004213840700686,0.032803632318974,-0.068486362695694],[0.15711386501789,0.058269076049328,-0.054019149392843],[0.019133133813739,-0.01624540053308,-0.063033618032932]],[[-0.0082693044096231,0.020795926451683,0.034178733825684],[-0.15951146185398,-0.068426452577114,-0.020427197217941],[0.014581781812012,0.12965998053551,-0.088393300771713]],[[-0.0927799269557,-0.048638101667166,-0.0056847427040339],[0.10322639346123,-0.024122219532728,0.10692499577999],[-0.0046933866105974,0.087245211005211,0.015126577578485]],[[-0.011207804083824,-0.051544610410929,0.015589143149555],[0.10268406569958,0.082491241395473,0.04310342296958],[-0.004605368245393,0.066634058952332,0.064034380018711]],[[-0.1240304633975,-0.11184798181057,0.10274799913168],[-0.078272566199303,-0.016831601038575,-0.070482559502125],[0.087572157382965,-0.011796662583947,-0.11470024287701]],[[-0.012198529206216,-0.012499104253948,0.04139981418848],[-0.028693391010165,0.0031495720613748,0.012395136989653],[-0.052766047418118,0.039969649165869,0.016226107254624]],[[-0.069955915212631,-0.15227617323399,-0.017298022285104],[0.012095710262656,0.0041165160946548,0.053678154945374],[0.0051755905151367,-0.040656838566065,-0.021826606243849]],[[-0.031542621552944,0.063670128583908,-0.085574939846992],[0.079758286476135,-0.077804699540138,-0.080378450453281],[0.10592767596245,0.016881581395864,-0.079663202166557]],[[-0.0044991378672421,-0.014296818524599,-0.060632441192865],[-0.073864281177521,0.058781694620848,-0.16651783883572],[-0.015736756846309,0.036786418408155,-0.034890197217464]],[[-0.072512090206146,0.025356775149703,-0.075508147478104],[0.028249341994524,0.031885076314211,0.048971552401781],[0.0071122040972114,-0.047166105359793,0.019093293696642]],[[-0.12097460776567,0.10596729069948,0.071939669549465],[-0.026930429041386,0.04191342741251,-0.016797790303826],[-0.070678494870663,0.053667291998863,-0.021517489105463]],[[-0.062747724354267,-0.036110807210207,0.024503666907549],[-0.048992227762938,-0.039334360510111,-0.007970055565238],[-0.033768601715565,0.1858397424221,-0.095881938934326]],[[0.0286810323596,0.04238086938858,0.031685367226601],[-0.066636838018894,-0.033034086227417,0.079092286527157],[-0.075637333095074,-0.078342601656914,-0.072970174252987]],[[-0.013219292275608,0.14094583690166,0.026410166174173],[0.088888257741928,0.079435378313065,-0.007693441119045],[0.13148830831051,-0.073220886290073,0.018999176099896]],[[-0.03987655416131,0.10768410563469,0.053505137562752],[-0.03983573243022,-0.05354218930006,-0.021918697282672],[-0.016104098409414,-0.10273175686598,-0.057209085673094]],[[0.044579766690731,-0.053800337016582,-0.049268271774054],[-0.00981405377388,0.0041755079291761,0.06160020455718],[-0.0044117146171629,0.016097076237202,-0.075352050364017]],[[-0.053091697394848,-0.12012489885092,-0.042881511151791],[-0.098699621856213,0.089367486536503,0.0036304963286966],[-0.017005849629641,0.026365801692009,0.10278259217739]],[[0.047144893556833,-0.06558171659708,0.036702044308186],[0.031728375703096,-0.016378749161959,0.053757876157761],[-0.089885503053665,-0.019770668819547,0.0086397007107735]],[[0.0070011503994465,0.074879169464111,0.0040459325537086],[-0.033126588910818,-0.10540896654129,-0.0032130186446011],[0.087121270596981,0.0058558718301356,-0.016817107796669]],[[-0.046777710318565,0.00622822297737,-0.092932090163231],[-0.016637993976474,-0.05250982567668,0.049504157155752],[0.067768573760986,-0.09704177826643,0.048920225352049]],[[0.0030524246394634,-0.03187869861722,0.020430848002434],[0.077506773173809,0.15310600399971,0.18808798491955],[0.038921449333429,0.11117298901081,0.006661799736321]],[[-0.076396554708481,0.014571361243725,0.0091435760259628],[0.22212754189968,-0.13423019647598,-0.066712625324726],[0.17268393933773,-0.038681756705046,0.074915416538715]],[[-0.0010003021452576,0.058894108980894,-0.079598620533943],[0.020356021821499,-0.0066529344767332,-0.017257776111364],[-0.030524929985404,0.03618323430419,-0.022518828511238]],[[0.040354754775763,0.071471706032753,-0.029590619727969],[-0.043701522052288,0.037981159985065,-0.034664154052734],[0.013514100573957,0.023756846785545,0.011892938055098]],[[-0.018534207716584,-0.11483073979616,0.028499765321612],[0.088398434221745,-0.050639234483242,-0.038294095546007],[0.0077977972105145,0.073953174054623,-0.039045616984367]],[[0.049783978611231,-0.024490978568792,-0.042119555175304],[0.016294730827212,0.0022641192190349,-0.03929403424263],[0.064338222146034,0.031136926263571,-0.11578776687384]],[[-0.072179704904556,-0.036267384886742,0.10553047806025],[0.054618272930384,-0.012249049730599,0.13147865235806],[0.044366959482431,-0.025995705276728,0.089947707951069]],[[0.012954393401742,0.15887625515461,0.040528982877731],[0.028363039717078,0.043604552745819,0.0070825316943228],[-0.021169060841203,-0.020070618018508,-0.028658222407103]],[[0.041853256523609,0.097476869821548,-0.077123552560806],[-0.053872033953667,0.035805087536573,-0.015602335333824],[-0.1042405962944,0.022494290024042,-0.016077632084489]],[[-0.1099575906992,-0.068402051925659,0.046919111162424],[-0.043528191745281,0.011376740410924,-0.075015313923359],[0.023680595681071,0.21284908056259,-0.10826347023249]],[[0.13965927064419,0.037988681346178,-0.16190803050995],[0.072433575987816,0.0078554786741734,0.091761976480484],[-0.17947041988373,0.094294898211956,-0.0044172136113048]],[[-0.083424896001816,0.063045285642147,-0.066033475100994],[-0.11836747080088,0.035203263163567,-0.034041102975607],[-0.081117510795593,-0.019711948931217,-0.1273762434721]],[[0.021308345720172,-0.035243675112724,0.038996692746878],[-0.005830202717334,-0.017410503700376,-0.043924789875746],[-0.15147611498833,-0.022932371124625,0.025616087019444]],[[-0.10783609002829,-0.13528372347355,-0.11333564668894],[-0.091551341116428,-0.024718686938286,-0.01393711194396],[-0.19805966317654,-0.11302350461483,0.043460283428431]],[[-0.081263653934002,-0.019919024780393,-0.11085826158524],[0.029417103156447,-0.031580604612827,0.05582756921649],[-0.032739873975515,-0.071082212030888,-0.057154104113579]],[[-0.052428849041462,-0.095117725431919,-0.026642136275768],[0.043295718729496,-0.072710566222668,-0.058314569294453],[-0.0448895432055,-0.063856057822704,0.0047827209345996]],[[0.012688619084656,-0.076828449964523,0.049304023385048],[0.007485649548471,-0.079063408076763,0.066998928785324],[0.0013168016448617,-0.040819954127073,-0.0096835540607572]],[[-0.061259008944035,-0.044237472116947,0.010127156041563],[0.093575455248356,0.012742323800921,-0.029104847460985],[-0.069860726594925,0.036182448267937,0.0041418983601034]],[[-0.048151019960642,-0.00072105368599296,-0.15273056924343],[-0.13754497468472,-0.088396653532982,-0.013451462611556],[0.044467758387327,-0.08586423099041,0.068392589688301]],[[0.11575614660978,0.04424923658371,0.14178436994553],[-0.051565896719694,-0.022095590829849,-0.037210669368505],[0.0047901519574225,-0.034249994903803,0.062675975263119]],[[0.0098236287012696,-0.047212615609169,-0.018200341612101],[-0.027186468243599,0.039044078439474,-0.073836117982864],[0.11318957805634,0.027867732569575,0.015400839969516]]],[[[-0.035916343331337,-0.0085006281733513,-0.1153861656785],[0.022611478343606,0.042821183800697,-0.057569835335016],[0.080637089908123,-0.036310207098722,-0.10103967040777]],[[0.060993101447821,0.081944793462753,-0.025801619514823],[-0.0085013173520565,0.055824555456638,-0.069291926920414],[-0.11200452595949,-0.046465765684843,-0.054496645927429]],[[0.037793148308992,0.056886717677116,-0.064677700400352],[-0.024351358413696,-0.013517362065613,-0.021556315943599],[-0.07114052772522,-0.015310314483941,0.031274434179068]],[[0.0027406807057559,-0.0061505143530667,-0.020240524783731],[-0.019097382202744,0.022321332246065,0.067890249192715],[-0.0036346991546452,0.090095616877079,0.078752130270004]],[[-0.029313331469893,-0.025470994412899,-0.026633573696017],[0.045083280652761,0.0091176107525826,0.0057150074280798],[0.12807080149651,-0.018672393634915,0.024072308093309]],[[8.8684300862951e-06,-0.031300116330385,0.016058035194874],[0.016944227740169,0.050508297979832,0.034015461802483],[-0.0056032603606582,-0.10298589617014,-0.0086424462497234]],[[-0.035694435238838,-0.04342332482338,0.013528430834413],[-0.051284819841385,9.0097681095358e-05,0.015070318244398],[-0.032931081950665,-0.040007039904594,-0.035402033478022]],[[0.034346006810665,-0.055797234177589,-0.0085625573992729],[-0.11084444075823,-0.095826700329781,-0.021158402785659],[-0.022330813109875,-0.026071710512042,0.023488881066442]],[[-0.00083143130177632,-0.037645727396011,-0.055781006813049],[-0.096078306436539,-0.070766784250736,0.025435358285904],[0.0029947853181511,0.0091599952429533,0.052643872797489]],[[0.096295587718487,-0.054695297032595,0.029846731573343],[-0.027512503787875,-0.0020882557146251,0.062433250248432],[-0.020194638520479,0.078571543097496,-0.014792843721807]],[[-0.011188738048077,0.003179415827617,0.036145437508821],[-0.023929005488753,0.0070865447632968,0.019482823088765],[0.060140591114759,0.03561032563448,0.067833386361599]],[[-0.1022299900651,-0.072097755968571,-0.04686276614666],[-0.0039921165443957,0.031689405441284,0.045927993953228],[-0.0084079308435321,0.066224656999111,0.045475795865059]],[[0.011233862489462,0.13604730367661,0.045351251959801],[0.078649789094925,0.057284209877253,-0.18964402377605],[0.069601804018021,-0.050073072314262,-0.097099430859089]],[[-0.046288840472698,0.018912520259619,-0.044547371566296],[0.0018415432423353,-0.11896316707134,0.022273935377598],[7.1339833084494e-05,0.047482244670391,-0.0099425744265318]],[[-0.042129803448915,0.025647215545177,-0.043729770928621],[-0.066976621747017,-0.084764964878559,-0.057429056614637],[0.098412699997425,-0.01687808893621,-0.089775159955025]],[[-0.020429275929928,0.02914316020906,0.096118122339249],[0.050046928226948,-0.050223868340254,-0.024396477267146],[0.027891842648387,-0.025489388033748,0.0097944578155875]],[[0.016971884295344,-0.059625416994095,-0.083611525595188],[-0.025146877393126,-0.036214966326952,0.027606032788754],[0.14106416702271,0.068496845662594,-0.027394637465477]],[[-0.0018076515989378,-0.049269042909145,0.074715465307236],[0.011731198057532,0.037236277014017,-0.015614503063262],[-0.0036867258604616,-0.057369079440832,0.054557107388973]],[[-0.00090306950733066,-0.046207338571548,0.075002357363701],[0.0026987157762051,-0.039924163371325,-0.12743239104748],[0.053744416683912,0.08807410299778,0.02580900862813]],[[-0.048062585294247,-0.012645041570067,0.078987337648869],[0.076585464179516,-0.010300494730473,0.046413905918598],[0.035500429570675,-0.015798663720489,0.058554735034704]],[[0.028566488996148,0.077499464154243,0.044582050293684],[0.0190564468503,0.012132409960032,0.021261418238282],[-0.050228349864483,-0.055542979389429,0.032175794243813]],[[0.033382561057806,0.011186338029802,-0.025037635117769],[0.067888490855694,-0.023060573264956,0.054803323000669],[0.042848501354456,-0.0028375566471368,0.0052305683493614]],[[-0.067800834774971,-0.018881732597947,0.035868030041456],[-0.019267719238997,0.025260105729103,0.0044573782943189],[0.052895713597536,-0.005843672901392,0.044324230402708]],[[0.054427575320005,-0.0086923772469163,0.05271901935339],[-0.056864764541388,-0.038976911455393,-0.0019401824101806],[-0.0124392490834,0.012191540561616,0.0036837789230049]],[[0.025211052969098,-0.0027663393411785,0.0053678108379245],[-0.027815062552691,-0.064554415643215,0.010972040705383],[0.028972718864679,0.065734632313251,0.0078289555385709]],[[0.039074745029211,-0.034551415592432,-0.0032746193464845],[0.080887876451015,0.023407027125359,-0.05065680667758],[-0.077959537506104,0.065587483346462,-0.10256592929363]],[[0.048259954899549,-0.05205187574029,0.0047938865609467],[0.030651329085231,-0.080344215035439,0.030056420713663],[0.032753050327301,-0.022416839376092,-0.010314279235899]],[[0.031359367072582,-0.019921761006117,-0.0074575217440724],[0.026292230933905,-0.024018691852689,-0.04322400316596],[-0.052519470453262,-0.03403302654624,0.041591666638851]],[[0.055916555225849,0.046090792864561,0.1259318292141],[-0.082419946789742,-0.10591781139374,0.11291151493788],[-0.00065048324177042,-0.054159093648195,0.0096117714419961]],[[0.070208169519901,0.051971558481455,-0.032095186412334],[0.038905378431082,0.020792933180928,0.063237197697163],[0.050559803843498,-0.029848089441657,-0.10550062358379]],[[0.0027811671607196,0.0221559535712,-0.061548870056868],[0.031630460172892,0.068159095942974,0.0017466496210545],[-0.092946238815784,0.020875407382846,-0.0026847140397877]],[[0.027022734284401,0.0026994796935469,-0.075436770915985],[0.013212291523814,-0.076749831438065,-0.057264149188995],[-0.088969975709915,-0.0049372334033251,0.0086880587041378]],[[-0.033828124403954,-0.034618884325027,0.020395016297698],[-0.00058942358009517,0.0075730895623565,0.0057053146883845],[0.058849938213825,0.039875607937574,-0.028312869369984]],[[-0.034325767308474,-0.018984662368894,-0.041291169822216],[0.020705452188849,0.090499825775623,0.039358016103506],[-0.074609115719795,0.099683023989201,0.043223217129707]],[[-0.014291509054601,0.0050857998430729,0.011760008521378],[-0.017094353213906,0.019906306639314,-0.019745780155063],[-0.02881851233542,-0.016805546358228,0.046205122023821]],[[-0.0099822664633393,0.00033696854370646,-0.003163650399074],[-0.0086978729814291,-0.058996718376875,-0.026208708062768],[-0.0034524041693658,-0.060063067823648,-0.026323173195124]],[[-0.063529551029205,0.035773057490587,0.014261102303863],[0.090094141662121,0.039790209382772,0.018486583605409],[0.034860480576754,0.096743054687977,0.0029944174457341]],[[-0.040410526096821,0.062477264553308,0.0036540278233588],[0.039572063833475,-0.041086323559284,0.032076265662909],[-0.0098307197913527,-0.099818371236324,-0.00090648210607469]],[[0.014684036374092,0.0090335626155138,0.070512570440769],[-0.011967338621616,-0.011858072131872,0.015388038940728],[-0.080057516694069,-0.0064799725078046,0.016078388318419]],[[-0.070166744291782,0.031611125916243,0.05085926502943],[-0.033938065171242,-0.0046039456501603,-0.020834345370531],[0.028576416894794,0.050512623041868,-0.094681657850742]],[[-0.0045218146406114,0.016296723857522,-0.00044198846444488],[0.0095448819920421,0.047602638602257,-0.040113661438227],[0.038633041083813,0.015072400681674,-0.034821759909391]],[[-0.01587593741715,0.01082762889564,0.15994825959206],[-0.01802702434361,-0.089572906494141,0.068434648215771],[-0.058945327997208,-0.13071522116661,0.1195954978466]],[[0.056949269026518,-0.0097888214513659,-0.0052421218715608],[0.070565097033978,-0.024462936446071,-0.013094620779157],[-0.01359426882118,-0.0026837172918022,0.027177447453141]],[[0.03973587974906,-0.032086059451103,-0.075652524828911],[0.013986541889608,-0.030664028599858,0.0084351487457752],[-0.070717342197895,-0.019190203398466,-0.027945617213845]],[[0.0010005618678406,-0.044851507991552,-0.054791640490294],[-0.02899568900466,0.031887874007225,-0.0053805164061487],[0.036019932478666,-0.0075164129957557,-0.024796640500426]],[[-0.075534328818321,-0.087970644235611,0.00084903050446883],[0.0095446547493339,0.029779881238937,-0.027071956545115],[-0.00099644111469388,0.074417501688004,0.083974465727806]],[[0.013628167100251,-0.035342868417501,-0.043714661151171],[0.036473490297794,0.018471138551831,0.074603296816349],[-0.042422447353601,0.071870416402817,-0.053204007446766]],[[0.043712325394154,-0.0015073561808094,-0.055139265954494],[-0.026477325707674,-0.0078204488381743,-0.076775811612606],[-0.042811419814825,0.07863525301218,-0.0028011659160256]],[[0.020852219313383,-0.079319126904011,-0.011371102184057],[0.00071730150375515,0.014594155363739,0.035243559628725],[0.040667437016964,-0.10641368478537,0.0048632593825459]],[[-0.0580816231668,-0.0088041266426444,-0.035941038280725],[-0.03221895173192,0.052155997604132,-0.036919884383678],[-0.039975367486477,-0.010828816331923,0.00090098194777966]],[[0.054083943367004,-0.047362435609102,-0.0013946236576885],[0.039323389530182,-0.050784274935722,0.035830020904541],[0.0022711372002959,0.036818642169237,0.045757666230202]],[[0.021392442286015,0.058328215032816,0.055725421756506],[0.0058717196807265,0.047485109418631,-0.019757075235248],[-0.013348440639675,0.0056421970948577,0.0057466393336654]],[[0.074255883693695,0.026641309261322,-0.040817383676767],[0.047016154974699,-0.00024279972421937,0.0066871107555926],[-0.045206021517515,0.012723048217595,-0.051254339516163]],[[-0.018124552443624,-0.050134807825089,-0.071513943374157],[0.028423177078366,-0.021275965496898,-0.011500252410769],[0.060035519301891,0.095546722412109,0.076880134642124]],[[-0.012403039261699,-0.049879129976034,0.068644449114799],[-0.0068011097609997,-0.038701228797436,0.037034414708614],[0.03713234141469,-0.0054896608926356,0.015050614252687]],[[0.060495153069496,0.086905464529991,-0.037004929035902],[0.063667438924313,0.064000725746155,0.016824623569846],[-0.12814386188984,-0.025914676487446,-0.085154831409454]],[[0.001764512504451,0.013237367384136,0.016593188047409],[0.0091409152373672,-0.02444376796484,-0.0038114441558719],[-0.028785225003958,-0.035375200212002,-0.046086881309748]],[[0.044930689036846,0.0077694226056337,0.0067147263325751],[0.03034813515842,0.013136353343725,-0.054406989365816],[0.054334755986929,-0.011999655514956,-0.051849454641342]],[[-0.050589147955179,-0.003606129437685,-0.0050710765644908],[0.014852922409773,0.070462711155415,0.015747619792819],[0.049076516181231,0.055414356291294,-0.022378966212273]],[[-0.015410461463034,-0.019359802827239,0.0081905722618103],[-0.021771319210529,-0.049377631396055,-0.034206621348858],[0.035803381353617,-0.012996540404856,-0.053097873926163]],[[0.018534203991294,0.0032587829045951,-0.041020423173904],[0.074683114886284,0.033870827406645,-0.013656256720424],[0.049067366868258,0.049346223473549,0.03146256506443]],[[0.0054842508397996,0.013091579079628,0.0095547838136554],[-0.030456565320492,0.023088555783033,0.044330451637506],[0.024104669690132,0.089138448238373,0.010746276006103]],[[0.058153230696917,-0.030832810327411,-0.010074223391712],[0.01522119063884,0.0081804804503918,0.037987738847733],[-0.038401927798986,0.0085380179807544,0.1087204888463]],[[0.018577646464109,0.060562677681446,-0.10436231642962],[-0.057813998311758,0.05130971968174,0.01216178573668],[-0.05270453915,0.028416261076927,-0.060205325484276]],[[0.065272212028503,-0.0585111156106,0.027012838050723],[-0.0093124667182565,-0.072341918945312,0.040652874857187],[0.046025238931179,0.0048059169203043,0.14021547138691]],[[0.040087707340717,-0.042233038693666,0.011005830951035],[0.034753754734993,-0.0090605104342103,0.022873483598232],[0.021582901477814,-0.010013898834586,-0.029001971706748]],[[0.019101668149233,-0.023745127022266,-0.027946934103966],[-0.08128710091114,-0.069119997322559,0.01253151614219],[-0.016881141811609,0.012097527272999,0.026268051937222]],[[-0.029060248285532,-0.037344295531511,0.04753090441227],[0.036004267632961,-0.0014726005028933,0.061688456684351],[-0.0010281363502145,0.042584292590618,-0.062519453465939]],[[0.058019701391459,-0.041835874319077,0.029259398579597],[0.010110374540091,0.069209307432175,-0.021273910999298],[0.085621066391468,0.017817161977291,-0.075284458696842]],[[-0.034061178565025,0.015140445902944,0.020478567108512],[0.061564575880766,0.037583120167255,-0.012706391513348],[-0.023329332470894,0.052702866494656,-0.095086380839348]],[[0.035656329244375,-0.023626146838069,-0.015726260840893],[-0.083187736570835,-0.062672384083271,-0.11825925111771],[0.0060569122433662,0.044509999454021,0.11772039532661]],[[-0.080964520573616,0.026702942326665,-0.028338534757495],[0.005917021073401,-0.088602364063263,-0.023330323398113],[0.023600932210684,0.028100445866585,0.046078085899353]],[[-0.083151444792747,-0.0073201004415751,0.015429600141943],[0.071290969848633,-0.040823314338923,-0.0081545440480113],[0.006954237818718,-0.0095202196389437,-0.064227841794491]],[[-0.046459414064884,-0.00046306266449392,-0.066859155893326],[0.0037469614762813,-0.028192354366183,-0.014872391708195],[0.0080258892849088,0.013042380101979,0.015545416623354]],[[-0.010361534543335,-0.029321452602744,0.035576045513153],[0.062579840421677,-0.016902858391404,0.074595220386982],[0.090021245181561,-0.0053359996527433,0.03706319257617]],[[0.085786305367947,0.057243186980486,-0.023869721218944],[0.016608772799373,-0.047903452068567,-0.0044295876286924],[0.038565151393414,-0.046650368720293,-0.096830651164055]],[[0.042096674442291,0.070599988102913,0.052601024508476],[0.055695187300444,0.042565796524286,0.030310554429889],[0.037873964756727,-0.003131001489237,-0.055891860276461]],[[-0.051224708557129,0.043579127639532,-0.035108454525471],[-0.015127467922866,0.034600432962179,-0.033168371766806],[0.019015904515982,0.056964129209518,0.062779635190964]],[[-0.013858973048627,0.014257076196373,0.0089661320671439],[-0.019104607403278,-0.0015617941971868,0.057948101311922],[-0.03028099052608,0.016401184722781,-0.017842279747128]],[[-0.0095386141911149,0.089076168835163,0.031171627342701],[0.11508169025183,0.013454599305987,-0.0070942863821983],[0.019310919567943,-0.054746139794588,0.018979601562023]],[[0.013115087524056,-0.06785499304533,-0.036806534975767],[0.045206088572741,-0.011387773789465,-0.0018730852752924],[-0.016749065369368,-0.003530424553901,-0.022047437727451]],[[-0.037430197000504,-0.039864752441645,-0.045660473406315],[0.080261990427971,0.048898443579674,-0.028140492737293],[-0.051309362053871,0.0047869421541691,0.026455473154783]],[[-0.097097121179104,0.059905257076025,-0.052319202572107],[-0.081943459808826,-0.042870953679085,0.026273366063833],[-0.14177224040031,-0.062534503638744,0.014157018624246]],[[-0.065496280789375,0.056623950600624,0.064730815589428],[-0.0016539787175134,0.039359785616398,0.0096313552930951],[-0.009499242529273,0.062840759754181,0.073091194033623]],[[0.0041002319194376,0.093955375254154,0.035966321825981],[-0.05397829785943,0.042258445173502,-0.05645327270031],[0.00081484188558534,0.02335854806006,-0.04421291872859]],[[-0.0094515327364206,0.02139618806541,0.025220127776265],[0.098291724920273,0.04388152807951,0.048160806298256],[-0.022559555247426,-0.035825610160828,0.049329232424498]],[[-0.012467888183892,0.0025719741825014,0.0089739998802543],[-0.043290741741657,-0.041132409125566,-0.052753608673811],[-0.034305155277252,0.040371250361204,0.016343599185348]],[[0.065477460622787,0.030680680647492,0.018685290589929],[0.03213419392705,2.0811166905332e-05,0.0067496178671718],[-0.046530455350876,-0.013984588906169,0.017769686877728]],[[-0.030687503516674,-0.033789128065109,0.0067752790637314],[0.02246730029583,-0.015572984702885,-0.011115974746644],[0.050049103796482,-0.016631741076708,0.024313813075423]],[[-0.056028801947832,0.033737003803253,0.01121726538986],[0.096442639827728,0.0267105512321,-0.074578076601028],[0.016535529866815,-0.10301674157381,0.013252324424684]],[[-0.028506092727184,0.018745491281152,0.028177343308926],[-0.089308835566044,-0.031525779515505,0.016157733276486],[-0.01620502024889,-0.078399702906609,-0.026902692392468]],[[0.0781055316329,0.082052446901798,0.043438147753477],[-0.0015180635964498,0.10441073030233,0.054572638124228],[-0.042607113718987,0.020568525418639,-0.021560300141573]],[[0.055934604257345,-0.057874623686075,-0.056723617017269],[0.06719982624054,0.052700858563185,-0.029418129473925],[0.021747648715973,0.0073811132460833,-0.036592684686184]],[[-0.017284134402871,0.040706984698772,-0.070560522377491],[-0.053982008248568,0.059810698032379,-0.085691183805466],[0.020657435059547,0.028727980330586,-0.039600964635611]],[[0.030987996608019,0.014632301405072,0.0099692735821009],[0.0096268812194467,-0.0038354229182005,-0.0075715123675764],[-0.039347484707832,-0.044218078255653,-0.022830879315734]],[[-0.04908861964941,-0.0045599192380905,-0.028419708833098],[-0.012349154800177,-0.038887895643711,-0.074904926121235],[-0.011116625741124,-0.026137925684452,0.083064369857311]],[[0.046509180217981,-0.033264644443989,-0.040034666657448],[-0.042861007153988,-0.039137076586485,0.030921721830964],[-0.047728255391121,0.085572607815266,0.0065552429296076]],[[-0.040391497313976,0.015400308184326,0.033647052943707],[0.02682789042592,0.0057690790854394,0.050273146480322],[-0.023168478161097,-0.02822283282876,0.023995205760002]],[[-0.0024394846986979,-0.01041339430958,-0.0095830010250211],[-0.0034103819634765,0.031399428844452,-0.0022012367844582],[0.00079420383553952,-0.0027603630442172,0.01086981035769]],[[0.071457579731941,0.073647037148476,-0.052456323057413],[0.05529598519206,-0.065008737146854,-0.073398627340794],[-0.039066344499588,-0.038895957171917,-0.019861603155732]],[[-0.095244742929935,-0.0088902022689581,0.051594264805317],[-0.014980151318014,0.018347319215536,0.0087353810667992],[-0.040520001202822,-0.010218985378742,-0.043188326060772]],[[-0.016653325408697,-0.0038715137634426,0.052327562123537],[-0.088840492069721,0.064175359904766,0.058084331452847],[-0.084781527519226,-0.081065259873867,0.020220711827278]],[[-0.049086578190327,-0.012078437022865,0.0080301547423005],[-0.053870476782322,0.036576252430677,-0.0011698643211275],[0.039496742188931,0.014811959117651,0.031847536563873]],[[-0.067391939461231,0.0094182398170233,0.067989751696587],[-0.005788981448859,0.0049693859182298,0.0066588623449206],[-0.032266762107611,0.03492745757103,-0.036469921469688]],[[-0.053653221577406,-0.01416773442179,-0.073399350047112],[-0.042109310626984,0.081805527210236,0.1187816336751],[-0.0097360732033849,0.07711286842823,-0.045697879046202]],[[0.029988896101713,-0.092326879501343,-0.059110317379236],[-0.068655580282211,-0.052988164126873,-0.011634329333901],[0.070800989866257,-0.048739518970251,-0.019673500210047]],[[0.069472134113312,0.015824066475034,-0.093932092189789],[0.022604446858168,0.050727345049381,0.010991616174579],[-0.05894660577178,-0.028339821845293,-0.0069095003418624]],[[-0.0047514098696411,-0.10904643684626,-0.085028417408466],[0.076112493872643,-0.083135418593884,0.016935434192419],[0.075449824333191,-0.033465579152107,0.011399384588003]],[[-0.076058655977249,-0.099720902740955,0.019059708341956],[-0.07401854544878,0.0081206252798438,0.024403708055615],[-0.0098550450056791,0.027235426008701,0.0081480601802468]],[[-0.10076653957367,-0.031668376177549,-0.08093149214983],[0.0065414714626968,-0.010436097159982,0.084600575268269],[-0.039453718811274,-0.012708527967334,0.0034683886915445]],[[-0.027111021801829,-0.064147941768169,0.053987331688404],[-0.092305906116962,0.011440888047218,0.010590637102723],[0.044644016772509,-0.03835191950202,0.0691993907094]],[[-0.0194475594908,0.064900435507298,0.025689939036965],[-0.049117002636194,-0.0282635204494,0.047720771282911],[0.0023397516924888,0.028351752087474,0.029913987964392]],[[0.010437613353133,-0.01086039096117,0.0099111767485738],[-0.031209202483296,-0.033756073564291,0.01949673704803],[-0.033392634242773,-0.036108862608671,0.00730289099738]],[[0.044686775654554,-0.092243917286396,0.035757634788752],[0.036944016814232,-0.10087709873915,0.032629784196615],[-0.012810268439353,-0.088812075555325,0.011108971200883]],[[0.058084327727556,-0.092195779085159,-0.017425775527954],[-0.034885324537754,-0.072267778217793,0.079685255885124],[0.0059481598436832,-0.084813289344311,-0.051824614405632]],[[-0.049053229391575,-0.073850199580193,-0.072898134589195],[-0.097385607659817,-0.020962176844478,0.053761024028063],[0.099250502884388,-0.03148515895009,0.011820081621408]],[[0.047824032604694,-0.036841258406639,-0.05118490383029],[0.00058544136118144,-0.051969967782497,0.026709282770753],[0.044662702828646,0.028798427432775,-0.028422212228179]],[[-0.033274356275797,-0.0032781050540507,-0.053193300962448],[0.0075975493527949,-0.010300809517503,-0.014388100244105],[-0.064288906753063,0.018020501360297,-0.01694960705936]],[[-0.07034407556057,0.039014063775539,-0.081862553954124],[0.053765080869198,0.067255690693855,-0.045966520905495],[-0.079590737819672,0.025345915928483,-0.0073702312074602]],[[0.01976366341114,0.052422322332859,-0.017231764271855],[0.13489864766598,0.06339219212532,0.02688673324883],[0.032963275909424,-0.076712891459465,0.042406391352415]],[[-0.040210455656052,-0.055207598954439,0.021019635722041],[0.010065586306155,0.030937120318413,0.020431820303202],[0.030597966164351,-0.047429453581572,-0.044301867485046]],[[-0.06199523806572,-0.058793190866709,0.0087574133649468],[0.04457538947463,-0.015372372232378,0.00046731921611354],[-0.069817006587982,-0.10540506243706,-0.003107744269073]],[[-0.018257386982441,0.035073012113571,0.0010143213439733],[0.032284647226334,-0.097733989357948,0.002307360060513],[0.065898381173611,-0.023401100188494,0.02331461571157]],[[-0.01583637110889,-0.04193552583456,-0.057263839989901],[-0.017934195697308,-0.054973777383566,0.042917270213366],[-0.039836473762989,-0.054198775440454,0.06328409910202]],[[-0.061000470072031,-0.0072290590032935,0.015904657542706],[0.028394581750035,0.024574970826507,-0.018832726404071],[0.011909014545381,-0.080274388194084,-0.034123472869396]],[[0.028207272291183,-0.036842215806246,-0.029561446979642],[0.030488815158606,-0.0043187942355871,0.0021894297096878],[0.035627696663141,-0.036089278757572,-0.028808174654841]],[[0.040917295962572,0.039111290127039,0.053902238607407],[0.058893468230963,-0.055880915373564,-0.026619264855981],[0.026734350249171,0.044553965330124,0.032456796616316]],[[-0.036550015211105,-0.0076970914378762,0.061433907598257],[-0.044728100299835,-0.01702019199729,0.013066690415144],[0.0060251578688622,0.033953167498112,-0.032976806163788]]],[[[-0.12288059294224,0.10139665007591,-0.16182143986225],[-0.03776691108942,-0.066383138298988,-0.12294932454824],[0.017942434176803,0.027021734043956,-0.062234912067652]],[[0.094996899366379,-0.078801400959492,-0.046570647507906],[-0.078663595020771,-0.11070131510496,-0.11207865178585],[0.012106689624488,0.10803279280663,-0.047684714198112]],[[0.063813388347626,-0.081653796136379,0.046380020678043],[-0.0081040328368545,-0.051685757935047,0.15415480732918],[-0.13224786520004,0.069658651947975,-0.051604595035315]],[[0.089441858232021,0.028183914721012,-0.01264773029834],[0.048761397600174,0.043267413973808,0.046776507049799],[0.094528891146183,0.24783585965633,-0.01616445183754]],[[0.012841139920056,-0.053176268935204,-0.093070492148399],[0.086513511836529,0.050065435469151,0.075575016438961],[0.068444974720478,0.025727022439241,-0.19637018442154]],[[-0.052651200443506,0.016322145238519,0.018244972452521],[-0.05059626698494,0.033291153609753,0.11587723344564],[-0.10441116243601,-0.0786112844944,0.013347133994102]],[[-0.072301641106606,-0.13285322487354,-0.004599719773978],[0.052431728690863,-0.058998174965382,0.022407602518797],[0.073255196213722,-0.013720722869039,-0.16292186081409]],[[-0.071289137005806,0.051072165369987,0.012705131433904],[-0.069278933107853,-0.091293729841709,0.040171541273594],[-0.018972242251039,0.1041878759861,0.027921888977289]],[[-0.20538640022278,-0.035612743347883,0.010321865789592],[-0.0032073114998639,-0.080078527331352,0.0083691729232669],[-0.028784304857254,-0.031263440847397,-0.099789150059223]],[[-0.26337972283363,-0.064124897122383,0.030625583603978],[-0.017232425510883,-0.084797747433186,0.022391524165869],[-0.1433560103178,-0.2388678342104,-0.14578148722649]],[[0.11076820641756,0.015933074057102,0.2016866505146],[-0.088229365646839,0.025806756690145,0.055395536124706],[0.15640537440777,0.16997511684895,0.10100036859512]],[[-0.0075775473378599,-0.011077492497861,-0.080713912844658],[0.17458714544773,0.097008556127548,-0.068791165947914],[0.038581471890211,0.089490130543709,0.054158508777618]],[[0.024805041030049,0.063990190625191,-0.17509399354458],[0.058088719844818,0.083277560770512,-0.23859034478664],[-0.032189063727856,-0.13346959650517,-0.18355977535248]],[[-0.18339814245701,-0.024016570299864,0.015537702478468],[-0.045047298073769,-0.035163935273886,-0.052600990980864],[-0.12406072020531,-0.077221021056175,0.089897871017456]],[[0.13691575825214,0.0029366628732532,-0.11584054678679],[0.19899562001228,0.11525171250105,-0.031311746686697],[0.068447537720203,-0.095744661986828,-0.082792587578297]],[[0.066696770489216,-0.0039874771609902,0.03790345415473],[-0.068645365536213,-0.11860878020525,-0.15901198983192],[0.043712493032217,-0.10092809051275,-0.076047986745834]],[[0.025808421894908,0.0426429733634,0.033670138567686],[-0.031882014125586,0.043840155005455,0.014403255656362],[0.051728241145611,0.023491457104683,-0.1400533169508]],[[-0.071403034031391,0.042915653437376,-0.030898736789823],[-0.10734888166189,0.070425651967525,0.082604438066483],[-0.016985859721899,-0.0087035736069083,0.073257237672806]],[[-0.037670563906431,-0.077337488532066,0.079682528972626],[0.043583981692791,0.072342537343502,-0.044430866837502],[0.13485877215862,0.17927214503288,0.054440964013338]],[[-0.14134834706783,0.022068688645959,0.14573010802269],[0.13422276079655,0.090924419462681,0.21883144974709],[0.048088651150465,-0.07917059212923,0.18267033994198]],[[0.19117741286755,-0.014523486606777,0.017602559179068],[-0.038257483392954,-6.6518841776997e-06,-0.0013465834781528],[-0.063144862651825,-0.069332785904408,0.0011706373188645]],[[0.17281755805016,-0.16707855463028,-0.04387079551816],[-0.037611916661263,-0.020563412457705,0.068769536912441],[-0.084713310003281,0.078436240553856,0.052610378712416]],[[-0.088876701891422,0.002854289021343,-0.020431999117136],[-0.15899978578091,-0.039248649030924,0.057051364332438],[0.061781942844391,0.04943922534585,0.088357158005238]],[[-0.023013738915324,-0.0248091109097,-0.053419463336468],[0.024528680369258,0.05793322622776,0.056140575557947],[0.090256340801716,0.042062420397997,-0.068016298115253]],[[0.1274174451828,0.18755976855755,0.11760606616735],[0.029176415875554,0.10444329679012,0.033890895545483],[0.01810017041862,0.077764339745045,0.15491260588169]],[[-0.20515407621861,-0.045173779129982,0.032952103763819],[-0.086560815572739,-0.069845199584961,-0.11708166450262],[0.15031704306602,-0.040074847638607,-0.19293001294136]],[[-0.090075500309467,-0.022439388558269,0.16047194600105],[-0.043552838265896,-0.16720670461655,0.019706012681127],[-0.028251780197024,-0.07677011936903,-0.088454388082027]],[[-0.063441634178162,-0.099719181656837,-0.062636107206345],[0.0061812936328351,-0.084357053041458,-0.02994554489851],[-0.029274640604854,0.043373927474022,0.00743767619133]],[[-0.2569714486599,-0.2192215770483,0.031593296676874],[-0.074434243142605,-0.19157631695271,0.042284328490496],[0.048397425562143,-0.16732338070869,0.037990242242813]],[[-0.083400890231133,-0.086894758045673,-0.048343863338232],[-0.088627256453037,-0.091054506599903,-0.074182830750942],[-0.01671627163887,0.17174370586872,0.010646952316165]],[[-0.014889486134052,0.049586594104767,-0.086392059922218],[-0.080842800438404,-0.05326946079731,0.018901256844401],[-0.037441704422235,0.050093252211809,0.049204971641302]],[[0.012802174314857,0.11568737030029,-0.13304416835308],[0.061179779469967,-0.028905790299177,-0.11389848589897],[0.008441093377769,-0.0097492532804608,0.16162942349911]],[[-0.0069104703143239,-0.062715776264668,-0.057567305862904],[0.079362653195858,-0.06203680485487,-0.010625586844981],[0.00032964942511171,0.067245960235596,0.083953119814396]],[[-0.094615891575813,0.060027107596397,-0.061739757657051],[0.043005652725697,0.042244028300047,0.10480071604252],[0.093989722430706,0.10841699689627,-0.098581671714783]],[[-0.013309198431671,-0.021916106343269,0.0035079463850707],[-0.078917488455772,-0.04526561871171,0.07289545238018],[0.045455802232027,-0.090175047516823,0.07025670260191]],[[0.27380269765854,0.066310398280621,-0.037369474768639],[0.084735684096813,0.099804431200027,0.027084592729807],[0.068202905356884,0.058234561234713,0.044528272002935]],[[-0.039035428315401,0.1041018217802,0.021571127697825],[-0.050489269196987,0.034372009336948,-0.056900642812252],[0.094690173864365,0.065451443195343,0.10585294663906]],[[0.11463487148285,-0.042238604277372,-0.088432528078556],[0.12259460985661,-0.047063618898392,-0.038202479481697],[0.01120965462178,0.05675371363759,-0.0067222155630589]],[[-0.0078981043770909,0.09258946031332,-0.04963955655694],[-0.11939514428377,-0.039051249623299,0.014702177606523],[0.091182351112366,-0.061032794415951,-0.083852186799049]],[[-0.098695188760757,0.055875092744827,-0.10944572836161],[-0.14679892361164,-0.06282702088356,-0.24626119434834],[0.0078428294509649,0.035106092691422,-0.054080069065094]],[[0.018089132383466,0.021454038098454,0.11065472662449],[0.11679740250111,0.030808873474598,0.038820996880531],[0.047370091080666,0.035783614963293,0.11246971786022]],[[-0.13902492821217,0.04154110699892,0.17378352582455],[0.013072320260108,-0.0097195375710726,0.091971598565578],[-0.05698286741972,-0.034146174788475,0.33602970838547]],[[0.024055169895291,-0.0018938195426017,0.025479113683105],[0.0040332213975489,0.022269234061241,0.063945412635803],[-0.0093914465978742,0.031483493745327,0.076950788497925]],[[0.017747899517417,-0.0064251250587404,-0.032002802938223],[0.018280172720551,0.062042139470577,0.0286183077842],[-0.092210255563259,0.022466132417321,-0.0046419794671237]],[[0.034474827349186,0.095220863819122,-0.13817577064037],[0.088587433099747,0.097940407693386,0.096159420907497],[-0.091772317886353,-0.0086073717102408,0.10799168050289]],[[-0.20467264950275,0.019724195823073,-0.019609149545431],[0.029080843552947,0.048744533210993,0.049615103751421],[0.011892987415195,0.042159661650658,0.065093524754047]],[[0.083463028073311,-0.21444976329803,-0.00011398404603824],[-0.13203932344913,0.014219380915165,0.029101485386491],[-0.075668349862099,0.049687169492245,-0.22953897714615]],[[-0.072731859982014,0.034811470657587,-0.041831977665424],[0.011636584997177,-0.025235606357455,-0.055302307009697],[0.0023619045969099,-0.091865994036198,-0.027520548552275]],[[0.18535155057907,0.19669331610203,-0.0086493138223886],[0.082663111388683,0.030283281579614,-0.012819933705032],[0.061046913266182,-0.025762517005205,0.006083823274821]],[[0.10401581972837,0.12211929261684,0.080536752939224],[-0.045338824391365,0.065277434885502,-0.012345541268587],[-0.048520471900702,-0.078679263591766,0.0080366404727101]],[[-0.13456976413727,0.094752833247185,0.039248906075954],[-0.14088612794876,-0.0042501175776124,0.0071681938134134],[0.010572803206742,-0.02339244261384,0.02344342879951]],[[-0.14043712615967,-0.041039582341909,0.01494633872062],[0.11329171806574,0.035685796290636,0.069210708141327],[0.020804740488529,0.12445075064898,-0.17972281575203]],[[0.066255941987038,0.068907581269741,-0.11517062038183],[0.10304690897465,0.018249977380037,-0.048031505197287],[0.02128411270678,-0.056736912578344,0.0048861890099943]],[[-0.076515942811966,-0.30665448307991,-0.31995248794556],[-0.0047398838214576,-0.053753949701786,0.044574230909348],[-0.029262211173773,-0.12096474319696,-0.087259329855442]],[[-0.056975990533829,0.013655635528266,-0.0014900852693245],[-0.15202076733112,-0.056343778967857,-0.0084735853597522],[-0.017087707296014,-0.018598515540361,-0.019585784524679]],[[0.19224306941032,-0.027374697849154,-0.026698568835855],[-0.092986807227135,-0.023652335628867,0.064881458878517],[0.050178173929453,0.039180040359497,0.014625854790211]],[[0.062659189105034,0.050670504570007,0.019682735204697],[0.09621924161911,-0.029197156429291,0.056373707950115],[0.022368226200342,-0.14035035669804,-0.085904181003571]],[[0.06812447309494,0.040012091398239,-0.11105137318373],[0.068914815783501,0.01972939260304,-0.19027881324291],[-0.043192964047194,0.023881012573838,-0.057252071797848]],[[0.02119517698884,-0.0043911822140217,0.072148770093918],[0.033027973026037,0.02449893206358,-0.10906448960304],[0.055368300527334,0.010391980409622,-0.048968777060509]],[[0.086409941315651,0.16595333814621,0.048264488577843],[0.046317379921675,-0.012904382310808,0.10140354186296],[0.12953120470047,0.029343375936151,0.0070000132545829]],[[-0.021666711196303,-0.14862675964832,-0.15868034958839],[-0.029630618169904,0.094295971095562,0.016693197190762],[0.03002081438899,-0.0054293833673,-0.09322190284729]],[[-0.030716720968485,-0.0586127191782,0.01184609811753],[0.096313960850239,0.07530964165926,0.070076733827591],[0.18805931508541,0.028673008084297,0.030397914350033]],[[0.20101441442966,0.12354464828968,-0.073548272252083],[0.084101244807243,0.020889803767204,0.10083431750536],[0.09682173281908,0.06811385601759,-0.15685480833054]],[[0.19097025692463,0.069640025496483,-0.075429402291775],[0.11481266468763,0.051623214036226,0.033958725631237],[0.075500495731831,-0.079198732972145,0.096105717122555]],[[-0.062845505774021,0.0078569585457444,0.057550895959139],[0.11186039447784,0.067584961652756,-0.041578941047192],[-0.058718822896481,0.080573819577694,0.071903109550476]],[[0.094699740409851,-0.054913926869631,0.078543692827225],[-0.10417218506336,0.086448468267918,0.15778858959675],[-0.057545982301235,0.057012606412172,0.14792717993259]],[[-0.12327219545841,0.090265013277531,0.1543984413147],[0.050034526735544,0.036232922226191,-0.0036818867083639],[0.19874599575996,0.050258193165064,-0.10485716164112]],[[-0.090732291340828,-0.11332350224257,0.056645169854164],[0.13311031460762,-0.10361842811108,-0.085113510489464],[0.053259879350662,0.078451976180077,-0.039280503988266]],[[0.091338530182838,-0.26621496677399,-0.16596914827824],[0.011927369982004,-0.082745976746082,-0.060786034911871],[0.1007192209363,0.055938959121704,-0.063106648623943]],[[0.10687001794577,-0.016420913860202,0.034134246408939],[-0.021058427169919,-0.0030195377767086,-0.10475642979145],[-0.035554584115744,-0.10897852480412,-0.056170754134655]],[[0.19685737788677,0.10295349359512,0.043562322854996],[-0.047990389168262,-0.14395396411419,-0.073012113571167],[-0.019789529964328,0.038949120789766,0.034419491887093]],[[0.040338832885027,-0.028016427531838,-0.11172071099281],[0.072641953825951,0.066188037395477,-0.026503903791308],[-0.080287426710129,0.063243590295315,0.12034983932972]],[[-0.081978306174278,-0.095182724297047,-0.05096247792244],[0.069646321237087,0.08740209788084,0.0001772029499989],[-0.11653247475624,0.023210186511278,-0.031259153038263]],[[-0.12642301619053,0.058134473860264,-0.11843970417976],[0.041083823889494,0.033199552446604,0.032603830099106],[-0.13578198850155,-0.052637048065662,0.094169706106186]],[[0.032044600695372,0.20413529872894,0.061287026852369],[0.20036838948727,-0.066347569227219,0.15792544186115],[0.14129497110844,0.052567407488823,0.19735492765903]],[[0.12157924473286,-0.078087136149406,-0.015465494245291],[0.069267131388187,-0.096699476242065,0.053207073360682],[0.015092324465513,-0.11110320687294,-0.058108281344175]],[[0.03603158146143,0.031899426132441,-0.096203625202179],[0.07348158210516,-0.0091563249006867,-0.041984561830759],[0.091444998979568,0.080980904400349,-0.11694864183664]],[[0.025908572599292,0.053878925740719,0.010105557739735],[-0.083266399800777,0.12071903795004,0.030519584193826],[-0.023266807198524,0.044102769345045,0.20173774659634]],[[-0.15178529918194,-0.14206847548485,0.02971469797194],[-0.057550057768822,0.083811074495316,-0.025547189638019],[-0.077431976795197,0.028333889320493,-0.0015189829282463]],[[0.11207113415003,0.11696782708168,0.054781582206488],[0.10826481878757,0.054105628281832,0.039621375501156],[-0.059383530169725,0.0086564598605037,0.056872941553593]],[[0.016465438529849,0.017673283815384,-0.041849978268147],[-0.055083122104406,0.0030586465727538,0.0046014916151762],[-0.012103700079024,0.071004964411259,0.022938754409552]],[[0.0075795510783792,0.059612471610308,0.14226929843426],[0.030545759946108,-0.055928807705641,-0.01586707867682],[-0.071911051869392,0.011752079240978,0.16035339236259]],[[-0.02624873071909,0.087323792278767,0.056833285838366],[-0.078131005167961,-0.10637181252241,-0.0076431236229837],[-0.012988422997296,-0.02544748224318,-0.076113343238831]],[[0.16604854166508,0.21711002290249,0.064495578408241],[0.033924736082554,0.08458986133337,0.0015439374838024],[0.10580759495497,0.13308289647102,0.14494667947292]],[[0.11680299788713,0.041518393903971,-0.027449905872345],[0.0056083831004798,0.046355448663235,0.10339126735926],[0.051232036203146,0.029827650636435,-0.085799507796764]],[[0.065365746617317,0.093107752501965,-0.0026016519404948],[0.025062313303351,0.0063043450936675,0.050587400794029],[0.040217231959105,-0.037696216255426,-0.088129431009293]],[[0.039314992725849,0.01792050153017,0.12411667406559],[-0.11331748962402,-0.089087069034576,0.010455775074661],[0.19769947230816,0.18754501640797,0.07829063385725]],[[-0.10000526160002,0.0012400990817696,0.012901272624731],[0.049893029034138,0.027509296312928,-0.032454684376717],[0.024686802178621,-0.045154385268688,0.017235862091184]],[[0.037348952144384,-0.1289881169796,0.010937783867121],[-0.097412548959255,-0.0035876706242561,0.021404730156064],[0.00061570852994919,-0.023989927023649,0.20030814409256]],[[-0.032656438648701,-0.069576911628246,-0.18110880255699],[0.044218152761459,-0.034297499805689,0.053555261343718],[0.060234144330025,0.040181692689657,-0.019750919193029]],[[0.11034058779478,0.023030489683151,-0.057155556976795],[0.0018692028243095,-0.034217029809952,0.031705781817436],[-0.17409159243107,0.013064886443317,-0.082640297710896]],[[0.10287721455097,0.02979258261621,0.01042468007654],[0.0029682500753552,0.18946366012096,-0.011125012300909],[0.0018954271217808,-0.010034654289484,0.034675423055887]],[[0.09528312087059,-0.1314130872488,-0.18595476448536],[-0.17673739790916,-0.091535612940788,-0.13738863170147],[0.0011158217675984,-0.038261774927378,-0.044656503945589]],[[-0.022798417136073,-0.057400286197662,-0.15556009113789],[-0.0079837245866656,-0.086787886917591,-0.058758080005646],[-0.041785109788179,-0.069370195269585,0.083946488797665]],[[-0.034067250788212,-0.084069222211838,-0.037065971642733],[-0.11244706064463,-0.038353480398655,0.076138988137245],[0.081312164664268,-0.021535143256187,-0.04298010468483]],[[0.10663332790136,-0.089412584900856,-0.26668268442154],[-0.038775943219662,-0.064033560454845,0.095656014978886],[0.037179730832577,0.0068569583818316,0.055609308183193]],[[0.12395706027746,0.04061321541667,-0.07560933381319],[0.0067430213093758,0.12409665435553,-0.060776870697737],[-0.020134633406997,0.0030034391675144,0.13594622910023]],[[-0.095767073333263,0.13651339709759,-0.018490198999643],[-0.01233624946326,0.015413896180689,0.034573446959257],[0.099762447178364,-0.10366475582123,-0.049304716289043]],[[-0.10798832029104,0.13501887023449,0.041512589901686],[-0.074402712285519,-0.090398997068405,0.013962199911475],[0.0059852753765881,0.0067205922678113,0.053527493029833]],[[-0.12158825993538,-0.10339975357056,-0.17460457980633],[-0.02680385299027,-0.1939732581377,-0.10443092882633],[-0.079689875245094,-0.096256114542484,-0.043835483491421]],[[-0.25559258460999,0.0072635943070054,-0.017115389928222],[0.076624862849712,0.024692505598068,-0.063329800963402],[-0.11649104207754,-0.049116224050522,-0.019608031958342]],[[0.17194233834743,0.21078504621983,0.095158562064171],[0.10917147994041,0.12010057270527,0.06700948625803],[0.051952347159386,0.12740036845207,0.092076517641544]],[[0.02310474589467,0.03864173963666,-0.066369943320751],[0.086875602602959,0.010752554982901,-0.030641905963421],[0.053836580365896,-0.16021972894669,0.028829839080572]],[[0.055380396544933,0.082730516791344,-0.019933169707656],[0.11372467875481,0.13080310821533,0.075293898582458],[0.012399162165821,-0.020690696313977,-0.012219396419823]],[[0.017324885353446,-0.042564764618874,0.085286118090153],[0.054819263517857,0.076556116342545,-0.011408142745495],[0.020316638052464,0.083111852407455,-0.11080391705036]],[[0.03574837744236,0.06476678699255,-0.0019412154797465],[0.019702196121216,0.0047522000968456,-0.058509133756161],[-0.030059384182096,-0.14379927515984,-0.020541099831462]],[[-0.038282964378595,0.097466804087162,-0.029064999893308],[-0.040916532278061,0.021581687033176,0.047156140208244],[-0.15783381462097,0.072474643588066,0.08317569643259]],[[-0.00040441082092002,-0.04751730710268,0.02881195768714],[0.094374664127827,-0.080328024923801,-0.039159063249826],[0.030971724539995,0.17688836157322,-0.041943114250898]],[[0.044424831867218,0.01789285428822,-0.031467910856009],[0.025400921702385,-0.024119796231389,-0.044945869594812],[-0.0020706253126264,-0.026316359639168,-0.059345353394747]],[[0.042490296065807,0.1330202370882,0.03852117434144],[-0.014172706753016,-0.056717544794083,-0.081735663115978],[-0.063822977244854,0.00011604010069277,0.086867697536945]],[[-0.091058902442455,-0.012563371099532,0.07043631374836],[-0.043817099183798,0.067036509513855,-0.026769107207656],[-0.029274439439178,0.075228154659271,-0.014820997603238]],[[-0.0078693320974708,-0.045300658792257,0.0055681788362563],[-0.037957847118378,-0.016583455726504,0.13876125216484],[0.054828468710184,0.038493756204844,-0.18890964984894]],[[-0.0034943609498441,0.024068716913462,0.040445677936077],[-0.059681788086891,-0.077142715454102,0.05742309615016],[-0.089212320744991,-0.052844163030386,0.037832871079445]],[[-0.13439445197582,-0.083669848740101,0.038772791624069],[-0.023476053029299,-0.01569071225822,0.078535981476307],[-0.039925683289766,-0.073480531573296,-0.0081824520602822]],[[0.0046336185187101,-0.22632738947868,0.025465859100223],[-0.079235941171646,-0.053768992424011,0.027632515877485],[-0.030755270272493,-0.041782833635807,-0.092799350619316]],[[0.050771076232195,-0.071804285049438,-0.022291958332062],[0.062413971871138,-0.0073179644532502,-0.11057519167662],[-0.019412776455283,0.092501066625118,-0.052532535046339]],[[-0.0099875843152404,-0.050883218646049,-0.0031419293954968],[0.010228344239295,-0.0085949972271919,-0.017017526552081],[-0.00052751071052626,-0.043012388050556,-0.061458811163902]],[[0.09685293585062,0.06416667252779,0.039674941450357],[-0.024068431928754,-0.025041807442904,-0.0095931766554713],[0.067073293030262,0.030368283390999,-0.034192733466625]],[[-0.012133589945734,0.01000396721065,-0.16858761012554],[-0.044129684567451,-0.034902039915323,-0.024750038981438],[0.014741102233529,0.033177193254232,-0.068697974085808]],[[0.12418647110462,0.22604285180569,0.076375558972359],[0.0837522149086,0.0458266697824,-0.082606270909309],[0.10185760259628,0.11165697127581,0.061415977776051]],[[-0.046140149235725,-0.070307694375515,-0.066086642444134],[0.036750674247742,0.053483609110117,-0.089401803910732],[-0.073698729276657,-0.032786402851343,-0.02158579416573]],[[-0.035850770771503,-0.16178534924984,0.31620839238167],[-0.19814941287041,0.032214052975178,0.079443328082561],[-0.13862290978432,-0.098098829388618,-0.075713083148003]],[[0.01023143902421,-0.068430624902248,-0.068204656243324],[-0.1185964718461,-0.14133356511593,-0.12212599813938],[0.0025150158908218,-0.0071608959697187,-0.023037178441882]],[[-0.022401750087738,0.013370892032981,0.022977333515882],[-0.21058039367199,-0.13598358631134,-0.0088000651448965],[-0.30945089459419,0.042306769639254,0.01178168412298]],[[-0.08578023314476,-0.044864356517792,-0.031331639736891],[0.10091618448496,-0.04398500546813,-0.0079776654019952],[-0.036658372730017,-0.087717995047569,-0.066173680126667]],[[0.12097933143377,0.082308307290077,0.050682991743088],[-0.041824080049992,0.059974119067192,-0.038469918072224],[0.028977449983358,-0.0073217921890318,0.010733257979155]],[[0.042918160557747,0.077092573046684,-0.0055666882544756],[-0.039025709033012,0.0030137726571411,0.041231069713831],[0.094531662762165,0.042766649276018,0.013671054504812]],[[0.028159575536847,0.10147053003311,0.061626642942429],[-0.12051521241665,0.019749645143747,0.0071524945087731],[0.013856206089258,0.064822837710381,0.066532924771309]]],[[[0.042794700711966,0.085147693753242,0.13357546925545],[-0.032544452697039,0.030286069959402,0.09254963696003],[-0.010103909298778,-0.16391532123089,0.049188926815987]],[[-0.034192834049463,0.045639935880899,-0.081036999821663],[-0.040388863533735,-0.040356811136007,-0.095530293881893],[0.028384944424033,0.046984374523163,0.082704678177834]],[[0.14980880916119,0.039515178650618,0.46077305078506],[0.0099393436685205,0.14551156759262,-0.045185044407845],[0.15671388804913,-0.047912128269672,-0.039659939706326]],[[0.040293719619513,0.12662303447723,0.038259990513325],[0.051188927143812,0.13315615057945,0.0017020347295329],[0.21936988830566,0.15116795897484,-0.027383886277676]],[[0.01871001906693,-0.012623010203242,0.06555300205946],[0.047261513769627,-0.00075610121712089,0.066047810018063],[-0.028674848377705,0.028262672945857,-0.054581061005592]],[[0.067213706672192,-0.0067984079942107,0.019185844808817],[0.063276454806328,-0.14395433664322,-0.018565073609352],[0.11525270342827,-0.1513307094574,-0.14920479059219]],[[0.030070243403316,0.10026694089174,0.10362012684345],[-0.050289206206799,-0.041855316609144,0.11320825666189],[-0.040607564151287,0.029350800439715,0.048297341912985]],[[-0.040182936936617,-0.035221058875322,-0.10601903498173],[-0.043048560619354,0.03805610165,-0.030043695122004],[0.1959076821804,0.10747540742159,-0.027783477678895]],[[-0.069751121103764,-0.11088814586401,-0.054556675255299],[0.02413490973413,-0.10028173029423,0.046734821051359],[-0.11741277575493,0.032815560698509,-0.1134043186903]],[[-0.064499326050282,0.053434677422047,-0.10757260769606],[0.026237828657031,0.011285852640867,-0.1615723669529],[0.030201552435756,-0.26477938890457,-0.15653501451015]],[[0.015870437026024,-0.0080137746408582,0.015614720061421],[0.0035665829200298,-0.06011901050806,-0.029565211385489],[0.022005746141076,0.088470377027988,-0.016165185719728]],[[0.011859910562634,-0.017356313765049,-0.031706657260656],[-0.032465569674969,0.15359431505203,0.17257790267467],[-0.058208558708429,0.010686273686588,-0.019291253760457]],[[0.048929933458567,-0.068042486906052,0.032410640269518],[0.064175218343735,0.077760234475136,-0.099413111805916],[0.028576953336596,-0.029788551852107,0.10913613438606]],[[-0.061864048242569,-0.165357619524,-0.15086376667023],[-0.0041811233386397,-0.078275613486767,0.0024805085267872],[-0.096878595650196,-0.032722119241953,-0.11431666463614]],[[-0.092863999307156,0.015651782974601,0.14109624922276],[0.085337199270725,-0.036175463348627,0.0023424280807376],[0.10720317810774,0.077920414507389,0.0023919793311507]],[[0.024072043597698,-0.05393011122942,-0.011114649474621],[0.038912400603294,-0.039813622832298,0.048100791871548],[0.037617046386003,0.0095945121720433,-0.044856242835522]],[[-0.010690747760236,-0.10322970896959,-0.15661372244358],[-0.0045024543069303,-5.9384004998719e-05,-0.048580765724182],[-0.042776819318533,-0.031030736863613,0.00026557277305983]],[[0.063195168972015,0.074054703116417,-0.023691348731518],[-0.11797914654016,0.016462668776512,-0.096772655844688],[-0.10420005023479,-0.15457743406296,-0.078726142644882]],[[-0.11492978036404,-0.092651404440403,0.037250880151987],[-0.084027387201786,0.10479746758938,-0.054858524352312],[0.039980839937925,-0.016565855592489,0.14308826625347]],[[-0.028841590508819,0.00844038836658,-0.0098330629989505],[-0.10205283015966,0.012607327662408,0.035823669284582],[-0.13003581762314,-0.0036019021645188,0.033227276057005]],[[-0.032431479543447,-0.038308419287205,-0.10296832770109],[0.02693522349,-0.042398951947689,-0.02504912763834],[-0.10266784578562,-0.011497652158141,-0.06611917167902]],[[0.076683528721333,0.089492648839951,-0.07897525280714],[-0.084200896322727,-0.080745778977871,-0.016358830034733],[-0.10389912128448,-0.06642684340477,-0.035775497555733]],[[-0.044192478060722,-0.001392865087837,0.051829893141985],[-0.087004445493221,0.024007150903344,0.099313095211983],[-0.0081441644579172,-0.034178603440523,0.049005966633558]],[[0.13590131700039,0.079202026128769,0.10525718331337],[0.13723853230476,0.14163199067116,0.03693975135684],[0.13951754570007,0.080024518072605,0.071431510150433]],[[0.039471328258514,0.019599433988333,0.04034373909235],[-0.051777303218842,0.055711701512337,-0.017147628590465],[0.10648564994335,0.020548058673739,-0.04748198390007]],[[-0.059045780450106,-0.085779644548893,-0.17457744479179],[0.019529316574335,-0.070544190704823,-0.016265761107206],[0.046545643359423,-0.053209900856018,0.0068994988687336]],[[-0.064545534551144,-0.14559845626354,-0.065706923604012],[-0.083765000104904,-0.086529947817326,0.035647310316563],[-0.083738803863525,-0.031490560621023,-0.018366418778896]],[[0.017509896308184,0.044844567775726,0.018944576382637],[-0.0044297832064331,-0.0054355612955987,-0.059792790561914],[0.079643189907074,-0.060203406959772,-0.049507234245539]],[[0.04024388641119,-0.032351475208998,-0.0054819425567985],[0.013858936727047,0.05245403572917,0.024262243881822],[-0.046030927449465,-0.12842299044132,-0.013453893363476]],[[-0.0074988203123212,0.12057377398014,-0.011369892396033],[-0.075853116810322,0.045139916241169,-0.01575873605907],[-0.0013633558992296,-0.022051325067878,0.032538905739784]],[[0.043891169130802,8.1263577158097e-05,-0.10892160981894],[-0.045417800545692,-0.057760771363974,-0.10198707133532],[0.01759928278625,0.047572702169418,0.074426487088203]],[[0.077799774706364,-0.036004841327667,0.025106320157647],[0.16168214380741,0.15110516548157,0.0090063316747546],[-0.13996605575085,-0.016662161797285,0.040733233094215]],[[0.041997846215963,-0.041207369416952,0.034413289278746],[0.13502839207649,0.11472816765308,-0.021845443174243],[-0.079684868454933,-0.025642339140177,-0.095636673271656]],[[0.013705935329199,-0.10439571738243,-0.044795569032431],[0.034807618707418,-0.007459759246558,-0.04487357661128],[-0.041688207536936,-0.043926659971476,-0.017310328781605]],[[-0.028910016641021,-0.09484276920557,-0.072267889976501],[-0.025418125092983,0.030145391821861,-0.10607575625181],[-0.099801644682884,-0.017062794417143,-0.099451541900635]],[[0.083663284778595,0.12685592472553,-0.017832137644291],[-0.043796338140965,0.041667737066746,0.023368000984192],[-0.17235471308231,-0.060582492500544,0.0071100918576121]],[[0.12088479101658,0.048844777047634,-0.10520695149899],[0.068088792264462,0.089237213134766,-0.044056352227926],[0.016362566500902,0.030414119362831,0.01545335073024]],[[0.045245565474033,0.015323831699789,0.0078125083819032],[-0.052799478173256,-0.085594817996025,0.094174146652222],[0.069779224693775,-0.013938457705081,-0.07132113724947]],[[-0.0022811754606664,-0.15172155201435,-0.01814211346209],[-0.061351113021374,-0.039201878011227,0.050233155488968],[0.042175438255072,0.036257937550545,0.04552061483264]],[[0.081708677113056,0.00069581618299708,0.022008234634995],[0.019818808883429,-0.014886188320816,0.0065614678896964],[-0.0095338197425008,-0.088412627577782,-0.083960868418217]],[[-0.078698165714741,0.0097300764173269,0.019674645736814],[0.058903034776449,-0.074016042053699,0.015059947967529],[-0.040957078337669,-0.068687081336975,0.015669587999582]],[[-0.12692178785801,0.0001183216663776,-0.078181549906731],[-0.047246713191271,-0.02818419970572,-0.1005887016654],[-0.00072009762516245,-0.073205426335335,-0.023263158276677]],[[0.052179533988237,-0.063060507178307,-0.093402072787285],[-0.025235196575522,-0.085557818412781,-0.13333579897881],[-0.021736528724432,-0.04904618114233,-0.12402327358723]],[[-0.064272992312908,-0.015900352969766,0.029230762273073],[0.074544630944729,-0.00031675267382525,0.034827452152967],[-0.041378121823072,-0.045150969177485,-0.050212644040585]],[[-0.053292572498322,-0.092720292508602,0.033940333873034],[0.027961049228907,0.06426789611578,0.00203538662754],[-0.033125728368759,0.0028591156005859,-0.016739433631301]],[[-0.086456269025803,-0.15969514846802,0.037937350571156],[-0.021364977583289,-0.037894200533628,-0.011614628136158],[-0.024779066443443,-0.082679577171803,-0.060098223388195]],[[0.041560005396605,0.035496287047863,-0.15887545049191],[-0.18258209526539,-0.0026622076984495,-0.053633697330952],[-0.051905781030655,0.029000885784626,0.015456181019545]],[[0.12581364810467,0.012207250110805,0.031183315441012],[0.03831659629941,0.05984740331769,0.055320233106613],[-0.058610755950212,-0.072305925190449,-0.081734217703342]],[[-0.068225726485252,0.020562058314681,0.050852179527283],[0.018246214836836,0.016103951260448,-0.077598296105862],[-0.017746610566974,-0.058011267334223,-0.074500478804111]],[[-0.0083680301904678,-0.038179464638233,-0.084926389157772],[0.013986891135573,0.05470172315836,-0.099396385252476],[0.029050404205918,-0.12774920463562,-0.10870955139399]],[[-0.030785489827394,-0.036209773272276,0.022650692611933],[-0.0015029691858217,0.016024624928832,-0.00066955998772755],[-0.022790528833866,-0.028491193428636,-0.067108027637005]],[[0.020520962774754,-0.15294395387173,0.042663853615522],[-0.024324199184775,0.11908058822155,0.12681978940964],[-0.013363024219871,0.12700593471527,0.16298893094063]],[[0.060674730688334,0.10615814477205,0.083257734775543],[-0.11860702186823,-0.014616069383919,0.05178652331233],[-0.040035411715508,-0.14422760903835,-0.049332104623318]],[[-0.21399390697479,-0.1521370857954,0.064699470996857],[-0.047716960310936,0.11843079328537,0.093119531869888],[-0.032639175653458,-0.13159722089767,-0.049690034240484]],[[0.14351420104504,-0.038261227309704,0.029283614829183],[-0.07965162396431,-0.11435029655695,-0.032208614051342],[-0.030868027359247,-0.044540379196405,-0.067062616348267]],[[0.026841547340155,0.064911037683487,-0.092718124389648],[-0.018848359584808,-0.022665152326226,-0.019486023113132],[-0.049338154494762,0.078236877918243,-0.066434197127819]],[[-0.020836029201746,0.065061070024967,0.16368468105793],[0.026718154549599,0.0046453522518277,0.10711874812841],[-0.030791532248259,-0.044267080724239,0.061799045652151]],[[-0.01299365144223,-0.024970324710011,0.045716248452663],[-0.017108159139752,-0.092588528990746,-0.013917246833444],[-0.055801972746849,0.010677117854357,-0.18120129406452]],[[-0.016688982024789,-0.013472152873874,-0.16147768497467],[-0.088793881237507,-0.049882348626852,-0.079010851681232],[0.072362408041954,-0.053070068359375,-0.18163813650608]],[[-0.11918993294239,-0.049101568758488,-0.11922988295555],[0.032207787036896,0.071307584643364,-0.068336270749569],[-0.11609793454409,-0.039393797516823,-0.035270974040031]],[[-0.039690092206001,0.017131563276052,0.0710444226861],[-0.088602229952812,-0.061865143477917,-0.042827345430851],[0.12120221555233,-0.027549065649509,-0.1338499635458]],[[0.11071569472551,-0.016831694170833,0.0228092353791],[-0.049120720475912,-0.10513973981142,-0.056463152170181],[-0.13860014081001,-0.075799584388733,-0.043298695236444]],[[0.041175901889801,-0.030724024400115,-0.024063587188721],[0.268540173769,0.21474768221378,0.05458839982748],[0.010257124900818,-0.11032236367464,-0.17891331017017]],[[0.023762518540025,0.14205592870712,0.037182219326496],[-0.017548393458128,-0.012457760050893,0.0068249413743615],[0.049588177353144,-0.057217545807362,-0.0057441801764071]],[[-0.040331333875656,-0.050114922225475,0.13194665312767],[-0.057002861052752,-0.076550140976906,-0.061219397932291],[-0.041046164929867,0.095856294035912,0.033072639256716]],[[0.0092982798814774,0.023375168442726,-0.014132093638182],[-0.044073019176722,0.053967963904142,0.098805412650108],[0.084277361631393,0.021776709705591,-0.047337409108877]],[[0.086652375757694,0.01222525537014,0.014178956858814],[0.017574703320861,0.20040890574455,-0.074704527854919],[0.051990114152431,0.062537901103497,-0.007297505158931]],[[0.11351093649864,0.02826271392405,-0.061654552817345],[-0.21982572972775,0.024484876543283,0.095198072493076],[-0.0084934560582042,-0.16984233260155,0.044290073215961]],[[-0.0063269133679569,-0.052410248667002,-0.10831900686026],[-0.068080455064774,-0.05355117097497,-0.1041085422039],[-0.090866521000862,-0.083709418773651,0.026131771504879]],[[-0.031500667333603,0.055517114698887,0.021089788526297],[-0.078541107475758,-0.064081504940987,0.033838495612144],[0.086936891078949,0.019141774624586,0.00057643087347969]],[[-0.018022254109383,0.032382987439632,-0.056501396000385],[-0.053663577884436,-0.057888973504305,-0.062220592051744],[-0.070967264473438,0.00062557600904256,-0.13978695869446]],[[-0.11374993622303,0.092101156711578,0.043628986924887],[-0.069350317120552,-0.065088421106339,-0.046901248395443],[0.026415970176458,0.039498895406723,0.046285819262266]],[[-0.22716768085957,-0.17061822116375,-0.1492760181427],[-0.083853647112846,0.0062350886873901,-0.052497565746307],[0.037449941039085,0.014469391666353,0.052169233560562]],[[0.11237306147814,0.0013161620590836,0.038693800568581],[0.036840155720711,0.016341159120202,0.094478383660316],[-0.27590277791023,0.03229221329093,0.11140294373035]],[[0.15220527350903,-0.11878652125597,0.013702783733606],[0.032160624861717,0.041854683309793,0.036136690527201],[-0.09860972315073,-0.08809532225132,0.05822704359889]],[[0.071047529578209,0.1060741096735,-0.072866715490818],[-0.096440374851227,0.065236307680607,0.079097121953964],[-0.12444448471069,-0.19972415268421,0.015644021332264]],[[-0.049866244196892,0.094618052244186,0.089602038264275],[0.038152858614922,-0.042680598795414,0.10839814692736],[-0.14226819574833,0.027267016470432,0.12370437383652]],[[-0.067077651619911,-0.11414295434952,0.00045814664917998],[0.11407289654016,-0.056367848068476,0.018411502242088],[0.014465169981122,0.11763492226601,-0.0079479068517685]],[[-0.077952913939953,0.057270660996437,0.069801777601242],[0.037222772836685,-0.057816598564386,0.019797654822469],[0.033985503017902,0.060079302638769,-0.09096621721983]],[[0.17909647524357,0.067994937300682,-0.023778257891536],[0.030818201601505,0.15384516119957,0.092774875462055],[-0.26433876156807,-0.044613115489483,0.07594708353281]],[[-0.072804279625416,-0.005670411977917,0.11785597354174],[-0.029314199462533,-0.054059725254774,0.011411614716053],[-0.046301547437906,0.020556202158332,-0.040369749069214]],[[-0.031748369336128,0.049532230943441,-0.034092053771019],[0.022532591596246,0.09570125490427,0.080729648470879],[0.055047679692507,0.085107639431953,0.006330787204206]],[[-0.072307392954826,0.0070133740082383,-0.0044204676523805],[-0.094075202941895,-0.048093967139721,0.049841869622469],[0.086707726120949,0.032037451863289,0.091061949729919]],[[-0.084162160754204,-0.058096382766962,0.0022139605134726],[-0.028353333473206,-0.071332715451717,-0.0056461337953806],[0.046615809202194,-0.069990649819374,-0.064309671521187]],[[-0.02076100744307,0.013963400386274,-0.012745443731546],[0.033581264317036,0.047557856887579,-0.059233672916889],[0.093280643224716,0.033027861267328,0.065611079335213]],[[0.21235008537769,0.077418722212315,-0.052141517400742],[-0.018704213202,0.12818239629269,0.033279433846474],[0.048900693655014,-0.056091215461493,0.03082992695272]],[[-0.0069048465229571,0.018814818933606,-0.0086552919819951],[-0.073035255074501,0.0079305600374937,-0.12978658080101],[-0.10511706024408,-0.05721352994442,-0.16547407209873]],[[-0.10190510004759,-0.056858111172915,0.064342595636845],[-0.006010846234858,0.032901179045439,0.10238833725452],[-0.0094536123797297,0.038998354226351,0.028290437534451]],[[-0.015134639106691,-0.094506628811359,-0.11287052184343],[0.097292318940163,-0.02130882255733,-0.063848465681076],[-0.0093775410205126,0.074957475066185,0.045269921422005]],[[0.0024949489161372,0.034907888621092,-0.086490780115128],[-0.13966129720211,-0.13973450660706,-0.15148049592972],[-0.0037214965559542,-0.041553799062967,-0.034044094383717]],[[-0.003961181268096,0.026988584548235,0.0028685918077826],[0.17185732722282,-0.081525929272175,0.007855162024498],[-0.0012059318833053,0.01577134616673,-0.034227646887302]],[[-0.0053374408744276,-0.0064304312691092,-0.161048412323],[0.095830075442791,-0.029505595564842,-0.030333947390318],[-0.0906081199646,0.053303528577089,0.0014852787135169]],[[0.050288338214159,0.021663947030902,0.091120921075344],[-0.015174732543528,-0.068213142454624,-0.080789305269718],[0.10785105824471,0.0091494210064411,-0.072469316422939]],[[0.02456471696496,0.13316555321217,0.18046130239964],[-0.086385950446129,-0.066757790744305,0.02450281009078],[-0.11623449623585,-0.056751202791929,-0.15849696099758]],[[0.15161624550819,0.0074766334146261,0.022324349731207],[-0.0078047658316791,0.0043674311600626,-0.013433361425996],[-0.10652207583189,-0.06495364010334,-0.036643631756306]],[[0.083541318774223,0.00500029604882,-0.093025997281075],[0.035719204694033,0.019575016573071,0.18523745238781],[-0.040516659617424,-0.0091916443780065,0.068705298006535]],[[-0.065121687948704,0.0088871465995908,0.12467440962791],[-0.076504737138748,-0.13009689748287,-0.048907227814198],[0.053968522697687,0.042084611952305,-0.00077606906415895]],[[-0.077594920992851,0.21934868395329,0.18178801238537],[0.031352084130049,0.013851832598448,0.17956379055977],[0.032293863594532,-0.028540533035994,-0.087247975170612]],[[0.025700002908707,-0.0057041579857469,-0.03013726323843],[-0.013660002499819,-0.052283696830273,0.080064848065376],[0.045088943094015,-0.086777672171593,0.057509664446115]],[[-0.020020799711347,-0.00037532649002969,0.028483273461461],[0.017835943028331,0.003972239792347,0.087821900844574],[0.086032919585705,-0.017085701227188,-0.05495573207736]],[[-0.010195991024375,-0.086590453982353,-0.048172891139984],[0.0898167937994,0.014438507147133,0.024175694212317],[0.10020115226507,0.039579406380653,-0.04188135266304]],[[0.010538315400481,0.10323329269886,0.076204657554626],[0.028021963313222,0.093585908412933,0.014123265631497],[0.018923096358776,-0.079840712249279,-0.031884633004665]],[[0.011753654107451,-0.062712490558624,0.087496288120747],[-0.021050056442618,-0.013108108192682,-0.10821612179279],[-0.1083737835288,-0.00040606572292745,0.068132005631924]],[[-0.012990726158023,0.014577257446945,-0.058322452008724],[0.074465289711952,0.073662206530571,0.062796898186207],[-0.0085175028070807,0.038149692118168,-0.029620474204421]],[[-0.046841911971569,-0.065972335636616,-0.10302905738354],[-0.018977679312229,0.096454761922359,0.087002620100975],[-0.025628328323364,-0.01327983289957,0.002064888831228]],[[-0.18640594184399,-0.11219204217196,-0.013328525237739],[-0.079912729561329,-0.059515852481127,-0.040738832205534],[0.10015528649092,0.1436910033226,0.08312015235424]],[[-0.010046502575278,0.023033652454615,-0.049338579177856],[-0.024820463731885,-0.068399079144001,-0.0005674937274307],[0.071216277778149,-0.026610855013132,0.0038505119737238]],[[-0.083777137100697,0.057372000068426,0.015327426604927],[-0.10708571970463,-0.11471208184958,0.021449137479067],[0.18797086179256,0.10697591304779,0.01211188454181]],[[0.23560126125813,0.00036008603638038,0.072647742927074],[0.11392875760794,-0.060918118804693,0.013741821050644],[0.11750938743353,0.020022090524435,-0.07331570237875]],[[0.058156341314316,-0.015565649606287,0.009641058743],[0.019168823957443,-0.019846836104989,-0.070297978818417],[-0.010771233588457,-0.049170020967722,-0.11483078449965]],[[-0.033717878162861,-0.067336440086365,-0.072230562567711],[0.03735438361764,0.00160693959333,-0.083772547543049],[0.020048961043358,0.088692843914032,0.037612579762936]],[[-0.079558253288269,-0.031939655542374,-0.029121389612556],[-0.024420535191894,-0.046846468001604,-0.09566742181778],[0.067218862473965,0.072957374155521,-0.032543014734983]],[[0.052667211741209,-0.050479020923376,-0.10459333658218],[0.011014685034752,-0.035305988043547,-0.050425689667463],[-0.18474814295769,0.11770705133677,-0.0033238548785448]],[[0.025459123775363,-0.0021289484575391,-0.042682506144047],[0.010184097103775,-0.030242197215557,-0.11109831929207],[-0.046176057308912,-0.012809459120035,-0.022063178941607]],[[-0.07573939114809,0.1533177793026,-0.24220645427704],[-0.091645397245884,-0.11837330460548,0.021085189655423],[0.056887187063694,-0.016745256260037,0.037972420454025]],[[-0.14842060208321,-0.080816954374313,-0.098893865942955],[0.059819214046001,0.12240704149008,0.066589772701263],[-0.073883958160877,-0.038168974220753,-0.16990618407726]],[[-0.02814052067697,0.021996108815074,-0.010409006848931],[0.022862082347274,-0.0032269433140755,-0.026671739295125],[0.020983453840017,-0.08354078233242,-0.11543553322554]],[[-0.057643998414278,-0.0011922534322366,0.096976563334465],[0.00075557047966868,0.050134595483541,0.017736231908202],[-0.0020042767282575,0.14527678489685,0.012156646698713]],[[0.036015879362822,0.0058211158029735,0.0027272612787783],[-0.073279410600662,-0.026219721883535,0.0090909516438842],[0.099940545856953,0.025652881711721,0.0041393348947167]],[[0.15569365024567,0.081490375101566,-0.017081242054701],[-0.026337634772062,0.144894272089,0.17712400853634],[0.019164107739925,-0.08478169888258,-0.0098189627751708]],[[0.014922161586583,0.039773900061846,0.14752227067947],[-0.016295578330755,0.015939688310027,-0.1139372959733],[-0.12961314618587,-0.16605859994888,-0.18485082685947]],[[0.084827154874802,0.030864749103785,-0.20320416986942],[-0.046137265861034,-0.051260229200125,-0.0077144848182797],[0.0026642654556781,-0.054577518254519,-0.052849836647511]],[[-0.055054850876331,0.11685390770435,-0.030849970877171],[-0.068480871617794,-0.020542163401842,-0.0070245559327304],[0.036039378494024,-0.015922915190458,-0.036649711430073]],[[0.013474298641086,0.003216820769012,-0.060787789523602],[-0.048460993915796,-0.05651868134737,-0.003748178249225],[0.057710025459528,0.085521645843983,-0.0081238457933068]],[[0.071104161441326,0.084236472845078,0.13023118674755],[-0.063097305595875,-0.023182265460491,0.050943866372108],[0.024078825488687,0.030794551596045,0.046905599534512]],[[-0.034883856773376,-0.053274542093277,0.066399373114109],[-0.012482489459217,-0.052893929183483,0.002455591224134],[0.010298079811037,0.081222765147686,-0.023991266265512]],[[0.050516333431005,0.059935860335827,0.079821012914181],[-0.028037086129189,-0.079955816268921,-0.035196274518967],[0.0098776603117585,-0.00098188489209861,-0.1172794252634]],[[0.0092281131073833,0.083921477198601,-0.00084156257798895],[0.10033039748669,0.00074299820698798,0.0039506191387773],[-0.0042650420218706,-0.047759719192982,-0.090928643941879]]],[[[-0.031482826918364,0.0051818052306771,0.00045100628631189],[5.371832230594e-06,-0.045762348920107,-0.048208981752396],[-0.09623471647501,-0.034301750361919,0.077852658927441]],[[-0.07428602874279,-0.036784864962101,-0.080946713685989],[0.089676223695278,-0.18376445770264,-0.25256967544556],[-0.1371735483408,-0.046189941465855,-0.020064095035195]],[[-0.015954913571477,0.04768194258213,-0.021057756617665],[0.018255580216646,0.0030404645949602,-0.030546620488167],[-0.060337774455547,0.069629654288292,0.060854498296976]],[[-0.041210863739252,-0.031020628288388,-0.12633095681667],[-0.028154920786619,0.041967064142227,-0.048278164118528],[-0.051540859043598,-0.043019115924835,-0.036295510828495]],[[0.040374498814344,-0.05474104359746,-0.069867886602879],[-0.027264442294836,0.060908827930689,-0.012426028028131],[0.043025393038988,-0.070283800363541,-0.012644802220166]],[[-0.023340068757534,0.046335872262716,0.00034889148082584],[-0.13333685696125,-0.15174631774426,-0.092604883015156],[0.14990980923176,0.16388881206512,0.16097520291805]],[[0.017003424465656,0.0038303760811687,-0.14581604301929],[-0.13135613501072,-0.1047373265028,-0.045942071825266],[0.096153095364571,-0.076071098446846,-0.014553953893483]],[[0.05190834030509,-0.042647249996662,0.03576522693038],[-0.048413123935461,0.10050059854984,-0.070990093052387],[0.06026915460825,0.082517571747303,0.1149981841445]],[[0.0099219055846334,0.08994734287262,-0.031082360073924],[-0.036513965576887,0.052884180098772,-0.012675527483225],[0.28532755374908,0.072618469595909,-0.013931349851191]],[[0.024375848472118,-0.14184015989304,-0.0076550664380193],[-0.03352552652359,-0.11377841979265,-0.1443225890398],[0.077855601906776,-0.11264608055353,0.0040868739597499]],[[-0.15627954900265,-0.036528393626213,-0.14048424363136],[0.094890207052231,0.08154558390379,0.26107379794121],[0.033656042069197,-0.23004770278931,-0.14700256288052]],[[-0.2831711769104,-0.18535371124744,0.16042259335518],[-0.0046996991150081,-0.032696221023798,-0.0047314963303506],[0.015524321235716,-0.0096753565594554,0.035132370889187]],[[0.1094511076808,0.1232041940093,0.039016149938107],[-0.069975435733795,0.055341996252537,0.10985842347145],[0.0097363060340285,0.051213156431913,-0.16333089768887]],[[0.023271232843399,-0.019667267799377,0.043954957276583],[0.014466341584921,-0.12395188212395,-0.24366772174835],[0.081528224050999,-0.040627505630255,-0.071307547390461]],[[-0.0401974581182,0.045442186295986,0.032045491039753],[-0.036179590970278,-0.16010054945946,-0.10062319785357],[-0.081562124192715,0.066677898168564,0.21658651530743]],[[-0.014020158909261,-0.022277437150478,-0.022134328261018],[-0.02223901450634,-0.093306221067905,-0.061385281383991],[-0.16663412749767,-0.029050797224045,-0.0029305287171155]],[[-0.067622296512127,0.098727345466614,0.26823228597641],[0.019352078437805,-0.15964543819427,-0.34472399950027],[-0.028241526335478,-0.014556163921952,0.03499923273921]],[[-0.033464316278696,0.071448855102062,0.037354696542025],[0.02245113439858,0.070408873260021,-0.047731321305037],[0.013822832144797,0.10881082713604,0.19543631374836]],[[0.016976494342089,0.021655501797795,0.22859932482243],[0.076478451490402,0.070928350090981,0.14046692848206],[-0.017635615542531,0.0061415648087859,-0.020360484719276]],[[0.0075584636069834,0.10427122563124,0.07731582224369],[-0.084905467927456,0.034523844718933,0.072103232145309],[-0.0043982318602502,0.019737988710403,-0.057028841227293]],[[0.022833283990622,-0.073619566857815,-0.095965504646301],[0.02116304077208,-0.027439480647445,-0.07936255633831],[-0.16339822113514,-0.10628572106361,-0.031825169920921]],[[0.11892118304968,0.11330097168684,0.097714602947235],[-0.02065584808588,-0.024994552135468,-0.032114516943693],[-0.0058096218854189,-0.0099334781989455,-0.00096395931905136]],[[-0.034048017114401,-0.10487368702888,-0.10595580935478],[-0.08148617297411,-0.0067059933207929,0.067744612693787],[0.026114964857697,-0.10508409142494,-0.092054843902588]],[[-0.12201002240181,-0.1026499569416,0.060395408421755],[0.034823063760996,-0.010667057707906,0.043919548392296],[-0.026788176968694,-0.15908259153366,-0.14175686240196]],[[-0.00020455376943573,-0.0014072430785745,-0.04535635560751],[-0.0010847764788195,-0.035652592778206,-0.12114143371582],[0.062493041157722,0.15386728942394,0.27607679367065]],[[-0.016763204708695,-0.025398982688785,-0.096700899302959],[0.069923207163811,0.082271553575993,0.055717084556818],[0.028123334050179,-0.059877716004848,-0.081077851355076]],[[-0.16191835701466,-0.15655915439129,-0.076190672814846],[0.24628046154976,0.10014494508505,0.045000366866589],[0.061567302793264,-0.10742358118296,0.0027475417591631]],[[-0.11455754190683,-0.095201976597309,-0.071561269462109],[0.11823135614395,0.074206739664078,0.07352152466774],[-0.10466397553682,-0.035890482366085,-0.088352546095848]],[[0.10484934598207,0.015469253063202,0.04283544421196],[-0.10047400742769,-0.012754399329424,-0.053219400346279],[-0.10634867846966,-0.061283200979233,-0.096362374722958]],[[0.027949582785368,0.082142271101475,-0.021865332499146],[0.063490375876427,-0.083476305007935,0.045442763715982],[0.042662978172302,-0.023465985432267,0.094238698482513]],[[-0.108931183815,-0.1350069642067,-0.13282534480095],[-0.32093948125839,-0.20649297535419,0.067591682076454],[0.064989790320396,0.10179959237576,-0.15732069313526]],[[0.028465632349253,0.12199274450541,-0.016314119100571],[0.017884159460664,0.10290931165218,0.06434266269207],[-0.039187137037516,-0.058469295501709,-0.12268932908773]],[[0.079676255583763,0.0072616771794856,-0.0060473675839603],[0.027393840253353,0.076542116701603,0.086495421826839],[0.12096229195595,0.10113071650267,0.09195863455534]],[[-0.066660523414612,-0.20600652694702,-0.23257420957088],[-0.08284093439579,-0.039372678846121,0.071238942444324],[-0.09664573520422,-0.072693549096584,-0.088465340435505]],[[0.026431342586875,-0.004590954631567,-0.030438762158155],[-0.028188386932015,-0.047855608165264,-0.23936745524406],[-0.069705039262772,0.045641265809536,0.12198883295059]],[[-0.031034711748362,0.13437451422215,0.17892780900002],[0.016364503651857,-0.049939081072807,-0.0042951428331435],[-0.020229740068316,-0.0037315774243325,-0.065334178507328]],[[-0.08207780122757,-0.13647755980492,-0.054617889225483],[0.040164206176996,0.11305200308561,0.13402409851551],[0.16482003033161,0.10469211637974,0.10915275663137]],[[-0.048320945352316,0.056115292012691,0.049280099570751],[0.0060320147313178,-0.11695371568203,-0.096997044980526],[-0.12002771347761,0.09055782109499,0.29867109656334]],[[-0.077369831502438,-0.10871195793152,0.09186814725399],[-0.11294360458851,-0.15671654045582,-0.15458132326603],[0.017548713833094,0.023185469210148,0.0025600420776755]],[[-0.005933003500104,0.0065250666812062,-0.18257042765617],[-0.026452951133251,-0.026406036689878,0.12590312957764],[-0.0091134505346417,-0.095321975648403,-0.16471695899963]],[[0.062119200825691,-0.18406029045582,-0.13422974944115],[-0.018894387409091,-0.030150014907122,-0.19928817451],[0.062312096357346,0.046841561794281,0.33221152424812]],[[0.13189041614532,0.085136473178864,0.075535416603088],[-0.023286079987884,0.054722458124161,0.16363917291164],[0.12047258764505,0.072550050914288,-0.012759969569743]],[[-0.086582630872726,0.042522300034761,-0.17444670200348],[0.019177356734872,-0.0528131313622,-0.055524177849293],[-0.076886385679245,-0.036101650446653,-0.12694723904133]],[[0.080447755753994,-0.031711176037788,0.049196965992451],[0.046955637633801,-0.076559215784073,-0.028421362861991],[-0.07105065882206,-0.048869729042053,-0.0077956290915608]],[[-0.1184349283576,0.021545177325606,0.12082956731319],[0.013983014971018,0.004705497995019,-0.0046130875125527],[-0.11500864475965,-0.0066383797675371,-0.038775973021984]],[[-0.25422686338425,-0.18812462687492,0.045626059174538],[0.070678994059563,0.0022667769808322,-0.11191166192293],[0.029830571264029,0.031934950500727,-0.053350429981947]],[[0.06754843890667,0.051256828010082,-0.024331593886018],[0.18345774710178,0.078010134398937,0.0073164724744856],[0.024543160572648,-0.084493406116962,-0.097451560199261]],[[-0.12244842946529,-0.057759243994951,0.023342890664935],[0.14618393778801,-0.018069626763463,-0.22747406363487],[-0.047495175153017,-0.014837052673101,-0.06475093215704]],[[-0.032175794243813,0.11404260993004,-0.0082388427108526],[-0.13517008721828,0.078010387718678,0.23879797756672],[0.12339189648628,-0.076538726687431,0.082291588187218]],[[-0.032685451209545,-0.20872189104557,-0.14665731787682],[-0.0048544649034739,-0.034244026988745,-0.050326861441135],[-0.18040059506893,-0.089947700500488,-0.10528991371393]],[[0.046098332852125,-0.087530493736267,0.0182802118361],[0.0043944860808551,-0.044727135449648,-0.1765880137682],[0.0096404710784554,0.099883668124676,0.16626091301441]],[[-0.10991782695055,-0.08269839733839,0.010217787697911],[0.099419102072716,0.0076820105314255,-0.018020737916231],[0.059018298983574,0.054001461714506,-0.056912787258625]],[[0.053112763911486,-0.023313095793128,-0.034942876547575],[-0.070484720170498,-0.028637126088142,0.024996381253004],[-0.018798897042871,-0.056577533483505,0.030615471303463]],[[-0.11813829094172,-0.097081810235977,-0.098050989210606],[-0.14113439619541,0.016673183068633,-0.046261761337519],[-0.003617606125772,-0.086460545659065,-0.14135800302029]],[[-0.018513487651944,0.014425839297473,0.021434284746647],[-0.015254467725754,-0.024897811934352,-0.0010401343461126],[-0.079145073890686,-0.046719588339329,-0.098369382321835]],[[0.0521653406322,-0.061290673911572,-0.090761803090572],[0.0014693146804348,-0.026716096326709,-0.035104729235172],[0.18633018434048,-0.059234976768494,-0.043903037905693]],[[0.18737334012985,0.071265377104282,-0.042780790477991],[-0.014206627383828,0.074852310121059,-0.032819412648678],[0.27350875735283,-0.022036639973521,-0.079988099634647]],[[0.0051461975090206,-0.0033817966468632,-0.09914842993021],[0.0070073581300676,-0.2072748541832,-0.22271291911602],[-0.19458900392056,-0.24454754590988,-0.17571675777435]],[[-0.026528645306826,0.02326126024127,-0.027162851765752],[-0.095135569572449,-0.18509148061275,-0.058940928429365],[0.1751860678196,-0.0041565652936697,0.034764759242535]],[[0.15622888505459,0.09018499404192,-0.010425496846437],[0.010649720206857,-0.087289534509182,-0.048955731093884],[-0.070557154715061,-0.093629829585552,-0.20313914120197]],[[0.081049777567387,-0.087670154869556,-0.016882359981537],[-0.0075248759239912,-0.13238576054573,-0.10083101689816],[0.064577922224998,0.023784270510077,0.042396266013384]],[[0.13154998421669,0.04164494946599,0.091034919023514],[-0.070023529231548,-0.027254935353994,0.13930977880955],[-0.029283359646797,-0.29348117113113,-0.11555106937885]],[[-0.072333671152592,-0.069384016096592,0.01495810970664],[0.088636346161366,0.082145497202873,0.18496738374233],[-0.14641582965851,0.030059937387705,-0.017510831356049]],[[0.12741151452065,0.02681328356266,-0.031037881970406],[0.082882545888424,0.088225461542606,0.018870308995247],[0.03475658595562,0.021487085148692,-0.12490351498127]],[[0.12948349118233,-0.04174966365099,0.043330401182175],[-0.008763313293457,0.035566624253988,0.088126204907894],[-0.017766069620848,-0.067517787218094,-0.093836762011051]],[[-0.10311127454042,-0.017522601410747,0.0015698664356023],[0.011687274090946,-0.014078461565077,0.0048284353688359],[-0.048686437308788,-0.078552395105362,-0.094888679683208]],[[-0.052317872643471,-0.062003836035728,0.017344743013382],[-0.019477538764477,-0.10109745711088,-0.14516513049603],[-0.043244928121567,0.046470772475004,-0.027474945411086]],[[-0.11157719045877,-0.046803906559944,0.025211399421096],[0.10158620774746,0.16234643757343,0.081874586641788],[-0.022404355928302,-0.078770935535431,-0.014781494624913]],[[-0.0081981299445033,-0.0088720610365272,0.0023786132223904],[0.09405305981636,0.078205838799477,-0.047585669904947],[0.1078532859683,0.068647742271423,-0.021425474435091]],[[-0.060616623610258,-0.13319362699986,-0.12039983272552],[-0.064645186066628,0.16663648188114,0.40522655844688],[0.13020335137844,-0.13010261952877,-0.29047885537148]],[[-0.093075409531593,-0.031739674508572,0.0026368168182671],[0.098854251205921,0.056640334427357,0.27158433198929],[0.056312378495932,0.097913086414337,-0.17894299328327]],[[0.11309692263603,0.17972983419895,0.17861048877239],[-0.021201783791184,0.013249156065285,0.0059865480288863],[0.067668311297894,-0.046200346201658,0.064142018556595]],[[0.12090067565441,-0.083719812333584,0.1055218949914],[-0.057045768946409,-0.1113435998559,-0.073025517165661],[-0.063716553151608,-0.083041101694107,-0.17533031105995]],[[0.11464077234268,0.081663049757481,-0.0074282037094235],[-0.037240657955408,0.10896997898817,0.0059261294081807],[-0.095814801752567,-0.012674315832555,-0.019874947145581]],[[0.0076549286022782,-0.04422352463007,-0.14640679955482],[0.0023317174054682,-0.090727955102921,-0.13530060648918],[0.00012466334737837,-0.038228340446949,-0.16023553907871]],[[0.07255057990551,0.10979746282101,0.088474854826927],[-0.061298355460167,0.083460330963135,0.045520506799221],[0.10677684098482,0.0044790832325816,-0.0016396775608882]],[[-0.16484032571316,-0.14636425673962,-0.15704552829266],[-0.074925005435944,-0.05968788638711,0.15042172372341],[0.089069001376629,0.010001440532506,-0.0083179846405983]],[[0.036545280367136,-0.027516324073076,-0.018391935154796],[-0.027196928858757,-0.017927546054125,-0.16757579147816],[-0.049278974533081,0.020814888179302,0.011510939337313]],[[0.1874268501997,0.24759791791439,0.10660246759653],[-0.0099686486646533,0.052977256476879,0.22645278275013],[-0.022479567676783,-0.06718472391367,0.015383921563625]],[[0.077738001942635,0.10391908884048,0.029316807165742],[-0.1900459676981,-0.12731310725212,0.046213511377573],[0.097499668598175,-0.020716767758131,0.051689401268959]],[[-0.19908317923546,-0.13757222890854,0.025782553479075],[-0.039568599313498,-0.15273036062717,-0.070843316614628],[-0.077330581843853,-0.018214073032141,0.067255236208439]],[[-0.26023983955383,-0.036235809326172,-0.22863303124905],[-0.10781913250685,-0.042223323136568,-0.11674004793167],[-0.23827317357063,-0.091492958366871,0.072248391807079]],[[-0.030648654326797,0.047985732555389,-0.01215404458344],[0.074808828532696,-0.025293312966824,-0.066220514476299],[-0.17690381407738,-0.02118475921452,0.13356050848961]],[[-0.13592910766602,-0.018373651430011,0.02269383892417],[0.082093931734562,-0.024827294051647,-0.012541886419058],[0.06994803994894,-0.012172168120742,0.11544814705849]],[[0.045172873884439,0.1691892594099,0.10661204904318],[0.068661659955978,-0.039646215736866,-0.24381397664547],[0.0025250464677811,-0.069303266704082,-0.011044771410525]],[[-0.071850337088108,-0.077762074768543,-0.1183871999383],[0.02044533751905,-0.06903712451458,-0.21048054099083],[0.087919779121876,0.018153632059693,0.054832894355059]],[[-0.050141919404268,-0.092343419790268,-0.054865565150976],[0.15321937203407,-0.059808969497681,-0.08188059926033],[0.037060558795929,0.054749347269535,0.17213143408298]],[[0.04590617865324,-0.048407200723886,-0.058422524482012],[0.060185499489307,0.092241629958153,0.045152556151152],[-0.060640782117844,-0.049587652087212,-0.04473103582859]],[[-0.12565523386002,-0.060956999659538,-0.16021643579006],[0.10583973675966,0.028697350993752,0.01207219529897],[-0.072073616087437,0.0045500639826059,0.0064475177787244]],[[0.028312776237726,0.0032117604278028,0.034939784556627],[-0.041849236935377,-0.036472219973803,-0.025662481784821],[0.10041829943657,0.08882998675108,0.076099798083305]],[[0.093576893210411,-0.02416299469769,0.022512074559927],[0.070249825716019,-0.047841530293226,-0.2326608300209],[-0.01216721534729,-0.042251624166965,0.091905348002911]],[[0.13437785208225,0.15109872817993,0.058769781142473],[-0.14583434164524,-0.058428272604942,-0.0096240406855941],[-0.14971525967121,-0.13329070806503,-0.12585355341434]],[[-0.094064384698868,-0.049169760197401,-0.030401919037104],[0.1197140365839,-0.028460692614317,0.28646859526634],[0.0028046332299709,0.068189717829227,-0.048504862934351]],[[0.11575519293547,0.16197225451469,0.14955677092075],[-0.091400049626827,0.064061097800732,0.034375552088022],[-0.10103264451027,-0.017632709816098,-0.11726471781731]],[[0.087300889194012,-0.013950772583485,0.20238427817822],[-0.083755195140839,0.0037307031452656,0.01960732601583],[0.12046006321907,-0.11749602854252,-0.18842463195324]],[[-0.09453347325325,0.17695571482182,0.41620117425919],[0.057979941368103,-0.069457471370697,-0.028349008411169],[-0.034381479024887,0.044560138136148,0.17109140753746]],[[-0.12855131924152,-0.10168205201626,-0.036390569061041],[0.079854190349579,0.078374437987804,0.15262416005135],[0.0096056666225195,-0.048822775483131,0.021191598847508]],[[-0.2132104486227,0.021498143672943,0.31832846999168],[0.066122829914093,0.025657856836915,-0.14220671355724],[0.017559273168445,-0.05662427470088,-0.072234004735947]],[[-0.062420476227999,-0.016280133277178,-0.045901585370302],[0.077215231955051,0.12084496766329,-0.00047506578266621],[-0.011990290135145,0.14855869114399,0.041602753102779]],[[0.026506222784519,0.030996311455965,0.19375862181187],[0.24361801147461,0.083811283111572,0.047580219805241],[0.074633121490479,0.17144864797592,-0.03640341386199]],[[0.017191395163536,-0.13169953227043,-0.17222511768341],[-0.11518762260675,-0.050145484507084,0.10073766857386],[-0.077939264476299,-0.085333868861198,-0.07599700242281]],[[-0.082529850304127,0.05733884871006,0.083593383431435],[0.020016089081764,0.11047852784395,0.011072328314185],[-0.030853055417538,0.017227211967111,-0.00417844299227]],[[-0.088164910674095,0.01303484942764,0.091774754226208],[-0.048280838876963,0.02974995970726,0.042825937271118],[0.20190885663033,-0.039238777011633,-0.12221013754606]],[[0.021413242444396,-0.0158004257828,0.060147743672132],[-0.17815952003002,-0.0991265848279,-0.16526101529598],[0.2653911113739,0.14984719455242,0.12041674554348]],[[0.038536477833986,0.18717497587204,0.10419162362814],[-0.15201213955879,-0.21104879677296,-0.23937258124352],[0.036089051514864,0.013469837605953,-0.029325477778912]],[[0.073428578674793,0.047590266913176,-0.052373547106981],[0.0041948859579861,-0.058951750397682,-0.13080430030823],[-0.021501269191504,-0.045689523220062,0.10168106853962]],[[-0.13332605361938,-0.02081985399127,-0.040914446115494],[-0.093556970357895,0.011845545843244,0.12870544195175],[-0.11719214916229,-0.2329158782959,-0.043734561651945]],[[-0.036942049860954,0.16164150834084,0.075302943587303],[-0.10660342872143,0.012421581894159,0.18029560148716],[-0.051791179925203,0.0012343598064035,0.10602556169033]],[[0.037494201213121,0.012951358221471,-0.038293566554785],[0.0036617077421397,0.029807576909661,-0.094271324574947],[-0.16120776534081,-0.011554129421711,-0.030677210539579]],[[-0.14513485133648,-0.014208681881428,-0.063746459782124],[-0.066891103982925,-0.0081999972462654,-0.0060090371407568],[0.042410995811224,0.070165701210499,-0.14121636748314]],[[-0.044585783034563,-0.031722620129585,0.032420311123133],[0.044536247849464,0.0163903683424,-0.010444510728121],[-0.025859082117677,-0.0070029837079346,0.013672007247806]],[[0.052960202097893,0.0071170786395669,0.097391568124294],[0.11059363186359,0.19623105227947,0.14340031147003],[0.00580869987607,-0.096832692623138,-0.19536581635475]],[[0.13620840013027,-0.038354773074389,-0.18146885931492],[0.18064711987972,0.035025741904974,-0.16090169548988],[-0.10589621216059,-0.022834494709969,0.083174258470535]],[[0.033666633069515,0.030392151325941,-0.049342885613441],[-0.0095163891091943,0.029414974153042,0.059365186840296],[-0.14872051775455,0.15188723802567,0.32081857323647]],[[0.093370720744133,0.046694986522198,-0.0051172124221921],[-0.01542554423213,0.10219970345497,0.041832134127617],[-0.083595432341099,-0.040969744324684,-0.071245551109314]],[[-0.15281283855438,-0.1533063352108,-0.03369377925992],[0.044005382806063,0.10891503840685,0.28214132785797],[-0.039164315909147,-0.022406963631511,-0.014988821931183]],[[0.036016814410686,-0.035619258880615,-0.17369219660759],[-0.038061939179897,0.081019572913647,-0.04161050543189],[0.03620259091258,0.030850494280457,-0.051410179585218]],[[-0.13879483938217,-0.21064677834511,-0.070543892681599],[0.3613568842411,0.2350800037384,0.29985803365707],[0.18123844265938,-0.030678953975439,-0.2581872344017]],[[0.0035734272096306,-0.024727715179324,-0.073110356926918],[-0.043080318719149,0.081770025193691,-0.036279920488596],[-0.059719305485487,-0.041969772428274,-0.052129711955786]],[[0.26230496168137,0.11512803286314,0.028823219239712],[-0.094144135713577,-0.063817292451859,-0.015310648828745],[-0.062329117208719,0.020875940099359,-0.050695929676294]],[[-0.087101720273495,-0.060986544936895,-0.009701881557703],[-0.0042856940999627,0.084017105400562,0.051049582660198],[-0.031205456703901,-0.036756653338671,0.0050759189762175]],[[0.044243577867746,0.030177725479007,-0.051234714686871],[0.092756077647209,0.10681673139334,0.067895941436291],[0.042560633271933,-0.066648967564106,0.091452300548553]],[[-0.11984202265739,-0.11530259996653,0.009079223498702],[-0.14468413591385,-0.1292182803154,-0.16790135204792],[-0.26842314004898,-0.16960056126118,-0.13772043585777]],[[0.071424536406994,0.11043810844421,0.030683513730764],[0.025891024619341,-0.053222548216581,-0.016060000285506],[-0.17517583072186,-0.031286314129829,-0.014212415553629]],[[0.032382726669312,-0.14106121659279,-0.21984554827213],[-0.02673964202404,-0.01137226074934,0.12002655863762],[0.012725175358355,0.011804843321443,-0.12313392758369]],[[-0.21914900839329,-0.25619965791702,-0.031296223402023],[-0.092687889933586,-0.066331654787064,0.09543240070343],[-0.12504768371582,-0.064386561512947,-0.12554332613945]],[[0.047872766852379,0.027704833075404,0.025443805381656],[-0.071133904159069,-0.075585946440697,-0.016988039016724],[-0.0027310946024954,0.086064644157887,0.12417463958263]],[[0.047281347215176,0.043836187571287,0.01318549644202],[0.11974508315325,-0.0070515968836844,0.12030766904354],[-0.082943581044674,-0.021898975595832,0.0050008576363325]]],[[[0.032047659158707,-0.0066349543631077,-0.014533607289195],[-0.10494861006737,-0.021722489967942,-0.056011877954006],[-0.13788184523582,-0.008509655483067,0.090498149394989]],[[-0.067959204316139,-0.068324856460094,-0.12605766952038],[-0.032583583146334,0.012083947658539,-0.27027601003647],[-0.047973725944757,-0.0078299650922418,0.086414754390717]],[[0.0051155528053641,-0.063503786921501,-0.17333129048347],[0.12405037134886,0.10383826494217,0.14873941242695],[0.10400739312172,0.17554211616516,-0.0053515648469329]],[[-0.14010082185268,-0.21826723217964,0.099898114800453],[-0.064058661460876,-0.14000210165977,-0.26004993915558],[-0.063463792204857,-0.058455776423216,0.028602756559849]],[[0.12480993568897,-0.025175524875522,0.059568211436272],[0.085794821381569,0.085822738707066,0.068557813763618],[-0.071495324373245,-0.044368024915457,-0.1096418350935]],[[0.062955893576145,-0.11334695667028,0.042569443583488],[0.071303926408291,-0.031547177582979,-0.10104165971279],[0.061074551194906,-0.061276152729988,-0.09459076821804]],[[-0.077894888818264,0.1050082296133,-0.08955043554306],[0.057651966810226,0.018672691658139,-0.074312634766102],[0.033612359315157,-0.016126314178109,0.044813700020313]],[[0.0023688864894211,0.020135743543506,0.28748807311058],[-0.081544227898121,0.026776324957609,-0.03626549616456],[-0.11182985454798,-0.11140520125628,-0.016883317381144]],[[0.091774925589561,0.14897613227367,0.068279437720776],[0.050791248679161,-0.0087633272632957,0.0032356211449951],[-0.16848909854889,-0.072816096246243,-0.10896000266075]],[[-0.16137018799782,0.069011688232422,0.094198368489742],[0.084034845232964,-0.092515751719475,-0.1865690946579],[0.014175181277096,-0.18763968348503,0.14200738072395]],[[0.025989137589931,0.036878559738398,0.07960806787014],[-0.2270128428936,-0.014698699116707,0.03898985683918],[-0.277199447155,-0.080680266022682,-0.066813439130783]],[[-0.018566394224763,-0.018000530079007,-0.20905630290508],[0.043476767838001,-0.06198401376605,0.0059136897325516],[-0.026828294619918,0.032108094543219,0.067505389451981]],[[0.24279306828976,0.012259002774954,-0.18702083826065],[-0.13893808424473,-0.053703416138887,0.080201014876366],[0.030773287639022,0.034481685608625,0.063572391867638]],[[-0.040933299809694,0.0044481819495559,-0.075296431779861],[0.019103517755866,-0.0029724212363362,-0.061903826892376],[-0.1453769505024,-0.086457192897797,-0.043304357677698]],[[0.26393982768059,0.18058326840401,-0.059111498296261],[0.29415273666382,0.092573665082455,0.093461357057095],[0.027783626690507,0.11938621848822,0.08171334862709]],[[-0.041679918766022,-0.14896048605442,-0.011005723848939],[-0.07033609598875,-0.007690692320466,0.054188463836908],[-0.097044229507446,0.10121607035398,-0.12840136885643]],[[0.059693228453398,-0.0021605479996651,-0.18285685777664],[0.050758928060532,0.018311517313123,0.039690319448709],[0.045038253068924,0.014004435390234,0.082917802035809]],[[-0.092288158833981,0.044873811304569,0.10271336138248],[0.016813769936562,0.098170749843121,0.032547526061535],[-0.035585206001997,0.11924561858177,-0.0076849707402289]],[[-0.018926406279206,0.14975593984127,-0.13280326128006],[-0.011713333427906,0.0081160236150026,-0.090186022222042],[0.055611848831177,-0.038475222885609,-0.10645205527544]],[[-0.022208886221051,-0.24584800004959,-0.038566019386053],[0.0096087018027902,-0.0024600164033473,0.04956816136837],[-0.035476867109537,-0.08553422242403,-0.06302447617054]],[[0.1817329376936,-0.075136050581932,-0.17700277268887],[-0.046592015773058,0.016701988875866,0.0019382365280762],[-0.044776517897844,-0.2993791103363,-0.29942563176155]],[[0.10652500391006,0.093735374510288,-0.037081327289343],[0.18345330655575,0.029421549290419,-0.18814758956432],[0.0094042848795652,-0.091372460126877,-0.027822935953736]],[[0.094639800488949,0.010044162161648,-0.013569705188274],[-0.097797304391861,-0.023899076506495,0.071115180850029],[-0.018013019114733,0.068362213671207,-0.018726106733084]],[[-0.00015231060388032,-0.26734346151352,-0.060600660741329],[-0.070934854447842,-0.018096370622516,-0.0035695428960025],[-0.036099020391703,-0.033489551395178,-0.037209399044514]],[[-0.061303734779358,-0.17636984586716,-0.036249171942472],[0.10853213816881,0.12319707870483,0.025519384071231],[-0.094947218894958,-0.070155650377274,-0.011019926518202]],[[0.044008865952492,-0.0040212064050138,0.13806930184364],[0.10818739980459,0.09895096719265,0.068900361657143],[-0.010588620789349,0.26714900135994,-0.25326511263847]],[[0.0060514626093209,-0.02113719470799,0.088322587311268],[0.18050774931908,-0.020854901522398,0.064604945480824],[0.3036073744297,0.034974239766598,0.018647300079465]],[[0.18326342105865,0.21167069673538,-0.071568384766579],[0.062466714531183,0.1315538585186,-0.22792275249958],[0.064180694520473,0.12463367730379,-0.035862006247044]],[[0.045892544090748,-0.11906042695045,-0.12967239320278],[-0.021859096363187,-0.25854724645615,-0.014132199808955],[0.013841721229255,-0.17504735291004,0.074545219540596]],[[-0.078542537987232,-0.055231213569641,-0.029096949845552],[0.11916161328554,0.053943283855915,-0.10226526111364],[0.086659304797649,0.052759952843189,0.0035574520006776]],[[0.066384553909302,-0.031557243317366,0.072735019028187],[-0.15431588888168,0.044007487595081,0.01647955738008],[0.10887431353331,0.14793168008327,-0.04201790317893]],[[-0.064288221299648,-0.171670794487,-0.15529595315456],[0.0016018834430724,-0.23229420185089,0.089442901313305],[0.10621550679207,-0.0061241392977536,0.11165761202574]],[[0.038773272186518,0.071855016052723,0.022013509646058],[-0.098671399056911,0.046385079622269,0.017877787351608],[-0.07546192407608,0.091959901154041,-0.027329815551639]],[[-0.032475475221872,0.09971471875906,0.051978331059217],[0.071248382329941,-0.037742510437965,-0.032159019261599],[0.040330622345209,0.009498561732471,0.022633472457528]],[[0.025541305541992,-0.099332988262177,-0.064063981175423],[-0.063157998025417,-0.046059757471085,-0.0070153004489839],[-0.13574397563934,-0.093368761241436,0.01958080753684]],[[0.18936790525913,-0.10685593634844,0.072938643395901],[0.04584090039134,-0.0067724497057498,-0.052064973860979],[0.082629181444645,-0.10351231694221,-0.072042748332024]],[[0.036710657179356,0.10832490026951,-0.16808177530766],[-0.063405007123947,-0.09161589294672,-0.12361011654139],[-0.017386192455888,-0.039830099791288,-0.039488945156336]],[[-0.024852192029357,0.047741807997227,0.0095121841877699],[0.074034750461578,0.10495220124722,0.12467028945684],[-0.0089198555797338,-0.10799114406109,-0.21983291208744]],[[-0.080013372004032,-0.070719160139561,0.056700762361288],[-0.086229152977467,-0.14575207233429,0.001306087593548],[-0.00097147119231522,0.0012058020802215,-0.012287752702832]],[[0.10031887888908,0.039287865161896,-0.023607663810253],[-0.075350806117058,-0.22309473156929,-0.073238879442215],[0.0070082382299006,0.0052591105923057,-0.11920141428709]],[[0.045315660536289,0.12669943273067,0.01703910715878],[-0.031983941793442,0.055313035845757,0.067617230117321],[0.016469242051244,0.0099953226745129,-0.10572878271341]],[[-0.21325595676899,-0.01961225643754,-0.07852054387331],[0.07237796485424,0.02315809391439,-0.13120819628239],[0.10996127873659,0.069001354277134,0.020609455183148]],[[-0.21833649277687,-0.11028984189034,0.13595801591873],[-0.030581586062908,-0.16529196500778,-0.21582147479057],[-0.19524815678596,-0.38224387168884,-0.37717065215111]],[[-0.067143768072128,-0.0045738373883069,-0.044282559305429],[-0.0067422296851873,-0.1152997687459,0.08092949539423],[0.046268906444311,0.0032298068981618,0.02199667878449]],[[-0.012421657331288,-0.027731504291296,-0.20826704800129],[-0.055177040398121,0.049115289002657,0.02315229922533],[0.029740551486611,-0.006541243288666,0.011271879076958]],[[0.011759883724153,0.093706533312798,-1.6554469766561e-05],[0.014262979850173,0.10693303495646,0.12446413189173],[-0.12611791491508,0.074152879416943,0.13139922916889]],[[0.0049700397066772,-0.15143758058548,0.22473613917828],[-0.079815156757832,0.0017904039705172,-0.14639291167259],[-0.027858255431056,-0.042006324976683,-0.072792500257492]],[[-0.04179535061121,-0.099492654204369,-0.004523394163698],[-0.2015326321125,-0.11833155155182,0.016486274078488],[0.034013852477074,0.10948139429092,0.003539661411196]],[[-0.13941626250744,-0.13749772310257,0.063536569476128],[-0.041685231029987,0.12223989516497,0.0037814392708242],[-0.094255454838276,-0.063171595335007,-0.060331858694553]],[[0.066590674221516,0.091002471745014,-0.11020571738482],[-0.0053129959851503,-0.1027924567461,-0.075031347572803],[-0.0054172016680241,-3.7850488297408e-05,0.062628716230392]],[[-0.050928138196468,0.20276002585888,-0.077218785881996],[-0.1309178173542,0.00339773343876,0.027158265933394],[-0.14461493492126,-0.015906594693661,0.092628635466099]],[[0.076418370008469,-0.10669592022896,-0.091114714741707],[-0.17968997359276,-0.13383355736732,0.056451812386513],[-0.047703221440315,-0.085256531834602,-0.10590387880802]],[[-0.013626932166517,-0.099682882428169,-0.11358401924372],[0.050292957574129,0.02465084195137,0.06251759827137],[0.028178764507174,-0.061597224324942,0.052882600575686]],[[0.1447906345129,0.082804501056671,-0.072744928300381],[0.015843579545617,-0.036716222763062,-0.012072207406163],[0.049089573323727,0.048135694116354,0.21272164583206]],[[-0.0055427453480661,-0.051594279706478,-0.080727018415928],[-0.088459245860577,0.10021298378706,-0.10310129821301],[-0.086149364709854,0.04594774544239,0.022264942526817]],[[-0.21017850935459,-0.043616648763418,-0.11586144566536],[0.26512160897255,0.15035749971867,0.083185851573944],[-0.034696359187365,0.058220416307449,0.17433904111385]],[[-0.124272570014,-0.014687624759972,0.09139184653759],[0.15268149971962,0.028966085985303,0.16430972516537],[0.055546421557665,-0.10886133462191,-0.053021632134914]],[[0.026940299198031,-0.060306087136269,-0.049207139760256],[-0.12520037591457,-0.16042950749397,-0.041466929018497],[-0.0074567692354321,-0.086203902959824,-0.063516944646835]],[[-0.033209830522537,-0.01055676676333,0.032992396503687],[0.037562485784292,0.063312418758869,-0.068161457777023],[0.01026551052928,-0.066477388143539,0.010482370853424]],[[0.092187456786633,-0.030599495396018,-0.11543832719326],[0.029945017769933,-0.0047526215203106,-0.070610947906971],[0.069508709013462,0.11274739354849,0.16752228140831]],[[-0.072860069572926,-0.11263719201088,-0.11945272982121],[0.11657179147005,-0.15176795423031,-0.14622043073177],[-0.055266335606575,-0.060761161148548,-0.37363862991333]],[[0.043385282158852,0.030400883406401,-0.0001737576094456],[0.034466840326786,0.031153613701463,-0.14090633392334],[0.07008221000433,-0.036912180483341,-0.086454071104527]],[[-0.1406394392252,-0.038890309631824,0.099608764052391],[0.096650406718254,0.11496774107218,0.049849838018417],[0.36806163191795,-0.07990974187851,-0.035176087170839]],[[0.10480440407991,-0.13212065398693,-0.049598917365074],[0.24482701718807,-0.1100696772337,-0.15672183036804],[0.018783841282129,0.012625442817807,-0.10992428660393]],[[-0.065093636512756,-0.0095238294452429,0.0013457472668961],[0.024463707581162,0.033192791044712,0.006354290060699],[-0.083215653896332,-0.048773899674416,-0.047037903219461]],[[0.03471839427948,-0.12753114104271,0.10067532211542],[0.15031191706657,0.033532559871674,0.057769913226366],[-0.059412080794573,0.01958280429244,-0.12898024916649]],[[-0.1674687564373,0.15095707774162,0.11074658483267],[-0.088709361851215,-0.057102356106043,-0.11550608277321],[-0.15927812457085,0.027592964470387,0.15744736790657]],[[-0.0070572374388576,0.0020828358829021,0.11938899755478],[0.10847499221563,-0.2343041151762,-0.10442908108234],[0.10628264397383,0.010437450371683,0.002073580166325]],[[-0.058503966778517,-0.041573747992516,-0.074612393975258],[-0.070616446435452,-0.098952688276768,-0.059522710740566],[0.033721342682838,-0.024045275524259,-0.1080831810832]],[[0.085219785571098,-0.055293902754784,0.078421138226986],[0.14941799640656,-0.13482615351677,-0.004775342065841],[-0.023164669051766,-0.16621708869934,-0.070686541497707]],[[0.029739310964942,-0.061724126338959,0.060995861887932],[-0.1740552932024,-0.065731637179852,-0.19878566265106],[0.1293663084507,0.17650835216045,0.062069568783045]],[[0.14167107641697,0.082461729645729,0.19577026367188],[-0.0017396553885192,0.074218608438969,-0.11746251583099],[0.079311013221741,-0.12261797487736,0.014518354088068]],[[0.054770950227976,-0.22450621426105,-0.11945933848619],[-0.076756425201893,0.018193639814854,0.006031452678144],[-0.027441672980785,0.018015023320913,0.057099260389805]],[[-0.10893882066011,0.081230349838734,0.06315054744482],[-0.10321316868067,0.12542751431465,0.09959152340889],[0.088169954717159,0.09893823415041,-0.22455036640167]],[[0.0093101989477873,0.091912448406219,0.021847065538168],[0.10392187535763,0.11225035041571,0.1368493437767],[-0.15340635180473,-0.17148593068123,0.072892650961876]],[[-0.033664904534817,-0.13758471608162,0.15347729623318],[-0.018899330869317,-0.17606143653393,-0.024368619546294],[0.051213245838881,-0.02267855964601,-0.011701217852533]],[[0.055714681744576,-0.11668951809406,-0.14564199745655],[-0.1518272459507,-0.009381596930325,-0.057002179324627],[-0.048452310264111,-0.074572995305061,-0.048307124525309]],[[-0.053329981863499,-0.15636353194714,-0.085568249225616],[0.078737817704678,-0.031547904014587,-0.051278296858072],[0.0028920331969857,0.024714477360249,0.24530234932899]],[[0.0053028054535389,0.088182531297207,0.08738424628973],[-0.063103571534157,-0.034056466072798,-0.14261278510094],[0.0079524451866746,-0.023493438959122,0.17054104804993]],[[-0.014139105565846,0.0020572480279952,-0.051040273159742],[0.026568789035082,-0.095861569046974,0.014889614656568],[0.039249677211046,-0.21296188235283,0.0085770059376955]],[[-0.018261222168803,-0.017421055585146,-0.024060605093837],[-0.060531351715326,-0.12432849407196,0.01022336166352],[0.02552324347198,0.067793264985085,0.05266385525465]],[[0.042066525667906,-0.12634032964706,0.012235770002007],[-0.060203228145838,0.090669371187687,0.0073557938449085],[-0.084460958838463,0.054007399827242,0.057135209441185]],[[0.097636610269547,0.21788901090622,0.1668227314949],[0.26318776607513,0.15597316622734,0.0044762743636966],[-0.03848035261035,-0.033376641571522,-0.21582521498203]],[[0.033958066254854,-0.008312713354826,0.00028594487230293],[0.080110400915146,-0.033287528902292,-0.088024437427521],[0.0061165001243353,0.11387123167515,-0.0078910989686847]],[[-0.049135964363813,-0.063501060009003,-0.078571654856205],[-0.13597692549229,0.032682444900274,0.14945435523987],[0.12906582653522,-0.074399285018444,-0.014804377220571]],[[-0.26048928499222,-0.027751855552197,-0.093321807682514],[0.012072265148163,0.13583670556545,0.19396391510963],[0.00056188937742263,-0.0093140779063106,0.081993326544762]],[[0.0062377252615988,-0.036234859377146,-0.073687702417374],[0.061119135469198,-0.0072464123368263,0.053449828177691],[-0.015253115445375,-0.088772058486938,-0.078326836228371]],[[0.043493703007698,0.074082054197788,0.019007490947843],[0.10413326323032,0.15062525868416,-0.064356714487076],[-0.011424414813519,0.055413227528334,-0.11669571697712]],[[0.0057501643896103,0.088330902159214,0.017933279275894],[-0.0017003099201247,0.08923564106226,-0.035212017595768],[-0.08564780652523,0.03182527422905,0.11155999451876]],[[-0.040526062250137,-0.085260681807995,-0.013519746251404],[0.11396479606628,0.16154216229916,0.10983792692423],[0.19656905531883,0.18652367591858,-0.067359164357185]],[[-0.10908979922533,0.05152203887701,-0.24889525771141],[-0.042251877486706,0.11095610260963,0.16274328529835],[0.042774729430676,0.041611559689045,-0.013142777606845]],[[-0.056424744427204,0.043615143746138,-0.075083114206791],[0.013197177089751,-0.060475576668978,-0.041358206421137],[-0.098586767911911,-0.058466259390116,-0.036816582083702]],[[0.023221902549267,0.10104091465473,0.15466386079788],[0.03273057192564,0.12430559843779,0.18189823627472],[0.19581708312035,-0.01561663672328,-0.024128600955009]],[[0.045621562749147,0.131108507514,0.14103838801384],[0.1102147102356,0.062940612435341,-0.036276236176491],[-0.0084228217601776,0.064124502241611,-0.064842037856579]],[[-0.036608632653952,0.0089552607387304,0.16519816219807],[0.022782016545534,0.085463121533394,0.11731558293104],[0.023182384669781,0.078798905014992,-0.17141105234623]],[[-0.0083889421075583,-0.046308886259794,0.10109758377075],[-0.13838320970535,0.084137670695782,-0.027479495853186],[-0.019810795783997,-0.095043018460274,0.042494054883718]],[[0.036115296185017,0.039626337587833,0.11503254622221],[0.026547832414508,-0.045633833855391,0.0061777345836163],[-0.083777546882629,0.030117297545075,-0.070032827556133]],[[-0.017754463478923,-0.14427305757999,-0.027032554149628],[0.033897306770086,-0.056519292294979,0.1751401424408],[-0.088390484452248,0.16926072537899,0.043866481631994]],[[-0.019147729501128,0.018751457333565,-0.016880908980966],[0.062780223786831,-0.008384014479816,-0.10874933749437],[0.036628093570471,0.022227445617318,0.0079531027004123]],[[0.0408192910254,-0.015881560742855,0.028069024905562],[0.074682503938675,0.074224643409252,-0.058199644088745],[-0.012029766105115,0.0051951776258647,-0.010235563851893]],[[-0.10026846826077,-0.18273350596428,-0.10293810069561],[-0.16424544155598,-0.12635220587254,0.017546312883496],[-0.2041692584753,-0.093862883746624,-0.024202106520534]],[[0.072676949203014,-0.042538538575172,-0.14327767491341],[0.15138667821884,0.1227368041873,-0.031822744756937],[0.21647468209267,0.034833882004023,0.016161412000656]],[[0.12256613373756,0.067675068974495,0.1286434084177],[0.13918556272984,-0.0070722056552768,0.046879377216101],[-0.0029781751800328,-0.041122946888208,0.084093704819679]],[[0.25140652060509,-0.056960426270962,-0.37523910403252],[0.026163982227445,-0.02334801107645,0.058903623372316],[-0.053969588130713,-0.038616914302111,-0.083234861493111]],[[0.011556592769921,-0.059050466865301,-0.18374814093113],[-0.025841351598501,0.025928555056453,0.056428749114275],[-0.051108174026012,0.054547380656004,0.11026885360479]],[[0.12511713802814,0.11230027675629,-0.1854709982872],[-0.063253916800022,-0.032713074237108,-0.081834390759468],[-0.078325681388378,-0.04729038849473,0.11541604995728]],[[0.0097886808216572,0.0056287576444447,0.13956032693386],[0.073888562619686,0.047194305807352,-0.047721896320581],[0.15879888832569,0.20566764473915,0.023071795701981]],[[-0.14598850905895,-0.032147943973541,-0.10554677248001],[-0.037750579416752,-0.031653199344873,-0.0012514817062765],[0.063032329082489,-0.099994733929634,-0.1284011900425]],[[0.1728325933218,0.11071233451366,0.12693975865841],[-0.062315847724676,0.17537555098534,-0.051098752766848],[-0.20789551734924,0.045205395668745,-0.19157922267914]],[[0.14370900392532,0.05652054771781,0.053516004234552],[-0.0044225789606571,-0.00083966803504154,-0.020662000402808],[0.032810565084219,0.068384923040867,0.098727867007256]],[[-0.0042197187431157,0.18685364723206,0.095404379069805],[-0.016123061999679,0.049976069480181,-0.20707920193672],[-0.038736760616302,-0.024104254320264,-0.084489539265633]],[[0.067636147141457,0.053396128118038,0.15537358820438],[-0.064535848796368,-0.10743848234415,-0.051494456827641],[-0.10733550041914,-0.00060783687513322,-0.24634981155396]],[[0.018000926822424,-0.11775129288435,-0.095314912497997],[-0.12525832653046,-0.002498711226508,0.098839767277241],[-0.088860653340816,-0.06937575340271,0.061398714780807]],[[-0.085523754358292,0.055194914340973,0.14408147335052],[-0.06151756644249,0.10301844030619,0.069417148828506],[-0.14284056425095,-0.057603798806667,0.072349779307842]],[[-0.016268575564027,0.0076726949773729,0.0049925283528864],[0.12986168265343,-0.0053675519302487,0.029349707067013],[0.061782460659742,-0.082158297300339,0.070928551256657]],[[-0.24061992764473,0.17960464954376,0.22288566827774],[-0.0033676188904792,0.088965326547623,-0.011732436716557],[0.10945075005293,0.070804744958878,0.10275464504957]],[[-0.14946405589581,-0.0072048269212246,0.0016345416661352],[0.10904797166586,0.06196054443717,-0.10433027893305],[-0.05085976421833,-0.036388628184795,0.06878674030304]],[[0.019354548305273,0.024492993950844,0.10913347452879],[-0.072053104639053,-0.094675123691559,-0.1924414485693],[0.0011915903305635,0.03364859893918,0.07182040810585]],[[0.047021105885506,0.0038331283722073,-0.026816470548511],[-0.14763648808002,-0.083240516483784,-0.040184989571571],[0.07077407091856,-0.021818047389388,0.077136814594269]],[[-0.13210637867451,-0.1395138502121,-0.27452909946442],[-0.054678283631802,0.05496322363615,0.082678511738777],[0.029119577258825,0.31017020344734,0.0424979403615]],[[-0.012607801705599,-0.065430633723736,-0.029924497008324],[-0.084007255733013,0.064027197659016,0.21054860949516],[0.15589390695095,0.25785738229752,0.11773129552603]],[[0.14366002380848,0.082704365253448,0.13703572750092],[-0.01203662995249,0.015028610825539,0.029420906677842],[-0.16344057023525,0.0452427752316,-0.066037490963936]],[[-0.0023299225140363,0.011400525458157,-0.095026902854443],[-0.24319629371166,-0.13442130386829,-0.15709814429283],[-0.031702551990747,-0.038075093179941,-0.10250568389893]],[[0.15060716867447,0.002675308380276,-0.027100218459964],[0.045893304049969,-0.0057560382410884,-0.01347922347486],[-0.29812398552895,0.047195464372635,0.25231266021729]],[[0.012782575562596,-0.13611820340157,-0.0090198693796992],[-0.079920917749405,0.13692533969879,0.036798156797886],[-0.17814444005489,0.14025196433067,-0.098239354789257]],[[0.038552328944206,0.10828719288111,-0.0029160196427256],[-0.032314345240593,0.093705765902996,-0.015882031992078],[-0.035005617886782,0.15284229815006,-0.19510814547539]],[[-0.0034666478168219,-0.23710298538208,-0.1012365296483],[-0.080549828708172,-0.1014960706234,-0.05976876989007],[0.01587650179863,-0.095304645597935,-0.025858948007226]],[[-0.029521519318223,0.04759793356061,-0.081745021045208],[-0.0097975181415677,-0.028759514912963,-0.097370497882366],[0.013816636987031,0.068106956779957,-0.023755431175232]]],[[[0.095248155295849,-0.017709361389279,-0.087020143866539],[0.009440272115171,0.054089486598969,-0.10712276399136],[0.069915592670441,-0.02118106931448,-0.066427312791348]],[[-0.082163937389851,-0.0018859520787373,0.019665949046612],[0.19663035869598,-0.034935895353556,0.025278756394982],[0.01447032392025,0.077698983252048,-0.032379817217588]],[[0.02699083276093,0.12462798506021,0.17334821820259],[0.080000527203083,0.037971675395966,0.066652812063694],[0.053460329771042,0.0013437413144857,0.15975907444954]],[[0.075840547680855,-0.017024450004101,-0.099199950695038],[-0.013898669742048,0.15501503646374,-0.078207924962044],[-0.0052389334887266,-0.070098295807838,0.14596597850323]],[[0.032943651080132,0.03697382286191,-0.1904422044754],[-0.20227636396885,-0.098539091646671,-0.065371371805668],[-0.087586931884289,0.087857581675053,-0.0021622225176543]],[[-0.055782724171877,0.0086078094318509,0.064368180930614],[-0.03792355582118,0.056026294827461,-0.10792098939419],[-0.074095889925957,0.1013972312212,0.015818284824491]],[[-0.083902694284916,-0.081927172839642,0.028588190674782],[0.00338358967565,0.021049777045846,0.027896312996745],[-0.032381806522608,0.012325977906585,0.073608316481113]],[[0.090644873678684,-0.017360219731927,0.022029573097825],[-0.023954534903169,0.047699183225632,0.15500085055828],[0.11784155666828,0.13055595755577,0.089910380542278]],[[0.019594280049205,-0.079304575920105,0.10770416259766],[0.018153699114919,0.076567694544792,0.13237406313419],[0.15698838233948,0.22188651561737,-0.10495468974113]],[[0.10056287795305,0.093755535781384,0.21206909418106],[-0.082336328923702,0.16838467121124,0.14296312630177],[0.28909987211227,0.10996115207672,0.14979086816311]],[[-0.063991285860538,-0.085144050419331,0.074367821216583],[-0.073004439473152,0.10059372335672,0.016437565907836],[-0.0028086670208722,0.023164879530668,-0.059184465557337]],[[0.10869316756725,0.02570160664618,0.32800644636154],[0.044817466288805,-0.079976573586464,-0.037257850170135],[0.041588485240936,-0.061607532203197,0.058751996606588]],[[0.02567002363503,-0.025812149047852,-0.15787775814533],[-0.026089200749993,-0.0032589926850051,-0.23139695823193],[-0.045273095369339,-0.1209864243865,-0.010672914795578]],[[-0.065113887190819,-0.00040456201531924,-0.08738424628973],[-0.039920415729284,0.075928129255772,-0.08203299343586],[-0.044692698866129,-0.13830268383026,0.020220382139087]],[[0.16162514686584,0.008354957215488,-0.0010708258487284],[0.13054914772511,0.12749110162258,0.1711497604847],[-0.075055442750454,-0.029026784002781,0.079126559197903]],[[-0.07962241768837,0.077821284532547,-0.01629769988358],[0.063289724290371,0.048275154083967,0.017446182668209],[-0.05952251330018,0.096813715994358,-0.02520321123302]],[[-0.12805539369583,0.030087672173977,0.090889409184456],[0.068174548447132,0.029399750754237,0.045877706259489],[0.0041330722160637,0.02283782325685,-0.167196393013]],[[0.089832566678524,-0.035352069884539,-0.028528466820717],[-0.062722265720367,-0.20339773595333,-0.016282733529806],[-0.015183720737696,-0.0090907486155629,-0.023921912536025]],[[-0.019122445955873,0.12503133714199,0.052676197141409],[-0.018178956583142,-0.033079046756029,-0.0081377821043134],[-0.14989383518696,-0.007345830090344,-0.010503356344998]],[[-0.21494691073895,-0.10306085646152,0.13518679141998],[-0.049383834004402,-0.067165426909924,-0.070713087916374],[-0.10270781815052,-0.0028505921363831,0.06442865729332]],[[-0.15682943165302,-0.061822652816772,-0.041851796209812],[0.027224311605096,-0.051152266561985,0.0096317445859313],[0.17947337031364,-0.030825084075332,-0.024323601275682]],[[0.11551712453365,-0.17845889925957,0.19662208855152],[0.0066492133773863,0.19148448109627,0.04557316377759],[0.244264960289,0.035235900431871,0.15141126513481]],[[0.1328299343586,0.052676606923342,-0.22601775825024],[0.14498181641102,-0.072746723890305,-0.069382503628731],[-0.061186302453279,0.099387288093567,0.085686966776848]],[[0.14556041359901,0.014775180257857,-0.087537840008736],[-0.071500033140182,-0.0047829519025981,-0.076476216316223],[-0.16063439846039,-0.21262925863266,0.037570595741272]],[[-0.12545235455036,-0.069435231387615,0.0554184243083],[0.1366955190897,0.0045767761766911,0.034071922302246],[0.044977635145187,0.091733530163765,0.0051562851294875]],[[0.01646489277482,-0.0019080087076873,0.29531028866768],[0.11461257189512,0.066074885427952,-0.083624005317688],[0.13268530368805,-1.1590205758694e-05,-0.014173362404108]],[[-0.058468632400036,-0.059053830802441,-0.076862506568432],[0.086584247648716,0.014340979978442,0.071078740060329],[-0.009610366076231,-0.11091554164886,0.24649851024151]],[[0.051302887499332,0.1729129254818,-0.099614754319191],[0.099179863929749,0.0092187412083149,0.11768900603056],[-0.083990171551704,-0.045520178973675,-0.080571666359901]],[[-0.18266318738461,-0.08855514228344,0.093695610761642],[-0.11809481680393,-0.089390926063061,0.060183949768543],[-0.45079857110977,0.055791482329369,0.03885093331337]],[[-0.13570955395699,-0.14818848669529,-0.10156683623791],[-0.12196777760983,0.039955586194992,-0.10361605137587],[-0.13772277534008,0.1525020301342,0.0028939133044332]],[[-0.016598103567958,0.003952459897846,-0.039518255740404],[0.078961342573166,0.06881520152092,-0.025233598425984],[-0.0017884509870782,0.015523009002209,0.086471691727638]],[[-0.044280864298344,-0.0030807838775218,-0.0017927382141352],[-0.011680410243571,-0.1334547996521,0.026829913258553],[0.13121421635151,0.056924272328615,0.14566761255264]],[[0.059496391564608,0.080092370510101,0.058243241161108],[-0.058820761740208,-0.18132475018501,-0.0072173182852566],[0.019973523914814,-0.12048298120499,-0.098142474889755]],[[0.082621276378632,0.080323480069637,0.13774996995926],[-0.087056346237659,-0.046272143721581,0.018460497260094],[0.11922919750214,0.11783947050571,-0.084086358547211]],[[-0.034311603754759,0.072512283921242,-0.063573345541954],[-0.0073563843034208,-0.070834331214428,0.040340699255466],[0.010759976692498,-0.16736727952957,0.023623051121831]],[[-0.017746834084392,-0.157624989748,-0.14791287481785],[-0.0057852352038026,-0.093448825180531,-0.04655284807086],[-0.22932651638985,-0.075114771723747,-0.089296437799931]],[[-0.16242259740829,-0.11851321905851,0.096160143613815],[0.034655220806599,-0.013888632878661,-0.033616438508034],[-0.019505778327584,-0.020313737913966,-0.061745524406433]],[[0.00054016528883949,-0.055144540965557,0.11293832212687],[0.018015207722783,0.023638362064958,-0.025343025103211],[0.065697118639946,-0.11995729058981,-0.082108676433563]],[[-0.0074024237692356,-0.062167502939701,-0.041487656533718],[0.0273691508919,0.011292977258563,0.016253320500255],[-0.066660694777966,0.0031850857194513,0.010765173472464]],[[-0.023989433422685,-0.11392189562321,-0.16481600701809],[-0.070697650313377,0.041961036622524,-0.080124251544476],[0.048439238220453,0.077059343457222,-0.064013622701168]],[[-0.039542462676764,-0.034812808036804,0.30408558249474],[-0.15145380795002,-0.1666824221611,0.060531299561262],[-0.11236990988255,-0.034183613955975,0.034541230648756]],[[0.013739400543272,-0.011916105635464,0.029568189755082],[6.14482050878e-05,-0.049119461327791,0.16034033894539],[0.082264326512814,-0.01599807292223,0.16934050619602]],[[-0.12981282174587,-0.28037482500076,-0.052526481449604],[-0.08960185945034,-0.070646353065968,0.072643764317036],[-0.019184278324246,0.029938906431198,-0.012707808054984]],[[-0.057094987481833,0.015112063847482,0.0082165226340294],[-0.084716461598873,0.03493494912982,-0.10604220628738],[-0.063391931355,-0.031895831227303,-0.04872228205204]],[[-0.032159838825464,-0.073610559105873,-0.15481367707253],[-0.21887469291687,-0.13230486214161,-0.043107867240906],[0.1107644289732,-0.0040343748405576,0.10919096320868]],[[0.10797344893217,0.07153332233429,-0.16334071755409],[-0.10499726980925,0.065456703305244,-0.1513125449419],[-0.07498412579298,0.050429258495569,-0.15825612843037]],[[-0.036236278712749,-0.04903320223093,0.1011970564723],[-0.054358404129744,0.16414186358452,0.06397970020771],[0.16423964500427,0.14422002434731,-0.015344151295722]],[[-0.0040826271288097,0.074189722537994,0.090175062417984],[0.0094045922160149,0.036866161972284,0.0094837676733732],[0.022292409092188,0.010825001634657,-0.075285919010639]],[[-0.015981361269951,-0.06635470688343,0.10824090987444],[-0.052662383764982,0.055793236941099,0.014569965191185],[0.054929591715336,0.042771510779858,-0.060507498681545]],[[0.065770722925663,-0.080494962632656,0.075694128870964],[-0.046197135001421,-0.027646727859974,-0.022032231092453],[-0.040433090180159,-0.14462684094906,0.055108088999987]],[[-0.062979936599731,0.040327176451683,-0.10729452967644],[0.001163620967418,-0.013352368958294,0.012078585103154],[0.0013850072864443,-0.061293762177229,-0.059052020311356]],[[-0.099085204303265,0.073829643428326,-0.01000274065882],[-0.040616806596518,0.079698406159878,0.12754124403],[-0.055644374340773,0.0089411623775959,0.063395358622074]],[[-0.053272947669029,-0.070363730192184,0.069927252829075],[0.023521825671196,0.058551538735628,0.047528002411127],[-0.034568890929222,0.050240904092789,-0.04453644156456]],[[0.093803517520428,0.069195263087749,0.099681802093983],[-0.13357274234295,-0.037667848169804,-0.040942870080471],[-0.22647275030613,-0.027307795360684,0.075255252420902]],[[-0.1269762814045,0.043902073055506,-0.0348045155406],[0.013928102329373,0.076451562345028,0.15703748166561],[-0.17733035981655,0.055207882076502,0.15486074984074]],[[-0.35778987407684,-0.05274448543787,0.033535782247782],[0.2391125112772,0.0077700042165816,0.014590357430279],[0.079075738787651,0.17615814507008,-0.14474777877331]],[[0.15211600065231,0.14873379468918,0.0037009685765952],[0.015379270538688,-0.086991146206856,-0.076050646603107],[0.083551213145256,0.13504953682423,0.17260150611401]],[[-0.01787793636322,-0.087240278720856,-0.048432134091854],[0.021088382229209,-0.19377726316452,-0.097997881472111],[0.016158463433385,-0.1031936481595,0.034048065543175]],[[-0.0111363241449,0.079584985971451,0.1032285168767],[-0.021947458386421,-0.045380111783743,-0.1026189699769],[-0.019917421042919,-0.25131946802139,0.0065779974684119]],[[0.10088460892439,-0.058526180684566,0.11298691481352],[0.011908818036318,-0.073318921029568,0.090604223310947],[-0.16887927055359,-0.06372944265604,-0.04079806432128]],[[-0.08107178658247,-0.0028589351568371,-0.064320780336857],[0.049698013812304,-0.079187996685505,-0.217081412673],[-0.2331600934267,0.018902748823166,-0.020733768120408]],[[-0.060410939157009,-0.12536132335663,0.03781071677804],[-0.058543238788843,0.061717197299004,0.038360945880413],[0.00063593772938475,0.041384130716324,0.080694690346718]],[[0.18043361604214,0.11945480853319,0.2318559139967],[-0.40373677015305,-0.041593782603741,0.097461484372616],[0.036593578755856,0.067890748381615,0.20054341852665]],[[0.0921436175704,-0.053188536316156,0.031637001782656],[0.098637454211712,0.1045134216547,-0.006395407486707],[0.13205021619797,-0.082629472017288,0.043610330671072]],[[-0.20905117690563,-0.044471155852079,0.13829949498177],[-0.16592620313168,0.0060521569103003,0.17386274039745],[-0.28671881556511,-0.13260613381863,0.16272939741611]],[[-0.11299436539412,0.056297652423382,-0.037431057542562],[0.14231300354004,0.061243690550327,-0.1259041428566],[0.079326689243317,0.098132021725178,0.076788440346718]],[[0.067714154720306,-0.074106924235821,0.13690248131752],[0.14127339422703,0.20592123270035,0.13906511664391],[0.15263825654984,0.012720864266157,-0.076090753078461]],[[-0.019870897755027,0.029751257970929,-0.0034556668251753],[0.10126119852066,0.067123159766197,-0.067859575152397],[0.09831216186285,-0.033966120332479,-0.00028013496194035]],[[-0.089794218540192,-0.11514610052109,0.13772732019424],[-0.14954182505608,0.081119284033775,-0.04904954880476],[-0.043211568146944,0.1236506998539,-0.28652134537697]],[[0.10821304470301,0.041571818292141,-0.045791879296303],[0.066858425736427,-0.033416822552681,-0.035032842308283],[-0.0078683728352189,-0.059291291981936,-0.096619121730328]],[[0.091384433209896,0.044836662709713,0.14031814038754],[0.14223395287991,0.065303236246109,0.28565937280655],[0.012274035252631,-0.057752136141062,-0.074583791196346]],[[0.065047487616539,0.011871309019625,0.08139606565237],[-0.16359177231789,-0.055096592754126,0.070660993456841],[0.10094231367111,0.062711477279663,0.11884642392397]],[[0.0627526268363,0.11886788904667,0.095045760273933],[0.10669392347336,-0.0088906949386001,-0.090435020625591],[-0.10504166781902,-0.14525057375431,-0.096433199942112]],[[-0.018026171252131,0.045088745653629,-0.020948890596628],[-0.051987424492836,-0.0094158407300711,0.080920971930027],[-0.025545356795192,0.15288862586021,0.231370434165]],[[-0.16575729846954,0.00061731232563034,0.14881986379623],[-0.078881487250328,-0.031132047995925,-0.047333143651485],[-0.14837916195393,0.039874348789454,-0.20348758995533]],[[-0.025267120450735,-0.29355067014694,0.095522694289684],[-0.14727257192135,-0.27032545208931,-0.14048551023006],[0.07605904340744,-0.16551080346107,-0.0068997391499579]],[[0.10906238108873,0.21569213271141,-0.097552925348282],[-0.1793437898159,0.043621890246868,0.18267630040646],[-0.15532575547695,-0.1875443905592,-0.13721124827862]],[[0.039909921586514,0.03460280969739,-0.0010023985523731],[0.089439548552036,-0.035738982260227,-0.031331483274698],[0.0085301538929343,-0.068033784627914,0.037564050406218]],[[-0.0074260826222599,0.014021977782249,0.102703794837],[-0.013091022148728,0.058025516569614,-0.033723458647728],[-0.047482188791037,0.016218043863773,-0.0098326783627272]],[[-0.065617240965366,-0.08856962621212,0.12446618080139],[0.0034827555064112,-0.1941331923008,-0.12367499619722],[0.0080991629511118,-0.13055668771267,-0.15893577039242]],[[-0.075719304382801,0.16897305846214,-0.12186891585588],[0.095515049993992,0.038000453263521,0.10248356312513],[-0.052500553429127,-0.066431187093258,-0.13674539327621]],[[0.116425588727,0.069982290267944,0.080867789685726],[-0.094316199421883,-0.058533407747746,-0.084116064012051],[0.11705643683672,-0.31765753030777,0.085874401032925]],[[0.041799869388342,0.0546870008111,-0.012909026816487],[-0.0067229908891022,-0.060590244829655,0.070768155157566],[0.089314967393875,0.055716872215271,0.11191216111183]],[[0.05307799950242,0.10801831632853,0.068680331110954],[0.097192957997322,-0.087337680160999,-0.19524621963501],[0.12800353765488,-0.11873266845942,-0.053781867027283]],[[-0.021307023242116,-0.087077625095844,-0.027330340817571],[-0.045325573533773,0.07472950220108,0.02846228890121],[0.10680477321148,0.12575577199459,0.056555300951004]],[[-0.17482954263687,-0.041157156229019,-0.077655047178268],[-0.058931183069944,-0.092563778162003,-0.29058849811554],[0.11309901624918,0.054841957986355,0.06364718079567]],[[-0.043216183781624,-0.11982532590628,-0.027930300682783],[-0.029454939067364,0.017843579873443,0.017473807558417],[0.0097506307065487,0.038650222122669,0.081021845340729]],[[0.11545106768608,0.15943610668182,0.12589932978153],[0.011212817393243,-0.043180227279663,0.20018145442009],[0.041809435933828,0.063275642693043,0.039633430540562]],[[-0.23607197403908,-0.12234218418598,0.090985558927059],[-0.033367063850164,-0.033606093376875,0.07718151807785],[-0.2204914689064,-0.062495157122612,0.013901562429965]],[[0.069774501025677,-0.034581299871206,-0.18365769088268],[0.17172829806805,-0.13280045986176,-0.048084251582623],[-0.12156326323748,-0.058500673621893,0.068271994590759]],[[0.14204457402229,0.18187817931175,-0.092133410274982],[0.063574731349945,0.028339058160782,0.12104185670614],[0.039137527346611,0.15942354500294,0.17210330069065]],[[-0.043513316661119,-0.04617365449667,0.035321608185768],[0.12274787575006,-0.09561912715435,-0.0098774740472436],[0.034604877233505,0.15507951378822,0.11322799324989]],[[0.028866562992334,0.041912343353033,-0.043281834572554],[0.1214594244957,0.013939185999334,0.03989689424634],[-0.14575324952602,0.16906681656837,-0.099592544138432]],[[0.098749563097954,-0.0033143155742437,-0.2237186729908],[0.094094276428223,0.1037463247776,-0.071085296571255],[0.080470718443394,0.091319762170315,0.024618966504931]],[[-0.10573290288448,0.03477119654417,-0.070966742932796],[-0.088662594556808,0.014734817668796,-0.049083653837442],[-0.094713024795055,0.16833646595478,-0.019328350201249]],[[0.13932086527348,-0.16553150117397,0.085105992853642],[-0.010317231528461,-0.025848673656583,-0.10153142362833],[-0.14371851086617,0.087889991700649,0.030119733884931]],[[-0.035737160593271,-0.090078845620155,-0.071243032813072],[0.074058689177036,-0.096221968531609,0.16298630833626],[-0.13926823437214,0.11423926055431,-0.19806081056595]],[[0.10450341552496,0.07107987254858,-0.12501180171967],[0.034587439149618,-0.1386071741581,0.063165336847305],[-0.069865092635155,-0.16998137533665,-0.05810372158885]],[[-0.0049879462458193,-0.024357553571463,0.036385409533978],[-0.041348449885845,-0.039605371654034,0.062453497201204],[0.0057134041562676,-0.051595274358988,0.031216096132994]],[[0.062033448368311,-0.010547329671681,-0.11301925778389],[-0.054432354867458,0.047589600086212,-0.24177260696888],[-0.0048457556404173,-0.024308415129781,-0.025033066049218]],[[0.15623977780342,0.19892419874668,0.076437667012215],[0.1489881426096,0.098722390830517,0.019200287759304],[0.043636329472065,0.04760130867362,0.11795059591532]],[[0.056239854544401,0.046870458871126,0.078163839876652],[-0.12266260385513,0.052555911242962,0.0069605936296284],[0.14378133416176,0.10415577888489,0.13254640996456]],[[0.028702918440104,0.079526767134666,0.19181606173515],[0.0094781266525388,0.077879473567009,-0.047172423452139],[0.025692714378238,-0.16261164844036,0.1052957624197]],[[0.071912817656994,0.062031600624323,-0.18851587176323],[-0.066656269133091,0.17141464352608,0.00062671647174284],[-0.05175169557333,0.084885112941265,0.010642766952515]],[[0.023184847086668,-0.0060877338983119,0.087963581085205],[-0.009524273686111,0.016880305483937,-0.098428174853325],[0.060527056455612,0.060878172516823,-0.10200476646423]],[[-0.017818344756961,-0.03063778206706,0.09248349070549],[0.035011701285839,-0.085199810564518,0.16003201901913],[-0.054506078362465,-0.28440019488335,0.082800857722759]],[[-0.068844504654408,-0.097836352884769,-0.063565582036972],[-0.092293485999107,-0.06683711707592,-0.027140151709318],[-0.06251859664917,0.025591569021344,0.017429906874895]],[[0.10985879600048,-0.14966128766537,-0.066640615463257],[-0.14547914266586,0.12276507169008,0.16871422529221],[-0.060815658420324,-0.11383468657732,0.17129909992218]],[[0.023575024679303,0.14955112338066,-0.037914048880339],[-0.087456256151199,0.0026094338390976,-0.040525808930397],[0.0017261013854295,-0.05027537420392,0.088449597358704]],[[-0.037825901061296,0.042456109076738,0.020971329882741],[0.096248462796211,-0.074555695056915,-0.04060672968626],[0.095201775431633,-0.0065868590027094,-0.097657106816769]],[[0.04623594135046,-0.036152556538582,-0.0044000223278999],[0.037892669439316,-0.12873314321041,0.012795397080481],[-0.0096464203670621,-0.039124455302954,0.088598638772964]],[[-0.13178288936615,-0.10608822852373,0.10791016370058],[-0.15601924061775,0.0036189758684486,0.084689795970917],[-0.030027655884624,-0.12205872684717,-0.00056432525161654]],[[-0.022788474336267,0.020752316340804,-0.032646957784891],[-0.12631198763847,-0.10760674625635,-0.054629433900118],[-0.25116249918938,0.036641266196966,-0.0056048207916319]],[[0.03128232434392,-0.31598165631294,-0.14422062039375],[-0.057099424302578,-0.20842364430428,0.019301641732454],[0.088528513908386,0.0037132350262254,-0.08661937713623]],[[0.021543905138969,-0.12235826998949,0.18663010001183],[-0.043933592736721,0.078634507954121,0.046930093318224],[0.14741607010365,0.0078451484441757,-0.018329491838813]],[[-0.13629929721355,0.065009258687496,-0.023269049823284],[0.053305298089981,0.009635210968554,0.050944805145264],[-0.023569608107209,0.086464658379555,-0.28377315402031]],[[-0.043944269418716,-0.020261250436306,-0.026140028610826],[-0.060696013271809,-0.11819479614496,-0.021213475614786],[0.070962555706501,0.022874571382999,0.045534856617451]],[[0.11031226068735,-0.049220722168684,-0.12060947716236],[0.1623457968235,0.011117300018668,-0.14208255708218],[0.043771285563707,0.0002845955605153,-0.14177413284779]],[[0.18141724169254,-0.07440597563982,-0.077614486217499],[-0.06304407119751,0.047424256801605,-0.015228514559567],[-0.030376313254237,0.106569416821,-0.11465862393379]],[[-0.2067543566227,0.0032701515592635,0.041890867054462],[-0.13086412847042,-0.041971746832132,-0.12275034189224],[-0.041201762855053,0.11144311726093,-0.067241512238979]],[[0.08211774379015,1.1122521755169e-05,0.10912093520164],[0.14241977035999,0.13848005235195,-0.24775302410126],[0.0012675640173256,-0.01563574001193,-0.0059004439972341]],[[0.025010913610458,0.10051748901606,0.30236145853996],[0.026497995480895,0.12250299006701,0.042105533182621],[0.076231330633163,0.079196326434612,0.20299500226974]],[[0.056338977068663,-0.10514799505472,-0.047430850565434],[0.026787731796503,-0.23499171435833,-0.042031668126583],[-0.041280884295702,-0.13026967644691,-0.032524060457945]],[[-0.15459926426411,0.067708857357502,0.1810732036829],[0.021185657009482,0.035048235207796,0.065973594784737],[0.12624831497669,0.11900562793016,0.064549274742603]],[[0.22387427091599,0.124571621418,0.19447727501392],[0.26880595088005,0.066440120339394,0.031797405332327],[0.011138522997499,0.003404859919101,0.0064995479770005]],[[0.056206591427326,-0.015299802646041,-0.012143191881478],[0.052552927285433,-0.045384112745523,-0.011747726239264],[0.014657782390714,0.04753265157342,-0.051267467439175]],[[-0.034506645053625,0.14229011535645,-0.068902157247066],[0.05099007114768,0.037900432944298,0.059088665992022],[0.048733096569777,0.032609213143587,0.072558544576168]],[[0.0050999028608203,0.039808124303818,-0.14084006845951],[-0.0089334361255169,-0.012183175422251,0.019551686942577],[-0.19422160089016,0.085845857858658,0.048227101564407]]],[[[0.17041184008121,0.18600608408451,-0.044234149158001],[0.13527712225914,0.087484441697598,-0.046107050031424],[0.065341040492058,0.081310078501701,-0.076903961598873]],[[0.10514637082815,0.09158232063055,0.13909189403057],[0.072921954095364,0.0489506945014,0.16819079220295],[-0.012223777361214,0.049040168523788,0.019828170537949]],[[-0.044992040842772,0.036609247326851,-0.10496263951063],[0.076013974845409,-0.0037073250859976,-0.047018487006426],[0.11229322105646,0.041149664670229,-0.019198140129447]],[[-0.13119304180145,-0.077648177742958,-0.13653282821178],[-0.10615132004023,-0.023611074313521,-0.029180677607656],[-0.084494784474373,-0.097673781216145,-0.013497556559741]],[[-0.13772812485695,0.11657430976629,-0.026140721514821],[-0.11227267235518,0.015821482986212,-0.087353393435478],[-0.084863059222698,0.22000455856323,-0.11550077795982]],[[0.025063889101148,-0.14726862311363,-0.070717625319958],[0.054236941039562,-0.17504340410233,-0.15256735682487],[-0.056293878704309,0.017079813405871,-0.18149714171886]],[[-0.034570142626762,-0.0099360020831227,-0.098372869193554],[-0.040742140263319,-0.06895712018013,-0.10554444789886],[0.039885010570288,-0.04982865601778,0.026627957820892]],[[-0.047013998031616,-0.11537243425846,-0.072642646729946],[-0.23267628252506,-0.09039531648159,0.022430507466197],[0.054337784647942,-0.025617243722081,-0.045294418931007]],[[0.13527642190456,-0.0044538835063577,-0.018893875181675],[-0.076036177575588,0.056819226592779,-0.016076827421784],[-0.080945938825607,0.085079148411751,-0.0557791441679]],[[-0.025345183908939,-0.086007788777351,-0.12670800089836],[-0.065672941505909,-0.041254457086325,-0.040167827159166],[-0.10566116124392,-0.072366774082184,-0.013638688251376]],[[-0.044784475117922,0.12711106240749,0.071163401007652],[-0.16764661669731,0.080759435892105,0.0041587166488171],[0.019604755565524,0.075833693146706,0.031949177384377]],[[-0.0089817084372044,0.12838751077652,0.092789091169834],[0.039432816207409,0.014875253662467,0.17971424758434],[0.0026256621349603,0.081365011632442,-0.13606309890747]],[[-0.14607866108418,-0.078293055295944,-0.052011575549841],[-0.021834911778569,-0.025742657482624,-0.029097756370902],[-0.021172078326344,0.024127108976245,-0.037115018814802]],[[0.13354773819447,-0.12109677493572,0.085069075226784],[-0.024503283202648,-0.01890261657536,0.050201565027237],[-0.059356350451708,-0.082809180021286,0.037008810788393]],[[0.087056510150433,0.054170921444893,0.08644937723875],[-0.026001710444689,-0.066250398755074,-0.021718518808484],[0.031280823051929,-0.041909713298082,-0.081339009106159]],[[-0.040688246488571,0.14498737454414,0.0055580628104508],[-0.13482089340687,0.021515564993024,-0.12326174974442],[0.021569965407252,-0.030255649238825,-0.056534267961979]],[[-0.02621060796082,-0.043255358934402,-0.014407741837204],[0.13063222169876,-0.008630508556962,-0.080860935151577],[-0.025491645559669,0.09287166595459,0.047771491110325]],[[0.042051263153553,0.1021019294858,-0.063767321407795],[0.1404442936182,-0.01362064294517,-0.049139138311148],[0.11531461030245,-0.071681462228298,-0.044891849160194]],[[-0.024967137724161,-0.033503588289022,0.17257644236088],[-0.08538818359375,-0.016681807115674,-0.030646102502942],[-0.2153522670269,0.028589114546776,0.066111370921135]],[[-0.061594910919666,0.044153541326523,-0.026753192767501],[-0.017006505280733,-0.016948806121945,-0.063731759786606],[-0.015101173892617,-0.082592375576496,-0.09775160998106]],[[0.17254640161991,0.099058650434017,-0.14793384075165],[-0.048653744161129,0.037542246282101,-0.036263439804316],[-0.17086863517761,-0.036477062851191,-0.16194678843021]],[[-0.059219609946012,0.1716226786375,0.16767053306103],[-0.082434222102165,0.13108611106873,0.021124174818397],[-0.069879993796349,0.036839131265879,-0.0860505849123]],[[0.11495514959097,-0.091927774250507,0.050624568015337],[0.035381242632866,0.057230249047279,0.10551078617573],[-0.10607099533081,-0.0025882499758154,0.10050939023495]],[[-0.052213922142982,-0.094622522592545,-0.010437529534101],[0.029916826635599,0.015060316771269,-0.044356264173985],[0.010107356123626,0.087044976651669,-0.14656330645084]],[[-0.083678513765335,-0.070119336247444,0.15593795478344],[0.0098775252699852,-0.091420501470566,0.033303011208773],[-0.043077319860458,-0.093930020928383,0.10237442702055]],[[-0.042871918529272,-0.056934144347906,0.14750991761684],[-0.14693699777126,-0.13853743672371,0.10184121131897],[-0.045690283179283,-0.13842985033989,-0.0014816797338426]],[[0.054408013820648,0.049970895051956,-0.064436502754688],[0.06445237249136,0.027494005858898,-0.066347479820251],[0.081073321402073,-0.029129073023796,0.0087665719911456]],[[-0.17668138444424,-0.041768241673708,0.13642106950283],[-0.039917331188917,0.070203930139542,-0.029923982918262],[0.024725155904889,-0.034368481487036,-0.042460285127163]],[[-0.075946778059006,-0.0018106427742168,-0.0016700755804777],[-0.074774637818336,0.0079379007220268,-0.13037869334221],[-0.030466170981526,0.0022462613414973,-0.14492121338844]],[[-0.018087992444634,0.09056781232357,0.062931098043919],[-0.12430379539728,-0.049111861735582,-0.025943482294679],[0.069752782583237,-0.0091561088338494,-0.22269158065319]],[[-0.070754304528236,-0.10335375368595,0.12052484601736],[0.054514054208994,-0.1173792257905,-0.010771016590297],[0.012103036046028,-0.12363696098328,-0.0038610014598817]],[[0.011932929046452,-0.0092809004709125,0.13249850273132],[0.044056259095669,-0.010477115400136,0.08293505012989],[-0.020402317866683,0.033530227839947,-0.062099635601044]],[[-0.072801448404789,0.15983678400517,-0.08498277515173],[-0.11912333965302,0.053396239876747,0.064101234078407],[0.033191412687302,-0.015807300806046,0.22004483640194]],[[-0.049200780689716,0.0013316858094186,0.02890663407743],[-0.065282344818115,0.039428807795048,0.06022884324193],[-0.02098448947072,0.11304425448179,0.035154920071363]],[[-0.061706751585007,-0.13013136386871,-0.040931642055511],[-0.02884834446013,0.014266873709857,-0.037033464759588],[-0.022357665002346,-0.049755915999413,-0.24495528638363]],[[-0.20925867557526,-0.085382640361786,-0.07997103780508],[-0.11011591553688,0.11374887079,0.031440798193216],[-0.11813822388649,-0.038676887750626,0.056121993809938]],[[-0.018675768747926,0.098013527691364,0.15585578978062],[0.1779819726944,0.030146669596434,-0.047255322337151],[0.021182350814342,0.052894428372383,-0.0064992578700185]],[[-0.067702285945415,-0.13143838942051,-0.10087105631828],[-0.0307059828192,0.014056339859962,-0.090603984892368],[0.038840226829052,0.031072087585926,-0.034636646509171]],[[0.17328956723213,-0.15412433445454,-0.019008846953511],[-0.035562366247177,-0.10497078299522,-0.16413879394531],[0.0093819331377745,-0.012765415944159,-0.15512053668499]],[[0.093157105147839,0.044212877750397,-0.029892232269049],[-0.010879852809012,-0.09538159519434,0.037720024585724],[0.056412864476442,0.014527740888298,-0.14467251300812]],[[0.18684794008732,0.0044083399698138,-0.090658523142338],[0.086091294884682,-0.07058322429657,-0.048503253608942],[-0.05329941958189,-0.083386026322842,-0.061514791101217]],[[-0.024426745250821,0.064623452723026,-0.043811280280352],[0.0024040751159191,0.050967816263437,0.038094345480204],[-0.082109272480011,0.084293611347675,-0.028311528265476]],[[0.049684379249811,-0.037245400249958,0.035963967442513],[-0.030921237543225,0.022617798298597,-0.0015446576289833],[-0.063004285097122,-0.15673212707043,-0.10969857126474]],[[0.040214851498604,0.0348283611238,-0.017346438020468],[-0.05182858556509,-0.069429971277714,-0.077351175248623],[-0.019266033545136,-0.063895151019096,-0.04002158343792]],[[-0.22287885844707,-0.0017047064611688,0.02261745557189],[-0.052521951496601,0.11551736295223,-0.0080229677259922],[-0.029646998271346,-0.082450598478317,-0.049355525523424]],[[-0.10531764477491,-0.0084449434652925,0.050793819129467],[0.068792968988419,-0.030983531847596,-0.07704234868288],[-0.034200932830572,0.025457071140409,0.070178039371967]],[[2.714326728892e-05,-0.026045266538858,0.031847856938839],[0.060446348041296,0.065149009227753,-0.025485251098871],[-0.018812865018845,0.08144348859787,-0.011054811067879]],[[-0.089363001286983,-0.10337883979082,0.057992622256279],[-0.036125220358372,-0.017528602853417,3.3612926927162e-05],[-0.078661277890205,0.019563334062696,-3.4878714359365e-05]],[[-0.10925205051899,-0.11069599539042,-0.065197922289371],[0.072232350707054,0.04352418333292,0.091814547777176],[0.012844528071582,0.17817194759846,0.075298070907593]],[[-0.085997521877289,-0.081300757825375,0.12175617367029],[-0.021916838362813,-0.019090034067631,0.20185613632202],[0.049127850681543,0.030975906178355,0.14671686291695]],[[0.02338445559144,0.10881619900465,-0.069468542933464],[-0.076708726584911,-0.014277666807175,-0.041681833565235],[-0.0082297883927822,-0.093276470899582,-0.1166658103466]],[[0.13170233368874,0.078107550740242,-0.069887660443783],[0.046729393303394,-0.059182114899158,-0.067143641412258],[0.087340921163559,-0.052398025989532,-0.10832813382149]],[[-0.011066725477576,0.024927606806159,-0.06108458712697],[-0.040027566254139,-0.038167223334312,0.0047046369872987],[-0.067194685339928,-0.1073305606842,-0.20705746114254]],[[-0.13440583646297,0.082771115005016,0.069535866379738],[-0.092280432581902,-0.002493946114555,-0.0057855052873492],[-0.095431827008724,0.028489325195551,-0.015298498794436]],[[-0.19971369206905,0.1288880109787,-0.030544875189662],[0.12932057678699,0.048795562237501,0.014570357277989],[0.047426097095013,-0.015080713666975,-0.0029657143168151]],[[-0.042281184345484,0.090806134045124,0.068015344440937],[-0.062905535101891,0.018921609967947,-0.096506729722023],[0.10695367306471,0.054680299013853,-0.039729915559292]],[[-0.079764746129513,0.22825507819653,-0.019343253225088],[-0.0048268693499267,0.049415815621614,0.015129648149014],[-0.057305116206408,-0.044737685471773,-0.037396892905235]],[[0.0006346509908326,0.018125319853425,-0.017442334443331],[0.010517383925617,0.029324987903237,-0.075516186654568],[-0.11142888665199,-0.055429272353649,-0.090781725943089]],[[-0.046119283884764,-0.28692647814751,-0.12303547561169],[0.014121952466667,-0.083843782544136,0.011431253515184],[0.06963312625885,-0.12309502065182,0.0060934345237911]],[[-0.10969351232052,-0.01379176042974,0.23951953649521],[-0.089089341461658,-0.10245930403471,0.077515564858913],[-0.036849305033684,-0.029213761910796,0.096012376248837]],[[0.083506807684898,0.021482730284333,-0.039627250283957],[0.018425244837999,-0.022866735234857,0.0070896684192121],[0.065445557236671,0.047936916351318,-0.098788782954216]],[[0.061485126614571,0.096456304192543,-0.0560004375875],[-0.01353714056313,-0.074656888842583,-0.091420590877533],[-0.19002938270569,-0.20169158279896,0.080483593046665]],[[-0.0650619789958,0.024339070543647,-0.015380744822323],[-0.11987192183733,-0.024997882544994,-0.067898780107498],[-0.15439288318157,-0.073845461010933,-0.046402759850025]],[[0.020047646015882,-0.04193688929081,-0.12459763884544],[0.18085038661957,0.041211679577827,-0.083730950951576],[0.18824000656605,0.12130704522133,-0.019290745258331]],[[-0.29116457700729,-0.0009261456434615,0.01760290376842],[-0.18784664571285,0.019263178110123,0.070282377302647],[-0.097629502415657,0.10393776744604,0.11503628641367]],[[0.054627671837807,-0.042399547994137,0.12962628901005],[-0.010044581256807,0.011740694753826,0.030745765194297],[0.01361539773643,-0.02256041765213,0.040025688707829]],[[-0.035399422049522,-0.0068525141105056,0.073248900473118],[-0.043832298368216,-0.040354270488024,0.0038983835838735],[-0.036728076636791,-0.051029149442911,0.092216491699219]],[[-0.11271281540394,0.0020253458060324,-0.028377015143633],[-0.1489185988903,0.011216763406992,-0.14187788963318],[-0.083699434995651,-0.023764912039042,0.0033830567263067]],[[0.027329985052347,0.029490476474166,-0.010018093511462],[0.023215947672725,-0.026549383997917,0.039859261363745],[0.051045332103968,-0.043460369110107,0.086140386760235]],[[0.19369328022003,0.24622364342213,-0.17093032598495],[0.015954617410898,0.16373744606972,0.020043043419719],[0.03892907127738,0.05646463856101,-0.01420711260289]],[[0.067690402269363,0.0087430281564593,0.012931130826473],[-0.099794819951057,0.028246961534023,0.0035039277281612],[-0.07267153263092,0.00068226596340537,-0.16963548958302]],[[0.11782666295767,0.070496678352356,0.098692320287228],[0.17306445538998,-0.014927044510841,0.065823100507259],[-0.011818936094642,0.014631631784141,0.18616254627705]],[[-0.065251886844635,-0.044942408800125,0.093413397669792],[0.039353109896183,-0.042451199144125,0.096517279744148],[0.031422935426235,0.020757682621479,0.033305257558823]],[[-0.031752686947584,0.099591664969921,-0.11001859605312],[0.061670888215303,-0.016876898705959,-0.010040113702416],[0.036743775010109,-0.10105215013027,-0.04601526632905]],[[-0.032181799411774,-0.038852009922266,0.16267865896225],[0.016394259408116,0.1360277980566,0.052983377128839],[-0.11200602352619,-0.081821069121361,-0.08291707187891]],[[0.048401691019535,-0.0078779347240925,-0.02130464091897],[0.11888499557972,0.01446839235723,-0.022978974506259],[-0.00010514447785681,0.02869002148509,-0.021888563409448]],[[0.04908874258399,0.089348517358303,0.045886892825365],[-0.19116654992104,-0.017141975462437,-0.027686523273587],[0.063951388001442,0.021489242091775,-0.10163505375385]],[[-0.068780310451984,0.056112688034773,-0.047873422503471],[-0.057957898825407,0.022550048306584,0.037714567035437],[0.07170233130455,-0.070372126996517,-0.095299430191517]],[[0.077124856412411,-0.047878544777632,0.030604628846049],[0.18801748752594,0.041922561824322,0.057400532066822],[-0.018512038514018,0.11805936694145,0.24127614498138]],[[-0.14563919603825,-0.16829095780849,-0.089041866362095],[0.024462891742587,-0.0579440779984,-0.076381668448448],[-0.18298318982124,-0.10429234802723,0.039593212306499]],[[0.017928343266249,-0.030284266918898,-0.0047845537774265],[0.04314973205328,0.037433505058289,-0.091204807162285],[0.16295590996742,0.020203387364745,0.027648963034153]],[[-0.037932325154543,0.035533562302589,0.13231855630875],[-0.092090100049973,-0.17102491855621,-0.037035457789898],[-0.11772323399782,0.01072908192873,-0.0035095962230116]],[[0.052674267441034,-0.080367267131805,-0.12752763926983],[0.10156109184027,0.032460227608681,0.13164468109608],[0.13576698303223,0.0026931273750961,0.0088893873617053]],[[-0.04083263874054,-0.10155216604471,-0.0088991168886423],[-0.067929282784462,-0.044182289391756,-0.027744982391596],[-0.17239452898502,-0.046373378485441,0.022560687735677]],[[0.11599786579609,-0.074759215116501,0.031585913151503],[-0.035309012979269,-0.074630379676819,0.16147750616074],[-0.073750205338001,0.046082273125648,0.23768745362759]],[[-0.088423393666744,-0.057075459510088,-0.061923079192638],[-0.095632240176201,-0.064323380589485,0.1469541490078],[0.052548911422491,-0.26687574386597,-0.10402172803879]],[[0.060888402163982,0.043058108538389,0.013551659882069],[-0.0028274853248149,-0.050595600157976,-0.038808856159449],[-0.10625459998846,0.05505907535553,-0.046354681253433]],[[-0.077370561659336,0.025518057867885,0.058949124068022],[-0.0014825778780505,0.10196118801832,0.12412100285292],[0.062047474086285,-0.12846696376801,0.0012217096518725]],[[-0.054970469325781,0.14908380806446,-0.10821091383696],[-0.0023600899148732,0.063759744167328,0.047301739454269],[0.023605965077877,0.047755558043718,0.029728580266237]],[[-0.12164869904518,0.12344998121262,-0.017338860780001],[0.092030517756939,0.089853093028069,0.16186910867691],[0.014888535253704,-0.013978444039822,-0.025458011776209]],[[0.15179917216301,0.044918712228537,-0.17481826245785],[-0.10188542306423,-0.1176143810153,0.055041652172804],[-0.083801478147507,-0.086882472038269,-0.00071627536090091]],[[0.017496839165688,-0.0030004056170583,0.10308192670345],[0.10193824768066,-0.0058427406474948,-0.0047764000482857],[0.040360137820244,0.028708333149552,0.019362540915608]],[[-0.071458458900452,0.036123808473349,0.023387812077999],[-0.055748984217644,-0.029455939307809,0.033505294471979],[0.01991730183363,0.013691463507712,-0.013604940846562]],[[-0.19691771268845,-0.0056352741084993,-0.15433087944984],[0.041983623057604,0.048817053437233,0.043836385011673],[0.071667194366455,0.037256889045238,0.06874743103981]],[[0.15806610882282,-0.057116482406855,-0.065285451710224],[-0.034893393516541,-0.023747971281409,-0.089879877865314],[-0.20273230969906,0.014124420471489,-0.0040970724076033]],[[-0.15962806344032,0.087440520524979,-0.069513209164143],[0.03386028110981,0.052521113306284,-0.042632903903723],[0.074350096285343,0.12686507403851,-0.044932939112186]],[[-0.074785307049751,0.066708013415337,0.0039446726441383],[-0.019377749413252,-0.13651037216187,-0.010384098626673],[0.13518467545509,0.061469968408346,-0.061061751097441]],[[0.21663148701191,0.015255398117006,-0.023187151178718],[-0.08242542296648,-0.16423968970776,-0.0028636909555644],[0.057525414973497,0.040251560509205,0.0063943169079721]],[[0.029536060988903,-0.061506781727076,0.11293893307447],[-0.13449442386627,-0.24879024922848,0.095351807773113],[-0.086919166147709,-0.045280519872904,0.077215403318405]],[[0.073555178940296,-0.066865190863609,-0.086607843637466],[0.030836520716548,-0.079614371061325,0.068196929991245],[0.080454736948013,-0.035680018365383,0.014914492145181]],[[-0.10899437963963,-0.063695020973682,0.010234493762255],[0.040518697351217,-0.022798718884587,-0.12085581570864],[-0.068113811314106,-0.068826138973236,0.073466137051582]],[[0.090146861970425,-0.089275047183037,-0.015805723145604],[0.071928016841412,0.027192791923881,0.0078827608376741],[-0.085207276046276,0.047920539975166,-0.0069564837031066]],[[-0.15082080662251,-0.034682597965002,0.085874758660793],[0.079038307070732,-0.0012894017854705,0.076616130769253],[-0.011250815354288,-0.064334414899349,-0.10619442164898]],[[0.033950492739677,0.11878455430269,-0.024092633277178],[-0.04772986471653,0.028387641534209,-0.063284240663052],[0.061349760740995,-0.082361556589603,0.0031833969987929]],[[0.016208056360483,0.029141310602427,-0.059658419340849],[0.084302216768265,0.016977002844214,-0.15726824104786],[-0.067983277142048,-0.054652880877256,-0.19626159965992]],[[0.011581285856664,0.066733404994011,0.018987251445651],[0.010589171200991,0.011919595301151,-0.017385594546795],[0.08536072075367,0.14113248884678,0.135318338871]],[[-0.035206831991673,0.097687482833862,0.15996368229389],[-0.071234032511711,0.049998257309198,-0.019860336557031],[0.014331698417664,-0.0006727174622938,0.065395765006542]],[[0.0066852946765721,-0.0035298303700984,-0.12738099694252],[0.027157759293914,-0.057695213705301,0.0096380086615682],[-0.024931382387877,0.044604808092117,-0.017327046021819]],[[0.099368773400784,-0.0060845063999295,7.4092560680583e-05],[0.071453295648098,-0.1022355556488,0.11042736470699],[0.056478254497051,-0.072938561439514,-0.078589007258415]],[[0.0071367332711816,-0.03764234110713,0.086057297885418],[0.040525510907173,0.011695418506861,0.2353673428297],[0.14451490342617,0.043184723705053,0.1061832010746]],[[-0.0027909390628338,-0.0012824509758502,0.048080995678902],[-0.067751251161098,-0.049441423267126,-0.053728219121695],[-0.06998148560524,-0.058211028575897,-0.014167071320117]],[[0.0020328499376774,-0.01531966868788,-0.078100122511387],[0.074076421558857,-0.07430512458086,0.021955236792564],[0.22233816981316,-0.21628195047379,-0.0052000051364303]],[[0.072411082684994,0.21316300332546,0.0016429921379313],[-0.036783341318369,0.20408238470554,-0.22840429842472],[0.023529179394245,0.032309025526047,-0.10261235386133]],[[0.11678963899612,-0.09566342830658,-0.01591457799077],[0.073880851268768,0.0073636625893414,0.099831968545914],[0.096526198089123,-0.014715085737407,-0.17390538752079]],[[-0.045687444508076,0.037766948342323,-0.047548297792673],[-0.039764072746038,0.16469709575176,0.0043744859285653],[0.084211677312851,0.17090880870819,0.046019922941923]],[[0.042968779802322,0.13345769047737,0.09268119931221],[-0.030878970399499,-0.046523656696081,0.093601375818253],[-0.023429069668055,0.057912852615118,0.064212374389172]],[[0.020459525287151,0.011451479047537,-0.076629430055618],[0.052919618785381,0.024162087589502,0.0054629966616631],[-0.044975493103266,-0.010959789156914,0.11087507754564]],[[0.15497319400311,0.13058714568615,0.15921021997929],[-0.039661530405283,-0.055100608617067,0.039505913853645],[0.099034063518047,0.0048428871668875,0.066753678023815]],[[0.045722268521786,0.080964647233486,0.2170912027359],[-0.13040389120579,-0.088754415512085,0.094752408564091],[-0.14855079352856,0.096245728433132,0.1025292724371]],[[-0.058858796954155,-0.028778690844774,0.0048439265228808],[-0.07701737433672,0.015275334008038,-0.052793726325035],[-0.11203690618277,-0.056085105985403,-0.027355125173926]],[[-0.20795418322086,-0.13683868944645,-0.12156787514687],[-0.18585160374641,-0.093146197497845,-0.09019497781992],[0.005187067668885,0.059499777853489,-0.04856239631772]],[[-0.080339297652245,-0.01897244527936,0.0052851918153465],[-0.076225802302361,-0.0081426901742816,-0.02940090559423],[-0.042561497539282,0.03184412047267,0.073379814624786]],[[0.0073660225607455,-0.074004419147968,-0.10570166260004],[0.17921251058578,0.0095250597223639,-0.21768569946289],[-0.075239457190037,-0.18246366083622,-0.09730003029108]],[[0.12834484875202,-0.0062116337940097,-0.07757855951786],[-0.0052921869792044,0.010791904293001,-0.040322378277779],[0.068907260894775,0.12988945841789,0.15981814265251]],[[-0.0064579481258988,-0.055179286748171,0.030251694843173],[0.20496219396591,0.0080776158720255,-0.027953412383795],[0.059145014733076,-0.085887484252453,-0.01870815269649]],[[-0.11775535345078,-0.028790343552828,-0.039461776614189],[0.10395811498165,-0.064426966011524,0.062626451253891],[-0.018999068066478,-0.056278228759766,0.051102247089148]],[[0.067965775728226,-0.15167063474655,0.0053308987990022],[0.06569742411375,-0.07263158261776,0.066884629428387],[0.17610505223274,0.1730220168829,-0.041822552680969]],[[-0.0046412795782089,0.029098637402058,0.18289710581303],[-0.020597418770194,0.0066136671230197,0.22403997182846],[-0.0047592925839126,-0.1729651093483,0.089194752275944]]],[[[0.016239086166024,-0.148955732584,0.094233669340611],[-0.063049741089344,-0.041836820542812,0.040288917720318],[0.013568217866123,0.12874375283718,0.10419115424156]],[[-0.036309976130724,-0.011601956561208,-0.017638746649027],[0.0072451280429959,-0.10235420614481,-0.12920366227627],[0.22353580594063,0.038946267217398,-0.042440705001354]],[[-0.036119636148214,0.055775441229343,0.30053198337555],[0.021936740726233,0.23714825510979,0.071890249848366],[0.12730923295021,0.1839125752449,0.01416240632534]],[[-0.026970513164997,-0.18652401864529,0.00076289696153253],[-0.11633077263832,-0.11764783412218,-0.11970437318087],[-0.036380730569363,-0.18912447988987,-0.15485318005085]],[[0.19132865965366,0.081932164728642,0.020502725616097],[-0.14076247811317,-0.14168661832809,-0.0027699626516551],[-0.11238386482,-0.10681203007698,0.066200375556946]],[[-0.012963624671102,0.0080074444413185,0.026678906753659],[0.065574429929256,-0.071699649095535,0.10130104422569],[0.11715468764305,-0.015540491789579,-0.0115558039397]],[[0.076140463352203,0.079993292689323,-0.0097701046615839],[-0.093381389975548,-0.077033638954163,-0.0049795261584222],[0.047236777842045,0.021133024245501,-0.00069984764559194]],[[-0.011144436895847,0.016741530969739,0.025067392736673],[-0.0028968488331884,0.051388517022133,0.104835703969],[0.10913296043873,0.10881394147873,0.22135743498802]],[[-0.034398298710585,-0.05588024482131,0.032889630645514],[-0.013782378286123,0.042196854948997,0.077831856906414],[0.05292896181345,0.039366029202938,0.043067418038845]],[[0.031559962779284,0.095885910093784,0.021238576620817],[0.060088127851486,-0.016231929883361,-0.051701705902815],[0.050555977970362,0.1325401365757,0.04995484650135]],[[-0.096104420721531,0.045242924243212,-0.055878277868032],[0.0025953357107937,0.024588990956545,0.12753938138485],[0.026408202946186,0.075579099357128,0.11780884861946]],[[-0.040264189243317,0.070711195468903,0.0034487305674702],[-0.017339685931802,0.065702997148037,0.12350142747164],[-0.12850275635719,-0.00085081555880606,-0.021256668493152]],[[-0.032072469592094,-0.081634864211082,-0.037773475050926],[-0.0097352201119065,-0.055943824350834,0.090583249926567],[-0.017989255487919,-0.050726640969515,0.012737951241434]],[[-0.048231910914183,-0.03782681375742,0.1102633997798],[0.019718982279301,-0.01051224861294,-0.015634346753359],[0.002489018952474,-0.10322087258101,0.0053063193336129]],[[-0.069857001304626,0.058525465428829,0.16770479083061],[0.20706836879253,0.10068194568157,-0.028631018474698],[0.036419384181499,0.16660468280315,0.16224551200867]],[[0.13012613356113,0.085823304951191,-0.086970880627632],[0.02720439620316,-0.043114278465509,-0.059162624180317],[0.052035678178072,-0.02094266936183,0.0089805768802762]],[[-0.020280916243792,-0.048808716237545,-0.017700606957078],[-0.071780890226364,-0.082156032323837,0.038199622184038],[-0.018090143799782,-0.097202286124229,-0.013900901190937]],[[0.066072709858418,0.0037918940652162,-0.0067537981085479],[0.080724388360977,0.006185797508806,0.096256524324417],[-0.068592540919781,0.11100335419178,0.042213100939989]],[[0.017062168568373,0.13795238733292,0.19237130880356],[-0.098575852811337,0.05027787014842,0.097236230969429],[0.0046193227171898,-0.17765557765961,-0.068972326815128]],[[-0.011198843829334,-0.0011464514536783,0.067201837897301],[-0.085375003516674,-0.11900088191032,-0.05197187140584],[0.0050735059194267,-0.12100201100111,-0.092286631464958]],[[-0.039529580622911,0.11490948498249,0.059834096580744],[0.02851665392518,0.06088625267148,-0.047370862215757],[-0.095360219478607,-0.027405692264438,-0.01521719712764]],[[-0.098604068160057,0.063008464872837,-0.0075002913363278],[-0.10515406727791,0.0041012158617377,0.008660489693284],[0.18136827647686,-0.083157382905483,0.0039726789109409]],[[0.060367200523615,0.09780840575695,-0.06236544251442],[-0.020286543294787,0.061735481023788,-0.061019126325846],[-0.036909710615873,-0.044851865619421,0.017571479082108]],[[-0.13439908623695,0.042824774980545,0.10266172885895],[0.040907081216574,-0.094992913305759,-0.066065698862076],[0.18040782213211,0.011696006171405,-0.079141654074192]],[[-0.19915452599525,-0.043668169528246,-0.051882635802031],[0.055699147284031,-0.063179060816765,0.049323916435242],[0.16788764297962,0.08890775591135,-0.076053962111473]],[[-0.045761946588755,-0.12690724432468,-0.069465070962906],[0.077038079500198,-0.01676283031702,-0.016522735357285],[-0.093113727867603,-0.093970529735088,0.14404584467411]],[[-0.072061397135258,0.055409908294678,0.062445379793644],[-0.10833367705345,0.11459401994944,0.028129488229752],[0.081877492368221,0.1099106669426,0.25529536604881]],[[0.067371442914009,-0.0055849091149867,0.20751555263996],[0.039846643805504,-0.087110862135887,0.077515281736851],[0.026193056255579,-0.0062411674298346,0.063319206237793]],[[-0.12426889687777,-0.059127230197191,-0.2147105038166],[-0.1025605276227,0.072687231004238,-0.20919321477413],[-0.034442506730556,-0.026795687153935,-0.15015742182732]],[[-0.1112896502018,0.032613411545753,0.013949383050203],[-0.12834203243256,-0.13905741274357,-0.02162042632699],[-0.017759120091796,-0.078369207680225,-0.010768444277346]],[[-0.0010360771557316,0.001444740104489,-0.018982904031873],[-0.031841564923525,-0.065810769796371,-0.020986415445805],[-0.044173754751682,0.0067661972716451,0.034102100878954]],[[-0.001134840073064,-0.095230527222157,0.045556362718344],[0.042581290006638,0.23580907285213,-0.064238213002682],[0.029124120250344,0.055691093206406,-0.016446407884359]],[[0.0092778224498034,-0.0073501719161868,-0.017505725845695],[-0.060391217470169,-0.1522780507803,0.047245513647795],[0.037513080984354,-0.033370766788721,0.038425553590059]],[[0.08586522936821,0.11176744103432,-0.074756324291229],[0.088728427886963,-0.092589691281319,0.075384512543678],[-0.055682331323624,0.029516851529479,0.032943777740002]],[[0.032612904906273,-0.018110791221261,-0.09255001693964],[-0.034748192876577,-0.081184096634388,-0.11550542712212],[-0.02866954728961,-0.042329490184784,0.011158953420818]],[[-0.17670777440071,0.042589906603098,-0.038349352777004],[-0.17092701792717,-0.069018021225929,-0.087547607719898],[-0.1401331871748,-0.0096031976863742,-0.026852179318666]],[[0.19815531373024,0.060697067528963,-0.026799144223332],[-0.095685020089149,0.079919762909412,0.087543249130249],[0.12406972050667,0.063164733350277,-0.11162880063057]],[[-0.039795059710741,0.0064967512153089,-0.033381298184395],[0.0010409144451842,-0.0054245083592832,-0.15530274808407],[0.16127480566502,-0.044814713299274,-0.027004506438971]],[[-0.083037719130516,-0.059855774044991,0.050990786403418],[0.058025125414133,-0.14675861597061,-0.02437367849052],[0.020331814885139,0.062725067138672,-0.056271366775036]],[[0.11683723330498,-0.081021592020988,-0.087228432297707],[0.031733900308609,-0.12550459802151,-0.016659153625369],[0.092479936778545,-0.11798059940338,0.08854054659605]],[[0.072238408029079,0.041226241737604,0.065196871757507],[-0.062196828424931,0.048520505428314,-0.011017015203834],[-0.21476176381111,0.1012257412076,0.030600801110268]],[[0.043510992079973,0.03874197602272,-0.12584978342056],[-0.083515740931034,0.026484865695238,-0.044741544872522],[0.094916604459286,0.16068245470524,0.0022580286022276]],[[-0.10288822650909,-0.021640373393893,-0.20119592547417],[-0.024250460788608,-0.048652935773134,-0.041808135807514],[-0.011214127764106,-0.0014037231449038,0.044627226889133]],[[0.04034323617816,0.005877731833607,-0.05914717912674],[-0.011910445056856,-0.0085458094254136,-0.033594336360693],[0.0205934997648,-0.11241352558136,0.08498115837574]],[[0.11389841884375,-0.054556615650654,-0.019554410129786],[-0.10360932350159,0.021785382181406,0.071599327027798],[-0.057192549109459,-0.21386256814003,-0.12683868408203]],[[0.051262386143208,-0.077490866184235,-0.13561624288559],[0.063305377960205,-0.068405270576477,-0.034789584577084],[0.06477253139019,-0.17541615664959,-0.29915097355843]],[[-0.016254911199212,0.13847568631172,0.043666575103998],[0.035975225269794,0.022158773615956,0.042469438165426],[0.10546600818634,0.0073246345855296,0.074562974274158]],[[-0.079736083745956,-0.071516767144203,0.15163993835449],[0.04899637401104,-0.065856769680977,-0.046355500817299],[0.17410488426685,-0.02522044070065,-0.081273138523102]],[[-0.15087287127972,0.0019216113723814,0.16480156779289],[0.017540995031595,-0.060200165957212,-0.070711001753807],[-0.031141871586442,-0.060152374207973,-0.1139652505517]],[[-0.083351813256741,-0.13004693388939,-0.052753821015358],[-0.045078214257956,0.0044462592341006,0.0090462965890765],[-0.0082514863461256,-0.018530992791057,-0.1056090965867]],[[-0.061003021895885,-0.12930469214916,-0.036353096365929],[0.12458708882332,-0.031606063246727,-0.095534041523933],[0.0019082562066615,-0.024254018440843,-0.16022726893425]],[[-0.012779716402292,0.11392396688461,-0.28843441605568],[-0.0028572999872267,-0.034328527748585,-0.080304928123951],[0.15951210260391,0.1277019828558,0.0055030193179846]],[[-0.025588618591428,0.086729772388935,0.017200767993927],[0.0075738364830613,-0.044747453182936,-0.041594430804253],[0.020028702914715,-0.067196294665337,-0.017203472554684]],[[-0.018404582515359,0.083498299121857,-0.0035726162604988],[0.031494792550802,0.11505351960659,0.13439807295799],[-0.09581084549427,-0.04178112372756,0.10282947868109]],[[0.022393807768822,-0.010774487629533,0.045894499868155],[0.1112238317728,-0.022374425083399,-0.032331682741642],[0.077962227165699,0.071166910231113,-0.090090900659561]],[[0.051009852439165,-0.10120122879744,0.1032669916749],[0.0083293998613954,0.065744146704674,-0.038063738495111],[-0.028501152992249,0.04277466610074,-0.038678281009197]],[[0.11731088161469,0.046109519898891,-0.026382017880678],[-0.064899198710918,0.023691922426224,-0.12620261311531],[0.012732358649373,0.018329748883843,0.089504472911358]],[[0.062577687203884,-0.067777991294861,-0.053984694182873],[0.069573953747749,-0.099293008446693,-0.15215495228767],[-0.058150801807642,-0.085674211382866,0.036209914833307]],[[-0.0015560159226879,0.11494150012732,-0.10366108268499],[0.014720734208822,-0.054643295705318,-0.020126899704337],[0.022468471899629,-0.077608242630959,0.017494451254606]],[[0.036430064588785,0.015525811351836,0.0019261086126789],[0.11017307639122,0.073880411684513,0.053024910390377],[-0.0061009884811938,0.048202224075794,0.082652613520622]],[[-0.14659963548183,-0.23963275551796,-0.052716549485922],[-0.096642434597015,-0.14217501878738,-0.048175618052483],[-0.042213443666697,-0.095780275762081,-0.043400071561337]],[[0.086813293397427,0.038520082831383,-0.025817945599556],[0.025808276608586,-0.01346396561712,0.01754704862833],[-0.015411233529449,-0.023033145815134,-0.099939353764057]],[[0.12469917535782,0.051450401544571,0.093255192041397],[0.084049142897129,-0.034586075693369,-0.079460509121418],[-0.10394094884396,0.055717274546623,0.0091563137248158]],[[0.075030907988548,0.21457380056381,-0.0158572178334],[-0.0040102931670845,0.060514569282532,0.07792292535305],[0.020756550133228,0.065839737653732,-0.11740048974752]],[[-0.06926391273737,0.0026914079207927,-0.05653952434659],[-0.018109496682882,-0.018808968365192,-0.13158279657364],[-0.04919309169054,0.073845416307449,-0.25638338923454]],[[-0.059993881732225,0.049685478210449,-0.0028306464664638],[0.041981164366007,0.0098366355523467,0.0011048571905121],[-0.015169594436884,0.078370995819569,-0.040712304413319]],[[0.11551371961832,-0.0014511115150526,-0.001946137053892],[0.021650444716215,-0.017250398173928,-0.1527144163847],[0.21756632626057,0.11564177274704,0.08309967815876]],[[-0.091394752264023,0.010928372852504,-0.16318063437939],[-0.067202158272266,-0.057692985981703,-0.017586190253496],[0.021152876317501,-0.038950905203819,0.051226191222668]],[[0.047151580452919,0.0021300970111042,-0.19520330429077],[0.034836694598198,0.031889587640762,0.033214066177607],[-0.019099786877632,-0.15508028864861,0.10285749286413]],[[-0.0033120266161859,-0.10429299622774,0.12086650729179],[0.026456823572516,-0.13150344789028,0.014327378943563],[0.075952731072903,-0.039399839937687,0.0048076235689223]],[[0.079668566584587,-0.07206004858017,0.11334107816219],[0.15279674530029,0.13795246183872,0.011711401864886],[0.04375447332859,0.040446393191814,0.10896722227335]],[[-0.013246951624751,0.043644655495882,-0.073904618620872],[-0.0048026950098574,0.02559725753963,0.047438722103834],[-0.064249441027641,0.097322486341,0.023180881515145]],[[-0.19417157769203,0.0081362435594201,-0.10227819532156],[-0.046793479472399,0.021406896412373,-0.0029823610093445],[-0.0061017642728984,-0.00028561486396939,0.079057529568672]],[[0.006829344201833,0.035857062786818,0.0065416656434536],[0.091724887490273,0.098534516990185,-0.0088553363457322],[0.15501165390015,0.045611247420311,-0.049358226358891]],[[0.069149538874626,0.028273493051529,-0.10942459106445],[0.061389718204737,-0.080338805913925,-0.08753464370966],[-0.18714667856693,-0.081831701099873,-0.033345218747854]],[[-0.089832879602909,-0.049628686159849,-0.12720549106598],[-0.076686009764671,-0.056622352451086,0.010991562157869],[-0.16468614339828,-0.0034515205770731,0.053072657436132]],[[0.11829147487879,-0.13295723497868,-0.036496590822935],[-0.016860585659742,0.021043168380857,-0.11208642274141],[-0.11341623961926,-0.024749079719186,-0.089093558490276]],[[-0.033873844891787,-0.040835831314325,-0.18872042000294],[0.08523678034544,0.039163455367088,0.020526301115751],[0.082218207418919,0.15232633054256,-0.016953432932496]],[[-0.060746014118195,0.059880934655666,0.063593573868275],[0.097177319228649,-0.039694715291262,0.098831199109554],[0.0052631334401667,-0.048238877207041,-0.0035632918588817]],[[-0.12781359255314,-0.030313517898321,-0.12028636783361],[-0.12188681960106,-0.07774630934,-0.078159421682358],[-0.19050844013691,-0.045135032385588,-0.053584709763527]],[[0.13679373264313,0.056487020105124,-0.019603416323662],[-0.0065855029970407,0.0060949828475714,-0.02160682156682],[-0.1022574454546,0.0091654490679502,-0.077894732356071]],[[-0.045090205967426,0.065838932991028,-0.038042917847633],[-0.02374192327261,-0.041834026575089,-0.14618973433971],[-0.13172011077404,-0.01479608938098,0.11146507412195]],[[0.12143579125404,0.081399448215961,0.095570400357246],[0.053793419152498,0.027362244203687,0.048748161643744],[0.029660642147064,0.1030742302537,0.14109826087952]],[[0.07383705675602,0.018953308463097,-0.056741524487734],[0.08249082416296,0.034681841731071,-0.064823299646378],[0.016721488907933,-0.061545506119728,-0.011230025440454]],[[-0.042917266488075,-0.0020230952650309,0.035641722381115],[-0.04583689942956,-0.047247085720301,0.0076660593040287],[0.18028979003429,0.10518077760935,0.082283146679401]],[[0.13375525176525,0.10289847105742,-0.015433246269822],[0.030789336189628,0.050387490540743,-0.039342861622572],[-0.031904738396406,-0.032651048153639,0.016780961304903]],[[0.10619013756514,0.095599375665188,0.10225855559111],[0.013365296646953,0.015189237892628,-0.042475391179323],[0.20380286872387,0.020057642832398,0.098869100213051]],[[0.052161443978548,-0.025636481121182,-0.032108079642057],[0.071039192378521,-0.037372376769781,0.070017091929913],[0.14857518672943,-0.057814653962851,-0.051841758191586]],[[0.1214959397912,0.021306816488504,-0.029160743579268],[0.058663167059422,0.064844459295273,0.04197945073247],[0.041232012212276,-0.058263398706913,0.032035164535046]],[[-0.032795581966639,-0.06107510253787,-0.029155798256397],[0.036472592502832,-0.053852867335081,-0.074405640363693],[-0.1148933917284,-0.012248699553311,-0.0020716655999422]],[[0.037342414259911,0.069336518645287,0.13866695761681],[-0.018228156492114,-0.042166754603386,-0.022821361199021],[0.041993513703346,-0.068088717758656,0.16774946451187]],[[-0.017103103920817,-0.070348918437958,0.020900880917907],[-0.055708561092615,-0.070710644125938,-0.052933745086193],[-0.03281943500042,-0.025206273421645,0.13518336415291]],[[0.083716817200184,0.084377266466618,-0.0089422138407826],[-0.002988668391481,0.061898734420538,0.15086850523949],[-0.048461224883795,0.0019655269570649,0.064834766089916]],[[-0.058201111853123,0.15892745554447,0.088443279266357],[-0.04686064273119,0.057979308068752,0.063782937824726],[0.1013046130538,0.07427641749382,0.09510250389576]],[[0.022254642099142,-0.011181721463799,-0.079212114214897],[0.044570747762918,0.099928572773933,0.047311551868916],[0.16536885499954,0.14666122198105,0.056307423859835]],[[-0.10767533630133,-0.040359675884247,-0.0031532142311335],[0.10565576702356,0.025662649422884,0.017595184966922],[-0.031945087015629,0.098921097815037,-0.084854736924171]],[[-0.0083592915907502,-0.089337982237339,-0.069667436182499],[-0.025141879916191,-0.16604901850224,-0.12834960222244],[-0.011716212145984,0.032464526593685,-0.039781864732504]],[[-0.030641213059425,0.044444635510445,0.037004474550486],[-0.030692277476192,-0.013794461265206,0.029763232916594],[0.038048300892115,-0.050753533840179,-0.057371586561203]],[[0.097637377679348,-0.062070827931166,0.045763775706291],[0.00065875123254955,0.058868490159512,0.027264988049865],[-0.04503507912159,-0.16021598875523,0.053380455821753]],[[0.049563899636269,-0.054035156965256,0.093446061015129],[-0.037094559520483,-0.043995954096317,0.059933770447969],[0.048713330179453,-0.079760827124119,0.026299089193344]],[[0.17405441403389,-0.062987096607685,0.020897287875414],[0.10449879616499,-0.056843858212233,0.036856956779957],[0.081118419766426,0.048974074423313,0.0096620684489608]],[[0.077347844839096,0.084263451397419,0.15399120748043],[0.01947801373899,0.12441927194595,0.16448998451233],[-0.067470625042915,-0.052591759711504,0.065747998654842]],[[-0.064099974930286,-0.0094494828954339,0.14495220780373],[0.17877864837646,0.063267752528191,-0.039188057184219],[-0.12816928327084,0.02951231226325,0.013338304124773]],[[0.00093635381199419,-0.076654329895973,-0.099361024796963],[0.13399405777454,0.092194832861423,-0.050333678722382],[-0.0072512184269726,-0.10141908377409,-0.038491372019053]],[[0.015785375609994,0.011437238194048,-0.15946643054485],[-0.015234094113111,-0.039811115711927,0.0233696680516],[-0.071997381746769,-0.046519618481398,0.016655353829265]],[[-0.088620759546757,0.013414662331343,0.20411042869091],[-0.046968217939138,0.027624340727925,0.054346226155758],[-0.13012488186359,-0.029924543574452,0.063064329326153]],[[-0.023941352963448,-0.15144127607346,-0.029084565117955],[0.056912392377853,-0.00094605848425999,0.11034717410803],[-0.11420508474112,0.0085506131872535,0.03282230719924]],[[-0.17407967150211,-0.10159739106894,-0.0040437215939164],[-0.11175179481506,0.027491385117173,-0.06554176658392],[-0.1287600249052,-0.021368203684688,0.044248148798943]],[[0.015145885758102,-0.063757963478565,0.09168279916048],[-0.1164832636714,0.088480517268181,-0.05888257175684],[-0.019982162863016,0.069542996585369,0.094029195606709]],[[0.15607923269272,0.1024312376976,-0.086289659142494],[0.080682069063187,-0.021196946501732,-0.048513695597649],[-0.11151208728552,-0.026229487732053,-0.10111181437969]],[[0.024340324103832,-0.09770804643631,-0.029568638652563],[-0.030709307640791,0.050428349524736,-0.05328319221735],[-0.014100657775998,0.055319599807262,0.039337676018476]],[[-0.046836342662573,-0.043168619275093,-0.027531791478395],[0.064403705298901,-0.0027250428684056,-0.081935174763203],[-0.043254442512989,-0.040307823568583,-0.029149584472179]],[[0.061310037970543,-0.085289880633354,0.088340595364571],[0.09527288377285,0.053561426699162,0.021236717700958],[-0.10554179549217,-0.001768505666405,-0.078793182969093]],[[0.0027145892381668,0.029602840542793,0.066027998924255],[-0.15343707799911,-0.087517008185387,0.019221775233746],[-0.079254306852818,-0.029464431107044,0.079480670392513]],[[-0.20148411393166,0.033863972872496,0.026713140308857],[-0.099439315497875,-0.01285745203495,0.0051493588835001],[-0.061387483030558,0.018895940855145,0.064863763749599]],[[0.10490836948156,0.027275798842311,-0.16479396820068],[-0.019747106358409,0.089683949947357,0.019493944942951],[0.032481513917446,-0.077917940914631,-0.056050769984722]],[[-0.046068884432316,0.063268952071667,-0.048199616372585],[-0.015546335838735,-0.096975281834602,0.038319870829582],[0.034256670624018,-0.016047550365329,0.019025994464755]],[[-0.0046582766808569,-0.006938268430531,0.023462150245905],[0.12151602655649,0.11235765367746,0.080664113163948],[-0.13577914237976,-0.15299168229103,-0.016145860776305]],[[0.052899941802025,-0.094493202865124,0.051074530929327],[-0.0142054380849,-0.074803397059441,-0.037913039326668],[0.031322877854109,-0.075475037097931,-0.087368726730347]],[[0.15690369904041,0.0075073931366205,-0.13814306259155],[-0.016970915719867,-0.062338601797819,0.019444385543466],[0.042778231203556,-0.0090732555836439,0.088092766702175]],[[0.071976810693741,0.10282162576914,0.017734300345182],[0.0050267120823264,-0.069167263805866,0.11144889891148],[0.011896472424269,-0.0077296169474721,-0.053697746247053]],[[-0.0041065174154937,0.095034591853619,0.028847478330135],[0.092851266264915,0.11213224381208,-0.029412388801575],[0.03905175998807,0.11371342092752,-0.055000945925713]],[[-0.081999011337757,0.005423576105386,-0.14587381482124],[-0.039339151233435,-0.10911850631237,-0.061966829001904],[0.020926222205162,-0.062329582870007,0.039240553975105]],[[0.022657334804535,0.043981298804283,0.062087494879961],[0.10936053842306,-0.004407711327076,0.10254339873791],[0.28461068868637,-0.074285298585892,0.047518469393253]],[[0.087253101170063,-0.088193222880363,0.1242087110877],[0.055266082286835,-0.053150031715631,0.18088093400002],[-0.31118205189705,0.24235093593597,0.020960424095392]],[[-0.068171307444572,0.19120892882347,-0.15655337274075],[-0.034812226891518,-0.019817937165499,0.096682153642178],[-0.0084901750087738,0.028813993558288,-0.072973430156708]],[[0.059814851731062,-0.044555269181728,-0.011132013984025],[-0.12300096452236,-0.14208403229713,0.11920406669378],[0.020555097609758,0.016930628567934,-0.016257293522358]],[[0.002262043999508,-0.048051610589027,-0.10824377089739],[0.0046685170382261,0.065679475665092,-0.11378236860037],[0.019884165376425,-0.041982937604189,0.0064240237697959]]],[[[-0.043868202716112,0.077088080346584,-0.047763306647539],[-0.054100431501865,0.065667286515236,0.08073940128088],[0.044171139597893,0.040366899222136,-0.052993983030319]],[[-0.0084688607603312,0.00075368990655988,0.13006570935249],[0.060405276715755,0.010910152457654,0.018733045086265],[-0.055309388786554,-0.03413674607873,-0.029697893187404]],[[0.084936589002609,0.028638500720263,0.10219466686249],[0.046246603131294,-0.010782539844513,0.044096779078245],[-0.039163999259472,-0.013504199683666,-0.12093038111925]],[[-0.031257402151823,0.10342518240213,0.018775209784508],[-0.067758850753307,0.0026363059878349,0.092185877263546],[-0.010529106482863,-0.049841187894344,-0.099446341395378]],[[0.074184745550156,0.064110524952412,-0.062778562307358],[-0.10328032821417,-0.017659671604633,-0.033626228570938],[0.058606449514627,0.02683786675334,0.074845418334007]],[[0.02098279632628,-0.019331000745296,0.086646191775799],[0.12140788137913,-0.016747796908021,-0.02966801635921],[-0.013065070845187,-0.036588821560144,0.019826171919703]],[[0.10150636732578,-0.010391793213785,-0.027027351781726],[0.12065809220076,0.091716714203358,0.19055461883545],[0.039940014481544,0.020614538341761,-0.017181236296892]],[[0.10495956987143,0.022393079474568,0.013853813521564],[0.0013579335063696,-0.047668933868408,-0.01337858941406],[0.060108050704002,-0.022559359669685,-0.013510829769075]],[[0.10354472696781,-0.032584715634584,0.015590566210449],[0.056599240750074,0.013744018040597,0.066626571118832],[-0.039333589375019,-0.028252381831408,0.068403244018555]],[[0.0205297190696,-0.03025277890265,0.015979690477252],[-0.027966737747192,-0.0023825850803405,0.083277709782124],[-0.014599780552089,-0.049388226121664,0.030479770153761]],[[0.14086237549782,-0.031252346932888,-0.10170360654593],[0.021879030391574,-0.031061189249158,0.012962938286364],[-0.065282434225082,-0.14599066972733,-0.0076987366192043]],[[-0.031630232930183,0.022802418097854,-0.041263937950134],[-0.084402918815613,0.030587153509259,-0.037262331694365],[-0.098508313298225,0.075372837483883,-0.030419865623116]],[[0.061608742922544,0.040017161518335,-0.015582318417728],[-0.001044028555043,-0.076434381306171,-0.033613607287407],[-0.088388733565807,-0.028154810890555,0.091650046408176]],[[0.10285774618387,0.081977359950542,-0.095632821321487],[-0.060765322297812,-0.055298123508692,-0.11477276682854],[-0.068675152957439,-0.089694477617741,-0.071103945374489]],[[-0.017436195164919,0.078005321323872,-0.03887577727437],[-0.017894353717566,-0.035440441220999,-0.016282793134451],[-0.033563498407602,-0.01466156821698,-0.049903362989426]],[[-0.027673311531544,0.011642208322883,-0.009912614710629],[-0.0272815246135,-0.1264876127243,-0.069679379463196],[-0.032523524016142,-0.0029117304366082,0.079325906932354]],[[-0.024165822193027,-0.082299545407295,0.0078315697610378],[-0.011756795458496,-0.061816498637199,-0.078625895082951],[-0.086861088871956,-0.095044650137424,0.0086075812578201]],[[0.00086922291666269,-0.036232899874449,0.09062784910202],[0.0035282366443425,-0.037884626537561,-0.058146886527538],[-0.012077065184712,0.12866459786892,0.15973275899887]],[[-0.038752984255552,0.057649921625853,-0.034956235438585],[0.016786748543382,-0.050568412989378,-0.0065413694828749],[0.0062507945112884,-0.050370696932077,0.1019180342555]],[[-0.083601236343384,0.032189138233662,0.0268484223634],[-0.059826817363501,0.019946439191699,-0.077194556593895],[0.074831195175648,0.050176121294498,-0.0098050246015191]],[[-0.022365817800164,-0.046000309288502,-0.041254922747612],[-0.011545621789992,-0.039402019232512,-0.030225848779082],[-0.08232606947422,-0.028097791597247,0.081672437489033]],[[0.11248564720154,0.029233874753118,0.075025103986263],[-0.053571976721287,0.030032189562917,0.059348687529564],[-0.11909485608339,-0.036593321710825,-0.02334613353014]],[[-0.028173707425594,0.05777920410037,-0.042904928326607],[0.1591621786356,-0.090439699590206,-0.060223858803511],[0.024380512535572,0.11318464577198,0.22395122051239]],[[-0.061184708029032,0.090275414288044,0.069205343723297],[-0.088421449065208,-0.050950180739164,0.055174458771944],[-0.014734086580575,-0.004932246170938,-0.055729333311319]],[[-0.0024264187086374,0.013227702118456,0.0088770911097527],[-0.0093207266181707,-0.063146643340588,-0.16790466010571],[-0.079143427312374,-0.026975309476256,-0.064097307622433]],[[0.033951807767153,-0.064982324838638,0.014068368822336],[-0.016364064067602,0.03985034301877,0.012555063702166],[0.070284679532051,0.015097158960998,-0.0043554231524467]],[[-0.014455041848123,0.018774712458253,0.022105250507593],[0.048972103744745,-0.0097759272903204,-0.0060314005240798],[0.013210366480052,-0.059688881039619,-0.059105046093464]],[[-0.06080199405551,-0.018858255818486,0.0065362700261176],[-0.028497623279691,0.048688758164644,-0.039932560175657],[-0.011188749223948,0.09123120456934,-0.018791612237692]],[[-0.085661850869656,-0.12093911319971,0.03462990000844],[0.042556289583445,-0.092041335999966,-0.055558238178492],[-0.02917992323637,0.022030035033822,-0.03550585731864]],[[-0.17971657216549,-0.12620432674885,-0.065123952925205],[-0.036006171256304,0.0018390895565972,0.027519350871444],[-0.035606492310762,-0.071857176721096,-0.014445275068283]],[[-0.099640123546124,-0.039162989705801,0.093029037117958],[-0.044382534921169,-0.19686545431614,-0.020374892279506],[-0.026837093755603,0.13313882052898,-0.019345698878169]],[[-0.026136439293623,-0.079938948154449,0.051553804427385],[-0.058678898960352,0.039118383079767,-0.11781571060419],[0.055366281419992,0.038771845400333,-0.010564580559731]],[[0.02890545129776,-0.014711589552462,0.024516927078366],[0.028187675401568,-0.012181197293103,-0.036740686744452],[0.0023880111984909,0.056415103375912,-0.12352524697781]],[[-0.062885090708733,0.024041395634413,0.02926947362721],[0.092198736965656,-0.0033276227768511,0.07940361648798],[0.086472697556019,-0.026498319581151,0.0009075942216441]],[[-0.027189265936613,0.023911442607641,-0.0066265095956624],[-0.016151584684849,-0.069058790802956,-0.043359749019146],[0.0067045572213829,0.00870062969625,-0.080521143972874]],[[0.094038136303425,0.05140919983387,0.0088590476661921],[-0.02259087562561,0.014526470564306,-0.037186592817307],[0.037694808095694,-0.0083316685631871,-0.057370632886887]],[[0.1185365691781,-0.028650464490056,-0.12990880012512],[-0.091336794197559,0.10626482218504,-0.039524059742689],[-0.081065364181995,0.011683174408972,-0.02222952619195]],[[-0.026188176125288,-0.019991936162114,0.01659144833684],[0.10385521501303,-0.08494108915329,-0.0055201714858413],[-0.026560777798295,0.0069648339413106,-0.014426762238145]],[[0.046127080917358,-0.11692550033331,-0.110725492239],[0.17681302130222,0.021348474547267,-0.0063811521977186],[-0.12609267234802,0.025740129873157,0.065761350095272]],[[-0.13282339274883,-0.0050005381926894,0.019528528675437],[0.018881168216467,0.034916453063488,0.077745094895363],[-0.053426656872034,-0.086787521839142,-0.11289502680302]],[[-0.003800202626735,-0.019699454307556,-0.071690648794174],[0.0085462210699916,-0.035271797329187,-0.030964452773333],[0.0061638103798032,0.10421344637871,-0.065675891935825]],[[0.00080292741768062,0.03805947303772,0.084065079689026],[0.066782616078854,0.010478646494448,0.022406065836549],[0.05897868052125,0.028696354478598,0.027224006131291]],[[0.046182371675968,-0.0022314256057143,0.0021784156560898],[-0.0031109359115362,0.046315249055624,-0.057083442807198],[-0.038744259625673,-0.041972976177931,0.054933469742537]],[[0.13659225404263,-0.036353230476379,0.019101401790977],[-0.03603595495224,0.01899821870029,0.035162817686796],[-0.073388323187828,-0.07767553627491,-0.089049689471722]],[[-0.11270604282618,-0.10984935611486,-0.028767226263881],[-0.04030404612422,0.035554170608521,0.085097439587116],[0.056273616850376,0.036305595189333,0.046295795589685]],[[-0.09289376437664,0.10329278558493,0.07874708622694],[0.026367427781224,0.037465501576662,-0.035366579890251],[0.05933041870594,0.066645354032516,0.029593225568533]],[[-0.042630914598703,0.071431584656239,0.037234660238028],[0.081421300768852,0.037444364279509,-0.089527189731598],[-0.030261697247624,-0.069266945123672,0.070560783147812]],[[0.14355009794235,-0.14283414185047,-0.11206280440092],[0.081011973321438,0.082311108708382,0.09854094684124],[-0.086222812533379,-0.060938499867916,-0.044082038104534]],[[-0.036934394389391,-0.046242989599705,-0.089653335511684],[0.022202137857676,0.15340356528759,-0.042323533445597],[0.13410034775734,0.069679342210293,0.0093329381197691]],[[-0.045019753277302,0.026269000023603,0.066721871495247],[-0.029858414083719,-0.016442865133286,-0.074310392141342],[0.11951775103807,-0.0032965121790767,-0.049887374043465]],[[-0.087499678134918,0.036791834980249,0.13073436915874],[-0.069698758423328,0.0074583129025996,-0.037618327885866],[0.13526731729507,-0.019666891545057,-0.038571197539568]],[[0.015117052011192,0.094267033040524,0.020852111279964],[-0.018303778022528,-0.089078687131405,-0.021521998569369],[-0.014686700887978,-0.022796057164669,0.041332740336657]],[[0.069643601775169,0.098803333938122,0.025544140487909],[0.042595621198416,-0.0061251646839082,-0.035057943314314],[-0.06038286909461,-0.20199179649353,-0.24412615597248]],[[0.0078473314642906,-0.019377503544092,0.0091769434511662],[-0.002071711467579,0.01391601189971,0.029962170869112],[0.036301895976067,0.050715263932943,-0.023160574957728]],[[0.018814163282514,-0.065377861261368,-0.02835570089519],[0.081096917390823,0.012866634875536,-0.026616469025612],[-0.042176101356745,-0.014325398020446,-0.039409037679434]],[[-0.0038027588743716,0.071499556303024,0.062472276389599],[-0.0025062980130315,0.061221271753311,0.073237270116806],[-0.030558750033379,0.039695717394352,-0.029120821505785]],[[-0.029925873503089,-0.072151146829128,0.022232294082642],[0.026570474728942,0.096720032393932,0.01257885992527],[0.11038118600845,0.053140841424465,-0.02052647806704]],[[0.0056417705491185,0.018738629296422,-0.045306637883186],[0.0099006462842226,-0.08921342343092,-0.041888773441315],[0.015447876416147,-0.13715240359306,-0.046959616243839]],[[0.011220579966903,0.101517342031,-0.028661049902439],[0.10901054739952,-0.024375880137086,-0.066988572478294],[-0.0090617192909122,0.036168746650219,-0.030557176098228]],[[0.046841353178024,0.016318272799253,-0.087938360869884],[0.057397060096264,0.036923993378878,0.011723396368325],[-0.037462741136551,-0.016280984506011,0.01189187541604]],[[-0.15620847046375,-0.1024636849761,0.0063569997437298],[-0.068742573261261,0.0010416652075946,-0.01439318433404],[0.080928541719913,0.062494862824678,-0.043496508151293]],[[-0.021103171631694,-0.10011100769043,-0.022014517337084],[-0.069968491792679,0.074993677437305,0.010939427651465],[-0.044586591422558,-0.074271656572819,0.054458245635033]],[[0.0023691523820162,-0.030648281797767,0.026266772300005],[0.086448192596436,-0.0039180885069072,-0.12331742793322],[-0.01196101680398,-0.003207441419363,-0.1198660954833]],[[-0.068421326577663,0.077839739620686,-0.028422577306628],[0.015075873583555,0.13851682841778,0.21392315626144],[-0.03284153714776,-0.050376806408167,-0.073815621435642]],[[-0.0051100049167871,-0.021034155040979,0.10706304013729],[-0.070800945162773,0.014237500727177,0.032466232776642],[0.084074780344963,0.0039785709232092,-0.052115302532911]],[[-0.046636488288641,0.06245356798172,0.10688476264477],[-0.019667573273182,-0.021242197602987,-0.083173125982285],[-0.072149194777012,0.095812059938908,-0.047793816775084]],[[0.10270299017429,-0.0041355136781931,0.03749892860651],[0.024357903748751,-0.028016462922096,0.0086624613031745],[0.070077076554298,-0.012987896800041,0.022504422813654]],[[0.016588127240539,0.096401356160641,0.02029337361455],[0.011625041253865,-0.04979121312499,0.10427610576153],[-0.070829465985298,-0.10338363796473,0.022009249776602]],[[0.10601285845041,-0.057221319526434,-0.052807364612818],[0.0064791953191161,-0.13057447969913,-0.026432979851961],[0.065682262182236,0.051730766892433,-0.069338358938694]],[[-0.11561547219753,-0.0027517629787326,-0.021086532622576],[-0.0084780491888523,0.013899982906878,0.018480556085706],[0.0047009601257741,0.032296169549227,0.035042729228735]],[[0.043539572507143,0.031813833862543,0.022864174097776],[0.052611075341702,-0.0048726685345173,-0.025172540917993],[-0.09286480396986,-0.078159213066101,-0.064643792808056]],[[0.010140058584511,-0.043884955346584,0.092121236026287],[0.039236895740032,0.12555475533009,0.017563041299582],[-0.011321960017085,-0.061345960944891,-0.0058465301990509]],[[-0.12009446322918,-0.15350848436356,0.050728343427181],[0.031375002115965,-0.031111115589738,0.022013429552317],[0.0008348966948688,0.059205062687397,-0.15035633742809]],[[-0.011571914888918,0.10786739736795,0.15236064791679],[0.088314160704613,-0.04426246508956,0.026509866118431],[0.064122423529625,-0.0038462779484689,0.050644401460886]],[[0.0071654273197055,-0.076619654893875,-0.11998958140612],[-0.0066880248486996,0.004593470133841,-0.045966677367687],[-0.019063588231802,0.027226334437728,-0.10993880778551]],[[0.047059930860996,-0.11405174434185,0.035712864249945],[0.068639703094959,0.009575973264873,0.029567446559668],[0.039481181651354,0.069849260151386,0.033309634774923]],[[-0.14188013970852,-0.042806673794985,-0.07237184792757],[-0.0012930871453136,-0.068907603621483,-0.082541853189468],[0.083364523947239,-0.046797163784504,-0.15888205170631]],[[-0.028869729489088,0.026415696367621,-0.033120919018984],[0.0024513860698789,0.013336901552975,-0.013491329737008],[0.20780357718468,-0.05517740920186,0.036391481757164]],[[0.073058485984802,0.047893837094307,0.087335661053658],[-0.012328234501183,0.033983435481787,0.015836814418435],[0.14162343740463,0.023524176329374,-0.07110133767128]],[[-0.02738931402564,-0.040374185889959,-0.034363985061646],[-0.04945195838809,0.0002456316142343,-0.067287586629391],[0.039165701717138,-0.0022175789345056,-0.055322773754597]],[[0.093027524650097,-0.023739900439978,-0.14226622879505],[0.049304611980915,0.099868088960648,0.060137689113617],[0.066290289163589,-0.019227309152484,-0.077808916568756]],[[0.077004581689835,0.0045486907474697,-0.054760884493589],[-0.11624359339476,0.030308995395899,0.0025715623050928],[0.080206543207169,-0.11343270540237,-0.10000308603048]],[[0.032337322831154,-0.1334915459156,-0.082342766225338],[0.094208069145679,0.055606566369534,0.020919654518366],[0.029358517378569,-0.027893448248506,0.063780657947063]],[[0.033617228269577,0.10429102927446,-0.021229326725006],[-0.082040585577488,0.014303441159427,-0.019414708018303],[-0.05068625882268,0.0094611728563905,0.075741238892078]],[[-0.0025086607784033,-0.077806249260902,-0.053015112876892],[0.036317024379969,0.04174766689539,-0.027035931125283],[-0.05745117738843,-0.014716612175107,-0.024210846051574]],[[0.045709732919931,-0.079879686236382,-0.092763416469097],[-0.0094821015372872,0.13509859144688,0.02093000896275],[0.039713263511658,0.027877809479833,-0.020004210993648]],[[0.021137434989214,0.044624950736761,-0.0096750613301992],[0.053481690585613,-0.029085436835885,-0.041587095707655],[0.032738141715527,-0.042984940111637,-0.046808958053589]],[[-0.095311433076859,0.042139679193497,0.022880382835865],[-0.043582748621702,-0.013690184801817,0.012039213441312],[-0.085318937897682,0.0099501283839345,0.083950072526932]],[[0.073866836726665,0.028979724273086,-0.064146861433983],[0.056344542652369,0.09960924834013,-0.060570754110813],[-0.060164358466864,0.092584393918514,0.030469890683889]],[[-0.073075674474239,-0.033677741885185,0.014553095214069],[-0.14186306297779,0.0019676391966641,-0.022691773250699],[-0.080733612179756,-0.070129081606865,-0.12481836229563]],[[-0.026106860488653,0.018689716234803,0.081453926861286],[0.025514353066683,-0.12101345509291,-0.050996717065573],[-0.029642196372151,0.013915739953518,-0.012996912002563]],[[-0.076680578291416,-0.040751196444035,0.01508626434952],[0.061274215579033,0.021905042231083,0.13593758642673],[0.010364255867898,-0.068948209285736,-0.020329643040895]],[[0.046165846288204,0.024209976196289,-0.13363140821457],[0.0044324370101094,0.12721586227417,0.1188050955534],[0.0098607856780291,-0.0045173610560596,-0.01253451872617]],[[0.037236258387566,0.021821267902851,-0.041756447404623],[0.033897269517183,0.015479127876461,-0.025036621838808],[0.059420581907034,0.056524395942688,-0.0011506327427924]],[[0.061520293354988,0.059256251901388,0.10020598769188],[0.089807771146297,-0.013895995914936,-0.058420944958925],[0.045698326081038,-0.034167498350143,0.031678065657616]],[[0.045906934887171,-0.013756304048002,0.019072234630585],[0.069700889289379,0.04407599568367,0.032655697315931],[0.014437451958656,0.052620239555836,0.084247946739197]],[[0.043437909334898,-0.033721867948771,-0.058290883898735],[0.026335613802075,-0.070620931684971,0.050374899059534],[0.060964956879616,0.022291509434581,-0.029126886278391]],[[0.055766813457012,0.12467238306999,-0.0088265370577574],[-0.055893983691931,-0.017204709351063,-0.001996845472604],[-0.010900785215199,-0.049028567969799,0.00035858055343851]],[[-0.11589590460062,-0.0078400606289506,0.058040022850037],[0.036798838526011,0.028090445324779,-0.028519632294774],[0.015766508877277,0.082647494971752,0.12643484771252]],[[0.082954056560993,-0.0091531286016107,0.062077809125185],[-0.047153808176517,-0.074318818747997,-0.0016574355540797],[0.080514907836914,0.1414824873209,0.25083872675896]],[[-0.076109476387501,0.0042352150194347,-0.019371248781681],[-0.070287398993969,-0.10740605741739,0.15751954913139],[-0.041871130466461,0.023456150665879,-0.01708647981286]],[[0.071271769702435,0.094557426869869,0.095566660165787],[-0.074830256402493,0.0017899200320244,0.039267506450415],[0.12468163669109,0.15064303576946,0.22091279923916]],[[0.045279063284397,0.069196097552776,0.065507397055626],[0.069345809519291,0.057764902710915,-0.0096758808940649],[0.015285941772163,-0.0067324051633477,0.0072432458400726]],[[-0.027059901505709,0.038136508315802,0.072737395763397],[0.079195164144039,0.017859678715467,0.0094554452225566],[0.089108854532242,0.051553092896938,0.012234893627465]],[[0.047505751252174,-0.030210748314857,-0.072315901517868],[0.043531484901905,-0.066009789705276,-0.027977170422673],[-0.018055764958262,-0.051177427172661,0.082135654985905]],[[0.015510071069002,0.0097346436232328,-0.047457192093134],[-0.063077807426453,-0.02370261400938,-0.0074241985566914],[-0.051453519612551,0.055455699563026,0.0066532664932311]],[[-0.047056093811989,0.092833042144775,0.032637927681208],[0.080934584140778,0.083918072283268,0.035969577729702],[0.066760778427124,-0.036679949611425,0.028450300917029]],[[0.025441780686378,0.0026489922311157,-0.010990411043167],[-0.059643547981977,-0.11292168498039,-0.12857684493065],[-0.02192422375083,-0.12716390192509,0.10298542678356]],[[-0.06534743309021,0.045298270881176,0.1640260219574],[-0.1165796071291,-0.016946163028479,-0.021708361804485],[-0.11392816901207,-0.026972493156791,0.047292191535234]],[[0.0023673032410443,-0.11748402565718,-0.034812293946743],[0.10183439403772,0.015934998169541,0.035543922334909],[0.039043437689543,0.04791971296072,-0.06027739867568]],[[-0.11496036499739,-0.10584361851215,-0.095179073512554],[0.079119510948658,-0.0012983474880457,0.0097134495154023],[0.044982317835093,0.16644023358822,0.063631176948547]],[[0.13018652796745,-0.019266746938229,-0.10026577115059],[0.018628066405654,-0.022526197135448,-0.078059308230877],[0.085761018097401,0.0076392129994929,0.059807524085045]],[[-0.033864419907331,-0.061595421284437,-0.11072707176208],[0.040252320468426,-0.026019461452961,-0.0046322508715093],[0.043503452092409,0.010391732677817,-0.053191334009171]],[[-0.046688761562109,-0.070107243955135,-0.031121967360377],[-0.055403985083103,-0.025331608951092,-0.046720903366804],[-0.014581257477403,-0.042164452373981,0.019359258934855]],[[0.011390700936317,0.030100133270025,0.088182143867016],[-0.010132469236851,0.080237969756126,-0.0098689189180732],[-0.038768135011196,0.018337411805987,-0.0040363185107708]],[[0.01960588991642,-0.0087692262604833,-0.028102684766054],[0.10248177498579,0.12461429834366,0.026726791635156],[0.0089517785236239,-0.12380569428205,-0.056775610893965]],[[0.0050183311104774,-0.009174101985991,0.084369651973248],[-0.048825331032276,0.0046940133906901,0.056860812008381],[0.017845407128334,-0.041064620018005,-0.012399258092046]],[[-0.022915385663509,-0.11065909266472,0.10987248271704],[-0.012783212587237,-0.00079773523611948,0.083749920129776],[-0.003874747781083,-0.10055933892727,-0.04617452993989]],[[-0.090047806501389,-0.071664690971375,-0.018049636855721],[0.012178582139313,0.1536091119051,-0.12819312512875],[0.12499614804983,-0.0084016602486372,0.04758620634675]],[[0.08596259355545,0.0019542900845408,-0.095522992312908],[-0.0067465635947883,-0.011994582600892,-0.040836114436388],[0.0019638845697045,0.016265420243144,0.013207805342972]],[[-0.008329389616847,-0.067802488803864,-0.1031796336174],[-0.01321008708328,-0.1250081807375,0.043935034424067],[-0.041471488773823,0.12406945228577,0.017899807542562]],[[0.12165941298008,0.10676146298647,0.090343236923218],[0.073376215994358,0.052902698516846,0.019909508526325],[0.071213632822037,-0.046479091048241,0.032644309103489]],[[-0.084883950650692,-0.020061185583472,-0.023798927664757],[0.024909134954214,-0.071805357933044,-0.15246678888798],[-0.070472665131092,0.030000988394022,-0.2084464430809]],[[0.058228775858879,0.021441714838147,0.042822193354368],[-0.032821342349052,-0.0060846703127027,-0.0080872708931565],[0.025014398619533,0.1893947571516,0.064027301967144]],[[-0.051627025008202,0.022472951561213,-0.050695259124041],[0.01337266433984,-0.019781259819865,0.077912554144859],[0.091091170907021,0.032121937721968,-0.14739429950714]],[[-0.19159443676472,-0.1113688647747,-0.12151872366667],[0.076391480863094,0.10460520535707,-0.10768359154463],[0.04029892757535,-0.14693143963814,-0.021110059693456]],[[-0.050517499446869,-0.05303118750453,-0.0029572169296443],[0.010738091543317,0.0071070725098252,-0.035814255475998],[-0.057410936802626,-0.0054775876924396,-0.018324119970202]],[[0.048414506018162,-0.012084622867405,0.072926171123981],[-0.018039530143142,0.089020520448685,0.017212450504303],[0.032539620995522,0.0050623151473701,-0.10663741827011]]],[[[-0.013230589218438,-0.045713309198618,-0.044803474098444],[-0.011859086342156,0.10691899806261,0.044790808111429],[-0.024264015257359,0.003766133915633,-0.034933529794216]],[[0.072254590690136,0.042461384087801,-0.025079376995564],[-0.052976064383984,-0.079113058745861,-0.056482758373022],[-0.06703544408083,0.016288036480546,0.03691016882658]],[[-0.00140791607555,0.018459824845195,-0.021324148401618],[0.0062186312861741,-0.01558347325772,0.065162301063538],[-0.019838742911816,-0.0088610630482435,0.04430764913559]],[[0.027695167809725,0.0024873921647668,-0.074121452867985],[0.026004230603576,0.013222917914391,-0.035672727972269],[0.03959284350276,-0.039284076541662,0.011795673519373]],[[0.011385079473257,0.0053671044297516,0.044704202562571],[0.055879849940538,-0.074172407388687,0.0088649271056056],[0.041713457554579,-0.037579528987408,-0.0079881595447659]],[[0.0095891552045941,-0.015925841405988,-0.033479992300272],[0.034057319164276,-0.037313029170036,-0.026799492537975],[0.091590754687786,0.015715653076768,0.010462035425007]],[[-0.0065434798598289,0.01040871348232,-0.010080264881253],[0.062638252973557,-0.071493417024612,0.05106782540679],[-0.011651078239083,0.017911391332746,-0.013600526377559]],[[-0.056286223232746,0.0099420789629221,0.06483993679285],[-0.068537123501301,-0.063645049929619,0.028592137619853],[-0.013501165434718,-0.026521796360612,-0.026360997930169]],[[0.013200813904405,0.0298170465976,0.0048035057261586],[0.048613213002682,-0.043189432471991,-0.095457650721073],[0.024530239403248,0.033369112759829,-0.060545425862074]],[[0.043359875679016,0.019396828487515,0.061350014060736],[0.024157457053661,-0.011353526264429,-0.1032857298851],[0.089357018470764,-0.042901441454887,-0.074375115334988]],[[0.016528597101569,-0.016389392316341,-0.0094866016879678],[0.0049794907681644,0.047474060207605,0.042637839913368],[0.018705306574702,0.028660053387284,0.012371427379549]],[[0.13043415546417,0.069609746336937,0.002060430822894],[-0.043801989406347,0.0053462865762413,-0.029984660446644],[0.060247559100389,-0.02064978890121,-0.013673093169928]],[[-0.017006505280733,-0.050968274474144,-0.052421689033508],[-0.022676628082991,-0.056031160056591,0.010690415278077],[-0.0084962453693151,-0.023937026038766,0.052452970296144]],[[0.038843162357807,0.058538433164358,-0.019403634592891],[0.010859567672014,0.037080284208059,-0.031922657042742],[0.019354848191142,-0.02249744720757,0.0058149453252554]],[[-0.050298128277063,0.024700740352273,0.01979841850698],[0.0029835305176675,0.038452453911304,-0.067745245993137],[0.072349771857262,0.00083657162031159,0.0028617156203836]],[[-0.0049963938072324,0.012338427826762,0.061932422220707],[0.065139599144459,0.013771949335933,0.0090683866292238],[-0.016799287870526,-0.02338869869709,-0.020599933341146]],[[0.028780015185475,-0.053356856107712,-0.001013069995679],[-0.037600807845592,0.0092475516721606,0.0089680543169379],[0.038903329521418,0.027948819100857,0.025033924728632]],[[-0.027279673144221,0.022657012566924,0.058194238692522],[0.042132496833801,-0.022919420152903,-0.040184065699577],[-0.023860869929194,-0.011702503077686,-0.015048886649311]],[[0.036901298910379,-0.0083076981827617,-0.057059865444899],[0.036776222288609,0.045855935662985,-0.058851566165686],[-0.082402385771275,-0.020603474229574,0.010052889585495]],[[0.0024144134949893,0.0015464799944311,0.0090585248544812],[-0.029905114322901,0.048869356513023,-0.036267790943384],[0.062377754598856,-0.0096356850117445,-0.06213490664959]],[[-0.021848840638995,0.051792372018099,0.0054544718004763],[-0.020683024078608,-0.01071825157851,0.069682367146015],[0.02093212492764,-0.019907988607883,0.010297471657395]],[[-0.0079727070406079,-0.018576474860311,-0.027397045865655],[0.02193302847445,0.041051346808672,-0.0043757380917668],[0.052098888903856,-0.049034159630537,0.029733838513494]],[[0.00025328213814646,-0.052469119429588,-0.023662094026804],[-0.058428984135389,0.010062034241855,-0.025215327739716],[0.045879181474447,-0.026749646291137,-0.044734686613083]],[[0.01964059099555,-0.0036799069494009,0.014942867681384],[0.07550136744976,0.036178540438414,-0.054646134376526],[0.039983741939068,0.042236752808094,0.091888234019279]],[[-0.0034617327619344,-0.11533480882645,-0.029097950085998],[0.074195310473442,0.015984812751412,-0.048654392361641],[0.049000278115273,-0.0053887479007244,-0.016436133533716]],[[-0.049685578793287,0.065687999129295,0.011086591519415],[-0.023153342306614,0.02853231690824,-0.03298020362854],[-0.037107687443495,0.069782003760338,0.017977437004447]],[[0.0085635958239436,-0.036911137402058,0.032394833862782],[-0.01850326359272,-0.039374027401209,-0.049798626452684],[-0.0070384116843343,-0.039466295391321,0.018051780760288]],[[0.030378147959709,-0.026537740603089,0.027044197544456],[0.067925989627838,-0.043662071228027,0.064271621406078],[0.045682400465012,0.022712301462889,0.032433714717627]],[[0.028397107496858,-0.0047383420169353,0.034509763121605],[0.012211137451231,0.023089030757546,-0.011486776173115],[-0.069727391004562,0.024551579728723,-0.028893016278744]],[[0.044766623526812,0.044752355664968,-0.053758684545755],[-0.0035531399771571,0.063972942531109,0.044561050832272],[-0.020736088976264,0.0065548890270293,0.024492857977748]],[[-0.056109916418791,-0.011389574036002,0.015768447890878],[-0.0011765606468543,-0.013270330615342,0.036400429904461],[-0.0099717946723104,-0.0025919589679688,0.050037000328302]],[[-0.0048470222391188,-0.078331753611565,0.04552948102355],[0.040736507624388,-0.023979345336556,-0.0026671348605305],[0.012872373685241,-0.028599016368389,-0.020603721961379]],[[-0.10866896063089,-0.012711510062218,0.063782297074795],[-0.025994351133704,-0.0020647605415434,-0.0013912380672991],[0.069674119353294,0.076506480574608,0.027942486107349]],[[0.030978336930275,0.009876380674541,-0.039341364055872],[0.016512647271156,0.019582914188504,0.011908086948097],[-0.01683546602726,-0.047633334994316,0.042582575231791]],[[0.022858692333102,0.056362770497799,-0.045861463993788],[-0.022897446528077,-0.046022888273001,0.016095830127597],[-0.020179230719805,-0.014507615938783,0.016172906383872]],[[0.081792667508125,0.060295857489109,0.02450885809958],[0.033553142100573,0.017727956175804,-0.027107765898108],[-0.021317023783922,-0.016179002821445,-0.032984379678965]],[[0.043569024652243,-0.046958915889263,-0.042425952851772],[0.0307512357831,0.032591160386801,0.053354647010565],[0.046496659517288,-0.035374157130718,-0.070396676659584]],[[0.0034928938839585,-0.078258119523525,-0.042001388967037],[-0.0027476511895657,0.011918666772544,0.015200250782073],[0.02179210446775,0.0080197155475616,0.0013991417363286]],[[0.064025834202766,0.03744237869978,-0.04206520691514],[0.012161137536168,-0.042628407478333,-0.058110222220421],[-0.042410284280777,0.0027676105964929,0.043680906295776]],[[0.010861318558455,-0.0020237930584699,-0.0071603637188673],[-0.0038355011492968,-0.087142996490002,-0.054257988929749],[0.010560855269432,0.086877331137657,0.056576620787382]],[[0.0030609178356826,0.023109819740057,0.01433820463717],[0.025281470268965,0.01310230139643,0.0021442212164402],[0.015786219388247,-0.03185136243701,-0.039942670613527]],[[0.017484897747636,-0.0052703078836203,0.059137012809515],[0.084661491215229,0.0094295656308532,0.057095758616924],[-0.068368837237358,-0.010121203958988,0.026056874543428]],[[-0.03678072988987,-0.051538918167353,0.039754062891006],[-0.027580240741372,0.0057881409302354,0.011154561303556],[0.014772676862776,0.084853209555149,0.042912501841784]],[[0.0056199762038887,0.026339519768953,0.0045430287718773],[0.0023247238714248,-0.10584261268377,-0.048407766968012],[-0.025936774909496,0.064300246536732,-0.069713972508907]],[[0.070735417306423,-0.035431608557701,-0.0051151714287698],[-0.0039624371565878,-0.032536890357733,-0.020459473133087],[0.066944628953934,-0.028461622074246,0.0491110868752]],[[0.059106092900038,0.055824622511864,-0.07563366740942],[0.019135199487209,-0.016235873103142,-0.053364027291536],[0.044781375676394,0.00018466560868546,0.01193046476692]],[[0.042175732553005,0.021318102255464,-0.031248811632395],[-0.068286933004856,-0.044857542961836,0.034540507942438],[0.068823330104351,-0.0085603427141905,0.035716820508242]],[[-0.0063335979357362,-0.056933503597975,-0.042477760463953],[-0.0073407650925219,-0.052168056368828,-0.021445654332638],[-0.014700781553984,0.080778725445271,0.031147954985499]],[[-0.024230867624283,0.096228636801243,-0.027768548578024],[-0.019700294360518,-0.026872437447309,-0.0020254696719348],[-0.068835720419884,-0.030002407729626,-0.023034565150738]],[[0.0065376749262214,-0.012492557056248,0.05164648219943],[0.015376162715256,-0.0083722658455372,0.013324773870409],[-0.039955206215382,0.006242688279599,-0.04502185434103]],[[0.086587101221085,-0.087466798722744,-0.039178337901831],[-0.024338012561202,-0.035275466740131,-0.018732938915491],[0.096788056194782,-0.057332389056683,0.046992138028145]],[[0.010765042155981,0.03123950958252,-0.030710531398654],[-0.053094912320375,0.046007171273232,0.076646916568279],[0.012349063530564,-0.0065533774904907,0.032070267945528]],[[0.027552481740713,-0.10701711475849,-0.042090255767107],[-0.079195506870747,-0.081442438066006,-0.0017641945742071],[-0.051218423992395,-0.04869170486927,0.030778296291828]],[[0.0044480310752988,0.090124078094959,0.057103093713522],[-0.010796912014484,0.00049056217540056,0.15430560708046],[-0.020006164908409,-0.0305055975914,0.032925367355347]],[[-0.055232219398022,-0.05298650637269,-0.010519050993025],[0.019584152847528,0.015410742722452,0.062634713947773],[-0.021726164966822,0.0050380891188979,-0.07131065428257]],[[0.033681876957417,0.024937823414803,0.058851968497038],[-0.0035358888562769,-0.024383872747421,0.040304701775312],[-0.10388714820147,-0.039479836821556,-0.061639957129955]],[[0.049536682665348,-0.079659089446068,-0.0061374353244901],[-0.050350695848465,0.052964836359024,-0.010769275948405],[0.074647597968578,0.021678168326616,-0.035952042788267]],[[-0.060254629701376,0.09330765157938,0.082734607160091],[0.020261397585273,0.057039178907871,0.071769237518311],[-0.055519416928291,0.0098717221990228,-0.027065703645349]],[[0.065702766180038,0.067868143320084,0.042072810232639],[-0.018770571798086,-0.069503977894783,-0.05087860673666],[0.052602905780077,-0.0080208955332637,-0.00043104391079396]],[[0.039273101836443,0.039680887013674,-0.05652067065239],[0.053493112325668,-0.018460227176547,0.049037471413612],[0.035035394132137,-0.054466966539621,-0.058955293148756]],[[0.050669848918915,0.059863574802876,0.063840568065643],[-0.075750768184662,0.038090411573648,0.030538285151124],[0.08870542794466,-0.06104264035821,-0.059681005775928]],[[-0.0082778548821807,0.068915069103241,0.084432430565357],[-0.015403135679662,0.011563062667847,-0.044017974287271],[0.010640523396432,0.035020969808102,-0.12074208259583]],[[-0.033765781670809,-0.073803447186947,0.033971980214119],[0.017418067902327,-0.044289890676737,0.047124050557613],[-0.0068394681438804,0.065874628722668,0.036842245608568]],[[0.0033666535746306,0.006909841671586,-0.006491469219327],[-0.035353668034077,0.0342753008008,-0.019962972030044],[-0.08022103458643,0.033450476825237,0.056174870580435]],[[-0.00080290867481381,0.094588421285152,0.016928944736719],[0.03727450594306,-0.0019915569573641,0.0068442835472524],[0.00080369965871796,-0.026005445048213,0.0029438198544085]],[[0.022997884079814,-0.0081061236560345,0.030425937846303],[-0.058383516967297,0.010304652154446,-0.027517786249518],[0.051761522889137,-0.057077724486589,0.048806663602591]],[[0.018979633226991,0.061240021139383,-0.05786370113492],[0.0079723559319973,-0.10742636024952,0.045323017984629],[0.071713969111443,-0.0058182240463793,0.026106620207429]],[[0.036559693515301,-0.02184746414423,0.05467401444912],[0.055796708911657,0.045010548084974,-0.052217107266188],[0.023047629743814,0.012106248177588,-0.022166505455971]],[[-0.012580710463226,-0.00081980146933347,-0.0020808456465602],[0.022221183404326,0.041031528264284,0.023890413343906],[-0.031404834240675,-0.0021272986195982,-0.074761651456356]],[[-0.021714404225349,0.024861743673682,0.0061768619343638],[0.078947141766548,0.050416581332684,0.039643820375204],[0.012906258925796,-0.0043602795340121,0.045481480658054]],[[-0.0085776606574655,-0.016320547088981,0.00073245266685262],[0.028661666437984,0.03176149725914,-0.056620333343744],[-0.016743345186114,0.11742559820414,-0.069514103233814]],[[-0.04477072134614,0.035059429705143,-0.034306913614273],[-0.061197951436043,0.042852379381657,0.0036546268966049],[0.056267391890287,0.013383004814386,0.042927235364914]],[[0.051057811826468,-0.0084379436448216,0.021336928009987],[0.021905353292823,-0.023711707442999,0.036439638584852],[-0.08262387663126,0.031977329403162,0.029375901445746]],[[-0.004734814632684,0.001407221192494,0.0084315687417984],[-0.036641620099545,0.050063285976648,-0.011259270831943],[0.027677752077579,0.016805317252874,-0.056669291108847]],[[-0.010051442310214,-0.052607960999012,-0.041690438985825],[0.065459556877613,0.030004316940904,0.041041761636734],[0.058412037789822,0.056271594017744,-0.045313511043787]],[[-0.0082127507776022,0.033905204385519,-0.0031428772490472],[0.0036279065534472,0.032446309924126,0.0051658418960869],[-0.047893472015858,0.012227240949869,0.0027193734422326]],[[-0.014532052911818,-0.0072816866450012,0.018852466717362],[0.017907202243805,-0.021798342466354,-0.01871389336884],[-0.0093967197462916,-0.0076750875450671,0.064759723842144]],[[0.0069343359209597,-0.0003163461224176,0.047380208969116],[-0.084595903754234,-0.0014077569358051,-0.056952301412821],[0.018536888062954,-0.017194705083966,-0.0037085206713527]],[[-0.029463533312082,0.062412682920694,0.07168447971344],[-0.064980179071426,0.031950455158949,0.013007891364396],[-0.023465445265174,0.051716074347496,-0.0044433958828449]],[[-0.031532514840364,0.014863289892673,0.076160706579685],[0.026018748059869,0.036938793957233,0.0014231159584597],[-0.01325932238251,0.045550737529993,0.0055472045205534]],[[0.003132690442726,0.016810672357678,0.053153481334448],[-0.067590326070786,0.020902907475829,0.038585100322962],[-0.011191487312317,-0.10313679277897,0.031155189499259]],[[0.0091696735471487,0.0024005961604416,-0.0019568358547986],[0.018675945699215,-0.11571624875069,0.0044480450451374],[0.056051172316074,0.02195462025702,-0.078254222869873]],[[-0.031757544726133,0.042056333273649,-0.028690569102764],[0.023018561303616,-0.025369958952069,-0.053508166223764],[-0.026909390464425,-0.023523829877377,0.074605874717236]],[[-0.003414788050577,0.0072998758405447,0.020186534151435],[0.023220149800181,0.027822250500321,0.076367944478989],[-0.063722416758537,-0.082551553845406,0.051868505775928]],[[-0.071577735245228,-0.01763179898262,0.083758600056171],[0.00082432059571147,0.015016074292362,-0.026497231796384],[-0.068200342357159,0.045458164066076,0.0061745289713144]],[[-0.010953916236758,0.029740585014224,0.054463610053062],[0.0097914859652519,0.020423647016287,-0.044811327010393],[-0.0043074223212898,0.076386198401451,0.011067501269281]],[[0.077177368104458,-0.027170864865184,-0.017979616299272],[-0.070637598633766,-0.050006367266178,-0.016659328714013],[0.044326573610306,-0.029559629037976,0.060936883091927]],[[0.0058620199561119,0.0035464451648295,0.029044084250927],[-0.0024567532818764,0.028790405020118,-0.016891233623028],[0.018249716609716,0.047183379530907,-0.014754471369088]],[[0.021768048405647,-0.10986345261335,-0.0056236651726067],[0.069642104208469,0.0023515848442912,0.0059012048877776],[0.045317344367504,0.046759508550167,-0.056579612195492]],[[-0.0014463511761278,0.019854929298162,-0.012955140322447],[-0.065369084477425,0.055094294250011,0.091263666749001],[-0.017732515931129,0.064341373741627,-0.054526526480913]],[[-0.00092266709543765,0.017054814845324,0.020159758627415],[0.037696685642004,0.024870909750462,-0.025581954047084],[0.018640417605639,-0.065541155636311,-0.073506735265255]],[[-0.010197681374848,-0.030395412817597,-0.0074793361127377],[0.013398101553321,-0.025533478707075,-0.047670934349298],[-0.038646150380373,0.01854757219553,0.022985095158219]],[[-0.007358297239989,-0.0074788937345147,0.057719681411982],[-0.076479740440845,0.049762241542339,-0.036003831773996],[-0.077284902334213,0.037883501499891,-0.012598394416273]],[[-0.048612479120493,-0.023226423189044,-0.026695163920522],[-0.052124623209238,0.074043899774551,-0.013334806077182],[0.019702767953277,-0.021631443873048,0.021779479458928]],[[0.016351485624909,-0.022997600957751,0.053526885807514],[0.041995447129011,0.024323537945747,-0.0039181909523904],[-0.014474788680673,0.058562017977238,-0.040172286331654]],[[0.070171363651752,0.013026714324951,-0.005291863810271],[-0.023998750373721,-0.069635115563869,-0.021030219271779],[-0.047978933900595,0.056251034140587,-0.013843500986695]],[[0.03044687025249,0.0017166758188978,-0.009184037335217],[0.043378561735153,-0.021135775372386,0.077052287757397],[0.017104556784034,0.0092386184260249,0.015440043061972]],[[-0.024312626570463,-0.0034728518221527,0.0043379385024309],[-0.044984854757786,-0.0069058015942574,0.026050368323922],[0.088785201311111,-0.025967970490456,-0.027081614360213]],[[0.0441042073071,-0.042111188173294,0.047802362591028],[0.028427923098207,-0.08640693128109,-0.019533276557922],[0.047992117702961,0.0087341712787747,-0.017859404906631]],[[-0.01723543740809,0.078634731471539,-0.037476982921362],[-0.09092128276825,-0.0046111596748233,-0.0033482883591205],[0.027344217523932,0.032095231115818,-0.042426079511642]],[[-0.022340223193169,0.040270421653986,-0.023813823238015],[0.062690265476704,0.018094521015882,-0.00256133149378],[0.022342635318637,-0.047143720090389,0.00089223810937256]],[[-0.0047154230996966,0.030650233849883,-0.038500182330608],[0.046927094459534,-0.034433741122484,0.027857651934028],[-0.010314230807126,-0.020812727510929,-0.072639338672161]],[[0.016578897833824,0.029855789616704,0.032876893877983],[0.030179915949702,0.026674207299948,-0.056893784552813],[-0.034658964723349,0.047460194677114,0.01801860332489]],[[0.071012943983078,0.025462161749601,0.037786554545164],[-0.041385442018509,-0.0078813889995217,-0.070350110530853],[0.018088957294822,-0.036219984292984,-0.002752329222858]],[[-0.059129245579243,0.022993663325906,-0.0031112118158489],[0.0089556537568569,0.061071965843439,0.016225600615144],[-0.059094097465277,0.041706304997206,0.053244270384312]],[[-0.017263039946556,0.0041454695165157,-0.021841669455171],[0.041408117860556,0.0092209419235587,0.011586570180953],[0.035125244408846,0.011937708593905,0.067935563623905]],[[0.034152906388044,0.027995623648167,-0.01691547781229],[-0.050336591899395,0.082789778709412,-0.0026133335195482],[-0.021006921306252,0.023883854970336,-0.0066719767637551]],[[0.00028405478224158,0.024056049063802,-0.00028471631230786],[0.035227939486504,0.057739190757275,-0.0027670359704643],[-0.095550306141376,-0.033092446625233,-0.029952973127365]],[[-0.024223232641816,-0.050855848938227,-0.0062993061728776],[-0.029968656599522,-0.017413515597582,0.048445917665958],[0.01975279673934,-0.043899018317461,-0.0088549060747027]],[[-0.029021225869656,0.0084480624645948,0.013411902822554],[-0.040796756744385,-0.047451201826334,0.048513658344746],[-0.021109856665134,0.027105029672384,-0.0074684014543891]],[[0.022798877209425,-0.020432310178876,0.075216248631477],[-0.010261369869113,0.077967002987862,0.045316938310862],[0.010530821979046,0.044208232313395,0.011433239094913]],[[-0.045490961521864,0.0107585741207,0.044356051832438],[0.05714076012373,-0.023895084857941,0.057221632450819],[-0.030579682439566,0.017273740842938,0.10358212143183]],[[0.035125724971294,-0.015618599019945,0.048750448971987],[0.10407442599535,0.00066237588180229,-0.058237515389919],[-0.007883932441473,-0.0026822150684893,0.026052337139845]],[[0.02155171148479,-0.050070509314537,-0.041666872799397],[-0.090754978358746,0.011225966736674,0.0058417278341949],[-0.0013294697273523,-0.011647635139525,0.037036187946796]],[[-0.067317269742489,0.02731985040009,-0.062601506710052],[-0.011143476702273,0.09081144630909,-0.029405197128654],[-0.049311269074678,0.025513205677271,0.006040901876986]],[[0.055689986795187,0.026354473084211,0.016549604013562],[-0.00040450046071783,-0.016641827300191,0.040515206754208],[-0.039469435811043,-0.022093005478382,0.017526250332594]],[[0.075741156935692,0.086916990578175,-0.027829580008984],[-0.034646719694138,-0.062878333032131,-0.030757319182158],[-0.034089736640453,-0.01013127155602,0.004256731364876]],[[-0.031395215541124,-0.022464249283075,0.00048388380673714],[0.0097928727045655,-0.006114799529314,-0.019142853096128],[-0.028601098805666,0.046473693102598,-0.030473560094833]],[[-0.025369770824909,-0.070645272731781,0.014713637530804],[0.03208314627409,0.018298549577594,0.11832156777382],[0.029483731836081,-0.05742896348238,0.0092528350651264]],[[-0.022425945848227,0.035205356776714,0.028435125946999],[0.0056502125225961,0.041934844106436,0.043298035860062],[0.025684809312224,-0.0058220173232257,-0.080054633319378]],[[0.065665222704411,-0.0036209288518876,-0.048029035329819],[0.012528464198112,0.0053866025991738,-0.04501223936677],[-0.087492667138577,-0.0082818036898971,-0.064631029963493]],[[0.022140899673104,-0.01400138437748,-0.073853939771652],[0.050560083240271,0.052454743534327,0.03505302220583],[-0.00081570295151323,0.097514867782593,0.062848389148712]],[[-0.0040435241535306,-0.0046212389133871,0.013800271786749],[0.01237247698009,0.024525569751859,0.036578230559826],[-0.0019693623762578,0.06434428691864,0.03367655351758]],[[0.012137735262513,0.0017153945518658,0.079672962427139],[0.020729266107082,-0.024780245497823,0.029592530801892],[0.0054128915071487,0.0032886050175875,-0.0066922968253493]],[[-0.001471588620916,0.036828052252531,0.007877629250288],[-0.023358941078186,0.002742437645793,-0.046860381960869],[0.11345706880093,-0.051939345896244,0.051656119525433]],[[-0.011639256961644,-0.049659017473459,-0.010457145981491],[0.0015369364991784,-0.11476481705904,-0.045397102832794],[0.046311818063259,-0.071021504700184,0.027741214260459]],[[-0.072306841611862,0.0037954864092171,0.0056779026053846],[0.017361974343657,-0.082652486860752,0.032429568469524],[-0.019481735303998,-0.029863642528653,0.016294905915856]],[[-0.079610675573349,-0.071476444602013,0.038981355726719],[-0.079950556159019,0.059590838849545,0.04137122258544],[0.030265407636762,-0.043925441801548,-0.097769245505333]]],[[[0.056864973157644,-0.10237057507038,-0.23353934288025],[0.13404336571693,-0.044831786304712,-0.16033884882927],[0.22948907315731,0.016573650762439,-0.29803162813187]],[[0.034890413284302,0.12268293648958,-0.0063027287833393],[-0.19498543441296,0.0045059924013913,0.014393736608326],[-0.21146187186241,0.083285756409168,0.1285312473774]],[[0.10355357080698,-0.012540682218969,-0.014574171975255],[0.044450234621763,0.21224477887154,0.16074119508266],[-0.031904306262732,-0.0052436990663409,0.22636835277081]],[[-0.061126347631216,-0.25637894868851,0.14107689261436],[-0.042039681226015,-0.2261111587286,-0.13040751218796],[-0.0095364451408386,-0.32985210418701,-0.044490572065115]],[[-0.028758449479938,-0.14858250319958,-0.087338455021381],[0.17810858786106,0.14068232476711,-0.008119547739625],[0.17472697794437,-0.0027662876527756,0.03802152723074]],[[-0.057687748223543,0.015722157433629,-0.11399612575769],[-0.0092717753723264,-0.10386177152395,-0.091811448335648],[0.031245093792677,-0.007848315872252,-0.1778474599123]],[[0.088665828108788,0.15431103110313,-0.13897687196732],[0.15364600718021,-0.0080686938017607,-0.0086322603747249],[0.029664380475879,0.077646307647228,-0.0038465852849185]],[[-0.044166687875986,-0.056614093482494,0.010688671842217],[0.17740966379642,-0.059109028428793,0.19154298305511],[0.055772498250008,-0.21956008672714,0.10597309470177]],[[-0.23648507893085,0.065152399241924,-0.14637321233749],[0.14196988940239,-0.074715577065945,-0.044152561575174],[0.15261641144753,-0.059356436133385,-0.1892989128828]],[[-0.059235751628876,-0.15272875130177,0.34856387972832],[-0.021263090893626,-0.13663321733475,0.24896505475044],[-0.17374166846275,-0.14774338901043,0.099471747875214]],[[0.018529001623392,-0.042314238846302,-0.10739448666573],[-0.099883884191513,0.029435554519296,0.071929089725018],[-0.11120339483023,-0.037053558975458,0.25658357143402]],[[0.051969978958368,-0.11498790979385,-0.090088471770287],[0.030938057228923,-0.078018009662628,0.19034068286419],[-0.021146200597286,0.11138395220041,0.11521320790052]],[[-0.045409932732582,0.016575656831264,0.07160060107708],[-0.094422474503517,-0.095103286206722,-0.042785186320543],[-0.048240326344967,-0.010302768088877,0.022084478288889]],[[-0.067643478512764,-0.133320748806,0.10086570680141],[0.0072970842011273,0.017818393185735,-0.069655075669289],[0.0060104695148766,0.035156402736902,-0.030692543834448]],[[-0.094730392098427,-0.035347953438759,0.02611256018281],[-0.33762395381927,0.013639571145177,0.17646326124668],[-0.12239165604115,-0.049607936292887,0.071951918303967]],[[-0.0038535168860108,-0.056322522461414,-0.039637494832277],[0.021024921908975,-0.13305112719536,0.04794729501009],[0.0076749646104872,-0.27071160078049,0.015740288421512]],[[-0.13616114854813,-0.053966250270605,0.049168892204762],[-0.15583674609661,-0.17029617726803,0.10358321666718],[0.019295051693916,-0.060369569808245,0.1783479899168]],[[0.17204396426678,0.020868601277471,0.029854172840714],[0.073175579309464,0.0036559426225722,-0.08512844145298],[-0.10012805461884,0.042373903095722,-0.0024642837233841]],[[0.13596002757549,-0.21798503398895,0.19293355941772],[0.12273373454809,-0.078226432204247,-0.092250347137451],[0.13077552616596,-0.0096030831336975,0.053038500249386]],[[0.054684720933437,-0.11762508004904,0.11340797692537],[0.18445257842541,0.028585374355316,0.11992778629065],[0.030876357108355,0.12200126796961,0.058431062847376]],[[-0.14436058700085,0.078124113380909,-0.080543033778667],[-0.26905718445778,-0.17799364030361,0.14376385509968],[-0.20453368127346,-0.079465173184872,0.02273609675467]],[[0.1040995195508,0.039899859577417,0.064841881394386],[-0.055227782577276,0.032111175358295,-0.0057345726527274],[-0.080446846783161,-0.12080805748701,-0.084476158022881]],[[0.16298589110374,-0.20598839223385,0.15156832337379],[0.062886945903301,-0.077316388487816,-0.020145755261183],[0.028871806338429,0.0066605685278773,0.0097715277224779]],[[0.021787993609905,-0.16449330747128,-0.10695917904377],[-0.11527391523123,-0.072201497852802,-0.14308515191078],[0.012968689203262,-0.051609981805086,-0.25980147719383]],[[-0.071215286850929,-0.12471664696932,0.032807610929012],[-0.016351774334908,-0.057774044573307,0.13363553583622],[0.12317889928818,0.056862477213144,0.035088438540697]],[[0.013708321377635,-0.011214413680136,0.29146862030029],[0.053718384355307,-0.12378443777561,-0.05013582110405],[0.084493301808834,-0.021281247958541,-0.33721780776978]],[[-0.13637273013592,-0.054881196469069,-0.068389765918255],[-0.067515499889851,-0.0068756877444685,0.004105981439352],[-0.02902708761394,0.17978863418102,-0.082831308245659]],[[-0.17520269751549,0.12778057157993,-0.038097184151411],[-0.041179325431585,0.10711689293385,-0.14502537250519],[0.022105645388365,0.11404424160719,0.16808122396469]],[[-0.098316058516502,-0.0060373367741704,0.058351561427116],[-0.16123370826244,0.037194646894932,0.086461625993252],[0.085761941969395,-0.079762153327465,0.00010833042324521]],[[0.061695318669081,-0.02235291339457,0.10727847367525],[0.10402707010508,-0.1450881510973,-0.072706557810307],[0.20018242299557,-0.11088456213474,-0.14447802305222]],[[-0.17087088525295,0.023333538323641,0.15417155623436],[-0.043410740792751,0.10101364552975,-0.069376394152641],[0.099490784108639,-0.014935899525881,-0.12071532011032]],[[0.062938310205936,-0.096470952033997,-0.025734342634678],[0.22001655399799,-0.2682640850544,-0.17682941257954],[0.22609789669514,0.028535114601254,-0.080838263034821]],[[-0.027178129181266,-0.014069323427975,-0.092279456555843],[0.041470136493444,-0.037141434848309,-0.0085511682555079],[-0.044471345841885,0.016094041988254,0.08745688945055]],[[-0.12309786677361,0.011404419317842,-0.070294104516506],[-0.19661583006382,-0.14173470437527,-0.14772894978523],[-0.07439149916172,0.044718757271767,0.12531293928623]],[[-0.091466754674911,0.069072932004929,0.084809973835945],[-0.1548086553812,0.042975548654795,-0.036478020250797],[-0.0097102439031005,0.073563449084759,0.017646059393883]],[[-0.19241663813591,-0.16311876475811,0.012192738242447],[-0.25808715820312,-0.083585716784,-0.097741797566414],[-0.21599669754505,0.016553957015276,0.016657885164022]],[[-0.1149377822876,-0.059693209826946,0.02179098315537],[-0.067250214517117,-0.16417779028416,0.2030808031559],[-0.23310296237469,0.0017433853354305,0.12441850453615]],[[-0.1048908829689,0.048233341425657,-0.10417803376913],[0.07271932810545,0.13994689285755,0.019084934145212],[0.10424529016018,-0.070340760052204,0.091527923941612]],[[0.10030556470156,0.067903123795986,-0.20148968696594],[0.036168482154608,-0.14948591589928,0.029328644275665],[0.22715276479721,-0.10824601352215,-0.059491865336895]],[[0.06245806068182,-0.14596059918404,-0.037408854812384],[0.11683061718941,-0.11201656609774,-0.25162941217422],[0.039212670177221,-0.023578656837344,-0.063598871231079]],[[-0.0096449386328459,0.0071003846824169,0.18276014924049],[0.045278567820787,-0.0015956655843183,-0.014630206860602],[-0.081924423575401,0.051198441535234,0.17000058293343]],[[0.1624948233366,0.063158512115479,0.16829612851143],[0.22975912690163,0.078086100518703,0.27657827734947],[0.07476069778204,0.13861657679081,0.30481716990471]],[[-0.017267167568207,-0.10376363247633,0.0023167449980974],[-0.1029756218195,0.011147392913699,-0.068036764860153],[-0.12827110290527,-0.16164723038673,-0.050730247050524]],[[-0.067248411476612,0.094213157892227,-0.018266752362251],[-0.19825881719589,0.13252891600132,-0.074785843491554],[-0.092938639223576,0.12535305321217,-0.059093873947859]],[[0.19138814508915,0.091354489326477,-0.12547248601913],[-0.04198918864131,-0.080286681652069,0.010727484710515],[0.10899244248867,-0.081039629876614,-0.01895915158093]],[[-0.2373653948307,0.20991033315659,-0.25715455412865],[-0.050309173762798,-0.081693314015865,0.076070234179497],[0.10401468724012,-0.017275022342801,0.073057532310486]],[[-0.088052928447723,0.027908340096474,0.25457382202148],[0.014832518063486,-0.13909062743187,0.23182910680771],[0.043607335537672,-0.073777250945568,0.049736954271793]],[[-0.018573703244328,-0.11067774146795,-0.27805694937706],[0.034216970205307,0.092899978160858,-0.050141960382462],[0.01773508451879,0.17908829450607,-0.064988024532795]],[[0.027997635304928,-0.23439635336399,0.19924916327],[0.019918559119105,-0.021537130698562,0.064084030687809],[-0.010489950887859,-0.021734580397606,0.00016561204392929]],[[-0.15343579649925,-0.18863318860531,0.074380747973919],[-0.12670758366585,0.022295594215393,0.077627293765545],[0.01386409625411,0.019650565460324,-0.14361111819744]],[[-0.064776949584484,-0.11050079762936,-0.22546343505383],[-0.029735302552581,-0.04658655077219,-0.086048297584057],[-0.11726229637861,0.127895206213,-0.034700151532888]],[[-0.13203428685665,0.075978271663189,-0.0032752731349319],[0.051666136831045,0.0068285944871604,0.0735028013587],[0.027936842292547,-0.089134849607944,-0.052621006965637]],[[0.099338449537754,0.089587591588497,-0.10114049166441],[-0.12422127276659,0.11220378428698,-0.049116648733616],[-0.19058763980865,0.10128450393677,-0.054318021982908]],[[0.09896245598793,-0.028113374486566,-0.10399655997753],[0.22421564161777,0.11643848568201,0.076844498515129],[0.10428164899349,0.024515621364117,0.15784803032875]],[[0.066342532634735,-0.10563381016254,-0.11834762245417],[0.077834077179432,-0.072230778634548,0.027009250596166],[-0.037464872002602,0.013136460445821,-0.041160076856613]],[[-0.13570809364319,0.059807367622852,-0.050485156476498],[-0.094340041279793,-0.17612433433533,0.099208123981953],[0.017359858378768,-0.0012197790201753,-0.056165918707848]],[[-0.10100837796926,0.18067996203899,0.078638285398483],[-0.076597042381763,0.04976162686944,0.013336063362658],[-0.14184050261974,-0.010408005677164,0.06255067884922]],[[-0.15918734669685,0.059460166841745,-0.13330714404583],[-0.15910495817661,-0.062561862170696,-0.22639386355877],[-0.14080272614956,0.049337849020958,-0.012724151834846]],[[-0.035799916833639,-0.052256178110838,0.18980319797993],[-0.019596662372351,-0.0098832324147224,0.20032635331154],[-0.036163844168186,-0.053715799003839,0.079922176897526]],[[0.067112781107426,0.030246591195464,0.222835034132],[0.12869335711002,-0.024049708619714,0.036692313849926],[0.10462738573551,-0.03884195163846,0.015209742821753]],[[-0.0080241896212101,0.038789849728346,0.0001738586142892],[-0.062329184263945,-0.029104279354215,-0.035078670829535],[-0.10584457963705,-0.064543940126896,0.11258988082409]],[[0.053205873817205,-0.16774010658264,-0.085862554609776],[-0.10903875529766,-0.24881716072559,0.070881851017475],[-0.10646942257881,-0.131677120924,-0.067815892398357]],[[0.11368859559298,-0.046331640332937,0.14059384167194],[0.08687836676836,0.022183297201991,-0.0075209531933069],[-0.037648350000381,-0.03693363815546,0.086532294750214]],[[-0.068904712796211,0.023988753557205,-0.14472265541553],[-0.014313950203359,0.059089802205563,-0.042393460869789],[-0.018171640112996,0.14194218814373,0.044636938720942]],[[-0.023154702037573,-0.10852634161711,0.17982706427574],[-0.042998671531677,-0.10260451585054,0.11189007759094],[0.038865935057402,-0.083604268729687,-0.028243666514754]],[[-0.065277136862278,0.079209625720978,0.34884735941887],[0.049006588757038,0.15908925235271,0.06013747677207],[-0.086949221789837,0.1484851539135,-0.15259720385075]],[[0.084715619683266,0.022097684442997,-0.093605414032936],[-0.087414339184761,0.03377677872777,0.045371439307928],[-0.11170860379934,-0.08673594892025,0.063555993139744]],[[-0.020056381821632,-0.11998629570007,0.3169130384922],[-0.14419098198414,0.057982861995697,-0.094644755125046],[-0.30994924902916,0.080497808754444,-0.17472092807293]],[[-0.017100574448705,-0.12652468681335,-0.15610101819038],[-0.072004452347755,-0.10381657630205,-0.039792973548174],[-0.063069574534893,0.1347721517086,0.10317591577768]],[[0.1431774944067,0.051992673426867,-0.091046825051308],[0.0059691066853702,0.12398460507393,0.023972375318408],[-0.092135265469551,0.11441147327423,-0.14686997234821]],[[-0.090217724442482,0.083140045404434,0.25304904580116],[0.16211761534214,0.056892484426498,-0.23665671050549],[-0.14751373231411,-0.0064390255138278,0.14661946892738]],[[-0.027640543878078,-0.12177864462137,-0.065896801650524],[0.007630864623934,-0.051334779709578,0.029483994469047],[0.023008508607745,-0.061603907495737,-0.034934937953949]],[[-0.082299523055553,-0.27801755070686,-0.16561712324619],[-0.32990077137947,-0.16440246999264,0.14649325609207],[-0.38604566454887,-0.27558517456055,0.044940121471882]],[[0.22849906980991,-0.093505933880806,-0.040561951696873],[-0.028113543987274,-0.07132812589407,-0.096313573420048],[0.00037271928158589,-0.21723045408726,-0.14503706991673]],[[-0.19209751486778,0.043388072401285,0.32883358001709],[-0.19365456700325,-0.099270448088646,0.29456639289856],[-0.060414701700211,0.088804446160793,0.098168291151524]],[[-0.022556668147445,-0.15769736468792,-0.17398345470428],[0.052042677998543,0.056867755949497,-0.11476700007915],[-0.076976709067822,0.1225798279047,-0.27173247933388]],[[0.095707461237907,-0.0051070447079837,-0.14175501465797],[-0.022375980392098,0.11199331283569,-0.18596011400223],[-0.072251707315445,-0.024183642119169,-0.111447699368]],[[-0.074099764227867,0.072157338261604,0.13422486186028],[0.075446791946888,-0.10987811535597,0.23408392071724],[0.12830628454685,-0.17703078687191,0.22320705652237]],[[-0.083943240344524,-0.030547197908163,-0.01442155521363],[-0.042392775416374,-0.013800664804876,0.0084659866988659],[0.076280735433102,0.097004607319832,0.24928234517574]],[[0.0031483059283346,-0.14103062450886,-0.20986123383045],[-0.08634290099144,-0.19268278777599,-0.12194728851318],[-0.1361158490181,0.012681992724538,-0.063039347529411]],[[0.051815096288919,-0.1015807017684,-0.050518993288279],[0.09804467856884,-0.084548629820347,-0.074861407279968],[0.034124657511711,0.074796803295612,-0.13611218333244]],[[-0.054686322808266,0.14777719974518,0.11416586488485],[-0.096204027533531,-0.092752151191235,0.11188973486423],[0.042663816362619,-0.11518838256598,0.074835285544395]],[[-0.13074767589569,0.18717662990093,-0.10177717357874],[-0.036513034254313,0.11491694301367,0.10842078924179],[0.094542004168034,0.095683932304382,0.0053682350553572]],[[-0.1484035551548,-0.1340204179287,-0.071855142712593],[-0.070567362010479,-0.14706778526306,-0.045998629182577],[-0.20284426212311,-0.21117120981216,-0.013824794441462]],[[-0.10397680848837,0.061442688107491,-0.058173794299364],[-0.018381278961897,0.077615596354008,0.1054757386446],[-0.061356335878372,0.078689217567444,0.12382901459932]],[[-0.15520168840885,-0.094101808965206,-0.0013107055565342],[-0.10373265296221,-0.073552496731281,0.23982693254948],[0.025214793160558,0.1369923055172,0.071690991520882]],[[0.073504537343979,0.077338367700577,0.12731209397316],[0.042980521917343,-0.033876225352287,0.13247326016426],[-0.02698901668191,-0.082619875669479,0.06653755158186]],[[-0.10252872109413,-0.21497942507267,0.21875122189522],[0.033898383378983,0.0050664166919887,0.31300443410873],[0.19956110417843,-0.12467316538095,0.12883915007114]],[[0.27439421415329,-0.025602217763662,0.017746355384588],[0.045753553509712,-0.043831773102283,0.074422210454941],[0.095773994922638,0.020988481119275,0.01830237545073]],[[0.10514214634895,0.11075307428837,0.14866836369038],[-0.07086043804884,0.11666792631149,-0.033037360757589],[0.09068413823843,0.13964508473873,-0.10855170339346]],[[0.027487026527524,0.016288682818413,0.027220040559769],[0.00033314723987132,0.027724649757147,0.12970671057701],[-0.053851041942835,0.017732815816998,0.045714251697063]],[[0.02051349170506,-0.049826361238956,-0.17004919052124],[0.071360029280186,-0.14693364500999,0.077213406562805],[0.038350179791451,0.11072570085526,0.14953255653381]],[[0.052620831876993,-0.1214343085885,-0.08793181926012],[0.10824481397867,-0.057951625436544,0.072655364871025],[0.086449764668941,0.17228372395039,0.15317909419537]],[[0.064241282641888,0.21410542726517,-0.26546064019203],[-0.041912067681551,0.00044885926763527,-0.15777459740639],[-0.065850779414177,-0.068599350750446,0.12062243372202]],[[-0.044714402407408,-0.087134599685669,-0.098743081092834],[0.10900657624006,-0.030961150303483,-0.065432973206043],[-0.10144813358784,0.082007691264153,-0.11010146141052]],[[-0.074055925011635,0.17971913516521,-0.15947118401527],[-0.06077167391777,0.13211639225483,-0.14158700406551],[0.0020925798453391,-0.048080265522003,0.26467221975327]],[[0.048427887260914,0.063670910894871,0.0088212238624692],[-0.039642043411732,0.027840910479426,-0.11290070414543],[-0.012816619127989,-0.16429017484188,0.020033208653331]],[[-0.16988933086395,0.051602602005005,-0.12621532380581],[0.011290559545159,0.065337523818016,-0.098066754639149],[-0.047287404537201,0.076243117451668,-0.023072818294168]],[[0.14045177400112,0.23930081725121,-0.18292082846165],[-0.019969720393419,0.01457840949297,-0.13727857172489],[0.20334967970848,-0.053721565753222,-0.061512000858784]],[[0.12850883603096,-0.086756579577923,-0.20464546978474],[0.070611760020256,0.025274081155658,0.0053785010240972],[0.071984715759754,-0.10256021469831,-0.073106482625008]],[[-0.032837145030499,0.072376243770123,-0.095664225518703],[-0.097771510481834,-0.16792783141136,-0.050788104534149],[-0.099441021680832,-0.10826727747917,-0.21840612590313]],[[-0.0035721189342439,0.084022626280785,0.20788784325123],[-0.090422429144382,0.062888659536839,0.19108046591282],[-0.036523263901472,0.044953212141991,0.35979741811752]],[[0.061840575188398,0.21621809899807,-0.14606390893459],[-0.095638409256935,0.070806033909321,-0.14055743813515],[-0.1485029309988,-0.027113724499941,-0.0054748603142798]],[[-0.14126153290272,-0.036243006587029,0.02425979077816],[0.076901964843273,-0.095151506364346,-0.051417570561171],[0.063425034284592,-0.021990906447172,0.058062698692083]],[[-0.11592645198107,-0.056728202849627,0.013134627602994],[-0.039094422012568,0.077420972287655,0.063546486198902],[-0.17742185294628,0.1177910938859,0.13746352493763]],[[0.023406902328134,-0.13155847787857,0.050693914294243],[-0.029533578082919,0.062570437788963,-0.021593371406198],[-0.1744410097599,0.22934687137604,-0.0084097003564239]],[[0.030090032145381,0.081530936062336,0.0429259352386],[-0.0087776519358158,0.18769246339798,-0.059234131127596],[0.17759980261326,0.17398579418659,0.046513929963112]],[[0.079406060278416,-0.019064342603087,-0.18959371745586],[0.041185539215803,-0.095951668918133,0.016593283042312],[0.036881133913994,-0.13902738690376,-0.048944599926472]],[[0.059335142374039,0.011512001976371,0.11372011899948],[0.17656853795052,-0.038373123854399,0.0061922343447804],[0.1977810561657,-0.11272488534451,0.075360789895058]],[[0.01447225548327,-0.0066890753805637,0.18197616934776],[-0.031650364398956,-0.031552951782942,0.014143889769912],[-0.22878842055798,-0.050304625183344,0.10329941660166]],[[-0.055298052728176,-0.038952793926001,0.14908885955811],[0.026491586118937,-0.17763257026672,0.14025248587132],[-0.0079290773719549,-0.23195089399815,0.07970917224884]],[[0.015699774026871,-0.04246311634779,-0.12292262166739],[-0.099132791161537,0.016503281891346,0.039630264043808],[0.014222891069949,-0.080863811075687,0.18844883143902]],[[0.11244316399097,-0.0081864250823855,-0.21256439387798],[0.14113692939281,-0.024483107030392,-0.16529826819897],[0.20503403246403,0.037844866514206,-0.2347332239151]],[[-0.17181634902954,-0.10932016372681,0.052674416452646],[-0.036396909505129,-0.043644718825817,-0.14728599786758],[0.11269338428974,0.0073006986640394,-0.16234160959721]],[[0.045115623623133,-0.048277694731951,0.22363576292992],[0.040778920054436,0.14146026968956,0.0093378759920597],[-0.051667682826519,0.077743448317051,-0.15952740609646]],[[-0.058870539069176,-0.084246821701527,-0.028518486768007],[-0.025147281587124,0.012132933363318,-0.010044268332422],[-0.21547293663025,0.1001672744751,0.046405840665102]],[[0.095911733806133,0.091595239937305,-0.15180386602879],[-0.09618467092514,0.022139601409435,-0.20489105582237],[-0.033503226935863,0.096625410020351,-0.16500587761402]],[[0.074596002697945,0.086496502161026,-0.15146398544312],[-0.068978272378445,0.12702016532421,-0.083698101341724],[-0.10867250710726,-0.029353473335505,0.030510623008013]],[[0.11717631667852,0.036763481795788,0.02440938539803],[-0.04968523606658,0.036543250083923,-0.11574786156416],[-0.23735126852989,-0.13070107996464,-0.00042464534635656]],[[-0.0031606783159077,0.059050209820271,0.094170764088631],[-0.11625078320503,-0.043195065110922,0.19657735526562],[-0.013979473151267,-0.030369553714991,0.16110974550247]],[[-0.14236372709274,-0.14639757573605,-0.029963821172714],[-0.048709355294704,0.030463403090835,0.22368770837784],[-0.079471327364445,0.11575815081596,0.13125313818455]],[[0.15482683479786,-0.048072822391987,0.5660582780838],[0.089534074068069,-0.0063970498740673,0.10207866877317],[0.18462745845318,-0.067071311175823,0.11741474270821]],[[-0.16185501217842,-0.050502687692642,0.0023210761137307],[-0.14421103894711,-0.21075612306595,-0.11888708174229],[0.057235553860664,-0.065641984343529,0.033895779401064]],[[0.04670737311244,-0.14062337577343,0.068302504718304],[0.14966931939125,-0.082430064678192,-0.028093194589019],[0.13796204328537,0.042753059417009,0.005629459861666]],[[0.1434433311224,-0.044367428869009,0.075944758951664],[0.07948461920023,0.12408416718245,-0.11739695072174],[-0.16429936885834,-0.051804088056087,-0.022806415334344]],[[-0.10454353690147,0.038974147289991,0.1591717004776],[-0.049842484295368,-0.063614778220654,0.12833759188652],[-0.078920654952526,-0.12068255990744,0.016079569235444]],[[0.040922090411186,0.038251891732216,-0.087012335658073],[0.0444276034832,-0.0046968129463494,0.061343070119619],[0.034853029996157,-0.13069106638432,0.030611347407103]],[[0.079030588269234,0.11708424985409,-0.14149667322636],[0.036043513566256,0.14963902533054,-0.053763423115015],[-0.034289114177227,0.037516575306654,0.061309646815062]]],[[[0.032456055283546,0.011362486518919,0.02789100073278],[0.15899886190891,-0.036350391805172,-0.023311613127589],[-0.10730572789907,0.0092290434986353,-0.13973650336266]],[[-0.10595859587193,-0.052016369998455,0.017557660117745],[0.067187458276749,-0.001352462451905,-0.025882819667459],[-0.10453630238771,0.043160166591406,0.040421437472105]],[[0.091521792113781,-0.014959502965212,0.060142066329718],[0.0030272146686912,0.069153271615505,0.074198722839355],[-0.030003124848008,0.2195950448513,-0.045427069067955]],[[-0.12444438040257,-0.045245587825775,-0.16016943752766],[-0.022893592715263,0.13046568632126,-0.0078837545588613],[-0.17679111659527,-0.05509190633893,0.0098468298092484]],[[0.27348607778549,-0.078889615833759,-0.15426522493362],[0.060637392103672,0.032455716282129,-0.023705838248134],[0.039392068982124,0.0094036310911179,-0.0034655483905226]],[[0.13507607579231,-0.061939168721437,-0.087456494569778],[-0.13894771039486,0.079975791275501,0.095611229538918],[-0.10433954745531,-0.055899642407894,-0.09612038731575]],[[-0.10802086442709,-0.013522858731449,0.1304112970829],[0.15136623382568,0.23874621093273,0.023411445319653],[0.088141493499279,-0.047861717641354,-0.093091361224651]],[[-0.1172684431076,-0.097316920757294,-0.027586378157139],[-0.040356792509556,0.11345360428095,0.192542552948],[-0.23525419831276,0.1075376495719,0.16411140561104]],[[0.081795252859592,0.16727055609226,0.036174554377794],[-0.045612648129463,0.0041227033361793,-0.12265579402447],[0.057016219943762,0.033278297632933,-0.017143152654171]],[[-0.2129862755537,-0.058661412447691,-0.093648172914982],[-0.15148310363293,-0.0098848659545183,-0.069998376071453],[-0.065534852445126,-0.095490120351315,0.014323471114039]],[[-0.13071028888226,0.026812875643373,0.03440473228693],[-0.035925585776567,0.048171132802963,0.17404353618622],[-0.13698355853558,-0.036304216831923,-0.17606501281261]],[[0.22615434229374,0.17832982540131,0.2070080190897],[-0.084494784474373,-0.0038867902476341,-0.075299948453903],[-0.020431848242879,0.01771954447031,0.011993042193353]],[[0.079401165246964,-0.1444678902626,-0.11528780311346],[-0.13820464909077,-0.04059211909771,0.01239126548171],[0.019414618611336,-0.16273283958435,-0.15044236183167]],[[0.064781807363033,0.046253874897957,-0.0015772891929373],[-0.1917677372694,-0.10318143665791,-0.13864432275295],[-0.07837575674057,-0.015250761061907,-0.077206075191498]],[[-0.11070509254932,0.087280809879303,0.087854444980621],[0.19087563455105,0.038110200315714,0.14521464705467],[-0.058742113411427,0.05130609869957,-0.060056336224079]],[[-0.021264167502522,0.0039014462381601,-0.20595550537109],[-0.0095417778939009,0.072341188788414,-0.00057934853248298],[-0.15633690357208,-0.24747353792191,-0.30633535981178]],[[0.023618616163731,0.15603296458721,0.035044047981501],[-0.20761315524578,-0.080093413591385,-0.19613246619701],[-0.14853212237358,-0.1204905807972,0.012236166745424]],[[-0.02665308304131,-0.10381866246462,-0.036795310676098],[-0.084992580115795,-0.083994768559933,0.015679819509387],[0.030967175960541,0.04910346493125,0.1530694514513]],[[-0.012347311712801,0.16667075455189,0.085777774453163],[-0.051716733723879,-0.013035923242569,-0.05736181885004],[-0.029906207695603,0.050125490874052,-0.18280552327633]],[[0.00034822765155695,-0.086065888404846,-0.033836137503386],[-0.1208595559001,0.10165165364742,0.023426720872521],[-0.0087431604042649,0.10536941885948,0.022265022620559]],[[-0.021723840385675,-0.096830859780312,0.013156338594854],[-0.2208726555109,-0.09848602861166,0.0097866542637348],[-0.047608952969313,-0.10076356679201,-0.13864925503731]],[[-0.17518101632595,0.038430705666542,-0.15069115161896],[0.1074155792594,0.18722212314606,0.07493545114994],[-0.19844943284988,-0.14635869860649,-0.046007674187422]],[[0.14213798940182,0.02497873455286,-0.017093177884817],[-0.0176413487643,-0.045688904821873,-0.064385250210762],[0.008147575892508,0.066552892327309,-0.019696602597833]],[[0.10233203321695,-0.017038729041815,-0.0016087946714833],[0.11599157750607,0.08795315772295,0.06068080291152],[0.0035524691920727,-0.29915028810501,-0.25838756561279]],[[-0.084497034549713,-0.15050548315048,0.022534498944879],[0.063314288854599,0.081051968038082,0.034606274217367],[0.098900809884071,0.13602557778358,0.19430769979954]],[[-0.044902134686708,0.062796480953693,-0.0138567853719],[0.039365410804749,0.023419486358762,-0.067618228495121],[0.041859418153763,-0.23569296300411,-0.064177997410297]],[[-0.090396419167519,-0.099963918328285,-0.090477764606476],[0.21242859959602,0.080641366541386,-0.1049660295248],[-0.10317991673946,-0.091637142002583,-0.18005545437336]],[[0.18658961355686,-0.022471182048321,-0.026533745229244],[-0.083759061992168,-0.011831418611109,0.0066765667870641],[0.19069197773933,0.076304279267788,-0.14947564899921]],[[0.070893138647079,0.1541493833065,-0.1494392156601],[0.068755626678467,-0.056209817528725,0.089272499084473],[0.042028207331896,-0.056747298687696,-0.13446737825871]],[[-0.064440228044987,0.056448947638273,0.10220724344254],[-0.1171357780695,-0.027911690995097,0.029036667197943],[-0.062824204564095,0.15147688984871,0.0070701339282095]],[[-0.17186838388443,-0.052776336669922,-0.097231827676296],[-0.20920950174332,-0.19841338694096,0.021135514602065],[0.22980752587318,0.28812649846077,-0.07591000944376]],[[-0.17547743022442,-0.17822062969208,-0.032409910112619],[-0.070074334740639,-0.01251083612442,-0.12601593136787],[-0.099128469824791,-0.045664954930544,0.074517294764519]],[[-0.069460496306419,-0.020229090005159,-0.053203515708447],[0.2606044113636,0.07438924908638,-0.052733313292265],[-0.10310655087233,-0.13782168924809,-0.08778028935194]],[[-0.12161558866501,-0.066663734614849,0.047317262738943],[-0.14576077461243,-0.0080133033916354,0.067135199904442],[0.03505140542984,0.081073254346848,0.058102395385504]],[[0.030085202306509,-0.0042089293710887,-0.18446560204029],[-0.070172421634197,-0.00029714312404394,0.036077119410038],[0.023926053196192,-0.034050323069096,-0.14257764816284]],[[0.20061014592648,0.058478962630033,0.054841119796038],[-0.17058028280735,-0.056170683354139,0.059962585568428],[-0.032979723066092,-0.075385123491287,0.0052407924085855]],[[-0.25802633166313,-0.033518254756927,-0.058774687349796],[-0.038443457335234,0.025603413581848,0.087142370641232],[0.1711645424366,0.2027785629034,0.18553657829762]],[[0.12771119177341,0.066653251647949,0.027752576395869],[-0.076978795230389,0.024532763287425,0.13221327960491],[-0.19440418481827,-0.12176502496004,-0.11603808403015]],[[-0.11918406933546,0.020456947386265,-0.12162162363529],[0.078557826578617,0.051995448768139,-0.035710480064154],[-0.16984270513058,-0.098000451922417,0.036864433437586]],[[-0.077097661793232,-0.04663023352623,-0.026545917615294],[-0.080455265939236,-0.041675940155983,0.11329536139965],[-0.17179219424725,0.0045822891406715,0.079349674284458]],[[0.15644419193268,0.09155235439539,-0.02697947062552],[-0.19738025963306,0.044404286891222,0.020935112610459],[-0.12012183666229,0.086349450051785,0.060952924191952]],[[-0.29094198346138,-0.10271725803614,0.064537987112999],[0.031742990016937,0.088823534548283,-0.0068341046571732],[0.28838405013084,0.12376736849546,0.19195236265659]],[[-0.16796100139618,-0.079479798674583,-0.03743327409029],[-0.063527412712574,0.011921744793653,-0.018475169315934],[-0.026294572278857,-0.25272488594055,-0.36770850419998]],[[-0.020367294549942,0.061440162360668,0.087263211607933],[0.10932487994432,0.11269918084145,0.021971104666591],[-0.014334936626256,0.0069887829013169,-0.071787662804127]],[[0.079621262848377,0.069453120231628,0.021659955382347],[-0.2821498811245,-0.14749775826931,0.046892143785954],[-0.068573921918869,0.02338695526123,-0.046485364437103]],[[0.14209580421448,0.046766594052315,0.11304084956646],[-0.055326968431473,-0.086727790534496,-0.058983191847801],[-0.069387428462505,-0.075754746794701,0.095954701304436]],[[-0.10934127122164,-0.023265743628144,0.074433699250221],[-0.10970524698496,0.0032424628734589,-0.1506667137146],[0.043006103485823,-0.0086994497105479,-0.11734408140182]],[[0.024241454899311,-0.0011753146536648,0.11091501265764],[0.27907803654671,-0.032981801778078,-0.1226174607873],[-0.049502145498991,-0.096857011318207,0.05590283498168]],[[-0.1614748686552,0.082955360412598,-0.17866076529026],[0.066489703953266,0.098332926630974,0.12957412004471],[0.090804353356361,0.0018805669387802,0.10410345345736]],[[-0.067833252251148,-0.18356023728848,-0.1407969892025],[0.22436285018921,0.10242193937302,-0.23082074522972],[-0.18524447083473,-0.011106880381703,0.12498942762613]],[[-0.0030873841606081,0.012707392685115,-0.068314768373966],[0.15890835225582,0.033385276794434,-0.049157097935677],[-0.10384745150805,-0.089707434177399,-0.028082072734833]],[[0.083510518074036,-0.057035893201828,0.018527807667851],[0.11719188094139,-0.10260375589132,0.014159888960421],[0.13695521652699,0.049719262868166,-0.048269391059875]],[[-0.10193641483784,0.004894376732409,0.048089787364006],[0.10536663234234,-0.017639745026827,-0.077182210981846],[-0.017835535109043,-0.032008785754442,-0.13909085094929]],[[0.23139955103397,0.14387194812298,0.062456548213959],[-0.089629031717777,-0.10076153278351,-0.047059815376997],[0.12764537334442,0.079568073153496,0.0187050960958]],[[-0.19623272120953,-0.24537640810013,-0.14042884111404],[-0.05363667756319,0.1327637732029,0.08127498626709],[-0.050264827907085,0.22686810791492,0.084134586155415]],[[-0.24687187373638,-0.1143185198307,-0.047379277646542],[0.0059845522046089,-0.19197233021259,0.11104334890842],[0.23507882654667,0.0022052556741983,-0.12172721326351]],[[-0.14856195449829,-0.12032137066126,-0.054527208209038],[-0.23259408771992,0.087875738739967,0.062255393713713],[0.06597263365984,0.039109420031309,0.26479890942574]],[[-0.091331236064434,-0.064785540103912,-0.088920652866364],[-0.10155789554119,-0.20067696273327,-0.18987615406513],[-0.043010286986828,-0.00012537679867819,0.17668852210045]],[[-0.0011702458141372,0.0078126778826118,0.16659307479858],[0.00083195645129308,-0.099648877978325,-0.10920791327953],[0.14595213532448,-0.056190762668848,-0.041483044624329]],[[0.20044384896755,0.13822157680988,0.082287795841694],[0.02810912206769,-0.039949107915163,-0.1471980959177],[-0.078735992312431,0.0045450502075255,0.050984263420105]],[[0.13524051010609,-0.12212695926428,0.0038840700872242],[0.037416003644466,-0.058599911630154,-0.098706871271133],[-0.20041304826736,-0.11368022114038,-0.16825257241726]],[[-0.035078417509794,-0.093949489295483,-0.28401735424995],[0.083655424416065,-0.017796570435166,-0.11802074313164],[0.10742748528719,-0.19296130537987,-0.21667194366455]],[[-0.077861085534096,-0.062108159065247,0.039883244782686],[-0.079546891152859,0.117481559515,0.01240944582969],[0.098811730742455,-0.011310629546642,-0.001087864045985]],[[-0.00057548499898985,0.023292347788811,0.00088655587751418],[-0.017138732597232,0.023692721500993,-0.0035305945202708],[-0.026499247178435,0.23103128373623,0.16645091772079]],[[0.09717895835638,-0.091098457574844,-0.096936598420143],[-0.087798319756985,-0.13936567306519,-0.1079872623086],[-0.0023284566123039,-0.04688959941268,-0.0098959524184465]],[[0.029790515080094,0.061753064393997,0.050063651055098],[-0.068674586713314,0.10954194515944,-0.08967437595129],[-0.07635111361742,-0.037649124860764,-0.019535468891263]],[[-0.039236407727003,-0.032204758375883,-0.10547073930502],[0.37050613760948,0.14198045432568,-0.06760673224926],[0.25211083889008,-0.066356487572193,-0.0081336824223399]],[[-0.12839424610138,-0.0084272148087621,0.098364099860191],[0.15910257399082,0.025613462552428,-0.21340963244438],[-0.14064115285873,-0.050379116088152,0.084906876087189]],[[0.23034562170506,0.13719727098942,0.13343900442123],[-0.063852950930595,-0.20977266132832,0.071741119027138],[-0.058182686567307,-0.15431037545204,-0.21009209752083]],[[0.19131754338741,0.01980160176754,0.073649913072586],[-0.114781036973,-0.057400830090046,-0.028144758194685],[0.085779756307602,-0.065438568592072,-0.20473842322826]],[[0.029669919982553,0.051901936531067,-0.0064309020526707],[-0.040582846850157,0.027134971693158,-0.04008087143302],[0.13521258533001,0.09159866720438,0.054702330380678]],[[0.19261600077152,0.093256860971451,0.20079766213894],[-0.24481900036335,-0.091216877102852,0.0064050275832415],[-0.12466714531183,-0.070187695324421,0.086038671433926]],[[0.11475371569395,0.1882866024971,0.19943629205227],[0.086786881089211,-0.24943020939827,-0.2380219399929],[-0.17534156143665,-0.036596726626158,-0.11041143536568]],[[-0.12819743156433,-0.0014014268526807,0.027195470407605],[0.0050337039865553,0.054470274597406,0.089841805398464],[-0.13914133608341,0.016796283423901,0.11917781829834]],[[-0.046282779425383,-0.13157649338245,0.13404475152493],[-0.023230919614434,-0.011896614916623,-0.012289345264435],[-0.026578433811665,-0.16581030189991,-0.09483876824379]],[[0.036803938448429,0.065335363149643,0.092727541923523],[0.052914831787348,0.044233169406652,0.033233486115932],[-0.01755953207612,-0.076084539294243,-0.012396525591612]],[[0.05790289118886,-0.079071797430515,-0.07745897769928],[-0.095836900174618,-0.12730199098587,0.025740083307028],[-0.040529273450375,-0.0074236146174371,-0.0651625841856]],[[-0.13527138531208,-0.11380613595247,-0.012752365320921],[0.12901276350021,-0.0039462018758059,-0.076876670122147],[-0.029367856681347,-0.013083186000586,-0.14684143662453]],[[0.016431471332908,0.20400772988796,0.16097179055214],[-0.1310378909111,-0.035994090139866,0.031387940049171],[0.076928965747356,0.16213768720627,-0.031468484550714]],[[0.052544739097357,-0.038305502384901,0.12845201790333],[-0.031806353479624,-0.13905368745327,-0.087538622319698],[-0.004127380438149,0.039167005568743,-0.075224719941616]],[[-0.015740314498544,-0.013596650213003,0.052821714431047],[-0.10060061514378,-0.039942499250174,0.034226164221764],[0.017496464774013,0.087391130626202,-0.053041525185108]],[[0.14999493956566,0.24723517894745,-0.0039991526864469],[-0.037513416260481,-0.092639870941639,-0.14983196556568],[-0.0092863719910383,-0.018680296838284,-0.10685565322638]],[[-0.020003320649266,0.089535489678383,-0.042481455951929],[0.083667606115341,0.037236969918013,0.030382575467229],[-0.030296389013529,0.19492965936661,0.28538683056831]],[[0.0019130184082314,0.049344342201948,0.083195365965366],[-0.15245772898197,-0.079768769443035,-0.14521960914135],[-0.015989057719707,-0.011024064384401,0.10433328896761]],[[-0.14225125312805,-0.099452890455723,-0.14602491259575],[0.19448259472847,0.068536534905434,-0.12193512171507],[0.024032812565565,0.063051953911781,-0.12116238474846]],[[-0.0073859407566488,-0.06967306882143,-0.060901254415512],[-0.064426779747009,-0.036597337573767,0.086598910391331],[0.014413209632039,0.056359514594078,-0.075134739279747]],[[-0.088819243013859,-0.06606812030077,-0.089337855577469],[0.04580357298255,0.049097009003162,-0.079494945704937],[0.15670225024223,-0.043569479137659,0.00093173485947773]],[[0.12575860321522,0.087629184126854,0.0096168499439955],[0.24942614138126,-0.10066854953766,-0.15838818252087],[-0.0034353425726295,-0.084287114441395,0.13078981637955]],[[-0.046477288007736,-0.057806134223938,0.085459604859352],[0.016295021399856,0.016230270266533,-0.063111498951912],[0.15146863460541,0.03675714880228,0.06189688667655]],[[0.12414721399546,-0.042422767728567,0.019539972767234],[-0.02674345113337,0.081919826567173,-0.10851730406284],[-0.078936964273453,-0.036599837243557,0.11777605861425]],[[0.073985226452351,-0.10745319724083,-0.080272696912289],[0.069655813276768,0.095160491764545,0.081402510404587],[-0.050676885992289,0.031381797045469,0.22154773771763]],[[-0.18282575905323,-0.017244309186935,0.0091460337862372],[-0.049862954765558,-0.18041621148586,-0.20303170382977],[0.024113094434142,0.047392435371876,-0.036960233002901]],[[-0.096484437584877,-0.035991072654724,0.081180676817894],[-0.025176905095577,0.028496135026217,0.060506738722324],[0.035624891519547,0.23447133600712,-0.009367254562676]],[[-0.17994926869869,-0.12742191553116,0.087698131799698],[-0.10071919858456,0.028896268457174,-0.1432863920927],[-0.095813021063805,-0.083131283521652,-0.084140174090862]],[[0.022855950519443,0.18234287202358,-0.033853434026241],[-0.1811730414629,0.047924853861332,-0.040632970631123],[-0.029177293181419,-0.0545294880867,-0.1255444586277]],[[-0.049241665750742,-0.17120654881001,-0.0037951692938805],[-0.11207996308804,-0.14924202859402,0.013251735828817],[0.022335045039654,0.13269492983818,0.036229256540537]],[[-0.020564870908856,-0.065762288868427,-0.11560525000095],[0.11603488028049,-0.064784616231918,0.10801790654659],[-0.069690711796284,0.025682164356112,-0.036454133689404]],[[0.13528524339199,-0.091849744319916,0.071509540081024],[-0.10091225802898,0.078516513109207,0.11252802610397],[-0.18495166301727,-0.059664759784937,-0.013036017306149]],[[-0.17782521247864,0.10245387256145,0.014837476424873],[-0.097705513238907,-0.041292533278465,-0.0071551995351911],[-0.077670074999332,0.016027918085456,-0.11442574858665]],[[0.034517128020525,-0.0022314509842545,-0.092155732214451],[0.034314878284931,0.029586965218186,0.040514264255762],[-0.056682672351599,-0.060281220823526,0.11172337085009]],[[0.089270941913128,0.1106011942029,-0.0097772730514407],[-0.010541110299528,-0.05525441467762,0.083860673010349],[-0.021726375445724,-0.1528354883194,-0.083262987434864]],[[0.16516660153866,0.13962858915329,0.22501792013645],[-0.11409709602594,-0.066510610282421,0.035759523510933],[0.041383855044842,0.10724610835314,0.041823577135801]],[[0.072194278240204,0.19900915026665,0.075180754065514],[-0.070225074887276,0.027568753808737,0.019825719296932],[-0.05451924726367,0.020194401964545,-0.033867500722408]],[[0.11011826992035,0.033382188528776,-0.041348237544298],[-0.01682198792696,-0.11970556527376,-0.12614722549915],[-0.067175410687923,0.0027847706805915,-0.094502910971642]],[[-0.0023643772583455,0.095642425119877,0.040653742849827],[-0.043502759188414,-0.14559870958328,-0.13530445098877],[0.013767119497061,0.018940359354019,-0.0711430311203]],[[0.075197018682957,-0.0093780839815736,-0.050646211951971],[-0.19314208626747,-0.14962913095951,0.046229112893343],[0.057889558374882,0.031390935182571,-0.10256085544825]],[[-0.12586961686611,-0.13114462792873,0.0028196529019624],[-0.12924426794052,-0.02865001372993,0.064899191260338],[-0.032878156751394,0.04853992164135,0.034344378858805]],[[0.0218894071877,0.012979961931705,0.072909384965897],[-0.17464081943035,-0.26713064312935,-0.16815233230591],[0.14682570099831,-0.044204089790583,-0.04125352576375]],[[0.013548153452575,0.0015445719473064,0.10270071029663],[-0.040387690067291,-0.080021746456623,0.011889366433024],[0.15183153748512,0.14235137403011,0.11663106828928]],[[-0.029901873320341,0.032120194286108,-0.025498025119305],[-0.059198558330536,-0.19266636669636,0.025087306275964],[0.062542349100113,0.04247147589922,0.01982706040144]],[[0.015855006873608,-0.020441871136427,0.029680848121643],[0.024880688637495,-0.12515133619308,-0.042702797800303],[0.025749092921615,-0.032296814024448,-0.031939066946507]],[[-0.11826514452696,-0.016295222565532,-0.055880282074213],[-0.072661757469177,-0.019380457699299,0.016120733693242],[0.028999753296375,-0.039398074150085,-0.036437153816223]],[[-0.16146789491177,-0.0032809958793223,0.038682319223881],[-0.035775523632765,-0.045864123851061,-0.02867410518229],[-0.049280531704426,0.074917532503605,0.052273321896791]],[[-0.20506691932678,-0.11456550657749,0.0050031966529787],[-0.01595726236701,0.089029766619205,0.10210792720318],[-0.14128363132477,-0.16063348948956,0.035719756036997]],[[-0.048809818923473,0.093982107937336,0.063899733126163],[-0.0023370992857963,-0.0014050917234272,0.00098876398988068],[-0.040346421301365,0.095612436532974,0.083841159939766]],[[-0.074299864470959,-0.019371943548322,0.1477769613266],[0.0098915137350559,0.014420863240957,0.067874796688557],[-0.04303252696991,0.072037771344185,0.13282430171967]],[[0.083294972777367,-0.035019043833017,0.0043086628429592],[-0.031391784548759,-0.015348938293755,-0.026232976466417],[0.17982521653175,-0.0050151757895947,0.030905546620488]],[[-0.032758243381977,-0.038966622203588,-0.15461499989033],[0.10937681049109,-0.021760331466794,0.0084645673632622],[0.11864368617535,-0.025485387071967,-0.081135839223862]],[[-0.015935966745019,-0.066098794341087,-0.15934696793556],[-0.049716763198376,-0.06980000436306,0.12656331062317],[-0.020232331007719,0.031035769730806,0.093697801232338]],[[-0.05748887360096,0.065706431865692,0.062423571944237],[-0.17364412546158,-0.061221554875374,-0.085980512201786],[-0.0011487535666674,0.05920298025012,0.099511004984379]],[[-0.019347770139575,0.023226909339428,0.013789961114526],[-0.052572458982468,-0.059865806251764,0.029231462627649],[-0.077934689819813,0.07745622843504,0.11912073194981]],[[0.051342397928238,0.064941637217999,0.081757470965385],[0.0079444451257586,0.036603268235922,0.040208704769611],[-0.019781701266766,0.089657582342625,0.092144101858139]],[[-0.05041890591383,0.051978714764118,0.097259238362312],[-0.097015164792538,-0.30476823449135,-0.075538620352745],[0.06875129789114,-0.20218609273434,-0.1325109899044]],[[-0.11323174834251,0.11109913140535,-0.048834040760994],[0.033897910267115,0.075419969856739,0.025223258882761],[0.04316172003746,-0.0033971634693444,-0.033625237643719]],[[0.078468449413776,-0.040894839912653,0.025388507172465],[-0.0446394123137,-0.16797795891762,0.076712153851986],[0.12314172834158,0.17886109650135,0.020547050982714]],[[0.020167998969555,0.028207752853632,-0.081857956945896],[-0.038259662687778,-0.12779727578163,-0.14626657962799],[0.068299174308777,-0.067361243069172,-0.11685111373663]],[[0.11385378986597,0.042762640863657,-0.033537182956934],[0.03116387873888,0.052316341549158,-0.21667572855949],[0.10390336066484,0.072505317628384,0.065517254173756]],[[0.10410889238119,-0.051050558686256,0.0013349270448089],[-0.19876420497894,0.092766143381596,0.10847236216068],[-0.11285460740328,-0.13064755499363,-0.1072119474411]]],[[[0.01924329996109,-0.002553992671892,-0.093460872769356],[0.0081206737086177,0.053232952952385,0.023598177358508],[0.044601432979107,-0.00043261196697131,0.013512575998902]],[[0.0032880669459701,-0.015525460243225,0.020256586372852],[-0.0091694174334407,0.0063477209769189,-0.059247847646475],[-0.032633863389492,-0.032007858157158,0.0065285209566355]],[[0.043534509837627,-0.0019576798658818,0.020437654107809],[-0.031026320531964,0.020644653588533,-0.043770898133516],[0.010429648682475,0.047946989536285,-0.017969466745853]],[[-0.029929306358099,0.019663570448756,-0.054741084575653],[0.035271588712931,-0.025503600016236,-0.047503534704447],[0.057822048664093,0.01624122262001,0.0020919342059642]],[[0.065350040793419,0.042508412152529,-0.031411554664373],[-0.0084090558812022,0.051555588841438,-0.058285787701607],[-0.0031842419411987,-0.0057737343013287,0.024421751499176]],[[-0.073258712887764,-0.0037080028560013,0.04112683236599],[-0.049895953387022,0.000971126020886,0.027016781270504],[0.06009267270565,-0.037014815956354,-0.067646205425262]],[[-0.005825653206557,0.053469620645046,0.012523264624178],[0.032817449420691,0.010318037122488,0.0049038580618799],[-0.08529132604599,0.0071386112831533,0.024540293961763]],[[-0.03136607632041,-0.035013996064663,0.046699360013008],[0.0068907267414033,0.041332732886076,-0.011462050490081],[0.006412910297513,-0.0036101273726672,0.017953494563699]],[[-0.062776066362858,0.045947287231684,-0.083806373178959],[-0.021304845809937,0.0053714839741588,0.032568797469139],[0.079147234559059,-0.025009961798787,-0.045143082737923]],[[-0.0017904770793393,-0.02639969624579,-0.0027031013742089],[-0.056026514619589,-0.015205803327262,0.010646051727235],[-0.086121059954166,0.033435434103012,-0.0040044542402029]],[[0.017917132005095,0.043628912419081,-0.0029266376513988],[0.024109605699778,0.035231672227383,0.0049211587756872],[0.055540885776281,-0.0059927767142653,0.012744781561196]],[[-0.024471215903759,0.0069222683086991,-0.00021025593741797],[0.0048215589486063,-0.029227748513222,-0.07181292027235],[0.038910340517759,0.086399123072624,-0.016308778896928]],[[0.024074878543615,0.055168353021145,0.044593006372452],[-0.051831487566233,0.021713251248002,0.019964894279838],[0.055530320852995,0.065582193434238,0.033995471894741]],[[0.03009295836091,0.033053796738386,0.031530905514956],[0.0052577061578631,0.026040500029922,-0.017587449401617],[0.025958329439163,0.050933092832565,0.020816653966904]],[[-0.011341762728989,0.0061642327345908,-0.064649239182472],[-0.0087252585217357,0.0041191382333636,-0.026073276996613],[0.018008537590504,0.0086388662457466,0.020604407414794]],[[0.01248833257705,0.056495126336813,0.030424203723669],[-0.020622417330742,-0.014203981496394,-0.028950363397598],[0.011697452515364,0.067482940852642,0.03504441678524]],[[-0.02761360257864,-0.0418158210814,-0.044471632689238],[-0.023370718583465,-0.0094695445150137,-0.056283704936504],[0.010894299484789,0.047860350459814,-0.010774159803987]],[[-0.013768915086985,-0.020621862262487,-0.033516716212034],[0.011215458624065,-0.061183024197817,-0.02028532512486],[-0.015457069501281,0.047972142696381,-0.0032923861872405]],[[0.021561868488789,0.022214727476239,0.052091419696808],[-0.025627600029111,-0.01337833236903,0.021574614569545],[0.019213397055864,-0.061691228300333,-0.062738433480263]],[[-0.0030674445442855,-0.083469279110432,0.010718433186412],[0.04243627935648,-0.023990718647838,0.042176216840744],[0.035453293472528,-0.010668382048607,-0.037695977836847]],[[0.0056239715777338,0.079502388834953,0.013290457427502],[0.054753437638283,0.0065614255145192,0.010072713717818],[-0.042490728199482,-0.062259003520012,0.038272339850664]],[[-0.0063067050650716,0.048948898911476,-0.080138027667999],[-0.0091631188988686,0.027284227311611,0.0085025578737259],[-0.033389445394278,0.017794897779822,-0.086077906191349]],[[-0.047811150550842,-0.045203134417534,0.026967661455274],[0.027842985466123,0.0020190535578877,-0.036081362515688],[0.039055120199919,0.01847330108285,0.0073669119738042]],[[-0.0082806879654527,-0.02513131685555,0.049413789063692],[0.020512094721198,-0.026725251227617,-0.070758916437626],[-0.054189879447222,0.032748676836491,-0.020565340295434]],[[-0.04393457248807,-0.052043009549379,0.022998750209808],[0.047303181141615,-0.037267602980137,-0.075568154454231],[0.022247022017837,-0.014202134683728,0.001101900357753]],[[0.063858732581139,0.0075020920485258,-0.030591666698456],[-0.0055313548073173,-0.0097526228055358,0.031332850456238],[0.034891206771135,-0.036426853388548,0.0042092553339899]],[[0.039229769259691,0.013119927607477,0.046914990991354],[-0.024868180975318,0.0091654341667891,0.017154859378934],[0.0042096246033907,0.024207890033722,0.0026903734542429]],[[-0.029672760516405,0.02886051684618,-0.03713271021843],[0.077189035713673,-0.026166535913944,0.019899753853679],[0.015980886295438,-0.055655352771282,-0.021379129961133]],[[-0.094577856361866,-0.021793816238642,-0.09938096255064],[-0.056944902986288,-0.027714496478438,0.041161559522152],[0.055037602782249,0.032831255346537,-0.0058204778470099]],[[0.079634174704552,-0.010631259530783,0.0030141384340823],[0.029122890904546,0.012861672788858,0.03576273471117],[-0.019950434565544,-0.036282349377871,0.0072160330601037]],[[-0.015450272709131,-0.018210032954812,0.038915224373341],[-0.0027322517707944,-0.064313307404518,0.016345012933016],[-0.015299883671105,0.075463242828846,0.028865348547697]],[[-0.036119788885117,0.010029828175902,0.0081923054531217],[0.0053682536818087,-0.034597590565681,-0.037783235311508],[-0.023658592253923,-0.023986730724573,-0.00042049796320498]],[[0.017100756987929,0.036291174590588,-0.010815737769008],[-0.0039600501768291,0.048268813639879,-0.036010630428791],[0.05481032282114,0.027607975527644,-0.0018259375356138]],[[0.039270732551813,-0.055615980178118,0.013910967856646],[-0.016218081116676,0.012536046095192,-0.023774348199368],[-0.0046829818747938,-0.053247883915901,0.051763523370028]],[[-0.025619119405746,-0.00442462740466,0.016143752261996],[0.057575430721045,0.027302987873554,0.021681545302272],[-0.024306805804372,0.019212646409869,0.07000970095396]],[[0.017499262467027,0.0243358630687,0.068706944584846],[-0.034247271716595,-0.0043194689787924,0.049574218690395],[-0.0073760743252933,0.0082123940810561,0.0011511230841279]],[[0.027155663818121,-0.016511412337422,-0.075255565345287],[0.037225112318993,-0.0026395458262414,-0.0080506587401032],[0.014366961084306,-0.018105864524841,-0.067881293594837]],[[-0.017620963975787,-0.032009985297918,-0.0058554201386869],[0.10148135572672,0.021576834842563,0.045678485184908],[0.063166335225105,-0.018530467525125,0.017546977847815]],[[0.018419168889523,0.020635545253754,0.10009359568357],[-0.030760701745749,0.025743899866939,-0.029564347118139],[-0.065302468836308,-0.0083215842023492,0.044828493148088]],[[-0.027866005897522,0.071300268173218,-0.00028008883236907],[0.079840295016766,0.057399034500122,0.035130776464939],[-0.04126363247633,0.041519392281771,-0.089298918843269]],[[0.0015184450894594,-0.015725513920188,0.022363444790244],[-0.027143016457558,-0.001883901655674,-0.044832479208708],[0.048348553478718,-0.01755385287106,-0.0017502896953374]],[[0.086255557835102,0.066908709704876,0.015991017222404],[-0.05730727314949,0.005461135879159,0.03709776699543],[-0.011047195643187,-0.017041062936187,-0.036330979317427]],[[0.014878711663187,-0.019187914207578,0.020076641812921],[-0.028688851743937,-0.0084129767492414,0.063163347542286],[0.035280931740999,-0.036551494151354,0.0059108235873282]],[[0.016675425693393,-0.062627218663692,-0.023216098546982],[-0.023943534120917,-0.090128093957901,0.01457357313484],[0.062908798456192,-0.10312066972256,-0.0072101741097867]],[[0.06051604822278,-0.011593115516007,0.040187612175941],[0.012982593849301,-0.0035877551417798,-0.020999928936362],[0.01888183504343,0.020498026162386,-0.021895514801145]],[[0.0057848240248859,0.0031171485316008,0.014361136592925],[-0.015905223786831,-0.063963733613491,-0.093477055430412],[0.020565040409565,-0.013809111900628,0.02528927475214]],[[-0.017313132062554,-0.0044788448140025,0.027665005996823],[0.065675787627697,0.01978662237525,0.021882407367229],[0.003689325414598,0.030709998682141,0.009216170758009]],[[0.026115775108337,-0.020316548645496,-0.049400940537453],[0.023383418098092,-0.05139384791255,-0.036212101578712],[-0.040271431207657,0.012194320559502,0.020907154306769]],[[0.021499022841454,0.0087250871583819,0.036462876945734],[-0.014204703271389,-0.077109277248383,0.096303790807724],[-0.059038795530796,0.013580685481429,-0.0052399709820747]],[[-0.013864208012819,0.029239924624562,0.044955343008041],[0.022657373920083,0.04199255630374,-0.051296442747116],[-0.021721528843045,-0.022785291075706,0.039569206535816]],[[0.061570376157761,-0.013211268000305,0.00752496952191],[-0.047590535134077,0.034792929887772,-0.037987906485796],[0.080122657120228,0.065960049629211,-0.041950147598982]],[[0.037354849278927,-0.030974444001913,0.089592888951302],[0.01836565323174,0.04719614982605,0.0077395890839398],[-0.032714556902647,-0.0044082091189921,0.013005048967898]],[[0.02962944470346,0.054966364055872,0.043693751096725],[-0.029649483039975,-0.043140284717083,-0.0036079173441976],[-0.030078779906034,0.031768348067999,0.0148567231372]],[[-0.0058156601153314,-0.021142454817891,-0.04501274228096],[0.033323038369417,-0.020127607509494,0.067738957703114],[0.04455691576004,0.022145345807076,-0.014802253805101]],[[-0.048299610614777,0.001801572390832,-0.030715951696038],[-0.008439414203167,-0.019856240600348,0.0078590698540211],[0.0060185985639691,0.02973709627986,-0.044220913201571]],[[0.025150571018457,0.019117558375001,-0.01610504090786],[-0.0086149871349335,0.024993671104312,0.034706067293882],[0.02325040474534,-0.079416915774345,0.057281628251076]],[[-0.019600657746196,-0.042856320738792,-0.046800214797258],[0.079768940806389,-0.005177287850529,0.05657123029232],[-0.01239812001586,-0.033792391419411,0.028986591845751]],[[0.0047256336547434,-0.00092631013831124,-0.013534344732761],[-0.02939079515636,0.071719601750374,-0.070772729814053],[-0.10074437409639,-0.05219491571188,-0.11239632964134]],[[-0.0041603748686612,0.0053181201219559,-0.011048947460949],[-0.019560797140002,-0.058259546756744,0.012328199110925],[0.022151546552777,-0.024856694042683,-0.0013043584767729]],[[-0.078126862645149,0.0045855343341827,-0.015982862561941],[-0.084905326366425,-0.01497239805758,0.0054503050632775],[-0.0014803041703999,-0.0043703271076083,-0.0035496351774782]],[[-0.023893369361758,0.022435110062361,0.027564210817218],[-0.019109522923827,-0.029762502759695,-0.0084460154175758],[0.017508294433355,-0.0052207880653441,0.0022764515597373]],[[-0.062588758766651,0.047489888966084,0.012887825258076],[-0.015358815900981,-0.038419391959906,-0.006223801523447],[0.033271417021751,0.01119760517031,-0.036508448421955]],[[0.010712744668126,0.012379873543978,0.04698646068573],[-0.0019300773274153,0.021044105291367,0.027771038934588],[-0.11579301208258,-0.0044136289507151,0.016531938686967]],[[0.024648198857903,0.0166543032974,-0.0075178267434239],[0.02319872379303,-0.030616462230682,0.039039451628923],[-0.037356734275818,-0.00011667070793919,-0.030804554000497]],[[-0.039429511874914,-0.0082535315304995,0.055079206824303],[-0.079435288906097,-0.010604989714921,0.043240267783403],[-0.0024415671359748,0.0093681570142508,-0.02220062725246]],[[-0.034346170723438,0.0034725687000901,0.023245088756084],[0.00043576868483797,0.0048950607888401,0.067863039672375],[-0.037271793931723,-0.012656582519412,-0.014174826443195]],[[0.054363429546356,-0.042501524090767,-0.061549477279186],[0.011675009503961,-0.075853876769543,-0.034949481487274],[-0.0097310710698366,-0.022151751443744,0.040232926607132]],[[0.027622103691101,0.037468109279871,0.0079264054074883],[0.053428016602993,-0.016401916742325,-0.02465801872313],[-0.0073778429068625,0.034170992672443,0.0072564715519547]],[[0.012293938547373,-0.0099271722137928,-0.0096168061718345],[-0.058390934020281,0.054743688553572,0.0053368131630123],[0.052189540117979,0.046938616782427,-0.045600421726704]],[[0.036980655044317,0.0057659847661853,-0.028292013332248],[0.022221874445677,0.072905659675598,0.015458447858691],[0.033239614218473,-0.0038283090107143,-0.030340125784278]],[[-0.034636676311493,0.071243822574615,0.019925516098738],[0.02253750897944,-0.023474680259824,0.010479795746505],[0.021386275067925,0.0060202116146684,-0.057874355465174]],[[-0.027290243655443,-0.0045015569776297,0.0097216442227364],[0.037133928388357,-0.038087271153927,-0.069410420954227],[-0.006739788223058,-0.041280426084995,0.042096085846424]],[[0.020796354860067,-0.033598411828279,0.019003694877028],[0.0063544237054884,0.016990587115288,0.059004534035921],[-0.011461118236184,0.026027880609035,0.016218978911638]],[[0.0066820625215769,-0.053925514221191,0.01528559718281],[0.0029726366046816,0.064419128000736,-0.0054702889174223],[-0.030503865331411,-0.10220416635275,-0.035944741219282]],[[-0.14992520213127,0.033421784639359,-0.026369100436568],[-0.02647846378386,-0.10661565512419,0.048734229058027],[0.0059635872021317,0.057254571467638,0.0035993936471641]],[[0.04498228430748,-0.029131190851331,-0.023861587047577],[0.028541397303343,0.0011230235686526,-0.013935592956841],[0.030889078974724,0.073857396841049,0.038757104426622]],[[-0.054297372698784,-0.0070359143428504,-0.030530996620655],[-0.030789323151112,0.031068131327629,-0.026416938751936],[0.046542253345251,-0.065375424921513,0.016816671937704]],[[-0.050127349793911,0.047892943024635,-0.028529150411487],[-0.0032565155997872,0.0021789590828121,-0.0056283776648343],[0.0080841695889831,-0.070337355136871,0.0097501669079065]],[[-0.042006202042103,-0.028720270842314,-0.033992446959019],[-0.0048644323833287,-0.072331719100475,-0.033969961106777],[-0.061449557542801,-0.020385967567563,-0.043651610612869]],[[-0.01487825345248,-0.023178482428193,-0.038375623524189],[-0.013179945759475,-0.0021760065574199,0.028658231720328],[0.023068897426128,0.01032823882997,-0.039918452501297]],[[0.0069347154349089,0.044536095112562,-0.030396834015846],[0.01832552999258,0.058974768966436,0.046326339244843],[0.020466424524784,0.0085686845704913,0.035915341228247]],[[0.05217432230711,-0.0088542941957712,0.032458934932947],[-0.042046613991261,-0.026082348078489,0.02454661205411],[-0.045114811509848,-0.051194377243519,-0.059383522719145]],[[-0.0035713631659746,-0.092889837920666,0.062206905335188],[0.040566265583038,-0.058403108268976,-0.056047517806292],[-0.039373863488436,-0.040375608950853,0.0089812651276588]],[[0.054587371647358,0.0071637453511357,0.02360301092267],[-0.0145293623209,-0.033734273165464,-0.029686730355024],[-0.038033567368984,-0.025836676359177,-0.046076316386461]],[[-0.004008618183434,-0.045819640159607,-0.063001275062561],[-0.0020567798055708,0.012016110122204,0.00040894822450355],[0.0086112851276994,-0.033382795751095,0.042272716760635]],[[-0.022472025826573,0.004381475970149,-0.0045446008443832],[0.055789943784475,-0.073528274893761,0.06189901381731],[-0.048519600182772,0.072356358170509,0.0043423711322248]],[[-0.035241290926933,0.044839072972536,0.013753631152213],[-0.023507693782449,-0.028555948287249,-0.0040241959504783],[0.005950341001153,-0.004404915496707,0.0043601035140455]],[[-0.0030400694813579,-0.029137481004,0.0084839267656207],[-0.012012365274131,-0.023035626858473,0.030860468745232],[0.04847875982523,0.0003092200786341,0.0027062410954386]],[[-0.030909333378077,0.017977857962251,0.057610135525465],[0.034919813275337,-0.020013941451907,-0.050418272614479],[0.040479488670826,-0.0045144101604819,0.027937553822994]],[[-0.030057555064559,-0.054303701967001,-0.018718384206295],[-0.012897506356239,0.056717298924923,0.00082757888594642],[-0.072984002530575,0.077754974365234,-0.0034874088596553]],[[0.075713060796261,0.027187613770366,0.075697883963585],[0.047789383679628,0.0081537896767259,-0.0015324411215261],[0.010101935826242,-0.015909036621451,0.061899270862341]],[[0.059634897857904,-0.080627851188183,-0.0031800977885723],[-0.033720761537552,0.041424382477999,-0.017810942605138],[0.018371107056737,-0.047022607177496,0.042443264275789]],[[0.015140384435654,0.051053866744041,0.042366348206997],[0.051652807742357,0.043393943458796,-0.03919168561697],[-0.0039344881661236,-0.023211719468236,0.015019954182208]],[[-0.0099665569141507,0.0099276658147573,-0.013393758796155],[0.015741817653179,0.033755157142878,-0.017911460250616],[0.043721806257963,0.0023963691201061,-0.00046809474588372]],[[-0.046824917197227,0.014533624053001,0.079199872910976],[-0.022124180570245,-0.047584842890501,0.065304532647133],[0.019720202311873,-0.016906285658479,0.046384241431952]],[[0.020039841532707,0.02815836854279,0.012777714990079],[-0.015702525153756,0.021741786971688,0.069725036621094],[-0.020192410796881,-0.033102579414845,-0.0088592628017068]],[[0.033646494150162,-0.035696659237146,0.015886582434177],[-0.090035393834114,-0.0099278623238206,-0.0091666653752327],[-0.0023687609937042,-0.034231256693602,0.019846806302667]],[[-0.074187964200974,-0.079491101205349,0.012571425177157],[0.046105332672596,-0.067543894052505,-0.0050743333995342],[0.05159729346633,-0.030165333300829,-0.018639171496034]],[[-0.050737176090479,0.011799203231931,-0.050541669130325],[-0.089907266199589,0.036177173256874,0.012930028140545],[0.025089543312788,-0.016645230352879,0.0040938993915915]],[[0.061612837016582,-0.0012244414538145,0.025472125038505],[-0.067457608878613,0.0035994662903249,0.030176050961018],[0.024089425802231,-0.034262020140886,-0.04001572728157]],[[-0.036594603210688,-0.030729077756405,0.0023063118569553],[-0.059670384973288,0.03454215452075,-0.0048151314258575],[-0.019762577489018,-0.020264204591513,-0.037217661738396]],[[-0.038419146090746,0.032706700265408,0.015757700428367],[0.036370374262333,0.027824655175209,0.0027239623013884],[-0.027301678434014,0.019811132922769,0.020608171820641]],[[0.022955559194088,-0.021612169221044,0.008431239053607],[-0.0043382933363318,0.015020336955786,-0.0064110378734767],[-0.035222928971052,0.053282342851162,0.0041671898216009]],[[0.028135625645518,0.02523946762085,0.012764335609972],[-0.016581105068326,-0.068736881017685,-0.013373523950577],[-0.027451371774077,-0.042038526386023,-0.0239840131253]],[[0.014715441502631,-0.086884342133999,-0.010860088281333],[0.011323648504913,0.038745515048504,0.032378032803535],[0.038039427250624,-0.0189229529351,0.048258673399687]],[[0.035066295415163,0.034500494599342,-0.0056194453500211],[-0.0028797797858715,0.0045676929876208,0.033678159117699],[-0.0012258448405191,0.025731956586242,0.025171872228384]],[[-0.059123069047928,0.048514612019062,0.048174720257521],[0.032720480114222,0.019655730575323,0.033743593841791],[-0.013812806457281,-0.023490950465202,0.014426482841372]],[[-0.00046139163896441,0.011397639289498,0.0049541261978447],[-0.017466701567173,0.0048896027728915,0.049142517149448],[0.013137064874172,0.012863310053945,0.04818594828248]],[[0.0024613090790808,-0.01136967446655,0.028315028175712],[0.023482043296099,0.0096593834459782,0.014980905689299],[-0.016434675082564,-0.0083356155082583,0.020491659641266]],[[-0.030987326055765,0.032026704400778,0.074253641068935],[-0.031104542315006,-0.023874146863818,0.06247103959322],[-0.023131189867854,0.0025038062594831,-0.0096433199942112]],[[-0.059862781316042,-0.060169752687216,-0.12504312396049],[-0.0041683595627546,-0.060877781361341,-0.035145480185747],[-0.065476275980473,-0.055993434041739,-0.14718002080917]],[[0.040022473782301,-0.060548342764378,0.045086916536093],[-0.033976145088673,-0.020251808688045,0.023114794865251],[-0.038848146796227,-0.017024055123329,0.031422175467014]],[[-0.027920622378588,-0.024518609046936,-0.0040329727344215],[0.0070750247687101,-0.074055381119251,-0.010951709933579],[0.0084679266437888,-0.0041780034080148,0.059978771954775]],[[-0.015564586035907,-0.023062175139785,-0.013081073760986],[0.070881403982639,-0.038617186248302,0.050118025392294],[0.061956465244293,0.037790816277266,-0.024431250989437]],[[0.038395520299673,0.047922216355801,0.012906611897051],[1.1715083019226e-05,0.042431231588125,0.0069862548261881],[-0.01137482188642,-0.059847790747881,0.076806671917439]],[[-0.055276624858379,-0.0085650617256761,-0.019014062359929],[0.016293298453093,-0.051989085972309,0.01042044442147],[0.03061431273818,-0.028233835473657,0.01272295974195]],[[0.052953712642193,0.0040655564516783,-0.0010453638387844],[-0.051095616072416,0.074022434651852,-0.022676700726151],[0.014584272168577,0.023780304938555,0.044378887861967]],[[0.03047170676291,0.033213187009096,-0.0035200412385166],[0.036710057407618,-0.065607845783234,-0.043442707508802],[0.064274996519089,0.029277300462127,-0.012412073090672]],[[-0.012134302407503,-0.00019223104754928,-0.046244356781244],[0.061727181077003,0.034717578440905,-0.028154795989394],[0.019083572551608,-0.0070346663706005,-0.013077663257718]],[[-0.046559270471334,0.090816929936409,-0.015108594670892],[-0.018231941387057,-0.03938864544034,0.04402381926775],[-0.012956532649696,-0.033981069922447,0.013594512827694]],[[-0.00076904619345441,0.0044537605717778,-0.051445588469505],[-0.022466717287898,-0.032483484596014,0.0028766260948032],[-0.00019207768491469,-0.017039820551872,-0.019346751272678]],[[0.011258230544627,-0.071277007460594,0.063418477773666],[0.049962721765041,0.10930705815554,-0.065318122506142],[0.02674057148397,0.02063750103116,-0.013168340548873]],[[-0.0062898192554712,0.019840098917484,0.037282403558493],[0.0057956548407674,-0.0066305114887655,-0.058088231831789],[0.012642783112824,0.032766222953796,-0.030605537816882]],[[0.056048974394798,0.0097323628142476,-0.021241899579763],[0.0028723478317261,0.050344541668892,-0.014534915797412],[-0.0097390115261078,0.012924171052873,0.041391845792532]],[[0.02634122595191,-0.098046228289604,-0.0047116987407207],[0.00011731322592823,-0.019693519920111,0.056554056704044],[0.017432989552617,-0.012754513882101,-0.081705078482628]],[[-0.036976717412472,0.016595877707005,-0.022651946172118],[-0.03817418590188,-0.016262670978904,-0.017725652083755],[0.054895829409361,-0.0037171717267483,0.0040205013938248]],[[0.046412937343121,0.0025047075469047,-0.017707545310259],[-0.040116410702467,0.024640521034598,-0.016962885856628],[-0.024211008101702,0.029900280758739,-0.038087341934443]],[[-0.0101064061746,0.11866094917059,0.026888843625784],[-0.05604213103652,-0.021685987710953,0.044932313263416],[-0.057164125144482,0.04392833262682,-0.063959166407585]]],[[[-0.036685701459646,-0.093380086123943,-0.12891773879528],[0.0033586749341339,-0.023260416463017,-0.12382412701845],[0.14109070599079,0.051761239767075,0.082663558423519]],[[0.18587586283684,-0.016958875581622,0.010880364105105],[0.034995302557945,0.044228706508875,-0.12591169774532],[-0.15651679039001,0.10065364092588,0.18447422981262]],[[0.0043206228874624,0.093119248747826,0.20288591086864],[0.14319618046284,0.089538365602493,-0.040875378996134],[0.068180583417416,-0.0019676631782204,-0.053073309361935]],[[-0.026784809306264,-0.049607146531343,-0.056601896882057],[-0.054082315415144,-0.0011401554802433,0.028184156864882],[0.020163489505649,-0.022597217932343,0.017894417047501]],[[-0.02669333666563,-0.062444604933262,-0.029264450073242],[-0.12238229066133,-0.028016161173582,0.073813311755657],[0.090458646416664,0.064563237130642,0.075357340276241]],[[0.043991889804602,-0.067015066742897,-0.023071700707078],[-0.034584280103445,-0.035467311739922,0.024763753637671],[0.039384305477142,0.061318952590227,-0.023858156055212]],[[0.018939547240734,-0.085571579635143,0.003023000434041],[0.18574106693268,0.018101679161191,-0.070322699844837],[-0.079888381063938,0.038985431194305,0.12196412682533]],[[-0.049837470054626,-0.033845063298941,0.20946118235588],[-0.13203191757202,0.017976120114326,-0.12085910141468],[-0.13142257928848,0.11255392432213,-0.011014758609235]],[[0.035767905414104,-0.031924426555634,0.0255131945014],[-0.082317136228085,0.13907296955585,0.049132466316223],[-0.050881743431091,-0.070372365415096,0.023544240742922]],[[0.099794432520866,-0.075957991182804,-0.023442147299647],[0.025640035048127,-0.039928700774908,-0.087661556899548],[0.022149883210659,-0.019340636208653,-0.022610360756516]],[[-0.12792517244816,-0.014549505896866,-0.011575015261769],[-0.013797088526189,-0.024363957345486,-0.087595663964748],[-0.0093716168776155,0.055185947567225,-0.024175142869353]],[[-0.035175509750843,-0.024378646165133,-0.020466044545174],[0.010292042978108,-0.13322108983994,-0.10911787301302],[0.084328547120094,0.0073411865159869,0.033757530152798]],[[-0.035035610198975,-0.043581783771515,-0.031600303947926],[-0.0069058807566762,0.011008089408278,-0.1138444468379],[0.022134803235531,-0.0594785772264,-0.023357626050711]],[[-0.017549203708768,0.012265022844076,0.034700222313404],[0.042631283402443,-0.018317703157663,0.024755032733083],[-0.019619550555944,-0.077000170946121,0.23462536931038]],[[-0.06097249686718,0.1531116515398,0.028982542455196],[0.052842665463686,-0.011775483377278,-0.10998084396124],[-0.067575693130493,0.0014998170081526,-0.053928058594465]],[[0.0041059316135943,0.015524999238551,-0.15166670084],[0.0041991956532001,0.085695005953312,-0.10657675564289],[0.063922040164471,-0.074424706399441,0.00096028798725456]],[[-0.085712857544422,0.046818323433399,-0.073734417557716],[-0.043131686747074,0.015315508469939,-0.0037524388171732],[-0.059945151209831,-0.054487686604261,0.048821713775396]],[[-0.062536545097828,0.11787810921669,0.045098453760147],[0.12606917321682,-0.11090387403965,0.065050087869167],[0.20214737951756,0.11634000390768,-0.030724728479981]],[[0.1434917896986,-0.066865980625153,0.10399777442217],[-0.012973602861166,-0.068834647536278,0.12659376859665],[0.059883140027523,-0.038193218410015,-0.0082858810201287]],[[0.011136161163449,-0.018926789984107,-0.048211243003607],[-0.15834361314774,-0.020230451598763,-0.10200400650501],[-0.056438073515892,-0.018843676894903,0.053408347070217]],[[-0.061662290245295,-0.079796835780144,0.0093521662056446],[-0.20484012365341,-0.086346298456192,0.027483858168125],[0.025945853441954,-0.07161932438612,-0.13193167746067]],[[-0.02705449424684,0.025921009480953,0.093695871531963],[0.081349492073059,-0.0060004624538124,-0.061788696795702],[-0.049929104745388,-0.036269690841436,0.08905977755785]],[[0.041574265807867,-0.062302943319082,0.050827506929636],[0.12776623666286,0.079481035470963,0.037868704646826],[0.071250297129154,0.15057575702667,0.15094688534737]],[[-0.086329355835915,-0.048849638551474,-0.069418802857399],[-0.097558841109276,-0.077916607260704,-0.14616478979588],[-0.081238090991974,-0.056010387837887,0.013664590194821]],[[-0.026535654440522,-0.0087929796427488,-0.028679998591542],[-0.099161513149738,0.094920642673969,0.020321803167462],[0.077974326908588,0.071024261415005,0.062111459672451]],[[0.026300851255655,-0.023963877931237,0.029379520565271],[-0.046776913106441,-0.0089844036847353,-0.15033875405788],[-0.050101641565561,-0.019710652530193,-0.015646871179342]],[[-0.070765718817711,-0.028668599203229,0.068270228803158],[0.095365740358829,-0.027887286618352,0.026928141713142],[0.046623427420855,0.08084599673748,0.10710849612951]],[[0.12232233583927,0.052256647497416,-0.076633311808109],[0.16215334832668,0.020587887614965,0.08555056899786],[0.0090594263747334,-0.047288458794355,-0.10842663049698]],[[-0.055194996297359,-0.034466698765755,0.020747544243932],[0.13506269454956,-0.03720324113965,-0.086478464305401],[0.1201778948307,0.052028838545084,-0.11875532567501]],[[-0.010496894828975,0.0021394349168986,-0.087904788553715],[-0.024865165352821,-0.029420336708426,-0.073489725589752],[-0.059006109833717,0.016914859414101,0.021767368540168]],[[-0.11646222323179,-0.051871459931135,-0.0049202917143703],[-0.020933602005243,-0.044453397393227,-0.14811298251152],[0.038404569029808,-0.074310399591923,0.013457616791129]],[[-0.036852270364761,0.047671999782324,0.081763572990894],[-0.093270890414715,-0.11605910211802,0.18576236069202],[0.027945149689913,-0.026369186118245,-0.10231872648001]],[[0.087989084422588,0.022728785872459,0.073042668402195],[0.050805665552616,0.078518956899643,0.06471610814333],[0.26010408997536,-0.01161751896143,0.0075777904130518]],[[-0.18377240002155,-0.022804953157902,-0.058458413928747],[-0.018839422613382,0.032368768006563,-0.030676880851388],[-0.10575220733881,0.078804582357407,0.057567562907934]],[[0.056299354881048,-0.10935243964195,-0.025028385221958],[-0.049266871064901,0.025215597823262,-0.21610414981842],[0.073909439146519,-0.19643096625805,-0.056148566305637]],[[0.079035870730877,0.041026793420315,-0.025883989408612],[-0.042378768324852,-0.021768176928163,-0.052548337727785],[0.034414526075125,0.007464709226042,0.080418854951859]],[[0.027632921934128,0.072646111249924,0.083112612366676],[-0.25492402911186,0.056807484477758,-0.00089527940144762],[0.10170331597328,0.074582122266293,0.10305541008711]],[[-0.074176385998726,0.0046498156152666,-0.10337193310261],[-0.22226963937283,-0.0018538244767115,-0.10303885489702],[0.0063203405588865,0.044053364545107,-0.10781851410866]],[[0.099092431366444,0.0026547312736511,-0.19441749155521],[0.059135500341654,0.080372519791126,-0.032708957791328],[-0.10699321329594,0.029948277398944,-0.12370349466801]],[[-0.1690977960825,-0.12667346000671,-0.098322823643684],[-0.1448310315609,-0.06334026902914,-0.041294876486063],[-0.0056832525879145,-0.06998473405838,-0.15734019875526]],[[0.11116804182529,-0.059791691601276,0.10386870801449],[-0.0022700710687786,-0.10804423689842,-0.0006148818647489],[0.1243689134717,0.11489727348089,-0.1866413205862]],[[0.089794665575027,0.051207363605499,0.077748164534569],[0.037658702582121,0.020290832966566,-0.025452632457018],[0.048695430159569,0.14301306009293,0.1097866743803]],[[-0.060975335538387,-0.014347762800753,-0.090758092701435],[-0.013941280543804,0.011274528689682,0.0090460767969489],[-0.10664735734463,-0.083299688994884,0.016204543411732]],[[0.011747095733881,-0.10423295944929,-0.082043275237083],[-0.12306468188763,-0.12690787017345,0.063177995383739],[-0.015102168545127,0.025355748832226,-0.060517285019159]],[[-0.28592255711555,-0.13265062868595,-0.18925474584103],[-0.032183669507504,-0.08702015131712,0.044644266366959],[0.017019640654325,0.024482730776072,0.027805760502815]],[[-0.078374221920967,-0.064306847751141,-0.097494162619114],[0.029819142073393,0.037416715174913,0.0086463242769241],[0.016845164820552,-0.097783334553242,0.05973307788372]],[[-0.028966963291168,-0.051258374005556,0.0069149555638433],[-0.030320949852467,0.0051311394199729,0.025507451966405],[-0.038916178047657,0.0082331858575344,-0.050618283450603]],[[-0.032006490975618,0.039469007402658,-0.068854883313179],[0.20491698384285,-0.17549483478069,-0.12133470922709],[-0.078911282122135,-0.0083142323419452,0.023682570084929]],[[0.031319614499807,0.11997303366661,-0.090106830000877],[-0.015353146009147,0.063314974308014,-0.072356477379799],[-0.0090199178084731,0.091578409075737,-0.018799535930157]],[[-0.14041219651699,-0.027726555243134,0.0074683260172606],[-0.034338880330324,-0.00094928848557174,0.021076234057546],[-0.038707669824362,0.021996693685651,0.0070419455878437]],[[-0.089344955980778,-0.11596418917179,-0.095519438385963],[0.010770953260362,-0.087702892720699,-0.033644393086433],[-0.062045209109783,-0.18630020320415,-0.0073097548447549]],[[0.032253783196211,0.021196139976382,0.022610554471612],[0.080677039921284,0.020858209580183,0.053217262029648],[0.031700421124697,-0.085480257868767,-0.013103095814586]],[[0.032540339976549,-0.028934912756085,-0.037465374916792],[-0.059643644839525,-0.13005854189396,-0.076864518225193],[0.011847310699522,0.060445081442595,-0.018243113532662]],[[-0.023830361664295,0.017479833215475,0.016304617747664],[0.090498760342598,0.0038674173410982,-0.045520693063736],[0.0064694932661951,-0.12568221986294,-0.1513856947422]],[[0.023051405325532,0.0031217790674418,0.097993984818459],[-0.027083242312074,0.062324535101652,0.012301662005484],[0.15796168148518,-0.027824504300952,-0.0091421660035849]],[[-0.10866229236126,0.10084418952465,-0.11777985841036],[0.073970012366772,0.0041176602244377,-0.04632580652833],[-0.027751849964261,0.17999158799648,-0.034076705574989]],[[0.17247334122658,-0.039062470197678,-0.018296079710126],[0.067720130085945,-0.063340149819851,-0.0083761168643832],[0.033791765570641,-0.0029356507584453,-0.040420483797789]],[[0.064653016626835,0.041333772242069,-0.13681855797768],[-0.10431727766991,-0.1190973892808,-0.11154392361641],[-0.21474686264992,-0.051316320896149,-0.053936116397381]],[[-0.072863213717937,-0.038551446050406,-0.097713999450207],[-0.080673955380917,-0.061082378029823,-0.0043295947834849],[0.11511810868979,-0.046870328485966,-0.08296550065279]],[[0.049727652221918,0.1138930618763,0.088554501533508],[0.0007279755664058,-0.0050607086159289,0.10702101141214],[0.033794529736042,0.016826247796416,-0.091534428298473]],[[-0.059039678424597,0.016515430063009,-0.12040705233812],[-0.036763153970242,0.039673734456301,-0.034965887665749],[0.095366261899471,0.00083861977327615,0.0060740900225937]],[[-0.079160779714584,-0.081453509628773,0.019863791763783],[0.012473993003368,0.031917829066515,0.023780751973391],[-0.054552841931581,-0.054774526506662,-0.0069935154169798]],[[-0.050697196274996,0.07642612606287,0.077429637312889],[-0.10932234674692,-0.048499975353479,-0.065769255161285],[0.022779809311032,0.037520244717598,0.0063137798570096]],[[0.061960976570845,0.006037219427526,-0.039859116077423],[-0.034564804285765,-0.029354710131884,0.073773913085461],[-0.026202397421002,-0.012281202711165,0.10029618442059]],[[-0.033845879137516,-0.016382938250899,0.007787236943841],[-0.043937411159277,-0.012875307351351,-0.020593177527189],[-0.029571359977126,-0.099568098783493,-0.083736851811409]],[[0.056823823601007,0.13803462684155,-0.012869804166257],[0.079988472163677,-0.17865993082523,0.039833500981331],[-0.10328681021929,-0.090201072394848,0.061308603733778]],[[-0.10797925293446,0.1039327532053,0.012517138384283],[0.14665116369724,-0.07809616625309,-0.14533333480358],[0.030769612640142,-0.046362489461899,-0.037425938993692]],[[-0.025264352560043,-0.060739636421204,-0.005412470549345],[-0.082979321479797,-0.017851209267974,-0.019461734220386],[-0.044842761009932,0.034149870276451,0.045742563903332]],[[0.07612581551075,0.08121719956398,-0.085588961839676],[-0.017670020461082,-0.058846227824688,0.097738705575466],[-0.037211805582047,0.0017868349095806,-0.029730694368482]],[[0.1409023553133,0.0028410556260496,-0.1225012242794],[0.030028888955712,-0.091987475752831,-0.037641048431396],[0.020584834739566,-0.14064674079418,-0.022291649132967]],[[-0.022750632837415,0.035937380045652,0.081523634493351],[-0.31514385342598,-0.12583386898041,-0.16043123602867],[0.05439330637455,-0.18668948113918,-0.16746307909489]],[[-0.11304011195898,-0.10220196098089,-0.044401232153177],[-0.051860678941011,0.024964703246951,-0.048853851854801],[0.098009124398232,-0.012667908333242,0.0080205565318465]],[[0.056511208415031,-0.037764806300402,0.010241280309856],[-0.079682871699333,-0.0081814061850309,-0.065661750733852],[-0.05517952144146,-0.03316643461585,0.070653036236763]],[[-0.11827677488327,0.006411811336875,-0.08386555314064],[-0.028956895694137,0.080713011324406,0.043140094727278],[-0.053317073732615,-0.083519451320171,0.044727079570293]],[[-0.046068198978901,0.074374832212925,-0.10810534656048],[-0.065130122005939,-0.0090522235259414,-0.11327577382326],[-0.06749289482832,-0.092818304896355,0.0094749936833978]],[[-0.031610023230314,0.056598499417305,-0.027590366080403],[-0.040842138230801,0.099613174796104,-0.095056183636189],[-0.030748097226024,0.0088235205039382,-0.14585180580616]],[[-0.008092800155282,-0.17549504339695,-0.122154250741],[0.095713399350643,-0.038520891219378,0.039273094385862],[-0.044310040771961,-0.071615405380726,-0.057016685605049]],[[-0.050589621067047,-0.011087303981185,-0.052788104861975],[-0.025397529825568,-0.055096969008446,0.0087531376630068],[0.043556533753872,-0.0077994805760682,0.066187165677547]],[[0.009688881225884,0.026227284222841,0.027687642723322],[0.052946880459785,0.13093835115433,-0.0029154722578824],[0.013622239232063,0.0090982327237725,-0.054721027612686]],[[-0.17806036770344,-0.0091961631551385,-0.046429648995399],[0.012881391681731,-0.019226087257266,-0.01947470381856],[-0.0033349387813359,-0.12598173320293,-0.084044992923737]],[[0.040343482047319,-0.098999112844467,-0.015736758708954],[-0.0089854663237929,-0.21379202604294,0.0063120760023594],[0.0055648637935519,-0.054814741015434,0.024326683953404]],[[0.0017881491221488,-0.10622017085552,0.075959384441376],[-0.036968983709812,-0.08535074442625,-0.088920071721077],[-0.020139828324318,-0.031204411759973,0.22275651991367]],[[-0.02319055236876,-0.10409858077765,-0.0029239587020129],[0.031550422310829,-0.054435562342405,0.15126124024391],[0.011166031472385,-0.078253351151943,0.10117972642183]],[[-0.17159329354763,-0.12962606549263,-0.017905615270138],[-0.010390828363597,0.017212141305208,0.00036921701394022],[0.052153412252665,0.016280544921756,0.043999016284943]],[[0.025607148185372,0.05611352995038,0.0034816386178136],[0.01854676194489,0.079312466084957,0.066324926912785],[0.09459562599659,-0.1115964949131,0.03172318264842]],[[-0.0083365365862846,-0.035014152526855,-0.03936817497015],[0.010228624567389,-0.088940866291523,0.15126278996468],[0.018418239429593,-0.0686189904809,-0.067511849105358]],[[-0.11507868021727,-0.12348221987486,-0.048107873648405],[0.11598126590252,0.029414316639304,0.034684527665377],[0.18888038396835,0.085468575358391,0.12860400974751]],[[0.077470399439335,0.15141256153584,-0.023020938038826],[0.089190974831581,0.12005840986967,-0.15755289793015],[0.073893837630749,-0.035030424594879,-0.046326745301485]],[[-0.032691340893507,-0.043898314237595,0.13106371462345],[0.23975411057472,0.02289566770196,-0.042590655386448],[0.060871880501509,-0.16538500785828,0.13610441982746]],[[-0.071173496544361,-0.021009175106883,0.066494531929493],[0.0016154082259163,-0.099501803517342,-0.044081065803766],[0.058900903910398,0.19005489349365,0.13323938846588]],[[-0.070499390363693,-0.021859969943762,0.032254353165627],[-0.10057897120714,-0.041473083198071,0.21478505432606],[-0.12352821975946,0.16855448484421,0.23333147168159]],[[0.079279020428658,0.049557730555534,-0.056805364787579],[0.13014568388462,-0.017395939677954,-0.050732579082251],[0.057795096188784,-0.042255729436874,-0.10529022663832]],[[-0.031155006960034,0.0035111114848405,-0.037256218492985],[0.11467745900154,-0.045511528849602,0.012726034037769],[0.095993742346764,0.048716515302658,-0.0090041421353817]],[[-0.16563960909843,0.02078877389431,-0.013164579868317],[0.020644688978791,0.009638256393373,-0.030817797407508],[-0.046395864337683,-0.11778222769499,0.030850408598781]],[[0.021297601982951,-0.033187318593264,0.043335687369108],[-0.00054535927483812,0.0008018035441637,-0.064864195883274],[0.071551702916622,-0.066400997340679,-0.021705120801926]],[[0.024990554898977,-0.0099005224183202,0.18678265810013],[-0.039875436574221,-0.0060374946333468,-0.10865399241447],[0.097844958305359,-0.018138159066439,0.0029993599746376]],[[-0.013143216259778,0.026939205825329,-0.12580391764641],[-0.048541411757469,0.037141244858503,0.11452358961105],[0.089997529983521,-0.036551363766193,-0.091917671263218]],[[0.14367605745792,0.11000769585371,0.028944218531251],[0.015248832292855,0.053774476051331,-0.048405721783638],[0.032761868089437,0.022033795714378,0.13531011343002]],[[0.056836605072021,0.012885793112218,-0.033878780901432],[-0.030561190098524,0.043202802538872,0.026834713295102],[0.12078589200974,0.066392906010151,0.19266065955162]],[[0.14726603031158,0.011238526552916,-0.021789453923702],[-0.2009659409523,-0.07341130822897,0.033631276339293],[0.084905065596104,0.035750523209572,0.17664377391338]],[[-0.078383006155491,-0.026706743985415,0.046552859246731],[-0.1183946877718,-0.081263996660709,-0.029655199497938],[0.017889088019729,-0.022748973220587,0.081413820385933]],[[0.040514048188925,0.12403508275747,0.19257770478725],[-0.08462581038475,0.081001117825508,-0.040178935974836],[0.19829873740673,0.16183958947659,0.15951406955719]],[[-0.071134313941002,-0.036792956292629,-0.026831859722733],[-0.06319971382618,-0.046751715242863,0.043348833918571],[-0.062155928462744,-0.077740557491779,0.031983595341444]],[[0.066610358655453,-0.03021857701242,-0.068247616291046],[0.042021997272968,0.14943379163742,0.10056519508362],[-0.16263265907764,0.012767042033374,-0.031256139278412]],[[-0.21600842475891,-0.072003230452538,0.071491412818432],[-0.13249671459198,-0.06474856287241,-0.056304309517145],[-0.034548718482256,-0.088579699397087,0.039125606417656]],[[0.050961900502443,-0.022591177374125,-0.011064733378589],[-0.058696873486042,-0.059030741453171,0.038070749491453],[-0.032732527703047,0.00015764763520565,0.010093620046973]],[[0.0034441414754838,-0.049883991479874,0.014770613051951],[-0.091489858925343,-0.011021417565644,-0.084299065172672],[-0.024950888007879,0.017488412559032,-0.099793016910553]],[[0.13266718387604,0.0031294412910938,-0.073566451668739],[-0.067261554300785,-0.089547470211983,0.082341909408569],[-0.045122519135475,-0.021583866328001,-0.10045566409826]],[[-0.040516313165426,-0.0060194847173989,0.015020292252302],[-0.050619650632143,0.14270363748074,-0.0056623197160661],[0.12441899627447,0.1174529120326,-0.065966308116913]],[[0.040041755884886,-0.011596451513469,-0.16295462846756],[0.076505765318871,0.037013698369265,0.047335602343082],[0.071372427046299,0.069112606346607,-0.043072216212749]],[[-0.062787212431431,0.0030650445260108,-0.0065838377922773],[-0.033846043050289,-0.11006473749876,0.010294679552317],[0.074232690036297,-0.050067767500877,0.0022697909735143]],[[-0.046325620263815,0.022282706573606,-0.099211648106575],[0.0072847572155297,-0.027270957827568,-0.021790759637952],[0.052911460399628,0.13647918403149,0.00079062447184697]],[[0.22702230513096,-0.0020993368234485,-0.11550357192755],[0.084192268550396,0.013717716559768,0.04804403334856],[0.051894992589951,0.11507875472307,-0.04077447578311]],[[-0.092710189521313,-0.0078591564670205,-0.14985539019108],[0.1134784668684,-0.010358467698097,-0.051222559064627],[-0.023289300501347,-0.067583099007607,-0.042874567210674]],[[0.021614246070385,-0.012895487248898,0.008328627794981],[0.13101187348366,0.029820678755641,0.086436033248901],[0.013831445947289,0.0197479929775,0.079973638057709]],[[-0.0028992341831326,-0.014967511408031,-0.059322822839022],[0.045541230589151,-0.30675095319748,-0.0410599373281],[0.012411015108228,-0.051651444286108,-0.063477851450443]],[[-0.093750298023224,-0.04976113140583,0.12484530359507],[0.01768190599978,-0.18437673151493,-0.048038497567177],[0.182327657938,0.084890089929104,-0.081542074680328]],[[0.081091471016407,0.063896186649799,-0.05102427303791],[-0.028405437245965,-0.02123055793345,0.010880152694881],[0.037070374935865,-0.047938473522663,-0.024862287566066]],[[-0.0077536865137517,-0.087881967425346,-0.052096702158451],[-0.10451224446297,-0.040244780480862,-0.0048928819596767],[0.18621258437634,0.047943171113729,0.075579971075058]],[[0.073718577623367,0.04289722815156,0.047469362616539],[0.07195557653904,0.11055780947208,0.093216069042683],[0.023915795609355,-0.10313984751701,-0.13035251200199]],[[0.072311475872993,0.025075880810618,0.090430252254009],[-0.10859589278698,-0.06396197527647,-0.043813321739435],[0.033201139420271,0.077623806893826,0.0099278911948204]],[[-0.0070603373460472,0.011423771269619,0.14875696599483],[0.022588096559048,0.03057680465281,0.077571392059326],[0.026795089244843,0.02618146315217,-0.072052545845509]],[[-0.0052358764223754,-0.1705064624548,-0.15022569894791],[-0.17465651035309,0.038860026746988,0.0088954083621502],[-0.061086274683475,0.023804772645235,-0.13687001168728]],[[-0.073161318898201,0.045429553836584,-0.0062796012498438],[0.01180870551616,0.084911420941353,-0.13852880895138],[0.057648751884699,0.072681002318859,-0.046384498476982]],[[0.026108166202903,0.14602756500244,0.1007466390729],[0.13018351793289,0.15435756742954,0.10892909020185],[0.18219664692879,0.034004736691713,0.011318858712912]],[[-0.088664174079895,-0.12838992476463,-0.068555295467377],[-0.051288519054651,-0.061575617641211,0.038231402635574],[-0.026356615126133,0.15164233744144,0.066261455416679]],[[0.041636865586042,-0.0033067790791392,0.083174876868725],[-0.1647674292326,0.020467210561037,-0.022148475050926],[-0.034590557217598,-0.078056700527668,-0.1070763617754]],[[-0.18208834528923,-0.046955905854702,-0.15591666102409],[-0.15311181545258,0.004219176247716,0.019349036738276],[-0.10095544159412,0.013093180954456,0.10412143170834]]],[[[-0.049110602587461,0.04320428147912,0.0088166976347566],[-0.028002787381411,0.039396747946739,0.019535453990102],[0.055781103670597,0.10919815301895,-0.024810411036015]],[[0.017733052372932,0.026503641158342,-0.039970114827156],[-0.019930550828576,-0.016610980033875,-0.045313637703657],[0.0064161135815084,-0.0063794045709074,0.0074242237024009]],[[0.016504799947143,0.017211530357599,-0.0064281583763659],[-0.0079255076125264,0.0071996748447418,-0.036969117820263],[-0.020989885553718,0.066715352237225,-0.031109860166907]],[[0.038439102470875,-0.015746630728245,-0.006783923599869],[0.029649967327714,-0.010891994461417,-0.031781803816557],[0.092585124075413,-0.013098791241646,0.021391877904534]],[[0.037878908216953,-0.049838125705719,-0.028180696070194],[0.0054964912123978,-0.026413876563311,0.029703553766012],[0.055908534675837,-0.0073008961044252,-0.0092760985717177]],[[0.04433187097311,0.05534228682518,0.036270529031754],[-0.051087979227304,-0.047230340540409,-0.024661436676979],[-0.015801956877112,-0.0089442795142531,-0.01043183170259]],[[0.0058715869672596,0.02150378935039,-0.014159788377583],[-0.065944448113441,-0.018382845446467,0.025205684825778],[0.016918327659369,0.058245461434126,-0.074715010821819]],[[0.027186894789338,-0.08045819401741,0.0088781248778105],[0.010424359701574,-0.0092951431870461,0.049214370548725],[-0.026535782963037,0.034538269042969,-0.0018314671469852]],[[-0.041733089834452,0.038307759910822,0.07068257778883],[0.0052299043163657,0.065563179552555,-0.055674847215414],[-0.0046607097610831,-0.02069922350347,-0.10266941785812]],[[0.024439543485641,0.014324749819934,0.0059861661866307],[0.045720152556896,-0.032310955226421,0.023491602391005],[0.0084425499662757,0.0015099416486919,-0.053801160305738]],[[0.0042805848643184,0.01763566210866,0.094431392848492],[-0.0031603008974344,-0.021327367052436,0.0046292981132865],[0.033567111939192,0.056599330157042,0.040376335382462]],[[-0.00098595418967307,-0.019338890910149,0.014437754638493],[0.012148128822446,-0.030812457203865,0.042601443827152],[-0.0041242907755077,-0.051324050873518,0.0048771211877465]],[[0.017171135172248,-0.018348036333919,-0.0047083552926779],[0.038575518876314,0.020151764154434,0.025258496403694],[0.012864088639617,0.022241909056902,-0.015097455121577]],[[-0.0032636565156281,0.029319867491722,-0.057661108672619],[0.00069428631104529,0.031240684911609,0.024375971406698],[0.034639753401279,-0.02721350826323,0.019588829949498]],[[0.014901418238878,-0.04717905074358,-0.0095512717962265],[0.0162587556988,-0.030475948005915,-0.026258256286383],[0.040446538478136,-0.0051700756885111,-0.043639652431011]],[[-0.0097166765481234,0.057090152055025,0.0071352627128363],[0.023081013932824,0.031942799687386,0.040959604084492],[0.020258389413357,0.034591868519783,0.028484603390098]],[[0.13075104355812,-0.0050203194841743,0.037979226559401],[0.028636870905757,0.047920394688845,0.048725638538599],[0.041868858039379,-0.017400586977601,0.01643499545753]],[[-0.032674536108971,-0.019506836310029,0.0010914453305304],[0.017967481166124,0.10236493498087,0.027731789276004],[0.0054611363448203,-0.065149985253811,9.6797091828194e-05]],[[0.0070939459837973,-0.018778579309583,-0.021948114037514],[-0.088251128792763,0.0062504694797099,0.064419731497765],[0.019753752276301,0.0252645034343,0.025487314909697]],[[0.0048834602348506,0.013995897956192,-0.086978375911713],[0.045270722359419,0.03116169758141,0.016873858869076],[0.037276182323694,0.012292099185288,-0.013115248642862]],[[-0.014088114723563,0.011954741552472,0.0014665269991383],[0.019939243793488,0.044151771813631,-0.017611863091588],[-0.045097380876541,0.027397505939007,0.078151263296604]],[[-0.044023081660271,-0.0078810174018145,-0.01749187707901],[0.03412052989006,0.084567464888096,0.050993178039789],[-0.0017948581371456,0.012726216576993,-0.054500345140696]],[[0.085728667676449,0.14349377155304,-0.014127120375633],[0.073168009519577,0.042190656065941,0.013872675597668],[-0.045106548815966,0.00082912860671058,0.0061148679815233]],[[0.018685707822442,-0.05337005853653,-0.07455039024353],[0.033217694610357,-0.0070357164368033,-0.024961285293102],[0.024798907339573,0.11245132982731,0.023751867935061]],[[0.010489037260413,-0.021780986338854,-0.012204530648887],[0.050915792584419,0.0061075268313289,-0.07884768396616],[0.024041162803769,0.0092332735657692,-0.0021381643600762]],[[-0.028418499976397,0.02713880315423,0.031804271042347],[0.0088739432394505,-0.086639270186424,-0.064760655164719],[0.043634213507175,0.01981589011848,0.031767092645168]],[[0.012942387722433,0.031560752540827,-0.0072013819590211],[-6.9712623371743e-05,-0.0092430971562862,-0.019326541572809],[-0.024084521457553,-0.023452239111066,-0.025485053658485]],[[0.083672642707825,-0.089836746454239,-0.041540559381247],[0.071801342070103,0.069466814398766,0.0055413339287043],[0.039641413837671,0.014292822219431,-0.05883539095521]],[[0.019764311611652,0.01930127106607,-0.022224985063076],[-0.012853540480137,-0.011263371445239,-0.014366495423019],[-0.013739542104304,0.065613090991974,-0.012569161131978]],[[0.092023275792599,0.0041175237856805,-0.044110354036093],[0.022150952368975,0.0045760120265186,-0.028268333524466],[-0.078663989901543,0.052402295172215,0.0029120454564691]],[[0.061218906193972,-0.071732625365257,-0.032793845981359],[0.05724349245429,-0.010524277575314,0.035022661089897],[-0.043927721679211,-0.019166901707649,0.0064278915524483]],[[0.075058557093143,-0.036076828837395,-0.032755397260189],[-0.018570087850094,0.015875123441219,0.027583112940192],[0.11290118843317,0.014486471191049,-0.017015419900417]],[[0.10535009950399,0.031198831275105,-0.065179102122784],[-0.0031195175834,0.099112704396248,-0.022120121866465],[-0.0014918717788532,0.00097824411932379,0.0049206083640456]],[[0.026865703985095,0.032345294952393,0.032914005219936],[0.049532059580088,-0.038571648299694,-0.092822082340717],[-0.00058348558377475,0.036456938832998,0.098930716514587]],[[0.0053342636674643,-0.018094416707754,-0.054840665310621],[-0.027222521603107,0.074620448052883,0.023727240040898],[0.053627166897058,0.023971566930413,0.051632005721331]],[[0.026286594569683,0.12464635074139,-0.10328847169876],[-0.02921905554831,0.097304299473763,0.017804063856602],[0.046970680356026,0.027943387627602,-0.0013025862863287]],[[0.069746345281601,-0.040632277727127,-0.063854426145554],[-0.10211121290922,0.033545922487974,0.078039057552814],[0.025371426716447,-0.030012371018529,-0.065578535199165]],[[-0.039316955953836,0.0086206691339612,0.010479674674571],[-0.031304880976677,0.015400931239128,0.058911558240652],[0.044572904706001,0.024465912953019,0.016546208411455]],[[-0.06610843539238,0.0071873902343214,-0.0029336500447243],[-0.062807522714138,0.0063322721980512,-0.00732914917171],[0.11294870823622,0.041109070181847,-0.023041831329465]],[[0.069530658423901,-0.0078967306762934,-0.013819498941302],[0.094794183969498,0.004538384731859,-0.010729792527854],[-0.065083429217339,-0.0075763883069158,0.057863090187311]],[[0.086432032287121,0.10545569658279,-0.070899315178394],[0.00980185251683,-0.021107343956828,-0.077997349202633],[0.050036258995533,-0.050492029637098,-0.040263514965773]],[[0.038132101297379,0.067665927112103,0.0015233942540362],[0.014003322459757,-0.046289056539536,-0.03506139293313],[0.035358421504498,-0.071881055831909,0.11031644791365]],[[-0.0092585049569607,-0.017942145466805,0.063731357455254],[0.017542455345392,-0.013563133776188,0.0074367267079651],[0.032978985458612,0.077453151345253,0.065547548234463]],[[0.027104487642646,-0.0049771093763411,-0.002847473602742],[0.043582439422607,-0.011221644468606,-0.020407848060131],[0.041622918099165,0.040827374905348,0.022296741604805]],[[-0.027114121243358,0.048205304890871,0.01393414940685],[0.022186813876033,0.031187441200018,-0.00030704314121976],[0.012714922428131,-0.087139248847961,-0.0053537175990641]],[[0.041720416396856,-0.012252676300704,0.01826992444694],[-0.013384215533733,0.051117897033691,-0.026818117126822],[-0.025888429954648,0.0063669048249722,0.0039588105864823]],[[0.069032751023769,-0.059496331959963,-0.0248295776546],[0.021796483546495,-0.037930469959974,0.06034229695797],[0.054029114544392,-0.00062564248219132,-0.047872472554445]],[[0.031572464853525,0.037735987454653,0.059387821704149],[0.0234061088413,0.074772857129574,0.0012301581446081],[-0.05134966224432,-0.028604570776224,0.080745384097099]],[[-0.055002134293318,0.022751918062568,0.057914990931749],[-0.016124051064253,0.03407571464777,-0.036037921905518],[0.018891450017691,-0.011015658266842,0.062794119119644]],[[0.025812910869718,0.078477300703526,-0.10751653462648],[-0.015152947045863,-0.018237370997667,0.063956744968891],[0.036385573446751,-0.071509122848511,-0.089839838445187]],[[0.089615508913994,-0.064599610865116,-0.0058188773691654],[-0.045377980917692,0.047248657792807,-0.018226973712444],[0.089988946914673,0.012590534985065,0.058262076228857]],[[-0.045733977109194,0.058220200240612,-0.062038093805313],[0.0064386422745883,-0.00092021701857448,-0.0049248170107603],[-0.00097748881671578,-0.013033883646131,0.086084328591824]],[[-0.0066053662449121,-0.059601321816444,-0.061803445219994],[-0.075324699282646,0.0036979021970183,-0.050261437892914],[0.0016269503394142,0.010674591176212,-0.029337015002966]],[[-0.00013255915837362,-0.013768107630312,-0.021791754290462],[0.044751051813364,0.0077981208451092,-0.028213026002049],[-0.042413018643856,-0.014340575784445,0.081750191748142]],[[0.097889862954617,-0.035357665270567,0.037897165864706],[0.036814033985138,-0.056250918656588,-0.0035317961592227],[-0.039673488587141,0.080795511603355,-0.040664911270142]],[[0.017586337402463,-0.042383119463921,0.06722205132246],[-0.013936066068709,0.038971964269876,-0.089511096477509],[0.14852479100227,-0.056608285754919,0.025683503597975]],[[0.050444878637791,0.064417645335197,0.011255111545324],[0.024699239060283,0.015009321272373,-0.022773753851652],[0.010487034916878,0.053647380322218,-0.040993057191372]],[[0.047148793935776,0.0046010194346309,-0.019827961921692],[0.037969801574945,0.018567049875855,0.016663221642375],[0.056803412735462,0.020047275349498,0.025613561272621]],[[-0.080763459205627,0.032047554850578,0.058343943208456],[-0.070721708238125,0.029938021674752,0.10316313058138],[0.0015888758935034,-0.0048079541884363,-0.054652482271194]],[[-0.046202816069126,0.036834176629782,-0.022770114243031],[0.10872894525528,0.045120555907488,0.0071848873049021],[0.08265195786953,-0.068418741226196,-0.031293205916882]],[[-0.078831501305103,0.039017397910357,0.030410967767239],[-0.0045452965423465,0.039337109774351,0.065160371363163],[-0.013031763955951,0.043117646127939,-0.0020066879224032]],[[0.044076293706894,-0.011846085079014,0.014210385270417],[-0.014190081506968,-0.02800758741796,-0.008609370328486],[-0.041283562779427,0.021407822147012,-0.014326776377857]],[[0.019662270322442,0.040435254573822,0.078855849802494],[-0.02122550085187,0.009632021188736,0.0046000462025404],[-0.022413514554501,0.017156481742859,0.058114849030972]],[[-0.040401373058558,0.0040162089280784,0.041306830942631],[0.0034925574436784,-0.018958384171128,-0.036084901541471],[0.02396803535521,0.022239172831178,0.024067435413599]],[[-0.017480749636889,-0.044491246342659,-0.029806843027472],[0.10846300423145,0.063065439462662,0.024018526077271],[0.0020324077922851,0.012252235785127,-0.012639227323234]],[[-0.016873246058822,0.039678364992142,-0.045246902853251],[-0.10370025038719,0.057628590613604,-0.016818586736917],[0.025674445554614,0.01083371322602,0.098678559064865]],[[-0.044193137437105,-0.0086033251136541,0.04653724655509],[-0.035196222364902,-0.042956721037626,-0.095929928123951],[0.013371204957366,0.01730490103364,0.039293069392443]],[[0.02180259861052,-0.053097922354937,-0.03907785192132],[0.0092817116528749,-0.0073776510544121,0.0011677677975968],[0.061613883823156,0.051562041044235,-0.025446346029639]],[[-0.02321195974946,-0.0021670099813491,0.053036488592625],[-0.043639797717333,-0.023296032100916,0.021101724356413],[-0.047222130000591,-0.067926354706287,0.030567882582545]],[[0.00025236196233891,-0.019000392407179,0.012302195653319],[-0.044458501040936,-0.0018468134803697,0.0094116255640984],[0.034774977713823,-0.0092455511912704,-0.0055674435570836]],[[0.021078232675791,-0.042273994535208,0.015278288163245],[-0.019543450325727,-0.02362048253417,0.013722543604672],[0.004351899959147,0.012140387669206,-0.010403862223029]],[[-0.031693905591965,-0.070495635271072,-0.0046990080736578],[0.0096485139802098,0.0007549449801445,0.0024282766971737],[-0.071878209710121,0.049378182739019,-0.070438347756863]],[[0.014551673084497,0.053651511669159,0.03500010818243],[-0.01638612523675,-0.059718787670135,0.11445650458336],[-0.062733389437199,0.019504368305206,0.029212789610028]],[[-0.028596453368664,-0.046688243746758,-0.068739674985409],[-0.02380427159369,0.035026431083679,-0.028294306248426],[-0.037380885332823,0.085763081908226,0.025437833741307]],[[0.019865589216352,0.018222378566861,0.099162504076958],[-0.0012134128483012,-0.085120804607868,-0.082503452897072],[-0.053304471075535,-0.023210408166051,-0.0030599841848016]],[[-0.023998258635402,0.025647949427366,-0.02116509154439],[-0.027636161074042,0.02853143401444,-0.027471391484141],[-0.05684595182538,0.00053190847393125,0.023975731804967]],[[0.068553797900677,0.0071541694924235,0.0041614673100412],[-0.065541289746761,0.020462574437261,-0.040108174085617],[-0.069537580013275,0.017062194645405,0.023346012458205]],[[-0.024214185774326,0.040472406893969,0.011474719271064],[-0.018974395468831,-0.00035452467272989,-0.027149787172675],[0.013909007422626,-0.024437306448817,0.049305081367493]],[[-0.0059604058042169,-0.042191803455353,0.010925189591944],[-0.025985954329371,-0.00040272148908116,-0.022702805697918],[-0.0091981319710612,-0.02392509765923,-0.0035480703227222]],[[0.046660136431456,0.036153271794319,-0.037873756140471],[-0.00051154982065782,0.042365554720163,-0.0064169652760029],[-0.037448383867741,-0.023710090667009,0.0040928814560175]],[[-0.04576276242733,-0.0069130323827267,0.092047244310379],[0.025559531524777,-0.028476145118475,-0.017918031662703],[0.010421079583466,-0.02111079916358,-0.017269605770707]],[[0.058114528656006,0.0075854654423892,0.069039173424244],[-0.013354973867536,-0.07012628018856,-0.0047212331555784],[-0.13758051395416,-0.019947489723563,0.026868561282754]],[[0.0010100660147145,0.0033860225230455,0.020702756941319],[-0.031643442809582,-0.063970223069191,0.013269895687699],[-0.0069410847499967,-0.011510417796671,-0.010377549566329]],[[0.077902600169182,0.031583156436682,0.0054118703119457],[0.035105589777231,-0.044026475399733,0.053331572562456],[0.030820742249489,-0.062779061496258,0.092806905508041]],[[-0.015946367755532,-0.029009537771344,-0.048568863421679],[-0.020312743261456,-0.1363168656826,0.065460398793221],[-0.014584567397833,0.0025378235150129,0.040901705622673]],[[-0.081067003309727,0.010202093981206,0.030353570356965],[0.0018762330291793,0.033372677862644,-0.031017893925309],[0.023336824029684,0.082006111741066,0.03840759024024]],[[-0.02808797173202,0.0013060505734757,-0.065546818077564],[-0.050331551581621,-0.032967794686556,0.029238415881991],[0.009651648811996,0.073139555752277,-0.026413772255182]],[[0.028663270175457,0.03416583687067,-0.080850645899773],[-0.029933022335172,0.034596141427755,-0.011528385803103],[0.059850670397282,0.051353070884943,0.018558003008366]],[[0.094304628670216,-0.016980592161417,-0.086262218654156],[-0.028060872107744,-0.0026976470835507,0.038254447281361],[0.053864739835262,-0.060973405838013,0.011538818478584]],[[-0.00052497733850032,0.016251357272267,-0.10421993583441],[0.054950427263975,0.0005776027101092,-0.0081380773335695],[0.059591494500637,0.03100273385644,0.046459581702948]],[[-0.0041334526613355,-0.0014972081407905,-0.023989446461201],[-0.0098099401220679,0.09382026642561,0.05983667448163],[0.043779373168945,-0.012333971448243,0.032202251255512]],[[0.020945863798261,0.030427491292357,-0.020127952098846],[-0.0010452724527568,0.018945327028632,-0.01650850661099],[-0.057116135954857,0.06875155121088,0.10325019806623]],[[-0.036441892385483,0.009349619038403,0.023879263550043],[-0.063228353857994,-0.0025768300984055,0.015417842194438],[-0.045587297528982,-0.077385082840919,0.017616394907236]],[[-0.046359956264496,0.043200418353081,-0.020412050187588],[-0.0074566560797393,-0.049521837383509,-0.055172584950924],[0.022510170936584,-0.02557959780097,0.034015338867903]],[[0.0081180594861507,-0.010449821129441,-0.057319734245539],[-0.021631764248013,0.070892244577408,-0.084971189498901],[0.0081181703135371,0.085070505738258,-0.06129015609622]],[[0.0033899457193911,-0.0034171699080616,-0.022924082353711],[0.066995576024055,0.0066174976527691,0.012437793426216],[0.013897745870054,0.091205351054668,0.011576153337955]],[[-0.013900510035455,-0.00066626450279728,-0.047201942652464],[0.024590002372861,-0.040656886994839,-0.043129775673151],[0.038953669369221,0.0065006786026061,-0.02639371715486]],[[0.010452172718942,-0.08872127532959,0.040452886372805],[-0.046973820775747,-0.026655290275812,-0.0074551575817168],[0.1017784550786,-0.0085585759952664,-0.040129259228706]],[[-0.0083429301157594,-0.07104429602623,-9.3853996077087e-05],[0.0087704649195075,0.019012892618775,-0.020036160945892],[0.012398988008499,-0.0094484072178602,-0.014429724775255]],[[-0.062847010791302,-0.062514282763004,0.023995904251933],[0.0066064866259694,0.018181735649705,0.016375200822949],[-0.025417692959309,-0.0073379427194595,-0.00057214580010623]],[[0.042807020246983,-0.0058350921608508,0.040828499943018],[-0.018252786248922,-0.055858463048935,0.029137326404452],[0.11077217012644,0.048625208437443,0.017417358234525]],[[-0.015098508447409,-0.053614433854818,0.025459978729486],[0.013984986580908,-0.065543867647648,-0.0018094122642651],[-0.043284960091114,-0.013898407109082,0.035515248775482]],[[0.007832046598196,0.012155499309301,0.065941654145718],[-0.046860739588737,0.0026176241226494,0.0003825202875305],[-0.048526983708143,-0.053895574063063,0.010139781050384]],[[0.015192233026028,0.0025232571642846,-0.06522785872221],[-0.0074571459554136,-0.0078661413863301,-0.048334270715714],[-0.087955415248871,-0.13845811784267,-0.032561354339123]],[[0.015031713061035,0.070809803903103,-0.031813710927963],[-0.037838786840439,0.048313550651073,-0.020617816597223],[-0.052216477692127,0.042035773396492,0.028452072292566]],[[-0.0039721466600895,-0.024245681241155,0.0014430282171816],[-0.040551852434874,-0.051185946911573,-0.054493844509125],[0.014972237870097,-0.023332744836807,0.032653026282787]],[[-0.029084246605635,0.031249785795808,0.070043213665485],[0.013423820957541,-0.020902875810862,0.014484798535705],[-0.027688814327121,0.09702505171299,0.018012711778283]],[[0.00089463125914335,-0.070577554404736,0.053988464176655],[0.059741701930761,-0.042122080922127,0.0020824519451708],[0.022513713687658,-0.039577502757311,0.026001004502177]],[[0.0077843475155532,-0.027770360931754,0.0059998123906553],[0.013260128907859,0.044665601104498,-0.011755666695535],[-0.037138026207685,0.041780162602663,-0.058928404003382]],[[-0.059269964694977,0.016712771728635,-0.0047630616463721],[-0.016217248514295,-0.0024476181715727,0.034526664763689],[-0.020843436941504,0.0049282424151897,-0.028217915445566]],[[0.046014446765184,0.035570595413446,0.093324892222881],[0.014643254689872,-0.024214396253228,0.033686377108097],[0.012982380576432,0.062359426170588,0.017637154087424]],[[-0.035508655011654,-0.01356967817992,0.005520008970052],[-0.043530486524105,0.081039406359196,-0.0045702303759754],[-0.0026426983531564,-0.0032451061997563,-0.016907498240471]],[[0.02085929736495,0.04853680357337,-0.040388811379671],[0.019601548090577,0.012567953206599,-0.05509477481246],[0.085146449506283,-0.039422478526831,-0.039224244654179]],[[0.052366815507412,-0.02540509775281,0.018019137904048],[0.073778614401817,0.01265418343246,0.034638218581676],[0.062906615436077,-0.021271605044603,0.029493192210793]],[[-0.0086043085902929,0.039130799472332,-0.01023199595511],[0.0024252103175968,0.039134986698627,-0.029041392728686],[0.0089956354349852,0.0057930271141231,-0.028409721329808]],[[-0.060852490365505,-0.040710836648941,-0.033493127673864],[0.032717920839787,-0.016817545518279,-0.037902735173702],[-0.15995524823666,-0.11818380653858,0.028692375868559]],[[0.02991103567183,0.007044477853924,-0.013633171096444],[0.01606978662312,-0.036457903683186,0.023977246135473],[-0.029838459566236,0.022124946117401,-0.026961056515574]],[[0.052183471620083,0.019307374954224,0.0088813118636608],[0.02857987396419,-0.05617268383503,0.022004868835211],[0.012140940874815,0.027634421363473,0.026125136762857]],[[0.027679182589054,0.0073108584620059,0.0087693026289344],[-0.067544236779213,-0.020287968218327,0.015310692600906],[-0.036307282745838,0.0050610019825399,-0.03478816151619]],[[0.065584100782871,-0.051510110497475,-0.0028971950523555],[0.010098529979587,0.055926792323589,0.091914728283882],[0.061744567006826,-0.02560818195343,0.0086617786437273]],[[0.056325230747461,0.014751426875591,0.025798987597227],[0.088442534208298,0.087860748171806,0.051903910934925],[-0.024888098239899,-0.02992282807827,-0.072378173470497]],[[-0.056444108486176,0.043774388730526,0.07128519564867],[0.090820528566837,0.025613598525524,0.047027584165335],[0.0066614258103073,-0.035259019583464,-0.004814675077796]],[[0.011691762134433,0.053903590887785,0.0581319257617],[-0.046252366155386,0.030524656176567,-0.025729781016707],[-0.019619107246399,0.060184143483639,0.040622279047966]],[[0.067718289792538,-0.048880353569984,-0.10147597640753],[-0.05527151748538,-0.068337768316269,-0.0054323747754097],[0.0045623229816556,-0.040876697748899,-0.071328312158585]],[[0.033306505531073,0.030589578673244,0.016335118561983],[-0.026717565953732,-0.0038119109813124,-0.073100283741951],[-0.0078773573040962,0.0083613088354468,0.041225418448448]],[[0.010751349851489,-0.011629085056484,0.07897225022316],[-0.044072173535824,0.012226982973516,0.023287311196327],[-0.0067749032750726,0.018439264968038,-0.019568417221308]],[[-0.083949938416481,-0.014128590933979,0.0011687816586345],[-0.0060427044518292,0.031905610114336,-0.10603015869856],[0.026118472218513,-0.045669298619032,0.011617380194366]],[[0.031638845801353,-0.044195208698511,0.005491201300174],[0.063875466585159,-0.047501124441624,-0.023467566817999],[0.010561344213784,-0.00035435272729956,-0.070880495011806]]],[[[-0.03735426068306,-0.070262283086777,-0.046997494995594],[0.046624977141619,0.017495224252343,0.11259020864964],[-0.074565693736076,0.17329579591751,0.11584760993719]],[[-0.0071199652738869,-0.10754255950451,-0.0057620238512754],[-0.087742924690247,0.071450456976891,0.077358342707157],[-0.14349608123302,-0.070705354213715,0.050682060420513]],[[-0.0045378254726529,0.028042044490576,-0.092827439308167],[-0.010359800420702,-0.017356289550662,-0.02884410507977],[0.036694929003716,0.046468138694763,-0.012616931460798]],[[-0.032714556902647,-0.10926999896765,0.0253318361938],[-0.033325396478176,-0.0058516664430499,-0.03887490183115],[-0.018771128728986,-0.13429574668407,-0.10473446547985]],[[0.017722034826875,0.083657696843147,-0.071754686534405],[-0.066596537828445,-0.08683256059885,-0.0055278418585658],[-0.0091072591021657,-0.018223438411951,-0.060762286186218]],[[0.041782278567553,0.024475576356053,-0.011086384765804],[-0.087686963379383,0.030454033985734,-0.0056083458475769],[0.052549947053194,0.0082535594701767,-0.020174395292997]],[[0.019697733223438,0.011634651571512,0.06301087886095],[0.10437021404505,-0.011794555932283,-0.012984982691705],[0.072590462863445,0.034401003271341,-0.0051278648898005]],[[-0.19023048877716,0.048530843108892,0.039877314120531],[-0.16630049049854,0.0068467324599624,0.031450897455215],[-0.017974440008402,-0.012321583926678,-0.00092724029673263]],[[-0.0087567055597901,-0.015472429804504,0.0058352909982204],[0.065372586250305,-0.039115000516176,-0.0063021723181009],[-0.022407084703445,0.011132691055536,-0.033106878399849]],[[0.048680264502764,0.19209723174572,0.043046414852142],[0.1160536184907,0.065642692148685,0.06794710457325],[0.15261569619179,0.072991646826267,0.14867372810841]],[[-0.075666561722755,0.15161897242069,0.090295881032944],[0.061452653259039,0.061066776514053,-0.014564897865057],[-0.033128377050161,-0.031776804476976,0.03445141389966]],[[-0.022306112572551,-0.026967389509082,-0.052433256059885],[-0.052719440311193,-0.012369221076369,-0.0039340616203845],[0.0032351762056351,0.022818114608526,0.045995835214853]],[[-0.0085514523088932,-0.040734119713306,0.11238648742437],[0.062607616186142,0.020554376766086,0.065561667084694],[0.0096382526680827,0.067479439079762,0.10871483385563]],[[0.059077799320221,0.0023832891602069,-0.072057083249092],[0.0027891609352082,0.0090559413656592,-0.11498776078224],[0.052058160305023,-0.097563467919827,-0.091807834804058]],[[-0.012013541534543,-0.042231634259224,0.021724883466959],[-0.088702589273453,0.069554284214973,-0.021474286913872],[-0.069595873355865,-0.006166182924062,-0.069586671888828]],[[0.016455087810755,-0.02672821842134,-0.035217881202698],[-0.052694041281939,-0.026383211836219,0.032466262578964],[0.0069213514216244,-0.042929876595736,0.025227837264538]],[[0.03232579678297,0.12485101819038,-0.048011709004641],[-0.021793581545353,-0.067895531654358,0.054440889507532],[-0.035105232149363,-8.0813835666049e-05,0.076179102063179]],[[0.031201681122184,-0.075834043323994,0.04569048807025],[-0.031736847013235,0.0023974513169378,0.090883821249008],[-0.045616790652275,-0.028142092749476,-0.029565146192908]],[[0.047309644520283,0.082185328006744,-0.084433749318123],[0.035377725958824,-0.062315348535776,0.049140438437462],[0.020712591707706,0.027931595221162,0.10243522375822]],[[0.056435205042362,0.10146031528711,-0.15777704119682],[-0.068563193082809,0.070758886635303,-0.095332227647305],[0.066577650606632,-0.070872895419598,0.036328751593828]],[[-0.012678172439337,-0.050895012915134,0.013898014090955],[0.0095828361809254,-0.016076313331723,0.028846299275756],[0.15503264963627,-0.0077473013661802,-0.030999448150396]],[[-0.10222297161818,-0.081283859908581,0.037200920283794],[0.031597591936588,0.06072261184454,0.047352112829685],[0.1134230941534,0.033603198826313,0.069587200880051]],[[0.008314517326653,0.056448955088854,-0.019444348290563],[0.011036908254027,0.021222844719887,0.067787811160088],[0.046347383409739,-0.021943986415863,-0.02684130705893]],[[0.016018949449062,0.036390572786331,0.053239606320858],[-0.13967943191528,0.060585096478462,-0.1168877184391],[-0.0251031704247,-0.11569822579622,-0.048179104924202]],[[0.018217505887151,-0.15015684068203,-0.021392730996013],[0.078071415424347,0.057543259114027,0.046165872365236],[0.064509212970734,-0.03235199674964,0.0021771674510092]],[[0.11002527922392,0.013947274535894,-5.8996622101404e-05],[-0.006046811118722,-0.061142470687628,0.0089496877044439],[-0.030445767566562,-0.10029999166727,0.0094366883859038]],[[-0.055558074265718,0.030435072258115,-0.042361155152321],[-0.097541399300098,-0.03971454501152,-0.074092656373978],[0.05830891430378,-0.0020582280121744,-0.12863998115063]],[[0.10705649107695,0.050391405820847,0.052097469568253],[0.054343681782484,-0.014573664404452,0.08760692179203],[0.038406353443861,-0.058352287858725,0.049886707216501]],[[-0.030845075845718,-0.054472994059324,-0.011458732187748],[-0.071348078548908,-0.094432279467583,-0.0086647626012564],[0.0062377299182117,-0.0038594969082624,-0.0042054364457726]],[[0.028509022668004,0.075497552752495,-0.02346726693213],[-0.072686687111855,-0.10198070853949,-0.024148074910045],[-0.065978899598122,-0.056244924664497,-0.099214896559715]],[[0.05521671846509,0.079938039183617,0.032163824886084],[-0.043162658810616,0.050319582223892,-0.01171491574496],[-0.10331137478352,-0.10211872309446,-0.0067787608131766]],[[0.0013908584369346,-0.12269506603479,0.050576012581587],[-0.035295099020004,0.10107866674662,0.075260527431965],[0.078578524291515,0.13090208172798,-0.089074701070786]],[[-0.055023159831762,0.047063603997231,0.006173268891871],[0.029664766043425,-0.0747359842062,0.064462788403034],[6.4918608586595e-06,0.054743349552155,0.082828991115093]],[[-0.038592375814915,0.015474293380976,0.00047814651043154],[0.0029386072419584,0.068644568324089,0.030030108988285],[0.074866451323032,0.039231274276972,0.0253387670964]],[[0.017104081809521,-0.048078581690788,0.0026263112667948],[0.012780041433871,-0.017514336854219,0.028725193813443],[0.0027558419387788,-0.0068550305441022,0.00081984087591991]],[[-0.043302740901709,-0.043918691575527,-0.091571420431137],[-0.068232953548431,0.015350102446973,-0.017677528783679],[-0.041420798748732,-0.010919536463916,0.0077800005674362]],[[-0.088902197778225,-0.018876187503338,-0.0073603792116046],[0.095712244510651,-0.065598912537098,-0.095241561532021],[-0.097695700824261,-0.061211932450533,0.10874117165804]],[[0.016539281234145,-0.032042346894741,0.032485194504261],[0.042819909751415,-0.03575474396348,-0.032309927046299],[0.11573456227779,-0.01529635861516,-0.098959483206272]],[[0.017211636528373,-0.013191422447562,0.00031073516584001],[-0.051957190036774,-0.015836976468563,-0.080370984971523],[-0.10255230218172,0.005217079538852,-0.028232797980309]],[[-0.018685264512897,-0.00025783234741539,-0.051818486303091],[0.00040106568485498,-0.00042940871207975,-0.05246938765049],[0.12064239382744,0.037032060325146,0.088296197354794]],[[-0.022424945607781,0.13531197607517,0.02735922858119],[0.091891065239906,0.0094015616923571,0.00097093859221786],[0.074529781937599,-0.0088142501190305,-0.017453862354159]],[[-0.049661885946989,0.021445829421282,-0.019957831129432],[0.062686957418919,-0.0030706655234098,-0.058878306299448],[0.07052218914032,-0.0063099195249379,-0.18205963075161]],[[-0.069052115082741,0.012486743740737,-0.032052155584097],[-0.10056988149881,-0.090080715715885,-0.073532953858376],[0.020968556404114,0.1157627850771,0.051005840301514]],[[-0.036804378032684,-0.054252851754427,0.026348611339927],[0.028856597840786,0.033979885280132,0.031602099537849],[-0.052400417625904,0.011007354594767,-0.10741639137268]],[[-0.20649439096451,-0.034921538084745,-0.069719307124615],[0.014645365066826,-0.19392612576485,-0.073208309710026],[0.04989605024457,-0.048636816442013,0.024063041433692]],[[0.15014731884003,-0.087484665215015,-0.086907789111137],[0.046041578054428,0.1194271594286,0.0069426954723895],[-0.0035288901999593,0.0010444484651089,0.033522807061672]],[[-0.1220830604434,0.083335720002651,-0.002600894542411],[0.036396909505129,0.043430786579847,-0.067017436027527],[0.026111075654626,-0.015627849847078,0.088634587824345]],[[-0.038627810776234,-0.063757069408894,-0.024002173915505],[0.032421253621578,0.038664922118187,0.058156318962574],[-0.0071351849474013,0.0043053771369159,0.023250067606568]],[[-0.23407824337482,0.050412856042385,0.044379618018866],[-0.012734709307551,-0.072822257876396,0.071697041392326],[0.0029790517874062,0.057287268340588,0.064137324690819]],[[-0.051429372280836,-0.019635299220681,-0.041773322969675],[-0.14711917936802,-0.079620465636253,-0.0044273701496422],[-0.069645084440708,-0.01492437813431,0.04889265075326]],[[0.091292411088943,-0.065560422837734,0.0022292518988252],[0.042181648313999,-0.022809034213424,-0.02494409494102],[-0.0094953700900078,0.032862633466721,0.021443441510201]],[[-0.026972107589245,0.038596104830503,-0.11916437000036],[0.010253852233291,-0.017385717481375,-0.064625114202499],[-0.056615747511387,-0.016433410346508,-0.04508851096034]],[[-0.08378291875124,-0.073090516030788,-0.046814657747746],[-0.066181473433971,-0.00026910641463473,0.071160227060318],[-3.4304437576793e-05,0.074419505894184,0.10347887128592]],[[0.18662846088409,0.17166456580162,0.022327532991767],[-0.014934227801859,0.021035715937614,0.044028408825397],[-0.081021651625633,0.046540874987841,0.021843453869224]],[[0.054917372763157,-0.0033150012604892,0.023230968043208],[0.15839385986328,0.015792163088918,-0.042903956025839],[-0.083464503288269,-0.065558224916458,0.026750151067972]],[[0.11217138171196,-0.047125954180956,0.060516558587551],[0.049443546682596,0.036724656820297,-0.074127443134785],[-0.055981855839491,-0.01621862500906,-0.10281608998775]],[[0.0090756397694349,0.0052211075089872,-0.11654192954302],[-0.088442392647266,-0.092886835336685,0.05957181379199],[-0.10794502496719,-0.074567504227161,0.078506655991077]],[[0.02023977227509,-0.0074818208813667,0.10037033259869],[0.060780368745327,-0.031855180859566,-0.029572639614344],[0.047895912081003,-0.0046289036981761,-0.0038614408113062]],[[0.15674537420273,0.0027842302806675,-0.054923590272665],[-0.00026222461019643,-0.039585057646036,-0.04295652359724],[0.038693066686392,-0.057120651006699,0.039249375462532]],[[-0.0066277938894928,0.0046183704398572,-0.033978272229433],[-0.079181015491486,-0.050551798194647,-0.035516928881407],[-0.012773316353559,-0.100232668221,0.051549453288317]],[[-0.0099273398518562,-0.041506089270115,0.061867620795965],[-0.032024383544922,0.011571890674531,-0.023690456524491],[0.010159295983613,-0.09131833165884,0.029186340048909]],[[-0.037062253803015,0.009668811224401,0.054740805178881],[0.07786376029253,-0.1245995759964,-0.083179846405983],[-0.0035505085252225,-0.0019469494000077,0.048159588128328]],[[-0.0028481394983828,0.071446724236012,0.046958990395069],[0.028659449890256,-0.16497167944908,-0.035266052931547],[0.014894320629537,0.039020195603371,0.057270620018244]],[[0.13801744580269,-0.12481531500816,-0.036310657858849],[-0.048344139009714,-0.055529803037643,-0.089300528168678],[-0.027530811727047,-0.031735770404339,-0.039269864559174]],[[-0.10009621083736,-0.057471968233585,-0.046164140105247],[-0.10277393460274,-0.055539689958096,0.023656262084842],[-0.0042814142070711,-0.14962686598301,-0.037311930209398]],[[0.13772208988667,0.05374388769269,0.052138779312372],[-0.1389015763998,0.062665462493896,0.0090058958157897],[0.058986097574234,0.04987209290266,0.081660509109497]],[[-0.14207109808922,0.11519402265549,0.09154736250639],[0.11932788789272,-0.0078635355457664,-0.018408767879009],[-0.088797032833099,0.026848925277591,0.087598256766796]],[[0.19382791221142,-0.04468984156847,-0.074938990175724],[-0.0051507921889424,0.087145999073982,-0.078024119138718],[-0.025003157556057,0.018477881327271,-0.17408232390881]],[[0.00094500882551074,0.019524004310369,0.071964658796787],[-0.060174316167831,0.033896990120411,0.00061497342539951],[-0.10250376164913,0.0033884854055941,-0.042726088315248]],[[0.072106465697289,-0.046747237443924,-0.030513921752572],[-0.04349172860384,-0.02365068346262,0.026472650468349],[-0.042529430240393,-0.066089503467083,0.11954128742218]],[[-0.090528137981892,-0.10164687037468,-0.14087995886803],[0.02956815995276,-0.0081692850217223,-0.046332530677319],[-0.033070001751184,0.046708449721336,0.031634461134672]],[[0.012805985286832,0.043455082923174,-0.041777703911066],[-0.060933660715818,0.010263556614518,-0.00042370407027192],[0.036786187440157,0.059617515653372,-0.042639754712582]],[[0.15622512996197,0.1120038703084,0.068898372352123],[0.010835954919457,0.010886657051742,-0.01607857644558],[0.0010920708300546,0.0080569349229336,0.014954322017729]],[[0.05911298841238,0.10856229811907,0.047569364309311],[0.10937441140413,0.013216221705079,0.0061906552873552],[0.02178674377501,0.063180789351463,-0.084703028202057]],[[-0.062170226126909,-0.16213454306126,-0.048534739762545],[-0.013530635274947,-0.0059664668515325,0.0096228858456016],[-0.065856516361237,-0.022826729342341,0.13124889135361]],[[-0.047186739742756,0.061818893998861,0.028687106445432],[-0.050480902194977,-0.0067546260543168,-0.065500378608704],[0.04212486371398,0.037143044173717,-0.091767556965351]],[[-0.047013465315104,-0.036360546946526,-0.093750543892384],[-0.012515891343355,-0.080876238644123,0.011819684877992],[0.0014356824103743,-0.06062488630414,-0.018377665430307]],[[0.064914703369141,0.028321243822575,-0.056870248168707],[0.066537156701088,0.013549700379372,-0.1804211884737],[0.10972572863102,-0.0035333018749952,-0.094802230596542]],[[0.063145652413368,0.11198633909225,0.10470222681761],[-0.017606446519494,-0.0091917188838124,0.049870375543833],[0.0017194049432874,0.0085476115345955,0.016082856804132]],[[-0.059426579624414,0.0035118984524161,-0.11664243042469],[-0.10606655478477,-0.14646457135677,-0.15145829319954],[-0.074306488037109,-0.09265523403883,-0.045950897037983]],[[-0.049970921128988,0.042803768068552,-0.047098472714424],[0.076300375163555,-0.069162242114544,-0.053261857479811],[0.073642238974571,0.074531689286232,-0.091786593198776]],[[-0.0084910448640585,-0.059245850890875,0.00030672366847284],[0.012145574204624,0.034491140395403,0.01281604450196],[-0.066937625408173,0.020758440718055,0.059306092560291]],[[0.019192131236196,0.15012758970261,0.041153650730848],[0.010541362687945,-0.0021014334633946,0.060621865093708],[0.027620354667306,0.0032483618706465,-0.030428381636739]],[[0.025544594973326,-0.10995569825172,-0.050922680646181],[-0.068472430109978,-0.088613525032997,-0.041396755725145],[0.020300634205341,-0.078576937317848,-0.0075557185336947]],[[0.047393098473549,-0.0074038710445166,0.016759663820267],[0.077792465686798,0.030939012765884,-0.020824905484915],[-0.0043518580496311,0.015040853992105,0.10289294272661]],[[0.0043634595349431,-0.099009118974209,-0.081033781170845],[0.030867157503963,0.056827541440725,0.010831178165972],[0.035960271954536,0.0072295512072742,0.095186039805412]],[[0.036724239587784,0.002756378846243,0.095525562763214],[0.061911031603813,0.03447488322854,0.028812766075134],[0.0056734513491392,-0.078776262700558,-0.077541850507259]],[[0.036124099045992,0.063261389732361,-0.00025159731740132],[-0.011393728666008,-0.015295103192329,0.078769110143185],[0.0073081706650555,-0.048796329647303,-0.065019227564335]],[[0.070721007883549,0.061436768621206,0.018877599388361],[0.1587105691433,-0.079362437129021,0.0064248163253069],[0.050972875207663,-0.04968423768878,0.033252563327551]],[[0.015461987815797,-0.055648703128099,0.1258503049612],[0.043989352881908,-0.081623397767544,-0.09084639698267],[0.077137336134911,-0.05594277754426,-0.079114608466625]],[[0.017626572400331,-0.029514290392399,0.1265135705471],[-0.014718211255968,0.022066332399845,0.022054450586438],[0.065304718911648,-0.12015433609486,-0.10092397779226]],[[0.0032922357786447,-0.052414704114199,-0.05189536511898],[0.038637239485979,0.032738287001848,-0.11771392822266],[0.10197099298239,-0.006816663313657,-0.041973296552896]],[[-0.065520957112312,-0.065466739237309,0.19135150313377],[0.035239167511463,-0.016539134085178,0.084986001253128],[-0.027844885364175,-0.057987026870251,0.060332838445902]],[[-0.13623262941837,-0.21353614330292,-0.0083428015932441],[-0.009440834634006,-0.04372913017869,-0.053285457193851],[-0.0040862346068025,-0.020074490457773,-0.03707205876708]],[[-0.038572672754526,0.044165994971991,-0.059192083775997],[0.0084405681118369,-0.10347582399845,-0.14190419018269],[0.13755123317242,-0.039559975266457,-0.074743531644344]],[[0.062092553824186,0.078631438314915,0.10275316238403],[0.10413315147161,0.11133876442909,-0.030456932261586],[-0.078139416873455,0.056587938219309,-0.027618672698736]],[[0.12536303699017,0.029558330774307,0.041204303503036],[-0.040493682026863,-0.029873326420784,-0.040801670402288],[-0.07435979694128,-0.0053464449010789,-0.092200919985771]],[[-0.096823289990425,-0.028896788135171,-0.034765742719173],[-0.032721880823374,-0.034431923180819,-0.01571642421186],[0.09186676889658,-0.080211818218231,-0.017364049330354]],[[0.043097198009491,-0.048348430544138,-0.043112259358168],[-0.021569728851318,0.0073450705967844,-0.026735791936517],[-0.05581658706069,-0.044603645801544,-0.035333570092916]],[[0.013944630511105,-0.0018268885323778,0.047590103000402],[-0.081220954656601,0.011192853562534,-0.0065196193754673],[-0.098415970802307,0.12117993831635,0.031593166291714]],[[0.20764960348606,-0.010313055478036,-0.03520479798317],[0.05758048593998,0.037177886813879,-0.00072794058360159],[0.073317803442478,0.064919203519821,0.018805788829923]],[[-0.096593715250492,-0.069176480174065,0.0017133416840807],[-0.12569257616997,-0.071785166859627,0.013667338527739],[-0.0066187717020512,0.0055770468898118,0.11007668823004]],[[-0.019533444195986,-0.032535847276449,-0.031053222715855],[-0.114258505404,0.037193402647972,0.02778965048492],[-0.051341950893402,-0.14100009202957,-0.02396628074348]],[[0.039504863321781,-0.10557553172112,-0.00034235481871292],[0.092417940497398,0.018135007470846,0.034622859209776],[0.0092688584700227,-0.0057698292657733,-0.018741928040981]],[[-0.029832070693374,0.0096949618309736,-0.027485182508826],[0.018306998535991,0.0097437016665936,-0.058702185750008],[-0.0032945682760328,0.16602355241776,0.15577667951584]],[[-0.11912871897221,-0.084454901516438,0.031664613634348],[-0.10680054873228,-0.093136847019196,-0.036719646304846],[-0.061740785837173,-0.030560877174139,-0.053408589214087]],[[-0.016663884744048,-0.036470387130976,0.01360097527504],[0.067515403032303,0.06072498485446,0.039771784096956],[0.064676240086555,-0.048106957226992,0.015927428379655]],[[-0.027794441208243,-0.11404695361853,-0.031077226623893],[-0.082724414765835,0.0056954617612064,0.050283063203096],[0.0028575907927006,-0.12874592840672,0.036464411765337]],[[0.085598543286324,0.11500011384487,0.043520286679268],[-0.026114135980606,-0.06489109992981,0.11955554038286],[0.037430811673403,0.033166740089655,-0.12146858125925]],[[-0.093325451016426,0.019908796995878,-0.0071823885664344],[-0.010310111567378,-0.045448217540979,-0.023049805313349],[-0.022321594879031,0.11834976822138,0.028400538489223]],[[0.093368127942085,0.038842115551233,-0.020426161587238],[-0.0046475855633616,-0.15833796560764,-0.11466628313065],[0.02017636783421,-0.048601388931274,0.12519492208958]],[[-0.038545567542315,-0.017884938046336,-0.080120362341404],[0.045201476663351,0.041439164429903,-0.040139012038708],[0.052279636263847,-0.080625981092453,0.11799725145102]],[[0.007816219702363,-0.090896680951118,-0.048787012696266],[0.042238209396601,-0.042270381003618,-0.028776044026017],[0.15910437703133,0.093338370323181,0.043634328991175]],[[0.062690258026123,0.025835622102022,0.010154399089515],[-0.027606872841716,0.10892916470766,0.077062249183655],[0.055360585451126,-0.030229268595576,-0.046545922756195]],[[-0.21261839568615,0.10343786329031,-0.066089414060116],[-0.088602431118488,-0.022764507681131,0.0089681204408407],[-0.04232057929039,-0.025218140333891,-0.021509408950806]],[[0.073503866791725,0.19993235170841,0.088187277317047],[-0.033108171075583,-0.07765619456768,-0.023361038416624],[-0.11131005734205,0.030263924971223,0.038463700562716]],[[-0.0082021169364452,0.015635227784514,-0.026086067780852],[-0.037544716149569,-0.072969496250153,-0.056079436093569],[0.066285111010075,-0.048135634511709,-0.031514070928097]],[[0.073900431394577,0.040267582982779,-0.054495260119438],[0.076397694647312,0.076033338904381,-0.12833920121193],[-0.071842640638351,0.12366844713688,0.062463663518429]],[[0.023955406621099,-0.063499204814434,0.096034847199917],[-0.016310028731823,-0.03110328130424,-0.0037879310548306],[0.036133084446192,-0.11228480190039,-0.024648817256093]],[[-0.093153513967991,-0.066359281539917,0.077110610902309],[0.075544252991676,0.048528410494328,-0.12107563018799],[-0.038621950894594,0.11552516371012,0.0057947277091444]],[[0.084553882479668,0.072957724332809,-0.014547922648489],[0.024056769907475,0.021144000813365,0.064797282218933],[-0.02630160190165,0.079477518796921,0.091419339179993]],[[0.034309022128582,0.12134258449078,-0.090564869344234],[0.015319839119911,-0.0076774996705353,0.052784658968449],[0.049978110939264,-0.053206920623779,0.12012556940317]],[[0.074147716164589,0.043168719857931,-0.026090258732438],[-0.0092364698648453,-0.060949932783842,-0.016810031607747],[-0.048247460275888,-0.038146544247866,-0.052806317806244]],[[-0.1084953173995,0.032344710081816,-0.05804256349802],[-0.056194309145212,-0.046959679573774,0.059351779520512],[0.082843899726868,-0.015549072995782,0.08137734234333]],[[0.11172103136778,-0.055316250771284,-0.10876421630383],[0.034756362438202,-0.055496852844954,0.11335316300392],[-0.035039778798819,0.1423152834177,-0.0084963431581855]],[[-0.010968523100019,0.028991047292948,0.024112852290273],[0.099149249494076,-0.034905064851046,-0.01021555904299],[0.018306955695152,0.046097166836262,0.041879441589117]],[[-0.11987660825253,-0.049913689494133,-0.0099778193980455],[-0.031933456659317,0.033202581107616,0.043754108250141],[-0.091879360377789,-0.077206648886204,0.097720079123974]],[[-0.024928409606218,-0.080228634178638,-0.028657197952271],[-0.029251491650939,-0.033074241131544,-0.075071163475513],[-0.017425119876862,0.083106055855751,0.034031722694635]]],[[[-0.086093686521053,-0.017659317702055,0.067008748650551],[-0.100770868361,-0.076140649616718,0.086914159357548],[-0.10117558389902,-0.1519405990839,0.13800738751888]],[[0.040870990604162,-0.021943824365735,0.011882483959198],[-0.025633668527007,-0.078049048781395,0.018318751826882],[0.0068024657666683,-0.10778442770243,-0.044044461101294]],[[0.28789687156677,-0.080705881118774,-0.038877673447132],[0.015949023887515,-0.057859197258949,-0.027972009032965],[-0.098961211740971,0.10204627364874,-0.025124540552497]],[[0.1058779284358,0.0066057564690709,-0.028853783383965],[0.091583833098412,0.0095415059477091,-0.077306732535362],[0.041055656969547,0.01237937156111,-0.12152434140444]],[[-0.0073482664301991,-0.0046840999275446,-0.034695006906986],[0.056531596928835,-0.033726651221514,-0.017194755375385],[0.02387104742229,-0.038135390728712,0.033678036183119]],[[0.0019316544057801,-0.03796324506402,0.0022899319883436],[-0.033888053148985,-0.025333605706692,-0.031783282756805],[0.033988706767559,0.0082489037886262,-0.036847300827503]],[[0.039653521031141,0.01026335824281,-0.014821110293269],[-0.079344838857651,0.058736305683851,0.0089879333972931],[-0.096119791269302,-0.014272981323302,-0.13501466810703]],[[-0.05254952609539,0.062701851129532,0.11004169285297],[-0.084152586758137,-0.02628044039011,0.069074392318726],[-0.074592612683773,-0.11335707455873,-0.13326032459736]],[[-0.0013739053392783,0.048215307295322,-0.06564749032259],[-0.063299812376499,0.032238576561213,-0.067878313362598],[0.13555562496185,-0.0022446482907981,0.071564294397831]],[[-0.01403979677707,0.033331338316202,0.013686430640519],[0.062806896865368,0.061229411512613,-0.092517539858818],[0.04394243657589,-0.047408476471901,-0.044869672507048]],[[0.021133257076144,-0.00084160850383341,0.069429934024811],[0.038311876356602,-0.028741830959916,0.055114775896072],[0.025467095896602,-0.0078128362074494,-0.029756588861346]],[[0.031811770051718,-0.019287277013063,-0.071209266781807],[-0.038713406771421,0.014879757538438,0.025823829695582],[-0.037543933838606,0.035068709403276,0.044366579502821]],[[0.041608974337578,0.0081311743706465,-0.017961917445064],[0.0020078392699361,0.054719850420952,0.12433284521103],[-0.0059255356900394,0.031575448811054,0.10795655101538]],[[0.070371985435486,-0.0045912633650005,-0.060979682952166],[0.036381810903549,-0.038556162267923,-0.044718973338604],[-0.025491626933217,-0.025102535262704,-0.013625162653625]],[[-0.066027872264385,0.0012793244095519,-0.002750386018306],[-0.12426660209894,-0.039330460131168,-0.040274262428284],[-0.05491117015481,-0.088350459933281,0.0012897348497063]],[[0.018740475177765,0.025159630924463,0.0078671080991626],[0.0062809456139803,-0.0047219954431057,-0.0069315410219133],[0.020308384671807,-0.00028765577008016,-0.21262753009796]],[[-0.040033672004938,-0.0067452951334417,0.049325954169035],[-0.034601796418428,-0.045095570385456,-0.014685875736177],[-0.023353883996606,-0.0081312926486135,0.050824742764235]],[[0.048761311918497,-0.025630623102188,0.00041333510307595],[-0.021116074174643,-0.012286369688809,-0.022526450455189],[0.0058621945790946,0.018707392737269,-0.052032887935638]],[[0.10303784906864,0.0099721672013402,0.039783965796232],[0.041279088705778,0.017776163294911,0.054477624595165],[-0.020530005916953,0.10585752129555,0.0031170784495771]],[[-0.075899861752987,-0.050901725888252,-0.039981372654438],[0.033878482878208,-0.006755065638572,-0.053802706301212],[0.050659686326981,0.013198030181229,0.013689470477402]],[[-0.0020310096442699,-0.020017918199301,-0.047167416661978],[0.024196971207857,0.058889523148537,-0.0083192978054285],[0.051907390356064,0.052524443715811,-0.0096972975879908]],[[-0.054050955921412,0.035730108618736,0.047044929116964],[-0.10660172998905,-0.051931317895651,0.038756586611271],[-0.030713992193341,-0.13042080402374,-0.16570718586445]],[[-0.028133507817984,-0.057446360588074,-0.027609724551439],[-0.071177616715431,0.028105229139328,-0.0009147206437774],[0.081667989492416,0.099094077944756,0.0059243957512081]],[[0.0058538978919387,-0.036713507026434,0.053060054779053],[0.0027735189069062,-0.040736384689808,-0.061236523091793],[0.090526334941387,-0.18250697851181,-0.15259663760662]],[[-0.047069050371647,0.017845783382654,-0.03061712346971],[0.075477220118046,0.028416238725185,3.9687380194664e-05],[0.090957917273045,-0.033224329352379,-0.032741788774729]],[[-0.039775680750608,-0.10281033813953,-0.019296688959002],[0.020138302817941,-0.080498144030571,-0.081038273870945],[0.016646413132548,-0.084184385836124,-0.0095117380842566]],[[0.00051202392205596,0.027771322056651,-0.031631492078304],[-0.061060514301062,0.11602590978146,-0.0072903004474938],[-0.071164719760418,0.062668442726135,-0.01466906350106]],[[0.032970234751701,0.003320834832266,-0.0063246805220842],[-0.017946818843484,-0.030815314501524,-0.11038076132536],[0.014605596661568,0.049193371087313,0.099796310067177]],[[0.059284538030624,-0.035954512655735,0.030141055583954],[-0.067319482564926,-0.038494668900967,-0.10142880678177],[0.0052238111384213,0.09172784537077,-0.017995176836848]],[[0.038027126342058,0.030593939125538,0.006310386583209],[-0.050701234489679,-0.098928958177567,-0.02907451801002],[-0.051573447883129,-0.10915256291628,-0.07102807611227]],[[-0.0082522751763463,0.037312645465136,0.052678484469652],[-0.040533717721701,-0.016211351379752,0.10056015849113],[-0.071957819163799,-0.031454969197512,-0.019397679716349]],[[0.019710069522262,-0.031296856701374,-0.095394544303417],[0.033936060965061,0.032658450305462,-0.0017003568354994],[0.022301012650132,0.068484030663967,-0.016655361279845]],[[-0.0091268913820386,-0.026379315182567,-0.07595831900835],[0.032131221145391,-0.026266645640135,-0.015518778935075],[0.07434955984354,0.071061886847019,0.017069818452001]],[[-0.0039015237707645,-0.011727982200682,-0.013965289108455],[0.022486863657832,-0.0070520802401006,-0.026110347360373],[-0.045008674263954,-0.019316874444485,-0.00032166909659281]],[[-0.0051720961928368,0.034909084439278,-0.022988528013229],[0.0087290285155177,0.0095882983878255,-0.021426096558571],[-0.03053418174386,-0.00086482765618712,-0.0048842201940715]],[[0.010738995857537,-0.007785099092871,0.020654844120145],[-0.1323983669281,-0.032544620335102,-0.010175840929151],[-0.077011503279209,0.041822489351034,-0.021027335897088]],[[0.0070082703605294,0.18556194007397,-0.052217591553926],[0.048035979270935,0.037779923528433,0.056019529700279],[0.057718489319086,-0.11039906740189,0.078729420900345]],[[0.036387946456671,0.025327695533633,-0.011347983963788],[-0.03412402421236,0.027510398998857,-0.0045802039094269],[0.0073255021125078,-0.028566798195243,-0.046437539160252]],[[-0.028038723394275,-0.024911781772971,0.0082520302385092],[-0.0096227070316672,0.044807761907578,-0.007179067004472],[0.038101557642221,-0.16636134684086,-0.020372740924358]],[[0.015625832602382,-0.017280058935285,-0.045320577919483],[0.023745764046907,0.041699010878801,0.047892339527607],[0.029245836660266,-0.012241748161614,0.10811750590801]],[[0.00027648356626742,0.040753912180662,-0.0070868288166821],[0.011894817464054,-0.029473206028342,0.10138323158026],[0.04170174151659,-0.092185087502003,0.039914030581713]],[[0.061995677649975,0.0038047702983022,-0.051048036664724],[0.0017488854937255,0.05144127830863,-0.024925982579589],[-0.047911163419485,0.021288596093655,-0.11503104120493]],[[0.0069726696237922,-0.014319258742034,0.0068026734516025],[-0.024067798629403,-0.0074924007058144,-0.021611230447888],[0.001506311353296,0.043489683419466,0.10097159445286]],[[0.033387865871191,0.056973915547132,0.059992678463459],[0.070954769849777,0.062868498265743,0.056779019534588],[-0.037734027951956,0.051185954362154,0.033074762672186]],[[-0.13459397852421,0.01992910169065,-0.02140125259757],[0.040133498609066,0.032312553375959,-0.0017400289652869],[0.061151590198278,-0.013655186630785,0.016916822642088]],[[-0.151192471385,-0.070458456873894,-0.049057140946388],[-0.076643645763397,-0.087585598230362,-0.036534521728754],[-0.056995656341314,-0.0096653373911977,0.059404253959656]],[[-0.018020207062364,0.020564058795571,0.016458265483379],[0.025368474423885,0.024920597672462,-0.12025734037161],[0.079648233950138,0.022466978058219,0.036803286522627]],[[0.017751166597009,-0.0019945786334574,-0.10382978618145],[-0.024995325133204,0.056322377175093,-0.10377285629511],[-0.012188196182251,-0.014609274454415,0.022892678156495]],[[-0.049728199839592,-0.023522598668933,-0.013362214900553],[-0.012149529531598,0.1105387583375,0.031024254858494],[0.013808021321893,0.004984519444406,0.07182352989912]],[[-0.0051571470685303,0.0014533310895786,0.0039038644172251],[0.017664436250925,-0.090629041194916,0.01631835103035],[-0.0025997592601925,-0.054953623563051,0.059739254415035]],[[0.046273082494736,0.0099431369453669,0.025425752624869],[0.078909501433372,-0.060883544385433,0.029562750831246],[0.079871341586113,-0.080197468400002,-0.026782006025314]],[[0.024002382531762,0.024982783943415,-0.040190543979406],[0.044221892952919,-0.014351403340697,-0.011199847795069],[-0.028305444866419,-0.0098976362496614,-0.10263279080391]],[[0.0027273334562778,0.14054934680462,0.059925153851509],[0.059706661850214,0.14178557693958,0.14855639636517],[-0.033565334975719,0.084155887365341,0.066001109778881]],[[0.040834952145815,0.062481556087732,0.0015512795653194],[-0.0081504955887794,0.039899088442326,-0.00046576303429902],[-0.055345602333546,0.016037587076426,0.006381459068507]],[[0.059924770146608,0.039700660854578,0.079736396670341],[0.05505495890975,0.018437491729856,0.031150318682194],[-0.029037935659289,-0.010866929776967,-0.097463719546795]],[[0.14120291173458,0.09571848064661,0.036301996558905],[0.1232045814395,0.016740681603551,-0.03723705932498],[-0.21083626151085,-0.047821573913097,0.076835922896862]],[[0.02661063708365,-0.039719939231873,-0.038575548678637],[0.013555127196014,-0.035734165459871,0.024597864598036],[0.0027948985807598,0.041919432580471,-0.052870944142342]],[[-0.02615138143301,0.057919550687075,0.052186839282513],[-0.022054363042116,0.02576039172709,0.072841726243496],[0.045686434954405,-0.028575081378222,0.06433267146349]],[[0.057867303490639,-0.040141634643078,-0.06272204965353],[0.019181966781616,-0.0059150913730264,-0.058663818985224],[0.0143654756248,0.0037040009628981,0.011922399513423]],[[0.016434455290437,-0.047998823225498,-0.0060355635359883],[-0.061911314725876,-0.027044838294387,-0.007554991170764],[0.0052423938177526,0.026432240381837,0.091377586126328]],[[-0.031473461538553,0.011469420976937,0.027048669755459],[0.034770458936691,-0.036349557340145,-0.038787242025137],[0.051785167306662,-0.062525220215321,-0.044475737959146]],[[0.01065191347152,0.078370667994022,0.014927576296031],[0.019276883453131,0.10492224991322,-0.10968936234713],[0.011651247739792,-0.040494497865438,-0.07658938318491]],[[-0.15471263229847,0.022890269756317,0.10293982177973],[0.10310822725296,0.008193944580853,-0.13359153270721],[0.021965144202113,0.16329398751259,0.064851105213165]],[[0.0458091981709,0.10156947374344,-0.048718675971031],[0.0028794943355024,0.0044980435632169,0.076866522431374],[-0.05756189674139,-0.081867456436157,0.016755843535066]],[[-0.016992790624499,-0.062253568321466,-0.032049667090178],[-0.053867060691118,-0.038516461849213,-0.082245007157326],[-0.025589726865292,-0.032294936478138,-0.0049120667390525]],[[0.086478590965271,-0.057335738092661,0.02915595844388],[0.1004738509655,-0.14459316432476,0.00072921678656712],[-0.012623669579625,0.011966221034527,0.070548512041569]],[[0.0014936053194106,0.1025742739439,0.046445652842522],[0.049167327582836,-0.060417246073484,0.047270845621824],[-0.14900140464306,-0.11700167506933,0.016376597806811]],[[0.030361579731107,-0.034478738903999,-0.025580273941159],[-0.043182365596294,-0.042246535420418,-0.027017401531339],[-0.0020692043472081,-0.091346241533756,0.041214041411877]],[[0.020701734349132,0.00059012888232246,0.01522274967283],[-0.040917441248894,-0.011324550956488,0.016417630016804],[-0.043985135853291,-0.063652023673058,0.12522627413273]],[[0.03833370283246,-0.021603662520647,-0.016438817605376],[0.12749552726746,-0.0031624091789126,-0.020362062379718],[-0.00079356791684404,0.032305799424648,-0.048917096108198]],[[-0.03797085210681,0.013992588035762,0.042568139731884],[-0.048261567950249,-0.067329660058022,-0.044169075787067],[0.11243672668934,0.020790992304683,-0.070942543447018]],[[-0.070482231676579,0.046502597630024,0.037517491728067],[0.00026468088617548,0.0018793324707076,-0.0018002308206633],[0.053084965795279,-0.0096731381490827,-0.048641372472048]],[[-0.030532572418451,-0.06301262229681,-0.022884180769324],[-0.13496208190918,-0.12103130668402,0.035709511488676],[-0.066371969878674,0.023506747558713,0.050376437604427]],[[-0.0041025928221643,-0.1301567107439,0.085812330245972],[0.068336755037308,-0.075392879545689,0.057574398815632],[0.033783197402954,0.18311746418476,-0.10087425261736]],[[0.021058011800051,0.018399994820356,-0.21326479315758],[0.027836438268423,0.092573121190071,0.0645811855793],[0.026107491925359,-0.054505337029696,0.090247042477131]],[[0.031704280525446,0.029024921357632,-0.014353764243424],[0.017376892268658,0.011805027723312,0.049597088247538],[-0.014417207799852,0.017870197072625,0.018731687217951]],[[0.0081476988270879,-0.039326183497906,-0.047740269452333],[0.01769220456481,0.024746114388108,0.0099998731166124],[-0.083469823002815,0.043510150164366,0.088690623641014]],[[-0.070915579795837,0.058874171227217,-0.003748191986233],[-0.069284647703171,0.031610738486052,-0.018769361078739],[-0.012196444906294,0.046204082667828,-0.0023199236020446]],[[-0.048634827136993,0.087111316621304,-0.035865750163794],[-0.061479769647121,0.0080952839925885,0.029632093384862],[-0.059348538517952,-0.033325713127851,0.021748231723905]],[[0.013695594854653,-0.028705989941955,0.038885869085789],[-0.018123831599951,0.046065583825111,0.026585591956973],[-0.010570839047432,0.039558589458466,-0.0017948230961338]],[[-0.075705662369728,-0.070462703704834,0.092347651720047],[-0.042369198054075,-0.013769891113043,0.068263240158558],[0.043626148253679,0.074194259941578,0.01140119228512]],[[-0.004457329865545,-0.0070694996975362,0.0086415819823742],[0.020312815904617,-0.086376659572124,-0.025122355669737],[0.054041896015406,0.042176179587841,-0.036879923194647]],[[-0.025014836341143,0.0093158483505249,0.045748524367809],[-0.13326391577721,0.021204326301813,-0.065514393150806],[-0.00063277233857661,-0.073002144694328,-0.10215225070715]],[[0.059132650494576,0.0021835851948708,-0.024794526398182],[0.092687629163265,-0.040832050144672,-0.039611849933863],[0.056085038930178,0.0039982199668884,-0.024960976094007]],[[-0.033458516001701,0.024803763255477,0.028282834216952],[-0.010233697481453,0.020934442058206,-0.038955889642239],[0.016461765393615,-0.033888105303049,-0.0073143346235156]],[[0.090535245835781,0.0154172712937,-0.012544210068882],[0.082347497344017,0.11749728024006,0.061669234186411],[-0.0017227283678949,0.065626367926598,-0.0087118726223707]],[[0.029732139781117,0.010577086359262,0.018788743764162],[0.059241604059935,-0.014895747415721,0.031893689185381],[-0.085561983287334,-0.097028508782387,-0.083667613565922]],[[0.028340008109808,-0.034824293106794,-0.03352128714323],[0.037953983992338,0.053198829293251,0.0005406835116446],[0.0061379484832287,-0.0012408933835104,-0.031193384900689]],[[0.053415227681398,0.029130648821592,0.1233831718564],[-0.024208856746554,0.029169213026762,0.17574395239353],[-0.033739667385817,0.14230611920357,-0.018947741016746]],[[-0.076970688998699,-0.09380691498518,-0.10100966691971],[-0.022003075107932,0.063566654920578,0.088327959179878],[0.019226873293519,0.063299410045147,-0.017585320398211]],[[0.041914150118828,0.024976946413517,0.062638372182846],[0.021420650184155,-0.014686234295368,-0.0047288979403675],[0.044771824032068,-0.0073306919075549,0.10782355070114]],[[0.063506603240967,-0.071048691868782,-0.064156822860241],[0.055098917335272,0.0069460207596421,-0.025969993323088],[-0.033311285078526,0.098826222121716,0.014219925738871]],[[-0.1001423150301,0.0010291780345142,0.075110740959644],[-0.018502170220017,-0.020800601691008,0.052296720445156],[0.14500343799591,-0.18679195642471,-0.053028486669064]],[[0.033732004463673,-0.014897140674293,0.038284093141556],[0.0004621219704859,0.037472292780876,0.040003333240747],[-0.0028444912750274,-0.024457572028041,-0.041401110589504]],[[0.010037712752819,0.046011600643396,0.034320149570704],[-0.062123320996761,0.029195614159107,-0.061296798288822],[-0.037399493157864,0.028719803318381,-0.12363199144602]],[[0.0019730373751372,-0.015379723161459,0.080656416714191],[-0.0077597876079381,-0.050184834748507,0.10370493680239],[-0.0056484350934625,-0.10389686375856,0.04840561747551]],[[0.012793704867363,0.030106257647276,0.11061114817858],[0.023767417296767,-0.027392543852329,-0.01562774553895],[-0.06952029466629,0.031446602195501,-0.037306718528271]],[[0.052294533699751,-0.043892908841372,0.088353008031845],[0.018969701603055,-0.10927854478359,0.085858836770058],[-0.027991993352771,0.09017576277256,0.044133018702269]],[[-0.042517177760601,-0.039498969912529,-0.012379378080368],[0.041247464716434,-0.052724353969097,0.019197829067707],[0.078868374228477,0.038247056305408,0.066224791109562]],[[-0.057833548635244,0.044297624379396,0.0020820314530283],[-0.072024986147881,-0.063311398029327,0.014696626923978],[0.03484321013093,0.012237389571965,0.010225930251181]],[[0.017946910113096,0.029924180358648,-0.002563611138612],[0.010452684946358,-0.053449500352144,0.0014089307514951],[0.031315267086029,-0.00053003669017926,0.035075049847364]],[[-0.10630267858505,-0.058347370475531,-0.019659589976072],[-0.055076636373997,0.057268876582384,-0.0034241359680891],[-0.040916658937931,0.030878828838468,0.0018581873737276]],[[0.037096627056599,-0.02831170335412,0.0014147171750665],[0.04786567017436,-0.043394114822149,0.030961705371737],[-0.073865629732609,0.035748839378357,-0.01489972975105]],[[0.014126558788121,0.0072217448614538,0.0083024818450212],[0.013302446343005,0.029916061088443,-0.049849633127451],[0.015124881640077,-0.046756472438574,0.0032712118700147]],[[-0.024992916733027,-0.05831752717495,-0.011716480366886],[-0.041376184672117,-0.070002555847168,-0.0081191789358854],[0.0080571891739964,0.018797241151333,0.1125997453928]],[[0.078925639390945,0.035087306052446,0.06349878013134],[0.0007288814522326,0.039305403828621,0.038419868797064],[0.014177223667502,0.001590344356373,-0.040699705481529]],[[-0.023764966055751,-0.01016738358885,-0.0075856484472752],[0.010950297117233,0.066899850964546,0.01208970323205],[0.005307930521667,0.12419846653938,0.026724185794592]],[[-0.049482271075249,-0.014031804166734,-0.022146716713905],[0.0039052939973772,0.040736962109804,-0.021146979182959],[-0.011101210489869,0.033167619258165,0.038675528019667]],[[0.034044444561005,0.027604239061475,-0.024345383048058],[-0.051992282271385,0.083049163222313,-0.022146042436361],[-0.037385057657957,0.1141828969121,-0.065351963043213]],[[0.0030292158480734,-0.073942884802818,-0.0045215440914035],[0.022105935961008,-0.070776484906673,0.046442229300737],[-0.0295843873173,0.04483700171113,0.075857646763325]],[[0.013991604559124,0.037178214639425,-0.031193861737847],[-0.017628965899348,0.12517242133617,0.091463983058929],[0.04363988339901,-0.023867854848504,-0.20656920969486]],[[0.0056549930013716,0.0014126695459709,-0.0082230614498258],[-0.028060561046004,-0.057698387652636,-0.032753869891167],[-0.038745626807213,-0.012487132102251,-0.04647483304143]],[[0.021286739036441,-0.011137492954731,-0.12362357228994],[0.045665480196476,0.083175770938396,-0.13563504815102],[0.030801892280579,0.083025388419628,-0.10124480724335]],[[0.010216725990176,-0.0026941881515086,0.021346325054765],[0.024156130850315,0.054708696901798,0.046146016567945],[0.072138242423534,0.032870933413506,0.013701684772968]],[[-0.014963140711188,0.070188485085964,-0.035606574267149],[-0.04523890838027,0.027072373777628,-0.039245307445526],[-0.097535319626331,-0.072564877569675,-0.003587853629142]],[[-0.046280652284622,0.11261006444693,0.093413792550564],[0.014740486629307,0.10281832516193,0.015761587768793],[0.11041488498449,0.031280044466257,0.035858009010553]],[[0.003679073182866,0.035720251500607,-0.0053613255731761],[-0.085567630827427,0.024427575990558,-0.069116190075874],[-0.0030919124837965,0.03087367489934,-0.041786804795265]],[[0.042782478034496,-0.0058038830757141,0.028564533218741],[-0.037358641624451,0.017397133633494,-0.02023096382618],[0.0092366226017475,0.011032943613827,-0.069631785154343]],[[-0.087721720337868,-0.061049867421389,-0.035035271197557],[0.012876452878118,0.063854910433292,-0.010634491220117],[0.0060124299488962,0.020980989560485,-0.0034560312051326]],[[-0.031487479805946,-0.043503075838089,0.043536905199289],[-0.067476570606232,0.056607808917761,0.045855138450861],[-0.050297446548939,-0.042650815099478,0.039110582321882]],[[-0.017817137762904,0.034475743770599,-0.060833431780338],[-0.026590254157782,0.0087634148076177,-0.094048567116261],[-0.08698359131813,0.040840458124876,0.14977495372295]],[[-0.015462107025087,-0.066250666975975,0.05977438390255],[0.0064921397715807,-0.013049336150289,-0.0031463156919926],[0.031711764633656,0.15751172602177,-0.12612488865852]],[[-0.0034586458932608,-0.0094693973660469,0.078019551932812],[0.038211222738028,-0.068242684006691,0.0072147781029344],[0.038119945675135,0.086564563214779,-0.0065278671681881]],[[-0.0032119208481163,-0.0022067811805755,-0.0029419427737594],[0.051319301128387,-0.0023181212600321,-0.0074676470831037],[-0.03318965062499,0.022580802440643,-0.0075374888256192]],[[0.08012580126524,-0.13071984052658,-0.078035034239292],[0.051187384873629,-0.044710990041494,0.020667690783739],[-0.068895600736141,0.0099941175431013,-0.012052623555064]],[[0.038077149540186,-0.019931500777602,0.033084936439991],[0.066562458872795,-0.048045568168163,0.0056813829578459],[0.08050923794508,0.032189723104239,-0.032564498484135]],[[-0.017654210329056,-0.013887902721763,-0.02542581781745],[-0.022227190434933,0.068614013493061,0.0030512611847371],[0.059465374797583,-0.034947548061609,-0.028356865048409]],[[0.0089130708947778,0.0065878056921065,-0.015704875811934],[0.042007073760033,0.054682742804289,-0.010440741665661],[-0.042833726853132,0.06941931694746,-0.069117896258831]]],[[[-0.082996197044849,-0.056233942508698,-0.026813011616468],[-0.042045909911394,0.14267092943192,-0.024460652843118],[0.11732973903418,-0.098563529551029,-0.18473017215729]],[[0.0034287213347852,-0.01921116374433,0.057823814451694],[-0.061140283942223,0.1162747964263,0.22763682901859],[0.15559256076813,0.16279418766499,0.18562722206116]],[[-0.095291212201118,-0.12029653042555,0.26933178305626],[-0.14051085710526,-0.060063946992159,0.16239640116692],[-0.059390049427748,0.1860890686512,0.045328058302402]],[[0.082128398120403,0.092950336635113,-0.1428824365139],[0.035913001745939,0.21669107675552,-0.0029116724617779],[-0.11903281509876,0.15608260035515,0.23200762271881]],[[-0.11722208559513,-0.073305636644363,0.09948842972517],[-0.0092150187119842,0.015252839773893,0.091459780931473],[0.090266935527325,0.03337823599577,0.090019024908543]],[[-6.3415704062209e-05,0.062343124300241,0.16672794520855],[0.098535276949406,0.065587878227234,0.093074962496758],[0.02477565035224,0.06959743052721,0.029010064899921]],[[-0.12880206108093,-0.0041920966468751,0.2014140188694],[-0.051865447312593,-0.036906983703375,0.27934336662292],[-0.024032656103373,0.030676778405905,0.11531084775925]],[[0.25128620862961,0.0059075630269945,-0.021886616945267],[-0.097731128334999,-0.1063916310668,-0.070650644600391],[-0.021515492349863,0.010584260337055,0.014255564659834]],[[0.071290113031864,0.12383020669222,-0.16676314175129],[0.11739629507065,-0.20910845696926,-0.19702553749084],[0.02882144600153,-0.055121392011642,0.12527525424957]],[[0.042120937258005,-0.10879781842232,-0.10294350981712],[-0.36506617069244,-0.16672573983669,-0.019249809905887],[0.012053391896188,-0.019897380843759,-0.059691220521927]],[[0.19315713644028,0.046681623905897,0.12153412401676],[0.026104789227247,-0.27682822942734,-0.020963337272406],[-0.033704571425915,-0.076209090650082,0.098405323922634]],[[-0.29584467411041,-0.36207655072212,-0.0002980510762427],[0.20778967440128,0.020438298583031,-0.1182523816824],[0.021169651299715,0.034485790878534,-0.007418539840728]],[[-0.10078828036785,0.10688553750515,0.13356424868107],[0.1809511333704,0.13957352936268,-0.41336780786514],[0.071204662322998,-0.051993809640408,-0.49604603648186]],[[-0.070714570581913,-0.026620853692293,0.052711419761181],[0.056595575064421,-0.12126330286264,0.062050577253103],[-0.10109426826239,-0.10349982231855,0.078846819698811]],[[-0.076379902660847,0.0086833629757166,-0.10211989283562],[-0.20056441426277,-0.23310063779354,-0.10228503495455],[0.06376701593399,-0.24946735799313,-0.24336282908916]],[[0.077742658555508,0.17323811352253,-0.016631430014968],[-0.0891253054142,-0.063620805740356,-0.19902928173542],[-0.2857945561409,-0.084026508033276,-0.083075113594532]],[[-0.11948103457689,-0.31727448105812,-0.36438122391701],[-0.22141775488853,-0.13384404778481,-0.024490211158991],[0.064904525876045,0.046447176486254,-0.2145718485117]],[[-0.021765267476439,-0.0010129883885384,-0.10110822319984],[0.1020880267024,-0.044569052755833,0.02480929158628],[0.052085541188717,-0.078617244958878,-0.01302547659725]],[[-0.056910507380962,-0.079214371740818,0.013294505886734],[-0.099930338561535,0.049088299274445,-0.046428497880697],[0.1731214672327,0.013016707263887,-0.067756623029709]],[[0.082257844507694,-0.10708574950695,0.2947111427784],[0.25335720181465,-0.047504391521215,0.22346846759319],[0.13694134354591,-0.044734362512827,0.10987909883261]],[[-0.019357914105058,0.044608540832996,0.17086365818977],[0.15821082890034,0.10617613047361,0.070184789597988],[-0.092736005783081,-0.10771393030882,0.01020544487983]],[[0.12160047888756,0.11952781677246,-0.042398016899824],[0.008176458068192,0.080406077206135,0.13423782587051],[0.17366687953472,0.081246681511402,0.25058481097221]],[[-0.15600752830505,0.045608337968588,0.10609344393015],[0.14626540243626,0.065461501479149,-0.14583531022072],[0.042158659547567,-0.080699875950813,-0.044764652848244]],[[0.11070370674133,0.19547115266323,-0.067442148923874],[-0.28249564766884,0.029152456671,-0.015300991013646],[-0.30818316340446,-0.29394888877869,-0.088225647807121]],[[-0.043715760111809,0.05799487605691,0.049801677465439],[-0.1456506550312,0.16640028357506,0.2149610966444],[-0.33606544137001,0.015488267876208,0.12146667391062]],[[0.19406343996525,0.18298833072186,0.014093002304435],[0.23177950084209,0.058354377746582,-0.050958681851625],[0.35476776957512,0.23896689713001,-0.085107460618019]],[[0.17033052444458,0.042897690087557,0.061287999153137],[0.12410037219524,-0.062596842646599,0.11373098194599],[0.065015688538551,-0.1090774834156,0.065455064177513]],[[0.052207514643669,-0.23836998641491,0.012103796005249],[0.038628868758678,-0.065357096493244,-0.24366796016693],[0.16573344171047,0.012614919804037,-0.015273123979568]],[[-0.18843156099319,-0.11048095673323,0.044808451086283],[-0.25163441896439,-0.013385972008109,0.12860462069511],[-0.016682179644704,0.036221086978912,0.14016975462437]],[[-0.087606124579906,-0.091729290783405,0.021427340805531],[0.054480034857988,-0.0083917574957013,-0.075949318706989],[0.033244375139475,-0.12708821892738,-0.10261023044586]],[[-0.080335505306721,-0.13951078057289,-0.12696275115013],[0.10886086523533,-0.013877723366022,-0.15064339339733],[-0.061164949089289,-0.03447999060154,0.035227730870247]],[[-0.085821405053139,-0.024860870093107,-0.15858007967472],[0.059587892144918,-0.028931418433785,-0.29157948493958],[0.079775266349316,0.079531148076057,-0.049622256308794]],[[-0.014836240559816,-0.024217832833529,-0.051514524966478],[0.056312687695026,0.040843870490789,0.063195154070854],[-0.11914017051458,-0.09048031270504,-0.10362492501736]],[[-0.070681400597095,-0.021194130182266,0.086818180978298],[-0.043989822268486,0.076149336993694,0.16107480227947],[0.17060519754887,0.25785040855408,0.072206445038319]],[[0.052388962358236,0.046307623386383,0.037257421761751],[0.096336364746094,0.087443791329861,0.14554125070572],[-0.057665158063173,-0.031472757458687,0.080794222652912]],[[-0.072337001562119,-0.085411086678505,-0.038004204630852],[0.13651958107948,-0.093337774276733,-0.066170506179333],[0.22067435085773,-0.057611849159002,-0.010385496541858]],[[-0.023886194452643,-0.1088794991374,-0.11933674663305],[-0.11425491422415,-0.066443800926208,-0.19219943881035],[-0.059760589152575,-0.090705581009388,-0.051558528095484]],[[-0.21771037578583,0.10793788731098,0.17470069229603],[-0.15696409344673,0.024854648858309,0.26028901338577],[-0.12552562355995,-0.12573337554932,0.097964011132717]],[[0.13744448125362,-0.09759147465229,0.15432012081146],[0.12517458200455,0.052741713821888,-0.053894016891718],[0.10808508098125,0.047464959323406,-0.095875337719917]],[[0.045940391719341,0.040124524384737,0.29272383451462],[0.019827205687761,0.021742161363363,-0.086170203983784],[0.0073946425691247,0.045740108937025,-0.07100710272789]],[[0.029309188947082,0.026739621534944,0.072047352790833],[0.019425531849265,-0.021750193089247,-0.011228980496526],[-0.28488993644714,-0.1078707203269,-0.16456139087677]],[[0.055601384490728,0.13176545500755,0.19770039618015],[-0.11128081381321,0.10126808285713,0.26283466815948],[-0.013445392251015,-0.087890438735485,0.12473555654287]],[[-0.0096571408212185,-0.023738292977214,0.14959518611431],[0.13630336523056,0.11286589503288,0.17612601816654],[0.14380976557732,0.2609161734581,0.22781829535961]],[[0.066268391907215,0.057059362530708,-0.012958424165845],[0.034664448350668,0.036035567522049,-0.031472753733397],[-0.23878398537636,-0.033310826867819,-0.081395484507084]],[[-0.08784182369709,-0.12062356621027,-0.18877206742764],[0.022539529949427,-0.034797284752131,0.044030133634806],[0.057002183049917,-0.00071374338585883,0.055709805339575]],[[-0.060021657496691,-0.14308099448681,-0.17393153905869],[0.12371150404215,-0.058290891349316,-0.00062767451163381],[-0.014280824922025,0.10293707251549,0.051812093704939]],[[0.19642770290375,0.032730612903833,0.086264863610268],[0.1123496517539,0.049987502396107,0.19114711880684],[-0.20823290944099,0.066826663911343,0.11760201305151]],[[-0.071234501898289,0.034096546471119,-0.14359985291958],[-0.0008461699471809,0.18394212424755,-0.1264341622591],[-0.09890116751194,0.078639231622219,0.0016499613411725]],[[0.019109776243567,0.089016437530518,0.099985763430595],[-0.1195427775383,-0.16984003782272,-0.039737705141306],[-0.060760784894228,-0.14884604513645,-0.0036405113060027]],[[0.12231729179621,0.015747705474496,0.15398959815502],[0.16089953482151,0.076243981719017,0.043118067085743],[0.053717777132988,0.049353748559952,0.11822813749313]],[[0.0069939726963639,-0.13771145045757,-0.15359787642956],[-0.049020998179913,0.0096117192879319,0.028572691604495],[-0.030211327597499,0.065336786210537,0.022945754230022]],[[-0.02215769328177,0.090722188353539,0.035761084407568],[0.089989341795444,-0.041069995611906,0.017019040882587],[0.0039564003236592,-0.15522648394108,-0.059387605637312]],[[0.012016708031297,-0.032198164612055,-0.065950639545918],[0.17506085336208,0.095176689326763,-0.034438706934452],[0.042124629020691,-0.039242520928383,-0.071389757096767]],[[-0.049241229891777,-0.17869333922863,-0.11731959879398],[-0.18792895972729,-0.20182441174984,-0.38681980967522],[0.031104888767004,0.0908133238554,0.036730345338583]],[[-0.061145335435867,-0.081914864480495,0.037662923336029],[-0.0067080580629408,-0.095925882458687,-0.03153920173645],[-0.23564924299717,-0.0028257328085601,0.086859203875065]],[[0.091014765202999,-0.047200050204992,-0.096182517707348],[-0.065405696630478,-0.19420571625233,-0.18262678384781],[0.016973467543721,0.14947767555714,-0.051328040659428]],[[0.1470489948988,0.11520309746265,0.195577070117],[0.038095597177744,-0.060703013092279,0.10123383998871],[0.012431954964995,-0.13318394124508,-0.080582864582539]],[[0.032416228204966,0.079463623464108,-0.099538035690784],[0.021925158798695,0.11984159052372,-0.11316271871328],[0.07104155421257,0.0015652653528377,-0.098133057355881]],[[-0.083964116871357,-0.23324742913246,-0.086376547813416],[-0.092112220823765,0.0053957267664373,0.035729851573706],[0.029184581711888,0.11185936629772,0.020860768854618]],[[-0.091260254383087,-0.18303607404232,-0.14037261903286],[0.0082763414829969,0.094733692705631,0.13769802451134],[0.073397897183895,-0.003738830331713,0.069777362048626]],[[0.055423744022846,0.090702474117279,-0.15497487783432],[-0.079491585493088,0.091332882642746,-0.17809067666531],[-0.073101714253426,0.1111211925745,0.056740466505289]],[[0.13402445614338,-0.024301690980792,-0.033210340887308],[-0.2243529856205,-0.29936608672142,-0.052281346172094],[-0.0041681895963848,-0.002734481357038,0.032276652753353]],[[-0.13711984455585,0.10361573845148,0.065587051212788],[0.032966431230307,-0.11072909086943,-0.053248941898346],[0.18253099918365,0.17222210764885,0.026271462440491]],[[-0.0011406670091674,0.069449886679649,-0.17414581775665],[-0.1616403311491,-0.076199889183044,-0.063996978104115],[-0.075479991734028,-0.00080237293150276,0.0089202513918281]],[[-0.17303067445755,-0.032632380723953,-0.1307325065136],[-0.10376021265984,-0.031860176473856,-0.18708522617817],[0.016570242121816,-0.053673036396503,-0.087861321866512]],[[-0.057467125356197,-0.017213229089975,0.21143354475498],[0.0080762635916471,0.06192084774375,0.085271909832954],[0.080195344984531,0.026906063780189,0.061586748808622]],[[0.1415338665247,-0.13887283205986,-0.13583153486252],[-0.19804446399212,-0.095091938972473,-0.15591470897198],[-0.049047581851482,0.10444352030754,-0.28319361805916]],[[0.093123771250248,-0.10090404003859,-0.147465929389],[0.071818366646767,0.049263820052147,-0.0013842330081388],[-0.024290524423122,0.11865427345037,0.091678820550442]],[[-0.15819720923901,0.055921655148268,-0.025735761970282],[0.020694253966212,0.1749913841486,0.074089638888836],[0.29047951102257,0.2031157463789,0.13685683906078]],[[0.09328830242157,-0.033818773925304,-0.13320603966713],[0.075616806745529,-0.06581936776638,-0.048751410096884],[0.22676326334476,0.27047157287598,0.064391016960144]],[[-0.083979487419128,0.11928428709507,0.3792516887188],[-0.068289786577225,-0.050707686692476,-0.3601832985878],[-0.078680448234081,0.084746174514294,0.10076107084751]],[[-0.060876999050379,-0.082265004515648,-0.38325130939484],[-0.028716959059238,0.0068196719512343,-0.13767471909523],[0.047910206019878,0.057468328624964,0.024293541908264]],[[-0.35937967896461,-0.11541470140219,-0.132069632411],[-0.060117624700069,-0.013336106203496,0.028956864029169],[0.032129131257534,-0.046270381659269,0.082692861557007]],[[0.052070092409849,0.098810531198978,0.04257432743907],[0.19540350139141,0.10305520892143,-0.31010222434998],[0.30808052420616,-0.064317643642426,-0.1242920383811]],[[-0.26196658611298,0.046932861208916,0.060562618076801],[0.065196998417377,-0.26338389515877,-0.11976367980242],[-0.012662246823311,-0.13480319082737,-0.091728061437607]],[[-0.030809020623565,-0.035754036158323,0.061647072434425],[0.13713756203651,-0.01229761634022,0.12421482056379],[0.13761100172997,0.098626039922237,-0.10114423185587]],[[-0.019166897982359,0.1758691817522,0.26040935516357],[-0.19296500086784,-0.070920065045357,0.16897238790989],[0.016184370964766,0.012801456265152,0.047008499503136]],[[-0.11267837882042,-0.068033173680305,-0.2817260324955],[-0.029731806367636,0.1646142154932,-0.03923461958766],[-0.011462637223303,0.16972380876541,0.063544347882271]],[[-0.072547435760498,-0.094007112085819,-0.13155481219292],[-0.22303402423859,-0.043790355324745,0.052999503910542],[0.064167529344559,0.12401496618986,0.015926297754049]],[[-0.065116323530674,-0.009449296630919,0.10841105878353],[0.085921809077263,0.057085160166025,-0.15756870806217],[0.12997370958328,0.12059624493122,-0.24672567844391]],[[-0.090463452041149,-0.089089445769787,-0.094694465398788],[0.12485811859369,0.079921789467335,-0.0026227121707052],[-0.12498796731234,-0.022324299439788,0.048782467842102]],[[-0.1002160385251,0.021679516881704,0.052105944603682],[-0.017729805782437,-0.032879091799259,0.20058855414391],[0.099958695471287,0.052493765950203,0.01698362082243]],[[0.038560416549444,0.020852128043771,-0.053251720964909],[-0.038547154515982,0.11895852535963,0.10784071683884],[0.10817630589008,-0.031338103115559,-0.074964478611946]],[[-0.052812710404396,0.0031299898400903,0.030730970203876],[0.025347776710987,-0.0032396833412349,0.050575986504555],[0.13502295315266,0.046935278922319,0.012195078656077]],[[0.08522467315197,0.052140343934298,0.064255133271217],[0.095176309347153,0.0097242072224617,0.073539234697819],[0.024868221953511,-0.032141640782356,0.014368646778166]],[[-0.032196491956711,-0.028153797611594,0.012651758268476],[0.12300810962915,-0.057428002357483,0.093305476009846],[-0.024317560717463,-0.065425544977188,0.031332679092884]],[[0.12089396268129,0.1094970703125,0.2257355004549],[0.016936818137765,-0.025934744626284,-0.17774951457977],[-0.14164239168167,-0.053058713674545,0.040386069566011]],[[0.077630281448364,0.019441103562713,0.17738690972328],[-0.0020400930661708,0.12545195221901,0.022535623982549],[-0.095064416527748,0.21623864769936,0.093912936747074]],[[0.13017511367798,-0.095704667270184,-0.13936614990234],[-0.16572396457195,-0.20446807146072,0.10003777593374],[-0.037461306899786,0.016537634655833,0.091119267046452]],[[0.027586821466684,-0.0033846367150545,-0.031453594565392],[-0.1364044547081,-0.16966646909714,-0.00059391255490482],[-0.13084729015827,-0.17841689288616,0.047610431909561]],[[-0.060249619185925,0.18558070063591,0.088452942669392],[-0.17082972824574,0.059185523539782,0.061924815177917],[-0.023125723004341,-0.033123649656773,0.016583025455475]],[[0.093143068253994,-0.0078506674617529,0.019252043217421],[0.23824208974838,0.11219916492701,0.2478931248188],[0.051865488290787,0.21637754142284,0.26814812421799]],[[0.013761010020971,-0.1157503053546,-0.046820409595966],[0.067544624209404,0.013122507371008,0.029428027570248],[-0.088246203958988,-0.077707201242447,-0.19010983407497]],[[0.15933334827423,0.055775426328182,-0.091289721429348],[0.010209686122835,-0.0005591475055553,0.022953968495131],[0.034860301762819,0.026015788316727,0.050187539309263]],[[0.11641877144575,0.14388944208622,0.064265921711922],[0.12849925458431,-0.006741545163095,-0.016252944245934],[-0.050706669688225,-0.11923491954803,0.053384486585855]],[[0.10236648470163,0.1532389819622,-0.37409850955009],[0.18519952893257,-0.14681899547577,-0.017616353929043],[-0.10599929094315,0.02875298447907,0.1545508056879]],[[-0.051065731793642,-0.064760729670525,-0.087705925107002],[-0.23323076963425,-0.14513655006886,-0.021151596680284],[-0.037769056856632,-0.18755947053432,-0.061268359422684]],[[0.080340094864368,-0.047184940427542,0.063662603497505],[0.072992518544197,0.050980042666197,0.23507291078568],[0.013935420662165,-0.068356908857822,0.085552215576172]],[[-0.091387845575809,-0.08669101446867,-0.016034778207541],[0.049016423523426,0.19699560105801,0.048483777791262],[0.040250401943922,0.1477030813694,0.080482259392738]],[[0.10513692349195,0.17164240777493,-0.13718047738075],[0.0089209182187915,0.1269103884697,-0.13053907454014],[0.065545670688152,0.049995213747025,-0.1272901147604]],[[-0.14612324535847,0.1090028360486,0.037328075617552],[0.008765434846282,0.092201501131058,-0.0057655936107039],[-0.019236404448748,-0.018496342003345,0.050504364073277]],[[0.033973824232817,-0.084005445241928,-0.22279906272888],[-0.016337551176548,-0.021051097661257,0.047013647854328],[-0.0025634213816375,0.081639528274536,0.13745279610157]],[[-0.14226396381855,-0.17285308241844,-0.034945912659168],[-0.19637867808342,-0.27156573534012,0.035413097590208],[-0.0048050316981971,0.057748038321733,-0.075817488133907]],[[-0.045667793601751,0.038630217313766,0.23448963463306],[-0.13480070233345,0.13656817376614,0.017236052080989],[0.118324264884,-0.00014225668564904,-0.074329152703285]],[[0.024198397994041,-0.098525643348694,-0.021932205185294],[-0.060194987803698,-0.094369508326054,0.052947580814362],[-0.085456773638725,-0.16390587389469,-0.1303121894598]],[[0.11190935969353,0.15067693591118,-0.00084180093836039],[-0.11302804201841,0.0007328552310355,0.082473754882812],[0.049202058464289,-0.014126230962574,0.0031014564447105]],[[0.16810810565948,0.010344476439059,-0.06521325558424],[0.18267714977264,0.0070363422855735,0.15527464449406],[0.1074555143714,-0.11687359213829,0.046733722090721]],[[0.00048777478514239,0.10669171065092,0.069605477154255],[0.021215436980128,0.18932656943798,0.093502141535282],[-0.00019132683519274,-0.13160093128681,0.039359070360661]],[[0.047822382301092,-0.010797558352351,-0.12408645451069],[0.053788691759109,0.057255644351244,0.068265594542027],[0.055331632494926,-0.064778782427311,0.088743112981319]],[[0.11151427030563,0.11950968205929,-0.18396344780922],[0.088444754481316,0.045143481343985,-0.070513881742954],[0.0095361238345504,0.029412338510156,0.070264980196953]],[[-0.20784977078438,-0.10596144199371,0.024603823199868],[-0.059875804930925,-0.018550677224994,0.055395003408194],[0.076389744877815,0.096963569521904,0.11584698408842]],[[-0.0025294320657849,0.032275345176458,0.048573985695839],[0.06990011036396,0.045509327203035,0.15355759859085],[0.12242151796818,0.17623488605022,-0.065296575427055]],[[0.092163808643818,-0.010413073003292,-0.15910787880421],[0.098690986633301,0.043440043926239,0.19057878851891],[0.19177801907063,0.074513867497444,0.14580251276493]],[[0.10355494171381,0.041993323713541,0.070201776921749],[0.12298032641411,0.059521500021219,-0.10903080552816],[-0.086520999670029,0.0047680786810815,-0.03825007379055]],[[0.043733727186918,-0.018457954749465,0.011499485932291],[-0.0016476942691952,0.043950114399195,0.001473403419368],[-0.014801611192524,0.016983106732368,0.084513127803802]],[[-0.059245593845844,-0.31339490413666,-0.095417872071266],[-0.14416337013245,-0.043341748416424,-0.011520559899509],[0.041865464299917,0.01552202180028,0.10300346463919]],[[-0.051099296659231,-0.090118207037449,0.0063285431824625],[0.067533507943153,-0.067093335092068,0.0068133729510009],[0.054130990058184,-0.020553471520543,-0.025793306529522]],[[0.097283512353897,-0.039613742381334,-0.058873973786831],[-0.090611055493355,-0.18726374208927,-0.18371523916721],[0.15033705532551,0.065849974751472,0.062917843461037]],[[-0.024744229391217,0.075920484960079,0.054356586188078],[0.10519869625568,0.011531719937921,-0.018430104479194],[0.045805584639311,-0.037565264850855,-0.1008515432477]],[[-0.20114919543266,0.051338937133551,0.055910706520081],[0.22429117560387,0.13983660936356,-0.10045116394758],[-0.17612199485302,-0.14201007783413,0.062054064124823]],[[-0.14960658550262,-0.18715772032738,-0.21028284728527],[-0.14826026558876,-0.10969846695662,-0.082426071166992],[-0.061299957334995,-0.16090193390846,-0.077958360314369]],[[0.085650436580181,0.034688830375671,0.10098975151777],[0.18056839704514,0.22213280200958,0.024503972381353],[0.094018988311291,0.13995487987995,0.094176575541496]],[[-0.081699945032597,0.098002150654793,0.11058256030083],[-0.21692456305027,-0.19736133515835,-0.045727256685495],[-0.099851354956627,-0.23385836184025,-0.078021548688412]],[[0.066068761050701,0.07844764739275,0.063450954854488],[0.0046535991132259,0.069456547498703,-0.01129088550806],[0.11526750773191,0.071985870599747,0.013900515623391]],[[-0.17368420958519,0.0020999680273235,0.020883549004793],[0.0036954923998564,0.020014550536871,0.073645919561386],[0.13619345426559,-0.015727870166302,0.012789615429938]],[[-0.060738798230886,-0.052135109901428,-0.16372808814049],[0.033424861729145,0.028856508433819,-0.080326274037361],[0.027587827295065,0.037287943065166,0.1434306204319]],[[0.0073354137130082,0.023748882114887,0.098495863378048],[0.017326114699244,0.20998595654964,-0.047462657094002],[-0.13293626904488,0.060794286429882,0.059331938624382]],[[0.067829266190529,0.21342101693153,0.29001352190971],[-0.099825896322727,0.12073010951281,-0.022029440850019],[0.079590752720833,0.042115218937397,0.029675142839551]]],[[[-0.037904910743237,0.04201402887702,-0.076923713088036],[-0.00082840339746326,0.015205228701234,-0.02952528372407],[0.050201207399368,-0.028869697824121,-0.016825065016747]],[[0.05094563215971,0.11318142712116,0.055579848587513],[0.010548697784543,-0.060214959084988,0.014286315999925],[-0.024595443159342,0.049561038613319,0.044492520391941]],[[-0.035047940909863,0.11191350966692,0.016986900940537],[-0.096747972071171,-0.031499803066254,-0.044998079538345],[0.052126433700323,0.11425463855267,-0.014518409967422]],[[0.1027350500226,0.024064535275102,-0.10495340824127],[0.084293760359287,0.1254774928093,0.045057147741318],[-0.035946886986494,-0.029858807101846,-0.043323859572411]],[[-0.069472536444664,-0.029629474505782,-0.11218804121017],[0.08170472830534,-0.0077603496611118,-0.01536687463522],[0.068532191216946,0.012182766571641,0.12945131957531]],[[-0.019003106281161,-0.050316866487265,-0.051118765026331],[0.11543649435043,0.037672683596611,0.05778044834733],[0.001843778649345,0.013146730139852,0.023267235606909]],[[-0.0094020869582891,0.036163002252579,-0.031925197690725],[0.0097922030836344,-0.049961965531111,0.078227125108242],[-0.0035094879567623,-0.094349935650826,-0.079102978110313]],[[0.038957871496677,-0.071695193648338,-0.039073638617992],[0.048830043524504,-0.011319593526423,-0.042656484991312],[-0.0036898609250784,-0.01182821020484,0.028621232137084]],[[-0.07364983856678,-0.046761482954025,0.051763135939837],[0.040132883936167,-0.034894466400146,0.15672633051872],[0.03917820006609,0.12852613627911,-0.1013392880559]],[[0.062479820102453,-0.09455381333828,0.035809423774481],[0.020569058135152,0.13689833879471,0.018724260851741],[0.029524981975555,-0.075641252100468,0.060132090002298]],[[0.034272596240044,0.11217056959867,0.074142508208752],[-0.018645217642188,0.0069978437386453,0.10107217729092],[-0.015784146264195,-0.084366649389267,-0.027479944750667]],[[-0.02086902782321,-0.11819573491812,-0.30628588795662],[-0.088527478277683,-0.03271247074008,-0.0092897284775972],[0.032086793333292,0.020744364708662,-0.041859086602926]],[[0.023093026131392,-0.052636858075857,0.073264189064503],[-0.083281435072422,0.023711616173387,-0.068540617823601],[0.020960399881005,0.0022982060909271,-0.065288797020912]],[[-0.07700403034687,-0.075562618672848,0.032875683158636],[-0.10327684134245,-0.14511424303055,-0.052070938050747],[-0.013824140653014,-0.095133922994137,-0.11430777609348]],[[0.04958276450634,0.070748426020145,-0.0088176848366857],[0.1082419231534,0.072135508060455,-0.021830374374986],[0.0029878506902605,0.090489096939564,0.08467973023653]],[[0.015522812493145,-0.080499224364758,-0.025542350485921],[0.16850152611732,-0.096363112330437,-0.11266712099314],[-0.040225345641375,-0.12529072165489,-0.032289039343596]],[[0.060368809849024,0.058570973575115,-0.052577868103981],[-0.0047581666149199,-0.012753980234265,0.089718334376812],[0.051005631685257,0.054414268583059,0.032156907021999]],[[-0.036592617630959,-0.042811784893274,-0.031819276511669],[-0.057267256081104,-0.011428691446781,0.023904440924525],[-0.018365763127804,0.048428639769554,0.11910706013441]],[[-0.03855037689209,-0.0094219595193863,0.0032544923014939],[0.053996112197638,-0.051426813006401,-0.070465862751007],[-0.0024832924827933,-0.090559780597687,-0.064531318843365]],[[-0.054772756993771,-0.069791212677956,-0.00088512897491455],[0.060923561453819,0.05875289440155,-0.075453728437424],[0.13234782218933,-0.069500051438808,-0.037731401622295]],[[-0.17225754261017,-0.041598994284868,-0.00018101866589859],[-0.043061930686235,0.024209301918745,0.082372963428497],[0.0010570357553661,-0.049577042460442,0.012173363938928]],[[0.12610404193401,0.04379328340292,0.085966773331165],[0.008342077024281,-0.014132277108729,0.011442512273788],[-0.1434079259634,-0.016562178730965,-0.022212764248252]],[[-0.050766557455063,-0.0050984709523618,0.048833474516869],[0.044075772166252,-0.056350968778133,-0.14951966702938],[0.0076632709242404,0.004904477391392,-0.0027040883433074]],[[0.17441542446613,-0.0080217029899359,0.0099280970171094],[-0.020059378817677,0.084390595555305,-0.082563690841198],[-0.13176286220551,-0.038822326809168,-0.02973847836256]],[[0.064382173120975,-0.088201396167278,0.021528504788876],[0.053207021206617,0.065696604549885,-0.0031817019917071],[0.11628193408251,-0.14689555764198,-0.051270671188831]],[[-0.0061745280399919,-0.044648818671703,-0.099541269242764],[-0.048378828912973,-0.049422722309828,0.040362626314163],[-0.15575765073299,-0.073652319610119,-0.043955840170383]],[[-0.059400718659163,-0.014024497941136,0.0029103606939316],[-0.047345709055662,-0.11527752876282,-0.024428822100163],[0.088999599218369,0.017381748184562,0.099984116852283]],[[-0.046095326542854,-0.050732493400574,0.03844902291894],[-0.083716727793217,0.032155890017748,-0.064071327447891],[-0.017909858375788,-0.01911442913115,0.15505969524384]],[[-0.047722477465868,-0.10089667141438,-0.1371281594038],[0.014671855606139,0.0099157961085439,-0.20316381752491],[0.073989585042,0.072663143277168,0.03281258046627]],[[0.05111712962389,-0.0025485195219517,0.094284802675247],[0.10717466473579,-0.051692318171263,-0.10766262561083],[0.051929838955402,-0.097970388829708,0.0464584864676]],[[-0.10736035555601,-0.052640095353127,-0.077419124543667],[0.001257615396753,0.027662046253681,0.045678813010454],[0.042704492807388,-0.0048888092860579,-0.084135614335537]],[[-0.093407846987247,-0.030486429110169,0.082925371825695],[0.080574221909046,0.088144212961197,-0.036565683782101],[-0.06035690382123,-0.13381192088127,0.10026260465384]],[[0.058167673647404,-0.0012872904771939,-0.0051926216110587],[0.069377668201923,-0.037995807826519,-0.028478737920523],[-0.097626872360706,-0.13458609580994,0.05887608230114]],[[-0.0016442864434794,0.060561306774616,-0.067593462765217],[-0.0094092134386301,-0.051596898585558,-0.12909722328186],[0.0033261207863688,0.15418462455273,-0.063453584909439]],[[-0.06315591186285,0.085360467433929,0.053217615932226],[-0.050480712205172,-0.029381185770035,-0.068718791007996],[-0.11187620460987,0.051168795675039,-0.018610868602991]],[[0.015009411610663,0.073067255318165,0.06054038181901],[-0.025941221043468,-0.02818220667541,-0.043275602161884],[0.020250737667084,0.058270715177059,-0.0036406959407032]],[[0.019461985677481,-0.026324851438403,0.13724568486214],[0.10287376493216,-0.028774756938219,-0.030695669353008],[0.076685637235641,0.095230527222157,0.038947124034166]],[[0.086768180131912,-0.0042711226269603,0.016736237332225],[0.10027687996626,0.012008180841804,-0.040442287921906],[-0.1100365370512,-0.055722795426846,0.16766962409019]],[[0.065911062061787,0.11497647315264,0.04890963435173],[-0.022660622373223,-0.075770825147629,-0.034375727176666],[-0.031832978129387,-0.095297232270241,-0.025123925879598]],[[0.014222367666662,0.032950185239315,0.1480471342802],[0.10887681692839,-0.0061220419593155,0.057102598249912],[-0.017256701365113,-0.02632556296885,-0.13708709180355]],[[-0.04593314230442,-0.069293648004532,0.054794806987047],[0.073908776044846,0.088590286672115,-0.048659335821867],[0.017166826874018,0.080624401569366,0.1477989256382]],[[0.052736561745405,-0.013254627585411,-0.083706423640251],[0.12889790534973,0.071763016283512,0.037673272192478],[0.066673025488853,-0.0033202997874469,0.03156029060483]],[[-0.091257594525814,-0.024743439629674,-0.020207159221172],[-0.0012272557942197,-0.0343800149858,0.0060632359236479],[0.019623620435596,0.019891807809472,0.079048648476601]],[[0.054138068109751,0.0059346775524318,-0.012822742573917],[-0.058784477412701,0.041458647698164,-0.091243512928486],[-0.066990092396736,0.009568084962666,-0.14006586372852]],[[-0.034056548029184,-0.14124467968941,-0.093938209116459],[-0.019384263083339,0.066013276576996,0.05268881842494],[-0.09131545573473,0.0073237321339548,-0.063790090382099]],[[0.032445896416903,-0.10251028835773,-0.060481961816549],[-0.029608426615596,-0.085118442773819,0.046825259923935],[-0.09889479726553,-0.040885150432587,0.069330163300037]],[[-0.045997895300388,-0.06644381582737,-0.049769308418036],[-0.015140059404075,-0.085092142224312,0.041359603404999],[-0.10793821513653,0.001360741793178,-0.033171776682138]],[[-0.039772544056177,-0.071230717003345,0.018014332279563],[0.087520949542522,0.042007081210613,-0.0071285753510892],[0.069886811077595,-0.058865513652563,-0.026179308071733]],[[0.031157106161118,0.027312876656651,0.1272354722023],[0.04264410212636,-0.047223299741745,-0.13298298418522],[0.048499006778002,-0.20592315495014,-0.052858788520098]],[[-0.05495672300458,-0.055231358855963,0.085581831634045],[-0.078536324203014,-0.065230175852776,-0.02811156027019],[-0.041113667190075,-0.1420324742794,-0.045931156724691]],[[-0.099491268396378,0.015436397865415,-0.024419579654932],[-0.12197499722242,-0.15542833507061,-0.019616292789578],[-0.023451745510101,-0.15985284745693,-0.013194520026445]],[[-0.1768706291914,0.045973237603903,-0.058315254747868],[-0.10878293961287,-0.023233588784933,-0.042367838323116],[-0.012286320328712,0.089465886354446,0.028815591707826]],[[-0.0077813300304115,0.049134775996208,0.0080249533057213],[-0.076215617358685,-0.017393447458744,-0.0091130640357733],[-0.063609547913074,-0.018492098897696,-0.046501267701387]],[[0.069806784391403,0.041661988943815,0.015588361769915],[0.042249869555235,0.05014119297266,0.038792703300714],[0.04375946521759,0.095696404576302,0.10901187360287]],[[0.0085699399933219,0.099304430186749,-0.0068631018511951],[0.057276267558336,-0.029756477102637,0.06049595400691],[-0.14026300609112,-0.048577677458525,-0.0059635848738253]],[[0.15448352694511,0.012160125188529,0.019924553111196],[-0.10938601195812,-0.0012065654154867,0.07927006483078],[-0.0092146014794707,-0.016279825940728,-0.094957120716572]],[[-0.11992762237787,-0.096234820783138,-0.078526556491852],[0.071193970739841,-0.028633745387197,-0.01941435597837],[-0.09318570047617,-0.015606637112796,-0.067951560020447]],[[0.00093094166368246,0.0073750745505095,-0.034282553941011],[-0.094714008271694,-0.024890432134271,-0.025425186380744],[-0.073295556008816,-0.025400307029486,-0.14732074737549]],[[-0.12476459890604,-0.19402612745762,-0.068993702530861],[-0.06461663544178,-0.030004573985934,0.0072856284677982],[-0.12893690168858,-0.083225883543491,0.1095994785428]],[[0.02633242867887,-0.022055556997657,-0.047739259898663],[-0.14771308004856,-0.084091320633888,-0.065970234572887],[0.050687603652477,0.090186759829521,-0.094440713524818]],[[-0.001406854018569,0.0038369293324649,0.0026192010845989],[-0.064835421741009,0.034909851849079,-0.10123648494482],[-0.057979490607977,0.15564922988415,0.0047185816802084]],[[0.11447101086378,0.049158569425344,0.060654107481241],[0.11596056073904,-0.030050890520215,0.048568286001682],[0.018306460231543,0.086287543177605,0.04868470877409]],[[-0.00013098966155667,0.041546825319529,0.032167077064514],[-0.084642700850964,-0.005785008892417,-0.058073926717043],[-0.13372722268105,-0.013854909688234,0.0051639582961798]],[[-0.051428712904453,-0.0045246044173837,0.074505999684334],[-0.024574402719736,-0.074308544397354,-0.0098693948239088],[-0.069359973073006,0.084434300661087,0.030868513509631]],[[-0.16947624087334,-0.1267137080431,-0.088268347084522],[-0.093703664839268,-0.025736277922988,0.10062531381845],[0.0087001770734787,-0.05534116178751,-0.047799807041883]],[[0.0045304642990232,0.082530163228512,-0.056035820394754],[-0.074733406305313,0.04406376928091,0.033425856381655],[-0.15524816513062,-0.088900297880173,-0.0066226152703166]],[[0.052153091877699,0.038096494972706,0.11227923631668],[0.007941672578454,-0.0051549347117543,0.065636307001114],[-0.19214430451393,0.012643836438656,0.01741099730134]],[[0.073014132678509,-0.11374169588089,-0.019052751362324],[0.14202588796616,-0.031465914100409,-0.002475299872458],[-0.075813919305801,-0.11182916909456,0.021343586966395]],[[0.032600689679384,-0.15975545346737,-0.20652697980404],[0.014822325669229,-0.11007431149483,-0.15928207337856],[0.11439996212721,-0.020906960591674,-0.1156300380826]],[[-0.0058263237588108,-0.11177478730679,0.0087922923266888],[-0.02798711322248,0.015502865426242,0.0087063349783421],[0.017944592982531,0.046905789524317,-0.042022399604321]],[[-0.077827543020248,-0.014549892395735,-0.024646192789078],[-0.012879038229585,-0.030470279976726,-0.08271386474371],[-0.1095904558897,-0.078636661171913,0.044066041707993]],[[0.062616236507893,0.032188076525927,-0.0366315767169],[-0.039866276085377,0.010753592476249,-0.057599551975727],[0.020147826522589,0.0090962033718824,-0.054103419184685]],[[0.0049200938083231,0.078024208545685,-0.0086170714348555],[-0.075548462569714,-0.084727726876736,-0.08682356774807],[-0.011762053705752,-0.026886304840446,-0.14763812720776]],[[-0.049876157194376,0.0090043982490897,-0.068130932748318],[-0.056141961365938,0.0094745270907879,-0.11500792205334],[-0.030099596828222,-0.013041381724179,0.089523538947105]],[[-0.096850626170635,-0.10563358664513,-0.086176089942455],[0.075704477727413,-0.095471762120724,0.065315827727318],[0.015284136869013,-0.048238858580589,-0.015245988033712]],[[-0.059072196483612,0.082373410463333,-0.10994692146778],[0.066395275294781,0.06525581330061,0.013711790554225],[-0.02521601319313,0.030754148960114,0.089494787156582]],[[-0.076014660298824,0.044806782156229,0.072332672774792],[-0.082620777189732,0.022831667214632,-0.054333344101906],[0.072280682623386,0.089508004486561,-0.045381639152765]],[[-0.045273598283529,0.13534308969975,-0.031507834792137],[0.0096803018823266,-0.030300548300147,0.016644801944494],[-0.028854750096798,-0.0065551027655602,-0.030856095254421]],[[0.14451485872269,0.024061154574156,0.031886156648397],[-0.056473016738892,-0.18332417309284,0.090894758701324],[0.12607999145985,0.054389234632254,0.085757061839104]],[[-0.20179241895676,0.010403390042484,-0.028202144429088],[0.0052430601790547,-0.039629872888327,-0.053387183696032],[0.065398253500462,0.065319567918777,0.0047931149601936]],[[-0.045040991157293,-0.022735733538866,-0.055805429816246],[0.065633647143841,0.02524901740253,-0.0041542164981365],[0.063637956976891,0.13931335508823,0.028714312240481]],[[-0.077165633440018,-0.038226924836636,0.023740917444229],[-0.23176465928555,-0.11919822543859,-0.098211206495762],[0.062016822397709,-0.054213047027588,-0.0075136697851121]],[[-0.073974721133709,0.0098995082080364,-0.065280199050903],[-0.093749783933163,0.029000530019403,-0.0059309843927622],[0.022878108546138,-0.0093960640951991,0.042289111763239]],[[-0.073007375001907,-0.079467996954918,-0.029313860461116],[-0.081664636731148,-0.016735317185521,-0.067974142730236],[-0.084455490112305,-0.010060145519674,-0.12439508736134]],[[-0.056371968239546,-0.019854534417391,0.0030637951567769],[-0.0054667345248163,-0.15318731963634,0.069470204412937],[-0.013992037624121,0.049260914325714,0.094804145395756]],[[-0.054579332470894,-0.096521891653538,-0.15027315914631],[0.008436287753284,0.0448446162045,0.029876761138439],[-0.017264164984226,0.0067579657770693,0.0065980297513306]],[[0.01695897616446,0.014163821935654,0.074575036764145],[-0.012637252919376,0.13504423201084,-0.083724573254585],[-0.16076192259789,-0.0027873229701072,0.14071509242058]],[[-0.048247184604406,-0.17091655731201,-0.18216374516487],[0.017787585034966,0.024849323555827,0.076759144663811],[-0.044697370380163,0.036308776587248,0.027316404506564]],[[0.070523627102375,0.0076078809797764,-0.029732571914792],[-0.065172471106052,0.074694134294987,0.023843424394727],[0.098137781023979,0.017887061461806,-0.018011199310422]],[[-0.0061183031648397,0.046739175915718,0.11672589182854],[-0.075098887085915,-0.075390428304672,-0.018383037298918],[-0.16728368401527,-0.1468219012022,0.056600607931614]],[[-0.11218535900116,0.1171730235219,0.097858749330044],[-0.013782953843474,0.11398351937532,-0.035210207104683],[-0.16066728532314,0.0045828400179744,0.096313826739788]],[[-0.11873504519463,0.094911016523838,-0.02369163185358],[0.036553420126438,0.012775645591319,0.14320296049118],[0.11650715023279,0.047874823212624,-0.025136852636933]],[[0.13119603693485,-0.050095833837986,0.066161178052425],[-0.043335344642401,-0.025382177904248,-0.019625790417194],[0.039410278201103,-0.08524326980114,-0.051498968154192]],[[-0.033278331160545,0.020853394642472,-0.081963375210762],[-0.0083642592653632,0.049051273614168,-0.11040886491537],[-0.054730422794819,-0.014947327785194,-0.112259760499]],[[0.01726278103888,-0.0016614303458482,0.17751455307007],[0.010380192659795,0.093307994306087,-0.037055775523186],[-0.11162497103214,-0.14315278828144,0.026427188888192]],[[-0.030873952433467,0.049107134342194,-0.051240064203739],[0.0082574402913451,0.00062687526224181,-0.047458060085773],[0.092007175087929,0.23250734806061,0.094811499118805]],[[0.04396740719676,0.079315364360809,0.018623130396008],[0.019228596240282,-0.074736535549164,-0.065362423658371],[-0.12283238768578,-0.13264693319798,-0.057326681911945]],[[0.1110529974103,0.087849013507366,0.089980699121952],[-0.012463493272662,0.095614172518253,0.048654660582542],[-0.072437025606632,0.073967844247818,0.088372826576233]],[[-0.057836256921291,-0.035701632499695,-0.038048684597015],[-0.062626264989376,0.01416892092675,0.038836017251015],[-0.068277627229691,0.06201246380806,0.060541186481714]],[[-0.040595985949039,0.016823397949338,-0.00063196825794876],[-0.040102906525135,-0.092235289514065,-0.14463376998901],[-0.049120396375656,0.046303186565638,-0.10293969511986]],[[-0.047033876180649,-0.012940066866577,0.023151950910687],[0.018372301012278,-0.074933029711246,-0.077947616577148],[0.0060309246182442,-0.047313179820776,-0.098573222756386]],[[0.00093212199863046,-0.058598767966032,0.023870445787907],[0.045900605618954,0.052349712699652,0.1309218108654],[0.006187888327986,0.054119009524584,0.044360384345055]],[[0.1003649532795,-0.071130700409412,-0.064001001417637],[-0.098108626902103,-0.12960702180862,-0.074554935097694],[-0.06145453825593,-0.017025031149387,0.023928616195917]],[[-0.0034847354982048,0.11997366696596,-0.029254829511046],[-0.09323950111866,0.012358732521534,0.045948322862387],[-0.072727374732494,-0.044024206697941,0.037924434989691]],[[0.098090991377831,-0.031683068722486,0.0057841925881803],[-0.050455179065466,-0.059652060270309,0.04275806620717],[0.11244393140078,-0.020763983950019,-0.01119345612824]],[[-0.037319533526897,-0.15860702097416,-0.055457729846239],[0.06632224470377,-0.11204723268747,-0.0045637623406947],[0.16854964196682,0.14228500425816,0.003402269911021]],[[-0.13472014665604,0.027201434597373,0.073463618755341],[-0.08545196801424,-0.00045654602581635,0.029121190309525],[-0.0097061851993203,0.038535218685865,0.0015505076153204]],[[0.018928768113256,0.057006105780602,0.050456132739782],[-0.024467147886753,0.13769952952862,-0.13627733290195],[-0.067386671900749,-0.037068422883749,0.097485691308975]],[[0.040043152868748,0.011193986982107,-0.037804197520018],[9.7548778285272e-05,0.028217863291502,0.12331631034613],[0.022074308246374,-0.013204795308411,-0.1508753746748]],[[0.072448261082172,0.063346453011036,-0.12923787534237],[0.087865263223648,0.073316283524036,0.071704536676407],[0.01138305105269,0.045687291771173,-0.089280650019646]],[[-0.052493970841169,-0.10274459421635,-0.15771019458771],[-0.055403087288141,-0.05522795766592,0.0058436430990696],[0.006830123718828,-0.031543109565973,0.038645662367344]],[[-0.021485604345798,-0.091942228376865,-0.056005030870438],[-0.070366367697716,-0.0085759619250894,-0.021316787227988],[0.075783304870129,-0.02077847160399,0.077596083283424]],[[-0.042037270963192,0.028230609372258,-0.030873937532306],[-0.024835478514433,0.057845890522003,0.17094784975052],[0.08407811075449,0.0063910568132997,-0.0071856747381389]],[[0.096289046108723,-0.023119833320379,-0.037317249923944],[-0.0080918958410621,-0.062071561813354,-0.02197896130383],[-0.023109572008252,-0.14408844709396,-0.007281135302037]],[[0.0099379466846585,0.050888992846012,0.031233625486493],[0.012185205705464,-0.083196610212326,-0.053719155490398],[0.17722500860691,0.090149149298668,-0.0071979016065598]],[[0.10148810595274,0.058917727321386,-0.047635342925787],[-0.017163321375847,-0.093694239854813,-0.12007536739111],[0.037380777299404,0.11276054382324,0.046230178326368]],[[0.039003655314445,0.026300124824047,0.034641545265913],[-0.030922228470445,0.056555811315775,-0.072387382388115],[-0.055121690034866,-0.10388816893101,0.011847391724586]],[[0.036253314465284,-0.018530365079641,-0.024166870862246],[0.042826902121305,0.033052712678909,0.027252422645688],[-0.10671979188919,-0.095749996602535,0.10874021798372]],[[0.0024365452118218,0.023289270699024,-0.0056601637043059],[0.010036784224212,0.033350937068462,-0.0555040538311],[-0.092504397034645,0.010224617086351,0.1337411403656]],[[0.041235011070967,0.038154546171427,0.036752514541149],[-0.028157627210021,0.025764489546418,-0.079025074839592],[0.022479558363557,0.0060907988809049,0.10197431594133]],[[0.063550814986229,0.0077480780892074,-0.036369580775499],[-0.024293307214975,0.08820079267025,0.11505402624607],[-0.059871409088373,-0.022123878821731,-0.081623956561089]],[[0.070355623960495,0.0060992646031082,-0.087554216384888],[0.058481596410275,0.027584468945861,-0.15277314186096],[0.064298801124096,0.13292892277241,-0.12456756830215]],[[0.010094031691551,0.051339894533157,-0.058199264109135],[-0.17367427051067,-0.060793537646532,-0.061383757740259],[0.038368422538042,-0.069774754345417,-0.038696773350239]],[[-0.056544449180365,-0.075958289206028,0.0068259220570326],[0.023584781214595,-0.015907026827335,0.0068228151649237],[0.036799173802137,0.0026030419394374,0.026967270299792]],[[0.0047950642183423,-0.0065534664317966,-0.060888659209013],[-0.010633773170412,0.0011717332527041,-0.016482479870319],[-0.12321703881025,0.044851269572973,-0.019779350608587]],[[-0.11840333789587,0.10576420277357,0.053744077682495],[-0.056021172553301,-0.022358985617757,-0.025238877162337],[0.12273934483528,-0.052406970411539,0.045203153043985]],[[-0.045703958719969,-0.027239516377449,-0.0081825125962496],[0.12502819299698,-0.065682142972946,-0.045511700212955],[-0.0064094471745193,0.14555542171001,0.10822732746601]],[[-0.13778328895569,-0.051660429686308,0.0045767859555781],[0.010185309685767,0.066633462905884,-0.064451582729816],[-0.056812353432178,0.010646513663232,0.062176991254091]]],[[[0.089187182486057,-0.032621562480927,0.057330649346113],[-0.0016460980987176,-0.021165190264583,0.02798131108284],[-0.069715559482574,0.032764229923487,-0.035244170576334]],[[-0.045697931200266,0.0071370131336153,0.014195846393704],[-0.01357916276902,-0.05536724627018,0.024583356454968],[0.089192733168602,0.056877098977566,0.098677858710289]],[[-0.046770881861448,0.079155832529068,0.016049269586802],[0.084851823747158,0.019175043329597,-0.081287816166878],[0.017942050471902,-0.049498073756695,0.00054489949252456]],[[0.10162171721458,-0.033426716923714,-0.021779514849186],[-0.020838346332312,0.020630856975913,0.047576263546944],[0.055685855448246,0.038159463554621,0.015011666342616]],[[-0.057378940284252,-0.042755637317896,0.08235177397728],[0.101148866117,-0.029791340231895,0.002065708860755],[0.033037070184946,0.0047538173384964,-0.002218563342467]],[[0.017263259738684,0.059927806258202,-0.040575686842203],[0.058263797312975,-0.048143610358238,0.012410746887326],[0.036687929183245,0.027766728773713,0.056441407650709]],[[-0.012945375405252,0.051714856177568,0.0091919442638755],[-0.0074414233677089,0.0026038929354399,-0.019737683236599],[-0.0055655119940639,-0.0073530157096684,-0.019138865172863]],[[-0.053976193070412,-0.020907109603286,0.007654064334929],[-0.015820555388927,0.08735291659832,-0.0013537119375542],[-0.0014124416047707,0.022815860807896,0.024258818477392]],[[0.072970241308212,-0.045116595923901,0.065352633595467],[-0.00933035928756,0.047242719680071,-0.023236785084009],[0.015437719412148,-0.049721959978342,-0.0048489649780095]],[[-0.048428673297167,-0.0020200435537845,0.0076145902276039],[-0.066140294075012,0.062506146728992,0.032559718936682],[0.032418832182884,0.029118031263351,0.015069988556206]],[[0.0099356025457382,-0.015654424205422,0.047593031078577],[-0.031755838543177,-0.038152497261763,0.068216428160667],[0.0028669140301645,0.0059736296534538,-0.0089960806071758]],[[-0.02876858972013,0.051116477698088,-0.10922024399042],[0.041473276913166,0.038833174854517,0.0025517044123262],[0.038470167666674,-0.00701944809407,0.0066561391577125]],[[0.0029824092052877,0.033782854676247,0.084988750517368],[-0.044198501855135,-0.017354203388095,0.03118665330112],[-0.0072978143580258,0.046427369117737,0.060653883963823]],[[-0.030002990737557,0.027145968750119,0.045991122722626],[0.013419594615698,-0.00078944099368528,0.052683841437101],[0.038102112710476,0.049975693225861,-0.019380170851946]],[[0.076803840696812,0.032453153282404,0.0056805894710124],[-0.058864284306765,0.094996526837349,-0.0021150002721697],[-0.022498965263367,0.069960370659828,0.011672583408654]],[[-0.043471720069647,-0.025253459811211,0.092020690441132],[0.010614639148116,0.020589431747794,0.030474610626698],[-0.001610956271179,0.00010755640687421,-0.037949036806822]],[[0.00090845854720101,-0.016081392765045,-0.057798430323601],[0.053589444607496,-0.011072376742959,-0.045640408992767],[-0.0081717250868678,0.0052916496060789,0.082369774580002]],[[0.0048863044939935,-0.01169765740633,-0.002070982940495],[-0.0090671423822641,-0.020506300032139,-0.031869981437922],[-0.056347541511059,-0.034382548183203,-0.070008099079132]],[[0.02705785818398,-0.03752950578928,0.026127230376005],[0.017090098932385,0.047766081988811,-0.013532347045839],[0.022331215441227,0.029095785692334,0.0032462205272168]],[[0.022354083135724,-0.017257260158658,0.003843866288662],[0.04632531479001,-0.0059891119599342,-0.041119858622551],[0.044866822659969,0.029473351314664,0.017018241807818]],[[-0.063596166670322,-0.051414970308542,-0.013108015060425],[-0.074705734848976,-0.017021484673023,-0.059280347079039],[0.023644210770726,-0.034260679036379,0.059170037508011]],[[0.080184236168861,0.10864038020372,-0.0044841286726296],[-0.083383746445179,0.043972041457891,-0.040365926921368],[-0.0066694463603199,-0.040403492748737,0.029606875032187]],[[-0.06120814755559,0.10832693427801,-0.059653725475073],[0.052797190845013,0.038100503385067,0.020886426791549],[-0.06523223221302,0.023458287119865,0.010693272575736]],[[0.056914482265711,-0.049804486334324,0.03556202724576],[-0.0013922698562965,-0.01884893886745,-0.020605403929949],[0.091324709355831,0.036991413682699,0.058303762227297]],[[0.01371522154659,-0.045257031917572,0.020136734470725],[0.018308494240046,0.0052489945665002,0.00096200936241075],[-0.0017484634881839,-0.016770148649812,0.030311960726976]],[[0.0097650717943907,0.0052309376187623,0.073127694427967],[0.021142797544599,-0.071919739246368,0.018717369064689],[0.016941428184509,-0.034878868609667,0.041267745196819]],[[0.088284038007259,0.025705637410283,-0.066778600215912],[-0.074787929654121,0.0030075013637543,0.0013986094854772],[-0.0056187380105257,0.010234377346933,-0.083818852901459]],[[-0.025958510115743,-0.058876127004623,-0.0042613460682333],[-0.004044946283102,0.01494558993727,-0.04653063043952],[0.052385587245226,0.058273926377296,-0.054783053696156]],[[-0.024096896871924,0.025266917422414,0.023002538830042],[-0.021266281604767,0.046651534736156,0.021174790337682],[0.077853262424469,0.014355819672346,-0.0095752133056521]],[[-0.038030628114939,-0.072760336101055,-0.010779165662825],[-0.014176390133798,0.024866702035069,-0.0030293168965727],[-0.010509765706956,0.062011435627937,-0.061310350894928]],[[0.027770204469562,0.010755970142782,0.012673003599048],[0.042993541806936,-0.025456098839641,-0.023689068853855],[-0.022928301244974,0.020658761262894,-0.01295861043036]],[[-0.0059151742607355,0.020364226773381,-0.066715009510517],[0.07756794244051,-0.020456006750464,-0.018438430503011],[0.0077950465492904,-0.0061534247361124,-0.0076892790384591]],[[-0.011118356138468,0.019382502883673,-0.0009741157409735],[-0.01013580430299,0.034376736730337,-0.058372631669044],[0.012054512277246,0.030539436265826,-0.047223515808582]],[[0.033760659396648,-0.015609127469361,-0.0019912135321647],[0.027600925415754,-0.068766973912716,0.0051405695267022],[0.0053261714056134,-0.02606888115406,-0.046554677188396]],[[-0.018706882372499,-0.01252528000623,0.027427991852164],[0.032542031258345,0.033199489116669,0.0041108750738204],[0.023136077448726,-0.011426868848503,-0.086835868656635]],[[-0.022098321467638,0.024046247825027,-0.026551468297839],[-0.015385023318231,-0.053460314869881,0.019498866051435],[-0.034036129713058,-0.035686578601599,-0.047181900590658]],[[-0.035858828574419,-0.061458986252546,0.0036702509969473],[-0.019185241311789,0.028857950121164,0.025990281254053],[0.01949973963201,-0.03797585517168,-0.049596764147282]],[[0.064431883394718,0.023459862917662,0.0022617618087679],[0.029359940439463,-0.09246651083231,0.011974514462054],[0.0060731796547771,-0.0028100735507905,-0.020337341353297]],[[-0.049296848475933,-0.046661455184221,-0.029507625848055],[0.058008965104818,-0.028157653287053,0.023227844387293],[0.012017918750644,0.020528303459287,0.068244799971581]],[[-0.0070634200237691,-0.027809329330921,0.0013964392710477],[-0.017736664041877,0.028059551492333,-0.035843919962645],[-0.015779327601194,-0.041206318885088,-0.0393299870193]],[[0.020359991118312,0.011174432933331,0.052920892834663],[0.015330619178712,-0.011742507107556,0.061090800911188],[0.033046636730433,-0.0070717502385378,0.007258580531925]],[[0.0049788164906204,0.068474866449833,-0.061938662081957],[-0.027047280222178,-0.04349073022604,0.067685306072235],[-0.038984507322311,-0.022889567539096,-0.024435929954052]],[[0.061641301959753,-0.037334591150284,0.020281897857785],[0.015234576538205,0.015548065304756,-0.060268275439739],[-0.0043783881701529,-0.07790695130825,0.12317733466625]],[[-0.020874394103885,-0.0056491522118449,0.033486057072878],[-0.078977510333061,-0.065110266208649,-0.043996300548315],[0.022824957966805,-0.042869452387094,0.00032848439877853]],[[-0.028827786445618,0.0081300083547831,-0.015838600695133],[0.012173757888377,-0.052467588335276,0.052925940603018],[0.016394909471273,0.023443130776286,0.012097072787583]],[[0.051539786159992,0.023262977600098,0.045869164168835],[-0.055939394980669,-0.0060042021796107,-0.045045867562294],[0.071785181760788,0.061281710863113,0.036066453903913]],[[0.058263845741749,-0.01256447378546,-0.026029473170638],[0.051477178931236,0.036318231374025,-0.038531698286533],[0.0034799906425178,-0.014407499693334,0.013180833309889]],[[-0.0035546894650906,-0.039257526397705,-0.010581411421299],[0.086852610111237,0.040985949337482,0.017060130834579],[0.03006180934608,0.030457731336355,0.0060257124714553]],[[0.014377585612237,-0.008402762003243,0.047759994864464],[-0.070934928953648,-0.062114596366882,0.035299602895975],[-0.065383315086365,0.05033141002059,-0.016918789595366]],[[0.0033235137816519,0.03015998378396,-0.049089826643467],[-0.015719600021839,-0.034820400178432,0.062679842114449],[0.037786547094584,0.02455117739737,0.012721553444862]],[[0.017844296991825,0.018559869378805,0.021718434989452],[0.028804609552026,0.04015027731657,0.04331087321043],[0.064038619399071,-0.022996075451374,-0.0040360908024013]],[[-0.067612439393997,0.025385117158294,0.0070784278213978],[-0.04118213057518,0.02579159848392,0.038780219852924],[0.041713241487741,-0.03163256123662,0.044669825583696]],[[0.023257810622454,-0.074911013245583,-0.0020718807354569],[-0.016829568892717,-0.0013044704683125,-0.078281059861183],[-0.096160463988781,-0.051333300769329,-0.064929254353046]],[[-0.0007118207286112,0.0045247790403664,0.04704649373889],[0.0056015136651695,0.017262754961848,0.01417763158679],[0.028983406722546,-0.018507298082113,-0.058637984097004]],[[0.14469023048878,-0.01016169693321,-0.034074105322361],[0.046283472329378,0.072901763021946,-0.045633666217327],[0.077948413789272,-0.012381861917675,-0.0076281200163066]],[[-0.0029162070713937,0.057665977627039,0.020739920437336],[-0.037890765815973,-0.054491750895977,-0.013571910560131],[-0.024579890072346,0.006294081453234,0.08112546056509]],[[0.011280707083642,0.073037840425968,0.059280313551426],[-0.019724948331714,-0.010157093405724,-0.05336407199502],[-0.0067364433780313,-0.003290694206953,0.035890430212021]],[[0.032520305365324,0.039003308862448,0.05188462883234],[0.071316123008728,0.024303616955876,-0.030248818919063],[-0.0046834670938551,-0.046558547765017,0.050465304404497]],[[0.093753427267075,0.021669181063771,-0.092723831534386],[-0.040519095957279,-0.056399263441563,-0.011499610729516],[0.033132176846266,-0.063640221953392,0.026860069483519]],[[-0.045834790915251,-0.043883699923754,-0.063788399100304],[-0.046588484197855,-0.010775286704302,-0.054270166903734],[-0.045811101794243,0.0010797772556543,0.088080763816833]],[[0.041742190718651,0.0038812819402665,0.037183202803135],[-0.018020927906036,0.016829622909427,0.032751467078924],[0.0029479926452041,-0.088827595114708,0.082481734454632]],[[0.044715419411659,0.042583033442497,-0.030101872980595],[-0.09427186101675,0.03172592073679,-0.026246646419168],[0.010320419445634,-0.02330656722188,0.010031596757472]],[[0.024241177365184,0.0042965430766344,0.011450721882284],[-0.013963709585369,0.0017274518031627,0.012094106525183],[0.047832529991865,0.0074765216559172,0.0025901144836098]],[[-0.096648246049881,-0.044388175010681,0.034313067793846],[0.056938759982586,0.017727211117744,-0.083131209015846],[0.033803854137659,0.0010256862733513,-0.0068240188993514]],[[-0.082949422299862,-0.016624039039016,0.077253714203835],[-0.011513029225171,0.059123657643795,0.06345771998167],[0.0062424810603261,-0.018326027318835,0.074800983071327]],[[-0.073663361370564,-0.021341608837247,0.082326017320156],[0.0051289051771164,-0.025437097996473,-0.0078955227509141],[0.053173281252384,0.055212408304214,-0.011946487240493]],[[-0.0068318038247526,-0.032130338251591,0.038733825087547],[0.018063917756081,0.0038972126785666,0.01932991668582],[0.062249761074781,-0.045220777392387,0.087733581662178]],[[0.037986602634192,-0.0029288185760379,-0.10238066315651],[-0.0081926342099905,-0.068654373288155,-0.005581266246736],[0.065172933042049,0.024905050173402,0.016700075939298]],[[-0.015007593668997,-0.048321504145861,0.062519289553165],[0.0040731076151133,-0.025927083566785,0.013613681308925],[-0.026815747842193,-0.00082920037675649,0.059159498661757]],[[0.012614491395652,-0.042104780673981,-0.041917454451323],[-0.0022512159775943,0.028929818421602,-0.090672105550766],[-0.021447541192174,-0.13792784512043,0.04094972088933]],[[0.0649818405509,-0.000574694306124,-0.0074435821734369],[0.039172373712063,0.022912921383977,0.018995121121407],[-0.01008293312043,0.09600418061018,-0.023109264671803]],[[0.02860951796174,0.0061299228109419,-0.08056640625],[0.043980587273836,0.031203154474497,-0.086023814976215],[-0.0075032631866634,0.035161972045898,0.03608625754714]],[[0.017905008047819,0.062909282743931,0.037347879260778],[-0.080144688487053,0.023997040465474,-0.065938971936703],[-0.0082195028662682,0.0087610706686974,0.038355425000191]],[[-0.025470286607742,0.01006877515465,0.014873821288347],[-0.035519782453775,-0.012945708818734,-0.0021274283062667],[-0.0040607750415802,0.016837099567056,-0.05306351929903]],[[0.10273808240891,0.033184431493282,0.067000940442085],[0.026065912097692,-0.014533097855747,0.02204236574471],[-0.02591091580689,-0.023692050948739,0.055809918791056]],[[-0.0090218558907509,0.029681468382478,-6.1417100368999e-05],[-0.039541613310575,-0.013620092533529,-0.0035514731425792],[-0.12328840047121,0.00031870105885901,-0.05306876078248]],[[-0.077111095190048,-0.0032853544689715,-0.011897613294423],[0.026576299220324,0.046149298548698,0.039557863026857],[0.03440235555172,-0.014812921173871,0.0091036967933178]],[[0.020681980997324,-0.017948590219021,0.042986046522856],[0.035864111036062,-0.028563480824232,-0.061734553426504],[0.02924813143909,0.074953600764275,-0.023365970700979]],[[0.061999771744013,-0.024542137980461,0.024548064917326],[0.053160801529884,-0.0080334600061178,-0.037176568061113],[-0.03425657749176,0.0021289528813213,-0.030274560675025]],[[0.018628485500813,-0.052474550902843,-0.052785985171795],[-0.019588930532336,0.013329892419279,-0.046811416745186],[-0.05316448956728,0.018396833911538,-0.068800084292889]],[[-0.0047224247828126,0.042077157646418,0.031129429116845],[-0.031629581004381,0.0015067560598254,-0.007082344032824],[0.048224169760942,-0.018267020583153,0.011182245798409]],[[0.080220080912113,0.07970766723156,0.077243961393833],[-0.0082401894032955,0.026899065822363,-0.092606835067272],[-0.039027120918036,-0.092170126736164,0.044972881674767]],[[-0.10427512973547,0.0032744170166552,-0.043103285133839],[0.029519775882363,0.0079248640686274,-0.073353238403797],[0.0025082938373089,-0.01044278498739,-0.0044183288700879]],[[0.060543023049831,-0.004853330552578,-0.023874189704657],[0.067585676908493,-0.010048305615783,0.043043661862612],[0.025378679856658,0.020411420613527,0.00036941838334315]],[[-0.062007989734411,0.025287156924605,0.048118110746145],[0.076559528708458,-0.015764586627483,-0.054418046027422],[-0.0149429095909,0.018440712243319,-0.021709920838475]],[[0.0069189975038171,0.0094781285151839,-0.034300416707993],[-0.05173597484827,0.060969989746809,-0.035110734403133],[-0.0029161621350795,0.10388473421335,-0.0042751007713377]],[[-0.027619479224086,-0.013595325872302,-0.058433074504137],[-0.045463901013136,-0.10954991728067,5.18832130183e-05],[0.048669032752514,0.13374961912632,0.0052164010703564]],[[-0.0512376986444,-0.015443408861756,0.095799215137959],[0.026422407478094,0.023294866085052,-0.061054944992065],[-0.011230302974582,0.0072730709798634,0.007355616427958]],[[0.050168953835964,0.00368144758977,0.049994226545095],[-0.01001757197082,-0.028811570256948,-0.0065458090975881],[0.0059678284451365,-0.011969288811088,0.034468155354261]],[[0.005434600636363,0.018229208886623,0.0040253843180835],[-0.036829277873039,-0.045911800116301,-0.014657125808299],[0.056746829301119,0.011169224977493,-0.034561421722174]],[[-0.058892834931612,-0.013321115635335,-0.066482827067375],[0.039755694568157,-0.038587626069784,-0.029228745028377],[0.017287852242589,-0.0099840620532632,0.0051827770657837]],[[-0.030463511124253,0.031282965093851,-0.037484765052795],[0.050499264150858,-0.020679147914052,-0.031057827174664],[-0.031689181923866,0.0032971750479192,0.049007821828127]],[[-0.010279531590641,-0.0081368796527386,0.049434840679169],[0.085497967898846,0.0002388384018559,-0.028705406934023],[0.007996303960681,-0.066260188817978,0.011891394853592]],[[-0.0058591021224856,0.010552840307355,-0.0034342345315963],[0.037998043000698,-0.0060162926092744,-0.022085942327976],[-0.033002339303493,0.063868157565594,-0.089264772832394]],[[0.036482863128185,0.028525775298476,-0.074835829436779],[-0.045816846191883,-0.028875602409244,0.028996469452977],[0.10643856227398,0.02307278290391,-0.040917314589024]],[[-0.012491861358285,0.0081450305879116,0.067915134131908],[0.02602931112051,-0.0094767706468701,0.034495174884796],[-0.035218771547079,-0.046204086393118,0.0096144964918494]],[[-0.017716886475682,0.052048597484827,0.053988050669432],[-0.09958229213953,0.0078904954716563,0.030543470755219],[-0.01959240436554,-0.0060950284823775,0.055118348449469]],[[0.12170054018497,0.039587061852217,-0.019357724115252],[0.024766491726041,0.035341423004866,0.037357464432716],[0.065599650144577,0.010029977187514,-0.15651340782642]],[[0.015525457449257,-0.022863185033202,0.027101092040539],[0.028263175860047,-0.042809545993805,-0.038890440016985],[0.0341637134552,-0.030122304335237,-0.024815585464239]],[[0.095442853868008,-0.038374822586775,0.0021397203672677],[0.06474693864584,0.022317992523313,-0.024455325677991],[-0.031439315527678,-0.0047854585573077,-0.053824309259653]],[[0.058456484228373,-0.094862073659897,-0.061693876981735],[0.051826950162649,-0.042622160166502,-0.032740328460932],[0.082927674055099,-0.073506005108356,-0.0057195592671633]],[[0.03880774602294,0.037446714937687,0.0051432480104268],[0.02661026827991,0.10292199254036,-0.02431807667017],[-0.033324081450701,-0.014912402257323,-0.0077374121174216]],[[0.03406148031354,0.053587764501572,-0.010380753315985],[0.024387508630753,-0.077238112688065,0.041741047054529],[-0.076933801174164,0.0065526203252375,-0.066759862005711]],[[0.046573042869568,-0.027157664299011,-0.035689860582352],[0.036297410726547,0.0027754558250308,0.0012522967299446],[0.053936716169119,-0.02515416033566,-0.071771651506424]],[[0.031095819547772,-0.058387231081724,0.070132732391357],[-0.037006985396147,-0.046322427690029,-0.0069959703832865],[0.01473715621978,0.07750541716814,0.025277201086283]],[[0.0051908264867961,-0.020190047100186,0.031440433114767],[0.034842982888222,-0.06937225908041,0.008208941668272],[-0.059678748250008,-0.0067004221491516,-0.026597971096635]],[[0.049947500228882,0.03313086181879,0.033921048045158],[0.013950662687421,0.053059048950672,-0.027617385610938],[-0.012279257178307,-0.01002695877105,0.012604471296072]],[[-0.036407068371773,-0.006424053106457,-0.011104696430266],[0.017892783507705,-0.03914375975728,0.05529111623764],[-0.021788440644741,0.0084726484492421,0.05873666331172]],[[0.034174237400293,-0.034318253397942,0.079678185284138],[0.0037213028408587,-0.055789668112993,-0.0087782181799412],[-0.025136560201645,0.056980695575476,-0.064330369234085]],[[-0.096217133104801,-0.043731350451708,-0.041230715811253],[-0.046984180808067,-0.034705124795437,0.038213301450014],[-0.051138997077942,-0.0064075565896928,0.0031691065523773]],[[0.050214108079672,0.053989931941032,0.012016413733363],[0.014807012863457,0.072225861251354,0.022155217826366],[0.027545958757401,0.0045283604413271,-0.001869433792308]],[[-0.023681191727519,-0.082035787403584,-0.0092855961993337],[0.0044361082836986,0.00016162064275704,0.00021282708621584],[-0.0099049406126142,0.0089029986411333,0.060908555984497]],[[-0.090877629816532,0.0037277624942362,-0.029687894508243],[-0.0070870043709874,-0.034194178879261,-0.035588856786489],[-0.042480427771807,0.028569966554642,6.1446524341591e-05]],[[0.018903171643615,-0.038080610334873,-0.015673434361815],[0.096593976020813,0.0020438206847757,0.042048178613186],[0.0031568286940455,-0.054498106241226,-0.026872798800468]],[[0.048447135835886,-0.018392492085695,-0.0098071275278926],[0.0075112287886441,-0.015156590379775,0.020813532173634],[0.057059656828642,-0.037681024521589,-0.011942882090807]],[[0.049213912338018,0.026092188432813,-0.02755780890584],[-0.050764832645655,-0.013126797042787,0.099774278700352],[0.04743093624711,0.049045324325562,0.036236986517906]],[[-0.0017133604269475,0.036635376513004,0.044437870383263],[-0.06754382699728,0.057936932891607,-0.0052035846747458],[0.0056569040752947,0.0041644396260381,-0.0057263504713774]],[[0.053150985389948,0.022419786080718,0.0084137516096234],[-0.056506544351578,0.098391249775887,-0.059805199503899],[-0.053871013224125,-0.085063017904758,0.004204825963825]],[[-0.035150717943907,0.024636011570692,0.014962288551033],[-0.014468244276941,0.028256366029382,-0.047757312655449],[-0.047176722437143,0.029056483879685,0.025450041517615]],[[-0.012025036849082,-0.038047894835472,-0.02938686683774],[0.064760535955429,-0.03320001065731,0.021885229274631],[-0.073407545685768,-0.017214441671968,0.050242830067873]],[[-0.011692569591105,-0.012453514151275,0.0043198708444834],[0.0023359190672636,-0.014292355626822,0.054367508739233],[-0.020041599869728,-0.020180700346828,0.038570113480091]],[[-0.020232120528817,0.041944157332182,-0.093638837337494],[0.017236385494471,0.0054649137891829,-0.052122808992863],[0.0517892614007,0.11308564990759,-0.0072371400892735]],[[0.0058032642118633,-0.055474732071161,0.063606470823288],[0.012480990961194,-0.01502597797662,-0.080979324877262],[0.065087132155895,-0.0087972888723016,0.012771661393344]],[[0.013382295146585,0.026986815035343,0.014153347350657],[0.042587079107761,-0.042271066457033,-0.00035572017077357],[0.014159588143229,0.01382646523416,0.06486614793539]],[[0.033125579357147,-0.092541456222534,-0.0085573215037584],[-0.062217526137829,-0.017996493726969,-0.048291921615601],[-0.0031569614075124,0.088684402406216,-0.037982616573572]],[[-0.037188589572906,-0.067555628716946,-0.0066041750833392],[0.047792907804251,-0.022742684930563,0.004421572200954],[0.098321184515953,-0.007583396974951,-0.023607032373548]],[[-0.038237892091274,0.0071075242012739,0.068904653191566],[0.0092822974547744,0.038622390478849,0.020294357091188],[-0.015365852043033,0.0025483965873718,0.0051527721807361]],[[-0.022142054513097,0.022729819640517,-0.00028196405037306],[0.050366889685392,0.04938368499279,-0.016284322366118],[0.010259514674544,-0.017944384366274,-0.0077535691671073]]],[[[-0.0086312368512154,-0.046518933027983,0.0040705632418394],[-0.080699294805527,-0.002011091215536,0.033215083181858],[-0.00094141816953197,-0.04905616864562,0.19923821091652]],[[-0.076184287667274,0.045021437108517,0.10932824760675],[-0.078569874167442,0.0018659203778952,-0.016512790694833],[0.0092268399894238,-0.018671363592148,-0.077302388846874]],[[0.069695740938187,0.021305102854967,0.046888809651136],[-0.011055986396968,-0.085693053901196,0.074844256043434],[0.076896786689758,0.050334189087152,-0.12333632260561]],[[0.0063352519646287,-0.018824635073543,-0.098423384130001],[0.027085291221738,-0.052395619452,0.035363260656595],[-0.024840038269758,-0.19895771145821,-0.094191767275333]],[[0.1964408904314,0.040419798344374,0.069863744080067],[0.15432859957218,0.081816807389259,0.065976567566395],[-0.045981504023075,-0.087815247476101,0.031610254198313]],[[-0.026437129825354,-0.022898668423295,0.057421430945396],[-0.024890916422009,-0.017256535589695,0.028949623927474],[0.10000655055046,-0.022505616769195,-0.043885242193937]],[[0.024090554565191,0.10134615004063,-0.034324962645769],[-0.062810704112053,-0.10305937379599,-0.20004650950432],[0.036590248346329,-0.07423759251833,-0.015669515356421]],[[-0.125384375453,0.00082959717838094,0.032693427056074],[-0.089098453521729,-0.028999496251345,0.16117843985558],[-0.060427471995354,-0.079933427274227,-0.099440045654774]],[[-0.039505243301392,0.033535622060299,0.059515163302422],[-0.03442769497633,0.0047403508797288,0.13647040724754],[0.085887350142002,0.030773447826505,-0.042035412043333]],[[-0.054950598627329,0.069021478295326,-0.17894695699215],[-0.0044402503408492,-0.017552800476551,-0.051566887646914],[-0.032376937568188,-0.043552301824093,-0.0046468018554151]],[[-0.15512783825397,-0.15270154178143,0.013944536447525],[0.049291525036097,0.012591488659382,0.074886038899422],[0.23862542212009,0.20703049004078,0.088618360459805]],[[-0.0010655706282705,-0.11504237353802,-0.090739108622074],[0.054483667016029,0.029141932725906,-0.056607950478792],[-0.04495107755065,0.072884552180767,0.11811922490597]],[[-0.049530114978552,-0.06109069660306,0.029374225065112],[-0.0068853949196637,0.07291866093874,0.088086366653442],[-0.06475205719471,0.014862257055938,0.18360117077827]],[[0.07304772734642,0.0021701822988689,0.047768138349056],[0.021310625597835,-0.002023572800681,0.017613466829062],[0.050858240574598,-0.019879983738065,0.0077996589243412]],[[0.014910012483597,-0.033585969358683,-0.030167639255524],[-0.0084718596190214,-0.017403736710548,-0.18530882894993],[0.125692024827,0.081446133553982,0.060411252081394]],[[-0.034677863121033,-0.033868551254272,0.06297891587019],[0.0096845990046859,-0.020229993388057,-0.019614774733782],[0.039682108908892,-0.074833415448666,0.079244531691074]],[[-0.01469885930419,-0.036954201757908,0.10341204702854],[0.058677725493908,-0.090672053396702,-0.088287346065044],[-0.053121119737625,-0.033199638128281,0.025152401998639]],[[-0.022298702970147,-0.049643564969301,0.14460277557373],[0.10160661488771,-0.098572842776775,0.031059440225363],[-0.10017920285463,-0.049543380737305,-0.085857279598713]],[[0.055611588060856,-0.061900712549686,-0.0057539283297956],[0.26937875151634,0.11519560962915,0.087887957692146],[0.091753281652927,-0.0057972213253379,-0.061050951480865]],[[-0.031346764415503,0.039452809840441,-0.053861897438765],[0.013422633521259,0.013108462095261,-0.10232274979353],[-0.19659723341465,-0.022684816271067,-0.09181497246027]],[[-0.083260059356689,-0.096112571656704,-0.059579532593489],[-0.058081936091185,-0.16758754849434,-0.0013310532085598],[-0.048983961343765,0.10096302628517,-0.025373738259077]],[[0.063640981912613,0.074572637677193,0.0086734406650066],[-0.05235705524683,0.17094051837921,-0.015296973288059],[-0.023980244994164,-0.023550029844046,0.092707894742489]],[[-0.048483569175005,-0.12965829670429,-0.040325839072466],[-0.0086979679763317,-0.00041268789209425,-0.0025448349770159],[-0.11348336189985,-0.084583759307861,0.018869623541832]],[[-0.2633361518383,-0.027107510715723,0.018502447754145],[-0.17428141832352,-0.083776727318764,0.053320653736591],[0.025612788274884,0.041133809834719,0.07491859793663]],[[0.041016612201929,0.072323083877563,-0.0071149123832583],[-0.14304549992085,0.020513879135251,-0.06887923181057],[-0.071434065699577,-0.094688437879086,-0.070330388844013]],[[0.012536532245576,0.041098963469267,-0.10045651346445],[0.0066613093949854,0.030608696863055,0.0089033087715507],[0.0081636849790812,-0.059499323368073,0.10656186938286]],[[0.037575662136078,0.16539894044399,0.052684552967548],[-0.080997250974178,0.069151110947132,-0.028954818844795],[0.073918290436268,0.0023524404969066,-0.027285585179925]],[[0.018367951735854,-0.11586948484182,-0.11058850586414],[-0.011853172443807,-0.057472553104162,-0.0057845036499202],[0.0020725645590574,-0.11446607112885,0.052110742777586]],[[0.015525775030255,0.028577534481883,0.053757790476084],[0.03342654928565,-0.0060248989611864,-0.2227825075388],[-0.018848203122616,0.12189146876335,-0.016300644725561]],[[0.014262772165239,0.010091591626406,-0.053790595382452],[-0.030871940776706,-0.042970132082701,-0.05210118740797],[0.032006647437811,0.0026823931839317,-0.035239540040493]],[[-0.0075671607628465,-0.13555891811848,-0.019375188276172],[0.031402379274368,0.11324919760227,0.16512294113636],[0.088780000805855,-0.054979164153337,-0.051976568996906]],[[-0.029263779520988,-0.070592001080513,-0.020044712349772],[-0.044898096472025,-0.026407329365611,0.017604662105441],[-0.078241020441055,-0.099834628403187,-0.079476170241833]],[[-0.00058586802333593,0.013048830442131,0.04033450782299],[0.02757253870368,-0.065454132854939,-0.047897316515446],[-0.078304015100002,0.033093236386776,0.093992248177528]],[[-0.035609494894743,-0.030503284186125,-0.050429821014404],[0.070150583982468,-0.05848516523838,0.04388303309679],[-0.08193564414978,-0.052229888737202,-0.088512353599072]],[[-0.08190655708313,0.056582640856504,-0.023569716140628],[0.012903819791973,-0.16647818684578,-0.057238757610321],[-0.016449807211757,-0.061251923441887,-0.046293862164021]],[[-0.077960886061192,0.020003691315651,0.0086731491610408],[-0.15013279020786,0.012316345237195,-0.013801734894514],[-0.09485499560833,-0.043221563100815,-0.064144417643547]],[[0.01504394877702,-0.016369674354792,0.022795671597123],[-0.038744408637285,0.056431945413351,-0.039627701044083],[-0.025928501039743,-0.056859947741032,0.0032261137384921]],[[-0.096204958856106,-0.1809468716383,0.01893169619143],[-0.15474410355091,-0.17274858057499,-0.084366127848625],[-0.086937919259071,-0.05461597442627,-0.066214188933372]],[[0.041473146528006,-0.0035304252523929,-0.034118738025427],[-0.13050700724125,-0.0065482095815241,-0.0041340449824929],[0.1410033851862,0.012113240547478,0.078232035040855]],[[0.12765243649483,-0.04676254466176,-0.003939441870898],[-0.1407516002655,-0.048651292920113,-0.069628193974495],[0.047862514853477,0.068766206502914,0.13752456009388]],[[-0.01691984385252,-0.028044773265719,0.02933263964951],[-0.098391570150852,0.044854033738375,-0.10010606795549],[-0.089278042316437,0.05999356135726,-0.056555386632681]],[[-0.037648964673281,-0.028817178681493,-0.068895138800144],[0.023973060771823,-0.079831749200821,-0.15619353950024],[-0.004945233464241,-0.077167503535748,-0.088126808404922]],[[-0.037411272525787,-0.046922646462917,-0.0036288604605943],[-0.012343493290246,-0.059666492044926,-0.0036603780463338],[-0.042926233261824,-0.017464322969317,-0.0015658324118704]],[[0.11751163005829,-0.10210133343935,0.054054979234934],[-0.022593520581722,-0.21281957626343,0.028507648035884],[0.01584398932755,-0.017342656850815,0.00874880887568]],[[0.15775743126869,-0.037616223096848,0.014336971566081],[0.012991088442504,-0.051069900393486,0.087602443993092],[-0.026584452018142,-0.067412339150906,-0.095774255692959]],[[-0.038959380239248,0.057346742600203,-0.014865511097014],[0.014950624667108,-0.11800224334002,-0.063142724335194],[0.019956070929766,-0.029047595337033,-0.11071015149355]],[[-0.027516888454556,0.086373277008533,-0.038846462965012],[0.028678460046649,0.067868232727051,-0.058858096599579],[-0.055844962596893,-0.075952894985676,-0.013184383511543]],[[-0.002740342868492,0.019931703805923,0.13036344945431],[0.0069614253006876,0.048604108393192,0.063904911279678],[0.089954845607281,-0.041255217045546,0.037689261138439]],[[-0.050094995647669,0.067643843591213,0.021651536226273],[-0.17546127736568,-0.057312041521072,0.035898018628359],[-0.089676819741726,0.0083867320790887,-0.0047743888571858]],[[-0.017102202400565,0.076519936323166,0.15179771184921],[-0.054301705211401,-0.030132707208395,-0.022813925519586],[-0.097833178937435,-0.054917708039284,0.0158960968256]],[[0.050824709236622,-0.033096101135015,-0.04809707775712],[0.022959278896451,0.11406418681145,0.0022359520662576],[-0.035329796373844,0.011282538063824,0.015966696664691]],[[0.057344656437635,-0.011353787966073,0.038994513452053],[0.01522012706846,-0.06691287457943,-0.061931282281876],[0.038059763610363,0.097784042358398,-0.09369957447052]],[[-0.0052463063038886,-0.025909835472703,-0.010990776121616],[0.12740294635296,-0.070680998265743,-0.021102800965309],[0.22318644821644,-0.10049163550138,-0.08099365234375]],[[-0.064069755375385,-0.012486015446484,-0.058765824884176],[-0.030256893485785,0.11040616780519,0.081502765417099],[-0.030563786625862,-0.091035157442093,0.077880457043648]],[[-0.022424679249525,-0.011271180585027,0.013931493274868],[0.055294498801231,-0.094241954386234,-0.031863275915384],[0.097558811306953,-0.051101822406054,0.030285287648439]],[[-0.040241368114948,-0.019197901710868,-0.0058810277841985],[0.020251097157598,-0.065077312290668,0.0037089588586241],[-0.0088495314121246,-0.03413688018918,-0.090335316956043]],[[-0.021381735801697,-0.002522069728002,-0.070570774376392],[-0.074799433350563,0.042999841272831,-0.085901916027069],[-0.15483808517456,-0.0089234299957752,-0.046401251107454]],[[0.017440464347601,-0.01082447078079,0.075097873806953],[-0.055020269006491,-0.070794209837914,0.10199307650328],[0.070866219699383,-0.15157780051231,0.13793866336346]],[[-0.052230812609196,-0.03956800326705,0.049562778323889],[-0.046829093247652,-0.04243528842926,0.028632361441851],[-0.0029009303543717,-0.022671937942505,0.0047862851060927]],[[0.10876483470201,0.03101553209126,0.0058435960672796],[0.13352747261524,-0.084891445934772,0.085282415151596],[0.060955971479416,-0.090576037764549,-0.06234909966588]],[[0.028060592710972,-0.021448127925396,-0.03903479501605],[-0.047517035156488,-0.054842580109835,0.078780137002468],[-0.08930366486311,-0.17679518461227,0.064857259392738]],[[-0.024743989109993,-0.079161524772644,-0.00011568702757359],[0.0042949472554028,-0.012606316246092,-0.037902642041445],[0.012494087219238,-0.056244269013405,0.028698978945613]],[[0.031734719872475,0.00079436704982072,-0.068727158010006],[-0.022792916744947,-0.071957722306252,-0.094750002026558],[0.092313796281815,0.04177750274539,0.058302469551563]],[[0.035189528018236,0.19037036597729,0.014563954435289],[0.041169285774231,0.055423565208912,0.17401379346848],[-0.0349395647645,0.0030833519995213,0.020804736763239]],[[0.015993675217032,0.05253616720438,-0.088010095059872],[-0.06183348596096,0.077011115849018,0.030971234664321],[0.045735206454992,0.010743895545602,-0.12674115598202]],[[0.077801242470741,-0.028251936659217,-0.10666773468256],[-0.096188552677631,0.091182023286819,-0.049340698868036],[-0.13788761198521,-0.051304936408997,-0.03837451711297]],[[-0.049406565725803,0.024978313595057,0.093133598566055],[-0.046371553093195,-0.0063549769110978,-0.13378246128559],[0.022992415353656,-0.10392790287733,-0.025110268965364]],[[0.017433352768421,-0.0234644562006,0.031471133232117],[0.058887157589197,0.040128856897354,-0.060936309397221],[-0.10406424105167,-0.090615332126617,-0.0018854829249904]],[[-0.10942602157593,0.038418740034103,0.060195308178663],[-0.17149271070957,0.014112972654402,0.095578446984291],[-0.15132024884224,0.060846015810966,0.084152117371559]],[[-0.024325797334313,-0.005248405970633,0.0060912147164345],[-0.03213794901967,0.05744481086731,0.059000160545111],[0.070503808557987,-0.045926850289106,0.085591077804565]],[[-0.022035440430045,-0.053590688854456,-0.18199108541012],[-0.026655646041036,0.12395785003901,0.012542324140668],[0.097004026174545,-0.0024631950072944,0.15138819813728]],[[-0.16365693509579,-0.071654699742794,-0.086030840873718],[0.018381102010608,0.055951520800591,0.084436111152172],[-0.026553696021438,0.063700839877129,0.023815162479877]],[[-0.025189008563757,-0.064367741346359,0.048608094453812],[-0.056888349354267,-0.056607950478792,0.060494933277369],[-0.068882197141647,-0.016423175111413,-0.012124106287956]],[[0.075644515454769,0.085117474198341,0.0081140277907252],[-0.072928801178932,-0.066023431718349,0.0046265106648207],[0.021863613277674,0.14180593192577,-0.042944490909576]],[[-0.008245337754488,-0.0257403627038,-0.072493612766266],[0.11886470764875,-0.13834263384342,-0.047218430787325],[-0.095063261687756,0.14900571107864,-0.10514139384031]],[[0.05891515687108,0.03849183395505,0.092863231897354],[0.023471279069781,0.12087466567755,0.024422261863947],[0.01389573700726,0.083791978657246,0.11224670708179]],[[0.0085035730153322,-0.023922367021441,0.11210560798645],[0.022712145000696,-0.081871151924133,0.05434862524271],[-0.027981363236904,-0.08947579562664,-0.021214433014393]],[[-0.032760694622993,0.017189508304,0.016715813428164],[-0.10556502640247,-0.08494221419096,-0.042678378522396],[-0.075544834136963,-0.096721284091473,-0.13839450478554]],[[-0.057949513196945,-0.070402681827545,0.021338582038879],[0.14722874760628,0.11539400368929,0.090801268815994],[0.057624571025372,0.019685907289386,0.035787124186754]],[[0.015518594533205,-0.08775395154953,-0.055593255907297],[0.0044287457130849,-0.041239891201258,-0.10124979913235],[-0.087539464235306,0.068714566528797,0.028179742395878]],[[0.035241615027189,0.036458056420088,-0.054497677832842],[-0.068003535270691,-0.045060023665428,0.02216431312263],[-0.16389316320419,-0.01864573545754,0.015137475915253]],[[-0.031286720186472,0.014932272024453,0.014069926925004],[0.076921209692955,0.039779704064131,-0.14891931414604],[0.049841206520796,-0.015750117599964,-0.10385781526566]],[[0.12104547768831,0.18870992958546,0.036652434617281],[-0.043237339705229,0.056782145053148,-0.02813396602869],[0.038585845381021,0.051789060235023,0.04492224752903]],[[-0.0073020355775952,-0.094240367412567,-0.01321519818157],[-0.062321219593287,0.033696249127388,0.086434036493301],[0.034238804131746,-0.14336323738098,-0.016661275178194]],[[-0.089721016585827,0.10452292859554,-0.023753829300404],[-0.012837693095207,0.020372049883008,-0.058340713381767],[0.056753765791655,0.11111283302307,0.033305216580629]],[[0.12160567194223,0.11976413428783,-0.02875854447484],[0.073799528181553,0.027928339317441,0.024850083515048],[-0.18768414855003,-0.11722909659147,-0.010599712841213]],[[0.072309762239456,-0.03578532487154,0.011433139443398],[-0.078992329537868,-0.082657746970654,-0.035061221569777],[0.11285671591759,-0.00089886726345867,0.12791183590889]],[[-0.032297983765602,0.051078110933304,-0.095112152397633],[-0.0069614984095097,0.024351991713047,0.042687896639109],[0.036770034581423,0.027627255767584,0.050112079828978]],[[-0.030997697263956,-0.033851072192192,0.0069480356760323],[-0.024082459509373,0.088926427066326,0.022470748052001],[-0.0019851068500429,-0.051713425666094,-0.12681701779366]],[[-0.040223430842161,-0.077146299183369,-0.06340004503727],[0.07790769636631,-0.017098339274526,-0.061217989772558],[-0.0034104634542018,-0.13764515519142,-0.099157311022282]],[[-0.017157835885882,-0.056547064334154,0.01215479336679],[-0.018622750416398,0.025734247639775,0.11976498365402],[-0.13614538311958,-0.15084904432297,-0.12122041732073]],[[0.060311183333397,0.062200367450714,-0.0083772409707308],[-0.035519666969776,0.0024474016390741,-0.0927599593997],[-0.13260626792908,0.064733035862446,-0.10184691846371]],[[-0.080455921590328,-0.17694208025932,0.046565465629101],[-0.01531489379704,0.034287001937628,0.048667766153812],[-0.015214660204947,-0.079026073217392,0.14426057040691]],[[0.036661498248577,0.044853340834379,0.10789082944393],[0.063692428171635,0.059454694390297,0.11405313014984],[-0.11495378613472,-0.11597544699907,-0.013113333843648]],[[0.043199084699154,-0.00082567369099706,-0.057692654430866],[0.12692253291607,0.035604763776064,0.10477746278048],[-0.063474543392658,0.053663190454245,-0.10996110737324]],[[-0.035034161061049,-0.12209492921829,-0.19361145794392],[-0.022777130827308,0.12279514223337,0.038531400263309],[-0.098459146916866,0.034930177032948,-0.09764302521944]],[[0.03139940276742,-0.087953448295593,-0.040901314467192],[-0.089465856552124,0.0079259080812335,0.024941006675363],[0.03196007758379,-0.12569560110569,0.053891450166702]],[[0.13751558959484,0.019435167312622,0.05146337300539],[-0.0027254819869995,0.13422958552837,0.080705799162388],[-0.070207975804806,0.069214776158333,0.12119219452143]],[[0.041702471673489,-0.0066918102093041,0.032064188271761],[0.051311787217855,-0.035201825201511,-0.017387831583619],[-0.019510447978973,-0.026918094605207,-0.051255706697702]],[[-0.02087833546102,-0.0056959264911711,0.10946259647608],[-0.049880485981703,-0.016597596928477,0.14702962338924],[0.073450550436974,-0.011455938220024,0.021752716973424]],[[0.039916791021824,-0.023755887523293,-0.068697862327099],[0.034543555229902,-0.18518643081188,-0.069706737995148],[0.0040290621109307,-0.11083835363388,-0.085404299199581]],[[0.10217652469873,0.04921867698431,0.065889477729797],[-0.023091364651918,-0.065044440329075,-0.063798286020756],[-0.08617364615202,-0.086613416671753,-0.21142067015171]],[[-0.045319873839617,-0.063466794788837,0.040805660188198],[-0.0026254393160343,-0.14246225357056,-0.017250012606382],[-0.016370672732592,0.034711249172688,-0.074301309883595]],[[0.15587106347084,-0.0041507431305945,-0.077749326825142],[0.065806522965431,0.0682118460536,0.022934580221772],[0.018976518884301,-0.052092101424932,-0.1053017154336]],[[-0.042532488703728,0.13213391602039,0.028836926445365],[-0.03273656591773,-0.0087962709367275,-0.06852325797081],[0.0014422723324969,-0.092989906668663,-0.055455390363932]],[[-0.019787790253758,-0.0074671041220427,-0.0017940879333764],[-0.11187145113945,0.0078366044908762,-0.021244045346975],[0.017873786389828,-0.032236691564322,-0.085505984723568]],[[0.046714007854462,0.011742725037038,0.064348600804806],[-0.079603724181652,0.016172060742974,0.064218163490295],[-0.17580033838749,-0.10040834546089,-0.057931493967772]],[[0.083032734692097,0.079277023673058,-0.075216226279736],[-0.12189052253962,-0.061331186443567,-0.079848766326904],[-0.015653038397431,-0.11242657899857,0.028584696352482]],[[-0.15907929837704,0.047775261104107,0.0062342942692339],[0.31477823853493,0.073529921472073,-0.012938186526299],[-0.19761855900288,-0.059152137488127,-0.086532443761826]],[[0.017885807901621,-0.074899211525917,0.025972858071327],[-0.038732834160328,-0.080212257802486,0.034746333956718],[-0.12661941349506,0.0096326544880867,-0.020995629951358]],[[0.024882512167096,-0.010257366113365,-0.044480815529823],[0.10349277406931,0.048875518143177,-0.035238519310951],[0.088267117738724,0.099541753530502,-0.077224537730217]],[[0.025156762450933,-0.016574826091528,0.012850282713771],[0.036670990288258,-0.02082353644073,-0.044273439794779],[-0.099305711686611,-0.037150409072638,-0.078964851796627]],[[0.061967521905899,0.055600456893444,0.071468465030193],[0.00036016691592522,0.050218142569065,-0.021882994100451],[-0.027772096917033,-0.040682457387447,0.0020774465519935]],[[0.12741777300835,0.10631769895554,-0.11134024709463],[-0.17881010472775,0.034853592514992,-0.075259186327457],[0.040713299065828,-0.0052752187475562,0.028505859896541]],[[-0.020715722814202,-0.010199800133705,-0.069814555346966],[0.10605371743441,-0.0011550383642316,-0.0039304024539888],[0.026117214933038,0.10243644565344,0.068859964609146]],[[0.026378089562058,0.090534143149853,-0.012686139903963],[-0.084138058125973,0.038651619106531,-0.067237541079521],[-0.18863481283188,-0.025517124682665,0.066252946853638]],[[0.091656737029552,0.14185053110123,0.061452779918909],[-0.14014154672623,-0.060653377324343,-0.047212988138199],[0.033563125878572,0.11194881051779,-0.026094295084476]],[[-0.022779647260904,0.055941395461559,-0.078390777111053],[0.050862118601799,0.23134145140648,0.16558679938316],[-0.080685980618,-0.070730336010456,0.11030294001102]],[[0.019744386896491,-0.033842202275991,0.04473028331995],[0.026789542287588,0.08699831366539,0.076973989605904],[-0.0060429871082306,-0.10293613374233,-0.0065521532669663]],[[0.033365752547979,0.01997141726315,-0.055210683494806],[0.020374985411763,-0.00010149656736758,-0.018055314198136],[-0.089803986251354,0.0054427231661975,0.064931862056255]],[[-0.00092586752725765,0.11298641562462,0.018123891204596],[0.023270543664694,-0.021866017952561,0.036537416279316],[-0.14956010878086,-0.071575678884983,0.014834405854344]],[[0.02891955152154,0.12568745017052,-0.11850941926241],[0.02829273045063,0.040657199919224,-0.10839170962572],[0.028920393437147,0.046928096562624,-0.067867182195187]],[[-0.02903189137578,-0.056326925754547,-0.0017455299384892],[0.049513787031174,0.093461662530899,-0.035777140408754],[0.028888151049614,0.047344855964184,-0.027845961973071]],[[-0.040961053222418,0.094633594155312,0.012725110165775],[-0.060824163258076,0.041398517787457,-0.042875606566668],[-0.0005222653853707,0.030317960307002,-0.13641384243965]],[[0.019487742334604,0.0045526144094765,-0.031896959990263],[0.0012752127368003,0.066982626914978,-0.11294227093458],[0.020907428115606,-0.085410118103027,-0.018202932551503]],[[-0.0094824386760592,0.018339861184359,-0.070285573601723],[-0.089574620127678,-0.10254307091236,0.029327385127544],[0.16473799943924,0.055454213172197,-0.0047438875772059]],[[-0.030822919681668,0.0012097394792363,0.060773339122534],[0.045345015823841,-0.066786050796509,-0.011798452585936],[-0.022888729348779,0.013121168129146,0.064166195690632]],[[-0.026536416262388,-0.13328455388546,-0.020440330728889],[0.02692742459476,-0.076316215097904,-0.00031099971965887],[0.067689396440983,-0.0026548062451184,-0.024752588942647]]],[[[-0.086520828306675,-0.059935759752989,-0.1071133390069],[-0.0075301309116185,-0.12996166944504,0.046762559562922],[-0.13074041903019,-0.026566009968519,0.028476966544986]],[[0.021185589954257,0.17038922011852,0.1203178986907],[-0.10590840876102,-0.1459204852581,-0.14330868422985],[0.041255008429289,-0.032687701284885,0.096892580389977]],[[0.075174145400524,0.050653137266636,-0.026980370283127],[-0.022683685645461,0.0076668090187013,0.036511786282063],[-0.0053897346369922,-0.029809568077326,0.025718891993165]],[[0.038807138800621,-0.015821447595954,0.10253223776817],[-0.049468796700239,-0.042325258255005,-0.0199293512851],[-0.014938087202609,-0.036900371313095,0.0099467653781176]],[[0.060784388333559,-0.078365832567215,0.049703471362591],[0.13490542769432,0.022881021723151,0.014797478914261],[0.026753857731819,0.051985550671816,-0.041893851011992]],[[-0.033711299300194,-0.085797116160393,-0.041893478482962],[-0.0024056730326265,-0.096721798181534,0.072129040956497],[0.031400091946125,-0.098858013749123,-0.083832629024982]],[[-0.049691803753376,0.03739970177412,0.24240396916866],[0.11251003295183,-0.017949791625142,-0.13276122510433],[0.17628021538258,0.10050955414772,0.058302517980337]],[[0.082893773913383,-0.09697238355875,-0.018521310761571],[-0.0045398650690913,-0.043209258466959,-0.13974989950657],[0.063244797289371,0.074665039777756,0.1352419257164]],[[-0.14816908538342,-0.12494118511677,-0.14226840436459],[0.023036472499371,-0.057974252849817,-0.10639311373234],[-0.13001975417137,-0.069539040327072,-0.013062159530818]],[[0.020507074892521,-0.015164478681982,-0.021671554073691],[-0.013327245600522,-0.037815973162651,-0.020951079204679],[0.013301345519722,0.021943211555481,0.069367311894894]],[[-0.096301093697548,-0.05984028801322,-0.0300183724612],[-0.10530117154121,-0.11440625786781,-0.11071705818176],[0.018925404176116,0.058182060718536,-0.0072295009158552]],[[-0.077171109616756,-0.090128175914288,0.0084651028737426],[0.091373063623905,-0.00019374085240997,0.033829506486654],[0.040730215609074,0.1766649633646,0.13994935154915]],[[0.060039114207029,0.13028207421303,-0.018352905288339],[0.003329413710162,-0.060576751828194,-0.010665775276721],[0.079137206077576,-0.0087017128244042,0.012637533247471]],[[-0.064617142081261,-0.10648235678673,-0.078663036227226],[-0.078554295003414,0.056302677839994,-0.074926249682903],[-0.07116874307394,-0.015362350270152,-0.053095147013664]],[[0.17482270300388,0.076267831027508,0.099504865705967],[0.048204462975264,-0.042476944625378,0.14078606665134],[0.041494332253933,0.069055624306202,0.031974796205759]],[[0.076963789761066,-0.083084836602211,-0.062507048249245],[0.032871376723051,0.022450851276517,-0.051501326262951],[-0.056722890585661,-0.052798520773649,-0.14570811390877]],[[0.034561559557915,0.071279503405094,0.076590485870838],[-0.0282739456743,-0.024280162528157,0.061285406351089],[0.0070337424986064,-0.035467755049467,-0.019346624612808]],[[-0.0059442459605634,-0.032890040427446,0.080336548388004],[0.19206362962723,0.17765663564205,0.10709970444441],[-0.037255927920341,0.10681811720133,0.14238627254963]],[[-0.013121595606208,0.039049383252859,0.044984370470047],[-0.0075372694991529,-0.037736020982265,0.087182596325874],[0.064715377986431,0.019699905067682,-0.028301360085607]],[[0.050072267651558,0.10447523742914,0.036897040903568],[0.0046026571653783,-0.042024426162243,0.051097221672535],[-0.030436590313911,-0.08518997579813,-0.07352527230978]],[[-0.021190997213125,-0.0061747920699418,0.039971850812435],[-0.085914626717567,0.066173851490021,0.090726524591446],[0.047242552042007,-0.022425714880228,-0.020449202507734]],[[0.099564619362354,-0.039919435977936,-0.031968742609024],[0.041201092302799,0.01854913495481,-0.082063116133213],[0.10400576889515,0.074572689831257,-0.084254749119282]],[[-0.068043194711208,-0.042792554944754,0.015937261283398],[0.041479900479317,-0.11350038647652,-0.054647214710712],[-0.00070012651849538,-0.036999832838774,0.010720612481236]],[[0.023258933797479,-0.065513379871845,0.13224405050278],[-0.088096432387829,-0.037213668227196,0.027078203856945],[-0.032256908714771,0.064486064016819,0.036227371543646]],[[0.12824593484402,0.097930394113064,0.087749615311623],[0.028775993734598,-0.085036359727383,0.057342134416103],[0.10803436487913,-0.083714686334133,-0.12254086881876]],[[0.024303618818521,-0.02307198010385,0.020363096147776],[0.01000424195081,-0.00010277432011208,-0.030272359028459],[-0.044700868427753,-0.099162124097347,0.037437949329615]],[[-0.12648651003838,0.048125516623259,-0.030346853658557],[-0.15986788272858,-0.14457549154758,-0.088984943926334],[-0.07219323515892,0.087015941739082,-0.039460152387619]],[[0.059075005352497,0.016523744910955,-0.10941595584154],[0.077982485294342,0.041546858847141,0.08707519620657],[0.033258065581322,0.12200125306845,0.14395326375961]],[[-0.007167031057179,-0.015478668734431,-0.12920360267162],[-0.065257199108601,0.02262294664979,0.01450205873698],[-0.097732327878475,-0.015081600286067,0.0080614350736141]],[[-0.13027760386467,-0.024100972339511,-0.030247114598751],[-0.018560608848929,-0.071731649339199,-0.0079491110518575],[-0.045515887439251,0.0015334740746766,-0.06402512639761]],[[-0.16979798674583,0.076229520142078,-0.033265080302954],[-0.0024238412734121,-0.079214245080948,-0.011477714404464],[0.066725142300129,-0.018462205305696,-0.051134098321199]],[[0.0098292352631688,0.011942196637392,0.090032204985619],[0.06941194832325,0.10575763881207,0.15680673718452],[-0.01947670429945,0.10480404645205,-0.076956272125244]],[[0.075420394539833,-0.02308296225965,0.053454797714949],[-0.02138820849359,-0.0027659318875521,0.061675164848566],[-0.078897565603256,-0.051240608096123,-0.055376444011927]],[[0.078289270401001,0.036139063537121,-0.068760313093662],[-0.043841104954481,-0.0084357904270291,0.10511646419764],[-0.0040325550362468,-0.033784288913012,0.016733653843403]],[[0.026504708454013,-0.035456638783216,-0.037809889763594],[0.10624863952398,-0.052823401987553,0.010948624461889],[-0.14453719556332,-0.15484026074409,-0.14826826751232]],[[-0.068375915288925,0.026065148413181,-0.061265390366316],[-0.046713497489691,-0.025139287114143,0.034772366285324],[-0.10367419570684,-0.026040999218822,-0.045483779162169]],[[0.06099047139287,0.072347819805145,0.16809457540512],[0.018548546358943,0.098267830908298,0.036873698234558],[0.01131793204695,-0.12979331612587,-0.031017318367958]],[[0.035727731883526,0.042336858808994,0.019362470135093],[-0.050702627748251,0.026427341625094,-0.027034111320972],[0.14131458103657,-0.0075793568976223,-0.035441137850285]],[[-0.055582575500011,-0.031060911715031,-0.10912171006203],[0.023434521630406,-0.045674193650484,-0.15586894750595],[-0.012985753826797,0.018418878316879,0.020846175029874]],[[0.075476668775082,0.046712279319763,0.052932225167751],[0.030495349317789,0.040385834872723,0.088071659207344],[-0.039908595383167,-0.029398335143924,0.0059716012328863]],[[-0.073682390153408,0.11974934488535,-0.026581129059196],[-0.011513851583004,0.069989316165447,-0.066616527736187],[-0.04636849462986,-0.04170023649931,-0.16654787957668]],[[-0.021233716979623,-0.10025527328253,-0.033621452748775],[0.0022404305636883,-0.018905339762568,0.055100195109844],[-0.10968156158924,-0.017599180340767,0.017783369868994]],[[0.0055053541436791,0.10504072904587,-0.0075728194788098],[-0.086380958557129,0.10155253112316,0.067997336387634],[0.0038687160704285,0.03025159984827,0.099202089011669]],[[-0.016834728419781,0.017401494085789,0.018478924408555],[0.05417450517416,0.033296551555395,0.031610764563084],[0.030094729736447,0.0067644407972693,-0.032551165670156]],[[0.074638530611992,0.037779450416565,0.020486639812589],[-0.019192218780518,0.046338599175215,-0.019262157380581],[-0.074199549853802,0.014067957177758,-0.058711614459753]],[[-0.04668103903532,0.0016970776487142,0.071205601096153],[0.034643415361643,0.014859859831631,0.035356897860765],[0.0014520065160468,-0.065342657268047,-0.037565242499113]],[[-0.0020796835888177,-0.1078152358532,-0.15197567641735],[0.064549818634987,-0.0033847857266665,-0.10722100734711],[-0.028400380164385,0.056857582181692,-0.097566336393356]],[[0.11757887154818,0.0034352585207671,0.098341889679432],[0.037803184241056,0.0017716018483043,-0.08327454328537],[0.11372328549623,0.049559000879526,-0.071116469800472]],[[0.0050808708183467,0.05737492442131,0.040148597210646],[0.11468719691038,0.027395956218243,-0.0053345952183008],[-0.046634431928396,-0.0600202716887,-0.097258150577545]],[[-0.12733766436577,-0.10457084327936,-0.029965257272124],[-0.095719680190086,0.014378314837813,-0.095562338829041],[0.016575695946813,0.045385312289,-0.095768995583057]],[[-0.050318207591772,-0.047427367419004,-0.11628810316324],[-0.019144145771861,-0.075224243104458,-0.042726684361696],[0.087798357009888,-0.0041670529171824,-0.15882556140423]],[[-0.0034500502515584,-0.027067184448242,-0.0004020239575766],[-0.12426207959652,-0.010975903831422,0.0088319135829806],[0.12590144574642,0.11607966572046,0.097277872264385]],[[-0.014443377032876,-0.040356669574976,0.018835593014956],[-0.017168303951621,-0.0023630629293621,-0.026367608457804],[-0.015704290941358,0.038302041590214,0.029477953910828]],[[0.013958533294499,0.089872300624847,0.024271171540022],[-0.025225844234228,-0.0024219262413681,-0.047562349587679],[0.013958919793367,0.14526239037514,0.027554767206311]],[[0.01031733956188,-0.011745912954211,0.0044915862381458],[-0.023894798010588,-0.11325896531343,-0.058817662298679],[-0.11344479769468,-0.052710365504026,-0.21574009954929]],[[0.096756100654602,0.11756195873022,0.11142952740192],[0.04705011472106,0.014558580704033,0.030567087233067],[0.046573217958212,0.047875884920359,-0.045560825616121]],[[-0.029607161879539,0.090401835739613,0.15266688168049],[0.058106169104576,-0.0039922422729433,-0.018975477665663],[-0.17105177044868,-0.028325006365776,0.055897392332554]],[[0.086404390633106,0.073779419064522,-0.04896867275238],[-0.094313018023968,-0.0054090647026896,-0.061432436108589],[-0.039943393319845,-0.064063504338264,0.040433306246996]],[[-0.14577606320381,-0.05328368768096,0.0063955774530768],[-0.015099192038178,-0.021274670958519,0.039088226854801],[-0.11371436715126,-0.15453930199146,0.027594918385148]],[[0.045769859105349,0.056635323911905,-0.13845692574978],[0.073590122163296,-0.0017107828753069,-0.062478560954332],[0.0018694080645218,0.056022591888905,0.13883784413338]],[[0.044134858995676,-0.10331957787275,-0.019966239109635],[0.055895417928696,0.0032074318733066,-0.05202079564333],[-0.037275794893503,-0.1021865233779,-0.042774096131325]],[[-0.031502824276686,0.0021343808621168,-0.061438530683517],[0.063032135367393,-0.069981530308723,-0.052705358713865],[-0.075094260275364,-0.084859579801559,0.015559583902359]],[[0.02253439091146,-0.069518536329269,-0.077658139169216],[0.096884109079838,0.057091098278761,0.0059049632400274],[-0.00043210870353505,-0.070801258087158,-0.011602983810008]],[[0.055952686816454,0.060706526041031,0.051888972520828],[-0.0064307586289942,-0.069617822766304,-0.10428968071938],[0.061086941510439,0.032265983521938,-0.011215033009648]],[[-0.029335036873817,0.0026730094105005,-0.061152517795563],[-0.0031154318712652,0.057680156081915,-0.022818958386779],[0.032972391694784,0.020843435078859,-0.086430184543133]],[[-0.053573552519083,-0.030914949253201,-0.089671790599823],[0.057113371789455,0.0301793217659,-0.10465077310801],[-0.048364099115133,-0.043956983834505,-0.035036504268646]],[[0.002052138093859,0.0041763046756387,0.06672203540802],[0.17525596916676,0.0022418207954615,0.01082865986973],[-0.018212949857116,-0.0056359805166721,0.029114397242665]],[[-0.041481181979179,-0.15530440211296,-0.091047219932079],[0.0012153791030869,-0.11098354309797,0.04626377671957],[-0.052363462746143,-0.046391103416681,-0.031145896762609]],[[-0.09129923582077,-0.02572350949049,-0.089970327913761],[0.016921620815992,-0.034055653959513,0.054212711751461],[-0.020331690087914,-0.036394193768501,-0.10972464084625]],[[0.045954618602991,0.027849046513438,0.061481606215239],[-0.086433164775372,-0.053969364613295,-0.13998551666737],[-0.084363482892513,-0.12810122966766,0.035012543201447]],[[-0.026770932599902,0.08025749027729,-0.020978851243854],[-0.045306552201509,-0.043107412755489,-0.027352537959814],[0.030012464150786,0.048210695385933,0.1853843331337]],[[0.19012512266636,0.11947526782751,0.038138672709465],[0.031500279903412,0.0040939976461232,0.053800601512194],[0.0073181726038456,-0.017881019040942,-0.0080464286729693]],[[-0.048972472548485,-0.088363297283649,-0.10791143029928],[-0.12694324553013,-0.07133961468935,-0.073783807456493],[-0.15621122717857,0.03383532166481,0.10095500946045]],[[0.014647511765361,-0.034423340111971,-0.11116699874401],[0.012282241135836,0.0076632224954665,-0.033759217709303],[-0.093176640570164,0.096121646463871,0.035870216786861]],[[0.021281987428665,-0.031960505992174,0.051104236394167],[-0.050112441182137,-0.017763029783964,-0.025806648656726],[-0.011871074326336,0.071795389056206,0.14066237211227]],[[-0.057147722691298,-0.061328627169132,0.062075693160295],[-0.10971739143133,-0.022726753726602,-0.019374817609787],[0.075746640563011,-0.025683684274554,-0.051570653915405]],[[-0.083321653306484,-0.041605975478888,-0.068820714950562],[-0.16692148149014,-0.04519747197628,0.045460678637028],[-0.041293185204268,0.048507656902075,0.15608863532543]],[[-0.065376915037632,0.023010816425085,-0.02275655977428],[-0.024703180417418,-0.15217025578022,-0.0053034061565995],[-0.099204741418362,-0.009380217641592,-0.015817731618881]],[[-0.16751651465893,-0.068215638399124,0.0029869459103793],[0.0033144541084766,-0.086524464190006,-0.10883328318596],[-0.099421858787537,-0.00049588282126933,0.099396795034409]],[[-0.010971315205097,-0.030329566448927,-0.089071348309517],[0.048970714211464,0.11802054196596,0.087534107267857],[-0.07794663310051,0.00019963033264503,-0.012798942625523]],[[0.057536765933037,-0.029043890535831,-0.0060937502421439],[-0.010149732232094,-0.01395215280354,-0.044543955475092],[0.012502617202699,-0.085797168314457,-0.11120876669884]],[[0.17316460609436,-0.013695552945137,-0.1004217043519],[0.071795798838139,0.084575116634369,0.13425274193287],[0.05383450910449,0.13594697415829,0.11617178469896]],[[-0.0063048535957932,0.0091321412473917,0.018301356583834],[0.020550375804305,0.026557901874185,0.094425559043884],[0.075005255639553,0.17214605212212,0.17697747051716]],[[-0.022374581545591,0.0091915875673294,0.043821692466736],[0.0092122256755829,-0.048479039222002,0.12643539905548],[-0.04745727404952,-0.038901753723621,-0.057378370314837]],[[-0.090328812599182,-0.0859130397439,0.16486349701881],[0.046085044741631,-0.058564722537994,-0.085082016885281],[0.035325367003679,0.0017987395403907,0.11578855663538]],[[0.14149443805218,-0.063177585601807,-0.026354921981692],[0.021951880306005,0.067509360611439,-0.0053831986151636],[-0.079360410571098,0.065391398966312,-0.0019480418413877]],[[-0.15671834349632,-0.041272938251495,0.041409026831388],[0.13812594115734,-0.039705459028482,-0.091443955898285],[0.10555440932512,-0.014050372876227,-0.089657321572304]],[[0.1127400547266,-0.046264622360468,-0.044668097048998],[0.20832380652428,0.061638291925192,-0.099686369299889],[0.098953008651733,0.031657390296459,0.018912917003036]],[[0.012557867914438,0.075616605579853,-0.014478098601103],[0.0457310564816,-0.0038158965762705,0.079566031694412],[0.033056519925594,0.01711161993444,-0.011566704139113]],[[-0.0065175020135939,0.048264354467392,-0.005425734911114],[-0.032123230397701,-0.0010281588183716,-0.027676999568939],[0.12123893201351,0.078746967017651,0.02476847358048]],[[0.051049459725618,0.0066884574480355,0.042084544897079],[-0.0036113522946835,0.20911109447479,-0.032349891960621],[0.12078023701906,0.046351667493582,-0.023047175258398]],[[0.15074346959591,0.13354448974133,0.01824477314949],[0.047085098922253,-0.0070394575595856,-0.032158058136702],[-0.082042269408703,-0.082361504435539,-0.037534311413765]],[[0.03066498041153,0.12075654417276,0.050174232572317],[-0.11973116546869,-0.012075788341463,-0.10392293334007],[0.031713634729385,-0.037293471395969,-0.018153803423047]],[[-0.036370918154716,-0.012917178682983,0.062844082713127],[0.0054999538697302,-0.047599744051695,0.0018106816569343],[-0.01510669849813,-0.04917111992836,-0.038495928049088]],[[-0.059984218329191,-0.042907241731882,-0.018783925101161],[0.11028187721968,0.030425233766437,0.15647618472576],[0.0096395453438163,0.0090327877551317,0.050338495522738]],[[-0.033562287688255,-0.08124577999115,0.0069484608247876],[-0.035338390618563,0.00092118920292705,0.062638759613037],[0.008517942391336,-0.041981779038906,-0.069834776222706]],[[-0.098488189280033,-0.04964391887188,-0.046120963990688],[-0.031438536942005,0.00072391505818814,0.0055953562259674],[-0.024747189134359,0.096438318490982,-0.0056666070595384]],[[-0.24379593133926,-0.085281066596508,0.017505429685116],[-0.016953708603978,0.083489492535591,0.047879345715046],[-0.016554577276111,-0.061748154461384,-0.053268864750862]],[[0.026963004842401,-0.080195888876915,-0.12457825988531],[-0.017678413540125,-0.084116525948048,-0.10604052245617],[-0.0036413685884327,-0.12377062439919,0.018786696717143]],[[-0.0021210282575339,0.031121948733926,-0.073457300662994],[0.14364050328732,0.12276918441057,0.070313535630703],[-0.028646172955632,-0.060447085648775,-0.0092527307569981]],[[0.10461312532425,-0.088618636131287,-0.032423470169306],[0.18409034609795,-0.077331155538559,-0.08157853782177],[0.096517816185951,-0.044694919139147,-0.061772093176842]],[[0.1018031090498,0.1625824123621,0.19993425905704],[0.051047090440989,0.17853705585003,0.18161934614182],[-0.001738207298331,0.064693868160248,0.034416474401951]],[[-0.097386330366135,0.10562032461166,0.084101997315884],[0.00092892156681046,0.094132483005524,-0.063147388398647],[-0.0031438916921616,-0.059748813509941,0.033408675342798]],[[0.084601812064648,0.16869011521339,0.13199888169765],[-0.0034488120581955,-0.20286743342876,0.060920160263777],[0.09334459155798,0.066062077879906,0.0057607023045421]],[[-0.0077161081135273,0.10389328747988,0.0524668879807],[-0.10910034179688,-0.11750474572182,-0.040119376033545],[-0.047765363007784,-0.01484824065119,-0.017484804615378]],[[0.054546885192394,0.019819255918264,0.014198915101588],[-0.035634569823742,-0.062621735036373,-0.0042945388704538],[-0.079623639583588,-0.059600953012705,-0.077101454138756]],[[0.04393757134676,-0.062700517475605,0.068601429462433],[-0.11559861153364,0.024765318259597,0.059787541627884],[-0.054877333343029,-0.081523068249226,0.016872080042958]],[[-0.083039209246635,-0.095428228378296,-0.086639903485775],[-0.081073313951492,-0.074754394590855,-0.041070703417063],[-0.024170998483896,0.026429057121277,0.078294709324837]],[[-0.045614115893841,-0.012598629109561,-0.029012115672231],[-0.11750768125057,-0.12215156108141,0.15555921196938],[0.10388708114624,-0.027922201901674,-0.031975440680981]],[[-0.043198172003031,0.099187031388283,0.09113659709692],[-0.02437905408442,0.14796656370163,0.1283633261919],[0.094224818050861,0.0095361303538084,-0.01126504316926]],[[-0.046877149492502,0.050902184098959,0.073539346456528],[-0.030541822314262,0.049060393124819,-0.0092402780428529],[-0.037859622389078,-0.031642351299524,0.038233984261751]],[[0.0019991768058389,-0.069544047117233,0.025456380099058],[0.021270908415318,0.10802268981934,0.11883598566055],[-0.0059815356507897,-0.015740785747766,0.10418521612883]],[[-0.12474223226309,-0.019724398851395,-0.028078958392143],[-0.0052555561996996,-0.0034056566655636,0.043561145663261],[-0.01263848412782,0.03513041511178,-0.037768721580505]],[[-0.1926466524601,-0.088027231395245,-0.055760063230991],[-0.0059511414729059,0.098494574427605,0.12345189601183],[0.010026538744569,0.10621812194586,0.048685252666473]],[[0.0058631123974919,-0.044318880885839,-0.0026310381945223],[-0.086782284080982,-0.086751893162727,-0.096954323351383],[0.0066827903501689,0.043871119618416,0.063477486371994]],[[0.047666780650616,-0.030964538455009,-0.021048592403531],[0.038568023592234,0.11136564612389,0.05913844332099],[-0.029092539101839,-0.14263121783733,-0.093425661325455]],[[0.0033064493909478,-0.038270752876997,-0.13947220146656],[0.075810343027115,0.23518501222134,0.24366699159145],[-0.043323840945959,-0.18623161315918,0.0077802697196603]],[[0.037781529128551,0.0034368454944342,-0.07033533602953],[-0.095991231501102,0.016976749524474,-0.081221327185631],[0.084120571613312,-0.030030341818929,-0.072724424302578]],[[-0.07013463228941,-0.012719159014523,-0.028783326968551],[-0.024157354608178,-0.045016631484032,-0.11570400744677],[-0.0065322369337082,-0.11805606633425,-0.042568370699883]],[[0.056435208767653,-0.020080069079995,-0.057123649865389],[-0.039132550358772,0.019114414229989,0.044679999351501],[-0.0054824878461659,0.052324157208204,-0.10603618621826]],[[0.050807539373636,0.15846773982048,0.014898271299899],[0.070751272141933,0.053638216108084,0.20565612614155],[-0.050576016306877,0.05988697335124,0.024379270151258]],[[0.042490433901548,0.035318445414305,-0.034876402467489],[0.020911945030093,0.057958524674177,-0.024888889864087],[0.069248378276825,-0.0012682009255514,-0.12313828617334]],[[-0.012342466972768,-0.011119327507913,-0.17782007157803],[-0.11370965093374,-0.043009027838707,-0.098553448915482],[-0.032693143934011,-0.027923794463277,-0.027182746678591]],[[0.034210722893476,0.0039313975721598,0.045319765806198],[0.030129726976156,-0.071563765406609,0.033918425440788],[0.12592773139477,-0.064090073108673,0.010045480914414]],[[0.0420743227005,0.086476370692253,0.0082521522417665],[-0.13800728321075,-0.085331961512566,0.07231929153204],[-0.097563251852989,-0.00066808145493269,-0.054903354495764]],[[0.00068227807059884,0.023013418540359,-0.039577081799507],[0.057187978178263,-0.0043775080703199,0.018037328496575],[-0.19033464789391,-0.12234352529049,-0.0050063407979906]],[[-0.098019503057003,0.077234216034412,0.099395804107189],[-0.042199395596981,-0.13914926350117,0.014584570191801],[0.01256362721324,0.033735398203135,-0.011851315386593]],[[-0.063236586749554,-0.074499316513538,-0.096601016819477],[-0.15347790718079,-0.077549651265144,0.16383472084999],[0.032717812806368,0.035885211080313,0.12164346128702]]],[[[0.011338119395077,0.03603870049119,0.06158172339201],[0.056923568248749,-0.023764118552208,0.071417309343815],[0.10855198651552,-0.077017173171043,0.049703817814589]],[[-0.12668772041798,0.10423156619072,-0.059163220226765],[-0.057460404932499,-0.045145656913519,-0.088505528867245],[-0.11265247315168,0.044684138149023,0.015119700692594]],[[0.16319313645363,0.0013943136436865,-0.0036445010919124],[0.098313644528389,-0.054009161889553,-0.11965794861317],[0.043197896331549,0.13721549510956,-0.13697361946106]],[[0.23126830160618,0.05948169901967,0.046958107501268],[0.19557224214077,0.12653285264969,0.074277870357037],[-0.015508400276303,-0.0047466368414462,-0.035921279340982]],[[0.054375693202019,-0.015094326809049,0.18085809051991],[0.0094612594693899,-0.056072875857353,0.26033398509026],[-0.05901451036334,-0.081180490553379,0.16344228386879]],[[-0.051517639309168,-0.017541455104947,-0.025217553600669],[0.23750665783882,-0.010877630673349,-0.058208525180817],[0.083435960114002,-0.059350978583097,0.18790747225285]],[[-0.11625520139933,0.010717713274062,0.18450580537319],[-0.11355691403151,0.14173552393913,0.081144772469997],[-0.090539894998074,0.062192916870117,-0.019062517210841]],[[0.18410469591618,-0.040975607931614,-0.0096128052100539],[0.18520264327526,0.055761087685823,0.020775122568011],[-0.049210801720619,-0.079536862671375,0.018043925985694]],[[0.17002287507057,0.10077763348818,-0.095506310462952],[0.03533910959959,-0.077689453959465,-0.027526853606105],[0.011163555085659,0.088255152106285,-0.062909983098507]],[[-0.12164513021708,0.031283035874367,-0.058039285242558],[-0.20702537894249,0.10550226271152,-0.037606034427881],[-0.033295229077339,0.0046929405070841,0.018538953736424]],[[0.028416072949767,0.051000390201807,0.14024791121483],[-0.016493953764439,0.065287038683891,0.027312386780977],[0.065482392907143,0.036825425922871,0.084552280604839]],[[-0.019101545214653,0.15892525017262,0.21746717393398],[-0.032285187393427,0.0096164233982563,0.069598250091076],[-0.020478075370193,-0.019356705248356,-0.061627130955458]],[[-0.02819343470037,-0.13793113827705,0.099858932197094],[0.16363956034184,-0.029534552246332,0.14466023445129],[-0.026172047480941,0.011793842539191,0.09559353441]],[[0.051785215735435,0.091879397630692,-0.098799020051956],[0.081900022923946,0.039924114942551,-0.16721318662167],[0.014453840442002,-0.0073400209657848,-0.18071675300598]],[[-0.071839064359665,-0.23719342052937,-0.079264879226685],[-0.11852353811264,-0.0050515602342784,-0.25128442049026],[-0.27179878950119,-0.12385411560535,0.28848248720169]],[[0.1304278075695,-0.10113329440355,0.028049444779754],[0.0075683766044676,-0.06549646705389,-0.14596889913082],[0.10423086583614,-0.010733457282186,-0.16739900410175]],[[-0.034602150321007,-0.10812973976135,0.013004146516323],[-0.14181806147099,-0.043710507452488,0.017432009801269],[-0.06023721024394,0.0057263104245067,0.039980158209801]],[[-0.049295041710138,0.12781208753586,-0.10607974231243],[-0.0016888797981665,-0.025393823161721,-0.037151757627726],[-0.097773015499115,-0.045702438801527,-0.047465186566114]],[[0.035306006669998,0.10851194709539,-0.17696215212345],[-0.040413230657578,0.04719402641058,-0.045055475085974],[-0.12384529411793,-0.090366080403328,0.13243034482002]],[[-0.16652831435204,0.047740556299686,-0.0043868445791304],[-0.11488708108664,0.10925395786762,-0.13931851089001],[-0.065215513110161,0.036490987986326,-0.083630859851837]],[[0.01591837964952,-0.029850760474801,0.091276861727238],[-0.094591751694679,-0.024392511695623,0.0073181535117328],[-0.19091264903545,-0.053796462714672,0.011181049980223]],[[0.039512481540442,-0.017188696190715,0.09912695735693],[-0.091189935803413,0.041174031794071,-0.11024054139853],[-0.070971935987473,0.11621294170618,-0.0045132571831346]],[[0.14618355035782,-0.18261063098907,-0.03715993091464],[0.18716523051262,-0.050598852336407,0.074869588017464],[0.11555701494217,-0.03935930877924,0.032466880977154]],[[0.087310396134853,0.041566286236048,0.079717040061951],[0.040373753756285,0.14065389335155,-0.046487376093864],[0.040156058967113,0.0010440003825352,0.04555481299758]],[[0.094550885260105,0.011414489708841,-0.021325130015612],[0.13101963698864,0.066686302423477,-0.030451824888587],[-0.046708311885595,-0.01966181024909,-0.054291319102049]],[[0.16753232479095,0.0026099206879735,-0.063599847257137],[0.087684966623783,-0.071197815239429,0.063541635870934],[0.010045917704701,-0.25089302659035,0.21538265049458]],[[-0.09841912984848,0.0042392895556986,-0.016430322080851],[-0.012467228807509,0.1274741590023,0.12471113353968],[-0.003706679912284,0.12763878703117,0.090248264372349]],[[0.12990906834602,-0.14949209988117,-0.070344254374504],[-0.056892268359661,-0.062153339385986,0.11880512535572],[-0.072201862931252,-0.15820297598839,0.14469467103481]],[[-0.13248746097088,0.067405350506306,-0.0043979776091874],[0.036141861230135,-0.035207871347666,0.022518198937178],[0.013571019284427,0.1158684939146,-0.14783829450607]],[[-0.14193545281887,-0.040990818291903,0.0039733750745654],[-0.1030332967639,-0.072354666888714,0.011475424282253],[0.040912725031376,0.058740459382534,0.021271143108606]],[[-0.13220548629761,-0.011860946193337,0.027420286089182],[-0.1069899648428,-0.027551885694265,0.19989325106144],[0.072293199598789,-0.016440046951175,-0.030169606208801]],[[0.076304763555527,0.063936598598957,-0.064310498535633],[0.077469475567341,0.10516351461411,-0.11019472032785],[-0.06250225007534,0.010397303849459,-0.027982417494059]],[[0.12884038686752,-0.019814835861325,0.034903716295958],[0.16521093249321,0.029261404648423,0.13242392241955],[-0.062894426286221,-0.10226845741272,-0.018158949911594]],[[0.061266425997019,-0.021366180852056,0.11274541914463],[0.060736790299416,-0.013468307442963,0.11257183551788],[0.00038215861422941,-0.024543777108192,0.030871566385031]],[[-0.12673312425613,-0.050856806337833,-0.11246419698],[-0.21038961410522,-0.11312765628099,-0.080876812338829],[-0.069101102650166,-0.041660293936729,0.02802924066782]],[[-0.11605686694384,-0.080413945019245,0.086877435445786],[-0.080828070640564,0.034763760864735,-0.061543986201286],[-0.016723638400435,-0.042922962456942,-0.031417351216078]],[[-0.019833724945784,-0.0019109816057608,-0.035824444144964],[-0.033996094018221,0.090638138353825,-0.062262717634439],[-0.019863398745656,0.08991065621376,0.073983900249004]],[[0.090888522565365,0.053737670183182,0.043602827936411],[0.098266042768955,-0.037024989724159,-0.069815784692764],[0.047220062464476,-0.0094481045380235,0.10886393487453]],[[0.075004681944847,-0.14678077399731,0.009913569316268],[0.097116321325302,0.013997299596667,-0.10996528714895],[0.029032537713647,0.03526233881712,-0.13392640650272]],[[0.048239592462778,-0.10804058611393,0.032239146530628],[-0.057766873389482,-0.031571909785271,-0.052557092159986],[-0.11292658001184,-0.096350654959679,0.010929233394563]],[[-0.0022468566894531,0.017909551039338,0.11104801297188],[-0.041840508580208,-0.052012257277966,0.12962561845779],[-0.19764368236065,-0.071915879845619,-0.022900814190507]],[[0.07400618493557,-0.080017149448395,-0.10602981597185],[0.10343392938375,-0.11286332458258,0.013560796156526],[0.11061291396618,-0.039271812886,-0.21919645369053]],[[0.019149200990796,-0.048992108553648,0.027133733034134],[0.10663372278214,0.013599949888885,-0.071131177246571],[0.042516805231571,-0.014861093834043,-0.058924023061991]],[[-0.014491160400212,-0.083628855645657,-0.067397885024548],[0.010626423172653,-0.0057652872055769,0.069135680794716],[-0.072002276778221,0.030898248776793,0.014226539991796]],[[0.081777967512608,-0.0054280944168568,0.043570417910814],[-0.10150842368603,-0.036517467349768,-0.11647666245699],[0.07242526859045,0.033638954162598,-0.12334670871496]],[[-0.14566592872143,0.1713061183691,0.030961435288191],[-0.084252759814262,0.091694608330727,0.015320814214647],[-0.13990144431591,0.070136576890945,-0.11175419390202]],[[0.021506529301405,-0.19590424001217,-0.072282239794731],[-0.062141533941031,-0.073625020682812,-0.1856706738472],[-0.0047095967456698,-0.029822653159499,0.062833197414875]],[[0.015024892054498,0.045716896653175,-0.12169770151377],[0.081464737653732,0.0014800210483372,0.10949464887381],[0.002289249561727,0.10459019243717,0.012640103697777]],[[0.097291134297848,0.013947641476989,0.0012361307162791],[0.025277705863118,0.076152101159096,0.079406261444092],[-0.04010546207428,0.071962371468544,-0.040622543543577]],[[-0.035722471773624,0.067091457545757,-0.085217662155628],[0.085172936320305,0.099349029362202,-0.13848680257797],[0.09363067150116,0.1037223264575,-0.012080677784979]],[[0.018747489899397,0.010786888189614,-0.021684775128961],[0.0074767088517547,-0.032799944281578,-0.00085768714779988],[-0.023748451843858,-0.175189062953,-0.086440607905388]],[[0.070059426128864,0.066558092832565,-0.038036789745092],[0.030064761638641,0.050444986671209,-0.016976607963443],[0.11677900701761,0.0023238207213581,0.091327235102654]],[[-0.068656034767628,0.09387195110321,0.061894327402115],[-0.0092644933611155,-0.091203480958939,0.053805351257324],[-0.062968231737614,-0.10766687989235,0.019128546118736]],[[0.10513422638178,0.036200519651175,0.12049223482609],[-0.12094455957413,0.0052328347228467,0.039730932563543],[-0.11101821810007,0.11564611643553,0.019278660416603]],[[-0.054561551660299,0.10629418492317,-0.0020721696782857],[0.065995752811432,0.011745179072022,-0.07201287150383],[-0.031919129192829,0.084058038890362,-0.021964345127344]],[[-0.065293125808239,0.18112625181675,0.041501738131046],[-0.02140305750072,-0.086700409650803,0.023012734949589],[0.21572080254555,-0.011953813955188,0.059406589716673]],[[-0.065082177519798,-0.070049375295639,0.10999268293381],[0.049455758184195,-0.027229066938162,0.076988086104393],[-0.060913760215044,0.033625449985266,0.018896520137787]],[[0.10828395932913,-0.10394447296858,0.008694676682353],[-0.005326674785465,-0.01446960773319,0.0523766502738],[-0.1791807115078,-0.094471916556358,0.0021986535284668]],[[-0.079892292618752,0.05821368843317,0.11145156621933],[-0.15390761196613,-0.035681664943695,0.13760775327682],[-0.050872940570116,-0.13336572051048,0.069540999829769]],[[0.024746989831328,-0.033864203840494,-0.085657343268394],[-0.0077435690909624,0.043160200119019,-0.1996237039566],[-0.034960880875587,0.024456430226564,-0.15907342731953]],[[0.071001924574375,0.0019206820288673,0.021235566586256],[0.099096834659576,-0.049056671559811,0.081473864614964],[-0.00027332018362358,-0.072902910411358,0.063895121216774]],[[-0.077760614454746,-0.040219459682703,-0.18836005032063],[-0.088991306722164,-0.036097977310419,-0.21245010197163],[-0.05341675132513,0.023016415536404,-0.074110046029091]],[[0.1051497682929,0.050289452075958,-0.12365734577179],[-0.1541393995285,0.035816740244627,-0.052279554307461],[-0.062090635299683,-0.083701565861702,-0.016636909916997]],[[0.040638756006956,-0.047767803072929,-0.083024874329567],[0.10076632350683,0.08201490342617,0.015989540144801],[0.11966046690941,0.29139912128448,0.021105712279677]],[[-0.025725526735187,-0.14125676453114,0.1723974943161],[0.0035269549116492,-0.015863675624132,-0.018281197175384],[0.045676056295633,0.01045111194253,-0.11287518590689]],[[-0.13775599002838,-0.0045942105352879,0.033150415867567],[-0.032978091388941,-0.10254687815905,0.070215754210949],[-0.080662578344345,-0.12131253629923,-0.007057152222842]],[[0.029655637219548,-0.057989526540041,0.048349309712648],[-0.0095422696322203,0.014422016218305,0.039318677037954],[0.098585933446884,-0.032175149768591,0.035633902996778]],[[-0.1668446958065,-0.025514628738165,0.12394120544195],[0.084848634898663,-0.10684418678284,0.10066728293896],[0.0031443033367395,-0.065165176987648,0.017727505415678]],[[0.028592702001333,-0.15322270989418,0.064215779304504],[0.063025653362274,-0.17136535048485,0.065367937088013],[0.081559218466282,-0.098510004580021,0.10198352485895]],[[0.033816169947386,0.0010505554964766,-0.03532087802887],[0.038500029593706,0.011645848862827,-0.024459272623062],[0.017155658453703,-0.0024416260421276,-0.088547639548779]],[[-0.1192332431674,0.04836642742157,-0.040745783597231],[-0.023920932784677,0.017357718199492,0.058487880975008],[-0.0078238900750875,-0.014573578722775,-0.0068241278640926]],[[0.080888666212559,0.10156086832285,0.037437677383423],[-0.0061804065480828,0.062483504414558,-0.059256374835968],[0.003536228556186,0.029494717717171,0.17601127922535]],[[-0.20114099979401,-0.12454035133123,-0.078499294817448],[-0.21874910593033,-0.0073374952189624,-0.051439698785543],[-0.18263237178326,-0.31056064367294,0.072067350149155]],[[0.0017031407915056,-0.032976843416691,0.032595824450254],[0.034070517867804,0.02527760900557,0.08536110073328],[0.026669353246689,-0.038849696516991,0.2401088476181]],[[-0.12908008694649,0.010027629323304,0.027177326381207],[-0.12265215814114,-0.021176174283028,0.003271552734077],[-0.15402111411095,-0.0086852163076401,0.050942596048117]],[[0.077634371817112,-0.0046271239407361,0.08313624560833],[-0.059571783989668,0.038247175514698,0.11501444131136],[0.025812935084105,0.13052244484425,0.1363677829504]],[[0.043568037450314,0.060286086052656,-0.069539979100227],[-0.13579587638378,0.016038902103901,0.076924979686737],[-0.055771041661501,0.04814799502492,-0.02480629645288]],[[0.043479897081852,-0.022167362272739,-0.088062152266502],[0.0090137012302876,0.0049642315134406,-0.11724326014519],[-0.080806255340576,-0.093404039740562,0.016727479174733]],[[-0.033303625881672,-0.0070801447145641,-0.012986178509891],[-0.12800870835781,-0.0055187954567373,0.0045054797083139],[-0.11033898591995,-0.039630185812712,0.072108559310436]],[[-0.088188774883747,0.080830797553062,0.12474375963211],[-0.12684245407581,-0.1327518671751,0.085768431425095],[0.064318150281906,-0.10018387436867,0.10190150886774]],[[0.12072928249836,-0.032018978148699,-0.020392401143909],[0.12668126821518,0.04468472674489,-0.0033163849730045],[-0.022801188752055,-0.026837645098567,-0.039263818413019]],[[-0.15553650259972,0.10603308677673,-0.009335090406239],[-0.11063365638256,-0.017449133098125,0.087930344045162],[-0.062662236392498,-0.032956216484308,-0.015630360692739]],[[-0.0072382600046694,0.070133872330189,0.036580868065357],[-0.11693125218153,0.12257964909077,-0.00018957964493893],[-0.090040303766727,0.18602201342583,0.019405897706747]],[[-0.10708228498697,-0.11065970361233,-0.012564371339977],[-0.11982991546392,-0.062659814953804,-0.13459062576294],[-0.19377660751343,-0.11454246193171,-0.12734454870224]],[[0.17457266151905,-0.18639308214188,-0.080491468310356],[0.011161059141159,-0.0099829062819481,0.13423417508602],[-0.032656718045473,-0.08799222111702,-0.13496570289135]],[[-0.15187184512615,0.050348840653896,-0.030753683298826],[-0.10443206876516,0.075333446264267,0.073728628456593],[0.027435602620244,-0.096847981214523,0.15873849391937]],[[0.046637814491987,0.036244586110115,0.025080109015107],[0.058538448065519,0.13968089222908,-0.005299324169755],[0.022413115948439,0.085009664297104,0.12665762007236]],[[-0.0018696789629757,-0.03775055706501,0.26284635066986],[0.11942017823458,-0.041773967444897,-0.12653979659081],[0.112045571208,0.033708203583956,-0.061466168612242]],[[-0.063712142407894,-0.074957296252251,-0.047887962311506],[-0.024102220311761,0.024410285055637,-0.053713042289019],[0.11304000765085,0.11848879605532,0.0211948659271]],[[0.14207702875137,0.055042278021574,0.11002609878778],[0.012286092154682,-0.094868175685406,0.056719582527876],[-0.1030158996582,-0.068560838699341,0.01569726318121]],[[0.11585823446512,0.050782606005669,0.0029555028304458],[0.093638554215431,0.077238917350769,0.12609955668449],[-0.0095617426559329,0.030237145721912,0.063366189599037]],[[-0.086368322372437,0.087898261845112,-0.08800383657217],[-0.12202728539705,-0.015579715371132,0.095818668603897],[-0.023021575063467,-0.050858564674854,-0.078266695141792]],[[0.051764477044344,-0.13745810091496,0.031334564089775],[-0.0082529904320836,0.010276265442371,0.16157062351704],[-0.055656656622887,0.0053744646720588,0.13331846892834]],[[-0.099652320146561,-0.081235490739346,0.11673033982515],[-0.073853671550751,-0.094343759119511,0.012693230994046],[0.014187124557793,-0.074450992047787,0.054959874600172]],[[0.033190924674273,-0.060287449508905,-0.016395345330238],[-0.010980312712491,-0.0058886804617941,-0.13843509554863],[-0.013683126308024,-0.038156557828188,-0.16879199445248]],[[-0.1801510900259,-0.059603605419397,0.096084251999855],[-0.042892128229141,-0.031290717422962,0.19985461235046],[0.021588530391455,-0.0078159747645259,-0.094183757901192]],[[0.091384164988995,0.011129735037684,-0.16074167191982],[0.15686136484146,0.028366958722472,0.035925686359406],[0.075897805392742,0.031706657260656,0.0095073580741882]],[[0.15089392662048,0.065378494560719,-0.054168071597815],[0.023135589435697,0.18938063085079,-0.075400903820992],[0.076494000852108,0.20938143134117,0.022560492157936]],[[0.041938602924347,-0.07512404024601,-0.056828159838915],[0.18578703701496,-0.059602271765471,-0.076730638742447],[0.070930972695351,0.10267645120621,-0.15292696654797]],[[0.11450643092394,-0.11881002038717,0.096781820058823],[0.037331681698561,-0.10451599210501,0.049838650971651],[0.0081744939088821,0.028103237971663,0.086287528276443]],[[0.054900113493204,-0.1006643474102,-0.17180490493774],[0.023128014057875,-0.074380308389664,-0.10774137824774],[-0.031597051769495,-0.088116496801376,0.019912471994758]],[[0.16249379515648,0.13164931535721,0.072215378284454],[0.12840032577515,0.018127815797925,-0.065004527568817],[0.032229065895081,-0.0028430460952222,-0.043134532868862]],[[0.0017138908151537,0.019977333024144,-0.049972139298916],[-0.11409931629896,0.039464261382818,-0.037237834185362],[0.025940122082829,0.07277949154377,0.057794459164143]],[[0.055311191827059,-0.017834328114986,0.089825704693794],[0.018601952120662,-0.00062286102911457,0.010576925240457],[0.10212741792202,-0.0116260163486,-0.03576222807169]],[[-0.10352131724358,-0.044011529535055,-0.038756348192692],[-0.0013846439542249,-0.15109895169735,-0.11507243663073],[0.080458141863346,0.020073503255844,0.030323063954711]],[[-0.12565158307552,0.058824062347412,-0.048617351800203],[-0.041461825370789,0.013423438183963,-0.010970826260746],[-0.011460857465863,0.0062422966584563,0.07035006582737]],[[0.074064284563065,0.035950168967247,-0.039986647665501],[0.064107991755009,-0.014068142510951,0.056528851389885],[-0.12053786963224,-0.066503912210464,0.022837022319436]],[[-0.0011274141725153,0.039445694535971,0.026312559843063],[-0.0336421020329,-0.037104122340679,0.025553831830621],[-0.095685474574566,-0.034196406602859,-0.20319086313248]],[[0.080580174922943,0.10482707619667,0.022066479548812],[-0.12168791145086,0.052691198885441,-0.012580436654389],[0.0036373427137733,-0.003756387392059,0.097931198775768]],[[0.060543734580278,0.072500720620155,-0.11135701090097],[0.0054327719844878,-0.068377077579498,-0.012859080918133],[-0.050009835511446,-0.042786795645952,0.056514095515013]],[[-0.058448612689972,-0.056292537599802,0.02387809753418],[-0.044173628091812,-0.018040237948298,0.00010140886297449],[-0.015313301235437,0.070255160331726,0.005438978318125]],[[-0.070811286568642,-0.0065817846916616,-0.015488393604755],[-0.11408888548613,-0.015389620326459,-0.0012506293132901],[-0.10453170537949,-0.088931210339069,-0.01816344819963]],[[-0.022556031122804,0.087096363306046,0.0059758159331977],[-0.042120758444071,0.15145610272884,0.093274123966694],[0.039733566343784,-0.072440132498741,-0.024772049859166]],[[-0.13395594060421,0.016492223367095,0.0091539835557342],[0.10291783511639,0.021085500717163,0.007194853387773],[-0.015437837690115,-0.055066496133804,-0.0010290722129866]],[[-0.063519217073917,0.09231124818325,0.090571209788322],[0.019387897104025,0.051499981433153,0.13221262395382],[0.061377577483654,0.049458127468824,0.013124579563737]],[[-0.084218055009842,-0.038896597921848,0.0041768131777644],[0.032424349337816,0.0026107933372259,0.1498174071312],[-0.048078965395689,-0.059497226029634,0.16798293590546]],[[-0.035006534308195,-0.024623101577163,-0.029764896258712],[-0.084255337715149,0.068919323384762,0.019423553720117],[-0.065530903637409,0.016971739009023,-0.022322837263346]],[[0.0086574582383037,-0.075769610702991,-0.056935977190733],[0.043616805225611,0.084154888987541,0.0950947701931],[0.11005581170321,0.074397601187229,0.1633530408144]],[[-0.014202285557985,0.035807337611914,-0.20832431316376],[-0.040038675069809,0.0054923705756664,-0.007245269138366],[-0.015052076429129,0.0063337008468807,0.018176322802901]],[[-0.12191604822874,0.062706634402275,0.053859483450651],[0.011139768175781,2.6354264264228e-05,-0.14098179340363],[0.29092836380005,-0.073360502719879,-0.056616932153702]],[[-0.06887774169445,-0.15686365962029,0.11803908646107],[-0.073124028742313,-0.033616010099649,0.040141209959984],[0.029608955606818,-0.025008667260408,-0.02717506699264]],[[-0.0067699146457016,0.063492596149445,-0.053657542914152],[-0.026811836287379,0.062903419137001,-0.036790687590837],[-0.021874971687794,0.011636234819889,0.022962566465139]],[[-0.060537654906511,-0.03912316262722,0.050684105604887],[-0.063088640570641,-0.2151522487402,0.0041819834150374],[0.066836640238762,0.069757521152496,-0.096077606081963]],[[-0.036242373287678,-0.14273709058762,-0.051359746605158],[0.021783342584968,0.042106471955776,-0.046830099076033],[0.0788833796978,0.038779564201832,-0.097570888698101]],[[0.12887433171272,-0.10512302815914,-0.017847247421741],[-0.053298894315958,0.03220334276557,0.21459153294563],[0.0068916361778975,-0.0293177254498,0.012800577096641]],[[0.0081044994294643,-0.14202584326267,-0.053175713866949],[-0.028298849239945,0.041432622820139,0.21518908441067],[0.031826350837946,0.06052577868104,0.069507732987404]],[[0.058014784008265,-0.067155756056309,0.017086360603571],[-0.057525970041752,0.0035452484153211,-0.15810237824917],[0.11129964143038,0.057829406112432,0.086596667766571]],[[0.16566881537437,0.10300905257463,0.12122808396816],[0.14232629537582,0.045100059360266,0.010489633306861],[0.21133932471275,-0.072871997952461,-0.016340725123882]]],[[[0.0038385221268982,-0.030882526189089,0.087673634290695],[0.043631657958031,0.13259649276733,0.082524329423904],[0.0037478860467672,0.11660224199295,0.02161081135273]],[[0.08806911110878,-0.086963698267937,-0.0018843588186428],[-0.14268855750561,-0.059971489012241,-0.053850583732128],[-0.0020113154314458,-0.10679552704096,-0.064088582992554]],[[-0.11411153525114,-0.1132554858923,0.051315564662218],[-0.05192169547081,0.2113011777401,-0.077533639967442],[0.16982667148113,0.15247121453285,-0.18845263123512]],[[0.20364139974117,0.069812245666981,0.03479365631938],[-0.0014063196722418,-0.12540225684643,0.12314918637276],[0.033025428652763,-0.31589937210083,-0.036413710564375]],[[0.028424955904484,0.066325820982456,0.057147167623043],[0.017989818006754,0.18296146392822,-0.072749674320221],[-0.021489204838872,0.13868616521358,0.03345862030983]],[[-0.055840276181698,-0.0440011061728,0.012495553120971],[-0.069937720894814,-0.11539804935455,0.046354912221432],[-0.017985733225942,-0.026585983112454,0.010093569755554]],[[-0.040495831519365,0.0038094162009656,-0.03089994750917],[-0.080585986375809,-0.0016044685617089,0.026266293600202],[0.049790181219578,0.11383217573166,0.019290398806334]],[[-0.047846045345068,0.040942657738924,0.031891915947199],[0.065681599080563,0.048746056854725,0.055336106568575],[-0.01484951749444,-0.029574256390333,0.077383227646351]],[[-0.095113925635815,0.037020042538643,0.057434722781181],[-0.049619320780039,0.16781988739967,-0.064621604979038],[0.085180960595608,-0.019686298444867,0.023724118247628]],[[-0.077748112380505,-0.11847355216742,-0.28077295422554],[-0.046375345438719,-0.22840297222137,0.074913986027241],[-0.19745354354382,0.019982105121017,-0.0094735007733107]],[[-0.081697233021259,-0.035890746861696,-0.14071729779243],[0.056971520185471,-0.047777023166418,-0.11219890415668],[0.00050832470878959,0.064467340707779,0.11382892727852]],[[0.10347875952721,0.014219898730516,0.032681602984667],[-0.13937729597092,0.056904532015324,-0.016664791852236],[-0.070133931934834,0.056561026722193,-0.095107272267342]],[[-0.034510012716055,-0.01152047328651,-0.022838359698653],[-0.025654952973127,-0.079448290169239,0.067567758262157],[-0.14452873170376,-0.17040809988976,-0.22432440519333]],[[-0.10317371785641,-0.11182944476604,-0.051889348775148],[0.0017087261658162,-0.069027282297611,-0.11569004505873],[0.0097121149301529,-0.081398077309132,-0.082046627998352]],[[0.12575420737267,-0.036843698471785,-0.16452570259571],[0.090889647603035,0.014920980669558,-0.012795147486031],[-0.045543946325779,0.046292837709188,0.0048582185991108]],[[-0.036086168140173,-0.028412785381079,-0.11079740524292],[-0.12276695668697,-0.035955369472504,-0.022599531337619],[-0.13827215135098,-0.034140568226576,-0.047120854258537]],[[-0.12835682928562,-0.19323366880417,-0.20625752210617],[-0.19081923365593,-0.026825021952391,0.0089070964604616],[-0.025297457352281,0.084167532622814,0.060630794614553]],[[0.067476809024811,0.03128007799387,0.014586756937206],[0.02882713265717,-0.0016288572223857,-0.11034172773361],[0.0038959833327681,0.077501364052296,-0.067720972001553]],[[-0.096980266273022,-0.15982733666897,0.17056921124458],[-0.029840502887964,0.072915196418762,0.055785905569792],[0.092952914535999,-0.012600936926901,0.11925826966763]],[[0.10865428298712,-0.0043952353298664,-0.19274470210075],[0.11174796521664,0.078072927892208,-0.038949549198151],[-0.1152690127492,-0.026007939130068,0.044625137001276]],[[-0.12105546146631,0.014858591370285,-0.040752850472927],[-0.0095365848392248,-0.091860458254814,-0.11501240730286],[-0.19948284327984,-0.093866616487503,-0.021763481199741]],[[-0.026895644143224,0.099535062909126,0.019563047215343],[0.14680318534374,0.031740006059408,0.015728559345007],[-0.14450611174107,-0.11863622814417,-0.093502052128315]],[[-0.078251451253891,-0.052483525127172,0.15613582730293],[0.10124760866165,0.099232107400894,0.19746075570583],[0.070187933743,-0.04656994342804,0.062384132295847]],[[0.089829102158546,-0.10025976598263,-0.038309935480356],[-0.093672394752502,-0.18853741884232,-0.21684676408768],[-0.028434300795197,-0.079529270529747,-0.1587173640728]],[[0.12418181449175,-0.095188304781914,-0.023196240887046],[0.083280719816685,-0.11337365210056,-0.030148424208164],[-0.17606644332409,-0.067373633384705,-0.078904144465923]],[[0.025300053879619,0.05107094347477,0.083593592047691],[-0.015314208343625,-0.0029411870054901,0.07015735656023],[-0.014524830505252,-0.025922359898686,-0.015563598833978]],[[-0.056194242089987,0.079789012670517,-0.019269745796919],[-0.013898374512792,-0.01123268995434,0.049728851765394],[-0.049760058522224,-0.033870693296194,0.074216060340405]],[[0.0054231397807598,-0.044990517199039,-0.10907863080502],[-0.030067594721913,0.029506238177419,-0.051123570650816],[0.010226312093437,0.036044351756573,0.0014867163263261]],[[-0.090586319565773,-0.018939914181828,-0.11634557694197],[-0.078497424721718,-0.12986500561237,-0.2041080147028],[-0.16410225629807,-0.20702917873859,0.042017538100481]],[[0.091811448335648,0.018085028976202,0.067510291934013],[-0.012416340410709,0.036018446087837,-0.032451834529638],[0.033658966422081,0.021998165175319,-0.011317666620016]],[[0.11444194614887,-0.20399042963982,-0.053329192101955],[-0.073948331177235,-0.11548605561256,-0.028982805088162],[-0.00012030144716846,0.031439185142517,-0.017935752868652]],[[0.12895861268044,0.0027157126460224,-0.0041713421232998],[0.026782581582665,-0.055077038705349,-0.053192116320133],[-0.086486987769604,-0.10409503430128,0.091171711683273]],[[-0.023143962025642,-0.05714713409543,0.013479168526828],[-0.021288778632879,-0.13937950134277,0.018052401021123],[-0.06073959544301,0.015973376110196,0.068646639585495]],[[0.055734943598509,0.058076120913029,-0.01092017441988],[-0.032636165618896,-0.017911743372679,-0.037781924009323],[-0.18679058551788,-0.04036795347929,-0.065515041351318]],[[-0.09354655444622,-0.045430291444063,-0.23036643862724],[-0.091642089188099,0.013761102221906,-0.14482839405537],[-0.033583149313927,0.11889760196209,-0.069800481200218]],[[0.084543891251087,0.066497884690762,0.029413931071758],[0.14885047078133,0.07880076020956,0.019233264029026],[0.094605334103107,-0.004524833522737,0.0018992415862158]],[[0.23829309642315,0.0006439316784963,-0.064192466437817],[-0.0074040642939508,0.034676034003496,0.16606540977955],[-0.082690492272377,-0.0041354415006936,0.076437257230282]],[[0.13642020523548,-0.043945096433163,-0.026233330368996],[0.023927671834826,0.01667881757021,-0.19433900713921],[0.072205886244774,-0.023458635434508,-0.13799878954887]],[[-0.04234891757369,0.10482301563025,0.1154296323657],[-0.025572875514627,-0.0032562087289989,-0.070979863405228],[0.045037217438221,0.0040403618477285,-0.096964783966541]],[[-0.060118343681097,-0.067368239164352,-0.0092540057376027],[-0.054708871990442,0.0028583556413651,-0.011258414015174],[0.026010325178504,0.061649486422539,-0.0088769858703017]],[[-0.128188341856,-0.018193170428276,-0.092805348336697],[0.010505115613341,0.063869789242744,-0.042765758931637],[-0.032753668725491,-0.13047015666962,-0.020712373778224]],[[0.17459879815578,0.096609465777874,0.13333375751972],[-0.013395195826888,0.078459948301315,-0.021249826997519],[-0.03290069848299,-0.06194569543004,0.1175367385149]],[[0.10591144859791,-0.17233736813068,-0.057288125157356],[0.036390207707882,-0.12310442328453,0.0051572453230619],[0.14440163969994,-0.00098541704937816,0.15137946605682]],[[0.013837624341249,-0.049992140382528,-0.0018101475434378],[-0.009716366417706,-0.12024726718664,0.032591782510281],[-0.13430492579937,-0.16681487858295,-0.10769040882587]],[[-0.097137242555618,0.014021710492671,-0.023060709238052],[0.065500132739544,-0.022764207795262,0.090233474969864],[0.091677837073803,0.0265773832798,-0.034538943320513]],[[-0.19761733710766,0.12551227211952,0.12440976500511],[-0.03228235244751,-0.10210756957531,0.012582785449922],[-0.029344528913498,-0.057320311665535,-0.0036223724018782]],[[-0.13737374544144,-0.0095728756859899,-0.27581009268761],[-0.073351316154003,-0.15934599936008,0.064196057617664],[-0.034128248691559,-0.10751794278622,0.18169611692429]],[[0.044069267809391,0.011878021992743,0.069216199219227],[-0.003032457549125,-0.054632812738419,-0.03731419891119],[-0.058217324316502,-0.079545080661774,0.065719738602638]],[[0.29833447933197,0.036697082221508,0.0081639746204019],[0.073713794350624,-0.12844009697437,-0.00050241523422301],[-0.015415334142745,0.012671263888478,-0.027592139318585]],[[-0.0090781869366765,0.12899442017078,-0.04402782022953],[0.0020514482166618,-0.030762642621994,0.012685623019934],[-0.039815865457058,-0.031050723046064,-0.0035441173240542]],[[-0.19670778512955,-0.053605291992426,-0.031964145600796],[-0.16366142034531,0.099125407636166,0.027161110192537],[-0.024193048477173,-0.04807810112834,0.077636115252972]],[[-0.040838669985533,0.043749298900366,0.17557439208031],[-0.023814680054784,0.14895023405552,-0.037376046180725],[0.029004065319896,-0.080716297030449,0.0062261577695608]],[[-0.017177768051624,-0.004387404769659,-0.01249959692359],[0.10073484480381,0.050810888409615,-0.017725488170981],[0.025264488533139,-0.015996469184756,-0.1000140234828]],[[-0.022347237914801,0.10223966836929,-0.16706067323685],[-0.074346520006657,0.072534345090389,-0.056203935295343],[0.089037388563156,0.045624479651451,0.15327610075474]],[[0.095686763525009,-0.029982605949044,-0.032711774110794],[-0.016880646348,-0.016040036454797,-0.057900484651327],[0.024202829226851,-0.000959069468081,0.034963339567184]],[[0.043475825339556,-0.024522859603167,0.020603163167834],[-0.14812409877777,-0.068697884678841,0.031130198389292],[-0.048537351191044,0.14083136618137,0.097408458590508]],[[0.071193158626556,0.069966927170753,0.22531193494797],[0.18577791750431,0.0003494911652524,-0.093379072844982],[0.13718953728676,-0.023151967674494,-0.087308712303638]],[[0.01302454341203,0.04129696264863,-0.031117465347052],[-0.059433907270432,-0.082490339875221,-0.0042061801068485],[-0.10517823696136,-0.22247122228146,-0.030986508354545]],[[-0.063321687281132,0.040528055280447,0.06903462857008],[0.016464365646243,0.027644472196698,0.059455275535583],[0.005236960016191,0.066257499158382,0.01773900911212]],[[-0.20159788429737,-0.069690823554993,-0.16395428776741],[-0.049079120159149,0.065133042633533,0.014101174660027],[0.15472868084908,0.15913498401642,-0.004156194627285]],[[0.019642408937216,0.009747501462698,-0.12608717381954],[-0.12587486207485,-0.035025276243687,-0.070443004369736],[-0.022822342813015,-0.032779194414616,-0.16828989982605]],[[-0.12258619815111,0.046720948070288,-0.11006473749876],[-0.040486294776201,-0.012677064165473,-0.10845060646534],[-0.026170030236244,0.10047720372677,0.05291235819459]],[[0.069818623363972,0.002173668704927,0.04787988960743],[0.061769567430019,0.01215457636863,0.080055586993694],[-0.043736517429352,-0.10327120870352,-0.080602250993252]],[[-0.0096524180844426,0.061319258064032,0.15687285363674],[-0.12324760109186,0.036648757755756,-0.037514235824347],[0.011089213192463,0.028614459559321,-0.14085321128368]],[[0.03604768589139,-0.059657875448465,0.048388086259365],[0.011857588775456,0.12459591776133,-0.03484770283103],[0.026464818045497,0.052610527724028,-0.069887436926365]],[[0.21586042642593,-0.1679921746254,0.25773152709007],[-0.088965557515621,-0.081448592245579,0.14436265826225],[0.018082505092025,0.05012571811676,-0.16049993038177]],[[0.053116016089916,-0.049001827836037,-0.075294733047485],[-0.12103866040707,-0.12780743837357,0.080706693232059],[-0.067191742360592,0.15529699623585,0.099692024290562]],[[0.22923628985882,-0.075844898819923,-0.10193299502134],[0.075866140425205,-0.054563939571381,-0.040075164288282],[-0.10690139234066,-0.16380459070206,-0.064211159944534]],[[0.060916110873222,-0.040476992726326,0.099507734179497],[0.042447246611118,0.039890874177217,0.17844489216805],[0.10694930702448,0.14491434395313,-0.11993373930454]],[[0.092148974537849,0.01261006295681,0.049003645777702],[-0.024733621627092,-0.1267294883728,0.010864993557334],[0.056031614542007,-0.072286807000637,0.056124072521925]],[[-0.053375650197268,-0.017758373171091,-0.100331582129],[0.11136709153652,0.006304292473942,-0.22891485691071],[-0.0092880884185433,-0.01172495726496,-0.048154555261135]],[[0.06222528219223,0.10864505916834,0.014584746211767],[0.12261497229338,0.059589151293039,0.043959673494101],[-0.017762521281838,0.095502503216267,0.19465743005276]],[[-0.052042737603188,-0.18847031891346,0.0010549820726737],[-0.27936336398125,-0.039045408368111,0.013223809190094],[0.01927980966866,-0.01384150609374,-0.060690000653267]],[[0.081337876617908,0.23421891033649,0.075639814138412],[0.12055347859859,0.14872846007347,-0.085008777678013],[-0.0766516700387,0.049171723425388,-0.17719319462776]],[[-0.075108624994755,-0.16705822944641,-0.04737451300025],[-0.047823201864958,0.0742222443223,-0.075114116072655],[0.049785692244768,-0.088952578604221,0.029924463480711]],[[-0.057695161551237,-0.018942391499877,-0.044215586036444],[0.047709934413433,0.1154870018363,0.11685566604137],[-0.011744066141546,0.12666468322277,0.26949393749237]],[[-0.014636304229498,-0.034182868897915,-0.078084841370583],[-0.06772505491972,-0.14032500982285,-0.13998794555664],[-0.063240498304367,-0.013138717971742,-0.1416769772768]],[[-0.13081561028957,0.0093800043687224,0.041663698852062],[-0.14115349948406,-0.033356551080942,0.056877516210079],[-0.051873747259378,-0.012893628329039,0.032601822167635]],[[0.019704332575202,-0.14922538399696,-0.073134452104568],[0.062026381492615,0.1686674952507,0.018478056415915],[-0.0042698113247752,0.053594667464495,-0.022508818656206]],[[-0.033282443881035,-0.098487593233585,0.074515983462334],[0.05764226987958,0.011558178812265,-0.055142749100924],[0.10600761324167,0.040278468281031,0.13984102010727]],[[-0.026537304744124,-0.032250091433525,0.11859758943319],[0.028107572346926,-0.038426656275988,0.018457885831594],[0.086042433977127,-0.11961040645838,-0.016492705792189]],[[0.070443361997604,-0.067927986383438,0.0053034075535834],[-0.05478011071682,-0.020269185304642,-0.079672917723656],[0.16056381165981,0.14338918030262,-0.092969961464405]],[[0.0493826828897,0.11366391927004,0.0045227515511215],[-0.018913483247161,0.059734281152487,0.098215438425541],[-0.098541729152203,-0.039164531975985,0.019763646647334]],[[0.064567148685455,-0.054461520165205,0.0037396557163447],[-0.041097652167082,-0.020134214311838,0.037604749202728],[0.03932711109519,-0.015581241808832,-0.046198703348637]],[[0.017518261447549,0.080294318497181,0.12774531543255],[0.0031141734216362,-0.050990123301744,0.093198463320732],[0.16497325897217,0.054745052009821,0.095289126038551]],[[-0.19671818614006,0.0039759748615324,0.04721873998642],[0.04471579939127,0.13072238862514,0.051737483590841],[-0.060283485800028,-0.0094587942585349,0.02456590719521]],[[-0.14862291514874,0.027917616069317,0.043015450239182],[-0.011020108126104,-0.13285200297832,-0.22187937796116],[-0.015471916645765,-0.004164501093328,0.080482669174671]],[[0.099581450223923,0.01270819734782,-0.18978418409824],[-0.040781307965517,0.14174517989159,-0.0049886666238308],[-0.024510201066732,0.048617299646139,-0.1634819060564]],[[-0.12692475318909,0.073014914989471,-0.1058105006814],[0.024893512949347,0.20055116713047,-0.040826547890902],[0.07091511040926,0.12137477099895,-0.01011429540813]],[[-0.25533896684647,-0.14018136262894,0.079676382243633],[-0.13200636208057,0.075120367109776,-0.079235829412937],[0.037346988916397,-0.077245652675629,-0.10225217789412]],[[0.088679067790508,-0.12799100577831,-0.046091176569462],[0.075988434255123,-0.0014252620749176,0.024677941575646],[-0.069454729557037,-0.0587471537292,0.13902924954891]],[[0.076483674347401,-0.025786967948079,-0.054492045193911],[0.092855021357536,-0.063749372959137,0.017194343730807],[-0.040130890905857,0.024737175554037,-0.16296216845512]],[[0.063356906175613,0.035133395344019,0.080707892775536],[0.063637785613537,-0.013911948539317,0.13394756615162],[-0.070184707641602,-0.024702301248908,0.047008082270622]],[[-0.046389885246754,0.2843961417675,0.013771822676063],[0.048453610390425,0.047518063336611,-0.055456478148699],[0.034564502537251,-0.018904477357864,0.026537025347352]],[[0.068376213312149,-0.0069610457867384,-0.071853518486023],[-0.026159375905991,-0.00067977543221787,0.065695151686668],[-0.15388445556164,-0.03563229739666,0.11264836788177]],[[0.07411228120327,0.11918452382088,0.11426191776991],[0.038998622447252,0.079495243728161,-0.012042382732034],[0.022822350263596,-0.097671918570995,0.11954854428768]],[[-0.11073730885983,-0.03868255391717,-0.092031665146351],[-0.064216949045658,-0.074672065675259,-0.034957956522703],[-0.034133344888687,-0.004259972833097,-0.045849997550249]],[[-0.019406128674746,-0.067257650196552,0.077035084366798],[0.0073562203906476,0.03714232891798,0.057452436536551],[-0.02928027138114,0.093551829457283,-0.1229208484292]],[[-0.28676107525826,0.021643599495292,0.11212733387947],[0.036945976316929,-0.036823637783527,0.09804979711771],[-0.0049416683614254,-0.02019507996738,0.11829282343388]],[[-0.0040681250393391,-0.078699477016926,0.11560528725386],[-0.047672528773546,-0.050463330000639,0.087730951607227],[-0.15673843026161,-0.24242746829987,-0.096102692186832]],[[-0.1414267718792,-0.13202184438705,0.13538472354412],[-0.098591379821301,0.056775625795126,0.10092844069004],[0.00013113113527652,-0.010622153058648,0.012962583452463]],[[0.16502901911736,0.029064230620861,-0.17690277099609],[0.25525930523872,0.12664406001568,0.036406863480806],[0.028155937790871,0.030761305242777,0.060360610485077]],[[0.11842075735331,-0.049863059073687,0.083842873573303],[-0.027512384578586,0.12052027136087,0.120386749506],[0.031371928751469,0.015394929796457,-0.037261877208948]],[[0.013404256664217,0.099867589771748,0.11998983472586],[-0.026577804237604,0.018344309180975,0.053245324641466],[-0.0031746146269143,0.044973876327276,-0.090349711477757]],[[0.10886962711811,-0.17759139835835,-0.030519163236022],[0.050827644765377,-0.044530317187309,0.055718924850225],[-0.16457761824131,0.06498010456562,0.11750865727663]],[[0.14483295381069,0.13491621613503,-0.0019845399074256],[0.097644738852978,0.059541832655668,0.060916490852833],[0.081843197345734,0.10262068361044,0.071714334189892]],[[-0.001417636172846,0.13457931578159,0.030764874070883],[0.16261856257915,0.065231971442699,0.001764586311765],[-0.027808573096991,0.025896914303303,-0.070659659802914]],[[-0.034448724240065,-0.051153372973204,-0.071443289518356],[0.05425401777029,-0.0032191853970289,-0.060685452073812],[-0.036368157714605,-0.064114339649677,-0.049165155738592]],[[0.010239759460092,-0.13702961802483,0.11918675154448],[0.016125325113535,0.063346803188324,0.15027904510498],[-0.15854394435883,0.055310290306807,0.067133784294128]],[[0.17978392541409,0.076557695865631,0.077652238309383],[0.071518965065479,0.055798340588808,0.02427695505321],[0.0050063552334905,-0.13480301201344,-0.087781772017479]],[[-0.041295100003481,0.11180333793163,0.060670875012875],[-0.082422211766243,-0.083409242331982,-0.080563232302666],[-0.027015961706638,0.09618055075407,-0.0068115894682705]],[[0.021557305008173,-0.11313343793154,-0.19251950085163],[-0.14882925152779,-0.10724415630102,-0.16056104004383],[0.0090612014755607,-0.089655995368958,-0.13565704226494]],[[0.0013930768473074,0.021747961640358,-0.011304413899779],[0.098237164318562,-0.0056833322159946,-0.12462560087442],[0.098366156220436,0.041836142539978,-0.032139271497726]],[[-0.13796475529671,0.099322311580181,-0.0028336546383798],[-0.13950541615486,0.0092458613216877,0.081484600901604],[0.0049985088407993,-0.04383983835578,0.0035131261684]],[[0.32045033574104,0.020024197176099,0.12723277509212],[0.052919369190931,-0.023100486025214,0.054468609392643],[0.058460790663958,-0.069296054542065,0.17958973348141]],[[-0.014032476581633,-0.082031190395355,-0.28606781363487],[0.02249925211072,-0.051817875355482,0.019711822271347],[0.17148065567017,0.12444032728672,0.11548488587141]],[[0.13187186419964,-0.032355535775423,0.035161040723324],[0.13333332538605,-0.050982866436243,0.01064826361835],[0.015904607251287,-0.051003571599722,-0.035949431359768]],[[0.16766257584095,0.07593972235918,0.12995563447475],[0.034954644739628,-0.013410301879048,0.0085596814751625],[-0.046734426170588,0.054178651422262,0.091951325535774]],[[0.012332979589701,-0.037635587155819,0.072609469294548],[0.03491036221385,-0.087732695043087,-0.11276540160179],[0.06059891730547,-0.018766378983855,-0.019774695858359]],[[-0.0030749484430999,-0.030067725107074,0.12147038429976],[0.13509018719196,0.1580980271101,0.094435758888721],[-0.10044527053833,-0.033990956842899,-0.089960642158985]],[[-0.020761225372553,-0.1004835665226,-0.18128383159637],[-0.071108348667622,-0.0094066588208079,0.045281626284122],[-0.091892339289188,-0.022852707654238,-0.11064834147692]],[[0.10903024673462,0.062780506908894,0.028555557131767],[0.061614885926247,0.11528211086988,-0.060074556618929],[0.029948489740491,0.07082799077034,0.0066387243568897]],[[-0.17850594222546,-0.19963869452477,-0.20255973935127],[-0.021343536674976,-0.044567637145519,-0.23039770126343],[-0.01371147017926,-0.092990182340145,-0.079403273761272]],[[0.11990915238857,0.050925750285387,-0.011543122120202],[0.14733311533928,0.064589940011501,0.091710649430752],[0.18770232796669,-0.074738368391991,-0.037499438971281]],[[0.10314723849297,-0.064004272222519,0.038594514131546],[-0.048131048679352,0.036361541599035,-0.067718811333179],[-0.087987661361694,0.014855105429888,0.015614349395037]],[[0.03504291549325,-0.17666544020176,0.13848781585693],[-0.051709923893213,-0.0021643592044711,-0.13885714113712],[0.034836009144783,0.13666565716267,-0.052717875689268]],[[0.025826305150986,-0.047203201800585,0.088701888918877],[0.041605107486248,-0.13976469635963,0.039096549153328],[-0.050472911447287,-0.033117458224297,-0.046936612576246]],[[-0.10407716035843,0.0048296684399247,-0.063872404396534],[-0.14516896009445,-0.0078712105751038,-0.017097203060985],[0.041823867708445,0.05242395401001,0.035682514309883]]],[[[0.0039557842537761,0.083197452127934,-0.0019357107812539],[-0.08791646361351,0.24818104505539,0.1340613514185],[-0.032563880085945,0.085519574582577,0.11534199863672]],[[0.056827437132597,0.10531952232122,0.12059642374516],[-0.042797327041626,-0.15805459022522,-0.14564915001392],[0.11161480098963,-0.022807596251369,-0.019840745255351]],[[0.1120942980051,0.046786729246378,0.26774543523788],[-0.030139533802867,-0.064738124608994,-0.037489853799343],[0.077386163175106,-0.027483873069286,0.034780219197273]],[[-0.087943986058235,-0.059098914265633,-0.072410725057125],[-0.033736303448677,0.038185484707355,-0.041074778884649],[0.20897875726223,-0.074343331158161,-0.11914885789156]],[[0.020122174173594,-0.053750284016132,0.093721240758896],[0.060451533645391,0.11242792755365,0.18304190039635],[0.12228969484568,-0.035513136535883,-0.027466414496303]],[[-0.064225293695927,-0.11412565410137,0.013364936225116],[0.0071093821898103,-0.049291867762804,0.034134544432163],[0.062375593930483,-0.049459211528301,0.039590738713741]],[[0.055474109947681,0.12413734197617,0.1501139998436],[-0.022372238337994,-0.12394238263369,0.0020780847407877],[-0.15297494828701,-0.047287706285715,-0.0020650883670896]],[[0.056012887507677,0.050375614315271,0.00015393408830278],[0.0025484713260084,-0.01166514493525,0.0014174513053149],[0.031105725094676,0.055469028651714,0.055771388113499]],[[-0.11375681310892,-0.17350742220879,-0.11812096834183],[0.037855565547943,-0.054611928761005,-0.06694807857275],[-0.10527782142162,0.029785534366965,-0.024756006896496]],[[0.02553934790194,0.020408952608705,-0.0050890976563096],[-0.02756242454052,-0.03058466501534,-0.031789749860764],[-0.081519953906536,0.0028965747915208,0.12750700116158]],[[-0.089490428566933,0.099085606634617,0.01376086473465],[0.068050093948841,-0.076957613229752,-0.14268162846565],[0.058194242417812,0.079412348568439,0.10936941951513]],[[0.022665092721581,-0.05223560705781,-0.24623286724091],[0.11023057252169,0.12484011799097,0.11871293187141],[-0.034361407160759,0.012965266592801,0.24596416950226]],[[0.048014972358942,0.010091058909893,0.056672383099794],[-0.059098199009895,-0.096355557441711,-0.068154506385326],[-0.037639763206244,0.037101745605469,0.025901880115271]],[[-0.085041508078575,-0.09084240347147,-0.051224306225777],[-0.026374388486147,-0.21970249712467,-0.16987401247025],[-0.033387623727322,-0.17390070855618,-0.049831677228212]],[[-0.017889911308885,-0.094829969108105,0.0036217886954546],[-0.017752794548869,-0.085568830370903,-0.13363648951054],[0.16972802579403,0.14414197206497,0.059418644756079]],[[-0.16817127168179,-0.14770555496216,0.0077957818284631],[-0.12880930304527,-0.13088397681713,0.0044008796103299],[0.011460865847766,-0.063781902194023,-0.038822446018457]],[[-0.041924018412828,-0.00057567877229303,-0.18053983151913],[-0.09525740146637,-0.072984874248505,0.1440082937479],[-0.0024103834293783,0.044471368193626,-0.031438820064068]],[[0.025634113699198,0.054097399115562,-0.030745267868042],[0.041014283895493,0.11291546374559,0.13228832185268],[-0.048072461038828,0.051296830177307,-0.038322743028402]],[[0.14376990497112,-0.077064014971256,-0.0085955346003175],[0.023433335125446,0.15078355371952,0.088143430650234],[0.064576290547848,0.058116465806961,0.025076173245907]],[[0.083821915090084,-0.11510954797268,-0.070828467607498],[0.12588362395763,0.1709697842598,-0.0730220079422],[-0.14583477377892,0.05755989253521,-0.11932394653559]],[[-0.0094547849148512,-0.0082822721451521,0.092557519674301],[0.017632568255067,-0.0043351929634809,0.00035303336335346],[-0.052719995379448,-0.077113121747971,-0.059360310435295]],[[0.030540069565177,-0.052340626716614,0.043264802545309],[-0.041989222168922,-0.023989735171199,0.02941520512104],[-0.060937158763409,-0.0027916068211198,0.10229874402285]],[[-0.0020404623355716,0.045605842024088,0.10808686167002],[-0.043695509433746,-0.038208890706301,0.091956131160259],[0.005512255243957,-0.13737381994724,-0.14005881547928]],[[0.012167991138995,-0.071901351213455,-0.076012074947357],[-0.18475487828255,-0.066914387047291,-0.13347905874252],[-0.015503196977079,-0.099485754966736,-0.015721619129181]],[[-0.017663363367319,-0.007305106613785,-0.13799540698528],[0.049771144986153,-0.08259741216898,0.020750112831593],[0.078672513365746,0.0074788257479668,0.13676328957081]],[[0.058441922068596,0.028804147616029,0.065626926720142],[-0.074662618339062,-0.045573461800814,0.018836313858628],[-0.037883721292019,-0.020359912887216,-0.044084619730711]],[[0.035972870886326,0.066174991428852,0.034673228859901],[-0.051782306283712,-0.028439033776522,-0.042921576648951],[-0.011502509005368,0.087378218770027,-0.013550824485719]],[[-0.060303378850222,-0.098396517336369,0.012726892717183],[0.067194558680058,0.047248352319002,0.012687673792243],[-0.018215481191874,0.027243895456195,0.119498886168]],[[0.052457541227341,-0.12070573121309,-0.10867846757174],[-0.15461403131485,-0.16293069720268,-0.092788361012936],[0.010559595189989,-0.2371618449688,0.020590322092175]],[[-0.096987783908844,-0.06212455406785,-0.024890180677176],[-0.0071512646973133,-0.046785280108452,-0.060955230146646],[-0.025777772068977,0.19343531131744,0.00012120913743274]],[[-0.10404641926289,0.010883437469602,0.19163778424263],[-0.17546385526657,0.011699565686285,0.071882523596287],[-0.071253634989262,0.072975426912308,-0.024963414296508]],[[-0.02326768450439,0.0051896814256907,-0.075712479650974],[0.1377891600132,0.12538422644138,-0.048806697130203],[0.0043653668835759,0.16385427117348,0.15516467392445]],[[0.037425618618727,-0.041098151355982,0.122902572155],[0.1124369353056,-0.040037233382463,0.13605387508869],[0.10482431203127,0.10453571379185,-0.057336986064911]],[[0.035189177840948,0.090544424951077,0.21960417926311],[0.035490602254868,0.004368738271296,-0.10962922871113],[-0.03556877374649,0.084262505173683,0.018800185993314]],[[0.038598150014877,-0.22096772491932,0.080256797373295],[0.070538505911827,-0.12262624502182,-0.082230530679226],[-0.11968309432268,-0.20834822952747,-0.10003188997507]],[[0.10879168659449,0.088287398219109,0.073142521083355],[0.06678631901741,0.10457117110491,-0.054046001285315],[-0.048696771264076,-0.067220114171505,-0.055897921323776]],[[0.034892756491899,0.028650818392634,0.048110537230968],[0.11115781962872,0.11419289559126,0.1750628054142],[-0.083061650395393,0.070971645414829,0.20747476816177]],[[0.16854344308376,-0.025106210261583,-0.012941031716764],[0.062481049448252,0.081274084746838,0.11436818540096],[0.17513512074947,-0.09270291775465,-0.064676225185394]],[[0.0029672486707568,0.096517771482468,0.18310315907001],[-0.19672624766827,-0.28544288873672,-0.019874991849065],[0.1307417601347,0.071274384856224,0.037114903330803]],[[-0.055918626487255,0.031290072947741,-0.0062342076562345],[0.11347518116236,-0.0090352008119226,-0.136992380023],[-0.023669585585594,0.022277291864157,-0.079377412796021]],[[-0.021193187683821,0.022873297333717,0.07626735419035],[0.098000094294548,0.066461071372032,0.18766039609909],[0.023426320403814,-0.056214302778244,0.087989822030067]],[[0.055014409124851,0.22888261079788,0.13806386291981],[-0.11034841835499,0.014326666481793,0.11262468993664],[-0.12391632795334,-0.16706065833569,-0.12529125809669]],[[0.076073050498962,-0.039847351610661,0.069329403340816],[-0.14740392565727,-0.22710928320885,-0.21467436850071],[-0.11683049052954,-0.089525811374187,-0.19926844537258]],[[0.085692495107651,0.060672096908092,0.00038751860847697],[-0.0042165317572653,0.048885826021433,0.052241429686546],[-0.022635612636805,0.036450378596783,0.00070075714029372]],[[-0.064854517579079,0.022882513701916,0.067115277051926],[0.21542716026306,0.10217407345772,0.11498455703259],[0.088654935359955,-0.18279251456261,-0.11761125177145]],[[-0.21608605980873,-0.15169836580753,-0.058432918041945],[0.062437225133181,0.061940334737301,0.0012233447050676],[-0.087982527911663,-0.09050364792347,0.08842983096838]],[[-0.12992559373379,-0.12507300078869,-0.10612543672323],[-0.0015594519209117,-0.019231198355556,-0.11482722312212],[-0.012234193272889,-0.12561473250389,-0.031497392803431]],[[0.050634365528822,-0.084199674427509,-0.10148729383945],[-0.1703782081604,-0.010620056651533,0.046755503863096],[-0.00920754019171,-0.057737704366446,0.12551745772362]],[[0.014323519542813,0.058494132012129,0.19909742474556],[-0.0004867157258559,0.015306732617319,-0.05742222815752],[-0.0069065657444298,0.13722455501556,0.042447950690985]],[[-0.022166216745973,-0.0032231295481324,0.011707431636751],[-0.12808761000633,-0.16110216081142,-0.11988282948732],[0.053257461637259,-0.095416828989983,-0.17841716110706]],[[0.014389458112419,-0.09978473931551,-0.16278623044491],[-0.21523442864418,0.025421129539609,-0.025826478376985],[-0.10498646646738,-0.24217446148396,0.044491391628981]],[[0.081868775188923,0.096818529069424,0.082901634275913],[-0.027451058849692,-0.081144884228706,-0.036049466580153],[0.028018180280924,-0.0035107305739075,0.054840199649334]],[[-0.031296387314796,-0.056261666119099,-0.018516723066568],[0.043386995792389,0.11093923449516,-0.0035596257075667],[0.040947653353214,-0.015479776076972,0.063579343259335]],[[-0.1654299646616,-0.045153975486755,0.0040097134187818],[-0.092619672417641,-0.034281171858311,0.037605784833431],[-0.045452065765858,0.16356900334358,0.16549158096313]],[[0.054569937288761,0.0086618633940816,-0.026553539559245],[0.028161650523543,-0.19080157577991,-0.035393226891756],[-0.050340913236141,-0.016400961205363,-0.095042027533054]],[[0.070288330316544,0.010233119130135,0.081843197345734],[0.05576553568244,0.014898217283189,0.063563771545887],[-0.036044523119926,-0.033403646200895,-0.15091796219349]],[[-0.086594454944134,0.027714448049664,0.097697660326958],[0.019912211224437,0.094987444579601,0.18667474389076],[0.08158928155899,-0.15679316222668,-0.1635949909687]],[[-0.012829529121518,0.029039174318314,-0.002621787134558],[-0.013670538552105,-0.10839704424143,0.040024314075708],[-0.13674023747444,-0.025633016601205,-0.051457330584526]],[[-0.038298476487398,0.051311854273081,-0.00055147294187918],[0.050917327404022,0.031055696308613,0.14076685905457],[-0.018850240856409,-0.016532046720386,-0.071376509964466]],[[-0.12567700445652,-0.046937789767981,0.065935872495174],[0.039002150297165,0.1307862251997,0.04865013435483],[0.30239850282669,0.14262801408768,0.16733920574188]],[[0.10186000913382,0.19432680308819,-0.030095977708697],[-0.0037454161792994,-0.054667193442583,0.15584269165993],[-0.09401547908783,-0.3078850209713,-0.10010645538568]],[[0.023707872256637,-0.06565897911787,-0.071703098714352],[0.20116309821606,-0.11270660161972,-0.053597182035446],[-0.13560463488102,-0.17341615259647,-0.095454752445221]],[[-0.027032332494855,0.035822570323944,0.050108011811972],[0.17421086132526,0.044292986392975,-0.0040159705094993],[0.1989943832159,0.12428826093674,0.05887520685792]],[[-0.05503749102354,0.095093913376331,0.045986820012331],[0.0030016298405826,0.10381910204887,0.095199003815651],[-0.099693961441517,-0.11741607636213,-0.17577470839024]],[[0.013017321005464,0.045659635215998,0.044498603790998],[-0.0088849579915404,-0.037733394652605,0.034553650766611],[-0.098589971661568,-0.025752443820238,-0.064655184745789]],[[-0.028163397684693,0.011135849170387,0.043412651866674],[-0.061636790633202,-0.061540432274342,-0.025074224919081],[0.014157276600599,-0.045125838369131,-0.078664742410183]],[[0.020663928240538,-0.083510994911194,0.073206625878811],[-0.13279713690281,-0.19969014823437,-0.068701185286045],[-0.086600385606289,-0.079862356185913,0.033222686499357]],[[0.12404561787844,0.066013045608997,-0.042460680007935],[-0.12835745513439,0.11420004069805,0.0063096024096012],[-0.10214469581842,-0.075865924358368,-0.11781597137451]],[[-0.09446693956852,0.093884967267513,-0.15975442528725],[-0.011421649716794,0.067396737635136,-0.11149526387453],[0.064223080873489,0.18736131489277,0.013016081415117]],[[-0.0012205579550937,0.1078579351306,-0.020522229373455],[-0.0063026766292751,-0.048051483929157,0.030974080786109],[0.034043863415718,-0.028855184093118,0.16550509631634]],[[0.021795244887471,0.11615984886885,0.1354161798954],[-0.075601331889629,-0.047925438731909,-0.1094958037138],[0.038228757679462,0.10777027904987,0.17295591533184]],[[-0.069078907370567,-0.15391823649406,-0.076645083725452],[0.034969817847013,0.12642443180084,0.05331340059638],[-0.13090993463993,0.022453373298049,0.0071436767466366]],[[-0.21013647317886,-0.21153026819229,-0.026388633996248],[-0.32532060146332,-0.1695673763752,-0.05909338593483],[0.099841751158237,0.15022929012775,0.067909307777882]],[[0.016090486198664,-0.054558787494898,0.004637349396944],[0.10587841272354,0.031220158562064,0.017550893127918],[0.0044160834513605,-0.036578103899956,-0.055911272764206]],[[0.057406134903431,-0.30679038167,-0.26257014274597],[0.12811121344566,0.12403273582458,0.062995344400406],[-0.20608557760715,0.14784732460976,0.13226318359375]],[[0.077866338193417,0.06685858219862,-0.10725574195385],[0.023354275152087,0.19504536688328,-0.2594039440155],[-0.10127440840006,0.09711841493845,-0.076857335865498]],[[0.070136941969395,-0.041754756122828,-0.038054898381233],[0.025528145954013,-0.10750855505466,-0.20378768444061],[-0.1063973903656,0.051076721400023,0.092448078095913]],[[-0.03575224429369,0.030489426106215,0.064350232481956],[-0.069558873772621,-0.2222483754158,0.077657632529736],[-0.0079135401174426,0.010887741111219,-0.097256608307362]],[[-0.035470560193062,-0.093435265123844,-0.08075300604105],[0.074957050383091,-0.045490093529224,0.059094574302435],[-0.080339871346951,0.018633875995874,0.25167232751846]],[[0.076957687735558,-0.15976247191429,-0.17057110369205],[0.06281353533268,0.056105189025402,-0.28904736042023],[-0.17899395525455,0.19075778126717,0.095973141491413]],[[0.0016707696486264,-0.047453060746193,-0.099731981754303],[0.049950089305639,-0.066715955734253,0.045952253043652],[-0.23278760910034,-0.1328297406435,-0.13511575758457]],[[0.079982027411461,0.027070973068476,0.14624562859535],[-0.038613598793745,-0.020254716277122,-0.10097718983889],[0.077414028346539,0.13496026396751,0.016669793054461]],[[0.053863015025854,0.18952821195126,0.05886197835207],[0.0018152703996748,0.020903620868921,0.11388815939426],[-0.0095545146614313,-0.00040544208604842,-0.11827191710472]],[[0.13704723119736,-0.010396251454949,0.015139636583626],[0.042960811406374,-0.14278380572796,-0.0059832679107785],[0.08027008920908,-0.20996038615704,-0.15666654706001]],[[-0.081638820469379,0.050971515476704,0.045627269893885],[-0.096597388386726,0.085329644382,0.16170983016491],[0.094501599669456,0.048686981201172,0.035823661834002]],[[-0.0067064762115479,-0.14954130351543,-0.12197094410658],[0.13809357583523,0.055964078754187,0.21039596199989],[0.055708978325129,-0.10251009464264,0.048753820359707]],[[0.021403718739748,0.020953787490726,0.089688889682293],[0.0844981148839,0.05462322384119,0.050805743783712],[-0.18701395392418,-0.12398836761713,-0.095487803220749]],[[0.036907576024532,0.036803096532822,0.21577233076096],[-0.00038129044696689,0.067296847701073,0.23358134925365],[-0.036505028605461,0.11777739971876,0.022480022162199]],[[0.07500834017992,-0.0030568223446608,-0.012506526894867],[0.093243442475796,-0.059798121452332,0.00046985447988845],[-0.029533185064793,-0.12433474510908,-0.023946687579155]],[[-0.046401720494032,0.03276751935482,0.13108190894127],[0.055956661701202,0.13997411727905,0.078022316098213],[0.2636926472187,-0.18478788435459,-0.21027509868145]],[[0.085484832525253,0.10075976699591,0.088196136057377],[0.09286667406559,0.001329567283392,0.13754630088806],[0.078834764659405,0.065342254936695,0.035813134163618]],[[-0.068305216729641,0.030865892767906,0.024307187646627],[0.0029663261957467,-0.10471598058939,0.020168965682387],[-0.086012646555901,-0.062871180474758,-0.1962910592556]],[[-0.001646853168495,0.065837569534779,0.0081715313717723],[0.011156171560287,0.016067070886493,0.19813443720341],[0.016106713563204,-0.038382641971111,-0.13347865641117]],[[0.082454994320869,0.11232347041368,0.13512882590294],[0.10015862435102,-0.04712313786149,0.004683515522629],[-0.13127127289772,-0.14618952572346,-0.0055665578693151]],[[0.048502273857594,0.014542487449944,-0.16212873160839],[0.041710577905178,-0.053152680397034,-0.02808435074985],[0.22402742505074,0.088259331882,-0.039859000593424]],[[0.048006799072027,0.10497815161943,0.004716828931123],[-0.039014976471663,-0.064876012504101,-0.024308476597071],[0.0063601485453546,0.08164269477129,0.14383502304554]],[[0.063778005540371,0.026295593008399,-0.10239634662867],[-0.082539059221745,-0.040364250540733,0.14466233551502],[0.074673131108284,-0.073272727429867,-0.075171656906605]],[[-0.14700429141521,-0.091429904103279,-0.25073647499084],[0.10299382358789,0.014565179124475,0.18551532924175],[0.052175644785166,0.0019591038580984,0.054869409650564]],[[-0.014694676734507,0.017985206097364,0.022485787048936],[-0.049713179469109,-0.0068082655780017,0.033932395279408],[0.13927717506886,-0.090180225670338,0.097865894436836]],[[-0.10039449483156,0.075658038258553,-0.035424444824457],[-0.02859597094357,0.19640071690083,0.24786143004894],[-0.037956811487675,0.046664539724588,0.001354347448796]],[[-0.20059806108475,-0.27258741855621,-0.00084889447316527],[-0.062741577625275,-0.068967498838902,-0.01533131301403],[0.13488012552261,-0.061069633811712,-0.074866563081741]],[[0.083867833018303,0.06789356470108,0.11024069041014],[0.19173035025597,0.13015988469124,0.22841553390026],[0.086203016340733,-0.037363018840551,0.052354142069817]],[[-0.080352053046227,-0.014394598081708,-0.042482111603022],[-0.015377472154796,-0.074657179415226,0.02303878031671],[-0.051489856094122,-0.047100588679314,0.071961969137192]],[[0.072435952723026,-0.018619408831,0.023387281224132],[-0.026595782488585,-0.13097956776619,-0.029744062572718],[0.011981924064457,-0.048561058938503,-0.090640135109425]],[[-0.013745636679232,-0.006858226377517,0.0045818188227713],[-0.022758742794394,-0.078956045210361,0.0056581827811897],[-0.083766438066959,0.10978843271732,0.082597121596336]],[[0.11339782178402,0.034355096518993,0.058128088712692],[-0.13527090847492,-0.099222466349602,0.048239976167679],[0.011183989234269,-0.010199211537838,-0.0064494302496314]],[[-0.059631377458572,-0.090648718178272,0.055525060743093],[0.089256539940834,0.12517422437668,0.062236189842224],[0.041158206760883,-0.01382964476943,0.026674192398787]],[[-0.18089215457439,-0.079756624996662,0.0043935561552644],[-0.13417394459248,-0.076944850385189,0.064046755433083],[0.20352029800415,-0.0053458996117115,-0.037683364003897]],[[0.0073090856894851,0.04717143625021,-0.048023089766502],[0.030386302620173,0.018843948841095,0.083868093788624],[0.30668172240257,0.0063695013523102,0.031173231080174]],[[-0.0053321686573327,0.047987710684538,0.081297881901264],[0.020188264548779,-0.10460215806961,0.0527871735394],[-0.040031440556049,0.083255283534527,0.031769808381796]],[[0.041720874607563,0.08098341524601,0.012235960923135],[-0.052745532244444,-0.016689786687493,0.012090811505914],[-0.079131871461868,0.01516826916486,-0.093926928937435]],[[-0.035274717956781,0.06304969638586,0.081416636705399],[0.010243516415358,-0.031495183706284,-0.060016602277756],[-0.029375646263361,-0.18880586326122,-0.026244901120663]],[[-0.031020035967231,-0.12736074626446,-0.11055170744658],[0.11238099634647,0.1125280931592,0.028208650648594],[0.065357975661755,0.14435938000679,0.00059845700161532]],[[0.017836276441813,0.1599473208189,0.043490029871464],[0.057526107877493,0.12323985993862,0.0048143360763788],[0.020091108977795,-0.020060610026121,-0.15486554801464]],[[0.04564343765378,-0.088107340037823,-0.0026695968117565],[-0.093422055244446,0.052605599164963,-0.1176301240921],[-0.072145037353039,-0.058946862816811,-0.062695309519768]],[[-0.070278413593769,0.072895087301731,-0.027636641636491],[-0.11021175980568,0.016621498391032,0.041138220578432],[0.12778478860855,0.0049517890438437,0.16390939056873]],[[-0.088474951684475,-0.025187315419316,-0.13269540667534],[0.084839463233948,0.0018923728493974,-0.064397260546684],[-0.13369129598141,-0.16400563716888,-0.20395204424858]],[[0.056004676967859,0.096895173192024,0.151665776968],[-0.11777101457119,0.054289545863867,-0.094361081719398],[0.041219744831324,0.16445058584213,0.1767820417881]],[[-0.014262369833887,0.00010011121048592,0.053542405366898],[-0.017711834982038,-0.054233126342297,0.029143262654543],[0.042014118283987,-0.029870495200157,0.082523599267006]],[[-0.031288057565689,-0.020256742835045,-0.065545499324799],[0.12374898046255,0.066617950797081,0.11599696427584],[-0.1261715143919,-0.11504216492176,-0.052888359874487]],[[-0.096421621739864,-0.056092146784067,-0.048529881983995],[-0.06965409219265,-0.010468696244061,0.18446023762226],[0.017443573102355,0.011062833480537,0.037356469780207]],[[0.11099041253328,0.12916795909405,0.07333966344595],[0.034151934087276,0.022366147488356,0.03157939016819],[0.038557518273592,-0.11188507080078,-0.069910660386086]],[[0.034045744687319,-0.1396104991436,-0.06891056895256],[-0.1051679700613,-0.073472999036312,-0.11816532164812],[-0.046310890465975,-0.18366557359695,-0.1919796615839]],[[0.06207275018096,-0.017512828111649,0.14519272744656],[0.063564032316208,0.024222083389759,0.040626771748066],[0.0046746009029448,-0.067856937646866,0.095779664814472]],[[-0.032931685447693,-0.018097752705216,0.11630176752806],[-0.08073566108942,0.0039929710328579,-0.079583339393139],[-0.067317232489586,-0.057707823812962,-0.14457891881466]],[[0.0056499885395169,-0.048062480986118,0.13290153443813],[0.10771357268095,-0.004183903336525,0.054790448397398],[0.0070930072106421,0.16399325430393,0.01723014190793]],[[-0.027677485719323,0.12868255376816,0.18173664808273],[-0.2037732899189,-0.12579737603664,0.088571988046169],[0.1020396053791,-0.015614025294781,0.04724183306098]],[[-0.045436847954988,0.060078099370003,0.0049222195520997],[-0.058423861861229,-0.17213702201843,-0.065474279224873],[0.18937642872334,0.011669629253447,0.13463127613068]]],[[[0.043588891625404,0.035037476569414,-0.058348510414362],[-0.13195756077766,-0.12772983312607,0.020165234804153],[-0.045720849186182,0.087089605629444,-0.39472898840904]],[[0.016195757314563,-0.098719879984856,-0.10439465194941],[-0.045462340116501,0.05760895088315,-0.034876316785812],[-0.031600147485733,0.1299887150526,0.12635654211044]],[[0.15648879110813,-0.11086921393871,-0.23185329139233],[0.11453990638256,-0.16247397661209,-0.030129391700029],[0.27916818857193,0.12894660234451,0.017656143754721]],[[0.1420471072197,-0.2108801305294,0.0048245564103127],[0.05529672652483,-0.084196530282497,-0.071988813579082],[-0.19798663258553,0.078841358423233,-0.013710407540202]],[[0.06981660425663,0.0052817082032561,-0.17236083745956],[-0.090175747871399,-0.066098183393478,-0.046646118164062],[-0.10825608670712,-0.10857683420181,-0.11477989703417]],[[-0.080729216337204,0.03994395211339,-0.066157139837742],[-0.22619906067848,-0.18176534771919,-0.0077663296833634],[0.0046199625357985,0.068284846842289,-0.009640141390264]],[[0.045876991003752,0.10910124331713,0.048837024718523],[-0.023365607485175,-0.11471106112003,0.018956638872623],[-0.025940351188183,-0.028759909793735,0.00020784801745322]],[[0.17766392230988,0.090120732784271,0.063080877065659],[0.055882912129164,0.14333963394165,-0.028780961409211],[0.052489280700684,0.038079172372818,0.17650632560253]],[[-0.03967572748661,0.032716784626245,-0.14471405744553],[0.025895152240992,0.036827899515629,0.0038818912580609],[0.17546226084232,-0.039666093885899,0.041823402047157]],[[0.13335177302361,0.21491473913193,0.21222342550755],[0.26098793745041,0.23391868174076,-0.12097939103842],[0.13019959628582,-0.0023782942444086,0.21891859173775]],[[0.015847513452172,0.019527597352862,-0.15005585551262],[0.19805990159512,0.13835042715073,0.15434643626213],[-0.01071875821799,0.0098416358232498,0.082491487264633]],[[0.098132647573948,0.23692174255848,0.15692341327667],[-0.13165020942688,-0.15559552609921,0.1017407849431],[-0.14126302301884,-0.13532420992851,-0.037530370056629]],[[0.047836385667324,0.0081199211999774,-0.30027940869331],[0.039413671940565,-0.17406013607979,-0.33315819501877],[0.1585568934679,0.016711169853806,-0.29142314195633]],[[-0.22344283759594,0.041169829666615,-0.043039176613092],[-0.20270252227783,-0.0037511650007218,-0.03374245762825],[-0.017794316634536,0.10126475989819,-0.021864576265216]],[[0.020544404163957,-0.049839913845062,-0.006666568107903],[0.41280683875084,0.14641985297203,0.055323362350464],[0.032121773809195,0.21652112901211,0.0075350464321673]],[[-0.032201092690229,0.077269479632378,0.054317906498909],[0.045427437871695,0.042054072022438,-0.022331604734063],[0.028030823916197,0.13196490705013,0.014878841117024]],[[0.07881960272789,0.013480562716722,-0.098595671355724],[-0.010228870436549,-0.015566936694086,-0.12692186236382],[0.056417755782604,0.065970703959465,-0.17682161927223]],[[-0.16700711846352,-0.038060866296291,-0.050470795482397],[-0.10526738315821,-0.18556107580662,0.092819862067699],[-0.12643171846867,-0.12626574933529,-0.044881038367748]],[[0.16436405479908,-0.025602767243981,0.11293902248144],[0.070981398224831,-0.080350428819656,-0.23295557498932],[0.039754554629326,0.14282560348511,0.016337390989065]],[[-0.1688434779644,-0.21139794588089,0.14091241359711],[-0.038366075605154,-0.088259518146515,0.21276666224003],[-0.12732516229153,-0.028735449537635,0.19308826327324]],[[-0.053703308105469,-0.12708379328251,-0.046919614076614],[0.029438074678183,-0.032162986695766,0.1055950075388],[0.25564974546432,0.11269653588533,0.046662732958794]],[[-0.16780766844749,-0.041105836629868,0.14982894062996],[-0.076181970536709,0.091805882751942,0.10140918940306],[0.42616850137711,0.19299380481243,0.053147908300161]],[[0.094387896358967,-0.046442490071058,0.018404265865684],[0.1004412099719,0.1098321378231,0.0860740467906],[-0.03503342717886,0.12233770638704,0.035268414765596]],[[0.097692042589188,-0.18433201313019,-0.026305630803108],[0.041613049805164,0.068000316619873,-0.070996843278408],[-0.27112174034119,-0.028632193803787,0.093667276203632]],[[0.042656566947699,-0.12881737947464,-0.022624120116234],[0.031692933291197,0.03635985404253,0.065093576908112],[-0.23907354474068,-0.11997986584902,0.054109942167997]],[[-0.17566224932671,0.0012236239854246,0.10240037739277],[-0.12495762854815,-0.021091582253575,0.019825560972095],[0.044195782393217,0.22945988178253,-0.077824547886848]],[[-0.02046019397676,0.075903423130512,-0.048925533890724],[0.025960026308894,0.098006390035152,-0.003412714228034],[0.24897679686546,-0.035509217530489,0.16509911417961]],[[-0.074324615299702,0.18143081665039,0.059719607234001],[-0.097914837300777,0.068810299038887,0.12575793266296],[0.16975066065788,0.048977021127939,0.086953796446323]],[[-0.10029646009207,-0.11129447072744,-0.067546173930168],[0.061968196183443,-0.15625706315041,0.062135174870491],[-0.15019918978214,0.027805216610432,0.20237481594086]],[[-0.0066803423687816,0.12793922424316,0.13548532128334],[0.049973413348198,-0.081411965191364,0.028962980955839],[-0.042017798870802,-0.13480585813522,-0.0089136026799679]],[[-0.051951143890619,0.12766250967979,0.028452860191464],[0.0013672881759703,0.14772021770477,0.011584379710257],[0.020133538171649,0.066843710839748,-0.1474891602993]],[[-0.10262884944677,0.056680276989937,0.03212583437562],[0.059172987937927,0.1174314469099,0.08690570294857],[0.056091740727425,-0.01711292937398,-0.11059352755547]],[[-0.072372034192085,-0.038574874401093,-0.18643386662006],[-0.13761864602566,0.073694363236427,-0.050768900662661],[-0.10600639879704,-0.030142644420266,-0.066443800926208]],[[-0.028594151139259,-0.092788457870483,0.044043302536011],[-0.011032523587346,0.063454113900661,0.028312746435404],[0.17384971678257,0.032284565269947,0.17692102491856]],[[0.0037967127282172,0.018187049776316,-0.27609577775002],[-0.051756922155619,-0.095685504376888,-0.056635264307261],[0.017984297126532,-0.1459437161684,-0.12341652065516]],[[0.0089210802689195,-0.14922042191029,-0.044585347175598],[-0.10214658081532,-0.03724367544055,0.011824863031507],[0.18578569591045,0.038754012435675,0.003302039578557]],[[-0.11299526691437,0.21612539887428,-0.087802551686764],[0.0099567547440529,0.075030334293842,0.088730171322823],[0.13411296904087,0.19027644395828,0.11921663582325]],[[0.0057555329985917,-0.052344646304846,-0.17996864020824],[0.046908464282751,-0.021732861176133,0.049516268074512],[-0.10824190825224,-0.017515743151307,0.080697037279606]],[[-0.026710491627455,-0.085491150617599,0.057902399450541],[-0.11746663600206,0.031575035303831,0.059759359806776],[-0.25789007544518,-0.099836565554142,0.14382012188435]],[[-0.02817864716053,-0.084706224501133,-0.022136749699712],[-0.061890807002783,-0.070206433534622,0.13122035562992],[-0.014528174884617,-0.095924824476242,-0.034172724932432]],[[-0.078639090061188,-0.0051641026511788,-0.1453612446785],[-0.10602551698685,0.001511785783805,0.025917276740074],[0.059405162930489,-0.050184693187475,-0.055866152048111]],[[-0.061790507286787,-0.018194349482656,0.13767494261265],[-0.15045121312141,-0.018984766677022,-0.0032274990808219],[0.10375898331404,-0.097938872873783,0.19992479681969]],[[-0.11188950389624,-0.021309001371264,-0.00086030462989584],[0.021200340241194,-0.088670253753662,0.065541930496693],[0.15949347615242,-0.018939185887575,-0.0040913582779467]],[[0.0021648313850164,-0.009868087247014,-0.04398487508297],[0.1108882650733,0.010952495038509,0.0064213066361845],[0.056589368730783,0.056886222213507,-0.054439399391413]],[[-0.10303585231304,-0.12999239563942,-0.37492430210114],[-0.022406315430999,-0.05828345939517,-0.18118976056576],[-0.037805195897818,0.013275507837534,0.11559096723795]],[[-0.13855513930321,0.04374960437417,-0.1822138428688],[-0.028663497418165,0.065006799995899,0.035265807062387],[-0.045076083391905,0.083621509373188,0.0049780542030931]],[[0.016543760895729,0.021755903959274,0.35105293989182],[0.13013184070587,0.084947884082794,0.20202760398388],[0.20985640585423,0.059424616396427,0.1236644461751]],[[0.15622296929359,-0.06318473815918,-0.088385492563248],[0.13605433702469,0.06243384256959,-0.021565554663539],[0.21318556368351,-0.086701855063438,-0.027404954656959]],[[-0.03448349609971,-0.26754304766655,-0.0062190690077841],[0.093532904982567,-0.16737534105778,-0.12787634134293],[0.10061953961849,-0.015529410913587,0.029172625392675]],[[-0.063077673316002,-0.072854459285736,0.019868604838848],[-0.2164289355278,-0.11872462928295,-0.06877475976944],[-0.23558585345745,-0.1657467931509,-0.067955583333969]],[[-0.024358386173844,0.031567599624395,-0.24078342318535],[0.060158349573612,-0.027301682159305,-0.095710180699825],[-0.09758697450161,0.010955516248941,0.05774712562561]],[[0.014246625825763,-0.11568227410316,-0.18414750695229],[-0.10032337158918,-0.10935196280479,0.027681780979037],[-0.15438459813595,-0.080030791461468,0.12542210519314]],[[-0.054122976958752,-0.10695122927427,-0.047751266509295],[0.04717855527997,0.0032376991584897,-0.085094802081585],[0.10635239630938,0.094466358423233,0.03141587600112]],[[0.18131954967976,-0.1975224763155,-0.14099012315273],[-0.0041749225929379,-0.34547436237335,-0.40790820121765],[-0.022605599835515,-0.280452221632,-0.047439195215702]],[[-0.065325833857059,-0.12059565633535,0.011296346783638],[-0.016599653288722,0.008768311701715,0.031185930594802],[-0.021870288997889,0.046811278909445,-0.021349981427193]],[[0.12075103074312,0.036588095128536,0.063920944929123],[0.18791171908379,-0.031347811222076,-0.15382425487041],[0.07285088300705,-0.098102726042271,-0.06025792658329]],[[-0.063583984971046,-0.0079718204215169,-0.20893812179565],[-0.088056907057762,0.069749861955643,0.033537801355124],[0.15741172432899,0.011832754127681,-0.084385462105274]],[[-0.024161165580153,-0.082969598472118,-0.021453803405166],[-0.023611407727003,-0.079425193369389,-0.28619250655174],[-0.048652876168489,-0.11518895626068,-0.26209688186646]],[[0.10646969825029,-0.0084976712241769,-0.10354608297348],[-0.0084299370646477,-0.015357071533799,-0.041942857205868],[-0.20140367746353,-0.0092371655628085,0.12846927344799]],[[0.074145250022411,0.028876669704914,0.23248691856861],[-0.11896280944347,-0.1186374053359,-0.014243270270526],[0.11492466181517,-0.13874305784702,-0.037805452942848]],[[0.0095811747014523,-0.063315071165562,0.057959593832493],[-0.048297859728336,-0.010060797445476,-0.13005644083023],[-0.13264860212803,-0.095664322376251,-0.091719761490822]],[[-0.14038603007793,-0.088783346116543,0.081068031489849],[-0.048522770404816,0.0087402388453484,0.039773065596819],[-0.25715842843056,-0.20416516065598,-0.10544838011265]],[[0.0035195662640035,-0.1403149664402,-0.04621834307909],[0.13449768722057,0.16979412734509,0.1481895595789],[0.11141606420279,-0.065766572952271,0.10528919845819]],[[0.10183320194483,0.079725839197636,0.26371031999588],[0.099831946194172,0.059760212898254,-0.011057362891734],[0.080053254961967,-0.14047741889954,0.0062172599136829]],[[-0.099563173949718,-0.15931259095669,-0.19787666201591],[-0.085802257061005,-0.037532556802034,-0.064492166042328],[0.062416922301054,0.18131263554096,-0.043701913207769]],[[0.095400832593441,0.062993995845318,0.050308588892221],[0.087335459887981,0.022448292002082,0.0035700974985957],[0.28029546141624,0.097456552088261,-0.070628054440022]],[[-0.011196877807379,0.10919667780399,-0.020349601283669],[0.18841287493706,-0.051617220044136,-0.23147508502007],[-0.2083643078804,-0.15644147992134,-0.013453359715641]],[[-0.078684508800507,-0.20101554691792,0.089050658047199],[0.10666222125292,-0.022810976952314,-0.060453038662672],[0.0048096291720867,0.00090855866437778,-0.034501783549786]],[[-0.13938094675541,-0.082567825913429,-0.054961249232292],[0.10980340093374,-0.16521310806274,0.0019889273680747],[0.10175065696239,-0.020534297451377,-0.17636178433895]],[[0.028996758162975,-0.03761649876833,-0.1465550661087],[-0.10755842924118,0.053467094898224,-0.097363978624344],[-0.090359300374985,0.0050632623024285,-0.11777561903]],[[-0.12303820997477,-0.056860513985157,0.057871796190739],[0.11433206498623,0.15575340390205,0.24939899146557],[0.055887423455715,0.10396952182055,0.02146608568728]],[[-0.033377218991518,0.037032634019852,0.1231095418334],[-0.096066534519196,-0.16920520365238,-0.18600270152092],[0.065410502254963,0.010798911564052,-0.12466006726027]],[[0.060445673763752,0.098460309207439,-0.073186561465263],[0.03153694793582,-0.13462659716606,-0.17417079210281],[0.036127720028162,0.025559173896909,-0.15300431847572]],[[0.26522400975227,-0.055603012442589,-0.024772657081485],[0.083601072430611,-0.023116560652852,-0.047178942710161],[-0.05571448430419,0.27369710803032,0.18151789903641]],[[-0.064342014491558,0.24782611429691,0.1823194026947],[-0.14633463323116,0.092353530228138,0.24748151004314],[0.21292105317116,0.016121977940202,-0.21202670037746]],[[0.072344407439232,-0.1279536485672,0.13439731299877],[0.12652924656868,-0.14022946357727,-0.14111737906933],[0.26362136006355,-0.14415234327316,-0.072628192603588]],[[0.10641517490149,-0.0056581553071737,-0.16553929448128],[-0.13572841882706,0.13353794813156,-0.074892155826092],[-0.07057024538517,0.033613346517086,-0.13928729295731]],[[-0.11653420329094,-0.20429654419422,-0.10078590363264],[-0.012634710408747,-0.11026860773563,-0.095641151070595],[0.22825486958027,0.057581648230553,0.06927028298378]],[[-0.012693092226982,-0.071971669793129,0.098977215588093],[-0.097865223884583,-0.014048247598112,-0.017467522993684],[-0.22315387427807,0.0045002875849605,-0.029696384444833]],[[-0.2460113465786,0.071814969182014,-0.007309524808079],[-0.22037515044212,-0.3257874250412,0.093086265027523],[-0.21025924384594,-0.50684505701065,-0.20417019724846]],[[-0.097427144646645,0.16031938791275,-0.1370030194521],[-0.035503603518009,0.10185795277357,-0.010025904513896],[0.056041799485683,0.052999403327703,-0.29916018247604]],[[0.16781543195248,0.091863334178925,-0.041495349258184],[-0.26532474160194,0.062090817838907,0.088131159543991],[-0.17618501186371,0.0037636286579072,0.023238422349095]],[[-0.21247953176498,0.00019870267715305,0.061914898455143],[-0.026539174839854,-0.0052869799546897,0.053571172058582],[-0.050237789750099,-0.041395917534828,0.19284002482891]],[[0.065385617315769,-0.022352781146765,-0.043604254722595],[0.20923162996769,0.081013165414333,-0.02440919354558],[0.23484770953655,0.2586567401886,0.065892741084099]],[[0.045027304440737,-0.047943349927664,-0.0044234953820705],[-0.13040733337402,0.011476693674922,-0.009506200440228],[0.026643380522728,0.088022738695145,0.085888743400574]],[[-0.093121357262135,0.04408922046423,-0.02079164981842],[-0.049345642328262,-0.11405576020479,-0.11019025743008],[0.40572029352188,-0.015214222483337,-0.029260717332363]],[[0.13168975710869,-0.093200370669365,-0.021787207573652],[0.10630942881107,0.050516080111265,0.063275203108788],[-0.11859109997749,-0.043361905962229,-0.080006018280983]],[[-0.12125601619482,0.060425866395235,-0.014897190965712],[-0.11075098067522,0.0026422361843288,-0.0069245812483132],[0.037315171211958,0.055082686245441,0.036406300961971]],[[-0.16119338572025,-0.13103550672531,0.152577906847],[-0.39168283343315,0.020273188129067,-0.069525144994259],[-0.29543033242226,0.063178360462189,-0.00065133412135765]],[[-0.12854380905628,-0.34002354741096,-0.12468780577183],[-0.1468108445406,-0.1866260021925,-0.13869193196297],[-0.039676014333963,-0.14442770183086,0.022211311385036]],[[-0.039467852562666,0.19266334176064,0.13887129724026],[-0.010918406769633,0.042251970618963,0.040123984217644],[-0.029234156012535,0.16034558415413,-0.042629882693291]],[[0.083977669477463,0.096438251435757,-0.067322827875614],[0.049374915659428,-0.036160279065371,0.04025861248374],[-0.021919189020991,0.0721200928092,-0.10393094271421]],[[-0.14747561514378,-0.081186532974243,-0.14413952827454],[0.1936554312706,0.1048289835453,-0.15579174458981],[0.13314029574394,0.058162033557892,-0.32357624173164]],[[0.060678657144308,0.11814294755459,-0.041545048356056],[0.08305562287569,0.027755605056882,-0.030589658766985],[0.016981929540634,0.052111871540546,-0.04013404250145]],[[0.043710548430681,-0.072737902402878,-0.0068950774148107],[-0.024401132017374,0.11142019182444,0.10127996653318],[-0.0046177827753127,0.26340839266777,0.031847268342972]],[[0.11993936449289,0.16598342359066,0.18219318985939],[-0.075587771832943,-0.054457642138004,0.091075256466866],[-0.10093257576227,-0.17874000966549,-0.095991469919682]],[[0.035474635660648,-0.05756102129817,0.056828700006008],[0.057409226894379,-0.0052742208354175,-0.23451685905457],[-0.37425652146339,-0.08088307082653,-0.086338549852371]],[[0.023221056908369,-0.093663558363914,-0.060195799916983],[0.11550676822662,-0.14733889698982,-0.069735482335091],[0.057891815900803,0.18749922513962,-0.094102501869202]],[[-0.11747434735298,0.023607447743416,0.07943968474865],[-0.06423607468605,-0.074932955205441,0.011713157407939],[-0.080158531665802,-0.029130320996046,0.17152960598469]],[[0.10741470754147,0.024985309690237,0.073471926152706],[-0.04770252853632,0.059316728264093,-0.047995399683714],[-0.17768797278404,0.034982059150934,-0.20298245549202]],[[0.086419939994812,0.14938344061375,0.090588919818401],[-0.033759381622076,-0.03191490098834,0.13144460320473],[-0.11339190602303,0.03230369463563,0.00030031488859095]],[[0.074546463787556,-0.032628919929266,-0.032280642539263],[0.2144770026207,0.27263176441193,0.23248580098152],[0.22959439456463,0.32527732849121,0.24862159788609]],[[-0.083637468516827,-0.1241952329874,-0.32556244730949],[-0.014141368679702,-0.23074495792389,0.038384296000004],[-0.08226589858532,-0.16278746724129,-0.0042447443120182]],[[0.077972158789635,0.01008774805814,0.046498894691467],[-0.072165444493294,-0.024524874985218,0.12379758059978],[-0.23890908062458,0.017372416332364,0.0052878092974424]],[[0.095738306641579,-0.071437180042267,0.14348165690899],[0.022712295874953,-0.074031352996826,0.063170783221722],[0.056036803871393,0.25225776433945,0.0060688895173371]],[[-0.17107945680618,-0.085907399654388,0.081364937126637],[0.16852381825447,-0.052326451987028,-0.054288748651743],[0.10757408291101,-0.051683556288481,-0.039663273841143]],[[-0.14369988441467,-0.11603723466396,-0.055834822356701],[-0.11318536102772,-0.057124450802803,-0.020171159878373],[0.084684491157532,0.15476539731026,-0.10998260974884]],[[0.25139692425728,0.06321094930172,0.061916332691908],[0.057680774480104,0.10953789949417,-0.11583762615919],[-0.21342228353024,-0.10923543572426,-0.017702901735902]],[[0.057748608291149,0.17139248549938,0.0070762052200735],[-0.086622677743435,-0.13066744804382,0.053853966295719],[-0.25345787405968,-0.088433235883713,0.19010607898235]],[[-0.1792064756155,-0.04380040243268,0.1394667327404],[-0.070300661027431,0.12488998472691,-0.026184486225247],[-0.11209356784821,0.12875670194626,0.072331078350544]],[[0.079882271587849,0.016926674172282,0.0056707235053182],[-0.058005355298519,-0.047990825027227,-0.045284155756235],[-0.043075866997242,-0.010458169505,0.064083077013493]],[[0.062867537140846,-0.090137168765068,0.024954402819276],[0.032123003154993,-0.02641043253243,0.061900395900011],[0.019483551383018,-0.049438741058111,0.116833768785]],[[-0.072083339095116,-0.018772885203362,0.028695767745376],[-0.049624983221292,-0.006629909388721,0.16164989769459],[-0.16971299052238,-0.18568360805511,0.11796084046364]],[[-0.01396503392607,0.065315820276737,0.072691850364208],[-0.058542910963297,-0.064498893916607,0.040031064301729],[0.16395226120949,0.024647722020745,0.030285716056824]],[[0.11445751786232,-0.27776566147804,0.12236442416906],[-0.070366926491261,-0.19445177912712,-0.020983010530472],[-0.039242513477802,-0.16886593401432,-0.11082553863525]],[[0.21082970499992,0.07584323734045,0.010817644186318],[0.12627971172333,-0.041032813489437,-0.10728348046541],[-0.004655540920794,0.022442359477282,-0.20513580739498]],[[-0.031159024685621,0.037061415612698,-0.038842815905809],[-0.036605671048164,0.025810535997152,-0.047096710652113],[0.1653868407011,0.099603340029716,-0.067180775105953]],[[-0.062708124518394,-0.075484149158001,0.095813006162643],[0.12626379728317,-0.024114061146975,-0.065213389694691],[0.17314600944519,0.077889963984489,0.062301177531481]],[[0.11440588533878,-0.11480294913054,-0.023261142894626],[0.10845889151096,0.082092858850956,-0.082201942801476],[-0.00098375778179616,-0.086100205779076,0.021016450598836]],[[0.003427280113101,0.13958366215229,-0.15440635383129],[-0.063392452895641,-0.04814362898469,0.056912705302238],[-0.0098571591079235,-0.18924871087074,-0.22338962554932]],[[-0.052915144711733,-0.026300119236112,-0.14623028039932],[0.09076502174139,0.097392506897449,0.22360257804394],[-0.045037295669317,0.28149285912514,-0.17353616654873]],[[-0.0015764001291245,0.0066247526556253,0.3429097533226],[-0.0088488142937422,0.054491203278303,0.098631367087364],[0.075454756617546,0.10907576233149,0.14379370212555]],[[-0.068515881896019,-0.034170728176832,-0.076073907315731],[-0.12306745350361,-0.11997278034687,0.045121155679226],[-0.065263085067272,-0.23089878261089,-0.0599060729146]],[[0.10442169010639,0.063002958893776,-0.10437535494566],[0.03265917673707,-0.072378247976303,0.096819661557674],[-0.050930522382259,0.057727515697479,0.056349851191044]],[[0.057933356612921,0.093343704938889,0.052962820976973],[-0.085265584290028,0.014824270270765,0.15445727109909],[-0.11828081309795,0.16590645909309,0.0083514144644141]],[[0.10736611485481,0.015080437995493,-0.059681944549084],[0.16094928979874,0.028672775253654,-0.010455571115017],[0.24601197242737,0.03076421841979,0.18703456223011]],[[-0.043689604848623,-0.066293582320213,-0.291732609272],[0.0098382756114006,0.032521262764931,0.10395944863558],[-0.10071083158255,0.11091996729374,0.15253092348576]],[[0.14915795624256,0.061592001467943,-0.1646429002285],[-0.027215441688895,0.040074799209833,0.21058765053749],[-0.28278169035912,-0.045561600476503,0.11819306761026]]],[[[0.027436008676887,-0.10211788117886,-0.1925203949213],[0.043635111302137,-0.13574303686619,0.10259340703487],[-0.18603293597698,-0.056180208921432,-0.1159383058548]],[[0.13992209732533,-0.018859427422285,-0.13867239654064],[0.13632589578629,0.10904414951801,0.17027814686298],[-0.21505162119865,-0.17478597164154,-0.062274862080812]],[[0.11289124190807,-0.049854304641485,-0.13889068365097],[0.16999134421349,-0.015258587896824,-0.030654579401016],[-0.0027958452701569,-0.04351793602109,0.083805479109287]],[[-0.0046216738410294,-0.19414655864239,-0.046135772019625],[-0.16135862469673,-0.088977992534637,-0.13250702619553],[0.063887558877468,-0.0022536653559655,0.044516123831272]],[[0.10134348273277,0.010807070881128,5.5609096307307e-05],[0.0014241050230339,-0.18180930614471,-0.12021213024855],[0.40711638331413,0.22283455729485,0.35468083620071]],[[-0.14831294119358,-0.001420141896233,0.18558897078037],[0.061294104903936,0.0815469622612,0.013383496552706],[-0.044844064861536,0.033935088664293,0.20021118223667]],[[0.23965962231159,0.023435812443495,-0.18504047393799],[0.2475139349699,0.3877469599247,0.39133030176163],[0.033597942441702,-0.1874668598175,-0.2060457020998]],[[-0.0012289957376197,-0.010985037311912,-0.15038201212883],[0.20271208882332,0.07774268835783,-0.0055228765122592],[-0.060488015413284,0.12182798981667,0.13371668756008]],[[-0.074011757969856,-0.035944428294897,0.075907230377197],[-0.12545968592167,0.028920959681273,0.14335386455059],[-0.11076493561268,-0.14441077411175,-0.096424490213394]],[[-0.0068751620128751,-0.20218290388584,0.022477461025119],[-0.15414655208588,0.05054310336709,0.20078685879707],[-0.12425970286131,-0.079248175024986,-0.0033972985111177]],[[0.11154533922672,0.14193914830685,0.23819667100906],[0.16324926912785,0.042503632605076,0.032745007425547],[0.13653701543808,-0.035349048674107,-0.20569303631783]],[[-0.093733429908752,-0.2474599480629,-0.32791349291801],[-0.041102807968855,-0.12262738496065,-0.13967345654964],[0.12393422424793,-0.010190242901444,0.098419614136219]],[[-0.19953103363514,-0.10854206979275,-0.11036032438278],[0.065005362033844,-0.020268270745873,0.074139036238194],[-0.19029298424721,-0.16404284536839,-0.25938084721565]],[[-0.023644199594855,-0.22861041128635,-0.23730754852295],[-0.12068688869476,-0.10009361058474,-0.22456461191177],[-0.0091205108910799,-0.21463607251644,0.0056460169143975]],[[-0.033257327973843,0.0047816592268646,0.028093434870243],[0.0041289427317679,0.018416931852698,0.032885555177927],[-0.17689713835716,-0.1379671394825,-0.04350596293807]],[[0.19639709591866,-0.021087683737278,-0.035127270966768],[-0.077815763652325,-0.2589019536972,-0.041456561535597],[0.11426161974669,-0.048569239675999,-0.16892956197262]],[[-0.13279712200165,-0.095190428197384,-0.12776727974415],[0.023144841194153,-0.024445690214634,-0.062911041080952],[-0.20550155639648,-0.085106827318668,-0.086007416248322]],[[0.1144265756011,-0.0074466103687882,-0.0012899301946163],[0.097527489066124,-0.062746062874794,-0.19090031087399],[0.12767833471298,0.15831477940083,0.34081882238388]],[[0.19622546434402,0.006264251191169,0.065685532987118],[-0.15926441550255,-0.037777744233608,0.017399562522769],[0.15171499550343,0.11709931492805,0.23358032107353]],[[-0.10090687125921,-0.17485281825066,-0.030340015888214],[-0.078573800623417,0.075703896582127,0.090161316096783],[-0.055082142353058,0.11242697387934,0.091546855866909]],[[-0.18888141214848,-0.059795394539833,0.041337747126818],[-0.088335059583187,-0.13804161548615,0.06332390755415],[-0.097639471292496,0.01526565849781,-0.13124147057533]],[[0.15049231052399,0.14601650834084,0.10778563469648],[-0.079290382564068,-0.14395996928215,-0.067624978721142],[-0.068104662001133,-0.04778940603137,0.0021354595664889]],[[0.011091288179159,-0.034070003777742,-0.03559235855937],[-0.043274167925119,-0.091486983001232,-0.11641728878021],[0.072242081165314,0.39731687307358,0.28346422314644]],[[0.043649822473526,-0.10675422847271,0.0011221236782148],[-0.075293205678463,-0.090741381049156,-0.071858175098896],[0.0071234283968806,-0.024879613891244,-0.11973334103823]],[[0.0055898325517774,0.021486014127731,0.0052145826630294],[0.15128928422928,0.28385883569717,0.12285704165697],[-0.20381747186184,0.011002258397639,0.070859834551811]],[[0.22701290249825,0.034060526639223,0.013218889012933],[-0.079379454255104,-0.0090416688472033,-0.16056658327579],[-0.028488833457232,-0.048657681792974,-0.14202758669853]],[[-0.033096559345722,-0.012341223657131,0.15239441394806],[0.020524974912405,-0.097862660884857,-0.135193541646],[-0.10223548859358,-0.068290874361992,-0.11519314348698]],[[0.20249980688095,0.27196994423866,0.09241496771574],[-0.13364386558533,-0.078134924173355,-0.41743606328964],[0.10883876681328,-0.05174807086587,-0.064178869128227]],[[-0.0024506084155291,0.068876072764397,-0.054927077144384],[-0.18943758308887,-0.12531572580338,-0.1692691296339],[0.035627730190754,-0.061728645116091,-0.1649104654789]],[[0.034552834928036,-0.097971856594086,0.043197341263294],[0.047604653984308,-0.069294862449169,0.02942487411201],[-0.0099421171471477,0.0073268823325634,-0.043016511946917]],[[-0.17043992877007,-0.083900772035122,-0.12659624218941],[0.0510648265481,0.01822093129158,-0.10182951390743],[-0.037324238568544,-0.059069003909826,-0.028648413717747]],[[0.032921928912401,-0.040436189621687,0.22604170441628],[0.056781623512506,0.06548448652029,0.13872128725052],[0.0074949907138944,-0.025822969153523,0.15285076200962]],[[-0.22188599407673,-0.18850861489773,-0.22127535939217],[0.11142814904451,0.12667083740234,0.10500800609589],[0.065592363476753,0.030210526660085,-0.0095706852152944]],[[-0.14646117389202,-0.027467170730233,-0.0089317513629794],[0.095667645335197,0.076560668647289,0.172672316432],[-0.12728370726109,-0.012899972498417,-0.057023949921131]],[[0.13623557984829,0.046445727348328,0.01416808180511],[-0.044594708830118,-0.1602096259594,0.039867803454399],[0.17764328420162,0.027120966464281,-0.097264766693115]],[[0.066837728023529,0.17279480397701,0.14119476079941],[-0.19187588989735,-0.11360167711973,-0.11530383676291],[0.00591363850981,0.2106259316206,0.263238042593]],[[0.011927261948586,0.14332790672779,0.15205377340317],[-0.13521935045719,-0.049839034676552,-0.043251685798168],[0.12358445674181,0.15567611157894,0.22704648971558]],[[-0.10544537752867,0.18112003803253,0.13839018344879],[-0.089963600039482,-0.14591608941555,-0.12320286780596],[-0.12476346641779,-0.21501713991165,-0.037298411130905]],[[0.088621623814106,-0.019379185512662,0.03667600825429],[0.062790997326374,0.082059867680073,0.15736992657185],[-0.048444114625454,-0.011852452531457,-0.13353994488716]],[[0.001646789140068,0.07575885951519,0.14875581860542],[-0.03064988926053,0.021101210266352,0.089619122445583],[0.20469787716866,-0.050692033022642,-0.21214933693409]],[[-0.031579595059156,-0.0285081602633,0.048240814357996],[0.041743662208319,-0.0051382151432335,-0.050831899046898],[0.038399301469326,-0.078757777810097,-0.22356684505939]],[[0.13868543505669,0.053284451365471,0.00038618809776381],[0.20130126178265,0.1024996265769,0.093449905514717],[0.064204044640064,0.070501208305359,0.17911112308502]],[[0.14218392968178,-0.065571941435337,-0.16902710497379],[-0.034678962081671,-0.11901507526636,-0.034926291555166],[-0.088702484965324,-0.0075148930773139,0.025600785389543]],[[-0.2551466524601,-0.11364068090916,0.033734779804945],[-0.27715820074081,-0.11504198610783,-0.030000058934093],[-0.054171174764633,0.0027857651002705,0.0074143190868199]],[[-0.31956002116203,-0.37168446183205,-0.35190510749817],[0.027569387108088,0.08415125310421,0.080374300479889],[0.038290720432997,0.032463774085045,0.062053736299276]],[[0.10759817808867,0.0082515217363834,-0.0061772377230227],[-0.025656031444669,-0.088220372796059,-0.10562889277935],[0.069321751594543,0.075900785624981,0.033379975706339]],[[0.13785360753536,0.067156068980694,0.030346801504493],[-0.19082382321358,-0.13009820878506,-0.13057726621628],[-0.16123919188976,-0.10412717610598,-0.043271914124489]],[[0.05288028344512,0.02592246606946,-4.0964710933622e-05],[0.013561583124101,0.016113234683871,-0.09969137609005],[-0.032577320933342,-0.028721388429403,-0.1346844881773]],[[-0.18930473923683,-0.18551999330521,-0.27789789438248],[-0.012983620166779,-0.087789386510849,0.020004637539387],[0.080501578748226,0.14241544902325,0.10087692737579]],[[-0.13734702765942,-0.21462140977383,-0.093367859721184],[0.016244823113084,-0.11613436788321,-0.12303306162357],[0.06082995980978,0.013388159684837,0.067155092954636]],[[-0.16384543478489,-0.051740344613791,0.093489624559879],[-0.15711857378483,0.0059677083045244,-0.11199207603931],[-0.21821974217892,-0.19506821036339,-0.0340376496315]],[[0.030196715146303,0.073350965976715,-0.1501651853323],[-0.044799316674471,-0.15687088668346,-0.11933746933937],[0.2127294242382,0.13238777220249,0.14850480854511]],[[-0.092988424003124,-0.17267379164696,-0.11307664960623],[-0.22613866627216,-0.23203332722187,-0.11909436434507],[-0.0037374426610768,-0.053709018975496,0.12312759459019]],[[0.021245894953609,0.029124042019248,-0.064374350011349],[0.15823125839233,0.096652828156948,-0.039240721613169],[-0.075796380639076,0.05921334028244,0.0068879770115018]],[[0.14758375287056,0.026282897219062,-0.13746809959412],[-0.028857059776783,0.040432933717966,-0.15330699086189],[-0.053239688277245,-0.039126373827457,0.054864097386599]],[[-0.10241876542568,-0.093741729855537,-0.13879145681858],[0.17009097337723,-0.022033886983991,0.12937453389168],[-0.12017602473497,-0.12182250618935,-0.12748070061207]],[[0.13517074286938,0.15974609553814,0.0027268810663372],[0.10345273464918,0.14640404284,-0.032151374965906],[-0.21061499416828,-0.17944112420082,-0.10912662744522]],[[0.00051275966688991,-0.13203525543213,-0.11727151274681],[-0.096388198435307,-0.29155391454697,-0.18129059672356],[-0.28734689950943,-0.28897330164909,-0.11262262612581]],[[-0.078454002737999,-0.10925228893757,-0.15545937418938],[-0.12382344156504,-0.17351318895817,-0.19254179298878],[0.035918146371841,-0.00046535080764443,-0.10537888854742]],[[-0.14315867424011,-0.11259528249502,-0.13487611711025],[0.056239545345306,0.053125843405724,0.23658080399036],[-0.010583658702672,-0.11036765575409,0.14482007920742]],[[0.021514544263482,0.040987644344568,-0.08218290656805],[0.11274839192629,0.081825286149979,-0.052258186042309],[0.014719552360475,0.011216349899769,-0.12191320955753]],[[0.071905337274075,0.035249095410109,-0.026870593428612],[-0.060778055340052,-0.17130769789219,-0.13015322387218],[-0.063745759427547,-0.16393016278744,-0.015881430357695]],[[-0.084093444049358,-0.07201361656189,0.078528888523579],[-0.051358722150326,-0.052890848368406,-0.056744758039713],[0.061150759458542,0.071775838732719,0.085092023015022]],[[0.10317352414131,0.042277351021767,0.037865374237299],[-0.046766839921474,-0.24018274247646,-0.12340267002583],[-0.074832260608673,-0.13499557971954,-0.13737273216248]],[[-0.062147799879313,-0.0043375426903367,-0.092453435063362],[-0.0091054327785969,-0.025961935520172,-0.090251810848713],[-0.064220227301121,-0.051208920776844,-0.017698111012578]],[[0.09624020755291,-0.13493676483631,0.016939559951425],[-0.011941692791879,0.049285173416138,-0.1555747538805],[-0.018092958256602,-0.01745673827827,-0.0193458404392]],[[0.089106805622578,0.055341348052025,-0.041252907365561],[0.0087918024510145,0.046679351478815,-0.096656300127506],[-0.017032420262694,0.07525771856308,0.11721073836088]],[[-0.17522519826889,0.010945518501103,-0.0047703459858894],[-0.070091597735882,0.018818667158484,-0.088105194270611],[-0.25437200069427,-0.015523091889918,0.12465839087963]],[[0.33815547823906,0.090571165084839,0.051499035209417],[0.034698642790318,-0.021624756976962,-0.1268534809351],[-0.0092358468100429,0.00021690329595003,-0.04219738021493]],[[-0.12216697633266,-0.15908010303974,-0.10663516819477],[0.16448158025742,0.040775518864393,-0.13721011579037],[0.20713877677917,0.16565398871899,0.070592261850834]],[[-0.012079355306923,0.025791427120566,0.13900159299374],[-0.21186868846416,-0.19006004929543,-0.28448760509491],[0.21881146728992,-0.0566466152668,-0.27069672942162]],[[0.05815776064992,0.056315395981073,0.056555215269327],[-0.080422841012478,0.053599249571562,0.07531301677227],[-0.19136781990528,0.030521742999554,0.0023525566793978]],[[0.095577672123909,0.015829510986805,-0.024617565795779],[-0.085870876908302,-0.10169737040997,-0.149015635252],[-0.17945683002472,-0.11524145305157,0.048284918069839]],[[0.0292898863554,0.13254837691784,-0.12494005262852],[-0.13149750232697,-0.042642049491405,-0.10322940349579],[0.0080048553645611,-0.11081954091787,0.015780366957188]],[[0.10960087925196,-0.023814238607883,-0.099379368126392],[-0.043088082224131,0.0046755722723901,0.017387775704265],[-0.060830287635326,-0.062085259705782,-0.12311238050461]],[[0.044615004211664,-0.091991610825062,-0.051998138427734],[-0.25019317865372,-0.15605539083481,-0.15659320354462],[0.2024202644825,0.027411667630076,-0.0052615525200963]],[[0.024338591843843,0.079414077103138,0.031230088323355],[0.14324541389942,0.046770960092545,0.026604695245624],[-0.046897418797016,-0.047637350857258,0.072278030216694]],[[0.027300776913762,0.093100696802139,-0.013758695684373],[-0.067008420825005,-0.046299558132887,0.02357324026525],[-0.12360979616642,0.050656370818615,0.046760246157646]],[[0.057802479714155,-0.077012076973915,-0.27488577365875],[-0.17777383327484,-0.063927091658115,-0.31380394101143],[-0.052189443260431,0.031255733221769,0.059324342757463]],[[-0.20336617529392,-0.26219153404236,-0.15784230828285],[-0.056645456701517,-0.071601696312428,-0.14811514317989],[-0.11791729182005,0.0048013152554631,-0.088793560862541]],[[0.0099505856633186,0.067708015441895,0.14082522690296],[-0.050829660147429,-0.06889270991087,-0.042526077479124],[0.016034193336964,-0.064306296408176,0.074440434575081]],[[-0.14148782193661,-0.015131471678615,0.0067609902471304],[-0.12415561079979,-0.05409412458539,0.02994579076767],[0.070203967392445,0.050559941679239,0.33778840303421]],[[0.14198045432568,-0.046176452189684,-0.055003453046083],[-0.1057848110795,0.17789344489574,0.11120752990246],[0.043404303491116,0.057872030884027,0.057101584970951]],[[-0.10204447060823,-0.0056966729462147,0.12414442002773],[0.01607252843678,0.0052405381575227,0.053544361144304],[0.026021407917142,0.17236991226673,0.2453211247921]],[[0.20749343931675,0.18039037287235,0.12076799571514],[-0.011447448283434,0.0053165131248534,-0.11136650294065],[-0.10662996768951,0.0062363846227527,-0.024274580180645]],[[-0.027194829657674,-0.1768748909235,-0.22248835861683],[-0.047644138336182,0.0072583784349263,0.0032053519971669],[0.064166188240051,0.071957558393478,0.16684862971306]],[[-0.016253544017673,-0.085273027420044,-0.095170542597771],[-0.18814566731453,-0.31021043658257,-0.1553605645895],[-0.15614160895348,-0.11751942336559,0.069234676659107]],[[0.28979247808456,0.1697012335062,0.0093838321045041],[-0.059767283499241,0.093870289623737,0.33912995457649],[-0.23810929059982,-0.08059074729681,-0.021612713113427]],[[0.15760996937752,0.085157051682472,-0.18673224747181],[-0.28848627209663,-0.031251512467861,0.006317020393908],[-0.16480585932732,0.024587854743004,0.20683312416077]],[[-0.047910049557686,-0.022740935906768,0.0078866351395845],[-0.028430515900254,0.011361450888216,-0.032591588795185],[-0.071167401969433,-0.1272399276495,-0.06938960403204]],[[-0.17528028786182,-0.028753101825714,0.00018359793466516],[-0.066763557493687,-0.066711604595184,0.11035579442978],[-0.0042430642060935,-0.002221362432465,0.23740176856518]],[[-0.13340075314045,-0.068345241248608,-0.076721534132957],[0.076398208737373,0.025224747136235,0.090810351073742],[-0.097157321870327,-0.15536962449551,-0.1561703979969]],[[0.041809536516666,0.084578171372414,-0.11815267056227],[0.21780000627041,0.151258289814,0.065672412514687],[0.011046301573515,0.0049140346236527,0.0067419819533825]],[[-0.047183234244585,-0.075794346630573,-0.11526060849428],[0.026042418554425,0.074659392237663,-0.019069226458669],[-0.12095480412245,-0.12402371317148,-0.18778289854527]],[[0.053540457040071,0.037705566734076,0.038085803389549],[-0.041704691946507,-0.052658814936876,0.0088977487757802],[0.20114804804325,-0.014111762866378,-0.088696196675301]],[[0.021451288834214,0.016423938795924,-0.10089958459139],[0.096638098359108,0.0091963559389114,-0.14553532004356],[-0.033172532916069,-0.16538470983505,-0.064422927796841]],[[0.16665828227997,0.18070586025715,0.048313558101654],[0.034407287836075,0.064953349530697,-0.038403652608395],[0.055655583739281,-0.03522315248847,-0.126848295331]],[[0.20868934690952,0.27290657162666,0.12265763431787],[-0.0028968511614949,-0.16222919523716,-0.21991920471191],[-0.12744039297104,-0.030772041529417,0.10097414255142]],[[0.090175740420818,0.12339524179697,0.060768987983465],[-0.053067728877068,-0.038484241813421,-0.013205787166953],[0.082512088119984,0.22024492919445,0.33548712730408]],[[0.21036459505558,0.12631790339947,0.063155986368656],[-0.31207504868507,-0.24528574943542,-0.1982811242342],[0.13008767366409,0.19467884302139,0.30283251404762]],[[0.0063146506436169,0.11439468711615,0.10032266378403],[-0.10246529430151,-0.11012434959412,-0.062571078538895],[0.20075552165508,0.0096825379878283,0.12890185415745]],[[0.038491453975439,0.14854244887829,0.055246856063604],[-0.25166377425194,-0.17263330519199,-0.14499549567699],[0.18729247152805,0.18581713736057,0.42849710583687]],[[-0.10187817364931,0.0071467007510364,0.059808038175106],[-0.068273946642876,-0.11799412220716,-0.088002108037472],[0.013880013488233,-0.080817945301533,-0.051333591341972]],[[-0.10644511133432,-0.10734733194113,-0.044776190072298],[0.17311821877956,0.2249793112278,0.24822065234184],[-0.39671120047569,-0.27015286684036,-0.25988441705704]],[[-0.060663584619761,0.15329790115356,0.18120716512203],[-0.027565663680434,-0.031408533453941,-0.05739114806056],[-0.16393698751926,-0.10589174926281,0.074560038745403]],[[-0.074567936360836,-0.048421584069729,0.032096482813358],[-0.076750352978706,0.10993105173111,0.14770717918873],[-0.18021920323372,-0.039355285465717,-0.028331935405731]],[[-0.016537254676223,0.080613404512405,-0.00019750731007662],[0.15267898142338,0.12297205626965,0.018770476803184],[-0.04993262514472,0.15566532313824,0.17036202549934]],[[0.11272875219584,0.11696396023035,0.11312233656645],[-0.097886435687542,0.011046617291868,0.02361030690372],[-0.03531002625823,-0.05481019243598,0.12990215420723]],[[0.08442085236311,0.07208401709795,-0.033846065402031],[-0.1180098131299,-0.086777649819851,-0.043834690004587],[-0.064012251794338,-0.13778300583363,0.049391839653254]],[[-0.024152001366019,0.041044902056456,0.13623097538948],[0.14506728947163,-0.0047520496882498,-0.09079072624445],[0.12884086370468,-0.20117519795895,-0.083345718681812]],[[-0.13646076619625,-0.22551779448986,-0.12856785953045],[-0.040283437818289,-0.11328192055225,-0.058763988316059],[0.041514549404383,0.031662989407778,0.070158451795578]],[[0.10370713472366,-0.06922373175621,-0.0097593916580081],[0.21916735172272,0.016321154311299,-0.11349435895681],[0.14559470117092,0.13798603415489,0.13647201657295]],[[0.18998084962368,0.022604513913393,0.012311518192291],[-0.027691375464201,-0.071668855845928,-0.029732501134276],[0.05125929787755,-0.017982529476285,0.097383596003056]],[[-0.16629877686501,-0.13526691496372,-0.01695828512311],[-0.0077779181301594,-0.072109751403332,-0.041883934289217],[0.26177123188972,0.026956271380186,0.096887782216072]],[[-0.11649265885353,0.081613585352898,0.034778963774443],[0.031930696219206,0.096176765859127,-0.038171902298927],[0.22809138894081,0.014011526480317,-0.027680300176144]],[[0.21268257498741,0.10722533613443,0.024469399824739],[-0.084852173924446,-0.1415096372366,-0.096021711826324],[0.02792102843523,0.084842033684254,0.22543340921402]],[[-0.080917775630951,0.10823174566031,0.1869488209486],[-0.029337827116251,0.068071767687798,-0.2578290104866],[0.20788487792015,0.083959221839905,-0.072391964495182]],[[0.21492858231068,0.10813245922327,0.32676169276237],[0.044891376048326,0.155925527215,-0.057099100202322],[-0.15329366922379,-0.16715358197689,-0.19141136109829]],[[-0.23739503324032,-0.20043154060841,-0.11098324507475],[-0.1384172141552,0.0039663827046752,-0.025737021118402],[0.20653939247131,0.29697412252426,0.26780161261559]],[[0.017002984881401,0.0065194824710488,-0.030081221833825],[0.031414248049259,0.0052510197274387,0.19757011532784],[-0.018530961126089,-0.12147106230259,0.036827735602856]],[[-0.068055048584938,0.033280041068792,0.093719609081745],[-0.177939042449,-0.074623480439186,0.021028678864241],[0.061379816383123,0.095417268574238,0.11779226362705]],[[0.18164144456387,-0.10493179410696,0.059170719236135],[0.053913455456495,0.25926557183266,0.11508271843195],[-0.11631456017494,-0.0016010041581467,0.034482534974813]],[[-0.20187279582024,-0.14498366415501,0.069954223930836],[0.067409113049507,0.0043704165145755,0.0050322078168392],[-0.035818476229906,-0.13973486423492,-0.0079835280776024]],[[-0.065237961709499,-0.023198839277029,-0.020105551928282],[0.029257711023092,-0.0013532364973798,-0.072543606162071],[0.2489447593689,0.24569970369339,0.20006699860096]],[[-0.0047594136558473,0.05580148473382,0.020434306934476],[0.093426287174225,0.086293146014214,0.10357785224915],[0.11504078656435,0.017908243462443,-0.14993512630463]],[[-0.04671198502183,0.073611378669739,-0.0067104115150869],[0.19635698199272,0.064090251922607,-0.069760262966156],[0.0098206996917725,0.010559216141701,-0.063046842813492]],[[-0.072075702250004,0.022883793339133,-0.0045030219480395],[-0.2383508682251,0.006004249677062,0.0021303510293365],[-0.084856644272804,-0.022891934961081,-0.0082882111892104]],[[0.21521699428558,0.10902490466833,0.061332941055298],[-0.066691771149635,0.02335481159389,-0.086411014199257],[-0.12530842423439,-0.096137344837189,-0.16807869076729]]],[[[0.021819971501827,-0.016453010961413,0.01582289673388],[0.078020438551903,0.018903482705355,-0.012682656757534],[0.037699174135923,-0.012946632690728,-0.081250503659248]],[[0.03331445530057,-0.017255332320929,-0.026105288416147],[0.11171674728394,0.090723007917404,0.0916433557868],[-0.0062582814134657,-0.040380999445915,-0.019124675542116]],[[0.012561706826091,-0.047292329370975,-0.067310705780983],[0.076912261545658,0.033192954957485,-0.04793319106102],[-0.072529338300228,0.057214684784412,0.08047042042017]],[[-0.0083483261987567,-0.018227087333798,-0.041588056832552],[0.08306086063385,-0.1159837692976,0.029435003176332],[0.032660815864801,-0.0044638002291322,0.026139289140701]],[[0.06117082759738,-0.019336942583323,-0.048312734812498],[0.031035665422678,0.029051221907139,0.01355351973325],[0.053834035992622,-0.079269930720329,0.0079517383128405]],[[0.023140968754888,0.032030768692493,-0.018818862736225],[0.035550978034735,-0.049725826829672,-0.10787130892277],[0.067571513354778,0.048315569758415,-0.072855964303017]],[[0.046247996389866,-0.021870944648981,-0.08204673230648],[-0.028629824519157,0.086486682295799,0.042500518262386],[0.12920813262463,0.031226655468345,0.035381570458412]],[[-0.040808148682117,-0.015346447937191,-0.081873297691345],[-0.0356185734272,-0.0035052571911365,0.089202702045441],[-0.037451483309269,0.033551018685102,0.0094444435089827]],[[-0.03964551910758,0.016313308849931,0.01032632868737],[0.016436813399196,-0.049404557794333,-0.066264450550079],[-0.068097539246082,-0.061130866408348,0.089330434799194]],[[-0.030190233141184,-0.025720596313477,-0.032290060073137],[-0.041233789175749,-0.039332658052444,0.036009609699249],[0.07809941470623,0.042146690189838,-0.080704391002655]],[[-0.025983914732933,-0.10575150698423,0.0099432021379471],[0.026866715401411,-0.068005494773388,0.046801403164864],[0.054508920758963,0.020686065778136,-0.037853676825762]],[[0.046291764825583,0.03002417460084,0.10480734705925],[0.0074714124202728,-0.091310046613216,-0.026397163048387],[-0.015747513622046,0.073623344302177,0.084182031452656]],[[0.051829278469086,-0.021070478484035,0.041791640222073],[0.056476175785065,0.039345275610685,0.062220975756645],[-0.078044846653938,-0.063612163066864,0.087079092860222]],[[-0.030813112854958,-0.0097360974177718,-0.049776073545218],[0.0087900357320905,0.0024520352017134,-0.044222496449947],[-0.059730235487223,0.03062279894948,-0.04739660769701]],[[-0.0919498950243,0.00031994862365536,-0.016428975388408],[0.016426730901003,-0.014749576337636,0.0071146977134049],[-0.017964700236917,-0.043019492179155,-0.054097667336464]],[[0.076702192425728,0.014593769796193,0.022012704983354],[0.025726485997438,-0.014696304686368,-0.10464991629124],[0.04054169729352,0.034035425633192,-0.079532727599144]],[[-0.03827403113246,0.063462682068348,0.14442047476768],[0.019441090524197,0.041983425617218,-0.0054938709363341],[0.019890051335096,-0.0069690542295575,-0.082728251814842]],[[-0.049847017973661,-0.056187462061644,-0.044127248227596],[-0.059006337076426,0.018726238980889,-0.012593784369528],[-0.0038130066823214,-0.052193179726601,-0.047097373753786]],[[0.035995073616505,0.048661578446627,-0.003280668752268],[0.032381940633059,0.017041822895408,-0.019006382673979],[0.012472315691411,-0.0074253887869418,-0.084717340767384]],[[0.0072634341195226,0.018359109759331,-0.03538653254509],[-0.080868132412434,-0.039734430611134,-0.051248155534267],[-0.02490390650928,-0.035693973302841,0.030700987204909]],[[0.029727792367339,0.0026617634575814,-0.077645979821682],[-0.0088954344391823,-0.036290906369686,0.032637301832438],[-0.036920357495546,-0.0041482225060463,0.049791321158409]],[[-0.0050649102777243,-0.0173912756145,0.019320150837302],[-0.13197685778141,-0.067183896899223,0.020679382607341],[0.051692970097065,-0.086004145443439,-0.042084831744432]],[[0.053076270967722,-0.0018052480882034,0.03682142496109],[0.087064117193222,-0.020157661288977,-0.017398506402969],[0.034584119915962,-0.017906114459038,-0.032798606902361]],[[-0.0027491534128785,0.020235462114215,-0.016786186024547],[0.052428465336561,-0.029646400362253,0.029999235644937],[0.12207737565041,0.019915975630283,0.019443584606051]],[[-0.0027912608347833,0.067445620894432,0.008206988684833],[0.075279116630554,-0.083610445261002,-0.13163860142231],[0.14571739733219,0.013115507550538,-0.086335681378841]],[[-0.00070229946868494,0.091606363654137,-0.018320810049772],[0.0041108760051429,0.065085805952549,-0.039680309593678],[-0.07654345780611,0.0094365077093244,-0.056288652122021]],[[-0.016862623393536,0.0058114253915846,0.013222347944975],[-0.10458021610975,-0.15487238764763,-0.003908431623131],[-0.047876223921776,0.0069488892331719,-0.079508401453495]],[[0.1559864282608,-0.044242572039366,0.056563466787338],[0.023367021232843,0.0437899120152,0.056712463498116],[0.013666937127709,0.029871586710215,-0.024506511166692]],[[-0.15172550082207,-0.033289402723312,-0.054119072854519],[0.030924024060369,0.037477906793356,-0.072291307151318],[0.051099121570587,-0.024597907438874,-0.050265125930309]],[[0.063349731266499,-0.060564421117306,-0.016375536099076],[0.030311098322272,0.086349651217461,0.03173641115427],[0.05447544157505,-0.012762654572725,-0.048365496098995]],[[-0.053022142499685,0.079558558762074,0.040224455296993],[0.00034532140125521,-0.096880666911602,-0.069987833499908],[0.058650091290474,0.020200159400702,-0.056428298354149]],[[0.057027332484722,0.051959618926048,-0.035163432359695],[-0.051043048501015,-0.065676830708981,-0.055362597107887],[0.0069068572483957,-0.027996120974422,0.074974730610847]],[[-0.017964785918593,-0.014914719387889,-0.037945445626974],[-0.053207695484161,0.06213379278779,0.00060204014880583],[-0.0010550558799878,-0.034775502979755,0.061948344111443]],[[-0.062227215617895,-0.037148684263229,-0.14114367961884],[0.12294282764196,-0.084583051502705,-0.014276823960245],[0.0050001102499664,-0.071069620549679,0.0068974276073277]],[[0.021175891160965,-0.067713864147663,-0.10393841564655],[0.032974254339933,-0.015461597591639,-0.017524460330606],[-0.1154812797904,0.020923810079694,0.021075854077935]],[[0.096651330590248,0.039267119020224,-0.047317892313004],[-0.098780997097492,-0.051209468394518,-0.045819614082575],[-0.020477464422584,-0.09447356313467,-0.022022297605872]],[[-0.018495790660381,0.043892279267311,0.058109752833843],[0.0069644688628614,-0.0036067822948098,0.0045294957235456],[-0.089300692081451,0.015538228675723,0.062152218073606]],[[-0.050783473998308,-0.032212279736996,-0.01156759262085],[-0.022048974409699,-0.012167144566774,0.034504283219576],[-0.012611770071089,0.027745297178626,-0.041299622505903]],[[-0.044969949871302,-0.052262388169765,-0.084411710500717],[0.079863786697388,0.021011235192418,-0.0696861743927],[-0.075374476611614,-0.064053773880005,-0.070383489131927]],[[0.054815080016851,0.035194464027882,0.036815349012613],[-0.057316605001688,0.039608459919691,0.015336546115577],[-0.05191783234477,-0.0032109131570905,0.080515079200268]],[[0.080992318689823,0.01118681114167,-0.065009906888008],[-0.025571875274181,-0.0087281251326203,0.029626095667481],[-0.038210034370422,0.0080679878592491,-0.020010598003864]],[[-0.013901381753385,-0.010334080085158,0.068074882030487],[0.031821262091398,0.082400590181351,-0.010206774808466],[-0.018730839714408,-0.0319001711905,-0.064853847026825]],[[0.029564706608653,-0.025346176698804,-0.0079910596832633],[-0.069219380617142,-0.050333853811026,0.0010774577967823],[-0.031141839921474,0.083509922027588,0.014657849445939]],[[0.044667277485132,-0.050189487636089,0.037546042352915],[-0.0037766320165247,0.012889172881842,-0.0024775562342256],[-0.018761713057756,-0.0083473073318601,0.018867518752813]],[[0.056444451212883,0.095135860145092,0.027409622445703],[0.0095480279996991,-0.023496577516198,0.0050872135907412],[-0.031221680343151,-0.06502341479063,-0.028041630983353]],[[0.07640577852726,-0.0069895838387311,-0.021577313542366],[0.087127842009068,-0.0011177253909409,-0.066171608865261],[0.04107553884387,-0.073249191045761,0.033238656818867]],[[0.024952802807093,0.088445298373699,-0.085511058568954],[0.062102537602186,-0.049310263246298,0.016475882381201],[-0.074735917150974,0.14607813954353,-0.089353568851948]],[[0.03333605825901,0.021490907296538,-0.16196335852146],[0.028480974957347,0.03374857455492,-0.054875247180462],[0.064912617206573,-0.021364159882069,-0.04167053475976]],[[-0.11467216163874,-0.084667079150677,0.021908598020673],[-0.075379364192486,0.0074050133116543,-0.04041787609458],[-0.062166955322027,-0.059122953563929,0.0047063110396266]],[[-0.031900852918625,-0.017143713310361,0.022361919283867],[-0.0086026005446911,-0.052476435899734,-0.018873706459999],[0.028648775070906,-0.020712681114674,0.010865698568523]],[[0.0068674362264574,0.013199045322835,0.1053281724453],[0.06298616528511,0.0088048381730914,-0.061095766723156],[0.088511072099209,0.011123131029308,-0.024196518585086]],[[0.0041972361505032,-0.060019508004189,0.028109237551689],[-0.025550916790962,-0.030412623658776,0.047862641513348],[-0.0062399497255683,0.017084712162614,0.02883667498827]],[[0.0036147180944681,-0.033866599202156,0.028410851955414],[-0.029837053269148,-0.003289274405688,-0.083225354552269],[0.029427293688059,-0.015833331272006,0.0015092890243977]],[[0.012279186397791,0.047739055007696,0.086430408060551],[0.013452325947583,-0.060017567127943,-0.011581192724407],[-0.0022687560413033,0.03986069560051,0.0904486104846]],[[0.051220048218966,0.0020419051870704,-0.074390456080437],[0.053254965692759,-0.036348778754473,0.005852626170963],[-0.016419468447566,0.12788613140583,-0.0093733705580235]],[[-0.057750537991524,-0.0070394626818597,-0.042003944516182],[0.0045312321744859,-8.5819250671193e-05,-0.01849496550858],[-0.021319523453712,0.00056678871624172,-0.046353045850992]],[[0.038191441446543,-0.075798586010933,0.010002067312598],[-0.03202011808753,-0.086962185800076,0.046476136893034],[-0.035737916827202,-0.033100683242083,-0.0066255494020879]],[[-0.064575247466564,-0.096703045070171,-0.04058676213026],[-0.030429068952799,0.065843559801579,-0.093534648418427],[0.026413399726152,-0.056637227535248,-0.059922732412815]],[[-0.065465368330479,-0.1112756729126,-0.030317209661007],[-0.030419588088989,0.071408055722713,-0.02233799919486],[-0.012037854641676,-0.088539928197861,0.016574304550886]],[[-0.0028725862503052,0.030622543767095,0.024502431973815],[0.022616455331445,0.097928680479527,-0.0035044879186898],[-0.084431909024715,0.0027155207935721,-0.038486503064632]],[[-0.046633120626211,-0.022616498172283,0.026269709691405],[-0.029259251430631,-0.064287073910236,0.043886944651604],[-0.061197582632303,-0.013734510168433,0.11072837561369]],[[-0.017725521698594,-0.11535703390837,-0.038616959005594],[0.024707464501262,-0.017701169475913,0.12476982921362],[0.0022476327139884,0.047995209693909,0.024950716644526]],[[-0.029002539813519,0.068660415709019,-0.040182203054428],[-0.081360287964344,-0.0074317455291748,-0.01787305995822],[-0.023563656955957,0.010044423863292,-0.041635259985924]],[[0.01054953224957,-0.044591251760721,-0.072111003100872],[0.052819617092609,-0.029522029682994,-0.019491095095873],[-0.020760314539075,0.069807425141335,-0.034766674041748]],[[-0.033429116010666,-0.06997437775135,0.029020916670561],[0.012317221611738,-0.048977367579937,-0.094282194972038],[-0.03418755531311,0.028503596782684,0.026287609711289]],[[0.03453466668725,0.0090703004971147,-0.018751552328467],[-0.0082011772319674,-0.03692876547575,-0.0017600764986128],[-0.029106557369232,-0.078997701406479,-0.03909208253026]],[[0.031758029013872,-0.046475924551487,-0.023516228422523],[-0.10021221637726,0.013712901622057,0.065821945667267],[0.062963381409645,0.080006957054138,-0.028756627812982]],[[-0.094856150448322,-0.016019225120544,0.089457705616951],[0.030772032216191,-0.030981289222836,-0.034899886697531],[0.042366810142994,-0.034627746790648,-0.018624322488904]],[[-0.048201911151409,-0.014449161477387,0.041265659034252],[0.057815968990326,0.02591260150075,0.018373230472207],[-0.062271054834127,-0.00031228020088747,-0.028157874941826]],[[0.032350905239582,-0.064871609210968,-0.0020870331209153],[-0.0064770807512105,-0.0067717558704317,-0.046076774597168],[0.0080853160470724,-0.040093366056681,0.053569197654724]],[[0.044036023318768,0.030021000653505,-0.13695205748081],[-0.074918240308762,0.029440714046359,-0.029175946488976],[-0.091854274272919,0.068388924002647,0.046338297426701]],[[0.13959577679634,-0.11059198528528,-0.043828763067722],[-0.0084517430514097,0.022875525057316,0.05387881398201],[-0.044000096619129,-0.071398943662643,-0.029923209920526]],[[0.022030355408788,0.041476096957922,0.065318785607815],[0.12852512300014,0.016383659094572,-0.041734118014574],[-0.059538889676332,-0.0050987615250051,-0.029324855655432]],[[-0.021758638322353,0.024368597194552,0.018784198909998],[-0.038961339741945,0.044842965900898,0.083725862205029],[0.033916529268026,-0.0055918591096997,-0.025300372391939]],[[0.068432070314884,0.054411843419075,0.0084064789116383],[-0.064997844398022,0.011945242062211,0.010837037116289],[-0.025667905807495,0.085011571645737,-0.040658604353666]],[[0.10335831344128,0.0064336359500885,0.007575596217066],[-0.0072903661057353,0.0020237830467522,-0.047904923558235],[-0.048181723803282,-0.021831192076206,0.02235172688961]],[[-0.016850849613547,-0.013209607452154,0.010404984466732],[-0.017243037000299,0.0059583112597466,-0.022794922813773],[-0.07278111577034,0.017347661778331,0.036867510527372]],[[0.10581708699465,0.045694027096033,0.013009080663323],[0.034662265330553,-0.086893297731876,-0.039990328252316],[-0.013176186941564,0.026158796623349,0.051382798701525]],[[0.015717048197985,-0.027512205764651,-0.031711813062429],[-0.043314848095179,0.014675857499242,0.009321422316134],[-0.050949200987816,0.05488496273756,0.024953512474895]],[[-0.022525468841195,-0.0060725542716682,-0.02710760384798],[-0.054271701723337,-0.037383902817965,-0.033210501074791],[-0.16278269886971,0.030127581208944,-0.042078897356987]],[[0.039463464170694,0.020940633490682,-0.12516911327839],[0.039651330560446,-0.075447335839272,-0.064457513391972],[0.048424690961838,-0.0095452256500721,-0.0039976523257792]],[[0.097961477935314,-0.024541404098272,-0.0013665646547452],[0.084584757685661,-0.015543370507658,0.033280603587627],[-0.011778635904193,-0.015894090756774,-0.069095738232136]],[[-0.13304910063744,0.011220119893551,-0.065081372857094],[0.016700565814972,-0.05611164867878,-0.047968421131372],[0.035342343151569,0.070371054112911,-0.05365040525794]],[[-0.0080076139420271,0.025284061208367,-0.0036210238467902],[0.067094288766384,0.054587598890066,0.026837538927794],[0.051900397986174,-0.07141488045454,0.062301650643349]],[[0.020903626456857,0.04898776486516,-0.05534427985549],[-0.076678082346916,0.10227639973164,-0.040488343685865],[0.033398043364286,0.15116588771343,0.063754051923752]],[[-0.082007884979248,-0.10240612179041,0.014154721051455],[-0.083432778716087,-0.091467402875423,-0.087768234312534],[-0.06151420250535,0.0073056444525719,-0.046118319034576]],[[0.097801141440868,0.051615506410599,-0.10221313685179],[-0.037213653326035,0.029856082051992,0.028681987896562],[0.08168962597847,-0.084002092480659,-0.039552759379148]],[[-0.053542025387287,0.0241958219558,0.021632365882397],[0.04326468333602,-0.063146986067295,0.018546769395471],[0.010361428372562,-0.042754519730806,-0.095460705459118]],[[0.070931032299995,-0.020882861688733,-0.055036928504705],[0.011492473073304,0.053111024200916,0.10116095840931],[0.0017709946259856,0.10325683653355,-0.033358700573444]],[[0.069888062775135,0.097235396504402,0.072487555444241],[-0.041408807039261,-0.0054638367146254,0.026813142001629],[-0.037079051136971,0.02610488422215,0.015000751242042]],[[0.062614932656288,0.032846957445145,0.043232936412096],[0.063287183642387,-0.087379641830921,-0.061361245810986],[-0.04338001832366,-0.039597406983376,0.017794104292989]],[[0.034596733748913,0.020396200940013,-0.086433485150337],[-0.056885309517384,0.010072520002723,-0.11253403872252],[-0.065120227634907,-0.037190306931734,0.078934386372566]],[[-0.00014951749471948,-0.00022776941477787,-0.021210642531514],[0.030403614044189,0.0061009996570647,-0.019832748919725],[-0.0057288277894258,0.0039103012531996,0.080898523330688]],[[0.09839653223753,-0.090106062591076,-0.11400920897722],[0.0065491120330989,-0.039009783416986,-0.0229845456779],[0.0090405521914363,-0.030346266925335,0.004300766158849]],[[0.058498341590166,0.089376352727413,-0.035554870963097],[-0.018754478543997,0.016608694568276,-0.082104369997978],[-0.091209232807159,0.033165317028761,0.033409211784601]],[[0.11804714053869,0.03276052698493,-0.037392351776361],[-0.035647816956043,-0.021278012543917,-0.028385328128934],[-0.090261198580265,0.008090234361589,0.076701872050762]],[[-0.06231864541769,0.028455168008804,0.055174380540848],[-0.098071582615376,-0.056803844869137,-0.010914858430624],[-0.12606929242611,0.037442494183779,-0.0014191061491147]],[[-0.10090406239033,0.063344433903694,-0.0078959483653307],[-0.024191234260798,-0.12398248910904,0.01565670594573],[0.072911515831947,0.064831115305424,0.038870241492987]],[[0.047315776348114,-0.052658315747976,-0.029574166983366],[0.05826023966074,0.02797313965857,0.017191564664245],[0.05185504257679,0.067223973572254,0.036796454340219]],[[-0.0087933409959078,-0.041691474616528,-0.02081448957324],[-0.063374012708664,-0.0066038467921317,-0.048175048083067],[0.0098131643608212,0.054490260779858,-0.011098843999207]],[[0.0076430197805166,0.17575800418854,0.014960148371756],[0.17530737817287,-0.0026783256325871,-0.062685891985893],[0.077164106070995,-0.023070819675922,0.0091400574892759]],[[-0.0030333970207721,0.066501319408417,0.019680522382259],[0.1123865544796,0.072289109230042,-0.0008567328331992],[-0.031197043135762,-0.01945573091507,0.017444141209126]],[[-0.068777807056904,-0.021493842825294,-0.075780339539051],[0.0047980370000005,-0.04559313878417,-0.08509773761034],[-0.037150718271732,-0.015420502051711,-0.10910184681416]],[[-0.044973067939281,0.030710583552718,0.0098153008148074],[0.043558977544308,0.018421666696668,-0.024957932531834],[-0.029376968741417,0.036982193589211,-0.04500475153327]],[[-0.1109219416976,-0.071934759616852,0.00097725971136242],[-0.068351328372955,0.048384979367256,0.095518499612808],[0.06635694205761,-0.031359288841486,0.017486419528723]],[[0.027273433282971,0.024266473948956,0.021164340898395],[-0.03409182280302,-0.038350753486156,0.057682652026415],[-0.00040095965960063,-0.015872830525041,-0.087733015418053]],[[0.048997554928064,-0.016284240409732,-0.036738935858011],[0.068620815873146,-0.032251004129648,0.03466372936964],[-0.015718078240752,-0.049705069512129,0.14549446105957]],[[0.0054183010943234,-0.031154502183199,-0.029835421591997],[-0.01366666238755,0.026912217959762,-0.081733167171478],[-0.060604050755501,-0.022625589743257,-0.098013266921043]],[[-0.00090956565691158,-0.062002122402191,0.060677878558636],[0.0020247991196811,-0.066666133701801,-0.032083339989185],[0.066668994724751,0.078510336577892,0.035009302198887]],[[-0.0020878240466118,-0.0057977121323347,-0.0018248285632581],[0.062807828187943,0.021434910595417,-0.027526091784239],[-0.10682015866041,0.0036850033793598,0.066483795642853]],[[-0.021402724087238,0.014737899415195,0.040202565491199],[0.048915784806013,0.036933492869139,0.034234561026096],[0.047123335301876,-0.010773791000247,0.007919036783278]],[[0.024970173835754,-0.065305531024933,0.042712721973658],[-0.039738684892654,-0.00098843651358038,-0.03863013163209],[0.037012536078691,-0.018211916089058,-0.021399794146419]],[[0.1336622685194,0.068421751260757,0.0095738116651773],[0.033621542155743,0.0051783500239253,-0.01324129011482],[-0.003030635882169,-0.010177534073591,-0.072460286319256]],[[0.085635349154472,0.032339133322239,0.060687385499477],[0.018985573202372,0.073584102094173,-0.050427719950676],[0.032518975436687,-0.033589072525501,-0.0042208773083985]],[[-0.013574492186308,-0.089816249907017,-0.013105376623571],[0.00016723125008866,0.018926559016109,0.0094008175656199],[-0.0095468536019325,0.040004052221775,-0.0076977666467428]],[[0.024030352011323,0.097239919006824,0.09768558293581],[-0.0096220709383488,-0.070137195289135,-0.0057792575098574],[-0.03598153963685,0.042040914297104,-0.07292428612709]],[[-0.027537299320102,0.018508482724428,0.015462534502149],[-0.036703824996948,0.022216314449906,-0.087487794458866],[0.1040333211422,0.048071786761284,0.016087926924229]],[[-0.073572345077991,-0.010673022828996,0.011518863961101],[-0.020333314314485,-0.045287176966667,-0.033993642777205],[0.046703986823559,0.011149050667882,0.054932255297899]],[[-0.058992374688387,0.050787467509508,-0.032235398888588],[-0.0039747203700244,0.023068817332387,0.025409523397684],[-0.021620081737638,-0.039876259863377,-0.034142721444368]],[[0.030669294297695,0.019581515341997,0.040382750332355],[-0.030450845137239,-0.036548309028149,0.053239725530148],[-0.078664347529411,-0.061543803662062,-0.018156118690968]],[[0.026667762547731,0.057455360889435,0.068899922072887],[0.034315153956413,0.085050776600838,0.059392563998699],[0.061952367424965,-0.020347258076072,-0.04850347712636]],[[0.02755107358098,-0.012277093715966,0.0082584843039513],[0.043059412389994,0.0015645793173462,0.02533365227282],[-0.049337118864059,-0.072492152452469,0.035189229995012]],[[-0.095045857131481,-0.097344979643822,-0.038645900785923],[-0.074617438018322,-0.027574736624956,-0.080097325146198],[0.019089454784989,0.066670477390289,0.057745549827814]],[[0.043282598257065,0.0080620190128684,0.027769781649113],[0.020698234438896,0.032288461923599,0.052565783262253],[0.10644346475601,-0.049339264631271,-0.066229164600372]],[[0.0067181494086981,0.027773169800639,-0.035715326666832],[-0.050742276012897,-0.067110732197762,-0.012993034906685],[0.017313813790679,0.022425472736359,0.00023001155932434]],[[0.051513727754354,0.022087309509516,-0.0035704516340047],[0.029498469084501,-0.012093875557184,0.0269965082407],[0.072922296822071,0.050381977111101,-0.021425584331155]],[[-0.031567689031363,0.038970187306404,-0.056010372936726],[0.026464788243175,-0.026373481377959,0.021782923489809],[-0.066418543457985,-0.02011670358479,-0.0084979915991426]],[[0.032642874866724,-0.00050656805979088,-0.027800653129816],[-0.041340485215187,0.03619547188282,0.03739046305418],[0.0085060931742191,0.083478979766369,0.1208822503686]]],[[[-0.04566302895546,0.14806245267391,0.049675934016705],[0.02902152761817,-0.056914176791906,-0.12140967696905],[0.039360903203487,-0.1367799192667,-0.062421232461929]],[[-0.0017719723982736,-0.084072329103947,-0.012961114756763],[0.096154078841209,-0.033889405429363,0.076167613267899],[0.024796154350042,0.034291956573725,0.1584234982729]],[[0.096585966646671,-0.034888833761215,-0.059249918907881],[0.074264980852604,-0.068674609065056,0.038091141730547],[-0.11864475905895,0.0026726655196398,0.12193375825882]],[[0.016485791653395,-0.12018218636513,0.010333821177483],[0.07176623493433,-0.06187479197979,-0.061857033520937],[-0.01311048772186,0.11757373064756,-0.12074352800846]],[[0.25489592552185,0.015807408839464,-0.00082836067304015],[0.0078153312206268,-0.11209492385387,-0.069108940660954],[-0.018328512087464,0.034988261759281,-0.049846820533276]],[[-0.053463127464056,-0.092200540006161,-0.036206610500813],[0.17906183004379,0.051569547504187,-0.06162391975522],[-0.053621530532837,0.0083952201530337,0.035776074975729]],[[0.046486143022776,-0.041697051376104,0.0080475909635425],[0.0075392322614789,0.081743724644184,0.034973256289959],[0.0027068776544183,-0.049722455441952,0.05725996568799]],[[-0.071915864944458,-0.22199745476246,-0.10210508108139],[-0.025718796998262,-0.073381192982197,0.17705217003822],[-0.01072726584971,-0.01032364461571,0.022420538589358]],[[-0.045694999396801,-0.0061508822254837,0.041427485644817],[-0.022429192438722,-0.079735338687897,0.093006648123264],[-0.078074522316456,0.034817766398191,-0.025340193882585]],[[-0.085479155182838,-0.078231886029243,0.11503548920155],[-0.0226377453655,0.0672936886549,0.013043076731265],[0.060558751225471,-0.0077559021301568,-0.13516107201576]],[[-0.063168026506901,-0.12669494748116,-0.14478991925716],[0.14550495147705,0.05050390586257,0.17820823192596],[-0.025120289996266,0.096599772572517,0.026789298281074]],[[0.03372223302722,0.15829110145569,0.21472296118736],[-0.018332783132792,0.075274422764778,0.16584978997707],[0.05134491622448,-0.10508572310209,-0.10405490547419]],[[-0.01333430968225,-0.022318134084344,0.0046215089969337],[-0.018764773383737,-0.12537249922752,0.023027980700135],[-0.10226479917765,-0.013192724436522,0.14778037369251]],[[-0.022542910650373,0.013760014437139,0.014948070049286],[-0.075446270406246,0.016064118593931,0.058878738433123],[-0.089484415948391,-0.018254946917295,0.071982622146606]],[[-0.13489016890526,-0.03992123901844,-0.046060912311077],[0.045131538063288,0.062468968331814,0.089382253587246],[0.027729783207178,0.034270200878382,0.13738793134689]],[[0.073764942586422,-0.063784070312977,-0.014722456224263],[0.061605274677277,-0.012467809952796,0.054070640355349],[0.089084915816784,0.091279163956642,-0.019674511626363]],[[-0.024703197181225,-0.017735287547112,0.16327822208405],[0.030071001499891,-0.041868701577187,-0.023855734616518],[0.058587655425072,-0.17359903454781,-0.11592834442854]],[[0.012932692654431,-0.026958936825395,0.063490092754364],[-0.046672888100147,-0.054130639880896,0.14938527345657],[-0.0010624716524035,-0.084094278514385,0.15772320330143]],[[-0.021817944943905,0.064266994595528,0.023076323792338],[0.10863237828016,0.013527186587453,-0.068050473928452],[-0.10712533444166,-0.20931258797646,-0.088507242500782]],[[-0.0079682013019919,0.035569082945585,0.094733141362667],[-0.20695486664772,-0.14373999834061,0.10806474089622],[-0.016570281237364,-0.025267427787185,0.064267210662365]],[[0.027735950425267,-0.094280034303665,-0.00780697632581],[-0.17300818860531,-0.19009678065777,-0.097169116139412],[-0.072101905941963,0.026206914335489,0.011146196164191]],[[-0.030262343585491,-0.072046011686325,-0.041571844369173],[-0.13386042416096,-0.0010467482497916,0.054100584238768],[0.034687936306,0.15129812061787,-0.02666893415153]],[[0.017540194094181,-0.028508512303233,-0.073561079800129],[-0.096385307610035,-0.030753096565604,0.0049289492890239],[0.04602412506938,0.11996155232191,0.034178204834461]],[[-0.031814202666283,-0.20249941945076,-0.028704637661576],[0.13723127543926,-0.040723271667957,-0.06882655620575],[0.082027241587639,0.10318910330534,0.0018194697331637]],[[-0.081550471484661,-0.065772578120232,-0.078213036060333],[0.074422836303711,-0.028109293431044,0.011076642200351],[0.0033022821880877,0.12417716532946,-0.053226195275784]],[[-0.010666359215975,0.044829644262791,0.071716837584972],[-0.0018070784863085,-0.057298045605421,-0.054889164865017],[0.04642091691494,-0.078542202711105,-0.16710130870342]],[[-0.067421466112137,-0.075450740754604,0.052814930677414],[-0.0091407867148519,-0.046568389981985,0.13179011642933],[-0.13336354494095,0.010230243206024,0.047640338540077]],[[0.0037657439243048,-0.073084101080894,-0.042110685259104],[0.058152627199888,0.041770979762077,0.1035765632987],[-0.045686203986406,0.028092250227928,-0.015821807086468]],[[0.012146489694715,0.037858597934246,-0.018149241805077],[-0.060666449368,0.084116198122501,0.030462263152003],[0.045745301991701,0.0079172980040312,0.029445404186845]],[[0.061225391924381,0.13130231201649,0.094728529453278],[0.085639886558056,-0.092250160872936,0.016297273337841],[0.085356153547764,-0.028470546007156,-0.050290118902922]],[[0.017008874565363,0.076395392417908,-0.0021184743382037],[0.11234294623137,0.049008540809155,-0.081399403512478],[0.041063871234655,0.052338641136885,0.038010597229004]],[[0.07918693870306,0.089436791837215,-0.052771419286728],[0.010363285429776,-0.084584951400757,-0.024149589240551],[0.048856139183044,-0.053820885717869,0.021776607260108]],[[0.17208854854107,0.017528269439936,0.035865385085344],[-0.072074800729752,0.063155204057693,-0.11442146450281],[-0.021717958152294,0.020443830639124,0.09081257879734]],[[0.0076359524391592,0.023053683340549,-0.0044003631919622],[-0.051461461931467,-0.089908339083195,-0.016188938170671],[0.04111735150218,-0.091225437819958,0.062898986041546]],[[-0.13428278267384,0.0053321607410908,-0.11080950498581],[-0.15088342130184,-0.12220809608698,-0.078198246657848],[-0.11702301353216,-0.13360807299614,0.15959873795509]],[[0.017750760540366,-0.045607198029757,-0.017309797927737],[-0.21895463764668,-0.24032835662365,-0.21258248388767],[-0.22285966575146,-0.17085279524326,-0.15504141151905]],[[-0.1281810849905,0.045007310807705,0.079417414963245],[0.018800761550665,0.21960513293743,0.13317775726318],[0.083394721150398,0.073231421411037,-0.058987226337194]],[[0.0062608420848846,-0.070255026221275,-0.18592390418053],[-0.019488984718919,0.013555913232267,-0.16232070326805],[-0.12266478687525,0.084063746035099,0.097716018557549]],[[-0.10168068856001,-0.035244718194008,-0.12764565646648],[0.13277833163738,-0.035229478031397,-0.026655239984393],[-0.0060748914256692,0.021193573251367,0.048272367566824]],[[0.034209348261356,0.020567031577229,-0.092862986028194],[0.075551576912403,-0.010003817267716,0.09829019755125],[0.00041454020538367,-0.094416655600071,-0.095541104674339]],[[0.10051937401295,-0.055819232016802,-0.020375359803438],[-0.19085682928562,-0.11748803406954,-0.0090143401175737],[-0.040722515434027,0.05523544549942,0.098621621727943]],[[-0.10925400257111,-0.096729777753353,0.036784496158361],[-0.093479573726654,-0.14199331402779,0.0061784218996763],[0.021016685292125,0.031285967677832,0.11314626038074]],[[-0.012819766998291,0.073585540056229,0.041585333645344],[-0.059023480862379,0.011258045211434,0.1231711730361],[0.025787487626076,-0.14563804864883,-0.046168617904186]],[[-0.014116640202701,-0.001822391175665,-0.049772128462791],[-0.081383652985096,-0.060885936021805,-0.070165634155273],[-0.11308528482914,0.012108445167542,0.020636836066842]],[[0.18695737421513,0.2187215834856,0.045537319034338],[-0.095125146210194,0.013308200985193,-0.067126706242561],[-0.09981495141983,-0.11852273344994,-0.14484991133213]],[[0.085551492869854,0.056460347026587,0.09413530677557],[0.016019310802221,-0.00046115371515043,-0.13369634747505],[0.059376064687967,0.089178182184696,-0.16062296926975]],[[-0.13005375862122,-0.15308183431625,0.05289988592267],[-0.062454763799906,0.025895452126861,0.089910790324211],[0.040862657129765,0.11148773878813,-0.11937549710274]],[[0.057384744286537,0.0956015214324,0.091815799474716],[0.11959857493639,-0.016252670437098,-0.073050498962402],[-0.022497622296214,0.0032041422091424,0.038565147668123]],[[-0.10271643847227,-0.14471612870693,-0.017866786569357],[0.082655660808086,0.070305563509464,-0.058377545326948],[0.056615702807903,0.0017298611346632,-0.007606138009578]],[[-0.0057719028554857,-0.047894511371851,-0.0085320249199867],[0.0085516786202788,-0.10973390936852,0.0081602288410068],[-0.0051440605893731,-0.081813715398312,0.026390045881271]],[[0.010353786870837,0.035582255572081,0.033772278577089],[0.13113869726658,0.13792562484741,-0.13620889186859],[0.077537499368191,0.13101333379745,-0.14762422442436]],[[-0.028977330774069,-0.012273201718926,-0.070887930691242],[-0.081529840826988,-0.06518891453743,-0.11238557100296],[-0.023034492507577,-0.092774249613285,0.090684555470943]],[[-0.12436424195766,-0.1696560382843,-0.15109175443649],[-0.086933992803097,0.098856940865517,0.0023654676042497],[-0.071455419063568,-0.078350909054279,-0.12395134568214]],[[0.09325198829174,0.0040668374858797,0.051498144865036],[0.026652911677957,-0.087423466145992,0.15381932258606],[0.11858823150396,0.022048065438867,-0.08251766115427]],[[-0.10592088103294,-0.030049355700612,-0.019707879051566],[-0.16781023144722,0.036248326301575,0.030715055763721],[-0.00072268449002877,0.22368167340755,-0.036798398941755]],[[-0.18116843700409,-0.14687699079514,-0.12234592437744],[-0.12559361755848,-0.01914793625474,-0.14713773131371],[0.076971404254436,-0.019784616306424,0.025190550833941]],[[0.060771457850933,-0.083450801670551,-0.17405761778355],[-0.071007318794727,-0.12354180961847,-0.15192571282387],[-0.15172553062439,-0.0703115016222,0.10779246687889]],[[-0.010566940531135,-0.0035011565778404,-0.034694705158472],[0.04110087454319,-0.023372195661068,-0.10035369545221],[-0.091585397720337,-0.22318038344383,-0.097972325980663]],[[-0.0072391284629703,-0.031412120908499,0.050432808697224],[-0.002084206789732,-0.071818776428699,-0.13666914403439],[-0.012968381866813,-0.022348074242473,-0.02817471139133]],[[0.068763978779316,0.035442024469376,0.13935314118862],[-0.022332392632961,-0.074861571192741,-0.051225669682026],[-0.12868495285511,-0.005327389575541,0.067441575229168]],[[-0.060394458472729,-0.13342486321926,0.010991348885],[-0.03039631433785,-0.13307954370975,-0.11866231262684],[0.0045336498878896,0.012201712466776,-0.17106038331985]],[[-0.029362913221121,-0.025752726942301,0.0019656051881611],[-0.20582535862923,0.05966854467988,0.064899481832981],[0.059471718966961,-0.077738240361214,-0.046768352389336]],[[0.081479325890541,-0.052806559950113,-0.16236931085587],[0.088894262909889,0.05356215685606,0.04235727339983],[-0.16230940818787,-0.10116624832153,-0.17652899026871]],[[0.025860356166959,-0.082129083573818,0.056632705032825],[0.20883192121983,-0.068940706551075,0.04313838109374],[0.052945744246244,0.026864664629102,-0.015710975974798]],[[-0.17498713731766,-0.051444187760353,-0.096455067396164],[-0.12295784056187,-0.081978864967823,-0.20716780424118],[-0.047956362366676,0.058199465274811,0.018213029950857]],[[-0.06286907941103,0.043046124279499,-0.11280093342066],[0.029133403673768,-0.07430661469698,-0.11063101887703],[0.0053619197569788,-0.11476597189903,-0.0060692117549479]],[[-0.13218605518341,-0.012044216506183,-0.035910245031118],[-0.036077231168747,0.10068748146296,-0.028454292565584],[0.16239647567272,-0.00082326924894005,-0.098842479288578]],[[-0.21540802717209,-0.033795710653067,0.096146680414677],[-0.023849675431848,-0.15676988661289,-0.010547877289355],[0.063471578061581,0.02775825932622,-0.089246176183224]],[[-0.1800874620676,-0.067405968904495,0.10270371288061],[0.023678621277213,-0.1382310539484,0.026752311736345],[-0.1067950874567,-0.19579449295998,0.03477218747139]],[[0.012676687911153,-0.018481956794858,-0.0098907938227057],[0.059232089668512,-0.035992532968521,0.089228823781013],[-0.039009355008602,-0.20733085274696,-0.25414234399796]],[[-0.12398254871368,-0.075512170791626,-0.18400582671165],[-0.036488313227892,-0.10555265843868,0.17937012016773],[-0.055777776986361,0.031545929610729,-0.019826624542475]],[[-0.0010818596929312,-0.011722307652235,0.05454284325242],[-0.075195461511612,-0.028081316500902,0.069798827171326],[-0.065718211233616,-0.032891314476728,-0.045600563287735]],[[0.0047253449447453,0.15725150704384,0.042158599942923],[0.13481870293617,-0.11876083165407,-0.16675338149071],[-0.013553555123508,-0.18503394722939,0.012806762941182]],[[-0.06635769456625,-0.10118409991264,-0.011485023424029],[-0.10804102569818,0.014197751879692,0.033787693828344],[-0.10118425637484,-0.091421194374561,-0.053621180355549]],[[0.043660182505846,0.18954902887344,0.12439681589603],[-0.20103059709072,0.00084022316150367,0.13319720327854],[-0.11533421278,-0.18898248672485,-0.071650117635727]],[[-0.11037065833807,0.021551739424467,0.12262415140867],[-0.13914130628109,-0.13552729785442,0.17519335448742],[-0.076343663036823,-0.15672606229782,0.060632396489382]],[[-0.003875877475366,-0.038007877767086,-0.20492254197598],[-0.032384689897299,0.19835540652275,0.016885237768292],[-0.010498340241611,-0.018282528966665,0.0011791738215834]],[[0.029938317835331,0.0023723342455924,0.081722214818001],[-0.15130576491356,-0.061920396983624,-0.025416072458029],[-0.20321461558342,-0.10059309005737,-0.032602835446596]],[[-0.043475788086653,0.020461024716496,0.1163095086813],[0.1001094058156,0.14968031644821,0.074911661446095],[-0.056664377450943,-0.018664272502065,0.020484177395701]],[[-0.033328127115965,0.1259340941906,0.066637106239796],[-0.17916770279408,-0.090863861143589,0.11807961016893],[-0.066070780158043,-0.27310132980347,-0.013495627790689]],[[0.026095459237695,0.022460892796516,0.025397496297956],[-0.023388845846057,-0.023727063089609,-0.041188854724169],[-0.1177906692028,0.11797101795673,0.050604768097401]],[[0.049952123314142,0.047313477844,-0.050560597330332],[0.02554558031261,0.14482428133488,0.082164950668812],[-0.16995599865913,0.023206917569041,0.15155667066574]],[[-0.13786797225475,-0.080081678926945,0.029232693836093],[-0.086441516876221,-0.069334656000137,-0.028169659897685],[0.030858963727951,0.052096139639616,0.04638908430934]],[[-0.022193761542439,-0.023216012865305,-0.017724899575114],[0.038150582462549,-0.03613668680191,-0.0095570357516408],[-0.13331459462643,-0.032571233808994,-0.060973409563303]],[[-0.01042852550745,-0.09302544593811,-0.014314795844257],[-0.0040008495561779,0.19254486262798,-0.044117167592049],[0.041959036141634,0.047808792442083,-0.14823819696903]],[[-0.065689012408257,0.17832919955254,0.07707442343235],[-0.2028643488884,-0.098586447536945,-0.080594971776009],[-0.13569974899292,-0.074283055961132,-0.099950917065144]],[[-0.024677075445652,-0.13723109662533,-0.058407101780176],[0.054200429469347,-0.0053627206943929,0.063572205603123],[0.13103197515011,0.044416461139917,0.07053791731596]],[[-0.07079191505909,0.11208228766918,-0.05376809835434],[-0.0096109202131629,-0.012306830845773,-0.024095017462969],[0.020866500213742,0.1219209805131,0.006280361674726]],[[-0.096146620810032,0.042170893400908,0.098204180598259],[0.040729872882366,0.13990046083927,0.056878965348005],[0.012607782147825,-0.0011755989398807,-0.0034092545975]],[[0.12789569795132,-0.019720453768969,-0.078044675290585],[-0.012570502236485,-0.1524323374033,-0.029000664129853],[-0.099568925797939,-0.10679902136326,0.055951364338398]],[[0.069813758134842,-0.10780171304941,-0.13960605859756],[0.036186341196299,-0.075517691671848,-0.042577013373375],[0.033795904368162,0.14439935982227,0.099196024239063]],[[0.036681715399027,0.047779876738787,0.010945666581392],[-0.12460286170244,-0.038390606641769,-0.041957322508097],[0.0065575870685279,-0.15278987586498,-0.072517327964306]],[[0.010183123871684,-0.055288672447205,-0.055168341845274],[0.13272488117218,-0.057469192892313,0.0093563115224242],[-0.0065428861416876,0.026596713811159,-0.054124433547258]],[[0.071344539523125,-0.10158316046,-0.031700741499662],[-0.05807413905859,-0.14557808637619,-0.13699774444103],[-0.082125432789326,-0.14322349429131,-0.043219491839409]],[[-0.023183058947325,-0.079215869307518,0.04301030933857],[-0.26674368977547,-0.086329728364944,0.088228784501553],[-0.22000882029533,0.11785779893398,0.039994277060032]],[[0.03394478186965,0.090825967490673,-0.10044250637293],[-0.097834721207619,0.023399012163281,0.12769745290279],[0.019564805552363,0.097376309335232,0.025433942675591]],[[0.028380157426,-0.19060246646404,-0.088352717459202],[0.068304404616356,-0.012318882159889,-0.024347804486752],[-0.028345042839646,0.045773092657328,0.10616192221642]],[[0.0018304603872821,-0.040504857897758,0.17033977806568],[0.05487160384655,0.05593428760767,0.0045432345941663],[0.11953795701265,0.073150008916855,0.087178252637386]],[[0.10870815068483,0.0602126121521,0.030706990510225],[-0.00190274650231,0.048382539302111,-0.062531158328056],[0.059191737323999,-0.0030001329723746,-0.091642305254936]],[[0.051424603909254,0.077004916965961,0.0045223869383335],[0.10772179812193,-0.021495133638382,-0.038201805204153],[0.049558408558369,-0.056972853839397,-0.024291781708598]],[[0.12178804725409,0.06670705229044,-0.070121899247169],[0.061815563589334,0.026246845722198,-0.14331313967705],[0.057483620941639,-0.039445716887712,-0.17489950358868]],[[-0.023293238133192,-0.02151345834136,0.012112298980355],[0.00296770199202,-0.10151821374893,-0.07480776309967],[-0.07366544008255,-0.11308174580336,-0.051441162824631]],[[-0.085129141807556,0.038870017975569,-0.036418300122023],[-0.053371086716652,0.060158438980579,-0.04310554638505],[-0.099871747195721,-0.04777392745018,0.066067203879356]],[[-0.015958281233907,0.024047907441854,-0.054572187364101],[0.085795141756535,0.12293954193592,-0.066569678485394],[0.035679709166288,-0.029451737180352,-0.13779392838478]],[[-0.033641148358583,-0.01764951646328,0.1498182117939],[-0.078765973448753,-0.092139862477779,0.039933312684298],[0.081223055720329,0.0056753004901111,-0.20103779435158]],[[-0.092666320502758,-0.1233673542738,-0.079378463327885],[0.024940557777882,0.066794626414776,-0.11807598173618],[-0.03384055569768,0.084966585040092,0.15370082855225]],[[-0.022559698671103,-0.0048168082721531,0.13615950942039],[-0.12060783803463,-0.20228800177574,0.10509485006332],[-0.057706031948328,-0.083826676011086,0.09621798992157]],[[-0.048225983977318,0.019516933709383,0.015812918543816],[-0.014440517872572,-0.13631255924702,0.035932339727879],[-0.04799821600318,0.046852964907885,0.072963818907738]],[[0.16682015359402,-0.17463883757591,-0.057963326573372],[0.04377444088459,-0.15289705991745,-0.05173896253109],[0.16425865888596,0.17948386073112,0.11717290431261]],[[0.030940784141421,-0.0582365244627,-0.12654086947441],[0.043336473405361,-0.057425566017628,-0.090477257966995],[0.034844994544983,-0.021127890795469,-0.031125551089644]],[[-0.078647650778294,0.12466531246901,-0.0024339114315808],[0.00084061553934589,0.19788397848606,0.036836117506027],[-0.027289876714349,0.0295365806669,-0.031439188867807]],[[-0.055523224174976,-0.022681627422571,0.0087706167250872],[-0.037447527050972,0.09295504540205,0.04186199977994],[-0.10283310711384,-0.015862518921494,-0.068567045032978]],[[0.04489754140377,-0.0014442425454035,-0.0054015871137381],[-0.018039798364043,0.05226967856288,0.0074443956837058],[-0.28168711066246,-0.037068236619234,0.011705624870956]],[[-0.060919508337975,-0.0059798490256071,-0.055254064500332],[-0.0018510869704187,0.044768981635571,-0.022096887230873],[-0.017348596826196,-0.087317079305649,0.0025460615288466]],[[-0.0017054725904018,-0.081171192228794,0.097479723393917],[0.070866107940674,0.028516285121441,0.093849681317806],[-0.0049801031127572,0.0063738934695721,0.041363850235939]],[[0.0061648949049413,0.1035955324769,0.036386393010616],[0.0028122579678893,0.096257388591766,0.031837366521358],[-0.095314264297485,-0.044509880244732,-0.16413040459156]],[[-0.10660068690777,0.074329130351543,0.0051215011626482],[0.028343701735139,0.032193198800087,0.014548007398844],[0.11875296384096,0.069693110883236,0.061769921332598]],[[-0.086926735937595,-0.021453404799104,-0.048693850636482],[-0.013040117919445,0.031786665320396,0.036868315190077],[0.054494433104992,-0.10236453264952,-0.12195564061403]],[[0.043942335993052,0.0043669086880982,-0.090757884085178],[0.032209783792496,-0.073359079658985,0.0087727447971702],[0.0094730313867331,0.0019201665418223,-0.028915734961629]],[[0.033982183784246,0.089965581893921,0.042935654520988],[0.023370616137981,-0.10907717049122,-0.0036802391987294],[-0.0014748354442418,0.002051385352388,-0.062773264944553]],[[-0.017704889178276,0.074955612421036,0.12221765518188],[0.066766075789928,0.074645288288593,-0.099829658865929],[0.010792499408126,-0.1207355260849,-0.1138434112072]],[[-0.091294422745705,0.0047718235291541,0.052170131355524],[-0.19206120073795,-0.0059200180694461,0.057962022721767],[-0.22241659462452,0.069082155823708,-0.002946971450001]],[[-0.0046250121667981,0.008518167771399,-0.040882356464863],[0.070678845047951,0.013159468770027,0.03603133186698],[0.045792136341333,0.02662886492908,0.045373871922493]],[[-0.077943123877048,-0.0098822377622128,-0.044204901903868],[-0.027565695345402,-0.013383285142481,-0.064683258533478],[0.11627867817879,-0.043294496834278,-0.020615845918655]],[[0.082096919417381,0.096920512616634,-0.060915119946003],[0.31099426746368,-0.082849018275738,-0.027227072045207],[-0.052976384758949,-0.086676403880119,0.030499240383506]],[[0.086162067949772,0.071229666471481,0.043300177901983],[-0.044030994176865,0.075784407556057,0.046796943992376],[-0.12912139296532,-0.043415330350399,0.064620561897755]],[[-0.059289801865816,0.032897673547268,-0.013683001510799],[0.061568222939968,-0.11617267131805,-0.087536416947842],[0.20900318026543,0.052201334387064,-0.0029750394169241]],[[0.11932338029146,-0.069562792778015,-0.18026785552502],[-0.010383412241936,0.19525118172169,-0.0032749040983617],[-0.05609642341733,0.08524040132761,-0.02724801748991]]],[[[5.8073059335584e-05,0.056313205510378,0.053887043148279],[0.065477214753628,-0.15677037835121,0.004325469955802],[0.11360593140125,0.051324993371964,-0.14054274559021]],[[0.044720370322466,-0.052952341735363,0.13010700047016],[0.18730385601521,0.10780999064445,0.055698681622744],[0.088399119675159,0.085989564657211,-0.006912115495652]],[[-0.079781040549278,-0.099457532167435,0.015820752829313],[-0.020261077210307,-0.075345203280449,-0.010972257703543],[-0.010046605020761,0.14041824638844,-0.063829235732555]],[[-0.0055224089883268,-0.046529125422239,-0.013639520853758],[-0.097863212227821,-0.044613067060709,-0.057567108422518],[-0.14947021007538,-0.019187660887837,-0.10840435326099]],[[-0.1556356549263,-0.028025759384036,-0.04995321854949],[-0.042338795959949,0.065652437508106,0.1538999080658],[0.11982329934835,-0.064560331404209,0.0046124993823469]],[[-0.17334781587124,-0.024683235213161,-0.034268535673618],[-0.070536144077778,-0.12367866188288,0.018383201211691],[-0.056091878563166,0.0028084085788578,0.12945626676083]],[[-0.039464630186558,0.092542335391045,-0.0062949783168733],[-0.063482105731964,-0.19974897801876,-0.021213412284851],[-0.091908894479275,0.028401721268892,0.073292374610901]],[[0.032338798046112,-0.13538675010204,-0.0058794631622732],[-0.045342534780502,-0.066890306770802,0.22487196326256],[0.048195116221905,0.15565873682499,0.10487394779921]],[[0.072557590901852,-0.0500846542418,-0.010388278402388],[0.047110848128796,-0.068729765713215,0.13729348778725],[-0.02095440775156,-0.060599274933338,0.21370321512222]],[[0.077937766909599,-0.040973730385303,-0.10035439580679],[0.012448400259018,-0.0046770358458161,-0.082108892500401],[-0.016965821385384,-0.0016179598169401,-0.11062514036894]],[[-0.01701370999217,-0.0014950579497963,-0.049503456801176],[0.061595976352692,-0.10892803221941,-0.057049583643675],[-0.062797039747238,0.10564244538546,0.14832253754139]],[[0.023960074409842,-0.07389410585165,0.060525447130203],[-0.0086529655382037,-0.067487724125385,0.0034977979958057],[0.043341156095266,0.02498540468514,-0.13085123896599]],[[0.022808531299233,-0.090961523354053,0.036539223045111],[-0.054806888103485,-0.01187523920089,0.009209412150085],[-0.0093241259455681,-0.077418312430382,-0.1645790040493]],[[0.072792284190655,-0.17842617630959,0.08798560500145],[0.031681045889854,-0.082750588655472,0.031010618433356],[0.026536757126451,0.022480860352516,0.13018721342087]],[[0.063214205205441,-0.019991749897599,-0.031686697155237],[-0.052173055708408,-0.074512302875519,-0.048478350043297],[-0.041112683713436,0.050412002950907,-0.038915563374758]],[[-0.047705877572298,0.11101274192333,-0.078841984272003],[-0.04030816257,0.0013051654677838,-0.0055814003571868],[-0.038424145430326,0.10581478476524,-0.039679083973169]],[[0.04438191652298,-0.10611113905907,-0.066105872392654],[-0.0021966865751892,-0.078573659062386,-0.019732130691409],[-0.066677942872047,-0.064108841121197,-0.12695832550526]],[[0.0054989666678011,0.036995444446802,-0.031568825244904],[-0.096388332545757,-0.0055734841153026,-0.087930291891098],[-0.02266732044518,-0.01517500076443,0.097524859011173]],[[0.033576428890228,0.006022029556334,0.062981575727463],[-0.0871876552701,-0.047481343150139,0.10311159491539],[-0.067025728523731,-0.11635056138039,-0.014767782762647]],[[0.043232601135969,-0.044958043843508,0.15146803855896],[-0.066047303378582,0.033572513610125,-0.053822342306376],[-0.045254148542881,0.053341466933489,-0.0091734929010272]],[[0.069214545190334,0.10755928605795,0.014862638898194],[-0.11428690701723,-0.0039515891112387,-0.12501464784145],[-0.038482569158077,-0.17380595207214,-0.0076809995807707]],[[-0.08712650090456,0.056447718292475,0.12924337387085],[0.025308525189757,0.024433506652713,0.086230911314487],[-0.018033526837826,-0.03144695609808,0.11171792447567]],[[0.049634553492069,-0.039476364850998,0.07554866373539],[-0.085163056850433,-0.092411987483501,0.06958394497633],[-0.21704168617725,0.082681894302368,0.012128722853959]],[[-0.042118594050407,-0.044869266450405,-0.062937863171101],[0.018406754359603,-0.077273055911064,0.00029575714142993],[0.0056168008595705,0.015698377043009,0.051675751805305]],[[0.051266342401505,-0.099077269434929,0.17344819009304],[0.043644942343235,-0.051836229860783,-0.044351056218147],[0.085839822888374,-0.0070623564533889,0.10454153269529]],[[-0.051550928503275,-0.0040621245279908,0.094735398888588],[-0.013639559037983,-0.11127752065659,0.14654703438282],[-0.045550264418125,-0.047055032104254,0.09469898045063]],[[0.072700515389442,-0.024083757773042,-0.16502912342548],[0.063484542071819,0.02909048832953,0.0082758227363229],[0.10604405403137,-0.0057605295442045,0.047594081610441]],[[0.018646001815796,-0.1189337298274,-0.052955109626055],[0.19224256277084,0.079881563782692,0.060081079602242],[0.21675065159798,-0.045941539108753,-0.042003720998764]],[[-0.047315392643213,0.011169486679137,-0.089890658855438],[-0.037014279514551,0.040358394384384,0.085680663585663],[0.0037666026037186,-0.013827610760927,0.026091752573848]],[[-0.025105254724622,0.095069266855717,0.036864634603262],[0.14783722162247,-0.10222447663546,-0.13078184425831],[0.08646409958601,-0.01646344922483,-0.036240614950657]],[[-0.046504367142916,-0.04300981014967,0.0097999963909388],[-0.14810879528522,-0.090856924653053,0.1500292122364],[0.052527811378241,0.021599037572742,0.10235492885113]],[[-0.083959624171257,0.11962156742811,0.14354686439037],[-0.029152443632483,0.04331199079752,0.14848609268665],[0.032690979540348,-0.16301177442074,-0.17944569885731]],[[-0.095260627567768,-0.070517480373383,-0.077938169240952],[0.1345551609993,-0.085483379662037,0.11466819792986],[0.027847941964865,0.049816999584436,0.070976920425892]],[[-0.021954607218504,0.073584578931332,0.054316207766533],[-0.047635994851589,0.0060722250491381,0.025232225656509],[0.0055676940828562,-0.019821152091026,0.059601627290249]],[[-0.050669267773628,-0.028434097766876,-0.051726002246141],[0.0034863702021539,-0.13228605687618,-0.15791715681553],[0.016084022819996,0.035373624414206,0.041180208325386]],[[-0.031249148771167,0.0098909167572856,0.044040910899639],[0.10755776613951,0.1587618291378,-0.0056597148068249],[-0.13398841023445,-0.033438432961702,-0.0096593424677849]],[[-0.15945547819138,0.0082439891993999,0.0006487414939329],[-0.00037490794784389,0.077612854540348,0.053379759192467],[0.0069114533253014,0.044798225164413,0.14937129616737]],[[0.086533345282078,-0.066068008542061,-0.053235709667206],[-0.039030101150274,0.036988701671362,-0.13619959354401],[-0.00010370614472777,0.12099764496088,0.18749080598354]],[[-0.070463433861732,-0.15355385839939,-0.024868242442608],[-0.063417583703995,-0.076470240950584,0.038895003497601],[0.033701419830322,0.03732842206955,-0.076901532709599]],[[-0.071536377072334,0.042383920401335,-0.034406915307045],[0.018737973645329,-0.013944102451205,-0.19819089770317],[0.15038672089577,0.096426516771317,-0.030501052737236]],[[0.096064858138561,0.016717588528991,-0.10352683067322],[0.10931177437305,-0.08308220654726,-0.1164009347558],[-0.10017995536327,0.1123735755682,-0.11102753132582]],[[-0.027103105559945,-0.018233224749565,0.0026291094254702],[0.097224995493889,0.16355818510056,0.081823609769344],[-0.093102246522903,0.16165278851986,-0.0073077576234937]],[[0.16375176608562,-0.064045041799545,-0.021782200783491],[0.08482663333416,-0.11433576792479,-0.13457636535168],[-0.1275724619627,-0.060980942100286,-0.18115071952343]],[[-0.019721541553736,0.037776559591293,-0.040176317095757],[0.0095566054806113,-0.045270215719938,0.036651905626059],[0.083283968269825,-0.0043614218011498,-0.067227683961391]],[[0.032945729792118,0.05146250128746,0.057690627872944],[0.16162121295929,0.057748276740313,-0.04946218803525],[0.1473149061203,0.046152126044035,0.057252701371908]],[[-0.037031516432762,-0.016163818538189,-0.048602167516947],[-0.11685004085302,0.0094921868294477,-0.15782661736012],[-0.012099052779377,-0.018021190539002,-0.042732585221529]],[[0.11921552568674,0.040295343846083,-0.0042260130867362],[0.07378913462162,-0.02986660413444,0.027984902262688],[0.17723581194878,-0.072353899478912,0.028608042746782]],[[0.024030460044742,-0.10802223533392,-0.14444300532341],[0.17946927249432,-0.068528093397617,-0.033704955130816],[-0.01716042123735,0.096318334341049,0.066752910614014]],[[0.025632308796048,0.090929359197617,0.093732908368111],[0.036576557904482,-0.091050744056702,0.12133211642504],[-0.051632568240166,-0.035191997885704,-0.024326223880053]],[[-0.077420957386494,-0.0097367139533162,0.017339181154966],[-0.092677034437656,-0.03723156824708,-0.0038577397353947],[0.023117586970329,-0.00036201227339916,0.15298856794834]],[[-0.049321223050356,-0.13535134494305,0.11326433718204],[-0.11085555702448,-0.11169948428869,-0.12772032618523],[0.10424848645926,0.044305983930826,-0.1063209399581]],[[0.033630594611168,0.019887905567884,0.017860051244497],[-0.030616655945778,0.035963095724583,0.041698817163706],[0.2357954531908,-0.032234013080597,-0.10180854052305]],[[0.0034084527287632,-0.030481087043881,-0.10047008097172],[0.026951186358929,-0.11273185908794,-0.06478301435709],[-0.04415163770318,-0.024179635569453,-0.089431427419186]],[[0.047192949801683,-0.078414998948574,-0.045397952198982],[0.0021978849545121,-0.051236353814602,0.066470228135586],[-0.055262740701437,0.039988875389099,0.048804815858603]],[[0.12016936391592,-0.0048942333087325,-0.10114078223705],[-0.067421302199364,-0.019279900938272,-0.12938562035561],[-0.11452732235193,0.13017080724239,0.069884419441223]],[[0.054428569972515,0.1250012665987,-0.066108949482441],[0.014860882423818,0.081110805273056,0.023660099133849],[0.042071562260389,0.04484723880887,0.0094483345746994]],[[0.12768729031086,0.063850030303001,0.058241009712219],[-0.24580238759518,-0.0004727095074486,-0.065647542476654],[0.010584694333375,0.14435844123363,-0.019508542492986]],[[-0.0524034909904,0.0069869267754257,-0.17452089488506],[0.026554059237242,-0.047018602490425,-0.1061951443553],[-0.08227875828743,-0.097859099507332,-0.011653888970613]],[[0.037572681903839,-0.10298558324575,-0.053672805428505],[0.064423337578773,-0.073077499866486,0.084791205823421],[-0.033687822520733,0.097483716905117,-0.0098084369674325]],[[-0.051327679306269,-0.17710684239864,0.069725774228573],[0.016290495172143,0.0074834949336946,0.1548728197813],[-0.061407554894686,-0.046934083104134,0.23189949989319]],[[-0.086033299565315,0.019867213442922,-0.064177431166172],[0.02112390846014,0.1400101929903,-0.029506586492062],[0.018982950598001,0.1324500888586,-0.059563264250755]],[[0.0642114803195,-0.032833572477102,-0.0063991295173764],[0.12934125959873,0.0098917093127966,-0.0034284279681742],[-0.091723680496216,0.012862059287727,-0.052016459405422]],[[-0.043376885354519,0.037666540592909,0.014734535478055],[-0.051289606839418,0.08742281794548,0.13487957417965],[0.13920757174492,0.0016619090456516,-0.053409479558468]],[[0.07042533904314,0.14172817766666,0.080403253436089],[-0.015400589443743,-0.18069563806057,-0.11035773903131],[0.10509421676397,0.064383164048195,0.11139779537916]],[[-0.078197881579399,-0.13515482842922,-0.11589290946722],[-0.2256602793932,-0.014542904682457,-0.019258625805378],[0.068909965455532,-0.060022220015526,-0.035127058625221]],[[0.076681807637215,0.059508059173822,0.036842554807663],[-0.050296727567911,0.00094084878219292,-0.078580714762211],[-0.035370927304029,0.072606444358826,-0.088424168527126]],[[-0.027151487767696,-0.10419034957886,0.050931014120579],[-0.068456873297691,0.048610724508762,0.15155705809593],[-0.14777451753616,-0.024655483663082,-0.0078545762225986]],[[0.13878038525581,-0.078645721077919,-0.082231745123863],[-0.098707281053066,0.010469824075699,0.062576361000538],[-0.063492111861706,0.084374032914639,-0.045104496181011]],[[-0.011526338756084,-0.079001046717167,0.04703214392066],[0.050466191023588,-0.10391420871019,0.041704587638378],[0.13294431567192,-0.04010858014226,0.040245238691568]],[[0.046389739960432,0.16966962814331,0.032427746802568],[0.049882330000401,0.027530649676919,0.037413626909256],[0.045661419630051,0.06298603117466,0.0097530875355005]],[[-0.089655816555023,-0.069584034383297,0.081595882773399],[-0.035420663654804,-0.040604818612337,-0.17471934854984],[0.1336771696806,-0.082765191793442,-0.098176494240761]],[[-0.0058530778624117,0.014810120686889,-0.044725321233273],[0.11097147315741,0.037352085113525,-0.036885887384415],[-0.036147236824036,-0.0502386726439,0.17159458994865]],[[-0.055970348417759,0.064800210297108,0.079737611114979],[-0.055306244641542,-0.037508219480515,-0.21549373865128],[0.017583794891834,-0.023760499432683,-0.045000452548265]],[[0.05900014936924,0.038495667278767,-0.061083231121302],[-0.018307762220502,0.054372329264879,-0.064686864614487],[-0.048830814659595,-0.014465490356088,0.057654213160276]],[[0.029353367164731,0.098906382918358,0.032431397587061],[-0.005099153611809,-0.046620771288872,-0.027392419055104],[-0.01974687166512,0.024663157761097,-0.092597886919975]],[[-0.02688180655241,-0.048645127564669,-0.0054088435135782],[-0.060660887509584,-0.024403309449553,0.00058526359498501],[-0.061332408338785,-0.062475852668285,0.020849829539657]],[[0.043205812573433,-0.026675513014197,-0.057356581091881],[-0.053115274757147,-0.083740524947643,-0.1127191260457],[-0.060017626732588,-0.016346462070942,-0.068280585110188]],[[-0.14672242105007,-0.052998390048742,-0.09108742326498],[0.0074191940948367,-0.14412711560726,-0.077718786895275],[-0.072523638606071,-0.012595147825778,-0.12847204506397]],[[0.1410266906023,-0.032111629843712,0.10418033599854],[-0.052912965416908,-0.2756096124649,0.19284576177597],[-0.042286284267902,-0.096657365560532,0.13309592008591]],[[-0.059366524219513,-0.017433209344745,-0.017738614231348],[-0.064610980451107,-0.0034606999251992,-0.031682077795267],[0.077652841806412,0.064700022339821,-0.013740496709943]],[[-0.12582384049892,-0.085323102772236,-0.082828357815742],[0.13414645195007,-0.042479623109102,0.013227803632617],[-0.0070768590085208,0.10392575711012,-0.032891165465117]],[[0.13858796656132,0.10746854543686,0.082053259015083],[0.040173452347517,0.063900321722031,0.014644929207861],[-0.17430777847767,0.040668908506632,-0.068570092320442]],[[0.076152369379997,0.099653549492359,-0.14839236438274],[0.066894970834255,-0.083385407924652,0.02601059153676],[-0.055580567568541,-0.12031280994415,-0.13377039134502]],[[0.012289769947529,-0.11133346706629,0.042672887444496],[-0.036014977842569,-0.03784579411149,-0.03424634411931],[-0.039687607437372,0.09395831823349,0.10893680155277]],[[0.031775314360857,0.067402422428131,0.2337991297245],[-0.23597940802574,-0.064206346869469,0.091137737035751],[-0.028473885729909,-0.14830382168293,0.035401407629251]],[[-0.19286902248859,0.099636487662792,-0.009955151937902],[-0.002827734220773,-0.035166893154383,-0.10659661889076],[0.025036441162229,-0.10974600166082,-0.032106604427099]],[[0.15633065998554,0.05353669822216,-0.020537735894322],[0.0056391372345388,0.10264156013727,-0.20271241664886],[0.061736036092043,0.076609961688519,0.076370306313038]],[[-0.01592567935586,-0.0031752467621118,0.16203621029854],[0.12717336416245,-0.029084011912346,0.013787367381155],[0.024155480787158,-0.1320673674345,-0.068461388349533]],[[0.12424034625292,0.038155265152454,-0.015258532948792],[-0.013719133101404,0.14628219604492,0.15045401453972],[0.097808301448822,0.12627586722374,0.0026833224110305]],[[0.16301284730434,0.04273035377264,0.029395271092653],[-0.094120994210243,-0.0026433789171278,-0.06058306992054],[0.089092530310154,-0.016993032768369,0.098262719810009]],[[0.10167001932859,0.080595180392265,0.019343880936503],[-0.13702848553658,-0.036160103976727,0.047207180410624],[0.11505869030952,0.17583811283112,0.13685829937458]],[[0.055372476577759,0.030033227056265,0.01735907047987],[-0.0068859234452248,0.10914124548435,-0.026950957253575],[-0.10875356197357,0.099945269525051,0.030476892367005]],[[-0.066691391170025,-0.10906030237675,0.059341348707676],[-0.010865136049688,0.071678407490253,-0.0078569892793894],[-0.1365270614624,0.053653657436371,0.17030902206898]],[[-0.041659109294415,-0.010416102595627,-0.064540237188339],[0.012605506926775,-0.006588488817215,0.015658503398299],[0.0039613414555788,-0.05003022775054,0.032932739704847]],[[0.091382429003716,0.077720873057842,-0.084602244198322],[0.15474365651608,0.030947878956795,-0.21382667124271],[0.079132080078125,-0.011087692342699,-0.12176677584648]],[[-0.18027450144291,0.011791665107012,-0.14544756710529],[0.058038264513016,0.00053942372323945,0.082049898803234],[0.036303389817476,0.16186182200909,0.061932727694511]],[[-0.030160384252667,0.10485504567623,0.076319016516209],[0.041263811290264,-0.053095832467079,0.0026044668629766],[0.089360907673836,-0.043549694120884,-0.12007636576891]],[[-0.014109576120973,-0.11359150707722,-0.021996619179845],[-0.094026766717434,0.10438391566277,0.28808128833771],[0.049623772501945,-0.10214925557375,0.25756439566612]],[[-0.08126387745142,0.014175059273839,-0.037129886448383],[-0.1612039655447,-0.064841315150261,-0.12910859286785],[-0.062820218503475,0.067631162703037,0.023965254426003]],[[0.12257197499275,-0.023986201733351,-0.01043167244643],[-0.071818836033344,-0.078036092221737,0.037589713931084],[0.092217437922955,-0.028268482536077,0.005154955200851]],[[-0.12374545633793,-0.043869730085135,0.089015707373619],[-0.043862942606211,0.0044807689264417,-0.11216382682323],[0.023809615522623,-0.061828751116991,-0.0062857042066753]],[[-0.04318318516016,-0.016247220337391,0.0069057368673384],[0.15297563374043,0.15317851305008,0.067823752760887],[-0.027249542996287,-0.028156436979771,-0.020272912457585]],[[-0.01634562946856,0.0050202235579491,-0.060608085244894],[-0.015801766887307,0.11989153176546,0.042851317673922],[-0.018328173086047,-0.077326826751232,-0.025409588590264]],[[0.030538477003574,0.032451678067446,-0.073193021118641],[0.012781845405698,0.0059524062089622,0.030469702556729],[-0.10421808809042,0.079196341335773,-0.023271020501852]],[[-0.072181716561317,0.1147116497159,0.007137767970562],[-0.076624296605587,-0.081965073943138,-0.15232585370541],[-0.06639713793993,-0.062374670058489,-0.096038274466991]],[[-0.089516304433346,-0.048765759915113,-0.056962132453918],[0.074732922017574,-0.064735122025013,-0.062659651041031],[-0.082907095551491,0.015245225280523,0.011704935692251]],[[-0.089356519281864,0.12571522593498,0.099461786448956],[0.038183156400919,0.040548514574766,0.028585352003574],[-0.1365620046854,-0.082365922629833,-0.01545453350991]],[[0.001672726473771,0.025711763650179,-0.022263882681727],[-0.095583371818066,-0.014066400937736,-0.040369190275669],[-0.030714686959982,0.066522009670734,0.040707774460316]],[[0.021181164309382,0.059768330305815,0.012900589033961],[-0.12526994943619,-0.059409849345684,-0.0071158269420266],[-0.03265493735671,0.019688185304403,-0.0034973993897438]],[[-0.058554891496897,0.05907828360796,0.020512118935585],[0.00795085914433,0.079350121319294,-0.024553000926971],[0.21764041483402,0.051802210509777,-0.072221830487251]],[[-0.014785076491535,-0.057325340807438,-0.0062801013700664],[-0.04732271283865,0.022316684946418,0.0070537352003157],[0.0040576248429716,-0.07136408239603,-0.078528724610806]],[[0.076901167631149,0.097240224480629,-0.15865321457386],[0.01969825476408,-0.08221123367548,-0.029300432652235],[0.17623981833458,-0.15171998739243,-0.17542603611946]],[[0.080871507525444,0.17994397878647,-0.044826198369265],[-0.088657513260841,-0.007183475419879,0.088952399790287],[-0.045912496745586,0.011531196534634,0.036601927131414]],[[0.048409469425678,0.10145548731089,0.017074268311262],[0.04681060090661,-0.08222022652626,-0.015732243657112],[0.14256170392036,-0.10717795044184,-0.029252478852868]],[[-0.048544067889452,0.04316246509552,0.14173485338688],[0.17113365232944,-0.0099370293319225,0.021006189286709],[0.042657375335693,0.0017913682386279,-0.043864451348782]],[[-0.15624961256981,-0.15846589207649,-0.046273447573185],[0.081466108560562,0.009572958573699,-0.143763884902],[-0.051655236631632,0.096529312431812,0.10213398188353]],[[-0.038096118718386,0.10359169542789,-0.064587488770485],[-0.01443135086447,-0.099698007106781,-0.029694342985749],[0.071878254413605,-0.050533331930637,-0.023004155606031]],[[-0.060385275632143,-0.18741618096828,-0.086649969220161],[0.12027740478516,-0.02350933291018,-0.070985719561577],[0.019225789234042,0.01400054898113,0.087508417665958]],[[-0.076421312987804,0.027716776356101,0.10325869172812],[0.082262672483921,-0.14023426175117,0.19272522628307],[0.0063507203012705,-0.089497402310371,0.060881160199642]],[[-0.011099571362138,0.10913168638945,-0.0073333545587957],[0.062747307121754,-0.11889540404081,-0.0758917927742],[0.034413658082485,-0.095954820513725,0.0832479596138]],[[-0.027599155902863,-0.12925873696804,-0.0065886932425201],[0.11403546482325,0.1144442781806,-0.051757983863354],[-0.036403477191925,0.0074113034643233,-0.016347568482161]],[[0.0084621394053102,0.078742943704128,0.046580720692873],[0.056000299751759,-0.025498619303107,0.023721788078547],[-0.13367314636707,0.16877573728561,0.022109363228083]],[[-0.036125525832176,0.07431998103857,0.12288254499435],[-0.037018198519945,-0.066841281950474,-0.16351887583733],[-0.035584252327681,-0.1562464684248,0.015182256698608]],[[-0.053923897445202,-0.021404145285487,-0.027317566797137],[0.02630022726953,0.089759558439255,-0.029538011178374],[0.044397760182619,-0.0064087193459272,-0.098857246339321]],[[-0.053365703672171,0.0033365972340107,0.091532722115517],[-0.097799614071846,-0.026567356660962,0.11038233339787],[0.17196726799011,-0.0027367351576686,0.018542865291238]],[[0.031553093343973,0.0081651508808136,0.011867028661072],[-0.10149237513542,0.091628879308701,0.10144434124231],[-0.031755719333887,-0.089048951864243,0.078994393348694]],[[-0.028678854927421,0.12465260177851,0.12469460815191],[-0.028273362666368,0.1433062851429,-0.14495532214642],[0.019981568679214,0.13391564786434,0.058876544237137]],[[-0.024880852550268,-0.013991871848702,0.076929561793804],[0.022587222978473,-0.030964370816946,0.0053392564877868],[-0.0091089159250259,-0.13067862391472,0.058014754205942]]],[[[0.0027976599521935,0.03057231195271,-0.094106294214725],[-0.027077509090304,0.044178437441587,-0.1312425583601],[0.010111967101693,0.024344753473997,0.030250318348408]],[[-0.13894970715046,-0.069143652915955,0.036255180835724],[0.030853934586048,-0.013316106982529,-7.8907622082625e-05],[0.14293740689754,0.013502083718777,0.18478934466839]],[[-0.048348624259233,0.10071896761656,-0.006993399001658],[0.092593178153038,-0.079405285418034,0.016808731481433],[0.074239082634449,0.02729487977922,-0.009258602745831]],[[-0.075848266482353,0.067135520279408,-0.0544025413692],[-0.077429302036762,-0.022469319403172,-0.014158402569592],[-0.062991105020046,0.07553793489933,0.043797735124826]],[[0.12320391833782,0.10453767329454,0.06570015847683],[-0.13528029620647,0.003391261678189,-0.068229101598263],[-0.028703229501843,0.080493681132793,0.015896717086434]],[[0.10308694839478,0.020292811095715,0.16083011031151],[-0.15197138488293,-0.070688024163246,-0.046899177134037],[0.042949832975864,0.054618142545223,0.0027434146031737]],[[0.11465246975422,0.098405793309212,0.072737880051136],[-0.073853395879269,-0.05056369304657,-0.026289459317923],[0.051755759865046,0.10661658644676,0.19032789766788]],[[-0.079426266252995,-0.011441268958151,0.033290017396212],[-0.13927783071995,-0.013055772520602,0.034547083079815],[0.046810083091259,0.032360073179007,-0.035995580255985]],[[0.010988930240273,-0.12176578491926,-0.015146308578551],[0.040276523679495,0.043950811028481,-0.029134782031178],[-0.047257654368877,0.021018005907536,-0.087521366775036]],[[-0.041819054633379,-0.026065651327372,0.027684107422829],[-0.069614320993423,7.6555705163628e-05,0.029177870601416],[0.016305584460497,0.061625063419342,-0.045169282704592]],[[0.0016852337867022,-0.073218189179897,-0.0093634594231844],[0.17914935946465,0.060882050544024,0.12835742533207],[0.046630054712296,0.022632122039795,0.1345739364624]],[[0.15508610010147,0.16672548651695,-0.043619111180305],[-0.073824301362038,-0.071741849184036,0.028130754828453],[0.1506090760231,-0.093023404479027,-0.055777948349714]],[[-0.150091573596,-0.17540894448757,0.0016914713196456],[0.013996622525156,-0.11464645713568,-0.021367110311985],[-0.055612348020077,0.044284854084253,0.10208269953728]],[[-0.060545515269041,-0.063263811171055,-0.0049525825306773],[-0.15492625534534,-0.088559746742249,-0.11805704981089],[0.021170323714614,0.012302859686315,-0.15338815748692]],[[0.080340772867203,-0.084732688963413,-0.1685513406992],[0.085469529032707,0.08703388273716,-0.0099790338426828],[0.085522517561913,0.12241547554731,0.063582129776478]],[[-0.10975687205791,0.019868336617947,0.041884370148182],[-0.04531766846776,-0.003576721297577,-0.13992483913898],[0.057414524257183,-0.028707945719361,-0.026528967544436]],[[-0.033802852034569,0.054624978452921,0.10400558263063],[0.051113076508045,-0.034140404313803,0.035929679870605],[-0.059135999530554,-0.11769203841686,-0.048227306455374]],[[0.04193989560008,0.15131936967373,0.19853776693344],[0.06550221145153,-0.041798692196608,-0.12232640385628],[-0.035093609243631,-0.050464749336243,0.034912470728159]],[[-0.041246268898249,0.073802568018436,0.15298506617546],[0.063856109976768,-0.094492472708225,0.13296487927437],[-0.094549462199211,-0.086326770484447,-0.078335776925087]],[[-0.015796206891537,0.024055339396,-0.013083813712001],[-0.14583399891853,0.021354982629418,0.0042526731267571],[0.041703101247549,-0.026250462979078,-0.048324972391129]],[[-0.078828603029251,0.0008522451389581,-0.009698199108243],[-0.02531767450273,-0.032775156199932,-0.18499992787838],[-0.043959960341454,0.059531014412642,0.033191490918398]],[[0.031467732042074,0.09648060053587,0.092193737626076],[-0.047196753323078,0.069638431072235,-0.11093366146088],[0.019560696557164,-0.041349489241838,0.034950286149979]],[[0.041548367589712,-0.16188363730907,-0.040083054453135],[-0.13806037604809,-0.13434259593487,0.021857174113393],[-0.064801782369614,-0.043817423284054,-0.045761343091726]],[[-0.055405765771866,-0.036134198307991,-0.1758850812912],[0.002771909115836,-0.1024926751852,-0.032545518130064],[0.056614596396685,0.03321098908782,0.062796123325825]],[[-0.09049466997385,0.022268246859312,0.047734547406435],[-0.053290300071239,-0.0054203607141972,-0.048176933079958],[0.052759394049644,0.05916915461421,-0.050495754927397]],[[-0.063558138906956,0.0060877013020217,0.0051154955290258],[-0.095677800476551,-0.060561142861843,-0.16061162948608],[0.073652714490891,-0.059296373277903,-0.078131161630154]],[[0.0015829270705581,-0.10515315830708,-0.067892879247665],[0.028690977022052,0.018755462020636,0.041431285440922],[0.21158640086651,-0.00092343235155568,0.13185888528824]],[[0.0019950428977609,0.068864688277245,0.091238476336002],[0.055158127099276,0.035066977143288,0.087747730314732],[0.023515120148659,-0.082719512283802,0.20214119553566]],[[-0.12514355778694,-0.079236745834351,-0.16843129694462],[0.092320770025253,-0.11148502677679,-0.049979958683252],[-0.036799360066652,-0.081813640892506,-0.14352104067802]],[[0.001327506150119,-0.044393565505743,-0.03646881878376],[-0.10398495197296,0.11307077854872,0.13313014805317],[-0.080077201128006,-0.16530995070934,0.036971498280764]],[[-0.16736741364002,-0.19594745337963,-0.073618575930595],[0.017811149358749,-0.034934662282467,0.17529554665089],[-0.012610814534128,-0.077942371368408,-0.050710123032331]],[[-0.080204173922539,-0.01949012838304,-0.040502801537514],[0.0065689510665834,-0.0056131207384169,-0.0058201989158988],[-0.015272815711796,-0.1131192818284,-0.095619641244411]],[[-0.02385943941772,0.044847551733255,0.11889779567719],[-0.020243275910616,-0.11997455358505,0.047248739749193],[-0.055011056363583,0.023237694054842,0.030613848939538]],[[0.10892825573683,0.21877688169479,0.081412278115749],[0.084425501525402,-0.080581247806549,0.090042367577553],[-0.21168212592602,-0.16069978475571,-0.14841973781586]],[[-0.020283978432417,0.06205441057682,0.020432084798813],[-0.16546459496021,-0.094807222485542,-0.12705263495445],[0.12616616487503,-0.062106221914291,0.11094535887241]],[[0.036638278514147,0.0084119020029902,0.034477598965168],[-0.00097119127167389,-0.0098597807809711,0.092585161328316],[-0.029273072257638,-0.015704780817032,0.11318094283342]],[[0.19606265425682,0.17032745480537,0.16330975294113],[0.034393802285194,0.055580649524927,-0.11230305582285],[-0.016702206805348,-0.11684048175812,0.05959989130497]],[[-0.09996559470892,-0.12596537172794,-0.11251699924469],[-0.13712832331657,-0.21442824602127,-0.19415840506554],[0.16422753036022,0.10393534600735,0.045618552714586]],[[-0.17378507554531,-0.07779898494482,-0.17070251703262],[0.0045523750595748,-0.068097867071629,-0.037017904222012],[0.090152718126774,0.00060041894903407,0.028002580627799]],[[-0.030508147552609,-0.021214021369815,-0.14672346413136],[0.059177238494158,0.13041169941425,0.062820546329021],[0.061447013169527,0.0041279555298388,0.069668866693974]],[[0.13078720867634,0.12402091175318,0.017348952591419],[0.16733987629414,-0.029559288173914,0.024705847725272],[-0.052250079810619,-0.012161890976131,0.096736155450344]],[[0.12724278867245,0.1146891862154,0.091894634068012],[0.023891661316156,0.048631202429533,-0.039034467190504],[0.078114748001099,-0.079424887895584,-0.034016463905573]],[[-0.11179041862488,-0.057806819677353,-0.071520604193211],[0.025884732604027,-0.051982510834932,-0.088881582021713],[0.0051167332567275,-0.052069026976824,-0.045120511204004]],[[0.0046736616641283,0.1170644685626,0.010085581801832],[0.052149958908558,0.03921739757061,0.03794077411294],[-0.0043282103724778,0.027263380587101,0.051396116614342]],[[0.12313382327557,0.012615957297385,0.069145657122135],[-0.17039927840233,-0.14592704176903,-0.17237208783627],[-0.015175848267972,0.006501832511276,-0.054643649607897]],[[0.058662571012974,0.015942607074976,-0.031880185008049],[-0.11051122099161,-0.10710998624563,-0.090256683528423],[-0.046743288636208,-0.022944990545511,-0.050848927348852]],[[0.084328681230545,0.062959067523479,-0.051851470023394],[-0.075052328407764,-0.050179932266474,-0.030850889161229],[-0.088242404162884,-0.080635003745556,0.038667120039463]],[[-0.17140786349773,-0.029454443603754,0.092630699276924],[0.060729674994946,0.057620752602816,0.006832520943135],[0.011312566697598,0.01505714468658,0.033536311239004]],[[-0.087608367204666,-0.22994457185268,-0.10253596305847],[0.075686618685722,0.0081044463440776,0.10742947459221],[-0.078764371573925,-0.025091014802456,-0.075541719794273]],[[-0.12556844949722,-0.099245652556419,0.050696521997452],[-0.035125069320202,-0.063873425126076,-0.049365315586329],[0.030893972143531,0.026828387752175,0.036841191351414]],[[-0.1558796018362,0.076660461723804,0.056390333920717],[-0.13586713373661,-0.026804884895682,-0.091403029859066],[-0.084696538746357,0.06447809189558,-0.0062470911070704]],[[0.061663530766964,0.036527447402477,-0.00085561478044838],[-0.0020176279358566,-0.094059459865093,-0.13384149968624],[0.17728598415852,0.058084577322006,0.12054112553596]],[[0.0014602944720536,0.080679073929787,0.012696964666247],[-0.020533906295896,-0.010969725437462,0.021276300773025],[0.096278578042984,-0.015404582954943,0.042806338518858]],[[0.048606727272272,0.018624069169164,0.040782582014799],[0.00063696457073092,0.039561245590448,0.14951580762863],[0.085885860025883,0.010758120566607,-0.0025805165059865]],[[0.071571446955204,0.069549098610878,-0.09874289482832],[0.084078274667263,-0.070534907281399,-0.12830320000648],[-0.079497046768665,-0.0072178211994469,0.076431713998318]],[[-0.058089066296816,-0.0088354479521513,-0.0010050571290776],[0.0091646816581488,-0.039928495883942,-0.032392084598541],[0.17893941700459,0.086189284920692,0.030765805393457]],[[-0.086908146739006,-0.077237591147423,0.040231246501207],[0.13431377708912,-0.041149120777845,-0.10904818028212],[-0.11982772499323,0.047321766614914,0.02996451407671]],[[-0.037715584039688,-0.05555372685194,-0.073376052081585],[-0.019591458141804,-0.045964390039444,-0.0078731821849942],[-0.18720695376396,-0.12878035008907,-0.072795391082764]],[[-0.0018048669444397,-0.011648231185973,0.061967231333256],[-0.10726497322321,-0.015886915847659,0.14678370952606],[0.08478245139122,0.0090867690742016,-0.029655175283551]],[[0.049536801874638,-0.040500070899725,-0.036831170320511],[0.1315001398325,0.028314309194684,0.032572336494923],[0.07499573379755,-0.034697405993938,0.0099602118134499]],[[-0.038944203406572,-0.076061591506004,-0.094698593020439],[-0.19281008839607,-0.079987697303295,-0.02860070951283],[0.0058372225612402,-0.10069594532251,-0.15541858971119]],[[-0.13150304555893,-0.18212646245956,-0.010182987898588],[-0.11084384471178,-0.027114460244775,-0.0055115059949458],[-0.03740843385458,-0.11916584521532,-0.080864392220974]],[[0.18465507030487,0.058982595801353,0.013272576965392],[-0.025510001927614,0.073779702186584,0.14294569194317],[-0.084921590983868,-0.042114656418562,0.057117000222206]],[[0.1239659935236,0.19925346970558,0.096960015594959],[0.075141847133636,-0.041727110743523,-0.10473772138357],[0.071888715028763,0.055447190999985,0.0055489721708]],[[0.0061009936034679,0.010247961618006,0.092418722808361],[0.0075331469997764,-0.029824705794454,-0.029141180217266],[0.045416809618473,0.025254242122173,-0.0066426028497517]],[[-0.010973050259054,-0.014761415310204,-0.080227218568325],[0.025750190019608,0.046652361750603,-0.086603276431561],[-0.05958566069603,-0.11558127403259,-0.03897001594305]],[[-0.011613859795034,0.071164719760418,-0.017148964107037],[0.0035607141908258,-0.0030162034090608,0.13741473853588],[0.13898971676826,-0.054796393960714,0.024149630218744]],[[-0.066029407083988,-0.049372598528862,-0.15837353467941],[-0.090006873011589,-0.021583771333098,0.072414748370647],[0.0039530005306005,0.038152646273375,-0.057467386126518]],[[-0.0063745309598744,-0.071668229997158,-0.05143404006958],[-0.018440458923578,-0.059941790997982,0.022219575941563],[-0.039124391973019,-0.079320557415485,0.0082084937021136]],[[0.032982513308525,0.057298444211483,0.020320650190115],[-0.088309556245804,0.054158322513103,0.060670278966427],[-0.14189536869526,-0.074818789958954,-0.12076815962791]],[[-0.022321492433548,0.028212347999215,-0.15575148165226],[0.030310263857245,0.029119553044438,0.24893254041672],[-0.052533365786076,-0.072613939642906,-0.11220167577267]],[[0.13575305044651,0.071693278849125,-0.032447788864374],[-0.064415939152241,-0.10953629016876,0.05023580417037],[0.0073113683611155,-0.065089158713818,-0.037775967270136]],[[0.067746385931969,-0.015097055584192,-0.043470498174429],[-0.038549926131964,-0.049813941121101,0.01379712857306],[-0.074737675487995,-0.045313127338886,-0.055149018764496]],[[0.080086342990398,0.036265127360821,-0.046420682221651],[-0.019503464922309,0.040804818272591,0.041777674108744],[-0.019262425601482,-0.051253601908684,-0.052175618708134]],[[-0.092180527746677,0.052661694586277,0.02917636744678],[-0.020542751997709,0.003133901162073,0.052126109600067],[-0.05842973664403,0.020218938589096,0.0021819651592523]],[[-0.0046063526533544,-0.0033427784219384,0.019691914319992],[0.082495175302029,0.033974751830101,0.093946054577827],[-0.13713511824608,0.018125729635358,-0.058161925524473]],[[0.001105792587623,-0.04102973267436,-0.1120610833168],[0.023718314245343,-0.0056367889046669,-0.019962139427662],[0.020145088434219,-0.0067592356353998,0.030984623357654]],[[-0.075217641890049,-0.098099000751972,-0.023347668349743],[0.093475610017776,0.0464395172894,-0.15897662937641],[-0.0048007816076279,-0.055230747908354,-0.074964769184589]],[[0.076220244169235,-0.0055267754942179,-0.05365876108408],[-0.0038264985196292,0.061925463378429,-0.0018837315728888],[-0.020174261182547,-0.080466732382774,-0.066466219723225]],[[0.012364630587399,-0.027000559493899,-0.17092141509056],[-0.062259543687105,-0.035231966525316,0.024753764271736],[-0.12635166943073,-0.095538169145584,0.028611244633794]],[[-0.050912957638502,0.054368745535612,0.087027125060558],[0.028172615915537,0.0084815118461847,0.032118782401085],[-0.13223759829998,-0.049989886581898,-0.0086593572050333]],[[-0.1332950592041,-0.080749996006489,0.0077070128172636],[0.087718285620213,-0.029327223077416,-0.0062099462375045],[0.060582049190998,0.11878364533186,0.040244769304991]],[[0.16463966667652,0.11188328266144,0.21841245889664],[0.093542538583279,-0.075689107179642,-0.18003040552139],[0.025320814922452,0.12563651800156,0.1488374620676]],[[-0.0017448626458645,0.04534200951457,0.049377419054508],[-0.012972149066627,-0.039529018104076,0.034956593066454],[-0.065034821629524,-0.19596345722675,-0.079581551253796]],[[-0.019663715735078,0.040205705910921,0.11329117417336],[0.013873387128115,-0.0069780866615474,0.032065652310848],[0.10852257162333,-0.047564778476954,0.056597255170345]],[[0.054882138967514,0.10812972486019,0.093352220952511],[-0.072049804031849,-0.14106172323227,-0.020729692652822],[-0.04082203283906,0.015993189066648,-0.04775120690465]],[[0.042015891522169,0.032488781958818,0.033259604126215],[-0.17041240632534,-0.10016635805368,-0.026605570688844],[0.20190009474754,0.10210070014,0.1738950163126]],[[-0.10954110324383,0.05525791272521,-0.080490097403526],[-0.042494643479586,-0.091649860143661,-0.052089083939791],[-0.051595687866211,-0.046783600002527,-0.085325226187706]],[[0.13096994161606,-0.091122440993786,0.066068612039089],[-0.019865790382028,-0.069121792912483,-0.05907478928566],[-0.058600313961506,-0.164506316185,-0.13527499139309]],[[-0.057289686053991,-0.044256702065468,0.1526158452034],[-0.038440879434347,-0.13430194556713,-0.049379598349333],[-0.0083655091002584,-0.02538981102407,-0.080757848918438]],[[0.078246422111988,0.12463422864676,0.066032841801643],[0.13780546188354,0.026018749922514,0.13096122443676],[0.12698552012444,0.074103526771069,0.11980319023132]],[[0.016366243362427,0.075604423880577,-0.12740044295788],[-0.056934729218483,-0.14318598806858,-0.055951919406652],[-0.044372525066137,-0.01339727640152,-0.068285718560219]],[[0.036847610026598,-0.11654350161552,0.070259563624859],[0.13769993185997,-0.04769142344594,0.041884575039148],[0.0091413129121065,-0.059556003659964,0.016384745016694]],[[-0.061029776930809,0.075726181268692,0.081625208258629],[-0.14426918327808,-0.12198425084352,-0.12135901302099],[0.066379629075527,0.017353888601065,0.030771508812904]],[[0.043223820626736,-0.015651274472475,-0.019921042025089],[0.0092542059719563,-0.05028847232461,0.021115830168128],[-0.059309553354979,0.07608600705862,-0.004520860966295]],[[0.063427984714508,-0.016780721023679,-0.025973346084356],[-0.030473651364446,0.012486726045609,-0.10534825176001],[0.039353117346764,-0.039333563297987,0.19578871130943]],[[-0.073002345860004,0.018127327784896,-0.063439562916756],[0.0088218944147229,0.051502220332623,0.063774727284908],[0.054900042712688,0.049627009779215,0.1325049996376]],[[0.16973853111267,-0.0310238301754,-0.0301703363657],[0.021296821534634,-0.10037130117416,-0.022984014824033],[0.19853502511978,0.17172323167324,-0.077588997781277]],[[0.022256901487708,0.10845454782248,0.051683068275452],[-0.046013880521059,-0.046725671738386,-0.073360443115234],[0.03261948004365,-0.14655908942223,-0.11403115838766]],[[0.15429648756981,0.090685203671455,0.22218792140484],[-0.030019108206034,-0.10233805328608,-0.049261316657066],[0.0010893848957494,-0.04815910756588,-0.022271392866969]],[[-0.020520953461528,0.044741921126842,-0.10390627384186],[-0.023167319595814,0.082319810986519,-0.081423223018646],[-0.089374288916588,-0.064827010035515,-0.0064455475658178]],[[0.24068324267864,0.16022209823132,0.1305847465992],[0.21917271614075,0.032207619398832,0.066919647157192],[0.014325992204249,-0.16057109832764,-0.07054727524519]],[[-0.083736844360828,0.021633323282003,0.026717076078057],[-0.03813036903739,0.021011728793383,0.026653833687305],[-0.064698860049248,-0.14858223497868,0.078987412154675]],[[-0.043203812092543,0.082521989941597,0.015160196460783],[0.083802253007889,0.062117844820023,-0.047616466879845],[0.03324918076396,0.10925898700953,0.066030412912369]],[[-0.008291207253933,0.031672324985266,-0.020209718495607],[-0.015259142033756,0.022451998665929,-0.089210845530033],[-0.14617444574833,0.032138507813215,-0.07547178119421]],[[-0.0524742603302,-0.022828863933682,0.051445290446281],[0.11460103839636,-0.024814043194056,-0.014057321473956],[0.027327828109264,0.084150463342667,-0.015175431966782]],[[0.15459503233433,0.036062207072973,0.058502670377493],[-0.03919942677021,-0.023110745474696,-0.023213762789965],[-0.2380492836237,-0.0024468882475048,-0.090545929968357]],[[0.043901264667511,-0.045098591595888,-0.11021142452955],[-0.0084884027019143,0.061513334512711,0.045673850923777],[0.034054137766361,-0.074891574680805,-0.020268423482776]],[[-0.03231542557478,0.0010122380917892,-0.074601694941521],[0.037618689239025,-0.044853940606117,0.0055571394041181],[0.087502300739288,0.013011392205954,0.022873131558299]],[[0.024261020123959,0.18249675631523,-0.078709051012993],[0.068153694272041,0.01917327195406,0.032433178275824],[0.14918410778046,-0.045462131500244,0.044295631349087]],[[0.038210593163967,0.11103378236294,-0.10500028729439],[0.081397920846939,-0.002816625405103,-0.030056679621339],[0.060153238475323,0.018577806651592,-0.023583194240928]],[[0.12856486439705,0.042861770838499,0.14810937643051],[-0.014923472888768,-0.018225172534585,-0.0072795418091118],[-0.16029600799084,-0.15534794330597,-0.052908774465322]],[[0.15703199803829,0.11929920315742,0.0091261481866241],[-0.004018597304821,0.015711098909378,0.023885127156973],[0.031149685382843,-0.023308217525482,0.009595887735486]],[[0.094211615622044,0.0085669755935669,0.012421765364707],[0.13111394643784,-0.14615869522095,-0.099793471395969],[0.052449587732553,0.028101939707994,0.0723015666008]],[[0.046062391251326,0.019705278798938,-0.1014931499958],[0.054597586393356,0.086391232907772,-0.065832197666168],[-0.012352885678411,-0.06562864035368,-0.036845665425062]],[[0.017509751021862,0.13243274390697,0.0023372787982225],[-0.058276806026697,-0.016772616654634,-0.094516597688198],[-0.04039142280817,0.038714338093996,0.089534312486649]],[[0.15702274441719,-0.021553354337811,-0.025561654940248],[-0.082457199692726,-0.071577407419682,-0.081062518060207],[0.087746992707253,0.047807347029448,0.050580319017172]],[[-0.23907160758972,-0.069459825754166,-0.30053243041039],[-0.0010937168262899,0.084445677697659,0.25959557294846],[0.03420190140605,-0.0088351266458631,0.09215534478426]],[[-0.017650747671723,0.061272650957108,0.02061596699059],[0.018891902640462,0.030594184994698,0.04129571467638],[-0.1645417958498,-0.11828849464655,-0.21891236305237]],[[-0.02451760135591,0.035502124577761,0.068593077361584],[0.13752083480358,-0.075571246445179,0.077345050871372],[-0.073770098388195,-0.10566042363644,-0.15710435807705]],[[0.027236964553595,0.13442850112915,-0.017657110467553],[-0.076543636620045,0.088038086891174,0.05265299603343],[-0.027532564476132,-0.01089421659708,-0.05149257928133]],[[-0.057702247053385,0.0017027127323672,-0.12181171029806],[-0.081141084432602,-0.079249486327171,-0.052850112318993],[-0.11970471590757,-0.096746705472469,0.018654607236385]],[[-0.048956818878651,-0.063510730862617,-0.11891867220402],[-0.024689581245184,-0.048465400934219,0.021379075944424],[-0.0093750953674316,-0.01084116101265,-0.060318157076836]],[[0.017027374356985,-0.046083569526672,-0.026980470865965],[0.099782861769199,-0.040626123547554,-0.067405886948109],[-0.041905160993338,-0.019001530483365,-0.1098392829299]],[[0.032854426652193,-0.025574568659067,-0.10478869825602],[0.0034391407389194,0.016811920329928,-0.12749487161636],[3.5895689507015e-05,-0.016285253688693,-0.13702762126923]],[[-0.099577181041241,-0.09352533519268,0.070536464452744],[-0.092534549534321,-0.0012752742040902,-0.0016756106633693],[-0.060603514313698,-0.050597462803125,0.0094335833564401]],[[-0.060988288372755,-0.00034782476723194,-0.002231547376141],[0.045588258653879,0.094192199409008,0.17116436362267],[0.005595579277724,-0.014014834538102,0.098431453108788]],[[0.049425877630711,-0.097380451858044,-0.20977938175201],[0.19214035570621,0.093335628509521,0.25886207818985],[-0.0029345583170652,0.038175966590643,-0.078862376511097]]],[[[0.044193889945745,0.15457019209862,-0.044196467846632],[-0.10664644092321,0.1194516569376,0.065398797392845],[-0.17385886609554,0.19293549656868,0.11666993051767]],[[-0.055060628801584,-0.092754133045673,0.0018345722928643],[0.10032804310322,-0.0116529148072,0.028343798592687],[-0.038444545120001,-0.26349478960037,-0.15416561067104]],[[-0.017129948362708,0.061528898775578,0.14758950471878],[0.064137503504753,0.058420170098543,0.19180764257908],[0.15931794047356,-0.15004658699036,0.094742059707642]],[[-0.32814183831215,-0.11997251957655,-0.09720417112112],[-0.10291349887848,0.0027181443292648,0.045363020151854],[-0.16833907365799,-0.14226333796978,0.35472333431244]],[[0.080014362931252,0.39577904343605,-0.13805355131626],[-0.13633398711681,0.26529121398926,-0.016936302185059],[-0.054677192121744,0.10127042979002,-0.037930775433779]],[[-0.15850573778152,0.077050678431988,-0.083135642111301],[-0.064365185797215,-0.053808309137821,-0.035531349480152],[-0.17199343442917,-0.044300749897957,0.23257730901241]],[[-0.10372941195965,-0.0013654493959621,-0.11106325685978],[-0.039817493408918,-0.013265049085021,0.11356630176306],[0.14083208143711,0.17548541724682,0.11562466621399]],[[0.035503264516592,0.33786445856094,-0.13303409516811],[-0.091282293200493,0.09530346095562,-0.038269653916359],[-0.2389073073864,-0.088747180998325,-0.052450720220804]],[[0.1599970459938,0.11787330359221,-0.044665560126305],[0.042854495346546,0.032736118882895,-0.075547501444817],[0.053156767040491,0.024792682379484,-0.0061126733198762]],[[-0.18002854287624,-0.026114484295249,0.1080024689436],[-0.055645477026701,-0.04250044003129,-0.027764843776822],[0.19935223460197,-0.29403233528137,-0.07301989197731]],[[0.16054649651051,0.005931235384196,-0.075313493609428],[-0.0063140918500721,0.038099240511656,0.072185441851616],[-0.10930474102497,0.076338417828083,0.033303987234831]],[[-0.22556105256081,0.091376416385174,0.010802916251123],[0.028954435139894,0.071872152388096,-0.063972480595112],[0.18647599220276,0.095884971320629,-0.034415885806084]],[[0.032983832061291,-0.18333527445793,-0.13025143742561],[-0.046044293791056,-0.053116030991077,-0.1420487165451],[0.11769150942564,-0.1045213341713,0.086587525904179]],[[-0.14907445013523,-0.060188993811607,-0.097941368818283],[0.035983324050903,-0.076466485857964,-0.0036216320004314],[0.063870429992676,-0.19350798428059,-0.040893882513046]],[[-0.037676066160202,-0.020415533334017,0.12543171644211],[0.0015238601481542,-0.045023448765278,0.039922747761011],[0.23694229125977,0.0047541153617203,-0.14528837800026]],[[-0.010007550008595,0.045765195041895,0.15091662108898],[-0.10904701799154,-0.049768317490816,-0.10996250808239],[-0.077000580728054,0.075514182448387,-0.059971667826176]],[[0.11372420936823,-0.11321108788252,-0.058671694248915],[-0.058456674218178,-0.01795225776732,-0.17612735927105],[-0.014464934356511,-0.0093766506761312,-0.12562525272369]],[[-0.01648873090744,0.076929435133934,-0.099286668002605],[-0.027391528710723,0.11865568161011,-0.12831304967403],[-0.014394431374967,0.16019347310066,-0.18812341988087]],[[-0.00055730604799464,0.02543131262064,0.095040485262871],[-0.1773809492588,0.02442305535078,0.071015901863575],[-0.11894158273935,-0.055832017213106,-0.14731456339359]],[[-0.099880583584309,-0.011281678453088,0.0048270877450705],[-0.100141890347,-0.067417539656162,-0.016440195962787],[0.050111293792725,0.0056738411076367,-0.094827741384506]],[[-0.10843484848738,0.12449042499065,-0.083173654973507],[-0.097608581185341,0.10290359705687,-0.074014365673065],[-0.23940767347813,-0.104163646698,0.2351386398077]],[[-0.084225386381149,-0.095040619373322,-0.035591006278992],[0.056828819215298,0.055407702922821,0.0047561689279974],[-0.072725780308247,0.16276532411575,0.0076918574050069]],[[-0.16879598796368,0.02175872027874,-0.16261734068394],[-0.090403668582439,0.0092774098739028,-0.094138517975807],[0.0090278619900346,0.069410145282745,-0.23871195316315]],[[-0.18336386978626,0.083135232329369,-0.20601107180119],[-0.2210388481617,-0.083154708147049,0.12486128509045],[-0.023316601291299,-0.049880068749189,0.13243013620377]],[[-0.022024907171726,0.24993892014027,-0.069348931312561],[-0.097442276775837,0.035475544631481,0.089756019413471],[-0.089890167117119,-0.025372361764312,0.067735739052296]],[[-0.10732934623957,-0.075752921402454,-0.079513512551785],[-0.05947083979845,0.13287943601608,-0.062958352267742],[-0.041085500270128,0.35120141506195,-0.046190172433853]],[[0.34506621956825,0.026753367856145,-0.023238491266966],[0.25046277046204,-0.082684367895126,0.093666478991508],[0.40938496589661,-0.050471711903811,0.026701701804996]],[[-0.14180397987366,0.060133796185255,-0.15069180727005],[0.16392052173615,0.19553881883621,-0.1444415897131],[0.051539313048124,-0.063875205814838,-0.10937896370888]],[[-0.14255785942078,-0.076516434550285,-0.020587831735611],[0.056922536343336,-0.021602092310786,-0.11728789657354],[-0.15800611674786,-0.08342270553112,-0.1183293685317]],[[0.053419504314661,0.079346597194672,0.079915225505829],[-0.045885678380728,-0.0011209727963433,0.12116115540266],[-0.13363678753376,-0.072747878730297,0.03360765054822]],[[0.12792448699474,0.08235627412796,-0.08296100795269],[-0.10941658169031,0.051703728735447,-0.042919084429741],[-0.066972456872463,-0.078609742224216,-0.00080800731666386]],[[-0.01937535777688,0.04491962864995,-0.30892929434776],[-0.16841793060303,0.044088248163462,-0.10422424226999],[-7.2176873800345e-05,-0.060523182153702,0.058430787175894]],[[-0.10318578779697,-0.27262082695961,-0.067989863455296],[0.052145879715681,0.038685977458954,0.033383846282959],[0.006432852242142,0.046147547662258,0.13547441363335]],[[-0.24430871009827,0.051407057791948,-0.026549262925982],[-0.11808948218822,-0.033422041684389,-0.023616416379809],[0.031147530302405,0.12548308074474,0.11173802614212]],[[-0.053773645311594,-0.11526016891003,-0.09177216142416],[0.0010113754542544,0.11657448858023,-0.22340922057629],[-0.040177993476391,-0.0075731971301138,-0.38473591208458]],[[-0.20969814062119,-0.0029674067627639,-0.089214012026787],[-0.34914374351501,0.017292764037848,0.042026713490486],[-0.16326585412025,0.05366350337863,-0.044483635574579]],[[-0.0035639107227325,-0.017952129244804,0.098494030535221],[-0.023064333945513,-0.12332501262426,-0.028608668595552],[-0.0042814738117158,0.12546360492706,-0.19785197079182]],[[-0.1545557975769,0.048812352120876,0.224773183465],[-0.096772074699402,0.038626808673143,-0.0069205807521939],[-0.021755056455731,0.020636051893234,-0.030747681856155]],[[0.01130214240402,0.086340993642807,-0.096745751798153],[0.070911958813667,0.0059079076163471,-0.070015951991081],[-0.13174532353878,0.062304925173521,0.083068415522575]],[[-0.051460351794958,0.083796806633472,-0.14073127508163],[-0.019275352358818,0.036446463316679,-0.079281464219093],[-0.018758228048682,0.16935634613037,0.18730732798576]],[[0.2925617992878,0.066627778112888,-0.0096945594996214],[0.2166103720665,-0.076161444187164,-0.00888991355896],[0.0042239921167493,-0.054798010736704,-0.04008649662137]],[[-0.057936817407608,0.103300742805,-0.052039112895727],[-0.063411869108677,0.096323773264885,-0.012520858086646],[0.038290247321129,-0.12734258174896,-0.077861860394478]],[[-0.11543848365545,0.017364284023643,-0.016995832324028],[0.11621751636267,-0.10623098164797,-0.12918326258659],[0.20349703729153,-0.00049255561316386,-0.23972330987453]],[[-0.13139574229717,-0.20418517291546,-0.014179496094584],[-0.036419127136469,-0.14070621132851,0.062471099197865],[0.069683007895947,-0.06060753017664,0.082827888429165]],[[0.12875792384148,0.067431502044201,0.097741983830929],[0.17789249122143,-0.1142236739397,-0.06230079382658],[0.11330044269562,-0.063857153058052,-0.11548651009798]],[[-0.059490371495485,-0.15328001976013,0.1760651320219],[-0.090745367109776,-0.18485037982464,0.10982446372509],[-0.041346725076437,-0.1221624687314,0.2991264462471]],[[0.098255671560764,-0.023545809090137,-0.22507750988007],[-0.05081632360816,-0.010434268973768,-0.078782960772514],[-0.35387599468231,-0.030855882912874,-0.014624265953898]],[[-0.095001801848412,0.031591206789017,0.035387527197599],[-0.029894690960646,-0.074135206639767,-0.045700319111347],[0.17269951105118,-0.0046508912928402,0.052300754934549]],[[-0.081859655678272,0.0096677299588919,-0.14621102809906],[-0.26874384284019,0.067804589867592,-0.048976559191942],[-0.081523507833481,0.070701874792576,-0.1135647892952]],[[0.019536502659321,-0.076886795461178,0.043999202549458],[-0.037593964487314,-0.089096948504448,0.16672945022583],[0.066631272435188,-0.0040607191622257,0.051529388874769]],[[-0.088627390563488,-0.016123376786709,0.15992327034473],[-0.20887772738934,-0.02791147492826,-0.033689990639687],[-0.053274303674698,-0.17519870400429,-0.088133677840233]],[[0.11849416792393,0.02558221668005,0.21440027654171],[0.12847894430161,-0.030361980199814,-0.081653319299221],[0.13098646700382,-0.09325697273016,-0.2842678129673]],[[0.031531728804111,-0.11664624512196,-0.044016368687153],[-0.033639818429947,-0.1272539794445,-0.010676039382815],[0.037665586918592,-0.0069786249659956,0.038514003157616]],[[-0.057698030024767,0.10543613880873,-0.058406990021467],[-0.074993573129177,0.067400239408016,-0.14105507731438],[-0.073992647230625,-0.050263918936253,-0.13570530712605]],[[-0.15415994822979,-0.016315018758178,-0.015408431179821],[-0.051499012857676,0.033428952097893,0.083922706544399],[0.046248905360699,0.29366561770439,-0.02769928611815]],[[-0.18269081413746,-0.13305781781673,0.021804474294186],[-0.082033306360245,-0.092280998826027,0.0597959831357],[-0.28979828953743,0.25137087702751,-0.10174001008272]],[[-0.078029952943325,0.040200989693403,0.1893597394228],[0.051436528563499,-0.027978520840406,-0.0088449763134122],[0.26352527737617,-0.0056510786525905,-0.039899170398712]],[[-0.067140698432922,-0.18432423472404,-0.20963090658188],[-0.090036116540432,-0.12101177126169,-0.034767244011164],[-0.090543568134308,-0.12769620120525,-0.22049634158611]],[[-0.085336074233055,-0.22588531672955,-0.18060354888439],[-0.042153105139732,-0.1348088234663,-0.09313652664423],[0.10420781373978,-0.010826910845935,-0.26596555113792]],[[-0.12011702358723,-0.058511152863503,0.0085561815649271],[-0.0021145176142454,0.006082805339247,0.041940461844206],[0.035413943231106,0.046727269887924,-0.11488480865955]],[[-0.15377056598663,0.19357904791832,-0.028177328407764],[-0.1268190741539,0.076445855200291,-0.18539156019688],[-0.21812652051449,-0.11139576882124,-0.39878144860268]],[[-0.025420805439353,-0.075240097939968,-0.084261320531368],[-0.058828923851252,-0.24101823568344,0.1395497918129],[-0.19198979437351,-0.15709643065929,0.0013135531917214]],[[0.027548559010029,0.085908599197865,0.14216011762619],[-0.068183101713657,0.035022899508476,0.13379123806953],[0.21575377881527,-0.085068322718143,-0.03482761234045]],[[-0.1095864623785,0.18408906459808,-0.11143596470356],[-0.045731540769339,0.048271019011736,-0.047084782272577],[0.058732569217682,0.10030757635832,0.044725697487593]],[[-0.19273695349693,-0.0027444697916508,-0.024204663932323],[0.0076681468635798,-0.10836406797171,0.050229523330927],[0.080117851495743,-0.14021484553814,0.33621269464493]],[[0.38754752278328,-0.22132302820683,0.23767617344856],[0.096528634428978,-0.10887668281794,0.17425952851772],[0.01995681039989,0.11894712597132,-0.044521704316139]],[[-0.038628667593002,0.011385166086257,-0.11435696482658],[-0.029579620808363,0.26078802347183,-0.018734097480774],[0.004007626324892,0.086951211094856,-0.075659923255444]],[[-0.18376380205154,-0.10096806287766,-0.092272065579891],[-0.17633247375488,-0.0703309699893,0.06719408929348],[-0.097713284194469,-0.019978933036327,-0.038984321057796]],[[0.10327313095331,-0.0010325758485124,-0.045822579413652],[0.092657364904881,-0.033127687871456,-0.019662482663989],[-0.031188039109111,-0.16806297004223,-0.10256062448025]],[[-0.028286088258028,0.18294291198254,-0.1551728695631],[-0.012055958621204,0.10639578849077,0.049057673662901],[-0.033313546329737,-0.17108510434628,0.0059986617416143]],[[-0.032835502177477,0.086847685277462,-0.0036269631236792],[-0.1185494363308,0.0041980412788689,0.071993432939053],[-0.11373156309128,-0.033444669097662,-0.013553124852479]],[[-0.02704693377018,0.10479041934013,0.034220647066832],[-0.076487883925438,-0.01008424628526,-0.025935515761375],[-0.21337735652924,-0.061687849462032,0.12621377408504]],[[-0.021534575149417,-0.092555426061153,0.11922939121723],[0.036822784692049,-0.20184805989265,-0.0024023787118495],[-0.018895363435149,-0.023550163954496,-0.11925207823515]],[[-0.1790317595005,-0.041033446788788,0.16185481846333],[-0.041156824678183,-0.07987055927515,0.007715932559222],[0.03192126005888,0.078205175697803,-0.21470728516579]],[[0.065785050392151,0.027521656826138,-0.011818715371192],[-0.0452068336308,-0.10352778434753,-0.24639689922333],[-0.10801920294762,-0.044552210718393,-0.058975551277399]],[[0.070626229047775,-0.071495942771435,0.048073090612888],[-0.0073585966601968,0.023270530626178,-0.047701466828585],[0.12439725548029,-0.14599853754044,-0.15715743601322]],[[-0.015158708207309,-0.038006749004126,0.18649671971798],[-0.10343838483095,-0.078107461333275,0.19639974832535],[0.12732514739037,0.021874103695154,0.019526990130544]],[[0.12675015628338,-0.15318614244461,0.15053252875805],[-0.14144568145275,-0.10920884460211,0.15932483971119],[-0.026153985410929,-0.16748283803463,-0.064072452485561]],[[0.40513548254967,0.0066100317053497,0.0016168471192941],[0.033726748079062,-0.063636556267738,0.17310176789761],[0.065586850047112,-0.10084228217602,0.21759530901909]],[[0.05915042757988,0.005093895830214,-0.15599122643471],[-0.062669299542904,0.15783530473709,-0.21415473520756],[0.086298197507858,-0.18777306377888,-0.10749923437834]],[[-0.094085954129696,-0.070912763476372,-0.028002997860312],[0.16914530098438,-0.17533172667027,0.12880007922649],[0.033278372138739,-0.033009652048349,0.26457619667053]],[[-0.10249824821949,0.0067434059455991,0.0097977975383401],[0.27779552340508,0.070236593484879,-0.090360634028912],[0.17955127358437,-0.088518969714642,0.01535994745791]],[[0.037225715816021,-0.092181473970413,-0.034279134124517],[0.20002499222755,0.16044640541077,0.09822578728199],[0.18019297719002,-0.042394425719976,-0.14089907705784]],[[-0.18134027719498,-0.085166588425636,-0.17961885035038],[-0.192432269454,0.049847606569529,-0.048447404056787],[-0.18521632254124,-0.13824336230755,-0.17045645415783]],[[0.114242836833,0.0043692192994058,0.085364229977131],[0.053034070879221,-0.015951637178659,0.20899201929569],[0.067513696849346,0.0026748303789645,-0.043693900108337]],[[0.034060250967741,0.053771704435349,0.14142836630344],[0.056331850588322,-0.070589981973171,-0.053504258394241],[0.033271118998528,-0.049471780657768,0.0020167212933302]],[[0.32664254307747,0.021708726882935,-0.033557955175638],[0.055267553776503,-0.03604606166482,-0.045115809887648],[0.03486941754818,-0.0049431519582868,0.22361935675144]],[[-0.14637364447117,0.0068724071606994,0.051829647272825],[-0.10461820662022,0.13318602740765,0.007670626975596],[-0.035428296774626,0.069871440529823,-0.11638985574245]],[[-0.14183610677719,0.16583327949047,-0.041214101016521],[-0.16302229464054,0.10187432914972,-0.18747924268246],[-0.20555853843689,0.1963717341423,-0.087368756532669]],[[0.077600479125977,-0.062100559473038,-0.14971986413002],[-0.084646284580231,-0.13831369578838,-0.023033354431391],[-0.062557354569435,-0.020730109885335,-0.10445178300142]],[[0.033932611346245,0.14772163331509,-0.069430276751518],[-0.015255681239069,0.041210386902094,-0.062517285346985],[-0.18160556256771,-0.12809881567955,0.06930760294199]],[[0.084583535790443,0.17407447099686,-0.15513506531715],[0.048247333616018,0.084922157227993,-0.06713479757309],[-0.28608822822571,-0.056643597781658,-0.21067047119141]],[[-0.093016162514687,0.0048819975927472,0.14960777759552],[0.090552121400833,-0.025997452437878,0.25393804907799],[-0.091387562453747,0.015981843695045,0.041433647274971]],[[-0.11400888115168,0.053899463266134,-0.11604142934084],[-0.080918602645397,0.061081305146217,-0.035553183406591],[0.030976517125964,-0.031236128881574,0.033429935574532]],[[-0.01758467592299,0.083437047898769,0.14933690428734],[-0.19117468595505,0.055123068392277,-0.0567337423563],[0.0059428410604596,0.044702209532261,-0.093800634145737]],[[-0.033071734011173,-0.30219104886055,-0.089894689619541],[0.078943863511086,-0.23944519460201,0.094404868781567],[0.057630758732557,0.068903900682926,0.13334469497204]],[[-0.1891837567091,0.0058567067608237,-0.034108359366655],[0.091497860848904,-0.049897257238626,-0.049782816320658],[-0.13280335068703,-0.02661425806582,-0.12170942127705]],[[0.25312632322311,-0.0099071254953742,0.0088708372786641],[0.052294846624136,-0.010573838837445,-0.21286380290985],[0.096567876636982,0.087791472673416,-0.22083610296249]],[[-0.044095609337091,-0.072793483734131,0.15989604592323],[0.037399381399155,0.07797609269619,-0.23262587189674],[-0.17842316627502,0.043123755604029,-0.36971122026443]],[[-0.07289557158947,0.39208260178566,0.096932902932167],[-0.15481127798557,0.17365831136703,-0.10843594372272],[-0.16128838062286,0.056430768221617,-0.23242086172104]],[[-0.1949924826622,-0.1610459536314,0.040696557611227],[-0.039543073624372,-0.15044811367989,-0.0072142160497606],[-0.12440074235201,-0.02849193662405,0.03133350610733]],[[-0.0092945452779531,-0.017939548939466,-0.034180119633675],[0.065948255360126,0.16738514602184,0.03388299420476],[0.056433290243149,0.065166473388672,-0.083328075706959]],[[-0.20607531070709,-0.02548942156136,-0.036925945430994],[-0.088504582643509,-0.078939869999886,0.028450734913349],[0.42637073993683,-0.12289205938578,-0.061652157455683]],[[-0.016632383689284,-0.082518182694912,-0.13613855838776],[0.11229123175144,0.070982158184052,-0.05711318179965],[-0.037159010767937,0.058379508554935,0.057401854544878]],[[0.02378960326314,-0.11461102962494,0.012560191564262],[0.089465864002705,-0.15285266935825,0.026233138516545],[-0.0059483083896339,0.00068566470872611,0.15271700918674]],[[-0.08378779143095,0.11916755884886,-0.46293678879738],[0.15675267577171,0.044483166188002,-0.1703085899353],[0.16952735185623,-0.045616321265697,0.12081228941679]],[[-0.053538743406534,0.06625884771347,0.11716677993536],[-0.10289145261049,0.024654414504766,0.055677212774754],[-0.23561000823975,-0.10403546690941,0.037086747586727]],[[-0.020742747932673,0.041897535324097,-0.13144026696682],[0.060390803962946,0.049477133899927,0.088343806564808],[-0.018752489238977,0.055265635251999,0.020985510200262]],[[0.067256130278111,0.055145397782326,0.17877335846424],[0.035413209348917,-0.18722435832024,-0.11081078648567],[-0.016954850405455,-0.18178653717041,0.099744498729706]],[[0.065196610987186,-0.20679315924644,0.13019561767578],[0.2539883852005,-0.066620819270611,0.16686058044434],[0.26315230131149,-0.022230381146073,0.11563643813133]],[[-0.056938771158457,-0.012172510847449,-0.095634303987026],[0.056603878736496,-0.076820895075798,-0.067224562168121],[0.039527092128992,-0.057911496609449,0.0072128805331886]],[[-0.0043951622210443,0.0045396396890283,0.0036108235362917],[0.071164578199387,-0.13658514618874,-0.056583393365145],[-0.069550454616547,-0.15435640513897,-0.011108997277915]],[[0.053075041621923,0.13561409711838,-0.010573945939541],[0.02882376499474,0.027646578848362,-0.1158627346158],[0.00038634301745333,-0.0075309653766453,-0.019212316721678]],[[0.057405032217503,0.058199182152748,0.15002554655075],[-0.061149697750807,-0.04864563792944,0.033621996641159],[0.12304189801216,-0.025508370250463,0.028455104678869]],[[0.35500380396843,0.14829286932945,0.053960718214512],[0.10011956095695,-0.012029238976538,0.028858987614512],[0.0055463467724621,-0.033526137471199,0.15706101059914]],[[0.13091313838959,-0.011748285032809,0.027710409834981],[-0.04399174451828,-0.17172047495842,-0.035772331058979],[0.014143765904009,-0.060476314276457,0.20878881216049]],[[0.1267307549715,-0.027050541713834,-0.0038716262206435],[0.061187103390694,-0.13770784437656,0.046890575438738],[0.045766454190016,0.12921389937401,0.17142124474049]],[[0.087225645780563,-0.066963128745556,0.22516757249832],[0.19456678628922,-0.088129043579102,-0.0067671714350581],[0.044599372893572,-0.10656597465277,0.050750032067299]],[[0.013148942962289,-0.12938964366913,0.26247316598892],[0.1466138958931,-0.11688183248043,0.042415998876095],[0.094984769821167,-0.011292818002403,-0.078101083636284]],[[-0.058811515569687,-0.05064807087183,-0.036986146122217],[0.12014290690422,-0.017789445817471,-0.077801749110222],[-0.063006766140461,0.11133664101362,-0.025063535198569]],[[-0.050959646701813,0.031651675701141,0.021693021059036],[0.0019622393883765,-0.0216352827847,-0.033783789724112],[-0.11307063698769,-0.083402462303638,-0.099388629198074]],[[0.014537333510816,-0.048060573637486,-0.038956560194492],[0.0017228479264304,0.027332227677107,-0.0099988412111998],[-0.014994439668953,-0.059607077389956,0.0062688337638974]],[[-0.25996667146683,-0.2589328289032,-0.16753567755222],[-0.12201790511608,-0.049422070384026,-0.018656378611922],[-0.11378824710846,0.068098798394203,0.21087519824505]],[[0.049089178442955,0.050692696124315,-0.11445128917694],[0.092000275850296,0.15223258733749,-0.045340199023485],[-0.17082248628139,0.16736403107643,0.094497077167034]],[[-0.052581209689379,-0.15764208137989,0.046825144439936],[0.039542738348246,-0.00062451016856357,-0.093523323535919],[-0.085897915065289,0.086353644728661,-0.11936924606562]],[[0.064301773905754,0.13250379264355,-0.01738359965384],[-0.044827505946159,0.16018769145012,-0.25051924586296],[-0.11675649881363,-0.073627658188343,0.071816965937614]],[[-0.026964001357555,0.14322802424431,0.024396477267146],[-0.092306293547153,-0.041399519890547,-0.083710908889771],[-0.14215512573719,0.039338458329439,-0.063920900225639]],[[0.0073209945112467,-0.074678063392639,0.20357020199299],[0.080368094146252,-0.0079390201717615,0.10334232449532],[0.17167435586452,-0.0073497439734638,0.10229158401489]]],[[[0.042507644742727,-0.024954210966825,-0.024314723908901],[-0.0043278555385768,-0.0072617698460817,0.060057159513235],[-0.064097993075848,-0.018651446327567,0.076607689261436]],[[0.0062372949905694,0.029240256175399,0.024545162916183],[-0.0066613093949854,0.028738556429744,0.052352573722601],[0.011109240353107,0.07281831651926,-0.052467551082373]],[[0.059882115572691,-0.035001635551453,-0.025862900540233],[0.075311295688152,-0.075913108885288,-0.047871999442577],[-0.036221027374268,0.06137190759182,-0.056508287787437]],[[0.021522162482142,-0.050224635750055,-0.049073997884989],[0.015917493030429,-0.099228426814079,0.028708308935165],[0.034841906279325,-0.1034481972456,-0.043115139007568]],[[0.015036456286907,0.024669481441379,0.035062085837126],[-0.051688984036446,0.069419287145138,-0.015108434483409],[-0.046782366931438,0.015790173783898,0.034818928688765]],[[-0.038889121264219,-0.015847500413656,0.021773301064968],[0.081253588199615,-0.0653395652771,-0.058114383369684],[0.026483610272408,-0.084126777946949,-0.05337480455637]],[[-0.0082904286682606,-0.059030849486589,-0.022399397566915],[-0.046472579240799,-0.036686733365059,-0.04934723675251],[0.033206284046173,0.049736153334379,0.00011929169704672]],[[0.051319446414709,0.0090863686054945,0.051221244037151],[-0.047618709504604,0.031117906793952,0.045817255973816],[-0.034974709153175,0.0061410870403051,-0.033134661614895]],[[-0.030429925769567,0.035768713802099,0.01736955717206],[-0.047778822481632,0.065671794116497,-0.040377631783485],[0.031892776489258,0.073570929467678,0.013602454215288]],[[-0.059641569852829,-0.02961353212595,-0.090578354895115],[-0.0090893097221851,0.017303682863712,-0.10534530878067],[0.014415640383959,-0.052294563502073,0.00048852839972824]],[[0.042197100818157,0.023301275447011,0.088220179080963],[0.045141916722059,0.057044580578804,0.019427143037319],[0.0023220330476761,0.021156430244446,-0.019558466970921]],[[0.052799601107836,-0.031527578830719,-0.097386851906776],[0.061384398490191,0.054539650678635,-0.0126574318856],[0.021608170121908,0.01519410405308,0.077191777527332]],[[-0.041394636034966,-0.026853466406465,-0.038430437445641],[0.042946711182594,-0.028363488614559,-0.058828685432673],[0.065583482384682,-0.019055884331465,-0.016420623287559]],[[0.036150172352791,-0.021128717809916,-0.074166305363178],[0.027282049879432,-0.066731482744217,-0.045435860753059],[0.064856007695198,-0.030638389289379,-0.089234404265881]],[[-0.024055328220129,-0.01758873835206,0.02153268456459],[-0.055439330637455,-0.0018715261248872,-0.045993555337191],[-0.021483283489943,-0.015257393009961,0.023130245506763]],[[-0.0056685567833483,0.0039167827926576,0.11387921124697],[0.054037537425756,-0.023474268615246,0.027851736173034],[0.002986861160025,-0.05707561224699,-0.02356761880219]],[[-0.016333669424057,-0.021708942949772,-0.023527048528194],[0.045003853738308,0.02909935079515,0.005314682610333],[0.0049342857673764,-0.034883826971054,0.095752470195293]],[[0.068173132836819,-0.012064815498888,0.068838223814964],[0.085975639522076,0.035203449428082,-0.0091912085190415],[-0.030412364751101,-0.0056250523775816,0.0051903449930251]],[[0.13056944310665,0.014540240168571,-0.10758067667484],[0.049990504980087,-0.082183219492435,-0.01128335762769],[-0.013367275707424,0.041535075753927,0.028673080727458]],[[-0.029139747843146,0.04539380595088,-0.02946000918746],[0.076596342027187,0.043205734342337,-0.030925353989005],[-0.01628833077848,0.084365285933018,-0.08190494030714]],[[-0.059785146266222,0.021288210526109,0.014742062427104],[-0.087178103625774,-0.023697387427092,0.047083474695683],[-0.053351607173681,0.0054390300065279,-0.029816841706634]],[[-0.016472864896059,0.032121445983648,0.0035083077382296],[-0.012432934716344,0.074533469974995,0.0057183504104614],[-0.034120794385672,-0.015638681128621,-0.0048440056852996]],[[-0.092943333089352,-0.039601605385542,-0.039529953151941],[0.019542522728443,0.061752311885357,-0.010322386398911],[0.058806378394365,0.082854136824608,-0.0039856438525021]],[[0.031855676323175,0.012758020311594,0.015696113929152],[0.01262884400785,-0.079454734921455,-0.05458565056324],[0.067905627191067,-0.041193667799234,-0.010716966353357]],[[-0.016189416870475,-0.050666525959969,0.016034005209804],[0.014394289813936,0.029696116223931,0.040076363831758],[0.022154305130243,-0.096467331051826,0.0075624114833772]],[[-0.014766396954656,0.032713364809752,-0.028454562649131],[-0.079367250204086,0.038072247058153,-0.0608922354877],[-0.077232465147972,0.083016276359558,0.081669256091118]],[[-0.046670768409967,-0.068113714456558,-0.082960411906242],[0.035106245428324,0.013511825352907,-0.036008335649967],[-0.011809222400188,0.0085629094392061,-0.01509424764663]],[[-0.0072685834020376,0.10673128813505,-0.056079346686602],[-0.0054323831573129,-0.061312548816204,0.031920362263918],[-0.031495168805122,0.00046703525003977,0.085705243051052]],[[0.096412912011147,0.0045502781867981,0.031335160136223],[-0.026687674224377,0.025074439123273,-0.10811275988817],[0.069555789232254,-0.01041245739907,0.0057560293935239]],[[0.020410070195794,-0.0080455662682652,0.020567879080772],[0.081819199025631,-0.034021094441414,0.0030168744269758],[0.014878670684993,-0.010529449209571,0.0039290767163038]],[[-0.032716099172831,-0.025737013667822,-0.03727425262332],[-0.039558526128531,0.020313706248999,0.023783583194017],[-0.022011851891875,0.10024093836546,0.03030276671052]],[[0.0017567577306181,0.069736085832119,-0.031287707388401],[0.025645360350609,0.021802812814713,0.072843074798584],[0.082272656261921,0.045301117002964,0.037693150341511]],[[-0.053560558706522,0.076134882867336,0.070638284087181],[-0.070197872817516,0.013111675158143,0.087374828755856],[0.029434695839882,0.084451586008072,0.012394678778946]],[[0.046764243394136,0.011644356884062,-0.00846026558429],[0.058437503874302,0.018087612465024,0.007053763139993],[-0.0017525206785649,0.010886398144066,-0.019211804494262]],[[0.0068809264339507,-0.005737267434597,-0.0078123500570655],[-0.026050442829728,0.03288697078824,0.017885690554976],[-0.034491520375013,0.010598947294056,-0.040567427873611]],[[0.066778644919395,-0.037314429879189,0.00082531804218888],[-0.031743388622999,0.058236751705408,0.052908286452293],[-0.052579883486032,0.025015465915203,0.042187642306089]],[[0.013834901154041,-0.005054157692939,-0.037103708833456],[-0.016433283686638,-0.067495532333851,-0.022274537011981],[0.0058186333626509,-0.0040172291919589,0.011245656758547]],[[0.025590218603611,0.044247437268496,0.12081096321344],[0.038468189537525,0.057248000055552,0.075115583837032],[-0.0056049395352602,-0.01943944580853,-0.11639814078808]],[[0.060430739074945,0.053835220634937,0.066709592938423],[0.059346657246351,-0.0074794637039304,0.068628057837486],[0.032902304083109,0.024817444384098,0.028785420581698]],[[-0.010172101669014,-0.011577970348299,-0.063400976359844],[0.064228676259518,-0.041273713111877,0.072246417403221],[-0.077006697654724,0.014894348569214,0.049738071858883]],[[0.020404612645507,0.045765653252602,-0.04766908288002],[0.058944690972567,0.024235853925347,-0.018676852807403],[-0.04202913865447,0.055818151682615,-0.076299749314785]],[[0.042393431067467,-0.013390996493399,-0.03524275124073],[-0.014586320146918,-0.043423522263765,-0.15128147602081],[-0.070601612329483,-0.058196235448122,-0.054835043847561]],[[0.024517647922039,-0.074718296527863,0.011693889275193],[0.0085166990756989,-0.037630792707205,-0.05732211843133],[0.0052656857296824,-0.017548562958837,0.033626332879066]],[[-0.044192831963301,-0.0036998735740781,0.011207806877792],[-0.058239828795195,0.029804468154907,0.0024262317456305],[-0.056718409061432,-0.0090446965768933,0.048918720334768]],[[-0.10333971679211,0.00039787098648958,-0.00024197829770856],[-0.003922778647393,0.024453232064843,0.03465697914362],[0.097957044839859,0.068680815398693,0.033638041466475]],[[0.0028194384649396,-0.038246255367994,0.041648548096418],[0.011013898067176,-0.032414823770523,0.0060434201732278],[0.061421327292919,-0.0021233374718577,-0.001950831967406]],[[0.025800451636314,-0.040241811424494,-0.069071486592293],[0.035016570240259,0.038885239511728,-0.046245761215687],[-0.015365663915873,-0.0035375675652176,-0.029806271195412]],[[0.0024944762699306,-0.029340956360102,-0.052533458918333],[-0.038311187177896,0.0083807138726115,-0.024551326408982],[-0.051089555025101,0.036409217864275,0.038685262203217]],[[0.0011854682816193,0.031616874039173,0.019062453880906],[-0.027605503797531,0.008573935367167,-0.034831065684557],[-0.063137911260128,0.032570868730545,0.010810738429427]],[[-0.015203133225441,-0.0046502398326993,-0.070509746670723],[-0.049480274319649,-0.06601956486702,-0.050504274666309],[-0.057671632617712,0.054733213037252,-0.0066500371322036]],[[-0.045401349663734,0.1302557438612,0.0034224195405841],[0.0049747317098081,0.005441184155643,0.11559277027845],[-0.038112696260214,-0.074089206755161,0.077073998749256]],[[-0.05083942040801,0.012607442215085,0.0093181049451232],[-0.01054076012224,-0.023808626458049,0.012699043378234],[0.052765376865864,-0.033185679465532,-0.044453978538513]],[[-0.014398980885744,0.061263903975487,-0.016033755615354],[0.0011739559704438,-0.0030630561523139,-0.052402995526791],[-0.016637086868286,-0.027148675173521,-0.01319095492363]],[[-0.0005640501040034,0.036464460194111,0.0072369822300971],[0.071497246623039,-0.012187597341835,-0.042798992246389],[-0.0021668039262295,0.085689589381218,0.022478865459561]],[[0.061404205858707,0.085486821830273,0.039243191480637],[0.10781319439411,0.063017472624779,0.062971174716949],[0.006807962898165,0.022247970104218,-0.051487188786268]],[[0.011348675005138,0.085651241242886,-0.01600044220686],[0.019084066152573,-0.070550829172134,-0.036845739930868],[-0.059794537723064,-0.11528512835503,-0.0020740726031363]],[[-0.0042627872899175,-0.074639976024628,-0.035395592451096],[-0.037977740168571,-0.0239597260952,0.017908357083797],[-0.0031821259763092,0.032818753272295,-0.030709562823176]],[[-0.024773858487606,0.038484618067741,-0.0098809720948339],[-0.030601397156715,0.052959598600864,-0.027771612629294],[0.01875901222229,-0.016720583662391,0.055535744875669]],[[-0.0020788933616132,0.0068720090202987,-0.015817642211914],[-0.0089285019785166,-0.050915148109198,-0.029664484784007],[-0.053051739931107,-0.026029467582703,-0.031718734651804]],[[-0.045147143304348,-0.024814510717988,0.033573053777218],[-0.075739577412605,-0.05878933519125,-0.047559253871441],[-0.064526736736298,0.024104503914714,-0.039371605962515]],[[-0.0099063087254763,0.011197867803276,0.062979035079479],[0.035053450614214,0.014367490075529,-0.012748093344271],[0.048874601721764,-0.014559179544449,-0.021291188895702]],[[0.070952534675598,0.061138533055782,-0.022606432437897],[0.053719878196716,0.061716966331005,-0.10281425714493],[0.025490019470453,-0.013621657155454,-0.010506946593523]],[[-0.096970610320568,-0.0031059586908668,-0.078811317682266],[-0.0035958280786872,0.013862737454474,-0.079202093183994],[0.0079055791720748,0.099057041108608,-0.011033355258405]],[[-0.04250218346715,0.017630299553275,0.00027249471168034],[0.029802123084664,-0.097890146076679,-0.030287593603134],[-0.00018156156875193,-0.036940321326256,-0.074706591665745]],[[-0.060334526002407,-0.034281779080629,-0.11598858982325],[-0.054627623409033,-0.029554713517427,-0.051314756274223],[-0.089471571147442,8.3189341239631e-05,-0.054057132452726]],[[-0.070662140846252,-0.0047775711864233,-0.051230452954769],[-0.014038765802979,-0.086946412920952,0.010441010817885],[0.0024153690319508,-0.046352844685316,-0.032716203480959]],[[-0.034084293991327,0.075498253107071,-0.085607305169106],[0.065558768808842,-0.051431532949209,-0.031838107854128],[-0.038162793964148,-0.087449386715889,-0.013716357760131]],[[-0.0070639122277498,0.010570730082691,-0.011860742233694],[0.006016003433615,0.036176305264235,0.053177777677774],[-0.071495160460472,0.018144052475691,0.062846302986145]],[[0.027034090831876,0.11838795989752,-0.035657811909914],[-0.048185355961323,-0.031260646879673,-0.025103103369474],[-0.080984719097614,-0.01097487937659,-0.0036815549246967]],[[-0.058921594172716,0.054953824728727,-0.0011807839618996],[-0.0072666760534048,0.00090979185188189,0.020860807970166],[-0.027486003935337,-0.041622459888458,-0.025504767894745]],[[0.0090509690344334,0.0040539633482695,0.03392330929637],[-0.011347554624081,-0.011990854516625,-0.019236074760556],[0.066354498267174,0.0013533619930968,-0.0025408887304366]],[[-0.032934378832579,-0.015520831570029,-0.0076112439855933],[-0.0033221582416445,-0.010558137670159,0.032990448176861],[-0.036212578415871,-0.041981093585491,-0.027531690895557]],[[0.045191694051027,0.020523276180029,0.097909346222878],[-0.01124913059175,-0.0042143114842474,0.014531553722918],[-0.011116112582386,0.026060231029987,0.055750381201506]],[[-0.1111246496439,0.017446400597692,-0.0071830344386399],[-0.070759192109108,-0.065153926610947,-0.033551666885614],[-0.027465960010886,-0.0019789878278971,-0.062537953257561]],[[0.043906476348639,0.031194284558296,0.031729508191347],[0.09951551258564,0.072826735675335,-0.02178736589849],[0.015798952430487,0.061570405960083,0.083251036703587]],[[0.027162995189428,-0.015689626336098,-0.01339051220566],[0.090381652116776,0.020767709240317,-0.026745688170195],[0.073025234043598,0.085341729223728,-0.0015301945386454]],[[-0.030482200905681,-0.07884656637907,0.059857215732336],[-0.02013423293829,0.0098654329776764,0.029945120215416],[-0.028825528919697,0.069881856441498,-0.00085853564087301]],[[-0.053513620048761,-0.0069488049484789,0.012936741113663],[0.028992114588618,0.018948581069708,0.028198011219501],[0.02970977127552,0.0010347415227443,0.062766753137112]],[[0.043378382921219,0.045293778181076,-0.0041767945513129],[-0.009579480625689,0.027640281245112,-0.057224426418543],[-0.05885062739253,0.013360626064241,0.035099662840366]],[[-0.020383816212416,-0.040500108152628,-0.031890861690044],[0.0058811497874558,-0.052804600447416,-0.0080098509788513],[0.0078184185549617,0.048167433589697,0.011175231076777]],[[0.028931975364685,-0.082035519182682,-0.035368680953979],[0.042997568845749,-0.050262629985809,0.0094633819535375],[0.071287415921688,0.011053711175919,-0.054554600268602]],[[0.0032625843305141,-0.057752966880798,0.024495301768184],[-0.0062092244625092,-0.015375199727714,-0.027242302894592],[0.12472285330296,0.028877791017294,-0.01183299254626]],[[-0.025553997606039,-0.094443261623383,0.09491603821516],[-0.044481582939625,0.11292987316847,0.0076886131428182],[0.0044716806150973,-0.024729497730732,-0.032397676259279]],[[-0.02170842513442,-0.047407109290361,-0.027648441493511],[-0.043371289968491,-0.040582213550806,-0.075493007898331],[0.0066238325089216,-0.014432076364756,-0.05009051412344]],[[-0.12468606233597,0.0083967447280884,-0.015915954485536],[-0.026404965668917,0.029124803841114,-0.04520570114255],[-0.030480461195111,-0.0070378249511123,-0.074170306324959]],[[0.037566050887108,-0.062284007668495,-0.0641083791852],[-0.016124986112118,0.075887843966484,0.019288867712021],[0.015103853307664,0.053564470261335,0.023209212347865]],[[-0.017169550061226,-0.036414552479982,0.03357620537281],[-0.021639470010996,-0.11599610745907,-0.030486475676298],[-0.035591531544924,-0.098273001611233,-0.055842630565166]],[[-0.068871460855007,-0.032209809869528,-0.03787088394165],[-0.045412439852953,-0.0062374975532293,0.059651661664248],[0.0013461647322401,-0.07150200009346,-0.0061172591522336]],[[0.0497653670609,0.034124854952097,-0.014172567985952],[-0.018668603152037,-0.053500391542912,-0.033662933856249],[0.02478501200676,-0.0063623148016632,-0.059510968625546]],[[0.021093778312206,0.033047411590815,0.049990374594927],[0.025436716154218,0.043846234679222,0.058264847844839],[-0.0050064921379089,0.054889772087336,0.0065156542696059]],[[0.0032353282440454,0.055922381579876,0.05140445381403],[0.052289124578238,0.018415806815028,-0.014262776821852],[0.021170252934098,-0.093153491616249,-0.041001282632351]],[[0.04785518348217,-0.029330402612686,0.01281450688839],[0.088821902871132,-0.0045816418714821,0.01955734193325],[0.031154334545135,0.076940938830376,-0.062871806323528]],[[0.0084870597347617,0.036625735461712,-0.0073034521192312],[-0.042577277868986,0.063056282699108,-0.0050290217623115],[-0.037411462515593,-0.011632016859949,-0.13630656898022]],[[0.013872882351279,-0.012525038793683,-0.044868435710669],[0.014090635813773,-0.037021372467279,0.04142278060317],[-0.014697388745844,-0.017628513276577,0.01270451862365]],[[0.014584062620997,-0.033400446176529,-0.011394119821489],[-0.0066570281051099,-0.079769425094128,0.022018974646926],[0.034318011254072,0.0022477637976408,-0.063914515078068]],[[0.06614626199007,-0.064414523541927,0.017246996983886],[0.0050310478545725,-0.006113198120147,-0.020997680723667],[0.026890842244029,-0.11455554515123,-0.023491268977523]],[[-0.044773913919926,0.027158146724105,0.044514156877995],[-0.026039397343993,0.015517307445407,0.010527556762099],[-0.002566144336015,0.013611486181617,-0.081467680633068]],[[-0.043146256357431,0.00017138080147561,0.023765670135617],[-0.023874709382653,-0.037859749048948,0.034139651805162],[-0.12862206995487,-0.0028527381364256,-0.06993193179369]],[[0.016375318169594,-0.018117539584637,-0.062959708273411],[0.048363585025072,0.019098844379187,-0.036001238971949],[0.032332744449377,-0.023835361003876,0.0095244813710451]],[[-0.012357736937702,-0.011211216449738,0.027312083169818],[-0.075239881873131,0.018064374104142,0.072973258793354],[-0.022817092016339,0.044095128774643,0.10228585451841]],[[0.0022751777432859,-0.10636343061924,0.042248010635376],[-0.045286793261766,-0.06463772803545,0.024824632331729],[0.10169541090727,0.0080780712887645,0.016337148845196]],[[-0.052261117845774,-0.049849230796099,-0.0082148164510727],[-0.0131871458143,-0.020030388608575,-0.011554472148418],[0.045424059033394,0.042005978524685,0.06778422743082]],[[-0.022388838231564,-0.014564985409379,0.033446557819843],[-0.0045730313286185,-0.046330869197845,0.0060325874947011],[-0.028232514858246,0.014515056274831,-0.046989616006613]],[[0.084250837564468,0.0073459367267787,-0.044687572866678],[0.042387660592794,-0.063309915363789,0.011056423187256],[0.0027879315894097,-0.11075044423342,-0.011896712705493]],[[0.039217974990606,-0.019951332360506,-0.00065201963298023],[-0.046750981360674,-0.043376542627811,-0.016081904992461],[0.033034864813089,-0.051889274269342,0.0058818864636123]],[[0.007352284155786,0.017491322010756,0.035037118941545],[0.09041690081358,-0.028481254354119,0.017173016443849],[0.028542788699269,-0.043516330420971,-0.073750697076321]],[[0.038402263075113,-0.091764904558659,0.0064400653354824],[0.036511965095997,0.032802078872919,0.045250654220581],[0.032084546983242,0.10352000594139,-0.0082827191799879]],[[0.036705244332552,0.053765431046486,0.0097562689334154],[0.0073809963651001,-0.0049459054134786,0.051241237670183],[0.024682043120265,0.041338995099068,-0.023766992613673]],[[0.096160523593426,-0.045734122395515,-0.0046462751924992],[0.028821788728237,-0.057783260941505,0.077482983469963],[-0.060946147888899,-0.075579255819321,-0.08543922752142]],[[0.09344369918108,0.019806288182735,0.038512632250786],[0.010801637545228,-0.0042339656502008,-0.0039118891581893],[0.03117586299777,-0.024808613583446,-0.01533271651715]],[[0.019594620913267,-0.0089215114712715,-0.00035698129795492],[-0.015661651268601,-0.080785840749741,-0.09658794850111],[0.016753807663918,-0.011933889240026,-0.066394545137882]],[[0.013409268110991,0.015641057863832,0.022303117439151],[-0.025142412632704,-0.043398819863796,0.016806129366159],[-0.081490978598595,-0.026019223034382,-0.017677513882518]],[[-0.0078286798670888,-0.033623777329922,-0.051365714520216],[0.012712854892015,0.05080384016037,-0.073576152324677],[0.023206368088722,0.03125337511301,0.010336547158659]],[[-0.024965412914753,-0.0015692802844569,0.08298010379076],[0.011289332993329,0.073050610721111,-0.0073888599872589],[0.099769338965416,0.0096302898600698,0.011597412638366]],[[0.011294206604362,0.028503539040685,0.094161733984947],[0.019537765532732,-0.089179627597332,0.069306135177612],[0.026792619377375,-0.059143021702766,-0.018806317821145]],[[0.024346265941858,-0.020670240744948,0.078988291323185],[-0.07736224681139,0.03281594440341,0.042290534824133],[-0.045587290078402,0.015989873558283,0.10452494770288]],[[0.012028539553285,0.031198918819427,0.019040694460273],[-0.034817166626453,0.026376603171229,-0.030719576403499],[0.076824799180031,-0.0026852379087359,-0.070634223520756]],[[-0.030606903135777,-0.023929877206683,0.036129605025053],[-0.070589184761047,-0.01441843714565,-0.082811594009399],[0.016387356445193,0.095721401274204,0.036050919443369]],[[-0.0056582153774798,0.0082657709717751,-0.033688221126795],[-0.011444685980678,0.029632233083248,0.045416530221701],[0.014451145194471,-0.079624742269516,-0.023428799584508]],[[0.010863005183637,-0.068916440010071,-0.056573901325464],[0.0014564397279173,0.073489397764206,0.10913580656052],[0.065127365291119,0.066742599010468,0.10956874489784]],[[-0.087518282234669,-0.001773392315954,-0.028405355289578],[0.049614634364843,0.04267405718565,-0.00091708829859272],[-0.038813434541225,0.10334084182978,0.10606034845114]],[[-0.019486598670483,-0.026136731728911,-0.10028585791588],[-0.031402137130499,-0.023868592455983,-0.034218706190586],[0.0025358316488564,-0.051204707473516,-0.098114527761936]],[[0.085369519889355,0.046103175729513,0.0057335086166859],[-0.03965874761343,-0.010727101936936,0.00084377964958549],[0.053904097527266,0.039872784167528,-0.012172686867416]],[[-0.075679421424866,0.02927421964705,0.0028838433790952],[0.045114450156689,-0.035598058253527,-0.0092524914070964],[0.010771051049232,-0.11916103959084,-0.042444832623005]],[[0.049344316124916,-0.083423413336277,0.07938788831234],[0.0038607600145042,-0.042478635907173,-0.074521884322166],[-0.11654548346996,0.056581497192383,-0.021515803411603]],[[-0.042504277080297,0.043654933571815,-0.10902243107557],[0.02160308137536,0.043072398751974,0.028100380674005],[0.077936343848705,0.12222827970982,-0.05791849270463]],[[0.01136982999742,-0.0010812405962497,0.10556503385305],[-0.071162045001984,0.0029048996511847,0.070929884910583],[-0.063358277082443,-0.048293761909008,0.0031512333080173]],[[-0.025607112795115,-0.00091415114002302,0.043593343347311],[0.065917797386646,0.023106746375561,0.020407453179359],[0.041427612304688,-0.020634055137634,-0.03581627830863]]],[[[0.027307054027915,0.17111228406429,0.13149119913578],[0.0058858632110059,0.123559884727,-0.086901940405369],[-0.087479203939438,0.1631021797657,0.012187252752483]],[[-0.030094472691417,-0.083339914679527,-0.070954225957394],[0.050314150750637,-0.038311917334795,-0.078065350651741],[0.016205687075853,-0.059521742165089,0.12084328383207]],[[0.083637148141861,-0.0088838925585151,0.038538135588169],[-0.0027971398085356,-0.032155264168978,0.013680567033589],[0.00017128478793893,-0.038914728909731,-0.016984310001135]],[[-0.074886746704578,0.060786079615355,0.0077066193334758],[-0.11849073320627,-0.014885775744915,0.024179700762033],[-0.066177420318127,-0.074230246245861,-0.011349708773196]],[[0.00068517413455993,0.013983243145049,-0.052938524633646],[0.046633746474981,0.072659201920033,-0.030010089278221],[-0.013460370711982,0.0074615245684981,-0.0074958642944694]],[[0.011698849499226,0.16432857513428,0.059581242501736],[-0.10381370037794,-0.023042634129524,0.036749929189682],[0.32759088277817,-0.11079522222281,-0.14122241735458]],[[0.0016534628812224,-0.1095886528492,0.20681230723858],[0.0023344359360635,0.059817124158144,0.013087053783238],[0.10194850713015,0.01642887853086,0.040143791586161]],[[0.0068985288962722,-0.011865680105984,0.0036144559271634],[0.014652751386166,-0.091428503394127,0.080922596156597],[0.017662059515715,-0.095550917088985,0.20326535403728]],[[0.037622433155775,-0.01616583019495,-0.017441809177399],[0.024391064420342,-0.040854915976524,-0.032277993857861],[-0.034366343170404,-0.061506520956755,-0.058572173118591]],[[-0.075397588312626,0.020984601229429,0.013985282741487],[-0.080485753715038,0.018428601324558,-0.010617553256452],[-0.080018565058708,0.020831417292356,0.018413556739688]],[[0.08626751601696,-0.064348228275776,-0.06122051179409],[0.17063309252262,0.099270954728127,0.013278343714774],[-0.077111274003983,0.10451330989599,0.049248278141022]],[[-0.066277183592319,0.074937611818314,0.016129340976477],[0.0059176152572036,0.0015590301482007,0.0079169189557433],[-0.057169839739799,-0.098309777677059,0.079195231199265]],[[-0.0026174243539572,-0.07317778468132,0.10531955212355],[0.026752522215247,0.0090087112039328,-0.10796368867159],[0.05092054978013,0.0096326731145382,0.041924241930246]],[[0.031920779496431,-0.055408332496881,0.006959374062717],[-0.0012843823060393,-0.047194920480251,-0.034397523850203],[0.0060604140162468,-0.096416920423508,0.016231629997492]],[[-0.049700263887644,0.026169680058956,0.032326579093933],[0.067293420433998,-0.0069089848548174,-0.0071657202206552],[-0.027607217431068,0.06739005446434,0.082510128617287]],[[-0.047382097691298,0.050949614495039,-0.070782124996185],[0.0082260761409998,0.11571416258812,0.057505331933498],[-0.10767529159784,-0.017682677134871,0.12390888482332]],[[0.080492801964283,0.049476783722639,-0.08694152534008],[0.096776641905308,0.013482317328453,-0.064416281878948],[-0.12491039186716,-0.033373221755028,-0.05490155518055]],[[0.094515204429626,0.0033730776049197,-0.059284817427397],[0.077174052596092,-0.041944425553083,-0.033691503107548],[-0.068753227591515,0.09620101749897,0.035720977932215]],[[-0.019680846482515,0.068757496774197,-0.040107544511557],[0.081176944077015,0.13495080173016,0.10593263804913],[0.019234608858824,0.087010979652405,0.070902854204178]],[[0.047465667128563,0.06834564357996,0.05160665512085],[-0.1169319152832,-0.11827543377876,-0.037148449569941],[-0.018786825239658,-0.012600031681359,0.047162514179945]],[[-0.022552795708179,-0.11135372519493,-0.090956434607506],[-0.00052302022231743,-0.030728600919247,-0.079227231442928],[-0.039724476635456,0.043750684708357,-0.046300202608109]],[[-0.050241537392139,-0.012777080759406,-0.02871330268681],[0.084448844194412,0.15729555487633,-0.011321756988764],[0.0059003033675253,0.075992435216904,-0.079027883708477]],[[-0.034403860569,-0.0023294112179428,-0.0089654633775353],[0.23119397461414,0.11746453493834,0.0027026236057281],[-0.11587295681238,-0.012482544407248,0.13343465328217]],[[-0.11428959667683,0.00052353879436851,0.11878537386656],[-0.10094124823809,-0.04307472333312,0.00066425354452804],[0.078160189092159,-0.099849678575993,0.0027198973111808]],[[-0.097436353564262,-0.019112458452582,0.0085494890809059],[-0.10799636691809,0.019432883709669,-0.025485958904028],[-0.1237897798419,0.21791924536228,0.18237955868244]],[[0.034607272595167,-0.024612536653876,-0.026085274294019],[0.032191153615713,-0.05260518565774,-0.01041363645345],[-0.035234745591879,0.0069816550239921,-0.073569387197495]],[[0.07230282574892,-0.035072915256023,0.043064180761576],[0.089505761861801,-0.0080956909805536,-0.045729797333479],[0.15362060070038,0.063679933547974,0.00078268413199112]],[[-0.053646545857191,0.029316367581487,-0.047688152641058],[0.015665922313929,0.053828980773687,0.039191737771034],[-0.017287991940975,-0.04939978197217,-0.083931960165501]],[[-0.13024146854877,-0.13605678081512,0.045193880796432],[-0.086867824196815,0.12110435962677,0.0066018220968544],[-0.087541751563549,-0.046229895204306,-0.096130520105362]],[[-0.10233364999294,-0.055460821837187,-0.15425965189934],[-0.22176969051361,-0.07475259155035,0.1445517539978],[-0.19740357995033,-0.01731026917696,-0.23650394380093]],[[-0.020286459475756,0.19566382467747,0.07030837982893],[0.078344292938709,-0.088592246174812,-0.08073303103447],[0.17924043536186,-0.044967949390411,-0.011821707710624]],[[-0.081098884344101,0.092963792383671,0.13211505115032],[0.10995279997587,0.08142713457346,-0.0067087239585817],[0.030962346121669,-0.034767989069223,-0.011262020096183]],[[0.073486164212227,0.08901359140873,0.020668024197221],[0.11936493217945,0.17316800355911,-0.12026201933622],[0.055303461849689,0.050980545580387,0.064559169113636]],[[0.10700686275959,-0.084894552826881,-0.032706040889025],[-0.0026716650463641,0.14844056963921,0.049230765551329],[0.017597453668714,0.094041585922241,-0.006226958706975]],[[-0.032630201429129,-0.0016644145362079,-0.11730093508959],[-0.033194281160831,-0.034488949924707,-0.051153764128685],[0.10684103518724,0.036071561276913,-0.022222582250834]],[[0.064131066203117,0.041553124785423,-0.0097520090639591],[0.051596418023109,-0.013403874821961,-0.06850603967905],[0.012826985679567,0.016425123438239,0.017870154231787]],[[-0.048871878534555,0.041566710919142,0.082962676882744],[-0.0067855305969715,0.00069862836971879,-0.08238497376442],[-0.030894199386239,0.0025623210240155,0.046131547540426]],[[-0.0052961586043239,0.030104041099548,0.054242271929979],[-0.11191452294588,-0.061157636344433,0.13840885460377],[0.065342128276825,-0.073850028216839,0.1951112896204]],[[-0.080752842128277,-0.044210407882929,-0.11425089091063],[-0.064700983464718,0.070883423089981,-0.17287394404411],[0.0715307071805,0.086969837546349,0.02077716588974]],[[0.04258481040597,0.02597520314157,0.062984727323055],[0.07104230672121,0.0078263897448778,0.13044622540474],[-0.087207935750484,0.029509393498302,0.087100356817245]],[[0.038073837757111,-0.012672170996666,0.013555617071688],[0.090101674199104,0.042150214314461,0.040518276393414],[0.073199428617954,0.081710152328014,-0.025323087349534]],[[0.035993047058582,0.0042166532948613,-0.018366489559412],[-0.066015936434269,-0.097651556134224,0.012999621219933],[0.12277572602034,0.021596904844046,-0.06637965887785]],[[-0.040157090872526,0.030739543959498,-0.054810013622046],[-0.080001376569271,-0.005822139326483,-0.082490906119347],[0.01588043384254,-0.075419582426548,-0.02984955534339]],[[0.038021124899387,-0.030891623347998,-0.0026030195876956],[-0.0048636361025274,-0.036358028650284,-0.047635141760111],[-0.0098863588646054,0.012704017572105,0.018167743459344]],[[-0.004537673201412,-0.038755912333727,-0.014856432564557],[-0.047258201986551,-0.087047807872295,-0.054291814565659],[0.094145953655243,0.098820433020592,-0.044553637504578]],[[0.031883340328932,0.01826455630362,0.0090620797127485],[-0.024643460288644,-0.039245910942554,0.030870541930199],[-0.048664420843124,-0.025204543024302,0.096443884074688]],[[0.13184458017349,-0.041955687105656,0.10153862088919],[0.042669922113419,0.0574523024261,0.026228429749608],[-0.11800392717123,0.071850761771202,-0.079043880105019]],[[-0.10556560009718,-0.040818948298693,-0.076452530920506],[-0.041493456810713,0.13858476281166,-0.065761804580688],[0.158870190382,0.027604633942246,0.011421806178987]],[[-0.068092226982117,0.056831162422895,-0.025219125673175],[0.18877428770065,0.045698761940002,0.18603499233723],[0.061286669224501,-0.012813382782042,-0.063968554139137]],[[-0.0076907882466912,0.043954782187939,0.045350100845098],[-0.052813429385424,-0.026368582621217,-0.0064321011304855],[-0.021695356816053,-0.002790734404698,0.019160268828273]],[[-0.18552476167679,0.074909657239914,-0.061690341681242],[-0.13891197741032,0.0014280617469922,0.035109288990498],[-0.039976689964533,-0.080184988677502,-0.018843661993742]],[[0.0040777898393571,-0.054199893027544,0.01016881223768],[-0.0028325214516371,0.12319608032703,0.016968814656138],[0.10022467374802,-0.11240543425083,-0.0020117366220802]],[[0.052863486111164,-0.045761186629534,-0.025371262803674],[-0.033564694225788,-0.066351190209389,0.10361833125353],[-0.020919701084495,-0.0063940142281353,0.044714450836182]],[[-0.068483181297779,0.021580565720797,0.092307515442371],[0.01907461322844,0.029798535630107,0.095970578491688],[0.032497983425856,-0.045906592160463,-0.0025085245724767]],[[-0.08308257162571,0.029288843274117,0.052576869726181],[-0.042759336531162,-0.048896737396717,-0.079741187393665],[-0.089582860469818,0.023867055773735,-0.013371286913753]],[[-0.12826690077782,0.025082314386964,0.094547040760517],[0.11411625146866,0.047929521650076,-0.0045296642929316],[0.16595290601254,0.11565953493118,0.093438789248466]],[[-0.097258724272251,0.024573834612966,0.052385061979294],[0.043172597885132,-0.052679616957903,-0.019666731357574],[-0.084321312606335,-0.023272229358554,0.094392351806164]],[[-0.063036888837814,0.0071063810028136,-0.12606561183929],[0.01036386564374,-0.0059537044726312,-0.056240636855364],[-0.029442755505443,-0.047377929091454,-0.20472450554371]],[[-0.013447878882289,-0.078834749758244,0.055874306708574],[-0.028832720592618,-0.077462404966354,-0.12850511074066],[-0.12190525978804,-0.054522465914488,-0.13231149315834]],[[0.084654040634632,-0.043127603828907,0.088754937052727],[-0.013237933628261,0.03248393535614,0.16879265010357],[-0.055194228887558,-0.086148470640182,0.15677858889103]],[[0.028453031554818,-0.010273955762386,0.014936680905521],[0.0082232393324375,-0.021328901872039,-0.11795093119144],[-0.050213433802128,-0.22687567770481,-0.1606270968914]],[[0.074906125664711,0.038918852806091,-0.019794441759586],[0.03035699762404,-0.013093785382807,-0.084451198577881],[-0.16635392606258,-0.21033847332001,-0.13613232970238]],[[-0.062158793210983,-0.07551671564579,-0.045897327363491],[-0.20621418952942,-0.00017359132471029,0.057211548089981],[0.063722297549248,0.009883432649076,0.10043279826641]],[[-0.0016639740206301,0.091174252331257,0.12086793780327],[0.046556811779737,0.14872442185879,0.17775569856167],[0.17175902426243,-0.074110873043537,0.062134649604559]],[[-0.090571440756321,-0.018480194732547,-0.037449795752764],[-0.051488626748323,-0.13488700985909,-0.034120760858059],[0.064060218632221,0.032544959336519,-0.012602156028152]],[[-0.024674866348505,0.0078833941370249,0.020038049668074],[0.013306142762303,0.048064589500427,0.058886218816042],[-0.062365379184484,0.029360298067331,0.029240960255265]],[[-0.028608353808522,0.016751358285546,-0.052750524133444],[-0.082952938973904,0.032620809972286,0.036186389625072],[0.050713147968054,0.090367391705513,0.080054961144924]],[[-0.0099147288128734,-0.042013399302959,-0.10507368296385],[0.0065943961963058,-0.052015587687492,0.00037821955629624],[0.028259603306651,-0.063976228237152,-0.085299916565418]],[[0.013586305081844,-0.043195519596338,0.01416939869523],[-0.041062530130148,-0.042042504996061,0.042929917573929],[-0.093016780912876,0.042101010680199,-0.039346657693386]],[[0.18681824207306,0.10167755186558,0.0058593200519681],[0.0068152914755046,0.019720874726772,-0.07492221146822],[-0.095551878213882,0.040372278541327,-0.061131052672863]],[[0.015820359811187,0.068738862872124,0.022142874076962],[-0.032822482287884,-0.079918786883354,0.13319945335388],[-0.12307046353817,-0.056233793497086,0.049412824213505]],[[0.10261829942465,0.0351407751441,0.062096130102873],[-0.096164047718048,-0.092692971229553,0.032646864652634],[-0.14711645245552,-0.036040384322405,0.15121024847031]],[[-0.034979678690434,-0.0087058022618294,-0.015073705464602],[0.012103551998734,0.048192378133535,0.066922530531883],[0.021582899615169,-0.043434452265501,0.022813899442554]],[[-0.02503052726388,-0.069425947964191,-0.10200672596693],[-0.015544267371297,-0.012978129088879,0.020426478236914],[0.023794244974852,-0.051996890455484,-0.079393237829208]],[[-0.031962312757969,0.052001979202032,-0.12162716686726],[0.0084037613123655,-0.045105464756489,-0.058257386088371],[-0.095509201288223,-0.037890270352364,0.0027842235285789]],[[0.074146948754787,-0.041921719908714,0.0066190953366458],[0.013071446679533,-0.015786251053214,-0.041424863040447],[0.037104438990355,-0.11663511395454,-0.12506578862667]],[[-0.045271568000317,0.052194256335497,-0.090574122965336],[-0.083614028990269,-0.13035829365253,-0.025030389428139],[0.052308492362499,-0.13991025090218,-0.02793494425714]],[[-0.080666050314903,0.013201964087784,-0.038208935409784],[-0.0078768357634544,0.0077750450000167,0.022360881790519],[0.039957493543625,-0.014990644529462,0.051930457353592]],[[0.11114900559187,-0.012842509895563,0.10022774338722],[0.1101648658514,-0.018766343593597,-0.021200681105256],[0.2318284958601,-0.055207379162312,-0.16393809020519]],[[-0.055734656751156,-0.0590500831604,-0.076787367463112],[-0.0371073782444,-0.11609675735235,0.024656299501657],[-0.029472993686795,-0.027818899601698,-0.023069879040122]],[[-0.010407110676169,-0.062116634100676,-0.061592113226652],[-0.11032991111279,-0.012532825581729,0.04797463491559],[-0.026056742295623,-0.20476602017879,-0.098942570388317]],[[0.018786961212754,-0.17924907803535,-0.070199050009251],[0.050586476922035,-0.017344005405903,0.20813632011414],[-0.1015497893095,-0.064409516751766,-0.1320553869009]],[[0.1964700371027,0.073496758937836,-0.036290243268013],[0.16050353646278,-0.039649907499552,-0.0040886127389967],[0.28184896707535,0.011461764574051,0.051615472882986]],[[-0.070694282650948,-0.054537165910006,0.0049533476121724],[-0.057274349033833,-0.024074057117105,0.068568579852581],[-0.12708187103271,-0.0074122077785432,-0.079104125499725]],[[-0.037841685116291,-0.10961113870144,0.095889739692211],[0.1014783680439,0.10348429530859,-0.0023397479671985],[-0.0041030803695321,0.053704023361206,0.08657793700695]],[[-0.019702173769474,-0.021695269271731,0.13838405907154],[-0.03305958211422,-0.060231551527977,0.01909819804132],[0.076020151376724,-0.10281373560429,-0.010599008761346]],[[0.079401269555092,-0.024744290858507,0.17019578814507],[0.031957440078259,0.036391865462065,0.0074721444398165],[0.036077037453651,0.17767407000065,0.0063652885146439]],[[0.095396667718887,0.012253338471055,0.060202065855265],[-0.010754345916212,0.034277345985174,-0.019481560215354],[0.0095693040639162,-0.0010555697372183,-0.0045996718108654]],[[-0.080914787948132,-0.031773164868355,0.1104574650526],[-0.11584213376045,-0.044500093907118,-0.038619104772806],[-0.10519948601723,0.012727063149214,-0.1246357858181]],[[0.07172953337431,0.12272187322378,0.024513946846128],[0.012293717823923,-0.01893363147974,-0.083564035594463],[-0.058316994458437,0.10003287345171,-0.084355004131794]],[[0.083636805415154,-0.1003255173564,-0.073481194674969],[0.0073788114823401,0.0048874882049859,-0.083560921251774],[0.30262431502342,0.10631825774908,-0.037916097790003]],[[-0.06949071586132,0.00060507439775392,-0.049563113600016],[-0.023863373324275,-0.030685601755977,0.0011980870040134],[0.016723815351725,0.01306866388768,0.049453679472208]],[[-0.0028030250687152,-0.09709694236517,0.17516216635704],[-0.13890831172466,-0.043949648737907,0.067952707409859],[0.072255983948708,-0.026886431500316,0.044842500239611]],[[-0.10800492018461,0.010838454589248,-0.017871029675007],[-0.0092942537739873,0.033605448901653,0.012245003134012],[0.072512067854404,0.046037074178457,0.053869612514973]],[[0.013160780072212,0.028842298313975,-0.032481916248798],[0.042247585952282,-0.03653559833765,-0.091491855680943],[0.11308687925339,0.099337674677372,0.14148080348969]],[[0.18002933263779,0.049679175019264,0.056207805871964],[-0.092905901372433,-0.075602233409882,-0.022883957251906],[-0.0099846487864852,0.058640629053116,-0.042215961962938]],[[-0.087253920733929,-0.035501226782799,0.0078418208286166],[0.011786552146077,-0.046022240072489,-0.11123188585043],[-0.055331248790026,-0.062634237110615,-0.23113594949245]],[[0.045655444264412,0.04994086548686,0.040303509682417],[0.0055920635350049,0.02471174672246,-0.015150657854974],[0.18389345705509,0.020663134753704,-0.16563932597637]],[[-0.051149882376194,0.033688958734274,-0.049561619758606],[-0.1690536737442,0.068188138306141,-0.089556999504566],[-0.16120263934135,0.041683629155159,-0.089042581617832]],[[0.046637836843729,0.033096231520176,0.12252159416676],[0.056329745799303,0.14766584336758,-0.011451420374215],[-0.0013536846963689,0.056052681058645,-0.051971819251776]],[[0.046582385897636,0.059272196143866,-0.031098181381822],[0.029105447232723,0.095436774194241,0.10259972512722],[-0.091208718717098,0.067746877670288,0.13723766803741]],[[0.048650346696377,0.05850625038147,0.095314800739288],[0.059964124113321,-0.10807303339243,-0.089147463440895],[0.047323387116194,0.0028217453509569,-0.035984802991152]],[[-0.032414875924587,0.090479679405689,-0.023130428045988],[-0.043534055352211,-0.07459856569767,0.063373573124409],[0.073428191244602,-0.061173766851425,-0.11571334302425]],[[-0.087088838219643,0.20468084514141,0.13475382328033],[-0.1894902586937,-0.024264108389616,-0.10696319490671],[0.18110072612762,-0.030771831050515,0.15701630711555]],[[-0.0062241298146546,0.093709297478199,0.12015733122826],[-0.037294670939445,-0.1446378827095,0.058670409023762],[-0.013922719284892,-0.12342454493046,-0.076969020068645]],[[0.019287839531898,-0.023909099400043,0.11484434455633],[0.051772888749838,-0.13475771248341,-0.0048699462786317],[-0.0036264546215534,-0.058716047555208,-0.060141388326883]],[[0.10180026292801,0.082231856882572,0.023484595119953],[0.00020876733469777,0.014020621776581,0.0192467328161],[-0.041556086391211,-0.092620685696602,0.078559167683125]],[[-0.084732607007027,-0.059204254299402,-0.027922637760639],[0.020424462854862,0.087759949266911,-0.052867621183395],[-0.069572128355503,0.16581277549267,0.10920114815235]],[[-0.004989177454263,0.058948516845703,0.050008680671453],[0.052795629948378,0.0051164757460356,-0.039841324090958],[0.013476026244462,0.04592739790678,-0.044777859002352]],[[-0.0072373440489173,0.026499142870307,0.046745989471674],[0.082759119570255,0.075129084289074,0.045977804809809],[0.1058988198638,-0.0011604339815676,0.0076441303826869]],[[-0.037640139460564,-0.061919789761305,-0.11936162412167],[0.091067880392075,0.069747716188431,-0.12319535762072],[0.0110023021698,0.0058310409076512,-0.11186952888966]],[[0.12396715581417,-0.12755374610424,0.020349178463221],[0.018543608486652,-0.055157333612442,0.078591197729111],[0.029743747785687,-0.020200364291668,0.10278403013945]],[[-0.049909871071577,0.018379954621196,0.0020356092136353],[0.054673843085766,0.086015865206718,0.00080760882701725],[0.099110424518585,-0.0052635762840509,-0.036737252026796]],[[0.058682303875685,0.18567623198032,-0.073697306215763],[0.079628437757492,-0.067058742046356,-0.028948817402124],[0.069613188505173,0.0319206379354,0.05622698366642]],[[-0.056884359568357,0.087133355438709,-0.048668287694454],[0.14685092866421,0.033400844782591,0.04701728746295],[0.098663903772831,0.10220380872488,0.075400233268738]],[[0.041577517986298,-0.035770416259766,-0.084223710000515],[0.0099640563130379,0.055544648319483,0.062476120889187],[0.085600666701794,-0.086683869361877,-0.11170039325953]],[[0.015133379027247,0.0046684630215168,0.053110186010599],[0.079553425312042,0.027179230004549,-0.04156356304884],[-0.015085243619978,0.04995134100318,-0.0054416847415268]],[[0.06017692387104,0.083572536706924,-0.049839284271002],[0.098043948411942,0.045368298888206,0.11103270947933],[0.35457584261894,-0.09206360578537,-0.076764896512032]],[[-0.036061819642782,0.069274246692657,0.10667176544666],[0.044766839593649,0.14885114133358,0.012905186973512],[-0.0062661292031407,0.0022380461450666,0.032735358923674]],[[-0.019925920292735,0.027743706479669,0.094549305737019],[-0.010073136538267,-0.015609775669873,0.00013886386295781],[-0.065553054213524,-0.0077483532950282,-0.028181657195091]],[[-0.022455366328359,-0.034582205116749,0.018085621297359],[-0.10460563004017,0.14119032025337,-0.031014613807201],[0.024337895214558,0.17601971328259,-0.064941324293613]],[[0.01063952036202,-0.0094030518084764,-0.10875868797302],[-0.0576226785779,0.00016800305456854,0.013063313439488],[-0.01007500756532,-0.0083772512152791,0.1231280490756]],[[-0.1262194365263,-0.080781735479832,-0.071285165846348],[-0.092239014804363,-0.20151178538799,-0.11003909260035],[0.053297765552998,-0.073772020637989,-0.078155018389225]],[[0.067342057824135,-0.064066655933857,0.024492017924786],[0.03156129643321,0.018267830833793,-0.040749341249466],[-0.18413057923317,0.044312473386526,0.039368916302919]],[[0.050993755459785,0.13997434079647,0.016519151628017],[0.039615318179131,0.033636853098869,0.006126903463155],[-0.0048492830246687,-0.10996405035257,0.033553812652826]],[[0.074591636657715,-0.0082726301625371,-0.028526743873954],[0.066274769604206,0.10051617771387,-0.20628164708614],[-0.15299253165722,-0.05830604583025,0.059859171509743]],[[-0.071073912084103,-0.026354277506471,0.071785621345043],[-0.11185672879219,0.01757930777967,-0.045913372188807],[-0.060801018029451,0.16152286529541,-0.064020805060863]],[[-0.13516379892826,-0.049201637506485,0.056344822049141],[-0.1704393029213,-0.010338041931391,0.086810693144798],[-0.16100391745567,-0.00087500567315146,0.090435586869717]]],[[[-0.031298544257879,0.021952591836452,-0.099263414740562],[0.068621896207333,0.062025833874941,-0.020057616755366],[0.063911363482475,0.016034629195929,-0.11315487325191]],[[0.051704458892345,-0.025268722325563,-0.049901351332664],[-0.087998650968075,-0.10129235684872,0.09113497287035],[-0.14887417852879,-0.07086418569088,0.054824162274599]],[[-0.024525986984372,-0.024689042940736,-0.17351257801056],[-0.0011051234323531,-0.034102063626051,-0.048046782612801],[-0.030357014387846,-0.087383829057217,0.00073755532503128]],[[0.019435618072748,-0.0032838536426425,-0.03907760605216],[0.012256499379873,-0.0066493954509497,-0.018991321325302],[-0.085005842149258,-0.079433158040047,0.085607469081879]],[[0.031319312751293,0.050108693540096,-0.14629580080509],[0.080115370452404,0.078569926321507,-0.1571396291256],[0.003266841173172,-0.016597272828221,-0.058186899870634]],[[-0.11099106818438,-0.032367467880249,0.03714732453227],[-0.0045368215069175,0.023795239627361,-0.084970228374004],[-0.031013179570436,-0.008741375990212,-0.026207573711872]],[[0.017843846231699,-0.0055228020064533,-0.00059055187739432],[-0.090237691998482,-0.11657743155956,-0.0076030022464693],[-0.058337241411209,-0.024964459240437,-0.0049659218639135]],[[0.061401687562466,-0.094534978270531,0.019344622269273],[0.02877520956099,0.010897884145379,-0.069023281335831],[0.016056228429079,0.020805895328522,-0.076809942722321]],[[-0.05679789930582,0.017065273597836,-0.074552655220032],[0.068321049213409,-0.047004371881485,0.019071275368333],[0.00039271541754715,0.055299766361713,0.064253479242325]],[[-0.058656703680754,0.0050808847881854,0.023814817890525],[-0.033677242696285,0.11647390574217,0.14841729402542],[-0.038355495780706,0.12368297576904,0.081090867519379]],[[0.13598194718361,-0.044265564531088,-0.001970165874809],[-0.04863515496254,0.026990408077836,-0.039486702531576],[-0.011371211148798,0.031003376469016,-0.013673167675734]],[[-0.022118559107184,-0.14832045137882,0.063912220299244],[0.001960406312719,-0.092600107192993,0.057176232337952],[-0.047302771359682,-0.044707022607327,0.060632687062025]],[[0.054713293910027,-0.1165511533618,-0.041264582425356],[-0.056638486683369,-0.12994812428951,-0.14091598987579],[0.1120302900672,-0.056584045290947,-0.04693790152669]],[[0.043231517076492,0.062477085739374,0.014366865158081],[-0.0958212018013,0.0078445160761476,-0.013688769191504],[-0.22590033710003,-0.074948646128178,0.085801310837269]],[[0.057910218834877,-0.00033984001493081,0.015502264723182],[-0.11349504441023,-0.11144114285707,-0.091469414532185],[-0.0013662499841303,-0.020156560465693,-0.03994470089674]],[[-0.00994957331568,0.1437426507473,0.0023466921411455],[-0.088109605014324,0.04529594630003,-0.037878897041082],[-0.020916055887938,0.1005327180028,-0.013520830310881]],[[-0.045108206570148,-0.06561616808176,-0.05742709711194],[0.00072198739508167,-0.078847140073776,0.044434979557991],[-0.019796371459961,0.05405655503273,0.022726960480213]],[[0.041409455239773,-0.070538759231567,-0.097703270614147],[0.12052720040083,-0.049259398132563,-0.020932590588927],[0.0043381014838815,0.019114414229989,0.043209906667471]],[[0.03744700551033,0.10106902569532,0.1207999587059],[0.068144828081131,-0.0031800954602659,-0.043194368481636],[0.026665417477489,-0.015912869945168,0.051134705543518]],[[-0.084520906209946,-0.071216478943825,0.20826442539692],[-0.027219338342547,-0.10247042030096,0.17360717058182],[-0.13631594181061,-0.10962536931038,0.07388511300087]],[[0.034538544714451,-0.048490602523088,-0.014462438412011],[-0.0011652049142867,-0.20298536121845,-0.15884275734425],[-0.02136904746294,-0.035925477743149,0.046990342438221]],[[0.011789876967669,-0.10514210909605,0.0060133952647448],[-0.15091453492641,-0.088198110461235,0.04484561830759],[-0.065975412726402,0.030307734385133,-0.028888171538711]],[[0.10572303831577,-0.020242173224688,0.088982902467251],[0.10530895739794,0.048595402389765,0.077698767185211],[-0.013531516306102,-0.097584612667561,0.0059623271226883]],[[0.017428047955036,-0.047020457684994,-0.081955820322037],[-0.13536347448826,-0.013302993960679,-0.022101502865553],[-0.057188678532839,-0.1385093331337,-0.026386501267552]],[[0.011670256964862,0.079366765916348,0.01381311006844],[-0.0028807197231799,-0.0061123440973461,-0.036402199417353],[-0.071252733469009,0.079053223133087,-0.01217036601156]],[[-0.036386989057064,-0.00037071295082569,0.11324485391378],[0.012383783236146,-0.082873620092869,-0.073002062737942],[0.078287847340107,-0.018797783181071,-0.16803878545761]],[[0.063587076961994,-0.09188337624073,0.052626833319664],[0.016376281157136,-0.11444082856178,0.051241524517536],[-0.073423825204372,-0.071611382067204,0.023426804691553]],[[-0.018434498459101,-0.024337762966752,0.03360315784812],[-0.0060399509966373,-0.0417165979743,-0.011671226471663],[-0.06101955473423,0.080440454185009,-0.030735958367586]],[[-0.07947614043951,0.023542772978544,0.1036150380969],[-0.12955425679684,0.056119177490473,0.089848011732101],[-0.072816282510757,0.049981568008661,0.098952628672123]],[[-0.022891582921147,-0.13919560611248,0.033983960747719],[-0.011553823947906,-0.036964181810617,0.10919260233641],[-0.086650677025318,-0.0096000600606203,0.054976284503937]],[[-0.038640696555376,-0.02162410505116,0.057842787355185],[0.00052649719873443,0.0074791223742068,-0.040119417011738],[0.076311454176903,0.030751230195165,0.0051853135228157]],[[0.045103501528502,0.084773115813732,-0.041717607527971],[0.034693028777838,0.098980382084846,-0.093673393130302],[0.029158605262637,-0.0033538453280926,-0.084044083952904]],[[0.025905635207891,-0.027927296236157,-0.14679503440857],[0.10078417509794,0.02872315980494,-0.012347449548542],[0.02809352427721,-0.0079977819696069,-0.051378961652517]],[[0.01411098241806,0.10585786402225,-0.1426447480917],[0.042585626244545,-0.0085070356726646,-0.0070596067234874],[0.0045436713844538,0.02052734978497,0.060459062457085]],[[-0.058406695723534,-0.035940531641245,0.055630147457123],[-0.022034958004951,-0.10098203271627,0.0031945779919624],[0.013056052848697,-0.066485323011875,0.055111587047577]],[[0.0066286502406001,0.05511611700058,0.10182524472475],[0.09276058524847,0.029478268697858,-0.074107848107815],[0.20978531241417,-0.055008728057146,-0.052141483873129]],[[-0.031165516003966,-0.073879599571228,-0.06112140417099],[-0.0019197618821636,-0.015033380128443,0.10270925611258],[-0.073081068694592,0.095858804881573,0.043855935335159]],[[0.0089990179985762,0.057378474622965,0.046829577535391],[-0.05327832698822,0.011477375403047,-0.036009334027767],[0.14686287939548,-0.060173250734806,-0.030655954033136]],[[0.13847921788692,-0.0016208888264373,0.032827649265528],[0.03307168930769,-0.11624985188246,0.035380840301514],[-0.0051238806918263,-0.085978537797928,-0.024610390886664]],[[0.1018397808075,0.0020211676601321,-0.061164516955614],[0.030230578035116,0.0051698763854802,-0.088225603103638],[-0.00038849664269947,0.081535786390305,-0.038718096911907]],[[-0.10616522282362,0.06753234565258,0.10212390124798],[0.054422780871391,0.030218521133065,0.022515065968037],[-0.045862402766943,-0.099136874079704,-0.056422028690577]],[[0.036730393767357,-0.039620690047741,0.13065120577812],[0.02521782182157,0.020304696634412,0.18376211822033],[0.035257529467344,0.045249737799168,0.079667687416077]],[[0.011071117594838,-0.03247195482254,-0.044091090559959],[-0.022580437362194,-0.099350474774837,-0.15783725678921],[0.034743458032608,-0.11484003067017,0.070257492363453]],[[0.087169401347637,0.13030901551247,-0.019349029287696],[0.062255211174488,0.030992763116956,-0.0063609615899622],[0.080825172364712,-0.038546364754438,-0.030807591974735]],[[0.0028213220648468,0.057479534298182,-0.017010284587741],[-0.011837530881166,-0.053932674229145,-0.0060252738185227],[-0.028876852244139,-0.037152521312237,0.10718755424023]],[[-0.0016558991046622,0.075889937579632,0.0011404259130359],[0.04608678072691,0.05589534342289,-0.053661741316319],[0.011799197643995,0.056546837091446,0.053576100617647]],[[0.0063517866656184,-0.020111374557018,0.094824597239494],[0.14162112772465,-0.067868836224079,0.061470612883568],[-0.026404704898596,0.006676325108856,0.011649304069579]],[[0.079647220671177,-0.052233502268791,-0.13848471641541],[-0.012392293661833,0.12950219213963,-0.062606170773506],[-0.045794982463121,-0.034710999578238,0.023820551112294]],[[0.10203214734793,-0.1409652531147,0.068524576723576],[-0.053907752037048,-0.11168728768826,0.023157685995102],[-0.0096573010087013,-0.0051120277494192,-0.049256224185228]],[[0.029411599040031,-0.011955711059272,-0.045846980065107],[-0.0065740109421313,-0.026248630136251,-0.071413315832615],[0.097480930387974,-0.020836429670453,-0.06217060610652]],[[-0.023773178458214,0.048344578593969,-0.030890468508005],[-0.14251309633255,0.15376986563206,0.045671813189983],[-0.097518853843212,0.026703862473369,0.013374335132539]],[[-0.067772448062897,0.11488351225853,0.040891699492931],[0.00079358892980963,0.058638412505388,0.066741123795509],[-0.013587713241577,0.023761378601193,0.11421467363834]],[[0.033294100314379,-0.0083587132394314,-0.091953463852406],[-0.00017732798005454,0.064673572778702,-0.0077908947132528],[0.071835651993752,0.02606619335711,0.064544521272182]],[[0.014149846509099,-0.076793424785137,0.057820122689009],[-0.074932724237442,-0.15459567308426,0.099656984210014],[-0.068932086229324,-0.0383420586586,0.087440855801105]],[[0.037072964012623,0.14117453992367,0.0019328853813931],[-0.079403065145016,-0.083447195589542,0.13354904949665],[-0.12160881608725,0.0073431632481515,0.061205744743347]],[[0.15222983062267,-0.033386789262295,0.051900744438171],[0.15293076634407,-0.022909056395292,-0.035181619226933],[0.027573650702834,-0.091889455914497,-0.0061598005704582]],[[-0.036293812096119,0.0056417412124574,0.18657825887203],[0.14059004187584,0.051537781953812,0.16539326310158],[-0.19890454411507,-0.20858383178711,0.050261367112398]],[[-0.025923270732164,-0.055549703538418,-0.10199155658484],[0.038159228861332,-0.039467740803957,-0.086510471999645],[-0.015367705374956,-0.12809610366821,-0.010958748869598]],[[0.0051674712449312,-0.046295300126076,0.12587974965572],[-0.0092108147218823,-0.037483222782612,-0.050531666725874],[-0.079206645488739,-0.038690485060215,-0.10801467299461]],[[-0.0402518697083,-0.048191860318184,0.18011480569839],[-0.043589450418949,0.015910537913442,0.091149635612965],[0.084209449589252,-0.11413982510567,0.087637558579445]],[[-0.029168235138059,-0.088774837553501,-0.034855380654335],[-0.042287893593311,-0.092640414834023,-0.067743219435215],[-0.12161634862423,-0.11473375558853,-0.029547160491347]],[[0.051611952483654,0.062774278223515,-0.030076913535595],[-0.00099218741524965,-0.026290770620108,0.053516034036875],[-0.12170893698931,0.011611961759627,-0.03460244089365]],[[0.029292499646544,-0.0466926433146,0.092189148068428],[0.052397921681404,-0.0014822568045929,-0.063269846141338],[0.0026116294320673,-0.0080741764977574,-0.028312249109149]],[[0.034326530992985,-0.014790018089116,-0.13633814454079],[0.035663805902004,0.11794109642506,0.016705861315131],[-0.016450427472591,0.0033546302001923,0.026227150112391]],[[-0.094116777181625,0.13879676163197,0.11478450894356],[-0.048647776246071,0.05042913928628,0.090805932879448],[-0.061694148927927,-0.00528813758865,0.11636818945408]],[[0.030025169253349,-0.018737148493528,0.08835507184267],[0.12957689166069,-0.019698575139046,0.017992535606027],[0.1447646021843,-0.076635196805,-0.040616679936647]],[[-0.0049354531802237,-0.047222513705492,0.0099540818482637],[-0.072613999247551,-0.059917327016592,0.053386736661196],[0.045481625944376,0.074316255748272,-0.0077599231153727]],[[0.035140790045261,-0.029177689924836,-0.031100114807487],[-0.038743607699871,-0.091762229800224,-0.061384420841932],[-0.0062015489675105,-0.10826551169157,-0.022437134757638]],[[-0.013772127218544,-0.097244806587696,-0.021468508988619],[-0.02867654338479,-0.018870681524277,0.058560397475958],[0.15826004743576,0.05675745382905,0.049983847886324]],[[0.19012348353863,0.073701873421669,-0.060823526233435],[0.13659773766994,-0.0080867484211922,-0.12770971655846],[0.020814860239625,0.022813022136688,-0.047567680478096]],[[0.015098110772669,0.030081724748015,-0.012921450659633],[0.074015207588673,0.04692704603076,-0.082676097750664],[0.007909850217402,0.041326854377985,-0.025113638490438]],[[0.068977512419224,0.030794467777014,0.068195946514606],[0.067571230232716,-0.10094873607159,-0.10118284076452],[0.011699190363288,0.021301217377186,0.090635806322098]],[[-0.055064540356398,-0.096347741782665,-0.051895242184401],[0.0087368739768863,0.066401138901711,-0.013394568115473],[0.098710909485817,0.03311625868082,-0.13882538676262]],[[0.16286563873291,-0.067541964352131,-0.0014609815552831],[0.0036971943918616,-0.048126257956028,0.046283937990665],[0.015327469445765,0.070910163223743,0.068814024329185]],[[-0.04821727052331,0.04043060541153,0.05224970728159],[-0.063012257218361,-0.072808720171452,-0.011211903765798],[0.0066416868939996,-0.08077434450388,-0.045236989855766]],[[0.047489322721958,-0.097492396831512,0.0068479622714221],[0.072146035730839,-0.042679022997618,0.067457467317581],[0.030938049778342,-0.068826586008072,-0.012734499759972]],[[-0.096935234963894,0.026715114712715,-0.030329937115312],[-0.069530189037323,-0.022781819105148,-0.017384169623256],[-0.14137674868107,-0.084199458360672,0.10502254217863]],[[-0.089763671159744,-0.15833805501461,0.048359751701355],[-0.10776682198048,-0.10991430282593,0.069065228104591],[-0.036210585385561,-0.031155670061707,0.10980071872473]],[[0.0039311032742262,-0.11564893275499,0.12006333470345],[-0.006370781455189,-0.076129525899887,0.02995284833014],[-0.092263676226139,-0.01271293964237,0.066923454403877]],[[-0.06703869253397,-0.028915444388986,0.056725796312094],[-0.063757590949535,-0.028083005920053,0.038664046674967],[-0.016975523903966,-0.069632776081562,0.08525725454092]],[[0.0056519210338593,0.0006516994908452,0.033695548772812],[0.1889908015728,-0.07592549175024,0.045324683189392],[0.0030186041258276,0.05987873673439,0.15354661643505]],[[-0.13257230818272,0.037163283675909,0.089293614029884],[-0.17147727310658,-0.11676314473152,0.064165189862251],[-0.01560059376061,0.021283756941557,0.0080348458141088]],[[0.017677547410131,-0.037985917180777,0.068248465657234],[-0.10413325577974,-0.0026948093436658,-0.040467001497746],[-0.063192404806614,-0.070492051541805,-0.014031518250704]],[[0.065920151770115,0.011381419375539,-0.099130921065807],[0.01954516209662,-0.1305875480175,-0.12077090889215],[-0.14918553829193,-0.071622923016548,-0.0010704044252634]],[[-0.04156368970871,0.052597306668758,-0.017106486484408],[-0.032511334866285,0.12339814007282,0.054787155240774],[-0.045271549373865,0.040675677359104,-0.058007389307022]],[[-0.09619003534317,-0.046905074268579,0.087711706757545],[0.034885562956333,-0.054678380489349,0.051082715392113],[0.052624624222517,-0.028449475765228,0.012796897441149]],[[-0.035590797662735,-0.021871909499168,-0.0082226293161511],[-0.011741016991436,0.069615639746189,-0.041112881153822],[-0.0044289114885032,0.024007830768824,-0.036422219127417]],[[-0.01819084584713,-0.024881640449166,0.15334330499172],[0.065097607672215,0.098617732524872,0.055166114121675],[0.050104655325413,9.3325979833025e-05,0.024075590074062]],[[-0.015538497827947,0.022549219429493,-0.067541547119617],[-0.1077398955822,-0.033771757036448,-0.0095022870227695],[-0.089606553316116,-0.068898752331734,0.075649105012417]],[[0.063835553824902,0.15632294118404,0.11933735013008],[0.042328789830208,0.089567840099335,0.025607347488403],[0.010711861774325,-0.15904867649078,-0.075216747820377]],[[0.0095835002139211,0.030698718503118,-0.12067326903343],[0.031788803637028,0.11835195124149,0.083892963826656],[0.15326911211014,-0.079177230596542,-0.050071246922016]],[[-0.0079995961859822,-0.025628760457039,-0.018192701041698],[-0.025370452553034,-0.10478346049786,0.032593164592981],[-0.082741506397724,-0.0089341541752219,0.034026514738798]],[[0.054606683552265,-0.014162457548082,-0.02282147295773],[0.090859740972519,-0.052944853901863,-0.018986713141203],[0.0038614871446043,-0.081660695374012,-0.063816539943218]],[[0.12276366353035,0.10184823721647,-0.092522278428078],[0.076623320579529,-0.12503741681576,-0.22932370007038],[0.07395888119936,-0.08704599738121,-0.11595234274864]],[[-0.069458797574043,0.044008664786816,0.0015852788928896],[0.058039925992489,-0.063619635999203,0.050998538732529],[-0.12339156866074,-0.035033710300922,0.072079785168171]],[[0.016071505844593,0.00066982075804844,0.0505036637187],[0.072110131382942,0.0017441059462726,0.092914551496506],[-0.09684881567955,-0.053887821733952,0.13551695644855]],[[0.12519934773445,-0.046313494443893,-0.11233152449131],[-0.0018968972144648,-0.098405122756958,-0.020285563543439],[-0.047887582331896,-0.096841894090176,0.0019723703153431]],[[0.082662776112556,0.027813093736768,-0.20569910109043],[0.02061178535223,-0.10245680063963,-0.12773318588734],[0.03498588129878,-0.11457777023315,0.072961032390594]],[[0.12752199172974,0.14537642896175,-0.066693246364594],[0.050307806581259,0.0027892596554011,-0.076270051300526],[0.054831430315971,0.069869093596935,-0.035816445946693]],[[0.069609008729458,0.023595128208399,-0.14963711798191],[0.041532035917044,0.025671372190118,-0.053688399493694],[0.081966400146484,0.12417156249285,-0.023337554186583]],[[-0.1296394020319,0.10331135243177,0.0066327569074929],[-0.081499688327312,0.069990627467632,-0.025882808491588],[-0.040967397391796,0.050888638943434,0.002790804952383]],[[-0.051016747951508,-0.047808762639761,-0.053812544792891],[0.19000506401062,0.22262759506702,0.091376930475235],[0.051517460495234,0.063960179686546,0.086800634860992]],[[-0.051180247217417,-0.04133366048336,0.10169976204634],[-0.010247676633298,-0.03375469148159,0.034787096083164],[-0.00086962309433147,-0.019960774108768,-0.059586305171251]],[[-0.033740766346455,-0.0064710108563304,-0.055815007537603],[-0.011469946242869,-0.010953905060887,0.06197327747941],[-0.046872887760401,0.040867414325476,-0.00079124164767563]],[[-0.11800918728113,-0.16503125429153,-0.037620864808559],[-0.040231116116047,-0.0011229523224756,0.067430563271046],[-0.020567091181874,0.25077122449875,0.091151267290115]],[[0.12547817826271,-0.088335566222668,-0.012753459624946],[0.090050481259823,-0.017690187320113,0.087751157581806],[0.12969535589218,-0.02878263220191,0.036303784698248]],[[-0.0063860458321869,0.069355800747871,-0.081762097775936],[0.028607485815883,-0.057589497417212,-0.040187872946262],[-0.051080740988255,0.036762773990631,-0.022543270140886]],[[0.072415560483932,-0.0014520805561915,0.024627657607198],[0.13010264933109,0.019571278244257,-0.064625732600689],[0.028823452070355,-0.074424728751183,0.022269628942013]],[[0.014330229721963,0.062979951500893,-0.0059061069041491],[0.11125013232231,0.0091365091502666,0.025972776114941],[0.049406241625547,-0.03459457680583,-0.0028039896860719]],[[0.033030267804861,-0.030396919697523,0.10829751193523],[-0.0082763032987714,0.037143845111132,-0.026943737640977],[0.097726196050644,0.13545817136765,-0.0046006985940039]],[[0.016396082937717,0.039261430501938,0.0033201654441655],[0.034078374505043,-0.11282463371754,-0.027637926861644],[-0.04410894215107,-0.0080684339627624,-0.011275376193225]],[[0.031209323555231,-0.039864659309387,-0.083943299949169],[-0.017897009849548,-0.12486401945353,-0.058268040418625],[-0.1024254783988,-0.057282909750938,0.12833553552628]],[[-0.041024029254913,-0.10588480532169,-0.077126808464527],[-0.13254444301128,0.032881923019886,0.055117964744568],[0.03068227507174,-0.025916727259755,0.067912839353085]],[[0.010762561112642,-0.0012464647879824,-0.053938824683428],[0.064673289656639,-0.0090692974627018,-0.089287117123604],[0.0043778079561889,-0.10251186043024,-0.076999336481094]],[[0.093911878764629,-0.13621664047241,0.047647565603256],[0.042068630456924,0.0091604106128216,0.016320936381817],[0.10284321755171,-0.0048597892746329,-0.091685816645622]],[[-0.057732347398996,-0.20410816371441,-0.16286341845989],[-0.068460293114185,-0.11522682011127,0.05627778545022],[0.12360113114119,-0.016672452911735,0.014999337494373]],[[-0.0049493913538754,-0.053597815334797,-0.066123001277447],[0.069856524467468,0.052953526377678,-0.02297773770988],[-0.028298795223236,0.062800101935863,-0.05908040329814]],[[0.16884049773216,0.18738919496536,0.052569195628166],[0.0066867163404822,0.032137278467417,-0.033427260816097],[-0.068822488188744,-0.060148447751999,0.060979016125202]],[[0.010217139497399,0.12809783220291,0.019536718726158],[0.070393480360508,-0.038592252880335,-0.034591641277075],[-0.0018967151409015,0.040391072630882,0.018408611416817]],[[0.028982196003199,-0.054990358650684,-0.011539979837835],[0.013346558436751,-0.10002318769693,0.03216752782464],[-0.038389194756746,0.010060747154057,0.018505109474063]],[[-0.070348873734474,-0.15973478555679,-0.030266547575593],[-0.056328684091568,0.021760139614344,0.016741393133998],[0.20377200841904,0.085988618433475,-0.069772437214851]],[[-0.10311860591173,0.044047717005014,0.15878093242645],[-0.061669159680605,0.040870431810617,0.075392156839371],[-0.054261021316051,0.018891733139753,-0.010173364542425]],[[-0.073413372039795,-0.037975311279297,0.021179787814617],[-0.10953303426504,0.031771786510944,-0.0080438535660505],[-0.055336084216833,-0.13393414020538,0.0012961874017492]],[[-0.013967488892376,-0.044410940259695,-0.075729556381702],[0.025760104879737,0.053806349635124,0.010413000360131],[-0.096923992037773,0.13863569498062,0.033600457012653]],[[0.036443810909986,0.20516118407249,0.12034516781569],[0.012869856320322,0.12564997375011,0.0011283397907391],[0.058762211352587,0.006468003615737,-0.12041386961937]],[[-0.01958167925477,-0.041071459650993,0.024947525933385],[-0.06654167920351,-0.0057240263558924,0.0030824036803097],[-0.077194467186928,0.04407574981451,0.019229931756854]],[[0.068333745002747,-0.048908624798059,-0.024676205590367],[0.035926539450884,0.042224004864693,-0.044388812035322],[0.056967258453369,0.078066930174828,-0.044384058564901]],[[0.045959986746311,0.11504578590393,-0.035252567380667],[-0.066906079649925,0.0098013831302524,0.021926918998361],[-0.14514592289925,0.15853805840015,0.020817801356316]]],[[[0.030499204993248,-0.026646791025996,0.16538779437542],[0.060792002826929,-0.058090284466743,0.2461469322443],[0.14613458514214,-0.085066542029381,0.21962079405785]],[[0.0084650292992592,-0.0048541822470725,0.13594210147858],[0.036484360694885,0.00074568530544639,-0.0011807332048193],[-0.23758064210415,-0.14714226126671,-0.12657073140144]],[[-0.058668829500675,-0.12145645171404,0.23575185239315],[-0.14416410028934,0.019442332908511,0.017406355589628],[-0.11097022891045,0.05051140114665,0.14646093547344]],[[-0.10916442424059,-0.13831907510757,-0.086616039276123],[-0.23639580607414,-0.1375025510788,0.001325566554442],[-0.12218559533358,-0.02449624799192,0.075570322573185]],[[0.052711650729179,-0.024085227400064,0.08897303789854],[0.16154278814793,-0.11225794255733,0.22497947514057],[0.11996314674616,0.046147760003805,0.30831828713417]],[[-0.16414546966553,-0.02744759246707,0.16087345778942],[-0.015633573755622,0.02448452450335,0.025124050676823],[0.13068976998329,0.081481590867043,0.035915955901146]],[[-0.13430914282799,0.055255334824324,0.03515687212348],[0.17165377736092,0.060510944575071,0.069173291325569],[0.17936804890633,-0.07940636575222,0.024350877851248]],[[0.0077415332198143,-0.10041459649801,-0.16756623983383],[0.068783774971962,-0.11042727530003,-0.090495154261589],[0.061698455363512,-0.092547431588173,0.11423976719379]],[[0.20341344177723,-0.046895831823349,0.13328422605991],[0.17246413230896,0.0091725597158074,-0.085571065545082],[0.0067572887055576,-0.11604207009077,-0.053686544299126]],[[-0.041964042931795,-0.19725507497787,-0.29755488038063],[-0.021786002442241,-0.18858785927296,-0.11267342418432],[-0.029778890311718,-0.18493881821632,-0.24610221385956]],[[0.022969145327806,0.013946457765996,0.096147082746029],[0.098225861787796,-0.063717976212502,-0.040552455931902],[0.083513803780079,-0.098741061985493,-0.097069777548313]],[[0.13928286731243,-0.11630875617266,-0.096424013376236],[-0.064572848379612,-0.14727878570557,0.0018869112245739],[-0.0038926624692976,0.13979870080948,-0.026254797354341]],[[0.052201792597771,-0.11990778148174,-0.083580762147903],[0.053183823823929,-0.14782510697842,-0.12911462783813],[0.04551662504673,0.01286712475121,-0.027313690632582]],[[-0.010472727939487,0.012379350140691,-0.14583659172058],[-0.026391616091132,-0.0031559108756483,-0.074741907417774],[0.034698199480772,0.16590911149979,-0.083694964647293]],[[-0.14770187437534,-0.079976417124271,0.012705555185676],[-0.10619033873081,-0.078923873603344,-0.032406348735094],[-0.16133446991444,0.020445309579372,-0.10891488194466]],[[0.26368823647499,-0.15151263773441,-0.084105364978313],[0.16887059807777,-0.045983657240868,0.017584452405572],[0.22774136066437,-0.042887862771749,-0.096847325563431]],[[0.012912421487272,-0.086770549416542,-0.11305675655603],[0.055887747555971,-0.086301311850548,-0.19220475852489],[0.064754098653793,0.041462238878012,0.24272617697716]],[[0.089205853641033,0.062265112996101,0.16512282192707],[-0.0051182783208787,-0.094118893146515,-0.043533027172089],[-0.086005203425884,0.053591668605804,0.11362188309431]],[[0.10515443235636,0.12424886971712,0.0086785331368446],[0.1689430475235,-0.10543197393417,-0.088914796710014],[0.13412150740623,0.090822614729404,-0.053391415625811]],[[0.1163842305541,-0.064619094133377,-0.28696078062057],[0.15396413207054,-0.031663380563259,-0.058109827339649],[-0.016782538965344,-0.073451437056065,-0.051357332617044]],[[-0.053281310945749,-0.036471519619226,0.090713769197464],[-0.13293725252151,-0.089505277574062,0.07734452188015],[-0.14784355461597,-0.14234943687916,0.082308679819107]],[[0.16952110826969,0.0096500609070063,-0.15966683626175],[0.18264780938625,-0.056045610457659,-0.1809139996767],[-0.044297218322754,-0.029212206602097,-0.017309259623289]],[[0.048015657812357,0.014430529437959,-0.16098538041115],[-0.14623257517815,0.089534670114517,0.0097423018887639],[0.080676190555096,0.12009409815073,0.20063136518002]],[[-0.13085088133812,0.042901739478111,0.1039901226759],[-0.12072590738535,0.039416253566742,0.16176378726959],[-0.12096567451954,-0.035568285733461,0.052576795220375]],[[-0.15909847617149,-0.035276919603348,0.071322791278362],[-0.10964814573526,-0.081588603556156,-0.063904397189617],[0.12661424279213,0.067799784243107,0.045075319707394]],[[0.22105261683464,0.058541979640722,-0.089223340153694],[0.032404899597168,0.093018881976604,0.069299250841141],[-0.18088863790035,-0.034550797194242,0.28041902184486]],[[-0.19996145367622,0.21908274292946,0.084373764693737],[-0.1209951788187,0.12275119125843,-0.10069145262241],[-0.23040686547756,0.20947198569775,-0.155308380723]],[[-0.10409074276686,-0.17027215659618,0.02471156604588],[0.00726159196347,-0.22439169883728,0.0057063223794103],[0.043571427464485,-0.13796980679035,-0.025749484077096]],[[0.04776044562459,0.011443002149463,-0.07945516705513],[-0.040028911083937,-0.088963411748409,-0.086579218506813],[-0.0059434561990201,-0.059003487229347,-0.17098324000835]],[[0.12069722265005,0.042313549667597,-0.0099866380915046],[0.17523001134396,-0.049499563872814,-0.14948634803295],[0.12351504713297,-0.19623924791813,-0.16601060330868]],[[0.016612911596894,0.22262834012508,-0.37979251146317],[-0.0075963023118675,0.11003828793764,0.026490237563848],[-0.0020828617271036,0.10013726353645,0.010184516198933]],[[0.055236589163542,-0.0054912487976253,0.09471184015274],[-0.075084514915943,0.062711127102375,-0.047620635479689],[0.0090683419257402,0.12459290027618,0.045790910720825]],[[0.10492897778749,-0.18777684867382,-0.099319510161877],[0.18409435451031,0.0036314050666988,0.021545493975282],[0.25546783208847,-0.051230657845736,0.14852337539196]],[[0.17625859379768,-0.054172433912754,0.052985578775406],[0.10267043858767,-0.20515032112598,-0.001498680212535],[-0.082888461649418,-0.090959243476391,0.10920437425375]],[[-0.012534011155367,-0.1045101210475,-0.17546404898167],[-0.014351243153214,-0.15737475454807,-0.12052015960217],[0.013135825283825,-0.09724398702383,0.011440218426287]],[[-0.15519250929356,0.0041499813087285,0.062220200896263],[-0.13771365582943,-0.2034532725811,-0.095051728188992],[-0.067023284733295,-0.21382169425488,0.055577956140041]],[[0.031023066490889,0.061884667724371,-0.0011917410884053],[-0.026702210307121,-0.053882710635662,-0.14954671263695],[-0.038958929479122,-0.050275981426239,-0.06654316931963]],[[-0.096598662436008,-0.12889865040779,0.043998759239912],[-0.092595346271992,0.012202443554997,0.1180457174778],[-0.0081797447055578,0.077845863997936,0.062457241117954]],[[0.058294259011745,0.029921539127827,-0.00044920030632056],[0.073631480336189,0.05471159517765,0.053864117711782],[0.038475919514894,0.17234298586845,0.024865940213203]],[[0.057378865778446,-0.034695275127888,-0.12351097166538],[0.039061345160007,-0.034202996641397,-0.024842141196132],[0.038744889199734,-0.1735266149044,0.035774163901806]],[[-0.018896928057075,0.011332767084241,-0.062583513557911],[-0.035852171480656,-0.021819042041898,-0.10307615250349],[0.06188827008009,-0.029278578236699,-0.096026256680489]],[[0.00789700075984,-0.018664697185159,-0.14063343405724],[-0.012888460420072,-0.015582361258566,-0.11132436990738],[0.13694408535957,-0.12446754425764,-0.0832634344697]],[[-0.069390907883644,-0.027170093730092,0.091833919286728],[0.046902913600206,0.043520338833332,-0.047670170664787],[-0.11420375108719,0.014900511130691,-0.069463029503822]],[[-0.09728530049324,-0.070696167647839,-0.072246797382832],[-0.09771192073822,-0.15613554418087,-0.01214730553329],[-0.02772912196815,-0.10043880343437,0.076875701546669]],[[-0.28916129469872,-0.19905911386013,0.12754245102406],[0.070277266204357,-0.059637568891048,0.016618436202407],[0.035093493759632,0.00030925808823667,-0.13085792958736]],[[0.14049544930458,0.018968509510159,0.00078314851270989],[-0.043485131114721,0.11084834486246,0.0034484174102545],[-0.074950002133846,-0.079285249114037,0.063015297055244]],[[0.0010397132718936,0.16125160455704,-0.030938537791371],[0.14856068789959,-0.19399742782116,0.00056397821754217],[0.08291782438755,-0.15227825939655,0.076615549623966]],[[0.16887603700161,0.003505514934659,0.13013343513012],[0.015418319962919,-0.27367302775383,-0.068254694342613],[0.076241955161095,-0.025726458057761,0.01465661264956]],[[-0.03111975081265,0.032716754823923,0.055434573441744],[0.1015706807375,-0.10011748969555,-0.039623588323593],[0.25895345211029,0.0061148009262979,0.099106922745705]],[[-0.11653409153223,0.13825319707394,-0.083104386925697],[-0.12202831357718,0.06192671880126,0.016165463253856],[-0.022293731570244,0.02534132450819,0.078727468848228]],[[0.083800606429577,-0.0041251317597926,0.050816923379898],[-0.061206217855215,-0.088901154696941,-0.012267689220607],[-0.062303200364113,-0.056198470294476,0.072016030550003]],[[-0.11834815889597,-0.055097315460443,-0.077398344874382],[-0.1681791394949,0.12351907044649,-0.17684137821198],[-0.067645318806171,0.099861346185207,-0.05820182338357]],[[0.045056905597448,-0.055515497922897,0.0080676078796387],[-0.038724154233932,-0.10709021240473,-0.031610537320375],[0.014716413803399,-0.13451208174229,-0.11638607829809]],[[0.057450834661722,-0.089278347790241,0.068944297730923],[0.092049621045589,0.09577327221632,0.020086938515306],[0.017580263316631,-0.056400913745165,-0.06847720593214]],[[0.031605858355761,-0.096234619617462,-0.031844787299633],[0.025568574666977,0.020346201956272,-0.13253164291382],[0.039382871240377,0.091616578400135,0.042131204158068]],[[0.22245141863823,-0.064391292631626,-0.055695209652185],[0.26311871409416,0.013110147789121,0.099132746458054],[0.069405853748322,0.023766241967678,-0.11194647848606]],[[0.023935852572322,-0.15622583031654,-0.052239209413528],[0.10353717952967,0.077236630022526,-0.12290047109127],[-0.15189801156521,0.1211110278964,-0.09160927683115]],[[0.047453094273806,-0.0073059923015535,0.018520714715123],[-0.07752900570631,-0.08615842461586,-0.19996713101864],[-0.11843188107014,-0.18532887101173,0.1170452684164]],[[0.13618913292885,-0.12736923992634,-0.48293477296829],[0.0064663249067962,-0.0070573859848082,-0.20400801301003],[-0.10557694733143,0.19479241967201,-0.027401719242334]],[[0.05141806602478,0.31726342439651,-0.065815716981888],[0.052781172096729,0.17803910374641,0.14261814951897],[0.16400356590748,0.27853372693062,-0.029380680993199]],[[-0.12033288925886,-0.21523058414459,0.027372011914849],[0.05456705018878,-0.20976679027081,0.222805544734],[0.03710426017642,-0.25594854354858,0.23365703225136]],[[-0.05593353882432,-0.1163944453001,0.049878049641848],[0.11770956218243,-0.02921456284821,0.027199115604162],[0.013571180403233,-0.087526969611645,0.015402064658701]],[[0.0083913253620267,-0.050671949982643,0.13896621763706],[0.042600303888321,-0.062147472053766,0.027044581249356],[0.12501147389412,-0.13382689654827,0.040464799851179]],[[0.052896041423082,0.1914895772934,-0.035754345357418],[-0.084797017276287,-0.14095582067966,0.012566211633384],[-0.12485185265541,-0.0088421162217855,0.040554899722338]],[[0.050989404320717,-0.011366012506187,-0.11118724942207],[0.031700294464827,-0.041482396423817,0.019147530198097],[0.11915335804224,-0.029166832566261,-0.069774828851223]],[[0.28957536816597,0.28610441088676,-0.21180392801762],[0.052914191037416,0.14711686968803,-0.13486808538437],[-0.14497543871403,0.16856734454632,-0.14130572974682]],[[-0.074057206511497,-0.089052706956863,-0.14425447583199],[0.038833636790514,-0.12224496901035,0.010152078233659],[-0.10512381792068,0.058145929127932,0.030670477077365]],[[0.32292687892914,-0.11735963821411,-0.17462660372257],[-0.099306225776672,-0.11870882660151,-0.071417771279812],[-0.15061481297016,-0.071711495518684,-0.11986476182938]],[[0.10512232035398,0.068957462906837,0.064062401652336],[0.12435654550791,0.1002935692668,-0.042535167187452],[0.15099601447582,0.018277689814568,-0.12632729113102]],[[-0.10738757997751,-0.048986978828907,0.2597009241581],[0.051228079944849,-0.086959660053253,0.10521995276213],[0.067718699574471,-0.067072831094265,-0.017174772918224]],[[0.10036999732256,-0.093793824315071,0.083011239767075],[-0.10518741607666,-0.044721681624651,0.064426071941853],[0.05940667912364,-0.14499075710773,-0.17148919403553]],[[-0.18514247238636,0.192566588521,0.094242416322231],[0.14174944162369,0.097755245864391,0.017847798764706],[0.024726135656238,0.067947447299957,0.069697797298431]],[[-0.1917175501585,-0.091845847666264,0.063831381499767],[-0.14519388973713,-0.050833594053984,-0.027270395308733],[-0.16455118358135,-0.15081870555878,-0.054297246038914]],[[0.0029779390897602,-0.06781842559576,0.015566346235573],[0.045145336538553,-0.02229280397296,-0.015354332514107],[-0.015205130912364,0.011753621511161,-0.040335029363632]],[[0.23354819417,0.035038579255342,-0.021683860570192],[0.025195930153131,-0.012594386003911,-0.044107381254435],[-0.13240729272366,-0.060589861124754,-0.14829191565514]],[[0.052277117967606,0.11009636521339,0.22275663912296],[-0.052592091262341,-0.079338446259499,0.098501414060593],[-0.015652846544981,-0.026254013180733,0.10884641110897]],[[-0.0024892163928598,0.026601614430547,0.15713977813721],[0.0020856640767306,0.0070298295468092,0.0068679214455187],[-0.04997468367219,-0.037892449647188,-0.0026207955088466]],[[-0.034878265112638,-0.091841854155064,-0.014109431765974],[-0.11205281317234,-0.089349426329136,-0.043635472655296],[-0.062906585633755,-0.12717637419701,-0.21877062320709]],[[0.017481740564108,0.22909562289715,-0.15873791277409],[-0.0168851390481,0.028258815407753,-0.050160378217697],[0.03858894482255,0.036268498748541,0.082440130412579]],[[-0.16755498945713,-0.15878166258335,-0.15867201983929],[0.0071654208004475,-0.098892621695995,-0.17378662526608],[0.025584623217583,-0.15806694328785,-0.14281415939331]],[[0.088834904134274,-0.17926478385925,-0.17526558041573],[0.060448583215475,0.12761195003986,-0.017431193962693],[0.14818039536476,0.035864178091288,0.075717806816101]],[[0.092293441295624,-0.09873316437006,-0.057133123278618],[-0.0073373913764954,-0.039147481322289,-0.060693804174662],[-0.056094571948051,0.11391578614712,0.045236434787512]],[[0.037529915571213,0.33541256189346,0.032360274344683],[-0.055478058755398,0.088072046637535,0.031878810375929],[-0.059240281581879,0.085045747458935,0.13605685532093]],[[-0.09595100581646,-0.14463223516941,-0.12392186373472],[-0.15392529964447,-0.030998451635242,0.019173003733158],[-0.090116903185844,-0.12041828781366,0.010483978316188]],[[-0.058453910052776,0.19971790909767,0.14628271758556],[-0.11841043829918,0.10543852299452,-0.21991060674191],[-0.10479988157749,-0.076465241611004,-0.12949366867542]],[[0.14320200681686,0.022796085104346,-0.091750726103783],[-0.019086124375463,-0.019872922450304,-0.12687340378761],[-0.03017914481461,0.016236374154687,0.067153245210648]],[[0.076387822628021,-0.037537388503551,0.029825359582901],[0.029753170907497,-0.15797053277493,-0.064507991075516],[-0.033968891948462,0.0095243556424975,-0.051962692290545]],[[0.065846778452396,0.085983544588089,-0.30613997578621],[-0.086665511131287,0.046887692064047,-0.075717523694038],[-0.037085462361574,-0.075815141201019,0.025209741666913]],[[-0.099958784878254,-0.079574346542358,-0.020662212744355],[0.016773089766502,-0.13144542276859,0.019488727673888],[-0.056070763617754,-0.028594743460417,0.19966068863869]],[[-0.1827302724123,-0.1310034096241,0.0032153585925698],[0.088307544589043,0.068515740334988,0.048484392464161],[0.021767608821392,0.17844533920288,0.10808461904526]],[[-0.083971567451954,-0.13230317831039,0.12905678153038],[0.063059039413929,-0.10929674655199,0.061432335525751],[0.0045485366135836,-0.10015907138586,0.06486614793539]],[[-0.070637233555317,-0.014734494499862,-0.12021677941084],[0.096747897565365,0.066111259162426,-0.097840458154678],[-0.018444087356329,-0.013833300210536,-0.053879428654909]],[[0.019790356978774,0.094285733997822,0.027730891481042],[0.058733351528645,0.18223695456982,-0.038416136056185],[0.012284744530916,0.095535337924957,-0.089570559561253]],[[-0.27082186937332,-0.23190140724182,0.32068786025047],[-0.060704998672009,-0.046568021178246,0.0089178467169404],[-0.02740584500134,0.032671097666025,-0.098741434514523]],[[0.12961104512215,-0.036815699189901,0.1556221395731],[0.10898531228304,-0.02572275698185,0.25881496071815],[0.14121508598328,-0.11357165127993,0.13764300942421]],[[-0.19424863159657,0.013374152593315,0.045715566724539],[-0.17783653736115,0.14516673982143,-0.02401290461421],[-0.078356005251408,0.079346261918545,-0.08348809927702]],[[0.063877582550049,-0.087746672332287,0.14394713938236],[0.058355212211609,-0.13558088243008,0.15265609323978],[0.06588364392519,0.10054609924555,-0.097785338759422]],[[-0.06251709908247,0.15413799881935,0.22474436461926],[-0.10856348276138,0.16920943558216,0.025405986234546],[-0.082595251500607,0.24126367270947,0.20774735510349]],[[0.14492399990559,0.019523808732629,0.051992941647768],[-0.17103163897991,-0.056270536035299,-0.041523296386003],[0.050566829741001,0.00064977607689798,0.10764616727829]],[[0.073158293962479,-0.018098376691341,0.1424720287323],[0.049869079142809,-0.15809318423271,0.080334842205048],[0.16175210475922,-0.037474047392607,0.15939807891846]],[[-0.10758098959923,-0.10162528604269,-0.13114905357361],[-0.17639523744583,0.06302996724844,-0.077514931559563],[-0.03120150603354,0.1257701665163,0.091498114168644]],[[0.04811430349946,-0.068636670708656,0.045580185949802],[-0.039383117109537,-0.018444109708071,-0.044503133744001],[0.12156683206558,0.02152507007122,0.19128507375717]],[[0.056012943387032,-0.048628605902195,0.093907490372658],[-0.16374370455742,0.027584591880441,0.0040149316191673],[-0.21263870596886,0.19271463155746,-0.062610290944576]],[[-0.017213577404618,0.014799767173827,0.0064718932844698],[0.034852627664804,0.071712546050549,0.080991081893444],[-0.12113060802221,-0.11460434645414,-0.2411612868309]],[[-0.010703125968575,0.052683942019939,0.093582063913345],[-0.061156712472439,0.16766658425331,-0.025614965707064],[-0.15219090878963,0.16452287137508,-0.041648142039776]],[[0.18233549594879,0.063117831945419,-0.061380438506603],[0.026830567047,-0.11477848887444,-0.010020302608609],[-0.01163384038955,0.17427209019661,-0.13175015151501]],[[0.15006665885448,-0.0042945011518896,0.17647981643677],[0.063455380499363,0.0077111637219787,0.021911228075624],[0.09855879098177,0.24166044592857,-0.044299095869064]],[[0.066919110715389,0.063376620411873,0.13460355997086],[0.015502818860114,-0.12564240396023,0.12925365567207],[0.039380934089422,-0.18810871243477,0.085178717970848]],[[0.16270238161087,-0.02909910865128,-0.017885033041239],[0.0024136931169778,-0.099242359399796,0.017629683017731],[-0.054967653006315,-0.088582120835781,-0.0014902562834322]],[[0.05352821201086,-0.14716883003712,-0.17595937848091],[0.053782153874636,-0.01678954064846,0.01087530516088],[0.20484463870525,0.036905359476805,-0.10079256445169]],[[-0.01277142111212,-0.03942958265543,-0.016608767211437],[-0.084644041955471,0.055138546973467,-0.0001523552055005],[-0.10350682586432,-0.012241046875715,-0.022346250712872]],[[-0.051568500697613,-0.067571371793747,-0.0020746185909957],[-0.030620589852333,0.06526942551136,-0.12356505542994],[-0.027165379375219,-0.034326866269112,-0.1567964553833]],[[-0.080559231340885,0.096827052533627,0.19918049871922],[-0.085954517126083,-0.1943995654583,0.076899066567421],[0.10835433751345,0.054535858333111,0.17108568549156]],[[-0.17690597474575,-0.0013345630140975,0.043017286807299],[-0.031369935721159,0.1861228197813,0.20326299965382],[-0.18893386423588,0.14851424098015,0.11508232355118]],[[-0.087426587939262,0.2861068546772,-0.025139203295112],[-0.039131116122007,0.15526792407036,-0.07614029943943],[-0.0089591844007373,0.13735254108906,0.053404498845339]],[[0.021491842344403,0.18756110966206,0.21482910215855],[-0.10416926443577,-0.16370075941086,0.021245868876576],[-0.066138133406639,-0.10340780764818,-0.12569324672222]],[[-0.10889139771461,-0.065615549683571,0.032903663814068],[0.17867282032967,-0.07479452341795,-0.11640983819962],[0.24418120086193,0.060564864426851,-0.070218168199062]],[[0.20945616066456,0.1222991719842,0.21830481290817],[0.02373543381691,0.14295069873333,0.0088923145085573],[-0.1052043363452,-0.0067114275880158,0.12421600520611]],[[-0.02778335660696,-0.15335504710674,0.072074979543686],[0.039774660021067,0.046444181352854,0.029018577188253],[0.025968441739678,0.0095933983102441,0.025205932557583]],[[-0.012978184036911,0.084601998329163,-0.084009051322937],[-0.0099272569641471,0.021519713103771,-0.14214478433132],[-0.1165571436286,-0.078680418431759,-0.12764064967632]],[[0.027931433171034,-0.1041321605444,-0.024185001850128],[-0.053225990384817,-0.14388307929039,0.061234343796968],[-0.081646643579006,-0.065354064106941,0.03467533737421]],[[0.051424473524094,-0.024273658171296,-0.16845460236073],[0.13230311870575,-0.034336812794209,-0.0042975950054824],[0.1899897903204,-0.024461632594466,-0.10859908908606]],[[-0.13405434787273,-0.27011969685555,-0.084596619009972],[-0.067752830684185,-0.18622031807899,-0.15534579753876],[-0.058089662343264,-0.024510556831956,0.02508133649826]],[[-0.023160628974438,-0.043234247714281,-0.005432699341327],[-0.034808784723282,-0.013899212703109,0.047563418745995],[0.16223534941673,-0.011072455905378,0.077271468937397]],[[-0.11308288574219,0.022506454959512,-0.016186337918043],[-0.061010736972094,0.1815118342638,-0.074714623391628],[0.12390458583832,0.12918215990067,-0.11173432320356]],[[-0.22820322215557,-0.057183738797903,0.060338158160448],[-0.06073696538806,0.075882270932198,0.1191575601697],[0.071424178779125,0.075093701481819,0.15454438328743]],[[-0.080257028341293,0.053407847881317,0.06854248046875],[0.023266708478332,-0.080008737742901,0.16250610351562],[-0.055780552327633,-0.05784772336483,0.17724877595901]],[[0.14960591495037,-0.033197484910488,0.077226161956787],[0.037659022957087,0.051298305392265,0.13946139812469],[0.10686685144901,0.057286448776722,0.04000710695982]]],[[[-0.058960575610399,0.073640614748001,-0.018646724522114],[0.058379217982292,-0.090270087122917,-0.063526317477226],[-0.060958560556173,-0.10124850273132,-0.028583485633135]],[[0.035070069134235,-0.040990773588419,-0.061758443713188],[-0.12655761837959,0.029452720656991,0.015591344796121],[0.083483800292015,0.049168489873409,0.0070634037256241]],[[0.093697480857372,0.069519139826298,0.046734627336264],[0.023843949660659,0.011197609826922,0.031932704150677],[0.022619483992457,0.021718064323068,0.056591641157866]],[[0.043357636779547,-0.047445967793465,-0.032617561519146],[-0.016808733344078,-0.052398130297661,-0.094385899603367],[0.14939548075199,-0.045976400375366,0.12268570810556]],[[0.034144174307585,-0.096318326890469,0.15176455676556],[-0.05436273291707,0.050212275236845,0.07945355027914],[0.062709867954254,-0.068272188305855,-0.066776469349861]],[[-0.068962670862675,0.073911584913731,-0.19153715670109],[-0.12336555123329,0.093543782830238,0.044801216572523],[-0.11547880619764,0.011905648745596,0.12219851464033]],[[-0.036981672048569,0.030414547771215,-0.078479498624802],[-0.0096876611933112,0.052185222506523,-0.00073340890230611],[0.058568581938744,0.01560156326741,0.10464415699244]],[[0.032626956701279,-0.029712423682213,0.048633988946676],[0.04715083912015,0.11285860836506,0.14472648501396],[0.13221523165703,0.094391360878944,0.10050082951784]],[[0.019857758656144,0.19606192409992,0.095421746373177],[-0.015647722408175,0.032408948987722,-0.025452442467213],[-0.10414645075798,-0.13419669866562,-0.022928297519684]],[[0.025717936456203,0.028504636138678,-0.052603330463171],[0.070060320198536,-0.018039269372821,0.029035748913884],[-0.061671316623688,-0.12384160608053,-0.012147154659033]],[[0.095784410834312,0.025542998686433,0.095940984785557],[-0.029962323606014,0.0011366822291166,0.053685963153839],[0.10366640985012,0.15519614517689,0.031982488930225]],[[-0.11980575323105,-0.0068393382243812,0.030563363805413],[-0.13062936067581,-0.079107254743576,-0.036372259259224],[0.047966569662094,0.040557816624641,-0.080570630729198]],[[0.0024176111910492,-0.040632423013449,-0.05449290946126],[0.049037095159292,-0.045080956071615,-0.056546904146671],[-0.01957100071013,-0.16070048511028,-0.16319964826107]],[[0.0031724856235087,-0.10410647839308,-0.10540270805359],[-0.088673017919064,-0.055918894708157,-0.052665628492832],[-0.039928920567036,-0.038187772035599,0.066416829824448]],[[0.019368633627892,-0.027233473956585,-0.076328486204147],[0.14839275181293,-0.091056860983372,-0.045644756406546],[0.049505852162838,-0.022764092311263,-0.066544614732265]],[[-0.11511133611202,-0.087565295398235,0.069573432207108],[-0.037796791642904,0.060956753790379,-0.083113625645638],[-0.067672364413738,0.062628768384457,-0.17919827997684]],[[0.079538434743881,-0.093476161360741,-0.04653637111187],[-0.065607391297817,-0.0089712087064981,0.042794819921255],[-0.11658126860857,-0.038635514676571,0.020419931039214]],[[-0.061285607516766,0.090242467820644,-0.018775915727019],[-0.063841849565506,0.099097535014153,-0.081449419260025],[0.1229926943779,0.1371003985405,-0.063634462654591]],[[0.0075976732186973,-0.078527733683586,0.0065983738750219],[0.08063030987978,-0.15496292710304,0.059103313833475],[0.13017931580544,-0.086853258311749,-0.072744525969028]],[[-0.025870550423861,0.021654192358255,-0.079705566167831],[-0.11036559939384,0.022083470597863,-0.058833584189415],[0.18021079897881,0.073301307857037,-0.15287587046623]],[[0.044801324605942,0.0030726387631148,-0.11284445971251],[-0.093113042414188,-0.15862601995468,0.037130627781153],[-0.061435081064701,-0.10268665105104,-0.050224557518959]],[[0.21319258213043,-0.19245590269566,-0.029085857793689],[0.061216689646244,-0.015820791944861,-0.019271858036518],[-0.19406765699387,-0.048350784927607,0.0081413835287094]],[[0.091190129518509,-0.015229589305818,-0.01318568456918],[0.047654543071985,-0.023559499531984,0.067755781114101],[-0.11710115522146,-0.091241583228111,0.024359539151192]],[[-0.0010484687518328,0.018638109788299,-0.082365654408932],[0.022831318899989,0.08952447026968,-0.055820923298597],[0.026823041960597,-0.078594461083412,-0.025714199990034]],[[0.10312672704458,-0.063365198671818,0.075306206941605],[-0.11821253597736,-0.00067974365083501,0.096011310815811],[0.13685345649719,0.11152662336826,0.074316598474979]],[[-0.020382130518556,-0.16376234591007,0.046999238431454],[-0.070943504571915,-0.031864363700151,0.096200078725815],[-0.033998388797045,-0.049644291400909,-0.026257324963808]],[[-0.12547490000725,-0.002919529331848,0.033927328884602],[-0.037128712981939,-0.0048504797741771,0.098500542342663],[-0.13207304477692,0.035927724093199,0.15541538596153]],[[-0.094613969326019,0.070506930351257,-0.18130119144917],[0.08243303745985,-0.0080006802454591,-0.073075786232948],[0.028509415686131,-0.061219193041325,-0.0080961650237441]],[[-0.02328503318131,-0.034907553344965,-0.0060570454224944],[-0.014229978434741,-0.11872895807028,-0.060134746134281],[-0.058101959526539,-0.050096184015274,-0.09103624522686]],[[-0.047679256647825,0.069802217185497,0.11886207014322],[-0.033377345651388,-0.046947758644819,0.13413539528847],[0.015923200175166,-0.10421258956194,0.053473327308893]],[[-0.1069628149271,-0.05056830868125,-0.014999036677182],[-0.062763914465904,0.034877918660641,-0.039379559457302],[-0.093025639653206,0.0007948909769766,-0.20306214690208]],[[-0.086874678730965,0.076266497373581,-0.15162451565266],[-0.090150915086269,0.033990904688835,-0.025803146883845],[0.050737638026476,-0.099296264350414,-0.035051863640547]],[[0.064820170402527,0.017955791205168,0.062697611749172],[-0.078676119446754,0.067193664610386,0.10364708304405],[0.061216827481985,0.056991253048182,0.027465268969536]],[[-0.014616599306464,0.015870532020926,0.069608628749847],[0.042058296501637,0.13912908732891,-0.056548666208982],[-0.10752886533737,0.056570239365101,-0.092881590127945]],[[-0.081314861774445,-0.06025006249547,-0.10190402716398],[-0.12180323898792,0.046244509518147,-0.20694276690483],[-0.082527704536915,-0.052313592284918,-0.27259811758995]],[[-0.017849747091532,-0.0070855729281902,0.0070717358030379],[0.0056710974313319,0.03143135458231,0.031851824373007],[0.033817302435637,0.030088175088167,-0.093307808041573]],[[0.038524780422449,0.039832063019276,0.025389788672328],[-0.023489033803344,-0.082995913922787,-0.065426848828793],[-0.02986435033381,-0.015759726986289,-0.18985430896282]],[[0.070305250585079,0.039194669574499,0.25997224450111],[0.061169814318419,-0.094225838780403,-0.0035974134225398],[0.14159618318081,-0.15850958228111,-0.1557350307703]],[[-0.0059436247684062,0.04235116392374,0.10264405608177],[-0.033312425017357,-0.058150593191385,0.04291545599699],[-0.031853787600994,-0.14652200043201,-0.058731403201818]],[[-0.17594814300537,-0.057065803557634,-0.042074527591467],[0.09433663636446,0.042732495814562,-0.024904735386372],[0.19133749604225,0.14021581411362,0.11214178055525]],[[-0.046631403267384,0.0018037488916889,0.022544836625457],[-0.050653301179409,0.0037295329384506,0.044655721634626],[-0.20807974040508,0.053222984075546,-0.015497392974794]],[[0.0097306342795491,-0.090968154370785,-0.066661700606346],[-0.035395592451096,-0.031878966838121,0.0040359837003052],[0.046358436346054,0.055454079061747,0.012480312027037]],[[0.040344957262278,-0.058960217982531,-0.10294754803181],[-0.0016942038200796,-0.12584419548512,-0.0059863366186619],[-0.10623918473721,-0.046370308846235,0.030853819102049]],[[-0.029807915911078,-0.068182788789272,0.029364502057433],[-0.049991875886917,0.047998867928982,0.011540737003088],[0.025446094572544,-0.061907153576612,-0.10206052660942]],[[-0.02895568497479,-0.090092375874519,0.1233776062727],[0.01048441324383,-0.22314375638962,-0.03798770159483],[0.12883758544922,-0.020198764279485,0.055161412805319]],[[-0.21506029367447,-0.026126949116588,-0.11144904792309],[-0.1566813737154,-0.016918076202273,-0.018125854432583],[-0.025328991934657,0.015374838374555,0.037141870707273]],[[-0.056407950818539,0.097333870828152,-0.1589629650116],[-0.022853001952171,0.12947361171246,-0.028953094035387],[-0.12987227737904,0.073067232966423,-0.037054259330034]],[[0.027958435937762,0.0049641174264252,-0.079362727701664],[-0.028903611004353,0.010152168571949,-0.087153732776642],[0.020084971562028,-0.10893292725086,0.074781887233257]],[[0.46273228526115,-0.036517761647701,0.0038529236335307],[0.079519458115101,0.061975926160812,-0.018998637795448],[0.1803353279829,0.09762691706419,0.089788749814034]],[[-0.23385478556156,-0.11556816846132,0.019561968743801],[-0.094478510320187,-0.062842957675457,0.015904318541288],[-0.17281965911388,-0.10014868527651,-0.068860337138176]],[[-0.23473539948463,0.066419444978237,-0.04365623742342],[-0.10632419586182,-0.0029358747415245,0.062425598502159],[0.011933828704059,-0.12391440570354,-0.07251538336277]],[[-0.072712056338787,0.00047177218948491,-0.019726483151317],[-0.14786882698536,-0.0308184530586,0.19825604557991],[-0.091045916080475,-0.011547027155757,-0.23532330989838]],[[-0.023896815255284,-0.043140698224306,-0.04867460206151],[0.036110207438469,0.0076298336498439,-0.046037837862968],[0.0014574355445802,-0.11970137804747,-0.15943431854248]],[[-0.035583153367043,0.11967945843935,-0.12214773148298],[-0.050868805497885,0.020776720717549,-0.085585348308086],[-0.061432532966137,-0.012854691594839,0.015607505105436]],[[0.095884799957275,0.030843053013086,-0.055587466806173],[0.13599114120007,0.054717406630516,0.071565449237823],[0.09473480284214,-0.053140193223953,-0.014950883574784]],[[-0.20247296988964,0.028417823836207,0.0086784129962325],[-0.06337508559227,0.12895372509956,0.093112707138062],[-0.061349380761385,0.013450682163239,0.05085576325655]],[[-0.064153157174587,0.03084465675056,-0.0069547360762954],[0.167475938797,0.082410134375095,-0.09836620092392],[-0.055808052420616,0.014549748972058,0.012965342029929]],[[0.030562689527869,-0.061159465461969,-0.061451017856598],[0.045948330312967,-0.0064708101563156,0.018148999661207],[-0.057867255061865,-0.16581055521965,-0.083050779998302]],[[-0.10904283821583,0.046429976820946,-0.017172882333398],[0.038582924753428,0.0019643064588308,-0.095961935818195],[-0.033583842217922,-0.039573952555656,-0.091695174574852]],[[0.11235309392214,0.05376848205924,-0.01273167040199],[0.075044691562653,0.10426103323698,0.02131200581789],[0.0099885510280728,0.068087741732597,-0.053885404020548]],[[0.0074999933131039,-0.026183731853962,-0.067121654748917],[-0.092565648257732,0.11498216539621,-0.30257922410965],[-0.20896010100842,-0.12036536633968,-0.092195652425289]],[[0.088175989687443,-0.12255065888166,-0.098874926567078],[0.026133857667446,-0.035901073366404,0.0033082140143961],[-0.094433665275574,-0.10986208170652,-0.120685338974]],[[0.017024671658874,0.0029041729867458,-0.044077314436436],[0.0094144809991121,-0.039241138845682,0.062075614929199],[0.052783630788326,-0.028269350528717,0.021078169345856]],[[0.17666724324226,0.1467105448246,0.067678183317184],[0.17544117569923,0.13181455433369,0.17767512798309],[0.11800250411034,-0.021099012345076,0.20048321783543]],[[-0.082026861608028,-0.0090407263487577,0.059333849698305],[0.0071318582631648,0.0065366043709219,-0.07575435936451],[0.08932201564312,0.050921078771353,0.042018827050924]],[[0.20429287850857,-0.16525721549988,-0.053935073316097],[0.034537676721811,-0.039172206073999,0.0086019588634372],[0.046076592057943,-0.089305900037289,-0.033594757318497]],[[-0.029228547587991,-0.02673839405179,-0.14865179359913],[-0.005147690884769,-0.068802766501904,-0.065474435687065],[-0.10260466486216,-0.08206008374691,-0.045074552297592]],[[-0.064041763544083,-0.22525852918625,-0.10011278092861],[-0.016895154491067,-0.21793980896473,-0.086680047214031],[-0.035177797079086,-0.051477212458849,-0.16007320582867]],[[0.23053665459156,-0.034119382500648,-0.024043705314398],[-0.0068497331812978,-0.090273328125477,0.033537928014994],[-0.0012005212483928,-0.031251024454832,-0.026758192107081]],[[-0.04700219258666,-0.0062531284056604,-0.03134560585022],[0.040344513952732,0.044832549989223,-0.099339962005615],[0.021973809227347,-0.15234877169132,-0.069976724684238]],[[-0.026520371437073,0.044534251093864,-0.12722064554691],[-0.025525826960802,0.071664065122604,0.20973359048367],[0.16735453903675,-0.033508203923702,-0.049971673637629]],[[-0.060233615338802,-0.023986160755157,0.086584724485874],[0.019148014485836,0.010275911539793,0.016723992303014],[-0.10993666946888,0.015526070259511,0.16740903258324]],[[-0.15422378480434,-0.12676613032818,-0.02400310151279],[-0.058137852698565,-0.11922448128462,-0.14979121088982],[-0.052419163286686,-0.013701976276934,-0.058364659547806]],[[0.040788371115923,-0.094916127622128,-0.055345505475998],[-0.031000768765807,0.090873047709465,0.023672942072153],[0.07538628578186,0.035623889416456,-0.039367947727442]],[[-0.022451791912317,0.02951423637569,-0.075096189975739],[-0.034401684999466,0.14235895872116,-0.024643866345286],[-0.011522741988301,0.099942274391651,-0.11598289757967]],[[0.018221722915769,0.014544955454767,0.065417639911175],[0.017652705311775,0.019794719293714,0.046784318983555],[0.0040611368604004,0.011692117899656,0.0021338460501283]],[[0.024171946570277,0.018677413463593,-0.15073399245739],[-0.085632339119911,-0.02769859880209,0.17303515970707],[-0.0032295915298164,-0.061048410832882,-0.025221470743418]],[[-0.047907065600157,-0.061141449958086,0.12741589546204],[-0.14513774216175,0.029063014313579,0.19455912709236],[-0.05550891906023,-0.059765495359898,-0.12663616240025]],[[-0.091363452374935,0.005422763992101,-0.057123489677906],[0.023299142718315,-0.061604477465153,0.016213294118643],[0.14497864246368,-0.093031838536263,-0.035890631377697]],[[0.09060975164175,-0.014900562353432,0.18515238165855],[0.21074612438679,0.010532533749938,-0.17581261694431],[0.14579457044601,-0.053337972611189,-0.19013944268227]],[[-0.10492044687271,0.060120243579149,-0.028739614412189],[0.012094512581825,-0.021286914125085,0.090074002742767],[0.094150193035603,-0.034624442458153,0.14044472575188]],[[0.048366274684668,-0.1501742452383,-0.037844825536013],[-0.15878339111805,-0.0012211727444082,-0.11275204271078],[0.17513354122639,0.21647806465626,0.17989818751812]],[[0.15130038559437,0.19586031138897,-0.029597764834762],[-0.016840158030391,0.052195586264133,-0.062963970005512],[0.12782533466816,-0.0066235652193427,0.049809910356998]],[[-0.10344760864973,0.006469301879406,0.048194050788879],[-0.13377526402473,-0.069177851080894,-0.051550313830376],[-0.11227530241013,-0.026933182030916,-0.13622523844242]],[[0.13186159729958,-0.067877493798733,-0.0063809677958488],[0.15982772409916,0.031412191689014,0.016214165836573],[0.034435719251633,-0.032319445163012,-0.032972931861877]],[[0.0007868628599681,-0.065234586596489,0.0047738775610924],[0.054038841277361,0.048108007758856,0.038230881094933],[0.13938410580158,0.025718221440911,0.07470627874136]],[[0.050894636660814,0.062610447406769,0.15371109545231],[0.03852965682745,0.045661792159081,0.12959662079811],[-0.046298567205667,0.071952350437641,-0.085332587361336]],[[0.15048240125179,-0.027153041213751,0.023961547762156],[0.082914561033249,-0.011450471356511,0.044622700661421],[0.17683300375938,-0.0097924442961812,-0.041115406900644]],[[0.0069545195437968,0.056268248707056,-0.039921432733536],[-0.065196372568607,0.1233831346035,-0.1298069357872],[-0.050661955028772,0.21218860149384,0.023328932002187]],[[-0.029211916029453,0.014021798036993,0.05237253010273],[-0.040898062288761,-0.13228471577168,0.1223908290267],[0.063647709786892,-0.05385185033083,0.00090553797781467]],[[-0.0053922086954117,0.068137615919113,-0.1168177947402],[0.064080983400345,0.12488287687302,0.025487240403891],[-0.062937639653683,0.13350038230419,-0.044568005949259]],[[-0.05851361528039,0.0046554016880691,-0.21281291544437],[-0.06805632263422,-0.029696365818381,-0.16130276024342],[-0.13354207575321,-0.077221974730492,0.0041318158619106]],[[0.074804216623306,-0.056977346539497,0.048884626477957],[-0.016563626006246,-0.018766792491078,-0.010322376154363],[-0.078875333070755,-0.11470051109791,-0.011530455201864]],[[0.044462785124779,0.033490315079689,-0.033193577080965],[-0.12547911703587,-0.022138020023704,-0.031497910618782],[-0.050475887954235,-0.016869092360139,0.0070107989013195]],[[-0.024860458448529,0.0053844400681555,-0.039669774472713],[-0.1352236866951,0.05183332040906,0.037271816283464],[-0.058275260031223,0.013291396200657,-0.066103182733059]],[[-0.053445026278496,-0.085705526173115,0.095845505595207],[-0.057425726205111,-0.096811674535275,0.099908471107483],[-0.040634009987116,-0.010389999486506,0.14334812760353]],[[-0.037981059402227,-0.040135510265827,-0.12051017582417],[-0.023640885949135,0.10994040220976,-0.043816287070513],[0.10705957561731,0.13030363619328,-0.10191696882248]],[[0.089775957167149,0.10830899327993,-0.067524664103985],[0.088081486523151,-0.0025348190683872,0.12348004430532],[0.024320939555764,-0.013303277082741,0.074870988726616]],[[-0.10211612284184,-0.093764215707779,0.073144428431988],[-0.0080489404499531,0.095873862504959,-0.020172609016299],[-0.15510241687298,0.12083251029253,-0.091568171977997]],[[-0.011790765449405,0.074955724179745,0.092446900904179],[0.092589676380157,0.037257522344589,-0.070580743253231],[0.070775792002678,-0.18417932093143,-0.022239280864596]],[[-0.13198031485081,-0.090890243649483,0.031745426356792],[-0.098500587046146,-0.083140194416046,0.0019586498383433],[0.098175458610058,0.012889946810901,-0.017697967588902]],[[0.18817301094532,0.20673301815987,-0.048669703304768],[0.065673790872097,0.025778835639358,-0.077613823115826],[0.16031748056412,0.091486148536205,0.047411568462849]],[[-0.16788457334042,0.031519867479801,-0.11715666949749],[-0.063225127756596,-0.0047706020995975,-0.059805657714605],[0.084207460284233,-0.028615027666092,0.024922579526901]],[[-0.079489678144455,0.032811868935823,-0.065105102956295],[0.064780659973621,0.14994736015797,0.076324269175529],[-0.08406089246273,0.05191695690155,0.047189835458994]],[[0.0737075060606,0.066144049167633,-0.057572335004807],[0.033339105546474,0.10841137170792,-0.0035781199112535],[-0.011610995978117,-0.11414393782616,-0.022369677200913]],[[0.037400711327791,0.11477538198233,-0.15047414600849],[0.23366409540176,-0.033344388008118,-0.14223681390285],[0.048679169267416,-0.065837673842907,-0.017424937337637]],[[-0.06661069393158,-0.095490597188473,0.0053625795990229],[-0.049059122800827,-0.0086566470563412,0.065478108823299],[0.015845037996769,0.073312625288963,0.054042015224695]],[[-0.1381973028183,-0.051705975085497,0.14237236976624],[-0.073593206703663,0.064273647964001,0.090477518737316],[-0.20992960035801,-0.026059767231345,0.060417599976063]],[[-0.077139668166637,0.069201409816742,0.086260385811329],[-0.070839643478394,0.036299899220467,0.097587689757347],[-0.002670003566891,0.055637177079916,0.045981999486685]],[[0.036572799086571,-0.0080679226666689,-0.0048103234730661],[0.040644768625498,-0.042953677475452,0.11232443153858],[0.05465342849493,-0.043622098863125,0.17512290179729]],[[-0.10763419419527,-0.028663609176874,0.048644371330738],[-0.076235838234425,-0.040379710495472,-0.11124809831381],[0.04752954095602,0.10337641835213,-0.065895676612854]],[[-0.062069192528725,0.12720508873463,-0.041963253170252],[0.084666043519974,-0.0057591926306486,-0.086319886147976],[0.00050856493180618,-0.028668571263552,-0.13765022158623]],[[-0.0013897635508329,-0.048732612282038,0.04286940023303],[-0.023748455569148,-0.02898657694459,-0.13124094903469],[0.10192577540874,0.088072799146175,-0.15314148366451]],[[-0.22568106651306,-0.017316428944468,0.11873926967382],[-0.17883569002151,0.14478187263012,0.015957843512297],[0.0038478926289827,0.037678018212318,0.23836946487427]],[[0.26717957854271,0.0081839626654983,0.04064841940999],[-0.041311219334602,0.038300581276417,0.017646290361881],[-0.10904249548912,-0.013667281717062,0.21453246474266]],[[0.013190464116633,0.017181230708957,0.002588365226984],[0.0042314035817981,-0.035266563296318,-0.038177948445082],[-0.09369120746851,-0.065565817058086,-0.0324940495193]],[[-0.05541755631566,0.011990980245173,0.038760684430599],[0.045967292040586,-0.041235364973545,0.014940774999559],[-0.071903765201569,-0.032055452466011,0.069467335939407]],[[-0.055492050945759,-0.2254695892334,0.077994413673878],[0.075899794697762,-0.032824825495481,0.01171493716538],[-0.063072517514229,0.0062899151816964,0.11680825054646]],[[0.11338663101196,-0.063125565648079,-0.091278672218323],[0.045870706439018,-0.053865224123001,-0.054875772446394],[0.084532402455807,0.038683567196131,-0.060603097081184]],[[0.11757542937994,-0.15949659049511,0.0024715650361031],[0.074835382401943,-0.027478136122227,-0.17055788636208],[0.088229395449162,-0.053420446813107,0.0022475235164165]],[[0.0031373361125588,-0.099700599908829,-0.027637124061584],[-0.021536368876696,-0.079151123762131,-0.084514789283276],[-0.0076611079275608,-0.055475238710642,-0.014255071990192]],[[0.11632249504328,0.073650851845741,0.072855658829212],[0.12758672237396,0.022072687745094,-0.077230013906956],[0.083700880408287,-0.060746621340513,0.010925807058811]],[[-0.001593297929503,-0.078592866659164,0.0053886920213699],[-0.050619658082724,-0.074670284986496,-0.098163262009621],[-0.15401986241341,0.089753523468971,-0.088360592722893]],[[-0.11255179345608,0.019611967727542,0.12273213267326],[-0.099995709955692,0.070965856313705,0.17526540160179],[-0.044013660401106,0.063555017113686,0.10217423737049]],[[-0.01553856022656,-0.081230737268925,-0.057479467242956],[0.076502583920956,-0.015908874571323,0.010543844662607],[0.27367636561394,-0.055301815271378,0.011125350371003]],[[0.19080872833729,-0.14957213401794,0.03291030600667],[0.12862609326839,0.070643156766891,0.0041130632162094],[-0.14044317603111,-0.05414317920804,-0.031549114733934]],[[0.034007929265499,0.11441134661436,-0.081359103322029],[-0.060106258839369,0.13373713195324,-0.026924120262265],[-0.010537046939135,-0.059505935758352,0.049932043999434]],[[0.0039219008758664,-0.11844005435705,-0.087076976895332],[-0.020625406876206,0.047285381704569,-0.050757370889187],[0.034151088446379,0.082437686622143,0.0086223827674985]]],[[[0.10512008517981,-0.068870157003403,-0.091752238571644],[-0.076210640370846,-0.071031980216503,-0.010499324649572],[0.1264985203743,-0.015966964885592,0.23882347345352]],[[-0.055240858346224,0.021509168669581,0.067461542785168],[-0.020873451605439,0.047758799046278,0.096070043742657],[0.0098932385444641,-0.045773919671774,-0.029572427272797]],[[0.071931764483452,-0.035186175256968,-0.17508259415627],[-0.11332774162292,-0.030069313943386,-0.058389570564032],[0.1176830381155,0.043816439807415,-0.096833527088165]],[[0.017873318865895,-0.0097459061071277,-0.045258115977049],[-0.002772472333163,0.027277270331979,0.010489657521248],[-0.042242527008057,0.031665436923504,0.037117663770914]],[[-0.014172601513565,-0.036424551159143,0.054126460105181],[-0.036120254546404,0.046398036181927,-0.054649323225021],[0.10338363051414,-0.045115005224943,-0.016804967075586]],[[-0.011568293906748,0.10313151031733,-0.08200778067112],[0.077217310667038,-0.028640605509281,-0.15249049663544],[0.026880392804742,0.011070135980844,0.019818147644401]],[[-0.10439188033342,-0.12906266748905,-0.20998638868332],[0.0060986783355474,0.050069756805897,0.02296101115644],[0.10557205975056,0.023188730701804,-0.10098399221897]],[[0.046436592936516,0.059421449899673,0.10206325352192],[-0.14724338054657,-0.14738456904888,0.15206131339073],[0.018312446773052,0.010432220995426,-0.017046838998795]],[[-0.1212967261672,0.012542667798698,0.27238327264786],[-0.11119350790977,-0.13669426739216,0.18034537136555],[-0.089954681694508,-0.12154957652092,0.084232792258263]],[[0.0033931666985154,0.002098229015246,0.067681223154068],[-0.063327461481094,0.031085407361388,0.025416009128094],[-0.038336958736181,-0.17323982715607,-0.039491824805737]],[[-0.096860267221928,-0.13518120348454,0.082053028047085],[-0.075482279062271,-0.040851350873709,0.16404092311859],[0.0035795005969703,0.025882882997394,-0.13542573153973]],[[-0.053671855479479,0.040522631257772,-0.046394556760788],[-0.12687356770039,-0.046601563692093,-0.03987854346633],[0.064511880278587,-0.01975361071527,0.1586646437645]],[[-0.019896060228348,-0.035256110131741,-0.11936562508345],[-0.027437206357718,-0.13605996966362,-0.097529537975788],[-0.0030080005526543,0.017162779346108,0.13541676104069]],[[-0.14250014722347,0.0096811782568693,0.078786052763462],[-0.13976658880711,-0.07361363619566,0.048666935414076],[-0.13618367910385,-0.1757190823555,-0.016861816868186]],[[0.076170936226845,-0.052304066717625,-0.093111611902714],[-0.044839642941952,-0.09007553011179,0.024914028123021],[0.0014504541177303,-0.077106654644012,0.040218699723482]],[[0.018280619755387,0.033126082271338,-0.0066527700982988],[-0.21851855516434,-0.033725541085005,0.10522083193064],[0.20099875330925,0.04930404573679,-0.1478786021471]],[[0.12909126281738,-0.064744174480438,0.11075986921787],[-0.12473265081644,-0.035157531499863,-0.084447778761387],[0.01594141125679,-0.041737999767065,-0.072012029588223]],[[0.049334082752466,-0.10499010235071,-0.17135488986969],[-0.044523399323225,-0.16836538910866,0.024457773193717],[-0.081567965447903,-0.010234551504254,0.11604794114828]],[[0.0067706205882132,0.010857599787414,0.16331896185875],[0.012062013149261,0.021126799285412,-0.11372624337673],[0.075294710695744,0.055841598659754,-0.043322619050741]],[[-0.13286723196507,0.016327200457454,0.098882228136063],[-0.054015044122934,-0.022060779854655,-0.0081364559009671],[-0.13292117416859,0.0098697654902935,0.14205996692181]],[[-0.01821593567729,-0.02739480510354,-0.081311218440533],[-0.00012215174501762,-0.084474712610245,-0.027488360181451],[-0.019032953307033,-0.050219189375639,0.011652344837785]],[[0.060287021100521,0.10847284644842,0.0011496201623231],[-0.10589348524809,-0.082124605774879,0.13840121030807],[0.025418637320399,0.12957514822483,0.064348593354225]],[[0.0054058451205492,0.0047456752508879,-0.16582041978836],[0.067943729460239,-0.23732925951481,0.18651100993156],[0.096746742725372,-0.037099651992321,-0.05827571451664]],[[0.10094077885151,-0.0084562916308641,-0.01297277584672],[0.050256073474884,0.0044733211398125,0.008480510674417],[-0.058436177670956,-0.12572965025902,-0.087936788797379]],[[0.05254365876317,0.0090739158913493,0.022437773644924],[0.15719164907932,-0.039036840200424,0.077755525708199],[0.29705372452736,-0.090672001242638,0.03616776317358]],[[0.031603459268808,0.0052006337791681,0.10634904354811],[-0.0064479229040444,-0.030807228758931,0.00049776525702327],[0.12505008280277,-0.081908442080021,-0.017368087545037]],[[0.10502380132675,-0.0077095930464566,0.16928897798061],[0.097188822925091,0.02761759236455,0.00019338095444255],[0.071782469749451,-0.013716647401452,-0.10861359536648]],[[-0.01245663035661,0.11949513107538,-0.025468384847045],[0.12487588077784,0.037462458014488,-0.13147522509098],[0.086692966520786,0.0015104956692085,-0.046446796506643]],[[-0.04316221177578,0.090130604803562,0.033313781023026],[-0.031567420810461,-0.1387941390276,0.0057072984054685],[0.0046150181442499,0.078711844980717,0.15850201249123]],[[-0.10137980431318,0.027703927829862,0.10251963883638],[-0.11059335619211,0.1462650001049,-0.14318686723709],[0.033808387815952,0.018279068171978,-0.055162347853184]],[[0.018612034618855,0.049265716224909,0.037052880972624],[-0.092733412981033,0.069738499820232,0.015544173307717],[-0.007495338562876,0.06433892250061,0.15391254425049]],[[-0.033176802098751,-0.016029955819249,-0.061655525118113],[0.0078944768756628,-0.10846411436796,-3.1927556847222e-05],[0.0095938872545958,-0.023101527243853,0.16446049511433]],[[0.00065112445736304,0.0078741339966655,-0.11067263782024],[0.10492916405201,0.040999542921782,-0.052739802747965],[-0.13720959424973,0.038161363452673,0.29288274049759]],[[0.12650261819363,0.19846421480179,-0.044201109558344],[-0.042929138988256,-0.069442927837372,0.10690323263407],[0.085723668336868,-0.041112840175629,0.10071762651205]],[[-0.012269867584109,-0.044531267136335,-0.35390573740005],[-0.063251383602619,-0.081417299807072,-0.15187485516071],[-0.11525136232376,0.053281754255295,-0.11677045375109]],[[0.019865462556481,0.030992677435279,0.047615930438042],[0.018012570217252,-0.048461426049471,0.00096458964981139],[-0.016645720228553,0.0317687317729,0.0094117280095816]],[[-0.019393917173147,-0.0033814730122685,-0.13602244853973],[-0.021323541179299,-0.076308198273182,-0.063086286187172],[0.059767004102468,-0.037845768034458,-0.041962511837482]],[[0.04940078407526,0.068364143371582,-0.15073232352734],[-0.0234414935112,0.10289894044399,-0.019375160336494],[0.089119732379913,-0.19285915791988,-0.067665211856365]],[[0.1640337407589,0.15984040498734,-0.040996268391609],[0.013897600583732,0.03992860391736,-0.018276281654835],[-0.033406518399715,0.00081203237641603,0.068847186863422]],[[0.034967496991158,0.071248397231102,-0.0249984562397],[-0.086026079952717,0.056922197341919,0.10183344781399],[-0.029293285682797,0.0010533137246966,-0.045244120061398]],[[-0.028556987643242,0.076956391334534,-0.051513817161322],[-0.22669726610184,0.17125786840916,0.057321265339851],[0.07793091237545,0.13129875063896,0.0033321981318295]],[[0.10759481787682,-0.020395737141371,-0.11499363183975],[0.16499409079552,0.017549503594637,0.016510225832462],[0.031025268137455,0.028620585799217,0.092671163380146]],[[-0.0014694205019623,-0.13547985255718,-0.01164944190532],[-0.07864934951067,-0.097283996641636,0.035515636205673],[0.005767063703388,-0.014698014594615,-0.08762389421463]],[[-0.098639890551567,-0.0075717950239778,-0.0069855842739344],[-0.094078697264194,0.072341226041317,0.0039847483858466],[-0.082727327942848,-0.01852941699326,0.036844298243523]],[[0.065538622438908,-0.011081168428063,-0.11019063740969],[-0.10843480378389,-0.064534492790699,0.013614550232887],[0.046438876539469,-0.049043614417315,0.090764589607716]],[[-0.22765783965588,0.060555007308722,-0.046419642865658],[-0.013357805088162,-0.061145395040512,-0.12056629359722],[-0.022637212648988,0.036885503679514,0.051378909498453]],[[0.10530173778534,0.049544218927622,-0.090263493359089],[-0.10367418825626,0.075913317501545,-0.078966744244099],[-0.15367107093334,-0.073924511671066,0.024996688589454]],[[0.018973294645548,-0.071638084948063,0.035307481884956],[-0.050650294870138,0.060294479131699,-0.0035870077554137],[0.016957551240921,0.074882015585899,-0.14404094219208]],[[-0.1119993403554,-0.14041547477245,-0.11139278113842],[-0.024965358898044,0.055755581706762,0.046177748590708],[-0.0069071780890226,0.0071437880396843,0.023431079462171]],[[-0.065977834165096,-0.16468307375908,0.0064422874711454],[-0.14238139986992,-0.016484241932631,0.040483310818672],[-0.043362021446228,0.12434992194176,-0.0089881671592593]],[[-0.24414396286011,0.2013141810894,-0.013542961329222],[0.012854190543294,0.059923660010099,-0.027715757489204],[0.11425670236349,0.060120828449726,0.083729334175587]],[[-0.081386312842369,0.077836230397224,-0.11660280823708],[0.04845366999507,-0.0062053301371634,0.0071461265906692],[0.067089036107063,0.028480345383286,-0.059471789747477]],[[-0.019953282549977,0.0012572630075738,0.076593577861786],[0.002717153634876,0.049199771136045,0.020050229504704],[-0.03208114951849,-0.11625017225742,0.087157644331455]],[[0.042976919561625,-0.14059956371784,0.21637307107449],[0.15864369273186,-0.11925829201937,0.036585830152035],[-0.0029640349093825,-0.15647280216217,-0.063849695026875]],[[-0.16303806006908,0.10237184911966,0.13441653549671],[0.044003643095493,-0.1983787715435,0.057592879980803],[0.04872303083539,0.1233981102705,-0.02455597743392]],[[-0.23010575771332,-0.086353488266468,-0.098606392741203],[0.0095784179866314,0.068197339773178,0.063445493578911],[0.1254920065403,0.0073118670843542,-0.020191933959723]],[[0.080736480653286,0.069508738815784,-0.0056982934474945],[0.0036030423361808,-0.075501777231693,-0.044108092784882],[0.019194930791855,-0.14157031476498,0.0079527301713824]],[[-0.21922446787357,-0.11940531432629,-0.13275980949402],[0.010401364415884,-0.019196452572942,-0.067373432219028],[-0.1272259503603,-0.083153575658798,0.0195331890136]],[[-0.041410699486732,-0.13751761615276,-0.0059842211194336],[-0.18389488756657,-0.055657938122749,-0.11139775812626],[0.13525965809822,0.0017784076044336,-0.16958385705948]],[[-0.17547436058521,-4.8690555559006e-05,0.10421673953533],[-0.089437492191792,-0.011418795213103,0.097676567733288],[0.10742032527924,0.16906820237637,0.21234738826752]],[[0.0084900027140975,0.0073389052413404,-0.094437018036842],[0.035575717687607,-0.066546157002449,-0.025957284495234],[0.084276229143143,0.075919158756733,0.10888323932886]],[[-0.013585923239589,-0.13252130150795,-0.032421141862869],[-0.15986980497837,0.12492394447327,0.060153644531965],[0.12387152761221,0.01487962435931,-0.063062585890293]],[[-0.014709790237248,-0.016107140108943,-0.0069331885315478],[-0.016916990280151,-0.013657850213349,0.03132251650095],[-0.0050085769034922,0.015311380848289,0.084920085966587]],[[-0.0052561168558896,-0.029236735776067,-0.057596102356911],[-0.036140415817499,-0.027490485459566,-0.014694647863507],[0.025192406028509,-0.023828869685531,-0.0063488511368632]],[[-0.096211433410645,-0.0014038186054677,0.032662499696016],[-0.10831562429667,-0.0071164257824421,0.099118143320084],[-0.038691479712725,0.012375209480524,0.21294811367989]],[[0.00014607401681133,0.028409386053681,0.083569258451462],[0.09135527908802,0.086681425571442,0.025371342897415],[0.04498066753149,0.068896181881428,0.082927018404007]],[[-0.084326058626175,0.036014493554831,0.15076649188995],[0.020626906305552,-0.076741322875023,-0.057178288698196],[-0.026089051738381,-0.0054480396211147,-0.0034418518189341]],[[-0.056897312402725,-0.12930943071842,-0.068317472934723],[0.069833755493164,0.052916392683983,0.00091200764290988],[-0.02141310274601,-0.0063080149702728,-0.058001089841127]],[[-0.030858753249049,0.023983599618077,-0.050020083785057],[-0.055928330868483,-0.063255600631237,-0.051424838602543],[-0.014968141913414,-0.016148572787642,-0.009922482073307]],[[-0.013928459957242,-0.00017542199930176,-0.048348683863878],[0.048641797155142,-0.031781334429979,-0.15192343294621],[-0.016693640500307,-0.05215135216713,-0.10821852833033]],[[-0.14392161369324,0.068827852606773,-0.047746557742357],[-0.018477890640497,-0.020087713375688,-0.068611554801464],[-0.035814087837934,-0.027957454323769,-0.096433192491531]],[[0.05997546762228,-0.079560607671738,-0.014350237324834],[-0.22308650612831,-0.14759609103203,0.030097860842943],[-0.029524050652981,-0.12356353551149,0.005392097402364]],[[0.013663165271282,0.038390371948481,-0.072889372706413],[0.16879063844681,-0.041932493448257,-0.085976526141167],[-0.048082929104567,-0.13041815161705,-0.041237022727728]],[[-0.025299897417426,-0.11782800406218,0.10584484785795],[-0.12361256033182,-0.025092478841543,0.022649941965938],[-0.044975284487009,0.0096726799383759,0.0068653603084385]],[[0.027657819911838,0.053000871092081,-0.051967944949865],[0.092670693993568,-0.019627088680863,0.028274225071073],[-0.066948242485523,0.00033275529858656,-0.061175785958767]],[[-0.014756984077394,-0.12557674944401,0.091641314327717],[-0.0055560152977705,-0.11317104846239,0.11462727934122],[-0.03033328615129,0.081064082682133,-0.15798027813435]],[[-0.091726332902908,-0.12925700843334,-0.04686425998807],[-0.094758838415146,-0.039160791784525,-0.032707706093788],[-0.073987349867821,0.066161870956421,-0.097873404622078]],[[-0.098248951137066,-0.071723118424416,-0.056447945535183],[-0.15366318821907,-0.075302623212337,-0.011253669857979],[0.036785908043385,-0.18124562501907,0.027366518974304]],[[-0.072529286146164,-0.014977800659835,0.19544032216072],[0.095651514828205,0.056888349354267,0.14601092040539],[0.04750694334507,0.13458979129791,0.080546215176582]],[[0.0092262076213956,-0.11900586634874,0.0036473779473454],[-0.11915551871061,-0.12407636642456,-0.079574190080166],[-0.099526457488537,-0.084095850586891,0.025314407423139]],[[-0.1217010691762,-0.026635635644197,-0.032088615000248],[0.083271190524101,-0.046442359685898,0.0038335772696882],[-0.083979189395905,0.035842351615429,-0.0065195024944842]],[[0.035240322351456,0.036046840250492,0.065841548144817],[-0.024592963978648,-0.18924804031849,0.12678511440754],[0.047355849295855,0.028283653780818,-0.058981921523809]],[[0.064699314534664,-0.15396420657635,0.028657181188464],[-0.094353996217251,0.064516469836235,0.10502272844315],[0.058642737567425,0.027973469346762,0.017093054950237]],[[-0.08861255645752,-0.12311847507954,-0.0092936549335718],[-0.0016151000745595,-0.035664092749357,0.070428319275379],[0.016708299517632,-0.046102683991194,-0.023456029593945]],[[-0.043801084160805,0.072797663509846,-0.029908962547779],[-0.0012442368315533,-0.13294273614883,-0.057158373296261],[0.16059152781963,0.082463569939137,-0.04835557192564]],[[0.001621013158001,0.012168943881989,0.023674188181758],[0.16352786123753,-0.0031325039453804,-0.0366255864501],[0.10426650196314,-0.089786723256111,0.01876806281507]],[[0.076066851615906,-0.068687960505486,0.04555843397975],[0.027253875508904,-0.022345194593072,0.011279055848718],[-0.10407155007124,-0.069922424852848,0.0029887582641095]],[[-0.11883752048016,0.18695601820946,0.12385973334312],[0.21965856850147,-0.19402641057968,0.045629151165485],[0.15463604032993,-0.1684567630291,-0.011209889315069]],[[-0.078047223389149,-0.12286465615034,-0.068175762891769],[0.079609081149101,0.19073089957237,0.18360070884228],[0.11370553076267,0.18184754252434,0.0044840667396784]],[[0.066028505563736,-0.02424537204206,-0.012796635739505],[0.068751342594624,0.0616071857512,0.029250120744109],[-0.034170970320702,-0.056883577257395,-0.04782922193408]],[[0.13486589491367,-0.047073792666197,-0.10282443463802],[0.16197487711906,0.03383532166481,-0.045655600726604],[0.11988553404808,0.053949289023876,-0.028882201761007]],[[0.0036067510955036,-0.13883516192436,-0.11515104025602],[0.10237818956375,-0.0014393740566447,-0.066200353205204],[-0.071039445698261,-0.07873472571373,0.024134581908584]],[[0.02034879475832,-0.032498482614756,0.10860361903906],[0.084701292216778,0.034392781555653,-0.030971741303802],[-0.084221318364143,0.12063986063004,-0.096658870577812]],[[0.042408932000399,-0.10384614020586,-0.025697726756334],[-0.068249121308327,0.026289207860827,-0.038274366408587],[-0.0028808421920985,0.041625265032053,-0.032373663038015]],[[0.034691289067268,-0.13544617593288,-0.082608014345169],[-0.20969848334789,0.036143153905869,-0.03965200483799],[-0.21781933307648,0.08210988342762,-0.10587185621262]],[[-0.092551007866859,-0.070029884576797,-0.00038540756213479],[-0.11922236531973,-0.14240719377995,-0.043130859732628],[0.094338729977608,-0.058405313640833,-0.15285120904446]],[[-0.041429996490479,-0.045084923505783,0.10802988708019],[-0.022562967613339,0.0088524855673313,0.052068192511797],[-0.15517993271351,-0.055174060165882,0.094089843332767]],[[-0.065447933971882,-0.054968453943729,0.18627192080021],[0.018671730533242,-0.0969617664814,0.24179589748383],[0.1849802583456,-0.062759734690189,-0.096424706280231]],[[-0.10796082019806,0.20767712593079,0.010657745413482],[-0.01260182261467,-0.10380332171917,0.082545399665833],[0.21855312585831,-0.039643727242947,-0.17015874385834]],[[0.066210597753525,0.048904180526733,0.032219219952822],[0.034199215471745,-0.12752050161362,0.23053243756294],[-0.0094654140993953,0.097643204033375,0.20645201206207]],[[0.039437413215637,0.15538378059864,-0.030762795358896],[0.15378224849701,-0.1258110255003,-0.026050208136439],[-0.036298274993896,-0.017667144536972,-0.02520496584475]],[[0.11753240227699,-0.029667902737856,-0.029297495260835],[0.048972010612488,-0.074950769543648,-0.11138171702623],[-0.010874506086111,0.059754692018032,0.03126509860158]],[[-0.086660802364349,-0.032354403287172,-0.031361013650894],[0.037547651678324,-0.050838392227888,-0.063773058354855],[-0.15606488287449,-0.081464678049088,-0.042385593056679]],[[0.10056448727846,-0.01797111146152,-0.06276323646307],[-0.088291123509407,0.15350124239922,0.023064371198416],[0.048181291669607,0.1275942325592,-0.054996881633997]],[[-0.015475619584322,0.065141208469868,0.0087713869288564],[-0.058243501931429,-0.011134908534586,0.012153595685959],[-0.14147964119911,-0.044373445212841,-0.047582577914]],[[0.07911566644907,-0.084389291703701,-0.030170984566212],[0.073673695325851,-0.019826712086797,-0.031359244138002],[-0.091081753373146,-0.037157643586397,0.09781850874424]],[[0.10807634145021,0.058911200612783,0.041418138891459],[-0.010610396973789,0.097650930285454,0.0057984469458461],[-0.020572900772095,0.13713644444942,0.018366942182183]],[[0.20027536153793,0.0061554173007607,-0.0893819257617],[0.098504945635796,0.001855157664977,-0.0036988307256252],[0.093964271247387,-0.068608984351158,-0.061203353106976]],[[0.0089443232864141,-0.046230521053076,-0.074191533029079],[-0.0056133586913347,-0.044631559401751,-0.003370238468051],[0.052145835012197,0.21550232172012,0.022664654999971]],[[-0.046250693500042,0.18960483372211,0.079362966120243],[0.010908912867308,0.04497491940856,0.00040192482993007],[0.00033893424551934,0.014542855322361,0.035054598003626]],[[0.027726419270039,0.14188815653324,-0.094424217939377],[-0.028422944247723,-0.023840501904488,-0.11989539116621],[0.032674003392458,-0.041911073029041,0.0010511348955333]],[[0.042691774666309,0.13633218407631,0.0081417011097074],[0.054580342024565,0.044770773500204,-0.0059737004339695],[0.06836986541748,-0.038508292287588,-0.021890005096793]],[[-0.13927517831326,-0.11423491686583,-0.064423799514771],[-0.024625655263662,-0.025156103074551,0.048496913164854],[-0.11763583123684,0.0020374939776957,0.01733809709549]],[[-0.039196223020554,0.10045769810677,-0.08727990090847],[-0.0067947162315249,0.1322233825922,-0.082847073674202],[-0.077140256762505,-0.078869767487049,0.024397665634751]],[[0.075838692486286,-0.036420568823814,0.10859640687704],[0.062521547079086,-0.029134836047888,-0.033413898199797],[0.086734689772129,0.072157487273216,-0.04405989870429]],[[-0.052012477070093,-0.069083727896214,-0.12379263341427],[-0.11093518137932,-0.062915906310081,0.11806197464466],[-0.13247515261173,-0.0091003701090813,0.1236449405551]],[[-0.032059751451015,0.053121905773878,0.00081010686699301],[0.17816208302975,0.060205798596144,-0.09600505232811],[0.23332168161869,0.0026714242994785,0.0012744059786201]],[[0.019825987517834,-0.087660603225231,0.086542889475822],[0.0087341535836458,0.015618665143847,0.091684706509113],[0.12500309944153,-0.13293832540512,-0.095852203667164]],[[0.021313419565558,-0.072122745215893,-0.083183981478214],[0.1596969217062,0.10957679897547,-0.099038943648338],[-0.049610547721386,0.013243390247226,-0.082871183753014]],[[0.053400911390781,-0.11071081459522,-0.019705712795258],[0.035652182996273,-0.10939741879702,0.0365458317101],[0.093332394957542,-0.031641270965338,0.047914978116751]],[[-0.15162874758244,-0.051125675439835,-0.082563243806362],[-0.031666696071625,-0.042115677148104,0.022372785955667],[0.095431007444859,-0.065000131726265,0.1439573019743]],[[-0.006847876124084,0.015570940449834,0.067601755261421],[-0.037368033081293,0.062857061624527,-0.10447949916124],[-0.038805443793535,-0.018802581354976,0.14468365907669]],[[0.046317148953676,0.062639288604259,-0.033012572675943],[-0.1050902530551,0.016134217381477,-0.10802206397057],[-0.03093602322042,0.039783641695976,0.00097316160099581]],[[-0.18791177868843,-0.0255844052881,-0.049820888787508],[-0.15392492711544,-0.014021423645318,-0.11541227996349],[0.080981090664864,0.021027570590377,0.032006099820137]],[[-0.080049261450768,0.044718712568283,-0.14557489752769],[0.10016474872828,-0.018132220953703,-0.014643443748355],[0.13319501280785,-0.06744297593832,-0.14754094183445]],[[-0.082145683467388,0.041890788823366,-0.011953938752413],[-0.12837898731232,0.06704318523407,0.050586372613907],[-0.096570685505867,-0.033361129462719,0.096542559564114]],[[-0.0017017921200022,-0.0040650456212461,0.0035987137816846],[0.02953053638339,0.013941926881671,0.018454566597939],[0.15762366354465,0.12750102579594,0.064773969352245]],[[-0.08855727314949,0.076392501592636,-0.070533834397793],[-0.11428038775921,0.073415480554104,0.11443752795458],[0.14300549030304,0.019759096205235,0.11083352565765]]],[[[-0.090055085718632,-0.00090805598301813,0.015307425521314],[0.017688985913992,-0.043436832726002,-0.039162125438452],[0.036604594439268,-0.033984031528234,0.047788567841053]],[[-0.0057399244979024,0.051780343055725,0.069568730890751],[-0.019326591864228,0.014783192425966,-0.048000503331423],[0.039294060319662,-0.014096347615123,-0.016034362837672]],[[0.029032399877906,0.0095777846872807,-0.012496612034738],[-0.04350944980979,0.020697172731161,0.031745210289955],[-0.050254687666893,0.055389676243067,-0.013773739337921]],[[0.021054999902844,-0.041367698460817,-0.056164272129536],[0.021799782291055,0.012659350410104,-0.048278175294399],[-0.010917750187218,0.086224161088467,-0.040181931108236]],[[-0.13615125417709,0.096679031848907,0.039254020899534],[-0.036085970699787,0.066110320389271,-0.016204692423344],[-0.08162958920002,0.0026603208389133,0.040789756923914]],[[0.0086670238524675,0.042136084288359,0.1028890311718],[-0.0071997880004346,-0.087012253701687,0.040854938328266],[-0.039878260344267,-0.016462514176965,-0.014489823020995]],[[0.065642446279526,0.057016670703888,-0.0097609478980303],[-0.00057305727386847,0.0037270435132086,-0.033742006868124],[-0.0023182553704828,-0.059373501688242,0.021257396787405]],[[0.0057461457327008,-0.0093409521505237,-0.0058507430367172],[0.067414358258247,0.012403875589371,-0.0031227110885084],[-0.012826226651669,-0.0095624048262835,-0.1063637137413]],[[0.050823070108891,-0.032933749258518,0.032031577080488],[0.0067470483481884,-0.018140692263842,0.0027438953984529],[0.0002907962189056,-0.035141244530678,0.11094925552607]],[[0.11007302999496,-0.0042609497904778,-0.044182356446981],[0.059354726225138,0.016180908307433,-0.12201908230782],[0.0029315345454961,-0.05425388738513,0.018994048237801]],[[-0.067019626498222,0.044576082378626,-0.075000405311584],[0.0046313069760799,0.020726315677166,-0.081175617873669],[0.076014474034309,0.00024346954887733,-0.015152282081544]],[[0.028262859210372,-0.028913479298353,0.036393828690052],[0.016315246000886,-0.069517135620117,-0.0036180655006319],[0.0028652534820139,-0.0596016459167,-0.041676014661789]],[[-0.074288912117481,-0.081042677164078,0.058060865849257],[-0.046880476176739,-0.010846775025129,0.09804929047823],[-0.061620119959116,0.1191019937396,-0.0094152046367526]],[[0.052380200475454,0.01960944570601,-0.01530084758997],[0.053683429956436,-0.0033591631799936,-0.00038659202982672],[-0.014677170664072,-0.036444786936045,-0.040926910936832]],[[-0.045547176152468,0.032732207328081,0.040628865361214],[0.087238721549511,0.0027884098235518,0.0051763779483736],[0.0067067267373204,-0.02703358605504,0.046293023973703]],[[-0.034305099397898,-0.042281713336706,0.077331319451332],[0.13377478718758,0.027649220079184,0.028735492378473],[0.0026921241078526,-0.030627368018031,-0.057800330221653]],[[0.067334614694118,0.06693434715271,-0.021436715498567],[-0.03702911362052,-0.018853943794966,-0.060864381492138],[0.10182417184114,-0.006991948466748,0.0092926286160946]],[[0.064538784325123,-0.015780121088028,-0.088905021548271],[-0.0063765086233616,-0.0039159101434052,-0.0152334459126],[-0.010957803577185,-0.0036154321860522,-0.089475870132446]],[[-0.09886546432972,-0.09362368285656,0.013926904648542],[0.04054918885231,0.1076323762536,0.12175918370485],[0.0713205114007,0.073442585766315,0.048212733119726]],[[-0.060775950551033,-0.061810862272978,-0.091650955379009],[0.11671952158213,0.09144601970911,0.04550439491868],[-0.053072921931744,0.07961543649435,0.021374695003033]],[[0.047906253486872,-0.088470928370953,0.022384053096175],[-0.0064428918994963,0.0081929247826338,0.042629707604647],[0.0062331855297089,0.080471470952034,0.012881570495665]],[[-0.046551924198866,-0.0098798396065831,-0.025031629949808],[0.035774279385805,0.018085166811943,-0.078264452517033],[-0.066709704697132,-0.072181224822998,0.019278505817056]],[[-0.015177804976702,-0.012506024912,-0.0082200961187482],[-0.065000735223293,0.032048296183348,-0.0050227781757712],[0.0036576320417225,-0.0050076302140951,0.050508178770542]],[[0.029305297881365,-0.00061554659623653,-0.0068819522857666],[-0.026300141587853,0.0042551173828542,-0.098121412098408],[0.065791301429272,-0.0095526976510882,0.024870615452528]],[[0.07342741638422,-0.028402602300048,0.066252164542675],[0.019742049276829,-0.022499870508909,0.018746148794889],[-0.0016115707112476,0.00011704923963407,0.040953289717436]],[[-0.051412105560303,-0.025091174989939,-0.02931147441268],[0.036655642092228,-0.018915502354503,-0.04703102260828],[0.057752773165703,0.09603101760149,0.089612856507301]],[[0.0024348304141313,-0.04964479804039,0.0053790267556906],[0.078890651464462,0.010275884531438,-0.0092999013140798],[0.049934767186642,-0.049247212707996,0.018723115324974]],[[0.067348748445511,0.0038645656313747,0.028009325265884],[0.048816040158272,-0.0064995693974197,-0.0375652089715],[0.02873932570219,-0.00045017836964689,0.024350209161639]],[[-0.046771470457315,0.077647864818573,0.025349350646138],[-0.011345461942255,0.063795782625675,-0.04428480938077],[-0.002163311233744,0.044803231954575,0.047282751649618]],[[-0.025082599371672,-0.036008063703775,0.0058251656591892],[-0.033556520938873,0.017869308590889,-0.026578390970826],[-0.0017076440853998,0.0077355024404824,0.050464615225792]],[[0.0059884577058256,-0.043023444712162,-0.056383229792118],[-0.027223220095038,0.033488567918539,0.11478845775127],[0.040711313486099,0.036240126937628,0.062283206731081]],[[0.06910078972578,-0.12466140091419,-0.016871208325028],[0.12154541909695,0.094735726714134,-0.060727622359991],[0.093674682080746,0.066744886338711,-0.070671632885933]],[[-0.006599800195545,-0.081768743693829,0.011203618720174],[-0.07154706120491,0.0030150830280036,0.0022943271324039],[-0.13286638259888,-0.053981367498636,0.032126352190971]],[[-0.015975028276443,0.091188088059425,-0.0025197071954608],[0.051858063787222,0.0053944825194776,0.025205943733454],[0.036893699318171,0.089308999478817,0.035875495523214]],[[0.017203342169523,-0.025338565930724,-0.018943950533867],[-0.016016678884625,-0.0069787944667041,-0.018349729478359],[-0.037727776914835,0.030349729582667,-0.02360531128943]],[[-0.025348670780659,0.014368634670973,-0.034131210297346],[-0.035894904285669,-0.03437902033329,-0.0097136441618204],[0.0067911827936769,0.062230207026005,0.010369055904448]],[[0.028604542836547,-0.11891080439091,-0.11147670447826],[0.016388228163123,-0.039790622889996,0.035122081637383],[-0.013062204234302,-0.080995567142963,0.0047248024493456]],[[-0.04010072350502,-0.085434645414352,0.0017575961537659],[-0.050685737282038,-0.028642131015658,0.0058094449341297],[0.073172464966774,-0.099721737205982,-0.029797501862049]],[[0.0043543479405344,-0.019890898838639,0.036881908774376],[0.046041492372751,-0.015316741541028,-0.01830449141562],[0.0089627653360367,0.053953967988491,-0.0043928772211075]],[[0.015189237892628,-0.024763904511929,-0.010477625764906],[-0.019841218367219,0.029747104272246,-0.014650977216661],[0.049024019390345,-0.059088725596666,0.068384125828743]],[[0.065105445683002,0.0074371648952365,0.037538945674896],[0.04250992834568,0.038258027285337,-0.0074472213163972],[-0.038150694221258,-0.022245405241847,-0.033788248896599]],[[-0.011803220957518,0.14165656268597,-0.039088901132345],[0.006538893096149,0.094300627708435,-0.072688855230808],[0.05036073923111,-0.011498903855681,-0.00068460794864222]],[[-0.03886316344142,-0.17089028656483,0.022489201277494],[0.080566845834255,0.00081843620864674,-0.028236107900739],[-0.019951524212956,-0.0013155755586922,-0.031185235828161]],[[-0.011672005988657,0.044019766151905,-0.01185386069119],[0.0065800142474473,0.046350818127394,0.076460264623165],[-0.0050821923650801,-0.11389998346567,0.0073514156974852]],[[0.010743046179414,-0.021175265312195,-0.036825370043516],[0.016642559319735,-0.029232798144221,0.012099189683795],[0.044073086231947,-0.036593485623598,0.049109436571598]],[[0.029147805646062,0.010593438521028,-0.0041690575890243],[0.061917688697577,-0.063860043883324,-0.028572805225849],[0.069159485399723,0.018878165632486,-0.0066530546173453]],[[0.048788718879223,0.051419831812382,-0.06096276268363],[-0.020819025114179,-0.080569334328175,0.10072208195925],[0.024340465664864,0.051883336156607,-0.069615043699741]],[[0.040653172880411,-0.023373952135444,0.06841404736042],[-0.0091095371171832,-0.01158089004457,0.065662488341331],[-0.032901134341955,0.0055132005363703,0.013607623055577]],[[-0.02862274646759,0.033741232007742,-0.076264813542366],[0.023634739220142,0.0029985192231834,0.050886001437902],[-0.097578346729279,0.03417270258069,0.0080679580569267]],[[-0.1043867841363,0.047019869089127,-0.054109890013933],[0.01392057724297,0.022136269137263,-0.013498722575605],[0.049532115459442,-0.019173357635736,0.01089720800519]],[[0.0295799523592,-0.048384621739388,0.032788269221783],[0.079117178916931,-0.041917979717255,-0.069121293723583],[-0.0070050270296633,0.005312105640769,0.044485330581665]],[[-0.054294597357512,-0.0018644825322554,-0.014298904687166],[0.0077673103660345,-0.055388320237398,0.07350081205368],[-0.044726353138685,-0.040834154933691,0.015807516872883]],[[-0.079626470804214,-0.023894464597106,-0.02752947434783],[0.041511543095112,0.043613854795694,0.062167923897505],[-0.065267078578472,-0.046337407082319,-0.082323282957077]],[[-0.019147116690874,0.035760227590799,0.044772870838642],[-0.014493915252388,-0.027289237827063,0.055128861218691],[-0.0052692661993206,0.038215540349483,0.043543688952923]],[[0.022991152480245,-0.001865710131824,0.089180611073971],[-0.048640739172697,0.059858907014132,0.066347904503345],[-0.030810214579105,-0.074401147663593,0.040921978652477]],[[0.06110680475831,0.075516313314438,-0.017198123037815],[0.080011285841465,0.021841926500201,0.0089432597160339],[-0.039028998464346,-0.060156136751175,-0.0065632071346045]],[[0.013567324727774,-0.016252873465419,-0.074746385216713],[-0.018872201442719,-0.044320054352283,-0.011482636444271],[0.059107940644026,-0.040558725595474,-0.0038803475908935]],[[-0.014631513506174,-0.00023121717094909,-0.015326892025769],[-0.054981011897326,-0.036345168948174,0.084403052926064],[-0.015937818214297,-0.019286435097456,0.057613883167505]],[[-0.025094952434301,-0.026639642193913,0.065329544246197],[-0.13396319746971,-0.099563874304295,-0.02757709287107],[-0.0085274381563067,0.050008803606033,0.0033205507788807]],[[0.0046599712222815,-0.076536819338799,-0.047892164438963],[-0.01049595605582,-0.0020571744535118,0.013257370330393],[-0.032975405454636,-0.12087325006723,0.042470570653677]],[[-0.0012618300970644,0.011721248738468,-0.00039317112532444],[0.076558038592339,0.015875153243542,0.075644105672836],[0.044521301984787,-0.033783677965403,0.055776335299015]],[[-0.043776996433735,0.074828207492828,-0.052428923547268],[0.092812202870846,0.027036426588893,0.009865147061646],[0.012587766163051,-0.073272556066513,0.0075613553635776]],[[-0.0091763027012348,-0.0047096544876695,0.036012940108776],[-0.042482607066631,-0.075713694095612,-0.0097305485978723],[0.01046828366816,0.027959544211626,0.082882009446621]],[[0.049770709127188,-0.06457656621933,-0.069752998650074],[-0.047633327543736,-0.012417862191796,-0.020461769774556],[0.10335967689753,-0.019513815641403,-0.0007221283740364]],[[-0.014621507376432,0.026638982817531,0.046939190477133],[0.041818119585514,-0.059444181621075,-0.011322066187859],[-0.019706195220351,-0.047493364661932,-0.015234618447721]],[[-0.0030300926882774,0.024834850803018,0.046300496906042],[0.031256198883057,-0.004121124278754,-0.044203817844391],[0.0038375621661544,-0.0012501515448093,-0.037317626178265]],[[0.079250976443291,0.035303603857756,0.025729972869158],[0.035050068050623,-0.06608022749424,-0.030335886403918],[-0.010158239863813,0.014632386155427,-0.013107769191265]],[[-0.03535432741046,0.019366320222616,0.072147354483604],[0.0069028530269861,0.024554112926126,0.00072985253063962],[0.0042762253433466,-0.060226436704397,0.015037218108773]],[[0.079727530479431,0.048687927424908,0.044988170266151],[0.049519240856171,-0.048032529652119,-0.05567429214716],[-0.091997817158699,-0.047104328870773,0.057272419333458]],[[0.049370143562555,-0.033412709832191,-0.049357138574123],[0.067491449415684,-0.046069260686636,0.038677275180817],[-0.036859206855297,0.023959152400494,-0.055045988410711]],[[0.043938662856817,0.037665840238333,-0.06707976013422],[0.068377740681171,0.024171544238925,0.0020792870782316],[0.11146146059036,0.096311263740063,0.017224406823516]],[[-0.11387902498245,0.043179839849472,0.053002074360847],[-0.047516815364361,0.047625105828047,-0.046121746301651],[0.071611866354942,-0.00019173105829395,-0.017819741740823]],[[0.055547837167978,-0.024219378829002,-0.01559682842344],[0.031918190419674,0.07390633970499,0.023967586457729],[-0.047426983714104,0.055238172411919,0.067458026111126]],[[-0.052776660770178,0.017630100250244,-0.052568275481462],[0.057177744805813,0.015656027942896,0.064683146774769],[-0.034010753035545,0.01582545787096,-0.092225149273872]],[[0.026233445852995,0.019318580627441,-0.052617143839598],[-0.03661286085844,-0.047362677752972,0.064492911100388],[-0.020548002794385,-0.025917060673237,-0.067077971994877]],[[0.025361815467477,0.011098441667855,0.058232996612787],[0.027282051742077,0.12569811940193,-0.035490591078997],[-0.076856009662151,0.076770506799221,0.050258610397577]],[[-0.037811636924744,0.068752430379391,0.095588572323322],[0.082271002233028,0.0011807949049398,0.041551440954208],[-0.093443140387535,0.061566583812237,0.025701075792313]],[[-0.022867303341627,0.021504368633032,-0.067375250160694],[0.0063358219340444,0.043581087142229,-0.0066759609617293],[0.026791635900736,-0.044577989727259,-0.096328906714916]],[[0.093301929533482,0.03399333357811,0.064201198518276],[-0.083804734051228,-0.098044633865356,-0.012521617114544],[-0.042235288769007,0.0071918312460184,-0.026514241471887]],[[0.019957365468144,-0.030217813327909,-0.030187100172043],[0.06615424156189,0.038223959505558,0.07037690281868],[-0.060902498662472,-0.024110632017255,0.039277855306864]],[[-0.029016260057688,-0.04502847418189,0.0092505346983671],[-0.0049511417746544,0.0081641925498843,-0.040336892008781],[-0.032755795866251,-0.090988531708717,0.028227200731635]],[[0.0057056755758822,0.056205313652754,-0.060216896235943],[0.080325447022915,-0.064462304115295,0.0097150439396501],[-0.0073493113741279,-0.036427143961191,-0.04197733476758]],[[0.17123478651047,0.017059113830328,-0.0069805225357413],[0.042515426874161,0.01732868142426,-0.028266794979572],[0.10157904773951,0.048051591962576,-0.034459382295609]],[[0.039449606090784,0.084740847349167,0.04489827901125],[-0.034612964838743,-0.062006335705519,0.010877884924412],[0.010287072509527,-0.03408969193697,-0.051951181143522]],[[-0.015719521790743,-0.12118688970804,0.03431348502636],[-0.015901485458016,-0.016161751002073,0.048466239124537],[-0.01887415163219,-0.012956442311406,-0.0057339360937476]],[[-0.0080386968329549,0.022216368466616,-0.016053974628448],[-0.042492531239986,-0.0082983104512095,0.010147206485271],[-0.059036873281002,0.028047036379576,-0.022525105625391]],[[-0.048005167394876,-0.097428619861603,-0.029809651896358],[-0.039578683674335,-0.025617917999625,-0.035971723496914],[0.03127146884799,0.051936764270067,-0.088180460035801]],[[0.035703554749489,-0.046651143580675,0.0070782462134957],[-0.055425066500902,0.10193356126547,0.036547049880028],[0.04130382835865,0.077144019305706,-0.051482494920492]],[[0.017658626660705,0.003791494295001,0.078764483332634],[0.0041750892996788,0.0099104586988688,0.055467911064625],[0.0065785637125373,0.044201303273439,-0.043492298573256]],[[-0.043785121291876,-0.054267574101686,0.042017102241516],[-0.035872474312782,0.034266520291567,-0.014921619556844],[-0.01624995097518,-0.017273887991905,-0.058233007788658]],[[-0.027045737951994,-0.045997574925423,-0.048700414597988],[-0.016089707612991,-0.10560511052608,0.0057607032358646],[-0.057402424514294,0.0079962518066168,-0.030956340953708]],[[0.030222719535232,-0.080786608159542,0.003952098544687],[0.022802069783211,0.0065854950807989,-0.086406119167805],[0.023871704936028,0.11579013615847,0.041499011218548]],[[-0.013438560068607,0.02936914935708,0.061194930225611],[-0.014739833772182,-0.017690688371658,0.0083124125376344],[-0.051988795399666,-0.030162440612912,-0.025910645723343]],[[0.0045599318109453,0.055429212749004,0.0038412499707192],[-0.020871860906482,-0.0006966270157136,-0.087520740926266],[-0.016938308253884,0.021161563694477,-0.041666574776173]],[[-0.00040946481749415,-0.026721222326159,-0.00926564168185],[0.027285045012832,0.079220861196518,-0.064810834825039],[0.022476216778159,-0.088510386645794,0.020567368716002]],[[-0.019166627898812,0.00013715909153689,0.065383225679398],[0.034830112010241,-0.016822086647153,0.10686088353395],[-0.10323852300644,0.062037885189056,0.023047491908073]],[[0.048842459917068,0.040059547871351,-0.052356958389282],[0.059717331081629,0.047926925122738,-0.061846446245909],[0.0082355951890349,0.0028271072078496,0.014300769194961]],[[0.045446541160345,-0.092033483088017,0.045455146580935],[-0.041497301310301,-0.024650389328599,-0.020286625251174],[0.017824625596404,-0.014407844282687,0.058354914188385]],[[-0.0016172698233277,0.016690080985427,0.0079569015651941],[-0.017387764528394,0.034225661307573,0.023125272244215],[0.03429513797164,0.038664516061544,0.049315132200718]],[[0.14354267716408,-0.040486358106136,-0.07828164845705],[0.029570590704679,0.00036412669578567,-0.018689420074224],[0.013141518458724,-0.11801882833242,-0.066226154565811]],[[0.10114364326,-0.0047873691655695,0.060904320329428],[0.010953194461763,-0.012379377149045,-0.076396249234676],[0.097218863666058,-0.0082884402945638,-0.076728492975235]],[[0.0096054598689079,-3.5701188608073e-05,0.03608350455761],[0.019688259810209,0.042946197092533,0.05437820777297],[-0.045924369245768,-0.012958548031747,-0.010093899443746]],[[0.018517937511206,-0.021603487432003,0.051841329783201],[-0.019386818632483,-0.053462792187929,-0.045495428144932],[0.010543241165578,0.02651596441865,-0.038920365273952]],[[0.027795229107141,0.079208321869373,-0.010375267826021],[0.014995526522398,0.077330954372883,0.0094964057207108],[0.047804526984692,0.0040968088433146,0.00093352684052661]],[[0.015475294552743,-0.029662344604731,-0.012248681858182],[-0.089394986629486,0.0050253076478839,0.01581714861095],[-0.035905390977859,0.014527407474816,-0.0056665106676519]],[[0.027206024155021,-0.026927975937724,0.0076856166124344],[0.077224425971508,0.044951356947422,0.10348691046238],[0.053664106875658,0.034741640090942,0.020309576764703]],[[-0.010815384797752,0.00022428987722378,-0.040931381285191],[0.041682038456202,0.034132074564695,0.088334478437901],[-0.010517227463424,0.092931352555752,0.069616101682186]],[[-0.018196884542704,-0.06597064435482,-0.063683718442917],[-0.015461147762835,-0.034687209874392,0.081671185791492],[-0.0033968901261687,-0.03166675567627,-0.00041421048808843]],[[-0.061985962092876,-0.016589870676398,-0.051560536026955],[0.044211350381374,-0.051132544875145,-0.010924499481916],[-0.035678990185261,-0.039494089782238,-0.0040558446198702]],[[-0.022602081298828,-0.0036404763814062,0.020705269649625],[0.054595533758402,0.014947703108191,0.045519974082708],[-0.032740417867899,-0.061688203364611,0.051283344626427]],[[-0.005175806581974,0.062158554792404,0.048761583864689],[0.019807195290923,-0.0095094833523035,0.040595427155495],[0.033201895654202,0.030225016176701,-0.018641985952854]],[[-0.002117570489645,-0.01012409850955,-0.0050351223908365],[-0.039930615574121,0.067368686199188,-0.052023090422153],[-0.0038925029803067,0.019580343738198,0.018477102741599]],[[0.0093086790293455,0.037061702460051,-0.068276889622211],[-0.10562846809626,0.011405320838094,0.0017078003147617],[-0.025443498045206,-0.038374599069357,-0.01554514747113]],[[0.10514269769192,0.032183744013309,0.031049061566591],[-0.021425623446703,-0.023182658478618,-0.022935388609767],[-0.010521420277655,-0.016900444403291,-0.0013015464646742]],[[-0.029256142675877,0.046123180538416,0.07490435987711],[0.013429270125926,-0.035518083721399,-0.024451158940792],[-0.018876420333982,-0.1185245513916,-0.033807419240475]],[[0.10026446729898,-0.0014714694116265,0.08057327568531],[0.063834823668003,-0.029415069147944,0.0024601030163467],[0.018487296998501,0.0076828170567751,-0.030103536322713]],[[0.017604235559702,0.0025831789243966,0.082175135612488],[-0.018685581162572,0.041734088212252,0.016756584867835],[-0.086626030504704,-0.0015432417858392,0.010605252347887]],[[-0.016165176406503,0.0045186965726316,0.019733792170882],[0.031299412250519,-0.049933888018131,-0.029427232220769],[-0.06560992449522,-0.058781899511814,-0.014485125429928]],[[-0.028916694223881,-0.010090653784573,0.024370357394218],[0.099891930818558,0.035989675670862,0.03645733743906],[-0.12130866199732,-0.039397906512022,-0.0069707524962723]],[[0.0046910257078707,0.020173573866487,-0.0061469934880733],[0.0026298987213522,0.02506828121841,-0.022900100797415],[0.028221262618899,-0.050491448491812,-0.062721356749535]],[[-0.03566649928689,-0.004593072924763,-0.00048080351552926],[-0.034331653267145,-0.13401421904564,-0.044543452560902],[-0.0068197455257177,-0.00063645915361121,-0.01183101721108]],[[0.096238054335117,-0.10290884971619,0.0080194631591439],[-0.0023597709368914,-0.021889340132475,-0.026515098288655],[-0.011280403472483,-0.0041946074925363,0.058977007865906]],[[0.061022412031889,-0.02060448564589,-0.0050627649761736],[-0.012077379971743,0.0098424479365349,-0.026612620800734],[-0.03476919606328,-0.047175567597151,0.0052666468545794]],[[0.038017258048058,-0.026078609749675,0.047932602465153],[-0.061572372913361,-0.075866922736168,0.01128220744431],[-0.052112560719252,0.072082713246346,-0.0034646650310606]],[[-0.015535763464868,-0.017613423988223,-0.010340305045247],[0.061377760022879,0.054446738213301,-0.02625740878284],[0.13090698421001,-0.036276374012232,-0.022171102464199]],[[0.058509234338999,-0.027507876977324,0.020796546712518],[-0.00799903832376,0.024821789935231,0.027836101129651],[-0.011355654336512,-0.03079641610384,0.093992695212364]],[[-0.072579137980938,-0.018062714487314,-0.04153848439455],[0.089621938765049,0.041402999311686,0.10999903082848],[0.056312378495932,0.024878349155188,-0.067766062915325]],[[-0.0003083870105911,-0.011783076450229,-0.059017553925514],[-0.06709036231041,0.042985249310732,0.033451493829489],[-0.0048626121133566,-0.0069329459220171,-0.036065589636564]]],[[[-0.058827348053455,0.0089902970939875,0.13123957812786],[0.10124995559454,-0.049545470625162,0.11809030920267],[-0.020398896187544,0.096390075981617,-0.012068308889866]],[[-0.011831626296043,0.071270935237408,-0.066081151366234],[0.023621624335647,-0.050126276910305,-0.056796707212925],[-0.0076865321025252,0.025788204744458,-0.015669658780098]],[[0.092290014028549,-0.0065802559256554,0.10586885362864],[0.069471038877964,-0.026392759755254,0.11734561622143],[0.21419808268547,-0.018836405128241,0.12073308974504]],[[-0.049186520278454,-0.0012587722158059,-0.14783205091953],[-0.11531844735146,0.0080489655956626,-0.087575614452362],[-0.2216022759676,-0.054739322513342,0.033146899193525]],[[-0.085403196513653,-0.029270723462105,0.032288387417793],[0.069255486130714,-0.00087859173072502,0.084229096770287],[0.10854292660952,-0.051800839602947,-0.024034522473812]],[[0.069440826773643,0.091452553868294,0.093487322330475],[-0.035275597125292,-0.081027656793594,0.042482636868954],[0.20149955153465,-0.013391611166298,0.042459610849619]],[[-0.09472518414259,-0.15216483175755,0.074383735656738],[0.046131141483784,0.10243780910969,-0.030054666101933],[0.054897863417864,0.13808925449848,0.026967948302627]],[[-0.12022019922733,0.096820488572121,0.04519435018301],[-0.069577887654305,0.10216662287712,0.0096815498545766],[-0.25506281852722,-0.060775846242905,0.054427947849035]],[[0.012829193845391,-0.012054833583534,0.10893502831459],[0.070224761962891,-0.027236737310886,-0.088462322950363],[-0.21987344324589,-0.10278716683388,0.16418309509754]],[[0.01009904500097,-0.056543402373791,0.0048024714924395],[-0.13659565150738,-0.084073923528194,-0.11713612824678],[-0.10199835896492,-0.015112236142159,-0.072718910872936]],[[-0.0056103435344994,0.10779283195734,0.28083291649818],[0.029591605067253,0.057243876159191,0.14351558685303],[0.03821874037385,0.10438385605812,0.053304322063923]],[[-0.022241774946451,0.092167221009731,-0.013909412547946],[-0.10920063406229,0.027905099093914,-0.04819206520915],[0.046482384204865,0.060298372060061,-0.0011378886410967]],[[-0.030785733833909,-0.0048841112293303,-0.058469008654356],[-0.047297067940235,-0.046806011348963,0.063708581030369],[-0.008484723046422,-0.12723761796951,0.0065290941856802]],[[-0.015871241688728,-0.049487199634314,-0.10443101078272],[-0.057140707969666,-0.03342567756772,-0.17951808869839],[-0.16191351413727,-0.11414257436991,-0.061455741524696]],[[0.061866316944361,0.052682045847178,0.044948406517506],[-0.057352520525455,-0.1460854113102,-0.059050042182207],[-0.10580702871084,0.019349319860339,0.0033676857128739]],[[-0.10895229130983,-0.13367691636086,-0.10537770390511],[0.14895188808441,0.029836794361472,0.052269659936428],[0.0054318895563483,-0.13727001845837,-0.018711060285568]],[[-0.20763489603996,-0.16228853166103,0.14521738886833],[-0.047045204788446,-0.057862278074026,0.087114423513412],[0.0076106754131615,0.011824464425445,-0.073972038924694]],[[0.043499235063791,0.0056610712781549,-0.058092303574085],[0.072396829724312,0.031762458384037,-0.13036547601223],[-0.037465326488018,0.049873147159815,0.062381032854319]],[[0.16135375201702,0.04168564081192,0.066897854208946],[-0.067104160785675,0.057550374418497,0.032616432756186],[-0.043806098401546,-0.095568478107452,-0.080172337591648]],[[-0.12897548079491,-0.020633202046156,0.068606443703175],[-0.039379719644785,-0.084706872701645,-0.017178578302264],[-0.14794288575649,-0.078351207077503,-0.0022194115445018]],[[-0.015917778015137,-0.13182674348354,0.0037143139634281],[-0.075428754091263,-0.092868357896805,-0.017270553857088],[-0.095624573528767,-0.036758072674274,0.077195055782795]],[[-0.087930396199226,0.0070919590070844,0.19465212523937],[0.1390690356493,-0.068800643086433,0.17833027243614],[-0.016572941094637,0.086230307817459,0.15147358179092]],[[0.084547407925129,0.11525759100914,-0.022905485704541],[0.023916859179735,-0.029583664610982,0.052647635340691],[-0.043666794896126,-0.099377423524857,-0.00055324606364593]],[[-0.14395585656166,-0.030287886038423,-0.073575511574745],[-0.15535089373589,0.0020307963714004,0.0075173326767981],[0.045753575861454,0.02433230727911,0.11703857779503]],[[0.099716775119305,-0.08291557431221,-0.067454300820827],[0.078203149139881,0.10883279889822,0.078358896076679],[0.06304656714201,0.13645212352276,-0.035646244883537]],[[0.13434244692326,0.078377813100815,0.14912649989128],[0.071300402283669,-0.0050758421421051,-0.027376195415854],[0.024586142972112,0.12703208625317,0.06009241938591]],[[0.046373274177313,-0.13055634498596,-0.082012668251991],[-0.016159558668733,-0.0097800549119711,-0.031752642244101],[0.026600174605846,0.021528985351324,0.052096270024776]],[[0.092431180179119,-0.13901743292809,0.033632893115282],[0.04952946305275,-0.03469992056489,-0.16377691924572],[-0.03785202652216,0.27665862441063,0.18430642783642]],[[0.0048984452150762,-0.24654026329517,0.015572953037918],[0.12049775570631,0.056432865560055,-0.12732593715191],[-0.065325431525707,-0.059814561158419,0.026598444208503]],[[-0.071103498339653,0.022951098158956,-0.0063484334386885],[-0.04481578245759,-0.028940895572305,0.040964659303427],[-0.06555438041687,-0.11079143732786,0.046879269182682]],[[-0.057027403265238,-0.030222164466977,0.03991462662816],[-0.12748534977436,0.092572242021561,0.18193882703781],[-0.083772875368595,0.057966880500317,0.0097135901451111]],[[0.0068603311665356,0.076968349516392,0.020706439390779],[-0.13186147809029,0.061424098908901,0.1199973449111],[-0.00021221474162303,-0.029816124588251,-0.19336710870266]],[[0.016424337401986,-0.17561143636703,-0.036694575101137],[0.096881680190563,0.05204651132226,-0.029762046411633],[0.13220146298409,-0.0024120048619807,0.057364378124475]],[[-0.005591822322458,0.068380683660507,0.0011990087805316],[-0.021390814334154,-0.038978431373835,-0.016485730186105],[-0.086503431200981,-0.05346304923296,0.023230070248246]],[[-0.065657272934914,-0.13949930667877,-0.10301081836224],[-0.17222256958485,0.042969550937414,-0.11206337809563],[-0.0025269261095673,0.01641633361578,-0.013771492987871]],[[-0.10591048747301,0.14090184867382,0.13508158922195],[0.062155939638615,-0.041262254118919,-0.070502780377865],[0.11191627383232,0.0016278536058962,-0.0805294662714]],[[-0.10599657148123,-0.073929511010647,0.039531927555799],[0.077212370932102,0.024474577978253,-0.098232202231884],[-0.29778462648392,0.08341346681118,-0.0046480502933264]],[[0.016556680202484,0.0068312375806272,-0.029312266036868],[-0.0097139040008187,0.0062927515245974,-0.010668758302927],[0.12618823349476,0.053641684353352,-0.066944383084774]],[[-0.046872202306986,-0.12552452087402,0.040786251425743],[0.050611712038517,-0.062517538666725,-0.093936659395695],[0.031079391017556,-0.063194945454597,0.13192391395569]],[[0.084060527384281,0.0389524102211,-0.080074146389961],[0.091263130307198,0.11757054179907,-0.015158769674599],[-0.15494740009308,-0.0788239762187,0.014432702213526]],[[0.056210093200207,0.045098263770342,-0.0029488219879568],[-0.044699911028147,0.1260669529438,-0.086489900946617],[-0.053056657314301,0.032845988869667,-0.13661013543606]],[[0.050148330628872,0.0057392055168748,0.048372890800238],[0.050750184804201,0.063990272581577,-0.072355799376965],[0.051942430436611,0.10599949210882,0.080577991902828]],[[-0.040707979351282,-0.019849117845297,-0.085173636674881],[-0.032264281064272,0.041248068213463,-0.064309321343899],[-0.085088521242142,-0.010026919655502,-0.041153680533171]],[[-0.02391947619617,-0.012788490392268,0.014057252556086],[0.064527586102486,-0.010798147879541,-0.082703545689583],[-0.01029908657074,0.03980416059494,-0.02315510250628]],[[0.0046137878671288,-0.053410299122334,0.049115538597107],[-0.068191051483154,-0.19495597481728,0.0098947435617447],[0.051382474601269,0.060868065804243,0.032057639211416]],[[0.29327082633972,-0.011616363190114,-0.080444544553757],[0.019160307943821,0.037668097764254,0.073950976133347],[0.070944376289845,-0.066116318106651,0.18085803091526]],[[-0.12998352944851,0.034633912146091,-0.025511415675282],[-0.057285405695438,-0.044664304703474,0.0053329337388277],[0.055099137127399,0.005301340483129,-0.16956965625286]],[[-0.24471125006676,0.12975537776947,-0.085378520190716],[-0.11861868947744,0.081162974238396,-0.1108972504735],[-0.0081043848767877,-0.015182130038738,0.034257914870977]],[[-0.00045696765300818,0.042164143174887,0.18074348568916],[0.018597610294819,-0.1056173145771,0.01729479059577],[0.03478429839015,0.19294673204422,-0.028303490951657]],[[0.095151796936989,-0.048340607434511,-0.065292902290821],[0.016924601048231,-0.062049258500338,0.025078410282731],[0.043286111205816,-0.10916183143854,0.13258709013462]],[[0.0020882487297058,-0.024113157764077,0.1470051407814],[-0.11227881163359,-0.026851017028093,-0.044717568904161],[-0.0050036972388625,-0.019608857110143,-0.050074450671673]],[[-0.094322055578232,-0.10937041789293,-0.14168557524681],[-0.0091047482565045,-0.071755684912205,0.0079780630767345],[0.032943643629551,-0.09124431014061,0.08251466602087]],[[-0.0092180129140615,-0.079320646822453,0.030366027727723],[-0.01156906504184,-0.084972694516182,0.033826027065516],[0.059705026447773,-0.046136315912008,-0.16373305022717]],[[-0.0039920136332512,0.06917455047369,-0.035098899155855],[0.031219907104969,-0.0079048844054341,-0.068131238222122],[-0.10132779181004,0.088986165821552,0.07091423869133]],[[0.022220347076654,0.11137434840202,0.080710597336292],[0.10261245816946,-0.099636353552341,-0.015428775921464],[-0.025778839364648,-0.083581440150738,0.077735796570778]],[[0.09796267002821,-0.019617410376668,-0.074050299823284],[-0.071865677833557,0.11986338347197,-0.080808408558369],[0.12951318919659,-0.059919223189354,-0.10205264389515]],[[0.063574209809303,-0.093269802629948,-0.044095311313868],[-0.042375337332487,-0.11927738040686,0.10555528104305],[0.099667608737946,0.0442771948874,0.048534374684095]],[[-0.070064216852188,-0.060640022158623,0.092912033200264],[-0.028057001531124,-0.1101403310895,-0.069757349789143],[-0.10211230814457,-0.11750108748674,0.028726330026984]],[[-0.0026862779632211,-0.037114650011063,-0.10838501155376],[0.019287655130029,-0.030797904357314,-0.2398909330368],[-0.0052741202525795,0.024157244712114,-0.0589878000319]],[[-0.044972032308578,0.028261478990316,0.039810720831156],[0.070689015090466,-0.057080920785666,0.16994059085846],[-0.096685543656349,0.011550080031157,-0.064766399562359]],[[0.089902438223362,0.028730075806379,0.074411615729332],[-0.072858139872551,-0.13600905239582,-0.060442890971899],[-0.053031146526337,-0.072713069617748,-0.18483869731426]],[[0.14699740707874,-0.040937889367342,-0.0090265581384301],[-0.093672096729279,-0.094662062823772,-0.08984898775816],[-0.17712643742561,-0.11034292727709,-0.034835863858461]],[[-0.070772528648376,0.11636147648096,0.0071972417645156],[-0.17437066137791,0.03452356159687,0.065134935081005],[-0.064124375581741,0.13957284390926,0.21731221675873]],[[0.093302257359028,0.17039878666401,0.31486773490906],[0.046304821968079,0.063103534281254,0.11836740374565],[0.26355019211769,0.080642074346542,-2.8074253350496e-05]],[[-0.021694928407669,0.015759192407131,0.1733985543251],[0.070598669350147,-0.10132262855768,-0.14404508471489],[-0.099105514585972,-0.055153112858534,-0.056882653385401]],[[0.086173713207245,-0.014674305915833,-0.037170071154833],[-0.0034205398987979,-0.1208670809865,-0.06205053254962],[-0.03192974999547,-0.18154199421406,0.065917707979679]],[[0.033128842711449,0.077217027544975,-0.13725389540195],[-0.022213015705347,0.049798328429461,0.083214588463306],[-0.16846629977226,0.13865566253662,-0.068807348608971]],[[-0.11679740995169,0.0091107413172722,-0.046687331050634],[-0.15722262859344,-0.0261011980474,-0.13574403524399],[-0.027456443756819,0.037823770195246,-0.1147533506155]],[[-0.0098066562786698,-0.041010674089193,-0.044621996581554],[0.099743641912937,0.024063939228654,0.062890894711018],[0.059987962245941,-0.043624706566334,-0.04615081101656]],[[0.045400854200125,-0.016603022813797,-0.11954397708178],[0.096385344862938,0.061896339058876,0.039241060614586],[0.030422428622842,0.086849324405193,-0.011812548153102]],[[0.034807536751032,0.071584269404411,0.040869262069464],[-0.098879456520081,0.029518900439143,0.018541317433119],[0.044395975768566,-0.089931711554527,0.067732185125351]],[[-0.067573927342892,0.040028218179941,0.029083099216223],[-0.12191196531057,0.10043835639954,-0.084251746535301],[-0.076855689287186,0.066568374633789,0.024840760976076]],[[-0.092753857374191,-0.035110875964165,0.011797551997006],[0.024362625554204,-0.17705234885216,-0.22726257145405],[-0.055173020809889,-0.085257507860661,-0.13900542259216]],[[0.06133296713233,0.058344539254904,-0.076030664145947],[0.12206026911736,0.061029653996229,0.027692798525095],[-0.043620500713587,-0.030755870044231,0.0040266052819788]],[[-0.075307436287403,0.040979713201523,-0.029741832986474],[-0.1248677521944,-0.058936696499586,0.051922734826803],[-0.022635791450739,0.02874225564301,-0.13162139058113]],[[0.056355994194746,0.12060548365116,0.090190328657627],[-0.1029574945569,-0.047710686922073,0.0079906331375241],[-0.029332112520933,-0.08286190032959,-0.12379565089941]],[[-0.055858071893454,-0.080936409533024,-0.17537239193916],[-0.066825956106186,0.027936667203903,0.040748216211796],[0.042888756841421,0.040888205170631,0.0045419209636748]],[[-0.097816362977028,-0.038811713457108,-0.14946648478508],[-0.033924527466297,0.070879101753235,0.00093458069022745],[-0.09508890658617,-0.063842512667179,0.054851461201906]],[[-0.011388387531042,-0.060983281582594,-0.071419715881348],[0.032633643597364,-0.04347138106823,0.057514030486345],[0.012716705910861,-0.099457442760468,-0.061819855123758]],[[-0.23159243166447,-0.068053849041462,0.14099405705929],[-0.052472542971373,-0.2019282579422,0.12273904681206],[0.0027793375775218,-0.036362804472446,-0.11846308410168]],[[0.12891314923763,-0.058652836829424,-0.092595838010311],[-0.21708445250988,-0.051699511706829,-0.053839180618525],[-0.081017680466175,-0.024804212152958,0.041793562471867]],[[0.14284271001816,-0.021478408947587,0.021751383319497],[0.10080340504646,0.093119852244854,0.004893384873867],[-0.010629839263856,0.18433704972267,0.096758663654327]],[[0.0080844843760133,0.15883809328079,0.16998606920242],[-0.10950727015734,0.0035127447918057,0.15546530485153],[0.17983275651932,0.0568553134799,-0.14307627081871]],[[-0.11566800624132,-0.11342655867338,-0.020484391599894],[-0.043431859463453,-0.10220274329185,-0.01163980178535],[-0.030896734446287,0.034623887389898,0.061201103031635]],[[-0.0045770592987537,0.072177574038506,0.076249808073044],[0.055930308997631,-0.092888802289963,-0.065793849527836],[0.060451786965132,0.092695854604244,-0.12150830775499]],[[-0.067162804305553,0.042605146765709,0.044796034693718],[-0.097131587564945,-0.068411707878113,0.078183114528656],[-0.040963109582663,-0.083356574177742,0.015346110798419]],[[0.02026454731822,-0.041757483035326,0.048040773719549],[-0.010697856545448,-0.018040537834167,-0.0035473338793963],[-0.11562947183847,0.0241683665663,0.061156816780567]],[[-0.00574582349509,0.039985869079828,0.093393459916115],[0.081243745982647,0.034065846353769,-0.025730464607477],[-0.10064074397087,-0.039705131202936,0.095279917120934]],[[-0.1156797632575,0.06477665156126,0.055236663669348],[-0.12700960040092,-0.056427735835314,0.16813215613365],[0.12057535350323,0.02429274469614,-0.006361385807395]],[[-0.057734183967113,-0.0055723884142935,-0.04708432033658],[-0.020226152613759,-0.04300132393837,0.0041983993723989],[-0.071681194007397,-0.094085849821568,0.078230440616608]],[[-0.089963637292385,-0.12188581377268,-0.08618338406086],[0.040529634803534,-0.023903919383883,-0.018178498372436],[-0.085468143224716,-0.11197198927402,0.0076983137987554]],[[0.13585326075554,-0.13835111260414,-0.043536100536585],[-0.057349000126123,0.065100565552711,0.0083786295726895],[-0.058585051447153,0.035947449505329,-0.23940442502499]],[[-0.047047663480043,-0.168801009655,-0.098939076066017],[0.011046168394387,-0.08831837028265,-0.017939893528819],[-0.072959206998348,-0.074748754501343,0.015006793662906]],[[-0.0085963848978281,-0.12705691158772,0.14114393293858],[-0.0090877329930663,-0.090249620378017,-0.0014064843999222],[-0.030679240822792,0.11588665097952,-0.053708281368017]],[[0.011457595042884,0.037283133715391,-0.036959484219551],[-0.018528981134295,0.1481389850378,-0.072603270411491],[0.1642734259367,-0.018243417143822,-0.080313168466091]],[[0.1038620620966,0.10547555238008,0.018744418397546],[0.093153163790703,-0.0052093700505793,-0.0098923109471798],[0.059134893119335,0.074535168707371,0.10669860243797]],[[-0.16325540840626,-0.13165380060673,0.11916545033455],[-0.0038799997419119,0.031641378998756,0.067421026527882],[0.14860969781876,-0.11462672799826,-0.065855324268341]],[[-0.087224997580051,-0.19688901305199,-0.25334602594376],[-0.036082368344069,0.031824987381697,-0.082229785621166],[0.088467516005039,-0.0038135887589306,0.0043641980737448]],[[0.13166588544846,-0.10564969480038,-0.038546178489923],[0.063430905342102,-0.042417414486408,0.13927011191845],[-0.095165684819221,-0.093099996447563,-0.063857734203339]],[[0.080355748534203,-0.12935897707939,-0.011876976117492],[0.023943349719048,-0.092219293117523,-0.11133329570293],[0.0020184214226902,-0.080087229609489,-0.048402268439531]],[[0.16729961335659,0.022480607032776,-0.074178405106068],[-0.026229701936245,0.11285961419344,0.029625354334712],[-0.13131639361382,-0.031465031206608,0.096208907663822]],[[-0.030531974509358,0.016683781519532,0.14929811656475],[0.094245843589306,-0.036984693259001,-0.043228216469288],[-0.11112426221371,0.034175828099251,-0.033477656543255]],[[-0.012331023812294,-0.048975240439177,-0.044774118810892],[0.081492252647877,0.07431460916996,0.01979742012918],[-0.079486310482025,-0.084036894142628,0.044484350830317]],[[0.12420234084129,0.12682473659515,-0.066991783678532],[-0.23879569768906,-0.10552331805229,-0.02674569003284],[-0.089816741645336,-0.074398070573807,0.031957659870386]],[[0.081418804824352,0.10704170167446,0.0046264086849988],[-0.06104139983654,-0.031202509999275,-0.038101963698864],[-0.02154128625989,-0.090087309479713,0.097201436758041]],[[-0.019054923206568,-0.0087754298001528,0.25198245048523],[0.11808026582003,0.17530919611454,0.028989031910896],[0.047166295349598,0.1868512481451,0.030076233670115]],[[0.097473978996277,0.02258325368166,0.0070040640421212],[0.14954179525375,0.071906901896,-0.016068300232291],[-0.095522880554199,-0.092857122421265,0.13799880445004]],[[-0.12392900884151,-0.06995952129364,0.034883394837379],[-0.12638890743256,-0.076681591570377,0.017129350453615],[-0.0013868338428438,-0.0070392927154899,0.1459758579731]],[[0.05317635089159,0.19343560934067,0.083305455744267],[-0.0191436894238,0.24636191129684,-0.0040737385861576],[-0.01997996494174,0.12343602627516,-0.027072250843048]],[[-0.0032372949644923,0.045643094927073,0.0018256246112287],[0.10123368352652,-0.039836846292019,-0.18019923567772],[0.12510788440704,-0.036084905266762,0.035662595182657]],[[0.0064268233254552,-0.0092207137495279,-0.061282508075237],[-0.02152650244534,-0.036843568086624,-0.026707334443927],[-0.12488855421543,-0.023011339828372,0.030035063624382]],[[-0.014176132157445,-0.043303076177835,-0.11196256428957],[-0.066486537456512,-0.040928818285465,-0.15391357243061],[-0.10947345942259,-0.1122106090188,0.12189122289419]],[[0.036361202597618,0.0057237977162004,-0.086091913282871],[-0.071419179439545,0.044506475329399,0.026398671790957],[0.016564454883337,-0.041856355965137,0.049879893660545]],[[0.07384093105793,-0.034802310168743,0.040153816342354],[-0.16678555309772,-0.056334801018238,-0.10540618002415],[0.0065255626104772,-0.11132427304983,-0.12887182831764]],[[0.060088701546192,-0.086193054914474,0.10958686470985],[0.13510455191135,0.019744766876101,0.021397760137916],[0.072440750896931,0.11681209504604,0.064124122262001]],[[-0.03430087864399,0.024818930774927,0.15969222784042],[0.071393601596355,0.069082953035831,-0.00042021626722999],[0.071044363081455,-0.1744459271431,0.053892180323601]],[[-0.0019023078493774,-0.05239349976182,0.001266062958166],[0.045646723359823,-0.076536312699318,-0.024659357964993],[-0.066433742642403,-0.034238554537296,0.11027573794127]],[[-0.012592048384249,0.064628720283508,-0.052922662347555],[-0.082105316221714,0.054308600723743,0.22340527176857],[0.096196122467518,0.025992892682552,-0.090652547776699]],[[-0.046202834695578,-0.11615118384361,-0.14873170852661],[-0.073158845305443,-0.029903098940849,-0.03795799985528],[0.059086803346872,0.11626660078764,0.15496711432934]],[[-0.063436038792133,-0.06487137824297,-0.049295961856842],[-0.11551696062088,-0.089106179773808,-0.093768484890461],[-0.010776952840388,0.21888002753258,-0.044169902801514]],[[-0.0020781117491424,0.084192655980587,-0.043187141418457],[-0.033468414098024,-0.081539325416088,0.0419678427279],[-0.036354307085276,0.0086653381586075,-0.013469849713147]],[[0.027724778279662,0.014386217109859,0.11762406677008],[0.033029608428478,0.12376480549574,0.11547607928514],[0.064009554684162,-0.038951862603426,-0.12487594038248]],[[-0.10309222340584,-0.058710623532534,-0.049827091395855],[-0.10695502907038,-0.26290941238403,-0.018529949709773],[-0.088821403682232,0.013305751606822,-0.032523423433304]],[[-0.043392945080996,-0.11010207980871,-0.10455875843763],[0.072599962353706,-0.046658329665661,0.022890096530318],[0.012254036962986,-0.1983412951231,0.093828402459621]],[[0.053986020386219,0.21059389412403,0.059728927910328],[0.14781807363033,0.089246667921543,0.13214614987373],[-0.0056163002736866,0.09204974770546,-0.033608064055443]],[[-0.10556311160326,-0.058127734810114,0.11695872992277],[0.0078871613368392,0.043561678379774,-0.027277192100883],[-0.1200453042984,0.098197013139725,-0.0072277747094631]],[[-0.17366836965084,0.054439328610897,0.19442696869373],[0.02685415931046,0.10195895284414,0.054445587098598],[-0.022776506841183,0.01624770462513,0.047361928969622]],[[0.22478793561459,-0.025940969586372,-0.076997153460979],[0.15089930593967,-0.0582713522017,-0.0018683730158955],[-0.029220016673207,-0.056725572794676,-0.11233764886856]]],[[[-0.056380119174719,-0.038542289286852,-0.031813465058804],[0.017683042213321,0.055109925568104,0.064874805510044],[-0.0069244178012013,-0.013475196436048,-0.042001489549875]],[[0.0055781127884984,-0.040762219578028,0.016168938949704],[-0.0045362547971308,-0.005861614830792,-0.0056291962973773],[0.040241297334433,0.088497348129749,-0.0087673794478178]],[[-0.0094336047768593,0.0056352238170803,-0.053628940135241],[0.037046682089567,0.016614969819784,0.002162748714909],[0.00072051445022225,-0.069272398948669,0.00024194360594265]],[[-0.028651269152761,0.0051432810723782,0.032222233712673],[-0.040568966418505,0.017193710431457,-0.033577501773834],[0.012560293078423,-0.02505842037499,0.005854042712599]],[[0.070330791175365,-0.0017567772883922,-0.030788194388151],[-0.031091133132577,-0.0022198748774827,0.044842045754194],[0.025956494733691,0.043592318892479,-0.0048007862642407]],[[0.0057230568490922,0.039159629493952,-0.037708777934313],[0.013370091095567,-0.023164903745055,0.017578801140189],[-0.0072648446075618,0.04891512170434,-0.058206327259541]],[[-0.01850463822484,0.035559389740229,-0.020567387342453],[-0.0083891320973635,-0.042460780590773,-0.0011294285068288],[-0.02965378575027,-0.017122389748693,-0.028589971363544]],[[-0.085535421967506,0.010442459955812,0.024721415713429],[0.009940767660737,-0.042084041982889,-0.015390743501484],[0.035045713186264,0.055878035724163,0.00013528359704651]],[[-0.013405191712081,0.090705327689648,-0.026412477716804],[0.0030613343697041,-0.0013618043158203,-0.0042190798558295],[-0.0518355704844,0.06482121348381,0.035050272941589]],[[0.076467603445053,0.0024118730798364,0.017939550802112],[-0.00097452226327732,0.0027838030364364,0.025624820962548],[0.01237390562892,0.010841807350516,0.020598920062184]],[[-0.020239364355803,0.028351053595543,-0.027767824009061],[-0.004223519936204,0.0069233532994986,0.031806737184525],[0.075882196426392,-0.010823053307831,0.025012373924255]],[[-0.086267031729221,0.036083500832319,0.038156665861607],[0.019435469061136,0.07618809491396,0.015436455607414],[0.010684522800148,-0.0080134756863117,-0.096257738769054]],[[-0.028351865708828,-0.055543057620525,-0.032845485955477],[-0.0060349926352501,0.063314214348793,-0.016008036211133],[0.020986432209611,0.001170041738078,-0.057357829064131]],[[0.0099743865430355,0.0049435677938163,-0.0036436512600631],[0.013047023676336,-0.074239730834961,0.035639826208353],[0.074918143451214,0.076050877571106,0.019443668425083]],[[0.019946085289121,-0.013689490966499,0.011288679204881],[0.015922022983432,-0.042820334434509,0.014269724488258],[0.011482811532915,0.068452447652817,0.044464576989412]],[[0.030190318822861,0.101687528193,0.035462908446789],[0.0099023226648569,0.010808449238539,0.0037755246739835],[0.012024671770632,-0.023534061387181,-0.0011663562618196]],[[0.0045540514402092,0.026631506159902,-0.065385349094868],[0.0031375628896058,0.046422872692347,0.033915437757969],[0.037516407668591,-0.04548529163003,0.017884554341435]],[[0.05409486964345,0.0072902198880911,0.018072951585054],[0.026200463995337,0.0059540276415646,-0.023258436471224],[-0.044791046530008,0.02373355999589,0.069247208535671]],[[-0.048698734492064,0.036986034363508,-0.044861741364002],[0.011779066175222,-0.024501668289304,0.038156647235155],[0.023631015792489,-0.0079144546762109,-0.05892700701952]],[[0.025397045537829,0.01472445577383,0.03593523427844],[0.0061063901521266,-0.029531762003899,-0.039916880428791],[-0.0024839334655553,0.013824698515236,0.050536051392555]],[[-0.0029536252841353,0.012388868257403,-0.018134543672204],[0.011695213615894,0.022259891033173,-0.027356224134564],[-0.048096638172865,-0.0039764330722392,-0.0092820273712277]],[[0.029587024822831,0.036826200783253,-0.0057844826951623],[0.060300398617983,0.050820518285036,0.030957780778408],[-0.031053928658366,0.030111983418465,0.026579001918435]],[[-0.021769441664219,0.071661949157715,0.034449372440577],[-0.015296664088964,0.021859612315893,0.016930809244514],[-0.0085945790633559,0.0086819054558873,-0.036894120275974]],[[-0.014421274885535,0.027183288708329,0.0034996005706489],[-0.013213226571679,-0.011271456256509,0.030139310285449],[0.041326384991407,0.030943054705858,-0.0057213781401515]],[[0.025070391595364,-0.031773421913385,0.02160507813096],[-0.065084755420685,-0.047262005507946,-0.034706361591816],[-0.027897426858544,0.015898261219263,0.094880923628807]],[[-0.038433533161879,0.017619989812374,-0.068695664405823],[-0.0076643172651529,-0.05117642134428,-0.032356280833483],[0.03404314443469,0.0032587717287242,-0.018207145854831]],[[-0.040417592972517,-0.0073932148516178,0.028669161722064],[-0.015079493634403,0.0027774011250585,-0.043493162840605],[0.0036386838182807,0.0020555111113936,-0.030174732208252]],[[0.026097770780325,0.030577147379518,0.017094226554036],[0.047798037528992,0.024085721001029,-0.082544639706612],[0.06897209584713,0.0023121535778046,-0.0015743041876704]],[[-0.0072513073682785,-0.025180200114846,0.062247652560472],[-0.037325847893953,0.031849499791861,-0.02344966493547],[0.018327262252569,-0.0038518169894814,0.067583657801151]],[[-0.032681565731764,0.0035999813117087,0.018906440585852],[0.0090155191719532,0.050225492566824,0.043559737503529],[-0.050969310104847,-0.013146240264177,0.043421916663647]],[[0.0069685480557382,-0.021437836810946,0.015079624019563],[-0.018957076594234,0.0049494081176817,-0.031502153724432],[-0.026677198708057,0.058430958539248,0.044097550213337]],[[0.062199879437685,0.01455654669553,0.030087793245912],[0.014954412356019,0.073677659034729,-0.032361842691898],[-0.053064614534378,-0.022653697058558,-0.037555858492851]],[[0.007227698341012,0.021229548379779,0.099119268357754],[0.058329239487648,0.083862014114857,0.022730894386768],[-0.014702158980072,-0.013986474834383,-0.030884545296431]],[[0.0086440313607454,0.01880263723433,-0.026179959997535],[0.041943915188313,-0.023679515346885,0.033280573785305],[-0.024176588281989,-0.058150693774223,-0.035402446985245]],[[-0.024255933240056,-0.006671242415905,-0.042121082544327],[-0.034297492355108,0.034726444631815,-0.022266950458288],[0.065426357090473,-0.008221254684031,0.013478461652994]],[[-0.031415585428476,-0.0025293468497694,-0.019095307216048],[-0.064570695161819,0.03816794604063,0.028636939823627],[-0.040804270654917,0.06157137081027,0.0078192288056016]],[[0.071691319346428,0.015231161378324,0.014584961347282],[-0.042916864156723,-0.029903450980783,0.045185409486294],[0.019047467038035,0.034797199070454,0.020183565095067]],[[0.010066356509924,-0.041820101439953,0.014535073190928],[0.022919971495867,-0.062631912529469,0.031034106388688],[-0.050509680062532,-0.049255445599556,0.030202904716134]],[[0.0027488421183079,0.021527050063014,0.038833435624838],[-0.023833533748984,-0.020971585065126,-0.0080042164772749],[-0.015933917835355,0.021454714238644,0.021158693358302]],[[0.010083842091262,0.008730623871088,-0.021219603717327],[-0.012560266070068,-0.022084444761276,0.020450426265597],[0.002002292079851,-0.056520208716393,0.035029470920563]],[[-0.054931554943323,-0.021685631945729,-0.015355314128101],[0.029998172074556,-0.00053686741739511,-0.0025933077558875],[0.0021717136260122,0.0028529837727547,-0.068079441785812]],[[-0.021788448095322,-0.041616719216108,0.0042559611611068],[-0.021087318658829,-0.040464106947184,0.023343022912741],[-0.026796316727996,0.021093167364597,0.026898683980107]],[[-0.0092617133632302,0.021505363285542,0.0052627520635724],[0.045494955033064,0.023864129558206,-0.016910372301936],[0.038255803287029,0.049389775842428,-0.0087426071986556]],[[0.012093911878765,0.0029458354692906,-0.0090848011896014],[-0.044226445257664,-0.02376408316195,-0.025281745940447],[-0.031595166772604,-0.036577451974154,-0.0018837214447558]],[[-0.044540781527758,0.00048955052625388,0.040365565568209],[-0.010666881687939,0.05870209634304,-0.062780149281025],[0.019890956580639,-0.06589662283659,-0.0047299531288445]],[[-0.0059156799688935,-0.055558063089848,-0.046313866972923],[0.061338815838099,0.054230134934187,0.020831130445004],[0.036141820251942,0.019597196951509,-0.10374346375465]],[[0.030498800799251,-0.018575944006443,-0.019416321069002],[-0.025087412446737,0.0015690174186602,0.056480288505554],[-0.026604268699884,0.059218320995569,-0.023363994434476]],[[0.030777711421251,0.042282234877348,-0.03458634018898],[-0.0023571166675538,-0.020548829808831,-0.013131950050592],[0.023028755560517,-0.0036054658703506,0.026128757745028]],[[0.0036914176307619,0.02131537720561,0.011989875696599],[-0.075367368757725,0.0071595120243728,0.032162293791771],[-0.012313354760408,0.044990178197622,0.019536178559065]],[[0.030935009941459,-0.038448043167591,0.000932136841584],[-0.053070649504662,-0.0023995554074645,0.080591350793839],[-0.00048631746903993,-0.0014487588778138,-0.036840420216322]],[[-0.0044767111539841,0.059417147189379,-0.05314052850008],[-0.018766487017274,-0.019815444946289,0.0410116314888],[-0.049649719148874,-0.049531437456608,-0.022069608792663]],[[-0.085761703550816,0.011907546781003,-0.018990086391568],[-0.0094127785414457,-0.047898318618536,0.01411269698292],[0.001234162831679,0.040718071162701,-0.01124123763293]],[[-0.065222889184952,0.012893534265459,-0.023747349157929],[0.044878650456667,0.0093022529035807,-0.041153226047754],[-0.008855402469635,-0.0058601363562047,-0.026366120204329]],[[0.0054936432279646,0.020577311515808,-0.012038959190249],[0.017839400097728,-0.015524283051491,0.054370958358049],[-0.02684922516346,0.020774463191628,0.021988453343511]],[[0.058916170150042,0.039908770471811,-0.049647271633148],[-0.03041890822351,-0.037963401526213,-0.040952749550343],[-0.0049472376704216,0.007577090524137,0.00089261546963826]],[[-0.037157487124205,-0.010379773564637,-0.010649517178535],[0.0030882726423442,-0.030886024236679,-0.037891674786806],[-0.0095236795023084,0.0089789731428027,-0.025403587147593]],[[-0.035683628171682,-0.0074827368371189,-0.027008801698685],[-0.02486614510417,0.023525685071945,-0.046708200126886],[0.052764110267162,-0.041372284293175,0.02184303291142]],[[0.045958280563354,0.016136774793267,0.03053530678153],[-0.0044252006337047,0.039134375751019,-0.044333472847939],[0.026394531130791,-0.079604253172874,-0.0023171664215624]],[[-0.043544065207243,-0.03817131370306,-0.091108791530132],[0.052814200520515,-0.043122544884682,-0.075268007814884],[-0.014072485268116,0.012168282642961,-0.054576177150011]],[[0.038100741803646,-0.028510965406895,-0.0039026215672493],[-0.052145875990391,0.053107857704163,0.087202422320843],[0.056994747370481,-0.014871927909553,-0.061035521328449]],[[-0.001622396055609,-0.021498404443264,-0.017657225951552],[0.016539016738534,0.0005256193690002,-0.0054416889324784],[-0.0225186701864,0.029436189681292,0.016943246126175]],[[-0.01452726777643,0.058059521019459,-0.014364978298545],[0.086903922259808,0.013199512846768,0.013631763868034],[-0.02718199044466,0.062923096120358,0.027676245197654]],[[0.11261355876923,0.038228925317526,-0.026489509269595],[-0.10417547076941,0.067766405642033,-0.012000461108983],[0.020913101732731,-0.0037918901070952,-0.00936658680439]],[[0.031462762504816,-0.0074748476035893,0.038922671228647],[0.0062913638539612,0.0071066115051508,0.020331649109721],[0.070568799972534,-0.035051625221968,-0.021884806454182]],[[0.016300745308399,0.020411688834429,-0.040461651980877],[0.026837963610888,0.027195537462831,-0.023138662800193],[0.0053877327591181,0.031913556158543,0.02188147418201]],[[-0.1191083714366,-0.071416787803173,-0.00013068193220533],[-0.0019065137021244,-0.042940385639668,-0.01164694968611],[0.02091546356678,-0.046052798628807,0.010156118310988]],[[-0.028731014579535,-0.09306375682354,-0.010886684991419],[0.023972665891051,-0.014154335483909,-0.0056640217080712],[-0.067947737872601,-0.033847160637379,0.010922594927251]],[[0.018540402874351,0.004142009653151,0.0053000203333795],[-0.03049741499126,0.0081841144710779,-0.018956346437335],[0.011563922278583,-0.04834259301424,0.0085131088271737]],[[-0.00030206475639716,-0.062420062720776,-0.061177015304565],[-0.018073679879308,0.010097062215209,-0.0016972438897938],[0.044297412037849,-0.0036163404583931,-0.018076116219163]],[[-0.0094974059611559,-0.022802056744695,0.025076614692807],[0.035972349345684,-0.020577175542712,0.03193162381649],[-0.020345862954855,-0.034031558781862,-0.078305959701538]],[[-0.051128748804331,-0.058021672070026,-0.094211764633656],[0.059240080416203,0.015940206125379,-0.055333834141493],[0.0093073965981603,0.015029704198241,-0.0003864499158226]],[[0.020511668175459,0.018627297133207,0.020342517644167],[-0.024315213784575,-0.051514614373446,0.047666635364294],[0.010676498524845,0.030316982418299,-0.01158563606441]],[[-0.031928852200508,-0.016749747097492,0.045758951455355],[-0.012632425874472,0.036393083631992,-0.026026548817754],[-0.0084913987666368,-0.00030182648333721,-0.033245500177145]],[[0.006574175786227,0.045292042195797,-0.044601932168007],[-0.011672181077302,-0.016508061438799,0.014535596594214],[-0.059113647788763,0.0052028521895409,0.046457279473543]],[[-0.026409488171339,0.0043954085558653,0.0070172972045839],[0.076338313519955,0.062175448983908,0.0072527518495917],[-0.055741563439369,-0.057597793638706,0.014771998859942]],[[0.017856208607554,0.0099567472934723,0.0016831404063851],[-0.018402406945825,-0.049037922173738,0.00091322680236772],[-0.0092247789725661,0.015293268486857,0.0017570891650394]],[[-0.0066509833559394,-0.0073346383869648,0.028526702895761],[-0.0099183758720756,0.046690821647644,-0.0014117525424808],[-0.017026236280799,-0.023226510733366,-0.0029623114969581]],[[-0.0019005083013326,-0.021626709029078,0.01967291161418],[-0.023048179224133,0.0060446434654295,-0.038386646658182],[0.031905420124531,0.03040973097086,0.043635237962008]],[[-0.0003931212995667,0.0260168928653,-0.0027082683518529],[0.03773245215416,0.017692029476166,-0.048964351415634],[0.05590582638979,0.0088429572060704,0.052343402057886]],[[0.015919344499707,0.024097684770823,-0.038647077977657],[0.0027489797212183,0.01780634559691,0.066427446901798],[-0.052158121019602,-0.036373138427734,0.021083045750856]],[[-0.01240920741111,0.016162948682904,0.023265667259693],[0.061467178165913,-0.078499622642994,0.030934706330299],[0.011694367043674,-0.017456158995628,0.0013014808064327]],[[-0.011220142245293,0.020524449646473,-0.056925911456347],[0.074476972222328,-0.036855138838291,0.012405840680003],[0.05465080589056,-0.015468696132302,0.066067859530449]],[[0.0002786522381939,-0.062700405716896,-0.013100207783282],[0.011930574662983,0.036528270691633,-0.027502503246069],[-0.065932646393776,-0.028867334127426,-0.0027777410577983]],[[0.045122310519218,0.00030009992769919,0.016572402790189],[0.003413301659748,0.0089130839332938,0.021651098504663],[-0.026627575978637,-0.0098989680409431,0.028893096372485]],[[0.10205651074648,-0.033768154680729,-0.043860554695129],[-0.060375820845366,-0.034601092338562,-0.036540638655424],[0.039708934724331,-0.024697426706553,0.0059740208089352]],[[0.08546482026577,0.046521872282028,-0.035081010311842],[0.036996688693762,-0.070682808756828,0.013304049149156],[-0.032200135290623,0.0095992730930448,-0.02464578859508]],[[0.0033689099363983,0.015139528550208,-0.044931720942259],[0.024680836126208,-0.070924088358879,-0.077169127762318],[-0.019710760563612,0.016686897724867,0.061538010835648]],[[-0.029064871370792,-0.045052513480186,-0.11502403020859],[0.056662812829018,0.090825788676739,0.051358636468649],[-0.06046262010932,0.027783809229732,0.021502673625946]],[[0.068457707762718,0.057004891335964,-0.0084758987650275],[-0.012647041119635,-0.037679933011532,-0.023556577041745],[-0.032093338668346,0.056718409061432,0.0040193698368967]],[[0.020666470751166,-0.020999521017075,-0.018010152503848],[0.048289362341166,-0.012505589053035,-0.013770465739071],[-0.0026431966107339,0.014317931607366,-0.024384908378124]],[[-0.038674429059029,-0.018823789432645,-0.0099315233528614],[-0.03542597219348,0.049738746136427,0.034318335354328],[-0.07462527602911,-0.055566743016243,-0.014637775719166]],[[0.057895638048649,0.02780888043344,0.075572490692139],[0.023477835580707,0.020155772566795,-0.020081367343664],[0.041035830974579,0.070070564746857,-0.042632687836885]],[[-0.028222125023603,0.012823406606913,-0.047599133104086],[0.011055220849812,-0.030237896367908,-0.019330177456141],[0.024905083701015,0.00094669824466109,-0.028983192518353]],[[-0.026588689535856,-0.067319132387638,-0.070264860987663],[-0.025051765143871,-0.043554838746786,-0.0033462380524725],[-0.031894873827696,-0.062936387956142,-0.020570559427142]],[[-0.061050724238157,0.0084706619381905,0.027245327830315],[0.0027417747769505,0.051918413490057,0.021189836785197],[0.073969505727291,0.058142941445112,-0.032725792378187]],[[0.027627879753709,-0.035615809261799,-0.020659668371081],[0.058993577957153,0.045022141188383,-0.045944657176733],[-0.011540865525603,0.0042558987624943,-0.013913772068918]],[[-0.076466269791126,0.0035181960556656,-0.050179660320282],[-0.016668654978275,0.010605311021209,0.028567811474204],[-0.058054830878973,-0.0072040683589876,-0.013897876255214]],[[-0.031694088131189,0.050691001117229,-0.033071249723434],[-0.019808625802398,0.042816206812859,0.0024193217977881],[0.038858041167259,0.040643952786922,0.056208416819572]],[[-0.031800251454115,-0.046605713665485,0.0095015680417418],[0.012530204840004,-0.028431717306376,-0.0086060706526041],[-0.036213465034962,0.06417078524828,-0.033587988466024]],[[-0.042746212333441,0.014342048205435,-0.0096562914550304],[-0.044433422386646,-0.013947081752121,-0.046401489526033],[0.0067349951714277,-0.026726076379418,-0.021536137908697]],[[0.017904657870531,0.0017612110823393,0.050421021878719],[-0.006751349195838,0.054728671908379,-0.023383976891637],[0.032095890492201,-0.002320964820683,-0.020387781783938]],[[-0.016740353778005,-0.023949177935719,0.01067290827632],[-0.0010825098725036,0.011305689811707,0.0047037196345627],[0.0078290048986673,-0.065496146678925,-0.066553831100464]],[[0.03887265920639,0.03201312199235,0.072581253945827],[-0.04542588070035,0.011499870568514,-0.094133161008358],[-0.049822647124529,-0.0024984104093164,0.055596880614758]],[[-0.003934629727155,-0.075280047953129,-0.028672384098172],[0.059236232191324,-0.020647121593356,-0.044612880796194],[0.036902312189341,0.075767934322357,0.027467524632812]],[[0.020591676235199,-0.031560439616442,0.034524071961641],[0.032650705426931,0.029709037393332,0.062464285641909],[0.011790986172855,-0.03955889120698,0.063472710549831]],[[-0.061310768127441,-0.00095535162836313,-0.020037831738591],[0.031067103147507,-0.028210774064064,-0.026909474283457],[0.0398631952703,-0.05781464651227,0.032157387584448]],[[0.0471824221313,0.0010903482325375,-0.014507690444589],[-0.044790841639042,0.064083226025105,-0.043522089719772],[-0.037491254508495,-0.0036132482346147,-0.066778115928173]],[[0.023844508454204,-0.0089731477200985,0.0028561961371452],[0.006107060238719,0.0041139028035104,-0.00046119981561787],[-0.012137338519096,-0.029254814609885,0.02455522865057]],[[-0.043988022953272,0.041146606206894,-0.013599029742181],[0.005964488722384,-0.04602725058794,0.022807668894529],[0.025305042043328,0.041171591728926,-0.031356625258923]],[[-0.019322032108903,-0.01646570302546,-0.075721688568592],[0.041386436671019,0.0050137285143137,-0.052991822361946],[-0.092359408736229,-0.054373916238546,-0.076840341091156]],[[-0.016031099483371,-0.097458586096764,-0.013377229683101],[-0.061116002500057,-0.029001757502556,-0.099329061806202],[0.046230766922235,0.030902616679668,0.02867479622364]],[[-0.045997560024261,0.060554999858141,0.0017241525929421],[-0.024893429130316,-0.042575892060995,-0.019745294004679],[0.030093673616648,0.03694349899888,0.026858106255531]],[[0.0024993726983666,0.018724322319031,-0.021993098780513],[0.013048213906586,-0.033132445067167,-0.0021544443443418],[-0.036945089697838,-0.0068813851103187,0.039048466831446]],[[0.0046355021186173,0.026363380253315,-0.024332685396075],[0.044303920120001,-0.12901915609837,0.069178655743599],[0.033770319074392,0.028084125369787,0.0098671270534396]],[[-0.07268226146698,-0.050796702504158,0.029114605858922],[0.0017590565839782,0.076785169541836,-0.035456016659737],[0.050522182136774,0.0089445579797029,0.019325716421008]],[[0.054812457412481,0.0049532637931406,-0.012930553406477],[-0.035027593374252,-0.018990125507116,-0.0075516300275922],[0.0044559063389897,0.037055425345898,0.041143756359816]],[[-0.030806863680482,0.028778459876776,0.049367718398571],[-0.018689161166549,0.037113763391972,0.0024728928692639],[-0.073591902852058,0.0065883323550224,-0.052116010338068]],[[0.042071547359228,-0.035458512604237,-0.014264192432165],[0.038490731269121,-0.057067908346653,0.047672092914581],[-0.0054854261688888,0.011874491348863,0.0077354591339827]],[[0.03265692666173,0.019330875948071,-0.017904089763761],[-0.04804028943181,-0.023561848327518,0.042815130203962],[0.03408395498991,0.034756507724524,0.0015442293370143]],[[0.077498845756054,0.017908440902829,-0.025266306474805],[0.0022770019713789,-0.043091356754303,-0.058790449053049],[0.030432911589742,0.02387585118413,-0.072501942515373]],[[0.010270990431309,-0.044141240417957,-0.0053922426886857],[0.014883526600897,-0.030176153406501,0.040419332683086],[0.011539064347744,0.0096504688262939,-0.086449854075909]],[[0.042127139866352,-0.019465498626232,0.10324063897133],[-0.013023488223553,-0.027053020894527,0.02671992406249],[0.087267525494099,0.019401570782065,-0.055958595126867]],[[0.055461466312408,0.013637753203511,-0.011104852892458],[-0.089784704148769,-0.050864189863205,-0.098784111440182],[0.062527142465115,0.034766886383295,-0.015973227098584]],[[-0.033737920224667,-0.034868016839027,-0.014660195447505],[-0.045825224369764,-0.032360006123781,-0.014133269898593],[-0.011681493371725,0.0575140863657,0.013725978322327]],[[0.015135987661779,-0.016445165500045,0.0040918169543147],[0.070700995624065,0.0050863516516984,-0.0031861406750977],[-0.058599021285772,0.02141947299242,-0.017200648784637]],[[-0.0452582500875,-0.012781755067408,-0.016232803463936],[0.038128722459078,0.057754646986723,-0.015274110250175],[0.063027605414391,-0.017950607463717,-0.038730315864086]],[[-0.004220686852932,-0.0044635785743594,-0.055650625377893],[0.025569522753358,0.012162832543254,0.018480008468032],[-0.021947821602225,-0.022766068577766,-0.032107602804899]],[[-0.044360008090734,-0.049712650477886,0.031671285629272],[0.055845845490694,0.012003975920379,-0.025343004614115],[-0.0066465949639678,0.014796231873333,-0.021345296874642]]],[[[-0.0059489761479199,0.0098863579332829,-0.021161956712604],[0.0092943552881479,0.013921049423516,0.055942691862583],[-0.051413293927908,0.010430913418531,-0.021210551261902]],[[-0.01541533600539,-0.074022471904755,-0.036403585225344],[0.015316295437515,-0.0032191297505051,0.021338872611523],[0.025175606831908,0.0096035674214363,-0.022514110431075]],[[0.0023017136845738,-0.042496923357248,0.072289399802685],[0.022849932312965,-0.032147824764252,0.01552505698055],[0.014567812904716,0.00070103991311044,0.033231005072594]],[[0.065470419824123,-0.043482411652803,-0.058688364923],[0.0023266368079931,0.017945345491171,0.0083869332447648],[0.044920369982719,0.071041338145733,-0.017254421487451]],[[0.059394765645266,0.0085620414465666,-0.0080932686105371],[-0.01718975417316,0.052622254937887,0.030653106048703],[-0.013327651657164,0.027212254703045,0.0076559060253203]],[[-0.071885854005814,0.00078211043728516,-0.042898979038],[-0.01346078235656,0.015940602868795,0.004777449183166],[-0.054136838763952,0.057243663817644,-0.027956049889326]],[[0.014832977205515,-0.057766512036324,0.065200164914131],[-0.084853999316692,0.033346265554428,-0.048897463828325],[0.033996969461441,-0.016962137073278,-0.043014243245125]],[[-0.046120721846819,-0.10356777906418,0.024246765300632],[0.096278473734856,0.0049101077020168,0.0031640008091927],[-0.043370436877012,-0.013196850195527,-0.017200153321028]],[[-0.012288072146475,-0.051302675157785,-0.037201151251793],[0.016767915338278,0.0086169876158237,-0.0245216563344],[-0.02573000639677,-0.082312040030956,-0.016869047656655]],[[-0.023858496919274,-0.003566459286958,0.0045206863433123],[0.073725797235966,-0.016072332859039,0.0090396907180548],[0.018032228574157,0.025662340223789,0.010609242133796]],[[-0.014122559688985,-0.042912390083075,0.028155703097582],[0.0070459260605276,-0.049725819379091,0.0045870542526245],[0.034110579639673,-0.034876555204391,0.1020340770483]],[[0.076909065246582,0.046941623091698,0.058769516646862],[0.0096912533044815,-0.047511678189039,-0.010687456466258],[-0.036360539495945,-0.0012179751647636,0.055722795426846]],[[0.059041395783424,0.028405331075191,-0.039116397500038],[-0.013512765057385,-0.01521133352071,-0.088669016957283],[0.013676883652806,-0.022308887913823,-0.035150747746229]],[[-0.058318946510553,0.080643460154533,-0.0065618441440165],[0.085877276957035,-0.015206005424261,-0.026758603751659],[-0.050269562751055,0.0099582951515913,-0.016908967867494]],[[0.0029460261575878,-0.0051595056429505,-0.10739979147911],[-0.063123099505901,-0.045744903385639,0.017453404143453],[0.039014827460051,0.058373063802719,-0.033854484558105]],[[0.032333094626665,0.0026167382020503,0.0010992739116773],[0.053583901375532,0.0079649956896901,-0.0091771278530359],[-0.05903659388423,-0.0021815192885697,-0.098077513277531]],[[0.018696026876569,0.011177589185536,-0.055385384708643],[0.042467921972275,-0.029971294105053,-0.035339668393135],[0.0404042750597,0.0037179014179856,0.024431198835373]],[[-0.046269223093987,-0.028593668714166,-0.021670624613762],[0.022886849939823,-0.052976746112108,0.013627018779516],[-0.024084124714136,-0.0048757153563201,-0.079113259911537]],[[-0.056362014263868,0.0019675677176565,0.033835105597973],[0.045532073825598,-0.043530941009521,0.028283106163144],[0.068139269948006,0.037694841623306,0.031018720939755]],[[-0.00090381584595889,-0.056083269417286,0.0022797470446676],[0.024807773530483,-0.032014228403568,0.093687459826469],[0.080171138048172,0.0066368440166116,0.0122443260625]],[[-0.034522268921137,-0.01541739422828,0.1187865883112],[0.012897492386401,-0.034881826490164,0.027340464293957],[0.11289997398853,0.062997885048389,0.058935165405273]],[[-0.0070295515470207,-0.021890444681048,0.063177421689034],[0.05615845695138,-0.013576736673713,0.014043999835849],[0.015910089015961,-0.046741232275963,0.00053265801398084]],[[-0.01962523534894,0.099169030785561,0.031079569831491],[0.049415785819292,0.00053839053725824,0.0048831459134817],[-0.027706110849977,-0.059169087558985,0.005554667674005]],[[0.031954444944859,0.056413307785988,0.041994724422693],[0.085271373391151,0.0030752401798964,0.060788251459599],[0.050250023603439,0.029285619035363,0.01126769091934]],[[-0.035821460187435,0.025343095883727,-0.0013104055542499],[0.016460526734591,0.032697718590498,-0.024449784308672],[0.011759746819735,0.056221473962069,-0.057544454932213]],[[0.10620549321175,-0.025831766426563,0.037424713373184],[-0.048027157783508,0.015815991908312,-0.025076581165195],[-0.062841072678566,-0.016226634383202,0.10833466798067]],[[0.027235589921474,-0.044113397598267,-0.014227870851755],[-0.0012181325582787,-0.0028481995686889,0.011576787568629],[-0.04072055593133,0.12945683300495,0.061992395669222]],[[-0.12861306965351,-0.073148369789124,0.063834995031357],[0.046302564442158,-0.049942817538977,-0.066062621772289],[-0.022224862128496,0.026191050186753,-0.04262675344944]],[[0.069251358509064,0.029446503147483,-0.0059046377427876],[0.0084071271121502,0.030326515436172,0.065202064812183],[0.023397395387292,0.031514294445515,0.0087592946365476]],[[-0.012044771574438,0.07614516466856,0.050256963819265],[-0.0093633588403463,0.041962668299675,0.037348046898842],[0.054209016263485,0.0032298828009516,0.036346230655909]],[[0.029453970491886,0.06246430426836,0.0070399320684373],[-0.036227356642485,0.052972171455622,0.021202376112342],[-0.083163939416409,-0.035804729908705,0.026709159836173]],[[0.054131925106049,0.088241197168827,0.026141110807657],[0.0050404639914632,0.016913004219532,-0.038292232900858],[-0.035562567412853,0.064408704638481,-0.097509987652302]],[[0.010684729553759,-0.034433107823133,0.050377320498228],[0.0789395570755,0.030192041769624,-0.056320384144783],[-0.022968258708715,-0.074257537722588,0.012629737146199]],[[-0.074957594275475,0.014613878913224,0.054836422204971],[-0.030566604807973,-0.0010626198491082,-0.017368782311678],[-0.067799285054207,-0.0096939317882061,0.034121882170439]],[[0.010821038857102,0.009272669441998,0.0038984129205346],[0.026620263233781,0.02533726207912,-0.061731576919556],[0.061762612313032,0.022177409380674,0.0194684676826]],[[0.020967874675989,-0.01056229416281,0.057054329663515],[0.020110415294766,0.0010604999260977,-0.040152229368687],[-0.044530928134918,-0.041730623692274,0.073550224304199]],[[0.011179198510945,0.040077533572912,0.029051741585135],[0.058475472033024,-0.0015783075941727,0.035288780927658],[-0.041821375489235,-0.036107413470745,0.016506001353264]],[[0.036374639719725,-0.046965219080448,0.032275892794132],[0.094424568116665,-0.039016101509333,-0.035204757004976],[0.04814288020134,-0.047525212168694,-0.079997420310974]],[[-0.032947178930044,-0.0040920213796198,-0.084629289805889],[-0.021914849057794,0.00033858031383716,0.023244630545378],[0.0024007365573198,-0.071365304291248,0.020739378407598]],[[0.043783146888018,-0.0078401369974017,0.038680609315634],[-0.034288939088583,-0.020876603201032,0.012039750814438],[0.0034308158792555,0.062593176960945,0.079927608370781]],[[-0.071716994047165,-0.013235195539892,-0.0082920864224434],[0.01202691718936,-0.012762757949531,0.067301489412785],[0.06382892280817,0.094942405819893,0.025259535759687]],[[0.002701589372009,0.028286922723055,0.024505004286766],[-0.009125204756856,-0.018308695405722,0.0086116530001163],[-0.015522663481534,0.021109061315656,-0.021282374858856]],[[0.036253798753023,-0.043703556060791,-0.0061451997607946],[0.017197733744979,0.0011438254732639,-0.041832026094198],[0.040493831038475,0.10940279811621,0.082423709332943]],[[0.087812125682831,0.0052255024202168,-0.056482426822186],[-0.024814458563924,-0.043039117008448,-0.01077947486192],[-0.0048274411819875,0.043562445789576,-0.0088099511340261]],[[0.060472019016743,-0.082286857068539,0.016720674932003],[-0.052749678492546,-0.042760789394379,0.063625611364841],[0.024691330268979,0.0063468720763922,-0.024688728153706]],[[0.078765340149403,0.11362817138433,0.04794255644083],[0.013229234144092,0.0031829935032874,-0.012409348040819],[-0.021332964301109,-0.079072907567024,-0.033754363656044]],[[0.0096638649702072,-0.041976053267717,0.030793910846114],[0.10264302045107,-0.01408332772553,0.00030020179110579],[0.057944383472204,0.11244211345911,-0.0093641132116318]],[[-0.051723394542933,0.045126531273127,-0.086052797734737],[-0.083491943776608,-0.026439951732755,0.041734632104635],[0.01694893091917,0.017264598980546,0.0099551323801279]],[[-0.057686138898134,0.064445085823536,0.018278911709785],[-0.035713311284781,0.062638111412525,0.0034641390666366],[0.01413628552109,-0.0085377655923367,-0.065069481730461]],[[0.031194448471069,0.025234071537852,0.064350560307503],[0.083331480622292,-0.027285121381283,0.034132473170757],[-0.046458408236504,0.010641322471201,-0.015949374064803]],[[0.0022404447663575,-0.058149088174105,-0.025011667981744],[0.00052975787548348,0.0366021245718,0.039465334266424],[0.0650819465518,0.088244572281837,0.038672082126141]],[[-0.07543507963419,0.04698621481657,-0.059390231966972],[0.010090124793351,-0.043780487030745,-0.0057314783334732],[0.071200966835022,0.03053716942668,0.0710808634758]],[[-0.056624703109264,-0.016389649361372,-0.041273005306721],[0.0066060530953109,0.0024604075588286,-0.085834056138992],[0.018729694187641,-0.029952459037304,-0.073593102395535]],[[0.0018483749590814,-0.04328516125679,0.021240690723062],[0.00036534725222737,7.3760835221037e-05,-0.027244664728642],[-0.01927656494081,0.021479306742549,0.046434916555882]],[[0.040853682905436,-0.03280683234334,-0.029600551351905],[-0.018381269648671,0.034546609967947,0.039745066314936],[0.0040912344120443,-0.049253012984991,-0.054401643574238]],[[0.065519526600838,-0.012827846221626,-0.016606071963906],[0.010517636314034,0.004898973274976,0.045770980417728],[0.008145147934556,-0.02268054895103,0.071383140981197]],[[-0.012861615978181,0.007276261691004,0.00060547195607796],[-0.052824530750513,-0.074478723108768,-0.0093880342319608],[0.021679185330868,-0.036176532506943,0.04884784296155]],[[-0.0023290656972677,0.082232028245926,-0.059495590627193],[-0.038779284805059,0.042333003133535,-0.029209200292826],[0.064005069434643,0.0079203136265278,0.11618370562792]],[[0.063443034887314,0.02669813670218,0.056773651391268],[-0.065448947250843,-0.017869502305984,-0.0047036516480148],[0.0043211448937654,-0.056963808834553,0.036530081182718]],[[0.072108365595341,0.047357358038425,-0.045419070869684],[0.0070575773715973,-0.042862616479397,0.040516000241041],[0.043666355311871,0.096646547317505,-0.11299297958612]],[[-0.0010454815346748,-0.04091639816761,0.050723019987345],[0.022194791585207,0.026564141735435,-0.0023216663394123],[0.015053580515087,0.10501693934202,0.078930355608463]],[[-0.027400201186538,-0.014807174913585,0.014190231449902],[0.031655639410019,0.00059894111473113,0.027503315359354],[-0.011194158345461,-0.078485354781151,-0.031535014510155]],[[-0.02057876996696,0.082566171884537,-0.14391228556633],[-0.03285550698638,0.010949151590466,-0.0080928606912494],[-0.014407939277589,-0.10742349177599,-0.0058979643508792]],[[0.01068514958024,-0.043508537113667,0.077327072620392],[-0.005416358821094,-0.025250233709812,-0.0069124461151659],[-0.10216631740332,0.062037643045187,-0.064062878489494]],[[0.093005485832691,0.010576112195849,-0.0087356977164745],[-0.053144387900829,-0.045689731836319,0.08830551803112],[-0.053254541009665,0.016531294211745,-0.0023256372660398]],[[0.017028853297234,-0.0087475329637527,0.013006280176342],[-0.043124098330736,0.0034589592833072,-0.026339868083596],[0.090970754623413,-0.035355679690838,-0.019019132480025]],[[-0.07720672339201,0.010234492830932,-0.023511908948421],[0.022522808983922,0.021185265854001,0.010520280338824],[-0.0010973353637382,-0.0076825651340187,0.013585861772299]],[[0.037807889282703,0.0091161457821727,0.0010868215467781],[0.062849380075932,0.041984874755144,0.0079074734821916],[0.0160380769521,0.078118555247784,-0.034101486206055]],[[0.0089335674419999,-0.021007152274251,-0.036114290356636],[0.101702041924,0.07691053301096,-0.01990394666791],[0.042258437722921,-0.034802734851837,-0.01087992079556]],[[0.010870814323425,-0.0090801855549216,0.056319955736399],[-0.034650798887014,0.012710294686258,0.022479888051748],[0.051972717046738,0.060765039175749,-0.012663104571402]],[[-0.01200114749372,-0.0090164076536894,-0.055966258049011],[0.03368877992034,-0.050170470029116,-0.0052129933610559],[-0.028381766751409,-0.00056566938292235,0.032343097031116]],[[-0.031955756247044,-0.042015265673399,0.034478504210711],[-0.010974623262882,-0.038517717272043,-0.039071727544069],[0.039463385939598,-0.024417208507657,0.009761530905962]],[[0.042761396616697,-0.085629902780056,0.022074012085795],[0.029250655323267,-0.069064281880856,0.025570271536708],[-0.0092924982309341,-0.0015681547811255,-0.055212568491697]],[[0.078024052083492,0.02262769266963,-0.033181361854076],[-0.04083551838994,0.030999014154077,0.063076250255108],[0.026391530409455,-0.038982454687357,-0.0360092446208]],[[-0.044304687529802,-0.031056003645062,0.04652364552021],[0.010931540280581,0.041621468961239,-0.0022155803162605],[-0.075504034757614,-0.010021202266216,0.00028473327984102]],[[0.021085811778903,-0.10184541344643,0.034561902284622],[-0.028024649247527,-0.065161243081093,0.0082794558256865],[-0.017369022592902,-0.013530986383557,0.0059452946297824]],[[0.025542667135596,-0.068759568035603,-0.049969881772995],[0.046594265848398,0.031959757208824,-0.010527500882745],[-0.047452196478844,0.026719512417912,-0.030970500782132]],[[0.024857031181455,0.016842894256115,0.005334151443094],[-0.0014763883082196,0.0064413431100547,0.063961304724216],[0.0059211906045675,-0.012260485440493,0.027983071282506]],[[0.054675813764334,0.0063226330094039,-0.062209121882915],[0.0090808337554336,0.058619599789381,-0.028277320787311],[-0.061355717480183,0.024926334619522,-0.03083785623312]],[[0.084528930485249,-0.067000582814217,0.042834617197514],[0.006506519857794,0.0010360993910581,0.076544634997845],[0.041664645075798,0.00099589256569743,-0.035292252898216]],[[0.013308858498931,0.013398019596934,0.018251530826092],[-0.062791682779789,0.045046623796225,0.0084080686792731],[-0.036481309682131,-0.036603223532438,-0.038205899298191]],[[-0.014601053670049,-0.0042010708712041,-0.012348380871117],[0.03831746801734,0.010906603187323,-0.061775051057339],[0.031138176098466,0.0068487729877234,-0.0063294293358922]],[[0.071080803871155,0.059139136224985,0.014177531935275],[0.06315216422081,0.027404556050897,0.035735175013542],[0.097230225801468,-0.012620175257325,-0.031235050410032]],[[0.063445970416069,-0.058722324669361,0.090792410075665],[-0.047848269343376,0.0085653038695455,0.0074955495074391],[-0.098093912005424,-0.024684684351087,0.011646728031337]],[[0.0300257448107,-0.018856965005398,0.01429092977196],[0.023529380559921,-0.058013830333948,0.016689339652658],[0.012570171616971,-0.027940506115556,-0.065127283334732]],[[0.012551579624414,-0.021178280934691,-0.037138633430004],[0.0043932190164924,0.064012289047241,0.0066062668338418],[0.015682781115174,0.059855852276087,0.02080967463553]],[[-0.055494200438261,-0.023936418816447,0.037254840135574],[-0.021786300465465,-0.015105213969946,-0.056036729365587],[0.034965272992849,0.037571780383587,-0.10945194959641]],[[0.0026865093968809,-0.056158892810345,-0.069346889853477],[0.0012488558422774,0.046714406460524,-0.084953628480434],[0.11236610263586,-0.014955434948206,-0.030226653441787]],[[-0.0086785731837153,-0.081488542258739,0.060985464602709],[0.038139261305332,-0.031477864831686,-0.022777449339628],[-0.010215366259217,-0.067295908927917,-0.01822454854846]],[[-0.10453677922487,-0.02448009327054,0.014857438392937],[-0.0041086063720286,0.024916587397456,0.071454770863056],[0.080294393002987,-0.018975511193275,0.11365344375372]],[[0.0071263369172812,0.039214879274368,-0.0043006697669625],[0.031002040952444,-0.016356790438294,0.079674862325191],[0.012741016224027,-0.035986050963402,0.016366090625525]],[[-0.020691651850939,-0.0016225184081122,0.10174652934074],[0.00084889901336282,0.0087990686297417,0.014761102385819],[-0.0037550558336079,-0.00062508310656995,0.062283061444759]],[[-0.011773255653679,0.080878384411335,-0.12425199896097],[0.038822036236525,-0.02569773979485,0.029374685138464],[0.016252649948001,0.052447102963924,-0.092932023108006]],[[0.025070773437619,0.037441670894623,-0.095886766910553],[-0.019103912636638,-0.061424471437931,0.095076248049736],[0.057300489395857,0.055969409644604,0.038285791873932]],[[0.049146939069033,-0.041295446455479,-0.03825281187892],[0.021889561787248,0.026621848344803,-0.015622068196535],[0.097951263189316,0.039746381342411,0.04130445048213]],[[-0.022828450426459,-0.026907924562693,0.023606143891811],[0.045745439827442,-0.035358976572752,-0.039764113724232],[0.024461397901177,0.031115412712097,-0.003673397237435]],[[0.077511064708233,0.015148253180087,0.016230536624789],[-0.042952161282301,-0.083818972110748,0.038793995976448],[-0.0068171042948961,0.029399167746305,0.039894528687]],[[0.021585024893284,0.056841563433409,-0.088062532246113],[-0.01326855737716,0.0022217414807528,-0.048493400216103],[0.0053831404075027,0.058926913887262,-0.044616308063269]],[[0.031545527279377,-0.03452805429697,0.0031532077118754],[0.018109805881977,-0.076370194554329,-0.016595309600234],[0.058489840477705,-0.048897329717875,0.040340732783079]],[[-0.056614551693201,-0.020324612036347,-0.0012886656913906],[0.029880106449127,0.033705815672874,0.057990211993456],[0.014678093604743,0.021301954984665,-0.045477621257305]],[[-0.013136171735823,0.031132183969021,-0.00082969997311011],[-0.021720131859183,0.048977579921484,0.013729099184275],[-0.011041671968997,-0.012637826614082,-0.079845055937767]],[[0.012110291048884,0.057839497923851,-0.022002840414643],[0.067364886403084,0.09178002178669,0.020885279402137],[-0.032168958336115,-0.032800439745188,-0.092961221933365]],[[0.0088379280641675,-0.0559699870646,0.10891017317772],[0.022179871797562,0.025001039728522,-0.014477105811238],[-0.050827492028475,0.080837465822697,0.057315915822983]],[[0.066231593489647,0.014567465521395,0.041210107505322],[0.05220029130578,-0.020906656980515,0.053553771227598],[-0.0020495608914644,-0.054874423891306,-0.044297985732555]],[[0.0029450140427798,-0.054430514574051,-0.044207133352757],[-0.040444191545248,0.065383091568947,0.0028582806698978],[0.091307424008846,0.059305276721716,0.013410686515272]],[[0.024790031835437,0.0378343090415,0.0098906187340617],[-0.045867424458265,0.0051335808821023,0.025522571057081],[-0.019639134407043,0.079858869314194,-0.044114295393229]],[[0.022471398115158,-0.047625567764044,-0.059372298419476],[-0.062460023909807,0.045914635062218,0.034484315663576],[-0.0174112431705,0.015337548218668,0.039781708270311]],[[-0.0045589474029839,-0.0023274598643184,0.044907074421644],[0.12501156330109,-0.021858233958483,0.0084930816665292],[0.041398394852877,-0.056711360812187,-0.032791182398796]],[[0.061860598623753,0.0045767133124173,-0.0078149996697903],[0.041817028075457,0.037094291299582,-0.014399372972548],[0.030952252447605,0.042766537517309,-0.01387900300324]],[[-0.037032172083855,0.037960827350616,0.0042335242033005],[-0.043829172849655,0.0033587601501495,-0.051874615252018],[-0.0062045361846685,0.0042951591312885,0.011485978960991]],[[0.082735352218151,0.040700744837523,-0.040100231766701],[0.011666776612401,0.05806889384985,0.030389502644539],[0.030615506693721,0.12038134783506,-0.0077103460207582]],[[0.022233761847019,0.062600806355476,-0.10289788246155],[0.014908275566995,0.044581763446331,-0.012262064963579],[0.047411900013685,0.096207782626152,-0.0065342960879207]],[[0.020901013165712,-0.024164685979486,0.091356553137302],[0.0010216219816357,-0.0030402436386794,0.029405424371362],[-0.04382535815239,-0.039671409875154,0.071466237306595]],[[-0.036012478172779,0.087356641888618,0.020289039239287],[0.021580591797829,0.02077023871243,0.011385266669095],[-0.025790430605412,-0.035691514611244,-0.047447208315134]],[[0.010147100314498,-0.026165260002017,-0.014080294407904],[0.02965703047812,0.060519244521856,-0.069178462028503],[-0.058877486735582,0.047260951250792,0.011822585947812]],[[0.012890547513962,5.0419093895471e-05,-0.022829093039036],[-0.03591400757432,-0.047281175851822,-0.020356072112918],[-0.04308420047164,-0.046518370509148,0.020353727042675]],[[0.05876337736845,-0.0074867331422865,0.013545024208724],[-0.019895259290934,0.049607448279858,0.039456263184547],[-0.031995613127947,-0.035711139440536,0.0385817065835]],[[0.071980968117714,-0.10187932103872,0.011089550331235],[0.012560497969389,-0.093551851809025,0.04202863946557],[0.071344919502735,0.05540281906724,0.0832284912467]],[[-0.025537366047502,-0.0073565682396293,-0.017942612990737],[-0.03888826072216,0.0083087850362062,0.017500517889857],[-0.017787622287869,-0.02040433511138,-0.036187581717968]],[[0.045919392257929,-0.010199623182416,0.011245575733483],[0.042544655501842,0.052012406289577,0.029340386390686],[-0.023229040205479,0.07221832126379,-0.046178262680769]],[[0.076767466962337,0.070078819990158,0.034487433731556],[0.051543433219194,0.067483380436897,0.013647115789354],[-0.012794941663742,-0.011427332647145,0.03045267239213]],[[0.063573278486729,0.020916013047099,0.022011335939169],[0.073414392769337,-0.014942797832191,0.050285566598177],[-0.010900671593845,-0.053704217076302,-0.066105753183365]],[[-0.045281372964382,0.069669306278229,-0.0060143242590129],[-0.060097273439169,0.1029337644577,0.024140207096934],[0.0059867738746107,0.00045945402234793,0.054328564554453]],[[0.068740211427212,-0.02438884600997,0.004519562702626],[-0.014805121347308,0.027948701754212,-0.095767930150032],[-0.019665490835905,-0.018536224961281,-0.041241988539696]],[[0.059681225568056,0.047670926898718,0.0041697430424392],[0.023454485461116,0.061465661972761,-0.078647129237652],[0.066029742360115,-0.031051620841026,0.024356365203857]],[[-0.0046744821593165,0.00020851554290857,0.073608294129372],[-0.0056927255354822,-0.016483148559928,0.010449314489961],[-0.0033734131138772,-0.11932021379471,0.0011085299775004]],[[0.032907459884882,-0.040634784847498,0.060013480484486],[-0.023893451318145,-0.0037624610122293,0.053069185465574],[-0.00022436594008468,-0.060879424214363,0.0038691938389093]],[[0.022331219166517,-0.0084327021613717,-0.00056637491798028],[-0.074708424508572,0.024132618680596,0.029053278267384],[0.0022350077051669,0.014757620170712,0.07348857820034]]],[[[0.062163688242435,0.12886518239975,-0.050131294876337],[-0.029022125527263,0.00066744559444487,0.11489766836166],[-0.093251250684261,-0.0098314601927996,0.073736757040024]],[[0.017239440232515,0.047114830464125,0.018881818279624],[0.037909533828497,0.15522669255733,0.085487224161625],[-0.10175961256027,-0.17917431890965,0.0024350208695978]],[[0.0085993409156799,0.27532291412354,-0.19567000865936],[-0.070372380316257,-0.0095686484128237,0.031638465821743],[-0.010624784976244,-0.15169584751129,-0.12501008808613]],[[0.01754386536777,0.0089232549071312,-0.041855711489916],[-0.064087383449078,0.12697666883469,-0.052956197410822],[-0.17813275754452,0.016127116978168,0.13116984069347]],[[-0.010446668602526,-0.028311017900705,-0.055944539606571],[-0.012579489499331,0.050255872309208,-0.01040839497],[0.076058492064476,0.12006343901157,-0.068284206092358]],[[-0.026087628677487,0.053785771131516,-0.042614616453648],[-0.0028313605580479,0.0065050642006099,0.083516307175159],[0.10986037552357,-0.031571332365274,0.010340506210923]],[[-0.0061840433627367,0.045968476682901,0.062902189791203],[0.10753095895052,0.040006026625633,0.020183043554425],[-0.021075170487165,-0.066770955920219,-0.14983758330345]],[[0.046200294047594,0.076275803148746,0.13053153455257],[0.023187736049294,0.050712946802378,-0.0022521836217493],[-0.07246571034193,-0.043231498450041,-0.1031878888607]],[[0.012011575512588,-0.044643107801676,-0.022411709651351],[-0.13131374120712,-0.019276173785329,0.14473493397236],[0.10146186500788,0.16270895302296,-0.23131261765957]],[[-0.018470728769898,0.066533818840981,-0.030361881479621],[-0.00065993901807815,-0.01145881600678,-0.10645314306021],[0.095330819487572,-0.21087516844273,-0.020338147878647]],[[0.026420589536428,0.085180506110191,0.22465972602367],[0.075954414904118,0.19833318889141,0.085450753569603],[-0.027588818222284,-0.15250483155251,-0.22048716247082]],[[0.093029692769051,0.15363639593124,0.11930280923843],[-0.064780130982399,-0.21188545227051,-0.042072221636772],[0.074126213788986,-0.061093762516975,0.097249314188957]],[[0.00031868592486717,0.18262325227261,0.09626654535532],[0.056300118565559,0.030262228101492,0.19482910633087],[0.011516575701535,0.11127410084009,0.26641201972961]],[[0.025497613474727,-0.17072845995426,-0.10480912029743],[0.0020278566516936,-0.19424432516098,-0.1286546587944],[0.044803138822317,-0.11285030096769,-0.010254462249577]],[[0.10472429543734,0.059402901679277,0.028503246605396],[0.013044287450612,-0.067234516143799,-0.0019906717352569],[-0.11515371501446,-0.023070590570569,0.025466373190284]],[[-0.026181662455201,-0.073083356022835,0.15128418803215],[-0.083194740116596,0.0049964301288128,0.1742201000452],[0.039138950407505,0.0071902638301253,0.073521696031094]],[[-0.032465200871229,0.075582146644592,0.0028045251965523],[-0.08516788482666,-0.11844208836555,-0.10168888419867],[0.0084859980270267,0.1323232203722,-0.0044920006766915]],[[-0.02748361043632,-0.057235054671764,0.01435571257025],[0.021135095506907,-0.027905678376555,0.096592411398888],[0.05227717757225,0.014659877866507,0.0076260310597718]],[[0.26132753491402,0.024998789653182,-0.020417667925358],[-0.010189203545451,-0.0043257027864456,-0.052690356969833],[-0.031721841543913,-0.064605139195919,0.14975443482399]],[[0.065065830945969,-0.093327313661575,-0.11672502011061],[0.027685051783919,-0.098218098282814,-0.153588950634],[0.15820376574993,0.078496620059013,-0.064647331833839]],[[-0.0057406262494624,0.011431249789894,0.050462812185287],[-0.02782205119729,-0.028085306286812,0.0087502710521221],[0.20076106488705,0.013434310443699,0.047599032521248]],[[-0.0080264052376151,0.019737031310797,0.028837790712714],[0.056878156960011,0.04186138138175,-0.017964139580727],[0.013987394981086,0.10006861388683,-0.18145786225796]],[[0.092177636921406,-0.089527279138565,-0.17210386693478],[-0.11963655054569,-0.02807879075408,-0.025296417996287],[0.016916818916798,0.16318720579147,0.099199682474136]],[[0.23005425930023,-0.002090374706313,0.057440955191851],[0.20276941359043,0.19125068187714,0.10234819352627],[-0.12395039200783,0.095380388200283,0.080482997000217]],[[0.037748638540506,-0.040992826223373,-0.018455429002643],[-0.028284270316362,0.050194445997477,-0.023119792342186],[0.049552571028471,0.06927390396595,0.03481724858284]],[[-0.006723424885422,-0.11414798349142,-0.04336067289114],[0.1008935123682,0.029489237815142,0.10607492923737],[0.031387336552143,0.08370652794838,0.033625584095716]],[[-0.043758399784565,0.052109140902758,-0.091441921889782],[0.029734745621681,-0.01510246284306,-0.039266511797905],[0.12033977359533,0.036578472703695,-0.099848754703999]],[[-0.01022242102772,0.06871322542429,-0.17203944921494],[-0.034380082041025,0.011238224804401,-0.055689666420221],[0.034303538501263,-0.20479515194893,0.038343042135239]],[[-0.042691700160503,0.046733908355236,0.084330178797245],[0.012048333883286,0.0068765860050917,0.018329469487071],[-0.038890585303307,0.012091090902686,-0.024332460016012]],[[0.040985401719809,0.062315460294485,0.0071831322275102],[0.065123423933983,0.07625675201416,-0.011725033633411],[0.10015435516834,0.070759661495686,-0.00092820916324854]],[[0.084745347499847,-0.091218523681164,-0.066665448248386],[0.080320857465267,0.011298797093332,0.13033419847488],[-0.059872984886169,0.039592713117599,0.021303575485945]],[[-0.045886132866144,-0.075469680130482,0.03145020082593],[-0.090082861483097,0.0084748156368732,0.059874668717384],[0.034155450761318,0.03574201837182,0.055741380900145]],[[-0.09571735560894,-0.053038083016872,-0.014877204783261],[-0.11571235954762,-0.0020077817607671,0.050275914371014],[-0.013739131391048,0.06253719329834,0.091502279043198]],[[0.0076329219155014,-0.040358364582062,0.048832502216101],[0.059549022465944,0.094896800816059,0.084170013666153],[0.1386251449585,0.016272025182843,-0.015044132247567]],[[0.02619238384068,0.030651655048132,0.12470828741789],[-0.0071364678442478,-0.058894347399473,0.086110472679138],[-0.033744636923075,0.095973968505859,0.050577029585838]],[[0.09012883156538,0.073749862611294,-0.072604931890965],[0.0019349296344444,0.083475843071938,-0.082951553165913],[0.18562884628773,0.067965567111969,0.030767697840929]],[[-0.13724271953106,0.022678900510073,0.071675881743431],[0.028266275301576,-0.071596369147301,-0.031512927263975],[-0.094762422144413,0.072172246873379,-0.051049333065748]],[[0.017159936949611,-0.034692939370871,0.06358414888382],[-0.0050383098423481,0.1477038860321,0.083335101604462],[-0.043140068650246,0.071204140782356,0.026693819090724]],[[0.035613283514977,0.092965640127659,0.026833597570658],[0.10306909680367,0.065224125981331,0.056346576660872],[-0.27646023035049,-0.067205838859081,0.12213873118162]],[[-0.069635160267353,-0.054343096911907,0.043960504233837],[-0.047632116824389,0.010267063044012,-0.00013884043437429],[0.041015062481165,0.03886467218399,-0.044844172894955]],[[-0.076948948204517,0.11750736087561,0.011754857376218],[-0.0033348530996591,-0.0059401844628155,-0.05515893548727],[0.13866658508778,-0.085498884320259,-0.084591843187809]],[[0.040534038096666,-0.14204372465611,-0.11936739087105],[0.11184592545033,0.0025690023321658,-0.11186284571886],[-0.11122711747885,0.021123893558979,-0.028348580002785]],[[0.077693909406662,0.081717684864998,0.084333322942257],[0.04988294839859,0.029085334390402,0.057012636214495],[0.083742558956146,0.13631874322891,-0.11133212596178]],[[-0.027942420914769,0.040333416312933,0.032270468771458],[0.10039801895618,0.076639033854008,0.12195633351803],[0.14058618247509,0.18277576565742,0.058481071144342]],[[-0.14154388010502,-0.06730230897665,-0.058163315057755],[-0.19227087497711,-0.028968585655093,0.10221245139837],[0.071639984846115,-0.017886586487293,0.11674483865499]],[[-0.21964448690414,-0.014740855433047,0.050956565886736],[-0.12791596353054,0.033488154411316,0.022223820909858],[0.0035177390091121,0.062785349786282,0.21885976195335]],[[-0.047433812171221,0.06789606064558,-0.08434833586216],[0.026657197624445,0.12094724178314,-0.33722698688507],[0.218835324049,-0.013965680263937,-0.2636262178421]],[[-0.029954493045807,0.069286279380322,0.20985379815102],[0.14043065905571,0.12197498977184,-0.047961018979549],[-0.060320321470499,0.14561492204666,0.11106579750776]],[[0.035718992352486,0.028687322512269,-0.05281899869442],[-0.089861124753952,-0.031418431550264,-0.011751607060432],[-0.18487869203091,-0.03897812217474,0.052921626716852]],[[-0.024898048490286,0.10538227111101,0.017029022797942],[0.015635306015611,0.08813814073801,-0.062289737164974],[0.10514938086271,0.059035919606686,-0.020780757069588]],[[0.099867910146713,0.11799537390471,0.022211886942387],[-0.046410657465458,0.068213872611523,0.045789916068316],[-0.20366477966309,-0.092352747917175,0.097534291446209]],[[0.075969278812408,-0.022230833768845,0.12483485043049],[0.044951066374779,0.017200872302055,0.069566480815411],[-0.11291429400444,-0.013496900908649,0.012865913100541]],[[0.13986441493034,0.093742586672306,-0.0108703058213],[0.10188636183739,0.08032750338316,0.075896896421909],[0.092701204121113,0.16756026446819,0.12631942331791]],[[-0.00070124992635101,-0.020243559032679,-0.14032301306725],[0.15520413219929,-0.057068690657616,0.0058943815529346],[-0.024947378784418,-0.079850010573864,-0.11506386846304]],[[-0.098322443664074,-0.14305947721004,-0.056656364351511],[0.096710793673992,0.11867656558752,-0.03294513374567],[0.27178508043289,-0.020624905824661,0.054112147539854]],[[0.0044092987664044,0.050492264330387,0.019076470285654],[0.13179241120815,-0.02368620224297,0.072329066693783],[0.18206033110619,-0.16114012897015,0.10213243961334]],[[0.012331304140389,-0.047721583396196,-0.03710213303566],[-0.038999646902084,0.016308031976223,0.12814480066299],[0.075396001338959,-0.043370135128498,-0.095575124025345]],[[0.011218950152397,-0.0088622774928808,0.038604207336903],[0.072998978197575,0.028180565685034,-0.0040261750109494],[0.11809914559126,0.1824092566967,0.10477483272552]],[[0.033291082829237,0.086965017020702,0.036285687237978],[0.10038416832685,-0.048352815210819,-0.089486107230186],[0.015805717557669,-0.14144200086594,0.048416811972857]],[[0.14332517981529,0.03526121750474,0.010170699097216],[0.12429214268923,0.10038757324219,-0.023363653570414],[-0.031087355688214,0.049110691994429,-0.016801524907351]],[[0.059968672692776,-0.0064036096446216,0.025383066385984],[0.022894168272614,-0.0015212806174532,0.080557808279991],[-0.12722903490067,-0.095148757100105,0.01461950596422]],[[-0.086861670017242,-0.0011368258856237,0.081555522978306],[0.056207064539194,0.05226393789053,0.023414665833116],[0.072184696793556,-0.039872076362371,-0.087125957012177]],[[0.051284544169903,0.11137467622757,0.075553834438324],[-0.28830778598785,-0.03679321333766,0.052601967006922],[0.091433465480804,-0.010494052432477,0.024414338171482]],[[0.1186169013381,-0.12417128682137,-0.12330008298159],[-0.11868239939213,0.040080968290567,-0.00056561187375337],[0.011338961310685,-0.040582656860352,0.0090335626155138]],[[0.07693900167942,0.0012620468623936,-0.058055277913809],[0.019102646037936,0.013674536719918,0.014339506626129],[-0.023581508547068,-0.067921929061413,0.048328038305044]],[[0.22436444461346,-0.07666452229023,-0.26944035291672],[0.057160913944244,-0.10472817718983,0.077041640877724],[-0.026874361559749,0.076532833278179,0.16808091104031]],[[-0.060084264725447,0.14742268621922,0.10864645242691],[0.15648593008518,0.095784246921539,0.024974765256047],[-0.01902280561626,-0.1156889051199,0.019056780263782]],[[0.0382912568748,-0.17953787744045,-0.028043262660503],[0.19209390878677,-0.061078786849976,-0.079527512192726],[-0.050601683557034,0.21346388757229,0.0010242690332234]],[[0.02944946847856,0.11879394948483,-0.019321199506521],[0.058819461613894,0.15930926799774,-0.18282355368137],[0.028771713376045,0.1620704382658,-0.29097852110863]],[[0.01099228579551,0.18345281481743,0.036114603281021],[0.021288927644491,0.074394859373569,-0.0066041755490005],[-0.0075850682333112,-0.17680376768112,-0.029558945447206]],[[-0.051175434142351,0.030966782942414,0.024613501504064],[-0.069431409239769,-0.11410607397556,-0.11575699597597],[0.0074329422786832,0.034129317849874,-0.021579157561064]],[[-0.132672265172,0.12443881481886,0.17633011937141],[0.075420469045639,0.0038009202107787,-0.099874563515186],[0.057709712535143,-0.06865406036377,-0.059804543852806]],[[0.040401201695204,0.079993911087513,0.028948694467545],[-0.18046310544014,0.0034919357858598,0.10757809877396],[-0.26905289292336,0.034151453524828,0.0727549046278]],[[-0.045547053217888,-2.7147991204401e-05,0.0036460948176682],[-0.074715338647366,0.028563048690557,0.015119296498597],[-0.025868313387036,-0.13271816074848,-0.063816651701927]],[[-0.10192481428385,-0.17413291335106,0.042249690741301],[0.05709657818079,-0.0017813334707171,-0.011628245003521],[-0.00049186451360583,0.1799273788929,-0.031554773449898]],[[0.033729951828718,0.035090126097202,-0.050844378769398],[0.051950614899397,0.13858136534691,-0.26987910270691],[0.020770901814103,0.076861672103405,-0.23493249714375]],[[0.00765246944502,0.1588306427002,-0.033206507563591],[0.031873047351837,0.064682960510254,0.13886757194996],[-0.037067219614983,-0.13343551754951,0.082947336137295]],[[-0.0455252379179,-0.084922485053539,-0.10229267179966],[-0.030003843829036,-0.14443093538284,0.029579738155007],[0.091980561614037,-0.05105522274971,0.068687200546265]],[[0.1205178052187,0.1060795634985,0.10524664074183],[0.13067957758904,0.10387637466192,-0.072449810802937],[-0.13154564797878,-0.13719575107098,-0.063273504376411]],[[-0.2039583325386,0.018237320706248,0.16428804397583],[0.091081738471985,-0.1091567799449,-0.0074178744107485],[0.11429024487734,0.073554970324039,-0.16121132671833]],[[0.068822056055069,-0.034796264022589,-0.083904512226582],[0.013365909457207,-0.10276756435633,-0.012617258355021],[0.19966742396355,0.091820187866688,0.096311956644058]],[[0.0012837668182328,0.13404062390327,0.075180202722549],[-0.019763685762882,0.040337756276131,0.063024625182152],[-0.014998145401478,-0.11246364563704,0.035344149917364]],[[0.010455111972988,0.14810325205326,-0.012516357935965],[0.069845139980316,-0.072637178003788,0.0797039270401],[-0.0086002238094807,-0.16060681641102,0.041465453803539]],[[-0.077134378254414,-0.062824495136738,-0.032463349401951],[-0.0044581340625882,-0.096187219023705,-0.011346054263413],[-0.051175367087126,-0.16236920654774,0.04053595662117]],[[0.0054775178432465,0.14288249611855,0.10109341144562],[-0.0049218512140214,0.1555513292551,0.04648046195507],[0.047334428876638,0.039344731718302,0.0059464825317264]],[[-0.18213665485382,-0.19426797330379,-0.083246648311615],[-0.1126539260149,-0.16994033753872,-0.10481774061918],[0.14104615151882,0.15676392614841,0.11721409857273]],[[0.024198858067393,0.073792859911919,-0.016709960997105],[0.093699164688587,0.066976964473724,0.010863532312214],[0.088742591440678,0.1127066090703,-0.017063269391656]],[[0.041084703058004,-0.02662199921906,-0.024649566039443],[-0.0025007789954543,-0.09160503745079,-0.10032627731562],[-0.015190142206848,0.011273806914687,-0.089376516640186]],[[-0.13606849312782,-0.04344892129302,-0.029804592952132],[0.12070986628532,0.045740567147732,0.016001047566533],[0.18016701936722,-0.03194746747613,-0.11701985448599]],[[0.049020778387785,-0.19377072155476,-0.1542007625103],[-0.058906972408295,0.03873635455966,-0.078943319618702],[-0.041821431368589,0.065526276826859,0.0056483754888177]],[[0.063062213361263,-0.11429783701897,-0.20205807685852],[-0.07375418394804,0.11641599237919,0.091179884970188],[-0.045706581324339,-0.031119069084525,-0.058826811611652]],[[-0.02799111045897,-0.013073325157166,-0.15720202028751],[-0.19334311783314,-0.036113500595093,0.096902847290039],[0.14128664135933,-0.0581434071064,0.0037173461169004]],[[0.050788141787052,-0.041994951665401,0.16171969473362],[-0.048563495278358,0.0036257060710341,0.2266243994236],[-0.18400578200817,-0.077952615916729,0.13323853909969]],[[-0.19985121488571,-0.16117915511131,0.024394264444709],[0.11334221810102,0.19488874077797,0.046834923326969],[0.055098488926888,-0.094771936535835,-0.032778818160295]],[[0.19312812387943,-0.0090918028727174,-0.13980896770954],[0.050710257142782,-0.017056467011571,-0.069490671157837],[0.12706522643566,-0.060073133558035,-0.11086896061897]],[[-0.028096240013838,0.0049095610156655,0.25297731161118],[-0.051617536693811,0.036040961742401,0.074580289423466],[-0.13724502921104,0.085480757057667,-0.080387361347675]],[[0.033920723944902,0.11333180963993,0.087082520127296],[-0.10006905347109,0.14178289473057,0.031880415976048],[-0.18064294755459,-0.12730215489864,0.080886378884315]],[[0.16514348983765,0.049604024738073,-0.14582520723343],[-0.033997930586338,-0.012014069594443,0.080238610506058],[-0.044598165899515,-0.072827413678169,0.1075138002634]],[[-0.20985160768032,-0.035313244909048,-0.027224842458963],[0.00632139807567,0.043402846902609,-0.063131481409073],[0.065945543348789,0.013844921253622,-0.042833752930164]],[[0.016421681270003,0.033686336129904,0.015948748216033],[0.019081829115748,0.064763024449348,0.054421775043011],[-0.0086921593174338,0.087911292910576,0.15067906677723]],[[-0.029432212933898,-0.13844972848892,0.099011741578579],[-0.17666977643967,-0.14486794173717,0.098735503852367],[-0.195935562253,0.073385760188103,0.067780345678329]],[[-0.050840493291616,-0.015838531777263,-0.059874136000872],[-0.038443963974714,0.048375092446804,0.055178262293339],[0.0084119644016027,-0.0047087487764657,0.092998184263706]],[[0.03179894015193,0.15756686031818,-0.013661592267454],[-0.11010590195656,-0.049320891499519,-0.00081013649469241],[-0.13942708075047,-0.12350661307573,0.11995658278465]],[[-0.013394602574408,0.021090557798743,0.10962517559528],[0.040500156581402,-0.048363346606493,0.05953112617135],[-0.080733560025692,-0.14340478181839,0.079006232321262]],[[-0.068006440997124,-0.026899319142103,-0.09751283377409],[0.037999331951141,-0.080528929829597,0.041345350444317],[-0.080345489084721,0.10142443329096,0.054682675749063]],[[0.14232520759106,-0.03369077667594,-0.10489647090435],[-0.04376070946455,-0.20373837649822,-0.048589162528515],[-0.0086260735988617,-0.14481525123119,-0.046295404434204]],[[0.013133237138391,-0.0056445528753102,-0.099109016358852],[-0.1064261496067,-0.045655131340027,-0.034857749938965],[0.0024272319860756,0.21270968019962,0.048242755234241]],[[0.065719082951546,0.039379976689816,0.0063957679085433],[-0.023958599194884,0.0066635562106967,-0.091067016124725],[0.028977477923036,-0.11892329901457,-0.074326939880848]],[[-0.0059313913807273,-0.2730615735054,-0.0003720905224327],[0.036140058189631,0.029383108019829,0.11011371016502],[0.057303633540869,-0.032087724655867,-0.05454283580184]],[[-0.092369571328163,-0.063799880445004,-0.057350408285856],[-0.016780056059361,-0.01039332151413,0.12905333936214],[-0.036478087306023,0.19210444390774,0.18835240602493]],[[0.098840825259686,-0.0030150101520121,-0.0087187383323908],[0.030610911548138,0.018490804359317,-0.12685805559158],[-0.20408134162426,0.083857379853725,-0.073491804301739]],[[0.0078766169026494,-0.023065265268087,0.0052944631315768],[-0.043510027229786,-0.0080999527126551,0.054178811609745],[0.10171753913164,0.062333554029465,0.0025267170276493]],[[-0.0075986180454493,0.095962442457676,0.052502732723951],[-0.022125639021397,-0.028690123930573,-0.091149501502514],[0.17443585395813,0.013416394591331,-0.11659424751997]],[[0.097518354654312,-0.045791249722242,-0.11684656888247],[0.086170256137848,0.090986587107182,-0.020811723545194],[0.022594770416617,0.056641571223736,-0.046562511473894]],[[0.13446526229382,0.0060717510059476,-0.053913675248623],[-0.040182217955589,-0.027132846415043,-0.10865466296673],[-0.10606870055199,0.041824717074633,-0.12067369371653]],[[0.10504493862391,0.15413784980774,0.062285866588354],[-0.023096941411495,-0.12316133081913,-0.10781141370535],[0.011067041195929,0.0048266467638314,-0.10196126252413]],[[0.019154071807861,-0.051462180912495,-0.041403993964195],[0.046990305185318,0.021548779681325,0.016560051590204],[-0.020320290699601,-0.022762326523662,0.10942808538675]],[[-0.031522694975138,0.092988282442093,0.031091641634703],[0.0060715931467712,0.025994848459959,0.010133522562683],[0.087999694049358,-0.039902731776237,-0.20940911769867]],[[-0.090639904141426,0.04364700615406,0.03829800337553],[-0.028444876894355,0.036483317613602,0.10813692957163],[0.12627877295017,0.0015880768187344,0.014747534878552]],[[-0.22739136219025,-0.085051946341991,0.041931971907616],[-0.20711369812489,-0.13195334374905,0.12720590829849],[0.0029019245412201,0.20883317291737,0.10998667031527]],[[0.044695638120174,0.082922004163265,0.086207315325737],[-0.0030623869970441,-0.08820927888155,-0.085915565490723],[0.076339028775692,0.12446565181017,0.14526428282261]],[[-0.025699475780129,0.041175778955221,-0.19507247209549],[0.063446804881096,-0.082759566605091,-0.13318395614624],[0.16714245080948,-0.21478690207005,-0.18928271532059]],[[-0.023994190618396,0.0069830673746765,0.075728110969067],[-0.034439869225025,-0.043324649333954,0.14843639731407],[-0.062876731157303,-0.002647731686011,-0.03864674270153]],[[0.040639080107212,0.051862198859453,-0.10016234219074],[0.10612360388041,0.029179692268372,0.081709742546082],[-0.0030304840765893,0.06025093793869,0.022566286846995]],[[0.13653466105461,-0.12301745265722,-0.055972408503294],[-0.13439364731312,-0.092672556638718,0.10364574939013],[-0.17882235348225,0.0058733830228448,0.016669422388077]],[[0.077283382415771,-0.012350792996585,-0.048291232436895],[-0.0053329449146986,-0.043521672487259,0.058424264192581],[0.0073508503846824,-0.14261883497238,-0.077026672661304]],[[-0.036833621561527,0.07940536737442,-0.0043337107636034],[-0.16807289421558,-0.02222022973001,0.052309226244688],[-0.11927784979343,0.20195990800858,-0.0039620334282517]],[[0.04398861899972,0.12370526790619,0.12249054759741],[-0.087477378547192,-0.030583199113607,0.019285013899207],[0.09985239058733,-0.014163457788527,0.016441421583295]]],[[[0.053040612488985,0.067820511758327,0.095038957893848],[0.057290285825729,0.086929000914097,0.11674739420414],[-0.056094743311405,-0.030836187303066,0.0084357848390937]],[[0.087211653590202,0.11456259340048,-0.10356658697128],[-0.076963432133198,-0.18019948899746,0.0069204596802592],[-0.090787187218666,-0.078932844102383,-0.016388600692153]],[[-0.061448156833649,0.1567113250494,-0.20195931196213],[-0.045785471796989,-0.12761406600475,-0.074303969740868],[0.019341005012393,-0.068780519068241,0.014287102967501]],[[-0.13540276885033,-0.11946981400251,-0.050174418836832],[-0.11295682191849,-0.071387030184269,-0.015935536473989],[-0.265001475811,-0.15293049812317,0.067780144512653]],[[-0.0011423011310399,0.010872666724026,0.035224631428719],[-0.019436199218035,0.080922581255436,0.053526576608419],[-0.078841023147106,-0.099092721939087,-0.070993304252625]],[[-0.11497683823109,0.04771438986063,0.10201119631529],[-0.036307327449322,0.032875034958124,-0.022300591692328],[0.059089194983244,0.090788833796978,0.074922300875187]],[[-0.053118877112865,-0.074864864349365,-0.065302960574627],[-0.049802727997303,-0.021659402176738,-0.035531427711248],[0.10034509003162,-0.00063810060964897,0.048585176467896]],[[0.036602459847927,0.01737018674612,-0.05201417952776],[-0.077685222029686,-0.051934011280537,-0.012203810736537],[-0.010387225076556,0.021317476406693,-0.051484942436218]],[[0.035986185073853,-0.11951964348555,0.074437811970711],[-0.10837399214506,0.015312233939767,-0.039601631462574],[-0.13010857999325,0.033528052270412,0.10394427925348]],[[-0.10255531966686,-0.031521450728178,-0.040339834988117],[-0.11216843873262,0.032586790621281,-0.051304705440998],[0.054136607795954,0.13470774888992,0.059894122183323]],[[-0.08407748490572,0.029404424130917,-3.4172222513007e-05],[-0.029182519763708,0.057550344616175,0.0079337041825056],[0.10072653740644,0.12079944461584,0.03311525657773]],[[-0.10724115371704,-0.1121656820178,-0.027299929410219],[-0.021622015163302,-0.12812124192715,0.0023326915688813],[0.060384899377823,0.011149222962558,-0.0072046644054353]],[[0.066286616027355,0.066014029085636,-0.011521412990987],[0.098802715539932,0.016283258795738,-0.0093187056481838],[-0.092351876199245,0.087636396288872,-0.075100816786289]],[[0.068723686039448,0.015066721476614,-0.10827497392893],[-0.027532834559679,0.0029199493583292,-0.10244604200125],[0.053757783025503,-0.00052772706840187,0.011681940406561]],[[-0.071588680148125,0.0052526765502989,0.016585249453783],[0.035039566457272,0.014770749956369,-0.092175148427486],[-0.031043231487274,-0.1004948541522,0.00091615808196366]],[[-0.021234229207039,0.066054813563824,0.070344962179661],[-0.089378498494625,0.0048593664541841,-0.00063444790430367],[-0.022161282598972,0.011162174865603,-0.13554163277149]],[[0.016250850632787,-0.079619012773037,-0.082846701145172],[0.051662690937519,0.13042572140694,0.090905904769897],[-0.0123175913468,0.061247777193785,-0.04822077229619]],[[0.041462156921625,0.040748838335276,0.00067829212639481],[-0.078916400671005,0.072205536067486,0.068298421800137],[-0.022907128557563,0.099994227290154,0.10948187112808]],[[-0.01694418862462,-0.036926466971636,-0.050661891698837],[-0.018331192433834,-0.035415060818195,-0.029985962435603],[0.0017528844764456,-0.12066157907248,-0.067768409848213]],[[0.011382162570953,-0.14191627502441,-0.1772568076849],[-0.084572590887547,-0.22683157026768,-0.08860145509243],[0.062235541641712,0.02830732613802,0.086146555840969]],[[0.0016556715127081,-0.072156608104706,-0.10813375562429],[0.041822399944067,-0.081208348274231,-0.034255985170603],[-0.10544998943806,-0.10439792275429,-0.015510259196162]],[[-0.010148633271456,-0.23196351528168,-0.10047183185816],[-0.098921671509743,-0.053639080375433,0.04915527254343],[-0.058832969516516,0.025518774986267,0.025428155437112]],[[-0.088224522769451,0.070344753563404,0.097019679844379],[-0.0035447841510177,0.017659785225987,0.082817457616329],[-0.017796734347939,-0.0033955236431211,-0.051458787173033]],[[-0.059454403817654,-0.10051649063826,-0.043370001018047],[-0.03682654350996,-0.19957302510738,0.013131573796272],[-0.2007582783699,-0.15900555253029,0.022741239517927]],[[-0.03182752802968,-0.063935205340385,0.050658471882343],[-0.079185299575329,0.004368016961962,0.061523016542196],[-0.12924627959728,0.032269690185785,0.088147215545177]],[[0.12857231497765,-0.00654670689255,0.019451411440969],[0.080247402191162,-0.047596704214811,0.051962982863188],[-0.043116949498653,0.05251881107688,0.037165425717831]],[[0.13268537819386,0.046833254396915,-0.033479604870081],[0.04441723972559,0.039331264793873,-0.037805482745171],[0.076802305877209,0.039208181202412,0.013732705265284]],[[-0.011927209794521,0.089485041797161,-0.1105345338583],[-0.13926756381989,-0.050037924200296,0.095419019460678],[-0.1218683719635,-0.12064861506224,0.056492391973734]],[[0.03919743001461,-0.1860957890749,0.017221042886376],[-0.01603682897985,-0.17275886237621,-0.006286452524364],[-0.068410642445087,0.0058857435360551,0.17707917094231]],[[0.049586661159992,0.043387893587351,-0.060074180364609],[0.12473721802235,-0.10477621853352,-0.027838341891766],[0.00053066562395543,-0.095746770501137,-0.24275998771191]],[[0.073004148900509,0.10012640804052,0.070567049086094],[-0.15143303573132,0.013769581913948,0.078116156160831],[-0.037518281489611,-0.1148731932044,-0.018730187788606]],[[-0.090610399842262,-0.05175681039691,0.007107499986887],[-0.08988406509161,-0.072396717965603,0.088465437293053],[0.0091712269932032,-0.0088152140378952,0.082990132272243]],[[0.069512099027634,-0.1406025737524,0.12729646265507],[0.035437386482954,0.035546150058508,0.032698538154364],[0.048264998942614,0.076805584132671,0.0053807073272765]],[[-0.036201748996973,-0.072803512215614,-0.09637026488781],[-0.025374891236424,0.14444057643414,0.0035804056096822],[0.013625944964588,0.24795477092266,0.090343050658703]],[[0.009143965318799,0.040533874183893,-0.096428491175175],[0.038821280002594,-0.0037950754631311,0.058574363589287],[-0.0061894529499114,-0.04533463716507,0.019029842689633]],[[0.054782222956419,0.0093797501176596,-0.012568242847919],[0.11842541396618,-0.010164435021579,-0.015644924715161],[0.080236829817295,0.012940146960318,-0.0056652743369341]],[[0.0099572297185659,0.031955759972334,0.080608740448952],[-0.047184534370899,0.0049268687143922,0.022418219596148],[0.11314854770899,0.0030929585918784,-0.051896180957556]],[[-0.001531706075184,-0.059729296714067,0.013564890250564],[-0.0016997647471726,-0.019740793853998,-0.1989204287529],[0.022623693570495,0.042471930384636,-0.13382537662983]],[[0.068091601133347,0.031626213341951,0.15984630584717],[-0.17137569189072,-0.037942253053188,0.06870935857296],[-0.031903959810734,-0.084615267813206,0.062173746526241]],[[-0.070921748876572,0.039131373167038,0.10754060000181],[-0.039937723428011,-0.0079875225201249,0.085477873682976],[-0.091043144464493,-0.052037864923477,0.069198101758957]],[[-0.02914702706039,-0.081797517836094,-0.086166501045227],[0.064138531684875,-0.069835744798183,0.015091827139258],[0.13315457105637,0.02093318477273,-0.04842709377408]],[[-0.12716403603554,0.027948744595051,-0.014447769150138],[-0.031222473829985,-0.077461421489716,-0.001606157864444],[0.037486758083105,-0.052386961877346,0.051081050187349]],[[-0.0041495249606669,-0.021304987370968,0.055035315454006],[-0.014167916029692,-0.06935728341341,-0.022228017449379],[-0.03260537609458,0.021255619823933,-0.043307900428772]],[[-0.013644781894982,-0.016989033669233,0.0046698381192982],[-0.014555205591023,-0.050809729844332,-0.028510827571154],[0.0097973477095366,0.081732973456383,0.0019126439001411]],[[-0.05247375741601,-0.076304204761982,-0.096693687140942],[-0.15937307476997,-0.10277390480042,-0.089912571012974],[0.090374484658241,0.021019531413913,-0.015244512818754]],[[-0.16539859771729,-0.10044483840466,-0.028826462104917],[-0.051596757024527,-0.01528569124639,-0.00048991851508617],[-0.092456415295601,0.066597811877728,0.022602228447795]],[[0.18247181177139,-0.034675940871239,-0.013081930577755],[-0.071592770516872,0.066977426409721,0.12811097502708],[0.04024538770318,0.102429702878,0.068594187498093]],[[-0.014717321842909,-0.056076858192682,-0.0080692768096924],[-0.025406362488866,-0.0060723749920726,-0.020802490413189],[0.010162768885493,-0.054321017116308,0.046857971698046]],[[0.063352599740028,-0.032489724457264,0.043741319328547],[0.089447319507599,-0.071848571300507,-0.067544348537922],[-0.037334978580475,-0.013941403478384,-0.017519257962704]],[[-0.0069272611290216,-0.040355615317822,0.020668379962444],[-0.092429988086224,0.048712059855461,0.02701804228127],[-0.04609302803874,0.034012012183666,0.080361723899841]],[[-0.017716746777296,-0.017433345317841,-0.099842548370361],[0.00013989297440276,-0.042136482894421,-0.10273808240891],[-0.036595862358809,-0.0048286546953022,0.050449904054403]],[[0.0058511705137789,0.012241770513356,-0.070121459662914],[0.038755960762501,-0.059947859495878,-0.13420723378658],[0.043638002127409,-0.19496263563633,-0.20097608864307]],[[-0.017666764557362,-0.069824315607548,-0.076013423502445],[0.012646570801735,-0.055670160800219,-0.040958359837532],[0.10921465605497,0.030417608097196,0.0073980637826025]],[[0.00046152566210367,-0.095850549638271,-0.1806678622961],[0.15406019985676,-0.064665108919144,-0.092612996697426],[-0.013336126692593,-0.1976263821125,-0.12519565224648]],[[-0.027417132630944,0.10054748505354,0.10192661732435],[0.095618493855,0.051144026219845,0.11784264445305],[-0.023199075832963,0.036071438342333,0.086531691253185]],[[0.15299719572067,0.072646036744118,-0.050706069916487],[0.058392465114594,0.066420249640942,-0.1241986900568],[0.02828424423933,-0.0061299866065383,0.028954638168216]],[[-0.047236952930689,-0.012523286044598,0.057633779942989],[0.0010298527777195,-0.1822744756937,-0.14348430931568],[-0.0058698537759483,-0.1539693325758,-0.12487927824259]],[[0.028940403833985,0.03072676807642,0.11666478216648],[0.068091653287411,0.097700700163841,0.037324707955122],[0.098912537097931,0.060582280158997,-0.051612176001072]],[[0.044563505798578,-0.020581379532814,-0.098820857703686],[0.0094715878367424,-0.01519912108779,-0.076119370758533],[0.053929090499878,-0.023668633773923,-0.056837022304535]],[[-0.061124548316002,-0.15229691565037,-0.02291951701045],[-0.078492112457752,0.020983027294278,0.079630196094513],[-0.029690753668547,0.02489772066474,0.056561008095741]],[[-0.033983465284109,-0.066868841648102,0.030779296532273],[-0.0055248714052141,-0.16256552934647,-0.067531481385231],[-0.14802718162537,-0.22001783549786,-0.054198022931814]],[[0.039360761642456,0.014760309830308,0.051584906876087],[-0.041865415871143,-0.064990699291229,-0.019815566018224],[-0.054223828017712,0.0008999687852338,0.039267111569643]],[[0.073064595460892,-0.037367526441813,-0.055711675435305],[-0.0075050545856357,-0.0071404450573027,0.022871762514114],[0.16592665016651,0.11697970330715,0.008012218400836]],[[0.074691414833069,-0.13606199622154,0.022759579122066],[0.028527896851301,-0.023826560005546,0.010919461026788],[0.036547165364027,-0.023340120911598,0.04106343537569]],[[-0.077589362859726,-0.058806274086237,-0.081776440143585],[-0.03785077854991,-0.070210434496403,-0.055754538625479],[-0.060237038880587,-0.0017202553572133,0.0037392650265247]],[[0.10257454961538,0.16532891988754,-0.067009255290031],[-0.093078330159187,0.069502681493759,0.057421166449785],[-0.0057104099541903,0.090203560888767,-0.070090420544147]],[[0.044258698821068,-0.035067450255156,0.044434305280447],[-0.010262192226946,0.0316889770329,0.083771452307701],[-0.049624506384134,0.030737491324544,-0.046462707221508]],[[0.099112518131733,0.093443632125854,0.084108673036098],[0.0353147611022,-0.14111158251762,-0.089046515524387],[0.035490658134222,0.022161897271872,-0.20347014069557]],[[-0.036017302423716,0.0081435358151793,0.1267137080431],[0.013782129622996,0.028406044468284,0.095668114721775],[0.013948732987046,-0.0604093298316,-0.065448574721813]],[[0.011929538100958,-0.07469230145216,0.071806512773037],[-0.104611761868,-0.080891408026218,0.045569282025099],[-0.062810510396957,-0.096873350441456,0.069207280874252]],[[0.054469145834446,-0.021926257759333,0.029067004099488],[-0.074879616498947,-0.0061503201723099,-0.17124737799168],[-0.0022610733285546,-0.090011067688465,-0.026189317926764]],[[0.050207357853651,-0.076155878603458,0.034677680581808],[-0.047954201698303,0.036362629383802,0.009440484456718],[-0.0038731421809644,-0.076107919216156,0.07712335139513]],[[-0.087561644613743,-0.0083972066640854,0.049250364303589],[0.031058266758919,0.0017215921543539,-0.07173053920269],[0.053285241127014,0.052572440356016,-0.048711348325014]],[[0.05032367259264,0.0081956470385194,-0.078174605965614],[0.10269882529974,0.0064258091151714,-0.083502240478992],[0.20101656019688,0.014263113029301,-0.11184645444155]],[[0.097992815077305,-0.00080735189840198,-0.158351957798],[0.076281696557999,-0.18184623122215,-0.047658700495958],[0.056021895259619,-0.066952832043171,-0.041809026151896]],[[0.030159270390868,0.036290548741817,-0.062469601631165],[0.086903594434261,0.0059691639617085,-0.0090328259393573],[0.086292766034603,-0.01458646915853,-0.053918413817883]],[[0.02076617628336,-0.084353357553482,-0.078126423060894],[0.016705777496099,0.0051087969914079,-0.01455061417073],[0.067221134901047,0.042741261422634,0.013115130364895]],[[-0.013615492731333,-0.12877258658409,-0.020991204306483],[-0.1127791851759,-0.052397780120373,-0.054545275866985],[-0.079993598163128,-0.071437776088715,-0.098627462983131]],[[0.15640398859978,0.02472341991961,0.040458735078573],[-0.030678067356348,0.0027994075790048,0.039324015378952],[-0.13045808672905,-0.013917909935117,0.044721662998199]],[[-0.074452497065067,-0.055830333381891,-0.054194021970034],[0.064993821084499,-0.08942075073719,0.01447774656117],[0.0095504997298121,-0.13626547157764,-0.1154630035162]],[[0.023301128298044,-0.024365272372961,0.0079838829115033],[0.038538187742233,0.068599082529545,0.02836387604475],[-0.064667478203773,0.004755393601954,0.079434081912041]],[[-0.0068894270807505,-0.16361775994301,-0.00056225527077913],[0.073015496134758,-0.0397654697299,-0.10370314866304],[0.046508751809597,0.13476306200027,-0.046441216021776]],[[0.10950451344252,0.043496791273355,-0.095104411244392],[-0.084236286580563,0.00029287091456354,-0.018857045099139],[0.042888563126326,-0.0078164516016841,-0.03352639451623]],[[-0.010948780924082,0.0074289054609835,-0.035039961338043],[0.00065817590802908,0.026878653094172,-0.024522535502911],[-0.014131146483123,-0.097689650952816,-0.083105213940144]],[[0.10712806135416,0.073736600577831,0.089753217995167],[0.014510058797896,0.04138482734561,0.16987845301628],[-0.0039073009975255,0.027817964553833,-0.085754156112671]],[[0.04911832883954,-0.057352971285582,-0.14174331724644],[-0.026393672451377,-0.012962159700692,-0.030731402337551],[0.093910455703735,-0.037093482911587,0.065488517284393]],[[0.095345661044121,0.061535649001598,0.0062829945236444],[0.016272231936455,-0.029119910672307,-0.11356970667839],[0.014020926319063,0.025336617603898,-0.041263081133366]],[[-0.0067508304491639,-0.013435263186693,0.067666508257389],[0.033451084047556,0.018714128062129,-0.027362290769815],[0.068091906607151,-0.028513992205262,-0.076518543064594]],[[-0.034123536199331,0.0095437215641141,0.01304043456912],[-0.064862549304962,-0.043960232287645,0.014766840264201],[0.13031838834286,0.061467610299587,0.12339761853218]],[[0.15294754505157,0.1362869143486,0.08352218568325],[-0.11543621122837,0.0012531551765278,-0.012526346370578],[-0.021713301539421,0.015167488716543,-0.069091729819775]],[[0.010481150820851,0.083921998739243,0.0067967930808663],[0.094094254076481,0.022440122440457,0.11878458410501],[0.025157067924738,-0.083259709179401,-0.12033586204052]],[[-0.063664563000202,0.019151668995619,0.0096395760774612],[0.079513020813465,0.07130566239357,0.0094228098168969],[0.064971461892128,-0.075560294091702,-0.075979620218277]],[[-0.019619587808847,0.11588510125875,-0.20860946178436],[-0.011575735174119,-0.11096372455359,-0.11071495711803],[-0.062290847301483,0.0089271878823638,-0.14420127868652]],[[0.065983138978481,0.061027683317661,0.064252763986588],[-0.020313866436481,-0.081242904067039,0.027206307277083],[-0.019808914512396,-0.0064756581559777,-0.048086117953062]],[[0.026375018060207,0.028108092024922,0.0078891618177295],[0.12587293982506,-0.050697386264801,0.05873791128397],[0.044010858982801,-0.15421305596828,-0.10391762107611]],[[0.079056262969971,0.048500806093216,-0.050172097980976],[0.022435890510678,0.00052245851838961,0.01506285648793],[-0.034911751747131,0.03017814643681,0.1080609112978]],[[0.061570588499308,0.030420759692788,0.065153032541275],[0.045672845095396,0.0025647659786046,-0.088041722774506],[-0.00069038406945765,-0.084782131016254,-0.047696974128485]],[[-0.048098191618919,0.074538931250572,0.074423305690289],[0.0020284571219236,0.10912039130926,0.029696725308895],[0.073843508958817,0.084589138627052,0.073085322976112]],[[-0.14442820847034,-0.056476555764675,-0.074709370732307],[0.071644976735115,0.030479073524475,0.030615108087659],[0.015353822149336,0.023581918329,0.056872244924307]],[[0.059503793716431,0.022160613909364,0.098130136728287],[-0.013088350184262,0.028633212670684,0.13323560357094],[0.020402925089002,0.087884090840816,0.041064519435167]],[[-0.037830017507076,0.064751118421555,0.11732985824347],[-0.079664453864098,0.014203367754817,0.06869288533926],[0.0039172670803964,0.054425913840532,0.05439642816782]],[[-0.15253303945065,0.046991694718599,-0.054886594414711],[-0.047933362424374,-0.054254643619061,0.053531512618065],[0.11910650879145,-0.024450831115246,0.020028650760651]],[[0.0057015153579414,0.095522627234459,-0.0093702478334308],[-0.029583059251308,-0.033133484423161,0.041466906666756],[0.061899647116661,-0.0058396086096764,-0.037678629159927]],[[-0.11053522676229,-0.03532711789012,0.00543915014714],[0.032017309218645,0.10788493603468,0.052603513002396],[-0.003396455431357,0.051129873842001,0.14929912984371]],[[-0.010788421146572,0.029980756342411,-0.041108261793852],[0.037162855267525,0.0080816159024835,-0.015687134116888],[0.096942402422428,0.049933608621359,-0.036114685237408]],[[0.026390813291073,-0.21415683627129,-0.12872730195522],[0.078514628112316,-0.044780369848013,-0.033568650484085],[0.071673572063446,0.056716449558735,-0.011750143952668]],[[-0.024352967739105,-0.0098576303571463,0.034221846610308],[-0.038491196930408,0.10849703103304,0.013010355643928],[-0.080240704119205,-0.084600411355495,-0.055175233632326]],[[-0.0034272009506822,0.055239658802748,0.043750748038292],[-0.0095742186531425,-0.044489208608866,-0.036371968686581],[-0.023455729708076,-0.13182769715786,-0.14246651530266]],[[-0.13851974904537,0.024340653792024,-0.032588440924883],[-0.033959560096264,-0.014296107925475,0.043850656598806],[-0.086669944226742,-0.024177057668567,-0.043268039822578]],[[0.043682318180799,-0.027792209759355,-0.0031155161559582],[-0.050892867147923,0.074790894985199,-0.028455270454288],[0.029709303751588,0.011081885546446,-0.040106907486916]],[[0.082415029406548,-0.033739306032658,-0.078325554728508],[-0.070599429309368,-0.046865917742252,0.049660127609968],[-0.03846525773406,-0.027524791657925,0.017316590994596]],[[-0.035238731652498,-0.017651550471783,-0.053465772420168],[0.016456937417388,-0.0015446492470801,-0.18375886976719],[-0.055834986269474,-0.05215547606349,-0.093017645180225]],[[0.0021330162417144,-0.079924732446671,-0.080937847495079],[0.078999496996403,0.022328745573759,0.0016505514504388],[0.13367989659309,0.083789870142937,0.013855331577361]],[[0.07366818189621,0.02878207154572,-0.059032894670963],[-0.048901591449976,0.077848993241787,0.073338694870472],[0.02197197265923,0.084158338606358,0.10775561630726]],[[0.10844642668962,0.066349349915981,0.14586441218853],[0.037499453872442,0.017833093181252,0.093249164521694],[-0.035632852464914,0.094169139862061,-0.0072495774365962]],[[0.10643598437309,0.055875562131405,-0.060986440628767],[-0.049509458243847,0.068601615726948,-0.043578676879406],[0.034079261124134,0.10449090600014,-0.014226249419153]],[[0.016870681196451,-0.014084234833717,0.070666238665581],[0.053229156881571,-0.065829865634441,0.057395279407501],[-0.0040099755860865,0.042483888566494,0.067231610417366]],[[0.043224189430475,-0.032230913639069,-0.017408683896065],[0.066076643764973,-0.12238152325153,-0.15280522406101],[0.13849632441998,0.089965090155602,-0.034736666828394]],[[-0.088485270738602,-0.0076345750130713,0.0946409329772],[-0.043194338679314,-0.10999821871519,-0.0067558558657765],[-0.11199966073036,-0.09012833237648,0.046349789947271]],[[0.018567094579339,-0.068662188947201,-0.043110601603985],[0.06797207146883,0.0081902872771025,0.092618227005005],[0.11973144859076,-0.034724671393633,-0.12704190611839]],[[-0.10395155102015,0.087720073759556,0.036635857075453],[0.12772838771343,0.073812484741211,0.00040578743210062],[0.10677778720856,0.10635966062546,0.16405749320984]],[[0.033372137695551,-0.070087879896164,-0.07812212407589],[0.075719751417637,0.010550650767982,-0.07400157302618],[-0.04438329860568,-0.17134734988213,-0.013954085297883]],[[-0.028557876124978,-0.08740234375,-0.037856787443161],[-0.12725473940372,-0.039042998105288,-0.188231959939],[-0.043518200516701,-0.03660836443305,-0.05536700040102]],[[0.027373239398003,0.061097871512175,0.043858785182238],[0.060725335031748,0.059033993631601,0.030066529288888],[-0.13315571844578,0.024905057623982,0.10649909824133]],[[0.0217623449862,-0.079487651586533,0.00056648475583643],[0.12723441421986,-0.068293057382107,0.050640016794205],[0.14120088517666,0.041755739599466,-0.068315207958221]],[[0.026095731183887,0.061154551804066,-0.036766700446606],[0.050313200801611,-0.065858997404575,-0.002837561769411],[-0.040265530347824,-0.14398898184299,-0.025841768831015]],[[0.03819827735424,-0.001629447331652,0.070586256682873],[-0.033371672034264,0.076112620532513,-0.10725291073322],[-0.077005088329315,0.01437075715512,-0.047812081873417]],[[-0.042537603527308,0.12397858500481,0.14569413661957],[-0.073328502476215,-0.0036359678488225,0.1331200003624],[-0.052335876971483,0.067862518131733,0.0039892103523016]]],[[[-0.040468864142895,0.057115230709314,0.093621000647545],[0.012748115696013,0.064351193606853,-0.062807194888592],[-0.042815156280994,0.09003047645092,0.013557949103415]],[[-0.019013345241547,-0.049881022423506,0.0037080596666783],[0.01158348005265,0.022172043099999,-0.07256294041872],[-0.038535237312317,0.092146195471287,0.025438744574785]],[[-0.026592006906867,0.0089654140174389,-0.088163539767265],[0.036111276596785,0.063551500439644,-0.028830928727984],[-0.068523213267326,0.018792442977428,-0.0017951788613573]],[[-0.015703294426203,-0.039242420345545,-0.048415120691061],[0.079967275261879,-0.012471741996706,-0.14297826588154],[0.0095274904742837,0.19159771502018,0.078544825315475]],[[-0.016344353556633,0.012779320590198,0.041655816137791],[0.066080264747143,-0.076439373195171,0.019033376127481],[0.045387417078018,0.022824315354228,-0.073397696018219]],[[0.045727107673883,-0.076284378767014,0.06810512393713],[-0.033630859106779,-0.081740826368332,0.05042565241456],[-0.045752510428429,-0.043264515697956,0.043205391615629]],[[-0.023627765476704,-0.053728856146336,0.0044136820361018],[-0.077052243053913,0.038205094635487,0.0090687284246087],[-0.058752246201038,0.08676940202713,-0.011421645060182]],[[0.071255519986153,0.0042637512087822,-0.036541055887938],[0.046719510108232,0.054588459432125,-0.12908133864403],[-0.050849992781878,0.043509177863598,-0.032971519976854]],[[-0.035527508705854,0.048193469643593,-0.02476829662919],[0.095711454749107,-0.075526192784309,-0.049566227942705],[0.041549906134605,0.022674653679132,0.085388667881489]],[[-0.10408077389002,-0.0959557518363,-0.10844428092241],[-0.054004661738873,-0.03212558850646,-0.01496721804142],[0.01352589763701,-0.0025562609080225,0.059435028582811]],[[0.13619443774223,0.013516660779715,0.0075461445376277],[0.078132651746273,0.025329932570457,0.0095173185691237],[0.028757194057107,-0.0064228544943035,0.062466461211443]],[[-0.067245833575726,0.0081172920763493,0.16180488467216],[-0.019126230850816,-0.03031331114471,-0.061557315289974],[-0.026682961732149,-0.070141844451427,-0.0087921610102057]],[[-0.051067307591438,-0.01904584094882,-0.02955025061965],[-0.0064675384201109,-0.05381378158927,-0.11084678024054],[-0.031792838126421,-0.0009345420403406,-0.072693057358265]],[[0.020451316609979,-0.076938591897488,-0.014801093377173],[0.030133981257677,-0.00099257542751729,0.084166519343853],[-0.020682163536549,0.032562863081694,0.069601267576218]],[[-0.045310258865356,0.036678563803434,0.045858133584261],[-0.041136834770441,0.067385420203209,-0.031331818550825],[0.12773828208447,0.015900699421763,0.028603320941329]],[[-0.033666640520096,-0.044474516063929,0.077699147164822],[-0.10882885754108,-0.063603430986404,0.074427582323551],[-0.077416121959686,-0.056544601917267,0.12472458183765]],[[-0.033960767090321,0.029370190575719,0.00044334313133731],[0.14390946924686,0.12054029107094,-0.050123386085033],[0.0906947478652,0.1916341483593,0.038113299757242]],[[0.030555130913854,0.037640947848558,0.051228646188974],[0.068049006164074,-0.010289840400219,-0.060728572309017],[-0.056190479546785,0.020470585674047,-0.083809360861778]],[[0.054815508425236,0.055923063308001,0.072514042258263],[-0.00036787957651541,-0.048991877585649,0.059532351791859],[-0.011557585559785,-0.0767912119627,0.0098219262436032]],[[0.083720274269581,-0.094016380608082,-0.096296660602093],[-0.014204270206392,0.012422757223248,-0.0010319323046133],[-0.0052528311498463,0.020636409521103,-0.0039096809923649]],[[0.17762675881386,-0.043241512030363,-0.05040367692709],[-0.03562856093049,-0.12278337776661,-0.087573438882828],[0.11752738803625,-0.03985695540905,-0.14200416207314]],[[-0.019006064161658,0.13296581804752,0.10446167737246],[-0.011771903373301,-0.067034751176834,0.068348363041878],[0.10633328557014,-0.050545986741781,0.03197567909956]],[[0.035878393799067,-0.040282227098942,-0.04498902335763],[-0.027359133586287,-0.0030000330880284,0.00924251973629],[-0.03654432669282,0.024795800447464,0.059962023049593]],[[0.086730524897575,-0.10616007447243,-0.10979031026363],[0.12283964455128,0.077003672719002,0.15857924520969],[-0.11266715824604,-0.0051757316105068,0.043658390641212]],[[0.13391035795212,0.071792863309383,-0.012769089080393],[-0.015171543695033,0.15391127765179,0.017402585595846],[-0.0069814478047192,0.08869643509388,0.10161686688662]],[[-0.014221996068954,-0.02626758441329,-0.042885039001703],[0.0098645882681012,0.026053333655,-0.084333114326],[0.045279506593943,0.052418455481529,-0.033699862658978]],[[-0.019829392433167,0.04490152746439,-0.0002916157245636],[0.11351689696312,-0.075282402336597,-0.023111181333661],[0.069413959980011,-0.0058791558258235,0.02353248372674]],[[0.033353958278894,-0.016128230839968,0.01126413512975],[0.021165195852518,0.011238479986787,-0.10214260220528],[-0.0067585143260658,0.021227058023214,-0.029997531324625]],[[-0.028977628797293,0.074649505317211,0.079059854149818],[-0.03608275577426,0.0060076033696532,0.12313833087683],[-0.06638415157795,-0.016412504017353,0.070636115968227]],[[-0.059965241700411,-0.02565729804337,-0.051492411643267],[0.01564702577889,-0.055529825389385,-0.020019805058837],[0.0683434009552,0.04964841529727,-0.069305829703808]],[[-0.10846789181232,0.10563099384308,0.16741961240768],[0.0028104905504733,-0.048106301575899,0.037820365279913],[0.13649049401283,-0.028871292248368,0.064780846238136]],[[-0.089658357203007,0.013775386847556,0.0023928871378303],[-0.0031129843555391,0.034686055034399,0.0092621929943562],[-0.072639532387257,-0.04583153501153,0.044132795184851]],[[0.065647073090076,-0.0078920805826783,0.04821915179491],[0.027863373979926,-0.021134877577424,0.035647686570883],[-0.014603856019676,-0.028129937127233,-0.041064366698265]],[[-0.00031521919299848,-0.034654002636671,0.03855075314641],[0.0094686131924391,0.14806105196476,-0.025382824242115],[0.10068026930094,0.09341011941433,-0.028541672974825]],[[0.033568032085896,-0.059775404632092,0.08020181953907],[0.020421667024493,-0.090596318244934,0.014536183327436],[0.065654121339321,-0.064675487577915,0.035372577607632]],[[0.050957534462214,-0.01848173327744,-0.078272178769112],[0.069490030407906,-0.063553251326084,-0.022778844460845],[0.089350305497646,0.050582602620125,-0.06410626322031]],[[-0.027633931487799,0.038131415843964,-0.0069008809514344],[0.024260399863124,-0.036170747131109,0.017128309234977],[-0.11832185089588,0.04500088840723,-0.064729005098343]],[[0.12472005188465,0.042906198650599,-0.013803452253342],[-0.020410003140569,-0.013736176304519,-0.020426878705621],[-0.0042887800373137,-0.024982046335936,-0.042305059731007]],[[0.001117181032896,0.086253456771374,-0.010243409313262],[-0.026391020044684,-0.069279238581657,0.031298138201237],[-0.012726401910186,-0.094209238886833,-0.12066020816565]],[[-0.081666365265846,-0.011818276718259,-0.062093894928694],[-0.04381563141942,0.014261142350733,0.071005776524544],[0.11874297261238,0.032889630645514,-0.078287109732628]],[[-0.041407581418753,-0.042658295482397,-0.022750688716769],[-0.013261471875012,-0.09051638096571,-0.033304311335087],[-0.057274308055639,-0.039259992539883,0.064382120966911]],[[-0.027613040059805,-0.067198172211647,-0.0002532095531933],[0.016092408448458,0.045119769871235,0.026101918891072],[0.02555781789124,-0.021762689575553,0.045453432947397]],[[-0.0038019185885787,-0.14046913385391,-0.038384899497032],[0.059278685599566,0.10009525716305,-0.043548483401537],[0.14674232900143,0.02900936640799,-0.15570031106472]],[[0.068819403648376,-0.083955600857735,-0.012969349510968],[0.090251304209232,-0.038117446005344,0.022224679589272],[-0.017681775614619,-0.011353897862136,-0.048988573253155]],[[-0.020860113203526,-0.060851033776999,-0.10702217370272],[-0.030540186911821,-0.0035973791964352,0.0018217739416286],[-0.02229137532413,-0.034633610397577,-0.068688847124577]],[[-0.034650094807148,0.017116893082857,0.016075268387794],[-0.071766711771488,0.013694196939468,-0.019169064238667],[0.037620447576046,-0.019939176738262,-0.080054111778736]],[[0.038861948996782,-0.063594497740269,-0.10488017648458],[0.1113673299551,-0.088342286646366,-0.046339102089405],[0.068699188530445,0.04477421939373,0.040844976902008]],[[-0.070293337106705,-0.039206724613905,-0.063260689377785],[-0.0071416278369725,0.0089686466380954,-0.044450405985117],[-0.030163945630193,0.017875684425235,-0.090726442635059]],[[0.00069874263135716,0.018671043217182,0.0047939280048013],[0.069059684872627,-0.011010583490133,0.0037737963721156],[0.072513177990913,0.02937388047576,-0.0062109124846756]],[[0.061997875571251,-0.025775611400604,-0.025650443509221],[0.025624480098486,-0.014367658644915,0.018066147342324],[-0.0084670623764396,0.039153460413218,-0.0079334452748299]],[[0.042879294604063,-0.059970624744892,0.11723151057959],[0.13716584444046,-0.07637333124876,0.082939580082893],[-0.016794020310044,-0.051540985703468,0.03515899926424]],[[0.050647031515837,0.063480891287327,0.0017768203979358],[-0.020167188718915,-0.11868713796139,-0.071406200528145],[0.016091385856271,-0.05061287432909,0.074035093188286]],[[-0.030818019062281,0.015770258381963,-0.063099719583988],[-0.012118343263865,-0.092171832919121,-0.036579169332981],[-0.0210903249681,-0.051324632018805,-0.053151812404394]],[[-0.014312403276563,-0.097221232950687,-0.040840849280357],[-0.011598193086684,-0.12459582090378,-0.090284302830696],[-0.023667374625802,-0.081754803657532,-0.094190150499344]],[[-0.065332807600498,-0.078574299812317,-0.019611924886703],[-0.1027620062232,-0.07035780698061,0.027182403951883],[0.14305427670479,0.069910190999508,0.076154492795467]],[[-0.053103491663933,-0.12624955177307,-0.063260979950428],[-0.028541494160891,-0.047644093632698,-0.073638014495373],[0.071496680378914,-0.049379244446754,-0.11075308173895]],[[-0.028841508552432,-0.028748625889421,0.052694652229548],[0.025537878274918,0.088809281587601,0.049225732684135],[-0.02635670080781,-0.036765478551388,-0.040429327636957]],[[0.017999440431595,0.05635017901659,-0.038600880652666],[0.0019065659726039,0.031466331332922,-0.04961596056819],[0.0093013821169734,-0.084881402552128,-0.038719296455383]],[[0.0066162096336484,-0.051258895546198,0.031453359872103],[0.022775007411838,-0.12218502908945,-0.11764857172966],[0.048737492412329,0.065516456961632,0.0072475364431739]],[[-0.0019265983719379,0.0018007123144343,0.025959983468056],[-0.041293911635876,-0.049555044621229,-0.0047013955190778],[-0.072661504149437,-0.071505136787891,-0.025954894721508]],[[-0.016585757955909,-0.071298226714134,-0.05939593911171],[-0.15451826155186,0.014189939945936,-0.088301718235016],[-0.093899294734001,0.01296126190573,-0.040830537676811]],[[0.12521295249462,-0.054191097617149,-0.062855035066605],[0.0093636130914092,-0.10049352049828,-0.065846264362335],[0.017577949911356,0.019144272431731,-0.018534932285547]],[[0.0016196880023926,0.036168079823256,-0.0066350460983813],[-0.0054125664755702,0.012442016042769,0.032444983720779],[0.030314257368445,-0.044354915618896,0.00043001401354559]],[[0.016774592921138,0.12504211068153,0.033477485179901],[0.019542723894119,-0.024116992950439,-0.033466700464487],[-0.073588915169239,-0.029565898701549,-0.001099492656067]],[[-0.11358723044395,-0.088838174939156,0.074901841580868],[-0.094159655272961,-0.083172701299191,0.098260499536991],[-0.12017047405243,0.074726179242134,0.1257338821888]],[[0.06929075717926,-0.010394597426057,-0.072050780057907],[-0.029079638421535,-0.075000435113907,0.0046031335368752],[0.035160679370165,-0.0796267837286,0.052618663758039]],[[0.027130531147122,-0.033641163259745,-0.020197588950396],[0.094457142055035,-0.071560487151146,-0.013236056081951],[0.10468768328428,-0.021097220480442,-0.097805537283421]],[[-0.069231487810612,-0.096430644392967,0.018894147127867],[0.22268450260162,-0.04072580486536,-0.060316812247038],[0.0059641762636602,-0.023616999387741,0.01409833598882]],[[-0.031380496919155,-0.10024992376566,-0.026221882551908],[-0.020135655999184,0.0033762387465686,0.023158589377999],[-0.035837162286043,-0.026186196133494,0.055276963859797]],[[-0.036044102162123,0.019847044721246,0.085299879312515],[-0.01950885169208,0.059963088482618,-0.075529530644417],[-0.12127044796944,0.0010707355104387,-0.00096590077737346]],[[-0.083943627774715,-0.0089471442624927,-0.055228013545275],[-0.012772696092725,0.0035209595225751,-0.025793788954616],[0.016950078308582,-0.051378447562456,-0.023425804451108]],[[0.02608984336257,0.019615394994617,0.072802998125553],[-0.0082871047779918,-0.04408223927021,-0.16537284851074],[0.03196382895112,0.011777382344007,-0.015423537231982]],[[0.081293880939484,0.079317890107632,0.0057930457405746],[0.097260244190693,0.11925955861807,-0.11869338899851],[0.17694070935249,0.017737282440066,-0.082028262317181]],[[0.016719235107303,-0.036363158375025,-0.04326120018959],[0.018542421981692,0.019414315000176,-0.024436771869659],[-0.010211698710918,-0.029547587037086,0.014838736504316]],[[0.06688603758812,0.029530933126807,0.11206788569689],[0.0012235222384334,0.012456933967769,-0.15593503415585],[0.040574721992016,0.0025210629682988,0.013497930020094]],[[-0.080688022077084,0.023597650229931,0.029314929619431],[0.047191888093948,0.035250499844551,-0.082337416708469],[-0.067389778792858,-0.11993461102247,-0.018673034384847]],[[0.062413677573204,-0.040469605475664,0.10069530457258],[-0.086049444973469,-0.007272819057107,0.020392466336489],[0.0064244940876961,-0.11982411891222,0.021917277947068]],[[0.038844112306833,0.015270275995135,-0.034221664071083],[-0.066833391785622,-0.1311699450016,-0.0038653637748212],[-0.015210234560072,-0.017967393621802,-0.055813882499933]],[[0.047591179609299,0.071772426366806,0.0036250958219171],[0.014402297325432,-0.080627463757992,-0.072102971374989],[0.011296751908958,-0.011000148020685,-0.00067689950810745]],[[-0.10618991404772,0.041495561599731,0.0047855507582426],[0.018387017771602,-0.044012021273375,-0.017610594630241],[0.00082011352060363,-0.0006042638560757,-0.10248523205519]],[[0.020485028624535,-0.019219573587179,-0.038448642939329],[0.0057414583861828,-0.0075971162877977,0.006866458337754],[-0.0070340828970075,-0.0099842445924878,0.084676392376423]],[[0.048429276794195,0.037066772580147,0.03543321788311],[0.07286760956049,-0.05533654987812,0.031462699174881],[-0.032911144196987,0.0081096878275275,-0.13078191876411]],[[0.048933796584606,0.0096851028501987,0.0054169320501387],[0.036144338548183,-0.0078872432932258,-0.088193893432617],[0.094324238598347,0.013269234448671,0.021250415593386]],[[0.066305123269558,-0.066582664847374,0.02052560262382],[0.0090067600831389,-0.012154649943113,-0.021314479410648],[0.0033879617694765,-0.040837381035089,0.036974683403969]],[[-0.08356761187315,0.015559625811875,0.090319745242596],[-0.01776584982872,0.11219926923513,0.041929125785828],[-0.080024495720863,0.028430679813027,-0.10261332988739]],[[-0.034764990210533,-0.08068285882473,-0.017046071588993],[0.093281008303165,-0.040442548692226,-0.046606350690126],[0.14355520904064,-0.013945915736258,0.022815911099315]],[[0.11608508974314,-0.024352909997106,-0.043651133775711],[-0.051538553088903,0.04621846228838,-0.042924888432026],[0.14118519425392,0.021197529509664,-0.067600280046463]],[[-0.085590675473213,-0.04842859134078,-0.10701812058687],[0.022957203909755,-0.037581082433462,0.026179239153862],[0.04273458942771,-0.042569361627102,-0.071640998125076]],[[0.074032597243786,3.0898190743756e-06,0.046226605772972],[0.0022288863547146,-0.045382894575596,0.016783162951469],[0.057569235563278,0.047528110444546,-0.020031804218888]],[[-0.092714324593544,0.0111491875723,-0.1509925276041],[-0.037399370223284,-0.088148333132267,-0.1193265542388],[-0.047345045953989,-0.024850681424141,0.0052160350605845]],[[-0.070846877992153,0.10372061282396,-0.10286308079958],[0.070937447249889,0.034754537045956,-0.099818423390388],[-0.018736306577921,0.055309005081654,-0.11695384979248]],[[0.00021127503714524,0.019616270437837,0.063415825366974],[-0.10334171354771,0.052058316767216,-0.070212535560131],[0.18664455413818,0.091412350535393,-0.049574755132198]],[[0.035767909139395,-0.042097195982933,0.070657908916473],[0.031583916395903,0.0061459504067898,-0.029079833999276],[0.013895647600293,-0.017713917419314,0.026915123686194]],[[-0.11238263547421,0.02112895809114,-0.059389542788267],[0.0083619598299265,-0.032704047858715,-0.018509391695261],[0.025197710841894,-0.0015878507401794,-0.015863541513681]],[[0.0078512486070395,-0.013067787513137,0.012455536983907],[-0.023870766162872,0.049220576882362,0.029674585908651],[-0.085935682058334,-0.028751669451594,-0.018276503309608]],[[-0.033694796264172,0.010905991308391,-0.058442037552595],[0.029609674587846,0.094755202531815,-0.063713058829308],[-0.059189565479755,0.058575630187988,0.053683944046497]],[[0.10611596703529,0.0077270688489079,0.018184745684266],[-0.11797773838043,-0.057091858237982,-0.0093622552230954],[0.043683521449566,0.034763544797897,0.062861517071724]],[[0.084013193845749,-0.0072341747581959,0.017256630584598],[0.0065867560915649,-0.0048077316023409,-8.5604886407964e-05],[-0.04384246468544,0.018723810091615,-0.0552848726511]],[[0.1426328420639,0.0063434899784625,0.10909584909678],[0.027817960828543,0.023635374382138,0.11024640500546],[-0.030301040038466,0.096745356917381,0.048213306814432]],[[0.095319025218487,0.10013671219349,-0.032158948481083],[0.021996144205332,0.042341321706772,-0.058376666158438],[-0.048299580812454,0.026785798370838,-0.030277354642749]],[[0.024151302874088,0.065430946648121,0.063856892287731],[-0.080744102597237,-0.08424349874258,-0.035217389464378],[-0.036275345832109,-0.085683085024357,-0.011038235388696]],[[0.052612993866205,0.058594077825546,-0.054918840527534],[0.039567969739437,-0.01085227355361,-0.035333089530468],[-0.047259829938412,0.014613064937294,0.013077976182103]],[[-0.11965813487768,0.0376344807446,3.3181830076501e-05],[0.050893921405077,0.038039948791265,-0.0097954738885164],[0.0166856944561,0.01464468985796,-0.13934235274792]],[[0.033705018460751,0.045126158744097,0.040894191712141],[0.086618795990944,0.092658936977386,0.038575902581215],[0.059537682682276,-0.014273657463491,-0.068797007203102]],[[0.0061079026199877,-0.033399496227503,-0.033561881631613],[-0.0074209687300026,0.029639039188623,0.14199450612068],[-0.10182784497738,0.076334357261658,0.094439566135406]],[[0.010451043955982,-0.01254705619067,-0.13336151838303],[0.073905326426029,-0.081497251987457,-0.031223922967911],[-0.072431012988091,-0.068330235779285,0.048405651003122]],[[0.0036920020356774,-0.088182188570499,-0.042946793138981],[-0.021754728630185,-0.020861545577645,0.020021073520184],[-0.1182908937335,-0.031231001019478,-0.046522244811058]],[[0.10473222285509,-0.05066304281354,-0.022808793932199],[0.022506155073643,-0.019783120602369,0.036556929349899],[-0.010951436124742,0.00096145638963208,0.078421205282211]],[[-0.010863281786442,-0.12984819710255,-0.11031588166952],[0.0025982225779444,0.026035761460662,0.045931737869978],[0.0038143589626998,-0.00084572663763538,-0.015391066670418]],[[-0.04065965488553,0.042690496891737,0.083032332360744],[0.075118467211723,0.0064822295680642,0.089826188981533],[0.034721899777651,-0.033821661025286,0.029549792408943]],[[0.068800665438175,0.067340612411499,0.053833357989788],[0.0056649139150977,-0.088888645172119,0.015510499477386],[0.036591045558453,-0.016396660357714,0.01572646945715]],[[0.15323553979397,-0.096505843102932,-0.11569499224424],[0.11749349534512,-0.055237472057343,-0.022951774299145],[0.0044632111676037,-0.090177960693836,0.01134536229074]],[[0.03692664206028,-0.0458869561553,-0.11487723886967],[0.030309712514281,-0.031431410461664,0.093723125755787],[-0.010739332996309,0.079297669231892,0.036614004522562]],[[0.010779157280922,0.020533256232738,-0.0072197541594505],[-0.016947234049439,0.010986607521772,-0.0011927018640563],[-0.028842464089394,-0.025943178683519,0.018300538882613]],[[0.00038665151805617,0.015724094584584,-0.070870622992516],[0.0077949785627425,0.035709720104933,0.038025431334972],[-0.018761409446597,-0.046927854418755,0.051264919340611]],[[-0.051660049706697,-0.049305975437164,0.0066761164925992],[0.041619580239058,-0.063450381159782,0.012849144637585],[-0.030735330656171,-0.063815250992775,0.037390545010567]],[[0.030644191429019,-0.049977779388428,-0.0694824680686],[-0.091839022934437,0.021031994372606,0.1030108332634],[-0.095791980624199,-0.018217725679278,0.11100784689188]],[[-0.048836939036846,-0.034990314394236,0.0048340260982513],[0.072583213448524,0.085439629852772,-3.7843994505238e-05],[0.0091824335977435,0.10691817849874,-0.020064724609256]],[[0.056195303797722,0.02426172606647,0.070171274244785],[0.0052051623351872,0.040523305535316,0.067416571080685],[-0.0010693859076127,0.023485405370593,0.060454960912466]],[[0.10816019028425,-0.057574328035116,0.068560734391212],[0.037124007940292,0.049352146685123,0.014831999316812],[0.0113485455513,0.048820991069078,-0.10905437171459]],[[-0.053538672626019,-0.1056734547019,-0.14436513185501],[0.067549914121628,-0.0001417374733137,-0.078910909593105],[-0.021978639066219,0.022597627714276,-0.062470782548189]],[[0.033876098692417,-0.060782730579376,0.0066519337706268],[-0.071857899427414,0.052876830101013,-0.056977324187756],[-0.022103752940893,-0.081218674778938,0.022301252931356]],[[0.028225723654032,-0.037982661277056,0.055882912129164],[-0.015116070397198,-0.03007254563272,0.056153606623411],[0.018240535631776,-0.010144397616386,0.062066931277514]],[[0.053975712507963,-0.014545079320669,0.0547269359231],[0.084178559482098,-0.10092285275459,0.046783171594143],[-0.019588803872466,-0.023593934252858,0.091120213270187]],[[-0.094968318939209,0.036469284445047,-0.10248085856438],[-0.098448261618614,0.077391251921654,0.06612815707922],[-0.016491934657097,-0.0029814157169312,-0.025449112057686]],[[-0.024876274168491,0.0033805780112743,-0.056413762271404],[0.016778293997049,0.056541830301285,-0.003703989321366],[0.025657586753368,-0.054034426808357,0.049893889576197]],[[-0.0032331324182451,0.11828030645847,-0.026802521198988],[-0.089593909680843,-0.026733960956335,-0.009483247064054],[-0.02072443626821,0.050720680505037,0.061477109789848]],[[0.019629944115877,-0.0013654953800142,0.087747201323509],[-0.020662968978286,-0.081167586147785,-0.054426942020655],[0.036757737398148,-0.047976393252611,0.071431137621403]]],[[[0.0019808576907963,0.010881041176617,-0.061013851314783],[0.030983651056886,0.14336715638638,0.0057025547139347],[0.047423303127289,0.058827593922615,-0.05796442553401]],[[-0.095886424183846,-0.038747981190681,0.30557608604431],[-0.040391027927399,-0.072236970067024,0.14751204848289],[0.010030176490545,-0.052494592964649,-0.079834468662739]],[[0.17679199576378,0.19553101062775,-0.064088448882103],[0.034259654581547,0.0050405850633979,0.05654988065362],[-0.013354736380279,-0.043488677591085,0.16318002343178]],[[0.027970284223557,-0.064154230058193,0.10124562680721],[-0.11546228080988,-0.068451374769211,0.074760116636753],[-0.078990437090397,-0.029537681490183,0.078117862343788]],[[0.13336780667305,0.14851072430611,-0.045009858906269],[0.089067369699478,-0.10403878241777,0.043832547962666],[-0.042345505207777,-0.15969878435135,0.21646136045456]],[[0.081592381000519,0.14277501404285,0.093339838087559],[0.12533815205097,0.062848396599293,-0.093007579445839],[-0.066507503390312,0.11467610299587,0.11170587688684]],[[-0.051862951368093,-0.12310573458672,-0.19111287593842],[0.011715023778379,0.097023092210293,-0.03045386262238],[-0.025409026071429,0.13411888480186,-0.11395652592182]],[[0.021775886416435,0.011357322335243,-0.11328352987766],[-0.0037765232846141,0.045531682670116,0.023263102397323],[0.083168432116508,0.091115482151508,0.068251997232437]],[[-0.15280562639236,-0.12642782926559,-0.046151712536812],[0.11166679859161,0.12624816596508,0.088527970016003],[-0.26242026686668,-0.05465031042695,-0.28557151556015]],[[-0.14644891023636,-0.092500112950802,0.085845932364464],[-0.12431222200394,0.17449563741684,0.1115437746048],[-0.02905679307878,-0.025420896708965,-0.15768595039845]],[[0.026005825027823,-0.17627893388271,0.088696092367172],[0.010388448834419,0.08490265160799,-0.079106532037258],[0.12792629003525,0.13938035070896,0.23556990921497]],[[-0.27749568223953,-0.17285157740116,0.046429123729467],[-0.0039052839856595,0.07536193728447,0.036789812147617],[-0.044128481298685,0.15914575755596,0.19085903465748]],[[0.012242410331964,0.10841163992882,0.22357693314552],[-0.084212049841881,-0.049360617995262,-0.19987697899342],[0.0018678364576772,0.09672600030899,0.16395416855812]],[[0.038100656121969,0.21650588512421,0.10232837498188],[-0.11735983192921,-0.12351198494434,-0.20808388292789],[-0.10101792961359,0.0538045540452,0.16744673252106]],[[0.048722855746746,-0.0029412731528282,0.093766257166862],[0.042092241346836,-0.00061469391221181,0.060904331505299],[0.076298050582409,0.035513907670975,-0.013958271592855]],[[0.10266391187906,-0.058806225657463,0.031033284962177],[-0.074525505304337,-0.12602040171623,-0.011338259093463],[0.078830219805241,-0.027185667306185,-0.18342587351799]],[[-0.01063088607043,0.014612534083426,0.010527549311519],[-0.11613747477531,0.084408596158028,0.16073840856552],[-0.0062616905197501,0.0031973000150174,-0.0055689658038318]],[[-0.038271330296993,0.021013788878918,-0.12324200570583],[0.094475992023945,0.11444971710443,0.068203262984753],[-0.10350645333529,0.0085823507979512,-0.078222423791885]],[[0.061334349215031,-0.0077102286741138,0.024068089202046],[0.014625633135438,-0.15514767169952,0.022275926545262],[0.13950876891613,-0.050558444112539,0.10515002906322]],[[-0.19029992818832,-0.26915681362152,0.041804775595665],[0.11027704924345,0.029542233794928,0.084063030779362],[0.052314218133688,0.19350430369377,0.018610864877701]],[[-0.027554973959923,-0.12926523387432,-0.14396546781063],[-0.091456472873688,-0.13497054576874,-0.088247038424015],[0.047898072749376,-0.023426914587617,0.10189472138882]],[[-0.052230183035135,-0.16734863817692,-0.17226134240627],[-0.11392987519503,-0.022027771919966,0.12139954417944],[0.0051736189052463,-0.054024592041969,-0.13229861855507]],[[-0.12346297502518,-0.029503807425499,0.20744320750237],[0.05765463039279,0.0683364123106,0.10054548829794],[-0.033827755600214,-0.16568811237812,-0.24894876778126]],[[-0.058322928845882,-0.13669404387474,0.028944041579962],[-0.073939144611359,-0.09566592425108,-0.11141086369753],[0.015954336151481,-0.19053815305233,0.011103952303529]],[[-0.040760401636362,0.049550026655197,-0.0014255921123549],[0.014340745285153,-0.043728388845921,-0.040532972663641],[0.12929843366146,0.24334229528904,-0.0015215325402096]],[[0.074580006301403,0.13666546344757,-0.063420191407204],[0.050995163619518,0.08255285769701,0.063408650457859],[-0.12766928970814,-0.0095672747120261,-0.076659470796585]],[[-0.067932441830635,-0.08934311568737,0.18561694025993],[0.034956779330969,-0.020396457985044,0.015134195797145],[0.038188207894564,0.018159538507462,-0.023781174793839]],[[-0.028573540970683,0.070653207600117,-0.14521907269955],[-0.1230706423521,0.019708171486855,0.070507034659386],[-0.020894579589367,-0.018192991614342,-0.056812804192305]],[[-0.069859199225903,-0.052984077483416,0.059555094689131],[-0.2945060133934,-0.064091116189957,-0.029721351340413],[-0.14713799953461,0.040943533182144,0.017926435917616]],[[0.048705317080021,-0.025154259055853,0.06257064640522],[0.0078519945964217,-0.10885328799486,-0.086320750415325],[-0.10601442307234,-0.035855606198311,-0.055311404168606]],[[0.022389065474272,-0.032674871385098,0.11450964212418],[-0.073059365153313,-0.20129245519638,0.013117993250489],[0.092370003461838,-0.17508958280087,0.28904169797897]],[[0.081651926040649,-0.065035574138165,-0.1331140100956],[0.17535805702209,0.068626724183559,0.0057811439037323],[0.071497939527035,0.17982034385204,0.20958688855171]],[[-0.16990095376968,-0.19889518618584,0.040095932781696],[-0.071566455066204,0.1856676787138,0.1153532192111],[0.075554206967354,0.055531766265631,0.074761226773262]],[[-0.073416344821453,-0.16500133275986,-0.26985773444176],[0.12538427114487,-0.039771057665348,-0.082773946225643],[0.055896256119013,-0.1097366809845,-0.13813763856888]],[[0.028356783092022,0.17779986560345,0.044638019055128],[-0.15576386451721,0.14881487190723,-0.14878453314304],[-0.013377794064581,-0.073540024459362,-0.0088696498423815]],[[-0.003883316880092,0.080808758735657,0.0092644561082125],[0.090974189341068,0.043700717389584,-0.10670372843742],[-0.045197769999504,-0.05909401550889,0.01165025960654]],[[-0.089103765785694,0.15413236618042,0.026337699964643],[0.18297138810158,0.20792527496815,0.047908995300531],[-0.013527139090002,-0.023301193490624,0.13650053739548]],[[0.032825224101543,0.038301438093185,0.17396484315395],[0.0044651897624135,-0.042784430086613,-0.021533031016588],[-0.13751268386841,-0.022756112739444,-0.066204197704792]],[[0.1419385522604,0.11580870300531,-0.039108254015446],[0.01227961666882,0.060740042477846,-0.052633207291365],[-0.023061214014888,-0.13391014933586,0.12336830049753]],[[-0.067216642200947,-0.034412302076817,-0.12041941285133],[-0.023824607953429,-0.00085884006693959,0.073350951075554],[0.13192790746689,-0.077650040388107,-0.11551881581545]],[[0.033326435834169,0.070166580379009,-0.089863896369934],[-0.029725752770901,-0.11770878732204,-0.058836091309786],[0.094576202332973,-0.053535997867584,-0.089638598263264]],[[-0.010724738240242,-0.031041484326124,-0.0074367844499648],[0.068639352917671,-0.021994557231665,0.1376415938139],[-0.12746301293373,-0.0097359828650951,0.14503572881222]],[[-0.11298004537821,-0.11005173623562,0.0088872360065579],[-0.16914401948452,-0.15448454022408,-0.044811297208071],[-0.12578259408474,-0.043070912361145,0.014683797955513]],[[-0.015986038371921,-0.051707033067942,0.027536375448108],[-0.088870711624622,-0.0030943972524256,0.082788690924644],[0.022783210501075,0.05880443751812,0.017171747982502]],[[0.20843456685543,0.072988331317902,-0.082493342459202],[-0.12915466725826,-0.07710625231266,0.15007868409157],[0.01181757915765,-0.13226841390133,-0.07510519772768]],[[-0.0036987804342061,0.030740592628717,-0.0052470983937383],[-0.051143296062946,-0.083474598824978,0.10809647291899],[-0.057108409702778,-0.11908328533173,-0.16206011176109]],[[0.064022392034531,0.043847363442183,-0.16090805828571],[-0.14473642408848,-0.011421468108892,-0.064463041722775],[0.022863700985909,-0.039236590266228,0.093402169644833]],[[-0.2087791711092,-0.055374462157488,-0.026162911206484],[0.20787252485752,0.074464157223701,-0.060422796756029],[-0.091608263552189,-0.17250849306583,-0.039263542741537]],[[0.20306923985481,0.032381124794483,0.13714373111725],[-0.08467622846365,-0.18891830742359,-0.056740384548903],[0.051514115184546,0.064766854047775,0.015846349298954]],[[-0.14584086835384,-0.044870235025883,0.019295835867524],[-0.15621255338192,-0.19910003244877,-0.056101694703102],[-0.1613822132349,-0.047996878623962,-0.030423901975155]],[[-0.015372675843537,-0.11428735405207,-0.091117769479752],[-0.017048804089427,-0.12907588481903,-0.056565966457129],[-0.025615409016609,-0.056317672133446,0.19097170233727]],[[0.037287425249815,0.14241570234299,0.0050846533849835],[-0.038705311715603,-0.097420141100883,0.014266255311668],[-0.0028848173096776,-0.052340224385262,-0.19697025418282]],[[0.018188070505857,0.055999211966991,0.085331030189991],[0.027710665017366,-0.038815107196569,-0.051595415920019],[0.012483166530728,0.0037453814875335,-0.042819701135159]],[[-0.054277516901493,-0.038142051547766,0.018144957721233],[0.035846155136824,0.050802823156118,-0.19687166810036],[0.0020705438219011,-0.026770854368806,0.045210879296064]],[[0.17439344525337,0.085665918886662,0.16227573156357],[-0.074560597538948,0.14884662628174,-0.034365706145763],[-0.20147527754307,-0.0019255987135693,0.027013232931495]],[[-0.13721378147602,-0.064281366765499,-0.11875762790442],[0.0046374998055398,0.040819674730301,0.0045743761584163],[0.14536888897419,-0.050604201853275,-0.24994319677353]],[[-0.082991816103458,-0.13872462511063,0.32011145353317],[0.027174584567547,-0.058253940194845,0.091827102005482],[-0.23781155049801,-0.089383259415627,-0.10067860782146]],[[-0.10474090278149,-0.067127391695976,0.065208971500397],[-0.23762784898281,-0.20096175372601,-0.056117314845324],[-0.071271263062954,0.013156815432012,0.13760609924793]],[[-0.13752734661102,-0.061217229813337,-0.14631414413452],[-0.21357163786888,-0.13876819610596,-0.11980771273375],[0.0216373372823,-0.14909633994102,-0.17753660678864]],[[0.027647782117128,-0.066525660455227,-0.20707534253597],[-0.065609559416771,0.043632015585899,0.0050505446270108],[-0.22051203250885,-0.36264643073082,-0.17598524689674]],[[0.064309857785702,-0.019937474280596,0.0089139472693205],[0.11622255295515,-0.069964475929737,-0.17772062122822],[-0.082830160856247,-0.015822330489755,0.015305615030229]],[[-0.017317688092589,0.024512935429811,-0.056189808994532],[0.18426798284054,0.069587238132954,-0.16899524629116],[-0.2350931763649,-0.10073646903038,-0.022192411124706]],[[-0.097083784639835,-0.023988613858819,0.15234890580177],[0.17410071194172,-0.011724910698831,-0.29698050022125],[-0.043234124779701,0.031951263546944,0.047281712293625]],[[0.051298480480909,-0.1027095168829,-0.19224010407925],[0.096491061151028,-0.12175089865923,0.096172012388706],[0.27025789022446,-0.022164165973663,0.14165344834328]],[[-0.017257170751691,0.047570519149303,0.13238108158112],[-0.10659559816122,-0.019451702013612,-0.043123863637447],[-0.044669061899185,0.048536837100983,-0.045486737042665]],[[-0.017538027837873,0.39201098680496,-0.11886055022478],[-0.027644896879792,-0.11700966209173,0.20002172887325],[-0.012507423758507,-0.11688713729382,-0.17442800104618]],[[-0.13838547468185,-0.11770705878735,0.28831449151039],[-0.037614613771439,0.23869279026985,-0.072275497019291],[0.094793155789375,-0.089046075940132,-0.019738476723433]],[[-0.1186895892024,-0.075240939855576,0.010331889614463],[-0.23027727007866,-0.053870894014835,-0.066325359046459],[-0.015832738950849,-0.019645035266876,-0.063671827316284]],[[0.13346281647682,0.061736807227135,0.01804044470191],[0.04052272066474,0.069320894777775,-0.044337674975395],[-0.027474684640765,-0.036724302917719,0.027585638687015]],[[0.34742295742035,0.035563237965107,-0.042049366980791],[0.11601722985506,-0.035929948091507,-0.16191959381104],[0.11232466250658,-0.067669220268726,0.22250846028328]],[[-0.076411567628384,-0.055187791585922,0.28442537784576],[0.087845832109451,0.061188213527203,-0.35839837789536],[0.064602494239807,-0.0090489331632853,0.073556952178478]],[[0.10088235884905,-0.070600308477879,-0.020951360464096],[-0.024017378687859,0.022332813590765,0.032357074320316],[0.12078404426575,0.030394166707993,0.20198778808117]],[[-0.21150158345699,-0.040904156863689,0.043068554252386],[-0.17716427147388,-0.19275513291359,-0.17768873274326],[-0.046601627022028,-0.22830231487751,-0.02772630751133]],[[0.01615964435041,0.14815972745419,0.17117920517921],[-0.015979334712029,0.17706137895584,0.025358125567436],[-0.10103936493397,0.062067147344351,-0.12061244249344]],[[-0.049956131726503,0.019420417025685,0.11764723807573],[-0.069047011435032,-0.088482707738876,0.15989781916142],[0.016520133242011,-0.017748340964317,0.092563480138779]],[[0.10624057799578,-0.2226223051548,-0.21928925812244],[-0.075214013457298,-0.077973738312721,-0.034493029117584],[0.004129380453378,0.067753858864307,-0.022940121591091]],[[-0.1713724732399,-0.11646945029497,0.16628310084343],[0.06098422780633,0.06386286765337,-0.0067382389679551],[-0.10903167724609,0.05158881470561,0.050432614982128]],[[0.072911851108074,-0.11282927542925,-0.070580996572971],[-0.22000098228455,-0.27133885025978,0.086894936859608],[-0.13969868421555,0.11401214450598,-0.094635397195816]],[[-0.10758744925261,-0.062262665480375,-0.15695843100548],[-0.093880832195282,-0.089129209518433,0.0045669605024159],[0.21744139492512,0.27308210730553,0.02145629748702]],[[-0.24280570447445,-0.19755159318447,0.014175125397742],[-0.050083536654711,0.035581648349762,-0.11949899792671],[0.033060163259506,-0.059440720826387,-0.067813441157341]],[[-0.051591593772173,0.10703659057617,0.11194982379675],[-0.041938845068216,-0.13491390645504,0.10731609165668],[-0.061415389180183,0.054024580866098,0.077901273965836]],[[0.013230571523309,-0.0035373971331865,0.051823630928993],[-0.23741653561592,-0.087163418531418,0.074182115495205],[0.10435447096825,0.090999580919743,-0.15103761851788]],[[0.16653966903687,0.14940698444843,0.011216421611607],[0.18537314236164,0.092561289668083,0.16455341875553],[0.090277403593063,0.13865748047829,-0.091345332562923]],[[0.011481174267828,0.27471363544464,-0.043690767139196],[-0.031137833371758,-0.037825148552656,0.17637909948826],[-0.23078776896,-0.050005845725536,0.071983724832535]],[[-0.017920514568686,0.0077562029473484,-0.067549847066402],[-0.019625514745712,0.036784846335649,0.28362476825714],[0.047260884195566,-0.099944211542606,-0.20991460978985]],[[-0.13069041073322,-0.069802962243557,-0.12546946108341],[0.019579427316785,0.06713479757309,0.12845075130463],[-0.055281575769186,-0.064199261367321,-0.13755570352077]],[[-0.0040179276838899,0.095481537282467,-0.036998573690653],[0.018150003626943,-0.030592223629355,-0.066912606358528],[-0.020080588757992,0.055753722786903,-0.063886649906635]],[[-0.23755685985088,0.075821846723557,0.10051757097244],[0.27573198080063,0.2801548242569,0.038557201623917],[0.033766355365515,-0.010983034037054,-0.025380708277225]],[[-0.073361605405807,0.032099023461342,0.020748406648636],[-0.12326264381409,-0.044819716364145,-0.030404567718506],[-0.031661797314882,0.18216502666473,-0.011136323213577]],[[-0.053497221320868,0.041542753577232,0.0028857071883976],[-0.044448152184486,0.058770928531885,-0.05984777957201],[-0.0017224856419489,-0.020320598036051,-0.0376384742558]],[[0.26539254188538,0.15678428113461,-0.14949679374695],[0.18435600399971,0.050042111426592,0.069015897810459],[0.13185277581215,-0.056524604558945,0.017974801361561]],[[-0.035402975976467,-0.08833535015583,-0.2523986697197],[-0.10131012648344,-0.028908547013998,-0.019840827211738],[-0.097527645528316,-0.088603720068932,-0.0051974095404148]],[[-0.059162832796574,-0.16368640959263,-0.14419303834438],[0.0068870466202497,0.14463898539543,0.015279167331755],[-0.084313042461872,0.012266064062715,0.037944238632917]],[[0.028372958302498,-0.008865493349731,0.032796036452055],[0.034893691539764,0.075315825641155,-0.14991155266762],[-0.069797433912754,-0.041872166097164,0.1370442956686]],[[-0.045313119888306,-0.066989563405514,0.040086649358273],[0.093592397868633,-0.022829877212644,-0.14017023146152],[0.085958182811737,-0.063138104975224,-0.055497024208307]],[[0.0031468814704567,-0.013460895977914,0.011510392650962],[-0.19040848314762,-0.11891999840736,0.040738888084888],[0.086200550198555,0.11129215359688,0.38106673955917]],[[-0.053905870765448,-0.023692930117249,-0.076451599597931],[0.061053920537233,-0.12415362894535,-0.098196938633919],[0.025484388694167,-0.015994247049093,-0.093843527138233]],[[-0.065323814749718,0.066120199859142,0.064770072698593],[-0.060997929424047,0.12257830798626,0.12285581976175],[0.11999810487032,0.056444264948368,-0.32447728514671]],[[-0.073579035699368,-0.051891628652811,-0.26846170425415],[0.11957114934921,0.0076710321009159,0.069247841835022],[-0.021472780033946,0.099515192210674,0.15034618973732]],[[0.032349277287722,-0.015299315564334,0.012014137580991],[0.098193608224392,0.17017664015293,0.24433335661888],[0.0098019102588296,0.010644001886249,-0.052456568926573]],[[0.0228361915797,0.0057788132689893,0.10780534893274],[-0.080186888575554,-0.10530976206064,-0.061472848057747],[-0.26439064741135,-0.15934374928474,-0.011665348894894]],[[0.1633330732584,0.10325293987989,0.19367583096027],[-0.055339690297842,-0.082570113241673,-0.03984459489584],[0.10734327882528,0.1175896897912,0.085641995072365]],[[-0.016751041635871,-0.05637339502573,0.32322472333908],[-0.1195440813899,0.12978968024254,-0.019443495199084],[-0.047570653259754,-0.079217284917831,-0.087572433054447]],[[0.11021590977907,0.085969544947147,-0.047515869140625],[-0.092944175004959,-0.070246979594231,0.088834077119827],[0.14700329303741,0.12357969582081,0.12843126058578]],[[0.20650224387646,0.082445025444031,0.053649935871363],[-0.11345276981592,-0.12514373660088,-0.21721461415291],[-0.062307648360729,0.042194273322821,0.12750120460987]],[[0.19884234666824,0.087101265788078,0.068657286465168],[0.0040182690136135,-0.063627898693085,-0.049281284213066],[-0.10560975968838,0.065093457698822,0.0057163429446518]],[[0.034941483289003,-0.018742775544524,0.13769353926182],[0.014408311806619,-0.14190563559532,-0.058707341551781],[0.16489346325397,-0.041980411857367,-0.03132701292634]],[[-0.10519601404667,-0.0022680985275656,-0.0087641663849354],[-0.12204080820084,-0.07755982875824,-0.14268277585506],[0.061681680381298,0.071419447660446,0.21606960892677]],[[0.086100466549397,0.064725011587143,0.12179571390152],[-0.049174029380083,0.041920151561499,0.12489128857851],[0.12793064117432,0.10230088979006,0.075905412435532]],[[0.17309072613716,0.12967029213905,-0.010352713055909],[0.079271830618382,-0.09882877022028,0.041977509856224],[0.15245191752911,0.020886708050966,-0.11420840024948]],[[-0.013353222981095,-0.041822481900454,-0.065199427306652],[-0.0423234552145,-0.015987657010555,0.045173164457083],[-0.029405264183879,-0.015309621579945,-0.03917495906353]],[[-0.022343948483467,-0.11940842866898,-0.093624569475651],[-0.050150897353888,0.077220305800438,-0.14427238702774],[0.006298023276031,-0.16332702338696,-0.012907538563013]],[[0.13088956475258,0.041804641485214,-0.12877008318901],[0.11382955312729,-0.11690279096365,0.23577569425106],[0.11519471555948,-0.084495969116688,-0.14664316177368]],[[0.17933601140976,-0.042998012155294,-0.18296094238758],[0.075737528502941,-0.030169581994414,0.022276423871517],[-0.022630842402577,0.031835589557886,0.089891634881496]],[[-0.17802195250988,-0.032342117279768,-0.019781520590186],[-0.10010556131601,-0.084505699574947,0.18056787550449],[0.13311365246773,-0.19107101857662,-0.063527330756187]],[[0.034401949495077,0.04351570084691,0.089592605829239],[0.033027250319719,0.054916393011808,-0.074058517813683],[0.055179186165333,-0.016804799437523,0.058141887187958]],[[-0.0083673289045691,-0.022602083161473,-0.009878515265882],[0.11845996230841,-0.062594309449196,-0.12190941721201],[-0.04551575705409,-0.0020047251600772,-0.03088416531682]],[[0.10234447568655,0.11703904718161,-0.12358351051807],[0.074629262089729,-0.014794549904764,-0.18382468819618],[0.062194116413593,0.36740753054619,0.50906020402908]],[[0.097825057804585,-0.044051695615053,0.12539009749889],[0.020962845534086,0.00075714517151937,0.046532064676285],[-0.048388514667749,-0.10780312120914,-0.089046888053417]],[[0.034495029598475,0.071644529700279,-0.010474427603185],[0.017528761178255,-0.065188437700272,-0.1490174382925],[0.064785562455654,-0.10466372966766,0.014957227744162]],[[0.049521319568157,0.058642186224461,0.0071711675263941],[0.043100919574499,0.004873963072896,-0.21332284808159],[0.10107834637165,-0.0056297797709703,-0.0082257380709052]],[[0.23805579543114,0.13906893134117,-0.033256560564041],[-0.090637162327766,0.053170874714851,-0.0058313747867942],[-0.062458071857691,0.088268630206585,0.097743541002274]],[[-0.11759266257286,-0.087596781551838,-0.15619790554047],[-0.09437982738018,-0.03516973182559,-0.17978098988533],[0.026628106832504,-0.074863202869892,-0.056297205388546]],[[-0.011837036348879,-0.0065553281456232,0.23551894724369],[0.10873980075121,0.18156756460667,-0.020682414993644],[-0.041229479014874,0.069799110293388,0.028095273301005]],[[0.16363853216171,0.036605399101973,0.1147546172142],[-0.066804699599743,-0.056258428841829,0.11974535137415],[0.021461104974151,-0.11808973550797,0.038927044719458]],[[0.0039967922493815,0.0038563259877264,-0.15125948190689],[-0.026122743263841,-0.035064294934273,0.10076625645161],[-0.12120899558067,-0.27390652894974,-0.26137122511864]],[[-0.10720176249743,-0.19945350289345,0.15941362082958],[0.19752202928066,0.0084098810330033,0.084171108901501],[-0.0079207103699446,-0.13261990249157,0.05371019244194]],[[-0.034643948078156,-0.040521062910557,0.093502819538116],[0.071199223399162,-0.19871093332767,-0.47926431894302],[0.087847091257572,-0.024655777961016,-0.1702034175396]]],[[[0.11192412674427,0.063799619674683,0.099265098571777],[-0.0030936184339225,0.18522438406944,-0.028739778324962],[0.055802680552006,-0.0048283473588526,-0.15778854489326]],[[-0.16525650024414,0.083848014473915,0.17751869559288],[-0.054294355213642,0.081118911504745,0.062103968113661],[-0.065799944102764,0.029727350920439,-0.06585019081831]],[[-0.04784544557333,-0.15698601305485,0.13404260575771],[0.065737880766392,-0.078576289117336,0.051401942968369],[0.19458052515984,0.10825806856155,0.048477411270142]],[[-0.25268664956093,0.15352803468704,-0.14127832651138],[-0.14565382897854,0.046938590705395,-0.0033443735446781],[-0.018709385767579,-0.027927991002798,-0.11581360548735]],[[-0.10685969889164,0.034251555800438,-0.039189763367176],[-0.010355280712247,-0.015660876408219,-0.03759378567338],[-0.03233590722084,0.060554731637239,-0.023967610672116]],[[-0.16607749462128,0.0024777965154499,0.076083354651928],[0.15610404312611,0.024486567825079,-0.054081086069345],[0.26172092556953,-0.052078105509281,-0.079126589000225]],[[0.14271719753742,0.090330950915813,0.09414829313755],[-0.043292816728354,-0.18974928557873,0.067325934767723],[0.069150097668171,0.10538897663355,0.20116643607616]],[[-0.088516734540462,-0.067296966910362,0.018987538293004],[-0.112269744277,0.10714076459408,0.25738197565079],[-0.037705514580011,0.031431771814823,0.037440583109856]],[[0.029652968049049,0.039411198347807,-0.12896490097046],[-0.021119318902493,0.084626138210297,-0.022121349349618],[-0.10598724335432,0.048333950340748,0.10522900521755]],[[0.20170409977436,-0.085914224386215,-0.081971347332001],[-0.14011518657207,-0.058578040450811,-0.087860912084579],[0.0059094708412886,-0.033753760159016,0.17514303326607]],[[-0.078565940260887,-0.11369956284761,0.071192532777786],[-0.03991637378931,-0.21104614436626,0.060665760189295],[0.030593294650316,-0.022890860214829,0.05506731197238]],[[0.075832314789295,-0.027228217571974,-0.094005323946476],[0.070378914475441,-0.088113285601139,-0.057023476809263],[0.036859527230263,-0.14174211025238,0.13627006113529]],[[-0.10812097787857,-0.009175862185657,0.1276728361845],[-0.031564686447382,0.046891737729311,0.062460336834192],[0.008555413223803,0.015174188651145,-0.12716449797153]],[[-0.10372098535299,0.028069488704205,0.045451391488314],[0.033844243735075,0.053033154457808,-0.0015535856364295],[0.049345657229424,0.056522205471992,0.036702483892441]],[[-0.042271364480257,0.14054881036282,-0.0068373447284102],[0.042211662977934,0.12268169224262,0.076711736619473],[-0.058671876788139,-0.12748754024506,-0.13705915212631]],[[0.32926371693611,-0.16063487529755,-0.075629740953445],[0.27361351251602,-0.072644397616386,0.00043665189878084],[0.28266954421997,-0.13428971171379,0.02157891727984]],[[0.065870344638824,-0.084588587284088,-0.12719674408436],[-0.059249274432659,0.093908853828907,0.048396404832602],[-0.068247020244598,-0.081251613795757,-0.14989446103573]],[[0.13454182446003,-0.024951916188002,0.064996004104614],[0.0044326093047857,0.014116517268121,-0.017198275774717],[-0.1237937361002,-0.093417033553123,0.092505492269993]],[[0.19251720607281,-0.032630600035191,0.076271839439869],[0.10084077715874,0.038050960749388,-0.0074090622365475],[-0.11383472383022,-0.12283509224653,-0.10526688396931]],[[0.04681234434247,0.013319340534508,0.081806518137455],[-0.052146095782518,-0.16787922382355,0.10615279525518],[-0.056177031248808,-0.20470501482487,0.027784598991275]],[[0.14170011878014,-0.048986364156008,-0.018733434379101],[-0.053151551634073,-0.086303547024727,0.0041286847554147],[-0.073629796504974,-0.0053973980247974,0.052622754126787]],[[-0.010478830896318,0.044989738613367,-0.040404122322798],[0.038342278450727,0.03558437526226,-0.016840172931552],[-0.033996421843767,0.11132647842169,0.21558707952499]],[[0.063248567283154,0.091739483177662,-0.12097507715225],[-0.12324933707714,-0.076506040990353,-0.077426500618458],[-0.16885070502758,0.036394573748112,0.040096171200275]],[[-0.085027068853378,-0.087642692029476,-0.053286705166101],[0.052875768393278,-0.17459528148174,-0.25995847582817],[0.12395133823156,0.13005986809731,-0.13757833838463]],[[-0.16276448965073,0.025514394044876,0.10351115465164],[-0.035641726106405,0.089976839721203,0.13504801690578],[0.035174552351236,-0.019333129748702,0.2052855938673]],[[-0.13949503004551,0.24670518934727,-0.14328883588314],[-0.022794099524617,0.0044089807197452,-0.097189143300056],[0.033691726624966,-0.094899848103523,-0.0102718193084]],[[0.060598902404308,0.04155982658267,0.19313980638981],[-0.090111330151558,0.010994384996593,0.071145363152027],[0.078191474080086,0.035799384117126,0.082232736051083]],[[0.14598958194256,0.10197006911039,-0.20501266419888],[-0.030650662258267,0.08283357322216,-0.10125312954187],[-0.01537149399519,0.09533765912056,-0.062106322497129]],[[-0.13371801376343,0.18212586641312,-0.10448534786701],[-0.15670788288116,0.011289092712104,0.0084038954228163],[-0.10727731138468,0.03790270537138,-0.15950855612755]],[[0.18311209976673,0.044660415500402,0.088692866265774],[0.10312218219042,0.053726468235254,0.018404664471745],[-0.15584333240986,-0.052758727222681,-0.12695807218552]],[[0.046223107725382,0.13144913315773,-0.16933047771454],[0.068447515368462,0.0922611951828,0.041918393224478],[-0.13736538589001,0.0793496966362,0.039152804762125]],[[-0.036389291286469,0.0024924946483225,-0.01636298187077],[-0.032635822892189,-0.038599900901318,-0.05203515291214],[-0.072051629424095,-0.14347103238106,0.059717562049627]],[[0.15190081298351,-0.081685677170753,-0.13954104483128],[-0.11333422362804,0.09315001219511,-0.0075482283718884],[-0.07205231487751,0.10738050192595,0.045857086777687]],[[0.12637494504452,0.071653053164482,-0.039766188710928],[0.029389884322882,0.069088459014893,0.047414612025023],[-0.17745746672153,-0.11247390508652,0.074301764369011]],[[-0.0014390408759937,-0.16882489621639,-0.049301169812679],[-0.083811804652214,-0.14604000747204,-0.14178323745728],[-0.16381980478764,-0.19622273743153,-0.182601749897]],[[-0.078651413321495,0.092608653008938,-0.074804671108723],[0.10613492131233,-0.14866176247597,-0.043362848460674],[-0.16725273430347,0.014142208732665,-0.019647896289825]],[[0.19268694519997,0.043451875448227,0.077475100755692],[-0.14064493775368,0.054794244468212,0.10642982274294],[-0.12108494341373,0.092552870512009,-0.040284611284733]],[[-0.059440411627293,0.010227267630398,-0.16168197989464],[0.061810877174139,0.14915715157986,0.0150744356215],[0.12674300372601,-0.073216393589973,0.036750074476004]],[[-0.13613872230053,0.049739021807909,-0.033307544887066],[0.033233657479286,0.17594558000565,-0.3322694003582],[-0.05641632899642,0.038825284689665,-0.05437733605504]],[[0.13630716502666,-0.021783091127872,0.086945109069347],[0.011603221297264,-0.1097087264061,-0.03493670001626],[0.12160125374794,-0.1669335514307,-0.010703086853027]],[[0.15270632505417,0.15541957318783,-0.001532239606604],[0.06792738288641,-0.050207633525133,0.0009044156759046],[-0.073085501790047,-0.021439678966999,0.056252282112837]],[[-0.0025286329910159,-0.1830275952816,0.0031128111295402],[-0.035916600376368,-0.0244633667171,0.15628702938557],[0.050706826150417,-0.097368583083153,0.040121205151081]],[[-0.064506493508816,0.067347906529903,0.029224868863821],[-0.16080597043037,-0.047893084585667,-0.072055369615555],[-0.054069008678198,0.0075676757842302,0.017059780657291]],[[0.037377316504717,-0.0060557737015188,-0.11198782175779],[0.043473418802023,0.048245683312416,-0.038341864943504],[-0.01009279396385,0.10554514080286,-0.033227309584618]],[[0.081291295588017,-0.0026810767594725,0.070722095668316],[-0.044525749981403,0.042308513075113,-0.023557331413031],[-0.075764894485474,0.051520258188248,0.071533471345901]],[[-0.068768933415413,0.038098819553852,0.074289567768574],[-0.063965022563934,-0.14525382220745,-0.07911878824234],[0.075202986598015,-0.074970871210098,-0.031306453049183]],[[-0.025010075420141,-0.19288665056229,0.014127416536212],[-0.061416234821081,-0.095893554389477,-0.03966036438942],[-0.19175724685192,-0.13484880328178,0.11294129490852]],[[-0.10785681754351,-0.099774584174156,0.043426178395748],[-0.021671460941434,0.068316131830215,0.14698538184166],[0.093546688556671,0.079432941973209,0.067478649318218]],[[-0.25684678554535,0.012815552763641,0.12763784825802],[-0.099155217409134,-0.021564051508904,-0.04162310808897],[-0.021767124533653,0.07836727052927,0.032353147864342]],[[-0.074304968118668,-0.016217460855842,-0.044520493596792],[-0.049903459846973,0.073626659810543,0.088890440762043],[0.074220478534698,-0.020495645701885,0.060433939099312]],[[-0.10778067260981,0.0010276990942657,-0.064595863223076],[0.049388557672501,0.046045012772083,-0.080758914351463],[0.242276892066,0.0090091181918979,0.058872319757938]],[[0.19390942156315,-0.174181625247,0.01194959692657],[0.071202449500561,-0.10154494643211,0.14698658883572],[-0.0049235527403653,-0.13105425238609,0.11037259548903]],[[-0.045292027294636,-0.021462788805366,-0.084309682250023],[-0.0073117124848068,-0.0091990362852812,-0.053893528878689],[-0.069736450910568,-0.058221075683832,-0.018299167975783]],[[-0.017051750794053,0.11861667782068,-0.048869848251343],[0.069016799330711,0.06314904242754,-0.028663095086813],[-0.015830298885703,-0.034643687307835,-0.036075554788113]],[[0.19514779746532,-0.23985962569714,-0.087546229362488],[0.1087866127491,-0.011560317128897,-0.034968573600054],[0.13641534745693,0.21969549357891,0.048804629594088]],[[-0.071325726807117,0.046040154993534,-0.17091251909733],[0.012719583697617,-0.01372179761529,0.082163326442242],[-0.058697883039713,0.0099211195483804,-0.087444953620434]],[[0.22189384698868,0.051291208714247,0.020622646436095],[0.00037493029958569,-0.067650772631168,-0.11051069945097],[0.058670114725828,-0.20266003906727,-0.10677365958691]],[[-0.042669400572777,0.0085946964100003,-0.12523877620697],[0.038488533347845,-0.068027168512344,-0.10549090057611],[-0.14445823431015,-0.099017798900604,-0.062863670289516]],[[-0.054260294884443,-0.13520202040672,-0.10002725571394],[-0.026831030845642,-0.10404247790575,-0.0055859684944153],[0.053985957056284,0.024394363164902,-0.043614614754915]],[[-0.2205947637558,0.32806965708733,-0.071305274963379],[0.040551759302616,0.14313273131847,-0.075869709253311],[-0.26923459768295,0.28938338160515,-0.03488552942872]],[[0.013638229109347,-0.058509673923254,-0.14664261043072],[-0.081924416124821,-0.11803670227528,-0.034038763493299],[0.001986961113289,-0.016529127955437,-0.22368495166302]],[[-0.13795731961727,-0.030440462753177,-0.032854985445738],[-0.073337137699127,-0.0039140856824815,-0.043908827006817],[-0.13412560522556,-0.089026033878326,0.041915476322174]],[[0.092666245996952,-0.057155713438988,0.13005289435387],[-0.12338174134493,-0.044160932302475,0.051927648484707],[-0.0098727140575647,-0.076738357543945,0.069955758750439]],[[0.11792601644993,-0.15785846114159,0.028754318132997],[0.082620278000832,-0.022318851202726,-0.10651712864637],[0.069139033555984,-0.11794044822454,0.080543868243694]],[[0.068109847605228,-0.090783715248108,-0.14500172436237],[0.098917163908482,-0.0069600692950189,-0.1557589173317],[0.0076074292883277,0.12763594090939,0.0053449468687177]],[[-0.18308001756668,0.10856486111879,0.12404015660286],[-0.083894982933998,-0.064302496612072,0.11366051435471],[0.032044820487499,0.019220190122724,-0.11102946102619]],[[-0.0076240091584623,-0.11101866513491,-0.13257297873497],[-0.094655625522137,-0.099070519208908,-0.12745267152786],[0.35143375396729,0.18698517978191,0.086122795939445]],[[-0.18356893956661,-0.040861345827579,0.0094649223610759],[-0.027746815234423,-0.10791763663292,-0.028114799410105],[0.10063958913088,-0.024092081934214,-0.10031955689192]],[[-0.053217478096485,-0.04067449644208,0.01419311016798],[0.071594543755054,0.037946943193674,-0.15276016294956],[0.012061359360814,0.066160060465336,-0.13153512775898]],[[0.023082746192813,-0.11798349022865,-0.064634598791599],[-0.0078018908388913,-0.029111349955201,0.068501621484756],[0.070071808993816,0.011375986970961,-0.16801299154758]],[[0.11341904103756,0.069260634481907,0.14679419994354],[0.065168730914593,-0.039127476513386,-0.030252071097493],[-0.112723082304,-0.047887861728668,-0.12328588962555]],[[0.12644927203655,-0.0067261257208884,0.06648612767458],[-0.11558280140162,0.16905406117439,0.1238646581769],[-0.039704833179712,0.19689179956913,0.085238590836525]],[[-0.050488580018282,0.051881145685911,0.035482883453369],[-0.008938898332417,0.18293657898903,-0.016833901405334],[0.099606961011887,-0.18595272302628,-0.15027548372746]],[[0.013479279354215,-0.023724073544145,-0.034608501940966],[-0.14810240268707,0.09482092410326,-0.044370695948601],[-0.30865201354027,0.021097414195538,0.11961403489113]],[[0.09806002676487,0.23726652562618,-0.025225907564163],[-0.10995914041996,0.19462063908577,-0.0089056184515357],[-0.035237781703472,-0.11415834724903,0.0050212298519909]],[[0.061272285878658,-0.046914823353291,0.17437024414539],[0.046407159417868,-0.060196489095688,0.10350622981787],[-0.071099475026131,-0.11052372306585,0.11609937250614]],[[0.076644532382488,-0.081952817738056,0.03039501234889],[0.0085111651569605,-0.19573839008808,-0.083621807396412],[0.049281716346741,0.089345283806324,-0.024923419579864]],[[-0.14092816412449,0.026270966976881,0.013421035371721],[-0.0016065108356997,-0.086943328380585,0.051268760114908],[-0.029081674292684,-0.078311793506145,-0.10102267563343]],[[0.058632034808397,-0.060999762266874,-0.18594945967197],[0.11500310152769,-0.075980730354786,-0.043042581528425],[0.013681263662875,0.094722270965576,0.053877923637629]],[[-0.15834054350853,0.018586656078696,0.051629416644573],[-0.064629964530468,-0.024222290143371,-0.067997381091118],[-0.099787004292011,-0.17821773886681,-0.13372677564621]],[[-0.081199608743191,-0.071185931563377,-0.030027026310563],[0.15626160800457,0.10416328907013,0.029696725308895],[0.14570251107216,0.013247116468847,0.023917865008116]],[[0.086152128875256,0.11725186556578,0.032201051712036],[0.13225591182709,0.018840936943889,0.040404867380857],[-0.080416612327099,0.082872062921524,-0.02838565595448]],[[-0.10221727192402,-0.041158817708492,0.28387731313705],[-0.14653518795967,0.077169857919216,0.30768007040024],[-0.10292009264231,0.0061333640478551,0.31962794065475]],[[-0.059115048497915,-0.083707772195339,-0.054423470050097],[-0.10336749255657,-0.057408183813095,-0.083858668804169],[-0.34845557808876,-0.065616264939308,-0.012204620055854]],[[0.023745350539684,0.013182488270104,0.17789176106453],[-0.040367349982262,0.12990668416023,-0.032531440258026],[-0.14523814618587,0.097509823739529,-0.11077466607094]],[[-0.10516480356455,-0.022217078134418,0.0098505206406116],[-0.01615453325212,0.015787821263075,0.10893171280622],[0.065231658518314,-0.1413592249155,0.13361248373985]],[[0.076579824090004,0.051333904266357,-0.018119342625141],[-0.05782064422965,-0.041266895830631,-0.08124878257513],[0.2399564832449,-0.028376925736666,-0.076752744615078]],[[-0.069336503744125,-0.058632880449295,0.061416428536177],[-0.033421907573938,-0.091781973838806,-0.053408291190863],[0.054229330271482,-0.16579549014568,-0.056338805705309]],[[0.093440912663937,-0.14265727996826,-0.028193546459079],[0.084330089390278,-0.0043717194348574,0.099760226905346],[-0.049916461110115,0.20905196666718,-0.0032710814848542]],[[-0.23899321258068,0.071491897106171,0.099973380565643],[0.060089405626059,-0.05231412127614,-0.076094463467598],[0.045154452323914,0.055574305355549,-0.04764748364687]],[[-0.021981857717037,0.11081620305777,0.090594574809074],[0.039229288697243,-0.011321915313601,0.12816980481148],[-0.072338610887527,-0.12889048457146,0.055499896407127]],[[-0.079794496297836,0.19779281318188,-0.12187411636114],[-0.13187336921692,0.053440894931555,-0.068957485258579],[-0.17055578529835,0.030373137444258,-0.095051877200603]],[[0.084816515445709,-0.076262928545475,-0.11193531751633],[0.11804338544607,0.033106714487076,0.018314696848392],[-0.062478728592396,-0.049412082880735,0.033883556723595]],[[-0.042646244168282,-0.40203639864922,-0.1601328253746],[-0.013014656491578,-0.089484445750713,-0.10132502019405],[0.086151339113712,0.084797821938992,-0.044509578496218]],[[0.00015232908481266,-0.051640029996634,0.37651520967484],[0.023822145536542,0.020872242748737,0.16122342646122],[-0.14533770084381,-0.030600290745497,0.15253922343254]],[[-0.092849753797054,-0.18107235431671,-0.05706986412406],[0.10456009954214,-0.14317427575588,-0.31860128045082],[0.076380059123039,-0.11667334288359,0.099510379135609]],[[-0.017553627490997,-0.11783366650343,0.0091448295861483],[-0.068041041493416,-0.094402432441711,-0.0029643161688],[0.022108472883701,0.018659280613065,-0.10190689563751]],[[0.021940741688013,-0.079654760658741,0.055150203406811],[-0.010086303576827,-0.12480348348618,0.22324638068676],[0.0060847462154925,0.18609149754047,0.26759839057922]],[[0.170739620924,-0.034526076167822,0.011495119892061],[-0.024435799568892,-0.03923512622714,0.079076871275902],[-0.029434777796268,0.20510894060135,-0.028262617066503]],[[0.069749131798744,0.033191572874784,-0.14374496042728],[0.092210300266743,0.069612398743629,-0.078776895999908],[-0.017372949048877,-0.007872711867094,-0.019544968381524]],[[0.053448565304279,0.050996486097574,0.1330101788044],[0.094372183084488,-0.14403650164604,-0.0942003428936],[0.10159337520599,-0.071193113923073,-0.063245296478271]],[[0.044499184936285,0.04008724167943,0.20480811595917],[0.0057510924525559,-0.041398078203201,-0.0041517470963299],[0.010230829939246,-0.049543503671885,0.012900874949992]],[[-0.23910871148109,-0.12189998477697,-0.23114216327667],[-0.13908430933952,-0.063670910894871,-0.053778328001499],[-0.075250335037708,0.0089266411960125,-0.051223039627075]],[[0.015088690444827,-0.04341185092926,0.038281351327896],[0.12800148129463,-0.0088091203942895,0.11174663156271],[0.34958052635193,-0.022767569869757,-0.14377009868622]],[[0.020950742065907,0.068052195012569,0.30845221877098],[0.062233805656433,-0.10667958855629,-0.085973516106606],[0.050190296024084,-0.0054337079636753,-0.01061141025275]],[[0.051332615315914,0.0021223044022918,-0.030977198854089],[0.078179620206356,-0.0049029015935957,-0.16071055829525],[0.0067166462540627,-0.025356067344546,-0.12129934132099]],[[-0.14315503835678,0.071788959205151,0.17671492695808],[-0.060264237225056,0.098889343440533,0.20267872512341],[-0.11398628354073,-0.30756726861,-0.036069553345442]],[[0.1446445286274,-0.15291509032249,-0.12618233263493],[0.18091410398483,-0.13742445409298,-0.099143706262112],[0.1280857026577,-0.24477703869343,0.0085845505818725]],[[0.036823123693466,-0.09879170358181,-0.002720010234043],[0.047809060662985,0.033342804759741,0.13040806353092],[0.052280858159065,-0.11603966355324,0.020199857652187]],[[0.12239415198565,-0.15905766189098,-0.17866930365562],[0.1719172000885,0.061001442372799,-0.14331842958927],[0.17787332832813,0.10492742806673,0.039098296314478]],[[-0.0071990257129073,-0.035723105072975,0.054013658314943],[-0.026882283389568,-0.059887144714594,-0.11445562541485],[0.010146492160857,-0.18737161159515,-0.10764192789793]],[[0.0011489859316498,-0.066330350935459,0.042835664004087],[-0.089722648262978,0.03119751252234,-0.015460996888578],[-0.06590411812067,-0.11957281827927,0.016846800222993]],[[-0.079225987195969,-0.098184548318386,-0.020403793081641],[0.036858018487692,-0.0068068187683821,0.16903632879257],[0.046464778482914,0.099524147808552,0.045923642814159]],[[-0.016945252195001,-0.015649804845452,0.041965890675783],[-0.0077641126699746,0.0046396171674132,-0.030857155099511],[0.052111480385065,0.074073798954487,0.15223591029644]],[[0.019956350326538,-0.073671288788319,-0.086847849190235],[0.029519306495786,0.066568695008755,0.0097514726221561],[0.097953245043755,0.042634751647711,-0.10920667648315]],[[-0.060194872319698,-0.047010511159897,0.25490820407867],[-0.037165462970734,-0.1109371855855,-0.024449778720737],[-0.095931313931942,-0.058963160961866,-0.094142720103264]],[[-0.041579388082027,-0.073106624186039,-0.025621546432376],[0.058811444789171,-0.1694251447916,-0.046406246721745],[0.1633607596159,0.066663347184658,-0.023015022277832]],[[0.12382356822491,-0.019934885203838,0.019173670560122],[0.2745016515255,-0.19533544778824,-0.0056702634319663],[0.055507950484753,-0.12704725563526,-0.00016301011783071]],[[0.0091606704518199,0.068304724991322,-0.0067250193096697],[0.0359942689538,0.051701001822948,-0.046414211392403],[-0.067384481430054,-0.14987730979919,-0.035103876143694]],[[-0.14027707278728,0.024298863485456,-0.05221563950181],[0.12128513306379,0.08034048974514,-0.12436053901911],[-0.095241144299507,0.037415951490402,-0.15346752107143]],[[-0.062700569629669,0.04611012712121,0.033679153770208],[-0.091755039989948,0.054735578596592,-0.0089288577437401],[-0.12431394308805,-0.050499439239502,0.00085827137809247]],[[0.061534490436316,0.05736343935132,-0.085495509207249],[0.0031884924974293,0.07915785163641,-0.17194972932339],[0.048877995461226,0.0026312025729567,-0.0088563151657581]],[[-0.11313927173615,0.063961885869503,0.047768838703632],[-0.017885103821754,-0.0014428439317271,-0.083108775317669],[-0.052692219614983,-0.14030092954636,-0.04065440967679]],[[-0.016853380948305,-0.061732150614262,-0.017952680587769],[0.055623672902584,-0.037314265966415,0.02603318169713],[0.25262063741684,0.10870913416147,-0.058805610984564]],[[-0.036978684365749,-0.085653267800808,0.10669901221991],[0.017528895288706,-0.011151882819831,-0.0046525960788131],[-0.1459087729454,-0.086047425866127,0.21441000699997]],[[-0.15376909077168,0.25341239571571,-0.067801184952259],[-0.17187283933163,0.14009900391102,-0.0028825306799263],[-0.015944592654705,0.070382200181484,-0.0018306890269741]],[[-0.1066552400589,-0.034884389489889,0.10036150366068],[-0.10271495580673,0.049022700637579,0.065583229064941],[0.016348319128156,0.06540122628212,-0.026718761771917]],[[0.21446397900581,-0.034686509519815,-0.16390976309776],[-0.016466608271003,-0.1057843118906,0.16022665798664],[-0.13790705800056,-0.10431516170502,-0.19613900780678]]],[[[0.069703847169876,-0.10605509579182,-0.068341307342052],[-0.0041019232012331,-0.00029829569393769,-0.093293443322182],[0.20554815232754,-0.06262469291687,-0.065908506512642]],[[0.21318158507347,-0.2406567633152,0.20099315047264],[0.061001025140285,-0.32646119594574,0.23843517899513],[-0.12958531081676,-0.14022806286812,0.10300738364458]],[[0.12440383434296,-0.069713823497295,-0.075653664767742],[0.056517940014601,-0.021566832438111,-0.0014429623261094],[0.099095694720745,0.041801448911428,0.016702421009541]],[[-0.057199619710445,-0.10442999005318,-0.023012481629848],[-0.10186316072941,-0.15533930063248,-0.10359912365675],[-0.01887041144073,0.14079311490059,-0.024352576583624]],[[-0.015150042250752,0.0052468725480139,-0.10762715339661],[-0.014671920798719,-0.039525657892227,-0.086165718734264],[0.13418473303318,0.14891895651817,0.049328070133924]],[[0.089122541248798,-0.018985070288181,0.06285247951746],[-0.16077210009098,0.2614209651947,-0.0041967867873609],[-0.073747105896473,0.18749108910561,0.016001077368855]],[[0.077109411358833,-0.14121586084366,-0.034985780715942],[0.11376775056124,0.0088753830641508,0.094805173575878],[-0.10474461317062,-0.057293605059385,0.11014974862337]],[[-0.1077433899045,-0.1240700930357,-0.025431429967284],[0.10290701687336,-0.11863518506289,-0.037896182388067],[0.18923807144165,0.016075577586889,0.1035473048687]],[[0.086451187729836,-0.0020207935012877,0.042683213949203],[0.0389169678092,-0.046969469636679,0.032572947442532],[0.027067333459854,-0.041269663721323,0.029641671106219]],[[-0.042877815663815,-0.1341328471899,-0.12026821821928],[-0.11324829608202,0.026871562004089,-0.10422351956367],[-0.39874684810638,0.054784040898085,-0.13188742101192]],[[0.18518520891666,0.19355565309525,0.11897370219231],[0.018243484199047,-0.15541715919971,-0.076402500271797],[0.006753726862371,-0.1575843244791,-0.029684843495488]],[[-0.092188432812691,-0.021863266825676,-0.0029044030234218],[-0.11819826066494,-0.149986743927,-0.084598831832409],[0.075895935297012,-0.0038183173164725,0.019410254433751]],[[-0.097976095974445,-0.12053259462118,-0.04816772043705],[-0.085523009300232,-0.010069210082293,-0.0043781641870737],[0.024644114077091,0.061615001410246,-0.16159518063068]],[[0.096093155443668,-0.042759351432323,0.013562225736678],[0.059626214206219,-0.043894954025745,-0.011814102530479],[-0.03749293088913,-0.1197674870491,0.21010246872902]],[[-0.0021467709448189,0.010100619867444,0.065830126404762],[-0.11815485358238,-0.013169636949897,0.10352077335119],[-0.049239099025726,0.01173026766628,-0.06677833199501]],[[0.0079751508310437,0.17535324394703,-0.13356159627438],[-0.041516952216625,0.16296960413456,-0.1564364284277],[-0.044532906264067,0.19438757002354,-0.0728425309062]],[[0.068900391459465,-0.021811738610268,-0.043333042412996],[0.16418026387691,-0.029208645224571,-0.0043099597096443],[0.21130806207657,-0.019045257940888,-0.11533282697201]],[[0.011270336806774,-0.17449682950974,0.20198927819729],[0.047785349190235,-0.26794880628586,0.0080107627436519],[0.21942809224129,-0.17924256622791,0.029147805646062]],[[0.046531412750483,0.13619111478329,0.0012697585625574],[-0.14811535179615,0.17586506903172,-0.10270085930824],[0.20289482176304,0.17590175569057,-0.085280440747738]],[[-0.14828416705132,0.16153661906719,0.11988015472889],[-0.083231560885906,0.03438912704587,-0.0032505830749869],[0.11196318268776,0.12108798325062,0.052072025835514]],[[0.034702241420746,-0.034092545509338,0.093976706266403],[-0.037104837596416,-0.12168652564287,-0.055874586105347],[0.024849502369761,-0.10783282667398,0.070956386625767]],[[-0.073264211416245,0.1722549945116,-0.014836843125522],[-0.012306935153902,0.16582708060741,0.00027467202744447],[-0.11675185710192,0.094393312931061,0.026331696659327]],[[0.14151629805565,-0.11694836616516,0.033233299851418],[-0.036312174052,-0.085721299052238,-0.017372963950038],[0.17318390309811,-0.018553705886006,0.17203286290169]],[[0.042383372783661,0.00083865207852796,0.02092008665204],[0.0092777675017715,-0.15327689051628,-0.15179005265236],[0.048603691160679,0.074188180267811,-0.16085056960583]],[[-0.080981656908989,-0.05233633890748,-0.064780540764332],[-0.083141811192036,0.075919970870018,-0.10162292420864],[-0.1435994207859,0.13166892528534,-0.0024939216673374]],[[0.070776522159576,0.086593590676785,0.25698593258858],[-0.051377467811108,-0.057068679481745,0.042983397841454],[-0.025426024571061,0.13013899326324,-0.18209527432919]],[[0.14767876267433,0.10607112944126,0.045438896864653],[-0.051534112542868,0.068240836262703,0.002645731670782],[0.037272401154041,-0.10141909867525,-0.031633619219065]],[[0.071712151169777,-0.025736458599567,-0.072469592094421],[-0.014964299276471,-0.056521344929934,-0.11115361750126],[0.14674210548401,-0.068720757961273,-0.011234475299716]],[[-0.0092915575951338,-0.0056825475767255,-0.058219775557518],[-0.089353114366531,0.034651361405849,0.065688945353031],[0.079337678849697,0.083924345672131,0.15864858031273]],[[-0.11858425289392,0.070331811904907,-0.045663349330425],[-0.19899564981461,0.011058257892728,-0.032493125647306],[0.071821600198746,-0.021671455353498,-0.06816153973341]],[[0.081238090991974,0.096690431237221,0.23559413850307],[0.079290181398392,-0.0034484032075852,0.084970444440842],[-0.12173385173082,-0.045969177037477,0.20907689630985]],[[0.073940508067608,-0.10126672685146,0.05055420473218],[0.046249311417341,-0.14951309561729,-0.021671537309885],[0.21151956915855,0.11197212338448,-0.044891379773617]],[[-0.19656066596508,-0.026832254603505,-0.13207633793354],[0.049948789179325,-0.11416059732437,-0.027464495971799],[0.012800463475287,0.011190781369805,-0.085410602390766]],[[-0.17770040035248,-0.040511328727007,-0.074471287429333],[0.054478704929352,-0.03377827256918,0.034940533339977],[0.079125456511974,0.044910628348589,0.15310078859329]],[[0.072133719921112,-0.090131908655167,-0.1330804079771],[-0.031489565968513,-0.052643500268459,0.032511863857508],[0.10084421187639,0.023150602355599,0.095671340823174]],[[-0.2136073410511,-0.044664207845926,0.13256940245628],[-0.10525090247393,0.035331729799509,0.049779627472162],[-0.21051770448685,-0.059513736516237,0.097140945494175]],[[0.049846526235342,0.095018602907658,0.19648185372353],[-0.00058170396368951,-0.12112350016832,0.00049313326599076],[0.10148943960667,0.015002293512225,0.026562882587314]],[[-0.061071772128344,0.1448312997818,0.058854185044765],[-0.0018033118685707,0.15259711444378,-0.059238564223051],[0.009336699731648,-0.056162729859352,0.030582804232836]],[[0.087094403803349,-0.0094031589105725,0.17751675844193],[0.017371945083141,-0.1222123503685,0.047345072031021],[0.080350615084171,-0.12695579230785,-0.015006305649877]],[[0.11851318925619,-0.0090536074712873,0.078643426299095],[-0.087698623538017,-0.051500156521797,0.095830619335175],[0.046982504427433,-0.05671864002943,-0.10827625542879]],[[0.1631548255682,-0.023835627362132,0.15770597755909],[0.022485245019197,-0.070791639387608,-0.029264291748405],[0.008162978105247,-0.062005087733269,-0.056560166180134]],[[0.040701441466808,0.072422832250595,-0.081280916929245],[-0.0063246134668589,-0.044451031833887,0.090220659971237],[-0.0053278896957636,0.07074286043644,0.062231410294771]],[[0.049402218312025,-0.014777211472392,0.076070293784142],[-0.10863860696554,-0.031528737396002,-0.028166526928544],[0.1674679517746,-0.089345954358578,-0.090453460812569]],[[-0.13893540203571,-0.047788146883249,0.074134282767773],[-0.19989004731178,0.0092327734455466,-0.013172579929233],[0.010116953402758,0.078033640980721,-0.044118382036686]],[[-0.12730725109577,-0.1612104177475,-0.089684903621674],[-0.011552928946912,-0.074459925293922,-0.018551371991634],[-0.029624918475747,-0.086591340601444,0.011582294479012]],[[-0.075760498642921,-0.10864938050508,0.00040319838444702],[-0.054839253425598,0.024498170241714,-0.010487236082554],[-0.082736276090145,-0.058470919728279,0.076178140938282]],[[-0.1020575761795,0.013977123424411,-0.08069758862257],[-0.18209370970726,-0.033304713666439,-0.099327318370342],[-0.13863131403923,-0.11760382354259,0.095308564603329]],[[0.14923205971718,0.1125113889575,0.027303734794259],[-0.023545507341623,-0.045284774154425,-0.083771087229252],[0.022922351956367,-0.067220941185951,0.018030686303973]],[[0.1054982021451,-0.10032645612955,0.08719552308321],[-0.025345254689455,-0.022935064509511,0.082229427993298],[-0.033703409135342,-0.049799732863903,0.13605000078678]],[[0.0059259696863592,-0.11800845712423,0.061136230826378],[0.02582985535264,0.018136804923415,0.029649026691914],[0.11027729511261,0.040010675787926,0.042423404753208]],[[0.031408660113811,0.11305640637875,-0.10942512005568],[-0.081659317016602,-0.067367248237133,-0.10637461394072],[-0.10703061521053,0.13587705790997,-0.099998086690903]],[[-0.017124092206359,-0.00021857411775272,-0.092053927481174],[0.15395468473434,0.13409259915352,-0.11641857773066],[0.070220232009888,-0.076813541352749,-0.057319726794958]],[[-0.099306464195251,-0.064290001988411,-0.050724133849144],[-0.18397350609303,-0.15383179485798,-0.045522466301918],[-0.043797858059406,0.0046327267773449,0.04145585373044]],[[0.063147597014904,0.021112805232406,0.034345157444477],[0.0075084259733558,-0.014414365403354,0.033665589988232],[0.097615957260132,-0.045690272003412,0.28507429361343]],[[-0.033965814858675,0.17934101819992,-0.13471035659313],[-0.096278622746468,0.16906346380711,-0.057042732834816],[-0.043316334486008,0.15403881669044,0.092865727841854]],[[-0.01310065202415,-0.11156510561705,0.11245309561491],[0.22494389116764,-0.028890572488308,0.086355693638325],[-0.054668184369802,-0.045926038175821,-0.036392591893673]],[[-0.0049193422310054,0.25220304727554,-0.0085481349378824],[-0.06206813454628,0.074775815010071,-0.082696177065372],[-0.18795685470104,-0.039566408842802,-0.12132204324007]],[[0.035820815712214,-0.0088023785501719,-0.099246792495251],[-0.1560692191124,-0.081767655909061,-0.20502598583698],[0.13451334834099,0.15687789022923,-0.035775262862444]],[[0.089780539274216,0.069391213357449,-0.098676487803459],[0.066875718533993,-0.089781776070595,0.055999908596277],[0.035404480993748,-0.14889487624168,0.079085677862167]],[[-0.10220590978861,-0.078539095818996,0.10543181747198],[-0.028784489259124,0.10066650807858,0.23869018256664],[-0.108483299613,-0.15743274986744,0.29911109805107]],[[0.056909158825874,-0.19577603042126,-0.084814243018627],[0.017047112807631,-0.018015414476395,-0.073133207857609],[0.073316186666489,-0.00074232538463548,-0.2743943631649]],[[-0.088032610714436,-0.00085771188605577,0.00084254244575277],[0.02118318900466,-0.16696844995022,0.051290493458509],[-0.13303415477276,-0.020814379677176,0.20133352279663]],[[0.041067805141211,-0.076088778674603,-0.050070017576218],[-0.076777815818787,-0.079410418868065,0.10230219364166],[0.051402859389782,-0.089733146131039,-0.022959560155869]],[[0.22813975811005,-0.20538987219334,-0.013038603588939],[0.17555968463421,-0.16738012433052,-0.094963371753693],[0.24023868143559,-0.087750799953938,0.010405919514596]],[[-0.16718325018883,-0.017583321779966,0.11900820583105],[-0.071504160761833,0.079803913831711,0.11012338101864],[-0.20315703749657,0.11684527993202,0.19023585319519]],[[0.068121537566185,-0.19090127944946,0.019574074074626],[0.20456250011921,0.018727986142039,-0.076392024755478],[0.11865081638098,0.050323974341154,-0.017637992277741]],[[-0.095090441405773,-0.11902332305908,-0.14483699202538],[-0.019237447530031,0.035314340144396,0.038282413035631],[-0.047518417239189,0.028388414531946,-0.028642611578107]],[[-0.21728464961052,0.13405449688435,-0.098357252776623],[-0.26230221986771,-0.039399996399879,-0.24886335432529],[-0.039462249726057,0.11473628133535,-0.26145586371422]],[[-0.017041759565473,0.017700310796499,0.13621006906033],[0.078891925513744,0.047395184636116,0.10085193812847],[-0.065856620669365,-0.016421323642135,-0.036884885281324]],[[0.26952749490738,0.069867849349976,-0.11201701313257],[0.040959306061268,-0.1620554625988,-0.12489432096481],[0.13099007308483,-0.075653776526451,-0.10118158906698]],[[-0.007488755043596,-0.096768364310265,0.14074994623661],[0.050328820943832,-0.11011418700218,-0.10855946689844],[0.038586307317019,0.042295347899199,-0.1244730129838]],[[-0.088673062622547,0.014388316310942,0.13900411128998],[-0.011664731428027,0.010177657008171,0.11512227356434],[-0.050533108413219,0.06162628903985,0.10648620128632]],[[0.11137280613184,-0.20710791647434,0.099642671644688],[-0.14120365679264,-0.04076949134469,-0.03794352710247],[-0.06594655662775,-0.050579760223627,-0.050266236066818]],[[-0.099438287317753,0.13534058630466,-0.0080926446244121],[-0.020717445760965,-0.036144129931927,-0.079521030187607],[-0.12242430448532,-0.10974225401878,-0.017790470272303]],[[0.099811248481274,-0.10029722750187,0.14599815011024],[-0.024063108488917,-0.053947355598211,-0.072728306055069],[-0.076641470193863,0.028506709262729,-0.008317619562149]],[[-0.10553240776062,0.02448670193553,-0.00057673925766721],[-0.1678898781538,-0.021237004548311,-0.060048837214708],[-0.029997484758496,0.057800840586424,0.053633984178305]],[[0.03349569067359,0.25748971104622,0.072256676852703],[-0.023307211697102,-0.016232252120972,-0.11902455985546],[-0.043686576187611,-0.07837638258934,0.11821772903204]],[[0.038546469062567,0.12920704483986,-0.15696284174919],[-0.0015932217938825,-0.030976075679064,-0.036964051425457],[-0.070370130240917,-0.099362447857857,0.0088977944105864]],[[-0.011914619244635,-0.035710833966732,0.033203884959221],[-0.099525310099125,-0.12097437679768,-0.12245751172304],[0.11434359848499,-0.03012360073626,0.017530297860503]],[[-0.18487463891506,-0.00040097915916704,0.035524141043425],[-0.13804237544537,0.071158431470394,-0.099917896091938],[-0.030867796391249,-0.15170641243458,-0.038193807005882]],[[-0.19005627930164,-0.1110986918211,-0.023410553112626],[-0.14683087170124,-0.00073301093652844,0.056525804102421],[0.07082425057888,0.16738145053387,0.24218656122684]],[[-0.20671878755093,-0.082854419946671,0.050908554345369],[-0.14307096600533,-0.023065894842148,0.15484035015106],[0.033008895814419,-0.045960072427988,0.023838605731726]],[[0.084334790706635,-0.1482291072607,-0.029589980840683],[-0.12335880845785,-0.17541721463203,-0.078452236950397],[0.060412380844355,-0.085095666348934,-0.026728469878435]],[[0.025116235017776,0.097674556076527,-0.091526567935944],[-0.094895169138908,-0.074843734502792,-0.042122550308704],[-0.1461786031723,0.035088621079922,-0.05766573548317]],[[0.15750390291214,-0.050418931990862,-0.10227306932211],[-0.068252071738243,0.022394014522433,-0.0075136623345315],[-0.10323672741652,0.023391082882881,-0.088922210037708]],[[-0.038506962358952,-0.058612324297428,-0.075363211333752],[-0.063069559633732,-0.17375156283379,-0.057145785540342],[-0.046299256384373,-0.019008509814739,-0.066369771957397]],[[0.14990063011646,0.0022437714505941,0.12059470266104],[0.012986103072762,-0.067479826509953,0.059061389416456],[-0.14756751060486,-0.013825574889779,-0.031456265598536]],[[0.059673778712749,0.059276971966028,-0.14265245199203],[0.0041741160675883,0.03108804486692,0.028011737391353],[-0.14596542716026,-0.063411869108677,0.081738598644733]],[[0.0091656465083361,-0.082858435809612,-0.024317545816302],[0.021707028150558,-0.083135217428207,0.16822625696659],[0.11007279902697,0.078619338572025,0.085688769817352]],[[-0.02113937959075,-0.0096410680562258,0.12822403013706],[-0.0099992025643587,-0.052223343402147,-0.030317904427648],[0.038530167192221,0.085400238633156,-0.057844635099173]],[[0.11188999563456,-0.013794220983982,0.00044101662933826],[0.13093876838684,-0.024242665618658,-0.033578254282475],[0.12216022610664,-0.10372476279736,0.069837935268879]],[[-0.0077088908292353,0.011157878674567,0.074265286326408],[0.21325659751892,0.0055596926249564,0.080289833247662],[0.13406243920326,-0.060125160962343,0.15336893498898]],[[0.10050861537457,0.02585700340569,0.072530716657639],[0.08345028758049,-0.036224808543921,-0.0026069954037666],[0.092022977769375,0.0031906811054796,-0.047848992049694]],[[-0.076164484024048,0.037089765071869,-0.23957087099552],[0.020683977752924,-0.038859713822603,-0.13232159614563],[-0.051914684474468,0.014701290987432,-0.036722730845213]],[[-0.14794580638409,0.10615208745003,0.098326168954372],[0.11023684591055,-0.003586596576497,-0.18134307861328],[0.07790669053793,-0.23811723291874,-0.18906663358212]],[[-0.084532029926777,-0.058013696223497,0.015961682423949],[0.02307440713048,0.041423693299294,-0.1097738519311],[-0.054774213582277,0.21085923910141,0.047130037099123]],[[0.044497724622488,-0.0096395453438163,-0.11328331381083],[-0.036741141229868,-0.079366363584995,-0.17789921164513],[0.085835389792919,-0.030539561063051,0.033841319382191]],[[-0.0073387669399381,0.0076493108645082,0.044720694422722],[-0.097973674535751,-0.083266995847225,-0.1016853749752],[0.011593868024647,-0.023391030728817,-0.02105400338769]],[[0.033814027905464,-0.10564821958542,-0.18536289036274],[-0.091967590153217,0.053334455937147,0.079511120915413],[0.084074169397354,0.087107010185719,-0.092152170836926]],[[-0.016537632793188,-0.053123708814383,0.04698333516717],[0.10732997953892,-0.024273071438074,-0.075761154294014],[0.11163699626923,0.060030940920115,0.1840830296278]],[[-0.03919855505228,-0.0075329965911806,0.017477869987488],[-0.061430025845766,-0.056280560791492,-0.045345652848482],[0.056407608091831,0.079897545278072,0.00092525198124349]],[[-0.044159021228552,0.01256868056953,-0.009896264411509],[0.0088419420644641,-0.036208130419254,0.0085091423243284],[0.14067435264587,-0.12179289758205,0.11016735434532]],[[-0.0027996238786727,-0.035409070551395,-0.081160046160221],[-0.070082888007164,-0.037485107779503,-0.045012392103672],[0.042808141559362,-0.010655059479177,0.083801254630089]],[[-0.11867243051529,0.09753592312336,-0.14459542930126],[0.17753811180592,0.0098674958571792,0.021941935643554],[-0.12366446107626,0.042687635868788,-0.077943190932274]],[[-0.10067937523127,0.10985005646944,0.15038280189037],[-0.042968973517418,-0.0089356536045671,0.068316526710987],[-0.049179803580046,-0.072445727884769,-0.091170221567154]],[[-0.059829253703356,-0.07643985003233,0.0058899805881083],[-0.11614894121885,0.062915220856667,0.28628796339035],[-0.014315325766802,-0.0096054757013917,0.080517582595348]],[[-0.045092936605215,-0.047292392700911,0.066023446619511],[-0.039855398237705,0.075597673654556,-0.10429499298334],[0.1733520179987,0.021617319434881,-0.11952538788319]],[[-0.10153117775917,0.19973914325237,0.10882142931223],[-0.18545517325401,0.12827305495739,0.016691068187356],[-0.11724753677845,-0.072249382734299,-0.039403464645147]],[[-0.017912928014994,-0.019381342455745,-0.046038273721933],[0.015473704785109,-0.0067786863073707,-0.13281862437725],[-0.049199733883142,-0.092283070087433,-0.11197907477617]],[[-0.15338173508644,-0.032833240926266,-0.10605703294277],[-0.13349352777004,0.078129142522812,-0.062790893018246],[0.066167451441288,0.18416804075241,-0.094892702996731]],[[-0.040149748325348,-0.058375779539347,-0.09055732190609],[-0.07397647947073,-0.075637020170689,0.0056219133548439],[0.0013275712262839,-0.021022913977504,-0.025596408173442]],[[-0.0037152501754463,-0.056264899671078,0.046944726258516],[0.073764078319073,0.0013500100467354,0.018615977838635],[0.049849178642035,-0.072552338242531,0.16032691299915]],[[0.20309655368328,0.034515429288149,-0.17314147949219],[-0.032148476690054,-0.0032478526700288,0.1865526586771],[-0.086825296282768,-0.092216968536377,0.18329431116581]],[[-0.0038758700247854,-0.069732360541821,0.06003974378109],[0.0049475813284516,-0.113704174757,0.050421740859747],[0.047732461243868,0.073140323162079,-0.064314544200897]],[[0.022213881835341,0.01770780980587,0.064192824065685],[0.018640641123056,0.070060342550278,0.038557425141335],[-0.05550155043602,0.062479708343744,-0.0055648763664067]],[[-0.034865874797106,-0.0082027344033122,0.0135643100366],[-0.11587898433208,-0.038482185453176,-0.027206467464566],[-0.040755845606327,-0.045805379748344,0.05091842636466]],[[-0.11477836966515,-0.069594264030457,-0.088165909051895],[-0.037259314209223,0.1337788850069,0.042268566787243],[0.046185344457626,0.12596960365772,0.012557584792376]],[[0.18922451138496,0.10483057796955,-0.052716583013535],[0.15673904120922,-0.051649238914251,-0.27545356750488],[-0.10996913164854,0.013851696625352,-0.0092754671350121]],[[0.045634143054485,-0.027160478755832,-0.18054793775082],[-0.012798044830561,-0.04208605363965,-0.090352222323418],[0.099414929747581,0.10048675537109,0.077725283801556]],[[0.10547190159559,-0.075574442744255,-0.039187200367451],[0.014816106297076,-0.12309123575687,-0.0027318394277245],[-0.016758397221565,0.01390253379941,0.088344618678093]],[[-0.14929854869843,-0.062090557068586,0.034017097204924],[-0.12659227848053,-0.068553477525711,-0.11551804840565],[-0.011914484202862,0.028488831594586,0.065515719354153]],[[-0.034943368285894,-0.0042946892790496,-0.072027519345284],[-0.003368470352143,0.038707863539457,0.13245467841625],[0.029907520860434,-0.068096742033958,0.19585508108139]],[[-0.19795745611191,0.014423986896873,-0.024609729647636],[-0.12514291703701,-0.18273435533047,-0.061402224004269],[0.14493092894554,-0.11932925134897,0.009029951877892]],[[-0.066604465246201,-0.065987922251225,-0.021293902769685],[-0.048879541456699,0.16578906774521,-0.10276156663895],[0.14070165157318,0.13123722374439,-0.019959643483162]],[[0.099275648593903,-0.074552856385708,-0.069342762231827],[-0.043564528226852,-0.06355594098568,-0.0801787301898],[0.01811158657074,-0.05378445237875,-0.05613823980093]],[[0.14413692057133,-0.16639976203442,0.25236609578133],[-0.057968784123659,0.029962474480271,0.1489519327879],[-0.14324349164963,0.13870395720005,0.1256930232048]],[[0.042727969586849,0.043634623289108,0.12348774820566],[0.1969014108181,0.037637304514647,-0.19411262869835],[0.10341053456068,-0.0076305349357426,-0.13346640765667]],[[-0.11039737612009,-0.042873900383711,-0.027004154399037],[-0.13952450454235,0.11587931960821,-0.051375400274992],[-0.17029781639576,0.10250584036112,-0.1306754052639]]],[[[0.074960105121136,0.01356087718159,0.13887929916382],[0.02774466201663,0.058666907250881,0.1362179517746],[0.04661513864994,0.18380692601204,0.13444828987122]],[[0.0052222870290279,-0.02902221493423,-0.15322467684746],[0.02441743016243,-0.083692729473114,-0.15039817988873],[-0.18739400804043,-0.10157281160355,0.063376277685165]],[[-0.0068401610478759,-0.010857481509447,0.14063780009747],[0.26442530751228,0.19763362407684,-0.16685962677002],[0.30428794026375,-0.076125100255013,0.13540345430374]],[[-0.29633361101151,-0.10332591831684,0.03989901766181],[-0.083772152662277,0.0050589530728757,0.059912815690041],[-0.026487026363611,-0.27690359950066,0.00079252652358264]],[[0.11225216090679,0.038616571575403,0.30676546692848],[0.024632642045617,-0.043103855103254,0.21924071013927],[-0.04101774841547,-0.062928646802902,0.12614457309246]],[[-0.042456693947315,0.033446218818426,-0.0049805478192866],[-0.031509775668383,0.10446739941835,0.085304580628872],[-0.17911906540394,-0.041687689721584,-0.045180477201939]],[[0.048135325312614,-0.11761095374823,-0.015010666102171],[0.16885653138161,-0.033099453896284,0.054932445287704],[0.10612427443266,0.018236249685287,0.072934433817863]],[[0.05706238001585,0.1292919665575,0.098205290734768],[-0.097093336284161,0.049205955117941,0.0011265986831859],[-0.036129605025053,-0.10282231122255,-0.19841742515564]],[[0.16027329862118,0.083311729133129,-0.12996490299702],[-0.016251567751169,0.0049519375897944,0.16347472369671],[0.20610246062279,-0.19344538450241,-0.042309321463108]],[[0.012112484313548,-0.30839970707893,-0.14414384961128],[0.1293647736311,0.04189745336771,0.051984213292599],[0.20173516869545,-0.11677324026823,0.042689234018326]],[[0.010893194936216,0.00092095305444673,-0.0082140751183033],[-0.075784407556057,-0.093671806156635,-0.097377583384514],[-0.028095657005906,0.0015130820684135,-0.019491987302899]],[[0.1012440174818,-0.0070764124393463,0.19441555440426],[-0.018630562350154,-0.06131948158145,-0.012109165079892],[-0.008308531716466,-0.03711012750864,0.10890188068151]],[[0.0051055126823485,-0.23455606400967,0.04518073797226],[-0.0085933152586222,-0.1448869407177,-0.17023733258247],[0.081158898770809,-0.06665027141571,0.011730659753084]],[[0.11184542626143,-0.075376600027084,-0.11503937840462],[0.024606555700302,-0.081010907888412,-0.043317001312971],[0.0099978474900126,-0.010858680121601,-0.10464657098055]],[[0.2264067530632,0.17856429517269,0.03536344319582],[-0.054113507270813,0.057297199964523,0.067698918282986],[-0.062399204820395,-0.002277951920405,-0.029013019055128]],[[-0.070648021996021,-0.021803360432386,-0.14422836899757],[-0.033589947968721,-0.010199006646872,-0.092705219984055],[-0.11625967174768,-0.1443082690239,-0.31611236929893]],[[-0.0061382157728076,0.048076223582029,0.0060163848102093],[-0.25979670882225,-0.011110559105873,0.066402249038219],[0.084944322705269,-0.025432778522372,0.041559711098671]],[[0.083435073494911,-0.16997271776199,-0.13407105207443],[0.15068097412586,0.045673932880163,-0.063788294792175],[0.078092366456985,0.24364651739597,0.07445952296257]],[[-0.027179129421711,-0.044772878289223,-0.01750479452312],[-0.012674886733294,-0.046483710408211,0.0071059702895582],[0.13733023405075,0.10455871373415,0.12050601840019]],[[0.17414838075638,-0.17621199786663,-0.28194215893745],[0.11957548558712,-0.11826331168413,-0.11278145760298],[0.069316945970058,-0.18189905583858,0.077830612659454]],[[-0.096818543970585,0.026767786592245,-0.079744003713131],[-0.16127556562424,-0.18716961145401,-0.10495419800282],[-0.10345073789358,-0.15468141436577,-0.1145660802722]],[[0.13433642685413,-0.17966043949127,-0.15035405755043],[0.095253996551037,-0.051834873855114,0.089595079421997],[-0.20146146416664,-0.23239924013615,0.15172733366489]],[[-0.02669670060277,-0.059566456824541,0.14347279071808],[0.037631954997778,-0.062460914254189,0.003748805494979],[0.12513184547424,0.052878927439451,-0.051425844430923]],[[-0.0028464824426919,0.050674114376307,-0.0058380360715091],[-0.09047344326973,-0.11026825755835,-0.14348301291466],[-0.084719620645046,-0.15549923479557,-0.17048354446888]],[[-0.079368904232979,0.036410383880138,-0.057744283229113],[-0.14379905164242,-0.052709970623255,0.10884829610586],[-0.17202162742615,-0.048536457121372,0.081134833395481]],[[0.22580227255821,-0.12299005687237,-0.15342925488949],[0.1404076218605,0.21417027711868,-0.1246752589941],[0.030181035399437,0.029576973989606,-0.21997933089733]],[[0.1414847522974,0.13756576180458,-0.070781208574772],[0.050192411988974,0.14646989107132,0.14365290105343],[-0.05702055990696,0.20556461811066,0.03719474375248]],[[0.097184166312218,0.0010462341597304,0.11409793794155],[-0.020618477836251,-0.033130474388599,0.047314126044512],[-0.055683076381683,0.14777961373329,0.069509454071522]],[[-0.032362475991249,-0.050428662449121,-0.13419398665428],[-0.19433967769146,-0.069037757813931,-0.067785240709782],[-0.21886274218559,-0.027078460901976,0.070369236171246]],[[0.085100755095482,-0.059829153120518,-0.03734964504838],[0.095987074077129,0.059992741793394,0.024046458303928],[0.15867061913013,0.095283828675747,-0.017079619690776]],[[0.051984984427691,-0.16807091236115,-0.072910204529762],[0.0050628269091249,-0.058464962989092,0.063594795763493],[-0.05497208237648,-0.043893001973629,0.12017095834017]],[[0.089911721646786,-0.053420826792717,0.029415290802717],[-0.12264436483383,-0.084145113825798,0.063636176288128],[0.12612624466419,0.027517633512616,-0.066361032426357]],[[0.033267386257648,-0.084214195609093,0.062863230705261],[-0.0085191829130054,0.010418277233839,0.1667278110981],[-0.065790452063084,-0.021524349227548,0.084532491862774]],[[-0.12103897333145,0.16139775514603,0.05671950802207],[0.062188219279051,0.014409330673516,-0.044838275760412],[0.086988091468811,-0.096070401370525,0.047445300966501]],[[-0.07818628102541,0.044737845659256,0.081095889210701],[-0.0074062701314688,-0.035037633031607,-0.167032122612],[-0.10599625855684,-0.11675492674112,-0.026800690218806]],[[0.17447116971016,-0.012363833375275,-0.053036324679852],[0.092045523226261,-0.085632167756557,-0.098081827163696],[-0.088249586522579,-0.23740047216415,-0.1246629729867]],[[0.01286116335541,-0.22155439853668,-0.097613453865051],[-0.0067117097787559,0.014299537055194,0.10768651217222],[-0.087030313909054,-0.077757656574249,-0.039433538913727]],[[-0.031209591776133,-0.02632038295269,-0.21687214076519],[0.0037393667735159,-0.013193554244936,-0.14707931876183],[0.062018811702728,0.03221582993865,-0.12907280027866]],[[-0.03519444167614,-0.094081446528435,0.13253991305828],[-0.11729297041893,-0.066596895456314,0.01798771135509],[0.0048212590627372,-0.051382135599852,0.17824786901474]],[[0.017186915501952,0.044829826802015,-0.17400060594082],[0.14864736795425,-0.085795670747757,-0.042781684547663],[0.1418272703886,-0.2462772578001,0.070254907011986]],[[-0.090444266796112,0.022930137813091,0.0058076502755284],[-0.18201045691967,-0.018555691465735,0.071800783276558],[-0.0070640440098941,0.039640735834837,-0.10419198125601]],[[-0.14772242307663,-0.0073906891047955,-0.1891882866621],[0.019403971731663,0.19497355818748,-0.058929041028023],[-0.12059564143419,-0.0024906087201089,0.055400069802999]],[[0.090022966265678,0.015888119116426,0.026812164112926],[-0.026596881449223,-0.14547868072987,-0.085148490965366],[-0.046453185379505,-0.27337327599525,-0.10574504733086]],[[-0.056245237588882,-0.013650517910719,0.0024416239466518],[0.023345427587628,-0.034285340458155,0.042241305112839],[-0.10332714021206,0.025525607168674,-0.04677140712738]],[[-0.16809873282909,-0.029086159542203,-0.13475050032139],[0.12245688587427,-0.18193785846233,-0.03829775378108],[0.14112085103989,-0.071422576904297,-0.16964223980904]],[[-0.19908691942692,-0.061757653951645,0.071386121213436],[-0.0918228328228,0.046272486448288,-0.0050399987958372],[0.021486528217793,0.059682663530111,-0.082430861890316]],[[0.012424794025719,0.097255364060402,-0.031578257679939],[-0.030796268954873,0.029640255495906,0.050558991730213],[-0.05382153019309,0.0643220692873,0.018378099426627]],[[0.053441520780325,0.02607642300427,0.0031116150785238],[0.066564336419106,-0.0021459378767759,-0.017238480970263],[0.023229507729411,-0.13559943437576,-0.075155407190323]],[[0.17963895201683,-0.16918051242828,0.02950450219214],[-0.016830381006002,0.025110924616456,-0.15934109687805],[0.033958185464144,0.18624573945999,-0.1551661491394]],[[0.15642721951008,0.035895369946957,-0.12727592885494],[0.022148322314024,0.0017957291565835,-0.038480289280415],[-0.15352448821068,-0.041659031063318,0.013278232887387]],[[-0.13724946975708,0.10533178597689,-0.18156115710735],[-0.046118203550577,-0.069200426340103,0.046489473432302],[-0.041451003402472,-0.12486995011568,-0.084226973354816]],[[0.038987118750811,0.10819333046675,0.057013120502234],[-0.17278935015202,0.17951348423958,0.055288471281528],[-0.1799438893795,0.027350198477507,0.072687581181526]],[[-0.042127795517445,-0.067186094820499,0.083505988121033],[0.03041167370975,0.010700333863497,-0.053648229688406],[-0.0095822485163808,-0.018507050350308,-0.022921245545149]],[[0.050295993685722,0.10397271066904,-0.067401811480522],[0.12078511714935,-0.013600366190076,-0.011698446236551],[-0.01820339076221,-0.05750372633338,0.11134164780378]],[[-0.037810407578945,0.098228543996811,-0.033671371638775],[0.035105817019939,0.16387072205544,0.0356515198946],[0.015710268169641,-0.064344719052315,0.04549577832222]],[[-0.15865740180016,-0.1513274461031,-0.043034218251705],[-0.051060553640127,0.11098852753639,-0.14538113772869],[0.026397138834,0.040638338774443,-0.075179748237133]],[[-0.025865880772471,0.16079513728619,-0.057571716606617],[0.029977656900883,-0.0057111848145723,0.25270587205887],[-0.33283153176308,0.17778642475605,0.079690508544445]],[[-0.05188662186265,-0.068343929946423,-0.061604175716639],[-0.18225827813148,-0.27042886614799,-0.25000220537186],[-0.055701982229948,-0.15416222810745,-0.077326752245426]],[[0.18129312992096,-0.054164215922356,-0.24667409062386],[0.0055772196501493,-0.12972041964531,-0.074759423732758],[-0.087662108242512,-0.036063984036446,0.13904282450676]],[[-0.12350601702929,0.010976194404066,-0.02813958376646],[-0.2263256162405,-9.5146788225975e-05,0.036032173782587],[0.010966431349516,0.25656107068062,0.071214102208614]],[[-0.0041709067299962,-0.16252170503139,-0.13080236315727],[-0.028515974059701,0.0020975447259843,-0.15372876822948],[-0.019142523407936,-0.13880518078804,-0.2931259572506]],[[-0.12128386646509,-0.062948033213615,0.02361323684454],[-0.029718309640884,0.052008356899023,-0.12800557911396],[0.012712711468339,0.0033647746313363,-0.0074952812865376]],[[0.024368532001972,0.043778322637081,0.084727182984352],[-0.12187757343054,0.0030487684998661,-0.066987179219723],[0.10415493696928,0.15657739341259,0.10488623380661]],[[0.095944546163082,0.057920519262552,-0.065347135066986],[0.040706761181355,-0.035114012658596,-0.090229675173759],[0.034777287393808,-0.019500257447362,-0.21051296591759]],[[0.03609200194478,-0.093116700649261,-0.13975529372692],[0.025480741634965,-0.020583042874932,0.018752900883555],[0.079218417406082,0.099269144237041,-0.052164278924465]],[[0.30845963954926,-0.27399685978889,0.15954446792603],[0.053544551134109,-0.16601473093033,0.016453079879284],[0.024855550378561,-0.09521096944809,-0.12839451432228]],[[0.22894422709942,0.056927427649498,0.023434732109308],[-0.050206482410431,0.057757906615734,-0.10281208902597],[-0.28829210996628,-0.11915304511786,0.14196039736271]],[[-0.02647096849978,-0.15832936763763,-0.069537073373795],[-0.10226880013943,-0.077608488500118,-0.14489455521107],[-0.061882711946964,-0.099299639463425,-0.11010114103556]],[[0.030484206974506,0.054615393280983,0.27319175004959],[-0.064281970262527,-0.052267953753471,0.12132672220469],[0.15289407968521,0.022228663787246,-0.021521020680666]],[[-0.0063995365053415,0.054773360490799,0.040671337395906],[0.052685290575027,-0.046979665756226,-0.1297165453434],[0.10416715592146,-0.06982034444809,-0.28344005346298]],[[0.078535340726376,0.035603791475296,-0.016099533066154],[-0.090945713222027,-0.019425896927714,-0.016485569998622],[-0.065873228013515,-0.0049314550124109,0.074427053332329]],[[-0.087874598801136,0.077762857079506,0.14853069186211],[-0.048884436488152,-0.041465189307928,0.04277666285634],[0.071993038058281,0.048727199435234,0.018928872421384]],[[-0.0025618800427765,-0.17039254307747,-0.091300033032894],[0.0046368427574635,-0.14222501218319,-0.24040320515633],[-0.017599437385798,-0.19209609925747,-0.0038966892752796]],[[0.27677267789841,0.0071433135308325,0.037662360817194],[0.11056270450354,0.044305745512247,-0.06279481947422],[0.047733884304762,0.27262985706329,-0.25049009919167]],[[0.014048172160983,-0.19513559341431,-0.27224832773209],[0.084086231887341,-0.09058902412653,-0.30637884140015],[-0.010574617423117,-0.029782081022859,-0.14918747544289]],[[-0.045425906777382,0.008022085763514,-0.23931741714478],[0.075229197740555,-0.098567612469196,0.070263341069221],[-0.11078124493361,-0.15312653779984,0.1275656670332]],[[-0.0036137802526355,-0.0098992753773928,-0.048388566821814],[-0.17690877616405,0.10907568782568,-0.2134131193161],[-0.09676668047905,0.12581729888916,0.10500413924456]],[[-0.12544719874859,-0.12911696732044,0.10861636698246],[-0.00045339291682467,-0.096491932868958,0.022667653858662],[-0.083195678889751,-0.067268639802933,0.058305431157351]],[[-0.094627633690834,0.24202919006348,0.032754238694906],[-0.092449560761452,0.070417426526546,-0.034608792513609],[-0.16772493720055,0.10394942015409,0.072074800729752]],[[0.029379785060883,-0.15582384169102,-0.052105277776718],[-0.012027686461806,-0.17727854847908,-0.0022787267807871],[0.019845627248287,-0.16282740235329,0.13289549946785]],[[-0.27938178181648,0.094572305679321,-0.016648637130857],[-0.049416147172451,-0.056095980107784,0.086588606238365],[0.012935630045831,-0.15116941928864,0.044174186885357]],[[0.084352992475033,0.11753863841295,-0.050981312990189],[0.10633762180805,-0.023238945752382,-0.069895125925541],[0.0756990686059,0.093243196606636,0.12707683444023]],[[0.10892804712057,0.080947615206242,-0.15612860023975],[0.077173382043839,-0.031398005783558,0.16115902364254],[0.034081049263477,-0.17312507331371,0.018711242824793]],[[-0.066932082176208,-0.024726802483201,0.08458237349987],[-0.14346186816692,-0.061489272862673,0.024234142154455],[0.012751033529639,-0.02556911110878,-0.11702339351177]],[[-0.18184311687946,0.038408309221268,-0.013746563345194],[-0.00071656575892121,-0.010543367825449,0.041565667837858],[-0.044172845780849,-0.012709052301943,0.054363049566746]],[[0.015215580351651,-0.0050753387622535,0.054871521890163],[-0.074687965214252,0.009626217186451,-0.11778618395329],[-0.0067209089174867,0.20946989953518,0.024925341829658]],[[0.053960409015417,-0.043216668069363,0.048708401620388],[0.27290877699852,0.14187894761562,0.085186429321766],[-0.16283704340458,-0.053674425929785,-0.081672959029675]],[[0.18741978704929,0.12710906565189,-0.042140141129494],[0.12050114572048,0.087946332991123,0.17309087514877],[-0.11012329906225,-0.028255285695195,-0.022341361269355]],[[-0.039082713425159,0.058032564818859,0.22092789411545],[0.024349719285965,-0.083684727549553,-0.013081712648273],[0.020109901204705,0.068722389638424,-0.10620375722647]],[[-0.21328754723072,-0.21800050139427,-0.10612963885069],[0.020649362355471,0.029824892058969,-0.096033446490765],[-0.07183738052845,0.14946857094765,0.12153187394142]],[[-0.10133977979422,0.0082660196349025,-0.12377014756203],[-0.026712507009506,-0.17607329785824,-0.077386513352394],[0.18971693515778,0.26938223838806,0.066341184079647]],[[-0.051562536507845,-0.27558034658432,-0.14018861949444],[0.15886467695236,-0.046706568449736,-0.2649262547493],[0.052312441170216,-0.030947640538216,-0.085053227841854]],[[-0.17104336619377,-0.023747432976961,0.37213298678398],[0.08429229259491,-0.014231712557375,0.086523719131947],[-0.033829245716333,-0.070190407335758,-0.19582840800285]],[[-0.043036393821239,0.23690791428089,0.26293107867241],[0.12919238209724,0.10657718032598,-0.03349132090807],[0.13567239046097,-0.052608158439398,-0.19417709112167]],[[0.030617812648416,0.1073332503438,0.12531992793083],[0.014572926796973,-0.021234530955553,0.18333451449871],[-0.052412271499634,-0.016273701563478,0.2303663790226]],[[-0.052111689001322,0.10475936532021,0.24314373731613],[-0.25456136465073,-0.042669821530581,0.23735490441322],[-0.1672103703022,-0.21397210657597,0.053247563540936]],[[0.083269566297531,0.05723862349987,-0.079273097217083],[0.0414081774652,-0.19531066715717,-0.12541235983372],[0.01080178655684,0.030929610133171,-0.20462492108345]],[[0.056741468608379,-0.03127695992589,-0.037222191691399],[0.094641968607903,0.027388272807002,0.02872340194881],[-0.20111986994743,0.1729281693697,0.082875929772854]],[[-0.11757346987724,-0.043716665357351,0.17776402831078],[-0.032739758491516,-0.019347904250026,-0.093155279755592],[0.14887143671513,-0.038257796317339,0.018005736172199]],[[0.20311163365841,-0.017122255638242,0.033540301024914],[0.0035157185047865,0.027246400713921,0.20058169960976],[-0.029577575623989,-0.056721311062574,0.0076544294133782]],[[-0.31374645233154,-0.042679000645876,0.21156567335129],[-0.13847732543945,0.081498987972736,-0.12788434326649],[0.094829142093658,0.11647379398346,-0.076694339513779]],[[-0.0012148274108768,0.0089539177715778,0.044059541076422],[0.092398002743721,0.070227481424809,0.096776075661182],[0.13134664297104,0.16712620854378,0.13972061872482]],[[0.069711163640022,0.13531881570816,0.28628760576248],[-0.1464087665081,-0.027507279068232,0.06602793186903],[-0.16731731593609,-0.14204992353916,0.14381705224514]],[[-0.025972554460168,0.019879318773746,0.08894107490778],[-0.19283500313759,0.025280445814133,-0.15290811657906],[-0.13185857236385,0.052857667207718,0.032667566090822]],[[-0.053450550884008,-0.17160779237747,-0.064575225114822],[-0.0046330620534718,-0.025592563673854,-0.057519394904375],[0.020890682935715,-0.03405823931098,0.1818942129612]],[[0.24268011748791,-0.049695085734129,-0.13487388193607],[0.076006166636944,-0.092523992061615,0.13615192472935],[-0.054107528179884,-0.064632013440132,0.088775433599949]],[[0.1030518040061,0.1497965157032,-0.036561284214258],[0.011534927412868,-0.023617750033736,-0.002433467656374],[-0.05328144133091,-0.056030720472336,0.031207084655762]],[[0.14280119538307,0.076103515923023,0.087376967072487],[-0.051290828734636,-0.030173504725099,0.033593695610762],[0.017302118241787,-0.24718415737152,-0.13843800127506]],[[0.23522539436817,-0.046888086944818,0.17435117065907],[-0.051387261599302,0.23403631150723,0.25291210412979],[-0.18491341173649,0.051241602748632,0.11619026958942]],[[-0.094055414199829,0.023207487538457,0.083773754537106],[-0.058712758123875,0.018540529534221,0.043983489274979],[0.011932128109038,0.11798233538866,0.0035689591895789]],[[0.05747439712286,0.030429942533374,-0.064948700368404],[-0.047065943479538,-0.035795327275991,0.0053679458796978],[-0.037293907254934,0.033720042556524,-0.014817873947322]],[[0.028106223791838,-0.18463429808617,0.098384946584702],[0.050229497253895,-0.032235193997622,-0.17215746641159],[-0.12855006754398,-0.082242913544178,-0.29598957300186]],[[-0.070685215294361,-0.12161256372929,-0.046291913837194],[-0.08639570325613,-0.1741431504488,0.0069069983437657],[0.16565243899822,0.16182437539101,-0.044421244412661]],[[-0.13243016600609,-0.03214780241251,-0.12575736641884],[-0.0041926172561944,0.17762872576714,0.034336283802986],[-0.033945467323065,-0.024839052930474,0.10039805620909]],[[0.14288868010044,-0.097521409392357,0.047943744808435],[-0.08173243701458,-0.019468443468213,0.30938717722893],[-0.017437912523746,0.065760754048824,0.20342999696732]],[[0.19884516298771,0.21313689649105,-0.072594463825226],[-0.11606159806252,0.065675392746925,-0.020275432616472],[-0.086204074323177,0.15219737589359,-0.12617139518261]],[[-0.05877735838294,-0.22147819399834,0.040585804730654],[0.11244375258684,-0.11518494784832,-0.091428190469742],[0.17377607524395,0.14831525087357,-0.1344889998436]],[[-0.014971141703427,-0.068415611982346,0.18891568481922],[0.069263197481632,0.13853089511395,-0.0062359594739974],[0.0050777071155608,-0.050685252994299,-0.05343159660697]],[[-0.12883472442627,-0.12380098551512,0.12896026670933],[-0.076812066137791,0.0087104085832834,0.06926516443491],[-0.068426661193371,0.14777180552483,-0.057282783091068]],[[-0.22031807899475,-0.10372129827738,0.023806503042579],[-0.085583403706551,0.13210029900074,-0.0054249996319413],[-0.044225748628378,0.11146302521229,0.14563830196857]],[[-0.098135337233543,-0.15244589745998,-0.11642609536648],[-0.060901794582605,-0.030628414824605,-0.10302396863699],[0.016358196735382,0.043988112360239,0.13416197896004]],[[0.10356936603785,0.041702773422003,0.0096756955608726],[-0.0097987251356244,-0.10383751988411,0.039864618331194],[0.086296439170837,0.023753309622407,0.073127038776875]],[[-0.098035164177418,0.021530603989959,-0.17116259038448],[-0.19659021496773,-0.13651299476624,-0.051493417471647],[-0.092921018600464,-0.060132410377264,-0.16250571608543]],[[0.1378917992115,0.18188439309597,-0.11224339902401],[0.02712132781744,0.05241546779871,0.023169560357928],[0.10917460173368,0.067605242133141,-0.0045924484729767]],[[-0.14061038196087,-0.00048841023817658,0.11971306055784],[0.084106750786304,0.079534269869328,0.014718518592417],[-0.032525978982449,0.27158460021019,-0.037406455725431]],[[-0.043257094919682,-0.10796164721251,0.14569602906704],[0.047486752271652,-0.090866677463055,0.023142943158746],[-0.059149160981178,0.17652568221092,0.0070965732447803]],[[-0.072241887450218,0.025034470483661,-0.12501485645771],[0.045938048511744,-0.026619993150234,-0.017534269019961],[0.1504315584898,-0.12420079112053,0.05589396879077]],[[-0.075902886688709,0.1192991361022,0.14627657830715],[0.073344498872757,-0.015760239213705,-0.01552727073431],[0.029861528426409,0.06010639294982,-0.064585588872433]]],[[[-0.090088151395321,-0.082690611481667,0.039224360138178],[0.0071637351065874,0.021724728867412,0.020749924704432],[-0.0070062438026071,0.080180518329144,0.029135745018721]],[[0.027795085683465,-0.017828425392509,-0.034258767962456],[-0.0042902198620141,0.03750804066658,0.078939244151115],[0.028599238023162,-0.082219079136848,-0.014836360700428]],[[-0.063204288482666,0.054214790463448,-0.0026260989252478],[0.030405100435019,0.036462087184191,0.00046002227463759],[0.034005388617516,-0.012077127583325,-0.016631372272968]],[[0.026374312117696,0.079497180879116,-0.014489991590381],[-0.027995409443974,0.05227841809392,0.025104619562626],[0.0061319163069129,-0.023547245189548,-0.041520081460476]],[[-0.035558890551329,-0.033927459269762,-0.011410841718316],[-0.031088512390852,0.053663931787014,0.021331086754799],[0.03922363370657,-0.020489484071732,0.037540391087532]],[[-0.011382740922272,-0.0019406680949032,-0.022347509860992],[0.015896836295724,0.026568064466119,-0.073852464556694],[-0.0092224702239037,0.020069982856512,0.069937087595463]],[[-0.00087969785090536,0.0057564955204725,-0.022771332412958],[0.019909035414457,0.013909654691815,0.062566287815571],[-0.060322415083647,0.052996266633272,-0.062948495149612]],[[-0.0096068056300282,-0.044674020260572,-0.0029311424586922],[-0.05509752035141,0.046268288046122,-0.024285143241286],[-0.0055889599025249,-0.013637961819768,0.0015323508996516]],[[-0.082201898097992,-0.061901148408651,0.071186646819115],[0.053894117474556,0.09858488291502,-0.045369826257229],[-0.031270369887352,0.0090943966060877,-0.03924535214901]],[[0.039369482547045,0.072903200984001,0.011288314126432],[0.041290026158094,-0.022294705733657,-0.0045042168349028],[-0.032031200826168,0.0089086387306452,0.055725138634443]],[[0.028278857469559,0.0056878454051912,-0.023345803841949],[-0.039823982864618,-0.021361045539379,-0.0092198196798563],[0.084730960428715,-0.016300925984979,0.051300674676895]],[[0.0022141458466649,0.021916870027781,-0.034292362630367],[0.069203779101372,-0.022137198597193,-0.045701030641794],[0.037664156407118,-0.019763246178627,0.046340588480234]],[[0.0044096177443862,-0.0049188705161214,-0.011840426363051],[0.027410808950663,-0.068452037870884,-0.13179256021976],[-0.057590011507273,0.057361774146557,0.0073354369960725]],[[0.062576174736023,0.090011671185493,0.018740320578218],[-0.018674461171031,-0.012620381079614,0.0301428809762],[0.0315126106143,0.0080717811360955,0.033353623002768]],[[2.2385385818779e-05,-0.0008216739515774,-0.033403653651476],[0.084704972803593,0.021762348711491,0.011804959736764],[-0.022514920681715,0.01787699200213,0.025172851979733]],[[0.019674794748425,0.03064620308578,0.012148141860962],[-0.02470682375133,0.011728881858289,0.041851978749037],[0.046166602522135,-0.04987083747983,-0.011769972741604]],[[0.008239071816206,0.012578182853758,0.036893423646688],[0.015559354797006,0.0038062094245106,0.016549600288272],[-0.021607965230942,0.017026267945766,-0.011479946784675]],[[-0.0070628714747727,-0.035941187292337,0.019807413220406],[0.040115386247635,0.0035856198519468,-0.019763519987464],[-0.00045559802674688,0.0014875988708809,0.059805165976286]],[[-0.054047074168921,0.055331621319056,-0.042080461978912],[-0.041555009782314,0.063992485404015,-0.0021451148204505],[0.064500749111176,-0.013607010245323,-0.0077400733716786]],[[0.095412559807301,-0.020784024149179,-0.072626374661922],[0.060819026082754,0.00064472068333998,-0.02873414196074],[-0.0053879306651652,0.081388406455517,-0.011175814084709]],[[-0.021855782717466,0.00020038097864017,0.025472957640886],[-0.040981397032738,0.010285251773894,0.086606331169605],[-0.022394604980946,-0.025318417698145,-0.058039288967848]],[[0.067736066877842,0.014950452372432,-0.018754431977868],[-0.047425344586372,0.020365620031953,0.010692526586354],[-0.042319413274527,0.043836310505867,0.032505493611097]],[[-0.034798927605152,0.038228709250689,0.013980095274746],[0.024970304220915,-0.015560707077384,0.072150982916355],[-0.047017455101013,0.0069568869657815,0.0082412008196115]],[[0.0097001902759075,0.017894415184855,-0.013014680705965],[-0.095576070249081,0.027722675353289,0.040661342442036],[-0.058972682803869,0.012046264484525,-0.0021384626161307]],[[0.024385930970311,-0.0040773567743599,0.041508812457323],[-0.019291117787361,0.03980615735054,0.077099151909351],[-0.055503599345684,-0.062828063964844,0.018400253728032]],[[-0.0071461540646851,-0.020709626376629,0.017836507409811],[0.014778904616833,0.0073117385618389,0.052701074630022],[-0.0040709623135626,-0.021444011479616,-0.013931914232671]],[[-0.097104996442795,-0.025939336046576,-0.015727272257209],[-0.0088240895420313,-0.01065874285996,-0.0065348916687071],[-0.027027383446693,0.052941851317883,0.0038756041321903]],[[-0.049186281859875,0.069601781666279,-0.023000670596957],[0.015090766362846,0.022579126060009,0.042389336973429],[0.040858652442694,-0.0034292060881853,0.0086319893598557]],[[0.0035587225575,0.017073202878237,0.030965832993388],[-0.058663751929998,-0.091597817838192,0.052855607122183],[0.032798912376165,-0.022584047168493,0.026871621608734]],[[0.044100739061832,-0.028992395848036,0.0005361870280467],[0.0021574420388788,-0.068084754049778,0.034463543444872],[-0.041043110191822,-0.01421264000237,0.072714522480965]],[[0.016323152929544,-0.035703241825104,0.044087491929531],[-0.044043801724911,-0.033157993108034,-0.068018026649952],[0.016108453273773,-0.089554131031036,0.046611528843641]],[[-0.066974639892578,-0.052563779056072,0.017683720216155],[0.03714120388031,0.0079821106046438,-0.013572289608419],[0.049618870019913,0.047217298299074,0.0040423097088933]],[[-0.045705128461123,-0.026280924677849,-0.044190533459187],[-0.030705563724041,0.04260254278779,-0.013824469409883],[0.021732727065682,0.064057394862175,0.055803347378969]],[[-0.00496622081846,-0.030807638540864,-0.0098633533343673],[-0.034690201282501,-0.010117578320205,-0.0055867307819426],[0.00091158569557592,0.0067045083269477,-0.029339669272304]],[[0.0194390732795,0.023785253986716,-0.0028333473019302],[0.061876785010099,0.014163218438625,0.010514338500798],[-0.071120485663414,-0.11214984208345,0.041060533374548]],[[-0.066024750471115,0.020962871611118,-0.0065457611344755],[-0.042421173304319,0.083236314356327,0.018049763515592],[0.0011725197546184,0.077286057174206,0.051793571561575]],[[-0.008635357953608,0.073279984295368,0.0017654928378761],[-0.082413919270039,-0.028921358287334,0.022317718714476],[-0.050469037145376,0.078608304262161,0.015440131537616]],[[-0.027363900095224,0.018009224906564,-0.014869414269924],[-0.039027649909258,-0.0027720544021577,-0.080934181809425],[0.0074855796992779,0.037127941846848,0.068537287414074]],[[0.036039292812347,0.037401046603918,-0.050557799637318],[-0.013906355947256,0.0034738054964691,-0.0034299155231565],[0.011297573335469,0.036136660724878,-0.011684161610901]],[[0.021196702495217,0.028680292889476,0.015834135934711],[0.04497666656971,-0.029722021892667,0.034019608050585],[-0.0083388919010758,0.041671045124531,-0.024996362626553]],[[0.037987608462572,0.029319439083338,0.03447038307786],[0.011690810322762,-0.048787780106068,-0.056556213647127],[-0.06751399487257,0.0051382789388299,0.040220785886049]],[[0.023868650197983,-0.053677946329117,0.03891459107399],[0.0064226910471916,-0.018640605732799,0.0054749227128923],[-0.010319136083126,-0.063512533903122,0.0063135172240436]],[[0.021618783473969,-0.05481144413352,-0.027213154360652],[-0.0095508489757776,0.051162771880627,0.051929783076048],[0.0064112334512174,0.061591394245625,0.055721152573824]],[[0.00088818924268708,0.025951344519854,-0.049331292510033],[0.052595611661673,0.049994178116322,-0.063644424080849],[0.033451098948717,-0.013160029426217,0.05080782994628]],[[-0.076905749738216,0.081492237746716,0.023742051795125],[-0.080942183732986,0.055023480206728,-0.012396093457937],[-0.056464359164238,-0.0056628105230629,0.021740384399891]],[[0.060954660177231,-0.068306915462017,-0.028236528858542],[0.04012855514884,0.01634494587779,0.019053651019931],[0.017832085490227,0.017944782972336,0.023045286536217]],[[-0.0288245677948,-0.024138139560819,0.0021891167853028],[0.04024913161993,-0.033404089510441,-0.049647785723209],[-0.052343539893627,-0.031072609126568,-0.00029674920369871]],[[0.045640677213669,0.0080474754795432,-0.080008752644062],[-0.080179944634438,0.023718321695924,0.057090427726507],[-0.018178762868047,-0.078867934644222,-0.023469647392631]],[[-0.1245451644063,-0.029923874884844,0.016736725345254],[-0.054784528911114,0.036347210407257,-0.053260959684849],[0.0073757991194725,0.055028043687344,0.057911533862352]],[[-0.014029987156391,0.032129555940628,0.0019395615672693],[0.01307525485754,0.063429765403271,-0.021707752719522],[-0.023161137476563,-0.0155731998384,-0.0046391622163355]],[[-0.00035383878275752,0.063463240861893,-0.013677647337317],[-0.013302613981068,-0.022455101832747,0.0017727721715346],[0.054999653249979,0.025969127193093,0.054085418581963]],[[0.011714978143573,-0.015501622110605,0.039757985621691],[-0.011819635517895,0.0304658357054,0.0068154744803905],[-0.01750654540956,-0.018339974805713,0.035771146416664]],[[0.03384293243289,0.024391097947955,0.061809349805117],[0.081201404333115,0.013244008645415,0.14282895624638],[-0.0066388472914696,0.044148162007332,0.068297818303108]],[[0.027429135516286,0.001795589341782,-0.077835530042648],[0.047562342137098,0.05245316401124,-0.009230419062078],[0.030205938965082,-0.013834666460752,0.031567636877298]],[[-0.017185093834996,0.011207552626729,0.037664495408535],[0.022544329985976,0.063991002738476,0.0083500947803259],[-0.051264595240355,-0.036142081022263,-0.035893399268389]],[[-0.093258529901505,-0.0088742841035128,-0.0035805304069072],[-0.040364876389503,0.06093430891633,0.00090207392349839],[0.023772245272994,0.02536204457283,-0.047416619956493]],[[0.0048020440153778,0.078214406967163,0.041951511055231],[-0.00090728071518242,-0.0034068555105478,0.0089652677997947],[0.023077765479684,-0.038405269384384,-0.049622397869825]],[[-0.022836349904537,0.029531458392739,0.00094611570239067],[0.032808851450682,0.047435436397791,0.0051177437417209],[0.063866086304188,0.00372712360695,-0.01308654434979]],[[-0.018511708825827,-0.029082385823131,-0.038671731948853],[-0.031758408993483,-0.0010352588724345,0.013525133952498],[0.017039962112904,-0.02525257691741,-0.019475407898426]],[[0.016184218227863,0.058428131043911,0.069224968552589],[-0.013881822116673,-0.070326864719391,-0.058989357203245],[-0.030887076631188,0.072644881904125,0.060671754181385]],[[0.0012848131591454,-0.0013623114209622,0.015964651480317],[0.0072494074702263,0.048953425139189,0.027587095275521],[-0.054038230329752,-0.022008344531059,-0.015075931325555]],[[0.040415097028017,0.00015254778554663,-0.012612074613571],[-0.016469078138471,0.032946933060884,-0.02048072591424],[-0.077436096966267,0.0089537184685469,-0.027441227808595]],[[-0.03251614049077,0.037651050835848,-0.0056133139878511],[-0.019577970728278,0.057544086128473,0.0046831103973091],[-0.0069043408147991,-0.026632975786924,0.001523053040728]],[[-0.037974126636982,-0.0087590515613556,-0.02530918456614],[-0.038392212241888,0.002585617126897,0.030011121183634],[-0.018147656694055,-0.005736481398344,-0.043922379612923]],[[-0.020042188465595,0.0037404140457511,0.003938521258533],[-0.016278348863125,0.011783627793193,-0.017918486148119],[-0.039011757820845,0.039983469992876,0.04292406141758]],[[0.034990075975657,0.035638574510813,0.05321441590786],[-0.080801092088223,-0.033183265477419,-0.00039584716432728],[0.033508326858282,-0.049757026135921,0.044385824352503]],[[-0.035567726939917,0.036333728581667,-0.033211167901754],[0.022354731336236,-0.032925292849541,-0.0062964078970253],[-0.03969756513834,0.0041141477413476,0.10720656067133]],[[0.02688679471612,0.039431992918253,-0.049918904900551],[0.010126021690667,0.0018110974924639,-0.038822643458843],[0.02908219397068,-0.012601817958057,-0.038518439978361]],[[0.033115781843662,0.037184074521065,-0.083198726177216],[0.0022281506098807,0.036886636167765,-0.038221567869186],[0.002023468259722,0.097214229404926,-0.054141145199537]],[[-0.013499779626727,-0.067537665367126,-0.013809470459819],[0.039709560573101,0.022637160494924,-0.0097377290949225],[-0.026573579758406,0.0081567810848355,0.023066036403179]],[[0.0035670474171638,-0.034572325646877,-0.015989650040865],[0.0085844062268734,0.027910754084587,0.0043262080289423],[-0.046296898275614,-0.022618377581239,0.0060221315361559]],[[0.0046471003443003,-0.026529816910625,-0.00067995005520061],[-0.022808061912656,-0.051396403461695,0.0065440074540675],[0.0019008382223547,0.039222273975611,-0.023494960740209]],[[-0.0081679094582796,0.028596263378859,0.047728922218084],[-0.017875615507364,-0.026908399537206,0.029848581179976],[0.00068773096427321,0.07835078984499,0.01781833358109]],[[-0.049520652741194,0.086480118334293,-0.027149168774486],[-0.040999863296747,0.02666325122118,0.026456655934453],[-0.0062256781384349,-0.013271402567625,0.025435384362936]],[[-0.04861768335104,-0.16312381625175,0.024895129725337],[-0.057911060750484,0.13476844131947,-0.089719615876675],[-0.059085041284561,0.097463518381119,0.070089057087898]],[[-0.0054800589568913,-0.024433922022581,-0.12723368406296],[0.013941571116447,0.038155600428581,-0.017401738092303],[0.0092334495857358,-0.025656098499894,-0.0061588450334966]],[[0.042408213019371,-0.0042999978177249,0.026935225352645],[-0.019704615697265,-0.05222399532795,-0.016405712813139],[0.040623925626278,0.00742680253461,-0.0053201066330075]],[[-0.01114802248776,0.10135671496391,0.033387068659067],[0.045726422220469,0.025400169193745,-0.05200719833374],[0.0209382455796,-0.061951503157616,-0.086512714624405]],[[0.0018523638136685,0.041302144527435,0.057796943932772],[-0.020699165761471,-0.002190490718931,0.0050788121297956],[-0.013260778039694,0.003374271793291,-0.006683487445116]],[[-0.0057259458117187,-0.12175541371107,-0.030925791710615],[0.020524261519313,0.021137181669474,-0.11352872103453],[-0.020203966647387,0.090033955872059,0.0264040697366]],[[0.066970236599445,0.015899879857898,0.021002719178796],[0.028474254533648,0.024606790393591,-0.038760013878345],[-0.018890568986535,0.026409480720758,-0.0366470515728]],[[-0.016258843243122,-0.016570473089814,0.030923267826438],[-0.038643017411232,-0.01335880625993,0.046095706522465],[-0.031700689345598,-0.022926328703761,0.029157537966967]],[[-0.084262147545815,0.0007816850556992,0.063790388405323],[0.01551066339016,-0.021599190309644,0.03639293462038],[0.001770070521161,-0.0082630207762122,-0.025551876053214]],[[-0.054342348128557,-0.055362679064274,0.040377955883741],[-0.0487345084548,-0.041371300816536,-0.0016730135539547],[0.054962679743767,-0.0016744580352679,0.068577289581299]],[[0.045787740498781,0.062113907188177,-0.0071511282585561],[-0.075531922280788,0.037845402956009,-0.085600927472115],[0.011249974370003,-0.069304391741753,0.027234079316258]],[[-0.028437405824661,0.0095947915688157,-0.0096905529499054],[0.053507409989834,-0.0048264535143971,-0.044329352676868],[0.035222582519054,0.051046587526798,-0.013344710692763]],[[-0.0049908338114619,0.054273016750813,0.032985612750053],[0.015966564416885,0.032822970300913,0.043331228196621],[-0.048854883760214,0.0063761910423636,-0.013795855455101]],[[-0.0092659620568156,0.067520387470722,-0.039527457207441],[-0.058829635381699,0.028734786435962,-0.012813545763493],[-0.0022539286874235,0.016903964802623,0.0058418731205165]],[[-0.0094322888180614,0.037965837866068,0.00086862803436816],[0.035449802875519,-0.087854668498039,-0.033299800008535],[0.0344447940588,-0.040626719594002,0.045478485524654]],[[-0.0011482652043924,0.00086241163080558,-0.06777698546648],[0.016329288482666,0.046407628804445,0.043435782194138],[-0.041475802659988,0.04460921511054,-0.053676590323448]],[[-0.034824606031179,0.036850173026323,0.038098700344563],[0.012821880169213,-0.00080162193626165,-0.024913979694247],[-0.054495420306921,0.0069095431827009,0.048712778836489]],[[0.023748908191919,-0.04195998609066,0.010393305681646],[0.039537411183119,-0.010088293813169,-0.040862932801247],[-0.03246270865202,-0.0037264204584062,-0.050864525139332]],[[-0.054636389017105,-0.034283820539713,-0.013985535129905],[-0.0008375789038837,-0.025297874584794,0.03148215636611],[-0.027804771438241,0.03483622148633,0.064494743943214]],[[0.023106018081307,0.02531373500824,-0.018355283886194],[-0.021356914192438,0.0081550804898143,0.013772281818092],[0.0010734223760664,0.013072887435555,0.031460911035538]],[[0.033913288265467,0.044747810810804,-0.071102380752563],[0.087794631719589,-0.040224876254797,-0.075050696730614],[0.013577197678387,-0.033093858510256,-0.087417356669903]],[[0.014552939683199,0.039346486330032,0.021649865433574],[-0.015434523113072,0.020662225782871,0.0037637620698661],[-0.050357740372419,0.0385647341609,-0.0015983761986718]],[[0.031925119459629,-0.021712860092521,-0.0086004743352532],[0.01625551469624,-0.074937149882317,-0.0024638704489917],[-0.078215949237347,-0.022559890523553,0.053888194262981]],[[-0.042559951543808,-0.051143616437912,-0.0011022222461179],[0.05060126259923,-0.015122016891837,0.050845421850681],[0.051654897630215,-0.013449216261506,0.053383380174637]],[[0.012441709637642,0.064280904829502,0.029528154060245],[-0.0095008406788111,-0.074209004640579,-0.063166506588459],[0.019818373024464,-0.03179794922471,0.029269618913531]],[[-0.016088481992483,0.0086445584893227,-0.020159669220448],[-0.025330943986773,-0.01969762519002,0.028484249487519],[-0.028350032866001,0.0084022656083107,0.015755267813802]],[[0.02959082275629,0.023141594603658,0.022762073203921],[0.0058983745984733,0.029116373509169,-0.0096238935366273],[-0.015771282836795,-0.0018380518304184,0.0041004759259522]],[[-0.030501015484333,0.021018689498305,0.026228677481413],[-0.0024455194361508,-0.054574925452471,-0.022526243701577],[-0.0049735587090254,-0.0047723604366183,0.04180059954524]],[[0.022574845701456,-0.057972863316536,-0.011863885447383],[0.014433954842389,-0.066784404218197,-0.024722358211875],[-0.046581778675318,-0.0020462966058403,0.073716096580029]],[[-0.026753924787045,-0.093805156648159,0.00045563338790089],[0.03053967654705,0.026336153969169,-0.046276476234198],[-0.024766005575657,-0.059086039662361,0.064161956310272]],[[-0.0020008613355458,0.0011116791283712,-0.010510141961277],[-0.037293028086424,-0.059358056634665,-0.00379449268803],[-0.00122910074424,0.047583948820829,0.11660789698362]],[[-0.030938621610403,0.026943914592266,-0.033281520009041],[0.0084766866639256,0.01361290551722,0.079993203282356],[0.02787896245718,-0.063442826271057,0.024906594306231]],[[0.015600328333676,0.0031216242350638,-0.010218370705843],[-0.063609272241592,0.038119945675135,-0.029045632109046],[-0.015032441355288,0.042358081787825,-0.031835988163948]],[[-0.032682526856661,0.046940270811319,-0.034132786095142],[0.017351334914565,0.016649110242724,0.031320504844189],[0.027221739292145,0.02386648952961,-0.033660307526588]],[[0.064195439219475,-0.0049962219782174,-0.041293229907751],[0.021672977134585,0.065786831080914,-0.088605314493179],[0.066141180694103,-0.03696620464325,-0.03050747141242]],[[-0.028734659776092,-0.02805289812386,0.00040991418063641],[-0.038716778159142,-0.044074762612581,0.061997946351767],[-0.0063944226130843,-0.054745174944401,0.087088167667389]],[[-0.070782370865345,-0.057108763605356,-0.062575332820415],[-0.062543988227844,-0.09076914191246,-0.014448155649006],[-0.084873884916306,-0.028876129537821,-0.01168123818934]],[[-0.039142578840256,0.025428717955947,0.019920691847801],[-0.027304964140058,-0.00338936294429,0.015038773417473],[0.0008871799800545,-0.0072454139590263,0.012682553380728]],[[-0.0038438953924924,0.063179232180119,0.0053269290365279],[0.016386901959777,0.0091401450335979,0.018415307626128],[0.059672653675079,-0.037875592708588,0.0021059687715024]],[[-0.044202957302332,0.0028428088407964,-0.010034451261163],[-0.065957769751549,-5.6855114962673e-05,0.015004563145339],[0.0028489544056356,-0.016118936240673,-0.030822971835732]],[[-0.072684727609158,-0.037561565637589,-0.015941394492984],[-0.015651548281312,0.048632204532623,0.0295255407691],[-0.043855369091034,0.021137787029147,-0.062533743679523]],[[-0.061920009553432,0.017337672412395,-0.032747261226177],[-0.031150173395872,0.057754382491112,-0.030768968164921],[0.050506614148617,0.012374527752399,0.047328811138868]],[[-0.053937923163176,0.026545211672783,-0.039336696267128],[-0.040405102074146,0.01709196344018,-0.056564640253782],[-0.013789653778076,0.085223220288754,-0.089515440165997]],[[0.057186830788851,0.0090554654598236,-0.049022756516933],[-0.0090476162731647,0.033768340945244,-0.061639413237572],[-0.014375464059412,0.081109896302223,0.011409785598516]],[[-0.026731917634606,0.016530191525817,-0.0030208141542971],[0.0056794723495841,-0.048100799322128,-0.017162848263979],[-0.0070810238830745,0.10212155431509,0.0044615985825658]],[[-0.023391500115395,0.052260354161263,-0.01446545496583],[0.0066853929311037,-0.020214037969708,0.033265743404627],[-0.056451819837093,-0.019406391307712,-0.017466457560658]],[[0.025933731347322,0.042420979589224,-0.016805844381452],[-0.0057704253122211,0.034620258957148,-0.046450577676296],[0.041741922497749,0.070656560361385,-0.045385867357254]],[[-0.0015315270284191,-0.0083510270342231,0.073253378272057],[-0.036565005779266,-0.036009658128023,0.010091609321535],[0.068698197603226,-0.013128567487001,-0.013732306659222]],[[0.031194262206554,-0.073847360908985,-0.015586689114571],[-0.0035913204774261,0.014384311623871,-0.032027777284384],[0.10282969474792,0.020423455163836,-0.014407515525818]],[[0.043451175093651,-0.070042923092842,-0.0050331600941718],[0.025073409080505,0.058598168194294,-0.0017136423848569],[0.018297553062439,-0.029715592041612,-0.0070341727696359]],[[-0.01608994230628,-0.027152938768268,0.039230950176716],[-0.069539926946163,0.034426998347044,0.028248306363821],[-0.04213585704565,0.04536896198988,0.049279104918242]],[[-0.02342220954597,-0.061564043164253,0.031724404543638],[0.035661362111568,-0.040872901678085,0.049020707607269],[-0.025343110784888,0.040997486561537,-0.004092862829566]],[[-0.0051933880895376,-0.017546866089106,0.043645396828651],[0.01464840490371,0.013938631862402,-0.030481513589621],[-0.015135367400944,-0.047368180006742,-0.056897357106209]],[[0.034523967653513,0.038430411368608,-0.017147738486528],[-0.0013002923224121,-0.082643210887909,-0.0022880926262587],[-0.084711603820324,0.08020742982626,0.096371166408062]]],[[[0.09272201359272,0.011617099866271,-0.025026438757777],[0.13534545898438,0.030205838382244,-0.057254731655121],[0.10867208242416,0.0027224032673985,-0.13683693110943]],[[-0.0063651925884187,0.0051981126889586,0.098266057670116],[0.15026457607746,0.054242372512817,-0.013254607096314],[0.18281368911266,0.1082206517458,0.061991967260838]],[[-0.014958634972572,-0.064907997846603,-0.058573190122843],[0.098161056637764,0.025422548875213,-0.068356029689312],[-0.091040186583996,-0.0040536541491747,-0.042602185159922]],[[-0.044656436890364,-0.047990169376135,0.015900265425444],[-0.0050020795315504,-0.019633911550045,-0.05828382819891],[-0.079181984066963,0.049848958849907,0.03868106752634]],[[0.26361885666847,0.048485890030861,-0.00141272530891],[0.012726374901831,0.013658883050084,-0.17073108255863],[0.071931026875973,-0.00035432836739346,-0.057102408260107]],[[0.0016622159164399,0.19347207248211,-0.02965097874403],[-0.16859152913094,-0.060224018990993,-0.034730225801468],[0.082126036286354,0.1448962688446,0.095739290118217]],[[0.067038536071777,-0.022175902500749,0.0094706090167165],[0.011420062743127,0.0341816842556,-0.037118408828974],[0.23048481345177,0.17278796434402,0.072140246629715]],[[0.12477570772171,-0.04925087466836,-0.031654249876738],[0.022725496441126,-0.025940574705601,-0.07250252366066],[0.10189190506935,0.10471399873495,0.048963878303766]],[[0.038729447871447,-0.066270142793655,-0.011796815320849],[-0.039325229823589,-0.11265210062265,0.041415371000767],[-0.14696516096592,0.048571296036243,0.11494383215904]],[[-0.11730789393187,-0.090010464191437,0.029553692787886],[-0.11970199644566,-0.07539938390255,-0.0027126739732921],[-0.077730350196362,-0.12972667813301,-0.10283152014017]],[[-0.053932793438435,-0.055042810738087,-0.070761300623417],[0.0010333543177694,0.0084581933915615,0.10940951853991],[0.12216826528311,0.12802745401859,0.059712272137403]],[[0.038244195282459,0.06673189252615,0.10101390630007],[-0.072161890566349,-0.073628455400467,0.041444506496191],[-0.013128785416484,-0.06145242229104,0.11753709614277]],[[-0.0075448239222169,-0.092870324850082,-0.047514136880636],[-0.037971202284098,-0.031015571206808,-0.023749206215143],[-0.037707656621933,-0.080296203494072,-0.093122825026512]],[[0.076479472219944,0.0094538033008575,0.14072453975677],[0.047047305852175,-0.075897447764874,0.10518749803305],[-0.019643729552627,0.014050243422389,0.1736803650856]],[[-0.17895862460136,-0.071410290896893,-0.10784816741943],[0.090271688997746,0.06969428062439,0.080198086798191],[-0.0038671535439789,0.014042376540601,0.062111463397741]],[[-0.10650364309549,0.1727077960968,-0.0030315462499857],[0.021449470892549,0.12305971235037,-0.00086040131282061],[-0.0088738780468702,0.12382201105356,-0.19278724491596]],[[-0.057041760534048,-0.091130696237087,-0.026557609438896],[-0.042919628322124,-0.016857646405697,-0.10044477880001],[0.083939246833324,-0.087589427828789,-0.055483743548393]],[[0.14049881696701,-0.00074772036168724,0.077921062707901],[-0.060648836195469,-0.016096021980047,0.048083174973726],[0.02452839910984,-0.099275253713131,0.12613090872765]],[[-0.026939928531647,0.21081964671612,0.14931870996952],[-0.017999235540628,0.0051524634473026,-0.081859573721886],[-0.12257658690214,-0.060678672045469,-0.17047941684723]],[[0.16647830605507,-0.0036645792424679,0.19050559401512],[-0.0042898510582745,-0.080027833580971,0.072494380176067],[0.073300540447235,0.066517412662506,0.084758549928665]],[[0.10181929171085,-0.12312426418066,-0.086790144443512],[-0.026854375377297,-0.13870657980442,-0.034390334039927],[-0.0524537935853,-0.088794253766537,-0.059731349349022]],[[-0.076867543160915,0.032952792942524,-0.03005750849843],[-0.19360107183456,0.092276856303215,-0.10156055539846],[0.11541929841042,0.069723322987556,-0.042853340506554]],[[0.050249304622412,-0.0020744444336742,-0.062046121805906],[-0.0079778702929616,-0.011511026881635,0.051511261612177],[0.015037483535707,-0.073479145765305,0.041629672050476]],[[0.073123648762703,-0.14114087820053,-0.087339788675308],[0.061153683811426,0.026616036891937,0.056795358657837],[0.17362684011459,-0.014289911836386,0.046689096838236]],[[-0.041435789316893,-0.022577453404665,-0.03887365013361],[-0.0025590865407139,0.057346787303686,-0.0098125850781798],[0.090497732162476,0.24559332430363,0.14995262026787]],[[-0.07652336359024,-0.046799376606941,0.15938088297844],[0.0032280655577779,-0.056157074868679,-0.024642618373036],[-0.026781341060996,-0.095202818512917,-0.15495529770851]],[[-0.039787676185369,-0.10590149462223,-0.00055181083735079],[0.042002256959677,-0.030500743538141,0.03298531845212],[0.039598751813173,-0.076518513262272,-0.0078469961881638]],[[0.048939932137728,0.047637335956097,-0.011107414960861],[0.065449692308903,0.086113840341568,0.12934263050556],[0.10372276604176,0.022332850843668,-0.10351461172104]],[[-0.013845656067133,-0.075926385819912,-0.059935811907053],[0.037006385624409,0.059597667306662,0.026166612282395],[-0.030703691765666,-0.078894153237343,0.027657005935907]],[[0.0038229778874665,0.058112744241953,0.097802169620991],[-0.097161807119846,0.1090784072876,-0.069293893873692],[-0.12514682114124,0.085606262087822,0.023074068129063]],[[0.01000209338963,-0.12097518146038,0.040700651705265],[0.03875133022666,0.058012876659632,-0.067250147461891],[0.048663299530745,0.11947984993458,0.048087455332279]],[[0.10239575058222,-0.021353878080845,0.025917269289494],[0.055283572524786,-0.10918280482292,-0.02945670671761],[0.030690055340528,-0.0021412272471935,-0.08455952256918]],[[-0.0037430194206536,-0.082187071442604,0.068107947707176],[-0.054323460906744,-0.037523046135902,0.053690172731876],[-0.085551016032696,0.0049614198505878,-0.0091537041589618]],[[-0.030391812324524,0.044095873832703,0.073287159204483],[0.069946698844433,0.029799861833453,0.066086269915104],[0.013370105065405,-0.026431215927005,-0.12726578116417]],[[-0.027750473469496,-0.011048712767661,-0.12613540887833],[-0.049861699342728,-0.079819202423096,-0.18601250648499],[0.06216824054718,-0.0061189346015453,0.056733574718237]],[[0.070887006819248,-0.016670983284712,0.037363026291132],[-0.031398441642523,-0.1444379389286,-0.011294566094875],[0.13930007815361,-0.11915247142315,0.0048498781397939]],[[0.0036609403323382,0.054587502032518,0.078844912350178],[0.019466830417514,0.041272953152657,0.11407526582479],[0.052915386855602,0.026876343414187,0.016715137287974]],[[-0.10724283754826,-0.1171523630619,-0.13782857358456],[-0.16563421487808,-0.0066718468442559,0.014740710146725],[0.048573344945908,0.14769189059734,0.023430161178112]],[[-0.028334295377135,-0.011097601614892,-0.028577586635947],[0.11053792387247,0.0054055536165833,-0.097803138196468],[0.074363715946674,-0.04619374871254,0.093044452369213]],[[0.10123385488987,0.088472165167332,-0.011298435740173],[-0.024810280650854,-0.039668314158916,0.032530136406422],[-0.066874988377094,0.051207073032856,0.066464923322201]],[[-0.028628878295422,0.02057128213346,-0.055539559572935],[-0.032766688615084,-0.041470672935247,0.0056224260479212],[-0.11965946108103,-0.15913443267345,0.065517462790012]],[[0.011362666264176,0.079350136220455,0.02124984562397],[0.0045306570827961,0.015982134267688,-0.11232201009989],[0.16714489459991,0.051415525376797,0.050891552120447]],[[-0.004436835180968,0.025811353698373,-0.26786142587662],[0.080451011657715,-0.07093470543623,-0.059005208313465],[0.12005679309368,0.0086504220962524,-0.074079550802708]],[[0.08413128554821,0.025529203936458,-0.014235340990126],[-0.016244221478701,0.046380542218685,0.048730667680502],[-0.064019627869129,-0.029358491301537,0.033606398850679]],[[0.22110027074814,0.14312541484833,0.15631666779518],[0.08377630263567,-0.089370019733906,-0.10439279675484],[0.064863078296185,-0.04440800845623,-0.10393504798412]],[[0.032822247594595,-0.031441930681467,0.057414866983891],[-0.012202419340611,-0.05496634542942,-0.052418723702431],[-0.11596278101206,0.01086657308042,-0.0071666929870844]],[[0.0007272157818079,-0.012391459196806,-0.0063049015589058],[-0.0039782403036952,-0.17260214686394,0.011334279552102],[-0.031407356262207,-0.10289167612791,-0.046953834593296]],[[-0.09685879945755,-0.0070997220464051,0.10248655825853],[-0.011927768588066,0.0041910842992365,0.017616264522076],[-0.064995527267456,0.035845529288054,-0.020579116418958]],[[0.15538756549358,-0.072621874511242,-0.085171580314636],[0.034988235682249,-0.010417527519166,0.094556890428066],[-0.072398416697979,-0.12651082873344,0.039643082767725]],[[-0.043612271547318,-0.13666225969791,0.051306836307049],[0.067613564431667,0.02964423596859,0.066128224134445],[-0.029553016647696,0.10885722190142,0.022663941606879]],[[-0.15248395502567,0.089971765875816,-0.0035036047920585],[0.039214491844177,0.180251121521,-0.075810372829437],[-0.080666095018387,0.094448834657669,-0.06815842539072]],[[-0.048439633101225,0.076986812055111,-0.085680909454823],[-0.046977873891592,-0.097084425389767,-0.16114911437035],[0.053696472197771,0.066939860582352,0.0070648710243404]],[[0.0061167133972049,-0.031274680048227,-0.017151450738311],[0.015384768135846,0.0046422826126218,-0.015126328915358],[0.021092606708407,-0.0070206304080784,0.032044444233179]],[[0.0050951582379639,-0.086439594626427,-0.010752859525383],[0.084841556847095,0.0029255098197609,0.060688499361277],[0.1458412706852,0.031399324536324,-0.055404763668776]],[[0.053765241056681,0.064312428236008,-0.073247238993645],[-0.075591020286083,0.059369180351496,-0.014175821095705],[-0.095771700143814,0.10760430246592,0.1001650094986]],[[-0.069453798234463,-0.054742623120546,0.023379193618894],[-0.037669140845537,-0.14068453013897,-0.050390765070915],[0.2384162992239,0.089083284139633,0.070679761469364]],[[-0.080579102039337,0.091381892561913,-0.045205604285002],[-0.029723979532719,0.0015751684550196,-0.065530054271221],[-0.050118692219257,0.069770455360413,0.054973319172859]],[[-0.031979460269213,-0.047760963439941,-0.12718221545219],[0.10795136541128,-0.019232992082834,0.044667787849903],[-0.1247683763504,-0.093265607953072,-0.090077340602875]],[[-0.1014114394784,-0.11478757113218,-0.042172286659479],[-0.050000946968794,-0.22830066084862,-0.015290128998458],[-0.022598206996918,-0.065703220665455,0.040502194315195]],[[-0.015509082004428,0.043833520263433,0.1910142749548],[-0.058529626578093,0.023786954581738,0.12294913083315],[-0.10801275074482,-0.051789820194244,0.1015909165144]],[[-0.053076706826687,-0.15813367068768,-0.10118222981691],[-0.065307430922985,-0.18632212281227,-0.15151339769363],[-0.030942844226956,-0.18610742688179,-0.18046759068966]],[[-0.23375551402569,0.073137208819389,-0.068553730845451],[-0.11303839087486,0.05479196831584,-0.075130186975002],[-0.047141667455435,-0.024449367076159,0.0024279803037643]],[[0.052573025226593,0.070145569741726,0.0074687045998871],[-0.032585259526968,0.036345347762108,0.037389684468508],[-0.078778482973576,-0.034613896161318,-0.056632436811924]],[[0.16045187413692,0.033440735191107,-0.03181592002511],[0.27591949701309,0.079129219055176,-0.080169066786766],[0.1858873218298,0.084069423377514,-0.04125727340579]],[[-0.12686109542847,-0.027285804972053,-0.013895540498197],[-0.088329702615738,-0.0024030122440308,0.0057435566559434],[-0.20573614537716,0.076148241758347,0.11985245347023]],[[0.077678315341473,-0.00098216801416129,-0.0066019226796925],[0.003922204952687,-0.065911509096622,0.019836697727442],[0.1012304648757,0.020756537094712,-0.018755413591862]],[[-0.036411594599485,-0.042766101658344,-0.0035676446277648],[-0.1072204336524,-0.082517623901367,-0.027985688298941],[0.040624421089888,-0.11182933300734,-0.19110961258411]],[[-0.17685288190842,-0.10767979174852,-0.083161599934101],[-0.045272719115019,-0.030174802988768,-0.18844626843929],[-0.071755789220333,0.013961452059448,-0.058664359152317]],[[-0.035536423325539,-0.0030254556331784,0.032804567366838],[-0.035624071955681,-0.012711689807475,0.017772877588868],[-0.10597449541092,-0.052303582429886,0.055595275014639]],[[0.071372799575329,-0.046011801809072,-0.074953474104404],[0.073704607784748,0.051546089351177,-0.022275403141975],[0.031169906258583,-0.0044909627176821,-0.07998426258564]],[[-0.0011380381183699,-0.0040352470241487,-0.029396299272776],[-0.014797597192228,0.019712843000889,0.17664635181427],[-0.042689587920904,-0.0020989200565964,-0.057272396981716]],[[0.0079867551103234,-0.029218764975667,0.081532448530197],[-0.12535563111305,0.025821715593338,0.11559457331896],[0.0045209592208266,-0.023633953183889,5.1744365919149e-05]],[[0.010581257753074,-0.10488917678595,-0.0091734388843179],[-0.073151864111423,0.057911496609449,0.063710860908031],[0.086113676428795,-0.099522918462753,-0.07760263979435]],[[-0.090815640985966,0.034605767577887,5.9458965552039e-05],[-0.10119358450174,-0.033778388053179,-0.039185900241137],[-0.053307194262743,-0.055696446448565,-0.015888903290033]],[[0.13488188385963,-0.009612113237381,0.15630240738392],[0.067753814160824,0.00079974759137258,-0.036564834415913],[-0.075125947594643,-0.087669141590595,-0.1312343031168]],[[0.13983070850372,0.091669984161854,0.051992550492287],[-0.01301144529134,-0.040635917335749,0.042794439941645],[-0.016461620107293,0.025003040209413,0.024056533351541]],[[-0.097264058887959,0.12462718039751,-0.028611414134502],[-0.056438982486725,-0.012346114031971,0.070427849888802],[-0.10409402102232,0.072876155376434,-0.049224693328142]],[[-0.14236915111542,-0.040500551462173,-0.13109403848648],[-0.15698029100895,-0.09839303791523,-0.1759959757328],[0.0059325979091227,-0.10429284721613,-0.20568943023682]],[[-0.057436045259237,0.060163732618093,0.028909904882312],[0.01980709284544,0.036810614168644,0.050555817782879],[-0.038834381848574,-0.067945964634418,-0.13877859711647]],[[-0.03082930482924,-0.15163783729076,0.013489419594407],[0.0096852090209723,-0.12661881744862,-0.046805288642645],[-0.034830912947655,-0.1566556096077,-0.12553848326206]],[[0.16226628422737,0.079695589840412,0.0071135703474283],[-0.063351109623909,0.079952836036682,-0.0304897390306],[-0.072353191673756,0.076485373079777,0.097018241882324]],[[0.068109184503555,0.23209424316883,0.11836890876293],[-0.032892201095819,0.04263361915946,0.16321681439877],[0.0112194865942,-0.22046463191509,0.17407712340355]],[[0.12098295241594,0.059500332921743,0.15723524987698],[0.21826699376106,0.051520865410566,-0.078488722443581],[-0.039178799837828,0.13648037612438,0.15080592036247]],[[-0.030031885951757,-0.17810578644276,-0.074106901884079],[-0.01570201292634,-0.050092294812202,-0.03892171010375],[-0.09629237651825,-0.1422147154808,-0.041939578950405]],[[-0.041193459182978,-0.08244763314724,0.019963476806879],[0.086136303842068,0.18630853295326,0.041490994393826],[0.052105717360973,0.0055769588798285,-0.013681894168258]],[[0.061858385801315,0.02818725630641,0.051535081118345],[-0.0019271528581157,-0.10483943670988,-0.15560972690582],[-0.097039170563221,-0.09605859965086,-0.13326162099838]],[[0.1236142963171,-0.06571839004755,0.066209390759468],[0.071355313062668,-0.15801000595093,-0.13996490836143],[0.15692958235741,0.11365115642548,0.10924958437681]],[[-0.060457419604063,-0.026604495942593,0.067626692354679],[0.098068460822105,-0.034342888742685,-0.038560912013054],[-0.026900527998805,-0.0038504528347403,0.06820122897625]],[[-0.032754298299551,0.089796997606754,0.054352130740881],[-0.06322255730629,0.026653980836272,0.10333899408579],[0.099500812590122,0.13404282927513,-0.0025114889722317]],[[0.070115104317665,0.050605963915586,-0.077950455248356],[-0.087251752614975,-0.083459593355656,-0.039706610143185],[-0.095787592232227,-0.089345127344131,-0.062467679381371]],[[-0.0015647723339498,-0.025311026722193,-0.070550680160522],[-0.036938808858395,-0.017158817499876,0.041223082691431],[0.11482782661915,0.013494400307536,0.20069545507431]],[[0.1466780602932,-0.014285134151578,0.057750560343266],[-0.12874907255173,-0.059600546956062,-0.094785138964653],[-0.026027360931039,-0.0068134111352265,-0.12572993338108]],[[-0.13545142114162,-0.02875024266541,-0.048339810222387],[0.025510214269161,0.062938533723354,-0.018477199599147],[0.0064931381493807,-0.052548337727785,0.0014121866552159]],[[-0.020527457818389,0.014916810207069,-0.1488248705864],[-0.053744919598103,-0.099603697657585,-0.17963901162148],[-0.080343753099442,-0.022572198882699,-0.17887422442436]],[[-0.034443039447069,-0.02329333871603,-0.022432647645473],[-0.081890776753426,-0.06340990960598,-0.10705012083054],[0.050776828080416,0.082897454500198,0.0027637034654617]],[[-0.045886322855949,0.017081135883927,-0.14160253107548],[-0.03702051192522,0.029006984084845,-0.0030510909855366],[-0.046551961451769,-0.025733998045325,-0.033425182104111]],[[-0.15500573813915,-0.091759547591209,-0.14685006439686],[0.0061844638548791,-0.051192473620176,-0.0042417063377798],[-0.050738669931889,-0.092062227427959,-0.028300879523158]],[[0.021268632262945,0.06603167206049,0.11660578101873],[-0.019977670162916,0.097963109612465,0.072364665567875],[0.024244345724583,-0.0084320092573762,-0.10186158120632]],[[-0.088801316916943,0.072971642017365,0.12183061987162],[0.015460383147001,-0.053708408027887,-0.019762052223086],[0.11174400150776,0.015542959794402,0.033865131437778]],[[0.13359858095646,0.15659555792809,0.29838740825653],[0.054488033056259,-0.053233098238707,-0.059075735509396],[0.086712628602982,-0.15601760149002,-0.11657907813787]],[[0.069630242884159,0.086472325026989,-0.053692068904638],[-0.10451146960258,0.039544578641653,-0.080835819244385],[-0.12168247997761,0.09187239408493,-0.076433166861534]],[[0.12361703813076,0.040249235928059,0.16803675889969],[0.049426574259996,0.1647782176733,0.024418234825134],[-0.062962479889393,0.044584386050701,0.076056756079197]],[[-0.010118733160198,-0.078404150903225,-0.026288563385606],[0.0048780087381601,0.019805228337646,-0.023986607789993],[-0.063344664871693,-0.034378249198198,-0.18136732280254]],[[0.053742669522762,0.091962955892086,-0.020227693021297],[-0.01101359538734,0.012416594661772,-0.090892650187016],[0.1152336448431,0.14045843482018,-0.034811276942492]],[[-0.15126085281372,0.057914972305298,-0.060575734823942],[-0.021967688575387,-0.0075001399964094,-0.057863615453243],[0.074254281818867,0.097981050610542,-0.11721500009298]],[[-0.042779929935932,-0.12975598871708,0.068743146955967],[-0.094949312508106,0.042940709739923,0.075130000710487],[-0.073176153004169,0.11249690502882,0.025876816362143]],[[-0.042299803346395,-0.046240702271461,-0.025280175730586],[0.02909748069942,-0.08929530531168,-0.060275591909885],[-0.066093184053898,0.054047934710979,0.13792084157467]],[[-0.012097869068384,0.06095664948225,0.027390573173761],[-0.01714794524014,0.096640840172768,0.030796812847257],[0.015907535329461,0.08042960613966,-0.087957084178925]],[[-0.10334543138742,-0.00070250692078844,-0.17804574966431],[-0.048430189490318,-0.049250889569521,-0.077374845743179],[0.14366532862186,0.019892880693078,0.058505069464445]],[[0.00013011663395446,0.029813192784786,0.065170608460903],[0.079642154276371,0.015259147621691,-0.012652396224439],[0.013105005957186,0.038856640458107,0.021815974265337]],[[0.058905810117722,0.045486554503441,0.00064276438206434],[0.010170665569603,-0.0084300152957439,0.086348868906498],[0.074481807649136,-0.035445611923933,0.014947034418583]],[[0.12352792173624,-0.017993327230215,0.1190984621644],[0.042423170059919,0.12020731717348,0.013744967058301],[-0.021753024309874,-0.079963490366936,-0.039880607277155]],[[0.011226271279156,0.12910623848438,0.040852393954992],[0.071013651788235,0.019475793465972,0.02916064299643],[-0.028421094641089,-0.035771414637566,0.0033811635803431]],[[0.00050374213606119,0.038266468793154,-0.035751227289438],[0.018204871565104,-0.058357939124107,-0.031426265835762],[-0.014806245453656,-0.085749894380569,0.055580496788025]],[[0.080646075308323,0.010730784386396,-0.0033271878492087],[-0.0075038876384497,-0.059168834239244,0.02814426086843],[0.0151078235358,-0.11770209670067,-0.078085869550705]],[[-0.0035463231615722,0.0063667083159089,0.046157687902451],[0.057996280491352,0.10428088158369,0.19865265488625],[-0.10028627514839,-0.040558017790318,0.07734202593565]],[[0.0071115996688604,0.031114440411329,0.0068498835898936],[-0.13686296343803,0.081656858325005,-0.0074581573717296],[-0.034983187913895,0.043472081422806,0.16031956672668]],[[-0.13397724926472,-0.073074549436569,-0.066337361931801],[0.01610155031085,0.14532290399075,0.2465358376503],[-0.031025281175971,0.06581474095583,0.014234087429941]],[[0.03612894937396,-0.020482147112489,0.0011667531216517],[-0.0062275663949549,-0.036604702472687,0.039506535977125],[-0.055846925824881,-0.059912513941526,-0.13724753260612]],[[0.090073995292187,-0.06311846524477,0.1058641448617],[0.065127588808537,-0.040603075176477,-0.01681157015264],[-0.023159582167864,-0.089865267276764,-0.058407641947269]],[[-0.10294093936682,-0.034864772111177,0.033751264214516],[0.017984934151173,-0.087188184261322,-0.022458408027887],[-0.04423712939024,-0.076609060168266,-0.21326777338982]],[[-0.063758842647076,-0.064800314605236,0.081631273031235],[-0.040321975946426,-0.11394119262695,0.093500077724457],[-0.08178074657917,-0.045668996870518,0.020986130461097]],[[-0.078246735036373,-0.075320981442928,-0.03158512711525],[-0.055124554783106,-0.080789305269718,-0.0072008087299764],[0.027133595198393,-0.090241685509682,-0.093648947775364]],[[0.010727793909609,-0.050142150372267,0.010092213749886],[-0.080576203763485,0.055572688579559,-0.0033755258191377],[-0.01238280069083,0.099792085587978,-0.026593426242471]],[[0.014622558839619,0.010334542952478,0.0069907484576106],[-0.01207662653178,-0.10301785171032,-0.047617319971323],[-0.04344841465354,-0.055973511189222,-0.018096873536706]],[[0.066937893629074,-0.24111400544643,0.015300901606679],[-0.053480681031942,0.031778927892447,0.071578398346901],[-0.041198715567589,-0.057676754891872,0.074177838861942]],[[0.15374478697777,-0.019636387005448,-0.13947257399559],[0.15397089719772,0.13353309035301,-0.0047725499607623],[0.093446426093578,-0.046608690172434,0.037640791386366]],[[0.029654333367944,0.036248236894608,-0.10572402924299],[-0.0041813324205577,0.11426793038845,0.11808709800243],[-0.02728477306664,0.11472887545824,0.0031125592067838]]],[[[-0.1753001511097,0.0081969378516078,-0.006563232280314],[-0.10206275433302,-0.072760619223118,0.035042863339186],[-0.017229864373803,-0.010412001051009,0.083910062909126]],[[0.13597698509693,0.17766198515892,0.075118526816368],[0.10382352769375,0.046778246760368,-0.10060573369265],[-0.019928822293878,-0.043961551040411,-0.11139058321714]],[[0.027611216530204,0.080693863332272,0.14173656702042],[-0.086628757417202,-0.10871268063784,0.028978338465095],[0.015885522589087,-0.063217341899872,-0.018782898783684]],[[-0.10201227664948,-0.06303695589304,0.011618655174971],[-0.030536724254489,-0.025018410757184,0.10594834387302],[-0.047041982412338,-0.0026287988293916,0.12356591969728]],[[-0.081429623067379,0.099039554595947,-0.024426592513919],[0.12911304831505,0.19033782184124,-0.037566278129816],[0.0068016974255443,0.047262132167816,0.096597328782082]],[[0.22846096754074,0.099062219262123,0.063401229679585],[-0.14030204713345,-0.073616579174995,0.15178191661835],[0.14934216439724,0.048353314399719,0.1009818688035]],[[0.16584393382072,0.11817286908627,0.15594694018364],[0.11256673187017,0.10790704190731,0.11095727980137],[-0.026324408128858,-0.1246001496911,-0.081758603453636]],[[0.058814574033022,0.072396486997604,0.036547854542732],[0.057046573609114,-0.01528680510819,0.078277170658112],[0.025525731965899,0.15129585564137,0.024359550327063]],[[-0.031649861484766,-0.13393223285675,-0.0013381460448727],[-0.010120789520442,-0.060623656958342,0.018291182816029],[-0.12260826677084,-0.10104955732822,0.062094204127789]],[[0.048312745988369,-0.022391375154257,0.018154388293624],[0.044932391494513,0.029578413814306,0.010680486448109],[-0.066155530512333,-0.022864820435643,-0.2231550514698]],[[0.064501404762268,0.042234029620886,0.037191409617662],[0.009160322137177,0.043581016361713,0.076903283596039],[0.027372878044844,-0.01124179083854,0.097825646400452]],[[-0.01342942379415,-0.011766362935305,-0.06150534376502],[-0.053996734321117,-0.082654885947704,0.15347909927368],[0.074870862066746,0.096541695296764,-0.016118135303259]],[[-0.10154966264963,-0.052797447890043,-0.033198669552803],[-0.040437567979097,-0.096048019826412,-0.059083491563797],[-0.043855641037226,-0.03787549212575,0.015069498680532]],[[0.035549469292164,-0.083711981773376,-0.14569693803787],[0.0014108349569142,-0.056804165244102,-0.019407326355577],[0.11248631030321,0.067380994558334,-0.096009239554405]],[[-0.13690976798534,-0.023420365527272,0.1104841157794],[0.033626686781645,-0.0028185409028083,-0.22071523964405],[-0.04930417984724,-0.071002602577209,-0.04039940983057]],[[0.052059952169657,-0.04857500270009,-0.075000695884228],[0.0058826929889619,0.01023462228477,0.064313583076],[-0.074456341564655,-0.1345290094614,0.091316200792789]],[[-0.029410429298878,-0.047847457230091,-0.071708291769028],[0.033531062304974,-0.061630748212337,0.079294830560684],[-0.036326318979263,0.095240369439125,0.10186036676168]],[[-0.0075303572230041,-0.11350475996733,-0.25751748681068],[0.1336272507906,0.11490473896265,0.079754889011383],[0.057632263749838,0.20730826258659,0.11714144051075]],[[-0.092810429632664,-0.087087973952293,-0.014330044388771],[0.05052587389946,0.010093580931425,0.061707083135843],[0.02026079967618,0.094377264380455,0.059337101876736]],[[0.039216339588165,-0.12381062656641,-0.065001875162125],[0.14051224291325,-0.00052769493777305,-0.073983073234558],[-0.064919672906399,0.012110761366785,0.044701714068651]],[[-0.17498680949211,-0.081330038607121,0.0020133247599006],[-0.029439156875014,-0.040366571396589,-0.12036155164242],[0.06287881731987,0.15445198118687,0.015517846681178]],[[0.035838734358549,-0.10406175255775,-0.013751516118646],[0.20683211088181,0.046075347810984,0.089800000190735],[-0.10299865156412,-0.032674755901098,-0.0093965390697122]],[[0.028650972992182,-0.0075233331881464,-0.058881301432848],[-0.10744488239288,0.018064469099045,0.012543056160212],[0.026545152068138,0.046030212193727,0.12231795489788]],[[0.037282802164555,0.16954725980759,-0.035713128745556],[0.0024832955095917,-0.0074317948892713,0.08246411383152],[0.013576139695942,-0.036546308547258,-0.059517413377762]],[[-0.24208526313305,-0.0051223463378847,-0.12029881775379],[-0.14771555364132,-0.07802639901638,0.080678775906563],[-0.11400663852692,-0.18263778090477,-0.15658603608608]],[[-0.088471539318562,-0.067153058946133,0.14808794856071],[0.040219224989414,-0.066559731960297,0.1099401935935],[-0.031587742269039,-0.12404192984104,0.10786847770214]],[[-0.11343261599541,-0.070057615637779,0.032565359026194],[-0.029028236865997,0.0063022901304066,0.04353941604495],[0.19549639523029,0.043955739587545,0.05047332495451]],[[0.069750301539898,0.075325287878513,-0.079256005585194],[0.051225278526545,-0.043486531823874,-0.075594052672386],[0.080535121262074,-0.01506897713989,0.024861769750714]],[[0.035721305757761,0.025048952549696,0.073848001658916],[-0.030563762411475,-0.055206142365932,-0.1293538659811],[0.055376257747412,-0.0247747823596,-0.20458038151264]],[[-0.013197898864746,-0.015632007271051,-0.10933161526918],[-0.038599226623774,0.12676553428173,-0.017746986821294],[0.0051233489066362,-0.0289641097188,-0.013688919134438]],[[-0.073015995323658,-0.013892941176891,0.056096062064171],[-0.029312392696738,0.17048192024231,-0.003033057320863],[0.11991089582443,0.010745283216238,-0.098687395453453]],[[0.028262117877603,0.035086683928967,-0.1100831925869],[-0.10422626882792,0.053189191967249,-0.041697025299072],[0.074969939887524,-0.019225094467402,0.078615121543407]],[[0.046770490705967,0.033833391964436,-0.031768903136253],[0.082032680511475,0.020672196522355,0.01813231408596],[-0.055728815495968,-0.036658588796854,0.057196233421564]],[[-0.057035017758608,-0.10135423392057,0.10541439056396],[-0.032643284648657,0.020196069031954,0.13126802444458],[0.13732773065567,0.16241915524006,-0.050058715045452]],[[0.058050457388163,-0.069274850189686,-0.057715777307749],[0.031623873859644,-0.10283982008696,-0.056160699576139],[0.062030829489231,-0.11406912654638,-0.031345624476671]],[[0.14615173637867,0.060205981135368,-0.16776937246323],[0.14903324842453,0.094741448760033,-0.076812334358692],[0.22993192076683,-0.084730841219425,-0.16332916915417]],[[-0.21461395919323,0.009247412905097,0.069640584290028],[-0.040878057479858,0.12912358343601,0.021074937656522],[0.076173566281796,0.046232473105192,-0.072918482124805]],[[0.0037770105991513,-0.023530354723334,0.11730914562941],[-0.01758467592299,-0.021534876897931,0.1906980574131],[0.00087384943617508,0.032398711889982,0.044360186904669]],[[-0.052440095692873,-0.092003934085369,-0.064769826829433],[-0.12251023948193,-0.057242605835199,0.029906172305346],[0.046086639165878,0.12810416519642,-0.062000870704651]],[[-0.1756874024868,0.13915894925594,0.01584691926837],[0.1404032856226,0.18446972966194,0.086300753057003],[-0.11035791039467,0.075689367949963,-0.087251849472523]],[[-0.090621791779995,-0.02864845097065,-0.07814534008503],[-0.056522838771343,-0.052772298455238,-0.1500476449728],[0.0046278540976346,0.079194001853466,-0.019492054358125]],[[-0.011479444801807,0.049394674599171,-0.028088333085179],[0.02275906689465,0.016123529523611,-0.088762156665325],[0.051753934472799,0.057342879474163,0.015831433236599]],[[0.10306843370199,-0.10080766677856,-0.025453558191657],[-0.057918395847082,0.023604599758983,-0.18439050018787],[0.050083704292774,0.023912092670798,0.14875535666943]],[[0.085069417953491,-0.010982573032379,0.035695847123861],[0.056433942168951,-0.0095997136086226,0.021738706156611],[0.064959667623043,0.024228515103459,0.081709817051888]],[[-0.080873161554337,-0.032957974821329,-0.049457304179668],[0.077241882681847,0.024212602525949,-0.046491418033838],[-0.037404093891382,0.045981645584106,0.017045577988029]],[[-0.047700148075819,0.035780448466539,-0.17879393696785],[-0.081810593605042,-0.061092477291822,0.041843447834253],[-0.034102741628885,-0.095863863825798,0.018572222441435]],[[0.07048661261797,-0.068382583558559,-0.222989320755],[-0.10880946367979,-0.18001469969749,0.12523999810219],[0.0044090165756643,-0.051883947104216,0.050819981843233]],[[0.071552112698555,0.19865640997887,0.16999216377735],[0.058940522372723,-0.17672175168991,-0.096120603382587],[0.099615305662155,-0.082028590142727,-0.1833758354187]],[[-0.052654325962067,0.11827502399683,0.052789974957705],[0.018233494833112,-0.022106247022748,-0.013961465097964],[0.092607691884041,-0.030394209548831,-0.065843105316162]],[[0.0032522270921618,0.061456065624952,-0.053241096436977],[-0.063043050467968,-0.090979129076004,0.018756940960884],[0.059994611889124,0.089546605944633,0.083198964595795]],[[-0.12382451444864,-0.056446108967066,0.048478271812201],[-0.16418582201004,0.073848962783813,0.14169120788574],[0.083002492785454,-0.11337177455425,-0.042418368160725]],[[-0.051648411899805,-0.0096916258335114,0.033103659749031],[0.03430936858058,-0.060517325997353,-0.071982949972153],[-0.12820689380169,-0.11019421368837,-0.065989322960377]],[[0.088873997330666,0.057866033166647,0.12079190462828],[-0.033561550080776,0.059316970407963,0.019838621839881],[-0.023559069260955,0.014836460351944,-0.07883433252573]],[[0.032435607165098,0.12556391954422,-0.041844181716442],[-0.052067305892706,-0.016202114522457,-0.085709236562252],[0.010741695761681,-0.041394796222448,-0.038786940276623]],[[0.003477992489934,-0.18826803565025,0.012243449687958],[-0.045998200774193,-0.14315420389175,0.10089426487684],[0.035003837198019,0.010806675069034,-0.016360748559237]],[[0.039877232164145,-0.005559463519603,0.039985459297895],[0.12727807462215,0.10609132051468,-0.0052155102603137],[-0.10307161509991,-0.096012428402901,-0.081507056951523]],[[-0.096878193318844,-0.11635231226683,0.01256347913295],[0.036925505846739,-0.031996328383684,-0.049715064466],[0.021274721249938,-0.20785067975521,-0.094897173345089]],[[-0.11494087427855,-0.028517127037048,-0.011602492071688],[-0.034509863704443,-0.15932673215866,-0.11857964098454],[0.055099092423916,0.12130228430033,0.055113404989243]],[[-0.092523612082005,0.017271434888244,0.089216247200966],[-0.0080400044098496,-0.044314086437225,-0.09710393846035],[0.033505842089653,-0.08017510920763,0.022449748590589]],[[0.078917093575001,0.081817060709,0.063661716878414],[-0.081537790596485,-0.004801707342267,0.046735316514969],[-0.051190070807934,-0.065451592206955,-0.10218726843596]],[[-0.019573792815208,0.026830496266484,0.072992108762264],[-0.027406111359596,-0.14193919301033,-0.033838383853436],[-0.024054395034909,-0.061544861644506,0.030455784872174]],[[0.00529416045174,0.085064724087715,-0.11076050251722],[0.017946438863873,-0.010314336977899,0.021736517548561],[-0.099964246153831,-0.11302985996008,-0.1815173625946]],[[-0.0082938000559807,0.025790877640247,0.085056982934475],[0.043078318238258,-0.043867979198694,-0.054505605250597],[-0.023049222305417,-0.093878857791424,-0.023186193779111]],[[0.12239972501993,0.065137691795826,0.074960201978683],[0.12095207720995,-0.053178675472736,0.043712288141251],[-0.035842377692461,-0.13607667386532,-0.077248305082321]],[[0.12918704748154,-0.089097768068314,0.092261135578156],[0.020387204363942,-0.20134545862675,-0.080312199890614],[0.057155396789312,-0.026849254965782,-0.047911442816257]],[[0.13417695462704,0.12005242705345,0.0094665568321943],[0.069234549999237,0.13196262717247,0.056415919214487],[0.0099049722775817,0.077512793242931,0.056147921830416]],[[0.072729714214802,0.070306308567524,-0.077663466334343],[-0.11957946419716,-0.060195360332727,-0.082309126853943],[-0.084136039018631,-0.18505658209324,-0.049292523413897]],[[0.14034159481525,-0.066555269062519,-0.042523968964815],[0.040636204183102,0.080279245972633,0.020748915150762],[-0.062546513974667,-0.059047766029835,0.0018249185523018]],[[0.12113831937313,-0.017368976026773,-0.036090649664402],[0.059205561876297,-0.098005138337612,-0.14246597886086],[0.028944524005055,-0.1384851783514,-0.13510793447495]],[[-0.048115663230419,-0.050305631011724,-0.00071078247856349],[-0.12159804999828,-0.0043731015175581,-0.011058020405471],[-0.14693327248096,0.012939248234034,-0.060482706874609]],[[-0.10100293904543,0.0049558565951884,-0.064512766897678],[-0.10269290208817,-0.10760157555342,-0.085246697068214],[-0.077099740505219,-0.12027630209923,-0.074549630284309]],[[0.082938350737095,-0.12162797898054,-0.037578240036964],[0.018148887902498,0.029500683769584,-0.14474858343601],[-0.0060129649937153,-0.10214614868164,-0.058618310838938]],[[-0.18617942929268,-0.066628113389015,0.12695719301701],[-0.080275699496269,0.022151950746775,-0.097609922289848],[0.14747196435928,-0.012442777864635,-0.081749804317951]],[[-0.091256365180016,-0.086524121463299,-0.093655243515968],[-0.092587865889072,-0.07404762506485,-0.16186743974686],[-0.031489457935095,-0.0251320656389,-0.078896269202232]],[[-0.03055434115231,0.1167843490839,0.14700290560722],[-0.025763122364879,-0.14558357000351,-0.03703697770834],[-0.055878162384033,0.021969679743052,-0.0071738553233445]],[[0.046965233981609,0.093911848962307,-0.082736603915691],[0.10462839156389,0.075027652084827,-0.03372436389327],[0.02227414958179,-0.019388888031244,0.18090504407883]],[[-0.026716463267803,0.00061643606750295,0.010135139338672],[-0.10611178725958,-0.079921811819077,0.077291205525398],[0.031863752752542,0.098398305475712,-0.088391646742821]],[[0.01309706363827,-0.10548616945744,-0.13378764688969],[-0.14248305559158,-0.13410396873951,-0.1342248916626],[0.10102482140064,-0.020891014486551,0.0070578763261437]],[[-0.036047767847776,-0.012136512435973,-0.068151950836182],[0.037087488919497,-0.021349845454097,-0.017872842028737],[0.038102462887764,0.011654028669,-0.012980627827346]],[[-0.013034652918577,-0.03168723359704,0.039731968194246],[0.033658988773823,0.11302138864994,0.014281640760601],[0.012266463600099,0.1041586175561,-0.034245118498802]],[[-0.057130631059408,-0.020849816501141,0.11102498322725],[-0.0013248522300273,0.032221835106611,0.070576801896095],[0.031587976962328,-0.0032236359547824,0.13053828477859]],[[-0.015422131866217,-0.13102480769157,0.16382107138634],[0.061135109513998,-0.055261492729187,-0.10390872508287],[0.039320930838585,0.16034305095673,-0.058684412389994]],[[-0.011712780222297,0.061074409633875,-0.030605552718043],[0.023069750517607,0.15089583396912,0.025993501767516],[0.13430185616016,0.20275473594666,-0.0021541898604482]],[[-0.012024067342281,-0.083408579230309,-0.018626399338245],[-0.026693627238274,0.021678399294615,0.066281661391258],[0.0014317644527182,0.075750447809696,0.0011159763671458]],[[-0.085494510829449,0.13273721933365,0.068613849580288],[-0.077744610607624,0.010799518786371,0.056929744780064],[0.13295766711235,0.20120005309582,-0.02178462408483]],[[-0.039756003767252,-0.0024386253207922,0.068028979003429],[0.025520205497742,-0.20889581739902,-0.12601839005947],[0.043237466365099,-0.027470253407955,-0.093226455152035]],[[-0.031508360058069,-0.042418077588081,-0.034255005419254],[0.061638113111258,0.049275517463684,0.079673826694489],[0.0080030132085085,-0.0077090449631214,-0.051340527832508]],[[0.055194918066263,-0.06674225628376,-0.081847414374352],[-0.029502175748348,-0.083169095218182,-0.070220477879047],[-0.028185356408358,-0.16949756443501,-0.084293507039547]],[[0.10137434303761,-0.095979958772659,0.099567048251629],[0.022107854485512,0.075321331620216,0.078711301088333],[-0.10658629238605,-0.098260626196861,0.10249102115631]],[[-0.017231542617083,0.019060647115111,-0.015993393957615],[0.012911952100694,0.077336795628071,-0.062839902937412],[-0.037626702338457,-0.088906243443489,-0.10410962998867]],[[-0.058315444737673,-0.068437419831753,0.076873689889908],[-0.029619805514812,-0.028551332652569,0.016219228506088],[-0.11652866005898,0.06701522320509,-0.086576826870441]],[[-0.06794199347496,-0.057711932808161,-0.040647823363543],[-0.14575886726379,0.033489421010017,0.1106565669179],[-0.012137413024902,0.072936244308949,0.058868024498224]],[[-0.042489599436522,0.030188778415322,0.03820713609457],[0.017834497615695,0.083472728729248,-0.022333867847919],[-0.018197812139988,0.014390635304153,0.0044327294453979]],[[0.014270637184381,0.1020033583045,0.053953938186169],[0.066931858658791,-0.12450389564037,-0.065939195454121],[-0.12025766819715,-0.059791229665279,-0.014777555130422]],[[0.023288117721677,0.0066547519527376,-0.011432654224336],[0.042806163430214,-0.024531194940209,0.012297318316996],[-0.14485168457031,-0.083527155220509,0.064072042703629]],[[-0.014962180517614,-0.027039892971516,0.092313602566719],[0.025427766144276,0.05191956833005,0.14930345118046],[-0.021873654797673,-0.065887995064259,0.055333029478788]],[[0.062488552182913,0.15271383523941,-4.8640016757417e-05],[-0.00019908510148525,-0.03610485047102,-0.12064877152443],[-0.029837008565664,-0.019845934584737,-0.063045486807823]],[[0.018400110304356,-0.055445864796638,0.013558967038989],[-0.030187021940947,-0.071783363819122,-0.016000270843506],[0.02275899797678,0.030017064884305,0.06608310341835]],[[-0.059512238949537,-0.034962963312864,0.021842105314136],[-0.051995802670717,0.14060863852501,0.031079277396202],[-0.034819230437279,0.046910785138607,0.0074318367987871]],[[-0.11080113053322,0.079543992877007,0.0025988814886659],[0.03216940164566,0.058190997689962,0.053953032940626],[0.019441580399871,0.059991251677275,0.14272494614124]],[[-0.18366140127182,-0.16139449179173,-0.068890102207661],[-0.15234459936619,0.072158828377724,0.12365435063839],[0.00063617748674005,-0.090612269937992,-0.058834403753281]],[[-0.059010196477175,-0.02097007445991,-0.0065886084921658],[0.0079174675047398,0.058503728359938,0.041535593569279],[0.12973330914974,0.086716376245022,0.10766698420048]],[[0.10023608058691,-0.030976874753833,-0.073794342577457],[-0.12576547265053,-0.037589561194181,-0.019456457346678],[0.030336644500494,0.016439497470856,-0.11414800584316]],[[0.043482787907124,0.044908970594406,0.044161148369312],[-0.037106212228537,0.054605823010206,0.051651373505592],[-0.12727385759354,-0.15437249839306,-0.09232147783041]],[[0.041463430970907,-0.036992017179728,0.17649371922016],[-0.009284470230341,-0.11720185726881,0.087488695979118],[0.10355962067842,0.029668254777789,0.01766112819314]],[[0.0037213754840195,-0.092255622148514,-0.11032816022635],[0.011058554053307,-0.012191881425679,0.035219296813011],[0.062827035784721,0.050742961466312,0.056280288845301]],[[-0.026788637042046,-0.019525879994035,0.09253815561533],[0.1347304135561,0.061140600591898,0.16590875387192],[0.13107806444168,0.035488869994879,0.11973489075899]],[[0.086516469717026,0.098210617899895,0.075627855956554],[-0.037120088934898,-0.089163169264793,0.13117365539074],[-0.052992891520262,-0.033176630735397,-0.0070933857932687]],[[0.054732948541641,0.12304992228746,-0.065114475786686],[0.037540540099144,-0.036923605948687,0.060818541795015],[0.023406332358718,0.0075976746156812,0.11622089892626]],[[-0.02593102119863,0.016400579363108,-0.040293101221323],[0.058362409472466,0.055427953600883,0.05627515912056],[0.083802737295628,0.017586538568139,0.035792276263237]],[[0.040259394794703,0.054831020534039,0.10591509193182],[0.019773047417402,-0.021940955892205,0.0047475546598434],[-0.055030252784491,-0.00059733487432823,0.023683486506343]],[[-0.051894336938858,-0.051680713891983,-0.042061880230904],[0.03067765571177,0.11822026222944,-0.029954042285681],[0.14757660031319,0.10384852439165,0.044121567159891]],[[-0.094874680042267,-0.15466940402985,-0.046362113207579],[0.087090097367764,0.09244816750288,-0.012307188473642],[0.1079343110323,0.12818640470505,0.063075006008148]],[[0.14300589263439,-0.013533899560571,-0.043422196060419],[0.040166553109884,0.1109825745225,-0.080260828137398],[-0.13512006402016,0.21416951715946,0.12518920004368]],[[-0.019256668165326,0.13821218907833,0.015606528148055],[0.080472022294998,0.095337972044945,0.020823402330279],[0.010038656182587,0.04878568649292,0.044292274862528]],[[0.20596352219582,0.078837379813194,-0.10096695274115],[0.12630291283131,0.021331012248993,0.0027238896582276],[0.056331437081099,0.0735969170928,-0.071920894086361]],[[0.10265833884478,-0.10994186252356,-0.014909969642758],[0.028019471094012,0.060280200093985,-0.032397091388702],[0.11975105851889,0.083425626158714,-0.048605170100927]],[[0.12539941072464,0.14270955324173,0.16861261427402],[-0.12570270895958,0.063135005533695,-0.044762507081032],[-0.067460499703884,-0.056564379483461,-0.12375450879335]],[[-0.035924706608057,-0.053411994129419,0.068919092416763],[0.075690872967243,-0.14465588331223,-0.15112924575806],[-0.057742331176996,-0.040956225246191,0.014533930458128]],[[-0.11454171687365,0.0044972342438996,0.054127782583237],[-0.031066808849573,0.086206011474133,0.039328385144472],[-0.041410598903894,0.045078281313181,0.056053433567286]],[[0.1310680359602,-0.022363958880305,-0.073700778186321],[-0.13826026022434,0.1454039812088,-0.090660229325294],[0.14791125059128,0.050008371472359,0.067482568323612]],[[0.051049757748842,-0.1041965931654,0.11692200601101],[0.0077545372769237,-0.030856369063258,0.043479915708303],[0.12450017035007,0.059851095080376,0.027813263237476]],[[0.034955281764269,0.045786045491695,-0.12191477417946],[-0.12372437119484,-0.12396319210529,-0.16805802285671],[-0.059949859976768,-0.12039098143578,-0.0027843900024891]],[[-0.017232755199075,-0.0089079290628433,0.065215729176998],[-0.017814880236983,-0.029437571763992,0.087674878537655],[0.044695120304823,0.07969193905592,0.12789537012577]],[[-0.065522618591785,0.036966323852539,0.098469495773315],[0.038607634603977,-0.047632783651352,-0.052059914916754],[-0.050289738923311,-0.061808928847313,0.036618907004595]],[[-0.018067445605993,-0.10073890537024,0.028336133807898],[-0.045382775366306,-0.16376714408398,-0.066114671528339],[0.098374418914318,0.038430500775576,-0.035461902618408]],[[0.038769375532866,0.04676678404212,0.18069431185722],[0.093067400157452,0.046570800244808,0.072973258793354],[0.0022788953501731,0.0079722125083208,-0.058448184281588]],[[-0.15645115077496,-0.19895830750465,0.18418158590794],[-0.057309292256832,0.21630015969276,-0.0012289800215513],[-0.084108740091324,-0.037322826683521,0.081215254962444]]],[[[-0.0076585989445448,-0.025863846763968,-0.005889505147934],[-0.022324539721012,0.0015446585603058,0.058580689132214],[-0.051218215376139,0.014673819765449,-0.015453479252756]],[[-0.087206415832043,0.032202996313572,0.070679940283298],[0.070962622761726,0.036686021834612,-0.0059222732670605],[-0.034942418336868,-0.012786155566573,-0.045209795236588]],[[0.012540439143777,-0.011487589217722,-0.039810504764318],[-0.050568513572216,0.013693070039153,0.087463863193989],[0.0080754449591041,0.050318270921707,-0.041622884571552]],[[-0.033617466688156,-0.03063122369349,-0.079539611935616],[-0.099708527326584,0.047198317945004,0.070237226784229],[-0.051376301795244,-0.038237702101469,0.032919269055128]],[[-0.072301134467125,0.049201190471649,-0.0072497478686273],[0.02400316298008,0.043584872037172,-0.028697691857815],[0.026589283719659,0.043888881802559,-0.043253436684608]],[[-0.047515261918306,0.017147090286016,0.034692838788033],[0.010017660446465,0.026062516495585,-0.028175992891192],[0.06397882848978,0.045802161097527,-0.018989274278283]],[[-0.019755631685257,-0.043215580284595,-0.010138284415007],[0.042029540985823,0.0063981427811086,-0.037895537912846],[0.037343770265579,0.037345077842474,-0.022946355864406]],[[-0.019197806715965,0.0090751331299543,0.011051448993385],[-0.0030442825518548,-0.019748145714402,0.050588268786669],[-0.06914172321558,0.0023886389099061,0.027334852144122]],[[-0.035079378634691,0.004671972244978,0.042742285877466],[0.021986281499267,0.022881476208568,0.012157946825027],[-0.034496460109949,-0.049334287643433,-0.058958146721125]],[[-0.056012447923422,-0.010535617358983,-0.039224900305271],[-0.044163554906845,-0.070711486041546,-0.013877316378057],[0.049719735980034,-0.029380608350039,-0.013432441279292]],[[0.099728479981422,0.03906487673521,0.061750367283821],[0.025106307119131,-0.0080768028274179,-0.099573366343975],[0.019198587164283,-0.020560942590237,-0.0027039083652198]],[[0.022661089897156,-0.033643372356892,-0.049627605825663],[0.015068774111569,-0.00065460737096146,0.028833191841841],[0.031102092936635,0.04045419767499,0.045156810432673]],[[0.03329211473465,0.043769419193268,-0.010805324651301],[-0.070459775626659,-0.0024857432581484,0.016873264685273],[0.046643882989883,0.049351144582033,-0.03426194563508]],[[-0.013554508797824,-0.014605874195695,-0.07694648206234],[-0.0094690639525652,-0.017457727342844,-0.019452484324574],[0.017229253426194,-0.0076861553825438,0.0093492120504379]],[[0.0014874822227284,0.066155858337879,0.063508979976177],[-0.026458203792572,0.055171936750412,0.063174836337566],[0.0095904106274247,0.11733654141426,0.0064269518479705]],[[-0.026166887953877,0.0021113690454513,0.0087632527574897],[0.0076846652664244,0.034633103758097,-0.013243065215647],[-0.022190412506461,-0.0082285087555647,-0.0060883765108883]],[[-0.038878709077835,0.029989507049322,0.013885960914195],[-0.033105563372374,0.0023015865590423,0.019288709387183],[0.019077908247709,-0.0013202663976699,0.039616700261831]],[[-0.034137144684792,-0.0098017388954759,0.061748832464218],[0.014097786508501,0.061098694801331,-0.04297736659646],[-0.00054464454296976,0.049663074314594,0.079547062516212]],[[0.075377903878689,0.059386286884546,-0.041019752621651],[0.025756984949112,-0.027341747656465,-0.02703301422298],[-0.0082770772278309,0.060023318976164,0.012251880951226]],[[0.037121996283531,-0.04577449709177,-0.024683469906449],[0.058848634362221,0.020987594500184,-0.036747232079506],[-0.01540837623179,0.01692202500999,-0.009551634080708]],[[0.013381888158619,-0.027031920850277,0.025967495515943],[0.06837560236454,0.011146830394864,-0.049602787941694],[-0.0075622289441526,0.0024528806097806,-0.036851160228252]],[[-0.047917351126671,-0.045019164681435,-0.02912774309516],[0.018736280500889,0.052094988524914,0.022110378369689],[-0.038581237196922,0.00074747379403561,0.04022279009223]],[[0.053209654986858,-0.00040365423774347,-0.061598487198353],[-0.062984049320221,-0.02425667271018,-0.015418608672917],[0.018523389473557,0.01262663397938,-0.010498866438866]],[[0.054209653288126,0.052754327654839,0.018021190539002],[-0.040840271860361,0.087202645838261,0.049704600125551],[-0.072860039770603,-0.1291581094265,-0.024151178076863]],[[0.017815217375755,0.01132607460022,0.018948307260871],[0.013826040551066,0.062216941267252,-0.014315608888865],[-0.071250155568123,0.0019605355337262,0.011666480451822]],[[0.023181037977338,0.015105064027011,0.035694994032383],[0.051951378583908,0.026433896273375,0.006867490708828],[-0.031772777438164,-0.022390013560653,-0.032190401107073]],[[0.013181732036173,0.061977751553059,-0.020589487627149],[0.022557308897376,0.01654452458024,-0.025777067989111],[-0.01921034231782,-0.033411484211683,-0.055639952421188]],[[0.043042317032814,0.055167097598314,-0.048498582094908],[-0.020917104557157,0.033605229109526,-0.005920946598053],[-0.013816901482642,0.081907451152802,0.020253581926227]],[[0.023867918178439,-0.06471349298954,-0.013049576431513],[-0.023128675296903,-0.11663264036179,-0.00089146086247638],[0.040972791612148,-0.036563623696566,0.086632333695889]],[[0.064377024769783,0.0079410569742322,-0.041620399802923],[-0.044308625161648,-0.0041138483211398,0.020184468477964],[-0.066274791955948,-0.004358593840152,-0.009036005474627]],[[0.035112537443638,-0.044589594006538,0.0066955373622477],[0.025257054716349,0.0073957624845207,0.042627897113562],[-0.0083052488043904,-0.0344078540802,-0.0084113785997033]],[[-0.032472647726536,-0.017091553658247,0.06563064455986],[0.048023775219917,-0.015793947502971,-0.036983445286751],[-0.049833085387945,-0.0011279986938462,0.056638803333044]],[[-0.063798405230045,-0.0058289906010032,-0.046569861471653],[-0.024965643882751,0.01523272972554,-0.0033455062657595],[0.0081697124987841,0.00085833889897913,0.094470202922821]],[[0.017771564424038,0.014465192332864,-0.036469914019108],[0.030991965904832,0.015278175473213,0.025013703852892],[0.031953986734152,0.010105508379638,-0.043992359191179]],[[-0.057666931301355,-0.043786097317934,0.016632534563541],[-0.046884573996067,0.02018965780735,0.051791552454233],[0.04593462869525,-0.042471170425415,-0.009904470294714]],[[-0.010372336953878,0.042772352695465,-0.028781812638044],[0.063033752143383,-0.022391768172383,0.0093667330220342],[0.096346214413643,0.053103774785995,-0.0030291429720819]],[[-0.0054952101781964,0.03269899263978,0.075666911900043],[-0.01736555993557,-0.049480546265841,-0.034965697675943],[-0.050161071121693,0.10625744611025,0.033881727606058]],[[0.016105763614178,0.080517739057541,0.018096636980772],[-0.018753251060843,-0.027987621724606,-0.022897096350789],[-0.044341277331114,-0.023583460599184,-0.090675756335258]],[[-0.00014401139924303,0.060009624809027,0.057999096810818],[-0.063493870198727,0.0066697257570922,-0.015126122161746],[-0.047833614051342,-0.03005844168365,-0.023901399224997]],[[-0.038671929389238,-0.095864430069923,0.02961234934628],[-0.0076910485513508,-0.00089227024000138,0.023262064903975],[0.0028997515328228,-0.030959837138653,-0.035105597227812]],[[-0.015542194247246,-0.03880912438035,0.02138938382268],[0.051904071122408,-0.038067236542702,0.019024316221476],[-0.048846639692783,0.032577946782112,0.026027750223875]],[[0.032344251871109,-0.030445201322436,-0.067225120961666],[0.040944896638393,-0.011825540103018,-0.033809695392847],[-0.0060214223340154,-0.053307242691517,0.06415568292141]],[[0.080952003598213,0.048310410231352,0.031508378684521],[-0.0058031370863318,-0.001577487681061,-0.010017829947174],[-0.01359630189836,-0.0099986307322979,-0.051374323666096]],[[-0.068801127374172,0.015017151832581,0.080577038228512],[-0.02082453481853,-0.024015618488193,0.040705367922783],[-0.080860294401646,-0.024191405624151,0.024202467873693]],[[-0.093631267547607,-0.015293025411665,0.026051875203848],[0.0022767977789044,-0.030009727925062,0.025664120912552],[0.034764174371958,0.034703191369772,0.088272884488106]],[[-0.02907001785934,-0.032401122152805,-0.0039681834168732],[-0.045849241316319,-0.0411984808743,0.033780440688133],[-0.058403845876455,-0.0037610761355609,0.031532969325781]],[[0.03210224211216,0.0014562563737854,0.03835566714406],[0.054690521210432,0.088131487369537,-0.02372482419014],[0.047266714274883,0.011840154416859,-0.037607192993164]],[[-0.039025660604239,0.0078377537429333,0.012067361734807],[-0.057454962283373,0.025567190721631,0.050240036100149],[-0.0079094301909208,0.014867798425257,-0.033110722899437]],[[0.027895895764232,0.038521837443113,0.022149069234729],[-0.057784147560596,-0.04036108404398,0.01770661957562],[0.072107210755348,0.011146931909025,0.028861487284303]],[[-0.021141933277249,0.0099098701030016,0.01008328422904],[0.010625817812979,-0.0078744571655989,0.04589568823576],[0.012081111781299,0.0026289743836969,0.01521136239171]],[[-0.066668324172497,0.02004779689014,-0.012011366896331],[-0.06186781078577,0.026110347360373,-0.0012913874816149],[-0.032712869346142,0.010310148820281,0.023297164589167]],[[0.074413537979126,-0.010408859699965,0.045415118336678],[-0.025036523118615,-0.0088907722383738,0.044569849967957],[-0.022179894149303,-0.031105298548937,-0.056770633906126]],[[0.058727532625198,0.042221467941999,-0.011964186094701],[0.050396829843521,0.0089226104319096,0.0677854642272],[0.077669702470303,0.029273768886924,0.056471146643162]],[[0.023325184360147,0.065508559346199,0.013899875804782],[0.084327779710293,-0.0092674763873219,-0.0053015002049506],[-0.03583175316453,-0.10527532547712,-0.028649846091866]],[[0.029981777071953,0.052475474774837,-0.040655758231878],[-0.043023597449064,0.026504885405302,0.013248433358967],[0.017372598871589,0.0058415201492608,-0.0046279621310532]],[[0.029914973303676,0.079312957823277,0.071060478687286],[0.011031303554773,-0.036865655332804,-0.057427741587162],[0.043924130499363,-0.025841614231467,-0.051374197006226]],[[-0.0049315788783133,0.00062227860325947,-0.023438962176442],[0.033525746315718,-0.0076691936701536,-0.02283688634634],[0.010561022907495,0.012298282235861,-0.0142787322402]],[[-0.042928371578455,0.0097476625815034,0.013013472780585],[0.042916312813759,0.0036641731858253,-0.041538529098034],[0.020726883783937,0.012178007513285,0.060583416372538]],[[0.021895388141274,-0.0045374687761068,-0.020032776519656],[0.0027895912062377,-0.059920288622379,-0.023314472287893],[0.0059335781261325,0.030207900330424,0.016998179256916]],[[0.016579914838076,-0.048858571797609,-0.0097629316151142],[-0.052710048854351,-0.010474272072315,-0.011725651100278],[0.0072943647392094,-0.0044665476307273,0.011330543085933]],[[-0.0038312710821629,0.020321073010564,0.01347984932363],[0.019467022269964,0.024803843349218,0.018912689760327],[-0.021840469911695,-0.063290655612946,-0.044400222599506]],[[-0.053747534751892,0.029109185561538,0.041603337973356],[-0.015435113571584,-0.039165802299976,0.0057698311284184],[-0.00036849032039754,0.0018082894384861,-0.050160013139248]],[[-0.030608696863055,0.10657916218042,0.024553749710321],[-0.015511454083025,0.030075512826443,0.028539296239614],[0.051468327641487,-0.06346520036459,-0.10708069056273]],[[-0.029949516057968,-0.0056840223260224,0.058065041899681],[-0.017629198729992,0.03610260784626,0.06917217373848],[-0.020187553018332,-0.041858248412609,0.043090000748634]],[[-0.02380334213376,0.015263653360307,-0.0025263929273933],[0.011629020795226,-0.034555152058601,-0.010591968894005],[-0.044508509337902,-0.0019614310003817,0.0052136187441647]],[[0.054798897355795,-0.00062443205388263,-0.061398297548294],[-0.031304642558098,0.046146769076586,0.0076261945068836],[0.034710057079792,-0.063614018261433,0.0060984753072262]],[[-0.043396312743425,0.008213434368372,0.017338858917356],[-0.016451586037874,-0.0061245961114764,-0.010864148847759],[0.05129761248827,-0.0093970941379666,-0.013140309602022]],[[0.0014363501686603,-0.030126305297017,-0.043643567711115],[0.02370592020452,0.07304884493351,0.048539619892836],[-0.020437585189939,0.038967594504356,-0.027013430371881]],[[0.074314616620541,0.049033213406801,-0.042652238160372],[-0.022414954379201,0.022916836664081,-0.052847653627396],[0.04678637906909,0.11208361387253,0.0008970620110631]],[[-0.044388383626938,-0.016154322773218,-0.010743052698672],[0.0091005451977253,-0.069875538349152,0.041257366538048],[-0.079638466238976,-0.078962601721287,0.0020555737428367]],[[0.033920496702194,0.063673377037048,0.043372828513384],[-0.023185150697827,0.091818951070309,0.0051965774036944],[-0.014321425929666,-0.016211884096265,0.0097436578944325]],[[0.031270366162062,-0.052783537656069,0.042151819914579],[-0.034692317247391,0.023993609473109,-0.038934465497732],[0.030256249010563,-0.00092010985827073,0.041901618242264]],[[0.0096539696678519,-0.0080150589346886,0.05032617598772],[-0.11186301708221,0.078159458935261,0.046406056731939],[-0.01264557428658,0.0327411852777,0.013791061006486]],[[0.036108750849962,0.088380746543407,0.033222179859877],[-0.028540916740894,0.053365092724562,-0.0035970483440906],[0.014099027961493,0.0073410039767623,-0.012906391173601]],[[-0.011806415393949,-0.043054319918156,-0.0061604012735188],[0.050215847790241,0.024210944771767,0.067026726901531],[0.019461205229163,0.01659731939435,-0.013620055280626]],[[0.018619945272803,-0.031353089958429,-0.095538981258869],[0.0059408582746983,0.0065066595561802,-0.072622783482075],[0.054503101855516,0.048048254102468,-0.067403875291348]],[[-0.01113669667393,0.072682052850723,-0.0016515175811946],[-0.027331609278917,-0.021291116252542,-0.0079873465001583],[0.021027844399214,0.0084296818822622,-0.058333788067102]],[[-0.027642214670777,-0.0023351979907602,-0.010804697871208],[-0.02787315286696,0.019937414675951,0.040805630385876],[-0.0056446734815836,-0.036901440471411,0.028843991458416]],[[0.023817013949156,0.067349821329117,0.046864729374647],[0.010440573096275,-0.011857675388455,-0.047047853469849],[0.022811165079474,-0.014644953422248,-0.0025886916555464]],[[-0.098667673766613,-0.083648875355721,0.052624803036451],[0.028633004054427,-0.018852408975363,-0.09809884428978],[0.026820152997971,-0.0062368451617658,-0.041182663291693]],[[0.042913824319839,0.0059907804243267,-0.040633760392666],[0.047606263309717,-0.0056449128314853,0.057819221168756],[0.036071728914976,0.0059118675999343,0.058074828237295]],[[0.0046938699670136,0.0074430168606341,-0.024524154141545],[0.015652807429433,0.0046227271668613,0.0059056649915874],[0.01625401712954,0.0054777688346803,-0.035531658679247]],[[0.0026395483873785,0.019694425165653,-0.026544362306595],[0.022040730342269,-0.02123604901135,-0.073462210595608],[-0.0042826421558857,0.043605178594589,0.050384059548378]],[[-0.0035298520233482,0.0038944059051573,0.014182942919433],[0.034473653882742,0.031581353396177,0.034003224223852],[0.057492170482874,0.011985337361693,-0.034422282129526]],[[-0.0073533281683922,-0.083623185753822,-0.034834291785955],[0.0077605429105461,-0.0096651874482632,0.10233195871115],[0.045682229101658,0.043964471668005,-0.079579822719097]],[[-0.02229431271553,-0.080516383051872,-0.070434302091599],[0.054283626377583,0.025318009778857,0.02031878195703],[0.02483718842268,0.056036241352558,0.025744581595063]],[[-0.025941258296371,-0.03422762081027,0.0068484684452415],[-0.049699906259775,0.0050141550600529,-0.011581989936531],[-0.03803838416934,-0.024655545130372,0.039569746702909]],[[-0.023575382307172,-0.008952951990068,-0.042484927922487],[0.020778918638825,0.087224736809731,-0.0050365156494081],[-0.019044620916247,0.062264494597912,0.0126425717026]],[[0.018201189115644,-0.0097605595365167,0.061514653265476],[0.011247714050114,-0.01563679985702,0.027905782684684],[0.0055071976967156,-0.012746546417475,-0.06221279874444]],[[-0.026196552440524,-0.020148294046521,0.019858593121171],[-0.012772736139596,0.029637424275279,0.042878191918135],[0.040335208177567,0.013312836177647,0.037437364459038]],[[0.025159798562527,-0.010275663807988,0.0027039756532758],[0.044030092656612,-0.020980061963201,0.049789659678936],[-0.017795279622078,0.044761970639229,0.026846358552575]],[[0.013885153457522,0.05517864972353,-0.0048053790815175],[0.045310817658901,-0.027804205194116,0.0048906248994172],[-0.033965304493904,-0.017242472618818,-0.050873883068562]],[[-0.021692706272006,0.0094226812943816,-0.0039691436104476],[0.026161713525653,0.09069612622261,0.043402355164289],[-0.049602448940277,-0.067645736038685,-0.055450938642025]],[[0.0062364777550101,-0.086521111428738,0.044142358005047],[0.0073218150064349,0.023998651653528,0.05097196623683],[-0.047995284199715,0.052370890974998,0.011830511502922]],[[0.070544026792049,0.033142685890198,-0.014393667690456],[0.096912048757076,-0.048069629818201,-0.079657554626465],[0.054635837674141,-0.0062530171126127,0.053720474243164]],[[-0.049901761114597,-0.045556541532278,0.070126585662365],[0.053599078208208,0.021359970793128,0.0049655213952065],[-0.013916951604187,-0.0083753541111946,0.0066427602432668]],[[0.015968197956681,0.039951208978891,0.035209614783525],[-0.023125637322664,0.045402903109789,0.090413056313992],[-0.027070982381701,-0.068912819027901,-0.018784085288644]],[[0.047774456441402,0.060059815645218,-0.023213423788548],[-0.029073726385832,-0.10204002261162,-0.0040928404778242],[0.044869422912598,0.01544352248311,0.02150746807456]],[[-0.045715223997831,-0.048019271343946,0.0029867012053728],[0.0032622388098389,-0.0042577832937241,0.04185851290822],[0.0014736015582457,0.008559794165194,-0.013791278004646]],[[0.011229818686843,0.036871593445539,-0.013283602893353],[0.025565560907125,0.0059483107179403,0.0045819957740605],[-0.01974874548614,0.0019063974032179,0.029097298160195]],[[-0.0012184208026156,0.011681070551276,0.0083907525986433],[-0.08172170072794,-0.029528861865401,0.049636121839285],[-0.038516968488693,-0.0025907738599926,0.045346241444349]],[[-0.027972796931863,0.036447364836931,0.0027275334578007],[-0.0049275760538876,0.027991143986583,0.04220075905323],[-0.034567393362522,0.012110648676753,0.058382894843817]],[[0.055634748190641,0.083035796880722,-0.0040585389360785],[-0.034272450953722,0.010800142772496,-0.021223915740848],[-0.0084865046665072,-0.00049568881513551,-0.023984162136912]],[[-0.0254060421139,0.035568282008171,0.011267626658082],[-0.06638465821743,-0.056648101657629,0.067285560071468],[-0.080194219946861,0.020369196310639,-0.010968768969178]],[[0.038539536297321,0.030949536710978,-0.0099499551579356],[-0.021363485604525,-0.054089065641165,0.041197877377272],[0.017606735229492,-0.0028937312308699,-0.020556421950459]],[[-0.0071985870599747,0.020110122859478,0.024332074448466],[-0.0026814597658813,-0.060428325086832,0.022010840475559],[-0.049554213881493,-0.051444575190544,-0.046910919249058]],[[-0.0027190565597266,0.015163434669375,-0.032651908695698],[0.0090815909206867,0.042939621955156,0.00011173587699886],[-0.053269650787115,-0.055925600230694,0.0026611774228513]],[[0.0028019049204886,0.086844094097614,-0.012066850438714],[0.03693400323391,0.04973080009222,-0.047685459256172],[-0.0037013592664152,-0.1010080948472,-0.01680207811296]],[[0.02469140291214,0.030682334676385,0.021122690290213],[0.0051166596822441,-0.055955674499273,-0.017358822748065],[0.018576744943857,-0.018680144101381,-0.025671055540442]],[[0.0052343793213367,-0.017112344503403,-0.0010119398357347],[-0.025612315163016,-0.0020177364349365,0.068669766187668],[-0.010284447111189,-0.01195546798408,0.016470938920975]],[[0.017978239804506,-0.055570878088474,0.022069156169891],[-0.012287935242057,0.0089067937806249,0.018881918862462],[-0.028657736256719,-0.068668715655804,-0.020292142406106]],[[0.042314872145653,0.071071207523346,-0.023704782128334],[0.059094093739986,-0.0059319152496755,-0.10006370395422],[-0.0054296627640724,0.017005829140544,-0.015698822215199]],[[-0.035346139222383,-0.02157743088901,0.027631878852844],[-0.033295650035143,-0.022104015573859,0.043689955025911],[0.032585084438324,0.0060326205566525,0.041937701404095]],[[-0.0071684829890728,0.034401822835207,-0.016211435198784],[0.070560067892075,-0.012822832912207,0.044989004731178],[0.031666673719883,0.010652484372258,-0.034766145050526]],[[0.014671185053885,0.033840503543615,-0.052932552993298],[-0.0094116842374206,0.036006812006235,-0.021537445485592],[-0.0011069333413616,-0.040363505482674,-0.02140736952424]],[[-0.01756701990962,0.048901565372944,0.015411725267768],[0.016360715031624,0.046440672129393,-0.048030007630587],[0.060854751616716,0.044771406799555,-0.014589745551348]],[[-0.012617977336049,0.0073233456350863,-0.034246928989887],[0.028937900438905,0.0057871509343386,-0.032666809856892],[0.00021669926354662,0.032807946205139,0.020606840029359]],[[-0.0081307450309396,0.068909533321857,-0.022821007296443],[0.031848106533289,0.026440419256687,0.012414340861142],[0.004723415710032,0.013039117679,0.0074029979296029]],[[-0.056688360869884,-0.046524025499821,-0.052089758217335],[0.015183408744633,-0.050853978842497,-0.029575588181615],[-0.021867761388421,0.0048919795081019,0.026358863338828]],[[-0.023187570273876,-0.037195149809122,0.0048386100679636],[0.011477627791464,0.013313043862581,0.052636615931988],[0.11051791906357,0.082724541425705,0.063572265207767]],[[0.020495496690273,-0.010819209739566,-0.02076730877161],[0.0095371650531888,0.0044737006537616,0.012781318277121],[0.055085014551878,0.019645327702165,0.071052089333534]],[[0.052827704697847,-0.0082707675173879,-0.0050195925869048],[-0.0039074695669115,0.0070638707838953,0.041605427861214],[0.00719094555825,0.0070825372822583,0.023869754746556]],[[0.019010432064533,0.01190076675266,0.074522167444229],[-0.0088913459330797,-0.08375857770443,-0.018726743757725],[0.019461806863546,0.05885199457407,0.025076186284423]],[[-0.0072052665054798,0.04222010821104,-0.048762548714876],[-0.0012828344479203,0.0068603372201324,-0.0021650420967489],[-0.012115112505853,0.0010740909492597,0.017381140962243]],[[-0.0070780352689326,0.044062476605177,0.043813388794661],[-0.029963340610266,-0.041539963334799,-0.0010388316586614],[-0.029745930805802,0.050140865147114,0.016055561602116]],[[0.03520193323493,-0.026751801371574,-0.037268623709679],[-0.072709776461124,0.048813503235579,0.0029077590443194],[0.058174502104521,-0.02508906275034,-0.010119938291609]],[[0.015555532649159,0.12369658797979,0.019840026274323],[-0.017710730433464,-0.005457790568471,-0.039480239152908],[-0.0067809098400176,0.0051960102282465,0.040781673043966]],[[-0.016770230606198,0.026044772937894,0.080582834780216],[-0.011166292242706,-0.038674641400576,0.075196728110313],[0.0022831948008388,0.013488071970642,-0.059905365109444]]],[[[0.031915981322527,-0.021701458841562,-0.0021203805226833],[-0.028348315507174,-0.027065046131611,0.0045552775263786],[-0.0034507741220295,0.0088062062859535,0.080366395413876]],[[0.067583806812763,-0.096929244697094,0.016412951052189],[0.0070732887834311,-0.032123114913702,0.051663011312485],[-0.0048324600793421,0.0077401571907103,-0.013115448877215]],[[0.079277463257313,-0.073075011372566,0.0011797649785876],[-0.035257562994957,0.060855850577354,0.023769406601787],[0.054540522396564,-0.040576864033937,0.021916121244431]],[[-0.054265029728413,-0.026431603357196,0.036063089966774],[-0.0010514315217733,-0.063938848674297,-0.0030426767189056],[-0.023363824933767,0.027670569717884,0.020509479567409]],[[0.0054302830249071,-0.032429095357656,-0.047941919416189],[0.029172334820032,0.0090161254629493,0.0053898161277175],[-0.038320749998093,-0.026858372613788,0.0020551152992994]],[[-0.041843548417091,-0.017796872183681,0.0023337362799793],[-0.026185715571046,-0.033432822674513,-0.037136133760214],[-0.090154685080051,0.033622439950705,-0.062549792230129]],[[0.0094913905486465,-0.05295779556036,-0.034582171589136],[-0.038585059344769,-0.03902455046773,0.016882045194507],[0.021829416975379,-0.070569328963757,-0.018782280385494]],[[-0.014436163939536,-0.031544603407383,0.033022802323103],[-0.030390808358788,-0.024666979908943,-0.014281287789345],[-0.010400218889117,0.00029118341626599,0.021346272900701]],[[0.058464556932449,0.064003258943558,0.08580519258976],[-0.034120209515095,-0.10725260525942,0.0072570140473545],[0.014911478385329,0.073357217013836,0.014275215566158]],[[-0.077593103051186,0.091313019394875,-0.027755610644817],[0.079848147928715,-0.044905640184879,-0.0012610991252586],[0.044252831488848,0.0088218534365296,-0.022196443751454]],[[-0.0035218368284404,0.04056778550148,-0.011850458569825],[0.043440647423267,0.065876431763172,-0.032366495579481],[-0.028189519420266,0.05781002342701,0.0061161881312728]],[[0.039510179311037,0.041176363825798,-0.030001699924469],[0.035303346812725,0.04865350574255,0.011163876391947],[-0.021134752780199,0.023548310622573,-0.014391176402569]],[[-0.017926873639226,-0.080871596932411,0.023539040237665],[0.038225710391998,0.12097389250994,0.15427406132221],[-0.012934700585902,0.070628426969051,-0.011634742841125]],[[0.01634887047112,0.0087176291272044,0.0015401310520247],[0.01447482034564,-0.013784511946142,-0.0056403540074825],[-0.082713656127453,-0.025449801236391,-0.0070170927792788]],[[0.051106609404087,-0.0059806704521179,0.003485661232844],[0.054827120155096,-0.015867745503783,-0.020945785567164],[-0.0025834981352091,0.058699734508991,-0.019914116710424]],[[0.027549132704735,0.019468937069178,1.2869586498709e-06],[0.032296467572451,0.10526295006275,-0.016860201954842],[0.011330289766192,0.10878861695528,0.052610173821449]],[[0.03485232591629,-0.08587659150362,-0.054502613842487],[-0.034184794872999,0.0070448867045343,-0.024211077019572],[-0.046394370496273,0.077409647405148,-0.0023809848353267]],[[0.029775746166706,0.054566349834204,0.013666261918843],[-0.023836009204388,0.065894745290279,0.017763134092093],[0.0094143897294998,-0.027815522626042,-0.013283948414028]],[[-0.041174594312906,-0.021356258541346,-0.016437865793705],[-0.026621570810676,-0.073193609714508,0.0060160811990499],[-0.023786287754774,0.00088878540555015,0.09297101944685]],[[0.0033404298592359,0.042413078248501,-0.094625599682331],[0.0017864609835669,0.043180909007788,-0.042878437787294],[0.044130831956863,0.0026321453042328,-0.053955078125]],[[-0.073969207704067,0.075834505259991,0.12995789945126],[-0.034288235008717,-0.004441631026566,-0.021609438583255],[0.087822899222374,-0.05145637691021,-0.055704597383738]],[[0.003031411441043,-0.067392639815807,0.038271736353636],[-0.033004432916641,-0.01602203771472,-0.015603876672685],[0.073873803019524,-0.0044287457130849,-0.018059935420752]],[[0.021132307127118,-0.088424503803253,-0.037395637482405],[0.02873957529664,-0.010560026392341,-0.045259412378073],[-0.021046821027994,0.037183325737715,-0.025058642029762]],[[-0.073788598179817,-0.045851450413465,-0.03711399808526],[-0.044911339879036,0.041046541184187,-0.06977429240942],[-0.085409298539162,-0.0067704035900533,-0.04048316180706]],[[-0.0022107167169452,-0.02541846036911,0.033967416733503],[-0.081695824861526,0.02970345877111,-0.0028871498070657],[-0.038227513432503,0.049833849072456,0.059004973620176]],[[-0.012605586089194,0.079177729785442,-0.064774699509144],[-0.076240465044975,0.018338033929467,0.0014674622798339],[0.021578254178166,0.022992314770818,0.0049431314691901]],[[0.0040571447461843,0.056739505380392,-0.058475762605667],[0.045279439538717,0.057121776044369,-0.074354648590088],[0.080622360110283,-0.039312552660704,-0.066145747900009]],[[-0.067486241459846,-0.059016689658165,-0.0037676426582038],[-0.0092784073203802,0.10679945349693,-0.050549421459436],[-0.01810067333281,-0.057099182158709,0.001873814733699]],[[0.0034470760729164,-0.0041129593737423,-0.063635289669037],[0.10544492304325,0.0046323770657182,-0.029845327138901],[-0.054306920617819,0.027848433703184,0.026087038218975]],[[-0.11416406184435,0.11749998480082,-0.027506943792105],[0.024739008396864,-0.049038104712963,0.01094685960561],[-0.022922143340111,0.086243599653244,-0.016519386321306]],[[0.050197072327137,-0.068757690489292,0.06117345020175],[-0.044870015233755,-0.04728852212429,-0.034479800611734],[-0.0091078039258718,0.071956686675549,0.032373838126659]],[[-0.041483860462904,0.03327614441514,0.01301578246057],[0.050246972590685,0.0021216501481831,-0.075733177363873],[0.047332774847746,-0.072748020291328,0.026182547211647]],[[0.016911501064897,-0.01147978566587,0.056402023881674],[-0.049568921327591,0.0098923845216632,0.061254322528839],[0.018679782748222,-0.024771802127361,-0.03233740478754]],[[-0.0051425145938993,0.10239561647177,0.037253350019455],[0.0093059912323952,0.016474023461342,0.062988676130772],[-0.040220022201538,0.027738714590669,-0.061056479811668]],[[-0.020354829728603,0.0017025119159371,-0.0014462339458987],[0.0087555069476366,0.062006838619709,-0.037826288491488],[-0.032893303781748,0.093620918691158,0.05900764092803]],[[0.035609532147646,-0.025555085390806,-0.023328794166446],[0.032184008508921,0.0033856723457575,-0.0098037477582693],[-0.040505543351173,0.040690403431654,-0.021130761131644]],[[-0.06446348875761,0.042954333126545,-0.066491939127445],[0.029859704896808,-0.12079000473022,-0.0049007097259164],[-0.042028281837702,0.059791442006826,-0.017784690484405]],[[-0.085989341139793,-0.034718200564384,-0.0043609477579594],[-0.016633916646242,0.11138727515936,0.0509192943573],[0.033068422228098,0.023468604311347,-0.012452600523829]],[[-0.027502562850714,0.029758337885141,-0.036690380424261],[0.02149404771626,0.047643769532442,0.029187679290771],[-0.010888916440308,-0.018968861550093,0.050560045987368]],[[-0.056690819561481,-0.087845474481583,-0.0069096684455872],[-0.080877654254436,-0.019147021695971,-0.0025359641294926],[-0.013737237080932,0.036862898617983,0.022826896980405]],[[-0.029790164902806,-0.048568535596132,-0.081191867589951],[-0.027481595054269,0.032648168504238,0.047508157789707],[0.010762923397124,0.012344942428172,-0.085469767451286]],[[-0.005723366048187,-0.019221540540457,-0.041149400174618],[-0.015466865152121,-0.050340689718723,-0.090715110301971],[-0.0094594461843371,-0.01636953279376,0.017165208235383]],[[-0.053337879478931,0.062164004892111,-0.037489864975214],[0.0066383685916662,-0.009792672470212,0.14070878922939],[0.029956107959151,-0.054426312446594,-0.078340269625187]],[[0.0023267904762179,-0.029503049328923,0.0041785002686083],[0.020222106948495,0.057380672544241,-0.079366967082024],[-0.0032931894529611,0.10541332513094,-0.011491926386952]],[[0.00073572964174673,0.07649752497673,-0.037923190742731],[-0.021469481289387,0.044456254690886,-0.099711552262306],[-0.023665899410844,0.029530148953199,0.083170019090176]],[[-0.049013841897249,-0.09141393750906,0.029099741950631],[-0.068905793130398,-0.10713312774897,0.06170380115509],[0.047367811203003,-0.017582034692168,0.090682081878185]],[[0.058337416499853,-0.0025355238467455,0.0019726685713977],[-0.062589608132839,0.14980693161488,0.0059739924035966],[-0.0022696673404425,0.05622499063611,0.050101365894079]],[[0.045112635940313,0.063809134066105,0.036468803882599],[0.022838409990072,0.058942686766386,-0.057401563972235],[-0.023639131337404,0.02175104804337,0.023748090490699]],[[-0.0039320788346231,0.086109817028046,0.027859788388014],[0.083484962582588,-0.049971606582403,0.024132115766406],[0.0027596494182944,-0.047868195921183,0.021082883700728]],[[-0.038968559354544,-0.0010287578916177,-0.011795322410762],[-0.068766064941883,0.018820812925696,-0.039308149367571],[-0.056421779096127,-0.025891726836562,-0.033380754292011]],[[-0.025631584227085,0.038110718131065,0.043182857334614],[0.022047515958548,0.010132059454918,-0.011293171904981],[-0.058469649404287,0.050744868814945,-0.067416183650494]],[[-0.095998972654343,0.021711708977818,0.047389578074217],[-0.059179622679949,-0.029374156147242,-0.0067333853803575],[0.072013363242149,-0.060378581285477,-0.089121542870998]],[[-0.061947919428349,-0.074883237481117,-0.048908099532127],[-0.029274649918079,-0.020417340099812,-0.058280393481255],[-0.081995017826557,-0.0051228269003332,-0.0043565584346652]],[[0.042284071445465,0.03148428350687,-0.091354876756668],[0.085612840950489,-0.12363777309656,0.015117178671062],[-0.0018184336367995,0.043502930551767,-0.0054540643468499]],[[0.034118972718716,-0.041258215904236,-0.0015053362585604],[-0.028322376310825,-0.026518937200308,0.027125652879477],[-0.022798819467425,-0.053136423230171,-0.023585787042975]],[[-0.10809364169836,-0.017841544002295,0.0029081646353006],[0.041357219219208,0.058311138302088,0.055208567529917],[0.033664848655462,0.034671206027269,0.016141457483172]],[[0.070279985666275,-0.029630621895194,-0.043440140783787],[-0.0077797444537282,-0.079169057309628,-0.046506501734257],[-0.016956690698862,0.030708650127053,0.046534571796656]],[[0.057770904153585,-0.021840156987309,0.00046754788490944],[-0.047573573887348,0.017060009762645,0.029528023675084],[-0.047841001302004,-0.0032045317348093,-0.020533272996545]],[[0.0058866590261459,0.037740428000689,-0.035754412412643],[0.026751881465316,0.0035425801761448,-0.052216593176126],[-0.017353178933263,0.012963976711035,0.052485428750515]],[[-0.026137871667743,-0.017906878143549,-0.024601608514786],[-0.035403050482273,0.0022408554796129,0.0540941208601],[0.02046319283545,-0.060133200138807,-0.017414396628737]],[[-0.069521993398666,-0.010538804344833,0.037673097103834],[0.046821359544992,0.022046150639653,0.11027454584837],[-0.016523545607924,0.091967709362507,0.093587279319763]],[[-0.08610787242651,0.077481508255005,0.041844792664051],[-0.0091390861198306,0.040997616946697,0.010604397393763],[-0.026770887896419,-0.053334321826696,0.040164094418287]],[[0.037746246904135,0.024419695138931,0.0070453654043376],[-0.025768080726266,-0.024959158152342,0.0011609983630478],[-0.022972386330366,0.094125166535378,0.037286777049303]],[[-0.042038269340992,0.017600513994694,-0.020191645249724],[0.02272348664701,0.099343299865723,0.012913459911942],[0.014773278497159,0.026906151324511,-0.0021306914277375]],[[0.047031790018082,-0.013452772982419,-0.058220978826284],[-0.0047593736089766,-0.012964361347258,-0.00087502750102431],[-0.085681222379208,0.0038514174520969,0.057240597903728]],[[-0.11148004978895,-0.02839619666338,0.094491757452488],[-0.024516854435205,0.069375991821289,-0.0018481881124899],[-0.022206146270037,0.023702448233962,-0.0049131098203361]],[[0.13706341385841,0.19608125090599,-0.014398406259716],[0.012812171131372,-0.013223180547357,0.071710661053658],[-0.047898817807436,-0.05071809142828,0.040469855070114]],[[-0.018611267209053,-0.014174836687744,0.065331488847733],[0.02327173948288,0.010885437950492,-0.011484076268971],[0.016437070444226,-0.0055017848499119,-0.036092732101679]],[[0.034073460847139,-0.039860267192125,-0.041900105774403],[-0.05699434876442,-0.013813078403473,-0.040784116834402],[-0.041814681142569,0.033642683178186,0.091708309948444]],[[0.019259605556726,0.056367076933384,0.045683976262808],[-0.014166660606861,-0.040028180927038,0.028863824903965],[-0.036026012152433,0.042996279895306,-0.062075760215521]],[[0.017821317538619,0.02867504581809,0.047490485012531],[-0.062011819332838,0.05148259550333,-0.025923108682036],[0.070730097591877,-0.01984504237771,0.019291125237942]],[[-0.0065600383095443,-0.027980260550976,0.0036696216557175],[-0.00012039982539136,0.0691983923316,0.042528793215752],[-0.0041461107321084,-0.0035225588362664,-0.013366208411753]],[[0.010223576799035,0.024457501247525,0.034824885427952],[0.030149549245834,-0.0023990368936211,0.019254714250565],[0.040838059037924,0.035335697233677,0.08709804713726]],[[0.070324346423149,-0.069986715912819,0.02276187390089],[0.057444781064987,0.025195885449648,-0.02769004739821],[0.10786197334528,-0.0054781339131296,0.02154278755188]],[[0.068453028798103,0.023187555372715,-0.058624401688576],[-0.055079236626625,-0.020027140155435,0.019350901246071],[0.0066389325074852,-0.017846561968327,0.024152349680662]],[[-0.010978194884956,-0.0054738535545766,0.047837138175964],[-0.010086759924889,0.098644584417343,-0.043011296540499],[-0.0031955300364643,-0.010602815076709,0.034370485693216]],[[0.012228765524924,-0.013072985224426,0.0083088558167219],[0.026412095874548,-0.053538668900728,-0.044628210365772],[0.067979194223881,0.13901303708553,0.018335774540901]],[[-0.042068380862474,0.029960092157125,-0.084202527999878],[-0.071684651076794,-0.0014091765042394,0.023937119171023],[-0.057140801101923,0.047441758215427,0.094205126166344]],[[-0.029914261773229,0.039019472897053,-0.0037806129548699],[0.11724277585745,-0.043406829237938,-0.055191494524479],[0.10059187561274,0.03948163241148,0.063566908240318]],[[0.0077850455418229,-0.0038265809416771,-0.048938903957605],[-0.012769558466971,0.011489071883261,0.062081348150969],[0.067213498055935,-0.11398680508137,0.042117796838284]],[[-0.015407814644277,0.0056353444233537,-0.031193446367979],[-0.036528028547764,-0.032010886818171,0.0164739433676],[-0.057791650295258,-0.088931180536747,0.0070610293187201]],[[0.009183794260025,0.022160850465298,-0.0042366604320705],[-0.027624307200313,-0.093391723930836,0.044983148574829],[-0.014925445429981,-0.014216460287571,-0.017202150076628]],[[0.062675945460796,-0.0380336381495,-0.007108255289495],[0.032402630895376,-0.055876236408949,-0.054274868220091],[-0.045385800302029,0.021688723936677,0.0075198356062174]],[[0.046555481851101,0.11455630511045,0.054944258183241],[0.07141051441431,-0.023563098162413,-0.017782643437386],[-0.06560543179512,0.073131330311298,0.06486339867115]],[[-0.056414235383272,-0.014728716574609,0.013925411738455],[-0.0021873097866774,-0.095550335943699,0.055242720991373],[0.034773755818605,0.060156229883432,0.0035518435761333]],[[0.10173358023167,0.031004890799522,0.016786176711321],[0.024922795593739,-0.04531217366457,-0.079376101493835],[-0.024182412773371,0.071263127028942,0.072604425251484]],[[-0.0094956001266837,-0.008261970244348,0.055773697793484],[0.0096653308719397,0.020077528432012,0.0012916213599965],[-0.061584945768118,-0.091173775494099,-0.047277748584747]],[[0.009032841771841,0.049286231398582,-0.06938336789608],[-0.07681231200695,0.011769885197282,-0.051867727190256],[0.011925101280212,0.013052619062364,0.0099466349929571]],[[-0.007275755982846,0.0041444986127317,0.034371346235275],[-0.07586532831192,-0.0085442047566175,-0.0017906446009874],[-0.047206327319145,-0.021898943930864,0.019405871629715]],[[0.023272352293134,-0.045274216681719,0.0052481056191027],[-0.00043466870556585,-0.073439635336399,0.038397580385208],[-0.040854729712009,0.034016489982605,-0.021475875750184]],[[-0.01276321709156,-0.020538300275803,-0.090638712048531],[0.023754386231303,0.044183883816004,0.0069259740412235],[0.02945308201015,0.030179213732481,-0.015116462484002]],[[-0.058678034693003,-0.023771578446031,0.02160282433033],[-0.016803683713078,0.013936651870608,0.12142749130726],[0.061621353030205,0.02906846627593,0.034968391060829]],[[0.019217906519771,-0.0071842353790998,0.058042574673891],[0.025512555614114,0.066618680953979,0.029791133478284],[-0.082747347652912,0.018099473789334,0.054515913128853]],[[0.14677661657333,0.0013930023415014,0.05955283343792],[-0.042540919035673,0.043269157409668,-0.043725673109293],[-0.024485189467669,-0.0010741740697995,0.01486286893487]],[[0.043828055262566,-0.05233545601368,-0.024564379826188],[0.047629952430725,0.10538270324469,0.025022277608514],[-0.0044960239902139,-0.032329432666302,-0.044872421771288]],[[0.0013458315515891,0.010964443907142,0.021643314510584],[-0.069223538041115,-0.013183172792196,-0.036086048930883],[-0.0027597688604146,0.0055791260674596,0.029430903494358]],[[0.057891879230738,0.024974649772048,0.021395476534963],[0.022126886993647,0.042696215212345,0.0097853848710656],[0.05842961370945,-0.011528658680618,0.036377411335707]],[[0.028013167902827,-0.0037446492351592,-0.052979689091444],[-0.051172871142626,-0.0070894588716328,-0.031254500150681],[0.0062537412159145,0.0058204140514135,0.005765556357801]],[[0.0081506054848433,-0.024859897792339,-0.040424793958664],[-0.055715464055538,0.031560834497213,-0.019865991547704],[0.035365741699934,0.017267229035497,-0.060755867511034]],[[-0.0067694084718823,-0.0069757946766913,-0.034566685557365],[-0.04379441216588,0.0039746151305735,-0.029113832861185],[0.0029918954242021,-0.043803114444017,-0.035853464156389]],[[-0.020484942942858,0.085458181798458,0.0082420445978642],[-0.027279444038868,-0.084746569395065,-0.044117335230112],[0.020010812208056,0.012013559229672,0.074213854968548]],[[-0.086721628904343,-0.051306940615177,-0.020696442574263],[0.074563749134541,-0.0033442531712353,0.0024267474655062],[0.013421260751784,-0.00090647302567959,-0.010760131292045]],[[0.066555678844452,-0.017594236880541,0.024462381377816],[-0.028087340295315,-0.022564334794879,0.050605699419975],[-0.08308307826519,-0.0072528757154942,-0.021149268373847]],[[-0.057810440659523,0.007834680378437,0.010529545135796],[0.020825667306781,0.012289599515498,0.045339148491621],[-0.040564276278019,0.058424174785614,-0.052086532115936]],[[-0.047926496714354,0.024270443245769,-0.025083826854825],[0.001981902634725,0.015796225517988,-0.050582949072123],[0.060049258172512,-0.040620245039463,-0.008668695576489]],[[0.024985704571009,-0.043884560465813,0.0089979767799377],[0.029304277151823,0.013904201798141,-0.11457592248917],[-0.050886124372482,-0.048421639949083,-0.048008259385824]],[[0.043766353279352,0.0081937154754996,-0.048299182206392],[-0.019197342917323,0.08054293692112,-0.013935186900198],[0.040708716958761,0.023615948855877,0.02004424110055]],[[-0.0078670540824533,0.061227183789015,-0.089781440794468],[0.033904403448105,-0.010379930958152,-0.03982100635767],[0.012395474128425,0.012004569172859,0.017631500959396]],[[0.023986883461475,0.077716805040836,0.015250307507813],[0.080357976257801,-0.0014024925185367,-0.00096363539341837],[-0.025681870058179,0.03162207454443,-0.064028657972813]],[[0.028026869520545,-0.022285684943199,0.040477946400642],[-0.024842653423548,0.062206756323576,-0.063470631837845],[0.12522065639496,0.015227693133056,-0.028088163584471]],[[-0.025630302727222,-0.0020664792973548,0.033556375652552],[0.070490166544914,0.018831711262465,0.002740774769336],[0.092468999326229,0.0031195259653032,-0.0036264169029891]],[[-0.091200575232506,0.014836939051747,-0.023987045511603],[-0.0049003446474671,0.024383269250393,-0.065916769206524],[-0.00079883437138051,0.016273558139801,0.22316168248653]],[[-0.032352078706026,-0.027861122041941,0.026503914967179],[0.010762040503323,-0.025354567915201,0.026253703981638],[0.050517342984676,0.063010647892952,-0.010549809783697]],[[-0.081559680402279,0.067907027900219,0.0038445454556495],[-0.017345365136862,-0.02047217823565,0.028003687039018],[0.05979310721159,-0.01663925871253,0.033315721899271]],[[-0.032621245831251,-0.0023684692569077,-0.030221423134208],[0.068693794310093,-0.019222704693675,-0.05860561132431],[0.0091956732794642,-0.061089035123587,-0.013132252730429]],[[0.012792936526239,0.055848512798548,0.039226237684488],[-0.030963391065598,-0.0028903826605529,0.0090711219236255],[-0.010612232610583,0.046893678605556,-0.016927206888795]],[[-0.010839615948498,0.045714180916548,-0.0049699759110808],[0.083071328699589,-0.0074505838565528,-0.023636691272259],[0.0090955635532737,-0.0023838456254452,-0.040927957743406]],[[0.053017564117908,0.014603020623326,0.059198535978794],[-0.085482776165009,0.0055626216344535,-0.040065985172987],[-0.0034721514675766,-0.030692592263222,-0.014967359602451]],[[0.015667932108045,0.2095288336277,-0.062942415475845],[-0.0052020400762558,0.012924702838063,0.0058467779308558],[0.016778990626335,-0.021072793751955,0.0030193764250726]],[[-0.0087301535531878,-0.021993616595864,-0.025398572906852],[0.064139701426029,0.09007416665554,-0.0012116438010707],[0.0187300555408,0.047798819839954,-0.022380968555808]],[[-0.052208002656698,-0.049215212464333,0.0017094331560656],[0.027196563780308,0.012869573198259,-0.00020823271188419],[0.011869036592543,0.011240958236158,0.056621827185154]],[[0.046886723488569,0.071651831269264,0.018625069409609],[0.028979953378439,-0.032395303249359,0.050981245934963],[0.061976414173841,-0.025005482137203,0.028748940676451]],[[0.063321329653263,-0.0093542970716953,-0.025760807096958],[0.031660415232182,0.095103099942207,-0.017201593145728],[-0.024237411096692,-0.046533584594727,-0.033931821584702]],[[-0.030765548348427,-0.043493214994669,-0.0053592910990119],[-0.082066975533962,0.07021451741457,-0.0036975909024477],[0.023884730413556,0.069887332618237,0.058114573359489]],[[-0.079246148467064,-0.052983414381742,-2.6213136152364e-05],[-0.03972702473402,-0.04179796949029,0.065152138471603],[-0.017383506521583,-0.052381284534931,0.069716818630695]],[[0.00083490979159251,0.072021663188934,0.015218305401504],[-0.012962265871465,0.012415731325746,0.11953014135361],[-0.075539074838161,-0.011395079083741,0.068941988050938]],[[0.029353959485888,0.043146014213562,0.079869501292706],[0.08171034604311,0.00057175674010068,0.059652917087078],[0.0022545047104359,-0.016236832365394,-0.034229047596455]],[[0.0654571428895,0.063438728451729,0.061587922275066],[0.046577408909798,0.0027977991849184,0.018628956750035],[-0.026148630306125,-0.0058892476372421,0.0018166000954807]]],[[[-0.016151208430529,0.018451267853379,-0.050171449780464],[-0.019271245226264,-0.00067864387528971,0.08538842946291],[-0.016611788421869,-0.018345518037677,-0.016831424087286]],[[-0.049884248524904,0.054970901459455,0.015140577219427],[0.001394072198309,-0.058906603604555,0.0080279409885406],[-0.011573580093682,0.018211727961898,0.043009258806705]],[[-0.038850966840982,0.011177009902894,-7.5313866545912e-05],[0.0074072373099625,0.022446386516094,0.01600070297718],[-0.018817080184817,0.0092156222090125,0.00050204747822136]],[[-0.021755805239081,0.017125649377704,-0.015340289101005],[0.013987285085022,-0.038581002503633,0.042942635715008],[0.018005149438977,-0.029040018096566,-0.044370144605637]],[[-0.023283500224352,0.053885396569967,-0.0079002007842064],[-0.016796831041574,-0.013617999851704,-0.014058384113014],[-0.034340862184763,0.028967740014195,-0.034780543297529]],[[-0.020311553031206,0.0047889221459627,0.01609642803669],[-0.0011149146594107,-0.017933920025826,0.046796891838312],[-0.016389230266213,0.039258923381567,-0.023713877424598]],[[0.026445170864463,-0.040375024080276,0.013689898885787],[0.020694499835372,0.052815657109022,0.035540986806154],[-0.074809074401855,-0.036726079881191,0.01757625117898]],[[-0.0098039424046874,-0.0024972537066787,0.0031071379780769],[-0.024983713403344,0.050586733967066,-0.031190408393741],[-0.024004813283682,0.001908625010401,-0.0083047524094582]],[[-0.037506561726332,-0.024272242560983,0.0057457857765257],[0.036364577710629,0.013784551993012,-0.065421745181084],[0.047209594398737,0.013334800489247,0.0060458052903414]],[[0.036798905581236,0.026814665645361,-0.0065366355702281],[-0.03261125087738,0.031498022377491,-0.0099928416311741],[-0.028457555919886,-0.0056441109627485,0.021304648369551]],[[0.020302759483457,0.056795243173838,0.017277440056205],[0.0050214342772961,-0.0033204895444214,-0.017519576475024],[-0.042544350028038,-0.026164371520281,-0.077330067753792]],[[-0.024211224168539,-0.090618275105953,-0.009432652965188],[0.01777333766222,-0.052458070218563,0.0061532934196293],[-0.0025906118098646,0.066851645708084,0.040216382592916]],[[0.0042958674021065,-0.011004499159753,0.024051759392023],[-0.0275709182024,0.08279886841774,-0.028259236365557],[0.014199582859874,0.064009934663773,-0.045878611505032]],[[-0.033076349645853,-0.020079767331481,-0.053529676049948],[-0.03301802277565,-0.00315733673051,0.0039643957279623],[-0.0066573857329786,0.019525278359652,0.015932135283947]],[[0.014099197462201,-0.023463735356927,-0.018476113677025],[-0.0044963737018406,0.020491037517786,0.030382791534066],[0.019480587914586,-0.012317158281803,0.0040564187802374]],[[-0.046210844069719,-0.0025083031505346,0.014802860096097],[0.023568095639348,0.078204050660133,-0.0058444519527256],[-0.012597417458892,0.0051050884649158,-0.002215625718236]],[[0.01211129873991,0.0031170146539807,-0.0086108976975083],[-0.019775435328484,-0.0058086789213121,-0.016202909871936],[0.039032932370901,0.038977649062872,0.014699992723763]],[[0.018508240580559,-0.0097010061144829,-0.020877359434962],[-0.0076659079641104,0.075478874146938,-0.02779189683497],[0.0056657535023987,0.023703210055828,-0.038979072123766]],[[0.042939059436321,0.022638309746981,-0.0073697855696082],[-0.095155104994774,-0.025920415297151,0.0026102466508746],[0.019114462658763,-0.034295905381441,0.021305298432708]],[[-0.0015636151656508,-0.023465309292078,-0.016776664182544],[-0.011539721861482,-0.020125323906541,0.00070129631785676],[0.0034583678934723,-0.019461359828711,0.034913077950478]],[[0.01848940551281,0.03268213570118,-0.01928942091763],[0.063031740486622,-0.035484682768583,0.036293670535088],[-0.070131242275238,-0.010616044513881,-0.0037318076938391]],[[0.042739789932966,-0.032383102923632,-0.03853839635849],[-0.052229031920433,0.064950436353683,0.0087303314357996],[-0.022464696317911,0.059492710977793,-0.00070022570434958]],[[-0.021081157028675,0.0014488440938294,-0.00076239951886237],[0.034977171570063,0.013165408745408,-0.01643936894834],[-0.014807818457484,-0.050063174217939,0.020599963143468]],[[-0.011610365472734,0.099759988486767,-0.01171051710844],[0.030460609123111,0.088257342576981,0.047290369868279],[-0.014858838170767,0.015574958175421,0.019249381497502]],[[-0.018949329853058,-0.053731177002192,0.031975332647562],[7.6168535088073e-06,0.0033401057589799,-0.020974956452847],[0.045366544276476,0.013040099292994,0.020388394594193]],[[0.0074034705758095,-0.040702432394028,-0.044860348105431],[-0.055554609745741,-0.038308832794428,0.050142791122198],[0.026080273091793,0.0049360049888492,-0.014209284447134]],[[0.01810316927731,0.005236545111984,0.024092379957438],[-0.059747133404016,0.0052054594270885,-0.042372785508633],[0.049617242068052,0.035700395703316,-0.018673969432712]],[[0.023478500545025,0.0078868744894862,0.011787886731327],[-0.0019459566101432,-0.02502329647541,-0.021006369963288],[-0.031680081039667,-0.0062754955142736,-0.024174604564905]],[[0.070261262357235,-0.0046684588305652,0.027484642341733],[0.012058789841831,-0.0012514153495431,-0.016623359173536],[0.087829142808914,0.037671025842428,-0.046313308179379]],[[0.05662801861763,0.010349942371249,-0.0045582531020045],[0.0029278597794473,-0.014287834055722,-0.010303175076842],[-0.0049416567198932,-0.010788864456117,-0.032419979572296]],[[0.012188288383186,-0.017000442370772,-0.0040306635200977],[0.025462871417403,0.050407595932484,-0.0094204749912024],[-0.090359084308147,0.001468111993745,0.041121166199446]],[[-0.029912889003754,-0.01373128965497,0.043687511235476],[0.045008733868599,-0.040291380137205,0.016465924680233],[-0.038685638457537,0.053024560213089,0.0085444450378418]],[[-0.083742186427116,-0.010791446082294,0.04256746172905],[-0.061941310763359,0.053908485919237,0.030365066602826],[-0.0019002740737051,-0.045123852789402,-0.0029265061020851]],[[-0.012681999243796,0.031359482556581,-0.010130610316992],[-0.025382619351149,0.0082766432315111,0.023714719340205],[-0.06354945898056,0.013091715984046,0.038848303258419]],[[-0.043629847466946,-0.0079601407051086,-0.02235721796751],[-0.0079551674425602,0.012535957619548,-0.025062959641218],[-0.0099809262901545,0.028828877955675,-0.00039870874024928]],[[0.026778273284435,0.02919932641089,0.02831656858325],[-0.045443378388882,-0.0054994537495077,0.072204001247883],[-0.040964547544718,-0.019923759624362,0.00064714415930212]],[[0.022014336660504,-0.013302135281265,-0.010396697558463],[-9.2461541498778e-06,0.056672547012568,0.065735541284084],[0.0063688457012177,-0.048815920948982,-0.013398963026702]],[[0.020930372178555,-0.013602005317807,0.043284364044666],[0.050911344587803,0.036505553871393,-0.061811652034521],[-0.043559819459915,-0.036359403282404,-0.018352583050728]],[[-0.0063557839021087,-0.045302912592888,-0.039074048399925],[0.0045951274223626,0.017472177743912,-0.012768380343914],[-0.018711870536208,-0.034867443144321,0.075522094964981]],[[0.001823638449423,-0.030904473736882,-0.020209539681673],[0.040234111249447,-0.0094464719295502,-0.041174296289682],[-0.004574260674417,0.031879462301731,-0.00044157158117741]],[[0.019038779661059,-0.037451479583979,0.070678487420082],[0.021186988800764,-0.058034162968397,-0.027126934379339],[0.011070253327489,0.0039079179987311,-0.022134058177471]],[[0.015456158667803,0.040098272264004,-0.027564598247409],[0.019888767972589,0.022868238389492,0.049966175109148],[0.022285783663392,-0.053634844720364,-0.01460718177259]],[[-0.024353828281164,-0.0083925845101476,-0.013376420363784],[-0.020394578576088,-0.037653539329767,0.031634703278542],[0.063811138272285,0.0069814370945096,0.02029076218605]],[[0.0041561294347048,0.030217830091715,0.030922150239348],[-0.0042080795392394,-0.081955574452877,0.028854999691248],[-0.031552273780107,-0.02061727270484,-0.026742797344923]],[[0.055495236068964,0.032269563525915,-0.056642308831215],[0.028598625212908,-0.024853475391865,-0.0050777960568666],[-0.00074258423410356,-0.009064769372344,-0.04778316617012]],[[-0.0032573139760643,-0.035298995673656,-0.040714211761951],[0.012122671119869,0.032545827329159,0.046125791966915],[0.026217250153422,0.029335932806134,-0.0025903121568263]],[[-0.013695471920073,-0.01434884686023,0.0033865063451231],[0.0033628069795668,0.02033519744873,0.015536249615252],[0.046885956078768,0.009100086055696,-0.0096539659425616]],[[-0.054387874901295,0.033057544380426,0.010383285582066],[0.0056304442696273,-0.02291982062161,-0.021257631480694],[0.0028218084480613,0.052620779722929,-7.9649696999695e-05]],[[-0.027853829786181,0.061333224177361,0.041849698871374],[-0.024462094530463,-0.058016076683998,0.018926475197077],[0.045358337461948,-0.0050833844579756,-0.030200431123376]],[[-0.018551897257566,0.021471237763762,0.009440210647881],[-0.021654745563865,0.013125612400472,0.028058599680662],[-0.074299514293671,-0.058285586535931,0.066401898860931]],[[0.04253226146102,0.026945991441607,0.0060097677633166],[-0.0011627704370767,0.015849815681577,-0.0051499311812222],[0.034807864576578,-0.0056199580430984,-0.086831286549568]],[[-0.057985138148069,-0.034971740096807,-0.040888294577599],[0.0017690219683573,0.017358902841806,0.042494855821133],[-0.027830690145493,-0.039406105875969,0.036239389330149]],[[-0.0066816252656281,0.10324808210135,0.053026273846626],[0.054004609584808,0.041411884129047,0.0033488387707621],[0.10056249052286,0.040248613804579,0.031564082950354]],[[0.014123996719718,-0.018616819754243,-0.0026741442270577],[0.024890325963497,-0.027403922751546,-0.0074068955145776],[-0.056246373802423,0.033581860363483,-0.016544673591852]],[[-0.023310396820307,0.042177889496088,-0.0059527270495892],[0.032131262123585,-0.030908009037375,0.039370562881231],[0.06302635371685,0.028769411146641,-0.025592721998692]],[[7.0251597207971e-05,0.015065281651914,-0.036196801811457],[-0.0079185692593455,0.013642190955579,-0.016803422942758],[-0.02469396777451,0.058673638850451,0.014351237565279]],[[-0.033903438597918,-0.013769314624369,0.033878412097692],[0.06393951177597,0.027512008324265,-0.050420679152012],[-0.068279102444649,-0.049599602818489,0.022752553224564]],[[-0.02057727240026,0.0020131759811193,-0.011344583705068],[0.019621819257736,0.16923668980598,-0.0031787292100489],[0.037026699632406,0.012295695021749,-0.063825160264969]],[[0.049271918833256,-0.016390305012465,0.0047639794647694],[-0.020975880324841,3.2116498914547e-05,0.010381613858044],[-0.012413940392435,0.053391870111227,-0.025335995480418]],[[-0.0004324259061832,0.02990897744894,-0.037383265793324],[-0.012710669077933,0.027736738324165,0.030935991555452],[-0.029008507728577,0.0099430801346898,0.026587825268507]],[[-0.011298673227429,-0.018848363310099,0.01386303268373],[-0.015906769782305,-0.012329442426562,-0.048222657293081],[0.036512352526188,-0.022270057350397,0.04558253288269]],[[-0.014593466185033,0.044656626880169,0.064359411597252],[0.0074861841276288,0.0020806496031582,-0.01052416767925],[0.053167395293713,-0.051746249198914,0.00012506831262726]],[[-0.008740272372961,0.0080475518479943,-0.009900726377964],[0.0039953314699233,-0.012104153633118,-0.05019037425518],[0.05389191955328,0.0072873109020293,-0.029091008007526]],[[0.0030358373187482,-0.021215990185738,-0.0252420976758],[-0.00011356943286955,-0.011060463264585,-0.010187722742558],[0.020979605615139,0.0067695924080908,0.0050214845687151]],[[-0.029388887807727,-0.0075564826838672,-0.0056762504391372],[-0.025333561003208,-0.0053370231762528,0.014378528110683],[0.038115434348583,0.052411817014217,-0.032685685902834]],[[-0.088805571198463,-0.030604226514697,0.049574870616198],[0.061703305691481,-0.010997127741575,0.0029468995053321],[0.043022993952036,0.023463562130928,-0.081342913210392]],[[-0.024392575025558,-0.0053974511101842,-0.015118651092052],[0.009246913716197,0.03901731222868,-0.036869805306196],[0.02571476995945,0.0051624649204314,0.0085854735225439]],[[0.043211922049522,-0.026588702574372,0.0059431339614093],[-0.021234564483166,0.0015839356929064,-0.02988606877625],[-0.020190302282572,-0.023602250963449,0.035002194344997]],[[0.0090623330324888,-0.032017312943935,-0.023183524608612],[0.014835475943983,0.06285410374403,-0.08796001970768],[0.038806583732367,-0.02322512306273,-0.075326502323151]],[[-0.0074171195738018,-0.0077290721237659,0.010825552046299],[-0.062163427472115,-0.028021464124322,0.020416170358658],[0.057661518454552,0.0032544580753893,-0.056152977049351]],[[0.023662375286222,-0.10510435700417,0.052621133625507],[-0.045853819698095,0.032881621271372,0.00072113930946216],[0.014579706825316,-0.028398422524333,-0.0068893791176379]],[[0.063786923885345,0.0094031430780888,0.0011460206005722],[-0.067882038652897,0.043069016188383,-0.093559943139553],[0.027559893205762,0.029537186026573,0.028426812961698]],[[-0.032240606844425,-0.016650771722198,-0.023135133087635],[0.008964616805315,-0.011463785544038,0.058655306696892],[-0.090135298669338,0.010463698767126,0.044526942074299]],[[-0.025038128718734,-0.0040958793833852,-0.046276159584522],[-0.0072521595284343,0.010575289838016,-0.0054582916200161],[0.029302386566997,0.040352359414101,0.057258602231741]],[[0.0098840063437819,-0.033058028668165,0.012278415262699],[0.022075049579144,0.085025429725647,0.074535630643368],[-0.018551606684923,-0.0072231045924127,0.0062924353405833]],[[0.024185914546251,-0.0087535604834557,-0.024419508874416],[-0.0096161691471934,-0.040692586451769,0.023263439536095],[-0.0024090812075883,-0.0051114871166646,-0.002352632349357]],[[0.0073626106604934,0.010698868893087,-0.016659058630466],[0.0073991157114506,-0.045687463134527,0.019413908943534],[-0.023928863927722,0.044055920094252,0.017334086820483]],[[0.004553034901619,0.043487545102835,-0.044300064444542],[0.005876496899873,-0.01286880671978,0.017987476661801],[0.049220506101847,-0.031197080388665,-0.012137762270868]],[[0.034828633069992,0.037523970007896,0.045419532805681],[0.012529410421848,0.047102313488722,0.0060073868371546],[0.025826763361692,-0.00080050848191604,-0.029206676408648]],[[0.051764883100986,-0.041436035186052,0.0014497003285214],[-0.0092471968382597,0.03108405135572,0.032975122332573],[-0.021649908274412,0.034000344574451,0.00023050798336044]],[[-0.046188980340958,0.055286318063736,0.032323066145182],[0.020828699693084,0.0056933830492198,0.0020904566626996],[-0.037249594926834,-0.011504031717777,-0.03664518520236]],[[0.0055162245407701,0.061932235956192,0.013561179861426],[-0.026532426476479,0.0091166282072663,-0.029655784368515],[-0.042520768940449,-0.01573128439486,0.030700152739882]],[[0.056615665555,0.0035975573118776,0.07733790576458],[-0.010990045033395,-0.0086816130205989,0.01861460506916],[-0.081815809011459,0.027448166161776,-0.067304193973541]],[[0.013683964498341,0.0037081202026457,-0.017442774027586],[-0.022455204278231,0.035689625889063,0.0071638501249254],[-0.022154157981277,-0.028896529227495,-0.0091890897601843]],[[-0.0096812071278691,0.010510895401239,0.043805733323097],[0.0091799590736628,-0.021689077839255,-0.019185401499271],[0.046300895512104,0.015190217643976,0.050125513225794]],[[0.036166843026876,-0.0045533180236816,0.071829251945019],[0.020746760070324,0.025899551808834,-0.043218281120062],[-0.033381480723619,0.0019437606679276,-0.066993437707424]],[[-0.034506566822529,-0.0052477042190731,0.068911239504814],[0.029008917510509,-0.048487324267626,0.020989960059524],[-0.004050497431308,0.045203723013401,-0.031374417245388]],[[-0.040068306028843,0.0015226020477712,0.028547873720527],[0.0072381105273962,0.03133999556303,0.024648658931255],[-0.020362177863717,-0.077309176325798,-0.012251788750291]],[[-0.061355106532574,0.0027203534264117,0.054861444979906],[0.042254492640495,-0.015056057833135,-0.068810917437077],[-0.001340841408819,-0.019350511953235,0.0045439726673067]],[[-0.042059507220984,-0.033321268856525,-0.021887417882681],[0.069041818380356,-0.014605550095439,0.0065587875433266],[0.0055362391285598,0.021864797919989,-0.0047571277245879]],[[0.0018454906530678,-0.00062346260529011,0.025011347606778],[0.001666406635195,-0.093893654644489,-0.011818648315966],[0.0088188229128718,0.0060493908822536,-0.036315567791462]],[[-0.012381783686578,-0.034681316465139,0.015757204964757],[0.0073439390398562,0.037335895001888,-0.0025287638418376],[-0.0051135011017323,0.0070274011231959,-0.026940168812871]],[[0.020627377554774,0.050283327698708,0.02818719111383],[-0.033328663557768,-0.0057549411430955,0.022491652518511],[0.009744530543685,-0.13383340835571,0.014622033573687]],[[0.002636147197336,0.024750979617238,-0.014138727448881],[-0.0064676101319492,-0.02354827709496,0.014247009530663],[0.0077056791633368,-0.031228249892592,-0.0046815015375614]],[[-0.010275532491505,0.014084761962295,0.040062803775072],[0.022375034168363,-0.061372462660074,0.09026888012886],[-0.019050356000662,-0.022952934727073,-0.027990592643619]],[[0.0049903457984328,-0.015796301886439,-0.06077217310667],[-0.026112569496036,-0.029473144561052,0.064316608011723],[0.057026084512472,-0.024073587730527,-0.0069781392812729]],[[0.0010305994655937,-0.040046449750662,0.04776406660676],[0.012544818222523,-0.010839741677046,-0.015906663611531],[0.017395535483956,0.019664073362947,0.025001892820001]],[[-0.035599038004875,0.012362752109766,-0.03389660269022],[0.0031226989813149,-0.022481601685286,-0.0035483888350427],[0.10161542892456,-0.0016761667793617,-0.013922207057476]],[[0.0015646872343495,0.055817116051912,-0.031736668199301],[-0.0010820756433532,0.012108096852899,-0.0072357323952019],[0.035935703665018,-0.0111453384161,0.016299093142152]],[[0.028904223814607,0.0090455925092101,-0.036036804318428],[-0.05462708324194,0.034896671772003,0.07367105782032],[-0.0071120061911643,0.023874819278717,-0.056935824453831]],[[0.032511129975319,-0.0033702715300024,0.017775632441044],[0.0012360463151708,0.04327031224966,-0.01560968067497],[-0.0014894839841872,0.0039923689328134,-0.018261663615704]],[[-0.061537895351648,-0.068552300333977,-0.011334512382746],[0.027734991163015,0.043400764465332,0.0064993030391634],[0.034051366150379,-0.0023583406582475,-0.035101640969515]],[[0.0190787948668,0.014527203515172,0.0064589297398925],[0.025138396769762,0.0074051842093468,-0.0038067679852247],[0.017639109864831,-0.040032789111137,-0.016280990093946]],[[-0.015702161937952,0.088069923222065,-0.050097201019526],[-0.0064057973213494,-0.054824966937304,0.030520163476467],[0.082976832985878,-0.0082811033353209,0.018526509404182]],[[0.0072825411334634,-0.020476091653109,-0.020933277904987],[0.053341917693615,-0.045479234308004,0.050659526139498],[-0.031071025878191,0.067904002964497,-0.06679005920887]],[[-0.024511666968465,-0.016523849219084,0.048848308622837],[-0.02872303687036,-0.011420706287026,-0.029165541753173],[0.0071567115373909,0.0080274129286408,-0.023130718618631]],[[0.074164874851704,-0.0040832487866282,-0.0066357650794089],[-0.04792557656765,0.014525606296957,0.022133249789476],[-0.028691526502371,-0.0030334773473442,0.066632404923439]],[[-0.01534035615623,-0.042739115655422,-0.027336472645402],[-0.070805132389069,0.0072941523976624,0.014563024044037],[-0.018838351592422,-0.029771622270346,0.046422127634287]],[[0.085858955979347,-0.015312091447413,0.021694999188185],[0.020887322723866,-0.049177579581738,-0.066277012228966],[-0.020583629608154,0.021283326670527,0.0087683387100697]],[[-0.009882215410471,0.03690404817462,-0.031313918530941],[-0.03706194832921,-0.051789917051792,-0.0059024388901889],[-0.006627197843045,0.015336492098868,0.025645602494478]],[[-0.073798023164272,-0.042924933135509,-0.052781090140343],[0.022086327895522,-0.075141593813896,-0.19088116288185],[-0.091789148747921,-0.038178417831659,-0.14366140961647]],[[-0.026816515251994,-0.042174208909273,0.029351010918617],[0.031554061919451,-0.070863500237465,0.0077685373835266],[0.034571453928947,0.023126672953367,-0.00045994549873285]],[[-0.048273898661137,-0.0064868489280343,0.015155353583395],[-0.00906977429986,0.0059924456290901,-0.014634461142123],[0.049657259136438,-0.01535180862993,0.035605054348707]],[[0.040387760847807,0.069410018622875,-0.079062901437283],[0.01678055524826,-0.0046735033392906,-0.017657341435552],[0.0068236691877246,0.0022678866516799,-0.0037432261742651]],[[0.044029623270035,-0.056879173964262,0.020968532189727],[-0.030132500454783,0.052332080900669,-0.039595048874617],[0.0125393262133,-0.027183957397938,0.030312417075038]],[[-0.015182601287961,0.034337796270847,0.028757225722075],[-0.026562307029963,-0.034584194421768,-0.051230654120445],[0.037712637335062,0.012301844544709,-0.0085102487355471]],[[0.0060803629457951,-0.029212083667517,0.046210709959269],[0.01712329313159,-0.042411047965288,-0.0091502964496613],[0.059765230864286,-0.030220940709114,-0.010506563819945]],[[0.043997950851917,0.016982525587082,-0.035782765597105],[-0.0016080787172541,0.023450199514627,-0.031305741518736],[-0.10178074985743,-0.055385336279869,-0.024395775049925]],[[-0.019159782677889,-0.019757641479373,0.0066782548092306],[-0.037983514368534,-0.0052119940519333,0.050433624535799],[0.0047822347842157,-0.04321051761508,-0.019894286990166]],[[0.057368267327547,0.013519594445825,0.0066825333051383],[0.025333115831017,-0.046301927417517,-0.0070614274591208],[-0.01942566037178,-0.027251260355115,-0.00726268440485]],[[0.061860360205173,0.0080238794907928,-0.042028293013573],[0.0076297745108604,0.014671113342047,0.063690945506096],[-0.034830488264561,0.015109968371689,-0.024468215182424]],[[-0.039591085165739,0.033889465034008,0.031944613903761],[-0.047049794346094,-0.0041196304373443,5.9960591897834e-05],[0.0060889325104654,0.048340138047934,0.0021978369913995]],[[0.00069988681934774,0.082613296806812,-0.011045232415199],[-0.047636926174164,0.044119752943516,-0.019143426790833],[0.023070894181728,0.049745231866837,0.0090508460998535]],[[-0.037995673716068,0.015400813892484,-0.018543876707554],[0.0099395513534546,-0.083640888333321,0.0040494720451534],[-0.029279246926308,0.013693577609956,0.03997040912509]],[[-0.02712139301002,-0.02256129309535,-0.036024063825607],[0.099272057414055,-0.0062079611234367,0.0031001195311546],[0.050093848258257,-0.047015715390444,-0.036648463457823]],[[-0.031710989773273,-0.016121020540595,0.016462860628963],[-0.032286942005157,-0.043596796691418,0.034024976193905],[0.038877744227648,-0.0016654924256727,-0.012211988680065]],[[-0.007373858243227,0.027264475822449,0.011865981854498],[-0.020689519122243,0.017004733905196,-0.014314626343548],[0.028350671753287,0.00037325502489693,-0.073038682341576]],[[-0.041720900684595,-0.05506194755435,-0.018426110967994],[0.028370603919029,0.037220295518637,0.010490695014596],[-0.0083811627700925,0.043797723948956,-0.018288660794497]]],[[[-0.034349348396063,0.0055016940459609,-0.0068041696213186],[0.011236512102187,-0.037468302994967,0.061693955212831],[0.084407903254032,0.014916691929102,0.0034068592358381]],[[-0.025178989395499,0.038651943206787,0.019441807642579],[0.027690105140209,0.0022931115236133,0.014671497046947],[0.0073716370388865,-0.011221300810575,0.0016538891941309]],[[-0.001290388405323,0.043327324092388,0.045615550130606],[0.073013819754124,-0.0075626615434885,0.002263244939968],[-0.071039825677872,0.035578869283199,0.018204271793365]],[[-0.002866962691769,-0.024041900411248,-0.036961201578379],[-0.010121461004019,-0.030108110979199,-0.029226085171103],[0.0013132013846189,0.013795707374811,0.010554884560406]],[[-0.033148519694805,0.0025358125567436,0.085041001439095],[0.034224078059196,0.10738785564899,0.022460091859102],[-0.029499424621463,0.00067423470318317,-0.048809602856636]],[[-0.03390421718359,0.041399545967579,0.055134475231171],[-0.032093048095703,-0.022197864949703,0.029098138213158],[0.0071001858450472,0.036338675767183,-0.078942522406578]],[[-0.059958510100842,0.023498462513089,0.033177673816681],[-0.014101773500443,-0.018433876335621,-0.020555522292852],[-0.099844016134739,0.0064687710255384,0.078267142176628]],[[0.04022953286767,0.0049481359310448,0.028743080794811],[0.0026201894506812,-0.0073197716847062,-0.024211101233959],[-0.027886249125004,-0.043480396270752,-0.010113336145878]],[[0.0065689217299223,0.01182552985847,-0.023605892434716],[-0.0058234967291355,-0.0034360117278993,0.075036615133286],[0.031902305781841,0.058002285659313,0.026380963623524]],[[-0.039108287543058,-0.010087285190821,0.031487725675106],[-0.0064862258732319,-0.0043313684873283,-0.001039955066517],[0.063360817730427,0.038817655295134,0.0064529594965279]],[[-0.030476596206427,0.036808598786592,0.013520580716431],[-0.034058548510075,-0.01576216891408,-0.022177565842867],[0.0011874274350703,-0.01734465919435,0.066759712994099]],[[-0.024258555844426,-0.031017096713185,0.037173688411713],[-0.017632173374295,-0.051160469651222,0.046909261494875],[0.0042605409398675,0.054331455379725,0.032943416386843]],[[-0.021281287074089,-0.0068360045552254,-0.049674790352583],[-0.036248695105314,0.019738897681236,-0.013481516391039],[-0.030358867719769,-0.0021427732426673,-0.013902937062085]],[[0.038578424602747,-0.031716499477625,-0.095031909644604],[0.057057734578848,0.076344765722752,0.012706028297544],[-0.0066812774166465,-0.0064922175370157,0.014210007153451]],[[-0.0060012205503881,0.060175720602274,0.041282158344984],[0.05652591958642,-0.021805660799146,0.061490349471569],[-0.060928232967854,0.005958981346339,-0.0310831181705]],[[0.02822950668633,0.023234168067575,-0.068052746355534],[-0.006143004167825,0.032173775136471,-0.0035230990033597],[0.0069016139023006,0.050234857946634,-0.045038558542728]],[[-0.0057026227004826,0.041362404823303,-0.035039715468884],[0.031236229464412,-0.024731390178204,-0.024000477045774],[0.043167177587748,-0.017472065985203,0.018498528748751]],[[-0.00080569763667881,0.017123363912106,-0.040371559560299],[-0.0095926113426685,-0.0092402948066592,-0.063573449850082],[0.013628356158733,-0.0052355360239744,-0.047131948173046]],[[0.023330291733146,-0.049714244902134,-0.0038965055719018],[-0.011553270742297,0.045546039938927,0.013530863448977],[0.041784342378378,0.023108644410968,0.0020541187841445]],[[0.027861502021551,0.0009691480663605,-0.010197205469012],[-0.0056699197739363,0.019339565187693,-0.042820956557989],[0.018527125939727,0.059904765337706,-0.050465535372496]],[[0.020073963329196,-0.027848297730088,-0.019089989364147],[-0.027580000460148,0.019478822126985,-0.024740617722273],[-0.052367735654116,-0.0085214609280229,-0.017726691439748]],[[-0.039662901312113,-0.004798399284482,0.019078072160482],[7.7371762017719e-05,0.069225616753101,0.040843017399311],[0.035829249769449,-0.0014416406629607,-0.027609946206212]],[[-0.010175846517086,-0.025856288149953,-0.021640483289957],[0.065403580665588,-0.044040873646736,-0.0067393714562058],[0.0094090783968568,0.019071873277426,-0.019300866872072]],[[-0.020844183862209,-0.028797883540392,-0.060982473194599],[-0.052558336406946,-0.041692964732647,0.011784548871219],[-0.0091458559036255,-0.04739086702466,-0.00039520557038486]],[[0.029163161292672,-0.028655864298344,0.005528662353754],[0.028402211144567,-0.053184513002634,-0.011028877459466],[-0.026972955092788,-0.020821059122682,-0.0036978553980589]],[[0.048115566372871,-0.026410335674882,-0.030227737501264],[6.1923943576403e-05,0.041235942393541,0.026965502649546],[0.034292574971914,0.027364056557417,-0.043222948908806]],[[-0.022988179698586,-0.010219246149063,-0.025997007265687],[0.042457155883312,-0.0051306122913957,-0.030500587075949],[0.04645599424839,0.056499157100916,0.03059402294457]],[[0.019494021311402,0.0089295329526067,-0.0096264462918043],[-0.037341233342886,0.023217063397169,0.0071374112740159],[-0.015143057331443,-0.0095128733664751,0.040265515446663]],[[0.008944196626544,-0.016568459570408,-0.046250645071268],[0.0068550170399249,0.0013395259156823,-0.069756656885147],[-0.062032472342253,-0.0037568982224911,-0.042656432837248]],[[-0.010339844971895,0.018552789464593,-0.071321353316307],[-0.026255296543241,0.047630224376917,-0.052465453743935],[-0.042493119835854,-0.028038375079632,0.046855676919222]],[[-0.034109231084585,-0.061241514980793,0.042171109467745],[-0.015155984088778,0.034486435353756,0.047513619065285],[-0.013103479519486,0.037066325545311,-0.0089493142440915]],[[-0.045621022582054,0.022587658837438,0.011360383592546],[0.018740829080343,0.030371680855751,0.0015087836654857],[0.032880816608667,-0.017279725521803,-0.0015979151939973]],[[0.028002886101604,0.032439928501844,0.0048481612466276],[0.0097324391826987,0.05743009224534,-0.014545677229762],[0.087681382894516,-0.021629709750414,-0.020467810332775]],[[-0.049516595900059,0.019393641501665,0.0027121873572469],[-0.013475098647177,-0.092366717755795,0.11612338572741],[0.0094173699617386,-0.020966297015548,0.010530016385019]],[[-0.04209103807807,0.044225998222828,0.0099624311551452],[0.057891957461834,-0.0043605472892523,0.087211169302464],[0.024829111993313,0.0057660522870719,-0.020693268626928]],[[-0.031348370015621,-0.0032578953541815,0.036946356296539],[-0.048909187316895,-0.0016802487662062,0.021070972084999],[-0.026231242343783,-0.019347252324224,0.0092508904635906]],[[-0.040940813720226,0.01495548710227,0.011344725266099],[-0.0061199651099741,0.013894553296268,0.049782264977694],[0.016677582636476,-0.06317737698555,0.0036289899144322]],[[0.026723679155111,0.0078755281865597,-0.014984950423241],[0.029921101406217,0.021135913208127,0.0022448203526437],[-0.017862670123577,-0.035191677510738,-0.028936207294464]],[[0.022999081760645,0.019783392548561,0.058572478592396],[-0.055454149842262,-0.012892045080662,0.076708361506462],[-0.055336643010378,-0.035350814461708,0.0040642861276865]],[[-0.022738862782717,0.061968479305506,-0.071459800004959],[-0.014677856117487,0.04246449843049,0.019268376752734],[-0.028740353882313,0.047996591776609,0.0029470361769199]],[[-0.036409087479115,-0.014268586412072,0.010648970492184],[0.00097836717031896,-0.025006264448166,0.048184912651777],[0.024993410333991,-0.012919224798679,0.029082030057907]],[[0.046031914651394,-0.0012844568118453,0.003005699487403],[0.026468882337213,0.010756529867649,-0.031443357467651],[-0.055272784084082,-0.018913116306067,-0.0045027751475573]],[[0.0040941257029772,-0.014325309544802,-0.0084216883406043],[0.011490900069475,0.0070028211921453,-0.0053697302937508],[-0.048272002488375,-0.019025044515729,0.013773499988019]],[[-0.029657725244761,0.00082325481344014,-0.042251706123352],[-0.062935382127762,-0.039778236299753,0.01005370542407],[-0.017465012148023,0.023652793839574,0.031603530049324]],[[0.027622036635876,0.013549819588661,-0.0058188820257783],[0.017061997205019,-0.043865710496902,0.004564612172544],[-0.010831823572516,0.023075366392732,-0.0062832087278366]],[[0.014229293912649,0.043924748897552,0.038931909948587],[-0.038058746606112,0.011566001921892,-0.04025599732995],[-0.051020406186581,-0.013015572912991,-0.010093958117068]],[[-0.037184875458479,0.049996737390757,0.034204766154289],[-0.029558338224888,0.014308681711555,0.050488211214542],[-0.0054376581683755,0.046110212802887,-0.032324511557817]],[[0.037494245916605,0.060334458947182,-0.059840109199286],[0.054392538964748,-0.033977698534727,0.015496337786317],[-0.05335034430027,0.018511682748795,-0.011654919013381]],[[-0.0012300914386287,-0.025281740352511,-0.028781104832888],[-0.0076323510147631,-0.018910817801952,0.055472351610661],[-0.035500895231962,0.033129502087831,0.0042582112364471]],[[-0.046563420444727,-0.041326835751534,0.013110629282892],[0.004290257114917,0.00071858207229525,-0.0074045658111572],[0.057710319757462,-0.065162844955921,0.0049855378456414]],[[0.040100630372763,-0.0061041316948831,-0.043871961534023],[-0.01059156563133,0.047111753374338,-0.066690795123577],[-0.029814641922712,0.043652229011059,-0.10306561738253]],[[-0.052807159721851,0.027866680175066,-0.040353681892157],[0.020887145772576,-0.011040760204196,0.012672577984631],[-0.05070636048913,-0.017503758892417,0.0061442577280104]],[[-0.063299790024757,-0.019433023408055,-0.016619753092527],[0.021497884765267,0.026485525071621,-0.00067382131237537],[-0.045836485922337,0.0019206863362342,-0.0058317286893725]],[[-0.013376641087234,-0.051435213536024,-0.040123235434294],[0.023584339767694,0.020308382809162,0.044021122157574],[0.019415622577071,0.036876603960991,-0.033268269151449]],[[-0.0046696444042027,0.0034700515680015,-0.028673190623522],[0.041985847055912,0.011423609219491,-0.035104293376207],[0.01523077301681,0.067195057868958,-0.051596947014332]],[[0.031606562435627,-0.014789959415793,-0.02254581451416],[0.031036209315062,-0.010591057129204,-0.032837405800819],[0.065398499369621,-0.033745884895325,0.01576411165297]],[[0.024786924943328,-0.049650024622679,-0.069823630154133],[0.0052829594351351,-0.04784033074975,-0.078044787049294],[-0.0043832003138959,0.01569508947432,0.049508195370436]],[[-0.0034892503172159,0.043607648462057,-0.0057297018356621],[-0.012939941138029,0.061376303434372,-0.020107755437493],[-0.0088808909058571,-0.011819712817669,0.0048814886249602]],[[-0.080726251006126,-0.01590191014111,0.015964144840837],[-0.044022269546986,-0.00020966613374185,-0.056432418525219],[-0.024822516366839,0.028550362214446,-0.031472414731979]],[[-0.042275864630938,0.020458517596126,0.047171793878078],[0.020893696695566,0.0013416194124147,0.04011020436883],[-0.04273933172226,0.024278827011585,-0.011900804936886]],[[-0.0097478274255991,-0.0091087594628334,0.054204918444157],[0.02452133782208,-0.070136874914169,0.027573853731155],[-0.010722444392741,-0.0058664819225669,0.0035510547459126]],[[-0.054870564490557,0.040066439658403,-0.0032865146640688],[-0.014870163984597,-0.006248474586755,-0.030773960053921],[0.036560133099556,0.0050112335011363,-0.023800499737263]],[[0.0072229369543493,0.021185820922256,0.10394975543022],[-0.008395348675549,-0.023531103506684,-0.029522953554988],[0.043902214616537,-0.017167180776596,-0.049393143504858]],[[0.016391774639487,-0.041353285312653,0.037020329385996],[-0.0052930559031665,-0.060797289013863,0.0052586030215025],[0.033153761178255,-0.076730988919735,0.047716718167067]],[[-0.00058793887728825,0.02895962074399,0.053580548614264],[-0.011998657137156,-0.0036888441536576,-0.04456776753068],[0.005323835182935,0.016356769949198,0.010053530335426]],[[-0.02198164910078,0.011240505613387,-0.019363269209862],[0.027365230023861,0.0070480802096426,-0.022056665271521],[0.0069723767228425,0.029819400981069,0.036197878420353]],[[-0.0081641646102071,0.027027733623981,-0.027397615835071],[0.019867977127433,0.070622764527798,-0.071450024843216],[-0.039927579462528,-0.038727045059204,0.038901150226593]],[[-0.0089564519003034,-0.0060030906461179,-0.0033606877550483],[0.027078790590167,0.017023423686624,0.030981592833996],[0.038351949304342,0.0096934260800481,0.05177653208375]],[[0.042829480022192,0.059109028428793,-0.084665551781654],[-0.025322504341602,0.048069983720779,-0.0056162555702031],[0.080206856131554,0.035723406821489,-0.012115385383368]],[[-0.0037832173984498,-0.072826646268368,0.035173755139112],[0.03507299721241,0.045334532856941,-0.0034396969713271],[0.025392193347216,-0.001231923350133,-0.054223477840424]],[[0.0042659435421228,0.021437756717205,0.027988214045763],[-0.012193350121379,0.0035789124667645,-0.026397263631225],[-0.013104918412864,-0.0032610276248306,-0.027655174955726]],[[-0.042142994701862,0.023988611996174,0.10561971366405],[-0.018353957682848,0.025638114660978,-0.023544557392597],[-0.0095386449247599,0.048571329563856,0.00090917496709153]],[[0.033429674804211,0.0060167335905135,-0.021465701982379],[-0.017974250018597,0.025802079588175,0.0083521446213126],[-0.007985015399754,-0.0050280005671084,0.02974459528923]],[[-0.045481774955988,0.031503204256296,-0.0908557549119],[0.10460239648819,0.0067713363096118,-0.037902846932411],[-0.038026366382837,-0.072766229510307,-0.051036342978477]],[[-0.066568776965141,-0.012054538354278,0.040454842150211],[0.011653854511678,-0.098734721541405,0.028633274137974],[0.011595035903156,0.0708988904953,0.0012133989948779]],[[0.044661782681942,-0.030169920995831,0.017493715509772],[0.027445653453469,0.018873443827033,-0.02743742056191],[-0.02465314231813,0.054337568581104,0.016764424741268]],[[-0.024688258767128,0.0011664811754599,-0.045189660042524],[-0.025221830233932,0.038499977439642,-0.0030387863516808],[0.023889197036624,-0.0044461688958108,-0.000221782742301]],[[0.012889508157969,0.0085396468639374,0.0022047786042094],[0.00035947145079263,-0.0042645270004869,-0.039494432508945],[0.015712490305305,-0.070425637066364,0.0051544825546443]],[[0.035038191825151,-0.019646001979709,0.0076248743571341],[-0.0043414914980531,-0.00092454702826217,-0.051767915487289],[0.012820178642869,-0.012441404163837,-0.0022249866742641]],[[-0.011717516928911,-0.032356198877096,0.0064216563478112],[-0.022831028327346,0.0091437939554453,-0.0057409191504121],[0.054332248866558,0.011829516850412,-0.03922226652503]],[[0.06539411097765,0.026442648842931,0.0065872836858034],[0.0025974207092077,0.0069302092306316,-0.019351089373231],[0.01612807251513,0.03175064176321,0.012116619385779]],[[-0.077662721276283,0.025589644908905,0.033900171518326],[-0.037771731615067,-0.0031017097644508,0.013533717021346],[0.031079573556781,-0.04383797198534,0.050627160817385]],[[-0.040214296430349,-0.051179423928261,-0.030783088877797],[0.053259562700987,-0.038784738630056,0.045015543699265],[-0.072217866778374,-0.0074427034705877,-0.0087236510589719]],[[0.031725097447634,0.0055815246887505,0.024442709982395],[-2.8576629119925e-05,0.012397631071508,-0.034852564334869],[-0.009086187928915,-0.049520418047905,0.0051130056381226]],[[-0.052251789718866,0.011471576057374,0.090495757758617],[-0.046684674918652,0.023619905114174,0.011658460833132],[-0.029076304286718,-0.033794891089201,-0.0045902291312814]],[[-0.022911543026567,-0.049397315829992,0.0075975558720529],[0.022271687164903,-0.0030458478722721,-0.0074690016917884],[-0.11447783559561,0.012321136891842,0.0020243357867002]],[[-0.0040426352061331,-0.039232388138771,-0.057479567825794],[0.028233518823981,-0.040058378130198,0.044007159769535],[-0.019870100542903,0.068434797227383,-0.036760926246643]],[[0.0282799359411,0.012938726693392,-0.045797329396009],[0.013762674294412,-0.0312913171947,-0.044789638370275],[0.025629334151745,0.0099335061386228,-0.02759300544858]],[[0.0099640469998121,-0.0081016672775149,-0.0062853861600161],[0.049749262630939,0.019885236397386,-0.038916949182749],[-0.044129639863968,-0.0024875765666366,-0.01954859495163]],[[0.0095897978171706,-0.023767553269863,-0.045853108167648],[-0.0074514611624181,0.02108964510262,0.049933318048716],[-0.043047748506069,0.059709217399359,0.053712736815214]],[[0.061572328209877,-0.011097298003733,-0.0041762352921069],[0.062593221664429,-0.0063082301057875,0.057106915861368],[0.0030790958553553,-0.00076430552871898,0.028904786333442]],[[0.016024889424443,0.025267444550991,-0.022892452776432],[-0.0035893849562854,-0.024379942566156,0.0093286726623774],[-0.0032682400196791,0.01419130153954,-0.043412618339062]],[[0.028785012662411,-0.0084882909432054,0.00042986348853447],[-0.026142777875066,-0.030660880729556,-0.030872596427798],[0.022858668118715,-0.011917381547391,-0.0050671296194196]],[[0.0057866452261806,-0.061682872474194,0.029476402327418],[0.0041920226067305,-0.013278783299029,-0.02858972735703],[0.052988331764936,0.016456721350551,0.019067812711]],[[0.0074827633798122,0.047267999500036,-0.017445443198085],[0.0085914442315698,0.04429629817605,0.03280046582222],[0.027344046160579,-0.056285101920366,-0.06694770604372]],[[0.026589432731271,-0.013309615664184,-0.03801716119051],[-0.020128870382905,-0.045386590063572,0.0148716410622],[-0.035915076732635,0.030049877241254,0.0011891347821802]],[[-0.038007762283087,0.0073802261613309,0.00053940241923556],[0.0085371769964695,-0.06701672077179,0.028871359303594],[0.0068319654092193,-0.063621170818806,0.0028992616571486]],[[0.071747809648514,-0.0077589205466211,-0.021939273923635],[0.025322206318378,-0.03031836822629,-0.056729465723038],[0.011742462404072,0.033961527049541,-0.020600482821465]],[[0.026945721358061,0.011601251550019,0.042439743876457],[0.0039393636398017,-0.022428577765822,0.031608428806067],[-0.011227554641664,0.010102516971529,-0.10034764558077]],[[0.018104298040271,-0.022962195798755,0.018182836472988],[-0.018396023660898,0.013468696735799,0.022122744470835],[0.026200940832496,-0.074754923582077,-0.038809258490801]],[[0.014222901314497,-0.036819361150265,-0.02081080339849],[-0.043012458831072,0.0228061825037,-0.047067500650883],[0.018067004159093,-0.014321828261018,0.013593005947769]],[[0.070875570178032,0.014956630766392,-0.0072899651713669],[-0.012050459161401,-0.011009249836206,-0.016775615513325],[-0.0074995458126068,0.024963410571218,0.046410631388426]],[[-0.041737202554941,-0.015782367438078,0.013065625913441],[-0.010981989093125,-0.068702936172485,0.018927741795778],[0.034726466983557,-0.0073932195082307,0.011415328830481]],[[-0.011586777865887,-0.07328288257122,0.0057798521593213],[-0.014347961172462,0.014889342710376,-0.027928721159697],[-0.015342260710895,-0.045312333852053,0.094409592449665]],[[0.021202964708209,-0.047311566770077,-0.00554802082479],[-8.1325953942724e-05,-0.042812269181013,0.048319764435291],[-0.017301473766565,0.022601697593927,0.043264087289572]],[[-0.010506059974432,-0.027687031775713,0.013947822153568],[0.056532960385084,0.00021681480575353,-0.028321765363216],[-0.066035717725754,0.050559412688017,0.02268379367888]],[[-0.081172652542591,0.043350599706173,-0.040486704558134],[-0.081340603530407,-0.04322087392211,0.0080007119104266],[-0.06392277777195,0.00063464470440522,-0.0021206787787378]],[[-0.035344991832972,-0.011397326365113,-0.02759868837893],[-0.035194288939238,0.04903157427907,-0.065533578395844],[-0.034019611775875,0.005959028378129,0.040365364402533]],[[0.03149002417922,-0.017988735809922,-0.0072027314454317],[-0.053742025047541,-0.030552348122001,-0.08566789329052],[0.029734641313553,0.015099573880434,0.15046800673008]],[[-0.0095436461269855,0.0077965660020709,-0.02404722571373],[-0.017408791929483,-0.046613357961178,0.064823068678379],[-0.010902028530836,-0.0046457583084702,-0.042877778410912]],[[0.031716611236334,-0.079137742519379,-0.029298778623343],[-0.066414922475815,-0.11625951528549,0.012305466458201],[-0.011407335288823,-0.071115642786026,-0.034501884132624]],[[0.062041845172644,0.029913196340203,0.026972781866789],[0.013999531976879,-0.055444236844778,0.044636368751526],[0.020587008446455,-0.014641460031271,0.012525350786746]],[[-0.06546875089407,-0.012765203602612,0.032632127404213],[-0.06759250164032,0.049576457589865,0.013960467651486],[-0.052820660173893,-0.0351980663836,0.041890155524015]],[[0.065829962491989,0.020728765055537,-0.054283633828163],[0.013107230886817,0.043041914701462,-0.025047585368156],[0.031314831227064,-0.047755394130945,0.0017234752885997]],[[-0.008758925832808,0.008644106797874,-0.02129477635026],[-0.017087996006012,-0.017652627080679,0.03895977512002],[-0.026057740673423,0.076801396906376,-0.016268281266093]],[[0.028994871303439,0.012452428229153,0.017166448757052],[-0.039098467677832,0.036361489444971,0.0032535439822823],[0.0054300120100379,0.067542664706707,-0.032472800463438]],[[0.02972187846899,0.036947220563889,-0.030090464279056],[-0.019526021555066,-0.005958640947938,-0.042912106961012],[0.010240759700537,-0.017931543290615,0.030410503968596]],[[0.05567766726017,0.026111634448171,0.0083965063095093],[-0.0030860197730362,-0.021056462079287,-0.010040656663477],[0.01482439506799,0.010830035433173,-0.038424741476774]],[[-0.0089003192260861,-0.0060526919551194,-0.026915909722447],[0.029686290770769,-0.038632817566395,0.0084968907758594],[0.053308788686991,0.032807316631079,0.044803276658058]],[[-0.087126478552818,-0.0037057159934193,0.013089715503156],[-0.016043789684772,-0.0765360891819,0.020249277353287],[-0.069695606827736,-0.023852067068219,0.055741354823112]],[[-0.017902536317706,-0.0005655349814333,0.010282846167684],[-0.015261543914676,0.011854371055961,-0.017737744376063],[0.032295219600201,0.010778859257698,-0.019100157544017]],[[0.022833820432425,-0.00049444049363956,0.019147019833326],[0.045720357447863,0.026253145188093,0.012317396700382],[-0.013327958993614,0.00032378826290369,0.010078665800393]],[[0.0034666983410716,0.0019691353663802,-0.0019508021650836],[-0.029158359393477,-0.00051799044013023,0.023604925721884],[0.086142875254154,0.025162225589156,7.6230367994867e-05]],[[0.039634995162487,-0.010095944628119,0.034769676625729],[0.054644048213959,0.013617595657706,-0.035473514348269],[0.013925460167229,0.024197310209274,0.035208735615015]],[[0.056767981499434,0.034884203225374,0.045259043574333],[0.13952825963497,-0.064560368657112,-0.015346325933933],[0.043252386152744,0.0062735620886087,-0.0077494960278273]],[[-0.051207490265369,-0.022653803229332,0.046042874455452],[0.004615172278136,0.022380419075489,0.071501888334751],[0.022401576861739,-0.072865389287472,0.03473063185811]],[[0.017344957217574,-0.036597408354282,0.022454211488366],[0.0008882163092494,-0.06695094704628,-0.0060985824093223],[0.030330384150147,-0.066183529794216,0.012830953113735]],[[-0.0037821270525455,-0.034897863864899,0.085386298596859],[0.050675611943007,-0.022660495713353,0.080696500837803],[0.046567786484957,-0.05227904766798,-0.01066929101944]]],[[[0.013674081303179,0.022909909486771,-0.023698501288891],[0.03835653886199,0.00090129126328975,-0.025152655318379],[0.08093973249197,0.018878616392612,-0.024360537528992]],[[-0.010235893540084,0.028191402554512,-0.02724520675838],[-0.022852510213852,0.029999570921063,-0.019230585545301],[-0.018719147890806,0.0011818259954453,-0.10794543474913]],[[-0.094726137816906,0.098301507532597,-0.10133267939091],[0.053221471607685,0.11117497831583,-0.0078386757522821],[-0.0047339485026896,-0.07212869822979,0.015719141811132]],[[-0.066960841417313,-0.035500068217516,-0.027892652899027],[-0.067128166556358,0.013215823099017,-0.02844962477684],[0.014632019214332,-0.020425310358405,-0.023672446608543]],[[-0.032461013644934,0.050735402852297,-0.01174811180681],[0.027597445994616,-0.019954744726419,-0.010550556704402],[-0.032983988523483,-0.012316269800067,0.0030720224604011]],[[-0.034634467214346,-0.012435617856681,0.016909228637815],[-0.04207419604063,2.5655106583145e-05,0.0071268482133746],[-0.067135483026505,-0.038886569440365,0.012616978958249]],[[-0.0041488981805742,0.013847443275154,-0.016611052677035],[-0.056257996708155,0.0014943120768294,-0.037122614681721],[-0.077002815902233,0.069269105792046,-0.013767417520285]],[[0.16188335418701,0.083546482026577,1.1159318091813e-07],[0.0043584979139268,0.1332691013813,-0.033718604594469],[0.063460491597652,0.014741076156497,0.013440109789371]],[[-0.00018959182489198,-0.032269880175591,0.011346761137247],[-0.032323263585567,-0.046239964663982,0.013720123097301],[-0.051759652793407,0.08874324709177,0.096754349768162]],[[0.015496359206736,0.0010531496955082,0.11286480724812],[-0.1039462313056,0.012988868169487,0.042787838727236],[0.077348075807095,0.071079716086388,-0.059392269700766]],[[0.033449459820986,0.033268660306931,0.04026348143816],[-0.0042395014315844,0.029248002916574,0.031672891229391],[0.034235335886478,-0.025974713265896,0.0027446933090687]],[[0.043148510158062,-0.00823406688869,0.057887688279152],[-0.0027151242829859,0.036334410309792,-0.15268850326538],[0.079074829816818,-0.068985350430012,-0.0054759201593697]],[[-0.062297109514475,-0.06428450345993,-0.0093064066022635],[0.00035531813045964,-0.00035035685868934,-0.028543880209327],[-0.070762552320957,-0.052580323070288,0.12254808843136]],[[-0.016725735738873,0.03211584687233,0.055919371545315],[-0.033442873507738,-0.03738072514534,0.04082291200757],[-0.047442868351936,-0.062582552433014,0.054802004247904]],[[-0.0067896237596869,0.032399892807007,-0.048718586564064],[-0.015287400223315,-0.00049090845277533,-0.0096135316416621],[0.0089698806405067,-0.040530245751143,-0.069499522447586]],[[-0.0037238313816488,-0.040816675871611,0.015547259710729],[-0.06219544261694,-0.071921303868294,-0.078888662159443],[-0.0099360095337033,-0.031743682920933,0.0038732362445444]],[[-0.017172003164887,0.0080615505576134,0.01472801156342],[-0.055721312761307,-0.060305040329695,-0.036337502300739],[0.021456688642502,0.02627238817513,-0.076492711901665]],[[-0.040870230644941,-0.032653991132975,-0.064837597310543],[-0.039312731474638,0.0046962546184659,-0.053810622543097],[-0.010139501653612,-0.051452860236168,0.01695654541254]],[[-0.044220566749573,0.014715007506311,0.099106073379517],[-0.035448703914881,0.0089604808017612,-0.084933146834373],[0.0058161308988929,-0.10166646540165,-0.14780274033546]],[[-0.023449350148439,-0.057607643306255,-0.0075453510507941],[-0.02591198310256,-0.050257213413715,-0.042805828154087],[-0.0092200357466936,-0.036346353590488,-0.080162025988102]],[[0.029862785711884,-0.0032610571943223,-0.090614438056946],[-0.048455581068993,-0.015068782493472,-0.06383939832449],[-0.0085812676697969,0.04092950373888,0.026051443070173]],[[0.084761716425419,-0.038771968334913,-0.0085337590426207],[0.027076698839664,0.021670157089829,0.028988217934966],[-0.047582700848579,0.0035552685149014,0.079179883003235]],[[-0.06538200378418,0.010905041359365,-0.022536721080542],[0.0053184651769698,-0.016530631110072,0.03045929223299],[0.0025327517651021,0.029936045408249,0.0022651937324554]],[[-0.027851715683937,-0.029624192044139,-0.04818257689476],[-0.097330272197723,-0.029364241287112,-0.033311158418655],[0.016163101419806,-0.059029560536146,-0.026770690456033]],[[-0.034168422222137,0.0037927813827991,-0.047119379043579],[-0.074818402528763,0.02936158888042,0.032844036817551],[-0.043141938745975,-0.0031760379206389,0.0056886631064117]],[[-0.041541416198015,-0.010036036372185,-0.023656729608774],[0.030744453892112,0.0047492715530097,-0.068760499358177],[0.020650157704949,0.015782848000526,-0.040531624108553]],[[0.082117095589638,-0.038649428635836,0.10890145599842],[0.072689801454544,0.013800245709717,0.04826333373785],[0.08665519952774,0.0019211632898077,0.066710084676743]],[[-0.047186154872179,-0.0071307416073978,-0.0031529036350548],[-0.00019836015417241,-0.1062348857522,0.11739708483219],[-0.063134215772152,-0.052732776850462,0.048436135053635]],[[-0.0050750290974975,0.022300813347101,-0.0095928097143769],[-0.0088469116017222,0.032811302691698,-0.019127637147903],[-0.0023459864314646,0.029699474573135,0.00043532732524909]],[[-0.0040579973720014,0.002677288139239,0.0032828920520842],[-0.034778006374836,-0.037710279226303,-0.044301372021437],[-0.0027480099815875,0.017619194462895,0.017275737598538]],[[0.012472371570766,0.023831412196159,0.014237705618143],[0.094179518520832,0.017127189785242,0.062407933175564],[0.012182007543743,0.024144882336259,0.092033095657825]],[[0.049707226455212,0.015934709459543,-0.087696932256222],[-0.032874409109354,-0.050614766776562,-0.049865867942572],[0.058317646384239,0.12757016718388,0.048055242747068]],[[-0.045301008969545,-0.072945944964886,0.029731132090092],[-0.010097970254719,-0.12443450093269,-0.043402798473835],[-0.0027688753325492,-0.056641411036253,0.021938424557447]],[[-0.037068463861942,0.001521248370409,-0.041990585625172],[0.014970575459301,-0.0070689083077013,-0.047608084976673],[0.016744347289205,0.096722267568111,0.0075466982088983]],[[-0.0058915624395013,-0.040524024516344,-0.03694361820817],[-0.070319943130016,-0.056806527078152,-0.096303790807724],[0.014639348722994,-0.064761355519295,0.011315769515932]],[[0.14347933232784,-0.074100509285927,-0.088216297328472],[0.0053036520257592,-0.20995660126209,-0.044264286756516],[0.10746143013239,-0.066698372364044,-0.12566731870174]],[[-0.019478255882859,-0.083352081477642,-0.074285671114922],[0.055148314684629,0.035574428737164,0.045963283628225],[-0.12561117112637,-0.065870061516762,-0.021679483354092]],[[-0.066685281693935,0.078299283981323,-0.0069945263676345],[-0.0053512332960963,-0.00026219073333777,0.10149771720171],[0.023252237588167,0.038278073072433,0.18956081569195]],[[0.010076388716698,0.047991964966059,0.050064753741026],[-0.05185853689909,0.010807980783284,0.012950314208865],[-0.032281395047903,-0.0014630339574069,0.039940435439348]],[[0.028679441660643,-0.00069918931694701,0.0016966637922451],[-0.032532267272472,-0.0095706935971975,-0.041122101247311],[0.01865953579545,0.065324395895004,-0.039468694478273]],[[0.014108293689787,0.053684867918491,-0.0083811124786735],[-0.015999525785446,-0.028975276276469,-0.034213948994875],[-0.012503696605563,-0.032527841627598,0.092496708035469]],[[-0.002454430796206,0.024851335212588,0.0063543915748596],[0.012216849252582,0.030084833502769,0.043736021965742],[0.0064944187179208,0.027396457269788,-0.016622819006443]],[[-0.029262341558933,-0.03535033389926,-0.030813267454505],[0.045040067285299,-0.029631162062287,0.032875284552574],[-0.061553705483675,-0.03356259316206,-0.03448923304677]],[[0.0080352127552032,-0.037070345133543,-0.026276212185621],[-0.038914024829865,-0.0070083434693515,-0.031748484820127],[-0.018095672130585,0.050091683864594,0.095007918775082]],[[-0.063872568309307,-0.0039368942379951,-0.05294605717063],[0.034848112612963,-0.020531471818686,-0.076393976807594],[0.06237468495965,0.0061934413388371,-0.058301601558924]],[[-0.14398017525673,-0.006005167029798,-0.020340273156762],[-0.090744823217392,-0.014516326598823,0.016602387651801],[-0.045094318687916,0.026486821472645,0.031902261078358]],[[0.10455697029829,-0.021278394386172,0.054367665201426],[0.059941980987787,-0.064238607883453,0.068153545260429],[-0.11011556535959,0.10652594268322,0.11863238364458]],[[-0.020342458039522,0.010162915103137,0.02391242235899],[-0.026153642684221,-0.018514633178711,0.060703046619892],[-0.016242701560259,-0.0088386693969369,-0.025562707334757]],[[0.0061239488422871,-0.089486218988895,-0.011529747396708],[-0.027625437825918,0.041778583079576,-0.018346596509218],[0.044056821614504,0.050375245511532,-0.0077764810994267]],[[0.018747357651591,-0.095244869589806,-0.014490809291601],[-0.00151980179362,0.0038659733254462,-0.030313806608319],[0.0048023615963757,-0.022057803347707,0.0025883831549436]],[[-0.084649950265884,-0.047067377716303,-0.066885426640511],[-0.024178387597203,0.11294262856245,0.068018905818462],[0.005204307846725,0.027396328747272,0.061582453548908]],[[0.030367087572813,-0.0035922655370086,0.033044047653675],[0.031136615201831,-0.009709645062685,-0.085959993302822],[0.0034736101515591,0.0089704729616642,-0.09550341963768]],[[0.095082208514214,-0.0088142054155469,-0.058901559561491],[0.025110552087426,-0.049477204680443,-0.088355503976345],[0.018449116498232,0.034634217619896,-0.035582438111305]],[[-0.045134093612432,-0.053240261971951,-0.094751812517643],[0.051160398870707,-0.034146901220083,-0.057805884629488],[-0.013024896383286,-0.038125347346067,-0.062605366110802]],[[-0.0036615142598748,-0.033766385167837,-0.099565640091896],[-0.065254859626293,-0.010512782260776,0.030164826661348],[0.051786869764328,0.027342261746526,0.053198970854282]],[[-0.016664007678628,-0.042398288846016,0.036731395870447],[-0.040256127715111,0.026804054155946,-0.043261088430882],[0.047059454023838,0.040321040898561,-0.10673493891954]],[[0.077856928110123,-0.0042902752757072,-0.011434020474553],[0.054914768785238,-0.016984205693007,0.071072094142437],[0.0192537214607,-0.030171513557434,-0.090593218803406]],[[-0.076897464692593,-0.086404837667942,-0.094328097999096],[-0.10031448304653,-0.052331257611513,-0.098584488034248],[-0.063933245837688,-0.04347301274538,-0.042528614401817]],[[0.0057768123224378,0.018490839749575,-0.047310836613178],[-0.0010064200032502,-0.011805774644017,0.0051058949902654],[0.035904098302126,0.038826927542686,-0.030388282611966]],[[-0.011570393107831,0.038004841655493,-0.016197694465518],[-0.0021610108669847,0.0018323989352211,-0.015050332061946],[-0.014645378105342,-0.0034064729698002,-0.12052795290947]],[[0.021119754761457,0.020640587434173,-0.068942166864872],[-0.038381692022085,-0.035432875156403,-0.12038165330887],[-0.011100185103714,-0.037383325397968,-0.073151305317879]],[[0.055215194821358,-0.050488106906414,-0.034210193902254],[-0.093728221952915,-0.028513150289655,0.013590871356428],[-0.0645761936903,-0.030350254848599,-0.065508358180523]],[[-0.015605252236128,-0.001576938200742,-0.0069140982814133],[0.0080084232613444,-0.044458441436291,-0.045748580247164],[0.10112784057856,0.031414415687323,0.013301618397236]],[[0.006776652764529,0.016829697415233,-0.10318418592215],[-0.0055826976895332,-0.048723395913839,-0.084441028535366],[0.088199697434902,0.028005035594106,0.049325130879879]],[[-0.039539113640785,-0.05069175362587,-0.037895433604717],[-0.076952636241913,-0.00015680253272876,-0.092911519110203],[-0.035871066153049,-0.047927185893059,0.01670909486711]],[[0.04073690623045,-0.0068996865302324,0.1035815551877],[-0.072620891034603,-0.033257585018873,-0.089496694505215],[-0.014787794090807,-0.0082473736256361,-0.0071885529905558]],[[-0.046259500086308,-0.11116202175617,0.021088093519211],[-0.14873771369457,-0.063516840338707,-0.02194837667048],[0.081603333353996,-0.0050827320665121,-0.0008867493015714]],[[-0.016702760010958,-0.090255208313465,-0.052709951996803],[0.0011428105644882,0.0047836722806096,-0.068704232573509],[0.032222684472799,-0.016217110678554,-0.0047462144866586]],[[-0.029242862015963,0.018208738416433,0.011271870695055],[-0.0058301682583988,0.0042266328819096,-0.044457010924816],[0.065518125891685,-0.15434457361698,-0.10763024538755]],[[0.04113919660449,-0.052158549427986,-0.078554458916187],[-0.032504756003618,-0.071484640240669,-0.05197811126709],[-0.042039815336466,-0.04857674613595,-0.041231323033571]],[[0.019443169236183,0.0042437794618309,0.064582668244839],[0.00016408457304351,-0.093245908617973,-0.032977923750877],[-0.031133748590946,-0.011795351281762,-0.047323264181614]],[[0.056546494364738,-0.013523659668863,-0.02390524931252],[-0.029721900820732,-0.0078143095597625,-0.049176547676325],[-0.021045545116067,-0.041887186467648,-0.043200217187405]],[[-0.10065146535635,0.014196687377989,-0.068916410207748],[0.054964955896139,-0.10233096778393,-0.1277132332325],[0.1428480297327,-0.0454336181283,-0.072990447282791]],[[-0.11608774214983,0.0098281418904662,-0.045984573662281],[0.057528644800186,0.0026165568269789,-0.06269695609808],[0.22494718432426,-0.064223900437355,0.019812561571598]],[[-0.01264853682369,-0.012384579516947,0.0055222189985216],[-0.073505789041519,-0.13644254207611,-0.1122707426548],[0.0026178427506238,-0.024268619716167,-0.11370006203651]],[[0.013486913405359,-0.057705715298653,-0.038832705467939],[0.035547278821468,-0.073621027171612,-0.0037185768596828],[-0.026406425982714,-0.027519097551703,-0.01692970097065]],[[-0.0093455966562033,-0.0027638848405331,-0.042118854820728],[0.0051201223395765,-0.080479621887207,-0.062755912542343],[0.0050834165886045,-0.022266188636422,-0.0035210372880101]],[[0.031272400170565,0.049995172768831,-0.014724806882441],[-0.039082463830709,-0.021275261417031,-0.032585859298706],[0.014009539969265,-0.09046582877636,-0.087434858083725]],[[0.00023227302881423,-0.061854910105467,-0.0041234036907554],[0.0059973266907036,-0.011862390674651,0.023878613486886],[0.032585445791483,0.01216041110456,-0.049654740840197]],[[0.063770115375519,-0.099498279392719,-0.098281316459179],[0.084134943783283,-0.026594078168273,-0.13637863099575],[-0.033676903694868,-0.048740215599537,-0.039972443133593]],[[-0.061069414019585,0.063056424260139,-0.034108642488718],[-0.0098536629229784,-0.0098811713978648,0.037752207368612],[-0.094269193708897,-0.0057306471280754,0.13504254817963]],[[0.03403303399682,0.058296713978052,0.038794461637735],[0.041258249431849,-0.038008607923985,0.0094056650996208],[-0.023513879626989,0.021565670147538,-0.0088290954008698]],[[-0.016252420842648,-0.081312425434589,-0.028787471354008],[-0.048871167004108,0.09124667942524,0.047165766358376],[0.02426921762526,0.031036721542478,-0.031686905771494]],[[-0.086769267916679,0.0048982119187713,-0.020142134279013],[-0.097965113818645,0.023882087320089,0.00027002848219126],[0.022559447214007,-0.026027662679553,-0.021801756694913]],[[0.058596633374691,0.062890842556953,0.046155165880919],[0.012172555550933,-0.027050398290157,0.024721875786781],[-0.023127315565944,-0.038882941007614,0.0014387228293344]],[[-0.032001528888941,-0.060868475586176,0.03379188477993],[-0.023964457213879,-0.13318894803524,0.00057371018920094],[-0.019422143697739,0.015576488338411,0.0029359506443143]],[[0.054850336164236,0.0086546530947089,0.036829024553299],[0.039477247744799,0.028407508507371,0.051935084164143],[0.0059607462026179,-0.0019668838940561,0.009939837269485]],[[0.033330593258142,-0.044988628476858,0.031740061938763],[-0.033720567822456,0.018204767256975,0.013203088194132],[0.027073476463556,0.003768605645746,0.014332883991301]],[[-0.038589708507061,0.0044746901839972,0.068093590438366],[-0.016084080561996,0.0029831684660167,0.033330865204334],[-0.063574947416782,-0.065160199999809,-0.001160831307061]],[[-0.035408426076174,-0.015353103168309,-0.19613462686539],[-0.040221970528364,-0.066536925733089,-0.014602561481297],[-0.09587986767292,-0.073293805122375,-0.048821069300175]],[[0.10726001858711,0.0033286272082478,-0.085820071399212],[0.059386618435383,0.022438740357757,-0.015032763592899],[-0.023845767602324,0.0061046788468957,-0.065312698483467]],[[-0.0040601072832942,-0.019691737368703,-0.10000758618116],[0.018255528062582,-0.062157772481441,-0.095390915870667],[-0.038739826530218,-0.02308376505971,-0.061490330845118]],[[0.040481720119715,-0.054263733327389,-0.038562670350075],[0.019282219931483,0.053148977458477,0.0050679543055594],[-0.011251928284764,0.0091941803693771,-0.073120653629303]],[[0.098721042275429,0.06960741430521,-0.13050098717213],[0.032754007726908,0.047434087842703,-0.029362875968218],[0.064914882183075,0.00135827367194,-0.0091967405751348]],[[-0.01979273557663,-0.036330409348011,0.054618488997221],[-0.038389462977648,-0.080548696219921,-0.037559375166893],[0.016284540295601,-0.10672905296087,0.023103276267648]],[[0.0019615914206952,0.082209914922714,-0.086772292852402],[0.023950891569257,-0.034719850867987,0.052476484328508],[-0.050783418118954,0.012851463630795,0.088901445269585]],[[0.019737785682082,0.020600279793143,-0.034168977290392],[-0.1009333729744,-0.02606332488358,-0.03936554864049],[0.062616147100925,0.020931446924806,-0.005888101644814]],[[-0.053421318531036,0.055881734937429,0.0084636509418488],[-0.086128436028957,0.022017918527126,-0.030795535072684],[0.03926146030426,0.10541848838329,0.035857420414686]],[[-0.010337474755943,0.068658299744129,0.033263944089413],[-0.024459568783641,-0.011323399841785,0.00066478265216574],[0.048255663365126,-0.0023583688307554,-0.032212357968092]],[[-0.0027691586874425,0.011285775341094,0.011723331175745],[0.032176423817873,-0.055446915328503,-0.030862746760249],[-0.0054154507815838,0.0056017586030066,0.10283516347408]],[[-0.11523543298244,0.061823472380638,0.0049728830344975],[0.0011566296452656,0.070143237709999,-0.06944565474987],[-0.12619704008102,0.029347345232964,-0.0048852558247745]],[[0.014358816668391,0.046317540109158,-0.046960115432739],[0.026086587458849,-0.003482332220301,-0.04800684005022],[0.0066498899832368,-0.038880538195372,-0.060085833072662]],[[-0.021077781915665,-0.0018155197612941,-0.019395992159843],[-0.041772451251745,-0.0503687299788,0.038410056382418],[0.018899101763964,-0.081804476678371,0.03625051677227]],[[-0.067263282835484,0.024809254333377,-0.016736272722483],[-0.02324989810586,0.034247916191816,-0.02009604126215],[-0.030791319906712,-0.04827469214797,0.017279893159866]],[[-0.071434892714024,-0.035265624523163,0.056544192135334],[0.033030565828085,0.055257216095924,0.063872113823891],[0.027803331613541,0.11787257343531,-0.052782207727432]],[[-0.053215518593788,-0.020984511822462,-0.10859017819166],[0.019007498398423,0.054500471800566,0.015144458971918],[-0.04621859267354,0.05673848465085,-0.0064066988416016]],[[0.012754919938743,0.05618966370821,-0.005302888341248],[0.017033571377397,-0.015478272922337,-0.12450914829969],[-0.0056507680565119,0.038170587271452,-0.049474358558655]],[[0.00062487437389791,0.034968640655279,0.057338960468769],[-0.04413540661335,-0.044136326760054,-0.0035051852464676],[0.010183344595134,-0.062315322458744,-0.074061580002308]],[[-0.096255846321583,0.0036234767176211,-0.028655368834734],[0.044258244335651,0.088446348905563,-0.041409220546484],[0.029445543885231,0.029295902699232,-0.013716604560614]],[[0.0045640245079994,0.038834728300571,0.0083901090547442],[-0.03071940690279,0.033168192952871,0.052236143499613],[0.02111872471869,0.007610552944243,0.011379469186068]],[[-0.037079654633999,0.012989149428904,0.04647259041667],[-0.045094426721334,0.00053908280096948,-0.020095352083445],[-0.003579922253266,0.040175076574087,-0.026549072936177]],[[-0.06277572363615,-0.024944746866822,-0.041525784879923],[-0.090987831354141,-0.12792192399502,0.024659585207701],[-0.073679484426975,-0.04226528480649,-0.073702596127987]],[[-0.0074489843100309,0.022452458739281,0.037129368633032],[-0.016281273216009,-0.080379970371723,-0.014525977894664],[0.044702641665936,0.03503879532218,-0.0074214870110154]],[[-0.038603752851486,-0.044285703450441,0.019078692421317],[0.038300294429064,0.0028177897911519,0.023976383730769],[-0.031326539814472,0.05403670296073,0.043595489114523]],[[-0.080496653914452,-0.064512386918068,0.048771817237139],[0.005269949324429,0.0019583976827562,0.046892322599888],[-0.070590272545815,-0.023325365036726,0.065090671181679]],[[0.052772384136915,-0.006944599095732,0.062385022640228],[0.046243015676737,0.017397668212652,0.052941855043173],[-0.046961601823568,-0.015572912059724,0.025640342384577]],[[-0.12039043754339,-0.044321876019239,0.001558402669616],[-0.060065064579248,-0.030295332893729,-0.012579973787069],[0.048612304031849,0.061205133795738,0.071360886096954]],[[-0.075737588107586,-0.054001305252314,0.0097156539559364],[-0.056361958384514,0.021965365856886,0.036236833781004],[-0.017474101856351,-0.033011093735695,-0.0064854216761887]],[[0.018563199788332,0.064335480332375,-0.048430204391479],[-0.069685213267803,-0.021202683448792,-0.011649508029222],[-0.08620348572731,0.037883728742599,-0.013415957801044]],[[0.04784993827343,-0.0055525559000671,0.064160563051701],[0.060691878199577,-0.040633697062731,-0.0092972172424197],[0.062744490802288,0.022613056004047,0.034097701311111]],[[-0.081411346793175,0.02933651022613,0.05172223970294],[0.019318727776408,0.044649939984083,-0.059330932796001],[0.015461155213416,-0.01787687651813,0.029728604480624]],[[-0.0090159317478538,0.086546339094639,0.080926075577736],[0.023190271109343,-0.048644509166479,0.12618574500084],[-0.0026880037039518,-0.16137428581715,0.10605937242508]],[[-0.061054803431034,0.023568540811539,0.052844267338514],[-0.046210326254368,-0.056896608322859,0.057739697396755],[0.071012273430824,-0.0045870738103986,0.044426340609789]],[[-0.00082081515574828,0.0052532334811985,-0.0078492509201169],[-0.013848101720214,0.042435213923454,-0.0087182214483619],[-0.15901902318001,0.045052364468575,0.080469623208046]],[[-0.10321834683418,0.1018893122673,-0.085998937487602],[0.1372248083353,-0.015844931825995,-0.043885797262192],[0.1511415541172,-0.038855422288179,5.1833660108969e-05]],[[-0.041957907378674,0.063266530632973,0.013236153870821],[-0.03944981098175,-0.015110047534108,0.0022160063963383],[0.0039618345908821,-0.0094197299331427,0.071542717516422]],[[0.04060186073184,-0.036507308483124,-0.097655661404133],[0.099838636815548,0.035917893052101,-0.027233360335231],[-0.017839955165982,-0.033093489706516,0.045335475355387]],[[-0.044774621725082,0.014216001145542,-0.07054141908884],[-0.016343854367733,-0.10614676773548,-0.014644490554929],[0.025402639061213,-0.039477828890085,0.0045014210045338]]],[[[-0.075786285102367,-0.047309149056673,0.0068318573758006],[-0.04435233771801,-0.021658796817064,0.019891196861863],[0.032526727765799,-0.034812428057194,-0.014631262980402]],[[-0.0054518105462193,-0.017932053655386,0.016708085313439],[0.0016471355920658,0.034055791795254,-0.0064377300441265],[0.14465865492821,-0.054799053817987,-0.04827256500721]],[[-0.094735778868198,-0.015308628790081,-0.028807520866394],[-0.028303669765592,-0.015646114945412,-0.02310349047184],[0.0090019162744284,0.042375117540359,-0.077942132949829]],[[0.10050557553768,-0.034179221838713,0.0035722407046705],[0.052633050829172,0.014300924725831,0.0036759222857654],[0.048310618847609,0.0063845296390355,-0.026350539177656]],[[0.0072413291782141,0.062068399041891,0.089856423437595],[-0.056921895593405,0.064234562218189,0.062452133744955],[-0.088738307356834,-0.060673031955957,0.013905012048781]],[[-0.014189020730555,-0.0017919903621078,-0.011789054609835],[0.069241121411324,-0.089963503181934,-0.02931066788733],[0.16231836378574,0.053899921476841,-0.031110521405935]],[[0.032137136906385,0.16392107307911,-0.018915247172117],[-0.016453163698316,0.015218847431242,-0.084574863314629],[0.039580959826708,0.048088394105434,0.058989327400923]],[[0.020262019708753,-0.050278414040804,0.025719426572323],[-0.12080211192369,-0.047944739460945,0.10956170409918],[0.031963054090738,-0.058447409421206,0.03671495243907]],[[-0.035605564713478,0.059268210083246,0.0155931385234],[0.021150808781385,-0.067655757069588,-0.033041633665562],[0.035357423126698,-0.015915233641863,0.029879165813327]],[[-0.011027097702026,-0.030451100319624,0.011286239139736],[0.038261726498604,0.012204634025693,-0.035693325102329],[-0.024666916579008,0.10260534286499,0.025268021970987]],[[-0.056917510926723,-0.12022107839584,0.0044079129584134],[0.063287325203419,0.0022668209858239,0.063636258244514],[0.034064944833517,0.085946604609489,0.049549750983715]],[[0.079710982739925,0.17482505738735,0.14062567055225],[0.0034533718135208,-0.023909039795399,-0.047206535935402],[-0.0084992730990052,0.11599581688643,0.029511770233512]],[[-0.015552278608084,0.082157701253891,-0.020050041377544],[0.0098209735006094,-0.02188453823328,0.0064808153547347],[-0.053734969347715,-0.049267765134573,-0.060689996927977]],[[-0.020505029708147,0.0208396948874,-0.022250166162848],[-0.055982120335102,0.073372542858124,-0.062664724886417],[0.0055123446509242,0.13829435408115,-0.012521911412477]],[[-0.040423050522804,-0.012706031091511,-0.008952334523201],[0.010511596687138,-0.0074154022149742,0.0021239577326924],[0.099029064178467,-0.048727799206972,0.058303456753492]],[[0.070742480456829,0.007960606366396,-0.046083498746157],[0.024229597300291,-0.081149369478226,-0.019373178482056],[0.0020280641037971,0.02101375348866,0.0061440016143024]],[[-0.08244876563549,-0.025947660207748,-0.043044101446867],[-0.064776137471199,-0.0089829079806805,0.082597784698009],[-0.012500016018748,-0.025562968105078,-0.014379234053195]],[[-0.02272224612534,0.09047195315361,0.12075334042311],[-0.097215928137302,0.010545192286372,-0.024892158806324],[-0.07112006098032,-0.05810609459877,-0.13815434277058]],[[0.033680725842714,0.05267982557416,0.078628271818161],[0.07670122385025,0.0059477975592017,0.0098107969388366],[0.014305579476058,-0.018858643248677,-0.057257600128651]],[[-0.039942406117916,0.12804634869099,0.20230203866959],[-0.050534892827272,-0.053024709224701,0.059396676719189],[-0.083162739872932,-0.0050569651648402,-0.069612793624401]],[[-0.02125583961606,0.026197666302323,0.05035487562418],[0.0054989904165268,0.029899867251515,-0.0099488096311688],[-0.02455797791481,0.031713750213385,-0.012882091104984]],[[0.0024946618359536,-0.05405530333519,-0.020187547430396],[0.11861462146044,-0.0073771150782704,-0.022566337138414],[0.14596116542816,0.044296972453594,0.02752497792244]],[[-0.010927966795862,0.029850706458092,-0.064726889133453],[0.056812155991793,-0.022523520514369,-0.066961765289307],[-0.03277825191617,-0.077356904745102,-0.0098847057670355]],[[-0.019314061850309,0.014626716263592,0.020878044888377],[-0.10507170110941,-0.048158388584852,0.021938452497125],[0.14507785439491,0.059584103524685,-0.025406774133444]],[[0.041631326079369,-0.040806274861097,0.0056908777914941],[0.075860254466534,-0.09264212846756,0.034981749951839],[0.13533753156662,0.11142176389694,-0.023809319362044]],[[0.029360426589847,-0.0016382826725021,-0.048246495425701],[-0.0049059372395277,0.059596706181765,-0.0035543092526495],[-0.006442756857723,-0.063963830471039,0.02668890543282]],[[0.00010468659456819,0.011162425391376,0.01467839628458],[-0.13164441287518,0.0020469448063523,-0.049599256366491],[0.020849026739597,0.1364464610815,0.044025469571352]],[[-0.060051292181015,-0.021347060799599,-0.078594043850899],[0.015406074933708,-0.073190130293369,-0.037751726806164],[0.037599589675665,-0.0091057512909174,-0.021865155547857]],[[-0.013921083882451,0.003742101136595,0.0073778037913144],[0.015383860096335,-0.018553955480456,0.0065801064483821],[-0.079874373972416,-0.048683878034353,-0.032550886273384]],[[-0.016998587176204,-0.0067293918691576,0.01528652664274],[0.012406101450324,-0.016190674155951,0.03172056004405],[-0.015245934017003,0.029463717713952,-0.031487800180912]],[[0.072346039116383,-0.0099587710574269,-0.057490445673466],[-0.018864134326577,0.0072802142240107,-0.04983264580369],[-0.030948659405112,-0.038191687315702,0.0039038236718625]],[[0.010110995732248,-0.058515250682831,0.035378567874432],[-0.027968568727374,0.061374180018902,0.0064599509350955],[-0.09234269708395,-0.065240360796452,-0.03591625764966]],[[-0.038034874945879,-0.072366707026958,-0.039448462426662],[-0.052905797958374,-0.0021236033644527,-0.016438435763121],[-0.097485527396202,-0.084208942949772,0.0036223179195076]],[[-0.043260745704174,0.053914461284876,-0.10723301768303],[-0.025786362588406,-0.00041283917380497,0.036045365035534],[-0.078711472451687,-0.068473801016808,0.082883559167385]],[[-0.014654017984867,0.013352267444134,-0.064898081123829],[0.037000175565481,-0.036693811416626,-0.067415080964565],[0.046526793390512,0.01047754753381,0.0033469365444034]],[[-0.0049107349477708,0.097126431763172,-0.035382196307182],[-0.040079955011606,0.023480137810111,-0.097348183393478],[-0.083867602050304,-0.0080422731116414,0.035531230270863]],[[-0.037050660699606,0.0053287604823709,0.023191099986434],[0.12048887461424,0.025033345445991,0.013708519749343],[-0.032248426228762,0.0047921175137162,-0.050390154123306]],[[0.046809352934361,-0.077171370387077,-0.04783096909523],[0.057058937847614,-0.044353630393744,-0.038905262947083],[0.086943976581097,0.064623065292835,0.014696564525366]],[[0.0072383400984108,0.010346470400691,-0.030723677948117],[0.078010238707066,0.015034455806017,-0.019567823037505],[0.10196397453547,0.051626890897751,-0.046250071376562]],[[0.15140298008919,0.094640664756298,-0.013312295079231],[0.0095120398327708,-0.051070157438517,0.0078424233943224],[0.052331514656544,0.048572961241007,0.091302260756493]],[[0.067293010652065,0.037247743457556,0.045580826699734],[-0.065515413880348,-0.027310213074088,-0.08180171251297],[-0.07317204028368,-0.045626014471054,0.039967846125364]],[[-0.043868374079466,-0.021966146305203,-0.028036791831255],[-0.036530617624521,0.0034147554542869,-0.018827775493264],[-0.064955346286297,-0.025050995871425,0.033879697322845]],[[-0.052952241152525,-0.0035448961425573,0.02980106882751],[0.013576934114099,0.12811924517155,-0.028970619663596],[-0.042752727866173,0.11476314812899,0.10828267782927]],[[-0.04124915972352,-0.050893019884825,-0.0053665372543037],[-0.10436435043812,-0.012321660295129,-0.015551889315248],[0.006361267529428,0.036662958562374,-0.00010330229270039]],[[0.15186773240566,0.027056347578764,0.11462504416704],[0.04244739562273,-0.02887143753469,-0.016411164775491],[0.004056200850755,-0.027269065380096,0.038306783884764]],[[0.11822355538607,0.027741206809878,0.016157735139132],[0.00037613639142364,0.025264512747526,0.019388323649764],[-0.035822063684464,-0.0076412530615926,-0.0038897066842765]],[[0.0012021363945678,0.007470887620002,-0.024163028225303],[0.0034417223650962,-0.0030702778603882,-0.072733581066132],[0.0062378477305174,0.058771319687366,0.076107263565063]],[[-0.095880433917046,0.013697906397283,-0.099710881710052],[-0.0011418748181313,-0.029943643137813,0.00028717436362058],[0.048612911254168,-0.022918600589037,-0.084126569330692]],[[-0.023152209818363,0.0085218800231814,-0.031572513282299],[0.054879628121853,0.089877501130104,-0.021355859935284],[-0.052487466484308,-0.021302957087755,-0.015245758928359]],[[0.011526042595506,-0.029521597549319,-0.043577082455158],[-0.050255600363016,-0.002654587617144,-0.0088854013010859],[-0.029191538691521,-0.041113629937172,0.049427699297667]],[[0.023066619411111,-0.063333228230476,-0.034902680665255],[0.032115612179041,-0.01924448274076,-0.068650230765343],[0.13722345232964,-0.017846925184131,0.011599220335484]],[[0.075647585093975,0.070515863597393,-0.067559599876404],[-0.011758828535676,-0.10369286686182,-0.016354389488697],[-0.055293574929237,0.012671364471316,0.04907663911581]],[[-0.0085570057854056,0.0039277910254896,-0.041131142526865],[0.016947068274021,-0.045304585248232,-0.078927479684353],[-0.045258983969688,0.068219281733036,-0.028456909582019]],[[0.086806952953339,0.04996594414115,-0.0027219452895224],[0.052753087133169,0.012585045769811,0.049019612371922],[0.016032684594393,-0.10796186327934,-0.01473262347281]],[[0.099352791905403,-0.064205229282379,-0.066317521035671],[0.14313206076622,0.028288323432207,0.044954486191273],[-0.034987114369869,0.048784334212542,-0.0086584948003292]],[[0.023695604875684,-0.026319514960051,-0.042832370847464],[0.03184999153018,-0.0094263330101967,-0.070501677691936],[-0.034562561661005,-0.024850141257048,-0.050442740321159]],[[0.074209503829479,-0.0032211721409112,-0.059767063707113],[0.081728309392929,-0.017266033217311,0.054774221032858],[0.02118219435215,0.0042708008550107,0.031437292695045]],[[-0.025136819109321,0.0063795112073421,-0.097143225371838],[-0.0020995682571083,-0.017345491796732,-0.089166343212128],[-0.012484296225011,-0.018074905499816,0.019339514896274]],[[-0.096453785896301,-0.042628560215235,0.020379181951284],[-0.022821761667728,0.01093618851155,-0.040336292237043],[-0.016196871176362,0.047730524092913,-0.0011088917963207]],[[0.048363830894232,0.034856293350458,0.017718801274896],[-0.0014143373118713,-0.037658371031284,-0.02324484847486],[0.077695481479168,0.02999153919518,-0.029431652277708]],[[0.0035721324384212,0.037079025059938,0.032406415790319],[0.029810018837452,-0.076003588736057,0.0050006881356239],[-0.0090957991778851,0.03446489572525,0.028430396690965]],[[-0.020817652344704,-0.065895050764084,-0.025752037763596],[-0.061123006045818,-0.048681445419788,-0.054088901728392],[-0.011055470444262,-0.051758427172899,-0.091997876763344]],[[-0.053156524896622,0.0053088953718543,0.087248064577579],[0.04865987598896,0.013229311443865,-0.012403060682118],[-0.012964710593224,0.04297211393714,0.0018105248454958]],[[0.053958564996719,-0.02569954842329,0.0093998638913035],[0.035962413996458,0.044445212930441,0.06148224323988],[0.041383143514395,0.016069816425443,0.0012559160823002]],[[0.025038151070476,-0.063703939318657,-0.0062946123071015],[0.05763815715909,-0.08073553442955,0.0098638031631708],[0.072214297950268,0.11230279505253,0.027913330122828]],[[0.0033624120987952,-0.0025385867338628,-0.014997502788901],[-0.01630887016654,-0.0014874996850267,-0.0094838878139853],[-0.067103765904903,0.00028663719422184,-0.033442631363869]],[[-0.014772123657167,-0.011123512871563,-0.069877818226814],[0.015214725397527,-0.015018197707832,-0.0016354268882424],[0.068849615752697,-0.018865050747991,0.025083547458053]],[[-0.022023698315024,-0.10393568128347,0.023414321243763],[0.089072749018669,-0.0048657553270459,0.027953088283539],[0.077506497502327,0.052150193601847,0.0025107467081398]],[[-0.038318078964949,0.059136755764484,-0.0097758760675788],[0.041135098785162,-0.058579031378031,0.051317133009434],[-0.047908034175634,-0.045881364494562,-0.016285246238112]],[[0.17020820081234,-0.041564643383026,0.020008765161037],[-0.044104017317295,0.025180701166391,0.071157239377499],[0.014167638495564,0.00086301402188838,0.0052183046936989]],[[-0.022668302059174,-0.057739220559597,-0.015607936307788],[0.057559732347727,-0.0074516180902719,0.041721891611814],[-0.048257850110531,-0.018470803275704,0.046132382005453]],[[-0.051406487822533,-0.039010379463434,-0.010492672212422],[0.12040558457375,0.045459266752005,0.0016236549708992],[0.045899908989668,0.060328219085932,-0.015586217865348]],[[0.016441347077489,-0.039270810782909,-0.0034133298322558],[-0.063142538070679,0.0041225710883737,0.054441843181849],[-0.072633601725101,-0.038217362016439,-0.041342262178659]],[[-0.017939912155271,-0.054145034402609,-0.055786177515984],[-0.10292417556047,0.0051983338780701,-0.017804691568017],[0.050506446510553,-0.015340623445809,0.041027382016182]],[[0.011182812973857,0.079417988657951,0.015633042901754],[-0.12785311043262,-0.10717102140188,-0.046134658157825],[-0.056684847921133,0.037274215370417,0.058237183839083]],[[-0.0011806613765657,0.017806814983487,0.13009691238403],[0.021137714385986,0.080294638872147,0.013693421147764],[0.0016284608282149,0.027356788516045,0.0022366233170033]],[[-0.0076322765089571,0.016078112646937,-0.032342363148928],[-0.074296578764915,-0.018721470609307,0.042966011911631],[-0.10777615010738,-0.10766419023275,-0.0053736483678222]],[[-0.033738154917955,-0.023646932095289,0.032154515385628],[-0.036889810115099,0.074611105024815,0.0081956516951323],[-0.010888362303376,-0.008298615925014,0.030769463628531]],[[-0.064816311001778,0.0088083911687136,7.8263517934829e-05],[-0.0016009686514735,0.064066901803017,0.030728481709957],[0.0034793235827237,-0.091290511190891,-0.037500653415918]],[[0.030959125608206,-0.0097674708813429,0.035545542836189],[-0.015434175729752,0.0080647934228182,0.014162282459438],[-0.039854343980551,-0.0020339796319604,-0.047410443425179]],[[0.078923270106316,0.10622368007898,-0.0017699949676171],[-0.020266883075237,-0.0054743294604123,0.035519149154425],[0.10773823410273,-0.0013479577610269,-0.060996200889349]],[[0.12348831444979,0.0080914776772261,-0.087730586528778],[0.098696254193783,0.089463390409946,0.11850947886705],[0.0057094469666481,-0.012703699059784,-0.042502824217081]],[[-0.0061503872275352,0.026590434834361,0.038250707089901],[-0.031718242913485,0.062213309109211,0.040397994220257],[-0.10229247808456,-0.070471294224262,0.063883647322655]],[[-0.038711853325367,-0.11302834004164,-0.031082518398762],[0.0022843726910651,0.0018491658847779,0.14946593344212],[0.076489791274071,-0.089108116924763,0.026093937456608]],[[0.032855812460184,-0.080754809081554,-0.047191724181175],[-0.10165949165821,-0.057664386928082,-0.016123626381159],[-0.014391357079148,0.032893743366003,-0.102712854743]],[[0.010514349676669,0.04761877655983,-0.0015484326286241],[-0.071446552872658,-0.015498681925237,-0.016213783994317],[-0.051113307476044,0.082660377025604,0.033086180686951]],[[0.015825945883989,-0.082113102078438,-0.02334569580853],[-0.051787845790386,-0.087165638804436,-0.08240120857954],[0.1157132089138,0.11019242554903,0.050093814730644]],[[-0.059288747608662,0.055651355534792,-0.019953792914748],[0.097910590469837,0.046484582126141,-0.085291385650635],[-0.023072052747011,0.029985785484314,0.059653509408236]],[[-0.044579695910215,-0.013452823273838,0.010372253134847],[0.082182742655277,-0.015200992114842,0.056578829884529],[0.081363894045353,0.0065436344593763,0.0095679955556989]],[[0.05345443636179,0.012709625996649,-0.1022457331419],[-0.021848421543837,-0.052980944514275,-0.037228126078844],[0.0032441786024719,0.045819465070963,0.029486317187548]],[[0.0039440118707716,0.044273000210524,-0.056032672524452],[-0.15340255200863,0.047761742025614,-0.023764859884977],[0.01097475644201,-0.012650449760258,-0.092766314744949]],[[-0.046080779284239,0.0054970723576844,-0.016082959249616],[-0.065140061080456,0.036116421222687,-0.02152113057673],[0.0054904907010496,0.089946962893009,0.040636714547873]],[[0.037424709647894,-0.030206587165594,0.055984299629927],[0.019160341471434,-0.054491505026817,-0.0061540859751403],[-0.017978623509407,0.033425413072109,0.0035845416132361]],[[0.018555516377091,-0.086358927190304,0.0077039948664606],[-0.061113957315683,-0.058817181736231,-0.068446233868599],[0.053589358925819,0.041191890835762,0.010961403138936]],[[-0.021520379930735,-0.031803671270609,-0.001357309287414],[0.070791080594063,0.02032421156764,0.017623577266932],[-0.047909770160913,0.072124026715755,0.077220886945724]],[[-0.0053264452144504,-0.087000869214535,-0.013898756355047],[0.059422228485346,-0.042199324816465,-0.049811359494925],[-0.058055520057678,-0.094919785857201,0.051427982747555]],[[-0.10201787948608,-0.045506920665503,-0.0069696414284408],[0.034435376524925,-0.035370834171772,-0.021948952227831],[-0.037462927401066,0.030806124210358,-0.012153886258602]],[[-0.00081159477122128,-0.010952838696539,-0.037413962185383],[-0.025693563744426,-0.059563618153334,0.066623240709305],[-0.051628332585096,-0.022590961307287,-0.0078522711992264]],[[-0.030644251033664,-0.042241107672453,-0.010232428088784],[-0.010243515484035,0.033706404268742,-0.043114673346281],[0.032845854759216,-0.016533592715859,-0.044095553457737]],[[0.014714876189828,-0.045525994151831,-0.051341481506824],[0.011247017420828,-0.10576415061951,-0.04884085059166],[-0.0072932140901685,-0.037517625838518,-0.052942790091038]],[[0.14723092317581,0.031911913305521,-0.057633761316538],[0.079779535531998,0.060991458594799,0.087129913270473],[0.0063090021722019,-0.11271577328444,-0.0013082743389532]],[[0.077525079250336,-0.0011872383765876,-0.031266000121832],[0.03106995485723,-0.11337477713823,-0.028413230553269],[-0.015390696004033,-0.009680824354291,0.091058552265167]],[[-0.016035653650761,0.051757767796516,-0.075792901217937],[-0.01428553275764,0.021559389308095,-0.043160989880562],[-0.0087629416957498,-0.013960726559162,-0.019637620076537]],[[-0.037950899451971,0.068921439349651,-0.031016806140542],[-0.096131861209869,-0.10701335966587,-0.088143348693848],[-0.043938983231783,-0.055628448724747,-0.11090488731861]],[[-0.014743151143193,-0.097559228539467,0.020140796899796],[-0.057769995182753,-0.058822728693485,0.022775791585445],[0.011981531046331,-0.0061935386620462,0.07616451382637]],[[0.069817647337914,-0.0014499867102131,-0.0090643418952823],[0.021870223805308,0.0050192140042782,-0.023007042706013],[-0.089650958776474,-0.0010894995648414,-0.014015290886164]],[[0.041539002209902,-0.04000798612833,0.0132986465469],[-0.0042749512940645,0.063366435468197,-0.024626037105918],[-0.089119456708431,0.034173168241978,-0.063156694173813]],[[0.046891268342733,-0.035963032394648,0.0016369894146919],[0.12862119078636,0.11116685718298,-0.0040754335932434],[0.0064610517583787,0.007614754140377,-0.026397818699479]],[[-0.076983340084553,-0.064636193215847,-0.062018424272537],[0.064215518534184,-0.074293278157711,0.098515041172504],[-0.0099473875015974,-0.028640192002058,-0.021534187719226]],[[0.14016783237457,0.072187922894955,-0.049495257437229],[-0.029986396431923,0.068089053034782,0.011448810808361],[-0.0064537487924099,-0.022828040644526,-0.012091840617359]],[[-0.0074307592585683,0.080893941223621,0.073790267109871],[0.010721141472459,0.017693750560284,0.062784925103188],[-0.060462057590485,0.057730492204428,-0.050690528005362]],[[-0.1205338165164,0.043414112180471,0.086113639175892],[0.043679606169462,-0.0041207652539015,0.093086190521717],[-0.10379076004028,-0.0054551218636334,-0.083651527762413]],[[-0.04061720892787,-0.038167510181665,0.042704991996288],[-0.02792083658278,-0.082948982715607,-0.087121970951557],[0.024202009662986,0.068478889763355,-0.01635705307126]],[[0.027904303744435,-0.030274311080575,0.010022050701082],[-0.035119369626045,-0.06755393743515,0.0049214465543628],[-0.055451516062021,-0.019937535747886,-0.091569736599922]],[[-0.047529079020023,-0.06060890480876,0.11124955862761],[-0.015696005895734,0.045713808387518,0.0023124502040446],[-0.015124938450754,-0.10130688548088,0.029302459210157]],[[-0.028354166075587,0.037318360060453,0.033370461314917],[-0.057563606649637,-0.12360267341137,-0.0049328431487083],[0.016241764649749,-0.049093279987574,-0.0041376338340342]],[[0.065204337239265,0.0011160504072905,-0.067801810801029],[-0.076825238764286,-0.029677353799343,-0.082629323005676],[0.029696868732572,0.00040170809370466,0.033263005316257]],[[-0.046277899295092,-0.013435105793178,0.090385355055332],[-0.056168757379055,-0.015308764763176,-0.074676796793938],[-0.022542474791408,0.056104756891727,0.13618011772633]],[[0.027733417227864,-0.042047619819641,0.01407415792346],[-0.050036065280437,-0.018837969750166,-0.0442248955369],[-0.12333969026804,-0.011450693942606,-0.029510783031583]],[[0.050795614719391,-0.071085579693317,0.045417666435242],[-0.032851990312338,0.09591668099165,-0.005962367169559],[-0.10459367930889,0.021105827763677,-0.010862459428608]],[[0.025724103674293,0.061377268284559,0.067797377705574],[0.005210536532104,-0.00076141586760059,-0.026261327788234],[-0.093087449669838,-0.15223871171474,-0.06019189581275]],[[-0.024388842284679,0.034093637019396,0.018080750480294],[-0.035878587514162,-0.00049151567509398,-0.0022599908988923],[-0.037685092538595,0.093903452157974,0.0010230568004772]],[[-0.073233298957348,-0.045464262366295,-0.013527428731322],[-0.012206166051328,0.03597029671073,-0.048367734998465],[-0.037032060325146,-0.024939991533756,0.022171756252646]],[[-0.026783322915435,0.0073964432813227,-0.041655577719212],[0.080525651574135,0.026286710053682,-0.056034740060568],[-0.033103998750448,-0.079930655658245,-0.0117426821962]],[[-0.07105553150177,0.031906366348267,-0.063000082969666],[-0.077220380306244,-0.047682750970125,0.03052644431591],[-0.060190130025148,-0.056068621575832,-0.042164776474237]],[[-0.0073570050299168,0.0090573765337467,0.034766782075167],[-0.07191226631403,-0.038128420710564,-0.084154568612576],[-0.063868582248688,-0.085388265550137,-0.025110848248005]],[[-0.066799350082874,0.0045055472292006,-0.04383397474885],[0.16830007731915,0.067622140049934,-0.0072452798485756],[0.10108909755945,0.045346986502409,-0.093594580888748]],[[-0.013513531535864,-0.074529603123665,-0.077406778931618],[0.020558413118124,-0.052113492041826,-0.054571688175201],[0.022881414741278,0.029839606955647,-0.0006558588356711]]],[[[0.028607700020075,0.073455780744553,0.17489077150822],[-0.039378196001053,0.027311015874147,0.01846388168633],[0.05460037663579,-0.084309995174408,-0.037762988358736]],[[-0.0077928984537721,-0.027096156030893,-0.0045619551092386],[0.04138470068574,-0.036811288446188,0.10045128315687],[0.12470744550228,-0.0099568730220199,-0.15510109066963]],[[-0.034213278442621,0.023100947961211,-0.049038428813219],[0.16385987401009,0.0057443249970675,0.038235504180193],[0.15644551813602,0.068952538073063,0.024561965838075]],[[-0.066143840551376,-0.062304116785526,0.050267029553652],[-0.0069710211828351,-0.014362740330398,0.098593935370445],[0.04469133540988,-0.2162791788578,0.031231082975864]],[[-0.049924626946449,-0.11945520341396,0.075329378247261],[0.15871641039848,0.055335514247417,-0.020466445013881],[0.12995970249176,-0.1808956861496,-0.088680632412434]],[[0.15632998943329,-0.04524627327919,0.023418234661222],[-0.073992036283016,-0.057526495307684,-0.02525950036943],[0.072152301669121,0.060234747827053,-0.0052167703397572]],[[0.11747214943171,-0.022319488227367,0.010053936392069],[0.065897643566132,-0.02439184114337,-0.039450526237488],[-0.090444646775723,-0.10901398211718,0.20554766058922]],[[0.053074654191732,0.16028845310211,0.093513265252113],[-0.041240144520998,-0.022263180464506,0.013651452958584],[-0.0093801794573665,-0.093006148934364,0.045712739229202]],[[-0.0018458177801222,0.0069868811406195,0.080962412059307],[-0.049875400960445,-0.058699067682028,0.13128466904163],[-0.16859178245068,-0.0064397705718875,-0.11268708854914]],[[-0.018183657899499,-0.01903841458261,-0.045326765626669],[-0.028417548164725,-0.034689735621214,0.038596861064434],[-0.040622472763062,-0.033181946724653,0.066619083285332]],[[0.051153961569071,0.022738680243492,-0.08969634026289],[0.029013263061643,0.098006874322891,-0.053017128258944],[-0.087193593382835,-0.00070189713733271,-0.016967108473182]],[[0.13144378364086,0.19978681206703,-0.2003275603056],[0.023234756663442,0.02467972971499,-0.12975637614727],[-0.061307996511459,-0.012134397402406,-0.059936366975307]],[[-0.14661857485771,0.028077434748411,-0.016561014577746],[0.072877883911133,-0.060087587684393,0.10624644905329],[-0.0047169160097837,0.14730364084244,0.0046415929682553]],[[-0.070968307554722,0.083344742655754,-0.02448832243681],[-0.073685295879841,-0.086581908166409,-0.22080333530903],[-0.063694208860397,-0.039322629570961,-0.080016948282719]],[[0.075482301414013,-0.024304613471031,0.035006605088711],[0.16024252772331,-0.25607669353485,-0.045038100332022],[0.082548342645168,-0.16699700057507,-0.087162308394909]],[[-0.051388617604971,-0.089280664920807,-0.17289468646049],[-0.14217461645603,0.087684296071529,-0.14471651613712],[0.039143621921539,-0.019873028621078,-0.15723820030689]],[[0.074011020362377,-0.02158460021019,-0.048734799027443],[0.062243469059467,-0.10352507978678,0.11157432943583],[-0.11567293852568,-0.070993080735207,0.16732755303383]],[[0.028841249644756,-0.012776711955667,-0.047131072729826],[0.10369445383549,0.038486376404762,-0.097978852689266],[0.009333360940218,-0.037000015377998,-0.030974166467786]],[[-0.11623020470142,-0.034752704203129,-0.04024375975132],[0.018729910254478,0.13392105698586,-0.1001385524869],[-0.072030857205391,0.1396943628788,-0.096057459712029]],[[-0.030088096857071,-0.055511198937893,0.0613271035254],[0.078958950936794,-0.018770031630993,0.092205256223679],[-0.058301895856857,-0.096315987408161,0.13960207998753]],[[-0.015772510319948,-0.071503609418869,0.047375593334436],[-0.028065882623196,-0.020858868956566,-0.038672346621752],[0.025233574211597,-0.087233684957027,-0.22863534092903]],[[0.039702598005533,-0.047663670033216,-0.054655693471432],[0.10186648368835,0.091175675392151,0.14269289374352],[-0.12779849767685,0.12575732171535,0.037025611847639]],[[-0.0026441693771631,-0.25576573610306,0.075017973780632],[0.095452941954136,-0.018227493390441,0.18577028810978],[-0.07797733694315,-0.059534650295973,-0.085120715200901]],[[-0.043379861861467,-0.062366001307964,0.0044469237327576],[-0.050245631486177,-0.10062731057405,0.0018473251257092],[0.029112301766872,-0.096751779317856,0.0072744498029351]],[[0.079556927084923,-0.094422310590744,0.13351292908192],[0.046106282621622,-0.052864816039801,-0.077116884291172],[0.081959843635559,0.025414714589715,-0.071257933974266]],[[0.064311809837818,0.059388540685177,0.1437353938818],[0.060860563069582,0.061452258378267,0.037313062697649],[0.076074436306953,0.095493979752064,0.0151047995314]],[[-0.041623674333096,-0.10287055373192,0.00914725381881],[0.01418783981353,0.046890359371901,-0.013448556885123],[-0.099936775863171,0.0089321564882994,0.10935528576374]],[[-0.0548933185637,0.03365321457386,-0.06712194532156],[-0.042699981480837,-0.017449796199799,0.19505050778389],[-0.14097854495049,-0.028840363025665,0.13064500689507]],[[-0.05132969468832,-0.076864376664162,0.10516086965799],[-0.026177257299423,-0.0072785103693604,-0.060884300619364],[-0.098771691322327,0.062166403979063,-0.067687079310417]],[[-0.18677806854248,-0.047318894416094,0.14790427684784],[-0.020102044567466,-0.11393934488297,-0.071813300251961],[0.23263186216354,-0.024847440421581,-0.074453413486481]],[[-0.14888013899326,-0.17196959257126,0.15153017640114],[-0.061941605061293,-0.063241802155972,0.21102628111839],[0.010258664377034,0.056960765272379,0.048544809222221]],[[-0.084813438355923,0.031821466982365,-0.042612511664629],[-0.022035997360945,-0.14217288792133,-0.099004305899143],[0.16064660251141,-0.0072454013861716,-0.012075553648174]],[[0.1544473618269,-0.20051318407059,0.033360317349434],[0.008812821470201,0.2158769518137,0.024360697716475],[0.064061030745506,0.038937773555517,0.074298180639744]],[[-0.13853695988655,-0.087592966854572,0.15978787839413],[-0.052057296037674,0.05992030352354,-0.046389695256948],[0.031090505421162,0.033366739749908,-0.0077689662575722]],[[-0.010567898862064,0.053338047116995,-0.1065289452672],[-0.094630755484104,-0.11778073757887,-0.046018052846193],[-0.026548523455858,-0.079419426620007,-0.056303288787603]],[[-0.064742922782898,-0.1167624220252,-0.1467379629612],[0.068981394171715,-0.07386352866888,0.056161344051361],[-0.088996537029743,0.072063073515892,0.033246725797653]],[[-0.0020774048753083,-0.067678548395634,-0.059295486658812],[0.094415731728077,-0.041315902024508,-0.018748296424747],[0.1106173619628,-0.081418976187706,-0.036455370485783]],[[0.085194565355778,-0.003511187620461,-0.074608162045479],[-0.1408651471138,0.027956744655967,0.2151545137167],[0.11089312285185,0.1803615540266,-0.16450701653957]],[[-0.17905899882317,-0.18304765224457,-0.099657915532589],[-0.10901416838169,0.079693786799908,0.017801657319069],[0.051834762096405,0.021809240803123,-0.13568541407585]],[[0.22009932994843,0.071508824825287,0.040838427841663],[0.12851345539093,-0.022365560755134,0.013514149002731],[0.040689073503017,-0.11602875590324,-0.10640613734722]],[[-0.114910826087,0.035039521753788,-0.099977433681488],[0.030886752530932,-0.07802764326334,0.00081702455645427],[-0.015849651768804,0.12794174253941,0.061638679355383]],[[-0.075570650398731,0.064428240060806,0.17885720729828],[0.0042097200639546,0.096329264342785,-0.011540295556188],[0.094718247652054,0.014064697548747,-0.0066584148444235]],[[-0.09588085860014,-0.071001008152962,-0.075452275574207],[-0.00098921859171242,-0.012768303975463,-0.0039351731538773],[-0.17279833555222,0.018536791205406,0.012953841127455]],[[-0.032319951802492,0.030532237142324,0.046732176095247],[0.028209229931235,-0.061293859034777,-0.070737816393375],[-0.061712615191936,0.034219264984131,0.10316547006369]],[[-0.11816339194775,0.042564984411001,-0.061667926609516],[-0.015048707835376,-0.040614347904921,0.058472912758589],[0.10227432101965,0.030302219092846,0.092826381325722]],[[0.079557359218597,0.067110322415829,-0.062485188245773],[0.057154215872288,0.020602397620678,-0.084899924695492],[0.029780892655253,-0.054408103227615,0.050139170140028]],[[0.11714705824852,0.023935908451676,-0.072783060371876],[0.0072354334406555,0.01031796541065,-0.040215563029051],[-0.06300313770771,0.033146321773529,0.00084483897080645]],[[0.073016084730625,0.036446716636419,-0.11440548300743],[0.016836946830153,0.031707413494587,0.13644425570965],[-0.06552617251873,0.083221293985844,-0.14285103976727]],[[-0.15869414806366,-0.19368235766888,0.13703438639641],[0.054794792085886,0.035309493541718,-0.089394330978394],[0.16920405626297,0.073595769703388,0.036695446819067]],[[-0.19397877156734,-0.043946247547865,0.0066952854394913],[0.084695927798748,-0.1501982063055,0.094839490950108],[0.01253722794354,-0.019870217889547,0.00085416197543964]],[[-0.078415349125862,0.15821129083633,0.049128949642181],[0.064191110432148,0.10200413316488,-0.018400598317385],[0.0044251596555114,-0.13299417495728,-0.2027613222599]],[[0.0038465454708785,0.026770060881972,0.099753133952618],[-0.0018977306317538,-0.044696390628815,0.043696857988834],[0.01890822686255,0.073616810142994,0.045681916177273]],[[0.0014444583794102,0.063357800245285,0.024608435109258],[-0.050015110522509,0.003276492934674,-0.053786400705576],[-0.13210509717464,-0.13351115584373,-0.088287740945816]],[[-0.095241598784924,-0.044017545878887,-0.0066685499623418],[0.04641393199563,-0.022980319336057,-0.089294925332069],[0.11094623804092,-0.015506017953157,-0.074976183474064]],[[0.078018322587013,-0.095073044300079,-0.11220750957727],[-0.050916962325573,0.084925286471844,0.077355705201626],[-0.0010986202396452,-0.086362861096859,-0.022028710693121]],[[-0.021096527576447,-0.062867924571037,0.063708320260048],[-0.018887104466558,0.13010904192924,0.028439549729228],[0.08635538071394,0.058226376771927,0.10092456638813]],[[0.047841150313616,-0.10442392528057,0.091954991221428],[0.12017403542995,-0.0042645530775189,-0.039925470948219],[0.0084673743695021,0.093294702470303,-0.021076446399093]],[[-0.032286178320646,-0.10605751723051,0.03190365806222],[0.10148172080517,-0.10852812975645,-0.13161604106426],[0.081201240420341,-0.056654788553715,-0.067524701356888]],[[-0.04460609331727,-0.0077301124110818,-0.2177195250988],[0.025990759953856,-0.025235135108232,-0.1240020096302],[0.14943532645702,0.038485314697027,0.21457725763321]],[[0.023826183751225,0.039186134934425,0.048285629600286],[-0.088995657861233,-0.048734731972218,-0.13601011037827],[-0.035867769271135,-0.03399957716465,0.041969131678343]],[[0.024815212935209,0.12304014712572,0.14023530483246],[-0.002979502780363,0.0015807981835678,0.014039095491171],[-0.014845638535917,-0.11906681209803,-0.20084837079048]],[[-0.071235604584217,-0.052258726209402,0.080828353762627],[0.0073897349648178,0.035192169249058,0.065847098827362],[-0.073605813086033,-0.022970665246248,-0.07980864495039]],[[-0.072770781815052,0.037886463105679,0.011592879891396],[0.030408006161451,0.19317029416561,-0.14679943025112],[0.061929449439049,-0.043952498584986,-0.020408751443028]],[[-0.097369208931923,0.14766217768192,0.24152988195419],[0.28575676679611,0.025087518617511,0.12261842936277],[0.20588800311089,0.061380598694086,0.023941913619637]],[[-0.12268119305372,-0.028846608474851,-0.1164962053299],[-0.10886213183403,0.085603013634682,-0.063142545521259],[-0.029596975073218,-0.021943490952253,-0.096744559705257]],[[-0.028341082856059,-0.032810363918543,0.051181051880121],[-0.12165097147226,-0.0034628480207175,0.13423293828964],[-0.055356632918119,-0.049597445875406,0.03134424239397]],[[-0.036577951163054,0.15230245888233,0.058102153241634],[0.025127096101642,0.055393867194653,0.036049868911505],[0.063591144979,-0.012231004424393,0.10441426187754]],[[-0.11171923577785,-0.12315525859594,-0.062787875533104],[0.0086867334321141,-0.034560691565275,-0.015345166437328],[-0.11035343259573,-0.1000414416194,-0.0080320090055466]],[[0.0053085652180016,0.061856020241976,-0.05815752223134],[-0.056696366518736,-0.018904834985733,0.013770017772913],[0.061300203204155,-0.01379095390439,-0.0086536491289735]],[[-0.10190440714359,0.033966775983572,-0.070150390267372],[0.0056586223654449,0.068977676331997,0.042774252593517],[0.1321524977684,0.051783602684736,-0.034507602453232]],[[-0.041250627487898,0.032148454338312,0.022728115320206],[-0.10835875570774,0.024935537949204,0.041178818792105],[-0.0058726486749947,0.095967248082161,0.04393944144249]],[[0.13524992763996,0.0069497544318438,0.05007042363286],[-0.21204654872417,0.018389472737908,0.071572497487068],[-0.066305123269558,0.0022968156263232,0.064195163547993]],[[0.0036082086153328,0.015257607214153,-0.067049629986286],[-0.28048047423363,-0.12475781142712,-0.16369311511517],[-0.11626102030277,-0.14431275427341,-0.048454768955708]],[[0.046163689345121,0.014123039320111,0.00097378779901192],[0.083949983119965,-0.053604934364557,-0.025405721738935],[0.052419103682041,-0.017097661271691,0.12811106443405]],[[0.051188968122005,-0.075554341077805,-0.029315071180463],[0.036354526877403,-0.15666404366493,-0.048611525446177],[0.050075426697731,0.046606540679932,-0.04837754368782]],[[0.028023527935147,0.0929936170578,-0.2695580124855],[-0.1413349956274,-0.026667023077607,-0.03260675445199],[0.0024851860944182,-0.064174771308899,0.085988961160183]],[[0.0085698971524835,0.017271015793085,-0.042194448411465],[0.031195668503642,-0.0036639820318669,-0.089712731540203],[-0.03455001860857,-0.052824649959803,-0.046741224825382]],[[0.076462231576443,0.088206648826599,-0.14469617605209],[0.054712891578674,-0.093789078295231,0.0029179910197854],[-0.06752660125494,-0.029223777353764,0.047747779637575]],[[-0.017671206966043,0.077795118093491,-0.041692964732647],[-0.08112370967865,-0.013579938560724,0.14762715995312],[-0.04194812849164,0.070622004568577,-0.013889196328819]],[[0.037051234394312,-0.023244360461831,0.017617812380195],[0.1288655847311,0.13517138361931,-0.0042249034158885],[-0.035108868032694,-0.053164836019278,-0.043139804154634]],[[0.010247169062495,0.14962109923363,0.068665690720081],[0.053004484623671,0.10070396959782,-0.025744628161192],[0.10968405008316,0.0036549405194819,-0.060505472123623]],[[0.26890167593956,-0.029338553547859,-0.12363741546869],[0.15787976980209,0.18987244367599,0.15925662219524],[-0.069039732217789,0.026993326842785,0.11788207292557]],[[-0.061172537505627,-0.070357412099838,0.29239442944527],[0.0080499202013016,-0.063291490077972,0.095724619925022],[0.039174195379019,-0.05226257070899,-0.031251449137926]],[[-0.11515828222036,-0.035155277699232,-0.045813161879778],[-0.11220428347588,0.11310119926929,0.007118237670511],[0.17773441970348,-0.080725103616714,-0.052462015300989]],[[-0.17233088612556,-0.089263491332531,0.066814571619034],[0.12788440287113,0.12798467278481,-0.16490668058395],[-0.056985959410667,0.037157949060202,-0.09759096801281]],[[0.11597946286201,-0.011272209696472,-0.074911408126354],[-0.020497741177678,0.029902763664722,0.0050469329580665],[0.014808633364737,-0.10742778331041,-0.13480249047279]],[[0.076964877545834,0.0085930991917849,-0.047238778322935],[-0.026470482349396,-0.012997914105654,0.12351027131081],[0.049567461013794,-0.053274534642696,0.031687181442976]],[[0.19612142443657,0.17337533831596,0.026920905336738],[0.035230401903391,-0.01202395465225,-0.024924051016569],[0.069632261991501,0.081253863871098,0.14219270646572]],[[0.055553454905748,-0.11643149703741,0.0099329296499491],[0.052448369562626,-0.0051855421625078,-0.14188750088215],[0.077423207461834,0.27188304066658,-0.087522260844707]],[[0.097614586353302,-0.0049319067038596,-0.037444025278091],[0.056439343839884,0.072172597050667,0.050068493932486],[-0.0061418972909451,0.094090864062309,0.0092770839110017]],[[-0.050774179399014,-0.033215466886759,-0.02431265078485],[0.070721335709095,0.019601432606578,0.033090211451054],[0.18822036683559,0.054816052317619,0.014484660699964]],[[0.034561451524496,-0.1693190485239,0.071585737168789],[0.11731565743685,0.086829856038094,-0.10503033548594],[0.023495798930526,0.015371325425804,-0.14350670576096]],[[-0.034856431186199,0.013499156571925,-0.0054904771968722],[-0.10758427530527,0.094853088259697,-0.084049306809902],[-0.066419832408428,-0.044247359037399,-0.15153282880783]],[[-0.030501274392009,-0.05101539939642,-0.030763886868954],[-0.14221198856831,0.017994713038206,-0.11442348361015],[-0.060425564646721,-0.040213651955128,-0.04703912883997]],[[0.15705087780952,0.091246083378792,0.036338217556477],[0.11801940202713,-0.05813504755497,-0.0065944520756602],[-0.024269176647067,-0.0023269604425877,-0.041802939027548]],[[0.019543718546629,-0.036660902202129,0.14472077786922],[0.12028695642948,0.0004362229956314,0.14329597353935],[-0.056965731084347,0.016143959015608,0.0066562662832439]],[[0.030683590099216,0.14352867007256,0.1159333139658],[0.083563432097435,-0.12119923532009,-0.15355838835239],[0.11772732436657,0.0022307285107672,-0.013258860446513]],[[-0.035413946956396,-0.092898242175579,0.03399346768856],[0.027637384831905,0.14258667826653,0.011935476213694],[-0.07843267172575,0.11290509998798,0.10821551829576]],[[-0.20803381502628,-0.15209200978279,0.16704449057579],[0.16314604878426,-0.10517175495625,0.2214127779007],[-0.11208923906088,-0.0039842291735113,-0.016295123845339]],[[0.074939586222172,-0.006749396212399,-0.052880451083183],[0.046688809990883,-0.046038657426834,-0.028211576864123],[0.037000842392445,-0.093788176774979,0.0060659027658403]],[[-0.064038082957268,-0.11310499161482,-0.15119016170502],[-0.018593676388264,0.045328952372074,-0.033467814326286],[0.039148632436991,0.055561240762472,-0.049740187823772]],[[-0.020420929417014,0.16632589697838,-0.066453620791435],[-0.030758680775762,-0.074418425559998,0.0307641569525],[0.27066585421562,0.2066426128149,0.16172651946545]],[[0.074995845556259,-0.0053089810535312,0.10359717905521],[-0.024638833478093,0.03288447111845,0.16268143057823],[-0.03183913603425,-0.073205254971981,0.047415755689144]],[[0.13993185758591,0.13452698290348,0.12802846729755],[0.047536104917526,-0.12281127274036,-0.017851227894425],[0.020591096952558,0.079236529767513,-0.045897725969553]],[[0.039622008800507,0.17962852120399,-0.028456004336476],[-0.10643748939037,-0.051884923130274,0.082265801727772],[0.058591641485691,-0.0692238509655,0.090546101331711]],[[-0.048880878835917,-0.19839558005333,0.20048753917217],[-0.090359427034855,-0.10431991517544,-0.00053916015895084],[0.028708195313811,-0.11398086696863,-0.1132390871644]],[[-0.057478718459606,-0.079896993935108,-0.004314964171499],[-0.030970958992839,0.0048848735168576,0.014318668283522],[0.03005219809711,0.091005958616734,-0.10639720410109]],[[-0.099780343472958,-0.11294884234667,0.08888303488493],[-0.032537959516048,-0.039746392518282,-0.0065314341336489],[0.050754357129335,-0.084985695779324,-0.051115721464157]],[[0.017812289297581,0.018783574923873,0.013218988664448],[0.045701570808887,0.14490589499474,0.050962015986443],[-0.034128963947296,-0.080751731991768,-0.021869771182537]],[[0.18178510665894,0.11865466088057,-0.10089893639088],[0.056870613247156,-0.074397452175617,0.0014106690650806],[0.15732511878014,-0.12591488659382,-0.047543726861477]],[[-0.092602856457233,-0.047588806599379,-0.025310713797808],[-0.0063697132281959,0.10887813568115,-0.081155516207218],[-0.0477394759655,-0.0067305350676179,-0.024748211726546]],[[-0.071030050516129,0.028536276891828,0.024040479212999],[-0.080361470580101,-0.03741417080164,-0.0090916715562344],[0.016583735123277,0.016263473778963,0.058380991220474]],[[0.12432581931353,-0.030747493728995,-0.050024431198835],[-0.12883703410625,-0.048828717321157,-0.0056808618828654],[-0.045465156435966,0.013585992157459,-0.043371863663197]],[[0.01957737468183,-0.0087612131610513,0.083863116800785],[-0.051090158522129,0.025583673268557,0.041574385017157],[0.10976414382458,0.0078329630196095,0.16183367371559]],[[-0.03087105974555,0.097040742635727,0.066969595849514],[0.083287663757801,0.084138475358486,0.095112547278404],[-0.10204897075891,-0.05272775515914,0.057458087801933]],[[0.013238272629678,0.0051103699952364,0.027686418965459],[0.072556391358376,0.089555591344833,-0.13595335185528],[-0.11168451607227,-0.0096668656915426,0.035834524780512]],[[-0.069229565560818,-0.11495458334684,-0.054927825927734],[-0.013225409202278,0.05992678925395,-0.093186542391777],[0.051116950809956,0.051481384783983,-0.001717310748063]],[[-0.1062608063221,0.051911070942879,0.010495433583856],[-0.09451612085104,0.015136556699872,0.17094685137272],[0.14150503277779,-0.076389938592911,-0.10717947036028]],[[-0.098804302513599,-0.21843649446964,-0.081606343388557],[0.10329392552376,0.020644431933761,-0.049511767923832],[0.052645351737738,0.042411513626575,-0.062388863414526]],[[0.079315237700939,-0.058545805513859,-0.091227233409882],[-0.15127944946289,-0.047198113054037,0.013653595000505],[-0.046896614134312,0.025660011917353,-0.090504869818687]],[[-0.010946681722999,0.18444612622261,0.025024684146047],[-0.12166823446751,0.044101525098085,-0.033248528838158],[0.075864888727665,0.020079839974642,0.072745479643345]],[[0.19159089028835,0.052547175437212,-0.023459441959858],[-0.05035037919879,0.0080267228186131,-0.09400250017643],[0.060162872076035,0.040990628302097,0.010597268119454]],[[-0.08938767015934,-0.017266280949116,-0.026905383914709],[-0.11071714758873,-0.05952787026763,0.031703714281321],[0.0066515416838229,-0.01403843332082,-0.032424114644527]],[[0.10212615132332,-0.017707576975226,-0.12816613912582],[0.011842858977616,0.056079022586346,-0.048529703170061],[-0.085249103605747,0.051582265645266,0.030300000682473]],[[0.038171742111444,0.096711613237858,0.075610741972923],[0.082600705325603,-0.0022389627993107,-0.074296593666077],[0.24820381402969,0.04558664187789,0.03555991128087]],[[0.1001828238368,0.032872524112463,-0.049824971705675],[0.022314181551337,-0.063548274338245,-0.11265030503273],[-0.010860629379749,0.087713271379471,0.14996300637722]],[[-0.00058924750192091,-0.021638490259647,0.078496649861336],[0.078467294573784,-0.019089205190539,0.013478607870638],[-0.0016685610171407,-0.10099912434816,-0.085677199065685]],[[0.20488247275352,-0.055598363280296,-0.023258149623871],[0.090442143380642,-0.015521176159382,-0.049620639532804],[-0.12276645749807,-0.072005972266197,-0.1673020273447]]],[[[-0.049767930060625,-0.095379374921322,-0.12056296318769],[0.052646297961473,-0.028963478282094,0.05858876183629],[-0.081822127103806,-0.041825912892818,-0.074850864708424]],[[0.12134178727865,-0.067979127168655,-0.0060202619060874],[0.079887934029102,-0.093999527394772,0.039233162999153],[-0.0032455062028021,-0.20694534480572,-0.12243285030127]],[[0.065799757838249,-0.0023220863658935,0.023446502164006],[-0.01954847946763,-0.064130611717701,0.10736775398254],[0.11020165681839,0.061614751815796,0.036637432873249]],[[0.10271679610014,-0.18884909152985,-0.11960035562515],[-0.0043419143185019,0.0080257467925549,-0.10528815537691],[0.13289186358452,-0.16857561469078,-0.12210239470005]],[[-0.067634835839272,-0.068868905305862,-0.058272458612919],[0.070509664714336,0.055380471050739,0.020192284137011],[0.27188780903816,0.12386750429869,0.06637717038393]],[[-0.022269593551755,-0.0091863544657826,-0.070601239800453],[0.0054309433326125,0.078184366226196,-0.082601264119148],[0.10585395991802,0.035239763557911,-0.023943111300468]],[[0.016305608674884,0.13390086591244,0.14242592453957],[0.12316294759512,0.032901104539633,-0.12708111107349],[-0.093304932117462,0.069228120148182,0.047843437641859]],[[-0.28112328052521,0.0043295859359205,0.10904327780008],[-0.11894878000021,0.082390531897545,0.25727120041847],[0.090426333248615,0.036661807447672,0.16608768701553]],[[-0.02060423232615,-0.11750194430351,0.02576132491231],[0.021505935117602,0.17667175829411,-0.019474932923913],[0.0053665060549974,-0.10391874611378,-0.12664988636971]],[[-0.077690213918686,-0.034755975008011,0.060220077633858],[-0.17512130737305,-0.11236721277237,0.10827904939651],[0.17342709004879,-0.15319813787937,0.074708305299282]],[[0.10020831227303,0.11014595627785,0.30572515726089],[-0.10565835237503,-0.03804288059473,0.06037762761116],[-0.30481681227684,-0.23043800890446,-0.020094765350223]],[[-0.039977177977562,-0.01603608764708,0.049941301345825],[0.02734717912972,0.046842716634274,-0.045021262019873],[-0.15320853888988,0.10540600866079,0.061895001679659]],[[0.0034175417385995,-0.2601797580719,-0.21413849294186],[-0.16379538178444,-0.18319815397263,0.12871859967709],[0.13757634162903,-0.013477018103004,-0.25449761748314]],[[0.10630814731121,-0.086092449724674,-0.11864403635263],[0.0070451302453876,-0.09494623541832,-0.15054279565811],[0.20770563185215,-0.070017419755459,-0.0034383947495371]],[[-0.01944730989635,-0.053633611649275,0.13294959068298],[0.11899622529745,0.062534153461456,0.019933138042688],[0.03584461659193,-0.19657938182354,-0.38488993048668]],[[0.080370791256428,0.066072382032871,0.19817630946636],[-0.053347904235125,-0.045623831450939,-0.10080222040415],[0.13154679536819,-0.05286630243063,-0.08364924043417]],[[-0.037514716386795,-0.20190834999084,-0.25140687823296],[-0.090905629098415,0.01215204782784,0.0074851457029581],[0.056449249386787,-0.13812138140202,-0.033444806933403]],[[0.16243007779121,0.027410078793764,0.027785923331976],[0.05469499155879,-0.0013173507759348,0.057723566889763],[-0.042560078203678,-0.066406548023224,0.070387341082096]],[[-0.05835173651576,0.12667970359325,0.0085419220849872],[0.004243322648108,0.15329334139824,0.086988769471645],[0.10407000035048,-0.013171679340303,0.016446126624942]],[[-0.29529821872711,0.0066414969041944,0.072455383837223],[0.047939743846655,0.0012735861819237,0.0024256729520857],[0.14620387554169,-0.053935837000608,-0.034092642366886]],[[-0.21890802681446,-0.099010355770588,-0.020904667675495],[-0.047076798975468,-0.047959726303816,0.041683230549097],[0.083049990236759,0.066052198410034,0.09335058927536]],[[-0.12703149020672,0.034832935780287,0.075299508869648],[0.012261010706425,-0.061322506517172,0.16763180494308],[-0.022227188572288,0.017666740342975,0.021142626181245]],[[0.0032931212335825,0.0038896820042282,0.067818678915501],[0.013603944331408,0.015659708529711,-0.16864958405495],[0.10032846033573,0.054149799048901,-0.16332325339317]],[[0.088804729282856,-0.036831054836512,-0.061027716845274],[0.058007456362247,0.0018407190218568,-0.17226038873196],[-0.18468010425568,-0.3815313577652,-0.66971737146378]],[[-0.027545757591724,0.12441331893206,0.1404824256897],[-0.050346620380878,0.11036106199026,0.1319772452116],[-0.078990444540977,-0.2834013402462,-0.28509673476219]],[[0.078311093151569,0.13998800516129,0.18661695718765],[0.029980707913637,-0.039165258407593,-0.065676063299179],[-0.14306962490082,-0.14208589494228,0.039401799440384]],[[0.090948507189751,0.078836165368557,0.034678604453802],[0.072765298187733,-0.015030989423394,-0.068143412470818],[-0.055668257176876,-0.093524903059006,-0.08209577947855]],[[0.086447641253471,0.13030940294266,-0.0026668487116694],[0.12862074375153,0.054893061518669,-0.07446414232254],[0.076699502766132,0.055135454982519,0.032097931951284]],[[-0.0073952442035079,-0.17199571430683,-0.17546786367893],[-0.035530511289835,-0.050086110830307,-0.11526826769114],[0.045459438115358,-0.022068833932281,-0.092260293662548]],[[-0.09614209830761,-0.1075439080596,0.059905871748924],[-0.067200899124146,-0.018789257854223,0.0036979236174375],[-0.050380643457174,-0.13013279438019,-0.097160443663597]],[[-0.098432399332523,-0.12286448478699,0.043061200529337],[0.080773085355759,-0.016581520438194,-0.13160137832165],[-0.041813157498837,0.0010347272036597,0.035093192011118]],[[0.10533490777016,0.0023151582572609,-0.16068862378597],[-0.046708535403013,-0.22683675587177,-0.054890744388103],[0.10664863884449,0.24759870767593,0.30902254581451]],[[0.098695456981659,-0.042674746364355,-0.1943536400795],[0.014735316857696,0.072385050356388,0.13138556480408],[0.054144993424416,0.098912052810192,0.033376947045326]],[[-0.068853035569191,-0.12041171640158,-0.067092813551426],[-0.19125095009804,0.0091655077412724,-0.033996760845184],[0.23609685897827,0.035340700298548,-0.060487646609545]],[[-0.13182745873928,-0.10348848998547,-0.033737797290087],[0.11743730306625,0.038231357932091,0.104467228055],[0.023548394441605,-0.12019048631191,-0.16957581043243]],[[-0.073334746062756,0.1384906321764,0.14879469573498],[0.013768536038697,-0.12977284193039,-0.11961929500103],[-0.21389578282833,0.027757154777646,0.10315261036158]],[[-0.040715411305428,-0.13048435747623,-0.096980035305023],[0.098299331963062,0.17039406299591,0.079934425652027],[0.008728732354939,0.10789115726948,0.023781305179]],[[0.017300335690379,-0.01333483401686,0.043312463909388],[0.15391957759857,0.063650980591774,-0.061045590788126],[0.038082920014858,0.032149869948626,-0.14918269217014]],[[0.15775544941425,0.12643496692181,0.046095363795757],[-0.2159271389246,0.0017615255201235,-0.021798584610224],[-0.16833347082138,-0.088696025311947,-0.086322419345379]],[[-0.11735101044178,-0.0063357623293996,0.22133450210094],[-0.091661378741264,-0.072364583611488,-0.030356995761395],[-0.14292874932289,-0.13650695979595,-0.12302176654339]],[[-0.044204667210579,0.08977960050106,-0.0050362320616841],[-0.092566683888435,-0.094543792307377,-0.014529331587255],[0.34339413046837,0.10082749277353,-0.058120626956224]],[[-0.056689277291298,-0.071325056254864,-0.033661395311356],[0.15514719486237,0.0079472549259663,0.14431245625019],[-0.11023786664009,0.11604779213667,0.085328683257103]],[[-0.066417880356312,-0.06966395676136,-0.12143938243389],[-0.013347218744457,-0.1324604600668,-0.10648066550493],[-0.029870560392737,-0.072898514568806,-0.084466226398945]],[[-0.049820814281702,0.0019466879311949,-0.10370241105556],[-0.078828528523445,0.057443801313639,-0.01869123801589],[0.062537796795368,0.16476309299469,0.064517296850681]],[[-0.076382666826248,0.089064575731754,0.1262194365263],[-0.10763467848301,-0.15024343132973,-0.075436033308506],[0.071538038551807,-0.075673177838326,-0.024822467938066]],[[0.13310423493385,-0.069156929850578,0.012657566927373],[0.050350844860077,0.056362349539995,0.068840466439724],[0.11231528222561,0.042887881398201,0.070682689547539]],[[-0.31004211306572,-0.15346322953701,-0.024915210902691],[-0.10778491944075,-0.10062860697508,-0.15418595075607],[-0.18935658037663,-0.1786567568779,-0.12519899010658]],[[0.34637701511383,0.089727260172367,-0.21863554418087],[-0.23908787965775,-0.10918884724379,0.097130790352821],[-0.096681408584118,-0.10535775125027,-0.0076282704249024]],[[-0.034390836954117,0.082387924194336,0.084925420582294],[-0.047080021351576,-0.057862788438797,0.0007062258082442],[0.019671272486448,0.041466809809208,0.20290850102901]],[[-0.0036677308380604,-0.097212232649326,-0.22123456001282],[-0.084300830960274,-0.088611803948879,-0.048086542636156],[0.019126271829009,-0.028858261182904,0.04834820330143]],[[0.21332554519176,-0.0079341856762767,-0.10605683922768],[-0.15272988379002,-0.12443352490664,-0.039715498685837],[-0.084434702992439,-0.1143861413002,-0.064320266246796]],[[0.08222434669733,0.11718182265759,0.17468529939651],[0.07543770223856,0.042846761643887,-0.039102897047997],[-0.052106011658907,-0.23557785153389,-0.37449085712433]],[[-0.086500257253647,-0.070520140230656,-0.10520647466183],[-0.056503415107727,-0.10149838775396,-0.10532639920712],[0.20515982806683,0.073951281607151,0.13437473773956]],[[0.10686383396387,-0.0075363349169493,-0.048617396503687],[0.40948262810707,0.10952331125736,-0.19492323696613],[-0.063677653670311,-0.020585399121046,-0.092544004321098]],[[0.057072207331657,0.076537914574146,-0.0031452325638384],[-0.072250179946423,0.040960300713778,-0.12414579838514],[-0.086944811046124,-0.043968208134174,-0.048527549952269]],[[-0.06083582341671,-0.14686261117458,-0.039235107600689],[0.38067489862442,-0.014015651308,-0.040699779987335],[-0.076656140387058,-0.01661378890276,0.058885898441076]],[[0.027492847293615,0.14211092889309,0.018399024382234],[0.016548190265894,-0.065814472734928,-0.056102380156517],[0.22660745680332,-0.002432850189507,-0.23370349407196]],[[-0.07234612852335,-0.10336259007454,-0.17063303291798],[-0.11524853110313,-0.23377476632595,-0.18608002364635],[0.065386205911636,0.078981064260006,0.16277019679546]],[[-0.048034682869911,-0.044922985136509,-0.32842707633972],[-0.11120825260878,-0.13234657049179,-0.19422064721584],[-0.16203357279301,-0.051250025629997,0.13315181434155]],[[-0.026858173310757,-0.085993856191635,0.064671389758587],[0.012995520606637,0.068118557333946,0.14439870417118],[-0.16308794915676,-0.1644301712513,-0.026096416637301]],[[-0.10205756127834,0.014182692393661,-0.018907032907009],[-0.11380200088024,-0.028188290074468,-0.15001739561558],[-0.049845967441797,-0.009691022336483,-0.26538535952568]],[[-0.0392846763134,-0.060162790119648,-0.12479517608881],[-0.040764253586531,-0.10388016700745,-0.055029444396496],[-0.29200702905655,-0.12210538238287,-0.039434362202883]],[[0.23588879406452,0.11347956210375,-0.021120917052031],[-0.11910855025053,-0.074598878622055,-0.1391979008913],[0.62051892280579,0.16525731980801,0.24816486239433]],[[-0.11612997204065,-0.027441615238786,-0.0383032374084],[0.1827789247036,0.23781853914261,0.069376856088638],[-0.019355675205588,0.021571898832917,0.092525377869606]],[[-0.26967892050743,-0.2233719676733,-0.026558458805084],[-0.068894550204277,-0.11611372232437,-0.11759960651398],[0.015228035859764,-0.013205264694989,-0.16313678026199]],[[-0.074839696288109,-0.12244772911072,0.027266565710306],[-0.04806862026453,-0.012724654749036,0.095428258180618],[0.14244593679905,0.06732190400362,-0.02382530644536]],[[0.24539928138256,0.011565830558538,-0.030054938048124],[-0.11599130928516,-0.098084338009357,0.11706263571978],[-0.76141113042831,-0.15774628520012,0.10544288158417]],[[0.14895316958427,-0.091088816523552,-0.074136257171631],[-0.0093389851972461,0.07465597987175,0.085409559309483],[-0.15047341585159,-0.0014696146827191,-0.075415551662445]],[[0.11234069615602,-0.044194489717484,0.099665179848671],[-0.024710528552532,-0.053240764886141,0.022242704406381],[-0.031826496124268,-0.083566680550575,-0.13309758901596]],[[-0.057071007788181,0.079262375831604,0.1824721544981],[0.056668382138014,-0.01905271038413,-0.1550676971674],[-0.06570266187191,0.005861496552825,0.09219391644001]],[[-0.068412877619267,0.0084859533235431,0.17662397027016],[0.10592652112246,-0.045669924467802,-0.11933969706297],[0.032680660486221,0.066909052431583,-0.09792310744524]],[[0.037275344133377,0.00044340424938127,-0.032821055501699],[0.080399163067341,0.010711975395679,0.052362106740475],[-0.14688371121883,0.030154498293996,-0.0774916857481]],[[-0.053532026708126,-0.080617375671864,-0.078500062227249],[0.085705891251564,0.14576259255409,-0.10481339693069],[-0.030388075858355,0.066472366452217,0.1303896009922]],[[-0.076390109956264,-0.15584129095078,-0.017253683879972],[0.051439866423607,0.04701192677021,0.091114655137062],[-0.015164439566433,-0.091589368879795,-0.13930284976959]],[[0.14622859656811,0.1774956882,-0.078372351825237],[0.076856605708599,-0.15529626607895,0.0018689983990043],[-0.038259666413069,-0.052967086434364,0.099147789180279]],[[0.047871429473162,0.0027304224204272,0.085028387606144],[-0.046180609613657,-0.070334061980247,-0.11075368523598],[0.25197637081146,0.17002288997173,0.18875521421432]],[[-0.056855078786612,-0.04833871871233,0.079978883266449],[-0.0081644793972373,-0.082809008657932,-0.19939671456814],[0.20453630387783,-0.090329095721245,-0.043176934123039]],[[-0.013131448999047,0.03496390581131,0.031028375029564],[-0.031421896070242,0.033970661461353,-0.07219073176384],[-0.040279876440763,0.13165812194347,0.23570048809052]],[[-0.12622262537479,0.036259181797504,-0.038584783673286],[-0.086146391928196,-0.043074514716864,-0.20033979415894],[0.062695913016796,0.099668011069298,0.1053351983428]],[[-0.30140048265457,-0.30099430680275,-0.22561609745026],[-0.18412588536739,-0.15487377345562,-0.14936576783657],[-0.038660302758217,-0.14432150125504,-0.12686569988728]],[[-0.21504376828671,-0.09570623934269,0.019276546314359],[0.036140330135822,-0.037584308534861,-0.00055459787836298],[-0.16489069163799,-0.067084215581417,0.019171953201294]],[[-0.0058621051721275,-0.013352428562939,0.045160941779613],[-0.039145685732365,-0.041622448712587,-0.013941647484899],[0.051839593797922,0.17983987927437,0.080001085996628]],[[0.0041496576741338,0.021149454638362,-0.14641760289669],[-0.11992006003857,0.042276527732611,0.18243166804314],[-0.059824012219906,-0.0028906736988574,-0.021498888731003]],[[-0.0097897322848439,0.082579985260963,-0.0051088165491819],[-0.041701197624207,-0.04795441403985,0.019146177917719],[0.013910986483097,-0.1978305131197,-0.014646781608462]],[[0.19664876163006,0.14496754109859,0.038666766136885],[-0.027200203388929,0.04467961192131,-0.063974760472775],[-0.047861520200968,-0.11906924843788,-0.10847059637308]],[[0.020781166851521,-0.066102549433708,-0.08420142531395],[-0.087125971913338,0.00033343114773743,-0.12444672733545],[-0.018828893080354,0.070446155965328,0.15320655703545]],[[0.14308926463127,0.00015235385217238,0.057992469519377],[-0.0039457026869059,-0.082204684615135,-0.0010594626655802],[-0.60455429553986,-0.33449092507362,-0.32307815551758]],[[-0.055927824229002,0.014579867012799,-0.12098040431738],[-0.045068647712469,-0.031831227242947,0.047495562583208],[0.058701027184725,0.017811361700296,0.014273938722908]],[[-0.052653912454844,-0.050072286278009,0.029406020417809],[-0.080689169466496,-0.066680811345577,-0.17449553310871],[-0.06003725156188,0.19600750505924,0.12319802492857]],[[-0.0028605416882783,0.026896651834249,-0.035988703370094],[-0.18174646794796,-0.22771811485291,-0.058148089796305],[0.059371434152126,0.0094154672697186,-0.067078053951263]],[[-0.095402367413044,0.048006810247898,-0.17140144109726],[-0.044499635696411,0.2187192440033,0.30334860086441],[-0.16622275114059,0.19448979198933,-0.039969559758902]],[[-0.07428801804781,-0.071423709392548,-0.16874052584171],[0.015775974839926,0.00069400382926688,-0.13127771019936],[0.1566596776247,0.083816073834896,0.10499764978886]],[[0.1659038066864,0.070433758199215,0.017750855535269],[-0.011822040192783,0.20023433864117,0.24223007261753],[0.24838648736477,0.092358462512493,-0.095965161919594]],[[-0.021599611267447,-0.12800322473049,-0.15436805784702],[-0.24221675097942,-0.21381875872612,-0.13197650015354],[-0.012854050844908,-0.027060428634286,-0.016879118978977]],[[-0.13511890172958,0.044286835938692,0.095638759434223],[0.068299323320389,0.045077908784151,-0.24415244162083],[-0.077608570456505,-0.036610633134842,0.15373179316521]],[[-0.15318146348,-0.14258264005184,-0.057934895157814],[-0.0048550819046795,-0.01103229355067,0.0247887596488],[-0.0001927557750605,0.028251314535737,-0.070541575551033]],[[0.070637628436089,0.15669582784176,0.15526184439659],[0.04082129150629,0.081522606313229,-0.0041463579982519],[-0.19819556176662,-0.0034823089372367,-0.095375187695026]],[[-0.028602123260498,-0.17789682745934,-0.14873617887497],[-0.017180697992444,-0.020899893715978,0.24117033183575],[-0.13471022248268,-0.057464241981506,-0.10216683149338]],[[0.086129456758499,0.080947019159794,0.055675514042377],[-0.08182018995285,-0.073006868362427,0.0098055582493544],[-0.00045399414375424,0.051630903035402,0.094204515218735]],[[0.22978065907955,0.017301188781857,0.07195008546114],[-0.050360921770334,0.0077721602283418,-0.13825386762619],[-0.1722649782896,0.044592812657356,0.10247357934713]],[[-0.13525165617466,-0.00049403897719458,0.12849232554436],[-0.13875456154346,-0.098681017756462,-0.13739374279976],[-0.032658349722624,-0.13847160339355,-0.026695864275098]],[[0.068162359297276,0.18422624468803,0.20400011539459],[-0.023017760366201,0.0016541654476896,-0.047000803053379],[0.35660606622696,0.15750940144062,0.28960973024368]],[[-0.081052392721176,0.047960095107555,-0.095600754022598],[-0.080347560346127,0.12451108545065,-0.18372716009617],[0.14084765315056,0.0015823687426746,-0.16516342759132]],[[-0.029902722686529,-0.15097193419933,-0.064984537661076],[-0.094763532280922,0.0057355295866728,-0.039790745824575],[-0.12438817322254,0.03640703484416,0.053064197301865]],[[-0.098442703485489,0.025703690946102,0.021778030321002],[0.090392827987671,0.075889095664024,-0.054730791598558],[-0.040654260665178,-0.13845846056938,-0.018437815830112]],[[-0.18200720846653,-0.026864103972912,0.14573013782501],[0.065477021038532,0.089117988944054,0.095490172505379],[0.13110050559044,-0.030405456200242,0.11228512227535]],[[-0.010812670923769,-0.0014806404942647,0.0560157969594],[-0.028844518586993,0.0017902535619214,-0.074280291795731],[0.28455716371536,0.080067940056324,0.11448521912098]],[[0.0075669959187508,-0.077832736074924,-0.05551789700985],[0.053053393959999,0.09409311413765,0.059048946946859],[0.045517101883888,-0.098046697676182,-0.17249439656734]],[[-0.044964481145144,0.07347160577774,0.20659847557545],[0.1278927475214,0.16730532050133,0.096022836863995],[0.086852326989174,0.076536506414413,-0.091791033744812]],[[-0.040931418538094,-0.069689512252808,0.092862531542778],[0.026701791211963,0.00048792196321301,-0.048692297190428],[0.060073345899582,0.033648617565632,0.047555055469275]],[[0.044574987143278,-0.073696792125702,0.023883894085884],[0.028666703030467,-0.060150932520628,0.079445905983448],[-0.10620233416557,-0.014047715812922,-0.10804444551468]],[[0.04462118819356,-0.034972935914993,-0.063267536461353],[0.052635386586189,0.020277639850974,-0.10613415390253],[-0.084904618561268,-0.20668840408325,-0.03758929669857]],[[0.12887932360172,-0.013905412517488,-0.1193033978343],[-0.018860230222344,0.018927484750748,0.017710933461785],[-0.09072832018137,0.032523110508919,-0.15360313653946]],[[0.061542104929686,0.043416634202003,0.1101880595088],[-0.14552217721939,-0.10821693390608,-0.035749644041061],[0.19050066173077,0.020459327846766,0.10775104910135]],[[-0.11303512006998,-0.067039169371128,-0.026879167184234],[-6.6699558374239e-06,-0.076278574764729,0.11171913146973],[0.048282716423273,0.0024424900766462,0.10936966538429]],[[0.076899744570255,0.042117610573769,0.068525701761246],[-0.29100853204727,0.042391322553158,0.0031580426730216],[-0.069826990365982,-0.032422117888927,-0.017041923478246]],[[-0.19070343673229,0.016104588285089,-0.020067388191819],[-0.17268325388432,-0.12359593063593,0.019170846790075],[0.035431575030088,-0.17877100408077,-0.073321305215359]],[[0.19655883312225,0.064860694110394,0.10146317631006],[-0.046168714761734,-0.14030855894089,-0.20525236427784],[-0.050811871886253,0.0078974068164825,-0.015067025087774]],[[-0.048892367631197,-0.13980089128017,0.0056803934276104],[-0.041595838963985,-0.037586305290461,-0.075206585228443],[-0.24601575732231,0.069643527269363,0.038645625114441]],[[0.014885378070176,0.15339352190495,-0.17950870096684],[0.035742074251175,-0.0741942897439,-0.062554158270359],[0.079957336187363,0.20416525006294,0.30208361148834]],[[-0.1196530982852,-0.023358138278127,0.26998242735863],[0.029752803966403,-0.043487016111612,-0.019640576094389],[-0.052221436053514,0.2086006551981,0.27594387531281]],[[0.0045983889140189,0.1345020532608,0.14283762872219],[-0.0064537739381194,-0.031701609492302,0.065229766070843],[0.31047159433365,0.19180792570114,0.099717311561108]],[[-0.17981091141701,-0.21002115309238,-0.0035586743615568],[-0.034707676619291,-0.047615304589272,-0.077680312097073],[-0.025033665820956,-0.013822307810187,-0.15209664404392]],[[0.050164580345154,0.030275605618954,0.021616097539663],[0.12022193521261,-0.0011139023117721,0.018509985879064],[0.022222399711609,0.066481195390224,0.16749733686447]],[[-0.12410354614258,-0.058379206806421,0.054120931774378],[-0.10931063443422,-0.098047688603401,-0.013744978234172],[0.031029837206006,0.066388286650181,0.047711011022329]],[[0.0080193048343062,0.047347355633974,0.093292772769928],[-0.12307313084602,0.063958086073399,0.050359398126602],[-0.086848564445972,-0.14150743186474,0.14223378896713]],[[0.037555679678917,0.09292459487915,0.15210463106632],[-0.074775002896786,0.15534293651581,-0.13824859261513],[-0.11963970214128,0.079008400440216,0.020605884492397]],[[-0.0070367436856031,0.05245491489768,0.14127449691296],[0.096825622022152,-0.0084964009001851,0.087716639041901],[-0.040430948138237,-0.034029513597488,0.031316623091698]]],[[[-0.054388750344515,-0.080153927206993,-0.062332265079021],[-0.028874909505248,-0.042339842766523,0.053038749843836],[-0.019712947309017,0.010882380418479,0.026216261088848]],[[-0.045373428612947,-0.049589991569519,0.033688653260469],[-0.06099933758378,-0.025257095694542,-0.019481996074319],[0.032548442482948,-0.040247209370136,-0.022844692692161]],[[-0.024988086894155,-0.0045835245400667,0.054025799036026],[0.016730388626456,-0.03384380415082,-0.037702921777964],[0.014556696638465,0.00039895009831525,0.014433211646974]],[[-0.06724913418293,-0.009563441388309,0.049493458122015],[-0.0010874071158469,-0.030645685270429,-0.0092951217666268],[-0.019900584593415,0.038761582225561,-0.037285730242729]],[[-0.0048040375113487,0.015889694914222,0.033559437841177],[-0.055764578282833,0.011033850722015,-0.061891842633486],[-0.033151730895042,-0.029201824218035,-0.013270551338792]],[[0.0010118433274329,-0.034653190523386,0.092403963208199],[-0.029804913327098,0.043615769594908,-0.032632883638144],[-0.012982600368559,-0.037856288254261,0.0022841501049697]],[[0.020870693027973,0.063111811876297,0.0030151549726725],[-0.0053210235200822,0.028738413006067,-0.030673831701279],[-0.031453289091587,0.028595825657248,-0.056936129927635]],[[-0.028274258598685,0.017794689163566,-0.0076375417411327],[0.019999792799354,0.017781678587198,-0.014300007373095],[0.06594630330801,0.058125201612711,-0.018363239243627]],[[0.10205954313278,0.07212507724762,0.013670393265784],[-0.064415961503983,0.027716206386685,-0.015409072861075],[-0.00081745453644544,-0.035888619720936,-0.0016486581880599]],[[-0.016396878287196,-0.029690455645323,-0.014321558177471],[0.072676606476307,-0.085106000304222,-0.047225631773472],[0.019462522119284,0.063460141420364,-0.030355177819729]],[[-0.023467330262065,-0.014289702288806,-0.021567150950432],[-0.055024463683367,0.011698708869517,-0.0088450284674764],[-0.0061798575334251,-0.022944841533899,0.027048295363784]],[[-0.024356357753277,0.067997477948666,-0.067704819142818],[0.0037288037128747,-0.053714796900749,0.036872085183859],[0.033555205911398,-0.036474872380495,0.052551779896021]],[[-0.12027405202389,0.032413773238659,0.0091455327346921],[0.027389582246542,-0.054518107324839,-0.027879025787115],[0.007985039614141,0.015203642658889,-0.031279571354389]],[[0.06560804694891,0.038173593580723,-0.065143421292305],[0.033847384154797,-0.010394897311926,-0.014513281174004],[-0.04862979799509,-0.022306695580482,-0.023534992709756]],[[0.024131653830409,0.046226549893618,0.061782170087099],[0.010381204076111,0.020453050732613,-0.056319314986467],[-0.00035985335125588,0.035178869962692,0.040515378117561]],[[-0.027306387200952,0.034703075885773,0.0012031538644806],[-0.01758124306798,0.0055674603208899,0.0078211454674602],[-0.07248205691576,0.057916089892387,0.022385612130165]],[[0.0041734101250768,0.052264027297497,0.047740612179041],[0.0052881669253111,0.079817518591881,-0.0034000689629465],[-0.0061093429103494,-0.048635344952345,0.070751421153545]],[[-0.0025513814762235,0.058180816471577,-0.019863024353981],[0.09075839817524,-0.04115641489625,-0.00020796708122361],[-0.059187408536673,0.063363380730152,-0.083559282124043]],[[-0.03143348544836,-0.016288671642542,-0.041089620441198],[-0.037936914712191,-0.026592094451189,0.028791971504688],[-0.10919832438231,-0.0020999363623559,0.068811692297459]],[[-0.026972288265824,0.0070960642769933,-0.10924132168293],[0.062105618417263,0.028718009591103,0.020659562200308],[0.058393031358719,0.016301533207297,0.046413198113441]],[[0.045978464186192,0.029252978041768,-0.051615290343761],[0.017706556245685,0.0024088176432997,-0.025478862226009],[0.070445254445076,-0.059944361448288,0.026343110948801]],[[0.039268288761377,-0.059597074985504,-0.0074196606874466],[-0.074998073279858,-0.1110260412097,-0.029985705390573],[0.073038332164288,0.046572376042604,-0.042714338749647]],[[-0.037440620362759,0.023894609883428,-0.034379709511995],[-0.078705310821533,-0.018627546727657,-0.0056675877422094],[-0.026220669969916,-0.025298479944468,0.015841040760279]],[[-0.060217700898647,-0.050362072885036,0.0081753022968769],[0.035933542996645,-0.076545730233192,-0.099109254777431],[-0.023672016337514,0.068066641688347,0.036490745842457]],[[-0.024645237252116,-0.078075334429741,-0.033271376043558],[0.011856006458402,-0.012349120341241,0.046951241791248],[0.027288654819131,-0.01752789132297,0.023802330717444]],[[-0.059157121926546,0.012621074914932,-0.033890631049871],[-0.0042044064030051,0.051867164671421,0.0017829325515777],[-0.049791470170021,0.05527064204216,0.057065133005381]],[[0.046149991452694,-0.02472578920424,-0.046696241945028],[0.042901545763016,0.055454015731812,0.052669011056423],[0.0050614047795534,0.020111499354243,-0.017212746664882]],[[0.057029534131289,-0.020928747951984,-0.034578513354063],[-0.0039807567372918,-0.049397602677345,-0.020134188234806],[0.081999853253365,0.055146664381027,0.10014371573925]],[[0.014934103004634,-0.0056794444099069,-0.036129739135504],[0.047454945743084,0.070494547486305,0.13087832927704],[-0.088123880326748,-0.018049459904432,0.0089915208518505]],[[-0.012090785428882,-0.062935449182987,-0.009801828302443],[-0.022306207567453,-0.039032705128193,-0.0073269060812891],[-0.032088283449411,0.042542334645987,0.024712733924389]],[[-0.0069352821446955,-0.067776516079903,-0.036156266927719],[-0.0027517019771039,0.00014262647891883,-0.025549802929163],[0.025947459042072,0.045435734093189,0.02645555511117]],[[-0.020654430612922,-0.084047257900238,0.014382907189429],[0.0074323220178485,-0.023592054843903,0.079918637871742],[-0.067897990345955,-0.016186732798815,-0.075824402272701]],[[-0.0041620591655374,-0.0044911960139871,0.014382601715624],[0.040240757167339,-0.02808703482151,-0.028696842491627],[-0.077671051025391,-0.036056850105524,0.035823956131935]],[[0.085615016520023,-0.046407599002123,-0.039192538708448],[-0.022334549576044,0.080365493893623,0.058635003864765],[-0.047935534268618,0.015000926330686,-0.028202600777149]],[[-0.060117624700069,-0.028439117595553,-0.093452103435993],[0.035429481416941,0.010048931464553,-0.10009782761335],[-0.062548734247684,0.012012204155326,0.041994400322437]],[[0.071264252066612,0.082826115190983,0.012659586034715],[-0.019443295896053,0.021410623565316,-0.067123591899872],[-0.0062139146029949,0.014943079091609,-0.023132048547268]],[[-0.0022489647381008,-0.010752076283097,-0.011843115091324],[-0.051029868423939,-0.079965233802795,0.022639270871878],[-0.098485581576824,0.040595974773169,-0.015057279728353]],[[0.024946350604296,0.0081440154463053,-0.038719743490219],[-0.084155432879925,0.023358713835478,0.032435543835163],[0.047789290547371,0.0049675144255161,0.010304473340511]],[[-0.036240447312593,-0.045257218182087,0.064215391874313],[0.061613753437996,-0.031044635921717,-0.072813458740711],[-0.0069827893748879,-0.011745573952794,0.060069192200899]],[[-0.0071759866550565,-0.038913786411285,0.023897496983409],[0.029516426846385,0.017261909320951,-0.10678515583277],[0.011360105127096,0.025630598887801,0.086672864854336]],[[0.0086220856755972,0.013396295718849,-0.053846959024668],[0.012430887669325,-0.0026564358267933,0.031441304832697],[0.010783282108605,-0.018014496192336,0.084092065691948]],[[-0.020315803587437,-0.034075237810612,-0.076866447925568],[0.011590824462473,0.027006410062313,-0.003614567918703],[0.045382682234049,0.021513560786843,0.040426533669233]],[[-0.0057725510559976,-0.017013134434819,-0.0050697005353868],[-0.023909416049719,-0.026798918843269,-0.027057614177465],[0.035042952746153,0.051905937492847,-0.032112214714289]],[[8.5336381744128e-05,-0.015853142365813,-0.036195278167725],[0.0018412793288007,-0.020602123811841,0.084974929690361],[-0.10897266119719,-0.026281591504812,0.017512172460556]],[[0.046704530715942,-0.10928784310818,0.0094977449625731],[-0.040162820369005,0.020589323714375,0.0034884915221483],[0.073745988309383,-0.02620074339211,-0.0066351075656712]],[[0.017242485657334,-0.028733430430293,0.088776901364326],[0.05838667601347,-0.06425628811121,0.018316505476832],[0.014150224626064,0.053381182253361,-0.027376087382436]],[[0.041530925780535,0.011629620566964,-0.031716234982014],[0.018360611051321,0.049709536135197,-0.047201860696077],[-0.015027102082968,0.025443755090237,0.0025909312535077]],[[-0.017882630228996,-0.014719421043992,0.030920650810003],[-0.040471184998751,-0.030580369755626,0.096947759389877],[-0.020110601559281,-0.070555351674557,-0.060846801847219]],[[0.08545545488596,-0.014589409343898,-0.011899005621672],[-0.046298760920763,0.092068120837212,0.089500084519386],[-0.014600440859795,-0.014507804065943,-0.03695947304368]],[[0.029335564002395,0.067729905247688,0.022991513833404],[0.048499416559935,0.054185908287764,-0.0043433480896056],[0.039973028004169,0.043805606663227,0.078822329640388]],[[-0.012983616441488,0.02350091189146,0.028926653787494],[0.056617878377438,-0.054527524858713,0.091270282864571],[0.0080286720767617,-0.0034793806262314,0.041152641177177]],[[0.096963256597519,0.043395664542913,-0.018292836844921],[0.024647420272231,0.048385124653578,0.048664070665836],[0.036250121891499,-0.0052694114856422,-0.11181979626417]],[[-0.037326823920012,-0.067453920841217,-0.047940198332071],[-0.055707037448883,-0.0081811798736453,0.011328212916851],[-0.039665196090937,-0.015337523072958,0.029014931991696]],[[0.0025217211805284,-0.058203265070915,0.052609119564295],[-0.082311429083347,-0.045197334140539,0.015764117240906],[-0.0043915323913097,0.040735382586718,-0.033669106662273]],[[8.3956874732394e-05,-0.002159679774195,-0.040487922728062],[0.043834734708071,0.037463620305061,0.033499773591757],[-0.0087751094251871,-0.028173591941595,0.11105012893677]],[[-0.0092434016987681,0.00076694710878655,0.039079234004021],[-0.030833855271339,0.00065577565692365,0.027712823823094],[-0.03505402430892,0.072155460715294,-0.028578475117683]],[[-0.020504981279373,-0.056931108236313,0.032691899687052],[-0.04126350954175,-0.060176748782396,-0.03937741369009],[0.026660179719329,-0.013084033504128,0.011036675423384]],[[-0.069177716970444,0.044725354760885,-0.066771499812603],[0.11495944857597,0.0029914986807853,0.0191211681813],[0.025624763220549,0.017597438767552,0.026547281071544]],[[0.0098848305642605,0.054613079875708,0.047429129481316],[-0.012819348834455,-0.0090086255222559,-0.066671021282673],[0.017744833603501,0.01513974647969,-0.0066629694774747]],[[0.0051647932268679,0.049376681447029,-0.043209053575993],[-0.013952164910734,0.028567811474204,0.0052479589357972],[0.026598116382957,-0.016769902780652,0.035396263003349]],[[0.040953245013952,-0.032205544412136,-0.046171974390745],[0.043475389480591,0.011416990309954,0.001194067299366],[-0.016120605170727,0.024430114775896,0.031560331583023]],[[0.077539429068565,0.014134638942778,0.018109101802111],[0.030748315155506,-0.036699615418911,-0.015204182825983],[-0.0021861041896045,-0.08094722032547,0.020026048645377]],[[0.069238252937794,-0.059775345027447,-0.029119629412889],[0.067034877836704,0.04326906055212,0.0095129916444421],[-0.014426000416279,0.026522818952799,0.068468995392323]],[[0.043082419782877,-0.010501924902201,0.050780821591616],[0.04260852560401,-0.049127582460642,0.10311517119408],[-0.023959195241332,-0.014178862795234,0.049481797963381]],[[-0.012858941219747,-0.054701291024685,-0.0047998214140534],[0.029851591214538,-0.056156132370234,0.017318565398455],[-0.045922704041004,-0.017139688134193,-0.045650094747543]],[[0.025863945484161,0.056378670036793,-0.098508723080158],[0.01140911784023,-0.058065563440323,0.0056118089705706],[0.07656118273735,-0.012441319413483,0.093814618885517]],[[0.026206823065877,-0.026155905798078,-0.03981702029705],[-0.045407902449369,0.026233047246933,0.024402199313045],[-0.026621693745255,0.029450979083776,0.047976680099964]],[[-0.05499953776598,-0.07325354218483,-0.026095544919372],[0.04349909722805,-0.014997689053416,-0.02225062251091],[0.031046602874994,0.077806212007999,-0.015258505940437]],[[0.095937982201576,0.068207688629627,-0.013957688584924],[-0.070116698741913,0.003080629510805,0.031356893479824],[-0.099018037319183,0.067984253168106,-0.00095312495250255]],[[-0.053981058299541,0.037700042128563,0.087360613048077],[0.063275352120399,0.049683127552271,-0.018217524513602],[-0.048450145870447,0.068170450627804,0.0087874475866556]],[[-0.021130591630936,-0.11466443538666,-0.034974131733179],[-0.010045789182186,-0.017163619399071,0.062314957380295],[-0.0079302126541734,0.015693796798587,0.10331825166941]],[[-0.089485265314579,0.093631900846958,0.0044233333319426],[0.049304213374853,-0.0044223251752555,-0.042240135371685],[-0.056286428123713,-0.014070493169129,0.036237899214029]],[[0.019002992659807,0.0012887604534626,0.0013294330565259],[0.017660211771727,0.018278922885656,-0.0065813194960356],[0.014606022275984,-0.046396918594837,-0.1125378832221]],[[-0.0086806146427989,-0.0010908785043284,0.033092692494392],[0.016402572393417,0.014491001144052,0.029994860291481],[0.052003018558025,-0.042867034673691,-0.083897940814495]],[[-0.002248375210911,-0.017394553869963,0.034167271107435],[0.076213039457798,0.050554122775793,0.10553652793169],[-0.020738808438182,-0.042074978351593,0.023673528805375]],[[0.02522843144834,0.0067392741329968,-0.0028101690113544],[0.044123269617558,-0.062335077673197,0.11963798105717],[0.083402425050735,0.0038001923821867,-0.060594853013754]],[[-0.0032549877651036,-0.020576473325491,0.038695197552443],[0.029324194416404,0.010401372797787,0.023736765608191],[-0.029858468100429,0.051939900964499,0.011209108866751]],[[-0.012090402655303,0.040602713823318,0.022626621648669],[0.035011351108551,-0.018037332221866,-0.013125849887729],[-0.017591316252947,-0.082786537706852,0.071461260318756]],[[0.066990658640862,0.12454972416162,0.015199108049273],[-0.01604033075273,0.078960277140141,0.027163945138454],[-0.027726344764233,-0.011345724575222,-0.049995716661215]],[[0.031210288405418,-0.013713446445763,0.050401881337166],[0.059356652200222,-0.04697534814477,0.044811189174652],[0.071262963116169,0.097403168678284,0.0026406766846776]],[[0.085204362869263,0.012726213783026,-0.01886492408812],[0.046628355979919,0.013307039625943,0.012035084888339],[-0.031490594148636,0.034019518643618,-0.01921977289021]],[[-0.0065879309549928,-0.061862375587225,0.054176740348339],[0.041534453630447,0.012383872643113,-0.016797281801701],[-0.027881348505616,-0.0057167890481651,-0.0067585012875497]],[[-0.00075643393211067,-0.07898261398077,0.020604839548469],[0.021479785442352,-0.00040849996730685,-0.045510668307543],[0.074300572276115,0.0049671661108732,0.026863429695368]],[[0.015354196541011,0.079754769802094,0.072352349758148],[-0.059867259114981,0.042496342211962,-0.030984383076429],[-0.011425550095737,0.076648235321045,0.017875673249364]],[[-0.060498610138893,-0.0052168103866279,0.07073774933815],[-0.012983856722713,-0.020292075350881,0.013124022632837],[-0.028847597539425,-0.012137332931161,-0.0071434667333961]],[[0.037674032151699,0.028205033391714,0.055817998945713],[0.0064944587647915,0.1217257976532,-0.0059372456744313],[0.083611413836479,-0.0087918899953365,-0.029676167294383]],[[-0.030615326017141,-0.014453607611358,0.0027554165571928],[-3.9970047509996e-05,0.024625223129988,-0.012855384498835],[-0.044217564165592,-0.0032862431835383,0.033830337226391]],[[0.044130820780993,-0.11318601667881,0.0026734573766589],[-0.018465222790837,-0.063730396330357,-0.037717565894127],[0.01339044701308,-0.056061454117298,-0.027384772896767]],[[-0.016617814078927,0.047997757792473,0.090352155268192],[-0.037628997117281,0.0042994525283575,-0.021627383306623],[-0.024375922977924,-0.02674531377852,-0.013021998107433]],[[-0.044585522264242,-0.013996755704284,-0.049640338867903],[0.061309903860092,-0.022409807890654,-0.030784724280238],[-0.017550207674503,-0.048173457384109,0.029984936118126]],[[0.03070691972971,0.013922525569797,0.055159233510494],[0.013110514730215,0.029764175415039,0.0072112898342311],[-0.0320999994874,-0.059631250798702,0.023491883650422]],[[0.027724888175726,-0.0040918327867985,-0.047876998782158],[-0.068325236439705,-0.022597495466471,-0.065758779644966],[0.017685979604721,0.069993317127228,0.052243124693632]],[[0.0092317620292306,-0.032211016863585,5.5558255553478e-05],[-0.086798645555973,-0.039278849959373,-0.01862139813602],[-0.033089470118284,-0.082117453217506,0.016407661139965]],[[0.029831832274795,0.0039885272271931,0.0065359906293452],[0.0076998835429549,0.095865502953529,0.044576793909073],[-0.002164508216083,0.027344722300768,-0.079585202038288]],[[-0.013129717670381,-0.0096654957160354,0.040354371070862],[0.067301571369171,-0.041972286999226,-0.10168123245239],[0.025352340191603,0.071758389472961,-0.01482683699578]],[[-0.036174811422825,-0.032368574291468,-0.02479157410562],[-0.01227539498359,0.0087193679064512,0.08817720413208],[0.060142900794744,-0.074339598417282,-0.026462657377124]],[[-0.028112499043345,0.035480793565512,0.0093958489596844],[0.030142234638333,0.029414527118206,-0.076092384755611],[-0.015103132463992,0.0020414181053638,0.008773853071034]],[[0.052677594125271,-0.032213643193245,-0.0085498690605164],[-0.01261774264276,0.053673643618822,-0.01277263648808],[-0.053314421325922,0.07532425224781,-0.0068340483121574]],[[-0.01385509967804,0.01603508926928,-0.0079470463097095],[-0.0215920265764,0.024468356743455,0.037991885095835],[0.0063928700983524,0.0092584518715739,0.0099443858489394]],[[0.0033009455073625,0.042209219187498,0.079399056732655],[-0.03116125240922,0.0073827388696373,-0.054647281765938],[0.027976430952549,-0.045090563595295,0.015546433627605]],[[-0.042655263096094,0.0046848333440721,0.043417915701866],[0.019569978117943,-0.039003510028124,-0.013243856839836],[-0.002096766140312,-0.010720614343882,0.067663945257664]],[[0.055528428405523,0.080118082463741,0.056551571935415],[0.038604855537415,0.0098124630749226,-0.033598117530346],[0.049052353948355,0.016367068514228,-0.067703150212765]],[[0.029608381912112,-0.010013218037784,0.0092187616974115],[0.087668053805828,0.014957215636969,-0.045083813369274],[-0.023018406704068,0.027858981862664,0.0056782430037856]],[[0.01818291656673,0.03888601437211,0.0063246921636164],[-0.032120194286108,-0.080437563359737,0.019830986857414],[-0.00033325224649161,0.0068866973742843,-0.043722871690989]],[[0.063997015357018,0.13067938387394,-0.053342521190643],[0.062923304736614,0.034308310598135,0.0066002965904772],[0.018749050796032,-0.054652132093906,-0.020891552790999]],[[0.057201758027077,-0.034024849534035,-0.035188984125853],[-0.037140071392059,0.0031505902297795,-0.013492926023901],[-0.015394399873912,0.043936610221863,-0.04344229772687]],[[-0.026677815243602,-0.10953222960234,-0.0022693558130413],[0.0044373339042068,0.12165705859661,0.035397112369537],[0.016385715454817,-0.07134048640728,0.040395971387625]],[[-0.026982331648469,-0.0016432997072116,-0.12844084203243],[-0.015019777230918,-0.021693369373679,-0.0058060907758772],[-0.053271260112524,0.0098127210512757,-0.048491973429918]],[[0.046977631747723,0.070759192109108,0.012688887305558],[-0.0088974479585886,0.027123088017106,0.036774970591068],[-0.037964716553688,0.00064862123690546,0.073777921497822]],[[-0.014584457501769,-0.06545203179121,-0.028437756001949],[0.056038994342089,-0.005041535012424,0.0055748960003257],[0.079960070550442,0.013091970235109,0.059309277683496]],[[0.061633065342903,0.019115095958114,0.040014676749706],[0.02037806250155,0.030246017500758,-0.014377259649336],[0.00051255093421787,0.065187484025955,0.057361904531717]],[[0.0090594720095396,-0.096201673150063,-0.060982223600149],[-0.03944319114089,-0.036250479519367,0.034841556102037],[-0.053594212979078,0.048031974583864,-0.015805145725608]],[[0.04788950830698,-0.028868936002254,0.01716616563499],[0.026242284104228,0.045227512717247,-0.012635689228773],[0.0099134854972363,-0.054448015987873,0.0025250408798456]],[[0.0068644904531538,0.099308036267757,0.031040592119098],[0.045200910419226,-0.038545530289412,0.051183316856623],[0.05016890540719,0.031048316508532,-0.063299477100372]],[[0.086467087268829,0.043690975755453,-0.040807109326124],[-0.026770500466228,0.025409482419491,-0.028007671236992],[-0.055482532829046,0.043199129402637,-0.0093646440654993]],[[0.086370356380939,0.10406041890383,0.015979478135705],[-0.040223825722933,0.0098715098574758,0.028554791584611],[0.026343060657382,-0.00109675724525,0.033668514341116]],[[-0.0079310014843941,0.027188761159778,-0.029328277334571],[-0.027698671445251,0.044691246002913,0.041066013276577],[0.024966862052679,0.00036632103729062,0.036802034825087]],[[-0.02970059402287,-0.070372700691223,-0.05366362631321],[0.049029272049665,-0.014504752121866,0.0020140849519521],[0.057304292917252,-0.043773580342531,0.029545363038778]],[[0.00068467727396637,0.047925040125847,0.062412552535534],[-0.0049487417563796,0.01613799110055,0.018137946724892],[0.064445681869984,0.032465130090714,0.039984349161386]],[[0.054334823042154,-0.018383402377367,-0.029745601117611],[0.019720757380128,0.078431002795696,0.02392846904695],[-0.038289591670036,0.021132159978151,-0.036907110363245]],[[-0.014114779420197,-0.06590735912323,0.037204127758741],[0.027572510764003,-0.0091090807691216,0.049142882227898],[0.022122848778963,0.075379431247711,0.02375384233892]],[[0.12177435308695,0.047446865588427,0.040450852364302],[0.054004017263651,-0.015527758747339,-0.056586794555187],[0.076160565018654,-0.10341525822878,-0.011790001764894]],[[-0.0244898237288,0.01182749401778,-0.0024037549737841],[0.010770519264042,0.056786954402924,0.0010424960637465],[0.023097973316908,0.023310909047723,0.077554725110531]],[[-0.014360977336764,-0.043979421257973,0.025048978626728],[-0.015768803656101,-0.033656943589449,0.036600947380066],[-0.060844641178846,-0.1022619381547,-0.043784402310848]],[[-0.030844181776047,-0.0014446640852839,-0.016319304704666],[0.045522551983595,0.062782526016235,0.058054246008396],[0.032427851110697,0.063879482448101,0.010012811981142]],[[-0.0021705569233745,-0.037903394550085,-0.011244089342654],[0.012308996170759,-0.06578778475523,0.055692583322525],[0.053334400057793,-0.015304328873754,0.0048037134110928]],[[-0.0097771072760224,-0.0025245144497603,0.063571140170097],[-0.025759844109416,0.049206003546715,-0.06337883323431],[-0.043232709169388,-0.099710032343864,-0.021656319499016]],[[-0.0029594297520816,-0.00013604175182991,-0.0018516258569434],[0.04621683806181,-0.047728192061186,0.07069668918848],[-0.063659057021141,0.0019316934049129,-0.025508679449558]]],[[[0.089875146746635,-0.052881684154272,-0.12627840042114],[0.013786188326776,-0.10125418007374,-0.11977186799049],[0.14768517017365,0.014663239009678,-0.075875349342823]],[[0.10822851955891,-0.10778553038836,0.13184730708599],[0.082982309162617,0.02951474301517,0.15307269990444],[0.17359767854214,0.032372567802668,0.11866819858551]],[[0.020281799137592,-0.067197017371655,-0.0070795342326164],[-0.12442622333765,0.075150549411774,0.064696870744228],[-0.0034776309039444,-0.0358533449471,0.034970421344042]],[[0.0082296943292022,-0.13553240895271,0.075925529003143],[0.001485132961534,-0.058875750750303,0.06159258633852],[0.089896604418755,-0.066337965428829,-0.16218219697475]],[[0.20810666680336,0.0086396774277091,-0.011341578327119],[-0.0052893324755132,-0.013383762910962,-0.0086678043007851],[0.0047061499208212,-0.032165672630072,-0.17287303507328]],[[0.04453968256712,-0.03898586332798,-0.05670303478837],[-0.15674383938313,0.13051702082157,-0.19062165915966],[0.13718883693218,0.10979969054461,-0.13979104161263]],[[-0.12507492303848,0.090136133134365,0.048124484717846],[-0.023913908749819,0.017452672123909,0.013250236399472],[0.14221449196339,-0.0026973758358508,0.17139728367329]],[[0.31134214997292,-0.021053627133369,-0.030872706323862],[0.1723367869854,-0.17554883658886,0.037396337836981],[0.088849291205406,-0.12444104999304,0.064018383622169]],[[-0.018560122698545,0.058946061879396,0.039987113326788],[0.015190040692687,-0.038130965083838,0.035688187927008],[0.00028746880707331,-0.10451847314835,-0.013075673021376]],[[-0.042416453361511,-0.00047135748900473,0.017109751701355],[-0.056501004844904,0.035265676677227,-0.14494469761848],[-0.16331599652767,-0.11194900423288,-0.028403930366039]],[[0.025691378861666,0.081907138228416,-0.17046692967415],[-0.076007008552551,-0.14177620410919,-0.11796785145998],[-0.057825971394777,0.20073580741882,-0.0056460350751877]],[[0.061485603451729,0.1347201615572,-0.027540734037757],[0.0029505300335586,-0.01767092011869,0.04975813627243],[-0.010934270918369,0.027021529152989,-0.081829063594341]],[[0.011735016480088,-0.038765158504248,0.024646205827594],[-0.021795710548759,-0.059756461530924,-0.040749222040176],[-0.076092220842838,0.0082780057564378,0.11463788151741]],[[-0.068425521254539,-0.020744774490595,-0.012906533665955],[-0.086922951042652,-0.05693669244647,-0.037927329540253],[-0.070582740008831,0.09771766513586,0.10152284801006]],[[-0.040552768856287,-0.027262333780527,0.006164497230202],[-0.025772131979465,-0.092010118067265,0.028483580797911],[-0.16444310545921,0.1617973446846,-0.017865639179945]],[[0.0057143582962453,0.23716653883457,-0.11227031797171],[-0.057298149913549,-0.049884397536516,-0.14446341991425],[-0.051220275461674,0.1218291670084,-0.12426899373531]],[[-0.05792835354805,-0.088316582143307,-0.050380934029818],[-0.011874692514539,-0.072388723492622,0.09426848590374],[0.23561495542526,0.041715513914824,-0.12642732262611]],[[0.13278830051422,0.0059391381219029,0.067215994000435],[0.026808455586433,0.10772062093019,0.10133488476276],[0.062699899077415,-0.20053227245808,-0.096817091107368]],[[-0.080638326704502,-0.017799098044634,0.035522170364857],[-0.18677206337452,0.096285663545132,-0.087685950100422],[-0.13007600605488,0.091713927686214,-0.18869170546532]],[[-0.0025637461803854,0.04347862303257,0.08693453669548],[-0.0048797139897943,0.024559695273638,-0.034127872437239],[-0.055962529033422,0.017782436683774,0.062202125787735]],[[-0.073976203799248,-0.00084605952724814,0.0051135765388608],[0.14133349061012,-0.074394635856152,0.019987564533949],[0.11388060450554,-0.078911826014519,0.088589519262314]],[[-0.031636252999306,0.1060229241848,-0.067230112850666],[0.046290371567011,0.064241446554661,0.009858719073236],[0.13584335148335,0.15635532140732,-0.036095976829529]],[[0.051686581224203,0.027790982276201,0.069691076874733],[0.12950211763382,-0.039362139999866,0.0013593058101833],[0.073684319853783,-0.076123960316181,0.047922417521477]],[[0.08117289096117,-0.021832294762135,-0.021642759442329],[0.272365629673,-0.081515602767467,-0.12824177742004],[0.12202499806881,0.041445884853601,-0.021505482494831]],[[-0.0050514419563115,-0.25028783082962,0.045460760593414],[-0.11347879469395,0.11772628873587,-0.031746346503496],[0.1004985421896,0.24566739797592,-0.011011213995516]],[[0.0083968015387654,-0.11394190788269,0.013731930404902],[0.0049942587502301,-0.044131428003311,-0.023321710526943],[-0.042791038751602,-0.10628338158131,-0.13960537314415]],[[-0.052546419203281,-0.065487094223499,0.058556418865919],[-0.0093949772417545,-0.081198252737522,0.0037049162201583],[0.049948193132877,-0.018857268616557,-0.06016605719924]],[[0.13513995707035,-0.13244257867336,0.039264321327209],[0.047572005540133,0.011210055090487,0.11023903638124],[0.040097512304783,0.0086480835452676,-0.00053240009583533]],[[-0.044976200908422,-0.076757222414017,-0.053613517433405],[-0.030611475929618,-0.013373988680542,0.0062012090347707],[0.17743688821793,-0.090852320194244,-0.064938105642796]],[[-0.015033455565572,0.084538519382477,-0.06403574347496],[-0.1197402626276,-0.051307421177626,0.07945205271244],[-0.025494845584035,-0.079067818820477,-0.038578752428293]],[[0.12384732067585,-0.040087983012199,0.13764014840126],[0.0051272306591272,-0.16906666755676,0.091708436608315],[0.097605749964714,-0.065287172794342,0.19317376613617]],[[0.13195791840553,-0.17702274024487,0.12049809098244],[-0.07420651614666,-0.15257349610329,0.002293495927006],[0.041363839060068,-0.098093926906586,-0.07166438549757]],[[-0.053931936621666,0.031076785176992,-0.18199224770069],[-0.0079101584851742,0.10617154091597,-0.019039981067181],[-0.14634871482849,0.10187435150146,-0.017213195562363]],[[-0.093901082873344,-0.07926943898201,0.17615488171577],[0.04690195992589,-0.06566708534956,0.011717721819878],[0.12175389379263,-0.030691588297486,-0.028627457097173]],[[0.039984136819839,0.017821803689003,-0.037720214575529],[-0.023664956912398,-0.069430507719517,0.010506198741496],[0.093878865242004,0.015646340325475,-0.013700231909752]],[[-0.1308308839798,0.053883586078882,-0.07307992130518],[-0.16304297745228,0.011350962333381,-0.01238470338285],[-0.098597548902035,-0.0022931115236133,-0.069640070199966]],[[-0.027781710028648,0.095040060579777,-0.032188843935728],[0.0084509253501892,-0.049109235405922,0.1454176902771],[-0.030864058062434,-0.055550195276737,-0.0095382435247302]],[[-0.1203745380044,-0.12060360610485,-0.030694769695401],[-0.0091532440856099,0.048287056386471,0.08788526058197],[-0.0062024253420532,-0.08202189207077,-0.1131304576993]],[[0.055365443229675,-0.0075561045669019,-0.051685858517885],[0.019316840916872,-0.032348211854696,-0.054523788392544],[-0.012772087939084,-0.012689559720457,0.13615715503693]],[[-0.063756078481674,0.029644092544913,-0.057079579681158],[0.068533316254616,-0.029596280306578,-0.04369930177927],[0.17186395823956,-0.049462754279375,-0.020341290161014]],[[0.23617899417877,-0.11014177650213,0.14938589930534],[0.04946307092905,-0.099949777126312,0.14549519121647],[-0.12914703786373,-0.045867901295424,-0.016440495848656]],[[0.13847327232361,0.0678915604949,-0.14828936755657],[-0.014231337234378,-0.017602322623134,-0.077375739812851],[-0.0093438168987632,0.10188430547714,0.077360533177853]],[[-0.02247947268188,-0.013495704159141,0.035893619060516],[-0.072252623736858,0.056108728051186,0.069229058921337],[0.032122604548931,-0.11693142354488,0.026098154485226]],[[-0.030952455475926,0.00064818607643247,-0.090992480516434],[0.0013148006983101,0.024525141343474,0.011015384458005],[0.027600800618529,-0.022917417809367,0.045026294887066]],[[0.12715265154839,0.067696250975132,-0.040027145296335],[-0.028046950697899,-0.093565069139004,-0.093493930995464],[-0.055846054106951,0.05986899882555,0.021914426237345]],[[0.030257185921073,-0.040150489658117,-0.036296185106039],[-0.058667872101068,-0.097305990755558,0.033641222864389],[0.075093604624271,-0.074041575193405,0.0093758972361684]],[[0.033885203301907,-0.048465181142092,0.10692770779133],[-0.046444516628981,-0.095141932368279,-0.060535684227943],[-0.0036409227177501,-0.050592720508575,-0.10053574293852]],[[0.0026435651816428,-0.043709099292755,0.11400743573904],[-0.051099140197039,-0.044421073049307,0.10246673226357],[-0.070574134588242,-0.081949710845947,0.13123877346516]],[[-0.031843766570091,-0.19452479481697,-0.021396761760116],[0.073984615504742,0.11563357710838,-0.063410468399525],[-0.0072921281680465,0.00036116520641372,0.093961365520954]],[[0.00018457390251569,-0.093310035765171,0.13517944514751],[0.016425972804427,-0.021018767729402,-0.05479308962822],[-0.089046366512775,0.12992414832115,0.050759434700012]],[[-0.18518902361393,0.068995229899883,-0.10362084209919],[-0.026352103799582,0.091191001236439,-0.19843871891499],[0.18156526982784,-0.035509318113327,-0.10975047200918]],[[0.010881781578064,0.028419842943549,-0.002440897282213],[-0.085774287581444,-0.054686363786459,-0.0062860134057701],[0.073458679020405,0.076620638370514,-0.060585271567106]],[[-0.06670006364584,-0.035734370350838,-0.06744209676981],[0.017499569803476,-0.014354024082422,-0.082802981138229],[-0.0042319069616497,0.028475876897573,-0.12542697787285]],[[0.091693453490734,0.077733613550663,-0.14328315854073],[0.001365264877677,-0.062951914966106,0.013849915005267],[-0.087885484099388,0.0062198154628277,-0.00099795195274055]],[[-0.19945411384106,-0.1083360016346,-0.14126278460026],[-0.1686886548996,0.054774932563305,-0.026406532153487],[-0.014975170604885,0.076195001602173,0.16622485220432]],[[-0.030705632641912,0.23136211931705,-0.018672941252589],[0.025205779820681,0.055867277085781,-0.018043866381049],[0.05711006373167,0.10741685330868,0.17143154144287]],[[-0.069611385464668,0.085308402776718,-0.08549278229475],[-0.08281671255827,0.094445660710335,0.027819707989693],[-0.082429252564907,0.052373316138983,0.079709634184837]],[[-0.10867290198803,0.018678098917007,-0.041440464556217],[-0.036410104483366,-0.079425625503063,-0.068292997777462],[-0.098044879734516,-0.10707734525204,-0.077371560037136]],[[0.038175649940968,0.0011491065379232,-0.079782724380493],[0.0022902076598257,-0.07491172850132,0.063768409192562],[-0.044338915497065,-0.051719952374697,0.13131977617741]],[[-0.044293478131294,0.056522488594055,0.15532459318638],[-0.062813811004162,-0.06837172806263,0.18747314810753],[-0.10738155245781,-0.12208411097527,0.26285970211029]],[[-0.026257371529937,-0.039656531065702,-0.060352481901646],[0.021407641470432,-0.042923420667648,-0.1738533526659],[0.1070522069931,-0.075092732906342,-0.29131808876991]],[[-0.080659419298172,-0.088532358407974,0.055982653051615],[-0.11773185431957,-0.024492660537362,0.0096833975985646],[-0.13093957304955,-0.063311763107777,0.094450540840626]],[[-0.16915847361088,-0.063928604125977,0.052193135023117],[-0.051339358091354,-0.049433186650276,-0.080835089087486],[-0.062700092792511,-0.054611776024103,-0.084289878606796]],[[0.24883413314819,-0.14026619493961,-0.05180037021637],[0.29506549239159,0.096749767661095,0.00040042051114142],[0.087731584906578,0.13513197004795,0.11737763881683]],[[-0.23413528501987,0.12820264697075,-0.020230112597346],[-0.073711521923542,-0.089918702840805,0.025225916877389],[-0.065812416374683,0.051990143954754,-0.021510567516088]],[[-0.12979951500893,-0.0054779620841146,0.048854522407055],[0.094600558280945,-0.023195525631309,-0.027390221133828],[0.18069125711918,-0.0020332220010459,0.049157753586769]],[[0.0067849732004106,0.0019806488417089,-0.060557812452316],[0.042087815701962,-0.021696988493204,-0.13191814720631],[0.0054158023558557,0.073920041322708,-0.029103657230735]],[[-0.11604599654675,-0.01625282689929,-0.20492660999298],[-0.18286070227623,-0.11171787977219,-0.14220829308033],[-0.10012289881706,0.092299297451973,-0.054650489240885]],[[0.062191244214773,0.0062167453579605,0.013110657222569],[0.012726744636893,-0.0034588074777275,-0.0178102850914],[0.035373110324144,-0.0089878076687455,-0.10790440440178]],[[0.13248720765114,-0.086531847715378,-0.10848469287157],[-0.045707680284977,-0.10038318485022,0.0468884781003],[0.11829520016909,0.047407608479261,0.050172466784716]],[[-0.057743914425373,0.010042135603726,0.0048853377811611],[-0.020415784791112,0.041559867560863,0.0024200491607189],[-0.071217149496078,0.071018658578396,0.0051923273131251]],[[-0.21912364661694,-0.02627382799983,0.10366550087929],[-0.16322292387486,0.050933234393597,0.022115215659142],[0.11813698709011,-0.00075681821908802,0.031377013772726]],[[0.05062098056078,0.058181643486023,-0.02974428422749],[-0.13012246787548,-0.0541259534657,-0.13106751441956],[-0.072391301393509,0.049788895994425,-0.11702835559845]],[[-0.050235815346241,0.063809938728809,-0.013827625662088],[-0.043681185692549,0.016186384484172,0.085000872612],[-0.14135475456715,-0.10534643381834,0.053134821355343]],[[0.14299689233303,0.11287190765142,0.033964395523071],[0.042550779879093,-0.030156034976244,0.023690551519394],[-0.069856204092503,-0.0069511500187218,0.023253438994288]],[[0.031451009213924,0.10518649965525,-0.065873689949512],[0.06648438423872,0.022593110799789,-0.025444693863392],[-0.091856576502323,-0.041502855718136,0.033246822655201]],[[0.1324070841074,0.071492180228233,0.032434053719044],[-0.020628603175282,0.10665493458509,-0.021072797477245],[0.0091381706297398,-0.00969925429672,-0.040795706212521]],[[0.10763511806726,0.052024327218533,-0.05241771414876],[-0.0061915009282529,-0.10914514958858,-0.15295319259167],[-0.058592312037945,0.061206005513668,-0.063224226236343]],[[-0.0037086666561663,0.018483214080334,0.034271314740181],[0.027970440685749,-0.01591769978404,-0.11709978431463],[-0.052049394696951,-0.058501772582531,0.052543312311172]],[[0.038860313594341,-0.052145939320326,-0.035668898373842],[-0.065343342721462,-0.03811302781105,-0.0388018861413],[-0.12854345142841,-0.13037748634815,0.019486067816615]],[[-0.092538096010685,0.071569338440895,-0.051211219280958],[0.030131397768855,0.1737320125103,0.052217841148376],[-0.11349855363369,0.14771336317062,0.079747065901756]],[[0.0071975607424974,0.093800649046898,0.034447055310011],[0.092817798256874,0.012068748474121,0.08376782387495],[0.036784663796425,-0.088188543915749,0.24893879890442]],[[-0.11372535675764,-0.017322044819593,0.029206659644842],[0.12774401903152,-0.015927333384752,-0.0044275047257543],[0.11778485029936,0.011782554909587,-0.047792118042707]],[[-0.045663621276617,0.029034618288279,0.091876901686192],[-0.12697668373585,-0.027538103982806,-0.025446567684412],[-0.14655059576035,-0.1347324848175,-0.12439412623644]],[[0.031031535938382,-0.018029665574431,0.017099723219872],[-0.031275674700737,0.037927556782961,-0.074693061411381],[-0.045071493834257,0.18424156308174,-0.063266433775425]],[[-0.097225748002529,0.094610035419464,-0.077928990125656],[0.038420345634222,0.025901388376951,-0.050322841852903],[-0.0817985907197,-0.088978618383408,0.093569040298462]],[[0.020524466410279,0.11306198686361,-0.057052686810493],[0.1159925237298,-0.034961428493261,0.10802331566811],[0.03485756739974,-0.057143699377775,0.017886184155941]],[[0.084825910627842,-0.0071266847662628,0.11265633255243],[0.096233278512955,-0.13188913464546,0.0082082850858569],[0.025779375806451,0.013971918262541,-0.088463917374611]],[[-0.018661700189114,0.098995625972748,-0.035986445844173],[-0.060124672949314,-0.15006290376186,0.068408221006393],[-0.02434903383255,-0.1072094887495,0.014063501730561]],[[-0.14225108921528,0.016492029651999,0.039809085428715],[-0.021466931328177,0.023584323003888,0.086273744702339],[0.01386583596468,0.0096273859962821,0.13252291083336]],[[0.096914984285831,-0.012671728618443,-0.12901145219803],[-0.043968349695206,-0.19782242178917,-0.077117517590523],[0.32043471932411,-0.12881655991077,0.078987762331963]],[[0.061006762087345,0.029246121644974,0.12386360019445],[0.027525838464499,-0.078315213322639,-0.085025101900101],[-0.03648853674531,-0.083148270845413,0.043221402913332]],[[0.035341985523701,0.16556620597839,-0.018537634983659],[0.002510339487344,-0.010003483854234,-0.030293986201286],[-0.081523433327675,0.010937033221126,0.025563731789589]],[[-0.027199087664485,0.052603740245104,-0.078957945108414],[-0.048982683569193,0.0067063770256937,0.0113086393103],[-0.053484715521336,0.083515480160713,-0.0025537291076034]],[[-0.034218244254589,-0.048395313322544,-0.055632174015045],[-0.036864943802357,-0.013986066915095,0.0060853781178594],[0.095444604754448,-0.050153713673353,0.027392346411943]],[[-0.070971518754959,-0.081326454877853,-0.13632752001286],[-0.04223931953311,-0.006266113370657,0.078028775751591],[-0.049625337123871,-0.027813151478767,-0.20169320702553]],[[0.029178149998188,-0.064047999680042,-0.068371713161469],[0.044261157512665,-0.072128929197788,-0.035304594784975],[0.053679548203945,0.046699248254299,-0.0012242218945175]],[[-0.11196514964104,-0.010813728906214,-0.019969910383224],[-0.20779071748257,0.048418860882521,0.053960278630257],[-0.070095755159855,0.079355508089066,0.043196968734264]],[[0.019149765372276,0.054486259818077,-0.081149563193321],[-0.091387987136841,0.15446946024895,-0.035100821405649],[0.034704461693764,0.037319146096706,0.11809495091438]],[[0.10237024724483,-0.012370550073683,0.032264843583107],[0.19103041291237,0.00121389713604,0.16844525933266],[0.023085337132215,-0.12792198359966,0.059715025126934]],[[0.18478953838348,-0.027588743716478,-0.13646887242794],[-0.012178260833025,-0.046794936060905,-0.096302427351475],[-0.02595636062324,-0.074904687702656,-0.11470916867256]],[[0.058326471596956,-0.042622853070498,-0.064077228307724],[-0.0077554597519338,-0.082421436905861,0.1120777130127],[0.041419301182032,0.01298750936985,-0.046898823231459]],[[-0.25425711274147,0.0077287163585424,-0.012983328662813],[-0.081256411969662,-0.022508623078465,0.03578058630228],[-0.037190176546574,0.021591976284981,0.079881906509399]],[[-0.089576907455921,0.018317809328437,-0.04045931622386],[-0.020353032276034,-0.22491264343262,0.025778044015169],[0.064031220972538,0.1191124022007,-0.14335416257381]],[[-0.068274691700935,0.017231164500117,-0.050900731235743],[-0.014028871431947,-0.034377407282591,-0.10383585095406],[-0.15346585214138,0.14743067324162,-0.029121626168489]],[[0.0025239656679332,-0.047270279377699,-0.0033820930402726],[-0.077811628580093,-0.092450015246868,-0.0084671285003424],[0.041966408491135,0.039252266287804,0.1613842099905]],[[0.056715067476034,-0.034354016184807,0.11264153569937],[-0.074738837778568,0.031575381755829,0.06301661580801],[-0.14746740460396,-0.062255788594484,0.07082349807024]],[[-0.051098987460136,0.061364773660898,-0.020637542009354],[0.054156299680471,-0.023680958896875,0.032024651765823],[0.14884892106056,-0.043427780270576,-0.0068806819617748]],[[0.017422160133719,0.06667909771204,-0.10420173406601],[0.10754766315222,-0.0080691538751125,-0.067520596086979],[0.078589409589767,0.03215267136693,0.074691064655781]],[[-0.037525404244661,-0.036876063793898,-0.0075146425515413],[0.028269868344069,-0.067515909671783,-0.035597838461399],[0.0020869567524642,0.24451580643654,-0.065393164753914]],[[-0.080723389983177,-0.042774669826031,-0.019467679783702],[0.012750967405736,-0.14901581406593,-0.013925242237747],[0.033593874424696,-0.059164728969336,0.011348511092365]],[[0.020462559536099,-0.043305024504662,0.027634542435408],[-0.12332437932491,0.030558988451958,0.14093886315823],[0.07906748354435,-0.0838987454772,0.087127916514874]],[[0.063875429332256,-0.089386269450188,-0.11885799467564],[0.10250498354435,0.036026600748301,-0.028216561302543],[0.11401608586311,0.015510003082454,0.05997509136796]],[[0.0037038724403828,-0.085624672472477,0.13221578299999],[0.012188347987831,-0.07518658041954,-0.031372420489788],[-0.028766157105565,-0.1051674708724,-0.0089112985879183]],[[0.07584185898304,0.069014899432659,-0.12751334905624],[0.094229362905025,0.080094091594219,-0.043953705579042],[0.074698403477669,0.022848231717944,-0.040008414536715]],[[-0.10869724303484,-0.12513689696789,-0.17076307535172],[-0.1316582262516,0.052272368222475,0.10177873075008],[-0.0044127460569143,0.08529456704855,-0.11344723403454]],[[0.07527806609869,0.001577160670422,-0.078908957540989],[-0.19638286530972,-0.076920263469219,0.041049145162106],[-0.001725105335936,0.11396262049675,0.022502077743411]],[[-0.0055139884352684,0.088066503405571,0.076210238039494],[0.0015954406699166,0.024670720100403,-0.072562597692013],[0.10263155400753,0.059148192405701,-0.12153911590576]],[[-0.10453372448683,-0.046716779470444,-0.10210484266281],[0.047387011349201,-0.049746282398701,-0.14576935768127],[-0.047176327556372,0.027438780292869,-0.13513186573982]],[[-0.090382307767868,-0.0074834157712758,0.019468622282147],[-0.083585225045681,-0.013916390016675,0.038995020091534],[-0.00037600443465635,0.054872654378414,0.046360205858946]],[[-0.16319419443607,0.084094844758511,-0.019410684704781],[-0.074556812644005,-0.038969613611698,0.056270398199558],[-0.018376331776381,0.0012697118800133,-0.050433084368706]],[[-0.075936414301395,-0.012830237857997,0.024731097742915],[-0.0033128743525594,0.028674503788352,-0.038680505007505],[-0.019976871088147,-0.084998771548271,-0.085954315960407]],[[-0.13312982022762,0.011357496492565,-0.071388378739357],[-0.07156852632761,-0.090411305427551,-0.070275135338306],[0.18228954076767,-0.090181604027748,0.05073744058609]],[[0.044979207217693,0.018752155825496,0.018736151978374],[-0.057093150913715,-0.028590502217412,-0.053489077836275],[0.099516607820988,0.052573844790459,-0.041902601718903]],[[0.029952531680465,0.017137804999948,-0.069152124226093],[0.09539882093668,-0.10462525486946,-0.035019028931856],[0.012149480171502,-0.046539146453142,-0.077515468001366]],[[0.077071510255337,-0.037904065102339,0.11748333275318],[-0.14509189128876,-0.017018847167492,0.070090942084789],[-0.099461674690247,0.035906303673983,-0.054845135658979]],[[0.048585392534733,-0.14036065340042,0.079132668673992],[0.11213967204094,-0.28497484326363,0.053459543734789],[0.15007668733597,-0.10913059860468,0.038005758076906]],[[0.064724586904049,0.069082252681255,-0.060596011579037],[-0.18727758526802,0.1550714969635,-0.14127534627914],[-0.22925998270512,0.22587977349758,0.025285895913839]]],[[[-0.048563946038485,-0.00040737300878391,0.017543196678162],[-0.022505283355713,-0.01292075868696,0.018349274992943],[-0.0085652954876423,0.0089605525135994,-0.047841992229223]],[[-0.022568060085177,0.082880288362503,-0.017803521826863],[0.0087546929717064,-0.033526197075844,-0.10920109599829],[-0.0077360924333334,-0.015879204496741,-0.021279703825712]],[[0.037387676537037,-0.0054777655750513,-0.033920928835869],[0.0035846019163728,0.0019733151420951,0.04667429253459],[0.024811629205942,-0.066731758415699,0.076531946659088]],[[-0.0018755228957161,-0.081272795796394,-0.041398636996746],[0.0062478133477271,-0.0038617004174739,0.025044361129403],[0.0020042760297656,-0.032573275268078,0.017822505906224]],[[-0.034956879913807,0.0091234836727381,0.02541839890182],[-0.037540957331657,-0.092594988644123,0.045775435864925],[-0.076113097369671,-0.043277580291033,-0.013661291450262]],[[0.011105625890195,0.047202572226524,0.056082855910063],[-0.034269418567419,0.046853218227625,-0.0050889677368104],[-0.051148183643818,0.031764309853315,0.020563093945384]],[[0.022720739245415,0.042988650500774,0.10576463490725],[0.0071464008651674,0.014297702349722,-0.028879081830382],[-0.12399309128523,0.020377384498715,-0.010809208266437]],[[-0.0036808913573623,0.016003793105483,0.041482031345367],[-0.014732777141035,-0.011967982165515,-0.018721716478467],[-0.038649756461382,-0.024861048907042,-0.093678817152977]],[[0.0603445507586,-0.051803667098284,0.06293547898531],[0.0094025023281574,-0.026416599750519,0.026249308139086],[-0.053523220121861,-0.036230783909559,-0.02259680069983]],[[-0.0026586032472551,-0.036868825554848,-0.095899060368538],[-0.0085909068584442,0.0035823180805892,-0.09449727833271],[-0.023917680606246,-0.072543933987617,-0.013132870197296]],[[0.0084728188812733,-0.030588246881962,-0.024500571191311],[0.012862089090049,-0.038315884768963,0.098404370248318],[0.025105237960815,-0.015187089331448,0.018318751826882]],[[-0.017633145675063,0.028295908123255,-0.0076087131164968],[-0.15048556029797,-0.071542091667652,0.032521728426218],[0.040838342159986,-0.014964481815696,0.018075287342072]],[[0.014040530659258,-0.037885904312134,-0.078350774943829],[0.011410218663514,0.012481272220612,-0.018859345465899],[-0.028155410662293,0.075939416885376,0.053351406008005]],[[-0.027276072651148,0.070008896291256,0.038401115685701],[0.034418635070324,0.056021817028522,0.024184890091419],[0.039636678993702,0.034279353916645,0.01068314537406]],[[-0.023953793570399,0.039800353348255,0.022022565826774],[0.092284314334393,-0.024101763963699,-0.011557047255337],[0.028312522917986,0.018496921285987,-0.088740386068821]],[[-0.07898060977459,-0.060936506837606,-0.038162764161825],[0.074118159711361,-0.047838397324085,0.00072419934440404],[-0.029329784214497,-0.0024149715900421,-0.050780292600393]],[[0.086133264005184,-0.060645986348391,-0.037321016192436],[0.015305436216295,0.036893874406815,-0.031082091853023],[0.071685187518597,0.064104825258255,-0.022328900173306]],[[0.028082817792892,0.0079502174630761,0.035442311316729],[-0.046800378710032,0.019051972776651,0.024798793718219],[-0.030723914504051,-0.063334695994854,-0.0020392565056682]],[[-0.025941856205463,0.013214828446507,-0.019613582640886],[-0.014332831837237,0.011322619393468,0.18899729847908],[-0.018289148807526,-0.041926108300686,0.034834399819374]],[[0.0091241709887981,-0.0033038987312466,-0.02942568063736],[0.050599347800016,0.00037652446189895,-0.047987852245569],[0.028494067490101,0.008281690068543,-0.011851035058498]],[[-0.076578184962273,-0.016262045130134,0.019959464669228],[-0.070195950567722,-0.061058651655912,-0.010810443200171],[-0.07282305508852,-0.036971785128117,-0.051403440535069]],[[-0.073120944201946,0.071107961237431,-0.055370386689901],[0.062552429735661,-0.088492646813393,0.0041002072393894],[-0.035230908542871,-0.024193497374654,-0.032811310142279]],[[-0.07166413217783,-0.026177171617746,0.0030070734210312],[0.025203756988049,-0.016529472544789,0.055228788405657],[0.02973117865622,0.013956201262772,-0.0029255179688334]],[[0.0086390627548099,-0.025798233225942,-0.010055359452963],[0.043111644685268,-0.031529143452644,-0.068031623959541],[-0.0083914315328002,0.0023833450395614,5.0540736992843e-05]],[[0.075654402375221,0.072879180312157,-0.038155410438776],[-0.010911664925516,0.02256029099226,-0.053943984210491],[-0.019132098183036,-0.064945191144943,-0.012178014032543]],[[0.032408330589533,-0.029286621138453,0.045174725353718],[0.0091543085873127,-0.025177890434861,-0.015831483528018],[-0.055605988949537,0.027206743136048,0.026466181501746]],[[0.063962139189243,0.048168018460274,0.1184272095561],[0.00611273618415,-0.058322452008724,0.16413700580597],[0.038067273795605,0.052065100520849,0.051630917936563]],[[-0.07815158367157,0.016980789601803,0.029794553294778],[0.075048424303532,0.017637323588133,0.040342837572098],[0.064323849976063,0.06019139289856,-0.020137555897236]],[[0.048823185265064,-0.010701076127589,-0.047485765069723],[-0.049186814576387,-0.015339805744588,0.0026379853952676],[0.05244380608201,0.036738030612469,-0.089346922934055]],[[-0.024781418964267,0.051579520106316,-0.011521722190082],[0.041690923273563,-0.00033722858643159,-0.048176761716604],[-0.030160292983055,-0.035110622644424,-0.027110168710351]],[[0.03350842744112,0.027241617441177,-0.060265183448792],[-0.012523670680821,0.051332265138626,-0.047067053616047],[0.010600234381855,-0.0059699187986553,-0.031481049954891]],[[-0.0041362224146724,0.092144928872585,-0.028104338794947],[0.061804257333279,0.10917802155018,0.079069443047047],[-0.075443401932716,0.040639780461788,-0.0023652422241867]],[[-0.047962293028831,0.046104118227959,-0.019277745857835],[0.062281653285027,-0.01256494410336,-0.021496208384633],[-0.037983015179634,-0.058669440448284,0.012709651142359]],[[-0.01748320646584,0.040302317589521,-0.014556851238012],[-0.102125197649,0.0079905446618795,-0.067848704755306],[-0.050183422863483,0.071188300848007,0.046628557145596]],[[-0.052957370877266,0.035464726388454,0.043581984937191],[-0.0034527017269284,-0.014755317941308,-0.034024283289909],[0.031400382518768,-0.0012617827160284,0.0051581296138465]],[[0.08560723811388,-0.098884977400303,0.10558240115643],[0.071380712091923,-0.051381606608629,-0.0069334502331913],[0.093519300222397,-0.048523243516684,-0.061146520078182]],[[-0.037275813519955,-0.049022614955902,0.019520154222846],[-0.035124201327562,0.0043719247914851,0.01646232418716],[-0.013011907227337,-0.077667571604252,-0.013621591962874]],[[0.017623733729124,-0.064266838133335,0.030400147661567],[0.029641637578607,-0.018950143828988,-0.015717076137662],[0.025643339380622,-0.070099964737892,-0.012605632655323]],[[0.0040255091153085,-0.029952220618725,0.054481040686369],[-0.0053352792747319,-0.08641329407692,-0.033981826156378],[0.034779991954565,0.072753474116325,0.029933849349618]],[[0.02231608889997,0.0005055115907453,0.073857247829437],[0.054526690393686,-0.066741533577442,-0.014592639170587],[0.022297380492091,0.021402418613434,0.005370260681957]],[[-0.028238952159882,0.00010326956544304,-0.041247349232435],[-0.043131411075592,-0.045242886990309,0.020902698859572],[-0.047531213611364,0.0171486325562,-0.0047304974868894]],[[-0.010825244709849,0.031440433114767,0.046056311577559],[0.0068107270635664,0.032884545624256,-0.03142362087965],[-0.050170950591564,0.039428662508726,0.045190446078777]],[[-0.025795998051763,0.0065360255539417,-0.053530383855104],[0.0090119289234281,-0.0034783685114235,0.00051297625759616],[0.044874619692564,0.086116217076778,0.005599566269666]],[[0.095703028142452,0.11369297653437,0.032409157603979],[-0.047526571899652,0.051095351576805,-0.035649165511131],[0.059196073561907,-0.03812150657177,-0.02266520448029]],[[-0.036775354295969,-0.015627890825272,0.00013139429211151],[0.040628880262375,-0.021128376945853,0.089531593024731],[0.029705593362451,0.013956074602902,-0.00023716820578557]],[[0.1048875451088,-0.030582243576646,0.080449365079403],[0.011822774074972,-0.022051509469748,-0.00056898000184447],[0.081521607935429,0.041546430438757,0.10189171880484]],[[-0.0011188247008249,-0.017041331157088,0.077439956367016],[0.0066452152095735,0.017961034551263,-0.096744149923325],[-0.038813754916191,-0.0068012103438377,-0.030438117682934]],[[-0.002503021620214,-0.061923049390316,-0.04404878988862],[0.0027373805642128,0.019756752997637,-0.041923966258764],[-0.0066179041750729,-0.04536871239543,-0.03857109695673]],[[0.021206364035606,0.094998955726624,-0.034590408205986],[0.030479148030281,0.0010126922279596,-0.031923457980156],[-0.024230238050222,-0.0091770505532622,0.001391626894474]],[[2.7352343749953e-05,0.087538033723831,0.10903485864401],[-0.038034614175558,-0.015543601475656,-0.074622087180614],[0.059641513973475,-0.0010844168718904,-0.0025970845017582]],[[-0.059738703072071,-0.015469401143491,-0.081292450428009],[-0.004248125012964,-0.048250284045935,0.031546872109175],[0.037599954754114,-0.067231312394142,0.071294203400612]],[[-0.042125165462494,0.0031207306310534,-0.11402097344398],[0.0017069361638278,0.002247529104352,0.025434700772166],[0.010390582494438,0.012394499033689,0.082242786884308]],[[-0.0099099632352591,-0.020999869331717,-0.032602444291115],[-0.055830299854279,-0.0014321645721793,-0.080065846443176],[-0.019506299868226,0.014054241590202,-0.088537581264973]],[[-0.03721609339118,0.043092589825392,0.019459299743176],[0.10843624174595,-0.049339421093464,0.062875211238861],[-0.099458105862141,0.095077216625214,0.034878846257925]],[[0.027719335630536,-0.0035015081521124,0.023405371233821],[-0.059173379093409,-0.011976064182818,-0.031834833323956],[-0.012398635968566,-0.05661354586482,0.01549079734832]],[[-0.0044862306676805,0.033958926796913,-0.0016416214639321],[0.015503766946495,-0.00064805790316314,-0.02025075443089],[-0.028226995840669,0.015014540404081,-0.069690719246864]],[[-0.016745759174228,0.045983646064997,0.024663811549544],[-0.014527702704072,-0.046789955347776,0.027991840615869],[0.080184899270535,0.059339318424463,-0.033748280256987]],[[-0.0038127196021378,-0.065559811890125,-0.08025449514389],[0.13156694173813,-0.019027899950743,-0.025185313075781],[0.059481296688318,-0.071278430521488,0.047277774661779]],[[0.027942132204771,0.10840881615877,0.04018772393465],[-0.039652165025473,0.040446430444717,0.045141767710447],[-0.06633336097002,-0.049866959452629,-0.036881726235151]],[[0.077070809900761,-0.022847400978208,-0.057619452476501],[0.069685623049736,0.065001361072063,-0.030260285362601],[0.032741811126471,-0.012916431762278,-0.09019610285759]],[[0.024192029610276,0.032899957150221,-0.051025159657001],[0.018881117925048,-0.036990813910961,0.048349622637033],[-0.046568989753723,-0.030901342630386,0.02022516541183]],[[0.043248195201159,0.079419076442719,0.070470415055752],[0.065875671803951,0.068963296711445,0.009367685765028],[-0.042630847543478,0.01926845125854,-0.084118656814098]],[[-0.043974243104458,0.011648872867227,-0.027753915637732],[-0.032536573708057,0.085662297904491,-0.046512093394995],[0.0095134787261486,0.1148996129632,-0.02604410238564]],[[-0.093878529965878,0.016881676390767,0.099766910076141],[-0.052728671580553,0.0005576663534157,-0.020296281203628],[-0.035146698355675,-0.0067854071967304,-0.083045937120914]],[[0.0044391136616468,0.042285647243261,-0.017102520912886],[0.0070645832456648,0.0097900573164225,0.034126117825508],[0.0041708680801094,0.018495183438063,-0.032478287816048]],[[-0.041945658624172,-0.075850315392017,0.069293990731239],[-0.0084059545770288,0.074472233653069,0.087460555136204],[-0.029606822878122,0.039646901190281,0.049060814082623]],[[-0.069561079144478,-0.02058088965714,-0.038568697869778],[-0.035472769290209,-0.027192041277885,-0.060743164271116],[-0.056750848889351,0.049280345439911,-0.068724475800991]],[[0.038964934647083,0.039631135761738,0.01514910813421],[0.026419930160046,0.029167670756578,-0.07630555331707],[-0.051975943148136,-0.039492961019278,-0.018072590231895]],[[0.045463904738426,0.10247980803251,-0.014593904837966],[0.024424528703094,-0.020303206518292,0.0350521504879],[0.049767341464758,0.029235143214464,0.021325409412384]],[[0.011969580315053,-0.047950070351362,0.041938975453377],[0.0053757587447762,0.00066285365028307,0.11743980646133],[-0.04746463149786,-0.005059365183115,-0.1403688788414]],[[0.04598730802536,-0.010528897866607,0.034272886812687],[0.084805645048618,-0.013046211563051,0.024708101525903],[0.041768599301577,-0.073649756610394,0.017581108957529]],[[0.0082431538030505,-0.027702104300261,0.007606256287545],[-0.003718440188095,-0.026506161317229,-0.013144421391189],[0.017746564000845,-0.082034967839718,0.021152537316084]],[[0.078553050756454,0.020363986492157,-0.11856234073639],[0.023652559146285,-0.043488714843988,0.0068838088773191],[0.038295701146126,0.050186205655336,0.010922061279416]],[[0.044087897986174,-0.019148848950863,-0.011352685280144],[-0.042644277215004,0.018450450152159,0.049349885433912],[-0.073299594223499,0.096812546253204,-0.014985539019108]],[[0.0020995347294956,-0.017225105315447,0.071125641465187],[0.11939241737127,0.13131847977638,-0.014091949909925],[-0.048207640647888,0.0004792453837581,0.1241347938776]],[[-0.0063902577385306,-0.044841155409813,-0.055636875331402],[-0.080731481313705,-0.0041436813771725,0.012140969745815],[-0.07708552479744,-0.045377988368273,-0.067546181380749]],[[-0.033412728458643,-0.028206756338477,0.059182967990637],[-0.030428234487772,0.038104724138975,0.040186677128077],[-0.0039184596389532,-0.0043799402192235,0.0072927009314299]],[[-0.049363147467375,0.016613012179732,0.036047972738743],[-0.082691095769405,-0.09965643286705,0.11045881360769],[-0.064361125230789,-0.053722783923149,-0.0037043390329927]],[[-0.011276317760348,-0.037168923765421,-0.022581219673157],[-0.033039189875126,0.022751508280635,0.020312754437327],[-0.11609885841608,-0.069703169167042,-0.07069505751133]],[[0.0083301560953259,-0.059935562312603,-0.061941232532263],[0.071248359978199,0.0050529497675598,0.0023479438386858],[0.014658008702099,0.14536018669605,0.064533807337284]],[[0.092740759253502,-0.035949483513832,-0.0093358336016536],[-0.09563148021698,-0.075929343700409,0.0065836007706821],[-0.012565736658871,0.006780865136534,0.035772528499365]],[[0.063859425485134,-0.075275748968124,0.072065569460392],[0.0014215456321836,-0.016025079414248,0.070272020995617],[-0.0063633448444307,-0.035026643425226,0.005396424792707]],[[0.02796595543623,0.0070705516263843,-0.0026652810629457],[0.011617933399975,-0.011259341612458,0.084721855819225],[-0.15152567625046,-0.012240773066878,-0.040389858186245]],[[-0.039228145033121,0.013784727081656,0.006483506411314],[0.017185971140862,0.058444168418646,-0.036862034350634],[-0.13171164691448,0.033977214246988,-0.042806562036276]],[[-0.023538496345282,-0.02989598736167,0.0040231286548078],[-0.047741763293743,0.0049962033517659,-0.024085253477097],[0.035046454519033,0.0251379404217,-0.00082428264431655]],[[-0.0493387542665,-0.047407995909452,0.048771571367979],[0.03134199231863,-0.10262338072062,-0.0038807513192296],[-0.062556348741055,0.047384176403284,-0.054962169378996]],[[0.0066000414080918,0.056337382644415,0.045533608645201],[-0.022765284404159,-0.058835253119469,-0.073267005383968],[0.069675989449024,-0.042080979794264,-0.019607154652476]],[[0.077839083969593,0.062891066074371,0.018347037956119],[-0.014819454401731,0.084444813430309,-0.012145131826401],[0.0087011978030205,0.0024914087262005,-0.067521907389164]],[[0.033610824495554,-0.072269782423973,-0.019135601818562],[0.017939999699593,0.07591999322176,-0.0222471319139],[-0.020740795880556,0.0059781013987958,-0.049280598759651]],[[0.047139216214418,-0.097432382404804,-0.02084293961525],[0.017236087471247,-0.0053717717528343,0.032116804271936],[-0.040004506707191,-0.038885537534952,-0.01237091049552]],[[0.040961600840092,0.051200050860643,-0.065605312585831],[0.039520345628262,-0.037204023450613,-0.056184384971857],[-0.090816862881184,-0.059920098632574,-0.048411704599857]],[[-0.036073870956898,0.010422047227621,0.065436065196991],[-0.040421955287457,-0.04250530898571,0.010975095443428],[-0.031676422804594,-0.016982700675726,-0.022135820239782]],[[0.0015664345119148,0.044349305331707,0.026453226804733],[-0.010309205390513,-0.031947854906321,-0.00071592896711081],[-0.027450887486339,0.05577440559864,-0.078849270939827]],[[0.0071513392031193,-0.037960316985846,0.040224619209766],[0.057083200663328,0.1351712346077,-0.0089305192232132],[-0.017108727246523,-0.050692427903414,0.04937682300806]],[[-0.047290451824665,-0.0016401950269938,-0.038877625018358],[0.033029090613127,-0.041923478245735,-0.082807280123234],[-0.038957208395004,-0.04618614166975,-0.013116458430886]],[[-0.013929888606071,0.013371902517974,-0.079780340194702],[-0.037746228277683,0.017070798203349,0.024435156956315],[-0.0299754422158,0.080666273832321,0.013038751669228]],[[-0.012232118286192,-0.017253201454878,0.029893497005105],[-0.0074053141288459,-0.046064477413893,0.059405460953712],[-0.046544924378395,-0.0094482190907001,-0.03155030682683]],[[-0.026531789451838,-0.022258749231696,-0.063044093549252],[0.028620602563024,-0.06875903904438,-0.05824014917016],[0.042849253863096,-0.0063057546503842,-0.063582055270672]],[[-0.00047219413681887,0.010071123950183,-0.016283879056573],[0.18104790151119,0.012478263117373,-0.091954097151756],[0.040827222168446,0.026746151968837,-0.063641540706158]],[[-0.049052730202675,-0.031192786991596,0.0038220400456339],[0.092550836503506,0.012712638825178,0.011174453422427],[-0.030117282643914,-0.016695111989975,-0.077942453324795]],[[0.052393238991499,-0.012784495949745,-0.041176360100508],[-0.019174791872501,-0.01701882481575,-0.080731399357319],[0.067942246794701,-0.0070086363703012,0.078565336763859]],[[-0.032591763883829,-0.0058443075977266,0.050471607595682],[0.018396094441414,0.080747537314892,0.00087043683743104],[-0.018521992489696,-0.026893356814981,-0.07013039290905]],[[0.019498398527503,0.076203554868698,-0.0087347570806742],[0.0026977977249771,-0.038342047482729,-0.024397429078817],[-0.0214903075248,0.017322553321719,0.0019109853310511]],[[0.0097802486270666,0.054954435676336,0.015477813780308],[-0.033257964998484,0.0045051029883325,-0.053843211382627],[-0.054128099232912,-0.029677513986826,0.011329311877489]],[[0.019379189237952,0.018144581466913,0.037565726786852],[-0.031741999089718,-0.026623975485563,-0.067447908222675],[0.0091481050476432,0.017916340380907,-0.052804283797741]],[[-0.045951832085848,0.0085966531187296,-0.071870751678944],[-0.031215133145452,0.086134508252144,0.024788837879896],[0.023490842431784,0.098654307425022,0.058145750313997]],[[0.01128567289561,0.053949158638716,-0.0067094149999321],[-0.039238296449184,-0.020048703998327,-0.12221248447895],[0.010519379749894,-0.011289341375232,-0.068582959473133]],[[0.071548208594322,0.036601644009352,-0.0093999151140451],[-0.07724067568779,0.022218560799956,0.071332663297653],[-0.057242877781391,0.0055787428282201,0.013710785657167]],[[-0.027049487456679,-0.020238000899553,0.015129096806049],[0.010624470189214,0.014049276709557,-0.0016782581806183],[-0.01935120858252,0.036142338067293,0.057359702885151]],[[0.090357430279255,-0.087001971900463,0.010115787386894],[0.04118299856782,-0.030554719269276,0.010590865276754],[-0.054088469594717,0.025499697774649,-0.010648086667061]],[[0.017477573826909,0.056628804653883,0.025007031857967],[0.002398585435003,-0.11918463557959,0.058252066373825],[0.037908166646957,0.086453154683113,0.043120488524437]],[[0.032325759530067,0.02107254974544,-0.0017834280151874],[0.039118908345699,0.029399186372757,-0.032056912779808],[-0.063681051135063,-0.030635189265013,-0.076073072850704]],[[-0.009170338511467,0.073905862867832,-0.020859092473984],[0.059331964701414,0.00026066554710269,-0.0085391905158758],[-0.05152714625001,0.0044499062933028,0.0054123839363456]],[[-0.095233969390392,0.055158592760563,-0.036423277109861],[-0.018221702426672,-0.036467652767897,-0.12323845922947],[0.0050164144486189,0.015389204025269,-0.05571161210537]],[[-0.0098731527104974,0.090880259871483,0.20791864395142],[-0.067892126739025,0.018138524144888,0.11370326578617],[-0.038922410458326,0.039692644029856,0.013164069503546]],[[0.13321514427662,0.0042689447291195,0.010378305800259],[-0.048210777342319,0.04286940023303,0.040680717676878],[-0.0011875508353114,0.013725277967751,0.04645449668169]],[[0.011568003334105,-0.0049213166348636,-0.0081916889175773],[0.0237144716084,-0.077840954065323,-0.070091642439365],[-0.0052822879515588,-0.0098054753616452,0.025837307795882]],[[0.10608588159084,-0.035176619887352,-0.010807163082063],[-0.030282666906714,-0.024930166080594,0.12785129249096],[-0.058941841125488,0.0062136161141098,-0.0026294216513634]],[[-0.091123662889004,0.048901375383139,0.0017580571584404],[0.0052576279267669,-0.012791246175766,0.048336986452341],[0.030618652701378,0.0089406399056315,0.050952695310116]],[[-0.0029607221949846,-0.0061893076635897,-0.0039912206120789],[-0.0027704073581845,-0.020312059670687,0.041304264217615],[0.02472035586834,-0.00415901793167,0.050677798688412]],[[0.069788321852684,-0.011110717430711,0.075300961732864],[-0.0243676956743,-0.062283251434565,0.066759660840034],[-0.031138131394982,-0.062775231897831,-0.024012021720409]],[[0.14279299974442,-0.041409563273191,-0.035858556628227],[0.04090116545558,-0.061742845922709,-0.025948479771614],[0.047244995832443,-0.01142455264926,-0.018676670268178]],[[0.0034620848018676,-0.015512503683567,-0.07269161939621],[0.072779007256031,-0.11641050130129,0.012639892287552],[0.075574360787868,0.040262691676617,0.0015084791230038]],[[0.087498918175697,0.0055546313524246,-0.019020535051823],[-0.042229484766722,0.012798069044948,0.069225311279297],[-0.056874230504036,0.00042799182119779,-0.011988380923867]],[[-0.0014373071026057,0.006398010533303,0.11237100511789],[0.0027527487836778,-0.065076686441898,0.16683256626129],[-0.078455895185471,-0.0010234818328172,0.01736580953002]],[[-0.025164350867271,-0.010895289480686,-0.073515839874744],[-0.026576282456517,0.0023046652786434,-0.066113702952862],[0.081840306520462,0.037241876125336,-0.0037375595420599]],[[-0.11463665217161,0.034127939492464,-0.0029287189245224],[-0.013210532255471,-0.045928310602903,-0.001665627816692],[-0.023881945759058,0.017925921827555,-0.085326515138149]],[[0.0091303214430809,-0.039204221218824,0.027297215536237],[0.06048022210598,0.0070070694200695,0.015679713338614],[-0.01967341452837,-0.021305859088898,0.059371344745159]]],[[[0.11872605234385,-0.051444735378027,0.04381375014782],[-0.043632235378027,0.029312374070287,0.077633216977119],[0.025982791557908,0.047633577138186,0.045255437493324]],[[0.048104163259268,0.084721505641937,0.085566282272339],[0.028724174946547,-0.0061727613210678,-0.075655296444893],[-0.0008560343994759,-0.014076760038733,-0.091021120548248]],[[-0.1345534324646,-0.045154187828302,0.064814671874046],[0.079508796334267,0.0038539245724678,0.035168074071407],[-0.026622649282217,0.093629814684391,-0.063903227448463]],[[0.081217586994171,0.065148077905178,0.029582230374217],[-0.022605529054999,0.033490382134914,0.089527569711208],[0.070596054196358,0.050764430314302,0.037925716489553]],[[-0.054488904774189,-0.035457722842693,-0.099760182201862],[0.035675689578056,0.0067824041470885,-0.070840798318386],[0.065102383494377,0.040896914899349,0.071589179337025]],[[0.04740534350276,0.033041901886463,0.0021231127902865],[0.035867031663656,-0.0021997611038387,0.053784910589457],[-0.0083315530791879,-0.020187078043818,0.089123368263245]],[[0.13541427254677,0.06856045126915,0.092336274683475],[0.143250644207,0.080245211720467,0.040850147604942],[-0.072198897600174,-0.04656745120883,0.024763042107224]],[[0.010014385916293,0.061007399111986,0.0037860223092139],[0.041005410254002,0.10489122569561,0.0013434365391731],[0.021273590624332,-0.0075797974132001,-0.054226219654083]],[[-0.048530802130699,-0.022101506590843,-0.00075354386353865],[-7.7618373325095e-05,0.072994880378246,-0.085982069373131],[0.098431751132011,0.020850025117397,-0.03718463331461]],[[-0.045139200985432,-0.030936190858483,0.038251634687185],[-0.0020713552366942,-0.072019852697849,0.012300944887102],[0.028517665341496,-0.022505762055516,-0.011347598396242]],[[0.073571391403675,0.10231179744005,0.06211419403553],[0.010870832018554,0.056145437061787,-0.1200203448534],[0.036897324025631,0.081856817007065,0.054477635771036]],[[-0.012089144438505,-0.0025221055839211,-0.1347640901804],[0.022011075168848,0.095816656947136,-0.041580934077501],[0.050947856158018,-0.027078960090876,-0.011104981414974]],[[0.0079096639528871,-0.052165202796459,0.00431918958202],[-0.00059113278985023,0.0036835705395788,0.031398430466652],[-0.032692175358534,-0.0014330048579723,0.059536945074797]],[[-0.04100165143609,-0.079626254737377,-0.043152686208487],[0.038646589964628,0.0072081219404936,-0.014621954411268],[0.0053205331787467,-0.070860654115677,-0.028155324980617]],[[-0.03158612549305,-0.0013932854635641,0.05597934499383],[0.0064770905300975,0.019409002736211,0.021410204470158],[0.048222616314888,-0.061068058013916,0.01432497613132]],[[-0.033663719892502,-0.071785978972912,-0.030130444094539],[-0.052564736455679,0.024613685905933,0.0081598712131381],[-0.074017256498337,-0.0024493569508195,0.02052541449666]],[[-0.090003170073032,-0.085825636982918,-0.035861004143953],[-0.093185923993587,0.0017024812987074,0.013901488855481],[-0.070953197777271,0.041423391550779,-0.016665671020746]],[[-0.088017180562019,0.029425809159875,-0.077549792826176],[0.093869619071484,0.090392611920834,0.0069697392173111],[0.16552025079727,0.17738080024719,0.0096553321927786]],[[0.014204028993845,0.034672420471907,0.011846031062305],[-0.049764234572649,0.031209914013743,0.011029151268303],[0.017686661332846,0.10455437004566,0.082063302397728]],[[-0.051215160638094,0.0004778073343914,-0.050860747694969],[0.018695453181863,-0.040570072829723,0.0063804471865296],[0.077133432030678,0.063020102679729,-0.0074227126315236]],[[-0.030657384544611,-0.0029673192184418,0.053082320839167],[-0.023537980392575,-0.080164849758148,-0.084832802414894],[-0.031289920210838,-0.11016948521137,-0.11770489066839]],[[0.0032116465736181,-0.056577060371637,0.064615286886692],[-0.026261132210493,0.073782064020634,0.035287767648697],[-0.019288033246994,-0.035456348210573,0.020115397870541]],[[0.0040178396739066,-0.033284366130829,0.074431300163269],[0.021877516061068,0.0024096709676087,-0.0088612772524357],[0.067471779882908,0.025477597489953,0.019141821190715]],[[-0.012234416790307,0.016077499836683,0.056036297231913],[-0.042824890464544,0.013958315365016,0.0085065336897969],[0.028980171307921,-0.062753453850746,-0.021721910685301]],[[-0.059181872755289,0.038186337798834,0.078632362186909],[-0.065069161355495,0.092249125242233,0.016503198072314],[-0.011816680431366,0.089117608964443,0.064631447196007]],[[0.060606274753809,-0.014095639809966,0.057979989796877],[0.013343308120966,0.082759186625481,0.021783201023936],[-0.07593248039484,-0.040728908032179,-0.034200213849545]],[[0.047449868172407,-0.018254624679685,0.00077511626295745],[-0.031814057379961,0.066986382007599,-0.028803624212742],[-0.028820486739278,0.017433527857065,-0.024204755201936]],[[0.03390109166503,0.029121290892363,0.10158414393663],[0.033716414123774,-0.020467106252909,-0.16571505367756],[0.046029482036829,0.044688392430544,-0.048003204166889]],[[-0.026536833494902,-0.010295876301825,0.032332543283701],[-0.022996783256531,-0.15930370986462,0.017958015203476],[0.0063169039785862,-0.06134382635355,0.033275462687016]],[[-0.0082226889207959,-0.061239462345839,-0.17131555080414],[0.047036178410053,0.016755800694227,-0.044235676527023],[-0.079778634011745,0.096199028193951,0.071493804454803]],[[-0.10292617231607,-0.0035983477719128,0.061757419258356],[0.10121542215347,0.069796532392502,-0.031985860317945],[-0.0027827196754515,-0.00339793600142,-0.023332478478551]],[[-0.05278692394495,0.085593849420547,-0.021340999752283],[0.14008638262749,0.012703135609627,0.013637498021126],[0.063097476959229,0.078472524881363,-0.026220059022307]],[[0.10973794013262,0.023641470819712,0.0017844819230959],[-0.0022343802265823,0.14946082234383,0.063351668417454],[0.16000850498676,-0.024600556120276,-0.058977890759706]],[[0.072528511285782,0.094475351274014,0.069825895130634],[-0.075731866061687,0.027630960568786,0.039197783917189],[-0.097209565341473,-0.027040677145123,-0.0048430762253702]],[[-0.066072225570679,-0.02868265658617,0.035642817616463],[0.026473663747311,0.010327629745007,-0.046976394951344],[-0.020742481574416,-0.013142632320523,-0.094025962054729]],[[-0.015935914590955,-0.0086349239572883,0.09105595946312],[0.023050552234054,0.010636880062521,0.033930037170649],[0.017746064811945,-0.021336454898119,0.058130778372288]],[[0.017368486151099,-0.013556865043938,-0.035384394228458],[0.057667851448059,0.05394871532917,-0.0096023604273796],[0.045531209558249,0.050979662686586,0.020758582279086]],[[0.035725485533476,0.12422569096088,0.19412636756897],[0.036386325955391,0.026178732514381,0.023067563772202],[-0.050238329917192,-0.027733726426959,0.054043184965849]],[[0.084875628352165,-0.033826176077127,0.11207151412964],[-0.057431630790234,0.032878827303648,0.047677796334028],[-0.061573155224323,-0.082325167953968,-0.098595082759857]],[[0.072580754756927,-0.0048243482597172,-0.030811311677098],[-0.005140102468431,0.00017723241762724,-0.052644453942776],[0.0091719981282949,-0.025876192376018,0.016627604141831]],[[-0.0044817691668868,-0.027543464675546,0.035685040056705],[0.0057603856548667,-0.065321825444698,-0.037960682064295],[-0.087661445140839,-0.09279203414917,-0.036244932562113]],[[0.050286330282688,0.0061975191347301,-0.029237838461995],[-0.020930847153068,0.073752053081989,0.11602737754583],[0.02038086950779,0.02901017665863,-0.022024877369404]],[[0.022242549806833,0.02261352725327,-0.024835122749209],[-0.077635735273361,-0.077268928289413,-0.14810205996037],[-0.019398646429181,-0.0049353390932083,-0.082090340554714]],[[-0.015563894994557,0.020032471045852,-0.059899564832449],[0.051669254899025,0.010698131285608,-0.010395499877632],[-0.048943221569061,-0.066439718008041,0.0069054975174367]],[[-0.1019210293889,-0.033059310168028,-0.065165638923645],[-0.021182669326663,0.02796677313745,-0.015736818313599],[-0.0069558648392558,0.027319863438606,-0.0032473162282258]],[[-0.047883544117212,-0.06448095291853,-0.041542552411556],[0.014627034775913,0.052533891052008,-0.031567510217428],[-0.020570361986756,0.062158346176147,-0.016840286552906]],[[-0.018784668296576,-0.0083810640498996,-0.073477514088154],[-0.03175899758935,-0.060581006109715,-0.065850906074047],[-0.015879755839705,0.006070151925087,0.036772944033146]],[[-0.095939099788666,-0.089798226952553,-0.06256490945816],[0.041616033762693,0.033575840294361,-0.030599478632212],[-0.014571516774595,-0.060864940285683,-0.054087776690722]],[[0.15253348648548,-0.023579014465213,0.015142711810768],[0.105444021523,0.097917646169662,0.16146019101143],[0.082825601100922,0.011278931051493,0.14758408069611]],[[0.076211214065552,-0.033628731966019,-0.019213242456317],[-0.038312163203955,-0.068053267896175,-0.040689952671528],[-0.084919668734074,-0.035018116235733,-0.0033704158850014]],[[0.11816944926977,-0.049006264656782,-0.046748679131269],[-0.063329480588436,-0.06407830119133,0.062501758337021],[-0.11913595348597,-0.014626665972173,0.049652729183435]],[[-0.038287799805403,0.021955942735076,0.07622092962265],[0.0010006660595536,0.10305742919445,0.13388925790787],[-0.063510842621326,0.021326269954443,-0.031523879617453]],[[-0.026015318930149,-0.012152347713709,-0.053954478353262],[-0.067039780318737,-0.086890086531639,0.031175373122096],[0.049779031425714,-0.038575373589993,-0.022582395002246]],[[0.0058117522858083,-0.074845410883427,-0.01602303981781],[-0.10272518545389,-0.0086442921310663,-0.02672946639359],[0.015094213187695,0.022577540948987,-0.0082640228793025]],[[0.046850129961967,0.054422669112682,0.064386889338493],[-0.002557814354077,-0.0025122268125415,-0.050550386309624],[-0.038414113223553,-0.062232580035925,-0.042993206530809]],[[0.035388983786106,0.060006860643625,0.01182912196964],[0.022530753165483,0.010186411440372,-0.032837435603142],[-0.00054365012329072,0.030209286138415,0.039341270923615]],[[0.04858036339283,0.013826224952936,0.0073429085314274],[-0.039166625589132,0.068445079028606,0.070224560797215],[-0.096637718379498,0.021275451406837,-0.0022582008969039]],[[0.05665647238493,-0.0081272004172206,-0.05235343426466],[-0.019324166700244,-0.023592177778482,-0.032000381499529],[0.025286501273513,-0.059360284358263,-0.056214302778244]],[[-0.093363039195538,-0.091843590140343,-0.1002229899168],[-0.083213686943054,-0.034440517425537,-0.012149940244853],[0.0092684952542186,-0.011303053237498,0.045216426253319]],[[-0.02863840200007,-0.10806241631508,0.041224896907806],[0.021877702325583,-0.016174554824829,0.038683746010065],[0.015444653108716,-0.016698887571692,0.0089895911514759]],[[-0.087259531021118,0.11696584522724,-0.054628033190966],[-0.038894683122635,0.061586257070303,-0.069337397813797],[-0.075472667813301,0.040302336215973,-0.0254842415452]],[[-0.032890651375055,-0.059131607413292,-0.033654078841209],[-0.095641396939754,-0.041652679443359,-0.053188350051641],[0.009170938283205,0.021187409758568,-0.071235157549381]],[[0.044132597744465,0.045805707573891,0.045304473489523],[-0.057847183197737,-0.053900055587292,0.032035313546658],[0.010111912153661,0.021347032859921,-0.060414168983698]],[[0.14973981678486,0.10456393659115,0.0076079098507762],[0.048815902322531,0.1097763478756,-0.050073426216841],[-0.049814410507679,0.081983596086502,0.076354160904884]],[[-0.070370234549046,-0.026565996930003,0.014980348758399],[0.041201803833246,-0.026646327227354,-0.0037988275289536],[0.036364492028952,-0.054292358458042,-0.10296156257391]],[[-0.014840516261756,0.057478692382574,-0.074912846088409],[-0.031651180237532,-0.093480348587036,0.068898282945156],[0.033396244049072,0.005703398026526,-0.01818510890007]],[[-0.04205908626318,0.01426459942013,0.023658838123083],[0.023035077378154,-0.0080855786800385,0.028227381408215],[-0.033698074519634,-0.058168325573206,0.030676005408168]],[[0.025781368836761,0.024113731458783,-0.035303000360727],[0.045271031558514,-0.050236597657204,0.023319298401475],[-0.050887823104858,0.01363861002028,-0.039875209331512]],[[0.015693629160523,-0.0049859466962516,0.028145695105195],[0.0039893966168165,-0.051855452358723,0.026851389557123],[0.0031535576563329,-0.064843766391277,-0.069621481001377]],[[-0.012425209395587,0.071135215461254,-0.080857135355473],[0.065981954336166,-0.043462567031384,0.030889373272657],[0.084947504103184,-0.023594975471497,0.02572506479919]],[[-0.0076029608026147,-0.0089280782267451,0.056623354554176],[0.017618626356125,-0.046777863055468,-0.070333369076252],[-0.042400185018778,0.090230397880077,0.040736123919487]],[[-0.060950614511967,-0.12984938919544,-0.0514264293015],[-0.035929854959249,-0.0032252785749733,0.015329360961914],[0.0392215102911,-0.084652975201607,-0.0070462627336383]],[[-0.064075879752636,-0.052317347377539,0.028762172907591],[-0.041468437761068,0.048997286707163,0.037150576710701],[-0.064814373850822,-0.048214018344879,0.057061620056629]],[[-0.074759609997272,-0.079707309603691,0.025100333616138],[-0.042945995926857,-0.034540891647339,0.056371852755547],[0.04407100006938,0.12173555791378,-0.053101472556591]],[[-0.0024713762104511,-0.075990706682205,-0.062391076236963],[0.046454504132271,-0.030198348686099,-0.044341009110212],[0.018657512962818,0.078818842768669,-0.0046025263145566]],[[-0.048410639166832,0.0031173813622445,-0.011075599119067],[0.075456321239471,0.013581722974777,-0.052168682217598],[0.045232582837343,-0.049288041889668,-0.013177915476263]],[[-0.074712797999382,-0.023730106651783,0.1035313308239],[-0.059214394539595,-0.052654888480902,0.051754660904408],[-0.014678665436804,-0.008897403255105,0.058483354747295]],[[-0.065117046236992,-0.027297250926495,0.1443495452404],[0.00099160603713244,-0.037254460155964,0.11432430893183],[0.0088842371478677,-0.026109771803021,0.067326836287975]],[[-0.024404311552644,0.066535852849483,-0.025539869442582],[0.074593372642994,-0.1666105389595,-0.097206242382526],[-0.038201976567507,0.044669970870018,0.096068605780602]],[[0.068721152842045,-0.028841651976109,-0.06543455272913],[0.074478402733803,0.03736862167716,-0.083370596170425],[0.034134805202484,-0.006671798415482,0.057652782648802]],[[-0.0430006980896,-0.060114402323961,0.053762070834637],[-0.01379594579339,0.04843158647418,0.061634168028831],[-0.018624309450388,-0.032539989799261,0.097940176725388]],[[0.15412148833275,0.1163666844368,-0.030548829585314],[-0.048133444041014,-0.068555675446987,0.038774944841862],[0.23024007678032,-0.034262802451849,-0.023327605798841]],[[0.085724279284477,0.12778057157993,-0.0830949395895],[0.13385218381882,0.0050333132967353,-0.055824980139732],[0.0047658025287092,-0.035402592271566,0.050750263035297]],[[0.047350857406855,0.0088516920804977,-0.032903596758842],[-0.085039064288139,-0.056150160729885,-0.04453594237566],[-0.034893125295639,0.0032166610471904,-0.0027297742199153]],[[-1.0819602721313e-05,0.068786650896072,-0.10937819629908],[-0.02323137037456,-0.049928728491068,0.043272826820612],[0.050269410014153,0.013380400836468,-0.023985866457224]],[[-0.029644258320332,-0.081221789121628,-0.11007861047983],[-0.019889540970325,0.046097207814455,0.026393983513117],[-0.045769654214382,-0.0073455828242004,0.028296580538154]],[[-0.025477066636086,-0.0019019334577024,-0.048117469996214],[0.0047260769642889,0.041941456496716,-0.024742841720581],[-0.02594899572432,0.0026086186990142,-0.037368092685938]],[[-0.064973726868629,0.0068586780689657,0.0095098381862044],[-0.059290591627359,0.026517292484641,0.059000998735428],[0.032278195023537,0.071790486574173,0.060734584927559]],[[-0.09437944740057,0.016617618501186,0.019041687250137],[-0.066084563732147,-0.027004299685359,0.048257749527693],[0.010056728497148,0.048955764621496,-0.0058865710161626]],[[0.036223892122507,0.052278123795986,0.030802372843027],[-0.0077156717889011,-0.021428231149912,0.066711835563183],[-0.035063233226538,-0.064074143767357,-0.0096027199178934]],[[0.064828410744667,0.05552289634943,0.089655086398125],[0.046129908412695,-5.715097358916e-05,0.035460997372866],[-0.038236495107412,0.04567177593708,0.088431902229786]],[[-0.051331147551537,-0.03155866637826,0.0048094838857651],[-0.036961387842894,-0.069777198135853,-0.072339788079262],[-0.060963366180658,0.063524439930916,-0.04655472561717]],[[0.019565826281905,-0.060584481805563,-0.012173557654023],[0.019295297563076,0.00046310445759445,0.053652621805668],[0.063684962689877,-0.027022151276469,0.0088937534019351]],[[-0.027941796928644,0.059747572988272,-0.033969018608332],[-0.10960207879543,-0.050485033541918,-0.0007129730656743],[-0.043182704597712,-0.027576247230172,-0.04424923658371]],[[-0.028154995292425,0.0018724275287241,-0.11544249951839],[-0.065607443451881,-0.015197100117803,0.04499239102006],[0.042495060712099,0.03295186534524,0.018955189734697]],[[-0.034999810159206,-0.063487626612186,0.0062913321889937],[-0.033399533480406,-0.023203814402223,-0.0059800487942994],[-0.049695085734129,-0.07444054633379,-0.0095231914892793]],[[0.093588709831238,0.072432421147823,-0.029384627938271],[0.031733892858028,-0.028609041124582,-0.014586864039302],[-0.0089612221345305,0.040694396942854,0.015400578267872]],[[0.026011051610112,0.028975097462535,0.12974165380001],[0.071001641452312,0.026757430285215,0.12538358569145],[0.04326943680644,0.02286191098392,-0.024706041440368]],[[0.0017611869843677,-0.017317265272141,-0.069989398121834],[-0.10419581830502,0.032033815979958,-0.020180149003863],[0.050792288035154,0.032210905104876,0.017342044040561]],[[-0.0098515609279275,0.020172253251076,0.011856940574944],[-0.03340196236968,0.095411889255047,0.00132149271667],[0.15260528028011,0.10137918591499,0.10519473254681]],[[-0.15054976940155,-0.12825344502926,0.0043212822638452],[-0.10914100706577,-0.025367375463247,0.015190046280622],[-0.059103589504957,-0.031749792397022,-0.02759874984622]],[[0.072341054677963,0.065659925341606,0.036059785634279],[0.14146494865417,0.096997208893299,0.090760633349419],[0.23197381198406,0.039837263524532,0.10550907254219]],[[0.018130015581846,-0.059705495834351,0.0013497336767614],[0.090402118861675,0.02076349966228,0.085990786552429],[0.059713631868362,0.05060551315546,0.044097974896431]],[[0.016941437497735,0.039639592170715,0.050473906099796],[-0.0425705909729,0.063648924231529,0.021426074206829],[-0.14073447883129,-0.0040297508239746,-0.017001589760184]],[[-0.027552429586649,0.018833385780454,-0.061828400939703],[0.041108656674623,-0.043920904397964,-0.0033427320886403],[-0.0068658911623061,0.017523156479001,0.12350756675005]],[[-0.027968691661954,-0.0039022236596793,-0.11070039868355],[0.021315971389413,0.045442000031471,-0.074058786034584],[0.042312666773796,-0.055189061909914,-0.024114146828651]],[[0.016702866181731,-0.050434049218893,0.058297663927078],[0.11127955466509,0.079152464866638,-0.016164997592568],[0.043451383709908,-0.015172575600445,-0.12757049500942]],[[-0.064245037734509,0.013999270275235,-0.021142326295376],[-0.067463584244251,0.044240042567253,-0.038000870496035],[0.022040421143174,-0.07634261995554,0.044861696660519]],[[-0.062668055295944,0.0029000653885305,0.071522355079651],[0.1179352030158,0.032079566270113,0.043323911726475],[0.039839822798967,0.0107531407848,-0.026487654075027]],[[0.016697958111763,0.028912471607327,-0.021281637251377],[0.13831986486912,0.04471742734313,-0.0022255016956478],[-0.01654864102602,-0.020409375429153,0.015517803840339]],[[0.070852339267731,-0.060064032673836,-0.012588448822498],[-0.0049647646956146,0.0020566442981362,-0.072962611913681],[-0.021785574033856,0.036530684679747,-0.056200500577688]],[[0.078657381236553,0.04331574216485,-0.0044784778729081],[0.059033270925283,-0.034411139786243,0.06959991902113],[0.020866870880127,-0.039685305207968,-0.026950122788548]],[[-0.022543089464307,0.080600656569004,-0.035532124340534],[-0.0005094480002299,0.043033294379711,0.016983425244689],[0.0076127727515996,0.0085284588858485,-0.030294476076961]],[[-0.035129271447659,-0.0418497659266,-0.0021476547699422],[-0.032433696091175,-0.045633714646101,0.036972872912884],[-0.055974993854761,-0.065232023596764,-0.036936454474926]],[[0.13563804328442,0.018129266798496,0.024599306285381],[0.074672780930996,-0.032142464071512,0.0031159946229309],[0.047625966370106,0.031611327081919,0.05930445715785]],[[-0.0057092471979558,-0.029551446437836,-0.0019452581182122],[-0.0052783181890845,-0.0020644611213356,0.06993892043829],[-0.0070799882523715,-0.050981186330318,0.019300758838654]],[[-0.095722176134586,0.06497398763895,-0.013934037648141],[-0.039334859699011,-0.056492410600185,0.11389078944921],[-0.13666415214539,0.055924631655216,0.071219250559807]],[[0.031734574586153,0.051375035196543,0.056234501302242],[-0.037076953798532,0.0054651470854878,-0.059670194983482],[0.0084601119160652,0.026075068861246,0.12992298603058]],[[0.033904880285263,-0.027587816119194,-0.062101468443871],[-0.00063003931427374,-0.029139399528503,0.0067744445987046],[0.041976939886808,0.096922785043716,-0.021693907678127]],[[0.018347168341279,-0.02366853877902,-0.04260503873229],[0.071709789335728,0.072855040431023,0.017953474074602],[0.098047040402889,-0.072344683110714,0.0804108902812]],[[0.0032126870937645,-0.020397799089551,-0.058061558753252],[0.017932279035449,0.033389750868082,0.0066062668338418],[-0.014431498013437,0.026879260316491,0.013313257135451]],[[0.094633989036083,0.068401776254177,-0.0013332689413801],[0.044917985796928,-0.059522625058889,0.062645696103573],[0.073578417301178,-0.068314962089062,0.018549006432295]],[[0.036797594279051,-0.047149423509836,-0.040363475680351],[-0.03986394032836,-0.037451826035976,-0.0043881726451218],[0.048693235963583,-0.028114702552557,-0.092864349484444]],[[-0.076029881834984,0.045772381126881,-0.015100874006748],[-0.0085541838780046,0.0022633895277977,0.047438491135836],[0.021758954972029,0.052364647388458,0.037388868629932]],[[0.015975531190634,-0.013694827444851,-0.0025479667820036],[0.13511094450951,0.014931401237845,-0.11374823749065],[0.12136691063643,0.026814132928848,0.0059054745361209]],[[-0.088383048772812,0.057118065655231,-0.034224409610033],[-0.013227583840489,0.0019864335190505,0.037495706230402],[-0.050628174096346,0.00018735842604656,-0.11305487900972]],[[0.036633487790823,0.021353153511882,0.10152596980333],[0.067648693919182,0.089170277118683,-0.002095730509609],[-0.049340005964041,0.096736393868923,-0.042909469455481]],[[0.040377020835876,0.11010799556971,0.027823131531477],[-0.051743697375059,0.014264791272581,-0.088008925318718],[-0.034430488944054,-0.045996885746717,0.083537839353085]]],[[[0.006581456400454,0.066118866205215,0.032795261591673],[-0.0085183223709464,0.01935207284987,0.084287032485008],[0.13947555422783,0.1695936024189,-0.065432779490948]],[[-0.099378496408463,0.024458782747388,-0.0015333661576733],[-0.090343557298183,-0.064823858439922,0.055215556174517],[-0.062238574028015,0.040751688182354,0.018420042470098]],[[-0.0096291750669479,-0.014994486235082,0.056303936988115],[-0.00065068760886788,0.034099653363228,0.1147441342473],[0.13802747428417,0.027177939191461,0.094492048025131]],[[-0.0748191177845,0.013176660053432,0.14893998205662],[-0.078684687614441,-0.031781211495399,0.090077616274357],[-0.080803826451302,-0.072163261473179,0.084009118378162]],[[-0.093307755887508,0.025217911228538,0.010621059685946],[-0.036389403045177,0.036219216883183,0.041571579873562],[-0.032514650374651,-0.0092297354713082,0.040605153888464]],[[-0.047647804021835,-0.056824274361134,0.059937175363302],[0.0044906428083777,-0.069072552025318,0.08118999004364],[-0.20643676817417,0.018794720992446,0.058898381888866]],[[-0.02969978004694,-0.022413214668632,0.062215309590101],[-0.0058474144898355,0.04521307349205,0.015630681067705],[0.035417217761278,-0.0097145512700081,-0.095991410315037]],[[-0.0065733455121517,-0.050767853856087,-0.060491822659969],[0.13312518596649,-0.011737706139684,0.12530119717121],[0.019990082830191,0.018802987411618,0.010726250708103]],[[-0.10635881870985,0.058478590101004,-0.00089180446229875],[-0.1400665640831,0.012638972140849,-0.01896533370018],[-0.057091522961855,0.012276225723326,0.085330605506897]],[[-0.00046717881923541,0.018908502534032,-0.0063456636853516],[0.045543689280748,0.0017997083486989,-0.045164059847593],[-0.053569935262203,-0.085489749908447,0.0018342508701608]],[[0.13622318208218,0.12543112039566,0.047724414616823],[-0.05532406270504,0.080087140202522,-0.07212008535862],[0.021475648507476,0.099361151456833,0.061163011938334]],[[0.024468239396811,0.01134473271668,-0.04200541228056],[-0.0052080457098782,0.078463315963745,0.068220965564251],[-0.012084818445146,-0.038079924881458,0.016182998195291]],[[0.034784313291311,-0.021526886150241,-0.077371016144753],[0.083164028823376,-0.038000911474228,-0.017181620001793],[-0.0063454937189817,-9.3321701569948e-05,-0.034149512648582]],[[0.015038831159472,-0.060577630996704,0.013415359891951],[-0.0003104905190412,-0.064647831022739,-0.023536346852779],[0.061660651117563,-0.080305263400078,-0.020266901701689]],[[-0.0092259226366878,0.0049440851435065,-0.027940297499299],[0.058416999876499,0.030673326924443,-0.0068352064117789],[-0.17849124968052,-0.03483721986413,0.049099937081337]],[[-0.12910316884518,0.045408148318529,-0.02625866048038],[-0.14992280304432,0.027440253645182,0.06799079477787],[-0.011060896329582,-0.073501661419868,-0.084799006581306]],[[-0.0055280937813222,-0.031185194849968,0.0081005766987801],[0.018080219626427,0.043266125023365,0.069999694824219],[-0.0085806110873818,0.039627850055695,0.0087825022637844]],[[-0.055471666157246,0.023066895082593,-0.0097624203190207],[-0.03567073866725,0.10845027863979,-0.035955127328634],[-0.061546500772238,-0.018064392730594,-0.14847625792027]],[[-0.046968027949333,0.0066277799196541,0.078557938337326],[-0.073841847479343,-0.010242627933621,0.019383329898119],[-0.044469904154539,0.074394799768925,0.032302536070347]],[[-0.0097028855234385,0.0047692386433482,-0.063108846545219],[-0.014104383997619,-0.060838740319014,-0.077380903065205],[-0.0061041717417538,0.014648011885583,0.075708232820034]],[[-0.0045377295464277,-0.027429260313511,-0.01735014282167],[0.071856923401356,0.067862555384636,-0.06259161233902],[-0.096094653010368,-0.084672339260578,0.0012582733761519]],[[-0.036051001399755,-0.058818403631449,0.10431998968124],[0.050370559096336,-0.031144069507718,-0.017786402255297],[-0.010626637376845,-0.097806364297867,0.058619875460863]],[[0.071019940078259,-0.024947853758931,0.041589993983507],[-0.073768444359303,-0.02036452293396,0.056174855679274],[-0.1031991392374,0.056433167308569,0.041538238525391]],[[0.097151979804039,-0.0074984054081142,-0.029661497101188],[-0.019771572202444,0.04250255972147,-0.011694119311869],[-0.048707168549299,-0.055680226534605,0.00084807304665446]],[[-0.13000327348709,-0.0015283920802176,0.039152603596449],[-0.055742532014847,0.10537408292294,0.04835107922554],[-0.045745361596346,0.073066763579845,0.034624349325895]],[[0.06258974224329,0.06241212412715,0.014376614242792],[-0.019237359985709,0.06163776665926,-0.01264373306185],[0.019399041309953,0.12846361100674,-0.0088119683787227]],[[0.11543326824903,0.022253181785345,-0.044865373522043],[0.050832509994507,0.041675813496113,-0.051596608012915],[0.025235518813133,0.002338255988434,-0.084322392940521]],[[0.033748298883438,0.084199756383896,-0.021280048415065],[0.06745495647192,-0.11025456339121,-0.040228359401226],[0.052976131439209,-0.0086285322904587,0.018456857651472]],[[0.0076440274715424,-0.04093898460269,-0.062366779893637],[0.068092882633209,-0.094429761171341,0.045919883996248],[-0.064457848668098,0.0022592276800424,0.083232551813126]],[[-0.054094988852739,-0.014678133651614,-0.074649564921856],[-0.093574352562428,-0.052768424153328,0.0022153514437377],[0.024285791441798,0.025595365092158,0.0087792398408055]],[[0.093384101986885,-0.031119644641876,-0.094402939081192],[0.14361523091793,-0.043519001454115,-0.0077911056578159],[0.0068829953670502,0.022539235651493,0.022230954840779]],[[-0.065004020929337,-0.070008121430874,-0.024161560460925],[0.068863026797771,-0.012632146477699,-0.12544985115528],[-0.0474007204175,-0.059935923665762,0.030714878812432]],[[0.079390853643417,0.040869031101465,0.073334641754627],[-0.0070069283246994,-0.035594314336777,-0.022353585809469],[-0.00052111787954345,0.038849014788866,0.016022408381104]],[[-0.022732460871339,0.063021808862686,-0.0030364047270268],[0.016924669966102,0.009804155677557,-0.079345233738422],[-0.0024790649767965,0.040751781314611,0.076721802353859]],[[-0.061739772558212,-0.08959286659956,-0.060000278055668],[-0.032638493925333,0.099063545465469,-0.0044318838045001],[0.1049724817276,-0.080686792731285,-0.0006804145523347]],[[0.035539899021387,-0.048528980463743,0.015371171757579],[0.11423280835152,-0.0074348468333483,0.077819146215916],[0.094279892742634,-0.0082306219264865,0.020536728203297]],[[0.054014731198549,0.00097788614220917,0.037608128041029],[-0.0093177417293191,0.084216244518757,0.0072295456193388],[-0.030799482017756,0.045937430113554,-0.011581792496145]],[[0.010081211104989,-4.2162133468082e-05,-0.085536435246468],[0.18192018568516,0.048374973237514,-0.032720524817705],[-0.046014428138733,-0.027505021542311,-0.096822127699852]],[[0.036673743277788,0.061689134687185,-0.0016659965040162],[0.024713983759284,-0.063918314874172,-0.10627920180559],[-0.013168780133128,-0.0020711950492114,-0.11128058284521]],[[-0.094074487686157,0.059477142989635,0.014570752158761],[-0.027056243270636,0.044621713459492,-0.15923835337162],[-0.036509562283754,0.024778202176094,-0.04572244733572]],[[0.036184549331665,0.040563829243183,-0.039671801030636],[0.11657691001892,-0.0033733262680471,0.045541726052761],[-0.060891341418028,-0.0081653734669089,0.014049337245524]],[[0.027716660872102,0.03506787493825,0.11914286017418],[0.12080405652523,0.075723685324192,-0.0060518616810441],[0.073165535926819,0.0040792683139443,0.059416402131319]],[[0.054821312427521,0.026600621640682,-0.083252191543579],[-0.022075453773141,0.039772525429726,0.071261614561081],[-0.0060226544737816,-0.059148572385311,0.08757296204567]],[[-0.0019699400290847,0.033331319689751,0.043164558708668],[-0.0065418849699199,-0.029964784160256,-0.019708544015884],[0.031539626419544,-0.047612082213163,-0.00048653088742867]],[[0.019485585391521,-0.017556726932526,0.15610130131245],[0.035680487751961,0.095366194844246,0.07363422960043],[0.094974473118782,0.06170317903161,0.0032485076226294]],[[-0.05755714699626,-0.075402997434139,0.10283488035202],[-0.036645710468292,-0.049970366060734,0.063226625323296],[-0.034934844821692,0.066038496792316,0.05922219902277]],[[-0.048364300280809,-0.066521316766739,-0.12446712702513],[-0.057553865015507,-0.079965926706791,0.065655410289764],[-0.017112303525209,-0.060139108449221,-0.044111620634794]],[[-0.004388069268316,0.075472339987755,-0.041134726256132],[-0.027077542617917,-0.012186552397907,-0.0022788492497057],[0.014530533924699,-0.094824247062206,-0.018111443147063]],[[0.21430426836014,-0.031741738319397,-0.024036699905992],[0.081993520259857,0.08737501502037,0.044204778969288],[0.0078039527870715,0.050727795809507,0.10183070600033]],[[0.022929584607482,-0.0010238846298307,0.07856522500515],[-0.017497358843684,-0.057781349867582,0.010178699158132],[0.0062737269327044,-0.053616527467966,-0.051279090344906]],[[-0.074013620615005,-0.039460953325033,-0.039061482995749],[-0.19087214767933,-0.06225062161684,-0.11159164458513],[-0.16006216406822,0.021836318075657,0.050512049347162]],[[-0.010736147873104,0.017446713522077,0.10918457061052],[0.052469972521067,0.047832228243351,0.05036623030901],[0.037126272916794,-0.011562699452043,0.0092421937733889]],[[-0.077546194195747,-0.001386039191857,-0.016675654798746],[-0.051212541759014,-0.0059040440246463,0.0010306462645531],[0.042296715080738,0.027037439867854,0.048716202378273]],[[-0.035285703837872,0.00062427029479295,-0.065199784934521],[-0.10007417947054,0.0027139075100422,0.026558974757791],[0.074618518352509,0.0062403082847595,0.072719715535641]],[[-0.020225286483765,0.10905910283327,0.02858885936439],[-0.030768278986216,-0.044152367860079,0.072110451757908],[-0.099601201713085,0.043179176747799,0.060886416584253]],[[0.064512148499489,-0.047899015247822,-0.0095084616914392],[0.013788885436952,0.0096732284873724,0.072012089192867],[0.015571204945445,0.0017998032271862,-0.015885919332504]],[[-0.047129906713963,-0.012415227480233,0.070000156760216],[0.013098359107971,0.043201845139265,0.0079235350713134],[0.12690263986588,-0.033389586955309,0.019368099048734]],[[0.035452086478472,-0.16171212494373,-0.013430240564048],[-0.036851447075605,-0.10684674978256,-0.032842237502337],[-0.023140836507082,0.043095137923956,-0.076922461390495]],[[0.0055488580837846,-0.0020376073662192,-0.03355073928833],[0.062576532363892,-0.027866749092937,-0.018869614228606],[-0.039652191102505,-0.05445858091116,-0.063711196184158]],[[0.059171453118324,-0.031431585550308,-0.016980560496449],[0.001621954375878,-0.028323361650109,0.067547030746937],[-0.035097301006317,0.043454453349113,0.032472517341375]],[[-0.13951924443245,-0.037495922297239,-0.050636608153582],[-0.11456745117903,-0.069132797420025,-0.037310689687729],[-0.087237194180489,0.0049183899536729,-0.17798857390881]],[[-0.085809610784054,0.0053038029000163,0.022227646782994],[-0.081531949341297,0.0019077513134107,0.02852139621973],[-0.077367447316647,-0.12156348675489,0.015256314538419]],[[0.083077490329742,-0.010039418935776,0.082713522017002],[0.06905410438776,0.069084592163563,0.0057507180608809],[-0.012180102057755,-0.034006979316473,0.055666394531727]],[[0.13239400088787,0.061546433717012,-0.0074782883748412],[0.0061725052073598,-0.070089690387249,0.031590115278959],[0.12489197403193,-0.10027351975441,0.077096000313759]],[[0.0062713674269617,0.020294373854995,0.09308011084795],[0.0018985436763614,0.026329450309277,0.015953598544002],[0.055299893021584,-0.016466729342937,0.10596118122339]],[[0.10729678720236,-0.045793451368809,-0.037803240120411],[0.15858153998852,-0.047287199646235,-0.027095763012767],[0.083789937198162,-0.0084948521107435,0.072844088077545]],[[0.10717924684286,-0.068498358130455,0.0028246096335351],[-0.039999164640903,0.0090386997908354,-0.040804900228977],[-0.06613802164793,0.03557800501585,0.0059422133490443]],[[-0.027179295197129,-0.043915566056967,-0.031210009008646],[0.10337772965431,-0.00076097890269011,-0.10935421288013],[-0.017432555556297,-0.0090691661462188,-0.00069694191915914]],[[0.016301192343235,-0.077386252582073,0.030566619709134],[0.047587707638741,0.041224885731936,0.014723531901836],[0.021659582853317,-0.056053161621094,-0.039794471114874]],[[-0.060642048716545,-0.034670006483793,-0.019321298226714],[0.014739219099283,-0.019085811451077,-0.0098559772595763],[0.0022441891487688,-0.067178845405579,-0.014400105923414]],[[0.048169668763876,0.0040792333893478,0.090679310262203],[-0.015470674261451,-0.0088851703330874,0.035316605120897],[0.12148293107748,0.108372785151,-0.053883198648691]],[[-0.035815112292767,-0.069814518094063,-0.058382589370012],[-0.089080601930618,-0.06783826649189,0.016911270096898],[-0.0018369411118329,-0.023258827626705,0.007081865798682]],[[-0.054001823067665,-0.070237509906292,0.025223698467016],[-0.071367040276527,-0.0098246820271015,-0.0084544075652957],[-0.044755164533854,0.070444159209728,-0.035368904471397]],[[-0.049661666154861,-0.0087890047580004,0.0078563448041677],[0.07649327069521,-0.035997349768877,0.044916838407516],[0.054959692060947,-0.077028207480907,-0.010533329099417]],[[-0.07244561612606,0.0025396561250091,0.0047899992205203],[0.073064252734184,-0.01890348084271,-0.0096112750470638],[0.044597737491131,0.01945860683918,0.087123550474644]],[[-0.037888873368502,0.0010652360506356,0.039928030222654],[0.097565464675426,-0.057358555495739,-0.035022258758545],[0.026012158021331,-0.014563210308552,-0.040591988712549]],[[-0.0096418680623174,-0.069870047271252,0.052328862249851],[0.045674432069063,0.00090969423763454,0.017325859516859],[-0.015029050409794,0.039803557097912,-0.016676230356097]],[[-0.094480253756046,-0.029870765283704,0.094713993370533],[0.0061483741737902,-0.0036902145948261,0.069387853145599],[0.025706278160214,0.030896218493581,0.06832218170166]],[[-0.0049533834680915,-0.020674886181951,-0.077863417565823],[-0.035038325935602,0.0032230096403509,0.035690687596798],[0.026649815961719,0.07252486795187,-0.014974599704146]],[[0.10123600810766,-0.0079290000721812,-0.021851336583495],[0.074829176068306,0.10306788235903,0.0005114744999446],[0.059413503855467,-0.025699436664581,-0.0063021117821336]],[[-0.078066885471344,-0.029251616448164,0.045892465859652],[-0.088600553572178,-0.036727268248796,-0.047934602946043],[0.023287644609809,-0.037850115448236,-0.012967095710337]],[[0.0079509001225233,0.0017561871791258,0.090067952871323],[0.061681367456913,-0.074434153735638,-0.005419235676527],[-0.024228569120169,0.015654254704714,0.028080895543098]],[[0.1265944391489,-0.049861878156662,-0.031315021216869],[-0.0060151303187013,-0.02664160169661,0.10543287545443],[0.071949161589146,0.037031278014183,-0.043071907013655]],[[-0.0717978104949,-0.019791230559349,-0.13074211776257],[-0.059065107256174,0.033155333250761,-0.058695167303085],[-0.14894424378872,0.14570686221123,0.0064080483280122]],[[0.03620732575655,-0.01231558714062,0.12350688874722],[-0.074374534189701,0.027832973748446,0.02990709617734],[0.065283454954624,0.065520912408829,0.01997172087431]],[[0.031324587762356,-0.037853308022022,0.017674092203379],[-0.028447920456529,-0.064097568392754,0.047676656395197],[0.21757534146309,0.011105202138424,0.054105751216412]],[[-0.093302473425865,0.034655261784792,0.13470695912838],[0.028691401705146,0.026895074173808,-0.034348554909229],[-0.12613017857075,0.035892799496651,-0.0057854563929141]],[[0.044484492391348,-0.0029517845250666,0.10132327675819],[-0.0077776620164514,0.026794107630849,-0.085045203566551],[0.047005094587803,0.092062197625637,0.039052754640579]],[[0.091195076704025,-0.027208900079131,0.031935147941113],[0.02231558598578,0.051387820392847,-0.0073045520111918],[-0.062371004372835,0.039865348488092,0.0069933729246259]],[[0.077813513576984,-0.0062585435807705,0.039320684969425],[-0.026137920096517,0.067538551986217,-0.05694480240345],[0.019812827929854,0.071945801377296,0.042524088174105]],[[0.088659085333347,0.14893269538879,0.058936640620232],[-0.0021435099188238,0.05886947363615,0.065609954297543],[-0.0086078634485602,0.056992515921593,0.065057471394539]],[[-0.062545463442802,0.059393018484116,-0.035403825342655],[0.051542118191719,-0.027401611208916,-0.0013072192668915],[-0.021327139809728,-0.0096923364326358,0.052360907196999]],[[0.044034231454134,-0.076986111700535,0.036233272403479],[-0.021560257300735,0.01937665976584,-0.029892163351178],[0.081284210085869,-0.029978612437844,-0.067371502518654]],[[-0.055444061756134,0.0079434439539909,-0.018169775605202],[-0.089646130800247,-0.0048041283152997,0.077515237033367],[0.066581174731255,-0.046682361513376,0.011103419587016]],[[-0.0086081186309457,0.0091857993975282,-0.0062144915573299],[0.11394974589348,0.10844606161118,-0.065589345991611],[0.10384161770344,-0.12203264981508,0.065950624644756]],[[-0.025426154956222,-0.093771755695343,-0.080830596387386],[0.14247380197048,0.015143934637308,0.0073624774813652],[0.097534701228142,0.17917712032795,0.016232559457421]],[[0.12286533415318,0.097868859767914,-0.083852969110012],[0.0052330289036036,-0.059350416064262,-0.0061026094481349],[0.052911508828402,-0.042685516178608,-0.081239685416222]],[[0.012571298517287,-0.0094498842954636,-0.024800939485431],[0.041963495314121,0.014023514464498,-0.039994835853577],[0.066612526774406,0.038327634334564,0.0012918831780553]],[[-0.10438277572393,0.053670447319746,-0.0090959444642067],[-0.14998854696751,0.06987638771534,-0.010245659388602],[-0.092500746250153,0.029499359428883,0.007948150858283]],[[-0.059853471815586,0.092558555305004,-0.08162934333086],[-0.04811055213213,-0.047656856477261,0.01295336522162],[0.044992014765739,-0.049168236553669,-0.0098182084038854]],[[-0.15513800084591,0.04852694272995,0.074714533984661],[-0.18798857927322,0.084395848214626,0.056930553168058],[-0.088522531092167,0.097889997065067,0.015948131680489]],[[-0.025429610162973,0.0078421495854855,0.060888521373272],[0.18107993900776,0.020040988922119,0.14044682681561],[0.12157461792231,0.17200887203217,-0.03825519233942]],[[0.14250287413597,0.016572160646319,0.04186175391078],[0.066722735762596,-0.036970432847738,0.093810446560383],[0.086868785321712,-0.03829712420702,-0.0022909892722964]],[[-0.018530838191509,-0.014514940790832,0.023989610373974],[-0.11004111915827,-0.043833207339048,-0.032094672322273],[-0.013194262050092,-0.043726909905672,-0.0087636979296803]],[[-0.0027725310064852,0.067290715873241,-0.014540824107826],[0.057344231754541,0.021558908745646,0.0027445387095213],[0.043619055300951,-0.081738516688347,0.024935791268945]],[[0.051668558269739,-0.017561769112945,-0.026917262002826],[0.076416365802288,0.033640973269939,0.0086300494149327],[0.17181903123856,0.048877466470003,0.11634012311697]],[[0.030405703932047,0.093155339360237,-0.055035673081875],[-0.085010550916195,0.064339764416218,-0.086755186319351],[0.055364340543747,0.16669265925884,-0.039618294686079]],[[-0.096564464271069,-0.045476507395506,0.059807918965816],[0.027764787897468,-0.061755184084177,0.085931740701199],[0.066881038248539,-0.069340221583843,0.007121519651264]],[[-0.0068319356068969,-0.0050556645728648,-0.12284649908543],[0.043507847934961,0.13764627277851,0.027554849162698],[-0.032800380140543,0.036874577403069,0.030343921855092]],[[0.025558387860656,0.053488235920668,0.13740164041519],[0.024236848577857,0.035376034677029,0.033789452165365],[-0.0083325682207942,-0.021618293598294,0.030426912009716]],[[0.090254500508308,-0.083777852356434,-0.035592772066593],[0.049856223165989,-0.02108963765204,-0.10619836300611],[0.006355079356581,0.028989896178246,0.034075681120157]],[[-0.024411506950855,-0.065235584974289,-0.082852952182293],[0.082395352423191,-0.0041365413926542,-0.017135489732027],[0.11382804065943,0.018067449331284,0.042867965996265]],[[-0.036582808941603,0.045885812491179,0.003988629207015],[-0.039024543017149,0.022496001794934,0.01003341563046],[-0.06902439147234,-0.017451679334044,0.061201710253954]],[[0.097300484776497,-0.056895665824413,0.057516157627106],[0.0091536333784461,-0.033954232931137,0.01401056163013],[0.067643873393536,0.012131003662944,0.043651480227709]],[[0.1299017816782,0.016388185322285,-0.0010741888545454],[0.10158132761717,-0.055948741734028,0.073032565414906],[0.072189651429653,-0.037996042519808,0.14992454648018]],[[0.11785467714071,-0.11359114944935,-0.031286980956793],[0.029582962393761,0.029170140624046,-0.087066203355789],[-0.0013656938681379,0.014596465043724,-0.063566565513611]],[[-0.031884077936411,-0.044930480420589,0.0015715202316642],[-0.037147242575884,-0.0028534242883325,0.013429001905024],[-0.026969285681844,0.014241429045796,-0.080977015197277]],[[0.0039461343549192,-0.018147014081478,0.06959006935358],[0.024116100743413,0.012855714187026,0.013971704058349],[0.13491490483284,0.00063366693211719,0.066641263663769]],[[0.063760414719582,-0.00038604674045928,-0.012119484134018],[0.085945099592209,0.034969013184309,-0.052877906709909],[0.12045446783304,0.031281530857086,0.050700310617685]],[[0.075176745653152,0.072896100580692,0.010030562058091],[-0.036509715020657,0.08204160630703,0.075187109410763],[-0.010125461965799,0.090469636023045,-0.14795511960983]],[[0.019922291859984,0.018631199374795,0.052763056010008],[-0.071632616221905,-0.012861485593021,0.050312224775553],[-0.054747287184,0.051169790327549,0.033354789018631]],[[0.050938732922077,-0.04103384912014,0.081019900739193],[0.06860289722681,-0.12331116199493,0.054720714688301],[-0.0080112749710679,-0.11781594902277,0.1686727553606]],[[0.089755363762379,-0.12022725492716,-0.064558148384094],[-0.015022083185613,0.024815060198307,-0.051421694457531],[-0.1503179371357,0.14277809858322,-0.0075588263571262]],[[-0.068569771945477,0.028221912682056,-0.016663681715727],[-0.072890125215054,-0.01838456466794,0.05110440030694],[-0.12270317226648,0.1332044005394,0.067394517362118]],[[0.058662340044975,0.048777103424072,0.098415732383728],[0.041470017284155,0.025070926174521,0.036447666585445],[0.086010441184044,-0.047824002802372,-0.034192901104689]],[[0.080408625304699,0.034054048359394,-0.036521434783936],[-0.056870236992836,-0.059216547757387,0.021349674090743],[-0.23592773079872,-0.073314294219017,0.032945297658443]],[[0.1711512953043,0.10800509899855,0.056292440742254],[-0.0076436293311417,0.091766282916069,-0.065185345709324],[0.021891528740525,0.088118463754654,-0.057056948542595]],[[-0.068784356117249,0.028029691427946,0.074042670428753],[-0.021426558494568,0.086961045861244,0.15560993552208],[0.034497454762459,-0.065304651856422,0.088358238339424]]],[[[0.1073670014739,-0.14384472370148,-0.14099606871605],[-0.062925972044468,-0.015726324170828,0.039583697915077],[-0.077107526361942,-0.1334693133831,0.14943873882294]],[[-0.0040012779645622,0.0039501767605543,-0.099954441189766],[0.13327127695084,0.02686906978488,-0.22589416801929],[-0.11452682316303,0.036466848105192,0.080586858093739]],[[0.099125482141972,0.023283014073968,-0.018844708800316],[0.12968108057976,-0.129493907094,0.17071801424026],[0.047194730490446,0.071039870381355,0.10861567407846]],[[-0.067013375461102,-0.1815493106842,0.023227941244841],[0.12076846510172,-0.010641888715327,-0.21207815408707],[0.14987106621265,0.092108346521854,-0.023377103731036]],[[0.047547731548548,-0.051488239318132,0.10814193636179],[0.16069975495338,0.037401057779789,0.23880915343761],[0.19795617461205,-0.10636552423239,-0.080942451953888]],[[-0.025382500141859,-0.0074732452630997,-0.070294193923473],[-0.062402628362179,-0.048867028206587,0.061311058700085],[0.093160375952721,-0.03346773982048,0.11761796474457]],[[0.063600778579712,0.075110591948032,0.0042739920318127],[-0.12043730914593,-0.0035445571411401,-0.073297083377838],[-0.15177787840366,0.071465812623501,0.071701161563396]],[[-0.055419318377972,-0.13082459568977,0.018852105364203],[0.054641164839268,0.1235388815403,0.13573978841305],[-0.0077403504401445,0.044660519808531,0.15638029575348]],[[0.01655494235456,-0.021160367876291,-0.044343959540129],[0.02833203971386,0.11143510788679,0.01613942719996],[0.0094534140080214,-0.092674985527992,-0.03999911993742]],[[-0.22224009037018,-0.019061014056206,0.22635930776596],[-0.15228305757046,0.072682075202465,-0.1479656547308],[0.00073090149089694,0.0093113733455539,0.042865451425314]],[[-0.050525061786175,0.0044598267413676,0.10634403675795],[0.012448142282665,0.073072992265224,0.057673998177052],[-0.045090813189745,-0.20532786846161,-0.11318574100733]],[[0.0061044618487358,0.11361942440271,-0.079156391322613],[0.13363695144653,0.10425516217947,-0.14286336302757],[0.0089478427544236,0.038407776504755,-0.12045222520828]],[[0.082887232303619,-0.014435453340411,-0.18377700448036],[0.011181841604412,0.047658313065767,0.15572285652161],[0.081242255866528,-0.1170489937067,-0.085414797067642]],[[-0.051007237285376,-0.048465363681316,-0.0528026483953],[-0.065548501908779,-0.010781455785036,-0.060534801334143],[-0.024485450237989,0.020433099940419,-0.14507375657558]],[[0.0090826898813248,-0.13644523918629,-0.20583686232567],[0.052867539227009,0.032085072249174,-0.11299737542868],[0.068969205021858,-0.1405703574419,-0.24519938230515]],[[0.084894515573978,-0.073467060923576,-0.047140322625637],[0.066920258104801,0.016784768551588,-0.036575064063072],[0.011949012055993,-0.13299515843391,-0.1984004676342]],[[0.0035591670311987,0.03577782958746,0.042598325759172],[-0.13770325481892,0.0028862338513136,-0.027616610750556],[0.068369202315807,0.15455801784992,0.13474602997303]],[[-0.036448828876019,0.091889247298241,0.25060310959816],[-0.011224939487875,-0.044010397046804,0.055340580642223],[-0.30137729644775,-0.051914013922215,0.10167031735182]],[[-0.066368795931339,0.14261572062969,-0.11595281213522],[-0.064634017646313,0.080431692302227,-0.05238825827837],[-0.010932619683444,0.083053067326546,-0.15037617087364]],[[-0.10785979777575,0.14726339280605,0.051307078450918],[-0.087293282151222,0.086557388305664,0.12034806609154],[0.045755255967379,-0.0043057561852038,-0.22793845832348]],[[-0.17012929916382,-0.26765897870064,0.067588493227959],[-0.094391971826553,-0.22701443731785,0.12333350628614],[0.22850574553013,-0.0049419500865042,-0.09368110448122]],[[-0.063629366457462,-0.072670631110668,-0.15626199543476],[0.11705247312784,0.030678229406476,0.10402923822403],[0.038255997002125,0.080173633992672,-0.2511730492115]],[[0.040557783097029,0.025911811739206,0.051442865282297],[-0.045112028717995,-0.011486309580505,-0.11167962104082],[0.16620054841042,0.2263822555542,-0.025208119302988]],[[-0.0075573236681521,0.099789172410965,-0.26687273383141],[0.088490843772888,0.035380505025387,-0.26264744997025],[-0.30571705102921,0.052865471690893,-0.34060773253441]],[[-0.20115159451962,-0.16237561404705,-0.089129395782948],[0.025593154132366,0.10973536968231,0.081199571490288],[-0.057530019432306,-0.014778546988964,0.008424467407167]],[[-0.15970049798489,0.011325905099511,0.093156389892101],[-0.049208421260118,0.11730943620205,0.041875347495079],[-0.0074982573278248,0.27548694610596,0.10946110635996]],[[-0.25836479663849,0.0059946835972369,0.039697460830212],[-0.18074251711369,-0.0050797546282411,0.12120778858662],[-0.2128251940012,-0.017493054270744,0.11708704382181]],[[0.095259808003902,0.0030238372273743,-0.075775325298309],[0.011783584021032,-0.030100995674729,-0.12433615326881],[0.22407698631287,0.048165544867516,-0.1333194822073]],[[-0.065944999456406,0.057712115347385,-0.067672587931156],[-0.14827771484852,-0.13324575126171,-0.01484380569309],[-0.027195516973734,-0.11763968318701,-0.06158784031868]],[[0.090378008782864,-0.073784835636616,0.072427846491337],[0.039639972150326,-0.13630846142769,0.083641357719898],[0.042497400194407,-0.051795601844788,0.11642219871283]],[[0.027289355173707,0.21421629190445,0.1049247533083],[-0.17964619398117,-0.088192895054817,0.095326758921146],[0.0094747105613351,-0.0081491367891431,-0.0091552855446935]],[[0.10922434180975,0.062864080071449,0.013577258214355],[-0.055826332420111,-0.12672902643681,-0.013951872475445],[0.057621460407972,-0.0053529259748757,-0.12741203606129]],[[0.0018650513375178,0.019863732159138,-0.014128111302853],[-0.10744507610798,-0.033334795385599,0.12874756753445],[-0.22037251293659,0.067534610629082,-0.01338928937912]],[[0.13108012080193,0.06610281765461,-0.074006952345371],[0.12304527312517,-0.12160580605268,0.036684952676296],[-0.11047293245792,-0.22864471375942,-0.013320846483111]],[[-0.014082289300859,-0.19139911234379,-0.0019125463441014],[0.025135593488812,-0.024708142504096,0.058048911392689],[-0.091950654983521,0.1035066768527,-0.12905833125114]],[[0.24419963359833,0.081542156636715,-0.02022272720933],[-0.030900567770004,-0.042337443679571,-0.01461080275476],[-0.094781182706356,0.075349003076553,0.036554921418428]],[[-0.036690440028906,0.072551913559437,0.034222401678562],[-0.0090479450300336,0.068597733974457,-0.11264254152775],[-0.00027534540276974,0.0070214518345892,-0.10047496110201]],[[-0.04143101349473,-0.0090102897956967,-0.046776447445154],[0.033142287284136,0.14905112981796,0.023862870410085],[-0.14852567017078,0.081678912043571,-0.037359960377216]],[[-0.048410218209028,-0.11960514634848,-0.013942526653409],[-0.18660412728786,0.1286963224411,-0.052872240543365],[-0.12407776713371,-0.013331688940525,-0.031124446541071]],[[-0.0082251811400056,0.050529006868601,0.060026559978724],[-0.028777936473489,-0.072847984731197,-0.1136576384306],[-0.093449763953686,-0.18218667805195,-0.044380277395248]],[[0.059661708772182,0.027118725702167,-0.097715564072132],[-0.037239946424961,0.066617608070374,-0.098516270518303],[0.28065630793571,-0.044496089220047,-0.35545870661736]],[[-0.10479126125574,-0.039012562483549,0.032345715910196],[-0.11596711724997,0.055047318339348,-0.033353745937347],[0.12660005688667,0.24119135737419,-0.032992955297232]],[[0.19975115358829,0.022055808454752,-0.0083069363608956],[-0.089293882250786,-0.095169514417648,-0.029260342940688],[-0.18386666476727,-0.13020320236683,-0.13722836971283]],[[-0.040110498666763,-0.10145645588636,-0.0064569376409054],[-0.048966366797686,-0.092110812664032,0.12038987129927],[0.0093435849994421,0.015159513801336,-0.024858243763447]],[[0.27414238452911,0.073489435017109,-0.053141433745623],[0.095267400145531,-0.025960361585021,0.019670335575938],[0.098331734538078,0.021950343623757,0.073114350438118]],[[0.029847396537662,0.057500958442688,-0.024545269086957],[0.057285625487566,-0.014609217643738,0.099987894296646],[0.080019950866699,-0.035971075296402,0.25440868735313]],[[-0.12723465263844,-0.13104282319546,-0.13215591013432],[-0.0026528190355748,0.12073989957571,-0.10835601389408],[-0.11647446453571,0.02838958799839,-0.036595921963453]],[[0.019390683621168,0.012293174862862,0.14862670004368],[0.035321824252605,-0.089894533157349,-0.078916817903519],[0.070960782468319,0.077041834592819,-0.057477734982967]],[[0.20124933123589,0.084011420607567,0.025629675015807],[-0.0026687651406974,0.00092415849212557,-0.0073294914327562],[-0.078955829143524,0.071397103369236,-0.064994029700756]],[[-0.072321467101574,-0.014315620996058,-0.095796503126621],[0.012970769777894,-0.030615657567978,-0.18743479251862],[0.025030167773366,0.074042089283466,-0.1377112865448]],[[-0.094901047646999,0.086579360067844,0.085902534425259],[-0.090025782585144,-0.046307649463415,-0.12316694110632],[-0.019208412617445,-0.067511916160583,-0.026205198839307]],[[-0.044371966272593,-0.15358307957649,0.27141657471657],[0.26056322455406,-0.022502038627863,0.19240641593933],[0.000459014903754,0.0089388079941273,-0.035597629845142]],[[0.10917276889086,-0.019781457260251,-0.08070857077837],[-0.0080101983621716,-0.032573636621237,-0.015132498927414],[0.070776000618935,-0.016235088929534,-0.017719740048051]],[[0.013674579560757,0.14245872199535,-0.0014778234763071],[0.19037564098835,0.059821747243404,-0.01695866510272],[0.02426921389997,-0.050509516149759,-0.069440178573132]],[[-0.076891623437405,-0.081972196698189,-0.065617479383945],[-0.027831543236971,0.070749267935753,-0.025600623339415],[0.14811137318611,0.065741665661335,-0.14422281086445]],[[-0.031178690493107,-0.0071522435173392,0.081992298364639],[-0.015853574499488,-0.011792565695941,-0.14585562050343],[0.015850326046348,0.11130955070257,0.052538797259331]],[[0.024218199774623,-0.12886063754559,-0.0074968175031245],[-0.1310149282217,0.012009111233056,0.063402600586414],[-0.05446369946003,0.085851229727268,0.082977458834648]],[[-0.13657350838184,-0.09447342902422,-0.053590226918459],[-0.01783112809062,-0.10604316741228,-0.098038129508495],[-0.022839304059744,-0.092708371579647,-0.0062618460506201]],[[-0.072617344558239,-0.018047040328383,-0.07329697906971],[-0.1410059183836,-0.06063748896122,-0.20489911735058],[0.030472166836262,0.17054916918278,0.076947592198849]],[[0.045787934213877,-0.00046950558316894,-0.049216274172068],[0.061724785715342,-0.010745720937848,-0.028706395998597],[0.12365612387657,-0.095103420317173,0.11865083128214]],[[-0.14922797679901,0.051496658474207,-0.0038912470918149],[-0.088449329137802,-0.0056332270614803,0.026016134768724],[-0.10823767632246,0.014082110486925,0.012445660308003]],[[0.12936906516552,0.021439919248223,0.11601925641298],[0.049565941095352,0.016936047002673,0.010665261186659],[-0.30184268951416,-0.054873149842024,0.025091093033552]],[[0.12449164688587,0.028565617278218,0.11253532022238],[-0.14515474438667,0.025886457413435,0.073710471391678],[0.32462453842163,0.10837991535664,-0.030485851690173]],[[0.0068410621024668,-0.025822406634688,0.14474931359291],[0.061512339860201,0.093322955071926,-0.11548107862473],[0.091671660542488,0.031718980520964,0.010358755476773]],[[0.042718134820461,0.13655389845371,-0.29636690020561],[-0.062279041856527,0.0057153236120939,-0.17237484455109],[0.014512929134071,-0.061920341104269,0.085579432547092]],[[0.25561413168907,-0.11717664450407,-0.059356302022934],[0.044443100690842,0.1170579791069,0.11093091219664],[-0.008430665358901,0.1039674282074,0.12243769317865]],[[0.24011661112309,0.24838636815548,0.30028638243675],[0.14980660378933,0.11361756175756,0.023698925971985],[-0.040330369025469,0.056635409593582,0.05963583663106]],[[-0.13334973156452,-0.028148816898465,-0.0018776759970933],[0.018671067431569,0.021042613312602,0.0075435964390635],[-0.16128252446651,0.080097787082195,-0.11268615722656]],[[0.16682036221027,-0.1193168759346,0.077569171786308],[-0.10432334989309,-0.088895492255688,0.068785347044468],[0.032026614993811,-0.073427855968475,0.018310718238354]],[[-0.049482654780149,0.078517012298107,0.0067866067402065],[-0.023661695420742,0.076213665306568,0.068431548774242],[0.055011682212353,-0.041255049407482,0.077650956809521]],[[-0.02187243103981,-0.0187075920403,0.23948158323765],[-0.034341517835855,-0.044269569218159,-0.083769373595715],[-0.061622966080904,0.083169728517532,0.10248274356127]],[[-0.067030146718025,0.033985771238804,0.0069298474118114],[0.12935818731785,0.025690592825413,-0.056639831513166],[-0.0081456666812301,-0.010491409339011,-0.12615822255611]],[[-0.19031429290771,-0.14927622675896,-0.09188698977232],[-0.025625990703702,-0.0040168268606067,-0.099215939640999],[-0.23437425494194,0.092950955033302,0.052901688963175]],[[-0.13524754345417,-0.010020182467997,0.14764370024204],[0.011550563387573,0.056462481617928,0.03771123662591],[-0.068181619048119,0.070641331374645,0.036587484180927]],[[-0.072100758552551,0.049800552427769,-0.052822384983301],[0.024451488628983,-0.019469380378723,0.01810709387064],[0.10771100223064,0.07811001688242,-0.12166471034288]],[[0.039260540157557,0.052866522222757,0.30946660041809],[-0.087322443723679,0.053054437041283,0.2076558470726],[0.069169856607914,0.15583811700344,0.13600166141987]],[[-0.030092637985945,0.17375326156616,0.073780208826065],[-0.016320711001754,-0.093101359903812,0.041792873293161],[0.17329807579517,-0.061502180993557,-0.1071517765522]],[[0.0081084370613098,-0.20013645291328,0.14131706953049],[0.062367152422667,0.0024211027193815,0.07175151258707],[-0.032333802431822,0.081041917204857,0.1662073135376]],[[-0.28651285171509,0.00069173279916868,0.17231644690037],[-0.1771679520607,-0.032466735690832,-0.074999585747719],[-0.13539639115334,0.053188558667898,0.01326141692698]],[[0.18851719796658,0.056518882513046,0.025425430387259],[0.084995925426483,-0.032473869621754,0.085261039435863],[0.12466756254435,-0.086399577558041,0.089351303875446]],[[0.056493636220694,0.10333729535341,-0.08250879496336],[-0.09174357354641,-0.12284046411514,-0.1831369549036],[-0.031536526978016,0.004965987522155,-0.22536467015743]],[[-0.094451367855072,0.058670237660408,0.14360409975052],[-0.0085381977260113,0.060471795499325,0.0312340259552],[0.00064652197761461,0.1133119687438,-0.0087639922276139]],[[-0.084462851285934,0.12620116770267,0.052218470722437],[0.11823613941669,0.092466093599796,-0.066438645124435],[0.021090857684612,0.0017846890259534,0.05198247730732]],[[-0.10615173727274,-0.17906872928143,-0.05781763792038],[0.11155324429274,0.052869908511639,0.11219762265682],[0.18994647264481,0.05094550549984,-0.0637152120471]],[[0.014419043436646,-0.056974772363901,0.054348770529032],[-0.091017916798592,-0.1148042678833,-0.097424574196339],[0.2637505531311,-0.036704488098621,-0.058092467486858]],[[0.11402574181557,-0.12047999352217,-0.15475504100323],[-0.028651794418693,-0.0045383130200207,0.22656600177288],[-0.042715989053249,-0.04297786578536,-0.072246320545673]],[[0.010016054846346,-0.057000707834959,0.0043914304114878],[0.030072685331106,0.011737214401364,-0.0019609024748206],[-0.0049118688330054,0.07239244133234,-0.015422583557665]],[[-0.017755806446075,0.044435974210501,0.11180502176285],[0.083275474607944,0.01420280802995,0.04580994695425],[0.22472091019154,-0.039656084030867,-0.10801348090172]],[[0.047587297856808,-0.10088037699461,-0.053291920572519],[0.1740892380476,-0.080512404441833,-0.11390193551779],[0.058864433318377,0.11168146878481,-0.19914379715919]],[[0.044584527611732,-0.00065509753767401,-0.16220079362392],[-0.086105346679688,-0.043207466602325,0.099478550255299],[-0.12388110160828,0.0020873863250017,-0.036761768162251]],[[-0.011866200715303,-0.067330181598663,-0.049276780337095],[0.033718470484018,0.41339337825775,0.060909293591976],[0.0020142118446529,0.043035198003054,-0.030355194583535]],[[0.02186743170023,-0.13551290333271,-0.22714814543724],[-0.034608125686646,0.034953832626343,-0.18230649828911],[0.086216412484646,-0.012877451255918,0.074475824832916]],[[0.01604331843555,-0.012132768519223,0.035810813307762],[0.1609515696764,0.010329196229577,0.026856794953346],[0.060532823204994,-0.067660003900528,0.015705123543739]],[[-0.12019633501768,-0.15908662974834,-0.10629599541426],[-0.1842143535614,-0.21592842042446,-0.021289475262165],[0.0036563437897712,-0.18204064667225,-0.010872419923544]],[[-0.025507075712085,-0.083546109497547,0.08545508235693],[0.12171786278486,0.19789154827595,-0.012277732603252],[0.14687819778919,0.18448215723038,0.039731994271278]],[[-0.041945978999138,-0.21913729608059,-0.16115282475948],[0.11727128177881,-0.11006785929203,-0.041664894670248],[0.06694919615984,-0.25784412026405,0.13111887872219]],[[-0.18801999092102,0.11256486922503,0.14827539026737],[-0.03971378877759,0.10996563732624,-0.026796355843544],[0.13512589037418,-0.024006970226765,-0.17529088258743]],[[0.035773988813162,-0.14418865740299,-0.016499847173691],[0.0052527212537825,0.18257176876068,0.1751339584589],[-0.19852702319622,0.020731050521135,0.10527338087559]],[[0.064207307994366,0.075478747487068,0.0094139063730836],[0.18382760882378,-0.041565518826246,-0.047811072319746],[0.058441463857889,-0.038488160818815,-0.17198088765144]],[[0.026623753830791,0.10223752260208,0.11997224390507],[-0.040664326399565,0.077225930988789,-0.0086583578959107],[-0.035597112029791,-0.025007907301188,0.028089214116335]],[[-0.13403637707233,-0.081716626882553,-0.060406267642975],[0.075879417359829,-0.034345477819443,-0.12228034436703],[-0.27600252628326,0.031055612489581,-0.0059301848523319]],[[0.32827487587929,0.099998474121094,-0.012696492485702],[0.22531239688396,0.096820898354053,-0.063187338411808],[0.27680638432503,0.14212563633919,-0.089856304228306]],[[-0.039086736738682,-0.15338543057442,-0.066781714558601],[0.054799128323793,0.11898546665907,0.035303507000208],[0.12257710844278,-0.15158319473267,-0.082226976752281]],[[0.02939073368907,-0.0018692857120186,-0.11181804537773],[0.0035851923748851,0.089791648089886,0.071141324937344],[0.14282493293285,0.18786709010601,0.0012372849741951]],[[-0.28287094831467,-0.13221986591816,-0.064052887260914],[-0.027602463960648,-0.0024919263087213,0.17863336205482],[-0.08293853700161,0.09848740696907,0.21134069561958]],[[0.17917388677597,0.24911357462406,-0.1629760414362],[0.014446876011789,-0.060296788811684,-0.085172459483147],[-0.038446418941021,-0.044304315000772,0.09373864531517]],[[0.01728855445981,-0.031153390184045,0.028519010171294],[-0.082434847950935,-0.12415330857038,0.071529388427734],[0.06978802382946,-0.015287114307284,-0.24710635840893]],[[-0.073790192604065,-0.15906921029091,-0.17665114998817],[-0.046571079641581,0.011525995098054,-0.03892095759511],[0.066723123192787,0.036554746329784,-0.10387472808361]],[[0.0040159001946449,0.020797275006771,0.062410317361355],[0.1082181930542,-0.068396173417568,0.052863977849483],[0.13585957884789,-0.13336433470249,0.06971001625061]],[[0.17152011394501,-0.0047042882069945,-0.048623647540808],[0.054831851273775,-0.094734340906143,-0.16463689506054],[0.0013172827893868,-0.088373623788357,0.031830362975597]],[[-0.098654977977276,0.070804707705975,-0.04066901281476],[0.031785029917955,0.1392970085144,0.033816892653704],[-0.0502570271492,-0.027987001463771,-0.069136135280132]],[[-0.04658430442214,-0.17181257903576,0.024269480258226],[-0.037815693765879,-0.072349958121777,0.063523814082146],[-0.036678403615952,0.01461947709322,0.033305544406176]],[[0.14682738482952,0.082030840218067,-0.14047279953957],[0.014613713137805,0.041377428919077,0.07063540071249],[-0.018928375095129,-0.11209547519684,-0.13738699257374]],[[-0.12123208492994,0.01203325856477,0.14321230351925],[-0.12381676584482,0.0074359178543091,0.084664769470692],[-0.061651106923819,-0.13708791136742,-0.1363285779953]],[[0.22300803661346,-0.06033356115222,0.14200982451439],[-0.078256629407406,-0.15957364439964,0.067032307386398],[-0.10745987296104,-0.012280927039683,0.027495335787535]],[[0.022184390574694,-0.0057766577228904,-0.0058412686921656],[-0.036696795374155,-0.083959378302097,0.056542109698057],[-0.13656201958656,-0.080654054880142,0.15254628658295]],[[0.14495448768139,-0.014421887695789,-0.032043118029833],[0.010671659372747,-0.032982606440783,0.01883302628994],[-0.25117483735085,-0.0046212445013225,-0.072500623762608]],[[0.040358319878578,0.061775717884302,0.040845301002264],[0.0023705884814262,0.094173938035965,0.038400430232286],[0.038830615580082,0.03281344473362,-0.08914016187191]],[[-0.15017679333687,-0.12362976372242,0.03900720179081],[-0.0056807668879628,-0.10249730944633,-0.074653066694736],[0.066470190882683,0.072295740246773,0.074213169515133]],[[0.19990369677544,0.19642743468285,-0.042504131793976],[0.056066442281008,-0.066303759813309,0.028770193457603],[-0.094350457191467,-0.0050433301366866,-0.018468121066689]],[[0.11397793143988,0.23066517710686,0.21295131742954],[0.045328047126532,0.0073390058241785,-0.11223898082972],[0.14004008471966,0.19173161685467,0.11671082675457]],[[0.023130537942052,0.13244968652725,-0.00014444005500991],[0.07012514770031,0.067664198577404,0.0064564705826342],[0.21134582161903,-0.04721387848258,0.071558617055416]],[[-0.10557373613119,-0.066961362957954,-0.046896673738956],[-0.044939775019884,-0.10654720664024,0.034805230796337],[-0.14826327562332,-0.1051292270422,-0.02724307961762]],[[-0.12350986897945,0.033301815390587,0.072820030152798],[-0.071911670267582,0.06005135551095,0.03782944381237],[-0.23798626661301,0.048965837806463,-0.035241030156612]],[[-0.11908300220966,0.047345463186502,-0.064573474228382],[0.10882487148046,0.016914812847972,-0.059331968426704],[0.074288509786129,-0.18823359906673,0.17295631766319]],[[0.083642698824406,-0.028017809614539,0.061591420322657],[-0.051287714391947,0.14990980923176,-0.04812790080905],[-0.28085526823997,0.045631896704435,0.015368992462754]],[[-0.015930656343699,0.015853984281421,0.053231842815876],[0.0074835135601461,0.018745141103864,-0.062096633017063],[-0.021009946241975,-0.10578522086143,0.020741112530231]],[[0.11204095184803,0.077685318887234,0.022106908261776],[-0.034806061536074,0.00083117658505216,0.0394516736269],[-0.0026920330710709,-0.032336380332708,-0.044515453279018]]],[[[0.033815242350101,0.043475098907948,0.026221564039588],[0.18284203112125,0.12816232442856,-0.012846655212343],[0.2049755603075,0.012391679920256,-0.010478129610419]],[[-0.028156660497189,0.048753850162029,-0.066092155873775],[-0.028014313429594,-0.0083436341956258,-0.16831962764263],[0.026045629754663,0.066235721111298,-0.061223737895489]],[[-0.038138154894114,0.1155237480998,-0.23920339345932],[0.13620784878731,-0.10515146702528,0.15106774866581],[-0.074489161372185,0.073083408176899,-0.26094406843185]],[[-0.029830539599061,0.10499233007431,-0.12066699564457],[-0.016923060640693,0.096054792404175,0.14422808587551],[-0.071191154420376,-0.1686534434557,0.043236937373877]],[[0.11537576466799,0.023802747949958,-0.00610555941239],[0.0035382830537856,-0.040407780557871,0.048075079917908],[0.062522813677788,0.13042867183685,0.091163717210293]],[[0.01970611140132,-0.079733118414879,0.11103166639805],[0.035235080868006,-0.049993749707937,-0.027458380907774],[0.00042108417255804,-0.10099082440138,-0.011895630508661]],[[0.10390858352184,0.054682094603777,-0.061111960560083],[-0.001985298935324,0.018718095496297,-0.12979005277157],[0.0063473139889538,0.062522999942303,0.015130043961108]],[[-0.082118198275566,0.12201518565416,-0.0029226199258119],[-0.036128029227257,-0.15757381916046,0.039961598813534],[-0.024757517501712,-0.086200997233391,-0.099621340632439]],[[-0.01202981825918,0.08254624158144,0.0881407558918],[-0.014175122603774,0.064877606928349,-0.013550858013332],[0.08181232213974,0.098117634654045,-0.13153445720673]],[[0.13072650134563,0.079795442521572,-0.017401063814759],[-0.0713911652565,0.10595365613699,-0.12179414182901],[-0.026652446016669,-0.089735329151154,-0.31723305583]],[[0.1064333319664,-0.034887492656708,0.12351647019386],[0.13411566615105,0.11015676707029,0.025378994643688],[0.11467742174864,0.07346123456955,0.10345643758774]],[[-0.1308556497097,-0.16521985828876,-0.19356986880302],[0.059645012021065,0.13417267799377,0.14073264598846],[-0.095645032823086,-0.08851807564497,-0.0089399227872491]],[[-0.044833987951279,0.019408494234085,-0.0537044480443],[0.12831868231297,0.084588311612606,0.0077172610908747],[0.043808154761791,0.14784795045853,0.29901283979416]],[[-0.029500102624297,-0.081227481365204,-0.052584700286388],[-0.067475624382496,-0.09125854074955,-0.005722819827497],[0.13297425210476,0.055424757301807,0.017796989530325]],[[-0.1029195562005,0.032661344856024,0.21600635349751],[-0.091395892202854,-0.053518377244473,0.12282126396894],[0.073510222136974,0.030935250222683,0.032233901321888]],[[0.021939311176538,-0.051083579659462,0.022894384339452],[0.064569294452667,-0.034149166196585,-0.043863534927368],[0.008553683757782,-0.013953535817564,-0.038924898952246]],[[-0.026914885267615,-0.1563151627779,-0.15550495684147],[-0.076784923672676,-0.00048799053183757,-0.065902300179005],[-0.0064585888758302,0.015371103771031,0.023684157058597]],[[-0.035450723022223,0.046888433396816,-0.039599493145943],[0.097901478409767,-0.02232638001442,-0.028095733374357],[-0.025375962257385,-0.15407599508762,0.0067450609058142]],[[-0.033819448202848,0.058493260294199,0.06668795645237],[-0.13908913731575,0.0043713375926018,-0.10372918844223],[-0.071977488696575,0.047625459730625,0.16756051778793]],[[0.16981481015682,-0.15500108897686,0.10415544360876],[0.015674769878387,0.0021983757615089,-0.13205583393574],[0.036495968699455,-0.011696931906044,-0.027824301272631]],[[-0.037436030805111,0.055711805820465,-0.03985396027565],[-0.12998874485493,-0.18911902606487,-0.014357243664563],[-0.25549799203873,-0.10860416293144,-0.15774776041508]],[[0.13199871778488,0.064818546175957,0.070219956338406],[-0.064664885401726,-0.1066974028945,-0.034503377974033],[-0.29101634025574,-0.16049179434776,-0.049019303172827]],[[-0.098884582519531,-0.036432005465031,0.064033947885036],[-0.056991577148438,-0.03436066955328,0.0019168147118762],[-0.01169546879828,-0.021590629592538,0.12820337712765]],[[-0.15729346871376,-0.048613037914038,0.03145744279027],[-0.043112557381392,-0.034171964973211,0.20857256650925],[0.22611989080906,0.12282983958721,0.18361677229404]],[[-0.031229862943292,0.063192002475262,0.10539457947016],[-0.063858635723591,-0.062183648347855,-0.050708949565887],[0.089883796870708,-0.077848330140114,-0.034747418016195]],[[-0.057717029005289,-0.043761216104031,-0.069778583943844],[-0.10971710830927,-0.030435912311077,-0.11014759540558],[-0.218989610672,0.037375047802925,-0.26443275809288]],[[0.16765397787094,0.038223147392273,0.084241725504398],[0.083983704447746,-0.060812644660473,0.011179947294295],[0.050179477781057,0.0045286519452929,-0.017261020839214]],[[-0.013977874070406,0.17931492626667,0.048425197601318],[0.05591694265604,-0.0048450715839863,-0.012699921615422],[-0.0016494552837685,-0.025651451200247,0.18959288299084]],[[-0.071042940020561,-0.062568724155426,-0.055521752685308],[-0.053611256182194,-0.073134496808052,0.073620937764645],[-0.050069469958544,-0.1013011559844,-0.061800684779882]],[[0.096822611987591,0.13744714856148,0.028223732486367],[-0.14730848371983,-0.084559321403503,0.045233093202114],[-0.055303033441305,-0.073424749076366,-0.11963348835707]],[[-0.098752178251743,-0.090932667255402,-0.035861991345882],[-0.10569068789482,-0.065763898193836,-0.01863744482398],[-0.065500490367413,-0.072671674191952,-0.049286667257547]],[[0.069610573351383,0.16930946707726,0.10920752584934],[0.13184912502766,-0.025141654536128,-0.10203640162945],[0.023258950561285,-0.039116095751524,0.04278838634491]],[[-0.051679506897926,-0.013531987555325,0.16469998657703],[0.15137001872063,-0.043170936405659,-0.042753465473652],[0.022513426840305,-0.0088085159659386,-0.14113296568394]],[[0.066718466579914,0.023100096732378,-0.019524339586496],[0.0076152011752129,-0.013967682607472,0.089259698987007],[-0.064814642071724,-0.080177538096905,-0.06535879522562]],[[0.052688803523779,-0.02827949821949,0.061576683074236],[0.041600529104471,-0.0039910064078867,-0.054164122790098],[0.025493927299976,0.026469904929399,-0.0095252050086856]],[[0.1591323018074,0.12951776385307,0.047335166484118],[0.059023939073086,-0.049474433064461,-0.048283435404301],[-0.15113480389118,-0.17657607793808,0.050272699445486]],[[-0.05037273094058,-0.12868919968605,-0.25023770332336],[0.033455554395914,0.021902101114392,-0.039845895022154],[-0.049763705581427,-0.061677910387516,-0.019652966409922]],[[-0.034117050468922,0.077024661004543,-0.015586888417602],[0.030396439135075,-0.014975611120462,0.12332458794117],[-0.071621172130108,-0.067206718027592,-0.060190584510565]],[[-0.15326692163944,0.0018742611864582,0.022859498858452],[-0.027380207553506,0.014730584807694,-0.013939425349236],[0.020936084911227,-0.032463956624269,-0.050640009343624]],[[0.046594772487879,0.015561636537313,-0.040022999048233],[0.044760759919882,0.020037904381752,-0.078013457357883],[0.098297148942947,-0.033385951071978,0.045648414641619]],[[0.042963843792677,0.049356859177351,-0.013251547701657],[-0.044536732137203,-0.038085348904133,-0.052626475691795],[-0.22848843038082,0.11306199431419,0.13836212456226]],[[0.12706081569195,0.21383880078793,0.25211596488953],[-0.023946773260832,-0.16230861842632,0.094403065741062],[0.030546128749847,-0.043988935649395,0.045643709599972]],[[-0.058095443993807,-0.11892756819725,-0.095724456012249],[-0.14928629994392,-0.091427281498909,-0.10352633148432],[-0.12498389929533,-0.19790484011173,-0.22860120236874]],[[0.10490610450506,0.15801964700222,0.018471589311957],[-0.0008434759802185,-0.014487849548459,-0.042590536177158],[-0.048991944640875,-0.061443153768778,-0.0045454478822649]],[[-0.068174608051777,-0.10966356098652,0.032940652221441],[0.043171569705009,0.064570039510727,0.24270777404308],[-0.032718580216169,-0.065881378948689,0.067229047417641]],[[-0.16566586494446,-0.025012869387865,0.056231528520584],[0.015136666595936,-0.05364029482007,-0.028469422832131],[0.0049243457615376,0.035603825002909,0.069838851690292]],[[0.26134067773819,0.018968820571899,0.076662585139275],[-0.0012412214418873,0.054718293249607,-0.033983003348112],[-0.0056043872609735,-0.092155233025551,-0.22465978562832]],[[-0.093797363340855,0.021038185805082,-0.015659224241972],[0.061859540641308,0.043124914169312,0.036062303930521],[-0.029939979314804,-4.9883376050275e-05,-0.034235775470734]],[[-0.097202800214291,-0.0050227358005941,0.0041137975640595],[-0.00044308719225228,0.050617683678865,0.049000967293978],[0.042124826461077,0.024258704856038,-0.033743988722563]],[[-0.059829045087099,0.051801167428493,-0.05907878279686],[-0.0079548554494977,-0.066412873566151,-0.077360309660435],[0.025380544364452,0.015217536129057,-0.052723690867424]],[[-0.089581564068794,-0.10224521905184,-0.045929692685604],[-0.045375872403383,-0.11299023777246,-0.024469835683703],[-0.07703859359026,-0.023697700351477,-0.099674060940742]],[[-0.012436620891094,0.14018855988979,0.11260455101728],[-0.028758242726326,0.0065164160914719,0.0064077530987561],[-0.03409318998456,0.036200277507305,0.059251379221678]],[[0.090223789215088,0.12573648989201,0.038047205656767],[-0.064469866454601,0.075836017727852,-0.0074013755656779],[-0.1246151253581,-0.09620513021946,-0.092801123857498]],[[-0.18780951201916,-0.098258875310421,0.031955949962139],[0.027833614498377,0.015647605061531,0.074054852128029],[0.11709408462048,0.19472563266754,0.24194484949112]],[[0.15189276635647,0.03788910806179,-0.083365492522717],[0.1398941129446,0.018892182037234,0.066266775131226],[-0.015211261808872,-0.07863762229681,-0.037556018680334]],[[-0.041821956634521,0.010299932211637,0.025299273431301],[-0.0099723041057587,0.024680189788342,0.015756027773023],[-0.05230712890625,-0.06340354681015,-0.055801633745432]],[[-0.034516304731369,0.063404515385628,0.10480021685362],[0.004646114539355,-0.0013889076653868,0.10038138926029],[-0.11968570202589,-0.15528193116188,0.071545049548149]],[[-0.061465471982956,-0.022498495876789,-0.024391766637564],[-0.08190056681633,0.02526730671525,-0.033645831048489],[-0.050434529781342,-0.03025852330029,0.024868719279766]],[[-0.024412229657173,0.010857022367418,0.061772499233484],[0.048996847122908,0.064922012388706,-0.041725188493729],[-0.0031381924636662,-0.049920603632927,-0.06810487061739]],[[0.052424941211939,0.035671666264534,-0.17457085847855],[0.058444138616323,0.016503917053342,0.048472367227077],[-0.02278902195394,0.049599878489971,0.038104880601168]],[[0.080640599131584,0.069420218467712,0.091563209891319],[-0.027029749006033,0.057803321629763,0.11763783544302],[0.0022935394663364,-0.043071672320366,0.0025280308909714]],[[0.013298626989126,-0.08441236615181,0.039569322019815],[-0.038303595036268,-0.078314647078514,-0.0080875726416707],[-0.0088186776265502,-0.14871194958687,-0.093654185533524]],[[-0.061650104820728,-0.10789474099874,0.022855043411255],[0.25139400362968,0.057867236435413,0.024180857464671],[-0.070376746356487,0.11665187776089,0.055092882364988]],[[-0.028157841414213,-0.086169943213463,0.024028733372688],[0.028726166114211,0.033634215593338,0.0014512317720801],[0.088342271745205,0.071863770484924,-0.078032374382019]],[[0.09498905390501,0.16074940562248,0.18290744721889],[-0.15629744529724,0.00017004419350997,0.0088092060759664],[-0.051434956490993,-0.047908663749695,0.069795154035091]],[[-0.25164464116096,0.12905703485012,-0.16750979423523],[-0.17391151189804,-0.22726555168629,-0.03472738713026],[-0.17507065832615,0.03992023691535,0.091101065278053]],[[-0.01497786398977,-0.11053533107042,0.16213017702103],[-0.029121492058039,0.059080876410007,-0.116165779531],[0.040880907326937,-0.13561260700226,-0.021265294402838]],[[-0.012436952441931,-0.081042610108852,-0.04542263969779],[-0.053578343242407,0.033036280423403,-0.084787666797638],[-0.040635839104652,-0.01411946862936,0.064502112567425]],[[-0.030385008081794,0.0087636196985841,-0.2983193397522],[-0.061470538377762,-0.11991725862026,-0.15742254257202],[0.010525899939239,-0.029291536659002,-0.087886497378349]],[[-0.036233630031347,0.044343791902065,0.047818757593632],[0.051733925938606,0.051848374307156,0.01258188392967],[0.049329064786434,-0.022244319319725,-0.089533358812332]],[[-0.133235886693,0.043450202792883,-0.010322242043912],[-0.025581246241927,-0.071897447109222,-0.29469656944275],[-0.0036087785847485,-0.029856149107218,-0.055676594376564]],[[-0.15449059009552,-0.083835862576962,-0.24022826552391],[-0.022413179278374,-0.048582922667265,0.018978480249643],[0.00013476528692991,0.062993824481964,0.040219768881798]],[[-0.18676273524761,-0.26491755247116,-0.24058200418949],[-0.20538367331028,-0.027846155688167,-0.11844493448734],[-0.059097543358803,-0.25215566158295,-0.046266619116068]],[[0.0085675707086921,-0.011519719846547,-0.17161293327808],[-0.0065349265933037,-0.084447555243969,0.142972484231],[0.033916503190994,0.025587191805243,0.26445576548576]],[[-0.036869455128908,-0.25421398878098,0.020574510097504],[0.089537300169468,0.078522101044655,-0.08478868752718],[-0.055245865136385,-0.020069316029549,0.037126328796148]],[[0.066349841654301,-0.19877862930298,-0.1537284553051],[0.0093782097101212,-0.09877485781908,-0.202073097229],[-0.033014480024576,0.11041036993265,0.089447148144245]],[[-0.052605219185352,0.18815711140633,0.14122903347015],[0.055420890450478,-0.046450365334749,0.13946205377579],[-0.045133274048567,0.021214492619038,-0.038707215338945]],[[-0.064992725849152,0.16150242090225,-0.03059726767242],[0.064957179129124,-0.045156914740801,0.16710720956326],[-0.01288035325706,-0.058269742876291,-0.062318634241819]],[[-0.11726809293032,-0.20589165389538,0.062988936901093],[-0.014538418501616,0.047666195780039,0.042561456561089],[-0.14206166565418,-0.06829845905304,-0.047011915594339]],[[0.032652694731951,-0.18593417108059,0.038845293223858],[0.03226750716567,0.05112874135375,-0.25698268413544],[-0.047964718192816,-0.027209037914872,-0.067392013967037]],[[0.042619612067938,0.030660286545753,0.033865354955196],[0.13745306432247,0.1982596963644,0.14458179473877],[0.012914827093482,-0.022232074290514,0.039125710725784]],[[-0.039256274700165,-0.0039755553007126,-0.0065334145911038],[-0.073040790855885,0.031231807544827,-0.060727134346962],[0.034181497991085,0.0098962970077991,-0.056559175252914]],[[-0.14325587451458,-0.021186463534832,0.0023944538552314],[0.016923667863011,0.077397838234901,-0.014850022271276],[0.016397207975388,0.0078880647197366,0.052536260336637]],[[-0.037825901061296,-0.08800795674324,-0.026710871607065],[-0.14648382365704,-0.096601314842701,-0.051977291703224],[-0.067830458283424,-0.081228069961071,-0.015830742195249]],[[0.018217792734504,0.10823066532612,0.10273952037096],[0.018988877534866,0.10318056493998,0.15132027864456],[-0.085653133690357,-0.030406231060624,0.031849645078182]],[[0.06809675693512,0.054123319685459,0.056110665202141],[0.092497296631336,0.028424065560102,-0.012807754799724],[-0.051203362643719,-0.060136795043945,-0.11885344982147]],[[-0.067720681428909,-0.00022358533169609,-0.10910940915346],[-0.0084624262526631,0.00062613165937364,0.051722887903452],[0.1717916727066,0.083850972354412,-0.1145271062851]],[[-0.015672160312533,0.14085246622562,0.23584933578968],[-0.17758989334106,-0.20303224027157,0.10616573691368],[-0.090935155749321,-0.093424819409847,0.17666640877724]],[[0.037915751338005,0.086393736302853,-0.1125458702445],[0.073898367583752,0.039380643516779,-0.093696154654026],[0.0042837834917009,0.0013485103845596,-0.14381696283817]],[[-0.010950589552522,0.12246981263161,-0.12916234135628],[-0.026949809864163,-0.15124554932117,-0.19373668730259],[-0.20675905048847,-0.19028180837631,-0.08383571356535]],[[0.11740813404322,0.091535739600658,0.03527220711112],[0.069345280528069,0.055659662932158,-0.14071078598499],[0.099418833851814,-0.034307684749365,-0.053813979029655]],[[0.0086010219529271,0.065057806670666,-0.023970905691385],[-0.13788121938705,-0.070641182363033,0.0098895458504558],[-0.10170911252499,-0.03725116327405,-0.068374522030354]],[[-0.084898874163628,-0.02993313036859,-0.066991716623306],[0.066034227609634,0.099550515413284,-0.042090643197298],[-0.061214335262775,-0.062538683414459,-0.038969092071056]],[[0.088508546352386,0.11695110797882,0.027786631137133],[-0.047574657946825,-0.07630131393671,-0.033018197864294],[-0.055947192013264,-0.057019129395485,-0.036972045898438]],[[0.073243997991085,-0.055941466242075,0.028046194463968],[0.064741097390652,-0.086186178028584,0.10043764859438],[-0.02160582318902,-0.018065888434649,0.017478030174971]],[[-0.06727921962738,-0.058532867580652,0.082571685314178],[0.11220382153988,0.075672514736652,0.20729592442513],[0.076299533247948,-0.033272981643677,0.1321978867054]],[[0.011589929461479,0.047576777637005,-0.030392065644264],[-0.073274083435535,0.038466442376375,0.13132365047932],[0.14494515955448,0.02281522937119,0.089325375854969]],[[0.042588599026203,0.064443960785866,-0.14632149040699],[0.074989028275013,0.029624989256263,-0.029109345749021],[0.072000801563263,0.071576051414013,-0.070999182760715]],[[-0.069388724863529,-0.069870568811893,0.051208101212978],[0.026279628276825,-0.035315409302711,-0.10137416422367],[0.019891547039151,-0.067318052053452,-0.019997546449304]],[[0.03236323595047,0.012244385667145,0.0017146196914837],[-0.059252519160509,-0.14422756433487,-0.15192759037018],[0.083704352378845,-0.090125516057014,-0.0056094015017152]],[[-0.090206027030945,-0.21896195411682,-0.072794549167156],[-0.090159125626087,-0.0097390376031399,-0.049795068800449],[0.064425610005856,0.036175064742565,-0.10213036090136]],[[-0.10167364776134,0.081704214215279,0.26533082127571],[0.021028142422438,0.067406043410301,0.081849791109562],[-0.091092243790627,-0.014096915721893,0.076728448271751]],[[-0.17827247083187,-0.014582959003747,0.24521927535534],[0.060174647718668,-0.1652787476778,0.032564710825682],[0.00091724283993244,0.028258765116334,0.032354012131691]],[[-0.17287489771843,-0.022308886051178,-0.0026052659377456],[0.095737159252167,-0.055945347994566,0.011037481948733],[0.088546931743622,0.068977549672127,0.0069065010175109]],[[-0.050002533942461,-0.14074017107487,-0.16406753659248],[0.041113954037428,-0.098657369613647,-0.17926390469074],[0.053274784237146,-0.011099677532911,-0.01329611428082]],[[0.057910896837711,0.055368084460497,0.083202362060547],[-0.12921141088009,0.11519587039948,-0.13881647586823],[0.0053886333480477,0.10293202102184,-0.11039133369923]],[[-0.040740508586168,0.069363355636597,-0.12408650666475],[0.087893053889275,-0.041350804269314,0.051880922168493],[-0.018325164914131,-0.096533134579659,-0.19816739857197]],[[-0.02973759919405,0.0090779382735491,-0.052864100784063],[0.073878169059753,-0.088618144392967,-0.040183044970036],[-0.017937820404768,0.022170232608914,-0.01714095659554]],[[-0.0059029711410403,-0.035984020680189,-0.029470961540937],[-0.17294350266457,0.02909935079515,-0.019581520929933],[-0.093370102345943,0.072064235806465,0.069302685558796]],[[0.039141431450844,0.082125082612038,0.052684251219034],[0.11895357072353,0.086382441222668,-0.064078152179718],[-0.015212849713862,-0.059750080108643,0.052063021808863]],[[-0.12470929324627,-0.04849710687995,0.071427047252655],[-0.038430217653513,-0.088131442666054,-0.024606639519334],[0.025488406419754,0.030380021780729,0.095209524035454]],[[-0.065762534737587,-0.056678079068661,0.0059706280007958],[0.0069637368433177,0.0051016341894865,0.0084739588201046],[0.019078634679317,0.20390670001507,0.0027848661411554]],[[0.0069724256172776,-0.15831442177296,-0.033482644706964],[0.090707130730152,-0.083898067474365,0.00013500644126907],[0.11943985521793,-0.036551374942064,-0.016137631610036]],[[-0.079387962818146,0.027765097096562,-0.11093229800463],[-0.047705236822367,0.023619400337338,-0.037055660039186],[-0.065098747611046,-0.056176215410233,-0.13471709191799]],[[0.066805370151997,-0.016206782311201,-0.047076620161533],[-0.045400150120258,-0.031098406761885,-0.16820046305656],[-0.07647879421711,0.12258016318083,-0.0012695462210104]],[[-0.0079510221257806,-0.15345264971256,0.1074091270566],[-0.041734293103218,0.0069226184859872,-0.041793834418058],[0.0009890275541693,-0.06721793115139,0.0098802214488387]],[[0.021547749638557,0.062926284968853,0.0033551047090441],[-0.097778663039207,-0.042927779257298,-0.10527838766575],[0.031969327479601,-0.014291291125119,0.03548938781023]],[[-0.031184801831841,0.065608724951744,0.1184191852808],[-0.0071479184553027,0.028036575764418,0.082186467945576],[-0.13582408428192,0.0018923240713775,0.11698653548956]],[[-0.034015219658613,0.069529660046101,0.096039846539497],[-0.11079300940037,-0.033724199980497,-0.013801725581288],[0.089269205927849,0.04837354272604,-0.052136663347483]],[[-0.012903023511171,-0.004612329415977,0.0079037165269256],[0.05192643404007,0.18846274912357,0.10162930935621],[0.041615534573793,0.14068710803986,0.21937768161297]],[[0.0057814377360046,-0.014471533708274,-0.13148713111877],[-0.028063861653209,-0.013353777118027,0.0041325972415507],[0.0076369838789105,-0.12804932892323,-0.11061080545187]],[[0.016418335959315,0.045734971761703,0.13648030161858],[0.044761184602976,0.064180992543697,0.13009136915207],[-0.022754069417715,0.087227553129196,0.02511171810329]],[[-0.093157552182674,-0.025171332061291,-0.082435965538025],[-0.04240020737052,-0.076265074312687,-0.026522878557444],[-0.015592476353049,-0.018407871946692,-0.06774115562439]],[[-0.0088051818311214,0.025760963559151,0.087745368480682],[-0.070100471377373,0.020947132259607,0.048869509249926],[0.032604120671749,0.12245828658342,-0.12618392705917]],[[-0.16604904830456,-0.036438260227442,-0.16817712783813],[0.070737913250923,-0.023093584924936,-0.099956035614014],[0.011320951394737,-0.10846929252148,-0.018147651106119]],[[-0.011112404987216,-0.045646078884602,-0.037578787654638],[0.091478928923607,0.093939781188965,-0.010350218042731],[0.00021990868845023,0.14382220804691,0.0085333008319139]],[[0.23626630008221,-0.10007126629353,-0.091280065476894],[-0.04420904815197,-0.064237803220749,-0.18002793192863],[0.024558631703258,0.11568243056536,-0.054096534848213]],[[0.023220585659146,-0.011241726577282,0.1613290309906],[-0.072245247662067,-0.080770611763,-0.04601452127099],[0.10827188193798,-0.039867982268333,0.066010698676109]]],[[[0.042380847036839,0.18008421361446,-0.12390229105949],[-0.0019158479990438,0.073863744735718,-0.085807681083679],[0.27161422371864,-0.081518992781639,-0.016016753390431]],[[-0.11812641471624,-0.086185500025749,-0.068386167287827],[-0.18691079318523,0.038932479918003,0.11067525297403],[0.059356588870287,-0.041271232068539,-0.11816019564867]],[[0.049155313521624,0.00044524177792482,0.17986525595188],[0.1424595862627,-0.16674849390984,0.23753693699837],[0.15365062654018,0.1055184751749,0.1920713186264]],[[-0.2799776494503,-0.014587420038879,-0.208241507411],[-0.30372053384781,-0.019175861030817,-0.090081505477428],[-0.054585423320532,-0.071863397955894,0.14403605461121]],[[0.14407758414745,0.076101392507553,0.051810052245855],[-0.01247669570148,-0.042072586715221,0.095663599669933],[-0.017655180767179,0.032780688256025,0.21984562277794]],[[0.13568851351738,0.027423406019807,0.30176740884781],[-0.077102318406105,0.046947401016951,-0.033161293715239],[0.015490992926061,0.055848881602287,-0.011512511409819]],[[-0.055502869188786,0.048759151250124,-0.035464782267809],[-0.0047166850417852,0.055090505629778,0.15520319342613],[0.049765452742577,0.038271076977253,-0.026240194216371]],[[0.057847958058119,-0.00080770114436746,0.040763106197119],[0.027291296049953,-0.078778222203255,-0.011840332299471],[-0.07127183675766,-0.16814757883549,0.099767334759235]],[[0.060206361114979,-0.18078385293484,0.099754951894283],[-0.071488335728645,-0.011984286829829,-0.041994731873274],[-0.073498226702213,-0.045915447175503,-0.16495324671268]],[[-0.046413123607635,-0.03213894739747,0.042976319789886],[-0.24347177147865,-0.067830599844456,-0.45717436075211],[-0.19804175198078,-0.044018890708685,-0.22834770381451]],[[-0.14416971802711,-0.14910519123077,0.1759439855814],[-0.099746152758598,-0.015951596200466,0.18251717090607],[0.062541864812374,0.073637023568153,0.011790402233601]],[[0.07485918700695,-0.079947352409363,0.017903853207827],[0.12714624404907,0.072261974215508,-0.051878198981285],[0.21325600147247,0.065113946795464,0.10543772578239]],[[0.072891764342785,0.05535527318716,-0.1465545296669],[0.12834788858891,-0.078273214399815,-0.024276027455926],[-0.15674124658108,-0.014003437012434,-0.13036188483238]],[[0.043849363923073,-0.016521509736776,-0.043013505637646],[0.20824779570103,-0.031068202108145,-0.03660025075078],[-0.011498578824103,0.14346961677074,0.010520179755986]],[[-0.030807316303253,0.069552138447762,0.13133546710014],[-0.086930453777313,0.010389014147222,0.21912437677383],[0.17241285741329,0.096183151006699,-0.14414116740227]],[[-0.16749085485935,-0.059155773371458,-0.056101828813553],[-0.14097508788109,0.11335168778896,0.097537256777287],[-0.18598887324333,0.034592565149069,-0.083687104284763]],[[-0.013169311918318,0.0020481531973928,-0.086052753031254],[0.20348587632179,0.11594062298536,-0.26571014523506],[-0.0097497720271349,0.098027095198631,-0.0021540899761021]],[[0.0767917111516,-0.045427519828081,0.13613142073154],[0.28392028808594,0.19472546875477,-0.0050392048433423],[0.076367996633053,-0.050390668213367,0.18081264197826]],[[-0.27483242750168,-0.040082775056362,0.06567020714283],[0.03089433349669,0.079038739204407,-0.026033675298095],[-0.0023696639109403,0.10818064957857,0.08352392166853]],[[-0.13730286061764,-0.058968629688025,-0.056305609643459],[-0.086240574717522,-0.039441954344511,0.21856737136841],[-0.023107200860977,-0.098538488149643,-0.075445450842381]],[[0.098892770707607,0.031661730259657,-0.059002440422773],[0.1655869781971,-0.10508611798286,0.069630116224289],[-0.13243982195854,-0.085715919733047,-0.051281973719597]],[[0.29704338312149,-0.031902406364679,-0.13876642286777],[-0.030729170888662,0.11908499151468,0.0012499099830166],[-0.18441714346409,-0.078110158443451,0.15995451807976]],[[0.12364516407251,-0.21522781252861,-0.19356133043766],[0.11657195538282,-0.14475092291832,0.030053844675422],[0.08323173224926,-0.17522057890892,-0.023462170735002]],[[0.033581387251616,-0.023357195779681,0.060239352285862],[-0.30309954285622,0.17405325174332,0.16358083486557],[0.0922591984272,-0.15797579288483,0.11069300025702]],[[-0.32039681077003,-0.0018862570868805,-0.10006593167782],[-0.29579097032547,0.25093951821327,-0.018425846472383],[0.054913066327572,0.038282372057438,-0.068524301052094]],[[-0.086694844067097,-0.029989764094353,-0.11378443241119],[-0.19625680148602,-0.0048962254077196,-0.1390428841114],[-0.17249342799187,-0.039691172540188,-0.41483178734779]],[[0.27129107713699,-0.020322203636169,-0.01371234562248],[0.076319932937622,0.03954216465354,0.097019165754318],[0.13124394416809,-0.03020584769547,0.061410259455442]],[[-0.20829783380032,0.17739041149616,0.11114752292633],[0.11779882013798,0.11273949593306,-0.089705817401409],[0.016565393656492,0.13819389045238,0.018438808619976]],[[-0.27671602368355,-0.0031771012581885,-0.091355927288532],[-0.10802745074034,0.0015403159195557,-0.034527949988842],[-0.022978385910392,-0.18096378445625,0.057133134454489]],[[-0.092404656112194,0.018772697076201,0.095953240990639],[-0.23632888495922,0.037936888635159,-0.13072775304317],[0.014205162413418,0.012461044825613,-0.15622378885746]],[[-0.03715693578124,-0.038346018642187,-0.14138714969158],[-0.088625580072403,-0.18582406640053,-0.2573863863945],[0.1813558191061,-0.080286532640457,0.038375407457352]],[[0.09112111479044,-0.056081984192133,-0.11440117657185],[0.17799879610538,-0.13846273720264,-0.026736410334706],[0.20248584449291,-0.0017408068524674,0.12875884771347]],[[0.069645866751671,0.25708672404289,0.14835374057293],[-0.11478823423386,0.00038543029222637,-0.093193367123604],[-0.043889071792364,-0.046865299344063,-0.085618823766708]],[[-0.0094895008951426,0.13109554350376,-0.12103042751551],[0.091012462973595,-0.057805996388197,-0.25376251339912],[0.063433282077312,-0.022184710949659,0.046803679317236]],[[-0.19009748101234,0.014128400012851,-0.042143288999796],[0.0054708868265152,-0.033169262111187,0.1069740280509],[0.10606177151203,0.0083605032414198,-0.090559184551239]],[[-0.09001287072897,0.055530350655317,-0.050610296428204],[-0.020659094676375,0.037316001951694,0.075860530138016],[-0.083963960409164,0.14520862698555,-0.067632630467415]],[[0.26537349820137,0.016261987388134,0.36650264263153],[0.014538410119712,0.096005700528622,-0.14962022006512],[-0.033828739076853,0.17094396054745,0.090498380362988]],[[0.26439020037651,-0.085179261863232,-0.31746858358383],[0.096311755478382,0.029472008347511,0.28637126088142],[-0.19876766204834,0.052497565746307,-0.047069545835257]],[[0.0964390411973,0.019077837467194,0.096894152462482],[-0.17937996983528,-0.088493801653385,-0.02971969358623],[0.085076697170734,-0.036918040364981,-0.0024583234917372]],[[-0.043962877243757,-0.085081122815609,0.055428829044104],[-0.045118700712919,-0.0067270766012371,-0.062854446470737],[0.053682330995798,-0.079412512481213,0.06962525844574]],[[0.11550191789865,0.036918133497238,0.13729450106621],[0.34004667401314,-0.053306724876165,0.20992977917194],[-0.13057428598404,0.21196812391281,0.023711837828159]],[[0.3214330971241,0.19703564047813,0.042574968189001],[-0.0035230950452387,-0.062789887189865,0.10033051669598],[-0.062718421220779,-0.15315759181976,0.33351096510887]],[[-0.074017129838467,-0.099769271910191,0.053075514733791],[-0.33279013633728,-0.21219138801098,-0.30953913927078],[-0.11553671956062,0.085492104291916,-0.21347619593143]],[[-0.14310622215271,-0.082129970192909,0.096821546554565],[-0.03634662181139,-0.13282765448093,-0.040655057877302],[0.027551470324397,0.12458071857691,0.027086764574051]],[[0.065372057259083,0.036495115607977,-0.090452186763287],[-0.073247201740742,-0.10742019861937,-0.040898334234953],[-0.10952993482351,0.062038574367762,-0.12274442613125]],[[-0.074430465698242,-0.0059278989210725,-0.057345513254404],[-0.16710297763348,0.053774170577526,-0.0076532303355634],[-0.065221108496189,-0.075888857245445,0.053543794900179]],[[-0.11264874786139,-0.03505751490593,-0.056807935237885],[0.013405994512141,0.022016044706106,-0.20880927145481],[-0.091125197708607,-0.036905407905579,-0.18949118256569]],[[-0.089831791818142,0.017304059118032,0.14720164239407],[0.037027020007372,0.17072714865208,-0.010745763778687],[0.018760558217764,0.049313683062792,0.023983469232917]],[[-0.035295236855745,-0.061536300927401,-0.071078911423683],[0.12306816875935,-0.17715619504452,-0.08455653488636],[0.13675132393837,0.084430992603302,0.12575124204159]],[[-0.048382740467787,-0.26797565817833,-0.19392190873623],[-0.12540078163147,0.042912479490042,-0.039767507463694],[-0.07403526455164,0.00020674480765592,-0.2088159173727]],[[0.3263601064682,-0.20885725319386,-0.059458825737238],[0.0067398087121546,-0.22892899811268,-0.092603862285614],[-0.24150590598583,-0.10361278057098,-0.1766981035471]],[[0.075087994337082,0.14111784100533,-0.027238303795457],[-0.25238499045372,-0.083613105118275,0.26429322361946],[0.12206211686134,-0.22530253231525,-0.067261837422848]],[[-0.050581466406584,0.010633674450219,-0.048391569405794],[0.047077681869268,-0.084204263985157,-0.091700732707977],[0.07340993732214,0.016786953434348,0.045166343450546]],[[0.04778828471899,0.080955415964127,0.29381069540977],[-0.011474950239062,0.12387117743492,-0.088287271559238],[-0.05138324201107,0.12323507666588,0.096098460257053]],[[0.020619593560696,0.17998133599758,-0.052557073533535],[0.061185255646706,-0.018995402380824,0.080061845481396],[0.12071172147989,0.11566409468651,-0.018678735941648]],[[0.020281665027142,-0.051885642111301,0.18226544559002],[-0.041471276432276,0.14130449295044,0.077409066259861],[0.1149525269866,0.083294443786144,0.09517802298069]],[[-0.0077716675586998,0.016670528799295,-0.049551021307707],[0.15641491115093,-0.091764092445374,0.22478020191193],[9.0467685367912e-05,0.010485790669918,0.071063324809074]],[[-0.17261752486229,-0.1146986335516,-0.0093978736549616],[0.17944192886353,0.055724132806063,-0.11408711224794],[0.00037842761958018,0.026169806718826,0.069376721978188]],[[-0.069424785673618,0.089776426553726,-0.068873718380928],[-0.022426620125771,0.0037997353356332,-0.14061483740807],[0.00064913491951302,0.026599504053593,-0.005815401673317]],[[0.14589002728462,0.17630042135715,0.077871851623058],[0.15243555605412,-0.017306577414274,0.051425497978926],[0.26049518585205,-0.017494481056929,0.024774836376309]],[[-0.066849604249001,-0.071245484054089,-0.016105566173792],[-0.066857203841209,0.032039199024439,-0.088903091847897],[-0.059448976069689,-0.030499249696732,0.12359168380499]],[[-0.00041749814408831,-0.24278609454632,0.04484873637557],[-0.025875650346279,-0.084668062627316,0.10941853374243],[-0.062952786684036,-0.11137655377388,-0.12712581455708]],[[0.010679732076824,0.023955592885613,0.20016503334045],[0.28707331418991,0.035643976181746,0.13969975709915],[0.23104926943779,0.06574023514986,0.10868904739618]],[[0.17839378118515,0.15916113555431,0.023102840408683],[0.28079158067703,-0.018248341977596,0.046466842293739],[0.095839202404022,0.25814986228943,0.10594757646322]],[[-0.034759894013405,0.035273931920528,0.07345312088728],[-0.018407952040434,-0.041627291589975,0.095460869371891],[-0.022528883069754,0.038895465433598,-0.028280317783356]],[[-0.10584373027086,-0.063294366002083,-0.099002704024315],[-0.14942938089371,0.061504799872637,-0.20241741836071],[-0.10855417698622,-0.024093829095364,-0.016500825062394]],[[-0.2443171441555,-0.084257237613201,0.088110104203224],[-0.10837993770838,0.20115651190281,0.013307171873748],[0.20464825630188,-0.045390460640192,-0.076478257775307]],[[-0.08112658560276,-0.090831995010376,0.063187837600708],[-0.20651008188725,0.13514378666878,-0.15665040910244],[0.078539453446865,0.052800793200731,0.051947832107544]],[[0.060741312801838,-0.1224367544055,0.076364174485207],[-0.025780934840441,-0.040380820631981,-0.064935572445393],[0.11876472830772,-0.12980261445045,-0.054135251790285]],[[0.080054178833961,-0.014240466989577,0.05066853761673],[-0.03087661601603,0.11591941863298,-0.078444331884384],[0.039482686668634,0.026563534513116,-0.25993704795837]],[[0.078086763620377,0.045817241072655,0.32884648442268],[0.047946199774742,0.086692906916142,0.34505301713943],[0.090511694550514,0.15593358874321,0.063170365989208]],[[0.10772252082825,0.068997658789158,-0.024707460775971],[-0.0074496432207525,0.11899688839912,-0.010276079177856],[-0.019615396857262,0.18565729260445,-0.090164557099342]],[[-0.065877415239811,0.15908101201057,0.16016133129597],[-0.023355612531304,-0.043820489197969,-0.19335399568081],[0.088772237300873,-0.04807360842824,-0.0083440225571394]],[[-0.096823520958424,-0.11336547136307,-0.068114317953587],[-0.17154881358147,-0.050865676254034,-0.052465569227934],[0.26893302798271,-0.096353895962238,-0.08898139744997]],[[0.35114833712578,-0.064308494329453,0.21400725841522],[0.13302347064018,0.030785089358687,-0.11083993315697],[0.073013313114643,0.083252094686031,0.039867404848337]],[[0.020941697061062,-0.15434758365154,0.058906134217978],[0.079446822404861,-0.095414951443672,-0.13802048563957],[0.18096853792667,-0.035243362188339,-0.17326308786869]],[[-0.24142520129681,-0.085451476275921,-0.1427346765995],[0.092923641204834,0.016887856647372,0.070705458521843],[-0.020477445796132,-0.021306434646249,-0.11943982541561]],[[-0.019297756254673,-0.030025338754058,-0.0063906186260283],[0.086313292384148,-0.078157968819141,0.067021757364273],[0.13511788845062,-0.19745683670044,0.12819004058838]],[[0.061167016625404,0.041105151176453,0.24285277724266],[0.06454960256815,0.016866575926542,-0.13862407207489],[0.041452590376139,0.039867181330919,0.062744297087193]],[[0.17729440331459,-0.24512767791748,0.014138017781079],[0.037418033927679,-0.25542229413986,-0.20116195082664],[-0.069618195295334,0.089924685657024,-0.1047837510705]],[[0.066882759332657,0.17170314490795,-0.11251221597195],[0.036465335637331,0.062507979571819,-0.019883416593075],[-0.080196142196655,-0.0078900856897235,0.13379991054535]],[[-0.1264036744833,-0.10514738410711,-0.25408455729485],[-0.047935631126165,-0.074027083814144,0.079368375241756],[0.090000696480274,0.039699342101812,-0.18701177835464]],[[0.14847072958946,-0.13190066814423,-0.19036889076233],[-0.035086985677481,0.050430193543434,0.2173188328743],[0.19407048821449,-0.027611535042524,0.017447784543037]],[[-0.00072873401222751,0.016954625025392,0.041082125157118],[-0.22161377966404,-0.090718045830727,-0.055645775049925],[-0.071641996502876,-0.038402795791626,-0.014033668674529]],[[0.14374488592148,-0.13265191018581,-0.17593322694302],[-0.14467757940292,-0.046258948743343,0.063239142298698],[-0.071711748838425,0.032991107553244,-0.14380395412445]],[[0.11111154407263,0.059317316859961,0.014032021164894],[0.15418154001236,0.065752573311329,-0.19285950064659],[-0.051349766552448,0.047971472144127,-0.020314883440733]],[[0.18229335546494,-0.0069642323069274,0.034140091389418],[-0.13490591943264,-0.0095373885706067,0.2102739661932],[0.037728313356638,-0.059439077973366,-0.050400983542204]],[[0.0034591681323946,-0.12458934634924,-0.13758167624474],[-0.0021687548141927,0.049569431692362,0.084298066794872],[-0.11342949420214,-0.13940343260765,-0.076874114573002]],[[0.0021620402112603,-0.057978559285402,0.10946935415268],[-0.088720448315144,0.16778315603733,-0.12066950649023],[-0.12886540591717,0.026357941329479,-0.013958067633212]],[[-0.056113079190254,-0.0534921400249,-0.23726722598076],[0.051199715584517,-0.10941930860281,0.015902910381556],[-0.025342553853989,-0.082882978022099,0.089453250169754]],[[-0.087361685931683,0.036685392260551,-0.093510858714581],[-0.15402437746525,-0.15777276456356,-0.0041555250063539],[-0.00017086103616748,0.0030078033450991,0.29245233535767]],[[0.11286232620478,-0.013661502860487,0.082741446793079],[0.098625466227531,0.0095035340636969,-0.12498551607132],[-0.08136285841465,0.021662941202521,0.23159098625183]],[[0.040334269404411,0.072909966111183,0.15383073687553],[-0.036331944167614,0.22628040611744,0.078784748911858],[0.063971899449825,0.073905445635319,-0.11474273353815]],[[0.01420955825597,-0.13076069951057,-0.0042390176095068],[-0.12712776660919,-0.1398014575243,0.15171033143997],[-0.050258882343769,-0.1250811368227,0.052381753921509]],[[0.018884163349867,0.26158347725868,-0.013019958510995],[0.031089015305042,0.10121240466833,0.047530148178339],[0.021851958706975,-0.011700888164341,0.14811736345291]],[[-0.13772238790989,-0.28389245271683,0.10530700534582],[-0.0092953378334641,-0.037423629313707,0.087778225541115],[0.10290102660656,-0.12075088173151,0.10894814133644]],[[-0.086073830723763,-0.023858295753598,0.09814764559269],[-0.00054288847604766,0.019407330080867,0.097453124821186],[-0.060688886791468,-0.023909039795399,0.14675424993038]],[[-0.12819036841393,0.11363332718611,-0.062404736876488],[-0.1197859197855,-0.0043187630362809,-0.26210388541222],[-0.010516023263335,-0.12531337141991,0.13290037214756]],[[0.18282972276211,-0.033862806856632,0.0054195784032345],[-0.084487766027451,-0.026135660707951,0.015697764232755],[0.067299783229828,-0.045673687011003,-0.12593026459217]],[[-0.047445870935917,0.074047520756721,-0.21224890649319],[0.11906658113003,0.089225314557552,-0.15093497931957],[0.057621873915195,0.073551788926125,0.17298033833504]],[[-0.28081467747688,-0.037474222481251,-0.10993719100952],[-0.10036405920982,-0.16541682183743,-0.094167485833168],[-0.15893843770027,0.049561705440283,-0.082668103277683]],[[0.14327666163445,0.16081316769123,0.087700180709362],[0.27413406968117,0.13120740652084,0.16765460371971],[-0.1791628152132,0.030333247035742,-0.012715317308903]],[[-0.07058247923851,0.075475722551346,0.08682744204998],[0.12503358721733,0.022207491099834,0.10630666464567],[0.23221704363823,0.014893889427185,0.017224373295903]],[[-0.26127648353577,0.048216462135315,0.14374117553234],[0.041091863065958,0.011461525224149,-0.11837200820446],[0.10358907282352,-0.10856024175882,0.086597919464111]],[[-0.11291783303022,-0.10086729377508,0.12545068562031],[0.0019506553653628,-0.071447841823101,-0.081548325717449],[-0.055764675140381,0.15374368429184,-0.11923106759787]],[[-0.077229872345924,-0.040794026106596,-0.2484584748745],[-0.081193618476391,-0.22423607110977,0.021106589585543],[-0.10770782828331,-0.088105745613575,-0.050033953040838]],[[0.086354941129684,-0.0077042165212333,0.01410736143589],[0.094684332609177,-0.112144716084,0.012702591717243],[0.25180873274803,0.1767937541008,0.13798949122429]],[[0.030420212075114,-0.1501998603344,-0.13500618934631],[-0.2056700438261,0.094843484461308,0.14057125151157],[0.079917691648006,-0.041115250438452,0.23484551906586]],[[0.075533777475357,0.24975304305553,-0.21069718897343],[-0.022706508636475,0.10906410962343,0.092604838311672],[-0.011194055899978,0.00089029187802225,0.15137247741222]],[[0.072691336274147,0.10911341756582,0.16737768054008],[0.12933197617531,-0.041669607162476,-0.082004062831402],[0.16525363922119,0.053562495857477,0.12910307943821]],[[-0.11576085537672,0.12502253055573,0.023019604384899],[-0.04288362711668,0.014859290793538,-0.0026115034706891],[-0.06454211473465,-0.041986398398876,0.027541076764464]],[[0.020077604800463,-0.084932282567024,0.076344832777977],[-0.058158874511719,0.05912471935153,-0.05428621172905],[0.03312286734581,0.16837449371815,-0.058953311294317]],[[-0.17009191215038,-0.037074610590935,0.027657693251967],[0.068247951567173,-0.13027635216713,0.0077844657935202],[-0.097233444452286,-0.089001327753067,0.077650099992752]],[[0.13933451473713,0.11744391918182,0.14819443225861],[0.057326931506395,0.018691208213568,0.25310391187668],[0.034404385834932,0.050835896283388,0.086662255227566]],[[-0.10391594469547,-0.1257236301899,-0.019676318392158],[0.017199812456965,0.055597998201847,-0.020868431776762],[-0.16389292478561,0.11997950077057,-0.08765734732151]],[[0.055623214691877,0.045923180878162,0.2906112074852],[0.10354261100292,0.022756760939956,-0.068560630083084],[0.01400725543499,0.13314433395863,-0.04660901799798]],[[0.016322357580066,0.14279456436634,-0.0043299626559019],[0.16418036818504,0.081432856619358,0.072339043021202],[-0.030418213456869,0.012296673841774,-0.031576961278915]],[[0.090529166162014,0.018968839198351,0.13142462074757],[-0.05121822655201,0.098124697804451,-0.039438918232918],[0.16113249957561,0.019193552434444,0.12994958460331]],[[-0.026178536936641,0.0062204780988395,-0.12065215408802],[0.18263912200928,0.089643053710461,0.050260290503502],[-0.027181327342987,0.050238173455,-0.066727183759212]],[[0.19628266990185,0.0034057560842484,-0.099863812327385],[0.17204686999321,0.21418192982674,-0.32611328363419],[0.1969380825758,0.17139154672623,0.40437403321266]],[[0.012788995169103,0.13130617141724,-0.029362767934799],[0.17256532609463,0.134531006217,-0.11538165062666],[-0.095334902405739,-0.10577187687159,0.018927752971649]],[[-0.032722380012274,-0.13622519373894,0.067085646092892],[-0.15462556481361,-0.17674243450165,0.11358704417944],[-0.096188932657242,-0.091870166361332,0.0026239606086165]],[[-0.14130172133446,-0.064911194145679,-0.12512673437595],[-0.15901206433773,-0.10866306722164,0.16133883595467],[0.025264717638493,-0.045688152313232,-0.14933298528194]],[[-0.040521990507841,-0.14892816543579,-0.16064347326756],[-0.18661463260651,0.072185076773167,-0.017383487895131],[-0.33593234419823,0.12796801328659,-0.11404121667147]],[[-0.12494527548552,0.038571171462536,-0.045726243406534],[0.0052633313462138,-0.31421983242035,-0.1051682010293],[0.12904091179371,-0.25402081012726,-0.11329162120819]],[[-0.074906453490257,0.0029959846287966,0.037508815526962],[-0.059609770774841,-0.26807799935341,0.045912098139524],[0.0094443717971444,0.0053834151476622,0.0080384314060211]],[[0.20647364854813,-0.019069148227572,-0.0050458735786378],[-0.091913908720016,0.056787580251694,0.059440914541483],[-0.0032342269551009,0.10518102347851,-0.021770915016532]],[[-0.10382190346718,-0.095011211931705,-0.20806966722012],[-0.15947331488132,-0.083616487681866,0.12702271342278],[0.11038048565388,-0.10300194472075,-0.0031732942443341]]],[[[-0.021523429080844,0.0087219271808863,-0.091404713690281],[-0.044890213757753,-0.026172578334808,-0.079435914754868],[-0.088781744241714,-0.035097058862448,-0.011543170548975]],[[0.034498974680901,0.051893655210733,-0.0025573316961527],[-0.092649452388287,-0.10710405558348,-0.06191511079669],[0.044684834778309,0.056282237172127,0.012245746329427]],[[-0.088240578770638,0.0037144822999835,0.078335992991924],[-0.0053715365938842,-0.1463714838028,-0.0020818077027798],[0.048970509320498,0.027512542903423,-0.073909617960453]],[[0.070405341684818,-0.021198015660048,-0.010636609047651],[-0.02231053262949,-0.009211172349751,0.019041707739234],[-0.0081176590174437,-0.059039194136858,0.055595956742764]],[[0.036941792815924,-0.071352131664753,-0.012446342036128],[0.050227660685778,0.079661764204502,0.0082504907622933],[0.041575692594051,0.034632708877325,0.021513128653169]],[[0.01910075545311,0.047172579914331,-0.036267787218094],[0.026151893660426,0.065368756651878,-0.0065497350879014],[-0.0020517504308373,0.014907052740455,-0.003673639614135]],[[0.099792338907719,0.042269993573427,-0.048209182918072],[-0.086150772869587,0.063963390886784,-0.068256251513958],[-0.047879986464977,0.01454334706068,-0.0033046004828066]],[[0.0057098949328065,0.073350965976715,-0.12319879978895],[-0.028939589858055,0.065288804471493,0.0084582511335611],[0.04480741918087,0.058308601379395,-0.052802469581366]],[[0.050566174089909,0.059470161795616,0.075144872069359],[0.025903759524226,0.064799070358276,-0.024944253265858],[-0.018180245533586,-0.07923174649477,0.14958231151104]],[[0.010920620523393,-0.01177098415792,-0.020036661997437],[0.036682359874249,0.016953008249402,0.11320360004902],[-0.061797004193068,0.016685172915459,-0.14038889110088]],[[-0.023548383265734,-0.04026847705245,0.0027246859390289],[-0.011056407354772,-0.048844140022993,0.037231616675854],[0.016213292255998,-0.018845213577151,-0.0057440497912467]],[[-0.018687000498176,0.078965127468109,0.040727164596319],[0.029860600829124,0.014595410786569,0.015558668412268],[0.048251934349537,0.050566434860229,-0.11015293002129]],[[-0.0067014987580478,0.016190145164728,0.011888605542481],[0.071473620831966,0.048334985971451,-0.030992718413472],[0.015812816098332,0.070719353854656,-0.023145332932472]],[[-0.0057421638630331,0.029937010258436,-0.069637462496758],[-0.025029527023435,-0.05950478836894,-0.04249070957303],[0.056552086025476,0.059129692614079,-0.04260827973485]],[[0.027758261188865,-0.0052636661566794,-0.042937573045492],[-0.01073682308197,-0.040239881724119,-0.046852394938469],[0.053731806576252,0.026867998763919,0.018004160374403]],[[-0.071172252297401,-0.031486377120018,-0.02844930998981],[-0.050567127764225,-0.11238346248865,0.037549752742052],[-0.060019388794899,-0.014910259284079,-0.05862944573164]],[[0.11408247798681,-0.064663149416447,-0.0042627118527889],[0.077271498739719,-0.015498543158174,-0.10283147543669],[-0.0014991664793342,0.004883280955255,0.014215617440641]],[[-0.084071628749371,0.064465343952179,-0.016885347664356],[-0.053654443472624,0.0052843680605292,-0.012573857791722],[0.042484797537327,0.13193547725677,-0.043068058788776]],[[-0.0054194196127355,-0.023780589923263,-0.027830597013235],[0.015103326179087,-0.086797587573528,0.014423224143684],[-0.028867738321424,0.0063936063088477,-0.011298690922558]],[[0.0063810930587351,-0.00037739498657174,0.066611096262932],[-0.10727179050446,-0.0033232204150409,0.018144892528653],[-0.091625787317753,-0.034926202148199,0.047583002597094]],[[0.0025478394236416,-0.028759524226189,-0.0041353651322424],[0.047845251858234,-0.019399156793952,-0.013230135664344],[0.0093243317678571,-0.075222954154015,0.0070761712267995]],[[0.0046568089164793,-0.024837367236614,-0.032093115150928],[0.0097578689455986,-0.019022669643164,-0.048837978392839],[-0.011815707199275,0.0077514979057014,0.11186540126801]],[[0.028699047863483,-0.05142917484045,-0.056862067431211],[0.056827522814274,0.025822497904301,-0.073080062866211],[-0.042733449488878,-0.022954910993576,-0.107421413064]],[[0.014306983910501,0.016166301444173,-0.088749729096889],[-0.082062758505344,-0.073617681860924,0.038897436112165],[0.084643721580505,0.062389317899942,0.030051901936531]],[[-0.019964849576354,0.10553003847599,0.064000643789768],[-0.010367676615715,0.017724107950926,0.060592088848352],[0.00067449873313308,-0.095555789768696,0.048082448542118]],[[-0.057889316231012,-0.04124853760004,-0.059711683541536],[-0.063678629696369,-0.0042035426013172,-0.0039528817869723],[0.017233889549971,0.048215795308352,0.075734712183475]],[[0.020207207649946,0.030418733134866,0.011621678248048],[0.015605218708515,0.033837132155895,-0.024043133482337],[-0.037508454173803,0.012873069383204,-0.012478116899729]],[[-0.030921492725611,-0.042353615164757,-0.018849894404411],[-0.032443758100271,-0.063488319516182,0.060011029243469],[-0.008196066133678,0.0054626371711493,0.017584847286344]],[[0.012793566100299,-0.077836520969868,0.079913623631001],[-0.028451304882765,-0.041575029492378,0.09800685942173],[-0.057809147983789,-0.090405650436878,0.080628946423531]],[[0.055959977209568,0.028363713994622,0.069997914135456],[0.045505367219448,-0.065790265798569,-0.042590212076902],[0.023656999692321,0.03432110324502,-0.011345154605806]],[[0.078603588044643,-0.064378216862679,-0.052567709237337],[-0.046262733638287,0.01075005158782,0.086176827549934],[0.024909429252148,-0.00016500061610714,-0.015841785818338]],[[-0.0069093331694603,-0.041525427252054,-0.025493526831269],[0.010010720230639,0.020822819322348,-0.024891432374716],[-0.046229925006628,-0.024447424337268,-0.065859109163284]],[[0.055377595126629,0.00036324412212707,-0.0082202479243279],[0.067094154655933,0.061605047434568,-0.01686586625874],[-0.006034052465111,0.044453974813223,-0.064769543707371]],[[0.0016585953999311,0.0074503617361188,-0.019146693870425],[-0.026314150542021,0.018312763422728,0.048822190612555],[-0.01932480931282,-0.0035630424972624,0.087730340659618]],[[-0.044633220881224,-0.033282548189163,0.014579556882381],[0.022831723093987,-0.0017275422578678,0.0097685698419809],[-0.05398715659976,0.051847279071808,0.056308757513762]],[[0.17971394956112,0.011627388186753,-0.018844773992896],[0.087157376110554,-0.0026818111073226,0.027480946853757],[0.053083501756191,0.037057023495436,0.04298534989357]],[[0.0036861072294414,0.005304575432092,0.0023137833923101],[-0.012597991153598,0.040866214782,-0.012731863185763],[0.044726513326168,-0.0014385038521141,0.0026699139270931]],[[0.0049249650910497,-0.020539781078696,-0.032495189458132],[-0.011141510680318,-0.025774950161576,0.023042341694236],[-0.035828050225973,-0.0076854098588228,-0.0071282400749624]],[[-0.0574313364923,0.053189776837826,-0.055228419601917],[0.055503390729427,-0.07753624022007,-0.15672880411148],[0.033730529248714,0.10415291041136,-0.0049754730425775]],[[0.017500264570117,0.0064050052314997,0.024744993075728],[-0.034989010542631,-0.032715924084187,0.090404108166695],[-0.011567460373044,0.015515429899096,0.052845314145088]],[[-0.040699947625399,-0.030652554705739,0.063826717436314],[0.010207830928266,-0.072268784046173,-0.079947553575039],[0.03039681725204,0.067910611629486,-0.08345603197813]],[[0.011405345983803,-0.012567462399602,0.0009513352997601],[-0.0216662902385,-0.01793978177011,0.019185272976756],[-0.022375939413905,0.020887933671474,-0.014766476117074]],[[-0.029209107160568,-6.1946018831804e-05,-0.073323875665665],[-0.043211624026299,-0.0042380131781101,-0.069913670420647],[0.068489126861095,0.056459844112396,0.00072823476511985]],[[0.0089558716863394,0.051362350583076,0.039015211164951],[-0.0014096532249823,-0.10333635658026,-0.0044138305820525],[0.075013443827629,-0.042174551635981,-0.0022640731185675]],[[-0.030765146017075,-0.013867354020476,0.025703120976686],[0.077908545732498,0.03333006054163,-0.0017962412675843],[0.065247341990471,-0.054755590856075,-0.014975158497691]],[[-0.025763157755136,0.040987532585859,0.015106244012713],[0.059221494942904,0.022635508328676,-0.019035123288631],[-0.0012991256080568,-0.034924656152725,-0.023776678368449]],[[0.023096289485693,-0.051755178719759,-0.053989909589291],[0.026569783687592,-0.028125917539001,0.057002127170563],[0.045867193490267,0.0034306636080146,0.063272900879383]],[[-0.015804052352905,-0.009007265791297,0.014493493363261],[0.0068835867568851,-0.02529488503933,-0.066640019416809],[-0.043829962611198,-0.010278368368745,-0.076011203229427]],[[0.01029718387872,-0.035407926887274,-0.027677923440933],[-0.032822147011757,0.063095256686211,0.12917360663414],[-0.023323027417064,-0.014863115735352,-0.14005874097347]],[[0.033531062304974,0.022808834910393,-0.013875560835004],[-0.031065560877323,-0.047129053622484,0.0066146492026746],[-0.0076995245181024,0.040622565895319,-0.06132972240448]],[[-0.030853377655149,0.074951991438866,0.056729152798653],[-0.030593724921346,0.00095419539138675,0.029347039759159],[0.017972804605961,0.038654141128063,0.0063340314663947]],[[0.015111650340259,-0.044889733195305,0.0092488285154104],[0.0067610898986459,0.078033685684204,0.076114267110825],[-0.049158837646246,0.0055724340490997,0.059133887290955]],[[-0.038221266120672,-0.10603531450033,-0.033708639442921],[-0.012216578237712,0.01504282746464,-0.068030454218388],[-0.014045463874936,0.087141945958138,0.020813312381506]],[[-0.011377644725144,0.020766178146005,0.039510663598776],[0.0057364907115698,-0.029890054836869,-0.028143500909209],[0.012359336018562,0.0098543632775545,-0.082632996141911]],[[-0.076348252594471,0.084005035459995,0.090750873088837],[-0.01032704487443,-0.11155991256237,0.04247860237956],[-0.087803460657597,-0.08061645179987,-0.080940909683704]],[[0.03004464507103,0.005925758741796,0.069423027336597],[-0.030695362016559,-0.028151759877801,-0.01824944652617],[-0.051203459501266,-0.037402339279652,0.04878181964159]],[[-0.060646641999483,0.016197754070163,0.11688913404942],[0.020550673827529,0.053735449910164,-0.12180967628956],[0.029024805873632,0.045390758663416,0.007077788002789]],[[-0.090105012059212,0.044090259820223,-0.046232990920544],[0.022218184545636,-0.015590580180287,0.041654877364635],[-0.045168768614531,-0.031880170106888,-0.026683777570724]],[[0.052124619483948,0.05787942185998,0.028296092525125],[-0.0086194174364209,-0.020891360938549,0.05918188765645],[0.031994227319956,-0.053326588124037,-0.14801414310932]],[[-0.0064331283792853,-0.062536835670471,-0.069250546395779],[0.01410604454577,-0.069540359079838,-0.041222404688597],[0.082454591989517,-0.0094203185290098,-0.025958778336644]],[[-0.084959633648396,0.0041598151437938,-0.054264422506094],[-0.037570185959339,-0.046398833394051,-0.047539990395308],[0.018081333488226,0.094570524990559,0.01474884711206]],[[-0.055715534836054,0.071715377271175,-0.03196232765913],[0.0058637210167944,-0.068996392190456,0.047604732215405],[-0.079419329762459,0.054705508053303,-0.021367790177464]],[[0.03373458981514,0.025924317538738,-0.0042623542249203],[0.03166214004159,0.013003576546907,0.04652077704668],[0.038983199745417,0.031906049698591,0.022061098366976]],[[0.027687884867191,0.063648104667664,0.0089254854246974],[0.016671724617481,-0.098203465342522,0.030011884868145],[-0.025564847514033,-0.074942454695702,0.03637844696641]],[[0.056698363274336,-0.041465800255537,0.016073126345873],[0.094161845743656,-0.0019466201774776,0.038701549172401],[-0.059380546212196,-0.034750584512949,0.0057255639694631]],[[-0.060218811035156,-0.02795628271997,0.025531684979796],[0.044835839420557,0.035672556608915,-0.021705511957407],[-0.023744547739625,0.0038591634947807,-0.059622969478369]],[[0.02586230263114,0.0025184855330735,-0.038094002753496],[-0.095624551177025,-0.011418525129557,0.015075406990945],[0.02026430144906,0.098144687712193,-0.032578188925982]],[[-0.00040237494977191,0.02701248601079,-0.084135219454765],[-0.026479188352823,0.00068567803828046,0.08485147356987],[0.0012960188323632,0.042368292808533,-0.082266204059124]],[[0.014618418179452,-0.02135849930346,0.046692665666342],[-0.093372508883476,0.038678828626871,0.0082381088286638],[-0.15417358279228,-0.051848590373993,0.0064898752607405]],[[-0.027177369222045,0.076706431806087,0.0062331687659025],[-0.07162494212389,-0.0041491803713143,0.040486793965101],[-0.038109075278044,-0.023114062845707,-0.086896918714046]],[[3.2948126317933e-05,-0.0080020437017083,0.024216003715992],[0.0078498916700482,-0.041032273322344,-0.024932818487287],[0.039633013308048,0.10776834189892,0.090917408466339]],[[0.010037475265563,0.068049736320972,0.079624488949776],[0.10400418937206,0.014739013276994,0.016380872577429],[-0.013972273096442,0.015647308900952,0.012112188152969]],[[0.055664554238319,0.033628977835178,0.034769758582115],[0.035822842270136,0.088963367044926,-0.023141155019403],[0.069549217820168,0.060340918600559,-0.043131247162819]],[[0.10621076077223,-0.011798940598965,0.0060016228817403],[-0.028982255607843,0.068346485495567,0.054154254496098],[0.074215203523636,0.044580705463886,-0.071146696805954]],[[0.023754805326462,-0.017777677625418,0.0033345159608871],[0.031008968129754,-0.022162964567542,0.071285083889961],[-0.0094377398490906,-0.04249519482255,0.011281032115221]],[[-0.024940585717559,-0.060475144535303,0.059735711663961],[0.015674471855164,-0.080765016376972,0.037848696112633],[-0.028651988133788,-0.10568054020405,-0.096174642443657]],[[-0.0088050086051226,-0.039777185767889,-0.062922313809395],[-0.031003149226308,0.036253824830055,-0.075869329273701],[-0.02724957279861,0.011120222508907,-0.034986428916454]],[[0.0005832037422806,-0.033357765525579,0.029104763641953],[-0.058213662356138,0.031150430440903,-0.02813814021647],[-0.019944757223129,-0.10350321978331,0.001071349484846]],[[0.077871605753899,-0.005854838527739,-0.026156729087234],[-0.055747166275978,-0.0046939761377871,0.078769840300083],[0.00049479608424008,-0.060440815985203,0.014369358308613]],[[-0.026463350281119,0.055311925709248,0.049552988260984],[-0.024461761116982,-0.016879737377167,-0.016570251435041],[-0.022881835699081,-0.035045642405748,0.030998151749372]],[[-0.010193630121648,-0.026977859437466,-0.11222517490387],[-0.029428858309984,-0.028091063722968,-0.041819736361504],[0.035231743007898,-0.027681479230523,0.036195289343596]],[[0.054378170520067,0.021880980581045,-0.051077771931887],[0.031334336847067,0.027681894600391,0.045316774398088],[0.087354362010956,0.077355712652206,0.11016485095024]],[[-0.020769728347659,0.033021911978722,0.019271356984973],[-0.02817415073514,0.054443046450615,-0.046907182782888],[0.050936087965965,0.025325730443001,-0.064169771969318]],[[0.095704801380634,-0.020104382187128,-0.05071783810854],[0.027125028893352,-0.012251803651452,0.037901554256678],[-0.0033456480596215,-0.012183472514153,-0.0031658282969147]],[[-0.049490258097649,-0.046196196228266,-0.063432797789574],[0.011065354570746,-0.085638217628002,0.003619629656896],[-0.015967005863786,-0.061869066208601,0.058192249387503]],[[-0.077915094792843,-0.014495658688247,0.027003629133105],[0.073217064142227,0.012363609857857,-0.030245378613472],[-0.022527137771249,0.011524601839483,0.058207597583532]],[[-0.1147557720542,-0.028220914304256,-0.0048045134171844],[-0.1262644380331,-0.04057078063488,0.011150093749166],[0.036629971116781,0.056008532643318,0.081904239952564]],[[0.062717415392399,-0.052093882113695,0.0061611067503691],[0.049475710839033,-0.0080285733565688,-0.025331189855933],[-0.060910947620869,0.022401995956898,-0.0024998784065247]],[[-0.031802576035261,-0.052287757396698,-0.097521565854549],[0.081758879125118,-0.01831785030663,-0.037113830447197],[0.082249514758587,0.033846240490675,0.0071697705425322]],[[0.02135793492198,-0.014162404462695,-0.063362598419189],[0.085984192788601,0.026791522279382,0.016645373776555],[0.0097024785354733,-0.041744999587536,-0.065309099853039]],[[-0.041395127773285,-0.027858775109053,0.034790325909853],[0.020055171102285,0.042357888072729,0.019008755683899],[0.01185270305723,0.044241935014725,-0.087868891656399]],[[-0.078920304775238,-0.047915488481522,0.035013888031244],[0.0030511803925037,-0.091313540935516,0.036083169281483],[-0.02510317787528,0.056747909635305,0.11885701864958]],[[0.044292543083429,-0.057568978518248,-0.038414102047682],[-0.032003372907639,0.081971198320389,-0.039742916822433],[-0.033882595598698,0.0055913254618645,-0.048341520130634]],[[-0.0274768024683,-0.038219392299652,0.020329983904958],[0.093693822622299,-0.061155442148447,-0.040646452456713],[0.017235547304153,-0.046829361468554,0.021952958777547]],[[0.08820366859436,-0.053107500076294,-0.065604664385319],[0.009114095941186,-0.0058083236217499,-0.042928487062454],[0.060327630490065,-0.061331640928984,-0.057276926934719]],[[-0.06481347233057,-0.032290700823069,0.03616289049387],[0.072542086243629,-0.036083366721869,-0.021173104643822],[-0.044807359576225,-0.0056408713571727,-0.065055094659328]],[[0.052323970943689,0.045137844979763,-0.0093584395945072],[-0.053067073225975,0.071159966289997,0.038604073226452],[0.033498097211123,0.10475171357393,-0.098674304783344]],[[0.037865072488785,0.054607193917036,-0.054458871483803],[-0.042278312146664,-0.012769626453519,-0.035220127552748],[-0.041578281670809,0.092577069997787,-0.074097566306591]],[[-0.010447329841554,-0.014546318911016,0.015280262567103],[0.081900112330914,0.068552516400814,0.0095559442415833],[-0.00090083014219999,0.01520746294409,-0.038059633225203]],[[-0.048921525478363,-0.056055296212435,-0.0049036629498005],[-0.01814042031765,0.082695059478283,-0.052341680973768],[-0.025130597874522,0.022525992244482,0.054254814982414]],[[0.018748795613647,0.0062759974971414,-0.12754710018635],[0.015993949025869,0.085611134767532,-0.0018348093144596],[-0.090535037219524,-0.021222457289696,0.023892968893051]],[[-0.016119353473186,-0.020153898745775,-0.063442580401897],[0.053523760288954,0.0090425703674555,0.044391214847565],[0.020551268011332,0.011050689034164,-0.039396829903126]],[[-0.010849243961275,-0.083613976836205,0.088734038174152],[-0.053735803812742,-0.036441508680582,-0.053597152233124],[0.01786488480866,-0.0013820324093103,-0.022178305312991]],[[0.02727185934782,0.046142838895321,0.043505486100912],[-0.034797165542841,-0.060702282935381,-0.07258402556181],[-0.019271045923233,-0.098642066121101,-0.025993971154094]],[[-0.046909920871258,-0.0012652312871069,-0.052919171750546],[-0.024208819493651,0.10461983084679,-0.042143568396568],[-0.0023576731327921,0.084996193647385,-0.0031623221002519]],[[-0.016714172437787,-0.055641021579504,0.0037320868577808],[0.024907408282161,0.0417097248137,-0.045700114220381],[0.056394662708044,0.045946516096592,-0.021306267008185]],[[-0.0057136281393468,0.0027156011201441,0.006456920877099],[0.026411589235067,0.12462488561869,0.037578016519547],[-0.064193330705166,0.038586653769016,-0.027230739593506]],[[0.013925705105066,0.012492249719799,-0.093822672963142],[-0.065308772027493,0.036354046314955,0.048157956451178],[-0.061151627451181,-0.021783417090774,0.022191159427166]],[[-0.029463345184922,-0.0033100536093116,-0.0042672255076468],[-0.031992692500353,-0.023134712129831,-0.022944835945964],[-0.081631220877171,-0.037104055285454,-0.017533116042614]],[[-0.069368220865726,-0.083369016647339,0.055964797735214],[0.073266722261906,-0.098852954804897,0.013625394552946],[-0.027519445866346,0.080883994698524,-0.028181759640574]],[[0.048250578343868,-0.04742868617177,0.031233094632626],[-0.020774682983756,0.019159069284797,0.093164831399918],[0.010882840491831,0.039411809295416,0.0087017323821783]],[[-0.10762418806553,-0.020359043031931,-0.057979367673397],[-0.0032998148817569,-0.035421185195446,-0.018995106220245],[-0.096779875457287,0.018303485587239,-0.018420137465]],[[-0.014210366643965,-0.001580129028298,-0.073150858283043],[-0.015389629639685,-0.040104482322931,0.014912221580744],[0.051638353615999,0.012131446972489,0.0030512656085193]],[[-0.0066629154607654,-0.082778289914131,-0.025343477725983],[-0.032109957188368,0.0019448483362794,-0.03682142496109],[0.0048829196020961,0.014188874512911,0.035359632223845]],[[-0.039166800677776,0.021180786192417,-0.056170970201492],[-0.017721027135849,-0.027726270258427,0.045020814985037],[-0.060976721346378,-0.060925379395485,-0.10769741237164]],[[-0.031760144978762,-0.022522207349539,-0.016639461740851],[0.053068194538355,-0.10690316557884,0.065809592604637],[-0.015608737245202,-0.045609720051289,-0.060281489044428]],[[0.079853676259518,0.0027465410530567,-0.025973200798035],[-0.059939250349998,-0.021520955488086,-0.028286853805184],[-0.062417067587376,0.082580916583538,-0.021105460822582]],[[-0.067535899579525,0.00073971535312012,-0.028909988701344],[0.056263115257025,-0.064293190836906,0.044788803905249],[0.062341969460249,0.027622582390904,0.06450393050909]],[[-0.094968162477016,-0.024577843025327,-0.029499012976885],[-0.051263421773911,-0.11330511420965,0.02008318901062],[0.02595092728734,0.0098955584689975,0.022665979340672]],[[0.062039267271757,-0.033150650560856,-0.010715815238655],[0.041733469814062,-0.0022745174355805,-0.012723812833428],[-0.024726390838623,-0.071101322770119,-0.06733799725771]],[[0.016355030238628,-0.070614822208881,-0.022810002788901],[0.025431551039219,-0.060048319399357,-0.028863592073321],[0.070756569504738,-0.10020100325346,-0.037760093808174]],[[0.051674790680408,0.025708833709359,-0.054546292871237],[0.022953864187002,0.062335338443518,-0.0037242160178721],[0.050921436399221,-0.0213857088238,0.021913904696703]],[[0.068276613950729,-0.050663702189922,-0.0013051746645942],[0.004437540192157,-0.013668424449861,-0.058781068772078],[0.063839346170425,0.038452699780464,0.010599415749311]],[[0.10089889913797,-0.040797058492899,0.026651905849576],[0.054357446730137,-0.00051088671898469,-0.090620048344135],[-0.074429057538509,-0.028025040403008,-0.026851087808609]],[[0.012911249883473,0.056113574653864,-0.0055895233526826],[-0.017091196030378,0.063849776983261,-0.056194998323917],[-0.034464247524738,-0.054279115051031,-0.077548697590828]],[[-0.10695463418961,0.060920979827642,0.056118562817574],[-0.02641705609858,-0.0043574818409979,-0.0076864259317517],[-0.0033243966754526,0.014733699150383,-0.11841938644648]],[[-0.011286930181086,0.018366631120443,-0.033993102610111],[0.030567625537515,-0.037685543298721,-0.019370619207621],[0.066757775843143,-0.011991810053587,0.079448252916336]],[[0.0054538012482226,-0.090842448174953,0.0009688549907878],[-0.011106316000223,0.077908173203468,0.020528253167868],[0.034246500581503,0.023248249664903,0.035791676491499]]],[[[0.0022436471190304,0.28026384115219,0.098579220473766],[-0.028067052364349,0.092448033392429,0.1554124802351],[0.0079303169623017,0.055269628763199,0.25687703490257]],[[-0.13391065597534,-0.050895523279905,0.082077249884605],[-0.073352821171284,0.01709171384573,0.094517886638641],[-0.0084563931450248,-0.19970400631428,-0.085024021565914]],[[0.073355495929718,-0.0076592494733632,0.23480087518692],[0.060221370309591,0.08519934117794,0.021691920235753],[0.07227747887373,0.270666629076,-0.066073723137379]],[[0.16660323739052,-0.072516158223152,-0.15943045914173],[0.18800358474255,0.19132730364799,-0.06732814759016],[0.12273598462343,0.21720583736897,-0.12558756768703]],[[-0.0073911687359214,-0.05499529838562,-0.0027967463247478],[0.13477870821953,0.073588386178017,-0.019599609076977],[0.0073616094887257,-0.072858989238739,-0.056966066360474]],[[-0.10444366931915,-0.10472199320793,-0.12430966645479],[-0.052339643239975,-0.05667132511735,-0.13941809535027],[0.25346338748932,0.09924028813839,-0.020010342821479]],[[-0.089872792363167,0.033991437405348,-0.12898306548595],[0.0057582794688642,-0.042252000421286,0.037528701126575],[0.16960979998112,-0.14812889695168,0.12202750146389]],[[0.10556310415268,0.022051256150007,0.15830966830254],[-0.027127018198371,0.05816050991416,0.068213731050491],[0.051651999354362,0.035903196781874,-0.12914642691612]],[[-0.0071182535029948,0.12788231670856,0.13453164696693],[0.01457435823977,0.17574435472488,0.17542490363121],[-0.084714569151402,0.16109070181847,-0.072753459215164]],[[0.069354899227619,0.07735002040863,-0.27638438344002],[-0.00067439209669828,-0.12829674780369,-0.07745073735714],[0.17676146328449,0.032366368919611,0.12478442490101]],[[0.085507646203041,-0.091112375259399,0.076162233948708],[0.085182659327984,0.016658214852214,0.0014825635589659],[0.091041058301926,0.017658159136772,-0.0046468735672534]],[[0.16492280364037,0.047186009585857,0.26208019256592],[0.10749966651201,-0.17681826651096,-0.03492371737957],[-0.052125994116068,0.091797664761543,0.020383451133966]],[[-0.16236419975758,0.01654302328825,0.065965309739113],[-0.1428681910038,0.098601713776588,0.13291573524475],[-0.015230355784297,-0.13938944041729,-0.11367533355951]],[[-0.10117466002703,-0.028395231813192,-0.076578885316849],[-0.07307305932045,0.012320565059781,-0.074923604726791],[-0.0075137419626117,0.012746070511639,-0.040587980300188]],[[0.15399575233459,0.024902146309614,-0.20292496681213],[0.10174881666899,0.11644503474236,0.1203905493021],[0.032729778438807,-0.17986564338207,-0.13924786448479]],[[0.11069478839636,-0.11632537841797,0.0052094347774982],[0.18593706190586,0.0069890995509923,-0.035641886293888],[0.026513198390603,0.023087346926332,0.067921601235867]],[[0.061288025230169,-0.018625551834702,-0.2899366915226],[-0.013652358204126,-0.15165834128857,-0.11516755074263],[0.088656164705753,0.057080827653408,-0.08408696949482]],[[0.088994644582272,-0.13096418976784,-0.10165636986494],[0.036484688520432,-0.057043444365263,-0.036960396915674],[-0.10388749092817,-0.079382926225662,0.054794978350401]],[[0.10714018344879,0.037110574543476,-0.032302364706993],[0.068534411489964,0.030863674357533,-0.089960008859634],[-0.064017847180367,-0.025715868920088,-0.12643951177597]],[[-0.25486749410629,-0.039921741932631,0.12801590561867],[-0.18045775592327,-0.13944385945797,-0.041302286088467],[-0.17172966897488,-0.13807678222656,-0.092219263315201]],[[-0.12686325609684,-0.07989015430212,-0.14373409748077],[-0.17128939926624,0.042946703732014,-0.2361900806427],[-0.094193488359451,-0.21586388349533,-0.077530071139336]],[[-0.10259467363358,0.077256850898266,0.020453719422221],[0.18948599696159,-0.085290357470512,-0.19711028039455],[-0.034848790615797,-0.053965136408806,-0.11116621643305]],[[0.089294083416462,0.023493180051446,0.0047789253294468],[0.026427889242768,0.073966026306152,-0.02615967951715],[-0.05997521430254,0.090320602059364,-0.0073587629012764]],[[-0.088009729981422,-0.031660825014114,-0.078748978674412],[0.020401358604431,-0.015097726136446,0.0081821223720908],[-0.19073584675789,0.073178380727768,-0.13012892007828]],[[0.11927648633718,-0.17632183432579,-0.089776426553726],[0.27250412106514,-0.048526450991631,0.016271010041237],[0.23349951207638,-0.10684961825609,-0.21639207005501]],[[-0.062358312308788,0.14825995266438,0.06646678596735],[0.0061203017830849,-0.05727705731988,-0.02350995503366],[0.32989239692688,-0.1926131695509,-0.11884790658951]],[[-0.016263470053673,-0.0052839107811451,0.31904777884483],[-0.15030831098557,0.091262422502041,0.20332963764668],[-0.2341234087944,0.16666650772095,0.10797864198685]],[[-0.025534462183714,0.13551446795464,0.091777957975864],[-0.0063285366632044,0.17767821252346,-0.17621228098869],[-0.035595986992121,-0.0086417952552438,-0.12555280327797]],[[-0.10951732099056,-0.0076346006244421,0.14238576591015],[-0.059113893657923,-0.083251349627972,0.015520258806646],[0.086402885615826,-0.026246389374137,0.13621084392071]],[[-0.034156281501055,0.0032784789800644,0.072629556059837],[-0.079231843352318,0.071804165840149,0.041947524994612],[0.00019273198267911,-0.19370852410793,-0.28269901871681]],[[-0.063004404306412,-0.10712679475546,0.016384413465858],[-0.2188411206007,0.074468284845352,0.12187916785479],[-0.24799561500549,-0.098321013152599,-0.084986135363579]],[[-0.0032629389315844,-0.037145715206861,0.0222970508039],[0.068508751690388,-0.10151638090611,0.016707306727767],[0.23283992707729,0.069816537201405,0.14838017523289]],[[0.10623001307249,0.033910196274519,-0.19963385164738],[0.085256174206734,-0.064415812492371,-0.18456542491913],[-0.08595285564661,-0.057498052716255,0.029024858027697]],[[0.019401418045163,0.12604044377804,-0.05269817262888],[0.049957636743784,0.067997857928276,-0.0079974476248026],[0.10111394524574,-0.12935101985931,0.11896508932114]],[[-0.037092704325914,-0.1534713357687,-0.10355231165886],[0.02898439206183,-0.11335934698582,0.018546955659986],[-0.061793923377991,-0.029897622764111,0.051648400723934]],[[0.019813243299723,-0.028227841481566,0.026696102693677],[-0.21201686561108,-0.059818960726261,-0.17038834095001],[-0.23071835935116,-0.080459132790565,-0.041793882846832]],[[-0.12353777140379,0.16889497637749,0.055085353553295],[-0.083461329340935,-0.14272414147854,-0.16226428747177],[-0.065857887268066,-0.11464732140303,-0.1874622553587]],[[0.063350163400173,-0.0064010280184448,-0.05128250643611],[0.025106385350227,-0.11429526656866,0.062884829938412],[0.11083850264549,-0.052950832992792,0.059049975126982]],[[0.075978860259056,-0.010985502973199,0.0098258946090937],[-0.034810654819012,0.078312657773495,-0.074333317577839],[-0.12585660815239,0.01058341562748,0.12117148190737]],[[-0.0025095236487687,0.020321751013398,0.098442569375038],[0.015794930979609,0.073977872729301,0.11364272981882],[0.23231670260429,0.029213165864348,-0.027307210490108]],[[0.051998056471348,-0.11225792765617,0.01170118432492],[-0.21431390941143,-0.026776701211929,-0.19871342182159],[0.022971292957664,-0.29344043135643,-0.11792247742414]],[[0.019294520840049,-0.074345767498016,-0.066844090819359],[0.027445904910564,0.054186720401049,0.16604839265347],[-0.16307945549488,0.18228471279144,0.29292330145836]],[[-0.082316510379314,0.10559251904488,0.0025235689245164],[0.0050828191451728,-0.021093035116792,-0.095345176756382],[0.070690326392651,0.18664026260376,-0.061265386641026]],[[0.044165447354317,-0.01011417992413,0.12004963308573],[-0.083873607218266,0.0532446205616,0.071914158761501],[0.010226886719465,0.035627588629723,0.14679944515228]],[[0.093845255672932,-0.13066828250885,-0.22608290612698],[-0.067521467804909,0.070210963487625,-0.13642013072968],[-0.18700011074543,0.19321738183498,0.015877269208431]],[[0.18390446901321,0.14326551556587,-0.073662236332893],[0.16846016049385,0.0095514543354511,-0.086474277079105],[0.081584371626377,0.18186876177788,-0.1147747784853]],[[-0.15549968183041,0.17773923277855,0.088499493896961],[-0.043109677731991,0.10473281145096,0.0086466949433088],[0.22800512611866,0.058104585856199,-0.0057393810711801]],[[-0.087914124131203,0.069573178887367,0.17604230344296],[0.063259117305279,0.084244430065155,-0.018304035067558],[-0.057211816310883,0.18516086041927,0.1092811524868]],[[-0.042634338140488,0.020547538995743,-0.054760210216045],[0.0664983689785,0.036169156432152,-0.10762480646372],[0.053579740226269,-0.25224784016609,0.0085428291931748]],[[-0.011469905264676,0.010750539600849,0.023706361651421],[-0.0057586655020714,0.008444462902844,-0.097818747162819],[-0.082726269960403,-0.0034307423047721,0.036598138511181]],[[-0.042237095534801,0.016837375238538,-0.095766969025135],[0.19672453403473,0.0040780501440167,-0.065943978726864],[0.16513372957706,-0.027292612940073,0.04054631665349]],[[0.059263173490763,0.026979414746165,-0.0086633116006851],[-0.075150348246098,-0.15715061128139,-0.045747056603432],[-0.12184420973063,-0.036545284092426,0.0092298602685332]],[[0.044690545648336,-0.1853328794241,-0.088186658918858],[0.024969356134534,-0.053928136825562,-0.041783660650253],[-0.071684762835503,0.033781964331865,0.071137458086014]],[[-0.15297029912472,0.0036003810819238,-0.011956443078816],[-0.12871873378754,0.11841898411512,-0.11997782438993],[-0.11931695044041,-0.0062995962798595,-0.29746675491333]],[[-0.23636771738529,0.12676522135735,-0.072661362588406],[-0.070331811904907,0.070442065596581,-0.028600068762898],[-0.010095773264766,0.034583617001772,0.08387853205204]],[[-0.091959610581398,-0.022997535765171,-0.062134884297848],[-0.018259022384882,-0.011811028234661,0.087453588843346],[-0.029451413080096,-0.20359501242638,-0.14254596829414]],[[0.062255758792162,-0.00025127470144071,0.10985436290503],[-0.16944035887718,-0.032980002462864,0.19921784102917],[-0.40602487325668,-0.12826012074947,0.035363610833883]],[[0.01820906996727,-0.10152862966061,0.04370179772377],[0.10423614829779,-0.17653031647205,-0.10675071179867],[-0.099631831049919,0.02391148544848,-0.054661940783262]],[[0.028045743703842,-0.086035557091236,-0.3787769973278],[0.099657490849495,-0.091433994472027,-0.33954536914825],[0.10873055458069,-0.10493006557226,-0.0053637572564185]],[[-0.064335152506828,-0.053195938467979,-0.17121703922749],[-0.14952875673771,-0.093151330947876,0.0032877929043025],[-0.082651935517788,-0.033201020210981,-0.0011732772691175]],[[-0.093312561511993,-0.05939557030797,-0.24146354198456],[-0.018756009638309,0.030182607471943,-0.15402190387249],[-0.070915006101131,-0.093853160738945,-0.27595528960228]],[[-0.057467218488455,0.1112797409296,-0.072904594242573],[-0.058610718697309,0.049924150109291,0.019777229055762],[-0.19532109797001,0.043149199336767,-0.10270582139492]],[[-0.029262103140354,-0.018538679927588,-0.23905403912067],[0.059336189180613,-0.065384767949581,-0.014343082904816],[0.22252213954926,-0.015032555907965,-0.19521160423756]],[[0.018827650696039,-0.17212852835655,0.12974545359612],[0.1457521468401,-0.040614139288664,-0.060819111764431],[0.027555109933019,-0.052028305828571,-0.00032278065918945]],[[0.01677337102592,-0.11871272325516,-0.08919844776392],[-0.013244706206024,-0.043815813958645,0.096943490207195],[-0.12406864762306,0.12312189489603,0.1885704100132]],[[0.018500976264477,0.14233291149139,0.021117962896824],[-0.011854946613312,-0.045426148921251,0.15756370127201],[-0.034156728535891,-0.077007651329041,0.090494185686111]],[[-0.011802130378783,0.087605558335781,0.055153552442789],[0.20067998766899,-0.026426993310452,-0.21913808584213],[0.21085719764233,-0.30763590335846,-0.026756159961224]],[[-0.18410558998585,-0.090876154601574,-0.09535214304924],[0.11810683459044,-0.023050079122186,-0.10002198070288],[0.086939699947834,-0.025134645402431,-0.10296931862831]],[[-0.23959060013294,-0.12114195525646,0.13077872991562],[-0.29488757252693,-0.19691987335682,0.12707088887691],[-0.18816880881786,-0.27528873085976,0.074096225202084]],[[-0.019994029775262,-0.1064997240901,-0.11455496400595],[-0.091521970927715,-0.0082497159019113,0.079104065895081],[-0.048423767089844,-0.06346532702446,-0.22344174981117]],[[0.10592551529408,-0.015355132520199,-0.014934061095119],[-0.072467811405659,0.10215925425291,-0.12836809456348],[-0.088126547634602,0.016985826194286,-0.15465088188648]],[[-0.010848387144506,-0.009160753339529,0.10469490289688],[0.05414617061615,0.19803553819656,-0.10430631786585],[0.083545662462711,0.16764514148235,-0.043314095586538]],[[0.045588687062263,-0.16798649728298,-0.018934296444058],[-0.059377424418926,-0.1048244535923,-0.090022951364517],[-0.11157069355249,-0.20326671004295,-0.13983407616615]],[[0.14384543895721,0.25455194711685,0.16064594686031],[0.15285150706768,0.077185802161694,-0.1438594609499],[-0.18864069879055,0.15764205157757,0.072307467460632]],[[-0.23578934371471,-0.089330330491066,-0.10547210276127],[-0.13901294767857,-0.34857562184334,-0.090858340263367],[-0.3280568420887,-0.12951603531837,-0.16899774968624]],[[-0.37555047869682,-0.026938339695334,0.12085144221783],[-0.18020583689213,-0.070987120270729,0.19801370799541],[-0.24656158685684,-0.022115938365459,0.14655371010303]],[[0.15033802390099,0.23336684703827,-0.076316185295582],[-0.22714218497276,-0.11235349625349,-0.020649692043662],[-0.090076856315136,-0.24585150182247,-0.12660455703735]],[[-0.082377329468727,-0.1753047555685,-0.048547729849815],[-0.13553448021412,0.071042284369469,-0.092187009751797],[-0.15013740956783,0.11613728106022,-0.060290858149529]],[[-0.0079834116622806,0.022818209603429,0.1255748718977],[0.080387741327286,-0.016045419499278,-0.064011223614216],[-0.021858301013708,0.041186220943928,-0.062982432544231]],[[-0.23227922618389,0.039101004600525,0.064528577029705],[-0.28429800271988,-0.10629037767649,-0.031555991619825],[-0.14211057126522,1.2590931874001e-05,0.043179631233215]],[[0.28370478749275,-0.032993301749229,0.1725385338068],[-0.0035676527768373,0.083350896835327,-0.043996978551149],[-0.05123645812273,-0.053859882056713,-0.051649086177349]],[[0.02761510014534,-0.05543690174818,-0.11732245236635],[-0.13502283394337,0.12544998526573,0.10774554312229],[-0.066068768501282,-0.031237233430147,0.14209146797657]],[[0.0036543365567923,0.075022779405117,-0.12845098972321],[-0.11382951587439,0.014037130400538,-0.037544794380665],[-0.23306196928024,-0.095765210688114,0.039285000413656]],[[0.10123874247074,-0.056117616593838,-0.153434202075],[0.10068206489086,-0.046262938529253,-0.057346817106009],[0.20741236209869,0.034697446972132,-0.14168813824654]],[[-0.082454018294811,0.028147123754025,-0.11740381270647],[0.11413560062647,-0.040038421750069,-0.077797517180443],[-0.041112065315247,-0.12249021232128,0.016695357859135]],[[0.029773704707623,0.032966434955597,-0.12605294585228],[0.06308626383543,0.21124583482742,-0.10178007185459],[0.099451549351215,-0.0039248089306056,-0.013173842802644]],[[0.094361320137978,-0.15379343926907,-0.17356507480145],[-0.053568206727505,0.015767620876431,0.11969393491745],[0.20630456507206,0.075293570756912,-0.21469008922577]],[[0.090551346540451,0.1362883746624,-0.15956947207451],[0.075613349676132,0.026392761617899,-0.18839171528816],[0.11888544261456,0.060166142880917,-0.13437575101852]],[[-0.0632319226861,0.22082549333572,-0.15245190262794],[-0.034506309777498,0.26467046141624,0.055538050830364],[-0.21627615392208,0.07132188975811,0.12662300467491]],[[0.15754084289074,0.012349301949143,-0.0092771481722593],[0.12179497629404,0.053237404674292,0.16293922066689],[-0.052355978637934,-0.038848776370287,-0.045458991080523]],[[0.13129489123821,0.092374593019485,0.041233234107494],[-0.0120286392048,0.15046122670174,0.15199537575245],[0.1136529892683,-0.15891121327877,-0.087610997259617]],[[0.06966008991003,0.10070937126875,-0.22232441604137],[-0.037537261843681,0.0098806414753199,-0.31599608063698],[0.21828657388687,0.018213875591755,0.039412476122379]],[[0.073721803724766,-0.20004731416702,0.025866689160466],[0.065345801413059,-0.12982054054737,-0.02578960172832],[-0.084613814949989,0.01949873007834,0.061680939048529]],[[-0.0075156227685511,-0.20508566498756,-0.011113959364593],[0.0052838250994682,0.010040464811027,-0.08976723998785],[0.050182346254587,0.031380217522383,0.045134741812944]],[[-0.13398090004921,0.12890188395977,0.099586851894855],[-0.13393439352512,0.12019158899784,0.097619377076626],[-0.030044062063098,0.074309527873993,-0.026618998497725]],[[0.036949969828129,-0.15611009299755,0.040504090487957],[-0.13696871697903,0.00020527436572593,-0.06711433827877],[0.21774725615978,-0.0095832496881485,-0.078285530209541]],[[-0.15409429371357,-0.10864210128784,-0.068404644727707],[-0.13206444680691,-0.082035139203072,-0.13830575346947],[-0.15663899481297,-0.073324471712112,-0.062601752579212]],[[-0.036225266754627,0.027229037135839,0.05233246460557],[-0.14626687765121,0.051730420440435,0.055108532309532],[-0.083798453211784,-0.090139113366604,0.28441941738129]],[[0.1015957519412,0.0038483135867864,0.004582510329783],[0.15166658163071,0.09601803123951,0.096345812082291],[0.20165169239044,-0.0064598638564348,0.13241963088512]],[[0.059881422668695,-0.05480395630002,0.055810112506151],[-0.057074513286352,-0.14318780601025,0.11023270338774],[-0.011797190643847,0.11599808931351,0.085944257676601]],[[0.21960471570492,-0.17205525934696,0.03535782918334],[0.14219266176224,-0.013080598786473,0.0022089220583439],[0.28290215134621,0.11254327744246,0.033221479505301]],[[0.15511271357536,0.092944599688053,-0.10316424816847],[0.10782837867737,-0.16688147187233,-0.13647775352001],[0.15777426958084,0.0008821563096717,-0.1331722587347]],[[0.13382789492607,0.096749916672707,0.0018848569598049],[-0.043255243450403,-0.036845866590738,-0.087820440530777],[0.086816340684891,-0.045296631753445,0.098585948348045]],[[0.16144078969955,0.031669456511736,0.031251937150955],[0.028676103800535,0.087282955646515,-0.0056829354725778],[0.023716438561678,-0.078364536166191,-0.045143630355597]],[[-0.0248704534024,-0.15095987915993,0.063780263066292],[-0.028516165912151,-0.17654649913311,0.096409440040588],[-0.12521436810493,-0.15248176455498,-0.028631145134568]],[[-0.17256118357182,0.003016285598278,-0.18227465450764],[-0.083727285265923,0.048318531364202,0.10622865706682],[-0.05430955067277,-0.16387328505516,0.30390772223473]],[[-0.25301855802536,-0.016843318939209,0.2332716435194],[-0.17774905264378,-0.01033073477447,0.1689538359642],[0.008039677515626,-0.012216766364872,0.21176494657993]],[[0.11454381048679,0.080308303236961,-0.0068293935619295],[-0.041192382574081,0.103929489851,-0.059956010431051],[-0.07181741297245,-0.067703314125538,0.026838785037398]],[[0.034722223877907,0.068685039877892,0.30536478757858],[0.069644331932068,0.0127565683797,0.12210669368505],[-0.036775100976229,0.0072520105168223,-0.036281522363424]],[[0.077963292598724,-0.065472230315208,-0.085850454866886],[-0.061388913542032,-0.12395284324884,0.05349625274539],[-0.11906646192074,-0.073769629001617,0.024426510557532]],[[0.045236606150866,0.080388315021992,-0.16377118229866],[0.085480466485023,-0.09855367988348,-0.15262497961521],[0.11583913117647,-0.015563541091979,-0.044668316841125]],[[-0.0097667016088963,0.061859507113695,-0.13370597362518],[-0.040004909038544,-0.021623866632581,-0.16468025743961],[-0.14236627519131,-0.1799178570509,-0.16250723600388]],[[-0.22378584742546,0.038192208856344,-0.047000635415316],[-0.22047474980354,0.087417170405388,0.08815873414278],[-0.083873562514782,0.087325699627399,0.08760803937912]],[[0.059826906770468,0.0632104575634,0.13198329508305],[0.093034856021404,0.018931163474917,0.12226893752813],[0.0095922267064452,0.026713136583567,0.020152725279331]],[[-0.20425556600094,-0.011332575231791,0.23048940300941],[0.020762899890542,0.019091855734587,0.1431045383215],[0.12449219077826,0.037931442260742,-0.00039820084930398]],[[-0.25994783639908,0.044701714068651,-0.027171602472663],[-0.073288798332214,-0.0047444347292185,-0.11234313249588],[-0.18594959378242,0.10696489363909,-0.10158050060272]],[[0.026472229510546,0.053200945258141,0.099537558853626],[0.042234178632498,-0.068600848317146,0.096406325697899],[0.10422267019749,-0.11606279760599,0.18545328080654]],[[0.21674171090126,0.049702618271112,0.24704341590405],[-0.039661414921284,-0.035045828670263,0.0080667342990637],[0.11116733402014,-0.051480531692505,-0.15753474831581]],[[0.068832412362099,-0.1681781411171,-0.051196631044149],[0.0426842905581,-0.031264364719391,-0.042345810681581],[-0.012159651145339,-0.17276382446289,-0.068161867558956]],[[-0.054740481078625,-0.047948013991117,0.021066373214126],[-0.14275017380714,0.0078482143580914,-0.044634450227022],[-0.1161038056016,0.13692925870419,0.11565668880939]],[[0.053601447492838,-0.1512518376112,-0.26531916856766],[-0.046490855515003,0.005750447511673,0.05074467882514],[0.099328108131886,0.15418434143066,0.055800206959248]],[[-0.15041972696781,0.05566368624568,0.00076682138023898],[-0.037415102124214,0.21143186092377,-0.014226781204343],[-0.044444173574448,0.33059421181679,0.15810368955135]],[[0.025712816044688,-0.051864393055439,0.06858517229557],[0.079349547624588,-0.030786298215389,-0.059767264872789],[0.04206445813179,-0.11479091644287,-0.035743322223425]],[[-0.0074486304074526,0.0259047485888,0.034011378884315],[0.095814377069473,-0.078791029751301,0.016039658337831],[0.38319835066795,-0.05802883207798,0.0029319780878723]],[[0.095086060464382,-0.19228830933571,-0.030450545251369],[-0.009711679071188,-0.089805647730827,-0.030539216473699],[0.059682086110115,-0.070737048983574,0.12679497897625]],[[0.071418263018131,0.090933866798878,-0.12505623698235],[0.048754278570414,-0.047337576746941,-0.059358142316341],[0.032828222960234,0.043915826827288,0.017473408952355]],[[-0.1241070702672,-0.18574230372906,0.040772706270218],[0.10412296652794,0.063498340547085,0.10289762169123],[0.011758854612708,-0.090642526745796,-0.045701313763857]],[[0.10947799682617,0.050737280398607,0.065472595393658],[0.043867513537407,0.09188474714756,0.10373076796532],[-0.098078384995461,0.072765983641148,0.059124849736691]]],[[[-0.041057422757149,-0.12475507706404,-0.16866245865822],[-0.066542521119118,-0.095675848424435,0.085908614099026],[0.043344985693693,0.08454492688179,-0.14404593408108]],[[-0.15563406050205,-0.069706112146378,0.10541532933712],[0.11159280687571,0.039429299533367,0.018997840583324],[0.14886020123959,-0.015782298520207,-0.18972563743591]],[[0.13823318481445,0.072834730148315,0.043064799159765],[0.27043533325195,0.085494250059128,0.076722487807274],[-0.082114152610302,0.16538301110268,0.0093582374975085]],[[-0.053806714713573,-0.089244924485683,-0.11205434054136],[0.010580187663436,-0.12881104648113,0.087471537292004],[0.022930514067411,-0.16999404132366,-0.093983627855778]],[[0.2360972315073,0.12888944149017,-0.0099274469539523],[0.095835492014885,-0.069331556558609,-0.11766515672207],[-0.06003113090992,0.041620444506407,-0.099437735974789]],[[0.072184674441814,-0.085185542702675,0.036721970885992],[-0.069886468350887,0.00049430516082793,-0.061905156821012],[0.14260646700859,0.048797078430653,0.057520918548107]],[[0.17017140984535,0.041242111474276,0.0860386043787],[-0.091231934726238,-0.0038340853061527,0.0876105427742],[0.031876560300589,0.070712715387344,0.014299566857517]],[[-0.22430135309696,-0.034097362309694,-0.00051199307199568],[-0.20496790111065,0.121821179986,0.36962825059891],[0.1247191131115,-0.047122582793236,-0.029557591304183]],[[-0.062405653297901,-0.17113888263702,-0.061615940183401],[0.011455559171736,-0.024262264370918,-0.089520342648029],[-0.074465274810791,0.12078911066055,0.0089098373427987]],[[0.17912831902504,-0.019508950412273,-0.21410584449768],[-0.0032376237213612,-0.1492607742548,0.042270328849554],[-0.057810623198748,0.054495193064213,0.045290548354387]],[[-0.04662923887372,-0.014316352084279,0.13123862445354],[-0.072368174791336,-0.073406487703323,0.081088803708553],[0.039005525410175,-0.075194895267487,0.074213691055775]],[[0.092480458319187,0.057975102216005,0.15679015219212],[-0.013755884021521,0.0040597440674901,-0.10620203614235],[0.092139951884747,0.053305640816689,0.096892021596432]],[[0.12688145041466,0.025507522746921,-0.077672600746155],[0.091246120631695,-0.20517857372761,-0.012746699154377],[-0.07876992225647,-0.030883859843016,-0.023704079911113]],[[0.043910082429647,-0.12161964178085,-0.0024816137738526],[0.11612842977047,0.1771577745676,-0.10721639543772],[0.11293335258961,0.09797128289938,0.11688961833715]],[[-0.084797710180283,0.10666221380234,0.049981147050858],[0.05166706815362,0.065176256000996,0.13217885792255],[-0.029358340427279,0.017204012721777,0.056445345282555]],[[0.094463095068932,0.05457091704011,-0.12573209404945],[0.2032882720232,-0.10380859673023,-0.19970078766346],[0.038383632898331,-0.1100567355752,-0.062026169151068]],[[-0.02177145332098,-0.14359375834465,0.00091145921032876],[0.050917025655508,-1.6938251064857e-05,-0.030889654532075],[-0.11322400718927,0.0024044143501669,-0.11700122058392]],[[-0.0050655142404139,0.064895540475845,-0.019077051430941],[0.0066941417753696,0.055791292339563,0.093095853924751],[-0.02197191119194,0.055241450667381,0.10258817672729]],[[0.159628495574,0.096828684210777,-0.022682029753923],[0.051419097930193,0.080931410193443,0.13535413146019],[-0.10846656560898,-0.043225716799498,0.022239176556468]],[[0.096446678042412,-0.088849037885666,0.069063976407051],[-0.017993584275246,-0.051957476884127,0.14179360866547],[0.091190181672573,0.077359326183796,-0.11724607646465]],[[-0.0052342778071761,0.037223059684038,-0.099720172584057],[-0.088150732219219,-0.081125363707542,0.052761886268854],[-0.29690188169479,0.055460765957832,0.050033964216709]],[[0.016012419015169,0.0169597286731,-0.028246598318219],[0.088727988302708,0.13478147983551,-0.012466661632061],[-0.038470719009638,0.056557107716799,0.030723566189408]],[[0.0051547782495618,-0.01283429004252,-0.096785135567188],[-0.13435627520084,-0.018516337499022,0.0089016668498516],[0.043411992490292,0.10689118504524,0.1655226200819]],[[-0.091554507613182,-0.093106098473072,0.018148366361856],[-0.14521783590317,-0.11475072056055,0.068861916661263],[0.073974847793579,-0.12803815305233,-0.074121981859207]],[[0.19394047558308,0.021296493709087,0.10758510231972],[0.075956366956234,0.11898620426655,0.079088516533375],[0.0021486598998308,-0.038496244698763,-0.029333140701056]],[[-0.014462322928011,-0.011258263140917,0.031823191791773],[0.044850509613752,-0.0053207636810839,-0.029653530567884],[-0.08979856222868,-0.013634663075209,0.098316483199596]],[[0.025200260803103,0.053044084459543,0.011001866310835],[-0.057912077754736,0.038065314292908,0.10976243764162],[0.061753589659929,-0.011994071304798,-0.0414775647223]],[[0.00017206091433764,0.017134200781584,-0.096208140254021],[-0.026935303583741,0.00082798075163737,-0.072103478014469],[0.13053223490715,0.11925721168518,-0.080179512500763]],[[-0.11619345843792,-0.12862849235535,-0.086669690907001],[-0.05710170045495,-0.10783853381872,-0.09422941505909],[0.028713708743453,-0.14265094697475,-0.023231340572238]],[[0.12727703154087,-0.014598747715354,0.13369455933571],[-0.081024572253227,0.062942050397396,-0.075743779540062],[-0.054185546934605,-0.11360646784306,-0.056368831545115]],[[-0.07241166383028,-0.049152061343193,0.03328962624073],[0.062909558415413,-0.096154719591141,-0.10726774483919],[-0.0097146173939109,0.033089946955442,-0.097229659557343]],[[-0.095673434436321,-0.094846278429031,0.093895740807056],[-0.0095501663163304,-0.069551922380924,0.045233156532049],[0.091303326189518,0.036674439907074,0.085943795740604]],[[-0.069857314229012,-0.19133029878139,-0.19988633692265],[0.077940806746483,-0.049945905804634,0.035438228398561],[-0.094546750187874,0.1201661452651,0.094803892076015]],[[0.17885985970497,-0.20455193519592,-0.05873404815793],[-0.027671428397298,-0.029682375490665,0.03094289265573],[-0.29737392067909,-0.097188428044319,0.066886231303215]],[[0.11425922811031,0.023128310218453,-0.17673681676388],[-0.041913785040379,-0.15313681960106,-0.032048348337412],[0.088680490851402,0.017674036324024,-0.19413113594055]],[[-0.18464496731758,0.061490587890148,-0.0033723306842148],[-0.080827191472054,-0.078457832336426,-0.065052695572376],[-0.048170048743486,0.12195341289043,-0.0096507295966148]],[[0.07881686091423,-0.071905538439751,0.080190978944302],[0.0071385111659765,0.015593821182847,-0.0085587445646524],[-0.058587435632944,0.046607654541731,0.039248865097761]],[[0.09137898683548,-0.050446707755327,-0.14458383619785],[-0.061542183160782,-0.16287872195244,-0.075188830494881],[0.054137896746397,-0.18366785347462,-0.076152488589287]],[[-0.086326032876968,0.062041454017162,0.086747631430626],[-0.091481037437916,0.07139690965414,-0.050711121410131],[0.12998221814632,0.026048002764583,-0.063885718584061]],[[0.01396272983402,0.0070738825015724,-0.056132011115551],[-0.069956384599209,-0.075987234711647,0.016962788999081],[0.063191451132298,0.093253903090954,0.051108822226524]],[[0.16928841173649,0.074350818991661,0.065343178808689],[0.17401373386383,0.071662582457066,-0.1338479667902],[-0.0084545342251658,-0.10901130735874,-0.050697453320026]],[[-0.13253837823868,-0.0913280621171,0.065639495849609],[-0.019872780889273,0.10169667750597,0.12973481416702],[-0.11210252344608,0.044699497520924,0.026713687926531]],[[0.022044967859983,-0.09505932033062,0.050980795174837],[-0.031415697187185,-0.22975125908852,-0.034494519233704],[0.020060008391738,0.041707262396812,0.020188832655549]],[[-0.045420680195093,-0.06877413392067,-0.073689676821232],[0.049499146640301,-0.053718261420727,0.0059177880175412],[0.02095639705658,0.040141381323338,-0.07053891569376]],[[0.27100959420204,0.070056572556496,0.017792984843254],[-0.13170090317726,-0.14417596161366,-0.12897779047489],[-0.049965534359217,-0.018012546002865,0.032651703804731]],[[0.072116412222385,0.13096877932549,0.061888996511698],[-0.055330399423838,-0.064248733222485,0.0052852532826364],[-0.02557766251266,-0.052175536751747,-0.028791258111596]],[[-0.056053377687931,-0.10949212312698,-0.12405267357826],[-0.051734931766987,0.059093281626701,-0.10688328742981],[0.05547496676445,0.071992374956608,0.0094056241214275]],[[-0.059004709124565,-0.056346096098423,0.067414276301861],[-0.061436727643013,0.03292740136385,-0.058347646147013],[0.21196888387203,-0.040724206715822,0.029801595956087]],[[-0.22367300093174,-0.11894740909338,0.076625846326351],[-0.15695238113403,0.04608054459095,-0.076143704354763],[-0.032870024442673,0.015878681093454,0.033422589302063]],[[-0.029818873852491,-0.1605474203825,-0.1212390139699],[-0.19897620379925,-0.020850198343396,0.053524293005466],[0.014730675145984,-0.064397312700748,0.086667194962502]],[[-0.030071334913373,0.0087107103317976,-0.1151103451848],[-0.028189554810524,0.053035985678434,-0.061589527875185],[0.11862799525261,0.081188447773457,-0.19408151507378]],[[0.050062585622072,-0.16536115109921,-0.00078011356526986],[0.073855467140675,-0.066893242299557,-0.013677490875125],[0.10573948919773,0.19574858248234,0.014472029171884]],[[0.028258750215173,0.0087751429527998,-0.25083094835281],[0.046512622386217,-0.039350491017103,-0.15028309822083],[-0.02506790868938,-0.01056151278317,-0.020686909556389]],[[0.088576108217239,-0.1007187962532,-0.069468334317207],[0.037766832858324,0.085176855325699,0.084569223225117],[0.0026413341984153,0.02060073427856,-0.1495732665062]],[[0.17722053825855,-0.13898810744286,-0.16722643375397],[0.057085089385509,0.022468261420727,-0.005475765094161],[0.055942974984646,-0.038634814321995,0.088330417871475]],[[0.14781881868839,-0.22156509757042,-0.08454055339098],[-0.16994315385818,0.001498440396972,-0.054706029593945],[0.0051757306791842,-0.078415133059025,0.039189871400595]],[[-0.031935516744852,-0.021290624514222,-0.0022317313123494],[0.26386100053787,-0.033746793866158,0.0053801257163286],[-0.093093246221542,0.085109904408455,-0.19860212504864]],[[-0.066158808767796,-0.044107023626566,-0.19023643434048],[0.1504348218441,-0.045243695378304,-0.18053403496742],[-0.079183921217918,-0.13250303268433,0.0074392152018845]],[[0.0027960783336312,-0.10470481961966,-0.039219349622726],[-0.11498007923365,-0.085536509752274,-0.14850400388241],[0.011782020330429,-0.045586168766022,0.10226464271545]],[[0.074664212763309,0.043852150440216,0.04040515050292],[0.19438329339027,0.051186133176088,-0.16353741288185],[-0.058977331966162,-0.018917361274362,0.0057625616900623]],[[0.028626650571823,-0.12133227288723,-0.091942861676216],[-0.095409467816353,0.030745914205909,0.016742968931794],[0.036484081298113,-0.041633684188128,-0.11724285781384]],[[-0.0019096520263702,-0.097192928195,-0.077072404325008],[0.16601359844208,-0.24855560064316,-0.020887803286314],[0.0050414623692632,0.02237132564187,-0.065954744815826]],[[1.0956194273604e-05,-0.015905071049929,0.072590447962284],[0.023507103323936,-0.044407594949007,0.011720315553248],[0.12916511297226,0.086727529764175,0.053305711597204]],[[-0.15753877162933,0.11351803690195,0.13816402852535],[-0.018268609419465,0.16507357358932,0.043651930987835],[-0.049411837011576,0.080654039978981,0.0030180800240487]],[[0.10829149186611,-0.033551260828972,0.090367093682289],[0.063884973526001,-0.16735136508942,-0.06690638512373],[-0.014979823492467,-0.060469746589661,0.11943927407265]],[[-0.080477058887482,0.085551291704178,-0.018706588074565],[-0.1088200211525,0.026080789044499,-0.1641181409359],[-0.08051348477602,-0.13815414905548,-0.064657188951969]],[[0.36001318693161,-0.064231939613819,-0.265923589468],[0.07990999519825,-0.010512052103877,0.061996653676033],[0.20363153517246,-0.051321696490049,-0.071657903492451]],[[-0.11994230002165,-0.12517458200455,-0.14169313013554],[-0.01368179731071,0.040555831044912,-0.0849848985672],[-0.048585828393698,0.096410185098648,0.048486799001694]],[[0.031215293332934,-0.041940424591303,0.022317150607705],[0.11769507080317,-0.050593920052052,-0.041268512606621],[0.09291648119688,-0.057409286499023,-0.074397079646587]],[[0.0274453535676,-0.049901980906725,0.035107389092445],[-0.075288034975529,-0.0024243495427072,0.0028230235911906],[-0.15456210076809,-0.12438025325537,-0.27648800611496]],[[-0.088550738990307,0.060808338224888,-0.056615956127644],[0.043976183980703,0.029223477467895,-0.1633785367012],[-0.065739713609219,0.026881773024797,-0.0052802027203143]],[[0.030455553904176,-0.12166877835989,-0.030413921922445],[-0.017507199198008,0.10038514435291,0.066534228622913],[-0.16699877381325,-0.022706342861056,-0.10765765607357]],[[-0.13293592631817,0.035659357905388,-0.0062027517706156],[0.010208050720394,-0.041041616350412,-0.095536164939404],[0.060891535133123,-0.0020053754560649,-0.0080675557255745]],[[-0.027541099116206,-0.048849508166313,-0.077035702764988],[-0.0084537146613002,0.058113623410463,0.096817828714848],[-0.062294699251652,0.051069103181362,0.022788399830461]],[[-0.11357828974724,-0.10165353864431,0.1257738173008],[-0.088224843144417,0.023510372266173,-0.059035930782557],[-0.19384449720383,0.0026493237819523,-0.026598244905472]],[[0.14622305333614,-0.16226468980312,-0.10307776927948],[0.055515442043543,-0.047909218817949,-0.082772456109524],[-0.046926517039537,-0.011197987943888,-0.030478600412607]],[[-0.097188554704189,-0.0087799960747361,-0.045502778142691],[-0.070671990513802,-0.011002040468156,0.044101484119892],[-0.094141483306885,-0.067550607025623,-0.051137834787369]],[[-0.13500794768333,-0.15974490344524,-0.036409828811884],[-0.094313383102417,-0.07204919308424,-0.02066907659173],[0.0034884542692453,-0.03862201794982,0.01422924734652]],[[0.021582089364529,0.021438773721457,0.010601753368974],[-0.0040630991570652,7.5292700785212e-06,0.11829464137554],[0.018519833683968,0.17737208306789,0.16926048696041]],[[-0.088924326002598,-0.15878702700138,-0.062787488102913],[-0.033293023705482,-0.042653329670429,-0.097950957715511],[-0.057140853255987,-0.022222619503736,-0.1203647851944]],[[-0.18886081874371,-0.083399258553982,-0.12847872078419],[-0.033890273422003,0.11098698526621,0.21459463238716],[0.071696639060974,0.089160904288292,-0.095399245619774]],[[-0.083436049520969,-0.035533286631107,-0.030475692823529],[0.20872670412064,0.094197623431683,-0.095345817506313],[-0.040036510676146,0.036180783063173,0.010009008459747]],[[-0.030524779111147,0.09720866382122,-0.040757574141026],[0.045773983001709,-0.10921281576157,-0.05864654108882],[-0.0092838415876031,0.053867030888796,-0.10334064811468]],[[-0.0046851546503603,-0.00027839955873787,-0.11484825611115],[0.011635404080153,0.15065652132034,0.038490328937769],[-0.10578019171953,-0.037183903157711,-0.11843223124743]],[[-0.030633743852377,0.05189248546958,0.0075994995422661],[-0.019384123384953,-0.017629301175475,0.17254500091076],[0.068953819572926,0.10418572276831,0.07364147901535]],[[0.14045505225658,0.018296997994184,-0.21337158977985],[0.099973678588867,0.24222114682198,-0.097332157194614],[0.016559731215239,0.08151975274086,-0.0795494094491]],[[0.15374328196049,0.029954811558127,0.012972117401659],[-0.061306569725275,-0.1360279917717,0.045431636273861],[0.21312110126019,0.10297533124685,-0.013708470389247]],[[0.18836548924446,0.0093172807246447,-0.035007689148188],[-0.056770671159029,-0.081231810152531,-0.0097396392375231],[0.020360708236694,-0.059461500495672,0.0079673789441586]],[[0.13810397684574,-0.027030715718865,0.055222909897566],[-0.014115777797997,0.01057356595993,0.06934467703104],[0.11101739853621,0.036790702491999,0.026500422507524]],[[-0.11345163732767,-0.15158104896545,-0.21927988529205],[-0.071733802556992,0.051937200129032,0.057769384235144],[-0.066743195056915,-0.087442852556705,0.089817017316818]],[[0.045793604105711,0.08752865344286,0.084355734288692],[-0.053867660462856,-0.060728665441275,0.16263498365879],[-0.13017317652702,-0.15991844236851,-0.13078665733337]],[[0.055993631482124,-0.10126581788063,-0.06827200204134],[0.042678870260715,-0.0090221287682652,-0.033000010997057],[-0.090376302599907,-0.050115443766117,-0.023231411352754]],[[0.039753198623657,0.25823822617531,-0.092805936932564],[0.26327881217003,0.11596515029669,0.024846784770489],[-0.097247757017612,-0.063200920820236,-0.028033651411533]],[[-0.1968709975481,-0.11618817597628,-0.17533721029758],[-0.18385504186153,-0.087070249021053,0.016117556020617],[-0.11687423288822,-0.066285401582718,0.03279422223568]],[[0.0093008801341057,0.096974179148674,-0.1224941983819],[0.17617988586426,-0.12707033753395,-0.016835074871778],[0.080343849956989,0.072307735681534,-0.040239863097668]],[[-0.082050286233425,-0.095926381647587,-0.00363072543405],[0.031040240079165,0.020876076072454,0.1613477319479],[0.061688467860222,0.059500187635422,0.15065282583237]],[[-0.21848647296429,-0.030265996232629,-0.071633890271187],[0.028200773522258,-0.026199817657471,0.038574647158384],[0.075159095227718,-0.11294758319855,0.0016349462093785]],[[-0.0099061587825418,-0.0044508762657642,-0.014324677176774],[0.16817437112331,-0.055564675480127,0.15865829586983],[0.083810485899448,0.17309002578259,0.16405873000622]],[[0.18802672624588,-0.10740619152784,0.035736184567213],[-0.051709309220314,-0.0089496904984117,0.10463534295559],[-0.12653411924839,0.15284769237041,-0.0069734519347548]],[[0.097245797514915,0.12317677587271,0.030138654634356],[0.03763061016798,-0.074275597929955,-0.039097178727388],[-0.18371114134789,-0.11020135879517,-0.042842075228691]],[[-0.11004183441401,0.15680707991123,0.033752676099539],[-0.10967345535755,-0.14238895475864,-0.2197083979845],[-0.054783772677183,0.0072258710861206,-0.011408240534365]],[[0.20681436359882,0.15229213237762,0.17964762449265],[0.21601112186909,0.08984587341547,0.06839619576931],[-0.21613177657127,-0.093502216041088,-0.030306570231915]],[[0.066503152251244,-0.093977056443691,-0.034291800111532],[0.055995851755142,-0.0026847389526665,-0.012605000287294],[-0.023942247033119,0.06584033370018,0.11409559100866]],[[-0.034950416535139,-0.012002998031676,0.02085511945188],[-0.056405421346426,0.070906892418861,0.12754487991333],[-0.092443212866783,0.15861968696117,-0.064707361161709]],[[-0.073970809578896,-0.034871403127909,0.14583103358746],[-0.14308738708496,-0.069506488740444,-0.090441033244133],[0.1621195524931,0.1028863042593,0.14584039151669]],[[0.074236840009689,0.070341125130653,0.046413443982601],[-0.035977657884359,-0.012829104438424,-0.066490478813648],[-0.018308080732822,0.02647902444005,-0.039793249219656]],[[0.17114497721195,-0.023200722411275,0.040840897709131],[0.049317214637995,0.13787385821342,-0.11650364100933],[-0.17081955075264,-0.047411378473043,0.028930597007275]],[[0.11714608967304,-0.018841741606593,-0.2119250446558],[-0.02330319210887,0.019630016759038,-0.11500237137079],[-0.0837646946311,-0.064966231584549,0.0093111172318459]],[[0.24697947502136,0.01523928437382,-0.023871516808867],[-0.1319423019886,-0.039622951298952,-0.083346791565418],[0.013165057636797,0.057963836938143,0.0048649981617928]],[[-0.033471468836069,0.061280522495508,0.011529376730323],[-0.026264928281307,0.087897889316082,0.067736193537712],[0.0070300837978721,0.036989212036133,0.0070158997550607]],[[0.031581703573465,-0.059919811785221,-0.079668112099171],[-0.17228785157204,-0.089900329709053,-0.064237467944622],[-0.0052595571614802,0.054251499474049,-0.030157888308167]],[[0.072672367095947,-0.026734188199043,-0.031664576381445],[0.034370414912701,0.0064915460534394,-0.019113624468446],[-0.23574331402779,-0.028492761775851,-0.14405474066734]],[[0.063968785107136,-0.12586735188961,-0.05048318952322],[-0.080187775194645,0.075682684779167,0.036408100277185],[-0.012856275774539,-0.0083174733445048,0.046489112079144]],[[-0.060429356992245,-0.018687672913074,0.086253449320793],[-0.024603987112641,-0.025675205513835,-0.12658394873142],[-0.055489353835583,-0.063637621700764,-0.024294756352901]],[[-0.043008334934711,0.070921346545219,-0.10887663066387],[0.00089000433217734,0.067209079861641,0.029234308749437],[-0.028523763641715,-0.00086543295765296,-0.090933740139008]],[[0.10804759711027,-0.018210146576166,0.002297077793628],[-0.091421969234943,-0.27130344510078,-0.20237600803375],[0.0050552566535771,-0.055652696639299,-0.051963109523058]],[[0.035979203879833,0.058743678033352,-0.046856988221407],[0.017978260293603,-0.1570085734129,-0.10628896206617],[0.097703777253628,0.17323161661625,0.17999997735023]],[[0.0080313943326473,0.12533344328403,-0.0070692985318601],[-0.074097253382206,-0.041220113635063,0.18320132791996],[0.097860120236874,0.093575567007065,0.11874600499868]],[[0.0087490044534206,-0.05509252473712,-0.25418928265572],[-0.011153467930853,0.037872739136219,-0.0634675770998],[0.026878302916884,0.035487864166498,0.011057124473155]],[[-0.0049842512235045,0.072755791246891,-0.017436489462852],[0.095426835119724,0.017148425802588,0.0035697887651622],[-0.17022924125195,-0.054963167756796,0.012397356331348]],[[0.095366962254047,0.023183418437839,0.0055072619579732],[-0.091531552374363,0.066255882382393,-0.033178687095642],[0.0071725333109498,0.04752679541707,-0.096357174217701]],[[-0.010548302903771,0.011220409534872,0.052332196384668],[0.026112100109458,0.10621613264084,0.0028226522263139],[0.03610010445118,0.15535144507885,-0.020132401958108]],[[-0.046105150133371,-0.0039104372262955,0.0058147730305791],[0.018579063937068,-0.11466721445322,0.024899035692215],[-0.04599579423666,-0.073165401816368,-0.11405900865793]],[[0.025856923311949,0.025029929354787,0.09321691095829],[-0.011730396188796,0.0023755698930472,0.12911435961723],[0.11628770083189,0.1082790941,-0.051218766719103]],[[0.045471448451281,0.014938553795218,-0.084639824926853],[0.015940075740218,0.0088470615446568,0.084186032414436],[0.04512570053339,0.35944589972496,0.12615931034088]],[[-0.14518016576767,0.16650523245335,0.26614761352539],[-0.19673682749271,0.056876301765442,-0.13653475046158],[-0.11271051317453,0.0014266533544287,0.05747339874506]],[[-0.21503898501396,0.077963784337044,0.12224321067333],[-0.036434929817915,-0.0025193865876645,-0.042345870286226],[-0.046802129596472,-0.12293667346239,0.11401018500328]],[[0.11132266372442,-0.026039652526379,-0.026502845808864],[-0.030034273862839,0.13779205083847,0.088028214871883],[-0.056186594069004,0.13611024618149,0.0073666493408382]]],[[[-0.080075889825821,0.29025274515152,0.022741878405213],[-0.10270209610462,0.22471687197685,0.071730434894562],[0.09352795779705,0.19267855584621,-0.061827231198549]],[[0.027190567925572,-0.1343874335289,-0.069246612489223],[-0.0018243385711685,-0.13307465612888,-0.059321906417608],[0.019558630883694,0.055386334657669,0.17028769850731]],[[-0.048697803169489,0.055141724646091,0.1011795476079],[0.045531678944826,0.11735560745001,0.023053435608745],[0.010931183584034,0.10618878901005,0.045269057154655]],[[0.033877518028021,-0.0072936746291816,-0.19590006768703],[-0.10145319253206,-0.057518888264894,-0.10298127681017],[-0.20274260640144,-0.031650599092245,0.064727500081062]],[[-0.025594107806683,0.19628991186619,0.05146712064743],[0.0059278691187501,0.06266862154007,0.0096773039549589],[0.0068307225592434,0.14467260241508,0.036103710532188]],[[-0.066096492111683,0.33766561746597,0.026101438328624],[-0.044280670583248,0.061612226068974,-0.0032321067992598],[-0.2254284620285,-0.025045808404684,0.060255866497755]],[[-0.02068212069571,-0.0067778588272631,0.073955588042736],[-0.052927374839783,0.0053887153044343,0.044068314135075],[0.077253364026546,-0.036383919417858,-0.038102384656668]],[[0.17741084098816,0.062940239906311,-0.012417225167155],[0.080002650618553,0.21373587846756,-0.055459767580032],[-0.055826205760241,0.17048926651478,-0.0032363364007324]],[[-0.117496997118,-0.046658847481012,-0.13474099338055],[0.12206051498652,-0.074917532503605,0.035404443740845],[-0.10098863393068,-0.14207643270493,0.04890413954854]],[[-0.022628774866462,-0.29436522722244,-0.13353607058525],[-0.21960856020451,-0.27905145287514,-0.066765367984772],[-0.094446927309036,0.15336039662361,0.042092636227608]],[[-0.045161675661802,-0.0049254144541919,0.15352839231491],[0.060841884464025,0.01196245290339,0.1166020706296],[-0.012001038528979,-0.064437359571457,0.097388476133347]],[[-0.074366584420204,-0.13708543777466,-0.010351326316595],[-0.095850251615047,-0.0067267883569002,0.2337758988142],[0.08189082890749,0.018872374668717,-0.23260675370693]],[[-0.089305311441422,0.083108328282833,-0.078505836427212],[-0.041059296578169,-0.1294966340065,-0.011297984048724],[-0.035173092037439,-0.041095901280642,-0.084910899400711]],[[0.030907830223441,0.035539627075195,0.0056961635127664],[-0.0098091447725892,-0.063933551311493,0.0020305090583861],[-0.0094666117802262,-0.093606822192669,-0.053190313279629]],[[-0.049237221479416,-0.011785909533501,-0.039269249886274],[-0.10754179209471,0.11498761177063,-0.04397289082408],[-0.047276396304369,-0.014364201575518,-0.0083354506641626]],[[0.071279227733612,0.21536704897881,0.056972064077854],[-0.12841223180294,-0.051722068339586,0.0067082978785038],[-0.14029622077942,0.033800255507231,0.10227663815022]],[[0.039059955626726,0.095032572746277,0.092399932444096],[-0.00013335794210434,0.062674082815647,0.0062508475966752],[0.042704250663519,-0.029062477871776,-0.033195108175278]],[[0.035299152135849,0.085277311503887,0.0022957536857575],[-0.025437174364924,0.014875925146043,-0.035946775227785],[0.06784325838089,0.1339520663023,-0.23812362551689]],[[0.030526492744684,-0.068012125790119,0.046223387122154],[-0.086022652685642,-0.058240693062544,0.014734049327672],[-0.11119867861271,0.029885821044445,0.14436255395412]],[[-0.057069268077612,-0.13992962241173,-0.13159531354904],[-0.047189619392157,-0.006428062915802,-0.044993199408054],[0.016266265884042,-0.045190967619419,0.042040552943945]],[[0.13746631145477,-0.14471055567265,-0.078366100788116],[0.14272524416447,-0.19599094986916,-0.17660430073738],[-0.051906872540712,-0.12994848191738,-0.19194310903549]],[[-0.089541763067245,0.050848595798016,0.095640137791634],[-0.0044079450890422,-0.025530062615871,0.12282927334309],[0.10609701275826,-0.083600655198097,0.050323057919741]],[[-0.029798330739141,-0.041922718286514,0.15514995157719],[-0.0570347905159,-0.096604116261005,-0.08720026165247],[-0.10742408037186,-0.027315719053149,0.065085791051388]],[[0.0042675160802901,-0.20309539139271,-0.036643005907536],[-0.023529343307018,0.10558608919382,-0.029896888881922],[-0.26522645354271,-0.048548851162195,0.0027487471234053]],[[0.11154024302959,0.075595028698444,-0.088523298501968],[-0.093771710991859,0.056727610528469,-0.044484328478575],[-0.21612493693829,0.087695971131325,0.014739439822733]],[[-0.040948089212179,-0.10388823598623,0.12356682121754],[0.059384703636169,-0.013815900310874,0.090260364115238],[0.040770899504423,0.078918255865574,-0.057287469506264]],[[0.16851261258125,0.082266770303249,-0.0045376918278635],[0.25980278849602,0.031961761415005,0.032295476645231],[0.26982605457306,-0.10125031322241,0.18161608278751]],[[0.010897596366704,0.027795009315014,-0.042456097900867],[0.11799108237028,-0.029376808553934,-0.080987311899662],[0.11910425871611,0.066273704171181,0.22884605824947]],[[-0.10879208892584,-0.17846918106079,0.078107446432114],[-0.12318666279316,-0.12291548401117,0.0036787858698517],[-0.10285065323114,-0.12989860773087,-0.025193441659212]],[[2.4329645384569e-05,0.030626622959971,-0.21164444088936],[-0.09590756893158,0.058160703629255,-0.15138767659664],[0.036016188561916,0.12565071880817,-0.089613370597363]],[[-0.056741740554571,-0.080775670707226,-0.051870580762625],[0.084566883742809,-0.0073265498504043,-0.050790056586266],[-0.026831543073058,0.12468415498734,0.21540933847427]],[[-0.17318741977215,0.025845045223832,0.1764607578516],[-0.042929641902447,0.13671219348907,-0.28316241502762],[0.027259957045317,0.18410047888756,-0.085738338530064]],[[0.16663692891598,-0.051375009119511,0.056568779051304],[-0.011586149223149,-0.033647440373898,-0.0014157101977617],[0.080325469374657,-0.044643599539995,0.051205221563578]],[[-0.037497695535421,-0.28560587763786,-0.014059413224459],[-0.22729690372944,-0.11431492865086,0.044490654021502],[0.1427875906229,-0.022331094369292,0.11247286945581]],[[-0.070504270493984,-0.12544274330139,0.030499488115311],[0.010672282427549,-0.13921147584915,-0.025563150644302],[0.055868841707706,0.0030490893404931,-0.072846107184887]],[[0.18315993249416,-0.056143917143345,-0.14968645572662],[0.34616053104401,-0.12325460463762,-0.041868139058352],[0.29950654506683,0.025738203898072,-0.15736164152622]],[[-0.092141442000866,0.015453698113561,-0.073886565864086],[-0.11411136388779,-0.15049509704113,-0.00031642513931729],[0.018409334123135,-0.10771112889051,0.095656432211399]],[[0.059014543890953,0.0080430712550879,0.13492178916931],[0.011838845908642,0.0049732243642211,0.13546551764011],[-0.11181293427944,-0.11126309633255,0.053446684032679]],[[-0.0023680403828621,0.10884117335081,-0.12555368244648],[-0.13816624879837,-0.0085913464426994,-0.048448868095875],[-0.12402595579624,-0.021319517865777,-0.0027945274487138]],[[-0.17774739861488,0.18086671829224,-0.0028211385942996],[-0.058095425367355,0.098414659500122,-0.15329149365425],[-0.14458632469177,0.076051443815231,-0.18568867444992]],[[0.025301918387413,0.081138104200363,0.0080045135691762],[0.005615456495434,-0.0052202441729605,-0.077424764633179],[-0.017606809735298,-0.031765386462212,0.046566490083933]],[[-0.06119791418314,0.022192250937223,0.17837998270988],[0.0026092354673892,-0.024092305451632,0.057749655097723],[-0.069405794143677,0.03807170689106,0.19295416772366]],[[0.093355230987072,-0.042633883655071,-0.13968361914158],[0.28254717588425,-0.019911635667086,-0.16540046036243],[0.20678633451462,0.028740787878633,-0.12473273277283]],[[0.015552747994661,0.010997370816767,0.066997192800045],[-0.0069459285587072,-0.090013533830643,-0.047455195337534],[0.0309415217489,0.046556182205677,0.040163852274418]],[[0.18885324895382,0.058777887374163,0.014879651367664],[0.091143935918808,-0.073204398155212,0.16932402551174],[-0.013935841619968,-0.21021427214146,0.15320634841919]],[[-0.15564660727978,-0.037173796445131,0.11176408082247],[-0.25936394929886,-0.016014227643609,0.056611578911543],[-0.2115563005209,0.071383960545063,0.15755996108055]],[[0.027445588260889,-0.11828519403934,-0.062130335718393],[0.094226695597172,-0.048955608159304,-0.13356558978558],[0.066047862172127,-0.049218729138374,0.057253774255514]],[[-0.08004666864872,-0.064576111733913,0.024618109688163],[0.0011081866687164,0.041121512651443,-0.029131745919585],[-0.0083744917064905,-0.036410111933947,-0.013573073782027]],[[0.21453833580017,-0.091501459479332,-0.05331552401185],[-0.050400268286467,0.13637387752533,-0.066887073218822],[0.031967036426067,0.24066011607647,-0.017258506268263]],[[0.12343066930771,-0.057458929717541,-0.18377222120762],[-0.059080597013235,-0.048637125641108,-0.13895021378994],[0.046138420701027,-0.14297223091125,-0.085821606218815]],[[-0.073840588331223,-0.11085817217827,0.0047466703690588],[-0.13234114646912,-0.014367482624948,0.030965710058808],[-0.15051743388176,-0.033281773328781,0.018091235309839]],[[0.03047669492662,0.12898474931717,-0.063395090401173],[-0.0031540179625154,0.10896143317223,-0.01684389077127],[0.086436457931995,-0.064863547682762,0.077183239161968]],[[0.042058821767569,-0.098905168473721,-0.0071078082546592],[0.034029200673103,-0.028679953888059,-0.053291570395231],[0.012922239489853,-0.045484904199839,0.013974599540234]],[[-0.072654239833355,-0.14437378942966,0.016570966690779],[-0.072574347257614,-0.15367347002029,0.045453287661076],[-0.051507167518139,-0.15720178186893,0.018324801698327]],[[0.011976288631558,0.083969704806805,0.052384797483683],[-0.15243080258369,-0.096714168787003,-0.012579003348947],[-0.12420432269573,-0.067642644047737,0.093778818845749]],[[0.0025910334661603,-0.043540310114622,0.036115750670433],[-0.088541969656944,-0.10737284272909,-0.01066745352],[0.081665866076946,-0.15973940491676,-0.10295405238867]],[[0.015746876597404,0.11812433600426,0.060066774487495],[0.10997488349676,-0.083824574947357,0.078412070870399],[0.049088411033154,-0.16296924650669,0.24100282788277]],[[0.028097383677959,0.041174538433552,-0.067080840468407],[-0.15268766880035,-0.050986655056477,-0.079151190817356],[-0.042055040597916,-0.01787524484098,-0.036281183362007]],[[0.1226628869772,0.1102554872632,0.04792157933116],[-0.023420700803399,0.00635238410905,-0.08023677021265],[-0.18114744126797,-0.2196711152792,0.012908398173749]],[[0.033121090382338,-0.1825135499239,0.052428960800171],[0.10184267163277,-0.091775149106979,0.063348650932312],[-0.04933712258935,-0.09960000962019,0.070109739899635]],[[-0.016696438193321,-0.0081821177154779,0.069360092282295],[-0.074398428201675,-0.076975025236607,-0.059721723198891],[-0.052356254309416,-0.041424907743931,0.010752287693322]],[[0.24358625710011,0.13024140894413,-0.14736354351044],[-0.081602953374386,-0.14953243732452,-0.044187642633915],[0.0073470808565617,-0.11846419423819,-0.019140975549817]],[[0.018664363771677,-0.095604427158833,-0.009496814571321],[-0.016969230026007,0.0020199923310429,0.014888173900545],[-0.041408333927393,-0.074401065707207,0.013149720616639]],[[0.033958781510592,0.12866400182247,0.0073406710289419],[-0.08210776746273,0.090532645583153,-0.08401770144701],[-0.075840622186661,0.062773503363132,-0.075737439095974]],[[-0.092616729438305,-0.056861292570829,0.28778487443924],[-0.067868940532207,-0.15289422869682,0.099887758493423],[0.032368175685406,-0.27547225356102,0.076004803180695]],[[0.1316714733839,-0.027024198323488,0.11250931769609],[0.054668966680765,-0.035120442509651,0.070649057626724],[0.011184605769813,0.018356842920184,0.035198520869017]],[[-0.12851029634476,-0.056962594389915,-0.046324737370014],[0.044541455805302,0.0046563036739826,0.005654432810843],[-0.019402977079153,-0.055496033281088,-0.15008407831192]],[[-0.011395400390029,-0.10022933036089,-0.11486153304577],[0.077910989522934,-0.090024322271347,-0.096930183470249],[0.061789873987436,-0.098019063472748,0.0052297688089311]],[[0.085444733500481,1.4883213225403e-05,0.068139292299747],[0.016629058867693,0.013445780612528,-0.028575362637639],[0.1243913397193,0.061350155621767,0.022122038528323]],[[-0.025648334994912,0.17981201410294,-0.069889210164547],[-0.052796520292759,0.11144476383924,-0.046669870615005],[-0.1600494235754,0.15913835167885,-0.015773814171553]],[[-0.0069329040125012,-0.015471069142222,-0.065242849290371],[-0.037691526114941,-0.038997754454613,-0.086527168750763],[0.0087433652952313,-0.024153731763363,0.0035832631401718]],[[0.1268574744463,0.13911113142967,0.065421581268311],[0.034673687070608,-0.015269883908331,-0.016638988628983],[-0.094567477703094,0.061596397310495,-0.033178135752678]],[[-0.0042902971617877,0.039729181677103,-0.10571806132793],[0.053303346037865,0.13822005689144,-0.27930289506912],[0.19675478339195,0.0083549590781331,-0.28420588374138]],[[-0.092090539634228,0.12358130514622,0.092808067798615],[-0.029043918475509,0.029748344793916,0.052917499095201],[0.14071881771088,0.026916470378637,0.068643964827061]],[[-0.059421822428703,-0.00049794057849795,-0.04762364551425],[-0.1636518239975,0.020537961274385,0.088258340954781],[-0.098322257399559,-0.066132351756096,-0.10216931253672]],[[0.10502564907074,-0.017933137714863,-0.12242485582829],[0.031026635318995,-0.048345517367125,-0.114074036479],[0.06024757027626,-0.046464581042528,-0.10885363817215]],[[-0.058153185993433,-0.019890375435352,0.09983641654253],[-0.18340346217155,0.0086165303364396,0.18108263611794],[-0.082080170512199,-0.22421588003635,0.030476577579975]],[[-0.17440928518772,-0.095404863357544,-0.030305694788694],[-0.1333887130022,-0.15972140431404,0.018997959792614],[0.019011272117496,-0.077944293618202,-0.041253842413425]],[[0.097857855260372,0.073899768292904,-0.07422898709774],[0.18169243633747,-0.025105470791459,-0.042910542339087],[-0.0095968553796411,-0.12688639760017,-0.093258708715439]],[[-0.054730877280235,-0.10268171131611,0.20211601257324],[-0.027143556624651,-0.11101792752743,0.067678950726986],[-0.01407369505614,-0.062871962785721,-0.088150098919868]],[[-0.070185467600822,0.074253715574741,0.18352253735065],[-0.07854875177145,0.09660941362381,-0.12967039644718],[-0.17007465660572,-0.02770341001451,-0.087497405707836]],[[-0.12231185287237,-0.070264607667923,0.081723771989346],[0.10127235949039,-0.025034235790372,0.15060251951218],[0.18314178287983,-0.13324575126171,0.066694796085358]],[[0.16762465238571,0.018934706225991,-0.058639496564865],[0.17724998295307,0.015226585790515,0.1284307539463],[0.023018842563033,-0.034999590367079,0.017301313579082]],[[-0.1739696264267,-0.17845164239407,0.034293204545975],[-0.19606129825115,-0.15974180400372,-0.13548485934734],[-0.21914052963257,-0.13181023299694,-0.18637472391129]],[[-0.18877460062504,0.025482624769211,0.020151926204562],[-0.044714346528053,0.10728681087494,0.18716366589069],[-0.072351701557636,0.25661286711693,0.18142893910408]],[[0.0027535955887288,-0.063495963811874,0.16581942141056],[-0.10451838374138,-0.16814886033535,0.14683285355568],[-0.098031237721443,-0.16127432882786,0.0092187020927668]],[[0.030168982222676,-0.048869535326958,-0.16768826544285],[-0.0091245882213116,0.041853617876768,-0.014772708527744],[0.0098806619644165,-0.044450476765633,-0.034765802323818]],[[-0.0016281795687973,-0.064282990992069,0.12162230163813],[-0.01779106631875,-0.045488815754652,0.21661251783371],[0.071362093091011,0.013700092211366,0.015702506527305]],[[-0.042785096913576,0.13667081296444,-0.023813635110855],[-0.15566238760948,-0.078109569847584,0.12845951318741],[-0.18292804062366,-0.023160358890891,0.22328823804855]],[[0.099310450255871,0.068555325269699,-0.090717628598213],[0.20681349933147,0.029764194041491,-0.043710134923458],[-0.067734681069851,-0.015297343954444,-0.071644015610218]],[[0.070402666926384,0.069995872676373,-0.0097283320501447],[0.068379633128643,0.089277096092701,0.016592985019088],[-0.050608325749636,0.11941822618246,0.11211843788624]],[[-0.082688815891743,-0.077897623181343,0.10553926974535],[-0.088764935731888,-0.064529202878475,0.085593953728676],[0.043408941477537,-0.030694175511599,0.01486038044095]],[[0.057132665067911,-0.0019130076980218,0.058613497763872],[0.061648480594158,-0.0033154680859298,-0.04595635831356],[-0.035826288163662,0.0055706496350467,-0.0061410777270794]],[[0.092721715569496,0.3103800714016,-0.0088350456207991],[-0.18116682767868,0.069369539618492,-0.11374947428703],[-0.0011145230382681,0.034716378897429,-0.050282061100006]],[[0.034767054021358,0.096966817975044,0.044056832790375],[0.14063486456871,0.0026283748447895,-0.070919811725616],[0.13083396852016,0.02418608404696,-0.09681860357523]],[[-0.090840809047222,0.11790257692337,0.012494491413236],[0.024160671979189,-0.041867386549711,-0.072828620672226],[0.055073462426662,-0.086807258427143,0.037964396178722]],[[0.18297481536865,-0.002393112750724,-0.05278567969799],[-0.13159769773483,-0.081733226776123,-0.02659440971911],[-0.018711743876338,-0.095629803836346,-0.044430293142796]],[[0.066305428743362,-0.11614847928286,-0.018745586276054],[-0.020239450037479,-0.063116662204266,0.021147474646568],[-0.048382636159658,-0.11827258765697,-0.018261486664414]],[[0.15350237488747,-0.018485084176064,0.050168581306934],[-0.14505858719349,0.034701313823462,-0.0058643673546612],[-0.30835747718811,-0.019127121195197,-0.15787333250046]],[[0.041373033076525,0.10247359424829,-0.056886099278927],[-0.13667464256287,0.23434123396873,-0.029627811163664],[0.060155514627695,0.22913101315498,0.026423087343574]],[[-0.27417802810669,-0.039789196103811,0.015647312626243],[-0.15299934148788,0.074439309537411,-0.049087353050709],[-0.13904702663422,0.08944796025753,-0.18301597237587]],[[-0.08439851552248,0.039373107254505,0.051888912916183],[-0.063026137650013,0.072904415428638,-0.037317235022783],[-0.0098797157406807,0.064559176564217,0.01285046339035]],[[-0.015510308556259,0.0059334454126656,-0.0059229168109596],[-0.0067853503860533,-0.035163756459951,0.046726316213608],[0.0086973020806909,-0.11002690345049,-0.040215436369181]],[[-0.095953181385994,-0.1714251190424,-0.012071595527232],[-0.039458338171244,0.079965390264988,-0.02992195263505],[-0.11773443222046,-0.076128356158733,-0.15443164110184]],[[-0.03610123321414,-0.21289229393005,-0.16735574603081],[-0.13564458489418,-0.031243862584233,0.040830131620169],[0.018292021006346,0.10799665004015,-0.20160350203514]],[[0.043512679636478,-0.21294444799423,0.069197840988636],[0.047331608831882,-0.023039288818836,-0.06247241050005],[0.056199640035629,-0.18347936868668,-0.042609743773937]],[[0.14385588467121,-0.045205995440483,-0.10537841916084],[0.068702161312103,0.06591808795929,-0.17366786301136],[0.079558856785297,0.081586211919785,-0.044032126665115]],[[0.091014690697193,-0.056498166173697,0.0020060704555362],[0.039945874363184,-0.12533847987652,0.058079846203327],[-0.012857050634921,-0.11229377239943,0.17981892824173]],[[-0.0032837789040059,0.10444384068251,-0.052871707826853],[-0.072356142103672,-0.016697378829122,0.096145085990429],[0.064327374100685,-0.059725049883127,0.26125499606133]],[[-0.15421992540359,0.041019625961781,0.011153290048242],[0.045216720551252,-0.0047325328923762,0.054713107645512],[0.01365914940834,0.086068205535412,0.15416122972965]],[[-0.034950453788042,-0.0012577122543007,-0.0037418161518872],[0.036770366132259,-0.024843348190188,0.10425866395235],[0.017467649653554,0.047901526093483,0.14526887238026]],[[-0.11185470223427,-0.21099789440632,-0.15837997198105],[-0.091558665037155,-0.11640224605799,-0.13917452096939],[-0.067906387150288,-0.12445355951786,0.06637417525053]],[[-0.10719930380583,0.14367781579494,-0.13547959923744],[-0.041008703410625,0.1256347745657,-0.036600925028324],[0.072446532547474,0.031940244138241,0.068116962909698]],[[0.086639977991581,0.0032596215605736,0.073687180876732],[-0.020752023905516,0.011312669143081,0.011963840574026],[0.22046788036823,-0.058923240751028,-0.013205455616117]],[[0.2124103307724,0.02472697943449,-0.05666396394372],[0.094334773719311,0.04162860289216,0.015709353610873],[0.053860139101744,0.11904130131006,0.067954927682877]],[[0.078101322054863,-0.080032005906105,-0.041486766189337],[0.13713894784451,-0.04473140090704,-0.015125022269785],[-0.0050399065949023,-0.20357456803322,-0.096985407173634]],[[0.092982910573483,-0.10160890221596,-0.027284754440188],[0.047242619097233,0.0017444690456614,-0.036669164896011],[-0.14764210581779,0.063562259078026,0.13558313250542]],[[0.011127753183246,0.1525237262249,-0.077611587941647],[-0.002208647551015,0.027402278035879,-0.017175942659378],[-0.079696916043758,0.057989548891783,-0.02796964533627]],[[0.072755880653858,0.024618204683065,-0.057198405265808],[0.1089921221137,-0.0085857110098004,0.07431098818779],[-0.2350977063179,0.021368820220232,0.21202848851681]],[[-0.074207149446011,-0.10548131167889,-0.015384939499199],[0.021436344832182,-0.10043707489967,-0.019179979339242],[0.11678285896778,-0.033148106187582,-0.039091058075428]],[[-0.21487900614738,-0.18222481012344,0.2140027731657],[-0.11139337718487,0.090705752372742,0.051340505480766],[0.080302231013775,-0.11457604169846,-0.17940114438534]],[[0.056613001972437,-0.042038407176733,0.1122330725193],[0.0098259272053838,-0.067808076739311,0.037182506173849],[-0.064939849078655,-0.14120902121067,0.17259341478348]],[[-0.030582170933485,-0.15860828757286,0.09492165595293],[-0.075737275183201,-0.15147393941879,0.12287504971027],[-0.13693663477898,-0.09011273086071,-0.05348788574338]],[[-0.16114726662636,0.21261718869209,0.05015592649579],[-0.18762122094631,0.14786222577095,-0.14939422905445],[0.1086640805006,0.087873250246048,-0.081177897751331]],[[-0.081999823451042,0.040369752794504,0.046925447881222],[0.030663073062897,0.076806850731373,-0.0079920161515474],[0.045145213603973,0.0086276950314641,-0.098800823092461]],[[0.023662358522415,-0.09539308398962,0.22926224768162],[0.056560058146715,-0.074363194406033,0.19891165196896],[-0.04276555404067,0.038384158164263,-0.040389470756054]],[[0.053163439035416,0.1413502395153,0.052772428840399],[-0.059547442942858,0.1059820279479,-0.039440114051104],[0.049948640167713,0.10438483208418,0.021341918036342]],[[-0.059561934322119,-0.099915839731693,-0.12579303979874],[-0.12023365497589,0.11489897221327,-0.00075195136014372],[-0.10920348018408,0.16802440583706,0.017943559214473]]],[[[-0.072746358811855,0.06749103218317,-0.050776921212673],[0.0075033125467598,-0.062648586928844,-0.056967683136463],[-0.11175338923931,-0.10810386389494,-0.020602302625775]],[[-0.038036443293095,-0.0087713217362761,-0.04049913585186],[0.077925764024258,-0.10293516516685,-0.2649707198143],[-0.048888701945543,-0.031766973435879,-0.037212107330561]],[[0.099019087851048,0.0094610042870045,-0.038475718349218],[0.23713402450085,0.13915808498859,0.056956674903631],[-0.034907724708319,-0.058060109615326,0.0042855436913669]],[[-0.18321481347084,-0.041175298392773,-0.089394859969616],[-0.10289476811886,-0.12355309724808,0.030246917158365],[0.012973728589714,-0.074466742575169,-0.12243463844061]],[[0.013313299976289,0.04260416701436,0.070686236023903],[0.060218267142773,-0.060242764651775,0.076843529939651],[-0.037765130400658,-0.059060379862785,-0.026809586212039]],[[0.028771823272109,0.028511755168438,-0.078548811376095],[0.083604902029037,-0.18455566465855,-0.047376085072756],[-0.099987290799618,0.092263020575047,-0.0044494993053377]],[[0.089558750391006,-0.031339477747679,-0.049158502370119],[-0.027781473472714,0.07167087495327,-0.14422523975372],[0.091348297894001,0.07761537283659,-0.12454294413328]],[[-0.036906864494085,-0.025305528193712,0.092524275183678],[-0.012523857876658,0.12374287843704,0.13163614273071],[-0.18745569884777,-0.036223005503416,0.092225082218647]],[[0.15229354798794,-0.1374985575676,-0.014741213992238],[0.030546136200428,0.10020656138659,0.25476062297821],[-0.11957136541605,0.070598512887955,-0.0065836384892464]],[[0.079799883067608,-0.27696913480759,-0.13115940988064],[0.067484900355339,-0.18665416538715,-0.0052487030625343],[0.10374791920185,0.12130386382341,-0.0050297565758228]],[[-0.21492865681648,-0.11013212800026,0.36960065364838],[0.096552766859531,0.2107717692852,0.11932294815779],[0.083367384970188,0.045722555369139,-0.00013672542991117]],[[0.10938266664743,0.2472892999649,0.32899019122124],[-0.23554793000221,-0.030130939558148,-0.13466310501099],[0.074704445898533,-0.02764574624598,0.034714799374342]],[[0.002010410418734,-0.10629128664732,0.0031017616856843],[-0.050624035298824,0.024057963863015,0.041836496442556],[0.034168735146523,0.026952056214213,0.23823463916779]],[[0.035307738929987,-0.075787127017975,-0.03555303812027],[0.054887276142836,-0.079771712422371,-0.21725164353848],[-0.11510720849037,-0.22775827348232,-0.13029134273529]],[[-0.071036376059055,-0.0046624317765236,-0.005023293197155],[-0.27728587388992,0.063375063240528,0.082411408424377],[0.033546186983585,0.017335217446089,0.11211577057838]],[[-0.089660204946995,-0.019692063331604,-0.11424147337675],[0.12422227114439,-0.080917753279209,-0.1557103395462],[0.18057182431221,-0.07395776361227,-0.090809799730778]],[[0.018987409770489,0.26799339056015,0.24891048669815],[0.015900984406471,0.026205278933048,-0.06021848320961],[-0.08553821593523,-0.047157406806946,0.12916049361229]],[[0.013938933610916,0.11157517135143,0.066108703613281],[-0.066043972969055,-0.21692787110806,-0.28699830174446],[0.0046024168841541,0.02368557266891,-0.086120948195457]],[[0.36608508229256,0.31124186515808,0.16061392426491],[-0.10020033270121,-0.016021635383368,0.099641196429729],[-0.1937341094017,-0.13980042934418,-0.11598535627127]],[[0.009290168993175,0.02589332871139,0.21033972501755],[-0.27736946940422,-0.012748817913234,0.16800376772881],[0.00010683510481613,-0.05536151304841,-0.14003479480743]],[[-0.1540207862854,0.050368137657642,0.037670001387596],[-0.051487602293491,0.051596984267235,0.028893494978547],[-0.23291045427322,-0.0059114443138242,-0.1129452586174]],[[-0.10950987040997,-0.089085884392262,0.027404384687543],[0.096449881792068,0.1043092533946,0.060711517930031],[0.11674154549837,-0.16711051762104,0.0075580724515021]],[[0.12146124243736,-0.24142901599407,-0.1261323094368],[0.064419485628605,0.047803945839405,0.047366056591272],[0.14828749001026,-0.12185341119766,-0.18947169184685]],[[-0.0049462169408798,0.048810247331858,-0.052319351583719],[0.15997947752476,-0.07106651365757,-0.05312092974782],[0.16213072836399,-0.10396382957697,-0.07507511228323]],[[-0.07163230329752,0.067024476826191,0.17897625267506],[-0.02672865614295,-0.059895548969507,0.07363136857748],[0.1862056106329,-0.021633790805936,0.10259579867125]],[[-0.045980915427208,0.0062871808186173,-0.048635959625244],[-0.035275459289551,0.1064912751317,0.1577272862196],[-0.026925245299935,-0.10330920666456,-0.0324433632195]],[[-0.013929426670074,0.0012562613701448,0.083001717925072],[0.18437775969505,0.10689243674278,0.14620845019817],[-0.15044848620892,-0.13920465111732,0.13627408444881]],[[-0.20467400550842,-0.17209321260452,-0.29488226771355],[0.12508329749107,0.10230323672295,-0.082466520369053],[0.0453916862607,0.036376900970936,-0.02673752233386]],[[-0.02893259562552,-0.14976589381695,0.060368523001671],[0.03477143868804,-0.11326928436756,-0.15258111059666],[0.16189375519753,-0.14043256640434,0.21930703520775]],[[0.05218905210495,0.025590581819415,0.25362050533295],[0.047548577189445,0.036047663539648,-0.069692470133305],[0.015949008986354,0.042359653860331,0.0026469810400158]],[[0.087139151990414,-0.038898810744286,0.051196102052927],[-0.16740781068802,-0.055423472076654,0.087279841303825],[0.03841419890523,-0.063013672828674,0.012521331198514]],[[0.11525796353817,0.12293394654989,-0.026511110365391],[0.11428681015968,0.010579749010503,-0.3759109377861],[-0.17651697993279,-0.23245041072369,-0.11708385497332]],[[-0.013920347206295,0.25471284985542,0.061043910682201],[-0.060645684599876,0.23526783287525,-0.04566765204072],[-0.028607500717044,-0.07708752900362,-0.0036988097708672]],[[-0.0043425336480141,-0.10263527184725,0.18688894808292],[0.058414045721292,-0.092666201293468,0.23144991695881],[0.043176606297493,-0.01194915920496,-0.10167624801397]],[[-0.026103409007192,-0.17171773314476,-0.1790129840374],[-0.093622855842113,-0.067175649106503,-0.14566573500633],[-0.055315107107162,0.030034555122256,0.10624188184738]],[[0.035648431628942,0.056650694459677,-0.1786473095417],[-0.10192219913006,0.056068029254675,0.1009668558836],[-0.20365718007088,-0.040766831487417,-0.0072800545021892]],[[-0.37470299005508,-0.16368234157562,-0.17106872797012],[-0.028074955567718,0.16127812862396,0.18786120414734],[0.14501246809959,0.068003259599209,0.0047466875985265]],[[0.095151051878929,0.022534988820553,0.096040539443493],[-0.077826321125031,-0.2138630002737,0.044221740216017],[0.14428624510765,0.14979311823845,0.2700882256031]],[[-0.013193724676967,-0.093573145568371,-0.20422378182411],[0.027705203741789,-0.081121928989887,-0.19418661296368],[-0.15842366218567,-0.032651156187057,0.091019473969936]],[[-0.079109460115433,-0.084484852850437,-0.015665458515286],[-0.14313915371895,0.11989393830299,-0.016878569498658],[-0.089681304991245,0.0041937530040741,-0.19826744496822]],[[0.073857344686985,-0.1656029522419,-0.12777821719646],[0.24106881022453,-0.030843639746308,-0.046685144305229],[0.056065324693918,-0.17335711419582,0.012350311502814]],[[0.07250153273344,0.037402432411909,0.046351030468941],[-0.05474541336298,0.057937737554312,0.096934743225574],[-0.14458075165749,-0.086475320160389,-0.06687094271183]],[[-0.006231069099158,0.021171296015382,-0.00642095413059],[0.11337712407112,0.11765114217997,-0.076229020953178],[0.021418889984488,-0.12432138621807,-0.2254119515419]],[[-0.0076674045994878,-0.068614676594734,0.11110288649797],[0.034477967768908,-0.022073647007346,0.075539246201515],[-0.083776198327541,-0.055403895676136,0.16890548169613]],[[-0.065073437988758,0.13165624439716,0.092184290289879],[-0.12067060172558,0.058233808726072,0.062841095030308],[-0.021528137847781,0.076858170330524,-0.044184133410454]],[[-0.18484285473824,0.045984867960215,0.15051466226578],[-0.15236835181713,-0.081249237060547,-0.13160388171673],[-0.10042069107294,0.026759840548038,0.0096505144611001]],[[-0.031899850815535,-0.17342166602612,-0.18358559906483],[-0.083746500313282,0.0055958307348192,-0.13900750875473],[-0.062625259160995,-0.024419274181128,-0.22323375940323]],[[-0.021248187869787,0.0019294874509797,0.033448219299316],[0.31882607936859,0.21288220584393,-0.16231913864613],[-0.0337023884058,0.11205296218395,0.017267338931561]],[[-0.1439033895731,-0.053312014788389,-0.30832722783089],[-0.10088856518269,0.013656792230904,-0.080357678234577],[0.011864410713315,-0.024078665301204,0.16791440546513]],[[-0.077842429280281,-0.051219861954451,-0.087605707347393],[-0.076941162347794,-0.13188552856445,-0.092838689684868],[0.022136688232422,0.12849414348602,-0.067104063928127]],[[0.0010727718472481,0.11981810629368,-0.049589209258556],[-0.10542527586222,-0.29170539975166,-0.068361140787601],[0.14124675095081,-0.25680348277092,0.028945883736014]],[[0.046171758323908,0.032507162541151,0.14057710766792],[0.032199501991272,-0.033783540129662,0.11208144575357],[0.1098779514432,0.15791146457195,0.16423237323761]],[[0.056302357465029,0.006378635764122,-0.084134079515934],[-0.04220263287425,0.060013443231583,0.0039627742953598],[-0.048549119383097,-0.021705657243729,-0.044579669833183]],[[0.073249593377113,0.25655317306519,0.085058093070984],[-0.14493602514267,-0.045354068279266,0.012928417883813],[0.08448787778616,0.069364853203297,-0.044460617005825]],[[-0.012858999893069,-0.25893822312355,-0.13803307712078],[0.059286821633577,0.022996613755822,-0.097675055265427],[0.052518419921398,0.043846603482962,-0.15182688832283]],[[0.0049610477872193,-0.022134449332952,0.0066167018376291],[0.017439486458898,-0.04632305726409,-0.043676670640707],[0.21247272193432,0.068752154707909,-0.03073650971055]],[[-0.077583350241184,-0.10107342898846,0.038013692945242],[-0.12533095479012,-0.0091825099661946,0.19260181486607],[0.05926938354969,0.00112996972166,0.047511901706457]],[[-0.19071020185947,-0.077223524451256,-0.043920889496803],[0.022822100669146,-0.084136120975018,-0.2358583509922],[-0.16617925465107,0.071013167500496,0.11856193095446]],[[-0.12571254372597,-0.12278331816196,-0.08681932091713],[-0.11289592087269,-0.0042806374840438,-0.21041624248028],[0.0072614103555679,0.038646139204502,-0.22107762098312]],[[0.013535795733333,0.015931807458401,0.11498661339283],[0.013920043595135,-0.10785022377968,-0.11447089165449],[0.039179190993309,-0.13873964548111,0.040262751281261]],[[0.022774888202548,0.092617549002171,-0.1911786198616],[-0.054626021534204,-0.054310046136379,-0.060124550014734],[-0.039010111242533,-0.003228667890653,-0.23482823371887]],[[0.012529070489109,-0.082630567252636,-0.24891419708729],[-0.041424911469221,0.044984135776758,-0.063033282756805],[-0.073298610746861,0.065759435296059,-0.25959643721581]],[[0.0089480988681316,-0.049863930791616,0.053922783583403],[0.068618379533291,0.12589728832245,-0.028626589104533],[-0.096765257418156,-0.056407544761896,0.061097584664822]],[[0.20821723341942,-0.072744578123093,-0.042379081249237],[0.049368601292372,0.26012796163559,0.1627666503191],[0.15039922297001,0.14691223204136,0.032468613237143]],[[-0.041874036192894,0.11568915843964,-0.067931659519672],[-0.14267084002495,0.055588286370039,0.15596967935562],[0.0035079382359982,-0.013611906208098,0.04997231811285]],[[0.029833169654012,-0.054545346647501,0.0093070054426789],[0.0059674433432519,0.012888722121716,0.072525732219219],[-0.068520374596119,-0.044515334069729,0.0026287329383194]],[[0.026923511177301,0.031472112983465,-0.024883553385735],[0.15966041386127,-0.065317556262016,-0.22801524400711],[0.083863489329815,-0.17119862139225,-0.031581245362759]],[[-0.12824203073978,0.0017377171898261,0.15314213931561],[-0.10710828006268,-0.068409956991673,-0.089660987257957],[-0.019995806738734,-0.17735546827316,-0.055446114391088]],[[0.015391654334962,-0.12388739734888,-0.10953395068645],[-0.074861779808998,-0.18407434225082,-0.031897339969873],[0.0025666407309473,-0.11589064449072,-0.0057685109786689]],[[-0.071400016546249,0.13409478962421,0.25635072588921],[0.21457305550575,0.10796763747931,0.054835066199303],[-0.045753300189972,-0.21843123435974,-0.31967660784721]],[[-0.026504617184401,0.043483480811119,-0.074573956429958],[0.041042000055313,-0.010353449732065,-0.2898274064064],[-0.028628490865231,0.076005443930626,0.013390367850661]],[[-0.016578746959567,0.16835807263851,0.20800638198853],[0.027454923838377,-0.025118093937635,-0.036193873733282],[-0.031252268701792,-0.12314663827419,0.0019128444837406]],[[0.020347092300653,0.064044147729874,0.091341748833656],[-0.045233067125082,-0.10687923431396,-0.064583607017994],[-0.084531895816326,-0.13844187557697,0.020749691873789]],[[0.090430572628975,0.024009324610233,0.0021216350141913],[0.10351832956076,0.28677707910538,0.20266801118851],[-0.094275265932083,-0.12918570637703,0.09020284563303]],[[0.052912421524525,-0.097847543656826,-0.010280381888151],[-0.047250706702471,0.0056966757401824,-0.2263840585947],[-0.12206523865461,-0.21271196007729,0.016091955825686]],[[-0.083717949688435,-0.040582697838545,0.18660865724087],[-0.04748061299324,-0.050353024154902,0.15056423842907],[-0.10633256286383,-0.12891063094139,0.017479924485087]],[[-0.022707957774401,-0.030685415491462,-0.034732013940811],[0.042563609778881,0.12049976736307,-0.060470562428236],[-0.10940973460674,0.016372580081224,-0.14812751114368]],[[-0.10435222834349,-0.0096152480691671,0.066169656813145],[-0.056662727147341,-0.11173566430807,0.039308279752731],[0.035555381327868,-0.15687045454979,0.058490626513958]],[[0.04119049757719,-0.12050243467093,-0.25363728404045],[-0.3166915178299,-0.028793070465326,0.061617579311132],[-0.033097553998232,-0.15561570227146,-0.012494166381657]],[[-0.20307144522667,-0.12449810653925,0.04099677875638],[-0.11345437169075,0.0058923242613673,-0.070427104830742],[-0.23818008601665,-0.099331051111221,0.007986294105649]],[[-0.021780882030725,-0.045376803725958,-0.18299445509911],[0.0076401685364544,0.18104535341263,0.14185877144337],[0.14456009864807,0.04865749552846,-0.018495062366128]],[[-0.086694553494453,0.013808988034725,0.16020609438419],[-0.15581968426704,0.018434543162584,-0.053834337741137],[0.031645309180021,-0.2084014415741,0.020852683112025]],[[0.0215427223593,-0.069467641413212,-0.065744683146477],[0.0027317360509187,-0.11124686896801,0.052761636674404],[-0.27093368768692,0.30315804481506,0.25409093499184]],[[-0.078433349728584,-0.17048785090446,-0.038752391934395],[-0.061331395059824,-0.18774603307247,0.0091041494160891],[-0.0090603614225984,0.033994674682617,-0.01460818387568]],[[0.020155509933829,0.070790365338326,-0.15786714851856],[0.3537030518055,0.012804419733584,0.014647885225713],[0.053319983184338,0.059917557984591,0.0044661690481007]],[[0.12441205978394,-0.12675699591637,-0.014338097535074],[0.010027133859694,-0.032141901552677,-0.11324344575405],[0.093392729759216,-0.062252096831799,-0.095502562820911]],[[-0.086317524313927,-0.056251686066389,-0.134825527668],[-0.053107142448425,-0.014872084371746,0.056498769670725],[-0.0042319069616497,0.073187060654163,0.092238992452621]],[[-0.013667118735611,0.019557040184736,-0.16844962537289],[0.10115761309862,0.035470839589834,0.052406705915928],[0.064802974462509,-0.1087216809392,0.046554166823626]],[[-0.21434108912945,-0.10086595267057,-0.11677927523851],[-0.029481247067451,-0.045241788029671,-0.023461507633328],[0.12727928161621,-0.071320153772831,-0.063319265842438]],[[0.010448141023517,0.09729927033186,-0.13109448552132],[0.083694480359554,0.11502184718847,-0.14730714261532],[-0.033185556530952,-0.073525443673134,0.20776517689228]],[[0.11185422539711,0.097860388457775,0.020329657942057],[0.16400104761124,-0.025827778503299,-0.23913548886776],[0.12148970365524,0.22902722656727,0.10813531279564]],[[-0.063876785337925,0.095166951417923,-0.0061615984886885],[-0.029038194566965,-0.051624808460474,-0.12141953408718],[-0.035567779093981,-0.075802192091942,-0.1131991520524]],[[-0.052493993192911,-0.022084375843406,-0.032984934747219],[0.28267922997475,-0.02731085754931,-0.015413338318467],[0.072777234017849,0.066884584724903,0.1583196669817]],[[-0.1293767541647,-0.065205156803131,-0.033272139728069],[-0.020327363163233,0.10472679883242,0.023427583277225],[-0.10942658036947,0.035802945494652,-0.012017490342259]],[[-0.044433631002903,-0.05418473482132,-0.061027891933918],[-0.1972409337759,0.06712556630373,-0.090892113745213],[-0.029570024460554,0.12005852162838,-0.19038407504559]],[[-0.011631053872406,0.19661140441895,0.074432939291],[-0.022707222029567,0.022642187774181,-0.12595230340958],[0.23676933348179,0.0016493374714628,0.044756807386875]],[[-0.26765850186348,-0.21984386444092,-0.17832817137241],[-0.010669429786503,-0.10237959772348,0.061710398644209],[0.048385247588158,-0.016097906976938,-0.0020980574190617]],[[0.039358552545309,0.2890585064888,0.18501763045788],[0.081265062093735,0.037927467375994,-0.027696065604687],[-0.048891674727201,0.00070383038837463,0.0067954985424876]],[[-0.12214867770672,-0.10737448185682,0.0021594625432044],[-0.0073348605073988,0.08567426353693,0.29768446087837],[-0.038024056702852,-0.031109748408198,0.10697521269321]],[[0.0620774962008,0.11523853242397,-0.03137431666255],[0.030900277197361,-0.070547446608543,-0.12757757306099],[-0.11060032993555,0.14029410481453,0.22564627230167]],[[0.026339055970311,-0.06875616312027,-0.10124257206917],[-0.035718653351068,0.020403100177646,0.049823399633169],[0.35546895861626,-0.084357507526875,-0.11819464713335]],[[-0.030249519273639,0.082322329282761,0.070613332092762],[0.073678024113178,0.038711652159691,-0.011518485844135],[0.0087944660335779,0.014733416028321,-0.016418520361185]],[[0.20274356007576,0.27815121412277,0.095433063805103],[0.16498351097107,0.11212004721165,-0.14533656835556],[-0.1632971316576,0.0010379931190982,-0.061967007815838]],[[0.023767976090312,0.16536277532578,-0.01651793345809],[0.16950082778931,-0.11394024640322,0.065613903105259],[0.12154356390238,0.18869715929031,-0.057905051857233]],[[-0.011002482846379,0.13836167752743,0.077671900391579],[-0.0095988577231765,-0.26540344953537,-0.23524343967438],[-0.070606082677841,0.054826613515615,-0.066487863659859]],[[-0.10872551053762,0.0030682403594255,0.030623571947217],[0.065747484564781,0.029271511361003,0.13979202508926],[-0.23065435886383,-0.076488055288792,0.13627004623413]],[[-0.084757916629314,-0.0023031500168145,0.1098066419363],[-0.1298186480999,-0.13974723219872,-0.0097121894359589],[-0.089756429195404,-0.017052395269275,-0.18045246601105]],[[-0.020849216729403,-0.0097305187955499,0.0588623508811],[-0.03343253582716,-0.080898493528366,-0.055483162403107],[-0.0090528232976794,0.10593148320913,0.13662065565586]],[[0.068052843213081,-0.0054702167399228,0.19850496947765],[-0.22222258150578,-0.1275140941143,-0.026895027607679],[0.25153735280037,0.31352627277374,-0.063113287091255]],[[0.064415872097015,-0.048886582255363,-0.25325384736061],[0.003699452849105,0.12008340656757,0.22025530040264],[0.0061134207062423,-0.0091283349320292,-0.070195280015469]],[[-0.10974100977182,-0.048674844205379,-0.035369254648685],[0.022461073473096,-0.050753589719534,-0.00063834671163931],[0.10888236016035,-0.072157666087151,-0.039857670664787]],[[-0.011005596257746,0.014943720772862,-0.08600852638483],[0.019691051915288,-0.040467347949743,0.026023685932159],[-0.013557016849518,-0.075250864028931,-0.14286717772484]],[[-0.065211929380894,0.063329555094242,-0.096265122294426],[-0.056655030697584,-0.0049785268492997,-0.28359463810921],[0.025297062471509,0.22139526903629,-0.049164231866598]],[[0.044459253549576,-0.065671905875206,-0.1887322217226],[0.024399470537901,0.093429669737816,0.05951738730073],[-0.052627254277468,-0.036550670862198,0.12294479459524]],[[0.0016364670591429,0.10376198589802,0.054624933749437],[0.068054288625717,0.10891690850258,-0.0059302812442183],[0.096476636826992,0.12406682223082,-0.090659372508526]],[[-0.072827480733395,-0.060220167040825,-0.10974312573671],[0.077567137777805,0.080469734966755,0.073462978005409],[-0.080780826508999,0.0041818902827799,-0.037539478391409]],[[-0.088829927146435,-0.072453536093235,-0.025212056934834],[0.086865343153477,0.099458940327168,-0.12493054568768],[0.13441540300846,0.0054320930503309,-0.085802406072617]],[[0.071733057498932,0.0014491841429844,0.12536062300205],[-0.061126794666052,0.029952373355627,-0.058822922408581],[0.089426964521408,-0.0080741886049509,-0.15274032950401]],[[-0.015728240832686,-0.073877342045307,-0.069947734475136],[-0.1029044687748,-0.051192179322243,0.084861367940903],[-0.047731429338455,-0.12418165057898,-0.057961773127317]],[[0.055468566715717,0.058997694402933,0.013038299977779],[0.032825566828251,0.035632885992527,-0.20771142840385],[-0.039548374712467,-0.13995544612408,-0.12830331921577]],[[-0.057591512799263,-0.059796493500471,-0.14089116454124],[0.045700196176767,-0.025151915848255,-0.16400773823261],[0.081980906426907,0.19205760955811,0.11088376492262]],[[-0.05427472665906,0.12553876638412,-0.024421736598015],[-0.086315855383873,0.21528302133083,-0.00080738571705297],[0.10246952623129,0.11679576337337,-0.03978107124567]],[[0.08430290222168,-0.28746008872986,-0.27180141210556],[-0.038073439151049,-0.35559988021851,0.14899460971355],[0.21451012790203,-0.11407920718193,0.038653176277876]],[[-0.13669429719448,-0.041487198323011,0.10991973429918],[0.040825694799423,-0.1181206330657,-0.04517787694931],[0.21981191635132,-0.034404311329126,-0.044225580990314]],[[0.078264445066452,-0.062533520162106,-0.084920324385166],[0.033078249543905,0.10287042707205,0.14821228384972],[0.013582850806415,0.092738375067711,-0.030841084197164]],[[-0.13525345921516,0.24997600913048,-0.039198495447636],[-0.017895204946399,0.052530653774738,0.061109490692616],[-0.03888500854373,-0.076471954584122,-0.029610393568873]],[[-0.044641118496656,0.055702395737171,-0.092229813337326],[-0.11555267870426,-0.034556984901428,-0.0075825951062143],[0.086097776889801,-0.04394843801856,0.22910118103027]],[[-0.18084973096848,-0.26277324557304,-0.079676099121571],[-0.038648679852486,-0.17958794534206,0.039007741957903],[-0.24576517939568,-0.066765524446964,0.010048420168459]]],[[[-0.028898427262902,0.016813516616821,-0.0069395410828292],[0.008390111848712,0.023616092279553,0.045583810657263],[-0.077008612453938,-0.023957636207342,0.018743621185422]],[[-0.08466350287199,-0.031312253326178,0.019554983824492],[-0.00042183499317616,-0.034187741577625,-0.022937640547752],[0.075199402868748,0.053471997380257,0.15104909241199]],[[-0.067611023783684,-0.014388838782907,0.17705915868282],[0.069378204643726,0.07830536365509,-0.073836036026478],[0.05972495675087,0.061581991612911,0.086529619991779]],[[0.0066803661175072,-0.00539466785267,-0.068517759442329],[0.0012730328598991,-0.0043201479129493,-0.039769966155291],[-0.094721160829067,-0.040263745933771,0.0081801926717162]],[[-0.027422895655036,-0.020155614241958,-0.050057411193848],[0.031433258205652,0.10330048948526,0.1189241707325],[-0.097741343080997,-0.047953598201275,0.015834741294384]],[[-0.027626059949398,-0.068971633911133,0.011452940292656],[0.093622460961342,0.029168425127864,-0.0071714981459081],[0.068729281425476,-0.038358990103006,0.031994752585888]],[[0.051618944853544,0.025627695024014,0.031513992697001],[-0.080697290599346,0.034332942217588,0.088520839810371],[-0.023330621421337,-0.049304850399494,0.088660605251789]],[[-0.038173269480467,-0.052662152796984,0.00073459732811898],[0.020427348092198,-0.035892404615879,-0.046997770667076],[-0.035031262785196,-0.032152161002159,0.090507976710796]],[[0.045509994029999,-0.028097901493311,-0.030495481565595],[-0.017670145258307,0.032350812107325,-0.050396334379911],[0.09725172072649,0.0074408282525837,-0.026517672464252]],[[-0.0062587633728981,0.03301640599966,0.042329255491495],[-0.049647931009531,0.02660484239459,-0.022376637905836],[0.0075245080515742,-0.037235714495182,0.052688121795654]],[[-0.0045752399601042,0.031665328890085,-0.0050522508099675],[0.031105518341064,0.026979146525264,0.063483670353889],[0.089941069483757,0.067090012133121,0.011165554635227]],[[-0.08307546377182,-0.082753092050552,0.021629251539707],[0.037078205496073,-0.01702643185854,0.013129183091223],[0.033324211835861,0.024575879797339,-0.052607901394367]],[[-0.002764273667708,0.016616141423583,-0.0015969827072695],[-0.020911941304803,-0.013187008909881,0.069451488554478],[-0.058841824531555,-0.047295391559601,-0.066488683223724]],[[-0.020713878795505,-0.11046022176743,-0.066762343049049],[-0.10609579831362,0.027187913656235,-0.071952857077122],[-0.073608890175819,-0.011657539755106,-0.042426820844412]],[[-0.020283693447709,0.0092221535742283,-0.044465180486441],[0.0075978576205671,0.012671824544668,-0.036527562886477],[0.0024453676305711,0.031434506177902,0.027806237339973]],[[0.04242217540741,0.049312695860863,-0.018559111282229],[0.046623568981886,0.012701603583992,-0.054381899535656],[0.023973736912012,0.049710810184479,-0.095665998756886]],[[-0.0020494665950537,0.0011745749507099,-0.031159602105618],[0.042389109730721,-0.020829336717725,-0.08124203979969],[-0.038994781672955,0.0023296899162233,0.072862707078457]],[[-0.010546592064202,0.037135642021894,0.031723812222481],[0.0099859610199928,-0.018413869664073,-0.059904076159],[-0.030401341617107,-0.0053790146484971,-0.062295977026224]],[[0.004655571654439,0.017680959776044,-0.0012980587780476],[0.099324502050877,-0.0053072869777679,-0.011382199823856],[0.032254535704851,-0.085290558636189,-0.023473063483834]],[[0.038872886449099,-0.0021744547411799,-0.027631727978587],[0.046687766909599,0.0071516647003591,0.027736216783524],[0.024133663624525,-0.01676949672401,-0.040281753987074]],[[-0.050940319895744,0.016199830919504,0.02833379805088],[0.016786523163319,0.0088104661554098,0.029518093913794],[-0.023238690569997,-0.053162951022387,-0.03537879511714]],[[-0.010823019780219,-0.021205972880125,-0.069477938115597],[0.0669901445508,0.0091764274984598,-0.0066837752237916],[0.062720023095608,0.019562365487218,0.0054655498825014]],[[0.10496737062931,0.072285391390324,-0.10302310436964],[-0.038379412144423,-0.06288780272007,-0.022244604304433],[0.014214612543583,-0.0049077160656452,-0.049198534339666]],[[-0.0250986777246,-0.027377091348171,-0.016247548162937],[-0.059842057526112,0.0033707499969751,-0.022664945572615],[0.012437900528312,0.086398482322693,0.093411833047867]],[[-0.018345583230257,-0.035685200244188,-0.044636830687523],[0.04602737352252,0.049401361495256,0.025968318805099],[-0.039128221571445,-0.040644966065884,0.043377656489611]],[[0.035677913576365,-0.0051463986746967,-0.077822662889957],[0.061048414558172,0.050416920334101,-0.056061986833811],[0.072447329759598,0.094738870859146,0.047036685049534]],[[-0.0072979982942343,0.086546428501606,0.016970859840512],[-0.028347844257951,0.058570429682732,0.017339184880257],[-0.051473777741194,0.06624910980463,0.040544848889112]],[[0.015516683459282,0.019286116585135,0.054356630891562],[-0.059552546590567,-0.014807537198067,-0.011798752471805],[0.029494468122721,0.01321951393038,0.08659515529871]],[[0.069202393293381,-0.013971637934446,-0.029875345528126],[-0.0067457612603903,-0.042942244559526,-0.013258511200547],[0.023731565102935,-0.075157970190048,0.0052716513164341]],[[0.034122530370951,0.027728224173188,0.041245881468058],[-0.064194887876511,0.055005345493555,0.041988279670477],[-0.053495261818171,-0.027384649962187,-0.019973587244749]],[[0.083374679088593,-0.017385942861438,0.026186658069491],[0.0088231442496181,0.015830839052796,0.011639294214547],[-0.016794938594103,0.071862526237965,-0.044723901897669]],[[0.05544601380825,-0.063460126519203,-0.031442686915398],[0.043772138655186,0.13926804065704,0.013342306017876],[0.053770940750837,-0.044563449919224,0.0095236338675022]],[[0.10571443289518,0.054550025612116,-0.028355007991195],[0.026686798781157,-0.029431123286486,-0.024001950398088],[0.030706653371453,-0.00071203766856343,0.043083354830742]],[[0.044106084853411,-0.0070099239237607,-0.033097967505455],[0.0014396406477317,0.0030172748956829,0.026907740160823],[-0.086237095296383,0.013144751079381,-0.0048376526683569]],[[0.071430131793022,-0.052612509578466,0.07197667658329],[-0.069579482078552,-0.051602851599455,0.040521342307329],[-0.010743863880634,-0.028993748128414,-0.022002529352903]],[[-0.043962646275759,0.014383364468813,-0.034833777695894],[-0.015968229621649,-0.010457259602845,-0.039917256683111],[-0.044755265116692,-0.044702127575874,-0.012224364094436]],[[0.040482640266418,-0.012501779012382,0.010255433619022],[0.01926089450717,-0.046077828854322,0.022923525422812],[-0.036864578723907,0.02909361384809,-0.0024350858293474]],[[-0.0092399632558227,0.0025153895840049,0.0450992397964],[-0.035346928983927,-0.0017088388558477,0.10582706332207],[-0.0049490774981678,-0.094734527170658,0.01225827075541]],[[0.019520247355103,0.033500362187624,0.0054141259752214],[0.026936769485474,0.0023977090604603,0.11099830269814],[0.062621705234051,-0.056428629904985,0.024652985855937]],[[-0.032711047679186,-0.011798000894487,-0.0070076114498079],[0.013270133174956,-0.045145120471716,-0.0030338722281158],[0.049047902226448,-0.023278390988708,-0.0096429390832782]],[[0.020517723634839,-0.020534316077828,-0.045276124030352],[0.020572243258357,0.035254329442978,-0.015647117048502],[-0.062250178307295,-0.031648706644773,-0.10700687766075]],[[-0.0012226619292051,-0.054222341626883,-0.014847892336547],[0.0015846048481762,-0.0090568456798792,-0.0040055196732283],[-0.041558224707842,0.022691989317536,-0.035629201680422]],[[-0.024940995499492,-0.075389713048935,-0.034154511988163],[-0.037018831819296,0.014560120180249,0.043149616569281],[0.0075211734510958,0.031869392842054,0.018310924991965]],[[0.020182557404041,0.014070653356612,0.0064822304993868],[0.0046858605928719,0.00047879983321764,-0.079176560044289],[-0.019602628424764,0.022136893123388,0.023275103420019]],[[0.061901800334454,0.040496997535229,0.047239731997252],[0.052980024367571,0.027461653575301,0.0080445362254977],[-0.023222494870424,0.0011065711732954,0.003938015550375]],[[0.021420612931252,0.0093238512054086,0.029258174821734],[-0.026312600821257,-0.0073060020804405,0.0040280795656145],[-0.037088081240654,-0.054866760969162,0.054365340620279]],[[0.0014025550335646,0.0085857566446066,-0.084115162491798],[0.025289909914136,0.015678400173783,-0.098319239914417],[0.016632812097669,-0.028777411207557,0.024058444425464]],[[-0.018880065530539,-0.067602276802063,-0.035538002848625],[-0.039548382163048,0.02287732809782,0.024129187688231],[0.031380698084831,0.0057989880442619,-0.19135315716267]],[[0.022661937400699,-0.04740459471941,0.026937386021018],[-0.0049670920707285,-0.026878360658884,0.081157594919205],[-0.021057281643152,0.0024201031774282,-0.082029618322849]],[[-0.0066224187612534,-0.042732369154692,-0.019003257155418],[-0.096659436821938,-0.078486256301403,0.012564392760396],[0.035294778645039,-0.047447565943003,0.058439683169127]],[[0.010127580724657,-0.0039923638105392,0.011540497653186],[-0.022157672792673,-0.075196027755737,-0.094460859894753],[0.0057362644001842,-0.016403634101152,-0.03190678730607]],[[-0.070849061012268,-0.044482331722975,0.051019992679358],[0.081611774861813,-0.056129768490791,-0.0043899300508201],[-0.0062417215667665,-0.01715393178165,0.02193883061409]],[[-0.062547035515308,-0.040522236377001,0.0084656635299325],[0.0074523971416056,-0.049456421285868,-0.031904488801956],[0.0055173994041979,0.038560952991247,-0.027573674917221]],[[-0.053256046026945,-0.054115906357765,-0.035388063639402],[-0.074339367449284,0.047438103705645,0.0045284596271813],[0.093034863471985,0.0075885131955147,-0.032738585025072]],[[0.01601885817945,-0.05031568184495,0.046967674046755],[0.13537169992924,0.096966087818146,0.067184746265411],[-0.020573273301125,-0.00054623460164294,-0.03244398906827]],[[0.13434411585331,0.033416464924812,-0.047175232321024],[-0.021835057064891,-0.019071439281106,-0.05587050691247],[-0.011849359609187,0.018753493204713,-0.020542712882161]],[[0.04733382537961,-0.034839008003473,-0.098689511418343],[-0.031415816396475,0.021663136780262,0.066431261599064],[0.030174028128386,-0.064711973071098,0.090717494487762]],[[-0.024825073778629,-0.010142166167498,0.023156847804785],[0.028136026114225,-0.057597380131483,0.034646350890398],[0.013857807032764,-0.046451527625322,-0.024872055277228]],[[-0.051216650754213,-0.075832329690456,0.039958119392395],[-0.033823393285275,-0.12202231585979,0.031346365809441],[-0.048813115805387,-0.040191683918238,0.046922404319048]],[[0.031742781400681,0.011035349220037,-0.10729417204857],[0.038364071398973,-0.06132860481739,-0.089488849043846],[0.071894273161888,0.096147067844868,0.0055513316765428]],[[0.011162061244249,0.0025367338676006,-0.020242553204298],[-0.021381702274084,-0.0033743255771697,-0.013390957377851],[-0.073248274624348,-0.063777521252632,-0.01445075776428]],[[-0.077820554375648,0.015676571056247,0.0087503483518958],[0.028350362554193,0.018538821488619,0.0086615867912769],[0.028555057942867,-0.078675523400307,-0.068800546228886]],[[-0.0097225792706013,-0.0013646769803017,-0.085102044045925],[-0.035776346921921,-0.012430450879037,0.03134111315012],[0.088864326477051,-0.01796817407012,0.02712744474411]],[[-0.033381514251232,-0.0069450899027288,0.045951697975397],[0.065380074083805,0.017914796248078,-0.018207579851151],[-0.10316736251116,0.056578148156404,0.0068837404251099]],[[-0.0066362908110023,-0.090949058532715,0.0098691787570715],[0.057491544634104,-0.040722858160734,-0.071072153747082],[-0.061188999563456,-0.057940285652876,-0.022755682468414]],[[0.037396863102913,-0.065256856381893,-0.025725118815899],[0.0099406391382217,0.066163450479507,-0.076912619173527],[-0.016100339591503,0.07861353456974,0.019205251708627]],[[0.045248601585627,0.046939168125391,0.044118568301201],[-0.014974974095821,0.035734880715609,0.034635327756405],[0.062777690589428,0.048465143889189,0.027520766481757]],[[0.015274670906365,-0.028612237423658,-0.057073958218098],[0.028284976258874,-0.065566323697567,-0.04960960149765],[-0.024196235463023,-0.0028250541072339,0.021545212715864]],[[0.060702353715897,-0.04801008105278,-0.096753895282745],[0.0031632478348911,0.031502690166235,-0.11772995442152],[0.064941607415676,-0.038697022944689,-0.046604041010141]],[[0.017620891332626,-0.038478877395391,0.046379338949919],[-0.021646969020367,-0.016075402498245,-0.027997702360153],[-0.023659812286496,0.077590093016624,0.030831465497613]],[[0.038123890757561,-0.009421112947166,-0.02980144880712],[0.027191383764148,-0.060688953846693,0.02012350782752],[0.00094741256907582,0.072918735444546,-0.0022778641432524]],[[-0.010915308259428,0.025534816086292,0.0032625093590468],[-0.008812302723527,0.051795057952404,0.013401389122009],[-0.010798428207636,0.083007082343102,0.036617580801249]],[[0.04448664560914,0.017497839406133,-0.05434338748455],[0.018830116838217,-0.025158857926726,-0.018120070919394],[-0.019060559570789,-0.0098241483792663,0.05262153595686]],[[-0.024637268856168,0.015108266845345,-0.026285599917173],[0.05908614769578,0.0060775959864259,-0.024158040061593],[-0.030683742836118,0.019246898591518,0.031361058354378]],[[-0.014711853116751,0.013873578049242,0.027775397524238],[-0.038462772965431,0.021487267687917,0.068643502891064],[-0.052103914320469,-0.0073139877058566,-0.071986138820648]],[[-0.016274280846119,0.04601613804698,0.025061797350645],[0.027153126895428,-0.00015550456009805,0.084273412823677],[0.0056006973609328,-0.0094343321397901,0.011679180897772]],[[-0.07315431535244,-0.027120117098093,0.021135428920388],[-0.057490039616823,-0.10428252071142,0.019694950431585],[-0.010324134491384,-0.0030301280785352,-0.043252177536488]],[[-0.032343443483114,-0.07241952419281,-0.010779957287014],[-0.020039403811097,-0.055514242500067,0.031274065375328],[-0.0010515149915591,-0.007038370706141,0.00016982978559099]],[[0.03439287468791,0.014711803756654,0.0051308162510395],[-0.009798975661397,0.023232404142618,-0.031484887003899],[0.0072086900472641,0.013125052675605,0.051271229982376]],[[-0.030446222051978,-0.070685602724552,0.066976182162762],[-0.031235905364156,-0.063902944326401,-0.01394877396524],[0.0055537028238177,-0.039785668253899,-0.032589852809906]],[[0.015888990834355,0.012120577506721,-0.019856136292219],[-0.054181553423405,-0.078199930489063,-0.067149445414543],[0.022747298702598,-0.070465452969074,-0.039827808737755]],[[0.076245285570621,0.028896695002913,0.050294678658247],[-0.042876947671175,0.11838306486607,-0.037542432546616],[-0.10770089179277,-0.058204717934132,0.062948599457741]],[[0.067956164479256,0.15001283586025,0.066387221217155],[-0.023230610415339,0.011417820118368,0.037308983504772],[-0.036094844341278,-0.040803164243698,0.0063564693555236]],[[0.021997973322868,-0.069589920341969,-0.042876534163952],[0.052030146121979,0.0043451944366097,-0.040070153772831],[-0.065535590052605,-0.077394388616085,-0.044459339231253]],[[0.013044964522123,-0.004193049389869,0.065779693424702],[-0.0065879691392183,-0.052236665040255,0.089131191372871],[0.026894887909293,-0.093819685280323,-0.042019858956337]],[[-0.041315503418446,-0.042277332395315,0.01239915471524],[0.10976327210665,0.094193547964096,0.08580020815134],[-0.038504756987095,-0.009515093639493,-0.011270296759903]],[[-0.041775438934565,0.02845267392695,-0.0063088675960898],[-0.0064429710619152,-0.070015169680119,0.041683446615934],[0.021517187356949,-0.075611747801304,-0.02769536152482]],[[0.10542738437653,0.11038237810135,0.059049565345049],[-0.054221738129854,-0.031658004969358,-0.016431760042906],[-0.022057564929128,0.0096244113519788,-0.030099427327514]],[[0.10007800906897,0.070373825728893,-0.037503514438868],[0.054205071181059,-0.013449152000248,-0.0067624198272824],[0.06999210268259,0.046220019459724,0.016180314123631]],[[0.039020400494337,0.0027430371847004,0.07789108902216],[0.12163637578487,0.017647268250585,0.028875697404146],[0.045789070427418,-0.027141012251377,-0.037630774080753]],[[-0.10024590790272,-0.021059164777398,-0.0087462263181806],[-0.07121205329895,-0.064836777746677,0.066438749432564],[-0.034265622496605,-0.042913556098938,0.0032885516993701]],[[0.029598349705338,-0.030984804034233,0.0099401278421283],[-0.023161353543401,-0.047350838780403,-0.030501745641232],[-0.0038152751512825,-0.046432036906481,-0.0010706081520766]],[[0.1048194244504,0.05067216232419,-0.028247866779566],[0.049135405570269,-0.01084513310343,0.00045839583617635],[-0.060858119279146,0.041015330702066,0.062370721250772]],[[0.012386535294354,-0.012263760901988,0.047194767743349],[-0.047851994633675,-0.011161943897605,0.069796092808247],[-0.010772594250739,-0.014977669343352,0.13853795826435]],[[-0.0030136615969241,0.077475771307945,-0.0010276729008183],[0.083323411643505,0.14387111365795,-0.0071219424717128],[0.019466441124678,0.004050865303725,-0.005551680456847]],[[-0.019928891211748,-0.027193617075682,-0.10596766322851],[-0.022541828453541,-0.11637257039547,-0.038476653397083],[0.043734908103943,-0.071915529668331,-0.014573732391]],[[0.061377841979265,0.047027911990881,-0.020804710686207],[-0.044746376574039,-0.0096492627635598,-0.059062659740448],[0.080488681793213,-0.015327849425375,0.045675255358219]],[[-0.04826407507062,0.06669045984745,0.055920604616404],[-0.017307741567492,0.17610703408718,0.0016091915313154],[0.073262006044388,0.11728777736425,-0.0011677744332701]],[[0.079840309917927,0.019518552348018,0.023123495280743],[0.022554885596037,-0.068617507815361,0.018687242642045],[-0.041125185787678,0.0042320336215198,-0.0030287934932858]],[[-0.0038572030607611,0.017104860395193,0.062898725271225],[2.3859574866947e-05,0.0061272936873138,0.063217952847481],[-0.01871170476079,0.076294772326946,0.053566716611385]],[[-0.032131668180227,-0.030455127358437,0.029324647039175],[-0.026329586282372,-0.0068317521363497,0.0097133936360478],[0.089165210723877,0.077457047998905,0.0045035416260362]],[[-0.003535604570061,0.050491217523813,-0.060441832989454],[-0.014762124046683,0.17822228372097,0.073404990136623],[-0.034496445208788,-0.10379146039486,0.013621515594423]],[[-0.07888837903738,-0.049060963094234,0.033924404531717],[0.0039305030368268,-0.019685376435518,0.045751623809338],[0.056474283337593,0.028991755098104,-0.076188631355762]],[[-0.0053681498393416,0.054107997566462,0.052638050168753],[-0.021511195227504,-0.069078430533409,0.0088269840925932],[0.048782665282488,0.054551184177399,-0.029571954160929]],[[-0.0090795354917645,0.047791384160519,0.035912420600653],[-0.068207450211048,-0.053127776831388,0.0043810671195388],[0.012964479625225,-0.010406788438559,0.018495313823223]],[[0.0034521627239883,-0.052554622292519,-0.050463486462831],[0.0035789445973933,-0.0037871419917792,-0.033906873315573],[-0.026934152469039,0.0040582702495158,0.047421623021364]],[[-0.054882474243641,0.049113761633635,0.072460331022739],[0.046036340296268,0.0032612034119666,0.028396673500538],[-0.02738825045526,-0.042307663708925,0.053676795214415]],[[-0.06090847030282,-0.058676011860371,-0.07183426618576],[-0.050144955515862,-0.040815774351358,0.0061679659411311],[-0.051585417240858,-0.016319509595633,-0.026641394942999]],[[-0.11618886888027,-0.0016236967639998,0.066034518182278],[0.077835530042648,-0.0029732345137745,-0.010185912251472],[0.0022300386335701,-0.028348924592137,-0.0068034110590816]],[[0.0062332670204341,0.048395074903965,0.035117905586958],[0.080893717706203,0.028743542730808,-0.017699664458632],[0.046684388071299,0.021159518510103,0.025573624297976]],[[-0.049705784767866,-0.0018191961571574,0.0029271049425006],[-0.027595836669207,-0.081410683691502,-0.012136043049395],[-0.013029462657869,-0.0065988400019705,-0.0020028650760651]],[[-0.0074253114871681,0.0061877728439867,-0.050503455102444],[-0.040306132286787,-0.019705256447196,-0.12614141404629],[0.032298743724823,-0.060869269073009,-0.075760543346405]],[[0.015858137980103,0.11659348011017,0.011929562315345],[-0.00057145248865709,0.062149662524462,0.054961051791906],[0.091285176575184,0.036090176552534,0.024489834904671]],[[-0.062399350106716,0.00068095553433523,0.047269802540541],[0.065015517175198,0.032253529876471,-0.021610613912344],[0.0020741270855069,-0.057583317160606,-0.041379954665899]],[[0.013238446787,-0.056429021060467,-0.00035173233482055],[0.054256908595562,0.075360022485256,-0.025617256760597],[0.006482167635113,0.01629413664341,0.0043776156380773]],[[-0.044888969510794,-0.035002313554287,0.017513956874609],[0.033915355801582,-0.055324602872133,-0.012953359633684],[0.02123324945569,-0.038580842316151,-0.012052230536938]],[[0.042198602110147,-0.051195368170738,-0.021741239354014],[0.0023321576882154,-0.065456360578537,-0.1253113001585],[0.061704162508249,0.020789105445147,-0.017497135326266]],[[0.016364837065339,-0.03707430139184,-0.019914219155908],[0.10175157338381,0.045641753822565,-0.0054776328615844],[-0.006793599575758,0.010623962618411,0.083691239356995]],[[-0.13153381645679,-0.045663397759199,0.0090410318225622],[0.038854565471411,-0.016115425154567,0.0013368621002883],[-0.057428110390902,0.020765388384461,0.084931291639805]],[[-0.016869133338332,0.013512949459255,0.023843763396144],[0.041596073657274,0.086336307227612,-0.004652607254684],[0.13206775486469,0.092795580625534,0.016978170722723]],[[0.075577907264233,0.0076016834937036,0.07701501250267],[-0.057093288749456,0.066185958683491,0.06979039311409],[0.020945467054844,0.080186434090137,0.097720578312874]],[[0.058692120015621,-0.0056382571347058,0.128472879529],[0.083128087222576,-0.010474438779056,0.03113853558898],[0.041189733892679,0.010523780249059,0.00039730095886625]],[[-0.0049673104658723,0.055308274924755,-0.0061598173342645],[-0.025686249136925,-0.031592011451721,0.014520387165248],[-0.062823571264744,-0.052011042833328,-0.12765437364578]],[[0.058057229965925,0.011479780077934,0.052283804863691],[0.05748500302434,-0.050137717276812,0.010141681879759],[0.069706611335278,-0.012113251723349,0.064520493149757]],[[0.038105063140392,0.04454343393445,0.068351119756699],[0.068025931715965,0.10147649049759,-0.01102767046541],[-0.030927779152989,0.027055850252509,-0.020506089553237]],[[0.0071730143390596,0.00080902117770165,0.064004376530647],[-0.0029205996543169,0.069353871047497,-0.045387648046017],[-0.0013745260657743,-0.059631116688251,-0.043781604617834]],[[0.021619828417897,0.0029551680199802,0.057008229196072],[-0.032058533281088,-0.036881230771542,0.049513451755047],[-0.0027213878929615,0.05911548435688,0.1014017984271]],[[-0.0070648910477757,-0.035209875553846,-0.014640636742115],[-0.020625695586205,0.0044842441566288,-0.083612084388733],[-0.054520275443792,0.11511269956827,0.031386416405439]]],[[[0.10538905858994,0.01606728322804,0.094089820981026],[0.034666538238525,0.065241038799286,0.02570303529501],[-0.053401373326778,0.019158519804478,-0.073244906961918]],[[-0.073245353996754,-0.11621309071779,-0.080757699906826],[-0.05601505190134,-0.01208726875484,-0.080717325210571],[-0.049911469221115,-0.06603129953146,0.080044955015182]],[[0.015429819002748,0.039715003222227,-0.035407416522503],[0.079043671488762,0.039349790662527,-0.068842381238937],[0.048413388431072,0.037279043346643,0.075769893825054]],[[-0.029543485492468,-0.10392417758703,-0.069013774394989],[0.07203770428896,-0.018862484022975,-0.096202611923218],[0.1204764097929,-0.073382712900639,-0.14274038374424]],[[-0.15296210348606,-0.06568493694067,-0.11363703757524],[0.00035415546153672,0.10724724829197,-0.018219847232103],[-0.11902622133493,-0.096209526062012,-0.13631288707256]],[[-0.11993222683668,-0.068334504961967,-0.08832061290741],[0.16552966833115,0.15610331296921,0.16091349720955],[-0.12050330638885,-0.031820975244045,0.05434849858284]],[[-0.056163422763348,0.13181382417679,-0.10948745906353],[-0.0325967669487,0.10832893848419,-0.10180625319481],[0.11386189609766,0.17915235459805,-0.087996564805508]],[[-0.050477236509323,0.10687969624996,-0.04162398353219],[-0.11194560676813,-0.018301507458091,-0.11233862489462],[-0.06099808588624,0.057170860469341,0.10024043917656]],[[0.17170806229115,0.089693561196327,-0.05827260017395],[0.013388719409704,-0.02374485693872,-0.088376887142658],[-0.012718684971333,-0.021821713075042,-0.019949587062001]],[[0.0013680866686627,0.0026056643109769,-0.0080787884071469],[-0.057795450091362,-0.034264583140612,-0.099535308778286],[-0.030974872410297,-0.076267376542091,-0.0062635000795126]],[[-0.096987210214138,-0.057381685823202,0.0069006262347102],[-0.10042492300272,0.023357091471553,0.15352234244347],[0.038056664168835,-0.03703348338604,-0.075162529945374]],[[-0.031561601907015,0.043975744396448,0.091531299054623],[0.016724592074752,0.01220668386668,0.058146364986897],[0.17411153018475,0.10584864020348,0.035642992705107]],[[-0.00530771818012,-0.064064167439938,0.00081449357094243],[-0.0077127576805651,-0.056349251419306,-0.014343895949423],[-0.050635863095522,-0.059796907007694,0.070442661643028]],[[0.085642024874687,-0.021974042057991,0.060368597507477],[0.010782996192575,-0.10186566412449,-0.057468239217997],[-0.12502998113632,0.038171976804733,0.028134575113654]],[[0.20501846075058,0.059095866978168,0.037687469273806],[0.08437318354845,0.096598699688911,0.059970237314701],[-0.053569283336401,0.10010270029306,0.24057494103909]],[[0.08779039978981,-0.034644313156605,-0.031727325171232],[0.070238791406155,-0.060886073857546,-0.06962613016367],[0.17320887744427,-0.022959016263485,-0.14409480988979]],[[-0.16797691583633,-0.05557618662715,-0.10352724045515],[-0.021801801398396,0.11363992094994,-0.075963221490383],[0.070934593677521,0.051362551748753,-0.0014966436428949]],[[-0.029535170644522,0.13873985409737,0.25399196147919],[-0.044499687850475,-0.1077546775341,-0.0063443351536989],[0.03336950391531,0.053320404142141,-0.065679870545864]],[[-0.0042781224474311,0.027173236012459,0.080398611724377],[-0.1494725048542,0.0016838544979692,-0.082572974264622],[-0.069148346781731,0.015253104269505,0.02646248601377]],[[0.056502982974052,0.049324210733175,0.066318109631538],[0.021524183452129,-0.10602034628391,-0.041014209389687],[0.089188024401665,0.021192032843828,-0.065762050449848]],[[0.0093040429055691,-0.023884756490588,0.061595819890499],[0.046586647629738,0.064924001693726,0.081781111657619],[-0.22959439456463,-0.083240792155266,-0.0063047832809389]],[[-0.010210429318249,-0.062143117189407,-0.086984016001225],[0.042710117995739,-0.050302591174841,0.0756541416049],[-0.043638221919537,-0.078318953514099,-0.05626654997468]],[[-0.070541240274906,0.035014633089304,0.015245144255459],[0.017638843506575,0.006651715375483,-0.070149064064026],[-0.056340612471104,0.15970596671104,-0.18211644887924]],[[0.014563232660294,-0.029693726450205,-0.068346992135048],[-0.0045606829226017,-0.00093358557205647,-0.091658599674702],[0.064851306378841,-0.11977757513523,-0.048203885555267]],[[0.050345752388239,-0.17085506021976,-0.12754911184311],[-0.00071675237268209,0.064411893486977,-0.0026875562034547],[-0.030112106353045,0.012450077570975,0.022317925468087]],[[-0.033345334231853,0.10801274329424,-0.0057898052036762],[-0.11440980434418,0.018955763429403,0.018190471455455],[0.061957348138094,0.025117922574282,-0.014726508408785]],[[0.080464601516724,-0.032743155956268,0.053464073687792],[-0.064469859004021,0.099118858575821,0.091585956513882],[-0.095235593616962,-0.075493358075619,-0.11151476949453]],[[-0.02429386600852,0.024709595367312,-0.022342145442963],[-0.088812053203583,-0.088783994317055,-0.013979114592075],[0.15037167072296,0.070247985422611,0.043305266648531]],[[0.077687874436378,-0.070480890572071,-0.093722939491272],[-0.020761968567967,-0.085990078747272,0.0085918102413416],[-0.026439730077982,-0.066451892256737,-0.0089982142671943]],[[-0.010655763559043,-0.066365212202072,0.052293285727501],[0.012326260097325,-0.073472060263157,-0.042153239250183],[0.064871951937675,0.033566955476999,-0.16177037358284]],[[-0.0014751958660781,0.14587345719337,0.020773565396667],[-0.14512023329735,-0.035380832850933,-0.15305197238922],[0.026869922876358,-0.029786493629217,0.036241833120584]],[[0.00021479406859726,-0.16860155761242,-0.08203698694706],[-0.0479776263237,-0.019652828574181,-0.037973955273628],[0.056024789810181,-0.13488012552261,-0.12589283287525]],[[-0.054026708006859,-0.014852683059871,-0.08572182059288],[0.073212184011936,0.099436268210411,0.055511198937893],[0.028636325150728,0.028142904862761,0.12899163365364]],[[0.020636692643166,0.11107286065817,-0.025800613686442],[-0.010100814513862,0.027070458978415,0.023192381486297],[-0.10869007557631,-0.13567622005939,0.18824104964733]],[[0.056870769709349,-0.12941259145737,-0.14359745383263],[0.050049338489771,-0.0060465699061751,-0.032336015254259],[0.00022510610870086,-0.01833376288414,0.023144204169512]],[[-0.069637529551983,0.038021203130484,0.091560773551464],[-0.025856563821435,0.11591819673777,-0.061264168471098],[-0.013698714785278,0.0066902535036206,0.048942871391773]],[[0.042312204837799,0.024461710825562,-0.015559079125524],[0.047684449702501,0.0818165615201,0.043529037386179],[0.071232482790947,0.03516698256135,-0.073580645024776]],[[0.039817538112402,0.012436550110579,0.0069681471213698],[-0.00073484604945406,0.20445255935192,0.046539098024368],[-0.12961092591286,-0.064860612154007,-0.12352342158556]],[[-0.049413587898016,-0.035553529858589,-0.11882902681828],[-0.056479748338461,-0.11721123754978,-0.025539711117744],[0.0039930967614055,0.019839737564325,-0.030973250046372]],[[0.0013823418412358,-0.0047374982386827,0.082736365497112],[-0.066610231995583,-0.07868655025959,-0.018775532022119],[-0.052101705223322,-0.058596901595592,-0.045760158449411]],[[0.13098622858524,-0.054670281708241,-0.062851928174496],[-0.083641447126865,0.05226019397378,0.11904612928629],[-0.11109445244074,-0.040238186717033,-0.044467769563198]],[[0.047782566398382,-0.0036033242940903,-0.0037292442284524],[0.14544920623302,0.15012201666832,-0.0070846946910024],[-0.058475386351347,-0.064857073128223,0.083479017019272]],[[-0.011110138148069,0.041701976209879,0.063729114830494],[-0.093448661267757,-0.0047873170115054,0.025270799174905],[-0.18659645318985,-0.21835790574551,0.017839705571532]],[[0.0312519967556,0.0016629589954391,0.032862421125174],[-0.02955455891788,-0.042002592235804,0.0031005470082164],[-0.11387179046869,-0.078825362026691,-0.052470300346613]],[[-0.016732584685087,-0.066591985523701,0.043079525232315],[0.00085060938727111,-0.080369547009468,0.13639810681343],[0.029707042500377,-0.02441886253655,-0.065677218139172]],[[0.11977706849575,0.12090933322906,0.067322462797165],[0.16838052868843,-0.035474486649036,-0.10234542191029],[-0.028371073305607,-0.032367918640375,-0.017068071290851]],[[-0.05127777159214,-0.026813983917236,-0.037003867328167],[-0.045269589871168,0.11682967096567,0.080849647521973],[-0.14569768309593,-0.029956504702568,-0.01404495164752]],[[-0.062560141086578,0.04725619405508,0.059932824224234],[0.0084628956392407,0.13990639150143,-0.019499076530337],[-0.21735389530659,-0.037547875195742,0.09461747854948]],[[-0.035861123353243,-0.028481055051088,0.075522743165493],[0.030628746375442,0.021269721910357,-0.00031766184838489],[-0.0078433668240905,-0.010760155506432,0.051970865577459]],[[-0.083475790917873,0.017259109765291,-0.012164325453341],[-0.12200868874788,0.034213308244944,-0.051294185221195],[-0.095368109643459,0.079387299716473,0.002626733854413]],[[-0.021224422380328,0.038059875369072,-0.037335976958275],[0.015346290543675,0.01550763938576,-0.04346327111125],[0.018467653542757,-0.15275076031685,-0.05773576721549]],[[0.026652114465833,0.022725971415639,-0.0012907669879496],[-0.12470219284296,-0.072901204228401,-0.11410689353943],[-0.058372292667627,0.17239928245544,-0.03077694401145]],[[-0.063226409256458,-0.019701780751348,-0.063952937722206],[-0.071722134947777,0.014052896760404,-0.0022761840373278],[-0.015192334540188,-0.029612574726343,-0.070923879742622]],[[0.20626251399517,0.15460899472237,0.12832023203373],[-0.069590166211128,-0.011656652204692,-0.073017150163651],[0.030590213835239,-0.070082396268845,-0.10972327739]],[[-0.0047874008305371,0.0014149029739201,0.015867626294494],[0.097000740468502,-0.028092909604311,-0.003824383020401],[0.070431649684906,0.067533865571022,0.14157912135124]],[[-0.082839392125607,-0.014053140766919,-0.06665463000536],[0.025426179170609,-0.061545602977276,-0.046072393655777],[0.080705091357231,-0.012104860506952,0.046220354735851]],[[0.0069397487677634,-0.087091065943241,0.0046892859973013],[-0.020002357661724,-0.071973688900471,0.060140781104565],[-0.041148945689201,-0.07584423571825,0.22266764938831]],[[-0.0068501913920045,0.0069581330753863,0.024753306061029],[-0.086765177547932,-0.026022732257843,-0.077308475971222],[-0.24559772014618,-0.099010847508907,-0.027596101164818]],[[-0.11273416131735,-0.038871426135302,-0.024129040539265],[0.018729820847511,0.019000956788659,0.069673776626587],[-0.18493989109993,-0.079983025789261,0.014977020211518]],[[0.10422772169113,0.011563752777874,-0.1041129976511],[-0.036561120301485,0.10639153420925,-0.04528309032321],[0.05975865572691,0.13429248332977,0.15941059589386]],[[0.041270226240158,-0.0087060807272792,-0.066383183002472],[-0.018045229837298,-0.018358180299401,-0.075485795736313],[-0.0035486700944602,-0.11733867228031,-0.34526041150093]],[[-0.073682442307472,-0.093264132738113,-0.037402797490358],[-0.19896727800369,-0.15610897541046,-0.089062742888927],[-0.025353094562888,-0.10511307418346,-0.10184531658888]],[[-0.026752265170217,-0.066684193909168,-0.064175128936768],[-0.0051763644441962,-0.0063926880247891,-0.058848544955254],[0.12318986654282,0.0059471889398992,0.023866012692451]],[[0.040578328073025,0.1669859290123,0.087884664535522],[0.16214020550251,0.080834269523621,0.11317953467369],[-0.06712269037962,0.065632380545139,0.20536418259144]],[[0.016645612195134,0.032306101173162,-0.090205065906048],[-0.051229473203421,0.047104351222515,-0.021867679432034],[-0.026816984638572,-0.051356889307499,-0.030352924019098]],[[0.027648681774735,-0.079075664281845,0.048556942492723],[-0.17372851073742,-0.02193752489984,0.025630254298449],[-0.099049620330334,0.030135564506054,0.012458830140531]],[[0.068700842559338,0.00035304224002175,-0.0045477580279112],[-0.097634181380272,-0.023651452735066,0.013593155890703],[0.028351917862892,0.10183544456959,0.081705421209335]],[[-0.038882914930582,-0.087113596498966,-0.089605659246445],[-0.040763039141893,-0.24881802499294,-0.25510302186012],[-0.073719672858715,-0.12633486092091,0.078142911195755]],[[-0.055871974676847,-0.022841911762953,0.020504634827375],[-0.08014976978302,0.025844905525446,0.016012793406844],[0.17844562232494,0.048355475068092,-0.041783798485994]],[[0.039918839931488,0.014743393287063,0.15210500359535],[-0.11893121898174,-0.14597365260124,-0.051817186176777],[0.10743397474289,0.04311914741993,0.058437582105398]],[[-0.07403901219368,0.073074519634247,0.015191088430583],[0.038933973759413,-0.035889711230993,-0.1048039495945],[0.0077764526940882,0.030159847810864,0.16264365613461]],[[0.0091172736138105,0.069265402853489,0.27948445081711],[-0.038435883820057,-0.0076307407580316,-0.032722152769566],[0.042242523282766,-0.060120828449726,-0.042674336582422]],[[0.044304620474577,-0.11257966607809,-0.093335144221783],[0.0079016983509064,-0.095150656998158,-0.10635648667812],[-0.14989024400711,-0.086426235735416,-0.016779955476522]],[[0.082875147461891,0.10569523274899,0.17996220290661],[0.023726029321551,0.060016222298145,0.13494969904423],[-0.14841765165329,0.04531817138195,0.0088172052055597]],[[-0.047265850007534,-0.033627275377512,0.017022341489792],[0.021105049178004,-0.1185005903244,-0.019942954182625],[0.031776677817106,-0.014872336760163,0.070967003703117]],[[-0.067894503474236,0.023037157952785,-0.038764953613281],[0.12887717783451,-0.056027442216873,-0.070333652198315],[-0.02059942856431,0.11593719571829,-0.038198206573725]],[[0.044154595583677,0.033222913742065,0.050316352397203],[0.019402759149671,0.013593077659607,0.067219644784927],[-0.017302166670561,0.11030548065901,0.11855169385672]],[[0.21484661102295,-0.017153188586235,0.024935245513916],[0.09575679153204,0.052463561296463,-0.056576993316412],[0.021276365965605,-0.10136755555868,-0.067303344607353]],[[0.13422822952271,0.085635162889957,-0.033593516796827],[0.096320576965809,0.015072942711413,-0.071269541978836],[0.092492908239365,0.053699944168329,0.072121702134609]],[[-0.15103404223919,-0.0081289997324347,-0.016666818410158],[-0.11902114003897,-0.12465728074312,0.039938218891621],[-0.06396721303463,-0.093620024621487,0.053484976291656]],[[0.093121707439423,-0.075903169810772,-0.21920281648636],[0.078754663467407,0.022786760702729,0.079486072063446],[0.13438612222672,-0.133609816432,-0.013364149257541]],[[0.24649232625961,0.092685326933861,-0.099420182406902],[0.23233352601528,0.15090988576412,0.027244193479419],[0.052235763520002,-0.043931610882282,-0.1129435300827]],[[-0.18968936800957,0.061132181435823,-0.028292672708631],[0.13702476024628,0.10245011746883,-0.040410377085209],[-0.063967362046242,0.073374263942242,0.060950797051191]],[[0.04883237183094,0.054169785231352,0.093465082347393],[-0.055001564323902,-0.041619829833508,-0.076309949159622],[0.016902117058635,-0.013826945796609,-0.032661139965057]],[[0.099908351898193,0.17413838207722,0.011431174352765],[0.019085120409727,0.054628625512123,0.051467731595039],[0.082262597978115,0.013759283348918,-0.10529178380966]],[[-0.037709664553404,0.019814543426037,-0.071306981146336],[0.048912476748228,-0.00061526987701654,0.063347481191158],[0.14351199567318,0.081254340708256,-0.041588127613068]],[[0.077010773122311,0.074398227035999,0.01277787424624],[-0.11922572553158,-0.052231468260288,-0.086405947804451],[-0.10870210826397,-0.01632378809154,0.050832614302635]],[[0.055467665195465,-0.069922842085361,-0.034120973199606],[0.13998037576675,-0.024959845468402,-0.08416261523962],[0.017434291541576,0.074444152414799,0.05963684245944]],[[-0.10586325079203,-0.064797520637512,0.011178832501173],[-0.15290914475918,0.011508045718074,0.13488484919071],[0.02077616378665,0.013331225141883,0.23259837925434]],[[0.06093081086874,0.025439918041229,-0.073469787836075],[0.085104331374168,0.048371355980635,-0.051664475351572],[-0.074033841490746,0.026565564796329,-0.023362433537841]],[[0.07494679838419,-0.025464467704296,-0.185481518507],[-0.054636437445879,-0.035375420004129,0.043932162225246],[0.068990223109722,-0.090786777436733,0.081482253968716]],[[-0.044386852532625,-0.067330606281757,-0.1374703347683],[0.05080259218812,0.0037566577084363,-0.074198633432388],[-0.095101416110992,-0.072916112840176,-0.052037596702576]],[[0.10710525512695,0.043912619352341,0.018057458102703],[0.028520571067929,-0.068229384720325,0.061193011701107],[-0.01097047328949,0.046778250485659,-0.02404959499836]],[[-0.07598514854908,-0.08969421684742,0.020435158163309],[-0.062632620334625,0.027604257687926,-0.039006367325783],[0.034750107675791,-0.0073525966145098,-0.012232108972967]],[[-0.072960868477821,0.15718546509743,-0.01071544457227],[-0.062352042645216,0.04215070977807,0.0010426201624796],[-0.10450072586536,-0.066953971982002,-0.10477890074253]],[[-0.00030474431696348,0.25261923670769,0.15951664745808],[-0.068447232246399,-0.0073158219456673,0.064033046364784],[0.073841623961926,0.12105038017035,0.12868183851242]],[[0.086156941950321,-0.07378888875246,-0.015227729454637],[0.046942058950663,-0.08219338953495,-0.16086259484291],[-0.07266691327095,0.071886397898197,0.082639329135418]],[[-0.055649790912867,-0.0042404411360621,-0.0087867323309183],[0.043032228946686,-0.092595547437668,-0.0014261482283473],[-0.065120987594128,-0.091887623071671,0.13485553860664]],[[-0.13992114365101,-0.17334692180157,-0.080811485648155],[0.043390147387981,-0.08401083946228,0.16834509372711],[0.024590162560344,0.058086261153221,-0.021817715838552]],[[-0.071445271372795,0.031741991639137,0.0068480158224702],[-0.061362441629171,0.014864146709442,0.080566108226776],[-0.081666834652424,-0.05584404990077,-0.11974228918552]],[[-0.019858688116074,0.013458179309964,0.13821643590927],[-0.16502225399017,-0.087006211280823,-0.058775890618563],[-0.1524702757597,-0.049789916723967,0.058349020779133]],[[0.018660007044673,-0.013216587714851,-0.0032762985210866],[0.058618951588869,0.025395665317774,-0.0054323659278452],[-0.050096679478884,-0.0008803399396129,0.17049001157284]],[[0.15356236696243,0.086516745388508,0.012258906848729],[-0.0950892791152,-0.04130982235074,-0.058094970881939],[-0.057701259851456,-0.058545902371407,0.17779769003391]],[[0.081850223243237,0.011666517704725,0.08802580088377],[-0.12242221087217,-0.20887851715088,0.0039913733489811],[0.13857598602772,0.10603396594524,0.13749496638775]],[[-0.085732772946358,-0.0006250970182009,0.065450944006443],[-0.079571068286896,0.045463465154171,0.078773833811283],[-0.089117988944054,0.011176089756191,-0.015439945273101]],[[-0.12687259912491,-0.037909176200628,0.0093488013371825],[-0.10278477519751,-0.024439515545964,0.044290665537119],[0.019854666665196,0.026333687826991,0.090080380439758]],[[-0.14974428713322,0.055505216121674,0.018920093774796],[0.079370178282261,0.12250200659037,-0.077619567513466],[-0.020742205902934,0.12784604728222,-0.061065379530191]],[[-0.08323522657156,-0.024400483816862,-0.029120171442628],[0.028326507657766,0.00036741350777447,-0.077907755970955],[0.051052331924438,0.020578391849995,-0.079777501523495]],[[0.084445253014565,-0.025980357080698,0.037823457270861],[0.0087124314159155,0.059493009001017,0.018778184428811],[-0.11283247172832,0.131742015481,-0.032209418714046]],[[0.0022465309593827,-0.062955312430859,-0.030636955052614],[0.0074131153523922,0.059384353458881,0.0031417252030224],[-0.082267992198467,-0.021750712767243,0.029918290674686]],[[-0.014530797488987,-0.051040437072515,0.044012270867825],[-0.0079834964126348,-0.046917662024498,-0.019157338887453],[-0.0068862605839968,-0.14901266992092,0.052450258284807]],[[-0.033662095665932,-0.047379590570927,-0.04159889742732],[-0.1496921479702,-0.053291723132133,0.01045517809689],[0.057400289922953,0.027737615630031,-0.070942960679531]],[[0.078132636845112,-0.099897421896458,-0.05206087231636],[0.10672987997532,0.0088150398805737,-0.086488403379917],[-0.051228113472462,0.037799589335918,0.00070300354855135]],[[-0.13841581344604,-0.050225749611855,0.12012625485659],[0.039837516844273,-0.036048877984285,0.064628072082996],[0.11777944862843,-0.023113656789064,-0.11282300204039]],[[0.024677038192749,-0.078832700848579,0.10708354413509],[-0.052008032798767,-0.11402259021997,0.10549758374691],[0.21033066511154,-0.031253140419722,0.0068106367252767]],[[-0.17998132109642,-0.0056868991814554,0.046871162950993],[-0.098646447062492,0.047884069383144,0.085159495472908],[-0.024847500026226,0.029813604429364,0.043591439723969]],[[0.0012174430303276,-0.056083831936121,0.1034831777215],[-0.097079955041409,0.0061232945881784,0.0082030147314072],[-0.21458730101585,0.14407609403133,-0.011806212365627]],[[0.02020918391645,-0.072029963135719,-0.048828162252903],[0.097896590828896,0.16573548316956,-0.020408611744642],[-0.0010688747279346,-0.011331732384861,0.063355803489685]],[[-0.014149849303067,0.10404468327761,0.0085111493244767],[-0.015096430666745,0.044716864824295,0.017311530187726],[-0.032930053770542,-0.056217931210995,-0.052292991429567]],[[0.027546394616365,-0.10700790584087,0.091581553220749],[0.060384914278984,-0.055221702903509,-0.028574885800481],[-0.023554965853691,-0.055523984134197,0.001741451327689]],[[0.090198129415512,0.028716214001179,0.028021939098835],[-0.089961424469948,0.068982899188995,0.05512423068285],[-0.12052580714226,-0.078609280288219,-0.11283186078072]],[[-0.029148988425732,0.022905049845576,0.068030841648579],[0.006355385761708,-0.019453683868051,-0.061212077736855],[0.088882029056549,-0.010214962996542,0.082230463624001]],[[0.016457214951515,0.014379245229065,0.036929823458195],[-0.032769069075584,-0.082415170967579,-0.1960397362709],[-0.12943410873413,-0.055570986121893,0.0047590285539627]],[[0.0037561748176813,0.027994746342301,-0.11151047050953],[0.01138286665082,0.020485863089561,0.083913490176201],[0.05796229839325,-0.022335536777973,0.07191876322031]],[[0.060055561363697,-0.11601958423853,0.059086583554745],[-0.053987316787243,0.00061998004093766,0.057847771793604],[-0.031853534281254,-0.082390420138836,-0.066531583666801]],[[-0.03925683349371,-0.050586983561516,-0.0025363203603774],[-0.093681529164314,-0.026521584019065,-0.10013651847839],[-0.023895325139165,0.063566669821739,0.074098788201809]],[[-0.012620683759451,0.085492491722107,0.055141933262348],[0.040425602346659,0.072540372610092,-0.02843421138823],[0.010768420062959,0.064664959907532,0.071011148393154]],[[-0.019941069185734,0.048717822879553,0.037035774439573],[-0.14194288849831,-0.23304225504398,-0.085256770253181],[0.11350235342979,0.079056411981583,0.1613378226757]]],[[[0.045667920261621,0.028535138815641,-0.0093057630583644],[-0.0023948980960995,0.046949550509453,0.098377384245396],[-0.044806782156229,0.040457099676132,0.064437411725521]],[[0.048577826470137,0.023210112005472,0.028410056605935],[-0.031086964532733,0.062586754560471,-0.055305700749159],[-0.042414609342813,-0.081489115953445,0.0095047792419791]],[[0.033679556101561,-0.069369718432426,-0.05983828753233],[-0.027638072147965,0.070241138339043,-0.03140277788043],[0.028432287275791,-0.011937261559069,-0.087931714951992]],[[-0.05177815631032,0.054598055779934,0.00049708836013451],[-0.056316442787647,-0.020166154950857,-0.0048510855995119],[-0.050296775996685,-0.073454715311527,0.009113953448832]],[[-0.038766652345657,-0.056349255144596,-0.055323891341686],[-0.026769207790494,0.014474970288575,0.053105399012566],[0.056410066783428,0.05020272731781,0.066714629530907]],[[0.0017915123607963,0.044924195855856,0.059633269906044],[0.045104518532753,-0.035516284406185,-0.028731916099787],[0.021308524534106,0.031843259930611,-0.030570780858397]],[[-0.052147034555674,0.034850250929594,0.019156398251653],[0.03332407400012,-0.0019736534450203,0.062550857663155],[0.0041886768303812,-0.048738617449999,-0.039533957839012]],[[0.038726929575205,0.037982873618603,-0.022685375064611],[-0.0071853073313832,0.045684181153774,-0.017772616818547],[-0.0090247271582484,-0.028703505173326,0.0079391272738576]],[[-0.0085432361811399,0.079063072800636,0.12960438430309],[0.00037039609742351,-0.034270357340574,-0.11991538107395],[0.050406008958817,-0.012787891551852,-0.014592066407204]],[[0.0096548581495881,0.075415372848511,0.0066056838259101],[0.0059366715140641,-0.021704059094191,0.021349526941776],[-0.085255227982998,0.010739066638052,0.017968058586121]],[[0.0022294572554529,0.0092361411079764,0.035205125808716],[0.00851134583354,-0.0019974284805357,-0.09564570337534],[-0.067297279834747,-0.023121524602175,-0.058853402733803]],[[-0.040120895951986,-0.076951026916504,0.0022835484705865],[-0.052273597568274,-0.14568692445755,0.054507091641426],[0.028994496911764,0.11915744096041,0.093527585268021]],[[0.0094137638807297,-0.028736066073179,0.010910781100392],[0.011062466539443,0.026780439540744,0.1072468906641],[0.033213384449482,0.032208986580372,0.039182852953672]],[[-0.0043237465433776,-0.050374761223793,-0.048400763422251],[0.083663903176785,-0.039015159010887,0.029478181153536],[0.022960349917412,-0.0014041978865862,-0.052878644317389]],[[0.063534788787365,-0.083070382475853,0.01982855796814],[0.032150458544493,-0.043796259909868,-0.04531654343009],[-0.00079959543654695,0.023324102163315,0.024880863726139]],[[0.0093844812363386,0.0073735141195357,0.039590004831553],[-0.049672838300467,-0.037886805832386,-0.0089482180774212],[0.024613784626126,-0.14186714589596,-0.053885988891125]],[[-0.025528311729431,-0.030826961621642,-0.072014987468719],[0.073626756668091,0.052188977599144,0.038270831108093],[0.066119253635406,0.020548742264509,0.074295170605183]],[[0.054236080497503,-0.04223258420825,0.024587165564299],[0.033818267285824,0.081061214208603,-0.00041784046334215],[0.060618847608566,0.12695705890656,-0.034635413438082]],[[-0.01443530805409,0.00066533352946863,0.032418020069599],[-0.01424022577703,-0.032407507300377,0.067564629018307],[0.040107019245625,0.028766751289368,0.025084689259529]],[[0.062201969325542,-0.026477478444576,-0.14273604750633],[0.11213471740484,-0.010378081351519,-0.12311255931854],[0.047864273190498,0.036867212504148,-0.040420409291983]],[[0.036320071667433,0.0091418083757162,0.041593041270971],[-0.020160855725408,-0.012557649984956,-0.011051221750677],[-0.015040974132717,-0.070532083511353,-0.016472002491355]],[[0.027807205915451,0.066517047584057,0.048793524503708],[-0.09736492484808,0.02966677211225,-0.0077610570006073],[-0.10846947878599,-0.052517738193274,0.0089841829612851]],[[0.0053763594478369,0.040954917669296,0.094486229121685],[0.039270747452974,0.020671863108873,0.017391160130501],[0.0075441207736731,-0.044027376919985,-0.036431275308132]],[[-0.014422443695366,0.027836902067065,0.072186708450317],[-0.11788508296013,-0.015387793071568,-0.01717278547585],[-0.020735701546073,-0.040236059576273,0.022996559739113]],[[0.045029193162918,0.015859646722674,-0.050969634205103],[0.0089964708313346,0.021717006340623,0.037368781864643],[0.024311600252986,0.027340402826667,0.0103514874354]],[[0.081284463405609,0.032991509884596,-0.01514177583158],[0.032572284340858,0.0097334999591112,-0.022762794047594],[-0.097818300127983,0.061075109988451,0.065913699567318]],[[0.079907953739166,0.066953361034393,0.0078271422535181],[-0.026994226500392,-0.00073116953717545,-0.098764836788177],[-0.0024279882200062,-0.0085778441280127,-0.080477617681026]],[[-0.08568100631237,-0.11040037125349,-0.12460140138865],[0.0038529417943209,-0.19327475130558,-0.10423509776592],[0.1403845846653,-0.016298450529575,0.054103951901197]],[[-0.0026538483798504,0.087257526814938,0.079191543161869],[-0.10673453658819,-0.035171631723642,0.018195059150457],[0.10117088258266,0.059058021754026,0.043236318975687]],[[-0.012454895302653,-0.013875914737582,-0.038697801530361],[0.015737857669592,-0.030112812295556,-0.017530674114823],[-0.045743931084871,-0.039547551423311,-0.019655030220747]],[[0.007450622972101,0.042561043053865,-0.037425264716148],[-0.024699758738279,0.024774581193924,0.044467099010944],[-0.094643041491508,-0.0056314719840884,0.028365522623062]],[[0.019851490855217,-0.061492085456848,0.083214312791824],[0.001513420487754,0.068005375564098,0.11179849505424],[0.0014735463773832,0.029606606811285,0.0079614473506808]],[[-0.0039090355858207,0.035184383392334,0.0040886043570936],[-0.05262529104948,0.049500267952681,0.10623029619455],[-0.030061503872275,0.090268097817898,0.049574457108974]],[[-0.036787390708923,0.0027563152834773,0.01649908721447],[0.0093352850526571,0.01297757960856,-0.0026225994806737],[0.020899090915918,0.053425833582878,0.096181131899357]],[[0.068795531988144,0.013297590427101,-0.017815327271819],[0.012672380544245,0.052037842571735,0.01915187202394],[-0.017178356647491,0.071287490427494,-0.087155021727085]],[[-0.013099220581353,-0.01823677867651,-0.037296082824469],[0.027008237317204,-0.029264129698277,-0.02314093708992],[-0.044058624655008,-0.0043699354864657,-0.016303338110447]],[[0.039374690502882,0.027443001046777,0.011916200630367],[-0.025966323912144,0.0074326652102172,0.025157779455185],[0.00095898902509362,-0.06684323400259,0.038673833012581]],[[0.0067771561443806,0.035948801785707,0.043430726975203],[-0.021628245711327,-0.069147296249866,0.0073782321996987],[-0.051260963082314,-0.042876418679953,-0.049362186342478]],[[0.032801277935505,0.042585350573063,0.052320089191198],[-0.085725225508213,-0.028748182579875,-0.0079420236870646],[-0.06659297645092,0.010777904652059,-0.044442001730204]],[[-0.0265824329108,0.031363915652037,-0.0083312811329961],[-0.038733042776585,-0.090833231806755,0.062329974025488],[0.014240433461964,-0.047312214970589,0.079117491841316]],[[0.0074157477356493,0.030508659780025,-0.060303699225187],[0.057162974029779,0.0028401056770235,-0.11156570911407],[-0.076351463794708,-0.076330699026585,-0.051020346581936]],[[-0.036491550505161,-0.039848618209362,-0.03836777806282],[-0.028794584795833,-0.0016866037622094,0.0036639522295445],[-0.053135666996241,-0.081038743257523,-0.11551316082478]],[[0.04750519245863,0.0010412133997306,0.010407548397779],[-0.017615780234337,0.0076254969462752,-0.034540936350822],[0.039367932826281,-0.0081911282613873,0.010875436477363]],[[0.030859280377626,-0.010798471048474,0.061530962586403],[0.0026725528296083,-0.019228016957641,0.048447031527758],[-0.00068370014196262,0.010681224055588,-0.089227989315987]],[[-0.10571671277285,-0.056980971246958,-0.0057924841530621],[0.08417484164238,-0.044177606701851,-0.039702881127596],[0.014552492648363,0.011141813360155,-0.051805816590786]],[[-9.2300033429638e-05,-0.049286145716906,-0.069154433906078],[-0.0096731530502439,0.016434486955404,0.028915768489242],[-0.072151258587837,-0.057794533669949,0.058419052511454]],[[-0.003090264974162,0.037853881716728,-0.059189505875111],[-0.0061715780757368,-0.044695422053337,-0.1455389559269],[0.027227681130171,-0.066503666341305,-0.01604288443923]],[[-0.030316613614559,-0.021882899105549,-0.011384815908968],[0.011098380200565,0.009434343315661,0.045408848673105],[0.022077213972807,0.041896101087332,0.056220404803753]],[[-0.00083135179011151,0.016068002209067,0.051682643592358],[-0.050142869353294,0.038532145321369,-0.028866104781628],[0.0079186055809259,0.033036828041077,0.022989885881543]],[[-0.0043567400425673,-0.034523010253906,-0.02709829993546],[-0.055117730051279,-0.0079372357577085,-0.016519140452147],[0.036886375397444,-0.03516886010766,0.0048606651835144]],[[0.045693557709455,0.0098224692046642,0.031192004680634],[0.0029153162613511,-0.051172595471144,0.05389640852809],[-0.032003849744797,0.073089651763439,0.064078018069267]],[[-0.042085256427526,0.10925509780645,-0.019284846261144],[-0.0029411250725389,-0.072827026247978,0.027009716257453],[0.034837614744902,-0.092323400080204,-0.032241310924292]],[[-0.00959194265306,-0.015858495607972,-0.031538512557745],[-0.054050993174314,-0.037270676344633,0.01974574662745],[-0.021359959617257,0.026510128751397,0.037570171058178]],[[-0.050055764615536,-0.032849371433258,-0.020187515765429],[-0.11065016686916,0.033516373485327,-0.035358604043722],[0.090062730014324,0.058992307633162,0.039980355650187]],[[-0.03984335064888,0.011591232381761,0.0001930273429025],[0.12306490540504,-0.016710869967937,-0.0053331148810685],[0.17425209283829,-0.06814182549715,-0.032701916992664]],[[-0.0096133193001151,-0.0012718338984996,-0.11056941002607],[0.058549072593451,-0.022562187165022,0.028869669884443],[-0.034236971288919,-0.074582725763321,-0.072470337152481]],[[-0.044627420604229,-0.061916019767523,-0.055939447134733],[-0.021500745788217,0.014431927353144,-0.015301248058677],[0.010173560120165,-0.014999277889729,-0.010125643573701]],[[0.029098046943545,0.020047409459949,0.023582549765706],[-0.010212931782007,-0.013391073793173,0.017111966386437],[-0.037002451717854,-0.0137147475034,0.034458059817553]],[[0.042095541954041,-0.058620281517506,-0.14059048891068],[-0.033965900540352,-0.03392968326807,0.0066274800337851],[0.0013160706730559,0.019925998523831,0.0092121865600348]],[[-0.025906460359693,0.02918971516192,-0.032382685691118],[-0.078152760863304,-0.090201199054718,0.0031993873417377],[0.030494209378958,-4.2870080505963e-05,0.065729200839996]],[[-0.0079910364001989,-0.018317775800824,0.028438916429877],[-0.045448336750269,-0.045266393572092,0.015160800889134],[-0.0067267189733684,-0.012442600913346,-0.01186032500118]],[[-0.051074955612421,0.037110686302185,0.019354997202754],[0.051896795630455,-0.059821866452694,-0.034476924687624],[0.0073395986109972,0.04120109602809,0.066347822546959]],[[-0.017884004861116,-0.035960346460342,0.065501481294632],[0.011883182451129,0.031528532505035,0.031638216227293],[0.036223396658897,0.012926284223795,0.004079039208591]],[[0.0043128565885127,0.024356842041016,-0.11410150676966],[0.0016376790590584,0.029825827106833,-0.051381092518568],[-0.075698629021645,0.0041140145622194,0.015641475096345]],[[0.012435189448297,0.0606624558568,0.0029966242145747],[0.023163855075836,0.0049130572006106,-0.0076651959680021],[-0.012263951823115,-0.0052234805189073,0.058021772652864]],[[-0.019723920151591,0.042329989373684,-0.080514475703239],[0.0087042702361941,0.044902395457029,0.0046040415763855],[-0.05932629480958,-0.031543161720037,-0.017070107161999]],[[-0.012431130744517,-0.042458888143301,-0.0087792137637734],[-0.054144598543644,0.026137385517359,-0.0092826681211591],[-0.058390140533447,-0.073769629001617,0.03048101067543]],[[0.022673161700368,0.02040627039969,-0.023591293022037],[-0.043941006064415,0.0036333079915494,0.0063248239457607],[-0.023473314940929,0.0063021662645042,0.025607334449887]],[[-0.036150775849819,-0.013228273019195,0.082620531320572],[-0.027578853070736,0.0078865038231015,-0.053130865097046],[-0.018276399001479,0.024659194052219,0.02179236151278]],[[0.0073316763155162,0.0011936652008444,0.050406660884619],[-0.04569548740983,-0.055438432842493,-0.031528528779745],[-0.085750415921211,0.044991724193096,0.018517840653658]],[[-0.017164558172226,-0.003183777211234,-0.0059049976989627],[0.029096210375428,0.0069728391245008,0.060040917247534],[-0.038239736109972,-0.046683203428984,-0.070505045354366]],[[-0.080038607120514,-0.064030773937702,0.045753039419651],[-0.049454517662525,0.016057852655649,-0.0097572738304734],[0.055073294788599,0.060776147991419,0.0074414908885956]],[[0.038565788418055,0.047158174216747,0.043768037110567],[0.0026663686148822,0.012861705385149,-0.013772207312286],[0.10269582271576,-0.016100164502859,0.020001942291856]],[[-0.00030603830236942,0.00023939988750499,-0.039732780307531],[0.038034625351429,-0.0083613051101565,-0.020124381408095],[-0.017425552010536,0.036945197731256,-0.012486970052123]],[[-0.01641509309411,-0.017528008669615,-0.055698446929455],[-0.034073367714882,-0.080200918018818,-0.011606184765697],[0.015696324408054,0.028033593669534,0.031173272058368]],[[0.0074406513012946,0.02152656391263,0.036632031202316],[-0.0028322909492999,-0.022718438878655,-0.014056670479476],[0.061746284365654,0.13606548309326,0.013538303785026]],[[0.023354921489954,0.041174404323101,0.045889876782894],[0.019460143521428,-0.047649849206209,0.035721220076084],[-0.015841592103243,-0.047960594296455,0.00095427769701928]],[[-0.046304788440466,0.00055015098769218,0.025107624009252],[-0.048132881522179,-0.097451873123646,-0.041830316185951],[0.012646125629544,-0.11616027355194,-0.051785953342915]],[[0.054020766168833,-0.013142617419362,0.0018648324767128],[-0.0049968459643424,-0.038374237716198,0.033897411078215],[-0.0034322424326092,0.060825612396002,0.081198021769524]],[[-0.026846205815673,-0.046092677861452,0.0071527613326907],[-0.002228839090094,-0.017453679814935,0.047127276659012],[-0.018024703487754,-0.066194005310535,-0.064417794346809]],[[-0.061308521777391,-0.074830017983913,0.029615657404065],[0.025921627879143,0.036401528865099,-0.027773762121797],[0.045812461525202,0.055578600615263,-0.0026941618416458]],[[-0.059897426515818,0.026789788156748,-0.030342377722263],[-0.032504469156265,-0.009720210917294,0.16311459243298],[0.061985548585653,-0.049710217863321,0.090373046696186]],[[0.028736049309373,0.049253348261118,-0.00501349568367],[-0.067953169345856,-0.042979031801224,0.036466918885708],[-0.055878069251776,-0.028348818421364,0.0033083327580243]],[[-0.074408404529095,-0.03783181682229,-0.073723912239075],[-0.079436026513577,-0.013508386909962,0.028834676370025],[-0.063402824103832,-0.018064761534333,-0.025766842067242]],[[-0.046155445277691,0.020536337047815,0.034235756844282],[-0.10780739039183,0.054596859961748,0.08562908321619],[-0.069492004811764,0.027246030047536,-0.018373917788267]],[[0.0037176425103098,-0.066217496991158,-0.074693635106087],[-0.028932882472873,0.014398247934878,0.068914346396923],[0.066896609961987,0.052326656877995,0.034656926989555]],[[0.086246013641357,0.027687534689903,-0.053640637546778],[0.002301559317857,-0.056672241538763,0.0088361827656627],[-0.070296429097652,-0.11855375766754,-0.15430049598217]],[[0.057423628866673,-0.0043220040388405,0.075090788304806],[0.022179327905178,-0.028606422245502,0.032658435404301],[-0.0023549741599709,-0.093419246375561,-0.083094403147697]],[[-0.062366779893637,-0.038775991648436,0.087374590337276],[-0.012050894089043,0.0074091940186918,-0.037813730537891],[0.016200376674533,-0.016671795397997,0.01921309530735]],[[0.035547997802496,-0.0035376190207899,-0.018923867493868],[0.042287155985832,0.13354535400867,0.046110115945339],[-0.041671548038721,0.057345740497112,0.053123276680708]],[[0.045375820249319,0.010256422683597,0.027549652382731],[0.069832466542721,0.016229957342148,0.098413825035095],[-0.12010665237904,-0.059237848967314,-0.12352924793959]],[[-0.0404037758708,-0.0097119025886059,0.024052117019892],[-0.044741749763489,-0.050454273819923,0.021496405825019],[0.0071434108540416,0.039252173155546,-0.042937643826008]],[[0.058905351907015,0.052681282162666,0.085495576262474],[-0.018702559173107,-0.025682635605335,0.014542747288942],[0.046104572713375,-0.057814221829176,0.087870724499226]],[[-0.056457132101059,-0.037607543170452,-0.032045260071754],[0.050855983048677,0.024215415120125,-0.0027689118869603],[-0.01958660967648,-0.023334939032793,0.0063842972740531]],[[-0.10448142141104,-0.0265380628407,-0.0046256221830845],[0.02641187608242,-0.030702540650964,-0.068783842027187],[-0.037344679236412,-0.12422206997871,-0.089768201112747]],[[-0.07623303681612,-0.036832865327597,-0.053899854421616],[-0.0065162628889084,0.078014872968197,-0.038079440593719],[0.05935525521636,-0.017534736543894,0.096055239439011]],[[0.0033017201349139,0.052892088890076,0.078122012317181],[0.015061328187585,-0.036773141473532,-0.0031318918336183],[-0.052421301603317,0.005547218490392,0.031641345471144]],[[-0.0047458657063544,0.026755804196,-0.053267732262611],[-0.054505661129951,-0.011637368239462,-0.025640802457929],[-0.070804320275784,0.020657626911998,0.050503365695477]],[[0.010299979709089,-0.06121850758791,-0.034423232078552],[-0.042878191918135,-0.020420398563147,-0.0078560169786215],[-0.032080218195915,0.059637602418661,0.018120892345905]],[[-0.013377367518842,0.049981083720922,0.05752993747592],[-0.013201665133238,0.03415485098958,0.076559081673622],[0.0098471408709884,0.074087463319302,0.027907842770219]],[[0.076675824820995,0.059264868497849,-0.0086867827922106],[-0.057707257568836,-0.034198813140392,0.016233252361417],[-0.030759638175368,0.017155921086669,0.03958410769701]],[[0.028787449002266,-0.074781455099583,-0.040204230695963],[0.028677992522717,-0.016445159912109,-0.07372734695673],[-0.035124041140079,0.0046813157387078,-0.059782098978758]],[[-0.081625938415527,-0.083317957818508,-0.058279227465391],[0.0018140260362998,-0.0081905862316489,0.00028746141470037],[0.026558568701148,0.0049578980542719,-0.012722379527986]],[[-0.030902480706573,0.013336914591491,0.039481922984123],[0.02728215046227,0.023870913311839,0.0066959373652935],[-0.024046691134572,0.079633221030235,0.042580049484968]],[[-0.071131937205791,0.0093375751748681,0.024828804656863],[0.035144176334143,0.049664821475744,-0.02439147233963],[0.036678340286016,0.1157955005765,0.057539768517017]],[[-0.11236590147018,-0.048266835510731,-0.028804358094931],[-0.0013430067338049,-0.082887828350067,-0.084377974271774],[-0.021607760339975,0.10068666934967,0.035292942076921]],[[0.044505178928375,0.07466547191143,-0.015767611563206],[-0.026743952184916,0.056010592728853,0.00038872900768183],[0.0014974317746237,-0.044880375266075,-0.037378314882517]],[[-0.00086733372882009,0.0014233398251235,0.02423669397831],[0.051092576235533,0.046856887638569,0.041079755872488],[0.017657971009612,-0.010925464332104,0.054669518023729]],[[-0.071890957653522,-0.033131785690784,0.020788786932826],[-0.0358458571136,-0.066615425050259,0.041144005954266],[0.058364726603031,0.035961642861366,-0.042028430849314]],[[-0.048043061047792,0.0080450288951397,-0.012386735528708],[-0.059842873364687,-0.01141042727977,-0.071312867105007],[-0.02697310782969,0.073237478733063,0.050426293164492]],[[0.024117076769471,0.013081327080727,0.0065444577485323],[-0.0073363273404539,-0.052647490054369,-0.076779052615166],[-0.011133203282952,-0.027307203039527,-0.032380606979132]],[[-0.024475807324052,-0.010176738724113,0.011251075193286],[0.01645646058023,0.044304322451353,-0.030075993388891],[0.014088029973209,-0.016600571572781,-0.00014978888793848]],[[-0.031189497560263,0.046593893319368,0.042363580316305],[0.088442966341972,-0.061442706733942,-0.0087162600830197],[0.10152432322502,-0.013336725533009,-0.092183984816074]],[[0.038833864033222,-0.019032493233681,-0.038830827921629],[-0.083531878888607,-0.0038532747421414,-0.0069057918153703],[0.053146783262491,0.071038663387299,-0.083515904843807]],[[0.015654725953937,0.062779046595097,0.023979796096683],[0.036756113171577,0.042226638644934,0.011899725534022],[0.015068095177412,0.021672843024135,0.043771810829639]],[[-0.011780837550759,0.052919521927834,0.054248739033937],[-0.077344991266727,-0.030897716060281,-0.070105589926243],[0.050183851271868,-0.039805799722672,0.050950556993484]],[[0.050146363675594,-0.1013982668519,-0.076462283730507],[-0.011354827322066,-0.054554410278797,0.026362018659711],[0.05494849383831,0.067529149353504,0.012081642635167]],[[0.078841634094715,0.043617691844702,-0.024601232260466],[0.0068487068638206,0.013660846278071,-0.027494069188833],[0.032576866447926,0.012778365053236,-0.035089123994112]],[[0.049981255084276,0.085274636745453,0.10613520443439],[-0.0088878581300378,-0.052425235509872,0.019673638045788],[-0.087828263640404,-0.026160186156631,0.051096633076668]],[[-0.035347227007151,-0.1174002289772,-0.051746882498264],[-0.0020854799076915,0.05902186781168,0.042896691709757],[0.082656137645245,0.026405170559883,0.079112336039543]],[[0.012108125723898,-0.070716887712479,-0.085123345255852],[0.10875920206308,0.065838493406773,0.024057006463408],[0.021518353372812,0.097094394266605,0.019526647403836]],[[0.030177703127265,0.044288396835327,-0.11029195785522],[0.075391307473183,0.02940234541893,-0.035613011568785],[0.015120514668524,0.0085057374089956,-0.03357408195734]],[[-0.019732940942049,0.0045970706269145,-0.031506810337305],[-0.022589916363358,-0.073567368090153,-0.025057714432478],[-0.013832548633218,-0.063318490982056,0.051663741469383]],[[0.021074978634715,-0.095691487193108,-0.11203274875879],[-0.034390904009342,0.070197492837906,0.019841378554702],[0.060528058558702,0.0090733896940947,0.011947800405324]],[[0.017008880153298,-0.074427880346775,-0.071358658373356],[0.0029343110509217,-0.076254941523075,-0.0030681365169585],[0.036575257778168,0.06731965392828,-0.086221382021904]],[[0.027913184836507,-0.067494012415409,-0.0011622393503785],[0.080391816794872,0.016051733866334,-0.065243929624557],[-0.026090733706951,-0.036143593490124,-0.014103167690337]],[[-0.002448721555993,0.0093747721984982,0.07241702824831],[-0.038540210574865,0.030872073024511,0.082275673747063],[0.0050464360974729,0.011755045503378,-0.052720908075571]],[[-0.039324190467596,-0.023469524458051,0.023559546098113],[-0.11160940676928,0.056323897093534,0.057836558669806],[-0.014838124625385,0.062658049166203,0.074779167771339]]],[[[-0.029668159782887,-0.079752162098885,-0.012781887315214],[0.032218985259533,-0.10118145495653,-0.13885636627674],[-0.084854304790497,0.010727887973189,-0.062055729329586]],[[-0.1183220371604,-0.0096066882833838,0.14112508296967],[0.058647587895393,0.066130101680756,0.03027774952352],[0.072624891996384,0.086142636835575,0.041637420654297]],[[-0.11593867093325,-0.018650179728866,0.037078864872456],[0.081149138510227,0.091645523905754,0.088276326656342],[-0.086842186748981,0.088710017502308,-0.048808690160513]],[[0.06552267819643,0.0055949650704861,-0.043671179562807],[0.0032003005035222,-0.073420733213425,0.015182805247605],[0.042764518409967,0.0014878211077303,-0.094555787742138]],[[-0.16345171630383,-0.012992630712688,0.018831191584468],[-0.11811641603708,0.070443883538246,0.10311120003462],[0.16213332116604,-0.055978950113058,0.013326995074749]],[[0.018797473981977,-0.030885966494679,-0.019444430246949],[-0.13499779999256,-0.2273296713829,-0.081171289086342],[0.085336990654469,0.0052103851921856,-0.072179026901722]],[[0.082340106368065,0.033355910331011,-0.039637420326471],[-0.04155271500349,0.061752080917358,0.041942339390516],[0.13136000931263,-0.044638652354479,-0.18333749473095]],[[-0.078913576900959,-0.046674601733685,0.047043677419424],[-0.1417547762394,-0.12789542973042,-0.093752473592758],[-0.03854801133275,0.22020193934441,0.18947914242744]],[[-0.043929442763329,-0.014768179506063,-0.057599950581789],[-0.05110016092658,-0.033341690897942,0.038240220397711],[-0.056638136506081,0.081220850348473,0.0032904834952205]],[[-0.028028206899762,0.022760689258575,-0.030775943771005],[0.071645431220531,0.034561797976494,-0.0091067058965564],[-0.054995778948069,-0.059868231415749,-0.070956341922283]],[[-0.11465260386467,-0.019147522747517,0.0023416036274284],[-0.090825870633125,-0.025886757299304,0.031935125589371],[-0.13958603143692,-0.228510171175,0.049827251583338]],[[-0.076779641211033,-0.11301216483116,0.060046382248402],[0.13378541171551,0.0021324423141778,-0.021104341372848],[0.065740466117859,0.06954488158226,-0.099966280162334]],[[0.061327550560236,0.055706493556499,0.079186201095581],[0.0016390631208196,-0.0045632557012141,-0.083370342850685],[0.0093629332259297,-0.18083029985428,0.015460791997612]],[[-0.10411205887794,-0.072719193994999,-0.065743662416935],[0.094747327268124,0.0051011084578931,-0.096502937376499],[0.03981140255928,0.040539108216763,-0.010242147371173]],[[-0.11724729090929,-0.033542398363352,0.047014925628901],[0.12238206714392,0.031308434903622,-0.18610575795174],[-0.0025710922200233,0.021517021581531,0.12209480255842]],[[0.026393938809633,-0.14120188355446,-0.063930839300156],[0.11082285642624,0.016956565901637,0.10171916335821],[-0.088347375392914,-0.17009146511555,-0.089704684913158]],[[-0.13855336606503,-0.054609525948763,-0.086280643939972],[0.038645435124636,-0.096753269433975,-0.2980130314827],[0.006685899104923,0.049852337688208,0.079817123711109]],[[-0.035447560250759,0.014764661900699,0.083124786615372],[0.001538664335385,-0.076041206717491,-0.13496117293835],[-0.017637886106968,0.092483572661877,0.095752440392971]],[[-0.1095949858427,-0.090531751513481,0.049324560910463],[-0.15028674900532,-0.055590905249119,-0.11530290544033],[-0.15123984217644,-0.058902770280838,-0.04336104914546]],[[0.01756158657372,-0.10855626314878,-0.14680325984955],[-0.11657721549273,-0.032415118068457,-0.014457472600043],[0.12839391827583,0.17080153524876,-0.0073299934156239]],[[-0.030203761532903,0.042310673743486,0.036781437695026],[-0.053476262837648,-0.098369158804417,-0.052391692996025],[-0.10997030138969,-0.13604021072388,0.078376702964306]],[[-0.13042543828487,0.040731135755777,-0.077072963118553],[0.0057227597571909,0.21212755143642,0.20265927910805],[0.092574000358582,0.024112410843372,0.0062262993305922]],[[-0.0049787689931691,-0.089498713612556,0.048434041440487],[-0.16182155907154,-0.1154745593667,0.092568643391132],[0.046138323843479,0.041237749159336,0.052458584308624]],[[0.071605674922466,-0.0027870654594153,0.12400312721729],[0.11758299916983,0.045607503503561,0.062240350991488],[0.021619785577059,-0.09662813693285,-0.24164515733719]],[[0.027200041338801,-0.016965389251709,-0.074446864426136],[0.23451760411263,0.0023285520728678,-0.14869467914104],[0.078711070120335,0.045532207936049,0.1339131295681]],[[0.025797443464398,0.016159977763891,-0.11171595007181],[0.073449909687042,0.023482911288738,-0.036218337714672],[-0.0096393879503012,-0.048216074705124,-0.092210866510868]],[[0.069742031395435,-0.026391072198749,-0.10034504532814],[0.003303445642814,0.018455138429999,0.039806082844734],[-0.081339478492737,0.017843816429377,-0.0062588066793978]],[[-0.080840192735195,0.090179555118084,0.15457539260387],[-0.1929956972599,-0.04899375513196,0.074691273272038],[0.14463596045971,-0.037852600216866,-0.06013648211956]],[[-0.0075153172947466,0.0057207867503166,-0.11624802649021],[-0.0014432542957366,-0.097649365663528,-0.11457539349794],[-0.042925406247377,-0.16178022325039,-0.1707398891449]],[[0.1339352875948,-0.06475418061018,-0.06339904665947],[0.038927797228098,0.022334281355143,-0.048021446913481],[-0.032082546502352,-0.074319899082184,-0.020534690469503]],[[0.12788742780685,0.051480155438185,0.043045718222857],[0.028085775673389,-0.17352329194546,0.11165923625231],[0.0082215145230293,0.051914241164923,0.024091668426991]],[[0.048699699342251,0.021659819409251,0.075889132916927],[-0.060721766203642,-0.10220479220152,-0.081236571073532],[-0.019135972484946,-0.1279511153698,0.043789237737656]],[[-0.093343451619148,-0.011957598850131,0.16525568068027],[-0.040936592966318,-0.057314243167639,-0.11748094111681],[-0.076931312680244,0.038076419383287,0.23546707630157]],[[0.011100699193776,-0.083851486444473,0.023779945448041],[-0.085547484457493,0.0040351306088269,0.038380514830351],[-0.075440406799316,-0.16331295669079,-0.022346470504999]],[[0.049023631960154,-0.080061562359333,0.043570164591074],[-0.064704984426498,-0.1350010484457,0.0056639974936843],[-0.0030585175845772,-0.0047143059782684,0.13551931083202]],[[-0.12114176899195,0.11385101824999,0.23204363882542],[-0.058251526206732,0.077978849411011,0.022908687591553],[-0.072299309074879,0.036224603652954,0.13840928673744]],[[0.047463405877352,0.00080129428533837,-0.091061271727085],[0.14558032155037,0.022547049447894,0.045704364776611],[0.015837289392948,-0.06898058950901,-0.017052840441465]],[[-0.060600772500038,-0.078888431191444,-0.037524953484535],[-0.0012707366840914,-0.13565795123577,-0.018980614840984],[0.14029993116856,-0.0081903785467148,0.061449468135834]],[[-0.10205601155758,-0.03025484457612,-0.045536518096924],[0.062237281352282,0.093297816812992,0.043025743216276],[-0.061840083450079,-0.190957903862,-0.12445835769176]],[[0.017570018768311,-0.076487712562084,-0.13340982794762],[-0.10704682022333,-0.051830552518368,0.090452931821346],[-0.11962791532278,-0.057841323316097,-0.065318383276463]],[[-0.027075937017798,-0.063192866742611,0.058734372258186],[-0.133978754282,-0.11713464558125,0.061381012201309],[0.037154961377382,-0.053152401000261,-0.024072801694274]],[[0.013541256077588,0.077395536005497,0.098372012376785],[-0.19966495037079,-0.089012816548347,0.016347905620933],[0.033155709505081,0.13747431337833,0.04723310098052]],[[-0.069087244570255,-0.01964165084064,-0.036110654473305],[0.083885967731476,-0.048062860965729,0.05146024748683],[-0.025305556133389,-0.2782478928566,-0.18155290186405]],[[-0.0017870084848255,0.043536856770515,-0.036100529134274],[0.0093658221885562,-0.05737679079175,-0.04061010107398],[-0.025468641892076,0.010586493648589,0.0062316856347024]],[[-0.15064334869385,0.047057010233402,0.084832541644573],[0.15141361951828,0.17898578941822,-0.019024124369025],[-0.080255500972271,0.069634057581425,0.03444965928793]],[[-0.047629475593567,-0.08604259043932,-0.070873089134693],[0.18151968717575,0.069681987166405,-0.050339221954346],[-0.028188355267048,0.022307805716991,-0.040134828537703]],[[0.089092701673508,0.036022361367941,-0.10580901056528],[0.1656002253294,-0.025643324479461,-0.093769811093807],[0.029772369191051,0.047835685312748,0.073239415884018]],[[-0.020835936069489,-0.10682816058397,-0.035797484219074],[0.34450963139534,-0.05744693800807,-0.28693145513535],[-0.031294234097004,-0.0036441069096327,0.030080545693636]],[[0.14041192829609,0.0092624956741929,-0.059923280030489],[-0.17837582528591,-0.089863024652004,-0.0016606003046036],[-0.032416127622128,-0.041609186679125,0.096905589103699]],[[0.065334759652615,-0.010348794981837,-0.015710951760411],[-0.015192029066384,0.010385380126536,0.04938393458724],[-0.052164666354656,-0.065399087965488,0.050100259482861]],[[0.2358001768589,-0.052321217954159,-0.087174095213413],[0.018103580921888,-0.029753971844912,-0.090527385473251],[-0.16598351299763,0.028981156647205,0.015853954479098]],[[-0.019798615947366,0.16127189993858,0.0016360401641577],[-0.022174343466759,0.033774722367525,-0.026271276175976],[0.140998467803,0.025910163298249,-0.15094810724258]],[[-0.015413259156048,-0.08236288279295,-0.049501907080412],[0.03336501121521,-0.045048389583826,-0.029439089819789],[-0.0029045739211142,-0.025996908545494,-0.017788289114833]],[[0.099186822772026,0.11003672331572,-0.00050007569370791],[-0.093338847160339,-0.026781674474478,0.010241372510791],[0.033672068268061,0.059116590768099,-0.026237141340971]],[[-0.04244863986969,0.0057913674972951,0.0099385119974613],[0.013893190771341,-0.11847425252199,-0.17900811135769],[-0.0035513963084668,0.11150450259447,-0.016092432662845]],[[0.055540319532156,-0.022428326308727,-0.10252635926008],[-0.0097836228087544,0.0048649520613253,0.0022219310048968],[0.06663303822279,-0.022310556843877,-0.063000991940498]],[[-0.088167637586594,0.093031339347363,0.073163561522961],[-0.042167037725449,0.039839133620262,0.016800401732326],[0.017138782888651,0.047385104000568,-0.017724877223372]],[[0.076337903738022,-0.0035155799705535,-0.10670138150454],[0.01333425194025,-0.12137647718191,-0.057462386786938],[-0.16894613206387,-0.25022262334824,-0.24588897824287]],[[-0.028821833431721,0.026666510850191,-0.0094352373853326],[-0.0044267615303397,-0.10041780769825,-0.15405118465424],[-0.1348482221365,-0.043361488729715,0.073290333151817]],[[0.090026706457138,0.083353437483311,0.13978900015354],[-0.024621134623885,-0.07242027670145,-0.17179995775223],[-0.079448670148849,0.028855374082923,-0.11869509518147]],[[-0.017305418848991,0.031464751809835,-0.02080193720758],[0.059787165373564,-0.0055692289024591,0.053849812597036],[0.0035765662323684,-0.08886381983757,-0.00012583205534611]],[[0.11409084498882,0.13278180360794,-0.06247790157795],[-0.1557070761919,-0.18136242032051,0.068816907703876],[0.089105613529682,-0.065822549164295,-0.14706605672836]],[[0.0088864183053374,-0.074269540607929,-0.063758708536625],[0.027215715497732,0.033345598727465,0.11231000721455],[0.018544349819422,-0.054796941578388,0.0098416320979595]],[[0.024077543988824,-0.18056780099869,0.082187257707119],[-0.049579560756683,-0.10804701596498,0.015557142905891],[0.12938234210014,0.10623124241829,0.060310266911983]],[[0.20896404981613,0.14409068226814,-0.09065380692482],[-0.15167428553104,-0.022054517641664,-0.013701910153031],[-0.017473423853517,0.013505034148693,-0.050464481115341]],[[-0.046649396419525,-0.078908406198025,-0.024305598810315],[-0.074155353009701,-0.018378226086497,0.060740675777197],[0.085433624684811,-0.058823999017477,-0.063948072493076]],[[-0.0080109257251024,-0.016118366271257,-0.10624779015779],[0.040453366935253,0.068149000406265,0.18091557919979],[-0.0088837472721934,-0.10218404233456,-0.01956912688911]],[[-0.018407857045531,-0.028817215934396,0.066464759409428],[-0.096032358705997,-0.097567670047283,-0.073515467345715],[0.029423611238599,0.1105343028903,0.064586140215397]],[[-0.0013849862152711,0.26283228397369,0.028587076812983],[-0.010139308869839,-0.011765977367759,-0.091219581663609],[-0.0056367325596511,-0.054394293576479,0.0046622874215245]],[[-0.022665010765195,-0.059891387820244,-0.081663623452187],[0.0096818264573812,-0.0022453914862126,0.04997656494379],[0.16566605865955,-0.012756831943989,-0.13445675373077]],[[-0.14057485759258,-0.062317434698343,-0.086923874914646],[-0.089438177645206,-0.047993313521147,0.23883220553398],[0.15674011409283,0.16699117422104,-0.065975859761238]],[[0.090002790093422,-0.20979098975658,-0.1690713763237],[0.0051239146851003,0.027128208428621,0.16245932877064],[-0.0073199840262532,-0.031276807188988,0.023140026256442]],[[-0.26281517744064,0.025333970785141,0.24984154105186],[-0.10965330898762,-0.030659943819046,-0.062829591333866],[-0.12132728099823,-0.053159676492214,-0.12028996646404]],[[0.012436383403838,-0.0041606361046433,0.047081410884857],[-0.055621843785048,-0.016120148822665,0.040846724063158],[-0.049800451844931,0.0076887048780918,0.026840336620808]],[[0.08301630616188,-0.0073208473622799,0.0065816366113722],[0.053251620382071,0.014237207360566,-0.10750516504049],[-0.016481030732393,-0.0053792614489794,-0.049909185618162]],[[-0.044729128479958,-0.11703775078058,-0.069504544138908],[0.04196659475565,0.11031145602465,0.065006107091904],[0.19495598971844,0.30750834941864,-0.0057312152348459]],[[-0.17907604575157,-0.075935311615467,-0.045351207256317],[-0.022147512063384,0.042411629110575,0.1587045788765],[-0.11672015488148,-0.093763619661331,-0.20161132514477]],[[-0.044478353112936,0.013075113296509,0.031607683748007],[-0.033349946141243,0.012220800854266,0.014465192332864],[-0.038255214691162,-0.003146761097014,0.0092360842972994]],[[-0.042946346104145,0.073675855994225,-0.056207273155451],[-0.19239780306816,-0.12658548355103,-0.047182980924845],[0.061998080462217,0.12625543773174,-0.097517788410187]],[[-0.043125323951244,-0.0032947051804513,-0.028290277346969],[-0.05051650851965,0.029507970437407,-0.065856635570526],[-0.13149704039097,0.050687503069639,-0.01548913307488]],[[-0.061011824756861,-0.051289480179548,-0.028231408447027],[-0.070807404816151,-0.033520136028528,-0.16617718338966],[-0.020008563995361,0.05444011092186,0.13750430941582]],[[0.18535287678242,0.12694245576859,0.035596791654825],[0.01728636585176,-0.076085098087788,-0.088017806410789],[-0.097541056573391,0.0017099968390539,0.0022233834024519]],[[-0.029025055468082,-0.038899000734091,0.025375900790095],[-0.087003469467163,-0.16822308301926,-0.0079780062660575],[-0.01782257296145,0.26870766282082,0.23128119111061]],[[0.055704683065414,0.051726169884205,-0.07690791785717],[0.035620804876089,-0.079633258283138,0.066896468400955],[-0.052346266806126,0.012257948517799,0.064619392156601]],[[-0.19974115490913,-0.092536494135857,0.1901341676712],[0.40816763043404,0.069299846887589,-0.10765327513218],[0.0331691801548,-0.024837512522936,-0.15264686942101]],[[0.06273477524519,-0.020877508446574,-0.025485625490546],[0.10119090974331,-0.030367342755198,-0.15936563909054],[-0.0061122090555727,0.11782138049603,0.056491360068321]],[[-0.10085864365101,0.010624889284372,-0.061720047146082],[-0.072985306382179,-0.0099033089354634,0.031756430864334],[-0.0072037614881992,0.015776006504893,0.20673061907291]],[[-0.099210172891617,0.051712829619646,0.026096656918526],[0.29265281558037,0.02961840108037,0.092500232160091],[-0.089089587330818,-0.080432467162609,-0.18294139206409]],[[-0.19911852478981,-0.034735448658466,0.0027973942924291],[0.024798085913062,-0.054039865732193,-0.113818988204],[0.092182822525501,-0.092667497694492,-0.081986241042614]],[[0.12887468934059,-0.048418320715427,0.0098167527467012],[0.082845591008663,0.074279494583607,0.071170188486576],[-0.021863084286451,-0.0065496596507728,0.076902143657207]],[[-0.017562657594681,-0.05218219012022,-0.057667907327414],[-0.019317401573062,0.0371756516397,-0.037517249584198],[-0.11075109243393,0.11745724081993,0.25004249811172]],[[0.071328185498714,0.019387686625123,-0.020943267270923],[-0.059768110513687,-0.013745133765042,0.024998020380735],[0.033661633729935,-0.078911162912846,-0.090205028653145]],[[-0.030227433890104,0.032467193901539,-0.035655975341797],[-0.085372298955917,-0.13880489766598,-0.057340543717146],[-0.18653191626072,0.0052312631160021,0.29994815587997]],[[0.13639955222607,0.088517673313618,0.041881415992975],[-0.0041884328238666,0.18198186159134,0.057903397828341],[-0.052992835640907,-0.087288729846478,-0.014551091007888]],[[-0.048396345227957,-0.10446804016829,-0.068904742598534],[-0.067044422030449,-0.067884922027588,0.022619184106588],[0.075792945921421,0.2468186467886,-0.051453236490488]],[[-0.094979278743267,-0.14971233904362,-0.014892587438226],[0.047028116881847,-0.020532676950097,0.034251295030117],[0.032374884933233,0.013834460638463,-0.0029576122760773]],[[-0.02970721386373,0.0038242277223617,0.058206990361214],[-0.0088985878974199,-0.042958654463291,0.021173434332013],[-0.1390545219183,-0.078555695712566,-0.072834454476833]],[[-0.26543101668358,0.0012391830096021,0.10734941810369],[-0.034677121788263,0.0034893814008683,0.06407692283392],[-0.19153143465519,0.00066769775003195,0.079337447881699]],[[0.2598797082901,-0.07996229827404,-0.02336560934782],[0.086840815842152,-0.075365364551544,0.072529710829258],[-0.1194531917572,-0.0747010409832,-0.0094792051240802]],[[0.12151673436165,0.034439489245415,0.076524145901203],[0.22594420611858,0.13140785694122,-0.033317647874355],[0.11141286790371,-0.011119475588202,-0.054035883396864]],[[-0.11674290150404,-0.020500775426626,0.021124729886651],[0.16438390314579,0.00094463175628334,0.04789786413312],[0.012832099571824,-0.079092413187027,-0.030487827956676]],[[-0.088081285357475,0.010689243674278,-0.033715404570103],[-0.011788935400546,-0.0074858041480184,-0.093388572335243],[-0.03353488445282,0.096570052206516,0.018301777541637]],[[-0.040252681821585,0.061696138232946,0.098209604620934],[-0.037993542850018,-0.056391168385744,-0.084714375436306],[0.083833135664463,0.014447565190494,-0.083636239171028]],[[0.011184926144779,-0.048734605312347,0.066795438528061],[-0.031925782561302,-0.034543868154287,0.1104873791337],[0.045297831296921,-0.086769916117191,-0.030196074396372]],[[-0.25723308324814,-0.19034639000893,-0.10373533517122],[-0.018080107867718,-0.080254845321178,-0.063877135515213],[-0.052991636097431,0.059968050569296,-0.011067297309637]],[[-0.017442660406232,0.025817582383752,0.035604521632195],[-0.10627461969852,-0.013441099785268,0.13108831644058],[0.078503616154194,0.14362396299839,-0.03993809223175]],[[-0.13130024075508,-0.0068085337989032,-0.012054400518537],[0.022236319258809,-0.066856049001217,0.091818064451218],[-0.065774656832218,-0.13053447008133,-0.19294355809689]],[[-0.09785370528698,-0.010426366701722,0.024740908294916],[-0.0011396899353713,-0.16155810654163,-0.035936322063208],[0.041757427155972,0.034896146506071,0.16170030832291]],[[0.054320573806763,0.024990500882268,0.0078754918649793],[-0.13882778584957,0.060432463884354,0.085708454251289],[-0.0056485659442842,0.0023652941454202,-0.020649772137403]],[[0.087754480540752,0.042767472565174,-0.0091107860207558],[0.0053496151231229,-0.14766815304756,-0.0057706222869456],[-0.019254768267274,0.07661622017622,0.13155789673328]],[[0.04175691306591,0.05424165725708,0.056993760168552],[0.009184698574245,-0.035542473196983,0.0015976643189788],[-0.042207717895508,-0.035810012370348,-0.050979133695364]],[[0.025199230760336,0.068839900195599,0.013676878996193],[0.15981058776379,0.11688471585512,0.17473727464676],[-0.078725285828114,-0.041312333196402,-0.034110516309738]],[[0.12408969551325,-0.041987989097834,-0.1877808123827],[0.21243591606617,0.081967681646347,0.0035886999685317],[-0.19573616981506,-0.02346022054553,-0.029783779755235]],[[0.067659229040146,0.030688786879182,-0.021736886352301],[-0.034941010177135,-0.086367912590504,-0.10047577321529],[-0.10495376586914,-0.033810820430517,-0.026982950046659]],[[-0.045651607215405,0.049790184944868,0.11442243307829],[0.10241020470858,0.024369260296226,0.024925829842687],[-0.11129582673311,0.044558484107256,0.053720608353615]],[[-0.01588468067348,-0.17783446609974,0.0074837584979832],[0.018641337752342,0.086156733334064,0.132230296731],[-0.09745892137289,-0.011609835550189,0.10009717941284]],[[-0.079804517328739,0.042602479457855,0.053234096616507],[-0.049476083368063,0.021142235025764,-0.08100301027298],[-0.12301269173622,-0.10999006778002,-0.061944477260113]],[[-0.078023374080658,-0.033522926270962,0.046378996223211],[0.10267461836338,-0.047748789191246,-0.17388857901096],[0.079868607223034,-0.026138357818127,-0.14748230576515]],[[-0.030455091968179,-0.053998589515686,-0.038681365549564],[0.13802136480808,0.18283678591251,0.013234339654446],[-0.012005996890366,-0.029167361557484,-0.024438362568617]],[[0.21780756115913,0.072887428104877,0.065287560224533],[-0.0055449795909226,-0.058222498744726,0.039142366498709],[-0.11699924618006,-0.075861886143684,-0.013169433921576]],[[-0.075886838138103,0.1464511603117,0.13473679125309],[0.031443852931261,0.087398126721382,0.030654054135084],[-0.0014631712110713,-0.034536313265562,0.019297834485769]],[[-0.021608047187328,-0.0037247645668685,-0.060924738645554],[0.0095365140587091,0.088680572807789,0.060373600572348],[0.045153211802244,0.074550285935402,-0.041674941778183]],[[-0.031130513176322,0.058269493281841,-0.05642107874155],[-0.089172385632992,-0.16415496170521,-0.0812708735466],[-0.13171510398388,-0.25207549333572,0.0077601606026292]],[[-0.024506339803338,0.013664626516402,0.0033196089789271],[-0.012352963909507,-0.032187592238188,-0.028118319809437],[-0.015203161165118,-0.05505483224988,0.0091995038092136]],[[0.067251481115818,0.081920512020588,-0.15470220148563],[-0.037626005709171,-0.03105191141367,0.035712487995625],[0.048400290310383,0.035205282270908,0.049561899155378]],[[-0.020296473056078,-0.080349765717983,0.01934839040041],[0.13398657739162,0.041897498071194,0.036897908896208],[-0.085502706468105,-0.10856717824936,-0.0841154307127]],[[-0.093502782285213,0.021941659972072,-0.079542405903339],[0.00042608991498128,0.0075419577769935,-0.046966630965471],[0.05251294746995,-0.02046169899404,0.14558267593384]],[[-0.12819334864616,-0.087939858436584,-0.020474458113313],[-0.19943024218082,-0.1645555049181,0.13799802958965],[-0.025800459086895,-0.027232652530074,-0.014327550306916]]],[[[-0.027313580736518,-0.063681825995445,-0.021373117342591],[0.0021933361422271,-0.0069916415959597,0.014178970828652],[0.030881609767675,0.0098360246047378,-0.090659648180008]],[[0.053841784596443,0.06871971487999,0.0041546220891178],[-0.048507515341043,0.059807561337948,0.075379207730293],[-0.024808429181576,-0.12284390628338,-0.0010447556851432]],[[-0.075303599238396,0.068112447857857,0.049528017640114],[0.089078739285469,-0.15339931845665,0.053467079997063],[0.082505278289318,0.036973971873522,-0.057339329272509]],[[-0.10462254285812,0.082809634506702,0.038664199411869],[-0.083750508725643,-0.01849858649075,0.028724104166031],[-0.12528046965599,-0.1659209728241,0.12086337059736]],[[-0.048794236034155,-0.0035687796771526,-0.037746120244265],[0.052705980837345,-0.0037610551808029,0.011283887550235],[-0.0099371550604701,-0.089810386300087,0.073231898248196]],[[-0.0024590003304183,-0.01452655903995,-0.10108758509159],[-0.0030076936818659,0.033203195780516,0.078466780483723],[-0.015930192545056,-0.02065871655941,-0.080068178474903]],[[0.072632566094398,0.041891779750586,-0.060470931231976],[-0.0077332612127066,0.069283328950405,-0.070850305259228],[0.031024156138301,0.075822122395039,0.023822918534279]],[[0.032852802425623,0.033947799354792,-0.025948626920581],[0.022077007219195,-0.0050693736411631,0.14599804580212],[0.047282140702009,-0.09711055457592,0.0013720211572945]],[[0.023076361045241,-0.010265867225826,0.018850523978472],[0.0042581274174154,-0.04907638207078,-0.094568476080894],[-0.079462796449661,-0.048623032867908,0.015375797636807]],[[0.003792395349592,-0.090247444808483,-0.04722785204649],[-0.078471444547176,-0.026259243488312,-0.016517356038094],[0.036476373672485,0.021720333024859,-0.047745831310749]],[[0.0083647528663278,-0.044309437274933,0.041592601686716],[-0.044551331549883,-0.085822649300098,0.11193003505468],[-0.015802739188075,0.04327953979373,0.09437157958746]],[[-0.11179055273533,-0.10821227729321,0.10429474711418],[-0.0049879681318998,-0.015531735494733,-0.10099399089813],[0.02833378687501,-0.0079137068241835,-0.012414420023561]],[[-0.019146591424942,-0.13306865096092,-0.061866756528616],[-0.033064272254705,-0.0011681304313242,-0.057432025671005],[-0.068592093884945,-0.0097738215699792,0.0053137140348554]],[[-0.019988434389234,-0.061153795570135,-0.034430745989084],[-0.0010604107519612,-0.043008513748646,-0.020572258159518],[0.092377282679081,-0.12670662999153,-0.03235249966383]],[[0.03175675496459,0.021537072956562,0.044106401503086],[-0.098834060132504,0.034413862973452,0.023019086569548],[0.027583261951804,-0.02012518234551,-0.064084857702255]],[[-0.042192950844765,-0.0026739817112684,-0.010254064574838],[-0.068637020885944,0.0052377451211214,-0.051015742123127],[-0.063351675868034,0.048480965197086,0.060032982379198]],[[0.018596556037664,-0.062615893781185,0.013840635307133],[-0.006138595752418,-0.084634117782116,-0.070066273212433],[0.012715605087578,-0.043720487505198,0.10854405164719]],[[0.077272079885006,-0.016013817861676,0.012913862243295],[0.047566622495651,0.018607221543789,-0.041272185742855],[-0.0083778845146298,0.017921086400747,-0.05953474342823]],[[-0.054867580533028,-0.036972720175982,-0.0018574454588816],[0.045465383678675,0.0054852468892932,-0.02188454195857],[0.042402323335409,0.029344327747822,0.040613558143377]],[[-0.03897338733077,-0.087726145982742,-0.0055834106169641],[0.0001432879071217,-0.024146653711796,-0.0618014074862],[-0.054554186761379,0.025692192837596,-0.14536900818348]],[[-0.0296894274652,0.03668562695384,-0.036249853670597],[0.036109380424023,0.074405625462532,0.0098557602614164],[-0.0055932817049325,0.039093617349863,-0.033255372196436]],[[-0.01015535928309,-0.038766175508499,-0.14769318699837],[-0.064075693488121,0.010306596755981,0.023551760241389],[-0.12973430752754,-0.14194495975971,0.019134281203151]],[[0.026491986587644,-0.010728733614087,0.05264526233077],[0.044151201844215,-0.0091263754293323,-0.023092217743397],[0.04735466465354,-0.071554012596607,-0.05556982383132]],[[0.075426332652569,0.028712920844555,0.025191845372319],[-0.0412482842803,0.053092166781425,0.050691328942776],[0.0034257606603205,-0.068058423697948,-0.040000781416893]],[[-0.067131072282791,0.034831110388041,0.053483404219151],[-0.16618649661541,-0.084184564650059,-0.040703773498535],[-0.061726823449135,-0.084307707846165,-0.054964277893305]],[[0.074153058230877,-0.018885167315602,0.027277564629912],[0.094329871237278,0.09165333211422,-0.010722615756094],[0.024383183568716,0.10806491971016,-0.032471772283316]],[[0.049308694899082,0.082053475081921,-0.052739705890417],[0.059670716524124,0.015895051881671,-0.07646369934082],[0.073631718754768,-0.059682112187147,-0.053339213132858]],[[0.0045935036614537,-0.029894074425101,-0.062807582318783],[0.021018257364631,-0.053160101175308,-0.082966685295105],[-0.012417089194059,-0.00036924879532307,0.0047592036426067]],[[0.030790884047747,0.049917239695787,-0.010129256173968],[-0.044754777103662,-0.0067675965838134,0.0004675961099565],[-0.039482146501541,0.044595595449209,-0.018943725153804]],[[0.080213114619255,0.045692197978497,-0.069355025887489],[0.033198039978743,-0.011371210217476,-0.021533297374845],[-0.013715486973524,0.0015538494335487,-0.017642129212618]],[[-0.0049377777613699,-0.0394615419209,-0.14778932929039],[0.07337249815464,0.018819199874997,-0.046402901411057],[-0.048230912536383,-0.0082890782505274,0.020057482644916]],[[0.094309978187084,0.10892587900162,-0.11266375333071],[0.029803711920977,-0.0019083875231445,-0.026691231876612],[0.065321110188961,-0.057599730789661,-0.091591186821461]],[[-0.0072626513428986,-0.018093414604664,-0.087814748287201],[0.061140581965446,0.028550293296576,-0.11585183441639],[-0.020863700658083,-0.025914702564478,-0.10117010772228]],[[-0.0026945290155709,-0.02085093781352,-0.028361385688186],[-0.015780752524734,-0.011709194630384,-0.019667850807309],[0.010928872972727,0.13461849093437,0.025993432849646]],[[-0.045936852693558,0.010810737498105,-0.018403695896268],[-0.022624125704169,-0.011492398567498,-0.052941136062145],[0.013483829796314,-0.08856538683176,-0.10511971265078]],[[-0.00099770061206073,0.019070571288466,-0.00861556828022],[0.048442143946886,-0.034429617226124,-0.022418288514018],[0.068638786673546,0.031413018703461,-0.026829596608877]],[[-0.0032947950530797,-0.015780489891768,-0.0012231462169439],[0.012041625566781,0.064283177256584,-0.030528370290995],[-0.016653936356306,-0.071121446788311,-0.0052032386884093]],[[-0.019129250198603,-0.034214407205582,-0.021032040938735],[-0.040807161480188,-0.032136201858521,0.022875787690282],[0.014838145114481,0.028287218883634,0.066684402525425]],[[0.04206969961524,0.019897116348147,-0.061182904988527],[0.015537898987532,-0.014134967699647,0.083452351391315],[0.027512315660715,-0.026033423841,-0.13291124999523]],[[-0.013018478639424,-0.018029816448689,-0.040599845349789],[0.037656255066395,0.040443785488605,-0.015150112099946],[-0.0099710850045085,0.032188914716244,-0.029645599424839]],[[-0.01302867103368,0.020828591659665,-0.089350759983063],[-0.027746681123972,0.021094748750329,0.022345632314682],[0.023120744153857,0.093050546944141,0.0553786046803]],[[-0.050500325858593,-0.066524557769299,-0.033226650208235],[0.077115952968597,0.04632143676281,0.031369224190712],[-0.053039308637381,-0.088206067681313,-0.029126219451427]],[[0.030127502977848,0.042425062507391,-0.044044893234968],[0.0087918341159821,0.032948423177004,-0.03519431501627],[-0.065821476280689,-0.014678291045129,-0.050955753773451]],[[-0.037642657756805,-0.0092053767293692,-0.049495983868837],[-0.029602404683828,0.04981940984726,-0.020909659564495],[-0.025408802554011,0.12202877551317,0.12885184586048]],[[-0.038478203117847,-0.10071688890457,-0.067359462380409],[-0.038411129266024,-0.00010897297761403,-0.021550891920924],[-0.021804854273796,-0.01989683136344,-0.086284302175045]],[[-0.13863398134708,0.011634035035968,0.039838742464781],[-0.072808921337128,-0.040822718292475,0.023873958736658],[-0.032777961343527,-0.061629395931959,0.020207591354847]],[[0.040340591222048,0.02851041033864,-0.059285800904036],[0.027224456891418,-0.032715674489737,-0.010865102522075],[-0.12965372204781,-0.04452358931303,-0.034832932054996]],[[-0.044558443129063,0.034331027418375,0.012490710243583],[0.013790714554489,-0.03417930752039,-0.075320966541767],[0.013835368677974,0.064640402793884,0.012177903205156]],[[0.01810560002923,-0.045236177742481,-0.027989393100142],[-0.034081049263477,0.019108852371573,0.004933733958751],[0.026570618152618,0.022796351462603,-0.027103068307042]],[[0.0089413365349174,0.018195632845163,0.027164854109287],[-0.0071789012290537,0.007001037709415,0.01521263550967],[-0.024248376488686,-0.0011162912705913,-0.011640465818346]],[[-0.095629937946796,-0.070720545947552,-0.045579377561808],[-0.073521494865417,-0.050389662384987,-0.020872283726931],[-0.095274075865746,0.011365534737706,-0.0019879972096533]],[[-0.055970262736082,0.014660873450339,-0.020487960427999],[0.046239964663982,0.0096364486962557,-0.043930247426033],[-0.025222066789865,0.01247676089406,0.018581844866276]],[[-0.026229705661535,-0.020949728786945,-0.095881968736649],[0.040385168045759,0.0015981629258022,-0.20230887830257],[0.054869122803211,0.052292943000793,-0.071128197014332]],[[0.015009028837085,0.017404671758413,0.065276756882668],[0.073768027126789,0.077961817383766,0.037051640450954],[0.018705148249865,-0.014472999610007,-0.037882003933191]],[[-0.047129359096289,-0.020989133045077,0.018361968919635],[-0.098829120397568,-0.0031715021468699,0.079376719892025],[0.021275136619806,0.039479553699493,0.067434661090374]],[[-0.034812841564417,-0.02519566193223,0.021750319749117],[0.052368018776178,0.028461616486311,0.032129634171724],[0.036319140344858,-0.080689638853073,-0.13401809334755]],[[-0.026706675067544,-0.027226453647017,-0.11058141291142],[-0.025063732638955,0.030977739021182,-0.014107227325439],[-0.013131097890437,-0.013900625519454,-0.047085784375668]],[[-0.099901273846626,0.079467572271824,-0.03195882588625],[-0.084558591246605,-0.079032175242901,-0.13898248970509],[0.026961222290993,0.049195185303688,0.013964684680104]],[[0.013585769571364,-0.085143722593784,-0.023357234895229],[-0.049970418214798,0.044636864215136,0.034351043403149],[-0.0083572408184409,0.094393894076347,0.10990968346596]],[[0.020677655935287,0.012069898657501,0.045315425843],[0.0023227308411151,0.018121723085642,-0.015449879691005],[0.019809372723103,-0.032778035849333,-0.03624864295125]],[[-0.059402652084827,0.007079872302711,-0.12110399454832],[-0.065655723214149,-0.068647190928459,-0.034193158149719],[0.012210935354233,-0.052514418959618,0.0043425383046269]],[[-0.043102167546749,-0.049352947622538,0.019315842539072],[-0.065648473799229,0.052818298339844,0.074755288660526],[-0.032623711973429,-0.026547955349088,-0.03783717378974]],[[0.05743146315217,0.06648276746273,0.013181519694626],[-0.069964401423931,-0.035915151238441,-0.027950998395681],[0.1550732254982,-0.031817361712456,-0.0541559047997]],[[-0.0095549430698156,-0.080244608223438,-0.13233371078968],[-0.0451580286026,0.09519137442112,-0.05172173678875],[0.038853023201227,0.14434327185154,0.019822087138891]],[[-0.015385265462101,-0.05666321143508,-0.1367776542902],[-0.040843166410923,0.024116773158312,0.01398435421288],[-0.0089279729872942,-0.005424533970654,-0.021467013284564]],[[-0.054477889090776,-0.052571013569832,-0.049790188670158],[-0.04674531891942,0.021109392866492,0.049135230481625],[-0.0080343224108219,-0.02355107665062,-0.0068698227405548]],[[0.071556136012077,0.00077299005351961,0.017667366191745],[-0.021519806236029,0.091066092252731,0.035043064504862],[-0.10819709300995,-0.001205725944601,0.043605428189039]],[[0.05579761788249,0.026134442538023,-0.013929385691881],[0.037537857890129,0.013181566260755,0.010117483325303],[-0.021711830049753,0.043944481760263,0.0093799717724323]],[[0.014114095829427,0.018631355836987,-0.033859081566334],[-0.0025186841376126,-0.013654660433531,-0.026262301951647],[0.038517374545336,-0.034585628658533,-0.032968945801258]],[[-0.054636027663946,-0.013306483626366,0.0056966003030539],[0.019136847928166,0.049115728586912,-0.021298626437783],[-0.0031677563674748,-0.039414703845978,-0.094975478947163]],[[0.024984017014503,0.041077110916376,0.034032467752695],[0.0085592279210687,0.061064153909683,0.022727621719241],[0.029706533998251,-0.058643668889999,-0.031081095337868]],[[-0.044150784611702,-0.060676597058773,-0.02657188475132],[0.059229239821434,0.044726360589266,-0.03268351778388],[-0.075570814311504,-0.060795538127422,-0.015929060056806]],[[0.0018557625589892,0.020932838320732,0.025814360007644],[0.0046500563621521,-0.031560942530632,-0.069144122302532],[-0.075672954320908,-0.024323994293809,-0.049382328987122]],[[-0.03652011975646,-0.052113004028797,0.01455544680357],[-0.057763397693634,-0.12655293941498,0.033798731863499],[0.024809846654534,-0.013084228150547,0.015436763875186]],[[0.02432743832469,0.1046861037612,-0.058349523693323],[0.08283069729805,-0.04757422208786,-0.12787261605263],[0.067080982029438,0.059029508382082,-0.029322240501642]],[[0.044384729117155,-0.020181398838758,-0.11655098944902],[-0.0003912698593922,0.067239128053188,-0.01838119700551],[-0.0056374534033239,-0.00041163852438331,-0.094268709421158]],[[-0.024211511015892,0.049924042075872,0.10658039152622],[-0.030736073851585,-0.0046891239471734,0.0015879835700616],[-0.054898053407669,0.0035340848844498,-0.085744835436344]],[[0.0028217858634889,0.05799063295126,-0.032516129314899],[-0.038319803774357,-0.0017871115123853,0.040073674172163],[-0.010540822520852,-0.00080039777094498,0.0094230696558952]],[[0.035517279058695,-0.05705651268363,0.042901482433081],[0.013728336431086,-0.032105799764395,-0.011902469210327],[-0.03911592438817,-0.10473327338696,-0.026401363313198]],[[0.0074080848135054,-0.080234736204147,0.023618467152119],[0.10722927749157,0.0076585430651903,-0.005402413662523],[0.034311410039663,0.060514356940985,-0.024909960106015]],[[-0.02283651381731,-0.067375928163528,0.00071986217517406],[-0.047647096216679,-0.07149912416935,0.052027631551027],[-0.01347763556987,0.039665695279837,0.13107061386108]],[[-0.029462408274412,-0.081706516444683,-0.04316546395421],[0.052623655647039,-0.033602971583605,-0.17475156486034],[0.052013978362083,-0.011336851865053,-0.042285230010748]],[[0.056391097605228,0.0079932101070881,-0.046444602310658],[-0.028585597872734,0.067570023238659,-0.021154945716262],[-0.024120654910803,-0.044156040996313,-0.011567307636142]],[[-0.072940826416016,0.068346105515957,0.043839566409588],[-0.11535862833261,0.1202465519309,0.06089848652482],[-0.10747700929642,0.0044791591353714,0.078566461801529]],[[0.018764702603221,0.098637744784355,0.015773197636008],[-0.037989255040884,-0.0094178756698966,-0.046653475612402],[0.01711998321116,-0.057061284780502,-0.066355288028717]],[[0.044003162533045,0.050085820257664,-0.042134780436754],[0.036506474018097,0.014488601125777,-0.0063770231790841],[-0.073411777615547,-0.1406554877758,-0.13513007760048]],[[0.02735710516572,0.0074156918562949,-0.00429399125278],[0.087211266160011,0.074682615697384,0.10118914395571],[0.061811789870262,-0.017645368352532,0.063413821160793]],[[-0.047003522515297,-0.043081313371658,-0.076663427054882],[-0.030944399535656,0.015429949387908,-0.020537562668324],[-0.0061195502057672,-0.090460941195488,-0.069077007472515]],[[-0.078302882611752,0.020484454929829,0.097740188241005],[-0.021393613889813,-0.079271070659161,0.041111584752798],[0.032109662890434,0.0032835779711604,-0.073382757604122]],[[-0.056610260158777,-0.071810983121395,-0.11663986742496],[-0.037916880100965,-0.069632083177567,0.032256420701742],[-0.046816889196634,-0.0051175933331251,0.037458915263414]],[[-0.025239329785109,-0.029979713261127,-0.038176115602255],[0.020403176546097,0.018316183239222,-0.02104196511209],[0.05628589168191,-0.035901680588722,-0.0273402556777]],[[0.0064836461097002,0.049453292042017,0.00071151612792164],[-0.0048872018232942,0.038454949855804,-0.02107372879982],[-0.015273418277502,0.026577141135931,0.047567948698997]],[[0.063328303396702,-0.018396958708763,0.081604741513729],[0.0069859717041254,0.026721691712737,0.078326150774956],[0.042166545987129,0.035654608160257,-0.057286616414785]],[[-0.039294362068176,-0.013238314539194,-0.16453868150711],[-0.080089263617992,0.037968367338181,-0.014079303480685],[0.01386412512511,-0.049258373677731,-0.054454579949379]],[[-0.0068115070462227,-0.0030684852972627,-0.058179542422295],[-0.024741658940911,-0.0067331665195525,-0.032504666596651],[-0.01872044801712,-0.078121520578861,-0.091556593775749]],[[-0.017066838219762,-0.00026963275740854,0.013833562843502],[-0.014585056342185,0.056651756167412,-0.063514247536659],[0.054866272956133,-0.068340040743351,-0.024831533432007]],[[-0.020785821601748,0.038133341819048,-0.00060921208932996],[0.021936248987913,0.031592138111591,-0.026624079793692],[0.026132591068745,-0.04002196714282,-0.011222085915506]],[[0.031299497932196,0.014461741782725,0.014336963184178],[-0.087638236582279,-0.037877529859543,-0.024834794923663],[0.037404756993055,0.056182108819485,-0.044696994125843]],[[-0.064295150339603,0.00575136160478,-0.023244338110089],[-0.016918012872338,-0.058098278939724,0.038404747843742],[0.015699645504355,-0.0042691384442151,-0.011925396509469]],[[0.027290234342217,0.048955965787172,-0.059763543307781],[-0.0088760675862432,0.073984123766422,0.016177214682102],[0.098533369600773,-0.0021081697195768,0.026219543069601]],[[-0.1147740855813,0.091104477643967,0.096439674496651],[-0.058872018009424,0.022096635773778,0.0099853817373514],[-0.11166260391474,0.037112161517143,0.0028833558317274]],[[-0.019872162491083,-0.034195516258478,-0.05084378644824],[0.0080132074654102,0.061553552746773,-0.038972139358521],[0.010022108443081,0.10425791144371,0.016629941761494]],[[-0.065390944480896,-0.042751289904118,-0.012611123733222],[0.031398482620716,-0.045584980398417,0.015746111050248],[0.029766468331218,0.015184444375336,0.018236337229609]],[[-0.082672342658043,-0.062080442905426,-0.0033434212673455],[-0.11502296477556,-0.042268875986338,-0.0083947787061334],[0.016089573502541,0.15030901134014,0.046609170734882]],[[0.024798084050417,0.028592342510819,-0.011396610178053],[-0.065664499998093,-0.031334243714809,-0.046275723725557],[0.01126750651747,0.017150396481156,-0.076625004410744]],[[0.044267773628235,-0.01409397367388,-0.099932856857777],[-0.028053821995854,0.09390365332365,-0.01883258484304],[-0.041240327060223,-0.037305928766727,-0.08107552677393]],[[0.028930932283401,0.034740678966045,0.01761682331562],[0.040406323969364,-0.026689164340496,-0.12047322839499],[-0.00028950977139175,0.12856303155422,-0.028007162734866]],[[0.061207227408886,0.11777067184448,0.0034345716703683],[-0.059890933334827,-0.040925275534391,0.0063419723883271],[-0.042524877935648,-0.079859562218189,0.015090920031071]],[[0.022509951144457,-0.040906883776188,0.066917762160301],[-0.017187552526593,0.12706746160984,0.052117634564638],[-0.10823244601488,0.040009189397097,-0.032245192676783]],[[-0.025922141969204,0.0039856643415987,-0.019480872899294],[0.042161118239164,-0.023432001471519,0.015069677494466],[-0.094273671507835,0.071072615683079,0.046689290553331]],[[-0.0097659109160304,0.028733471408486,0.021447334438562],[-0.031728755682707,0.030934996902943,-0.027813859283924],[-0.0046140840277076,-0.090478949248791,-0.023362843319774]],[[-0.04226179048419,0.0039226221852005,-0.047423329204321],[-0.054802592843771,-0.056099202483892,0.00012283091200516],[-0.031840369105339,-0.055048108100891,-0.045154117047787]],[[0.082689583301544,0.057765305042267,0.047849379479885],[-0.012110223993659,0.035550188273191,0.032786596566439],[0.042165722697973,-0.060713313519955,0.023097429424524]],[[-0.06571027636528,-0.065227769315243,0.0069509651511908],[0.016804726794362,0.044910404831171,0.12130556255579],[-0.022929841652513,0.013243868015707,0.066787160933018]],[[0.073046371340752,-0.087897516787052,-0.095342941582203],[0.050851613283157,0.040967810899019,-0.072746500372887],[-0.0070781572721899,0.004100461024791,0.044813808053732]],[[0.021777369081974,0.0034380236174911,0.076831474900246],[0.093299999833107,0.056122153997421,-0.015471253544092],[-0.03275365754962,0.059323064982891,0.064277797937393]],[[-0.0070821018889546,0.06482645124197,0.090713381767273],[0.066632688045502,0.012671337462962,0.067747958004475],[0.037937141954899,-0.048387102782726,0.037549689412117]],[[0.025608098134398,-0.011322163976729,0.010158916004002],[0.020985567942262,-0.073742844164371,0.00058164732763544],[-0.0030953008681536,-0.037888877093792,0.012072106823325]],[[0.026119846850634,-0.012217360548675,0.012855112552643],[-0.058140967041254,-0.055509112775326,0.014211802743375],[-0.013547871261835,-0.00065916322637349,0.016225162893534]],[[-0.014812462963164,0.023186290636659,0.0083364564925432],[0.015556396916509,0.0055873175151646,-0.065766431391239],[-0.00066776148742065,0.11514087021351,0.072355985641479]],[[-0.0038725426420569,-0.017033785581589,0.013929431326687],[0.032519046217203,0.049025341868401,0.013192466460168],[-0.014072989113629,-0.018398379907012,0.081091441214085]],[[-0.01040645968169,-0.012694585137069,-0.031432032585144],[0.037724755704403,-0.034983269870281,0.055970452725887],[-0.029059818014503,-0.13672335445881,-0.03009695187211]],[[-0.076062984764576,-0.067091338336468,-0.045304168015718],[0.017630459740758,-0.045107077807188,0.026034431532025],[0.041706550866365,-0.031928885728121,0.0025102912914008]],[[0.020251914858818,-0.017172794789076,0.027326323091984],[-0.017273232340813,0.033936403691769,0.10006432235241],[-0.040479656308889,0.061344042420387,0.036282364279032]],[[-0.15972235798836,0.0018291256856173,0.086164340376854],[-0.011747675016522,-0.030832743272185,0.021243058145046],[0.14912681281567,-0.016978561878204,-0.071024261415005]],[[-0.0090255551040173,0.060321718454361,0.0024283514358103],[-0.022484930232167,0.010755077004433,0.0005485633155331],[-0.029584463685751,-0.067472755908966,0.0070862080901861]],[[0.013820280320942,0.071439333260059,-0.0042145689949393],[-0.0090047717094421,0.098660334944725,0.019099682569504],[-0.038057088851929,0.09943987429142,-0.032469771802425]],[[0.026015169918537,0.029268013313413,-0.031464282423258],[-0.077802605926991,0.026979625225067,0.066346175968647],[-0.036614451557398,0.089320302009583,0.0026980547700077]]],[[[0.073513761162758,-0.022205378860235,0.091055445373058],[0.0013819084269926,0.039045408368111,0.11597557365894],[0.080379664897919,0.078206904232502,0.014250049367547]],[[0.049009930342436,0.031960718333721,0.034469772130251],[0.1632394194603,0.083713419735432,0.017226684838533],[-0.066428415477276,-0.044333174824715,0.070384778082371]],[[-0.069005087018013,-0.01899079978466,0.037980105727911],[-0.034425731748343,0.057706780731678,-0.1398104429245],[-0.042505756020546,-0.10015762597322,0.091309279203415]],[[-0.10184067487717,-0.065641455352306,0.0037528409156948],[0.028257226571441,-0.081188432872295,-0.066554881632328],[0.18289269506931,0.073739089071751,-3.1014209525893e-05]],[[-0.092436917126179,-0.022037470713258,0.057953786104918],[0.061844691634178,-0.014049197547138,0.080566398799419],[-0.05153913423419,-0.078330315649509,-0.032555107027292]],[[-0.081195488572121,0.023059967905283,-0.043152458965778],[-0.14450995624065,-0.059366889297962,-0.051250856369734],[0.010265869088471,-0.062872223556042,-0.0014614553656429]],[[-0.016820335760713,-0.083103746175766,-0.03157801553607],[-0.026035379618406,-0.0076184519566596,-0.021082093939185],[-0.0049608866684139,0.020822426304221,0.058421541005373]],[[-0.018289117142558,0.044677376747131,-4.6726840082556e-05],[0.042279690504074,0.052042677998543,-0.035225078463554],[-0.12052567303181,-0.064474783837795,0.033943217247725]],[[0.070811361074448,0.057302359491587,0.0079378308728337],[0.029925299808383,-0.024205829948187,-0.073045320808887],[-0.12508362531662,-0.1522875726223,0.030104786157608]],[[-0.032269559800625,0.069772601127625,0.045771472156048],[0.0020157878752798,0.028019115328789,0.12245110422373],[-0.0050039235502481,0.19655223190784,0.058200217783451]],[[-0.051693979650736,0.010994967073202,-0.031170157715678],[0.024042500182986,0.023911530151963,-0.085151754319668],[-0.042944267392159,-0.098614476621151,-0.023359775543213]],[[0.10613086819649,0.16335579752922,0.062196023762226],[-0.037808310240507,-0.12133962661028,-0.12294618785381],[0.0046011069789529,-0.039947371929884,-0.027038073167205]],[[0.0561180151999,-0.075671792030334,-0.066845066845417],[-0.037603825330734,0.047864332795143,0.0067542204633355],[-0.022767681628466,-0.19038915634155,-0.20054678618908]],[[-0.091667614877224,-0.015045758336782,-0.00030721607618034],[-0.070179142057896,-0.02097874507308,-0.034357231110334],[-0.01237924117595,0.073325484991074,-0.095305651426315]],[[0.042280752211809,0.043521799147129,0.050440471619368],[0.12615318596363,0.043439906090498,0.019180012866855],[-0.1373705714941,-0.1237238496542,-0.035565067082644]],[[0.032246246933937,-0.031994249671698,-0.056651964783669],[0.040362741798162,-0.065639585256577,-0.02709742449224],[-0.021414715796709,-0.060578271746635,0.011961692012846]],[[0.052020434290171,0.02416362427175,-0.10332974046469],[-0.043522659689188,-0.085746891796589,0.010845711454749],[-0.067540787160397,-0.014908869750798,0.10179387778044]],[[-0.043942797929049,0.029013453051448,-0.038726005703211],[0.03215155005455,0.065236456692219,0.028433518484235],[-0.020628506317735,-0.037252988666296,-0.10166669636965]],[[0.02077267691493,-0.035486482083797,0.046505726873875],[-0.012370868586004,-0.056329175829887,0.003114118706435],[0.060122691094875,-0.062995791435242,0.0091551253572106]],[[-0.019143471494317,0.088220551609993,-0.070682294666767],[0.069194138050079,0.035875525325537,-0.074258752167225],[0.015329609625041,-0.033326506614685,-0.040458213537931]],[[-0.046056762337685,-0.017212573438883,-0.0196478869766],[0.012225616723299,0.014283738099039,0.039033524692059],[-0.023245887830853,-0.046742245554924,0.01893001422286]],[[-0.035311490297318,-0.03760452568531,0.070009648799896],[0.069110460579395,0.045358870178461,0.026568436995149],[0.10005328059196,0.045669060200453,-0.011216343380511]],[[0.018280608579516,0.007299555465579,-0.049233730882406],[0.015595617704093,0.0045286817476153,-0.04138084128499],[0.042428087443113,-0.043870855122805,-0.063892930746078]],[[-0.018441446125507,0.0091589335352182,0.034925173968077],[0.065655626356602,-0.02324178442359,-0.050076175481081],[0.0496008656919,0.03165852651,-0.098335929214954]],[[-0.046055752784014,-0.029152596369386,-0.055748105049133],[0.087525360286236,-0.068963825702667,-0.10993474721909],[0.022077281028032,-0.067057155072689,-0.050349283963442]],[[0.036629017442465,0.042142305523157,0.027824679389596],[0.0039938250556588,0.092707023024559,0.14122049510479],[0.031410664319992,0.078205704689026,0.20927701890469]],[[-0.084793210029602,-0.018042078241706,-0.012501146644354],[0.03659363090992,0.016022466123104,-0.036472417414188],[0.080152966082096,0.0073672393336892,-0.0015107643557712]],[[-0.0081928418949246,0.024604888632894,0.028314804658294],[0.0097445314750075,-0.064445182681084,0.032762579619884],[-0.092355854809284,-0.21196600794792,-0.049082193523645]],[[-0.034654751420021,0.057466324418783,-0.074375666677952],[0.074637986719608,0.08555293828249,-0.064787328243256],[0.0063622766174376,-0.12520794570446,-0.033560298383236]],[[-0.008153609931469,-0.08631094545126,0.027041213586926],[-0.057191755622625,0.039562117308378,0.060556184500456],[-0.019639063626528,0.031780060380697,-0.0045543853193521]],[[0.020843273028731,-0.086797788739204,-0.05253554880619],[-0.031365036964417,-0.070152349770069,-0.050049472600222],[-0.061161670833826,0.034331634640694,-0.045592296868563]],[[0.018018105998635,0.032261870801449,-0.057621784508228],[0.072687566280365,0.013765910640359,-0.032583635300398],[0.065783940255642,-0.021766427904367,-0.014492605812848]],[[-0.0092747639864683,-0.039859756827354,0.0068159191869199],[0.034879595041275,-0.033226683735847,-0.053749743849039],[-0.021208139136434,0.00042495803791098,-0.0072474046610296]],[[-0.06070863455534,-0.031836826354265,0.013534530997276],[0.0037247582804412,-0.029334491118789,-0.021514043211937],[0.014379734173417,-0.022466491907835,0.083997040987015]],[[0.010683853179216,-0.029927540570498,-0.067382253706455],[-0.035001710057259,0.04284331202507,-0.083566606044769],[-0.0014266712823883,0.018293857574463,-0.041336964815855]],[[-0.1524121761322,-0.097091600298882,0.019973756745458],[-0.077756300568581,-0.049385122954845,-0.050508923828602],[-0.096676915884018,-0.05946334823966,-0.037737958133221]],[[0.081180758774281,0.068557150661945,0.097491919994354],[0.026170773431659,0.064283631742001,0.10872116684914],[-0.0099129630252719,0.0056305602192879,0.0083600487560034]],[[0.012010372243822,-0.077467046678066,-0.02249906398356],[-0.023310657590628,0.027810299769044,0.047137722373009],[0.059117376804352,0.042401626706123,-0.041886188089848]],[[-0.00010405913053546,0.011622752994299,-0.011968093924224],[0.059812884777784,0.09417112916708,0.028447676450014],[-0.060634907335043,0.043533500283957,-0.020261811092496]],[[0.020583610981703,-0.057718675583601,0.012374381534755],[0.066499784588814,0.023656090721488,0.066794924438],[0.016580995172262,-0.032074481248856,-0.0037626549601555]],[[0.042237680405378,-0.09133118391037,-0.073725216090679],[-0.0020899048540741,0.020594170317054,0.0075101000256836],[0.085545994341373,-0.10146679729223,-0.077277861535549]],[[-0.030216397717595,0.048837509006262,-0.045550938695669],[0.0085601154714823,0.069670453667641,-0.011954613961279],[0.075631767511368,0.058997251093388,-0.10765214264393]],[[-0.033874996006489,-0.091389521956444,-0.031692039221525],[-0.095520488917828,-0.15006200969219,-0.0021023438312113],[-0.025309516116977,-0.10947681963444,0.018634121865034]],[[-0.085732311010361,-0.055554486811161,-0.012514657340944],[-0.043353460729122,0.010444237850606,0.027538247406483],[0.02880922332406,-0.00354567123577,-0.052518106997013]],[[-0.059339255094528,-0.055217798799276,-0.072541184723377],[-0.12643979489803,-0.12961165606976,-0.081600978970528],[-0.044043947011232,-0.058788865804672,-0.050429929047823]],[[0.088230535387993,0.043175883591175,-0.042451735585928],[-0.010023755021393,-0.017433859407902,0.01119505148381],[-0.011776205152273,-0.13192239403725,-0.0066541871055961]],[[-0.064144000411034,-0.093383617699146,-0.083361729979515],[-0.004065447486937,-0.11179696023464,0.048871196806431],[-0.094282686710358,-0.11976155638695,0.062202695757151]],[[-0.014006276614964,-0.019537787884474,-0.0038282852619886],[0.068726800382137,-0.014554232358932,-0.051011689007282],[0.0064268824644387,-0.038997754454613,-0.052037909626961]],[[-0.069517843425274,-0.072437755763531,-0.0084041450172663],[0.055969826877117,0.018966175615788,0.063388913869858],[0.017670834437013,-0.086938992142677,-0.018704397603869]],[[-0.038726672530174,-0.049760475754738,-0.039663150906563],[0.011340389028192,0.026047296822071,0.012539212591946],[0.024888874962926,-0.030297800898552,-0.036870576441288]],[[0.0111611392349,-0.076213397085667,-0.065516822040081],[0.025766707956791,-0.061823714524508,-0.038643423467875],[-0.025327587500215,-0.051250107586384,0.010706729255617]],[[-0.024803118780255,0.027000669389963,0.045373376458883],[-0.041917536407709,0.093294486403465,0.01509547047317],[-0.026810716837645,0.027082556858659,-0.055405247956514]],[[-0.11233665049076,-0.15400460362434,0.0029158357065171],[-0.083952642977238,-0.094680801033974,0.050538040697575],[0.12203650921583,0.087245009839535,0.099000178277493]],[[-0.024225521832705,0.081650517880917,0.037336148321629],[-0.071847833693027,-0.035444118082523,-0.066398411989212],[0.0097470432519913,-0.068142786622047,-0.15048195421696]],[[-0.069928005337715,-0.044918369501829,-0.023258587345481],[0.086008004844189,0.0075645199976861,-0.036719970405102],[0.11482834815979,0.053307473659515,-0.051565926522017]],[[-0.017489764839411,-0.018241006880999,-0.043916989117861],[-0.020692152902484,-0.025227222591639,-0.092973828315735],[-0.031411662697792,0.07769475877285,0.073073923587799]],[[0.049641110002995,0.089150123298168,-0.006877941545099],[-0.11044109612703,0.030883934348822,0.13287308812141],[0.042589511722326,0.093898206949234,-0.057383872568607]],[[-0.0032683422323316,-0.048993453383446,-0.041792493313551],[-0.042870257049799,-0.012442418374121,0.025264291092753],[0.022039726376534,-0.037583656609058,-0.053676925599575]],[[-0.024480815976858,-0.12239629030228,-0.071724660694599],[-0.07984983175993,-0.13770170509815,-0.028470110148191],[-0.0045273499563336,-0.025820419192314,0.032396223396063]],[[-0.015289282426238,0.070938050746918,0.044440805912018],[0.054628577083349,0.01688321493566,-0.0062364405021071],[0.022147407755256,-0.021963668987155,0.0024710346478969]],[[-0.025692846626043,-0.061638936400414,-0.028314184397459],[0.03304797783494,-0.034088853746653,-0.0095181176438928],[0.030266238376498,0.032146584242582,0.0049871788360178]],[[0.00039606919744983,-0.051926836371422,-0.062108438462019],[-0.13675591349602,-0.076664507389069,-0.051155306398869],[-0.076973937451839,0.075537845492363,0.0096835726872087]],[[-0.11266777664423,-0.032191753387451,-0.017085272818804],[-0.088231652975082,0.0035357880406082,0.033721163868904],[-0.017152251675725,0.081055775284767,0.074740886688232]],[[0.00083882047329098,0.021386442705989,0.12348303198814],[-0.053611271083355,-0.012412937358022,-0.13934017717838],[0.10211662203074,0.094194740056992,0.018388871103525]],[[-0.15944808721542,-0.11548551172018,-0.10370814800262],[-0.083054967224598,-0.056050844490528,-0.083552859723568],[-0.064081758260727,-0.0095371007919312,-0.045456238090992]],[[-0.012347893789411,0.021215589717031,0.0043783597648144],[-0.013584853149951,-0.085469238460064,-0.014987673610449],[-0.065189331769943,-0.051728628575802,-0.019788583740592]],[[0.040086358785629,-0.012651482596993,-0.077130429446697],[-0.067826136946678,-0.0093210283666849,0.057544536888599],[-0.21835720539093,0.0029936786741018,0.0054772226139903]],[[-0.001794210402295,0.031483251601458,0.004711686167866],[-0.062370680272579,0.075915925204754,0.054100640118122],[-0.0028986090328544,-0.033084876835346,0.02727079950273]],[[0.029994308948517,0.034740164875984,0.046353727579117],[0.00874337926507,0.035367406904697,0.027730673551559],[-0.055985406041145,0.015120038762689,0.029313923791051]],[[0.041011773049831,0.027993565425277,-0.017644317820668],[0.05172411724925,0.026624800637364,0.15035955607891],[0.032655507326126,-5.3132793254917e-05,0.051474697887897]],[[0.076875127851963,0.081043757498264,0.079679004848003],[0.062481015920639,0.050439886748791,0.17099392414093],[-0.015235525555909,-0.15456727147102,-0.09254115074873]],[[0.055157825350761,0.027794005349278,-0.061333730816841],[0.017084084451199,-0.054958298802376,-0.11498315632343],[-0.024542273953557,0.019260294735432,-0.030505264177918]],[[0.032833933830261,0.0054987049661577,-0.0017041780520231],[-0.0090811289846897,0.050768528133631,-0.042752671986818],[-0.03386964648962,0.041564229875803,-0.0058717620559037]],[[-0.036907318979502,0.058202181011438,-0.064033858478069],[-0.074944198131561,-0.0031545832753181,-0.036348827183247],[0.091579392552376,0.00062695454107597,-0.069108977913857]],[[0.089934438467026,0.12110465764999,-0.075147867202759],[-0.037717960774899,-0.061997581273317,-0.0023766583763063],[0.014708359725773,0.023136183619499,0.098938278853893]],[[-0.069684334099293,0.066922374069691,0.10754103213549],[-0.022344803437591,0.006831563077867,0.067550309002399],[0.069174207746983,0.090572997927666,-0.0027412232011557]],[[-4.0559832996223e-05,0.008852357044816,-0.023914366960526],[-0.021992476657033,-0.025758035480976,-0.028159372508526],[-0.11367905884981,-0.059296235442162,-0.019103910773993]],[[0.004672599490732,0.0073780831880867,0.024703366681933],[0.087480157613754,0.019248085096478,-0.098192945122719],[0.030835686251521,0.1095035225153,-0.0014643581816927]],[[-0.048721242696047,-0.024528998881578,0.040157683193684],[-0.045672371983528,-0.045314013957977,-0.04985973611474],[-0.038824237883091,-0.00096516532357782,-0.0070655210874975]],[[-0.0058565628714859,0.091029278934002,-0.043705902993679],[-0.024511694908142,0.088967174291611,0.058952108025551],[0.0060975700616837,-0.0074774674139917,0.02557903714478]],[[-0.07030376791954,-0.032406449317932,-0.019064011052251],[-0.054087571799755,-0.041186843067408,-0.029668858274817],[0.046243112534285,-0.035690899938345,-0.046493392437696]],[[0.019281100481749,-0.067717246711254,0.0059069995768368],[-0.05699310451746,0.01428718212992,-0.065012961626053],[-0.18476010859013,0.027092449367046,0.052684143185616]],[[-0.02803585678339,-0.0064211268909276,0.016876339912415],[-0.067250400781631,0.013921902514994,0.14402697980404],[0.0252127610147,0.032473690807819,0.028833152726293]],[[-0.085838444530964,-0.076207019388676,-0.053090579807758],[-0.086170420050621,-0.053124904632568,-0.0026001655496657],[-0.0049591762945056,-0.041855614632368,-0.04848700016737]],[[0.010665379464626,-0.054355259984732,-0.013577082194388],[-0.03940699249506,-0.10410661250353,0.0038610165938735],[-0.0015123311895877,-0.032429162412882,-0.012027267366648]],[[-0.06239040568471,-0.095922544598579,-0.029813401401043],[-0.12562973797321,-0.066442020237446,0.031662341207266],[-0.039073780179024,-0.04181244596839,-0.01636615395546]],[[0.016726354137063,0.075514361262321,0.049015812575817],[0.0129703450948,-0.046504642814398,-0.05172011628747],[-0.10770951211452,-0.026861241087317,-0.00069377076579258]],[[-0.042414575815201,0.1102871671319,0.080580703914165],[-0.011757642030716,-0.0041710147634149,0.033180344849825],[-0.011380481533706,-0.012493225745857,-0.018579475581646]],[[0.071654938161373,-0.036447994410992,-0.01893081702292],[0.03776341676712,-0.024811113253236,-0.08149491250515],[-0.010037896223366,-0.052675563842058,0.067750610411167]],[[-0.11256533116102,-0.0823690071702,-0.0012600020272657],[-0.11425985395908,0.011932856403291,-0.016527594998479],[0.063967913389206,-0.00097944703884423,-0.03986769542098]],[[-0.018086936324835,0.0039364262484014,0.12756726145744],[-0.012134633027017,0.047048728913069,-0.094086222350597],[0.025520158931613,0.082535542547703,-0.029033444821835]],[[-0.031014606356621,-0.0659244582057,-0.043792385607958],[0.086622290313244,0.048644945025444,0.0075804172083735],[0.080776922404766,0.12299743294716,0.14773979783058]],[[-0.021895326673985,-0.050276100635529,0.054194658994675],[0.0011725395452231,-0.030503664165735,0.11168079078197],[-0.018004190176725,-0.017054241150618,0.098406381905079]],[[-0.077994823455811,-0.10439425706863,-0.098987057805061],[-0.012219772674143,-0.06658111512661,-0.070540323853493],[0.011848338879645,0.0095073161646724,-0.062188271433115]],[[0.0080287326127291,0.019134417176247,-0.044701218605042],[0.043497774749994,-0.079259313642979,-0.012084647081792],[0.051810026168823,0.04237999767065,-0.072612725198269]],[[0.071076430380344,0.065666683018208,0.067738123238087],[0.011949839070439,0.05437484011054,-0.10034717619419],[-0.048966582864523,-0.090554624795914,0.0095068132504821]],[[0.002948653884232,-0.062473442405462,0.056021448224783],[0.056566331535578,0.029070256277919,-0.051727872341871],[-0.0032546510919929,-0.0060207219794393,0.0038342415355146]],[[-0.011565438471735,-0.00059660041006282,-0.0071495207957923],[0.10438339412212,0.026793254539371,-0.011851071380079],[0.013969486579299,-0.0011637120041996,0.05223797634244]],[[0.058842942118645,0.027545040473342,-0.028796659782529],[0.095581382513046,-0.014661117456853,-0.036511160433292],[0.014957927167416,-0.10320051014423,0.0064971535466611]],[[-0.0046242084354162,0.091471180319786,0.030986540019512],[0.032537050545216,0.073139235377312,0.044298555701971],[0.052148092538118,0.014831654727459,-0.082186058163643]],[[0.074758648872375,-0.068479187786579,-0.015888243913651],[-0.058045908808708,-0.1296658217907,0.06645218282938],[-0.028718762099743,-0.046622071415186,0.0502097196877]],[[-0.073695190250874,-0.072350271046162,-0.0016241288976744],[-0.026612399145961,-0.021398492157459,0.092090211808681],[-0.026974035426974,-0.0018101681489497,0.0049789561890066]],[[-0.082502752542496,-0.1027901917696,-0.014967851340771],[-0.016183761879802,-0.050863910466433,-0.040053453296423],[0.015566844493151,0.05134679377079,-0.044624261558056]],[[0.018203912302852,-0.070013433694839,-0.010930813848972],[0.0015228252159432,-0.069438762962818,-0.0028910590335727],[-0.011663927696645,0.044584285467863,0.031786903738976]],[[0.0045638708397746,0.079794190824032,0.025681454688311],[-0.054902143776417,-0.018568657338619,0.082981035113335],[-0.0012741667451337,-0.026275396347046,0.033529587090015]],[[0.030455948784947,0.062264077365398,-0.031827259808779],[0.078636914491653,0.12336812913418,-0.044200856238604],[0.061088029295206,0.099652379751205,0.1289616972208]],[[0.037619691342115,-0.0044144270941615,-0.021940497681499],[0.032934177666903,0.014161081053317,0.021992044523358],[0.022472949698567,0.022384783253074,0.01345925219357]],[[-0.011509922333062,-0.038625113666058,-0.034290052950382],[0.027101876214147,0.047173149883747,-0.048290606588125],[0.026570621877909,0.048245668411255,-0.060299217700958]],[[0.083073109388351,0.0096984803676605,0.063631892204285],[0.06431632488966,-0.13067169487476,0.071144878864288],[-0.00069176469696686,-0.13473874330521,0.0049242628738284]],[[-0.017056971788406,-0.047105703502893,-0.044937714934349],[0.01472647394985,0.00093804992502555,-0.038979511708021],[0.009199452586472,-0.0055839885026217,-0.049441665410995]],[[0.0039521846920252,0.085898473858833,-0.043562296777964],[0.015848215669394,0.0066303564235568,-0.057077016681433],[-0.092923559248447,0.0082959393039346,0.0043434463441372]],[[-0.071745082736015,-0.040827170014381,0.012596299871802],[0.065337710082531,0.052626226097345,0.047937322407961],[-0.047792863100767,-0.047750726342201,0.12777948379517]],[[-0.036613889038563,0.015666153281927,-0.088474161922932],[-0.0099876401945949,0.017304563894868,-0.050667218863964],[0.041110780090094,0.050645180046558,0.039325673133135]],[[-0.021099073812366,-0.010289566591382,0.0009515158017166],[0.012591950595379,-0.0059689381159842,-0.0093092834576964],[0.060037404298782,0.043479591608047,0.00078909430885687]],[[-0.015982016921043,-0.012133912183344,0.048991098999977],[0.10277780890465,0.0039815222844481,0.031340416520834],[0.01198816113174,0.023393420502543,0.075782470405102]],[[-0.05027474462986,0.050759799778461,-0.063354924321175],[-0.032460577785969,-0.02746263705194,-0.050480030477047],[-0.087449833750725,0.0056919464841485,-0.0069463304243982]],[[-0.012374879792333,-0.040778890252113,0.026348439976573],[-0.043014507740736,-0.022044122219086,0.024197524413466],[-0.036985818296671,0.033114831894636,0.057727444916964]],[[-0.054012041538954,-0.033090945333242,-0.041416864842176],[-0.088416434824467,-0.054159168154001,-0.03681567683816],[0.063554599881172,-0.035068966448307,-0.10724681615829]],[[0.014641661196947,-0.083661019802094,0.077979728579521],[-0.0065907682292163,0.021980106830597,0.058624479919672],[-0.02846603654325,-0.077769443392754,-0.030557433143258]],[[0.020128011703491,0.061720170080662,0.0040628057904541],[-0.1052457690239,0.026931136846542,0.090599447488785],[0.032590411603451,0.013743385672569,-0.028793012723327]],[[-0.002776738256216,0.0016873306594789,-0.013960104435682],[0.019304439425468,0.061160180717707,0.075133286416531],[0.079469926655293,0.11484342068434,0.050044313073158]],[[-0.067434757947922,-0.032417591661215,0.045062899589539],[-0.0098098451271653,0.11040686815977,-0.032990138977766],[0.021551724523306,0.057053074240685,0.066055960953236]],[[-0.044613771140575,0.067646443843842,-0.058274801820517],[0.085414685308933,-0.0038915800396353,-0.019984986633062],[-0.033732406795025,0.071267336606979,-0.013389102183282]],[[-0.0039045496378094,0.017560424283147,-0.043821401894093],[0.036508906632662,0.033167887479067,-7.7451317338273e-05],[0.060343638062477,-0.078165419399738,0.048410028219223]],[[0.074727118015289,-0.06189838051796,0.11131682991982],[-0.032346416264772,0.10289763659239,0.047518484294415],[0.051749732345343,0.068288795650005,-0.01968009956181]],[[-0.054188054054976,0.024027882143855,-0.031620569527149],[-0.031525287777185,0.034061588346958,-0.098064094781876],[-0.0050669871270657,0.039826344698668,0.059674311429262]],[[0.021838271990418,-0.040172301232815,-0.018656570464373],[-0.026362035423517,-0.050377327948809,0.055168937891722],[-0.12741883099079,-0.15793666243553,-0.00014711514813825]],[[-0.0054408675059676,0.001630237326026,-0.04648844897747],[0.040634643286467,0.013435104861856,0.0069061974063516],[-0.027043795213103,-0.039804674685001,-0.02779676951468]]],[[[0.016932383179665,-0.042374044656754,-0.068496227264404],[0.011494047939777,-0.044232606887817,0.014781658537686],[0.066044539213181,-0.058068245649338,-0.031841143965721]],[[-0.0046907449141145,-0.014632344245911,0.011265154927969],[0.074115864932537,0.042662117630243,0.0066599561832845],[0.0061366399750113,-0.0098992856219411,-0.065661668777466]],[[-0.074187479913235,0.066736206412315,0.030216056853533],[0.14990100264549,-0.048321478068829,0.0051030023023486],[0.012710731476545,-0.065156124532223,0.050485391169786]],[[-0.0090298727154732,0.0078633297234774,0.07609611004591],[0.038026854395866,-0.044651344418526,0.039172440767288],[0.095653183758259,-0.072277054190636,-0.025045156478882]],[[-0.014568998478353,0.030267478898168,0.087855093181133],[-0.020314201712608,-0.010983757674694,-0.050571791827679],[0.064225092530251,0.013743934221566,0.010164561681449]],[[0.041538316756487,-0.0038525685667992,-0.0087604960426688],[0.035170245915651,0.012330478988588,0.046176545321941],[0.014547327533364,0.021754253655672,0.015160279348493]],[[-0.031509678810835,0.010920373722911,-0.025727856904268],[9.1534209786914e-05,-0.0097437556833029,-0.021014602854848],[0.0037053902633488,0.014996028505266,-0.024555122479796]],[[-0.038647964596748,-0.012114871293306,-0.00083674764027819],[-0.042261332273483,0.010509910061955,0.070087105035782],[-0.029171101748943,-0.063345476984978,-0.044052820652723]],[[-0.048017855733633,0.033314809203148,0.024918183684349],[0.032579876482487,0.026976354420185,0.082976490259171],[-0.01482317969203,0.044729739427567,0.05123258382082]],[[-0.073547028005123,-0.041617605835199,-0.0086309248581529],[-0.070379830896854,0.040699206292629,0.10038420557976],[0.015091302804649,0.00063554994994774,-0.075932867825031]],[[0.048508107662201,0.031373489648104,-0.012871650978923],[-0.045548167079687,-0.1234985217452,-0.045118324458599],[-0.09409111738205,0.0068117091432214,-0.023716378957033]],[[-0.048838082700968,0.019892623648047,0.10640089213848],[0.0372059866786,0.073720887303352,-0.033951207995415],[-0.011128426529467,-0.042784415185452,0.1223054677248]],[[-0.0080536874011159,0.0079987952485681,0.068660907447338],[0.029347950592637,0.019202286377549,-0.012412159703672],[-0.013646624051034,-0.029140358790755,-0.089994177222252]],[[-0.044469732791185,-0.0065072844736278,-0.14442555606365],[0.095109485089779,-0.048433814197779,-0.051234424114227],[0.01256409380585,-0.02189471013844,-0.15362611413002]],[[0.086471490561962,0.043517578393221,0.050264354795218],[-0.10814704746008,-0.12449625134468,0.038531973958015],[0.0083732744678855,-0.083310686051846,-0.0051871538162231]],[[0.0021586227230728,-0.081470541656017,0.0026622987352312],[-0.015096055343747,-0.052891548722982,0.05729903653264],[-0.015670342370868,-0.019646732136607,-0.038571335375309]],[[0.035412777215242,0.036388993263245,0.029407167807221],[-0.0068177748471498,0.012844079174101,0.023681463673711],[0.099844112992287,-0.0087274191901088,0.080016702413559]],[[-0.045364324003458,-0.061199232935905,-0.047042697668076],[-0.032194845378399,-0.019402394071221,-0.013017577119172],[0.0071613974869251,0.030596893280745,-0.011835149489343]],[[-0.035153459757566,0.054590422660112,-0.078205123543739],[0.045156873762608,-0.044577479362488,-0.047762114554644],[0.008574309758842,0.021370429545641,0.056741114705801]],[[0.041662119328976,0.064160533249378,-0.029678761959076],[0.022191397845745,0.027237705886364,-0.1320606470108],[0.034030012786388,0.068096041679382,-0.092662870883942]],[[0.035041447728872,-0.027351776137948,0.027439147233963],[-0.026968961581588,-0.042487040162086,-0.062064446508884],[-0.0085461745038629,0.060777101665735,-0.025413107126951]],[[0.01339137647301,-0.0015155989676714,0.036722745746374],[0.022066028788686,0.11592708528042,0.091123536229134],[-0.15792912244797,0.034038078039885,-0.025022024288774]],[[0.1244580373168,0.019953286275268,-0.031442109495401],[-0.020072953775525,-0.038633298128843,-0.05944075807929],[-0.052426848560572,-0.016805447638035,-0.00027628263342194]],[[0.033412221819162,0.1290545463562,-0.025329392403364],[-0.070185802876949,0.020386964082718,-0.011803444474936],[0.027669593691826,-0.022557543590665,0.015824254602194]],[[0.095856383442879,-0.040726635605097,-0.03744463250041],[-0.026584668084979,0.028503704816103,-0.03992236033082],[0.14670664072037,-0.076587751507759,-0.063106670975685]],[[0.048784106969833,-0.016744002699852,-0.0071854633279145],[0.082406632602215,0.031175332143903,0.015351438894868],[-0.030464626848698,0.0074832523241639,0.030518244951963]],[[0.04091827198863,-0.029402125626802,-0.0049982350319624],[-0.050404958426952,-0.0077926469966769,0.067650564014912],[-0.17064897716045,0.011418484151363,0.0034839811269194]],[[-0.031762026250362,0.029834490269423,0.10727636516094],[0.014948467724025,-0.037856213748455,-0.017686434090137],[0.085863836109638,0.01037220004946,-0.088428311049938]],[[0.016716362908483,0.058249656111002,-0.013376153074205],[-0.0040978849865496,-0.09525790810585,-0.041216026991606],[-0.035969167947769,0.048926260322332,0.021454138681293]],[[-0.087535664439201,-0.024352874606848,0.010033838450909],[-0.054224632680416,0.023189069703221,0.04754601791501],[-0.021074123680592,-0.044011373072863,0.041804164648056]],[[-0.034730449318886,0.035005085170269,-0.1265576928854],[0.028968494385481,0.014440823346376,-0.028763486072421],[-0.070718072354794,-0.11234177649021,0.10633279383183]],[[-0.029177736490965,0.0019324643071741,-0.046182665973902],[-0.0034228565637022,-0.12159640341997,-0.087473690509796],[0.046158019453287,-0.031472060829401,0.069738008081913]],[[-0.038711488246918,0.014423215761781,0.01860967092216],[0.013865759596229,-0.0072254096157849,0.0065459623001516],[0.046517819166183,-0.066336400806904,0.054184295237064]],[[0.018591523170471,0.038498587906361,0.012329147197306],[0.012875654734671,-0.010102015919983,0.023732928559184],[-0.069308415055275,-0.009318052791059,-0.057735782116652]],[[0.039376210421324,0.0019349080976099,-0.024425335228443],[-0.028550012037158,0.038123562932014,-0.017344577237964],[-0.033240757882595,0.018421370536089,0.070018321275711]],[[0.078762948513031,0.025910042226315,0.0052428585477173],[-0.030698139220476,-0.049840502440929,0.07735588401556],[-0.1436058729887,0.0073937466368079,0.0088462280109525]],[[0.0036650262773037,-0.076213344931602,-0.01827765442431],[0.033266458660364,0.029527131468058,-0.080552943050861],[-0.035763453692198,-0.040575347840786,-0.072091273963451]],[[-0.10365246236324,-0.0034949334803969,-0.065518297255039],[-0.040527071803808,0.018636038526893,-0.059214390814304],[-0.015536651946604,0.013141087256372,-0.060072191059589]],[[0.030279336497188,-0.0063287834636867,-0.0058466610498726],[-0.0007224160945043,-0.044405680149794,0.0080870669335127],[-0.036886002868414,-0.033072885125875,-0.033393926918507]],[[-0.037301927804947,-0.02979969792068,-0.040752731263638],[0.032189998775721,0.060659620910883,-0.019381025806069],[0.018923001363873,0.029174767434597,-0.021974720060825]],[[0.050201747566462,-0.06435190141201,-0.028812013566494],[0.023618567734957,-0.026355074718595,-0.10893852263689],[0.046086490154266,0.034766718745232,-0.10400225967169]],[[0.025214072316885,0.0087408581748605,-0.067572712898254],[-0.012361238710582,0.069734089076519,0.011937556788325],[-0.073050789535046,0.056041453033686,-0.11494366079569]],[[0.071358703076839,0.030669087544084,0.087491892278194],[-0.021098542958498,-0.022313648834825,0.018126761540771],[-0.0011904147686437,-0.04621583968401,-0.012814270332456]],[[-0.060459919273853,-0.04935709387064,-0.010594381019473],[-0.049980696290731,-0.048119984567165,-0.020998263731599],[-0.064652241766453,0.036520522087812,0.030093057081103]],[[0.047251638025045,0.0012629933189601,0.042104881256819],[-0.020623303949833,0.0017554368823767,-0.0025960982311517],[0.015123761259019,0.063100270926952,-0.023216722533107]],[[0.1076622530818,-0.047300331294537,0.014065477065742],[-0.016033908352256,0.0069650197401643,-0.017179887741804],[0.03377616032958,-0.0044780876487494,0.052961427718401]],[[-0.041470848023891,-0.0019977577030659,-0.0048426538705826],[-0.13845884799957,0.0056682047434151,0.0020803897641599],[-0.023852322250605,0.079974845051765,-0.0023135649971664]],[[-0.018213225528598,-0.0068886457011104,0.056290406733751],[0.010825744830072,0.1022115200758,-0.045357719063759],[-0.075584687292576,-0.015905292704701,-0.029182702302933]],[[0.0085843224078417,0.051303461194038,0.11179969459772],[-0.022245533764362,-0.026313081383705,0.0048695746809244],[0.028691936284304,-0.046926647424698,0.077548161149025]],[[-0.051076523959637,0.031314376741648,0.071330986917019],[-0.043623864650726,0.030063135549426,0.025318993255496],[0.0090548666194081,0.0017215494299307,-0.010877984575927]],[[-0.090811781585217,0.078680358827114,-0.0039256499148905],[0.070969253778458,-0.042490988969803,0.057671632617712],[0.11054928600788,-0.035704106092453,0.0056767091155052]],[[0.075657360255718,0.095562487840652,0.038085293024778],[0.065490148961544,0.013512560166419,-0.038072869181633],[-0.074509754776955,-0.055067948997021,-0.029881872236729]],[[0.0065348106436431,-0.051672581583261,-0.017238546162844],[-0.056205820292234,-0.041163414716721,-0.06838933378458],[0.038549952208996,-0.016283681616187,-0.0091554149985313]],[[-0.027799151837826,-0.043779402971268,0.012780530378222],[0.0056561580859125,0.086828462779522,-0.015519126318395],[0.073184795677662,0.075612924993038,0.0089310007169843]],[[0.019556917250156,-0.033367201685905,-0.032335110008717],[-0.043245159089565,-0.015590939670801,-0.012409417890012],[0.039273031055927,0.11461941897869,-0.032325033098459]],[[-0.094202853739262,-0.10646694153547,0.062281858175993],[-0.034002851694822,0.11003053933382,-0.0087656257674098],[0.074938111007214,0.11731527745724,-0.037699095904827]],[[-0.00022046844242141,0.012162902392447,-0.0015586944064125],[-0.024809831753373,-0.041973643004894,0.023020226508379],[-0.052188117057085,-0.015716530382633,0.017487475648522]],[[0.042178202420473,-0.013844053260982,-0.0065357028506696],[0.042115353047848,0.05928236246109,0.0013838618760929],[0.062846027314663,-0.072916634380817,0.049464654177427]],[[-0.0010968664428219,0.094698339700699,0.03317553922534],[0.024270500987768,-0.055017374455929,-0.026070365682244],[-0.02626303397119,-0.032987512648106,-0.038446694612503]],[[-0.038239601999521,-0.016756365075707,0.0059456001035869],[-0.0493627153337,-0.030386289581656,0.0024202410131693],[-0.015302295796573,-0.089033462107182,0.010264461860061]],[[0.054039735347033,0.039262913167477,-0.019215185195208],[-0.012096421793103,0.0019473320571706,0.020983163267374],[0.015956573188305,-0.0095703806728125,-0.061346791684628]],[[0.018792251124978,-0.097406610846519,0.026211209595203],[-0.080694310367107,0.011786473914981,0.033661186695099],[0.12560050189495,0.098018862307072,-0.032825890928507]],[[0.014413273893297,0.093438044190407,0.057688068598509],[-0.12101855129004,-0.051371403038502,0.0092109562829137],[0.031249204650521,-0.043881017714739,-0.11277088522911]],[[0.024479093030095,0.01490655913949,-0.093447484076023],[0.012206600047648,0.095667608082294,-0.035284027457237],[-0.020659504458308,0.011679528281093,0.0033872167114168]],[[0.0066514145582914,-0.0039784638211131,-0.012537618167698],[0.0082701435312629,0.020974820479751,0.017911618575454],[0.01987386867404,0.14589181542397,0.018443997949362]],[[0.0041214837692678,0.13902960717678,-0.072466664016247],[0.084984473884106,0.038108561187983,-0.091526120901108],[0.042547028511763,-0.021623691543937,-0.010139194317162]],[[-0.10282085835934,-0.077846720814705,0.12536919116974],[-0.013936565257609,0.079904958605766,0.1015205308795],[0.0041285483166575,-0.016330767422915,-0.051045954227448]],[[0.061091087758541,0.011698751710355,-0.046207372099161],[0.01818017102778,0.11796314269304,0.053014650940895],[-0.050061997026205,-0.004533096216619,0.05464144423604]],[[-0.04208717867732,-0.048408057540655,0.050656780600548],[-0.06563962996006,0.032450344413519,0.023200385272503],[-0.0024753715842962,0.018638618290424,-0.02973810210824]],[[0.032306708395481,0.012629210017622,0.044179849326611],[0.056026242673397,-0.09397915750742,-0.01129190903157],[0.072362877428532,-0.074628122150898,-0.0068578030914068]],[[0.093027882277966,-0.051280498504639,0.020853888243437],[0.031624644994736,0.010766380466521,0.0074803787283599],[0.01842968352139,0.019467040896416,0.023254940286279]],[[0.012932763434947,-0.13096237182617,0.014856455847621],[-0.026342688128352,-0.029354212805629,0.046623237431049],[-0.023965053260326,0.095406331121922,0.02073391713202]],[[0.023415585979819,0.079059392213821,0.15312291681767],[0.097992449998856,-0.036938529461622,0.033991668373346],[-0.020106825977564,-0.097014993429184,0.073002316057682]],[[-0.018354833126068,-0.0055333846248686,-0.017240270972252],[0.075858637690544,-0.09065855294466,-0.016986839473248],[-0.076270841062069,-0.03772696480155,-0.074086301028728]],[[0.04744166135788,-0.028499351814389,-0.070862606167793],[0.04416885972023,0.0074000819586217,-0.21411389112473],[0.14447435736656,0.099348098039627,0.087435014545918]],[[-0.0041627124883235,0.012960334308445,0.057792879641056],[-0.024047672748566,0.022174548357725,0.025546053424478],[0.014475817792118,0.071392133831978,0.039066322147846]],[[-0.11789464205503,0.033917397260666,0.068673186004162],[0.011571726761758,0.042581994086504,0.055061895400286],[-0.031671512871981,-0.036334689706564,-0.052113503217697]],[[0.11189745366573,-0.0070355567149818,-0.0088842734694481],[0.0012980853207409,0.011700801551342,0.019765106961131],[-0.006917885504663,-0.036091566085815,-0.10188043117523]],[[-0.095435813069344,-0.079397097229958,0.094662293791771],[-0.001408388838172,-0.009941547177732,0.013432431966066],[-0.033730935305357,0.003191010793671,0.026927893981338]],[[0.00063811324071139,-0.12588515877724,-0.02407381683588],[0.050596091896296,0.077191598713398,-0.062376417219639],[-0.071721322834492,0.056935217231512,-0.027759689837694]],[[0.029048267751932,-0.012982130981982,-0.057253044098616],[-0.00073567626532167,-0.084772221744061,-0.022624453529716],[0.10971254110336,-0.020118063315749,-0.026873707771301]],[[0.057733342051506,0.068241007626057,0.03379288315773],[0.026781994849443,-0.07210698723793,-0.047996111214161],[0.038473002612591,0.075588174164295,0.059917986392975]],[[-0.0273855663836,-0.024245815351605,-0.037210498005152],[0.0092372167855501,0.020079277455807,-0.068729221820831],[0.041109185665846,-0.06082309037447,-0.15576110780239]],[[-0.02663179859519,0.023683300241828,-0.010412564501166],[0.012790064327419,0.014604263938963,0.027052624151111],[0.10573566704988,-0.058844715356827,-0.008376625366509]],[[0.0036938714329153,-0.032337836921215,0.086065888404846],[-0.069438926875591,-0.01992461271584,0.0057094413787127],[-0.087635919451714,-0.10429941862822,-0.03108412399888]],[[0.033535111695528,-0.044405542314053,0.0097498586401343],[0.11984375864267,-0.015459208749235,-0.059096813201904],[0.063043236732483,0.016148952767253,0.0022273166105151]],[[0.051026348024607,-0.078131720423698,-0.0010443397331983],[-0.023704454302788,0.051362525671721,-0.053175508975983],[-0.052924312651157,0.032907657325268,0.10389249771833]],[[-0.074900984764099,-0.0035770854447037,0.03955977410078],[0.012213997542858,0.023548705503345,-0.010469188913703],[-0.060394745320082,-0.08018521219492,-0.0080564459785819]],[[-0.030398655682802,-0.037124127149582,-0.082573853433132],[0.047247249633074,0.0019820183515549,-0.031452108174562],[0.091490097343922,0.020357461646199,-0.0179613083601]],[[0.034049987792969,0.039877265691757,-0.10086207836866],[-0.016180947422981,-0.011892299167812,0.0023432855959982],[0.033957447856665,0.12013725191355,0.088372029364109]],[[0.016649257391691,-0.010777085088193,-0.079481616616249],[0.049724496901035,-0.032164290547371,0.012408116832376],[-0.047208268195391,-0.034161794930696,0.027759961783886]],[[-0.031026966869831,-0.026607239618897,0.01458771713078],[-0.031804259866476,0.0082235801964998,0.0072198058478534],[-0.024455254897475,0.060603592544794,-0.048896044492722]],[[0.081721633672714,-0.10017221421003,0.075552746653557],[-0.10065921396017,-0.054412543773651,0.027858208864927],[-0.031776867806911,-0.047570563852787,0.061044167727232]],[[0.017617600038648,-0.11577907204628,-0.12457007914782],[0.0084890872240067,-0.00022816602722742,0.019659344106913],[0.015452799387276,0.032957762479782,0.047908503562212]],[[-0.046524699777365,0.055942267179489,0.0033524446189404],[0.0030593546107411,-0.038534566760063,-0.010481453500688],[-0.051171414554119,0.05547209084034,-0.055722665041685]],[[0.0091803334653378,-0.019476911053061,-0.08157504349947],[-0.069854252040386,-0.022773530334234,0.055644813925028],[-0.00367620610632,-0.00058283057296649,-0.020594418048859]],[[-0.0022962100338191,0.05601704865694,0.043673742562532],[0.084420122206211,0.018508199602365,0.087448738515377],[0.027784651145339,0.0024488545022905,0.019184054806828]],[[-0.065203197300434,0.09181485325098,0.11559648066759],[0.046990431845188,-0.08793018758297,-0.026281824335456],[0.01265530847013,-0.018272545188665,-0.0014898756053299]],[[0.18218937516212,-0.076598040759563,-0.029491992667317],[-0.0056672096252441,-0.017527030780911,0.060535702854395],[0.12905417382717,-0.099138475954533,0.027627343311906]],[[-0.03248330950737,-0.041978050023317,-0.010159364901483],[-0.015396142378449,-0.067397095263004,-0.038520768284798],[-0.013850976713002,-0.13570162653923,-0.0056968848221004]],[[0.033362522721291,0.057737551629543,-0.0075030592270195],[0.073955468833447,-0.022222578525543,-0.050615999847651],[0.15392462909222,-0.052561640739441,0.046773012727499]],[[0.10302665829659,-0.024759164080024,0.009546029381454],[-0.0021163108758628,-0.040846839547157,-0.090868592262268],[-0.017767867073417,-0.056330546736717,0.026689844205976]],[[-0.0011512691853568,0.048875205218792,0.10553482174873],[0.046019166707993,-0.062943778932095,-0.059376250952482],[0.00177417404484,-0.038260266184807,-0.032829605042934]],[[-0.034801207482815,-0.001468142378144,0.016553040593863],[-0.11426232010126,0.01231084484607,0.05288477614522],[-0.047574687749147,0.081855647265911,0.093038611114025]],[[-0.084812834858894,-0.0032213262747973,-0.018088430166245],[-0.033012710511684,0.043036170303822,-0.032422438263893],[-0.049102958291769,-8.369333227165e-05,-0.01945093460381]],[[-0.10877276957035,0.047521375119686,-0.092958346009254],[0.031593788415194,0.073394820094109,-0.044318880885839],[-0.016194706782699,-0.0075040110386908,0.018681142479181]],[[-0.000458928901935,-0.016429765149951,-0.034732647240162],[-0.043880622833967,-0.10474393516779,-0.025140859186649],[-0.0018015129026026,-0.0016380797605962,0.029832655563951]],[[0.060863498598337,0.008094004355371,-0.01513534784317],[-0.064309373497963,-0.055689916014671,0.0088924262672663],[0.013432657346129,-0.048911295831203,-0.01739040389657]],[[0.0070422454737127,0.0034594309981912,-0.13521069288254],[0.045488651841879,0.032329082489014,0.059754531830549],[0.037853244692087,0.040388166904449,-0.080656342208385]],[[0.011465498246253,-0.060302197933197,0.024373510852456],[-0.08714185655117,-0.085430905222893,-0.059257015585899],[0.089534468948841,-0.0074728541076183,0.03497926518321]],[[0.055319610983133,0.050919130444527,0.070361413061619],[0.069366924464703,-0.076279781758785,-0.20024268329144],[0.01180771086365,-0.081396259367466,-0.1931236833334]],[[0.029675396159291,-0.011995230801404,0.017466969788074],[0.019533632323146,0.014260065741837,-0.0030388387385756],[0.032351922243834,0.050970535725355,-0.015450890175998]],[[0.035101160407066,-0.027353530749679,-0.03045261092484],[0.015239771455526,-0.098501965403557,-0.096013844013214],[0.025751661509275,0.0068888193927705,-0.14111794531345]],[[0.024514596909285,0.0029073127079755,0.01708772778511],[-0.066391490399837,0.0040883747860789,0.060154944658279],[0.091688729822636,0.080672137439251,0.010705016553402]],[[-0.19579043984413,0.045931611210108,0.057445831596851],[-0.15818113088608,0.04853392764926,0.054568190127611],[-0.029334591701627,0.097986958920956,0.079749405384064]],[[-0.054432023316622,0.05243356525898,0.08775070309639],[-0.12954485416412,0.042214058339596,-0.044490542262793],[-0.090149812400341,-0.0072722160257399,0.0053931777365506]],[[-0.011193764396012,-0.045294892042875,-0.018760750070214],[-0.013063143007457,-0.0035393345169723,-0.028406763449311],[-0.042039014399052,-0.020931320264935,0.035386927425861]],[[-0.022497544065118,0.033888280391693,-0.00022854363487568],[-0.055552009493113,-0.017122756689787,-0.014344647526741],[-0.029203310608864,0.087187677621841,-0.013780818320811]],[[-0.028912961483002,-0.025076605379581,-0.045506976544857],[-0.077236421406269,-0.0049593923613429,-0.010839567519724],[-0.019103093072772,-0.0010659191757441,-0.067888647317886]],[[-0.050507120788097,-0.017099784687161,0.053755771368742],[-0.0036303917877376,0.0010688982438296,-0.13185219466686],[0.010845825076103,0.062004830688238,0.13869366049767]],[[-0.071139626204967,-0.072700709104538,0.027209466323256],[0.039576452225447,0.0065366066992283,-0.086688756942749],[0.009946471080184,-0.035211350768805,-0.037885375320911]],[[0.02419675886631,0.039569478482008,-0.038653820753098],[0.080991148948669,-0.024680610746145,-0.098762802779675],[0.063132479786873,-0.0016022461932153,-0.14743611216545]],[[0.079658664762974,0.032360650599003,-0.013954719528556],[0.07471752166748,-0.09810172021389,-0.0069476864300668],[0.11362856626511,-0.056454252451658,0.064199484884739]],[[-0.064052976667881,-0.053012389689684,-0.0069306907244027],[-0.0059093805029988,0.023789890110493,0.0028959994670004],[0.0037432909011841,-0.038172371685505,-0.072656199336052]],[[-0.036820665001869,0.10352290421724,-0.16059593856335],[0.06081747636199,-0.10747154802084,-0.098130367696285],[0.14966194331646,-0.070435926318169,-0.017091358080506]],[[-0.018125837668777,0.043434660881758,-0.016593897715211],[-0.049528375267982,0.040065687149763,0.0031295143999159],[-0.030381638556719,-0.031589392572641,-0.070945076644421]],[[0.0033307187259197,-0.10412795096636,0.018394494429231],[0.064195521175861,-0.021891860291362,0.067637324333191],[0.057643827050924,-0.1247836202383,-0.039954960346222]],[[-0.11235269904137,0.036938484758139,0.037546463310719],[0.051804881542921,0.033285774290562,0.062308952212334],[-0.073687024414539,0.0075965179130435,0.0068636890500784]]],[[[0.05978549271822,-0.091872490942478,-0.066060230135918],[-0.020745299756527,0.073281772434711,0.22297266125679],[0.12127216160297,0.10877576470375,0.24893465638161]],[[0.0070134913548827,-0.070267572999001,0.078369095921516],[0.05838817358017,-0.015460029244423,-0.010513696819544],[-0.11342038959265,-0.089651085436344,-0.083596035838127]],[[0.0032747839577496,0.1221890822053,-0.25127041339874],[-0.020782632753253,0.091851621866226,-0.10111336410046],[-0.011215160600841,-0.057127747684717,0.035062793642282]],[[0.094701059162617,0.010851807892323,-0.027223065495491],[-0.12907938659191,-0.023693917319179,0.016509659588337],[-0.16896513104439,-0.10592611134052,-0.023663070052862]],[[-0.15285131335258,-0.053517512977123,0.034070923924446],[0.0055635496973991,-0.0085010472685099,0.084905952215195],[-0.053712017834187,-0.05319245159626,0.13420683145523]],[[-0.035509523004293,-0.04576625674963,0.0083492090925574],[-0.022022726014256,0.018287258222699,-0.026418874040246],[-0.011009693145752,0.031999237835407,-0.12774778902531]],[[0.049150664359331,0.034669972956181,0.0020262526813895],[0.099434182047844,0.0034852635581046,0.0091323647648096],[-0.021899785846472,-0.094358682632446,-0.16593547165394]],[[0.063569612801075,0.11595376580954,0.018246863037348],[0.051916234195232,0.056151825934649,0.029033970087767],[0.029283680021763,-0.061701897531748,0.0232022870332]],[[-0.075021281838417,-0.13581797480583,0.15200564265251],[-0.025354728102684,-0.016481203958392,0.19091735780239],[-0.075321011245251,0.036819979548454,-0.24705989658833]],[[-0.08426932990551,-0.16862271726131,-0.11417143791914],[-0.11976061761379,-0.012272963300347,-0.076454147696495],[-0.032030116766691,-0.23507691919804,-0.11870546638966]],[[0.036289751529694,-0.066311895847321,0.017264043912292],[-0.05049766972661,0.07278735935688,-0.14318795502186],[-0.0011829663999379,0.068441793322563,-0.0051365504041314]],[[-0.16177609562874,-0.25904059410095,-0.18633392453194],[-0.0031332753133029,0.08415163308382,0.025882372632623],[-0.025101190432906,0.16616961359978,-0.0063662333413959]],[[0.011991541832685,-0.017655247822404,0.26057195663452],[-0.21793211996555,-0.13379672169685,-0.00068954640300944],[0.018761172890663,0.11159187555313,0.070810690522194]],[[-0.1199024617672,-0.22694461047649,-0.10672323405743],[-0.15362948179245,-0.19351224601269,-0.079856067895889],[-0.016950899735093,-0.077166445553303,-0.050843212753534]],[[0.11401417851448,0.043704938143492,0.087651461362839],[-0.24998272955418,-0.043904595077038,-0.14103356003761],[-0.091152630746365,0.057211380451918,0.060057695955038]],[[-0.039170801639557,-0.15710157155991,-0.09509464353323],[0.0085123823955655,-0.00069992995122448,0.00036709167761728],[-0.088899649679661,-0.062909133732319,-0.10970339179039]],[[0.12173584103584,-0.087021954357624,-0.20851224660873],[-0.12725552916527,-0.14691969752312,0.15105330944061],[0.085846699774265,0.045999057590961,0.043443527072668]],[[0.17710089683533,0.0043949303217232,0.083928368985653],[0.015309697017074,0.018467729911208,0.08951710909605],[0.10284286737442,0.051097374409437,0.044061440974474]],[[0.028931284323335,-0.13901974260807,-0.073189347982407],[-0.029790017753839,-0.16174766421318,0.013198805041611],[0.11676808446646,0.059032145887613,0.21569445729256]],[[-0.083510585129261,-0.19604125618935,-0.15139865875244],[0.054074391722679,0.089441776275635,-0.089981757104397],[0.0032323179766536,-0.1334652453661,-0.15832053124905]],[[-0.17946691811085,-0.052654817700386,0.026641741394997],[-0.043596632778645,-0.16927661001682,-0.059271026402712],[-0.17699383199215,-0.11524668335915,-0.16287043690681]],[[-0.10794851928949,0.0095611438155174,0.11121132969856],[-0.049525044858456,0.081899046897888,0.11929804086685],[-0.20751240849495,-0.11349509656429,-0.14185656607151]],[[-0.042867310345173,-0.010583684779704,0.071886852383614],[-0.0092291198670864,0.0037928188685328,0.02214365452528],[-0.13764941692352,-0.055577423423529,-0.071070127189159]],[[0.11209959536791,0.051649618893862,0.027107998728752],[-0.031878560781479,0.049086727201939,-0.13584876060486],[-0.018280807882547,-0.20843347907066,-0.040020726621151]],[[0.10288367420435,-0.021456522867084,0.011254113167524],[-0.09493301063776,-0.0207664296031,0.078149922192097],[0.015938868746161,0.017511999234557,0.033528484404087]],[[0.18255285918713,0.015604082494974,-0.023683752864599],[0.12510092556477,0.057424981147051,0.006783508695662],[-0.080148369073868,-0.21191492676735,0.15124328434467]],[[-0.036031670868397,0.11463309079409,0.14709550142288],[-0.017284713685513,0.05167406052351,0.032787512987852],[-0.023630630224943,-0.0040361387655139,-0.0057520014233887]],[[0.015509601682425,-0.11022040992975,0.022210825234652],[0.064492031931877,0.044000945985317,-0.015300059691072],[-0.016820233315229,0.15871270000935,0.15235096216202]],[[-0.090499773621559,-0.095955923199654,0.027068141847849],[-0.033404648303986,-0.18335796892643,-0.093242712318897],[-0.081510931253433,0.05689462274313,-0.028815533965826]],[[0.056729163974524,0.084531404078007,0.071711502969265],[-0.1314505636692,0.073995269834995,0.01893557049334],[0.0023941595572978,0.036415744572878,-0.012600116431713]],[[-0.0407983250916,0.074146084487438,-0.11187718808651],[-0.12507680058479,-0.012675560079515,-0.12884798645973],[0.036168482154608,-0.077013425529003,0.095174372196198]],[[-0.11133043467999,0.024261524900794,-0.10784465074539],[0.071599282324314,-0.028497589752078,-0.047970902174711],[-0.0014185906620696,0.018142694607377,-0.10174705088139]],[[-0.10335882753134,0.085973016917706,0.085036419332027],[-0.095901980996132,-0.041238877922297,0.15997475385666],[0.098718583583832,0.017396435141563,-0.040223453193903]],[[-0.031762134283781,-0.021754005923867,-0.02907538972795],[-0.19825823605061,-0.11905492842197,-0.013311538845301],[0.022641589865088,-0.019672753289342,0.090602979063988]],[[-0.0056592323817313,-0.039120458066463,0.11151238530874],[-0.039504311978817,-0.019286099821329,0.0055112917907536],[-0.11188815534115,-0.089817240834236,-0.14703190326691]],[[-0.11775746196508,0.079558812081814,0.084162421524525],[0.044234741479158,0.022015491500497,0.071025006473064],[-0.1191518753767,-0.16199287772179,-0.093554638326168]],[[0.2048315256834,0.090623132884502,0.054652389138937],[0.086148872971535,-0.016728494316339,-0.038609568029642],[-0.025915140286088,0.038799986243248,0.12479469180107]],[[0.036368940025568,-0.091518469154835,0.04270027577877],[-0.035389594733715,-0.15048950910568,-0.056857839226723],[0.10482061654329,0.0041299955919385,0.018274620175362]],[[-0.046666976064444,-0.029941126704216,-0.037520840764046],[0.0076100020669401,0.068523876368999,-0.012624969705939],[0.0043520103208721,0.037892065942287,-0.13864500820637]],[[0.058871686458588,0.019897257909179,0.030265105888247],[0.13033702969551,0.014028969220817,-0.11088812351227],[-0.030582621693611,-0.034126091748476,0.031834460794926]],[[-0.058475960046053,-0.062284655869007,0.053620286285877],[0.22718331217766,0.081512778997421,-0.12527467310429],[0.070507533848286,-0.11447930335999,-0.096702121198177]],[[0.12723688781261,0.27407816052437,0.012482019141316],[0.042853411287069,0.077824890613556,-0.11558652669191],[-0.011070309206843,0.090131156146526,-0.020872494205832]],[[0.032711118459702,-0.010953080840409,-0.1217008382082],[0.059701893478632,0.034115705639124,0.028723610565066],[-0.041260674595833,-0.17656172811985,-0.016180070117116]],[[0.059401553124189,0.024787481874228,-0.038568671792746],[-0.085322216153145,-0.13193678855896,0.064336307346821],[0.022863836959004,0.016370587050915,0.091002255678177]],[[-0.098397560417652,-0.065110825002193,-0.069666251540184],[0.0079050743952394,0.045619253069162,0.11626722663641],[0.0046054413542151,-0.05307899042964,-0.076573692262173]],[[-0.1924439817667,-0.022451432421803,-0.10426131635904],[-0.03902555629611,-0.053646754473448,-0.029267260804772],[-0.062956981360912,0.025825001299381,0.055154275149107]],[[0.045134510844946,-0.1404654532671,-0.27698516845703],[-0.13644444942474,-0.20619237422943,-0.12889063358307],[-0.08200442045927,-0.10680271685123,-0.10530762374401]],[[-0.13491542637348,-0.072591580450535,-0.042274706065655],[0.11485052108765,-0.020335109904408,-0.11390197277069],[-0.085173361003399,0.0069112349301577,0.0014979555271566]],[[0.026731325313449,0.15224300324917,0.11669953167439],[-0.010760112665594,-0.061170689761639,0.026126597076654],[0.13654670119286,0.016547689214349,0.064410828053951]],[[0.027604890987277,-0.090805895626545,0.029518039897084],[-0.10348867624998,-0.11649363487959,-0.053896151483059],[-0.056440729647875,-0.028495086356997,-0.071662552654743]],[[-0.12438204139471,-0.076528541743755,-0.0037509852554649],[-0.048385608941317,-0.058848343789577,0.041820276528597],[-0.13974441587925,-0.0594845674932,-0.012537421658635]],[[-0.023306621238589,-0.045550353825092,-0.072411812841892],[-0.023614589124918,0.10112189501524,-0.029559977352619],[-0.060769353061914,0.0079246927052736,-0.017616108059883]],[[0.023795373737812,0.073042429983616,0.042740937322378],[-0.072216652333736,-0.076394371688366,0.0011826094705611],[0.014650544151664,-0.086614310741425,-0.015285624191165]],[[0.15328860282898,0.065520897507668,-0.056175030767918],[0.032563760876656,-0.16342109441757,-0.12205623835325],[0.13834252953529,0.11776520311832,0.12072379887104]],[[0.025021595880389,-0.018580246716738,0.0053568910807371],[0.016964191570878,0.066665329039097,-0.010113036260009],[-0.016114100813866,0.0071570868603885,-0.071968726813793]],[[0.10535521805286,0.21594569087029,-0.023786569014192],[-0.068009965121746,-0.12588648498058,-0.028701977804303],[-0.064886912703514,0.060866646468639,0.010897701606154]],[[-0.11564614623785,0.0035812174901366,0.25750690698624],[0.11123094707727,0.079841487109661,0.024454785510898],[-0.13765366375446,0.026770438998938,-0.1344136595726]],[[0.017627693712711,-0.021657289937139,0.0053017549216747],[-0.152050152421,-0.11932166665792,-0.11333546042442],[0.021296074613929,-0.02307266741991,0.098740875720978]],[[-0.13446141779423,-0.2045756727457,-0.3134528696537],[0.030401898548007,-0.041631329804659,-0.023366725072265],[-0.028842531144619,-0.0881377607584,0.063258290290833]],[[0.036548685282469,0.058493811637163,0.035797312855721],[-0.042840544134378,-0.12232468277216,-0.052694842219353],[0.15058732032776,0.20965877175331,0.13293398916721]],[[0.0074589098803699,-0.024425722658634,-0.0011261010076851],[-0.023873684927821,-0.19576540589333,-0.046624455600977],[-0.018327362835407,-0.036960121244192,-0.014476354233921]],[[0.09161090105772,-0.021268224343657,0.036029174923897],[0.060388561338186,-0.15179741382599,-0.068842865526676],[-0.007707797922194,-0.13419431447983,0.020530365407467]],[[0.014440380036831,0.013108533807099,0.076306506991386],[0.15425081551075,0.041741289198399,-0.13055093586445],[-0.016843529418111,-0.20007537305355,-0.12879404425621]],[[0.11518008261919,0.038229219615459,0.12810084223747],[0.036318749189377,0.041813772171736,0.040480244904757],[0.032184544950724,-0.0027599451132119,0.040057715028524]],[[0.016467204317451,0.04612997546792,-0.011943941004574],[0.017075164243579,0.090788438916206,-0.013811168260872],[-0.035447724163532,-0.01333580352366,-0.085207313299179]],[[0.038666732609272,0.26205611228943,-0.18205459415913],[-0.010412552393973,0.095440618693829,0.055899020284414],[0.096664771437645,0.036085214465857,-0.050657331943512]],[[-0.01194641366601,-0.14560244977474,0.14192533493042],[0.0045429966412485,-0.058600384742022,-0.099640466272831],[0.095240160822868,0.0074224616400898,-0.0021977364085615]],[[-0.041692767292261,-0.066778026521206,-0.11683700233698],[-0.1612096875906,-0.10646106302738,0.085153490304947],[-0.070535235106945,-0.094323962926865,0.025762161239982]],[[-0.024527290835977,-0.039445292204618,0.10530205070972],[-0.042390912771225,-0.10647594183683,0.032164126634598],[0.061981726437807,0.12565751373768,-0.047879323363304]],[[0.061055857688189,0.011796168982983,0.017246088013053],[0.0042722471989691,-0.064454354345798,0.05996685475111],[0.0303058270365,-0.062663540244102,0.12178612500429]],[[-0.067305035889149,-0.0039764363318682,0.17845258116722],[0.16726176440716,-0.035003013908863,-0.46282348036766],[0.014548556879163,0.076464124023914,0.21282771229744]],[[-0.0057772980071604,-0.18180039525032,-0.20000649988651],[-0.18171578645706,-0.012119720689952,-0.0080271288752556],[0.076952278614044,-0.016372377052903,0.14155888557434]],[[-0.21743534505367,-0.16458469629288,-0.13622598350048],[-0.16851611435413,-0.16128967702389,-0.23196175694466],[0.064441598951817,-0.13445460796356,0.049403000622988]],[[0.011532560922205,-0.010792107321322,0.19226694107056],[-0.066357500851154,0.12734819948673,0.17816369235516],[-0.14649048447609,-0.030190046876669,0.00091565266484395]],[[-0.050912663340569,0.033395428210497,0.0067647877149284],[-0.021059794351459,-0.094468511641026,-0.1288884729147],[0.066343694925308,-0.059384889900684,0.026190709322691]],[[-0.05855343490839,0.0030053511727601,-0.173787727952],[0.067106403410435,-0.012952140532434,0.12103883177042],[-0.082459799945354,-0.03624702244997,0.021800583228469]],[[-0.1076986566186,-0.10364749282598,0.13417574763298],[-0.051701370626688,0.03182191029191,-0.016986612230539],[-0.043843727558851,-0.041059359908104,0.080637969076633]],[[0.013310299254954,-0.039546921849251,-0.11165404319763],[-0.17181690037251,0.0009751605684869,0.0021641955245286],[-0.062341846525669,0.00099595671053976,0.075156785547733]],[[-0.11925200372934,-0.019330527633429,-0.10397493839264],[0.0096826776862144,-0.056770104914904,-0.064478740096092],[-0.063663668930531,0.068971201777458,0.12365736812353]],[[-0.13006110489368,-0.11736855655909,-0.088824689388275],[-0.09396581351757,-0.15562596917152,-0.24939434230328],[-0.02919646538794,-0.042232263833284,-0.024835549294949]],[[-0.021662134677172,0.057674206793308,0.015393163077533],[0.013971110805869,-0.053268741816282,0.18292304873466],[-0.06931260228157,0.19872510433197,-0.030373256653547]],[[-0.013330639339983,-0.013176715932786,-0.075557075440884],[-0.075458668172359,-0.10205214470625,0.022013133391738],[0.14057213068008,-0.032498374581337,-0.17693454027176]],[[-0.1072933152318,-0.11008992791176,0.1646476238966],[0.21704785525799,-0.038365740329027,0.15517418086529],[0.017394384369254,-0.1103683412075,-0.0056732008233666]],[[0.034629363566637,-0.025644961744547,-0.0034770944621414],[-0.095415756106377,-0.051227875053883,-0.079437471926212],[-0.15699644386768,0.005461547523737,-0.046881821006536]],[[0.068429499864578,-0.0155158797279,-0.19173255562782],[-0.003583007492125,0.0085105858743191,-0.032874409109354],[0.0042504505254328,-0.0066829365678132,-0.062607988715172]],[[-0.15878315269947,-0.10266394913197,-0.14199332892895],[0.18291065096855,0.080608114600182,0.031889420002699],[-0.077150993049145,-0.090698972344398,-0.1483496427536]],[[0.041989855468273,-0.034943677484989,-0.038351766765118],[0.02776899933815,0.066726051270962,0.0020822731312364],[-0.0002495473891031,-0.065902180969715,-0.12124112248421]],[[-0.017941661179066,0.0061580338515341,0.13684891164303],[0.079458065330982,-0.051096826791763,-0.082223869860172],[-0.020534552633762,0.026941010728478,-0.059102196246386]],[[0.12888535857201,-0.079547077417374,-0.12948267161846],[0.037630531936884,-0.048434566706419,0.046147357672453],[0.064398154616356,0.053566634654999,0.07385465502739]],[[-0.0096132215112448,0.14134348928928,0.18785418570042],[0.035508722066879,0.040325827896595,-0.051861047744751],[-0.10436001420021,-0.067813947796822,-0.026314754039049]],[[-0.10609454661608,0.084442585706711,0.13766399025917],[0.0011575991520658,-0.038759082555771,-0.084046080708504],[0.12536244094372,0.12015483528376,0.028181931003928]],[[-0.040102675557137,0.12342754006386,-0.097906984388828],[0.0013755224645138,-0.14179204404354,-0.078944213688374],[0.017608670517802,0.10850204527378,-0.052318643778563]],[[0.09512635320425,-0.0069061685353518,0.15691922605038],[0.0015772841870785,-0.085178062319756,0.10799662023783],[0.078704759478569,0.11613641679287,0.033070143312216]],[[0.15282860398293,0.21433211863041,0.22345675528049],[-0.026522161439061,-0.035673692822456,0.036823660135269],[-0.033311251550913,-0.06726036220789,-0.052219569683075]],[[0.042299713939428,-0.034063179045916,0.020177468657494],[0.13526287674904,-0.13509386777878,0.0079498458653688],[0.078361302614212,-0.1750757843256,0.043821562081575]],[[-0.071697935461998,-0.006839067209512,0.030391670763493],[-0.065928034484386,-0.039500039070845,0.038522884249687],[-0.0082245049998164,0.0632404088974,0.048450630158186]],[[0.0041702929884195,-0.063000865280628,-0.033651016652584],[0.023664625361562,-0.087676167488098,0.1227585375309],[-0.1067995429039,-0.022380007430911,-0.055963445454836]],[[-0.11925914883614,0.070568218827248,0.0064168660901487],[0.13464809954166,-0.064145438373089,-0.13281285762787],[-0.056374792009592,0.046081017702818,-0.10846444964409]],[[0.014742744155228,-0.064251594245434,0.0046102912165225],[0.011462005786598,0.012833181768656,0.061313357204199],[0.022856842726469,0.039751060307026,0.01707673445344]],[[-0.0091104134917259,-0.1015512496233,-0.033752951771021],[0.14078585803509,0.071410275995731,0.20071589946747],[0.043201066553593,0.056664317846298,0.06725750118494]],[[-0.014707035385072,-0.083554655313492,-0.10697662085295],[-0.056477397680283,0.045602191239595,-0.14624840021133],[0.053388070315123,-0.11956502497196,-0.13158275187016]],[[-0.052194248884916,-0.035673420876265,0.16900497674942],[0.064420990645885,0.16105942428112,0.15254779160023],[0.047641560435295,-0.0016856831498444,0.077253878116608]],[[-0.0380639731884,-0.087174966931343,0.24262523651123],[-0.047118596732616,-0.031816262751818,-0.11511350423098],[0.017165428027511,-0.017595222219825,0.02794381044805]],[[-0.051008835434914,0.086737617850304,0.10893178731203],[-0.1640290170908,-0.15335375070572,-0.070205420255661],[0.19861200451851,0.08100451529026,-0.015170801430941]],[[0.040555126965046,-0.00918482337147,-0.031286910176277],[-0.12989896535873,-0.20347443223,-0.1354745477438],[0.050216361880302,0.17230644822121,0.10363789647818]],[[0.0098189478740096,0.10068595409393,0.038416635245085],[-0.098753310739994,-0.13203729689121,0.014986368827522],[0.072086982429028,0.05488857626915,-0.069231122732162]],[[0.040270905941725,-0.044803194701672,0.1729714423418],[0.010344741865993,0.060887146741152,-0.024662714451551],[0.055156726390123,0.015090295113623,0.065739370882511]],[[-0.087953574955463,-0.011517928913236,-0.059932556003332],[-0.032208222895861,0.05400275811553,0.0022024377249181],[-0.088982626795769,-0.082338429987431,0.039484385401011]],[[0.02854835614562,-0.056764725595713,0.091830395162106],[-0.035983860492706,0.12767839431763,0.14683695137501],[0.024645114317536,-0.027366820722818,-0.0010841013863683]],[[0.14815451204777,0.062645748257637,-0.038766782730818],[-0.0012721896637231,-0.068278975784779,0.040675669908524],[0.050971664488316,0.037715930491686,-0.077701456844807]],[[0.0037443081382662,-0.044925726950169,-0.019174672663212],[-0.00061602721689269,-0.015248574316502,0.038359344005585],[-0.05856966599822,0.014193255454302,-0.052248302847147]],[[0.060852110385895,-0.069230124354362,-0.050522085279226],[-0.041089445352554,-0.059587579220533,-0.22233664989471],[0.012666226364672,-0.090320333838463,0.066097028553486]],[[-0.019866928458214,-0.19026166200638,-0.069056741893291],[0.085560873150826,-0.14810536801815,0.041115939617157],[0.011842339299619,-0.066574566066265,-0.11986285448074]],[[-0.022654732689261,-0.13335798680782,-0.10876992344856],[0.074664287269115,-0.044228632003069,0.045465808361769],[0.0047920793294907,-0.06492642313242,-0.074287094175816]],[[-0.089061863720417,0.039358898997307,0.010721122846007],[0.116315305233,-0.039533484727144,0.065215803682804],[0.1830799728632,-0.057099707424641,-0.060696937143803]],[[-0.12684869766235,-0.087091952562332,-0.1083272472024],[0.028745550662279,-0.015279485844076,-0.010447002016008],[-0.016622830182314,0.042441457509995,-0.061587434262037]],[[0.054892882704735,0.011669647879899,-0.044431742280722],[0.13365305960178,0.059127897024155,0.038288969546556],[-0.066128186881542,-0.12194181978703,-0.12800553441048]],[[0.051320683211088,0.10672245919704,0.0091602932661772],[0.10656836628914,0.04934649169445,-0.047670088708401],[0.014984684996307,-0.042366124689579,0.09710681438446]],[[0.039013598114252,-0.015522154979408,0.066159583628178],[-0.040310595184565,0.035609494894743,-0.002096323762089],[-0.058735132217407,-0.010353605262935,-0.00056890200357884]],[[0.033706992864609,0.058781884610653,-0.015990190207958],[0.14485926926136,0.14313021302223,-0.01698062568903],[0.071481913328171,-0.10422819107771,-0.13632923364639]],[[-0.015025658532977,-0.15905188024044,-0.15148040652275],[-0.13532675802708,-0.018201934173703,0.16242748498917],[-0.027302680537105,0.01262070145458,-0.027830911800265]],[[0.090959511697292,0.17762076854706,-0.21297836303711],[0.013959914445877,0.12665213644505,0.01118393894285],[0.050183776766062,0.011261532083154,0.020974099636078]],[[-0.065769337117672,-0.13085135817528,-0.15050393342972],[-0.26614338159561,-0.057870823889971,-0.070636734366417],[-0.0922936424613,-0.0655597448349,-0.085054010152817]],[[-0.037169948220253,0.041240215301514,0.17128720879555],[0.078211449086666,0.0056291483342648,0.054523382335901],[-0.095880910754204,0.059325497597456,-0.0094029372557998]],[[0.057705324143171,-0.074112847447395,-0.003265987848863],[-0.14117154479027,-0.023911394178867,-0.061290804296732],[-0.013120898976922,0.1277724802494,-0.049881517887115]],[[0.026375839486718,-0.079609975218773,-0.10392690449953],[-0.19413965940475,-0.099571324884892,0.003740849904716],[0.10458894819021,-0.017291314899921,0.018701707944274]],[[-0.028814213350415,-0.016499068588018,0.19700506329536],[0.0080627277493477,-0.089545376598835,-0.023740952834487],[0.0075576701201499,-0.012154148891568,-0.0097397519275546]],[[0.025446550920606,0.15151152014732,0.20246554911137],[0.014422907494009,-0.15532304346561,-0.1093550696969],[-0.010549281723797,-0.014047862030566,-0.094100669026375]]],[[[0.048677630722523,0.034546848386526,-0.026480980217457],[0.015440207906067,0.042845617979765,0.013539113104343],[-0.047640968114138,0.18583752214909,0.13699251413345]],[[0.13524831831455,0.0059528327547014,-0.027747476473451],[-0.18779395520687,-0.091753654181957,-0.045925535261631],[-0.043208010494709,-0.097863532602787,0.062602177262306]],[[0.078541092574596,0.080138169229031,0.054757684469223],[0.011884393170476,-0.0044759782031178,0.067593120038509],[0.0071905250661075,0.096504457294941,0.041707973927259]],[[-0.084423959255219,-0.071599990129471,-0.17356000840664],[0.0061967838555574,-0.0034444332122803,0.0057285809889436],[0.035439763218164,0.13368029892445,0.12412361800671]],[[-0.11432383954525,-0.13156726956367,-0.0036670060362667],[-0.10618468374014,0.046122167259455,-0.0024807560257614],[-0.06682775914669,-0.08024936914444,-0.048331685364246]],[[-0.22670941054821,0.050619460642338,-0.051721807569265],[-0.16655057668686,-0.050199057906866,0.23526422679424],[-0.23535925149918,0.0095950597897172,0.34816387295723]],[[-0.063210248947144,0.070347756147385,0.018089011311531],[0.15581002831459,0.032938066869974,-0.086036771535873],[-0.003380369162187,0.040497712790966,0.10034155845642]],[[-0.027691185474396,0.02860595844686,0.032322507351637],[-0.32840374112129,0.051445804536343,-0.057604663074017],[-0.088167324662209,0.08377768099308,-0.051247090101242]],[[0.17284078896046,-0.048196107149124,0.15069399774075],[0.029268633574247,0.051241997629404,-0.012280673719943],[0.04443671181798,-0.13225254416466,-0.069341585040092]],[[0.0044653755612671,0.097383961081505,0.0046327193267643],[-0.023820428177714,-0.09284371137619,-0.016818655654788],[-0.077398017048836,-0.13377283513546,-0.0025536303874105]],[[0.078248880803585,-0.0050580338574946,0.088900595903397],[-0.014894434250891,-0.0083434032276273,-0.14028713107109],[-0.066148348152637,-0.01254232507199,0.078191608190536]],[[-0.049495432525873,0.034079156816006,-0.00012642596266232],[-0.05185791477561,0.073102042078972,-0.051926594227552],[0.13069808483124,0.0097114499658346,-0.095035299658775]],[[0.035418659448624,-0.059404227882624,-0.14138266444206],[0.013276610523462,-0.14791211485863,-0.05045361071825],[-0.042376313358545,-0.17644685506821,-0.099855802953243]],[[0.035956416279078,0.035774122923613,-0.061237368732691],[0.070917896926403,-0.08587596565485,-0.0032465760596097],[0.095316961407661,-0.057768203318119,-0.031580075621605]],[[-0.11790728569031,-0.035153586417437,0.0056383167393506],[-0.07934495061636,0.01156781706959,-0.011356560513377],[0.077452585101128,0.20679956674576,0.161849796772]],[[-0.025589065626264,0.041520304977894,0.15393701195717],[-0.018521560356021,0.048169583082199,0.08473926782608],[-0.069636709988117,-0.10983099043369,-0.0013837127480656]],[[-0.0062866159714758,0.0043176175095141,-0.064960978925228],[-0.086777240037918,0.0046843318268657,-0.14464256167412],[-0.15132257342339,0.13228569924831,0.053854670375586]],[[0.21322217583656,-0.044096115976572,-0.16681171953678],[-0.081692494452,-0.00037960294866934,-0.26025933027267],[0.067111931741238,-0.03612283244729,-0.16584053635597]],[[-0.013427305966616,-0.08039778470993,0.24678993225098],[0.13273108005524,-0.012170952744782,0.13763131201267],[-0.14086243510246,-0.11054820567369,0.18808224797249]],[[-0.14914479851723,-0.050202336162329,0.16507138311863],[0.069207586348057,0.03147292137146,0.032134566456079],[0.076639451086521,-0.085539430379868,0.005239468999207]],[[-0.034276623278856,-0.11065600067377,-0.15120793879032],[-0.045230865478516,0.13127914071083,-0.18158242106438],[-0.10469321906567,0.034945037215948,-0.11055477708578]],[[-0.019704634323716,-0.034925475716591,0.13563324511051],[0.066573902964592,0.031379144638777,0.015937929973006],[0.050704661756754,-0.073127649724483,0.10699658840895]],[[-0.1536750793457,0.032476183027029,0.11378387361765],[-0.14424799382687,0.037431161850691,-0.035097789019346],[-0.039786834269762,0.096025407314301,-0.013721237890422]],[[-0.1265891045332,0.12208451330662,-0.15982623398304],[-0.13457688689232,-0.084899321198463,0.006315918173641],[-0.016797356307507,0.099699504673481,0.16442504525185]],[[0.15146496891975,0.01733841188252,0.069272018969059],[-0.11392717063427,-0.10325371474028,-0.077123433351517],[-0.047811064869165,-0.11773690581322,0.11475415527821]],[[0.005592348985374,-0.11309216916561,-0.10072557628155],[0.0097315860912204,-0.043036121875048,-0.071325294673443],[0.048628348857164,0.16854256391525,0.027619019150734]],[[0.074030548334122,-0.008986690081656,0.065299414098263],[0.10084414482117,-0.0238735396415,0.071534089744091],[0.33522969484329,0.0081733204424381,0.075905010104179]],[[-0.084646835923195,-0.019596144556999,-0.18125568330288],[-0.093937754631042,-0.034539237618446,0.051162820309401],[-0.07364846765995,0.021959425881505,-0.050291143357754]],[[0.029607260599732,-0.048915613442659,0.0073952549137175],[-0.062750570476055,-0.084823958575726,-0.0463473983109],[0.12430878728628,-0.063125491142273,-0.11674150824547]],[[0.0017867975402623,0.023867255076766,0.025393644347787],[-0.05853034928441,0.028850531205535,0.18757218122482],[-0.066559791564941,-0.098328694701195,0.09916877746582]],[[0.034123942255974,0.0072511346079409,-0.07378001511097],[-0.020721938461065,-0.0048641236498952,-0.16194979846478],[0.17212682962418,0.016216618940234,-0.12156880646944]],[[-0.033059246838093,0.083658576011658,-0.17606756091118],[-0.14931552112103,0.0783466771245,-0.040063310414553],[0.057320240885019,0.021005067974329,-0.19960018992424]],[[-0.065087921917439,-0.061650428920984,0.019563129171729],[0.062332466244698,0.1188872307539,0.12199509143829],[0.074569471180439,-0.0027157766744494,0.062942177057266]],[[-0.096866853535175,0.065975792706013,0.14635010063648],[-0.012337486259639,-0.036504790186882,0.0088524324819446],[-0.035498980432749,0.17265503108501,-0.069697596132755]],[[0.14255663752556,-0.14972592890263,-0.190280392766],[0.034261424094439,-0.0087236650288105,-0.21170596778393],[0.043538235127926,0.15356041491032,-0.25378522276878]],[[-0.071681000292301,0.049330729991198,0.06563176959753],[-0.092875398695469,0.092120327055454,0.098806902766228],[0.085298418998718,0.033565182238817,-0.056761562824249]],[[-0.13851338624954,-0.046175997704268,0.19151428341866],[-0.070613741874695,-0.037103597074747,-0.087550573050976],[-0.079137057065964,-0.068111829459667,0.017402056604624]],[[-0.1482587903738,0.024932704865932,0.10214509814978],[-0.029809160158038,0.011125421151519,-0.040076192468405],[0.017699856311083,0.016619121655822,-0.25571599602699]],[[0.080519504845142,-0.025059141218662,-0.079884044826031],[0.0099299112334847,-0.082752913236618,0.018788931891322],[-0.11286977678537,-0.14831556379795,-0.042352300137281]],[[-0.048490017652512,-0.060166493058205,0.062693066895008],[0.12363542616367,-0.12744575738907,0.079895734786987],[-0.035964291542768,0.077840335667133,0.023211218416691]],[[0.056294146925211,0.17226688563824,-0.086947500705719],[0.13180376589298,-0.029367838054895,-0.0011511282064021],[0.12760630249977,0.068083882331848,-0.048557329922915]],[[-0.0085954759269953,0.14969184994698,0.052540052682161],[0.047236263751984,-0.011003923602402,0.0094565702602267],[0.060599386692047,0.067390330135822,0.065928414463997]],[[0.051126625388861,-0.097892977297306,-0.001585618709214],[0.131751999259,0.065989390015602,-0.11310774832964],[0.20171247422695,-0.018566211685538,-0.064027518033981]],[[0.0062266453169286,-0.08239122480154,0.014438341371715],[0.060515481978655,0.0048151281662285,-0.050849959254265],[0.028373539447784,-0.022099789232016,-0.061396550387144]],[[-0.25912842154503,-0.059022735804319,-0.13016347587109],[-0.043053895235062,-0.054004639387131,0.019441343843937],[-0.034091252833605,-0.040632653981447,0.0070942239835858]],[[-0.068295292556286,-0.085194066166878,0.024706451222301],[-0.0028226731810719,-0.090058848261833,0.052501548081636],[-0.02551806345582,-0.070458628237247,0.1254410892725]],[[-0.028634242713451,0.082149520516396,-0.028124989941716],[0.05103588104248,0.089856676757336,-0.045480836182833],[-0.046745397150517,-0.063516728579998,-0.011116374284029]],[[0.024758644402027,0.09716671705246,-0.11148177832365],[-0.24938215315342,-0.079833403229713,0.0069321542978287],[0.12632618844509,-0.065114088356495,-0.0048717288300395]],[[-0.18606851994991,0.060289453715086,0.083328925073147],[-0.086385890841484,0.012671981006861,-0.015385869890451],[0.13404309749603,0.0028735783416778,-0.067169949412346]],[[-0.1285914182663,-0.11209421604872,0.015444333665073],[-0.037926137447357,-0.03629095107317,0.1309859007597],[0.097515687346458,0.036909069865942,0.088743463158607]],[[0.027884950861335,0.025550410151482,-0.025330424308777],[-0.050061583518982,0.028142955154181,-0.22372296452522],[-0.072522290050983,0.059801567345858,0.061856850981712]],[[0.066922254860401,0.10627654194832,0.046722810715437],[-0.041000574827194,-0.052447889000177,-0.08811216801405],[0.089667126536369,-0.0053830314427614,-0.095815807580948]],[[-0.097240619361401,-0.1030511111021,-0.062372460961342],[0.02198601514101,-0.088941030204296,-0.040843229740858],[0.019375897943974,-0.04787315800786,-0.04067650437355]],[[-0.055649265646935,0.052483219653368,-0.1132568269968],[0.052772775292397,0.11312134563923,0.14316433668137],[-0.088486611843109,0.073195084929466,0.025259621441364]],[[-0.14413219690323,-0.0051779011264443,-0.055205807089806],[-0.11670433729887,-0.089816048741341,-0.024171715602279],[0.17905449867249,0.058997921645641,0.052294846624136]],[[0.013011345639825,0.08966475725174,-0.050289399921894],[-0.028503926470876,0.046986151486635,-0.014670670963824],[-0.081184715032578,-0.048442658036947,-0.054169371724129]],[[-0.15410940349102,0.010240846313536,0.14744721353054],[-0.098794378340244,-0.045618686825037,0.043197833001614],[-0.035180162638426,-0.015133637003601,0.016953850165009]],[[0.053979106247425,-0.16590856015682,-0.10806625336409],[0.037709321826696,-0.017638225108385,-0.12600141763687],[-0.079564824700356,-0.10079606622458,-0.14534714818001]],[[0.049277294427156,0.025268087163568,-0.075820229947567],[0.046071201562881,-0.07881160825491,-0.15103191137314],[0.16507065296173,0.095007732510567,-0.022733207792044]],[[-0.062892265617847,0.029741190373898,0.005900009535253],[-0.16145496070385,-0.052709620445967,-0.027138508856297],[0.078864485025406,0.008175696246326,0.053155194967985]],[[-0.065191030502319,0.021670753136277,-0.148810967803],[-0.06337658315897,0.07049448788166,-0.10808651894331],[-0.20045286417007,0.10357040911913,-0.13776664435863]],[[-0.093117482960224,0.0002158200222766,-0.021658930927515],[-0.088107526302338,-0.070785753428936,-0.05835534632206],[-0.11484009027481,-0.27096864581108,-0.1286274343729]],[[0.20397908985615,0.044623702764511,0.037601567804813],[0.073650613427162,0.09047781676054,0.055123787373304],[-0.10370238870382,0.012509527616203,-0.11042645573616]],[[-0.094935514032841,0.13190679252148,-0.021855715662241],[0.079365141689777,0.11937288194895,-0.051473613828421],[-0.0015265301335603,0.12898662686348,-0.053771033883095]],[[-0.032809369266033,-0.012711390852928,0.029373578727245],[-0.075989328324795,-0.05946021899581,-0.068082951009274],[0.01348387543112,0.020018791779876,-0.023350346833467]],[[0.26460486650467,-0.049753960222006,-0.016086550429463],[0.16722372174263,0.0061305961571634,-0.19004806876183],[0.11022567749023,-0.035807352513075,-0.033517993986607]],[[-0.032758425921202,0.10796204209328,0.060847867280245],[0.037368275225163,0.19225649535656,-0.02669189311564],[-0.080820955336094,-0.014339349232614,-0.056438084691763]],[[0.155647829175,-0.038354035466909,0.015827868133783],[-0.077294364571571,-0.10879421979189,-0.028595048934221],[-0.023505980148911,-0.089439488947392,-0.1367883682251]],[[0.072221331298351,-0.075666517019272,-0.10056011378765],[-0.03469492867589,-0.078802935779095,-0.08460845798254],[-0.03580891340971,-0.021189706400037,0.0036874867510051]],[[-0.034791238605976,0.10291058570147,-0.20847444236279],[0.052051298320293,0.2288126796484,-0.061942808330059],[-0.025895934551954,0.070174880325794,-0.014401163905859]],[[0.0091347713023424,-0.046710975468159,-0.19055147469044],[0.0088999606668949,0.064167834818363,0.14257252216339],[-0.07382183521986,0.066760592162609,0.13930560648441]],[[-0.082974433898926,-0.12432764470577,-0.0198635738343],[0.0026846234686673,0.008304194547236,-0.071479879319668],[-0.02199468202889,-0.064426451921463,-0.036758132278919]],[[-0.067215360701084,-0.038147993385792,0.0092205479741096],[-0.052004545927048,-0.10455965995789,0.010262025520205],[0.0062967455014586,-0.00062903499929234,-0.073289394378662]],[[0.025436736643314,-0.015991190448403,0.23466995358467],[-0.084403373301029,-0.035486869513988,0.058688249439001],[-0.039985843002796,-0.052475780248642,0.0019319595303386]],[[-0.22168210148811,-0.012085577473044,-0.12036898732185],[-0.067923851311207,0.10685922205448,0.064435921609402],[-0.067405432462692,-0.089078411459923,-0.11707937717438]],[[0.013724787160754,0.080901332199574,0.1112944111228],[-0.026581631973386,-0.013923390768468,0.089946299791336],[0.10083328932524,-0.017993737012148,-0.14057792723179]],[[-0.047702834010124,-0.27717390656471,0.138911023736],[-0.14587478339672,-0.13463647663593,0.075492769479752],[-0.10439432412386,-0.19799980521202,-0.16139809787273]],[[-0.026281885802746,-0.082871995866299,0.23612573742867],[0.010065053589642,-0.11946757137775,0.15976472198963],[0.013560255989432,-0.14361275732517,-0.034646436572075]],[[0.25379365682602,-0.07754372805357,-0.13793341815472],[0.14652310311794,0.040308456867933,-0.042375717312098],[0.17453362047672,0.010332019068301,0.14580550789833]],[[-0.34785747528076,-0.1272684186697,-0.38534545898438],[0.032341111451387,0.068373158574104,-0.21800695359707],[0.022382277995348,-0.10667814314365,-0.18247522413731]],[[-0.022000551223755,-0.048180133104324,-0.12034390866756],[0.076802752912045,-0.017999812960625,-0.13984793424606],[0.055294044315815,0.012461865320802,-0.010201429948211]],[[0.055387124419212,-0.086024343967438,0.094083346426487],[0.12517300248146,-0.1817022562027,0.011005619540811],[0.16396191716194,-0.017375806346536,-0.076070554554462]],[[0.08453369140625,-0.11722994595766,-0.12568452954292],[0.083025060594082,-0.018175972625613,-0.043526414781809],[0.22572866082191,0.011241825297475,-0.0093229040503502]],[[-0.078275166451931,-0.055643945932388,-0.029754424467683],[-0.15020097792149,-0.10554083436728,-0.04443021863699],[-0.12758149206638,-0.17964461445808,-0.019954945892096]],[[0.10890287905931,0.062130857259035,0.077825658023357],[0.02998361736536,0.029680524021387,0.16973349452019],[0.0035453964956105,-0.092093326151371,0.18480046093464]],[[-0.092919297516346,-0.041462250053883,-0.091383412480354],[0.10573241859674,0.062371633946896,-0.013234498910606],[0.013772604055703,-0.00594716751948,-0.063574574887753]],[[0.050725445151329,-0.0075382734648883,-0.0099803116172552],[0.16879802942276,0.096630036830902,-0.017332123592496],[0.021667616441846,-0.034743621945381,-0.11138351261616]],[[-0.12012054026127,0.022182434797287,0.075386181473732],[-0.080745860934258,0.038562297821045,0.092079363763332],[0.022035660222173,-0.082991421222687,-0.033256724476814]],[[-0.24376133084297,0.058475911617279,0.014892383478582],[-0.12843398749828,0.16520212590694,0.041325733065605],[-0.060591988265514,0.22275370359421,0.0024864473380148]],[[0.024693582206964,-0.033729981631041,-0.057921279221773],[-9.732896432979e-05,0.019901353865862,0.13018999993801],[-0.048315551131964,-0.11974905431271,-0.10142822563648]],[[-0.14759027957916,-0.08552398532629,0.038970410823822],[-0.058771181851625,-0.011248426511884,-0.066736236214638],[0.020650058984756,-0.09328231960535,0.0056779808364809]],[[-0.0013076732866466,0.049501463770866,-0.030940186232328],[0.13759802281857,0.088265925645828,-0.14172308146954],[0.053699113428593,0.12945111095905,-0.16528896987438]],[[0.11903631687164,0.084055252373219,0.017512900754809],[-0.092215470969677,-0.078238762915134,-0.11810390651226],[0.088223978877068,-0.036944907158613,0.036679651588202]],[[-0.03212383389473,-0.17535789310932,-0.0078343087807298],[-0.067621305584908,-0.23813398182392,-0.12684728205204],[-0.003812471870333,-0.096747778356075,0.0073186783120036]],[[-0.064358331263065,-0.16780182719231,-0.024871734902263],[-0.11169055104256,0.042852625250816,0.071627244353294],[-0.16648229956627,0.066980138421059,0.073861956596375]],[[0.007985632866621,-0.095662124454975,0.055168010294437],[0.039104655385017,0.097510650753975,0.17296984791756],[0.070673622190952,-0.052213437855244,0.080797202885151]],[[-0.043334178626537,0.11371670663357,0.091766625642776],[0.055596057325602,-0.14534284174442,-0.0029541475232691],[0.10371027141809,-0.034712120890617,-0.049210909754038]],[[0.240418151021,0.057405184954405,-0.063456796109676],[0.1254203915596,0.07700652629137,-0.059838071465492],[0.062979117035866,-0.027628796175122,-0.10192030668259]],[[-0.076682329177856,-0.056613944470882,0.015068398788571],[-0.051358535885811,-0.017999341711402,-0.082870289683342],[-0.18132495880127,-0.019277434796095,-0.077400758862495]],[[-0.019840518012643,0.09682809561491,0.049260161817074],[-0.027747698128223,0.027105832472444,-0.044958990067244],[-0.01149697881192,0.037763569504023,-0.11420322954655]],[[-0.11226359009743,0.035072922706604,0.0064006499014795],[-0.088919319212437,0.045497946441174,-0.029464088380337],[-0.13676261901855,0.060550473630428,-0.022688528522849]],[[-0.094229750335217,-0.010027911514044,0.10295160859823],[0.055566374212503,0.064740583300591,0.011649683117867],[-0.0063514532521367,-0.052003540098667,-0.023914130404592]],[[-0.029783232137561,-0.02616492845118,-0.039718706160784],[0.1202856823802,-0.0019825580529869,-0.030785162001848],[0.11710898578167,-0.012055140919983,-0.10804621875286]],[[-0.068759992718697,-0.013855304569006,0.012166426517069],[-0.010224268771708,0.025374172255397,0.075311705470085],[-0.087469220161438,0.027345720678568,0.13819137215614]],[[-0.01938303001225,0.07369127124548,0.071916662156582],[-0.060963612049818,0.018832543864846,-0.082772955298424],[0.10438244789839,0.11288602650166,-0.094725988805294]],[[-0.25948402285576,0.027156302705407,-0.29909896850586],[0.048586439341307,0.014048782177269,-0.05228965356946],[0.22877570986748,0.11880745738745,0.022311067208648]],[[0.149149492383,0.029334239661694,0.0063210534863174],[0.0468545332551,0.05688988044858,-0.048143714666367],[0.069139398634434,-0.068185813724995,-0.0084851877763867]],[[0.11458390951157,-0.077455796301365,-0.04926361516118],[0.0622793212533,-0.07302837818861,0.086419835686684],[-0.11945865303278,-0.082869470119476,0.13319456577301]],[[0.056631054729223,0.16901539266109,0.079586081206799],[-0.0094726113602519,-0.0045358203351498,0.021387297660112],[-0.10747034102678,0.064831115305424,0.17911194264889]],[[-0.048995513468981,-0.0086483741179109,0.11276841163635],[-0.013212002813816,0.048671811819077,0.059922762215137],[0.048646982759237,0.10233582556248,0.11516585201025]],[[-0.038664553314447,-0.063173390924931,-0.052562471479177],[-0.069479569792747,-0.049573160707951,-0.072460301220417],[-0.053962603211403,0.055463768541813,-0.0075252330861986]],[[-0.16026863455772,0.03870664909482,0.041607245802879],[-0.0048348493874073,-0.02672833763063,-0.10256643593311],[0.057559914886951,0.090752117335796,-0.21111483871937]],[[-0.080505676567554,0.11738333106041,-0.16884861886501],[-0.066381432116032,0.10151743143797,-0.088570445775986],[-0.068406105041504,0.020869953557849,-0.10926245898008]],[[0.054155681282282,-0.12057978659868,0.13586777448654],[-0.066464059054852,0.09573045372963,-0.023743331432343],[0.057971347123384,0.015092415735126,-0.065340332686901]],[[0.26495507359505,-0.016982480883598,0.00046871311496943],[0.012045280076563,-0.13373750448227,0.029953710734844],[0.041405010968447,0.093112096190453,0.086235873401165]],[[-0.034303665161133,-0.075961425900459,0.043784260749817],[-0.01724742911756,-0.011593546718359,0.12052628397942],[0.089761324226856,-0.16088145971298,0.19000083208084]],[[-0.0076558366417885,-0.029791528359056,0.1767740547657],[-0.06853973120451,-0.01658364571631,0.008952765725553],[-0.050047967582941,0.042451098561287,0.18564720451832]],[[0.086608789861202,-0.0083430698141456,0.091921210289001],[0.027991941198707,-0.097228944301605,0.023118266835809],[0.2572905421257,0.038047764450312,0.070821791887283]],[[-0.049793884158134,0.064731128513813,-0.019364971667528],[-0.019794430583715,-0.05514245480299,-0.0085056750103831],[-0.019816387444735,0.13089781999588,-0.024467520415783]],[[0.07493482530117,0.11123505979776,-0.01040536724031],[-0.020053574815392,-0.049941252917051,-0.12552754580975],[-0.085788577795029,0.10257242619991,-0.012984710745513]],[[-0.066278226673603,-0.072306223213673,-0.027204984799027],[-0.1151546984911,0.06248289719224,-0.1024776622653],[-0.25663605332375,-0.020009268075228,-0.21702221035957]],[[0.048886399716139,-0.033854935318232,0.0075169573538005],[-0.0054770624265075,-0.0043724686838686,0.050806283950806],[0.05813704431057,0.0086540281772614,0.020114189013839]],[[-0.14541974663734,-0.17571780085564,-0.15423545241356],[0.00077578582568094,-0.096916511654854,-0.24253767728806],[0.0016338244313374,0.069953866302967,-0.069844983518124]],[[-0.037215083837509,0.0063448743894696,-0.17519165575504],[-0.12796701490879,-0.063372552394867,0.046686373651028],[-0.19973839819431,0.083261951804161,0.21133299171925]],[[-0.023759298026562,0.02981230430305,-0.051731139421463],[0.026495842263103,-0.041552666574717,-0.14013066887856],[0.0035558040253818,0.18307794630527,-0.13516199588776]],[[-0.094768881797791,0.14750155806541,-0.076577298343182],[-0.043331354856491,0.00090024567907676,-0.068041883409023],[-0.094935148954391,0.11319314688444,0.11490974575281]],[[0.056611761450768,0.11848009377718,-0.065078161656857],[-0.044233199208975,0.13854503631592,-0.050876934081316],[-0.2143778949976,0.04332922026515,-0.20872312784195]],[[-0.040382750332355,-0.066307738423347,0.14098657667637],[-0.18609169125557,-0.067351952195168,0.18504959344864],[-0.089495398104191,0.048019401729107,0.24287517368793]]],[[[-0.0014644904294983,0.039722912013531,0.015310002490878],[-0.019662903621793,-0.04305762425065,0.03665167465806],[-0.016483223065734,0.012720499187708,-0.012465852312744]],[[-0.081664688885212,0.032206632196903,-0.081600204110146],[-0.035273745656013,0.016712252050638,-0.020525654777884],[0.045371536165476,0.012567878700793,-0.033285029232502]],[[-0.0029692901298404,-0.021460842341185,-0.036642495542765],[0.030453471466899,-0.034114401787519,0.033911272883415],[0.0028611905872822,0.02217792160809,-0.026613714173436]],[[-0.027779597789049,-0.00033147525391541,-0.0092403441667557],[0.024139070883393,0.046200972050428,0.049305118620396],[-0.0071940859779716,0.023273754864931,-0.045958377420902]],[[0.056516394019127,0.047086622565985,-0.036246050149202],[0.033589877188206,-0.055378917604685,-0.036328535526991],[-0.014364900067449,0.019809935241938,-0.021329909563065]],[[-0.019428465515375,0.10359285026789,-0.036064125597477],[-0.028977567330003,-0.080697149038315,-0.025549434125423],[-0.023252733051777,0.023024775087833,-0.022054176777601]],[[0.057533040642738,0.043700613081455,-0.011343910358846],[0.054263561964035,0.039954248815775,0.0089276758953929],[0.0054288264364004,-0.046621594578028,-0.028290223330259]],[[-0.0037442506290972,0.056364808231592,0.034163437783718],[0.052149642258883,0.011362681165338,0.037838909775019],[0.046149540692568,-0.026548735797405,-0.05881317704916]],[[0.034146249294281,0.01834105886519,0.026479240506887],[-0.063994728028774,-0.010805690661073,-0.016099689528346],[0.01112846750766,-0.022017391398549,0.046368394047022]],[[-0.012315803207457,0.0025176373310387,0.047618273645639],[0.021316746249795,0.014142626896501,0.0089691113680601],[0.039536129683256,0.026801640167832,0.014075295999646]],[[-0.033458113670349,-0.0043109990656376,0.038963414728642],[0.058981787413359,-0.012535670772195,0.085856094956398],[-0.019996033981442,-0.063585169613361,0.03141313791275]],[[-0.018610311672091,-0.0090154353529215,0.048841904848814],[-0.036192860454321,-0.033169820904732,0.019467292353511],[0.048721261322498,0.048168737441301,0.00812703743577]],[[0.053378328680992,0.0073235216550529,-0.034984149038792],[0.04560387507081,0.0099136540666223,-0.004128847271204],[-0.040602281689644,-0.0069467988796532,0.036531019955873]],[[-0.027692388743162,-0.01927194185555,0.0084677003324032],[-0.013340562582016,-0.073230125010014,0.0092284791171551],[0.055850621312857,-0.11013005673885,0.057327769696712]],[[-0.06125596165657,0.02199125289917,-0.030420333147049],[-0.01269443705678,0.04207605868578,-0.016112653538585],[0.031604882329702,-0.021800385788083,-0.0086361551657319]],[[0.04112259298563,0.048497773706913,-0.0064521939493716],[-0.026738760992885,-0.024712722748518,0.057557865977287],[0.014081347733736,-0.024786615744233,-0.0073923617601395]],[[0.0050256252288818,-0.036343798041344,-0.02233705855906],[-0.020581616088748,0.04555631056428,-0.049752403050661],[-0.03554629907012,-0.0083213895559311,0.015875305980444]],[[-0.02025643363595,0.052208602428436,0.013164347968996],[-0.02620791643858,-0.063785396516323,0.040162172168493],[0.0026806113310158,0.061357833445072,0.083178959786892]],[[0.043468754738569,-0.013413954526186,-0.017493078485131],[0.015261013992131,-0.061892755329609,0.037472650408745],[-0.0080000488087535,-0.069702714681625,0.022136414423585]],[[0.076763682067394,-0.028766693547368,0.034010831266642],[-0.065464518964291,0.0073277000337839,0.049332037568092],[0.032718501985073,-0.033138249069452,0.04685515910387]],[[0.03405087813735,-0.029242068529129,-0.04788001999259],[-0.016434462741017,-0.02744965814054,-0.045189790427685],[-0.051174413412809,0.018236175179482,0.00085579382721335]],[[0.014526383019984,-0.05211503431201,0.049589294940233],[-0.020710235461593,-0.0061143259517848,0.032544199377298],[0.043141443282366,-0.019683219492435,-0.0051222946494818]],[[0.031299397349358,0.076240018010139,-0.066747255623341],[-0.026424730196595,0.04147332906723,-0.04632155969739],[-0.043440356850624,-0.066229447722435,0.053495280444622]],[[0.030970837920904,-0.020538363605738,-0.037804335355759],[0.006146278232336,-0.011033891700208,0.02825303375721],[0.026754019781947,-0.087044112384319,-0.060666188597679]],[[-0.024663819000125,-0.0052058338187635,0.016620518639684],[-0.0070187607780099,0.0035578859969974,0.001379209687002],[0.040626052767038,-0.050080087035894,0.02802637591958]],[[-0.048159133642912,-0.024237476289272,0.00018768958398141],[0.016327772289515,-0.030250845476985,-0.011863501742482],[0.0027461126446724,-0.027967944741249,-0.0083074430003762]],[[0.059364344924688,0.029344316571951,-0.017212400212884],[-0.021461684256792,0.03692027553916,-0.001213445677422],[-0.01232885196805,-0.012481632642448,0.02435046248138]],[[0.029929405078292,-0.010326499119401,0.014920294284821],[0.018820006400347,-0.065884567797184,-0.024895895272493],[0.020105082541704,-0.0076865619048476,-0.069345213472843]],[[-0.082856014370918,-0.028960796073079,0.027624938637018],[0.0070327953435481,0.03009288944304,0.031394794583321],[0.0143111795187,0.011185587383807,0.031344082206488]],[[0.013766188174486,-0.034214679151773,0.044179029762745],[-0.031321797519922,-0.015770353376865,0.047649148851633],[0.0012384756701067,0.019658675417304,-0.02154428884387]],[[0.00071454193675891,0.035159185528755,0.012980070896447],[0.029021847993135,0.031448386609554,0.0378677546978],[0.04871229454875,0.073243908584118,0.031759265810251]],[[0.050638113170862,0.021969074383378,0.04878193885088],[-0.032722663134336,0.0037754792720079,0.034015007317066],[0.011197129264474,-0.053605224937201,0.050009451806545]],[[0.0025503686629236,-0.061885386705399,0.025259699672461],[-0.037244543433189,-0.023514643311501,0.039282359182835],[-0.055802386254072,0.021064180880785,0.093725278973579]],[[0.018578765913844,0.070333935320377,0.053001530468464],[-0.0048225671052933,0.055106975138187,-0.04029343649745],[0.0035338620655239,-0.033412612974644,0.03311724960804]],[[0.022613072767854,0.017735095694661,-0.06129689514637],[0.057426702231169,0.0040082689374685,-0.019705900922418],[0.012245580554008,-0.024715550243855,-0.0068451981060207]],[[-0.020763149484992,-0.035755313932896,-0.034093666821718],[-0.016324004158378,-0.067428253591061,-0.039029307663441],[-0.033137783408165,0.014958199113607,0.05479508638382]],[[-0.081327669322491,0.025431560352445,0.017625512555242],[0.059118635952473,-0.0048250742256641,-0.028621235862374],[0.04811192303896,0.035294614732265,0.025901697576046]],[[0.033856213092804,0.033728893846273,-0.082097917795181],[-0.021498080343008,-0.005254025105387,-0.082832552492619],[-0.0040274881757796,0.019814258441329,-0.027439441531897]],[[-0.013106616213918,0.065643839538097,0.030794100835919],[-0.014919593930244,0.034360874444246,-0.020060680806637],[0.018029788509011,-0.069559574127197,-0.031794544309378]],[[0.0071705374866724,-0.054326456040144,0.025165902450681],[-0.019087385386229,-0.070206955075264,0.073226183652878],[0.00016493847942911,-0.060195945203304,0.018176032230258]],[[0.025223208591342,-0.015143308788538,-0.029239822179079],[0.019319536164403,0.057149458676577,0.065266594290733],[0.029429128393531,0.0050270347855985,-0.002539946930483]],[[0.035569310188293,0.0065500638447702,-0.027126617729664],[0.01663962751627,-0.01533913705498,0.01702987216413],[-0.019929379224777,-0.010890504345298,0.059835359454155]],[[-0.0081358375027776,-0.033038932830095,0.029135085642338],[-0.045702036470175,0.017007105052471,0.014562084339559],[0.016581173986197,-0.017438830807805,-0.029822390526533]],[[-0.054564006626606,0.013527226634324,-0.00015912717208266],[0.007911391556263,-0.0034509729593992,0.015872992575169],[0.0045046047307551,-0.019135037437081,-0.026984374970198]],[[-0.086096256971359,-0.011914778500795,0.0079263458028436],[0.0069978223182261,-0.011305409483612,0.012815634720027],[-0.00077673833584413,-0.0039122109301388,-0.0045988508500159]],[[-0.07730033993721,-0.027005100622773,-0.06006969884038],[0.045233767479658,0.01575518026948,0.065375305712223],[-0.013625035062432,0.033268310129642,0.025271002203226]],[[0.026007348671556,-0.050013791769743,0.013553357683122],[-0.035346671938896,0.0063614873215556,0.024243161082268],[-0.03121299482882,-0.030570378527045,0.035067703574896]],[[-0.028464797884226,0.030769187957048,-0.023633182048798],[0.054602481424809,0.072511300444603,5.2141680498607e-05],[0.06180601939559,-0.024163331836462,0.025909528136253]],[[-0.0037660996895283,-0.0047967024147511,0.051522266119719],[-0.054155293852091,0.026014503091574,0.038016047328711],[0.042650610208511,-0.0017060951795429,0.08516651391983]],[[-0.020128689706326,0.0078174322843552,-0.0079574203118682],[-0.049624711275101,0.0085038356482983,0.050547093153],[-0.039291683584452,0.010208708234131,0.0079826349392533]],[[-0.026709161698818,-0.040197774767876,0.03652436286211],[0.0053739850409329,0.011382379569113,-0.0017290571704507],[0.017554417252541,-0.011589783243835,-0.025638302788138]],[[-0.02364432439208,-0.018833715468645,-0.046809505671263],[0.053076598793268,0.021713739261031,0.023589462041855],[-0.0031051887199283,0.0032962327823043,0.0087499786168337]],[[0.053532741963863,0.022731399163604,-0.036489017307758],[0.05631061643362,0.071059308946133,0.028517805039883],[0.0706497579813,0.041475437581539,-0.021834500133991]],[[0.095620803534985,0.071394570171833,-0.017375165596604],[-0.046907108277082,0.010498634539545,0.013795429840684],[0.069741368293762,-0.011090617626905,-0.06188939511776]],[[0.021635603159666,-0.0028986863326281,-0.023738818243146],[0.053032197058201,-0.032234836369753,-0.0012153257848695],[-0.021604670211673,-0.042232006788254,0.009586526080966]],[[-0.0003022023010999,0.018294963985682,0.073178842663765],[-0.0082301888614893,-0.014690997079015,0.042725097388029],[0.061259519308805,-0.039208952337503,-0.00132160121575]],[[0.01368367113173,-0.060817010700703,-0.010289886966348],[0.027120547369123,-0.0016643016133457,0.011108452454209],[0.054675679653883,0.02346246689558,0.02143339253962]],[[-0.030487628653646,0.034598913043737,-0.027815757319331],[-0.014908202923834,0.010924710892141,-0.019277879968286],[-0.054662644863129,0.049006652086973,-0.086576536297798]],[[-0.049947902560234,-0.042492393404245,0.068541802465916],[-0.024511849507689,0.030013881623745,-0.026781400665641],[-0.0099920947104692,0.037564985454082,0.01558718085289]],[[-0.011559570208192,-0.028368202969432,-0.017866313457489],[-0.10133253782988,-0.015163664706051,0.040996450930834],[0.0017616208642721,-0.01818591542542,0.0031017507426441]],[[0.0056978557258844,0.019590089097619,-0.014607393182814],[-0.00041179798427038,0.016427870839834,-0.0026890330482274],[0.03596518561244,0.033551823347807,-0.037621911615133]],[[0.057593580335379,-0.0035963163245469,0.0078710205852985],[0.015016794204712,0.0054232375696301,0.034492895007133],[-0.067294836044312,-0.054367631673813,0.036960639059544]],[[0.01486315857619,-0.009812681004405,0.05636128038168],[-0.049716487526894,0.053431641310453,0.030020985752344],[0.0036641934420913,0.068631008267403,-0.04564756155014]],[[-0.01827136054635,0.058411952108145,-0.016455482691526],[0.041492696851492,0.058992367237806,-0.061552137136459],[-0.032450065016747,-0.022959176450968,0.035769026726484]],[[-0.055413920432329,0.0063896737992764,0.0073172957636416],[0.0072367386892438,-0.004298138897866,0.026783732697368],[0.012014387175441,0.0011932442430407,0.018095841631293]],[[-0.030068840831518,0.0061044162139297,-0.017077872529626],[-0.028127625584602,0.041210353374481,0.055248953402042],[-0.00077852420508862,-0.023332858458161,-0.0077656651847064]],[[-0.017117558047175,0.059341959655285,0.052576459944248],[0.036806240677834,-0.0044728294014931,-0.001085503376089],[0.061180371791124,-0.043483503162861,-0.01492172293365]],[[-0.021080050617456,-0.017354836687446,0.038588367402554],[0.049534257501364,0.044979840517044,-0.059463039040565],[-0.00050078943604603,0.028451977297664,0.016792947426438]],[[0.015102351084352,-0.013703998178244,-0.075187385082245],[0.033265016973019,-0.040014937520027,-0.08139093965292],[0.043105162680149,-0.032350596040487,-0.047539610415697]],[[0.013755654916167,0.042188003659248,0.011079922318459],[-0.039196271449327,0.0073835602961481,-0.013552080839872],[0.0029662365559489,-0.02567090280354,-0.082001820206642]],[[0.013586548157036,-0.033379659056664,0.025020226836205],[0.051336850970984,0.00045624814811163,0.06353872269392],[-0.033011980354786,0.005319734569639,0.02095297165215]],[[-0.0054841707460582,-0.0066284411586821,0.017457088455558],[-0.027759244665504,-0.0028044646605849,0.027275124564767],[0.010394723154604,-0.047675769776106,0.030210198834538]],[[-0.060364916920662,0.054888270795345,0.0087451720610261],[-0.015706289559603,-0.031883958727121,-0.019697573035955],[0.017055854201317,-0.018302753567696,0.00151369033847]],[[0.038535956293344,0.03623390942812,-0.10097815096378],[-0.018637865781784,0.061106532812119,0.05798564106226],[-0.0069334292784333,-0.064017318189144,0.0392588339746]],[[-0.06514648348093,-0.031016904860735,0.015274610370398],[-0.053333662450314,-0.0049252174794674,-0.025046639144421],[0.035934437066317,0.033156618475914,0.0087828515097499]],[[-0.029293701052666,0.0043224380351603,0.025914451107383],[0.014851333573461,-0.003707024268806,-0.0063098832033575],[-0.012155461125076,0.009158143773675,-0.077398143708706]],[[-0.04465090110898,0.029220964759588,0.017780000343919],[-0.016407016664743,-0.024980932474136,0.011486413888633],[0.10805946588516,0.026086125522852,-0.016755362972617]],[[-0.01910138502717,-0.0093670664355159,-0.07075446844101],[-0.0020348634570837,-0.0029969522729516,0.029341133311391],[0.030244478955865,-0.0057346220128238,0.044609952718019]],[[0.059065844863653,-0.071922771632671,-0.012830331921577],[0.012317671440542,0.0059254341758788,-0.033517241477966],[0.013291423209012,-0.0070546278730035,-0.052968215197325]],[[0.021297838538885,0.030580395832658,0.051847811788321],[-0.032015882432461,0.0070427632890642,0.012689261697233],[-0.035100024193525,-0.0032982097472996,0.052223946899176]],[[0.035657130181789,0.018689775839448,-0.071532964706421],[0.00032515724888071,0.02044553309679,-0.017420452088118],[-0.05379993468523,0.012263759039342,-0.066687949001789]],[[-0.063708737492561,0.023497952148318,0.017853399738669],[0.012784738093615,-0.0076031913049519,0.015371872112155],[-0.012371888384223,-0.012675843201578,0.0092018209397793]],[[0.027591241523623,-0.024875765666366,0.032911136746407],[0.028783865272999,-0.020401667803526,0.030316427350044],[0.037818472832441,0.02885146252811,0.01136196218431]],[[0.023598710075021,0.020006025210023,-0.012578207068145],[0.00092657591449097,0.011919520795345,0.0016189189627767],[-0.058881111443043,0.0049334364011884,0.017262097448111]],[[-0.048317242413759,-0.078796938061714,-0.046000719070435],[-0.058423202484846,0.031820520758629,0.066638790071011],[0.029010327532887,0.061299674212933,0.037741027772427]],[[-0.047155320644379,-0.046384397894144,0.00059188931481913],[0.035744268447161,-0.017329834401608,0.046430077403784],[0.048986691981554,-0.077320143580437,0.034151095896959]],[[0.0099339568987489,-0.023186597973108,-0.034599673002958],[0.030653450638056,0.03124637529254,-0.027967197820544],[0.041882250458002,-0.033488132059574,-0.031953576952219]],[[0.058562818914652,-0.068584725260735,0.03272445499897],[-0.013680508360267,-0.0019161377567798,0.038797147572041],[-0.0031053954735398,-0.024755420163274,0.035783875733614]],[[0.017257766798139,0.032578073441982,0.024250514805317],[0.00048046113806777,-0.0084735648706555,-0.00075767637463287],[0.03902680054307,-0.018889309838414,0.024653840810061]],[[2.41130219365e-05,0.025986306369305,-0.059687659144402],[-0.044538840651512,0.045281071215868,-0.013885244727135],[-0.015762519091368,0.0039472645148635,-0.0085572730749846]],[[0.0012744033010677,0.005291236564517,-0.046236697584391],[0.011802078224719,-0.036965698003769,0.010327270254493],[0.022387059405446,0.026200827211142,-0.020838402211666]],[[-0.0093316398561001,0.0047858534380794,0.031529657542706],[-0.023762609809637,0.031047042459249,0.053805790841579],[0.035676516592503,-0.0095106894150376,0.011175587773323]],[[-0.042374301701784,0.078176289796829,-0.065391704440117],[-0.012173473834991,0.070099018514156,0.026681201532483],[-0.036353912204504,-0.039873775094748,-0.052120827138424]],[[-0.017779100686312,-0.0029171120841056,-0.066164024174213],[-0.036087810993195,0.042879894375801,-0.043333619832993],[-0.030630242079496,-0.02550857514143,0.0012493804097176]],[[0.023306459188461,-0.0081779761239886,-0.06307078152895],[0.038752064108849,-0.0058022355660796,-0.011974721215665],[0.0048075583763421,0.056678108870983,0.062924429774284]],[[0.040842674672604,0.070892281830311,-0.057930905371904],[0.039317037910223,-0.034756544977427,0.061699088662863],[-0.040869671851397,-0.014092105440795,-0.010903378017247]],[[-0.038186363875866,-0.02306549064815,0.0054293847642839],[0.031774673610926,-0.029227374121547,-0.024510487914085],[0.018626846373081,-0.089693367481232,0.018354253843427]],[[0.012412273325026,-0.012295786291361,-0.034679740667343],[-0.0050303773023188,0.021375570446253,0.042691323906183],[0.038976743817329,-0.018387893214822,0.048743575811386]],[[0.019880674779415,0.061755057424307,-0.077646352350712],[0.0041922382079065,0.021711301058531,-0.0046750833280385],[0.017615351825953,0.0016299413982779,0.0083969188854098]],[[-0.0093473009765148,0.0073311016894877,0.0081164808943868],[0.059420548379421,-0.015801740810275,-0.036729585379362],[0.044089823961258,-0.013387576676905,-0.077131830155849]],[[-0.050138149410486,-0.044102046638727,0.021583316847682],[0.046149790287018,-0.005736768245697,0.031467761844397],[-0.048673283308744,-0.015427093021572,0.016793966293335]],[[0.021567545831203,0.028465732932091,-0.037881709635258],[0.058674000203609,0.0075502931140363,0.031454969197512],[-0.017873387783766,0.017892004922032,-0.014145132154226]],[[0.036598965525627,0.048588685691357,0.0026638808194548],[0.0018663350492716,0.0093581276014447,0.013760529458523],[0.015280825085938,-0.066289737820625,-0.04617752507329]],[[0.027324102818966,-0.029354253783822,0.070765793323517],[0.028066575527191,-0.046057105064392,0.02386418171227],[0.033124025911093,-0.0022901482880116,-0.00079687155084684]],[[0.0017145186429843,0.057712618261576,0.011949422769248],[0.055434696376324,-0.052444655448198,-0.018904250115156],[-0.027604946866632,-0.021173369139433,-0.0078021888621151]],[[0.066162250936031,-0.0038043321110308,0.0085649685934186],[-0.030274230986834,-0.067061118781567,-0.024590689688921],[-0.0044016852043569,0.005999612621963,-0.032584931701422]],[[-0.0070118079893291,-0.036741860210896,-0.014076321385801],[0.039947956800461,0.0091756144538522,-0.0068787606433034],[0.011463991366327,-0.028517927974463,0.02283245138824]],[[-0.019795641303062,0.059881780296564,0.015713764354587],[-0.024448210373521,-0.0086998734623194,0.017285704612732],[-0.057799454778433,-0.015799906104803,0.073126502335072]],[[0.026220148429275,-0.017423234879971,0.016077876091003],[0.043292324990034,-0.07746609300375,-0.016660029068589],[0.075701728463173,-0.043058037757874,0.030969964340329]],[[0.030948074534535,0.019810877740383,0.037492301315069],[-0.0077800760045648,0.022558500990272,-0.014342533424497],[-0.0050580245442688,-0.030396683141589,0.019985094666481]],[[-0.070328965783119,-0.016695510596037,0.022534957155585],[-0.043359573930502,-0.018986247479916,-0.045928228646517],[-0.015309385024011,-0.074720054864883,-0.067381285130978]],[[0.0358079187572,-0.011526081711054,0.013209781609476],[-0.0067455521784723,-0.030339151620865,-0.027997171506286],[0.0070796967484057,0.010712682269514,-0.023083293810487]],[[-0.039424922317266,-0.018948629498482,-0.034102864563465],[-0.0030543194152415,0.026903992518783,-0.066194742918015],[-0.0043894676491618,0.017256498336792,-0.084163971245289]],[[-0.0071896347217262,-0.038898468017578,-0.01574693992734],[0.011906743049622,0.050797984004021,2.9315680876607e-05],[-0.015473458915949,0.034460797905922,-0.0081332949921489]],[[0.05545449629426,-0.018453203141689,0.023800266906619],[0.0065486212261021,0.012151954695582,-0.013427865691483],[-0.024926161393523,0.002235816558823,0.016257969662547]],[[-0.033925075083971,0.057995103299618,0.0086285760626197],[-0.065442085266113,-0.034140408039093,-0.0025794038083404],[0.013274856843054,-0.0091658625751734,0.064686067402363]],[[-0.026690404862165,-0.016944104805589,0.070858903229237],[0.01247238740325,-0.030120039358735,0.037105519324541],[0.0031726383604109,-0.0050764451734722,0.029483383521438]],[[0.010178518481553,-0.0031707857269794,0.014757005497813],[0.01669604703784,0.0029742401093245,-0.0013590236194432],[0.074659004807472,0.033482536673546,0.036467988044024]],[[0.016486523672938,-0.025548232719302,0.00025888666277751],[0.045512843877077,-0.025290297344327,0.10844125598669],[0.014194201678038,-0.07986655831337,-0.0063442857936025]],[[-0.027367830276489,-0.0067173629067838,0.019143335521221],[0.028976194560528,-0.016386602073908,-0.059865418821573],[-0.025480085983872,0.031282816082239,0.014284917153418]],[[-0.028447460383177,-0.019613523036242,-0.044952478259802],[-0.087289057672024,-0.008312376216054,0.0094892671331763],[-0.061845015734434,-0.045972820371389,-0.023120416328311]],[[0.026764575392008,-0.1072249636054,-0.040902823209763],[0.014513722620904,-0.011337379924953,0.047576524317265],[0.00059814547421411,0.0039888862520456,0.0023742590565234]],[[-0.015422119759023,-0.006054034922272,0.062348831444979],[-0.0089009683579206,-0.039991963654757,0.067131385207176],[-0.0026848064735532,-0.0082472497597337,0.022913102060556]],[[0.02543243765831,-0.031709559261799,-0.046888895332813],[0.015255091711879,0.0040080901235342,0.018547533079982],[-0.074949376285076,0.037484526634216,0.033941477537155]],[[0.0079338252544403,-0.027055146172643,-0.023826152086258],[0.0093254316598177,0.004554592538625,-0.033481530845165],[0.037010040134192,0.015421233139932,-0.01605929248035]],[[-0.0043219104409218,0.01826986297965,-0.022253898903728],[0.028321957215667,0.0032261461019516,-0.0069236680865288],[-0.052938338369131,-0.0086624184623361,0.025305222719908]],[[-0.021149298176169,0.0436798222363,-0.01364519726485],[-0.042217202484608,0.049692247062922,0.012608535587788],[0.041668772697449,0.02173114195466,0.06141783669591]],[[-0.025747308507562,0.021998714655638,-0.0093045607209206],[0.012777831405401,-0.017520511522889,0.011388682760298],[-0.029903104528785,0.0040987813845277,-0.0024473485536873]]],[[[0.048077259212732,0.038971588015556,-0.059467829763889],[0.01131602562964,-0.0047338944859803,0.00923225376755],[0.036984853446484,0.018133077770472,0.026477068662643]],[[-0.016659889370203,0.032748959958553,0.045808088034391],[0.14330312609673,0.087003692984581,0.0044231028296053],[-0.014672764576972,0.012532647699118,0.0064543853513896]],[[0.014877317473292,-0.095152541995049,0.10091333091259],[0.014613349922001,-0.10761550813913,-0.045530136674643],[0.045898906886578,0.069149859249592,-0.085033856332302]],[[-0.028188755735755,0.028390916064382,0.030131688341498],[0.022380713373423,-0.083897538483143,-0.10371585190296],[0.040457792580128,-0.02175210788846,-0.081853643059731]],[[0.086588807404041,0.0084172887727618,0.068113826215267],[0.089551389217377,-0.057072605937719,0.0039984388276935],[-0.016132995486259,-0.039902944117785,-0.0315305814147]],[[-0.069545947015285,0.015824500471354,0.0031813771929592],[0.037149485200644,0.024024691432714,0.018645511940122],[0.10650923848152,-0.023579807952046,0.0738675147295]],[[0.021846896037459,-0.025720784440637,-0.10187613219023],[-0.025881106033921,-0.014655978418887,0.034642580896616],[-0.061760228127241,0.025639072060585,0.050192587077618]],[[0.056148733943701,-0.08296225965023,0.00064319669036195],[0.046899877488613,-0.024692052975297,0.066745541989803],[0.042312502861023,0.0027684699743986,-0.022858822718263]],[[0.0049084536731243,-0.060145892202854,0.15532803535461],[-0.010097279213369,0.1221532151103,-0.060117520391941],[0.036067295819521,-0.092495486140251,0.12771913409233]],[[-0.0079246312379837,0.079258874058723,-0.060770824551582],[0.060080375522375,0.0083716763183475,-0.0062121553346515],[0.010505727492273,-0.14874359965324,0.045578729361296]],[[-0.003991873934865,-0.040123008191586,0.016582291573286],[-0.0077238236553967,0.10046523064375,0.020236218348145],[0.056445755064487,0.057453658431768,-0.060832049697638]],[[0.017483586445451,0.083128966391087,-0.037166442722082],[-0.031377051025629,-0.072422683238983,-0.018416358157992],[-0.089181184768677,0.0016559620853513,-0.02574198320508]],[[-0.042033690959215,-0.11036041378975,0.015427558682859],[-0.062842816114426,-0.15376356244087,0.042381275445223],[-0.050554636865854,0.02351632155478,-0.024473298341036]],[[-0.054858196526766,0.018462512642145,-0.0042030047625303],[0.051655728369951,0.079657860100269,0.024198226630688],[0.0025408526416868,0.007761497516185,-0.035365492105484]],[[-0.063241891562939,-0.035162597894669,-0.045791659504175],[0.044178131967783,-0.061301477253437,-0.05168853327632],[-0.13783760368824,0.043555989861488,-0.017236463725567]],[[0.035216346383095,-0.041711557656527,-0.076687030494213],[-0.13445240259171,-0.01645859144628,-0.10077256709337],[0.028339402750134,-0.015378856100142,-0.083639554679394]],[[0.021331993862987,0.0032511183526367,-0.039711724966764],[0.055010937154293,0.027156390249729,-0.0046648983843625],[-0.025210861116648,-0.034184824675322,0.017191933467984]],[[0.011879151687026,0.010827635414898,-0.05362518876791],[0.037603996694088,-0.038001853972673,-0.054509051144123],[0.020923782140017,-0.070993050932884,-0.04326268658042]],[[-0.01431377325207,0.14150953292847,0.01508851069957],[0.0083602881059051,-0.057050440460443,0.060452423989773],[-0.1812825948,-0.14520731568336,-0.081535555422306]],[[-0.045227009803057,0.12922860682011,-0.062042530626059],[-0.01255114749074,0.12091770768166,-0.049906626343727],[-0.0069642798043787,-0.1048729121685,-0.040754806250334]],[[-0.091966107487679,-0.01438269764185,-0.048551343381405],[-0.054495450109243,0.00090991950128227,-0.11744382977486],[-0.033799830824137,-0.11238250136375,-0.028334135189652]],[[0.1097097992897,0.080144122242928,-0.028757128864527],[0.052365142852068,-0.01871257647872,-0.082699775695801],[-0.0314737893641,-0.042425394058228,-0.01734927482903]],[[-0.055343616753817,0.069553807377815,-0.029778067022562],[-0.01765058003366,0.030013132840395,-0.055588465183973],[-0.050374638289213,0.0020806228276342,0.014734056778252]],[[-0.10482048988342,0.020263956859708,0.054544229060411],[-0.025537498295307,0.045082356780767,0.010104664601386],[0.085060618817806,0.075899563729763,0.0077291671186686]],[[-0.06578816473484,-0.05110402405262,-0.049383722245693],[0.046524748206139,-0.11356581002474,0.0090032955631614],[0.056921795010567,0.023078681901097,-0.022249836474657]],[[0.072606720030308,0.061623856425285,0.035853993147612],[0.039250306785107,-0.036652904003859,0.061327148228884],[0.027828693389893,-0.1139975041151,0.10866697877645]],[[-0.067607238888741,0.077199295163155,0.13846147060394],[-0.064564004540443,0.057821802794933,0.10103199630976],[-0.11060812324286,0.0082347560673952,0.042375098913908]],[[-0.042683187872171,0.0069697974249721,0.17302758991718],[0.015128493309021,0.0080320341512561,-0.0046968511305749],[0.02383285574615,-0.026108691468835,-0.07889961451292]],[[0.048829331994057,-0.020499441772699,-0.0015494843246415],[0.011505451984704,-0.018727434799075,-0.020383825525641],[-0.0021828569006175,-0.0033707553520799,-0.026404220610857]],[[0.13093844056129,0.032542027533054,0.05926700681448],[-0.032348912209272,0.018419662490487,0.046158354729414],[-0.064286671578884,-0.0017444406403229,0.018740653991699]],[[0.017014645040035,0.0045309476554394,0.0057430393062532],[0.0069455741904676,-0.042537253350019,-0.065662883222103],[0.022285006940365,0.057800102978945,0.0072280000895262]],[[0.059803642332554,-0.047103095799685,-0.020835926756263],[-0.019144490361214,0.0051448084414005,-0.084012180566788],[-0.00465616164729,-0.028451943770051,0.043038576841354]],[[-0.013368797488511,-0.015856098383665,-0.013534926809371],[-0.044887166470289,-0.0025211116299033,-0.043718736618757],[-0.069784499704838,0.010249070823193,0.012641944922507]],[[-0.068685039877892,-0.13385191559792,-0.07757805287838],[-0.040175002068281,-0.0035177522804588,-0.0084559498354793],[-0.067285597324371,0.013721943832934,-0.0088393297046423]],[[-0.056110247969627,-0.12365436553955,-0.0026171368081123],[-0.0099993869662285,0.01247451081872,-0.069116912782192],[-0.02204486168921,0.015846425667405,0.018138328567147]],[[-0.10342321544886,-0.066537015140057,-0.015375561080873],[-0.075192146003246,0.069593764841557,-0.074072547256947],[-0.17788644134998,-0.056597370654345,-0.074985913932323]],[[0.057527218014002,0.042205173522234,-0.069216132164001],[-0.06828049570322,0.099182158708572,-0.073449797928333],[-0.035481460392475,0.0039615114219487,0.015463064424694]],[[-0.080200716853142,-0.0013253981014714,-0.017173258587718],[0.037708912044764,-0.014460092410445,0.055023897439241],[0.036807965487242,0.0024219476617873,0.065091356635094]],[[0.021692186594009,-0.028411773964763,0.0022136124316603],[0.03909720107913,0.047182857990265,0.029755018651485],[0.012568356469274,-0.090676598250866,0.0086275776848197]],[[0.062692493200302,0.022285589948297,-0.02727803774178],[0.012814540416002,0.041870504617691,-0.081790328025818],[0.018524901941419,0.01685506850481,0.079806745052338]],[[0.052723616361618,-0.06168394908309,0.010327532887459],[0.046253114938736,-0.054022632539272,-0.044217586517334],[-0.020586851984262,-0.1129374653101,-0.073082752525806]],[[-0.097839839756489,0.072568401694298,-0.048566106706858],[-0.040765106678009,-0.047562852501869,-0.051133561879396],[0.0041495375335217,-0.055110286921263,-0.081408485770226]],[[0.016161065548658,0.013360820710659,-0.075924672186375],[-0.025797406211495,0.0087624667212367,-0.042214691638947],[-0.053555157035589,-0.13612473011017,-0.044670440256596]],[[-0.10381443053484,-0.06800751388073,0.075046375393867],[-0.032580073922873,-0.059190768748522,0.071437492966652],[-0.017726184800267,0.048894852399826,0.10893005132675]],[[0.060065589845181,-0.037299156188965,0.01208084821701],[-0.026832470670342,-0.11480712890625,-0.085749998688698],[0.013279411010444,-0.017771413549781,-0.07749006152153]],[[0.027166392654181,0.037928875535727,-0.10573031753302],[0.041043616831303,-0.0086810998618603,-0.040051009505987],[-0.039588067680597,-0.11832193285227,0.01363234501332]],[[-0.044026162475348,0.038243528455496,0.011714404448867],[-0.075758323073387,0.029645012691617,0.023513950407505],[0.027412407100201,-0.023361913859844,0.024964567273855]],[[0.042354386299849,-0.015436499379575,-0.031389135867357],[-0.027878535911441,-0.04569873586297,0.00071390467928723],[-0.014607257209718,-0.029288668185472,0.047708503901958]],[[-0.10020314902067,0.064614899456501,0.069747544825077],[0.002894968027249,-0.038263618946075,-0.035731233656406],[0.054376807063818,-0.02190287783742,0.023168355226517]],[[0.006510513368994,-0.024055114015937,-0.063563846051693],[0.0022896372247487,-0.0012073314283043,-0.055144280195236],[0.016841351985931,0.05148159712553,-0.024163294583559]],[[-0.15280674397945,0.0028996150940657,-0.11292830854654],[-0.028706640005112,0.018419232219458,-0.028290197253227],[0.062281113117933,-0.056671813130379,-0.0099490312859416]],[[-0.073060244321823,0.0066153244115412,0.0071890810504556],[-0.024171510711312,-0.00036097812699154,-0.099958352744579],[0.026023020967841,0.093411028385162,-0.10351191461086]],[[0.021453438326716,-0.03551372513175,0.079033486545086],[-0.046524833887815,-0.095959275960922,0.029065182432532],[-0.042172878980637,-0.068450957536697,0.069907166063786]],[[-0.066132873296738,-0.0052628237754107,-0.0056550181470811],[-0.01401695702225,0.044436190277338,-0.11491707712412],[-0.010981237515807,-0.10608617961407,-0.051263149827719]],[[-0.026821985840797,-0.04207730665803,-0.049135599285364],[-0.020160682499409,-0.040526781231165,-0.025386923924088],[0.085871905088425,-0.031332444399595,-0.0018040065187961]],[[0.034023210406303,0.021862534806132,-0.0034319465048611],[0.040033139288425,-0.098486669361591,-0.043563973158598],[-0.065396420657635,-0.062621787190437,-0.046086706221104]],[[-0.011809524148703,0.012371799908578,0.1055733859539],[0.015005517750978,0.021485911682248,0.01700596138835],[0.042538579553366,0.032596942037344,-0.004499779548496]],[[0.023036785423756,-0.14184673130512,-0.0015684858663008],[0.014633314684033,-0.099808931350708,0.020853087306023],[-0.079378046095371,-0.10188208520412,-0.041746262460947]],[[0.072389371693134,-0.028098367154598,-0.02302322909236],[0.040180835872889,0.025406716391444,0.0088882772251964],[0.0023489452432841,0.028271624818444,-0.010267845354974]],[[0.0094400569796562,-0.001688506337814,-0.038416866213083],[0.018118085339665,-0.046136118471622,-0.031435117125511],[0.072063162922859,0.020000047981739,-0.031779658049345]],[[-0.024500630795956,0.00010478059994057,0.0078651169314981],[-0.013577156700194,0.012613339349627,-0.0048720384947956],[0.0077167339622974,-0.074528463184834,-0.087460525333881]],[[-0.055956792086363,0.028173288330436,-0.070550836622715],[-0.040260694921017,-0.027908621355891,-0.09567528963089],[-0.11088810861111,-0.061404280364513,-0.020778661593795]],[[-0.063711889088154,-0.13781890273094,-0.033211015164852],[0.15735660493374,-0.012603810057044,0.01164807472378],[-0.11186686903238,-0.10345889627934,-0.080377794802189]],[[-0.023788783699274,0.0049724751152098,0.03425083681941],[-0.0018272761953995,0.014339056797326,-0.076596431434155],[0.011364936828613,0.052438579499722,-0.021331239491701]],[[-0.049521066248417,-0.032052475959063,0.015307560563087],[-0.059312544763088,-0.011392599903047,-0.0091526992619038],[-0.047100830823183,-0.065214432775974,0.0062425532378256]],[[0.00015127591905184,0.16873750090599,0.074761539697647],[-0.03417444974184,-0.040103558450937,-0.05171450227499],[-0.077495075762272,-0.048976588994265,0.0035769492387772]],[[0.030139939859509,-0.090436421334743,-0.033763229846954],[-0.052817448973656,-0.12440975010395,-0.056149732321501],[-0.094382166862488,0.025505149737,0.057299084961414]],[[0.01916977763176,0.05827247723937,-0.084278546273708],[-0.029832912608981,0.025300681591034,0.056767091155052],[0.026104681193829,-0.073266439139843,0.091961733996868]],[[-0.019507303833961,-0.045257464051247,0.06920313835144],[-0.026495061814785,-0.093096479773521,0.024377726018429],[-0.066178530454636,-0.072065129876137,0.06211731210351]],[[0.077440962195396,-0.0033391281031072,-0.0046937661245465],[0.046140938997269,-0.10505772382021,-0.086599551141262],[-0.019823346287012,-0.03483248129487,0.11178317666054]],[[-0.02460559643805,-0.037782300263643,-0.0090478053316474],[0.018376622349024,-0.010128438472748,-0.041132111102343],[0.009107057005167,0.016125017777085,-0.066729329526424]],[[0.085374727845192,0.0016215648502111,-0.077370122075081],[-0.029096344485879,-0.0097321914508939,-0.039395280182362],[0.11885580420494,-0.027414154261351,0.034871734678745]],[[0.052443619817495,-0.010974297299981,-0.019211210310459],[-0.06866817176342,-0.047385741025209,-0.14555016160011],[-0.0467290841043,0.013138723559678,-0.0097457356750965]],[[-0.034703563898802,-0.043411683291197,0.041460234671831],[0.027203153818846,-0.052302144467831,0.0089714545756578],[-0.052011985331774,0.053809318691492,0.095708414912224]],[[0.044922634959221,0.032188504934311,-0.21113742887974],[-0.050901602953672,0.062389884144068,-0.055511191487312],[-0.10062488168478,-0.18802851438522,0.010442974045873]],[[-0.052320435643196,0.039849016815424,0.016337675973773],[-0.072843357920647,-0.026108738034964,0.054018188267946],[-0.060722474008799,0.042869172990322,0.13588072359562]],[[-0.041886698454618,-0.044874083250761,0.026665145531297],[-0.02394419722259,-0.016865197569132,-0.042448826134205],[-0.077959008514881,-0.035894483327866,0.053108483552933]],[[0.078531488776207,0.005778172519058,0.034054480493069],[0.033129900693893,-0.058375656604767,-0.078979790210724],[-0.10635565966368,0.08230996131897,-0.12694928050041]],[[-0.076841466128826,-0.039183642715216,0.029222844168544],[-0.10867714881897,-0.076823577284813,-0.024772092700005],[0.066068537533283,-0.06640861928463,0.022157283499837]],[[0.05939207971096,0.056276608258486,-0.083628132939339],[0.034778513014317,0.10514882951975,0.032007414847612],[-0.11295387893915,-0.01502837240696,0.0064268056303263]],[[0.020278744399548,-0.034730929881334,-0.029014302417636],[-0.035217076539993,0.042817614972591,-0.014953223988414],[0.047757301479578,-0.0058814156800508,-0.040095739066601]],[[0.029917068779469,0.004993359092623,-0.03179220110178],[-0.022845098748803,-0.014280772767961,-0.10202787816525],[-0.017722034826875,0.12088780850172,0.029767483472824]],[[-0.030735084787011,0.016216842457652,0.0090304845944047],[-0.052857298403978,0.03244249150157,-0.061564270406961],[0.037559028714895,-0.017986109480262,-0.061950512230396]],[[-0.0007268906920217,-0.019214816391468,-0.019872926175594],[0.025530887767673,-0.017891077324748,-0.044955972582102],[0.015191138722003,-0.052528206259012,-0.038359083235264]],[[-0.057692397385836,0.012443786486983,-0.038754601031542],[0.0041520679369569,0.02944902330637,-0.00041395594598725],[-0.063866503536701,-0.062679067254066,-0.030560549348593]],[[0.0027421365957707,0.00034477148437873,-0.039748206734657],[-0.061837580054998,-0.058409068733454,-0.0059820916503668],[-0.016337024047971,-0.016549944877625,0.015200784429908]],[[0.025185668841004,0.0090819280594587,0.025364136323333],[0.027608145028353,0.041909128427505,-0.054594457149506],[0.034757558256388,-0.10188938677311,0.0054310811683536]],[[0.035148240625858,0.017882082611322,0.035290986299515],[-0.096768006682396,0.01105279661715,-0.055081438273191],[0.036801427602768,0.030468009412289,-0.098088592290878]],[[-0.00080384098691866,0.064650841057301,-0.042760692536831],[-0.016835162416101,0.027721045538783,0.013179347850382],[-0.0024484959430993,0.0011327657848597,-0.09049716591835]],[[0.0062539954669774,0.011169878765941,-0.007487737108022],[-0.07374931126833,-0.047916725277901,-0.017989600077271],[-0.066602319478989,0.0020865593105555,-0.066263385117054]],[[0.0251629576087,0.071798250079155,-0.13335439562798],[-0.045002728700638,-0.0048726801760495,-0.050497561693192],[-0.0049034170806408,-0.016080452129245,-0.026177383959293]],[[0.020105045288801,-0.064995720982552,0.056933052837849],[-0.0052947467193007,0.031890083104372,-0.063740633428097],[0.016127038747072,0.020985174924135,-0.13657586276531]],[[-0.010641757398844,-0.070476561784744,-0.0082640750333667],[-0.033762846142054,-0.018217302858829,0.0083261299878359],[0.04268966242671,-0.10572443157434,0.10152603685856]],[[0.045325074344873,-0.015949526801705,0.049177385866642],[-0.011586613953114,-0.13659124076366,0.0082264645025134],[0.05262503772974,-0.025542769581079,-0.059796888381243]],[[-0.073675721883774,-0.012603863142431,-0.0076204622164369],[-0.10593941807747,0.065436266362667,0.021387660875916],[-0.10635834932327,0.070471249520779,-0.071979127824306]],[[0.0052888570353389,0.0085917031392455,0.053623750805855],[-0.0488077737391,0.042236384004354,-0.0013803488109261],[0.046819258481264,0.0016317428089678,-0.059371091425419]],[[-0.10279214382172,-0.012724911794066,0.0060994881205261],[-0.050242628902197,0.066638492047787,-0.0067387707531452],[0.023029889911413,0.067661620676517,0.014841329306364]],[[-0.071989543735981,-0.092473857104778,0.054008442908525],[-0.055950749665499,0.027394050732255,0.069113075733185],[0.069477930665016,-0.013112178072333,0.01357616763562]],[[-0.077608294785023,0.038864240050316,0.030705781653523],[0.157141700387,0.0013474595034495,0.017628835514188],[0.063548646867275,-0.013801611959934,0.067704670131207]],[[0.016387667506933,-0.042150445282459,-0.03692876920104],[0.021647363901138,0.024533467367291,-0.046988192945719],[0.044906288385391,0.039511229842901,0.077225364744663]],[[0.10264350473881,-0.015437488444149,-0.019519917666912],[0.092985317111015,-0.069536089897156,-0.00088581582531333],[0.051297280937433,-0.080771662294865,-0.0069268774241209]],[[0.042529586702585,-0.034377224743366,0.0041806856170297],[0.054444391280413,-0.044527806341648,-0.032708588987589],[0.032453786581755,-0.066461220383644,-0.065678484737873]],[[0.0039681792259216,-0.14696824550629,-0.098942577838898],[0.043335542082787,-0.085005022585392,-0.07902867347002],[0.032281681895256,0.10249965637922,0.084551297128201]],[[-0.07851880043745,-0.073407642543316,0.045645192265511],[0.010372877120972,-0.1031244546175,0.045020431280136],[-0.095934502780437,0.0022214539349079,0.053820919245481]],[[0.0018636123277247,-0.035390716046095,0.0014359742635861],[0.018534926697612,-0.030276162549853,0.035609718412161],[0.030696185305715,-0.054486319422722,-0.010120492428541]],[[-0.16780929267406,-0.010714873671532,0.019712675362825],[-0.019411841407418,0.028203396126628,-0.063788793981075],[0.02128211595118,0.034684672951698,0.21753340959549]],[[0.030162902548909,0.065830625593662,0.049669202417135],[0.038438383489847,-0.011385066434741,0.023737978190184],[-0.0079626012593508,-0.072076171636581,-0.10308386385441]],[[-0.037954494357109,0.03705445677042,0.030039630830288],[-0.015554117970169,-0.072331063449383,-0.0050520161166787],[-0.0032377897296101,0.034108601510525,-0.11552362889051]],[[-0.043476842343807,-0.060884017497301,0.01635685749352],[0.012655346654356,-0.027478905394673,0.043943502008915],[-0.078498519957066,0.032311242073774,0.0096726771444082]],[[-0.089948743581772,-0.024458192288876,0.03585784509778],[-0.10971067100763,-0.0010891180718318,-0.083636149764061],[-0.057909060269594,0.0091913724318147,0.028610153123736]],[[0.028469376266003,0.00069356855237857,-0.07373122125864],[0.048331428319216,0.033561028540134,-0.027556914836168],[-0.0021574802231044,-0.0073642935603857,-0.030986446887255]],[[-0.047608081251383,-0.063106767833233,-0.081060230731964],[-0.051288321614265,-0.050012804567814,0.0020210309885442],[-0.052140522748232,-0.10858280211687,0.063595406711102]],[[-0.016505271196365,0.045661371201277,-0.043571561574936],[0.033648710697889,0.068470478057861,-0.005036823451519],[0.035981550812721,0.081602148711681,-0.0038067628629506]],[[-0.053953226655722,-0.026251265779138,0.011039171367884],[-0.0021914602257311,-0.027225937694311,0.017369268462062],[0.04981866106391,-0.0047326385974884,0.079543724656105]],[[-0.19808094203472,0.034283496439457,0.087298527359962],[-0.15395770967007,0.084114424884319,0.073358781635761],[-0.075379706919193,0.083098709583282,0.021565802395344]],[[-0.099995046854019,-0.01093537453562,-0.0057056648656726],[-0.017052875831723,0.021156147122383,0.051466792821884],[-0.0036008271854371,-0.045910965651274,0.077984258532524]],[[-0.10493538528681,0.028160514310002,0.0027311115991324],[0.057896185666323,-0.018851824104786,0.018320498988032],[0.011574047617614,-0.057550694793463,0.053033117204905]],[[-0.088087685406208,-0.0028678341768682,0.039166647940874],[-0.1235767826438,0.018740320578218,0.059507004916668],[-0.06374105066061,-0.073555447161198,0.021835438907146]],[[0.0087415473535657,0.021038454025984,0.0095577361062169],[-0.011877129785717,0.019948268309236,-0.056276738643646],[-0.02238541841507,-0.084812544286251,-0.072687327861786]],[[-0.001055619912222,-0.015043910592794,0.041867207735777],[0.04534812271595,0.085446551442146,0.072784170508385],[0.026037698611617,-0.023177899420261,-0.088748931884766]],[[0.0065349922515452,0.016024395823479,0.019792025908828],[0.020043650642037,-0.051795247942209,-0.015536161139607],[0.046363849192858,0.052999887615442,0.026626203209162]],[[-0.0021494715474546,0.064112924039364,0.0058352770283818],[0.006038605235517,0.091185010969639,-0.050258614122868],[0.058702167123556,0.10263972729445,0.073227614164352]],[[0.071814067661762,0.012480823323131,-0.050839144736528],[0.012222637422383,-0.0260588247329,-0.018643576651812],[0.038867149502039,0.08103884011507,0.013872836716473]],[[-0.032510012388229,0.049643374979496,-0.0065754516981542],[-0.057903837412596,0.0027119657024741,0.051742251962423],[0.084293588995934,0.0043669808655977,0.05903347209096]],[[0.084995597600937,-0.027973044663668,-0.075360581278801],[0.05623959377408,-0.060100123286247,-0.10386037826538],[-0.011014371179044,0.058757420629263,0.060744967311621]],[[0.10750551521778,-0.062578283250332,-0.096167407929897],[0.049549717456102,-0.043189000338316,0.0065539325587451],[0.028612572699785,0.052729081362486,0.0083688711747527]],[[-0.0015511733945459,-0.11601413786411,-0.035664293915033],[8.0817990237847e-05,-0.11217857897282,0.014301206916571],[-0.054629053920507,-0.04655497521162,0.036309715360403]],[[-0.10013389587402,0.00075102137634531,0.024830820038915],[0.0018642278155312,-0.049625813961029,0.013206094503403],[-0.12575252354145,-0.14942617714405,0.0061662220396101]]],[[[0.028671842068434,0.0055449772626162,-0.14087952673435],[0.008015027269721,-0.011482736095786,0.037544768303633],[-0.073590874671936,0.096313655376434,0.04376795142889]],[[0.27714774012566,-0.090094961225986,0.010639751330018],[-0.265390843153,-0.10055151581764,0.10927841812372],[0.031415000557899,-0.055406793951988,0.070635177195072]],[[-0.059719234704971,-0.095275670289993,-0.049486249685287],[0.21399016678333,-0.023514460772276,0.13085667788982],[0.072491653263569,0.14395250380039,-0.078488454222679]],[[-0.0644496306777,-0.082651637494564,0.051017250865698],[-0.043574031442404,-0.15455365180969,0.020073851570487],[0.17707327008247,0.05865890532732,-0.22633436322212]],[[-0.024760169908404,0.085587099194527,-0.085099913179874],[0.27269724011421,0.11923589557409,0.099041409790516],[0.039926838129759,-0.053318317979574,-0.080546714365482]],[[0.010036997497082,-0.13351114094257,-0.046832021325827],[-0.011264160275459,0.062184654176235,0.077046781778336],[-0.076120607554913,-0.032404560595751,0.18026745319366]],[[0.14104840159416,-0.0087818298488855,0.065311707556248],[-0.0074965539388359,-0.0063911760225892,-0.030431216582656],[-0.0041628298349679,-0.037308555096388,-0.022013373672962]],[[0.078556410968304,0.24031309783459,-0.15147006511688],[0.029574822634459,0.13659130036831,0.079996772110462],[-0.17378966510296,-0.094146117568016,0.15522055327892]],[[-0.035643488168716,0.027510093525052,0.12272892147303],[0.20840640366077,-0.003053976688534,-0.2130414545536],[-0.031476937234402,0.015743289142847,0.099858731031418]],[[-0.20448558032513,0.033411167562008,-0.0069305910728872],[0.26686519384384,0.0084195248782635,0.011273599229753],[-0.055410664528608,-0.21629196405411,0.0099513614550233]],[[0.00040025595808402,0.023145269602537,0.022636696696281],[-0.050292067229748,0.095476992428303,-0.11375663429499],[-0.037500310689211,0.11733733862638,0.30113905668259]],[[-0.075524926185608,0.039084803313017,0.0032359415199608],[-0.049214567989111,-0.0097215641289949,0.12837581336498],[0.017723748460412,-0.13226635754108,0.0079828575253487]],[[-0.1208873167634,0.064224511384964,-0.12026736885309],[-0.17156709730625,-0.1691031306982,0.025140028446913],[0.11201958358288,0.090533144772053,-0.012796506285667]],[[0.092318117618561,-0.084709227085114,-0.016491673886776],[0.060055386275053,-0.070539951324463,-0.11228504031897],[0.069680765271187,-0.081575684249401,-0.032167710363865]],[[-0.024816531687975,0.041910670697689,-0.039643976837397],[-0.0019066866952926,0.069609180092812,-0.1147081181407],[-0.043056569993496,-0.030319012701511,-0.1357895731926]],[[-0.012858699075878,-0.22494295239449,0.080755010247231],[0.12213108688593,0.09029545634985,-0.072909355163574],[0.0042051738128066,-0.14583504199982,-0.13254973292351]],[[0.11157959699631,0.14926834404469,-0.16848166286945],[-0.14690136909485,-0.052113421261311,0.014114414341748],[-0.090036369860172,0.094171665608883,-0.10481408983469]],[[0.060175433754921,0.028176683932543,0.0006243126699701],[0.029282374307513,0.14844469726086,-0.055299825966358],[-0.0036867689341307,0.06687443703413,-0.050539199262857]],[[-0.13463744521141,-0.073532871901989,-0.056222319602966],[0.0038729133084416,0.057572279125452,0.081841938197613],[-0.14409166574478,0.073261111974716,0.24238623678684]],[[0.0055225505493581,0.076496794819832,-0.073913186788559],[-0.047975055873394,0.12135688215494,-0.13564270734787],[-0.061698898673058,-0.063264511525631,0.03211423009634]],[[-0.045288246124983,-0.033790182322264,0.12100349366665],[-0.11309730261564,-0.020458182319999,-0.17552442848682],[-0.16822278499603,-0.11075468361378,-0.18542528152466]],[[-0.049939274787903,-0.099330648779869,-0.0081782741472125],[0.012379336170852,-0.026944443583488,-0.089493006467819],[0.009320585988462,-0.072446882724762,-0.1813350468874]],[[-0.19633691012859,-0.012767927721143,-0.15941208600998],[-0.12259452044964,0.17310956120491,0.023345114663243],[-0.21834622323513,0.031547740101814,-0.0013293216470629]],[[-0.090743139386177,0.01085067819804,0.037615824490786],[0.095565721392632,0.067329384386539,0.13776122033596],[0.051648296415806,0.010335988365114,-0.15722557902336]],[[-0.047056462615728,0.1173607558012,0.060526959598064],[0.029884496703744,0.025618251413107,-0.083689317107201],[0.060940399765968,-0.068278476595879,-0.0083450302481651]],[[-0.10423051565886,0.0063899913802743,0.049025479704142],[0.083392657339573,-0.088909767568111,0.18877764046192],[-0.1017347201705,-0.14171290397644,-0.12160722911358]],[[-0.005465513560921,0.10260905325413,0.046498171985149],[0.02340279892087,-0.076734006404877,0.051722016185522],[-0.085881263017654,0.00021592230768874,0.05772390961647]],[[-0.067999079823494,0.026284527033567,-0.2841591835022],[0.09342385828495,-0.013111058622599,-0.10810012370348],[0.095033727586269,0.073166638612747,-0.012846767902374]],[[-0.0085759637877345,-0.17607392370701,-0.12026328593493],[-0.11314635723829,-0.037492346018553,0.0024922580923885],[-0.046311292797327,0.040644329041243,-0.20189610123634]],[[0.051304318010807,-0.060036897659302,-0.01398669090122],[0.14824987947941,-0.0045067677274346,-0.003349875099957],[0.033315278589725,-0.0012691433075815,-0.084753781557083]],[[-0.043429609388113,-0.056107167154551,-0.19769638776779],[0.14234110713005,0.080324649810791,-0.070138022303581],[-0.1065811291337,0.15760520100594,0.047955278307199]],[[0.12108208239079,-0.040938951075077,0.079233922064304],[0.050260238349438,-0.082733921706676,-0.036354526877403],[0.049586102366447,-0.10642923414707,-0.0062848427332938]],[[0.1298605799675,0.0087558450177312,-0.034753978252411],[-0.028465228155255,0.024434139952064,0.085785061120987],[-0.019008843228221,-0.027277881279588,-0.047586414963007]],[[-0.19905412197113,0.020866742357612,0.099583566188812],[-0.012965727597475,0.066829912364483,-0.083519987761974],[-0.033740729093552,-0.041264452040195,-0.077554740011692]],[[0.16749438643456,-0.14378991723061,-0.051168069243431],[0.070108838379383,-0.098064832389355,-0.067627549171448],[0.030549990013242,0.10259404778481,-0.16478200256824]],[[-0.0056577809154987,-0.058598261326551,0.0073770834133029],[0.062506958842278,-0.022644348442554,0.040472958236933],[0.070852555334568,-0.0016831640386954,0.055960614234209]],[[0.20866593718529,0.071462571620941,-0.078708492219448],[0.046631779521704,0.082608766853809,0.04265520721674],[-0.072598829865456,0.0047103972174227,0.074595078825951]],[[0.0929119810462,0.029639769345522,-0.0037808385677636],[0.054548256099224,-0.051393408328295,0.051184941083193],[-0.078049451112747,-0.032585866749287,0.034987974911928]],[[0.11268343776464,-0.01792567409575,0.0055020456202328],[-0.085398942232132,-0.017369199544191,-0.11621153354645],[0.2008438706398,-0.1362126916647,-0.20015098154545]],[[0.031816173344851,0.21291188895702,-0.052980929613113],[0.0055206269025803,0.042571283876896,-0.1436071395874],[0.022617319598794,-0.25723418593407,0.064857445657253]],[[-0.097525782883167,0.059712465852499,-0.026864837855101],[0.19500921666622,-0.040533486753702,0.020158192142844],[0.1451567709446,0.054637059569359,0.040526106953621]],[[0.09900213778019,0.035013187676668,0.1554117500782],[-0.038584247231483,0.077592507004738,0.073674626648426],[0.046793326735497,0.085846565663815,-0.033509537577629]],[[0.021686386317015,-0.010644666850567,-0.17070941627026],[0.10819943249226,-0.059036139398813,-0.060941115021706],[-0.042479608207941,-0.14131613075733,-0.16773366928101]],[[-0.036183308809996,-0.060817271471024,0.04550065100193],[-0.033388376235962,-0.068439573049545,0.022601995617151],[0.060518495738506,0.060834880918264,-0.022676372900605]],[[-0.13741877675056,-0.10617765039206,-0.2145968079567],[0.2298631221056,-0.13236683607101,-0.12743619084358],[0.070073634386063,0.042413331568241,0.0013272655196488]],[[-0.10084503889084,-0.051244638860226,0.057150389999151],[-0.035610541701317,0.050785686820745,-0.036536850035191],[0.034314930438995,-0.10136862099171,-0.10132017731667]],[[-0.012631799094379,0.066398791968822,-0.1395633071661],[0.0046986001543701,0.09669104963541,-0.19069351255894],[-0.059748817235231,-0.012068094685674,0.079640559852123]],[[-0.080105751752853,-0.043252412229776,-0.053260300308466],[0.022238602861762,-0.10195277631283,-0.063986986875534],[-0.10164052993059,-0.15735459327698,0.1383720189333]],[[0.082685567438602,-0.1125041693449,-0.15373708307743],[0.098779290914536,0.13108067214489,0.038610085844994],[0.0069405627436936,-0.020236682146788,0.043041869997978]],[[-0.13053548336029,-0.16493090987206,0.050561331212521],[-0.010409912094474,-0.047860026359558,0.038188364356756],[-0.028720708563924,0.067945972084999,0.039210073649883]],[[-0.12597504258156,-0.015684831887484,0.033977188169956],[-0.1098291054368,-0.18715664744377,0.082834929227829],[-0.11109286546707,-0.14172992110252,0.13687904179096]],[[-0.15133839845657,-0.062948890030384,-0.12603856623173],[0.092012405395508,-0.1015617325902,0.03554255142808],[0.031202787533402,0.047425739467144,-0.062859982252121]],[[-0.024197084829211,0.0035630513448268,-0.035419896245003],[0.10333792865276,-0.034661490470171,0.021869270130992],[0.057454451918602,-0.065702058374882,-0.047135975211859]],[[0.070380032062531,-0.069439209997654,-0.07831784337759],[-0.0058152582496405,-0.015922157093883,-0.12538938224316],[-0.043288789689541,0.073861926794052,0.25355359911919]],[[0.10198176652193,-0.043761193752289,-0.099733896553516],[0.033047948032618,0.047523450106382,0.074931271374226],[0.12480455636978,-0.034343276172876,0.10416233539581]],[[0.51377308368683,-0.076302975416183,-0.034677933901548],[-0.17950345575809,-0.060180619359016,-0.066462092101574],[-0.038274049758911,-0.094140328466892,0.10321137309074]],[[-0.0098351798951626,-0.063304260373116,0.08356910943985],[0.054833807051182,-0.12350494414568,0.18095156550407],[-0.10356024652719,-0.15631322562695,-0.14739283919334]],[[-0.069114692509174,-0.22105929255486,0.0062650009058416],[-0.030420126393437,-0.10796909034252,-0.028620371595025],[0.037758458405733,-0.10191861540079,-0.045088861137629]],[[-0.036427076905966,0.030887551605701,-0.14807145297527],[0.03400819003582,-0.010208686813712,-0.13410468399525],[-0.050839591771364,-0.024016831070185,-0.011513508856297]],[[-0.087810344994068,0.0037084517534822,0.10934784263372],[-0.1594385355711,-0.098636031150818,-0.11751861125231],[0.14161115884781,0.16174821555614,0.12410549074411]],[[0.040258165448904,0.034607108682394,-0.050561800599098],[-0.082343094050884,-0.0054498668760061,-0.078812450170517],[-0.08048240840435,-0.085118249058723,-0.15783376991749]],[[-0.078505747020245,0.057666730135679,-0.059833392500877],[0.063777789473534,0.010463166981936,-0.09390340000391],[-0.14188787341118,-0.011737197637558,-0.066215597093105]],[[-0.21088945865631,0.063673593103886,0.034901082515717],[0.42654031515121,-0.13671913743019,-0.1034311875701],[0.14757829904556,-0.011696220375597,-0.082805596292019]],[[0.18725435435772,-0.14966851472855,-0.12450572103262],[0.048230152577162,0.085419930517673,-0.036555152386427],[0.010197808034718,0.13303218781948,0.0027986238710582]],[[-0.024560471996665,-0.083908081054688,0.16290763020515],[-0.00041684450116009,-0.04429479315877,0.13335393369198],[0.0041983434930444,-0.071800954639912,0.066759891808033]],[[0.45504423975945,-0.18125998973846,-0.052531953901052],[-0.030159110203385,-0.078924156725407,-0.035426251590252],[0.056940402835608,0.0079816756770015,0.061347953975201]],[[-0.14499327540398,0.11546187102795,-0.04150739684701],[0.097566694021225,-0.0078024100512266,-0.0013208439340815],[-0.09475763887167,-0.020441096276045,0.035479374229908]],[[0.076343283057213,-0.13896822929382,-0.0077936281450093],[-0.30497562885284,-0.090288057923317,-0.11984062939882],[-0.025948774069548,-0.13248188793659,-0.025112541392446]],[[0.0097224041819572,0.010752327740192,-0.070047982037067],[-0.063601464033127,-0.060089163482189,-0.13540984690189],[0.043927516788244,-0.059771969914436,-0.041396621614695]],[[0.3315737247467,0.12896019220352,-0.065556824207306],[-0.078094825148582,-0.12543344497681,0.07398347556591],[-0.0019420316675678,-0.0074407886713743,-0.082396186888218]],[[-0.01016869302839,-0.0086400210857391,0.071602493524551],[0.027981232851744,2.8570997528732e-05,-0.13028153777122],[0.04834321513772,0.0078871818259358,-0.067042872309685]],[[-0.1151489764452,-0.055532865226269,0.045176167041063],[-0.013538716360927,-0.01475915312767,0.24305944144726],[-0.05462359264493,0.042235288769007,-0.11627901345491]],[[-0.013024818152189,-0.039489679038525,-0.026536859571934],[-0.075872614979744,-0.028604105114937,-0.065358318388462],[-0.069738671183586,-0.15299881994724,0.045086596161127]],[[-0.2166316062212,0.0064624883234501,0.0085429027676582],[0.12731020152569,0.12195909768343,0.02160469815135],[-0.059067871421576,-0.056917764246464,0.10200122743845]],[[0.011198450811207,-0.11225147545338,-0.098402127623558],[0.031064935028553,-0.07215678691864,-0.1656070202589],[-0.092007033526897,0.054808001965284,0.045116823166609]],[[-0.11846533417702,-0.061011575162411,-0.21636044979095],[-0.030368167907,0.14337308704853,0.14358934760094],[0.033818121999502,-0.07937790453434,0.080975115299225]],[[-0.24803297221661,0.0096763893961906,-0.0097539499402046],[0.072403855621815,-0.072844229638577,-0.10872073471546],[-0.060537558048964,-0.022005755454302,-0.18251459300518]],[[-0.0060467054136097,-0.17993324995041,0.033586215227842],[-0.16548283398151,-0.064954116940498,0.068867780268192],[0.081204645335674,0.061609514057636,-0.046721257269382]],[[0.019587066024542,-0.076605007052422,-0.10564624518156],[0.12548133730888,0.11152558028698,0.11490768939257],[0.16647687554359,0.02063968591392,0.097195766866207]],[[-0.030902989208698,0.11282599717379,-0.083839625120163],[-0.097779422998428,-0.1673466861248,-0.040498524904251],[-0.1218120008707,-0.037503704428673,0.1374254822731]],[[-0.1251110881567,-0.01210168376565,0.082416713237762],[0.038121454417706,-0.10883060842752,-0.053373258560896],[-0.032035641372204,-0.17826572060585,0.20027722418308]],[[0.18826460838318,0.0051352535374463,-0.079765632748604],[-0.030667772516608,-0.087523095309734,0.0070801652036607],[-0.037512023001909,-0.10847119241953,-0.05864717438817]],[[0.13345205783844,-0.1023870036006,-0.014331402257085],[0.017473764717579,0.12066503614187,0.11409492045641],[0.15843012928963,-0.03291392698884,-0.056859195232391]],[[-0.091485813260078,0.00051037763478234,0.053677894175053],[-0.1721049696207,-0.084933720529079,0.011270708404481],[0.12399711459875,0.0097196362912655,-0.0056724259629846]],[[-0.029187723994255,0.066329278051853,-0.0045514688827097],[-0.040547896176577,0.076597735285759,0.02551100961864],[-0.20333778858185,-0.015842445194721,-0.038510486483574]],[[-0.077076561748981,0.14176672697067,-0.011150984093547],[0.012934324331582,0.14447939395905,-0.013088572770357],[-0.056366685777903,0.095082566142082,0.087857067584991]],[[-0.12481236457825,-0.067800462245941,-0.058891579508781],[0.043608233332634,0.065801478922367,0.070155419409275],[-0.16123028099537,-0.05594776943326,-0.13132405281067]],[[-0.32496052980423,0.046983171254396,0.038163352757692],[-0.091296873986721,0.080826848745346,0.060103252530098],[-0.1221067160368,0.025158505886793,0.064567565917969]],[[-0.15837748348713,0.079076811671257,-0.049551080912352],[-0.15697067975998,-0.012567533180118,0.094787791371346],[-0.10299258679152,0.16364306211472,0.14887250959873]],[[-0.14530710875988,-0.10844706743956,-0.09740799665451],[0.060901302844286,-0.043483532965183,0.15718111395836],[0.022703228518367,-0.13167457282543,0.016750387847424]],[[-0.0078543126583099,0.096049427986145,-0.010816073976457],[-0.1195068359375,0.0089950431138277,0.1747874468565],[0.1085719615221,-0.038498561829329,0.19617682695389]],[[0.32991129159927,-0.058261472731829,-0.093414172530174],[-0.21914200484753,0.11889731884003,-0.2323696911335],[-0.068895779550076,0.0056687481701374,-0.057875972241163]],[[0.010075997561216,0.0020261891186237,0.14322392642498],[0.016843572258949,-0.028898829594254,-0.15158957242966],[0.25572994351387,0.12139701098204,0.11063458770514]],[[-0.15401856601238,-0.070584617555141,0.027208400890231],[-0.055719014257193,-0.046154603362083,0.068968616425991],[0.040235348045826,-0.026307607069612,-0.01544198486954]],[[-0.05046759173274,0.098214983940125,-0.09290524572134],[0.13601416349411,0.046506009995937,-0.1146361976862],[0.042739752680063,0.0054572066292167,0.011353424750268]],[[0.026018956676126,-0.10840614140034,-0.17603833973408],[-0.1272416561842,0.094262942671776,0.0058412831276655],[-0.019628783687949,-0.097230181097984,0.11057372391224]],[[0.061820641160011,-0.17950063943863,-0.14026781916618],[-0.10851236432791,0.077065773308277,0.10700227320194],[-0.052049819380045,0.073415659368038,-0.11545873433352]],[[-0.052543938159943,-0.054588623344898,0.22002120316029],[-0.0058197192847729,-0.056855514645576,-0.062909185886383],[0.18304733932018,0.0092188213020563,0.15758116543293]],[[-0.098984427750111,0.020418722182512,-0.019802179187536],[0.0017485111020505,-0.042574543505907,-0.06116009503603],[0.054789584130049,-0.048798445612192,-0.033111743628979]],[[0.026586133986712,-0.02697940915823,-0.11722473055124],[0.090816408395767,0.1380427479744,0.20165608823299],[0.010709132067859,-0.037420965731144,0.047672159969807]],[[-0.1543106585741,-0.1592083722353,-0.041094396263361],[-0.065873041749001,-0.011823955923319,-0.11015753448009],[0.066031858325005,-0.083506762981415,-0.032236840575933]],[[-0.044578395783901,0.10732630640268,0.12614004313946],[0.21909867227077,0.17868849635124,0.15968918800354],[0.075920462608337,0.10567060858011,0.0073632788844407]],[[-0.0086153820157051,-0.097227223217487,-0.026592742651701],[0.14886058866978,-0.026085102930665,0.017336651682854],[0.093572452664375,0.041618600487709,0.048821154981852]],[[0.12875987589359,0.1563512980938,0.087492488324642],[-0.01519728731364,-0.023888705298305,-0.21501915156841],[-0.072758130729198,-0.12871637940407,0.020395342260599]],[[0.30438151955605,-0.033326681703329,-0.0052000232972205],[-0.13794860243797,-0.24112790822983,-0.1394476890564],[-0.002204948104918,-0.059420116245747,0.13138592243195]],[[-0.12370239943266,0.12841255962849,0.085576362907887],[-0.023315709084272,0.083057247102261,0.06158884614706],[0.028563730418682,-0.039307419210672,-0.082147061824799]],[[-0.10814074426889,0.21617455780506,0.006734827067703],[0.0087497672066092,0.10977648198605,0.055841628462076],[-0.02704762108624,0.042423848062754,-0.001026259851642]],[[0.0039858222007751,-0.17951267957687,-0.029375953599811],[-0.04711377248168,-0.17820280790329,-0.035004064440727],[0.14290349185467,0.0753468349576,-0.12225113809109]],[[-0.0418397821486,-0.018438421189785,0.043939564377069],[0.071457915008068,-0.073333472013474,-0.0080772330984473],[-0.056030344218016,-0.060037430375814,0.016432482749224]],[[0.2316265553236,0.058825623244047,0.2144985049963],[-0.050511259585619,-0.092661902308464,-0.0039396854117513],[-0.037389259785414,0.13280640542507,0.065716199576855]],[[-0.041374079883099,-0.054443839937449,-0.0078318091109395],[-0.046469636261463,0.009696458466351,-0.017171129584312],[0.037184171378613,0.013776551000774,-0.049724020063877]],[[-0.08027932792902,-0.051452282816172,-0.14589683711529],[-0.010770517401397,0.01078827213496,-0.0031100988853723],[0.00012790004257113,-0.053178500384092,-0.036422234028578]],[[-0.018128722906113,0.11068287491798,-0.014100114814937],[-0.0050687282346189,0.093419127166271,0.012478672899306],[0.094313472509384,-0.015863053500652,0.02004899084568]],[[0.1564052850008,-0.12152860313654,0.078596688807011],[0.15141995251179,-0.060166068375111,0.070623330771923],[0.0073210285045207,-0.057113569229841,-0.032410565763712]],[[0.076276183128357,0.042778272181749,-0.10024892538786],[0.072629295289516,0.13737194240093,-0.0012737166834995],[0.010311481542885,-0.034396506845951,0.12156795710325]],[[-0.063528753817081,-0.04846116527915,0.17425747215748],[-0.20256166160107,-0.042336735874414,-0.031274385750294],[0.00020766867964994,-0.099354788661003,0.0038208933547139]],[[0.0073861521668732,0.08516002446413,0.026292910799384],[-0.14472787082195,0.048438064754009,0.053429536521435],[0.0055640414357185,-0.029404327273369,-0.12572826445103]],[[-0.090947262942791,-0.013210082426667,0.050437029451132],[-0.013818512670696,0.14062513411045,0.070683345198631],[0.25892794132233,0.13739132881165,0.050855901092291]],[[-0.10860011726618,-0.056501615792513,0.043470982462168],[-0.0077822818420827,-0.010845550335944,0.0098712658509612],[0.14516171813011,-0.02962639555335,0.041326023638248]],[[0.020398586988449,0.040787078440189,-0.021574292331934],[0.060645211488008,0.069570921361446,0.12260188907385],[-0.016409391537309,-0.025116993114352,0.00025909743271768]],[[0.031406339257956,0.075402669608593,-0.040377352386713],[0.0027612240519375,-0.023800196126103,0.052570894360542],[-0.017559606581926,-0.087784737348557,0.10086543112993]],[[0.07782705873251,0.018748661503196,0.07488676905632],[0.060170099139214,-0.014107634313405,0.10480108112097],[0.020311629399657,-0.054371073842049,0.047314457595348]],[[-0.10271290689707,-0.11929313838482,-0.019172398373485],[-0.11630296707153,0.056112516671419,-0.11403549462557],[0.20457239449024,-0.11416281759739,-0.085116595029831]],[[-0.025828287005424,0.093571625649929,0.10446355491877],[0.096868559718132,0.19796977937222,-0.043976210057735],[-0.050147838890553,0.027029231190681,0.19611532986164]],[[-0.12166587263346,-0.032881684601307,-0.080585710704327],[0.11831451207399,-0.018032468855381,-0.01904521882534],[0.18682704865932,0.09564608335495,0.088196940720081]],[[0.13450026512146,0.021512977778912,0.023965530097485],[-0.14960770308971,0.025971289724112,-0.064724624156952],[-0.12319888919592,0.074368827044964,0.011915300041437]],[[-0.10349604487419,-0.0014630447840318,-0.097392722964287],[-0.1245903968811,0.18010583519936,-0.020537862554193],[-0.12774257361889,0.16766694188118,-0.00028181908419356]],[[0.15330283343792,-0.097507804632187,-0.0078015364706516],[-0.12456685304642,-0.087270550429821,0.012376695871353],[-0.053909864276648,-0.1335831284523,-0.082161001861095]]],[[[0.046548675745726,0.042565405368805,-0.13281528651714],[-0.052282802760601,0.066866435110569,-0.13976855576038],[-0.028145346790552,0.14329108595848,0.030522540211678]],[[0.02101169899106,0.0051205763593316,0.039841789752245],[0.0027749654836953,-0.11026180535555,0.063799679279327],[0.033221125602722,0.092160858213902,0.047586794942617]],[[0.12094421684742,0.12511560320854,0.030572371557355],[0.036322448402643,0.205521479249,-0.00018571451073512],[-0.0001070400539902,0.1162369325757,-0.06046499311924]],[[-0.22096587717533,-0.13025276362896,-0.067015565931797],[-0.11904323101044,-0.11095094680786,-0.044368237257004],[-0.1863929182291,-0.06280130892992,-0.073859147727489]],[[0.17912802100182,0.10674048960209,0.065754413604736],[0.010476410388947,0.098125159740448,-0.098659664392471],[0.10604607313871,0.16347731649876,0.061996806412935]],[[-0.01972908899188,-0.044380430132151,-0.018916439265013],[-0.11684326827526,-0.038887303322554,-0.10288196802139],[-0.057315651327372,0.057763677090406,-0.071174472570419]],[[0.10710975527763,0.084216199815273,0.18197576701641],[0.11502126604319,-0.0966911688447,-0.067315466701984],[-0.081593997776508,-0.081772133708,-0.17906333506107]],[[0.023742755874991,-0.065151244401932,-0.050979245454073],[0.075271770358086,0.10846051573753,-0.045621983706951],[0.064361356198788,0.15202771127224,0.1895600259304]],[[-0.022016929462552,-0.01437524985522,-0.053848214447498],[0.062035530805588,-0.16271539032459,-0.16023510694504],[0.20142492651939,0.04649131000042,-0.15634001791477]],[[0.031692203134298,-0.015401389449835,0.044314589351416],[-0.00060745375230908,0.0011813038727269,-0.065558597445488],[-0.044069569557905,0.04431365057826,-0.019803389906883]],[[0.12885980308056,0.020458862185478,0.046577122062445],[-0.080675661563873,-0.10300128161907,-0.13563677668571],[-0.080666907131672,-0.058265820145607,-0.17715878784657]],[[-0.078464195132256,0.066347442567348,-0.0069422828964889],[0.1606190353632,-0.0099526960402727,0.082647524774075],[0.19740328192711,-0.042335983365774,-0.077369563281536]],[[0.16320404410362,-0.070317126810551,-0.08156555891037],[0.038332741707563,0.050908159464598,0.054050538688898],[0.11536424607038,0.032613646239042,-0.039421029388905]],[[0.006178651470691,-0.17340391874313,-0.1119874343276],[0.066282339394093,0.026869172230363,0.066649414598942],[0.10597536712885,-0.064479507505894,0.076703600585461]],[[-0.010786379687488,0.042709831148386,-0.07060993462801],[-0.096846021711826,0.13522408902645,0.24590249359608],[0.10008738189936,0.09012758731842,0.14524701237679]],[[-0.047903515398502,0.074878059327602,0.038710605353117],[-0.18287390470505,0.050518222153187,0.01492122374475],[-0.10564034432173,0.044716466218233,0.088371932506561]],[[-0.13698768615723,0.0038584407884628,0.1211873665452],[-0.071276120841503,0.035842888057232,0.14004072546959],[-0.11227405071259,0.084006190299988,-0.026251005008817]],[[0.042103562504053,0.018385481089354,0.0017342175124213],[0.05078985914588,-0.081991069018841,-0.089030236005783],[0.11948090791702,0.082695603370667,0.085451014339924]],[[0.01509527862072,0.014550103805959,0.23142047226429],[-0.13950423896313,-0.074814036488533,0.1261146068573],[0.0089376671239734,0.071063295006752,0.1403771340847]],[[-0.035564295947552,-0.18214343488216,-0.10886669903994],[0.066526375710964,0.016951557248831,0.0070262574590743],[-0.012217172421515,-0.049150642007589,0.13431726396084]],[[-0.10020021349192,-0.097594074904919,-0.14473403990269],[-0.074101619422436,-0.024053005501628,-0.09249223023653],[-0.019435908645391,0.061364229768515,-0.052947230637074]],[[0.13204935193062,0.04489329829812,-0.076621189713478],[0.12297533452511,0.13180257380009,-0.094462215900421],[0.091796070337296,0.069547213613987,-0.12191490828991]],[[0.0042841513641179,0.015157035551965,-0.013163243420422],[0.030815586447716,0.013023593463004,-0.033879712224007],[0.23431047797203,0.073405690491199,-0.051812037825584]],[[-0.07238145172596,0.027830990031362,-0.070761002600193],[0.0059160371311009,-0.026727246120572,-0.031086696311831],[-0.18706811964512,-0.049527175724506,-0.092079117894173]],[[0.015189343132079,0.11123707890511,0.087975777685642],[-0.16122868657112,-0.13530130684376,-0.015931906178594],[-0.15278342366219,0.010743548162282,-0.057949539273977]],[[-0.011043468490243,-0.0023542793933302,0.15094797313213],[0.062778189778328,0.032223206013441,-0.14220957458019],[-0.011544329114258,0.1052109375596,0.11671332269907]],[[0.19720989465714,-0.084628582000732,0.0056739118881524],[0.20396994054317,-0.10748291760683,0.028744209557772],[0.20378004014492,0.033204060047865,0.026233116164804]],[[0.018858725205064,-0.075162440538406,-0.0073970113880932],[0.033028323203325,-0.15282920002937,-0.20883251726627],[0.028150245547295,0.050765801221132,0.059208054095507]],[[-0.18018916249275,-0.07188705354929,-0.16251508891582],[0.016508724540472,0.067367538809776,0.14255292713642],[-0.032956663519144,-0.14300745725632,-0.13932204246521]],[[0.046232029795647,-0.0086553227156401,-0.041407778859138],[0.040822625160217,0.062414541840553,-0.09060700237751],[0.056193873286247,0.073210619390011,0.010760584846139]],[[0.053431458771229,0.085989728569984,0.048957243561745],[-0.082394257187843,-0.054135262966156,0.14575456082821],[0.061879239976406,-0.06231451779604,-0.15651597082615]],[[-0.016093822196126,-0.028371173888445,-0.031752981245518],[0.08788488805294,0.067982763051987,0.013122043572366],[-0.035596501082182,-0.01928629539907,0.10806857049465]],[[-0.019380442798138,0.066558167338371,0.23930458724499],[0.087048254907131,-0.033687129616737,-0.06657949835062],[0.071837291121483,0.032797757536173,-0.099486619234085]],[[0.23152434825897,0.12697592377663,0.13591401278973],[0.020106937736273,0.1300246566534,0.23364880681038],[-0.20832477509975,-0.00021434309019241,-0.14559625089169]],[[0.11356474459171,0.10468643903732,-0.0037219715304673],[0.01777065359056,0.032022997736931,-0.13704077899456],[-0.052071582525969,-0.017603887245059,-0.14711013436317]],[[0.055254396051168,-0.14550021290779,-0.14755445718765],[0.085572436451912,0.057520035654306,-0.0020135934464633],[0.00091011170297861,-0.018380653113127,-0.080822169780731]],[[0.059979625046253,0.09599657356739,0.1099309399724],[-0.0039894371293485,-0.18257069587708,-0.1792618483305],[-0.21079637110233,-0.18915221095085,-0.065966218709946]],[[0.059199027717113,0.024094611406326,0.021932536736131],[-0.19941133260727,0.031333550810814,0.078191347420216],[0.016105234622955,0.14177452027798,0.04986522346735]],[[0.12123492360115,0.097211547195911,-0.17067013680935],[0.07912727445364,-0.101537309587,-0.052597373723984],[0.022428769618273,-0.0041052992455661,-0.020159160718322]],[[0.047656748443842,0.054209604859352,0.090135812759399],[0.00035918212961406,-0.0015907187480479,0.096006758511066],[-0.1303451359272,0.029594369232655,0.082646787166595]],[[-0.079426363110542,-0.011198110878468,0.15537312626839],[0.024696534499526,-0.086383953690529,0.12521928548813],[-0.032795652747154,-0.094885960221291,-0.18467922508717]],[[0.02575096487999,0.019795386120677,0.17040957510471],[0.010471140034497,-0.084588810801506,0.05931980907917],[-0.18227411806583,-0.12128656357527,0.0025987385306507]],[[0.0085955047979951,0.026907501742244,-0.056708425283432],[-0.030511731281877,0.017733372747898,-0.034683801233768],[-0.074311181902885,-0.085760273039341,-0.089921168982983]],[[-0.019495811313391,-0.0944599583745,-0.13756583631039],[-0.10658539831638,-0.013463794253767,-0.034513469785452],[-0.10153826326132,0.060702588409185,-0.074486382305622]],[[0.042849496006966,0.0062065767124295,-0.014970474876463],[-0.022950794547796,0.052774913609028,0.0024732346646488],[0.010061051696539,0.0097603602334857,0.0058646639809012]],[[-0.10911811888218,0.05369059368968,0.061689347028732],[-0.11633259803057,-0.0028321135323495,0.0088634481653571],[-0.27258214354515,-0.064661055803299,-0.0017630932852626]],[[0.14641857147217,-0.0086417719721794,-0.011779692023993],[0.042602337896824,0.04101574793458,-0.0030045334715396],[-0.035966895520687,0.035614017397165,-0.12164027243853]],[[-0.01086587831378,0.18612866103649,0.24200692772865],[0.15017512440681,-0.16714237630367,-0.20787169039249],[-0.040080707520247,0.014913322404027,0.015860529616475]],[[-0.15244126319885,-0.13346968591213,-0.1313412040472],[0.13751445710659,0.21611012518406,0.088218592107296],[0.14100222289562,-0.16979223489761,0.13181389868259]],[[-0.066616132855415,-0.13819570839405,-0.036174334585667],[-0.21017998456955,-0.23437072336674,0.039410453289747],[-0.0088178906589746,-0.12439366430044,-0.0042120199650526]],[[-0.10644207894802,0.088014632463455,-0.067072041332722],[0.069663360714912,-0.088243141770363,-0.19580270349979],[-0.074721470475197,0.14072889089584,-0.10467500984669]],[[-0.06048721075058,-0.072854362428188,-0.026202157139778],[-0.015373195521533,0.023278649896383,0.10802219808102],[0.05714950710535,0.098568461835384,0.076285429298878]],[[-0.034510862082243,0.020990654826164,-0.041377991437912],[-0.028779663145542,-0.016292743384838,-0.06201734021306],[-0.046455163508654,-0.05410360917449,0.026092810556293]],[[0.076273322105408,-0.030472207814455,0.065363965928555],[0.071824215352535,-0.039202403277159,0.045238070189953],[0.12832571566105,-0.041871916502714,-0.21516263484955]],[[0.094533160328865,0.16020178794861,0.1677240729332],[-0.039974495768547,-0.012960232794285,-0.09081793576479],[-0.15380668640137,-0.050545115023851,0.017525089904666]],[[0.036408357322216,0.089536383748055,0.10156610608101],[0.13831759989262,-0.04590105265379,0.0048353588208556],[-0.071388453245163,-0.043735187500715,-0.14444248378277]],[[0.18777987360954,-0.056598540395498,0.069914683699608],[0.057094838470221,-0.17648948729038,0.0385567471385],[-0.036964252591133,-0.038817144930363,0.080588199198246]],[[0.019837524741888,0.053809091448784,-0.054338693618774],[-0.13290430605412,-0.076091833412647,-0.070262707769871],[-0.0076338583603501,0.00015703396638855,-0.037728689610958]],[[-0.019430641084909,-0.0016396575374529,-0.074459433555603],[-0.038137562572956,-0.049920860677958,-0.010561599396169],[-0.21747788786888,0.0071523240767419,-0.10858429968357]],[[-0.047282014042139,-0.11576568335295,-0.1292676627636],[0.069007337093353,-0.058954168111086,-0.059046644717455],[-0.062281616032124,-0.016130929812789,0.053972635418177]],[[-0.068466581404209,0.052786640822887,-0.17577131092548],[-0.099967457354069,0.032513350248337,-0.20070733129978],[-0.16863273084164,0.0085373921319842,-0.17154286801815]],[[-0.084563069045544,-0.034002728760242,0.010187488980591],[-0.21020938456059,-0.15714864432812,-0.12781263887882],[-0.070260964334011,-0.17140126228333,-0.16355761885643]],[[0.0098026804625988,-0.021743852645159,-0.090407274663448],[0.015899445861578,-0.0082059092819691,-0.0058493772521615],[-0.0092241931706667,0.035261888056993,-0.063974283635616]],[[0.21484959125519,0.22708795964718,0.11406240612268],[-0.006841498427093,0.098293222486973,0.18950571119785],[-0.16006925702095,-0.046053599566221,-0.0030331066809595]],[[-0.037643879652023,-0.17475542426109,-0.040926463901997],[-0.02864851988852,0.05542629212141,0.16479915380478],[-0.096311777830124,-0.098816312849522,-0.0051693678833544]],[[0.075776256620884,0.033938083797693,0.088013604283333],[0.052363310009241,-0.099911548197269,0.074476085603237],[0.048283774405718,-0.070968136191368,0.13822731375694]],[[0.0087339133024216,0.004402591381222,-0.080146126449108],[0.042224522680044,0.075416810810566,0.0018246644176543],[0.09076926112175,-0.012793566100299,-0.047375429421663]],[[-0.031387615948915,-0.13980914652348,-0.076916083693504],[-0.11465386301279,-0.16621881723404,-0.054464668035507],[-0.032790616154671,0.080378718674183,0.017388083040714]],[[-0.074053205549717,-0.085199110209942,-0.012521547265351],[-0.022450540214777,-0.11028105020523,-0.09398028999567],[0.13326746225357,0.05472569912672,0.016061002388597]],[[0.061523843556643,0.083908274769783,0.073722451925278],[-0.21020452678204,0.12079600244761,-0.11472937464714],[0.0093978457152843,0.0091645317152143,-0.092427164316177]],[[-0.014704180881381,0.020059213042259,-0.12829352915287],[-0.1585288643837,-0.0050967764109373,0.17010748386383],[0.12192814052105,0.15521019697189,-0.17423090338707]],[[-0.010969775728881,0.078309081494808,-0.04381250217557],[0.14843355119228,0.020563369616866,0.06878712028265],[0.037060014903545,0.077953964471817,-0.10207475721836]],[[-0.052971430122852,-0.10244315862656,-0.054272420704365],[-0.13700811564922,0.0040408782660961,0.011456484906375],[-0.040101300925016,-0.025323888286948,-0.10752603411674]],[[0.17988006770611,0.14214290678501,0.033519171178341],[0.12536352872849,-0.0046573663130403,0.10874325782061],[0.091207720339298,0.14564248919487,0.046176251024008]],[[-0.094029083848,0.052087623625994,0.14181169867516],[0.0047633317299187,-0.13631471991539,-0.17229355871677],[-0.0093197366222739,-0.077877417206764,-0.064347662031651]],[[0.048834823071957,0.036470398306847,-0.1439992338419],[-0.046984180808067,-0.026158571243286,-0.098265737295151],[-0.0024743529502302,0.010716110467911,-0.095929197967052]],[[0.022743567824364,-0.072859838604927,-0.026017734780908],[-0.19358290731907,-0.056318532675505,-0.072834566235542],[-0.065265521407127,-0.15688535571098,-0.033331841230392]],[[0.014315257780254,0.089995443820953,0.034514982253313],[-0.11104248464108,0.066975072026253,-0.046574894338846],[0.056123279035091,-0.029198864474893,-0.023290915414691]],[[0.13902650773525,-0.03741217777133,-0.0064154984429479],[-0.010345499031246,0.021767565980554,0.045179020613432],[0.084025725722313,-0.12026008218527,-0.11532035470009]],[[-0.18261305987835,-0.016127519309521,-0.039656177163124],[0.11923032253981,0.044539798051119,0.0081008560955524],[0.044759042561054,-0.07322995364666,-0.16877041757107]],[[-0.0045256447046995,-0.082803882658482,0.024735171347857],[-0.034996885806322,-0.0086722858250141,0.18335025012493],[-0.20632776618004,-0.016684306785464,0.088376231491566]],[[-0.18498083949089,0.010190043598413,0.17195074260235],[0.091698907315731,-0.14142958819866,-0.089480772614479],[0.079408369958401,0.093181945383549,0.15632221102715]],[[0.039297636598349,-0.044511307030916,0.10619438439608],[-0.064680047333241,-0.032463956624269,0.20630921423435],[0.24571646749973,0.33232709765434,0.30802497267723]],[[-0.09886047244072,-0.016722803935409,0.10819295793772],[-0.060499135404825,0.066577918827534,-0.012680744752288],[-0.010322395712137,0.10617757588625,-0.038649454712868]],[[-0.26912596821785,0.12603299319744,0.3545455634594],[0.080607883632183,-0.12873980402946,0.12810552120209],[-0.031492751091719,0.073594056069851,0.1074158474803]],[[-0.062056243419647,-0.0077201719395816,-0.057836785912514],[-0.031015200540423,-0.15964487195015,-0.0707016736269],[0.059826273471117,0.03904714435339,0.041756611317396]],[[0.12492799758911,0.15371145308018,-0.014267824590206],[0.082212753593922,0.066453479230404,0.14024233818054],[0.24002200365067,0.061925586313009,-0.23648013174534]],[[0.052077688276768,0.08385169506073,-0.024539502337575],[0.23029418289661,0.17062519490719,0.11924736946821],[0.021948913112283,-0.048134319484234,0.0089437989518046]],[[-0.049290779978037,-0.028155544772744,0.14665883779526],[0.01089486759156,-0.11157242208719,-0.13193471729755],[0.043872520327568,0.052383091300726,0.078769817948341]],[[0.026667820289731,-0.022745832800865,-0.15624599158764],[0.049161594361067,0.032747335731983,0.040467649698257],[0.091785073280334,-0.035395544022322,-0.010486329905689]],[[0.022227086126804,0.094200260937214,0.074294067919254],[0.10546430200338,0.041308380663395,-0.027721613645554],[0.039258666336536,0.059427995234728,0.080300889909267]],[[-0.025261040776968,0.033606395125389,0.011088802479208],[0.034778483211994,0.12842187285423,0.10873490571976],[-0.023049088194966,-0.076497092843056,-0.14332537353039]],[[0.07495503872633,0.045719422399998,0.12878061830997],[-0.04648057743907,0.046007122844458,0.11018120497465],[-0.043255064636469,0.042665112763643,0.043560843914747]],[[-0.085844978690147,0.1091709882021,0.012943006120622],[-0.033315986394882,0.012655267491937,-0.064428262412548],[0.0024633533321321,0.0904895439744,-0.080075658857822]],[[0.025412511080503,-0.023945035412908,0.16143509745598],[-0.071337796747684,-0.086488343775272,0.081895641982555],[0.042362239211798,-0.045600455254316,0.10415212064981]],[[-0.16186738014221,-0.0064796772785485,0.10144997388124],[0.009542684070766,0.049590438604355,-0.1080473959446],[-0.018154479563236,0.087980203330517,0.0039234347641468]],[[-0.078236922621727,0.13154724240303,0.14238522946835],[-0.16159401834011,-0.13955965638161,-0.16516613960266],[-0.13401602208614,-0.0012344610877335,-0.012810110114515]],[[-0.033833641558886,-0.091172441840172,-0.016737010329962],[-0.032753847539425,-0.089015826582909,-0.081458181142807],[0.05315126106143,-0.042591776698828,-0.018789267167449]],[[-0.31555438041687,-0.14398814737797,0.10784043371677],[-0.091080747544765,0.022879242897034,0.019503554329276],[0.098867237567902,-0.02572900429368,-0.11952859908342]],[[0.076516017317772,0.040325537323952,0.14964658021927],[0.22806666791439,0.16882461309433,0.068014398217201],[0.051633700728416,-0.079868912696838,-0.060128327459097]],[[-0.11914317309856,-0.036644916981459,0.0098324539139867],[-0.15813341736794,0.015475141815841,0.020859509706497],[-0.12547144293785,0.038705740123987,0.096522301435471]],[[0.075499817728996,0.00755943544209,0.20972742140293],[0.011411604471505,0.072054639458656,0.099547833204269],[0.065008327364922,0.021170001477003,0.022480189800262]],[[0.072363540530205,-0.098995819687843,0.051750916987658],[0.016703218221664,0.03805984929204,0.14502136409283],[0.11700709164143,0.089776113629341,0.10375434160233]],[[-0.090806066989899,0.016909072175622,-0.20975099503994],[-0.023125970736146,0.026078900322318,0.031386759132147],[0.032794211059809,0.24751873314381,0.07869790494442]],[[0.068051248788834,-0.17898282408714,-0.14952681958675],[-0.022637778893113,-0.14344871044159,0.04734480753541],[-0.099466152489185,-0.032495725899935,-0.023402674123645]],[[0.10067474842072,-0.024082094430923,0.064565323293209],[0.036714162677526,0.024144714698195,0.032182056456804],[-0.037679761648178,-0.099790766835213,-0.25214940309525]],[[0.00086507626110688,0.1405256986618,0.021111940965056],[0.011085049249232,0.098926447331905,-0.066700391471386],[-0.002867870265618,0.10053960978985,0.082400567829609]],[[-0.040031146258116,-0.039863750338554,-0.075629845261574],[0.10166838020086,0.073531493544579,-0.17504580318928],[-0.040580939501524,0.042816922068596,-0.19549730420113]],[[-0.056314248591661,-0.0046388693153858,0.072059452533722],[-0.029173379763961,0.03158788383007,-0.014951267279685],[-0.15514406561852,0.026154801249504,-0.11621966958046]],[[-0.089235618710518,0.0092135602608323,-0.040907017886639],[-0.052213665097952,0.03142511472106,0.23866912722588],[0.014112387783825,-0.018315222114325,-0.022375682368875]],[[0.0093719447031617,-0.044575985521078,-0.075518615543842],[-0.00933304335922,-0.077252119779587,0.13918648660183],[0.08620610833168,-0.07198491692543,-0.093742400407791]],[[0.077833227813244,0.037923209369183,0.084008157253265],[-0.052774332463741,-0.20958578586578,-0.11774919182062],[-0.17958314716816,-0.1391574293375,-0.010535169392824]],[[0.12742711603642,-0.080071352422237,0.035985291004181],[-0.012457067146897,-0.0042277132160962,0.004718451295048],[-0.0054641221649945,0.026043582707644,0.094250924885273]],[[0.10357540100813,0.083397246897221,0.15100674331188],[0.055088113993406,-0.099037200212479,-0.048832330852747],[0.1324528157711,0.21908973157406,-0.17745761573315]],[[0.14390398561954,-0.0087109683081508,-0.15581625699997],[0.0093718906864524,-0.050987601280212,-0.042045757174492],[-0.058837994933128,0.053960002958775,0.0045107891783118]],[[0.17792136967182,-0.036627549678087,0.025546003133059],[0.1028313934803,0.079923532903194,-0.0010364174377173],[-0.046392060816288,-0.12100839614868,-0.12431734055281]],[[0.1532004326582,0.070194907486439,0.057654667645693],[-0.018479399383068,0.0607805326581,-0.14462478458881],[-0.046382144093513,0.046005327254534,0.012542975135148]],[[-0.19773638248444,-0.010167070664465,0.067338444292545],[-0.060560155659914,-0.023405214771628,0.024263344705105],[0.085520379245281,-0.12211959064007,-0.33722999691963]],[[0.039295859634876,0.074029825627804,0.002496836706996],[0.0074494653381407,-0.012610538862646,0.11212804913521],[0.088845424354076,-0.067107051610947,0.078380666673183]],[[0.05381129309535,0.1847492903471,0.28998437523842],[0.0048073958605528,0.070977687835693,-0.10072034597397],[-0.04521506652236,0.058493930846453,-0.061070147901773]],[[-0.018463583663106,-0.0083601661026478,-0.024407207965851],[0.071508623659611,0.03919605538249,-0.068344585597515],[0.026114286854863,-0.05771841108799,0.1438245922327]],[[-0.014755566604435,0.015853842720389,0.12661084532738],[-0.0051864511333406,-0.048883236944675,0.077221065759659],[0.073155403137207,0.0064478926360607,0.02853643707931]],[[-0.15571704506874,-0.1707711070776,-0.14133782684803],[-0.13767018914223,-0.1477170586586,0.043754983693361],[-0.057242330163717,-0.17759226262569,0.011969184502959]],[[-0.026917364448309,0.084434658288956,0.098178118467331],[0.012603445909917,-0.060521874576807,-0.058649528771639],[0.069573864340782,0.20005834102631,0.10078689455986]],[[0.069450907409191,0.17368741333485,0.1507576406002],[0.12141797691584,0.091827504336834,0.11059955507517],[0.015238406136632,-0.019034883007407,0.052697032690048]],[[-0.04790972545743,0.0095750465989113,0.059017762541771],[0.046822171658278,-0.009558335877955,-0.27034667134285],[-0.11807985603809,-0.029202323406935,0.078046798706055]],[[-0.099621400237083,-0.12859877943993,-0.17940349876881],[-0.09250558167696,0.10439633578062,0.018061704933643],[0.04608790948987,0.045235574245453,0.0760812535882]],[[-0.1134349629283,-0.02563594840467,-0.059253979474306],[-0.018837729468942,0.083538688719273,0.17529730498791],[-0.096431910991669,-0.20874448120594,-0.089357905089855]]],[[[-0.020740333944559,-0.051562245935202,0.065592147409916],[-0.019440449774265,0.02755493298173,9.1753041488118e-05],[-0.011468416079879,-0.019047426059842,0.042097073048353]],[[-0.043731510639191,0.07996841520071,0.01695366576314],[0.0020093775819987,0.029961932450533,-0.03347584232688],[-0.0095438919961452,-0.02901217341423,0.0050390381366014]],[[0.013608479872346,0.067054934799671,-0.070209681987762],[-0.0042356457561255,-0.018668953329325,0.023394359275699],[0.090484336018562,0.031691454350948,-0.054506313055754]],[[0.0075474767945707,0.0065132915042341,0.031072402372956],[0.06755056977272,0.011779719032347,0.066350355744362],[0.081420756876469,-0.035500068217516,-0.032599493861198]],[[-0.043299753218889,0.012264901772141,-0.031888760626316],[-0.037291206419468,0.0040485709905624,-0.0024794791825116],[0.013786040246487,0.033919919282198,0.010167905129492]],[[0.027451345697045,0.025506218895316,0.043519638478756],[0.026870785281062,-0.02764686755836,-0.02479407005012],[0.024381950497627,-0.054194264113903,-0.080179959535599]],[[0.062416777014732,0.079342506825924,-0.065213330090046],[0.041702941060066,0.054332986474037,0.043318260461092],[-0.029601089656353,0.020838359370828,-0.061324920505285]],[[0.040180403739214,-0.024349322542548,0.023038778454065],[0.054741483181715,-0.062538512051105,-0.057654835283756],[0.067867465317249,0.041368551552296,0.070564433932304]],[[0.014071871526539,0.0029274625703692,0.036452509462833],[-0.029229843989015,-0.020322779193521,-0.0028402905445546],[0.03605329990387,0.031069273129106,-0.022914340719581]],[[-0.055125020444393,0.06139850243926,-0.084483355283737],[0.044254090636969,0.012395462021232,-0.0067725251428783],[0.10357125848532,-0.036684822291136,-0.0016276837559417]],[[-0.031468391418457,0.0041097002103925,-0.011549402959645],[-0.0050303470343351,0.087719090282917,0.09675582498312],[-0.11816697567701,-0.067131698131561,-0.025585593655705]],[[0.054656699299812,-0.019744299352169,-0.062431681901217],[-0.035627249628305,-0.07022900134325,0.010873490944505],[-0.0022079993505031,-0.082116581499577,0.07640215754509]],[[-0.0024476433172822,0.091844327747822,0.036608666181564],[-0.043155126273632,-0.023686107248068,0.089613199234009],[-0.0057126614265144,-0.076241932809353,0.0079990942031145]],[[0.048576876521111,0.054432932287455,0.01792741753161],[-0.02252247184515,-0.061022758483887,-0.065382115542889],[-0.036936547607183,-0.050882115960121,0.0058586704544723]],[[0.031794514507055,0.021871201694012,-0.028971124440432],[-0.082191377878189,0.070077583193779,-0.0044281464070082],[-0.019320568069816,0.025800893083215,0.025600258260965]],[[0.011827859096229,-0.060721177607775,-0.019414119422436],[-0.0019937695469707,-0.0013555478071794,0.03830660879612],[0.063419915735722,0.045043490827084,0.033029448240995]],[[-0.020367808640003,-0.050224736332893,0.043138578534126],[-0.0021997897420079,0.034452933818102,-0.084159351885319],[0.053480368107557,-0.035452533513308,0.018043294548988]],[[-0.089623212814331,0.0013313323725015,-0.044100776314735],[-0.0061462931334972,0.031007977202535,0.0047890432178974],[0.030085323378444,-0.0081498445942998,-0.042246781289577]],[[0.057423066347837,0.0012257280759513,-0.015555335208774],[0.014182164333761,0.051781348884106,0.025892874225974],[0.012111965566874,0.038156937807798,-0.043993342667818]],[[-0.011433459818363,-0.064912110567093,-0.11209454387426],[0.082615569233894,-0.0076086651533842,0.0067534595727921],[-0.013694168068469,0.058694716542959,-0.072328977286816]],[[0.0003498284786474,-0.0050699119456112,-0.04927534237504],[-0.03500909730792,0.019018299877644,0.013535167090595],[0.023767821490765,-0.019297489896417,-0.045544680207968]],[[0.00015010795323178,0.01660081371665,0.12012285739183],[0.021722598001361,-0.08026335388422,-0.062805391848087],[-0.020419623702765,-0.10513230413198,0.033742990344763]],[[0.049134772270918,-0.088387854397297,-0.041011825203896],[-0.045188408344984,-0.050201714038849,0.010134259238839],[0.031824007630348,0.011038180440664,-0.094501249492168]],[[-0.0098455408588052,-0.090186707675457,0.0030296803452075],[0.03893768042326,-0.049040216952562,0.0057989652268589],[-0.010920569300652,-0.052440084517002,-0.03252125903964]],[[0.014173034578562,0.034922212362289,-0.019429402425885],[-0.042833346873522,-0.010753753595054,0.032411586493254],[-0.01703173853457,0.003380199894309,-0.0033477079123259]],[[-0.0052854903042316,-0.0050121890380979,-0.076758272945881],[0.058582577854395,-0.0097418054938316,0.013301425613463],[0.06489522010088,-0.025720560923219,-0.0059742382727563]],[[0.066779397428036,0.048756927251816,0.02581405825913],[0.043588329106569,-0.060508299618959,-0.054603021591902],[0.004693559370935,-0.043672069907188,-0.017011564224958]],[[0.074823059141636,0.067689843475819,0.045783691108227],[-0.049431018531322,-0.063902415335178,-0.04739909991622],[0.00948581751436,-0.086500130593777,-0.0096883699297905]],[[0.023124501109123,0.041759099811316,-0.018249360844493],[-0.055408395826817,0.078806430101395,0.025569161400199],[-0.066140905022621,0.028045672923326,0.03361239656806]],[[-0.0024147254880518,-0.12432324141264,-0.033374957740307],[0.019350923597813,-0.051576521247625,-0.0082255061715841],[0.049723144620657,0.022026730701327,-0.028576176613569]],[[-0.096862196922302,-0.047927048057318,-0.0086998343467712],[-0.026548800989985,0.023076370358467,-0.010358408093452],[-0.035002548247576,-0.051185473799706,-0.019913697615266]],[[-0.068519659340382,0.083578385412693,0.038149029016495],[0.058958061039448,0.0060824868269265,0.018352376297116],[-0.0086203636601567,0.0048318482004106,-0.056629903614521]],[[0.038745511323214,0.0048269229009748,-0.017700277268887],[0.089071407914162,-0.0061568976379931,0.018675655126572],[-0.014251373708248,0.025169286876917,-0.081766828894615]],[[0.046989489346743,-0.019254865124822,0.048086367547512],[0.013865633867681,-0.015967715531588,-0.030410975217819],[-0.023988684639335,-0.048311591148376,-0.028710810467601]],[[-0.090410232543945,-0.049382463097572,0.055178519338369],[-0.0062782331369817,-0.0096743097528815,0.0072639533318579],[0.023259097710252,-0.010376280173659,0.03545755147934]],[[0.021500831469893,0.022102642804384,0.03602633997798],[0.031825754791498,0.042645987123251,0.029818555340171],[0.069639533758163,0.015187845565379,0.054576750844717]],[[0.021212033927441,-0.037655472755432,-0.059217553585768],[-0.041133817285299,-0.013769389130175,0.012238498777151],[-0.070009008049965,0.075233660638332,0.029466670006514]],[[0.045922663062811,-0.024439100176096,-0.019438123330474],[0.006607489194721,0.0089257508516312,0.036254420876503],[0.019179416820407,0.019322961568832,-0.053720835596323]],[[0.033188853412867,-0.050021506845951,0.014963579364121],[0.023924682289362,0.060134761035442,-0.077424257993698],[-0.0052964030764997,-0.064954273402691,0.0073373559862375]],[[-0.022858699783683,-0.015161090530455,0.017268406227231],[0.033066976815462,-4.2865362047451e-05,0.040465358644724],[0.068732723593712,-0.021418660879135,-0.046118646860123]],[[0.0075448658317327,0.033171147108078,0.028028950095177],[-0.0044292872771621,-0.075634852051735,-0.0017879887018353],[0.045526213943958,-0.047064214944839,-0.02748566120863]],[[0.05782487615943,-0.036955621093512,0.025214439257979],[-0.0078751957044005,-0.010829808190465,-0.020613063126802],[-0.0008818949572742,0.0084743555635214,-0.02355257794261]],[[0.019135776907206,-0.011988640762866,-0.023694463074207],[-0.024100545793772,-0.019016955047846,-0.049378372728825],[0.044220849871635,-0.0074640256352723,-0.033032208681107]],[[-0.072779268026352,-0.052465364336967,-0.045597810298204],[-0.1031291410327,-0.027459831908345,-0.075540199875832],[-0.061720475554466,0.035011544823647,0.043655399233103]],[[0.051768973469734,-0.036263909190893,-0.013354987837374],[-0.048811115324497,-0.0087320366874337,0.0080713676288724],[0.057092420756817,-0.040971074253321,0.037857443094254]],[[-0.063837178051472,-0.02242242731154,0.036585602909327],[-0.089561276137829,-0.0037937527522445,0.0073101632297039],[-0.026611108332872,0.011213437654078,0.014921202324331]],[[0.012884418480098,0.04901534691453,-0.0062795942649245],[-0.047653507441282,-0.15176446735859,-0.012704982422292],[0.015987947583199,-0.014467637054622,0.0072662988677621]],[[0.0094199823215604,-0.0087975300848484,-0.044141441583633],[0.059288926422596,-0.030441759154201,0.090671308338642],[-0.052859790623188,0.036176361143589,0.046363212168217]],[[-0.065268442034721,-0.040321797132492,-0.057155594229698],[0.048884391784668,-0.0095619922503829,0.044999789446592],[-0.016723020002246,0.030722936615348,0.010868487879634]],[[0.0033419039100409,-0.024646600708365,-0.014842990785837],[-0.051052112132311,-0.044714666903019,0.029951043426991],[-0.016973162069917,-0.002303481567651,-0.042422521859407]],[[-0.10578171163797,0.0043580261990428,-0.026870299130678],[0.066871292889118,-0.1053017154336,-0.08317968249321],[-0.00064436899265274,0.0037640598602593,-0.064212299883366]],[[0.018301216885448,0.034322384744883,0.036937348544598],[-0.0024725263938308,-0.0046788225881755,-0.0770258679986],[0.018292279914021,0.013434336520731,-0.025782773271203]],[[-0.029023436829448,-0.00193687598221,0.094030678272247],[-0.06406444311142,-0.026175590232015,-0.12838451564312],[-0.070732675492764,-0.022156354039907,-0.065854363143444]],[[0.087570331990719,-0.0051536038517952,0.0013687771279365],[-0.041327659040689,0.059079937636852,0.020102931186557],[-0.064281187951565,0.051389269530773,-0.018096147105098]],[[0.05235880240798,0.025213772431016,0.0028658935334533],[-0.011928772553802,-0.014821914024651,0.11732666194439],[0.047793291509151,-0.041317604482174,-0.0065325191244483]],[[-0.05542678385973,-0.032545898109674,-0.0084148617461324],[0.005978140514344,-0.072773315012455,-0.045306034386158],[0.038337077945471,0.014175293035805,0.03926794603467]],[[0.020618921145797,-0.0016452573472634,-0.023934042081237],[0.01424805726856,0.043831493705511,0.069154903292656],[-0.039608620107174,0.005746447481215,0.016493994742632]],[[0.025176029652357,-0.035496536642313,-0.03843492269516],[-0.033864546567202,-0.021168185397983,-0.010239721275866],[-0.037825062870979,-0.014435951597989,-0.02601251937449]],[[0.0014629262732342,-0.048952288925648,0.0090065794065595],[-0.059358775615692,-0.030382426455617,-0.063462786376476],[0.031878475099802,0.037108208984137,0.0020404893439263]],[[-0.06281229108572,-0.030869884416461,-0.04276255890727],[0.047269109636545,-0.032266050577164,0.021183686330914],[0.0091731771826744,-0.11860577017069,0.0082996906712651]],[[0.00078235106775537,0.0043858708813787,-0.1428414285183],[-0.080128312110901,-0.046087760478258,0.024692693725228],[0.0087571060284972,-0.018876334652305,0.024392725899816]],[[0.033474270254374,0.019284404814243,-0.01697114482522],[-0.074901156127453,-0.056672997772694,-0.07037341594696],[-0.015102772973478,0.018571523949504,0.030449567362666]],[[-0.003247277578339,-0.012884815223515,-0.049531359225512],[0.051405973732471,-0.042586617171764,-0.026511289179325],[-0.016201736405492,-0.01499595399946,0.076755873858929]],[[-0.0059902481734753,0.046995051205158,-0.0046422271989286],[-0.025801675394177,0.015150647610426,0.020184958353639],[-0.051644902676344,-0.0049773422069848,-0.03424334153533]],[[0.068623550236225,0.057050913572311,0.04922204464674],[0.0044202245771885,-0.023261936381459,-0.05045422539115],[0.055750548839569,-0.0075780875049531,0.0047783558256924]],[[-0.041685242205858,0.031805980950594,-0.11942517012358],[-0.0079934168606997,0.059537552297115,-0.04465751722455],[0.0076861237175763,0.012429634109139,-0.14109244942665]],[[0.035850644111633,0.071995057165623,0.010930990800261],[0.074115879833698,-0.01430887542665,0.04553184658289],[-0.01286324672401,-0.0047605037689209,-0.0075216931290925]],[[0.022333890199661,0.018902277573943,0.030319828540087],[0.066736727952957,-0.056484416127205,0.074216343462467],[-0.027448369190097,0.018696315586567,-0.033790603280067]],[[-0.031864706426859,0.014127019792795,-0.029940219596028],[-0.022668914869428,-0.028425937518477,-0.033124342560768],[-0.077801711857319,-0.039326876401901,-0.034315045922995]],[[-0.056452706456184,-0.062965549528599,-0.032245464622974],[-0.015805011615157,-0.013678962364793,-0.011780858039856],[0.01552617084235,0.041011326014996,0.028223661705852]],[[0.0068161091767251,-0.019109355285764,-0.061504319310188],[0.0068143946118653,0.045963179320097,-0.035179387778044],[0.04032589122653,0.023933714255691,-0.031554836779833]],[[0.031670913100243,-0.01011358294636,0.064226120710373],[-0.0059994859620929,0.049246620386839,0.015970941632986],[0.062505275011063,0.013354331254959,-0.030005512759089]],[[-0.10243768244982,0.015588507056236,-0.042166285216808],[-0.011097555048764,-0.036216620355844,-0.019775109365582],[0.0056874291040003,-0.0056571583263576,-0.043182000517845]],[[-0.030076621100307,-0.034521169960499,-0.053842060267925],[-0.028008580207825,-0.018531853333116,-0.015479900874197],[0.099573902785778,0.052021533250809,-0.0031382385641336]],[[0.013888807035983,-0.030649548396468,-0.031100805848837],[0.076724074780941,0.023947512730956,0.011303129605949],[-0.012417275458574,0.022457590326667,-0.065433867275715]],[[-0.054055523127317,-0.0044045117683709,0.051725290715694],[-0.02508182823658,0.096289843320847,-0.016354538500309],[0.088358394801617,0.060215372592211,0.1316379904747]],[[0.029936268925667,-0.0070818993262947,-0.051674667745829],[0.018872620537877,0.023130623623729,0.028854565694928],[-0.11186428368092,0.047496490180492,0.0058140894398093]],[[0.017996614798903,0.016012091189623,0.023067804053426],[-0.039672963321209,0.025358851999044,-0.0013423257041723],[-0.03586982935667,-0.0088682528585196,0.0082255834713578]],[[0.020606506615877,0.073872357606888,0.025464391335845],[-0.041566032916307,-0.019010938704014,0.024335362017155],[0.0027535068802536,0.013908894732594,-0.036696564406157]],[[0.036822430789471,-0.05150156840682,-0.057773981243372],[0.010474285110831,0.051803655922413,-0.067664183676243],[0.0098024616017938,-0.018411064520478,0.0099508473649621]],[[-0.004670605994761,-0.00012931525998283,-0.0055396119132638],[0.04583190754056,0.027183772996068,-0.065645515918732],[0.076711282134056,-0.009682908654213,0.037489306181669]],[[-0.0068902671337128,-0.085618168115616,-0.022647134959698],[0.0040597692131996,0.01554673537612,0.01245192065835],[-0.036125753074884,-0.058797277510166,0.023993575945497]],[[-0.051542527973652,-0.028738776221871,0.019754713401198],[-0.12789164483547,-0.046988394111395,-0.018542859703302],[0.033680461347103,-0.0065581202507019,0.014501519501209]],[[-0.035560984164476,0.017688119783998,-0.0035129503812641],[-0.029851745814085,0.032854963093996,-0.022332554683089],[-0.030681323260069,-0.055732242763042,-0.020956594496965]],[[-0.028217999264598,0.063967980444431,0.078330650925636],[-0.037862561643124,0.018869126215577,-0.065795704722404],[0.0017062292899936,-0.074507310986519,-0.047108333557844]],[[-0.012650776654482,0.0090391552075744,-0.033992972224951],[0.047582808881998,0.034503992646933,-0.033521745353937],[0.08165729790926,0.01481790933758,0.021804353222251]],[[-0.04893471673131,0.014709717594087,0.005480601452291],[0.0026836446486413,-0.061766669154167,-0.027494549751282],[-0.0053790546953678,-0.034351240843534,-0.039303123950958]],[[-0.082085087895393,0.018127540126443,0.013713238760829],[0.047906465828419,-0.0065878015011549,-0.013609571382403],[-0.0030169880483299,-0.062563307583332,-0.0077052284032106]],[[-0.018060361966491,0.02152144163847,-0.010867509059608],[-0.03083804436028,-0.014321238733828,-0.081092916429043],[0.04511596634984,0.055069237947464,-0.011582952924073]],[[-0.018805857747793,0.015799812972546,0.086178086698055],[-0.072842195630074,0.057717714458704,0.020366746932268],[-0.060245290398598,0.026948533952236,-0.068917527794838]],[[0.024286573752761,0.044097721576691,-0.017870839685202],[0.035968083888292,0.062910743057728,-0.0073054656386375],[0.00791303999722,0.0011379146017134,7.6746888225898e-05]],[[-0.093799829483032,-0.032169125974178,-0.047589715570211],[-0.038670282810926,-0.061243556439877,-0.045114275068045],[-0.0014645342016593,0.03313459828496,0.0089208744466305]],[[0.079401783645153,-0.025578124448657,0.0093070464208722],[-0.047828435897827,-0.0041011837311089,0.0057541322894394],[-0.0098205916583538,0.0079610403627157,0.047171968966722]],[[0.045086551457644,0.0432931445539,0.00053660239791498],[0.069375574588776,-0.040237855166197,0.055780656635761],[-0.017750069499016,0.044209271669388,-0.024617947638035]],[[-0.015413221903145,0.0080510536208749,-0.012883516028523],[0.021311119198799,0.051910851150751,-0.030739357694983],[0.052135623991489,0.040233083069324,-0.017157398164272]],[[0.018202075734735,0.035804491490126,-0.043812543153763],[0.021384200081229,-0.052400439977646,-0.044127076864243],[0.05571810528636,-0.026019835844636,0.036540545523167]],[[0.04592053592205,0.083687588572502,-0.015894897282124],[0.059287793934345,-0.05925264954567,0.032027415931225],[0.010261030867696,0.01984322629869,0.093733116984367]],[[0.067395202815533,0.055019229650497,0.013880942948163],[-0.047866746783257,-0.047108683735132,-0.032141037285328],[0.074861645698547,-0.0015851230127737,-0.060356467962265]],[[0.013739008456469,0.027915872633457,-0.023432640358806],[-0.083556793630123,-0.021868107840419,0.051319949328899],[-0.047769196331501,0.025583494454622,0.030119827017188]],[[0.01766799017787,0.042310334742069,-0.018614670261741],[0.016009338200092,-0.057797640562057,0.047492180019617],[-0.02704987488687,-0.088946610689163,0.099590517580509]],[[0.05369370803237,0.042710889130831,-0.081282913684845],[-0.037963308393955,0.0087898736819625,-0.037127386778593],[-0.011367534287274,-0.069811105728149,-0.040051866322756]],[[-0.063679158687592,0.0062198019586504,0.031743470579386],[0.0183544177562,0.02277903445065,-0.034568727016449],[-0.0042151440866292,0.0064630452543497,-0.056092023849487]],[[0.065178908407688,0.059348061680794,-0.016479521989822],[0.050278402864933,0.064433053135872,0.034742578864098],[0.048446204513311,-0.051239855587482,0.032674707472324]],[[0.030086992308497,-0.027685599401593,-0.059027224779129],[0.022402143105865,-0.010471816174686,0.0097874710336328],[0.069794960319996,-0.012735363095999,-0.027093816548586]],[[-0.026247575879097,0.045771040022373,-0.023430429399014],[-0.006089105270803,-0.0087045188993216,-0.0078491698950529],[0.053314171731472,-0.016729421913624,-0.023197829723358]],[[0.014709766954184,-0.0020700448658317,0.023917844519019],[-0.035345029085875,0.012575849890709,-0.018608659505844],[-0.041327264159918,0.041768401861191,-0.046553816646338]],[[0.018643919378519,-0.053135871887207,0.038665283471346],[0.015138564631343,0.035078585147858,-0.072152629494667],[-0.04270338639617,0.016603088006377,-0.04089367389679]],[[-0.046598806977272,0.043653067201376,0.0027891320642084],[0.093971528112888,0.041053116321564,0.030340610072017],[-0.013220878317952,-0.1250127106905,-0.00072389369597659]],[[0.0068967835977674,-0.058067303150892,0.013712408021092],[-0.021858919411898,-0.0087243597954512,-0.014783070422709],[-0.03457959741354,0.0080521618947387,0.015754731371999]],[[0.08992125838995,-0.027656801044941,0.03995468094945],[-0.045077722519636,0.011787569150329,0.043625991791487],[0.05420471355319,-0.034894477576017,-0.052717972546816]],[[-0.033916518092155,-0.021100297570229,0.017011599615216],[0.060532748699188,0.10659220814705,-0.048703532665968],[0.0406155847013,0.047430001199245,-0.0024704320821911]],[[0.059216111898422,0.015587829053402,-0.02744647115469],[-0.047393560409546,-0.014904307201505,-0.013311609625816],[0.0018239631317556,0.051801953464746,0.066338576376438]],[[-0.046603094786406,0.062733791768551,-0.051847405731678],[0.0655812099576,0.020480317994952,-0.062888868153095],[0.034365471452475,0.051387920975685,-0.052635297179222]],[[-0.012575434520841,-0.073162294924259,0.0018998860614374],[-0.029575670138001,0.031263593584299,-0.021600529551506],[0.04869681596756,0.083848692476749,-0.018358461558819]],[[-0.0049035921692848,0.028658946976066,0.016335774213076],[0.054235350340605,-0.043663453310728,0.017238283529878],[-0.053684040904045,0.010768513195217,-0.045752923935652]],[[0.064059466123581,0.018216609954834,-0.022484626621008],[-0.030394285917282,0.0097151370719075,0.022120665758848],[-0.074450172483921,-0.021408129483461,0.1124439239502]],[[0.032625198364258,0.057830318808556,0.016321355476975],[-0.062593959271908,-0.029128670692444,-0.0031192887108773],[-0.013186430558562,0.051960304379463,0.051699955016375]],[[-0.018729055300355,-0.016234451904893,0.0034145938698202],[-0.015310813672841,0.024320909753442,0.087733916938305],[-0.0030737041961402,-0.0023318929597735,0.070326663553715]],[[-0.095239758491516,-0.023150602355599,-0.033091548830271],[-0.03621394559741,0.018123913556337,-0.04216268658638],[-0.033012941479683,-0.0028057808522135,-0.047068484127522]],[[-0.027691181749105,-0.020817950367928,0.0043107597157359],[0.016268953680992,-0.038714092224836,0.014460103586316],[-0.0044765616767108,-0.015299904160202,0.0063412804156542]],[[-0.076428912580013,-0.026256373152137,-0.01101441681385],[-0.021126853302121,-0.019937839359045,0.010089212097228],[0.010599408298731,-0.024763083085418,0.032056499272585]],[[0.0055888369679451,-0.0048329741694033,-0.042218245565891],[-0.053673911839724,0.063355632126331,-0.018078191205859],[-0.042402200400829,-0.036401063203812,-0.098139241337776]],[[-0.069360628724098,-0.020348699763417,-0.026048289611936],[-0.096468634903431,-0.0022514059673995,0.026191622018814],[-0.015264151617885,0.019460190087557,0.016884129494429]],[[0.084232904016972,-0.05491491034627,-0.0046250750310719],[0.02294578589499,-0.043180011212826,0.029284246265888],[-0.022503366693854,0.037541583180428,0.036948788911104]],[[0.044188369065523,-0.071249201893806,0.015822043642402],[0.058664288371801,0.045117843896151,0.012696902267635],[0.094951122999191,0.0072403475642204,0.037670657038689]],[[-0.042488474398851,-0.024093732237816,0.076130583882332],[0.025550210848451,0.00082967703929171,-0.021737292408943],[0.032082036137581,0.030459130182862,0.031026935204864]],[[-0.052537433803082,-0.062412828207016,-0.057286508381367],[0.031942434608936,-0.029174447059631,-0.038302894681692],[-0.030759902670979,-0.0043571428395808,-0.012530211359262]],[[-0.018925774842501,-0.007180109154433,0.032411634922028],[-0.013143966905773,0.0023618340492249,0.058867685496807],[0.02691069431603,0.022282468155026,0.052457399666309]]],[[[0.074582025408745,-0.046091292053461,-0.11939433962107],[-0.066997230052948,0.016839617863297,-0.14907942712307],[0.026397258043289,0.058635707944632,0.12738478183746]],[[0.076083838939667,-0.061299685388803,-0.090731203556061],[-0.20062665641308,0.01770500279963,0.11659539490938],[-0.0018852761713788,0.0096580823883414,0.047639679163694]],[[-0.032839268445969,0.0081430152058601,-0.15777108073235],[0.092760726809502,0.015215435065329,0.060865662992001],[0.10928174108267,-0.0080858403816819,0.096955738961697]],[[-0.10052087903023,-0.042043834924698,-0.19540396332741],[-0.013064019382,-0.035032149404287,-0.053770292550325],[0.033286951482296,-0.080778412520885,-0.10616128891706]],[[-0.060520477592945,-0.21085049211979,-0.1296067237854],[0.27766489982605,0.2284099906683,0.20844595134258],[-0.032204896211624,-0.10117304325104,-0.028586195781827]],[[0.086890563368797,0.13118457794189,0.2118906378746],[-0.12073235958815,-0.10487914085388,-0.035885836929083],[0.079622536897659,0.090368933975697,0.091194175183773]],[[0.13090999424458,0.29631409049034,0.45828992128372],[-0.067307084798813,-0.074935562908649,-0.21071016788483],[0.0836426243186,-0.026363205164671,-0.061512980610132]],[[-0.080992683768272,-0.064997330307961,-0.090399868786335],[-0.0042511383071542,-0.070975922048092,0.082224681973457],[-0.064934864640236,0.059442069381475,0.17052637040615]],[[-0.11096949875355,-0.0067718955688179,0.14613787829876],[-0.079073250293732,0.19947494566441,0.011897603981197],[-0.1041329652071,0.052760809659958,0.16540007293224]],[[-0.0031167855486274,-0.16381628811359,-0.30520132184029],[-0.0011734287254512,0.021024918183684,-0.036941103637218],[-0.13938057422638,-0.099814169108868,-0.18814268708229]],[[0.037582732737064,0.016579018905759,0.021743869408965],[0.12564714252949,0.049719113856554,0.023501707240939],[0.11855148524046,0.096129670739174,0.01909189298749]],[[-0.083895117044449,-0.10571989417076,0.13537220656872],[-0.036886353045702,0.020207054913044,0.05945298448205],[-0.030953450128436,0.20060203969479,-0.02310710772872]],[[-0.044249787926674,0.015068059787154,0.081794880330563],[-0.090682707726955,-0.11682531237602,-0.10693955421448],[-0.054149825125933,0.12639464437962,0.0075342007912695]],[[-0.096825078129768,-0.17980465292931,-0.1715774089098],[-0.076250933110714,-0.13492627441883,-0.1955873966217],[0.058894213289022,-0.12620855867863,-0.15431095659733]],[[-0.16781847178936,0.044526666402817,0.068390876054764],[-0.16294871270657,-0.17309260368347,-0.097415216267109],[-0.041355099529028,-0.039231352508068,0.10087482631207]],[[-0.027654917910695,-0.19301733374596,-0.158158197999],[0.070756651461124,-0.0052414028905332,-0.09790463000536],[0.0080665592104197,-0.17743726074696,-0.069626063108444]],[[0.01020785421133,0.19670084118843,-0.085444688796997],[0.0037491691764444,-0.16304542124271,-0.17895559966564],[-0.052525229752064,0.023023238405585,0.015087218023837]],[[-0.0018853804795071,0.076579548418522,-0.060024775564671],[0.068550683557987,0.080847531557083,0.24267792701721],[-0.092258259654045,0.072979904711246,-0.047031052410603]],[[-0.17878665030003,-0.1083307787776,-0.28325748443604],[0.17746160924435,0.12592560052872,0.19314406812191],[0.10644161701202,-0.0097316922619939,-0.016714142635465]],[[0.012138764373958,-0.0043076425790787,0.05581684038043],[0.010399390012026,-0.055342365056276,0.15327042341232],[0.010831718333066,0.085414282977581,0.049077291041613]],[[0.015313099138439,-0.11520366370678,0.1756154447794],[-0.10918546468019,0.015669528394938,0.14542591571808],[-0.32051342725754,-0.21496339142323,-0.31645861268044]],[[-0.030691474676132,-0.1075187921524,-0.13896144926548],[0.010522304102778,0.0028014357667416,0.073228552937508],[-0.17521247267723,-0.028110533952713,-0.045891690999269]],[[-0.072944723069668,-0.20886486768723,-0.091592594981194],[-0.0039996583946049,0.13330812752247,0.15014566481113],[-0.074666693806648,-0.13978286087513,-0.13227508962154]],[[-0.051817514002323,-0.0086440844461322,-0.12824235856533],[0.083136104047298,0.0092828292399645,-0.071107015013695],[-0.088617116212845,-0.17551735043526,0.0019132435554639]],[[0.14961193501949,0.084713712334633,-0.075030624866486],[-0.040838524699211,0.048893727362156,0.050573278218508],[0.13665798306465,0.28754287958145,0.19604958593845]],[[0.017870901152492,0.085275247693062,-0.056266196072102],[0.013570884242654,0.071914955973625,-0.047123305499554],[-0.14771214127541,-0.12479569762945,-0.023556375876069]],[[0.10791132599115,0.014325113967061,-0.065672256052494],[0.0054748407565057,-0.19646862149239,0.092840261757374],[0.048796780407429,-0.076851226389408,-0.20451185107231]],[[-0.16409666836262,-0.12092922627926,-0.22165870666504],[-0.0043326299637556,-0.043682012706995,-0.085917823016644],[-0.034302346408367,-0.20662730932236,0.08819056302309]],[[0.088739238679409,-0.0064357109367847,0.018716670572758],[-0.13315962255001,-0.011372184380889,-0.091247379779816],[-0.20629827678204,0.12485780566931,0.057102534919977]],[[0.13784831762314,-0.26380568742752,-0.017720440402627],[0.3642435669899,0.014291238039732,-0.15550790727139],[0.047415520995855,0.044846445322037,0.017052091658115]],[[-0.12412836402655,-0.16769705712795,-0.12999825179577],[0.058015644550323,-0.071520984172821,-0.085688062012196],[0.075604505836964,0.022433491423726,0.17466519773006]],[[-0.045322600752115,-0.038602776825428,-0.055277988314629],[0.12763030827045,0.087136127054691,0.12641705572605],[0.15089920163155,0.13598617911339,-0.010165727697313]],[[0.0187963899225,0.087765231728554,0.18879677355289],[-0.090962581336498,-0.051017709076405,0.053315155208111],[-0.11623290926218,-0.15274664759636,0.11583514511585]],[[-0.25190788507462,-0.013536611571908,0.13659158349037],[-0.10400625318289,-0.042303431779146,-0.022596007212996],[-0.038700215518475,-0.075284987688065,0.10498431324959]],[[-0.016597434878349,-0.00077323889127001,0.014815063215792],[-0.069606602191925,0.027099719271064,0.12104497104883],[0.16777336597443,0.061111845076084,-0.071083307266235]],[[-0.04305674508214,-0.0061978339217603,0.070357568562031],[-0.058051347732544,0.12568758428097,0.092089593410492],[-0.10294849425554,-0.026978723704815,0.0088968081399798]],[[0.16299119591713,0.067224070429802,0.0014391160802916],[-0.013466890901327,-0.039051439613104,0.096820048987865],[-0.16078390181065,-0.21013185381889,-0.054297432303429]],[[0.097166962921619,-0.053482629358768,0.017845610156655],[0.014012832194567,0.033058904111385,0.014726840890944],[0.10382703691721,-0.14095722138882,-0.13817730545998]],[[0.015072125941515,0.24300833046436,-0.10628140717745],[-0.048723585903645,-0.059773106127977,-0.10518088191748],[0.12773366272449,-0.09044835716486,-0.093825280666351]],[[-0.10761176794767,-0.014533199369907,-0.022614005953074],[0.23000699281693,0.12815910577774,-0.11611264944077],[-0.12182910740376,0.0073152799159288,0.057335965335369]],[[-0.0093494253233075,-0.02733419649303,-0.049614679068327],[0.09147347509861,-0.034973777830601,-0.19141705334187],[0.036051541566849,-0.025941278785467,0.044189162552357]],[[0.1439276188612,0.074688464403152,0.17062340676785],[0.0091705042868853,0.076706789433956,0.087610080838203],[0.16663978993893,0.05021433904767,0.019650751724839]],[[0.084513500332832,-0.13068532943726,-0.14518262445927],[-0.097444728016853,-0.1898854970932,-0.069203183054924],[-0.02271387912333,-0.022977305576205,-0.010068383999169]],[[-0.056188013404608,-0.027589958161116,0.018171086907387],[0.031121781095862,-0.062655888497829,0.060198307037354],[0.036315985023975,-0.045371524989605,0.014392155222595]],[[-0.074767276644707,0.029013121500611,0.003298316616565],[-0.071024902164936,-0.15631225705147,-0.11377165466547],[0.0019611241295934,-0.054999705404043,-0.014869266189635]],[[0.13782288134098,-0.021241866052151,0.087242916226387],[-0.027129596099257,-0.074115939438343,-0.0026542567647994],[0.011633447371423,-0.0066015692427754,0.054209403693676]],[[-0.0081533016636968,-0.080984219908714,-0.2550111413002],[-0.141222178936,-0.21277968585491,-0.052048459649086],[0.016572767868638,-0.19013869762421,-0.22384525835514]],[[0.065938383340836,0.11432164907455,-0.070708967745304],[-0.17969560623169,-0.16929015517235,-0.068135410547256],[-0.35678985714912,-0.072585731744766,0.15055313706398]],[[-0.038710843771696,0.067830890417099,-0.086751379072666],[0.046839270740747,0.17265403270721,0.26087602972984],[-0.098410114645958,-0.020858980715275,0.22064054012299]],[[-0.27164798974991,-0.11142393946648,-0.05813180282712],[0.058611750602722,-0.011944778263569,-0.044894404709339],[-0.033343683928251,-0.033834215253592,-0.040697753429413]],[[-0.23351295292377,0.062715992331505,0.19616982340813],[-0.11421802639961,-0.079300597310066,-0.17204302549362],[0.060283694416285,-0.095018237829208,-0.21155855059624]],[[-0.026899203658104,0.062344253063202,-0.045834314078093],[0.070410437881947,-0.059681661427021,-0.099768355488777],[0.00013324990868568,0.057978827506304,-0.044149491935968]],[[-0.050292495638132,-0.17367224395275,-0.16975072026253],[-0.025128154084086,-0.22742912173271,-0.053016036748886],[0.0115487864241,-0.1219362616539,0.040923327207565]],[[0.18835271894932,-0.058622177690268,-0.18109868466854],[-0.007159560918808,0.078860782086849,0.019154384732246],[0.10791936516762,0.11720073223114,0.14924594759941]],[[0.24224063754082,0.15592241287231,0.018472131341696],[-0.15874195098877,-0.043454084545374,0.03984472155571],[-0.056864254176617,-0.11030513048172,-0.18292923271656]],[[0.35843387246132,0.022197550162673,0.080311186611652],[-0.0351800955832,0.037495542317629,0.043854501098394],[0.0024792787153274,-0.0034633427858353,0.075718253850937]],[[0.12828595936298,0.10467114299536,0.15164834260941],[-0.037551183253527,0.0033528213389218,0.032487586140633],[-0.06000555306673,-0.077128514647484,-0.065221443772316]],[[-0.094601288437843,-0.17280831933022,-0.10721744596958],[-0.17662088572979,-0.13249476253986,0.12139692157507],[-0.24325609207153,-0.13811685144901,0.10083862394094]],[[-0.20750041306019,-0.15557381510735,-0.29069590568542],[0.048825014382601,-0.012722573243082,0.18847584724426],[0.083712361752987,-0.13804385066032,0.019665284082294]],[[-0.14242218434811,0.039731774479151,0.27102753520012],[-0.11086813360453,-0.2555718421936,-0.023747520521283],[0.35005983710289,0.019594045355916,0.14848607778549]],[[0.14306361973286,0.12175714969635,-0.22190019488335],[0.053774517029524,-0.16349256038666,-0.11291167140007],[-0.1140538752079,-0.20324502885342,-0.010735984891653]],[[0.067359074950218,0.11070542037487,-0.17128112912178],[0.024520875886083,0.0018566813087091,-0.14951108396053],[-0.22237125039101,-0.0053065014071763,-0.064372397959232]],[[-0.03608875721693,0.015203513205051,-0.02530562132597],[0.16010344028473,0.0014351558638737,-0.067989870905876],[-0.042960815131664,-0.079269334673882,-0.1006193459034]],[[0.15343469381332,0.046062361449003,-0.23718532919884],[-0.11618600785732,0.15268675982952,0.24636341631413],[0.04634852334857,-0.12073875963688,-0.033140320330858]],[[-0.19928050041199,-0.030572514981031,-0.035662621259689],[-0.00038514137850143,0.07596043497324,0.017944343388081],[-0.085673294961452,-0.10901395231485,-0.096357628703117]],[[-0.10036943852901,-0.049146648496389,-0.013688360340893],[-0.010691452771425,0.0035789667163044,0.08235439658165],[0.054966948926449,-0.10288249701262,-0.004486785735935]],[[-0.020157149061561,-0.035405024886131,-0.0028243295382708],[0.15477834641933,0.17976559698582,0.019854165613651],[-0.058532148599625,-0.0042239800095558,0.02929712831974]],[[-0.055718172341585,-0.052898112684488,-0.025659371167421],[-0.1537884324789,-0.19591103494167,0.010831865482032],[0.069487541913986,0.021798174828291,-0.08649929612875]],[[0.019786512479186,-0.053053967654705,-0.12672162055969],[-0.0074692601338029,-0.026660760864615,-0.03291592374444],[-0.014264401048422,0.021474476903677,0.041485860943794]],[[0.05210530012846,0.006386558059603,-0.14808334410191],[0.073234781622887,0.11340162158012,0.02528871782124],[-0.16448739171028,-0.12461343407631,0.061047580093145]],[[0.053088027983904,-0.086962662637234,0.072032026946545],[-0.093321278691292,0.1085394769907,-0.029835741966963],[0.0044718375429511,0.0064511457458138,0.20810556411743]],[[-0.063623324036598,-0.092510782182217,0.051542062312365],[0.059137213975191,-0.065043397247791,0.036827139556408],[-0.070150382816792,-0.06025517359376,0.0027258633635938]],[[-0.053636379539967,-0.17602635920048,-0.21772983670235],[-0.10931898653507,0.15774717926979,0.10163890570402],[0.20953013002872,-0.12744362652302,-0.00048154941760004]],[[-0.11446886509657,-0.054441023617983,-0.023750124499202],[-0.04401532933116,0.08490677177906,0.022579064592719],[-0.093213051557541,0.0062415115535259,-0.067612625658512]],[[-0.11461499333382,0.050704754889011,-0.0069172335788608],[-0.19263988733292,-0.10446640104055,-0.10518848150969],[-0.04080655425787,0.10483582317829,0.098717033863068]],[[0.032240305095911,-0.08335168659687,-0.21782387793064],[0.18247902393341,0.10945153981447,0.18183098733425],[0.01357020996511,0.044676374644041,-0.036044299602509]],[[0.030125543475151,0.093414694070816,0.24584127962589],[-0.15541344881058,-0.084318064153194,-0.10005819797516],[0.21010228991508,-0.015393100678921,-0.15474860370159]],[[-0.13736064732075,-0.020282708108425,0.016912683844566],[-0.051664616912603,0.17166794836521,0.15042293071747],[-0.0093032345175743,0.021740334108472,0.015650881454349]],[[-0.082659587264061,-0.023626890033484,-0.012841378338635],[-0.081954874098301,0.02427463978529,0.06623737514019],[0.10804785043001,0.10602734237909,0.033871449530125]],[[-0.16340199112892,-0.050192043185234,-0.10050936788321],[-0.20108185708523,-0.18661791086197,-0.19519706070423],[0.035331096500158,-0.0068785850889981,-0.099174976348877]],[[0.029215136542916,-0.091387748718262,-0.035831663757563],[0.089945606887341,-0.1046604886651,0.073212616145611],[-0.051010560244322,-0.076842546463013,-0.0071303369477391]],[[-0.0080921640619636,0.31164127588272,0.0042016441002488],[0.1091874986887,-0.28860637545586,-0.25842267274857],[0.34865438938141,0.17029009759426,0.043496925383806]],[[-0.051436427980661,0.1452954262495,0.21083855628967],[0.047356210649014,0.039894632995129,0.041190586984158],[-0.14974325895309,-0.070278912782669,-0.011996324174106]],[[-0.030804760754108,0.018859453499317,0.04246710985899],[-0.14692169427872,-0.092531532049179,0.15389494597912],[-0.055954337120056,-0.11535170674324,0.20342607796192]],[[0.20543563365936,0.065269879996777,-0.16177739202976],[0.081936620175838,0.13087065517902,0.023838678374887],[-0.037372540682554,-0.17596161365509,-0.12545463442802]],[[-0.004363227635622,-0.0099566038697958,0.095233470201492],[-0.032907195389271,-0.11289114505053,0.12031601369381],[0.015678850933909,-0.021705048158765,-0.016672460362315]],[[-0.039031263440847,0.016079688444734,0.091472111642361],[-0.24611431360245,-0.056091357022524,0.01926900818944],[0.0039450926706195,-0.056150257587433,0.020952941849828]],[[-0.067324325442314,0.0078476155176759,-0.096097476780415],[0.051985237747431,0.10568277537823,0.17556099593639],[0.052691791206598,-0.063559100031853,0.023708056658506]],[[0.0096028465777636,0.065737843513489,-0.23523439466953],[-0.094858780503273,-0.027740456163883,0.22945763170719],[-0.023256149142981,0.1347953826189,0.21859712898731]],[[-0.13036441802979,-0.13850243389606,-0.14549718797207],[0.070901080965996,0.057987384498119,0.063098765909672],[-0.0082344133406878,0.11047004163265,-0.020416343584657]],[[0.074574939906597,-0.27586543560028,0.17532950639725],[-0.059083357453346,-0.015658967196941,0.11264754831791],[0.081470601260662,0.019352352246642,0.19819132983685]],[[0.066004253923893,-0.089183278381824,0.017013300210238],[0.10087285190821,-0.2835598886013,-0.17410671710968],[-0.031733021140099,-0.048354208469391,-0.019624337553978]],[[0.12377884984016,-0.011551100760698,-0.030902924016118],[0.064010679721832,-0.11352071166039,-0.1416699141264],[0.16987153887749,0.092052541673183,-0.052423506975174]],[[0.011391468346119,0.055426128208637,0.075629144906998],[0.02825097925961,0.023117400705814,-0.095714800059795],[0.071596123278141,0.0025923275388777,-0.062428697943687]],[[-0.2457787245512,-0.10753843933344,-0.17252232134342],[0.079065717756748,0.079963937401772,-0.053235996514559],[0.10586293786764,0.11463894695044,-0.19443967938423]],[[0.16390700638294,0.029556030407548,-0.16232749819756],[-0.057475611567497,-0.059156127274036,0.035923004150391],[0.083201132714748,-0.054014768451452,0.058416653424501]],[[-0.088462926447392,0.029185116291046,-0.023154286667705],[0.018942655995488,0.02711521461606,0.05186703056097],[-0.065760642290115,-0.0090039717033505,-0.074000358581543]],[[-0.1041347682476,-0.032289102673531,0.097422368824482],[-0.022482726722956,-0.12635025382042,0.033319063484669],[-0.18522815406322,-0.081798352301121,0.031063839793205]],[[0.066022507846355,0.055370222777128,0.20142686367035],[-0.088128231465816,-0.051801722496748,0.15510027110577],[-0.062466863542795,0.015126749873161,0.14183267951012]],[[0.032850425690413,-0.15420976281166,-0.2085217833519],[-0.0093323439359665,0.069126754999161,0.26884320378304],[-0.069108456373215,-0.15251986682415,-0.2066325545311]],[[-0.33996897935867,-0.13558408617973,-0.22237020730972],[0.050032492727041,0.1403644233942,0.24141976237297],[-0.026864897459745,0.018054291605949,-0.038329251110554]],[[0.018463708460331,-0.12679086625576,-0.13069055974483],[0.083614006638527,0.03615590557456,0.23846432566643],[0.0087104691192508,-0.072672657668591,-0.17479431629181]],[[-0.088336169719696,0.086513191461563,0.18499583005905],[-0.10968030244112,0.16377411782742,0.047425642609596],[0.16026252508163,0.01799064874649,0.16911977529526]],[[0.28210425376892,0.28344243764877,0.27966278791428],[-0.32645347714424,-0.057543277740479,-0.24572299420834],[0.0139240315184,0.16214500367641,0.051616325974464]],[[0.057451888918877,0.10215731710196,-0.1519963145256],[0.073715925216675,0.047553658485413,-0.016815334558487],[-0.082587458193302,0.12365751713514,-0.051762688905001]],[[-0.076599836349487,-0.10461347550154,-0.17118667066097],[-0.04662449285388,-0.046852543950081,0.22080986201763],[0.018765535205603,0.039375334978104,0.082529246807098]],[[0.11245430260897,-0.025418469682336,-0.12618727982044],[0.098565429449081,0.1156582608819,0.041599243879318],[0.14549577236176,0.11138468235731,-0.073052659630775]],[[-0.20254969596863,-0.13965030014515,-0.10058616101742],[0.012350105680525,-0.11572752147913,0.02474326081574],[0.21261763572693,-0.15349014103413,0.021060671657324]],[[0.082977533340454,0.083124525845051,0.0067892740480602],[-0.020651783794165,0.0098525797948241,0.1986135840416],[-0.042782552540302,-0.10522102564573,-0.059573732316494]],[[0.30061197280884,0.067729957401752,0.012794712558389],[0.11409470438957,-0.020998725667596,-0.045138027518988],[0.029007017612457,-0.030103990808129,0.061000421643257]],[[-0.0046296091750264,-0.042226210236549,-0.092621490359306],[-0.015298785641789,-0.075461320579052,-0.09378407895565],[-0.021903030574322,-0.08987994492054,-0.12148131430149]],[[0.22617648541927,0.10228110104799,-0.083724431693554],[0.057446468621492,0.08831687271595,0.15563230216503],[-0.18490916490555,-0.20510178804398,-0.17791503667831]],[[-0.12001249194145,-0.096436746418476,0.062926575541496],[-0.018547590821981,-0.20093262195587,0.10450757294893],[0.059391364455223,-0.093864753842354,-0.04351370036602]],[[-0.055798910558224,0.010036645457149,0.40708726644516],[-0.11741139739752,0.11821454763412,-0.031438443809748],[0.021982261911035,-0.20268812775612,0.035595595836639]],[[-0.064079113304615,-0.10910890251398,-0.072373919188976],[0.22918111085892,0.012537560425699,-0.086526870727539],[-0.046936437487602,-0.21018701791763,-0.036680221557617]],[[-0.13297651708126,-0.10056130588055,-0.072475902736187],[0.0056461817584932,0.05402160435915,0.091722130775452],[-0.068252079188824,-0.04684329777956,-0.1231359615922]],[[0.099227547645569,-0.15182147920132,-0.13515518605709],[0.13561877608299,0.040857374668121,0.03422475233674],[-0.15846075117588,-0.28523147106171,-0.11543682217598]],[[0.17714789509773,0.058950997889042,0.13692638278008],[-0.028079371899366,0.12974378466606,-0.078619703650475],[-0.052815299481153,0.10197343677282,0.15093369781971]],[[-0.062014743685722,-0.13141757249832,-0.044129773974419],[-0.092894569039345,-0.18954260647297,0.052617143839598],[-0.12279945611954,-0.15707612037659,-0.19694468379021]],[[-0.040393315255642,0.13207764923573,0.11518968641758],[-0.036337204277515,0.061505243182182,0.0891969576478],[0.014408685266972,0.010620884597301,0.013012864626944]],[[0.060585424304008,-0.09595700353384,-0.13432298600674],[0.058292176574469,0.072377070784569,0.14730045199394],[-0.11270873993635,-0.2437786757946,-0.079177998006344]],[[-0.036780085414648,0.12260590493679,0.0092875100672245],[0.0050971531309187,-0.00064248673152179,0.10764478892088],[0.17094960808754,0.032760564237833,-0.041882693767548]],[[-0.018865069374442,-0.11555404961109,-0.072714053094387],[0.012669496238232,-0.13055588304996,-0.031810361891985],[-0.056972242891788,-0.19461885094643,0.069785848259926]],[[-0.044123534113169,0.097194358706474,-0.052948508411646],[0.41015112400055,0.18222622573376,0.11122257262468],[-0.10835831612349,-0.0028388949576765,0.020356537774205]],[[0.13143549859524,0.033475201576948,-0.052181314677],[0.15092600882053,0.099957153201103,-0.086124807596207],[0.022646838799119,0.030485365539789,0.024442866444588]],[[-0.025262685492635,-0.063482396304607,0.0666573792696],[-0.1017991900444,-0.12907420098782,-0.080815024673939],[0.18098163604736,-0.024877054616809,-0.13808777928352]],[[0.017312986776233,-0.029340237379074,-0.0037976435851306],[-0.098648704588413,0.10593204945326,0.1823753118515],[-0.021587828174233,-0.065433010458946,-0.081297375261784]],[[-0.15665349364281,-0.10203351825476,-0.075091160833836],[0.033857293426991,0.070260763168335,0.0054796440526843],[-0.016988838091493,0.035979848355055,0.13297685980797]]],[[[0.049973983317614,0.018616592511535,-0.021304106339812],[0.010335404425859,-0.047353137284517,0.022953782230616],[-0.0072197047993541,0.041783731430769,0.0066670300439]],[[0.024172397330403,-0.001183922518976,0.020521471276879],[-0.044626250863075,0.052912995219231,-0.012636853381991],[-0.0010484406957403,-0.1121513620019,-0.066907122731209]],[[0.033309001475573,0.1044998690486,-0.017637358978391],[0.085971228778362,-0.03579518198967,-0.076633729040623],[0.0054463166743517,0.024554608389735,-0.025178324431181]],[[-0.012349925003946,0.044956650584936,-0.039305459707975],[0.010497889481485,0.04366060346365,0.028906263411045],[0.012164609506726,0.0086371535435319,0.041316218674183]],[[0.043256223201752,0.028985748067498,-0.038915552198887],[-0.022051464766264,0.039419744163752,0.0025708295870572],[-0.0038673677481711,0.019229225814342,-0.047949388623238]],[[-0.012509120628238,0.0048878476954997,-0.0099964309483767],[0.058522567152977,-0.0032687792554498,0.037881966680288],[-0.0058436840772629,0.014357055537403,-0.0020035710185766]],[[-0.018701739609241,-0.012766685336828,0.016798205673695],[0.12021062523127,-0.027372708544135,-0.022855270653963],[0.0060687796212733,-0.022661773487926,-0.059925265610218]],[[-0.029496995732188,0.018179390579462,0.0027152427937835],[-0.036809075623751,0.017215095460415,0.06244844570756],[-0.053413607180119,-0.007374900393188,-0.030517509207129]],[[0.032566953450441,0.027349978685379,0.018971046432853],[-0.098829872906208,-0.01095655374229,0.015220072120428],[-0.038843151181936,-0.019141985103488,0.019325828179717]],[[0.05434412509203,0.04119286686182,0.014708009548485],[0.014187401160598,-0.016837887465954,-0.059006072580814],[0.0003502010658849,-0.014733203686774,0.016498390585184]],[[0.01149882003665,0.054483186453581,0.061785131692886],[-0.01739757321775,0.038478069007397,-0.0090050585567951],[-0.078874938189983,-0.025821946561337,-0.071123227477074]],[[0.0026569347828627,0.0062589016743004,0.064290121197701],[-0.079592980444431,0.0046970350667834,-0.0019174918998033],[0.027487339451909,0.028315233066678,0.00033447975874878]],[[-0.03640753403306,0.047133039683104,0.074413880705833],[0.052940685302019,-0.013811253011227,0.059440154582262],[0.02299553155899,0.024329237639904,-0.031415887176991]],[[0.02206533588469,-0.035094171762466,-0.059124365448952],[0.0018792311893776,0.033437229692936,-0.047669358551502],[0.060872565954924,-0.022112611681223,-0.010670658200979]],[[-0.011681795120239,0.062916405498981,0.01341937482357],[-0.0050394106656313,-0.045727752149105,-0.034083943814039],[-0.048976324498653,-0.046285085380077,-0.028705356642604]],[[0.027171902358532,-0.040909394621849,-0.0011797887273133],[0.070275969803333,0.021281631663442,0.068047575652599],[-0.026009429246187,-0.085621632635593,-0.0086924228817225]],[[-0.017521807923913,0.036250956356525,0.033536866307259],[0.0015423551667482,-0.023512747138739,-0.062896579504013],[-0.032897673547268,-0.016697270795703,0.017860986292362]],[[0.041149206459522,-0.025825131684542,0.0027979526203126],[-0.0066312476992607,-0.079843640327454,0.022113202139735],[0.00094727711984888,-0.042040973901749,0.030910111963749]],[[0.031364351511002,0.0017677448922768,-0.031672321259975],[0.016033446416259,-0.029371598735452,-0.0051017170771956],[-0.015112178400159,-0.015622025355697,-0.0078267510980368]],[[-0.02831419184804,-0.057991322129965,-0.098774291574955],[0.075271666049957,-0.0059408429078758,-0.10442013293505],[0.11004568636417,0.05413007363677,-0.048295110464096]],[[-0.015434835106134,-0.0062292814254761,-0.022940060123801],[-0.01455148216337,-0.0080084223300219,0.035836916416883],[0.076641388237476,0.072509989142418,-0.036039963364601]],[[-0.024248510599136,-0.0063253049738705,0.030069133266807],[0.075912334024906,0.0092442659661174,0.032274387776852],[-0.0085870726034045,-0.036020923405886,-0.060905944555998]],[[0.0063416571356356,-0.027682058513165,-0.017686007544398],[0.04814375936985,-0.026613298803568,0.04966951161623],[-0.017440328374505,0.03534484282136,-0.007585025858134]],[[0.0045249480754137,0.063666976988316,0.037721376866102],[-0.0052997348830104,0.13487319648266,0.10471713542938],[-0.12295416742563,-0.090475976467133,-0.013624737039208]],[[0.014642928726971,-0.014126992784441,-0.054310109466314],[0.04121720418334,0.023558788001537,0.028656333684921],[0.0098999748006463,-0.023051362484694,0.021700138226151]],[[0.083016142249107,0.032765813171864,-0.072675868868828],[-0.041181594133377,-0.058225743472576,0.0072790812700987],[0.036382019519806,0.038829140365124,-0.02510616928339]],[[0.00043794151861221,0.0055711576715112,0.032023657113314],[0.022124879062176,-0.017792940139771,0.024388618767262],[0.0076535032130778,0.054655462503433,-0.027723707258701]],[[0.03731994330883,0.0028081019409001,0.019192097708583],[0.015289599075913,-0.040765039622784,-0.08808259665966],[-0.015683216974139,-0.028395423665643,-0.045602917671204]],[[-0.03063272126019,0.035190992057323,0.15425983071327],[-0.030518237501383,-0.017570661380887,0.0033913806546479],[-0.011174442246556,-0.042148094624281,0.079951018095016]],[[-0.0031804302707314,0.010920275002718,0.052246939390898],[0.032293379306793,0.0091830370947719,-0.014757443219423],[-0.0083301113918424,-0.042287029325962,0.034453224390745]],[[-0.0028025517240167,-0.0028586329426616,-0.0050633014179766],[-0.066320590674877,0.072853252291679,0.022751582786441],[0.015492009930313,0.014082842506468,0.039451539516449]],[[0.021486785262823,-0.094946697354317,-0.0025622120592743],[-0.030938157811761,-0.01153530087322,-0.046834263950586],[0.031776301562786,0.064675129950047,-0.0057783741503954]],[[0.032804105430841,0.026895875111222,-0.0037928340025246],[-0.022949263453484,0.01399811077863,0.028458878397942],[-0.0089131770655513,0.012817888520658,0.013644183985889]],[[-0.037701047956944,-0.023863054811954,0.013900985009968],[0.021507760509849,0.072243802249432,0.023916486650705],[0.055427484214306,0.038595780730247,-0.053769212216139]],[[-0.095654457807541,0.0013215622166172,0.017832979559898],[-0.017521902918816,0.0029635413084179,0.065992578864098],[-0.00065150926820934,0.011397595517337,0.013878124766052]],[[-0.065721102058887,0.071795374155045,0.0062131453305483],[-0.012384381145239,0.031746830791235,-0.052670832723379],[-0.048820827156305,0.029108472168446,0.04580695182085]],[[-0.006973831448704,0.0037912130355835,0.062356065958738],[0.017038846388459,0.015894144773483,0.0085289208218455],[-0.042262021452188,0.047189608216286,-0.064070224761963]],[[0.010519408620894,-0.027941904962063,0.014948268420994],[0.018214799463749,0.031129328534007,0.047411788254976],[0.022339504212141,-0.036175653338432,0.018166190013289]],[[0.013622195459902,-0.011672055348754,0.0036633582785726],[-0.11240680515766,0.015678510069847,0.036443743854761],[-0.081139639019966,-0.041528888046741,0.0016594959888607]],[[-0.012534399516881,-0.045134328305721,0.017157908529043],[-0.042958199977875,0.014883565716445,0.034760747104883],[0.060953594744205,-0.025332884863019,-0.040744811296463]],[[-0.019323837012053,0.045589108020067,0.0038921618834138],[0.042778521776199,0.019400775432587,-0.072142273187637],[0.015289012342691,-0.018360689282417,-0.10034211724997]],[[-0.0077462648041546,-0.021090606227517,-0.0012640510685742],[0.010314982384443,-0.018394200131297,0.076476722955704],[0.0027450313791633,0.033155273646116,-0.032134275883436]],[[0.027177231386304,0.005394630599767,-0.038116183131933],[-0.03974213078618,0.010435950942338,-0.034168943762779],[-0.0070053818635643,0.054895561188459,0.015586922876537]],[[0.010021523572505,-0.0515709631145,0.032834619283676],[0.016253482550383,0.11547894030809,-0.0037270272150636],[-0.011045944876969,0.036054506897926,0.058324113488197]],[[-0.024102408438921,-0.049367364495993,-0.042073622345924],[-0.083673655986786,-0.11004608124495,-0.053254876285791],[0.03699066862464,0.093809135258198,0.081364370882511]],[[0.038490690290928,-0.0789789929986,0.026847874745727],[-0.0078200502321124,-0.098563507199287,-0.012953185476363],[-0.017860848456621,-0.035579215735197,0.093081846833229]],[[-0.020056961104274,0.0042391433380544,-0.013523097150028],[0.053802397102118,0.03803051635623,-0.057269986718893],[0.13190405070782,-0.012387563474476,-0.055682543665171]],[[0.059254143387079,0.05315650627017,-0.00440738722682],[-0.071852892637253,-0.012576525099576,-0.049497030675411],[-0.026468327268958,0.0021543719340116,-0.0054107895120978]],[[-0.043466228991747,-0.010306505486369,-0.046797297894955],[-0.029926462098956,0.081860572099686,0.016894653439522],[0.010522183962166,0.01754087023437,0.034906551241875]],[[-0.046874191612005,-0.055371597409248,-0.022285996004939],[0.0031570706050843,0.027070064097643,0.0079922266304493],[-0.020805602893233,0.035542387515306,0.0053314440883696]],[[0.038556918501854,-0.034061953425407,0.028471691533923],[-0.014938795939088,0.0031596436165273,-0.0050580324605107],[0.042256362736225,-0.054946966469288,-0.0044233468361199]],[[0.0025067294482142,0.0060729868710041,0.012590711005032],[0.034487284719944,0.025618571788073,-0.0071156406775117],[-0.060504496097565,0.00071766297332942,-0.079496838152409]],[[0.069193087518215,-0.019992288202047,0.026488775387406],[-0.011828949674964,0.054056484252214,0.076771594583988],[-0.03494730591774,0.017848122864962,0.042685706168413]],[[-0.00040638507925905,0.0016823929036036,-0.027062132954597],[0.0075315381400287,-0.042549226433039,-0.092817209661007],[-0.01976247690618,-0.042403765022755,-0.0032586755696684]],[[0.0076067079789937,-0.025451509281993,-0.026564408093691],[0.032008845359087,-0.050993636250496,-0.039760615676641],[0.053769838064909,-0.022314462810755,0.010499853640795]],[[-0.034002635627985,0.017929036170244,-0.0018402062123641],[-0.02949408069253,0.0087775774300098,-0.074847407639027],[0.050935436040163,-0.036627762019634,0.00034937410964631]],[[0.0027110937517136,-0.016308492049575,-0.054860856384039],[-0.021573966369033,0.027232684195042,-0.018638717010617],[0.078366249799728,-0.013013264164329,-0.028157327324152]],[[-0.030087150633335,-0.0010713725350797,-0.025919459760189],[-0.017687566578388,0.0012449325295165,-0.036107935011387],[-0.012117533944547,0.053472504019737,0.026103941723704]],[[0.044198006391525,0.050430078059435,0.025358565151691],[0.04244726896286,0.027311727404594,0.014925918541849],[-0.012041582725942,0.0654261931777,-0.026644008234143]],[[-0.023806812241673,0.011895057745278,-0.020158916711807],[0.0085139377042651,0.0083105321973562,-0.11390994489193],[0.00049664173275232,-0.013813568279147,-0.045664589852095]],[[0.021258652210236,0.031807813793421,-0.02895119599998],[0.011509410105646,0.083419322967529,-0.02808977290988],[0.036622557789087,-0.018256045877934,-0.021928105503321]],[[-0.041352692991495,0.021789290010929,-0.00065722625004128],[0.048402026295662,0.013173419050872,-0.014836361631751],[0.045682732015848,0.017779640853405,-0.075431063771248]],[[0.012127667665482,0.068600080907345,-0.014543422497809],[0.026824004948139,-0.11157947778702,0.018813459202647],[0.078522332012653,0.017353862524033,-0.046454433351755]],[[0.011543857865036,-0.00083280762191862,-0.031274452805519],[0.0367078371346,-0.013167833909392,0.0055476729758084],[-0.013553145341575,0.071121536195278,0.0086369421333075]],[[0.042334746569395,0.044272419065237,-0.049296785145998],[0.069709807634354,-0.10117092728615,0.071289017796516],[0.0028915288858116,-0.0046622678637505,0.073991283774376]],[[0.0099743874743581,0.034232661128044,0.0078405924141407],[-0.027024583891034,0.01027587428689,-0.045916423201561],[0.021586773917079,-0.029024813324213,0.071162544190884]],[[0.064823254942894,0.055971559137106,-0.029226496815681],[0.021018821746111,0.011662684381008,-0.030500588938594],[0.022017614915967,-0.069092802703381,-0.0019220953108743]],[[0.05348688736558,0.021030206233263,-0.035151887685061],[0.011634166352451,0.012907444499433,-0.0034569872077554],[0.0050869937986135,0.046001397073269,-0.041469547897577]],[[0.035716712474823,0.020062826573849,0.0081443479284644],[0.0055928900837898,0.031682420521975,-0.10614866018295],[-0.049590215086937,0.10592314600945,-0.05174307897687]],[[-0.0070714349858463,0.017736807465553,-0.017720626667142],[-0.0085623329505324,0.015911052003503,0.032493513077497],[-0.049154531210661,-0.045885499566793,-0.0072348723188043]],[[-0.023993279784918,0.031732335686684,-0.068108551204205],[-0.013696431182325,0.015863731503487,-0.052356842905283],[-0.035258922725916,-0.032182674854994,-0.0008464427664876]],[[-0.023507392033935,-0.022278167307377,0.067553013563156],[-0.077399984002113,-0.010314330458641,-0.033630639314651],[0.023397598415613,-0.031001504510641,0.0040345839224756]],[[0.094761341810226,0.0077137621119618,-0.011565296910703],[-0.020586855709553,-0.066541075706482,0.016999047249556],[-0.069293834269047,0.022305116057396,0.034350968897343]],[[-0.024570409208536,0.0058470694348216,0.019753580912948],[0.027208797633648,-0.015432201325893,-0.054449561983347],[0.080864652991295,0.02135006710887,0.02530206553638]],[[-0.069431304931641,-0.030985970050097,0.023491758853197],[-0.027681697160006,-0.032192673534155,-0.02606906928122],[0.038550905883312,0.11379790306091,-0.042514182627201]],[[0.045655019581318,-0.047670144587755,0.0080045908689499],[0.0068986201658845,0.049792319536209,-0.050375208258629],[0.021109292283654,0.041273962706327,-0.065491817891598]],[[0.0061528170481324,0.055571168661118,-0.010017142631114],[0.00075758912134916,-0.026284910738468,0.034613016992807],[-0.010326754301786,-0.051330547779799,0.020114095881581]],[[-0.028550432994962,0.015815367922187,-0.10720903426409],[0.027032377198339,0.063050113618374,-0.039064731448889],[0.0037372966762632,0.0047991005703807,0.0076368772424757]],[[0.04673920571804,0.024656556546688,0.034496452659369],[-0.0057361936196685,0.016447979956865,-0.044136233627796],[0.020893367007375,0.038429215550423,-0.031261462718248]],[[-0.013809830881655,-0.039883948862553,0.10489255189896],[0.006936548743397,-0.012999483384192,-0.0048023113049567],[0.0043188710696995,0.027223661541939,-0.04575040191412]],[[0.015145091339946,0.009879095479846,0.002114946488291],[0.010084335692227,-0.02780400775373,-0.025631664320827],[0.057717330753803,-0.022654879838228,-0.0004050736897625]],[[-0.02490876801312,0.03066448494792,-0.029824241995811],[-0.0021525037009269,0.0317174308002,0.012102059088647],[0.0043795756064355,-0.061044037342072,-0.029550200328231]],[[0.020287597551942,0.019598241895437,0.038900051265955],[0.013672633096576,-0.037590999156237,0.039038393646479],[-0.023198548704386,-0.011839078739285,-0.039200846105814]],[[-0.00059390754904598,-0.0069086831063032,0.050468873232603],[0.030133258551359,0.01018494181335,0.0064238798804581],[0.050661709159613,0.041588220745325,-0.026627728715539]],[[-0.013301754370332,-0.010462663136423,-0.05473205819726],[0.0065642292611301,0.0084141464903951,0.0039939074777067],[-0.045190487056971,0.0016247511375695,-0.0097675947472453]],[[-0.048372872173786,-0.078219972550869,-0.059573795646429],[0.019187016412616,-0.008223369717598,0.014742848463356],[0.065542794764042,0.078436948359013,-0.03539901599288]],[[-0.024737417697906,0.034486580640078,0.054595720022917],[-0.018574805930257,0.047242593020201,0.0038674855604768],[-0.07259376347065,-0.052939113229513,-0.068831637501717]],[[0.056248098611832,-0.064894698560238,0.016229122877121],[-0.020990610122681,-0.033520136028528,-0.037866976112127],[0.059267163276672,0.065840914845467,-0.037277098745108]],[[0.013559783808887,0.0013524399837479,-0.020919799804688],[0.049811664968729,-0.026950780302286,0.026068339124322],[-0.0014613838866353,0.00062511779833585,-0.076228886842728]],[[0.011967146769166,0.001809005625546,-0.16332916915417],[-0.037259627133608,-0.10366064310074,-0.01023752707988],[0.018819805234671,0.025535795837641,0.030043656006455]],[[-0.020041581243277,-0.0050737387500703,0.048667915165424],[-0.0032649585045874,-0.018259488046169,0.076175235211849],[0.046997167170048,-0.003268044674769,0.0045045972801745]],[[0.052338793873787,-0.040786523371935,-0.023771414533257],[0.084288515150547,-0.048275366425514,0.001551847322844],[0.057553380727768,-0.027877982705832,0.050231210887432]],[[0.051233753561974,0.0028351738583297,-0.020671591162682],[-0.0072147748433053,-0.054291054606438,-0.0067796590737998],[-0.013068687170744,0.040670268237591,-0.001945782918483]],[[-0.063819840550423,-0.10970563441515,-0.013987552374601],[0.020076565444469,0.017163081094623,0.083558686077595],[0.027518577873707,0.076787866652012,0.0073059946298599]],[[0.02303172275424,0.012292281724513,-0.012927666306496],[0.0031086013186723,-0.053882334381342,0.021461576223373],[0.0044427332468331,-0.021501369774342,0.050544809550047]],[[-0.035104103386402,0.030724413692951,-0.0026191954966635],[-0.027506465092301,-0.0060582379810512,0.002289411611855],[0.043859072029591,-0.011806955561042,0.0098872147500515]],[[0.022998886182904,-0.022773468866944,0.040992133319378],[-0.04525450617075,0.06302735209465,0.017281180247664],[-0.058959141373634,-0.029906759038568,-0.047649934887886]],[[-0.016498768702149,0.018529875203967,-0.015464327298105],[0.017914704978466,0.01012821868062,0.02105307392776],[0.031426601111889,-0.054283574223518,0.060765776783228]],[[-0.013305040076375,-0.053888667374849,0.032665897160769],[-0.013876171782613,0.086591012775898,-0.034535706043243],[-0.024288287386298,-0.064511209726334,-0.039442215114832]],[[0.059424377977848,0.006354799028486,0.038489319384098],[-0.047406695783138,0.027651937678456,0.043921738862991],[-0.051416460424662,0.026686849072576,-0.010042499750853]],[[0.024383494630456,-0.024469314143062,0.016567511484027],[-0.00068876525619999,-0.03533772751689,0.015544678084552],[-0.010019366629422,0.0077350954525173,0.028356239199638]],[[-0.019013036042452,-0.0080518433824182,-0.0062819104641676],[-0.026555621996522,0.046721994876862,0.070419482886791],[0.00038759541348554,-0.0028017105069011,-0.015353392809629]],[[0.0157800167799,0.008778715506196,0.014587977901101],[0.051991052925587,0.004486589692533,0.031505882740021],[-0.00040292704943568,0.0081728547811508,-0.010591726750135]],[[0.022130589932203,0.023073725402355,0.026451628655195],[0.03997640311718,-0.030418297275901,-0.0045171813108027],[0.018836321309209,-0.034913722425699,-0.014487070962787]],[[0.034488949924707,-0.022043723613024,0.0017388520063832],[-0.040207348763943,-0.022957725450397,0.013470252975821],[0.031781334429979,-0.022667843848467,0.019537711516023]],[[0.001981274690479,-0.039397768676281,-0.035017520189285],[-0.042968899011612,-0.018403751775622,0.068088173866272],[0.026264348998666,0.02365398965776,0.032275233417749]],[[0.026535341516137,0.061470080167055,-0.022975759580731],[0.053590439260006,0.046932481229305,0.033530794084072],[0.018151924014091,2.1678406483261e-06,-0.069224119186401]],[[-0.049337238073349,-0.051735602319241,-0.066467940807343],[0.046612106263638,-0.035036914050579,0.038515981286764],[0.041839048266411,-0.043401710689068,0.0045291273854673]],[[-0.013432923704386,-0.0059667420573533,-0.027095753699541],[-0.045125968754292,0.0089240791276097,0.012241535820067],[0.0081033110618591,0.098894670605659,0.0044813463464379]],[[0.0054606907069683,-0.029425235465169,-0.022590624168515],[-0.012235110625625,-0.004796676337719,0.018127180635929],[-0.025673761963844,-0.019538858905435,0.0083153257146478]],[[0.0083411475643516,0.073497951030731,-0.021884970366955],[0.052086301147938,-0.068086348474026,-0.084721177816391],[-0.014026647433639,-0.13938102126122,-0.079938240349293]],[[0.016120340675116,0.029290519654751,-0.01291813608259],[0.0061296653002501,-0.029204856604338,0.031683649867773],[0.0094869192689657,0.030330283567309,-0.03198828920722]],[[-0.067378133535385,0.013568382710218,-0.062623843550682],[0.038287051022053,0.040180500596762,-0.099066756665707],[0.09883114695549,-0.020467584952712,-0.015516610816121]],[[0.035309407860041,-0.0079377088695765,-0.009057248942554],[0.030314471572638,-0.053558792918921,-0.0061258114874363],[-0.00030424981378019,0.02759201079607,0.01560559310019]],[[0.006656258367002,0.061011716723442,-0.01118572615087],[-0.015399618074298,0.036571279168129,0.0040154680609703],[0.013169652782381,-0.0023280554451048,-0.012840512208641]],[[0.017497047781944,0.0045572379603982,0.046535581350327],[-0.023643450811505,-0.035684585571289,0.015119326300919],[0.01494032330811,-0.0078625911846757,-0.025642540305853]],[[0.051489662379026,0.016836306080222,-0.049563657492399],[0.049030788242817,-0.01296950597316,0.0031834435649216],[-0.027086174115539,0.051988575607538,-0.0029467935673892]],[[-0.006247385405004,-0.014558169990778,-0.011612976901233],[-0.033631894737482,0.014617866836488,6.5808308136184e-05],[-0.051607076078653,-0.032876640558243,-0.020945642143488]],[[-0.027192439883947,-0.080548122525215,0.02191580273211],[-0.010997409000993,0.043501287698746,0.10518944263458],[-0.028496166691184,-0.0017666632775217,0.020883355289698]],[[-0.037557512521744,-0.039868999272585,0.040966711938381],[0.03325204923749,-0.032338187098503,-0.0038731130771339],[0.0062648449093103,0.0062486217357218,0.041422408074141]],[[0.067728579044342,0.016733398661017,-0.050416827201843],[0.039184421300888,-0.024835491552949,-0.016297308728099],[-0.042534723877907,-0.044240839779377,0.0069697676226497]],[[-0.0043217712081969,0.054110217839479,-0.078498221933842],[0.024009056389332,0.03819689899683,-0.0070040374994278],[0.084583528339863,0.037266954779625,0.0024937242269516]],[[0.0070446287281811,-0.008615137077868,0.043065745383501],[-0.0014504995197058,-0.016794677823782,0.083267644047737],[-0.042772732675076,0.027113683521748,0.017399014905095]],[[-0.017734229564667,0.046974118798971,-0.0072875148616731],[-0.033896088600159,0.019829150289297,0.026967732235789],[0.0058868313208222,-0.038607269525528,0.022625647485256]],[[0.027759676799178,-0.019597528502345,0.0013313917443156],[0.0043995194137096,-0.038164835423231,0.023749098181725],[-0.058911327272654,0.058226887136698,0.051723256707191]],[[0.061565034091473,-0.040770441293716,-0.017588760703802],[0.039987500756979,-0.061148952692747,-0.057089496403933],[0.021583126857877,0.031025027856231,-0.019076108932495]],[[-0.023273369297385,0.034429091960192,-0.0093122534453869],[0.0069623929448426,-0.022416504099965,-0.0056485673412681],[-0.11239276826382,0.030256155878305,-0.021042598411441]],[[0.0284842569381,0.023115482181311,0.025376731529832],[-0.061971608549356,-0.0027190309483558,-0.017583962529898],[0.035455334931612,-0.016656041145325,-0.049975473433733]]],[[[0.14019212126732,0.043269351124763,-0.057195097208023],[0.0095407841727138,0.21926452219486,-0.081264615058899],[-0.06084294244647,0.18291828036308,-0.041434574872255]],[[0.0051158023998141,-0.14004589617252,-0.043864339590073],[0.0096736457198858,-0.068510726094246,0.099181272089481],[-0.12665329873562,-0.13425855338573,-0.018356064334512]],[[0.03239831328392,-0.20517235994339,0.00014614121755585],[0.0040114242583513,0.092941477894783,0.1279481947422],[0.23210209608078,0.1691679507494,0.029786713421345]],[[-0.031031860038638,0.039069384336472,-0.085570089519024],[0.061029653996229,-0.036564368754625,0.029441218823195],[0.033793188631535,-0.00056132767349482,-0.02430129237473]],[[0.078895531594753,-0.052499432116747,-0.10041400790215],[0.10156565904617,0.0084525113925338,-0.01032939273864],[0.078648000955582,0.02967245131731,-0.083548344671726]],[[-0.049399197101593,-0.15333291888237,-0.068997442722321],[0.038969870656729,0.058650683611631,0.024692300707102],[-0.093868792057037,-0.11340171843767,-0.050108931958675]],[[0.035847008228302,-0.0086268000304699,0.17372906208038],[0.11285049468279,0.17812372744083,0.16225238144398],[0.11610171943903,-0.10578247904778,-0.22017204761505]],[[-0.037310134619474,-0.079899564385414,0.0027328061405569],[-0.039567526429892,0.045635081827641,0.049342408776283],[-0.080633670091629,0.090373732149601,-0.0092132184654474]],[[0.12093398720026,0.069484189152718,-0.026663616299629],[-0.064992852509022,0.064715430140495,0.046524494886398],[-0.026998175308108,-0.10190559923649,-0.029492584988475]],[[0.022380879148841,-0.05631385743618,0.15281690657139],[-0.030243216082454,-0.076902136206627,-0.072008520364761],[-0.091451548039913,-0.17375211417675,-0.10750702023506]],[[0.025134475901723,-0.049604002386332,-0.015393483452499],[-0.034417219460011,0.094599820673466,0.19195432960987],[0.14533615112305,0.083112441003323,-0.093896895647049]],[[0.0018035969696939,-0.042479898780584,-0.025140402838588],[0.080080293118954,0.097223438322544,-0.031494673341513],[0.00093753589317203,0.09258446097374,0.049943365156651]],[[0.0076590399257839,-0.10749861598015,-0.090672470629215],[0.032056670635939,-0.033965434879065,-0.043493155390024],[-0.038635451346636,0.06617583334446,-0.042794119566679]],[[-0.071688629686832,-0.04333582893014,0.044892854988575],[-0.19105699658394,-0.13119386136532,-0.15563924610615],[0.039666585624218,0.020532188937068,0.081692576408386]],[[-0.096260704100132,0.011067663319409,0.065703518688679],[-0.073329083621502,0.036152686923742,0.039403755217791],[0.091374963521957,0.039046578109264,0.023498857393861]],[[0.203872397542,0.051613666117191,0.031275290995836],[-0.059201240539551,-0.04716944694519,-0.0062943594530225],[0.10002531856298,0.074849523603916,-0.0099938148632646]],[[-0.065306670963764,-0.045178387314081,-0.18545776605606],[0.011299634352326,0.07733429223299,0.12221201509237],[0.14933927357197,-0.015907416120172,-0.053130704909563]],[[-0.044942982494831,-0.020211139693856,-0.091312453150749],[0.15618550777435,-0.031137336045504,0.039279486984015],[-0.10737210512161,-0.019090633839369,-0.10297840088606]],[[-0.050447452813387,-0.19825965166092,-0.07488752156496],[0.1136521473527,-0.010933486744761,-0.11419377475977],[0.059103816747665,0.13205054402351,0.08623943477869]],[[0.0361074693501,-0.087631039321423,0.0040664398111403],[0.033525720238686,0.14787262678146,0.095192447304726],[-0.10757078230381,0.028619954362512,-0.024981793016195]],[[0.0006687649874948,-0.036086577922106,0.010511614382267],[-0.07140988856554,-0.12589313089848,-0.094621427357197],[-0.097254998981953,-0.14939916133881,-0.08357161283493]],[[-0.045671809464693,-0.090897142887115,0.057106595486403],[-0.0075410446152091,0.040067099034786,0.070199854671955],[-0.014443665742874,-0.0037432536482811,-0.059774398803711]],[[0.091328948736191,-0.028281403705478,-0.049131210893393],[0.010805677622557,0.035757828503847,0.016191687434912],[-0.012318342924118,-0.0992087200284,-0.07760588824749]],[[-0.1954565346241,-0.15925024449825,-0.13581278920174],[0.081327758729458,-0.1174587905407,-0.18955217301846],[-0.016653046011925,-0.023967888206244,0.024195075035095]],[[-0.1648563593626,0.021225977689028,-0.094768390059471],[0.0094862524420023,0.096597947180271,-0.0055767805315554],[0.086046949028969,0.16026060283184,0.022930629551411]],[[-0.0035681950394064,-0.0054552238434553,0.066359259188175],[-0.078276880085468,-0.056283049285412,0.018147120252252],[-0.0074275857768953,-0.04926061630249,-0.0084430109709501]],[[-0.023900071159005,-0.025653459131718,0.045196395367384],[-0.13247749209404,-0.009086879901588,0.06779257953167],[-0.0039959996938705,0.018108511343598,-0.045558888465166]],[[0.11563545465469,-0.015376222319901,0.0052132210694253],[0.053793705999851,0.00060983910225332,-0.021660808473825],[0.043193392455578,0.027831729501486,-0.0093545522540808]],[[0.079173527657986,0.10347444564104,0.0080510415136814],[0.16144670546055,0.0008857071516104,-0.0013495264574885],[-0.025924568995833,-0.05448018014431,-0.037211209535599]],[[-0.11911576241255,-0.17408075928688,-0.20445767045021],[0.1803969591856,0.10781824588776,-0.00096259050769731],[0.037434905767441,0.085975095629692,-0.038064546883106]],[[0.024080147966743,0.034435417503119,0.0049991379491985],[-0.024305578321218,-0.034674070775509,-0.0281325224787],[-0.07415134459734,0.024408286437392,0.017214234918356]],[[0.043833401054144,-0.0070348083972931,-0.097361400723457],[0.024617176502943,-0.095080949366093,-0.080555997788906],[0.00012611756392289,-0.10320068150759,-0.031029103323817]],[[0.045328285545111,-0.079497285187244,0.11631496995687],[0.0010097299236804,0.11162655800581,-0.017507292330265],[-0.059927821159363,-0.14150027930737,-0.13867075741291]],[[0.015194315463305,-0.072937607765198,-0.070485055446625],[0.13041481375694,0.037057746201754,0.1040852740407],[-0.08584550768137,0.049863677471876,0.07096054404974]],[[-0.024180067703128,0.021927073597908,-0.02831563167274],[0.040563967078924,0.0034175415057689,-0.043073490262032],[-0.0024614648427814,-0.014940701425076,-0.050914984196424]],[[0.12032686918974,-0.056075971573591,-0.030471138656139],[0.13401935994625,0.087568119168282,-0.058011412620544],[-0.1783063262701,0.068149141967297,0.024254769086838]],[[0.036676622927189,0.04362690448761,-0.084345832467079],[0.022844636812806,-0.096098154783249,0.0026056692004204],[-0.034429650753736,0.085673972964287,0.058388829231262]],[[0.062123324722052,0.19359400868416,0.19784924387932],[-0.031355302780867,0.05030670017004,0.077818356454372],[0.095325097441673,-0.16835279762745,-0.11340513825417]],[[0.04655209928751,0.091562397778034,0.069421000778675],[-0.093927495181561,0.057815793901682,0.11121842265129],[0.037713833153248,-0.10933062434196,-0.074263945221901]],[[0.013028063811362,0.00077259703539312,0.15047435462475],[-0.01292391307652,-0.088809564709663,-0.17274403572083],[-0.02846853248775,0.11264552921057,-0.22699123620987]],[[-0.00074763770680875,-0.017847780138254,0.035110205411911],[4.5297583710635e-05,-0.018147356808186,0.018453195691109],[0.038886453956366,0.0019237769301981,-0.0057447124272585]],[[-0.00093450746499002,0.065456479787827,-0.06598573923111],[0.050627060234547,-0.062673754990101,-0.014749332331121],[0.01381325442344,0.096628949046135,0.18007765710354]],[[-0.1919139623642,0.005543262232095,-0.21891604363918],[-0.15636251866817,-0.11690011620522,-0.047431357204914],[-0.24446147680283,-0.10069740563631,-0.084780469536781]],[[0.012875873595476,-0.055691797286272,-0.083501867949963],[-0.079709492623806,-0.02912911772728,0.017837507650256],[-0.10156746208668,-0.075880840420723,-0.042412552982569]],[[-0.086572222411633,-0.0663006529212,-0.21636657416821],[0.058090444654226,0.017779678106308,0.058739520609379],[0.059197146445513,-0.031531471759081,-0.0034881627652794]],[[0.068436846137047,0.034985817968845,0.055881030857563],[0.058316010981798,-0.049387969076633,-0.014184786006808],[-0.013448023237288,-0.035944323986769,0.038636308163404]],[[-0.046324882656336,-0.054881174117327,-0.03597379103303],[-0.027215329930186,-0.030840152874589,0.0039224969223142],[-0.010885251685977,-0.10929694771767,-0.04743891581893]],[[0.04604409635067,0.082868158817291,-0.11775372922421],[0.0096331853419542,-0.00940877571702,0.021238934248686],[-0.13663873076439,-0.16410349309444,0.051852442324162]],[[-0.061213932931423,0.040900591760874,0.046502448618412],[-0.043093018233776,-0.11554483324289,0.031162910163403],[-0.025019370019436,-0.09870433062315,-0.040383141487837]],[[0.10972083359957,0.029065987095237,-0.18494358658791],[0.047808650881052,-0.032658915966749,-0.01952114328742],[-0.17629677057266,-0.11348005384207,-0.024009186774492]],[[0.12595655024052,0.052838437259197,-0.12490443885326],[0.05994438752532,-0.10512506216764,0.089953698217869],[-0.039884351193905,-0.12103582918644,0.041710510849953]],[[0.099221751093864,-0.039524577558041,0.044468183070421],[-0.015462059527636,-0.057281829416752,-0.063092067837715],[0.050469897687435,0.037435784935951,-0.025147387757897]],[[-0.044772978872061,0.0095466785132885,-0.04853269085288],[0.042045671492815,0.044596418738365,-0.010022287257016],[-0.045846577733755,-0.081126473844051,-0.015331594273448]],[[-0.057297646999359,0.026097159832716,-0.043543964624405],[-0.028754150494933,0.1012647151947,-0.10021857172251],[0.031443774700165,0.076526887714863,0.16027869284153]],[[0.075531527400017,0.03969244658947,-0.054341103881598],[-0.043119002133608,-0.10357417166233,-0.030938759446144],[0.12749163806438,-0.027757130563259,0.02476772479713]],[[0.043260365724564,-2.4381548428209e-05,-0.054489459842443],[0.07664081454277,0.053060285747051,0.037352621555328],[-0.0054749492555857,-0.058087799698114,-0.0075182570144534]],[[0.07206392288208,-0.0065541258081794,0.23157280683517],[0.024168075993657,0.11903773248196,0.19054388999939],[-0.063220053911209,-0.020808475092053,-0.050221033394337]],[[-0.024375956505537,-0.045781921595335,0.025875734165311],[-0.047604918479919,-0.14438199996948,-0.053850326687098],[-0.1421504765749,-0.14670790731907,-0.0073021152056754]],[[0.063943721354008,0.12626640498638,0.024720476940274],[0.073834285140038,0.040140341967344,-0.048322450369596],[-0.031964514404535,-0.052691914141178,0.073266074061394]],[[-0.046107187867165,-0.079676657915115,-0.087663181126118],[0.03117505274713,0.013138106092811,0.045972514897585],[0.09834573417902,0.05002935603261,0.045884039252996]],[[-0.14976522326469,0.0011735738953575,-0.084533967077732],[-0.012959606945515,-0.061938889324665,-0.070193834602833],[-0.13990254700184,-0.040013991296291,-0.11972635984421]],[[-0.11819997429848,-0.049415834248066,-0.1097237020731],[-0.064179010689259,0.13884401321411,-0.029337979853153],[-0.01245363149792,-0.11458891630173,-0.17752219736576]],[[0.015057355165482,0.041143331676722,0.076665587723255],[0.015302089042962,0.077920965850353,0.058733534067869],[-0.00040971834096126,-0.021229615435004,-0.02359558083117]],[[0.12095260620117,-0.03531527146697,-0.026068748906255],[-0.088290572166443,0.19164808094501,0.19614163041115],[0.034053903073072,-0.0026916530914605,-0.0047293496318161]],[[0.066450528800488,0.041078813374043,0.049020379781723],[-0.014781196601689,-0.026370074599981,0.068405084311962],[-0.045102152973413,0.0099061504006386,-0.10236544907093]],[[0.10237957537174,-0.033866889774799,0.052888501435518],[0.028184227645397,0.028348064050078,0.041766937822104],[-0.084066912531853,-0.016511278226972,0.01681181974709]],[[-0.12373902648687,-0.059830978512764,-0.076128542423248],[-0.11913902312517,-0.12485052645206,-0.096884451806545],[0.021873256191611,-0.11165984719992,-0.12896522879601]],[[0.01482230052352,-0.098637960851192,0.038205076009035],[-0.016559125855565,-0.02066377364099,-0.11188399046659],[-0.11213430017233,-0.034565560519695,0.010032836347818]],[[0.086421728134155,0.057492837309837,0.13195185363293],[-0.00070821546250954,0.041383638978004,-0.073918476700783],[0.20211057364941,0.033258937299252,-0.13197097182274]],[[0.12989635765553,0.011817895807326,0.059205047786236],[0.048124674707651,0.037687659263611,-0.07060169428587],[-0.1181402951479,0.12755724787712,-0.057398002594709]],[[0.073229685425758,0.10090643167496,0.089725770056248],[-0.066871583461761,-0.050198238343,-0.039700169116259],[0.051815565675497,0.11543860286474,0.1256510913372]],[[-0.011262036859989,-0.049619723111391,0.011897130869329],[0.064971387386322,0.059077039361,-0.092969469726086],[-0.053248006850481,0.013545815832913,0.0029402608051896]],[[0.020092049613595,-0.11270741373301,0.038128256797791],[0.073828659951687,0.086025260388851,0.031636521220207],[-0.028345860540867,-0.13601154088974,-0.10499781370163]],[[-0.031294759362936,0.058018762618303,0.10629231482744],[-0.069865696132183,-0.018466195091605,0.11564813554287],[-0.15241701900959,0.068116366863251,-0.11172365397215]],[[0.015539344400167,-0.096251927316189,-0.050744172185659],[-0.037672001868486,-0.074612446129322,-0.092053256928921],[-0.021706642583013,-0.066621087491512,0.11363733559847]],[[-0.015990307554603,0.052557401359081,0.024520350620151],[-0.019757581874728,0.010014777071774,-0.0044385623186827],[-0.015003548003733,0.022706728428602,-0.051891919225454]],[[-0.064849250018597,-0.12956723570824,-0.015039708465338],[-0.082793831825256,-0.16056306660175,-0.11932387202978],[0.022936889901757,0.10535149276257,0.048268310725689]],[[0.051739078015089,0.11328153312206,0.12159471213818],[-0.028139539062977,0.096765272319317,0.027426585555077],[0.073212146759033,0.0038548894226551,-0.0093175079673529]],[[-0.0012579779140651,0.076364509761333,0.18756686151028],[0.0080545311793685,-0.065612010657787,-0.11086515337229],[0.0041954657062888,0.10223261266947,-0.019795518368483]],[[-0.025786630809307,-0.062941670417786,-0.01991249807179],[0.0012516063870862,-0.15345107018948,-0.13509602844715],[-0.078737854957581,-0.03364535421133,-0.061556357890368]],[[0.03743889182806,-0.055704150348902,-0.17178145051003],[0.04054581746459,-0.034181449562311,-0.064483724534512],[0.019525012001395,-0.09879793971777,0.19333027303219]],[[0.17656210064888,0.11037150770426,-0.058390684425831],[0.066892594099045,-0.0023847802076489,-0.038213115185499],[0.049876552075148,-0.14473780989647,-0.13144254684448]],[[0.066469997167587,0.034404125064611,0.034508820623159],[-0.068026550114155,0.15864878892899,0.058364406228065],[-0.036902844905853,-0.028458636254072,-0.045721270143986]],[[-0.052754927426577,0.029925726354122,-0.10112176835537],[-0.064850181341171,-0.08579358458519,0.066613718867302],[-0.1850388944149,0.027969026938081,0.14522328972816]],[[0.038598831743002,0.081377886235714,-0.029437435790896],[-0.060695201158524,-0.085995979607105,-0.093532279133797],[0.099826894700527,0.058964185416698,-0.011150437407196]],[[-0.027215119451284,-0.14279438555241,-0.055658429861069],[0.10483437776566,-0.0028724912554026,0.10348101705313],[0.097288720309734,-0.048426128923893,-0.0047409725375473]],[[0.026910597458482,0.12409832328558,-0.031629368662834],[-0.051866061985493,0.0032869442366064,0.015016973949969],[-0.036949213594198,-0.038531240075827,0.02261627279222]],[[-0.085535898804665,0.030747301876545,-0.051451537758112],[0.04579434171319,0.13893589377403,0.056618686765432],[0.018852196633816,-0.08931241184473,0.054758802056313]],[[-0.039160657674074,-0.094707570970058,0.18323494493961],[0.025220446288586,-0.19839426875114,-0.0072857835330069],[0.1606017947197,0.085608579218388,-0.12511290609837]],[[-0.085054606199265,-0.025023438036442,-0.084153018891811],[0.09063994884491,-0.065273843705654,-0.085954375565052],[-0.056609839200974,-0.079635106027126,0.058714270591736]],[[0.0026704436168075,0.053221259266138,0.0017964978469536],[-0.03432085365057,0.017209276556969,-0.076034061610699],[0.12794582545757,0.20734719932079,-0.03540075942874]],[[0.084137231111526,-0.082256987690926,0.016741722822189],[0.0047708610072732,0.086119256913662,0.030274394899607],[-0.13419732451439,-0.13217642903328,-0.18876232206821]],[[-0.042238630354404,-0.078011654317379,0.0028200012166053],[-0.0025397122371942,0.080005474388599,0.042028579860926],[0.097887940704823,0.14948615431786,0.10879675298929]],[[0.0049778935499489,0.017544155940413,-0.13982385396957],[0.022753769531846,-0.027665641158819,-0.043989069759846],[-0.047911558300257,-0.071765974164009,0.01200429815799]],[[-0.086744636297226,0.14878430962563,0.18223521113396],[0.020904898643494,0.026952689513564,-0.0049650948494673],[-0.070037424564362,-0.094384521245956,0.013658042065799]],[[-0.074925981462002,-0.012264046818018,-0.079477667808533],[0.025337886065245,0.032300811260939,0.0035066190175712],[-0.017415944486856,-0.01156398281455,0.10519573092461]],[[0.0037917131558061,0.041961371898651,-0.20726549625397],[0.022842509672046,0.10384124517441,-0.0046616680920124],[0.042955670505762,0.080117531120777,0.021826393902302]],[[0.046959072351456,0.078356862068176,0.041468318551779],[0.054069902747869,0.0092550236731768,-0.0076224650256336],[0.099834196269512,-0.072694465517998,-0.016111303120852]],[[-0.13928954303265,-0.10658869147301,-0.066095218062401],[0.0011427140561864,-0.19238840043545,0.099847666919231],[0.0021834461949766,0.15796938538551,0.1413394510746]],[[0.017596418038011,-0.073308065533638,-0.048058208078146],[-0.058412246406078,-0.0065040336921811,-0.0066655380651355],[-0.11917003244162,-0.090005844831467,0.03911829739809]],[[-0.13813072443008,-0.090498097240925,0.090339668095112],[-0.042471468448639,0.0092048365622759,0.046997137367725],[0.085604138672352,0.062402952462435,-0.13224729895592]],[[-0.099791802465916,0.054709702730179,0.051883775740862],[0.15367309749126,0.17613379657269,0.099718682467937],[-0.01416848320514,0.091747142374516,0.1623398065567]],[[0.042091090232134,0.14038789272308,-0.02431171759963],[0.13752721250057,-0.044822081923485,-0.041965503245592],[-0.019304716959596,-0.0080499295145273,-0.025473415851593]],[[0.041346337646246,-0.12110929936171,0.038154188543558],[0.028968136757612,-0.090336441993713,-0.00068824406480417],[-0.0092370687052608,0.063518822193146,-0.025523567572236]],[[0.056497056037188,0.039513599127531,-0.14275217056274],[0.019429372623563,-0.064191743731499,-0.16342633962631],[0.1412066668272,0.031905960291624,0.12481069564819]],[[-0.12269995361567,-0.0096426475793123,-0.025626040995121],[-0.12709425389767,-0.05088159814477,0.023665072396398],[-0.08259953558445,0.017624529078603,0.077144406735897]],[[-0.0418003462255,0.13318997621536,0.10619600862265],[0.043216731399298,0.0078101470135152,-0.019934762269258],[0.058165092021227,0.055710852146149,0.076832495629787]],[[0.017701575532556,0.036602016538382,0.029008476063609],[-0.0016085752286017,-0.013919360004365,0.023601958528161],[-0.11039118468761,-0.088321812450886,-0.0090631507337093]],[[-0.03334005177021,-0.061529397964478,0.033804625272751],[-0.08643264323473,0.03871351853013,0.14248506724834],[-0.024407465010881,-0.0035448847338557,0.0216517560184]],[[-0.27621009945869,-0.087061516940594,-0.02761903591454],[0.044776059687138,0.082115918397903,0.14980809390545],[-0.078600600361824,0.0073660770431161,0.073419019579887]],[[-0.004614710342139,-0.062778271734715,-0.0071486076340079],[-0.081875681877136,-0.023943886160851,-0.094517409801483],[-0.10512485355139,-0.010193686932325,-0.029345201328397]],[[-0.017231611534953,0.076801538467407,-0.056878738105297],[-0.033779501914978,-0.030209293588996,-0.0013627583393827],[0.058562401682138,-0.047258287668228,-0.00050105137052014]],[[-0.040404610335827,-0.035944532603025,0.045216396450996],[0.078394539654255,0.038400698453188,0.062812745571136],[-0.0066737625747919,-0.022473389282823,-0.077876344323158]],[[-0.086705215275288,-0.04617876932025,0.089559882879257],[-0.028699474409223,-0.077482663094997,0.035962648689747],[-0.011716513894498,-0.031593937426805,0.050901189446449]],[[0.043563693761826,0.15985989570618,-0.046597976237535],[-0.037016913294792,0.018462795764208,-0.014049756340683],[0.069940693676472,-0.035312324762344,-0.016963098198175]],[[0.10003951191902,0.10213308036327,0.17025978863239],[-0.040429927408695,0.0047458866611123,-0.089970916509628],[0.043386474251747,0.0083640050143003,0.029256828129292]],[[0.00037110896664672,-0.03955765068531,-0.061107318848372],[-0.0096165016293526,-0.1463024020195,-0.091195583343506],[-0.0086383754387498,0.065385028719902,0.013798009604216]],[[-0.092488147318363,-0.056150913238525,0.019665522500873],[-0.0051675019785762,-0.023911064490676,0.14262630045414],[0.13077445328236,-0.018930293619633,-0.044388357549906]],[[0.0052512902766466,-0.051760572940111,0.016254222020507],[0.045629397034645,-0.067363709211349,0.070379190146923],[0.10292043536901,-0.008968940936029,-0.059068623930216]],[[-0.074239760637283,-0.0066162561997771,0.00069325976073742],[-0.0021191232372075,-0.10016194730997,-0.037387050688267],[0.072694204747677,0.01240976061672,-0.12902374565601]],[[-0.014933297410607,-0.1482127904892,-0.14193817973137],[-0.090837545692921,-0.0046677403151989,-0.02020600438118],[0.015457174740732,0.04599354788661,0.10401858389378]],[[0.047555100172758,0.068800091743469,0.10120484977961],[0.026820000261068,0.022634744644165,0.028033502399921],[0.048456311225891,-0.090522728860378,-0.029635166749358]],[[0.042788464576006,-0.016978630796075,0.0097882524132729],[-0.1064830198884,-0.032030984759331,-0.090564832091331],[-0.018206745386124,-0.074549153447151,-0.088098615407944]],[[-0.044818334281445,-0.12248393893242,0.02826988697052],[-0.057551018893719,-0.079069517552853,0.097622737288475],[0.014192735776305,-0.00432806648314,-0.030467174947262]],[[-0.047107558697462,-0.028844378888607,-0.07820300757885],[0.04820728674531,-0.001295386813581,-0.0016552350716665],[0.089718528091908,0.077019266784191,-0.060584958642721]],[[-0.14778639376163,-0.12172101438046,-0.065749138593674],[0.095887199044228,-0.0072209779173136,-0.129454433918],[-0.032752610743046,-0.078940957784653,-0.042461846023798]],[[0.10259240120649,-0.016596514731646,0.030398163944483],[0.027835190296173,0.036634981632233,0.0037364000454545],[0.11758124083281,-0.13509957492352,-0.16433890163898]],[[0.12049371749163,0.036416467279196,0.28675848245621],[-0.12775376439095,-0.15698203444481,-0.070925824344158],[-0.020699286833405,-0.074049547314644,-0.0097992550581694]]],[[[0.029273774474859,0.044680546969175,0.029198180884123],[-0.015245089307427,-0.0030802953988314,-0.055853851139545],[0.032249193638563,0.02036459185183,-0.16071510314941]],[[-0.021823616698384,-0.059048593044281,-0.010301012545824],[0.092127054929733,0.061877809464931,-0.084322936832905],[-0.065744504332542,-0.066278517246246,0.035402163863182]],[[0.094084411859512,0.027960103005171,-0.032990638166666],[-0.10157928615808,0.13351202011108,0.0079927230253816],[-0.0038730513770133,0.046277865767479,-0.010951247997582]],[[-0.043925266712904,-0.042342130094767,-0.029559411108494],[-0.047142200171947,0.081994324922562,-0.0065625309944153],[-0.014529223553836,-0.04915914312005,0.22874973714352]],[[0.037371315062046,0.065989620983601,0.030845997855067],[0.01513746380806,0.066084280610085,0.11108510941267],[-0.010827572084963,0.060783389955759,0.18992103636265]],[[0.02274108864367,0.044855855405331,0.094144389033318],[0.068113014101982,-0.0032890180591494,-0.028639424592257],[-0.050786163657904,-0.0027306745760143,0.13946691155434]],[[-0.0096239307895303,-0.001054433058016,0.013581030070782],[0.089803643524647,0.1497902572155,0.11312234401703],[0.030629282817245,0.058532766997814,0.06379796564579]],[[0.02304377220571,0.070230573415756,0.028904564678669],[0.085050158202648,0.051830276846886,-0.023071501404047],[-0.11177925765514,0.046457767486572,-0.012353531084955]],[[0.014313520863652,0.010913684032857,-0.038714680820704],[0.051318418234587,-0.010093332268298,-0.062914073467255],[0.095381140708923,0.028365004807711,-0.040631413459778]],[[0.014276229776442,0.023638613522053,-0.01874846406281],[-0.061438750475645,0.037338394671679,-0.10840502381325],[0.02746057510376,-0.063794851303101,-0.020489685237408]],[[-0.087481267750263,-0.025487991049886,0.0066226269118488],[0.052993059158325,0.15178482234478,0.12993022799492],[0.17115215957165,0.083701640367508,0.0053736446425319]],[[0.018640480935574,-0.033918417990208,-0.055734168738127],[0.0058394032530487,0.074809357523918,0.026366336271167],[0.0080583114176989,0.032501898705959,-0.0031027554068714]],[[0.012825574725866,-0.049171276390553,-0.0093674743548036],[0.053846042603254,0.0050731911323965,-0.055281955748796],[0.05549892783165,-0.017981700599194,-0.1603560000658]],[[0.007856116630137,0.063787661492825,-0.015751790255308],[0.044167030602694,0.012287626974285,0.015979630872607],[0.020137321203947,-0.044561967253685,-0.019375709816813]],[[-0.075665675103664,0.023862563073635,0.010127659887075],[0.12431978434324,-0.021887838840485,-0.029862824827433],[0.078888453543186,-0.040250618010759,-0.037860292941332]],[[0.025326421484351,0.043943710625172,0.0092967506498098],[-0.032902546226978,-0.062163177877665,0.032807651907206],[0.00051806832198054,-0.026285074651241,0.026663763448596]],[[0.065309159457684,0.087173216044903,-0.036551214754581],[0.085813522338867,0.026819659397006,0.078765824437141],[0.037938799709082,0.057209178805351,0.092093788087368]],[[0.030084826052189,-0.0071432329714298,0.090464666485786],[-0.023299179971218,-0.16405580937862,-0.14472161233425],[-0.18173772096634,0.050408869981766,0.24281245470047]],[[-0.0012311773607507,0.012476280331612,0.10792590677738],[0.1144482716918,0.0099137304350734,0.055724453181028],[-0.040219228714705,-0.031851593405008,0.01402345020324]],[[0.054174184799194,0.029302179813385,0.069766223430634],[0.024962905794382,0.016313886269927,0.060045693069696],[-0.068796217441559,-0.063876762986183,0.028968380764127]],[[-0.21945779025555,-0.13719742000103,-0.1126102656126],[-0.15557886660099,-0.13636563718319,-0.18338862061501],[-0.0072270892560482,0.040633019059896,-0.045968249440193]],[[0.054724391549826,0.0090305497869849,0.02615300193429],[0.049236539751291,0.0011804244713858,-0.086399264633656],[0.027596537023783,0.048607841134071,0.017289530485868]],[[-0.015519940294325,-0.095904760062695,0.016687925904989],[0.034905485808849,0.04469047114253,-0.02616479434073],[-0.052839420735836,-0.039282441139221,0.086115375161171]],[[-0.030346445739269,-0.055243585258722,-0.02156094647944],[-0.047589346766472,0.057435095310211,0.0067655337043107],[-0.00026607606559992,-0.010809337720275,0.13115438818932]],[[0.044920351356268,0.008045575581491,-0.0051175756379962],[0.021003087982535,0.036916717886925,0.015222186222672],[-0.045652728527784,0.037881705909967,-0.074810512363911]],[[0.075780592858791,-0.049281481653452,0.0068337060511112],[-0.034508816897869,-0.067130617797375,-0.050773546099663],[0.071621239185333,0.014454365707934,0.094456225633621]],[[0.019356183707714,0.0307123567909,0.0099486205726862],[0.059342075139284,0.063887856900692,0.10454908758402],[-0.023621555417776,-0.018051689490676,0.015986716374755]],[[0.099862031638622,0.090910166501999,0.16318012773991],[0.0024269125424325,0.034973178058863,0.028017362579703],[0.022855248302221,0.107960306108,0.050513349473476]],[[-0.079714745283127,-0.012657335028052,-0.017046686261892],[-0.044450506567955,0.0039289430715144,-0.03773607686162],[0.0066552879288793,-0.063962638378143,-0.021305439993739]],[[0.049439091235399,0.033919956535101,0.001834747265093],[0.019862461835146,0.0052229505963624,-0.02734550088644],[-0.038827739655972,0.01030043605715,-0.021564519032836]],[[-0.035970222204924,-0.070776417851448,-0.080787360668182],[-0.012464474886656,0.057689838111401,0.045635681599379],[0.011962459422648,-0.054526258260012,0.10747254639864]],[[0.067050494253635,0.069548584520817,-0.013337710872293],[-0.015789741650224,0.055051375180483,0.05700982734561],[-0.14318807423115,-0.015736954286695,0.11460608243942]],[[-0.032804913818836,-0.049872502684593,0.051422785967588],[-0.010492579080164,0.093464821577072,0.0013153223553672],[-0.005777413956821,-0.12124902755022,0.024699645116925]],[[-0.007018678355962,-0.0087139187380672,-0.11094040423632],[0.099579446017742,0.015045979991555,0.10547208786011],[-0.047010459005833,-0.063575223088264,-0.034248974174261]],[[-0.064504712820053,-0.17386567592621,0.0033632244449109],[-0.058524027466774,-0.078562207520008,-0.1211222410202],[0.082593820989132,0.11219368129969,0.05121111497283]],[[-0.0078832013532519,0.062102444469929,0.064409852027893],[0.04758096113801,-0.055763646960258,0.010531326755881],[-0.059667583554983,-0.061457462608814,-0.05175705999136]],[[-0.0030592093244195,0.081176817417145,-0.023056970909238],[-0.12875960767269,-0.06650897860527,-0.01295476872474],[0.015041042119265,0.022913038730621,0.16537740826607]],[[-0.071638122200966,0.08577398955822,0.12454666942358],[-0.046621896326542,-0.13146960735321,-0.049821529537439],[0.022058228030801,-0.034106515347958,-0.027487576007843]],[[0.100462064147,0.00078280677553266,-0.082009948790073],[0.06616947799921,0.1373238414526,0.036061357706785],[-0.011450563557446,-0.026053788140416,-0.14987128973007]],[[0.050841685384512,0.023713873699307,-0.050205733627081],[0.084836423397064,-0.003673923201859,-0.078932948410511],[0.1045820042491,0.00094187032664195,-0.10203472524881]],[[-0.077629692852497,0.013666288927197,0.049479316920042],[-0.02176714502275,0.018545405939221,0.076381921768188],[-0.065281860530376,-0.021579176187515,-0.13720934092999]],[[-0.0012658389750868,0.064551003277302,-0.054949637502432],[-0.034715197980404,0.071364030241966,-0.034890118986368],[0.09001350402832,0.0040888013318181,0.035287588834763]],[[0.054301757365465,0.022491609677672,-0.0071518523618579],[-0.062976531684399,-0.02330419048667,-0.04376545548439],[0.10638912767172,0.0020662087481469,-0.023021260276437]],[[-0.092281222343445,-0.040959931910038,0.0082412716001272],[-0.0096471412107348,-0.0023719936143607,0.043360378593206],[0.016669986769557,-0.075561970472336,-0.046629909425974]],[[-0.042765207588673,-0.10894817858934,-0.19994868338108],[-0.044632937759161,0.039553828537464,0.080174140632153],[0.0022563717793673,-0.047529470175505,-0.041079692542553]],[[0.081877864897251,0.066705390810966,0.037607304751873],[-0.073398262262344,-0.020951416343451,-0.086984485387802],[-0.075656309723854,-0.064223542809486,-0.11492295563221]],[[0.060435522347689,-0.025594582781196,0.095726348459721],[0.087131418287754,-0.0081661371514201,0.038452547043562],[0.074830405414104,-0.0004158022638876,-0.022066839039326]],[[0.016679110005498,-0.06991221010685,0.098953738808632],[-0.020507454872131,0.031851250678301,0.026053143665195],[-0.040152344852686,0.0071496251039207,0.19790226221085]],[[-0.01587731204927,-0.05814316123724,0.015022703446448],[0.088531874120235,0.0070213638246059,0.04073878377676],[0.0079555148258805,0.02623120136559,-0.016020501032472]],[[-0.019201559945941,-0.046446427702904,-0.029250202700496],[-0.00039471441414207,-0.065014600753784,-0.06796033680439],[-0.036154933273792,-0.054787810891867,0.031540982425213]],[[-0.021907679736614,0.010923152789474,-0.0095485020428896],[0.030005417764187,0.0068239341489971,0.066248692572117],[-0.039004027843475,-0.066803470253944,0.020284622907639]],[[-0.036114074289799,-0.12171187251806,-0.040883135050535],[0.10669213533401,-0.076403424143791,0.050472486764193],[0.083378188312054,0.087230734527111,0.0749581605196]],[[0.01695785485208,-0.032581705600023,-0.038464803248644],[-0.047293696552515,0.016726156696677,-0.048005744814873],[-0.035709533840418,-0.0085161756724119,-0.044384602457285]],[[0.030100459232926,0.056564763188362,0.024499287828803],[0.18992617726326,0.10897079855204,0.088796526193619],[0.050437431782484,0.05158893764019,-0.033322971314192]],[[0.031602267175913,0.063977584242821,0.051011260598898],[-0.077288568019867,-0.0041159754619002,-0.046589322388172],[0.03928842023015,0.041620094329119,-0.01660231128335]],[[-0.075855039060116,-0.04424636811018,-0.029009208083153],[0.042480364441872,0.00434501003474,0.14710178971291],[-0.010334328748286,-0.045748367905617,-0.0070248679257929]],[[0.070353917777538,-0.014195764437318,-0.019198527559638],[0.0086876433342695,0.011501694098115,-0.075243510305882],[-4.4865191739518e-05,-0.12486840039492,-0.074348777532578]],[[0.012913481332362,-0.0096227303147316,-0.069499306380749],[-0.017155028879642,0.15431228280067,-0.029310328885913],[-0.04897902533412,-0.028829131275415,-0.056076645851135]],[[-0.043429557234049,0.0082452576607466,-0.054532896727324],[-0.011485847644508,-0.052789460867643,-0.1020250543952],[0.070158682763577,0.12365547567606,0.16217494010925]],[[-0.024918101727962,0.014422472566366,-0.027832198888063],[-0.011065043509007,-0.015740875154734,0.10027991235256],[-0.018522098660469,0.054034892469645,0.045156460255384]],[[-0.046379633247852,-0.14974078536034,-0.056312318891287],[0.022395603358746,0.090264655649662,-0.045072488486767],[-0.079340547323227,-0.048132300376892,0.0054712113924325]],[[-0.03964776545763,-0.023721417412162,0.046190369874239],[-0.15861035883427,-0.013862321153283,-0.053026165813208],[-0.13469348847866,-0.061381470412016,-0.021674934774637]],[[0.097884654998779,-0.0019746522884816,0.082904547452927],[-0.035726524889469,-0.027740957215428,-0.011457754299045],[-0.045227162539959,0.0371023863554,0.099899262189865]],[[-0.068833768367767,0.037580296397209,-0.019062858074903],[-0.06719895452261,0.036802031099796,0.023156492039561],[0.039610754698515,-0.055255495011806,0.0086954720318317]],[[0.021638037636876,-0.036152236163616,-0.0066905370913446],[0.039558202028275,-0.064555957913399,-0.060768283903599],[-0.013028672896326,-0.012185083702207,0.047752197831869]],[[-0.039534293115139,-0.070876024663448,0.082570865750313],[-0.042207062244415,-0.020575441420078,-0.026064554229379],[0.017186027020216,0.017285823822021,0.045077003538609]],[[0.095180451869965,0.067927949130535,0.18215441703796],[-0.017259007319808,0.086966164410114,-0.062071312218904],[0.010417518205941,-0.08317119628191,-0.092194646596909]],[[-0.041627585887909,-0.0045648235827684,0.017701592296362],[0.0069602373987436,0.10727637261152,-0.036459635943174],[-0.076380006968975,0.064500115811825,-0.065840534865856]],[[0.15505807101727,0.012387696653605,-0.011952391825616],[-0.026928938925266,0.042988833039999,0.032470755279064],[0.01805061660707,0.12658013403416,-0.028601257130504]],[[-0.03139379248023,-0.0088635962456465,-0.01546217687428],[-0.0016933076549321,0.10074663162231,-0.069595076143742],[0.048361640423536,0.038718707859516,0.10058479756117]],[[0.11071929335594,0.012770059518516,0.35100066661835],[0.11043494939804,0.074918545782566,0.10319217294455],[0.037430968135595,0.056929782032967,-0.022860808297992]],[[0.065759986639023,0.081919930875301,0.036560855805874],[-0.025852179154754,0.0092860534787178,0.0016107424162328],[-0.054123543202877,-0.07600774616003,0.18457569181919]],[[-0.022788304835558,-0.016552768647671,-0.067418433725834],[-0.04197808355093,0.0018785205902532,-0.073859550058842],[-0.033717960119247,-0.087987810373306,-0.044849641621113]],[[-0.11409103870392,0.027771918103099,0.025794913992286],[0.093000151216984,-0.022223824635148,-0.017891433089972],[-0.037583719938993,-0.0087200831621885,0.010913966223598]],[[0.12657205760479,0.047158639878035,-0.09657733887434],[0.054740265011787,-0.0021880804561079,-0.022175716236234],[-0.04124328494072,0.088791444897652,0.063614815473557]],[[0.10414749383926,-0.029228156432509,0.01326415874064],[-0.046374339610338,-0.037296935915947,0.0022272258065641],[0.11060912162066,0.064841359853745,0.078210070729256]],[[-0.12609955668449,-0.17338411509991,-0.057696469128132],[0.0045450017787516,0.1505114287138,0.14679843187332],[-0.059727005660534,-0.1126943975687,-0.10065686702728]],[[-0.070749744772911,-0.011994986794889,0.047227136790752],[-0.03052288107574,-0.023759728297591,-0.012677346356213],[0.056666847318411,0.040809202939272,0.016983555629849]],[[0.022929314523935,0.0020817525219172,-0.023181600496173],[-0.049965053796768,0.011449713259935,-0.035946022719145],[-0.040881477296352,0.10752999782562,-0.029740670695901]],[[-0.095082178711891,-0.10381244122982,0.0033718049526215],[0.050319649279118,-0.094058215618134,-0.098496407270432],[0.01379919052124,-0.040094669908285,-0.015547812916338]],[[0.029476189985871,-0.060179449617863,0.017214462161064],[0.00038358807796612,-0.030612280592322,0.025260716676712],[-0.091401427984238,-0.055043920874596,-0.079738333821297]],[[0.010673489421606,0.020572485402226,0.089087538421154],[-0.021994771435857,0.02720458433032,0.11779270321131],[0.091702871024609,-0.020023284479976,0.047544300556183]],[[0.089359775185585,0.033726751804352,0.10391414165497],[0.012375107035041,0.024347798898816,-0.066977851092815],[-0.012662960216403,0.0079530738294125,0.063280239701271]],[[-0.04124853760004,-0.04128110781312,0.12361075729132],[0.12704196572304,0.027099585160613,0.075375057756901],[0.021360315382481,0.047928500920534,0.086567535996437]],[[0.1128948405385,0.022334944456816,0.046477243304253],[0.10979985445738,-0.066952586174011,-0.00350905302912],[-0.047104969620705,-0.04562159627676,-0.023005317896605]],[[-0.013457288965583,-0.10722716897726,-0.17357207834721],[-0.049842823296785,0.011558245867491,0.01905383169651],[-0.019993029534817,-0.048569124191999,0.010446292348206]],[[-0.0041750590316951,-0.061696197837591,-0.009176473133266],[-0.033746376633644,-0.063855551183224,-0.045224532485008],[0.073284797370434,-0.026365116238594,-0.070601582527161]],[[0.13302727043629,0.062664285302162,-0.082303836941719],[0.047478638589382,-0.022410390898585,0.012714053504169],[-0.068474531173706,-0.060889054089785,0.01967323385179]],[[-0.045142095535994,0.044788409024477,0.041270423680544],[0.028642883524299,-0.10994617640972,-0.065048962831497],[0.021154148504138,-0.11699273437262,0.21427142620087]],[[-0.074623204767704,-0.15514378249645,-0.081071987748146],[0.048403851687908,0.031919784843922,-0.000398537813453],[-0.0025885789655149,0.029298713430762,-0.062036111950874]],[[0.044004268944263,-0.078868918120861,0.016973048448563],[-0.083444148302078,-0.14609579741955,-0.14385542273521],[0.074631817638874,0.058675236999989,0.0071502304635942]],[[-0.19952276349068,0.020097408443689,0.042729187756777],[-0.023358780890703,-0.11715769767761,0.018555225804448],[-0.077186606824398,-0.059513758867979,-0.050258602946997]],[[-0.015517076477408,-0.0061801462434232,-0.066906429827213],[0.016418674960732,0.083709694445133,0.0047287461347878],[-0.0080566797405481,0.18976092338562,-0.010210470296443]],[[-0.072283819317818,0.010120048187673,0.086744703352451],[-0.040415033698082,0.035966046154499,-0.083127520978451],[-0.0011510420590639,-0.03880201280117,0.023339370265603]],[[0.020333509892225,-0.043522752821445,0.0038277776911855],[0.020681917667389,0.019246503710747,0.032676346600056],[0.077358298003674,0.056301590055227,0.067560024559498]],[[-0.028208777308464,0.014334047213197,0.056404579430819],[0.033636651933193,0.051279906183481,0.035690020769835],[-0.0011729934485629,-0.080588445067406,0.056374303996563]],[[0.011967472732067,0.028174435719848,0.096766263246536],[0.11106833815575,0.0098120803013444,0.104502171278],[0.064641460776329,-0.010872157290578,-0.013904852792621]],[[-0.037648860365152,0.020665839314461,0.079275950789452],[-0.035645421594381,-0.033862512558699,0.040095113217831],[-0.012547214515507,-0.04873576387763,0.019112501293421]],[[-0.063343822956085,0.0019503617659211,0.074090264737606],[-0.086001545190811,0.015155780129135,0.00059563165996224],[-0.021687485277653,0.010155045427382,0.20148593187332]],[[0.11942433565855,0.081325329840183,0.096569426357746],[-0.055653914809227,-0.018597492948174,-0.10447949916124],[-0.11652802675962,0.012089897878468,0.16374292969704]],[[0.0082340780645609,-0.00078350835246965,0.046414237469435],[-0.04971656575799,-0.054810009896755,-0.085914634168148],[-0.02649967558682,0.0050371820107102,0.12499403208494]],[[0.00074529449921101,0.12128000706434,0.045192528516054],[0.030927712097764,0.015378864482045,-0.025964472442865],[-0.051653403788805,0.066569752991199,0.16574196517467]],[[-0.17464736104012,-0.0031177275814116,-0.099067069590092],[0.014053479768336,-0.011508857831359,-0.032223381102085],[-0.0024117303546518,-0.14162410795689,-0.098329409956932]],[[0.040439113974571,-0.062256716191769,-0.10262963920832],[0.13269333541393,0.10235863924026,0.037379235029221],[0.062801241874695,0.061098180711269,-0.0018070921069011]],[[-0.092214241623878,0.0080279400572181,0.0096123944967985],[-0.039381343871355,0.094085730612278,-0.069796212017536],[0.028043128550053,-0.0026282612234354,-0.080500885844231]],[[0.054004166275263,0.069449633359909,0.01655182801187],[0.0067328666336834,-0.067484684288502,0.08756235986948],[-0.12286420911551,0.090872265398502,0.098299190402031]],[[0.14082208275795,0.040631670504808,0.051813818514347],[0.059618189930916,0.048632565885782,0.039690982550383],[0.060607802122831,-0.038333375006914,0.043350975960493]],[[-0.025999242439866,0.084053426980972,0.20596557855606],[-0.094897158443928,-0.068399034440517,0.027442455291748],[0.068697199225426,-0.10300050675869,0.080363899469376]],[[0.084762938320637,0.057694490998983,0.07392318546772],[0.03262784332037,-0.081452004611492,0.00049495790153742],[-0.054120317101479,0.0076562813483179,0.01019050180912]],[[0.02425791323185,0.056959882378578,-0.0089733554050326],[0.035235472023487,-0.080410026013851,-0.019075023010373],[-0.042829945683479,-0.038139097392559,0.075927555561066]],[[-0.091885983943939,-0.11203434318304,-0.11865129321814],[-0.12597984075546,-0.066427655518055,-0.10194922983646],[-0.10283646732569,-0.12927946448326,0.045684635639191]],[[-0.012054418213665,-0.097411014139652,-0.051249817013741],[0.049118112772703,-0.025030754506588,-0.014700974337757],[-0.014142131432891,0.071010820567608,0.18794366717339]],[[0.10959175229073,0.061619482934475,0.020555719733238],[0.038829226046801,0.029494930058718,0.07353737950325],[-0.12741859257221,-0.012188619934022,0.066555477678776]],[[-0.081727787852287,-0.0080746486783028,0.096293814480305],[-0.0064647644758224,0.0096356822177768,0.076288156211376],[0.011581636965275,-0.038568522781134,-0.040135391056538]],[[0.00027260044589639,-0.038717910647392,0.1082029491663],[-0.048753321170807,-0.05134779587388,0.082280330359936],[0.082000337541103,0.06984031945467,-0.063471615314484]],[[0.081005126237869,0.049056194722652,-0.02877694927156],[0.10800815373659,-0.022769054397941,-0.086162552237511],[0.012511333450675,-0.039959363639355,0.13153642416]],[[-0.050751537084579,-0.0072564193978906,0.0839888677001],[-0.018557531759143,-0.027180144563317,-0.099561594426632],[-0.017374472692609,-0.060228478163481,-0.027882853522897]],[[0.12179877609015,0.029253212735057,0.22774247825146],[0.061142772436142,0.21398381888866,0.21038943529129],[-0.044410970062017,-0.030622564256191,0.021816929802299]],[[-0.022711805999279,-0.068933397531509,-0.12332361936569],[0.012453513219953,-0.055995613336563,-0.09309521317482],[0.047852944582701,0.066305376589298,-0.031752966344357]],[[0.05745392665267,-0.035473346710205,-0.15546672046185],[-0.024561615660787,0.074919909238815,0.12313353270292],[0.011951653286815,0.018533742055297,0.13322061300278]],[[0.059253610670567,0.0048436359502375,0.11115038394928],[0.059598028659821,0.017765922471881,-0.0030385726131499],[0.014711990021169,-0.085252448916435,-0.02459067478776]],[[0.0019384562037885,0.008161167614162,0.061924442648888],[0.0059753223322332,0.020668845623732,0.00097259855829179],[0.0072667049244046,0.064362920820713,0.025226712226868]],[[-0.089277550578117,-0.095019452273846,-0.11176411062479],[0.001008173217997,-0.027204595506191,0.0092784473672509],[-0.014884287491441,-0.013786112889647,-0.07091998308897]],[[0.060896322131157,-0.022361701354384,-0.033291686326265],[0.082583606243134,-0.050103165209293,-0.087339207530022],[-0.089031413197517,-0.0049898405559361,-0.051662124693394]],[[-0.0011041471734643,-0.046892527490854,0.047689471393824],[0.10610500723124,-0.020874762907624,-0.037438679486513],[0.054244644939899,0.0059023667126894,-0.036544967442751]],[[0.013744229450822,0.026710415259004,0.07145007699728],[0.058249864727259,-0.031938429921865,-0.01005488075316],[0.0045078401453793,0.05192056670785,0.012725186534226]],[[0.058485887944698,0.029140591621399,0.11409060657024],[-0.052880130708218,-0.078734807670116,-0.015713395550847],[-0.076641887426376,-0.038436863571405,0.071819812059402]],[[0.072296164929867,-0.042598884552717,0.023073369637132],[0.036713089793921,0.018557261675596,-0.11483082175255],[-0.030127707868814,0.002064511179924,0.027086708694696]]],[[[-0.01374629791826,0.073981434106827,-0.0068531893193722],[0.042295075953007,0.01829232275486,0.031568869948387],[0.018069438636303,0.097802594304085,0.026620956137776]],[[-0.035294558852911,0.11988192796707,0.091999940574169],[0.052967950701714,0.022894944995642,-0.03593809902668],[0.014780672267079,0.041500467807055,0.041256781667471]],[[-0.12400521337986,0.076481208205223,0.0007431015255861],[-0.0067832148633897,0.071463078260422,-0.01969919539988],[-0.06836761534214,0.016316426917911,0.024845024570823]],[[-0.014811165630817,-0.010039676912129,0.029832031577826],[-0.010342284105718,0.014027526602149,0.046961732208729],[-0.030918810516596,0.063542954623699,-0.013773322105408]],[[0.0049570030532777,0.065625376999378,0.00063375174067914],[0.011991382576525,0.068914979696274,0.039451781660318],[-0.042260933667421,0.05201094597578,-0.077078126370907]],[[-0.014586990699172,-0.014558211900294,0.030343944206834],[-0.078640624880791,0.11615891754627,0.033306747674942],[-0.10898593068123,0.13980935513973,0.0011235550045967]],[[-0.054908193647861,-0.080872394144535,-0.03803038969636],[-0.054960131645203,-0.0024430046323687,-0.039302840828896],[-0.01028161495924,0.043102543801069,0.011021984741092]],[[-0.030781168490648,0.02378842048347,-0.016878603026271],[0.001583967008628,-0.05666895210743,0.024757262319326],[-0.023972645401955,-0.098036698997021,-0.035859864205122]],[[-0.0058132926933467,-0.012068312615156,-0.057000838220119],[0.068633444607258,0.049206104129553,0.024560287594795],[-0.065040238201618,0.040640890598297,-0.099439173936844]],[[0.035084288567305,-0.047391019761562,-0.01068005990237],[-0.037222143262625,0.030870685353875,-0.0068200943060219],[0.0038751878309995,-0.036817148327827,-0.0068291346542537]],[[0.026858154684305,-0.0009819328552112,0.041727211326361],[-0.018683880567551,-0.012487355619669,0.020259123295546],[0.0091777332127094,0.0059983730316162,0.038403667509556]],[[-0.0033438627142459,0.0066265552304685,-0.073357135057449],[0.0089777167886496,0.042959816753864,0.045146811753511],[0.02657575532794,-0.037816997617483,-0.033628933131695]],[[0.00020755766308866,0.043198626488447,0.074009463191032],[-0.0083711883053184,-0.014662688598037,-0.039499871432781],[-0.073955170810223,0.03531589359045,0.015628328546882]],[[0.02952735312283,-0.024215774610639,-0.084305144846439],[-0.025086754933,-0.039225108921528,-0.019986402243376],[-0.010340873152018,0.019033405929804,-0.0028775040991604]],[[-0.040368340909481,0.019383171573281,0.081701569259167],[0.014991110190749,-0.082936726510525,0.049942143261433],[-0.048591006547213,0.056328386068344,0.04514642059803]],[[-0.059773165732622,0.00026859840727411,0.076496757566929],[-0.0019163799006492,-0.0076621132902801,-0.0063285510987043],[-0.0016951141878963,0.011900221928954,0.047121681272984]],[[-0.030884893611073,0.026383139193058,-0.064428932964802],[-0.022252518683672,-0.073882453143597,-0.0078459177166224],[0.073956578969955,-0.034176461398602,-0.0085197454318404]],[[-0.052346639335155,0.0022054428700358,-0.055242642760277],[0.052579399198294,-0.0067149484530091,-0.029839290305972],[0.040793977677822,0.018129954114556,-0.018796844407916]],[[-0.01265870500356,0.038562167435884,-0.045533042401075],[-0.0036168806254864,-0.0033777768258005,0.0029674347024411],[0.01254288200289,-0.01185208838433,-0.017573548480868]],[[0.042043868452311,-0.06518542021513,0.050418060272932],[-0.043795075267553,-0.063536249101162,0.0064601013436913],[0.041541405022144,0.016267849132419,0.082861237227917]],[[-0.020380536094308,-0.084981486201286,0.047872144728899],[0.033886358141899,0.00046551169361919,-0.018668403849006],[-0.053523365408182,0.052698668092489,0.015496583655477]],[[0.033040940761566,-0.044952109456062,0.067871987819672],[-0.008708125911653,0.0050649521872401,0.019425889477134],[-0.010110940784216,-0.031293258070946,0.04548828676343]],[[0.0001010695923469,-0.042019043117762,0.020039089024067],[0.09005581587553,-0.024123778566718,-0.041824862360954],[0.010240263305604,0.048587150871754,0.0073660393245518]],[[-0.10292672365904,0.017228802666068,-0.0051825339905918],[-0.04463554546237,-0.033716484904289,0.026130359619856],[0.0086540281772614,-0.006380878854543,-0.072861537337303]],[[0.053907591849566,-0.074293151497841,-0.018018122762442],[-0.037486057728529,-0.07593185454607,-0.057692267000675],[0.011369519867003,-0.032715782523155,0.0031256331130862]],[[-0.014985729940236,-0.02726536244154,0.071268528699875],[0.033348228782415,-0.041010405868292,-0.14292100071907],[0.011519532650709,0.051522541791201,0.035856273025274]],[[0.094264961779118,0.0063014579936862,0.0070612565614283],[-0.0014924423303455,0.058328576385975,-0.027037089690566],[0.13729536533356,-0.051069337874651,-0.095822349190712]],[[-0.058555513620377,-0.0074957772158086,0.07416445761919],[0.0073635885491967,-0.027043102309108,-0.024130044505],[0.045391008257866,-0.035140138119459,-0.028849396854639]],[[-0.016841515898705,-0.044262953102589,0.00039559946162626],[0.026425244286656,-0.079247742891312,-0.038673687726259],[0.021358849480748,-0.057792641222477,0.041388295590878]],[[-0.074106968939304,0.024335708469152,-0.03727101534605],[0.043569926172495,-0.10044697672129,0.031416974961758],[0.022725027054548,0.035355288535357,0.0043900045566261]],[[-0.023389674723148,0.035333380103111,2.6990543119609e-05],[-0.043665956705809,0.054066799581051,0.0085397306829691],[0.067703142762184,-0.023195903748274,-0.018846567720175]],[[-0.065863020718098,-0.027472965419292,-0.061023984104395],[-0.021185241639614,0.050722364336252,-0.023899305611849],[-0.012810683809221,-0.0025350849609822,-0.040470685809851]],[[-0.0061657610349357,0.068975672125816,-0.027921298518777],[-0.078579068183899,-0.028490154072642,-0.034087900072336],[-0.010540853254497,-0.02239559404552,0.087436281144619]],[[0.05973045155406,-0.045670323073864,-0.0066625345498323],[0.054192468523979,-0.026028674095869,0.0071584754623473],[-0.040159191936255,-0.049543507397175,-0.068998374044895]],[[-0.032015286386013,0.023135472089052,0.046795632690191],[0.047948334366083,0.075653314590454,-0.01187639310956],[0.0021342067047954,0.088644988834858,0.074802160263062]],[[0.07206005603075,-0.0074012051336467,0.0057655111886561],[-0.015388179570436,0.049874674528837,0.048162892460823],[0.046079311519861,-0.01266610994935,0.044645991176367]],[[-0.036556083709002,0.019943658262491,0.0018090661615133],[0.036887668073177,0.022132396697998,0.020962342619896],[-0.082543589174747,-0.10661439597607,0.021543744951487]],[[-0.058456093072891,-0.014455556869507,0.005333898589015],[-0.049157399684191,-0.078958779573441,-0.056725606322289],[-0.050534583628178,-0.03600249812007,-0.012296725995839]],[[0.020005704835057,0.010217113420367,0.013975143432617],[0.053395062685013,0.056995213031769,-0.0030854239594191],[0.0097461994737387,0.02380976267159,0.0059189694002271]],[[-0.088762395083904,-0.011739885434508,0.03278561681509],[-0.041165955364704,-0.042954221367836,-0.013402340002358],[-0.040777862071991,0.016720676794648,-0.015202558599412]],[[-0.087807700037956,-0.051081527024508,0.076440952718258],[0.031601473689079,0.022727619856596,0.042248215526342],[0.088130138814449,-0.027747387066483,-0.045819293707609]],[[-0.042335394769907,0.065871126949787,0.0051115015521646],[0.055564071983099,0.035832326859236,-0.05910736322403],[-0.031685125082731,0.012790830805898,0.055859610438347]],[[0.021253069862723,-0.044156301766634,0.023415341973305],[0.070602118968964,0.011612922884524,-0.034735448658466],[0.011731537990272,0.060977376997471,0.088017955422401]],[[-0.024856401607394,0.020568232983351,-0.01854919269681],[-0.0073771448805928,0.061925657093525,0.066899426281452],[0.1006745994091,0.0067927706986666,0.032291691750288]],[[-0.065990447998047,-0.052715186029673,0.046000573784113],[0.045837853103876,-0.0098409578204155,-0.013554725795984],[-0.0013970566214994,-0.009810977615416,0.021564306691289]],[[-0.027818012982607,0.026926083490252,0.12326920032501],[-0.046713721007109,-0.0078492248430848,-0.047104764729738],[-0.01819428242743,-0.01114812400192,0.018766917288303]],[[0.049965281039476,-0.047124989330769,-0.0031433673575521],[0.072901785373688,0.035696644335985,0.031986951828003],[-0.014312053099275,-0.03991449996829,-0.0032322809565812]],[[-0.087966032326221,0.0030244791414589,-0.089241020381451],[0.0098472768440843,-0.047446589916945,-0.02762153185904],[-0.079087950289249,-0.070687934756279,0.038154657930136]],[[0.016035718843341,-0.01861460506916,-0.056610893458128],[0.097586467862129,0.026143550872803,0.046909835189581],[-0.040047060698271,0.0097813913598657,-0.025158990174532]],[[-0.029769299551845,-0.0019184617558494,0.045398730784655],[0.033335749059916,-0.0024098826106638,-0.020531915128231],[-0.052102483808994,0.02690501883626,0.039156291633844]],[[-0.02969029918313,-0.0061937640421093,0.065164290368557],[-0.034841347485781,-0.0098465094342828,0.070008173584938],[0.0018320974195376,0.021148199215531,0.026364395394921]],[[-0.030700696632266,0.029743421822786,-0.058639008551836],[0.018078178167343,0.026455797255039,0.00066641793819144],[0.035714171826839,0.014830936677754,0.020236564800143]],[[-0.017218740656972,0.030609991401434,-0.05205162987113],[-0.048203956335783,-0.066968940198421,0.0013028278481215],[0.0086782956495881,-0.040793742984533,-0.060051761567593]],[[0.030480245128274,-0.007667931728065,-0.012981446459889],[-0.015731697902083,0.035805381834507,0.020660566166043],[0.03677811846137,-0.0091715268790722,-0.063708640635014]],[[0.046612344682217,0.057581599801779,0.031580977141857],[0.042382672429085,0.032257795333862,-0.076454237103462],[-0.099874563515186,-0.050730597227812,0.01226164214313]],[[0.035462103784084,-0.017506580799818,0.079864725470543],[-0.041289586573839,-0.015405574813485,-0.021826945245266],[0.031972005963326,0.064283482730389,0.013518141582608]],[[-0.0077699953690171,-0.032181058079004,0.0387953966856],[-0.033170949667692,-0.035290695726871,-0.047470599412918],[-0.04829628393054,0.075166173279285,-0.031577102839947]],[[0.022738864645362,-0.069197215139866,-0.068477742373943],[-0.074947945773602,0.016311138868332,0.05187913775444],[0.019401161000133,-0.074259392917156,-0.048203684389591]],[[0.073816321790218,-0.058419015258551,0.064764715731144],[0.026410365477204,-0.046050768345594,0.029658753424883],[-0.0075681200250983,0.016075490042567,-0.0004879012121819]],[[-0.049679927527905,-0.072985090315342,-0.020108819007874],[0.02860976755619,-0.072862446308136,-0.011538441292942],[-0.041368182748556,-0.05107007920742,0.12721727788448]],[[-0.034907437860966,-0.012833969667554,0.029931372031569],[-0.009734109044075,-0.045121897011995,0.062264427542686],[0.044059723615646,0.027984680607915,0.017882950603962]],[[0.03200751543045,0.03871126845479,0.067571736872196],[-0.028876537457108,-0.011631860397756,-0.0095264622941613],[-0.093840971589088,0.0056390594691038,0.0123051116243]],[[-0.076972760260105,-0.011664724908769,0.019792651757598],[0.019835310056806,-0.00075533747440204,0.0063821924850345],[0.057632558047771,0.092972777783871,0.037842325866222]],[[0.090862616896629,0.03799907118082,0.069767542183399],[0.0032904963009059,0.014822377823293,0.024952394887805],[0.0039024266880006,0.02885259129107,0.0036763795651495]],[[0.0038742637261748,0.060949523001909,-0.0026509794406593],[-0.014168992638588,0.0012317604850978,-0.066743671894073],[0.07697732001543,0.015129981562495,-0.030262138694525]],[[0.015490302816033,0.029630346223712,-0.0088179344311357],[0.011721001006663,-0.10598588734865,-0.030147863551974],[0.024855418130755,-0.0075360517948866,0.011709305457771]],[[0.0093341609463096,0.03507985919714,0.045327749103308],[-0.0046457871794701,-0.011265399865806,0.022397289052606],[-0.0055507719516754,-0.064326263964176,0.042731802910566]],[[0.074497111141682,0.032064065337181,-0.039315804839134],[-0.012194316834211,0.042782720178366,0.048909954726696],[0.029350876808167,-0.025603607296944,-0.015731757506728]],[[0.049803234636784,-0.0020589018240571,-0.00087848940165713],[0.015634765848517,-0.059122391045094,-0.025843312963843],[0.010954482480884,0.025992549955845,0.0010810096282512]],[[0.0059572979807854,-0.020553542301059,0.012921123765409],[-0.030391836538911,-0.023787673562765,0.007278726901859],[-0.059778727591038,0.030236171558499,-0.070259563624859]],[[0.01834843121469,-0.05473168939352,-0.0044276569969952],[-0.092513456940651,-0.13265977799892,0.020437700673938],[-0.0093132900074124,-0.028012426570058,-0.020076379179955]],[[0.093815080821514,0.0077163008973002,-0.088108994066715],[-0.056974820792675,-0.04560124501586,0.01698113232851],[-0.015390289947391,-0.031857028603554,0.03934233263135]],[[-0.036203801631927,-0.0042014485225081,-0.0096360826864839],[0.030894737690687,-0.018305169418454,-0.043684281408787],[-0.048974636942148,-0.041670523583889,-0.0046805990859866]],[[0.030916193500161,0.012216906063259,-0.036923334002495],[-0.0014264304190874,0.070791997015476,0.076115049421787],[-0.033921346068382,-0.061977341771126,0.039881829172373]],[[-0.04590554907918,-0.00049065303755924,0.027075603604317],[0.15768355131149,0.077074348926544,0.0021692239679396],[0.012060651555657,-0.035443585366011,0.012060130015016]],[[-0.00064738438231871,0.024172604084015,0.063773944973946],[0.030499096959829,0.070026986300945,-0.045554056763649],[0.11113008856773,0.058379750698805,-0.008155457675457]],[[-0.042089842259884,0.0016728886403143,0.04022378847003],[0.0072291591204703,-0.017748134210706,-0.023682894185185],[0.010484696365893,0.013232735916972,-0.015516340732574]],[[-0.044438619166613,0.026046849787235,-0.047096412628889],[0.00099355180282146,0.027991367504001,0.018915319815278],[-0.011142905801535,0.046640310436487,-0.032587859779596]],[[0.1080327257514,-0.004501192830503,-0.063699953258038],[-0.014500536955893,-0.0024073889944702,-0.063774041831493],[0.0058814766816795,0.015999520197511,0.043034132570028]],[[-0.037928454577923,-0.068349108099937,-0.06053065136075],[0.051821202039719,-0.027274006977677,-0.10360594838858],[0.058324761688709,-0.022087953984737,-0.0095278415828943]],[[-0.041890799999237,0.0061545362696052,0.0062105860561132],[-0.04043722525239,0.0010750374058262,0.06317114084959],[-0.088708139955997,0.084643110632896,0.05245927721262]],[[-0.0064278985373676,-0.058717060834169,0.022533185780048],[-0.033575631678104,-0.027636095881462,0.035590026527643],[0.033200118690729,-0.051175512373447,0.018161399289966]],[[-0.02781606093049,0.0057056616060436,0.0051168552599847],[0.06793100386858,-0.041919067502022,-0.076377771794796],[0.0074292812496424,-0.018817443400621,-0.017293967306614]],[[0.15511934459209,0.018818471580744,-0.040752831846476],[-0.0081813270226121,0.0095034576952457,0.070184431970119],[0.022408470511436,0.039236854761839,0.0069009042344987]],[[0.027248485013843,-0.049061723053455,0.05541530251503],[0.079152077436447,0.010789870284498,0.10648030787706],[-0.1176033616066,-0.063828893005848,0.044473648071289]],[[-0.017410283908248,0.019063986837864,0.024488557130098],[-0.0013692592037842,0.057375852018595,-0.0038853797595948],[-0.023565063253045,0.0028907549567521,0.069181516766548]],[[-0.033001646399498,0.050718002021313,0.096448183059692],[-0.027550520375371,-0.085026204586029,-0.062809906899929],[0.037601750344038,0.012489556334913,0.072084873914719]],[[-0.020735943689942,-0.043095678091049,0.026706835255027],[-0.042106546461582,0.056065030395985,0.010021732188761],[-0.013231135904789,0.021981751546264,-0.019350741058588]],[[0.049419354647398,0.0046011134982109,-0.057942286133766],[0.05365876480937,-0.051384579390287,0.0028399017173797],[-0.033229865133762,-0.015940090641379,0.034599374979734]],[[0.030244041234255,0.026151979342103,0.023476898670197],[0.088193513453007,-0.053260196000338,-0.048306282609701],[-0.0036107606720179,-0.069488294422626,0.081367209553719]],[[-0.092999532818794,-0.08589680492878,-0.025230553001165],[-0.065228678286076,0.016531996428967,0.0021295514889061],[0.037341598421335,-0.060724794864655,0.036046955734491]],[[-0.020443497225642,0.031756717711687,0.06113338470459],[0.0034535254817456,-0.017952360212803,0.015533524565399],[-0.034972537308931,-0.010843377560377,-0.021378939971328]],[[0.048117190599442,-0.024642314761877,0.038197714835405],[0.078811131417751,-0.014202338643372,-0.016566164791584],[0.022574413567781,0.002245016163215,0.010091274045408]],[[-0.021009584888816,0.020771129056811,0.017244974151254],[-0.06004174426198,0.023207686841488,0.090635485947132],[-0.004414891358465,0.013467908836901,0.02223028242588]],[[-0.02798174880445,-0.0034950382541865,-0.093058295547962],[0.059335123747587,0.0056210202164948,-0.032829277217388],[-0.013022396713495,0.066380999982357,-0.059014458209276]],[[0.011445289477706,0.052115712314844,0.074633561074734],[-0.066416293382645,-0.0030156574212015,0.089143514633179],[0.03899247571826,-0.040474332869053,-0.01668912731111]],[[-0.057956278324127,-0.013484849594533,0.021173227578402],[0.034765090793371,-0.079341992735863,0.04531791806221],[0.019137410447001,0.04956017062068,0.0019006058573723]],[[0.10388913750648,0.017776465043426,0.06540771573782],[0.02151008695364,-0.054239496588707,0.039184182882309],[0.0069576692767441,-0.055624574422836,-0.11078777909279]],[[-0.0098512703552842,-0.063234008848667,-0.0034210367593914],[0.0013226593146101,0.019568407908082,-0.019001621752977],[-0.090236499905586,0.050469115376472,-0.0066000376828015]],[[-0.0095045883208513,-0.0075699058361351,-0.042692102491856],[-0.03891035169363,0.024353355169296,-0.003505518194288],[0.004790716804564,-0.059614393860102,-0.036709543317556]],[[0.039507728070021,-0.027178268879652,0.022763803601265],[-0.11006782948971,0.040002346038818,0.03757243975997],[-0.046558625996113,0.0045399288646877,0.029082471504807]],[[0.019488010555506,0.072591327130795,-0.024228444322944],[-0.024956105276942,-0.032485842704773,-0.12529541552067],[-0.087600998580456,0.021105134859681,-0.022319799289107]],[[0.01039329636842,-0.00070780038367957,-0.072022430598736],[-0.015559169463813,0.029703116044402,-0.0034002515021712],[0.002263599075377,-0.041046552360058,-0.0057192058302462]],[[-0.051642544567585,0.033652108162642,0.035314466804266],[-0.0012140831677243,-0.11031972616911,-0.068719655275345],[-0.038144394755363,0.058542251586914,-0.087951049208641]],[[0.047847989946604,-0.049319088459015,-0.0078454166650772],[0.0052939583547413,-0.054768025875092,-0.05988447368145],[0.0080156167969108,-0.09581646323204,-0.0029729355592281]],[[-0.034061245620251,-0.015259801410139,-0.034183252602816],[0.048402711749077,0.059810187667608,0.0084451278671622],[0.066722258925438,-0.043578676879406,0.014234573580325]],[[0.012395910918713,0.012138881720603,-0.0084064286202192],[-0.017630962654948,-0.0059600593522191,-0.050436824560165],[-0.044603120535612,-0.051382094621658,-0.00050477171316743]],[[-0.0050423434004188,0.0022139109205455,0.0098900580778718],[0.049081243574619,0.00021937002020422,0.0030768390279263],[0.044496778398752,-0.024301348254085,-0.033782325685024]],[[0.028863893821836,-0.046942669898272,-0.029394347220659],[0.0063583175651729,-0.036920927464962,0.02382654696703],[-0.057373486459255,0.068923339247704,-0.044556118547916]],[[0.034358736127615,0.056019011884928,0.00070662162033841],[0.070570804178715,-0.018031131476164,0.050946392118931],[-0.016656333580613,-0.019251262769103,0.028235375881195]],[[0.037045769393444,1.3124968972988e-05,0.048611167818308],[0.010588507167995,0.030067481100559,-0.015495327301323],[0.062251783907413,0.048783551901579,0.0085038123652339]],[[0.012319505214691,-0.086463771760464,0.057372249662876],[0.0012655636528507,0.017218666151166,0.098570220172405],[0.034295033663511,0.03832009807229,-0.070099070668221]],[[-0.0064042033627629,0.025152629241347,-0.060255654156208],[-0.021459091454744,0.010299629531801,0.0045184609480202],[-0.085530482232571,0.019098600372672,-0.026792954653502]],[[0.010847819969058,0.058112449944019,0.023109696805477],[-0.022423995658755,0.05482242628932,-0.0054674749262631],[-0.056234087795019,-0.05145475640893,-0.037594400346279]],[[0.013291864655912,-0.030293134972453,0.036076426506042],[-0.023602057248354,0.03181978687644,0.041502829641104],[-0.036544494330883,-0.031973093748093,0.006644802633673]],[[0.10606538504362,-0.069412209093571,0.014309593476355],[0.085532881319523,0.059920351952314,0.039836753159761],[-0.020552819594741,0.020228877663612,-0.0062115075998008]],[[0.034007135778666,-0.0094751361757517,0.022449553012848],[-0.011701222509146,0.018837291747332,0.022693485021591],[0.05490879714489,-0.03815745189786,0.0063783582299948]],[[0.028949150815606,0.021564789116383,0.0045746411196887],[0.033397417515516,0.033235628157854,-0.001816165051423],[-0.015966109931469,-0.0048444243147969,-0.039171755313873]],[[0.10631960630417,-0.024317119270563,0.032229021191597],[-0.003875635098666,-0.064690597355366,-0.035713635385036],[0.064681768417358,0.025244535878301,-0.0046635176986456]],[[0.017490986734629,0.0009964999044314,0.001685461611487],[0.025587758049369,0.011220551095903,0.0093029085546732],[-0.015724381431937,0.0016543011879548,0.012692633084953]],[[0.015505827963352,-0.047810845077038,-0.045504037290812],[-0.036421108990908,0.0018507080385461,0.028634574264288],[0.015539958141744,0.018889557570219,0.014898521825671]],[[0.11104835569859,-0.012773130089045,0.022542607039213],[0.083061210811138,-0.015994371846318,0.03784279152751],[-0.00054477714002132,0.0029115497600287,0.030309420078993]],[[-0.059162579476833,-0.066299870610237,0.055549453943968],[0.099264189600945,-0.015311259776354,-0.046095434576273],[-0.0048090000636876,0.027318341657519,-0.040675602853298]],[[-0.11248929798603,0.059435918927193,-0.0086269276216626],[0.047457478940487,0.026818243786693,-0.0037741831038147],[-0.093519814312458,-0.020639669150114,0.065281346440315]],[[-0.058056190609932,0.003273663809523,0.027825139462948],[0.047045949846506,-0.028789551928639,-0.034383930265903],[0.041019633412361,-0.0687121078372,0.034683763980865]],[[-0.033737622201443,-0.00228828843683,-0.021249210461974],[-0.014024215750396,-0.017239892855287,-0.0051651373505592],[-0.03051583468914,0.03003335557878,-0.021106386557221]],[[-0.042809132486582,-0.0031308147590607,-0.028615051880479],[0.0091837672516704,-0.040317382663488,0.079133063554764],[0.0092240767553449,-0.015848930925131,0.048136617988348]],[[-0.0038549129385501,-0.025813324376941,0.025192741304636],[0.050610613077879,-0.020951151847839,-0.0086067039519548],[-0.0048361071385443,-0.025442069396377,0.01173822209239]]],[[[0.016806408762932,-0.034329924732447,-0.054844152182341],[0.0033117670100182,-0.019885236397386,-0.010402601212263],[0.01509677618742,-0.040038410574198,0.019576817750931]],[[0.038945879787207,-0.0094720162451267,-0.11246081441641],[0.092532500624657,0.0069365301169455,-0.019753750413656],[-0.015827193856239,-0.067776009440422,-0.069648198783398]],[[0.031260494142771,-0.0034414711408317,-0.02571371011436],[0.024468377232552,-0.058584053069353,-0.0013422423508018],[-0.084017120301723,-0.047457117587328,-0.077494069933891]],[[-0.073670364916325,0.009079746901989,0.014759540557861],[-0.024428777396679,-0.029414050281048,0.0092462413012981],[0.11748176068068,-0.0056320419535041,0.014848607592285]],[[-0.008732745423913,-0.098307535052299,-0.017231862992048],[0.027088643983006,-0.036029160022736,-0.055810809135437],[0.035531811416149,0.014112650416791,-0.023556012660265]],[[-0.0057282615453005,-0.0084056565538049,0.028225691989064],[0.052766639739275,-0.046155273914337,-0.085774935781956],[0.038372419774532,-0.028434280306101,-0.081083387136459]],[[0.032906804233789,0.055876187980175,0.0011005366686732],[0.00096240331185982,0.039506569504738,0.037475138902664],[-0.044464986771345,-0.049951612949371,-0.049607519060373]],[[0.0041419309563935,0.027964252978563,0.030030693858862],[0.0027619861066341,0.034033108502626,-0.0072673647664487],[0.038373306393623,-0.010000355541706,-0.06878562271595]],[[0.015654051676393,-0.0087002599611878,0.1155194118619],[-0.09879345446825,0.044749327003956,-0.031344592571259],[-0.06291526556015,0.019778711721301,0.11460263282061]],[[0.016673455014825,0.022941322997212,0.0595045350492],[0.048648796975613,-0.053727734833956,0.018938336521387],[-0.032475735992193,-0.0023428581189364,-0.033493142575026]],[[-0.047834284603596,-0.04372264444828,0.067549757659435],[0.025733850896358,0.029817763715982,0.015973757952452],[-0.011754429899156,0.01961706019938,-0.055132694542408]],[[0.0084858955815434,0.03492421284318,-0.020073307678103],[0.0068566408008337,-0.077899754047394,-0.050827447324991],[0.075367778539658,0.099157951772213,-0.032238192856312]],[[0.026468755677342,-0.014667510986328,0.0029162440914661],[-0.050624873489141,-0.025042815133929,0.063834093511105],[0.019744737073779,0.027218401432037,-0.027929626405239]],[[-0.06053127720952,-0.078419238328934,0.0049606864340603],[0.023016357794404,-6.1414830270223e-06,-0.020138347521424],[-0.064610667526722,-0.03281831741333,-0.054305590689182]],[[-0.00012144487845944,-0.010017395950854,0.058547489345074],[0.044921215623617,0.0018083169125021,-0.034770712256432],[-0.063515104353428,0.037972908467054,-0.060730900615454]],[[0.036685973405838,-0.085209809243679,-0.075952865183353],[0.052459288388491,0.002972318790853,0.010579215362668],[0.021224113181233,0.051210310310125,-0.0039506121538579]],[[0.0078636510297656,0.062815926969051,-0.047628533095121],[-0.021866763010621,-0.071709670126438,-0.011809851974249],[-0.055363923311234,0.0052466620691121,-0.0053805327042937]],[[-0.012539419345558,0.021370986476541,0.021105295047164],[-0.048358548432589,-0.043150741606951,0.0033960901200771],[0.056263171136379,-0.058469258248806,0.032742686569691]],[[0.044785045087337,-0.011795495636761,0.0093264291062951],[0.053450603038073,-0.0350103341043,-0.048673801124096],[0.00066181097645313,-0.046754285693169,-0.0052506593056023]],[[5.0228343752678e-05,0.082869045436382,-0.061434417963028],[0.038202501833439,-0.012082207016647,-0.042628794908524],[0.024490607902408,-0.041788838803768,0.047893024981022]],[[0.069579601287842,-0.056539621204138,-0.068124018609524],[0.0113634634763,-0.02454392798245,0.080588884651661],[0.089205287396908,0.06343512237072,-0.045270256698132]],[[0.029234852641821,0.037748847156763,-0.007648017257452],[-0.0027651253622025,0.089314177632332,0.0073614390566945],[0.037511147558689,-0.0018615332664922,-0.069716185331345]],[[-0.051234137266874,-0.11166585236788,-0.043288722634315],[-0.043075796216726,0.010881339199841,-0.022376973181963],[0.0064476281404495,0.0033561019226909,0.037192482501268]],[[-0.04271250218153,0.095187820494175,0.055177081376314],[0.039434637874365,-0.069121904671192,0.043507669121027],[0.069964095950127,-0.084747806191444,-0.086419656872749]],[[-0.020011788234115,-0.018985578790307,-0.018163662403822],[0.010058282874525,-0.087291315197945,-0.046026080846786],[0.031507130712271,0.0012888433411717,-0.033299338072538]],[[0.018545741215348,0.07018917798996,-0.051774922758341],[0.016713531687856,-0.10105854272842,-0.025659807026386],[-0.057976376265287,-0.01060903351754,-0.014261942356825]],[[-0.051283366978168,0.0044586076401174,0.049869410693645],[-0.03194335848093,-0.0035258363932371,0.07451730966568],[-0.023944271728396,-0.035847626626492,-0.040246371179819]],[[0.014614201150835,0.022279938682914,0.032303463667631],[0.06372094899416,-0.083313673734665,-0.029195951297879],[0.022368030622602,-0.00035096035571769,0.0061934180557728]],[[-0.03234289586544,0.068179316818714,-0.01187917497009],[0.015480253845453,0.0026315613649786,-0.082191117107868],[-0.014208758249879,0.036352064460516,0.043626938015223]],[[0.0066992682404816,-0.031382195651531,-0.0091918557882309],[-0.036241076886654,-0.083075158298016,0.031596157699823],[-0.065851859748363,-0.055206172168255,-0.0092929862439632]],[[0.046367015689611,-0.047285854816437,-0.086422920227051],[-0.024193800985813,-0.10523404926062,0.032496072351933],[-0.012674269266427,-0.023873111233115,0.074373453855515]],[[0.0081923399120569,-0.046748392283916,-0.035620864480734],[0.00075777131132782,0.0079930871725082,-0.01642301492393],[0.038722690194845,0.027480605989695,-0.0097840493544936]],[[0.02386767603457,0.040121357887983,0.074012570083141],[-0.0050618890672922,-0.0027339842636138,-0.020683629438281],[0.08018734306097,0.02155171521008,-0.05150331184268]],[[-0.099425405263901,0.036541078239679,-0.0092084081843495],[-0.054389327764511,-0.022390155121684,0.036301951855421],[-0.0074548930861056,0.032308019697666,0.076539799571037]],[[-0.069858938455582,0.0073145455680788,-0.013185490854084],[-0.062961839139462,0.028692336753011,0.074625134468079],[0.082052268087864,0.093449465930462,-0.083511665463448]],[[0.04189832136035,-0.096143320202827,-0.042448569089174],[-0.11732932925224,0.082467459142208,0.029058557003736],[0.0053110849112272,0.040310982614756,0.089016735553741]],[[-0.022637283429503,-0.073907241225243,-0.015945594757795],[0.027864348143339,0.087263137102127,0.031234672293067],[-0.048449106514454,-0.0099187130108476,-0.0033918432891369]],[[-0.0096647990867496,0.022038973867893,0.015214540064335],[-0.0099213747307658,0.004659550730139,-0.028106456622481],[0.081583797931671,0.0016044417861849,-0.061987485736609]],[[-0.097408801317215,0.041446316987276,0.046687014400959],[-0.038273680955172,0.01719318702817,0.0089299539104104],[-0.15398636460304,-0.058875471353531,-0.1281565874815]],[[0.047320105135441,0.033781792968512,0.012407372705638],[-0.011204878799617,-0.010211893357337,0.010962924920022],[0.05550792068243,0.026544719934464,-0.032240442931652]],[[0.034933265298605,-0.023118536919355,-0.039658915251493],[-0.015846978873014,-0.0015067253261805,-0.023146033287048],[0.013802113011479,0.0057752425782382,0.006797953043133]],[[-0.026819080114365,-0.0015373404603451,-0.0049303937703371],[0.016742121428251,0.05940705537796,0.025850228965282],[-0.069638848304749,-0.0067265224643052,-0.021130235865712]],[[-0.0044833458960056,-0.064860567450523,0.091736607253551],[0.015204224735498,-0.0095584103837609,-0.02164126560092],[0.047139447182417,0.0050644632428885,0.033365037292242]],[[-0.053198046982288,-0.0032076728530228,-0.04400897026062],[-0.024330522865057,-0.0090038375928998,-0.1045770868659],[-0.02790504321456,0.095122158527374,-0.039411224424839]],[[0.041437938809395,0.074248664081097,0.023033706471324],[-0.0072269006632268,0.010573942214251,-0.006133493501693],[0.11332812905312,-0.0079284692183137,0.02904299274087]],[[0.049855168908834,-0.021761272102594,0.0031552258878946],[-0.018495755270123,-0.033534284681082,-0.059461921453476],[0.050627276301384,0.13987888395786,0.031989522278309]],[[-0.039432384073734,-0.023388378322124,-0.082230776548386],[0.028260005638003,-0.096031904220581,-0.062990106642246],[-0.0059475437738001,0.050472296774387,0.010864969342947]],[[-0.020338097587228,0.055873848497868,-0.012380054220557],[0.077425852417946,0.0063848039135337,0.021002169698477],[0.022456908598542,0.0075259585864842,-0.0225570499897]],[[-0.098233886063099,-0.044909257441759,0.062438856810331],[-0.03630918264389,0.032564133405685,-0.017338899895549],[-0.0058590546250343,-0.018455978482962,0.024814231321216]],[[-0.13849632441998,-0.036937739700079,0.068677753210068],[0.018909137696028,0.018792763352394,0.035147875547409],[0.0018609273247421,0.018544441089034,-0.035948935896158]],[[0.031740948557854,-0.080133654177189,0.02861987426877],[0.04896579310298,0.01211606618017,-0.038443129509687],[-0.025138597935438,-0.056011978536844,-0.058023672550917]],[[-0.018920896574855,-0.00059953867457807,-0.0021311626769602],[0.061098843812943,-0.013465613126755,0.081148646771908],[0.11589138954878,-0.04523017629981,-0.053296402096748]],[[-0.055210597813129,-0.0050795641727746,-0.059421982616186],[0.031785078346729,-0.0038123491685838,-0.030858743935823],[-0.016985218971968,-0.05273536965251,-0.038844238966703]],[[0.045364197343588,-0.0029860171489418,-0.018539104610682],[-0.0016770348884165,0.002358715981245,0.036332182586193],[0.020196115598083,0.021080650389194,-0.045050591230392]],[[-0.031170014292002,-0.094848088920116,-0.026565780863166],[0.056334137916565,-0.061471477150917,-0.03432659804821],[0.010881247930229,-0.039764985442162,-0.0036901975981891]],[[0.00078591500641778,-0.014228695072234,0.04486171901226],[-0.013328203000128,0.02812672406435,-0.001514534233138],[0.044329691678286,-0.056688506156206,-0.067896366119385]],[[0.038665801286697,-0.011322006583214,-0.014136804267764],[-0.014632841572165,-0.012094810605049,-0.029360897839069],[-0.0054875039495528,0.073236748576164,0.015659298747778]],[[0.073829799890518,-0.031973861157894,0.10315666347742],[-0.0064195529557765,0.028814524412155,0.0053677121177316],[-0.063060142099857,0.0084262723103166,-0.019276581704617]],[[0.074759118258953,-0.027674218639731,-0.040055561810732],[0.024806397035718,-0.028682675212622,0.038478575646877],[0.0088845333084464,0.025536360219121,0.038480464369059]],[[-0.040178634226322,0.02026985399425,0.037796087563038],[-0.03962966427207,-0.013379799202085,-0.014208418317139],[-0.11483154445887,0.045185372233391,0.024104855954647]],[[-0.0075730234384537,0.0057642119936645,-0.011012928560376],[0.019918076694012,-0.022647578269243,-0.035458587110043],[-0.021895963698626,-0.010091302916408,0.068963475525379]],[[-0.046344436705112,-0.017811363562942,0.008931640535593],[0.041626956313848,-0.018378555774689,-0.020052710548043],[0.036474093794823,-0.040197879076004,-0.037704907357693]],[[-0.027746917679906,0.049855317920446,-0.0019307533511892],[-0.12107899039984,0.018779397010803,-0.025994775816798],[0.008010477758944,-0.0086778169497848,-0.084242798388004]],[[0.032310836017132,-0.023178847506642,0.067001797258854],[-0.038190178573132,-0.0099612893536687,-0.047636158764362],[0.0065087084658444,-0.056869611144066,0.042346827685833]],[[-0.030305840075016,-0.022871252149343,-0.0044544478878379],[-0.0012785074068233,-0.011459259316325,-0.0030055441893637],[-0.005280782468617,-0.06055174767971,0.046014208346605]],[[0.046567879617214,0.019817089661956,0.029818067327142],[-0.023198373615742,0.02625591494143,-0.016049116849899],[-0.047458883374929,0.0011862568790093,0.067658595740795]],[[0.027606640011072,0.027221411466599,0.039244394749403],[0.04167652875185,0.034422338008881,0.092854470014572],[-0.008546338416636,-0.086020618677139,-0.059438548982143]],[[-0.037068579345942,0.035171892493963,0.093267485499382],[0.058714315295219,0.046487841755152,0.061309158802032],[-0.035030540078878,0.072683066129684,-0.0089504038915038]],[[-0.016241474077106,-0.099549844861031,0.12795367836952],[-0.019721517339349,-0.091593742370605,0.078591488301754],[-0.039179366081953,0.061674512922764,-0.041759561747313]],[[0.067824877798557,-0.084826365113258,0.023427186533809],[-0.019700927659869,0.061263896524906,0.014831366948783],[0.10250709205866,-0.0091819213703275,-0.023680076003075]],[[-0.053183265030384,0.0078173503279686,0.030385771766305],[-0.024894062429667,0.046914890408516,-0.015214974991977],[0.061485141515732,0.0162145011127,-0.043501749634743]],[[-0.04725369811058,0.056933004409075,0.00062233244534582],[-0.010378528386354,0.042175628244877,0.019886055961251],[0.045202743262053,0.022827763110399,-0.026615537703037]],[[-0.099818639457226,0.036793731153011,-0.084170781075954],[0.028525959700346,0.029508521780372,0.017392175272107],[-0.073251187801361,0.044141333550215,0.073153831064701]],[[0.0073939431458712,0.060185182839632,0.062636010348797],[-0.0391830727458,0.0055828029289842,0.018535371869802],[0.076547138392925,-0.012576205655932,-0.035639248788357]],[[-0.014520836062729,-0.0086471103131771,-0.11200313270092],[-0.034870758652687,0.01278571691364,0.18566101789474],[0.089592479169369,0.047506887465715,-0.0054459441453218]],[[0.027282683178782,0.08072742074728,0.011744983494282],[-0.080725565552711,-0.038382057100534,-0.085755556821823],[-0.045015782117844,0.052203103899956,0.01102873403579]],[[0.0074343755841255,-0.056210540235043,-0.024091335013509],[-0.012761441990733,0.021774210035801,-0.0030700457282364],[0.03049530275166,0.012324783019722,0.045765269547701]],[[0.023497715592384,0.00076211197301745,0.01362104807049],[-0.069684229791164,0.09170388430357,-0.044407662004232],[0.063153311610222,0.0079013472422957,-0.035978984087706]],[[-0.063490688800812,-0.00049455522093922,0.099382169544697],[-0.031098622828722,-0.091874614357948,-0.12949194014072],[-0.053910482674837,-0.053199980407953,0.073564790189266]],[[-0.052704900503159,0.011310520581901,-0.077965810894966],[-0.070726588368416,0.069497860968113,-5.4034811910242e-05],[0.090191088616848,-0.040241796523333,-0.0033225370571017]],[[0.069944702088833,0.057829543948174,0.015327411703765],[-0.022192040458322,-0.003778709564358,0.093343421816826],[-0.026171805337071,-0.090407215058804,-0.015303931199014]],[[0.098067194223404,0.030542150139809,0.011117194779217],[0.07561756670475,0.077268786728382,0.028522096574306],[-0.0054527833126485,-0.034548990428448,-0.037162248045206]],[[-0.082409329712391,0.023532578721642,0.055868696421385],[-0.020918775349855,0.021203342825174,-0.038076423108578],[1.1930242180824e-05,-0.019020775333047,0.01293286960572]],[[0.018691394478083,0.0086027346551418,0.006397217977792],[0.11481144279242,0.00071358046261594,-0.061456438153982],[0.022958276793361,-0.06531172990799,0.019039573147893]],[[-0.040145616978407,0.088816247880459,-0.026196261867881],[0.0053193145431578,0.029592299833894,0.022781696170568],[-0.020975636318326,-0.022771507501602,-0.0077837300486863]],[[-0.058287620544434,-0.016035795211792,-0.0068478020839393],[-0.043443590402603,0.010770718567073,0.021943202242255],[-0.01542367041111,-0.022852515801787,-0.050095826387405]],[[0.010789568535984,-0.023675268515944,-5.5048574722605e-05],[-0.032262057065964,0.074129372835159,-0.056969285011292],[-0.0040712337940931,-0.033447429537773,-0.036035396158695]],[[0.018450003117323,-0.038265258073807,0.0016555545153096],[-0.02860102429986,-0.022521924227476,0.066604696214199],[-0.014763047918677,-0.0276711396873,0.004470850341022]],[[-0.027798965573311,-0.037096869200468,-0.056146085262299],[0.0039170375093818,0.009905700571835,-0.029109247028828],[0.098152950406075,-0.0067557650618255,-0.011184309609234]],[[-0.033635828644037,-0.15557853877544,-0.045028001070023],[-0.037241127341986,0.13323366641998,-0.016785928979516],[0.044637147337198,0.085919842123985,0.00082010962069035]],[[0.0045001045800745,0.0018171889241785,-0.057417988777161],[0.052440658211708,0.047155931591988,-0.042999278753996],[0.023272816091776,0.0053268023766577,0.042896136641502]],[[0.020726522430778,0.10063841938972,-0.010103326290846],[0.056874111294746,-0.045675951987505,-0.12309249490499],[0.033170480281115,-0.01462641172111,0.051503229886293]],[[0.013915091753006,0.015006072819233,0.029629677534103],[-0.017526647076011,-0.027961395680904,0.10150103271008],[0.04625990986824,0.0056467787362635,0.053266931325197]],[[-0.017091492190957,0.053733617067337,0.0043268939480186],[0.007261710241437,-0.047404140233994,-0.059393007308245],[0.014852022752166,0.14528693258762,-0.10466514527798]],[[0.026719616726041,-0.018116038292646,0.015793656930327],[-6.3827559642959e-05,0.011505831032991,-0.079921036958694],[0.067302942276001,-0.056854669004679,-0.038168624043465]],[[-0.039880596101284,0.010206283070147,0.068263344466686],[0.023784318938851,0.02756349183619,-0.14984691143036],[0.0037043266929686,0.0092973057180643,-0.030180599540472]],[[0.077080339193344,0.057952053844929,-0.019452791661024],[0.051689296960831,0.025956636294723,-0.05915379524231],[-0.04159327223897,-0.086372807621956,-0.033689752221107]],[[-0.068678021430969,-0.030658228322864,-0.0069787842221558],[0.02518711052835,-0.056050900369883,0.041886851191521],[0.007626527454704,0.070507369935513,-0.045841902494431]],[[0.046096608042717,-0.0099696228280663,-0.0083557656034827],[0.047232072800398,-0.08100088685751,-0.061815153807402],[0.14073304831982,-0.008029717952013,0.0026591690257192]],[[-0.052720848470926,-0.029866432771087,0.078027784824371],[0.03858508169651,-0.0069882101379335,0.044971678406],[-0.048798654228449,0.032890271395445,0.097838900983334]],[[0.094201050698757,-0.065278209745884,-0.033308658748865],[0.049972392618656,-0.020277936011553,-0.039729055017233],[0.065310090780258,0.047865334898233,-0.070276238024235]],[[0.062993966042995,0.045578196644783,0.052412185817957],[-0.045668013393879,-0.037805035710335,-0.031453344970942],[-0.037168860435486,0.052114397287369,0.0071164551191032]],[[0.053274556994438,0.0038534021005034,0.032533369958401],[0.030080148950219,-0.0034890645183623,0.014885627664626],[0.013662908226252,0.063930712640285,0.034247521311045]],[[0.062577031552792,0.070600569248199,-0.021212473511696],[0.015406372025609,0.060258898884058,0.05095361545682],[0.089607834815979,0.021722318604589,0.028736276552081]],[[0.044884260743856,-0.032501395791769,-0.099303059279919],[-0.040938649326563,0.0002916595840361,-0.086216747760773],[0.0034358657430857,-0.010921533219516,0.033765789121389]],[[0.0029969313181937,0.0056718094274402,-0.014273240230978],[-0.042530983686447,-0.0086063891649246,0.017940422520041],[0.011297930032015,-0.015077085234225,0.035627249628305]],[[-0.050370715558529,0.015822475776076,-0.0019932645373046],[0.040671225637197,-0.015780009329319,0.003966614138335],[-0.0037317220121622,0.0063870144076645,0.021034598350525]],[[-0.015083498321474,0.049411188811064,0.010673846118152],[-0.029039325192571,-0.043669655919075,0.01458594109863],[0.035149499773979,0.03549437224865,0.056703053414822]],[[-0.017551554366946,0.04039790853858,-0.016586231067777],[0.012082699686289,-0.002872257027775,0.028561482205987],[0.08293716609478,-0.057632897049189,0.040379408746958]],[[0.0070960046723485,0.017371501773596,0.03370026499033],[0.043831404298544,0.04979058727622,0.044154956936836],[0.045947629958391,0.052731648087502,0.068670853972435]],[[-0.030748087912798,0.10208992660046,-0.060074456036091],[0.068602547049522,0.050363205373287,0.013001143932343],[0.087866924703121,-0.018574832007289,0.0054467916488647]],[[-0.022978961467743,0.042928963899612,0.024134978652],[-0.090212814509869,0.0089525245130062,-0.051442600786686],[-0.043425835669041,-0.0064056231640279,-0.0024131524842232]],[[0.033925902098417,0.033996671438217,-0.098327338695526],[0.0095903631299734,-0.016834566369653,-0.048345796763897],[0.014797873795033,-0.024996306747198,-0.0984216183424]],[[0.013514829799533,0.053736459463835,-0.063738748431206],[-0.046166080981493,-0.01152013707906,0.008142102509737],[-0.015903502702713,-0.030639553442597,-0.034449007362127]],[[0.025034911930561,-0.061911400407553,0.047893308103085],[-0.045996084809303,0.048357341438532,0.031265001744032],[-0.083590313792229,-0.035402413457632,-0.031810369342566]],[[-0.081618718802929,0.068693108856678,0.027847183868289],[-0.033071354031563,-0.034908048808575,-0.021920945495367],[-0.071090079843998,0.023604420945048,0.014129541814327]],[[0.050056397914886,0.077376686036587,-0.011810506694019],[0.0052016656845808,-0.022768318653107,-0.078484199941158],[-0.0024869863409549,-0.073900036513805,0.038350347429514]],[[-0.02087458409369,0.040356755256653,0.12928153574467],[0.0060692592523992,0.021500317379832,-0.07205668836832],[-0.070350326597691,0.012450047768652,-0.05222811549902]],[[-0.019311221316457,-0.057369399815798,-0.073498338460922],[-0.035210054367781,0.01350305788219,0.080533191561699],[0.015406351536512,0.0064024562016129,-0.050845678895712]],[[0.040410574525595,-0.029093535616994,0.036794003099203],[-0.043692819774151,-0.0034867532085627,0.046647813171148],[-0.027796845883131,0.011367201805115,-0.014019045978785]],[[-0.040020905435085,0.037898439913988,0.0065142218954861],[-0.063905023038387,0.00035114196361974,-0.017654443159699],[-0.019170479848981,0.064789041876793,0.012266095727682]],[[0.069297537207603,0.013702930882573,-0.085278637707233],[0.051921423524618,0.064182326197624,-0.024691671133041],[-0.066329270601273,5.9382098697824e-05,0.0069437050260603]],[[0.01150465477258,0.0024357726797462,0.028948066756129],[0.018261468037963,-0.0015532883116975,-0.026105236262083],[-0.013458848930895,0.0161436740309,0.018902130424976]],[[-0.059062875807285,0.031997669488192,-0.032287776470184],[0.059956811368465,-0.030524555593729,0.027304014191031],[0.027410911396146,-0.024690696969628,-0.030432315543294]],[[-0.00058573647402227,-0.013636996038258,0.043700687587261],[-0.038937512785196,-0.060547366738319,0.01217295974493],[-0.055308520793915,0.020572999492288,-0.013078300282359]],[[0.0055072172544897,-0.02538693882525,-0.051385600119829],[0.026619106531143,0.032634358853102,-0.014145993627608],[-0.036192655563354,0.019736677408218,0.095498494803905]],[[-0.025284104049206,-0.065679088234901,-0.09727293998003],[0.073760122060776,-0.0063415965996683,0.049905057996511],[-0.049753870815039,-0.079640090465546,-0.040435567498207]],[[0.053261462599039,0.022688360884786,0.073890224099159],[-0.085636675357819,-0.05176954716444,0.050186693668365],[0.024470292031765,0.031820699572563,-0.027433235198259]]]],"nOutputPlane":128,"kW":3,"kH":3,"bias":[-0.092956833541393,-0.095176115632057,-0.094187714159489,-0.059781175106764,-0.010281020775437,-0.047057513147593,0.055833764374256,-0.10121316462755,-0.013651622459292,-0.013346615247428,-0.068639494478703,-0.089832909405231,-0.0094992015510798,-0.016795182600617,-0.050740584731102,-0.031830601394176,-0.050679937005043,-0.041455838829279,-0.018171699717641,-0.011469800956547,-0.010986317880452,-0.0075242798775434,-0.020409788936377,-0.019361596554518,-0.027906490489841,-0.027994699776173,-0.041884005069733,-0.07543757557869,-0.085978880524635,-0.0099216271191835,-0.042568884789944,-0.10540536791086,-0.018665488809347,0.075130857527256,-0.057689808309078,0.014048550277948,-0.0054457923397422,-0.0084085501730442,-0.068893678486347,-0.015614544972777,-0.01257845479995,-0.032587796449661,-0.013210836797953,-0.062157031148672,-0.091815285384655,-0.010272223502398,-0.01930165104568,0.032306514680386,-0.032333958894014,-0.095081552863121,-0.00092434324324131,-0.060200456529856,0.0047375871799886,-0.0016579901566729,-0.097833208739758,-0.09057143330574,-0.054518014192581,-0.0060721402987838,-0.011150336824358,-0.033331833779812,-0.015323768369853,-0.051682382822037,-0.081814415752888,-0.13458967208862,-0.029375728219748,-0.078181445598602,-0.021719990298152,0.012798489071429,-0.024112228304148,-0.044749137014151,-0.026153797283769,-0.015068315900862,-0.056773871183395,-0.080599300563335,-0.0074529680423439,0.016007797792554,-0.10316883772612,-0.059716451913118,-0.0014004793483764,-0.079553194344044,-0.03656255081296,-0.016016155481339,-0.028152342885733,-0.01486396137625,0.055559612810612,-0.091598264873028,-0.056485075503588,0.050945229828358,-0.085920125246048,0.039748668670654,0.017317166551948,-0.0088074989616871,-0.075969725847244,-0.016306770965457,-0.018883589655161,-0.091637618839741,-0.033398155122995,-0.080670684576035,-0.0045578642748296,-0.0086732273921371,-0.016735251992941,-0.0068060168996453,-0.0029745264910161,-0.084814794361591,-0.0028836177662015,-0.013515490107238,-0.11512137204409,-0.028725989162922,-0.0050477935001254,-0.019472861662507,0.0061377249658108,-0.072846665978432,0.014234459958971,-0.0024932795204222,0.026003774255514,-0.014881202019751,-0.035600088536739,0.041838891804218,-0.0077399373985827,-0.023967128247023,-0.0095036141574383,-0.0786242634058,-0.038445215672255,0.057722125202417,-0.018254453316331,0.00051125587197021,-0.078679814934731,-0.082129918038845],"nInputPlane":128},{"weight":[[[[0.88162082433701,0.22708782553673,-0.75125133991241],[0.61871403455734,-0.028422025963664,-0.6828801035881],[-1.3004286289215,-0.031806621700525,0.094719916582108]],[[-0.25787737965584,-0.16218854486942,-0.092311888933182],[-0.040962092578411,-0.0081956693902612,0.63949400186539],[-0.61072570085526,0.03606316819787,0.43603855371475]],[[-0.18270960450172,0.33752882480621,-0.46839305758476],[-0.91775393486023,-0.182461977005,0.16446724534035],[0.3811377286911,0.3819831609726,-0.0042274943552911]],[[0.53566563129425,-0.72040736675262,0.50882083177567],[-0.7153953909874,0.19876040518284,0.025929754599929],[0.22881637513638,0.1310420781374,-0.25409975647926]],[[-0.45959174633026,0.079872496426105,0.033464103937149],[-0.048529993742704,0.42489597201347,0.054301865398884],[-0.10662664473057,-0.047244645655155,-0.06708487123251]],[[-0.64977651834488,-0.80922842025757,-0.67366433143616],[0.24145190417767,0.68831753730774,0.42521554231644],[0.35372483730316,0.32844194769859,0.06675922870636]],[[0.058852054178715,0.40659871697426,-0.33675387501717],[-0.12153518944979,0.069655790925026,0.073288626968861],[0.93349009752274,-0.15366378426552,-0.039166063070297]],[[-0.22339233756065,0.081895932555199,-0.10630588978529],[0.34741473197937,-0.16104248166084,-0.44613575935364],[-0.094493970274925,-0.58036226034164,0.02474439330399]],[[0.25033161044121,0.81396126747131,-0.58810687065125],[0.03905238583684,-0.035457570105791,-0.19406434893608],[0.36198574304581,-0.28098747134209,-0.33548629283905]],[[0.20318265259266,-0.30514231324196,0.077748462557793],[-0.16065740585327,0.47690519690514,0.22675395011902],[0.42786133289337,-0.77294528484344,-0.20195798575878]],[[0.076845951378345,0.65997540950775,0.86499232053757],[-0.33701610565186,0.62498587369919,-0.18146261572838],[-0.28889530897141,-0.45895302295685,-1.014512181282]],[[0.89735573530197,-0.033172443509102,-0.095079340040684],[-1.4155604839325,0.79329264163971,0.031525250524282],[-0.22167679667473,-0.17986072599888,-0.33422517776489]],[[-0.44454210996628,0.046000320464373,0.23501029610634],[-0.013708778657019,-0.28443640470505,0.22548328340054],[0.093269906938076,0.041024565696716,0.068924330174923]],[[-1.0554909706116,0.30149480700493,0.45071786642075],[0.56373411417007,-0.51558840274811,-0.21069048345089],[0.27267563343048,0.055358279496431,0.16379752755165]],[[-0.52465522289276,0.26971873641014,-0.056238491088152],[-0.44173681735992,0.8670112490654,-0.28074958920479],[0.05776684358716,-0.38548165559769,0.44808974862099]],[[-0.11450403183699,0.22282801568508,0.51291817426682],[-0.25809279084206,-0.33461791276932,0.49087756872177],[0.029501950368285,0.32294103503227,-0.85037440061569]],[[-0.30925318598747,-0.83007705211639,-0.010397328063846],[-0.10984395444393,0.23632903397083,0.81664806604385],[0.0099154179915786,0.13336385786533,0.087682142853737]],[[0.81541335582733,0.39377385377884,0.19585265219212],[-0.50944632291794,-0.083987422287464,-0.4192912876606],[0.01814217120409,-0.44728565216064,0.045002687722445]],[[-0.24231262505054,1.2830859422684,-0.10619968175888],[0.18961529433727,-0.45385482907295,-0.43870607018471],[-0.1619258671999,-0.10477726906538,0.082124330103397]],[[0.022199660539627,-0.12586309015751,-0.0079777864739299],[0.2198234796524,0.039572611451149,-0.55322635173798],[-0.095137014985085,0.068009816110134,0.41864305734634]],[[0.11568751186132,-0.12468250095844,0.26833727955818],[0.25491911172867,-0.67547005414963,0.23637634515762],[-0.082215994596481,0.15672874450684,-0.075371511280537]],[[-0.002595785073936,0.1601667702198,-0.070058763027191],[0.25874504446983,-0.45089998841286,-0.089365184307098],[0.20376738905907,0.055359367281199,0.0032253311946988]],[[-0.059314012527466,0.081729844212532,-0.33912846446037],[-0.023794915527105,-0.41722840070724,0.097568310797215],[0.16904203593731,0.1209644973278,0.33618375658989]],[[0.0061784852296114,-0.13845099508762,0.013658588752151],[-0.35452049970627,-0.18355473875999,0.39548155665398],[0.41351273655891,0.49096196889877,-0.62103372812271]],[[-0.63194465637207,0.75706958770752,-0.59197616577148],[0.10503632575274,0.25761944055557,-0.19734589755535],[0.13987343013287,-0.2038576900959,0.35459053516388]],[[0.13907977938652,-0.39919844269753,-0.34769660234451],[0.086298808455467,0.19005352258682,0.089243359863758],[0.18297848105431,0.14492486417294,-0.11570811271667]],[[0.53913921117783,-0.34428626298904,0.71661514043808],[-0.82734876871109,-0.32033947110176,-0.64884692430496],[0.5481766462326,-0.18503910303116,0.67650401592255]],[[-0.47761160135269,0.33214119076729,0.085938736796379],[0.32282710075378,-0.33019524812698,-0.30814757943153],[-0.47211602330208,-0.3529569208622,0.37105664610863]],[[-0.88646733760834,0.15308679640293,-0.85606288909912],[0.1192108169198,0.41291892528534,-0.58035391569138],[-0.14092127978802,1.2393517494202,-0.89627766609192]],[[0.27857089042664,-0.53023493289948,-0.13635240495205],[0.76777541637421,0.13685242831707,0.83971792459488],[-0.22732678055763,-0.52514833211899,-0.10440535843372]],[[-0.27983486652374,0.2374764829874,-0.064439304172993],[-0.33792611956596,-0.59997779130936,-0.44177356362343],[0.38815560936928,0.95798045396805,0.056154761463404]],[[-0.18897165358067,-0.16316701471806,0.25203713774681],[0.34202620387077,-0.12114439159632,-0.12714438140392],[0.023396646603942,0.5228642821312,-0.73497068881989]],[[-0.063896998763084,0.17770782113075,-0.0021570005919784],[-0.021814692765474,0.61560535430908,-0.33871591091156],[0.046201538294554,-0.45870566368103,0.015832655131817]],[[-0.10380315035582,0.24145631492138,-0.25341963768005],[0.32913655042648,0.33572381734848,0.05476913228631],[0.32904520630836,0.18855096399784,-0.028315747156739]],[[-1.0602756738663,0.19183538854122,0.46704462170601],[-0.036612320691347,0.11733722686768,0.20094875991344],[0.24817860126495,0.16350737214088,-0.41581159830093]],[[-0.55663597583771,-0.15910510718822,-0.1367294639349],[0.059256974607706,-0.42605465650558,0.80082130432129],[-0.11732708662748,0.23505754768848,0.32754069566727]],[[-0.058631494641304,0.17438815534115,-0.058010507375002],[-0.19054915010929,0.26845616102219,-0.12819394469261],[0.066295951604843,0.18359659612179,-0.26758599281311]],[[-0.046468529850245,-0.5811779499054,0.44490534067154],[0.16236765682697,0.24007122218609,-0.38086798787117],[-0.24375803768635,0.3738397359848,0.002624127548188]],[[0.20890621840954,0.4270167350769,0.42738762497902],[-0.10066249221563,-0.30963459610939,-0.36936789751053],[-0.067730821669102,-0.38092541694641,-0.054890770465136]],[[0.23698154091835,0.14535547792912,0.0091142216697335],[-0.1128771007061,-0.11311604082584,-0.14218239486217],[-0.2760437130928,0.21944555640221,0.014911976642907]],[[-0.2833109498024,-0.055348679423332,-0.013165628537536],[0.10116852074862,0.25307536125183,-0.22690379619598],[0.15697003901005,0.2135996222496,-0.13963003456593]],[[-0.97894239425659,0.10181719064713,1.0684552192688],[-0.36335954070091,0.066677130758762,-0.15260018408298],[-0.11908053606749,0.16082082688808,0.1791096329689]],[[-0.21384339034557,0.43227249383926,0.0071741919964552],[-0.68019038438797,0.28498920798302,0.32188755273819],[0.031472489237785,-0.26833429932594,0.05962785705924]],[[-0.36363631486893,-1.4845468997955,-0.39329236745834],[0.82824927568436,0.08280823379755,-0.13519681990147],[0.16813948750496,0.45879349112511,0.74174690246582]],[[-0.74007105827332,-0.12205930054188,0.21436122059822],[0.11787094920874,0.33210474252701,-0.069476254284382],[-0.74705731868744,-0.96120083332062,-0.53412079811096]],[[-0.081916704773903,-0.31448408961296,0.27938213944435],[0.023519460111856,-0.070656225085258,0.26878061890602],[-0.052240569144487,6.679815123789e-05,-0.075359106063843]],[[0.35888651013374,0.21168972551823,-0.010081795975566],[-0.24886371195316,-0.4911721944809,0.092639237642288],[0.077058404684067,0.14223316311836,-0.16006751358509]],[[-0.2049121260643,0.04104832932353,0.17181222140789],[-0.063042290508747,-0.074575357139111,-0.32248729467392],[0.62103492021561,0.59296691417694,-0.30189055204391]],[[0.17930814623833,0.046422995626926,0.25072979927063],[1.2255297899246,-0.6178360581398,-0.19057030975819],[-0.25830262899399,-1.0190491676331,0.38989040255547]],[[0.32961836457253,0.37311437726021,0.19974920153618],[-0.67246067523956,-0.21489726006985,-0.43459048867226],[-0.44004881381989,-0.23201915621758,-0.17044995725155]],[[-0.52184873819351,0.12425048649311,0.13130694627762],[0.1729671061039,0.36228343844414,-0.20112815499306],[0.14592798054218,-0.12116383761168,-0.11921279877424]],[[0.71583861112595,-0.20014652609825,0.027774864807725],[-0.95410549640656,-0.25027316808701,0.25241282582283],[0.045571561902761,0.12200148403645,0.057632885873318]],[[0.045234717428684,0.00099758198484778,0.13265216350555],[-0.023295998573303,0.041498519480228,-0.36683088541031],[-0.054193422198296,-0.049213234335184,0.2683707177639]],[[0.081118188798428,-0.0038979984819889,-0.15114614367485],[-0.17837017774582,-0.026075091212988,0.084110617637634],[0.099034823477268,-0.013505431823432,0.093464739620686]],[[-0.024757031351328,0.20706813037395,-1.0743181705475],[-0.33974269032478,-0.012588300742209,-0.18009169399738],[-0.73694598674774,0.26780477166176,-0.3526114821434]],[[0.10794591158628,-0.84836375713348,0.62957829236984],[-0.044712919741869,-0.015203160233796,0.48935380578041],[0.17588141560555,0.017196111381054,-0.54544287919998]],[[0.23701113462448,0.51491677761078,0.083597511053085],[-0.2448922842741,-0.27818468213081,0.17730949819088],[-0.70983409881592,0.15577980875969,-0.062014535069466]],[[-0.24876172840595,0.19941486418247,0.12195489555597],[0.37912636995316,-0.25916457176208,-0.036902189254761],[-0.2278236746788,0.29732143878937,-0.23404984176159]],[[-0.24651290476322,0.37755757570267,0.1079258993268],[0.17479760944843,-0.38826256990433,0.089156322181225],[-0.027872594073415,-0.049729868769646,-0.047631684690714]],[[0.15355017781258,0.61430847644806,0.20451916754246],[-0.27930158376694,-0.59944361448288,-0.16815321147442],[0.10182677209377,-0.059595867991447,-0.053085844963789]],[[0.14986574649811,-0.072017453610897,-0.11051690578461],[-0.19270814955235,0.24257166683674,0.0077789691276848],[0.065117180347443,0.0056172767654061,-0.13008253276348]],[[0.31527110934258,-0.62612873315811,0.50766032934189],[0.37163388729095,0.34060922265053,0.85807549953461],[-0.59209012985229,-0.076807849109173,-1.0565847158432]],[[-0.63838350772858,0.096425950527191,-0.012911853380501],[-0.16279757022858,0.912482380867,-0.65374577045441],[-0.51211982965469,0.04164132848382,0.2770454287529]],[[0.10270518809557,-0.52241623401642,0.091393180191517],[-0.43072631955147,1.1677029132843,0.025677958503366],[0.086966171860695,-0.17327663302422,-0.44270071387291]],[[0.89549952745438,-0.47584825754166,-0.37742990255356],[0.068394713103771,-0.11432571709156,0.19166122376919],[-0.68676608800888,0.15416200459003,0.34083271026611]],[[0.65474045276642,0.14446227252483,-1.0677332878113],[0.080883771181107,0.59241187572479,0.19293268024921],[-0.025132870301604,-0.40298992395401,-0.32486239075661]],[[-0.12624543905258,0.19482088088989,0.0057959873229265],[-0.20665588974953,0.032670840620995,-0.032386664301157],[-0.25030902028084,0.19533298909664,0.23029465973377]],[[-0.33753404021263,0.11844826489687,-0.091113671660423],[0.50059306621552,0.25213274359703,-0.24385742843151],[-0.37230789661407,-0.13991010189056,0.31676694750786]],[[0.2102195173502,-0.10836616158485,-0.70382165908813],[0.67387807369232,0.0057191816158593,0.095600239932537],[0.35088700056076,-0.20756144821644,-0.27391862869263]],[[0.34106183052063,0.49307513237,0.18286293745041],[-0.10766459256411,-0.39236763119698,-0.65861392021179],[0.024058900773525,0.094170406460762,0.04331486672163]],[[0.30596002936363,0.29795488715172,-0.55115926265717],[0.31479319930077,0.056220766156912,0.024553209543228],[-0.11073809862137,-0.04482588917017,-0.30401077866554]],[[-0.4371944963932,0.21029356122017,-0.085199013352394],[-0.47551122307777,0.40563809871674,0.25137960910797],[-0.063068509101868,-0.077070310711861,0.25965800881386]],[[-0.4047899544239,0.24671609699726,-0.55853915214539],[0.44663307070732,-0.18963411450386,0.12514697015285],[0.32417783141136,0.061027675867081,-0.062878996133804]],[[-0.32025066018105,0.012454128824174,0.26615434885025],[-0.22253292798996,0.75208580493927,-0.4510902762413],[-0.076035745441914,-0.63949710130692,-0.060248039662838]],[[0.023562300950289,-0.83098709583282,0.33383852243423],[0.64662438631058,0.025823686271906,-0.44495835900307],[-0.40882509946823,0.54715776443481,0.15881127119064]],[[0.25806790590286,-0.47827619314194,0.016795255243778],[0.22568036615849,-0.70721685886383,0.19995355606079],[0.22656953334808,0.30723026394844,-0.004626537207514]],[[0.30017706751823,-1.0109397172928,0.95205515623093],[-0.35441613197327,-0.45355859398842,0.044828988611698],[-0.41200768947601,-0.85779654979706,0.12280549108982]],[[0.20551949739456,-0.58664035797119,0.22868309915066],[0.15897181630135,-0.034313198179007,-0.18314689397812],[0.062788106501102,-0.012473126873374,0.046175073832273]],[[0.17517660558224,-0.055398680269718,-0.1228406354785],[-0.057717740535736,0.15063706040382,0.079673960804939],[-0.2303551286459,0.24191658198833,-0.20937724411488]],[[-0.01822879165411,0.0371302254498,-0.35699817538261],[0.34341830015182,-0.33726102113724,-0.071032077074051],[-0.22053749859333,0.21103158593178,-0.070332936942577]],[[-0.016195736825466,-0.068074747920036,-0.74564552307129],[-0.18185278773308,0.44263657927513,0.35200074315071],[0.24722038209438,0.080419197678566,-0.1373149305582]],[[0.63478946685791,-0.53526926040649,-0.10628471523523],[-0.40929597616196,0.043144069612026,-0.16137711703777],[0.58347183465958,0.088002189993858,-0.11310042440891]],[[-0.024919556453824,-0.029213968664408,0.13046385347843],[-0.024645494297147,0.085859961807728,0.60257810354233],[-0.37049090862274,-0.65389961004257,0.34198862314224]],[[-0.13454137742519,0.35026350617409,-0.11043436825275],[-0.12480612844229,0.033125720918179,-0.28454127907753],[0.30406945943832,-0.041125889867544,0.03034102730453]],[[0.34940806031227,0.12538692355156,0.19465443491936],[-0.33627158403397,0.35588473081589,-0.21905453503132],[-0.17523162066936,0.075881890952587,0.59418070316315]],[[-0.080709777772427,-0.21723847091198,-0.014881643466651],[0.66671526432037,0.62881773710251,-0.51692253351212],[-0.07003091275692,-0.13343286514282,-0.62324643135071]],[[0.10613360255957,-0.018546706065536,0.099890500307083],[-0.62225598096848,-0.14063404500484,-0.0014753042487428],[0.57161742448807,-0.25844645500183,0.22147886455059]],[[-0.52309894561768,0.58955419063568,-0.21191677451134],[-0.33442357182503,0.55187004804611,0.047523718327284],[0.0029806913807988,-0.56598490476608,0.77068644762039]],[[-0.24351640045643,-0.14629483222961,-0.062702402472496],[0.048498310148716,-0.41321489214897,-0.24400575459003],[0.32858085632324,0.008352093398571,-0.20324358344078]],[[0.55578148365021,-0.19383805990219,0.22670632600784],[0.64214414358139,0.37984809279442,0.32796666026115],[0.069740675389767,-0.70335948467255,0.27762013673782]],[[0.13049782812595,0.52787774801254,0.25510987639427],[0.010191050358117,-0.18155199289322,-0.050131134688854],[-0.87146157026291,0.068765327334404,0.14823366701603]],[[0.36255374550819,-0.11421025544405,-0.03992448374629],[-0.40161791443825,-0.2136594504118,0.54549050331116],[-0.57847762107849,0.55135190486908,-0.12794077396393]],[[0.083720661699772,0.46102267503738,0.1225770637393],[0.095972344279289,-0.035417884588242,-0.19928558170795],[-0.90469574928284,0.041349038481712,-0.051876045763493]],[[-0.7359978556633,-0.41806849837303,0.6713171005249],[0.015977434813976,-0.11560413986444,-0.065301686525345],[0.28441399335861,0.54543322324753,-0.18497958779335]],[[0.069347985088825,-0.0014543129364029,0.057692773640156],[0.30685567855835,0.10739812254906,0.204116076231],[-0.32605677843094,-0.31655591726303,-0.12032830715179]],[[-0.33302235603333,-0.77565550804138,0.32531416416168],[0.29984068870544,-0.53418147563934,0.33546179533005],[0.063850522041321,-0.072765447199345,-0.70609992742538]],[[-0.24680542945862,0.36927771568298,-0.05533679574728],[-0.54570984840393,-0.39999595284462,0.47531765699387],[-0.23268334567547,0.14127473533154,0.46856814622879]],[[-0.29450038075447,-0.046642400324345,0.18348118662834],[0.037635963410139,-0.65827989578247,0.35427457094193],[0.075587138533592,-0.49544423818588,-0.22748264670372]],[[0.74112886190414,-0.19300892949104,0.06276436150074],[0.091494992375374,-0.063544929027557,-0.81659376621246],[-0.038814719766378,-0.17451840639114,0.40463390946388]],[[0.047822590917349,-0.14216868579388,0.1892824023962],[-0.12749546766281,0.10624421387911,-0.12910228967667],[0.7369881272316,-0.50071793794632,-0.16619835793972]],[[-0.19228653609753,0.081763401627541,0.13701508939266],[-0.10878923535347,0.43930220603943,-0.063586950302124],[-0.12318427115679,-0.23710621893406,0.092503972351551]],[[-0.034365672618151,0.08158577978611,-0.27129158377647],[0.10342615842819,0.076572798192501,0.14875234663486],[0.026034532114863,-0.40030482411385,0.25581187009811]],[[-0.11695878952742,0.013587477616966,0.17238636314869],[0.05154599621892,-0.018276168033481,-0.041027892380953],[0.25711277127266,0.027647525072098,-0.34363010525703]],[[0.5815697312355,-0.40861237049103,0.013157066889107],[-0.68106055259705,0.76001197099686,0.31625068187714],[0.013042611069977,-1.3437975645065,0.049426268786192]],[[-0.042527832090855,-0.07382021099329,-0.054957296699286],[0.20405369997025,-0.037044245749712,-0.082021974027157],[0.10982728004456,-0.23387143015862,0.25532492995262]],[[-0.375672519207,-0.14708466827869,0.085677996277809],[-0.2985677421093,0.076259039342403,-0.20749862492085],[1.0545103549957,0.19657416641712,-0.31651741266251]],[[0.22421884536743,-0.24214766919613,-0.15720216929913],[0.35554602742195,-0.54830569028854,-0.1664799451828],[0.10201363265514,0.13826496899128,0.1086066737771]],[[0.14681668579578,0.20092092454433,0.16985474526882],[0.018702391535044,-0.20969355106354,-0.18381996452808],[0.089918062090874,-0.32845517992973,0.10715103894472]],[[0.26580858230591,-0.69455540180206,0.77621239423752],[0.111815713346,0.17018243670464,0.37018617987633],[-0.81048309803009,0.16595761477947,-0.33472740650177]],[[0.80073112249374,-0.092831708490849,0.92872476577759],[0.080169379711151,-0.44072830677032,-0.43247753381729],[0.09570749849081,-0.86621236801147,-0.057650726288557]],[[-0.098657853901386,0.20055098831654,0.23423938453197],[-0.22684067487717,0.47377997636795,-0.60573917627335],[0.10670894384384,0.037734914571047,-0.12705406546593]],[[0.47620093822479,0.65144646167755,0.29721590876579],[-0.49068054556847,-0.38408550620079,-0.40574532747269],[-0.55452960729599,-0.12543703615665,0.29572650790215]],[[0.24340812861919,0.0377635397017,0.15567056834698],[-0.50227534770966,0.41780441999435,-0.18236483633518],[-0.16396516561508,-0.036803007125854,0.022402932867408]],[[0.072562888264656,-0.26876994967461,-0.033099610358477],[0.21478289365768,-0.099150933325291,0.49193513393402],[-0.28808835148811,0.50553667545319,-0.60670644044876]],[[0.72219568490982,-0.13692109286785,-0.089442238211632],[-0.1062894910574,-0.30462265014648,0.1053351610899],[-0.053454972803593,0.18612702190876,-0.26910910010338]],[[-0.086003035306931,0.064123950898647,-0.5296990275383],[0.08279787749052,0.0099793896079063,0.1021963506937],[-0.011474451981485,0.15680448710918,0.14908061921597]],[[-0.10246648639441,0.0068741752766073,-0.053342513740063],[-0.7878560423851,-0.12758095562458,0.38480281829834],[-0.2191726565361,0.78497219085693,0.16547699272633]],[[0.17665652930737,0.6800571680069,0.031164135783911],[0.48870071768761,-0.40844452381134,0.21051400899887],[-0.79551541805267,-0.13506110012531,0.35916376113892]],[[0.12773723900318,-0.41511663794518,0.093678966164589],[0.236906722188,0.119354352355,-0.39174818992615],[0.35387107729912,-0.067850515246391,-0.063130065798759]],[[-0.73713773488998,-0.1388089209795,0.18195475637913],[-0.064385920763016,-0.053577817976475,0.19673742353916],[-0.039814535528421,0.45792755484581,0.2010822892189]],[[0.56042385101318,0.057329975068569,0.1220235824585],[-0.019882570952177,-0.38148188591003,-0.63769042491913],[0.19377465546131,-0.041507862508297,0.14269135892391]],[[-1.0771863460541,-0.021683620288968,-0.59758329391479],[0.029082367196679,0.25126069784164,-0.21638739109039],[0.36610305309296,-0.74319350719452,0.36527469754219]],[[0.0051597687415779,-0.56469351053238,-0.90996712446213],[0.24256861209869,0.61205887794495,0.52823156118393],[0.0056538959033787,0.08353615552187,0.0027578717563301]],[[0.92848020792007,0.61437398195267,-0.23419854044914],[0.064873985946178,0.092888027429581,0.25968146324158],[-0.54201877117157,0.31514990329742,-0.5478503704071]],[[-0.36290317773819,0.71253931522369,0.7167581319809],[-0.018337987363338,-0.14974111318588,-0.20453742146492],[-0.47895684838295,-0.058016527444124,-0.058073051273823]],[[0.19267128407955,-0.23819871246815,0.30516162514687],[-0.17997650802135,0.04453169554472,0.9771209359169],[0.10436747968197,0.16833834350109,-0.69873440265656]],[[0.45066103339195,-0.60064572095871,-0.2051257789135],[0.31529748439789,-0.28314778208733,0.0024189611431211],[-0.0059280814602971,0.15398305654526,-0.24139977991581]],[[-0.74209356307983,0.32378250360489,-0.013306750915945],[0.10399772971869,1.1920249462128,-1.4640009403229],[-0.19701682031155,-0.34010174870491,0.56572020053864]]]],"nOutputPlane":1,"kW":3,"kH":3,"bias":[0.068773008882999],"nInputPlane":128}] \ No newline at end of file diff --git a/waifu2x-caffe-gui/models/srcnn.prototxt b/waifu2x-caffe-gui/models/srcnn.prototxt new file mode 100644 index 0000000..4e63aad --- /dev/null +++ b/waifu2x-caffe-gui/models/srcnn.prototxt @@ -0,0 +1,193 @@ +name: "srcnn" +layer { + name: "image_input_layer" + type: "MemoryData" + top: "input" + top: "dummy_label1" + memory_data_param { + batch_size: 1 + channels: 1 + height: 142 + width: 142 + } +} +layer { + name: "conv1_layer" + type: "Convolution" + bottom: "input" + top: "conv1" + convolution_param { + num_output: 32 + kernel_size: 3 + stride: 1 + weight_filler { + type: "gaussian" + std: 0.01 + } + } +} +layer { + name: "conv1_relu_layer" + type: "ReLU" + bottom: "conv1" + top: "conv1" + relu_param { + negative_slope: 0.1 + } +} +layer { + name: "conv2_layer" + type: "Convolution" + bottom: "conv1" + top: "conv2" + convolution_param { + num_output: 32 + kernel_size: 3 + stride: 1 + weight_filler { + type: "gaussian" + std: 0.01 + } + } +} +layer { + name: "conv2_relu_layer" + type: "ReLU" + bottom: "conv2" + top: "conv2" + relu_param { + negative_slope: 0.1 + } +} +layer { + name: "conv3_layer" + type: "Convolution" + bottom: "conv2" + top: "conv3" + convolution_param { + num_output: 64 + kernel_size: 3 + stride: 1 + weight_filler { + type: "gaussian" + std: 0.01 + } + } +} +layer { + name: "conv3_relu_layer" + type: "ReLU" + bottom: "conv3" + top: "conv3" + relu_param { + negative_slope: 0.1 + } +} +layer { + name: "conv4_layer" + type: "Convolution" + bottom: "conv3" + top: "conv4" + convolution_param { + num_output: 64 + kernel_size: 3 + stride: 1 + weight_filler { + type: "gaussian" + std: 0.01 + } + } +} +layer { + name: "conv4_relu_layer" + type: "ReLU" + bottom: "conv4" + top: "conv4" + relu_param { + negative_slope: 0.1 + } +} +layer { + name: "conv5_layer" + type: "Convolution" + bottom: "conv4" + top: "conv5" + convolution_param { + num_output: 128 + kernel_size: 3 + stride: 1 + weight_filler { + type: "gaussian" + std: 0.01 + } + } +} +layer { + name: "conv5_relu_layer" + type: "ReLU" + bottom: "conv5" + top: "conv5" + relu_param { + negative_slope: 0.1 + } +} +layer { + name: "conv6_layer" + type: "Convolution" + bottom: "conv5" + top: "conv6" + convolution_param { + num_output: 128 + kernel_size: 3 + stride: 1 + weight_filler { + type: "gaussian" + std: 0.01 + } + } +} +layer { + name: "conv6_relu_layer" + type: "ReLU" + bottom: "conv6" + top: "conv6" + relu_param { + negative_slope: 0.1 + } +} +layer { + name: "conv7_layer" + type: "Convolution" + bottom: "conv6" + top: "conv7" + convolution_param { + num_output: 1 + kernel_size: 3 + stride: 1 + weight_filler { + type: "gaussian" + std: 0.01 + } + } +} +layer { + name: "target" + type: "MemoryData" + top: "target" + top: "dummy_label2" + memory_data_param { + batch_size: 1 + channels: 1 + height: 142 + width: 142 + } + include: { phase: TRAIN } +} +layer { + name: "loss" + type: "EuclideanLoss" + bottom: "conv7" + bottom: "target" + top: "loss" + include: { phase: TRAIN } +} diff --git a/waifu2x-caffe-gui/resource.h b/waifu2x-caffe-gui/resource.h new file mode 100644 index 0000000000000000000000000000000000000000..50d8ac4d1b27ae9dc709c48df567779713b313a4 GIT binary patch literal 2542 zcmbW3-D(p-6vzK~DG0uS3*HEVnbi7q*=|A&-E2a>uvbeP6RDII8dn7oU%;0Tdf(^p z0ep&HdMoPxoYQ5uWp=WJVLG#u+28#4e9Y;;zb&-zg)PMZ89L}<$e!vfMT{Pw#`wy1 z4|ln@g$R8dV~%s2Va2}02d>SywnC0WobV~eW3~wI+=Kl7(bRo+nY(bm-KD#7f80+O z;g|ctl`D70mD~{)O3cZgbN)m}p?n)W%8Pw6KEzx8zT}yw93!giu!;U2c98H}_PE-- zwc*g#FZ7XPlDo>DaMq)BhL~c~h%e;k?16Hd(v7_p)IFj-#46(5KL3h`Gx|r)2-(Nj zPd8xiHDqsZz?LZOF&?|M+D-Sf4cKE^MPg?i`}qd!Qg=r6zH?0Xi^l97jTG^!pI7y* zv0pZ1SG9^YX6y;Gqe?92!j@i_m6AJU4EotyL3Y!;EbU+?PBiLEr8j4$JDfYaYU2rG zF6CEr@rFIF(ORV&JDfY^ePTIp{PlN=vBSADq{Zb198vF>t*R|FH+DF8ZrVg5S*nCY zNQfM1jI@`JVp+)>uPg literal 0 HcmV?d00001 diff --git a/waifu2x-caffe-gui/waifu2x-caffe-gui.vcxproj b/waifu2x-caffe-gui/waifu2x-caffe-gui.vcxproj new file mode 100644 index 0000000..b70ce78 --- /dev/null +++ b/waifu2x-caffe-gui/waifu2x-caffe-gui.vcxproj @@ -0,0 +1,116 @@ + + + + + Debug + x64 + + + Release + x64 + + + + {63FB3EFC-63B0-401C-BB54-F3A984DC233F} + Win32Proj + waifu2xcaffegui + + + + Application + true + v120 + Unicode + + + Application + false + v120 + true + Unicode + + + + + + + + + + + + + true + D:\caffe\include;D:\caffe\3rdparty\include;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v6.5\include;C:\boost_1_56_0;C:\opencv249\build\include;$(SolutionDir)rapidjson\include;$(SolutionDir)include;$(IncludePath) + D:\caffe\lib;D:\caffe\3rdparty\lib;C:\boost_1_56_0\lib64-msvc-12.0;$(LibraryPath) + + + false + D:\caffe\include;D:\caffe\3rdparty\include;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v6.5\include;C:\boost_1_56_0;C:\opencv249\build\include;$(SolutionDir)rapidjson\include;$(SolutionDir)include;$(IncludePath) + D:\caffe\lib;D:\caffe\3rdparty\lib;C:\boost_1_56_0\lib64-msvc-12.0;$(LibraryPath) + + + + + + Level3 + Disabled + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + + + Windows + true + cudnn64_65.dll;%(DelayLoadDLLs) + + + manifest.manifest + + + + + Level3 + + + MaxSpeed + true + true + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + + + Windows + false + true + true + cudnn64_65.dll;%(DelayLoadDLLs) + + + manifest.manifest + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/waifu2x-caffe-gui/waifu2x-caffe-gui.vcxproj.filters b/waifu2x-caffe-gui/waifu2x-caffe-gui.vcxproj.filters new file mode 100644 index 0000000..4282ea2 --- /dev/null +++ b/waifu2x-caffe-gui/waifu2x-caffe-gui.vcxproj.filters @@ -0,0 +1,70 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + ソース ファイル + + + ソース ファイル + + + ソース ファイル + + + ソース ファイル + + + ソース ファイル + + + + + ヘッダー ファイル + + + ヘッダー ファイル + + + ヘッダー ファイル + + + ヘッダー ファイル + + + ヘッダー ファイル + + + ヘッダー ファイル + + + ヘッダー ファイル + + + ヘッダー ファイル + + + + + リソース ファイル + + + + + リソース ファイル + + + \ No newline at end of file diff --git a/waifu2x-caffe.sln b/waifu2x-caffe.sln new file mode 100644 index 0000000..4d49403 --- /dev/null +++ b/waifu2x-caffe.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2013 +VisualStudioVersion = 12.0.31101.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "waifu2x-caffe", "waifu2x-caffe\waifu2x-caffe.vcxproj", "{7C406EE4-2309-4D4C-98BB-CB7BA865FC41}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "waifu2x-caffe-gui", "waifu2x-caffe-gui\waifu2x-caffe-gui.vcxproj", "{63FB3EFC-63B0-401C-BB54-F3A984DC233F}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {7C406EE4-2309-4D4C-98BB-CB7BA865FC41}.Debug|x64.ActiveCfg = Debug|x64 + {7C406EE4-2309-4D4C-98BB-CB7BA865FC41}.Debug|x64.Build.0 = Debug|x64 + {7C406EE4-2309-4D4C-98BB-CB7BA865FC41}.Release|x64.ActiveCfg = Release|x64 + {7C406EE4-2309-4D4C-98BB-CB7BA865FC41}.Release|x64.Build.0 = Release|x64 + {63FB3EFC-63B0-401C-BB54-F3A984DC233F}.Debug|x64.ActiveCfg = Debug|x64 + {63FB3EFC-63B0-401C-BB54-F3A984DC233F}.Debug|x64.Build.0 = Debug|x64 + {63FB3EFC-63B0-401C-BB54-F3A984DC233F}.Release|x64.ActiveCfg = Release|x64 + {63FB3EFC-63B0-401C-BB54-F3A984DC233F}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + VisualSVNWorkingCopyRoot = . + EndGlobalSection +EndGlobal diff --git a/waifu2x-caffe/Source.cpp b/waifu2x-caffe/Source.cpp new file mode 100644 index 0000000..d8319d9 --- /dev/null +++ b/waifu2x-caffe/Source.cpp @@ -0,0 +1,277 @@ +#include +#include +#include +#include +#include +#include +#include "../common/waifu2x.h" + + +// http://stackoverflow.com/questions/10167382/boostfilesystem-get-relative-path +boost::filesystem::path relativePath(const boost::filesystem::path &path, const boost::filesystem::path &relative_to) +{ + // create absolute paths + boost::filesystem::path p = boost::filesystem::absolute(path); + boost::filesystem::path r = boost::filesystem::absolute(relative_to); + + // if root paths are different, return absolute path + if (p.root_path() != r.root_path()) + return p; + + // initialize relative path + boost::filesystem::path result; + + // find out where the two paths diverge + boost::filesystem::path::const_iterator itr_path = p.begin(); + boost::filesystem::path::const_iterator itr_relative_to = r.begin(); + while (*itr_path == *itr_relative_to && itr_path != p.end() && itr_relative_to != r.end()) { + ++itr_path; + ++itr_relative_to; + } + + // add "../" for each remaining token in relative_to + if (itr_relative_to != r.end()) { + ++itr_relative_to; + while (itr_relative_to != r.end()) { + result /= ".."; + ++itr_relative_to; + } + } + + // add remaining path + while (itr_path != p.end()) { + result /= *itr_path; + ++itr_path; + } + + return result; +} + +int main(int argc, char** argv) +{ + // definition of command line arguments + TCLAP::CmdLine cmd("waifu2x reimplementation using Caffe", ' ', "1.0.0"); + + TCLAP::ValueArg cmdInputFile("i", "input_path", + "path to input image file", true, "", + "string", cmd); + + TCLAP::ValueArg cmdOutputFile("o", "output_path", + "path to output image file (when input_path is folder, output_path must be folder)", false, + "(auto)", "string", cmd); + + TCLAP::ValueArg cmdInputFileExt("l", "input_extention_list", + "extention to input image file when input_path is folder", false, "png:jpg:jpeg:tif:tiff:bmp", + "string", cmd); + + TCLAP::ValueArg cmdOutputFileExt("e", "output_extention", + "extention to output image file when output_path is (auto) or input_path is folder", false, + "png", "string", cmd); + + std::vector cmdModeConstraintV; + cmdModeConstraintV.push_back("noise"); + cmdModeConstraintV.push_back("scale"); + cmdModeConstraintV.push_back("noise_scale"); + cmdModeConstraintV.push_back("auto_scale"); + TCLAP::ValuesConstraint cmdModeConstraint(cmdModeConstraintV); + TCLAP::ValueArg cmdMode("m", "mode", "image processing mode", + false, "noise_scale", &cmdModeConstraint, cmd); + + std::vector cmdNRLConstraintV; + cmdNRLConstraintV.push_back(1); + cmdNRLConstraintV.push_back(2); + TCLAP::ValuesConstraint cmdNRLConstraint(cmdNRLConstraintV); + TCLAP::ValueArg cmdNRLevel("n", "noise_level", "noise reduction level", + false, 1, &cmdNRLConstraint, cmd); + + TCLAP::ValueArg cmdScaleRatio("s", "scale_ratio", + "custom scale ratio", false, 2.0, "double", cmd); + + TCLAP::ValueArg cmdModelPath("", "model_dir", + "path to custom model directory (don't append last / )", false, + "models", "string", cmd); + + std::vector cmdProcessConstraintV; + cmdProcessConstraintV.push_back("cpu"); + cmdProcessConstraintV.push_back("gpu"); + cmdProcessConstraintV.push_back("cudnn"); + TCLAP::ValuesConstraint cmdProcessConstraint(cmdProcessConstraintV); + TCLAP::ValueArg cmdProcess("p", "process", "process mode", + false, "gpu", &cmdProcessConstraint, cmd); + + // definition of command line argument : end + + TCLAP::Arg::enableIgnoreMismatched(); + + // parse command line arguments + try + { + cmd.parse(argc, argv); + } + catch (std::exception &e) + { + printf("G[: %s\n", e.what()); + return 1; + } + + const boost::filesystem::path input_path(boost::filesystem::absolute((cmdInputFile.getValue()))); + + std::string outputExt = cmdOutputFileExt.getValue(); + if (outputExt.length() > 0 && outputExt[0] != '.') + outputExt = "." + outputExt; + + std::vector file_paths; + if (boost::filesystem::is_directory(input_path)) // input_pathtH_Ȃ炻̃fBNgȉ̉摜t@Cꊇϊ + { + boost::filesystem::path output_path; + + if (cmdOutputFile.getValue() == "(auto)") + { + // utestvȂutest_noise_scale(Level1)(x2.000000)v݂Ȋɂ + + std::string addstr("_" + cmdMode.getValue()); + + const std::string &mode = cmdMode.getValue(); + if (mode.find("noise") != mode.npos || mode.find("auto_scale") != mode.npos) + addstr += "(Level" + std::to_string(cmdNRLevel.getValue()) + ")"; + if (mode.find("scale") != mode.npos) + addstr += "(x" + std::to_string(cmdScaleRatio.getValue()) + ")"; + + output_path = input_path.branch_path() / (input_path.stem().string() + addstr); + } + else + output_path = cmdOutputFile.getValue(); + + output_path = boost::filesystem::absolute(output_path); + + if (!boost::filesystem::exists(output_path)) + { + if (!boost::filesystem::create_directory(output_path)) + { + printf("G[: o̓tH_u%sv̍쐬Ɏs܂\n", output_path.string().c_str()); + return 1; + } + } + + std::vector extList; + { + // input_extention_list𕶎̔zɂ + + typedef boost::char_separator char_separator; + typedef boost::tokenizer tokenizer; + + char_separator sep(":", "", boost::drop_empty_tokens); + tokenizer tokens(cmdInputFileExt.getValue(), sep); + + for (tokenizer::iterator tok_iter = tokens.begin(); tok_iter != tokens.end(); ++tok_iter) + extList.push_back("." + *tok_iter); + } + + // ϊ摜̓́Ao̓pX擾 + const auto func = [&extList, &input_path, &output_path, &outputExt, &file_paths](const boost::filesystem::path &path) + { + BOOST_FOREACH(const boost::filesystem::path& p, std::make_pair(boost::filesystem::recursive_directory_iterator(path), + boost::filesystem::recursive_directory_iterator())) + { + if (boost::filesystem::is_directory(p)) + { + const auto out_relative = relativePath(p, input_path); + const auto out_absolute = output_path / out_relative; + + if (!boost::filesystem::exists(out_absolute)) + { + if (!boost::filesystem::create_directory(out_absolute)) + { + printf("G[: o̓tH_u%sv̍쐬Ɏs܂\n", out_absolute.string().c_str()); + return false; + } + } + } + else if (std::find(extList.begin(), extList.end(), p.extension().string()) != extList.end()) + { + const auto out_relative = relativePath(p, input_path); + const auto out_absolute = output_path / out_relative; + + const auto out = (out_absolute.branch_path() / out_absolute.stem()).string() + outputExt; + + file_paths.emplace_back(p.string(), out); + } + } + + return true; + }; + + if (!func(input_path)) + return 1; + } + else + { + std::string outputFileName = cmdOutputFile.getValue(); + + if (outputFileName == "(auto)") + { + // umiku_small.pngvȂumiku_small(noise_scale)(Level1)(x2.000000).pngv݂Ȋɂ + + outputFileName = cmdInputFile.getValue(); + const auto tailDot = outputFileName.find_last_of('.'); + outputFileName.erase(tailDot, outputFileName.length()); + outputFileName = outputFileName + "(" + cmdMode.getValue() + ")"; + std::string &mode = cmdMode.getValue(); + if (mode.find("noise") != mode.npos || mode.find("auto_scale") != mode.npos) + outputFileName = outputFileName + "(Level" + std::to_string(cmdNRLevel.getValue()) + ")"; + if (mode.find("scale") != mode.npos) + outputFileName = outputFileName + "(x" + std::to_string(cmdScaleRatio.getValue()) + ")"; + outputFileName += outputExt; + } + + file_paths.emplace_back(cmdInputFile.getValue(), outputFileName); + } + + std::vector errors; + + const eWaifu2xError ret = waifu2x(argc, argv, file_paths, cmdMode.getValue(), cmdNRLevel.getValue(), cmdScaleRatio.getValue(), cmdModelPath.getValue(), cmdProcess.getValue(), errors); + if (ret != eWaifu2xError_OK || errors.size() > 0) + { + switch (ret) + { + case eWaifu2xError_InvalidParameter: + printf("G[: p[^sł\n"); + break; + case eWaifu2xError_FailedOpenModelFile: + printf("G[: ft@CJ܂ł\n"); + break; + case eWaifu2xError_FailedParseModelFile: + printf("G[: ft@CĂ܂\n"); + break; + case eWaifu2xError_FailedConstructModel: + printf("G[: lbg[N̍\zɎs܂\n"); + break; + } + + for (const auto &ep : errors) + { + const auto &fp = ep.first; + + switch (ep.second) + { + case eWaifu2xError_InvalidParameter: + printf("G[: p[^sł\n"); + break; + case eWaifu2xError_FailedOpenInputFile: + printf("G[: ͉摜u%svJ܂ł\n", fp.first.c_str()); + break; + case eWaifu2xError_FailedOpenOutputFile: + printf("G[: o͉摜u%sv߂܂ł\n", fp.second.c_str()); + break; + case eWaifu2xError_FailedProcessCaffe: + printf("G[: ԏɎs܂\n"); + break; + } + } + + printf("ϊɎs܂\n"); + return 1; + } + + return 0; +} diff --git a/waifu2x-caffe/models/noise1_model.json b/waifu2x-caffe/models/noise1_model.json new file mode 100644 index 0000000..418d653 --- /dev/null +++ b/waifu2x-caffe/models/noise1_model.json @@ -0,0 +1 @@ +[{"weight":[[[[-0.0074667679145932,-0.11989582329988,-0.079815961420536],[-0.0022693427745253,-0.032127153128386,0.04622845724225],[-0.00080419890582561,0.067840985953808,0.12698559463024]]],[[[0.066826343536377,0.020378602668643,-0.023073747754097],[0.0023027174174786,-0.010793132707477,0.028627749532461],[-0.028349900618196,-0.046103361994028,-0.011497860774398]]],[[[0.073378227651119,0.014924479648471,-0.020094357430935],[-0.00089756853412837,-0.022391842678189,-0.059255294501781],[-0.0056277406401932,-0.040375951677561,0.079751238226891]]],[[[0.0035967396106571,0.0032893491443247,0.15076979994774],[-0.0099694319069386,-0.14968346059322,0.0079760691151023],[0.0012238457566127,-0.0092173339799047,-0.00032873675809242]]],[[[0.053432378917933,-0.015831243246794,-0.0008611996890977],[-0.0034333593212068,0.047888554632664,0.019786877557635],[0.2025838047266,-0.040484774857759,0.0041747083887458]]],[[[-0.078985191881657,-0.1103592440486,0.019772831350565],[-0.1140488088131,-0.009413218125701,-0.0071435151621699],[-0.002790556056425,-0.13578999042511,0.013786068186164]]],[[[0.1063314601779,0.085902258753777,0.012267952784896],[-0.1476461738348,-0.051417220383883,0.056973952800035],[-0.026913050562143,-0.065258860588074,0.030904024839401]]],[[[-0.082549341022968,-0.07258252799511,0.0037937799934298],[0.016132665798068,0.14522151648998,0.077938258647919],[0.013762203976512,-0.012502274475992,-0.091449968516827]]],[[[0.090391524136066,0.086528740823269,0.025827322155237],[-0.04997207224369,-0.085557281970978,-0.060509160161018],[0.0048256097361445,-0.045181650668383,0.027537787333131]]],[[[-0.041959032416344,0.052510667592287,0.10084590315819],[0.073166765272617,0.13226634263992,0.1008387580514],[-0.010600212961435,-0.026831766590476,0.17054484784603]]],[[[0.016487104818225,-0.060531746596098,0.018943434581161],[0.10748887807131,0.0019070147536695,0.0067211408168077],[-0.035267155617476,-0.072520546615124,0.012363818474114]]],[[[0.037382192909718,0.035442735999823,-0.062087837606668],[0.014112187549472,-0.025633532553911,-0.017047856003046],[-0.042123444378376,-0.015116676688194,0.073986157774925]]],[[[0.11952974647284,0.020328732207417,-0.068428784608841],[0.032844394445419,0.06730068475008,0.019899640232325],[-0.042413767427206,-0.028470773249865,-0.014138595201075]]],[[[0.015106830745935,-0.0071813743561506,-0.0016012381529436],[-0.025804197415709,-0.017905425280333,-0.027894143015146],[0.0010555130429566,0.064388744533062,-0.0101168891415]]],[[[-0.042344223707914,-0.063498675823212,-0.0056388541124761],[-0.097910925745964,-0.11247319728136,0.099358670413494],[0.059795599430799,0.12483971565962,0.048238258808851]]],[[[0.01881916821003,-0.0097370883449912,-0.0084061389788985],[-0.017241546884179,0.088133290410042,-0.01098211761564],[-0.042257227003574,0.020037248730659,-0.051767989993095]]],[[[-0.23555245995522,-0.094180464744568,-0.0047501609660685],[0.0095892669633031,-0.11213900148869,-0.11405062675476],[-0.09172485023737,0.01073582470417,0.062072742730379]]],[[[-0.10318392515182,-0.0083689363673329,0.11419752985239],[0.023371797055006,0.1017799898982,-0.12658263742924],[-0.0016788971843198,-0.010738344863057,-0.0032234634272754]]],[[[-0.012621490284801,0.019803274422884,-0.0076490067876875],[0.042255390435457,-0.04468235373497,-0.011769304983318],[-0.27657300233841,0.0053470204584301,0.01874753460288]]],[[[-0.0016901042545214,-0.010555851273239,0.015409086830914],[-0.22741957008839,0.13615934550762,-0.019414460286498],[-0.016477113589644,0.097280964255333,0.02137678861618]]],[[[-0.037055015563965,0.038769394159317,0.062909014523029],[-0.03945279866457,0.00013122048403602,0.010212319903076],[0.031901840120554,-0.026246411725879,-0.0031056592706591]]],[[[-0.025502068921924,-0.027480021119118,0.0030768513679504],[0.02919352427125,-0.0091610085219145,0.013116816990077],[0.036323945969343,0.0038715221453458,-0.0149250254035]]],[[[-0.012199000455439,-0.032022673636675,0.0048950128257275],[0.017813507467508,0.013781835325062,0.14838464558125],[-0.027710385620594,0.042968463152647,-0.026438577100635]]],[[[-0.040446002036333,-0.0046125617809594,0.011358274146914],[-0.052072111517191,-0.056174792349339,-0.024119710549712],[0.036380648612976,-0.035405196249485,0.16142618656158]]],[[[0.02415350265801,-0.021667283028364,-0.0025883193593472],[-0.023547617718577,0.030804188922048,0.0052515980787575],[0.0023424448445439,-0.011398816481233,-0.0068765529431403]]],[[[0.013367978855968,0.054771151393652,-0.088157489895821],[-0.062158178538084,0.026363156735897,-0.0028129501733929],[0.067042358219624,0.016135955229402,-0.017508944496512]]],[[[-0.015380336903036,0.013226700015366,-0.0022526532411575],[0.21472914516926,-0.18671102821827,-0.0082962047308683],[0.15464971959591,-0.18130087852478,0.0064040920697153]]],[[[0.022678345441818,-0.13393470644951,0.110047288239],[-0.090421341359615,-0.081317372620106,-0.016643557697535],[-3.8839880289743e-05,0.095102958381176,0.094289094209671]]],[[[-0.014621589332819,-0.096882492303848,-0.06190100684762],[-0.030023254454136,-0.12052262574434,-0.056640651077032],[0.0014213648391888,0.0070757679641247,-0.067551165819168]]],[[[0.029991453513503,0.083336390554905,-0.1568292081356],[0.057529184967279,0.039771430194378,-0.030057929456234],[-0.0055201714858413,-0.011412210762501,-0.0019596216734499]]],[[[-0.0012628188123927,-0.025462843477726,0.017543729394674],[-0.0090248547494411,-0.013478326611221,-0.10182315856218],[-0.05071709677577,0.15121284127235,0.032504301518202]]],[[[0.13398376107216,0.071720711886883,-0.003142527770251],[-0.051550403237343,0.026052311062813,-0.15836364030838],[-0.00067586684599519,0.025874463841319,-0.046671573072672]]]],"nOutputPlane":32,"kW":3,"kH":3,"bias":[-0.0062757870182395,-0.016833353787661,-0.032047137618065,-0.010524915531278,-0.065466277301311,0.045012503862381,0.015970313921571,-0.01250038575381,-0.0054268250241876,-0.068715788424015,-0.010761457495391,-0.0063506853766739,-0.091411486268044,-0.0040450585074723,0.0046170689165592,-0.0074411304667592,0.029893616214395,-0.007930682040751,0.033151175826788,-0.0072863432578743,-0.045242447406054,-0.035132441669703,-0.11946002393961,-0.0050082602538168,-0.008012292906642,-0.019822647795081,-0.0087625747546554,0.018337551504374,0.053679529577494,0.0032701934687793,-0.015723254531622,-0.0061082425527275],"nInputPlane":1},{"weight":[[[[0.053702257573605,0.14440612494946,-0.046290442347527],[-0.068093486130238,0.0048292609862983,0.076489880681038],[0.081238985061646,-0.03095537237823,0.033253755420446]],[[-0.00041858674376272,-0.21202154457569,0.087565369904041],[-0.045868024230003,0.0071628033183515,-0.11375752091408],[0.050902992486954,-0.093261010944843,-0.023127172142267]],[[0.061064776033163,0.050562046468258,-0.010818547569215],[-0.010522090829909,-0.025966819375753,0.060190550982952],[-0.041034247726202,-0.031853001564741,-0.038690838962793]],[[-0.050070054829121,-0.015658965334296,0.086265690624714],[-0.0045500406995416,-0.099796526134014,-0.0028983436059207],[-0.049260064959526,0.018180627375841,-0.044322401285172]],[[-0.01864935643971,-0.039296224713326,0.019330240786076],[0.014743600040674,0.016375934705138,-0.12028431147337],[-0.0095001487061381,-0.091491162776947,0.15061047673225]],[[-0.003822596045211,-0.14063477516174,-0.16872185468674],[0.0070645925588906,0.14336431026459,-0.036964368075132],[-0.026726502925158,0.078854769468307,0.019502462819219]],[[-0.030266596004367,0.078931823372841,-0.1690549403429],[-0.02180896513164,0.28190088272095,0.019310798496008],[0.016119176521897,0.070139907300472,0.075553350150585]],[[-0.069418132305145,0.013735245913267,0.031420134007931],[0.031989119946957,0.090091414749622,0.055730201303959],[0.0074480040930212,-0.077351927757263,-0.23445020616055]],[[0.011215079575777,-0.023107562214136,-0.0090603400021791],[-0.03183676674962,-0.18091826140881,-0.13959108293056],[0.059451911598444,0.095245353877544,0.016944766044617]],[[0.12749017775059,0.043143633753061,0.084004811942577],[-0.14739121496677,0.076428234577179,0.056312099099159],[-0.13583138585091,-0.063200183212757,-0.010450660251081]],[[0.011258550919592,-0.10731072723866,0.0093221617862582],[0.035708975046873,0.017615562304854,0.070240639150143],[-0.060765147209167,0.031345520168543,0.032884877175093]],[[0.011466431431472,-0.082900412380695,-0.050853289663792],[0.10135446488857,-0.075209125876427,-0.10209836810827],[0.088299632072449,-0.03303262591362,0.053262125700712]],[[0.05560927093029,-0.082157261669636,-0.015296241268516],[0.013563804328442,0.043685294687748,-0.044811457395554],[-0.0062550739385188,-0.12595970928669,0.13251988589764]],[[0.11922779679298,0.16654996573925,-0.046278581023216],[0.074874974787235,-0.069590926170349,-0.051729876548052],[-0.10492930561304,-0.028014773502946,0.062648884952068]],[[-0.013140349648893,-0.09910673648119,-0.037714060395956],[0.05294505879283,-0.067276790738106,-0.083593040704727],[0.075705654919147,0.0030031870119274,-0.086355097591877]],[[-0.066145859658718,-0.061093874275684,0.049117039889097],[-0.063255898654461,0.0080125415697694,-0.13610917329788],[0.016843186691403,0.018687529489398,0.086578443646431]],[[-0.04145971685648,0.023482324555516,-0.051742780953646],[0.014658771455288,0.051718816161156,-0.040108576416969],[0.020338384434581,0.1217348575592,-0.23693400621414]],[[-0.02784950658679,-0.077936172485352,-0.061241995543242],[-0.034352831542492,0.0736253708601,0.021132837980986],[0.025011874735355,0.035913575440645,-0.17466987669468]],[[-0.019109584391117,0.1099843159318,-0.17811785638332],[0.084924317896366,0.0887361317873,0.26935496926308],[0.06302373111248,0.092296034097672,-0.070987679064274]],[[0.029453780502081,0.017451686784625,-0.07907123118639],[-0.079193212091923,-0.017145333811641,-0.35123404860497],[-0.073643445968628,0.034315276890993,0.017255634069443]],[[-0.13115760684013,0.075910992920399,0.096219420433044],[0.076361693441868,-0.094566859304905,0.011558446101844],[0.017795898020267,-0.052414622157812,-0.024996016174555]],[[0.022212693467736,0.060108661651611,0.022290486842394],[0.015839733183384,-0.088760793209076,-0.066206023097038],[0.083107590675354,0.12000172585249,-0.11972424387932]],[[0.028220146894455,-0.030955860391259,-0.0075807822868228],[-0.040754612535238,0.0033301743678749,0.093067824840546],[-0.12145581841469,-0.091040827333927,-0.038033675402403]],[[0.09247861802578,0.11120995134115,0.052451658993959],[-0.1379332691431,0.079330928623676,-0.010425542481244],[-0.079267904162407,-0.0033330018632114,-0.053186986595392]],[[0.062254548072815,0.13502866029739,-9.6560461315676e-06],[-0.042590506374836,0.061218064278364,-0.026546193286777],[-0.084781311452389,-0.09706124663353,0.048377975821495]],[[0.073186308145523,0.031176529824734,0.12097599357367],[0.099857367575169,0.018740871921182,-0.14898878335953],[-0.090261340141296,0.046546641737223,0.087060652673244]],[[-0.067178092896938,-0.15445363521576,0.1542451530695],[0.034032490104437,0.11199386417866,-0.029591018334031],[0.029871368780732,0.095241419970989,-0.047457963228226]],[[-0.02363334223628,-0.021445069462061,0.02070739865303],[-0.042685136198997,-0.074911527335644,-0.082497708499432],[0.049644391983747,0.12011835724115,-0.0089452369138598]],[[0.036579292267561,-0.0960688367486,-0.06078752502799],[0.07529678940773,-0.037452064454556,-0.13826410472393],[0.0035490305162966,0.1154477968812,0.031512781977654]],[[-0.012650000862777,0.10668600350618,0.047213613986969],[0.030496256425977,-0.12968571484089,0.13253669440746],[-0.10710181295872,0.054615780711174,-0.068995371460915]],[[0.14860017597675,0.10264283418655,-0.020089359954],[-0.11031942814589,-0.042363803833723,0.060371495783329],[-0.046290639787912,-0.11475213617086,0.080126784741879]],[[-0.018519353121519,-0.025674281641841,-0.0058521241880953],[-0.10932360589504,-0.035021252930164,-0.0075502246618271],[-0.0027681167703122,0.084904544055462,0.056288912892342]]],[[[-0.21111880242825,-0.019201574847102,-0.0012075921986252],[0.0028703699354082,-0.027324177324772,-0.068990983068943],[0.1373860090971,0.18804961442947,-0.063887812197208]],[[-0.018591908738017,0.10143092274666,0.058607574552298],[0.018866701051593,-0.00045608973596245,-0.051582489162683],[0.01718769595027,-0.063842289149761,-0.13645806908607]],[[-0.10328754037619,0.10941293090582,0.026256173849106],[0.085635162889957,0.071194238960743,0.0156259983778],[0.012444992549717,-0.095490962266922,-0.093523196876049]],[[-0.031996633857489,-0.028022611513734,0.013554720208049],[0.011675723828375,0.25808727741241,-0.029962422326207],[-0.23584730923176,-0.05081770196557,-0.017502961680293]],[[0.073450893163681,-0.11369746178389,-0.20026232302189],[-0.053438935428858,0.040015798062086,-0.088188990950584],[-0.034980557858944,-0.022079793736339,0.027498196810484]],[[0.039388064295053,0.095711894333363,0.11397074908018],[0.089088827371597,0.16324202716351,0.10442911833525],[-0.014426111243665,0.14359393715858,0.13822653889656]],[[0.030974084511399,0.12678597867489,-0.052444700151682],[0.028273705393076,-0.10241552442312,0.12344753742218],[-0.060830883681774,-0.045702110975981,-0.048394180834293]],[[0.16279965639114,-0.13827858865261,-0.1080831438303],[-0.067162811756134,-0.0303760394454,-0.0071624740958214],[0.0030869108159095,0.10446780920029,0.067978262901306]],[[-0.080100253224373,0.12636168301105,0.00042116199620068],[0.0059738480485976,-0.030527813360095,0.23303154110909],[0.03619821369648,-0.06262918561697,-0.15437729656696]],[[-0.21795627474785,-0.048261430114508,0.072411730885506],[-0.22055926918983,-0.15493682026863,-0.2087454199791],[-0.094540968537331,-0.15431813895702,0.11478351056576]],[[-0.039804574102163,-0.040199980139732,0.10932786762714],[0.080737471580505,0.014533442445099,-0.20363013446331],[-0.064316861331463,0.15237493813038,-0.098883286118507]],[[-0.012557586655021,0.024597898125648,0.10267408192158],[-0.035030916333199,0.025807593017817,-0.08838352560997],[0.031149936839938,0.058068092912436,-0.086424306035042]],[[-0.033602010458708,-0.014936360530555,-0.019010221585631],[-0.05048018693924,0.11090000718832,-0.21699190139771],[0.027022894471884,0.032309200614691,-0.064894996583462]],[[0.15850129723549,-0.021255576983094,-0.22871761023998],[-0.068320192396641,0.094327531754971,0.043829172849655],[-0.010271624661982,0.068273395299911,-0.031565830111504]],[[0.041134811937809,-0.034815069288015,0.037898804992437],[-0.084671579301357,0.057622030377388,-0.025522047653794],[-0.024645395576954,0.053150549530983,-0.023376734927297]],[[0.033716216683388,0.074904456734657,0.01938958466053],[-0.067937709391117,-0.1097392141819,0.099473655223846],[0.038005229085684,-0.022070355713367,-0.062804721295834]],[[0.14013542234898,0.022796876728535,0.11061204224825],[0.081843212246895,0.16164870560169,0.020421545952559],[0.10660140216351,0.17000731825829,0.1045433357358]],[[0.034177545458078,0.018231865018606,-0.03016253747046],[0.08045868575573,-0.14612989127636,-0.052486836910248],[-0.088408827781677,0.11723208427429,0.051861930638552]],[[-0.040426108986139,0.16992503404617,0.23997513949871],[0.014555225148797,-0.0089360512793064,0.041041377931833],[0.01673979125917,0.040938500314951,0.0087521830573678]],[[-0.05845195800066,-0.16550029814243,-0.014081285335124],[0.059289038181305,-0.11065159738064,0.060309343039989],[-0.076137460768223,0.025826320052147,0.049203339964151]],[[0.02387853525579,0.038667492568493,-0.083495765924454],[0.059744849801064,-0.0097226500511169,0.046862967312336],[0.03391033783555,-0.13014334440231,-0.0018066670745611]],[[-0.058541916310787,0.051956281065941,-0.013032741844654],[-0.055798709392548,-0.00062745588365942,-0.051451310515404],[-0.0018708184361458,0.076884724199772,0.040007263422012]],[[-0.098769165575504,-0.0052763898856938,0.012511210516095],[-0.093727350234985,0.078725025057793,-0.1173053830862],[0.027521256357431,-0.0875099375844,-0.06244682893157]],[[-0.09208307415247,0.032991636544466,-0.10560473799706],[0.058766536414623,0.0017468783771619,0.042576774954796],[-0.10485351085663,0.089013487100601,-0.029508460313082]],[[0.048070766031742,-0.012006733566523,-0.01919062808156],[-0.10833648592234,-0.014882734045386,0.13630998134613],[0.015976076945662,0.0029999536927789,-0.041981395334005]],[[-0.032554440200329,0.030483411625028,-0.010139293037355],[0.051284082233906,0.02820104546845,0.023042613640428],[0.076706975698471,-0.11213330924511,-0.026947144418955]],[[0.025820488110185,0.1606320142746,-0.027060452848673],[-0.042010080069304,0.018121691420674,-0.016461161896586],[0.034056659787893,-0.036947909742594,0.028723996132612]],[[-0.039055734872818,-0.040419731289148,-0.018961604684591],[-0.040920618921518,-0.022987872362137,0.12228982150555],[-0.018990097567439,0.031174622476101,0.035607203841209]],[[0.11534179747105,0.063564524054527,0.045798059552908],[0.19875334203243,0.059065837413073,0.036219105124474],[0.13123446702957,0.3367979824543,0.25577196478844]],[[-0.017107607796788,-0.084945425391197,0.05040967091918],[0.02580445073545,-0.043939374387264,0.0022932549472898],[0.13486610352993,-0.036483611911535,0.00019660129328258]],[[-0.026220435276628,-0.19290652871132,0.13322547078133],[0.13814528286457,0.089889965951443,-0.028987118974328],[-0.044936951249838,-0.0038634929805994,-0.072611838579178]],[[0.025414193049073,-0.016635032370687,-0.04975775256753],[0.16323831677437,0.0475860722363,0.076471194624901],[-2.1552228645305e-05,-0.068376943469048,-0.084096536040306]]],[[[0.070461004972458,0.00747777428478,-0.094140194356441],[0.072256803512573,0.049599226564169,-0.049402572214603],[0.018357131630182,-0.10170252621174,0.0009885182371363]],[[-0.097163058817387,0.018066277727485,0.038560345768929],[0.0024195518344641,-0.13242021203041,0.13753728568554],[-0.044143252074718,-0.002495228080079,0.078225523233414]],[[-0.052310016006231,0.07257516682148,-0.0079403202980757],[0.055705990642309,0.011389104649425,-0.014931100420654],[-0.25325164198875,-0.10952460020781,0.1294174939394]],[[-0.085253849625587,0.10158970952034,0.053146742284298],[-0.020468425005674,0.15833550691605,0.081368871033192],[-0.27109783887863,-0.16305270791054,0.14068457484245]],[[0.10708320885897,-0.0256382599473,0.10259607434273],[-0.30471184849739,0.10322521626949,-0.051377333700657],[-0.0024189618416131,-0.02225337177515,0.10071215778589]],[[0.033727634698153,-0.063066974282265,0.093226529657841],[0.12973745167255,-0.061643086373806,-0.027116749435663],[0.0029055301565677,0.0261056330055,-0.14606781303883]],[[0.077767252922058,-0.10465953499079,-0.19808994233608],[-0.18153481185436,-0.0975506529212,0.074341900646687],[-0.012354519218206,0.0076559847220778,-0.18328692018986]],[[-0.050939403474331,0.078699462115765,-0.099370732903481],[-0.094739459455013,0.099949389696121,-0.059934720396996],[0.084166042506695,0.10027031600475,-0.12265129387379]],[[-0.11525039374828,0.2712709903717,0.10520764440298],[0.084244564175606,-0.014211812987924,0.23079231381416],[-0.16168130934238,0.11724095791578,0.19208545982838]],[[0.042041823267937,0.032207664102316,-0.03094893693924],[0.096814565360546,-0.092217393219471,-0.18854637444019],[0.03224915266037,0.11405126005411,0.00038500808295794]],[[-0.081001363694668,0.080480195581913,0.0071424916386604],[-0.057791024446487,-0.068957671523094,0.031861089169979],[-0.015150104649365,0.02554901689291,-0.011541473679245]],[[-0.018216086551547,0.18035607039928,-0.040917716920376],[-0.094466015696526,0.085870109498501,-0.009235143661499],[-0.076783679425716,-0.019259320572019,-0.052117884159088]],[[-0.16993939876556,0.23494680225849,-0.31528395414352],[-0.03061524964869,-0.1476059705019,0.024097023531795],[-0.068100117146969,-0.054812014102936,0.11022409051657]],[[-0.028310453519225,0.18304312229156,0.039410062134266],[-0.091525211930275,-0.034372128546238,-0.13051252067089],[0.047263529151678,-0.044675949960947,-0.051111869513988]],[[0.08220724016428,-0.028499022126198,-0.22314015030861],[-0.14277562499046,0.08501847833395,0.22232031822205],[0.083753816783428,-0.22374302148819,-0.040896847844124]],[[0.073113396763802,0.0012609352124855,-0.026623548939824],[0.027312887832522,-0.15986543893814,-0.1027470305562],[-0.010111324489117,-0.15288913249969,0.19362942874432]],[[-0.042358629405499,-0.022196147590876,0.00097857438959181],[0.16870205104351,0.032988309860229,0.024048756808043],[-0.11899833381176,-0.02168189547956,-0.028024701401591]],[[0.01415016874671,0.10070348531008,0.015881430357695],[-0.19120560586452,-0.2843020260334,-0.10700237005949],[-0.17786125838757,-0.059116072952747,-0.016952250152826]],[[-0.077061489224434,-0.14538861811161,0.076011188328266],[-0.074023365974426,0.004764405079186,-0.049159359186888],[-0.068173013627529,0.074183419346809,-0.15442299842834]],[[0.0056603262200952,0.23447546362877,-0.035954814404249],[-0.058966819196939,-0.0684514939785,-0.22469474375248],[-0.036328170448542,-0.1000239700079,-0.24493008852005]],[[-0.043461382389069,-0.059579815715551,-0.03028723038733],[-0.012878817506135,0.14583258330822,-0.010348811745644],[-0.15588970482349,0.14951571822166,0.035988751798868]],[[0.018541118130088,-0.070688046514988,-0.061140596866608],[0.14898458123207,-0.035542536526918,0.028741337358952],[0.015382407233119,0.23111797869205,-0.15279117226601]],[[-0.098148681223392,-0.11647016555071,-0.16609871387482],[0.046103116124868,-0.094047285616398,0.035943705588579],[0.054881427437067,0.0029397381003946,0.15297345817089]],[[-0.072992324829102,-0.16823482513428,0.10345964878798],[0.097480364143848,-0.16536523401737,0.076803117990494],[-0.12571494281292,0.14421708881855,-0.22900199890137]],[[-0.15179792046547,0.09921620041132,0.047648463398218],[-0.052929442375898,-0.1103044077754,0.18682320415974],[-0.20251193642616,0.13899283111095,0.187829002738]],[[-0.18220935761929,0.0059062717482448,0.02751737087965],[0.030036399140954,-0.21882861852646,-0.072398968040943],[-0.075810730457306,0.0021602823399007,-0.15268830955029]],[[-0.014561155810952,-0.19427265226841,-0.084036082029343],[0.13602651655674,-0.23924250900745,-0.072544321417809],[-0.1223399490118,-0.092378549277782,-0.0059849247336388]],[[-0.28598794341087,0.13447369635105,-0.10344582796097],[-0.13777530193329,0.0062287580221891,-0.13586214184761],[-0.057437036186457,-0.056636840105057,0.25652015209198]],[[0.045029256492853,-0.010255376808345,-0.054107312113047],[-0.051840227097273,0.1872626543045,0.012626207433641],[0.1127716973424,-0.035589307546616,0.11592037975788]],[[0.086667090654373,-0.22050358355045,0.0088738454505801],[0.079623818397522,-0.09775397926569,0.071815863251686],[-0.17182548344135,-0.012501268647611,-0.17698876559734]],[[-0.0175292622298,-0.099204510450363,0.0082684913650155],[-0.20198698341846,0.014617180451751,0.080049097537994],[-0.020895464345813,-0.25703591108322,-0.060607548803091]],[[-0.0014852962922305,-0.045103948563337,-0.090784586966038],[-0.074947483837605,-0.028045503422618,-0.23149318993092],[0.14287286996841,-0.11156488955021,-0.018672777339816]]],[[[0.0034965230152011,-0.036654282361269,0.062710046768188],[-0.071187503635883,-0.39172500371933,-0.072756811976433],[-0.090024597942829,-0.036435704678297,-0.045542020350695]],[[-0.091710478067398,0.028980638831854,0.051419701427221],[0.05195652320981,-0.19387385249138,0.056210231035948],[-0.13196650147438,0.012290693819523,0.13362681865692]],[[0.028222195804119,0.072319857776165,0.02240514755249],[-0.050804369151592,-0.063872821629047,-0.13732312619686],[-0.032743141055107,-0.10776176303625,0.19205757975578]],[[0.081328719854355,0.089411035180092,0.037207525223494],[0.053963001817465,-0.30140376091003,0.20045602321625],[0.03331021592021,-0.19628700613976,0.030692489817739]],[[-0.083560891449451,0.050842978060246,0.066715955734253],[-0.040271386504173,-0.0068424390628934,0.08712637424469],[0.044896401464939,0.015169350430369,0.019166326150298]],[[0.094399243593216,-0.096980206668377,-0.055528577417135],[-0.14169535040855,0.043262224644423,-0.10127758234739],[0.18106359243393,-0.17317089438438,0.17488990724087]],[[0.02125839702785,-0.01469315867871,-0.015720745548606],[-0.20364458858967,-0.20709012448788,-0.0014837373746559],[0.12408138811588,0.089738875627518,0.091197185218334]],[[-0.0036937452387065,0.049573723226786,-0.028554519638419],[-0.1302485615015,-0.079460762441158,-0.042421959340572],[-0.041235484182835,-0.26991629600525,-0.07811314612627]],[[0.097271256148815,-0.13882192969322,-0.01905557140708],[-0.015343194827437,-0.023343468084931,-0.23786389827728],[0.037238486111164,-0.033209655433893,0.017554737627506]],[[0.050873663276434,-0.027669742703438,-0.020818449556828],[0.10650166124105,-0.079880833625793,0.055093213915825],[-0.083225138485432,-0.072392649948597,-0.097662918269634]],[[0.086486741900444,-0.15011118352413,-0.012198504991829],[-0.047423865646124,-0.058002185076475,0.057954858988523],[0.20328529179096,-0.0087461192160845,-0.12455806881189]],[[0.13920494914055,0.0059766033664346,-0.0024831367190927],[-0.17201478779316,-0.1458448022604,0.063344426453114],[0.020224753767252,-0.031965412199497,-0.033461458981037]],[[0.047848250716925,0.10346299409866,-0.12355580180883],[-0.090633846819401,0.013822429813445,0.0338887386024],[0.0040481328032911,-0.27671790122986,0.02331268787384]],[[-0.1003732830286,-0.081232525408268,0.051084086298943],[-0.06402675062418,-0.01467393245548,-0.070554479956627],[0.047016631811857,0.054931584745646,0.045937303453684]],[[-0.019634883850813,0.067928232252598,-0.039393052458763],[0.068473033607006,-0.067013822495937,-0.24728465080261],[-0.048071447759867,0.034633744508028,0.17196674644947]],[[-0.10091563314199,-0.063936017453671,-0.092998348176479],[-0.016026748344302,0.02225355245173,0.021757882088423],[0.29716446995735,-0.027252890169621,0.00032078239019029]],[[0.024201763793826,0.071166068315506,-0.069349221885204],[-0.13512814044952,-0.031825203448534,-0.10841055959463],[0.14362046122551,-0.13829199969769,-0.060188010334969]],[[0.02291352301836,-0.043563593178988,0.011182989925146],[-0.17197051644325,0.011210376396775,-0.021170131862164],[0.044622354209423,-0.15450286865234,-0.13192240893841]],[[0.11363143473864,0.046530809253454,-0.26777479052544],[-0.10409428179264,-0.11166112869978,0.050709091126919],[-0.045974623411894,0.039327081292868,-0.079979613423347]],[[0.024544043466449,0.051577486097813,-0.1441446095705],[0.041251618415117,-0.010435595177114,-0.15815816819668],[-0.069978505373001,-0.011779132299125,-0.085597790777683]],[[0.017344892024994,0.015725007280707,0.053712125867605],[0.13893119990826,-0.03233864530921,0.028193719685078],[-0.014832536689937,-0.054863154888153,-0.18850047886372]],[[-0.0049419268034399,-0.1726720482111,0.10987021774054],[-0.063991948962212,0.080403782427311,-0.050485245883465],[0.1970072388649,0.068631999194622,-0.038129530847073]],[[-0.049344353377819,0.017753472551703,-0.023813314735889],[0.0069002127274871,-0.15068651735783,0.022110743448138],[0.060406718403101,-0.078086398541927,0.040726196020842]],[[-0.049106556922197,-0.13151583075523,0.022225955501199],[-0.12888446450233,-0.22511728107929,-0.074897170066833],[-0.013092041015625,0.075545348227024,-0.033849466592073]],[[-0.034058190882206,0.035639207810163,0.1204901188612],[0.11167114973068,-0.14547477662563,-0.12847098708153],[-0.071863010525703,0.10479939728975,0.040664218366146]],[[0.057251591235399,-0.050431948155165,0.055490836501122],[0.024798268452287,0.015062159858644,-0.24787528812885],[-0.05114683881402,0.047476585954428,0.039747174829245]],[[0.011842027306557,-0.29921147227287,0.065947905182838],[-0.0053443098440766,-0.17002348601818,-0.14082379639149],[-0.0098517015576363,0.013060874305665,-0.18193438649178]],[[-0.035430073738098,0.040214970707893,0.10295760631561],[0.046872816979885,-0.22417099773884,-0.18954491615295],[0.059769067913294,0.047409851104021,0.12129664421082]],[[-0.23394963145256,-0.042348276823759,-0.10919632762671],[-0.11985222250223,-0.14735481142998,0.091248050332069],[0.060191594064236,0.13744492828846,-0.062422018498182]],[[0.024748157709837,-0.065420150756836,0.076859571039677],[-0.0088349087163806,0.010549022816122,0.026926051825285],[-0.061610501259565,-0.17811833322048,-0.063916906714439]],[[-0.0015805811854079,0.013238179497421,0.063332661986351],[-0.015730427578092,-0.12258049100637,-0.15158738195896],[0.0032990218605846,-0.031831853091717,-0.056992724537849]],[[-0.074712932109833,-0.059144023805857,-0.013170326128602],[0.019694907590747,0.053964491933584,0.050093717873096],[0.008343162946403,-0.028842434287071,0.052146643400192]]],[[[0.03946990147233,-0.035108387470245,-0.1097127571702],[-0.084732487797737,0.079130850732327,0.021685345098376],[0.051076486706734,-0.043808739632368,0.033203173428774]],[[-0.034421510994434,0.084011971950531,-0.064387984573841],[-0.011494773440063,0.076536953449249,-0.062722206115723],[-0.013461750000715,-0.00076116365380585,0.13084316253662]],[[0.12313594669104,-0.099499769508839,0.07442793995142],[0.012860467657447,0.010083608329296,0.043127782642841],[-0.03199202939868,0.060018166899681,-0.076621122658253]],[[0.099600970745087,0.061774637550116,-0.021514127030969],[0.062610305845737,0.086551234126091,0.034364093095064],[-0.052855245769024,-0.014669668860734,0.025947950780392]],[[0.092443041503429,0.036279104650021,-0.017436441034079],[0.042782299220562,-0.0010101635707542,-0.082797445356846],[-0.10531065613031,-0.056229345500469,0.026183014735579]],[[0.14023996889591,-0.10540544986725,-0.093599207699299],[0.005318314768374,-0.0078573226928711,0.073087930679321],[0.11166702955961,0.045569859445095,0.10942243784666]],[[-0.027829809114337,-0.1599412560463,-0.14343696832657],[0.10083723068237,-0.025347808375955,0.017105154693127],[-0.1436113268137,0.0043164929375052,0.090792275965214]],[[-0.10509071499109,0.037342134863138,0.024403451010585],[0.15319134294987,-0.0077649601735175,0.045262489467859],[-0.18688000738621,-0.021483011543751,0.17081695795059]],[[0.001070435740985,-0.10011976212263,-0.13826690614223],[-0.085359022021294,-0.073083959519863,-0.085532896220684],[0.05816001817584,0.017820822075009,-0.11634620279074]],[[-0.018540946766734,0.031446557492018,0.033815581351519],[-0.018336679786444,0.16047635674477,-0.10091143846512],[0.029103985056281,-0.15749205648899,-0.23656129837036]],[[0.055953044444323,0.1160558834672,-0.21332916617393],[0.079701028764248,0.15811529755592,0.057861473411322],[-0.12152966111898,0.018664499744773,-0.0049214563332498]],[[-0.048984497785568,0.030839705839753,0.088151149451733],[0.094731286168098,0.012333278544247,-0.15951529145241],[0.021124746650457,-0.16300831735134,0.071779176592827]],[[-0.047812320291996,-0.055114399641752,-0.055547967553139],[0.088174693286419,0.097586758434772,0.077702715992928],[-0.050869010388851,-0.007925434038043,0.034726336598396]],[[-0.16162221133709,0.034175932407379,0.006156271789223],[0.10052496194839,0.17958581447601,0.048579663038254],[-0.10094828903675,-0.035602185875177,-0.11479779332876]],[[0.046739038079977,-0.13110050559044,0.019112514331937],[0.023519182577729,0.12434773147106,-0.040504407137632],[-0.053720947355032,-0.010840049944818,0.13378213346004]],[[-0.022763038054109,-0.024072054773569,0.059453085064888],[-0.066744051873684,-0.10619094222784,-0.11018193513155],[0.020238382741809,0.058271214365959,0.041290368884802]],[[0.082315057516098,-0.013039756566286,-0.053549017757177],[0.13083785772324,0.048586566001177,0.099735461175442],[0.059260785579681,-0.035175126045942,-0.032983902841806]],[[-0.040540430694818,0.11983150243759,-0.22798632085323],[-0.1396097689867,-0.048139687627554,0.022120334208012],[-0.0081704771146178,-0.050108265131712,0.09734645485878]],[[-0.11466193944216,0.074241176247597,-0.013329124078155],[0.12201828509569,0.091413423418999,-0.1955014616251],[0.0387232452631,-0.19108115136623,-0.0060832058079541]],[[0.081555262207985,0.044577658176422,0.16435407102108],[-0.0047687143087387,-0.0025498662143946,0.1015797406435],[-0.043425288051367,-0.080892615020275,0.11105805635452]],[[-0.059858419001102,0.074184589087963,0.069655239582062],[-0.064201630651951,-0.0060817338526249,0.01349685434252],[0.078117169439793,0.11656567454338,0.09648759663105]],[[0.075411595404148,-0.0064633362926543,0.019652489572763],[0.091829903423786,0.075233303010464,0.10895566642284],[0.12097924202681,0.063969686627388,-0.043368354439735]],[[0.16227993369102,0.033112764358521,0.069995507597923],[0.27313339710236,-0.026880271732807,-0.066857792437077],[0.23736706376076,0.11577702313662,0.053366970270872]],[[-0.040435157716274,0.022900665178895,-0.027379307895899],[0.033185102045536,-0.082608558237553,0.12893478572369],[-0.055584155023098,0.13980154693127,0.084756217896938]],[[-0.054918758571148,0.010684964247048,-0.002331908326596],[-0.080307677388191,0.029509192332625,-0.15058460831642],[0.014212850481272,0.0065422081388533,0.034395810216665]],[[0.0022278258111328,-0.0089537994936109,0.0018196684541181],[0.0048349848948419,0.072501137852669,0.041344575583935],[0.055441305041313,0.049036249518394,-0.19841277599335]],[[-0.12419322878122,-0.030194018036127,-0.17302271723747],[0.027374403551221,-0.0082708448171616,-0.02854841388762],[-0.00042113129165955,0.081580311059952,-0.1797204464674]],[[-0.056299567222595,-0.10768286883831,0.11319952458143],[-0.014663763344288,-0.054402403533459,-0.14608056843281],[0.13016517460346,-0.066514328122139,0.010303934104741]],[[0.12468284368515,0.036976125091314,0.078401893377304],[0.0085958130657673,0.10799825191498,0.09813267737627],[-0.0066215386614203,-0.036355648189783,0.14609451591969]],[[-0.0099940290674567,-0.0056147235445678,-0.053249388933182],[-0.03463488817215,0.10330079495907,0.030280692502856],[-0.17972473800182,-0.05039195343852,-0.10315327346325]],[[0.019695026800036,-0.092122256755829,-0.0077571617439389],[0.041871532797813,0.16317497193813,-0.014437048695982],[-0.096084229648113,-0.014319694600999,0.04218727722764]],[[0.095327854156494,-0.18528658151627,0.10018578916788],[-0.0076789795421064,-0.067129530012608,-0.034615378826857],[0.048105344176292,-0.099177911877632,-0.13802662491798]]],[[[-0.052760872989893,-0.2846183180809,0.13164573907852],[-0.09104335308075,-0.31069314479828,-0.1520319879055],[-0.016765281558037,-0.037599250674248,-0.030424501746893]],[[-0.061758629977703,0.15137289464474,-0.062045499682426],[0.086550980806351,0.007300871424377,0.060638282448053],[-0.012834755703807,0.024439385160804,-0.020359167829156]],[[0.012847265228629,-0.094426594674587,-0.030883729457855],[-0.18214693665504,0.067782573401928,0.04339224845171],[0.00028062393539585,0.016351547092199,0.0094564259052277]],[[0.20843087136745,-0.088271014392376,-0.24162673950195],[0.24743354320526,-0.097546070814133,-0.19333474338055],[0.11940924823284,0.14826259016991,-0.016304433345795]],[[-0.042473040521145,0.06061701849103,0.050591628998518],[0.057333342730999,-0.0082610724493861,-0.046120826154947],[0.01349616702646,0.19425711035728,-0.075548470020294]],[[-0.15285661816597,0.052428729832172,0.094283245503902],[-0.073949009180069,-0.026299783959985,0.087962426245213],[0.058369103819132,-0.037610061466694,0.10879009217024]],[[-0.32930088043213,-0.076727278530598,0.24845176935196],[0.0564044713974,-0.4216682612896,0.1302540153265],[0.13428646326065,-0.25571089982986,-0.01484146900475]],[[-0.0098176086321473,-0.21637155115604,-0.02656539157033],[0.13249397277832,-0.2473618388176,-0.2383611947298],[0.1694208830595,-0.33278396725655,-0.15313641726971]],[[-0.040652666240931,-0.070169284939766,-0.15307089686394],[-0.067911997437477,0.27428951859474,0.12992678582668],[0.083350248634815,0.031299717724323,-0.073155149817467]],[[-0.046010177582502,-0.17844022810459,0.10623580217361],[-0.14740480482578,0.064346812665462,0.093299545347691],[0.064463689923286,-0.10953039675951,0.018427737057209]],[[0.048672243952751,0.00055136298760772,0.10367276519537],[0.14364401996136,-0.13491617143154,-0.050924576818943],[0.063805140554905,0.055786296725273,-0.35243850946426]],[[-0.085739031434059,-0.056759029626846,0.16609121859074],[-0.042052373290062,0.1781297326088,-0.002572026103735],[-0.099037349224091,0.091169908642769,-0.17799270153046]],[[0.10477919876575,0.066425211727619,-0.029522592201829],[-0.063416823744774,0.13944570720196,-0.11268202960491],[-0.048631437122822,0.10893343389034,-0.15275321900845]],[[-0.12986125051975,0.021021641790867,0.074565656483173],[-0.020887762308121,0.075422935187817,0.12469633668661],[0.12102808058262,-0.031532268971205,-0.0069689843803644]],[[-0.084990814328194,0.28212410211563,0.038507390767336],[-0.11158292740583,-0.039412807673216,0.0097382701933384],[-0.0050196279771626,-0.20784056186676,-0.15820808708668]],[[0.097951464354992,0.13583183288574,0.033630207180977],[-0.035128086805344,-0.1179102435708,0.11259875446558],[0.043243493884802,-0.078630641102791,-0.14881630241871]],[[0.18125608563423,-0.046068955212831,0.1290582716465],[-0.12197469174862,-0.083049669861794,-0.089551389217377],[0.072801284492016,-0.12540613114834,-0.070811927318573]],[[-0.074082106351852,0.050880204886198,-0.076591596007347],[-0.016482386738062,-0.1145982593298,-0.18715001642704],[0.024319920688868,-0.0030247918330133,-0.14699298143387]],[[-0.13600477576256,0.015349062159657,-0.14386151731014],[-0.017390510067344,-0.16744947433472,-0.0075482274405658],[-0.039873484522104,-0.036573830991983,-0.20095266401768]],[[0.050696182996035,-0.024643305689096,-0.11296669393778],[0.016971396282315,0.11421573162079,0.061175003647804],[-0.012293014675379,0.16546685993671,0.031923249363899]],[[0.024761701002717,-0.0018810256151482,-0.2559734582901],[0.15496079623699,-0.069068610668182,-0.081895843148232],[0.19054184854031,0.098466522991657,-0.037347704172134]],[[0.069700963795185,-0.13790839910507,0.16290955245495],[-0.0037771491333842,-0.16845054924488,-0.18988119065762],[0.36242717504501,0.0023664373438805,-0.22035571932793]],[[-0.029310604557395,0.024832721799612,-0.20071536302567],[0.17365725338459,-0.034536380320787,-0.13515278697014],[-0.04609527811408,-0.10745540261269,0.052560701966286]],[[-0.16456055641174,0.010476895608008,-0.1585565507412],[0.11715215444565,-0.0071953567676246,-0.044494926929474],[0.093753099441528,-0.01610098220408,0.030091840773821]],[[0.12144556641579,0.0067087416537106,-0.12172181904316],[0.02953002601862,0.066171258687973,-0.065004073083401],[0.19032138586044,-0.13732631504536,0.062584899365902]],[[0.070655487477779,-0.21110105514526,0.2263574898243],[-0.16485887765884,-0.0069792149588466,0.24381047487259],[-0.08496568351984,-0.17282466590405,0.1132008805871]],[[-0.073740169405937,0.1488169580698,-0.044984340667725],[-0.10373990237713,-0.25197279453278,0.012250360101461],[0.0037412999663502,-0.19659893214703,-0.0044401492923498]],[[-0.050849657505751,0.16659604012966,0.030452515929937],[-0.013848694041371,0.055826500058174,-0.1669527888298],[-0.24678291380405,-0.034732319414616,0.065327063202858]],[[0.08291457593441,0.078357756137848,-0.079522505402565],[0.20707546174526,-0.021303249523044,0.071914352476597],[-0.076747000217438,0.047420389950275,-0.069510564208031]],[[0.082305520772934,-0.17624939978123,-0.240488499403],[0.20648202300072,-0.1112492159009,0.054871961474419],[0.20808106660843,0.17357943952084,-0.016257869079709]],[[-0.18153791129589,0.093116208910942,0.068296484649181],[0.098248340189457,-0.0090929847210646,-0.042170524597168],[0.10345535725355,-0.15601627528667,-0.0073609766550362]],[[0.024628674611449,-0.02878956310451,-0.08890962600708],[-0.21513448655605,-0.046419203281403,-0.15189155936241],[-0.24998816847801,0.16615672409534,0.11529320478439]]],[[[0.083259910345078,-0.086823895573616,0.0032785646617413],[-0.18447472155094,-0.068275511264801,-0.048519149422646],[-0.081529200077057,0.014587623998523,0.028035035356879]],[[-0.15838241577148,-0.049307562410831,-0.031236911192536],[0.09127239137888,0.0049319821409881,-0.11796917766333],[-0.0367496535182,0.079552799463272,0.055455252528191]],[[0.18991138041019,-0.10805913805962,0.096963047981262],[-0.19195967912674,0.0093159750103951,-0.085568390786648],[0.091422691941261,-0.28805395960808,0.14462567865849]],[[-0.0092961536720395,0.038519218564034,-0.051113955676556],[0.023080993443727,0.069335497915745,-0.069201111793518],[-0.071209587156773,0.027809087187052,-0.04854679480195]],[[0.093663081526756,-0.081945806741714,-0.077700905501842],[-0.0036500724963844,-0.0064871860668063,0.072847820818424],[0.15772834420204,0.047160297632217,0.089124277234077]],[[-0.042206116020679,-0.035577673465014,-0.10289660841227],[-0.17989362776279,0.06503676623106,0.0060197943821549],[-0.078980512917042,0.040779914706945,0.08223132789135]],[[0.11225049942732,-0.094797283411026,0.028135491535068],[0.048899568617344,-0.056698594242334,-0.16109016537666],[0.14738644659519,0.049125045537949,-0.036884617060423]],[[-0.05915167927742,0.019249927252531,0.056856151670218],[0.029272917658091,0.087777487933636,0.021773243322968],[0.042176116257906,0.086797125637531,0.12617027759552]],[[0.030254226177931,-0.18641902506351,-0.014177949167788],[0.044639509171247,0.0466333553195,0.015562773682177],[0.020709106698632,-0.088399074971676,0.097322821617126]],[[-0.051463700830936,-0.042164713144302,0.091382689774036],[-0.20371232926846,-0.034106060862541,0.083921611309052],[-0.061844866722822,0.063048511743546,0.017636341974139]],[[-0.053383935242891,0.17290087044239,-0.072565153241158],[-0.31420543789864,0.07167586684227,0.0078750597313046],[0.040542926639318,-0.064856335520744,-0.11026395112276]],[[-0.023284176364541,0.024963159114122,-0.062956221401691],[-0.0039049102924764,0.1612645983696,-0.022834083065391],[0.16993026435375,0.022319413721561,0.080200798809528]],[[-0.0035883721429855,-0.14211031794548,0.043591693043709],[0.0030275695025921,0.057270266115665,-0.2042388767004],[0.10355535894632,-0.046221576631069,0.040550205856562]],[[-0.099979922175407,-0.023416427895427,0.097043573856354],[0.057498522102833,-0.024225106462836,0.11250125616789],[-0.0010597880464047,-0.0089013138785958,0.090008914470673]],[[0.019158923998475,-0.08837129175663,-0.0051835998892784],[0.019830528646708,0.053810052573681,0.0064938287250698],[-0.021413192152977,0.14350406825542,0.026018496602774]],[[-0.1836214363575,-0.11171653866768,-0.16854698956013],[0.089396171271801,-0.049156282097101,0.095069199800491],[0.14697279036045,0.11324517428875,0.084126777946949]],[[-0.12830664217472,-0.068432569503784,-0.044019680470228],[0.057235229760408,-0.025959363207221,0.083187572658062],[0.061239991337061,0.17061667144299,-0.095809422433376]],[[0.051320839673281,-0.1341310441494,0.018488828092813],[-0.16784471273422,-0.1141048297286,-0.10363901406527],[0.061638906598091,-0.025883445516229,0.047334067523479]],[[-0.071722395718098,0.15432651340961,-0.058053553104401],[0.071889758110046,-0.11449205875397,0.31627508997917],[0.010912392288446,0.092821158468723,-0.21039724349976]],[[0.087476849555969,-0.26458260416985,-0.063653253018856],[0.031733248382807,-0.0074826725758612,-0.16351591050625],[0.076970525085926,-0.1282976269722,-0.09820482134819]],[[0.15829083323479,-0.10141826421022,0.097667194902897],[-0.13040003180504,-0.01369303278625,-0.045138634741306],[-0.054907251149416,-0.26665034890175,-0.01302286516875]],[[-0.0012988072121516,0.13424524664879,0.0029224399477243],[0.0052341809496284,0.15370672941208,-0.0091261621564627],[-0.15032301843166,0.084102630615234,-0.012333666905761]],[[-0.14341326057911,0.039704035967588,0.031589772552252],[-0.20766219496727,-0.12130535393953,0.19349703192711],[-0.10622791200876,0.0051661883480847,-0.059885948896408]],[[0.025851843878627,-0.041037011891603,-0.035247817635536],[-0.21446207165718,-0.044110134243965,-0.13915768265724],[-0.073117025196552,-0.16957159340382,-0.0089600030332804]],[[-0.020213300362229,-0.1234952583909,0.0255754198879],[-0.18884314596653,-0.11231783032417,-0.29230836033821],[-0.15006840229034,-0.031639020889997,-0.071945443749428]],[[0.14163780212402,-0.060500789433718,0.1143167540431],[0.16439034044743,-0.12644298374653,-0.015216795727611],[-0.20336367189884,-0.023639073595405,0.1739332228899]],[[0.073031596839428,-0.05657421797514,0.017608938738704],[-0.12496384978294,0.12822410464287,-0.078412212431431],[-0.070665754377842,-0.0080506773665547,-0.049155402928591]],[[0.12189748138189,-0.012102252803743,-0.005893912166357],[0.083306051790714,-0.015697956085205,-0.12210832536221],[-0.053423743695021,0.069136410951614,0.0832639336586]],[[-0.083141811192036,0.10705249011517,-0.071156032383442],[-0.022296646609902,0.087807685136795,-0.094458490610123],[-0.028536897152662,0.043972704559565,-0.11393270641565]],[[-0.17760652303696,0.16910746693611,0.0081008579581976],[-0.031274884939194,-0.063713803887367,0.072738222777843],[-0.059999093413353,-0.059007026255131,0.049084316939116]],[[-0.045086201280355,-0.13984921574593,0.058038368821144],[0.028845647349954,0.0035894049797207,0.23191840946674],[-0.029398545622826,-0.093180797994137,-0.038666058331728]],[[-0.04356187954545,-0.0099883396178484,0.034991640597582],[-0.021210677921772,0.14472503960133,-0.014519169926643],[-0.06277122348547,0.12937022745609,0.084880515933037]]],[[[-0.025491768494248,-0.10907219350338,-0.029218161478639],[0.11879049241543,0.10259346663952,0.0093783549964428],[-0.13482488691807,-0.15749564766884,0.051726717501879]],[[-0.02410089969635,-0.0040106549859047,-0.012040833942592],[0.0099247694015503,-0.039579268544912,-0.078027993440628],[-0.15234561264515,0.083477221429348,0.048128258436918]],[[-0.017546420916915,0.022106351330876,-0.045799549669027],[-0.035604029893875,0.068261221051216,-0.06807279586792],[-0.022307453677058,-0.0064567639492452,0.061145111918449]],[[0.013953569345176,0.13850146532059,0.020795935764909],[-0.25628668069839,-0.33644220232964,0.044727586209774],[0.065522596240044,-0.273811429739,0.053158566355705]],[[0.064393572509289,-0.10248856246471,0.052408047020435],[0.11690458655357,0.016686802729964,0.042118299752474],[-0.11206002533436,0.11079916357994,0.14361746609211]],[[0.036638118326664,-0.078765615820885,0.078923657536507],[-0.04115179926157,-0.18196426331997,-0.077373556792736],[0.02025018632412,-0.1337980479002,0.037102583795786]],[[-0.072456814348698,-0.19204173982143,0.17864386737347],[-0.029742989689112,-0.16114847362041,-0.46545711159706],[0.077808387577534,0.25932931900024,0.015812188386917]],[[-0.14260306954384,-0.086401879787445,0.017706785351038],[-0.04279875010252,0.14649340510368,0.066400043666363],[0.087062120437622,-0.06533569842577,-0.12998557090759]],[[0.044569853693247,0.0060580442659557,0.050184387713671],[-0.080213986337185,-0.13285031914711,-0.2868478000164],[-0.056670617312193,0.016964273527265,0.13752372562885]],[[-0.011959091760218,-0.037076685577631,-0.19669581949711],[0.14225909113884,-0.0036223796196282,0.05034551024437],[0.038965877145529,-0.11704622209072,-0.024469409137964]],[[0.096663519740105,0.011250181123614,-0.16468822956085],[-0.12196226418018,0.13285511732101,0.074825592339039],[0.0016097931656986,0.11439926177263,-0.11149270087481]],[[0.02483993396163,0.14693695306778,0.049777325242758],[-0.086350098252296,0.069955259561539,-0.14099235832691],[-0.29680940508842,0.11818747222424,-0.031960915774107]],[[-0.093263313174248,-0.060647040605545,0.012359923683107],[0.045253872871399,0.076629042625427,-0.17488676309586],[-0.072676733136177,-0.10138045996428,0.086837068200111]],[[-0.23375695943832,0.028746340423822,0.019698223099113],[-0.026997329667211,0.07547028362751,-0.09243668615818],[-0.001819315017201,0.0079062161967158,0.071378611028194]],[[-0.065634623169899,0.13779105246067,0.15004627406597],[-0.091821387410164,-0.12080451101065,0.10145708173513],[0.028049826622009,0.079735577106476,-0.083032183349133]],[[-0.051944319158792,0.007883470505476,0.030456084758043],[-0.059084169566631,0.095746256411076,-0.023109704256058],[-0.10933374613523,0.076821021735668,-0.04316196590662]],[[0.10806620121002,0.17500422894955,0.064269408583641],[-0.023909702897072,0.066344939172268,0.08694925904274],[-0.018569828942418,-0.15519367158413,-0.14925214648247]],[[0.05025439709425,-0.015425282530487,0.052876427769661],[-0.28824919462204,-0.0051232888363302,0.018983408808708],[0.22887940704823,-0.1183996796608,-0.010221345350146]],[[0.0088266767561436,0.15978276729584,-0.14110669493675],[0.0096765588968992,0.0080022467300296,0.044584356248379],[0.032153699547052,0.039005171507597,-0.074059121310711]],[[0.051831480115652,-0.041313976049423,0.086046643555164],[0.017664266750216,0.097614794969559,-0.28578591346741],[0.0043571954593062,-0.010958188213408,0.22269612550735]],[[0.042905461043119,-0.11892905831337,0.024663871154189],[-0.012210933491588,-0.034182615578175,-0.048044830560684],[0.052944790571928,0.021316131576896,0.027939978986979]],[[-0.062629096210003,0.09191007912159,-0.013509978540242],[0.040023688226938,-0.022374289110303,-0.003000209107995],[0.016324572265148,-0.075104057788849,-0.069050274789333]],[[-0.14425933361053,0.037654228508472,-0.026159822940826],[-0.01929522678256,-0.037534788250923,0.11198858916759],[0.17289833724499,0.10792932659388,0.014956309460104]],[[0.059408634901047,-0.21174824237823,0.061482649296522],[0.0092286700382829,0.038655683398247,0.034473963081837],[0.12158185988665,-0.054203320294619,-0.019640700891614]],[[-0.10544384270906,-0.21357902884483,0.21811391413212],[-0.049101885408163,0.091156467795372,-0.1295849531889],[0.048660043627024,-0.07029751688242,0.03868705779314]],[[0.012566179968417,-0.010763389989734,0.025451470166445],[0.023498522117734,-0.02569074369967,0.0037327173631638],[-0.14365370571613,-0.098840393126011,-0.019244439899921]],[[-0.029020335525274,-0.0064833969809115,-0.021505249664187],[-0.0073343948461115,-0.11383509635925,0.14808686077595],[0.067149296402931,-0.0054739895276725,-0.14720733463764]],[[0.10454739630222,0.15180191397667,0.0228555444628],[-0.14570960402489,0.018193105235696,0.00040074862772599],[-0.034135438501835,-0.080415390431881,0.070696994662285]],[[0.049436938017607,0.19043752551079,0.12746876478195],[-0.11376469582319,-0.17727622389793,0.12120051681995],[-0.18179774284363,0.0035773778799921,0.014491838403046]],[[-0.043546799570322,-0.11174313724041,-0.11403433978558],[0.11456733942032,0.2166749984026,0.035084363073111],[-0.1785197108984,0.031575910747051,0.067475438117981]],[[-0.050360426306725,-0.088262312114239,-0.06657163053751],[0.065709561109543,0.00042182905599475,-0.1159131154418],[0.066774316132069,0.015153476037085,-0.011918326839805]],[[0.11786662787199,0.051093965768814,0.030586790293455],[-0.15462636947632,-0.01944755576551,-0.28914213180542],[0.039286587387323,-0.1334448158741,0.041108299046755]]],[[[-0.02527416869998,-0.042990013957024,-0.045662507414818],[-0.046464122831821,-0.022201970219612,-0.0073015326634049],[0.034403223544359,-0.054153814911842,-0.0058149322867393]],[[0.0067049711942673,-0.069589719176292,-0.072861887514591],[0.16101409494877,0.099616698920727,0.022222591564059],[0.070482641458511,0.16587035357952,0.13461689651012]],[[0.11984618008137,-0.051384028047323,0.040287271142006],[-0.17589591443539,-0.069937624037266,0.20113623142242],[-0.0063507026061416,0.013198706321418,0.18739156424999]],[[-0.070365078747272,0.080113768577576,-0.068226881325245],[0.17164634168148,0.026146778836846,-0.061209954321384],[0.057428833097219,0.056371606886387,-0.041806094348431]],[[-0.025010544806719,0.01526343356818,0.077080190181732],[-0.050850678235292,-0.063948303461075,0.11823263764381],[0.08671098947525,-0.037005104124546,-0.065356731414795]],[[-0.063532099127769,0.033218078315258,-0.096658810973167],[0.0077871838584542,0.20518478751183,0.18891501426697],[0.06783439964056,0.11872810870409,-0.057855993509293]],[[-0.035598881542683,-0.010484835132957,0.13331876695156],[-0.14752362668514,-0.05505795031786,-0.059490755200386],[-0.054943516850471,-0.23227153718472,-0.15969756245613]],[[-0.01770993322134,-0.1791430413723,0.0041197878308594],[-0.022428493946791,0.02717400342226,-0.1019533649087],[0.010265544056892,-0.17248627543449,-0.030471267178655]],[[0.056847181171179,-0.070035167038441,-0.095451235771179],[0.13361063599586,0.043127484619617,0.070640742778778],[-0.11566201597452,-0.14954303205013,0.14415314793587]],[[-0.1211259663105,0.046902764588594,0.14332023262978],[0.07003490626812,-0.020121539011598,-0.11556165665388],[0.0014131694333628,0.047514606267214,0.11669643968344]],[[0.089954771101475,0.055011320859194,-0.0034497673623264],[0.066883772611618,-0.039215009659529,0.20067553222179],[-0.059924606233835,0.011114973574877,-0.11491050571203]],[[0.082620158791542,0.12204311043024,0.035016737878323],[-0.085066460072994,-0.014352512545884,-0.011642846278846],[0.026858936995268,-0.0029680093284696,0.032998494803905]],[[0.037438649684191,0.021288109943271,-0.019268898293376],[0.090943217277527,0.078653819859028,-0.009269842877984],[-0.11614073067904,0.12091106176376,-0.039518434554338]],[[-0.016533982008696,0.12439104914665,-0.080270610749722],[-0.017247343435884,-0.048108477145433,-0.070755079388618],[0.09166993945837,0.046509969979525,-0.0083186561241746]],[[-0.053705923259258,-0.10613169521093,0.078743830323219],[0.020592352375388,0.11480242013931,0.098670154809952],[-0.085602827370167,-0.067715711891651,0.11003330349922]],[[0.056136105209589,0.054318804293871,0.00052742881234735],[0.061174564063549,0.028901459649205,-0.042666215449572],[0.024368014186621,0.15627938508987,0.1092893332243]],[[0.12527374923229,0.15885923802853,0.14971312880516],[0.090055041015148,0.25214084982872,0.035438194870949],[-0.071020513772964,0.24147786200047,0.033780843019485]],[[0.045153077691793,0.13812346756458,0.084660016000271],[-0.082510478794575,0.042174648493528,0.11069647222757],[0.062166258692741,-0.068624369800091,-0.019724937155843]],[[-0.046098466962576,0.027923196554184,0.037363447248936],[0.064747892320156,0.17444939911366,0.062099900096655],[-0.0021662381477654,0.040260694921017,-0.064088985323906]],[[-0.099228866398335,-0.057929884642363,-0.0036183504853398],[0.017906714230776,-0.041789576411247,-0.0074488129466772],[0.099538385868073,-0.043590229004622,-0.017919931560755]],[[0.0031122884247452,-0.018577098846436,-0.053239036351442],[9.9190719993203e-06,-0.088349342346191,-0.037153366953135],[0.071609064936638,-0.053340286016464,-0.002957439282909]],[[0.18177157640457,-0.037821047008038,0.12418527901173],[-0.052447982132435,0.095725119113922,-0.052279494702816],[0.035881102085114,-0.019457904621959,-0.17368447780609]],[[0.067838340997696,0.044734615832567,0.10001922398806],[0.013785739429295,-0.069988712668419,-0.0014042247785255],[-0.086662739515305,-0.042370818555355,-0.090140022337437]],[[0.13064710795879,0.031161891296506,-0.092629447579384],[0.036138121038675,-0.0622070543468,0.007952076382935],[0.12760508060455,-0.082611992955208,-0.086337514221668]],[[-0.033804662525654,0.028012841939926,0.12709181010723],[0.073518924415112,-0.0015542480396107,-0.05011822283268],[-0.1403728723526,0.088897444307804,-0.13170747458935]],[[-0.038560766726732,-0.13640081882477,-0.014846619218588],[0.19496689736843,0.18864932656288,0.032242149114609],[-0.17530985176563,0.12545092403889,0.0045165615156293]],[[0.030129661783576,-0.14443720877171,-0.22894914448261],[-0.075374752283096,0.095315739512444,-0.029108483344316],[0.037465069442987,0.05868362262845,-0.038556322455406]],[[-0.0058472976088524,-0.16308502852917,0.055336032062769],[-0.058559495955706,-0.049495756626129,-0.012085727415979],[-0.045981895178556,0.012796990573406,-0.056795228272676]],[[-0.047719035297632,-0.03271583840251,-0.082724787294865],[0.10284466296434,0.13408011198044,0.078428111970425],[-0.0025399897713214,-0.03966311365366,-0.011913906782866]],[[0.078284747898579,0.1277192234993,0.13502818346024],[0.0069728493690491,-0.043342031538486,0.080843321979046],[0.084404990077019,-0.08776218444109,0.092040963470936]],[[0.011647476814687,-0.032153870910406,0.026888383552432],[-0.18457716703415,0.026777008548379,-0.075946405529976],[0.19082218408585,-0.036085858941078,-0.02068861015141]],[[-0.06195230409503,0.15870454907417,-0.015374280512333],[-0.023353200405836,-0.048487208783627,-0.027266418561339],[-0.011469691991806,-0.028837624937296,-0.068590372800827]]],[[[-0.097872920334339,0.01646826043725,-0.023786347359419],[-0.093019522726536,0.26778572797775,0.034046228975058],[-0.045489300042391,0.17285408079624,-0.24425157904625]],[[0.071633599698544,-0.028860183432698,0.18726851046085],[-0.017162842676044,-0.081428587436676,-0.18904823064804],[-0.01281432248652,-0.04374835267663,0.010281437076628]],[[-0.0022232816554606,-0.0075181927531958,0.004898393061012],[-0.11281162500381,-0.12448615580797,0.0033889946062118],[-0.0152358841151,-0.23274616897106,-0.16703577339649]],[[-0.11632519215345,-0.011209103278816,0.092202723026276],[-0.1707020252943,-0.19227376580238,0.11804765462875],[-0.37593129277229,-0.27687323093414,-0.31338393688202]],[[0.078411564230919,-0.16194887459278,-0.050048757344484],[0.033975131809711,-0.025093311443925,-0.0038906566333026],[0.11335919052362,-0.019886273890734,-0.047255780547857]],[[-0.057882815599442,-0.036362048238516,-0.088798344135284],[0.034450404345989,-0.030519118532538,0.02674899995327],[-0.14924252033234,-0.017203373834491,-0.058047324419022]],[[-0.11862609535456,0.061071820557117,0.024171592667699],[0.12226895987988,0.20849581062794,0.10031202435493],[-0.15172350406647,-0.15498022735119,-0.055089298635721]],[[-0.098690167069435,0.19960203766823,-0.092091836035252],[-0.23205082118511,-0.077586308121681,0.03399845212698],[-0.080199614167213,-0.14727556705475,-0.090876765549183]],[[-0.21885216236115,0.01491713989526,-0.13363365828991],[-0.10783187299967,-0.057818789035082,-0.22333583235741],[-0.074796505272388,-0.13410793244839,-0.21986082196236]],[[0.078215971589088,-0.063048623502254,0.058974083513021],[0.016506707295775,-0.13855986297131,0.055934086441994],[0.0033462243154645,-0.01217554975301,-0.027564372867346]],[[-0.091386243700981,0.046859037131071,-0.015238052234054],[-0.14003103971481,-0.16846093535423,-0.13391569256783],[-0.093791455030441,-0.17110820114613,-0.16787149012089]],[[-0.08681533485651,0.052495874464512,0.061182077974081],[0.027399169281125,-0.010235013440251,-0.041412658989429],[-0.097212307155132,-0.023803452029824,0.053850512951612]],[[0.0091571323573589,-0.11128564178944,-0.0067716608755291],[-0.0097683425992727,-0.094413459300995,-0.17420238256454],[0.020909013226628,-0.04818082600832,-0.17145337164402]],[[0.042879246175289,-0.14720612764359,-0.037712443619967],[0.068541869521141,-0.075491808354855,-0.10327698290348],[-0.10004730522633,0.047127179801464,0.0093047441914678]],[[-0.34230470657349,-0.44070085883141,-0.45485788583755],[-0.036208663135767,-0.076186008751392,-0.058311719447374],[-0.20170804858208,-0.14092999696732,0.032207321375608]],[[-0.13178968429565,0.057719234377146,0.09167292714119],[-0.16538001596928,0.05715611949563,0.057685978710651],[-0.057435564696789,-0.15022924542427,-0.17837086319923]],[[-0.073899626731873,-0.089859418570995,-0.037195295095444],[0.015986263751984,-0.13036036491394,-0.048287514597178],[0.11844178289175,0.011910846456885,-0.14425213634968]],[[-0.16744656860828,-0.022553218528628,0.060332652181387],[0.022005911916494,-0.13620296120644,-0.01810859143734],[-0.079807758331299,-0.096911236643791,0.0044426047243178]],[[-0.08211062848568,0.097961895167828,0.14457839727402],[-0.12346262484789,-0.01981514506042,-0.18353308737278],[0.0612225048244,-0.19011335074902,-0.065499164164066]],[[0.11083937436342,-0.25887656211853,-0.17768967151642],[-0.28328466415405,-0.1399785131216,0.07940749078989],[0.11546056717634,-0.117486551404,0.024781610816717]],[[-0.015324968844652,-0.0053987470455468,-0.039278008043766],[-0.15839047729969,-0.20555011928082,-0.10169650614262],[-0.12596200406551,-0.20534212887287,0.014015196822584]],[[-0.025776708498597,0.011569127440453,0.015397761017084],[-0.073663845658302,0.064933203160763,-0.0057263020426035],[-0.20994253456593,-0.10953310132027,-0.14199914038181]],[[0.051848538219929,-0.090729311108589,0.043840922415257],[-0.095895074307919,-0.33410522341728,-0.13945786654949],[-0.06332977861166,0.069288872182369,-0.16735436022282]],[[-0.073955789208412,-0.15175245702267,0.043518953025341],[-0.074127219617367,-0.026617368683219,0.039931196719408],[-0.045141875743866,-0.033101495355368,0.007349191699177]],[[-0.058284357190132,-0.15986503660679,0.090913541615009],[-0.016024451702833,-0.086245059967041,-0.19227130711079],[-0.047758936882019,0.060961663722992,-0.05503660812974]],[[0.16864281892776,0.083374910056591,-0.098826125264168],[0.12761741876602,0.060418866574764,0.049278318881989],[-0.27165275812149,-0.12747460603714,-0.17356722056866]],[[-0.099339716136456,-0.019670557230711,0.038261123001575],[-0.027092745527625,0.078248076140881,-0.44678202271461],[-0.1872420758009,-0.0031646606512368,-0.17803318798542]],[[-0.29729849100113,-0.38953766226768,-0.061235282570124],[0.068464420735836,-0.062215656042099,0.065976902842522],[-0.14835020899773,-0.10361969470978,-0.10330233722925]],[[-0.036735381931067,-0.04739011451602,0.016896804794669],[-0.2615080177784,0.096759095788002,0.056651871651411],[0.047679755836725,0.12962381541729,-0.049353085458279]],[[-0.091610841453075,0.17164480686188,-0.21629658341408],[-0.11751365661621,0.10367330163717,0.010176039300859],[-0.048272535204887,0.066810749471188,-0.046686440706253]],[[-0.2839483320713,-0.090259298682213,0.11137349903584],[-0.024155596271157,-0.05521172657609,0.0660630017519],[-0.022990886121988,0.081113293766975,-0.063796706497669]],[[-0.31090915203094,-0.084892228245735,0.023671003058553],[-0.14115957915783,-0.11319464445114,-0.21155981719494],[-0.11736669391394,-0.24189968407154,-0.20438028872013]]],[[[-0.099230594933033,0.081510409712791,-0.1090986803174],[-0.11009379476309,-0.12553954124451,-0.1232041567564],[-0.13093280792236,-0.29712584614754,-0.14092914760113]],[[0.09033726900816,-0.022451341152191,0.082056984305382],[0.1246842071414,0.073097556829453,0.11286755651236],[-0.050133548676968,0.067639142274857,0.074579305946827]],[[0.005051898304373,-0.10792636871338,0.0099894925951958],[0.12520456314087,0.0061513395048678,0.054591070860624],[0.075720302760601,0.12847271561623,-0.1827008575201]],[[0.11293438076973,-0.1502937078476,-0.027315448969603],[0.072129525244236,0.078582689166069,0.15219819545746],[0.15986210107803,0.21154615283012,0.031654585152864]],[[0.022061640396714,-0.00084388599498197,-0.13377809524536],[-0.010850728489459,0.0011441031238064,-0.11555826663971],[-0.021742133423686,0.022484207525849,0.22443388402462]],[[-0.061360534280539,0.054374448955059,0.10207132995129],[-0.11982029676437,0.037707444280386,0.068715497851372],[0.10886573791504,-0.12420614808798,-0.11260466277599]],[[-0.024585267528892,-0.10763224959373,0.16709114611149],[0.029070137068629,-0.10958343744278,0.0704690143466],[-0.1846477240324,-0.15087489783764,-0.040826711803675]],[[0.028072368353605,0.022810148075223,-0.040247071534395],[0.032800741493702,-0.038519781082869,0.094252899289131],[-0.11622432619333,-0.17151784896851,-0.094203136861324]],[[-0.078266352415085,0.10382886230946,0.17596112191677],[-0.098373867571354,0.1290947496891,0.022954294458032],[-0.17180226743221,0.106913164258,0.024388445541263]],[[-0.042705789208412,0.092525847256184,-0.21900872886181],[-0.062455464154482,0.05037872120738,-0.090530820190907],[-0.057616610080004,0.17538432776928,0.15967555344105]],[[0.024652233347297,0.068561531603336,0.21729516983032],[-0.048682253807783,0.049936007708311,-0.1087266728282],[-0.00016696727834642,-0.026288483291864,-0.080287881195545]],[[0.18310947716236,-0.22877058386803,-0.052965715527534],[0.083512283861637,-0.08972404897213,-0.002113540424034],[0.10188110917807,0.00065295939566568,0.028103811666369]],[[-0.092943862080574,-0.27040150761604,-0.0047318474389613],[0.12096692621708,0.062379457056522,-0.034767214208841],[-0.06087402254343,-0.095005862414837,-0.14120608568192]],[[-0.052596196532249,-0.030007420107722,-0.20124635100365],[0.033799424767494,-0.11092265695333,-0.076750010251999],[-0.030987311154604,0.071586325764656,-0.016480507329106]],[[-0.078005582094193,0.056487832218409,-0.064421236515045],[-0.10235518962145,0.067028716206551,0.020854825153947],[0.075025364756584,0.017310217022896,0.073688820004463]],[[0.055921792984009,0.099033810198307,-0.18143501877785],[0.13657130300999,0.024841902777553,0.018156656995416],[-0.10747390240431,0.14726632833481,-0.046758063137531]],[[0.0086895739659667,0.071948640048504,-0.13615940511227],[0.1202035099268,-0.0064566656947136,0.080644205212593],[0.099429741501808,0.075406946241856,-0.020782634615898]],[[-0.063463814556599,0.044997543096542,0.050861805677414],[0.23954191803932,0.025902725756168,0.10610424727201],[0.062559559941292,-0.1511846780777,0.044722985476255]],[[0.12702982127666,-0.11354442685843,0.09024341404438],[-0.0051804981194437,-0.080530226230621,0.010395196266472],[0.065641798079014,-0.011097772046924,-0.09580796957016]],[[-0.0018130763201043,0.029520191252232,-0.20555384457111],[-0.0089477906003594,-0.12188585847616,-0.045926705002785],[-0.10270117223263,0.055412419140339,-0.041845384985209]],[[0.046616736799479,-0.037419907748699,-0.092482216656208],[-0.085047729313374,0.00017648923676461,0.067967675626278],[-0.035837519913912,0.16684472560883,0.080060958862305]],[[0.02448514662683,0.017716307193041,0.016250612214208],[-0.035243310034275,-0.0086843799799681,-0.14903247356415],[-0.13657885789871,-0.036095630377531,-0.010288145393133]],[[-0.22420278191566,-0.14085087180138,-0.014909504912794],[0.010105072520673,0.21027238667011,-0.027127869427204],[0.24859718978405,0.12530542910099,-0.015119228512049]],[[-0.10210457444191,0.14386862516403,0.041941098868847],[-0.085345268249512,0.10996396094561,-0.099535189568996],[-0.13987149298191,-0.0073076128028333,-0.27567586302757]],[[0.049677085131407,-0.014176037162542,0.056739639490843],[-0.10347501933575,-0.034948758780956,-0.13279189169407],[0.038328289985657,-0.05036411806941,-0.087408393621445]],[[0.016876885667443,0.068405859172344,-0.13880394399166],[-0.038361564278603,-0.037279348820448,0.047829631716013],[-0.052823219448328,0.093944884836674,-0.074894115328789]],[[-0.038950972259045,-0.094657257199287,-0.086834840476513],[0.051009450107813,0.015508177690208,-0.18856863677502],[-0.11281462013721,-0.092173554003239,-0.1565133780241]],[[-0.0095530329272151,-0.043932471424341,0.031295653432608],[0.067069850862026,-0.017976885661483,-0.042753022164106],[0.0051562981680036,-0.13134208321571,0.047347467392683]],[[0.19563637673855,0.0020221089944243,0.0033912279177457],[0.083310715854168,0.071601405739784,-0.035743936896324],[-0.14561574161053,-0.16449426114559,-0.2466584444046]],[[-0.011426405981183,0.070568218827248,-0.12265933305025],[0.11266846209764,-0.077815897762775,-0.13679324090481],[-0.010318118147552,-0.16016206145287,0.076910637319088]],[[-0.078035235404968,-0.020758165046573,-0.15800821781158],[0.014387335628271,0.10958487540483,0.041184928268194],[-0.15993538498878,-0.062469944357872,0.04756823182106]],[[-0.010114322416484,0.016346165910363,-0.061310674995184],[0.11664577573538,-0.040602251887321,-0.075893610715866],[0.14300894737244,0.15564090013504,-0.23510724306107]]],[[[0.013896087184548,-0.089439742267132,0.039954241365194],[0.0072610438801348,-0.15964739024639,0.0134919853881],[-0.1592945754528,-0.13656757771969,0.04204211756587]],[[0.055551506578922,-0.055974792689085,0.047268219292164],[0.10621167719364,0.050853922963142,0.15817449986935],[-0.010858907364309,0.015492445789278,0.12498860806227]],[[-0.0042910166084766,-0.12461783736944,0.025699047371745],[0.094178073108196,0.048257615417242,0.096647083759308],[-0.045526269823313,0.027359060943127,0.11222395300865]],[[-0.020217269659042,0.046697303652763,-0.036854539066553],[0.074390448629856,0.018136639147997,-0.057270754128695],[0.10058663785458,-0.06280206143856,-0.045372270047665]],[[0.11578343063593,-0.020350007340312,-0.014333427883685],[0.026262374594808,0.08728101849556,-0.052370488643646],[-0.037802375853062,-0.07926444709301,-0.081971988081932]],[[-0.092613555490971,-0.008979769423604,0.028784610331059],[-0.048757266253233,-0.078641958534718,-0.057110615074635],[0.168686658144,-0.027590336278081,-0.06677033752203]],[[-0.077657654881477,-0.020902387797832,0.15641222894192],[-0.082002818584442,-0.003051434410736,-0.13444040715694],[-0.096007093787193,-0.16121006011963,-0.035354260355234]],[[0.030492188408971,-0.087319269776344,0.01536994241178],[-0.038400489836931,-0.04545671492815,0.015504151582718],[-0.03134760633111,-0.12526254355907,-0.068133033812046]],[[0.033287316560745,0.010555421933532,-0.12296230345964],[0.04402694478631,0.065582260489464,0.053665366023779],[0.060731060802937,-0.021061537787318,-0.011427680030465]],[[-0.12956880033016,-0.0097689917311072,0.045868441462517],[-0.025118131190538,-0.16508668661118,0.074402526021004],[0.056056819856167,0.049528058618307,-0.044591642916203]],[[0.012577778659761,0.019011471420527,-0.0063435444608331],[-0.048950459808111,-0.069977425038815,-0.08508376032114],[-0.089378073811531,-0.048412628471851,0.0092978710308671]],[[-0.08692092448473,0.10475993901491,0.021347610279918],[-0.036389738321304,0.20618984103203,-0.012289918027818],[-0.017837295308709,-0.042218949645758,-0.02295184507966]],[[-0.054133486002684,0.057610109448433,0.097184933722019],[-0.065161935985088,0.074941538274288,0.10952416062355],[-0.16807761788368,-0.073054663836956,0.21264293789864]],[[0.0021855819504708,0.0097284223884344,0.0522899068892],[-0.099263042211533,-0.026084201410413,0.14213521778584],[-0.20311997830868,0.0050725005567074,-0.024224538356066]],[[-0.025980385020375,0.032559737563133,-0.033087328076363],[-0.07290381193161,0.067048482596874,0.13511003553867],[0.14550918340683,0.10130880773067,0.19201067090034]],[[-0.074599906802177,0.096987128257751,0.0063927476294339],[0.093595005571842,0.077722124755383,0.034891933202744],[-0.0095345303416252,0.024606551975012,-0.032156396657228]],[[-0.046690121293068,-0.11809905618429,-0.20528349280357],[0.032644357532263,-0.12497964501381,-0.016710016876459],[0.020028719678521,-0.10705672204494,0.0032413140870631]],[[-0.055376429110765,-0.015582595951855,0.031150018796325],[-0.10115998238325,-0.021091500297189,-0.016069699078798],[-0.056817695498466,-0.053574193269014,-0.043413661420345]],[[-0.10226980596781,-0.00132018502336,0.096454687416553],[-0.09031417965889,-0.22736625373363,-0.041617464274168],[-0.065436899662018,-0.030474429950118,-0.054220382124186]],[[0.06710185110569,0.074561059474945,0.12328597903252],[0.080591171979904,-0.063998430967331,0.038313083350658],[0.086915381252766,-0.1081600934267,0.024096658453345]],[[0.14217936992645,-0.12138091027737,-0.062831282615662],[0.035503543913364,0.16374038159847,-0.00041087516001426],[0.076695792376995,0.035155761986971,-0.064457684755325]],[[0.054801270365715,0.016498012468219,0.092713788151741],[-0.098664686083794,-0.085606783628464,0.0083314720541239],[0.072520434856415,-0.10978885740042,-0.028231685981154]],[[-0.047624029219151,-0.034923419356346,-0.025548761710525],[0.22650475800037,0.0558663867414,-0.00027013113140129],[0.043004732578993,0.027035215869546,-0.17099855840206]],[[-0.027422094717622,-0.044804230332375,-0.050868187099695],[-0.052939224988222,-0.0030026282183826,-0.12741301953793],[0.0035316194407642,-0.065768964588642,-0.060044843703508]],[[-0.043180871754885,0.10178972035646,0.01641608029604],[-0.017140708863735,-0.1612776517868,0.16146928071976],[-0.05842500180006,0.041982736438513,-0.047665569931269]],[[0.070986196398735,-0.091300740838051,0.022841738536954],[0.0083836978301406,-0.13679534196854,-0.095424525439739],[0.067267581820488,0.13027665019035,-0.09936036169529]],[[-0.050166249275208,-0.093937948346138,-0.0089396759867668],[-0.024364190176129,0.060929581522942,-0.10920141637325],[0.0073429769836366,-0.045250758528709,0.024781422689557]],[[-0.018034368753433,-0.027917178347707,0.02303378097713],[-0.040742240846157,0.11292500793934,0.012798470444977],[-0.014293462969363,-0.1072596758604,-0.056515611708164]],[[0.20986676216125,0.11606130748987,0.10647892951965],[-0.014965220354497,0.056205790489912,0.13002111017704],[-0.036627762019634,-0.12561492621899,-0.0058861961588264]],[[0.028009323403239,0.031395930796862,-0.012298452667892],[-0.0079624783247709,-0.039708748459816,-0.038471460342407],[-0.039276167750359,0.10335090011358,-0.018382746726274]],[[-0.14781583845615,0.1602284014225,0.00515346089378],[-0.077292002737522,-0.028076132759452,0.0021469925995916],[-0.099443711340427,-0.040905557572842,-0.036798778921366]],[[-0.026438606902957,0.031150080263615,0.020070089027286],[-0.018104024231434,-0.073254622519016,-0.011230131611228],[0.0078050806187093,-0.010487059131265,-0.029958348721266]]],[[[-0.12546347081661,-0.0044462303631008,0.0098886666819453],[0.0063078412786126,0.22061163187027,-0.063492640852928],[-0.22148950397968,0.18415102362633,-0.040032867342234]],[[-0.054259266704321,0.039089716970921,-0.17364238202572],[0.010221546515822,0.12597323954105,0.00089271867182106],[0.0054095415398479,0.20405057072639,0.0084978314116597]],[[-0.013153192587197,0.17400875687599,-0.0068543711677194],[0.014218173921108,-0.044785030186176,0.078712128102779],[-0.045627009123564,0.084236495196819,-0.0063024167902768]],[[0.021246494725347,-0.3336561024189,-0.09702442586422],[-0.26621389389038,-0.18256168067455,-0.10239122062922],[-0.011547491885722,-0.30937296152115,-0.13025124371052]],[[-0.0074900425970554,0.11202058196068,-0.12395148724318],[-0.09513059258461,-0.10531669855118,0.042299553751945],[0.036073457449675,0.061974156647921,-0.01565702073276]],[[0.054068949073553,0.092200189828873,-0.026715993881226],[-0.023064322769642,0.054609157145023,0.02280580997467],[-0.10589260607958,-0.055180687457323,-0.023106416687369]],[[0.16890496015549,0.14684101939201,0.076657503843307],[-0.080331683158875,0.031101796776056,0.068831458687782],[-0.076577097177505,-0.032286778092384,0.0012202609796077]],[[-0.12245285511017,0.071227319538593,0.065189726650715],[-0.16178588569164,-0.090322501957417,-0.12242470681667],[-0.17216670513153,-0.018377432599664,-0.09888482093811]],[[-0.038031511008739,-0.23347319662571,-0.20134298503399],[-0.036169689148664,-0.056934230029583,0.12411732971668],[0.068451590836048,-8.4427803813014e-05,-0.045797016471624]],[[-0.25385349988937,0.20051829516888,0.12412284314632],[-0.045970730483532,0.089259602129459,-0.11861951649189],[0.041740659624338,-0.0061155408620834,0.0060904622077942]],[[0.073038958013058,-0.10216634720564,0.081063151359558],[-0.14902023971081,-0.090691983699799,0.10116373747587],[-0.026732344180346,-0.066773414611816,-0.087298661470413]],[[-0.0047872997820377,0.096513405442238,0.011963475495577],[0.057611353695393,0.041851062327623,0.10581824928522],[-0.031508725136518,0.075134441256523,-0.054223407059908]],[[-0.0045603914186358,0.014132909476757,0.075034938752651],[-0.22778789699078,0.13365651667118,0.05085277557373],[0.021439941599965,-0.037936069071293,-0.016928974539042]],[[0.047059077769518,0.051749665290117,0.24663805961609],[0.088104940950871,-0.11646910756826,-0.023077167570591],[-0.16086542606354,-0.044845350086689,0.014296995475888]],[[0.054423402994871,-0.097775794565678,-0.11688502877951],[-0.080415725708008,0.17728810012341,0.073151737451553],[0.0040824087336659,-0.090978145599365,-0.14539970457554]],[[0.057428564876318,3.5457662306726e-05,-0.067699611186981],[-0.17121432721615,0.094942167401314,-0.027359621599317],[-0.1665011793375,0.16469940543175,-0.042853705585003]],[[-0.030981430783868,-0.096171215176582,-0.098267510533333],[0.096194818615913,0.16449971497059,0.13531772792339],[0.084438376128674,0.02259155921638,0.023987187072635]],[[-0.018902838230133,-0.11931891739368,-0.019372118636966],[-0.001864937832579,-0.058947153389454,-0.10895326733589],[-0.038482960313559,-0.0010134235490113,0.015105448663235]],[[-0.015616660937667,-0.083264067769051,0.087533228099346],[0.12697486579418,-0.16490505635738,-0.05080097541213],[0.042155869305134,-0.10790569335222,0.081039905548096]],[[-0.044777065515518,-0.44811901450157,0.034577406942844],[-0.06593345105648,-0.16759987175465,-0.11453792452812],[0.19292345643044,-0.15917514264584,-0.020810442045331]],[[-0.13243338465691,-0.069748856127262,0.22338217496872],[0.20590813457966,-0.19215248525143,-0.038468934595585],[-0.063279889523983,0.01197627838701,-0.032988604158163]],[[0.14063291251659,0.19919915497303,0.081900849938393],[-0.23210081458092,-0.015621964819729,-0.10515421628952],[-0.077240280807018,-0.18476976454258,-0.064254269003868]],[[0.013910800218582,-0.0075758052989841,0.065285414457321],[-0.049254588782787,-0.069083608686924,-0.098668158054352],[-0.1122682839632,0.031104216352105,-0.084216557443142]],[[0.035651192069054,-0.065037913620472,-0.17772243916988],[-0.076131522655487,-0.0014784400118515,-0.061530485749245],[-0.049509041011333,-0.12316752225161,0.021409710869193]],[[-0.0035199541598558,-0.03812313452363,0.14466555416584],[0.099911324679852,-0.091065108776093,0.28205454349518],[0.0012797293020412,-0.22266052663326,-0.060469076037407]],[[-0.026829989627004,0.16191241145134,-0.0063475477509201],[0.18453651666641,0.29671230912209,-0.10605555027723],[-0.22457765042782,0.1027547493577,-0.045074120163918]],[[-0.1188258305192,0.038790434598923,0.040973015129566],[-0.19072681665421,0.0025663028936833,-0.0662791877985],[-0.015395779162645,0.11556458473206,-0.13897813856602]],[[-0.0079920263960958,-0.083450332283974,-0.029559591785073],[-0.066493675112724,0.32060378789902,0.065596580505371],[-0.20248448848724,0.083812072873116,-0.041940867900848]],[[0.039918310940266,0.056143194437027,0.079894594848156],[-0.071458719670773,-0.11081010848284,-0.040601279586554],[-0.070169508457184,0.02173587679863,-0.18334233760834]],[[0.048887755721807,0.1319480240345,-0.072888799011707],[-0.018044117838144,-0.052425365895033,0.027796898037195],[-0.074473686516285,0.010014051571488,0.11363001912832]],[[0.0098253693431616,-0.048021357506514,0.045283295214176],[0.049066919833422,-0.22684575617313,0.00019986975530628],[-0.16646303236485,-0.097827322781086,-0.068404078483582]],[[-0.029127845540643,0.013724311254919,-0.064348302781582],[-0.17714765667915,0.21632678806782,0.0010197249939665],[-0.01645153388381,0.030513612553477,-0.071140743792057]]],[[[-0.17755255103111,-0.23762789368629,-0.043928328901529],[-0.3421376645565,-0.41498118638992,0.040719129145145],[-0.011207472532988,0.17447505891323,0.045381523668766]],[[0.0076865279115736,-0.015539242886007,-0.06342389434576],[-0.034327261149883,-0.018960479646921,0.049377378076315],[-0.033733855932951,-0.056589461863041,-0.027870694175363]],[[-0.015857988968492,0.058440256863832,-0.10215047746897],[0.022344600409269,0.055886425077915,0.014756298623979],[-0.093264825642109,0.033094432204962,-0.05465367808938]],[[0.033797834068537,0.055628638714552,-0.062648624181747],[0.01852922514081,-0.11002262681723,0.025225237011909],[-0.082859843969345,-0.25119149684906,0.017703015357256]],[[-0.0030980547890067,-0.087177239358425,0.070669412612915],[-0.24701575934887,0.069303549826145,0.0647988691926],[-0.11008168756962,0.098001927137375,0.060177944600582]],[[0.17377932369709,0.14062766730785,0.05702992156148],[-0.06758725643158,0.02884435094893,-0.080343633890152],[0.095316760241985,-0.042433757334948,-0.12968622148037]],[[-0.04967387393117,0.097989805042744,-0.15491731464863],[0.056785527616739,-0.17757149040699,-0.18102766573429],[-0.015518553555012,-0.0011146104661748,0.11183648556471]],[[-0.053197897970676,-0.098577849566936,0.033121924847364],[-0.074882045388222,-0.12391819804907,0.10631351172924],[0.16901306807995,-0.072060160338879,-0.077066130936146]],[[-0.07555765658617,0.10721715539694,0.071941643953323],[-0.073003023862839,-0.16363070905209,-0.14794251322746],[-0.24682322144508,0.038627482950687,0.021375924348831]],[[-0.12682089209557,-0.025349553674459,0.014602097682655],[0.08301156014204,0.076315149664879,-0.067242123186588],[0.112523175776,0.10046829283237,-0.085307016968727]],[[-0.057661283761263,0.037413652986288,-0.20683300495148],[0.0098648890852928,-0.034331150352955,-0.17419363558292],[0.10584681481123,0.036887511610985,0.20252111554146]],[[-0.012122576124966,0.093614719808102,0.074320085346699],[0.0089652426540852,0.12834687530994,-0.20406192541122],[0.0067675849422812,-0.0061349351890385,-0.13644747436047]],[[-0.17710864543915,-0.052145984023809,-0.18608812987804],[0.035983253270388,0.033867705613375,0.086553536355495],[-0.094854183495045,0.044312410056591,0.26136672496796]],[[0.040792159736156,0.089210413396358,0.054257929325104],[-0.0060537508688867,0.033981401473284,0.03719462826848],[0.044502545148134,-0.0010587162105367,-0.17340834438801]],[[0.080618739128113,0.18109753727913,0.23513709008694],[0.085747748613358,-0.21222661435604,0.020874280482531],[0.048934765160084,-0.21898449957371,-0.25358888506889]],[[0.028930649161339,0.12204463779926,0.15532943606377],[-0.24619001150131,-0.010359022766352,0.22090831398964],[-0.12455085664988,0.025454821065068,-0.084176003932953]],[[0.085407689213753,0.11039573699236,0.23774373531342],[0.02385981567204,-0.039556924253702,0.07043994218111],[-0.0029690524097532,-0.16377086937428,-0.015036433003843]],[[0.14316889643669,-0.01400899887085,-0.01355801243335],[0.15847040712833,-0.11700998991728,-0.032644242048264],[-0.10411468148232,-0.011593917384744,-0.011594917625189]],[[0.27963197231293,-0.038135480135679,-0.056034900248051],[0.095647349953651,0.10625834017992,0.011432811617851],[-0.072509288787842,0.034292008727789,-0.11384488642216]],[[-0.23493780195713,0.06414420902729,-0.051202412694693],[-0.17593719065189,-0.21296325325966,0.21377597749233],[-0.16078399121761,-0.049542143940926,0.045020826160908]],[[-0.025976838544011,-0.084951177239418,-0.017951967194676],[0.15038834512234,-0.086283877491951,0.031556591391563],[-0.026988126337528,-0.0022380431182683,0.05810958147049]],[[-0.15881478786469,0.023430230095983,0.11103580892086],[-0.091977499425411,0.014339618384838,0.14763475954533],[0.075967937707901,-0.14683543145657,0.035496361553669]],[[0.1254049539566,-0.0017148653278127,-0.054948017001152],[0.1420423835516,0.15619646012783,-0.013340674340725],[0.018281219527125,-0.034853737801313,0.027534237131476]],[[-0.17548096179962,-0.23359631001949,-0.033572491258383],[-0.090485967695713,-0.0053936326876283,0.20334608852863],[0.105011112988,0.1089334487915,0.11572317779064]],[[-0.094373039901257,0.097967840731144,-0.050269477069378],[-0.087489388883114,-0.091067023575306,-0.0040470818057656],[0.1234430745244,0.16658060252666,0.03564603254199]],[[0.036055572330952,0.016529513522983,0.067428834736347],[0.015441343188286,-0.06622227281332,-0.056694772094488],[0.081846617162228,-0.075746648013592,0.086286224424839]],[[0.069058038294315,-0.14771927893162,-0.057064034044743],[0.065903432667255,-0.19949269294739,0.074948199093342],[0.042371235787868,-0.12211430817842,-0.19248716533184]],[[0.1415486484766,0.039320334792137,0.049785323441029],[-0.11657072603703,0.18721814453602,-0.24623380601406],[0.029073137789965,-0.13540445268154,0.07327775657177]],[[0.11100976914167,-0.0037868898361921,0.0035323319025338],[-0.026220686733723,-0.049568962305784,0.058262642472982],[-0.037684313952923,-0.19776628911495,-0.059393174946308]],[[0.043288972228765,-0.046804111450911,0.046369642019272],[0.0076959561556578,0.043447639793158,0.068561837077141],[-0.42367851734161,-0.15210480988026,0.093926191329956]],[[0.059373077005148,0.092859223484993,-0.016319628804922],[-0.034436006098986,-0.12774835526943,0.049943413585424],[-0.11772710084915,-0.017751350998878,0.0029923852998763]],[[0.018979195505381,-0.049634594470263,-0.16483825445175],[0.0055232695303857,-0.18540713191032,-0.27697852253914],[-0.10571359843016,0.07838761806488,-0.22366560995579]]],[[[-0.084955342113972,0.030738418921828,0.0010708082700148],[0.30013230443001,0.049574721604586,0.015839288011193],[0.013383533805609,0.047020401805639,0.0096156839281321]],[[-0.0099529400467873,-0.065399475395679,0.036454819142818],[0.11116290837526,-0.013558344915509,-0.056718464940786],[0.049126286059618,-0.017568044364452,0.13475225865841]],[[-0.055789325386286,0.027056651189923,0.05735881254077],[0.061469979584217,0.10013606399298,-0.030624087899923],[-0.020115077495575,0.0006146181258373,0.12455230951309]],[[0.0013300469145179,0.090979151427746,0.04289174079895],[-0.31443703174591,-0.11815025657415,0.10273932665586],[-0.05527900904417,-0.051055904477835,-0.1065539419651]],[[-0.11080048978329,0.093615025281906,0.021093815565109],[-0.029379280284047,-0.029599422588944,-0.051649808883667],[-0.06060341745615,0.052214205265045,0.055603891611099]],[[0.071717321872711,-0.09633844345808,0.061807584017515],[0.10643813759089,0.11872924119234,0.026522632688284],[-0.08684404194355,0.12000942975283,-0.031322807073593]],[[0.025234574452043,0.039542239159346,0.021331800147891],[-0.0071515534073114,0.019440151751041,0.15350350737572],[0.01610741391778,-0.14022891223431,-0.01360153593123]],[[0.024531096220016,-0.0069659277796745,0.11059956997633],[-0.082417272031307,-0.16100527346134,-0.088495321571827],[0.07554467767477,-0.018717061728239,0.017889386042953]],[[0.023393804207444,0.03963628038764,-0.085640229284763],[-0.03269337117672,-0.038737170398235,-0.095290333032608],[-0.056121706962585,0.094642244279385,0.031047960743308]],[[0.066067807376385,-0.032224271446466,-0.034696772694588],[0.073393873870373,0.11356021463871,-0.058216966688633],[0.084341205656528,-0.1461675465107,-0.059585060924292]],[[-0.020060749724507,-0.0014668074436486,0.079972885549068],[0.032295625656843,0.018717050552368,0.053331598639488],[-0.070833496749401,0.022567434236407,-0.018907401710749]],[[-0.0218814779073,0.031839367002249,-0.029163951054215],[0.13089269399643,0.075671479105949,-0.01589754037559],[-0.04314137622714,-0.02275975048542,0.048249732702971]],[[0.15575282275677,-0.024586724117398,0.086015932261944],[0.087665878236294,0.10858728736639,-0.11132388561964],[-0.04862741753459,0.079629153013229,-0.17453074455261]],[[-0.11644122749567,0.028447670862079,-0.0053960662335157],[-0.13796083629131,0.0022996517363936,-0.099486343562603],[-0.028497943654656,0.16748633980751,0.071519628167152]],[[0.030336959287524,-0.13620394468307,0.044808126986027],[0.0031992748845369,-0.018525455147028,-0.042738508433104],[-0.0056878072209656,-0.10377152264118,0.11764875054359]],[[0.049757674336433,-0.16509614884853,0.05996323749423],[0.093943014740944,0.0010379072045907,0.0091447485610843],[0.089997559785843,-0.14183993637562,0.09505320340395]],[[-0.028238272294402,0.028441686183214,0.07078292965889],[-0.015826322138309,-0.11678643524647,-0.050086509436369],[0.036116816103458,0.13239316642284,-0.072929598391056]],[[-0.05328943580389,0.0061544720083475,0.058633677661419],[-0.037434261292219,-0.07475034147501,0.060182947665453],[-0.057657342404127,-0.0062017017044127,0.027957623824477]],[[0.11161141842604,0.28376293182373,0.029802551493049],[0.057973098009825,0.06571602076292,-0.039292652159929],[-0.14767047762871,0.09456168115139,0.0033708475530148]],[[-0.051782369613647,0.044345539063215,-0.019222812727094],[-0.085791416466236,0.27455124258995,0.041000623255968],[-0.061029586941004,-0.051968384534121,0.093107610940933]],[[0.0019753945525736,0.070852428674698,-0.016137359663844],[-0.061339743435383,0.019050719216466,-0.086446508765221],[0.096604369580746,0.092041864991188,0.1293903440237]],[[0.029737267643213,0.033412802964449,0.072153754532337],[-0.10646318644285,0.026054246351123,0.01791375875473],[-0.11554054170847,-0.14755119383335,0.1122870221734]],[[0.10129491984844,-0.04075612872839,-0.022759335115552],[-0.055054988712072,-0.18223097920418,0.021411448717117],[-0.067959122359753,0.0095757246017456,0.05523044988513]],[[0.035807784646749,0.1776147633791,0.11997862905264],[0.031032653525472,0.3222724199295,0.093654371798038],[-0.20358051359653,0.069680459797382,0.0087239742279053]],[[-0.086952306330204,-0.11849762499332,-0.029961114749312],[-0.070967480540276,0.10113067924976,-0.065608970820904],[0.05267421156168,0.040118135511875,-0.072523087263107]],[[0.096257872879505,0.006555940490216,-0.014393734745681],[-0.18162758648396,-0.0093693248927593,-0.016512043774128],[0.18371358513832,0.026205893605947,-0.027332365512848]],[[0.042500287294388,-0.11581785231829,-0.20690031349659],[0.044297274202108,-0.29694357514381,0.064441256225109],[0.048988964408636,0.015929391607642,0.026337089017034]],[[0.066688932478428,-0.0930270627141,-0.083512373268604],[-0.0028832943644375,-0.13767664134502,-0.011001684702933],[-0.093065105378628,0.027263900265098,0.050298426300287]],[[-0.095632165670395,-0.054477479308844,0.037079911679029],[-0.12954233586788,-0.091539993882179,0.046339005231857],[-0.00027308228891343,-0.064094804227352,-0.11538382619619]],[[-0.03128669410944,-0.10029432922602,-0.011798446998],[-0.1683574616909,-0.037540681660175,0.16943083703518],[-0.0058074630796909,-0.0076476018875837,0.0017469042213634]],[[-0.17072582244873,0.0079925870522857,-0.0097045507282019],[-0.10030286759138,-0.044266935437918,0.14367106556892],[0.041342116892338,-0.0042677926830947,0.069701112806797]],[[0.0025110277347267,-0.004441911354661,-0.10565201938152],[0.044864997267723,-0.17045336961746,-0.22708290815353],[0.040446054190397,-0.12356099486351,-0.081381164491177]]],[[[-0.19684889912605,-0.25408479571342,-0.20148831605911],[-0.13867382705212,-0.15786328911781,-0.059336271136999],[0.05423167720437,0.14189369976521,-0.041939530521631]],[[-0.062365930527449,0.14208002388477,-0.014624473638833],[-0.12266862392426,0.0062257400713861,0.14109835028648],[-0.12530156970024,0.088450856506824,-0.10282111912966]],[[-0.32209625840187,-0.13193257153034,0.075031563639641],[0.030240852385759,0.075784049928188,0.079769305884838],[-0.014041660353541,-0.021163377910852,0.01133603323251]],[[-0.13866348564625,-0.16031321883202,-0.26215246319771],[0.030140832066536,0.14918169379234,-0.16817949712276],[-0.11920553445816,-0.16384503245354,-0.11569733917713]],[[0.061870686709881,-0.0634376257658,-0.077776506543159],[0.094308406114578,-0.18307203054428,-0.075455814599991],[-0.030065394937992,0.088455155491829,-0.083750441670418]],[[-0.0065428609959781,-0.13546127080917,0.067923687398434],[0.13026107847691,0.029960421845317,-0.14571911096573],[-0.14275421202183,0.026233665645123,0.095610477030277]],[[-0.010086460970342,0.040686395019293,-0.1599146425724],[0.31640127301216,0.10696963220835,-0.034436870366335],[0.055205747485161,-0.029624108225107,-0.14768427610397]],[[0.092135831713676,-0.0013794117840007,-0.049184381961823],[-0.014280895702541,-0.081487901508808,-0.14415287971497],[-0.13347180187702,0.088513493537903,-0.0029477165080607]],[[-0.21348737180233,-0.16395474970341,0.15421044826508],[-0.10790121555328,-0.029384095221758,0.036456368863583],[-0.053410783410072,-0.034727614372969,0.13409641385078]],[[-0.063834026455879,-0.16329976916313,0.046287331730127],[-0.012466735206544,0.040860265493393,0.20388829708099],[-0.060058701783419,0.027496909722686,0.14550510048866]],[[-0.21639057993889,-0.030376551672816,-0.11329892277718],[0.024153493344784,-0.063343621790409,0.099802784621716],[0.12536355853081,0.1115066036582,-0.10734515637159]],[[-0.16895319521427,-0.096830300986767,0.0019024226348847],[0.038607131689787,-0.11141890287399,-0.02126782014966],[0.067945122718811,0.11976708471775,0.1963602155447]],[[-0.25161978602409,-0.088957943022251,-0.027612799778581],[-0.048940517008305,-0.082838281989098,-0.12808795273304],[0.14945784211159,-0.20473071932793,0.021972306072712]],[[0.14696730673313,-0.0079485364258289,-0.078848801553249],[0.063546821475029,-0.058366890996695,-0.054903589189053],[0.1183173134923,0.017285225912929,-0.10201232135296]],[[-0.027156481519341,0.17848911881447,-0.11755699664354],[0.059031441807747,0.09107232093811,0.094912849366665],[-0.031469121575356,-0.14767727255821,0.025827387347817]],[[-0.07126971334219,-0.034291807562113,0.19112403690815],[0.014858799055219,-0.11259616911411,0.17270648479462],[0.061029952019453,-0.07765306532383,-0.00027031046920456]],[[-0.030897444114089,-0.074095100164413,0.090528883039951],[0.078156590461731,0.099424168467522,0.032957922667265],[0.067121341824532,-0.1475710272789,-0.11045861244202]],[[-0.075261563062668,0.0082967774942517,-0.090379506349564],[-0.20518542826176,-0.13601745665073,-0.12224993854761],[-0.084722027182579,0.032523553818464,0.069924898445606]],[[0.13308309018612,0.033861238509417,0.048310622572899],[-0.069415152072906,0.052237723022699,0.027117012068629],[0.10993187874556,0.019740058109164,-0.05506207048893]],[[0.057231239974499,-0.0046573928557336,-0.24770124256611],[-0.12835673987865,-0.18028324842453,-0.18064148724079],[-0.1315985172987,-0.022751353681087,-0.1933126449585]],[[0.084492281079292,0.13393057882786,0.057536136358976],[-0.14418484270573,0.10189288854599,0.2060023099184],[-0.24858556687832,-0.067741900682449,0.065298244357109]],[[0.023708909749985,-0.085099749267101,-0.11007913202047],[-0.076262556016445,0.10796838253736,0.038791760802269],[-0.21348541975021,0.067190907895565,-0.010935101658106]],[[-0.24053554236889,-0.18288861215115,-0.12551781535149],[-0.11988221108913,-0.012244252488017,0.026144828647375],[-0.14360439777374,0.023738199844956,0.0056560034863651]],[[0.13481085002422,-0.082041688263416,-0.14952489733696],[0.062153209000826,-0.1142814680934,-0.18468163907528],[-0.06504013389349,0.065699212253094,-0.12861531972885]],[[-0.099599242210388,-0.031128911301494,0.0071646650321782],[-0.098567649722099,-0.012492910958827,-0.073104664683342],[0.15014584362507,-0.13850109279156,0.011837628670037]],[[0.032135739922523,-0.0055269608274102,0.010612632147968],[0.13628667593002,0.062007900327444,-0.10638403147459],[0.019618928432465,0.011660991236567,-0.058118257671595]],[[-0.093102514743805,0.056730486452579,0.20207305252552],[-0.015965025871992,-0.099857404828072,0.087411977350712],[-0.0069443471729755,0.099816046655178,0.18436221778393]],[[-0.19335825741291,0.024221602827311,0.25746881961823],[-0.010200307704508,0.23109309375286,-0.022110080346465],[0.0042854086495936,-0.081350401043892,-0.011413348838687]],[[0.056875161826611,0.10630468279123,0.065822020173073],[0.0069962348788977,0.029499918222427,0.16736833751202],[0.10494220256805,-0.27341771125793,-0.16497817635536]],[[0.10576971620321,-0.09267833083868,-0.35383579134941],[-0.036363296210766,-0.04797512665391,0.16835398972034],[-0.03703111410141,0.036351002752781,-0.074688650667667]],[[0.065213218331337,-0.091026715934277,-0.093804329633713],[-0.099528782069683,-0.0449991337955,-0.16679264605045],[-0.016994405537844,0.099448777735233,-0.030860925093293]],[[-0.14026436209679,0.091260880231857,0.020571514964104],[-0.072247110307217,0.13585676252842,0.12722343206406],[0.24786300957203,-0.077283427119255,0.046870693564415]]],[[[-0.049562927335501,-0.093108549714088,0.014334777370095],[-0.046254094690084,-0.0014660900924355,0.021788489073515],[-0.13606083393097,0.12371670454741,-0.12572632730007]],[[0.0046987566165626,0.0065836310386658,0.04715545848012],[0.022524401545525,-0.10521373897791,0.032834064215422],[0.09584990888834,0.11587802320719,-0.12398477643728]],[[-0.1074280962348,0.016334887593985,-0.0074043027125299],[0.010161058045924,0.085573069751263,0.027183186262846],[-0.070886991918087,0.014834253117442,-0.036793176084757]],[[-0.059724293649197,0.034806873649359,-0.022150091826916],[-0.19674043357372,0.16839355230331,0.081322051584721],[-0.10899148881435,0.0081715881824493,0.035443939268589]],[[0.048555333167315,0.10423473268747,-0.16658486425877],[0.072147004306316,0.033329740166664,0.063270829617977],[-0.092231579124928,0.12891182303429,0.024927955120802]],[[-0.02948878519237,0.078288033604622,0.026689574122429],[-0.11714102327824,-0.13120239973068,-0.073576971888542],[-0.23808953166008,0.017843961715698,0.10086359828711]],[[0.01080303452909,-0.027901619672775,0.038592953234911],[0.04941538348794,-0.11346105486155,0.0016058860346675],[0.031396679580212,-0.081210620701313,-0.0059534427709877]],[[0.12828490138054,0.051030311733484,-0.048690520226955],[0.051160868257284,-0.028235433623195,0.036827448755503],[-0.13943049311638,-0.13478420674801,0.043745547533035]],[[-0.053496234118938,0.030663426965475,0.089294336736202],[0.066643834114075,-0.039024520665407,0.0052834753878415],[0.16701319813728,-0.082566067576408,-0.1854500323534]],[[-0.069852538406849,0.0022929620463401,-0.012153283692896],[-0.035655431449413,0.040705110877752,-0.086259394884109],[0.013105735182762,-0.028319695964456,0.017525188624859]],[[-0.040086377412081,-0.10747975111008,0.12737517058849],[-0.057701051235199,-0.045845746994019,-0.011537444777787],[0.03058504499495,0.052045527845621,0.04281709343195]],[[-0.010494758374989,-0.082514263689518,-0.07722070813179],[-0.018948884680867,0.1815457046032,-0.06243247538805],[-0.044130921363831,-0.10310553759336,0.012404727749527]],[[0.013453580439091,0.064430512487888,-0.014629749581218],[-0.061580501496792,-0.033896643668413,-0.070892497897148],[-0.029403144493699,0.20598067343235,-0.091220580041409]],[[-0.011868600733578,0.2026774585247,0.14590609073639],[-0.097548238933086,-0.10667220503092,0.032364796847105],[0.014845964498818,-0.12379521876574,-0.023118536919355]],[[-0.088560447096825,0.020204164087772,0.0853655859828],[-0.18991093337536,-0.1011778190732,-0.0081450715661049],[0.045486886054277,-0.06840493530035,0.037106446921825]],[[0.053696122020483,-0.057562407106161,0.17757597565651],[0.091043204069138,-0.087438806891441,0.014985063113272],[-0.026643894612789,-0.052557893097401,-0.051099091768265]],[[-0.01644585095346,-0.08999315649271,-0.026137687265873],[0.11311002075672,0.041817106306553,-0.0065749920904636],[0.0044662556611001,-0.21036173403263,0.0035245413891971]],[[-0.048386126756668,-0.040480248630047,0.06467005610466],[0.024519193917513,-0.16363351047039,-0.010760271921754],[-0.12225007265806,0.037549316883087,0.048468351364136]],[[-0.031417518854141,-0.22924429178238,0.12902230024338],[0.0042521911673248,-0.070903480052948,-0.089327409863472],[-0.045649878680706,-0.080328948795795,0.061819724738598]],[[0.07389759272337,-0.17478077113628,0.025144832208753],[0.22656911611557,-0.13699914515018,-0.00071037415182218],[-0.06795421987772,0.06858092546463,-0.048800770193338]],[[-0.098569467663765,0.11904194951057,-0.067296586930752],[-0.062931515276432,-0.036094535142183,0.047558158636093],[-0.071435160934925,-0.19146619737148,-0.062617711722851]],[[0.034757934510708,-0.054290220141411,-0.030064737424254],[0.056605082005262,-0.074388734996319,0.012406229041517],[-0.054491877555847,0.14672654867172,-0.0042689144611359]],[[-0.0336002856493,-0.23736031353474,-0.0071048242971301],[-0.12066286802292,0.11615744233131,0.16615726053715],[0.028420874848962,0.076174385845661,0.07425357401371]],[[-0.091347903013229,0.077547013759613,-0.018150912597775],[0.079472161829472,0.10909267514944,0.061475809663534],[-0.073630169034004,0.0026876074261963,0.068770505487919]],[[-0.012163482606411,0.15060918033123,-0.048665586858988],[0.1262097209692,-0.17446288466454,-0.039341673254967],[0.094091884791851,0.094883382320404,-0.073104843497276]],[[-0.029495615512133,0.077241323888302,-0.022372931241989],[-0.22118648886681,0.07919953763485,0.093441568315029],[-0.010406410321593,-0.056159872561693,0.070100128650665]],[[-0.016690704971552,0.15131314098835,-0.059799548238516],[-0.048375274986029,0.025235842913389,-0.063605412840843],[0.086790695786476,0.019742405042052,0.025459032505751]],[[0.041723400354385,-0.090083792805672,-0.04398275539279],[-0.15704090893269,-0.085332036018372,-0.040613751858473],[-0.0042341039516032,-0.020303571596742,0.039292212575674]],[[-0.055717248469591,0.013816557824612,0.046894777566195],[-0.10335198789835,0.23441083729267,0.079584382474422],[0.017067544162273,-0.14020654559135,0.094810009002686]],[[-0.0061377384699881,-0.072338685393333,0.055661592632532],[0.054589491337538,0.05548195540905,-0.12832142412663],[0.030593350529671,0.097228795289993,-0.066058829426765]],[[0.068136230111122,-0.045870631933212,-0.0181337390095],[0.007791236974299,0.062922187149525,0.0073120626620948],[-0.061118122190237,-0.041036080569029,0.070444069802761]],[[-0.021746918559074,-0.077028840780258,-0.027097227051854],[-0.0011631522793323,-0.13923488557339,-0.01018063724041],[-0.0087619312107563,0.12908054888248,-0.085736498236656]]],[[[-0.032048106193542,-0.026773413643241,-0.051180474460125],[-0.039932895451784,0.0093381674960256,-0.12508594989777],[-0.020378703251481,-0.048381570726633,-0.16334122419357]],[[0.11215092241764,0.054931003600359,-0.010440320707858],[0.064977563917637,-0.048147339373827,0.023607702925801],[-0.063735701143742,-0.06585443764925,-0.036420091986656]],[[0.12492699176073,-0.014931986108422,0.10106164216995],[-0.07336850464344,-0.065795823931694,-0.04953807592392],[-0.065721496939659,0.042016368359327,-0.0014447974972427]],[[0.072896555066109,-0.030840655788779,-0.071669213473797],[-0.042548179626465,0.0087391072884202,-0.11193966120481],[0.128188341856,0.057970564812422,-0.10607171803713]],[[-0.12802566587925,0.18983617424965,-0.18846343457699],[0.071531675755978,-0.11355450749397,0.15541213750839],[0.054533034563065,0.024787159636617,-0.071926295757294]],[[-0.12968690693378,0.077907361090183,0.042217634618282],[0.019740169867873,-0.047060135751963,-0.10452197492123],[0.0069707878865302,0.0088014537468553,-0.035154059529305]],[[-0.0063635194674134,-0.018007546663284,0.11606226116419],[0.11043327301741,0.060815945267677,-0.098852194845676],[-0.092143759131432,0.11761975288391,-0.0071979281492531]],[[-0.059912368655205,0.055808145552874,0.017753509804606],[-0.036370903253555,0.16916692256927,-0.058620717376471],[0.0040686074644327,-0.015693712979555,-0.076531782746315]],[[-0.019298797473311,0.03862226754427,0.057835295796394],[-0.18101327121258,-0.078900046646595,0.161436393857],[0.18275144696236,-0.12060608714819,0.063350602984428]],[[-0.15082670748234,-0.042808067053556,0.027401331812143],[-0.074759192764759,0.03440785035491,0.044582266360521],[0.10759183764458,0.09744593501091,-0.012443516403437]],[[-0.10134240984917,-0.0469591319561,-0.024430867284536],[0.036360759288073,-0.053634289652109,-0.033811457455158],[-0.038100000470877,-0.027290904894471,0.11339902877808]],[[0.045401200652122,-0.10069192945957,-0.047907069325447],[0.063313774764538,-0.090509258210659,0.19319546222687],[-0.1057657673955,0.043450981378555,-0.044141627848148]],[[0.0065562422387302,0.17742401361465,0.18781216442585],[-0.066708326339722,-0.028289614245296,-0.15595661103725],[0.078347489237785,-0.042257461696863,-0.084263168275356]],[[0.049875069409609,-0.069478563964367,0.03437576815486],[0.090445011854172,0.11650573462248,-0.033146392554045],[-0.099114753305912,-0.10547617822886,-0.066963382065296]],[[-0.05783786252141,0.0088609056547284,0.092558011412621],[-0.12366410344839,-0.075901418924332,0.12896454334259],[-0.25293320417404,0.068305984139442,0.037936560809612]],[[-0.15136829018593,0.078786060214043,-0.0013073114678264],[-0.0055304230190814,-0.20723956823349,0.076052866876125],[-0.068347528576851,0.15165674686432,-0.01222238317132]],[[0.072964772582054,0.044628519564867,-0.092556223273277],[0.15549151599407,0.10613951086998,0.10151473432779],[0.0026391868013889,0.048544812947512,0.086903132498264]],[[-0.085345573723316,0.060942947864532,0.068708062171936],[-0.053730629384518,0.18639570474625,0.00026722848997451],[-0.032094441354275,0.063004799187183,0.010522924363613]],[[0.029969524592161,-0.07641514390707,0.18799239397049],[-0.031205646693707,0.13875077664852,-0.035957645624876],[0.022791126742959,-0.13936543464661,-0.010657045058906]],[[0.070200130343437,-0.11474653333426,-0.12737639248371],[-0.07940436154604,0.0048059029504657,0.013878318481147],[0.080942586064339,-0.11376184225082,0.017697231844068]],[[0.16457089781761,-0.10359359532595,-0.12928237020969],[0.052014876157045,0.12236777693033,0.10383561253548],[0.036541007459164,-0.095267049968243,-0.14087177813053]],[[-0.071099057793617,0.11102741211653,-0.10120648890734],[-0.12978187203407,0.0055023729801178,-0.023011531680822],[-0.026556586846709,0.023925986140966,0.14678122103214]],[[-0.13722401857376,-0.092457935214043,-0.1119140535593],[-0.09277106821537,0.10100661218166,-0.18487805128098],[-0.019788503646851,0.18279899656773,0.011852688156068]],[[0.052272081375122,0.074617244303226,-0.10613842308521],[0.0017329088877887,0.017818842083216,-0.08259766548872],[0.15260325372219,-0.15915149450302,0.042349815368652]],[[-0.051117606461048,0.097831696271896,-0.0052014105021954],[-0.22127705812454,0.016539754346013,-0.057255618274212],[0.12713408470154,0.045805286616087,0.065308079123497]],[[-0.1678806245327,0.1284024566412,0.016530761495233],[-0.086623162031174,0.04846503958106,-0.019828364253044],[-0.0025950723793358,-0.023300936445594,-0.039328947663307]],[[-0.12088122218847,0.037623859941959,-0.22634747624397],[0.0014537664828822,0.1590374559164,0.10926628857851],[-0.040944557636976,0.014329479075968,0.0039071501232684]],[[-0.11172652989626,-0.1258832514286,0.071192301809788],[-0.03925096988678,-0.0075503569096327,0.1177281960845],[-0.080193608999252,-0.073335692286491,0.011935382150114]],[[0.046615891158581,-0.033157903701067,-0.048853255808353],[-0.0060556451790035,0.046123165637255,0.019419573247433],[-0.095112465322018,-0.035525768995285,-0.056073952466249]],[[-0.083260208368301,0.048039101064205,-0.043405614793301],[-0.049171891063452,-0.043898239731789,0.10109166800976],[0.11195945739746,-0.1245054975152,-0.026526536792517]],[[0.051912140101194,-0.19683480262756,-0.017037181183696],[0.063698068261147,-0.20634606480598,-0.067406222224236],[0.069128714501858,0.0021659964695573,0.070388399064541]],[[-0.016566323116422,-0.071206636726856,-0.013727722689509],[0.051313690841198,0.20871536433697,0.0096267387270927],[0.0075842472724617,-0.072156235575676,0.073799021542072]]],[[[-0.048578187823296,0.067889660596848,-0.11201582103968],[0.12241434305906,0.041019152849913,-0.00048539202543907],[0.046976581215858,0.070093937218189,-0.015498124063015]],[[-0.033589962869883,0.048172686249018,0.0022651941981167],[0.045624006539583,0.010168782435358,-0.1316152215004],[0.028549000620842,-0.040635693818331,-0.073410339653492]],[[-0.049770370125771,-0.098598219454288,-0.014068304561079],[-0.12114381790161,0.080134190618992,0.05844447389245],[-0.072265803813934,-0.052063677459955,0.12462864816189]],[[0.04117301478982,0.01334408018738,0.14660832285881],[-0.21453368663788,-0.16765388846397,-0.15627580881119],[-0.17983239889145,-0.12336165457964,-0.10316523909569]],[[-0.057751290500164,0.021345863118768,-0.077823653817177],[-0.10636455565691,-0.072050519287586,-0.077444188296795],[0.039770215749741,-0.00065782701130956,0.13112606108189]],[[-0.084230661392212,0.10734970122576,-0.053868621587753],[0.0087688183411956,-0.023184698075056,0.0090482085943222],[-0.036549605429173,0.18341791629791,0.032251723110676]],[[-0.036154367029667,0.12831801176071,-0.11883582174778],[-0.18333435058594,0.029473461210728,0.090251922607422],[-0.24043147265911,-0.093368202447891,0.089449092745781]],[[-0.089635401964188,0.13989396393299,0.12482897937298],[0.14231185615063,0.065043069422245,-0.14868472516537],[-0.011127575300634,-0.070063278079033,0.099816031754017]],[[-0.02060117572546,-0.16826429963112,0.090680561959743],[0.065672881901264,-0.11675395071507,0.0091380840167403],[0.28772678971291,-0.38198736310005,-0.16719835996628]],[[0.11428632587194,0.037160228937864,-0.076992131769657],[-0.067833669483662,-0.008721143938601,0.14228318631649],[-0.10236813127995,-0.08737014234066,0.13005387783051]],[[-0.097653679549694,0.033769886940718,-0.11131437122822],[0.084845714271069,0.17888395488262,0.094421915709972],[0.035007022321224,0.036255437880754,0.022824896499515]],[[0.0039547621272504,-0.14436581730843,-0.19938999414444],[-0.065001629292965,0.12467197328806,-0.082484066486359],[0.12433575093746,-0.0042265183292329,0.058850646018982]],[[-0.13821735978127,0.13500897586346,-0.049075976014137],[0.060197327286005,0.087426617741585,-0.06267025321722],[-0.11990424990654,-0.067573897540569,-0.025528134778142]],[[0.27692925930023,-0.071964606642723,-0.073212236166],[-0.028104482218623,0.065478682518005,-0.11524851620197],[-0.10405328124762,-0.14729122817516,0.023788137361407]],[[0.072633929550648,-0.23499463498592,-0.25952351093292],[0.17118760943413,0.34218662977219,-0.21179169416428],[-0.066307283937931,-0.043503165245056,-0.0014017273206264]],[[0.018948212265968,-0.16166651248932,-0.15747284889221],[0.10783302783966,-0.094118215143681,-0.024149056524038],[0.075409509241581,0.029313551262021,0.14367803931236]],[[-0.14129011332989,-0.054765041917562,-0.12076272070408],[-0.073694095015526,-0.064420752227306,-0.0004869548138231],[-0.099292129278183,0.074250474572182,-0.029017098248005]],[[-0.081659600138664,-0.0061720791272819,0.033114898949862],[-0.13793866336346,0.10297626256943,0.077237762510777],[-0.012890443205833,0.02697704359889,-0.13530266284943]],[[0.003283926518634,0.08439327031374,0.2113062441349],[0.063410386443138,0.026540847495198,0.11713104695082],[0.034892775118351,0.12950463593006,0.0084967184811831]],[[-0.079462334513664,-0.096998155117035,-0.097126364707947],[-0.036159455776215,-0.11134268343449,-0.17944319546223],[0.016772825270891,0.088488295674324,0.13251312077045]],[[0.030467573553324,0.030822264030576,0.2950564622879],[-0.082802101969719,-0.071906112134457,-0.0033754883334041],[0.15532602369785,-0.18441945314407,-0.19648922979832]],[[0.057234235107899,-0.023715557530522,0.14107771217823],[0.10369507223368,0.1660613566637,-0.11717643588781],[-0.070682443678379,-0.088384792208672,-0.22771897912025]],[[0.0056851399131119,0.16740739345551,0.2385379076004],[-0.060083117336035,0.028674667701125,-0.067496828734875],[0.06329208612442,-0.026936268433928,-0.16112484037876]],[[-0.15875765681267,0.00056746980408207,0.040212523192167],[-0.10574423521757,-0.15236346423626,-0.13382463157177],[0.05302869528532,-0.033780485391617,-0.076220899820328]],[[0.012965097092092,-0.042849749326706,0.083415649831295],[-0.18442122638226,-0.15232446789742,0.054775208234787],[0.25704598426819,0.046827983111143,-0.075846567749977]],[[0.10274950414896,-0.0029112068004906,0.073074094951153],[0.074623353779316,-0.083384588360786,-0.11475168168545],[-0.1057451069355,-0.062052827328444,0.013761381618679]],[[0.031348992139101,-0.21227210760117,0.06866741925478],[0.020401872694492,0.19671301543713,-0.064326673746109],[-0.066945768892765,-0.18717058002949,0.043147392570972]],[[-0.17396664619446,-0.38527348637581,-0.065530344843864],[0.29256284236908,0.071340657770634,0.044990584254265],[0.11365818232298,0.090021215379238,-0.16067790985107]],[[-0.041937913745642,0.03060514293611,-0.1632853448391],[0.14785277843475,-0.033945314586163,-0.23665447533131],[0.18561677634716,0.077240064740181,-0.15131531655788]],[[0.0041518355719745,0.20579779148102,-0.053093995898962],[-0.20121352374554,-0.25929376482964,0.12037009745836],[-0.048544280230999,-0.06425042450428,-0.014999289065599]],[[0.050527054816484,-0.03644648194313,-0.15029184520245],[-0.1244619935751,0.020064862444997,0.018688850104809],[-0.15070234239101,0.00082345952978358,0.16058479249477]],[[-0.11224692314863,-0.02458668500185,-0.049352686852217],[0.072241775691509,0.18016284704208,-0.09988734126091],[0.059588003903627,0.16033561527729,0.026639642193913]]],[[[-0.20587049424648,0.092925138771534,-0.052923172712326],[0.020971035584807,-0.019517468288541,-0.08455602824688],[0.008083482272923,-0.09288477152586,-0.0018948423676193]],[[0.014472980052233,0.12234675884247,0.011329263448715],[-0.0015219708438963,-0.032249841839075,-0.071916855871677],[-0.0006253857864067,-0.027141712605953,0.011062270030379]],[[-0.11172089725733,0.081489689648151,0.0048331520520151],[-0.0081867687404156,-0.026370596140623,-0.066192589700222],[0.0089232455939054,0.047451417893171,-0.027771508321166]],[[0.10585056245327,-0.14230604469776,-0.095189854502678],[-0.25856971740723,0.12295760214329,0.019692262634635],[0.026226347312331,0.081531018018723,0.058795310556889]],[[0.064702622592449,-0.074709638953209,-0.086563564836979],[-0.09696851670742,0.091786526143551,0.091385267674923],[-0.054099075496197,0.08332372456789,-0.067585296928883]],[[-0.0096312565729022,0.0070436289533973,0.022473987191916],[-0.071328230202198,0.054637812077999,0.060295943170786],[0.023457670584321,-0.047652095556259,-0.030794693157077]],[[-0.10583718121052,0.11927754431963,-0.01833825185895],[0.031016238033772,-0.016695439815521,-0.016368580982089],[-0.044107269495726,0.018543865531683,-0.017241727560759]],[[0.032842289656401,-0.01343035325408,-0.0069358735345304],[-0.040560968220234,0.00036647589877248,-0.026021407917142],[0.037998955696821,-0.017266850918531,-0.027949433773756]],[[0.028597719967365,0.10195456445217,-0.16971276700497],[0.040007580071688,-0.058054145425558,0.11232933402061],[0.064988695085049,-0.10003356635571,0.034227520227432]],[[-0.13956464827061,-0.0030315739568323,0.071341559290886],[-0.11567936837673,0.053168375045061,0.15639066696167],[-0.0035663063172251,0.018031334504485,0.033314406871796]],[[0.019349280744791,0.011103429831564,-0.10935489833355],[-0.095424562692642,-0.06832043081522,-0.15366208553314],[-0.018567759543657,0.044540110975504,-0.012497657909989]],[[-0.18503247201443,0.086684383451939,0.092416040599346],[0.029299626126885,-0.11841839551926,0.11501606553793],[-0.052182178944349,-0.035039752721786,0.047662913799286]],[[-0.076661013066769,-0.071296580135822,0.13473388552666],[0.10500741750002,-0.20370331406593,-0.1405785381794],[0.0094367749989033,-0.11220072954893,-0.075256012380123]],[[0.051146946847439,-0.29217958450317,0.066587463021278],[-0.0098381079733372,-0.090642780065536,-0.075923569500446],[0.026235355064273,0.06955049186945,0.082997523248196]],[[-0.054013550281525,0.17167967557907,0.080326594412327],[-0.080269709229469,0.21842104196548,-0.062374319881201],[0.036795999854803,0.046663008630276,-0.00013138099166099]],[[0.067400708794594,-0.28442543745041,0.17121952772141],[-0.04124715924263,0.014479886740446,0.17580182850361],[-0.1468465924263,-0.025528565049171,-0.031136844307184]],[[0.045588362962008,-0.04459985345602,-0.042283371090889],[0.0016062925569713,0.15084391832352,0.12532487511635],[0.092862486839294,0.010517446324229,0.046632908284664]],[[0.052179895341396,-0.093367278575897,-0.032694399356842],[0.020894957706332,0.084168583154678,0.054991848766804],[-0.013031259179115,0.030446356162429,-0.078032545745373]],[[-0.0067375362850726,-0.016664424911141,-0.016069503501058],[0.036894608289003,0.071172073483467,-0.11972975730896],[-0.020472908392549,-0.013137524016201,0.00063338223844767]],[[0.057513866573572,-0.090367130935192,0.071331642568111],[-0.022224916145205,-0.049509339034557,-0.12474787980318],[-0.05723911523819,0.005187816452235,-0.010326300747693]],[[0.020198788493872,0.055346541106701,-0.054877556860447],[-0.10450191795826,-0.018126334995031,-0.033128805458546],[-0.041962921619415,-0.00042894534999505,-0.043843250721693]],[[0.097016528248787,-0.017367100343108,-0.10219940543175],[-0.025514204055071,-0.05792224407196,-0.11932969093323],[0.024071402847767,0.062348760664463,0.0061753615736961]],[[-0.17944046854973,0.05186865106225,-0.054958529770374],[-0.11906000971794,0.097694613039494,0.047427885234356],[0.0031935032457113,0.15658028423786,0.018294598907232]],[[-0.051473837345839,0.068602070212364,-0.18428781628609],[-0.01535779517144,-0.024614196270704,-0.056205313652754],[0.030124450102448,0.00061172229470685,-0.046078383922577]],[[0.043867845088243,0.014970174059272,0.044617366045713],[-0.072910189628601,-0.09214261174202,0.013017835095525],[-0.025971930474043,0.045542016625404,0.021600231528282]],[[-0.059184443205595,-0.04800858348608,0.02234161272645],[0.11838644742966,-0.27215415239334,0.1427248865366],[-0.018628619611263,-0.050180502235889,-0.078239306807518]],[[-0.0032481648959219,0.24078072607517,-0.62627345323563],[-0.0050197299569845,0.025202684104443,0.10140423476696],[0.054725494235754,-0.0027069526258856,0.043611120432615]],[[-0.024908885359764,0.14512068033218,0.036150939762592],[-0.0097971064969897,0.16903617978096,-0.11644811928272],[-0.078895144164562,0.08673257380724,-0.038182273507118]],[[0.17012396454811,-0.030331380665302,-0.05563260614872],[0.066827684640884,-0.019383432343602,-0.086019530892372],[0.077010296285152,0.19226697087288,-0.12099865823984]],[[-0.012894500046968,0.12831437587738,-0.11266369372606],[0.0021722675301135,-0.28096303343773,0.028500683605671],[-0.036479268223047,-0.11284990608692,0.01426902320236]],[[0.017767783254385,-0.16434973478317,0.060702443122864],[-0.054759856313467,-0.084786906838417,0.03984971717],[-0.082757160067558,-0.033911969512701,0.036585353314877]],[[0.087540283799171,-0.21593314409256,0.096657171845436],[0.059770420193672,-0.062145337462425,0.091945424675941],[0.0408034324646,0.0071037160232663,0.16281913220882]]],[[[-0.20500762760639,-0.12291868031025,0.19932827353477],[-0.17627854645252,0.038089655339718,-0.11565366387367],[-0.10266897827387,0.032582715153694,-0.10978630185127]],[[-0.02075950987637,0.040517490357161,0.080747574567795],[0.28199237585068,0.23463715612888,0.00083085085498169],[-0.023081781342626,0.098668649792671,0.18559174239635]],[[-0.044400729238987,0.039121400564909,0.13602025806904],[-0.026096925139427,-0.038478970527649,0.13584391772747],[-0.026881104335189,0.098181717097759,0.16360802948475]],[[0.11262851208448,-0.043974407017231,-0.083880580961704],[-0.037651125341654,0.02077167481184,-0.11775057762861],[0.0060406653210521,-0.053990557789803,-0.16852597892284]],[[0.025805871933699,-0.04591978341341,-0.21512109041214],[0.1001698449254,0.085850089788437,0.1304903626442],[0.21509186923504,0.039070889353752,0.0070188986137509]],[[-0.095732294023037,0.079996898770332,-0.041310016065836],[-0.20318557322025,0.061944585293531,0.15178397297859],[0.0053628981113434,-0.013111421838403,-0.06785923987627]],[[-0.16464659571648,0.063035175204277,-0.08807922154665],[0.086402393877506,0.12768119573593,-0.053632259368896],[-0.10162235051394,-0.17157244682312,-0.011547316797078]],[[-0.1089036911726,0.19656248390675,0.041017189621925],[-0.075026601552963,-0.094495333731174,0.047039106488228],[-0.085701555013657,-0.10064286738634,-0.15992061793804]],[[0.0023174590896815,-0.10279167443514,0.020542122423649],[-0.078191056847572,-0.0096586225554347,0.03974024951458],[0.071074135601521,0.016380617395043,-0.10598600655794]],[[-0.087019212543964,-0.018885098397732,0.13107378780842],[-0.060315504670143,-0.21117293834686,0.020376740023494],[0.018328217789531,-0.11870607733727,0.10146824270487]],[[-0.15198850631714,0.06806992739439,0.17908053100109],[0.10577166825533,-0.1423404365778,0.12962962687016],[-0.17071540653706,-0.042111091315746,-0.042368400841951]],[[-0.049841079860926,-0.073866754770279,-0.21917439997196],[-0.026453297585249,0.010896667838097,-0.013996381312609],[0.055871076881886,0.021524760872126,0.036285415291786]],[[-0.12428346276283,-0.09851111471653,0.025552546605468],[-0.11620730906725,0.014593351632357,0.071211911737919],[-0.054703772068024,0.027010524645448,0.11793649196625]],[[-0.13820205628872,-0.033239625394344,0.11333165317774],[-0.20235311985016,0.094259634613991,0.012780004180968],[-0.063161052763462,0.020998455584049,0.24128712713718]],[[0.038979593664408,-0.076767198741436,-0.17176447808743],[-0.010506359860301,0.081169754266739,0.014117637649179],[-0.059242188930511,-0.064827479422092,-0.021554013714194]],[[0.048528332263231,0.093552373349667,-0.24411143362522],[-0.0074146208353341,0.033868547528982,0.062813952565193],[0.10048419982195,-0.02213478833437,0.10568758845329]],[[-0.17635288834572,-0.16657087206841,-0.0090063288807869],[-0.0053603067062795,0.001419868436642,0.0068480088375509],[-0.16797475516796,-0.018300535157323,0.18116334080696]],[[-0.057628139853477,0.063034117221832,-0.061828427016735],[-0.1136712282896,0.0028572406154126,0.13558526337147],[-0.017256461083889,-0.080679900944233,-0.15070283412933]],[[-0.045444682240486,-0.1763907968998,0.22094143927097],[-0.013195427134633,-0.10818775743246,-0.034780222922564],[-0.1287147551775,-0.12236323952675,-0.096407227218151]],[[0.056508153676987,-0.22264099121094,-0.020506599918008],[-0.018278514966369,-0.1041027829051,-0.036965258419514],[0.2189255207777,0.10364306718111,0.14034858345985]],[[0.059824984520674,0.0095506645739079,-0.020810943096876],[0.027721041813493,0.079488091170788,-0.072476215660572],[0.18287551403046,0.060656525194645,-0.11087146401405]],[[-0.046681899577379,-0.04532453417778,0.26833409070969],[0.0014512034831569,-0.0011278878664598,-0.064304932951927],[-0.034479003399611,-0.17851956188679,0.050545912235975]],[[0.028985694050789,0.067919336259365,-0.028146790340543],[0.026818964630365,-0.1110343337059,-0.19684730470181],[-0.055436939001083,-0.17734920978546,-0.22237040102482]],[[0.074341826140881,-0.070827521383762,0.039061237126589],[-0.11683861166239,0.11641960591078,-0.048767242580652],[0.017928143963218,0.08763325214386,-0.057721327990294]],[[-0.059275418519974,0.14669558405876,0.1262921243906],[0.019346192479134,0.072815038263798,0.0048904167488217],[-0.16469059884548,-0.091149546205997,0.0034327232278883]],[[0.05701394751668,-0.042933233082294,0.30835059285164],[0.015363260172307,-0.11407773941755,0.048002284020185],[-0.094679944217205,-0.11268308758736,-0.083355963230133]],[[-0.094355292618275,0.058830287307501,-0.15909764170647],[-0.072136953473091,-0.16514658927917,-0.17647916078568],[-0.23914878070354,-0.20281979441643,0.022798174992204]],[[0.0095578702166677,0.043308611959219,0.02447460219264],[0.061296552419662,0.1221129372716,-0.023007100448012],[-0.13425476849079,-0.039183221757412,-0.059779584407806]],[[0.088437423110008,0.061491157859564,-0.18287941813469],[0.24794653058052,0.12162547558546,-0.036650877445936],[-0.061117962002754,0.02334626019001,-0.13402895629406]],[[-0.086647368967533,0.062660671770573,-0.015546746551991],[0.039018526673317,0.058745160698891,-0.04068909958005],[-0.0098804868757725,-0.016079355031252,0.0056340652517974]],[[0.024479661136866,0.038920544087887,-0.041014943271875],[-0.11332188546658,0.036753173917532,0.040979895740747],[-0.0089070601388812,-0.0083885733038187,-0.10830771923065]],[[0.00013414879504126,0.13141775131226,0.010641649365425],[-0.11946282535791,0.017345434054732,-0.060273081064224],[-0.089352332055569,0.035545419901609,-0.16176085174084]]],[[[-0.096567526459694,0.15972113609314,-0.049613058567047],[0.043075211346149,0.092753432691097,0.053875043988228],[-0.081627868115902,-0.055587258189917,-0.057485014200211]],[[0.065542109310627,-0.026293013244867,0.03805585578084],[-0.068997994065285,-0.027728704735637,0.013759233057499],[-0.10234590619802,-0.0021884262096137,0.069872103631496]],[[0.099492892622948,0.031835652887821,0.016330644488335],[-0.088404580950737,-0.019688718020916,-0.13570393621922],[0.17079135775566,0.093449711799622,0.047606807202101]],[[-0.10739536583424,-0.13998021185398,-0.16731651127338],[-0.10666715353727,0.12122554332018,-0.057548504322767],[-0.16560080647469,0.048494897782803,0.21174101531506]],[[0.046987902373075,-0.24727953970432,0.005712803453207],[-0.14176504313946,-0.063442446291447,0.021095175296068],[0.068268209695816,-0.091851606965065,-0.10493712872267]],[[0.018148804083467,0.033803183585405,-0.065153107047081],[0.0095227425917983,-0.10822676867247,0.026758702471852],[0.27205726504326,0.21719996631145,-0.22561195492744]],[[0.089969381690025,-0.15381853282452,0.0010910404380411],[0.097471103072166,-0.020967265591025,-0.078734710812569],[-0.067544482648373,-0.14885801076889,-0.061809681355953]],[[-0.027789365500212,-0.050962027162313,-0.14226926863194],[-0.0092108324170113,-0.0062927743420005,0.064313285052776],[-0.016992786899209,-0.0033036356326193,-0.21862319111824]],[[-0.13481524586678,-0.056315563619137,-0.038597166538239],[0.17174211144447,-0.23815570771694,0.10614071041346],[-0.071452207863331,-0.084102436900139,-0.060750883072615]],[[0.016545668244362,0.13422073423862,-0.024908427149057],[0.054072320461273,-0.023389857262373,0.016136037185788],[-0.037673823535442,0.09391275793314,-0.015234582126141]],[[0.068076774477959,-0.041862897574902,-0.091495603322983],[0.1151897162199,-0.10571721196175,-0.10453519970179],[0.12801848351955,0.0033208213280886,-0.058324731886387]],[[0.064155757427216,-0.15534269809723,-0.20342196524143],[-0.21935643255711,-0.092943787574768,0.14384564757347],[0.13303430378437,-0.0434057302773,0.066390380263329]],[[-0.19086034595966,-0.11742900311947,0.086208425462246],[0.21037915349007,0.087270453572273,0.039004884660244],[0.063641607761383,-0.10986918956041,-0.061632506549358]],[[0.18712721765041,0.047221176326275,-0.11185686290264],[0.13937321305275,0.068044871091843,-0.076935090124607],[0.023734614253044,-0.068580284714699,0.068492718040943]],[[-0.096895411610603,-0.17701481282711,-0.026715788990259],[0.019741399213672,0.26034939289093,-0.01575581356883],[0.27051621675491,0.033491618931293,0.03266865760088]],[[-0.16702868044376,0.065561808645725,0.069651164114475],[-0.02909317612648,0.014364713802934,0.16224220395088],[-0.17050750553608,-0.067258186638355,-0.05259931832552]],[[0.077321596443653,0.020206801593304,-0.061046399176121],[-0.080212667584419,-0.092408083379269,-0.19050695002079],[0.065046824514866,0.096280388534069,0.021346658468246]],[[-0.070865727961063,-0.1128189265728,-0.19660863280296],[-0.14672274887562,-0.17733551561832,0.030714778229594],[-0.10912600904703,-0.29430627822876,-0.17445592582226]],[[0.038589809089899,0.32010793685913,-0.14692209661007],[-0.0015563300112262,0.12842218577862,-0.18331952393055],[-0.035392895340919,0.13465863466263,-0.10076343268156]],[[-0.14431998133659,-0.18045870959759,-0.20606245100498],[-0.40086486935616,-0.22571143507957,-0.34612354636192],[-0.23468168079853,-0.26263919472694,-0.33686569333076]],[[-0.048726867884398,0.085821069777012,0.0048730885609984],[0.12456009536982,0.10658460110426,-0.13855417072773],[0.10633663088083,-0.048427481204271,0.0088671054691076]],[[0.066823191940784,0.030720490962267,0.045222714543343],[0.019574098289013,0.060540281236172,0.20995439589024],[-0.060672577470541,-0.11027086526155,-0.0099043752998114]],[[0.21436202526093,0.17843943834305,-0.0040022856555879],[0.19652795791626,-0.013427643105388,0.17836593091488],[-0.24031308293343,-0.11431854218245,0.10780039429665]],[[0.0054690036922693,0.060722462832928,0.19741585850716],[-0.014716849662364,-0.023262299597263,-0.062610417604446],[-0.19319076836109,-0.032123293727636,-0.066123105585575]],[[-0.0042136181145906,0.011315913870931,0.11096102744341],[0.16769428551197,-0.072060748934746,0.10242480784655],[-0.14576604962349,-0.049551840871572,-0.029905589297414]],[[0.0066586686298251,0.038315985351801,-0.15061083436012],[-0.016833396628499,-0.057614665478468,0.16867698729038],[-0.13133262097836,0.098215200006962,0.062635332345963]],[[-0.022117329761386,-0.069962941110134,-0.071693733334541],[0.05004795640707,-0.31637805700302,0.055839110165834],[-0.17732961475849,-0.093846961855888,0.095562875270844]],[[0.21369084715843,0.072784535586834,-0.11219351738691],[0.053225316107273,-0.095984026789665,0.065121941268444],[0.088435292243958,0.057196259498596,-0.054742615669966]],[[0.0014860302908346,-0.056713212281466,0.21530772745609],[0.058740261942148,0.05486198887229,0.0087498398497701],[0.17416536808014,-0.12904113531113,-0.029043663293123]],[[0.021447010338306,0.077681437134743,0.020318930968642],[-0.1698377430439,0.12768167257309,-0.15731230378151],[-0.13588955998421,-0.015073021873832,-0.031336385756731]],[[-0.044191718101501,-0.061239060014486,-0.07648354023695],[-0.047339335083961,-0.081586986780167,-0.073159977793694],[-0.073423005640507,-0.055626604706049,0.095566965639591]],[[-0.0097851436585188,0.028276264667511,0.1141252219677],[-0.064085319638252,-0.016433943063021,-0.037553984671831],[0.031632300466299,0.02021623775363,-0.037076003849506]]],[[[-0.085615552961826,-0.082173854112625,0.045079711824656],[0.11077204346657,-0.0071401209570467,0.18051433563232],[0.11160821467638,0.079081699252129,0.10187977552414]],[[0.033300589770079,-0.076125547289848,-0.15344727039337],[0.011489296332002,0.015106922015548,0.094166435301304],[0.085729815065861,-0.10790048539639,-0.1181073859334]],[[0.052091255784035,0.010456153191626,-0.038126673549414],[-0.082833491265774,-0.071348235011101,-0.043376184999943],[0.080543301999569,-0.073494628071785,-0.11090774089098]],[[0.07107324898243,0.15370881557465,-0.048343561589718],[-0.098820701241493,0.084363013505936,-0.0026561019476503],[-0.036006536334753,-0.08500312268734,0.068439111113548]],[[-0.031715326011181,0.11769262701273,-0.034849375486374],[0.06741888821125,-0.072705291211605,-0.21535460650921],[0.10777992755175,0.011059854179621,-0.14427061378956]],[[-0.31283861398697,0.18478690087795,-0.098462343215942],[-0.060539063066244,0.074808247387409,0.038815699517727],[0.0061574135906994,-0.017787050455809,0.072366692125797]],[[-0.22794130444527,-0.11629121750593,-0.10923614352942],[0.10366131365299,-0.0074419570155442,-0.094082660973072],[-0.14268934726715,0.056830119341612,0.0040216664783657]],[[-0.035909123718739,-0.11283619701862,0.036442510783672],[-0.037438772618771,0.0477324873209,-0.011411680839956],[-0.069734297692776,-0.27601501345634,0.055549755692482]],[[0.091546602547169,-0.091759666800499,-0.082749463617802],[0.099560938775539,0.16089184582233,0.051345475018024],[-0.071151062846184,0.044326946139336,-0.080442160367966]],[[-0.17267663776875,-0.04354315251112,0.13106220960617],[0.10396503657103,0.0053603136911988,-0.061015941202641],[0.15099129080772,0.0083041368052363,-0.081900998950005]],[[-0.10092199593782,-0.18085704743862,0.036086801439524],[-0.09290736913681,-0.034399308264256,0.12421704083681],[-0.0079841744154692,-0.07919916510582,-0.013422904536128]],[[0.027535229921341,0.04976961016655,-0.11487664282322],[0.074672564864159,0.066783338785172,-0.24548798799515],[0.069361224770546,0.050255656242371,0.020023822784424]],[[0.045645523816347,-0.0098181581124663,0.046222746372223],[0.14741368591785,0.010047201998532,0.014189281500876],[-0.11194039881229,0.13083206117153,-0.093751356005669]],[[-0.16559928655624,-0.0055097164586186,0.12268756330013],[0.12194571644068,0.059361577033997,-0.0079841064289212],[-0.29389315843582,0.031316515058279,0.061599060893059]],[[-0.0044330535456538,-0.074722334742546,0.063764572143555],[-0.24597226083279,-0.15818051993847,0.018925376236439],[-0.069504767656326,0.0154496608302,-0.090214125812054]],[[-0.056512925773859,0.081706874072552,-0.071416556835175],[-0.045473266392946,0.10946730524302,0.19755913317204],[0.0025927936658263,0.028260432183743,-0.097345605492592]],[[0.0046947100199759,-0.15733163058758,0.086404345929623],[-0.20031802356243,-0.0071213035844266,-0.049690619111061],[-0.0029103241395205,-0.061629012227058,0.22683377563953]],[[-0.042903158813715,-0.16932213306427,-0.11163695156574],[-0.321513235569,-0.10406223684549,-0.052313171327114],[0.024879774078727,0.044749218970537,0.081715419888496]],[[-0.1347278803587,-0.2253223657608,0.10526845604181],[-0.065020181238651,-0.15804895758629,0.13681755959988],[-0.067656107246876,-0.16803622245789,0.061612471938133]],[[-0.0078069069422781,-0.051121789962053,-0.082380257546902],[-0.12267120182514,-0.21621276438236,0.22114565968513],[-0.098193429410458,-0.01914107427001,-0.10420220345259]],[[-0.13157147169113,0.083773925900459,0.018128260970116],[0.13821090757847,0.1885312050581,-0.11039607226849],[0.2470535337925,0.022773871198297,0.062560580670834]],[[-0.051379796117544,-0.033801347017288,0.048882264643908],[0.0080031659454107,-0.048360127955675,0.0770518258214],[-0.050140839070082,0.0035725308116525,0.088638678193092]],[[0.0037744308356196,0.12091062217951,-0.10320588201284],[0.29710048437119,0.026158273220062,-0.20379146933556],[-0.062961034476757,-0.1481703966856,-0.18980431556702]],[[0.014286226592958,-0.01045330055058,0.025001090019941],[-0.082502782344818,-0.14061525464058,0.18746721744537],[-0.025352500379086,0.12687900662422,0.077728502452374]],[[0.061083484441042,0.19302274286747,0.19498085975647],[-0.04588533565402,-0.019556239247322,0.11800333857536],[-0.18738982081413,-0.16486018896103,-0.1728178858757]],[[-0.089477673172951,-0.035261582583189,-0.016601875424385],[-0.15678113698959,-0.0016436378937215,0.03563966229558],[0.0077661131508648,-0.12290457636118,-0.036492206156254]],[[-0.3196761906147,-0.092251896858215,-0.42781576514244],[-0.11881764233112,-0.050086107105017,-0.23326480388641],[-0.10711293667555,-0.083414427936077,-0.24094355106354]],[[0.06751462072134,-0.0033710631541908,0.00085037265671417],[-0.24453277885914,-0.079672649502754,-0.18961538374424],[-0.10384223610163,-0.095957405865192,0.0040408954955637]],[[-0.014314759522676,0.027159858494997,-0.049271177500486],[0.073323048651218,0.01027721259743,-0.20867913961411],[0.16286888718605,0.045457690954208,0.11300628632307]],[[-0.057889726012945,0.0092217586934566,-0.074255898594856],[0.12509290874004,-0.15176551043987,0.24054780602455],[0.066817089915276,-0.12256765365601,0.1223505884409]],[[0.13287548720837,-0.060366101562977,-0.097334213554859],[-0.031746156513691,-0.06648476421833,-0.15801267325878],[0.0082555804401636,0.10932397842407,-0.12202423065901]],[[-0.0076079089194536,-0.26649758219719,-0.030979121103883],[-0.16362690925598,-0.0050204494036734,-0.17672999203205],[-0.18291468918324,0.00062012951821089,-0.10649900138378]]],[[[0.065738461911678,-0.048101302236319,-0.18098337948322],[0.046397291123867,-0.027660397812724,0.15039901435375],[0.040979500859976,0.063588835299015,0.0036634686402977]],[[-0.030118955299258,0.011881390586495,-0.25234541296959],[0.10563028603792,-0.081479988992214,0.065301164984703],[0.0063604274764657,0.051227264106274,0.032072898000479]],[[-0.1024316996336,-0.21894724667072,-0.0039801076054573],[-0.073727443814278,-0.00089553894940764,-0.19133791327477],[0.0089148450642824,-0.20514851808548,0.025204325094819]],[[0.25868690013885,-0.017902972176671,-0.028465686365962],[-0.14362545311451,-0.080559447407722,0.052678678184748],[0.16621753573418,-0.50635707378387,0.19979354739189]],[[0.058904483914375,-0.0074964608065784,0.081655092537403],[-0.051406797021627,0.10024032741785,-0.047822147607803],[0.06640700250864,-0.08433586359024,0.027266133576632]],[[-0.015573415905237,-0.1208368614316,0.071696542203426],[-0.064088925719261,0.016119215637445,-0.086990714073181],[0.051040902733803,0.098654843866825,0.089217238128185]],[[-0.015098750591278,-0.13366088271141,0.11287375539541],[0.045759420841932,0.0087861334905028,-0.12536260485649],[-0.08269926905632,0.080285280942917,0.060966208577156]],[[-0.1092968955636,0.13303907215595,0.08856800198555],[-0.097859911620617,0.045029599219561,-0.089186996221542],[0.077565856277943,0.049448750913143,-0.08314561098814]],[[0.0064385822042823,-0.16626723110676,-0.0057093701325357],[-0.15324641764164,0.16799277067184,-0.20536458492279],[0.07962454855442,-0.13621483743191,0.098630547523499]],[[0.090004831552505,-0.082706600427628,-0.014137762598693],[-0.13163396716118,0.082817137241364,-0.060679394751787],[0.045990012586117,0.01150640193373,-0.0060590850189328]],[[0.062719725072384,-0.12146352976561,0.16753701865673],[0.019933193922043,-0.027118016034365,-0.21395045518875],[0.21376137435436,-0.24482399225235,0.11412063241005]],[[-0.018299525603652,-0.12734873592854,0.018587315455079],[0.029509894549847,0.039544157683849,-0.17952260375023],[0.077830530703068,-0.078849345445633,0.11867118626833]],[[0.15855841338634,0.06153492256999,0.13282024860382],[0.046230591833591,-0.13849982619286,-0.11044324189425],[-0.090703852474689,-0.095979318022728,0.067330799996853]],[[0.027783127501607,-0.11747857183218,-0.064903229475021],[-0.028709327802062,0.050336122512817,-0.095358572900295],[-0.01275593880564,0.15027165412903,0.037424117326736]],[[-0.081209607422352,0.17820028960705,-0.10586708039045],[0.066831395030022,-0.15477423369884,0.16243922710419],[-0.074032470583916,-0.015765126794577,-0.056000404059887]],[[-0.071920931339264,-0.0029177414253354,0.13208547234535],[0.024904733523726,0.017610071226954,-0.012566138990223],[-0.06287606805563,-0.018131570890546,0.0057731634005904]],[[-0.060458038002253,0.14440728724003,-0.13216505944729],[0.0091352490708232,-0.13563792407513,0.078026190400124],[0.064897678792477,-0.086915969848633,-0.062943696975708]],[[-0.0080778850242496,-0.17662301659584,0.0021439876873046],[-0.096850298345089,0.064116187393665,-0.25733119249344],[0.0033480885904282,-0.25360882282257,-0.15475487709045]],[[-0.040312558412552,0.04010421782732,-0.089018978178501],[0.07910779863596,-0.17965154349804,0.15336379408836],[-0.021968919783831,0.17452140152454,-0.13292098045349]],[[0.10279504954815,-0.087282434105873,-0.08484748005867],[0.0028450665995479,0.21710595488548,-0.30365425348282],[-0.045852407813072,-0.25007337331772,-0.053454592823982]],[[0.0025148778222501,-0.16536447405815,0.017890010029078],[0.015697479248047,0.093090794980526,-0.069122456014156],[0.032705146819353,-0.21283252537251,0.060777887701988]],[[-0.13025167584419,-0.064986832439899,-0.046865582466125],[-0.031409550458193,0.075298100709915,-0.027045963332057],[0.1551875025034,0.086211077868938,-0.0041414764709771]],[[-0.11090689152479,0.20186197757721,-0.28526103496552],[0.078092686831951,-0.15260021388531,0.027412641793489],[0.0053693503141403,0.019115183502436,-0.023484360426664]],[[0.030838500708342,-0.27103763818741,-0.050729498267174],[-0.18891641497612,0.12589636445045,-0.26465412974358],[0.19932408630848,-0.1676906645298,-0.09435772895813]],[[-0.17036087810993,0.063927091658115,-0.0006422862643376],[-0.042542889714241,0.029641794040799,-0.041200131177902],[0.11248046159744,-0.17859281599522,0.12403028458357]],[[0.034553848206997,0.073325984179974,0.1550597846508],[-0.11037553846836,-0.079076394438744,-0.15366415679455],[0.05414017662406,-0.029412547126412,-0.14574392139912]],[[-0.10108651965857,-0.28563877940178,-0.06371858716011],[0.04170660302043,-0.10592452436686,-0.050131540745497],[-0.1166849732399,0.010240676812828,-0.041545666754246]],[[0.057783886790276,-0.2320908010006,-0.012553291395307],[-0.22996978461742,0.15073001384735,-0.1378483325243],[0.089488759636879,-0.42519819736481,0.24449121952057]],[[0.099052302539349,0.0060546756722033,0.079655580222607],[0.014516088180244,-0.15281671285629,0.04218952357769],[-0.066968746483326,0.05525479093194,0.030618131160736]],[[0.010485987178981,0.12217085063457,-0.15091460943222],[0.037941992282867,-0.19044908881187,0.073358334600925],[-0.21039415895939,0.10271038115025,-0.20304143428802]],[[0.039458099752665,-0.038903497159481,-0.21697337925434],[-0.083550579845905,0.056668993085623,-0.096630819141865],[0.12091783434153,0.023641707375646,-0.088498115539551]],[[0.057928971946239,-0.13215567171574,0.065600246191025],[-0.04516514018178,-0.075837232172489,-0.11083363741636],[0.084104895591736,-0.16773438453674,0.15554937720299]]],[[[-0.089356102049351,0.01961868070066,-0.079535350203514],[0.18054547905922,0.15890961885452,-0.21395780146122],[0.084827080368996,-0.15968056023121,-0.068468116223812]],[[-0.071737088263035,0.078003823757172,0.070688158273697],[0.0037659252993762,0.066828958690166,-0.1671162545681],[0.060141120105982,0.11785455793142,0.079875469207764]],[[-0.25444012880325,-0.049547269940376,0.041954051703215],[-0.1841836720705,-0.064596988260746,0.20984926819801],[0.039351396262646,0.11392284929752,0.058439753949642]],[[0.14665220677853,-0.067146472632885,-0.14796529710293],[-0.041071325540543,-0.35199850797653,-0.087229281663895],[-0.11392814666033,-0.012002515606582,-0.053383469581604]],[[-0.020156487822533,0.031091190874577,-0.13944120705128],[0.050248462706804,0.11433122307062,-0.19489362835884],[0.047860283404589,0.001554112881422,-0.069067426025867]],[[-0.01145068090409,0.10392568260431,-0.035863228142262],[-0.026375994086266,0.054735537618399,-0.022455347701907],[-0.06155813857913,0.10752283036709,-0.039608463644981]],[[0.17678926885128,0.0048164650797844,-0.00097513129003346],[0.18602265417576,-0.17069445550442,-0.25516444444656],[0.043318502604961,-0.31153872609138,0.019906006753445]],[[0.22043044865131,-0.069807142019272,0.026152057573199],[0.13182161748409,0.0063493172638118,-0.047217737883329],[-0.1186185926199,-0.14000937342644,-0.095349743962288]],[[0.032663870602846,-0.025619773194194,0.030454291030765],[0.084535419940948,-0.037035897374153,-0.091696970164776],[0.010667410679162,0.16948790848255,0.074361056089401]],[[-0.14994932711124,0.065978102385998,0.010664272122085],[-0.13710243999958,0.050633102655411,0.069341078400612],[0.097629405558109,-0.034099727869034,0.1326529532671]],[[0.11966408789158,-0.14260375499725,0.066327542066574],[0.11115330457687,-0.046981945633888,0.09644278138876],[0.042505692690611,-0.15000651776791,-0.15741300582886]],[[-0.059834703803062,0.077937744557858,0.01683684065938],[-0.00083970290143043,-0.11966323107481,0.017045177519321],[0.0080734919756651,0.074774086475372,0.030875409021974]],[[0.008883404545486,-0.019684880971909,-0.064201161265373],[-0.022484907880425,-0.13376912474632,0.11611950397491],[-0.042364552617073,-0.062119986861944,0.20502933859825]],[[0.051508951932192,-0.12197109311819,-0.010949579998851],[-0.094630807638168,0.054935198277235,-0.035101763904095],[-0.014776769094169,0.041846387088299,0.034306593239307]],[[-0.043721068650484,-0.056516256183386,0.14148779213428],[0.11777074635029,-0.050413992255926,-0.049428775906563],[-0.013507244177163,-0.082358539104462,-0.037354648113251]],[[-0.078995980322361,-0.095358312129974,0.044858645647764],[-0.039915446192026,-0.058874364942312,-0.011790805496275],[-0.0089191868901253,0.22542028129101,0.18415129184723]],[[-0.066142797470093,0.11967234313488,0.018290540203452],[0.083022877573967,0.0062090964056551,0.014954995363951],[0.025678565725684,0.076796755194664,0.034323673695326]],[[0.25687900185585,0.23930355906487,-0.013529943302274],[0.09774162620306,0.034346267580986,-0.050075922161341],[-0.079915292561054,-0.22648647427559,-0.14684256911278]],[[0.13701343536377,0.09487222880125,0.040896207094193],[-0.049028098583221,-0.013224139809608,0.026417570188642],[-0.0095037911087275,0.0066213235259056,0.061779350042343]],[[-0.086257345974445,0.215492233634,-0.077363833785057],[0.044628519564867,-0.00037184983375482,-0.235042527318],[0.072599850594997,-0.23883260786533,-0.019273823127151]],[[0.072327926754951,0.079277016222477,-0.072940640151501],[0.0039218822494149,0.042397528886795,-0.0073029021732509],[0.0065088071860373,-0.23324136435986,0.059221170842648]],[[0.08239222317934,-0.11910120397806,-0.017537262290716],[0.062965862452984,-0.084366522729397,-0.056574992835522],[0.11724244058132,-0.057763278484344,0.039253104478121]],[[0.06743623316288,0.085738599300385,0.066622398793697],[-0.0091734230518341,0.097342848777771,0.10607872903347],[-0.15548025071621,-0.10561234503984,-0.19053602218628]],[[-0.011989502236247,-0.032807927578688,-0.090003989636898],[-0.029108120128512,-0.0075199077837169,-0.10430717468262],[-0.0845937281847,0.10076083242893,-0.097670376300812]],[[0.004597975872457,-0.058353703469038,-0.022454742342234],[0.13071098923683,0.10805302858353,-0.12490326166153],[0.092691816389561,-0.11593163013458,-0.060072440654039]],[[0.10195863246918,0.14711533486843,0.03781333565712],[0.0048151439987123,-0.21207769215107,-0.00057279982138425],[-0.12692767381668,-0.16436530649662,0.10484370589256]],[[0.12721368670464,0.20120449364185,-0.37136161327362],[-0.14430429041386,0.025628808885813,-0.20296768844128],[-0.13715423643589,-0.092083960771561,-0.13085322082043]],[[-0.10465475171804,0.10796691477299,0.043312042951584],[0.046240705996752,0.090956747531891,0.01596973836422],[-0.065664984285831,-0.28538113832474,-0.065896421670914]],[[0.043703809380531,-0.15243902802467,-0.10318404436111],[0.17740353941917,-0.056853488087654,-0.15474109351635],[-0.035354252904654,0.028061177581549,-0.101442694664]],[[0.15207500755787,0.083918638527393,0.029085701331496],[0.057427164167166,0.10006201267242,-0.02835782058537],[-3.0614748538937e-05,-0.36671203374863,-0.10457281768322]],[[-0.013051684014499,-0.15743550658226,-0.038910832256079],[-0.22337584197521,-0.15323327481747,0.062686540186405],[-0.068789333105087,0.072255469858646,0.12896807491779]],[[-0.019252300262451,0.039116449654102,0.032828316092491],[-0.040105447173119,0.075735688209534,0.13597765564919],[-0.10632333904505,0.12554298341274,0.099166534841061]]],[[[-0.11574007570744,0.13130865991116,0.020605731755495],[0.083173520863056,-0.027143465355039,0.10604654997587],[0.028439039364457,0.13166360557079,0.075423613190651]],[[-0.020440211519599,0.023530436679721,0.013539393432438],[-0.022043926641345,-0.045769039541483,-0.015811344608665],[-0.15551963448524,0.020103085786104,0.15864492952824]],[[0.073059029877186,-0.044904537498951,0.017522066831589],[-0.13972924649715,0.033638201653957,0.096330277621746],[-0.072980456054211,0.018844934180379,0.041328199207783]],[[-0.02930923551321,-0.13696876168251,0.055697660893202],[0.020548522472382,0.13562695682049,-0.094515897333622],[-0.053167473524809,0.13987784087658,-0.026796754449606]],[[0.13716290891171,0.073881410062313,0.022573683410883],[0.12807242572308,-0.03316979855299,-0.0046935076825321],[-0.018405126407743,-0.044604811817408,0.071928188204765]],[[0.0028648066800088,-0.12558671832085,-0.026861116290092],[-0.033297888934612,-0.0033305112738162,0.070162668824196],[0.096513696014881,0.094413280487061,-0.030634084716439]],[[0.04881488904357,-0.00092011975357309,0.058806508779526],[0.00048169237561524,-0.090512990951538,-0.10304824262857],[0.011494419537485,0.12550535798073,-0.040373232215643]],[[0.010547286830842,-0.040703341364861,-0.097978428006172],[-0.19621294736862,-0.049959745258093,0.014185709878802],[0.1886773109436,-0.049025770276785,0.067882753908634]],[[0.033671762794256,0.14458575844765,-0.023840317502618],[-0.0026761018671095,-0.039308585226536,-0.082575552165508],[0.077632293105125,0.10488281399012,-0.1734983921051]],[[-0.041591610759497,0.0056126094423234,0.048300955444574],[0.0083657810464501,-0.11071389913559,-0.03263495862484],[0.091314725577831,-0.1043605953455,-0.058725405484438]],[[-0.10839742422104,-0.21194997429848,-0.016328250989318],[0.032526332885027,0.045756082981825,0.054595127701759],[-0.065244220197201,0.1629114151001,0.15587112307549]],[[-0.036716140806675,0.062522649765015,-0.10656018555164],[0.016898479312658,0.091485626995564,-0.0094583388417959],[-0.0098579376935959,0.13153055310249,0.11314949393272]],[[-0.063181936740875,-0.11510318517685,-0.11368679255247],[-0.0024363938719034,-0.027785331010818,0.044436056166887],[-0.10928472131491,0.11386442184448,0.099434860050678]],[[-0.22797422111034,0.127072006464,0.007695893291384],[-0.12326190620661,0.13366851210594,0.13612009584904],[-0.028223356232047,0.11095082014799,0.016132755205035]],[[0.12914805114269,-0.1096273586154,-0.16664727032185],[0.051579792052507,0.03778437897563,-0.023209255188704],[0.12139628827572,-0.084298357367516,-0.10805173963308]],[[-0.10696786642075,-0.025916311889887,-0.06423956155777],[0.16328606009483,0.01843643002212,-0.10480373352766],[-0.095367886126041,0.072581000626087,-0.036292720586061]],[[0.054090186953545,-0.0063843205571175,-0.072525583207607],[0.044209938496351,-0.076299950480461,-0.15301072597504],[-0.052757725119591,-0.1530514806509,0.13013425469398]],[[-0.067532874643803,0.00503368396312,0.034097764641047],[-0.12603837251663,0.00088015635265037,0.11453745514154],[0.23312926292419,0.073583126068115,0.13096597790718]],[[-0.068673603236675,-0.17575970292091,-0.13412074744701],[-0.029846722260118,-0.14764678478241,-0.013161255978048],[0.031446717679501,-0.037626091390848,-0.034817412495613]],[[-0.082297325134277,-0.096514016389847,0.01195714995265],[-0.048219028860331,-0.24124795198441,-0.058483716100454],[-0.0040192133747041,0.048715557903051,-0.084519669413567]],[[-0.19252280890942,-0.12570345401764,-0.019050907343626],[-0.10257598012686,-0.077088139951229,0.058156341314316],[0.38835421204567,0.10939734429121,-0.17431533336639]],[[-0.083451934158802,0.043607648462057,0.11638775467873],[-0.029628263786435,-0.12436749786139,-0.11929881572723],[-0.019072540104389,-0.042671374976635,-0.069038011133671]],[[0.011974547058344,0.050008989870548,0.071779698133469],[0.032892186194658,0.019031478092074,-0.051501430571079],[-0.14820443093777,-0.1506687104702,-0.12707071006298]],[[-0.068704567849636,-0.10025212168694,0.22584141790867],[-0.028431799262762,-0.065133579075336,0.086045362055302],[-0.0032576734665781,0.0014571450883523,0.013748970814049]],[[0.087136961519718,-0.16827762126923,0.15327434241772],[0.076760411262512,-0.055050358176231,0.046044997870922],[0.037477880716324,-0.021471193060279,0.043999779969454]],[[-0.12088868021965,-0.090135417878628,0.03835454210639],[-0.17957054078579,0.18477801978588,0.016285177320242],[-0.020854083821177,-0.0062463106587529,-0.10100057721138]],[[-0.14594498276711,0.025158340111375,-0.27731272578239],[-0.1413104981184,0.056019756942987,-0.056668039411306],[0.022460862994194,0.13320069015026,-0.072281487286091]],[[0.097769282758236,-0.01220967900008,-0.056569166481495],[-0.046808209270239,0.055039498955011,0.087339103221893],[0.090837530791759,0.043330196291208,0.050780139863491]],[[0.027479875832796,-0.021660478785634,0.16701078414917],[-0.11307293176651,0.0088092163205147,0.019151173532009],[0.0040694363415241,-0.036553338170052,0.10478163510561]],[[0.032348234206438,-0.022992001846433,0.044373471289873],[-0.053724568337202,0.098088681697845,-0.028507320210338],[0.010126165114343,-0.10355443507433,-0.0013226150767878]],[[-0.085017435252666,0.033216051757336,-0.056427977979183],[-0.074600979685783,-0.086552619934082,0.069533370435238],[-0.085653193295002,0.086840733885765,0.011599576100707]],[[-0.21769173443317,-0.0097561934962869,-0.005658142734319],[-0.14678125083447,-0.11830733716488,-0.0068810414522886],[0.026559080928564,0.030221950262785,-0.048936646431684]]],[[[0.055795021355152,-0.033948130905628,0.023858319967985],[0.08218152821064,0.043489303439856,-0.016999613493681],[0.026760056614876,-0.16027510166168,-0.036518003791571]],[[-0.027294280007482,-0.0826695561409,0.023375391960144],[-0.044286444783211,0.12398500740528,-0.11342819035053],[0.10619056224823,0.053433030843735,-0.029387500137091]],[[0.048126827925444,0.0017681448953226,0.012976032681763],[-0.02801769413054,-0.05048643425107,-0.005284353159368],[-0.032135788351297,0.0097255697473884,0.075163826346397]],[[-0.016794430091977,-0.015146453864872,0.039332941174507],[0.055123634636402,-0.13821363449097,-0.022795172408223],[-0.0013591932365671,0.062835581600666,0.02038267813623]],[[-0.077402159571648,0.094563648104668,-0.049750205129385],[0.12847279012203,0.040727362036705,0.048587825149298],[0.020158423110843,0.028043124824762,0.065793082118034]],[[-0.076689831912518,-0.16230198740959,-0.071718238294125],[0.087296567857265,-0.046874977648258,0.083802774548531],[0.046711958944798,-0.011394825764,-0.0049324329011142]],[[0.046403929591179,0.041465982794762,-0.15889018774033],[0.12000104784966,0.016310665756464,-0.083581976592541],[-0.027991415932775,0.061349421739578,-0.05401311814785]],[[0.0052125826478004,0.044087808579206,0.012538192793727],[-0.063962005078793,0.068582244217396,0.018229192122817],[-0.017710542306304,0.01176355406642,-0.084793090820312]],[[-0.048977341502905,0.046567089855671,-0.052322503179312],[0.069771707057953,-0.097418986260891,-0.053612407296896],[0.017925921827555,0.053371723741293,0.044036451727152]],[[0.053411573171616,0.063012413680553,0.029595490545034],[0.099227838218212,0.25541880726814,0.071262761950493],[-0.022073162719607,0.053801618516445,0.10649075359106]],[[-0.023368624970317,-0.058190748095512,0.012898127548397],[0.089420095086098,-0.11350413411856,0.092993013560772],[0.011948820203543,-0.031752239912748,0.010089418850839]],[[0.064315646886826,-0.076412685215473,-0.045207943767309],[-0.010408588685095,-0.020604573190212,0.018244856968522],[-0.022693879902363,-0.0063068442977965,0.10234899073839]],[[0.0066337124444544,0.0031377570703626,-0.085839189589024],[-0.00071717152604833,-0.0013193011982366,0.062835693359375],[-0.031208926811814,-0.031313393265009,0.088409751653671]],[[0.0096011254936457,0.17153885960579,-0.097347684204578],[-0.1255104392767,0.015732314437628,0.013215751387179],[0.015083022415638,-0.11672230809927,0.10610315948725]],[[0.026776000857353,0.055355817079544,-0.066372148692608],[-0.055307697504759,0.10690121352673,0.076275378465652],[-0.034139219671488,-0.013762301765382,-0.072576276957989]],[[-0.005130585283041,-0.095124706625938,-0.054722268134356],[-0.0012806694721803,0.096368461847305,0.004354618024081],[0.012237103655934,-0.047742940485477,0.090152598917484]],[[-0.13589645922184,-0.079339787364006,-0.059260439127684],[0.01598640717566,-0.0043006376363337,-0.12584759294987],[-0.10501156747341,-0.2305641323328,-0.0053034853190184]],[[-0.0027222232893109,-0.01460890751332,-0.042446315288544],[-0.079488769173622,0.0079512437805533,0.11623656749725],[0.050106316804886,0.014224298298359,-0.099968798458576]],[[-0.028974527493119,-0.15155829489231,0.069945059716702],[0.013497584499419,-0.048964276909828,-0.059361696243286],[0.0044679348357022,-0.054034534841776,0.046120099723339]],[[0.031211212277412,-0.0093243131414056,-0.055348839610815],[-0.0091175055131316,0.053495194762945,-0.13082332909107],[0.093440167605877,-0.034896980971098,0.035400405526161]],[[-0.051079798489809,0.051163081079721,0.0024552652612329],[0.07481749355793,-0.048399038612843,-0.12819872796535],[0.081757396459579,-0.049364641308784,0.083797849714756]],[[-0.10181714594364,0.058229766786098,0.1839325428009],[-0.079007655382156,0.016716724261642,-0.048689767718315],[0.0044707213528454,-0.035616144537926,0.01135859079659]],[[0.0031450230162591,-0.12263268977404,0.045071832835674],[0.054476946592331,0.016154021024704,0.025156423449516],[0.07323907315731,0.0065062339417636,-0.052697457373142]],[[0.067344509065151,0.065901912748814,-0.0067804688587785],[-0.037090759724379,-0.13511615991592,-0.031643953174353],[0.069048099219799,0.026128582656384,-0.045306254178286]],[[0.072945334017277,0.037053983658552,0.01848129183054],[-0.12360775470734,-0.017106559127569,0.15108761191368],[-0.0034874735865742,-0.037114083766937,-0.11310604214668]],[[-0.026943868026137,-0.034257002174854,0.049677845090628],[0.053181696683168,-0.05557381734252,0.062904603779316],[-0.083778344094753,0.029534563422203,0.014519536867738]],[[-0.047562520951033,-0.054279185831547,0.087333485484123],[0.0018935614498332,0.0081877885386348,-0.023886831477284],[-0.0075246673077345,-0.010376239195466,0.023395815864205]],[[0.13270245492458,0.047529596835375,0.034430619329214],[-0.087591215968132,0.072931408882141,-0.12009383738041],[-0.056188937276602,-0.025340277701616,-0.014283087104559]],[[-0.028976630419493,-0.091789029538631,0.08954931050539],[-0.078245908021927,-0.10374718159437,0.01011760532856],[-0.1090225726366,-0.0026801291387528,-0.073596931993961]],[[-0.027615642175078,0.11804930120707,-0.040535070002079],[0.04859608784318,-0.15734642744064,0.034913148730993],[-0.11262352019548,0.14637400209904,-0.0090009160339832]],[[0.042652655392885,0.047845300287008,0.052864484488964],[-0.078081116080284,-0.065843775868416,0.04366022720933],[0.0073597771115601,0.025663949549198,-0.07631304115057]],[[-0.011330258101225,0.026198729872704,0.050371259450912],[-0.066155098378658,-0.093944512307644,-0.032579846680164],[-0.051458138972521,0.094894714653492,0.079827949404716]]],[[[-0.21468943357468,-0.17071948945522,0.091262251138687],[0.044736240059137,-0.062444727867842,-0.15363276004791],[-0.08379478007555,-0.1163038611412,-0.098445929586887]],[[-0.020167455077171,-0.058843519538641,0.02539099380374],[0.046559147536755,0.02732690051198,-0.057712871581316],[-0.10543281584978,-0.20585881173611,-0.22533020377159]],[[-0.052425693720579,0.057683572173119,0.066035509109497],[0.091658003628254,-0.031975351274014,0.0068342857994139],[0.086460128426552,-0.14514701068401,0.051106557250023]],[[-0.088599428534508,-0.1548819988966,0.011803886853158],[-0.22258701920509,-0.043152578175068,-0.10922010242939],[-0.23616294562817,-0.19400115311146,-0.070149391889572]],[[0.029846446588635,-0.18157424032688,-0.082213304936886],[-0.045851532369852,-0.15651150047779,-0.011546236462891],[-0.12067284435034,-0.066426806151867,-0.083726324141026]],[[0.11448409408331,0.0010386491194367,0.021617244929075],[-0.16120499372482,0.19969163835049,0.035430248826742],[0.058444384485483,0.20108583569527,-0.049688626080751]],[[-0.089260078966618,0.081085279583931,-0.22003808617592],[-0.058463618159294,-0.10737737268209,-0.20628236234188],[-0.050375379621983,-0.029162822291255,-0.07638581097126]],[[0.053828809410334,0.10513500124216,-0.12847766280174],[-0.065295822918415,0.15001244843006,-0.12585265934467],[-0.14915370941162,0.0054869456216693,-0.15947334468365]],[[-0.069415993988514,-0.080542720854282,-0.2615459561348],[-0.070719391107559,-0.02395629696548,-0.067692153155804],[-0.11268804222345,-0.11467961221933,-0.028552619740367]],[[0.0035441569052637,0.046910282224417,0.092891328036785],[-0.049685258418322,0.049858678132296,0.15810003876686],[-0.054282389581203,0.1268807053566,0.0099895410239697]],[[-0.084944702684879,0.29203832149506,-0.16271933913231],[-0.054873883724213,0.036187514662743,-0.1104326993227],[0.016998995095491,-0.22106918692589,0.018739635124803]],[[-0.12994971871376,-0.10627921670675,-0.13204389810562],[-0.078463159501553,-0.19891652464867,0.022309973835945],[0.032639756798744,-0.015810942277312,0.042230248451233]],[[-0.093496173620224,-0.020090179517865,0.011811004951596],[0.0054889395833015,-0.29626527428627,-0.13254873454571],[-0.17283818125725,-0.24960714578629,-0.087751418352127]],[[-0.082174755632877,-0.13619801402092,0.0027608508244157],[0.24407914280891,0.022146426141262,-0.12799595296383],[0.037205159664154,0.01984222792089,0.13344596326351]],[[-0.033946510404348,-0.077675886452198,-0.1238356679678],[0.0015736089553684,0.097293883562088,-0.10832063108683],[0.018469851464033,-0.049705054610968,0.018501287326217]],[[0.12517260015011,-0.17012511193752,-0.04047679528594],[-0.030062744393945,-0.29167577624321,0.015139516443014],[0.082827903330326,-0.0044639334082603,0.00031737753306516]],[[0.072799675166607,0.023032741621137,-0.10213565081358],[0.075193978846073,0.17508316040039,-0.033631771802902],[0.12508498132229,0.099499262869358,-0.13163629174232]],[[0.04698883369565,-0.17639592289925,-0.092360578477383],[0.079072423279285,0.025859886780381,-0.1308631002903],[-0.0271021630615,0.014288332313299,-0.2148367613554]],[[0.053542241454124,0.37416538596153,0.20049171149731],[-0.095978319644928,-0.070454463362694,0.14409591257572],[-0.15968495607376,-0.16193760931492,-0.040120828896761]],[[0.078976996243,0.0047582881525159,0.0087505402043462],[-0.13450458645821,-0.15377399325371,-0.26016440987587],[-0.04336167499423,-0.14896763861179,-0.085837863385677]],[[0.093187406659126,-0.14462843537331,-0.06897509843111],[-0.023157797753811,-0.092908777296543,-0.037478860467672],[-0.18645593523979,-0.090931914746761,0.09176416695118]],[[0.053228173404932,0.099544115364552,0.021400827914476],[-0.060427363961935,0.13841564953327,0.11657879501581],[0.10842565447092,-0.0074891983531415,-0.047084324061871]],[[-0.21248179674149,0.017104720696807,0.16750456392765],[-0.17218598723412,0.018724791705608,0.1081695407629],[-0.30260360240936,-0.030114049091935,-0.048303954303265]],[[-0.11449433118105,0.028001707047224,-0.064708039164543],[-0.037816934287548,-0.0090477475896478,-0.083034366369247],[0.047498218715191,-0.034845024347305,-0.22455003857613]],[[0.088891230523586,0.11232494562864,-0.097151607275009],[-0.00557232927531,0.077423803508282,0.18911400437355],[0.029713584110141,0.018806230276823,0.011701148934662]],[[-0.1312603354454,0.13245655596256,0.14556123316288],[-0.030189175158739,-0.098818495869637,0.097499765455723],[0.11120329797268,-0.083780318498611,0.17856433987617]],[[-0.029000138863921,-0.10768216848373,-0.43724864721298],[0.0801952034235,-0.1247711032629,-0.36165428161621],[-0.040064629167318,0.069571994245052,-0.19464182853699]],[[-0.31153631210327,-0.12770573794842,-0.10289393365383],[0.16703094542027,0.058739744126797,-0.044961463660002],[0.022332275286317,-0.080499343574047,-0.1480792760849]],[[-0.024940995499492,-0.11517336219549,-0.14443647861481],[0.22092697024345,0.013321484439075,-0.11842805892229],[-0.0039953207597136,-0.0173828471452,-0.059198658913374]],[[-0.01423698104918,0.14997000992298,-0.4282012283802],[-0.068276010453701,-0.33198636770248,0.070243433117867],[-0.13701608777046,-0.24960152804852,-0.12311007082462]],[[-0.086451560258865,0.22005048394203,0.054976541548967],[0.0039031214546412,-0.022264327853918,-0.180016502738],[0.012648553587496,-0.017742104828358,-0.12648649513721]],[[0.11302711814642,-0.24898399412632,0.069858118891716],[0.16464182734489,-0.11335511505604,-0.058603499084711],[0.1330175101757,-0.2469224780798,-0.082989640533924]]],[[[-0.38942405581474,-0.16269007325172,-0.062049634754658],[-0.36206531524658,-0.054584871977568,-0.11591874808073],[0.074221067130566,-0.07964263856411,-0.064844772219658]],[[0.060045592486858,0.076142735779285,0.23714399337769],[0.012303772382438,0.10369297116995,-0.01940418407321],[0.0063989167101681,-0.013250151649117,-0.042523931711912]],[[-0.17808650434017,0.07160934060812,0.082433111965656],[-0.045369330793619,-0.028869390487671,0.061787374317646],[0.017425842583179,0.029111754149199,0.079347848892212]],[[0.0015030128415674,-0.040513195097446,0.0050876205787063],[0.012274845503271,0.11228825896978,0.023862734436989],[-0.07230706512928,-0.059548709541559,0.045676525682211]],[[0.077379427850246,-0.03011854365468,-0.013332254253328],[-0.12915705144405,0.16463159024715,-0.1454254090786],[0.042698871344328,0.019145222380757,-0.11927060037851]],[[0.084176816046238,0.051912937313318,0.020825169980526],[0.10178039222956,-0.047642331570387,0.14220859110355],[0.12124693393707,-0.0047489651478827,-0.027179758995771]],[[-0.051590915769339,0.064423359930515,-0.0039512179791927],[-0.060399919748306,0.0080562215298414,-0.11433550715446],[-0.038907382637262,-0.024227159097791,0.026664523407817]],[[0.043132148683071,0.038226161152124,-0.10222434997559],[-0.0069945598952472,-0.11621648073196,-0.0061391205526888],[-0.032771959900856,0.070813626050949,0.053176458925009]],[[0.047827295958996,0.036890596151352,0.11894585192204],[0.030614579096437,-0.04369980096817,-0.027687173336744],[0.068756759166718,-0.1968345195055,0.13632260262966]],[[-0.20448340475559,-0.061874967068434,0.0025179868098348],[-0.11346039921045,0.20259219408035,-0.041645146906376],[0.069521524012089,0.091020047664642,0.1130424067378]],[[0.12033733725548,0.066394940018654,0.078493252396584],[-0.090001985430717,-0.0016940087080002,0.10891109704971],[0.019282095134258,0.0033387050498277,-0.078405268490314]],[[-0.24311067163944,-0.092500582337379,0.13881132006645],[-0.010738019831479,-0.20242835581303,0.18206949532032],[0.069413907825947,0.20935262739658,-0.011047773994505]],[[-0.15502373874187,0.0059815500862896,0.019810257479548],[0.023104337975383,0.091358207166195,-0.0264340210706],[-0.054991193115711,-0.0053100800141692,0.14217506349087]],[[-0.053503848612309,0.020526092499495,-0.07619221508503],[0.074730724096298,-0.092980928719044,-0.092940203845501],[0.030330367386341,0.2215683311224,0.11458606272936]],[[0.015218080952764,0.028632828965783,0.027288179844618],[0.0129329059273,0.17520985007286,-0.01576104387641],[-0.019745226949453,-0.12026505917311,-0.035737428814173]],[[-0.028519788756967,0.16286286711693,-0.1438622623682],[-0.0051902392879128,0.038643356412649,0.0067764022387564],[-0.055849950760603,-0.14762504398823,0.033840622752905]],[[0.061630729585886,0.085266180336475,-0.02705642208457],[-0.032459821552038,0.2033017873764,-0.055738255381584],[0.080426409840584,-0.16216933727264,-0.06843663007021]],[[-0.17967209219933,-0.098724380135536,-0.16397121548653],[0.050458986312151,-0.12464360892773,0.032786022871733],[0.036592651158571,0.018801297992468,-0.035785723477602]],[[-0.077583178877831,0.2079014480114,0.0066483239643276],[0.062906190752983,-0.047076366841793,-0.023222148418427],[0.020863153040409,-0.12063151597977,0.042824670672417]],[[-0.18349073827267,-0.030275663360953,-0.19603890180588],[-0.095020346343517,-0.18080517649651,0.12254119664431],[-0.083934359252453,-0.0094446465373039,0.012943872250617]],[[0.04105607047677,-0.29396307468414,-0.22680120170116],[0.20523431897163,-0.063708811998367,0.046631779521704],[-0.11932877451181,0.15900519490242,0.13376513123512]],[[0.03618037328124,-0.061714567244053,-0.0061225616373122],[-0.070677809417248,-0.087697982788086,0.087435357272625],[0.0088818101212382,-0.14558660984039,0.17871591448784]],[[-0.095201447606087,-0.056864079087973,0.096894145011902],[-0.018086992204189,0.21573194861412,-0.097644113004208],[0.045823443681002,0.17699974775314,-0.11021983623505]],[[0.03844378516078,-0.09318133443594,-0.2466985732317],[-0.16558988392353,0.031884469091892,0.064072221517563],[-0.083905749022961,0.076837874948978,0.035161651670933]],[[-0.031825520098209,-0.15529377758503,-0.017032545059919],[0.04313525557518,0.033730525523424,-0.031707189977169],[-0.0060287700034678,0.015541446395218,0.064861558377743]],[[-0.079363137483597,0.20523734390736,-0.20829619467258],[-0.061378132551908,-0.07249466329813,-0.035132601857185],[-0.061279945075512,0.039470806717873,-0.021905919536948]],[[-0.016135793179274,0.12915374338627,0.095392197370529],[-0.049727257341146,-0.011750213801861,-0.014115771278739],[0.027521247044206,-0.05987723171711,-0.14483147859573]],[[0.0017629099311307,0.15123818814754,0.05921346694231],[-0.02395998686552,0.0081063499674201,-0.092193990945816],[0.0098901251330972,0.011235604993999,-0.11881440877914]],[[0.10509347915649,-0.036023505032063,0.050312481820583],[0.027428014203906,-0.11860467493534,-0.1232338026166],[-0.019174955785275,-0.036298092454672,-0.12699013948441]],[[0.073497250676155,-0.13575553894043,0.047460589557886],[-0.026636850088835,-0.002829551929608,-0.026155034080148],[-0.038067601621151,0.19262306392193,0.074676968157291]],[[-0.20682901144028,0.08105530589819,0.10320968180895],[-0.093845918774605,-0.042643595486879,-0.0093677323311567],[0.1224165186286,0.043243411928415,-0.0941416695714]],[[-0.030895043164492,-0.021517740562558,-0.081829838454723],[0.055555924773216,0.073543630540371,0.022020798176527],[0.091392554342747,-0.037640858441591,0.081444002687931]]],[[[0.030669020488858,0.063353776931763,-0.022954946383834],[-0.076485067605972,0.024201655760407,0.012853554449975],[0.058225065469742,0.060342840850353,0.006292246747762]],[[0.027491731569171,-0.036426797509193,-0.064695209264755],[-0.052753649652004,0.067747309803963,0.022334106266499],[-0.11311780661345,-0.086848489940166,0.066411077976227]],[[0.0018728000577539,-0.055593267083168,-0.02130826190114],[-0.081716567277908,-0.068020150065422,0.077619448304176],[-0.078132569789886,0.04451796784997,-0.097094491124153]],[[0.099722400307655,0.0026545249857008,-0.002314250683412],[-0.035683453083038,-0.023099843412638,0.038632642477751],[0.092575274407864,0.002848477801308,-0.0084412265568972]],[[-0.010321861132979,-0.081224657595158,0.068381942808628],[0.095363102853298,-0.032402332872152,0.10978888720274],[0.1194858327508,-0.17584908008575,0.014501066878438]],[[-0.0072209346108139,-0.10990279912949,-0.053793899714947],[-0.040323574095964,-0.040496546775103,-0.05083067342639],[0.01172240357846,0.013408677652478,0.047705668956041]],[[-0.046633452177048,0.05057642608881,0.026855109259486],[0.11089064180851,-0.086380377411842,-0.035580556839705],[0.12188585102558,0.030987987294793,0.20308738946915]],[[-0.066577389836311,0.024672819301486,0.03722607716918],[0.061432313174009,-0.0035575737711042,-0.082539565861225],[0.023394344374537,-0.00032693956745788,0.13097201287746]],[[-0.020045448094606,0.025630680844188,0.0063545466400683],[-0.071321696043015,-0.0033205836080015,0.046736385673285],[-0.012067851610482,0.04777942225337,-0.022027606144547]],[[0.062263049185276,-0.01696634106338,-0.082964815199375],[-0.010421927087009,0.093584008514881,-0.049400269985199],[0.049419816583395,-0.01656018383801,0.039516780525446]],[[-0.005727862007916,0.1391731351614,0.047393132001162],[-0.017856411635876,-0.033515803515911,0.046926192939281],[-0.03731095045805,-0.053809102624655,-0.011435776948929]],[[0.072526529431343,0.072219185531139,-0.086721338331699],[0.011999577283859,-0.032740823924541,-0.06903824955225],[0.029175473377109,0.0071688247844577,-0.10733202844858]],[[-0.0075282449834049,-0.08272735029459,-0.059906665235758],[-0.055033296346664,0.0032432768493891,-0.027615364640951],[-0.016136962920427,0.039437476545572,-0.041230823844671]],[[-0.0067437160760164,-0.0041497168131173,-0.088690578937531],[0.055330831557512,0.054114036262035,-0.036596857011318],[0.047620799392462,-0.0056078210473061,0.063925832509995]],[[-0.036179561167955,-0.021985555067658,0.06216873601079],[0.038839414715767,-0.14857868850231,-0.11741431802511],[-0.028162101283669,-0.11078260838985,-0.020793771371245]],[[0.052039563655853,-0.012024198658764,-0.072513304650784],[-0.011086369864643,-0.058867990970612,-0.030421432107687],[0.015305859036744,-0.066834911704063,0.0085385460406542]],[[-0.0091972639784217,0.040197093039751,-0.21411123871803],[0.17115750908852,-0.042576000094414,-0.017844958230853],[0.046752192080021,-0.051678847521544,0.056927882134914]],[[0.043405588716269,0.070675209164619,0.046204477548599],[0.054061226546764,0.0088129639625549,0.010161267593503],[-0.0097708785906434,0.093465223908424,0.050206921994686]],[[0.095452435314655,0.015532354824245,-0.040921226143837],[0.07995293289423,-0.0065842047333717,0.067346811294556],[0.055789407342672,-0.03558499738574,0.0044896211475134]],[[0.038488384336233,0.015986461192369,0.085374176502228],[-0.055770218372345,-0.033518329262733,-0.030856780707836],[0.017002431675792,0.030937425792217,0.048976898193359]],[[-0.066129691898823,0.0007166201248765,0.050796516239643],[-0.10365771502256,-0.056236993521452,-0.052504260092974],[0.032199919223785,0.027398569509387,-0.081836104393005]],[[-0.10884946584702,-0.1527182161808,-0.081270404160023],[0.18091081082821,0.0050209914334118,-0.040423136204481],[-0.20993155241013,-0.1591387540102,0.035077463835478]],[[0.068589754402637,0.060870759189129,-0.062718957662582],[-0.17774613201618,-0.016822494566441,-0.18933869898319],[-0.077118210494518,-0.14620803296566,-0.11832142621279]],[[-0.012039755471051,0.08772935718298,0.14725649356842],[0.099748082458973,-0.017952118068933,0.023544998839498],[-0.093641497194767,0.15281815826893,0.017502857372165]],[[0.058329675346613,0.076340518891811,-0.15492680668831],[0.029472164809704,-0.079010061919689,0.075004912912846],[0.086291030049324,-0.12439402937889,0.099648900330067]],[[0.026106879115105,-0.022294215857983,0.052172228693962],[-0.00087885116226971,-0.024147171527147,-0.033962599933147],[-0.030080297961831,-0.071572571992874,-0.012188322842121]],[[0.040267169475555,0.091506078839302,-0.0062837451696396],[0.066237658262253,0.015770429745317,0.11917868256569],[-0.052207570523024,0.069628812372684,-0.035018894821405]],[[-0.014972859993577,-0.08043297380209,0.033122643828392],[0.064747922122478,0.080532811582088,-0.016240790486336],[0.14289617538452,-0.055292420089245,-0.04370453953743]],[[0.044919297099113,-0.11999111622572,-0.060556411743164],[0.17626099288464,-0.083566285669804,0.087145507335663],[-0.031256150454283,0.036168176680803,-0.15862247347832]],[[-0.058232601732016,0.020775020122528,-0.025993207469583],[-0.014925139024854,0.030328091233969,0.032140627503395],[-0.08849174529314,-0.16438123583794,0.020222958177328]],[[-0.053540777415037,0.016690475866199,-0.1158187314868],[0.06474843621254,-0.071985475718975,0.080506518483162],[0.086378067731857,0.0048606828786433,0.023696210235357]],[[0.045087710022926,0.0017064485000446,-0.07868067920208],[-0.03759466484189,0.043374828994274,-0.047772899270058],[-0.02382755279541,0.12176219373941,0.0020275947172195]]],[[[-0.025112697854638,0.062350250780582,-0.10694133490324],[0.36995276808739,0.093481212854385,-0.14485695958138],[0.26338556408882,0.032438937574625,0.0023391866125166]],[[0.012449986301363,0.0077082770876586,0.13382595777512],[0.04206096380949,-0.052844513207674,-0.10048845410347],[-0.070163674652576,-0.01855300180614,-0.10073504596949]],[[0.06415855884552,-0.029503282159567,0.06015569716692],[-0.0018223832594231,-0.042645402252674,-0.058440182358027],[0.089650847017765,-0.15697818994522,-0.0011258460581303]],[[-0.11586674302816,0.084223210811615,-0.088662318885326],[-0.076593443751335,-0.19907084107399,-0.0066314158029854],[-0.20759788155556,0.024528397247195,-0.21270258724689]],[[0.14255900681019,-0.0071151214651763,0.095326140522957],[0.099547877907753,0.010750479996204,-0.024247886613011],[0.0092175276950002,-0.14456106722355,-0.090042524039745]],[[-0.09990281611681,-0.09867101162672,-0.093054078519344],[-0.16695658862591,-0.10976959764957,0.16112272441387],[-0.12405231595039,-0.085132725536823,-0.071054391562939]],[[-0.032771866768599,0.042589399963617,-0.15301913022995],[-0.15275827050209,-0.092762917280197,-0.081112571060658],[-0.044980145990849,0.092478550970554,0.0934167355299]],[[0.0067730681039393,-0.17318746447563,-0.10271453857422],[0.10203928500414,-0.087414272129536,0.043068196624517],[0.034303840249777,-0.056533597409725,0.19535793364048]],[[0.00084450689610094,0.20114894211292,-0.015490163117647],[-0.020148379728198,-0.14868320524693,0.087157063186169],[-0.081437066197395,0.035639099776745,0.075201511383057]],[[0.086687095463276,0.011762022040784,-0.10962235927582],[-0.041637655347586,-0.095421195030212,0.084659777581692],[0.034623458981514,-0.19104772806168,0.090444043278694]],[[0.053380958735943,0.19950696825981,0.094374418258667],[0.031085586175323,-0.088716544210911,-0.15222358703613],[0.011102247051895,-0.15787926316261,0.034494485706091]],[[-0.087402768433094,-0.022993350401521,-0.12295038998127],[0.18445762991905,-0.1224463135004,-0.099309399724007],[0.17283870279789,0.028825594112277,-0.066028125584126]],[[0.15437297523022,0.048153609037399,-0.14096076786518],[-0.11609899997711,-0.069272018969059,-0.0016192574985325],[-0.071634121239185,-0.057263221591711,-0.26600140333176]],[[-0.033039923757315,0.15323679149151,-0.12124533951283],[-0.071543358266354,0.014125116169453,0.11945626139641],[0.010141551494598,-0.023907279595733,-0.10822103917599]],[[-0.10309511423111,-0.0051816622726619,0.017882427200675],[-0.050437442958355,-0.077196530997753,-0.15643641352654],[-0.14152432978153,-0.067089200019836,0.23784111440182]],[[0.13171730935574,0.24276511371136,-0.11707999557257],[-0.044169008731842,-0.066635839641094,-0.050986897200346],[-0.05184580385685,-0.032018344849348,0.078467763960361]],[[-0.041833613067865,0.05231324955821,-0.069495007395744],[-0.13641948997974,-0.14477314054966,-0.061047825962305],[0.0029468415305018,-0.093815952539444,0.0084732137620449]],[[0.10167172551155,-0.083463810384274,-0.25896316766739],[-0.10959615558386,-0.21929337084293,-0.15237131714821],[-0.012461576610804,-0.22273972630501,-0.020395567640662]],[[0.023209974169731,-0.13292020559311,-0.0070827226154506],[-0.013205671682954,-0.056324105709791,0.076236702501774],[0.073962956666946,0.15649652481079,0.059949792921543]],[[-0.018110297620296,-0.036134578287601,0.17885205149651],[0.17858396470547,-0.048021201044321,0.14652200043201],[0.034260794520378,0.0066319587640464,-0.013471055775881]],[[-0.033060241490602,0.012491125613451,0.027163926512003],[0.23941440880299,0.09024203568697,0.14972975850105],[0.012938437052071,-0.25408306717873,-0.036405477672815]],[[-0.087779976427555,0.0077984044328332,0.10805866867304],[-0.074295297265053,-0.091083399951458,0.084398627281189],[0.019445529207587,-0.13119271397591,0.074457764625549]],[[0.11880739033222,-0.12660759687424,0.00019340755534358],[0.15856179594994,-0.078518867492676,-0.14520919322968],[0.17839603126049,-0.090375609695911,0.11193571984768]],[[0.02101032808423,0.13829469680786,-0.018720312044024],[0.059499461203814,0.035182766616344,0.037968013435602],[0.046559430658817,-0.015139376744628,-0.20798519253731]],[[0.083003751933575,-0.11894679069519,-0.010472894646227],[0.026428304612637,-0.10416401177645,-0.0142917688936],[-0.058942630887032,0.21733395755291,0.12622810900211]],[[0.12564636766911,0.091119773685932,0.00027603583293967],[-0.067963913083076,0.14315620064735,-0.17521877586842],[0.033524323254824,0.072151556611061,-0.053028799593449]],[[-0.14749896526337,-0.023306103423238,-0.21753320097923],[-0.15039287507534,-0.1918095946312,-0.018443631008267],[-0.081502623856068,0.015016078017652,-0.091802135109901]],[[-0.0023339460603893,-0.10467663407326,-0.11280880868435],[-0.092892423272133,-0.1984217017889,-0.02404647693038],[-0.15642066299915,0.15853926539421,0.11636873334646]],[[0.085488073527813,0.052123326808214,0.076115772128105],[-0.031327772885561,-0.14177526533604,-0.069771222770214],[0.031026564538479,0.089731954038143,0.043377533555031]],[[-0.044451829046011,-0.18184448778629,-0.13077500462532],[-0.18497890233994,-0.010522845201194,0.19818417727947],[-0.027106830850244,0.10283009707928,0.10286647826433]],[[0.02197558619082,0.065718330442905,-0.21912987530231],[-0.059756115078926,-0.12422025948763,-0.10088686645031],[0.03342254832387,-0.012579042464495,-0.026886796578765]],[[-0.038008473813534,-0.064099833369255,0.011875598691404],[0.0053566475398839,-0.097478687763214,0.0095569677650928],[0.030015874654055,0.029995387420058,0.070406794548035]]],[[[0.15896198153496,-0.02542382851243,0.014955975115299],[-0.1681049913168,-0.11247805505991,0.01167434360832],[-0.01315965782851,0.15223668515682,-0.023682137951255]],[[-0.0064097847789526,0.059159461408854,-0.014475527219474],[0.029338980093598,-0.055057719349861,-0.079795569181442],[0.0089624198153615,-0.026741817593575,-0.097247160971165]],[[0.12854610383511,0.05800174921751,-0.078855656087399],[0.011432368308306,0.044768158346415,-0.10428965836763],[-0.062152329832315,-0.046513959765434,0.0632314234972]],[[0.11693846434355,0.01049969624728,-0.029032958671451],[-0.0037744548171759,-0.14687016606331,-0.012880892492831],[-0.075625687837601,-0.0026823298539966,-0.042281240224838]],[[0.05132208392024,0.17086936533451,0.12535351514816],[0.0061350553296506,-0.028722940012813,-0.1822288185358],[0.014867551624775,0.1049734428525,0.021733002737164]],[[0.064996890723705,-0.098244249820709,0.054123014211655],[-0.085250847041607,-0.14991533756256,-0.026016931980848],[0.073048703372478,0.0057989419437945,0.12282586097717]],[[-0.034978818148375,-0.21535237133503,-0.059335552155972],[0.011677755042911,-0.052439592778683,0.0050905025564134],[-0.036536831408739,0.043536357581615,0.18068353831768]],[[-0.041119299829006,0.034897226840258,0.039689868688583],[-0.048196081072092,0.17559857666492,0.064370445907116],[-0.0024866147432476,-0.33724743127823,-0.00045465078437701]],[[0.15296959877014,-0.1031781360507,0.026384899392724],[-0.048709206283092,-0.088240288197994,0.022390186786652],[-0.10474126040936,0.030224410817027,0.023867348209023]],[[0.01671994663775,-0.033182874321938,0.060387119650841],[0.070630230009556,0.0083364229649305,0.027467058971524],[-0.071106746792793,-0.20735658705235,-0.074221633374691]],[[0.10279393196106,0.065897613763809,-0.098262600600719],[0.0068632918410003,-0.026908552274108,-0.01378314383328],[0.094089969992638,-0.02403443492949,-0.1259603202343]],[[0.1804237216711,-0.091595992445946,-0.14021146297455],[-0.023408954963088,0.10770988464355,-0.10690338909626],[0.0055479165166616,0.041718367487192,-0.05388368293643]],[[0.053933676332235,-0.0014970105839893,-0.0019842342007905],[0.033298689872026,-0.075853936374187,0.016012523323298],[0.011210908181965,0.0063007473945618,0.0039906906895339]],[[0.1011405736208,0.056899186223745,-0.074326545000076],[-0.09400724619627,-0.031392887234688,-0.068939171731472],[0.073921144008636,0.019478550180793,-0.021444499492645]],[[0.11827312409878,-0.16301234066486,-0.15732587873936],[-0.1155696734786,-0.61395758390427,-0.10495933890343],[-0.10831698030233,-0.015795521438122,0.083792708814144]],[[-0.004872256424278,-0.00010174624912906,0.0099798114970326],[-0.0066150156781077,-0.13232065737247,-0.010987636633217],[-0.0056123579852283,0.003783090505749,-0.00528659299016]],[[-0.047237914055586,-0.22181865572929,0.021990668028593],[-0.22621151804924,-0.097072936594486,-0.11480565369129],[0.079864367842674,-0.15202099084854,-0.09968937933445]],[[-0.010730625130236,-0.027953503653407,-0.0061218389309943],[-0.097855463624001,0.074764482676983,-0.014974308200181],[0.11097478866577,-0.058003179728985,0.046699166297913]],[[-0.073807001113892,-0.099043674767017,-0.1071588024497],[0.0016326261684299,0.021516960114241,0.2518807053566],[0.073487497866154,0.014549666084349,-0.036050740629435]],[[0.080161117017269,0.15678872168064,-0.051045652478933],[0.13778214156628,-0.056959055364132,-0.067021876573563],[0.043888304382563,-0.014933844096959,0.070252791047096]],[[0.095338992774487,0.048988346010447,0.076874479651451],[0.0003987547243014,-0.14042879641056,-0.028455501422286],[-0.014354903250933,-0.16072499752045,0.037938293069601]],[[-0.078123539686203,0.10385807603598,-0.071142837405205],[0.085381023585796,-0.050623465329409,-0.04843931645155],[0.035302605479956,-0.017399156466126,-0.0043422980234027]],[[0.14971822500229,0.009624152444303,-0.079344138503075],[0.037108648568392,-0.035023994743824,0.058470878750086],[-0.2765890955925,-0.24277015030384,-0.10427957028151]],[[0.037785030901432,-0.049958314746618,0.069424070417881],[-0.1447339951992,0.092404752969742,-0.0071842623874545],[0.028425987809896,-0.020751079544425,-0.021164502948523]],[[0.0081549501046538,-0.10218724608421,-0.062124151736498],[0.10312170535326,0.15166261792183,-0.031582213938236],[-0.053021777421236,-0.02493485249579,0.093824297189713]],[[0.018506912514567,-0.0030280272476375,0.044419154524803],[-0.010617145337164,-0.25381445884705,0.021260507404804],[-0.093408472836018,-0.087443120777607,0.14307343959808]],[[-0.067140080034733,-0.10413095355034,0.084996238350868],[-0.065514735877514,-0.0029660849831998,-0.022091826424003],[0.021015919744968,-0.033310670405626,-0.054603159427643]],[[-0.045235026627779,-0.11656884849072,-0.042942441999912],[-0.13325452804565,-0.1063923612237,-0.028017731383443],[-0.11283169686794,0.025792971253395,0.16267424821854]],[[-0.22353342175484,-0.0066832029260695,-0.089429974555969],[-0.19568230211735,0.0017940745456144,0.088073655962944],[-0.0025730694178492,0.28333786129951,0.13539932668209]],[[-0.04549253359437,0.0030100995209068,0.037304144352674],[0.034185942262411,0.15895061194897,0.015301902778447],[0.030079865828156,0.04226890206337,-0.13439843058586]],[[0.10828430950642,0.11911062151194,-0.083403080701828],[-0.22391384840012,-0.0033187479712069,0.098959289491177],[0.042146217077971,0.006978829856962,-0.023287449032068]],[[-0.10945557802916,0.049195244908333,0.018814995884895],[-0.061136811971664,0.051649667322636,0.010678476653993],[-0.093033641576767,-0.044543173164129,-0.056328415870667]]]],"nOutputPlane":32,"kW":3,"kH":3,"bias":[-0.015943452715874,0.073978587985039,0.0013188297161832,-0.011283865198493,0.022165037691593,0.0082648629322648,-0.020345233380795,-0.0076120654121041,-0.012962901033461,-0.031606145203114,-0.0072578797116876,0.021890230476856,-0.021887315437198,0.0081736100837588,-0.0021077417768538,-0.043398819863796,0.0046981908380985,-0.0032903046812862,-0.0076863477006555,-0.01681998744607,-0.0072864862158895,-0.030378023162484,-0.0037269415333867,-0.0075555760413408,-0.0023169009946287,-0.0088555617257953,-0.054278627038002,-0.032620389014482,-0.0060135861858726,-0.033623896539211,0.0074248318560421,0.0020904811099172],"nInputPlane":32},{"weight":[[[[0.052473932504654,0.0050539965741336,-0.015713054686785],[0.017765069380403,-0.0044232751242816,-0.026127941906452],[-0.0071141994558275,0.060987904667854,0.098072662949562]],[[0.017511520534754,0.0032738989684731,0.022191124036908],[-0.033576708287001,-0.12320267409086,0.12353494763374],[0.063099205493927,0.085040412843227,-0.061576150357723]],[[0.05119738727808,-0.026759292930365,-0.0630813986063],[-0.083597227931023,0.036526586860418,-0.056096874177456],[0.042254470288754,0.045327864587307,-0.066579386591911]],[[-0.042763415724039,0.0065717278048396,0.031480729579926],[-0.08176701515913,0.085812963545322,0.0076000136323273],[-0.04116377979517,-0.0035780814941972,0.043408650904894]],[[-0.025257967412472,-0.063924044370651,0.0099020963534713],[-0.019762445241213,-0.023654837161303,-0.1217106282711],[0.022278374060988,0.084219887852669,-0.011358365416527]],[[-0.022913740947843,-0.086977459490299,-0.19756117463112],[0.086416445672512,-0.022777304053307,-0.0061055351980031],[0.098610356450081,-0.034829460084438,0.00071587320417166]],[[-0.12151096016169,0.009863642975688,0.082393832504749],[-0.01207247748971,0.040419165045023,-0.024082558229566],[-0.055917866528034,-0.0040662968531251,0.0096747577190399]],[[0.0025998873170465,-0.070392526686192,-0.012449361383915],[-0.052856393158436,0.011378962546587,-0.024025050923228],[-0.036110009998083,-0.071932017803192,-0.10428107529879]],[[-0.034362901002169,-0.040992166846991,-0.075152412056923],[0.084361627697945,-0.10361552983522,0.022579068318009],[-0.02128092944622,-0.054718527942896,-0.021657446399331]],[[-0.093714274466038,0.15382838249207,0.027814818546176],[0.048694361001253,0.099217094480991,0.21414969861507],[0.023265516385436,0.057867668569088,0.056407202035189]],[[0.057734817266464,-0.0066670691594481,-0.043937794864178],[0.080827310681343,0.053800974041224,-0.057661056518555],[0.099241763353348,0.037762481719255,0.028436493128538]],[[-0.11672120541334,0.029392927885056,-0.15369445085526],[0.007105995900929,-0.083605349063873,-0.089697979390621],[0.077062822878361,0.14462891221046,0.063427619636059]],[[0.030695434659719,0.081716075539589,-0.054896749556065],[-0.023081531748176,-0.078831546008587,0.033691126853228],[-0.023409120738506,0.042036529630423,0.028395535424352]],[[-0.041725378483534,0.0092253182083368,0.037730809301138],[-0.0096315070986748,0.019134638831019,0.034110948443413],[-0.12836328148842,-0.04397551715374,-0.060257032513618]],[[-0.02497093193233,-0.11728890240192,-0.11596991121769],[-0.055817674845457,-0.086523175239563,-0.063602231442928],[0.14150750637054,0.0077333399094641,-0.076626338064671]],[[-0.092333361506462,0.029916808009148,-0.097409725189209],[0.072802193462849,-0.056079234927893,-0.027252081781626],[0.14866310358047,-0.034549653530121,0.018497744575143]],[[0.014410147443414,-0.03158863261342,-0.041911985725164],[-0.021719956770539,0.043315049260855,-0.010746423155069],[0.0025639317464083,-0.043994218111038,0.052286934107542]],[[0.014153438620269,-0.062796145677567,-0.070304825901985],[0.059979770332575,-0.047364082187414,0.067333333194256],[0.024515120312572,0.036752063781023,0.023257158696651]],[[-0.0091674933210015,-0.0099582374095917,0.046899408102036],[0.058041140437126,0.028536872938275,-0.13925778865814],[0.034635089337826,-0.013023555278778,0.14980886876583]],[[0.014828897081316,-0.014314168132842,0.040605884045362],[0.076283045113087,0.030558824539185,-0.018762430176139],[-0.083346530795097,0.037312127649784,0.035430513322353]],[[-0.0019405914936215,0.070722959935665,-0.030600132420659],[0.10914006084204,0.029856098815799,0.1136569082737],[-0.073139332234859,0.093373537063599,-0.05078149959445]],[[-0.041617717593908,-0.10056798160076,-0.028008852154016],[0.071850508451462,0.011017982847989,0.13766819238663],[0.040242429822683,-0.026985518634319,0.043152812868357]],[[0.0707041695714,0.005533897317946,0.073915965855122],[0.02922947704792,-0.04029469192028,0.16460834443569],[0.070209421217442,0.060251843184233,0.080653257668018]],[[0.019218366593122,-0.008379046805203,-0.051299586892128],[0.10472910106182,-0.054527092725039,0.046764295548201],[0.062207479029894,-0.012952155433595,0.041634019464254]],[[-0.052220441401005,0.14477136731148,0.052786868065596],[-0.0030823980923742,-0.033358428627253,-0.025841630995274],[-0.045230112969875,0.055580470710993,-0.02514198794961]],[[0.0071051232516766,0.02700225263834,-0.050189450383186],[-0.0070626735687256,0.015515621751547,0.1265674829483],[0.0096748061478138,-0.037882447242737,-0.10362274944782]],[[0.026536099612713,-0.079264789819717,-0.0053672376088798],[0.092005081474781,-0.1285430341959,-0.11426236480474],[0.0047059198841453,0.13990218937397,0.037845138460398]],[[0.12625959515572,-0.028593240305781,-0.054155647754669],[0.0060782264918089,0.017358837649226,-0.033499915152788],[0.03572778403759,0.083217188715935,0.026350514963269]],[[0.049448378384113,-0.05512136220932,0.0032861479558051],[0.017795091494918,-0.027934739366174,0.0084778387099504],[-0.060717422515154,0.06330269575119,-0.12223612517118]],[[0.022397968918085,-0.011957474984229,-0.002927694004029],[-0.027528274804354,0.13629804551601,-0.024726396426558],[-0.0042247157543898,0.01349962502718,0.027902726083994]],[[0.089887358248234,-0.092552050948143,-0.18842424452305],[-0.15494927763939,-0.16303795576096,-0.11691728979349],[0.056420460343361,-0.076937228441238,-0.025840735062957]],[[0.018814625218511,0.042041547596455,-0.02703526429832],[-0.046170119196177,-0.043485913425684,-0.012427624315023],[-0.0043821213766932,-0.064029194414616,0.027754744514823]]],[[[-0.066711358726025,0.033769782632589,-0.14964187145233],[-0.060597088187933,0.05547159165144,0.037307161837816],[-0.022842286154628,0.032563585788012,0.085352659225464]],[[0.012150039896369,-0.021915514022112,0.010399426333606],[-0.048688150942326,0.010259174741805,0.016641516238451],[-0.067009426653385,-0.021732868626714,0.12550093233585]],[[-0.033672731369734,-0.11389914155006,-0.12363864481449],[0.092790156602859,-0.037124015390873,-0.055879797786474],[-0.031380273401737,0.060624375939369,-0.0154661340639]],[[-0.005041497759521,-0.053452715277672,-0.06397545337677],[0.046989306807518,0.0095670148730278,-0.053554601967335],[0.010412978939712,-0.057630270719528,-0.018908347934484]],[[-0.011129931546748,-0.024352831766009,-0.0038385144434869],[-0.083266153931618,-0.08354390412569,0.012421700172126],[0.047324541956186,0.00069245032500476,-0.066228561103344]],[[-0.033246714621782,-0.078200235962868,-0.015769217163324],[0.16158366203308,-0.14944112300873,-0.17653632164001],[-0.024538738653064,-0.020145498216152,-0.014278501272202]],[[-0.031670074909925,0.037727445363998,0.065062768757343],[-0.16450595855713,-0.057296417653561,0.019153293222189],[-0.09097446501255,0.062190733850002,-0.027267161756754]],[[-0.050676595419645,0.01232994440943,0.0029727234505117],[-0.0036692637950182,-0.054408531636,0.065630629658699],[-0.11539296805859,0.063032858073711,0.021058889105916]],[[0.06480698287487,-0.023603674024343,-0.14033971726894],[0.004512295126915,0.11008360236883,-0.12612599134445],[0.049143936485052,-0.011273349635303,-0.0041993106715381]],[[0.0112135251984,0.047031864523888,0.17288376390934],[-0.059470076113939,0.12754376232624,0.25827112793922],[0.060469683259726,0.27428752183914,0.070885345339775]],[[0.042436119168997,-0.022800251841545,-0.11103336513042],[0.017969263717532,-0.070467054843903,0.097606137394905],[0.1155339628458,0.1105080768466,-0.059676993638277]],[[0.050965908914804,-0.13023619353771,-0.0070186583325267],[0.034205634146929,-0.030059181153774,-0.049342360347509],[-0.09545973688364,0.019199348986149,0.030904892832041]],[[0.017259670421481,-0.073143392801285,-0.14148515462875],[0.043216291815042,0.0065148160792887,-0.050154529511929],[-0.0011258769081905,-0.10303095728159,-0.045189835131168]],[[-0.1294566988945,0.020120605826378,0.02365130931139],[-0.14166502654552,-0.15151929855347,-0.063064001500607],[-0.039195518940687,0.092530645430088,0.10708078742027]],[[-0.018390530720353,-0.0692288428545,0.096591047942638],[-0.059814453125,0.01775299757719,0.10861791670322],[-0.027348577976227,-0.13844856619835,0.04305412247777]],[[-0.18697647750378,0.062454883009195,0.048211324959993],[-0.011884682811797,-0.042117219418287,-0.0071924333460629],[-0.038405559957027,-0.022347604855895,0.0079693561419845]],[[-0.2020758241415,-0.10116568952799,-0.075308710336685],[-0.14213100075722,-0.14097459614277,-0.061818305402994],[-0.21196134388447,-0.12655599415302,-0.051495116204023]],[[-0.15187326073647,0.0033918132539839,0.052161995321512],[0.040107034146786,-0.14187826216221,-0.07232242077589],[0.20186750590801,-0.11428243666887,-0.064749322831631]],[[-0.19773940742016,-0.075072452425957,-0.0056357746943831],[-0.24348194897175,-0.080615408718586,0.009842867963016],[-0.11238013952971,-0.094864435493946,0.12433516979218]],[[-0.039412468671799,0.074729137122631,-0.0030703744851053],[0.011648102663457,-0.086256936192513,-0.017156399786472],[0.058779086917639,-0.17544156312943,0.038530074059963]],[[-0.051859930157661,-0.00077587808482349,-0.096909135580063],[-0.059481903910637,0.1205211058259,0.075794085860252],[-0.074440911412239,-0.11464989930391,0.072393409907818]],[[0.030626974999905,-0.069668114185333,0.028563665226102],[-0.016643324866891,-0.071633733808994,0.0582543797791],[-0.11081781238317,0.028336009010673,-0.020198788493872]],[[0.051901437342167,0.0064510093070567,0.079773396253586],[0.050774246454239,0.1433000266552,0.07570394128561],[-0.015363361686468,0.16883845627308,0.11345577985048]],[[-0.090961329638958,-0.088779084384441,-0.042534228414297],[-0.061297126114368,-0.01788486354053,-0.076658025383949],[-0.2116367816925,-0.020593388006091,0.16138462722301]],[[-0.038803923875093,0.084770381450653,-0.023747511208057],[-0.14047172665596,-0.012015759013593,0.083231769502163],[0.013133590109646,0.10818480700254,-0.038000345230103]],[[0.088062390685081,0.072308279573917,-0.1118618324399],[-0.0030680305790156,-0.10647826641798,0.01180827524513],[-0.063569068908691,-0.021524447947741,-0.062429964542389]],[[0.016675788909197,-0.00056163803674281,0.041591301560402],[0.082280270755291,0.0087507208809257,-0.075283601880074],[0.051259513944387,-0.090623669326305,-0.041140269488096]],[[0.039667721837759,0.15529373288155,0.11732953041792],[0.070245705544949,-0.0065668197348714,0.25715619325638],[-0.023607604205608,-0.10932392627001,0.075633965432644]],[[0.091583520174026,-0.12425435334444,0.062908738851547],[0.052322424948215,0.0013201974797994,-0.067212820053101],[-0.016348807141185,-0.0332239754498,0.054998032748699]],[[0.066602736711502,-0.058685995638371,0.022541578859091],[-0.0056394506245852,-0.0084164096042514,0.0079021453857422],[-0.012515822425485,0.038643632084131,-0.08683355152607]],[[-0.1170345172286,-0.13311910629272,0.020139673724771],[0.017342703416944,-0.096121780574322,-0.0069053992629051],[0.13855795562267,-0.14911483228207,-0.14771826565266]],[[-0.016013212502003,0.00030477685504593,-0.037620544433594],[0.029370186850429,-0.13440279662609,-0.14615742862225],[-0.023862577974796,0.0066991145722568,-0.0055239535868168]]],[[[0.0077457898296416,-0.26327088475227,-0.058354437351227],[0.0055494648404419,0.11696685105562,0.00055023626191542],[-0.0054202717728913,-0.019341168925166,-0.0027497760020196]],[[0.0024855758529156,0.14034856855869,0.1522369235754],[-0.016333289444447,-0.12937812507153,-0.05875862762332],[-0.03374170139432,-0.011251190677285,-0.048805080354214]],[[-0.061536267399788,0.10754879564047,0.096032500267029],[-0.029102753847837,0.0025144061073661,-0.017882477492094],[0.047835327684879,-0.024237168952823,0.037543073296547]],[[-0.024463146924973,-0.014186853542924,-0.31909388303757],[-0.014715100638568,-0.030774671584368,-0.043092004954815],[0.024336164817214,0.026742666959763,-0.017782961949706]],[[-0.040375720709562,-0.030080858618021,0.015648851171136],[-0.018730552867055,0.014618806540966,-0.046307437121868],[0.0057138996198773,0.025354519486427,-0.012555574066937]],[[-0.045006275177002,0.061645153909922,-0.04888404160738],[0.1097723543644,0.024279398843646,-0.0074976561591029],[0.069640547037125,0.095546036958694,-0.01035248208791]],[[-0.025108283385634,-0.04749308526516,0.021755307912827],[-0.028315093368292,-0.073287360370159,0.075322814285755],[-0.0076499842107296,-0.028012873604894,-0.024946732446551]],[[0.065427631139755,-0.036322303116322,-0.031889960169792],[-0.0066435523331165,0.019739596173167,0.12180612236261],[0.012971013784409,0.0011816456681117,0.023323087021708]],[[0.052371274679899,0.034996829926968,-0.04441862180829],[0.011065444909036,0.060430288314819,-0.076304405927658],[0.021606175228953,0.062902309000492,-0.12067753821611]],[[0.070245079696178,-0.025247078388929,0.17957276105881],[-0.13650894165039,-0.17345812916756,-0.12505914270878],[0.0082883620634675,0.054863590747118,0.0054160063154995]],[[0.024716477841139,0.0081206010654569,0.060976587235928],[0.21216470003128,0.063745498657227,0.023785170167685],[-0.083312183618546,-0.016403410583735,-0.00043024262413383]],[[0.11266008019447,0.0056619145907462,0.13268414139748],[0.12603282928467,-0.05417312681675,0.036002915352583],[0.010025114752352,-0.15645681321621,-0.11736962944269]],[[0.041563529521227,-0.088435731828213,0.011999156326056],[-0.10495610535145,-0.18357181549072,-0.069701194763184],[0.1367883682251,0.0016339735593647,0.075862042605877]],[[-0.070234961807728,-0.010611957870424,-0.062062166631222],[0.067238889634609,-0.025706727057695,0.014354990795255],[0.017897350713611,0.06406657397747,0.089538924396038]],[[-0.042535245418549,-0.088314600288868,-0.074606984853745],[-0.03442744538188,0.0057469988241792,0.028843201696873],[0.033224001526833,0.035436522215605,-0.087030135095119]],[[0.033377561718225,0.068852715194225,-0.017283018678427],[-0.083068214356899,-0.091693453490734,-0.051319994032383],[0.029011463746428,0.087838612496853,0.15063604712486]],[[-0.042632512748241,0.065489858388901,-0.10939820855856],[-0.033389151096344,-0.14292766153812,-0.082531057298183],[-0.012365729548037,-0.048605661839247,-0.033250752836466]],[[0.010034410282969,0.071538798511028,-0.0058504128828645],[-0.00043803278822452,-0.072529286146164,0.10490207374096],[-0.00011448240547907,0.017881061881781,-0.042667388916016]],[[0.047978080809116,-0.020008213818073,0.09601965546608],[-0.0428751334548,-0.089005328714848,-0.022162027657032],[-0.002851769560948,0.064776130020618,-0.10469748079777]],[[-0.032482974231243,-0.023379107937217,0.010237537324429],[-0.027296053245664,-0.060578435659409,-0.017772287130356],[0.077599428594112,-0.0090312659740448,-0.087729625403881]],[[0.068534210324287,0.020630130544305,0.29064837098122],[-0.02958669513464,-0.035434685647488,-0.047341756522655],[0.0044184201397002,-0.085784964263439,-0.023670261725783]],[[-0.10632166266441,0.045267730951309,0.16324503719807],[0.037754397839308,0.089841395616531,-0.14430981874466],[-0.074832245707512,-0.13157227635384,-0.030978266149759]],[[-0.030533347278833,-0.050325442105532,0.0079864161089063],[0.10530517250299,0.029848795384169,0.13848991692066],[-0.020834363996983,0.14684566855431,0.16223160922527]],[[0.023756558075547,0.017058022320271,-0.0083998972550035],[0.023071382194757,0.036213286221027,0.02209503762424],[0.00058807473396882,0.056454561650753,-0.026364667341113]],[[-0.039246410131454,-0.00042981345904991,-0.041254092007875],[-0.071002945303917,-0.0074110808782279,0.034367792308331],[-0.04013605043292,-0.10625077784061,-0.10736301541328]],[[-0.020872298628092,-0.011198407039046,0.13226428627968],[-0.041405942291021,-0.036393597722054,0.026585271582007],[-0.052069492638111,0.0051300628110766,0.054763145744801]],[[-0.017062878236175,-0.10969635099173,-0.11786215007305],[0.030290508642793,0.12355627119541,0.059557978063822],[0.016607280820608,0.013683003373444,0.00584283657372]],[[0.043492261320353,-0.16798031330109,0.13198681175709],[-0.082759484648705,-0.18307490646839,-0.091407686471939],[0.032472230494022,0.087847031652927,-0.035453949123621]],[[0.074591025710106,0.096517980098724,0.11219468712807],[0.02362484484911,0.10893864184618,-0.069194093346596],[0.046606935560703,-0.0077802143059671,-0.037959549576044]],[[-0.0052507952786982,-0.11126379668713,-0.1047752276063],[0.0016440330073237,0.005844525527209,-0.079794891178608],[0.026569673791528,0.042152177542448,0.009266977198422]],[[-0.030344381928444,-0.17238126695156,0.036888401955366],[-0.028784718364477,0.060718569904566,-0.05874202772975],[0.046788081526756,0.019714891910553,-0.018192898482084]],[[0.0056097232736647,0.04350183531642,-0.22749881446362],[0.014439277350903,-0.03063215687871,0.062416072934866],[0.012073782272637,0.024716895073652,0.014867584221065]]],[[[-0.0022124007809907,-0.052201569080353,0.0084475921466947],[0.0055862418375909,0.094582930207253,-0.13399471342564],[0.066446609795094,0.067392930388451,-0.016226561740041]],[[-0.011531108990312,0.0044688591733575,0.065725475549698],[-0.087475396692753,-0.17865641415119,0.098937995731831],[-0.030534928664565,-0.021753747016191,0.10581236332655]],[[0.017121657729149,0.0023262915201485,0.033114694058895],[0.19996762275696,0.059235636144876,-0.02937089651823],[-0.11005710810423,-0.02376227080822,0.052545674145222]],[[-0.058393709361553,-0.089019991457462,0.0062514590099454],[0.0046425545588136,0.03472875803709,0.01163384411484],[-0.051358468830585,-0.037928219884634,0.0045658843591809]],[[0.033112738281488,-0.043609790503979,0.0028659689705819],[0.070349670946598,0.070891067385674,0.054863382130861],[0.14025555551052,0.1423052251339,0.090681597590446]],[[0.019408788532019,-0.014437333680689,0.045334003865719],[-0.082698658108711,0.018606098368764,-0.021366789937019],[0.019320476800203,0.07158088684082,0.030514793470502]],[[-0.035803928971291,-0.095678880810738,-0.10957259684801],[-0.0066032293252647,-0.064248740673065,-0.01919817365706],[0.032364718616009,-0.075849741697311,-0.074341841042042]],[[0.020664200186729,-0.048261776566505,0.020444182679057],[-0.05762692540884,-0.085174076259136,-0.082202643156052],[-0.056422293186188,-0.11662479490042,-0.03803825750947]],[[0.014915510080755,-0.06486963480711,-0.13209037482738],[0.12225302308798,-0.13245743513107,0.061646394431591],[0.069589957594872,-0.14873151481152,-0.026736678555608]],[[0.071814246475697,0.0073435232043266,0.1364164352417],[-0.12897646427155,-0.048696845769882,0.11148735880852],[-0.06387048214674,0.062887512147427,0.27207747101784]],[[0.2891705930233,0.098196461796761,-0.036056961864233],[0.11188362538815,0.0091583486646414,-0.053341425955296],[-0.10320887714624,-0.29256498813629,-0.18274760246277]],[[0.033526122570038,-0.0053108073771,0.032065223902464],[-0.032653789967299,-0.025685409083962,0.029856106266379],[-0.051581542938948,-0.041139110922813,-0.028058549389243]],[[-0.015833796933293,-0.028028983622789,0.060339417308569],[-0.04175815358758,-0.020359206944704,0.034837484359741],[-0.081754088401794,-0.11720380932093,0.002429157262668]],[[0.16218848526478,0.030982891097665,-0.022852819412947],[-0.023231538012624,-0.050596673041582,0.019223986193538],[-0.01675483956933,0.039676073938608,-0.028529325500131]],[[0.02276149764657,-0.072654709219933,-0.058269910514355],[0.015821974724531,0.021780179813504,-0.013186355121434],[0.093520753085613,-0.023352846503258,-0.010051734745502]],[[-0.10598489642143,-0.044651612639427,-0.088787853717804],[-0.079452387988567,-0.06148611754179,-0.049035359174013],[0.010542765259743,-0.093321450054646,-0.001797602744773]],[[0.0405647829175,-0.045206654816866,-0.038859397172928],[-0.02821996435523,-0.15748983621597,-0.077344536781311],[0.0210867729038,-0.090241283178329,-0.062914721667767]],[[0.014294021762908,0.035216204822063,-0.0051779602654278],[-0.0353490896523,-0.042288351804018,-0.096560768783092],[0.056353818625212,-0.078512012958527,-0.074163258075714]],[[-0.063524298369884,0.019703265279531,0.05508391559124],[-0.0542510189116,-0.13338184356689,0.071734189987183],[0.054843503981829,0.091224908828735,0.023626228794456]],[[-0.019369343295693,-0.041765443980694,-0.0022318565752357],[0.042448651045561,-0.088474236428738,0.040397193282843],[0.070323877036572,-0.22419966757298,0.017804114148021]],[[-0.13447389006615,0.18474045395851,0.15070217847824],[-0.17086727917194,-0.045763924717903,0.26329651474953],[-0.14198473095894,-0.026786351576447,0.061307065188885]],[[-0.12922030687332,0.047159347683191,-0.1083011329174],[0.082503922283649,-0.075848080217838,-0.055555023252964],[-0.041580643504858,-0.014642097987235,-0.1199286878109]],[[0.032004356384277,0.033650990575552,0.036324370652437],[-0.093650653958321,0.19846205413342,0.3532021343708],[0.12175369262695,-0.021103007718921,0.1164552718401]],[[-0.028102489188313,-0.15776713192463,-0.00290871062316],[-0.13674898445606,0.012363323010504,-0.055792022496462],[-0.038226511329412,-0.061691224575043,0.081026844680309]],[[-0.019149530678988,0.066241748631001,0.069067783653736],[0.005824962630868,0.01796505227685,0.019649351015687],[0.0039753648452461,0.034894477576017,-0.016076410189271]],[[-0.095380425453186,-0.050551030784845,-0.012621900998056],[-0.024533865973353,-0.042646165937185,0.043468654155731],[0.015425239689648,0.048975829035044,0.057850539684296]],[[0.0085140541195869,0.015160661190748,-0.10315372794867],[0.14165988564491,0.07013151794672,-0.060267120599747],[0.056122161448002,-0.098179958760738,-0.017789283767343]],[[0.089718207716942,0.096509970724583,-0.053985085338354],[0.032500598579645,-0.080913633108139,-0.15252257883549],[0.12354049086571,-0.12326030433178,-0.12330647557974]],[[0.022247461602092,-0.070961304008961,0.056493546813726],[0.094332650303841,-0.15299375355244,-0.010761167854071],[0.035228379070759,-0.01040873862803,0.094823874533176]],[[0.044534467160702,-0.0095202317461371,-0.10369990766048],[0.042158514261246,0.10695533454418,-0.0018220138736069],[0.08512157201767,-0.02422334253788,-0.068912476301193]],[[-0.023000650107861,0.048218946903944,-0.09537198394537],[-0.003947545774281,-0.030730213969946,-0.007972301915288],[0.029482156038284,-0.047495737671852,0.032930251210928]],[[0.022222731262445,-0.23768673837185,-0.15403467416763],[-0.037483163177967,-0.067714296281338,-0.13421934843063],[-0.019013157114387,-0.0064744874835014,0.016487928107381]]],[[[0.019648602232337,0.034887656569481,0.052381820976734],[-0.073610447347164,-0.036865882575512,-0.017514424398541],[-0.056303072720766,-0.093282990157604,-0.034358292818069]],[[-0.070253826677799,-0.015790414065123,0.082661166787148],[0.027886107563972,0.10244452208281,0.02003769762814],[0.018295740708709,-0.0078005064278841,-0.080871522426605]],[[0.10592413693666,-0.09364715218544,-0.14424356818199],[0.059492167085409,0.067502945661545,-0.063801802694798],[-0.088824532926083,-0.0055997902527452,-0.12742726504803]],[[0.095433339476585,0.098201528191566,0.038975488394499],[0.0091995345428586,0.0044658742845058,0.081328734755516],[-0.0011989163467661,0.045335445553064,-0.088034376502037]],[[-0.054274868220091,-0.015032380819321,-0.14163671433926],[-0.089142248034477,0.061721630394459,-0.084670603275299],[0.0027858982793987,-0.073698215186596,0.0049552391283214]],[[0.022424465045333,0.025808734819293,-0.063770443201065],[0.18830989301205,-0.019829111173749,-0.033139456063509],[-0.082485295832157,-0.096887834370136,-0.095599740743637]],[[-0.042885631322861,0.05018064007163,-0.020578680559993],[0.081362143158913,0.02170086465776,-0.015981698408723],[-0.11747154593468,0.0065133511088789,0.041239712387323]],[[0.020078560337424,-0.013237494975328,0.029497992247343],[-0.056318636983633,-0.015703342854977,-0.03090263903141],[-0.10242895036936,0.074375808238983,0.041976187378168]],[[0.0041110785678029,-0.069395527243614,0.033358428627253],[-0.13550099730492,-0.054457742720842,0.05807513743639],[-0.10735930502415,0.036803897470236,-0.047539185732603]],[[0.034156322479248,0.08483312278986,0.052876766771078],[0.067199684679508,0.13267916440964,0.028720919042826],[0.041232500225306,0.081760376691818,-0.010768426582217]],[[0.0053653907962143,0.071818135678768,0.029342390596867],[-0.076885730028152,0.066793814301491,0.0036912087816745],[0.16922797262669,-0.079665638506413,0.032361112535]],[[-0.092420823872089,0.027122868224978,-0.10535384714603],[-0.14375098049641,-0.014576879329979,0.028867486864328],[0.17017985880375,-0.046779952943325,0.089704647660255]],[[0.094382680952549,0.01802327670157,0.0014296973822638],[-0.036314487457275,-0.084560811519623,-0.032209035009146],[-0.095254324376583,0.065005160868168,0.078201442956924]],[[0.069916285574436,0.02988613769412,0.093380883336067],[-0.03374195471406,-0.072351261973381,-0.019452815875411],[0.071386992931366,-0.073734246194363,0.0093926955014467]],[[-0.047504138201475,-0.12363179028034,0.16647663712502],[-0.069611705839634,-0.12961041927338,-0.017024260014296],[-0.029829893261194,-0.080276034772396,0.0016585710691288]],[[-0.068168230354786,0.080730877816677,-0.072629183530807],[0.10869514942169,0.027209078893065,0.011314312927425],[0.12326875329018,0.10510314255953,0.06031734123826]],[[-0.034199461340904,-0.085469923913479,-0.015683099627495],[-0.074624434113503,-0.08229660987854,0.10144703090191],[0.010240999050438,-0.069029748439789,-0.062707401812077]],[[0.080524519085884,0.042626705020666,-0.016219455748796],[0.084765791893005,-0.03045461140573,-0.09274772554636],[-0.15722647309303,-0.0038853934966028,-0.025052443146706]],[[-0.082704305648804,0.05325960740447,-0.056593872606754],[0.056344874203205,0.06405933201313,0.051901638507843],[-0.0667689666152,0.058074980974197,-0.044842734932899]],[[-0.030874434858561,0.069068498909473,0.062602743506432],[-0.0075033362954855,0.0011354913003743,0.021342791616917],[0.0074498588219285,-0.033063046634197,0.023929532617331]],[[0.12259738147259,0.054012794047594,0.095881469547749],[-1.268044252356e-05,-0.071598961949348,0.16552563011646],[-0.089487560093403,0.13134442269802,-0.022786989808083]],[[0.0064076697453856,-0.037074908614159,0.15240639448166],[0.075939178466797,-0.023905234411359,0.068382620811462],[0.077461004257202,-0.14416415989399,0.084739618003368]],[[0.026893030852079,0.065643765032291,-0.02215414494276],[0.015707271173596,0.030731486156583,-0.014926433563232],[0.05562885850668,0.036232184618711,0.096842087805271]],[[-0.022593753412366,0.016142940148711,0.073884934186935],[0.074180409312248,0.05457504093647,0.046894889324903],[0.025415636599064,0.045795310288668,-0.022378608584404]],[[0.065212272107601,0.062362298369408,-0.00042222643969581],[-0.070968016982079,0.051301959902048,-0.080005429685116],[0.036079250276089,0.038657430559397,-0.031318705528975]],[[0.07613018155098,-0.045739803463221,0.043061409145594],[-0.0053969300352037,0.030634138733149,-0.063092708587646],[-0.061161398887634,-0.022695092484355,-0.047598104923964]],[[-0.11710979789495,0.031053449958563,-0.077586330473423],[0.036410484462976,0.022920656949282,0.08561085164547],[-0.059948582202196,0.12071111798286,-0.054901171475649]],[[-0.00024598513846286,0.071525327861309,0.025715354830027],[0.055289376527071,0.016341276466846,-0.045061267912388],[-0.078687220811844,0.087193474173546,0.11195800453424]],[[0.098424136638641,-0.0049101100303233,0.16543279588223],[-0.083868406713009,0.015408910810947,0.033403962850571],[-0.20516972243786,-0.089729599654675,-0.029713718220592]],[[-0.027184510603547,0.030461532995105,0.03429651260376],[0.10454371571541,-0.038219910115004,0.070992991328239],[0.15904562175274,-0.085524879395962,-0.0030447149183601]],[[0.093419179320335,-0.059156853705645,0.14296799898148],[0.12815296649933,-0.19779461622238,-0.093947701156139],[-0.019110469147563,-0.036392699927092,-0.11490864306688]],[[0.009595962241292,0.06404136121273,-0.014179882593453],[0.1227008253336,-0.0047498294152319,0.00079397932859138],[0.073363669216633,0.044185180217028,0.090061038732529]]],[[[-0.10912109166384,-0.0078583611175418,-0.23834705352783],[0.051918044686317,0.097308985888958,-0.25702905654907],[-0.050905674695969,-0.061312355101109,-0.11536410450935]],[[0.0063831177540123,-0.0084664132446051,0.020619599148631],[0.0047574969939888,-0.0029453679453582,-0.035231333225965],[-0.027268245816231,-0.036460872739553,0.029513418674469]],[[0.043729696422815,0.046608988195658,0.05066155269742],[0.11237713694572,-0.013847447931767,-0.094032615423203],[0.0027927067130804,-0.16204385459423,-0.026374813169241]],[[-0.033924780786037,-0.016196750104427,-0.065516762435436],[-0.047455459833145,0.024686336517334,-0.025571040809155],[-0.0036128270439804,-0.011038636788726,0.080994077026844]],[[0.068810731172562,0.044486347585917,0.085631653666496],[0.056969102472067,0.055930852890015,-0.0016613841289654],[-0.056010134518147,0.065799333155155,0.089224420487881]],[[-0.14099426567554,0.010829105973244,-0.048457663506269],[-0.1126674041152,0.11060743778944,-0.0090225730091333],[0.018834117799997,0.24562503397465,-0.118378482759]],[[0.024709014222026,0.07084484398365,0.025155609473586],[0.087016128003597,0.090211965143681,-0.028255878016353],[-0.076443508267403,-0.104257337749,-0.060950547456741]],[[0.10123911499977,-0.066136240959167,-0.086147949099541],[0.04115179926157,-0.2227897644043,-0.04655085504055],[-0.03601261228323,-0.06072436645627,-0.081397093832493]],[[-0.0046866456978023,-0.015604929998517,-0.031492203474045],[-0.069673754274845,0.011481090448797,-0.10005848109722],[0.014705469831824,0.14409470558167,0.015091545879841]],[[0.052830062806606,0.1689437776804,0.15028050541878],[-0.043710421770811,0.25866106152534,0.10806080698967],[0.041938226670027,0.16990964114666,0.13574732840061]],[[0.068081960082054,-0.070507183670998,0.041608039289713],[0.038820866495371,0.068141892552376,-0.054396770894527],[-0.062931589782238,-0.057510834187269,-0.016807923093438]],[[-0.12190271168947,-0.0060678771696985,0.089439772069454],[-0.10693718492985,-0.065238334238529,-0.054306205362082],[0.022652475163341,0.041207145899534,0.0027321011293679]],[[-0.041349437087774,-0.15733301639557,-0.04262650385499],[-0.1149699985981,-0.14266139268875,-0.0074321278370917],[-0.017431475222111,0.13860708475113,0.10384713858366]],[[0.18886806070805,-0.059074100106955,-0.17852929234505],[0.021781384944916,-0.13871401548386,0.031144268810749],[0.073083892464638,-0.16271951794624,-0.30052655935287]],[[0.0070418054237962,0.075653322041035,-0.06754994392395],[0.055861722677946,-0.033264994621277,0.025824571028352],[0.077158592641354,0.020072318613529,-0.038317177444696]],[[-0.12538850307465,-0.18487013876438,-0.044522553682327],[-0.22947624325752,-0.1689564883709,0.14343410730362],[-0.12589213252068,-0.0025535000022501,0.045577149838209]],[[-0.0049291253089905,-0.014395220205188,-0.28391268849373],[0.057183872908354,-0.11258482187986,-0.12798680365086],[-0.0022189340088516,0.0032675210386515,0.14810395240784]],[[-0.019562175497413,-0.16929061710835,-0.063924998044968],[0.0030233133584261,-0.041773620992899,0.036796923726797],[0.042914010584354,-0.06706278771162,0.097082853317261]],[[-0.067597270011902,-0.07417356222868,-0.11479019373655],[0.023471731692553,-0.0074807782657444,-0.08713273704052],[0.11333375424147,-0.13083176314831,0.001833648304455]],[[0.10243166983128,-0.016243247315288,-0.033012319356203],[0.11552871018648,-0.064055867493153,-0.022428277879953],[0.065508797764778,0.055554002523422,0.0053347409702837]],[[-0.04955467581749,-0.015992403030396,0.26209843158722],[-0.076319321990013,0.076024867594242,0.16384607553482],[-0.031348817050457,0.033378563821316,0.0988415107131]],[[-0.027246696874499,-0.065753638744354,0.080239214003086],[-0.040754314512014,0.0091898683458567,-0.0042654019780457],[-0.07223879545927,-0.10381709784269,-0.0032483590766788]],[[-0.026934551075101,-0.030641598626971,0.27504223585129],[-0.0013301421422511,0.21765504777431,0.1993228495121],[-0.08523628115654,0.17782580852509,0.10113210976124]],[[-0.021384498104453,-0.033268559724092,-0.020808648318052],[0.07211272418499,-0.03964464366436,0.0002573192177806],[0.12013279646635,-0.031967613846064,-0.031009187921882]],[[-0.092142224311829,-0.0013904386432841,0.085184305906296],[0.026423148810863,0.10722951591015,-0.09213549643755],[-0.021149540320039,-0.0017698698211461,0.023814998567104]],[[0.036407884210348,0.053077325224876,0.030829241499305],[0.059568915516138,-0.0027485173195601,-0.031573850661516],[-0.0087907928973436,0.0015943403122947,-0.031957998871803]],[[0.033477410674095,-0.07134061306715,-0.10620383173227],[0.0016215465730056,0.047828081995249,-0.011124988086522],[-0.004895118996501,0.090703755617142,0.015901461243629]],[[-0.10295870155096,-0.033911984413862,0.0058947918005288],[-0.040286481380463,0.031746298074722,0.0075270961970091],[0.01805791631341,0.05176655203104,-0.029268931597471]],[[-0.0225201677531,0.084720991551876,0.049771022051573],[0.048936825245619,-0.085050530731678,-0.033766038715839],[0.1054600700736,-0.034656926989555,-0.029999058693647]],[[0.16210882365704,-0.12263701856136,-0.073917143046856],[0.049427434802055,0.14040151238441,-0.086656011641026],[0.080874569714069,-0.0024999701417983,-0.099564485251904]],[[0.0124273262918,0.045353181660175,0.17127035558224],[-0.14406707882881,0.067670941352844,0.088065050542355],[-0.073049977421761,-0.11084812879562,0.014390327036381]],[[-0.040381487458944,0.098206147551537,-0.054103080183268],[0.035244610160589,0.12470170855522,0.006268338765949],[0.1222855374217,0.10512667149305,0.072701193392277]]],[[[-0.053808487951756,0.17131160199642,-0.0072078118100762],[0.15677835047245,-0.10430571436882,0.10399570316076],[-0.090911902487278,0.0092063872143626,-0.057097192853689]],[[-0.046199448406696,0.037262719124556,0.11929751932621],[0.039675388485193,-0.086469925940037,-0.039715804159641],[-0.0011058003874496,-0.080582208931446,0.0041358582675457]],[[0.080213733017445,0.097962558269501,0.11063076555729],[-0.012438592500985,0.070278115570545,-0.07581502199173],[-0.15477699041367,0.072105430066586,-0.12732225656509]],[[0.036690805107355,-0.022997457534075,-0.07261099666357],[0.0020201345905662,0.09434936195612,0.081639640033245],[-0.026791976764798,-0.012953764759004,0.078861907124519]],[[0.14261291921139,0.076457135379314,0.093207523226738],[0.11613912135363,-0.079521514475346,-0.021322824060917],[0.017658650875092,-0.019602315500379,-0.0021022311411798]],[[-0.00792021676898,-0.04166042432189,-0.17991332709789],[-0.041054911911488,0.018926402553916,0.06109844148159],[0.084723815321922,0.047450326383114,0.032506424933672]],[[-0.063088096678257,-0.091126792132854,-0.048013962805271],[0.047997090965509,-0.0034312221687287,-0.015537747181952],[-0.031894631683826,0.14625704288483,0.010522888973355]],[[-0.0080914376303554,-0.0052191326394677,-0.067788787186146],[-0.22894223034382,-0.14152278006077,-0.066871963441372],[0.015816507861018,-0.060306344181299,-0.014782567508519]],[[-0.12868675589561,-0.092997148633003,0.044431835412979],[0.019666569307446,0.14172790944576,0.12149537354708],[0.048843555152416,-0.12426464259624,-0.17324927449226]],[[0.0050869155675173,-0.066853746771812,0.2214168459177],[0.20545223355293,0.079179786145687,-0.11664941161871],[-0.10256680101156,0.021915052086115,-0.12867841124535]],[[-0.026903619989753,-0.021474976092577,0.086350828409195],[0.063083179295063,0.029623633250594,0.028637176379561],[-0.020102433860302,-0.092458248138428,0.032842241227627]],[[0.014658094383776,-0.030829440802336,0.074496276676655],[-0.055085014551878,0.088483870029449,0.013845497742295],[0.096036948263645,0.084427185356617,-0.10798693448305]],[[0.059202544391155,0.16592799127102,-0.023055898025632],[-0.04383347928524,-0.083771839737892,-0.12567919492722],[0.066407382488251,-0.074971787631512,0.12077818065882]],[[-0.098312400281429,-0.03193861246109,-0.14433886110783],[-0.017713814973831,0.018976042047143,0.11105588078499],[0.060959707945585,0.046691659837961,0.11878380179405]],[[-0.0032958323135972,0.052401330322027,0.058846194297075],[-0.018635399639606,-0.080617047846317,-0.10912849754095],[-0.094371266663074,-0.0039549982175231,-0.047535467892885]],[[0.0072479066438973,0.022230686619878,0.073279097676277],[0.10642539709806,0.073599465191364,-0.021356146782637],[-0.031497858464718,-0.013669075444341,-0.06765104085207]],[[-0.09541416913271,-0.026820993050933,-0.11058376729488],[-0.036589052528143,0.020070569589734,-0.13154692947865],[0.073120951652527,0.029639041051269,0.084766924381256]],[[-0.06523634493351,0.043727956712246,-0.16562534868717],[-0.10159619152546,-0.057297166436911,0.11694783717394],[-0.085492849349976,-0.054314266890287,-0.081276036798954]],[[-0.11759725213051,-0.030501866713166,-0.030113581568003],[0.070487432181835,0.14889580011368,-0.072432495653629],[0.030863516032696,0.15951469540596,0.0074201659299433]],[[-0.0085790026932955,-0.065814942121506,0.028272584080696],[-0.054323293268681,0.02669127844274,0.049918077886105],[0.0068229050375521,0.030356803908944,-0.12616273760796]],[[-0.10698664933443,-0.084583170711994,0.30285584926605],[-0.037914536893368,0.026254959404469,-0.027610652148724],[-0.061390247195959,-0.1626887768507,-0.064668014645576]],[[0.083151385188103,0.091603308916092,0.19445052742958],[-0.0027533995453268,0.15598252415657,-0.0037585026584566],[0.090845443308353,-0.042666606605053,-0.16201874613762]],[[0.10100362449884,0.13068978488445,0.0070880125276744],[-0.07293263822794,-0.1766170412302,-0.025585843250155],[-0.073670484125614,-0.0072165154851973,0.11300318688154]],[[-0.020877292379737,0.019738454371691,-0.0019533347804099],[0.040538374334574,-0.053982827812433,0.033914834260941],[-0.10321982949972,-0.087769605219364,-0.042614698410034]],[[0.063977770507336,-0.040020421147346,0.084125772118568],[0.1009814068675,-0.047556091099977,0.084170959889889],[0.075311042368412,0.029364315792918,-0.0061994981952012]],[[0.036237753927708,0.11373978108168,-0.045946463942528],[-0.089005567133427,0.022747719660401,-0.040614176541567],[-0.023208722472191,0.0044257552362978,-0.028248405084014]],[[-0.0013830247335136,-0.050606489181519,-0.089653976261616],[-0.012331210076809,0.0014494998613372,0.032129988074303],[0.034517552703619,0.028888858854771,0.045102801173925]],[[0.14070904254913,-0.10660552978516,0.037046488374472],[0.25237736105919,-0.12530955672264,0.082117676734924],[0.074222534894943,0.14472414553165,-0.17357110977173]],[[-0.077656216919422,-0.19436199963093,-0.17395628988743],[0.0048658517189324,-0.0098353950306773,0.066858731210232],[0.0070787994191051,0.059338480234146,0.1143577247858]],[[0.09070398658514,-0.0062502892687917,-0.10975852608681],[-0.097539722919464,0.052633542567492,0.027545811608434],[0.048769421875477,0.19257047772408,-0.0088143656030297]],[[0.27720418572426,-0.014221969991922,-0.0593386515975],[0.11461663991213,-0.059539768844843,0.037182353436947],[0.12780547142029,-0.071078702807426,-0.05171862244606]],[[0.011320271529257,0.098140433430672,0.13964787125587],[-0.027547823265195,-0.062644183635712,-0.11623932421207],[-0.03433433175087,0.083369933068752,0.11182433366776]]],[[[0.049220092594624,-0.049896541982889,0.014866148121655],[0.00051007914589718,0.052696824073792,-0.034156136214733],[-0.055502723902464,0.026920320466161,-0.028077121824026]],[[-0.1291069239378,0.085055142641068,0.067287981510162],[-0.08714734017849,-0.022199530154467,0.0097633078694344],[0.03007298335433,-0.02147383056581,0.10702380537987]],[[0.028815880417824,0.11223903298378,-0.048575438559055],[-0.014203062281013,-0.014869906939566,0.0096460180357099],[-0.032806057482958,-0.034239176660776,0.076727092266083]],[[0.062101192772388,0.059828765690327,0.00048008680460043],[0.00051007757429034,0.1122512370348,-0.0069476547650993],[0.044564850628376,-0.037437215447426,0.063247822225094]],[[-0.079465299844742,0.043878860771656,-0.11064573377371],[-0.041831858456135,0.17581313848495,0.040991939604282],[-0.11041928082705,-0.090355813503265,0.027472399175167]],[[0.001542448066175,-0.087615109980106,-0.074513681232929],[0.05963383987546,0.043765138834715,0.049728371202946],[-0.083542235195637,0.084530360996723,0.011936807073653]],[[0.013206008821726,0.04101824760437,-0.083253964781761],[-0.10118500888348,0.03844403475523,-0.14312146604061],[0.024052683264017,0.051228635013103,-0.075695730745792]],[[0.010082055814564,-0.040450472384691,0.053207125514746],[-0.0050043999217451,0.034127626568079,-0.052806969732046],[-0.036072105169296,0.01392169110477,0.060131061822176]],[[0.043501626700163,-0.066120646893978,0.030520854517817],[-0.031853102147579,0.0023372224532068,-0.037022031843662],[-0.067047633230686,-0.10521469265223,-0.074051856994629]],[[0.052704028785229,0.081962011754513,0.14266483485699],[0.006797622423619,0.12303014099598,0.17665815353394],[-0.0018293207976967,-0.04139993712306,0.021945999935269]],[[0.092277273535728,0.11836908757687,0.047103557735682],[-0.012344623915851,0.033538293093443,0.086981490254402],[0.0098666790872812,0.1721675246954,0.079736396670341]],[[-0.075179167091846,0.099806636571884,-0.031690862029791],[-0.11621718853712,0.11590620130301,0.045032843947411],[0.010100174695253,0.098428085446358,0.13716769218445]],[[-0.065759189426899,-0.09376535564661,0.012047657743096],[0.10998494178057,0.0011159806745127,0.05666583403945],[-0.17371487617493,-0.19732972979546,-0.030378414317966]],[[-0.075934745371342,0.051257688552141,-0.071390941739082],[0.06561578810215,0.045561760663986,0.053832679986954],[0.0045546223409474,0.078745268285275,0.11366888135672]],[[0.027846723794937,-0.027960151433945,0.10655239224434],[0.0077011119574308,0.11210898309946,-0.079117439687252],[0.020763853564858,0.015865659341216,-0.041533946990967]],[[0.037411663681269,0.0055254972539842,0.045962501317263],[0.067503362894058,-0.099617794156075,0.051311012357473],[0.19514679908752,-0.070962898433208,-0.078718326985836]],[[-0.10531863570213,-0.037289120256901,-0.032270975410938],[-0.044780440628529,0.095999397337437,-0.081129543483257],[-0.0596908852458,0.021224269643426,0.056414201855659]],[[0.021792620420456,0.051667116582394,0.012993148528039],[-0.025991486385465,-0.022700997069478,-0.056834291666746],[-0.083776295185089,0.10692265629768,-0.12480135262012]],[[-0.057687692344189,-0.040658473968506,-0.26045069098473],[-0.18499520421028,0.069248914718628,-0.017144287005067],[-0.081820197403431,0.18059800565243,0.0297298617661]],[[0.015281599014997,-0.019013671204448,0.040692396461964],[0.022624652832747,0.065824769437313,0.026849949732423],[0.12663698196411,0.12254243344069,-0.01353835593909]],[[-0.015250843949616,-0.18415910005569,0.027982963249087],[0.019402354955673,0.040208708494902,0.13936710357666],[-0.09076302498579,0.099852293729782,0.1291611790657]],[[-0.064662583172321,0.14715977013111,-0.032566491514444],[0.12421791255474,0.15658117830753,0.080143593251705],[0.004909114446491,0.072079211473465,0.19569598138332]],[[0.12039534747601,0.075862005352974,0.031939029693604],[0.14588691294193,0.025148877874017,0.048512067645788],[-0.10400702804327,-0.043916080147028,0.075813852250576]],[[-0.19853474199772,-0.016557516530156,-0.069377869367599],[-0.052313711494207,0.0035799210891128,0.032550912350416],[-0.083296269178391,0.087617062032223,0.051695488393307]],[[0.023742051795125,0.0010152234463021,-0.086003459990025],[-0.020053189247847,0.086764886975288,-0.070044726133347],[0.033729031682014,0.1380830258131,-0.12633219361305]],[[0.1216845959425,0.028522286564112,-0.088137522339821],[0.050545964390039,-0.054114177823067,0.093179941177368],[-0.064186945557594,0.046015784144402,-0.076307363808155]],[[0.0097010508179665,-0.022908860817552,0.044543284922838],[0.03104348666966,0.00976153742522,-0.014902917668223],[0.084734737873077,-0.061413798481226,-0.10348433256149]],[[-0.0090442560613155,-0.027167147025466,0.021898441016674],[0.032134752720594,0.050441715866327,0.12286026030779],[0.091228172183037,0.06221429631114,-0.016335677355528]],[[0.13771000504494,0.11240791529417,-0.068714424967766],[-0.085116662085056,0.14374893903732,0.038371309638023],[0.16913701593876,0.14118984341621,0.076187118887901]],[[0.0070405867882073,0.098958060145378,0.028502386063337],[0.027537034824491,-0.022934401407838,-0.115996517241],[-0.036477666348219,0.070955030620098,0.052022185176611]],[[-0.0093260891735554,-0.022602336481214,0.071027465164661],[-0.050746168941259,0.025148533284664,0.07972302287817],[-0.12543004751205,-0.070771254599094,-0.12825791537762]],[[0.02064073830843,-0.029545523226261,0.013092384673655],[-0.029887262731791,0.066240154206753,0.018001852557063],[-0.034214049577713,-0.048156764358282,0.0044200532138348]]],[[[0.030614154413342,0.124178417027,0.082173645496368],[-0.070189870893955,-0.15791796147823,0.02277179248631],[-0.043926026672125,-0.08825197070837,-0.013286964967847]],[[0.10010815411806,0.094543479382992,0.10603962093592],[0.15145333111286,0.12869089841843,0.12471897155046],[0.13477046787739,0.093579590320587,0.14014348387718]],[[0.028691148385406,0.035826180130243,-0.034328632056713],[0.012457366101444,0.051812816411257,-0.0092550627887249],[-0.020483952015638,0.020925607532263,-0.021752750501037]],[[0.019308537244797,0.070262335240841,0.026273675262928],[0.024972453713417,0.05828695371747,-0.07743226736784],[-0.040762975811958,-0.085614219307899,0.01820713840425]],[[-0.025574281811714,0.090429544448853,0.054125193506479],[0.0043233674950898,0.055079262703657,0.063108161091805],[-0.013197047635913,0.018505955114961,0.075210846960545]],[[0.013221388682723,0.033153280615807,-0.0039294259622693],[0.019639413803816,-0.034886173903942,-0.02252596989274],[-0.04514391720295,0.011052936315536,0.036317694932222]],[[-0.038295354694128,0.013411605730653,0.0008232836262323],[0.024429231882095,-0.022152159363031,-0.023353138938546],[0.011749869212508,0.012697242200375,-0.0094620492309332]],[[-0.0071573033928871,-0.049486938863993,-0.0008221278549172],[-0.0051242695190012,-0.16993498802185,-0.097450263798237],[0.12239741533995,0.11894474178553,0.00035000860225409]],[[-0.063720129430294,-0.010553793981671,0.055319879204035],[0.021761488169432,-0.015161482617259,0.0066340593621135],[0.025972753763199,0.0076995040290058,0.032070010900497]],[[-0.042682085186243,0.047517895698547,-0.023049719631672],[0.021655755117536,0.040650703012943,-0.060012169182301],[0.10055288672447,-0.016914075240493,-0.042126048356295]],[[-0.062868073582649,0.019217059016228,-0.040602017194033],[0.014001773670316,-0.016240812838078,-0.060260139405727],[0.074225217103958,-0.020586658269167,0.092758700251579]],[[-0.02115635946393,-0.022505693137646,-0.051933281123638],[0.018890032544732,-0.04023203253746,-0.010859129019082],[0.04059074819088,0.025441074743867,0.051643420010805]],[[-0.027579875662923,-0.0037716443184763,-0.072011157870293],[0.054863039404154,-0.061733189970255,-0.060722228139639],[0.01909396238625,0.092406414449215,0.06930023431778]],[[-0.015854356810451,-0.016353173181415,-0.0083110816776752],[0.018227800726891,0.014668915420771,0.0091991545632482],[0.028500398620963,-0.021080892533064,-0.020226065069437]],[[-0.052617054432631,-0.076783858239651,0.045175675302744],[-0.08440475165844,0.025855917483568,-0.035626575350761],[0.016064692288637,0.050026550889015,0.047968741506338]],[[-0.022585263475776,-0.01867838576436,-0.029669221490622],[0.082326360046864,0.034692391753197,-0.0099268080666661],[0.023365212604403,-0.072615198791027,-0.033931627869606]],[[-0.013246519491076,-0.047589391469955,-0.0039307367987931],[0.031861703842878,0.11276329308748,-0.11546698212624],[0.042470946907997,0.041830543428659,-0.065941549837589]],[[0.019197054207325,0.0301992315799,-0.036923535168171],[-0.05163212120533,0.032114379107952,-0.035630811005831],[0.00016290092025883,0.031207997351885,-0.0013851217227057]],[[-0.071794971823692,-0.041209693998098,0.026391699910164],[0.028111780062318,0.032559338957071,0.036722213029861],[-0.038671493530273,-0.058941904455423,0.016733048483729]],[[-0.0094999149441719,-0.031806979328394,-0.0019739323761314],[-0.16922748088837,0.011299038305879,0.012254366651177],[-0.1140498444438,0.13057270646095,0.045743964612484]],[[-0.034990940243006,0.10922396928072,-0.038079734891653],[-0.036697048693895,-0.01705252751708,-0.021179376170039],[0.006206851452589,0.040665652602911,0.041265551000834]],[[0.059000533074141,-0.09299835562706,0.059952814131975],[-0.054728701710701,-0.073168553411961,0.10365142673254],[0.034949626773596,-0.11121838539839,0.080468498170376]],[[0.016625577583909,0.079776145517826,-0.075140193104744],[-0.087981268763542,0.0053138080984354,0.069502167403698],[0.036066178232431,-0.036502316594124,0.019830459728837]],[[-0.023570720106363,0.0051720859482884,0.016335066407919],[0.038932003080845,-0.07152159512043,-0.050644237548113],[0.020243676379323,0.062146961688995,0.049698520451784]],[[-0.035380117595196,0.084407977759838,-0.046227551996708],[-0.065638437867165,-0.11860831081867,0.043333653360605],[-0.028932180255651,0.079620189964771,0.05290013179183]],[[0.029949894174933,0.015670642256737,-0.057386051863432],[-0.023861430585384,-0.0068590599112213,0.016150388866663],[0.0048514963127673,0.012177340686321,-0.0094917956739664]],[[-0.063968829810619,-0.11399310827255,-0.0036958954297006],[-0.087478786706924,-0.094846241176128,-0.085341729223728],[-0.045296154916286,-0.15369147062302,-0.035402297973633]],[[-0.022998260334134,-0.060029808431864,0.030195329338312],[-0.032370809465647,0.034229293465614,-0.012118354439735],[-0.12846785783768,0.060871791094542,0.1144627481699]],[[-0.059941276907921,0.0078952563926578,0.043513856828213],[-0.0035958075895905,0.0099249249324203,-0.0055725499987602],[0.016372641548514,-0.059903185814619,0.046028275042772]],[[0.049003608524799,0.048123750835657,-0.0019992352463305],[0.048676732927561,-0.0064744837582111,-0.045547150075436],[-0.011129948310554,9.0095141786151e-05,0.060021352022886]],[[0.013979274779558,0.040491845458746,-0.0379294231534],[0.048005599528551,-0.01541021745652,0.01130211725831],[-0.020087912678719,0.023437207564712,-0.038623355329037]],[[0.028413886204362,0.082593388855457,0.021004550158978],[0.065508216619492,-0.032526414841413,-0.092378884553909],[0.063384592533112,-0.13485133647919,-0.043479956686497]]],[[[-0.10635275393724,-0.059993617236614,-0.014023057185113],[0.092400714755058,-0.21884305775166,-0.058352410793304],[-0.13242939114571,-0.12609392404556,0.0084760552272201]],[[-0.061739675700665,-0.064463414251804,0.073719777166843],[-0.14505065977573,0.054257337003946,0.079952761530876],[0.023820411413908,0.020693248137832,0.0079801753163338]],[[-0.094329468905926,0.17901813983917,-0.11970561742783],[-0.010063953697681,-0.17519341409206,0.15142193436623],[-0.10788444429636,0.059658356010914,0.0040557361207902]],[[0.023734830319881,-0.040446721017361,0.037803497165442],[-0.11449347436428,0.025134764611721,-0.076163247227669],[0.052242383360863,-0.12082785367966,0.064667925238609]],[[-0.072519779205322,0.0288479719311,0.021631726995111],[0.057173699140549,0.018794139847159,0.065496705472469],[0.0076243607327342,-0.032572597265244,-0.062902510166168]],[[-0.10264696925879,-0.15321230888367,-0.11858724802732],[0.11704376339912,0.051103167235851,-0.11219543963671],[0.12609741091728,-0.19940449297428,-0.049750991165638]],[[-0.092388428747654,0.00081135804066435,-0.11505596339703],[-0.10146847367287,0.14592683315277,0.076377607882023],[0.029076918959618,-0.017198720946908,-0.032449770718813]],[[0.0284408275038,-0.073045767843723,0.020895386114717],[-0.04302004724741,-0.0031224219128489,-0.08379265666008],[-0.097920194268227,0.066921174526215,-0.028592130169272]],[[0.044781699776649,-0.036443840712309,-0.022055108100176],[-0.06723316013813,-0.078584469854832,-0.022556848824024],[0.083733581006527,-0.019461821764708,-0.035720679908991]],[[0.0089126564562321,0.2366331666708,0.026641298085451],[-0.034241642802954,0.083789773285389,0.078164637088776],[0.10698982328176,0.24508023262024,0.0093394219875336]],[[0.063387364149094,-0.15225553512573,0.12396309524775],[-0.053239762783051,0.11608244478703,0.01008231472224],[-0.018432138487697,0.014054741710424,0.0049690119922161]],[[-0.020670939236879,0.001065359916538,0.12178263813257],[0.068805195391178,-0.055836349725723,0.02113226428628],[0.009211678057909,-0.071037322282791,-0.044520676136017]],[[0.045210044831038,-0.017296189442277,0.060647465288639],[-0.029574777930975,0.19159346818924,-0.19953072071075],[-0.059769660234451,-0.043588984757662,-0.033847376704216]],[[0.10086973011494,0.0098319761455059,-0.13982610404491],[0.041549414396286,-0.2802070081234,0.12452057003975],[-0.039703886955976,-0.1346575319767,0.22643208503723]],[[-0.023627845570445,0.083941891789436,0.06555101275444],[0.04015077278018,-0.12590716779232,-0.099622018635273],[-0.059521615505219,-0.073817618191242,0.045822877436876]],[[-0.056424550712109,-0.13812620937824,-0.084073506295681],[-0.15007378160954,-0.1462379693985,0.2731801867485],[-0.14718499779701,-0.031088026240468,0.17613197863102]],[[-0.027680369094014,-0.10205771028996,-0.073983319103718],[-0.22600626945496,-0.075094193220139,-0.021430786699057],[-0.065108276903629,0.039059851318598,-0.20175586640835]],[[-0.12523199617863,-0.051705934107304,-0.053115531802177],[-0.21811605989933,-0.041759517043829,-0.053452484309673],[0.05620240047574,0.12293013185263,-0.0041310754604638]],[[-0.0023332175333053,0.029234074056149,-0.03611746057868],[-0.10993323475122,-0.047537092119455,0.038840282708406],[-0.085956543684006,0.024030156433582,-0.11174087971449]],[[0.11948297172785,-0.0048586665652692,0.0072509436868131],[-0.002187906531617,2.7021176720154e-05,0.052324667572975],[-0.37457895278931,-0.0046263979747891,0.024991417303681]],[[0.12556812167168,-0.0085409563034773,-0.002892438089475],[-0.037930183112621,-0.063224211335182,0.00074190151644871],[-0.10408295691013,0.15257753431797,-0.028034588322043]],[[0.32945150136948,0.013564973138273,-0.048026505857706],[-0.01501209102571,-0.23037792742252,0.13039772212505],[-0.18209081888199,0.011550913564861,0.063362322747707]],[[0.055250965058804,-0.031269006431103,-0.01359433028847],[0.018013251945376,0.2365407794714,0.01612695120275],[0.031876001507044,-0.0026556407101452,-0.07385578751564]],[[-0.081228747963905,-0.039962109178305,-0.00087281258311123],[0.04799397289753,0.0049801664426923,-0.081699974834919],[0.045829638838768,-0.043494153767824,0.094547472894192]],[[-0.11173475533724,-0.052900340408087,0.10310381650925],[-0.083015479147434,-0.076636858284473,0.10346400737762],[-0.090166494250298,-0.086172625422478,0.04783695563674]],[[0.072281874716282,-0.039860859513283,0.023989917710423],[-0.02409665286541,0.066475503146648,-0.081019997596741],[-0.095396444201469,0.035745792090893,-0.10962951183319]],[[0.081853523850441,-0.096983171999454,0.011601079255342],[-0.01138190086931,0.070384986698627,-0.043260987848043],[-0.0081139681860805,0.015828853473067,-0.030066050589085]],[[-0.011859153397381,-0.077699609100819,-0.085083663463593],[-0.089505396783352,-0.12609545886517,0.2079986333847],[-0.14236010611057,0.057131510227919,0.11010252684355]],[[-0.017623741179705,0.043954905122519,-0.14392538368702],[0.14764401316643,-0.033209625631571,-0.10717303305864],[-0.0099181942641735,-0.011021880432963,0.091777853667736]],[[0.0190892778337,-0.038534298539162,-0.069594077765942],[0.047456596046686,-0.041565980762243,0.027494641020894],[-0.015848454087973,0.050350349396467,0.036765292286873]],[[-0.018986688926816,0.074800670146942,0.012234612368047],[0.054933618754148,-0.15147019922733,0.080326221883297],[-0.033934123814106,0.09338054060936,-0.0063788671977818]],[[-0.15744924545288,0.047750677913427,0.091335840523243],[-0.0037953883875161,0.1337515860796,-0.051613621413708],[0.064749330282211,0.014953861013055,0.047650963068008]]],[[[0.012692488729954,-0.26700508594513,-0.074921809136868],[-0.057251714169979,-0.1016855314374,0.076460286974907],[0.023547794669867,0.0059423190541565,0.0087363542988896]],[[-0.1717591881752,-0.019671175628901,-0.012278106994927],[0.062151364982128,-0.082590438425541,0.10045951604843],[0.0035293276887387,0.033625736832619,0.063630171120167]],[[-0.1457671970129,0.13677524030209,0.03010044619441],[0.097479358315468,-0.017349071800709,-0.050835087895393],[-0.12074480950832,0.13821171224117,-0.079927146434784]],[[-0.24331560730934,-0.0057159536518157,-0.039494041353464],[0.065505102276802,-0.017165107652545,-0.067259319126606],[0.11083710938692,0.075055807828903,0.034200612455606]],[[-0.064036168158054,0.12562067806721,0.023888675495982],[-0.012718174606562,-0.016130601987243,-0.074598334729671],[0.13578481972218,-0.026475640013814,-0.076498739421368]],[[0.10507446527481,0.12374368309975,0.056889124214649],[0.14217786490917,-0.33023518323898,0.20947721600533],[-0.15753857791424,-0.012049021199346,0.03390247374773]],[[-0.053682450205088,-0.10015136003494,-0.012183996848762],[-0.032589975744486,-0.01157244015485,0.10574901103973],[-0.026230784133077,0.078661106526852,0.12222708016634]],[[0.027400564402342,-0.035889688879251,-0.0041304007172585],[-0.23672421276569,-0.1297152787447,0.017657311633229],[-0.13648067414761,-0.0063524600118399,0.09818896651268]],[[-0.080828703939915,0.020610921084881,-0.054094646126032],[0.0047547491267323,0.091105476021767,-0.032272670418024],[0.0529974848032,0.20906986296177,0.0413604862988]],[[0.12129488587379,0.075497359037399,0.065670527517796],[0.0054802736267447,0.17020747065544,0.00789640750736],[0.039598662406206,0.098850451409817,0.036065351217985]],[[0.27861288189888,-0.20068183541298,-0.082975342869759],[-0.036200776696205,-0.0018132863333449,-0.01844016648829],[0.0787218734622,0.053641632199287,0.065660245716572]],[[0.014154768548906,-0.19873082637787,0.095895610749722],[-0.0085603520274162,-0.056747857481241,-0.013541671447456],[-0.050894737243652,0.12073119729757,0.069563187658787]],[[0.074806466698647,-0.11911423504353,-0.0087004043161869],[-0.10429847240448,0.033098623156548,-0.15214441716671],[0.036695294082165,0.15163891017437,0.0647062510252]],[[0.23353691399097,-0.083990052342415,-0.33662927150726],[-0.014148894697428,-0.22951056063175,0.0060122744180262],[-0.045555535703897,-0.042187582701445,-0.056855916976929]],[[-0.024912362918258,0.023622753098607,-0.0054299621842802],[0.0048322598449886,0.06636468321085,0.10032492876053],[-0.015726510435343,-0.02807973511517,0.028076775372028]],[[0.045699007809162,-0.027713358402252,-0.0063382182270288],[-0.07228484749794,-0.14844217896461,0.068411521613598],[-0.057321567088366,-0.017534183338284,0.18786723911762]],[[0.13581198453903,-0.03385927900672,0.078862383961678],[0.051148869097233,-0.087018027901649,0.0037088019307703],[0.055045858025551,-0.090405911207199,-0.06213404238224]],[[-0.036038614809513,-0.057117126882076,0.15146015584469],[-0.12241465598345,-0.080891944468021,0.010710478760302],[-0.039782617241144,0.10332006961107,0.018778288736939]],[[0.044670201838017,0.081799618899822,-0.051471188664436],[-0.022781357169151,0.060624308884144,0.063477270305157],[-0.15726207196712,0.0064177219755948,-0.1375604569912]],[[-0.023173063993454,-0.034361399710178,-0.0056824986822903],[-0.05076802521944,-0.056734137237072,0.063851833343506],[-0.13333681225777,0.077638313174248,0.028718363493681]],[[0.057473417371511,-0.068383879959583,-0.079024381935596],[0.097150847315788,-0.020903961732984,0.076325014233589],[0.12235034257174,0.1847863048315,-0.018652642145753]],[[-0.0018685040995479,0.11046800017357,0.064823903143406],[-0.046696234494448,0.12757642567158,-0.023657143115997],[0.049143902957439,-0.026220936328173,-0.059869859367609]],[[0.041241358965635,-0.0085566528141499,0.067705444991589],[0.10767691582441,0.048466615378857,-0.011390410363674],[0.16158555448055,-0.031624373048544,-0.096598640084267]],[[0.14581817388535,0.014735639095306,0.025552796199918],[0.042846333235502,-0.031114106997848,-0.018248686566949],[-0.072294071316719,0.005218094214797,-0.10565613955259]],[[-0.010870268568397,-0.095123745501041,0.05277507007122],[0.090190671384335,-0.10427196323872,-0.11564490199089],[-0.0053153038024902,-0.18609531223774,0.070664413273335]],[[0.14937894046307,-0.15541629493237,-0.038153160363436],[0.018790801987052,0.056449711322784,-0.17508219182491],[-0.031134527176619,0.075145684182644,0.065586134791374]],[[0.10128540545702,0.11183425039053,-0.02720845490694],[-0.05957069247961,-0.031216636300087,-0.019575756043196],[-0.10020689666271,-0.010591247119009,0.049020230770111]],[[0.29933768510818,0.063729599118233,-0.15875151753426],[0.16535615921021,0.016120215877891,0.06925705820322],[0.037318095564842,-0.03962192684412,-0.090443149209023]],[[0.079464755952358,0.056245341897011,-0.1732691526413],[-0.084173120558262,-0.089483074843884,0.10371916741133],[-0.071899332106113,-0.045486051589251,0.088518135249615]],[[0.057538818567991,0.082801662385464,-0.038170825690031],[-0.042400330305099,0.04851558804512,-0.061081599444151],[-0.058011658489704,0.018904013559222,-0.013235542923212]],[[-0.084035068750381,0.091833390295506,0.055511303246021],[-0.086731001734734,0.13025887310505,-0.31560146808624],[0.056716490536928,-0.090142898261547,-0.07436915487051]],[[-0.25307461619377,-0.16194322705269,0.1048249900341],[-0.21676224470139,-0.15403510630131,0.14797963202],[-0.01687615737319,-0.01251285802573,-0.031549979001284]]],[[[0.018502540886402,0.22311316430569,0.15893958508968],[0.033531829714775,-0.24768850207329,-0.048258222639561],[0.071666888892651,0.11903621256351,0.048631019890308]],[[0.062798522412777,0.012716798111796,0.04643938690424],[0.065329976379871,0.062723256647587,-0.038519717752934],[0.0051000704988837,-0.064812228083611,-0.09481355547905]],[[0.058382745832205,-0.0016660752007738,-0.0093162395060062],[0.013320956379175,0.038026392459869,0.046490073204041],[-0.077181607484818,0.12223075330257,-0.05701631680131]],[[0.014659591019154,0.060885634273291,0.064792685210705],[-0.081085965037346,-0.03860742226243,0.07804823666811],[0.067156083881855,0.12574861943722,0.01678135432303]],[[0.073394350707531,-0.059711933135986,0.016794873401523],[-0.0023530095349997,-0.053087078034878,0.0087551344186068],[-0.022505858913064,0.045066349208355,-0.049372058361769]],[[-0.082962810993195,-0.036075502634048,0.019194012507796],[0.082678981125355,-0.042582619935274,0.043777879327536],[0.011262367479503,0.0027654482983053,-0.1159054338932]],[[0.022636197507381,0.043188758194447,0.085027702152729],[-0.028215438127518,0.12580220401287,0.098686568439007],[0.080925606191158,-0.0094371642917395,0.020393410697579]],[[-0.00033571850508451,0.022339373826981,0.031819395720959],[-0.098740719258785,-0.10085836052895,0.016442427411675],[-0.077224396169186,-0.23182439804077,0.0071759186685085]],[[-0.063278488814831,-0.023445496335626,-0.075121469795704],[0.050442151725292,0.021136974915862,0.10903911292553],[-0.0058595845475793,0.11295341700315,0.027942886576056]],[[-0.077011004090309,0.01550243422389,0.061422221362591],[0.08049975335598,0.034722477197647,0.00051154283573851],[-0.11137402057648,-0.07924610376358,-0.2528230547905]],[[0.053919296711683,0.01766349375248,0.076730526983738],[0.13998690247536,0.2310046851635,-0.14067144691944],[-0.059421863406897,0.028798963874578,-0.058471351861954]],[[0.084860764443874,-0.037558533251286,-0.0067003443837166],[-0.028581010177732,0.064916729927063,-0.016046315431595],[0.0075286482460797,0.03194835036993,-0.039789825677872]],[[0.011676464229822,-0.00010402440238977,0.044038202613592],[-0.031674303114414,0.020686956122518,0.013736453838646],[0.073153585195541,0.11291165649891,0.14174637198448]],[[-0.061349652707577,0.025186009705067,-0.054271075874567],[0.055208709090948,-0.013340477831662,-0.04565018042922],[-0.044623773545027,0.038232676684856,0.19165171682835]],[[0.0093337642028928,-0.040835496038198,0.018703624606133],[-0.079424306750298,-0.16992394626141,-0.043040614575148],[0.0011131903156638,-0.083210065960884,-0.081427618861198]],[[-0.054905779659748,-0.0075278109870851,-0.13737998902798],[0.17224672436714,0.019530283287168,0.049378633499146],[0.22025410830975,0.18154346942902,0.06437611579895]],[[0.023553168401122,-0.015746703371406,0.0504020601511],[0.042058665305376,0.082857966423035,-0.083538047969341],[0.045115370303392,-0.0090536344796419,0.0087967738509178]],[[-0.034466300159693,0.10108104348183,-0.030709497630596],[0.01789341494441,0.017403548583388,0.098968468606472],[0.044989299029112,-0.049534536898136,-0.01962742395699]],[[-0.087222740054131,-0.012073353864253,0.0079201934859157],[-0.027966978028417,-0.011547134257853,-0.027320574969053],[-0.029431568458676,0.076317071914673,0.01985190436244]],[[0.022367345169187,0.0020377817563713,0.020675215870142],[-0.1304652094841,-0.12070633471012,-0.093988642096519],[-0.1272606998682,-0.29111576080322,-0.16947966814041]],[[-0.04907738417387,0.019162176176906,-0.093100361526012],[0.10320512205362,-0.0039195972494781,0.018819840624928],[-0.033417582511902,0.0032996519003063,-0.037573736160994]],[[0.013228846713901,0.033312138170004,0.13558511435986],[-0.10221235454082,0.10938972979784,0.064375586807728],[-0.1444091796875,0.018898364156485,-0.046581525355577]],[[-0.056058015674353,-0.076621115207672,-0.021157585084438],[-0.20898240804672,-0.11022520810366,-0.021956413984299],[0.023900952190161,0.087913289666176,-0.051436558365822]],[[0.06020786985755,-0.0080250268802047,-0.037453100085258],[-0.088922195136547,-0.079902544617653,0.044368963688612],[-0.11377719044685,-0.021533077582717,-0.011433279141784]],[[0.11994831264019,0.031063375994563,-0.013196812942624],[0.047043427824974,-0.022641412913799,-0.15039132535458],[-0.042881771922112,-0.061254780739546,-0.11938481032848]],[[0.0092255305498838,0.0078396340832114,0.0039107403717935],[-0.074560455977917,-0.014758437871933,0.098286457359791],[-0.037655830383301,-0.063929237425327,0.081811383366585]],[[-0.09738752245903,-0.078015267848969,-0.024777553975582],[-0.035149559378624,0.042529128491879,-0.0048854099586606],[0.033830415457487,0.051666591316462,0.14308513700962]],[[0.0064645395614207,0.15702511370182,-0.041713360697031],[0.16837204992771,0.26035484671593,0.075313791632652],[0.28784495592117,0.16544698178768,-0.22570349276066]],[[-0.1703200340271,-0.02352162078023,0.042139235883951],[0.040569145232439,0.056332286447287,0.0099976090714335],[0.099962122738361,0.048701290041208,0.11490669846535]],[[-0.011960186064243,-0.066367886960506,0.03004196099937],[-0.1446058601141,-0.079778596758842,0.10107900202274],[-0.0006123140337877,-0.029303869232535,0.005744734313339]],[[-0.05899453163147,-0.12472059577703,-0.064746893942356],[-0.00058118154993281,-0.0098891463130713,-0.0081007415428758],[0.018666451796889,0.035223215818405,-0.099192537367344]],[[-0.003181716427207,-0.034847564995289,-0.12294020503759],[-0.037285692989826,-0.29019537568092,-0.12271387130022],[-0.091072492301464,-0.160789757967,0.041944727301598]]],[[[-0.0036938199773431,-0.093017801642418,-0.15639112889767],[-0.10858500003815,-0.065656147897243,-0.048688970506191],[-0.0085795847699046,-0.068316355347633,-0.055149238556623]],[[0.078576281666756,-0.12715491652489,-0.084294073283672],[0.049034092575312,-0.12775100767612,-0.038898423314095],[0.090984471142292,0.065962448716164,0.092337682843208]],[[-0.098232679069042,0.042401529848576,0.0030675653833896],[0.0012577186571434,0.036302343010902,0.031264964491129],[-0.14630295336246,-0.0043137525208294,-0.066693663597107]],[[-0.021972477436066,-0.023125231266022,-0.040590967983007],[-0.033907972276211,-0.11714957654476,0.0084983911365271],[0.020954322069883,0.029998574405909,0.0044802026823163]],[[0.0085113365203142,-0.016525836661458,0.0433694049716],[0.057723000645638,0.035746570676565,0.12500916421413],[0.011261538602412,0.036193702369928,0.019199017435312]],[[-0.029384512454271,-0.13468109071255,-0.0044095343910158],[-0.06336634606123,-0.065091721713543,0.030532952398062],[-0.048749912530184,0.015785655006766,0.0090353861451149]],[[0.041694052517414,-0.037839975208044,-0.13250629603863],[0.011890043504536,0.0033443802967668,-0.013473965227604],[-0.035902667790651,-0.04174131155014,0.0087005225941539]],[[0.018287533894181,0.017576208338141,0.018840910866857],[0.031218117102981,0.097547829151154,0.12555882334709],[0.042093303054571,-0.1153434291482,-0.12202975898981]],[[-0.086342729628086,0.031317062675953,0.071942813694477],[-0.0091486219316721,-0.050900429487228,-0.071911334991455],[0.00054514309158549,0.019140668213367,0.00085800961824134]],[[0.065940402448177,-0.051684383302927,0.1565610319376],[-0.127357006073,-0.024961328133941,-0.054453387856483],[0.022760763764381,0.097921095788479,0.11480198800564]],[[0.0073728808201849,0.21494081616402,-0.11526113003492],[-0.01456163264811,-0.067251659929752,-0.14477427303791],[0.037166245281696,-0.088751263916492,-0.12943890690804]],[[0.021541718393564,-0.065357774496078,0.0010455755982548],[0.046602305024862,-0.0096839172765613,-0.056760281324387],[0.064363121986389,-0.095716916024685,-0.0043633226305246]],[[0.037671454250813,0.024842876940966,-0.042010195553303],[0.11109529435635,-0.025634739547968,0.018812164664268],[0.062279108911753,0.040780603885651,-0.0060121775604784]],[[0.058344401419163,-0.0065345359034836,0.069343239068985],[0.06926554441452,-0.084046758711338,-0.013787820935249],[-0.10257187485695,0.066727317869663,-0.011191598139703]],[[0.022010063752532,-0.054894965142012,0.046067170798779],[-0.093310706317425,-0.081115663051605,0.012492929585278],[0.003196241799742,0.069048717617989,0.11485743522644]],[[-0.026618521660566,-0.064406640827656,-0.15489137172699],[0.015262383967638,-0.04107803851366,-0.098329186439514],[0.055868316441774,0.059942431747913,-0.030217856168747]],[[-0.022141737863421,0.052529320120811,0.061885718256235],[0.099451802670956,-0.043446984142065,0.049631897360086],[0.009268862195313,0.055710054934025,-0.04651752114296]],[[-0.013143822550774,-0.056341476738453,0.035496138036251],[-0.056803032755852,0.0025883526541293,0.0076838727109134],[-0.014896836131811,-0.0072402134537697,0.076116673648357]],[[0.0068804058246315,-0.0086843743920326,0.033230122178793],[-0.061573769897223,-0.042703419923782,-0.01651893556118],[-0.015975112095475,-0.07077681273222,-0.060865309089422]],[[-0.021173574030399,-0.011177310720086,0.075488440692425],[0.023199588060379,0.019314417615533,-0.059458300471306],[-0.086685568094254,-0.13413615524769,0.026370197534561]],[[0.1219888702035,-0.17247249186039,-0.0649503916502],[0.10687591135502,-0.12453486770391,-0.22305677831173],[0.12180765718222,-0.033390197902918,0.016860412433743]],[[-0.12008474767208,0.12630350887775,0.08057527244091],[-0.016796188428998,0.066916860640049,-0.13006494939327],[-0.041984152048826,-0.054801046848297,0.132025629282]],[[-0.25122767686844,-0.1568146944046,-0.012888361699879],[0.1168520450592,-0.054855469614267,0.1488022506237],[0.044770881533623,0.11990340054035,-0.037902895361185]],[[-0.032631136476994,0.020988469943404,-0.068988770246506],[-0.01508825737983,-0.058137055486441,0.020572500303388],[0.049478750675917,0.069336377084255,-0.13778106868267]],[[-0.024416673928499,0.0067692226730287,-0.043768029659986],[0.0079390592873096,0.051729362457991,0.016536600887775],[-0.014036099426448,-0.024557972326875,-0.0071719754487276]],[[-0.049411799758673,0.043137736618519,-0.032848030328751],[-0.035504464060068,-0.020460221916437,-0.0059599746018648],[-0.0329215452075,0.079068049788475,0.059823587536812]],[[0.011678188107908,0.16630554199219,0.084565907716751],[-0.01262076664716,-0.007844990119338,0.033523969352245],[-0.12893714010715,-0.051273182034492,-0.078364424407482]],[[0.21490781009197,-0.017351746559143,-0.097744628787041],[0.21092566847801,0.11269927024841,-0.12756972014904],[0.11174914240837,0.041745234280825,0.058332268148661]],[[-0.06980986148119,0.04296750202775,-0.07811164855957],[-0.071344740688801,0.013061070814729,-0.15635046362877],[-0.0028500049374998,0.014667773619294,-0.053183123469353]],[[-0.055589400231838,0.080810680985451,-0.050369396805763],[-0.0045958361588418,0.080160073935986,0.023191411048174],[-0.0028732030186802,-0.025621881708503,-0.0028253227937967]],[[-0.085983529686928,0.087728768587112,-0.00013946089893579],[-0.041284911334515,0.072764582931995,-0.012312733568251],[-0.011008340865374,0.047821182757616,0.065009295940399]],[[0.044400162994862,-0.051987364888191,-0.029382802546024],[-0.043212097138166,-0.015368354506791,0.070906594395638],[0.0052175549790263,-0.018646579235792,-0.022021140903234]]],[[[-0.062072388827801,-0.032715648412704,-0.10082732886076],[0.026424419134855,0.0041423290967941,-0.14318470656872],[0.052534136921167,-0.051200553774834,0.061744198203087]],[[-0.11541195213795,0.034595292061567,-0.055750273168087],[-0.092992126941681,-0.0032609973568469,0.12152465432882],[-0.03177160397172,0.018203062936664,-0.022322466596961]],[[-0.041514992713928,-0.13898703455925,0.045576825737953],[-0.01980721578002,0.016724448651075,-0.12902027368546],[0.11273215711117,0.045095734298229,-0.037224505096674]],[[-0.028848253190517,-0.034584913402796,-0.056622695177794],[0.2050639539957,0.14970909059048,-0.061887450516224],[0.012569270096719,0.10855893790722,-0.0092629874125123]],[[0.11625225841999,0.038990054279566,0.0073681976646185],[0.14224846661091,0.1776620298624,-0.022733306512237],[0.17900605499744,0.033468652516603,0.026574501767755]],[[0.16589869558811,0.059791728854179,-0.019605884328485],[-0.015659231692553,-0.087015263736248,-0.065914630889893],[0.065811775624752,-0.062688201665878,-0.12813417613506]],[[0.0040186522528529,0.069861963391304,0.047489013522863],[0.076799787580967,0.013515468686819,0.047037746757269],[-0.10008502751589,0.011655690148473,-0.024462271481752]],[[-0.061550967395306,0.033161852508783,-0.024463592097163],[-0.17975907027721,-0.061847683042288,-0.031409062445164],[-0.080497309565544,0.032857429236174,0.069048143923283]],[[-0.078308321535587,0.11913347244263,-0.13547424972057],[0.03516686335206,0.11991184204817,-0.013712036423385],[0.0049099838361144,-0.02615119703114,-0.13193620741367]],[[-0.020311011001468,-0.07866607606411,-0.033288937062025],[0.11314104497433,0.083918005228043,0.14183926582336],[0.17493319511414,0.038149226456881,0.072278402745724]],[[-0.048552893102169,0.071438118815422,-0.20925329625607],[-0.040028173476458,-0.037828180938959,-0.053767681121826],[-0.057401493191719,-0.057933248579502,-0.0010314927203581]],[[0.13674311339855,0.10327955335379,0.11207354068756],[-0.051033530384302,0.073691211640835,0.07466834038496],[0.0019095151219517,-0.16547936201096,0.06710696965456]],[[0.0039150626398623,-0.0062973950989544,0.097082816064358],[-0.032365776598454,0.081140995025635,-0.003246653592214],[-0.094735950231552,0.11847428232431,0.039409942924976]],[[-0.026772813871503,-0.12168226391077,-0.039387810975313],[-0.073419004678726,0.0020905018318444,0.094987452030182],[0.0023669982329011,-0.056151691824198,0.029714778065681]],[[-0.020155854523182,-0.022765776142478,0.068067945539951],[0.10551803559065,-0.10398506373167,0.15859785676003],[0.093342259526253,-0.038556423038244,-0.10883297026157]],[[-0.10133486241102,0.017018176615238,-0.002670815680176],[0.025148434564471,-0.068929746747017,0.11704914271832],[0.18359261751175,0.15978962182999,0.12372697889805]],[[0.036019522696733,-0.062437932938337,-0.016127990558743],[0.017867140471935,0.13373486697674,-0.014803296886384],[0.0021185213699937,-0.017110150307417,0.027182601392269]],[[-0.053732208907604,-0.053354673087597,0.061386026442051],[-0.009914237074554,0.073695726692677,0.011394467204809],[0.11241493374109,0.0085386140272021,0.097141332924366]],[[-0.056724820286036,0.098315194249153,-0.13844394683838],[-0.0391008220613,0.025631481781602,0.11950836330652],[-0.097658142447472,-0.0090467194095254,0.057400081306696]],[[0.069662839174271,0.046036574989557,-0.0010934072779492],[0.13407821953297,0.13541157543659,0.00059279490960762],[0.023413749411702,-0.037341859191656,0.071371346712112]],[[-0.057520173490047,0.0027107277419418,-0.083410792052746],[0.042936526238918,0.11274541169405,0.036220673471689],[-0.045642461627722,0.058173079043627,-0.093697413802147]],[[0.098571874201298,-0.15944111347198,0.015747791156173],[0.16149127483368,0.056152608245611,0.078964211046696],[-0.058556903153658,-0.010296832770109,0.091229684650898]],[[-0.13548618555069,-0.025693470612168,0.079314924776554],[-0.015698762610555,0.170658826828,-0.060442864894867],[-0.13272249698639,-0.14938481152058,-0.02419045381248]],[[0.0053158453665674,0.089927487075329,-0.047939412295818],[-0.08644213527441,0.01710020005703,0.0088015608489513],[-0.039372093975544,-0.03292890265584,0.042198430746794]],[[-0.10624991357327,0.08528745919466,-0.092809334397316],[-0.15135824680328,-0.0360460691154,-0.030072217807174],[-0.034006793051958,0.11392240226269,-0.048181794583797]],[[-0.029430147260427,0.1111731082201,-0.17409750819206],[-0.0051335250027478,0.13585719466209,-0.077748775482178],[-0.13781575858593,0.064956158399582,-0.14008417725563]],[[0.057635501027107,0.11488690972328,-0.0051622707396746],[-0.0063161165453494,-0.0032284560147673,-0.055928237736225],[-0.031812626868486,-0.036520827561617,-0.014289411716163]],[[0.12279102951288,0.22766409814358,-0.054598048329353],[-0.083892859518528,0.082867294549942,-0.061287630349398],[0.016937956213951,0.18640269339085,0.055711038410664]],[[-0.00075459986692294,-0.091671131551266,0.0031011246610433],[0.06441305577755,0.012780242599547,0.046120665967464],[-0.0370750464499,-0.12739875912666,-0.10800568759441]],[[-0.032656837254763,0.035047434270382,0.15324334800243],[-0.098283119499683,-0.052705336362123,0.032809529453516],[-0.044440757483244,0.12186865508556,-0.05037872120738]],[[-0.0081033296883106,0.14985224604607,-0.026802688837051],[-0.21417871117592,-0.042355194687843,-0.030721385031939],[-0.14164401590824,0.056880246847868,-0.069547362625599]],[[-0.071923166513443,-0.019345160573721,-0.010740339756012],[-0.069517500698566,-0.15933740139008,0.033391937613487],[-0.019480163231492,-0.013753836974502,-0.0025620241649449]]],[[[0.089890874922276,-0.098853789269924,0.032289817929268],[-0.03733017295599,-0.067357577383518,-0.02140255458653],[0.035767216235399,-0.013567029498518,-0.020944952964783]],[[0.04080780223012,0.018879987299442,-0.053679753094912],[0.048895698040724,-0.044262029230595,-0.030804121866822],[0.12108533829451,-0.15173447132111,-0.011244835332036]],[[-0.030281744897366,0.037123776972294,-0.080340877175331],[0.0098801916465163,0.044313117861748,-0.00089003873290494],[-0.077940985560417,-0.077023081481457,-0.033588264137506]],[[-0.073349542915821,-0.030268900096416,0.081711038947105],[0.11171238124371,0.02520177513361,0.056008961051702],[-0.017909100279212,0.024692881852388,0.025185510516167]],[[0.095125205814838,0.08402082324028,-0.03675876185298],[0.0092301173135638,0.022349404171109,-0.060999218374491],[-0.083070635795593,0.058983415365219,0.08925873041153]],[[-0.12340930104256,-0.07745485752821,-0.082165591418743],[-0.038650505244732,-0.0021016718819737,0.036870457231998],[-0.071765892207623,0.11254841834307,0.14605855941772]],[[-0.072384059429169,0.0044009969569743,0.064632028341293],[0.064504012465477,-0.096321351826191,0.12687641382217],[0.024570113047957,0.19903817772865,0.074997998774052]],[[0.07916808873415,0.064362235367298,-0.079693876206875],[0.12510739266872,-0.011287181638181,-0.030816623941064],[-0.10629416257143,-0.15029647946358,-0.087519243359566]],[[0.081374980509281,-0.0060209180228412,0.08033649623394],[-0.0020424826070666,-0.043069891631603,0.041652277112007],[0.0023890768643469,-0.094546407461166,-0.057403139770031]],[[-0.056675266474485,0.13361924886703,0.024685287848115],[0.054718639701605,0.012494515627623,-0.049950014799833],[-0.0083756521344185,-0.011179863475263,0.073061533272266]],[[-0.044686045497656,0.067412607371807,0.05316025018692],[0.02741321362555,-0.0064518437720835,-0.082642078399658],[0.22754566371441,0.016338674351573,-0.19591997563839]],[[-0.0048695146106184,-0.13274353742599,-0.043403495103121],[0.05507780611515,-0.036523960530758,0.047833383083344],[0.063218325376511,0.0007639384130016,-0.049836713820696]],[[-0.053456999361515,0.044580969959497,0.059536810964346],[0.074790626764297,-0.027507646009326,0.096046485006809],[-0.05197911709547,0.11692504584789,-0.0032418975606561]],[[0.05086363106966,-0.074242919683456,-0.0022871941328049],[-0.1550799459219,-0.10609593242407,0.067681193351746],[-0.11937544494867,0.10366349667311,0.11250638961792]],[[0.024233588948846,0.00038014439633116,0.0096363071352243],[0.031118713319302,0.037645030766726,-0.015132243745029],[0.076174058020115,-0.010165400803089,0.016010526567698]],[[-0.068202748894691,-0.044213026762009,-0.05828507989645],[-0.019341079518199,-0.036284293979406,-0.0042633712291718],[0.11843428760767,0.074236884713173,0.1052372828126]],[[0.018855610862374,-0.063049204647541,-0.033525355160236],[0.018568901345134,-0.038976758718491,0.02631296031177],[0.023829123005271,0.054205950349569,0.15131287276745]],[[-0.021612165495753,-0.092115469276905,-0.021460548043251],[-0.01456611789763,0.038209199905396,-0.019154766574502],[0.06041095033288,-0.071035772562027,0.067936785519123]],[[0.032829407602549,0.015148274600506,0.06032857298851],[-0.010549386963248,0.013262584805489,0.021275965496898],[-0.064328819513321,0.024887349456549,-0.01732480712235]],[[0.012037191540003,-0.079378202557564,-0.016816867515445],[0.085716001689434,-0.066056944429874,0.082464665174484],[-0.18207991123199,-0.20124933123589,-0.041507247835398]],[[-0.1182479262352,-0.063391007483006,-0.036390133202076],[0.029899951070547,-0.064449958503246,0.15074063837528],[-0.030698418617249,0.11326686292887,0.075673781335354]],[[-0.22804941236973,0.0056166923604906,-0.016413701698184],[-0.012508169747889,0.11873065680265,0.11677525937557],[0.10557129234076,0.016773797571659,0.061935890465975]],[[-0.1347841322422,-0.084332875907421,0.15763404965401],[-0.063118815422058,-0.11777106672525,0.12053024023771],[-0.12101658433676,-0.074243940412998,0.018260000273585]],[[-0.12596373260021,-0.022445054724813,-0.062289543449879],[-0.045883841812611,0.069207690656185,-0.071295574307442],[0.19343057274818,-0.022661283612251,0.012453509494662]],[[0.22465498745441,0.16403995454311,0.050205294042826],[0.07704221457243,0.21387776732445,-0.048154447227716],[-0.0052344216965139,0.01746485568583,-0.13170230388641]],[[-0.16497375071049,-0.11081071197987,-0.11519908159971],[0.034917533397675,0.012135826051235,0.0072256717830896],[-0.092927515506744,0.025347057729959,0.17100666463375]],[[-0.0068910992704332,-0.012874795123935,-0.049516960978508],[-0.033049028366804,0.010874920524657,0.019294682890177],[-0.011391428299248,0.019099693745375,0.043022450059652]],[[-0.011455684900284,0.1490170955658,-0.029297819361091],[0.17334906756878,0.034830298274755,-0.042594917118549],[-0.010073221288621,0.10453029721975,-0.14605338871479]],[[-0.2060265392065,0.073426596820354,-0.054910995066166],[-0.13061791658401,-0.068110786378384,0.050721772015095],[-0.094579689204693,0.17682906985283,0.095240131020546]],[[0.023985628038645,0.10217576473951,-0.025718335062265],[-0.0061546382494271,0.093201413750648,0.006799241527915],[-0.035852290689945,0.015808826312423,-0.066834174096584]],[[-0.09241671860218,-0.015903506428003,0.10789313167334],[-0.045093726366758,-0.044384744018316,-0.059667926281691],[-0.059089090675116,-0.017335172742605,-0.015984827652574]],[[0.085605926811695,0.034380652010441,-0.040389079600573],[-0.057789027690887,-0.002033949829638,0.017877684906125],[0.032051429152489,-0.070224672555923,0.096684992313385]]],[[[-0.087588295340538,-0.1023980230093,0.034145709127188],[0.028065074235201,0.0061911474913359,0.092215023934841],[-0.0094689726829529,0.014066114090383,-0.0052874498069286]],[[-0.21586182713509,-0.01002492569387,-0.028533309698105],[0.04039678350091,0.12012708932161,0.07228596508503],[0.059593454003334,0.062534295022488,-0.0059878183528781]],[[-0.089328125119209,0.059507690370083,0.025056341663003],[-0.025032659992576,0.0062810028903186,-0.00076499278657138],[0.080693021416664,-0.072504334151745,0.026856862008572]],[[0.05292110145092,-0.17127971351147,0.060534294694662],[-0.088042311370373,0.081858642399311,-0.00041697212145664],[-0.023144723847508,0.10229687392712,0.089908868074417]],[[0.0093196658417583,0.062860004603863,-0.090434536337852],[-0.015207655727863,0.040239550173283,0.020509896799922],[0.0095726735889912,-0.082738570868969,-0.092172183096409]],[[0.0098286056891084,-0.023949917405844,-0.028092257678509],[-0.051589317619801,-0.00078906788257882,-0.077718742191792],[0.017109911888838,0.039509382098913,0.11657232046127]],[[-0.018073612824082,0.030642613768578,-0.10944782197475],[-0.055681809782982,-0.031454388052225,-0.0088147940114141],[-0.0073189153335989,0.043005343526602,-0.062395550310612]],[[-0.029640268534422,-0.019741455093026,-0.013018201105297],[-0.029624665156007,-0.086030721664429,0.0097032301127911],[-0.044946204870939,0.016980474814773,0.030086239799857]],[[0.01216653175652,-0.0035646215546876,-0.034436292946339],[-0.075237847864628,-0.07385016977787,-0.034142021089792],[0.020935110747814,-0.02234829030931,0.077250696718693]],[[0.099788837134838,0.023506639525294,-0.042751878499985],[0.0052007073536515,0.022868201136589,-0.094930678606033],[-0.025698093697429,0.01369845867157,-0.062708452343941]],[[-0.0088691879063845,0.05459513887763,0.0093726208433509],[-0.021422084420919,0.062037568539381,-0.015923850238323],[0.10498274862766,-0.00052552483975887,0.063368961215019]],[[-0.10568108409643,-0.0048129162751138,0.03018763102591],[0.025770390406251,0.0010213180212304,-0.052587788552046],[-0.030143070966005,-0.01561458222568,0.060034275054932]],[[0.013480670750141,0.085451439023018,0.028531327843666],[0.060821630060673,0.038582865148783,0.012167262844741],[0.0045905755832791,0.16012266278267,-0.029617873951793]],[[-0.031456999480724,0.021730050444603,-0.085564792156219],[0.099037952721119,0.084193512797356,-0.027997674420476],[0.0080409683287144,-0.041771788150072,-0.088964559137821]],[[0.08070869743824,-0.013880678452551,-0.16164669394493],[0.078994825482368,0.05406453832984,-0.0017227128846571],[0.030851043760777,0.095697656273842,0.021993344649673]],[[0.0084377937018871,-0.049518138170242,0.058583032339811],[-0.10852642357349,-0.11610691994429,0.021696154028177],[0.031328815966845,-0.015521684661508,-0.014390619471669]],[[0.073301285505295,-0.16004347801208,0.0098403180018067],[0.026010802015662,-0.14158122241497,0.023414054885507],[0.028073323890567,0.042377009987831,0.038237195461988]],[[-0.092768177390099,-0.015226536430418,-0.037822432816029],[-0.048337709158659,-0.09168429672718,-0.07482622563839],[0.03763834014535,0.12190029770136,-0.013917753472924]],[[-0.025283241644502,-0.027521666139364,-0.026970261707902],[0.10400824248791,-0.030482061207294,0.062046587467194],[0.040725268423557,-0.029835399240255,-0.11258088797331]],[[-0.066694617271423,-0.054102849215269,-0.0294772926718],[-0.024967549368739,-0.052425600588322,-0.037947371602058],[0.098663702607155,0.0075686327181756,0.029778769239783]],[[-0.070533104240894,0.041816849261522,-0.036233235150576],[0.047516521066427,-0.099449880421162,-0.10513016581535],[-0.021241890266538,-0.037331577390432,-0.11939876526594]],[[-0.043973848223686,-0.060563899576664,0.087554037570953],[0.0094111375510693,0.052314594388008,0.055971655994654],[0.0271091517061,-0.042549204081297,-0.089669153094292]],[[0.085645936429501,0.077090010046959,-0.012994667515159],[0.01826411485672,0.11961128562689,0.039730619639158],[-0.072255365550518,-0.057291444391012,-0.10900231450796]],[[0.021946605294943,-0.059898812323809,-0.027145143598318],[-0.051638897508383,-0.025736343115568,-0.084287986159325],[0.085030533373356,0.081244803965092,0.069528579711914]],[[0.058895606547594,0.04281822219491,-0.053758293390274],[0.0053727412596345,0.083752818405628,-0.11718965321779],[-0.019713001325727,-0.038030128926039,0.095430746674538]],[[0.080083511769772,-0.14513036608696,-0.0024557809811085],[0.087829180061817,-0.073590651154518,-0.071572437882423],[0.14390796422958,-0.045260965824127,0.0057654003612697]],[[0.014943680725992,-0.055848021060228,0.0048215631395578],[-0.053399693220854,-0.00020908714213874,-0.028193833306432],[0.023567540571094,0.061402648687363,-0.051188588142395]],[[-0.015386560000479,0.10193093121052,0.018478993326426],[-0.0095283668488264,0.017159275710583,0.23607386648655],[-0.045600160956383,-0.046737734228373,0.070580266416073]],[[-0.013951987959445,-0.01421124022454,-0.01002093218267],[-0.008212486281991,0.034885633736849,-0.015941116958857],[0.040881723165512,0.10676427930593,0.012519047595561]],[[0.016160104423761,0.033600442111492,0.086680166423321],[-0.027803059667349,0.020599041134119,0.056286279112101],[0.020347999408841,0.010385864414275,0.030472561717033]],[[0.13107359409332,-0.13399222493172,0.0049393614754081],[0.011622893624008,-0.14052924513817,0.021365493535995],[-0.034040957689285,0.057340044528246,-0.001448864582926]],[[-0.028090950101614,0.013123784214258,-0.015197596512735],[0.019299771636724,0.12613017857075,-0.050841353833675],[0.007301667239517,-0.032805159687996,-0.11685169488192]]],[[[0.0076995445415378,0.068228296935558,-0.0012958635343239],[-0.022055067121983,-0.17538715898991,-0.15403458476067],[-0.099959753453732,-0.074847646057606,-0.02197534404695]],[[-0.049167603254318,0.076147936284542,-0.035795565694571],[-0.018569301813841,0.10772529244423,-0.068435318768024],[0.04360293596983,0.03244860842824,-0.037776835262775]],[[-0.037809293717146,0.037341743707657,-0.034344114363194],[-0.062764696776867,-0.060534413903952,-0.048183128237724],[0.041363950818777,-0.082941591739655,0.0054368181154132]],[[-0.033553201705217,0.0090957246720791,-0.10801638662815],[-0.0040486324578524,0.013080418109894,0.0060523580759764],[-0.0030021409038454,0.056374728679657,-0.14149662852287]],[[-0.029081556946039,0.029800660908222,-0.056562326848507],[0.098596967756748,-0.0053245285525918,0.064167447388172],[0.019837958738208,0.119503647089,-0.27340433001518]],[[0.020834788680077,0.11789266765118,-0.18183036148548],[0.016595704481006,0.028474031016231,0.087106429040432],[-0.036850340664387,0.005664121825248,-0.029040595516562]],[[-0.045554351061583,-0.028330082073808,0.057581309229136],[-0.17501799762249,0.055035442113876,-0.018166417255998],[0.053349167108536,-0.038328688591719,0.107745654881]],[[0.10808376222849,0.030994739383459,-0.030361481010914],[0.041230551898479,0.011576662771404,-0.032045636326075],[0.16287237405777,0.090519770979881,-0.10778649896383]],[[0.054817602038383,0.14643603563309,-0.016372080892324],[-0.042274933308363,0.061632607132196,0.0077707511372864],[-0.0057765739038587,-0.10918149352074,-0.20858444273472]],[[0.070823341608047,0.089175283908844,-0.067662961781025],[0.081792503595352,0.11022642999887,0.016168151050806],[0.078697010874748,0.14797024428844,-0.07681031525135]],[[0.0025669445749372,-0.090168945491314,0.11432778090239],[-0.036470379680395,0.025006594136357,0.062538534402847],[-0.10166485607624,0.023126345127821,0.097601778805256]],[[-0.15185540914536,0.016226187348366,0.0091928448528051],[0.012013202533126,-0.2362324744463,0.12843222916126],[-0.10561200976372,-0.045932006090879,-0.094747081398964]],[[0.0062202895060182,-0.13545721769333,-0.027831051498652],[0.034409411251545,-0.011069261468947,-0.024576146155596],[-0.0013029109686613,0.0076875435188413,-0.033378455787897]],[[0.12018714845181,0.069779708981514,0.013649183325469],[0.044993009418249,0.015037534758449,-0.10506708920002],[-0.13466614484787,-0.030076280236244,0.066557332873344]],[[-0.12360472977161,-0.038387477397919,-0.14313636720181],[-0.08220474421978,0.029110392555594,0.059236045926809],[0.067562140524387,0.025793131440878,0.0080230040475726]],[[-0.068278528749943,0.021228060126305,0.0040109721012414],[-0.050452407449484,0.038516841828823,-0.0059002372436225],[-0.052158419042826,0.027139894664288,0.14805993437767]],[[0.029718372970819,-0.10360141843557,-0.063310295343399],[-0.059343099594116,-0.05256487056613,-0.035056799650192],[-0.021403690800071,-0.10770197957754,-0.0083146682009101]],[[0.067399375140667,0.03531850874424,-0.060187429189682],[-0.009224621579051,-0.024565208703279,-0.073530614376068],[0.042019989341497,0.045212913304567,-0.017000220716]],[[0.058105785399675,0.036982879042625,0.01070751901716],[-0.00027033386868425,0.092643059790134,-0.19611021876335],[0.19890166819096,0.053075976669788,-0.092813074588776]],[[0.046237159520388,-0.1187879294157,-0.043080069124699],[0.092133872210979,0.12599425017834,-0.046601120382547],[-0.060766857117414,0.086223430931568,-0.14132556319237]],[[0.036491073668003,0.072974480688572,0.043797478079796],[-0.061827704310417,-0.10041686892509,-0.054139342159033],[-0.15544632077217,-0.01304492726922,-0.026421755552292]],[[-0.015026748180389,0.06775639206171,0.045830741524696],[0.071214824914932,-0.022879684343934,-0.061991009861231],[0.075222156941891,0.00423289462924,-0.17378768324852]],[[-0.016435535624623,0.028672417625785,0.023228505626321],[-0.0064559881575406,-0.021038245409727,-0.017968168482184],[-0.010404701344669,0.045532066375017,0.0075427177362144]],[[-0.014794961549342,-0.04393719881773,0.056256845593452],[0.012071635574102,-0.05871119722724,-0.023599438369274],[0.034486666321754,0.017466098070145,0.0019480786286294]],[[-0.093744710087776,-0.08106940984726,-0.02171635068953],[0.11282385885715,0.11203682422638,0.066567108035088],[-0.061266638338566,-0.031200027093291,0.043944623321295]],[[0.09417463093996,-0.0014408292481676,-0.082919806241989],[-0.025966882705688,-0.05954061076045,-0.051163487136364],[0.0091865211725235,-0.010466967709363,-0.010146883316338]],[[0.023837605491281,0.061392113566399,-0.087819762527943],[0.033470720052719,0.053606722503901,-0.042220436036587],[-0.085596419870853,-0.056444585323334,0.042383719235659]],[[-0.012596409767866,-0.025241982191801,0.069347016513348],[0.02941027469933,-0.0050244512967765,-0.016540337353945],[0.040168862789869,0.0098887756466866,0.0045554540120065]],[[-0.075496859848499,-0.11345779150724,-0.00051474059000611],[-0.018373254686594,-0.073593884706497,-0.1001640111208],[0.070892915129662,0.12665225565434,0.093277253210545]],[[0.016970539465547,0.082841776311398,-0.00092018861323595],[0.11348430812359,-0.046613145619631,-0.11707706749439],[-0.0071276286616921,-0.012409116141498,-0.11436233669519]],[[0.060839463025331,-0.02474101819098,-0.12414020299911],[0.089234709739685,0.094069331884384,-0.080490082502365],[0.16139230132103,-0.011687680147588,-0.10734759271145]],[[-0.036785691976547,-0.037353407591581,-0.14938741922379],[0.023744598031044,-0.053818732500076,0.064059443771839],[0.016992902383208,-0.032810710370541,0.083863541483879]]],[[[-0.099795922636986,-0.20490857958794,-0.23724199831486],[0.0039975200779736,-0.050944563001394,-0.15448392927647],[0.0987818390131,0.036035399883986,-0.070833705365658]],[[0.0093433521687984,-0.029847024008632,-0.043570820242167],[0.069576129317284,0.020090570673347,-0.12146169692278],[0.093353308737278,0.011261555366218,0.027524534612894]],[[0.070114463567734,0.08927197009325,0.12975138425827],[-0.025474961847067,-0.0258734151721,-0.014825277030468],[-0.088409833610058,-0.14537523686886,-0.096632868051529]],[[-0.027951322495937,-0.0025934900622815,0.076886013150215],[0.067331522703171,-0.1290710568428,0.08916237205267],[-0.13487912714481,-0.20317162573338,0.016789158806205]],[[0.057357415556908,-0.0058661089278758,-0.050932597368956],[0.031140647828579,0.013696612790227,0.0032793232239783],[-0.093342810869217,-0.06864020973444,-0.10753854364157]],[[-0.058189783245325,0.017088279128075,-0.26402097940445],[-0.026958020403981,0.039393153041601,-0.0051556853577495],[-0.040803968906403,-0.084256529808044,-0.10093981772661]],[[-0.011627393774688,-0.055651664733887,-0.093160405755043],[0.10021729022264,0.0046845520846546,0.036966044455767],[0.096528574824333,0.20048166811466,0.15568110346794]],[[0.0020462803076953,-0.007704000454396,-0.012861274182796],[-0.13073188066483,-0.17162236571312,-0.13706324994564],[0.049047578126192,-0.025121502578259,-0.10845220834017]],[[0.083858460187912,-0.10490737855434,0.028336754068732],[-0.059305623173714,0.10567302256823,-0.044398903846741],[0.012266468256712,-0.070809364318848,-0.073218479752541]],[[0.045844260603189,0.21971283853054,0.058493737131357],[0.05609443411231,0.18892580270767,0.10435082763433],[-0.064693413674831,-0.05075217038393,-0.071230709552765]],[[-0.033871587365866,0.03922476619482,-0.0075211287476122],[-0.070701174438,0.15400965511799,0.057129766792059],[-0.23427005112171,-0.078637130558491,-0.19345611333847]],[[0.011364336125553,-0.071598678827286,-0.20632511377335],[-0.15017154812813,0.0078237215057015,0.066876664757729],[-0.031782537698746,0.12174019217491,0.002489305799827]],[[0.062040444463491,0.02183928526938,0.083877936005592],[0.017856933176517,0.05409824103117,0.10474993288517],[-0.062751516699791,0.053111869841814,0.02217373996973]],[[-0.026418073102832,-0.13591147959232,-0.0073681399226189],[-0.017704976722598,0.059797443449497,-0.1022155508399],[-0.24285151064396,0.093220494687557,-0.15886327624321]],[[0.044745322316885,-0.037975933402777,0.11138018965721],[-0.058211978524923,-0.029429638758302,0.050539955496788],[-0.0053880303166807,0.070899449288845,-0.063347212970257]],[[-0.10116310417652,0.11865420639515,-0.083956882357597],[-0.10939275473356,0.11114142090082,0.088900931179523],[0.046083316206932,0.14103752374649,0.12618669867516]],[[-0.063514374196529,-0.24751752614975,0.010289750061929],[0.0073065361939371,-0.07170308381319,-0.095048807561398],[-0.045136954635382,0.16075167059898,0.0030067425686866]],[[-0.023598205298185,-0.15956535935402,-0.047740660607815],[-0.081606052815914,-0.0027224619407207,-0.022352369502187],[0.15014101564884,0.065125405788422,-0.0064918505959213]],[[-0.052785977721214,-0.034654501825571,0.061204835772514],[0.073216512799263,0.1368812918663,0.049565743654966],[0.12712849676609,0.03978506475687,-0.056683298200369]],[[0.010657795704901,-0.046500980854034,-0.018361354246736],[-0.15095673501492,-0.25017097592354,-0.081050425767899],[-0.19894456863403,-0.046323850750923,-0.10849542170763]],[[0.029434377327561,-0.062092393636703,-0.1395521312952],[0.11885560303926,0.029343223199248,-0.07399408519268],[-0.036739487200975,-0.072177402675152,-0.31876823306084]],[[-0.091047234833241,0.15087307989597,0.2170934677124],[-0.0013762916205451,0.13870872557163,0.048205800354481],[-0.17044126987457,-0.091865010559559,-0.18559697270393]],[[0.0054646045900881,0.21044717729092,0.024247949942946],[0.068238407373428,0.0056362757459283,-0.17771448194981],[-0.43974336981773,-0.061101906001568,-0.27167761325836]],[[-0.053299140185118,0.013572341762483,-0.064438201487064],[-0.0064391177147627,0.071837589144707,0.0048922547139227],[-0.13056282699108,-0.075793839991093,-0.082293294370174]],[[0.04380127415061,-0.04371178150177,-0.048526968806982],[0.050724405795336,-0.048912741243839,-0.10463096946478],[0.12570722401142,0.024885680526495,0.0056968019343913]],[[0.10743979364634,0.02011457271874,-0.046058587729931],[-0.096500545740128,-0.098479114472866,-0.024723654612899],[0.054523535072803,0.021316586062312,0.11770904064178]],[[-0.076683722436428,0.13411147892475,0.025531832128763],[-0.13569137454033,-0.01525538880378,0.082880407571793],[-0.053271789103746,-0.031702894717455,0.054648067802191]],[[0.18488845229149,0.2040921151638,-0.012661679647863],[-0.002558765700087,0.35939678549767,0.20094884932041],[-0.23036408424377,0.15806704759598,-0.13312764465809]],[[-0.17889480292797,-0.091814808547497,0.027662705630064],[0.023801300674677,-0.02972356043756,0.0061300890520215],[-0.0037405816838145,0.10609086602926,0.14559894800186]],[[0.18138866126537,0.07405212521553,0.04060872644186],[-0.0099545521661639,-0.057349167764187,0.092493414878845],[-0.026162717491388,0.0057345726527274,-0.029799429699779]],[[-0.0084079671651125,-0.03188468515873,0.015999898314476],[0.024984056130052,-0.01023923419416,0.095605708658695],[-0.11313177645206,0.023698108270764,0.16088937222958]],[[0.035492647439241,-0.051677756011486,-0.14341098070145],[0.1011748611927,-0.055221244692802,-0.011411711573601],[0.065266586840153,0.049002572894096,0.086965091526508]]],[[[-0.1000140234828,0.033291287720203,0.0069602625444531],[-0.19642621278763,-0.15619698166847,-0.074765987694263],[-0.045134473592043,-0.053638178855181,0.053937342017889]],[[0.051473520696163,0.036369644105434,-0.0068565425463021],[0.026531914249063,-0.0076857428066432,0.18734528124332],[-0.10205680131912,-0.14594538509846,0.025629518553615]],[[-0.06259698420763,-0.06805032491684,-0.077363051474094],[0.027461787685752,-0.061903119087219,0.04172732681036],[0.10513125360012,0.0064344857819378,0.055767416954041]],[[-0.077873297035694,0.019257908686996,-0.085012227296829],[-0.045166239142418,-0.22724696993828,0.1277451813221],[0.13217036426067,0.03623428195715,-0.03993409126997]],[[-0.044501297175884,0.0081608705222607,-0.0072882641106844],[0.029287558048964,-0.0042131580412388,0.001371334772557],[-0.1768627166748,-0.086369521915913,-0.083474561572075]],[[0.066048108041286,0.015832494944334,-0.0059326556511223],[-0.062446251511574,-0.052771955728531,0.065706305205822],[0.067575238645077,-0.021186880767345,-0.14279086887836]],[[0.052592545747757,0.085237294435501,-0.15729348361492],[0.076361157000065,-0.080433331429958,0.086421482264996],[0.048879440873861,0.066070288419724,0.1028648018837]],[[-0.045273866504431,0.0050430726259947,-0.026792736724019],[-0.034911725670099,-0.02927921526134,0.019758630543947],[-0.0064453184604645,0.079423412680626,-0.04976499825716]],[[0.024011462926865,0.14440967142582,0.13133923709393],[-0.11260065436363,0.05243756249547,0.011617726646364],[-0.10510955750942,0.097347550094128,-0.069782145321369]],[[-0.077817149460316,0.012815540656447,-0.046753764152527],[0.14468830823898,0.030739983543754,0.05041852965951],[0.15144105255604,-0.045488856732845,-0.027516821399331]],[[-0.00075168395414948,-0.052510660141706,0.035476353019476],[-0.063924595713615,0.11414428055286,0.006576337851584],[-0.032748106867075,0.0073458654806018,-0.0084355603903532]],[[0.08274319767952,0.0097868526354432,-0.071078084409237],[-0.12153577804565,-0.075921609997749,0.06898820400238],[0.038763165473938,-0.14026002585888,-0.15229167044163]],[[-0.0436403863132,-0.0053266589529812,-0.069289162755013],[0.012492977082729,-0.042962573468685,0.074305526912212],[0.15001641213894,0.11702524125576,0.011907076463103]],[[0.055043950676918,0.13614152371883,0.0035628771875054],[-0.0099212927743793,0.074675559997559,0.058743540197611],[-0.044787261635065,-0.01092048920691,-0.11055561900139]],[[0.17108957469463,-0.0060112592764199,-0.023836622014642],[-0.02079021371901,0.046726979315281,0.015183896757662],[-0.14680750668049,0.021611941978335,-0.051580600440502]],[[0.027248691767454,-0.099465161561966,-0.047807227820158],[0.12985487282276,-0.13964419066906,-0.063539110124111],[0.052858684211969,-0.027135953307152,-0.082525841891766]],[[0.019868537783623,-0.14157782495022,-0.014007778838277],[0.0031888345256448,0.030111905187368,0.00063447147840634],[0.036678146570921,-0.039753891527653,0.11409771442413]],[[-0.013925602659583,-0.0034087270032614,0.084114879369736],[0.02078670822084,0.14498095214367,-0.16270433366299],[-0.11318030208349,0.005549275316298,0.035845242440701]],[[-0.036635611206293,-0.024760335683823,0.02075850404799],[0.049047909677029,-0.063189275562763,-0.12234622985125],[0.033505272120237,0.027270417660475,-0.04716582223773]],[[-0.0028283155988902,0.0082174660637975,0.0049908505752683],[-0.066109642386436,0.010922756046057,0.015981642529368],[0.046623613685369,-0.17076641321182,-0.0039731208235025]],[[0.10635320097208,-0.12330297380686,-0.02901167422533],[-0.053931672126055,0.20436102151871,-0.092202849686146],[0.08573018014431,-0.014967505820096,-0.21620650589466]],[[-0.044144030660391,-0.050810262560844,0.010980078019202],[0.050611354410648,0.062305971980095,0.031636208295822],[0.13361324369907,0.17803117632866,0.0069054113700986]],[[0.010728851892054,0.043027263134718,0.064403995871544],[-0.07437002658844,0.096595175564289,-0.10012905299664],[0.010661847889423,0.14963074028492,-0.12898224592209]],[[-0.06399866938591,-0.00050313386600465,-0.037693131715059],[0.0091117797419429,0.11371844261885,-0.02992021292448],[0.062736079096794,-0.1203590258956,0.037221223115921]],[[-0.10312253236771,0.057921249419451,0.039349354803562],[0.013454156927764,0.11340684443712,-0.092116199433804],[-0.092978112399578,-0.021622814238071,-0.0076680639758706]],[[-0.068404152989388,-0.0021985277999192,0.013684802688658],[0.031667176634073,0.0099075650796294,-0.021567391231656],[-0.038864150643349,-0.093648456037045,0.055023718625307]],[[0.025597877800465,0.057381883263588,-0.016292037442327],[-0.03742553293705,0.0093937097117305,-0.0096878306940198],[-0.12508210539818,0.010539816692472,0.051753249019384]],[[-0.076517909765244,-0.010692253708839,0.066789031028748],[-0.067771092057228,0.1012159511447,0.014456494711339],[0.020705830305815,0.071174889802933,-0.082519389688969]],[[-0.13238914310932,0.12140656262636,-0.016441853716969],[-0.086653083562851,-0.20396068692207,0.0022391229867935],[-0.025551218539476,0.046004101634026,0.026607125997543]],[[0.060011319816113,-0.032175045460463,0.060421355068684],[-0.06911601126194,0.051299747079611,0.08792332559824],[-0.0022616782225668,0.0072357105091214,-0.018670570105314]],[[-0.037384018301964,-0.029517505317926,-0.059524152427912],[0.099193945527077,-0.0033916991669685,0.18881143629551],[0.048457507044077,-0.071857526898384,-0.11713301390409]],[[0.00075922295218334,-0.06274800747633,0.040225405246019],[0.12735459208488,-0.067781135439873,-0.071283869445324],[-0.0049903569743037,0.031898889690638,-0.0063553326763213]]],[[[0.04303814470768,-0.23766057193279,-0.069073550403118],[-0.074591420590878,-0.11085899174213,0.021271638572216],[-0.090028271079063,0.0046399487182498,0.13159291446209]],[[0.11416479945183,0.069499582052231,0.029985666275024],[-0.052548043429852,-0.085484683513641,-0.019572157412767],[-0.042904209345579,0.0038326531648636,-0.002516457810998]],[[0.076256632804871,-0.090469352900982,-0.14962105453014],[0.064364962279797,-0.022044587880373,-0.019073233008385],[0.068788260221481,-0.1204976812005,0.049844436347485]],[[-0.081117264926434,0.005933728069067,-0.1037292778492],[-0.083879329264164,-0.11097437888384,-0.21496745944023],[-0.075483597815037,-0.1084071546793,-0.053260020911694]],[[-5.1398503273958e-05,0.0043974597938359,-0.11090035736561],[-0.084987640380859,-0.075275339186192,0.055106889456511],[-0.026572592556477,-0.025154208764434,-0.15094761550426]],[[-0.046043541282415,-0.0026611504144967,-0.13358178734779],[-0.047275327146053,-0.11530854552984,0.029150191694498],[-0.15510413050652,-0.011307246983051,-0.1399994045496]],[[-0.11764349788427,0.01882185973227,0.053929027169943],[-0.033220730721951,-0.081292599439621,-0.14594855904579],[-0.089105077087879,-0.13657709956169,0.15927501022816]],[[0.029901890084147,-0.11052199453115,-0.12144497781992],[-0.12523424625397,-0.023597128689289,-0.24568764865398],[-0.12907652556896,-0.24874651432037,-0.092329800128937]],[[-0.078735165297985,-0.080350585281849,-0.036378558725119],[0.031766097992659,-0.18731126189232,-0.078109234571457],[0.010834323242307,-0.040986936539412,0.074171185493469]],[[0.08499313890934,0.060606829822063,0.24751722812653],[0.047740396112204,0.015756471082568,-0.042966429144144],[0.1812360137701,0.09598097205162,0.20218148827553]],[[0.052767034620047,-0.042890820652246,-0.062723018229008],[0.018312815576792,-0.017757559195161,0.02422165684402],[-0.077407568693161,0.022801944985986,-0.031683657318354]],[[0.043718442320824,-0.0095285130664706,0.058427028357983],[-0.19233833253384,-0.0022590735461563,-0.058257527649403],[-0.026689641177654,-0.14358189702034,0.0041123945266008]],[[-0.00094809976872057,-0.12777501344681,-0.057297453284264],[0.067389108240604,-0.076575204730034,0.04246611520648],[-0.028667792677879,-0.036851182579994,-0.049646213650703]],[[-0.036303885281086,0.13546797633171,-0.016274098306894],[-0.041738174855709,-0.0080694826319814,-0.063164070248604],[0.13799269497395,0.058412488549948,0.092344373464584]],[[-0.0019455512519926,-0.059405647218227,-0.13359770178795],[-0.10538750886917,-0.047594506293535,-0.21192805469036],[-0.032273877412081,-0.16390192508698,-0.15038128197193]],[[-0.093497417867184,0.094437070190907,0.0780189037323],[0.024150423705578,-0.06296294927597,0.10340239107609],[-0.12840342521667,0.010301697067916,0.034424602985382]],[[-0.038899980485439,-0.10782365500927,-0.27621728181839],[-0.14436005055904,-0.15825022757053,0.050326745957136],[0.015402539633214,-0.01433742325753,-0.20170877873898]],[[0.024225428700447,-0.12446195632219,-0.10124944150448],[0.0037283741403371,0.0067591657862067,-0.0093928407877684],[-0.057881399989128,-0.015490976162255,-0.18669897317886]],[[-0.17796246707439,-0.26463410258293,-0.1031374707818],[-0.13517139852047,0.002137741073966,-0.12525473535061],[-0.010733589529991,-0.1884787529707,-0.16693346202374]],[[-0.09948268532753,0.045291271060705,-0.069878734648228],[0.004603844601661,-0.13226580619812,-0.096179448068142],[-0.017416346818209,-0.12221392244101,-0.12024873495102]],[[0.044843025505543,0.19765561819077,0.075142234563828],[-0.049333147704601,-0.033121008425951,-0.0094062704592943],[-0.039700753986835,0.0041053146123886,0.028256202116609]],[[-0.097235187888145,-0.13631987571716,-0.023125674575567],[-0.026406437158585,0.011303688399494,0.019825199618936],[0.0058425832539797,-0.043510608375072,0.077034026384354]],[[-0.0036078449338675,0.1187736839056,-0.020160680636764],[0.070979006588459,-0.060448810458183,0.087186835706234],[0.035532105714083,0.079575717449188,0.021097520366311]],[[0.016097538173199,-0.1365674585104,0.049752350896597],[-0.13258315622807,-0.11975558102131,-0.28844025731087],[-0.072854839265347,-0.20856690406799,-0.089001856744289]],[[-0.22075173258781,-0.11318789422512,-0.081037580966949],[-0.091047443449497,-0.2470159381628,0.044174320995808],[-0.098077088594437,-0.028792783617973,-0.054598774760962]],[[0.019407380372286,-0.011095500551164,-0.1676085293293],[-0.048525594174862,-0.18939681351185,0.0015248084673658],[-0.14672189950943,0.060873877257109,-0.17284132540226]],[[-0.053401336073875,0.0020093794446439,-0.03675938397646],[0.13573369383812,-0.10668644309044,0.079835683107376],[-0.016084756702185,-0.028558796271682,-0.031217018142343]],[[0.025490894913673,-0.082991197705269,0.26903960108757],[0.033711884170771,-0.17369908094406,0.06473284214735],[0.038831502199173,0.071435041725636,0.04321414232254]],[[-0.0067653912119567,-0.038037665188313,0.01211064402014],[-0.24938583374023,0.055900283157825,0.0089359749108553],[0.020350825041533,-0.15439519286156,-0.048481266945601]],[[0.017157554626465,-0.094438880681992,0.035048488527536],[0.039838202297688,0.024224629625678,-0.045984294265509],[0.12413366883993,0.032753851264715,-0.023535734042525]],[[-0.02250056900084,0.013294345699251,-0.022251587361097],[-0.12314356118441,-0.14209844172001,-0.12349300086498],[0.010647614486516,-0.14692033827305,-0.069608733057976]],[[-0.037243351340294,-0.013046015053988,-0.13878010213375],[-0.054079383611679,-0.050917360931635,0.052941933274269],[0.06213890388608,-0.097122028470039,-0.11092099547386]]],[[[-0.10624761879444,-0.026437992230058,-0.010637057945132],[0.030337342992425,-0.20844975113869,0.032590512186289],[-0.024705164134502,-0.034396484494209,0.070428773760796]],[[-0.10446448624134,0.15996500849724,-0.11424870789051],[-0.090012237429619,0.12644390761852,-0.094560161232948],[0.044589444994926,0.1386027187109,-0.10326916724443]],[[0.15084883570671,-0.15517292916775,-0.017442559823394],[0.030596928671002,-0.12754414975643,0.14509934186935],[-0.20321042835712,0.036014284938574,-0.20325389504433]],[[0.059249620884657,-0.28117337822914,0.035529740154743],[0.041842047125101,-0.20761686563492,0.019809616729617],[-0.010183298029006,-0.12969981133938,-0.0050620101392269]],[[0.059489913284779,0.12213203310966,0.087636664509773],[0.061521332710981,0.047494899481535,0.057706810534],[-0.017952166497707,-0.016329100355506,-0.0079937176778913]],[[-0.12911348044872,0.14768575131893,0.070770055055618],[-0.17307375371456,0.044754229485989,0.019186371937394],[-0.013218970037997,-0.097943305969238,-0.097868338227272]],[[-0.09134404361248,0.024055035784841,-0.13167937099934],[0.019338814541698,-0.038331903517246,-0.13311342895031],[-0.0068555534817278,0.052142430096865,0.097710765898228]],[[0.0034387037158012,0.0094849625602365,0.014834860339761],[0.0091599896550179,-0.0058065853081644,0.064559675753117],[0.011970489285886,0.12992990016937,0.0082001155242324]],[[-0.080615378916264,0.069828800857067,-0.20327112078667],[-0.068431176245213,0.039461001753807,-0.1235743612051],[0.041662335395813,0.063906371593475,-0.017926789820194]],[[0.12107450515032,0.24054409563541,-0.10071782767773],[0.10027572512627,0.033243775367737,0.0090748770162463],[0.0794498026371,-0.030843216925859,0.096474163234234]],[[-0.1939914226532,0.079705730080605,-0.050036933273077],[0.034201737493277,0.031745567917824,-0.11875373870134],[0.062899477779865,-0.094920739531517,0.16191053390503]],[[-0.004636365454644,-0.033501513302326,0.080417975783348],[0.051566231995821,-0.094821102917194,0.1534648835659],[0.032317355275154,0.024409353733063,0.0073766144923866]],[[-0.22056663036346,0.14501312375069,-0.21159696578979],[-0.12546728551388,0.011436372995377,-0.1185098439455],[0.15262462198734,-0.015031510964036,-0.1594358086586]],[[-0.07519343495369,-0.16688153147697,0.18541665375233],[-0.027774261310697,-0.074290007352829,0.12723389267921],[-0.14222446084023,0.060912985354662,0.11092522740364]],[[0.11148855090141,-0.049571268260479,0.018884731456637],[-0.03704459220171,-0.14699575304985,-0.015455337241292],[0.044957891106606,-0.08455104380846,-0.0029998447280377]],[[0.1461908519268,-0.043769091367722,0.12241593748331],[0.098621591925621,0.05269468203187,-0.044546991586685],[-0.05268358066678,-0.044392611831427,-0.20606431365013]],[[-0.14348265528679,0.008537613786757,-0.22692693769932],[-0.070746049284935,-0.0020904215052724,-0.092396676540375],[-0.0066656935960054,0.05499454587698,-0.0091318283230066]],[[-0.22877000272274,0.098522506654263,-0.0075017032213509],[-0.1524296104908,0.016372755169868,-0.32492178678513],[0.18614982068539,0.13444125652313,0.03103020042181]],[[0.02746400795877,0.088888593018055,0.0096087576821446],[-0.03359230607748,-0.010960969142616,-0.090296268463135],[-0.048405259847641,0.046686116605997,0.00016870764375199]],[[-0.079987935721874,-0.010208738967776,0.030470553785563],[-0.31648540496826,-0.015823831781745,-0.17853683233261],[-0.11366187781096,-0.062518745660782,-0.13278813660145]],[[-0.030643466860056,-0.10634953528643,-0.030494704842567],[0.023731682449579,-0.053677882999182,0.060740951448679],[-0.038289058953524,0.065536461770535,0.024849796667695]],[[0.04877582192421,-0.12445145845413,0.1422768086195],[0.15611995756626,-0.15551011264324,0.25091305375099],[-0.13631100952625,-0.079048439860344,-0.024607174098492]],[[-0.066237017512321,0.20300337672234,0.022496795281768],[-0.15485465526581,0.35728001594543,-0.13886806368828],[-0.1572557836771,0.069296956062317,-0.15948343276978]],[[0.042112987488508,-0.044603679329157,0.0067973900586367],[0.042743168771267,-0.087899163365364,0.023986766114831],[0.089853577315807,-0.12403056025505,0.021494755521417]],[[-0.040671221911907,0.19779539108276,-0.2508539557457],[-0.03176187723875,0.010960837826133,-0.089958742260933],[0.010883999988437,-0.045906998217106,0.10662706941366]],[[-0.013516570441425,0.03633276373148,-0.0004813531122636],[0.012004727497697,-0.039183773100376,-0.054962337017059],[0.049001734703779,0.0032641575671732,0.0069722849875689]],[[-0.03795663267374,0.12917141616344,0.023556673899293],[-0.12226419895887,0.045975726097822,-0.0030662240460515],[-0.032091673463583,0.055713176727295,-0.025816233828664]],[[0.017435675486922,0.1209277138114,0.11146596819162],[0.035747695714235,0.12951236963272,0.044330481439829],[-0.048834230750799,0.078796423971653,0.0048392759636045]],[[-0.2198960185051,-0.086349911987782,0.084618248045444],[-0.13282586634159,-0.092055946588516,-0.093627825379372],[0.1882901340723,0.039876893162727,0.13069543242455]],[[-0.025042982771993,-0.1695668399334,0.052751619368792],[-0.025011898949742,-0.0066421832889318,-0.037805397063494],[-0.067906476557255,-0.0011989495251328,0.023478178307414]],[[-0.020305827260017,0.0082504618912935,-0.031407799571753],[0.0087666772305965,0.10059944540262,-0.081828661262989],[0.079193688929081,0.0057160938158631,-0.13745309412479]],[[-0.068875260651112,-0.0034019739832729,-0.10531707108021],[0.078188769519329,-0.045703615993261,0.049183391034603],[0.13841365277767,-0.089548245072365,0.060800280421972]]],[[[0.12595349550247,0.05832139775157,-0.01619884185493],[-0.078768745064735,-0.030349534004927,0.090308345854282],[-0.018492562696338,0.0046177445910871,0.063028804957867]],[[0.003249182831496,0.036712277680635,-0.00587422773242],[0.05206947773695,0.042178563773632,0.054067607969046],[-0.1536149084568,-0.11386157572269,0.037716187536716]],[[-0.043718121945858,-0.11787555366755,-0.14957104623318],[-0.019486187025905,0.00030447304015979,-0.012196601368487],[0.016987441107631,-0.12844802439213,0.0831593349576]],[[0.11831215769053,-0.017626859247684,-0.033504363149405],[0.04654087126255,-0.015578567050397,-0.069272071123123],[-0.044882513582706,-0.049852274358273,0.026111798360944]],[[-0.098856575787067,-0.0076881931163371,-0.004995001014322],[0.034786760807037,-0.012142622843385,0.065337441861629],[-0.023897457867861,-0.018982980400324,0.00045114062959328]],[[0.010624947957695,-0.10242652148008,-0.020555485039949],[0.19259545207024,-0.10332595556974,-0.033738508820534],[-0.001922081457451,-0.094578541815281,-0.038846991956234]],[[0.00060382462106645,0.042341105639935,0.05226106569171],[-0.097282715141773,0.18096758425236,-0.0062326220795512],[-0.025475826114416,0.12485538423061,-0.056980133056641]],[[0.026331136003137,0.029619498178363,-0.015259456820786],[0.045603454113007,-0.032740615308285,0.036929734051228],[0.097745254635811,0.080580316483974,0.07116224616766]],[[-0.012765808030963,0.056392308324575,0.058857399970293],[0.062952548265457,0.014833556488156,-0.036150019615889],[-0.093881882727146,0.017988177016377,0.059715401381254]],[[0.10008009523153,0.15551687777042,0.047941915690899],[-0.085056446492672,0.092773228883743,0.089093655347824],[-0.012627196498215,0.03171731159091,0.05475165322423]],[[-0.0023269453085959,-0.11978072673082,-0.033452585339546],[0.18312850594521,-0.014051984995604,-0.0055180718190968],[-0.025159724056721,0.082517400383949,0.10305450856686]],[[0.070077642798424,0.10686866939068,-0.084285050630569],[0.0047655473463237,-0.10852584242821,0.0090458150953054],[-0.030934263020754,-0.0038366853259504,0.12672980129719]],[[0.061459071934223,0.028400680050254,-0.036373153328896],[0.009688233025372,-0.007697076536715,0.058269858360291],[-0.039143335074186,-0.030643552541733,0.075443483889103]],[[-0.11392229795456,0.051482658833265,-0.017609598115087],[0.1695516705513,-0.075476869940758,-0.031163815408945],[-0.049263048917055,-0.068259119987488,0.030495358631015]],[[-0.06075432524085,-0.026879418641329,0.074505478143692],[0.019043194130063,-0.1657861918211,0.071173444390297],[-0.013462232425809,-0.19855399429798,-0.075119122862816]],[[-0.043949078768492,-0.0091632129624486,-0.015368500724435],[-0.014398161321878,-0.14558750391006,-0.0182538125664],[-0.027328351512551,0.14771099388599,0.015963245183229]],[[0.0027310042642057,-0.052591618150473,-0.0076891556382179],[-0.0543765835464,-0.035111304372549,-0.2092263251543],[-0.0080869477242231,-0.054429668933153,-0.025643335655332]],[[-0.0041121300309896,0.1069905012846,-0.11085058003664],[-0.046435281634331,0.075746551156044,-0.039891634136438],[-0.12095199525356,-0.055458124727011,-0.14125539362431]],[[0.079987853765488,-0.038563467562199,0.0038882850203663],[0.038720440119505,-0.041412133723497,0.011376016773283],[-0.18375931680202,-0.019773097708821,-0.02985317632556]],[[0.013082396239042,-0.049552164971828,-0.039525676518679],[-0.015558487735689,-0.075098231434822,-0.0018528827931732],[-0.025801869109273,-0.11370205879211,0.039803065359592]],[[0.085881359875202,0.056043487042189,0.079105481505394],[0.060152798891068,0.024147879332304,0.13694353401661],[-0.063820198178291,0.0017271171091124,-0.004076449200511]],[[-0.11840377002954,0.10784598439932,-0.013319264166057],[-0.080403037369251,-0.094250366091728,0.05143316462636],[0.096913650631905,-0.00056281156139448,-0.0091636842116714]],[[0.19089482724667,-0.025185653939843,0.12436951696873],[0.012457945384085,0.0032427893020213,0.10705507546663],[-0.02181563153863,0.13459332287312,0.032943438738585]],[[-0.14293222129345,0.0029413783922791,0.0048660999163985],[0.072844959795475,-0.099144361913204,-0.099436245858669],[0.043568670749664,-0.070728339254856,0.035981841385365]],[[-0.10541177541018,0.072587758302689,0.0056731607764959],[-0.17950764298439,-0.04787141084671,-0.048815242946148],[-0.0061618713662028,0.00076119822915643,-0.0023471091408283]],[[0.061100859194994,0.028733003884554,-0.069575563073158],[0.0069902990944684,0.0094886934384704,0.0037782238796353],[-0.022264217957854,-0.14587265253067,0.043795902282]],[[-0.0316889770329,-0.051275290548801,0.048083387315273],[0.048689097166061,-0.0018640627386048,-0.046290036290884],[0.040186405181885,0.069150827825069,-0.093447677791119]],[[0.12901894748211,0.11011949181557,-0.010321334004402],[-0.031866833567619,0.042453296482563,0.12304790318012],[-0.07432783395052,-0.075259506702423,0.12504927814007]],[[-0.055562749505043,-0.062490899115801,0.11859603971243],[-0.078662797808647,0.015726687386632,0.020986761897802],[0.072773233056068,-0.11400488764048,0.028308300301433]],[[0.0016036160523072,0.027348412200809,0.0030170807149261],[0.012921227142215,-0.020418418571353,0.030861552804708],[0.0072583337314427,0.044395454227924,-0.016304112970829]],[[-0.050217814743519,-0.003530579386279,0.0036854329518974],[-0.059366904199123,-0.048693377524614,-0.016847193241119],[0.10986467450857,-0.014823821373284,-0.095985494554043]],[[0.0020692879334092,0.014723640866578,0.039024848490953],[-0.085001066327095,-0.076033435761929,-0.063219882547855],[0.055654726922512,-0.0505331158638,-0.033653117716312]]],[[[-0.066467113792896,-0.090728297829628,-0.062012076377869],[-0.35477319359779,-0.096631608903408,-0.05442988499999],[-0.11312766373158,-0.087979175150394,-0.024477893486619]],[[0.054125960916281,0.10047020018101,-0.046111565083265],[0.0070724505931139,-0.031318858265877,-0.052328355610371],[0.0045869862660766,0.048026863485575,-0.075256183743477]],[[0.068006858229637,-0.16180472075939,-0.13209839165211],[-0.24290163815022,0.16808494925499,-0.23399706184864],[0.058194540441036,-0.19426941871643,-0.02631089836359]],[[0.096218667924404,-0.087883904576302,0.091327592730522],[-0.091636672616005,0.13628354668617,-0.060127779841423],[0.07085146009922,-0.046721693128347,0.076972477138042]],[[0.054228585213423,0.10490725189447,0.079217307269573],[-0.037420749664307,-0.0046518268063664,-0.010077607817948],[0.020904686301947,0.077872380614281,-0.021021053195]],[[-0.2549566924572,0.064532041549683,0.028009740635753],[-0.0025791067164391,-0.092903584241867,0.078172393143177],[-0.10731013119221,0.064675644040108,0.18612304329872]],[[-0.13540731370449,0.092132098972797,-0.031004246324301],[-0.066997230052948,0.11648643016815,-0.10949759930372],[0.013664689846337,-0.0012557370355353,-0.026309289038181]],[[-0.030784178525209,0.014717008918524,-0.0091723836958408],[-0.047319859266281,0.0068985815159976,-0.05294880643487],[-0.020546900108457,-0.033305503427982,0.047144621610641]],[[-0.060372438281775,-0.128502368927,0.014487241394818],[0.064121171832085,0.02300182916224,-0.095140010118484],[0.020411903038621,-0.08256658911705,-0.13147327303886]],[[0.072215139865875,-0.032344114035368,-0.061800017952919],[0.081013418734074,0.062253654003143,-0.068860076367855],[0.12837480008602,-0.010888571850955,-0.0092337122187018]],[[0.052922267466784,0.092757195234299,-0.031984973698854],[0.11058317869902,0.01397205889225,-0.041223611682653],[-0.04417584836483,-0.077490329742432,-0.18004932999611]],[[0.059827119112015,0.028496831655502,0.023561853915453],[0.041892845183611,-0.013910685665905,-0.099540539085865],[0.092202976346016,-0.19599735736847,-0.26664736866951]],[[0.024413522332907,-0.11035255342722,-0.05813605338335],[0.18244327604771,0.030454421415925,0.018331905826926],[0.039211481809616,-0.058672223240137,0.15964332222939]],[[-0.1096436008811,0.068433843553066,-0.012635924853384],[0.040931142866611,0.041878618299961,0.1321837157011],[-0.16717711091042,0.038814261555672,-0.04838627949357]],[[0.1164266616106,-0.043915998190641,-0.12137005478144],[0.00015350290050264,0.0058721620589495,-0.016744257882237],[-0.044694695621729,-0.0052988170646131,0.10851150751114]],[[0.085020452737808,-0.026711374521255,0.073225654661655],[0.015052345581353,-0.0014928466407582,-0.10210113227367],[-0.17000731825829,-0.19874666631222,0.10580579936504]],[[-0.01599271222949,0.062421031296253,0.0061371894553304],[-0.041339598596096,0.059763610363007,0.056920163333416],[-0.018839355558157,0.087804950773716,0.063877917826176]],[[0.019669122993946,0.048935629427433,0.11377102136612],[-0.043713144958019,0.046333596110344,0.0069812061265111],[-0.24821284413338,-0.10837585479021,-0.0035464181564748]],[[-0.052401948720217,0.052484914660454,-0.01924323104322],[-0.020388703793287,-0.049240089952946,0.0105493767187],[0.020895209163427,0.050676856189966,-0.020788211375475]],[[-0.083982229232788,-0.010996260680258,-0.061605282127857],[-0.17983524501324,-0.066185049712658,0.033892404288054],[-0.26768979430199,-0.2100185751915,0.001143820816651]],[[0.12857641279697,-0.2252534031868,-0.20094506442547],[0.26661026477814,0.018440816551447,-0.079413503408432],[0.14518702030182,0.045882854610682,-0.11281098425388]],[[0.023303078487515,-0.052223283797503,-0.036040227860212],[-0.022190952673554,0.11883710324764,0.0030791901517659],[0.20740437507629,-0.26711222529411,0.024361588060856]],[[-0.062723375856876,-0.11692944914103,-0.14674617350101],[0.041404247283936,-0.071362189948559,-0.064770020544529],[0.17914061248302,0.12542222440243,0.12256468087435]],[[-0.0011557794641703,0.11510761082172,0.026007765904069],[-0.070031620562077,0.0066863750107586,-0.082058474421501],[-0.16934084892273,0.058261338621378,0.029160052537918]],[[-0.074563302099705,-0.11829022318125,-0.13413941860199],[0.0081444699317217,0.018151516094804,-0.030792623758316],[0.010371840558946,0.073560044169426,-0.050828654319048]],[[0.085438683629036,0.063553765416145,0.052055671811104],[0.023350413888693,0.047975488007069,-0.076517947018147],[-0.11891669780016,-0.07468093931675,-0.11365774273872]],[[-0.079503603279591,0.018988905474544,-0.011537787504494],[0.013158325105906,-0.022040210664272,0.18685461580753],[-0.12499044835567,0.07363460958004,-0.061475608497858]],[[0.1291535794735,0.095918133854866,0.075744785368443],[0.092352598905563,0.21676898002625,-0.18462435901165],[0.057909801602364,0.073562353849411,0.18538270890713]],[[0.13508556783199,-0.17018465697765,-0.074549004435539],[0.050571616739035,0.10493405908346,-0.043084118515253],[-0.010786866769195,-0.052414733916521,-0.089501023292542]],[[-0.0578846745193,0.056171491742134,-0.018677597865462],[-0.17544764280319,0.06964997947216,0.12638406455517],[-0.058301195502281,0.059394400566816,-0.0030912559013814]],[[0.13066372275352,0.023916579782963,-0.059993740171194],[-0.11058764159679,-0.093345776200294,0.032426606863737],[0.066052243113518,-0.0064293621107936,-0.077068954706192]],[[-0.11517330259085,0.02499377168715,0.15531520545483],[-0.056912325322628,0.059108559042215,-0.055350419133902],[0.027101846411824,0.039184778928757,-0.033355232328176]]],[[[-0.075673297047615,-0.11934875696898,-0.19953337311745],[-0.029656739905477,0.017714517191052,-0.052754081785679],[-0.00023522638366558,-0.011053294874728,0.02206096239388]],[[-0.034446597099304,-0.20625519752502,-0.085798427462578],[-0.045483827590942,0.069387368857861,0.014811131171882],[0.041254036128521,0.13846391439438,0.074241638183594]],[[-0.048121582716703,-0.013761288486421,-0.068840645253658],[0.079018749296665,0.012541721574962,-0.096624344587326],[0.0050945528782904,-0.058594815433025,0.0059935045428574]],[[-0.050441950559616,-0.042708978056908,-0.039243690669537],[-0.084974773228168,0.062206625938416,-0.13003236055374],[0.046279959380627,-0.03270460665226,0.012055998668075]],[[0.012455522082746,-0.0046896617859602,-0.0039041887503117],[0.05561563000083,0.021202199161053,0.14438247680664],[0.019609626382589,-0.046682454645634,0.031932655721903]],[[0.05551915615797,0.088906027376652,0.016024202108383],[-0.030339339748025,-0.14907625317574,0.015149711631238],[-0.0045139635913074,-0.027170741930604,-0.12535905838013]],[[-0.12498211860657,-0.041769068688154,-0.146708548069],[-0.05123196169734,0.031450491398573,0.10197655111551],[0.043596010655165,0.028676401823759,0.040474865585566]],[[-0.0050476486794651,0.056897699832916,-0.01075093075633],[0.049923218786716,0.049833424389362,0.095449157059193],[0.065098077058792,-0.0061925859190524,0.01896870136261]],[[-0.051380895078182,0.14345110952854,-0.1484904140234],[-0.024305697530508,-0.045212842524052,-0.13053786754608],[0.060137026011944,0.008576137945056,0.068126507103443]],[[0.23160468041897,0.046829227358103,0.066208243370056],[-0.0510189011693,0.038918569684029,0.10072848945856],[0.032520536333323,0.1338939666748,0.19876137375832]],[[-0.052209682762623,-0.27736246585846,-0.1051684692502],[-0.12657655775547,0.0017557218670845,-0.020218070596457],[-0.025601282715797,0.064772427082062,-0.0091893896460533]],[[-0.0055605177767575,-0.15638381242752,-0.066300980746746],[-0.022802421823144,-0.013147166930139,-0.065099470317364],[0.047879911959171,-0.012449110858142,0.011279943399131]],[[0.0021737057249993,-0.05576203763485,0.057674068957567],[0.0060092057101429,0.054666306823492,-0.083844192326069],[0.059732865542173,-0.015674781054258,0.039718691259623]],[[0.089646808803082,0.011071210727096,0.11525690555573],[-0.032559636980295,0.0069371610879898,-0.0014839338837191],[-0.08091201633215,-0.094315029680729,-0.14747942984104]],[[0.0037830176297575,0.028945572674274,0.0053416001610458],[-0.01752551831305,0.040846392512321,0.024133140221238],[0.04556754976511,0.025146327912807,0.086072042584419]],[[0.039651531726122,0.035225078463554,0.0063662808388472],[-0.090705126523972,-0.057071316987276,-0.040113609284163],[-0.022399535402656,-0.080503322184086,0.049305282533169]],[[-0.031139202415943,0.019292324781418,0.056719705462456],[-0.042163301259279,-0.12419758737087,-0.018994143232703],[-0.030374029651284,0.025024127215147,-0.08368469029665]],[[0.062800034880638,-0.12280330806971,-0.0019880516920239],[-0.071119211614132,-0.055234897881746,-0.094594903290272],[0.0097802728414536,0.025526866316795,-0.034561950713396]],[[0.040900580585003,-0.098011299967766,0.016535034403205],[0.024474879726768,0.034917581826448,-0.0052668801508844],[0.012109291739762,-0.03504616394639,-0.013709105551243]],[[0.0014508003368974,-0.0075123701244593,-0.00065217015799135],[0.017671965062618,-0.15350338816643,-0.044179361313581],[-0.23780447244644,0.034812893718481,0.010392051190138]],[[0.057340789586306,-0.24831919372082,-0.16900683939457],[0.0074187102727592,-0.033746521919966,0.091818258166313],[0.0046233902685344,-0.064900927245617,0.22937433421612]],[[-0.087046235799789,-0.00035989572643302,-0.19688908755779],[0.1009192019701,-0.1351285725832,0.13117747008801],[0.10172886401415,0.13220852613449,0.088625960052013]],[[-0.19561184942722,-0.1368423551321,0.25719171762466],[0.051742233335972,0.041319862008095,0.02737564407289],[-0.030235921964049,0.053955063223839,-0.049449034035206]],[[-0.11594365537167,-0.0057847867719829,-0.063083425164223],[0.040428560227156,-0.023500954732299,-0.03992560133338],[-0.032268352806568,-0.065132029354572,-0.027555564418435]],[[-0.024964462965727,0.014150187373161,-0.0054278885945678],[-0.00030023764702491,0.10403586179018,-0.042310826480389],[-0.0095302360132337,-0.057863809168339,0.08518310636282]],[[0.044316470623016,-0.075212903320789,-0.036748185753822],[0.031156567856669,-0.014181753620505,-0.071587637066841],[0.03579680994153,0.063406087458134,-0.0090283956378698]],[[0.12529055774212,0.18111333250999,0.087593153119087],[-0.07018143683672,-0.049062877893448,-0.039369873702526],[-0.050100408494473,-0.15235278010368,-0.057316891849041]],[[0.19559824466705,0.0068778996355832,-0.043594539165497],[0.11503905802965,0.044495336711407,0.086873292922974],[-0.069982789456844,-0.018334120512009,0.14288625121117]],[[-0.047241758555174,-0.094683736562729,-0.015306157059968],[-0.13640956580639,-0.12850165367126,-0.012501975521445],[-0.041169811040163,0.024124516174197,0.064402371644974]],[[0.036139108240604,0.098826386034489,0.10073593258858],[0.042539689689875,-0.0081183733418584,-0.011238975450397],[-0.0084805684164166,-0.040080118924379,0.019648412242532]],[[-0.020310036838055,0.023731872439384,-0.021321732550859],[0.024285392835736,-0.042638517916203,0.047104828059673],[0.039687644690275,-0.018639434129,-0.035085931420326]],[[-0.050460699945688,-0.042070187628269,-0.047413174062967],[-0.019445097073913,0.011140224523842,-0.00089546613162383],[-0.0031978604383767,-0.094586655497551,-0.048079565167427]]],[[[-0.026497488841414,0.12763758003712,-0.041194181889296],[-0.040571756660938,-0.054072052240372,0.1109294295311],[-0.025755224749446,0.062777690589428,-0.039398144930601]],[[0.0015897061675787,0.00010412793199066,0.069459900259972],[-0.043929576873779,-0.052218079566956,-0.052065938711166],[0.044909816235304,0.070193156599998,0.0035237658303231]],[[0.033057376742363,-0.092590287327766,-0.038777805864811],[-0.096517272293568,-0.069762036204338,0.060530345886946],[-0.01616539247334,-0.041099220514297,-0.014082598499954]],[[0.10528156161308,0.073670156300068,-0.03773995116353],[-0.013289612717927,-0.25026908516884,-0.064740568399429],[-0.020434580743313,-0.063240237534046,0.034885734319687]],[[0.055284947156906,0.059554725885391,-0.0042597069405019],[-0.084419839084148,-0.059539292007685,-0.12950797379017],[0.095909774303436,0.086101651191711,-0.027144802734256]],[[0.027274005115032,-0.085008285939693,-0.15500816702843],[0.14000689983368,-0.049652367830276,0.057910431176424],[-0.044786497950554,0.020131448283792,-0.049485374242067]],[[-0.15584763884544,-0.042418781667948,0.01317173242569],[0.028076913207769,0.03205668181181,0.017499377951026],[-0.042066063731909,0.069049723446369,-0.025772076100111]],[[-0.053215708583593,0.023258704692125,0.0054145599715412],[0.036200780421495,-0.01295083668083,-0.062010049819946],[-0.034445714205503,-0.078723557293415,-0.071651093661785]],[[0.051875047385693,-0.0036678893957287,0.044111717492342],[0.053563043475151,-0.034655012190342,-0.026268335059285],[-0.090086847543716,0.048376902937889,-0.079712428152561]],[[0.00082813203334808,0.071929842233658,0.063634015619755],[-0.018492266535759,0.13180515170097,0.10720580816269],[0.17690972983837,0.057376883924007,0.099847503006458]],[[0.040394119918346,-0.035565327852964,-0.0061473315581679],[0.031270835548639,-0.0097566107288003,-0.011492921970785],[-0.13182003796101,0.078612335026264,0.057715933769941]],[[0.049729097634554,-0.068796880543232,0.082257397472858],[-0.013689430430532,-0.024615548551083,0.10617011785507],[0.05939207971096,0.052469093352556,-0.017455702647567]],[[0.13006004691124,-0.074567817151546,-0.12254454195499],[-0.17097839713097,0.014640871435404,-0.067866452038288],[0.037336841225624,0.082605615258217,-0.21221725642681]],[[0.11982997506857,0.036593563854694,0.0056460564956069],[0.24251963198185,-0.23007625341415,0.034768469631672],[0.17658188939095,-0.32455059885979,-0.18058589100838]],[[0.043529871851206,-0.045431721955538,0.022484946995974],[-0.026356503367424,0.071776986122131,-0.098551049828529],[0.21683409810066,-0.067701034247875,0.0058014686219394]],[[0.011579449288547,0.051981922239065,0.028173832222819],[0.016602259129286,0.064354427158833,-0.0075754942372441],[-0.11637612432241,-0.15716187655926,0.073723994195461]],[[0.099729858338833,-0.030096197500825,-0.037163365632296],[-0.028035923838615,-0.11477437615395,-0.095283754169941],[0.10113530606031,-0.15293921530247,-0.027441306039691]],[[0.045283939689398,0.13453114032745,0.080535054206848],[0.0045121209695935,-0.010946628637612,-0.062227722257376],[0.016939304769039,0.064912758767605,-0.16527457535267]],[[-0.1246052980423,-0.061045981943607,-0.017389794811606],[-0.0066662328317761,-0.085028849542141,0.028546517714858],[-0.055011838674545,-0.083735570311546,0.0482466109097]],[[-0.0019322743173689,0.055041141808033,-0.010761855170131],[0.069390438497066,-0.074807122349739,0.0056741875596344],[0.072197072207928,0.046124998480082,-0.053327657282352]],[[0.22570389509201,0.037357911467552,-0.012394107878208],[-0.088224001228809,-0.097607709467411,0.082746759057045],[-0.0642109811306,0.00069038080982864,0.032863322645426]],[[0.027822364121675,0.17076094448566,-0.028440721333027],[0.20525765419006,0.024548228830099,0.070367202162743],[0.072637304663658,0.0027095775585622,-0.010632368735969]],[[-0.026847880333662,-0.0077900164760649,-0.0045443172566593],[-0.0099964663386345,0.21584551036358,-0.0042747529223561],[-0.099079921841621,0.089838176965714,-0.24365586042404]],[[0.13412928581238,-0.19857513904572,0.018419414758682],[-0.065592631697655,-0.11781047284603,0.078166007995605],[0.14322601258755,0.079976066946983,0.010338292457163]],[[-0.016681985929608,0.03667725995183,0.065783880650997],[-0.14769640564919,-0.061580430716276,-0.049633622169495],[-0.19918598234653,0.091283604502678,0.11852097511292]],[[-0.024944921955466,0.0051209940575063,-0.043359450995922],[0.17939184606075,0.033005431294441,0.076463714241982],[-0.0087012071162462,-0.017554573714733,-0.05809311568737]],[[0.051803935319185,-0.059261627495289,-0.03190479055047],[0.014417857863009,0.057851046323776,-0.067295968532562],[-0.040957659482956,0.13856483995914,-0.084662914276123]],[[-0.025330418720841,0.051716350018978,0.025701927021146],[0.037890888750553,-0.045130703598261,0.045952256768942],[-0.10481584072113,0.21007581055164,0.11856054514647]],[[0.0070297163911164,-0.068219289183617,0.092808172106743],[0.040796380490065,0.017737347632647,-0.12409242987633],[-0.061947830021381,0.071472227573395,-0.11567984521389]],[[-0.016981149092317,0.0079096741974354,-0.01826530136168],[0.1844460517168,0.0034640103112906,-0.033183701336384],[-0.036232482641935,-0.052870508283377,-0.043161232024431]],[[-0.033106151968241,7.3240480560344e-05,-0.010404312051833],[-0.011629877611995,0.0099986363202333,-0.15168282389641],[-0.054130483418703,0.037297874689102,0.086988776922226]],[[-0.062446184456348,-0.043292131274939,0.0061900177970529],[-0.10405676066875,0.021630255505443,-0.10015524923801],[-0.0039461236447096,-0.04045257344842,-0.046589426696301]]],[[[-0.08134338259697,-0.057573810219765,-0.15143989026546],[-0.007564727216959,-0.065095782279968,-0.18746209144592],[0.038261823356152,-0.0028333659283817,-0.045931868255138]],[[-0.014963461086154,0.054713729768991,0.04594375193119],[-0.0023929704912007,0.042439505457878,-0.049166556447744],[0.046022538095713,0.005852812435478,0.0023495482746512]],[[0.038300655782223,0.021694088354707,0.025879565626383],[0.019883500412107,-0.0056045986711979,-0.080758698284626],[-0.091026112437248,0.016466982662678,0.064055494964123]],[[0.031362235546112,-0.20224913954735,-0.08755886554718],[-0.010477725416422,-0.12512890994549,0.075891368091106],[0.065921038389206,0.063505634665489,0.024215810000896]],[[0.036117825657129,-0.0053737638518214,-0.050992697477341],[-0.012147801928222,0.084376566112041,0.10781203210354],[0.036563608795404,-0.024527529254556,0.088150776922703]],[[-0.038650933653116,0.0064333286136389,-0.040531639009714],[-0.0016468089306727,0.025992272421718,0.02285273373127],[-0.039464697241783,0.10410556942225,-0.12646982073784]],[[0.037183023989201,-0.079056546092033,0.022171525284648],[0.089214436709881,0.027048792690039,-0.043661821633577],[0.016954086720943,0.089434750378132,-0.027940087020397]],[[-0.043863821774721,-0.016671119257808,0.081081353127956],[0.053531933575869,0.0059516839683056,0.19262136518955],[0.09335657954216,-0.1484100818634,-0.016965759918094]],[[0.019324190914631,-0.024259947240353,-0.050958584994078],[0.025445781648159,0.058655686676502,0.012844124808908],[-0.11274615675211,0.098558619618416,0.092284239828587]],[[-0.055594984441996,0.095653235912323,0.011144590564072],[-0.011452442035079,-0.016962014138699,-0.10821319371462],[-0.031954795122147,0.0057421554811299,0.05008539929986]],[[0.1488232165575,-0.055494409054518,-0.064085245132446],[-0.2161813378334,0.2180261015892,0.0037405644543469],[-0.13881292939186,0.16005890071392,-0.11563954502344]],[[-0.01325435936451,-0.073062159121037,0.0013231387129053],[0.010167021304369,0.091095328330994,0.0064442013390362],[-0.10778187960386,0.074486188590527,0.1428562104702]],[[-0.089991688728333,0.0062830154784024,0.046483598649502],[0.040506940335035,-0.056577138602734,-0.0014672240940854],[0.011965283192694,0.071685269474983,0.092239044606686]],[[-0.06445349752903,0.12459808588028,-0.018084680661559],[0.0712890625,-0.16671149432659,0.007423906121403],[-0.10838338732719,0.13949696719646,-0.10784029215574]],[[0.020167304202914,-0.031936123967171,0.085202626883984],[-0.013263227418065,-0.048022091388702,-0.033604484051466],[0.043947674334049,0.010267528705299,0.059913601726294]],[[-0.063206106424332,0.071148291230202,-0.18471424281597],[0.063108541071415,-0.025375140830874,-0.031008761376143],[0.090948097407818,0.067962259054184,-0.017542576417327]],[[0.02461282722652,0.09411184489727,-0.018422866240144],[0.0012862867442891,-0.016159126535058,-0.085916347801685],[0.0084868529811502,-0.1248093098402,0.021315310150385]],[[0.059438243508339,0.022511342540383,0.0015474802348763],[0.027728468179703,0.02395716868341,-0.039623375982046],[-0.016830133274198,0.030195791274309,-0.12430914491415]],[[0.013784784823656,-0.038298729807138,-0.052526596933603],[-0.020477462559938,-0.0058057238347828,0.080419152975082],[0.068622760474682,0.06218820437789,0.085631541907787]],[[0.047362305223942,-0.0083482433110476,0.063483521342278],[-0.066589348018169,-0.042280122637749,-0.035443842411041],[-0.060073845088482,-0.14087115228176,-0.29983827471733]],[[-0.011517687700689,-0.058710228651762,-0.023265991359949],[0.080053202807903,0.027610072866082,-0.11169503629208],[-0.016726419329643,0.040315181016922,0.017428478226066]],[[0.039480373263359,-0.051523592323065,-0.016487848013639],[-0.032410915941,0.077183768153191,0.022724602371454],[0.011916188523173,-0.049548763781786,0.087361507117748]],[[-0.13010460138321,0.099387317895889,-0.26466912031174],[-0.11472592502832,-0.020154600962996,0.040073003619909],[-0.062343440949917,0.1675777733326,-0.02816441655159]],[[0.0604432746768,-0.0048255189321935,0.095737248659134],[-0.090326525270939,-0.020654926076531,0.040443010628223],[-0.028957489877939,0.052639216184616,0.016744870692492]],[[0.06214252486825,0.06049332767725,-0.071160435676575],[0.11857310682535,0.12760874629021,0.036318767815828],[0.071273036301136,0.13413482904434,-0.028153905645013]],[[-0.032583460211754,0.07125086337328,-0.024324664846063],[0.053403686732054,0.069652453064919,-0.027429094538093],[0.053966715931892,0.018532253801823,-0.044937487691641]],[[-0.00024665161618032,0.10674097388983,0.16423797607422],[-0.11168161779642,-0.03134923428297,0.13757316768169],[-0.078158058226109,-0.0083579467609525,-0.0040372335352004]],[[-0.090326264500618,0.15849362313747,-0.073335044085979],[-0.047550518065691,0.10298290848732,0.033264011144638],[-0.065211780369282,0.14234639704227,-0.015599728561938]],[[0.0090590314939618,0.02706097625196,-0.053598795086145],[0.037663716822863,-0.11056411266327,0.042967237532139],[0.0026527636218816,0.0092010507360101,0.081043750047684]],[[-0.046669952571392,-0.022917903959751,0.026519825682044],[0.080800861120224,-0.099019400775433,0.091085709631443],[-0.041140459477901,-0.029168682172894,0.11992906033993]],[[0.09191869199276,0.080711759626865,-0.099167019128799],[0.049221932888031,0.046285435557365,0.051709972321987],[0.027994826436043,-0.087828628718853,-0.005996264051646]],[[0.027796601876616,0.10211232304573,0.004330990370363],[0.02946382202208,-0.17608031630516,-0.0059897168539464],[0.0010318078566343,0.0036706051323563,0.018475895747542]]],[[[0.038073487579823,0.025125673040748,0.10883037745953],[0.033838365226984,-0.15962882339954,-0.11679348349571],[0.028006684035063,-0.064024575054646,0.0094966161996126]],[[0.030976634472609,-0.044539250433445,0.035817239433527],[0.0075879581272602,0.034897617995739,-0.04613247141242],[-0.011241249740124,-0.021983271464705,0.0007135474588722]],[[0.14716666936874,0.15440315008163,0.0080403126776218],[-0.019602037966251,0.057254541665316,-0.090155087411404],[-0.16177879273891,-0.082756891846657,0.066756032407284]],[[0.060629781335592,0.15629911422729,0.01114659756422],[0.075352162122726,0.11703477054834,-0.14056773483753],[-0.015125653706491,-0.1469791084528,-0.15853506326675]],[[-0.029111431911588,0.055769260972738,-0.0015635560266674],[-0.072464168071747,0.035914193838835,0.11934247612953],[0.067974358797073,-0.059019468724728,-0.017586441710591]],[[-0.086069762706757,-0.067373424768448,-0.0077699823305011],[0.076116092503071,0.12403997033834,0.11951854079962],[0.033510930836201,-0.079371199011803,-0.28111982345581]],[[0.021221917122602,0.043808307498693,0.04962470009923],[-0.21970736980438,-0.0082924300804734,0.059798397123814],[0.042590297758579,0.16703233122826,-0.015711717307568]],[[0.0018605567747727,-0.025728672742844,-0.072102122008801],[-0.022157322615385,-0.098478294909,-0.14861956238747],[-0.15735232830048,-0.16491028666496,-0.015083013102412]],[[0.16849593818188,0.0079144285991788,-0.045462165027857],[0.0063279713504016,-0.023380532860756,-0.10499372333288],[-0.053144071251154,-0.11883189529181,-0.088419705629349]],[[0.038015332072973,0.087823234498501,0.096800461411476],[0.01336007937789,0.077683359384537,0.073151938617229],[-0.051658488810062,-0.092615500092506,-0.080555714666843]],[[0.16770330071449,0.12780104577541,0.20564748346806],[0.073524698615074,-0.055168606340885,0.0021322201937437],[-0.10952795296907,0.0058689904399216,-0.33450254797935]],[[0.096057385206223,0.10640260577202,0.027453117072582],[0.066388621926308,0.034946020692587,-0.01290176436305],[0.028926536440849,-0.034210037440062,-0.086938001215458]],[[0.1900419741869,0.0030778769869357,0.082078129053116],[0.071378290653229,0.11018515378237,-0.081458620727062],[-0.038047779351473,-0.12234257161617,-0.00018255948089063]],[[-0.049907110631466,0.12030272930861,0.0075824577361345],[0.091530598700047,0.022255243733525,-0.07220259308815],[0.15269008278847,-0.17497466504574,-0.21155898272991]],[[-0.0090938452631235,-0.023684531450272,0.025870261713862],[-0.10015077888966,-0.10997415333986,0.057794410735369],[-0.12031500041485,-0.067332789301872,0.078684717416763]],[[-0.0013955758186057,0.030614430084825,0.063408404588699],[0.19420917332172,0.16441734135151,0.014537459239364],[0.098086230456829,0.0015551346587017,0.03506363928318]],[[0.094500474631786,0.080031901597977,-0.01920104585588],[0.074672490358353,-0.036999739706516,-0.062458962202072],[-0.075206413865089,-0.078333608806133,0.11233505606651]],[[0.12923903763294,0.057437215000391,-0.10569036006927],[0.034331273287535,-0.050544772297144,-0.010981821455061],[0.075588978827,-0.11352855712175,0.23963236808777]],[[0.0027867492754012,0.046691011637449,-0.15147642791271],[0.080668888986111,0.14372366666794,-0.06394100189209],[0.057062372565269,-0.0066072070039809,-0.061105377972126]],[[-0.012108461000025,-0.10787098109722,-0.058915894478559],[0.028041137382388,-0.11544834822416,0.011686240322888],[0.016371427103877,0.075589671730995,0.04493897035718]],[[-0.016046427190304,0.097693249583244,0.1827485114336],[0.097950890660286,0.011274766176939,-0.075400643050671],[-0.092439331114292,-0.18158929049969,-0.2816074192524]],[[0.1825008392334,0.063848443329334,0.11543870717287],[0.15126593410969,0.003916303627193,-0.057814188301563],[0.10469767451286,-0.16867159307003,-0.11940305680037]],[[0.13786292076111,-0.015025284141302,0.15684708952904],[0.092040315270424,-0.17225649952888,0.18301460146904],[0.15616239607334,0.045070730149746,-0.0063270865939558]],[[-0.047113034874201,-0.018123568966985,-0.032591838389635],[-0.034784570336342,-0.018917568027973,0.156623005867],[0.091150388121605,0.078433461487293,0.13270902633667]],[[0.059541791677475,-0.13420528173447,0.057103119790554],[-0.096268646419048,-0.016015017405152,-0.19709184765816],[-0.056872140616179,-0.23301415145397,-0.17434778809547]],[[0.017815319821239,0.089236788451672,-0.066209368407726],[-0.019254984334111,-0.044303983449936,-0.068385168910027],[0.074011400341988,0.090266712009907,0.074202217161655]],[[-0.11283056437969,-0.12329080700874,-0.027621624991298],[0.04490489512682,-0.0037705218419433,0.075043082237244],[0.03970567509532,0.099313445389271,0.024064254015684]],[[0.090867199003696,0.082733176648617,0.16573061048985],[0.134231954813,0.19812768697739,0.076649449765682],[0.05301870778203,-0.1845155954361,-0.25723779201508]],[[-0.016151946038008,0.12796191871166,0.10554195195436],[0.084315828979015,0.073046982288361,0.056220903992653],[0.12698216736317,-0.0020900713279843,-0.22179552912712]],[[-0.053938038647175,-0.013609420508146,-0.13643765449524],[0.081488445401192,0.052699267864227,-0.029636701568961],[0.0027042569126934,-0.084279015660286,0.0020205995533615]],[[-0.11192229390144,-0.041782889515162,0.028010534122586],[-0.1961432248354,-0.032630827277899,0.14497604966164],[0.17080223560333,0.0113331284374,0.12024330347776]],[[0.048128888010979,0.060410123318434,-0.009382264688611],[0.053744595497847,-0.070604883134365,0.10641015321016],[0.049348939210176,0.14019818603992,0.11752197891474]]],[[[-0.083122551441193,0.052326511591673,0.1229262650013],[0.012213498353958,0.16039337217808,0.00080823508324102],[0.033927168697119,0.013939647935331,-0.013570735231042]],[[-0.0075229527428746,-0.025806160643697,0.054811105132103],[-0.013601738959551,-0.018090154975653,-0.043174404650927],[0.055431708693504,0.053294818848372,-0.054787516593933]],[[0.15029700100422,0.019059263169765,-0.0065581793896854],[-0.15327805280685,0.018662234768271,-0.072782538831234],[0.094049260020256,-0.026060471311212,-0.021473612636328]],[[0.10903100669384,-0.087714068591595,-0.0063360752537847],[0.071748442947865,0.0386325083673,0.047152981162071],[0.023434156551957,-0.012348770163953,-0.057359762489796]],[[0.036386795341969,0.042748551815748,-0.041582964360714],[0.016842506825924,0.070833556354046,-0.042853832244873],[-0.019841346889734,-0.019057117402554,-0.05505683645606]],[[0.013797852210701,-0.22719199955463,-0.16515406966209],[-0.064256355166435,-0.053931679576635,0.0050556119531393],[-0.017173321917653,0.14522039890289,0.01324949786067]],[[-0.035031214356422,0.059568904340267,0.00018791019101627],[0.0092253545299172,0.051198370754719,-0.069204144179821],[-0.013711475767195,-0.069591656327248,-0.12865681946278]],[[0.0039785979315639,-0.023174988105893,-0.0050861248746514],[-0.15875123441219,0.12730477750301,-0.029654361307621],[-0.040009222924709,-0.021874440833926,0.0022149533033371]],[[-0.03471540287137,0.13776545226574,0.11244936287403],[-0.10018247365952,0.072089821100235,-0.11698804050684],[0.011147098615766,-0.081136085093021,-0.11466887593269]],[[0.066293194890022,0.043975558131933,-0.072482608258724],[-0.082537934184074,0.014516603201628,-0.14086829125881],[0.16223740577698,-0.11005941778421,-0.048222672194242]],[[0.17304809391499,0.014962723478675,0.13355901837349],[0.084941059350967,0.015557670034468,-0.070650890469551],[-0.027941033244133,-0.044853683561087,-0.082384720444679]],[[0.11061555147171,0.0029748044908047,0.10751657932997],[0.014437540434301,0.12522667646408,0.041928123682737],[0.029561288654804,-0.05332050845027,-0.20512360334396]],[[-0.0069047519937158,0.12733076512814,-0.17207489907742],[0.10414978116751,0.039492692798376,-0.13419066369534],[-0.12233432382345,-0.032159212976694,-0.064150139689445]],[[-0.1533535271883,-0.18098670244217,-0.033048495650291],[-0.081103220582008,-0.0072270296514034,0.31426432728767],[0.10564205050468,0.085331842303276,0.14802034199238]],[[0.043329395353794,-0.18832959234715,0.044273901730776],[-0.20258346199989,0.043084189295769,0.10898733139038],[-0.035633075982332,-0.14472962915897,-0.034855559468269]],[[-0.083311133086681,0.024009019136429,0.10326908528805],[0.059084355831146,-0.1201106980443,0.051286049187183],[0.031208710744977,0.16115605831146,-0.0025442731566727]],[[-0.1288345605135,-0.31862425804138,-0.16857625544071],[-0.098894849419594,0.032898440957069,0.15423727035522],[0.049751259386539,0.067417249083519,0.23191785812378]],[[-0.066481031477451,-0.11652785539627,-0.078232437372208],[0.11485781520605,-0.020918965339661,0.17675054073334],[-0.031961761415005,-0.0089167766273022,-0.035048820078373]],[[-0.038466703146696,-0.052184734493494,0.051551051437855],[-0.21079559624195,0.025819608941674,-0.024565944448113],[0.035718165338039,0.065301030874252,-0.010968491435051]],[[0.023858278989792,-0.098826512694359,-0.041884023696184],[-0.15255285799503,-0.031557749956846,0.0094212749972939],[-0.11208492517471,-0.022247148677707,-0.01375385094434]],[[-0.056310299783945,0.10274346917868,0.025519762188196],[0.11006868630648,0.13426478207111,-0.037968516349792],[0.066215790808201,0.1128269135952,0.01125880330801]],[[0.099793799221516,0.0027012526988983,0.37540969252586],[0.05182333663106,-0.042399827390909,-0.021298775449395],[-0.15422238409519,-0.12940150499344,0.042106356471777]],[[0.068393565714359,0.070742011070251,0.035428203642368],[0.055542595684528,-0.094514325261116,-0.01424349937588],[0.13617794215679,-0.061417352408171,-0.035210888832808]],[[-0.11595235019922,0.075426526367664,-0.023470060899854],[0.071198426187038,0.11687365174294,-0.021706094965339],[0.0033927711192518,0.019657308235765,0.00295819202438]],[[0.015774611383677,0.0011248051887378,0.16449193656445],[-0.13652603328228,-0.088870249688625,0.082366563379765],[-0.12510497868061,-0.045910246670246,-0.21536609530449]],[[0.034727606922388,0.11563396453857,-0.069765657186508],[0.048160720616579,-0.10828579962254,-0.10646179318428],[-0.042003706097603,-0.041398201137781,0.030859254300594]],[[-0.038012653589249,-0.034347806125879,-0.075993403792381],[0.0060207173228264,0.00040618615457788,0.1037867218256],[0.01796361990273,0.0059768655337393,0.018605710938573]],[[-0.070094935595989,0.049546085298061,0.054041102528572],[-0.030853686854243,0.1061357408762,0.11668082326651],[0.025816844776273,0.10491268336773,-0.14777970314026]],[[0.027214847505093,-0.12849414348602,-0.08368194848299],[0.15049254894257,-0.099696360528469,-0.067685924470425],[0.18108385801315,0.087677426636219,0.0057967402972281]],[[0.020588785409927,-0.04830875992775,-0.081097364425659],[-0.056936129927635,0.061313278973103,0.063623607158661],[0.087782062590122,-0.082789018750191,-0.043031569570303]],[[0.14110040664673,0.052274234592915,-0.015432597137988],[-0.052149217575788,0.15679748356342,-0.076167941093445],[0.033460278064013,0.054578043520451,-0.12672705948353]],[[-0.19010522961617,0.086151905357838,0.065409861505032],[-0.028652545064688,-0.079655930399895,0.040157929062843],[0.032927423715591,0.024127878248692,0.071272201836109]]],[[[-0.056909706443548,-0.023540651425719,0.0051736189052463],[-0.0044584409333766,-0.053955122828484,-0.013736321590841],[0.051065009087324,0.022873163223267,0.1445235311985]],[[-0.0026361029595137,-0.011478394269943,-0.055405080318451],[-0.10500269383192,0.065213441848755,0.059496618807316],[-0.0063824472017586,0.023894503712654,0.064297899603844]],[[0.00081910582957789,-0.044947970658541,-0.03541399538517],[-0.13552747666836,0.10966839641333,0.13301949203014],[0.017888106405735,0.10535273700953,0.069281220436096]],[[-0.031844705343246,0.075925379991531,-0.06529550999403],[-0.023234626278281,0.0042539434507489,0.047907508909702],[-0.033879473805428,0.10230238735676,0.10072907805443]],[[0.0011971782660112,-0.017164766788483,0.055570833384991],[-0.08731933683157,0.10022208094597,-0.0041315415874124],[-0.04165244102478,-0.0070558628067374,-0.01062076818198]],[[0.28786158561707,-0.031180763617158,0.13810288906097],[0.050318241119385,0.077451154589653,0.1234926879406],[-0.0083856731653214,0.055923692882061,-0.041263096034527]],[[-0.1443782299757,-0.14335153996944,0.053189776837826],[-0.022947609424591,-0.06257937848568,-0.12083525955677],[-0.1180295497179,0.040610335767269,-0.031926199793816]],[[0.037030413746834,0.025285674259067,0.094630271196365],[-0.07642287760973,0.061703190207481,0.040033847093582],[-0.025325134396553,0.039449747651815,0.04343293607235]],[[0.084615118801594,0.095680415630341,0.0086450995877385],[-0.15581086277962,-0.12293119728565,0.081302866339684],[-0.15962943434715,-0.029071087017655,0.11544232070446]],[[-0.045849278569221,0.10876057296991,0.1630916595459],[-0.018673317506909,0.22023215889931,0.2163370847702],[0.043014008551836,0.19150529801846,0.38993358612061]],[[-0.15994833409786,0.13057923316956,0.083603791892529],[-0.22178460657597,-0.0009038599091582,0.0043291756883264],[0.070610739290714,0.048053722828627,0.13423250615597]],[[0.050800990313292,0.10474006086588,-0.0060405801050365],[0.068001851439476,0.017102461308241,-0.11591161042452],[-0.0010327666532248,-0.05665710568428,0.049895238131285]],[[-0.038892477750778,0.067060254514217,0.11900001764297],[-0.020349625498056,0.03291292116046,0.034837912768126],[-0.1188689917326,-0.045368954539299,-0.022230314090848]],[[0.043902602046728,0.06658524274826,0.067771412432194],[-0.011793460696936,0.13681054115295,-0.011861329898238],[0.055687755346298,-0.0076710395514965,-0.35573735833168]],[[0.0094838999211788,-0.035476934164762,0.04376257583499],[-0.041064735502005,0.093886755406857,0.12062605470419],[-0.037376884371042,0.023377314209938,-0.050309550017118]],[[0.073344923555851,0.08421079069376,-0.046820309013128],[0.12002357840538,-0.1521343588829,0.034899208694696],[-0.03003772161901,-0.054658081382513,0.0712501257658]],[[0.14666666090488,-0.049907322973013,0.17986443638802],[0.010479682125151,0.079164378345013,0.038193885236979],[-0.15121629834175,-0.06214427575469,0.011205263435841]],[[0.0087087051942945,0.055424578487873,-0.022159719839692],[-0.085434779524803,-0.15108473598957,-0.071098610758781],[0.10503989458084,-0.1082848906517,-0.096228159964085]],[[-0.0090917330235243,0.1508656591177,0.0030981753952801],[-0.15875041484833,0.024948723614216,0.11141856759787],[-0.12930180132389,-0.11750894039869,0.05963334441185]],[[0.071238860487938,0.063963539898396,0.07622417062521],[0.060592915862799,-0.066913485527039,-0.032555762678385],[0.071184270083904,0.098375469446182,0.040378142148256]],[[0.12866850197315,0.01044731028378,0.0070915743708611],[-0.22844734787941,0.071042723953724,0.25491583347321],[-0.13319201767445,0.047902386635542,0.22206482291222]],[[-0.24977964162827,0.029081350192428,0.19387285411358],[0.01600131765008,-0.060519989579916,0.11284423619509],[0.038860771805048,0.058713909238577,0.12003932148218]],[[0.027513820677996,-0.016868745908141,0.03341206908226],[-0.11206558346748,0.15798042714596,-0.054973822087049],[-0.056069061160088,0.048862021416426,0.088618360459805]],[[-0.041111208498478,0.099859476089478,0.030923483893275],[-0.11366970837116,-0.053426194936037,0.028142247349024],[-0.030547300353646,0.054636389017105,-0.09468137472868]],[[0.054336965084076,0.028331279754639,-0.052858520299196],[0.19114013016224,-0.0020206337794662,-0.085749067366123],[0.069439917802811,-0.017520880326629,-0.065431281924248]],[[0.011493305675685,-0.022651024162769,-0.049397129565477],[0.010181646794081,0.019268091768026,0.082561001181602],[-0.023456459864974,-0.006735750939697,-0.04006738960743]],[[0.028310170397162,0.068137302994728,0.07922674715519],[0.060922361910343,-0.044099893420935,-0.070090889930725],[0.018288286402822,-0.0083700530230999,-0.10394090414047]],[[-0.12406539171934,0.17348182201385,0.057125587016344],[-0.1334770321846,-0.056899126619101,0.068292044103146],[0.094860419631004,0.052732843905687,0.2217766046524]],[[0.034846004098654,0.0022105388343334,0.05690485984087],[0.067445151507854,-0.044317189604044,-0.21995909512043],[-0.0043569365516305,0.02016176469624,-0.098549477756023]],[[0.046132683753967,-0.048524223268032,0.086702428758144],[-0.03877280279994,-0.073056451976299,-0.094900391995907],[-0.050090871751308,0.01218462176621,0.055901613086462]],[[-0.086476258933544,-0.072671264410019,0.057785414159298],[-0.1784110814333,0.002517179120332,-1.8994927813765e-05],[-0.16582685709,-0.023886755108833,0.012307391501963]],[[0.030988957732916,-0.065211556851864,-0.0046210698783398],[-0.064587958157063,-0.010200756601989,-0.1306032538414],[-0.017985871061683,-0.092329360544682,-0.26611429452896]]],[[[-0.055270675569773,0.099243938922882,0.018108205869794],[0.035043220967054,-0.073672533035278,0.063181340694427],[0.0086549082770944,-0.045077182352543,0.022297924384475]],[[-0.0083555588498712,-0.10388116538525,0.063910230994225],[0.18054197728634,0.20979437232018,-0.041704200208187],[-0.06744097918272,0.049701724201441,-0.048983756452799]],[[-0.088905997574329,-0.0047116321511567,-0.11184245347977],[0.051881819963455,-0.048563044518232,-0.064657531678677],[0.039801016449928,-0.18350237607956,0.026215890422463]],[[0.030649913474917,-0.026325115934014,0.099228069186211],[0.10848069190979,-0.044994618743658,-0.012315728701651],[0.028603654354811,-0.090800136327744,-0.0041864695958793]],[[-0.083170332014561,0.019230488687754,-0.052176278084517],[-0.090975560247898,-0.058008510619402,-0.10452104359865],[-0.18221396207809,-0.12434855848551,-0.15594227612019]],[[0.03135384991765,0.1584946513176,-0.10705257952213],[-0.03783342987299,0.0044037294574082,0.041366547346115],[-0.011076716706157,-0.064409270882607,0.022149050608277]],[[0.015654800459743,0.12856394052505,0.061718247830868],[-0.014845895580947,-0.036392740905285,0.010020833462477],[0.067924164235592,0.083363644778728,0.022767156362534]],[[-0.027944600209594,0.038836516439915,-0.0043021216988564],[0.041699573397636,-0.029727084562182,0.043082349002361],[-0.024835566058755,0.033806197345257,0.10550107806921]],[[-0.072127178311348,0.098335348069668,-0.043545000255108],[0.080123387277126,-0.056433320045471,-0.001556771225296],[0.014442447572947,0.02379959449172,-0.040064230561256]],[[0.020048066973686,-0.088787697255611,-0.0048443544656038],[-0.056892648339272,0.083747275173664,-0.054737187922001],[0.053759027272463,0.069892801344395,-0.059239145368338]],[[-0.024453474208713,0.0029372945427895,0.14328624308109],[-0.02977984957397,-0.037069603800774,-0.00019318894192111],[0.085318088531494,0.036617085337639,-0.10063134878874]],[[-0.10741018503904,-0.057201970368624,0.014298691414297],[-0.032082907855511,0.06845036894083,0.023969732224941],[-0.10661619901657,-0.084040120244026,0.019687294960022]],[[0.035080410540104,0.13008072972298,0.061965335160494],[0.090600073337555,-0.047524325549603,-0.063032358884811],[0.023104809224606,0.070159584283829,-0.0011295201256871]],[[-0.069147795438766,0.11826393008232,0.04046144336462],[0.016430826857686,0.17983478307724,0.1288741081953],[0.094267509877682,-0.062487579882145,-0.03615802526474]],[[-0.1947695761919,-0.010389781557024,-0.029922308400273],[-5.9541907830862e-05,0.12157112360001,0.099422059953213],[0.0023716224823147,-0.0078855464234948,-0.053411245346069]],[[0.036051526665688,0.089335210621357,-0.027803655713797],[-0.026329701766372,0.023853722959757,0.1354918628931],[-0.052885599434376,-0.06615424156189,-0.002262465422973]],[[0.04122407361865,-0.084759414196014,-0.0022481954656541],[-0.022116988897324,-0.021603994071484,0.044683795422316],[0.048236317932606,0.11022155731916,0.030015425756574]],[[-0.039055544883013,0.13183052837849,-0.010373996570706],[-0.0053778393194079,0.024743854999542,0.0072417627088726],[0.0094286715611815,0.022006791085005,0.13143816590309]],[[-0.0044934959150851,0.017698271200061,0.12851914763451],[0.0076718423515558,0.0026205002795905,-0.029122926294804],[-0.083682551980019,0.076197862625122,-0.013799143955112]],[[0.06870786100626,-0.054716449230909,0.0042895977385342],[-0.044219732284546,0.024387087672949,0.033133111894131],[0.01113364379853,0.11192415654659,0.00019190233433619]],[[0.11756247282028,0.071857668459415,-0.088609866797924],[0.0077890828251839,0.025481212884188,0.085548356175423],[-0.05177028849721,-0.071983829140663,-0.14440003037453]],[[0.0016579647781327,-0.053244642913342,-0.03142112866044],[-0.049214612692595,0.048066038638353,0.074814163148403],[-0.040008407086134,0.032258581370115,-0.037476528435946]],[[-0.023382226005197,-0.032859664410353,0.18537598848343],[0.060739122331142,0.011751959100366,0.080942459404469],[-0.025702062994242,-0.0031112018041313,0.023046152666211]],[[0.10683236271143,0.0082912538200617,-0.047424245625734],[0.050058346241713,0.029699629172683,0.038215458393097],[0.015499974600971,0.026173204183578,0.01833070255816]],[[0.019307592883706,0.035495419055223,0.091384395956993],[0.057945571839809,-0.056088156998158,0.19805872440338],[-0.019840959459543,-0.084340885281563,0.12618637084961]],[[0.11641582101583,-0.022251753136516,-0.10025297105312],[0.020304478704929,-0.0015513098333031,0.061673179268837],[0.063194133341312,-0.040130417793989,-0.00086410832591355]],[[0.075827389955521,0.021002704277635,-0.01822055503726],[-0.022703403607011,0.019758826121688,0.011959880590439],[-0.043197598308325,0.034799445420504,-0.033438429236412]],[[-0.031149240210652,-0.032671552151442,-0.019392678514123],[-0.02657070569694,-0.0046700784005225,-0.067972883582115],[0.01191771030426,0.13560159504414,-0.068354852497578]],[[0.14133776724339,-0.0044945445843041,0.12013195455074],[0.020262500271201,-0.017913026735187,-0.0014682260807604],[0.066297918558121,-0.019954552873969,0.08105530589819]],[[0.030196394771338,-0.0071943835355341,0.081160984933376],[0.035758044570684,0.0037583659868687,-0.02609496936202],[0.080933839082718,0.028753731399775,-0.071423314511776]],[[0.057555202394724,0.037309650331736,0.13230484724045],[-0.052095644176006,-0.1492070555687,0.0089097218587995],[0.057641811668873,0.044153358787298,-0.042891662567854]],[[-0.012949537485838,0.11598192900419,0.070062145590782],[-0.0040150373242795,0.011380871757865,-0.0023461515083909],[0.031714051961899,-0.021095203235745,-0.0044866255484521]]],[[[-0.11131881177425,-0.089208170771599,0.014532038010657],[-0.026366712525487,-0.09841176122427,-0.035934995859861],[-0.09096447378397,-0.077952712774277,-0.032594405114651]],[[0.091741599142551,-0.080245770514011,-0.029395643621683],[-0.10836335271597,0.050623141229153,-0.058854911476374],[0.069455713033676,-0.038735643029213,0.10421069711447]],[[-0.11796382069588,0.12263848632574,0.12794880568981],[0.057731375098228,-0.12817864120007,-0.019953401759267],[-0.091625183820724,-0.037516314536333,-0.092236772179604]],[[0.11021208763123,0.054902348667383,0.11709047108889],[-0.1181149110198,0.079871214926243,0.046300180256367],[0.12711974978447,-0.0405288413167,0.11895499378443]],[[0.014614732936025,0.080690011382103,-0.0014248428633437],[0.042698688805103,0.10329572111368,0.0018357984954491],[0.089810878038406,0.22352096438408,0.02048248052597]],[[0.11368727684021,0.051201205700636,-0.029022984206676],[-0.09659331291914,0.0041840169578791,0.16478045284748],[-0.033622842282057,-0.23871429264545,-0.13748191297054]],[[-0.058441709727049,-0.12361524999142,-0.027560750022531],[0.091539777815342,-0.040293034166098,0.059187471866608],[-0.056257795542479,-0.0012332969345152,0.015214384533465]],[[0.041005823761225,-0.043093115091324,0.042357750236988],[-0.16160203516483,-0.10225834697485,-0.075184106826782],[-0.039939761161804,0.077283166348934,-0.13857913017273]],[[-0.020266389474273,-0.08915438503027,-0.063764452934265],[-0.030769571661949,-0.0063019939698279,-0.0090149464085698],[0.025698712095618,-2.1759784431197e-05,-0.064410515129566]],[[0.057597406208515,0.075626872479916,-0.034390486776829],[0.095183618366718,0.036052081733942,0.12003336846828],[-0.0085552409291267,-0.062334507703781,0.10177429020405]],[[-0.075460575520992,0.063007019460201,0.034066841006279],[0.08545545488596,-0.10987102985382,0.12736591696739],[-0.019297141581774,-0.062957942485809,0.081736408174038]],[[-0.031166492030025,0.090332701802254,-0.090819396078587],[0.02737552113831,0.020637633278966,0.080339752137661],[0.012932603247464,-0.10338344424963,-0.033035565167665]],[[0.06741327047348,-0.043192107230425,0.13092869520187],[0.051787476986647,0.042318370193243,-0.030946372076869],[0.0092382477596402,0.016385806724429,-0.025595549494028]],[[-0.27642062306404,0.21834690868855,-0.22272852063179],[0.10239856690168,-0.19699464738369,0.27398982644081],[-0.090416371822357,0.10605738312006,-0.16190055012703]],[[0.16421575844288,0.027551406994462,-0.033122055232525],[-0.1416842341423,0.063002213835716,-0.083503253757954],[0.075214065611362,0.059142250567675,-0.015166586264968]],[[0.0015839318512008,-0.047394689172506,-0.0057619214057922],[-0.014366939663887,0.11442667245865,0.053585324436426],[0.0036986630875617,0.17474479973316,0.045449364930391]],[[0.0012894562678412,0.034796934574842,-0.018751906231046],[-0.024386905133724,-0.032110601663589,0.1321793794632],[-0.044727168977261,0.092440329492092,0.021987864747643]],[[0.11108328402042,-0.0026744205970317,0.031809333711863],[-0.23233088850975,0.064294137060642,0.096320793032646],[-0.1100095063448,-0.04095109924674,-0.13832522928715]],[[0.024515593424439,-0.094370484352112,0.043732922524214],[-0.098238617181778,-0.10942611843348,-0.030539356172085],[0.010305264033377,0.061742961406708,-0.020668962970376]],[[-0.0036277621984482,-0.042919028550386,-0.035666596144438],[-0.057737991213799,0.013015801087022,-0.022171953693032],[-0.038270063698292,-0.062125034630299,-0.035282112658024]],[[0.049510546028614,0.052923686802387,0.031536661088467],[0.10672502219677,0.12841215729713,-0.007958710193634],[0.17502991855145,0.014707649126649,0.035347204655409]],[[0.030780142173171,0.081103682518005,0.1070397272706],[-0.0083198817446828,-0.011931071057916,0.045424278825521],[-0.023354580625892,-0.088936299085617,0.056620873510838]],[[0.13189969956875,-0.1445797085762,-0.0060687987133861],[0.02997774258256,0.064547941088676,-0.057793810963631],[0.032988049089909,0.0068242158740759,0.038299303501844]],[[-0.15390555560589,0.024929834529757,-0.13593262434006],[-0.12772151827812,-0.17751660943031,-0.011305220425129],[-0.10010869801044,-0.071713887155056,-0.17468658089638]],[[-0.015991784632206,-0.039787709712982,-0.052529163658619],[0.034110948443413,0.029178338125348,-0.031869493424892],[0.027804443612695,-0.14926199615002,0.017537519335747]],[[0.13126350939274,0.023906547576189,-0.07778187841177],[-0.012852072715759,-0.012070368044078,0.03870765119791],[-0.046673927456141,-0.012964498251677,-0.20378862321377]],[[-0.012727369554341,-0.065600156784058,0.051040478050709],[-0.0011170420330018,0.024076381698251,0.010200992226601],[0.0023124050348997,0.018185371533036,0.0089016333222389]],[[0.096161648631096,0.10315486043692,0.036529432982206],[-0.015927009284496,0.051988497376442,0.12164033204317],[-0.07771510630846,-0.096364878118038,0.062961988151073]],[[0.083129376173019,0.012035262770951,0.026978101581335],[0.046511016786098,-0.081860482692719,-0.045316383242607],[-0.09840776771307,0.056660912930965,0.063790425658226]],[[-0.083359122276306,0.082489117980003,-0.04787315428257],[-0.0097104730084538,-0.05869722738862,0.1227853000164],[-0.12286934256554,0.024613486602902,-0.10825461149216]],[[0.13522863388062,0.041700154542923,0.02114093862474],[-0.14076672494411,-0.0021624551154673,0.017918044701219],[0.047960363328457,-0.12267620116472,-0.091130986809731]],[[0.012623680755496,-0.077536500990391,0.057195357978344],[0.056880872696638,-0.09104747325182,-0.080366022884846],[0.04743767529726,0.029359957203269,-0.023580875247717]]],[[[0.0090799117460847,0.10978695750237,0.036293394863605],[0.045007433742285,0.093742109835148,0.01616658270359],[-0.042040515691042,0.08727939426899,-0.0026716780848801]],[[-0.084520854055882,-0.031198548153043,-0.076005727052689],[0.047927178442478,-0.038857724517584,0.010687237605453],[0.12038493901491,0.053183626383543,0.010633872821927]],[[0.03117429278791,-0.017314288765192,0.12033452093601],[-0.15975266695023,-0.038018401712179,-0.10524220764637],[0.06224287673831,-0.04650779440999,-0.078656055033207]],[[-0.066523142158985,0.037590894848108,-0.012645673006773],[-0.10387180000544,0.014460120350122,-0.078834645450115],[0.020642908290029,0.12292020767927,0.092385970056057]],[[-0.026567650958896,0.049686957150698,-0.062636710703373],[0.035592693835497,0.083182312548161,0.034867163747549],[-0.048735350370407,0.061839118599892,-0.021218234673142]],[[-0.14638514816761,-0.057679142802954,0.036070939153433],[0.012397015467286,0.020165499299765,0.10853569209576],[0.052799578756094,-0.15445324778557,0.056187201291323]],[[0.015358593314886,-0.012767194770277,-0.036701090633869],[0.12753811478615,0.0087057696655393,-0.054945472627878],[0.048160616308451,0.017927676439285,-0.010009898804128]],[[-0.025618119165301,0.04693740978837,0.018340473994613],[0.0023685086052865,-0.049505583941936,0.051079202443361],[-0.034474972635508,-0.015822166576982,0.053568717092276]],[[-0.058557689189911,-0.058040402829647,-0.06198450550437],[-0.10927881300449,-0.046866457909346,0.058270465582609],[0.0034866591449827,0.032455135136843,0.091280497610569]],[[0.050280924886465,-0.077624477446079,-0.0013505540555343],[0.19014772772789,0.18367458879948,0.1276918053627],[0.12112036347389,0.051201947033405,0.011148693971336]],[[0.020261103287339,0.10916525125504,-0.05382027477026],[0.043619386851788,-0.045729175209999,0.090439260005951],[0.022815531119704,-0.095829322934151,0.074733883142471]],[[0.088842011988163,0.066383399069309,0.048974651843309],[-0.0032981007825583,0.090071193873882,0.050634689629078],[0.0032543905545026,-0.06148923933506,-0.012896559201181]],[[-0.025015057995915,0.17142148315907,0.023505287244916],[-0.072525769472122,-0.0078996671363711,0.077714070677757],[-0.048442024737597,0.026828482747078,0.11751984059811]],[[-0.086807861924171,-0.19645775854588,0.035558439791203],[0.024036532267928,0.24840641021729,-0.2298663854599],[0.14809574186802,0.038224205374718,-0.027293218299747]],[[0.081026203930378,0.0082152178511024,0.15700869262218],[-0.021401824429631,-0.010635393671691,0.026662306860089],[0.0097239799797535,0.01451010722667,-0.015082991681993]],[[0.010310435667634,-0.090558663010597,0.058843653649092],[-0.037080395966768,0.15422651171684,0.024461321532726],[0.017174499109387,0.050739917904139,0.051342759281397]],[[0.0030750432051718,0.080097198486328,0.11549653857946],[-0.019407507032156,0.15588927268982,0.0015972866676748],[0.031289298087358,0.14923226833344,0.060790419578552]],[[-0.060359463095665,0.07674091309309,0.11146093159914],[-0.048174828290939,-0.01994295604527,-0.0037776462268084],[-0.01258101593703,0.038404982537031,0.063477016985416]],[[-0.0039320597425103,-0.033234514296055,0.062031097710133],[0.029973382130265,-0.066828362643719,-0.09442663192749],[0.010057244449854,0.049219906330109,-0.10841900855303]],[[0.032283458858728,-0.014524367637932,0.045779008418322],[-0.073969535529613,-0.086150854825974,-0.089629985392094],[0.043513659387827,0.10071805119514,0.016173243522644]],[[0.04272198677063,0.019075056537986,-0.043698977679014],[0.015825046226382,0.1238764077425,-0.027002418413758],[0.062179811298847,0.085934966802597,0.012882675044239]],[[-0.016925282776356,0.15965700149536,0.1502750068903],[-0.11434774845839,0.042153902351856,0.11545274406672],[-0.11968808621168,-0.047261219471693,0.026907123625278]],[[-0.062415827065706,0.055566150695086,-0.084742724895477],[0.21387021243572,0.048747796565294,-0.033518213778734],[0.1519410610199,0.043170850723982,-0.054576750844717]],[[-0.020157681778073,-0.042798899114132,0.04883499443531],[-0.1546934992075,-0.043168183416128,0.065989211201668],[-0.12082172930241,-0.11143025755882,-0.068969756364822]],[[0.0061403503641486,0.032528650015593,-0.10391538590193],[0.0064458991400898,-0.070140816271305,0.00054735637968406],[-0.023913202807307,0.0017053505871445,0.070831641554832]],[[-0.055842772126198,0.075856290757656,-0.006647770293057],[-0.0047229346819222,0.054295852780342,-0.067635878920555],[0.024921523407102,0.097212925553322,-0.0154342148453]],[[0.025023525580764,0.11854736506939,-0.0096182338893414],[-0.024808520451188,-0.067907884716988,0.098782517015934],[0.029969112947583,-0.036369044333696,-0.074855662882328]],[[0.091596305370331,-0.030940921977162,0.1153257638216],[0.098732873797417,0.10801634937525,-0.079877831041813],[-0.003568371757865,-0.037018276751041,0.041566703468561]],[[0.061839986592531,0.054422169923782,-0.031176844611764],[-0.0032127490267158,0.053746819496155,0.064985506236553],[0.11962667107582,-0.029359970241785,0.0026229517534375]],[[-0.054432600736618,0.013638149946928,0.067877091467381],[-0.079800769686699,-0.13071626424789,0.054302211850882],[-0.052462548017502,-0.062878794968128,-0.073181368410587]],[[0.023215813562274,-0.029123291373253,0.060068506747484],[0.067464098334312,-0.012315463274717,-0.022170547395945],[-0.10781183838844,0.068798065185547,0.062910139560699]],[[0.023908488452435,-0.17865270376205,-0.083488032221794],[-0.026386369019747,-0.011058701202273,-0.0096219275146723],[0.030425352975726,-0.046380892395973,-0.10582992434502]]],[[[-0.14878985285759,0.062088418751955,0.020909724757075],[-0.11407770216465,-0.042532902210951,-0.22905501723289],[0.0042181271128356,-0.0088664097711444,0.082360737025738]],[[0.065108358860016,-0.044052883982658,-0.11782105267048],[-0.034867182374001,0.13213139772415,-0.048798229545355],[0.054845541715622,0.070452012121677,-0.076692894101143]],[[0.11021369695663,-0.16675481200218,0.044682882726192],[-0.16001716256142,-0.14609609544277,0.098387144505978],[-0.011374551802874,-0.047790326178074,0.063359424471855]],[[-0.053403917700052,0.064220197498798,0.17007355391979],[0.047561455518007,-0.023045429959893,0.01631603948772],[-0.012721390463412,-0.20333190262318,0.062526151537895]],[[0.015624733641744,0.10185581445694,0.013570032082498],[0.038651164621115,-0.029591144993901,0.027931068092585],[-0.02937475964427,0.14237575232983,-0.085768312215805]],[[0.17877414822578,0.052804924547672,0.079583242535591],[0.19773833453655,0.0035485147964209,-0.08438665419817],[0.017121691256762,-0.29302203655243,-0.15238958597183]],[[-0.050860434770584,0.062112510204315,-0.013189264573157],[-0.014732368290424,-0.048194985836744,-0.12294685840607],[-0.03372860699892,0.017695512622595,-0.066569417715073]],[[-0.015769720077515,-0.036876488476992,0.018359120935202],[0.086872845888138,0.013042252510786,-0.043060604482889],[-0.012871361337602,-0.063956238329411,0.13601750135422]],[[-0.075197137892246,0.041268385946751,0.009506537579],[-0.14406131207943,-0.076465733349323,-0.038820654153824],[-0.22161862254143,0.076219499111176,0.13513420522213]],[[0.099224351346493,0.17630717158318,0.030380330979824],[0.04223819822073,-0.12024661898613,-0.053947288542986],[0.15745158493519,0.15598312020302,0.15486605465412]],[[-0.16604115068913,0.14870025217533,-0.13221324980259],[-0.12821733951569,0.11493825912476,-0.032012484967709],[-0.13452816009521,0.17521062493324,0.042015079408884]],[[0.12742331624031,-0.066263623535633,0.0087153818458319],[0.038607515394688,0.0049653220921755,0.0090246368199587],[0.08957751095295,-0.19460889697075,0.077371619641781]],[[0.029188862070441,0.015217096544802,-0.15421870350838],[-0.28588807582855,0.049262188374996,0.1587303429842],[0.076732531189919,0.10405886918306,-0.097901895642281]],[[-0.12543886899948,0.20462734997272,0.18032516539097],[0.041582506150007,-0.27260440587997,0.12306420505047],[-0.19976875185966,-0.19226707518101,-0.037660200148821]],[[0.11454503983259,-0.089422672986984,0.043295558542013],[-0.044306356459856,-0.0050767450593412,0.050149336457253],[0.034372124820948,-0.0086472732946277,-0.1037085801363]],[[0.036899503320456,0.054529905319214,-0.26577177643776],[-0.10294377058744,-0.043240107595921,0.040088854730129],[0.045681357383728,0.11346225440502,0.14716885983944]],[[0.046916235238314,-0.037877235561609,-0.0079593434929848],[-0.069027163088322,0.14827132225037,0.021741777658463],[-0.050915036350489,-0.063866153359413,-0.14019647240639]],[[-0.034870531409979,-0.11097624152899,0.078631684184074],[-0.14217233657837,-0.03160621970892,0.02255710400641],[-0.072544530034065,0.047678869217634,0.0551454462111]],[[-0.0064288121648133,-0.2273875772953,0.011081418953836],[-0.17119181156158,-0.081448465585709,0.1654546558857],[0.16927714645863,0.095063894987106,-0.11845231801271]],[[-0.034561987966299,-0.20111772418022,0.058247145265341],[-0.021447192877531,-0.099752627313137,-0.082220353186131],[-0.036897283047438,-0.14464730024338,-0.064183928072453]],[[0.26485958695412,-0.073109194636345,-0.12594230473042],[0.060724399983883,-0.15755678713322,0.016187189146876],[0.002591397613287,0.061745341867208,-0.11278624087572]],[[-0.073984757065773,-0.09435460716486,-0.011972790583968],[0.040236365050077,-0.27587729692459,0.029473219066858],[0.010158590041101,-0.11357873678207,0.1632699072361]],[[0.0027761147357523,0.0074230558238924,-0.076635383069515],[-0.088547877967358,0.15042908489704,0.027855997905135],[0.0068115266039968,0.041955720633268,-0.26466816663742]],[[-0.11806860566139,0.025271026417613,-0.095284707844257],[-0.052085194736719,-0.089562594890594,0.058740731328726],[0.021707883104682,-0.027487514540553,0.066721118986607]],[[-0.0083727324381471,0.0671441629529,0.09798326343298],[-0.17834961414337,0.022857993841171,0.047223869711161],[-0.16117702424526,0.082085601985455,0.066832222044468]],[[0.0026334058493376,0.13242723047733,-0.096498876810074],[-0.01937803439796,0.044505521655083,0.058139689266682],[-0.16621048748493,0.090452834963799,-0.083199687302113]],[[-0.095860548317432,0.067804984748363,0.0080847488716245],[0.010562954470515,0.0013665269361809,0.028704402968287],[-0.016184827312827,0.026670608669519,-0.003857048926875]],[[-0.0052525764331222,0.29073494672775,0.010964947752655],[-0.13019877672195,0.25341340899467,0.012563901953399],[0.011717410758138,0.19624848663807,0.050759147852659]],[[0.040278051048517,-0.12355824559927,0.0086014242842793],[-0.083346858620644,0.044938001781702,0.043844606727362],[-0.15656200051308,0.15360483527184,0.061034362763166]],[[0.020928602665663,0.017689432948828,0.043605800718069],[-0.21771942079067,-0.12832361459732,-0.014610735699534],[0.031498275697231,-0.10829473286867,0.11950522661209]],[[0.0049266410060227,0.041993450373411,0.17498585581779],[-0.049700826406479,0.06190200150013,-0.19537435472012],[-0.24058811366558,0.072826281189919,-0.093980349600315]],[[0.034519270062447,-0.060860309749842,-0.041797157377005],[-0.028559530153871,0.017947323620319,0.13791893422604],[-0.053464207798243,0.020311845466495,0.047605000436306]]],[[[0.069810330867767,0.056796453893185,-0.0037850546650589],[-0.0039239572361112,0.0042355214245617,-0.035550430417061],[-0.0067366538569331,0.089112304151058,-0.091659754514694]],[[-0.0009661897784099,0.016840230673552,0.027025155723095],[-0.02414727024734,-0.048756375908852,0.057419788092375],[-0.077413938939571,-0.072066240012646,0.07808318734169]],[[0.086398236453533,-0.018047746270895,0.033606227487326],[0.025781363248825,-0.019398633390665,-0.15592396259308],[0.17615701258183,0.049310158938169,-0.087402187287807]],[[0.016221394762397,-0.014026008546352,0.075515635311604],[-0.027867564931512,0.07793540507555,-0.081881143152714],[0.060038197785616,0.032401069998741,-0.080540850758553]],[[0.081299267709255,-0.0966881737113,-0.048264697194099],[-0.023787938058376,0.15410088002682,-0.037615794688463],[0.042633552104235,-0.031994305551052,0.004668852314353]],[[-0.075988672673702,-0.071886010468006,-0.0039792661555111],[-0.1017781496048,0.072041265666485,0.016607705503702],[-0.07532649487257,0.14248372614384,0.17188237607479]],[[0.13730454444885,-0.061287838965654,0.074357151985168],[0.067310079932213,-0.084390424191952,0.041745498776436],[-0.06676459312439,0.069412253797054,-0.030660001561046]],[[-0.010912708006799,-0.046486761420965,0.0027907921466976],[-0.10158357769251,0.039679206907749,-0.068768292665482],[-0.034265231341124,-0.065166279673576,0.063983075320721]],[[-0.049890249967575,-0.043087914586067,0.026410752907395],[0.0040917182341218,-0.053244177252054,0.062132846564054],[0.10200847685337,-0.068874299526215,-0.093919605016708]],[[0.11909481137991,-0.12356010824442,0.077347226440907],[0.048858135938644,-0.0037529969122261,0.093063063919544],[-0.072500042617321,-0.05397867411375,0.090269036591053]],[[-0.0021456144750118,-0.057919278740883,0.0077479016035795],[-0.0014097987441346,-0.15158967673779,-0.035606101155281],[0.049129299819469,-0.047395545989275,-0.072091981768608]],[[0.0069703599438071,0.071286469697952,-0.036206100136042],[-0.05973606929183,-0.073947913944721,0.048175189644098],[0.012692147865891,0.058831017464399,-0.076471276581287]],[[0.030735688284039,-0.08439477533102,-0.027133954688907],[0.10533966124058,-0.0075945206917822,-0.10620778053999],[0.040516875684261,-0.0047702118754387,-0.050320811569691]],[[0.077551402151585,-0.037046674638987,0.0028731485363096],[0.010492281988263,-0.050361648201942,-0.026431923732162],[0.030125005170703,0.034396808594465,-0.012945117428899]],[[0.0061493990942836,0.017215147614479,0.098138533532619],[0.082183949649334,0.055415071547031,-0.14252336323261],[-0.05180286616087,0.01772484742105,-0.12016539275646]],[[-0.21362635493279,-0.0089449649676681,0.12215158343315],[-0.022649265825748,0.01301237847656,0.11830952018499],[-0.13816250860691,0.042666956782341,0.073359750211239]],[[0.077803581953049,0.017133817076683,-0.00074751587817445],[0.027785612270236,-0.045582298189402,0.085197910666466],[-0.013326739892364,-0.041378077119589,0.047005623579025]],[[0.0046249427832663,-0.075596906244755,-0.059725251048803],[0.049290753901005,-0.012210290879011,-0.039876125752926],[0.14214432239532,-0.054800637066364,0.0082960063591599]],[[0.08543436229229,0.01127777993679,0.017051311209798],[-0.027319572865963,-0.0405208542943,-0.0043282289989293],[0.035244755446911,0.12550531327724,0.0064137019217014]],[[0.033166963607073,0.022097785025835,0.0048410664312541],[0.017141157761216,0.0043265125714242,0.034881696105003],[0.085166677832603,-0.098022520542145,0.12273370474577]],[[-0.092133268713951,0.084317713975906,0.03168236836791],[-0.1338214725256,0.076960995793343,0.098214477300644],[-0.11946572363377,-0.0031697773374617,0.055830467492342]],[[0.0059825861826539,0.10845738649368,-0.061285950243473],[0.025891875848174,0.10231149196625,-0.055259134620428],[0.17866890132427,0.062047339975834,-0.064765699207783]],[[0.054720427840948,0.031682536005974,0.094219654798508],[-0.11031295359135,-0.042822126299143,0.081038177013397],[0.12052182853222,-0.08900436013937,0.090332344174385]],[[0.073359966278076,-0.014033270999789,-0.016906276345253],[-0.032373070716858,0.019460916519165,0.072579234838486],[0.00025049946270883,0.05805840715766,0.037607487291098]],[[0.04165655374527,-0.015330940485001,0.063134007155895],[0.027642702683806,-0.19955991208553,-0.042846091091633],[0.04070134088397,-0.090957798063755,0.094089016318321]],[[-0.059203691780567,-0.048389934003353,-0.035670850425959],[-0.047219432890415,0.017971018329263,-0.071635365486145],[0.038619749248028,0.021273894235492,0.010339384898543]],[[-0.0028612338937819,-0.067684680223465,-0.038245212286711],[0.093344993889332,0.044517632573843,0.0048106475733221],[0.017011450603604,0.018545029684901,-0.10393260419369]],[[0.096914127469063,-0.14480493962765,0.046471960842609],[0.097065038979053,-0.081296719610691,-0.059837598353624],[0.1151929423213,-0.22968801856041,-0.031267069280148]],[[0.033279594033957,-0.075925156474113,0.037114467471838],[0.0057630226947367,-0.031178204342723,0.094571754336357],[-0.06706091016531,0.062136616557837,-0.12223006784916]],[[0.055717445909977,-0.063017442822456,0.02083638869226],[0.084948740899563,0.11136240512133,-0.017917970195413],[0.082009360194206,0.022364167496562,-0.053517561405897]],[[0.084016062319279,0.017452390864491,0.031778752803802],[-0.047514729201794,0.090848669409752,-0.16282103955746],[0.00014745032240171,-0.0021214459557086,0.023875681683421]],[[0.013336539268494,-0.015912402421236,0.01541686616838],[0.013631518930197,0.00068613287294284,-0.05993914976716],[-0.069650761783123,-0.017839889973402,-0.013791276142001]]],[[[0.10763707011938,0.071296788752079,0.065895564854145],[0.0433578081429,-0.26345571875572,-0.08256771415472],[0.0112184593454,-0.13811552524567,-0.062977366149426]],[[-0.055826552212238,-0.0080772992223501,-0.059591226279736],[0.11964743584394,-0.074871450662613,-0.040268529206514],[-0.0041055134497583,0.061714384704828,0.019370444118977]],[[-0.14912047982216,0.047024883329868,-0.014294076710939],[-0.16568885743618,-0.033291254192591,0.11809063702822],[-0.12101755291224,-0.079411454498768,0.024766098707914]],[[-0.062460105866194,0.13393965363503,-0.0096025485545397],[0.054650261998177,0.020360212773085,0.10958600789309],[0.0046144062653184,0.040208868682384,-0.06886225938797]],[[-0.024147791787982,0.049609795212746,0.10466719418764],[-0.061488069593906,0.10843046754599,0.064225539565086],[0.047838393598795,0.048217337578535,0.071000851690769]],[[-0.095094479620457,0.099700160324574,0.13320836424828],[-0.13497143983841,-0.05551665276289,-0.049111064523458],[0.13647438585758,-0.17058962583542,0.0075635905377567]],[[-0.067526839673519,0.068888194859028,-0.016769632697105],[-0.0053424993529916,-0.0078967371955514,-0.13542297482491],[0.19794410467148,-0.0067258337512612,0.04051610827446]],[[0.026458770036697,0.042369466274977,-0.016910951584578],[0.023606864735484,-0.0501270852983,-0.11467269808054],[0.01476960349828,0.13442109525204,-0.0012810539919883]],[[-0.099943868815899,0.036711450666189,0.12778340280056],[0.030649846419692,0.13320869207382,0.091803669929504],[-0.044500209391117,-0.0097345616668463,-0.0031683358829468]],[[0.069922052323818,-0.11838204413652,0.042164657264948],[0.1004853323102,0.040640611201525,0.096392795443535],[-0.0070281149819493,-0.069145813584328,0.037667687982321]],[[-0.10476939380169,0.046474482864141,0.072884552180767],[-0.029563600197434,0.040011890232563,-0.10678144544363],[0.017663592472672,0.019983675330877,-0.051641967147589]],[[0.072317771613598,0.18750694394112,0.056634124368429],[-0.077295616269112,0.032279461622238,-0.0018998275045305],[0.022912966087461,-0.026161348447204,0.06375277787447]],[[-0.024996913969517,0.0032745450735092,-0.044305313378572],[0.095854260027409,0.053407657891512,0.069281756877899],[0.0079511795192957,-0.0022608493454754,0.061967078596354]],[[0.14868393540382,-0.077436447143555,0.095984734594822],[0.024356944486499,-0.087615720927715,0.10465981066227],[-0.073089368641376,0.0088244052603841,-0.043383542448282]],[[0.045444879680872,-0.11469572037458,-0.0099623184651136],[0.041591130197048,-0.0051179062575102,-0.059408649802208],[0.040045965462923,-0.0092233642935753,0.11554849892855]],[[0.064341150224209,0.035879883915186,0.11627921462059],[0.034783452749252,0.020689295604825,0.093853391706944],[-0.1279314160347,0.025673303753138,0.029201004654169]],[[-0.080175533890724,0.020815769210458,0.02853424847126],[0.10420095175505,0.035535778850317,-0.00053324841428548],[-0.062980704009533,0.046090383082628,-0.073683843016624]],[[-0.017130050808191,0.052628189325333,0.015062128193676],[-0.083990029990673,0.14572939276695,0.10610245913267],[-0.079057082533836,-0.13380222022533,-0.022734755650163]],[[0.077402293682098,0.12822924554348,-0.22643049061298],[-0.007334666326642,0.03829562664032,0.0076591358520091],[0.11714112013578,-0.14366707205772,-0.13607403635979]],[[-0.1233938485384,-0.086255125701427,0.061057183891535],[0.027948910370469,0.018590657040477,-0.13671067357063],[0.1037934049964,0.021038668230176,0.054681785404682]],[[0.029562186449766,0.049183212220669,0.080736227333546],[0.005477333907038,0.044642060995102,0.01740376278758],[0.014311616308987,-0.083751380443573,0.1400523930788]],[[-0.011132749728858,0.11987493932247,0.20714925229549],[-0.11629592627287,0.026224186643958,0.055389638990164],[-0.13937091827393,0.063333317637444,0.020960308611393]],[[0.08895568549633,-0.091988302767277,0.15915237367153],[-0.027470448985696,0.01215850841254,-0.03816007450223],[0.047597277909517,-0.10887402296066,0.019956197589636]],[[-0.033884827047586,-0.098020724952221,-0.0055964644998312],[0.017591014504433,0.025389384478331,0.067234955728054],[0.0052116657607257,0.090798646211624,0.082339912652969]],[[-0.065529763698578,-0.055627685040236,-0.10428734868765],[0.20832690596581,0.029199784621596,-0.15811495482922],[0.073316931724548,0.065332487225533,0.060471694916487]],[[-0.015692241489887,-0.050132196396589,0.1034517660737],[-0.0017505328869447,0.034944415092468,-0.0065357545390725],[0.11279476433992,0.09271864593029,-0.11755552887917]],[[-0.043197225779295,0.09985987842083,-0.039761427789927],[-0.028131609782577,-0.064002588391304,0.080269895493984],[0.050642233341932,-0.0039132963865995,-0.020084597170353]],[[0.053349990397692,0.09430655092001,-0.14523071050644],[-0.064109697937965,-0.029028087854385,0.056022603064775],[0.089009553194046,-0.094226740300655,0.062153320759535]],[[0.0044404501095414,0.05032317340374,0.11955486238003],[-0.079269587993622,0.18246676027775,0.052480485290289],[-0.030990207567811,-0.064434573054314,0.095367297530174]],[[-0.010527940467,0.056149754673243,0.045954722911119],[-0.13136287033558,0.042872563004494,0.037594430148602],[-0.055003099143505,0.0011757676256821,0.070179596543312]],[[-0.098752878606319,-0.10306211560965,0.074098244309425],[0.021310610696673,-0.0009830720955506,0.073378838598728],[-0.038772117346525,-0.046497907489538,0.026588538661599]],[[-0.032047726213932,-0.11057058721781,0.035133361816406],[0.04008587449789,0.028610972687602,0.0062175332568586],[-0.0074164723046124,0.10030686855316,0.023344069719315]]],[[[-0.043907921761274,0.044398665428162,0.076564557850361],[0.02021512389183,-0.24573886394501,-0.020750882104039],[-0.034427434206009,0.033603884279728,-0.059528805315495]],[[0.0053512146696448,0.15295341610909,0.11183286458254],[-0.080575048923492,0.13578818738461,0.076661348342896],[-0.10981312394142,-0.10361301153898,-0.077777169644833]],[[0.0027690145652741,0.05651056393981,-0.1445294469595],[0.12137490510941,0.047399122267962,0.1789890229702],[-0.072515912353992,-0.011645973660052,-0.0031948839314282]],[[0.0049148513935506,0.087339080870152,-0.041738171130419],[-0.077931642532349,-0.23710772395134,-0.0054028080776334],[0.035607602447271,0.018317414447665,-0.046750392764807]],[[0.034286014735699,0.02389650605619,0.062072075903416],[-0.020080205053091,0.019363516941667,-0.091773450374603],[-0.050460200756788,-6.536538421642e-07,-0.083733811974525]],[[0.0074166366830468,0.010125315748155,0.025470934808254],[0.0044980105012655,-0.024670042097569,-0.090429693460464],[0.03223242610693,0.081335961818695,0.04166341945529]],[[-0.029852805659175,0.081991620361805,0.011807919479907],[-0.05296340957284,0.059813234955072,0.041687574237585],[-0.035553954541683,0.0059603708796203,-0.0082662058994174]],[[-0.02376745082438,-0.018550584092736,0.053036905825138],[-0.065098904073238,-0.033617243170738,-0.10467869788408],[-0.065393842756748,-0.09629113227129,-0.033429943025112]],[[-0.040417779237032,0.073075085878372,-0.027756862342358],[0.016546536237001,0.062955498695374,0.008859128691256],[0.035907801240683,0.052030049264431,0.011879642494023]],[[-0.095436945557594,0.11081026494503,0.071048177778721],[0.019743271172047,0.16875594854355,0.06006070971489],[-0.031458150595427,-0.069719508290291,-0.28861048817635]],[[0.054079964756966,0.13870976865292,-0.018496992066503],[0.026963897049427,0.15048265457153,-0.12512987852097],[0.050691056996584,0.062148462980986,-0.08315022289753]],[[-0.03597329929471,0.081714399158955,0.014854310080409],[-0.05501152575016,-0.028252385556698,0.029632676392794],[-0.1336165368557,-0.023660542443395,-0.022318618372083]],[[-0.071708805859089,-0.078067533671856,-0.098091833293438],[-0.04336528852582,0.078252635896206,-0.066878393292427],[0.01765189692378,-0.1087835803628,-0.04970682784915]],[[-0.028191667050123,0.096422620117664,-0.08900310844183],[-0.094200395047665,-0.052662804722786,-0.024270471185446],[0.072922356426716,-0.014137286692858,-0.046829912811518]],[[-0.0058704614639282,-0.010614078491926,-0.010230641812086],[0.0080260373651981,-0.10744013637304,0.039139464497566],[-0.022509740665555,-0.0323819629848,0.013962374068797]],[[-0.081159926950932,-0.13119533658028,-0.047088265419006],[0.066141083836555,0.074586935341358,-0.041265562176704],[0.051682516932487,0.038843590766191,0.040109559893608]],[[-0.0042067389003932,-0.050640467554331,-0.039134439080954],[-0.018630420789123,0.030246194452047,-0.044865250587463],[0.016498748213053,-0.084343634545803,0.047617375850677]],[[0.038015276193619,0.0016162628307939,0.0086215501651168],[-0.029812069609761,0.0340033210814,-0.043718960136175],[-0.021036118268967,-0.029123740270734,0.078007139265537]],[[-0.00051994144450873,-0.039993651211262,-0.018658677116036],[-0.013873808085918,-0.035404589027166,0.013768301345408],[0.010946299880743,-0.029439507052302,0.030456885695457]],[[0.051891412585974,0.049881216138601,-0.0066429823637009],[-0.017820540815592,0.051702883094549,0.044249150902033],[-0.076865337789059,0.014231299050152,-0.010773033834994]],[[-0.075273923575878,0.15601962804794,0.10392491519451],[-0.10333696752787,0.17247134447098,0.16006988286972],[-0.081405311822891,-0.046093292534351,-0.12447445839643]],[[0.13659575581551,-0.076407678425312,0.045941192656755],[-0.025140905752778,-0.047169648110867,0.090293802320957],[0.023750502616167,0.067098401486874,-0.14834870398045]],[[0.061621379107237,0.094296932220459,0.040489967912436],[-0.16925717890263,0.12897047400475,-0.049791432917118],[-0.10859075188637,0.082011446356773,0.18278183043003]],[[-0.012684191577137,-0.011003932915628,-0.013985891826451],[0.06654554605484,-0.10235273838043,-0.0066853002645075],[-0.034483350813389,0.04943622648716,-0.023296160623431]],[[0.057446096092463,0.051348336040974,-0.0089862029999495],[0.030861290171742,-0.022203728556633,0.03537293151021],[-0.052621643990278,0.041877303272486,-0.03327277302742]],[[0.020573660731316,-0.042221795767546,-0.030138099566102],[-0.0097521124407649,0.014134908095002,0.038437269628048],[-0.013090605847538,0.05360434576869,0.029711352661252]],[[-0.0054342127405107,-0.10825835168362,-0.044083338230848],[0.06276211887598,-0.00032206709147431,-0.082660354673862],[0.053851298987865,0.047690711915493,0.10089501738548]],[[-0.11650887876749,0.028546407818794,0.031826566904783],[-0.049929991364479,-0.05300809442997,0.13524501025677],[0.098043613135815,-0.094216004014015,-0.19497461616993]],[[-0.23944494128227,0.012552457861602,-0.044075310230255],[0.029291359707713,0.01775917224586,0.081224024295807],[-0.028655428439379,0.035613372921944,-0.022652219980955]],[[0.019827835261822,-0.11486902087927,-0.042873080819845],[0.072248749434948,-0.086589604616165,-0.038265649229288],[0.026952644810081,0.13185326755047,-0.053218517452478]],[[0.015474112704396,0.037314411252737,-0.014782996848226],[0.042682748287916,0.038135148584843,0.11160814762115],[-0.010061445645988,-0.051687549799681,0.046259518712759]],[[0.031903117895126,0.046108700335026,0.07618985325098],[-0.022884342819452,-0.10172419250011,0.012391995638609],[0.005315475165844,-0.0014827280538157,0.063908874988556]]],[[[0.039785366505384,-0.021630451083183,0.026285259053111],[0.019182097166777,0.11782030016184,-0.065313510596752],[-0.04298285022378,0.03934384137392,0.078219853341579]],[[-0.025517944246531,-0.017637446522713,0.11142133176327],[-0.019294960424304,0.057437818497419,-0.028635360300541],[0.08667254447937,-0.12525440752506,-0.017273690551519]],[[0.11649779230356,0.13592840731144,0.035238496959209],[-0.013296645134687,-0.02102248929441,0.0072325323708355],[-0.012221031822264,0.053184274584055,-0.10485375672579]],[[-0.12842008471489,0.066206634044647,-0.051104065030813],[-0.048261202871799,0.042056865990162,-0.062210977077484],[0.018807843327522,0.0010730600915849,-0.04423039034009]],[[0.028969988226891,0.019949447363615,-0.0064708692952991],[0.094748206436634,0.14112295210361,0.059179082512856],[0.11833254247904,0.12095427513123,0.089523240923882]],[[0.1048337072134,0.044551938772202,0.002511347644031],[-6.806175224483e-05,0.03270873054862,0.078145653009415],[0.18081015348434,0.027701573446393,0.035419538617134]],[[-0.0041706901974976,-0.023602390661836,0.011499440297484],[0.020388346165419,-0.05851673707366,0.066003553569317],[-0.095587268471718,0.0032499604858458,0.0066127767786384]],[[-0.014115325175226,0.028237566351891,0.043299976736307],[0.1356076002121,0.1449341326952,0.046059153974056],[-0.0042672231793404,0.0027100332081318,-0.029936421662569]],[[-0.067914314568043,0.10757824778557,-0.0092061217874289],[0.01898474805057,0.015812069177628,0.022990494966507],[-0.038824234157801,-0.025890111923218,0.060256108641624]],[[-0.06010952219367,-0.059255972504616,-0.054916635155678],[-0.017784874886274,-0.057950608432293,0.0039496780373156],[-0.0076206116937101,0.025385430082679,0.11748437583447]],[[0.098876804113388,-0.040837742388248,-0.032811999320984],[0.029291970655322,-0.0039817150682211,-0.1276514083147],[-7.3947834607679e-05,0.024901134893298,-0.058048322796822]],[[0.060349468141794,-0.028401246294379,0.039772871881723],[0.17439307272434,0.0042347027920187,-0.0050119920633733],[-0.0028114221058786,0.013935321010649,0.16242107748985]],[[-0.055275030434132,0.061680600047112,0.018479693681002],[0.011141020804644,0.057062197476625,-0.00023176975082606],[0.0013636550866067,0.055639863014221,0.0095568997785449]],[[0.047590233385563,0.02115117944777,-0.023442251607776],[-0.041209984570742,0.13625964522362,0.1161270365119],[-0.046337865293026,0.013217244297266,-0.02781255915761]],[[0.020298715680838,-0.097092494368553,0.051198378205299],[-0.040663618594408,-0.0025381546001881,-0.035420160740614],[0.0067386128939688,0.027421252802014,0.0083848489448428]],[[0.044843338429928,-0.027729902416468,-0.038383182138205],[0.040880482643843,-0.037963636219501,0.030766693875194],[0.17005182802677,-0.13483491539955,0.081593103706837]],[[0.078088261187077,-0.026748249307275,-0.0025554555468261],[0.0056762611493468,0.07532911747694,-0.043382603675127],[0.037517204880714,0.040456023067236,-0.05072233453393]],[[-0.0017101392149925,0.045510396361351,0.02609284222126],[0.011354049667716,0.15508861839771,-0.01448579877615],[0.044216830283403,0.13743640482426,0.053437955677509]],[[0.030999938026071,-0.0034314359072596,0.035349920392036],[0.04789312183857,-0.027519203722477,-0.07721720635891],[0.068236358463764,0.094979748129845,0.07985982298851]],[[0.038463480770588,0.03799406811595,0.018163550645113],[0.16322210431099,-0.036691263318062,-0.039782878011465],[0.16104915738106,0.061083868145943,0.11728613823652]],[[-0.12892296910286,0.047480996698141,0.1132892370224],[-0.052905183285475,0.013193787075579,0.047505594789982],[-0.11032707989216,0.037360139191151,0.019194573163986]],[[0.0049123791977763,0.040544651448727,-0.019104093313217],[0.11623600125313,-0.033861353993416,0.031014097854495],[-0.012074182741344,-0.10349217057228,-0.018243735656142]],[[-0.042322497814894,0.0054230997338891,0.013387940824032],[-0.072428002953529,0.07876954972744,0.22139266133308],[-0.19286149740219,-0.05845720693469,-0.017700020223856]],[[0.16512115299702,0.034776087850332,0.079116620123386],[0.11748623102903,0.1212304905057,0.1510861068964],[0.17944858968258,0.092889323830605,0.082613572478294]],[[-0.0070876572281122,0.015416353940964,0.09524030983448],[0.060838714241982,0.15271855890751,0.012303570285439],[-0.014388668350875,0.0068439501337707,0.0024231192655861]],[[-0.0099327536299825,0.0089592924341559,-0.031791243702173],[-0.016110565513372,0.057804144918919,0.091175124049187],[0.0070747486315668,-0.028700677677989,0.085681356489658]],[[0.16579505801201,-0.032908987253904,0.060068685561419],[0.010635665617883,0.0036348095163703,-0.099791243672371],[0.018247533589602,0.11265263706446,-0.028277449309826]],[[0.039820913225412,0.0064955074340105,-0.079086802899837],[0.084187291562557,-0.05324175208807,-0.060125485062599],[-0.10004770755768,-0.013835285790265,0.030247749760747]],[[0.10646798461676,-0.087189324200153,0.1086325570941],[0.046810057014227,-0.059948414564133,-0.1116908043623],[-0.06727223098278,0.012598313391209,-0.062845960259438]],[[0.073393739759922,-0.022345796227455,0.00041902816155925],[-0.060279067605734,-0.10803714394569,0.070925310254097],[0.030158979818225,0.13263738155365,-0.15339253842831]],[[0.0034071956761181,0.0053360164165497,0.026491647586226],[0.021125575527549,-0.02079550921917,-0.036899767816067],[-0.10380218178034,0.016519490629435,-0.045485109090805]],[[0.0045905415900052,0.015566693618894,0.0088620502501726],[0.10781302303076,0.15925632417202,0.0030853440985084],[0.028238346800208,-0.015933219343424,0.0026536076329648]]],[[[-0.043495919555426,0.0046387906186283,-0.062661498785019],[-0.13021595776081,-0.0040691518224776,-0.22174592316151],[0.045579843223095,0.14163742959499,0.04414951056242]],[[-0.043056178838015,0.050483837723732,-0.078557230532169],[-0.12913703918457,-0.05433252081275,0.09899015724659],[0.00056261423742399,0.065438352525234,0.053680833429098]],[[-0.018566355109215,-0.10263628512621,0.03785215318203],[-0.035125620663166,0.033047169446945,-0.026068771257997],[0.12341192364693,-0.11356372386217,-0.019013879820704]],[[0.030961327254772,0.016157457605004,0.092615254223347],[-0.15216442942619,-0.022114923223853,-0.077415481209755],[0.080376282334328,-0.078785106539726,0.10212419182062]],[[-0.057228982448578,-0.035205006599426,0.018281454220414],[-0.012928779236972,-0.051684632897377,0.14882926642895],[-0.0023194749373943,-0.039525989443064,0.00030005912412889]],[[0.014776629395783,-0.14311276376247,0.15107429027557],[0.23618818819523,0.021254451945424,-0.059421569108963],[-0.0036565095651895,-0.13923810422421,-0.090356715023518]],[[-0.062476184219122,0.032732091844082,0.11132886260748],[-0.09323862195015,0.058999788016081,-0.049896720796824],[0.066210053861141,-0.0045444192364812,0.079228356480598]],[[-0.059634670615196,-0.035746291279793,0.023852575570345],[-0.063508994877338,0.13987703621387,-0.064025156199932],[-0.31667566299438,-0.2296040803194,-0.00015489035286009]],[[0.034457985311747,0.014542343094945,0.047505863010883],[0.091057926416397,0.037291809916496,-0.033063653856516],[0.091452315449715,0.0063933888450265,-0.11595606803894]],[[0.073540732264519,0.054817959666252,0.028926042839885],[0.046198524534702,-0.017498321831226,-0.033333636820316],[0.14989174902439,0.10437452793121,0.058535255491734]],[[-0.089652940630913,0.034594971686602,-0.060061927884817],[0.046881306916475,-0.076929643750191,-0.010916216298938],[0.04377643764019,0.027524963021278,0.085911728441715]],[[0.1050141826272,-0.13530358672142,-0.065564565360546],[0.08739797770977,0.027734177187085,0.0065544187091291],[-0.06640363484621,-0.038702543824911,0.012111201882362]],[[-0.12324720621109,-0.0093758208677173,-0.20299887657166],[0.10306114703417,-0.10043274611235,0.027648171409965],[0.021770946681499,0.032667934894562,-0.26076653599739]],[[-0.29532510042191,0.18674844503403,0.067003846168518],[0.10187372565269,-0.086387977004051,-0.10990447551012],[0.095361582934856,-0.11942801624537,0.013499423861504]],[[0.11632709205151,-0.093048103153706,0.028278896585107],[-0.039826188236475,-0.14237321913242,-0.034917015582323],[0.038980565965176,0.029436962679029,0.010995739139616]],[[-0.042196970432997,0.0074278847314417,-0.12425321340561],[0.025888884440064,-0.13351193070412,0.030603859573603],[-0.080233387649059,-0.14254069328308,0.045124739408493]],[[-0.11786755174398,0.10426369309425,0.026077978312969],[-0.075307294726372,0.10574411600828,-0.0076763653196394],[-0.0073849568143487,-0.061443414539099,-0.045134160667658]],[[0.090988531708717,0.048656046390533,0.025008756667376],[-0.013661962933838,-0.17238853871822,-0.20757350325584],[-0.031881958246231,0.14236238598824,-0.0026562255807221]],[[0.004757849033922,0.023557776585221,-0.021575789898634],[-0.16497214138508,-0.023973520845175,0.092375680804253],[-0.20271876454353,-0.076824776828289,0.17836545407772]],[[-0.20928966999054,-0.020393272861838,-0.010306121781468],[-0.022017642855644,-0.022202020511031,0.051931899040937],[0.017048740759492,0.0074780690483749,0.055639158934355]],[[0.06786435097456,0.14003886282444,-0.026798758655787],[0.096454910933971,-0.053028929978609,0.0058865142054856],[0.025059079751372,0.10096754133701,0.10331592708826]],[[-0.016656780615449,-0.082721091806889,0.018038066104054],[-0.014094276353717,-0.12765391170979,0.11144204437733],[0.037882097065449,0.069550409913063,0.16500480473042]],[[-0.034130163490772,-8.0876372521743e-05,0.012034223414958],[0.050321012735367,0.025283632799983,0.072979919612408],[0.079611726105213,0.019947761669755,-0.082574144005775]],[[-0.02134825848043,0.0029691883828491,0.019606646150351],[-0.030687222257257,-0.14173543453217,0.06143594533205],[-0.08090864866972,-0.030228083953261,-0.0016664235154167]],[[-0.24741299450397,0.083361715078354,0.072962686419487],[-0.15593548119068,-0.094353511929512,-0.075305409729481],[-0.00096442899666727,-0.1460448205471,0.088509067893028]],[[0.05224322900176,0.077092729508877,-0.032562311738729],[0.16594032943249,0.060224983841181,0.028444211930037],[0.091082192957401,-0.082837484776974,-0.081310749053955]],[[0.0041766609065235,0.05672849714756,0.032022472470999],[0.041578616946936,-0.0037167423870414,-0.039500918239355],[-0.034297175705433,0.030255321413279,-0.096406742930412]],[[-0.095331892371178,0.26003473997116,0.090706989169121],[0.097175717353821,-0.073346711695194,-0.090765789151192],[0.24808238446712,-0.016632173210382,-0.094943195581436]],[[0.08049613237381,0.12022302299738,-0.032890349626541],[-0.004880306776613,0.067139618098736,-0.037095580250025],[0.030867919325829,-0.060086224228144,0.089408412575722]],[[-0.12403289973736,0.0012202084762976,0.042916260659695],[0.011148580349982,0.13101425766945,-0.040162064135075],[-0.0010655785445124,0.052560668438673,-0.11440625041723]],[[-0.061247419565916,-0.1459169536829,0.020334273576736],[-0.31700778007507,-0.0076871565543115,-0.0050780428573489],[-0.057984549552202,0.042163416743279,-0.10558976978064]],[[-0.038778249174356,-0.02186381071806,-0.039692845195532],[-0.11963374167681,-0.0058917077258229,-0.005070473998785],[-0.064670145511627,-0.15735706686974,-0.11912257224321]]],[[[-0.025374867022038,0.031028363853693,-0.05817374587059],[-0.043046768754721,0.11769222468138,0.033750560134649],[-0.051233865320683,-0.066631339490414,-0.070187889039516]],[[-0.025075912475586,-0.048822164535522,-0.018774507567286],[-0.0068082083016634,-0.043950758874416,0.087929181754589],[-0.085209652781487,0.088809363543987,0.015151981264353]],[[0.028300631791353,0.063864044845104,-0.02538800612092],[0.10472282022238,-0.11730900406837,-0.015764907002449],[-0.036524243652821,0.096708133816719,0.071645945310593]],[[-0.1016324236989,-0.12427309900522,-0.091411523520947],[0.074901431798935,-0.036993592977524,0.086277820169926],[0.064830712974072,-0.13269309699535,0.021586641669273]],[[0.10500292479992,0.0037906253710389,0.053400062024593],[0.0043678809888661,-0.10606827586889,-0.06043940782547],[-0.108293376863,0.018665922805667,-0.013280424289405]],[[0.12031579017639,0.060478083789349,-0.015957461670041],[0.15373203158379,-0.11778987199068,-0.0078735901042819],[0.0031349973287433,-0.073935501277447,0.09765686839819]],[[-0.077113896608353,0.15012365579605,-0.020565647631884],[-0.1219068095088,0.1260184943676,-0.018992556259036],[0.025830365717411,-0.12052647024393,0.017177717760205]],[[-0.012360855005682,0.058536227792501,0.00083456106949598],[-0.022164372727275,-0.039211425930262,-0.03099612891674],[-0.017575059086084,0.044609591364861,0.0021229137200862]],[[0.023481719195843,-0.052971199154854,0.13874693214893],[-0.02822027541697,0.066242851316929,0.17007631063461],[-0.11574662476778,-0.14532651007175,0.081251084804535]],[[-0.071895219385624,-0.014369351789355,0.13448552787304],[0.010730262845755,-0.035753335803747,-0.017847064882517],[0.009206609800458,-0.14647145569324,-0.023340737447143]],[[-0.098720103502274,0.016388446092606,-0.030651414766908],[-0.10967963188887,0.085480280220509,-0.057915437966585],[-0.0080469846725464,0.11662246286869,-0.052534934133291]],[[0.032449647784233,0.049405794590712,-0.014223855920136],[0.057284291833639,0.0019144034013152,-0.050018906593323],[0.078072972595692,0.006029381416738,0.045035984367132]],[[0.091097168624401,0.11532973498106,0.15621557831764],[0.12250063568354,0.06793799996376,0.0029946574941278],[0.057788658887148,-0.055290475487709,0.072644710540771]],[[0.024512754753232,-0.19411639869213,-0.0081314109265804],[-0.014660558663309,-0.014757420867682,0.032117377966642],[0.077134504914284,0.24902658164501,0.092166371643543]],[[-0.021347593516111,0.1009748056531,0.042254235595465],[0.012440822087228,-0.016034506261349,-0.018033327534795],[0.080128826200962,-0.00040986263775267,0.05728355050087]],[[0.15054903924465,0.0001048137419275,0.12632636725903],[-0.032865945249796,-0.09475314617157,-0.0079453093931079],[0.09027374535799,0.0099784256890416,-0.12322073429823]],[[0.056745838373899,-0.029003899544477,0.058305814862251],[-0.046864729374647,-0.18965953588486,0.06525531411171],[0.053046554327011,0.089695252478123,0.001908430014737]],[[0.091821685433388,-0.164596170187,-0.040741868317127],[-0.11656055599451,-0.015987604856491,-0.017829755321145],[-0.13806353509426,0.14230039715767,0.25201255083084]],[[-0.00390619575046,-0.21029026806355,0.15896508097649],[-0.068447761237621,0.033167686313391,0.020224148407578],[-0.069553568959236,-0.095678776502609,-0.061821725219488]],[[0.040793489664793,-0.094419330358505,-0.025478206574917],[-0.0033911655191332,-0.015521397814155,0.055795535445213],[-0.029600260779262,0.04751980677247,0.0055777202360332]],[[0.053695805370808,-0.048331212252378,-0.043977029621601],[0.086151219904423,-0.091678522527218,0.045644678175449],[0.057459678500891,0.023272849619389,-0.048534944653511]],[[-0.014837212860584,0.15976604819298,0.14355334639549],[-0.028289576992393,0.016708707436919,0.01784391887486],[-0.0028571994043887,0.085815347731113,0.10747671872377]],[[-0.013348185457289,0.064411491155624,0.074531197547913],[-0.035384830087423,-0.023822478950024,0.01663326844573],[-0.051744069904089,-0.068534359335899,-0.077392682433128]],[[0.063199937343597,-0.0012942138127983,0.11203517764807],[0.026748960837722,0.047507788985968,0.12325354665518],[-0.051703073084354,0.089130908250809,0.071844458580017]],[[-0.10952290892601,0.08861893415451,0.019234851002693],[-0.12448301911354,0.065911203622818,-0.11203673481941],[-0.020962502807379,-0.053768370300531,0.016543978825212]],[[0.090719260275364,0.13177247345448,-0.041370909661055],[0.012532206252217,-0.051606021821499,-0.069410763680935],[0.039755366742611,0.019345281645656,-0.032490413635969]],[[0.010722749866545,0.0011712161358446,0.016424953937531],[0.018063668161631,-0.016388844698668,-0.076286412775517],[-0.10325546562672,0.059092003852129,0.014962184242904]],[[-0.010438432916999,0.055528324097395,0.030954064801335],[0.031836789101362,0.092738583683968,0.013682408258319],[-0.17130029201508,-0.087758041918278,-0.07159573584795]],[[-0.11799874156713,0.028865167871118,0.013418465852737],[0.023827459663153,0.085267454385757,0.046098746359348],[-0.027210934087634,0.1022190824151,-0.036602567881346]],[[0.10021682828665,0.028677571564913,0.042545735836029],[0.040001001209021,0.029509037733078,0.03366918861866],[-0.02435414865613,0.010908918455243,0.080757036805153]],[[-0.023074517026544,-0.025908289477229,-0.0022759542334825],[0.27429234981537,0.13089206814766,0.024885622784495],[-0.025428423658013,-0.025519382208586,-0.13695788383484]],[[0.010215617716312,-0.10576515644789,-0.075402118265629],[-0.013171689584851,0.10948593914509,0.033142011612654],[0.066837437450886,-0.092495247721672,-0.019775129854679]]],[[[0.10712235420942,0.052326943725348,-0.10880511254072],[0.0032162240240723,-0.063990019261837,0.018254892900586],[-0.095551043748856,-0.010977674275637,-0.0026672249659896]],[[0.053285147994757,0.091108687222004,-0.02555400878191],[0.012676206417382,0.075669981539249,-0.11387047916651],[0.070940986275673,0.051373600959778,-0.089783221483231]],[[-0.084045827388763,-0.09739338606596,-0.054918292909861],[0.13284397125244,0.0098578808829188,-0.040241841226816],[-0.099343217909336,0.010969213210046,-0.0147888911888]],[[0.11420416086912,-0.023873392492533,-0.061945598572493],[-0.06862685829401,-0.099451802670956,0.01581228338182],[0.017075076699257,0.15971547365189,0.043712228536606]],[[-0.071768030524254,-0.10711511969566,-0.14714907109737],[0.024458918720484,-0.14021515846252,-0.11382894963026],[0.01088073477149,-0.17183880507946,0.048940565437078]],[[0.01399839296937,0.091029182076454,-0.021840861067176],[0.038189236074686,-0.023724218830466,0.030648762360215],[0.14029897749424,-0.090456031262875,-0.12981875240803]],[[-0.12639078497887,0.034341052174568,-0.03952556848526],[-0.044043779373169,-0.042927004396915,0.071857906877995],[-0.12355419993401,-0.047664739191532,-0.098376549780369]],[[-0.075698278844357,-0.044388599693775,-0.013056376948953],[-0.053046155720949,-0.063657060265541,0.080147095024586],[-0.040188539773226,0.041718617081642,-0.059414148330688]],[[0.039133135229349,-0.10909477621317,0.014390085823834],[-0.0068805958144367,-0.20661474764347,-0.10147438943386],[0.010991033166647,-0.10996195673943,-0.049182523041964]],[[0.073505662381649,0.06970501691103,0.061705626547337],[-0.021071877330542,0.086976207792759,0.16233062744141],[0.15915973484516,0.019082367420197,-0.043818838894367]],[[-0.069937497377396,-0.17603300511837,0.10345943272114],[-0.12625934183598,-0.11036565899849,0.022179735824466],[0.12604570388794,-0.04933625459671,-0.021593019366264]],[[0.12893404066563,-0.02379135414958,0.04834434017539],[-0.066358909010887,0.055094566196203,-0.014885175041854],[-0.097743384540081,0.086663007736206,-0.048783272504807]],[[0.11035187542439,-0.0099266823381186,-0.058663923293352],[0.039368759840727,-0.059775043278933,0.0078649763017893],[0.018843416124582,-0.11573167145252,0.10130490362644]],[[-0.0010837423615158,0.075287751853466,0.049601729959249],[-0.058837346732616,0.19706562161446,0.086582019925117],[0.085958831012249,-0.017864486202598,-0.16894534230232]],[[-0.0010598155204207,-0.10458930581808,0.063422836363316],[-0.14791411161423,-0.13890717923641,0.060406763106585],[0.05584579706192,-0.046771548688412,-0.041703261435032]],[[0.048803448677063,-0.0030195803847164,0.012072681449354],[-0.023424685001373,0.22502003610134,0.14106349647045],[-0.086440064013004,-0.13798010349274,0.093848064541817]],[[0.034369867295027,-0.090498559176922,-0.083049707114697],[-0.11496140807867,-0.032836496829987,0.010650143027306],[0.011388468556106,-0.086060144007206,-0.031756643205881]],[[0.077499255537987,0.054336089640856,0.11786680668592],[0.062690757215023,-0.087294101715088,0.037500157952309],[-0.094668447971344,0.0014894056366757,-0.057968471199274]],[[-0.11892668902874,-0.038452427834272,-0.062863804399967],[-0.11577808111906,-0.084435932338238,-0.026023937389255],[-0.022591700777411,0.10224434733391,0.033278446644545]],[[0.079760827124119,-0.0166688375175,-0.0016921481583267],[-0.12841388583183,0.11581156402826,0.005422486923635],[-0.064798809587955,-0.060259271413088,0.038775987923145]],[[0.17314091324806,-0.040863212198019,-0.12820385396481],[-0.045532006770372,0.030801851302385,-0.047481790184975],[-0.064442910254002,-0.10432884842157,-0.02547119371593]],[[0.056990280747414,-0.16052611172199,-0.1068869382143],[-0.018645623698831,-0.034849666059017,0.15728288888931],[-0.00054282095516101,0.08475748449564,0.09287966042757]],[[0.17553599178791,0.024587199091911,-0.096149809658527],[-0.096848987042904,0.28573626279831,-0.23308707773685],[-0.009709145873785,-0.01720299385488,0.1310056746006]],[[-0.1123033836484,0.072987221181393,-0.090890787541866],[-0.17335829138756,-0.094694130122662,-0.012952974066138],[-0.17982147634029,-0.056071203202009,-0.061848543584347]],[[-0.10720372200012,-0.057527113705873,0.16661606729031],[-0.0010648493189365,-0.089253321290016,0.056648667901754],[-0.13127572834492,0.10578129440546,-0.014650536701083]],[[-0.066907495260239,-0.11464653164148,0.08272822201252],[-0.10374906659126,0.033204086124897,0.0064547150395811],[-0.025287762284279,-0.056444495916367,0.089321345090866]],[[0.064098969101906,-0.033914785832167,-0.02042935974896],[0.040876064449549,0.075402773916721,-0.067553266882896],[0.041787851601839,-0.034485425800085,-0.057726569473743]],[[0.043646078556776,0.018423087894917,0.10134031623602],[-0.13251900672913,0.24257451295853,0.18843369185925],[-0.011500669643283,0.022042319178581,-0.029012532904744]],[[-0.10135260224342,-0.048636954277754,0.060400724411011],[0.10656836628914,-0.033928018063307,-0.084912002086639],[-0.081797875463963,0.0067951749078929,-0.073852866888046]],[[0.079259224236012,0.0003263178805355,-0.11024402081966],[0.055821463465691,-0.21435767412186,0.046909872442484],[0.054949715733528,-0.028808021917939,-0.089125156402588]],[[-0.14967194199562,0.041669335216284,0.001111846533604],[-0.011624586768448,0.0055668507702649,-0.099794737994671],[0.076456531882286,-0.06826513260603,0.056894987821579]],[[-0.03196119889617,-0.1216878220439,0.10249097645283],[0.003889825893566,-0.014742245897651,-0.0036844382993877],[-0.023318333551288,0.0058902427554131,-0.12274327129126]]],[[[0.042363882064819,-0.025446657091379,0.0054021961987019],[-0.0050909984856844,0.010260287672281,-0.18062105774879],[-0.030214479193091,-0.036717157810926,-0.10740856826305]],[[-0.034228701144457,-0.097061358392239,0.025974618270993],[0.023814462125301,-0.092245444655418,0.10246859490871],[0.028039494529366,-0.07868742197752,0.10206416249275]],[[-0.031425572931767,0.033061940222979,0.048346806317568],[-0.14646896719933,-0.034347213804722,0.081151403486729],[0.077040992677212,0.0291657615453,0.11262238770723]],[[0.054286483675241,0.043271757662296,0.035075020045042],[-0.070201352238655,0.015094923786819,0.01152329146862],[-0.093212209641933,-0.020293068140745,-0.080267861485481]],[[-0.083908841013908,0.048675585538149,0.18270130455494],[0.0077449064701796,-0.063756600022316,0.035814378410578],[0.042766187340021,0.0016495221061632,0.063652038574219]],[[-0.03586333617568,0.026913089677691,0.015570995397866],[0.00079132750397548,-0.056262888014317,-0.01956813596189],[0.065741419792175,0.0055579473264515,-0.041390873491764]],[[-0.069050870835781,0.060823410749435,-0.035594187676907],[-0.036679573357105,-0.18116672337055,-0.018252147361636],[-0.048138320446014,-0.034965064376593,-0.049891378730536]],[[0.00471624545753,0.010044623166323,-0.017639387398958],[0.021408203989267,-0.1871512979269,-0.052871737629175],[-0.01028292812407,-0.084503464400768,-0.07023436576128]],[[-0.0972019135952,0.073461547493935,0.11201296746731],[-0.088840201497078,-0.051586486399174,0.049868375062943],[-0.060677900910378,0.032449316233397,-0.10209448635578]],[[0.12817777693272,-0.13724090158939,-0.023507580161095],[-0.010079641826451,0.053972505033016,0.19869974255562],[-0.0024058881681412,0.17351604998112,0.11580779403448]],[[0.072615064680576,0.017110580578446,0.11822307854891],[0.030114056542516,-0.15400063991547,0.012051067315042],[-0.088298350572586,-0.078215077519417,0.0031410756055266]],[[-0.047322619706392,-0.06337883323431,0.056809414178133],[0.017500398680568,-0.036745686084032,0.018076485022902],[-0.079010717570782,0.00674694404006,-0.00035254363319837]],[[0.00016721116844565,-0.069333419203758,-0.038559813052416],[-0.22539231181145,0.071254022419453,0.036683466285467],[0.020642139017582,-0.095608629286289,0.0053166635334492]],[[0.057147372514009,-0.033063393086195,-0.0038526786956936],[0.07214130461216,0.073465995490551,0.0013354598777369],[-0.10046728700399,-0.040330171585083,-0.10541248321533]],[[-0.058570265769958,0.011890248395503,0.0026226593181491],[-0.023640861734748,-0.020566573366523,-0.087677523493767],[-0.0012536062858999,-0.0073875952512026,-0.027350060641766]],[[0.058768194168806,-0.050102394074202,-0.095985189080238],[-0.17205767333508,0.070709027349949,0.11895845085382],[3.492459654808e-07,0.11876661330462,0.15232217311859]],[[0.033933874219656,0.13145762681961,0.011261138133705],[-0.059262357652187,-0.04677689820528,-0.10303296893835],[-0.0031092008575797,-0.087090939283371,-0.16393484175205]],[[0.024976961314678,0.022029593586922,0.045932188630104],[-0.0098340436816216,0.081913039088249,-0.16598856449127],[-0.077840745449066,-0.023399828001857,-0.019175345078111]],[[-0.17299282550812,-0.17567878961563,0.0029330281540751],[-0.086261905729771,0.095180317759514,0.14366868138313],[-0.010574586689472,-0.029024045914412,-0.015583800151944]],[[0.0063234702683985,0.034771755337715,0.0050757615827024],[0.12251033633947,0.063749566674232,0.073123686015606],[-0.0012799740070477,-0.13168741762638,0.024180950596929]],[[-0.098473057150841,-0.037231478840113,-0.069528467953205],[-0.038860000669956,0.021129993721843,-0.054705340415239],[0.11357818543911,0.13560664653778,0.15985970199108]],[[-0.03047545813024,0.055653255432844,0.081525705754757],[-0.039776518940926,0.031881354749203,-0.095210894942284],[0.024894751608372,0.011829148977995,0.013240220956504]],[[-0.14741125702858,-0.012266272678971,0.16814751923084],[0.21315582096577,0.056621268391609,0.044117879122496],[0.11735904961824,-0.19461505115032,0.046995852142572]],[[0.071081422269344,0.043734557926655,0.012738818302751],[-0.020265461876988,0.0765246078372,-0.026513539254665],[0.056910682469606,0.0060401153750718,0.055726267397404]],[[-0.031898483633995,0.025122456252575,0.019404049962759],[0.02550245821476,-0.26573166251183,0.056879121810198],[0.02133603580296,-0.040132127702236,0.037575665861368]],[[-0.045199032872915,-0.035256944596767,0.10208339989185],[-0.033799864351749,-0.1562160551548,-0.058820158243179],[0.048906959593296,-0.016001291573048,0.0054541155695915]],[[0.1403516381979,0.043645024299622,-0.049858953803778],[-0.029176257550716,-0.044320795685053,-0.064334087073803],[0.011951457709074,0.022498885169625,-0.047672610729933]],[[0.16670553386211,-0.093685053288937,-0.095979832112789],[0.086722910404205,0.031926069408655,0.044657614082098],[0.09518788009882,-0.016451396048069,0.031125381588936]],[[-0.021052729338408,-0.10091726481915,-0.016796736046672],[-0.13495093584061,-0.0109922606498,-0.014449802227318],[-0.13724257051945,0.0029380724299699,-0.01088722422719]],[[-0.011923734098673,0.089093387126923,-0.029305862262845],[0.035446565598249,0.082057379186153,-0.034761186689138],[-0.036672044545412,-0.026490101590753,0.029824204742908]],[[-0.0044501996599138,-0.093559451401234,0.058027807623148],[0.075297497212887,-0.014842823147774,-0.046562045812607],[-0.01308995205909,-0.095404259860516,0.097564503550529]],[[-0.043632697314024,0.0080655012279749,0.074477694928646],[-0.017566928640008,0.047294918447733,-0.022129394114017],[0.046867717057467,0.10081196576357,0.0051514585502446]]],[[[-0.052196394652128,-0.066470108926296,-0.020663905888796],[-0.01853503473103,-0.032165188342333,-0.024360861629248],[-0.018438210710883,-0.045797009021044,0.013706738129258]],[[0.0052875629626215,0.15424944460392,-0.21516391634941],[0.0024613898713142,0.067182615399361,-0.083332486450672],[-0.0064719580113888,0.030571622774005,-0.011984966695309]],[[-0.031191552057862,-0.10983539372683,0.0036602728068829],[-0.17353515326977,-0.0033825265709311,-0.0065949554555118],[-0.14521273970604,0.037455141544342,-0.01960676163435]],[[0.088813036680222,-0.13120971620083,0.28003397583961],[-0.085439585149288,-0.058060593903065,0.088090054690838],[0.02873121201992,-0.022186668589711,0.0021951645612717]],[[0.017353819683194,-0.028860822319984,-0.017878033220768],[-0.030420493334532,0.070228226482868,-0.028104051947594],[0.059945702552795,0.0042961053550243,-0.0020006520207971]],[[0.17820060253143,0.13205111026764,-0.044528737664223],[0.14398841559887,0.054610349237919,-0.11057856678963],[-0.029235288500786,0.0080355294048786,-0.12225323170424]],[[0.042585883289576,-0.072304747998714,0.018794164061546],[-0.090008452534676,0.070108734071255,-0.21407197415829],[0.0071935248561203,0.070915281772614,0.050646815448999]],[[0.052394211292267,-0.10794273018837,0.061618957668543],[0.033316727727652,-0.042827963829041,-0.12123027443886],[-0.022150043398142,0.021220257505774,-0.03743140399456]],[[0.15084603428841,0.066497795283794,-0.09325484931469],[-0.0088746510446072,-0.02313881739974,-0.086150877177715],[-0.014749143272638,-0.068446934223175,-0.01014197152108]],[[-0.012246982194483,0.011656151153147,0.058176342397928],[0.12470689415932,-0.099510282278061,-0.093246094882488],[-0.023914696648717,-0.040018655359745,-0.0030112965032458]],[[-0.020813012495637,0.15514442324638,-0.19518940150738],[0.020063284784555,-0.11029710620642,0.071543142199516],[-0.11856419593096,-0.018051207065582,0.040185902267694]],[[0.035653166472912,-0.0019841857720166,-0.041281957179308],[0.047453638166189,-0.10943618416786,-0.0030359956435859],[0.067793689668179,0.00074216368375346,-0.040429282933474]],[[-0.10690413415432,0.049760084599257,-0.14742946624756],[0.0090071558952332,0.19324886798859,-0.054089188575745],[0.13535250723362,0.050580829381943,-0.022923305630684]],[[-0.16269247233868,0.0574058778584,0.0581672526896],[-0.046515569090843,0.039230942726135,0.092475011944771],[-0.059204611927271,-0.047733940184116,0.11838340014219]],[[-0.077693447470665,0.080246686935425,0.063142165541649],[-0.0017087224405259,-0.044467285275459,-0.097458943724632],[-0.015021278522909,-0.081177063286304,0.0089970557019114]],[[0.12538336217403,0.084814071655273,-0.0025819910224527],[-6.1990562244318e-05,0.10126542299986,0.010676430538297],[-0.055699836462736,0.065419115126133,0.086438864469528]],[[-0.062266696244478,-0.065218791365623,-0.26050826907158],[-0.023269779980183,0.013290987350047,-0.067595362663269],[-0.050495494157076,0.051243957132101,0.019521420821548]],[[0.054160550236702,0.02471324801445,-0.12208405137062],[0.031824324280024,0.03798384219408,-0.14981161057949],[0.014716242440045,-0.015897139906883,-0.023783478885889]],[[-0.06297617405653,0.070852689445019,-0.041915476322174],[-0.088156551122665,0.0075553273782134,-0.013410025276244],[-0.028210962191224,-0.014503107406199,0.022037174552679]],[[-0.010048934258521,0.05634094402194,0.0088555561378598],[-0.045288447290659,0.046764060854912,-0.23782747983932],[-0.015872741118073,-0.030678493902087,0.10174869000912]],[[-0.034482523798943,0.1889297068119,-0.16312709450722],[0.011647230945528,0.030874233692884,-0.11642803251743],[0.10839428752661,-0.10855684429407,-0.0052485927008092]],[[-0.18263778090477,-0.066636204719543,0.097110137343407],[0.05289800837636,-0.15858712792397,0.058738209307194],[-0.060961488634348,0.035459335893393,0.14359132945538]],[[0.011703593656421,0.047976236790419,-0.18107484281063],[-0.17194396257401,0.10205639153719,-0.21354141831398],[0.02079795114696,0.10722531378269,-0.13875038921833]],[[0.072129584848881,-0.18861332535744,-0.025296477600932],[-0.036195199936628,-0.029941262677312,-0.1407824754715],[0.016016118228436,-0.10680585354567,0.021889932453632]],[[0.009544282220304,-0.056022994220257,-0.0022619105875492],[-0.015017565339804,-0.033664733171463,0.050182472914457],[0.0082777552306652,-0.048121646046638,-0.077542386949062]],[[0.050728481262922,-0.11358540505171,0.051773108541965],[-0.013223844580352,-0.045352824032307,0.017422987148166],[-0.01622224599123,-0.056769665330648,0.0079888999462128]],[[-0.051684569567442,0.026102332398295,0.00042139415745623],[-0.072637662291527,0.050741292536259,-0.0036473958753049],[0.0060096657834947,0.050682362169027,-0.021453648805618]],[[0.058623928576708,0.25263345241547,0.1433098167181],[0.022301163524389,0.32335433363914,0.0030984436161816],[0.018640220165253,0.011417420580983,0.025042278692126]],[[0.016652017831802,0.11856985837221,0.08388539403677],[0.026330983266234,-0.076373174786568,0.010854665189981],[-3.2067749998532e-05,0.039223991334438,0.02136922813952]],[[-0.11567638814449,-0.090515047311783,0.19963094592094],[0.0020374064333737,0.04374323785305,0.039002239704132],[-0.0082639455795288,0.010355874896049,-0.055326979607344]],[[0.079772651195526,0.071362674236298,0.033509526401758],[0.012490540742874,-0.026413546875119,-0.14058616757393],[-0.0029016153421253,-0.042413927614689,0.00090345030184835]],[[0.13002994656563,-0.22030137479305,-0.006388271227479],[0.096989281475544,-0.066016286611557,0.028195977210999],[0.026979371905327,0.0048257582820952,0.0087892226874828]]],[[[-0.037353023886681,0.054703697562218,0.005370395258069],[0.028873926028609,-0.12917499244213,0.056109216064215],[0.056415658444166,0.038696099072695,-0.0035130504984409]],[[-0.035079497843981,0.0097249615937471,0.03339883312583],[-0.030845833942294,0.22298793494701,0.062929913401604],[-0.085598692297935,-0.017878575250506,0.018899718299508]],[[-0.01775018684566,-0.0042475746013224,-0.0035016082692891],[0.11485685408115,-0.14183117449284,0.051427207887173],[0.11146724224091,0.061748206615448,-0.07770873606205]],[[-0.070450372993946,0.0076846061274409,0.005014861933887],[0.10367637127638,-0.073395080864429,0.11667641252279],[0.015861447900534,-0.093699559569359,0.055306244641542]],[[-0.25455850362778,-0.063122875988483,-0.12603358924389],[-0.1307023614645,-0.021484930068254,-0.10198182612658],[-0.051716700196266,-0.0064364788122475,-0.076308459043503]],[[0.13381181657314,0.0019329049391672,0.014228622429073],[0.032243672758341,-0.11068069934845,-0.070125043392181],[-0.010585394687951,-0.20244413614273,0.044503189623356]],[[0.018288442865014,0.091471835970879,0.053138226270676],[0.090667396783829,0.072146236896515,-0.083398886024952],[-0.022291192784905,-0.016989329829812,-0.11834409087896]],[[-0.054401736706495,0.046066921204329,0.010282130911946],[-0.0279760081321,-0.1636871099472,-0.023807527497411],[0.028724065050483,0.0565773434937,0.04362491518259]],[[0.067431040108204,-0.03495742380619,0.035699002444744],[-0.010367771610618,0.10592120140791,0.043605662882328],[0.075606517493725,0.067900195717812,0.16671492159367]],[[-0.075262039899826,0.010068167001009,0.088270246982574],[0.03783280774951,0.16477687656879,0.040510721504688],[0.09381902217865,0.14450381696224,0.015889951959252]],[[-0.11053834110498,0.1710839420557,-0.13208001852036],[-0.020282717421651,0.021968280896544,-0.064148992300034],[-0.03009819239378,0.10012148320675,0.10568982362747]],[[-0.13744820654392,-0.29675689339638,-0.10340948402882],[-0.058459166437387,-0.20992560684681,-0.1349805444479],[0.0064709992147982,-0.046250876039267,0.065025396645069]],[[-0.066379234194756,0.012853795662522,-0.10902028530836],[-0.050103586167097,0.090769171714783,0.10640769451857],[-0.012748712673783,0.03640990704298,-0.18770554661751]],[[0.058232225477695,-0.040440090000629,-0.01319791097194],[0.033832546323538,0.0098161986097693,-0.0048034191131592],[0.057348810136318,-0.054280176758766,-0.082409843802452]],[[-0.029151963070035,-0.048364009708166,0.0014704331988469],[-0.028732936829329,0.20760111510754,0.18345202505589],[0.03829363361001,0.067188262939453,-0.02235228009522]],[[0.15010686218739,0.027734242379665,-0.083871960639954],[0.0013310513459146,-0.093780800700188,-0.0098390905186534],[0.17520758509636,0.0061265514232218,0.057282231748104]],[[-0.0024244501255453,0.071281604468822,0.029873095452785],[0.064262524247169,0.0082398103550076,0.0031642806716263],[0.024286104366183,-0.075531199574471,0.0057167499326169]],[[0.048631459474564,0.034456547349691,0.10925111174583],[-0.061536286026239,0.017470786347985,0.037099622189999],[0.0086845364421606,-0.085163459181786,-0.10705314576626]],[[0.21025584638119,-0.0063430825248361,0.03535034507513],[0.018901070579886,-0.028229784220457,0.010974967852235],[0.0652194917202,-0.066536828875542,0.039447251707315]],[[0.016538737341762,0.09239374101162,0.025803152471781],[0.023127358406782,-0.015025856904685,0.020486975088716],[-0.024190563708544,0.053957249969244,0.02239572070539]],[[0.12363395094872,-0.11223684996367,-0.051404505968094],[0.12750868499279,-0.25133633613586,0.012586981989443],[-0.0023787217214704,0.027563273906708,0.065650001168251]],[[-0.037320747971535,0.063580699265003,-0.12360940873623],[0.046148147433996,-0.093845292925835,0.025727562606335],[0.061584837734699,0.077082201838493,0.095551624894142]],[[-0.088791862130165,0.1805744767189,0.052180930972099],[-0.12447275221348,0.17017525434494,0.036107834428549],[-0.13308401405811,0.019309865310788,-0.011196967214346]],[[0.098888665437698,0.033881612122059,0.0607302300632],[-0.036427397280931,0.034519281238317,0.05875539034605],[-0.035004571080208,0.067483946681023,0.02228251285851]],[[0.032153967767954,0.13120655715466,-0.00074715720256791],[-0.049308456480503,0.077379465103149,-0.029502857476473],[-0.014246463775635,-0.045292485505342,-0.088605649769306]],[[-0.02256228402257,-0.041735138744116,-0.012222249060869],[-0.02797619625926,0.031308427453041,-0.016942717134953],[-0.010106034576893,0.011999082751572,0.071746915578842]],[[0.058515805751085,0.014884121716022,-0.051580898463726],[0.030555402860045,0.040519032627344,0.027822045609355],[0.0049620517529547,-0.038330126553774,-0.061906911432743]],[[-0.035828746855259,-0.01295424811542,-0.12770208716393],[-0.023888371884823,0.18533703684807,0.029683213680983],[-0.061859026551247,0.079959139227867,0.16083268821239]],[[-0.10980240255594,0.090359568595886,0.08478832244873],[-0.13251055777073,-0.058708015829325,0.014609857462347],[-0.14279575645924,0.11359685659409,0.020671140402555]],[[0.044833403080702,-0.016403771936893,0.002832998521626],[0.11171238124371,-0.060190714895725,0.041746273636818],[-0.076774835586548,-0.0090296510607004,-0.040195610374212]],[[-0.082380287349224,0.0024935295805335,0.038985755294561],[-0.059295874089003,0.035648185759783,0.064980618655682],[-0.013659991323948,0.074090093374252,0.019752720370889]],[[0.066942475736141,-0.051022887229919,-0.06677021831274],[0.03080621175468,-0.038790263235569,-0.085910737514496],[-0.03246433287859,-0.035917051136494,0.010335268452764]]],[[[-0.014297211542726,-0.10137394070625,-0.041062563657761],[0.053089752793312,0.047372106462717,0.024301951751113],[0.040634654462337,0.0064956448040903,-0.033307619392872]],[[-0.0070898877456784,-0.073584198951721,-0.08707632869482],[-0.025093426927924,-0.12443662434816,-0.096163369715214],[-0.10706359893084,-0.031246051192284,-0.066122755408287]],[[-0.0045658024027944,-0.02653544023633,-0.041988804936409],[0.040744546800852,-0.0071089435368776,0.043975479900837],[0.025263855233788,-0.071177661418915,0.038828525692225]],[[-0.024008115753531,-0.04992638528347,0.006220128852874],[-0.036998424679041,0.11677400767803,0.017087897285819],[-0.042896829545498,0.011871645227075,-0.0020561837591231]],[[-0.08779476583004,-0.10814867913723,-0.017481604591012],[-0.042523436248302,-0.093225039541721,0.019162775948644],[0.050193373113871,0.0093499105423689,-0.041604798287153]],[[-0.037403386086226,-0.023845719173551,0.061978910118341],[0.016384897753596,-0.021814662963152,-0.028498459607363],[0.042399533092976,0.081231191754341,-0.056279186159372]],[[0.047580365091562,0.034325018525124,-0.066899299621582],[-0.06617484241724,-0.03726839646697,-0.076851345598698],[0.066740252077579,0.016184421256185,0.073354788124561]],[[0.017261615023017,0.041226040571928,0.020007818937302],[-0.039677571505308,0.11549506336451,0.026932088658214],[-0.10991625487804,-0.082421913743019,0.0033442617859691]],[[0.01554408390075,0.0081404484808445,0.025121610611677],[0.014981832355261,0.0052635981701314,-0.078945308923721],[0.067197725176811,-0.069746628403664,0.011180347763002]],[[0.043385215103626,0.051219835877419,0.078304767608643],[-0.099897749722004,0.0018812499474734,-0.014562976546586],[-0.12845352292061,0.038996241986752,0.028652055189013]],[[0.055226143449545,0.0096237948164344,0.000175076405867],[-0.033526856452227,0.0037580002099276,-0.030694399029016],[-0.074428804218769,0.065817914903164,-0.0020106181036681]],[[-0.063764579594135,0.053939968347549,0.048937663435936],[0.016726771369576,0.040720567107201,-0.019982105121017],[-0.052292544394732,-0.078117348253727,0.042763635516167]],[[-0.021143905818462,0.033267222344875,0.11769209802151],[-0.052507363259792,-0.09405118227005,-0.026517884805799],[-0.059930995106697,-0.02223689109087,0.12613387405872]],[[0.061984907835722,0.053056079894304,0.011426786892116],[-0.022191364318132,-0.08650141954422,0.017875358462334],[-0.020102124661207,0.079994514584541,-0.096977017819881]],[[-0.039924740791321,0.0300527010113,0.056219253689051],[0.017096217721701,-0.023779658600688,0.061791501939297],[-0.063350729644299,-0.010880311951041,-0.027994906529784]],[[-0.051673039793968,-0.012361248023808,0.033631887286901],[-0.026555938646197,0.018839618191123,0.012929324060678],[0.034040592610836,-0.0090587148442864,0.00057150679640472]],[[0.032250292599201,0.027878658846021,0.02378948777914],[-0.024835841730237,-0.11796884983778,0.050036381930113],[-0.050007984042168,-0.018028309568763,0.070141434669495]],[[0.0047335275448859,-0.06514198333025,0.035483114421368],[0.036219000816345,-0.015669289976358,0.018731206655502],[0.018296191468835,-0.02361173927784,-0.016966791823506]],[[-0.037406355142593,0.12185388803482,-0.04891162738204],[-0.039355359971523,0.052188243716955,-0.092590436339378],[0.052418634295464,0.01069872174412,-0.0038796418812126]],[[0.032983183860779,-0.0066987061873078,0.00083420576993376],[0.10595647990704,-0.033618036657572,-0.01886123791337],[0.018334303051233,-0.047305107116699,-0.067408956587315]],[[-0.014959531836212,0.072673559188843,-0.010312674567103],[0.016586745157838,-0.058311894536018,-0.032075442373753],[0.086908832192421,-0.15475976467133,0.090971991419792]],[[-0.10591048002243,0.0059649832546711,-0.070678040385246],[0.10206375271082,0.047495421022177,0.026268489658833],[0.070324547588825,-0.012629947625101,-0.055220820009708]],[[-0.0050582666881382,0.042533542960882,-0.067637912929058],[0.048251483589411,-0.045805431902409,0.052050281316042],[0.082218565046787,-0.067461118102074,-0.040578320622444]],[[-0.10243508219719,0.055475603789091,0.0010095281759277],[-0.020633721724153,0.04286565259099,-0.013123171404004],[0.017654428258538,0.059324841946363,-0.029447607696056]],[[0.0050754575058818,0.013161563314497,-0.020785028114915],[0.056844111531973,0.099683530628681,-0.069938495755196],[-0.049623556435108,-0.0073350663296878,-0.048561684787273]],[[-0.05949567630887,-0.00090488546993583,0.0095331324264407],[0.030904958024621,0.01336867082864,-0.031653307378292],[-0.089839957654476,0.13232710957527,-0.0097098965197802]],[[0.06646866351366,0.053342629224062,0.055604923516512],[0.12355726957321,0.1392477452755,0.067781880497932],[-0.021202260628343,0.13315050303936,0.088314428925514]],[[0.067561186850071,-0.073582962155342,-0.075972937047482],[0.14486153423786,0.11033608019352,-0.075889892876148],[0.094522461295128,-0.069267362356186,-0.12429907172918]],[[0.066475905478001,-0.099893324077129,-0.033932026475668],[-0.0024273733142763,-0.056038908660412,0.11684218794107],[0.032584760338068,-0.052255041897297,0.022280123084784]],[[0.0079828146845102,-0.035429801791906,-0.0092424983158708],[-0.010894884355366,0.087477616965771,0.017421595752239],[0.074550203979015,-0.080028124153614,-0.002992526628077]],[[-0.047126218676567,-0.031086482107639,0.064130187034607],[0.016983544453979,-0.03672468662262,0.05396756157279],[-0.00084465718828142,-0.05971996858716,0.04277278855443]],[[-0.030420264229178,-0.1002114340663,-0.0019003482302651],[-0.025980537757277,0.0074440059252083,0.051686152815819],[0.0044060773216188,0.049591019749641,0.048986732959747]]],[[[-0.034728053957224,-0.059980019927025,-0.033926043659449],[-0.010111471638083,-0.070735409855843,-0.059044998139143],[-0.0098887635394931,-0.070088364183903,0.030439775437117]],[[0.0012912024976686,0.0015365543076769,-0.028823457658291],[-0.02893572114408,0.081041134893894,-0.14194047451019],[0.075561493635178,0.18081420660019,-0.057316780090332]],[[-0.10232882201672,0.030643872916698,0.017356298863888],[0.0085919108241796,-0.1586229801178,0.13900019228458],[0.010542795993388,-0.068816281855106,-0.047478944063187]],[[0.0064970906823874,-0.028038922697306,-0.038441568613052],[-0.0057682287879288,-0.079788021743298,0.043541178107262],[-0.045683041214943,-0.093263499438763,0.059678260236979]],[[-0.066746279597282,-0.13859625160694,-0.10673569887877],[-0.016271442174911,-0.031701814383268,0.037717778235674],[0.0069837034679949,0.033763576298952,-0.068976648151875]],[[0.016882948577404,-0.0069934693165123,0.033581495285034],[-0.014093725942075,0.017262443900108,-0.048854865133762],[0.047624263912439,-0.0231141038239,0.05577639490366]],[[0.023441094905138,-0.047697618603706,-0.048084136098623],[-0.046122688800097,-0.033335700631142,-0.057844650000334],[-0.016586516052485,0.0039299051277339,-0.0083577008917928]],[[-0.012074581347406,0.014991754665971,0.012513089925051],[0.020938746631145,0.045016415417194,0.049703616648912],[0.098491005599499,0.058438036590815,0.057698149234056]],[[-0.054361991584301,-0.017238253727555,0.11887693405151],[0.037126664072275,0.073217645287514,0.046439327299595],[-0.013040384277701,-0.023558806627989,0.020369110628963]],[[-0.13465787470341,0.031342022120953,-0.12228133529425],[0.036693144589663,0.090406566858292,-0.0094208074733615],[0.070929504930973,0.088312387466431,0.15996281802654]],[[-0.034508798271418,0.086528852581978,-0.0098144104704261],[0.012851592153311,0.043041568249464,-0.14365354180336],[-0.068485759198666,-0.035857059061527,-0.055427268147469]],[[-0.11965902149677,-0.038943096995354,-0.10462043434381],[0.059055808931589,-0.034294955432415,-0.13044087588787],[0.06436563283205,0.033508963882923,-0.17682664096355]],[[0.015838654711843,0.099904529750347,0.016880881041288],[-0.017066700384021,0.044224131852388,-0.075857177376747],[0.02227539382875,0.13612352311611,-0.040239743888378]],[[-0.02633785456419,0.01844622567296,-0.024513816460967],[0.11023931205273,0.090490952134132,-0.040388960391283],[-0.054977800697088,-0.08260640501976,-0.10494762659073]],[[-0.040609955787659,-0.017029993236065,0.025071695446968],[-0.033666450530291,0.016746450215578,0.076697237789631],[0.053939543664455,0.077471375465393,0.0045148185454309]],[[0.010410738177598,0.0096076726913452,-0.10197249799967],[0.056864969432354,-0.036668621003628,-0.0025542210787535],[0.11180222034454,0.035340208560228,0.05639411881566]],[[0.020682061091065,-0.004961630795151,-0.0059688542969525],[0.016484154388309,-0.048089530318975,-0.034185890108347],[0.026547852903605,0.041749857366085,-0.21185329556465]],[[-0.0078626312315464,-0.010121018625796,0.071976587176323],[0.020385397598147,-0.065614596009254,0.030608732253313],[-0.037326235324144,-0.025740705430508,-0.018332585692406]],[[0.045689892023802,-0.01015392318368,0.053440351039171],[0.08442397415638,0.061540696769953,0.044247891753912],[-0.0090808039531112,-0.099766418337822,0.035479493439198]],[[0.02414883300662,0.008603255264461,-0.0013100809883326],[0.0065007172524929,0.044710710644722,0.046270821243525],[-0.026378473266959,0.09845032542944,-0.051533773541451]],[[-0.04630171880126,-0.043860845267773,-0.042487651109695],[0.057254333049059,-0.059299603104591,-0.16251772642136],[-0.0269492007792,0.096106834709644,-0.20337557792664]],[[0.043440882116556,0.042002890259027,0.012821287848055],[0.10941114276648,-0.10379034280777,0.067110076546669],[0.010986031964421,-0.057638239115477,-0.078260585665703]],[[-0.15686099231243,-0.035847183316946,-0.029749920591712],[-0.11855790019035,0.031634666025639,-0.034631196409464],[-0.052647646516562,0.13673311471939,-0.20706413686275]],[[-0.021934946998954,0.06250386685133,0.0015338500961661],[0.048316042870283,-0.050515979528427,0.049226671457291],[0.054813995957375,0.065625585615635,0.084652505815029]],[[0.053176455199718,-0.005092503502965,0.033160034567118],[-0.062162701040506,-0.016961285844445,-0.04534662142396],[-0.010092092677951,-0.083403259515762,0.087470501661301]],[[0.049630407243967,-0.060123585164547,0.068635337054729],[-0.010225592181087,0.0048941853456199,-0.064416073262691],[0.059222392737865,-0.1059534996748,-0.15446770191193]],[[0.023724637925625,0.0099703287705779,0.024736551567912],[0.026710631325841,0.018464526161551,0.018065519630909],[-0.07977356761694,-0.055476617068052,0.0030425940640271]],[[-0.027767268940806,0.16030988097191,-0.26744559407234],[-0.0078311963006854,0.11146371811628,0.087509259581566],[-0.069697245955467,0.21736921370029,0.2015745639801]],[[0.0098053626716137,-0.036047205328941,0.038905866444111],[0.084490031003952,0.0021903715096414,-0.099414855241776],[-0.010566087439656,-0.019217289984226,-0.00036765143158846]],[[-0.052636932581663,0.053895756602287,0.054568260908127],[0.0080847460776567,-0.056500062346458,0.069501787424088],[-0.090999729931355,0.0096368249505758,0.077474094927311]],[[0.062114231288433,-0.055420283228159,-0.024824133142829],[-0.033049650490284,0.062578126788139,-0.094201758503914],[-0.025522239506245,0.020219510421157,-0.069901064038277]],[[0.019884770736098,-0.0090951332822442,0.0040213316679001],[-0.053228724747896,0.045169875025749,-0.01771136187017],[0.047990761697292,-0.026019297540188,-0.027692448347807]]],[[[0.14124222099781,-0.10730186104774,-0.070693619549274],[-0.031864773482084,0.12784212827682,-0.12263210117817],[-0.032460860908031,0.13979141414165,-0.017879851162434]],[[-0.014745470136404,-0.082485698163509,0.0084125157445669],[0.091861359775066,-0.020232608541846,-0.08536222577095],[0.058808196336031,-0.0058057652786374,0.040618855506182]],[[-0.080990873277187,0.1199367120862,0.11120148748159],[-0.057039517909288,-0.0085861310362816,-0.13937194645405],[-0.054862786084414,-0.10816173255444,0.091512739658356]],[[-0.012659573927522,-0.061848737299442,-0.0085723539814353],[0.017441974952817,0.010323897004128,-0.020029885694385],[-0.081150740385056,0.066504403948784,-0.044094510376453]],[[0.081107504665852,-0.047232873737812,0.053388200700283],[0.10138867050409,0.094760678708553,-0.090531289577484],[-0.035348262637854,-0.029197696596384,0.044403452426195]],[[-0.37447369098663,-0.22908629477024,0.04025037959218],[0.0079148774966598,-0.280616492033,-0.10809876769781],[0.27085727453232,0.074391283094883,0.14453534781933]],[[0.15741515159607,-0.011687517166138,0.026445608586073],[0.026653207838535,0.0014358925400302,-0.034140449017286],[0.10202368348837,-0.1056025326252,-0.028667762875557]],[[0.016061527654529,0.056570947170258,-0.099343217909336],[-0.18121998012066,-0.037136472761631,-0.17209914326668],[0.10057447850704,0.010881364345551,-0.0061675761826336]],[[0.054004799574614,-0.10145445168018,0.020943919196725],[0.10712770372629,-0.041838508099318,-0.073465473949909],[-0.01533673144877,-0.037617262452841,0.063953384757042]],[[0.066215239465237,0.082664608955383,-0.0051391599699855],[0.045555554330349,0.26304993033409,0.25177559256554],[-0.25344261527061,0.08251566439867,0.16136141121387]],[[0.055867694318295,-0.13970147073269,0.092957600951195],[0.025310941040516,0.13829676806927,0.078063152730465],[-0.13513939082623,-0.11550609767437,-0.18085622787476]],[[0.032994195818901,-0.18749597668648,-0.031256586313248],[0.1390138566494,-0.10146576911211,-0.01560977846384],[0.16931229829788,0.12775839865208,-0.027771431952715]],[[0.12114012241364,-0.017760572955012,0.0525515191257],[0.08000722527504,-0.022180425003171,-0.12009890377522],[0.015300843864679,0.04485535249114,-0.083164550364017]],[[-0.010292884893715,0.11266752332449,0.060270708054304],[-0.29010051488876,-0.039134055376053,0.20499481260777],[-0.11044519394636,-0.19192452728748,-0.009717795997858]],[[0.12558898329735,0.13780638575554,-0.044934533536434],[-0.0055527104996145,0.042589955031872,0.037062663584948],[0.010751804336905,0.027775749564171,-0.14653420448303]],[[-0.077370375394821,0.079971134662628,0.012533007189631],[-0.031770061701536,-0.042378898710012,0.16670845448971],[0.022028941661119,-0.13485996425152,0.18713730573654]],[[-0.071644119918346,-0.037195526063442,-0.00071462464984506],[0.094025388360023,0.013159248046577,-0.025598371401429],[0.029272489249706,0.056821636855602,-0.011514162644744]],[[0.026332827284932,0.011448818258941,-0.0036666104570031],[-0.078815959393978,0.077402718365192,-0.024591911584139],[-0.083726100623608,-0.1515084952116,-0.007882496342063]],[[0.26952391862869,-0.29784381389618,-0.12529167532921],[0.083857662975788,0.016554338857532,-0.011165210977197],[-0.079038321971893,0.10252964496613,-0.041108272969723]],[[0.019488729536533,-0.065934337675571,-0.020693434402347],[-0.028275268152356,-0.16344718635082,0.02771064825356],[-0.094568967819214,-0.10980681329966,0.026143856346607]],[[-0.050065197050571,-0.28090566396713,-0.11184418201447],[0.073289290070534,0.073662161827087,0.15607258677483],[0.061432335525751,0.016718501225114,0.058391481637955]],[[0.11920085549355,0.12576405704021,0.052495833486319],[-0.04864415153861,0.13222344219685,0.040542099624872],[-0.075648956000805,-0.024376027286053,-0.098808027803898]],[[0.086685873568058,0.10148191452026,0.053742717951536],[-0.041252203285694,-0.084873229265213,0.044858690351248],[-0.0042070872150362,-0.27667620778084,0.0039251251146197]],[[-0.089489966630936,0.10623072087765,-0.053056839853525],[0.0031447513028979,-0.076048940420151,-0.20417815446854],[-0.01751795783639,0.12359698116779,0.10785028338432]],[[0.0050527956336737,-0.028294151648879,0.056158300489187],[-0.075512230396271,-0.11275209486485,-0.17425613105297],[0.083571143448353,0.04661176353693,-0.054623071104288]],[[0.24759203195572,0.059362631291151,-0.0083137517794967],[0.02938736975193,-0.014949316158891,-0.18813939392567],[-0.092082649469376,-0.12159429490566,0.0064102406613529]],[[0.030134798958898,0.024791033938527,-0.020626932382584],[-0.060574002563953,0.066817209124565,-0.020284643396735],[0.030261289328337,-0.02336186543107,-0.013496317900717]],[[0.25209754705429,-0.030892487615347,-0.056020084768534],[0.11619435250759,0.14601136744022,0.11570365726948],[-0.15883453190327,0.038127530366182,0.063395075500011]],[[-0.038376182317734,-0.0053090425208211,0.050188776105642],[-0.13393387198448,-0.18856330215931,-0.010663192719221],[-0.044804252684116,0.0060571189969778,-0.13075953722]],[[0.073586046695709,0.087988518178463,-0.011469325982034],[-0.088818162679672,0.070912837982178,0.075204871594906],[-0.12468904256821,-0.062729164958,-0.028321404010057]],[[0.089065253734589,-0.028611743822694,0.071198314428329],[-0.096755526959896,-0.12709802389145,0.11202290654182],[-0.068506419658661,-0.081771478056908,-0.081893794238567]],[[-0.078399278223515,-0.13791480660439,0.0073588457889855],[-0.095770701766014,-0.10515858232975,0.030434152111411],[-0.029738632962108,-0.086612246930599,-0.01686335913837]]],[[[0.024906992912292,-0.0094331866130233,-0.10036913305521],[-0.039733428508043,-0.020509462803602,-0.013449653051794],[-0.030994648113847,-0.062431301921606,-0.066513553261757]],[[0.077999345958233,0.10435225069523,-0.014160661026835],[0.069614633917809,-0.056023765355349,-0.0075904317200184],[-0.012939653359354,-0.12837351858616,-0.016085706651211]],[[-0.00044945406261832,0.011158750392497,-0.043182414025068],[-0.035934373736382,0.054969511926174,0.02469939365983],[-0.14537788927555,0.07287060469389,0.083189487457275]],[[0.0046305111609399,-0.009875226765871,-0.0045767636038363],[-0.086503855884075,-0.0099090505391359,0.1332029402256],[-0.017128782346845,0.03775804117322,0.057825412601233]],[[0.049185231328011,-0.00020763544307556,0.081493750214577],[0.0046122930943966,-0.011531843803823,-4.3615720642265e-05],[0.0089197093620896,-0.035172935575247,0.024800006300211]],[[-0.045619074255228,0.0091854892671108,0.01949174515903],[0.10182239115238,-0.061761360615492,-0.042925171554089],[-0.063465088605881,-0.12247399240732,-0.0014083890710026]],[[-0.016976356506348,-0.014344691298902,-0.084715381264687],[-0.063423819839954,-0.076030813157558,0.081616409122944],[0.064498379826546,0.092990003526211,0.049159150570631]],[[-0.0065806079655886,-0.11974087357521,-0.032332859933376],[-0.10125982016325,-0.089632704854012,-0.038154006004333],[-0.079506605863571,-0.11778823286295,0.0009689224534668]],[[0.10385242849588,-0.06523972004652,0.0077526555396616],[-0.0077671483159065,-0.07090001553297,0.020957462489605],[-0.10131617635489,-0.15557965636253,-0.020660189911723]],[[0.030428066849709,0.068738013505936,-0.086383491754532],[0.14265818893909,0.014453599229455,-0.075629189610481],[-0.025904877111316,-0.047398298978806,-0.038070019334555]],[[-0.011457502841949,0.080747924745083,-0.14938959479332],[-0.1284975707531,0.086705707013607,-0.0057387426495552],[0.011574115604162,0.24350334703922,-0.21126566827297]],[[0.007811130490154,0.088287144899368,0.057860877364874],[-0.011133165098727,-0.061854306608438,-0.017341645434499],[-0.065797977149487,0.081196017563343,0.041991479694843]],[[-0.016760786995292,0.041042268276215,0.019810849800706],[-0.041254010051489,0.13857509195805,0.089021481573582],[-0.015731604769826,-0.017624333500862,0.021177280694246]],[[-0.056254774332047,0.029379846528172,-0.029417833313346],[0.033451862633228,-0.063970372080803,-0.028436159715056],[-0.017829395830631,0.099365793168545,0.05583656206727]],[[-0.037243463099003,-0.023513091728091,-0.01148980949074],[-0.023069750517607,0.0033607627265155,0.045591846108437],[-0.037727214396,-0.00068085570819676,0.033832523971796]],[[0.017520252615213,0.094183675944805,0.1525868922472],[-0.042144674807787,0.064812891185284,0.15900729596615],[0.067973218858242,0.11101068556309,-0.023555770516396]],[[-0.01419822871685,0.031483937054873,-0.0034679644741118],[-0.0093528414145112,0.11934091150761,-0.090578310191631],[-0.0054139238782227,0.097965814173222,0.23659145832062]],[[0.079141892492771,-0.024828609079123,0.0066921566613019],[-0.024775533005595,0.054713822901249,0.14532524347305],[-0.0090473834425211,-0.042179487645626,0.058758918195963]],[[-0.002891693264246,0.021825022995472,-0.086037650704384],[-0.0012242123484612,-0.098255828022957,-0.051374260336161],[0.055508777499199,-0.099658437073231,-0.045119255781174]],[[-0.014539680443704,0.034968543797731,-0.054755762219429],[-0.010978309437633,0.025606043636799,0.015565898269415],[-0.0055206953547895,0.098587930202484,-0.078739792108536]],[[0.080823056399822,0.011175828054547,-0.11164792627096],[0.11898695677519,-0.00655831489712,-0.12265176326036],[-0.024568010121584,-0.061815436929464,-0.0077129215933383]],[[0.04033936932683,-0.0018138474551961,0.032753758132458],[0.095568776130676,0.0730215087533,-0.034112296998501],[0.05901325494051,0.15714804828167,-0.068832725286484]],[[-0.020210981369019,0.098858460783958,-0.24796429276466],[0.053806275129318,-0.058145634829998,-0.075471319258213],[0.07478504627943,-0.010035908780992,0.15090262889862]],[[0.024910625070333,-0.097838126122952,0.011272616684437],[-0.0411646515131,0.16664843261242,-0.12208475917578],[-0.066103130578995,0.05269367992878,-0.012270950712264]],[[0.14353176951408,-0.021168043836951,0.027860507369041],[0.0036188040394336,-0.075562104582787,-0.037523310631514],[-0.045888621360064,-0.010554200038314,-0.083552770316601]],[[0.031822007149458,0.03048425540328,-0.012997282668948],[0.063499145209789,0.057461593300104,-0.063806749880314],[0.023548291996121,-0.018944781273603,-0.037217259407043]],[[-0.072514049708843,-0.023088725283742,-0.045575316995382],[-0.04214234277606,-0.067168161273003,0.11815770715475],[-0.012290669605136,0.062315911054611,0.12189540266991]],[[-0.035252343863249,0.075581647455692,0.094098553061485],[-0.0048540900461376,0.17773370444775,0.038323279470205],[0.20299881696701,0.10845063626766,-0.19667209684849]],[[-0.080479487776756,-0.05869933962822,0.035950317978859],[-0.059238497167826,-0.029615398496389,0.085087962448597],[-0.16362592577934,-0.055626109242439,0.052638560533524]],[[-0.023486563935876,-0.16189648211002,-0.044917907565832],[-0.026611849665642,0.002114781877026,-0.039157215505838],[-0.05205774307251,-0.040345590561628,0.0059235543012619]],[[0.070519469678402,-0.064329512417316,-0.036504723131657],[0.038867488503456,0.048603434115648,-0.065062187612057],[-0.010885385796428,-0.15685652196407,-0.024416586384177]],[[0.090384639799595,0.035643242299557,-0.097478143870831],[0.098415940999985,-0.35282927751541,0.16916072368622],[0.028752811253071,0.14897941052914,0.083218984305859]]],[[[-0.071322433650494,0.037417478859425,-0.023248631507158],[-0.075660265982151,-0.14303605258465,0.01142733823508],[-0.080035962164402,-0.093701474368572,0.026855669915676]],[[-0.025940699502826,-0.044193174690008,0.010324815288186],[-0.017060039564967,-0.062338672578335,0.10164307057858],[0.036337621510029,0.048759754747152,-0.050671901553869]],[[0.065257720649242,0.0064237448386848,0.14657041430473],[0.11254171282053,0.012501462362707,0.074150189757347],[-0.10476572811604,0.048696480691433,0.009293700568378]],[[0.01304096262902,0.075256556272507,-0.0050704996101558],[0.078583858907223,-0.026080891489983,0.020045531913638],[-0.013447692617774,-0.04703601077199,0.065285868942738]],[[0.03473836928606,-0.025918496772647,0.14645837247372],[0.0053692744113505,0.071510247886181,0.030739549547434],[0.042344827204943,-0.11453272402287,0.092237077653408]],[[0.051244832575321,0.086902149021626,0.090921871364117],[-0.0076046492904425,0.08677227050066,-0.2055548876524],[-0.10124945640564,-0.13804741203785,0.045696031302214]],[[0.089710213243961,0.041608799248934,-0.15049587190151],[0.039112910628319,-0.1126242429018,0.044133998453617],[-0.00085268152179196,-0.017706299200654,0.094219863414764]],[[0.071515195071697,0.017586164176464,-0.013190269470215],[0.012436025775969,-0.087125547230244,-0.010798088274896],[-0.06945338845253,0.079303808510303,0.01239066105336]],[[-0.092969991266727,-0.0099097974598408,-0.027857929468155],[-0.16377732157707,0.090152457356453,0.21854494512081],[-0.025298498570919,-0.037040065973997,0.048493407666683]],[[0.0098923221230507,0.052071213722229,0.075896546244621],[0.083217926323414,0.046624194830656,0.085191421210766],[0.18989773094654,-0.040209878236055,-0.033029656857252]],[[-0.043190278112888,0.069501101970673,0.040832903236151],[0.0090102655813098,0.016294695436954,-0.067144595086575],[-0.1601864695549,-0.041939444839954,0.11301666498184]],[[0.022488217800856,0.014786748215556,0.077211558818817],[-0.057008292526007,-0.004302435554564,0.00025704019935802],[-0.06523060798645,-0.044466644525528,0.15340954065323]],[[-0.12187096476555,0.01194638106972,0.048570960760117],[-0.064555868506432,-0.0068927062675357,0.1635023355484],[-0.14037980139256,0.058390986174345,-0.0013771280646324]],[[0.13035932183266,-0.03738159313798,-0.094112366437912],[-0.050670608878136,0.01387245580554,-0.38917201757431],[-0.086685366928577,-0.037386730313301,0.29053542017937]],[[0.14348940551281,0.13575041294098,0.030912090092897],[-0.075520738959312,0.017882978543639,-0.016801359131932],[-0.0060781100764871,-0.083915129303932,-0.028175344690681]],[[-0.021809428930283,-0.056144364178181,0.072660408914089],[-0.048328664153814,-0.11972721666098,0.0010654401266947],[0.018098447471857,0.07331757247448,0.1076038852334]],[[0.011819127947092,0.08105181157589,-0.067006506025791],[-0.01330626104027,-0.10433262586594,-0.32439279556274],[-0.085182309150696,-0.16792984306812,-0.064470842480659]],[[0.059344049543142,-0.016148323193192,-0.17428851127625],[0.22338825464249,-0.09387218952179,-0.12613862752914],[0.014600505121052,0.15456849336624,-0.10812415927649]],[[-0.079392321407795,-0.11425891518593,-0.13672904670238],[0.021800685673952,-0.12053776532412,-0.092261783778667],[-0.030049813911319,-0.18006770312786,0.053363442420959]],[[-0.028714004904032,0.0066664484329522,-0.0085623590275645],[0.12302893400192,0.042510069906712,0.022540582343936],[-0.0051492876373231,-0.12867917120457,-0.063455194234848]],[[0.018954919651151,-0.066751502454281,0.13117037713528],[-0.11815883219242,0.060525078326464,0.084237314760685],[-0.1343135535717,-0.18042816221714,0.077435791492462]],[[0.14725604653358,0.034019820392132,-0.031091181561351],[0.027444066479802,-0.05600243806839,0.18193134665489],[-0.095831394195557,-0.030727837234735,0.051986400038004]],[[-0.012914107181132,0.086314663290977,0.090872921049595],[-0.13275903463364,0.24540995061398,-0.13703563809395],[-0.017890658229589,0.011520070023835,-0.077566742897034]],[[0.074717305600643,0.082151629030704,0.12563063204288],[0.015439902432263,-0.043593376874924,-0.0077432598918676],[0.1449037194252,-0.091318219900131,-0.1283622533083]],[[-0.010272464714944,0.026996800675988,-0.06872846186161],[0.10320734232664,0.0088244453072548,-0.057848196476698],[-0.071676567196846,0.060107477009296,0.043833326548338]],[[0.0073696067556739,0.0050678607076406,0.00070346804568544],[0.029885778203607,0.07624789327383,-0.065351285040379],[0.070587798953056,0.055820558220148,-0.092649653553963]],[[-0.038895566016436,0.078650549054146,-0.0086104068905115],[-0.10809661448002,0.0076659368351102,-0.0063474206253886],[-0.026965390890837,0.065081872045994,0.059250961989164]],[[0.059602249413729,0.04184927046299,0.044025704264641],[-0.067413710057735,0.136643409729,0.0091575253754854],[-0.040217947214842,-0.054649136960506,-0.034206960350275]],[[0.078908756375313,0.080611564218998,0.0088256550952792],[-0.071700245141983,0.18673457205296,0.14286527037621],[-0.18487817049026,0.035200286656618,0.15096862614155]],[[0.038445323705673,-0.11537797749043,-0.049254655838013],[0.019803289324045,0.011119625531137,-0.18033085763454],[0.011005746200681,0.11154271662235,-0.078421294689178]],[[-0.17632146179676,0.21841169893742,0.1324128061533],[0.025157399475574,-0.034375354647636,0.048414073884487],[0.055013723671436,0.079084984958172,0.094641178846359]],[[-0.01963597163558,0.022099846974015,0.024624317884445],[0.1172194480896,0.14791929721832,-0.0018845846643671],[0.1521924585104,0.012784297578037,0.052968434989452]]],[[[0.077402830123901,-0.027731332927942,0.039596542716026],[-0.086251877248287,0.025605207309127,-0.044161975383759],[-0.089361742138863,-0.0073140440508723,-0.030213253572583]],[[-0.01905320212245,0.041234780102968,0.068369470536709],[-0.087652198970318,-0.093377955257893,-0.06923758238554],[0.11002427339554,0.010313373990357,0.041694778949022]],[[-0.045617312192917,-0.076280906796455,-0.054258141666651],[0.0063274228014052,0.10173331946135,-0.065791636705399],[-0.028799373656511,0.10828195512295,0.024065561592579]],[[-0.16139169037342,-0.11600887775421,-0.1928918659687],[0.019380705431104,-0.042992770671844,-0.058752089738846],[-0.0816700309515,-0.10124759376049,-0.019902296364307]],[[-0.00059857254382223,-0.025154691189528,-0.0069082034751773],[-0.00061856140382588,0.030664594843984,0.024593727663159],[0.071927487850189,-0.094113744795322,-0.011105376295745]],[[-0.033603545278311,0.10216644406319,-0.023201338946819],[-0.099606990814209,-0.022413641214371,0.010636015795171],[-0.090961463749409,0.00017287825176027,0.046339068561792]],[[-0.15705598890781,-0.1652921885252,-0.031395964324474],[0.11985117197037,0.12885825335979,0.13138750195503],[-0.2366316318512,-0.20576766133308,-0.0049939807504416]],[[-0.034976821392775,-0.071850702166557,-0.074641391634941],[-0.040456458926201,-0.10655424743891,-0.075798474252224],[-0.035721879452467,-0.15171228349209,-0.099679559469223]],[[0.00208525871858,-0.096153676509857,0.083377338945866],[0.008685695938766,-0.032542128115892,-0.074011966586113],[-0.035539045929909,0.035394970327616,0.047060843557119]],[[0.16631127893925,0.21277269721031,0.31639623641968],[-0.15507304668427,-0.1091293618083,-0.1431660503149],[0.41414859890938,0.0920430123806,0.25322988629341]],[[-0.14088539779186,-0.0057341256178916,-0.10815695673227],[0.059899747371674,0.0051326975226402,-0.0048294602893293],[0.019681170582771,-0.10182009637356,-0.021291309967637]],[[-0.014544887468219,0.018804639577866,0.08435382694006],[0.04445731267333,-0.0040508038364351,-0.061367556452751],[0.067775182425976,0.12271598726511,-0.041267868131399]],[[-0.083502776920795,0.092748075723648,-0.10510344058275],[-0.14870315790176,-0.021063966676593,-0.14199636876583],[0.04081355035305,0.23354235291481,-0.01528309378773]],[[0.0050090863369405,-0.1233739554882,-0.11932622641325],[0.13297647237778,0.074773065745831,0.32200780510902],[-0.20399536192417,-0.16204182803631,-0.22512240707874]],[[0.057086359709501,-0.099681176245213,0.020894316956401],[-0.03334529325366,0.11225394904613,-0.053641073405743],[0.062203772366047,0.011689373292029,0.0090080872178078]],[[0.11142109334469,0.15700942277908,0.11302895098925],[-0.18234801292419,-0.14241473376751,-0.15010024607182],[0.086409218609333,-0.0067259985953569,0.045488625764847]],[[0.078401684761047,-0.077559001743793,-0.055832773447037],[0.022072229534388,0.080280236899853,0.061433929949999],[0.11473032832146,0.025686305016279,-0.016451252624393]],[[0.0020334310829639,-0.060836743563414,0.011373250745237],[-0.2725116610527,-0.033140230923891,0.10906594246626],[-0.042003493756056,-0.072229035198689,0.16628497838974]],[[0.065553054213524,-0.014104556292295,0.14869876205921],[-0.14435563981533,-0.12716029584408,-0.022728761658072],[-0.07069244235754,0.083262614905834,0.036556299775839]],[[-0.057801011949778,0.012524056248367,0.0079678734764457],[-0.12056156992912,0.031346008181572,-0.062469884753227],[-0.1379933655262,0.030606226995587,-0.0064805643633008]],[[0.086926534771919,0.13235980272293,0.099383324384689],[-0.11572270840406,-0.17543134093285,-0.11733822524548],[0.12497565895319,0.059937175363302,0.0093743680045009]],[[0.095596000552177,-0.017926616594195,0.035002421587706],[-0.036103818565607,-0.15564854443073,0.10174859315157],[0.28395360708237,0.012962208129466,0.083975777029991]],[[0.049358107149601,0.16513320803642,-0.0082985907793045],[0.048723418265581,0.10458187013865,-0.035072859376669],[-0.16210417449474,-0.069625191390514,-0.11245135217905]],[[0.086932346224785,-0.037968505173922,0.11643192917109],[0.11592631042004,-0.19944390654564,0.066796414554119],[0.14480577409267,0.11786114424467,0.083554118871689]],[[-0.07215066999197,0.020365046337247,-0.061182871460915],[-0.15111587941647,-0.023785023018718,-0.15083844959736],[0.085442453622818,0.17514319717884,0.056859496980906]],[[-0.061663974076509,-0.10064045339823,-0.085931047797203],[0.11333464831114,0.067925594747066,0.071817733347416],[-0.069139651954174,0.027145830914378,0.038224682211876]],[[-0.018162570893764,-0.021129725500941,-0.062898248434067],[0.027148945257068,0.17765025794506,-0.016554502770305],[-0.05522757768631,0.022804692387581,-0.014191292226315]],[[0.21700482070446,0.082133233547211,-0.0035982069093734],[-0.11714896559715,0.0065639428794384,-0.1681245714426],[0.23207950592041,0.092925541102886,0.17438389360905]],[[-0.083885438740253,0.065661482512951,-0.0067902584560215],[0.067699939012527,-0.11930188536644,0.073732607066631],[-0.17995065450668,-0.031605798751116,-0.15066613256931]],[[0.06263106316328,-0.048542913049459,-0.075080506503582],[0.020492585375905,-0.084751114249229,0.047385208308697],[-0.012738453224301,-0.2440101057291,0.076368942856789]],[[-0.047577675431967,-0.038894239813089,-0.072669789195061],[-0.13193352520466,0.097229741513729,0.10596084594727],[-0.1682037115097,-0.10481426119804,-0.045039940625429]],[[-0.14793661236763,-0.035873584449291,-0.028063151985407],[-0.017629845067859,0.012423763982952,0.090946689248085],[-0.10419411212206,-0.066131137311459,-0.040227141231298]]],[[[0.024678539484739,-0.0020381836220622,-0.015625597909093],[-0.0649274289608,-0.007032725494355,-0.053630888462067],[0.010232470929623,0.0074632675386965,0.0014873025938869]],[[0.019132034853101,0.091621160507202,-0.078853107988834],[-0.017318872734904,0.045305918902159,-0.010787710547447],[0.075349137187004,-0.040824867784977,-0.040753532201052]],[[-0.0097112152725458,0.046363033354282,-0.05979423224926],[-0.076356895267963,0.052397359162569,0.038157988339663],[0.11569725722075,0.028645666316152,0.11958291381598]],[[0.049933549016714,0.018010517582297,-0.0066274716518819],[0.037048637866974,0.019804339855909,0.034383796155453],[-0.021326156333089,0.098732329905033,0.027224687859416]],[[-0.016079621389508,-0.016300730407238,0.10019677132368],[0.062352519482374,-0.014984854497015,0.076960802078247],[-0.055714961141348,-0.08950536698103,0.039386469870806]],[[0.044828586280346,-0.049756433814764,0.010419042780995],[0.059694781899452,0.129688590765,-0.052716616541147],[0.016623312607408,0.16932974755764,0.0995062738657]],[[0.013754175044596,0.013677484355867,0.019632944837213],[-0.017631633207202,0.0042686494998634,0.077203780412674],[-0.012220496311784,-0.029833553358912,-0.035667225718498]],[[0.07731781899929,-0.068491384387016,0.082778289914131],[0.051064409315586,-0.012604855932295,-0.021224062889814],[-0.12997137010098,0.037363778799772,-0.029723770916462]],[[0.030068254098296,-0.061115682125092,-0.020473388954997],[0.01151913497597,-0.05187788978219,0.028334418311715],[0.034846574068069,-0.070200979709625,-0.015522140078247]],[[0.099255092442036,0.088445961475372,0.054253734648228],[0.01211931463331,-0.021532081067562,0.013988610357046],[-0.093637205660343,0.052983459085226,0.053894992917776]],[[0.057751901447773,-0.038618881255388,-0.097697176039219],[0.02474313788116,-0.016904648393393,-0.044159863144159],[0.051939379423857,-0.078740812838078,0.029240066185594]],[[-0.041647113859653,-0.014152677729726,0.036879803985357],[0.13314643502235,-0.042748648673296,-0.08413415402174],[0.068354956805706,0.06936177611351,-0.033317033201456]],[[0.0027052434161305,0.009409730322659,-0.021150402724743],[-0.0053049181587994,0.002164255362004,0.020863397046924],[0.13890968263149,0.11756504327059,-0.0096698570996523]],[[0.014623941853642,0.090821124613285,-0.084006763994694],[-0.046994853764772,-0.039467565715313,0.059835329651833],[-0.018660014495254,-0.12575203180313,-0.072835341095924]],[[0.054889008402824,0.072122015058994,0.06244371086359],[-0.079269550740719,-0.061122313141823,-0.045735448598862],[-0.081077978014946,-0.0069799902848899,0.083078928291798]],[[0.1816999912262,-0.073201403021812,-0.18307393789291],[-0.0085714990273118,-0.046077262610197,-0.062645949423313],[-0.054146237671375,0.058776970952749,0.033426135778427]],[[0.023135583847761,0.074173077940941,0.06070663779974],[-0.029241051524878,0.1285295933485,0.097638390958309],[-0.055499278008938,0.054534409195185,0.063910417258739]],[[-0.043047178536654,0.022242868319154,0.10978606343269],[0.11338423192501,0.014461453072727,0.017255080863833],[-0.11538719385862,-0.020069887861609,0.10514041036367]],[[0.076851196587086,-0.021319534629583,-0.016216538846493],[-0.044263511896133,-0.0061532356776297,-0.126305565238],[-0.1264691054821,-0.082409203052521,0.15422886610031]],[[-0.027657659724355,0.0053882016800344,0.031741730868816],[0.025760101154447,-0.0121118882671,-0.071621410548687],[-0.003015247406438,-0.06469502300024,0.0049385195598006]],[[0.099091783165932,-0.042355697602034,-0.084209360182285],[0.0026876050978899,-0.026628436520696,0.056663833558559],[0.04276342317462,-0.01797217130661,0.088003426790237]],[[0.051076576113701,-0.062194135040045,0.011907101608813],[-0.1181566119194,0.047193229198456,0.031483992934227],[0.082292102277279,0.025137543678284,0.032864574342966]],[[-0.037437275052071,-0.088284835219383,-0.049812454730272],[-0.073316559195518,-0.026859389618039,0.059166807681322],[-0.046015452593565,0.08418370038271,0.094040900468826]],[[-0.0086839767172933,0.031125487759709,-0.02942181751132],[0.012795656919479,0.03678485751152,0.03074767999351],[-0.046458899974823,-0.16691686213017,0.096098832786083]],[[-0.054487101733685,-0.029802037402987,-0.11147081106901],[0.0084435446187854,0.14327436685562,-0.1254980713129],[0.0041027739644051,-0.066574722528458,0.035704605281353]],[[-0.038795810192823,0.047567594796419,0.0091865779832006],[0.013448123820126,0.075734294950962,0.012824029661715],[0.089187651872635,-0.082017414271832,-0.0082154301926494]],[[0.0087264580652118,-0.050725977867842,0.062417715787888],[-0.038634747266769,-0.012564939446747,0.04209965094924],[-0.042882200330496,0.0061986674554646,-0.016027888283134]],[[-0.073406413197517,0.027385048568249,-0.052764236927032],[0.041178580373526,0.096122570335865,-0.13632969558239],[0.12247819453478,0.08178573101759,-0.077528700232506]],[[-0.023996097967029,-0.1055628657341,-0.049636892974377],[-0.11491269618273,0.05405917391181,-0.017274497076869],[0.033072598278522,-0.15347862243652,0.14166386425495]],[[0.0416394546628,-0.084996931254864,-0.1045383438468],[-0.12146832048893,0.0020199397113174,0.024565994739532],[0.011341630481184,0.014682780951262,0.0734948143363]],[[-0.069788470864296,-0.0033555992413312,0.098625004291534],[0.084667697548866,0.014473249204457,-0.031467664986849],[0.099652178585529,0.084844119846821,0.019019190222025]],[[-0.012920741923153,0.022712793201208,0.014504699036479],[-0.016379939392209,0.020628217607737,0.020216442644596],[-0.070543795824051,0.014990270137787,-0.11399379372597]]],[[[-0.066748008131981,0.032725017517805,0.037678949534893],[-0.034174300730228,0.031713519245386,0.057566799223423],[0.019080882892013,0.10048924386501,0.0346504971385]],[[0.03181205317378,0.03925309330225,-0.0051595885306597],[-0.12007232010365,0.16674818098545,0.069419950246811],[-0.18670669198036,0.027650272473693,-0.088876865804195]],[[0.049363173544407,0.087244234979153,0.063372246921062],[-0.023910006508231,0.04916775226593,0.11756186187267],[0.11573155969381,-0.068077571690083,0.05962623283267]],[[0.011576031334698,0.011291203089058,0.064928762614727],[-0.080401167273521,0.042992599308491,0.089675106108189],[-0.072217784821987,-0.061153873801231,0.034650031477213]],[[-0.05985751748085,0.086756207048893,-0.019817057996988],[0.0003755846992135,-0.15814469754696,0.0025904616340995],[-0.019183741882443,0.049078918993473,0.06391503661871]],[[0.21525450050831,0.069812029600143,0.010966898873448],[0.025164648890495,0.12279872596264,-0.079617887735367],[0.023615140467882,0.025465451180935,0.12595966458321]],[[-0.088824108242989,0.0030725146643817,-0.013953314162791],[-0.038501083850861,-0.031355030834675,-0.0070032067596912],[0.029259711503983,0.06707352399826,0.02167047187686]],[[-0.027360027655959,0.0092085627838969,0.022748842835426],[0.021287018433213,-0.091492891311646,-0.011566327884793],[-0.065983325242996,0.080492570996284,-0.034987512975931]],[[0.06093380227685,0.034535672515631,0.018664101138711],[0.023418866097927,0.024655958637595,0.076092675328255],[-0.1032150387764,0.019518505781889,0.065402947366238]],[[-0.063185162842274,0.19759882986546,-0.0022353420499712],[-0.016107337549329,0.18704076111317,0.10028500854969],[0.00047165947034955,-0.021633047610521,0.046458326280117]],[[-0.13278920948505,0.072243548929691,0.040701907128096],[-0.0064585083164275,0.01642788015306,0.030165389180183],[-0.086628451943398,0.014127567410469,0.082385562360287]],[[-0.070283241569996,-0.031696986407042,-0.0021596825681627],[-0.18307191133499,0.018726116046309,0.1313483864069],[-0.10353218019009,-0.0025153511669487,0.074126407504082]],[[-0.080929346382618,0.068607725203037,-0.01741673797369],[-0.00046692258911207,-0.030360480770469,0.060996353626251],[-0.049312572926283,0.012390623800457,-0.070563472807407]],[[0.03668162599206,-0.096417941153049,-0.1506190598011],[0.028264563530684,0.10089818388224,0.021117666736245],[0.12019054591656,-0.0060034897178411,-0.095632307231426]],[[0.032284781336784,-0.009654963389039,-0.01516932155937],[-0.057266637682915,-0.019119221717119,0.027572862803936],[0.026164773851633,-0.062604174017906,-0.020668122917414]],[[0.15110616385937,-0.023634821176529,0.041035678237677],[0.039641629904509,0.057023294270039,0.023661071434617],[0.12953172624111,0.076210893690586,-0.011341029778123]],[[-0.051516883075237,-0.053673509508371,-0.010384463705122],[-0.042044896632433,0.032078243792057,0.10266871750355],[0.1105145663023,0.028376821428537,0.02309082262218]],[[0.034355722367764,-0.014185051433742,-0.085233673453331],[0.02397895604372,-0.038637105375528,0.013594405725598],[0.038558512926102,0.0024607747327536,0.065764375030994]],[[-0.010779755190015,-0.098609879612923,0.038914989680052],[-0.045187320560217,0.016422510147095,-0.049188129603863],[0.10453151166439,-0.024816961959004,0.044053521007299]],[[0.028105676174164,0.079378165304661,0.026364542543888],[0.025223223492503,0.045423705130816,0.0064893667586148],[0.034749187529087,0.076561249792576,0.032162196934223]],[[0.10733435302973,-0.10392627120018,0.069355651736259],[0.035742565989494,0.17251394689083,0.20700414478779],[-0.10410133749247,0.031930144876242,-0.083740726113319]],[[-0.0091835297644138,-0.069013327360153,0.013540709391236],[-0.0087076537311077,-0.10712891817093,0.13072481751442],[0.043590195477009,0.10016041994095,-0.12334471940994]],[[-0.10441590100527,0.2285203486681,0.18633706867695],[-0.028890442103148,0.14431695640087,-0.064497038722038],[-0.2671255171299,0.25234574079514,0.016368864104152]],[[0.075411155819893,0.057524990290403,0.035366777330637],[-0.021146224811673,0.084381453692913,-0.021775882691145],[0.047708094120026,-0.034051399677992,0.062984853982925]],[[-0.026790576055646,0.11362773180008,-0.057119101285934],[-0.045879650861025,0.031646054238081,0.049543131142855],[-0.094171531498432,-0.063731253147125,-0.12243489176035]],[[-0.15080671012402,-0.052480783313513,-0.10440761595964],[0.097256220877171,-0.11371486634016,0.054237727075815],[0.10346575081348,0.095649302005768,-0.037142362445593]],[[0.05139672383666,-0.011174232698977,-0.066450349986553],[-0.035633612424135,-0.10972944647074,0.025020496919751],[-0.011927312240005,0.17443263530731,-0.045892536640167]],[[-0.09545674175024,0.10560295730829,-0.069822832942009],[-0.042563892900944,0.067632384598255,0.11084601283073],[-0.10059725493193,-0.13737034797668,0.063503593206406]],[[-0.025261351838708,0.094299666583538,0.024206908419728],[-0.028042363002896,0.047814544290304,0.12260798364878],[-0.060368128120899,0.0062704375013709,0.0015565764624625]],[[-0.030032260343432,0.050618886947632,0.015561542473733],[0.1547377705574,0.061632949858904,-0.0078356694430113],[0.029228981584311,0.02787421643734,-0.011247953400016]],[[-0.035137481987476,0.0077375443652272,0.061139404773712],[0.040771845728159,0.079480275511742,0.068799450993538],[-0.025961114093661,-0.10296529531479,0.016992729157209]],[[0.025652667507529,0.077708810567856,0.011157440952957],[-0.10945501923561,-0.018201051279902,-0.004986213054508],[-0.026849713176489,-0.0053521916270256,-0.044737484306097]]],[[[-0.011372573673725,-0.10249423980713,0.044878177344799],[0.017053166404366,-0.08149529248476,-0.0040786559693515],[-0.087819136679173,-0.066841393709183,-0.10068243741989]],[[0.019661201164126,0.10936640948057,0.1016790792346],[-0.047585010528564,0.0042730704881251,-0.04364638030529],[-0.024220900610089,-0.12248757481575,-0.025807367637753]],[[-0.015768561512232,0.044124342501163,-0.076947599649429],[0.026966519653797,0.08490177243948,0.075567089021206],[0.015369999222457,0.11014949530363,0.070446528494358]],[[-0.031968224793673,0.0085879797115922,-0.015986891463399],[0.022760443389416,-0.0090516395866871,-0.068262510001659],[0.047117292881012,0.13741809129715,0.097705475986004]],[[0.02711676992476,0.016670132055879,0.05767048150301],[0.081949919462204,-0.019088355824351,-0.020059518516064],[-0.022355554625392,0.079425625503063,-0.040010064840317]],[[0.002673699054867,0.048353776335716,0.014742977917194],[-0.035747859627008,0.046033430844545,0.0012161054182798],[0.043175589293242,-0.085788823664188,0.062511011958122]],[[-0.033627603203058,0.087529949843884,0.072804033756256],[-0.034781571477652,-0.040638275444508,0.041441671550274],[0.045590300112963,0.024715665727854,-0.022411189973354]],[[0.029019188135862,-0.0083491243422031,0.096562303602695],[-0.18775044381618,-0.10675149410963,-0.025995874777436],[-0.34160774946213,-0.29403305053711,-0.021510319784284]],[[0.027129782363772,0.068921692669392,-0.04557117074728],[-0.05662402138114,-0.00055077637080103,0.0015493547543883],[0.034598182886839,-0.029541939496994,0.040245980024338]],[[0.10618806630373,0.056961644440889,0.025881500914693],[0.039858549833298,0.0059859449975193,0.077010326087475],[0.13366281986237,0.029970031231642,0.086139157414436]],[[0.033243682235479,-0.03400145471096,-0.078668393194675],[0.20632024109364,0.027762215584517,-0.043137591332197],[0.077089846134186,-0.002989379921928,-0.014700344763696]],[[0.05718420445919,-0.0077949380502105,-0.030271584168077],[0.095544204115868,0.088887639343739,0.043595016002655],[-0.14717720448971,0.032562296837568,-0.0037802755832672]],[[-0.083102442324162,0.040493778884411,0.049730286002159],[-0.080612495541573,0.030461866408587,0.16644710302353],[-0.1048748344183,-0.1411117464304,0.10332143306732]],[[0.023605644702911,-0.12413887679577,-0.10579077154398],[0.019702477380633,0.06422134488821,0.013079759664834],[0.065007753670216,0.000574954028707,-0.052760969847441]],[[-0.024290546774864,0.014051131904125,-0.0042792484164238],[0.031155908480287,0.047104153782129,0.020556936040521],[0.045991986989975,0.018420660868287,0.05753942206502]],[[0.050492912530899,-0.10118056088686,-0.16088792681694],[0.034415170550346,-0.074645146727562,-0.17722246050835],[0.12228274345398,0.060447499155998,-0.018836798146367]],[[-0.017887983471155,-0.03957211971283,0.14295434951782],[0.063961327075958,-0.061117719858885,0.073981687426567],[-0.022739393636584,-0.10242324322462,-0.061998218297958]],[[0.14833787083626,-0.028932323679328,0.076808758080006],[-0.029544737190008,0.0094208037480712,0.057968709617853],[-0.043843042105436,-0.065468266606331,-0.015006120316684]],[[-0.038205962628126,-0.0088599156588316,-0.060724750161171],[0.0037281215190887,-0.12777145206928,-0.0047234669327736],[-0.0021554292179644,-0.050315205007792,0.10494578629732]],[[0.058899492025375,0.11809405684471,0.094338655471802],[0.0031702062115073,0.13636085391045,0.036399707198143],[-0.080268643796444,-0.2088495194912,-0.022486029192805]],[[-0.1174046844244,0.2393264323473,0.15645089745522],[-0.034642089158297,0.082441188395023,0.1088308468461],[-0.035591222345829,-0.10499172657728,0.26892203092575]],[[-0.042364872992039,-0.14052551984787,-0.012377654202282],[-0.042108602821827,-0.096650116145611,-0.094342820346355],[-0.023742582648993,0.012658913619816,-0.11737236380577]],[[0.015957579016685,0.0271633323282,-0.34362959861755],[0.0051870536990464,0.00099930458236486,0.022003870457411],[0.036383338272572,0.068717248737812,0.28748863935471]],[[0.032377321273088,0.17314727604389,0.028668820858002],[0.035612601786852,0.091123431921005,0.034505117684603],[-0.044504538178444,0.045735463500023,-0.0039937528781593]],[[-0.02527772448957,0.15923520922661,0.015514709055424],[0.0028876715805382,0.15730275213718,-0.0016755317337811],[-0.059317883104086,-0.07502219080925,0.024506306275725]],[[-0.023336354643106,0.028000084683299,-0.10995550453663],[-0.064239405095577,0.13330096006393,-0.029113728553057],[-0.017025319859385,0.023075064644217,-0.016971262171865]],[[-0.019835134968162,-0.18805405497551,-0.0336644500494],[0.1076003909111,0.0091194361448288,0.024990344420075],[0.10499315708876,-0.017301740124822,0.031341578811407]],[[0.022338140755892,0.098376616835594,-0.20547436177731],[0.094643749296665,0.019221054390073,-0.099514089524746],[0.39072087407112,0.011717419140041,-0.1243756711483]],[[0.033902898430824,-0.046588990837336,-0.12912476062775],[0.039621043950319,-0.0071630817838013,0.062767021358013],[0.1634351760149,-0.04143051803112,0.0094231301918626]],[[-0.069264449179173,-0.062745437026024,-0.0088069317862391],[0.016150118783116,-0.11251004040241,0.012595410458744],[0.042906116694212,0.17997695505619,-0.095225244760513]],[[-0.25193816423416,-0.15758615732193,-0.11848835647106],[0.063023872673512,0.024027280509472,-0.096499353647232],[0.17192851006985,-0.0075862095691264,-0.094536140561104]],[[-0.053102798759937,0.055693842470646,0.026328761130571],[-0.053955625742674,-0.047442600131035,-0.10912620276213],[-0.013537691906095,0.11678623408079,0.004362209700048]]],[[[-0.001215735101141,0.060830406844616,-0.096058174967766],[-0.037804678082466,0.0097591103985906,-0.013802774250507],[-0.00056248030159622,-0.03412476927042,0.055901382118464]],[[0.16619688272476,-0.070484355092049,0.063675001263618],[0.059647981077433,-0.18164953589439,-0.011843887157738],[-0.012927642092109,0.040144667029381,-0.09799212962389]],[[-0.01566381752491,-0.065529197454453,0.059209160506725],[-0.094358272850513,-0.0051511684432626,0.050512600690126],[-0.015611998736858,-0.17583973705769,-0.081093296408653]],[[-0.018851384520531,-0.059059180319309,0.057310447096825],[-0.11068043112755,0.025951595976949,0.16475529968739],[-0.067111916840076,-0.047955852001905,-0.055590033531189]],[[-0.011328444816172,0.083160042762756,0.13497568666935],[0.099540211260319,0.032685372978449,-0.035719599574804],[0.064279288053513,-0.030170682817698,0.025442741811275]],[[0.045929800719023,-0.015310219489038,-0.21043953299522],[0.017237041145563,-0.022248415276408,0.053713548928499],[-0.0020770395640284,0.044121023267508,-0.01777670532465]],[[0.091014005243778,-0.20916195213795,-0.067497156560421],[0.061978586018085,0.14344300329685,-0.034019283950329],[0.097025796771049,0.0694275572896,0.11565820127726]],[[-0.015886003151536,0.031360346823931,0.0055216834880412],[-0.079389713704586,-0.052311826497316,-0.035001467913389],[0.010981084778905,0.014746762812138,-0.015270401723683]],[[0.064835347235203,-0.071648374199867,0.007223404943943],[-0.079490579664707,-0.18394680321217,-0.058762814849615],[-0.19583143293858,0.0072303474880755,-0.074178501963615]],[[-0.054600156843662,0.15172998607159,0.017646288499236],[0.058908056467772,0.066133610904217,0.078601479530334],[-0.078343443572521,-0.030908303335309,-0.095298908650875]],[[0.095257475972176,-0.067279003560543,0.11005536466837],[-0.070116281509399,-0.01944219879806,0.070289224386215],[-0.086936980485916,0.11593705415726,-0.03415409475565]],[[-0.039233636111021,0.10366475582123,-0.072189763188362],[-0.046076200902462,-0.032569728791714,-0.023863637819886],[-0.022922256961465,0.12297638505697,-0.13509319722652]],[[-0.13453176617622,-0.058201719075441,-0.015705332159996],[-0.04172395542264,0.024461772292852,0.073496744036674],[0.0025518469046801,-0.12024547159672,-0.04097717627883]],[[-0.062690258026123,-0.047050435096025,0.032119985669851],[0.049815196543932,0.14939799904823,-0.018372625112534],[-0.14984121918678,0.10201840102673,-0.12054449319839]],[[-0.013144107535481,-0.10545592010021,-0.0017005172558129],[0.032743461430073,0.012736142612994,0.023432658985257],[0.023092621937394,0.097058139741421,0.038546971976757]],[[-0.11452599614859,0.032379508018494,-0.14231896400452],[0.21671897172928,0.053623706102371,-0.15618719160557],[-0.066032752394676,-0.12092092633247,0.0546521730721]],[[-0.040702566504478,-0.011841000057757,-0.025996537879109],[0.06145516782999,-0.025622673332691,0.085248023271561],[-0.065534740686417,0.10036768019199,-0.024271057918668]],[[0.0059649962931871,-0.0030737891793251,0.10047320276499],[-0.021019291132689,-0.11981372535229,-0.069741971790791],[-0.003898466238752,0.13278310000896,0.0054899654351175]],[[0.014677039347589,0.10077594220638,-0.027894550934434],[-0.019008118659258,-0.015738543123007,0.095673874020576],[-0.0010941177606583,0.079000204801559,-0.11570613831282]],[[-0.058968763798475,-0.014171415008605,-0.021177217364311],[-0.016684520989656,-0.042415887117386,0.035920701920986],[-0.061305411159992,-0.00021188774553593,-0.071332193911076]],[[0.0078021786175668,0.016148479655385,0.056220173835754],[0.1478542983532,0.048111744225025,-0.02655809931457],[0.13630890846252,-0.07173216342926,-0.070399343967438]],[[-0.052061844617128,-0.024878550320864,0.09209581464529],[-0.16092433035374,0.027592686936259,-0.047667223960161],[0.04073703289032,-0.11268816888332,0.003260362893343]],[[0.10691156238317,-0.0081646554172039,0.1139003932476],[0.026649786159396,-0.1888614743948,0.032813344150782],[0.056015096604824,0.042694237083197,0.070264853537083]],[[-0.089526861906052,-0.075307875871658,-0.0095937075093389],[-0.0076742409728467,0.036948960274458,0.031986355781555],[0.051778636872768,0.090070508420467,0.021309617906809]],[[0.019147856160998,-0.1486501544714,-0.064828254282475],[0.015956187620759,-0.032264690846205,-0.035843592137098],[0.0063612512312829,-0.0077923438511789,0.0054256971925497]],[[-0.0067978333681822,-0.016006425023079,0.041527029126883],[-0.091073878109455,-0.0040649902075529,-0.050707973539829],[0.052137114107609,0.0047106496058404,-0.1819579154253]],[[0.087440676987171,-0.14214420318604,0.062785558402538],[-0.11573146283627,0.034021362662315,-0.071558311581612],[-0.0018308976432309,0.09640234708786,0.053523611277342]],[[-0.040382068604231,-0.053063374012709,0.094853900372982],[-0.065244063735008,0.013839177787304,0.12558573484421],[0.025350078940392,0.014399497769773,0.022686386480927]],[[0.097461566329002,-0.048925779759884,0.013224934227765],[-0.10588888078928,-0.0013144123367965,-0.08154733479023],[-0.022998047992587,-0.048521723598242,-0.054324701428413]],[[-0.024880839511752,-0.067199431359768,-0.0016171836759895],[0.1455540060997,-0.063168592751026,0.081687547266483],[-0.046739257872105,-0.084882810711861,-0.052890218794346]],[[0.035214513540268,-0.10213848948479,0.044848900288343],[0.036466598510742,-0.12350492179394,0.11393488943577],[0.032161802053452,-0.00012716166384052,0.0060711707919836]],[[-0.028648940846324,0.026555359363556,0.13892345130444],[-0.010236225090921,-0.0039887009188533,-0.1027610450983],[0.023286191746593,0.036786075681448,0.019795592874289]]],[[[-0.060347933322191,-0.073775164783001,-0.0010517683112994],[0.11495988070965,-0.011026186868548,0.081197142601013],[0.12545642256737,0.092013582587242,0.16813445091248]],[[-0.028181856498122,-0.05114595964551,-0.047084037214518],[-0.020950835198164,0.016233900561929,-0.01801916025579],[-0.015817223116755,0.058268509805202,0.1447491645813]],[[-0.048022590577602,-0.065362893044949,0.0014736131997779],[0.020740954205394,-0.050684086978436,0.070284321904182],[0.030822742730379,0.11442189663649,-0.016589321196079]],[[-0.048243876546621,-0.043988417834044,0.0070995986461639],[-0.025205865502357,0.10697967559099,-0.049715917557478],[-0.0028219914529473,0.011887131258845,0.010853057727218]],[[-0.019207265228033,0.0091844610869884,-0.12700644135475],[0.0073616527952254,0.04570596665144,0.034573148936033],[0.022548826411366,0.052044030278921,0.041597981005907]],[[-0.066374488174915,-0.079622864723206,0.015491988509893],[-0.11157809942961,-0.066967040300369,-0.078685767948627],[0.0047901272773743,0.1718807220459,-0.0063851084560156]],[[-0.059757992625237,-0.21248607337475,-0.035849384963512],[-0.0045259115286171,0.015141355805099,-0.01863880828023],[0.11493220925331,0.00025769110652618,-0.01179561112076]],[[-0.0076547400094569,-0.10628772526979,0.027167353779078],[-0.12284231930971,0.021058091893792,0.13610918819904],[0.00030139600858092,0.16380287706852,0.0981674939394]],[[-0.039902560412884,-0.045789208263159,-0.10812006145716],[-0.029071247205138,-0.08672408759594,-0.073898948729038],[-0.036050915718079,0.14792628586292,0.13539615273476]],[[0.16017404198647,0.13773989677429,0.016036547720432],[0.23082457482815,0.19361750781536,0.088400907814503],[0.094950377941132,0.21433725953102,0.21251976490021]],[[-0.086824953556061,-0.01539621502161,-0.073729276657104],[0.012755298055708,0.054210890084505,-0.10112629085779],[0.075832799077034,0.039028607308865,-0.021200774237514]],[[0.094001263380051,0.062459353357553,-0.058110564947128],[-0.037106528878212,-0.10841844975948,-0.14491038024426],[-0.056328278034925,0.14622355997562,0.079280473291874]],[[0.06024981290102,-0.033318392932415,0.027666674926877],[-0.037733308970928,-0.01979586482048,-0.0081421155482531],[-0.12709127366543,-0.055011760443449,0.21481518447399]],[[-0.01297096349299,0.012345695868134,0.094593249261379],[0.21073243021965,-0.035912282764912,0.064236782491207],[-0.0060668135993183,-0.13291583955288,-0.65334576368332]],[[0.05079397931695,-0.089493691921234,-0.09477249532938],[-0.08495020866394,-0.067616276443005,-0.053539011627436],[-0.033651083707809,0.19921720027924,0.10347128659487]],[[-0.074745252728462,0.12899802625179,0.0016724639572203],[0.039539504796267,0.044244695454836,0.13679811358452],[-0.034309092909098,-0.14056803286076,-0.05287816375494]],[[0.00069178140256554,0.064156956970692,0.052017297595739],[0.056438181549311,0.052970100194216,0.13815174996853],[0.0065656956285238,0.084449999034405,-0.090111710131168]],[[-0.065923534333706,-0.052602726966143,0.044519890099764],[-0.13675616681576,-0.070071771740913,0.057352188974619],[0.057809960097075,0.036686550825834,0.060144174844027]],[[-0.25451445579529,-0.054850339889526,-0.027467463165522],[-0.32744368910789,-0.032105930149555,-0.072517938911915],[-0.046656336635351,-0.12696328759193,0.25443518161774]],[[-0.13102746009827,-0.089080035686493,-0.053900364786386],[-0.26280042529106,-0.2302490323782,-0.02548510953784],[0.03327053040266,0.029152257367969,0.098276145756245]],[[0.13106095790863,-0.045002155005932,-0.093326784670353],[0.097781233489513,-0.063286364078522,-0.15752366185188],[-0.0035326180513948,-0.0091316541656852,0.22624859213829]],[[-0.041280101984739,-0.082372613251209,-0.13955721259117],[0.021665943786502,0.011908696033061,0.047421768307686],[-0.099461510777473,-0.020151427015662,-0.075245559215546]],[[0.11761804670095,0.11752105504274,0.015307969413698],[0.18445710837841,0.11912428587675,-0.0019171900348738],[0.18254588544369,-0.069777205586433,-0.20339149236679]],[[-0.16369725763798,-0.066291004419327,0.073849558830261],[-0.07833444327116,-0.023108318448067,0.11206325888634],[-0.031901016831398,0.11360377818346,0.012472914531827]],[[0.052639435976744,-0.081708192825317,0.034079667180777],[-0.17200127243996,-0.12869162857533,0.038209222257137],[-0.20849719643593,0.012584740296006,0.12608180940151]],[[0.11657915264368,-0.0068812733516097,-0.13592886924744],[0.0015544891357422,0.0085074361413717,-0.23561009764671],[-0.031768746674061,0.19561338424683,-0.043079409748316]],[[0.038814820349216,-0.018204487860203,0.10396973788738],[-0.03125274926424,-0.042489655315876,0.032430216670036],[0.057013552635908,-0.055266667157412,-0.041698735207319]],[[-0.10952079296112,0.14011724293232,-0.013606974855065],[0.19196833670139,-0.00095785717712715,0.07634225487709],[0.093250550329685,-0.013577876612544,0.084706954658031]],[[-0.041858337819576,-0.11066126823425,-0.0061983307823539],[0.019630827009678,0.038644932210445,-0.01936181075871],[0.067995153367519,0.041582554578781,0.090950287878513]],[[-0.067241206765175,0.0508025996387,0.054383095353842],[0.013055352494121,0.019081886857748,0.0029858259949833],[-0.048488650470972,-0.16093872487545,-0.12141845375299]],[[-0.0082218153402209,-0.12331581860781,-0.097009114921093],[-0.20664444565773,0.082607366144657,0.037533268332481],[-0.0010901317000389,-0.046769216656685,0.003564331214875]],[[-0.24023835361004,-0.24679540097713,-0.029435059055686],[-0.13686606287956,-0.37685772776604,0.041289400309324],[-0.051933072507381,-0.18552727997303,-0.11116443574429]]],[[[0.0066434610635042,0.078837357461452,-0.0062751951627433],[-0.0049546798691154,-0.0040632574819028,0.06358589977026],[0.0018887837650254,-0.015021346509457,0.038853134959936]],[[0.033952064812183,-0.21021501719952,-0.067864552140236],[0.054744999855757,0.062263175845146,0.0409971550107],[0.037001218646765,-0.012652271427214,0.017165753990412]],[[-0.11247845739126,-0.12182369083166,-0.070837236940861],[-0.063556730747223,0.11417270451784,-0.0024109748192132],[0.11142507940531,-0.099768079817295,0.085312806069851]],[[0.11532524973154,0.058406047523022,0.088737592101097],[0.030891794711351,-0.10942633450031,0.036655783653259],[0.011552900075912,0.020130796357989,0.0034668713342398]],[[0.0033244451042265,0.14663350582123,-0.041248552501202],[-0.012660942971706,-0.059427693486214,0.21527178585529],[-0.046008482575417,0.05208795145154,-0.011742575094104]],[[0.044635236263275,0.090823628008366,0.031116036698222],[0.035430353134871,-0.081134967505932,-0.12012957781553],[-0.048787657171488,-0.0040920525789261,-0.0091291265562177]],[[-0.051180806010962,0.081006601452827,-0.1774263381958],[0.086612343788147,-0.06529351323843,0.026668505743146],[-0.0042590834200382,0.028706831857562,-0.12318481504917]],[[-0.0099644316360354,0.072019249200821,0.031561974436045],[0.050138644874096,-0.39748749136925,0.044545069336891],[0.081311956048012,0.08695849776268,0.0073063015006483]],[[-0.024448486045003,-0.17381179332733,-0.045501951128244],[0.029543915763497,-0.038923665881157,0.017111111432314],[-0.022397423163056,0.064231023192406,0.013868140056729]],[[0.037912722676992,0.02472966350615,-0.079425744712353],[-0.034791763871908,0.17910693585873,0.033014129847288],[-0.023974871262908,0.00084083940600976,0.024199595674872]],[[-0.090706907212734,0.11420471221209,-0.010810155421495],[-0.083133958280087,0.022186037153006,0.0018689022399485],[0.093823097646236,0.10478843003511,-0.04448414966464]],[[-0.046446450054646,0.041862424463034,-0.14091670513153],[-0.0054499134421349,0.030952133238316,0.028893498703837],[0.06406107544899,0.067688189446926,0.029882542788982]],[[0.061415202915668,-0.01821755990386,-0.037576958537102],[0.063424132764339,0.0053561045788229,0.041033927351236],[-0.065802849829197,0.044978566467762,0.043374743312597]],[[-0.024826727807522,0.050053235143423,0.0029318304732442],[0.024505227804184,-0.13605876266956,-0.0034157522022724],[0.041596379131079,-0.033075671643019,-0.032802768051624]],[[-0.015114185400307,0.042416524142027,0.0032033778261393],[-0.0035943121183664,0.0018937770510092,-0.0046677896752954],[0.018242409452796,0.087245039641857,0.00072096480289474]],[[0.038993615657091,-0.061704155057669,0.054723665118217],[0.027474872767925,0.068967685103416,0.096878834068775],[-0.089802272617817,-0.031994685530663,-0.10589974373579]],[[-0.0084859253838658,-0.021605251356959,0.035538606345654],[-0.018335776403546,0.088171370327473,-0.078287623822689],[0.053856205195189,0.013703254982829,-0.033476892858744]],[[-0.056371416896582,-0.059197083115578,0.088679693639278],[-0.049148645251989,-0.053956311196089,-0.075892426073551],[0.0100830309093,0.012234170921147,0.089110933244228]],[[0.070622071623802,-0.049615640193224,-0.041769064962864],[0.042693708091974,0.011378112249076,-0.037571851164103],[0.0071852952241898,-0.0042246384546161,0.080892473459244]],[[0.030251938849688,0.023703400045633,0.015131480060518],[-0.0082782674580812,0.030643295496702,-0.057846948504448],[-0.082461342215538,0.038899712264538,0.041187971830368]],[[-0.0023020328953862,-0.20969590544701,-0.036132834851742],[0.058961246162653,0.075483649969101,-0.030226476490498],[-0.032832875847816,0.013033226132393,0.049431730061769]],[[0.0035965014249086,0.05984503030777,0.027696058154106],[-0.091111972928047,0.089816004037857,0.10122039169073],[-0.075994692742825,0.031327161937952,-0.1151500493288]],[[-0.051749929785728,0.023040626198053,0.058587614446878],[0.11968753486872,-0.10627453029156,-0.071672208607197],[-0.03513365983963,-0.035570662468672,-0.04276417940855]],[[-0.1157765313983,0.13903467357159,0.048523034900427],[0.085241034626961,-0.21628974378109,0.11226838827133],[0.03691191971302,0.019333064556122,0.052106481045485]],[[-0.014978830702603,-0.021946223452687,-0.043008383363485],[-0.075393974781036,-0.10740784555674,-0.015962870791554],[0.015460614115,0.048413172364235,-0.038895390927792]],[[0.047414012253284,0.038800090551376,-0.043621473014355],[0.0092887384817004,-0.10407818853855,-0.1593946814537],[0.039184842258692,0.076374486088753,-0.014739037491381]],[[-5.6724470596237e-06,0.0048142839223146,0.092818677425385],[-0.010684573091567,-0.096391536295414,0.031084364280105],[-0.055240016430616,0.070915929973125,-0.034682765603065]],[[0.0038105975836515,0.074608333408833,-0.056568995118141],[0.062448184937239,0.071322716772556,-0.0012891173828393],[-0.19374577701092,-0.0022911843843758,0.04619750007987]],[[-0.095772139728069,0.040608812123537,-0.013634066097438],[-0.09826373308897,-0.03242039680481,0.028451021760702],[0.0077932551503181,0.039644975215197,0.026310747489333]],[[-0.041171904653311,0.12213926762342,0.096222102642059],[-0.0087862135842443,-0.12873797118664,-0.018340757116675],[-0.049731444567442,-0.01245417073369,-0.011214598082006]],[[-0.020844029262662,-0.01110527291894,0.053604613989592],[-0.0030519836582243,-0.13125151395798,-0.060779422521591],[-0.051476508378983,0.01429736148566,-0.012247656472027]],[[0.02192971855402,0.11309976875782,0.088115371763706],[-0.024379454553127,-0.033215388655663,0.0010671915952116],[-0.030971949920058,-0.031671598553658,-0.036950308829546]]],[[[0.031025448814034,-0.0094980234280229,0.0061177811585367],[-0.033230185508728,0.011883663013577,-0.138881534338],[0.011653842404485,-0.011077954433858,-0.0086258621886373]],[[0.028929710388184,-0.0037941848859191,-0.023009678348899],[0.051117137074471,0.016469510272145,-0.058699917048216],[0.13077640533447,-0.041924890130758,-0.12135187536478]],[[-0.037097252905369,-0.1301653534174,0.0923061221838],[-0.22221384942532,0.13062153756618,0.13850562274456],[-0.13699948787689,-0.015838155522943,-0.079797498881817]],[[0.0095824422314763,0.036657720804214,-0.10746429860592],[-0.07538478076458,0.015699060633779,0.12503273785114],[-0.10851200670004,0.12393373996019,-0.064495988190174]],[[-0.058523274958134,-0.015928212553263,0.089080914855003],[0.14841543138027,-0.038219816982746,-0.046871975064278],[0.1731618642807,-0.11577728390694,0.0028620439115912]],[[0.055856496095657,-0.13081125915051,-0.025134187191725],[-0.042296193540096,0.042302519083023,0.062686897814274],[0.12390252202749,0.040923979133368,-0.038955219089985]],[[-0.023147381842136,0.060891933739185,-0.0063864011317492],[0.045304708182812,-0.21238672733307,0.13082920014858],[-0.0029648111667484,0.0036250608973205,-0.049579609185457]],[[0.009889586828649,0.0090430630370975,0.010167481377721],[-0.033952936530113,0.077494211494923,-0.0025741043500602],[-0.096891552209854,0.059258069843054,0.056192588061094]],[[-0.0047904965467751,0.016296643763781,0.0037339858245105],[0.0027711875736713,-0.10555779188871,0.10025525093079],[-0.0051378784701228,-0.016451053321362,-0.08771788328886]],[[-0.1145595908165,0.04787540435791,0.037227556109428],[0.069707907736301,0.015830857679248,-0.01809411868453],[0.15695759654045,0.064194090664387,-0.080782547593117]],[[0.0057830782607198,-0.06944215297699,0.018899360671639],[0.10296226292849,0.030902659520507,0.030313374474645],[-0.076347149908543,-0.051805317401886,0.089087001979351]],[[0.073407553136349,0.053825218230486,-0.018237080425024],[0.14996902644634,-0.074985779821873,0.0034401121083647],[0.054142795503139,-0.022554619237781,-0.11923330277205]],[[0.046752411872149,-0.02410776168108,-0.044757772237062],[0.021735046058893,0.093511834740639,0.04857387766242],[-0.046304456889629,0.0051569533534348,0.13133914768696]],[[-0.061458889394999,0.080405101180077,0.0014834786998108],[-0.049098502844572,-0.021552601829171,0.084637090563774],[-0.11896999180317,-0.036685928702354,0.099158562719822]],[[0.018916724249721,0.0072897165082395,0.0054719327017665],[-0.053141608834267,-0.085226900875568,-0.075755469501019],[0.035423148423433,-0.011586809530854,-0.054308380931616]],[[0.06665026396513,-0.027539119124413,-0.049114789813757],[-0.023647267371416,0.14010316133499,-0.16994506120682],[0.048307970166206,0.10995606333017,0.017088370397687]],[[-0.021624978631735,-0.0070475819520652,0.046459946781397],[-0.028706379234791,-0.050759699195623,-0.020701287314296],[0.060709293931723,-0.19308792054653,0.17971034348011]],[[0.027165146544576,0.056659668684006,-0.00087234453530982],[0.026560021564364,-0.22123423218727,-0.030567590147257],[0.0012389235198498,-0.041860245168209,0.078315563499928]],[[-0.055105071514845,0.049706127494574,-0.032783545553684],[0.083820849657059,0.011628471314907,-0.060286540538073],[0.029027637094259,0.075697787106037,0.01474738959223]],[[0.030349457636476,0.00025767792249098,-0.016090583056211],[-0.032192710787058,-0.035456098616123,0.037126835435629],[-0.023432506248355,-0.13098636269569,-0.08327255398035]],[[0.034666698426008,0.078853726387024,-0.050728481262922],[0.017098672688007,0.0053826756775379,-0.06226671859622],[0.087482802569866,-0.09222823381424,-0.13892973959446]],[[-0.019990546628833,0.13024953007698,-0.0099569400772452],[-0.11781315505505,0.28108215332031,0.09882827103138],[-0.082551255822182,-0.011259042657912,-0.22164005041122]],[[0.021183550357819,-0.12966102361679,-0.13514068722725],[-0.13648371398449,-0.0841940715909,-0.18456590175629],[-0.027750985696912,-0.050376009196043,0.13868826627731]],[[-0.016569424420595,0.0050214272923768,0.0036413101479411],[0.041390527039766,-0.099045418202877,0.029593884944916],[-0.19930717349052,-0.029377331957221,0.013367338106036]],[[-0.041744124144316,-0.051918640732765,-0.058373749256134],[0.088854275643826,-0.091822348535061,-0.08951074630022],[-0.03410404548049,-0.073916599154472,-0.098918221890926]],[[-0.0081727057695389,0.028965948149562,0.053589757531881],[-0.025697860866785,-0.080468654632568,0.065981149673462],[-0.12208911776543,-0.095021463930607,0.040772844105959]],[[-0.008285223506391,-0.013140382245183,0.035356637090445],[-0.020469425246119,0.016198324039578,0.0083530060946941],[-0.13059535622597,0.023782236501575,0.098375149071217]],[[0.0086501641198993,0.048266392201185,0.055195618420839],[0.1840428262949,0.076947174966335,0.051397640258074],[0.17982488870621,0.18571385741234,-0.15146164596081]],[[-0.0033043443690985,0.067896127700806,0.042991138994694],[0.016141980886459,-0.047840848565102,0.089047096669674],[-0.059472300112247,-0.14075639843941,-0.0086917374283075]],[[-0.039956361055374,0.016796424984932,0.0081873033195734],[0.004474853631109,-0.028224399313331,-0.0044933189637959],[-0.099771410226822,-0.0097878910601139,0.095070645213127]],[[-0.05316249281168,0.029061900451779,0.06424967944622],[-0.028880421072245,-0.053369011729956,-0.018598265945911],[0.016062133014202,-0.001864810124971,-0.054120406508446]],[[0.0021677727345377,-0.0012844727607444,0.024022778496146],[0.029445242136717,-0.11120340973139,-0.042155265808105],[-0.035904385149479,-0.030381288379431,0.080723218619823]]],[[[0.063981711864471,-0.028748635202646,-0.17423641681671],[-0.12171822041273,0.035502936691046,-0.13800126314163],[-0.13669693470001,0.032598830759525,-0.12023328244686]],[[-0.021113947033882,0.064013674855232,-0.17992360889912],[0.10553063452244,0.10736107826233,-0.042989932000637],[-0.06502179056406,-0.048164512962103,-0.21460457146168]],[[0.024428499862552,-0.013365943916142,0.095348581671715],[0.0072658150456846,0.086633607745171,0.14619234204292],[0.026890886947513,-0.04326243698597,-0.042145013809204]],[[0.10185605287552,-0.016841763630509,-0.0058518294245005],[-0.15411457419395,-0.11404284089804,-0.093932047486305],[0.10461762547493,0.22062854468822,0.13731433451176]],[[0.090695433318615,-0.00042421917896718,-0.026201494038105],[0.038773700594902,0.014804788865149,-0.021838951855898],[-0.043072741478682,-0.026033401489258,-0.100386492908]],[[-0.1251608133316,-0.023797549307346,0.12598317861557],[-0.02618957310915,0.11753303557634,-0.070660658180714],[-0.023922797292471,0.016122914850712,0.035511575639248]],[[-0.074428915977478,-0.013323972001672,-0.078526347875595],[-0.13978730142117,-0.086033366620541,-0.063007384538651],[-0.039374981075525,0.04603311419487,-0.047367788851261]],[[-0.10306359827518,-0.038781210780144,-0.08352505415678],[-0.15180979669094,-0.23449836671352,0.066079445183277],[0.047541301697493,0.0062714042142034,-0.19943104684353]],[[0.023033624514937,0.0098386323079467,-0.069769963622093],[0.055963676422834,-0.04349996894598,-0.040534228086472],[-0.041602190583944,-0.0055195083841681,0.012545458041131]],[[0.20185431838036,0.16692641377449,0.063252046704292],[0.31404039263725,0.37938490509987,0.24347768723965],[0.22226229310036,0.0057870945893228,0.047984231263399]],[[0.01094685215503,0.31757551431656,-0.095576666295528],[0.15147776901722,0.13155516982079,0.017148431390524],[-0.0021215335000306,0.035266660153866,-0.01285582408309]],[[0.10680792480707,0.01127187628299,-0.042398184537888],[0.089387245476246,-0.035374172031879,-0.11637286841869],[0.052643407136202,-0.11017373949289,-0.071438178420067]],[[0.072658143937588,-0.038651809096336,-0.0025264404248446],[0.030957279726863,-0.082075275480747,0.014440150931478],[-0.043251410126686,-0.021111406385899,0.15029196441174]],[[-0.029804099351168,-0.029523022472858,-0.067106261849403],[0.11969298869371,-0.12458537518978,-0.217793866992],[-0.13288436830044,-0.24121880531311,-0.23766475915909]],[[0.19213335216045,-0.21203105151653,0.033943589776754],[-0.067760214209557,-0.010068969801068,0.0072513050399721],[-0.04837191849947,0.12391676753759,-0.14809095859528]],[[0.10471920669079,0.01192329172045,-0.065298870205879],[0.10078363120556,0.087634593248367,0.07676687091589],[0.035562220960855,-0.068789899349213,0.038768954575062]],[[-0.016639683395624,-0.035935513675213,-0.088653236627579],[0.043903585523367,-0.10593828558922,-0.32580274343491],[0.029482208192348,-0.20510841906071,-0.24541099369526]],[[0.015846909955144,-0.067564129829407,-0.21324457228184],[-0.041682824492455,-0.10897083580494,-0.16940613090992],[-0.12033626437187,0.074787579476833,-0.18141405284405]],[[-0.043526761233807,-0.10255917161703,-0.20032659173012],[0.048036597669125,-0.19693244993687,-0.2192954570055],[-0.17562136054039,-0.31188324093819,-0.064788520336151]],[[0.003968327306211,-0.080295197665691,-0.1147718578577],[-0.19793766736984,-0.10162305086851,-0.1876272559166],[-0.18088200688362,-0.016717230901122,-0.11693279445171]],[[0.10735971480608,-0.02106230519712,0.017980240285397],[0.19881756603718,0.17996454238892,0.00039681509952061],[0.039244942367077,-0.18296824395657,-0.0049915052950382]],[[-0.018491890281439,-0.068343311548233,0.19735619425774],[0.027105718851089,0.03072047047317,0.14784471690655],[-0.012980596162379,-0.040360540151596,0.12577962875366]],[[0.13824452459812,0.29494813084602,-0.063353262841702],[-0.11005439609289,0.14481656253338,-0.012899979948997],[0.042351443320513,0.37000063061714,-0.034280143678188]],[[-0.1197457909584,-0.13158190250397,-0.16327546536922],[0.086396440863609,-0.26130273938179,0.030497651547194],[-0.11844531446695,-0.067492574453354,-0.055024269968271]],[[-0.1082796305418,-0.092568807303905,-0.27305600047112],[-0.24523694813251,-0.060871332883835,-0.16280402243137],[0.0096534630283713,-0.050443187355995,-0.068260610103607]],[[0.10383530706167,-0.0062238909304142,-0.074645675718784],[-0.0336196385324,0.054579488933086,-0.10509015619755],[-0.032812658697367,-0.032835889607668,-0.127770408988]],[[-0.052526444196701,-0.00077215989585966,0.059606436640024],[-0.054794982075691,-0.0042349454015493,-0.011107268743217],[-0.03273556753993,0.023409128189087,0.038885328918695]],[[-0.024783374741673,0.23368179798126,0.19982188940048],[0.1823958158493,0.59046918153763,0.24922850728035],[0.0010065053356811,0.25498116016388,0.078683026134968]],[[-0.043443001806736,-0.056551411747932,0.061673324555159],[-0.082485251128674,-0.16457092761993,0.015076044015586],[0.0091647515073419,-0.059602908790112,0.031098704785109]],[[-0.011444116011262,-0.053260046988726,-0.034699618816376],[0.028736600652337,-0.032514870166779,-0.04151039198041],[-0.011890161782503,0.043076917529106,0.10393849760294]],[[0.034250542521477,0.073558963835239,0.10433101654053],[-0.022281728684902,0.055139645934105,0.027815010398626],[0.11525963246822,0.030094401910901,0.057237107306719]],[[-0.055251233279705,-0.1279464662075,-0.18191653490067],[-0.081506617367268,-0.3528279364109,-0.13934847712517],[-0.089474119246006,-0.12838134169579,-0.024957006797194]]],[[[-0.10593392699957,-0.068555600941181,0.057277638465166],[0.082759842276573,-0.044100072234869,-0.030137678608298],[-0.022495420649648,-0.0061295880004764,-0.0031982578802854]],[[0.052641350775957,-0.026026334613562,-0.024958150461316],[-0.040189690887928,-0.014863094314933,0.019663721323013],[0.003134835511446,-0.021668454632163,0.080675892531872]],[[0.018094126135111,-0.052224263548851,0.19278921186924],[0.02283725515008,0.05093739554286,-0.068927764892578],[-0.0073118694126606,0.066332824528217,-0.012402481399477]],[[0.070965021848679,0.061915069818497,-0.03430213034153],[0.027581743896008,0.099199801683426,0.04765360802412],[0.028347158804536,-0.065329149365425,0.087598457932472]],[[-0.015039493329823,0.028196012601256,-0.0017377201002091],[0.049424398690462,-0.084544621407986,-0.041436970233917],[0.010470908135176,0.022960543632507,-0.088845066726208]],[[0.041957125067711,-0.30190977454185,0.16560497879982],[-0.080169953405857,0.046142671257257,-0.06130026653409],[-0.02412386611104,-0.039251081645489,0.19708517193794]],[[-0.054225418716669,0.04134027659893,-0.0153793329373],[-0.028421491384506,0.030044322833419,-0.061570506542921],[-0.0096259983256459,0.083119496703148,0.034623917192221]],[[0.04568699747324,-0.065523818135262,0.042710293084383],[0.091854326426983,-0.10435518622398,-0.062044862657785],[-0.060018394142389,0.051853150129318,0.044767949730158]],[[-0.03253660351038,-0.1026466563344,-0.011451337486506],[-0.096145190298557,0.039828609675169,0.12043283879757],[0.0072629335336387,-0.064815163612366,-0.050565797835588]],[[-0.077603571116924,0.13483795523643,-0.044633615761995],[0.018075402826071,0.1117045134306,-0.10581728816032],[0.0024723296519369,-0.0027949707582593,0.043362941592932]],[[0.054593298584223,0.000173657463165,-0.020206084474921],[0.12918783724308,0.11345224827528,-0.017157290130854],[-0.062368724495173,-0.091770678758621,0.0039658779278398]],[[-0.14471378922462,0.036684382706881,0.086063764989376],[0.11250200867653,-0.12867911159992,-0.024951986968517],[0.0094369342550635,0.0062472932040691,0.0045833820477128]],[[0.057259701192379,0.099046781659126,0.043955143541098],[0.037408880889416,0.038669679313898,0.015342185273767],[0.063147768378258,0.074200920760632,0.030185727402568]],[[-0.12637859582901,0.076908282935619,0.085393190383911],[0.13120505213737,0.023074885830283,-0.094267845153809],[-0.096958547830582,-0.072349153459072,0.21789839863777]],[[0.034121487289667,-0.11390057951212,0.078145302832127],[-0.077012613415718,0.091087535023689,0.018644111230969],[0.053931966423988,-0.034385535866022,0.046643793582916]],[[0.02198838070035,-0.20523978769779,0.199078977108],[-0.1256547421217,0.33877083659172,-0.26969200372696],[-0.085957929491997,-0.21046374738216,0.24484838545322]],[[0.013257907703519,0.011231197044253,-0.065821141004562],[-0.0033620891626924,0.0045367609709501,-0.02733994089067],[0.090356051921844,-0.052266053855419,0.050707869231701]],[[0.030661670491099,-0.12031646072865,0.046960286796093],[-0.079027011990547,-0.04166903719306,-0.10069426894188],[0.064209938049316,0.16092076897621,-0.062345329672098]],[[-0.03263246640563,0.15706869959831,-0.13400579988956],[0.038446750491858,-0.038622938096523,-0.15530698001385],[0.115931160748,0.00053406407823786,-0.070598527789116]],[[-0.059699557721615,-0.094375476241112,0.015133331529796],[0.056996311992407,0.053957939147949,-0.11202662438154],[0.0048748129047453,0.019808113574982,0.14992660284042]],[[-0.018642799928784,0.033955071121454,-0.063441902399063],[-0.032405663281679,-0.019994614645839,0.087851800024509],[0.12345422059298,-0.065417557954788,-0.015246970579028]],[[0.013694633729756,0.068929880857468,-0.19663035869598],[0.16732934117317,-0.17392280697823,0.31534305214882],[-0.12645225226879,0.0012551463441923,0.053373478353024]],[[0.18448889255524,-0.058803398162127,0.0031065070070326],[-0.0097354417666793,0.2060207426548,-0.098854683339596],[-0.078959383070469,-0.13842684030533,0.1776252835989]],[[-0.14123979210854,-0.025168584659696,0.18027184903622],[0.12250661104918,0.078532189130783,-0.15658198297024],[-0.084553301334381,0.053858794271946,0.060261629521847]],[[0.090380348265171,-0.010822026990354,-0.078085698187351],[-0.0046483362093568,-0.35316824913025,0.16030284762383],[0.025068992748857,-0.026873944327235,0.038298510015011]],[[0.01659856364131,-0.1039807498455,0.047611515969038],[0.03564490750432,-0.0073302374221385,-0.10576725006104],[-0.062283825129271,0.061517640948296,-0.11612208932638]],[[-0.014795386232436,-0.087033778429031,0.09668680280447],[-0.044726684689522,0.052088908851147,0.014644222334027],[0.062898352742195,0.047524224966764,-0.14240674674511]],[[0.083284266293049,0.0261658616364,-0.033191833645105],[-0.023039024323225,0.14684721827507,-0.13303482532501],[0.032839488238096,-0.22432139515877,0.15472979843616]],[[0.014419938437641,-0.088840022683144,-0.021719638258219],[0.032809261232615,-0.052243061363697,-0.064421951770782],[0.095800615847111,0.13349182903767,-0.037851709872484]],[[-0.062881976366043,0.11755599081516,0.084612749516964],[0.050025463104248,0.0049113612622023,0.056541938334703],[0.02568381652236,-0.048340994864702,0.070678763091564]],[[-0.085659816861153,0.12433738261461,-0.093016341328621],[-0.054992347955704,0.034646920859814,0.16555640101433],[0.019508352503181,-0.10981146246195,-0.067607797682285]],[[0.032196406275034,-0.029691316187382,0.092100352048874],[-0.031836539506912,-0.030662590637803,-0.16046194732189],[-0.022385463118553,0.054451432079077,-0.027812752872705]]],[[[-0.16343306005001,-0.12205955386162,0.059118244796991],[0.082761116325855,0.072378665208817,0.011110548861325],[-0.045727800577879,0.0722501501441,0.085887879133224]],[[-0.0052131866104901,-0.12756995856762,0.041887834668159],[-0.08051472902298,-0.042026687413454,0.02839246019721],[-0.0021892767399549,-0.012710468843579,0.12051434069872]],[[-0.1097491979599,0.090316399931908,0.11559043824673],[-0.00041327229700983,-0.048256181180477,0.022999493405223],[-0.022533036768436,0.03739807754755,-0.00099430652335286]],[[-0.028088184073567,-0.013112472370267,0.062204465270042],[0.069782741367817,-0.0911480858922,0.061723493039608],[0.093668825924397,0.017187213525176,-0.0038122043479234]],[[-0.042823623865843,-0.048320390284061,0.054748646914959],[0.086407005786896,0.05403945967555,0.15378731489182],[0.141985014081,0.00050093530444428,-0.038144443184137]],[[-0.15456767380238,0.046124923974276,-0.042587045580149],[-0.060879047960043,-0.17181341350079,0.087973102927208],[-0.082004301249981,0.0074874050915241,0.010900102555752]],[[0.046026598662138,0.0076547465287149,-0.13842557370663],[0.0067165964283049,-0.064298205077648,0.068263977766037],[-0.013253689743578,0.092043250799179,-0.027267364785075]],[[0.046962793916464,0.036758575588465,-0.0155621888116],[0.08292368799448,-0.010110565461218,0.0033781419042498],[0.024012142792344,-0.030373048037291,-0.093696191906929]],[[0.031885590404272,-0.077563643455505,0.016890831291676],[0.009125180542469,-0.071274414658546,0.05303119122982],[0.023784091696143,0.10180006921291,0.050886925309896]],[[-0.005941167473793,0.050947278738022,0.12100575864315],[-0.02629578858614,0.16431634128094,0.14742447435856],[0.052039530128241,0.15865187346935,0.086612612009048]],[[-0.012853030115366,-0.0059349522925913,0.04979457333684],[0.06903450936079,-0.003096541389823,0.083939701318741],[0.015298271551728,-0.026159105822444,0.12322769314051]],[[-0.087585724890232,-0.15094390511513,0.011014793999493],[0.0060734981670976,0.07860042899847,-0.022576224058867],[0.057058580219746,-0.045759629458189,0.087787717580795]],[[0.23018506169319,0.1329692453146,0.017760062590241],[0.066225998103619,0.030125085264444,-0.031643450260162],[0.027085825800896,-0.029162866994739,-0.072480782866478]],[[0.11229225248098,-0.07284414768219,-0.22907765209675],[0.033565171062946,-0.026746666058898,-0.0023858093190938],[0.039174195379019,0.13238500058651,0.061911281198263]],[[-0.013226483948529,0.0012825694866478,0.040420517325401],[0.047747828066349,0.062786653637886,-0.004531015176326],[0.06142545491457,0.086083605885506,-0.012884550727904]],[[-0.071176961064339,-0.061794515699148,-0.00034313736250624],[0.045075803995132,-0.10988812893629,0.086679257452488],[-0.15836381912231,-0.041583921760321,0.15225966274738]],[[0.067885629832745,0.108727902174,0.014866398647428],[0.13191197812557,-0.072208151221275,-0.16991659998894],[0.035969134420156,-0.113290540874,-0.23639090359211]],[[-0.064180225133896,0.017438922077417,0.033032160252333],[0.12529443204403,0.11101104319096,-0.1690221875906],[-0.076590329408646,0.026365758851171,-0.097754932940006]],[[-0.089415334165096,-0.075014531612396,0.0067883073352277],[0.01843767054379,0.043145023286343,0.088203407824039],[-0.020389463752508,-0.0066649443469942,0.05034027248621]],[[0.039543837308884,0.013458667322993,0.030291613191366],[-0.0015849624760449,0.092683620750904,-0.01364412996918],[0.04055517539382,0.10560395568609,0.017024844884872]],[[-0.011546848341823,0.022549653425813,-0.24791169166565],[0.014536619186401,0.098186112940311,0.10928089171648],[-0.13157665729523,0.13823592662811,0.13178601861]],[[0.00044522117241286,0.071969375014305,0.0024431732017547],[0.055472869426012,0.085844799876213,-0.0087973102927208],[-0.056665021926165,0.041606798768044,0.10353817790747]],[[0.0046360506676137,0.026550691574812,0.075625106692314],[0.03363973274827,0.0025552455335855,0.10213516652584],[-0.013221600092947,0.021900771185756,-0.093184612691402]],[[0.15440215170383,0.13204039633274,0.075236991047859],[-0.11298309266567,-0.0047617149539292,-0.1245661303401],[-0.055849611759186,0.051862120628357,-0.079541981220245]],[[0.097410313785076,0.029092472046614,0.081148400902748],[0.014153806492686,-0.041937828063965,-0.10033732652664],[0.057967003434896,-0.042338870465755,-0.06639900803566]],[[0.06396571546793,0.045731961727142,-0.14026209712029],[0.053647965192795,0.0069161942228675,-0.14919306337833],[0.10473012179136,0.18004862964153,-0.081860058009624]],[[0.10983621329069,0.03552521020174,-0.010465435683727],[0.046071331948042,0.0073972530663013,-0.044964209198952],[0.028657026588917,-0.10500901937485,-0.12014449387789]],[[0.17835809290409,0.0091076828539371,-0.057168181985617],[0.0049008731730282,-0.025558430701494,-0.11538500338793],[-0.0079709282144904,0.036875575780869,0.090391889214516]],[[0.077691413462162,-0.036837331950665,-0.10811015963554],[0.16523872315884,0.073444724082947,0.18237043917179],[0.10881798714399,0.07756070047617,-0.003555599367246]],[[0.053397227078676,0.045683745294809,0.015548373572528],[-0.012438005767763,-0.010063139721751,-0.052098520100117],[0.070843480527401,0.013726147823036,-0.0077184909023345]],[[-0.10578232258558,0.047135833650827,0.034419972449541],[-0.20771631598473,0.027862714603543,0.0544025413692],[0.089474387466908,-0.089950807392597,0.06202320754528]],[[-0.03132526949048,0.0084815854206681,-0.0019391537643969],[-0.22440958023071,-0.10440995544195,-0.23723669350147],[-0.054229117929935,-0.1009513437748,-0.094505541026592]]],[[[0.04797038435936,-0.094632811844349,0.0029746063519269],[-0.010724134743214,-0.011436002328992,-0.065988637506962],[-0.029147643595934,0.09803432226181,-0.072620220482349]],[[0.033539399504662,0.20418745279312,-0.059769075363874],[-0.093848705291748,-0.014548062346876,-0.036505796015263],[-0.077659770846367,-0.00017752202984411,0.021667394787073]],[[0.10334809869528,-0.073171190917492,-0.10461321473122],[0.17453926801682,0.057044323533773,0.080766014754772],[0.03304461017251,0.062792971730232,0.035249929875135]],[[0.023899484425783,0.070564821362495,-0.14089764654636],[-0.057239640504122,0.021861618384719,0.042937930673361],[0.0046781762503088,0.013688052073121,0.044202651828527]],[[-0.097614817321301,-0.0096735330298543,0.034836806356907],[0.055404420942068,0.04035422205925,0.070158258080482],[0.037360489368439,-0.0023520102258772,0.030035810545087]],[[-0.14612509310246,0.014366327784956,0.00030733793391846],[0.013600872829556,-0.035600129514933,-0.023207858204842],[0.18061794340611,-0.058327488601208,-0.14714583754539]],[[0.068147987127304,0.058281730860472,-0.15307325124741],[-0.12488873302937,-0.097124204039574,0.077201649546623],[-0.045367795974016,0.093467973172665,0.067649222910404]],[[0.025511976331472,-0.031324364244938,0.015096940100193],[0.1088879480958,-0.085301652550697,-0.10224751383066],[0.04972992092371,0.14577296376228,0.075560994446278]],[[0.075238928198814,0.14803898334503,0.11629918217659],[-0.14993673563004,0.0265695117414,0.036525618284941],[-0.13123862445354,-0.025097684934735,-0.1226309761405]],[[0.01024638209492,0.13237573206425,0.0088021773844957],[0.059966620057821,0.017026200890541,-0.0031916513107717],[0.015787687152624,-0.15048059821129,-0.057149149477482]],[[-0.060573168098927,0.047125604003668,-0.0019484873628244],[0.074666053056717,-0.051271837204695,0.20165567100048],[-0.081098601222038,-0.049740351736546,-0.032443080097437]],[[0.012450089678168,-0.0049225906841457,-0.22184003889561],[-0.0070462222211063,-0.031739413738251,0.071200974285603],[-0.19508017599583,0.011052434332669,0.045727640390396]],[[0.20134545862675,-0.085743255913258,0.051015645265579],[-0.00093566544819623,0.18820206820965,0.056360054761171],[-0.058237120509148,0.082866251468658,0.096401229500771]],[[-0.082462854683399,-0.018515285104513,-0.16418346762657],[0.091833062469959,-0.090114869177341,-0.094110883772373],[0.10578453540802,0.14135256409645,0.076741576194763]],[[-0.026390543207526,0.00027859531110153,0.071635760366917],[0.0083664273843169,-0.12042339146137,-0.0096398666501045],[-0.030702544376254,-0.11220666021109,-0.039023358374834]],[[0.10816035419703,-0.21014961600304,0.077178589999676],[0.07905375957489,0.010999909602106,-0.1052835136652],[0.13758434355259,-0.039239045232534,0.058832306414843]],[[0.0069608585909009,0.13484628498554,-0.012248592451215],[0.040780358016491,-0.027149295434356,-0.017591290175915],[-0.046489872038364,-0.18424512445927,-0.16595032811165]],[[0.12626866996288,-0.084430038928986,-0.017769558355212],[0.065044812858105,-0.065185129642487,-0.14328558743],[0.027384193614125,-0.054692175239325,-0.0032996332738549]],[[0.065655641257763,-0.045100621879101,-0.051969829946756],[-0.0034629739820957,0.10063505172729,0.03393380343914],[0.010309923440218,0.16251838207245,-0.023401569575071]],[[0.088504113256931,0.12385448813438,-0.062249910086393],[-0.085207067430019,0.07015236467123,-0.051857654005289],[-0.14344596862793,-0.10356468707323,-0.013899387791753]],[[0.046038318425417,0.094584681093693,0.027408733963966],[0.0026893883477896,0.071278095245361,0.038872443139553],[-0.044782135635614,-0.008690245449543,0.058836594223976]],[[-0.019201708957553,0.0121462456882,-0.091111220419407],[-0.10750553756952,0.007065980695188,0.04163783788681],[0.10056050121784,-0.017200877889991,0.059132378548384]],[[0.025879064574838,0.022939305752516,0.052764296531677],[0.022568877786398,0.018049785867333,-0.11915239691734],[0.089421346783638,0.11635708063841,0.12618309259415]],[[0.16481363773346,-0.092384330928326,-0.10768713802099],[0.07780634611845,0.042263891547918,-0.0043104100041091],[0.070683442056179,-0.01486191060394,-0.10346616059542]],[[0.10332132130861,-0.079642049968243,-0.055723931640387],[-0.10349050164223,0.13473352789879,-0.048836100846529],[-0.017768625169992,0.1039963811636,-0.06673576682806]],[[-0.016610603779554,0.045782689005136,-0.021060559898615],[-0.088201850652695,-0.052923463284969,0.020915221422911],[0.079974070191383,-0.012831353582442,-0.042771864682436]],[[-0.0095415711402893,-0.06340204179287,0.044159527868032],[-0.0091118952259421,0.0077363718301058,0.1107574030757],[-0.035534784197807,-0.023049373179674,-0.02306405454874]],[[-0.056638520210981,0.035082433372736,-0.029765395447612],[-0.054033298045397,0.12093472480774,-0.02146977186203],[0.059099163860083,0.040141023695469,0.12522748112679]],[[0.010211928747594,0.062099196016788,0.18444983661175],[0.010417039506137,-0.00051442364929244,-0.072796918451786],[0.033708788454533,-0.22558602690697,0.021515706554055]],[[0.043627701699734,-0.063409350812435,-0.016813887283206],[0.0088696563616395,-0.041265733540058,-0.053067412227392],[-0.047716230154037,0.0085004223510623,-0.014191282913089]],[[-0.11111910641193,0.08048128336668,-0.020272292196751],[0.0098728286102414,0.040410552173853,0.15390047430992],[-0.11650747060776,-0.060557171702385,0.04394543543458]],[[-0.041554626077414,0.096564792096615,0.029087048023939],[-0.067351005971432,0.14963653683662,0.020680021494627],[-0.014026606455445,0.018601957708597,0.00017199851572514]]],[[[0.02039061486721,0.14582724869251,0.24338540434837],[0.017152551561594,0.014177180826664,0.031720500439405],[-0.037457399070263,0.024396548047662,0.11921074986458]],[[0.063648000359535,0.033388629555702,0.075604200363159],[-0.0030010151676834,-0.0083429664373398,-0.0093989558517933],[-0.065524272620678,-0.080131322145462,-0.049264255911112]],[[0.097006097435951,0.026252524927258,0.089501857757568],[0.027851652354002,0.008007007651031,0.052884798496962],[0.028437424451113,-0.0055810902267694,0.15375548601151]],[[0.053908128291368,0.051287852227688,0.024294437840581],[0.15455855429173,0.1479439586401,0.14648631215096],[0.10481302440166,0.07384742051363,0.0021941247396171]],[[0.053884226828814,-0.13731421530247,-0.0094363735988736],[-0.025724599137902,0.10683615505695,0.019734987989068],[-0.072476655244827,-0.10518506169319,0.071196265518665]],[[0.042092997580767,0.0052427053451538,0.14191107451916],[-0.063033573329449,0.11882428079844,0.11867502331734],[0.08922266215086,-0.084895253181458,-0.13548521697521]],[[0.052856046706438,-0.076501995325089,-0.091679826378822],[0.087254405021667,-0.075536422431469,-0.0058583756908774],[-0.058007102459669,0.031378410756588,-0.025393519550562]],[[0.01142249815166,0.064033269882202,0.065410427749157],[-0.048158697783947,-0.024439392611384,-0.050778362900019],[-0.10613995790482,-0.18745425343513,0.097293950617313]],[[0.065719544887543,0.045626815408468,0.034245129674673],[0.065630406141281,0.037801094353199,0.077676877379417],[-0.048967216163874,0.065028376877308,-0.017114887014031]],[[0.13471248745918,0.11362510174513,0.079040601849556],[0.070773035287857,0.12371633946896,0.04488617554307],[0.17023250460625,0.0074951583519578,0.028102962300181]],[[-0.061004061251879,0.037978310137987,-0.090958155691624],[0.048863168805838,0.27862596511841,0.0079054767265916],[0.0079416874796152,0.17039026319981,0.069441862404346]],[[0.062008414417505,0.076210990548134,0.06641011685133],[0.042989812791348,0.02315472625196,0.13515342772007],[-0.070633642375469,-0.080345012247562,-0.0029197654221207]],[[-0.11326302587986,0.039506245404482,0.11518589407206],[-0.13016663491726,-0.05867850407958,0.038395263254642],[-0.075320839881897,0.1419495344162,-0.081357397139072]],[[-0.099529534578323,-0.069784313440323,-0.30353000760078],[0.073037192225456,0.056943900883198,-0.18925742805004],[0.0076063531450927,0.12930329144001,0.16276478767395]],[[-0.080071963369846,-0.14252658188343,0.074202731251717],[-0.045713152736425,-0.21915636956692,0.14541020989418],[0.031817261129618,-0.057914979755878,0.0080109992995858]],[[0.015084560960531,-0.063358284533024,-0.11831828951836],[0.081898495554924,0.0079095885157585,-0.14397200942039],[0.064058110117912,0.16851904988289,0.031574405729771]],[[-0.13743653893471,-0.0030515841208398,0.0094852885231376],[0.046682719141245,0.056452546268702,-0.078868374228477],[0.018116215243936,0.039411596953869,-0.06503438949585]],[[-0.13601092994213,-0.015659233555198,-0.12803912162781],[0.15502798557281,0.12475024163723,0.033666957169771],[-0.027415089309216,0.091752514243126,0.075994394719601]],[[0.08549540489912,-0.016048735007644,0.11735910177231],[-0.020215798169374,-0.031150881201029,-0.039098344743252],[0.037136185914278,0.048731870949268,0.060374673455954]],[[0.062331978231668,0.06622039526701,0.07895677536726],[0.090910352766514,-0.027071895077825,0.11537165939808],[-0.059985995292664,-0.20307502150536,0.01555138733238]],[[0.040811207145452,0.044665489345789,0.085903860628605],[0.098259977996349,-0.10869207233191,-0.062772504985332],[0.20889118313789,0.036467835307121,-0.036815192550421]],[[0.18191903829575,0.064044013619423,0.042790032923222],[0.067049741744995,0.045238133519888,0.16864551603794],[-0.051411278545856,-0.0051043340936303,0.055070370435715]],[[-0.054501593112946,-0.019946107640862,-0.15830241143703],[-0.044296495616436,0.27356052398682,0.017012517899275],[0.035159800201654,0.25620222091675,0.06618095189333]],[[-0.054470710456371,0.023317834362388,0.045438528060913],[0.12113134562969,-0.026536839082837,0.040873326361179],[0.064296007156372,0.061082452535629,-0.0038858794141561]],[[-0.1022555232048,-0.03258578851819,0.034640442579985],[-0.13731360435486,0.061675131320953,0.12939338386059],[-0.2179239243269,-0.017925510182977,-0.16549855470657]],[[-0.20814776420593,0.12252393364906,-0.11482836306095],[0.05029559507966,0.190802693367,0.13935929536819],[-0.14117427170277,0.12997363507748,0.11938871443272]],[[0.011682766489685,-0.026422064751387,-0.13670061528683],[0.015974637120962,0.032056234776974,-0.032181415706873],[-0.063554368913174,0.12439918518066,0.073350422084332]],[[-0.032478518784046,0.023066464811563,-0.082302108407021],[-0.037149962037802,0.20007713139057,-0.20212712883949],[-0.022479491308331,0.17035247385502,-0.04961046949029]],[[-0.071046240627766,0.17860208451748,-0.12165666371584],[0.024896487593651,0.15956497192383,-0.055500376969576],[0.077334441244602,0.058774445205927,0.0097048580646515]],[[0.0040377136319876,-0.1349069327116,0.062205780297518],[0.064270727336407,0.029285121709108,-0.052191555500031],[0.079524718225002,-0.095095604658127,0.032932352274656]],[[-0.090957574546337,-0.1087726354599,-0.20020151138306],[0.12501867115498,-0.063079632818699,-0.058127772063017],[0.073268011212349,0.12141602486372,0.0021127054933459]],[[0.0011183008318767,-0.0063849119469523,0.045013379305601],[-0.038842152804136,-0.16300854086876,-0.020908897742629],[0.047076866030693,0.022265899926424,-0.042859237641096]]],[[[-0.15015950798988,0.004352243617177,0.047871503978968],[0.0954859405756,-0.083781711757183,-0.0011535629164428],[-0.057502772659063,-0.041402373462915,0.0084973350167274]],[[0.094595424830914,0.0025973790325224,-0.099716663360596],[-0.040223471820354,-0.055853690952063,0.080019846558571],[0.10883190482855,-0.096000835299492,0.033147972077131]],[[0.24117045104504,-0.15963651239872,-0.32434490323067],[-0.32043674588203,0.058487702161074,-0.057031609117985],[0.036050569266081,0.013253353536129,-0.20079177618027]],[[0.051792223006487,-0.05699384957552,0.15352940559387],[-0.0058795972727239,-0.057157408446074,0.024015167728066],[0.016719644889235,0.24590259790421,-0.040907632559538]],[[0.019034376367927,-0.021873908117414,0.053583703935146],[0.062038529664278,0.010698248632252,-0.031481582671404],[-0.032786075025797,-0.0033682973589748,-0.008284468203783]],[[-0.17402449250221,-0.0026982547715306,0.084394082427025],[0.054497517645359,0.10529347509146,-0.029465641826391],[0.0220293905586,0.09192305803299,-0.027182025834918]],[[-0.010497980751097,0.1708462536335,0.082948245108128],[-0.012292477302253,-0.15631899237633,0.076519124209881],[-0.050606340169907,0.092660270631313,0.0029124582652003]],[[-0.10901952534914,0.061525624245405,-0.039389617741108],[0.040674652904272,-0.025200279429555,-0.097442664206028],[-0.079416394233704,-0.053583581000566,0.075922161340714]],[[0.031079418957233,0.014222677797079,-0.13542726635933],[-0.069587990641594,-0.044647134840488,0.023259114474058],[0.15708661079407,0.029483865946531,-0.13183970749378]],[[0.029431488364935,-0.11141587793827,0.026006560772657],[-0.098276391625404,-0.0071142530068755,0.16989287734032],[0.18506194651127,0.16917058825493,0.051657259464264]],[[0.018323833122849,0.021650172770023,0.08562596142292],[0.13802310824394,-0.1178812906146,-0.033676214516163],[-0.13297346234322,-0.033388111740351,0.028948061168194]],[[-0.0021018916741014,0.00040257253567688,0.057562805712223],[-0.033016707748175,0.099246710538864,0.014642619527876],[-0.056765284389257,0.035295445472002,0.062169399112463]],[[0.11740276962519,-0.12424945086241,-0.23844151198864],[-0.20631225407124,0.12170530855656,0.19974100589752],[0.29411238431931,-0.18919561803341,-0.193050339818]],[[0.016739174723625,-0.084838420152664,0.087832644581795],[0.041052430868149,0.074455566704273,-0.12198462337255],[0.0048413053154945,-0.0003820238634944,-0.096562162041664]],[[-0.083476990461349,-0.023365372791886,0.16598474979401],[0.058464489877224,-0.007986119017005,-0.11171892285347],[0.015577775426209,0.037413470447063,-0.031934596598148]],[[0.17287775874138,-0.035918850451708,-0.13451799750328],[-0.1818657964468,0.057086978107691,0.078077778220177],[0.067541643977165,0.014384164474905,-0.21815750002861]],[[-0.029539875686169,0.050106357783079,-0.21569095551968],[-0.045819830149412,-0.039701864123344,-0.059094715863466],[0.028031557798386,-0.14772312343121,-0.081652626395226]],[[0.0097144832834601,-0.037966668605804,0.044985357671976],[0.077963925898075,0.025808528065681,-0.022471101954579],[-0.0082416906952858,0.029471948742867,0.079211100935936]],[[-0.048234798014164,0.036594599485397,-0.15687443315983],[0.15615360438824,-0.17267067730427,0.039860501885414],[-0.020033081993461,0.01051645167172,0.1834170371294]],[[-0.13371428847313,-0.020617499947548,-0.032696776092052],[-0.011340365745127,0.074173040688038,-0.014010084792972],[0.08502783626318,-0.010581285692751,0.034843910485506]],[[-0.0047995131462812,-0.0078882817178965,-0.097531534731388],[-0.03151673451066,-0.0099552497267723,0.14060206711292],[0.13432873785496,-0.071242921054363,-0.099142603576183]],[[-0.0049718539230525,0.12667624652386,-0.077525667846203],[-0.12726300954819,-0.063502058386803,0.14129300415516],[0.091209173202515,0.17998290061951,-0.093983538448811]],[[-0.13455122709274,0.11797132343054,0.061421137303114],[-0.07562680542469,0.13151744008064,0.0037964358925819],[0.071083024144173,-0.19397926330566,-0.020168237388134]],[[-0.056740529835224,-0.057848069816828,0.006947960704565],[-0.055240910500288,0.047560192644596,0.02516601420939],[-0.0050993822515011,-0.025947192683816,-0.093239508569241]],[[0.019347967579961,0.025773214176297,0.0015975493006408],[-0.057267293334007,-0.069002009928226,-0.032257284969091],[-0.018053650856018,0.11341106146574,0.064118131995201]],[[-0.14378280937672,0.1117615327239,-0.018086867406964],[0.064054325222969,-0.10818140953779,-0.035421043634415],[0.091539949178696,-0.06970089673996,0.095773130655289]],[[0.033537816256285,0.06179603934288,-0.10547436028719],[0.012394458055496,0.014006259851158,-0.019114121794701],[0.080639459192753,-0.052346054464579,-0.011709000915289]],[[0.11321126669645,-0.24918437004089,0.094718553125858],[-0.030695866793394,0.14546884596348,0.070441238582134],[0.031034912914038,0.068942204117775,0.072426028549671]],[[0.1511205881834,-0.10767581313848,-0.04536921530962],[-0.080462984740734,0.10571441799402,0.056255843490362],[-0.0013547636335716,0.099615126848221,-0.15162967145443]],[[-0.044776927679777,0.039762306958437,0.0068963086232543],[0.024383805692196,-0.054953873157501,-0.12519052624702],[-0.049627605825663,0.01418477203697,0.065044492483139]],[[-0.28755244612694,0.15826204419136,-0.0010097706690431],[0.097777456045151,-0.16623915731907,-0.17417192459106],[-0.13574753701687,0.07901357114315,0.073078036308289]],[[-0.05449490249157,-0.087988868355751,0.022484634071589],[0.069390371441841,-0.10938288271427,-0.0066893082112074],[-0.0023061081301421,-0.022866506129503,-0.025413820520043]]],[[[0.149290189147,0.19055530428886,0.018641397356987],[-0.039364688098431,0.11901581287384,0.17131768167019],[0.036850988864899,0.076982200145721,0.13635441660881]],[[0.029054449871182,0.010835678316653,-0.039491929113865],[0.053877543658018,-0.0076123792678118,0.015903528779745],[-0.033589888364077,-0.068124562501907,0.037170071154833]],[[0.0080441096797585,-0.13235010206699,-0.14703392982483],[0.16447408497334,0.11243192106485,-0.028766700997949],[0.14558233320713,-0.0071604931727052,0.039385322481394]],[[0.031107788905501,-0.12938842177391,-0.020427767187357],[0.19566528499126,0.24781054258347,-0.012574308551848],[0.10482902079821,0.035328190773726,0.12998224794865]],[[-0.041326005011797,0.063366875052452,-0.049604624509811],[0.021381951868534,-0.0059152571484447,-0.002826138632372],[0.022797973826528,0.032184440642595,0.018284665420651]],[[0.2894711792469,-0.22691352665424,0.060317773371935],[0.15910977125168,-0.042779162526131,-0.06139675155282],[-0.13489827513695,0.11003506183624,-0.0062705264426768]],[[0.088424161076546,-0.042386375367641,-0.14578863978386],[0.082994274795055,0.15406702458858,0.0032747334334999],[0.089835964143276,-0.02171460352838,-0.016632735729218]],[[0.12962612509727,0.013388641178608,0.0064947162754834],[0.14116059243679,-0.11440568417311,-0.073152251541615],[-0.022028109058738,0.050457511097193,-0.010708224959671]],[[0.17283011972904,-0.036540556699038,-0.22324611246586],[-0.045784473419189,0.20886674523354,-0.0066217854619026],[-0.11526111513376,-0.042025811970234,0.07567972689867]],[[-0.068575501441956,0.1127302646637,0.04082053899765],[-0.068281106650829,0.1404352337122,0.033008936792612],[0.15301689505577,-0.0065812594257295,0.088400065898895]],[[0.094512365758419,0.13840802013874,-0.090130276978016],[-0.0041326466016471,0.043265867978334,-0.035349063575268],[0.026779117062688,0.022769942879677,0.053575217723846]],[[0.16057766973972,0.088576517999172,0.0054223267361522],[0.10192946344614,0.032779682427645,-0.038019482046366],[-0.059254877269268,0.036882773041725,-0.014769138768315]],[[0.13817158341408,0.025854710489511,-0.001282079028897],[0.1145498752594,0.027629870921373,0.04974465072155],[-0.14611232280731,-0.18916580080986,0.094094887375832]],[[-0.32625144720078,-0.13842105865479,0.039256066083908],[0.31130316853523,0.062234275043011,-0.25454756617546],[0.086004167795181,-0.012868450023234,0.032215315848589]],[[-0.019675681367517,-0.029306219890714,-0.021297313272953],[-0.073298931121826,-0.094677187502384,-0.131800994277],[-0.15616272389889,-0.053558677434921,-0.013629641383886]],[[0.0091399159282446,0.13396914303303,0.063288755714893],[0.07741454988718,-0.02344367466867,-0.10263900458813],[0.17311728000641,-0.14168128371239,-0.094917118549347]],[[0.072202809154987,0.094469867646694,0.04735554754734],[-0.10938455909491,-0.14032672345638,-0.017863541841507],[0.039247889071703,-0.15191140770912,-0.14482156932354]],[[0.026353638619184,0.069045692682266,0.0092290472239256],[0.10205096751451,-0.076005198061466,-0.15778292715549],[0.11112454533577,-0.1483433842659,-0.23125456273556]],[[0.17933352291584,0.1260230243206,-0.13490264117718],[-0.13737945258617,0.03833831846714,-0.010088404640555],[0.06998585909605,-0.11906074732542,-0.050311051309109]],[[-0.058717116713524,-0.10855700820684,-0.035241115838289],[-0.10038883239031,-0.029417438432574,-0.097027748823166],[0.055047288537025,-0.11552266031504,-0.041518896818161]],[[0.19889932870865,-0.058998439460993,-0.11381680518389],[-0.021266376599669,0.14884388446808,-0.0061180214397609],[0.033463001251221,0.15567101538181,0.18959967792034]],[[-0.055811900645494,0.072737962007523,0.049923092126846],[-0.018744301050901,0.0087695345282555,0.025974601507187],[0.033654905855656,-0.033159717917442,0.16641966998577]],[[-0.18652826547623,-0.12731386721134,-0.056695371866226],[0.14127930998802,0.000364819803508,0.16218817234039],[0.11975121498108,0.1624132245779,0.12044119089842]],[[-0.13834527134895,-0.15989856421947,-0.058546479791403],[0.035535171627998,0.084846332669258,-0.1110038459301],[0.045970067381859,-0.044368349015713,-0.021111857146025]],[[-0.080714754760265,-0.10257145017385,0.014992021024227],[-0.12887886166573,-0.25848087668419,-0.04148905351758],[0.024078484624624,-0.1369015276432,-0.14984934031963]],[[0.1654447466135,0.015332014299929,0.018527500331402],[0.096261858940125,0.087402865290642,-0.090641133487225],[0.027002496644855,-0.024953922256827,0.011089579202235]],[[-0.02805519849062,-0.027545966207981,-0.0093577224761248],[0.084550008177757,0.0098209027200937,-0.05892039462924],[0.045317001640797,0.03099113702774,-0.0094796447083354]],[[0.023655308410525,0.14028657972813,0.1388227045536],[-0.074546493589878,0.21825933456421,0.01905039511621],[0.19804894924164,-0.085318170487881,-0.0016162645770237]],[[0.084339298307896,-0.045259043574333,0.067725919187069],[0.14389112591743,0.06286034733057,-0.32066088914871],[0.092342279851437,0.098623193800449,-0.026709420606494]],[[-0.099303521215916,-0.13549098372459,0.081687174737453],[-0.089487724006176,-0.11103401333094,-0.035180177539587],[0.020759034901857,-0.03567249327898,-0.039089974015951]],[[-0.070203982293606,-0.081125617027283,-0.075428672134876],[-0.05432665720582,0.003854243317619,-0.09863355755806],[0.062569357454777,0.10796164721251,0.056949649006128]],[[-0.095800451934338,-0.030407341197133,-0.015212421305478],[-0.011174586601555,-0.050029046833515,-0.032819598913193],[-0.099346600472927,-0.070767216384411,-0.12474679946899]]],[[[-0.04064704105258,-0.10736173391342,0.098872937262058],[-0.0026519256643951,-0.10615617036819,0.086993239820004],[-0.0049835219979286,0.039402205497026,-0.082749344408512]],[[-0.13392598927021,-0.058039668947458,0.10773716121912],[-0.019464764744043,0.052637919783592,0.1278088837862],[-0.065439462661743,-0.047221537679434,0.034212816506624]],[[0.1215530410409,0.093935556709766,0.024209229275584],[0.22568476200104,0.091610208153725,-0.062033616006374],[0.087412260472775,0.040980093181133,0.064460530877113]],[[-0.026208061724901,0.005363380536437,0.10289371013641],[0.16061469912529,0.058704387396574,-0.057270597666502],[0.049084689468145,-0.039405155926943,-0.0060720797628164]],[[0.02778927795589,0.090231098234653,-0.053441178053617],[-0.0020372183062136,-0.0013358436990529,-0.02647689729929],[0.049647551029921,0.08652526140213,-0.021436899900436]],[[-0.16694551706314,-0.046278610825539,0.065350569784641],[-0.0003835063544102,-0.075201459228992,-0.098338648676872],[-0.042517721652985,-0.093311175704002,-0.033756941556931]],[[-0.12984509766102,-0.033710695803165,0.12187834084034],[-0.16958738863468,0.063209228217602,-0.050400648266077],[-0.039999946951866,-0.025405501946807,0.060007721185684]],[[0.01881636492908,0.016974650323391,0.016978114843369],[-0.17294973134995,-0.1623465269804,-0.10320798307657],[-0.10137538611889,0.010467144660652,-0.051663991063833]],[[-0.015913700684905,-0.059218510985374,-0.0093814823776484],[-0.059722401201725,-0.022958349436522,0.16903501749039],[0.082559563219547,-0.030330298468471,-0.020906547084451]],[[0.10718311369419,0.20985779166222,0.10469441115856],[0.30099907517433,0.29736649990082,0.13990317285061],[0.0068263239227235,0.13967272639275,-0.14281027019024]],[[0.16979376971722,0.042921230196953,-0.31975224614143],[0.046816844493151,0.16812507808208,-0.011429640464485],[0.059163924306631,0.089141175150871,0.01133531704545]],[[-0.070634931325912,-0.012876608408988,0.048789542168379],[-0.10915739089251,-0.0074146534316242,0.038419701159],[-0.16752544045448,0.15367567539215,0.03107082284987]],[[0.090940020978451,0.031186873093247,-0.075053989887238],[0.019203115254641,0.040508959442377,-0.020436184480786],[0.059786643832922,-0.15382143855095,-0.079415045678616]],[[-0.060623452067375,-0.20141324400902,-0.14325530827045],[0.013066160492599,0.12481968849897,-0.010786384344101],[-0.025681821629405,-0.019468761980534,-0.1214305460453]],[[-0.010876966640353,0.041657544672489,0.066448539495468],[0.02721013687551,0.061551626771688,-0.070954099297523],[0.057810500264168,-0.058410357683897,0.024039201438427]],[[-0.2961074411869,-0.13722766935825,-0.29110848903656],[-0.087001517415047,0.015414400026202,0.049976285547018],[0.022713886573911,0.14379434287548,-0.087072923779488]],[[0.011466234922409,-0.058035310357809,-0.10733453184366],[0.057493288069963,-0.16949555277824,-0.2515797317028],[-0.065027020871639,-0.16411009430885,-0.12517403066158]],[[-0.051638506352901,-0.15340277552605,-0.024934154003859],[0.074867218732834,0.063979044556618,-0.10537797957659],[-0.0095656970515847,-0.09182420372963,-0.036100998520851]],[[-0.16098472476006,0.033382229506969,0.0020988266915083],[-0.028579883277416,0.000576926919166,0.0051044244319201],[-0.078382790088654,0.17530430853367,-0.066150434315205]],[[-0.030045602470636,-0.11942289024591,-0.0069915866479278],[-0.10247863829136,-0.13121974468231,0.00061358825769275],[-0.085396252572536,-0.019286846742034,-0.022871147841215]],[[-0.19864201545715,0.091375134885311,0.073240727186203],[-0.0095829339697957,0.22276739776134,0.18187998235226],[-0.19495534896851,0.14285692572594,-0.026773663237691]],[[-0.04712737351656,-0.096951395273209,0.031368482857943],[-0.11397933214903,-0.03466572239995,-0.011718825437129],[0.01537489425391,0.027227493003011,-0.11289236694574]],[[0.21425399184227,0.2082432359457,0.10807490348816],[-0.0039031913038343,-0.0097720799967647,0.0026427353732288],[-0.030608801171184,-0.10897963494062,0.19858291745186]],[[-0.064836584031582,0.038878098130226,-0.036633465439081],[0.037513911724091,-0.036180775612593,-0.017301101237535],[-0.050896398723125,0.047299612313509,0.0012003651354462]],[[0.016903392970562,-0.072624273598194,0.068777158856392],[0.001314043183811,-0.19493919610977,-0.11870750784874],[-0.065516397356987,0.036998875439167,-0.03039314225316]],[[0.049935832619667,0.010965163819492,0.013631223700941],[-0.10521264374256,0.0095636146143079,0.093570180237293],[0.012985289096832,-0.011333442293108,0.017743168398738]],[[0.046243891119957,-0.011562551371753,-0.090311445295811],[0.070542626082897,-0.043535225093365,-0.051655821502209],[0.11398791521788,-0.078712433576584,0.054428055882454]],[[0.050948441028595,0.032397467643023,-0.067390307784081],[0.10062252730131,0.03457298502326,0.061298970133066],[0.015319989994168,0.071150556206703,-0.23054388165474]],[[-0.051332592964172,-0.20293216407299,-0.17386676371098],[-0.032788097858429,-0.0089435763657093,0.0789809897542],[-0.11281894892454,0.0032893097959459,0.0349390655756]],[[0.077195361256599,0.085608690977097,-0.050337243825197],[0.13489404320717,-0.054989505559206,-0.09691496938467],[0.024256486445665,-0.063488014042377,-0.058441884815693]],[[-0.14698407053947,-0.021957004442811,-0.019234843552113],[0.0078289341181517,0.01700546592474,0.089214153587818],[0.080631658434868,-0.030592234805226,0.095694243907928]],[[-0.082815818488598,-0.073558203876019,0.036061659455299],[-0.030301135033369,-0.065488524734974,-0.080001763999462],[0.026012262329459,0.018083887174726,0.053125869482756]]]],"nOutputPlane":64,"kW":3,"kH":3,"bias":[-0.0055284616537392,-0.0016456062439829,-0.010900143533945,0.0079343998804688,0.0011974744265899,0.0041075455956161,-0.0042419796809554,-0.0019682564307004,0.021093482151628,-0.0063817976042628,0.001328986370936,0.006143799982965,0.0047061983495951,-0.001084188115783,0.00040093821007758,-0.0077343606390059,-0.0096843335777521,0.0060163596644998,-0.0049961595796049,-0.0083490777760744,-0.0090779904276133,-0.0026080191601068,0.0028288264293224,0.0014093846548349,-0.0090899653732777,-0.054744467139244,-0.00053572072647512,-0.0062636453658342,0.0025194180198014,-0.035004939883947,-0.0074321567080915,-0.0061973305419087,-0.0051793539896607,-0.005410757381469,-0.010749697685242,0.004917164798826,-0.073217697441578,-0.0042323963716626,-0.0083625810220838,-0.012309921905398,-0.0016093823360279,-0.0070675662718713,-0.015247606672347,-0.020686130970716,-0.0018924218602479,-0.0021064896136522,-0.0061867185868323,-0.0037598311901093,-0.0059700524434447,-0.011123686097562,0.0021727662533522,-0.001356233144179,-0.005871050991118,0.0027931968215853,-0.0097296535968781,-0.0061278231441975,0.0035998742096126,-0.009953017346561,-0.0040099839679897,-0.0028562811203301,0.0046433466486633,-0.0085962163284421,0.0013404469937086,0.01114377938211],"nInputPlane":32},{"weight":[[[[0.031783655285835,-0.10777265578508,0.064630672335625],[0.09458827227354,-0.10881417989731,0.054013811051846],[0.034361720085144,0.05779617652297,-0.093907810747623]],[[-0.078847967088223,0.19434030354023,0.071952857077122],[0.13939805328846,0.023292286321521,-0.050877939909697],[-0.025216756388545,-0.024588633328676,-0.062959529459476]],[[0.02765641361475,0.018486935645342,-0.028952734544873],[-0.0022483861539513,-0.09179375320673,-0.052602969110012],[0.050473928451538,-0.069303564727306,-0.21186353266239]],[[-0.057293023914099,-0.019552335143089,-0.016063800081611],[-0.086361825466156,0.065434277057648,0.048776984214783],[-0.0033196683507413,-0.090425245463848,0.12232578545809]],[[0.10594497621059,-0.2152906358242,0.020718481391668],[-0.064950570464134,-0.061155714094639,-0.032492727041245],[0.02288006991148,-0.037732280790806,-0.0086100334301591]],[[-0.020717216655612,-0.023646062240005,-0.033291220664978],[-0.017519054934382,0.029943585395813,-0.074527509510517],[0.062150973826647,-0.030446942895651,0.049894016236067]],[[0.003657941473648,0.040032248944044,0.0038123140111566],[-0.029464745894074,-0.06113662943244,-0.013256523758173],[-0.071225918829441,0.10538111627102,0.074577383697033]],[[0.1649973988533,-0.056201916188002,0.1373165845871],[-0.074080057442188,-0.17709827423096,-0.11400318145752],[-0.1411866247654,-0.093619972467422,0.021639643236995]],[[-0.070133455097675,-0.071829818189144,-0.03099955804646],[-0.067907154560089,0.12105921655893,0.061428427696228],[0.028511542826891,0.0065079028718174,0.06315828114748]],[[-0.077064454555511,-0.040749285370111,-0.078947596251965],[-0.04602974280715,-0.098096869885921,0.0017767315730453],[-0.096845924854279,0.087852366268635,-0.072518669068813]],[[-0.16600869596004,0.016817258670926,-0.13514034450054],[-0.033097997307777,-0.011501723900437,-0.053023215383291],[-0.048014719039202,-0.031522937119007,0.0076956795528531]],[[-0.043418642133474,0.12821869552135,-0.058543242514133],[0.021510314196348,-0.047954544425011,0.030828883871436],[0.14822885394096,-0.0046374341472983,-0.044349856674671]],[[0.024768739938736,-0.085639521479607,-0.061576351523399],[-0.035290945321321,-0.052087251096964,-0.035663887858391],[0.014199038036168,-0.021597543731332,-0.017760347574949]],[[-0.03864411264658,0.053973142057657,0.095430709421635],[0.0086760642006993,0.10980246961117,-0.037878349423409],[0.091166064143181,0.023250171914697,-0.036735244095325]],[[-0.12655252218246,-0.14278523623943,-0.14156749844551],[0.01725641451776,0.049930106848478,0.15286311507225],[-0.0048983194865286,0.10988987237215,-0.00059363438049331]],[[0.054192513227463,-0.099028065800667,0.042052689939737],[0.085716813802719,-0.12377865612507,0.077193386852741],[-0.043882202357054,0.047932852059603,-0.071577355265617]],[[-0.097008667886257,0.063167296350002,0.035216223448515],[0.039535738527775,-0.12219978123903,0.018017008900642],[-0.015516623854637,-0.0040374151431024,0.039464045315981]],[[0.039327211678028,0.025744264945388,-0.12987248599529],[0.11903186142445,-0.040857490152121,-0.081036686897278],[-0.059503503143787,0.048357933759689,-0.031391721218824]],[[-0.016174305230379,0.019751803949475,-0.1087913364172],[0.14167636632919,0.059403542429209,0.033249579370022],[0.098390586674213,0.036169085651636,0.042985741049051]],[[0.1204524859786,0.090139634907246,0.1729674488306],[0.18948379158974,0.0096787624061108,0.25056719779968],[0.052880220115185,0.039761107414961,0.13167090713978]],[[-0.063005544245243,0.14003813266754,-0.18034973740578],[0.0013743716990575,0.029287798330188,-0.016044523566961],[0.042534478008747,0.015068778768182,-0.015902372077107]],[[-0.022768706083298,-0.035789985209703,0.066863469779491],[-0.03039307333529,-0.050652518868446,0.027460988610983],[0.015375318937004,-0.0056711789220572,0.06994516402483]],[[0.049138505011797,0.057808510959148,-0.010048863478005],[-0.021321322768927,0.033904679119587,0.045882869511843],[0.022585485130548,0.0029757427982986,-0.02729476429522]],[[0.012931392528117,-0.027740057557821,-0.049035996198654],[-0.049173638224602,0.0014106609160081,-0.099779583513737],[0.016389299184084,-0.073593713343143,-0.058150142431259]],[[0.18108366429806,0.10460633784533,0.11412805318832],[0.16766488552094,-0.050538312643766,0.17524705827236],[0.024191105738282,-0.13443376123905,-0.083717480301857]],[[-0.03131752833724,-0.079219840466976,-0.064514122903347],[0.060220908373594,0.086489610373974,0.11143934726715],[0.065855823457241,0.10103606432676,-0.03708029165864]],[[-0.038454826921225,-0.08829016238451,0.041219566017389],[-0.069382399320602,0.053791116923094,0.07789571583271],[0.061716739088297,-0.0085473014041781,-0.06115335971117]],[[-0.071928381919861,-0.01659270003438,-0.12959530949593],[-0.20528699457645,-0.033271044492722,0.056323409080505],[-0.048698160797358,-0.076902106404305,-0.049550879746675]],[[0.12680001556873,-0.022574782371521,0.0032977729570121],[-0.089231878519058,-0.12078643590212,-0.10791528970003],[0.031126517802477,-0.076899491250515,0.14391440153122]],[[-0.11281231045723,-0.059967510402203,-0.10458048433065],[-0.13339228928089,0.044254500418901,-0.18310107290745],[-0.061849690973759,-0.065556652843952,-0.041729021817446]],[[0.03004384227097,-0.1283516138792,-0.019785383716226],[-0.045286759734154,0.022255169227719,0.046488251537085],[0.039058860391378,0.15862290561199,-0.011724885553122]],[[-0.074096739292145,0.037537131458521,0.047886550426483],[-0.049319501966238,-0.023928644135594,-0.024124240502715],[0.021237960085273,0.013145000673831,0.035677410662174]],[[-0.017999356612563,-0.13006222248077,-0.076019488275051],[-0.084866389632225,-0.083625584840775,-0.036570802330971],[-0.030658354982734,0.049595773220062,0.06845223903656]],[[-0.066893592476845,-0.10185354202986,0.11422074586153],[0.03531751409173,0.03193823993206,-0.11476930975914],[0.016391376033425,-0.042224261909723,-0.11879580467939]],[[-0.046547025442123,-0.011455945670605,0.14501501619816],[-0.11554348468781,0.028137063607574,0.18542437255383],[-0.004707517568022,0.026015162467957,0.09697537124157]],[[0.036449570208788,-0.047222975641489,0.020117940381169],[-0.16637283563614,-0.094951182603836,0.11080311238766],[-0.051014736294746,0.096839398145676,-0.047497805207968]],[[-0.17543146014214,-0.10191756486893,0.044428817927837],[-0.17344573140144,-0.11085041612387,0.1333831846714],[-0.149278819561,0.033527873456478,0.15958321094513]],[[-0.014083976857364,0.0024170360993594,0.04879217222333],[-0.096874743700027,0.11775786429644,0.13512308895588],[0.049318552017212,-0.034818962216377,0.082127071917057]],[[-0.049145583063364,-0.09731475263834,-0.056739017367363],[0.10875814408064,0.056871570646763,-0.12452630698681],[0.044687245041132,-0.032122079282999,-0.083771839737892]],[[0.028208676725626,0.026032079011202,0.065593488514423],[0.024453949183226,0.063812084496021,0.025164566934109],[-0.10177762061357,-0.012552203610539,0.11851603537798]],[[-0.13771130144596,-0.1170899271965,-0.068865589797497],[0.052727654576302,-0.017134364694357,0.052711106836796],[-0.061001602560282,0.042303889989853,0.088539309799671]],[[0.021387474611402,0.019737249240279,0.057404905557632],[-0.062685139477253,0.057250309735537,0.027857147157192],[0.0062411408871412,0.14025980234146,-0.062773562967777]],[[-0.12358544766903,-0.0041810874827206,0.023892065510154],[-0.038254082202911,0.070740394294262,0.052642323076725],[-0.0062537682242692,-0.026049703359604,0.018608521670103]],[[0.070497632026672,0.042020544409752,-0.0014544341247529],[0.042829681187868,0.01487525459379,-0.090615496039391],[0.053035896271467,-0.034443099051714,-0.10313658416271]],[[0.014446941204369,-0.10087566822767,-0.04847214743495],[-0.077724047005177,-0.03221046179533,0.060195159167051],[0.0024366059806198,0.016046306118369,-0.051519513130188]],[[-0.13252258300781,-0.080353528261185,0.027016213163733],[-0.013891590759158,-0.052593950182199,-0.04924326390028],[-0.18190214037895,0.029912680387497,-0.028265058994293]],[[0.029327234253287,-0.032330770045519,0.0084785250946879],[-0.024918457493186,-0.081505008041859,0.18775732815266],[-0.087792560458183,0.037399549037218,0.078226707875729]],[[-0.020056907087564,-0.013928350061178,0.060348585247993],[-0.055811192840338,-0.069045975804329,0.10241878777742],[-0.08900398015976,0.019091883674264,0.061493709683418]],[[-0.043551806360483,0.027356350794435,0.087850973010063],[0.080274969339371,-0.13065832853317,0.0077890125103295],[-0.039811708033085,-0.024278106167912,0.085001640021801]],[[-0.024882076308131,-0.035013556480408,-0.054394759237766],[-0.045871950685978,0.070429183542728,0.012568456120789],[0.012825230136514,0.039805755019188,0.012285271659493]],[[-0.076830364763737,0.01190931443125,-0.12512758374214],[-0.11736357212067,-0.037677060812712,0.061127707362175],[-0.024327602237463,-0.059531923383474,0.018022570759058]],[[-0.18237608671188,-0.04309680685401,-0.081910334527493],[0.049355834722519,-0.0022251554764807,0.19296376407146],[0.055464282631874,0.0089997425675392,3.3212782000192e-05]],[[0.098524197936058,-0.048232890665531,-0.19160640239716],[0.14661967754364,-0.07798694819212,-0.10087879747152],[-0.082310512661934,0.042891286313534,-0.076836824417114]],[[0.086118623614311,0.16597545146942,-0.037987489253283],[0.012703618966043,-0.043188188225031,0.055831123143435],[-0.00076472474029288,0.091691575944424,-0.038740795105696]],[[-0.030236748978496,-0.019445437937975,-0.043061554431915],[-0.0103551261127,0.078645624220371,-0.044175874441862],[0.062686547636986,-0.031526125967503,0.01048120111227]],[[0.078174903988838,0.015266533941031,0.15221586823463],[-0.0027091484516859,-0.015432216227055,-0.051991060376167],[-0.034393835812807,0.059152729809284,0.023821281269193]],[[0.10087788850069,-0.077313825488091,0.18588446080685],[-0.14115929603577,0.0233667884022,0.15702159702778],[0.13448794186115,0.12186366319656,0.29513427615166]],[[0.050196047872305,-0.053896706551313,-0.058853249996901],[0.091565780341625,0.082911968231201,0.094755738973618],[-0.30321300029755,0.0067602042108774,0.068859189748764]],[[-0.024802193045616,0.14367166161537,0.088507257401943],[0.10336032509804,-0.0091715482994914,0.087220698595047],[-0.086556389927864,-0.0028471779078245,-0.073723934590816]],[[0.014630590565503,0.14616048336029,-0.031183233484626],[0.086490362882614,0.11245428025723,0.075624696910381],[0.037616223096848,0.098252564668655,-0.066479668021202]],[[-0.011592355556786,-0.079691231250763,-0.10322993248701],[-0.078118890523911,0.10478232055902,-0.0036538455169648],[0.077912300825119,0.0072337100282311,0.020542958751321]],[[0.043362069875002,0.02548161149025,-0.11671963334084],[0.092772044241428,-0.063047900795937,-0.11342809349298],[0.055634126067162,-0.057915065437555,-0.05271203815937]],[[0.15388409793377,0.088728725910187,-0.08088069409132],[0.047366250306368,-0.05162401497364,-0.047116179019213],[0.092431128025055,0.00602698745206,-0.060084730386734]],[[0.20321904122829,0.08776817470789,-0.13859984278679],[0.097556337714195,-0.038204964250326,0.009925389662385],[-0.11802142858505,-0.16035285592079,-0.096424333751202]]],[[[-0.087328799068928,-0.03440847992897,-0.014969915151596],[-0.030086437240243,-0.029275301843882,-0.013506503775716],[0.091355510056019,0.0738126039505,0.016129679977894]],[[0.0053030634298921,0.064482904970646,-0.038713868707418],[0.087218262255192,-0.0005025690770708,-0.012901241891086],[0.0077081467024982,0.063428416848183,-0.057180538773537]],[[-0.059623997658491,0.10655049979687,-0.030520549044013],[0.039757799357176,0.049134731292725,0.074729457497597],[0.081457979977131,0.0021250958088785,0.067486084997654]],[[-0.23314549028873,-0.043743140995502,0.074229329824448],[-0.015808464959264,-0.31542482972145,0.040635872632265],[-0.02104402706027,-0.070078030228615,-0.071338996291161]],[[0.087770693004131,0.041886225342751,-0.082821875810623],[0.10006011277437,-0.089017987251282,-0.065015994012356],[-0.016136549413204,-0.055812895298004,0.0028711420018226]],[[0.0084330793470144,-0.042913015931845,0.068778954446316],[-0.026500433683395,-0.046034380793571,0.032927837222815],[0.042590752243996,0.0034280919935554,-0.077295526862144]],[[-0.10021850466728,0.065746627748013,-0.058058477938175],[-0.028861589729786,0.0071062208153307,-0.04208792001009],[0.061636615544558,-0.074756622314453,-0.040060184895992]],[[-0.053223945200443,-0.082309946417809,0.038047686219215],[-0.12984472513199,0.014405261725187,0.019402576610446],[-0.003474383149296,0.033069264143705,0.071083225309849]],[[0.015215639024973,-0.014726362191141,-0.018684472888708],[0.045830029994249,0.092618204653263,-0.13337282836437],[0.027887646108866,0.050827231258154,-0.033779367804527]],[[-0.03592823445797,-0.024614484980702,0.0066265952773392],[0.059129901230335,0.03065432049334,0.14243318140507],[0.098138645291328,0.11391735821962,-0.072999536991119]],[[0.0049462392926216,0.069262593984604,-0.11030576378107],[0.038855355232954,-0.035014156252146,0.023622097447515],[-0.07020203769207,-0.020955925807357,0.0437978990376]],[[-0.043845795094967,0.078591175377369,-0.080488190054893],[-0.00092510867398232,0.11071245372295,0.076949782669544],[-0.18414759635925,-0.0096893813461065,-0.0044409376569092]],[[0.057379703968763,0.0404052734375,-0.081485599279404],[-0.077481910586357,0.11886435002089,0.032232921570539],[-0.12168721854687,-0.10456243157387,0.072316944599152]],[[0.069032587110996,-0.081544034183025,-0.034905854612589],[0.05061350017786,0.063341535627842,0.036889404058456],[0.048875063657761,-0.060119897127151,-0.054959394037724]],[[-0.046543054282665,0.062182314693928,0.061185505241156],[-0.17485551536083,-0.065665006637573,0.071865804493427],[0.023659246042371,-0.071564570069313,0.05118141323328]],[[-0.025671137496829,-0.013950439170003,0.047785766422749],[-0.066654875874519,-0.014845974743366,0.071083299815655],[-0.0099053550511599,-0.041986633092165,-0.054026462137699]],[[-0.024242302402854,-0.0069082090631127,-0.025519939139485],[0.022546896710992,-0.033905319869518,-0.086964033544064],[0.030227478593588,-0.029460076242685,-0.10350862890482]],[[0.051066461950541,0.15420247614384,-0.092919163405895],[0.037917766720057,0.16796426475048,-0.082120180130005],[-0.11927556991577,0.0086654638871551,0.0081871468573809]],[[-0.15122769773006,0.12260095775127,0.018796214833856],[0.01256113871932,0.012644718401134,0.078323379158974],[-0.025337507948279,0.010560931637883,-0.03138654306531]],[[0.012339943088591,-0.015493921935558,0.14133077859879],[-0.079570814967155,-0.16022242605686,0.039244446903467],[0.012273452244699,-0.1114751547575,-0.02496469207108]],[[0.0051008872687817,0.05083504319191,0.074704714119434],[-0.0051722000353038,0.044205363839865,0.0031783899758011],[-0.038624610751867,0.013150840066373,-0.065609067678452]],[[0.1160801127553,-0.13130792975426,0.12920369207859],[0.10224633663893,-0.040402743965387,-0.075476974248886],[-0.080987922847271,-0.083928011357784,-0.096410796046257]],[[0.044937718659639,0.026528378948569,-0.09987235814333],[-0.0052306251600385,0.14615102112293,0.016135327517986],[-0.074540182948112,-0.037873014807701,0.083898209035397]],[[0.00029250973602757,-0.20638830959797,-0.092307791113853],[-0.023200267925858,-0.087113529443741,-0.089083522558212],[-0.028903340920806,-0.057263098657131,-0.063861772418022]],[[-0.047181826084852,0.098014190793037,-0.0014320178888738],[0.13493186235428,-0.079538308084011,-0.067008577287197],[-0.022098328918219,-0.036745954304934,-0.043020505458117]],[[0.083970464766026,0.06429348886013,-0.081716656684875],[-0.015877289697528,0.13470354676247,0.018763657659292],[-0.06531822681427,-0.034650396555662,-0.029040049761534]],[[0.071429289877415,-6.1011371144559e-05,0.032314982265234],[-0.031237881630659,-0.057808961719275,-0.030928179621696],[0.04271087422967,-0.13829758763313,-0.071853443980217]],[[0.097583279013634,0.024122321978211,-0.065472953021526],[0.12896955013275,0.0021245845127851,-0.075596898794174],[0.08863677829504,-0.040604185312986,-0.13492491841316]],[[0.073476873338223,-0.15115810930729,-0.054320383816957],[0.059402961283922,-0.018164925277233,-0.18009662628174],[0.02704268693924,-0.059362675994635,0.084423206746578]],[[-0.020485555753112,-0.018497308716178,-0.062634810805321],[0.10210429131985,-0.1050361841917,-0.012064621783793],[0.088467255234718,0.054402824491262,0.040684122592211]],[[0.0066759190522134,0.063950024545193,0.0071157836355269],[-0.18512991070747,0.08571769297123,0.085973232984543],[0.018809150904417,-0.044377516955137,-0.0079325679689646]],[[-0.13894714415073,-0.067695178091526,0.10264582186937],[-0.070379957556725,-0.0085235713049769,-0.074942924082279],[0.0051925126463175,-0.086438864469528,-0.00136312993709]],[[0.018215049058199,0.0058110328391194,-0.12081747502089],[-0.12767288088799,-0.0047482592053711,0.035395301878452],[0.044642884284258,0.038474004715681,0.037202626466751]],[[-0.026176668703556,0.014758789911866,-0.041801068931818],[-0.0092421621084213,-0.037946037948132,-0.0050204740837216],[0.043512236326933,0.024157805368304,-0.045569095760584]],[[-0.080670572817326,-0.032952647656202,0.0022398880682886],[-0.079016350209713,0.0092929191887379,0.10883117467165],[-0.01857041195035,-0.045142255723476,-0.041175581514835]],[[-0.062778405845165,-0.23190531134605,0.083963789045811],[0.051155209541321,-0.3133801817894,-0.046737004071474],[0.02050737850368,0.033452704548836,-0.12501387298107]],[[0.082984149456024,0.032742857933044,0.058854483067989],[-0.097673021256924,-0.018142562359571,0.066739469766617],[-0.11158028244972,-0.096155881881714,0.0064913141541183]],[[0.018945910036564,-0.052913494408131,0.034984271973372],[0.068685241043568,0.031125934794545,-0.012029583565891],[0.10250405967236,-0.10581082850695,0.0060606584884226]],[[0.067718103528023,0.051777835935354,0.030948793515563],[0.058921210467815,-0.047935780137777,-0.038303330540657],[-0.062937840819359,-0.07368416339159,-0.040654834359884]],[[0.025156557559967,-0.014152247458696,0.059631768614054],[0.057992745190859,-0.026497468352318,-0.12139173597097],[-0.11551489681005,-0.071788601577282,0.029058726504445]],[[-0.0011374622117728,-0.086103431880474,0.083607167005539],[0.012681316584349,0.09092815220356,0.23531509935856],[-0.019973456859589,-0.020672254264355,0.11457686126232]],[[-0.044385589659214,-0.067564502358437,-0.038980517536402],[-0.097233608365059,-0.079826302826405,-0.024513879790902],[-0.20211823284626,-0.14228883385658,-0.15134057402611]],[[-0.030470309779048,0.1483465731144,0.018256330862641],[-0.04955891892314,-0.078592799603939,-0.019992364570498],[0.040429349988699,0.0077664940617979,0.036732755601406]],[[-0.064436078071594,0.088934548199177,0.037501994520426],[-0.061776015907526,-0.044855542480946,0.089328445494175],[-0.063112340867519,-0.050809465348721,0.07535270601511]],[[-0.020151078701019,0.0088895140215755,-0.11361316591501],[-0.018764711916447,-0.074273332953453,0.035333871841431],[-0.0043426468037069,0.0040491507388651,0.014939061366022]],[[0.14211235940456,0.088548898696899,0.07377427816391],[0.082700721919537,0.051803924143314,-0.082290947437286],[0.029016712680459,-0.033248495310545,-0.12885934114456]],[[-0.072844229638577,-0.048454664647579,0.0032123434357345],[-0.07499073445797,-0.15319091081619,-0.17526917159557],[-0.048943795263767,-0.0061233486048877,-0.17071126401424]],[[-0.015060855075717,-0.10890981554985,0.14323358237743],[0.099267907440662,-0.067643746733665,-0.039633091539145],[0.010162377730012,-0.048580728471279,-0.033632904291153]],[[0.0054660816676915,-0.016546480357647,0.025937583297491],[-0.0065835597924888,-0.020744994282722,0.10808105021715],[-0.085529945790768,-0.14574401080608,-0.07569308578968]],[[0.092506930232048,0.056398577988148,-0.028962519019842],[-0.074066109955311,0.052308697253466,-0.048640485852957],[-0.079101450741291,0.01793740876019,0.014220761135221]],[[0.0079819215461612,-0.14936164021492,0.04847140610218],[-0.025532715022564,0.019778169691563,-0.091188132762909],[-0.086150623857975,-0.0118423467502,0.023107975721359]],[[-0.14458951354027,-0.11332926154137,0.10592992603779],[0.11340730637312,-0.29797592759132,-0.055362708866596],[0.13426168262959,-0.0063702259212732,-0.15355539321899]],[[-0.02519903331995,0.034259136766195,-0.0099170869216323],[-0.012316827662289,0.0022788159549236,-0.12321026623249],[0.046221226453781,0.10723202675581,0.041743826121092]],[[-0.18935675919056,-0.087213948369026,0.01177831646055],[-0.071355007588863,0.023730041459203,-0.047554612159729],[0.022425979375839,0.14359427988529,0.25500649213791]],[[-0.022977979853749,-0.08021068572998,0.092006005346775],[-0.011759077198803,-0.055764853954315,-0.17994986474514],[-0.057172264903784,-0.16698521375656,-0.054136343300343]],[[-0.074162609875202,-0.02255916595459,-0.14084675908089],[0.029422584921122,-0.013834312558174,-0.040991272777319],[0.037439208477736,-0.035474199801683,-0.062125772237778]],[[0.061151266098022,-0.040533069521189,0.13684044778347],[0.021839948371053,-0.071544893085957,-0.058832451701164],[0.02058107405901,-0.013559342361987,-0.080546192824841]],[[0.018365552648902,0.0051341988146305,0.080330058932304],[-0.11225614696741,-0.11871998757124,0.07139065861702],[-0.061352446675301,-0.11420291662216,-0.0023341230116785]],[[-0.15406464040279,-0.034546453505754,0.070434480905533],[-0.053202502429485,-0.025378119200468,0.042348254472017],[-0.12041353434324,-0.05838181078434,0.043871361762285]],[[-0.0012715425109491,-0.072138547897339,0.067535541951656],[0.12298768758774,-0.038391027599573,0.0041611394844949],[0.02956411242485,0.01826866529882,-0.10894791781902]],[[-0.0026286393404007,0.039531860500574,-0.062042132019997],[-0.053451001644135,-0.1521330177784,0.053242888301611],[0.12047910690308,-0.060050271451473,-0.041759815067053]],[[0.013728930614889,-0.032151971012354,-0.097289763391018],[0.073027797043324,0.025739004835486,0.00063906004652381],[-0.012290065176785,-0.10898185521364,-0.0015363985439762]],[[0.20377950370312,-0.063172020018101,0.047646138817072],[0.14153634011745,-0.079493395984173,-0.13670098781586],[-0.048646051436663,-0.088218674063683,-0.094670124351978]],[[-0.24818256497383,-0.10635468363762,0.1408186852932],[-0.023132031783462,-0.27627691626549,0.01378908008337],[0.061863083392382,0.029607832431793,-0.22363735735416]]],[[[-0.017099928110838,-0.021987685933709,-0.022347372025251],[-0.022401835769415,0.059539675712585,-0.1134454458952],[0.026150945574045,-0.10004257410765,-0.038866639137268]],[[0.19093468785286,0.10318534076214,0.073457822203636],[0.13079658150673,0.0053382022306323,-0.098566330969334],[-0.013833120465279,0.010637979023159,-0.18222154676914]],[[-0.2839794754982,0.0046280482783914,0.026081528514624],[0.010736294090748,0.027077158913016,0.068889655172825],[-0.10683158785105,-0.075488187372684,0.15674936771393]],[[0.13832023739815,0.040618374943733,0.014652291312814],[-0.068449214100838,-0.05910062417388,-0.07863087952137],[-0.016673589125276,-0.005601289216429,-0.026117706671357]],[[-0.086981818079948,-0.052135292440653,0.1509804725647],[-0.09427672624588,0.023555355146527,0.010729702189565],[0.078899495303631,0.0047030323185027,-0.053716257214546]],[[0.054983589798212,-0.037498563528061,-0.1991863399744],[-0.021898377686739,-0.081303171813488,-0.033076167106628],[0.13724727928638,0.078552842140198,-0.018788807094097]],[[-0.060482632368803,-0.0087116146460176,-0.062372032552958],[-0.10805509984493,0.027141930535436,0.12861853837967],[-0.049905348569155,0.076762817800045,0.055082425475121]],[[0.10155172646046,0.058376517146826,-0.025423031300306],[0.030161984264851,0.0899293795228,-0.020566690713167],[-0.028210025280714,-0.022213149815798,0.040647849440575]],[[-0.014934420585632,-0.014260998927057,-0.02306186594069],[-0.043254267424345,0.0033769414294511,0.025351628661156],[0.055282425135374,0.018534777686,0.0097807301208377]],[[-0.0636031255126,-0.17756333947182,0.024233687669039],[-0.033099547028542,-0.051269840449095,0.060710370540619],[0.047007989138365,0.058069441467524,0.11997597664595]],[[-0.20446500182152,-0.02844868786633,-0.052547674626112],[0.10040042549372,0.13600777089596,0.076284252107143],[0.093960650265217,0.15733087062836,0.13731946051121]],[[0.095660388469696,0.07951907813549,0.05471320822835],[-0.020659679546952,0.0042939679697156,-0.048397030681372],[0.029514340683818,-0.066758416593075,-0.1896707713604]],[[-0.044772446155548,-0.054019540548325,-0.02446623146534],[0.055737745016813,-0.038232810795307,0.051199946552515],[0.035623919218779,-0.015568995848298,0.067249193787575]],[[-0.03667314350605,0.057717852294445,-0.032453861087561],[-0.059705089777708,0.016138663515449,0.032298561185598],[0.095990970730782,0.033763792365789,0.099536307156086]],[[0.039616946130991,0.13693676888943,0.031727094203234],[-0.070614226162434,-0.068994238972664,0.012174719013274],[-0.12061329185963,-0.047072779387236,-0.14986929297447]],[[-0.074944421648979,-0.14141823351383,-0.022437201812863],[-0.00027811247855425,0.070755809545517,0.061454709619284],[0.068771675229073,0.098312169313431,-0.065335020422935]],[[0.10280559957027,0.091217428445816,-0.038900669664145],[0.060804288834333,0.026745196431875,-0.025217089802027],[-0.026644384488463,0.067767962813377,-0.11973094940186]],[[-0.05769957229495,-0.012658884748816,0.095485627651215],[0.031156130135059,0.14075583219528,0.094176463782787],[0.046176139265299,-0.042878244072199,0.047609012573957]],[[0.044493485242128,-0.060454625636339,0.092596255242825],[0.021726876497269,-0.069487996399403,-0.064732328057289],[0.083328366279602,-0.061723824590445,-0.048613205552101]],[[0.057938016951084,0.048901610076427,-0.052981846034527],[0.15653376281261,0.071288883686066,-0.064155295491219],[-0.018056547269225,-0.0052244723774493,-0.054251778870821]],[[-0.066545516252518,0.036200746893883,0.041970919817686],[0.078522369265556,-0.11431304365396,0.13082221150398],[0.050626616925001,0.14719896018505,0.08742593228817]],[[-0.011023746803403,0.071052670478821,-0.053630646318197],[0.061786659061909,0.048339460045099,-0.11223046481609],[0.026854632422328,0.049499873071909,0.10177349299192]],[[-0.028075652197003,0.10409868508577,0.10880721360445],[0.068720459938049,0.10397837311029,-0.0092906374484301],[0.043644770979881,0.13046072423458,-0.10572830587626]],[[-0.029085576534271,-0.11240866780281,-0.032999720424414],[-0.094805307686329,0.081011071801186,0.0054129422642291],[-0.052039362490177,-0.032470542937517,0.14019259810448]],[[0.11081614345312,0.045748110860586,-0.053399004042149],[0.13333994150162,0.018125707283616,-0.046398539096117],[0.030563039705157,-0.11828351020813,-0.17549054324627]],[[0.061351738870144,-0.044889144599438,-0.077301114797592],[0.068108387291431,-0.021330865100026,-0.07798594981432],[-0.018189080059528,-0.092899218201637,-0.0065949042327702]],[[-0.014848704449832,-0.038075566291809,0.10195057094097],[-0.079142555594444,0.06757914274931,0.13127413392067],[0.078961484134197,0.24997365474701,0.20419275760651]],[[0.098139591515064,-0.055276334285736,-0.032666467130184],[-0.022731345146894,0.062937892973423,-0.036151353269815],[0.11456649005413,0.11869109421968,-0.026995524764061]],[[-0.096153765916824,0.0017803612863645,-0.084424942731857],[-0.080828152596951,0.037396226078272,-0.0049217995256186],[-0.11718183010817,-0.1252633780241,-0.068888589739799]],[[-0.13700638711452,-0.05464281141758,-0.0250493735075],[-0.0052854237146676,-0.18468144536018,0.00018859206466004],[-0.00022647470177617,0.11201470345259,0.094703912734985]],[[0.27927595376968,-0.057950008660555,-0.0078410068526864],[0.030919870361686,0.082864120602608,-0.079980224370956],[0.0871951431036,-0.031812783330679,-0.11385323107243]],[[-0.054677855223417,0.13765977323055,0.098861373960972],[0.0600939206779,-0.04516738653183,0.0050735594704747],[-0.076948687434196,-0.034362781792879,-0.033625230193138]],[[0.10173205286264,-0.067942939698696,-0.0038261427544057],[0.11997018009424,-0.017240259796381,-0.0096190078184009],[0.18439313769341,0.090842969715595,0.00072475988417864]],[[0.010393037460744,-0.12199871242046,0.050749614834785],[0.021049458533525,-0.039973858743906,0.053271260112524],[0.066136807203293,-0.0054520373232663,0.094049654901028]],[[-0.071718782186508,-0.081763669848442,-0.16002675890923],[-0.041821267455816,0.073004484176636,-0.065729886293411],[0.057952146977186,0.060285303741693,-0.074975892901421]],[[-0.056412648409605,-0.10624926537275,-0.025320598855615],[0.024915875867009,0.057802509516478,0.0078407963737845],[0.027863996103406,0.025605630129576,0.094514071941376]],[[-0.074400492012501,0.0038233466912061,-0.10861288756132],[-0.14201417565346,0.0036115380935371,0.0560542345047],[-0.021363850682974,0.095640391111374,0.11637024581432]],[[0.073025278747082,0.14983735978603,0.12661999464035],[0.044068709015846,0.1090744510293,-0.036018881946802],[0.043053206056356,-0.018884783610702,-0.16292259097099]],[[-0.088063925504684,-0.116291038692,0.022352362051606],[0.017656717449427,-0.073726691305637,-0.041342545300722],[0.15581850707531,0.17909772694111,0.14374342560768]],[[0.092178419232368,-0.077998772263527,0.092348195612431],[0.10810024291277,0.13117165863514,-0.030965365469456],[0.15794979035854,0.015429168008268,-0.054323304444551]],[[0.15633334219456,0.038035057485104,-0.046122428029776],[-0.033806346356869,-0.0043124654330313,0.036048900336027],[-0.046237133443356,-0.021244868636131,-0.085691928863525]],[[-0.0033506094478071,-0.13107219338417,0.045941364020109],[-0.11665999144316,0.0039234338328242,-0.038995936512947],[-0.2250407487154,0.058751028031111,0.019539102911949]],[[-0.040990673005581,0.00088752416195348,0.023471061140299],[-0.21328775584698,-0.17815715074539,-0.051649626344442],[0.060334954410791,-0.05642544478178,0.19932013750076]],[[-0.076498530805111,0.0097522297874093,-0.0093471379950643],[-0.0010708100162446,0.010029985569417,0.033487789332867],[0.020850518718362,-0.01082538254559,0.026362359523773]],[[-0.12020452320576,-0.076432935893536,-0.051885444670916],[-0.10185852646828,0.047213967889547,0.012454859912395],[-0.028804386034608,0.032595306634903,0.089094303548336]],[[-0.041183084249496,-0.065972790122032,-0.045106135308743],[0.11131875216961,0.046753387898207,-0.14039017260075],[-0.043375130742788,-0.17712722718716,-0.046508241444826]],[[-0.032319955527782,-0.053384322673082,-0.071061693131924],[0.036683510988951,-0.0011433210456744,0.057696145027876],[-0.027294550091028,0.016591414809227,-0.096384063363075]],[[-0.013376627117395,0.031176146119833,-0.049903564155102],[0.058756146579981,-0.039601560682058,0.03642351180315],[-0.043734159320593,-0.014532131142914,-0.00111545517575]],[[0.037707298994064,0.063661672174931,-0.12227561324835],[0.18322603404522,-0.00020587045582943,-0.030206270515919],[0.073203675448895,0.0012675480684265,-0.042706463485956]],[[0.064422704279423,0.087004445493221,-0.026146994903684],[-0.013131726533175,0.089150123298168,0.026280920952559],[0.046433538198471,-0.046960201114416,0.0092899827286601]],[[-0.21480093896389,-0.044382944703102,0.0068932361900806],[-0.19895163178444,0.011673756875098,0.098310589790344],[0.016125399619341,0.013039843179286,0.056904036551714]],[[-0.035440392792225,0.013055827468634,-0.024774072691798],[-0.059915047138929,-0.047517988830805,0.0039602434262633],[-0.020910926163197,0.00062983768293634,0.16906447708607]],[[0.059265002608299,0.055709049105644,-0.044314220547676],[0.06230092421174,-0.037442568689585,-0.030691903084517],[-0.047065921127796,0.026725551113486,-0.011893053539097]],[[0.28758063912392,0.044328726828098,-0.10394755005836],[0.088113144040108,-0.075454525649548,-0.10618396103382],[0.058118283748627,-0.051633246243,-0.19103139638901]],[[-0.085155315697193,0.12165533006191,-0.036085162311792],[-0.06050506606698,-0.068948552012444,0.030468074604869],[-0.043904561549425,0.12022354453802,0.090688988566399]],[[0.073175400495529,-0.18952152132988,-0.10663321614265],[0.096517659723759,-0.11178214848042,0.027619507163763],[0.02608628757298,0.021909661591053,0.10191562771797]],[[0.19426374137402,0.1255911141634,0.09266160428524],[0.091332361102104,0.058589544147253,-0.12302084267139],[0.046562742441893,0.092976413667202,-0.20925395190716]],[[-0.036502242088318,-0.10955917090178,0.0010940429056063],[-0.28760460019112,-0.045374646782875,0.145234182477],[0.082278378307819,0.11477664858103,0.12497854977846]],[[0.089744694530964,0.09266047924757,-0.025412214919925],[-0.028444267809391,0.02570535428822,-0.13199535012245],[0.028122913092375,-0.12662029266357,-0.14705118536949]],[[-0.038177125155926,0.052651975303888,0.017377203330398],[-0.16682183742523,-0.028108354657888,0.014514189213514],[0.014190655201674,-0.051364075392485,0.031028596684337]],[[0.027608139440417,-0.025435650721192,0.034982852637768],[-0.032083932310343,0.017006376758218,-0.10150813311338],[-0.08564119040966,0.032412886619568,0.17790539562702]],[[0.023624958470464,-0.035109404474497,-0.013287260197103],[0.060741424560547,0.082081280648708,0.082199484109879],[0.096197411417961,0.065593726933002,0.080395251512527]],[[0.092610143125057,-0.035137932747602,0.012252963148057],[0.077022932469845,0.028156103566289,-0.16685013473034],[-0.010573084466159,0.02316770516336,-0.16283971071243]],[[0.077796839177608,0.0019818844739348,0.059664506465197],[0.076922923326492,-0.020477619022131,-0.030498908832669],[0.074342526495457,-0.10399816185236,0.042736854404211]]],[[[-0.018898328766227,-0.073698043823242,0.077922344207764],[-0.071485780179501,-0.042397912591696,-0.00090437027392909],[0.049375418573618,0.0479517839849,0.15902605652809]],[[-0.035338174551725,0.11535504460335,-0.12114132195711],[-0.020569358021021,-0.11278039216995,0.18072982132435],[0.10870016366243,0.0091648669913411,0.033649548888206]],[[-0.089222393929958,-0.0045630130916834,-0.0054257498122752],[0.012752962298691,0.068710796535015,0.064173132181168],[-0.014177027158439,-0.046036124229431,0.017603052780032]],[[-0.13526903092861,-0.13258898258209,0.056761048734188],[0.11511954665184,0.0049631097353995,-0.073468320071697],[-0.0082206539809704,-0.0030592186376452,0.014480601996183]],[[-0.03000545501709,0.17424187064171,0.042342912405729],[-0.0038240845315158,-0.087199807167053,0.066530928015709],[0.0067453919909894,-0.0055394168011844,-0.04644538834691]],[[-0.091305650770664,-0.035944372415543,0.13771280646324],[-0.0052376776002347,-0.078895844519138,-0.066975615918636],[-0.064864546060562,0.068979285657406,0.11347783356905]],[[-0.195980489254,-0.070230789482594,-0.0035879933275282],[-0.07810465991497,-0.094852395355701,-0.077009126543999],[0.064786568284035,-0.0044400859624147,-0.038354970514774]],[[0.080794811248779,0.023291749879718,-0.11830768734217],[-0.094492562115192,-0.0047091203741729,0.035615246742964],[0.096063688397408,0.0099398577585816,-0.052293825894594]],[[0.094146393239498,0.037807885557413,0.0070934477262199],[-0.13931213319302,-0.042336244136095,0.012715524062514],[0.0424586199224,-0.0026888905558735,-0.02785394154489]],[[0.033782187849283,0.0058970325626433,-0.15275996923447],[0.030554028227925,0.03587269410491,-0.095175243914127],[-0.051409799605608,-0.10775783658028,0.07737735658884]],[[-0.040213447064161,0.0022209715098143,0.091002725064754],[0.14146104454994,-0.13590359687805,-0.16103574633598],[-0.10776643455029,0.0062434491701424,-0.032056268304586]],[[0.0081645920872688,0.088268674910069,-0.17765499651432],[-0.045130886137486,0.0042662881314754,0.11159277707338],[-0.055854484438896,0.0080461176112294,0.097831800580025]],[[-0.0083913039416075,0.0037432403769344,0.090356513857841],[-0.00010550751903793,-0.04895618185401,-0.19985194504261],[-0.049185398966074,0.081785582005978,-0.0073217833414674]],[[-0.031574312597513,0.0030624233186245,0.035593170672655],[-0.12398208677769,0.0321424305439,-0.045658469200134],[0.11200205236673,0.015794012695551,-0.026062494143844]],[[-0.066826097667217,0.14660006761551,-0.092818684875965],[0.026595028117299,-0.1162718757987,-0.047349222004414],[0.01642526127398,-0.082589730620384,0.10423160344362]],[[-0.042083721607924,0.0094181206077337,-0.13407145440578],[0.015914492309093,-0.0023472674656659,0.022232562303543],[0.03598440811038,0.058184653520584,0.0077134128659964]],[[0.18777088820934,-0.036594651639462,-0.051657300442457],[-0.086610928177834,0.10281417518854,0.011347508057952],[-0.017444713041186,-0.0033550909720361,-0.030932918190956]],[[0.085074931383133,0.17335037887096,0.10018285363913],[-0.1185367628932,-0.19599170982838,-0.21557319164276],[-0.024738002568483,0.061099659651518,-0.18653820455074]],[[-0.01670403778553,0.010488552972674,-0.0037719556130469],[0.017824742943048,-0.23289093375206,-0.063086912035942],[0.16029834747314,0.1126362234354,-0.039769049733877]],[[-0.17019054293633,0.025520311668515,0.046626035124063],[0.26703855395317,-0.11175930500031,-0.072282642126083],[-0.00069141143467277,0.088170140981674,0.14755268394947]],[[0.12262014299631,0.021666383370757,0.019378440454602],[-0.013269701972604,0.18155683577061,-0.072560146450996],[-0.042205087840557,-0.062123972922564,0.016353107988834]],[[0.02727678604424,-0.074799835681915,0.036635309457779],[-0.017795141786337,-0.024586776271462,0.016801720485091],[0.063559219241142,0.056360568851233,-0.072525002062321]],[[0.022483978420496,0.2059386074543,0.046959612518549],[-0.022949038073421,-0.025719810277224,-0.1031910404563],[-0.00054648343939334,-0.040784440934658,-0.12096382677555]],[[0.16489365696907,0.037053532898426,0.065847955644131],[-0.10596992820501,0.05319581925869,-0.019554257392883],[0.068918414413929,0.015709575265646,-0.038252208381891]],[[-0.051431115716696,-0.13794735074043,-0.09750072658062],[0.038572888821363,0.06621091812849,-0.0010758369462565],[0.0038294575642794,-0.13372682034969,-0.022693686187267]],[[0.090577691793442,0.012011596933007,0.181760892272],[-0.10945255309343,-0.064720459282398,-0.024855177849531],[-0.033930633217096,-0.031078821048141,0.037012577056885]],[[0.024568049237132,-0.082367524504662,-0.071948438882828],[-0.051102977246046,0.055602040141821,0.040607765316963],[-0.0082598747685552,-0.10050422698259,0.011120944283903]],[[0.033649682998657,0.041724905371666,0.055759079754353],[-0.078279614448547,-0.036837428808212,-0.037017628550529],[-0.031288623809814,0.04559039324522,0.034510530531406]],[[-0.097552552819252,-0.088043533265591,0.10823205113411],[-0.057304117828608,0.011334635317326,-0.044885486364365],[-0.084499917924404,-0.021373210474849,-0.021148189902306]],[[-0.049580816179514,-0.1149004176259,0.066893100738525],[0.038858748972416,-0.030863750725985,-0.038253635168076],[-0.049566492438316,0.12434323877096,0.14989310503006]],[[-0.11374454945326,0.1121304705739,0.12856489419937],[-0.079579189419746,0.022579656913877,-0.22643834352493],[0.103519923985,0.20605997741222,0.021235482767224]],[[-0.015715304762125,-0.069249480962753,-0.17490313947201],[0.059641968458891,0.050599817186594,0.15767003595829],[-0.0046271700412035,-0.12333296239376,0.035131555050611]],[[-0.01881449483335,-0.076684348285198,-0.12188162654638],[0.024605184793472,-0.031431056559086,0.015823975205421],[0.068805582821369,0.010283426381648,0.14206238090992]],[[0.018104983493686,-0.19157731533051,-0.060525551438332],[-0.1530204564333,0.005547808483243,-0.049111768603325],[-0.056548714637756,0.045796398073435,0.046099953353405]],[[-0.068501226603985,-0.13496859371662,0.11367225646973],[0.061121683567762,-0.077472805976868,-0.028061006218195],[-0.04999053478241,0.1827184855938,-0.010081854648888]],[[0.036956194788218,-0.050251126289368,-0.17284555733204],[-0.071029312908649,0.15145768225193,0.066865153610706],[-0.067119225859642,0.049851827323437,-0.090431958436966]],[[0.042862698435783,0.11581067740917,0.049138840287924],[0.013606326654553,-0.026835767552257,-0.12329075485468],[-0.0029636935796589,0.00016103516099975,-0.046077460050583]],[[0.016787558794022,0.010359173640609,-0.097776919603348],[-0.0053296233527362,0.031783457845449,0.012158423662186],[0.074514023959637,-0.15448604524136,0.10155653953552]],[[0.11431788653135,0.019073894247413,0.15219596028328],[0.11394569277763,-0.071791797876358,-0.046286080032587],[-0.015498226508498,-0.082042753696442,-0.077996514737606]],[[-0.062154714018106,0.032805442810059,0.10985785722733],[0.032384712249041,-0.0035810763947666,-0.023355292156339],[-0.028763925656676,0.043917935341597,-0.076850078999996]],[[-0.11854226887226,-0.0053766081109643,-0.13129949569702],[0.17168661952019,0.10210915654898,0.0011545397574082],[-0.080176040530205,0.072506196796894,0.10390608012676]],[[-0.029844412580132,-0.053953323513269,0.040008436888456],[0.0047262627631426,0.16132339835167,0.019913665950298],[-0.070490606129169,-0.040097896009684,0.13688209652901]],[[0.064845740795135,0.055460799485445,0.077320449054241],[-0.17445875704288,0.025180630385876,0.017298458144069],[0.022967720404267,-0.092422917485237,0.031773712486029]],[[-0.097216740250587,0.043604083359241,-0.066904969513416],[0.071111142635345,-0.0068239006213844,0.065768420696259],[0.032626528292894,-0.099331274628639,0.049911007285118]],[[-0.00056348036741838,-0.017641326412559,-0.04759044200182],[0.033147443085909,0.055518206208944,-0.16642305254936],[-0.03470940515399,-0.0078821796923876,0.12895196676254]],[[0.15252332389355,0.17286331951618,-0.010178091935813],[-0.1452529579401,-0.15394331514835,-0.096000142395496],[-0.0047059506177902,0.08083413541317,-0.040665484964848]],[[-0.08950337767601,0.03071441501379,0.057476248592138],[0.056277591735125,-0.24080047011375,-0.021305058151484],[-0.068519659340382,-0.024022554978728,-0.20840674638748]],[[0.074731908738613,0.021706063300371,0.058272734284401],[0.012682548724115,-0.10527746379375,0.11158855259418],[-0.0073742782697082,-0.067682184278965,-0.020321916788816]],[[-0.045159757137299,-0.1672700047493,0.062958426773548],[0.026795664802194,-0.083453021943569,-0.022219516336918],[-0.098131015896797,-0.0078688655048609,0.061229284852743]],[[-0.028921209275723,-0.036507159471512,-0.039764154702425],[0.055864162743092,0.066270627081394,0.014188406988978],[0.051102209836245,-0.0071861133910716,-0.00013285872410052]],[[-0.040477622300386,-0.10193893313408,-0.021902414038777],[-0.063569419085979,0.0063228644430637,-0.057907115668058],[-0.0048955767415464,-0.13221275806427,0.014769017696381]],[[0.034079305827618,-0.057332459837198,-0.071604959666729],[-0.018234942108393,-0.030187549069524,0.028702586889267],[-0.097389556467533,0.16075566411018,-0.061445936560631]],[[0.0040370631031692,-0.16431201994419,-0.08444706350565],[0.00085180503083393,0.026887841522694,-0.22001159191132],[0.081328481435776,0.05652965977788,0.099495209753513]],[[-0.054591778665781,-0.087341256439686,0.15534764528275],[-0.059096056967974,-0.038795080035925,-0.018624255433679],[0.0048114438541234,0.049411926418543,-0.013816145248711]],[[0.08069159090519,0.070352524518967,-0.11539172381163],[-0.10654531419277,-0.1381744146347,0.0016582862008363],[0.033338125795126,-0.077795676887035,-0.028795383870602]],[[0.11284834891558,-0.095984898507595,-0.20526613295078],[-0.074058078229427,0.12338915467262,0.10367229580879],[0.039033841341734,-0.053229998797178,-0.096037738025188]],[[0.26441705226898,0.12638157606125,-0.0062968102283776],[-0.069652438163757,0.00044016458559781,-0.043096963316202],[0.19399882853031,0.14998644590378,-0.10131500661373]],[[0.1111808270216,-0.075990743935108,-0.057370956987143],[-0.012001408264041,-0.20105589926243,0.049656484276056],[-0.0728490203619,-0.05802882835269,-0.09679651260376]],[[-0.025786347687244,0.018820697441697,0.07559534907341],[0.17123375833035,-0.12279134243727,0.011543334461749],[-0.16229256987572,0.010704488493502,0.073807135224342]],[[0.087500229477882,0.020325200632215,0.092261143028736],[0.14959919452667,0.074572481215,-0.017377518117428],[0.097063258290291,-0.082179546356201,-0.093631133437157]],[[0.048850048333406,-0.016217092052102,-0.12678752839565],[-0.022819928824902,-0.010951288975775,0.11945890635252],[-0.1022429689765,0.01559486053884,0.088889144361019]],[[0.10533294826746,-0.064820155501366,-0.26352247595787],[-0.035133291035891,-0.072911344468594,-0.0010907070245594],[-0.032587669789791,-0.22030079364777,-0.098473943769932]],[[0.1600463539362,0.0060155573301017,0.022765398025513],[0.22986637055874,0.072780974209309,0.036208905279636],[0.099008575081825,-0.029457792639732,-0.15457712113857]],[[-0.054574798792601,0.15187288820744,-0.047272589057684],[-0.16219346225262,0.017502518370748,0.23264493048191],[0.051131937652826,-0.02488855458796,-0.11993853747845]]],[[[0.03419740870595,-0.040227223187685,0.023445047438145],[-0.0062567922286689,-0.037207771092653,-0.13578529655933],[0.026987005025148,0.096775352954865,0.083006843924522]],[[0.018004443496466,-0.096648536622524,-0.00086936983279884],[0.075629703700542,-0.095535211265087,0.044752169400454],[0.0029437919147313,0.09640645980835,-0.040066506713629]],[[0.035307232290506,-0.044996798038483,0.022957939654589],[0.017046796157956,-0.15628036856651,-0.045515611767769],[0.082891471683979,0.008953619748354,-0.0050754961557686]],[[0.062897332012653,-0.044841058552265,0.03580280393362],[-0.065399691462517,-0.02993799187243,-0.02155552431941],[0.10985899716616,0.02641262486577,-0.062456991523504]],[[-0.086133234202862,0.033233594149351,-0.036082293838263],[-0.019208323210478,0.15676960349083,-0.048485718667507],[-0.14454631507397,-0.09331513941288,0.019833378493786]],[[-0.083302780985832,-0.034888543188572,0.0023092092014849],[0.030731877312064,-0.011927421204746,-0.011205883696675],[0.0046696942299604,0.019711764529347,-0.037439301609993]],[[-0.040849179029465,-0.11641770601273,0.0090069686993957],[-0.024378474801779,-0.10217551887035,0.073268599808216],[0.018458100035787,-0.064977735280991,-0.0086804423481226]],[[-0.028568655252457,0.071497216820717,0.072226822376251],[-0.1070344671607,-0.040898468345404,0.065605841577053],[0.05302170291543,0.05530533567071,-0.049312930554152]],[[-0.068627685308456,-0.021232284605503,0.041163101792336],[-0.033422816544771,0.036591112613678,0.027353746816516],[0.0051629138179123,-0.047201320528984,0.056616820394993]],[[0.04593425616622,-0.16896162927151,-0.15501822531223],[0.0034507985692471,-0.11740658432245,-0.16492968797684],[-0.064592406153679,-0.10010795295238,-0.050867054611444]],[[0.052754808217287,-0.10296817868948,0.026292648166418],[0.031057575717568,0.11368622630835,-0.0097318850457668],[-0.026609404012561,0.042654283344746,0.046404592692852]],[[-0.069768831133842,-0.0064075626432896,0.068274646997452],[-0.10431875288486,-0.094647936522961,-0.016026444733143],[0.011729622259736,-0.094325631856918,-0.041386287659407]],[[-0.15311366319656,-0.10836447775364,0.095896825194359],[0.10259793698788,0.028631767258048,0.091794326901436],[-0.0028920664917678,0.0042035705409944,0.067552991211414]],[[-0.066012106835842,-0.0001888289116323,-0.02200380153954],[0.060835190117359,-0.072799742221832,0.10205306857824],[0.052931122481823,0.072991423308849,0.18054905533791]],[[0.0039705117233098,-0.054094918072224,-0.030933307483792],[-0.029333991929889,-0.0046788579784334,-0.10753577202559],[-0.047609016299248,0.015937345102429,0.084713712334633]],[[-0.043592613190413,-0.0247240383178,0.083941951394081],[-0.045348975807428,-0.085612371563911,0.065964870154858],[-0.055910967290401,-0.0063194520771503,0.056338366121054]],[[0.0093066915869713,0.020444311201572,0.010191203095019],[0.014269102364779,-0.068891651928425,-0.055425599217415],[-0.07999137789011,-0.081409573554993,-0.0015130355022848]],[[-0.16063022613525,0.032946046441793,0.055986691266298],[0.03831422701478,0.032962560653687,-0.025276143103838],[0.092748090624809,0.046945746988058,0.040007907897234]],[[-0.14054077863693,-0.11700461059809,-0.01389807742089],[-0.0087618343532085,0.08818856626749,0.07158886641264],[-0.11245706677437,-0.011525960639119,0.095048248767853]],[[-0.12170534580946,-0.14845086634159,0.049922861158848],[-0.035226389765739,0.087304286658764,0.047746188938618],[-0.11081670969725,0.075396470725536,0.080656982958317]],[[-0.0403046682477,-0.017536960542202,-0.041523948311806],[0.013453360646963,0.043815135955811,-0.00089012534590438],[-0.0041557769291103,-0.10945402830839,0.0016608029836789]],[[-0.091501407325268,0.11256178468466,-0.027470650151372],[-0.03776902332902,0.058262143284082,-0.091987192630768],[0.0035355580039322,0.01826680265367,0.037871550768614]],[[-0.0087489513680339,-0.095563933253288,-0.01928123831749],[-0.14719453454018,0.1837655454874,0.010816054418683],[-0.083353020250797,-0.0006666966364719,0.098645523190498]],[[-0.24437455832958,0.05810809135437,-0.076305650174618],[-0.12029711902142,-0.27848362922668,-0.19770807027817],[0.0015457668341696,-0.089998707175255,-0.074916318058968]],[[-0.0065361158922315,0.01199262496084,-0.011946814134717],[0.038448266685009,-0.05801485106349,0.075603604316711],[-0.036490853875875,-0.019497333094478,0.091876305639744]],[[-0.088454395532608,0.072042100131512,-0.05001387745142],[0.049832172691822,0.043536599725485,-0.075765676796436],[0.036582179367542,-0.096735149621964,-0.093826770782471]],[[0.078781314194202,0.0012263292446733,-0.075004428625107],[0.031437292695045,-0.025948671624064,0.019602317363024],[-0.042273994535208,-0.041518729180098,0.035464305430651]],[[-0.15247324109077,-0.012439483776689,0.018155807629228],[-0.082185618579388,-0.08996793627739,0.0051008029840887],[0.037183232605457,-0.025396024808288,-0.051225237548351]],[[0.046482536941767,0.1328991651535,-0.017580334097147],[0.013122367672622,-0.017839971929789,0.028746567666531],[0.10294717550278,0.12521018087864,-0.0033769451547414]],[[0.09353793412447,-0.069244839251041,0.076800920069218],[-0.037298902869225,0.065135970711708,0.013035285286605],[0.03528792783618,-0.059527102857828,0.064990870654583]],[[0.008633672259748,0.083409912884235,-0.094859331846237],[0.13025590777397,0.081679977476597,0.068846642971039],[-0.059567786753178,0.013505851849914,0.030965350568295]],[[0.019845405593514,0.013184687122703,0.0010672077769414],[0.054911784827709,0.09608643501997,0.17174486815929],[-0.021838530898094,0.033606294542551,0.10892818123102]],[[0.083152316510677,-0.024896217510104,0.052554622292519],[0.021184787154198,0.071283228695393,0.052244078367949],[0.018110910430551,0.078017473220825,-0.15462410449982]],[[-0.04448764026165,0.22667963802814,0.0092659750953317],[-0.011873003095388,0.05492827668786,0.016619367524981],[0.00022601650562137,-0.24487257003784,-0.057952255010605]],[[0.069599024951458,-0.028777055442333,-0.03309965506196],[0.087004341185093,0.044611725956202,-0.066132195293903],[0.028692115098238,-0.092974841594696,-0.03865335136652]],[[0.049098890274763,0.016962075605989,-0.073183439671993],[-0.019872447475791,-0.14533460140228,-0.070321165025234],[0.080198593437672,-0.10566361248493,-0.026137925684452]],[[-0.055012747645378,-0.012663790024817,-0.045016892254353],[-0.081136003136635,-0.011065943166614,0.0052925129421055],[-0.016485802829266,0.085672460496426,-0.036290667951107]],[[-0.14642459154129,-0.074947834014893,0.084863275289536],[-0.060855317860842,-0.02582685649395,0.085682533681393],[0.016352090984583,0.035577591508627,0.14085011184216]],[[-0.030799459666014,-0.048266839236021,0.010013395920396],[-0.073745682835579,-0.097420923411846,-0.032288238406181],[0.047315075993538,0.032357797026634,0.093855209648609]],[[0.035133194178343,-0.057575739920139,-0.07845664024353],[0.085107073187828,-0.08993174135685,0.12530317902565],[0.057424232363701,0.037322916090488,-0.0044224392622709]],[[0.0017803576774895,0.097951099276543,-0.036783952265978],[-0.17091456055641,-0.011503137648106,0.018046360462904],[-0.09488720446825,-0.10738106817007,0.016184538602829]],[[0.094681836664677,0.097795471549034,-0.026515755802393],[0.1194382160902,0.069632694125175,0.026856796815991],[0.073196485638618,-0.039036750793457,-0.048636749386787]],[[-0.061932109296322,-0.15809790790081,0.12629622220993],[-0.059748101979494,-0.10787632316351,-0.12244264036417],[0.087486915290356,0.10703203082085,0.076090022921562]],[[0.098344571888447,-0.0021778859663755,-0.022848693653941],[0.071442328393459,0.0055755097419024,-0.026352044194937],[0.0056739412248135,-0.031623758375645,-0.093187816441059]],[[0.043293491005898,-0.01492187846452,0.015012642368674],[0.079584680497646,-0.0083594173192978,0.044764205813408],[0.051123548299074,0.05979423224926,0.01641826890409]],[[0.0037908561062068,-0.14486326277256,0.053003553301096],[0.064328975975513,-0.051490373909473,0.0027426627930254],[0.11846689134836,-0.006123723462224,0.11897163838148]],[[-0.089751318097115,-0.010256703943014,0.010909927077591],[0.093891024589539,0.047394808381796,0.11064652353525],[-0.093333221971989,0.031996857374907,0.10328543186188]],[[0.059690643101931,-0.033728487789631,-0.010489076375961],[0.032926734536886,0.047414917498827,-0.042585950344801],[-0.03452467545867,0.077604487538338,-0.024568686261773]],[[-0.00088529899949208,-0.015170487575233,-0.075952365994453],[-0.031870324164629,0.054886765778065,0.017206203192472],[0.028049787506461,0.035961754620075,-0.097588613629341]],[[-0.10513011366129,0.057982467114925,-0.030156930908561],[0.023406432941556,0.070039451122284,0.057002108544111],[0.055658057332039,0.059109326452017,-0.031147141009569]],[[0.03257305547595,0.2137131690979,0.04604009911418],[-0.032988797873259,0.025139510631561,-0.088138110935688],[0.087500996887684,0.044405724853277,-0.10988500714302]],[[-0.016008395701647,0.051843255758286,-0.022857343778014],[-0.051193188875914,0.083652533590794,0.05231911316514],[-0.0056701418943703,-0.041102081537247,0.058109026402235]],[[0.028239527717233,-0.0053611244075,0.0035498656798154],[0.076769828796387,0.069684021174908,0.11098913103342],[0.03014407120645,-0.084197118878365,0.026065491139889]],[[0.16373665630817,-0.098282389342785,-0.044899050146341],[0.010349832475185,-0.040672905743122,-0.0218943990767],[0.086047396063805,-0.055840633809566,0.0099885119125247]],[[-0.069078154861927,0.0027184460777789,-0.043413911014795],[0.015656139701605,-0.14870703220367,-0.035034988075495],[-0.00967803504318,-0.026513205841184,-0.10682288557291]],[[0.081925749778748,0.13291482627392,-0.012869914993644],[-0.0052327373996377,-0.024486823007464,0.046761613339186],[0.0085619827732444,-0.019316725432873,0.047490712255239]],[[0.027930669486523,0.055395185947418,-0.031590428203344],[0.082362659275532,-0.054740015417337,-0.10696083307266],[0.012031299993396,0.13379888236523,0.039083924144506]],[[-0.16877563297749,-0.075781986117363,-0.022974764928222],[-0.00791837554425,-0.020217156037688,-0.094470500946045],[-0.11644052714109,0.0018134054262191,0.037636704742908]],[[0.061185099184513,-0.06867541372776,-0.04743042960763],[-0.086783699691296,0.079712323844433,0.07733590900898],[0.00082752743037418,0.14276076853275,0.0023409882560372]],[[-0.086782030761242,-0.15014418959618,-0.00688561424613],[-0.038683861494064,0.024616800248623,0.015687417238951],[-0.052739933133125,0.076939061284065,0.13080936670303]],[[-0.010299076326191,-0.038285668939352,0.03223242983222],[0.027428105473518,-0.053122013807297,0.055402155965567],[-0.07839373499155,-0.089184828102589,0.0095050856471062]],[[0.065393179655075,-0.018573686480522,0.015921579673886],[-0.014718223363161,0.060054421424866,0.011311518028378],[0.034634001553059,0.02849480509758,-0.097971953451633]],[[-0.024663429707289,0.1321008503437,-0.019662549719214],[-0.08310205489397,0.084470093250275,-0.10366608947515],[-0.040652386844158,0.051751431077719,0.049094095826149]],[[-0.14233863353729,-0.14267893135548,-0.014497961848974],[0.050469998270273,0.0097798081114888,0.055108122527599],[0.093678012490273,0.042558085173368,0.19141422212124]]],[[[-0.023371752351522,0.12255234271288,0.029974687844515],[-0.056296110153198,-0.052584327757359,-0.039249137043953],[-0.048950977623463,0.00061554583953694,-0.12129054963589]],[[0.092691414058208,4.2916184611386e-05,0.01662596873939],[-0.025756280869246,-0.0056385756470263,0.058303188532591],[0.0016600468661636,-0.062735483050346,0.15165607631207]],[[0.054911237210035,0.03151473030448,-0.013776377774775],[-0.030621727928519,-0.055102527141571,-0.066126488149166],[0.041111472994089,0.068199999630451,-0.068702541291714]],[[-0.026581026613712,0.12262480705976,-0.090550944209099],[0.033907067030668,0.14501464366913,0.0097846202552319],[0.043014232069254,0.06051017343998,0.028526324778795]],[[-0.090951845049858,0.01846537552774,-0.028680263087153],[0.003960341680795,0.1170499920845,0.028381049633026],[-0.068827763199806,-0.042238291352987,-0.04882499948144]],[[-0.076314352452755,-0.010962101630867,0.078075364232063],[-0.11705938726664,0.069397807121277,-0.010714854113758],[-0.074315741658211,-0.051509890705347,0.021563466638327]],[[0.060832317918539,-0.09824700653553,-0.043925322592258],[0.018540700897574,0.005085694603622,-0.047037694603205],[0.00056246406165883,-0.015596305020154,-0.038111671805382]],[[0.11512643843889,0.0064953388646245,-0.10365911573172],[0.0153573686257,-0.011214797385037,0.012701668776572],[0.025833489373326,0.14969880878925,-0.0086166094988585]],[[0.0077224392443895,0.05165971070528,-0.021248271688819],[-0.000704993493855,0.21705634891987,0.030209932476282],[-0.018359588459134,-0.0090524656698108,-0.054603077471256]],[[0.024376148357987,0.03666128963232,0.024463344365358],[0.084687657654285,-0.02645867690444,-0.0081551307812333],[0.027089791372418,-0.025056982412934,6.9205520958349e-06]],[[0.03488489612937,0.045972730964422,0.0030980864539742],[-0.045034628361464,0.11420954018831,0.088768750429153],[-0.028531363233924,0.073223859071732,-0.018056977540255]],[[0.027822334319353,0.019149400293827,0.082020901143551],[0.13307346403599,0.025093093514442,0.022773489356041],[0.0085042137652636,-0.071911834180355,-0.0067496551200747]],[[-0.018926464021206,0.0011301572667435,0.017316155135632],[-0.049801148474216,0.041750609874725,0.029059760272503],[-0.041003603488207,0.01719456911087,0.028100708499551]],[[0.04130307585001,-0.067481882870197,-0.10017412155867],[0.0058916718699038,0.014742163941264,-0.069312252104282],[0.010692077688873,0.060040894895792,-0.097316190600395]],[[-0.016541969031096,-0.078548491001129,0.066328272223473],[0.030891735106707,-0.023774165660143,-0.10070321708918],[-0.061646144837141,-0.073539204895496,0.029976923018694]],[[-0.037936687469482,0.027122106403112,0.080793850123882],[0.094688177108765,0.068213067948818,-0.0068940478377044],[-0.052313048392534,-0.025463875383139,-0.18177853524685]],[[-0.0053044678643346,-0.03376717492938,0.024162566289306],[-0.0079391365870833,0.068119004368782,-0.0097463810816407],[0.0043670125305653,0.082093648612499,0.0061659947969019]],[[0.089042708277702,-0.045074865221977,0.019736513495445],[0.00324233667925,-0.017628576606512,0.013306817039847],[0.022391261532903,0.031683452427387,0.040025997906923]],[[0.098934531211853,-0.1630440056324,-0.067430175840855],[0.14373044669628,0.058372400701046,0.014724975451827],[0.049841769039631,0.001635319320485,0.0923952460289]],[[0.0023693612311035,0.13214504718781,0.057727240025997],[-0.0756014585495,-0.062899835407734,0.064848966896534],[0.020153902471066,0.093967944383621,0.037902928888798]],[[-0.0096744894981384,0.023714313283563,-0.026946138590574],[-0.063810981810093,0.01871233433485,-0.08570135384798],[-0.045525275170803,0.05944611877203,-0.022814074531198]],[[0.039192777127028,0.012235283851624,-0.064227193593979],[0.082450732588768,0.039609242230654,0.085589163005352],[-0.034502319991589,-0.06260471791029,-0.0034414422698319]],[[-0.024714067578316,0.092690020799637,-0.072327330708504],[0.0058287959545851,0.021453829482198,-0.041104044765234],[-0.026008728891611,0.15775680541992,0.052955090999603]],[[0.027719246223569,0.051187891513109,-0.052011840045452],[0.040736723691225,0.098188258707523,0.015165409073234],[0.014337779954076,-0.064450904726982,0.046663351356983]],[[0.14584821462631,0.09632807970047,0.027629474177957],[-0.15375936031342,-0.067482493817806,0.01230257190764],[-0.002132740104571,-0.040090050548315,-0.023223947733641]],[[-0.016958085820079,-0.070595316588879,0.051453746855259],[0.0062704333104193,-0.11836910992861,0.029336044564843],[-0.096580266952515,0.044509809464216,0.010611082427204]],[[-0.039032086730003,-0.0002769760612864,-0.011323502287269],[0.048642285168171,0.051192194223404,-0.031978033483028],[-0.073182456195354,-0.10486254841089,-0.13197730481625]],[[-0.093708150088787,0.14153470098972,0.075579151511192],[0.054129365831614,0.05638038367033,-0.075632840394974],[-0.027042178437114,-0.12555620074272,0.0072814431041479]],[[-0.066076174378395,0.040605776011944,0.0047355382703245],[-0.060816064476967,0.057580664753914,-0.00014646707859356],[-0.027756698429585,0.032592434436083,-0.01059524808079]],[[-0.037972521036863,0.089215293526649,0.05123296007514],[0.022470658645034,0.15632283687592,0.1702846288681],[0.079452335834503,-0.081346027553082,0.10608668625355]],[[0.069576360285282,-0.068883180618286,0.10851190239191],[-0.074580639600754,-0.053336657583714,-0.038037437945604],[0.035987228155136,-0.069631911814213,0.053592707961798]],[[0.0065730791538954,0.081346288323402,0.088917389512062],[0.023439440876245,-0.090196043252945,0.033109560608864],[0.090169422328472,-0.035961620509624,-0.011823491193354]],[[-0.028254160657525,-0.020481895655394,0.011181640438735],[0.017462700605392,0.056905277073383,-0.027878008782864],[-0.032278478145599,-0.0030733575113118,0.024415032938123]],[[-0.017549218609929,0.022111194208264,-0.011674514971673],[0.020504588261247,-0.038846228271723,0.014303358271718],[0.0234145950526,-0.038739629089832,-1.7726026271703e-05]],[[-0.010752849280834,0.045652452856302,0.0097295083105564],[-0.12637916207314,0.02562503516674,0.060560844838619],[-0.0033525098115206,0.031085181981325,-0.13235361874104]],[[0.030380137264729,-0.033614348620176,-0.00070409709587693],[-0.046968683600426,0.072131045162678,-0.0048150373622775],[-0.0013225101865828,0.025806088000536,-0.012925867922604]],[[-0.13290663063526,-0.099131226539612,0.053686074912548],[-0.14999237656593,-0.013123033568263,-0.11647903174162],[0.05881417170167,0.013978649862111,-0.053310137242079]],[[-0.060149855911732,0.11655346304178,-0.0044019734486938],[0.11070942133665,0.13536190986633,-0.028115140274167],[-0.00851512234658,0.090972915291786,-0.06465195119381]],[[0.025820046663284,0.085447616875172,-0.149005189538],[0.022789917886257,-0.051462605595589,-0.1353724449873],[0.069617673754692,0.025886731222272,0.057387702167034]],[[-0.066638104617596,-0.017644185572863,0.11832988262177],[-0.15380698442459,0.053988516330719,-0.051909543573856],[-0.0067458720877767,0.017033664509654,0.051167327910662]],[[-0.010402731597424,-0.0098432525992393,0.050662726163864],[-0.0011746148811653,-0.085577502846718,0.060539379715919],[-0.029852399602532,0.025591416284442,0.011491511017084]],[[0.046544898301363,0.095637127757072,0.0080457841977477],[0.057307429611683,0.077306695282459,0.010969694703817],[0.065063036978245,0.078699380159378,0.0058967480435967]],[[0.074757508933544,0.060967449098825,0.012585483491421],[0.073758900165558,0.17869164049625,0.12684521079063],[0.056609723716974,0.059148442000151,0.028953308239579]],[[0.035251837223768,-0.03362749516964,-0.062805354595184],[-0.037029664963484,0.16134518384933,0.00046813872177154],[0.048748403787613,-0.037453237921,0.056270249187946]],[[-0.023128366097808,0.1370605379343,-0.013607398606837],[-0.049200084060431,0.075214236974716,-0.035876054316759],[-0.062387876212597,0.0061530987732112,0.031469460576773]],[[-0.033956844359636,0.091951906681061,0.011157741770148],[-0.032571785151958,0.012322660535574,0.013168836943805],[-0.011574798263609,0.015143245458603,-0.012749085202813]],[[0.062102697789669,-0.036993473768234,0.058948010206223],[-0.024000030010939,-0.075295306742191,0.072722285985947],[0.065126709640026,0.023246567696333,-0.024251841008663]],[[-0.034430310130119,0.032818704843521,0.066353157162666],[-0.037437498569489,-0.054923132061958,-0.012047822587192],[0.02214084006846,0.021589536219835,-0.026750795543194]],[[0.065092220902443,0.0038551066536456,0.046112582087517],[0.00081699172733352,-0.052744336426258,0.070284627377987],[0.053491245955229,0.026836346834898,0.0057475999929011]],[[0.016412939876318,-0.022997952997684,0.033912904560566],[0.044478502124548,0.049435585737228,-0.022595342248678],[-0.065397851169109,0.027634052559733,-0.062156584113836]],[[-0.032506804913282,0.07955152541399,-0.038026165217161],[0.0059197526425123,0.10440088063478,-0.05996598303318],[-0.049180146306753,0.029877694323659,0.017894381657243]],[[-0.024270236492157,0.03108449652791,0.051104135811329],[-0.059260807931423,0.074160292744637,0.040146697312593],[-0.0010413877898827,-0.036096420139074,0.012712128460407]],[[-0.030509039759636,-0.18188804388046,-0.031468965113163],[-0.021783659234643,-0.10315024852753,-0.0233847592026],[0.083016432821751,-0.026118688285351,0.036160126328468]],[[-0.05739227309823,0.018739433959126,-0.060891158878803],[-0.019878381863236,-0.014761967584491,0.014859392307699],[0.039786003530025,-0.013677109032869,0.018545733764768]],[[0.07611221075058,-0.017962070181966,0.023060284554958],[0.092025861144066,-0.025816962122917,0.026411786675453],[0.046369597315788,-0.11929477006197,0.085651531815529]],[[0.074978083372116,-0.067585043609142,0.15662495791912],[-0.010505392216146,0.057340241968632,0.0278544370085],[-0.019484542310238,-0.022213570773602,-0.0059587960131466]],[[-0.01242315582931,0.12520276010036,0.10940378159285],[0.12658841907978,0.076567336916924,0.093684993684292],[-0.010397034697235,0.1342436671257,0.016242686659098]],[[0.053804259747267,-0.030425552278757,0.0011652183020487],[0.072014778852463,-0.0052670915611088,-0.063464343547821],[-0.017384830862284,-0.027174530550838,0.049919720739126]],[[0.091634005308151,0.013500239700079,0.0025887803640217],[0.072176963090897,0.0092881778255105,-0.035806391388178],[0.065824829041958,-0.039699845016003,-0.00029332443955354]],[[0.090586461126804,-0.064187422394753,-0.077788278460503],[0.056309293955564,-0.041982959955931,-0.099037416279316],[0.019567968323827,0.01232494879514,0.046753816306591]],[[0.016137573868036,-0.058257337659597,-0.030195534229279],[0.032197736203671,-0.032014921307564,0.049158625304699],[-0.017728414386511,-0.0039714411832392,0.049492742866278]],[[0.021786499768496,-0.0069645405746996,0.065475724637508],[0.044190376996994,-0.014629270881414,0.026457225903869],[-0.081462278962135,0.038765251636505,0.034000128507614]],[[-0.027172274887562,-0.018368622288108,0.029561506584287],[-0.027043143287301,-0.034511551260948,0.030539307743311],[-0.016410976648331,-0.019215231761336,0.030543807893991]],[[0.060825053602457,0.064258225262165,0.011497574858367],[-0.054514676332474,0.040639102458954,0.026389051228762],[0.021674692630768,0.10139455646276,0.021207252517343]]],[[[-0.035515047609806,-0.025810644030571,0.083627000451088],[-0.081345699727535,0.0086375661194324,0.098473444581032],[-0.12916967272758,-0.02586555108428,-0.054673451930285]],[[0.011929267086089,0.030278509482741,0.006321884226054],[-0.02187280729413,0.065426886081696,-0.018010070547462],[-0.041679564863443,0.069504380226135,-0.031307399272919]],[[-0.033839426934719,0.11903341114521,-0.026995906606317],[-0.0079857213422656,-0.16723203659058,0.027207925915718],[0.01512305624783,0.080492727458477,0.068650245666504]],[[-0.074183590710163,-0.028172217309475,-0.077431224286556],[0.0096328780055046,-0.098301962018013,-0.011042322032154],[-0.052130769938231,0.034175455570221,-0.023758471012115]],[[-0.041142128407955,-0.0044236048124731,-0.023131711408496],[-0.015924686565995,-0.07215853780508,-0.031441368162632],[-0.043147932738066,0.034398019313812,0.061129331588745]],[[0.0043372143991292,0.0059308176860213,0.0098839905112982],[-0.052063785493374,-0.02254699356854,0.061684258282185],[0.0061693480238318,-0.06882306188345,0.018468640744686]],[[-0.041951656341553,-0.11201898753643,-0.081061087548733],[0.047442488372326,-0.0058690942823887,-0.020450215786695],[0.012382781133056,-0.036972604691982,-0.055501323193312]],[[0.033018779009581,-0.035161051899195,-0.092517822980881],[0.021949332207441,0.094380721449852,-0.060472428798676],[-0.016173671931028,0.010808071121573,-0.017304820939898]],[[-0.045753784477711,0.051269471645355,0.041228942573071],[-0.019999282434583,-0.01541948504746,0.056574039161205],[-0.051397413015366,0.059583112597466,0.02782978489995]],[[0.0033396233338863,-0.1371680945158,0.0064078392460942],[-0.010668846778572,0.042912874370813,-0.094337426126003],[-0.045032888650894,-0.053665868937969,-0.069258898496628]],[[0.021414058282971,-0.0035221942234784,-0.041876424103975],[0.052155803889036,-0.034880239516497,0.027638208121061],[-0.026193935424089,-0.0033094929531217,0.0028813565149903]],[[-0.04392509534955,-0.16706532239914,0.026325199753046],[0.019342264160514,-0.0030208847019821,-0.078480288386345],[-0.020596843212843,-0.011780852451921,0.00061680428916588]],[[-0.029217973351479,0.079022325575352,-0.028569161891937],[-0.15144418179989,-0.022391345351934,-0.017347102984786],[-0.04379053413868,-0.048474125564098,-0.014659739099443]],[[-0.018067218363285,-0.064542412757874,0.01390091329813],[0.0093838553875685,-0.046917088329792,-0.067846521735191],[0.027214821428061,-0.059093371033669,-0.050751585513353]],[[-0.066282361745834,0.041517041623592,-0.0069309142418206],[-0.082892961800098,-0.028515562415123,-0.057893052697182],[0.038383085280657,0.05977214500308,-0.0083359330892563]],[[0.056244470179081,-0.042252395302057,-0.11562176048756],[0.067306563258171,-0.09794744104147,-0.037133242934942],[0.05395058915019,0.036686740815639,0.025163544341922]],[[-0.095549114048481,0.0085090780630708,-0.0035830039996654],[-0.033797580748796,0.044033080339432,-0.00031804799800739],[0.0087886340916157,-0.027007356286049,0.067850157618523]],[[-0.020003344863653,0.039558872580528,-0.038008816540241],[-0.078641064465046,-0.051721077412367,0.0063792616128922],[0.0080158049240708,-0.0088271833956242,0.037987902760506]],[[0.027059055864811,-0.03997265547514,-0.07632065564394],[0.027162225916982,0.071952901780605,-0.061721723526716],[0.014211172237992,0.005730074364692,-0.021748038008809]],[[0.0032944071572274,0.047026816755533,-0.0091246208176017],[0.038224309682846,-0.10003883391619,-0.046866241842508],[-0.0020180847495794,0.046806149184704,0.053613390773535]],[[0.015233278274536,-0.07983211427927,0.001091180020012],[-0.015227036550641,-0.017419964075089,-0.0052744899876416],[-0.03306157886982,0.039172194898129,-0.029899194836617]],[[-0.022564154118299,-0.070597566664219,-0.096448160707951],[-0.058562509715557,0.083942539989948,-0.024355202913284],[-0.034924957901239,-0.0046917162835598,-0.0014138499973342]],[[-0.11513374745846,-0.01162666361779,-0.092535100877285],[0.067265465855598,-0.055185675621033,0.036560006439686],[-0.11844485998154,0.13253282010555,0.010168580338359]],[[0.031733829528093,-0.026107536628842,-0.013081450946629],[-0.022525617852807,-0.00078531407052651,-0.10519395023584],[0.016081783920527,-0.0039379512891173,0.02675206400454]],[[-0.097322732210159,0.036179322749376,0.085022978484631],[0.011079383082688,-0.020742598921061,-0.099268481135368],[0.039740648120642,-0.011360617354512,0.050581004470587]],[[-0.068632982671261,-0.060573138296604,-0.0013217644300312],[-0.021939791738987,-0.036325667053461,-0.030095281079412],[0.013990513980389,0.0047518461942673,-0.0076207355596125]],[[0.042333446443081,-0.054221417754889,-0.014730790629983],[-0.048995189368725,-0.0013485957169905,-0.053682807832956],[-0.010474011301994,0.032939355820417,0.021716186776757]],[[-0.10729416459799,0.010300571098924,0.034836906939745],[-0.079961068928242,-0.037050615996122,-0.068301379680634],[-0.013711280189455,0.034205790609121,0.13152721524239]],[[0.0039541525766253,-0.054128170013428,-0.033218376338482],[-0.027531055733562,-0.0087389294058084,-0.048753965646029],[0.051415979862213,-0.078666806221008,-0.076993875205517]],[[-0.054468430578709,0.072486370801926,0.076993860304356],[-0.05216197296977,-0.0054684584029019,0.08233105391264],[-0.033029824495316,-0.020437352359295,0.0016015735454857]],[[0.025397187098861,0.030086660757661,-0.081753000617027],[-0.022549856454134,-0.025869257748127,-0.061763752251863],[-0.05966505408287,0.02413996309042,-0.10956115275621]],[[0.048434607684612,-0.051324207335711,-0.061958763748407],[0.031049890443683,-0.0046979133039713,-0.033949449658394],[0.00055232550948858,-0.041784722357988,-0.028080267831683]],[[-0.060478642582893,-0.053543794900179,-0.0030243773944676],[-0.025069389492273,0.041459549218416,0.055259045213461],[-0.021250711753964,0.053756754845381,0.086124368011951]],[[-0.053248155862093,-0.037964895367622,-0.021286619827151],[-0.031553279608488,-0.10689633339643,0.066967383027077],[-0.060590174049139,-0.032759968191385,-0.011841830797493]],[[-0.064817748963833,-0.044161010533571,-0.010818571783602],[-0.031657040119171,-0.049272019416094,0.0892239138484],[-0.026881992816925,-0.020348582416773,0.035400778055191]],[[-0.042139586061239,-0.082873225212097,-0.049015454947948],[-0.039095316082239,-0.096702121198177,-0.077249996364117],[0.026619486510754,-0.019507337361574,-0.023884316906333]],[[-0.01946665905416,-0.068503521382809,0.00079760962398723],[-0.040361527353525,0.0048951590433717,0.060681242495775],[0.049830369651318,-0.06900567561388,-0.011171317659318]],[[0.018928904086351,-0.0057749743573368,0.084738150238991],[0.03249242156744,0.1308014690876,-0.065952338278294],[-0.046745542436838,-0.025672411546111,-0.043443962931633]],[[0.037733919918537,-0.011518922634423,-0.099595926702023],[0.056822273880243,-0.019824482500553,-0.061853926628828],[-0.06717287003994,0.03465073928237,0.075854413211346]],[[-0.037310592830181,-0.066353306174278,0.12395291775465],[-0.11374824494123,0.048636499792337,-0.033132672309875],[-0.046775706112385,-0.024175005033612,0.028203498572111]],[[-0.042381666600704,-0.004250091034919,0.02949907630682],[0.057692553848028,-0.066189341247082,0.012682781554759],[-0.010501133278012,-0.060316003859043,-0.054032828658819]],[[-0.015134936198592,0.032355215400457,-0.056759014725685],[0.078801557421684,-0.0026887243147939,-0.00018320340313949],[-0.057603269815445,-0.034010697156191,0.0050961775705218]],[[0.10280480980873,-0.0070193996652961,-0.018116232007742],[-0.041162602603436,0.012620205059648,-0.046261820942163],[0.012328648939729,0.042918514460325,-0.052071005105972]],[[0.064174897968769,0.085299573838711,0.053112361580133],[0.058200284838676,-0.052410528063774,-0.07294637709856],[0.024404453113675,-0.094080828130245,-0.052121751010418]],[[-0.030846942216158,-0.021646423265338,0.027702085673809],[0.0033680712804198,0.017903504893184,0.0060363300144672],[0.010455707088113,0.009731613099575,-0.010636028833687]],[[-0.020441498607397,-0.033842168748379,-0.087208934128284],[0.018736075609922,0.0080374600365758,-0.070322796702385],[-0.014453365467489,-0.027431048452854,-0.034175377339125]],[[0.015091634355485,-0.072958320379257,-0.043059807270765],[0.013440419919789,-0.081138037145138,0.029845608398318],[0.036140620708466,0.077012501657009,0.053219582885504]],[[0.014376075007021,0.028663020581007,0.00080335856182501],[0.018588941544294,-0.066984571516514,0.061043363064528],[0.076107554137707,-0.054098807275295,0.030186455696821]],[[0.053651943802834,-0.14979723095894,0.013367463834584],[-0.024386201053858,-0.082067400217056,0.034827716648579],[0.032763183116913,0.051883727312088,0.057107992470264]],[[-0.0060847732238472,0.04392820969224,-0.077845267951488],[0.0081342663615942,0.061457920819521,0.010981758125126],[0.053632657974958,-0.02611536718905,-0.018535299226642]],[[-0.0067449379712343,0.0097900200635195,-0.11112204194069],[-0.06519427895546,0.01262537855655,0.017455313354731],[0.0036044821608812,0.02888672798872,0.020845521241426]],[[-0.039692230522633,-0.039071764796972,0.023442469537258],[-0.091945558786392,-0.033546507358551,0.0038486225530505],[-0.014356167055666,-0.02011863514781,-0.0085989627987146]],[[0.023411359637976,-0.10476682335138,0.0065558580681682],[-0.0020985999144614,-0.030119037255645,0.046637363731861],[-0.02271063067019,-0.0073568955995142,0.045737974345684]],[[-0.065603397786617,0.034466482698917,-0.051041036844254],[-0.001819719793275,-0.018997952342033,0.13506229221821],[-0.0056942589581013,0.025431044399738,-0.0077463309280574]],[[0.057802483439445,-0.047699805349112,0.013027602806687],[0.05732262507081,0.11090301722288,0.04646410048008],[0.081900045275688,-0.18826727569103,-0.031195169314742]],[[-0.0039057706017047,-0.066339321434498,-0.032856300473213],[0.011007289402187,-0.015099724754691,0.021974451839924],[-0.0061553679406643,0.074955090880394,-0.026122778654099]],[[-0.03760215267539,-0.059664245694876,-0.017970664426684],[-0.084203019738197,0.042365554720163,0.075859278440475],[0.021508308127522,0.02435795404017,-0.053322046995163]],[[-0.043843869119883,-0.011160998605192,0.057815156877041],[-0.047638699412346,-0.085203506052494,-0.044731996953487],[-0.065214991569519,-0.075557701289654,0.066863410174847]],[[-0.10230465978384,-0.0081433122977614,0.064550794661045],[0.010846020653844,0.022655554115772,-0.012878272682428],[0.075263500213623,0.050455491989851,-0.16231349110603]],[[0.042288850992918,-0.067123934626579,-0.046803392469883],[0.08217728883028,-0.07336837053299,0.0096692899242043],[0.018566882237792,0.051243644207716,-0.048200882971287]],[[-0.059459324926138,0.0060616037808359,0.073966018855572],[-0.049781955778599,0.0077890190295875,0.0019330061040819],[0.059153337031603,-0.040757440030575,-0.0049128555692732]],[[-0.078063748776913,-0.047675870358944,0.071108542382717],[0.016083361580968,0.0051810881122947,0.0069552306085825],[-0.026170438155532,0.018443159759045,0.053948864340782]],[[-0.041119057685137,-0.12686868011951,0.072170481085777],[0.019612997770309,-0.029533157125115,-0.041104648262262],[-0.066517718136311,-0.07063389569521,0.0093801682814956]],[[-0.012925625778735,-0.04265072196722,-0.043732326477766],[0.0089466776698828,-0.089063256978989,0.043681405484676],[-0.052784092724323,0.0021245842799544,0.036363169550896]]],[[[0.069347053766251,-0.0091056497767568,-0.030332466587424],[0.053294260054827,-0.1403491050005,-0.051956154406071],[-0.030937384814024,0.13179802894592,0.031066872179508]],[[0.074011363089085,0.037785671651363,-0.037509717047215],[0.085586674511433,0.096534892916679,0.045264273881912],[0.043995391577482,-0.067364491522312,-0.13483293354511]],[[-0.023087335750461,-0.047337215393782,0.0059832097031176],[-0.034041717648506,-0.12879055738449,0.028869455680251],[-0.14677134156227,-0.014176710508764,-0.0066702691838145]],[[0.081552401185036,0.048579104244709,0.074849329888821],[-0.00053736660629511,-0.091306254267693,-0.042896445840597],[0.057176154106855,-0.10575467348099,0.037755846977234]],[[0.045794859528542,-0.033405255526304,-0.056141246110201],[-0.056873358786106,-0.033953674137592,-0.079503886401653],[0.014293733052909,-0.0060839359648526,-0.042649928480387]],[[-0.013771404512227,0.032393369823694,-0.036846674978733],[-0.11260465532541,0.041750587522984,0.034988474100828],[0.0081787807866931,0.01859400421381,-0.003658932633698]],[[-0.063084945082664,-0.064427211880684,0.031548772007227],[-0.02825553715229,-0.16819684207439,0.031291976571083],[-0.050818536430597,-0.067840121686459,0.072807691991329]],[[0.0034948759712279,-0.1365439593792,-0.027834957465529],[-0.03646370023489,0.024349199607968,-0.02228313498199],[0.011053899303079,-0.037382584065199,0.08423125743866]],[[0.00061857339460403,0.058687951415777,0.087646417319775],[-0.015665909275413,-0.12657245993614,0.16693702340126],[0.010128173045814,-0.077489286661148,-0.054085168987513]],[[-0.070094205439091,0.043599605560303,0.059594176709652],[0.019919142127037,-0.023875536397099,-0.0075436644256115],[-0.22753646969795,0.049251239746809,0.01921989955008]],[[-0.13249276578426,-0.044546011835337,0.064477302134037],[0.01080172881484,-0.097052797675133,0.017057117074728],[0.06010652706027,-0.042942520231009,0.025328928604722]],[[-0.010527001693845,-0.261808604002,-0.083493731915951],[-0.020602835342288,0.031014880165458,0.070469178259373],[-0.00029804010409862,0.074025668203831,0.050407007336617]],[[0.0041101984679699,-0.055638991296291,-0.026320839300752],[-0.15575575828552,-0.16312800347805,-0.064451016485691],[-0.011123427189887,0.028762912377715,0.04528545960784]],[[0.044149376451969,-0.039319157600403,0.090640611946583],[-0.073261879384518,-0.12249474972486,-0.077747866511345],[0.032925575971603,0.02503665164113,0.13873191177845]],[[-0.02387410774827,-0.033617772161961,-0.028041968122125],[0.025205796584487,0.020176649093628,0.16672338545322],[0.052634693682194,-0.0029088004957885,0.10871414840221]],[[-0.042700860649347,0.0094501636922359,-0.069329150021076],[-0.0014250417007133,0.0018585014622658,-0.001670558587648],[0.12605971097946,0.081554844975471,-0.019863082095981]],[[-0.068075925111771,-0.14566227793694,0.12677076458931],[-0.066421888768673,-0.10362599045038,0.19262772798538],[0.023957036435604,-0.023899536579847,-0.048319764435291]],[[-0.093993000686169,-0.1150128915906,-0.064291439950466],[-0.090437613427639,0.08475012332201,-0.0051601510494947],[-0.046036563813686,-0.030107032507658,0.0010651921620592]],[[-0.063756421208382,-0.015206310898066,-0.0093890940770507],[-0.070963226258755,0.067862063646317,0.11216124147177],[-0.078287251293659,0.072431422770023,0.13726982474327]],[[0.089956715703011,0.065464086830616,0.057755775749683],[-0.010325946845114,0.1572038680315,-0.0023580901324749],[-0.060722336173058,0.066514760255814,-0.078291825950146]],[[-0.083634994924068,-0.053355287760496,-0.0093507571145892],[-0.088765121996403,-0.018887566402555,-0.043361708521843],[-0.098002813756466,-0.028078693896532,-0.00081671989755705]],[[-0.021705463528633,-0.13313415646553,-0.067000202834606],[-0.099309839308262,0.086604088544846,-0.019313817843795],[0.0088690547272563,-0.053082931786776,0.080838792026043]],[[-0.022814439609647,0.059007283300161,-0.059080459177494],[-0.062110532075167,0.074753522872925,-0.001448969473131],[0.010966747999191,-0.035585548728704,-0.069645836949348]],[[-0.066201008856297,-0.010441529564559,-0.065062016248703],[-0.0087684551253915,0.074692226946354,0.13304325938225],[-0.099661223590374,0.043696206063032,0.059900049120188]],[[-0.080586984753609,0.047112606465816,0.077170461416245],[0.058534774929285,-0.08727390319109,-0.059090986847878],[0.070834845304489,-0.01876837015152,-0.01336498465389]],[[-0.056287083774805,-0.075482040643692,-0.026067797094584],[-0.035352170467377,0.075219452381134,0.0047831973060966],[0.0075388429686427,0.041546061635017,0.077710695564747]],[[0.071617297828197,-0.049898285418749,0.025077357888222],[-0.134327724576,-0.21133053302765,0.0013508144766092],[0.003042939119041,-0.042954307049513,0.086993396282196]],[[0.0073218061588705,-0.062352072447538,-0.016227440908551],[-0.016894090920687,0.040374413132668,0.031548995524645],[-0.034572798758745,-0.012341044843197,-0.064678981900215]],[[0.034863393753767,0.15808214247227,0.073057845234871],[-0.036404017359018,0.03022089600563,-0.21590383350849],[0.031310636550188,-0.037450645118952,-0.21545396745205]],[[-0.030190289020538,0.012436343356967,-0.011394176632166],[-0.019249035045505,-0.094392061233521,0.054992210119963],[0.011784076690674,-0.049514122307301,0.053846549242735]],[[-0.092292189598083,0.095158256590366,0.052940651774406],[0.0088278893381357,0.098370380699635,-0.1075479015708],[-0.03026021271944,0.19948284327984,-0.020963687449694]],[[0.23313128948212,0.074729427695274,0.13014954328537],[0.087494313716888,-0.00024770695017651,-0.061843860894442],[0.086339063942432,0.01681094430387,-0.14785240590572]],[[-0.16264119744301,-0.075396165251732,0.025500059127808],[-0.043914385139942,-0.077731177210808,0.233532294631],[0.15224477648735,-0.015545359812677,0.18681548535824]],[[-0.096059426665306,-0.082556553184986,-0.049987893551588],[-0.048508740961552,0.011393188498914,0.037210181355476],[0.011559578590095,0.12076281756163,0.12730523943901]],[[-0.080799482762814,-0.097338974475861,-0.048770945519209],[-0.036208588629961,-0.070329129695892,-0.014900950714946],[0.1933036595583,0.055322304368019,-0.015405165031552]],[[0.056685950607061,-0.11451185494661,-0.10052777081728],[0.066851519048214,0.0099839409813285,-0.022897498682141],[-0.023542318493128,-0.094712488353252,-0.13196684420109]],[[-0.12592534720898,-0.077592559158802,0.021003434434533],[-0.030951043590903,-0.14863330125809,-0.069040291011333],[0.041692454367876,0.039185035973787,0.093141995370388]],[[0.0078055779449642,-0.069760605692863,-0.020972097292542],[0.023237368091941,0.016580848023295,0.023847039788961],[-0.034874390810728,-0.10919355601072,-0.0064794342033565]],[[0.069941885769367,-0.010775699280202,-0.084118098020554],[-0.054699964821339,0.031070359051228,0.14293296635151],[-0.024983214214444,0.051774263381958,0.087684459984303]],[[0.078004345297813,0.0089447479695082,-0.013365056365728],[0.061666801571846,-0.059300806373358,-0.029587961733341],[0.05868972837925,-0.15590360760689,-0.13250289857388]],[[0.022748690098524,-0.012160938233137,0.0030513247475028],[-0.020451745018363,-0.11767244338989,-0.067715875804424],[0.048538990318775,0.013718016445637,0.064291328191757]],[[-0.015760073438287,0.0086881136521697,0.00070721574593335],[0.0076088183559477,-0.052024390548468,0.01570232398808],[0.095996432006359,-0.034635506570339,0.10092582553625]],[[-0.048291202634573,-0.086341954767704,-0.032012220472097],[0.0031846452038735,-0.036594241857529,-0.042902801185846],[0.049568902701139,-0.030659703537822,0.077730000019073]],[[-0.017119092866778,-0.046415783464909,-0.0049032284878194],[0.043478660285473,0.042124513536692,-0.14849048852921],[0.010145339183509,0.03445915132761,0.10040728002787]],[[-0.085169941186905,0.0043541868217289,0.043245036154985],[0.052872024476528,-0.18283872306347,0.04178087413311],[0.015369904227555,0.084718868136406,0.10820680856705]],[[-0.021265115588903,-0.073152087628841,-0.028533915057778],[0.046252857893705,-0.051880951970816,0.072418533265591],[-0.0086691537871957,0.017322644591331,-0.010589790530503]],[[0.099782899022102,0.030994962900877,-0.050473608076572],[-0.069689378142357,-0.049781195819378,-0.090240314602852],[-0.11311177909374,-0.061617285013199,-0.09907178580761]],[[-0.0046949000097811,-0.14048819243908,-0.047284815460443],[0.11201578378677,-0.055845428258181,0.039396792650223],[-0.012824216857553,0.032313615083694,-0.096475496888161]],[[0.018671147525311,0.0090040322393179,0.116933375597],[-0.10506051778793,-0.21781027317047,-0.20628958940506],[0.064105108380318,0.023118695244193,0.026376632973552]],[[-0.029344839975238,-0.091874189674854,-0.063567459583282],[0.010717608965933,-0.0049861874431372,0.047278538346291],[0.0089043350890279,-0.04253651201725,0.080323025584221]],[[-0.10142125934362,-0.07863537967205,-0.033209159970284],[0.064708761870861,-0.016013959422708,0.050404768437147],[-0.010979049839079,0.015291335061193,0.095392718911171]],[[-0.01053209323436,-0.068493366241455,0.095186777412891],[-0.038482923060656,-0.033986564725637,-0.015610481612384],[-0.032568041235209,0.13227094709873,0.088725417852402]],[[-0.053071409463882,-0.042430002242327,0.041084259748459],[-0.0011218129657209,-0.040452808141708,-0.14350879192352],[0.004760772921145,0.1642669737339,-0.02586554735899]],[[0.093334570527077,0.14415095746517,0.1061858907342],[0.0068139233626425,0.073039457201958,0.087820217013359],[0.044602878391743,0.027419753372669,-0.12023483216763]],[[-0.033009462058544,0.0025652940385044,0.0034363949671388],[0.037386354058981,-0.059143584221601,-0.046479396522045],[-0.0038220072165132,-0.079297848045826,0.0083857662975788]],[[-0.047619212418795,0.040885239839554,0.072368890047073],[0.0048335562460124,0.023657236248255,-0.070045903325081],[0.030841639265418,-0.10689251869917,-0.0038296007551253]],[[0.049629252403975,0.048493608832359,0.10229961574078],[0.14521047472954,0.040459852665663,0.13428056240082],[-0.0018332307226956,-0.10856029391289,0.031528633087873]],[[-0.04910734295845,-0.070602253079414,-0.084499210119247],[-0.056832108646631,0.029928173869848,0.1202649474144],[-0.064717538654804,-0.023752056062222,0.10273364186287]],[[-0.08413951843977,0.15971820056438,0.013640652410686],[0.016533879563212,-0.0037040635943413,-0.019341975450516],[-0.068081974983215,0.016503438353539,-0.050653602927923]],[[-0.18502895534039,-0.22969403862953,0.081107668578625],[5.5875440011732e-05,-0.15065933763981,-0.075431972742081],[0.016563452780247,0.050067871809006,0.12173634767532]],[[0.031314667314291,-0.013936036266387,0.00033676857128739],[0.091359995305538,0.056944027543068,-0.0074243959970772],[0.0077968253754079,-0.021835874766111,0.027599710971117]],[[0.040204335004091,-0.0052343150600791,0.070807255804539],[-0.071311868727207,-0.17119887471199,-0.054862752556801],[0.14368550479412,0.027473524212837,0.068454630672932]],[[-0.011808126233518,0.02904892899096,-0.021017979830503],[0.084769003093243,-0.024577002972364,0.02444314584136],[0.013643850572407,0.10480193048716,-0.14156553149223]],[[0.059550575911999,-0.012317985296249,-0.019508710131049],[0.0052805808372796,0.088126167654991,0.050913482904434],[0.037401840090752,-0.10845027118921,-0.25594472885132]]],[[[0.029063656926155,-0.024682715535164,-0.13416469097137],[0.055756330490112,0.050409495830536,-0.10792832821608],[0.041913744062185,0.087263084948063,0.038332838565111]],[[0.24703660607338,-0.094098791480064,0.0048261005431414],[-0.031174959614873,0.022844716906548,-0.10638698190451],[0.091348558664322,-0.0064831036143005,-0.013565008528531]],[[0.049162894487381,0.024450831115246,-0.061325177550316],[-0.1134582310915,0.038745991885662,-0.021112019196153],[-0.045365493744612,-0.031468857079744,0.069687902927399]],[[-0.24657478928566,-0.010115519165993,0.068885967135429],[-0.064671047031879,0.0037463188637048,0.21198199689388],[-0.13621781766415,-0.034137289971113,-0.070526547729969]],[[0.095723450183868,0.00056705134920776,0.020075378939509],[0.064140804111958,0.021128449589014,0.027070131152868],[-0.058166239410639,-0.1007644161582,-0.055611941963434]],[[0.096765600144863,0.017470380291343,0.12026255577803],[-0.041473854333162,0.003475381527096,0.0070914467796683],[0.033295907080173,-0.07769251614809,0.018984945490956]],[[-0.15887904167175,-0.12172713130713,-0.073776036500931],[0.023289060220122,-0.082487739622593,0.051117479801178],[-0.071746841073036,-0.13646757602692,-0.019237916916609]],[[-0.075888626277447,-0.016656501218677,0.12674342095852],[-0.15895235538483,0.07704945653677,-0.021224226802588],[-0.014229714870453,-0.015954647213221,0.070454277098179]],[[0.10878881812096,0.00055803928989917,-0.08141154050827],[-0.032624874264002,0.040013920515776,-0.022968107834458],[0.012081525288522,-0.017903422936797,0.02468042075634]],[[-0.041214767843485,0.032293919473886,0.079316027462482],[0.0044725434854627,0.10889580100775,0.083989217877388],[0.014839074574411,0.026907639577985,-0.026312513276935]],[[0.068262495100498,0.12948399782181,-2.2663316485705e-05],[0.01644866541028,0.027310581877828,0.083157241344452],[-0.013863352127373,-0.084223337471485,0.015422937460244]],[[0.036380287259817,-0.053966592997313,-0.023060249164701],[0.20701105892658,-0.080699495971203,-0.22795900702477],[0.22392007708549,0.056308757513762,-0.045023825019598]],[[-0.027944523841143,0.098043821752071,0.11560820043087],[-0.13904100656509,0.14898137748241,0.02911900728941],[-0.26134651899338,-0.067563198506832,0.090380243957043]],[[0.13620364665985,0.0093063991516829,0.047819957137108],[0.052207957953215,0.10824861377478,-0.005148371681571],[-0.00096943508833647,-0.048979461193085,0.02225155942142]],[[-0.072085075080395,0.039067342877388,-0.014760423451662],[-0.027900164946914,0.031416192650795,0.009110520593822],[-0.086102075874805,0.092471480369568,-0.13049581646919]],[[-0.062307354062796,-0.059707134962082,0.015503492206335],[0.083256013691425,0.047092065215111,0.069552689790726],[-0.06648176908493,-0.057948831468821,-0.079431623220444]],[[-0.0058808694593608,-0.076622359454632,0.11911033838987],[-0.20633445680141,0.067860491573811,-0.097873970866203],[0.071958757936954,-0.0065157520584762,0.029148191213608]],[[0.072730906307697,0.035065561532974,0.056320510804653],[0.0070050125941634,0.0098802410066128,0.15755206346512],[-0.11850947141647,-0.090011954307556,0.019182385876775]],[[-0.07586245238781,-0.004154805559665,0.1329508125782],[-0.068536922335625,-0.012382628396153,0.1973469555378],[-0.12256111204624,-0.13426487147808,0.039764974266291]],[[0.024924468249083,-0.14143051207066,-0.017424883320928],[0.11313010752201,0.035405680537224,-0.059315554797649],[0.061604738235474,0.10171105712652,-0.012628607451916]],[[0.011355746537447,0.14696374535561,0.080785498023033],[-0.03680918738246,0.1019819304347,0.029547112062573],[-0.11221854388714,-0.037395462393761,-0.023598171770573]],[[0.015386581420898,0.02084156498313,-0.093670517206192],[0.016536634415388,-0.063680574297905,0.096304029226303],[-0.14463867247105,-0.049152512103319,0.013837529346347]],[[0.056541912257671,0.075309656560421,0.10606595873833],[-0.021343160420656,0.024974683299661,-0.042559958994389],[-0.073472291231155,-0.16779175400734,-0.080153435468674]],[[-0.065268166363239,-0.085555426776409,-0.20912104845047],[0.18073470890522,0.0045849024318159,-0.0048052766360343],[0.085752435028553,0.11904696375132,0.061558786779642]],[[-0.015348456799984,-0.094809785485268,-0.058916263282299],[0.065124236047268,-0.038877323269844,0.16079685091972],[-0.13531082868576,-0.10253103077412,0.18937568366528]],[[0.12173918634653,0.0023411617148668,-0.15132085978985],[-0.019805200397968,-0.039995033293962,-0.044487785547972],[-0.10799607634544,-0.14054818451405,0.027522025629878]],[[0.042057499289513,-0.080808475613594,0.062100797891617],[0.0064942431636155,-0.10662702471018,0.04080893471837],[-0.019353870302439,-0.056716702878475,0.027045644819736]],[[-0.035329964011908,-0.043920043855906,-0.038255535066128],[0.079025372862816,0.0052706571295857,-0.037351433187723],[0.067091293632984,0.058809343725443,0.013189554214478]],[[-0.06512513011694,0.019648404791951,0.044084221124649],[-0.032770585268736,-0.14591401815414,0.034692849963903],[-0.11790575832129,-0.052259650081396,0.11710508167744]],[[-0.089192301034927,0.0045417691580951,0.045146524906158],[-0.089705161750317,0.078948475420475,0.060897726565599],[-0.1212749928236,0.031972594559193,-0.12684819102287]],[[0.021120920777321,-0.068384043872356,-0.041453324258327],[-0.084473475813866,0.1405024677515,-0.065895266830921],[0.033648669719696,-0.052232667803764,0.0054030157625675]],[[-0.030208783224225,0.11368483304977,0.041294846683741],[0.070980206131935,-0.042896468192339,-0.013877650722861],[0.028534783050418,0.0082294093444943,-0.062795050442219]],[[0.063382260501385,-0.033584091812372,-0.0054618963040411],[-0.072668120265007,-0.027782574295998,0.0024330688174814],[-0.079336613416672,-0.07386426627636,-0.074119068682194]],[[0.12779660522938,0.032302249222994,-0.060110364109278],[0.14397779107094,0.016757318750024,-0.012348252348602],[-0.040758520364761,-0.1790814101696,-0.024651519954205]],[[0.063779145479202,-0.019960001111031,0.040178008377552],[-0.074916951358318,-0.05660654976964,0.01703479886055],[-0.085426546633244,-0.14563181996346,-0.097324311733246]],[[0.054080240428448,-0.14564524590969,-0.0062053897418082],[0.096186757087708,-0.091125808656216,-0.25569015741348],[0.14476568996906,0.036888610571623,-0.019057914614677]],[[-0.029555065557361,-0.075510762631893,-0.043180711567402],[-0.0028434789273888,-0.10185660421848,-0.0056994268670678],[0.016977287828922,0.01577877625823,0.10380833595991]],[[0.01135915890336,-0.0013253657380119,-0.049657166004181],[0.023002224043012,0.19011488556862,-0.046357974410057],[0.039152596145868,-0.0053864507935941,-0.03395851701498]],[[0.11165796220303,-0.040834371000528,0.036257036030293],[-0.06123199686408,-0.061278905719519,-0.065676987171173],[0.034155081957579,0.026000829413533,-0.04593450576067]],[[-0.04862304776907,-0.09063858538866,0.026283940300345],[-0.0057163476012647,-0.043302800506353,-0.068356148898602],[0.0915816873312,-0.022639913484454,-0.0064567686058581]],[[0.13384509086609,-0.0026228551287204,-0.02212505415082],[0.053866196423769,-0.060957737267017,0.028329849243164],[-0.042523384094238,-0.023025752976537,-0.066296555101871]],[[0.062739118933678,0.058186810463667,0.018214473500848],[-0.063621670007706,-0.031953915953636,-0.060747388750315],[0.0067225159145892,-0.073139727115631,0.071932524442673]],[[-0.03727912902832,0.067343145608902,-0.025267062708735],[0.066633194684982,-0.066813305020332,0.039610154926777],[-0.027447210624814,-0.011642831377685,0.05862533301115]],[[0.0097764926031232,0.022938715294003,-0.036492981016636],[-0.038368582725525,-0.0218665599823,-0.0063580656424165],[-0.012159519828856,0.11099584400654,-0.0094660818576813]],[[0.053104430437088,-0.018616374582052,-0.052888408303261],[0.0087632220238447,-0.02454274520278,0.0055117714218795],[-0.032525457441807,-0.077283203601837,-0.0091786710545421]],[[-0.05930769443512,0.028785170987248,0.062530644237995],[0.015740929171443,0.040894757956266,-0.077088311314583],[-0.059261083602905,-0.12668986618519,-0.029417732730508]],[[-0.18121571838856,-0.013520709238946,0.0071729347109795],[-0.0950807929039,0.097525365650654,0.023276383057237],[-0.023312536999583,0.035445969551802,0.043294191360474]],[[-0.036490142345428,0.054797038435936,-0.034175910055637],[-0.0033285648096353,-0.019659319892526,-0.098089553415775],[0.0027129617519677,0.040762320160866,-0.014785944484174]],[[0.0053253159858286,0.012134738266468,-0.032220475375652],[0.17466495931149,-0.080451279878616,0.11417272686958],[-0.020576579496264,-0.026054067537189,0.014611637219787]],[[0.040041472762823,0.1106745377183,-0.00017422865494154],[0.020718118175864,0.013230262324214,0.041500084102154],[-0.10031821578741,0.017410708591342,-0.013982634991407]],[[-0.018063433468342,0.10664917528629,0.0013811842072755],[0.028687190264463,0.018133752048016,0.070391222834587],[-0.043197546154261,-0.097371615469456,-0.052540499716997]],[[0.0036860788241029,-0.18387740850449,-0.068492449820042],[0.0060152006335557,0.11041035503149,-0.055921718478203],[-0.10659594833851,0.076020658016205,-0.046910680830479]],[[0.16948682069778,0.072614513337612,0.054936725646257],[-0.094889499247074,-0.13657106459141,-0.043689139187336],[-0.054806981235743,-0.051086988300085,-0.021824132651091]],[[-0.013852408155799,0.0122876977548,0.055834945291281],[-0.045344658195972,0.07563803344965,-0.024210086092353],[-0.13541473448277,0.012554787099361,0.017893576994538]],[[-0.024798762053251,-0.061049677431583,-0.031665161252022],[-0.086218856275082,-0.054756447672844,-0.12693065404892],[-0.00016787459026091,-0.022876538336277,-0.064243607223034]],[[0.097763687372208,-0.026262288913131,-0.0065752440132201],[-0.0037015045527369,-0.020127492025495,-0.039973851293325],[0.065026700496674,-0.068376749753952,-0.041105724871159]],[[0.091609165072441,0.048465143889189,0.2203768491745],[0.11191956698895,-0.07620170712471,0.0032585398294032],[0.075250871479511,-0.086319424211979,0.11509463191032]],[[0.12575401365757,0.070357702672482,-0.059690278023481],[-0.076258540153503,0.065557204186916,0.040086571127176],[0.090614147484303,-0.20571148395538,-0.062814846634865]],[[-0.10606998205185,-0.049217879772186,-0.0029688950162381],[-0.045586932450533,0.10529354959726,0.1354629099369],[-0.06837272644043,-0.054491572082043,0.068946279585361]],[[-0.15091355144978,-0.0023841299116611,0.11197262257338],[-0.14872969686985,0.097508303821087,0.1438484787941],[-0.092078156769276,-0.11614085733891,0.069604530930519]],[[0.14167064428329,0.074863448739052,-0.1101353392005],[0.022023238241673,0.052733074873686,0.10635307431221],[-0.22916373610497,0.048547878861427,-0.058928031474352]],[[-0.0040022726170719,-0.015566606074572,0.0035830652341247],[0.086673460900784,-0.13675609230995,0.03905988112092],[-0.017007756978273,-0.041178591549397,0.068000122904778]],[[-0.059269335120916,0.018756367266178,-0.20904733240604],[-0.013773292303085,0.083308294415474,-0.032920505851507],[0.095091372728348,-0.12578988075256,0.033890672028065]],[[-0.12936736643314,-0.15381793677807,0.071569882333279],[-0.042464070022106,-0.01651574857533,0.017469242215157],[0.023065760731697,0.057663433253765,0.043677005916834]]],[[[-0.069912731647491,0.0052402652800083,0.080131128430367],[-0.032944269478321,-0.030776746571064,0.062052775174379],[0.076427429914474,-0.14221101999283,-0.13048340380192]],[[0.10955258458853,-0.058180764317513,-0.15192997455597],[0.083241932094097,0.03129979968071,-0.093101367354393],[0.008809469640255,0.0050695901736617,-0.043284758925438]],[[-0.17591468989849,-0.095990218222141,-0.013638333417475],[-0.039515648037195,0.11067432910204,0.11010929942131],[0.13193199038506,0.14958319067955,0.019290277734399]],[[-0.13982261717319,0.072725921869278,-0.033601563423872],[0.0048087956383824,-0.11814208328724,-0.032142881304026],[0.15177674591541,-0.15370434522629,-0.092332653701305]],[[0.074708580970764,-0.13736902177334,-0.047906994819641],[-0.012731349095702,-0.068250223994255,0.010184071958065],[0.064110517501831,-0.00042628025403246,0.068504862487316]],[[0.10750535875559,-0.16234955191612,-0.067217081785202],[0.080746501684189,-0.2184786349535,0.12358639389277],[-0.0015480993315578,-0.033727005124092,-0.01193053368479]],[[-0.12703414261341,0.058486774563789,0.056477818638086],[-0.050044145435095,0.02353890798986,-0.029703529551625],[0.15848283469677,0.05453184992075,0.030839338898659]],[[0.02897990308702,0.017456896603107,0.050077326595783],[0.046824220567942,-0.011082756333053,-0.1593032926321],[0.052471380680799,-0.013030740432441,-0.081173725426197]],[[-0.016390547156334,0.05806053057313,-0.11286517232656],[0.0080849761143327,0.034780722111464,-0.02324459142983],[0.010484515689313,0.068725138902664,-0.0021151381079108]],[[-0.071431085467339,0.038450408726931,0.062352191656828],[0.070283375680447,0.0048585194163024,0.15264113247395],[0.026820711791515,-0.0056407349184155,-0.041810899972916]],[[0.10111738741398,-0.054056897759438,0.028835585340858],[0.020010018721223,0.042038954794407,0.087600193917751],[0.0087506184354424,0.065817534923553,0.032123852521181]],[[0.081442967057228,0.018594352528453,-0.21054229140282],[0.054437611252069,-0.094535276293755,-0.12609069049358],[0.036947209388018,0.023250909522176,0.12758752703667]],[[-0.0730861723423,0.0014368137344718,-0.048819679766893],[-0.07910193502903,0.12553942203522,0.049554884433746],[0.077379062771797,0.045960765331984,0.0085888598114252]],[[0.1106708869338,-0.048973191529512,-0.024129552766681],[-0.057201471179724,0.074350908398628,0.0028213968034834],[0.036098811775446,0.081753000617027,-0.15599425137043]],[[-0.069170132279396,-0.021250043064356,-0.022846285253763],[0.087771438062191,-0.018049038946629,-0.022087257355452],[-0.061719439923763,-0.14258064329624,0.062863908708096]],[[0.051172625273466,0.022015729919076,-0.01014681905508],[0.036837313324213,-0.010365210473537,-0.038619987666607],[-0.01062981877476,-0.060327220708132,-0.054521914571524]],[[-0.047648441046476,-0.0076314844191074,-0.079530082643032],[-0.11092095077038,-0.074800066649914,0.10209154337645],[-0.11145567893982,-0.044092446565628,7.4845462222584e-05]],[[-0.00031322799623013,-0.25480768084526,0.004283806309104],[0.064678117632866,-0.059702917933464,0.051119562238455],[-0.053920604288578,0.10496008396149,0.077195838093758]],[[0.030407370999455,-0.072948418557644,-0.08475873619318],[0.013987882062793,0.019179468974471,0.088024467229843],[-0.060985933989286,0.087050035595894,0.057670641690493]],[[0.13593679666519,-0.017233800143003,0.054066099226475],[0.017043430358171,0.090922303497791,-0.049347776919603],[0.14962209761143,-0.028744332492352,-0.14653643965721]],[[0.089505098760128,0.058054786175489,-0.084157839417458],[0.065012268722057,-0.079091437160969,0.058535374701023],[-0.10298799723387,-0.13551144301891,0.013855529949069]],[[-0.011183581314981,0.021332873031497,0.052414335310459],[0.042222388088703,0.05147036164999,0.031631547957659],[0.035776413977146,0.027149857953191,-0.045224968343973]],[[0.099969819188118,-0.015197943896055,-0.0043827220797539],[0.042739655822515,0.015458797104657,0.013071431778371],[-0.075841546058655,0.0048304391093552,-0.037540033459663]],[[-0.010352187789977,-0.03708116710186,-0.15872731804848],[0.13068713247776,-0.13463340699673,-0.094841606914997],[-0.014908256009221,-0.077040515840054,-0.10651569068432]],[[-0.031598739326,-0.01630487665534,0.035971846431494],[-0.045469019562006,0.10620381683111,0.0046984096989036],[-0.093389675021172,0.084198132157326,-0.25219368934631]],[[0.081159882247448,-0.087799593806267,-0.1048398911953],[-0.033794827759266,0.07880488038063,-0.082682877779007],[0.073099464178085,0.078447781503201,0.024893540889025]],[[0.024766467511654,-0.091751471161842,-0.046620678156614],[0.023106573149562,-0.077490724623203,-0.07741854339838],[0.050511069595814,-0.11398743093014,0.08204710483551]],[[0.14728599786758,0.067969888448715,-0.083986654877663],[0.052063200622797,0.09421344846487,0.054164875298738],[-0.0043964674696326,-0.060009084641933,0.0064428318291903]],[[0.017350319772959,0.046777192503214,-0.1019095107913],[-0.024787683039904,0.11709869652987,-0.030253184959292],[-0.0097722411155701,0.0076640383340418,-0.11955316364765]],[[0.12034314870834,0.10770657658577,-0.043130476027727],[-0.093821853399277,0.007367798127234,0.04669214785099],[0.04177526012063,0.014516890980303,-0.06312220543623]],[[0.032915700227022,-0.0011502518318594,-0.0014928769087419],[0.14458350837231,0.070865519344807,0.061836563050747],[0.039316333830357,0.10180762410164,-0.15593820810318]],[[-0.031845707446337,-0.060928497463465,-0.13618923723698],[-0.055962707847357,0.010524285957217,-0.060900174081326],[0.094271883368492,0.00371656822972,0.081630237400532]],[[-0.03585622087121,0.07626711577177,0.059005010873079],[0.034632090479136,0.039810184389353,-0.0037776546087116],[0.070288948714733,-0.085671290755272,-0.053946018218994]],[[0.09435997158289,0.02330269664526,0.087077960371971],[0.079320415854454,-0.1085502281785,0.03980553150177],[-0.032732699066401,0.072917580604553,0.015433738939464]],[[0.13189294934273,0.043964195996523,-0.031747959554195],[0.061070870608091,-0.09960712492466,-0.046823419630527],[-0.02841292321682,-0.089738085865974,0.0022706417366862]],[[-0.069089882075787,0.018558340147138,0.023322109133005],[-0.083945520222187,-0.091940976679325,-0.070801854133606],[0.012778599746525,-0.030677679926157,0.017665721476078]],[[0.075666449964046,0.021908102557063,0.1055810675025],[-0.052397325634956,-0.051430832594633,-0.035111490637064],[-0.19200250506401,-0.064697287976742,-0.12079557031393]],[[0.032090991735458,0.07540986686945,0.093808218836784],[-0.025730907917023,0.078437022864819,-0.085421472787857],[0.043438497930765,0.13121069967747,-0.13315235078335]],[[-0.070889852941036,0.058147102594376,-0.087435849010944],[0.040726490318775,-0.026780243963003,0.038761850446463],[0.086250096559525,-0.044760338962078,0.12143494188786]],[[0.03441296890378,0.036273505538702,0.07192400097847],[-0.084958232939243,0.016338035464287,0.0014369864948094],[0.096804045140743,0.074598178267479,0.03743963688612]],[[0.051610518246889,-0.012371866963804,0.044400729238987],[0.054276783019304,-0.013817084021866,0.0094890948385],[0.073752835392952,0.0029078414663672,0.065663389861584]],[[0.096160165965557,0.052745930850506,0.061838746070862],[-0.003184384200722,0.043583940714598,-0.049229931086302],[-0.14128808677197,-0.084439337253571,0.15707094967365]],[[-0.029670011252165,-0.130250826478,-0.032999284565449],[-0.044871598482132,0.076216027140617,0.11682578921318],[0.074120208621025,0.07751601934433,0.013588385656476]],[[-0.028863433748484,-0.086758807301521,0.18939454853535],[-0.02178462035954,0.014637454412878,0.029678663238883],[-0.0075267110951245,-0.069514811038971,-0.016894577071071]],[[0.0050527611747384,-0.01783231459558,0.031992830336094],[-0.067691765725613,-0.10680267214775,0.0058870404027402],[-0.12752160429955,0.00398616399616,-0.074552394449711]],[[-0.16251392662525,0.061961852014065,-0.074154295027256],[-0.054472140967846,0.06559120118618,0.022281773388386],[-0.040699042379856,-0.041486445814371,-0.059665217995644]],[[-0.092359438538551,0.12365510314703,-0.0079309120774269],[-0.13918560743332,-0.14864617586136,-0.10795484483242],[-0.021872334182262,-0.11507005989552,0.050145335495472]],[[0.15489441156387,-0.02579702809453,-0.15274524688721],[0.0043626739643514,-0.070062421262264,-0.057475514709949],[0.025505032390356,-0.057143367826939,-0.10416992753744]],[[0.13111679255962,0.13718268275261,0.0069847712293267],[-0.069147855043411,-0.061824813485146,-0.082183763384819],[0.043847665190697,0.04891038313508,0.022611517459154]],[[-0.052555344998837,0.11791408807039,-0.011177442967892],[0.034124348312616,0.057734023779631,-0.094418942928314],[-0.13659165799618,-0.044090822339058,-0.010763854719698]],[[0.011683811433613,0.070508375763893,0.1152192056179],[-0.012802263721824,0.065230257809162,0.11826362460852],[-0.10682798922062,-0.056567054241896,-0.029935352504253]],[[-0.031672291457653,0.0032217677216977,-0.027417976409197],[0.023883512243629,0.026863776147366,0.0325917750597],[0.046049822121859,-0.098814204335213,-0.02538581751287]],[[-0.088614404201508,0.028958141803741,0.0064494162797928],[0.18095225095749,-0.0094872172921896,-0.017270551994443],[0.12051942199469,-0.068291626870632,-0.056370418518782]],[[-0.21889136731625,0.088786326348782,-0.029231132939458],[0.033052049577236,-0.023512782528996,0.011844104155898],[-0.0007841843762435,0.0076418020762503,0.024298651143909]],[[-0.043891433626413,-0.13510574400425,-0.02656034193933],[0.033702973276377,-0.09808124601841,-0.022813614457846],[-0.073361948132515,-0.076012380421162,-0.18455323576927]],[[0.021892411634326,0.065225772559643,0.079842403531075],[0.024950779974461,0.058013625442982,-0.0063870307058096],[0.018793368712068,0.049895294010639,-0.058967288583517]],[[0.05838530510664,0.18443369865417,-0.018736056983471],[0.15937043726444,0.017956640571356,-0.082988604903221],[0.11294268071651,0.12012923508883,0.00068204663693905]],[[-0.03155605122447,0.0953329205513,0.067212291061878],[-0.057040899991989,-0.17615240812302,0.07857047021389],[-0.18567296862602,-0.057554829865694,0.024880990386009]],[[0.040900159627199,-0.1865311563015,0.029540430754423],[0.11219248175621,0.037681009620428,0.015117355622351],[0.091386914253235,-0.01612931676209,-0.19265103340149]],[[0.063102230429649,-0.13361370563507,0.030933035537601],[0.088858343660831,-0.076191417872906,0.03236673399806],[0.07777912914753,0.041616972535849,-0.086798794567585]],[[0.071952775120735,0.048227712512016,0.093989141285419],[0.033193401992321,-0.023426933214068,0.0066230925731361],[-0.085874639451504,0.0023797056637704,-0.017203733325005]],[[-0.03215017914772,-0.023854007944465,-0.036133736371994],[0.018880970776081,-0.10595712810755,-0.071560889482498],[0.087302066385746,-0.1627971380949,-0.061789624392986]],[[0.058294367045164,-0.0052144802175462,-0.024695357307792],[-0.075508065521717,0.050275608897209,-0.0061630154959857],[-0.095589026808739,0.094978764653206,-0.020319497212768]],[[-0.041993524879217,-0.22595469653606,0.038845617324114],[-0.18460600078106,0.039700888097286,0.011323378421366],[0.12599222362041,-0.015322580002248,0.058056205511093]]],[[[-0.10893251746893,-0.037005800753832,0.062651894986629],[-0.050262752920389,0.059418827295303,0.0020323391072452],[-0.069198474287987,0.09559029340744,-0.0024343158584088]],[[-0.018159162253141,0.040839664638042,-0.014601904898882],[0.027728816494346,0.053922452032566,-0.057811178267002],[0.01953605748713,-0.012427250854671,0.052431620657444]],[[-0.099020667374134,0.0036703208461404,-0.086275860667229],[0.018370876088738,0.0072110928595066,-0.05553287640214],[0.040399681776762,0.00060347653925419,0.035552438348532]],[[0.12161099910736,0.12584549188614,-0.029632790014148],[-0.10737445950508,0.0034612796735018,0.054236683994532],[-0.16719821095467,-0.077782317996025,-7.6270596764516e-05]],[[0.052066430449486,-0.081681102514267,-0.034542486071587],[0.01189707685262,-0.054471880197525,-0.082342125475407],[0.022075084969401,0.12137850373983,0.02832262031734]],[[-0.0014882681425661,-0.12523844838142,-0.072612404823303],[-0.044797506183386,0.019887195900083,0.081922054290771],[-0.022039035335183,-0.17693205177784,-0.09064257144928]],[[0.020311824977398,0.090277582406998,-0.0044760317541659],[-0.015604190528393,0.037250626832247,-0.033356104046106],[0.018226521089673,-0.10083521157503,-0.0021502182353288]],[[0.063366875052452,0.13162060081959,-0.058005265891552],[-0.089480996131897,-0.07287660241127,0.038304761052132],[-0.12103515118361,0.0075862538069487,0.11769729107618]],[[0.091905027627945,0.064576834440231,0.0096652545034885],[-0.1088677495718,0.056870102882385,-0.0043246746063232],[-0.069117054343224,-0.090654373168945,0.063106074929237]],[[-0.091308780014515,-0.079952336847782,-0.031444504857063],[-0.0050296513363719,0.0043927035294473,0.0059583452530205],[-0.032904174178839,-0.0030787324067205,-0.0052258782088757]],[[-0.090617381036282,0.057904399931431,0.014593292959034],[0.00029839086346328,-0.038483954966068,-0.033031117171049],[0.022101547569036,-0.088521108031273,-0.059813357889652]],[[-0.056074492633343,-0.12525877356529,0.077168457210064],[0.027013124898076,0.045680485665798,0.01105497777462],[0.093076847493649,0.029648628085852,-0.0040171220898628]],[[0.023639298975468,0.029274543747306,-0.0060139112174511],[0.086846984922886,0.0015602281782776,0.01479658856988],[-0.034598097205162,-0.025768434628844,-0.058138981461525]],[[0.12001050263643,0.029091497883201,0.12882223725319],[-0.010740490630269,0.057832445949316,0.0038043041713536],[-0.058411426842213,0.1074008718133,0.028273846954107]],[[0.062243893742561,-0.0022784010507166,0.035762563347816],[-0.091787733137608,-0.034032981842756,0.017480013892055],[0.069660484790802,-0.16937199234962,0.069678761065006]],[[0.030609017238021,0.027474818751216,-0.12484155595303],[0.0026512839831412,-0.00077356729889289,0.046074021607637],[-0.019856922328472,0.015561323612928,-0.069336675107479]],[[0.022797292098403,0.19868570566177,-0.087780997157097],[-0.097446471452713,-0.030833456665277,0.10076815634966],[-0.05949179828167,-0.034262247383595,-0.042585972696543]],[[-0.064480870962143,0.011600033380091,0.052769776433706],[-0.018843814730644,0.0094992201775312,0.032387122511864],[0.067044764757156,-0.033745728433132,0.013715013861656]],[[0.016996601596475,-0.072102330625057,-0.033863950520754],[-0.094788037240505,0.06030048802495,0.0086262430995703],[0.074361078441143,-0.038617338985205,-0.16756716370583]],[[-0.023399211466312,0.014728849753737,-0.078887104988098],[0.12948401272297,0.088821105659008,-0.0074250483885407],[-0.014387495815754,0.12587755918503,0.078102603554726]],[[-0.075475499033928,0.036840595304966,0.066207773983479],[-0.03582476451993,0.049274668097496,-0.082821525633335],[0.057997450232506,0.014926064759493,-0.0043687829747796]],[[0.095980018377304,-0.13647100329399,-0.057049259543419],[-0.053399410098791,-0.045201677829027,0.047778077423573],[-0.092091992497444,-0.13088311254978,-0.014047398231924]],[[-0.24368903040886,0.0017287698574364,0.042807079851627],[0.14273564517498,0.13325783610344,-0.030168926343322],[-0.052234902977943,-0.022898809984326,0.074462287127972]],[[0.012913770973682,-0.064809150993824,0.034891217947006],[-0.044565372169018,-0.0075711472891271,0.021785151213408],[-0.025549054145813,-0.056996326893568,0.0030352456960827]],[[0.050602350383997,-0.044696684926748,0.083635956048965],[-0.038968022912741,-0.061781838536263,0.045513555407524],[0.025634368881583,-0.08731384575367,-0.028998859226704]],[[0.089104689657688,-0.03075996786356,-0.045233950018883],[0.11883947998285,0.017563482746482,-0.021213641390204],[-0.072977229952812,0.16270057857037,0.06245718896389]],[[-0.051839519292116,-0.019272670149803,-0.04413540661335],[-0.054997276514769,0.0042235208675265,0.0049039758741856],[-0.022812195122242,0.086281083524227,0.054354324936867]],[[-0.065349899232388,-0.081268697977066,0.008659171871841],[0.1254865527153,-0.010028666816652,-0.050643894821405],[0.030004154890776,-0.10687014460564,-0.017243314534426]],[[0.039842635393143,0.0081100631505251,0.00148098426871],[0.0098122144117951,-0.1836412101984,-0.083979047834873],[-0.052118457853794,0.063432313501835,-0.0095662856474519]],[[-0.043691664934158,0.0010352340759709,-0.043618079274893],[0.0048674549907446,-0.019075412303209,0.018529227003455],[0.020298158749938,0.015728686004877,0.070124804973602]],[[0.099489152431488,0.023557251319289,-0.015069902874529],[-0.037306297570467,0.096654444932938,0.0084351357072592],[0.0659254565835,0.10492078959942,-0.13394792377949]],[[5.2266605052864e-05,-0.057827420532703,0.06865032017231],[-0.0019488871330395,0.003470647148788,-0.048161972314119],[0.02347169443965,0.16651113331318,0.017148433253169]],[[-0.0042113997042179,-0.074642136693001,0.056537572294474],[-0.018154621124268,-0.097390301525593,-0.044104691594839],[-0.095611020922661,0.14063714444637,0.19085119664669]],[[-0.032702919095755,-0.066370315849781,0.12449408322573],[0.068863242864609,0.028606126084924,-0.065192729234695],[-0.1298448741436,-0.026197969913483,-0.031134741380811]],[[0.042075134813786,-0.0064794621430337,0.032117530703545],[-0.060302890837193,0.058713801205158,-0.078700743615627],[0.11268386989832,0.032881196588278,0.12918396294117]],[[-0.049362145364285,-0.10414472967386,-0.070266962051392],[-0.12336149066687,-0.051115177571774,0.036561414599419],[0.13377133011818,-0.064149729907513,-0.072954602539539]],[[-0.035623922944069,0.049771286547184,-0.11557402461767],[-0.002723524114117,-0.054700624197721,-0.036683566868305],[-0.0086649702861905,0.05052712932229,-0.15026162564754]],[[-0.10674039274454,-0.022681213915348,0.016702434048057],[0.056041430681944,0.0024591786786914,0.0023911092430353],[-0.032605547457933,0.0063604521565139,0.083922490477562]],[[0.19358032941818,0.022764662280679,-0.091014891862869],[-0.00956264231354,0.18232193589211,-0.091726914048195],[-0.016254493966699,0.035909246653318,0.038426872342825]],[[-0.051209807395935,0.012717729434371,0.0094300014898181],[-0.018164351582527,0.16379863023758,-0.045117281377316],[-0.031139440834522,-0.071711041033268,0.062511257827282]],[[0.076886333525181,0.0401268042624,-0.0079980418086052],[-0.028054429218173,0.059475742280483,0.035750467330217],[-0.07351715862751,0.045431222766638,0.016081385314465]],[[0.095833659172058,0.0018377874512225,0.022557666525245],[-0.071586072444916,0.10908899456263,-0.054043237119913],[0.055580355226994,-0.14291588962078,0.047963209450245]],[[-0.012195283547044,0.054080683737993,0.098125323653221],[-0.071852162480354,-0.034038592129946,-0.012320838868618],[0.026626152917743,0.083001285791397,0.03537742421031]],[[-0.016364317387342,-0.10410945862532,-0.025001855567098],[0.17854161560535,-0.0076196626760066,-0.023531079292297],[-0.016794754192233,0.010116794146597,-0.0064841322600842]],[[-0.077001504600048,0.024478271603584,0.029155969619751],[-0.030923098325729,-0.0051488354802132,-0.0016224490245804],[-0.0067634372971952,0.019045203924179,0.016785031184554]],[[-0.009644920937717,0.010030028410256,0.002709060208872],[-0.011247474700212,0.013207596726716,0.046859722584486],[-0.028076913207769,-0.15351743996143,-0.049991264939308]],[[0.047566190361977,0.10535431653261,0.060202166438103],[0.033908627927303,-0.00016892429266591,0.019611738622189],[-0.006232192274183,0.019059833139181,0.054417673498392]],[[0.054164040833712,-0.079742886126041,-0.022899355739355],[0.031522836536169,-0.058508481830359,0.030219215899706],[0.062031663954258,-0.026364080607891,0.044449411332607]],[[-0.049473233520985,-0.056794799864292,-0.025103405117989],[0.060133844614029,-0.092105932533741,-0.094635978341103],[-0.0054474975913763,0.13771094381809,0.092865027487278]],[[-0.019632533192635,-0.026785038411617,0.0051042148843408],[-0.06462037563324,0.07377502322197,0.027328461408615],[-0.072105474770069,0.063238620758057,-0.043600965291262]],[[0.0039487131871283,-0.013017773628235,0.021250665187836],[0.082337014377117,0.049578834325075,-0.065845087170601],[-0.080765284597874,-0.013226635754108,-0.019913613796234]],[[-0.0063200443983078,0.014721666462719,0.071861706674099],[0.0024606452789158,0.034859582781792,0.072110421955585],[-0.063484810292721,-0.069041587412357,-0.014086263254285]],[[0.035402879118919,0.049236085265875,0.0054816026240587],[-0.0014404361136258,-0.036950994282961,0.07657728344202],[-0.040511380881071,-0.074712872505188,-0.19389137625694]],[[-0.082346342504025,0.053141500800848,0.096648633480072],[0.0071147670969367,0.028013695031404,0.0213324110955],[-0.0017828732961789,0.13096599280834,0.004470543935895]],[[0.063007138669491,-0.062793239951134,-0.039175920188427],[0.022399747744203,-0.00078257865970954,-0.029360411688685],[0.015507427975535,-0.0081335371360183,0.0097606517374516]],[[0.067862279713154,0.01399888843298,0.043801173567772],[-0.087406903505325,-0.021855194121599,-0.040052223950624],[0.016639010980725,-0.031880803406239,0.082342334091663]],[[0.0089809419587255,0.080009363591671,0.088095232844353],[-0.006796651519835,-0.061746459454298,-0.036336019635201],[-0.0058761383406818,0.10067036747932,0.031278427690268]],[[0.056823085993528,-0.071913123130798,0.056384555995464],[0.01350964512676,0.0099063226953149,0.0030405959114432],[-0.026992995291948,-0.05378357693553,-0.025459406897426]],[[0.031363010406494,0.0045788949355483,-0.042134802788496],[0.066307611763477,-0.0041320025920868,0.010629178024828],[-0.067347541451454,0.02978191524744,0.042395733296871]],[[-0.063620194792747,0.024956569075584,0.021202515810728],[-0.1256984770298,0.065780505537987,-0.032432723790407],[-0.19165033102036,-0.02930342592299,0.06004836037755]],[[0.10708800703287,0.010577884502709,-0.049612205475569],[-0.14867840707302,0.053012900054455,0.06569404900074],[-0.0056581068783998,-0.10711129754782,-0.050494614988565]],[[0.21088069677353,0.091266065835953,-0.079467557370663],[-0.03910056501627,0.031475178897381,-0.049863994121552],[-0.08544983714819,-0.079836264252663,0.028546091169119]],[[0.13018704950809,-0.02380682528019,-0.017653761431575],[-0.018600722774863,-0.014031928963959,-0.034658573567867],[0.090682551264763,0.068598203361034,-0.1325256228447]],[[-0.09195426851511,0.10408038645983,0.081910498440266],[0.11528059840202,0.00032093230402097,-0.018768116831779],[0.097637660801411,-0.050238009542227,0.056870181113482]]],[[[-0.079361259937286,0.02249738574028,0.0041545699350536],[0.033449202775955,0.059467859566212,0.084062404930592],[-0.082371070981026,0.090746395289898,-0.040159612894058]],[[0.078402683138847,0.035750150680542,0.014896173961461],[0.011997060850263,0.038503047078848,-0.088654160499573],[-0.024098217487335,-0.012533206492662,0.033158279955387]],[[0.035905230790377,-0.028236754238605,0.0039880173280835],[-0.033688794821501,-0.095071531832218,-0.07813324034214],[-0.15099243819714,-0.043033212423325,0.034896697849035]],[[-0.034383948892355,0.16400767862797,-0.16223177313805],[-0.29676893353462,0.24803297221661,-0.13531938195229],[0.0028633205220103,0.13825623691082,-0.056484673172235]],[[0.19632109999657,-0.14665265381336,0.10557196289301],[-0.016022967174649,-0.11927648633718,0.031830687075853],[0.0031439301092178,-0.0036144144833088,-0.01258297264576]],[[0.015296781435609,-0.13115911185741,-0.0030892218928784],[-0.064795218408108,0.10708399116993,0.014381286688149],[0.059165760874748,-0.0057365191169083,0.20265480875969]],[[-0.048705291002989,0.089186936616898,-0.064068824052811],[-0.061521958559752,0.092477060854435,-0.13679625093937],[-0.16804680228233,0.0037597103510052,0.046257689595222]],[[0.10785691440105,-0.070272877812386,0.13026778399944],[-0.016481837257743,-0.022866856306791,0.067141681909561],[0.021527402102947,-0.021388404071331,0.0057241669856012]],[[-0.017002232372761,0.042369183152914,-0.041155233979225],[0.0030852679628879,-0.038616124540567,0.048215582966805],[0.040305875241756,-0.04047167301178,0.0045800525695086]],[[-0.022339725866914,-0.090717412531376,-0.012337294407189],[0.07040361315012,-0.083556212484837,0.02333839982748],[0.23571932315826,-0.14862805604935,-0.10259065777063]],[[0.013981541618705,0.043767854571342,-0.052332833409309],[-0.20169606804848,-0.10813972353935,-0.004772107116878],[0.064257450401783,-0.077045559883118,-0.053164083510637]],[[0.059131268411875,-0.27812013030052,0.15170265734196],[0.024657271802425,-0.0099902534857392,0.15871722996235],[0.17233638465405,-0.20954132080078,0.010486774146557]],[[0.08906190097332,0.035097021609545,-0.088720113039017],[0.0038722944445908,0.12240831553936,-0.14190736413002],[-0.11302746087313,0.049143508076668,-0.070991471409798]],[[0.031504798680544,-0.14091707766056,0.044393017888069],[-0.011381639167666,-0.15789897739887,-0.0067067719064653],[-0.043704885989428,-0.19325579702854,0.15653583407402]],[[0.015098934061825,0.012178059667349,-0.067471094429493],[-0.14789898693562,0.12137577682734,-0.14176453649998],[0.016319124028087,0.076982632279396,-0.11100084334612]],[[0.016050742939115,-0.076744817197323,0.0025341014843434],[-0.0023730769753456,0.0083799632266164,-0.074774220585823],[-0.019359996542335,0.016463814303279,0.033572763204575]],[[-0.17364025115967,0.016775039955974,-0.0027385358698666],[0.079178750514984,-0.10309819877148,-0.004584594629705],[-0.032837845385075,-0.010044516064227,0.049874052405357]],[[0.092248320579529,-0.29644754528999,0.11613726615906],[-0.026032702997327,0.057892952114344,-0.016999827697873],[0.13627128303051,-0.26778319478035,0.074012964963913]],[[-0.075135707855225,0.050516407936811,-0.022440873086452],[0.036961309611797,-0.20400729775429,-0.05467826128006],[0.051477685570717,-0.025716112926602,0.12837010622025]],[[0.087692022323608,-0.0092738829553127,-0.011262317188084],[0.0047430186532438,0.14599819481373,0.01989958435297],[-0.088223554193974,0.12569807469845,-0.15386839210987]],[[0.011032781563699,0.050811301916838,0.09248835593462],[-0.06918179243803,-0.15791596472263,-0.027316965162754],[0.0089267613366246,-0.21198028326035,-0.0082696182653308]],[[0.080532304942608,-0.049924228340387,0.079262398183346],[-0.037267580628395,-0.1038720831275,0.10048744827509],[-0.039262905716896,0.051901992410421,0.059753585606813]],[[0.012216278351843,0.052373096346855,-0.11867347359657],[0.015430903062224,0.070413380861282,-0.13379262387753],[0.034992080181837,0.039198409765959,-0.14518503844738]],[[-0.0057865572161973,-0.11104244738817,0.077538013458252],[0.052091166377068,-0.10982249677181,0.16390128433704],[-0.025264017283916,0.054496925324202,0.086223483085632]],[[0.098419316112995,-0.22495597600937,0.040025290101767],[0.028268102556467,-0.25230801105499,0.14652052521706],[0.096016943454742,-0.099961370229721,-0.042671859264374]],[[0.019840585067868,-0.23061360418797,0.13993664085865],[0.059235725551844,-0.0061798011884093,-0.09993602335453],[0.0055983765050769,-0.14050441980362,0.08291782438755]],[[0.096598237752914,-0.07538116723299,0.060773514211178],[-0.051329795271158,0.069033943116665,-0.12122743576765],[-0.29413875937462,0.093798443675041,-0.051837891340256]],[[0.19373401999474,-0.1017897054553,0.14010663330555],[-0.071664616465569,-0.041066396981478,-0.046877834945917],[0.069929070770741,-0.08312426507473,-0.02306973002851]],[[0.13148064911366,-0.070768304169178,0.037584025412798],[0.021344861015677,0.044958934187889,0.026784906163812],[-0.16954208910465,0.027492012828588,-0.097942732274532]],[[0.10004901140928,-0.010075704194605,0.067256778478622],[-0.036803636699915,-0.19865959882736,0.032047476619482],[-0.037002258002758,0.067289263010025,-0.096938021481037]],[[-0.084776610136032,0.002728417981416,0.01262723095715],[0.10699840635061,0.0098062129691243,-0.14525383710861],[-0.12536355853081,0.071472302079201,0.035694696009159]],[[0.026540353894234,0.022463208064437,-0.15621533989906],[0.0087779657915235,0.055020544677973,-0.030536076053977],[-0.060739189386368,0.12169979512691,-0.016940880566835]],[[0.088482335209846,-0.22963458299637,0.16515968739986],[-0.11395882070065,-0.2555840909481,0.23464468121529],[0.040110126137733,-0.14137156307697,0.16319541633129]],[[0.10849972814322,-0.19719679653645,0.18892945349216],[-0.015682935714722,-0.12256465107203,0.058032996952534],[0.021962339058518,-0.1071393340826,0.060251802206039]],[[-0.070076741278172,0.089579939842224,-0.083482898771763],[-0.065842658281326,0.046486556529999,-0.0015804077265784],[0.083378292620182,-0.14584773778915,0.038400910794735]],[[-0.096935197710991,0.041427463293076,0.087066225707531],[0.16885308921337,-0.034546740353107,0.00014861981617287],[0.0014592894585803,-0.06136092543602,-0.030889296904206]],[[-0.063624180853367,-0.030214689671993,0.071137838065624],[0.013515044003725,-0.084857814013958,0.075524769723415],[0.037497255951166,0.031445287168026,-0.0023310335818678]],[[0.089716717600822,-0.088127166032791,-0.13992160558701],[-0.050473392009735,-0.11396565288305,-0.078516744077206],[-0.094779923558235,0.087444953620434,0.12922212481499]],[[-0.014878782443702,0.00068128312705085,0.097044356167316],[-0.066638678312302,-0.07445777207613,0.066055454313755],[-0.037945441901684,-0.0276566632092,-0.035895369946957]],[[0.14691254496574,-0.027220863848925,-0.00061076506972313],[-0.045610703527927,-0.18742604553699,-0.00022289266053122],[0.097265176475048,-0.010592852719128,0.03351741656661]],[[-0.14827905595303,0.093673750758171,-0.067643523216248],[-0.059118334203959,-0.055415529757738,-0.046851668506861],[-0.07710687816143,0.024176843464375,-0.012876562774181]],[[0.016243860125542,0.044947680085897,0.00090695399558172],[-0.054402638226748,-0.068683154881001,0.0091269379481673],[-0.069975949823856,-0.024247540161014,0.091691590845585]],[[0.085251204669476,-0.036266848444939,-0.069379441440105],[-0.039047211408615,-0.1149035692215,0.027437046170235],[-0.088033601641655,-0.15767630934715,-0.035176120698452]],[[0.010938310064375,0.041137952357531,0.021935004740953],[0.014605479314923,-0.026883823797107,-0.044247284531593],[-0.053453113883734,0.00098405894823372,0.042745910584927]],[[-0.03585697337985,-0.13426448404789,0.063059784471989],[-0.013849225826561,-0.16542112827301,-0.032475810497999],[-0.0096168648451567,-0.11236120015383,0.0053740534931421]],[[0.023285835981369,0.015405127778649,-0.051041044294834],[-0.096747323870659,-0.014087758027017,-0.07225526869297],[-0.08048003166914,-0.014045244082808,-0.116031691432]],[[0.010964936576784,0.085151486098766,0.010472429916263],[-0.058499217033386,0.0953673645854,-0.10038963705301],[-0.10995090007782,0.072568222880363,-0.061542738229036]],[[-0.18018306791782,0.094893135130405,-0.040864784270525],[-0.053826570510864,-0.14998152852058,0.10858546197414],[0.053914789110422,-0.17285098135471,0.14480867981911]],[[0.03134024143219,-0.16610173881054,0.19493255019188],[0.065635792911053,-0.096798971295357,0.19979120790958],[0.12272431701422,-0.17953327298164,0.054928325116634]],[[0.066558048129082,-0.023938799276948,0.0046311221085489],[0.0043312851339579,-0.055190227925777,-0.088796384632587],[-0.0057812165468931,-0.0046617891639471,0.056914940476418]],[[0.06541334092617,-0.0075923395343125,0.052930757403374],[-0.025970501825213,-0.1373111307621,-0.052239622920752],[-0.0044546611607075,-0.049158539623022,-0.049014005810022]],[[-0.080647274851799,0.091180540621281,-0.029000524431467],[-0.13465815782547,0.04256309196353,0.020895706489682],[-0.027522513642907,0.13637083768845,-0.014282328076661]],[[-0.038626287132502,0.038900695741177,0.02495071478188],[-0.060933407396078,-0.024930587038398,-0.076437808573246],[-0.043470788747072,0.11041422188282,-0.11551012843847]],[[-0.051051896065474,0.024792771786451,-0.025857083499432],[-0.0031516870949417,0.022525256499648,-0.01711742207408],[0.11227203160524,0.13137246668339,0.10701924562454]],[[-0.025564722716808,0.0526536218822,-0.015272043645382],[-0.045177210122347,-0.055225171148777,-0.0093641839921474],[-0.026796564459801,-0.14959216117859,-0.016307277604938]],[[-0.054195918142796,0.03566262498498,0.003266594838351],[0.090032033622265,-0.12023315578699,-0.10405102372169],[0.080396048724651,-0.052909888327122,0.092573210597038]],[[-0.024482205510139,0.062999680638313,0.055902272462845],[0.12555046379566,-0.013958942145109,0.047771610319614],[0.16454169154167,-0.12119346112013,0.1014199256897]],[[0.076594538986683,-0.083543382585049,-0.0062864478677511],[-0.019020752981305,0.052766591310501,-0.036829423159361],[-0.14688378572464,-0.10216943919659,0.072738535702229]],[[0.0081668114289641,0.038275323808193,0.02910222671926],[0.016217758879066,-0.0060147345066071,0.09503348171711],[-0.082519136369228,0.018833301961422,-0.13113825023174]],[[0.084657154977322,-0.048209596425295,0.11369203031063],[0.050578124821186,-0.076849907636642,0.10318975150585],[-0.041429113596678,-0.045250151306391,-0.0057769324630499]],[[0.16252756118774,-0.20620647072792,0.0011354349553585],[0.054628498852253,-0.29720211029053,0.095267415046692],[0.08086671680212,-0.21129794418812,0.066263921558857]],[[0.0083046220242977,0.12301049381495,-0.18271091580391],[-0.24811534583569,-0.12911753356457,-0.11428469419479],[0.089453756809235,0.033363964408636,0.10968537628651]],[[0.0039274515584111,-0.053931914269924,-0.16463157534599],[0.13403423130512,-0.18535785377026,0.08193176984787],[0.011662045493722,0.13945230841637,0.0094668297097087]],[[-0.059953991323709,0.12489350885153,0.010501768440008],[0.038880914449692,0.17672197520733,-0.23335660994053],[-0.010877002961934,-0.03018095344305,-0.00010117125930265]]],[[[-0.057962600141764,-0.031641151756048,0.097866579890251],[-0.035574905574322,-0.037973288446665,-0.025243500247598],[-0.021979866549373,-0.020735166966915,-0.045124739408493]],[[-0.014216277748346,-0.048567559570074,-0.023783892393112],[0.067980870604515,-0.063315451145172,0.060695070773363],[-0.097310401499271,0.10217805206776,0.020199665799737]],[[-0.021765587851405,-0.085078917443752,-0.0012583064381033],[-0.023174336180091,-0.17301952838898,-0.068596407771111],[-0.091252669692039,-0.17934142053127,-0.088792823255062]],[[-0.15563714504242,-0.11146374046803,-0.051994446665049],[-0.08640968054533,0.075167275965214,0.08818431198597],[0.095005549490452,0.14549474418163,-0.037873487919569]],[[0.022404462099075,0.013407754711807,-0.021793494001031],[-0.0017169179627672,-0.046682938933372,0.036856699734926],[0.011150628328323,0.024604531005025,0.010594442486763]],[[0.010051214136183,-0.019867239519954,-0.048065986484289],[-0.044498335570097,-0.042971093207598,0.0094616338610649],[0.029052581638098,0.059273529797792,0.043283849954605]],[[-0.067410632967949,-0.014388108626008,-0.098668210208416],[0.00084655068349093,-0.059538073837757,0.07873272895813],[0.0062276562675834,-0.02149660885334,0.072163805365562]],[[0.0080926418304443,-0.019973004236817,-0.016649028286338],[-0.089061662554741,0.04399997740984,0.10945829749107],[-0.032106462866068,-0.078556299209595,-0.013667677529156]],[[0.081763967871666,0.17193172872066,0.10951969772577],[-0.027842039242387,-0.054649740457535,-0.079947307705879],[-0.076281681656837,-0.11119436472654,-0.035845916718245]],[[-0.018129680305719,0.11434477567673,-0.022668898105621],[0.020446382462978,-0.078854560852051,0.080131508409977],[-0.037628371268511,0.08535361289978,0.071534305810928]],[[0.08930716663599,-0.0025422112084925,-0.01886628754437],[-0.13271832466125,-0.16894064843655,-0.044993236660957],[-0.059881485998631,-0.047472678124905,-0.053342152386904]],[[0.097418695688248,0.11854719370604,-0.021891064941883],[0.11844187229872,0.10542847216129,0.11854276061058],[-0.021820168942213,0.02817702665925,-0.022331368178129]],[[-0.11184722930193,-0.15429571270943,-0.10857553780079],[-0.12838743627071,-0.15529498457909,-0.029344273731112],[0.032247524708509,-0.051547609269619,0.040585994720459]],[[0.024669274687767,0.010737578384578,0.027704849839211],[-0.12802411615849,-0.077733539044857,0.095310613512993],[-0.028550315648317,-0.015640996396542,0.078105621039867]],[[-0.0170917827636,0.017793884500861,0.087015070021152],[0.019252356141806,0.083046458661556,-0.026444114744663],[0.0091207716614008,-0.042541440576315,-0.12662553787231]],[[0.031968265771866,-0.029497431591153,-0.0016197764780372],[-0.0061628143303096,-0.033757142722607,0.037358827888966],[-0.0054072705097497,0.039588045328856,0.022367123514414]],[[-0.0085948966443539,0.015651229768991,-0.071258798241615],[-0.016638917848468,0.057620510458946,-0.09237515181303],[0.048859935253859,-0.054067563265562,-0.0081298379227519]],[[0.067413426935673,0.022082133218646,-0.0048014516942203],[-0.0147297186777,-0.082444421947002,-0.044861745089293],[-0.075466722249985,-0.11574808508158,-0.041855357587337]],[[-0.15442776679993,0.06065472215414,-0.11146374046803],[0.010818501003087,-0.08390673995018,-0.007206289563328],[-0.028789214789867,0.05469361692667,0.031107507646084]],[[0.0075156837701797,-0.069830276072025,0.018315317109227],[0.039123971015215,0.18327188491821,0.052489269524813],[-0.060585245490074,0.078648880124092,0.015737112611532]],[[-0.059640195220709,-0.031633548438549,0.020747831091285],[-0.029789680615067,0.0015042135491967,-0.064641587436199],[0.038604740053415,0.059847395867109,0.027991894632578]],[[-0.065801732242107,-0.051971901208162,-0.14003564417362],[-0.045574203133583,-0.09373751282692,-0.032243940979242],[0.0078954277560115,-0.011169379577041,-0.013072652742267]],[[-0.034003902226686,0.036999676376581,-0.069303661584854],[-0.020067747682333,0.010901039466262,0.06659808754921],[0.086468644440174,-0.05575817450881,0.08270151168108]],[[0.001606271835044,0.041507165879011,-0.018320582807064],[-0.17030170559883,-0.31124198436737,-0.010921997949481],[0.022027505561709,0.05464443564415,0.0030677632894367]],[[-0.024845147505403,0.065132789313793,0.025440912693739],[-0.01561251282692,-0.059233460575342,-0.016509994864464],[0.025720976293087,-0.070702940225601,0.015193786472082]],[[-0.17630462348461,0.0039874813519418,0.044233500957489],[-0.023363891988993,-0.035768117755651,-0.06485216319561],[-0.10520598292351,0.035040404647589,0.011214857921004]],[[0.025999182835221,0.0026164723094553,-0.00050204119179398],[0.043348137289286,0.056102763861418,0.064241297543049],[0.068074055016041,0.048382394015789,-0.027279993519187]],[[0.044674824923277,0.074385285377502,0.029308235272765],[-0.010462966747582,0.017151134088635,0.047602470964193],[-0.022425474599004,-0.017665075138211,0.020642263814807]],[[-0.083002351224422,-0.077827163040638,-0.12141464650631],[-0.10101767629385,-0.1538260281086,-0.00022942139185034],[-0.015091232024133,-0.040481764823198,0.014627832919359]],[[-0.025839721783996,-0.13188491761684,-0.034137811511755],[-0.01923299767077,0.017937919124961,0.014946274459362],[0.079085662961006,0.0078584859147668,0.080424763262272]],[[0.076322130858898,0.046506244689226,-0.13011966645718],[0.0059002139605582,0.034846860915422,0.068962231278419],[-0.031846068799496,0.0054917531087995,0.09957666695118]],[[-0.043810907751322,0.017702858895063,0.035655576735735],[-0.070643320679665,-0.084525689482689,-0.013547052629292],[-0.013339673168957,0.10554403066635,0.051341231912374]],[[0.025722734630108,-0.0030944277532399,-0.018593199551105],[-0.024433283135295,-0.013695511035621,-0.10513488948345],[0.092122428119183,-0.032130382955074,-0.022903965786099]],[[0.086616910994053,-0.17218913137913,0.049327820539474],[-0.15353167057037,0.015312570147216,0.030710490420461],[-0.093548268079758,0.027160091325641,0.042269449681044]],[[-0.082397513091564,-0.073233000934124,-0.066103361546993],[-0.019832439720631,-0.10326708853245,0.044462144374847],[0.11834578216076,0.031272795051336,0.03029271773994]],[[-0.038914725184441,0.1084543839097,0.0079237222671509],[0.1109257414937,0.098387278616428,0.0028642923571169],[-0.037997525185347,0.01914575509727,-0.033290877938271]],[[-0.034181855618954,-0.18452453613281,-0.122817248106],[0.01886129938066,0.064148709177971,0.059240952134132],[0.10842523723841,-0.032860103994608,-0.047067631036043]],[[0.043187376111746,-0.10294509679079,0.07511880248785],[0.02615587040782,-0.040180217474699,-0.032507371157408],[-0.095480851829052,-0.078335776925087,0.014508152380586]],[[-0.064186818897724,0.046844877302647,-0.0087134074419737],[0.0920205488801,0.051012244075537,-0.0067525063641369],[-0.044242929667234,0.026841018348932,-0.0011379092466086]],[[0.033601593226194,-0.1034636721015,-0.10361690074205],[0.011095836758614,-0.043717876076698,0.036921158432961],[-0.04631619900465,-0.021727565675974,0.088866695761681]],[[0.058634579181671,0.10434322059155,-0.081227377057076],[-0.037054132670164,-0.16423776745796,-0.026363290846348],[0.16561411321163,0.13880035281181,0.026198921725154]],[[-0.0068868971429765,0.0074263541027904,0.031631384044886],[-0.11836878955364,0.015113326720893,-0.0080347442999482],[0.045110780745745,-0.14322620630264,-0.056295722723007]],[[0.027430988848209,0.012606348842382,0.063992500305176],[-0.051945336163044,-0.016973493620753,-0.11574175953865],[-0.016651526093483,-0.01246936339885,0.057555861771107]],[[-0.078924894332886,-0.1013875156641,-0.093833148479462],[0.031746573746204,0.016442190855742,0.053579453378916],[0.025389464572072,0.11381420493126,0.041869431734085]],[[-0.050378452986479,0.024998238310218,-0.033570069819689],[-0.024317810311913,-0.12420386821032,0.020195668563247],[0.015325888060033,0.063298858702183,-0.0022593792527914]],[[-0.0049924734048545,-0.0038740853779018,0.037476029247046],[-0.015352320857346,-0.080612234771252,-0.061245147138834],[-0.0050642443820834,0.082049034535885,-0.10912504792213]],[[-0.17412094771862,-0.15838158130646,-0.029977731406689],[-0.093098729848862,-0.147556245327,-0.10003506392241],[0.032820753753185,-0.13224942982197,-0.023117387667298]],[[0.0071176085621119,0.0064182318747044,-0.009673997759819],[0.0020561153069139,0.05819945037365,-0.009597803466022],[0.05447006598115,0.0057044792920351,0.062430091202259]],[[0.013935648836195,0.021343363448977,-0.0044095809571445],[0.0063392901793122,-0.043685618788004,-0.071266993880272],[0.0014973033685237,0.041038129478693,-0.00017453724285588]],[[-0.03773270919919,-0.021439591422677,0.022525167092681],[0.028410013765097,-0.074733473360538,0.0059457500465214],[0.13369461894035,-0.03572441637516,-0.048180878162384]],[[0.031365152448416,-0.057769030332565,-0.027649510651827],[-0.024835212156177,-0.036555305123329,-0.097915820777416],[-0.037536259740591,0.0019049374386668,0.00029058795189485]],[[0.09224171936512,-0.0079694790765643,-0.035258088260889],[0.064160414040089,0.019805258139968,-0.04131992161274],[0.013667911291122,-0.0023922049440444,-0.03389523178339]],[[-0.048078555613756,-0.027962880209088,-0.084975518286228],[-0.067572444677353,-0.0038210980128497,-0.085858419537544],[-0.079740956425667,0.12208269536495,0.016907980665565]],[[-0.050857808440924,-0.11860757321119,-0.029268389567733],[0.0092820124700665,-0.12811014056206,-0.092433243989944],[-0.017929691821337,-0.092439904808998,0.063432395458221]],[[-0.034420017153025,0.047712370753288,-0.016519719734788],[-0.012584947049618,-0.091643244028091,0.10909824818373],[0.16795229911804,0.0028848110232502,0.049277149140835]],[[-0.026144538074732,-0.084146611392498,-0.0081471921876073],[0.0061675114557147,0.11499840021133,-0.10784906893969],[0.019314929842949,0.0049303863197565,0.070172913372517]],[[0.016939798370004,0.19064198434353,0.1213880777359],[0.0044377697631717,0.08143450319767,0.11429312080145],[0.011630831286311,-0.13108491897583,0.0074219722300768]],[[0.091172866523266,0.0014438338112086,0.0095297154039145],[-0.065062202513218,0.0059118419885635,-0.030974198132753],[-0.012361535802484,-0.065675102174282,-0.018531171604991]],[[0.040128231048584,0.0070486781187356,-0.012316535227001],[-0.12110329419374,0.060226812958717,0.029795579612255],[0.082669697701931,-0.06156537681818,-0.052111804485321]],[[0.033412478864193,0.046083398163319,-0.0062966020777822],[-0.10377751290798,-0.034751642495394,-0.013336151838303],[-0.078297436237335,-0.069514997303486,0.11261763423681]],[[0.039109073579311,-0.0083699701353908,0.0010362024186179],[0.0076672458089888,0.028886159881949,-0.038110785186291],[0.018470713868737,-0.043307788670063,0.0082659469917417]],[[-0.0054517220705748,-0.019373834133148,-0.0063913268968463],[-0.024803921580315,0.020487289875746,0.097522653639317],[-0.041398197412491,0.068506136536598,0.018403938040137]],[[0.025856006890535,0.063142888247967,-0.028909604996443],[0.056849543005228,0.049341563135386,-0.045940086245537],[0.073328301310539,-0.047872744500637,0.057517986744642]],[[-0.019762117415667,0.10120809823275,0.11090433597565],[0.0092236017808318,-0.076157048344612,0.022582890465856],[-0.0096836471930146,0.012232406996191,-0.16516324877739]]],[[[-0.026468127965927,0.035059805959463,0.024080900475383],[-0.0062633333727717,-0.05003572627902,-0.066408067941666],[-0.089421570301056,-0.071509316563606,0.11503369361162]],[[-0.11770663410425,0.042373970150948,-0.04879567027092],[-0.07358692586422,0.027894124388695,-0.030231790617108],[-0.059175699949265,0.025115007534623,0.036089707165956]],[[-0.0091221434995532,-0.053433131426573,-0.055722959339619],[-0.069654524326324,0.0012599155306816,0.029597843065858],[0.030285377055407,0.040715526789427,-0.049691386520863]],[[0.054952431470156,-0.010355305857956,-0.0023183196317405],[-0.045435309410095,-0.10090094804764,-0.007475626654923],[-0.092380233108997,-0.17648243904114,-0.118383012712]],[[-0.0072170994244516,0.088765196502209,-0.074272215366364],[0.047469198703766,0.080110497772694,-0.09469997882843],[-0.073656477034092,0.0081295901909471,-0.084531329572201]],[[-0.13987717032433,-0.12998551130295,0.080125212669373],[-0.15508815646172,-0.18223161995411,0.10361088812351],[-0.043175492435694,-0.15768368542194,-0.070709638297558]],[[0.0075218705460429,-0.03751040995121,-0.020712135359645],[-0.10362784564495,-0.10024216026068,-0.074499271810055],[-0.011893624439836,-0.10570332407951,-0.22246433794498]],[[-0.14035804569721,-0.00580985378474,-0.040799468755722],[-0.086605131626129,-0.13065028190613,-0.021161315962672],[0.14044040441513,-0.078265003859997,-0.08462143689394]],[[-0.044528231024742,0.096147753298283,-0.0025473774876446],[0.065306268632412,-0.023185284808278,-0.015211865305901],[-0.12566594779491,-0.047850001603365,0.078971840441227]],[[-0.081595338881016,-0.14935024082661,-0.033968094736338],[-0.026461642235518,-0.14463821053505,-0.058025930076838],[-0.20781365036964,-0.097470290958881,-0.045248433947563]],[[-0.06138851493597,-0.062656611204147,-0.019232036545873],[0.080577358603477,-0.085378415882587,0.064853176474571],[-0.16562755405903,-0.059172887355089,-0.024326600134373]],[[-0.19294466078281,0.0068506160750985,0.012415596283972],[-0.081413544714451,-0.11904064565897,0.044335916638374],[-0.067475989460945,-0.079598382115364,0.005105756688863]],[[-0.0077493051066995,-0.063965730369091,-0.091420598328114],[-0.051758788526058,0.0046493359841406,-0.070601738989353],[-0.15392147004604,-0.0039330678991973,-0.089485555887222]],[[0.031397510319948,-0.1589736789465,-0.12346498668194],[-0.027998592704535,-0.086105145514011,-0.076014578342438],[0.067001648247242,0.1437710672617,0.070032633841038]],[[-0.1037420257926,-0.13123323023319,-0.01015199162066],[0.1270397156477,-0.16298219561577,-0.0042706951498985],[-0.012258248403668,0.015267261303961,-0.065598353743553]],[[-0.044472571462393,0.033808261156082,-0.029879994690418],[-0.014130402356386,-0.031568996608257,0.023562150076032],[-0.018442509695888,-0.061328187584877,-0.069527260959148]],[[-0.05380617082119,-0.13058097660542,-0.03545131906867],[-0.055298179388046,0.0014135120436549,0.022672262042761],[-0.22664365172386,-0.01867943815887,-0.071810357272625]],[[-0.15064120292664,0.02107117138803,0.015667637810111],[0.013486493378878,-0.098560877144337,0.064342513680458],[-0.097399555146694,0.016316527500749,0.065089352428913]],[[0.006607131101191,-0.093594960868359,-0.049832429736853],[-0.082226276397705,0.029196765273809,-0.029861649498343],[-0.04327954351902,0.069760151207447,0.059152200818062]],[[0.10129780322313,-0.0026403802912682,0.071102976799011],[0.058316502720118,0.050509493798018,0.017937250435352],[0.16591858863831,0.01905258372426,0.0059064733795822]],[[-0.0083967363461852,-0.14754717051983,0.15823289752007],[-0.046413447707891,-0.045129716396332,-0.023231092840433],[-0.19876462221146,0.12491694092751,-0.01401680894196]],[[-0.01474928483367,0.026315269991755,-0.011353977024555],[-0.089870274066925,0.044328756630421,0.025885716080666],[-0.13825295865536,-0.12836389243603,0.043160054832697]],[[0.0005314945592545,0.057665020227432,-0.11158018559217],[-0.12546502053738,-0.02055161818862,-0.046646527945995],[-0.08204972743988,-0.0044033778831363,-0.017174677923322]],[[0.012702642939985,-0.018526826053858,-0.1107555180788],[-0.13098095357418,-0.13659608364105,0.006822797935456],[0.091337390244007,-0.05765838176012,0.029222935438156]],[[0.019176879897714,-0.018969036638737,0.12906980514526],[-0.086142383515835,-0.056070070713758,-0.049099497497082],[0.064821138978004,0.015086912550032,-0.18046827614307]],[[0.014604319818318,-0.032703094184399,0.022348444908857],[-0.1481541544199,0.087948925793171,0.037268705666065],[-0.23877002298832,-0.0018663572845981,0.090677745640278]],[[-0.055764835327864,-0.036479823291302,-0.17628811299801],[-0.16842931509018,-0.087593421339989,-0.12454811483622],[0.058601334691048,-0.066978231072426,-0.018954388797283]],[[-0.047429103404284,-0.011663189157844,0.012738460674882],[0.022435147315264,-0.096416927874088,-0.015167913399637],[-0.0017110714688897,-0.057687763124704,-0.095856092870235]],[[-0.08083288371563,-0.092497982084751,-0.038708869367838],[-0.12519517540932,-0.12669438123703,-0.079386904835701],[-0.023773469030857,-0.01399456243962,-0.15199810266495]],[[0.066973470151424,-0.11515672504902,0.040319137275219],[0.12802509963512,0.14189855754375,0.0051723700016737],[0.076768562197685,-0.051413618028164,-0.036126393824816]],[[-0.0011688995873556,-0.058540429919958,-0.12489505857229],[-0.016325335949659,-0.10737890005112,-0.0096190320327878],[-0.089237809181213,-0.040133941918612,-0.10494118928909]],[[0.078181408345699,-0.022104233503342,0.018107550218701],[-0.059218272566795,-0.080493077635765,0.064247287809849],[0.10935238003731,0.036867260932922,0.036727882921696]],[[-0.091470956802368,-0.081212878227234,0.01884662732482],[-0.08626164495945,0.077710270881653,-0.13602763414383],[-0.076620809733868,0.010898348875344,-0.10146920382977]],[[-0.083386279642582,0.018373940140009,-0.1266235858202],[-0.11530840396881,0.049843233078718,-0.050268165767193],[-0.11366745084524,0.12640397250652,0.076344855129719]],[[0.00064600381301716,-0.087449967861176,0.1194197461009],[-0.038497764617205,-0.034668326377869,0.083081990480423],[0.092549413442612,-0.097910061478615,0.057409469038248]],[[-0.015118799172342,0.0086122658103704,-0.0531395226717],[-0.043995406478643,-0.15491345524788,-0.16231569647789],[-0.091857105493546,-0.1226347759366,-0.095628924667835]],[[-0.0046782325953245,-0.087224945425987,-0.077055692672729],[-0.013305808417499,-0.055385269224644,-0.096827402710915],[-0.095846630632877,-0.10967762023211,-0.10416042804718]],[[0.039984442293644,-0.15960764884949,-0.045147232711315],[-0.11609098315239,-0.049563363194466,-0.0041598593816161],[0.056920785456896,0.10126032680273,-0.22102330625057]],[[0.031639870256186,-0.11777136474848,0.14031319320202],[-0.2045221477747,-0.055046282708645,-0.057257454842329],[-0.079998753964901,-0.035963390022516,0.2163103222847]],[[0.019758954644203,-0.02403187379241,-0.033191103488207],[-0.044086221605539,-0.051379412412643,-0.020492620766163],[-0.032330114394426,-0.067810244858265,-0.016129603609443]],[[-0.15613302588463,-0.073005676269531,-0.05386919900775],[0.051788311451674,0.035283952951431,0.12127803266048],[-0.087436772882938,-0.060803052037954,0.010846908204257]],[[-0.1087522059679,-0.141800314188,0.0016141664236784],[-0.0047293156385422,-0.18287605047226,-0.03020565956831],[-0.077090546488762,-0.10555412620306,-0.26024404168129]],[[-0.14282387495041,-0.18366295099258,-0.015688868239522],[-0.041800308972597,-0.0086901094764471,-0.019538782536983],[-0.057535100728273,-0.056147754192352,-0.051299408078194]],[[0.019449301064014,-0.068432785570621,0.030487613752484],[-0.030080581083894,-0.091123551130295,-0.012467469088733],[0.051815714687109,-0.02071649953723,0.094687454402447]],[[-0.071315318346024,-0.035365235060453,-0.098479188978672],[-0.011191948316991,-0.16809551417828,-0.016286032274365],[-0.0029119655955583,-0.017463171854615,-0.0029452887829393]],[[-0.16540867090225,-0.12250786274672,-0.086683094501495],[0.0023867255076766,-0.120490655303,0.0010907186660916],[-0.06951679289341,-0.012799330055714,0.014721976593137]],[[0.14397478103638,-0.082873307168484,-0.079183422029018],[-0.076996400952339,-0.24219685792923,-0.10642544925213],[-0.018021762371063,-0.076858446002007,0.034044504165649]],[[-0.033012591302395,-0.024152999743819,-0.013099906034768],[-0.056482512503862,0.044481638818979,-0.072921141982079],[-0.042813032865524,-0.11628349125385,-0.15931965410709]],[[-0.025563936680555,0.062849491834641,-0.014443540945649],[-0.037667743861675,-0.11585631221533,-0.025796229019761],[0.018934786319733,0.071824848651886,-0.031637951731682]],[[-0.041872601956129,0.019991394132376,0.0057321614585817],[-0.091950684785843,-0.085188068449497,-0.024847738444805],[-0.032981928437948,-0.11468756198883,-0.065916001796722]],[[-0.04660626500845,-0.12238331884146,-0.034715514630079],[-0.14063580334187,-0.1485201716423,0.013771574012935],[-0.018186526373029,-0.14101631939411,-0.10812109708786]],[[-0.021476600319147,-0.094106592237949,-0.043837293982506],[-0.11418509483337,-0.15658470988274,-0.098328717052937],[0.037311058491468,-0.10125089436769,0.016528896987438]],[[0.020751314237714,-0.071367733180523,0.031946301460266],[-0.14276044070721,0.010687543079257,-0.0049383845180273],[0.12095043808222,-0.0400635227561,-0.046541094779968]],[[-0.08582528680563,-0.070677578449249,-0.10848230868578],[-0.025218771770597,0.056082524359226,0.041851609945297],[-0.11623775959015,0.082836076617241,-0.0080768801271915]],[[0.047159530222416,-0.039151325821877,-0.038244143128395],[-0.091511972248554,-0.13556988537312,-0.061818812042475],[-0.033137869089842,-0.17480838298798,0.022045265883207]],[[-0.17594854533672,0.032224707305431,-0.22990040481091],[-0.00056487403344363,-0.016020053997636,-0.24666826426983],[-0.047427993267775,0.045725233852863,-0.085220322012901]],[[0.11108347028494,0.073456943035126,-0.053793113678694],[0.17878307402134,0.023824453353882,0.070059634745121],[0.16399116814137,-0.10618230700493,0.033238831907511]],[[0.078240476548672,0.00624616490677,-0.11145436018705],[-0.12592789530754,-0.062239348888397,-0.013337540440261],[-0.30629178881645,-0.012115164659917,0.037852857261896]],[[-0.082150310277939,-0.098049573600292,-0.14674048125744],[0.051778681576252,-0.048413440585136,-0.014679756015539],[-0.097448736429214,0.02915507927537,-0.16871859133244]],[[0.012400658801198,0.020156746730208,-0.091310851275921],[-0.10055288672447,-0.067121304571629,-0.041519179940224],[-0.013096246868372,0.086485527455807,0.090835452079773]],[[0.0039981775917113,-0.056720469146967,0.052273605018854],[-0.061458148062229,0.0065646581351757,-0.030162965878844],[0.04254949837923,-0.025924295186996,-0.17609639465809]],[[-0.028542757034302,-0.1316773891449,-0.059758186340332],[-0.064410552382469,0.059586875140667,0.00070302526000887],[-0.091061562299728,-0.094734206795692,0.014079087413847]],[[-0.09492365270853,0.09959252178669,0.024019135162234],[-0.13715867698193,-0.059714004397392,-0.035503000020981],[-0.0060676750726998,0.021736057475209,-0.043203853070736]],[[-0.031410668045282,-0.013437635265291,-0.058239746838808],[0.013079814612865,-0.0004475568421185,0.029945777729154],[0.094689108431339,0.083608292043209,-0.022522509098053]]],[[[-0.11171842366457,0.053917951881886,-0.0060672760009766],[0.0098013961687684,-0.034767910838127,-0.0067381314001977],[0.11825624853373,0.012087657116354,-0.067601472139359]],[[-0.087560288608074,0.079906776547432,0.10170688480139],[0.17132893204689,-0.0076804058626294,-0.082367561757565],[0.12413332611322,0.11476004123688,-0.15773491561413]],[[-0.085043460130692,-0.0041630752384663,-0.0042658415623009],[0.054321616888046,-0.038060963153839,-0.10762111842632],[-0.14259359240532,-0.12827004492283,0.013169637881219]],[[0.005182184278965,-0.017587402835488,0.068463653326035],[-0.0046835918910801,-0.092027850449085,0.010564533993602],[-0.014115129597485,-0.053115718066692,0.10542599856853]],[[-0.041206706315279,-0.064693465828896,-0.069384336471558],[-0.011748239398003,-0.034200455993414,0.10103898495436],[-0.0068164276890457,-0.071403689682484,0.053285077214241]],[[0.062719516456127,0.062603503465652,0.0096023511141539],[-0.037837415933609,-0.090031065046787,0.037498991936445],[-0.057767599821091,0.0356060937047,0.0013132047606632]],[[-0.089768305420876,0.062715508043766,-0.10550393909216],[-0.012413717806339,-0.003692987607792,0.044355068355799],[-0.0015464028110728,0.00065715576056391,0.022480892017484]],[[0.054445870220661,-0.0025160405784845,0.0089467270299792],[-0.0026971383485943,-0.064635649323463,-0.085042983293533],[0.11022160947323,0.034631039947271,-0.029513770714402]],[[-0.15609784424305,-0.044162031263113,-0.099370516836643],[0.068697884678841,-0.086587563157082,0.0063857492059469],[0.15641918778419,0.062370896339417,0.014700148254633]],[[-0.042703792452812,-0.021952982991934,-0.012874397449195],[-0.0062780878506601,0.070953615009785,-0.052933666855097],[0.074869193136692,-0.067518278956413,-0.0092678908258677]],[[0.0062665431760252,-0.035691719502211,-0.0024291954468936],[0.0071701477281749,-0.0062259896658361,0.04695351421833],[0.012391513213515,-0.040826890617609,0.014230517670512]],[[0.031797248870134,0.022881828248501,0.077948324382305],[0.05129349604249,0.08306135982275,0.10459746420383],[-0.026816103607416,0.040793526917696,0.027190793305635]],[[0.065155252814293,-0.077136665582657,0.045006327331066],[-0.033240050077438,-0.10471652448177,0.031945738941431],[0.038695566356182,0.013133075088263,-0.043326705694199]],[[-0.10627752542496,0.062413088977337,-0.0076513169333339],[-0.0020820279605687,0.042354561388493,0.011549586430192],[-0.0055506327189505,-0.041247759014368,-0.040492489933968]],[[0.0097805103287101,-0.0027878244873136,-0.041211105883121],[-0.093103937804699,-0.051249407231808,0.12434975802898],[0.10678288340569,-0.017501441761851,-0.048096615821123]],[[0.011861306615174,0.099023185670376,-0.082078732550144],[-0.1776260882616,-0.02803067676723,0.008717211894691],[0.027086064219475,-0.066958375275135,0.068928025662899]],[[-0.11143211275339,0.052924498915672,-0.012206924147904],[0.1380800306797,-0.11086625605822,-0.10050742328167],[0.07852753251791,0.040759854018688,0.069877691566944]],[[-0.062988109886646,0.13768814504147,-0.12999083101749],[0.1157162040472,-0.0043749483302236,0.013539079576731],[-0.025449901819229,-0.018573801964521,0.0021991720423102]],[[-0.0042019914835691,-0.076934061944485,-0.031981881707907],[-0.070436872541904,0.0053663072176278,0.048004597425461],[0.088939920067787,0.094316422939301,-0.1047789528966]],[[0.12368986010551,0.060193963348866,0.081095978617668],[0.075795382261276,0.070271976292133,0.10826030373573],[-0.0047432817518711,0.016708441078663,-0.017311355099082]],[[-0.011476416140795,-0.012523875571787,-0.065405212342739],[-0.094353504478931,-0.16084243357182,-0.1861763894558],[0.069082736968994,-0.15893466770649,0.025019407272339]],[[0.028238639235497,0.11573094129562,0.17981784045696],[-0.11831148713827,-0.052640970796347,-0.13093847036362],[0.0053704897873104,-0.056887827813625,-0.09715761244297]],[[0.047462608665228,-0.13555340468884,0.072161436080933],[-0.039595182985067,0.075998477637768,0.017902797088027],[0.043169844895601,-0.044244643300772,0.075140051543713]],[[-0.083286166191101,-0.031567417085171,-0.082975916564465],[-0.015200450085104,-0.050475496798754,0.06729532033205],[-0.027073094621301,-0.077601432800293,-0.030044220387936]],[[0.061729148030281,0.11112794280052,-0.13050210475922],[0.20273174345493,0.062108676880598,-0.010779468342662],[-0.036752220243216,0.001482491963543,-0.15117561817169]],[[-0.021825710311532,0.030024079605937,-0.11988673359156],[0.024624884128571,-0.0040966789238155,-0.10246398299932],[0.060997057706118,-0.04500899091363,-0.090680070221424]],[[-0.11696571856737,-0.04939803481102,-0.035936124622822],[0.056550014764071,-0.087551675736904,0.026769364252687],[0.075786136090755,0.025602161884308,-0.053826164454222]],[[-0.081012472510338,0.019576324149966,-0.057719714939594],[0.010196819901466,-0.09081644564867,0.015227820724249],[-0.059437613934278,0.074303723871708,-0.089635543525219]],[[0.067067630589008,0.0012835948728025,0.028568556532264],[0.0094983400776982,-0.027299575507641,-0.020175993442535],[-0.062397006899118,-0.033626832067966,0.073099412024021]],[[0.0058489390648901,0.054969564080238,-0.20143458247185],[0.10088686645031,0.039381995797157,0.0042760614305735],[-0.038345173001289,0.012798580341041,-0.1667695492506]],[[0.025068981572986,-0.021513100713491,0.079965606331825],[-0.12812361121178,0.076938472688198,-0.02270371094346],[0.18050581216812,0.092418417334557,-0.06768523901701]],[[0.022912591695786,-0.072410583496094,-0.037820909172297],[-0.080358922481537,-0.04600565135479,0.029542280361056],[-0.03751927614212,-0.029454227536917,-0.0020399529021233]],[[0.004042630083859,0.002559790154919,-0.11472909897566],[0.0083759184926748,-0.18255876004696,0.034230284392834],[-0.067720271646976,0.038761895149946,-0.025257816538215]],[[0.072160296142101,0.090799063444138,0.0057333237491548],[0.020985163748264,0.12022466957569,-0.097485966980457],[0.065095514059067,-0.042019538581371,0.033618915826082]],[[-0.023391887545586,-0.012502452358603,0.026913810521364],[0.0062990537844598,0.0062264995649457,-0.082714304327965],[-0.080027990043163,-0.020661428570747,-0.068020768463612]],[[0.039195671677589,-0.00091483845608309,-0.018215708434582],[-0.11745084822178,0.025118699297309,-0.050216108560562],[0.095426298677921,0.066762186586857,0.018739288672805]],[[0.0077040228061378,-0.065420225262642,-0.10501626133919],[-0.059636428952217,-0.13178433477879,0.11567078530788],[-0.019603444263339,0.082497954368591,0.14892181754112]],[[-0.10566506534815,-0.06996077299118,-0.05564920604229],[-0.090216301381588,0.023920517414808,0.086248509585857],[0.080398343503475,-0.058697663247585,0.021828068420291]],[[-0.032188694924116,-0.15328601002693,0.037373565137386],[0.074077427387238,0.005616472568363,-0.021828843280673],[-0.16113251447678,-0.085055403411388,-0.092357568442822]],[[0.0019374734256417,-0.030907468870282,0.0009884238243103],[0.00040154144517146,0.046249393373728,0.074116908013821],[0.027901643887162,-0.064047366380692,-0.054328631609678]],[[-0.044157259166241,-0.06416179984808,0.0036989036016166],[-0.084442131221294,0.033768255263567,-0.057428769767284],[0.0018459754064679,-0.072768315672874,-0.04316683858633]],[[0.07427604496479,0.041680976748466,0.0090967221185565],[-0.16632409393787,0.02070640027523,0.022925658151507],[0.039773877710104,-0.26019072532654,0.10646954923868]],[[0.10589435696602,-0.15718355774879,-0.071015141904354],[0.1473983079195,0.0064561832696199,-0.0078979237005115],[-0.04008362069726,0.11561343818903,-0.1091255620122]],[[0.025774737820029,0.040606696158648,-0.012952675111592],[0.054727699607611,0.03990188613534,0.046337094157934],[-0.02493891119957,-0.061315409839153,-0.11685308814049]],[[-0.018077459186316,-0.034084673970938,0.062599524855614],[0.071811065077782,-0.035589952021837,-0.015869818627834],[-0.072379268705845,-0.077659733593464,-0.049199141561985]],[[0.020013902336359,0.0078252479434013,-0.12564355134964],[-0.015476911328733,-0.075352624058723,0.010668091475964],[-0.094550862908363,-0.11629331856966,0.0099740009754896]],[[0.024959042668343,-0.055647775530815,0.13342943787575],[0.13780754804611,-0.048300705850124,-0.074844278395176],[0.0062462165951729,-0.11191327869892,0.062620513141155]],[[0.042534310370684,-0.016146384179592,-0.010273606516421],[-0.11835224181414,-0.040438365191221,-0.0185437630862],[-0.095036044716835,-0.036541473120451,0.094368368387222]],[[0.052383910864592,-0.023747099563479,0.084747336804867],[0.028995040804148,0.040937393903732,-0.027401717379689],[0.0075113847851753,-0.079975239932537,-0.032142776995897]],[[-0.059336684644222,0.040674705058336,-0.034447848796844],[0.054655220359564,-0.019185369834304,-0.065448522567749],[0.079025991261005,0.1049280166626,0.093096867203712]],[[-0.021415892988443,-0.040336810052395,0.060904875397682],[0.069926708936691,-0.08533751219511,0.070011131465435],[-0.048373609781265,0.081390604376793,-0.016558071598411]],[[0.018552642315626,-0.042343448847532,0.060159683227539],[-0.089888848364353,0.12303198128939,0.0004302425077185],[0.005806555505842,0.024450765922666,0.1100018620491]],[[0.031244866549969,0.072689548134804,-0.093407273292542],[-0.088316641747952,-0.18637745082378,-0.19646281003952],[0.045436505228281,0.10485537350178,-0.032630834728479]],[[0.05000388994813,-0.010493746958673,-0.0029306157957762],[-0.053462814539671,-0.064087189733982,0.0062315012328327],[0.036124151200056,-0.0089851738885045,-0.013752470724285]],[[-0.12596864998341,0.089080348610878,-0.027611425146461],[-0.048137255012989,-0.051187384873629,-0.11083690822124],[-0.1433971375227,0.037914291024208,-0.068813934922218]],[[0.014578176662326,-0.035054698586464,-0.049458336085081],[-0.047849372029305,0.16221582889557,0.11233239620924],[0.072087250649929,-0.020730581134558,-0.024801198393106]],[[0.13920798897743,0.072163797914982,-0.051627971231937],[0.057209894061089,-0.034434534609318,0.1074825823307],[0.062387235462666,0.20667815208435,0.14380159974098]],[[-0.10616869479418,-0.040935602039099,-0.016329048201442],[0.082321643829346,0.031059311702847,-0.02777792699635],[0.055655367672443,-0.08851520717144,0.0022454056888819]],[[-0.048406768590212,0.065795138478279,0.015598544850945],[0.024954751133919,0.0021206240635365,0.0081151910126209],[-0.076796099543571,0.044097773730755,-0.13723732531071]],[[0.0019941052887589,-0.027997869998217,0.019632365554571],[-0.083700716495514,0.018872179090977,0.002316921716556],[0.088782198727131,0.0029293375555426,-0.028845889493823]],[[-0.08976423740387,-0.0003927027573809,-0.10848874598742],[0.071436904370785,-0.028745232149959,-0.077640995383263],[0.043596640229225,0.05660892277956,0.031907442957163]],[[0.045786466449499,0.067584663629532,-0.090731956064701],[-0.019121319055557,-0.051509439945221,-0.00077708385651931],[-0.036917261779308,-0.13561545312405,-0.1073257997632]],[[0.12458774447441,-0.080991916358471,-0.018523816019297],[0.10851948708296,-0.077313959598541,0.015299789607525],[-0.032419599592686,0.042540434747934,0.069765843451023]],[[0.05445945635438,-0.021513191983104,0.10043350607157],[0.0086139412596822,0.081784948706627,-0.0045649763196707],[0.041264429688454,-0.072842128574848,-0.097107149660587]]],[[[0.076793007552624,0.01585790514946,0.060977801680565],[0.006924303714186,-0.022185754030943,0.010104199871421],[-0.078336991369724,-0.055830352008343,-0.062730990350246]],[[0.065001137554646,0.01691666059196,-0.24716809391975],[0.036446712911129,0.067400358617306,-0.026644438505173],[0.055041115731001,0.13419099152088,0.11061906069517]],[[-0.062835589051247,0.063385538756847,-0.0097177894786],[-0.028467630967498,-0.035691779106855,0.062055718153715],[-0.056380089372396,0.077138476073742,-0.022724319249392]],[[0.073780328035355,-0.050592783838511,0.086198270320892],[-0.078626021742821,-0.13035933673382,0.054324571043253],[0.037153962999582,0.070084758102894,-0.14135032892227]],[[0.0034892924595624,0.042654637247324,0.11451383680105],[0.027290401980281,0.049214787781239,0.040192879736423],[-0.10585411638021,-0.2093169093132,-0.05379082262516]],[[0.058186333626509,-0.016642056405544,0.015826296061277],[0.003645466407761,0.0073860636912286,-0.10917563736439],[-0.098721005022526,0.029168689623475,0.042297646403313]],[[0.052979871630669,-0.0748276039958,0.036029785871506],[-0.067835412919521,-0.028462048619986,0.15457117557526],[-0.053296003490686,0.022465527057648,0.062971673905849]],[[-0.13503101468086,-0.19029171764851,-0.1238217279315],[-0.07353288680315,-0.12129961699247,0.095495358109474],[0.17469483613968,0.14134374260902,-0.0010979330400005]],[[0.0017879949882627,-0.14663000404835,-0.13791719079018],[0.09626466780901,0.09135115891695,0.016533780843019],[-0.061177052557468,0.055974647402763,0.067670740187168]],[[-0.049365062266588,0.099248766899109,0.11047647148371],[0.064383991062641,-0.035796474665403,-0.07031124830246],[0.015642717480659,-0.078917816281319,-0.23048211634159]],[[-0.046596031636,0.039943195879459,0.028809908777475],[-0.22375349700451,0.011438271962106,0.061856150627136],[-0.044860016554594,-0.11951723694801,-0.0062853605486453]],[[-0.017663463950157,-0.00069386040559039,0.047367956489325],[0.12857696413994,-0.073116488754749,-0.10727372020483],[0.04681047052145,-0.049534287303686,-0.077442355453968]],[[-0.016221964731812,0.012089159339666,-0.04319005087018],[0.026980832219124,0.024419765919447,-0.099079392850399],[-0.15031200647354,-0.026859080418944,-0.081166446208954]],[[0.018461229279637,0.15699581801891,-0.1487250328064],[-0.099843725562096,-0.1026234999299,0.10132139921188],[0.036788243800402,-0.056416667997837,-0.074870780110359]],[[0.046190470457077,0.12787564098835,0.049417719244957],[-0.18205200135708,-0.14349889755249,0.017041450366378],[-0.067241251468658,0.036172721534967,0.10663706809282]],[[0.032755766063929,0.084255307912827,-0.020035171881318],[-0.064182251691818,0.1595243960619,-0.0043422230519354],[-0.042716968804598,-0.078331723809242,0.01295174472034]],[[0.034962836652994,-0.093012623488903,0.054134897887707],[-0.05590495839715,-0.022177323698997,0.10409300774336],[-0.072412021458149,0.08885332942009,-0.078489519655704]],[[0.0090689407661557,0.056525003165007,0.12155894935131],[-0.040874529629946,-0.070182353258133,0.037105709314346],[-0.062359306961298,-0.13227321207523,0.093315288424492]],[[-0.16939096152782,-0.044365275651217,0.05878983438015],[-0.12843759357929,0.057923324406147,-0.061342597007751],[-0.0082409959286451,0.018406176939607,0.02186306566]],[[0.10682498663664,-0.081476546823978,0.046169336885214],[0.041173480451107,0.13849680125713,-0.087303288280964],[-0.023226426914334,0.093130134046078,-0.095535479485989]],[[0.13432441651821,0.075598247349262,0.150280341506],[0.033621188253164,0.044102232903242,0.092565588653088],[-0.10683795064688,0.02987945266068,0.024369791150093]],[[-0.1441530585289,0.017805969342589,0.1126728579402],[-0.039143264293671,-0.018708201125264,-0.079290091991425],[-0.01633059233427,-0.046423353254795,0.13651567697525]],[[0.04127062112093,-0.060008406639099,0.06404123455286],[-0.13712488114834,-0.0034739000257105,0.0030457703396678],[0.0036704018712044,-0.063259810209274,-0.0087051894515753]],[[-0.074507817625999,-0.086859561502934,-0.024310253560543],[-0.10960403829813,-0.12821795046329,0.044295217841864],[0.035225760191679,-0.0064076385460794,0.14660076797009]],[[0.068687103688717,0.12938229739666,0.010637255385518],[0.023339102044702,0.0050082593224943,0.039555814117193],[-0.064048364758492,0.045569706708193,-0.06577330082655]],[[0.014761001802981,0.030451808124781,-0.19358906149864],[0.078728705644608,-0.11336167901754,-0.049351647496223],[0.0012407776666805,-0.070777960121632,0.10574105381966]],[[0.086712002754211,-0.17668507993221,-0.045566752552986],[0.10761675983667,-0.043272737413645,-0.11091681569815],[-0.02674918808043,-0.032401639968157,0.02014797180891]],[[0.083921335637569,-0.065252549946308,0.026878919452429],[0.011482382193208,-0.003948091994971,-0.031233035027981],[-0.18455508351326,0.06632524728775,0.089757420122623]],[[-0.014518169686198,-0.027920613065362,0.031619686633348],[0.053560364991426,-0.075674146413803,-0.031540751457214],[0.021118968725204,-0.021257778629661,0.0065812412649393]],[[0.21925981342793,-0.021473230794072,0.081996083259583],[0.071338385343552,0.023494645953178,0.025496108457446],[-0.022712260484695,-0.010286069475114,-0.035926770418882]],[[-0.099203199148178,0.062958098948002,0.050679989159107],[-0.015649888664484,-0.11835220456123,0.069809973239899],[-0.0033739707432687,-0.18597200512886,-0.0048243547789752]],[[-0.026268161833286,-0.16988031566143,0.061855968087912],[-0.11418280750513,0.0039144372567534,-0.0051918579265475],[-0.011148980818689,0.10949344933033,0.027057342231274]],[[-0.095828831195831,0.032609600573778,-0.016506547108293],[-0.091454945504665,0.0050262613222003,0.20065942406654],[-0.14281122386456,0.095501825213432,-0.031416982412338]],[[-0.10610250383615,-0.081932224333286,-0.10922445356846],[0.08019146323204,0.02981167472899,0.04865725710988],[-0.071364723145962,-0.1524799913168,0.073448419570923]],[[0.0095967352390289,-0.085893258452415,0.089163713157177],[-0.29340663552284,-0.10366796702147,0.13773567974567],[0.044195011258125,-0.0018853847868741,0.078319869935513]],[[-0.19966605305672,-0.038274437189102,-0.048046953976154],[0.04857000336051,-0.10748299211264,-0.078303374350071],[-0.0056480234488845,0.039947085082531,0.078425094485283]],[[0.062611363828182,-0.14232005178928,0.016899839043617],[-0.011157033033669,-0.15164130926132,-0.073163107037544],[0.041917197406292,-0.071360141038895,0.13949652016163]],[[-0.20254863798618,-0.10196189582348,-0.011662980541587],[-0.033967509865761,-0.012492181733251,-0.1204130500555],[0.11007585376501,0.0094624571502209,0.046909652650356]],[[-0.035677004605532,-0.033131711184978,0.060727331787348],[0.025248806923628,-0.038465615361929,-0.020453751087189],[-0.05038496106863,0.066749297082424,0.06504275649786]],[[-0.066414840519428,-0.18672350049019,-0.034947611391544],[-0.032710693776608,-0.0069042867980897,0.031310424208641],[0.040780391544104,-0.065610408782959,-0.034220442175865]],[[-0.023183660581708,0.070572786033154,0.10811457782984],[-0.042312163859606,-0.063434958457947,-0.035918567329645],[0.01093774754554,-0.012430091388524,0.043113194406033]],[[0.024863908067346,-0.070539027452469,-0.013047239743173],[-0.083588421344757,-0.2176678031683,-0.16778828203678],[-0.05839129909873,0.073494859039783,-0.044035710394382]],[[-0.093477472662926,-0.12985107302666,-0.068223655223846],[-0.056355997920036,-0.005042442586273,0.18252632021904],[0.11116790026426,0.055500723421574,0.0065283137373626]],[[-0.059440549463034,-0.041346788406372,0.060650262981653],[0.09462384134531,-0.066665008664131,-0.022999538108706],[0.026113115251064,0.077068030834198,-0.057603850960732]],[[-0.018773954361677,-0.070470631122589,-0.02981137111783],[0.064067900180817,0.104023642838,0.036555763334036],[0.016237571835518,0.0004051034047734,0.10907232761383]],[[0.067842192947865,0.023953888565302,-0.17678669095039],[0.071191310882568,-0.014992040582001,0.0088343024253845],[0.042141884565353,0.02890439145267,-0.024388767778873]],[[0.0015652027213946,-0.022386245429516,0.12871000170708],[0.0055257440544665,0.031237477436662,-0.12658540904522],[-0.014884340576828,0.075196161866188,0.056252300739288]],[[-0.065250054001808,0.14539632201195,-0.038712933659554],[-0.090334430336952,0.12650135159492,0.092998661100864],[-0.14631526172161,-0.0081686750054359,-0.04518998041749]],[[0.026582045480609,-0.041642021387815,-0.0034842495806515],[0.096278101205826,-0.16119211912155,0.018686462193727],[0.11798174679279,0.0014388849958777,-0.019129948690534]],[[-0.10297936201096,0.07301452755928,0.016225716099143],[-0.10263902693987,-0.036841720342636,-0.022920338436961],[0.041420839726925,0.0028611065354198,0.026012696325779]],[[-0.042342558503151,-0.055221181362867,0.074338980019093],[0.083123907446861,-0.040825750678778,-0.010534496046603],[0.067558668553829,-0.031735386699438,-0.02652989141643]],[[-0.054771214723587,-0.015163319185376,0.033030804246664],[-0.028129087761045,-0.03641103208065,-0.15754960477352],[0.040670521557331,0.10099194943905,0.010393228381872]],[[-0.0063738082535565,0.089685469865799,-0.081539757549763],[-0.019849080592394,0.075324811041355,0.018658278509974],[0.036192305386066,-0.15998458862305,0.031647209078074]],[[-0.13171678781509,0.0017564772861078,0.011726415716112],[-0.13265177607536,0.11731151491404,0.050448030233383],[-0.075632318854332,0.021902449429035,0.21689994633198]],[[-0.023634426295757,-0.022502657026052,0.017389848828316],[-0.089909940958023,-0.065278246998787,-0.11137308180332],[-0.040820401161909,0.016960073262453,0.04245076328516]],[[-0.026833437383175,0.018096471205354,-0.19219407439232],[0.013429177924991,-0.010854799300432,0.2065120190382],[0.06578266620636,-0.03013820387423,0.13586060702801]],[[0.17279528081417,0.014318906702101,-0.034417789429426],[-0.0057923458516598,0.077808447182178,0.061626378446817],[0.02819581143558,0.0452153198421,0.0014724796637893]],[[-0.124118514359,0.052188899368048,0.027608910575509],[-0.25163674354553,0.061403069645166,0.01882085390389],[-0.054751012474298,-0.0038623446598649,0.10178798437119]],[[-0.099622555077076,0.02240239828825,-0.091412618756294],[-0.027390655130148,0.035608816891909,-0.011803123168647],[0.17943400144577,0.24370519816875,0.076982289552689]],[[0.099647887051105,-0.0090413093566895,-0.0076104965992272],[0.018303954973817,-0.1311611533165,0.041042122989893],[-0.028451047837734,0.042511202394962,0.0081301555037498]],[[-0.10558477789164,0.12844927608967,-0.0079466290771961],[0.10387472063303,-0.14410822093487,-0.011137248948216],[-0.073902316391468,0.085951291024685,-0.010943504050374]],[[0.069609470665455,0.03761937096715,0.079174719750881],[-0.046615533530712,0.030676642432809,-0.083206869661808],[0.081605367362499,-0.046614982187748,0.0023021700326353]],[[-0.18614257872105,-0.13269951939583,0.1376014649868],[0.053992483764887,0.0054722451604903,-0.0049000079743564],[-0.032492693513632,-0.051973678171635,0.13147453963757]],[[-0.040261432528496,-0.053468197584152,-0.23448108136654],[0.041226223111153,-0.00026566919405013,0.05965781211853],[0.004435102455318,0.047711435705423,0.095661632716656]]],[[[-0.035490863025188,0.013585917651653,-0.03595057502389],[0.0074985222890973,-0.013431683182716,-0.079324416816235],[0.018683725968003,-0.029089385643601,0.031718924641609]],[[0.041190896183252,-0.0078638447448611,0.029063709080219],[0.028940748423338,0.030637143179774,0.033262722194195],[-0.074670299887657,0.064210884273052,-0.020154617726803]],[[-0.042533904314041,0.01576660759747,-0.0083752758800983],[-0.08323335647583,0.14473581314087,-0.0036217137239873],[-0.081941992044449,0.04214645922184,0.0087643871083856]],[[0.035670410841703,0.021535569801927,-0.062683947384357],[-0.1144480779767,0.047653328627348,-0.019023219123483],[0.091491043567657,-0.01266944501549,0.066226400434971]],[[0.013310028240085,0.025019166991115,0.045389153063297],[-0.014419795013964,0.034739747643471,0.039361298084259],[-0.031834244728088,-0.058269165456295,0.11908679455519]],[[-0.042214576154947,0.073450244963169,0.04246161878109],[0.0368427708745,-0.058703042566776,-0.013136661611497],[-0.12829683721066,0.10279381275177,-0.03382770717144]],[[-0.011642423458397,-0.070595443248749,-0.065139308571815],[-0.029299467802048,0.00082977139391005,0.01403883472085],[0.015144556760788,0.08289261162281,0.037375029176474]],[[-0.090020336210728,0.093318268656731,0.042794719338417],[-0.13581216335297,0.058259136974812,0.021478284150362],[0.047867894172668,0.094390831887722,-0.052629716694355]],[[0.029138829559088,0.068444080650806,-0.060710191726685],[0.075883567333221,-0.04808121919632,-0.046402595937252],[-0.056025430560112,0.050249505788088,-0.054413016885519]],[[-0.094013027846813,0.010146420449018,-0.040736019611359],[0.016719972714782,-0.11928480118513,0.11747267097235],[0.032613530755043,-0.021563965827227,-0.013607194647193]],[[0.053829915821552,0.047204568982124,0.0061536272987723],[-0.01557432860136,-0.0097637586295605,-0.052950404584408],[-0.074613071978092,-0.03314308822155,0.0017605450702831]],[[-0.058553691953421,-0.0097624966874719,0.11557526886463],[0.15770624577999,-0.008294053375721,0.016808206215501],[-0.054514858871698,-0.029115099459887,0.0052917078137398]],[[-0.033317431807518,0.062405943870544,0.044167451560497],[0.026591142639518,-0.0024353733751923,-0.064691558480263],[-0.017494091764092,-0.069588325917721,0.0056198979727924]],[[0.0054743657819927,0.00041787352529354,-0.06357004493475],[-0.008869418874383,-0.085118360817432,-0.0034697491209954],[0.003579564159736,-0.019627949222922,0.14158034324646]],[[0.0068812621757388,-0.037205472588539,-0.016378233209252],[-0.16907848417759,0.025645164772868,0.030446771532297],[-0.05100329965353,0.078196063637733,-0.08443545550108]],[[0.013237539678812,-0.02226522937417,-0.017814764752984],[0.014019386842847,-0.072054743766785,0.0034686280414462],[0.045118603855371,-0.049475781619549,-0.025751017034054]],[[0.023306598886847,0.019555354490876,0.016478415578604],[-0.017364120110869,0.059313148260117,-0.099346973001957],[0.042479071766138,0.0023498283699155,-0.041221629828215]],[[-0.051493816077709,-0.062087561935186,-0.013797542080283],[0.043226793408394,0.0024739387445152,0.0052397279068828],[-0.010046821087599,-0.040639586746693,-0.063872344791889]],[[-0.078972890973091,0.028685944154859,-0.065574824810028],[0.019697431474924,-0.023965118452907,-0.076828517019749],[0.092116802930832,0.11985173076391,-0.051212660968304]],[[0.12796393036842,-0.15425401926041,0.11493016034365],[-0.13013377785683,0.079963639378548,-0.067753687500954],[-0.0037125942762941,-0.03915161639452,0.0038571897894144]],[[0.039437759667635,0.10657674074173,-0.028129894286394],[0.057248320430517,-0.13860315084457,0.064791783690453],[0.017305858433247,0.0041391090489924,-0.040521468967199]],[[0.087135881185532,-0.081515364348888,-0.015286007896066],[0.058014806360006,-0.15973044931889,-0.018026635050774],[-0.029630307108164,-0.0048689651302993,-0.070514969527721]],[[0.061688210815191,0.0033675171434879,0.078795291483402],[-0.079420402646065,-0.019940905272961,0.01194070186466],[-0.021886013448238,-0.034077670425177,0.1129501760006]],[[0.018970148637891,-0.10225701332092,0.0082278428599238],[0.048625435680151,-0.028973499312997,-0.059009559452534],[-0.042973291128874,0.043256085366011,-0.019490269944072]],[[0.052828945219517,-0.14427502453327,0.069387063384056],[-0.014442189596593,-0.043424412608147,-0.008575995452702],[0.037121050059795,0.067946948111057,-0.0422607883811]],[[0.026366766542196,0.033370222896338,-0.026181530207396],[0.053849074989557,0.075637273490429,-0.02107778377831],[-0.032414585351944,-0.17104402184486,0.029731687158346]],[[-0.03050135448575,-0.08122069388628,0.075279407203197],[-0.082540608942509,-0.054667968302965,-0.0047988030128181],[-0.01193034183234,-0.086158253252506,0.10193491727114]],[[0.079320661723614,-0.037847388535738,0.018557440489531],[-0.01304888818413,0.069826737046242,-0.066754601895809],[0.0087094511836767,-0.0178850479424,-0.0065154768526554]],[[-0.0080970581620932,-0.026135440915823,-0.10277792811394],[0.061909921467304,0.034559059888124,0.081194221973419],[0.0067628384567797,0.024480365216732,-0.040538463741541]],[[-0.018105948343873,-0.047256380319595,0.11171342432499],[0.058432761579752,-0.13578480482101,0.015595301985741],[-0.04289023578167,-0.082836456596851,0.0076126796193421]],[[-0.12724225223064,0.053097546100616,0.016482667997479],[0.026355721056461,-0.0027171892579645,-0.02170092612505],[-0.087457463145256,-0.016492011025548,-0.12956766784191]],[[0.026100037619472,0.050990115851164,-0.037503603845835],[0.015981398522854,0.038883540779352,-0.11199545860291],[0.037751588970423,-0.039007473737001,0.013640384189785]],[[0.028135852888227,-0.024002285674214,0.018556002527475],[-0.036131277680397,-0.0032983464188874,0.010415968485177],[0.084134228527546,-0.046844754368067,0.054915595799685]],[[-0.085198201239109,0.0047834683209658,0.015726577490568],[-0.071007288992405,0.01911617256701,0.04135238006711],[0.024270387366414,-0.019734110683203,0.016635993495584]],[[-0.10536339879036,0.027416912838817,0.048533223569393],[-0.078501231968403,0.063004061579704,-0.045784957706928],[-0.050727117806673,-0.062572047114372,-0.015939766541123]],[[-0.12001469731331,0.068621024489403,-0.023370722308755],[0.029393628239632,-0.17187422513962,0.038988590240479],[-0.094933904707432,0.061568807810545,-0.032582677900791]],[[-0.0054775238968432,0.065470047295094,0.055738374590874],[-0.13146956264973,0.0023679786827415,-0.013621997088194],[-0.057903341948986,-0.097894243896008,0.0037119553890079]],[[0.054906219244003,-0.023038197308779,0.053828310221434],[0.0056346692144871,-0.050872348248959,0.01708510145545],[0.12552461028099,-0.21926915645599,0.013992615044117]],[[0.022687915712595,-0.032298725098372,0.039315491914749],[-0.050281021744013,-0.12020359933376,0.011171742342412],[0.011777014471591,0.041470687836409,0.050133317708969]],[[-0.044839482754469,0.16005396842957,-0.061651423573494],[-0.013152272440493,-0.1834224909544,0.036242127418518],[-0.081087432801723,-0.040102202445269,-0.040672529488802]],[[0.0034632096067071,0.066889636218548,0.032717324793339],[-0.22237183153629,0.23573741316795,-0.050428010523319],[-0.091210000216961,0.070435382425785,0.12298400700092]],[[-0.0016006026417017,-0.04085735976696,-0.0053201485425234],[-0.092310734093189,0.04616567492485,-0.02618396282196],[-0.075485080480576,0.0055531468242407,-0.0041038221679628]],[[-0.11124008893967,-0.012595686130226,0.011280285194516],[0.067244991660118,-0.05530322343111,0.027291145175695],[-0.045559450984001,0.016701851040125,-0.043356198817492]],[[-0.040633335709572,-0.028759805485606,0.052184142172337],[-0.050908651202917,0.035200908780098,0.026662096381187],[-0.003803726285696,-0.025271581485868,0.029326157644391]],[[0.094323001801968,-0.029128612950444,0.013704648241401],[-0.01450960803777,-0.022644069045782,0.036754317581654],[-0.096920289099216,0.063041232526302,0.028842365369201]],[[0.040581002831459,0.093976676464081,-0.10354917496443],[0.041970804333687,0.07531426846981,0.038687858730555],[-0.077098652720451,0.055527329444885,0.12758760154247]],[[0.018635008484125,0.0031508021056652,0.033734068274498],[-0.22534303367138,0.0063343131914735,-0.060224916785955],[-0.045496430248022,-0.083127871155739,-0.037821616977453]],[[0.10314810276031,-0.025693248957396,-0.023433515802026],[0.093154244124889,-0.020795909687877,0.040905762463808],[-0.067519277334213,-0.0033819244708866,0.073945626616478]],[[0.044130712747574,-0.088701188564301,0.060734055936337],[0.066861316561699,-0.083703875541687,0.14598463475704],[0.046218436211348,-0.13253654539585,-0.0041638137772679]],[[-0.10138895362616,-0.024849055334926,0.026751114055514],[0.054464086890221,-0.14470830559731,-0.026587072759867],[0.088677279651165,-0.024293180555105,0.018623642623425]],[[-0.018751239404082,-0.013500120490789,0.043641641736031],[-0.019595950841904,-0.026231022551656,0.0037995297461748],[0.025184586644173,0.030935550108552,0.06068292632699]],[[-0.15356765687466,0.076287157833576,-0.078751124441624],[0.12604987621307,-0.25506398081779,0.037545330822468],[-0.035351660102606,0.028699887916446,-0.011445658281446]],[[-0.069744199514389,-0.011242889799178,-0.029306577518582],[-0.0010904470691457,0.075043998658657,0.049849063158035],[-0.04532041028142,0.029124449938536,-0.0086334999650717]],[[-0.11949786543846,0.04326044395566,-0.011170459911227],[-0.096164062619209,0.047562003135681,-0.026681840419769],[-0.071516066789627,0.1060274541378,0.14145748317242]],[[-0.060594838112593,0.011601070873439,-0.047028385102749],[0.070278361439705,-0.11175982654095,-0.043310269713402],[-0.053915947675705,0.03475920855999,-0.0068942485377192]],[[-0.054468300193548,-0.011239249259233,-0.10512933135033],[0.034584637731314,-0.10872474312782,0.026452343910933],[-0.030805604532361,-0.0192028619349,-0.033649262040854]],[[0.0017017181962729,0.098877407610416,-0.027637938037515],[0.098522447049618,-0.073947481811047,0.084923632442951],[0.058926571160555,-0.036930412054062,-0.039038963615894]],[[-0.1168105378747,-0.0017098796088248,0.025909880176187],[0.041040450334549,-0.12722083926201,0.0457928404212],[-0.065262518823147,0.055633172392845,-0.038614220917225]],[[-0.0045227515511215,-0.059618175029755,0.032880056649446],[0.068833962082863,-0.054789159446955,0.043318565934896],[-0.077471703290939,0.10823635011911,-0.17187061905861]],[[-0.024995950981975,0.034388333559036,-0.066448159515858],[0.048721428960562,-0.0074904100038111,0.090270891785622],[0.010285509750247,-0.011291558854282,-0.039520066231489]],[[0.050924308598042,-0.076750800013542,-0.012897941283882],[0.045168954879045,0.056007590144873,-0.033250570297241],[0.011375172063708,0.032270725816488,-0.0079805264249444]],[[-0.053279336541891,0.059993296861649,-0.02132217027247],[0.023658273741603,-0.0310312025249,-0.049483098089695],[0.12873212993145,-0.0061558675952256,-0.029783915728331]],[[0.061754193156958,0.008372244425118,-0.091446369886398],[0.17029201984406,0.027979323640466,-0.040179718285799],[0.069489218294621,-0.049217082560062,-0.056371465325356]],[[-0.053112994879484,0.088549427688122,-0.031136695295572],[0.063908331096172,-0.076065048575401,0.034139018505812],[-0.051883075386286,0.012914637103677,0.074067272245884]]],[[[-0.094031378626823,-0.011949761770666,0.010603738948703],[0.0041997325606644,0.087712414562702,0.013691132888198],[0.044365894049406,-0.013063063845038,-0.062578797340393]],[[-0.0054528336040676,0.028190752491355,-0.078107818961143],[0.0081984661519527,-0.0018109754892066,-0.029546294361353],[-0.0032270385418087,0.036132700741291,0.032382551580667]],[[0.070593938231468,-0.030136099085212,-0.015068281441927],[-0.15531101822853,-0.13224819302559,-0.027396354824305],[0.082171827554703,0.04960997030139,-0.052667316049337]],[[0.065915644168854,-0.0299889780581,-0.0076295114122331],[0.013346699997783,-0.12807466089725,-0.072860054671764],[-0.008890955708921,-0.053053170442581,0.044252783060074]],[[-0.018621563911438,0.0073361052200198,0.077658541500568],[-0.0011776436585933,-0.013831462711096,-0.003551522269845],[0.048390474170446,-0.035195421427488,-0.063923723995686]],[[-0.0486805960536,-0.038691557943821,0.067194320261478],[0.013092171400785,-0.072501704096794,-0.021072898060083],[-0.012348634190857,0.047632154077291,-0.03322870656848]],[[0.016883742064238,-0.24072498083115,0.062284976243973],[0.052052736282349,0.048520348966122,0.029488889500499],[0.055595923215151,-0.0012929395306855,-0.035559136420488]],[[-0.015419899486005,-0.037980988621712,-0.046830590814352],[-0.026007933542132,-0.090296573936939,0.066473312675953],[-0.0082687772810459,-0.014478785917163,0.090954169631004]],[[-0.044273469597101,-0.015104623511434,0.06999908387661],[0.0060603185556829,0.0084727732464671,-0.035466305911541],[0.022057009860873,0.016809551045299,-0.045294284820557]],[[-0.086318038403988,0.019310528412461,-0.02989367954433],[0.044627506285906,0.030430532991886,-0.056771963834763],[0.027734149247408,0.064526066184044,0.11716409027576]],[[0.14964874088764,-0.0010555037297308,0.09100715816021],[-0.0053161703981459,-0.00086723978165537,0.020645726472139],[0.018272254616022,-0.081942573189735,-0.0083948224782944]],[[-0.15219134092331,-0.37684863805771,-0.016229508444667],[-0.10373405367136,-0.005137771833688,0.089087702333927],[-0.0092757819220424,-0.037282440811396,0.068809755146503]],[[0.098487034440041,0.049192391335964,-0.0033134738914669],[0.0088816331699491,-0.048209372907877,-0.018226550891995],[0.025229370221496,0.019355626776814,0.010559811256826]],[[-0.0093778874725103,-0.051516503095627,-0.045749634504318],[0.1195624768734,0.045557402074337,0.017523443326354],[0.013580818660557,-0.0079558733850718,-0.0072255437262356]],[[-0.075563058257103,-0.14706066250801,-0.0016607750440016],[-0.028107652440667,-0.12897706031799,-0.0036069822963327],[-0.0027263108640909,0.05628651753068,0.011306097730994]],[[-0.017852341756225,-0.065899096429348,0.0019846407230943],[0.017429314553738,0.12666334211826,0.0039080968126655],[0.014274120330811,0.0017327619716525,-0.019398396834731]],[[0.0099658472463489,0.060854505747557,0.05091805011034],[0.034871716052294,0.033333797007799,0.081521727144718],[-0.040346458554268,-0.062008328735828,-0.023539429530501]],[[-0.14599603414536,0.00086962798377499,-0.0069434819743037],[-0.032349295914173,0.11315434426069,-0.00048390938900411],[0.013938259333372,-0.12820054590702,0.02804621681571]],[[-0.096551716327667,0.02975027449429,0.039309166371822],[-0.056593231856823,-0.0094902757555246,-0.047568276524544],[0.071539871394634,0.0097215352579951,-0.0048276269808412]],[[-0.10927995294333,0.061240166425705,-0.046853810548782],[-0.047553073614836,-0.028954688459635,-0.024998305365443],[-0.019624214619398,0.12479574233294,0.073009617626667]],[[0.032142881304026,0.058197695761919,0.012821025215089],[-0.10687075555325,0.035244781523943,0.0075441841036081],[-0.022917436435819,0.053512439131737,0.02140923589468]],[[0.043943181633949,0.068051658570766,-0.041940998286009],[0.00018899695714936,-0.014689573086798,-0.023846987634897],[-0.049044616520405,-0.021328773349524,-0.0038262433372438]],[[-0.030446577817202,-0.0797114148736,0.097892314195633],[-0.10092651098967,-0.049220718443394,0.0083575425669551],[-0.088726557791233,0.052707009017467,0.066547580063343]],[[-0.02568762563169,0.012395932339132,-0.0057095047086477],[0.011117557063699,-0.038390249013901,-0.056149259209633],[0.011465545743704,-0.080752469599247,0.025742212310433]],[[0.12658561766148,0.12699668109417,-0.056370697915554],[-0.097516313195229,-0.0089680310338736,-0.13135060667992],[-0.012725024484098,-0.028809757903218,-0.10460383445024]],[[-0.081028446555138,0.10121263563633,0.069591253995895],[-0.2692024409771,0.023208133876324,-0.021304914727807],[-0.090210370719433,0.023981479927897,-0.041526857763529]],[[0.03617949783802,-0.066836349666119,-0.023769190534949],[0.012283188290894,-0.11265934258699,0.013176229782403],[-0.043867856264114,0.016592435538769,0.057145778089762]],[[0.031067032366991,-0.091806530952454,0.10478737950325],[-0.097768642008305,-0.18939039111137,0.046005681157112],[0.030477439984679,-0.03457235917449,0.081260144710541]],[[0.096329651772976,0.0078513454645872,0.083137817680836],[0.072117231786251,0.034171365201473,-0.012649884447455],[-0.083781227469444,-0.083369262516499,-0.098778888583183]],[[0.044309515506029,-0.020764043554664,0.012803632766008],[-0.031357508152723,-0.12291134893894,0.045510105788708],[0.040867354720831,0.0025039985775948,0.055200770497322]],[[-0.020865760743618,-0.1019204929471,0.1070644557476],[-0.015864977613091,-0.068337708711624,-0.0041340570896864],[-0.082014374434948,-0.027774216607213,0.11582195013762]],[[-0.0064555834978819,-0.087193123996258,0.051867604255676],[-0.028587967157364,0.020154481753707,0.055433426052332],[-0.063215844333172,-0.042909290641546,-0.022287327796221]],[[-0.087840311229229,0.034009981900454,-0.005334279499948],[-0.011130716651678,0.015689194202423,0.025307407602668],[-0.1019160374999,0.013410699553788,0.071036815643311]],[[0.0011262365151197,-0.088082164525986,-0.065734334290028],[-0.085774265229702,-0.036766573786736,-0.030476188287139],[-0.0073174652643502,0.035542707890272,0.052345730364323]],[[0.067018494009972,-0.016634657979012,-0.029688434675336],[-0.068904966115952,0.046880070120096,-0.015764959156513],[-0.044825095683336,0.066907897591591,0.0091793453320861]],[[-0.13754093647003,-0.055795017629862,0.045061998069286],[-0.10507015138865,-0.027980465441942,0.015935758128762],[-0.012324337847531,0.023617593571544,0.019656104966998]],[[0.082816138863564,0.05705127492547,0.077377609908581],[0.016934581100941,-0.030399069190025,-0.039398513734341],[0.072306290268898,0.043741773813963,-0.093366950750351]],[[0.041375543922186,0.03473449498415,0.11004332453012],[-0.05169914290309,0.033706411719322,-0.063592217862606],[-0.011118005029857,0.12836956977844,0.014449644833803]],[[-0.035174928605556,-0.050360027700663,0.035059858113527],[0.075023576617241,0.084398232400417,0.055916383862495],[-0.085246413946152,-0.012032715603709,0.04315747693181]],[[0.070507802069187,-0.06467804312706,0.021854007616639],[-0.091931514441967,0.066056534647942,-0.034691534936428],[0.015310721471906,-0.063329793512821,-0.016687607392669]],[[-0.002922574756667,-0.015333028510213,-0.042343065142632],[-0.047878112643957,0.032217815518379,0.024858644232154],[-0.023995783179998,0.041154339909554,0.075875490903854]],[[0.03082936629653,0.017318306490779,0.0054844501428306],[0.030782446265221,-0.024704493582249,-0.024512555450201],[-0.22246158123016,0.015309110283852,0.0092303548008204]],[[0.095199756324291,0.012808514758945,-0.031105851754546],[-0.044145487248898,-0.052640069276094,0.019186668097973],[-0.031336799263954,0.053943648934364,0.082050062716007]],[[0.019052123650908,0.030404057353735,-0.13243858516216],[0.023953491821885,-0.032126478850842,0.058483485132456],[-0.036725454032421,0.0011701699113473,0.058567307889462]],[[-0.01186889782548,0.0020995670929551,-0.0092484029009938],[-0.030264040455222,0.016959303990006,0.0036383585538715],[-0.018549995496869,-0.0064264312386513,0.025480419397354]],[[0.047467160969973,-0.14523549377918,0.0085079669952393],[0.076760850846767,0.063170313835144,-0.056810554116964],[-0.024459708482027,-0.097083665430546,-0.0063008996658027]],[[0.10799217969179,-0.1129574328661,0.043726172298193],[-0.04775382950902,-0.091430135071278,-0.075999267399311],[0.017202382907271,-0.060341071337461,-0.069177366793156]],[[-0.076527401804924,0.026621405035257,0.040017642080784],[0.091611906886101,-0.017834905534983,-0.013066289015114],[0.10283283889294,-0.040453474968672,-0.05148795992136]],[[0.042218036949635,0.10561129450798,0.0082183023914695],[-0.20817616581917,-0.10694590955973,0.0086805401369929],[0.048971138894558,0.034798443317413,0.019511979073286]],[[0.037315458059311,0.029543366283178,0.020425003021955],[-0.092240668833256,-0.070615135133266,-0.036538269370794],[-0.0073914309032261,-0.022859109565616,-0.046167436987162]],[[-0.086603134870529,0.027042988687754,-0.09735007584095],[-0.0090899113565683,-0.035898789763451,-0.01666889898479],[0.061036918312311,0.007784565910697,-0.006010009907186]],[[-0.012728109024465,-0.099290959537029,0.04380564019084],[-0.042560055851936,-0.089414238929749,-0.078736670315266],[-0.072946801781654,0.046420481055975,-0.010996420867741]],[[-0.095286674797535,0.035137455910444,-0.1046075373888],[-0.051664099097252,-0.13265869021416,-0.069031476974487],[0.015003172680736,0.02802468650043,0.0053318189457059]],[[-0.19331592321396,0.0043536089360714,0.042150098830462],[-0.0090749803930521,0.031449645757675,0.059869863092899],[0.022508312016726,0.0097645819187164,0.030119890347123]],[[-0.036718964576721,-0.01883227750659,0.02559725381434],[0.02791141718626,-0.00023289494856726,-0.0030783710535616],[0.013268417678773,-0.028195345774293,0.023564256727695]],[[-0.13716290891171,-0.19625194370747,0.027667699381709],[-0.062394261360168,-0.017177594825625,-0.0020547255408019],[-0.0043709585443139,0.001601503812708,0.01413341332227]],[[-0.20318120718002,-0.078775107860565,-0.053156845271587],[-0.15547110140324,0.22633814811707,-0.014960411004722],[-0.089328840374947,-0.012479914352298,-0.033617336302996]],[[0.028379745781422,-0.047154553234577,-0.065632462501526],[-0.0053499140776694,-0.1028600409627,0.034904405474663],[-0.034010011702776,0.0018736128695309,0.021327489987016]],[[0.040488064289093,0.0644426420331,0.12413127720356],[0.037034399807453,0.095020726323128,-0.033461548388004],[-0.053239177912474,0.061316773295403,0.0079823834821582]],[[-0.035613242536783,-0.085530444979668,-0.025867249816656],[-0.073216557502747,0.060899991542101,0.058703023940325],[0.019158158451319,0.020151380449533,0.022373789921403]],[[-0.21537110209465,0.077950783073902,-0.079749867320061],[-0.10893035680056,0.087360315024853,-0.061497610062361],[0.042011648416519,0.11487882584333,-0.0065672099590302]],[[0.0042994963005185,-0.081696897745132,0.01446180883795],[0.14382666349411,-0.062796242535114,-0.0068987812846899],[-0.16048741340637,0.05128962919116,0.0046308394521475]],[[0.12226185202599,-0.0028692064806819,-0.077718637883663],[-0.09012920409441,-0.054458126425743,0.0082940496504307],[-0.072935193777084,0.020246876403689,-0.058276824653149]],[[-0.016705794259906,0.0047699888236821,-0.015463692136109],[-0.027791997417808,0.037323296070099,0.14099740982056],[-0.035461213439703,0.042581338435411,-0.050700362771749]]],[[[0.01362432166934,-0.048574674874544,0.11528085172176],[-0.0097580691799521,0.022393368184566,-0.031061453744769],[-0.12369379401207,-0.069374546408653,-0.050782561302185]],[[0.16101944446564,0.074425518512726,0.20427890121937],[-0.046606924384832,-0.042158879339695,0.04600390419364],[-0.11318875849247,0.0068835620768368,-0.028515907004476]],[[-0.016095653176308,0.037877965718508,-0.085629872977734],[-0.038447797298431,0.02773186005652,-0.13999111950397],[0.083187885582447,-0.058688096702099,-0.13749243319035]],[[-0.0075049898587167,-0.15245424211025,-0.034089643508196],[0.10806514322758,0.019226104021072,-0.08881301432848],[-0.029441995546222,0.19126516580582,-0.060702696442604]],[[-0.12589046359062,-0.063032031059265,-0.045941792428493],[-0.038595870137215,0.09299148619175,0.018702618777752],[-0.013086753897369,0.071276001632214,-0.027602210640907]],[[0.029225405305624,0.019299367442727,-0.039027463644743],[0.069884695112705,0.11982932686806,-0.08059124648571],[0.10256985574961,0.00069284212077036,0.0156858433038]],[[0.084042571485043,-0.056163929402828,-0.2004374563694],[0.053170446306467,0.033800918608904,0.073279574513435],[0.027525573968887,0.0053791683167219,-0.083119980990887]],[[0.1106788739562,0.027729645371437,0.0047670123167336],[0.0028575060423464,0.09076601266861,0.035799786448479],[-0.19539971649647,0.083699658513069,0.037325598299503]],[[-0.070865981280804,0.03737385943532,-0.031315740197897],[0.080848000943661,0.021641246974468,0.001372238388285],[-0.068275645375252,0.021433938294649,0.036036711186171]],[[0.053946945816278,-0.090545207262039,-0.059201508760452],[-0.042360953986645,-0.089441105723381,-0.14581549167633],[0.023282309994102,-0.10150581598282,-0.13967056572437]],[[-0.39472508430481,-0.017102658748627,-0.0015838923864067],[-0.082771845161915,0.00037974090082571,0.10352890193462],[-0.091797582805157,-0.12807597219944,-0.0022757647093385]],[[0.0833540558815,0.10611547529697,0.024471493437886],[-0.08237013220787,-0.034126419574022,0.030382422730327],[-0.043831247836351,0.01218824647367,-0.058733340352774]],[[-0.055111892521381,-0.015736486762762,-0.050421591848135],[-0.06923446804285,-0.016995618119836,-0.098553478717804],[-0.033144649118185,-0.08229099214077,-0.030238043516874]],[[-0.1496613919735,0.0062260790728033,0.098430648446083],[-0.030366010963917,0.037370420992374,-0.08732645213604],[-0.14814825356007,-0.0045635690912604,0.10134940594435]],[[0.18260437250137,0.11560447514057,0.04598680883646],[0.082098573446274,-0.030716160312295,-0.015267468057573],[0.051636546850204,0.025407390668988,-0.27672764658928]],[[0.0077269738540053,0.018894506618381,0.070879608392715],[-0.12501221895218,-0.011378763243556,-0.0067463265731931],[0.056165721267462,0.037338014692068,-0.028083272278309]],[[0.0067743114195764,-0.047414157539606,0.046825356781483],[0.069263704121113,-0.1056392788887,0.024054484441876],[-0.042174659669399,0.10772363096476,0.0098419822752476]],[[0.093269646167755,0.019271064549685,-0.13451068103313],[0.084957838058472,-0.11971718072891,-0.074991203844547],[0.29898983240128,0.12968400120735,0.069753021001816]],[[-0.076319806277752,0.050552226603031,0.096303842961788],[-0.0069035710766912,0.11078402400017,-0.1132532954216],[-0.064758256077766,0.0074425279162824,0.052611831575632]],[[-0.0079588321968913,0.16682575643063,0.21287409961224],[-0.15093870460987,0.048768561333418,0.096930108964443],[-0.070219665765762,0.044768664985895,0.094178535044193]],[[0.011465708725154,-0.013473461382091,-0.059985619038343],[0.11568928509951,0.039369203150272,-0.043218366801739],[0.13338556885719,0.099277809262276,-0.091367401182652]],[[-0.050224740058184,-0.011604866944253,-0.089255623519421],[0.059708621352911,0.039280422031879,-0.11225996166468],[0.091183260083199,-0.071152403950691,0.044510200619698]],[[-0.1835585385561,-0.0036763390526175,0.15527299046516],[-0.18078936636448,0.12098882347345,0.078019209206104],[-0.18838977813721,-0.068361684679985,-0.00032886333065107]],[[-0.084340281784534,-0.034395284950733,-0.1348742544651],[0.022129422053695,-0.064502567052841,-0.096179641783237],[0.086019836366177,0.12299655377865,-0.11248002946377]],[[-0.084079936146736,0.02825503796339,0.11975552141666],[-0.021531701087952,0.043954759836197,0.037594337016344],[-0.08300768584013,-0.0021535148844123,-0.054994851350784]],[[0.11411569267511,0.062678813934326,-0.00054166972404346],[0.041306268423796,0.038023386150599,-0.023304168134928],[0.001192971249111,0.037307407706976,0.030551936477423]],[[-0.055083595216274,-0.009387431666255,-0.099131271243095],[-0.042038600891829,-0.055392686277628,-0.07405162602663],[0.0506611764431,0.062934577465057,-0.080454804003239]],[[-0.089049339294434,0.03998139500618,0.013925440609455],[-0.077926345169544,0.055710665881634,-0.10993118584156],[-0.097672708332539,-0.038412064313889,0.074814587831497]],[[0.087674871087074,0.044267658144236,-0.12775160372257],[0.16226591169834,-0.013710635714233,-0.1608681678772],[0.10837872326374,0.031812898814678,0.072360932826996]],[[0.011426275596023,-0.18136142194271,-0.045857172459364],[0.10594955086708,0.015302830375731,-0.080007612705231],[0.21115256845951,-0.04789150133729,-0.029280439019203]],[[-0.092556893825531,0.12690198421478,0.10489891469479],[-0.13835203647614,0.053143229335546,0.33137282729149],[-0.16491276025772,0.037177335470915,0.11799824982882]],[[0.05627503618598,0.08890363574028,0.14444184303284],[-0.081870310008526,-0.0080831600353122,0.076880775392056],[-0.072756744921207,-0.11721496284008,-0.020326817408204]],[[-0.07612943649292,0.042738437652588,-0.060967687517405],[-0.071410484611988,0.0093729449436069,0.0014334009028971],[-0.025510508567095,0.13030479848385,0.085975140333176]],[[-0.067401416599751,0.03740755841136,0.0082261664792895],[0.023148002102971,-0.078557170927525,0.073345094919205],[0.070741906762123,-0.011462435126305,-0.052094656974077]],[[0.099150642752647,-0.020594453439116,-0.077723875641823],[0.072316832840443,0.074196219444275,0.0052053681574762],[0.055293306708336,0.01166978944093,-0.050492201000452]],[[0.04820778220892,-0.094607934355736,-0.15260417759418],[-0.02057665027678,-0.041447062045336,0.062401108443737],[-0.022971430793405,0.026322050020099,0.036429576575756]],[[0.000880605308339,-0.083621449768543,-0.11314057558775],[-0.0040375418029726,0.071153372526169,-0.061246480792761],[0.099215909838676,0.089899130165577,-0.050204358994961]],[[-0.14285425841808,0.057527430355549,0.15141493082047],[-0.10646121948957,-0.12113466858864,0.22207225859165],[-0.21758334338665,-0.14990352094173,0.10109983384609]],[[0.0037727917078882,-0.073050320148468,-0.093388542532921],[0.11490251123905,-0.079430185258389,-0.22882072627544],[0.073229104280472,0.15856721997261,-0.073437444865704]],[[-0.028830360621214,0.10115409642458,0.14815816283226],[0.00086216878844425,-0.0080603966489434,0.069097153842449],[-0.18040691316128,-0.026822177693248,0.041524801403284]],[[-0.032095063477755,-0.10537595301867,0.22187212109566],[-0.018787024542689,-0.030608965083957,-0.039185352623463],[0.0020375563763082,-0.028895558789372,0.081517145037651]],[[0.05548781901598,-0.053281582891941,0.040116291493177],[-0.051383558660746,-0.11142898350954,-0.11182803660631],[0.069860316812992,-0.059980589896441,-0.011664532124996]],[[-0.027486182749271,-0.030233539640903,0.013732055202127],[-0.027823301032186,-0.10584683716297,-0.043600592762232],[-0.007522005122155,0.06185070425272,0.036351818591356]],[[0.043597765266895,0.041097111999989,0.069238394498825],[0.02252178452909,-0.13610906898975,-0.065900430083275],[0.042301088571548,-0.036707308143377,0.011479251086712]],[[0.061620865017176,-0.13845837116241,-0.10253670066595],[0.045523911714554,-0.041466806083918,-0.075386837124825],[0.072516366839409,0.041560858488083,-0.051785010844469]],[[0.074730716645718,-0.048281665891409,-0.167245849967],[0.15010017156601,-0.065439529716969,-0.032986477017403],[0.16657420992851,0.20382283627987,-0.026274481788278]],[[-0.0088079506531358,0.064129412174225,-0.093719996511936],[0.057531706988811,-0.015223511494696,0.014305899851024],[-0.05190122500062,0.053393993526697,0.10159991681576]],[[-0.0059161707758904,0.057812545448542,0.025213049724698],[0.050149023532867,0.07025283575058,-0.059541624039412],[0.051654700189829,0.096353933215141,-0.0034945670049638]],[[-0.13772070407867,0.044487696141005,0.085240975022316],[-0.23851931095123,0.025492323562503,0.10830561816692],[-0.084028273820877,-0.057163849473,0.12747500836849]],[[-0.0016787777421996,-0.014870470389724,0.08887043595314],[-0.067285433411598,0.044947229325771,-0.038080055266619],[0.00918273255229,-0.1380589902401,0.10736387968063]],[[-0.0053159832023084,-0.04850859567523,-0.068714022636414],[0.08464589715004,-0.039297919720411,-0.15194293856621],[0.13953439891338,0.14791545271873,-0.089584201574326]],[[0.037259269505739,-0.005364497192204,-0.046794675290585],[0.0098535781726241,-0.029269276186824,-0.10178693383932],[0.0076820193789899,0.0045208223164082,-0.07230344414711]],[[0.18136718869209,-0.11361054331064,0.0057921535335481],[0.09444136172533,-0.010096271522343,-0.028570003807545],[0.10484763979912,-0.069098271429539,-0.013702703639865]],[[0.029217353090644,0.14367869496346,0.030797217041254],[0.018140891566873,0.043377384543419,-0.12531585991383],[0.051673196256161,-0.12374889850616,-0.060344908386469]],[[0.0050025121308863,-0.10323143750429,-0.21187041699886],[0.096166580915451,-0.018119150772691,-0.20220617949963],[0.11919753998518,-0.043894644826651,-0.01326594222337]],[[-0.061224564909935,0.07486280798912,-0.032345645129681],[0.075355775654316,-0.032447330653667,0.032614886760712],[0.12142241001129,0.011761349625885,0.0070834830403328]],[[0.04590005427599,0.038280759006739,0.20219603180885],[0.0034140304196626,0.22428406774998,0.19755336642265],[-0.1408075094223,0.028098583221436,0.20802131295204]],[[-0.044818047434092,0.032331489026546,0.039837159216404],[0.0084569826722145,0.11419476568699,-0.17762233316898],[-0.0062044304795563,-0.089955076575279,-0.073164336383343]],[[0.018230706453323,0.097227461636066,0.060594189912081],[-0.0021483737509698,0.078881219029427,-0.010980379767716],[-0.0022641739342362,-0.081323593854904,0.0012357733212411]],[[-0.082605615258217,-0.16380803287029,-0.039665181189775],[0.10727176815271,0.04865713045001,0.0040049254894257],[0.069963611662388,0.010715004056692,0.11574783176184]],[[-0.041459679603577,-0.14986258745193,-0.19694994390011],[-0.023703802376986,-0.081024475395679,-0.17431558668613],[0.010403444059193,0.10278503596783,-0.1363488137722]],[[-0.0025158936623484,0.21383227407932,-0.0012157909804955],[-0.063327468931675,0.058385841548443,-0.010663417167962],[0.035774528980255,-0.081986106932163,0.081806875765324]],[[-0.21506400406361,-0.14360418915749,-0.01591644063592],[-0.15830112993717,0.029349580407143,0.2071840018034],[-0.040193680673838,0.010448812507093,0.15845559537411]],[[0.10085019469261,0.084419131278992,0.058368660509586],[-0.16480825841427,-0.010326979681849,0.032944414764643],[-0.418297290802,0.019308349117637,-0.015054922550917]]],[[[0.086944222450256,-0.02885808609426,0.03906586393714],[0.031534370034933,-0.071849144995213,-0.096387468278408],[0.04458624497056,0.03434681147337,0.037890523672104]],[[-0.01672837510705,0.0043879114091396,0.018267929553986],[-0.10938923805952,0.00030501704895869,0.018673488870263],[-0.003896706039086,0.082901507616043,-0.11206053197384]],[[0.0021519043948501,-0.013251745142043,0.026465475559235],[0.048985827714205,-0.012126533314586,0.026802942156792],[0.02800715342164,-0.041677892208099,-0.0069658793509007]],[[-0.015296891331673,-0.0073787174187601,-0.011393832974136],[0.070397913455963,-0.044728063046932,-0.026936527341604],[-0.046910274773836,0.0045773889869452,0.040480095893145]],[[-0.10518281161785,0.066605664789677,0.038032941520214],[-0.014349261298776,0.069395631551743,-0.024718727916479],[-0.055573739111423,0.014218907803297,0.02745421603322]],[[0.0035158337559551,0.073334857821465,-0.03491124138236],[-0.0037044337950647,0.048901427537203,0.084120191633701],[-0.0039290534332395,0.025294274091721,0.010086763650179]],[[0.014848310500383,0.1406367868185,0.002510289195925],[0.064254395663738,-0.028368916362524,-0.026264496147633],[0.083197556436062,0.087484270334244,-0.023157730698586]],[[-0.032795157283545,0.13188800215721,0.13143676519394],[0.033262182027102,0.053608030080795,0.054715380072594],[-0.13854995369911,0.0051637436263263,-0.067680314183235]],[[-0.071719996631145,-0.11259872466326,-0.08845642209053],[-0.09923629462719,-0.044785924255848,-0.013241545297205],[-0.13466183841228,0.0042953393422067,-0.014089336618781]],[[0.039418093860149,0.0077148010022938,-0.027837596833706],[0.050907984375954,0.020984074100852,0.0059428364038467],[-0.034667283296585,-0.096016928553581,0.024838618934155]],[[-0.00065783754689619,-0.051762159913778,-0.081205114722252],[0.0051716547459364,-0.054664928466082,0.018412357196212],[0.0092655587941408,-0.076781831681728,0.046472802758217]],[[-0.041216894984245,-0.05153775587678,-0.083809666335583],[-0.029757158830762,0.065061539411545,0.010974943637848],[0.029630992561579,0.0040677608922124,-0.078962817788124]],[[0.013404834084213,-0.049779914319515,-0.099558643996716],[0.025586882606149,-0.07336413860321,-0.11622288823128],[0.06449468433857,0.0022810720838606,-0.028216192498803]],[[-0.037619784474373,-0.011273165233433,0.086148083209991],[0.03290481865406,-0.036201596260071,0.052353125065565],[0.052456416189671,-0.014141687192023,0.063436888158321]],[[-0.024007145315409,0.027061661705375,-0.067790649831295],[0.026564497500658,0.014273139648139,-0.070510700345039],[0.066805474460125,-0.068309925496578,-0.018006907775998]],[[-0.073226794600487,0.0078519452363253,-0.081544071435928],[0.01566769182682,-0.020647427067161,0.050047300755978],[-0.02652051858604,-0.008915507234633,0.10912075638771]],[[-0.032730583101511,-0.00032485113479197,0.1083328127861],[0.18497912585735,0.015626264736056,-0.094137690961361],[0.0143011379987,-0.0032576930243522,-0.08490813523531]],[[-0.014934117905796,0.028065031394362,-0.041156951338053],[-0.002951048547402,0.0077506811358035,-0.041765682399273],[0.01489884685725,-0.0070931920781732,-0.005381403490901]],[[0.042151439934969,-0.0097962925210595,0.10428138822317],[-0.064498327672482,0.075348310172558,0.0092482399195433],[0.0077783484011889,0.0071994988247752,-0.025235304608941]],[[0.017913589254022,0.066862970590591,-0.10509466379881],[-0.017625343054533,0.086010053753853,0.02244189940393],[0.027107274159789,0.071854323148727,0.088036902248859]],[[0.0072761666961014,-0.078308805823326,0.0072472747415304],[-0.028215892612934,0.032404653728008,0.084814973175526],[-0.053930401802063,-0.057100594043732,-0.066289387643337]],[[-0.017239136621356,0.031957473605871,-0.037132531404495],[0.0037921408656985,0.065114513039589,0.041075516492128],[0.070968590676785,-0.067500293254852,-0.098158776760101]],[[-0.031468737870455,0.053058430552483,-0.010824144817889],[-0.014968615956604,0.036711316555738,0.031042153015733],[0.033071912825108,0.024339184165001,-0.067522838711739]],[[-0.10662707686424,0.015277608297765,0.0087901717051864],[-0.002399631543085,0.042152665555477,0.013117956928909],[0.062150500714779,-0.014561478048563,-0.10500102490187]],[[-0.035405784845352,0.00062169262673706,0.063976690173149],[-0.035112097859383,0.060469906777143,0.11901420354843],[0.042554926127195,-0.050434194505215,0.016424706205726]],[[-0.060137242078781,-0.039869032800198,-0.058888848870993],[-0.15631745755672,-0.014665461145341,0.10854443907738],[0.08048415184021,0.010453211143613,0.010943818837404]],[[-0.0084600914269686,0.0067127225920558,0.02589357830584],[-0.027825562283397,-0.040966376662254,0.081240065395832],[0.094625882804394,0.0021885661408305,0.11508426070213]],[[-0.024148093536496,0.014994349330664,-0.011025169864297],[-0.014238444156945,0.024207692593336,0.14184400439262],[-0.038356471806765,0.02581618912518,-0.11041665822268]],[[-0.026146044954658,0.12230087816715,0.047846850007772],[0.048835549503565,-0.083384782075882,0.0079625826328993],[-0.066704399883747,-0.059585407376289,-0.045935735106468]],[[-0.020820217207074,0.010822488926351,-0.18608404695988],[-0.0019178346265107,-0.09691060334444,-0.10371640324593],[0.041036527603865,-0.011000608094037,-0.10047168284655]],[[0.03916746750474,0.059219472110271,-0.10407657921314],[0.14929853379726,-0.026893861591816,-0.078878134489059],[-0.0085930116474628,-0.055351257324219,0.061874039471149]],[[0.12041589617729,-0.031611256301403,0.075558416545391],[0.062157787382603,-0.083568416535854,-0.065588533878326],[-0.047846000641584,-0.041390176862478,-0.060522831976414]],[[0.041261877864599,-0.001773314201273,0.078512474894524],[0.0053034797310829,-0.098308995366096,-0.0034449412487447],[-0.05895459279418,-0.064901188015938,0.0074999686330557]],[[-0.085983514785767,-0.04566678404808,0.010483145713806],[-0.055651228874922,0.066720187664032,0.024302903562784],[-0.026126889511943,0.012448993511498,-0.16028425097466]],[[-0.019458303228021,-0.017430098727345,0.041362721472979],[-0.090921729803085,-0.058372307568789,0.0063806637190282],[-0.10034865140915,-0.13462583720684,0.02190381474793]],[[0.04390386864543,0.05099443718791,-0.027206705883145],[0.039068441838026,-0.066381737589836,0.034498028457165],[-0.014890077523887,0.04256347194314,-0.064570382237434]],[[-0.020901156589389,0.00032690435182303,-0.042727187275887],[0.0055226674303412,0.025246992707253,-0.034950811415911],[0.0091223940253258,-0.079734526574612,-0.071323826909065]],[[-0.18758536875248,0.092093393206596,-0.060433398932219],[0.044399984180927,-0.0060443077236414,0.048114351928234],[0.022553062066436,-0.048723146319389,0.076285108923912]],[[0.035117462277412,0.052766390144825,-0.088108941912651],[-0.096609592437744,-0.056346546858549,0.065507017076015],[-0.043230928480625,-0.063962854444981,-0.052880305796862]],[[-0.044810134917498,-0.10378777980804,0.11029056459665],[-0.020200638100505,-0.04754438623786,-0.026809168979526],[-0.040318086743355,0.080682456493378,0.016062553972006]],[[0.0054340190254152,-0.014621914364398,-0.023082997649908],[-0.035032439976931,-0.0010835789144039,-0.0040772738866508],[-0.05034813284874,-0.033622644841671,-0.0043160826899111]],[[0.045259598642588,0.060687299817801,-0.020137073472142],[0.058741897344589,-0.030497208237648,0.017668968066573],[0.20009268820286,0.085798121988773,-0.095599845051765]],[[0.083816766738892,-0.036155823618174,-0.16455499827862],[0.064749255776405,0.021882062777877,0.099818520247936],[0.071300238370895,0.013511508703232,-0.055813513696194]],[[0.063071236014366,0.0022701031994075,0.027304699644446],[0.037556156516075,0.056861899793148,-0.071007676422596],[0.0096084289252758,-0.085640020668507,-0.092710018157959]],[[0.023306204006076,-0.053229872137308,0.0086457459256053],[-0.039881426841021,0.029238978400826,0.0048834001645446],[-0.064886271953583,-0.01969937235117,0.016674606129527]],[[0.13080708682537,0.04766059294343,-0.027898300439119],[0.12594184279442,0.0054120142012835,-0.055697996169329],[0.046077743172646,-0.14265704154968,-0.093333877623081]],[[0.043626595288515,0.060975052416325,0.044422283768654],[0.002315797843039,0.025866493582726,0.028990505263209],[0.046254321932793,0.096457369625568,0.031558059155941]],[[0.066180638968945,0.023884072899818,0.094072565436363],[-0.031856194138527,-0.014929350465536,-0.051832359284163],[0.064837381243706,0.06138514727354,0.016581375151873]],[[0.089551404118538,0.0064820270054042,0.088775888085365],[0.039245549589396,0.038205128163099,-0.0096930051222444],[-0.017932804301381,0.13474036753178,0.041008237749338]],[[0.024203447625041,0.024578034877777,-0.10641615092754],[-0.05868798494339,-0.037699487060308,0.04421903938055],[-0.014137043617666,-0.072450555860996,0.014318181201816]],[[-0.0073641506023705,0.12119967490435,-0.098337508738041],[0.026895809918642,-0.046964205801487,0.032312050461769],[0.038881458342075,-0.086755998432636,0.00092335871886462]],[[0.023266756907105,0.041773244738579,-0.003405922325328],[-0.065374054014683,-0.018227325752378,0.05123657733202],[-0.10441773384809,-0.078912064433098,0.080884695053101]],[[0.060085214674473,0.054125782102346,0.045116674154997],[0.0624985024333,0.0079184351488948,-0.10951483249664],[0.097943432629108,0.0042304922826588,-0.039633296430111]],[[-0.095969289541245,-0.0035332888364792,0.040333595126867],[0.083945915102959,-0.066018983721733,0.025586474686861],[0.0625886246562,0.027765855193138,-0.036395136266947]],[[0.025515573099256,0.072250649333,-0.027021318674088],[0.019364062696695,0.010123692452908,0.027769491076469],[-0.010504419915378,0.078126959502697,0.10211570560932]],[[0.015578523278236,0.015756066888571,0.096814498305321],[-0.030795712023973,0.00044865364907309,0.003700403496623],[-0.0052158515900373,0.015916522592306,0.025267638266087]],[[0.088624835014343,-0.0058616823516786,0.0094640888273716],[0.081909865140915,0.056395143270493,0.074029758572578],[0.010284513235092,0.029055513441563,0.0025972565636039]],[[-0.0034936578013003,-0.061047028750181,0.013596266508102],[0.010709695518017,0.030946353450418,-0.034604508429766],[0.015042089857161,0.057307884097099,-0.027138391509652]],[[-0.027079930528998,-0.022065641358495,0.077397055923939],[0.010041552595794,0.15053237974644,-0.016213783994317],[-0.10918342322111,0.035234164446592,-0.11087816208601]],[[-0.016517367213964,-0.004085689317435,0.057532049715519],[-0.10835020244122,0.16541507840157,-0.01620177924633],[-0.058067828416824,0.11716555058956,0.089537881314754]],[[-0.0050098379142582,-0.043329417705536,0.0047918502241373],[-0.15513047575951,0.035944618284702,0.050742890685797],[-0.073414154350758,0.092877797782421,-0.038003496825695]],[[-0.010351515375078,0.028297150507569,0.12722116708755],[0.1099292114377,0.016172416508198,-0.10605839639902],[-0.060540366917849,0.063410446047783,-0.081278063356876]],[[0.0026862639933825,0.061836883425713,-0.070863261818886],[0.0086047053337097,0.031395245343447,0.051502246409655],[0.010449993424118,0.0086011961102486,0.0036100370343775]],[[0.030773600563407,0.006432709749788,0.055550951510668],[0.023965656757355,0.021601324900985,0.0026745900977403],[0.016882557421923,-0.093776233494282,0.022665273398161]]],[[[-0.076415985822678,-0.063027329742908,-0.0061490405350924],[-0.052030637860298,0.056625634431839,0.094554975628853],[0.10368154197931,-0.051907524466515,0.038412149995565]],[[-0.081108711659908,0.10941644757986,-0.075791604816914],[0.033406537026167,0.027648560702801,-0.0058589628897607],[0.064090073108673,0.091143108904362,0.092250742018223]],[[-0.059430070221424,-0.055673740804195,-0.069938436150551],[0.05639024823904,0.081546701490879,-0.039095807820559],[-0.082774423062801,0.0023959293030202,-0.027209805324674]],[[-0.049328915774822,0.26372539997101,0.026161398738623],[0.017071042209864,-0.17024648189545,0.13359096646309],[-0.22158515453339,0.004739795345813,-0.12921194732189]],[[-0.0049890480004251,-0.046023979783058,-0.03759927675128],[0.034029316157103,-0.084686435759068,0.017559291794896],[0.048521567136049,-0.057741984724998,0.018649209290743]],[[-0.063865773379803,0.089260093867779,0.0048281992785633],[-0.037974059581757,-0.038178779184818,0.026111094281077],[-0.089615687727928,0.0050850380212069,0.048954177647829]],[[-0.054962947964668,0.11691706627607,0.038443371653557],[-0.092640854418278,0.072397738695145,0.031181650236249],[0.046539500355721,-0.069908834993839,0.10020451247692]],[[0.081088542938232,0.023040864616632,0.03933297842741],[-0.089276097714901,0.047596607357264,-0.016039583832026],[-0.013780822046101,-0.015861485153437,-0.018436063081026]],[[-0.042464293539524,0.026936620473862,0.033751141279936],[-0.017014563083649,-0.029406828805804,0.044519875198603],[0.044731661677361,0.029231369495392,-0.030985593795776]],[[-0.0098056197166443,-0.011204916983843,-0.057373519986868],[-0.14643993973732,-0.024775333702564,-0.087363444268703],[0.0075340573675931,-0.067895144224167,-0.10431146621704]],[[0.053165290504694,-0.017956513911486,-0.015461109578609],[0.12285889685154,0.016689669340849,-0.068482287228107],[-0.067919328808784,-0.05163262039423,0.039793536067009]],[[0.021191207692027,0.070046834647655,-0.0008904985152185],[0.090486988425255,0.0071778292767704,-0.02156625315547],[-0.051658514887094,0.076206408441067,-0.040943700820208]],[[0.050809435546398,-0.11506765335798,0.22685481607914],[-0.12077394872904,0.080029748380184,-0.19829662144184],[0.14273105561733,-0.41775155067444,0.14968109130859]],[[-0.049590367823839,0.16526953876019,0.031820714473724],[-0.10686417669058,0.061762917786837,-0.010421370156109],[0.031045841053128,0.071953818202019,-0.017264192923903]],[[-0.10819724202156,-0.094112515449524,0.00088628352386877],[0.06476915627718,0.0025346779730171,0.10313399881124],[-0.012274029664695,0.043782614171505,-0.029430832713842]],[[-0.03543009981513,-0.0075121922418475,-0.10008504241705],[0.097047820687294,0.090527310967445,0.046686310321093],[-0.023646840825677,0.04336429014802,-0.092584893107414]],[[0.038835134357214,0.041268665343523,-0.064183920621872],[-0.09676118940115,-0.0095674796029925,-0.0012159709585831],[0.13755287230015,-0.05704502761364,0.021270025521517]],[[0.091889120638371,-0.042900998145342,0.016086306422949],[-0.2231666892767,0.099982433021069,-0.2471631616354],[0.054860100150108,-0.022044623270631,0.063275292515755]],[[0.04874212294817,0.013162959367037,0.045339737087488],[0.0051819742657244,-0.037257771939039,-0.05637376755476],[0.10920082777739,0.048694647848606,-0.055015802383423]],[[-0.10696672648191,0.19541348516941,0.12937553226948],[0.075781628489494,0.053314939141273,0.17723210155964],[0.0033329345751554,0.13531969487667,0.09469747543335]],[[0.076319523155689,0.071636565029621,-0.034222632646561],[0.042171601206064,-0.10543868690729,-0.054176457226276],[0.0622315146029,-0.17454546689987,-0.05126478895545]],[[0.041621755808592,-0.048055786639452,0.12071621417999],[-0.031975101679564,0.1277459859848,0.049274176359177],[0.056365005671978,-0.033665250986814,-0.087235935032368]],[[0.089977063238621,-0.12283816188574,0.094540439546108],[-0.19594722986221,0.05980708450079,-0.15905958414078],[0.09437757730484,-0.082137428224087,0.0025421073660254]],[[0.065301008522511,-0.085888154804707,0.062619872391224],[0.045935790985823,0.075351923704147,-0.0497005879879],[-0.0046297325752676,0.081961572170258,0.10612678527832]],[[-0.032534155994654,-0.0084519982337952,0.041540760546923],[0.0013782973401248,0.038911089301109,0.080546230077744],[0.044616471976042,-0.15006372332573,0.091010585427284]],[[-0.055765923112631,-0.045301739126444,0.056844938546419],[0.0566999129951,-0.032152894884348,-0.16267378628254],[0.12089095264673,0.027921607717872,0.081653855741024]],[[0.020576789975166,-0.057247780263424,0.094685256481171],[0.084817036986351,0.064611278474331,-0.076019205152988],[0.05559254437685,-0.10169592499733,-0.039914775639772]],[[0.0025033322162926,0.065526656806469,0.099943876266479],[-0.07302438467741,-0.054674003273249,-0.14200647175312],[-0.044962089508772,0.05513409152627,-0.038645040243864]],[[-0.11462837457657,0.035004142671824,-0.13382282853127],[0.055443722754717,-0.080649241805077,0.0023732036352158],[0.059332698583603,-0.026847710832953,0.046770460903645]],[[-0.012120781466365,-0.14984908699989,0.035838756710291],[-0.022696861997247,0.089668318629265,-0.11029854416847],[-0.12243449687958,-0.041366163641214,-0.12126448005438]],[[0.061401419341564,-0.1345349252224,0.17439393699169],[-0.18618044257164,0.00070488580968231,-0.19108057022095],[-0.011727107688785,-0.085347287356853,0.15822453796864]],[[-0.030497731640935,0.11302172392607,0.0055307387374341],[0.059058871120214,0.048841059207916,-0.0059818387962878],[0.019309349358082,0.16163440048695,0.039769042283297]],[[0.067708358168602,-0.19576957821846,0.049896184355021],[-0.00041530944872648,-0.050982367247343,-0.084737978875637],[0.062202028930187,-0.019043520092964,0.0038814342115074]],[[0.013548032380641,0.041111592203379,-0.082915022969246],[0.11084985733032,-0.11944538354874,-0.21955056488514],[0.0049907555803657,-0.061523456126451,-0.15519937872887]],[[-0.034977961331606,-0.0097099104896188,-0.013094267807901],[-0.050559490919113,0.029958868399262,-0.043409269303083],[-0.0044410065747797,0.12596952915192,0.11674484610558]],[[0.033806797116995,-0.19754879176617,0.067159697413445],[-0.1283878237009,0.17733839154243,-0.15571691095829],[0.044931929558516,-0.077983535826206,-0.0096840905025601]],[[-0.063430972397327,-0.034570567309856,-0.096307151019573],[-0.029171181842685,-0.1025595292449,-0.08157803863287],[-0.0077940467745066,-0.02272211201489,0.029233150184155]],[[-0.046770974993706,0.02114113047719,0.082715839147568],[-0.11968525499105,0.080803707242012,-0.010570170357823],[0.12422180920839,-0.07286174595356,-0.01949025131762]],[[-0.023032775148749,-0.10231985896826,0.06876727938652],[0.073974132537842,-0.00044518706272356,-0.0054949270561337],[-0.087770812213421,-0.030147902667522,-0.049652695655823]],[[0.024207606911659,-0.054376214742661,0.18119637668133],[-0.11883625388145,0.057464051991701,-0.013073144480586],[0.01296990737319,-0.15086150169373,0.17647275328636]],[[0.10334524512291,0.073598124086857,0.039648704230785],[-0.031402532011271,0.049951355904341,-0.095601871609688],[-0.12550921738148,0.034028060734272,0.12277815490961]],[[-0.12962079048157,-0.073016084730625,0.032792076468468],[0.046766351908445,-0.12822398543358,0.030372163280845],[0.023479286581278,-0.081932619214058,0.041633248329163]],[[0.01419229246676,-0.14706230163574,-0.0085944505408406],[-0.082120582461357,-0.029869228601456,-0.0043339813128114],[0.038621757179499,-0.070167250931263,0.042070619761944]],[[0.027959061786532,-0.10942769795656,0.025359956547618],[0.093663156032562,0.030086159706116,0.00044328987132758],[0.027798019349575,-0.093113154172897,-0.0064948457293212]],[[0.15426781773567,-0.26427066326141,0.011216292157769],[0.0601407289505,-0.015936451032758,-0.0028575146570802],[0.04969447106123,-0.065574400126934,-0.062096357345581]],[[-0.072988428175449,-0.037354558706284,0.16402995586395],[-0.088669948279858,-0.029768750071526,0.051901489496231],[-0.15659408271313,0.10643561184406,-0.072734728455544]],[[-0.017074126750231,0.019885821267962,0.12389042973518],[-0.0081619750708342,-0.10273225605488,-0.0091810412704945],[0.088975787162781,0.015878707170486,-0.0085258400067687]],[[-0.0071265669539571,0.19115886092186,-0.06170142441988],[-0.10002639144659,-0.11334539204836,0.16645747423172],[-0.094905637204647,5.4370302677853e-05,-0.094862721860409]],[[0.22138611972332,-0.037153977900743,0.035850923508406],[0.047749619930983,-0.14918303489685,-0.22168663144112],[0.16167776286602,-0.090031914412975,0.064102955162525]],[[-0.058766908943653,0.06674549728632,-0.065761648118496],[0.03784378990531,-0.018427573144436,0.036656066775322],[-0.073619827628136,0.038937266916037,0.06615075469017]],[[-0.038837883621454,-0.071313552558422,-0.07367717474699],[0.018088690936565,-0.052897769957781,-0.02249263599515],[-0.11121759563684,0.051093630492687,0.01291848346591]],[[0.077159650623798,-0.095524407923222,0.0024058753624558],[-0.095860496163368,0.053695097565651,-0.23381903767586],[0.11129476130009,-0.20913983881474,0.0033038349356502]],[[0.068019345402718,-0.07877492159605,0.056152019649744],[0.018634824082255,-0.11941616982222,-0.090203732252121],[0.08217791467905,-9.7686068329494e-05,-0.018215337768197]],[[-0.036602187901735,-0.076542474329472,0.071625143289566],[-0.086561173200607,-0.091550752520561,-0.05434263125062],[0.039577830582857,-0.051404494792223,0.050979048013687]],[[-0.082467176020145,-0.064154088497162,-0.011530645191669],[-0.22574797272682,-0.10103764384985,-0.081673920154572],[-0.11889636516571,-0.089837200939655,0.012550712563097]],[[0.11300799995661,-0.07173427939415,0.038064148277044],[0.010973902419209,-0.017766214907169,-0.053362105041742],[0.0065525006502867,-0.16825889050961,-0.030124150216579]],[[0.24756747484207,0.017082223668694,0.27709802985191],[0.033563796430826,0.14873698353767,0.087713494896889],[0.16282822191715,0.075484819710255,0.20849344134331]],[[-0.050706014037132,-0.026623521000147,-0.21155209839344],[-0.048046782612801,0.01786427013576,-0.12518672645092],[0.062297768890858,-0.12715421617031,-0.13062509894371]],[[-0.11569622159004,-0.087563015520573,-0.054528869688511],[0.092430591583252,-0.023694323375821,0.061000108718872],[-0.060102727264166,0.095366202294827,0.11139997839928]],[[0.027349594980478,-0.08935471624136,-0.059740398079157],[0.095601603388786,-0.0021949324291199,-0.067161336541176],[0.10861720144749,0.1145683079958,-0.046043265610933]],[[0.077427007257938,-0.029160592705011,-0.060029864311218],[0.034905664622784,-0.056081622838974,-0.0035793203860521],[0.099117532372475,0.014543361961842,-0.040554758161306]],[[0.023123569786549,0.066280528903008,0.0073724361136556],[0.060795176774263,0.067980080842972,-0.13171102106571],[0.10959810018539,-0.15113197267056,-0.058427590876818]],[[0.089928224682808,0.057762775570154,-0.1567562520504],[-0.024635320529342,-0.1088784635067,0.010847555473447],[-0.00076895585516468,0.096567779779434,-0.051823321729898]],[[0.11283385753632,-0.15213702619076,-0.053243085741997],[-0.0217350050807,0.097330279648304,-0.023410322144628],[0.019397061318159,-0.082837872207165,0.10620818287134]]],[[[-0.0095735592767596,0.091671764850616,0.008763724938035],[0.094947531819344,0.017313867807388,-0.073631785809994],[0.0517841540277,-0.063765116035938,-0.090431317687035]],[[-0.065392091870308,-0.014591151848435,0.067842036485672],[-0.043681412935257,0.095231369137764,-0.028312299400568],[0.040734179317951,-0.0044108019210398,0.030593644827604]],[[0.13668674230576,0.01299499720335,0.051611505448818],[0.06257152557373,-0.096896559000015,0.030506214126945],[-0.18616551160812,-0.069803655147552,0.074217535555363]],[[0.14153961837292,-0.057314787060022,-0.028102748095989],[0.10017302632332,0.046555511653423,-0.0082093356177211],[0.094321198761463,0.059570275247097,-0.12575286626816]],[[0.071885965764523,-0.0005105686141178,-0.0067644482478499],[-0.10588724911213,-0.0016020276816562,0.017361626029015],[-0.10375648736954,0.0494254976511,0.085809335112572]],[[-0.1680129468441,-0.062651924788952,-0.06635669618845],[-0.17164362967014,0.029067296534777,-0.040628656744957],[0.040193364024162,-0.044277712702751,0.07687047123909]],[[0.14028599858284,0.0044828574173152,0.049452636390924],[-0.011011711321771,-0.043762434273958,0.03457535803318],[-0.045567501336336,-0.092956252396107,0.015091437846422]],[[-0.0050404220819473,0.049998331815004,0.0061429436318576],[0.10044500231743,-0.13493658602238,0.055519554764032],[0.12640492618084,0.030731957405806,-0.14702652394772]],[[-0.0054755760356784,-0.011260233819485,-0.054785754531622],[-0.071399055421352,0.005840222351253,0.042401321232319],[0.045680910348892,0.012779362499714,0.032642882317305]],[[0.011943243443966,0.049545329064131,0.056945733726025],[-0.13916599750519,-0.22796089947224,-0.12980161607265],[-0.089921377599239,-0.11610649526119,-0.020600123330951]],[[0.0131910527125,0.1215000897646,0.03855986148119],[-0.09961874037981,0.10204993933439,0.0046531581319869],[-0.096392601728439,0.036970056593418,0.12871494889259]],[[-0.020682703703642,-0.30960264801979,0.019317554309964],[-0.17117990553379,-0.22621609270573,-0.054865133017302],[0.023454422131181,-0.098718978464603,0.058792158961296]],[[0.041459802538157,0.039155870676041,0.053724359720945],[-0.024674002081156,-0.074084758758545,-0.025679783895612],[0.0088100200518966,-0.025959841907024,0.086439244449139]],[[0.16978397965431,-0.015223962254822,-0.064808495342731],[-0.020817244425416,-0.057811260223389,-0.044385358691216],[0.020154371857643,0.068314470350742,-0.012873211875558]],[[0.00099759502336383,-0.10286775976419,-0.011924621649086],[0.0066281603649259,-0.053844146430492,0.0056912591680884],[0.059372451156378,-0.10585748404264,0.015383454971015]],[[0.027497069910169,0.064326792955399,-0.08538693934679],[-0.16494904458523,0.040045112371445,0.11583150923252],[-0.012539361603558,-0.0087754912674427,0.037438802421093]],[[0.12110026925802,0.0025112547446042,-0.074193730950356],[-0.08338638395071,0.048439331352711,-0.080334298312664],[0.0096445120871067,-0.012304506264627,-0.074829675257206]],[[0.056223049759865,-0.0091340290382504,0.12482396513224],[-0.11137738823891,-0.130495429039,-0.055514987558126],[-0.12050906568766,0.0050670732744038,0.055942945182323]],[[-0.072434261441231,-0.007184321526438,0.080055393278599],[-0.036657400429249,-0.14166428148746,0.13261067867279],[0.027972344309092,-0.070280164480209,0.16171623766422]],[[0.19591668248177,-0.035339668393135,-0.047375023365021],[0.031848091632128,0.056204583495855,-0.10348741710186],[0.093012109398842,0.1894316971302,-0.0060749365948141]],[[0.0028013151604682,0.12383484840393,0.078423015773296],[-0.12218491733074,0.019968189299107,-0.050593975931406],[0.050925008952618,-0.11364497989416,0.034613996744156]],[[-0.094906985759735,0.1002524793148,-0.045563470572233],[-0.17749471962452,0.038935411721468,0.03964639082551],[-0.040980458259583,0.16122907400131,0.041874449700117]],[[0.059217307716608,-0.051602408289909,0.074469462037086],[-0.044065684080124,0.048423711210489,-0.089807502925396],[-0.14328737556934,0.063624992966652,0.061012886464596]],[[-0.19512258470058,-0.099168792366982,-0.011194943450391],[-0.34194657206535,-0.0190160702914,-0.034211032092571],[-0.0035284776240587,0.0058202533982694,0.0040255300700665]],[[-0.15822049975395,0.1394377797842,0.0078092203475535],[0.034704305231571,0.079553700983524,-0.13599279522896],[0.057697918266058,-0.043410211801529,0.014623962342739]],[[0.013270112685859,0.063011690974236,0.056182377040386],[-0.07290868461132,-0.037990275770426,-0.063330695033073],[-0.12522087991238,-0.11616623401642,-0.017365228384733]],[[-0.13373780250549,-0.079268284142017,0.02737570554018],[0.048608150333166,-0.031205741688609,0.086485520005226],[-0.055188145488501,-0.036087710410357,0.28301647305489]],[[-0.027359427884221,-0.11467964947224,-0.00036981093580835],[-0.049297321587801,0.057888574898243,0.039669118821621],[-0.03211884573102,0.080810435116291,0.021033875644207]],[[-0.019311705604196,0.034631337970495,-0.078361943364143],[-0.14433859288692,0.032133113592863,-0.011909520253539],[0.049330931156874,0.032159741967916,-0.16319970786572]],[[0.11875637620687,0.074902653694153,0.059393245726824],[0.085311636328697,0.028004055842757,-0.031125508248806],[-0.063846610486507,-0.005880915094167,-0.027457186952233]],[[-0.075969099998474,0.076346397399902,-0.064949847757816],[-0.017924420535564,-0.10589038580656,-0.11351609230042],[-0.0041387393139303,0.020073242485523,0.078037425875664]],[[0.0030281341169029,-0.031405072659254,-0.10485274344683],[0.16199038922787,-0.021292759105563,0.057744331657887],[0.00076313794124871,-0.024608366191387,0.022831980139017]],[[0.011644304729998,0.02600627578795,0.10341286659241],[-0.091032832860947,-0.060132548213005,-0.044698800891638],[-0.05240198597312,-0.044766832143068,-0.11732905358076]],[[0.058202672749758,-0.06300862133503,-0.056598898023367],[-0.11610782146454,-0.23027785122395,0.037494692951441],[-0.13997420668602,-0.047904990613461,-0.056332163512707]],[[0.028611386194825,-0.075622871518135,0.093797110021114],[-0.031847383826971,0.0090425498783588,0.049989353865385],[-0.21942847967148,0.043516393750906,-0.037314485758543]],[[-0.12051470577717,-0.11055286973715,0.059502802789211],[0.050009541213512,0.072962015867233,-0.023251913487911],[0.002358014928177,0.035614579916,0.065141409635544]],[[0.15215550363064,0.080710664391518,-0.10976809263229],[-0.020515510812402,0.1291791498661,-0.11041517555714],[-0.035227458924055,-0.10938914120197,0.023607574403286]],[[0.10206690430641,0.027725921943784,0.03267166018486],[0.078542985022068,-0.091480419039726,-0.046294588595629],[0.069483727216721,0.10288499295712,-0.028961138799787]],[[-0.050546210259199,0.13267104327679,0.088770590722561],[0.032909210771322,0.087527051568031,-0.023400578647852],[0.0016236411174759,0.010065563954413,-0.030322933569551]],[[0.11358766257763,-0.060608275234699,-0.10355439782143],[-0.0062395902350545,-0.13997189700603,-0.11021088063717],[0.03990912437439,0.12440947443247,0.10846192389727]],[[0.058086816221476,-0.00082826730795205,0.028324434533715],[-0.22583639621735,-0.055119026452303,0.042967215180397],[-0.18615038692951,-0.11238899081945,-0.068030692636967]],[[0.098489679396152,-0.022851461544633,-5.8061021263711e-05],[-0.055743526667356,0.0026207130867988,0.052530903369188],[0.20864875614643,-0.013246592134237,-0.010501533746719]],[[0.018036356195807,0.15358527004719,0.057130228728056],[-0.10141795128584,-0.12620125710964,0.0301035605371],[0.080089598894119,-0.14313769340515,-0.028949903324246]],[[0.087935104966164,0.13520213961601,-0.028857367113233],[-0.052911933511496,-0.0013895925367251,-0.082253202795982],[0.067995473742485,-0.088770195841789,-0.028241124004126]],[[-0.16379798948765,0.093256741762161,-0.062347583472729],[0.026686239987612,-0.0088401660323143,-0.038735825568438],[0.031028756871819,0.034028325229883,-0.04116078093648]],[[-0.10040986537933,0.083242639899254,0.046475309878588],[-0.047949470579624,-0.13568235933781,0.043732210993767],[0.082836709916592,0.047625739127398,-0.026556277647614]],[[0.020750174298882,0.096464648842812,0.026691315695643],[0.063664458692074,0.027890719473362,-0.0022915876470506],[0.11444507539272,-0.044116050004959,-0.022904481738806]],[[0.1213201880455,0.030810259282589,-0.059440530836582],[-0.095361433923244,0.040011011064053,0.18199092149734],[-0.15501701831818,0.0081372857093811,-0.031001538038254]],[[-0.041822873055935,-0.028266252949834,0.08647695183754],[0.076097212731838,0.002984490711242,-0.12411203980446],[0.0946279540658,0.002200081711635,-0.15258687734604]],[[0.04481265693903,-0.017596822232008,-0.031456999480724],[0.037347570061684,0.034402139484882,0.0042789154686034],[0.06198351457715,-0.15854313969612,0.029589248821139]],[[0.10726966708899,0.13958881795406,-0.066574573516846],[-0.040363717824221,-0.022130724042654,-0.075979977846146],[-0.0088536096736789,-0.12075960636139,-0.01288066059351]],[[-0.022873573005199,-0.021891629323363,-0.0065323915332556],[0.060955259948969,-0.10070653259754,0.054834097623825],[-0.022132540121675,0.040155086666346,0.047448076307774]],[[0.078907251358032,0.27336674928665,0.034099187701941],[-0.1525623947382,-0.024433856830001,0.11182119697332],[-0.22627460956573,-0.074938304722309,-0.016591854393482]],[[0.037017207592726,0.0055379895493388,0.080657623708248],[0.24131964147091,-0.065378487110138,-0.043928679078817],[0.071097657084465,0.056474801152945,-0.17063322663307]],[[-0.12065549194813,0.012770028784871,-0.0096711860969663],[-0.21323648095131,-0.034846182912588,0.018247090280056],[0.023493878543377,-0.060013722628355,0.13399197161198]],[[-0.039529532194138,0.12056251615286,0.0021119874436408],[-0.023696901276708,0.013963337056339,0.11772606521845],[-0.017137801274657,0.081252455711365,-0.07503741979599]],[[0.24767191708088,-0.085651993751526,-0.01393704675138],[0.08684466779232,0.031584408134222,0.02684697508812],[0.091480329632759,-0.0071187289431691,-0.010420249775052]],[[-0.11633476614952,0.053541045635939,-0.08893309533596],[0.067241199314594,-0.017675502225757,-0.020188393071294],[0.12133448570967,-0.11560057848692,0.0044636917300522]],[[0.13408467173576,0.028545977547765,-0.01384857762605],[0.077997401356697,0.1731611341238,-0.12565504014492],[0.13445921242237,-0.083333536982536,-0.13331566751003]],[[-0.03605717793107,0.025704313069582,-0.027324521914124],[-0.0055402028374374,-0.036000728607178,0.08222172409296],[-0.087482057511806,0.019568368792534,-0.0068729952909052]],[[-0.085341453552246,-0.10173108428717,-0.01067091152072],[-0.041209362447262,-0.080151118338108,0.090630270540714],[0.017717776820064,0.085636921226978,0.016929222270846]],[[-0.018734198063612,0.041521281003952,0.12992329895496],[0.067469760775566,-0.045885931700468,-0.028685323894024],[-0.059989023953676,0.0082366149872541,0.022579248994589]],[[0.017045417800546,-0.035185322165489,-0.06649636477232],[-0.021722055971622,0.0090514179319143,-0.1151263192296],[0.056141924113035,-0.12250711023808,-0.055513024330139]],[[-0.20031008124352,0.057555355131626,0.049238655716181],[0.16689872741699,0.079599760472775,0.04001409932971],[0.070656165480614,0.015277996659279,-0.077001050114632]]],[[[0.036265883594751,0.058403752744198,0.066833212971687],[-0.037654954940081,-0.034070305526257,0.02229599840939],[-0.080927819013596,-0.050839532166719,-0.034227628260851]],[[-0.078022263944149,0.045925438404083,-0.022182215005159],[0.042729794979095,-0.016558147966862,-0.029109183698893],[-0.054595708847046,0.050983037799597,0.056681711226702]],[[-0.026761472225189,0.071072190999985,-0.010766604915261],[0.074115455150604,0.049736015498638,0.037725400179625],[-0.13011656701565,-0.075004898011684,0.0232202000916]],[[-0.016121895983815,0.045828256756067,-0.077589854598045],[-0.021405691280961,0.017886886373162,0.061371356248856],[-0.053616710007191,-0.011039420031011,0.050809182226658]],[[-0.021491643041372,0.0241121891886,0.046424955129623],[-0.021677915006876,-0.011485508643091,0.0453613512218],[-0.0404900200665,0.055053558200598,-0.07658763229847]],[[0.013601296581328,-0.0077790813520551,0.050786048173904],[-0.02433916926384,-0.013899926096201,0.025397133082151],[0.0023238712456077,-0.038541074842215,-0.012231103144586]],[[0.0066851158626378,0.014103644527495,0.0069842548109591],[0.03995318338275,0.03091699257493,-0.082907125353813],[-0.03994969651103,-0.028022825717926,0.05264151468873]],[[-0.031267911195755,-0.010003136470914,-0.03337175771594],[-0.027262020856142,-0.044881153851748,-0.028816977515817],[0.039960671216249,0.0017135940724984,0.13372866809368]],[[-0.00031586503610015,-0.11360505968332,-0.091132998466492],[-0.011339583434165,-0.098613515496254,-0.079360820353031],[-0.027563577517867,-0.15382923185825,0.035858456045389]],[[0.0075727659277618,-0.0065439455211163,0.01073573436588],[-0.048464808613062,-0.05041029304266,0.058056857436895],[-0.041245575994253,0.031289882957935,0.049193520098925]],[[-0.023056238889694,0.031217178329825,-0.033221147954464],[0.024667091667652,0.030797209590673,-0.0058690514415503],[-0.04238273203373,0.012136853300035,0.0072836126200855]],[[0.010296182706952,0.040253974497318,0.0048555438406765],[-0.10280930995941,-0.021775782108307,0.070953562855721],[0.097402289509773,-0.098411865532398,0.0060764355584979]],[[-0.047139767557383,-0.054124534130096,0.051009979099035],[0.033068884164095,0.031420025974512,-0.081161417067051],[0.0042570228688419,0.043790571391582,0.017674775794148]],[[-0.04925586655736,0.07339845597744,-0.038433477282524],[-0.0042911218479276,0.028428263962269,-0.077119648456573],[0.0074747540056705,0.037756536155939,0.018520038574934]],[[0.010257326066494,-0.030148869380355,-0.0064777201041579],[-0.01670241355896,0.073753289878368,0.055438663810492],[-0.054335311055183,-0.027958316728473,-0.03470216691494]],[[-0.013390593230724,-0.010620925575495,0.021999029442668],[-0.0019952352158725,-0.035486850887537,0.019149785861373],[0.063744269311428,0.012430212460458,-0.051989823579788]],[[-0.0045921001583338,0.0070885135792196,-0.032978024333715],[0.007540512830019,0.04400947317481,0.00093591376207769],[-0.068679012358189,0.064378008246422,-0.0031515657901764]],[[0.032670464366674,0.021367367357016,-0.0030465133022517],[-0.042789719998837,0.015735993161798,-0.0019964866805822],[-0.0051006395369768,-0.006674041505903,-0.013894901610911]],[[0.077318266034126,-0.02002484165132,0.00517388433218],[-0.025264477357268,0.043443601578474,0.0013943398371339],[0.010325602255762,-0.11700049042702,0.038541074842215]],[[0.030330026522279,-0.039559848606586,0.041386742144823],[-0.050945207476616,-0.17671692371368,0.07514750957489],[0.046237252652645,0.099022306501865,-0.039888069033623]],[[0.014747424982488,-0.01773221231997,0.0013296219985932],[-0.00071115902392194,0.014925920404494,-0.042141951620579],[0.013188634067774,-0.032183147966862,0.048274617642164]],[[-0.062113497406244,0.065489359200001,0.1118269264698],[0.04075550287962,-0.056841518729925,-0.056698027998209],[-0.036195635795593,-0.0057902242988348,0.0040540159679949]],[[0.013516431674361,0.0031369843054563,0.0053005171939731],[-0.0014754686271772,0.005181236192584,-0.022703323513269],[-0.023874206468463,-0.010074171237648,0.031627614051104]],[[0.014158962294459,-0.098064281046391,0.012983125634491],[-0.012177638709545,-0.036293968558311,0.027128625661135],[-0.0054477010853589,0.073182538151741,0.016174918040633]],[[0.094335749745369,0.11383105814457,-0.07523638010025],[-0.055634193122387,-0.00060339830815792,-0.059693239629269],[-0.045780304819345,0.042268004268408,-0.012329640798271]],[[-0.030336484313011,-0.0035910778678954,-0.00035827988176607],[0.04385794326663,0.064295664429665,-0.015858430415392],[0.0013355328701437,-0.05077600851655,-0.012919272296131]],[[-0.033905882388353,0.010724681429565,0.0080227265134454],[0.073664791882038,-0.024742471054196,-0.0034162374213338],[-0.049952261149883,0.031435336917639,-0.045966453850269]],[[-0.05476862564683,0.044488321989775,-0.053143821656704],[-0.0032132668420672,0.032914724200964,0.00042890332406387],[-0.0060604712925851,0.025583148002625,0.015695488080382]],[[-1.3368745385378e-05,0.07170756906271,-0.046202108263969],[-0.021888392046094,-0.064285233616829,0.070860020816326],[-0.011583616957068,0.011746499687433,-0.012845625169575]],[[0.030311895534396,0.010045573115349,-0.0099110910668969],[-0.035852607339621,-0.014960257336497,-0.024926491081715],[-0.0039282264187932,0.019373001530766,0.025754004716873]],[[-0.11764498054981,-0.073878675699234,0.089806705713272],[0.066477999091148,-0.079729504883289,0.060829821974039],[0.083106152713299,0.044675413519144,-0.067613676190376]],[[-0.016786128282547,-0.01548792142421,-0.039239823818207],[0.02426216378808,-0.062096759676933,0.056035801768303],[0.069289490580559,0.0063811321742833,-0.027475729584694]],[[0.0084619261324406,0.037337347865105,-0.020032422617078],[-0.03918618708849,-0.022197544574738,0.030835812911391],[-0.0099678533151746,0.060150820761919,-0.051228065043688]],[[-0.070403344929218,0.039168875664473,0.042423151433468],[-0.038734115660191,0.085042975842953,-0.066584773361683],[-0.036837678402662,-0.040373545140028,0.069052003324032]],[[0.034258473664522,0.016396436840296,0.050934229046106],[-0.10100225359201,-0.0011883465340361,-0.06453350931406],[0.086971335113049,0.031612444669008,-0.050823375582695]],[[0.058547396212816,0.052135687321424,0.072094112634659],[-0.095988385379314,-0.076038338243961,0.081555992364883],[0.02191998064518,-0.10858484357595,-0.0046156197786331]],[[-0.015647603198886,0.016765980049968,0.011743313632905],[-0.048795033246279,-0.0072515313513577,0.1134404540062],[0.01255533285439,0.014661812223494,-0.094375930726528]],[[-0.048484604805708,0.0149259082973,0.019590789452195],[0.018348898738623,0.06801800429821,-0.042347680777311],[-0.019886344671249,0.04142339900136,-0.037998836487532]],[[0.046767022460699,-0.088149607181549,0.046599440276623],[0.0093803498893976,0.010077147744596,-0.08362190425396],[-0.03437852486968,0.067331545054913,0.047931008040905]],[[-0.070333711802959,0.00047299906145781,0.0088608162477612],[0.098503924906254,-0.082374505698681,0.049929741770029],[-0.031057676300406,-0.048933435231447,0.075583919882774]],[[-0.0061652739532292,-0.035380676388741,0.030826848000288],[-0.089150980114937,0.010747876018286,0.032253362238407],[-0.02508433163166,0.091648943722248,-0.0037884407211095]],[[0.0038753391709179,-0.021169692277908,0.003813429037109],[0.013441283255816,-5.0539434596431e-05,-0.021843541413546],[0.1267818659544,-0.077374279499054,-0.035176210105419]],[[-0.0020683645270765,-0.033247672021389,0.040022827684879],[0.12364851683378,-0.031098950654268,0.012335132807493],[-0.070801876485348,-0.033357139676809,0.0015323916450143]],[[0.041827902197838,0.039939224720001,0.071393199265003],[0.17869871854782,0.0084827952086926,0.1280192732811],[0.076469466090202,0.14316336810589,0.05752019956708]],[[0.035283878445625,0.045865684747696,0.008177574723959],[0.0070550115779042,-0.088304117321968,-0.0028744132723659],[0.0099503863602877,0.00890510994941,-0.030178291723132]],[[-0.01754892244935,0.037486165761948,0.001518334960565],[-0.043182279914618,-0.055759102106094,0.0014190850779414],[0.023433899506927,0.021608838811517,0.028469383716583]],[[0.020114412531257,0.077053651213646,-0.0090087661519647],[0.050464488565922,-0.00664131809026,-0.054864693433046],[0.055064287036657,-0.11748103052378,-0.019046425819397]],[[0.0034959656186402,0.021413216367364,-0.018189517781138],[-0.021536886692047,0.097319155931473,-0.07816156744957],[0.0058471886441112,0.046158686280251,-0.052747529000044]],[[-0.0050534810870886,0.012098508886993,-0.0039835823699832],[-0.013666560873389,-0.081360220909119,0.078614071011543],[0.090457744896412,-0.04570510238409,-0.025118783116341]],[[0.0047478633932769,0.047366078943014,-0.0029131232295185],[-0.014381166547537,0.0051026828587055,-0.0030764120165259],[-0.011062198318541,0.020037032663822,-0.055719297379255]],[[0.021820427849889,0.052988324314356,0.011999962851405],[-0.051829945296049,-0.073505192995071,0.01532828528434],[0.038131158798933,-0.044277582317591,0.024155559018254]],[[-0.0074832919053733,0.031312223523855,0.018271384760737],[-0.04540142044425,0.046637903898954,-0.015875754877925],[0.0091794431209564,-0.014471382834017,-0.02955542691052]],[[0.071573346853256,-0.018191115930676,-0.0073946788907051],[-0.010378097184002,-0.028962919488549,-0.007233795709908],[-0.00010126580309588,-0.06320795416832,0.097632102668285]],[[0.001067285425961,0.047236405313015,-0.026834711432457],[0.0074885785579681,-0.01050410605967,-0.029402144253254],[0.0019460865296423,0.010945770889521,-0.0027680492494255]],[[0.023458739742637,-0.015508721582592,0.011570438742638],[0.064421020448208,-0.091501593589783,-0.027816029265523],[0.026539316400886,0.04751206189394,-0.044161342084408]],[[-0.023140160366893,0.11227427423,-0.070053778588772],[0.036549381911755,-0.0036061345599592,-0.043953936547041],[-0.031421821564436,0.021858546882868,-0.014192170463502]],[[0.16298301517963,-0.098015613853931,0.0023957868106663],[0.069655783474445,0.093632020056248,-0.13527971506119],[-0.075724333524704,0.0058898092247546,-0.051343947649002]],[[-0.050328902900219,0.02727834880352,0.049930073320866],[0.064757138490677,-0.05388643220067,-0.030026959255338],[-0.035428419709206,0.011683996766806,0.011182171292603]],[[-0.0098161492496729,-0.042626559734344,0.040008060634136],[-0.021429002285004,-0.039839413017035,-0.12490447610617],[0.10252576321363,0.0085992068052292,0.042032606899738]],[[0.0097615411505103,-0.04859409853816,0.063142880797386],[0.075908161699772,-0.0046807448379695,-0.025216486304998],[0.0047709625214338,-0.053592909127474,-0.022541703656316]],[[0.00303197465837,-0.035595215857029,0.021329388022423],[-0.033416200429201,0.13122379779816,-0.03760302066803],[0.007993046194315,-0.053226202726364,0.0042323474772274]],[[0.034159604460001,0.034900460392237,-0.089435949921608],[0.0097702462226152,-0.0089031048119068,0.0085036316886544],[-0.033432312309742,-0.034673012793064,0.076369985938072]],[[0.077721506357193,-0.098219484090805,0.033718097954988],[-0.039158325642347,0.00096830690745264,0.031286470592022],[0.02084619179368,0.01284809038043,-0.030425200238824]],[[0.039718478918076,0.020298760384321,0.0047944788821042],[-0.046239782124758,-0.089616723358631,0.0015047916676849],[0.022340353578329,0.061762642115355,-0.0085382042452693]]],[[[-0.08435021340847,0.080845005810261,0.042008448392153],[-0.07169846445322,-0.018261533230543,-0.14305686950684],[0.048355344682932,-0.047843635082245,0.027902700006962]],[[-0.0035054259933531,-0.12303845584393,-0.10439333319664],[0.080738879740238,0.024162018671632,-0.034809894859791],[-0.0046141496859491,0.16652452945709,0.17545121908188]],[[0.069708116352558,0.065039291977882,-0.020226573571563],[-0.046304862946272,0.049747064709663,0.0092732775956392],[-0.053505826741457,0.046189546585083,-0.04908699542284]],[[-0.068777807056904,0.10146363079548,0.078241027891636],[0.074740596115589,0.0019730611238629,-0.081107787787914],[0.039841916412115,0.069551706314087,-0.058676145970821]],[[-0.064795449376106,-0.043855730444193,-0.040843568742275],[-0.024829652160406,0.062054082751274,0.13370279967785],[-0.042086888104677,-0.03031937032938,0.059989586472511]],[[0.060349944978952,0.022825488820672,0.052978347986937],[-0.040766227990389,-0.06743448972702,-0.022979533299804],[0.086697101593018,0.0028112065047026,-0.0035051505547017]],[[0.12467855960131,0.090348832309246,0.055390276014805],[0.095377415418625,-0.0099105322733521,-0.021494532003999],[-0.1435928195715,-0.13272798061371,-0.34311267733574]],[[-0.028363142162561,0.012958163395524,-0.071383073925972],[0.014980142004788,0.033355593681335,0.013357819989324],[-0.019690660759807,0.17457844316959,-0.095530137419701]],[[0.0038309635128826,-0.078911706805229,0.029970239847898],[-0.00043414472020231,-0.0071013211272657,0.11992289870977],[-0.0081251226365566,-0.0061479602009058,-0.028840625658631]],[[0.019742656499147,-0.042285282164812,0.020771050825715],[0.076762527227402,-0.052312038838863,-0.18006551265717],[0.015396962873638,-0.14300383627415,-0.07758517563343]],[[-0.062682174146175,-0.035270873457193,-0.06207300722599],[-0.042640615254641,0.15785007178783,0.0074431165121496],[0.094515852630138,-0.031207298859954,0.070561893284321]],[[0.16789756715298,-0.2061325609684,-0.1948943734169],[0.089013911783695,-0.29342380166054,-0.084326200187206],[-0.031760711222887,-0.0008833299507387,0.094682797789574]],[[0.057063568383455,0.12195447087288,-0.083824969828129],[0.017841013148427,0.059678923338652,-0.11117867380381],[0.075672812759876,-0.059774529188871,-0.027865201234818]],[[0.013943656347692,-0.071965709328651,-0.12873478233814],[0.1073502600193,-0.0084456857293844,0.0047750556841493],[0.020037725567818,0.10458236932755,0.025140829384327]],[[-0.01439562253654,0.017523786053061,0.096216529607773],[0.021727565675974,-0.056869626045227,-0.044721633195877],[-0.030814504250884,-0.0083127031102777,0.10270941257477]],[[0.089431591331959,0.0077440934255719,0.10021543502808],[0.032115623354912,0.050317924469709,-0.049201186746359],[-0.075136847794056,0.025827571749687,0.098205618560314]],[[-0.022739944979548,0.03296360000968,0.078088507056236],[0.036670506000519,-0.034024395048618,0.046727102249861],[-0.07511643320322,-0.053796704858541,-0.083871051669121]],[[-0.091631717979908,-0.010946471244097,-0.09847928583622],[-0.042321376502514,0.044697519391775,0.14835035800934],[-0.072842262685299,0.0097845736891031,-0.029160866513848]],[[0.082915961742401,-0.11520749330521,-0.056281622499228],[0.042312182486057,-0.054974511265755,0.020191874355078],[0.059667982161045,-0.081363655626774,-0.058931794017553]],[[-0.036873061209917,0.060789655894041,-0.19854003190994],[-0.07301127910614,-0.068171359598637,0.0397541038692],[0.14556302130222,0.11981400102377,0.238755017519]],[[0.076461903750896,-0.085550412535667,0.069734804332256],[-0.063640989363194,0.050311248749495,-0.011279792524874],[-0.10534252226353,0.037107020616531,-0.0316032320261]],[[-0.026993505656719,0.1889765560627,0.13350202143192],[-0.072721362113953,-0.043589513748884,-0.016537986695766],[-0.016763532534242,-0.035767763853073,-0.18894191086292]],[[-0.12332624942064,-0.019492445513606,-0.12509985268116],[-0.06458730250597,0.062708482146263,-0.08769465982914],[0.078621469438076,-0.053163416683674,0.056644175201654]],[[0.01977764070034,-0.038243860006332,0.033434569835663],[0.036946799606085,-0.15006142854691,-0.14940120279789],[-0.049598388373852,-0.15974450111389,-0.13301494717598]],[[-0.047786690294743,-0.018331771716475,-0.0013202074915171],[-0.042783364653587,0.08048902451992,-0.039475582540035],[0.1125829666853,-0.0092048579826951,0.10944416373968]],[[0.027260355651379,0.066532216966152,-0.070693358778954],[0.074903219938278,0.072409026324749,-0.055369969457388],[0.016436150297523,-0.071168296039104,-0.20443384349346]],[[0.13687072694302,0.070753753185272,-0.1662845313549],[0.0028193893376738,-0.073523633182049,-0.080573655664921],[-0.019663227722049,-0.015228198841214,-0.12999442219734]],[[-0.14330819249153,-0.019382249563932,-0.030292062088847],[0.00059928168775514,-0.15432508289814,-0.024051791056991],[-0.068297691643238,0.057603426277637,0.3597309589386]],[[0.043539840728045,-0.093213900923729,0.026644354686141],[0.0388458147645,0.064152926206589,-0.0056563206017017],[0.041249256581068,-0.00031962335924618,-0.12762509286404]],[[0.020820237696171,0.10045927762985,0.0071902382187545],[-0.02864932641387,-0.15505076944828,-0.073884703218937],[-0.073124222457409,-0.11279161274433,-0.028994932770729]],[[-0.14076554775238,-0.070195145905018,-0.22121983766556],[0.070933647453785,-0.0018572107655928,-0.013280531391501],[0.13042432069778,-0.011128844693303,0.20859631896019]],[[0.064171738922596,-0.083682648837566,-0.088053874671459],[-0.0040646204724908,-0.049285791814327,0.063239581882954],[0.18753841519356,0.017105095088482,0.10125806182623]],[[-0.025016747415066,0.019765947014093,0.060134299099445],[-0.051204446703196,0.011705267243087,0.10357878357172],[0.073046997189522,-0.11155468970537,-0.051466960459948]],[[-0.0316430516541,-0.062357753515244,-0.026134688407183],[-0.061425283551216,-0.03063278645277,0.033235751092434],[0.068351119756699,-0.082511410117149,0.012518261559308]],[[-0.015898475423455,0.084500133991241,-0.059831082820892],[-0.054374702274799,-0.057507030665874,-0.10003868490458],[0.14566445350647,0.082691438496113,-0.098946258425713]],[[0.0069323028437793,-0.19566123187542,-0.020605653524399],[0.088028222322464,-0.024653058499098,-0.029443399980664],[-0.042680229991674,0.013671386986971,0.0093154096975923]],[[0.066209480166435,0.0052994694560766,0.078378230333328],[0.020177204161882,0.11450032889843,0.01757855899632],[-0.034592024981976,-0.085903413593769,-0.21020038425922]],[[-0.035166695713997,0.014456982724369,-0.057146850973368],[0.086732305586338,0.055764749646187,-0.034315012395382],[0.04187174513936,0.096298173069954,0.12225264310837]],[[0.11889858543873,0.0019346373155713,-0.08746463060379],[0.04014004394412,-0.13735154271126,0.0081632863730192],[-0.027443025261164,-0.046824779361486,0.22419704496861]],[[-0.023208511993289,0.017973765730858,-0.031642787158489],[0.098857313394547,-0.005666327662766,-0.16187331080437],[-0.07599650323391,-0.02767600491643,0.09077326208353]],[[-0.0050630224868655,-0.15569213032722,-0.049031920731068],[0.0040707178413868,-0.0031255003996193,0.021078316494823],[-0.028066899627447,-0.024416102096438,0.093469381332397]],[[0.071620307862759,-0.012228564359248,-0.11542718857527],[-0.0014456142671406,0.057354055345058,0.0059223682619631],[-0.026731450110674,0.17142350971699,0.093819603323936]],[[-0.030681360512972,0.09099605679512,-0.019788293167949],[0.040675785392523,0.12303360551596,-0.089580126106739],[-0.035165145993233,-0.0730836763978,0.034177105873823]],[[0.063165716826916,0.016105523332953,0.019629856571555],[-0.0089920209720731,-0.025276187807322,-0.019983176141977],[0.035803854465485,-0.11311346292496,0.044707112014294]],[[0.16988354921341,-0.023381795734167,-0.017490491271019],[0.056013695895672,-0.0024187143426389,-0.025421848520637],[-0.091540887951851,-0.18066483736038,-0.017975008115172]],[[0.027056174352765,0.084529086947441,-0.094119593501091],[0.039199437946081,0.039067529141903,-0.045559875667095],[-0.050331979990005,0.062678560614586,-0.076500028371811]],[[-0.054179392755032,-0.057049568742514,-0.092837505042553],[-0.0049094241112471,0.17336969077587,0.13429981470108],[0.006004408467561,0.077223554253578,-0.21035024523735]],[[0.0062222206033766,-0.10714073479176,0.16058920323849],[0.014039388857782,-0.02741258777678,0.024382127448916],[0.00061518960865214,-0.0068836314603686,-0.10797916352749]],[[-0.10580517351627,-0.074580006301403,0.11692930757999],[0.007231330499053,0.033327620476484,0.031050655990839],[0.034531630575657,-0.067198909819126,0.13548466563225]],[[0.0083204703405499,0.16202813386917,-0.05051189661026],[-0.05241858959198,0.10462020337582,0.048556134104729],[0.10182692110538,0.037271019071341,-0.047012757509947]],[[0.083763629198074,0.023842349648476,-0.031294047832489],[-0.070271521806717,-0.085405059158802,-0.074586644768715],[0.0965171828866,0.058318220078945,-0.15948839485645]],[[-0.015720473602414,-0.0013141782255843,0.074081502854824],[0.013113467022777,-0.017426433041692,-0.1499255001545],[0.0021750836167485,0.044971615076065,0.075103014707565]],[[0.13422602415085,0.034167893230915,0.099881142377853],[-0.035622652620077,-0.065446771681309,0.099065266549587],[-0.1496195346117,-0.021690346300602,-0.07622592151165]],[[-0.055099066346884,0.071968898177147,0.022733708843589],[0.025688268244267,0.09659930318594,0.11512486636639],[-0.058129385113716,-0.0959617421031,-0.014539105817676]],[[0.053453847765923,-0.075012564659119,0.11152544617653],[-0.043587274849415,-0.096715047955513,-0.0013387383660302],[-0.096453107893467,-0.11732166260481,-0.052454262971878]],[[0.0081495027989149,0.11699019372463,0.060617197304964],[-0.040504947304726,0.043032206594944,0.024995040148497],[-0.0156629383564,0.12319812178612,0.091898761689663]],[[-0.086593478918076,-0.12182246148586,-0.010230377316475],[0.052066326141357,0.022730959579349,0.09332101047039],[0.032467816025019,0.13376778364182,0.16088218986988]],[[-0.092654280364513,0.040300238877535,0.051648829132318],[-0.17866399884224,-0.053183790296316,0.12136191129684],[0.047527637332678,-0.061064280569553,0.087317422032356]],[[-0.11267443746328,-0.058986131101847,0.13241058588028],[-0.071688421070576,0.081150330603123,0.20147626101971],[0.054294027388096,0.076447010040283,0.10884452611208]],[[-0.086200453341007,0.047223914414644,0.081866398453712],[-0.13142350316048,0.14135849475861,0.082255356013775],[-0.064185693860054,-0.0052183587104082,-0.060569599270821]],[[0.10711514949799,0.029379734769464,0.066777870059013],[0.020809050649405,-0.01649185270071,0.043729428201914],[-0.1124282181263,-0.00068935344461352,0.047639038413763]],[[0.023700693622231,-0.0071552828885615,0.067756406962872],[-0.0040507442317903,0.02857961319387,-0.062383275479078],[-0.13934518396854,0.034870766103268,0.031724639236927]],[[0.027463981881738,-0.0635636895895,0.12438871711493],[-0.0017793296137825,0.0065940017811954,0.056619998067617],[0.027620447799563,-0.062862448394299,-0.049875158816576]],[[-0.23132275044918,-0.11761552840471,-0.0072979270480573],[-0.029454244300723,-0.051185816526413,0.23437866568565],[-0.025234010070562,0.23976975679398,0.10651699453592]]],[[[0.10476516187191,-0.012995078228414,-0.021003913134336],[0.04658879712224,-0.021913969889283,-0.061200957745314],[0.0048767030239105,0.12640875577927,0.071179270744324]],[[-0.011928221210837,0.026191029697657,0.059771157801151],[0.021990977227688,0.051245797425508,-0.018437659367919],[0.066961482167244,0.14327728748322,-0.094146743416786]],[[0.02171434648335,0.041786473244429,0.01439780369401],[0.087380960583687,-0.088680237531662,0.0088220676407218],[-0.24867804348469,-0.029925644397736,0.023377314209938]],[[-0.1529770642519,0.0079665742814541,-0.14767348766327],[0.019158927723765,-0.0022467677481472,0.042131416499615],[-0.018662353977561,-0.18001073598862,-0.051637265831232]],[[0.050876572728157,-0.058757331222296,0.10925376415253],[-0.0044447262771428,-0.091673001646996,0.062200952321291],[-0.014365202747285,0.037075806409121,0.020081095397472]],[[-0.0074849976226687,-0.00018326018471271,-0.087554015219212],[0.023148098960519,0.050146795809269,0.0016790595836937],[-0.15729880332947,-0.029196817427874,-0.058822616934776]],[[-0.064723089337349,0.00085828109877184,-0.0086121344938874],[-0.017809461802244,-0.12435682117939,-0.14414390921593],[0.017732234671712,0.12552744150162,-0.003624151693657]],[[-0.071038939058781,-0.021058328449726,0.16763392090797],[-0.0082717705518007,-0.044533837586641,-0.037824980914593],[-0.077548205852509,-0.20269566774368,-0.060700736939907]],[[-0.064216397702694,-0.15518519282341,-0.05291535332799],[-0.00036682770587504,-0.027308709919453,0.031982988119125],[0.056723643094301,0.034507986158133,0.096384316682816]],[[-0.030727351084352,-0.12523011863232,-0.072028458118439],[-0.057618666440248,-0.12367810308933,-0.075341857969761],[-0.089701764285564,-0.15175057947636,-0.13457837700844]],[[-0.035944610834122,-0.0045096124522388,0.068547442555428],[0.030971609055996,0.00559176877141,-0.068980507552624],[-0.054337672889233,-0.13073712587357,-0.068675510585308]],[[-0.038556158542633,-0.006449899636209,-0.026813581585884],[-0.11380124092102,0.12019719928503,-0.15198183059692],[0.040026616305113,-0.047186147421598,0.015285681001842]],[[-0.075634621083736,-0.14026406407356,-0.056605990976095],[-0.0017539514228702,0.08302965015173,-0.06574110686779],[-0.067097179591656,-0.096108943223953,-0.076055742800236]],[[-0.031147113069892,-0.055066611617804,0.074895411729813],[0.017556576058269,-0.048709891736507,0.12326619029045],[-0.057085070759058,-0.049766309559345,0.056472312659025]],[[-0.013266914524138,-0.037237625569105,0.12784172594547],[0.0052031110972166,-0.019141947850585,-0.10795432329178],[0.10966844856739,0.05304167047143,0.007485774345696]],[[-0.01438938267529,-0.13760723173618,-0.0091061685234308],[-0.049748711287975,0.10560949146748,0.077140279114246],[-0.042284514755011,0.018019063398242,-0.021732373163104]],[[0.10423317551613,0.026732180267572,0.075097315013409],[0.012493169866502,0.055172774940729,0.0025159972719848],[-0.063083603978157,-0.070725850760937,0.046971887350082]],[[0.12579871714115,-0.10645395517349,0.050846919417381],[-0.0083908410742879,-0.0090428935363889,-0.030515203252435],[-0.031831558793783,0.0063882167451084,-0.043637033551931]],[[-0.084807924926281,-0.068277321755886,0.0093424245715141],[0.1028441414237,-0.024003181606531,0.11829247325659],[0.053930044174194,0.050667490810156,-0.073898173868656]],[[-0.086350508034229,-0.11678508669138,0.045554663985968],[-0.0343660376966,0.16169515252113,0.11310859024525],[-0.054425362497568,0.030040595680475,0.036331783980131]],[[0.056428376585245,-0.065168082714081,-0.019041072577238],[-0.079650387167931,0.071612320840359,0.0096754673868418],[-0.05986487492919,0.11994005739689,-0.021131666377187]],[[-0.036529373377562,0.13192568719387,0.14244724810123],[-0.032532893121243,-0.03272720053792,0.087869346141815],[-0.069926969707012,-0.0046096094883978,0.058986347168684]],[[0.059728071093559,-0.051100138574839,0.14236590266228],[-0.01885480247438,-0.0020681053865701,-0.058361303061247],[0.062186893075705,0.093585066497326,-0.059029310941696]],[[0.0097969546914101,-0.065733812749386,-0.039167828857899],[0.02085692808032,0.0016136075137183,-0.081060491502285],[-0.0097793946042657,-0.04424461722374,-0.029004663228989]],[[-0.065705440938473,0.03148390725255,0.16368737816811],[-0.027105821296573,-0.057784669101238,0.050884217023849],[0.01400095038116,0.032501820474863,0.047939654439688]],[[-0.0509541220963,-0.074365250766277,0.047743156552315],[-0.12988701462746,-0.099094353616238,-0.096206344664097],[-0.033651128411293,0.11766563355923,0.020595284178853]],[[0.051067166030407,0.021672105416656,0.089251615107059],[-0.21326567232609,-0.07304073870182,0.050960496068001],[0.028113311156631,0.061562966555357,-0.067936033010483]],[[0.058857150375843,-0.048199702054262,-0.01555753685534],[0.022451346740127,0.058015752583742,-0.013912851922214],[-0.017211001366377,-0.051714994013309,0.038703516125679]],[[-0.046658363193274,0.054377391934395,0.011389545165002],[-0.016315780580044,-0.22024513781071,0.14184604585171],[0.0085496231913567,-0.038169272243977,-0.07082249969244]],[[-0.021413587033749,-0.025372214615345,0.015716740861535],[-0.057170864194632,-0.051045142114162,0.0022182397078723],[-0.048957463353872,-0.052940502762794,-0.09881953150034]],[[-0.088774129748344,-0.098630994558334,0.08263061195612],[-0.15204876661301,-0.13736806809902,-0.097950987517834],[0.095410279929638,0.023058257997036,0.11984075605869]],[[-0.032307211309671,0.0060557117685676,-0.022089771926403],[-0.078338623046875,-0.007497479673475,-0.033915136009455],[-0.085888035595417,-0.046726383268833,-0.0085157649591565]],[[0.15338839590549,-0.11146458238363,-0.03758492320776],[0.013232351280749,-0.094117201864719,0.016863904893398],[-0.051501303911209,-0.063709191977978,-0.02335112541914]],[[-0.014316750690341,-0.12168548256159,0.076414600014687],[-0.092531122267246,-0.1486179381609,0.0085610318928957],[0.076385788619518,-0.032619822770357,0.0028988358099014]],[[0.022806355729699,0.03339109569788,-0.00014625888434239],[0.0090630138292909,-0.022869424894452,-0.10718107968569],[-0.10151214152575,0.026151547208428,0.025375701487064]],[[0.11219243705273,-0.01200280431658,0.030012052506208],[-0.053224585950375,-0.18576417863369,-0.048892550170422],[0.04860982298851,-0.0019368624780327,0.017499461770058]],[[0.036870967596769,-0.069443322718143,-0.033082790672779],[-0.031913932412863,-0.028367200866342,-0.071756534278393],[0.13384753465652,-0.0062298052944243,0.029673483222723]],[[-0.052394438534975,-0.080739937722683,-0.087985411286354],[0.0091851986944675,0.091906800866127,0.040030848234892],[0.019023867323995,0.062338784337044,-0.089050658047199]],[[0.093201376497746,-0.052176937460899,0.056955471634865],[-0.090469755232334,-0.096180498600006,-0.00011430091399234],[-0.11722102016211,-0.082391053438187,0.0090458504855633]],[[-0.12419347465038,0.030914736911654,-0.048555433750153],[-0.01931026391685,0.11336490511894,-0.068992704153061],[0.07067109644413,0.075222857296467,0.13978342711926]],[[-0.06309362500906,-0.041192974895239,-0.0023380659986287],[-0.24584959447384,0.0708879083395,0.020810127258301],[-0.080833300948143,-0.073706343770027,-0.035107053816319]],[[0.012034827843308,-0.0073726284317672,-0.041078992187977],[0.055983766913414,-0.099650487303734,0.030678221955895],[-0.19712546467781,-0.02192060276866,0.10446533560753]],[[0.0038821890484542,-0.0012611062265933,-0.019007848575711],[-0.032576929777861,0.1406431645155,-0.04564231261611],[0.042313940823078,0.081109374761581,-0.12210167199373]],[[0.20107039809227,0.099689960479736,-0.012704847380519],[-0.1112859621644,0.054017871618271,-0.051638834178448],[-0.017804738134146,-0.06152131035924,-0.10407391935587]],[[-0.046833898872137,0.027696518227458,-0.06596565246582],[-0.0040293554775417,0.033051893115044,0.014401832595468],[-0.10325794667006,-0.026920353993773,-0.071563228964806]],[[0.0098886759951711,-0.033410500735044,0.036271415650845],[-0.036935456097126,-0.12837791442871,-0.12290434539318],[-0.032870057970285,-0.058005858212709,-0.16303804516792]],[[0.0061968709342182,0.18067127466202,0.07680270075798],[0.039274096488953,-0.019108053296804,-0.045418549329042],[0.062836974859238,0.056160934269428,0.085159920156002]],[[0.036320328712463,-0.0011495526414365,-0.099194578826427],[-0.067903183400631,0.020443562418222,0.14153856039047],[-0.058523263782263,-0.10557819902897,0.0036795281339437]],[[0.0049075311981142,-0.089847303926945,0.0001904131640913],[0.037040457129478,-0.014444684609771,-0.053244214504957],[-0.13765351474285,-0.054681897163391,-0.0042886235751212]],[[0.019441016018391,-0.011404685676098,0.01138512045145],[-0.031685825437307,0.0073611931875348,0.039933878928423],[0.062923513352871,0.055130437016487,-0.038032460957766]],[[-0.0010294384555891,0.014226295053959,0.028328834101558],[-0.094505399465561,-0.071572601795197,-0.015414264053106],[0.02601058781147,-0.011972662061453,0.052031066268682]],[[-0.075083792209625,0.056881748139858,0.0075228018686175],[0.081473924219608,-0.037509616464376,-0.055671229958534],[0.0039671626873314,0.01910999789834,-0.11038958281279]],[[0.0852090716362,0.043010324239731,-0.14488483965397],[-0.076506540179253,-0.11181773990393,-0.16313289105892],[0.12262840569019,-0.068606473505497,-0.02758802101016]],[[-0.029522273689508,0.037980154156685,0.024430703371763],[-0.064420610666275,0.014710488729179,0.073704153299332],[0.00064275262411684,-0.011073883622885,-0.01592013426125]],[[0.042183168232441,-0.088141292333603,0.0031028131488711],[-0.028869781643152,-0.044724196195602,-0.091557554900646],[0.025554440915585,-0.03324618190527,-0.062154125422239]],[[0.021630328148603,-0.082402758300304,0.03361289203167],[0.0079517289996147,-0.085966281592846,-0.00062229367904365],[0.025006107985973,-0.0057040392421186,-0.048460528254509]],[[0.026367546990514,-0.0066203619353473,-0.077159017324448],[0.11630275845528,0.059468250721693,0.040119349956512],[-0.06437199562788,0.06688229739666,0.086328238248825]],[[-0.066791124641895,0.041724193841219,-0.085679791867733],[-0.011943708173931,-0.089334785938263,-0.010557316243649],[0.034760497510433,-0.013010941445827,0.0020229236688465]],[[-0.043424546718597,0.044783476740122,0.12736028432846],[-0.036319214850664,0.034810692071915,-0.022495290264487],[-0.033631812781096,0.12800669670105,0.035588763654232]],[[-0.026672041043639,0.13994188606739,0.085997708141804],[0.068275891244411,0.14862321317196,0.0071101551875472],[-0.037822660058737,-0.064044572412968,-0.014098194427788]],[[-0.053468026220798,-0.07706343382597,0.062563873827457],[-0.018876975402236,-0.092211842536926,-0.0087276296690106],[-0.05176343023777,0.030986802652478,-0.062967725098133]],[[0.076850816607475,0.017086155712605,-0.099894069135189],[-0.063156686723232,-0.10331143438816,-0.062238566577435],[-0.0026980673428625,0.038193814456463,-0.08122605830431]],[[0.10003942251205,-0.064181752502918,-0.049283511936665],[0.042349964380264,0.088129363954067,-0.028871243819594],[0.036297865211964,-0.00083959224866703,-0.08996307104826]],[[0.098422445356846,0.057973869144917,-0.0089408904314041],[-0.23925659060478,-0.012902007438242,-0.025266805663705],[-0.078846499323845,0.049552749842405,0.13948303461075]]],[[[-0.016757443547249,-0.065262526273727,0.11221595853567],[0.077341794967651,-0.070479139685631,0.025426596403122],[-0.035547561943531,0.0079552996903658,-0.075159810483456]],[[0.10207415372133,0.10650600492954,0.013943886384368],[0.024095010012388,0.12906193733215,-0.064865291118622],[-0.067992426455021,0.048109706491232,-0.15683208405972]],[[0.075954034924507,0.046792164444923,0.028066320344806],[0.029871409758925,-0.15139780938625,0.0051799365319312],[-0.15960077941418,-0.0148467393592,-0.11582740396261]],[[0.025920540094376,0.14803890883923,-0.10297322273254],[0.022975098341703,-0.24257385730743,-0.061485275626183],[-0.091236472129822,0.0086736688390374,0.15625496208668]],[[0.015082105994225,0.07430337369442,-0.022659217938781],[0.0011730226688087,0.012720914557576,-0.10977753996849],[0.09205300360918,-0.091005638241768,-0.059013403952122]],[[0.01443446520716,-0.00985505618155,-0.12316810339689],[-0.00034858428989537,-0.18318746984005,0.12616907060146],[-0.12173504382372,0.25871542096138,-0.038574762642384]],[[0.075497731566429,0.027756026014686,-0.050785526633263],[-0.016377247869968,-0.2312967479229,-0.012467486783862],[0.12668044865131,-0.060418948531151,-0.11471761763096]],[[0.065235882997513,-0.032206542789936,0.017240781337023],[-0.0017795551102608,0.009564770385623,-0.070403151214123],[0.14656345546246,-0.010215729475021,-0.063064455986023]],[[0.014123233035207,-0.096509538590908,0.055185228586197],[0.012446969747543,0.032423656433821,0.047706563025713],[0.069442957639694,-0.13140751421452,0.011053623631597]],[[-0.098896220326424,-0.14716017246246,-0.016466703265905],[-0.046755753457546,-0.068257577717304,0.0042275623418391],[-0.016226906329393,-0.12867800891399,0.051532953977585]],[[-0.03868667408824,0.046133071184158,0.1608595252037],[0.073375582695007,-0.0011722517665476,-0.007157338783145],[0.046464253216982,-0.21933221817017,-0.15450598299503]],[[-0.060995228588581,-0.19152237474918,-0.18251222372055],[-0.1578007787466,-0.019402025267482,0.15106472373009],[0.1304819136858,0.10435204207897,0.13889546692371]],[[0.083799228072166,0.12840209901333,0.038291200995445],[0.13111245632172,-0.16517367959023,-0.24845983088017],[-0.25190898776054,-0.02684298157692,0.051217958331108]],[[0.10786616802216,0.065476924180984,-0.057568039745092],[-0.015453221276402,0.013707200996578,0.075534835457802],[0.00040577526669949,-0.061803739517927,-0.16248093545437]],[[0.002316448604688,-0.10025700181723,0.031612105667591],[-0.10368514806032,-0.15382605791092,0.12365856021643],[0.068831592798233,-0.0051267873495817,-0.085479125380516]],[[-0.0090917078778148,-0.039094690233469,0.0087679764255881],[0.020306376740336,0.033553123474121,0.0084087522700429],[-0.018986547365785,0.021918479353189,-0.0065809772349894]],[[0.083850122988224,-0.031207652762532,0.00047512911260128],[0.081553533673286,-0.08135150372982,-0.0843136459589],[0.05189686268568,-0.012223983183503,-0.02433561719954]],[[-0.013260181993246,0.080369263887405,-0.031782615929842],[0.037072826176882,0.10255720466375,-0.039940435439348],[0.018814224749804,0.0038587558083236,-0.314966827631]],[[0.060954682528973,-0.01376942358911,-0.1662420630455],[-0.020080944523215,0.022956283763051,0.015563054941595],[-0.064750999212265,0.065929710865021,0.019169690087438]],[[0.083755992352962,0.026491586118937,0.12578150629997],[0.038193732500076,0.061691164970398,-0.012160652317107],[-0.064672954380512,0.097473695874214,0.16965082287788]],[[-0.026324786245823,0.11591314524412,0.056699991226196],[0.085904464125633,-0.065642230212688,-0.064602091908455],[-0.076832078397274,-0.010496800765395,-0.090515993535519]],[[0.20998764038086,-0.0090370383113623,-0.021487955003977],[-0.029050214216113,-0.13076142966747,-0.17031195759773],[-0.14471778273582,-0.19832763075829,-0.085236646234989]],[[0.16620302200317,-0.16527873277664,-0.040160857141018],[-0.18674868345261,-0.18493311107159,0.16326928138733],[0.074034661054611,0.025862799957395,0.11506781727076]],[[-0.043437529355288,0.013384645804763,-0.054270893335342],[0.073365725576878,-0.17808386683464,-0.031060039997101],[0.14494396746159,-0.049772713333368,0.021259024739265]],[[-0.039297714829445,-0.029870126396418,0.12103675305843],[-0.0045293346047401,-0.021932145580649,-0.12555338442326],[-0.037505932152271,-0.1205267906189,0.10405175387859]],[[0.0060918522067368,0.15287412703037,0.0047111613675952],[-0.19528429210186,0.18488991260529,-0.0918984785676],[-0.11606407165527,-0.00048748354311101,0.034525170922279]],[[0.10015425831079,-0.070928759872913,-0.00281289848499],[0.13861614465714,-0.19342768192291,-0.12968337535858],[-0.12380917370319,0.17499577999115,0.14218233525753]],[[0.033397622406483,-0.11962836235762,-0.11480838805437],[-0.1413552314043,-0.017724197357893,0.31209135055542],[-0.087395735085011,-0.022287840023637,0.22672620415688]],[[-0.089355282485485,0.099293798208237,0.089293166995049],[0.12523536384106,-0.13660681247711,-0.12492623180151],[-0.14096075296402,-0.1900898963213,-0.064419262111187]],[[0.066405817866325,0.079799354076385,0.021980715915561],[-0.026264328509569,-0.10824818909168,0.059115722775459],[-0.20822951197624,-0.064425952732563,0.022733015939593]],[[-0.061743352562189,0.084399819374084,-0.01804325543344],[-0.011998015455902,0.038151811808348,-0.010254015214741],[0.058279547840357,0.041764300316572,0.0081573566421866]],[[0.025823948904872,0.024227583780885,0.044976301491261],[0.0043854415416718,0.065999828279018,0.055758472532034],[-0.018982145935297,-0.0007937682676129,0.045377612113953]],[[-0.096613064408302,-0.080029293894768,0.11475479602814],[-0.070596441626549,0.019517155364156,-0.042116828262806],[-0.2913379073143,-0.14421556890011,0.20155107975006]],[[-0.11278385668993,0.031755644828081,-0.10068535804749],[0.0066782245412469,0.02290228754282,-0.0013870581751689],[0.10077860951424,-0.037005130201578,-0.044140238314867]],[[-0.0011676674475893,-0.044207759201527,0.017163434997201],[-0.051737308502197,-0.012425958178937,-0.0790741071105],[0.064811877906322,-0.059623777866364,0.14755468070507]],[[-0.045127712190151,-0.15773969888687,0.038290046155453],[-0.18269185721874,0.086634546518326,0.13092738389969],[0.062009334564209,0.031434286385775,-0.15214981138706]],[[0.030295696109533,-0.04745664820075,0.023448921740055],[0.020443420857191,0.022475546225905,0.041838742792606],[0.13135029375553,-0.027337871491909,3.3081108995248e-05]],[[0.010975239798427,-0.02274176850915,0.19881093502045],[0.093558005988598,-0.15647326409817,-0.13064865767956],[-0.25470831990242,-0.091407857835293,0.15878933668137]],[[0.017277076840401,-0.1082209944725,0.0070025916211307],[-0.037968125194311,0.072541989386082,-0.027297956869006],[0.12660379707813,-0.018532061949372,0.054363388568163]],[[0.06311197578907,0.040801301598549,-0.024921108037233],[0.011172820813954,-0.043745707720518,-0.044252004474401],[0.012061590328813,0.00023829002748244,-0.04831226542592]],[[-0.062538370490074,-0.0091973785310984,0.17550614476204],[-0.037859566509724,-0.030392238870263,-0.099722012877464],[-0.049327090382576,0.065307758748531,0.086090162396431]],[[0.0089969169348478,0.083707004785538,0.024836517870426],[0.064783476293087,-0.13828238844872,0.0055734529159963],[-0.25768488645554,-0.042797327041626,0.072146512567997]],[[0.077200509607792,0.070762358605862,0.0039150365628302],[0.058114521205425,0.092421136796474,-0.10354359447956],[0.036115236580372,-0.14540942013264,-0.20263177156448]],[[0.0093993786722422,-0.014399768784642,0.01170470379293],[-0.025248287245631,-0.019005563110113,0.022716736420989],[-0.039721038192511,0.11259813606739,-0.038397934287786]],[[-0.1223653331399,-0.055225942283869,0.037759710103273],[0.0013246537419036,0.064467735588551,-0.11474218964577],[-0.002535768551752,-0.15916411578655,0.047216925770044]],[[-0.013105911202729,0.026363372802734,-0.059783071279526],[-0.063237942755222,0.041707817465067,0.20986001193523],[-0.060795430094004,0.04620348289609,0.0071924272924662]],[[0.024451104924083,0.080048516392708,-0.058500178158283],[0.04748810082674,-0.056718029081821,-0.018108360469341],[-0.025793140754104,-0.16884200274944,-0.12905459105968]],[[-0.093984380364418,-0.0081400005146861,0.10932849347591],[0.010007502511144,-0.15443347394466,0.14289213716984],[0.050143487751484,-0.11472021043301,-0.11487761884928]],[[-0.1386998295784,0.06890619546175,0.058248102664948],[-0.087750531733036,0.10566931962967,0.023201124742627],[-0.15046274662018,-0.0018502777675167,-0.031024228781462]],[[-0.0034453133121133,0.082505241036415,-0.044299606233835],[-0.088737681508064,0.036968946456909,0.021619925275445],[0.018441246822476,0.039042394608259,-0.030141988769174]],[[-0.00082937785191461,-0.081835627555847,0.034492149949074],[-0.013253561221063,0.046915877610445,0.17431826889515],[0.00089864758774638,-0.027343967929482,-0.10397050529718]],[[0.04593463614583,-0.011924907565117,-0.22764167189598],[-0.26917994022369,-0.084451906383038,0.013778493739665],[0.14122772216797,0.13014853000641,0.1307986676693]],[[0.032871779054403,0.097737796604633,0.081906646490097],[-0.0049143922515213,-0.044568661600351,-0.11996422708035],[0.070483952760696,-0.019306136295199,-0.027346581220627]],[[-0.0017410812433809,0.084260188043118,0.13795632123947],[0.06926067173481,-0.029751284047961,-0.0675168633461],[-0.14774569869041,-0.15936289727688,0.17074663937092]],[[0.016542738303542,-0.23371641337872,-0.026010358706117],[-0.046158973127604,-0.12167222052813,-0.010431726463139],[-0.016183895990252,0.027179630473256,-0.010861851274967]],[[-0.085270918905735,-0.016992568969727,0.045379981398582],[0.022183367982507,0.059163112193346,0.014879113063216],[-0.06078128516674,-0.039401020854712,0.054602604359388]],[[0.12451695650816,0.05647599697113,-0.061059013009071],[0.016249829903245,0.066821672022343,0.041827041655779],[0.00091800827067345,-0.12242498248816,-0.0056684496812522]],[[-0.075193800032139,-0.057659104466438,-0.03042353130877],[-0.023618068546057,0.12657202780247,-0.081445313990116],[-0.091234192252159,-0.067177794873714,-0.10716450214386]],[[0.032693084329367,0.071141615509987,0.16827952861786],[-0.025704566389322,0.0061485162004828,-0.10463047772646],[-0.03983549028635,0.077966801822186,-0.049639187753201]],[[-0.025413522496819,0.0018512720707804,-0.0099969021975994],[0.061255756765604,0.076458595693111,-0.10346995294094],[-0.1808150857687,-0.083592034876347,-0.040141671895981]],[[0.024502152577043,0.061574779450893,-0.14051465690136],[0.075319968163967,-0.078817829489708,-0.0060184318572283],[-0.1682411134243,0.080130212008953,-0.029714226722717]],[[-0.079176597297192,-0.016622303053737,-0.034920956939459],[0.011317660100758,-0.0030885981395841,-0.019037760794163],[0.20114284753799,-0.10824796557426,-0.0086760045960546]],[[-0.086957708001137,-0.011193662881851,-0.17036066949368],[-0.02528060413897,0.056662440299988,0.081423103809357],[-0.16316995024681,0.14551617205143,0.011468224227428]],[[-0.041818737983704,-0.033132202923298,0.17613515257835],[0.067112430930138,0.13118632137775,0.12138374149799],[0.023535577580333,-0.20066170394421,-0.37200805544853]]],[[[-0.0089636230841279,0.059660512953997,0.093064874410629],[0.017140863463283,0.078919529914856,-0.039550982415676],[-0.067006170749664,0.054772038012743,-0.0063972435891628]],[[0.010497471317649,0.057449541985989,-0.085337519645691],[-0.088509052991867,0.12435813993216,0.0077365604229271],[0.016340978443623,-0.021867960691452,0.04733219742775]],[[0.045659549534321,0.0072628408670425,0.0033891419880092],[0.043909687548876,-0.075923271477222,-0.069418169558048],[-0.072943709790707,-0.0094051091000438,-0.012259439565241]],[[-0.13770085573196,-0.042301867157221,0.065268874168396],[-0.010818717069924,0.058977443724871,-0.09664735943079],[0.081824660301208,0.019433094188571,-0.1316614151001]],[[-0.054338835179806,0.057577103376389,-0.053817562758923],[-0.054932750761509,0.028762374073267,0.11340391635895],[-0.062364231795073,0.06799254566431,0.0090200388804078]],[[-0.1008109152317,-0.021195186302066,-0.020265495404601],[-0.015216286294162,-0.003065250813961,-0.0047145639546216],[0.1322158575058,0.1023501381278,0.017721254378557]],[[0.034017961472273,0.0011675551068038,0.023352427408099],[0.050894942134619,0.078861385583878,0.11369931697845],[-0.14913168549538,-0.085248567163944,-0.10561220347881]],[[0.092975817620754,0.10714404284954,-0.0326660387218],[-0.02184995636344,-0.00088482885621488,-0.0138986306265],[-0.022576244547963,-0.046518996357918,-0.019922504201531]],[[0.050073310732841,0.045736033469439,0.039918135851622],[-0.12707333266735,0.0040574590675533,0.052044585347176],[-0.013715271838009,-0.059235613793135,0.020193768665195]],[[0.14145715534687,0.033443983644247,0.090155228972435],[-0.080198369920254,0.0011937327217311,-0.043901033699512],[-0.056292172521353,0.070564709603786,-0.021758321672678]],[[-0.02119273878634,0.011411406099796,0.14376357197762],[0.036424275487661,0.03880337998271,-0.10124035179615],[-0.0077496441081166,0.076340608298779,-0.079304076731205]],[[0.020826935768127,-0.037043016403913,-0.08745851367712],[0.073291085660458,-0.14035074412823,0.10250335931778],[0.031238399446011,-0.17551662027836,0.049328800290823]],[[-0.0053731915540993,0.10391063988209,-0.053357258439064],[0.013824701309204,-0.12739148736,-0.081912070512772],[-0.003448034171015,0.012921208515763,0.061562329530716]],[[-0.076158836483955,0.019618384540081,0.018969722092152],[0.049767956137657,0.025488581508398,0.069750614464283],[0.0036464054137468,0.069551013410091,0.12097933888435]],[[0.091847255825996,0.031652890145779,0.067921787500381],[0.015624575316906,-0.096150420606136,-0.029652424156666],[-0.038164552301168,-0.048565290868282,-0.029069373384118]],[[0.0049385018646717,0.029033966362476,0.055852718651295],[-0.0067094406113029,-0.048421133309603,0.022365871816874],[0.027163809165359,0.039449878036976,-0.10059400647879]],[[0.015983594581485,0.073501475155354,0.024759700521827],[-0.063209421932697,-0.057325940579176,0.030388029292226],[-0.098748527467251,-0.069877475500107,0.027124065905809]],[[0.021157657727599,0.056597795337439,-0.013829267583787],[0.015558848157525,-0.0089703090488911,-0.069886535406113],[-0.050705131143332,0.011038917116821,0.011674196459353]],[[0.018821964040399,0.016513170674443,-0.022096132859588],[-0.0044645927846432,-0.14995193481445,0.031955406069756],[0.1576359719038,-0.061983969062567,0.048244196921587]],[[0.012359021231532,0.019972922280431,0.14780206978321],[-0.087210580706596,0.22406089305878,-0.0097288312390447],[0.10574075579643,0.044018935412169,0.16382621228695]],[[0.0084223207086325,-0.033175148069859,0.048918977379799],[0.067258164286613,-0.1938688158989,-0.048325341194868],[0.009676898829639,-0.036182761192322,0.032545074820518]],[[-0.028738519176841,-0.081688433885574,0.019133653491735],[-0.056236233562231,-0.022820862010121,-0.11398337781429],[-0.053371541202068,-0.045781213790178,0.028241772204638]],[[-0.12696745991707,0.020668672397733,0.079383872449398],[0.02871890924871,-0.0024516780395061,-0.12828281521797],[0.075096495449543,-0.10233281552792,-0.0049210200086236]],[[-0.02884285338223,-0.037819944322109,0.088403321802616],[-0.04148057103157,-0.084685690701008,-0.0032459669746459],[-0.062656320631504,-0.11678083986044,-0.083957836031914]],[[-0.062989443540573,0.010560091584921,0.11507079750299],[-0.018521167337894,0.098647020757198,0.11164937913418],[-0.0053728059865534,0.06495575606823,-0.017009783536196]],[[0.062042530626059,-0.021285204216838,0.03427604585886],[-0.014879310503602,-0.019397323951125,-0.057495635002851],[-0.029875162988901,0.02297136746347,0.032201580703259]],[[0.076425321400166,-0.06791365146637,0.0044918642379344],[0.028401527553797,0.05651268735528,-0.043540760874748],[0.008406107313931,0.0021862769499421,0.045295242220163]],[[0.11663003265858,-0.024439072236419,0.035817805677652],[-0.016088342294097,0.0053261681459844,0.030201360583305],[0.011851153336465,0.084772400557995,0.084749333560467]],[[-0.061313815414906,-0.045683395117521,0.032211005687714],[0.043712545186281,-0.10607516765594,0.035364557057619],[-0.079432800412178,-0.0050449725240469,-0.066994369029999]],[[0.018020318821073,-0.059277631342411,0.059630297124386],[-0.023237071931362,-0.021361973136663,0.062737673521042],[-0.031195353716612,-0.074187085032463,0.045360617339611]],[[0.078829571604729,0.01737629622221,-0.036641731858253],[-0.016696924343705,0.041928075253963,0.064435973763466],[-0.11394069343805,0.10363468527794,0.010861529968679]],[[-0.015185367316008,0.028609668835998,0.052552457898855],[0.012214220128953,-0.093708083033562,0.087955676019192],[0.10958641022444,-0.0035447857808322,-0.03089133836329]],[[0.0082350922748446,-0.073874652385712,-0.02479375526309],[-0.078639306128025,-0.09684344381094,0.082158759236336],[0.0363739579916,-0.11673491448164,0.056622728705406]],[[-0.033384848386049,-0.041272200644016,-0.053979631513357],[-0.073563925921917,0.011544438079,0.034436639398336],[-0.064356476068497,-0.013463499955833,0.048901289701462]],[[0.022578852251172,-0.10078541189432,0.0029157951939851],[-0.12085619568825,0.085652515292168,0.12431080639362],[0.12095219641924,-0.039922781288624,0.038287378847599]],[[0.020755836740136,-0.093897975981236,0.072541020810604],[-0.070204228162766,0.00014321588969324,-0.037416409701109],[-0.032751366496086,-0.0089335246011615,-0.070305466651917]],[[0.097856752574444,0.021381029859185,0.046698771417141],[-0.044581737369299,-0.037158191204071,-0.027278963476419],[-0.0057175024412572,0.055290315300226,0.054378338158131]],[[0.14346155524254,0.09000925719738,-0.037563782185316],[-0.12542714178562,0.096313826739788,0.043129909783602],[-0.0087962709367275,0.069813400506973,-0.027656149119139]],[[0.12761729955673,-0.093966469168663,0.059624850749969],[-0.030755568295717,-0.044218376278877,0.031426213681698],[0.025168925523758,0.0017297234153375,-0.048556841909885]],[[-0.11653760820627,0.15094776451588,-0.12325102090836],[0.12368404865265,-0.042413171380758,0.082320272922516],[-0.15279769897461,0.10552524030209,0.054005116224289]],[[0.011413148604333,0.0074445372447371,0.023763844743371],[0.039875093847513,-0.01758598908782,-0.042686928063631],[0.098342970013618,-0.037343919277191,-0.0023068473674357]],[[0.009955664165318,-0.030041320249438,0.018435426056385],[0.038433503359556,-0.03818603977561,-0.01787799410522],[0.12390777468681,-0.23543101549149,0.021743943914771]],[[-0.0013618275988847,0.031482391059399,0.020385263487697],[0.086423434317112,-0.11009399592876,-0.036309439688921],[0.021652821451426,-0.065054506063461,0.014856527559459]],[[0.0010185164865106,-0.074013985693455,-0.062782190740108],[0.12492552399635,0.020423177629709,-0.011711406521499],[0.031703811138868,-0.0098844356834888,-0.022805435582995]],[[0.0081370072439313,-0.18509523570538,0.084884263575077],[0.02182780764997,0.029308002442122,-0.091957025229931],[-0.038591470569372,0.034754700958729,-0.056233439594507]],[[0.0024187339004129,-0.06618570536375,0.0029089651070535],[0.018016304820776,0.046752944588661,-0.098326377570629],[0.019335040822625,-0.0077256415970623,0.097172640264034]],[[0.013840229250491,-0.010875225998461,-0.0077980142086744],[-0.047957994043827,-0.056557267904282,-0.050956014543772],[0.11267909407616,0.006294708698988,0.036919344216585]],[[0.026701299473643,-0.023632198572159,-0.078629016876221],[-0.0083875497803092,-0.0019847310613841,0.021028447896242],[-0.079208970069885,-0.0039517674595118,-0.032016143202782]],[[-0.033268578350544,-0.0086465105414391,0.016276013106108],[0.083264790475368,0.15055286884308,0.035350680351257],[0.0065822550095618,0.024935360997915,0.01792649179697]],[[-0.00062141398666427,0.05375961214304,-0.0015321840764955],[-0.019433973357081,0.0086668115109205,-0.060593996196985],[-0.035243205726147,-0.070944868028164,0.039691481739283]],[[-0.015818577259779,-0.0049836016260087,0.0050873002037406],[-0.10888553410769,0.059218626469374,-0.018967870622873],[0.036815315485001,-0.086920104920864,-0.019077753648162]],[[0.0088595226407051,-0.026929020881653,0.011251925490797],[-0.084091126918793,0.030454955995083,-0.058640029281378],[0.064118832349777,-0.051360175013542,-0.11681282520294]],[[0.1289694160223,0.0079848002642393,0.04968886077404],[-0.040978986769915,0.11280843615532,-0.046654134988785],[-0.020662650465965,-0.018951648846269,-0.06723664700985]],[[0.1661429554224,-0.076549209654331,0.043186321854591],[-0.029143080115318,-0.03265693038702,0.02162854000926],[-0.078423485159874,-0.071804188191891,-0.054181255400181]],[[-0.03424484282732,0.031632348895073,-0.053806249052286],[-0.04480641707778,-0.16432186961174,0.10453899204731],[0.097004592418671,0.053685907274485,-0.096554301679134]],[[0.027302177622914,0.058002509176731,-0.07685175538063],[-0.061723422259092,0.0072204465977848,-0.031562253832817],[-0.024130284786224,0.027463126927614,-0.022516287863255]],[[0.081759989261627,0.057003457099199,-0.017542496323586],[0.026372352614999,-0.074702888727188,0.084018275141716],[-0.035347022116184,0.0038015150930732,0.013748345896602]],[[0.0052426569163799,-0.020596427842975,0.053332455456257],[-0.12887617945671,-0.047283198684454,-0.0061713671311736],[0.061857767403126,-0.13579680025578,0.0046100886538625]],[[-0.031377270817757,-0.033723548054695,0.094928942620754],[0.13171039521694,0.058852083981037,0.053993552923203],[0.012307887896895,-0.022748796269298,-0.083457179367542]],[[0.023776851594448,-0.020121203735471,-0.02250867523253],[0.04316108673811,-0.022007633000612,-0.00025523349177092],[-0.010015716776252,-0.027230806648731,0.01523763500154]],[[-0.043000150471926,-0.014558305032551,0.034596376121044],[-0.10678471624851,0.053117346018553,0.027267910540104],[-0.028616080060601,-0.075610682368279,-0.029439417645335]],[[-0.051082465797663,-0.057823751121759,0.053552750498056],[0.0018114491831511,0.029343767091632,-0.018627615645528],[-0.0066379690542817,0.062209010124207,0.033774480223656]],[[0.017753709107637,-0.039519604295492,-0.13263563811779],[-0.099647395312786,0.024292722344398,-0.063208505511284],[0.088873580098152,0.042269572615623,-0.069381430745125]],[[-0.035433102399111,0.010910946875811,0.0087817665189505],[0.11261834204197,0.081216298043728,-0.12842299044132],[-0.02047703973949,0.0207394734025,0.0016776324482635]]],[[[0.15654474496841,0.083549246191978,-0.13623006641865],[0.019509088248014,-0.029732912778854,-0.032140035182238],[-0.043385982513428,0.0003922161704395,-0.023964857682586]],[[0.04830439388752,-0.00015207540127449,-0.028669416904449],[-0.12495659291744,-0.070061415433884,-0.009028559550643],[-0.017647037282586,0.03209738060832,0.085791036486626]],[[-0.014216384850442,-0.0051187532953918,-0.046257797628641],[-0.062987186014652,0.046160914003849,0.088852360844612],[-0.047544505447149,-0.031394563615322,-0.0058139730244875]],[[-0.05654338747263,0.017781594768167,0.048173695802689],[0.11255776137114,0.0066800992935896,-0.079939231276512],[0.11422667652369,-0.090976625680923,-0.044713728129864]],[[0.030018968507648,-0.049597855657339,0.00095080881146714],[-0.016136236488819,-0.051853071898222,-0.00061524205375463],[0.051029574126005,0.020830299705267,-0.031599074602127]],[[0.078432612121105,0.0037025313358754,-0.024895558133721],[-0.048480272293091,-0.094315767288208,-0.063258484005928],[0.047028932720423,0.11112567037344,-0.11318100988865]],[[-0.09081295132637,-0.011935276910663,0.10247970372438],[0.033134892582893,0.033106163144112,0.021943068131804],[-0.10105965286493,0.016149563714862,0.001274430193007]],[[0.10460113734007,-0.048336341977119,0.17216865718365],[-0.064185954630375,-0.0096988277509809,-0.091944970190525],[0.094183430075645,-0.032837778329849,0.076882317662239]],[[0.024154774844646,0.0087790247052908,0.019624669104815],[-0.084644787013531,0.039408665150404,0.072417728602886],[0.044069577008486,-0.096657305955887,0.0027847262099385]],[[0.085598468780518,0.014738616533577,0.0071009257808328],[0.028800826519728,-0.123400606215,-0.038175348192453],[0.017431985586882,-0.14593602716923,0.070586107671261]],[[0.080166958272457,-0.039041996002197,0.12055879831314],[-0.046736862510443,0.0045352471061051,0.033983279019594],[-0.12460396438837,-0.072405628859997,-0.093182504177094]],[[0.16198937594891,-0.0059007005766034,-0.022254714742303],[0.02877002954483,-0.11798640340567,-0.053146310150623],[0.089125327765942,-0.030771050602198,-0.064889937639236]],[[-0.0099561000242829,0.12512665987015,-0.022768957540393],[0.079246044158936,-0.0203594006598,0.02551643550396],[-0.078491300344467,0.10937438905239,-0.098570749163628]],[[0.065154694020748,0.094260774552822,-0.028051750734448],[0.0067576225847006,-0.020059728994966,0.054629072546959],[-0.11797596514225,0.040190517902374,0.11037237942219]],[[0.033496394753456,-0.0083799082785845,0.18315640091896],[-0.026176180690527,-0.038733843713999,-0.13445340096951],[-0.017788743600249,-0.0086233681067824,-0.12359411269426]],[[0.037474445998669,0.014505158178508,-0.013990302570164],[0.021365782245994,0.048363201320171,0.035805437713861],[0.1013777256012,0.0033096186816692,-0.14438989758492]],[[-0.090439967811108,0.073174566030502,-0.15263424813747],[-0.03751714527607,-0.10364999622107,0.088790036737919],[-0.040499735623598,0.014123987406492,0.048823338001966]],[[-0.064782485365868,0.022130154073238,0.048056934028864],[-0.030325897037983,-0.0757787078619,-0.0052065374329686],[-0.10512366890907,0.14949759840965,-0.052135437726974]],[[-0.026230875402689,-0.080141469836235,-0.045162867754698],[-0.029060617089272,0.052361916750669,0.13609282672405],[-0.0064938375726342,0.015440883114934,-0.095540516078472]],[[0.060602530837059,0.11645428091288,0.028073221445084],[0.086183652281761,-0.0053520314395428,0.17895121872425],[0.0027043863665313,0.027928676456213,0.22062596678734]],[[-0.073061637580395,0.061703000217676,-0.038662124425173],[-0.046319723129272,-0.13050971925259,0.0084930788725615],[-0.14543913304806,-0.10469967871904,-0.06974221765995]],[[0.079731330275536,0.097111329436302,0.0068414160050452],[0.0034515643492341,0.028749341145158,-0.01533958222717],[0.028931906446815,-0.026210924610496,-0.16505958139896]],[[0.08798360824585,-0.0052784802392125,0.0085833081975579],[0.085648819804192,-0.064207330346107,-0.018159762024879],[-0.14254707098007,-0.064524680376053,0.10675655305386]],[[0.11004243046045,-0.043535105884075,0.048969943076372],[0.0066149835474789,0.083542250096798,-0.13134181499481],[0.088433101773262,0.075367711484432,-0.010388068854809]],[[-0.075996667146683,-0.052741955965757,0.011557281948626],[-0.072449378669262,-0.0018264676909894,0.05904209241271],[-0.01627204567194,0.052679061889648,-0.0052808639593422]],[[-0.086311966180801,0.20211824774742,0.088799394667149],[-0.032104093581438,-0.059382133185863,0.085355222225189],[-0.15845715999603,-0.11136834323406,-0.017880167812109]],[[0.090162366628647,-0.11260978877544,-0.092500440776348],[-0.030612342059612,-0.074511423707008,-0.0054112779907882],[-0.001742196502164,-0.090884618461132,0.006519369315356]],[[0.096711546182632,-0.076744988560677,0.050651159137487],[0.15650828182697,-0.10214462131262,-0.12005180865526],[-0.05409412458539,0.0039961393922567,0.037624072283506]],[[0.021537687629461,-0.14531511068344,-0.075545810163021],[0.038598019629717,-0.022071992978454,0.078407965600491],[-0.01650851778686,-0.045599397271872,0.02255661226809]],[[-0.11183129251003,0.0086368191987276,-0.02567508071661],[0.029274471104145,0.0042957896366715,-0.07289195805788],[-0.012663471512496,-0.09061361849308,-0.099783889949322]],[[0.080687284469604,0.038416903465986,0.13502749800682],[0.022430960088968,0.066572897136211,-0.063117273151875],[0.022097939625382,-0.033492244780064,-0.10411167889833]],[[0.0066824671812356,0.15979720652103,0.030802179127932],[0.11690200120211,-0.05172136425972,0.036917883902788],[-0.098534628748894,0.052615817636251,0.16890838742256]],[[-0.024481093510985,-0.035557691007853,-0.028441023081541],[-0.090174123644829,-0.0045836418867111,-0.0061589903198183],[0.034771215170622,0.06093717738986,0.050204861909151]],[[-0.22101086378098,-0.0059413551352918,-0.14165398478508],[-0.12358036637306,-0.052914638072252,-0.0086233457550406],[-0.10038071125746,0.016702184453607,0.094328247010708]],[[-0.082095094025135,0.062635108828545,0.01380533259362],[0.037803173065186,0.031782981008291,0.081784099340439],[3.0624745704699e-05,0.054474573582411,-0.018183022737503]],[[0.048709213733673,-0.09516129642725,-0.16706067323685],[0.057331386953592,-0.017887366935611,0.0029016640037298],[0.0078842546790838,0.091620244085789,-0.048738077282906]],[[0.011999102309346,-0.13249517977238,0.032930564135313],[0.026175228878856,-0.026349894702435,-0.078308090567589],[0.053065672516823,-0.0079291742295027,-0.22762097418308]],[[0.067555412650108,0.061697654426098,0.031281966716051],[0.04888703301549,0.021203897893429,-0.15463106334209],[0.024652030318975,-0.039464686065912,0.031614080071449]],[[-0.09414280205965,0.061647646129131,0.057725768536329],[-0.047453846782446,-0.04466462507844,0.072269909083843],[-0.12095239758492,0.0074482951313257,0.051162570714951]],[[0.079617463052273,0.0032825113739818,0.12728793919086],[0.085761286318302,0.11341112852097,-0.096678197383881],[0.069697238504887,-0.047335270792246,-0.11616629362106]],[[0.10559726506472,0.036514736711979,0.15015131235123],[-0.0463537722826,-0.11275012791157,0.070904210209846],[-0.030642716214061,-0.048617843538523,-0.086296930909157]],[[-0.11213305592537,-0.055492114275694,-0.056933507323265],[0.11686306446791,-0.14851647615433,0.018803503364325],[0.028037244454026,0.11872856318951,-0.085522197186947]],[[-0.056565269827843,-0.026892155408859,0.052592180669308],[-0.11591658741236,0.010047261603177,-0.023339554667473],[-0.0076486454345286,-0.0022292011417449,0.25838324427605]],[[-0.05231811851263,0.051642667502165,-0.10937344282866],[0.084683857858181,-0.029891643673182,0.052679300308228],[-0.079468965530396,0.10910714417696,-0.021044420078397]],[[0.066208101809025,-0.15102729201317,0.10944869369268],[-0.031245116144419,-0.079400524497032,-0.049210477620363],[-0.058674372732639,-0.11931078135967,-0.016511376947165]],[[0.025551130995154,0.042877599596977,-0.12137390673161],[0.067763738334179,0.054148763418198,-0.14394371211529],[0.10558219254017,-0.011416972614825,0.01405540574342]],[[-0.085121147334576,0.003882922232151,0.0061297006905079],[0.17772556841373,0.050976902246475,0.067810140550137],[0.076361373066902,0.057428099215031,-0.010738640092313]],[[-0.041974298655987,-0.019913846626878,0.01836558803916],[-0.073806747794151,0.050039399415255,-0.031631089746952],[0.037229929119349,-0.037319876253605,0.14080721139908]],[[-0.060024574398994,0.028191572055221,0.058338802307844],[0.08119735121727,0.0018430199706927,0.02997850254178],[0.060699187219143,-0.065068237483501,-0.098588861525059]],[[-0.10923214256763,0.039644882082939,-0.025615835562348],[0.022823195904493,-0.072600714862347,-0.088362142443657],[-0.10594053566456,0.13492225110531,0.023449847474694]],[[-0.046302311122417,-0.010931290686131,0.12650536000729],[-0.12014599889517,0.072127029299736,-0.10846299678087],[0.036875255405903,-0.07634387165308,0.031520150601864]],[[-0.068009540438652,0.0055067734792829,-0.091971702873707],[0.1491377055645,-0.15338844060898,-0.12044646590948],[0.054760906845331,-0.0058967228978872,-0.04718941822648]],[[-0.20425145328045,0.062744669616222,0.10786424577236],[-0.12082359939814,-0.082744121551514,0.079897738993168],[-0.10614335536957,0.066198632121086,-0.10139848291874]],[[0.0074602533131838,-0.11761150509119,0.047740288078785],[0.034744869917631,-0.065277941524982,0.11829147487879],[0.067169927060604,0.002078857505694,0.0034587241243571]],[[-0.0024881723802537,-0.24897049367428,0.0025881987530738],[-0.12995173037052,0.031493850052357,-0.15531927347183],[0.0088081369176507,-0.088754944503307,0.08201190829277]],[[-0.042439628392458,-0.044440291821957,0.036015931516886],[0.013788142241538,0.036671094596386,-0.086125820875168],[-0.15763983130455,0.067149974405766,0.090218015015125]],[[0.12863437831402,-0.022117659449577,0.06092769280076],[0.21333311498165,0.089964032173157,0.14294497668743],[0.19514237344265,0.00070686108665541,0.022943561896682]],[[0.09428284317255,0.034940030425787,-0.066860742866993],[-0.10722358524799,-0.10770217329264,-0.015166726894677],[-0.037052758038044,0.025198953226209,-0.043013833463192]],[[0.0061169895343482,-0.013654100708663,0.12202367186546],[0.021718828007579,-0.025173883885145,0.16981282830238],[0.038112115114927,-0.0079111745581031,0.12128096073866]],[[-0.15535461902618,0.064450852572918,0.00042547294287942],[-0.085422061383724,-0.058753821998835,0.00040852566598915],[0.0063059297390282,-0.026244573295116,0.079748824238777]],[[0.068692557513714,-0.017759922891855,0.061771761626005],[-0.062223453074694,-0.088607892394066,-0.21466362476349],[0.019973810762167,-0.02394200488925,-0.031566850841045]],[[-0.14712128043175,-0.038782313466072,0.025426998734474],[-0.12826564908028,-0.082195661962032,-0.0349639095366],[0.031045541167259,-0.089023299515247,0.073825031518936]],[[-0.0014558464754373,-0.11758465319872,-0.037824705243111],[0.038653220981359,-0.031231520697474,0.084067143499851],[-0.091481626033783,-0.0533826649189,-0.0017136755632237]],[[0.0049782902933657,-0.04404678195715,-0.17651601135731],[-0.073368407785892,0.028711443766952,0.024938065558672],[0.18316732347012,0.10041222721338,0.040478188544512]]],[[[-0.079657383263111,0.027423638850451,-0.024298503994942],[-0.056711439043283,0.043224833905697,-0.01028033066541],[-0.022670421749353,0.054863005876541,-0.11974219977856]],[[0.070301420986652,0.072658553719521,-0.097671024501324],[0.014024392701685,-0.052667412906885,0.039289101958275],[-0.064325079321861,-0.047259632498026,-0.057701535522938]],[[0.0028636669740081,-0.068653278052807,0.03891559690237],[0.020585283637047,0.04193577170372,-0.032420188188553],[-0.10857512056828,0.11499694734812,0.058397889137268]],[[-0.0066862185485661,0.06832704693079,0.017247639596462],[-0.030643958598375,-0.14441005885601,0.19897150993347],[-0.0073156431317329,-0.15744559466839,-0.059268921613693]],[[-0.025643417611718,-0.045530565083027,0.018995121121407],[0.0066747642122209,-0.027477471157908,-0.0014870832674205],[0.031824860721827,-0.0030063225422055,-0.085163250565529]],[[-0.038045331835747,0.0043127997778356,-0.063523210585117],[-0.0017801714129746,-0.018789008259773,0.056743394583464],[-0.0735929235816,-0.0020701189059764,-0.12410249561071]],[[-0.031570788472891,-0.033655289560556,0.0096652209758759],[-9.8386371973902e-06,-0.092263855040073,0.022800445556641],[0.017711522057652,-0.059267062693834,-0.024839336052537]],[[0.018301432952285,0.081489682197571,0.068862669169903],[0.016869058832526,0.077476806938648,-0.057342041283846],[-0.013452404178679,-0.13103853166103,-0.12262250483036]],[[-0.083825595676899,0.00093464157544076,-0.025800468400121],[-0.066235020756721,0.089977763593197,0.12828631699085],[-0.06331767141819,0.0025333652738482,0.045558180660009]],[[-0.12293814122677,0.016002986580133,0.07620457559824],[-0.1391376554966,0.0030755226034671,0.041474305093288],[-0.0021468841005117,-0.05750397592783,0.081873171031475]],[[0.099238350987434,0.11114551126957,0.026268636807799],[-0.014865342527628,-0.075735963881016,-0.059068880975246],[0.029442340135574,-0.11746959388256,-0.0448885448277]],[[-0.14462681114674,-0.034749120473862,-0.0026345578953624],[0.043722968548536,-0.045860912650824,0.071289375424385],[0.036836940795183,-0.017891468480229,-0.0020485066343099]],[[0.050974927842617,-0.019977331161499,0.043316781520844],[-0.10075382888317,-0.030923394486308,0.091288276016712],[-0.016716485843062,-0.013622866012156,-0.095652662217617]],[[0.052751697599888,-0.022611541673541,0.032567661255598],[-0.0041759749874473,0.058517046272755,-0.10299970954657],[-0.072600603103638,0.094278506934643,-0.072710037231445]],[[0.18051931262016,0.029752526432276,0.012053775601089],[-0.058068215847015,-0.1972718089819,0.081873558461666],[0.02553460560739,-0.049646016210318,0.01716037094593]],[[-0.043853655457497,0.096558041870594,-0.14476107060909],[0.066229440271854,-0.13108533620834,-0.062855124473572],[0.11930750310421,-0.079896338284016,0.029570404440165]],[[0.04117888584733,0.11721840500832,0.040377072989941],[-0.13837306201458,0.0033446180168539,-0.071157835423946],[-0.027009312063456,0.011408403515816,-0.064206011593342]],[[-0.10365870594978,-0.031076332554221,0.076191432774067],[0.12528443336487,-0.058487977832556,-0.032614719122648],[-0.079001523554325,0.11561472713947,0.028157129883766]],[[0.033473093062639,0.14104825258255,0.065077535808086],[0.033467065542936,-0.084051877260208,-0.051247231662273],[0.0068369298242033,-0.10301002115011,-0.043599687516689]],[[0.068858541548252,0.083592645823956,0.022086044773459],[0.05480682849884,0.065927013754845,0.004944936838001],[-0.023438941687346,-0.0785898193717,0.069397978484631]],[[0.046305153518915,0.022852223366499,0.051878213882446],[-0.021114461123943,-0.033379785716534,-0.067033633589745],[0.024108747020364,0.029796194285154,-0.0758171454072]],[[0.064895175397396,-0.05315638333559,0.072084508836269],[-0.075456231832504,-0.085082046687603,-0.059109229594469],[0.096374399960041,0.0013976568588987,-0.00969547778368]],[[0.076871521770954,-0.065842345356941,0.078885242342949],[0.041663203388453,0.038626372814178,0.021825468167663],[-0.10486013442278,-0.095759697258472,-0.030095471069217]],[[-0.054522410035133,-0.027251090854406,-0.011898181401193],[0.076533764600754,-0.087990038096905,0.074492461979389],[-0.061669584363699,0.092773132026196,0.098555319011211]],[[-0.057862609624863,0.076853685081005,0.044209275394678],[-0.029477644711733,0.030151881277561,0.085760250687599],[-0.14472423493862,-0.069416537880898,-0.060437057167292]],[[-0.050921805202961,-0.035456661134958,-0.0056822546757758],[-0.018237067386508,0.25862866640091,-0.074220418930054],[0.08931140601635,-0.027662638574839,0.0074938642792404]],[[0.034586481750011,-0.063574336469173,-0.00067814707290381],[0.053045656532049,-0.057781685143709,0.022741790860891],[0.040442865341902,0.026859747245908,0.0099545205011964]],[[-0.00053690327331424,-0.057183969765902,0.028423616662621],[0.10151375830173,-0.07425145804882,-0.1239268630743],[0.068650647997856,0.015810230746865,0.21231800317764]],[[0.032377324998379,-0.0066993441432714,-0.059458803385496],[0.041962642222643,-0.049025602638721,-0.006200710311532],[0.0077793835662305,-0.088271215558052,-0.11823028326035]],[[-0.054481573402882,-0.04173693805933,0.12815161049366],[0.089873522520065,-0.13014997541904,0.099572539329529],[0.0080213639885187,-0.022905943915248,-0.012973489239812]],[[-0.066743053495884,-0.013090605847538,-0.0057527706958354],[0.0027650818228722,0.076213754713535,0.05655774101615],[-0.091694861650467,-0.010357404127717,-0.14302338659763]],[[0.029509311541915,-0.0094423163682222,-0.0094386320561171],[0.013812054879963,-0.066544517874718,-0.013651508837938],[0.037711318582296,0.13120609521866,-0.063826605677605]],[[-0.063839182257652,-0.0053964578546584,-0.098563767969608],[-0.13348940014839,0.040710035711527,0.045630417764187],[0.12824857234955,0.012307647615671,0.12422473728657]],[[0.11849638819695,-0.061233893036842,-0.098201543092728],[-0.056416586041451,-0.04826720058918,-0.0063467854633927],[-0.057313345372677,0.036820344626904,0.02824667468667]],[[0.0041067469865084,0.06745906919241,-0.011832074262202],[0.020169394090772,-0.057241000235081,-0.010234828107059],[0.089249826967716,0.04984762519598,-0.12933048605919]],[[-0.07313534617424,-0.09978911280632,0.067624062299728],[-0.084366418421268,-0.041534148156643,0.035285327583551],[-0.04395104944706,0.020335629582405,-0.023931331932545]],[[-0.082411006093025,-0.073773615062237,-0.12917669117451],[-0.019187603145838,-0.076539926230907,-0.033713664859533],[0.09464555233717,0.065237365663052,0.086275435984135]],[[0.063879273831844,-0.042906761169434,0.099701784551144],[0.013379501178861,0.072640843689442,0.03432984650135],[-0.097615033388138,-0.13936801254749,-0.03712123259902]],[[0.052359785884619,0.06624673306942,0.017965631559491],[0.05370619893074,-0.0073933568783104,0.014164915308356],[-0.067728146910667,-0.081000179052353,-0.1866033822298]],[[-0.059874460101128,0.057096038013697,0.061956088989973],[-0.0027288650162518,0.037882130593061,0.18756094574928],[-0.19617296755314,-0.06821620464325,-0.064828105270863]],[[-0.11134482175112,0.0021198547910899,0.047871567308903],[-0.039541069418192,0.13880185782909,0.069062918424606],[-0.083760470151901,-0.04922454431653,0.061294805258512]],[[-0.066538512706757,0.036076098680496,0.071383647620678],[0.0016002212651074,0.029337732121348,0.044002003967762],[0.091367848217487,-0.17901289463043,0.041445277631283]],[[0.10120035707951,0.082553088665009,0.045396309345961],[-0.0029697304125875,0.020847612991929,0.0029532795306295],[-0.010305618867278,-0.064356550574303,0.02051399461925]],[[-0.037154965102673,-0.034974165260792,-0.03950908780098],[0.069345444440842,-0.016504829749465,-0.049351170659065],[0.016273008659482,-0.022835919633508,0.12141975015402]],[[-0.015429396182299,-0.18614302575588,-0.024591760709882],[-0.091862417757511,-0.046416584402323,0.013201873749495],[-0.049301568418741,0.11823906004429,0.10002480447292]],[[-0.031920112669468,-0.04717206582427,-0.0026680971495807],[-0.063698008656502,-0.05080945789814,-0.067973181605339],[0.051572006195784,-0.11488001793623,0.033208895474672]],[[-0.0073386374861002,-0.0068178419023752,0.0090858489274979],[0.083804175257683,0.012071619741619,-0.032894987612963],[0.041787218302488,-0.057988032698631,-0.063871189951897]],[[0.017043856903911,-0.06266064196825,-0.1439645588398],[-0.016823979094625,0.042871441692114,0.078493744134903],[0.020341753959656,0.016058595851064,-0.085101172327995]],[[-0.00986507255584,0.06136367097497,-0.087171994149685],[0.12288112938404,-0.071397542953491,-0.054862774908543],[-0.0092983255162835,0.071001909673214,0.062928318977356]],[[0.10175554454327,-0.048840772360563,0.029457239434123],[-0.075741127133369,0.027900671586394,0.13917841017246],[-0.016953324899077,-0.09607595205307,0.031300451606512]],[[0.0095511646941304,0.0030819419771433,-0.13183802366257],[0.016798499971628,-0.12576706707478,-0.011131482198834],[-0.019780747592449,-0.048453476279974,0.10871500521898]],[[-0.040996894240379,0.037726428359747,0.096277423202991],[0.029577311128378,-0.028419500216842,-0.0094066811725497],[0.026465773582458,-0.0079001989215612,-0.060007981956005]],[[0.049986016005278,-0.12299218028784,0.0149508100003],[-0.052258037030697,-0.102738045156,0.022180657833815],[-0.006742044351995,-0.060495194047689,-0.14943332970142]],[[0.12121354043484,-0.026308318600059,-0.051625054329634],[-0.071694016456604,-0.12657354772091,0.0029748692177236],[0.016768718138337,-0.0068552228622139,-0.048168409615755]],[[0.0092144664376974,0.03486630320549,-0.051885183900595],[-0.058400109410286,0.017699837684631,0.013666959479451],[0.022780640050769,0.021066438406706,0.061849351972342]],[[-0.10274147242308,0.041019570082426,0.073749363422394],[-0.0027345977723598,-0.13700678944588,-0.017029674723744],[-0.0032540312968194,0.026208430528641,-0.0080931335687637]],[[0.042302757501602,0.041798736900091,0.036340799182653],[0.14425125718117,0.0078655239194632,0.017394311726093],[0.16109327971935,0.065999023616314,-0.010523062199354]],[[-0.05245054885745,-0.045054648071527,0.028728820383549],[-0.059271518141031,-0.012339097447693,0.030358295887709],[0.039966911077499,-0.030646102502942,0.11285019665956]],[[-0.053978703916073,0.017388282343745,-0.079900316894054],[0.008787483908236,0.17182633280754,-0.0018848817562684],[0.055528420954943,0.052711170166731,-0.040886640548706]],[[0.018976006656885,0.012631816789508,-0.05997746437788],[0.010299089364707,-0.062456231564283,0.12948828935623],[-0.052123669534922,0.089947782456875,0.029372056946158]],[[0.063317112624645,-0.041191443800926,0.047660890966654],[0.021610535681248,0.047675080597401,-0.077730931341648],[0.13268990814686,-0.066671289503574,0.024878527969122]],[[0.034073796123266,0.017756927758455,-0.0073496531695127],[0.010114914737642,-0.048601746559143,-0.020288996398449],[-0.077171705663204,0.057217713445425,0.12040948867798]],[[0.017905214801431,-0.083726048469543,-0.05247462913394],[-0.024187913164496,-0.0099927624687552,0.021964060142636],[0.078287973999977,0.076585188508034,-0.046159364283085]],[[0.030929412692785,-0.068891853094101,0.027902219444513],[0.00553870620206,-0.034157752990723,-0.052242022007704],[-0.0014943173155189,0.10435147583485,0.040704626590014]]],[[[-0.086916223168373,-0.012092807330191,-0.012508867308497],[-0.04422715306282,-0.073162831366062,0.078971549868584],[-0.0036884781438857,0.048588752746582,-0.044176165014505]],[[-0.049092542380095,0.13013298809528,0.018750699236989],[0.13498705625534,0.093223549425602,-0.01912203989923],[-0.026442622765899,-0.024008182808757,0.060136985033751]],[[-0.032695487141609,0.12122028321028,0.00058683543466032],[-0.12618970870972,0.012123537249863,0.066618926823139],[0.037935484200716,0.052721049636602,0.030606545507908]],[[0.15034592151642,0.16706398129463,0.11009891331196],[0.11176254600286,0.06776787340641,-0.02322418615222],[-0.012404069304466,-0.17645411193371,-0.256945759058]],[[-0.0057454481720924,0.0049921930767596,-0.032088570296764],[-0.021113771945238,-0.070975430309772,0.0055765430442989],[0.12403280287981,0.020852863788605,0.0054793287999928]],[[-0.0050324848853052,-0.091417357325554,-0.061958402395248],[-0.010085307061672,-0.078998118638992,0.015434606932104],[0.090129539370537,0.011048015207052,-0.12806059420109]],[[0.021602729335427,0.061814330518246,-0.056641761213541],[0.029978524893522,-0.045352656394243,0.044156055897474],[-0.016749896109104,-0.065655782818794,-0.062495239078999]],[[0.010018404573202,-0.039358463138342,-0.011457386426628],[0.099583499133587,0.034501902759075,0.073542691767216],[-0.024964159354568,-0.052066490054131,0.029294880107045]],[[-0.082821652293205,-0.14476947486401,0.0047606346197426],[-0.051750797778368,0.076673731207848,0.075935617089272],[0.063364312052727,0.079790890216827,0.0014077739324421]],[[0.0027865788433701,-0.12014448642731,-0.10915759950876],[-0.025681247934699,-0.14705848693848,-0.15813691914082],[0.013789782300591,-0.019023919478059,-0.086802907288074]],[[-0.068723499774933,0.0050183665007353,0.065247215330601],[-0.046972703188658,-0.036992747336626,0.033830981701612],[0.029413091018796,0.045020204037428,-0.05536188185215]],[[0.031808245927095,-0.18148812651634,-0.36927086114883],[-0.13340428471565,-0.29671609401703,-0.16943891346455],[-0.056004080921412,0.015432693995535,0.13710126280785]],[[-0.0013868462992832,0.11677998304367,0.067074097692966],[0.058658119291067,0.12408202141523,0.031458053737879],[0.019266895949841,-0.0004678008845076,-0.041421551257372]],[[-0.027928408235312,0.10382096469402,-0.10209035128355],[0.0020525073632598,0.062928467988968,-0.0064090890809894],[0.024353565648198,0.020287752151489,0.052120853215456]],[[-0.012356723658741,-0.034203793853521,-0.13235127925873],[0.052455388009548,0.038487944751978,0.035600028932095],[-0.031674865633249,0.0031839178409427,0.089273817837238]],[[0.025398762896657,-0.10913211107254,0.0512450709939],[0.048045549541712,-0.024352623149753,0.038532186299562],[0.018285958096385,-0.035206329077482,0.029104253277183]],[[-0.15515686571598,0.068530634045601,-0.065166510641575],[0.006582454778254,0.050221648067236,0.1482422798872],[-0.037943731993437,-0.017707459628582,0.057295046746731]],[[-0.091471672058105,-0.033368039876223,0.075133830308914],[-0.093293160200119,0.032201312482357,-0.013296949677169],[0.028508126735687,0.13562732934952,0.069473080337048]],[[0.054812122136354,0.029478637501597,0.0078946892172098],[0.087593726813793,-0.010554530657828,-0.010794763453305],[0.052104715257883,0.0096544418483973,-0.009789016097784]],[[0.079864054918289,0.081936471164227,0.097448766231537],[-0.05565082654357,-0.0044192369095981,-0.04390525072813],[-0.11116994172335,-0.019099662080407,-0.072367250919342]],[[0.016260055825114,-0.061872445046902,-0.011594051495194],[0.045240022242069,-0.14467929303646,-0.055533468723297],[-0.041966550052166,-0.016713907942176,0.0041825408115983]],[[-0.043781619518995,0.037332393229008,0.12809628248215],[0.065210446715355,0.12455792725086,0.033558361232281],[0.042237147688866,-0.052519418299198,-0.0047640614211559]],[[0.10834700614214,-0.11584533005953,0.040293272584677],[0.031712051481009,-0.057626284658909,-0.088985107839108],[0.012239235453308,-0.04115042090416,-0.11277630925179]],[[-0.04184590280056,-0.15554776787758,-0.071104668080807],[-0.089856833219528,-0.073595002293587,-0.10178367048502],[-0.0083895968273282,-0.087649464607239,-0.012699929066002]],[[-0.0040526129305363,0.13414342701435,0.20135796070099],[-0.028623225167394,0.071873672306538,0.040611367672682],[-0.13316595554352,-0.073286414146423,-0.091635175049305]],[[0.034997567534447,-0.022141430526972,0.056109715253115],[0.048936564475298,-0.050598047673702,0.053351443260908],[-0.062576480209827,-0.082908138632774,-0.057454083114862]],[[0.072817355394363,0.0044617797248065,-0.12793003022671],[0.036978106945753,-0.11258424818516,-0.03598541021347],[-0.01709345728159,-0.011128610000014,-0.072411775588989]],[[-0.02623526006937,-0.23944936692715,-0.0093992156907916],[0.046934187412262,-0.073741227388382,-0.0057566021569073],[-0.0339973308146,-0.043194357305765,0.080089382827282]],[[0.010430121794343,-0.023145334795117,0.15012626349926],[0.013719791546464,0.11557936668396,0.090003736317158],[0.075880639255047,-0.01988940499723,-0.076626770198345]],[[0.17357295751572,0.19251485168934,0.061126496642828],[0.093786671757698,-0.072340629994869,-0.11305683851242],[0.032798480242491,-0.069915182888508,-0.12916631996632]],[[-0.032161626964808,-0.013021191582084,0.039967779070139],[-0.036537777632475,-0.023924773558974,0.024212274700403],[0.044937621802092,0.08067349344492,-0.066531978547573]],[[-0.0019869438838214,0.10147547721863,-0.12824665009975],[-0.0029341853223741,-0.077395729720592,0.078867979347706],[0.022888949140906,-0.050130113959312,-0.054646778851748]],[[-0.093353524804115,-0.0035605204757303,0.010597815737128],[0.065398648381233,-0.035460539162159,0.040277242660522],[-0.026247886940837,-0.024325931444764,0.065376028418541]],[[-0.080192402005196,-0.18402796983719,-0.046175941824913],[-0.051226306706667,-0.12970717251301,-0.059970654547215],[0.095344446599483,0.13608920574188,0.0054010860621929]],[[0.042465433478355,-0.046463906764984,0.029658837243915],[-0.066165827214718,-0.0080683538690209,-0.011027114465833],[0.038790628314018,0.037900149822235,-0.090893648564816]],[[-0.0020662317983806,-0.098330341279507,-0.15060234069824],[-0.027482284232974,-0.10975249111652,-0.0065306047908962],[-0.04015926644206,0.030711406841874,-0.041785374283791]],[[0.092978835105896,0.02613539993763,-0.025049207732081],[0.071779169142246,-0.065430425107479,0.083026237785816],[-0.015947114676237,-0.062355227768421,0.013353028334677]],[[0.10582152754068,0.018973110243678,0.052050817757845],[0.056714858859777,0.0056704236194491,-0.025594137609005],[-0.073796734213829,-0.017209971323609,-0.045333243906498]],[[0.015245260670781,-0.041209358721972,-0.08641691505909],[0.039641056209803,-0.02783190459013,-0.062489487230778],[-0.021927870810032,0.059894729405642,0.061687346547842]],[[0.013495236635208,0.085580214858055,0.11826634407043],[0.061920713633299,0.087977401912212,-0.014341505244374],[-0.017605317756534,-0.10588212311268,-0.072493232786655]],[[0.17478446662426,-0.037494372576475,0.034582577645779],[-0.1447845697403,-0.14497393369675,-0.026279648765922],[0.041487649083138,-0.17175024747849,-0.028542146086693]],[[-0.0012065066257492,0.060308046638966,-0.077779360115528],[0.07328063249588,-0.11612593382597,0.00221316376701],[-0.014042442664504,-0.10295982658863,0.089487805962563]],[[-0.064258843660355,0.0058386609889567,0.032892178744078],[0.054932091385126,-0.021157894283533,-0.025245245546103],[0.06954137980938,0.013134641572833,0.024893486872315]],[[-0.002968619344756,0.10904729366302,0.0047330721281469],[0.064077995717525,0.080875888466835,-0.104233764112],[-0.054535657167435,-0.023410871624947,-0.068375021219254]],[[0.028080245479941,-0.14945943653584,0.0027702439110726],[-0.022266309708357,0.0067731202580035,0.021494168788195],[0.002549096243456,0.0045105740427971,0.0368443839252]],[[-0.092041730880737,-0.00011685104982462,-0.094204343855381],[0.055042624473572,0.1138456761837,0.061622437089682],[-0.060205370187759,-0.027182267978787,-0.13058722019196]],[[-0.010678892955184,0.094191834330559,0.0018836798844859],[-0.010178733617067,-0.10342618077993,-0.035761769860983],[0.030377369374037,0.14228139817715,0.0021950118243694]],[[-0.04798599332571,0.063211694359779,0.080316238105297],[-0.062932670116425,-0.059065483510494,0.073245167732239],[0.0047170761972666,-0.0067494525574148,0.02082678116858]],[[0.07347671687603,-0.12319106608629,-0.053134005516768],[-0.0053441589698195,0.023803390562534,-0.084477357566357],[0.019749626517296,-0.025974011048675,-0.027956893667579]],[[0.057232614606619,-0.1039160862565,0.013392417691648],[-0.040213257074356,-0.01929790340364,-0.00064439041307196],[-0.054243549704552,0.023112185299397,0.052145138382912]],[[-0.063016571104527,-0.04237174987793,-0.051816184073687],[0.0095768496394157,-0.02972274273634,0.016779227182269],[-0.021153789013624,0.026608791202307,0.090138882398605]],[[0.0049575571902096,0.090064145624638,0.010832986794412],[-0.043039243668318,-0.10400432348251,-0.2051392942667],[0.044341541826725,-0.067150712013245,-0.082754291594028]],[[0.033258836716413,0.01645958609879,0.10568481683731],[0.047862872481346,-0.090799413621426,0.14488899707794],[0.089970730245113,0.010387856513262,-0.12101019918919]],[[0.050270937383175,0.066735036671162,0.12909103929996],[-0.13283209502697,0.099328756332397,0.15690533816814],[-0.0026529137976468,0.080257818102837,-0.046014025807381]],[[-0.031554471701384,-0.022333962842822,0.027188159525394],[0.0072723892517388,-0.14796547591686,-0.096920408308506],[-0.11628211289644,-0.088343098759651,-0.03647356107831]],[[-0.005002211779356,0.061191733926535,0.00048692795098759],[0.0070141130127013,0.030870361253619,0.068294458091259],[-0.032255277037621,-0.082859143614769,-0.021432735025883]],[[0.19256465137005,-0.029849860817194,-0.085420735180378],[0.1302548199892,-0.0085209282115102,0.026490055024624],[0.071621954441071,0.027052879333496,0.020272241905332]],[[0.053404651582241,-0.093769758939743,0.10616666078568],[-0.059085570275784,0.0057261921465397,-0.015034517273307],[-0.022547606378794,-0.046292770653963,0.11926640570164]],[[-0.034180544316769,0.10690289735794,0.17167064547539],[-0.021017583087087,0.020808635279536,0.19291773438454],[-0.11484045535326,-0.044684529304504,-0.015924029052258]],[[-0.10613824427128,-0.0054826899431646,0.041006959974766],[0.036319803446531,-0.019344467669725,-0.040042199194431],[0.011730616912246,-0.019668398424983,0.10988295078278]],[[0.011778366751969,-0.02261808514595,-0.094462856650352],[-0.074598848819733,-0.035248026251793,-0.12381657212973],[0.20323729515076,0.015382673591375,0.030776131898165]],[[0.045053731650114,0.063044145703316,-0.026310553774238],[0.074321083724499,0.013824511319399,-0.019824421033263],[0.061943899840117,-0.0040916493162513,-0.0030936731491238]],[[0.26834547519684,0.0099829444661736,0.012854694388807],[-0.072580814361572,-0.15296007692814,-0.13190558552742],[-0.013721979223192,-0.11552211642265,-0.10719088464975]],[[-0.055660109966993,-0.15385656058788,-0.019068244844675],[0.059018615633249,0.12436276674271,0.17869345843792],[0.06076230853796,0.028067467734218,0.17109279334545]]],[[[0.0095575898885727,-0.013382287696004,0.063761584460735],[0.011706128716469,-0.01782632060349,0.012594735249877],[0.085972972214222,-0.011606582440436,0.11934745311737]],[[0.094118133187294,-0.054287776350975,-0.073464147746563],[0.16959464550018,-0.049264162778854,-0.15434348583221],[0.16692344844341,0.019486546516418,0.087889418005943]],[[-0.029387682676315,-0.050469327718019,0.015468407422304],[0.062617145478725,-0.079057566821575,0.03195545822382],[0.13006103038788,0.10127223283052,-0.029694681987166]],[[-0.070841990411282,-0.049090392887592,-0.13782088458538],[-0.086345016956329,-0.074361950159073,0.033417209982872],[-0.0039461362175643,-0.02377106808126,0.0098618436604738]],[[-0.004837001208216,0.014645208604634,0.012384698726237],[0.0089567564427853,-0.015022243373096,0.073727890849113],[-0.011877118609846,0.0089140478521585,0.020186001434922]],[[0.021547356620431,-0.022644190117717,0.061480104923248],[0.032787553966045,-0.063415892422199,0.022098874673247],[0.092264622449875,0.078654758632183,-0.23771208524704]],[[0.082347474992275,0.096549570560455,-0.015176414512098],[-0.044561114162207,-0.052746620029211,0.011128270067275],[-0.044125866144896,-0.044611591845751,-0.0106394989416]],[[-0.12122764438391,-0.13399730622768,-0.055475249886513],[0.10330660641193,-0.012080358341336,-0.068593695759773],[0.17830780148506,0.020386777818203,0.13265505433083]],[[0.0019190683960915,-0.05180461704731,-0.030721155926585],[-0.052585139870644,-0.012850476428866,-0.036844223737717],[0.075592465698719,0.086223125457764,0.055515848100185]],[[0.048617240041494,0.053468991070986,0.017218293622136],[-0.011758212931454,0.049079660326242,0.036090202629566],[-0.04095271229744,-0.099850244820118,-0.11367339640856]],[[-0.073803164064884,-0.072208724915981,-0.056459601968527],[-0.036861542612314,-0.0067734150215983,-0.051795542240143],[0.12797953188419,0.10303649306297,0.029228832572699]],[[0.011708499863744,0.010472601279616,0.050553441047668],[0.0012110180687159,-0.025583187118173,-0.11074358224869],[0.10165115445852,-0.17983734607697,-0.058521963655949]],[[-0.067306481301785,0.004454636014998,-0.0026957420632243],[0.046328458935022,0.097093418240547,-0.00063799740746617],[0.013734331354499,0.15776823461056,-0.024696657434106]],[[0.026053177192807,0.07156290858984,-0.012386355549097],[-0.086545944213867,0.038894299417734,-0.10138542205095],[0.20092236995697,-0.041375063359737,0.055969838052988]],[[0.069567799568176,0.0090872598811984,-0.023400619626045],[0.10328610986471,0.067059077322483,0.00071204773848876],[-0.036543633788824,0.035920802503824,-0.069458648562431]],[[0.030557995662093,-0.05412844195962,0.012984136119485],[-0.068664915859699,-0.030045438557863,0.035325780510902],[-0.028527311980724,0.023382710292935,-0.083185456693172]],[[0.082655161619186,0.10612485557795,0.0188003834337],[0.015244749374688,0.044820688664913,-0.083418883383274],[-0.18303079903126,-0.054455485194921,0.10941252112389]],[[-0.035456594079733,-0.12653385102749,-0.22329063713551],[0.10405416041613,0.15841990709305,-0.0068722902797163],[-0.0034008978400379,0.095548063516617,0.012005772441626]],[[0.081375680863857,-0.026517666876316,0.0083797154948115],[0.0030923178419471,-0.0025489737745374,-0.052277486771345],[0.082732923328876,0.087206117808819,0.02246431261301]],[[0.021375609561801,-0.24232965707779,-0.22819186747074],[0.061242021620274,-0.033322364091873,-0.14232909679413],[0.08579932898283,0.075803674757481,-0.14733989536762]],[[0.0067154807038605,-0.030823245644569,-0.071295939385891],[-0.028425671160221,0.052807465195656,-0.01538157928735],[-0.095746554434299,0.0058377804234624,-0.031481750309467]],[[-0.09142030775547,-0.057046826928854,0.054992951452732],[-0.059520121663809,0.077578686177731,0.043547794222832],[0.084338001906872,-0.067444831132889,-0.053224865347147]],[[0.085719116032124,-0.1734264343977,-0.095271490514278],[0.13643915951252,-0.023223353549838,-0.03046696074307],[0.1044577434659,0.12038454413414,-0.00022708506730851]],[[0.067484751343727,0.052873887121677,0.023609315976501],[-0.065732516348362,0.11960117518902,0.23572333157063],[0.0024437997490168,-0.33413287997246,-0.21044784784317]],[[-0.069213405251503,-0.18397924304008,-0.21788588166237],[0.020618231967092,-0.087259940803051,0.0023988939356059],[0.038077991455793,0.19066599011421,0.060163866728544]],[[-0.11442732065916,-0.011212245561182,0.052267540246248],[0.013327662833035,0.011036404408514,0.080607242882252],[0.029795173555613,-0.0094417305663228,0.014445110224187]],[[-0.041998535394669,-0.057142809033394,-0.040854103863239],[-0.056451808661222,-0.20429660379887,-0.20611676573753],[0.022828619927168,-0.088062845170498,-0.026123275980353]],[[-0.052831202745438,0.048778276890516,0.054836340248585],[0.017977822571993,0.047441452741623,0.054909449070692],[0.06526143103838,-0.020913256332278,-0.022441424429417]],[[-0.0060512074269354,0.080734506249428,0.14174783229828],[0.0068187057040632,-0.0333087220788,0.015197860077024],[0.0051235128194094,0.10392265766859,-0.029809193685651]],[[0.10836428403854,0.022841967642307,-0.032797578722239],[-0.020286738872528,0.025759443640709,0.0050539961084723],[0.056105710566044,-0.10726296156645,-0.13744316995144]],[[-0.14950095117092,-0.090154945850372,-0.23145490884781],[0.15647691488266,0.003357317764312,0.0028854955453426],[0.35382398962975,0.15410704910755,0.059970006346703]],[[0.0020212242379785,-0.038607209920883,-0.12825222313404],[-0.0095719983801246,-0.097679987549782,0.010124540887773],[0.31153756380081,0.024275733157992,-0.012000183574855]],[[0.015951177105308,-0.014692813158035,0.0066705550998449],[0.065678305923939,0.012084144167602,0.036598697304726],[-0.058358047157526,-0.092852629721165,0.016691144555807]],[[0.0065153948962688,-0.049924455583096,0.0027499785646796],[0.0086894584819674,0.049795404076576,0.012465017847717],[0.1197394579649,-0.038393717259169,0.037808779627085]],[[-0.024949604645371,0.00232725427486,-0.017858611419797],[-0.032879911363125,-0.038083586841822,-0.10120271891356],[0.050318714231253,0.01572273671627,-0.049617044627666]],[[-0.018051510676742,0.042203135788441,0.13003005087376],[-0.21032382547855,-0.16377429664135,0.023772470653057],[0.070007108151913,-0.18048731982708,-0.15985134243965]],[[-0.12827180325985,-0.075658231973648,-0.011348358355463],[-0.17084777355194,0.039051733911037,0.017855864018202],[0.0096885738894343,0.040295694023371,-0.0076408283784986]],[[-0.048778619617224,-0.10522994399071,-0.20215354859829],[0.075484849512577,-0.0049146572127938,0.02843764051795],[0.23842257261276,0.21329189836979,0.120799921453]],[[-0.020773183554411,-0.14321000874043,0.034323692321777],[0.1062954813242,-0.036980420351028,-0.012224091216922],[0.066461756825447,-0.14052157104015,0.076828151941299]],[[-0.016606587916613,-0.050226915627718,-0.061123136430979],[-0.050830569118261,0.014498431235552,0.029131598770618],[0.09135514497757,0.12271304428577,-0.023202046751976]],[[0.0054442533291876,-0.13504905998707,-0.057729482650757],[-0.070717468857765,-0.020508313551545,0.065946944057941],[0.070530652999878,-0.066857144236565,0.065337240695953]],[[-0.05889193713665,-0.029107371345162,-0.0052792779169977],[-0.070299468934536,0.032149352133274,0.050064645707607],[-0.26401188969612,-0.071748927235603,0.017433425411582]],[[0.051182400435209,0.001282857498154,0.060324806720018],[0.02800715342164,0.079655781388283,0.06681440025568],[-0.017616417258978,-0.10562665760517,-0.053748495876789]],[[-0.018582599237561,0.079756297171116,0.01743807643652],[-0.049726083874702,0.055959992110729,0.031471334397793],[-0.011803498491645,-0.066220298409462,-0.030760264024138]],[[0.11247858405113,0.00063857354689389,0.095343329012394],[0.0047109010629356,0.015829576179385,0.0739421620965],[-0.18202669918537,-0.079860970377922,0.0030355458147824]],[[-0.054238200187683,0.0038082641549408,-0.021230490878224],[-0.12333738058805,0.057937350124121,0.080416545271873],[-0.063470236957073,-0.13498099148273,0.091588594019413]],[[-0.049714978784323,0.069678120315075,-0.034221228212118],[-0.11491720378399,-0.077608123421669,-0.23140074312687],[-0.11057044565678,0.27218559384346,0.10501929372549]],[[-0.010852181352675,-0.034849192947149,-0.077074408531189],[0.060768827795982,0.054550539702177,-0.0046438407152891],[-0.047909654676914,0.037935048341751,-0.10650216788054]],[[0.0021266136318445,-0.021539883688092,-0.11013768613338],[-0.031953178346157,0.11209867149591,-0.0899628251791],[0.11662191152573,0.14309340715408,0.014336331747472]],[[-0.16450676321983,-0.0581234395504,0.070910230278969],[-0.018167020753026,0.09840127825737,0.071729622781277],[-0.025805301964283,0.10125341266394,-0.057874232530594]],[[-0.0059501328505576,0.010791567154229,0.099734857678413],[-0.068521805107594,0.013217351399362,0.17850637435913],[-0.051545012742281,0.010209126397967,0.016457051038742]],[[0.019858166575432,0.024803372099996,0.084566257894039],[-0.050484731793404,0.1001503765583,0.13634425401688],[-0.034715916961432,-0.11664367467165,-0.0031746772583574]],[[0.041464574635029,-0.020639825612307,-0.076566360890865],[0.089724160730839,-0.058215774595737,-0.09194927662611],[0.13313499093056,0.15459789335728,0.18220730125904]],[[0.11201643198729,0.0054979752749205,-0.097089596092701],[0.10392678529024,0.020791999995708,-0.0022345008328557],[0.059999730437994,0.012953926809132,-0.020409325137734]],[[-0.01333833206445,-0.011786954477429,0.12912836670876],[-0.19255545735359,0.010840088129044,-0.077402651309967],[-0.29116031527519,-0.28354746103287,-0.085627004504204]],[[0.075454920530319,-0.079514935612679,-0.010035438463092],[-0.080748587846756,-0.20691461861134,0.067532010376453],[0.016255263239145,-0.0071132811717689,-0.043515630066395]],[[-0.13512499630451,-0.19866305589676,-0.24477890133858],[0.15061742067337,0.092857182025909,-0.055531024932861],[0.2453089505434,0.28867927193642,0.19917134940624]],[[-0.053386736661196,0.0097224684432149,0.059503424912691],[-0.21478322148323,-0.050673704594374,0.077517464756966],[-0.16606226563454,-0.14513799548149,0.035035002976656]],[[0.074081301689148,-0.065720111131668,-0.003141317749396],[-0.17406031489372,0.061024524271488,0.062237031757832],[0.15256835520267,0.1438325047493,-0.0735764503479]],[[0.051734384149313,0.1241546869278,0.1834838539362],[-0.0573427118361,-0.095452941954136,-0.018895912915468],[-0.083208560943604,-0.038530185818672,-0.01946790330112]],[[0.059846613556147,0.013209343887866,0.12904272973537],[0.018392100930214,0.029833985492587,0.050276041030884],[0.01825663074851,-0.079888857901096,0.044835023581982]],[[0.05079710483551,0.081271231174469,0.059975538402796],[-0.089922942221165,-0.0090172486379743,0.090292774140835],[0.0012457735138014,-0.034235693514347,-0.087788097560406]],[[-0.039067406207323,0.038505703210831,0.046522367745638],[-0.046688690781593,-0.10217102617025,0.084516674280167],[-0.042350843548775,0.039201837033033,0.040841694921255]],[[-0.064311891794205,0.022667292505503,0.080920599400997],[-0.032369446009398,-0.0001599807292223,-0.11091189831495],[0.017736103385687,-0.10936673730612,0.10058460384607]]],[[[-0.015653243288398,0.15719953179359,-0.20951813459396],[0.067185707390308,0.03649028018117,-0.023115264251828],[0.056014064699411,0.086344316601753,-0.031853940337896]],[[0.070098340511322,-0.018107291311026,-0.12323467433453],[0.1197969391942,-0.14324687421322,-0.034457020461559],[0.11531085520983,0.00026294696726836,-0.12642578780651]],[[-0.10734948515892,-0.092061161994934,0.016131533309817],[-0.25056120753288,-0.16015316545963,0.18170949816704],[-0.1332792788744,0.032380476593971,-0.0085031054913998]],[[-0.009720734320581,-0.19128985702991,-0.13171166181564],[0.0059821787290275,-0.2750546336174,0.084902338683605],[-0.026962054893374,-0.097597479820251,0.051433458924294]],[[0.030022842809558,0.085441708564758,0.05126915127039],[-0.13025213778019,0.026993924751878,-0.018935589119792],[0.042537860572338,-0.08913280069828,0.027743235230446]],[[-0.024144930765033,-0.017356298863888,0.09082193672657],[0.13113830983639,-0.039667885750532,-0.17642283439636],[-0.019972136244178,-0.18465608358383,0.049629531800747]],[[-0.065818414092064,-0.070589616894722,0.17144221067429],[-0.14768779277802,-0.055368263274431,0.066745184361935],[-0.038999419659376,0.061992842704058,0.095031462609768]],[[-0.02401652559638,-0.016632407903671,-0.0058320756070316],[0.04495420306921,-0.12693804502487,-0.030932703986764],[0.060740265995264,-0.12591668963432,-0.070065923035145]],[[0.10531623661518,0.049135100096464,0.048823859542608],[-0.030096983537078,-0.065031759440899,-0.094480030238628],[0.0066927522420883,-0.004326787777245,-0.014128278009593]],[[0.041566345840693,0.1221175044775,0.020976778119802],[-0.037479545921087,0.21362534165382,0.096235990524292],[-0.1261619925499,0.0033543820027262,0.022065076977015]],[[-0.025921121239662,0.0481350235641,-0.092176981270313],[-0.072002120316029,-0.13360589742661,-0.03374020755291],[0.042425036430359,-0.01614828966558,0.094334922730923]],[[0.0044210655614734,0.056727577000856,0.027291804552078],[-0.038455650210381,0.0996003895998,-0.052640229463577],[0.061921641230583,0.09793496876955,-0.039778530597687]],[[-0.067469634115696,-0.338637560606,0.065663561224937],[-0.083994850516319,0.053700644522905,0.12804372608662],[-0.069045551121235,-0.034379009157419,0.069614708423615]],[[-0.062409337610006,-0.00061744055710733,-0.084330849349499],[-0.16060738265514,-0.019976133480668,-0.15214458107948],[0.07779523730278,0.015727911144495,-0.059974696487188]],[[0.02095384337008,0.010135324671865,-0.043137099593878],[0.082600653171539,0.04630084708333,-0.017468102276325],[-0.0078592132776976,-0.14308875799179,0.03403764218092]],[[-0.11561554670334,0.047262895852327,-0.015686804428697],[-0.021859547123313,-0.047319576144218,-0.079805515706539],[0.032872516661882,-0.13415232300758,0.093750193715096]],[[0.087826564908028,-0.05988473072648,0.039412297308445],[-0.07657378166914,-0.16402626037598,0.060522109270096],[-0.064980670809746,-0.0050701284781098,-0.018313204869628]],[[-0.041505802422762,-0.081424899399281,-0.041831523180008],[-0.049517292529345,-0.0055661909282207,0.048748530447483],[0.073072403669357,-0.026926282793283,0.072781518101692]],[[-0.020932495594025,-0.12691521644592,-0.013491422869265],[-0.086207449436188,-0.083161316812038,-0.087877735495567],[0.10122119635344,0.12051306664944,0.10718224942684]],[[0.0027068625204265,-0.11042834818363,-0.16897647082806],[0.063163325190544,-0.0107356403023,0.14771446585655],[0.046124279499054,0.041475776582956,-0.12500338256359]],[[0.018339179456234,-0.052440777420998,-0.080073490738869],[-0.03150911256671,-0.031242378056049,-0.0327606536448],[-0.24481344223022,-0.037053771317005,-0.0064906449988484]],[[-0.071539416909218,-0.013075955212116,-0.094517692923546],[-0.082292638719082,0.16889829933643,0.043379485607147],[0.03170209005475,-0.069332279264927,-0.012809948995709]],[[-0.038323912769556,0.029726603999734,0.071419067680836],[-0.03063003346324,0.055382754653692,-0.055972065776587],[0.098712183535099,0.00039619661401957,0.011496494524181]],[[0.038355603814125,0.066569395363331,-0.095116719603539],[0.05767909437418,0.15005403757095,-0.026809077709913],[0.11054757982492,0.014763669110835,0.024876633659005]],[[-0.068265430629253,-0.091633789241314,-0.051322940737009],[0.04494084790349,-0.0015203772345558,0.039805490523577],[-0.08300119638443,-0.097665257751942,0.016086569055915]],[[-0.04907763749361,0.0044550108723342,0.14077506959438],[0.054261457175016,0.038722280412912,0.032237287610769],[-0.060622327029705,0.018553057685494,0.00095010449877009]],[[-0.0053027574904263,-0.033733513206244,0.077454879879951],[0.015233739279211,0.021813631057739,-0.039132066071033],[0.094786882400513,-0.0032513304613531,0.050871480256319]],[[-0.079847760498524,0.088557429611683,0.090976670384407],[-0.033285349607468,0.025659533217549,0.054230157285929],[0.15591061115265,0.0094554843381047,-0.15970341861248]],[[0.059492416679859,0.025813177227974,0.012277325615287],[-0.11812499165535,-0.057419091463089,0.1172556579113],[0.069899164140224,-0.12154932320118,0.030256621539593]],[[-0.023649416863918,0.016035901382565,0.054010573774576],[-0.084307730197906,0.015943426638842,-0.084317825734615],[-0.087217688560486,0.014915616251528,0.016950491815805]],[[-0.0069814622402191,-0.092000663280487,-0.011120394803584],[0.017947878688574,0.13662081956863,-0.25478595495224],[0.043988071382046,0.10440431535244,-0.045856211334467]],[[-0.002494981046766,-0.057201500982046,-0.084259547293186],[0.11819937825203,-0.016472566872835,0.016045205295086],[0.011828053742647,0.08531516045332,-0.14777715504169]],[[-0.050817519426346,0.13195493817329,0.10879418253899],[0.083393856883049,-0.14180754125118,0.052349749952555],[-0.060611840337515,-0.054798766970634,0.05639985576272]],[[-0.056600537151098,-0.055657967925072,-0.032833535224199],[-0.095038011670113,0.019842367619276,-0.00035391023266129],[-0.055706299841404,-0.021969316527247,-0.057146474719048]],[[0.0017494378844276,-0.11780289560556,0.03299018368125],[0.16243840754032,0.066880397498608,0.12063190340996],[-0.10097492486238,-0.036869965493679,-0.10772750526667]],[[0.0073036188259721,0.16278438270092,-0.065501555800438],[-0.010333474725485,0.057026159018278,-0.17647510766983],[0.00055309291929007,0.14255388081074,-0.099952213466167]],[[-0.10603611171246,0.081608220934868,0.16181816160679],[-0.2364442050457,0.044749073684216,0.031894266605377],[-0.23981916904449,-0.10461483150721,0.058976072818041]],[[0.0074218162335455,-0.018660413101315,-0.02529782615602],[0.027372075244784,0.088455557823181,0.091541633009911],[-0.043058175593615,-0.020663112401962,-0.077616952359676]],[[0.0091964518651366,0.017834791913629,0.099549524486065],[-0.046984221786261,0.061532597988844,0.030593669041991],[0.011329595930874,-0.084400944411755,-0.030098278075457]],[[-0.093459136784077,0.0019188228761777,-0.007082502823323],[-0.024123024195433,-0.031329091638327,0.015648456290364],[0.16458344459534,0.047761414200068,0.047397542744875]],[[-0.0089369704946876,0.0064001204445958,-0.040968354791403],[0.099397450685501,0.089255891740322,0.052451707422733],[-0.10994961857796,0.14136226475239,0.040526732802391]],[[-0.011936062015593,-0.05625806376338,0.093167364597321],[-0.039127878844738,0.083403214812279,0.03051196038723],[-0.17630548775196,-0.24672189354897,-0.15136981010437]],[[-0.01706081815064,0.055271942168474,-0.082625404000282],[0.02368463948369,-0.062236558645964,0.082563817501068],[0.0046014105901122,0.037621140480042,0.05514408275485]],[[-0.10520504415035,0.031466972082853,-0.033781491219997],[-0.044346913695335,0.096135124564171,0.063943438231945],[-0.028352506458759,0.067023679614067,-0.047080658376217]],[[-0.072522208094597,-0.0037427030038089,-0.14146734774113],[-0.13900293409824,-0.08955143392086,-0.0081886518746614],[-0.15614764392376,-0.0091161197051406,0.078637696802616]],[[-0.024562945589423,0.0063267420046031,0.035641275346279],[-0.076586477458477,0.10108482092619,0.0039895353838801],[0.013470801524818,-0.011532478034496,-0.069465689361095]],[[0.010657239705324,-0.10347946733236,-0.0017932988703251],[-0.01073298137635,-0.0034065714571625,0.04595048353076],[-0.18476264178753,-0.026925267651677,0.018028719350696]],[[0.030195031315088,-0.013248559087515,0.13213843107224],[-0.013723074458539,-0.082979425787926,-0.020855510607362],[-0.043077528476715,2.8376814952935e-05,-0.063694782555103]],[[0.071118280291557,0.14361195266247,-0.059639539569616],[0.040015432983637,0.0081019205972552,-0.10090721398592],[0.0055244583636522,0.089776657521725,0.042660966515541]],[[-0.039513658732176,0.0206563398242,0.056141991168261],[0.01375658903271,-0.017112784087658,-0.064062900841236],[0.024782860651612,0.077416516840458,-0.031586691737175]],[[-0.045525390654802,-0.064683459699154,-0.023042405024171],[-0.062686294317245,0.035539552569389,0.059147860854864],[-0.028544068336487,-0.10593108832836,0.0058578457683325]],[[0.052023760974407,-0.12768460810184,0.013495779596269],[0.074205063283443,0.085853554308414,0.015234564431012],[-0.12298978865147,-0.093724466860294,-0.0044594602659345]],[[-0.0063548199832439,0.03363960981369,0.035831604152918],[-0.13390247523785,0.053152751177549,-0.0020640813745558],[-0.020436273887753,0.029344374313951,-0.053744282573462]],[[0.0037294963840395,-0.09559753537178,-0.027461024001241],[-0.065948352217674,0.018790097907186,-0.038169987499714],[0.061622425913811,-0.044047899544239,0.055696960538626]],[[0.0032162698917091,0.0062636202201247,-0.0011252022814006],[0.0033722242806107,-0.012486098334193,0.088942438364029],[-0.037342309951782,-0.12147245556116,-0.10822577774525]],[[0.078221641480923,-0.079414680600166,-0.15951469540596],[-0.023739984259009,-0.17450572550297,-0.13164977729321],[-0.02677203156054,0.015791080892086,-0.084570720791817]],[[-0.027521880343556,-0.1170981824398,-0.090007692575455],[-0.01687347330153,-0.031619064509869,-0.077790968120098],[0.091772466897964,0.15156346559525,0.00017290582763962]],[[0.17268680036068,0.013514435850084,0.052163366228342],[-0.061608325690031,0.024271050468087,0.10352518409491],[0.086926005780697,-0.020249096676707,0.054717648774385]],[[-0.015361534431577,0.11551022529602,-0.23439694941044],[0.098519712686539,-0.0027010866906494,-0.19877824187279],[-0.041568797081709,-0.11024516820908,-0.012343522161245]],[[-0.09258271753788,0.0087913842871785,0.0030135728884488],[0.060806579887867,-0.15598152577877,-0.1103725656867],[0.021117769181728,-0.055078528821468,0.03465436026454]],[[0.083219729363918,0.0051447530277073,-0.043397776782513],[-0.027387356385589,-0.095544531941414,-0.0091028427705169],[-0.068327762186527,-0.1410469263792,-0.03718339279294]],[[-0.11591395735741,-0.020377034321427,0.094298712909222],[-0.082218900322914,-0.028928635641932,-0.017551954835653],[-0.0643555149436,-0.0025590036530048,-0.022021193057299]],[[-0.069577537477016,0.036107819527388,-0.13758647441864],[0.037439189851284,0.073476001620293,0.027748396620154],[-0.061198677867651,0.05166956409812,-0.050282772630453]],[[0.10111105442047,0.11159892380238,-0.1171068996191],[0.099737904965878,-0.055572904646397,-0.2139652967453],[-0.095243193209171,-0.14719359576702,-0.033087071031332]]],[[[0.048218201845884,0.062112726271152,0.080699726939201],[0.039806701242924,0.0057820389047265,0.040185872465372],[-0.085003755986691,-0.067172683775425,-0.083460241556168]],[[0.050305064767599,0.17490400373936,0.12523140013218],[-0.00023457345378119,0.046999715268612,-0.0063564921729267],[-0.0091856019571424,-0.029556136578321,-0.071530260145664]],[[0.052556078881025,-0.0049753240309656,-0.18135797977448],[-0.07230569422245,-0.089893862605095,-0.11717353761196],[-0.017593506723642,-0.26114076375961,-0.16211342811584]],[[0.068821124732494,-0.031557437032461,-0.10509493947029],[-0.027590552344918,-0.26333156228065,-0.01750797778368],[-0.14691972732544,-0.10750638693571,0.095437541604042]],[[-0.0073733772151172,0.016308654099703,-0.023276876658201],[0.043388165533543,-0.009501064196229,-0.12679369747639],[0.11685710400343,0.024276588112116,-0.056490682065487]],[[0.0023027872666717,0.089990548789501,0.14458951354027],[0.11709396541119,0.013768397271633,0.03367168828845],[-0.16940754652023,-0.18469758331776,-0.021527545526624]],[[0.0066375718452036,0.096131607890129,-0.13493034243584],[0.081148691475391,-0.029986977577209,-0.0074952305294573],[0.22243504226208,0.029257223010063,-0.026506876572967]],[[-0.14513652026653,-0.0092827770859003,-0.076628245413303],[0.011769332922995,-0.10053008794785,0.10624748468399],[-0.02966920286417,0.049241717904806,-0.027925841510296]],[[-0.003954709507525,0.057539016008377,-0.019527329131961],[-0.0088130915537477,0.069979935884476,-0.02456078492105],[0.043040085583925,-0.022907914593816,-0.091147616505623]],[[0.0054687508381903,-0.024082507938147,-0.12822479009628],[-0.015349233523011,-0.035661827772856,-0.01349263638258],[0.19493634998798,-0.037029907107353,0.14178478717804]],[[-0.087333910167217,-0.11654669046402,-0.039944399148226],[-0.049397528171539,0.060699533671141,0.074230886995792],[0.11263220757246,-0.081761300563812,0.023776700720191]],[[-0.031420260667801,-0.073536582291126,0.099913887679577],[-0.2322800308466,0.031824022531509,0.093708828091621],[0.0023339525796473,0.030964033678174,-0.045759201049805]],[[0.030124144628644,-0.0002136040275218,-0.152124106884],[0.059538472443819,-0.13162285089493,-0.067658744752407],[-0.16032434999943,-0.10504797846079,0.049506295472383]],[[0.026269001886249,-0.018231987953186,0.0053298734128475],[0.10360787063837,-0.020875927060843,-0.005624579731375],[0.0086710089817643,-0.025010028854012,-0.15142817795277]],[[0.06572861969471,0.052148144692183,0.013463878072798],[-0.070050925016403,-0.065433256328106,0.024573294445872],[-0.010307099670172,0.0040630102157593,-0.089904814958572]],[[-0.052520286291838,-0.022329853847623,-0.064363561570644],[0.075019903481007,0.081866860389709,0.053909033536911],[-0.014897680841386,-0.077898770570755,0.053821422159672]],[[-0.04574217274785,0.12445470690727,0.034553024917841],[-0.0045842719264328,-0.14825470745564,0.094215899705887],[-0.030981170013547,-0.015154957771301,0.045921053737402]],[[-0.073340706527233,-0.031873192638159,-0.022710911929607],[-0.16297689080238,0.11306644231081,-0.05553587153554],[0.14176964759827,-0.067405842244625,-0.04963430762291]],[[-0.026541326195002,0.022886039689183,-0.071499101817608],[-0.033050112426281,0.16992063820362,-0.023201990872622],[0.1466850489378,-0.023240469396114,0.059812858700752]],[[0.088500365614891,0.084889218211174,0.13720588386059],[-0.01572116650641,0.084101296961308,0.10866791009903],[-0.1109334975481,-0.026361014693975,0.033650308847427]],[[0.027553023770452,-0.15414378046989,-0.17739775776863],[-0.059568587690592,-0.068432152271271,0.12476925551891],[-0.0057671833783388,0.19878481328487,-0.030617460608482]],[[-0.069712288677692,0.079354785382748,-0.11562147736549],[0.053069654852152,0.11740724742413,0.14395046234131],[0.0066576818935573,-0.2538900077343,-0.18988259136677]],[[-0.067368566989899,-0.013748510740697,0.04221985861659],[0.050243195146322,0.012510909698904,0.10928881168365],[-0.04960922151804,-0.016445614397526,-0.023035760968924]],[[0.019146125763655,0.044361151754856,-0.026486251503229],[-0.009578125551343,-0.08459585160017,0.011212129145861],[0.091925643384457,-0.014786252751946,0.15875059366226]],[[0.027178900316358,0.038733012974262,0.12643240392208],[0.13099437952042,0.03120837919414,-0.07264332473278],[-0.16569694876671,-0.14048869907856,0.077014774084091]],[[-0.03393218293786,-0.032878749072552,-0.14670437574387],[-0.026252269744873,-0.038753543049097,-0.033315692096949],[0.073050975799561,-0.022446416318417,0.015929849818349]],[[0.054414574056864,0.018472926691175,0.087167277932167],[0.021509071812034,-0.11185412108898,0.059109777212143],[-0.12196535617113,0.065906852483749,0.079340025782585]],[[0.018275413662195,-0.081181488931179,0.053157947957516],[-0.095398508012295,-0.020411148667336,0.043747942894697],[-0.090776383876801,0.060615442693233,-0.081112839281559]],[[0.038098625838757,-0.077209956943989,-0.044140033423901],[0.051152274012566,-0.12180440872908,-0.077791787683964],[-0.095437362790108,-0.10035950690508,-0.01858307980001]],[[0.094154976308346,0.016206471249461,-0.099342167377472],[-0.028832595795393,-0.076597027480602,0.019408013671637],[0.039470080286264,0.047880761325359,0.11609020084143]],[[0.033977147191763,0.07041347026825,-0.0079040303826332],[0.050860084593296,0.029985290020704,-0.10865846276283],[0.18519623577595,-0.089431054890156,-0.042699750512838]],[[0.040417902171612,-0.10411673784256,-0.030949134379625],[-0.022824794054031,-0.085574999451637,-0.021556306630373],[-0.061072047799826,-0.12313462793827,-0.10424823313951]],[[0.01505855191499,-0.02605595253408,-0.081131249666214],[-0.030753005295992,0.067415155470371,-0.012157042510808],[-0.094186618924141,0.010344343259931,0.17908710241318]],[[-0.07941660284996,0.025323370471597,-0.084477677941322],[0.014836302958429,0.17596387863159,-0.060123924165964],[0.048826619982719,-0.15876027941704,-0.088088020682335]],[[0.10637599229813,0.042856577783823,-2.7746631531045e-05],[-0.027450853958726,0.037991587072611,-0.017988007515669],[0.029124008491635,-0.15509869158268,-0.13098636269569]],[[0.012572077102959,0.057552199810743,0.011742067523301],[-0.081537768244743,-0.075887680053711,-0.057672072201967],[0.081796988844872,0.0042890161275864,-0.00052640965441242]],[[-0.071137361228466,-0.014106363989413,-0.14363546669483],[-0.014113664627075,-0.044325463473797,0.024394955486059],[0.034659091383219,0.050427690148354,0.03360328450799]],[[-0.019774915650487,0.031796872615814,-0.02817321382463],[0.024781676009297,-0.01750897243619,-0.023306457325816],[-0.16441583633423,-0.12674127519131,0.13170948624611]],[[0.045098699629307,-0.19969438016415,-0.019190948456526],[0.17445623874664,-0.096102446317673,0.13074736297131],[0.06611941754818,0.023180847987533,-0.037162315100431]],[[0.034598283469677,-0.018510282039642,0.055232048034668],[-0.06893190741539,-0.050723176449537,0.021145025268197],[-0.05120499804616,-0.055046603083611,0.02087914198637]],[[-0.011847365647554,0.050636649131775,0.055430758744478],[-0.057616375386715,0.10176152735949,0.027870321646333],[-0.070752114057541,-0.061134770512581,0.081302963197231]],[[-0.055409297347069,-0.11985920369625,-0.24545499682426],[0.026328528299928,-0.11100605875254,-0.15968136489391],[-0.10141657292843,0.013462077826262,-0.063155509531498]],[[-0.063973516225815,-0.058599658310413,-0.070599474012852],[0.023595701903105,-0.098379552364349,0.08020193874836],[0.063291035592556,0.019358227029443,0.1020298525691]],[[-0.027328869327903,-0.0031985761597753,0.027743952348828],[-0.028817441314459,0.0082469591870904,0.028982060030103],[0.03112112544477,0.014417238533497,-0.035076700150967]],[[0.027876000851393,-0.039429619908333,-0.14068265259266],[0.053051453083754,0.035059534013271,-0.012235328555107],[0.022782171145082,-2.6825970053324e-05,-0.067024230957031]],[[0.04146322235465,0.049252487719059,-0.037496995180845],[0.018502740189433,0.13633340597153,-0.073051154613495],[-0.01687659882009,-0.2072080373764,-0.24760763347149]],[[0.017437651753426,0.1127308011055,0.12753893435001],[0.014877382665873,0.0029245575424284,-0.035707507282495],[0.074025638401508,0.022372249513865,-0.099386662244797]],[[-0.078005038201809,0.032204333692789,-0.019069219008088],[-0.022199552506208,0.01656199619174,-0.078819610178471],[0.1565420627594,-0.082933560013771,-0.015321770682931]],[[-0.083193019032478,-0.084505476057529,-0.0073189190588892],[-0.071378238499165,0.041238073259592,0.16460977494717],[-0.025538032874465,-0.00048702993080951,0.064423613250256]],[[-0.0183947365731,0.032340534031391,-0.053388923406601],[0.04736416041851,0.095656879246235,-0.046517547219992],[0.018432898446918,-0.081987544894218,0.033686079084873]],[[-0.08238959312439,-0.16507497429848,-0.12401124835014],[-0.037890750914812,0.013469094410539,0.071463540196419],[-0.058962788432837,-0.053849846124649,0.02991128526628]],[[-0.041400596499443,0.059340067207813,0.11329345405102],[0.069397814571857,0.033819902688265,0.0010724279563874],[0.047350257635117,-0.024619840085506,-0.033167187124491]],[[0.10293254256248,-0.069913290441036,-0.11006062477827],[0.067415066063404,-0.055501822382212,0.051533944904804],[0.10636758804321,0.011890521273017,-0.059368927031755]],[[0.02121601626277,0.015427564270794,-0.14165936410427],[0.060593269765377,0.011940116994083,-0.13572569191456],[-0.023468034341931,-0.097455829381943,-0.026579348370433]],[[-0.079827442765236,-0.084229834377766,0.053316231817007],[0.0057062054984272,-0.050870336592197,0.019534576684237],[0.010924117639661,-0.019404912367463,-0.020487632602453]],[[0.038418292999268,0.029515730217099,-0.20148615539074],[-0.069571904838085,-0.1531794667244,-0.049836833029985],[0.005090662278235,0.0098396604880691,-0.051808893680573]],[[-0.045245323330164,-0.0010464959777892,0.13526448607445],[0.073525458574295,0.12890502810478,0.13381825387478],[-0.094193696975708,-0.046882249414921,-0.0047932770103216]],[[-0.038457732647657,0.011062353849411,-0.0029672149103135],[-0.11233179271221,0.057184223085642,0.065842486917973],[-0.0353759303689,-0.023866221308708,-0.054640997201204]],[[0.0035815217997879,-0.069251634180546,0.025803973898292],[0.021777641028166,-0.021536435931921,-0.06598399579525],[-0.29353871941566,0.013254920952022,0.045995268970728]],[[-0.015334548428655,-0.080433912575245,-0.020639851689339],[0.017386825755239,0.064936950802803,0.027014357969165],[-0.094033785164356,-0.042573396116495,0.0077359471470118]],[[-0.037942487746477,-0.082408644258976,-0.11341198533773],[0.071432754397392,-0.040843054652214,-0.026987044140697],[-0.014717044308782,-0.022372828796506,0.0008580440771766]],[[-0.072937093675137,-0.013500616885722,-0.05318795517087],[0.080935455858707,0.068696364760399,0.078171275556087],[-0.05623846128583,0.044508017599583,0.1017656698823]],[[-0.12204379588366,-0.050491705536842,-0.079998053610325],[0.052576210349798,-0.032982427626848,-0.072985447943211],[-0.1691470593214,-0.092853061854839,0.0057849581353366]],[[0.042569968849421,0.11721184104681,0.15784876048565],[-0.043022345751524,-0.08090703189373,-0.11795381456614],[-0.075590625405312,-0.18314592540264,-0.093609355390072]]],[[[-0.023270986974239,0.015516460873187,0.027973763644695],[0.018971426412463,-0.047923795878887,0.10340661555529],[-0.091363497078419,0.037749610841274,-0.073060244321823]],[[0.1386353969574,-0.089440912008286,0.0015236579347402],[0.042186051607132,0.027822982519865,-0.029413167387247],[-0.038295846432447,0.15189728140831,-0.052289009094238]],[[0.018248209729791,-0.10217075794935,-0.0026673378888518],[-0.11415632069111,-0.045206788927317,0.057894047349691],[-0.070859231054783,-0.39755815267563,0.059899065643549]],[[-0.028374776244164,-0.32925844192505,-0.022113904356956],[-0.079993598163128,0.059538099914789,0.084923453629017],[-0.17384433746338,0.11095431447029,0.042207792401314]],[[0.01531773712486,-0.04411106929183,-0.0090728001669049],[0.033726833760738,-0.068620160222054,0.10143201053143],[0.022090686485171,0.0040044337511063,-0.095927730202675]],[[-0.010949160903692,0.013188107870519,0.043270282447338],[0.088591516017914,0.12582540512085,-0.052571881562471],[-0.088785924017429,-0.12155499309301,0.075066938996315]],[[-0.21680541336536,-0.065438531339169,0.036789055913687],[-0.11689836531878,-0.040545210242271,-0.048046305775642],[-0.086103811860085,-0.11962858587503,0.14589799940586]],[[-0.015911910682917,-0.026465695351362,0.0071679553948343],[-0.01141391787678,0.05455432459712,-0.058017451316118],[0.12996344268322,0.0059772185049951,0.061897959560156]],[[-0.014243800193071,0.10698615014553,-0.0056681106798351],[0.0023986059240997,-0.044604517519474,-0.061002660542727],[0.059348482638597,-0.030016537755728,0.034078724682331]],[[-0.076369240880013,0.0065983105450869,-0.11803836375475],[-0.0188277810812,-0.089796356856823,0.067134976387024],[0.14498151838779,-0.14830523729324,0.070352710783482]],[[0.23148283362389,0.036753486841917,-0.083867073059082],[-0.00014622107846662,0.027411103248596,-0.098499797284603],[-0.11199241131544,-0.2385255843401,0.075356245040894]],[[-0.14434480667114,-0.003317954717204,0.053571969270706],[-0.070171475410461,0.13908797502518,-0.10258236527443],[0.011424718424678,-0.05220290645957,-0.028338260948658]],[[-0.038298096507788,-0.11111268401146,0.061864007264376],[0.032311126589775,-0.13954302668571,0.016127636656165],[0.0073115937411785,-0.013557875528932,-0.072889745235443]],[[0.14081257581711,0.00096447410760447,-0.10724747925997],[0.066230997443199,-0.071366339921951,-0.051572807133198],[-0.088259920477867,-0.035637643188238,0.059667985886335]],[[-0.079630017280579,0.023247228935361,-0.050624750554562],[0.10030258446932,0.0049476511776447,-0.081236459314823],[-0.021117996424437,0.054729238152504,-0.046610649675131]],[[-0.032143592834473,-0.046545092016459,-0.091655924916267],[0.054321799427271,0.063898228108883,-0.091058552265167],[-0.0056511806324124,0.077887184917927,-0.0031640599481761]],[[0.068479910492897,0.028405129909515,-0.052168805152178],[0.067652978003025,-0.026912333443761,-0.14782363176346],[-0.018230136483908,-0.034300353378057,-0.027138341218233]],[[-0.012412151321769,0.041019380092621,-0.082941010594368],[0.062773786485195,0.036567412316799,-0.14986376464367],[0.021132756024599,-0.18247523903847,-0.047776840627193]],[[0.019019117578864,0.0051895589567721,0.025551145896316],[0.063366524875164,0.087335504591465,-0.12478100508451],[0.052353631705046,-0.042360529303551,-0.089983649551868]],[[0.19507437944412,-0.11729384958744,0.073421247303486],[0.064628258347511,0.062640346586704,0.044850248843431],[0.097356967628002,0.093059815466404,-0.095492228865623]],[[-0.08087033778429,0.04350858554244,0.06568156182766],[-0.013458848930895,0.027333784848452,-0.040761668235064],[0.041321612894535,0.015760337933898,0.1185405626893]],[[0.19456371665001,0.14209672808647,-0.15610930323601],[0.090714603662491,-0.0012812936911359,0.026426194235682],[-0.13556291162968,0.013247177936137,0.012637666426599]],[[-0.053628638386726,0.060624368488789,0.0012866155011579],[0.13702468574047,-0.026619620621204,0.065079599618912],[-0.064987570047379,-0.089682526886463,-0.0090221473947167]],[[0.026641828939319,0.14333707094193,-0.16081956028938],[0.033116687089205,0.013900317251682,0.059410724788904],[-0.097656138241291,0.08591365814209,0.0023635206744075]],[[0.016286093741655,-0.052669588476419,-0.022399414330721],[0.089621566236019,0.045181479305029,-0.032054591923952],[0.020750923082232,0.057452078908682,0.03013077378273]],[[-0.18120422959328,0.15974965691566,-0.062956243753433],[-0.0020086765289307,-0.019727358594537,-0.081891402602196],[0.010581642389297,0.080432273447514,-0.03544582054019]],[[0.050176877528429,0.0053668082691729,0.025047482922673],[-6.9110858021304e-05,-0.13615095615387,-0.079337298870087],[0.13032892346382,0.10248778760433,-0.088076740503311]],[[0.056659664958715,0.11234313994646,0.09117541462183],[0.08161735534668,-0.044142507016659,-0.21918192505836],[0.04035634547472,-0.006437923759222,-0.095334880053997]],[[-0.026611942797899,-0.050092913210392,0.066593021154404],[-0.14479498565197,-0.073787279427052,-0.029025072231889],[0.031980387866497,0.0013773617101833,0.038380790501833]],[[-0.013954779133201,-0.046816419810057,0.10198321193457],[-0.079175785183907,0.072545729577541,-0.052173476666212],[-0.03337761759758,0.024337936192751,-0.072898365557194]],[[-0.09971135109663,-0.011529522016644,0.0045689810067415],[0.1529973000288,0.02012144960463,0.048621516674757],[0.060959942638874,-0.081907480955124,0.047538284212351]],[[0.064858466386795,-0.0045749000273645,0.13525623083115],[-0.11362981051207,0.044290196150541,-0.013923808000982],[-0.093941375613213,0.048647992312908,0.018663896247745]],[[-0.053123913705349,0.08659415692091,-0.023492740467191],[-0.011525535024703,-0.042413033545017,-0.0088555673137307],[-0.070234604179859,0.14028158783913,-0.008408147841692]],[[-0.066509999334812,-0.03030401468277,-0.011533194221556],[0.10460348427296,-0.0059622880071402,-0.076188281178474],[0.0057500060647726,-0.021339705213904,-0.033220622688532]],[[-0.0037552383728325,0.011863455176353,0.12624660134315],[0.0034054580610245,-0.021555677056313,0.12344388663769],[0.069955222308636,-0.20583634078503,0.027020068839192]],[[-0.045094627887011,0.085949473083019,-0.07410803437233],[-0.041004627943039,0.057537522166967,-0.10490549355745],[0.027825931087136,-0.18604373931885,0.095426954329014]],[[-0.071620903909206,-0.15006877481937,0.030541930347681],[0.01370307803154,-0.047053836286068,0.041942473500967],[0.083071641623974,0.058227766305208,0.041456561535597]],[[0.0015404038131237,0.17821969091892,0.059456005692482],[-0.13434579968452,-0.068001560866833,0.053026296198368],[-0.098970860242844,-0.095165230333805,-0.1365443021059]],[[0.04851034656167,-0.024738643318415,-0.098246514797211],[-0.077410526573658,0.015504328534007,0.041021466255188],[-0.041654091328382,0.0018208920955658,0.0071022608317435]],[[-0.00038706004852429,-0.015362870879471,0.081446304917336],[0.015021565370262,0.052121732383966,0.064842708408833],[0.0044617084786296,0.024498736485839,0.009663937613368]],[[-0.033151153475046,-0.037667386233807,0.083572447299957],[-0.060741540044546,0.13523368537426,0.026525201275945],[-0.11309320479631,-0.031308595091105,-0.009045354090631]],[[0.017796600237489,-0.062910959124565,0.034862495958805],[-0.10503195971251,0.049978215247393,0.025887846946716],[-0.040744937956333,-0.041659597307444,-0.1295512765646]],[[0.027152460068464,0.030326319858432,-0.019054867327213],[0.00040251619066112,-0.086675450205803,-0.030641075223684],[-0.05504684150219,-0.051550030708313,0.10673668980598]],[[0.094877682626247,-0.14326691627502,0.002266155788675],[-0.011225030757487,0.0012368466705084,0.081185169517994],[-0.049239184707403,0.067069634795189,-0.019984001293778]],[[-0.0620750002563,-0.022801069542766,-0.20248471200466],[0.059303268790245,-0.19292260706425,0.011945680715144],[0.041648268699646,-0.11210335791111,-0.015011472627521]],[[0.013842318207026,-0.017108775675297,0.035893347114325],[0.013592374511063,-0.1064460426569,0.067067623138428],[-0.10747928917408,-0.15274831652641,0.085731141269207]],[[0.12763403356075,-0.021478570997715,0.078974448144436],[-0.024020051583648,-0.02037650719285,0.023577054962516],[0.070318855345249,-0.041109591722488,0.10979724675417]],[[0.043867539614439,-0.11284876614809,-0.080975450575352],[0.13218112289906,-0.062149118632078,0.046724148094654],[0.050057627260685,-0.10588819533587,0.023059768602252]],[[-0.038136355578899,-0.022215707227588,0.011991595849395],[0.03792729228735,0.00025843209004961,-0.063033290207386],[-0.064371228218079,0.048480033874512,0.013971590436995]],[[0.10811711847782,-0.050848495215178,-0.015875726938248],[-0.079966582357883,0.010036653839052,0.049941223114729],[-0.003369513200596,-0.0084780333563685,0.08400197327137]],[[-0.055183488875628,0.00098181725479662,0.026330560445786],[-0.046129211783409,-0.020552208647132,0.11443395912647],[-0.068483330309391,0.079351305961609,-0.076206140220165]],[[0.04301005974412,-0.044147443026304,0.076934568583965],[-0.07834542542696,-0.035928010940552,-0.064319916069508],[0.0048186387866735,0.093754172325134,-0.01101875025779]],[[-0.11981631070375,-0.02721143886447,-0.069843038916588],[0.0079308953136206,0.075272276997566,0.041569255292416],[-0.061886940151453,-0.0066889063455164,0.061780739575624]],[[-0.17741295695305,-0.019724994897842,0.0017096396768466],[-0.047842998057604,-0.027024284005165,0.19629487395287],[-0.104910351336,0.16585293412209,-0.11678422242403]],[[-0.008141609840095,-0.02082653157413,-0.093188636004925],[0.041057147085667,-0.017568707466125,-0.049340929836035],[-0.043664786964655,0.092050634324551,-0.017080198973417]],[[-0.079326659440994,-0.07391731441021,-0.053609497845173],[0.061543747782707,-0.017942287027836,-0.029522065073252],[-0.086893737316132,-0.050027921795845,-0.015367450192571]],[[0.034992881119251,0.084509313106537,-0.0342136323452],[0.02855240739882,0.023374397307634,0.024534611031413],[0.072152331471443,0.073712222278118,0.0042683412320912]],[[0.10760666429996,-0.012616671621799,-0.10575761646032],[-0.18561147153378,-0.12173010408878,0.093230739235878],[-0.09769994020462,-0.15732099115849,-0.044299528002739]],[[0.12748822569847,0.1093746945262,-0.081030666828156],[-0.076561830937862,-0.011267192661762,0.022131524980068],[-0.07930825650692,0.031803037971258,0.082529306411743]],[[-0.01478810608387,0.060251872986555,-0.038617014884949],[0.098660290241241,0.013767235912383,-0.025537988170981],[-0.019584437832236,0.066851809620857,0.0015724739059806]],[[-0.02558272331953,0.0096926232799888,-0.11966781318188],[-0.0044083842076361,-0.0027411624323577,-0.059785611927509],[0.15144102275372,-0.0027867646422237,-0.031605180352926]],[[-0.070453196763992,-0.0066975085064769,0.07371861487627],[0.038012880831957,0.093287527561188,-0.048616863787174],[-0.0041696038097143,0.02610944584012,-0.04946680739522]],[[-0.064796350896358,-0.1034668982029,-0.015420153737068],[-0.12080932408571,0.12174019962549,0.0095217069610953],[-0.029169188812375,-0.018898390233517,-0.12582676112652]],[[0.12702308595181,0.10169903188944,-0.33857223391533],[-0.036321982741356,-0.075298823416233,0.0028637202922255],[-0.16481046378613,-0.19421339035034,0.14057931303978]]],[[[-0.0085544930770993,0.035012528300285,0.0049386513419449],[-0.030234850943089,0.025468086823821,0.03094338439405],[0.023849301040173,-0.034335937350988,-0.049814485013485]],[[-0.04727727919817,0.075071178376675,0.10525394976139],[-0.085909247398376,0.03633813932538,0.020834671333432],[-0.099420495331287,0.077901624143124,-0.0025604413822293]],[[-0.066010139882565,-0.0052817491814494,0.011943413875997],[-0.18698841333389,-0.21566243469715,-0.02683973684907],[-0.27334865927696,-0.17231410741806,0.0051107411272824]],[[-0.10149289667606,-0.049796402454376,-0.060172006487846],[0.12568014860153,0.2348206192255,-0.046480000019073],[0.14800456166267,0.14247527718544,0.0084179658442736]],[[0.072864107787609,0.028705460950732,-0.12398786842823],[-0.039185892790556,0.039043933153152,0.069591097533703],[-0.054799892008305,-0.035006307065487,-0.021591430529952]],[[-0.078989110887051,-0.0033256378956139,-0.07158524543047],[-0.070196807384491,-0.039372835308313,-0.017341922968626],[0.018659468740225,0.017123494297266,0.0062187663279474]],[[0.014454419724643,-0.10455717146397,-0.077468506991863],[0.10309272259474,-0.039560306817293,0.13192021846771],[0.011062923818827,-0.092391714453697,0.01298741530627]],[[-0.01910294778645,0.018587969243526,-0.086852073669434],[-0.057897157967091,0.12471621483564,0.040886741131544],[-0.0133145628497,-0.11255662888288,0.01929228939116]],[[-0.0046047675423324,0.095860339701176,0.055183224380016],[-0.024966023862362,-0.026024077087641,-0.012462113052607],[-0.041087493300438,-0.068022824823856,0.019844230264425]],[[0.038318939507008,0.053209938108921,0.049191422760487],[-0.002176552079618,-0.068274527788162,-0.054606001824141],[-0.081341184675694,0.19266377389431,0.021802976727486]],[[-0.082966521382332,-0.026927143335342,-0.0063565126620233],[-0.021941129118204,-0.017941422760487,-0.0036735010799021],[-0.026186998933554,0.0015602490166202,-0.0030622272752225]],[[0.033787507563829,0.066108837723732,-0.021904369816184],[0.11703818291426,-0.1234540194273,-0.0031077011954039],[-0.00552321318537,0.051741223782301,-0.03736038506031]],[[-0.17136834561825,-0.12973062694073,0.093720018863678],[-0.1395109295845,-0.22586151957512,-0.043527856469154],[0.12040568143129,-0.12902703881264,0.019250612705946]],[[-0.15129013359547,0.016622642055154,0.025486838072538],[-0.0029111679177731,-0.13849544525146,-0.012934145517647],[0.033616960048676,-0.018418410792947,0.0043276702053845]],[[0.0076252855360508,0.06323754042387,0.05866401642561],[0.0023151224013418,-0.014190618880093,-0.023302923887968],[0.035042025148869,-0.079105637967587,-0.014430124312639]],[[0.017508041113615,-0.028348470106721,0.050299625843763],[-0.00015518869622611,0.019968451932073,0.081312112510204],[-0.065819166600704,-0.028450952842832,0.0033559815492481]],[[0.01949336566031,-0.06660220772028,0.0050993226468563],[-0.041948851197958,-0.046150267124176,0.048405341804028],[0.022882534191012,-0.0027898359112442,0.030371826142073]],[[-0.062811441719532,-1.7245918570552e-05,0.07559784501791],[-0.042605929076672,-0.033101033419371,0.0070165493525565],[-0.091437175869942,-0.079143889248371,-0.034302227199078]],[[0.018923711031675,-0.069353871047497,0.049204390496016],[0.015765659511089,-0.01722078025341,0.035949893295765],[-0.024665607139468,-0.030238198116422,-0.017435079440475]],[[-0.10535246878862,0.019215295091271,-0.12891626358032],[0.10825241357088,0.04750856384635,0.044614620506763],[0.069131009280682,0.049172770231962,0.11733821034431]],[[-0.022718103602529,0.024396903812885,-0.037278365343809],[-0.055729668587446,0.0081035289913416,-0.040698543190956],[-0.0045160739682615,0.052654810249805,0.020426729694009]],[[-0.084895387291908,-0.091092765331268,-0.05480333045125],[-0.10825848579407,-0.075297594070435,-0.23320029675961],[0.045125924050808,0.10270059853792,0.028925653547049]],[[-0.1134192943573,0.049235593527555,0.036458190530539],[-0.11439748853445,0.12905178964138,-0.088766574859619],[0.008401770144701,0.017493946477771,0.081032320857048]],[[0.090275600552559,0.033433232456446,0.028424264863133],[0.038591202348471,0.05152328684926,0.00093560048844665],[0.0084180273115635,0.062704026699066,-0.012299259193242]],[[0.010827783495188,-0.046439688652754,-0.085493035614491],[0.034456510096788,-0.031150683760643,0.029755847528577],[-0.016704011708498,0.036105953156948,-0.010451440699399]],[[-0.051852289587259,-0.052699886262417,0.017072346061468],[-0.027312139049172,-0.17011430859566,-0.092772014439106],[0.039536289870739,-0.044476252049208,-0.0007347526261583]],[[-0.0457608923316,-0.010770230554044,-0.015733730047941],[0.10773306339979,0.039792742580175,0.011072525754571],[0.10100501030684,0.034478295594454,0.046233553439379]],[[-0.018074473366141,-0.004461373668164,-0.032373275607824],[-0.039136819541454,-0.086171716451645,-0.072410434484482],[-0.029928062111139,0.16787147521973,-0.0025936218444258]],[[0.040901996195316,0.019928215071559,-0.01737791672349],[-0.048940002918243,-0.031598627567291,-0.093732394278049],[0.013771410100162,0.050755195319653,-0.050210393965244]],[[-0.015024660155177,-0.14863778650761,0.025608444586396],[0.033740539103746,0.031054263934493,-0.074529394507408],[0.12360144406557,-0.044062111526728,0.072001419961452]],[[0.13866482675076,-0.11559992283583,0.027748614549637],[-0.11804101616144,-0.003957545850426,-0.062915727496147],[-0.049862999469042,0.12919613718987,0.016508221626282]],[[-0.13910780847073,0.021380860358477,0.035280667245388],[0.037755981087685,0.10184811800718,0.11630138754845],[-0.11990784853697,-0.028374562039971,0.039784517139196]],[[0.021020002663136,0.046120759099722,-0.049427933990955],[0.012636718340218,-0.049423940479755,-0.11079677939415],[0.068951077759266,-0.053291417658329,-0.036638904362917]],[[-0.31780722737312,-0.25107553601265,0.018345106393099],[-0.37150368094444,-0.17977660894394,0.0008074275101535],[-0.01225730124861,0.06240900978446,0.050330717116594]],[[0.034595429897308,-0.076546348631382,-0.029684592038393],[0.05108392983675,-0.095634363591671,-0.105857886374],[0.091182552278042,0.07899747043848,-0.026496913284063]],[[0.12082473933697,0.025953376665711,-0.041997548192739],[0.05707773566246,0.12448009848595,-0.020460925996304],[-0.079318039119244,0.14822860062122,0.018465012311935]],[[-0.034938875585794,-0.062809593975544,-0.1891383677721],[0.099617764353752,0.020578179508448,-0.061465200036764],[0.25092911720276,0.060178387910128,0.069605134427547]],[[-0.17110848426819,-0.076521307229996,0.016507863998413],[-0.18900549411774,0.14339843392372,0.014449851587415],[-0.016143023967743,0.043038286268711,0.084509968757629]],[[-0.050589427351952,-0.0043941559270024,0.096768356859684],[-0.0087521560490131,-0.045510340481997,-0.051423560827971],[-0.035569258034229,0.02795984223485,0.10529769957066]],[[-0.016804890707135,0.036369223147631,-0.045391604304314],[0.0036213288549334,-0.033873304724693,0.056090045720339],[-0.034548368304968,0.083278939127922,0.076500631868839]],[[0.029988255351782,-0.041887786239386,-0.0073475930839777],[0.042345844209194,-0.11699330061674,-0.0025556709151715],[0.032576765865088,0.092177011072636,-0.049931861460209]],[[-0.0029873957391828,0.0078234644606709,0.02108658105135],[-0.1152650937438,-0.20192396640778,-0.073773697018623],[0.058751069009304,0.13861998915672,0.025615639984608]],[[0.0052877748385072,-0.028013722971082,0.041335307061672],[-0.043720025569201,-0.041802328079939,-0.033970460295677],[0.065488703548908,-0.15286509692669,-0.017349880188704]],[[-0.055903825908899,-0.057344615459442,-0.0854087844491],[0.074432022869587,-0.00028029043460265,0.030187331140041],[0.050254665315151,0.05170938745141,-0.0066008716821671]],[[0.0046501024626195,0.0079062441363931,0.026973741129041],[-0.12527488172054,-0.12921756505966,-0.021369878202677],[-0.029774261638522,-0.019840594381094,-0.060653679072857]],[[-0.03053436987102,0.022278351709247,-0.10609719157219],[0.0029054274782538,-0.11502138525248,-0.0097007462754846],[0.071249686181545,0.020533077418804,-0.071481287479401]],[[-0.072485908865929,-0.17657612264156,-0.039872992783785],[0.040312092751265,-0.12933026254177,0.087664797902107],[0.023546930402517,-0.10637524724007,0.0096680754795671]],[[0.0041922116652131,-0.010907241143286,-0.017184391617775],[-0.044891886413097,0.03362288698554,-0.057088263332844],[0.14737264811993,-0.036952301859856,-0.031785488128662]],[[-0.0019375866977498,0.013613007031381,-0.011525033041835],[-0.068244747817516,0.027800554409623,-0.084435544908047],[0.0043553211726248,0.068451009690762,-0.028371812775731]],[[0.031546179205179,-0.040273144841194,-0.023918632417917],[0.0853221565485,-0.10374726355076,-0.0075325658544898],[-0.093021802604198,-0.013788275420666,-0.059051752090454]],[[-0.051543168723583,-0.12848323583603,-0.037265826016665],[0.022900272160769,0.02064036950469,-0.11132016032934],[0.048530030995607,-0.088747628033161,-0.0028708707541227]],[[0.020578363910317,0.021384079009295,0.025636155158281],[0.082927353680134,-0.0032598930411041,0.015149923972785],[-0.078644022345543,0.04735429212451,-0.00044330488890409]],[[0.088033527135849,0.071200653910637,-0.12138544768095],[0.090524919331074,0.062526762485504,-0.031122060492635],[-0.14897595345974,0.033368028700352,-0.095209263265133]],[[0.063385374844074,-0.032836776226759,-0.016880530864],[0.11851722747087,-0.065592370927334,-0.0019648766610771],[-0.1291231662035,-0.072416111826897,-0.0038677447009832]],[[-0.054941538721323,-0.0059915436431766,-0.063935108482838],[-0.12071648985147,0.12062961608171,0.0033121341839433],[-0.016784772276878,0.060904700309038,-0.0038171617779881]],[[0.017391027882695,-0.018185641616583,-0.024206073954701],[-0.002464943099767,0.12614162266254,0.0060605476610363],[-0.051982268691063,0.011131292209029,-0.046740211546421]],[[-0.084155671298504,0.058015398681164,0.099674455821514],[0.039746407419443,0.078235514461994,0.074791632592678],[-0.092029295861721,0.03937915340066,-0.02981879003346]],[[0.014269571751356,-0.12987247109413,-0.0045899944379926],[-0.064351700246334,-0.040277190506458,-0.048620507121086],[0.047874923795462,0.067891716957092,0.018056727945805]],[[-0.042539458721876,-0.034563381224871,0.027062654495239],[0.040481653064489,-0.0087156128138304,-0.020176567137241],[-0.012305771932006,-0.038669690489769,-0.073785215616226]],[[0.042029689997435,0.10303595662117,0.070230461657047],[-0.095511719584465,-0.047840695828199,-0.05015542730689],[-0.072099268436432,-0.022218141704798,0.0163948033005]],[[-0.034791324287653,-0.0021320222876966,0.099902614951134],[-0.0072585702873766,0.056969251483679,-0.070059470832348],[-0.045883808284998,-0.033415731042624,0.019435795024037]],[[0.0076377023942769,0.034053321927786,-0.018602479249239],[-0.038799870759249,0.069550104439259,0.020603807643056],[0.086240470409393,0.071377456188202,0.052562966942787]],[[-0.043637312948704,-0.025520592927933,-0.0010738419368863],[0.00064037571428344,0.063849255442619,0.041086792945862],[0.011796499602497,0.083944886922836,-0.062314663082361]],[[-0.020171569660306,0.07893130928278,-0.0010291483486071],[0.0037155807949603,-0.080903887748718,0.10386396199465],[0.011789236217737,-6.8184235715307e-06,-0.022888708859682]]],[[[0.068397738039494,0.038098126649857,-0.093453928828239],[-0.048842381685972,0.066654175519943,-0.012382146902382],[-0.13755299150944,0.02812491543591,0.074569158256054]],[[0.010092535987496,-0.054857060313225,0.083191819489002],[-0.020289935171604,-0.017147846519947,-0.0036076430696994],[-0.13614532351494,-0.012606855481863,0.071395881474018]],[[-0.067157849669456,0.042756322771311,-0.0071784001775086],[-0.061092216521502,0.023115370422602,0.061981115490198],[0.076240122318268,-0.021577436476946,0.11755469441414]],[[-0.027132323011756,-0.0038204956799746,-0.0196892041713],[0.064871907234192,0.049235049635172,0.031410858035088],[0.099401667714119,-0.055326461791992,-0.053230326622725]],[[0.064766004681587,0.074855893850327,-0.068590492010117],[0.069223918020725,-0.020241018384695,0.045171543955803],[-0.051459062844515,-0.039547581225634,-0.079928599298]],[[-0.0041649220511317,0.0060163559392095,-0.02610044926405],[-0.029731288552284,0.025489246472716,0.027022536844015],[0.01295982580632,0.080610282719135,-0.0057229888625443]],[[-0.0043029133230448,0.086716189980507,-0.032100461423397],[-0.051361605525017,-0.0102110048756,-0.0022046605590731],[0.0056482129730284,-0.04996046423912,0.10281054675579]],[[0.071032807230949,0.10274269431829,0.012380539439619],[0.032643105834723,-0.040563430637121,0.06123673915863],[-0.10133336484432,0.026575591415167,-0.16433008015156]],[[0.05398777872324,0.13732932507992,0.024679446592927],[-0.028282729908824,-0.022437296807766,-0.0033557158894837],[-0.008034186437726,-0.003522232407704,0.038903646171093]],[[0.069109670817852,0.016461629420519,0.087766997516155],[0.066626697778702,-0.2277438044548,0.13397864997387],[-0.018444243818521,0.062201134860516,-0.029206970706582]],[[0.011047361418605,0.020432073622942,-0.051336470991373],[-0.068065337836742,0.1204476878047,-0.010662792250514],[-0.019224137067795,0.1277959048748,0.030882446095347]],[[0.14991872012615,-0.058437425643206,-0.024977300316095],[0.078860335052013,-0.098298758268356,-0.099948726594448],[-0.071844488382339,-0.069210954010487,-0.089822642505169]],[[-0.090889103710651,-0.019910821691155,-0.067792370915413],[0.10101904720068,0.017541544511914,-0.02010809443891],[0.01937772706151,0.042429015040398,0.016396151855588]],[[-0.060992278158665,-0.03276402503252,-0.067152433097363],[-0.042633514851332,-0.071806110441685,0.030675945803523],[0.078044660389423,-0.020889880135655,0.14089925587177]],[[0.023243468254805,-0.085384026169777,0.046430043876171],[-0.046443972736597,0.090329430997372,-0.004019414074719],[-0.066427111625671,-0.015632551163435,0.027349369600415]],[[0.034494079649448,-0.085414186120033,0.072997935116291],[-0.027307480573654,-0.045883238315582,0.073448017239571],[0.067118816077709,-0.13430534303188,0.1132168918848]],[[0.030724806711078,0.042412668466568,-0.035802830010653],[-0.014858918264508,-0.047102220356464,0.012689429335296],[-0.01649859175086,0.061208203434944,-0.008521556854248]],[[-0.029983166605234,-0.021334631368518,-0.12670077383518],[0.030473668128252,-0.034227225929499,0.085096761584282],[0.0089289946481586,0.11841332912445,0.12157562375069]],[[-0.10100754350424,-0.18413487076759,0.031536966562271],[0.042062591761351,0.012125175446272,0.061023734509945],[0.1536622941494,-0.020487120375037,-0.027482723817229]],[[-0.004670845810324,0.11582390964031,-0.020129097625613],[0.012502289377153,0.026508271694183,-0.13142064213753],[0.028521664440632,0.10301155596972,-0.12461373209953]],[[0.081282936036587,-0.087804675102234,0.053780730813742],[0.029165850952268,-0.11852684617043,0.058790288865566],[0.074869699776173,0.0014894590713084,0.066422648727894]],[[-0.087249517440796,0.056060910224915,0.073032163083553],[0.093639545142651,0.023734709247947,-0.043526001274586],[0.028080102056265,-0.011452312581241,-0.061289679259062]],[[0.031721260398626,-0.038287382572889,-0.041799280792475],[0.027395891025662,0.019335895776749,0.0044360314495862],[0.0084708426147699,-0.083486534655094,-0.043074063956738]],[[-0.041598822921515,0.023477712646127,-0.017973160371184],[0.0010342111345381,-0.093812212347984,0.035973645746708],[-0.040250264108181,-0.0086372504010797,-0.05833663418889]],[[-0.050773423165083,0.059599995613098,0.024154730141163],[-0.051813777536154,0.10730439424515,0.018761843442917],[-0.043764688074589,0.027192626148462,0.033173590898514]],[[0.18291395902634,0.03520293533802,-0.13581663370132],[0.24808464944363,-0.15020069479942,-0.13150545954704],[0.029322559013963,-0.10027269273996,-0.074635654687881]],[[-0.013462205417454,0.034111496061087,0.098601020872593],[-0.030029688030481,-0.10364768654108,0.025680186226964],[0.0074507282115519,0.12048963457346,0.0047507621347904]],[[0.031958144158125,0.018864216282964,-0.071154817938805],[-0.026344602927566,-0.075936153531075,0.012700704857707],[-0.042439702898264,0.09900863468647,0.0070373388007283]],[[0.002163149183616,0.062827505171299,-0.10522925108671],[0.17521068453789,-0.08231945335865,0.052034452557564],[0.074446104466915,-0.014547330327332,0.004812206607312]],[[-0.031258754432201,-0.039238784462214,0.056538365781307],[-0.063503511250019,-0.00036096904659644,0.045069042593241],[-0.015562332235277,0.043268222361803,0.05743321403861]],[[0.062803320586681,0.024963585659862,-0.033124782145023],[0.02165799960494,-0.0053971917368472,0.058750938624144],[-0.056560412049294,0.047851696610451,-0.098196819424629]],[[0.017693072557449,-0.023302441462874,0.10282877832651],[-0.028368337079883,0.083274282515049,-0.1164376437664],[-0.068442195653915,-0.0034176991321146,0.0071360501460731]],[[0.057767394930124,-0.021630188450217,-0.05550130456686],[0.09787905216217,-0.10789695382118,0.050985150039196],[0.043456349521875,0.024993143975735,0.0148999793455]],[[-0.03685650229454,-0.043496057391167,-0.028928691521287],[0.049392532557249,-0.042958904057741,-0.019662300124764],[0.038577914237976,0.025165643543005,0.076392233371735]],[[-0.058612693101168,-0.034885071218014,0.043978672474623],[-0.10164235532284,0.036336373537779,-0.049339607357979],[0.11807698756456,-0.0011475798673928,-0.036915972828865]],[[0.10782371461391,0.078161507844925,0.015346938744187],[-0.065965332090855,-0.047841068357229,-0.013177676126361],[-0.042131241410971,-0.072783902287483,-0.048433557152748]],[[-0.01415088865906,-0.048159088939428,-0.11297001689672],[-0.018824720755219,0.088161610066891,-0.0031580692157149],[-0.11742880195379,0.17171908915043,0.099535688757896]],[[0.011277001351118,0.083571828901768,-0.10257260501385],[-0.071623973548412,0.032414890825748,0.1193798109889],[0.052755299955606,-0.021146163344383,-0.048441585153341]],[[0.042610369622707,-0.031051034107804,0.057867597788572],[-0.020364383235574,-0.072792962193489,-0.022745637223125],[0.0095535488799214,0.024539642035961,-0.053229711949825]],[[0.016909196972847,0.092797711491585,-0.020241711288691],[-0.019496981054544,0.0097866551950574,0.057785928249359],[-0.070513658225536,-0.037074826657772,0.025458654388785]],[[0.17908830940723,-0.10841505229473,0.0097344564273953],[0.0076806447468698,-0.049066960811615,-0.058064062148333],[-0.1113838404417,-0.076649561524391,-0.030250445008278]],[[-0.019131248816848,-0.042592398822308,0.025766626000404],[0.056318841874599,0.064721323549747,0.037242773920298],[-0.021435176953673,0.095290899276733,-0.046763546764851]],[[-0.096709705889225,0.04701317474246,0.052882220596075],[-0.072156213223934,-0.024763522669673,0.076417341828346],[0.035569585859776,-0.092026494443417,0.0030946414917707]],[[0.050039891153574,-0.0079451855272055,0.10638184845448],[0.096261233091354,0.084867037832737,0.012350932694972],[-0.01788817346096,-0.027111578732729,-0.092885628342628]],[[-0.065758161246777,0.052544083446264,0.00028351531364024],[0.09101639688015,-0.0035996923688799,0.025291813537478],[-0.003262820886448,0.063553087413311,-0.094351477921009]],[[0.14239795506001,-0.022710515186191,-0.098790742456913],[0.062188714742661,0.074210934340954,-0.080708302557468],[0.053345676511526,0.033810213208199,0.084579586982727]],[[0.037290975451469,-0.038038037717342,0.026522975414991],[0.04123842716217,0.0037152362056077,0.04326343908906],[0.029805958271027,0.080424755811691,-0.026962392032146]],[[0.010045118629932,-0.0077536669559777,0.068449273705482],[-0.10519461333752,0.0097946729511023,-0.065955638885498],[0.0027445000596344,0.14844323694706,-0.043808687478304]],[[-0.11230432242155,-0.0088550318032503,-0.063001491129398],[0.056865621358156,0.05824926123023,0.11002665013075],[-0.080004297196865,0.016769325360656,0.038823839277029]],[[-0.014875613152981,-0.061245962977409,0.027190947905183],[-0.021148521453142,0.059343263506889,0.0027371300384402],[0.063973344862461,-0.065472193062305,-0.019438520073891]],[[-0.025481035932899,0.020301723852754,0.00026713535771705],[0.063310265541077,0.026517402380705,-0.0089472252875566],[0.0093539645895362,-0.11238396167755,0.022388661280274]],[[-0.018378036096692,0.052732571959496,-0.031796623021364],[-0.045943655073643,0.09512373059988,0.11636982113123],[-0.08600477874279,0.067062184214592,-0.0014982857974246]],[[0.017674222588539,-0.090826570987701,0.05978724732995],[0.064521677792072,-0.032932095229626,0.07193911075592],[-0.01017866935581,-0.063016913831234,0.005222522187978]],[[-0.093877851963043,0.056134581565857,0.092456370592117],[-0.12177856266499,0.15962009131908,0.041951529681683],[-0.015517491847277,0.1174546405673,-0.042242255061865]],[[0.054186638444662,-0.066862054169178,0.077432975172997],[-0.046999342739582,0.055021900683641,-0.065589919686317],[0.009172048419714,-0.041469179093838,0.048046834766865]],[[-0.035476513206959,-0.079865761101246,0.05580323189497],[-0.031898364424706,0.11645962297916,0.013268073089421],[0.048544861376286,0.10181125253439,-0.03551097586751]],[[0.055632170289755,-0.11429904401302,-0.0066422633826733],[0.081026874482632,0.12086790800095,-0.022294033318758],[0.0098220705986023,0.033682763576508,-0.10410706698895]],[[-0.0068284077569842,0.060068782418966,0.0063607608899474],[0.036412790417671,0.028977386653423,0.072617538273335],[0.084168002009392,-0.094910599291325,-0.080497145652771]],[[-0.049857519567013,0.027810489758849,0.088815353810787],[0.027124859392643,0.028001358732581,0.051902621984482],[-0.10502555221319,-0.021853778511286,-0.054368428885937]],[[-0.039436664432287,0.023010091856122,-0.07041422277689],[0.032466799020767,-0.057126868516207,-0.045704048126936],[0.11129435896873,0.070558242499828,-0.1167609244585]],[[0.082732774317265,-0.063461728394032,0.13982281088829],[-0.0092076705768704,0.055976927280426,-0.0039185481145978],[-0.13074781000614,0.00409618858248,0.053537949919701]],[[0.030452162027359,0.081407517194748,-0.093711048364639],[-0.07384030520916,0.015518479049206,0.047402493655682],[0.072959691286087,0.13268931210041,-0.046488743275404]],[[0.13104842603207,0.12550589442253,0.030779944732785],[-0.0019899941980839,-0.063511915504932,-0.023609986528754],[0.044623177498579,-0.056297808885574,-0.1909501105547]],[[-0.014050372876227,0.083850376307964,-0.076562970876694],[-0.029795689508319,0.080630473792553,-0.014361307024956],[-0.050588399171829,0.034859143197536,-0.039218239486217]]],[[[-0.11093448102474,0.050321623682976,0.002182362601161],[-0.0085300384089351,-0.030570711940527,0.082604207098484],[-0.10836640745401,0.068546205759048,-0.030190702527761]],[[-0.078058585524559,-0.026147209107876,-0.049201931804419],[-0.029627097770572,-0.0030141437891871,0.065257385373116],[0.043685361742973,0.039212092757225,0.092746220529079]],[[0.050390847027302,0.030888276174664,-0.030177868902683],[0.13651442527771,0.021804586052895,-0.13323952257633],[0.042584650218487,0.082425698637962,0.098704345524311]],[[0.13921508193016,-0.012620757333934,-0.15226039290428],[0.13525842130184,-0.12213172018528,0.074412018060684],[0.028626792132854,0.074226543307304,0.0033432075288147]],[[-0.00098638376221061,-0.034174766391516,-0.11977763473988],[-0.069358564913273,-0.12745463848114,-0.072256527841091],[0.072689093649387,0.074570275843143,0.068405374884605]],[[0.028016895055771,-0.14292201399803,0.013687023892999],[-0.089664325118065,0.10473593324423,0.088789187371731],[0.032061714679003,-0.029393786564469,-0.11006645858288]],[[0.0032934625633061,0.1202289685607,0.0051626679487526],[0.027979824692011,-0.045628197491169,0.059620451182127],[0.055881906300783,0.027816284447908,-0.010102708823979]],[[-0.063280761241913,0.025249432772398,0.11474408209324],[-0.0064579942263663,-0.04985074698925,-0.10404744744301],[-0.10023766756058,0.089964546263218,0.031664058566093]],[[0.026986885815859,0.0017887612339109,-0.047787148505449],[0.064034178853035,-0.001405211049132,-0.072415374219418],[0.04585151001811,-0.014380837790668,-0.011019760742784]],[[0.039716526865959,0.019145520403981,0.084613092243671],[-0.047428030520678,0.028040640056133,0.10546912252903],[0.16720908880234,0.088778406381607,0.11196724325418]],[[-0.03722944483161,-0.008957595564425,-0.051202431321144],[0.009081588126719,0.072918310761452,0.023458857089281],[0.10520631819963,0.013667769730091,0.03158100694418]],[[-0.018965400755405,-0.11136186122894,0.15757714211941],[-0.13612723350525,0.13998091220856,0.10758698731661],[-0.074229344725609,0.026531336829066,0.10444079339504]],[[0.10999145358801,0.0032122358679771,0.0089361360296607],[-0.029844470322132,0.02114493958652,-0.0045354897156358],[0.036245625466108,0.0042819567024708,-0.026021623983979]],[[-0.051250718533993,0.088264383375645,-0.096876583993435],[0.030841683968902,0.08382959663868,0.12194510549307],[-0.074426501989365,-0.08367832005024,-0.043199185281992]],[[0.0040181311778724,-0.014822188764811,-0.063533537089825],[0.038658648729324,-0.095707833766937,0.0053133526816964],[0.072672411799431,-0.063341490924358,-0.13701577484608]],[[0.055793341249228,-0.010445827618241,0.006731144618243],[0.070031523704529,0.0041362531483173,-0.10622714459896],[-0.14405764639378,0.070614069700241,0.051430534571409]],[[-0.01256019808352,0.038522563874722,0.012786459177732],[-0.11292126774788,0.061511721462011,0.036767575889826],[0.043282229453325,-0.11988865584135,-0.13512027263641]],[[0.003558385418728,0.019565273076296,0.017500082030892],[-0.00783671438694,0.04432799294591,-0.071307741105556],[0.059491153806448,-0.086623832583427,0.011945147067308]],[[-0.062672734260559,0.10335199534893,0.0050599244423211],[0.11179439723492,0.078311055898666,-0.1142403408885],[-0.04853031411767,0.063001066446304,-0.19079697132111]],[[0.082288086414337,0.024942267686129,0.064997844398022],[0.0067211780697107,0.086638450622559,-0.034918993711472],[0.1886859536171,-0.083441078662872,0.025967886671424]],[[0.018604012206197,-0.18516109883785,-0.03744537755847],[-0.0217240229249,0.12428607046604,-0.035455815494061],[0.04336166754365,0.065578535199165,0.00041695640538819]],[[0.15049444139004,-0.061068877577782,-0.065900094807148],[0.078412964940071,-0.057420145720243,0.0091297933831811],[0.098029904067516,0.031055580824614,-0.085033126175404]],[[-0.0037536502350122,0.099912144243717,-0.0578891672194],[-0.018314078450203,0.11932891607285,-0.1311290115118],[0.041713584214449,-0.026238456368446,-0.012592135928571]],[[-0.045097235590219,-0.044035948812962,0.074133768677711],[-0.11614845693111,-0.019035579636693,-0.027016442269087],[-0.017401764169335,-0.036530133336782,0.026215573772788]],[[0.0059155263006687,-0.024413846433163,-0.04717568308115],[-0.11284633725882,0.0088841877877712,-0.045648206025362],[0.030532628297806,0.035497698932886,-0.091065756976604]],[[0.12097424268723,-0.07325504720211,-0.049188870936632],[-0.13424350321293,0.11191437393427,-0.06452314555645],[0.060822669416666,0.015096848830581,0.045970182865858]],[[0.092514738440514,0.047243874520063,-0.069223120808601],[-0.049294706434011,-0.071600124239922,0.019298680126667],[0.074634037911892,-0.021562336012721,0.053546976298094]],[[-0.10658827424049,0.045594852417707,0.068179786205292],[-0.047148380428553,0.062932960689068,0.0022893017157912],[-0.0020254193805158,0.046497013419867,-0.14369255304337]],[[0.023931683972478,-0.0486014559865,0.061836108565331],[0.029199250042439,-0.012989344075322,-0.10528215765953],[-0.009485631249845,-0.054011814296246,0.040947027504444]],[[0.060824401676655,0.052630227059126,-0.17904309928417],[0.13466703891754,-0.2050162255764,0.010644508525729],[0.054944336414337,0.058122459799051,-0.035786204040051]],[[-0.09539794921875,0.12415838986635,0.00068335339892656],[-0.016797656193376,-0.040689818561077,0.01718832924962],[-0.16915419697762,-0.066428154706955,0.041717708110809]],[[0.066658861935139,-0.018737480044365,-0.0059484452940524],[0.03527620062232,0.070813372731209,0.16512596607208],[-0.11188951134682,-0.03291429579258,-0.0042217187583447]],[[-0.0033204020000994,-0.079291082918644,-0.15640123188496],[-0.051354549825191,0.0071478886529803,-0.12812979519367],[0.053510066121817,-0.054324861615896,0.071436941623688]],[[-0.18313555419445,0.096755772829056,-0.079324893653393],[-0.01089826785028,0.004922351334244,-0.030088532716036],[0.16503067314625,0.0032311202958226,0.096514604985714]],[[0.053435906767845,0.021391499787569,0.042285267263651],[0.032868888229132,-0.15652975440025,-0.20892879366875],[-0.027192324399948,0.035152155905962,0.016750099137425]],[[-0.015345771797001,-0.023732367902994,0.14057803153992],[0.005949214566499,-0.032169084995985,-0.023342877626419],[-0.028580090031028,-0.086411602795124,0.026487227529287]],[[0.1176223680377,0.11953639239073,-0.048492215573788],[-0.041665002703667,0.078098058700562,-0.059084478765726],[0.029585693031549,-0.11263021081686,0.039206471294165]],[[-0.075282923877239,-0.072489500045776,-0.013254194520414],[0.043321888893843,-0.021719312295318,0.044187311083078],[0.014843005686998,-0.091063857078552,-0.07047750800848]],[[-0.024201648309827,-0.16195268929005,-0.021306455135345],[0.062180738896132,-0.057441253215075,0.11709385365248],[0.031464319676161,0.050375774502754,-0.0026714033447206]],[[-0.095167919993401,-0.0030545515473932,-0.088046856224537],[0.098958298563957,-0.058404538780451,0.1632367670536],[-0.098278477787971,-0.0011236389400437,0.033981770277023]],[[-0.065432123839855,0.013995273038745,-0.004185093101114],[-0.025209182873368,0.12915498018265,0.010742971673608],[0.011151503771544,-0.0329868234694,0.041319619864225]],[[-0.043211504817009,0.0067921825684607,0.011391082778573],[-0.012293733656406,0.0076231146231294,-0.12602153420448],[-0.032447788864374,-0.11140013486147,0.080955006182194]],[[-0.017342615872622,-0.045017991214991,-0.14516241848469],[0.011699017137289,0.0276965405792,-0.019753465428948],[0.0054334937594831,-0.054493941366673,0.019781172275543]],[[0.011995742097497,0.040267504751682,0.0046270065940917],[-0.049852840602398,-0.0028081343043596,0.083318427205086],[-0.13725407421589,0.008465813472867,0.021766720339656]],[[0.026838069781661,0.011559414677322,0.031834229826927],[0.0098428018391132,-0.014413613826036,-0.07193648815155],[-0.032754767686129,-0.037364132702351,0.060377433896065]],[[-0.058196809142828,-0.074080474674702,-0.16462580859661],[-0.033585701137781,0.0019610431045294,-0.017148843035102],[0.061621449887753,0.013188772834837,-0.086171366274357]],[[0.0037777947727591,0.095551922917366,-0.069535821676254],[0.013651872985065,-0.087485134601593,-0.011290536262095],[-0.11489723622799,-0.03319538757205,0.079422183334827]],[[0.059587195515633,0.017428833991289,-0.028759129345417],[-0.016049347817898,-0.040353894233704,-0.016667477786541],[0.049572218209505,-0.011697724461555,-0.041584614664316]],[[0.02233555354178,0.0701018050313,-0.024194916710258],[-0.071248680353165,0.12358905375004,0.0087900878861547],[-0.045181397348642,0.13650205731392,-0.053858418017626]],[[-0.02494971640408,0.014084305614233,-0.017649976536632],[-0.083162844181061,0.021234568208456,0.0059612137265503],[-0.021362127736211,-0.11321248114109,0.096935607492924]],[[0.05638162791729,-0.030565636232495,-0.093855388462543],[0.064689241349697,-0.068545505404472,0.0069112754426897],[0.021612519398332,0.088101074099541,0.010565182194114]],[[-0.011614092625678,-0.070213444530964,0.074698321521282],[0.047661680728197,-0.15048724412918,0.075892068445683],[-0.078061893582344,0.031328480690718,-0.080799773335457]],[[0.035684932023287,-0.079477556049824,0.057012181729078],[0.060241062194109,0.038821838796139,-0.069206826388836],[0.065191768109798,0.012819740921259,-0.027709206566215]],[[0.062249008566141,-0.067340575158596,0.064451143145561],[-0.046697314828634,-0.047440744936466,-0.054950047284365],[0.051660344004631,-0.030014213174582,-0.0016385554336011]],[[0.021112490445375,0.016633719205856,0.0020539041142911],[-0.012194300070405,-0.24453215301037,-0.038712244480848],[-0.1154630035162,-0.0053232526406646,-0.0072681121528149]],[[0.073379509150982,-0.042347088456154,-0.26469168066978],[0.038564246147871,-0.090981803834438,-0.030500780791044],[-0.0014158324338496,-0.065791815519333,-0.10364127159119]],[[0.039811823517084,0.023797851055861,-0.090009264647961],[0.10179340094328,-0.075063601136208,0.15722396969795],[-0.038731258362532,0.15086068212986,0.043185155838728]],[[0.012020340189338,-0.024325266480446,0.017625872045755],[-0.09136389195919,-0.050980400294065,-0.059779915958643],[0.094587072730064,-0.083154626190662,0.023694436997175]],[[0.073563866317272,0.12849178910255,0.057779777795076],[-0.068029925227165,-0.026803944259882,-0.12205550819635],[0.052818644791842,-0.094985581934452,-0.17597177624702]],[[-0.070108406245708,-0.039206489920616,-0.071952424943447],[-0.049030475318432,0.0020036620553583,-0.047663282603025],[0.022584490478039,0.16459937393665,0.10517532378435]],[[0.036249987781048,0.0023783140350133,-0.078724533319473],[0.031568206846714,-0.089084379374981,-0.085233375430107],[0.10106994956732,0.10213758796453,-0.09453971683979]],[[0.060701746493578,-0.038361299782991,-0.10953805595636],[0.15640644729137,-0.14215368032455,-0.035407669842243],[0.11836232244968,-0.018497673794627,0.013815888203681]],[[-0.13307203352451,0.07119008153677,-0.061279907822609],[0.0030105088371783,-0.056975424289703,0.10215558111668],[-0.070670165121555,0.12388676404953,0.011324089020491]],[[-0.12220364063978,0.083058036863804,0.11052397638559],[0.031021347269416,0.087522707879543,-0.1242398545146],[0.085285410284996,0.011382572352886,-0.024881860241294]]],[[[-0.01903422549367,0.010330221615732,0.098948910832405],[-0.0057635437697172,0.010610280558467,-0.058688685297966],[-0.01372118294239,0.009737522341311,-0.0059864376671612]],[[-0.0398217625916,-0.030206385999918,-0.13744799792767],[-0.0040982170030475,0.13181382417679,-0.017642877995968],[0.11144199222326,0.086184158921242,-0.1509727537632]],[[0.045252844691277,-0.19492492079735,-0.16375294327736],[-0.020156798884273,-0.23926220834255,-0.16745892167091],[-0.17893934249878,0.00085190124809742,-0.087606273591518]],[[-0.13964545726776,0.047543622553349,-0.15514260530472],[0.058721229434013,-0.051650866866112,0.034102216362953],[-0.049595065414906,-0.068520843982697,-0.018777050077915]],[[0.036085572093725,0.023887604475021,0.076925709843636],[-0.036048047244549,-0.051076639443636,-0.062313314527273],[0.12239768356085,-0.016320431604981,0.037885416299105]],[[0.034281428903341,-0.040602948516607,0.11197121441364],[-0.081529401242733,0.071024291217327,0.041684351861477],[0.11607230454683,-0.043423276394606,-0.047665067017078]],[[0.099915497004986,-0.078940622508526,0.060937780886889],[-0.038059268146753,0.01960975676775,-0.024363860487938],[-0.21849918365479,-0.0063530928455293,0.013141803443432]],[[0.078903593122959,0.040182065218687,0.0760677754879],[0.02511190995574,0.029984848573804,0.01254157256335],[-0.055949043482542,-0.21384462714195,-0.096165768802166]],[[0.024576976895332,0.044285669922829,0.006958395242691],[-0.044547017663717,-0.070678003132343,-0.0011176038533449],[-0.008296387270093,0.025391791015863,0.026265654712915]],[[0.086549066007137,0.12990917265415,0.13340002298355],[-0.018323885276914,-0.0045911888591945,-0.047795474529266],[-0.026102678850293,0.0086883585900068,0.075942888855934]],[[0.019211238250136,0.01976715773344,-0.027164030820131],[-0.067543543875217,0.077868424355984,-0.043512754142284],[-0.0040270704776049,0.044572163373232,0.062433071434498]],[[-0.049927148967981,-0.065728262066841,0.051856528967619],[-0.042447619140148,-0.064379014074802,0.058416862040758],[-0.066056340932846,0.078774824738503,0.025841703638434]],[[0.11634773761034,-0.24789762496948,-0.20290693640709],[0.0036470221821219,0.044671703130007,-0.11269397288561],[0.061469621956348,-0.0042983200401068,0.083380945026875]],[[0.023922860622406,-0.092559307813644,0.11261086165905],[-0.045729249715805,-0.045037444680929,0.088503673672676],[-0.058416049927473,0.14496098458767,-0.066802375018597]],[[0.024588430300355,0.0073855631053448,-0.10598486661911],[0.028441859409213,0.073942273855209,0.0071120639331639],[0.053845897316933,0.00041643748409115,-0.096158795058727]],[[0.035576902329922,0.012459740974009,-0.02640075981617],[-0.059933535754681,0.027705755084753,0.022883294150233],[-0.017232855781913,-0.042445205152035,0.068330772221088]],[[0.020297043025494,-0.0275729727,-0.0017052824841812],[0.020291352644563,0.080099605023861,0.048095490783453],[-0.016273671761155,-0.08573155105114,0.027988309040666]],[[0.021311104297638,-0.18552458286285,-0.11498914659023],[0.011024603620172,-0.037387501448393,-0.046587247401476],[0.085816442966461,-0.0038486029952765,-0.0060616140253842]],[[-0.041437115520239,-0.15704530477524,-0.019982254132628],[-0.11552701890469,0.13514415919781,-0.018866010010242],[-0.023863611742854,0.038123331964016,0.059251725673676]],[[-0.061722401529551,-0.0098757809028029,-0.24677720665932],[-0.041591223329306,0.20354506373405,0.016839444637299],[0.18029794096947,-0.14659309387207,0.19194720685482]],[[0.054371573030949,0.10647869110107,0.088358514010906],[-0.050343707203865,0.03034626878798,0.09437870234251],[0.091193452477455,-0.10872712731361,0.00050373835256323]],[[-0.079039141535759,-0.060138754546642,-0.23590233922005],[-0.13841305673122,0.20343062281609,0.10637898743153],[0.080968528985977,0.1442541629076,0.088119156658649]],[[-0.14327104389668,0.021092761307955,-0.028749814257026],[-0.12714883685112,-0.010487090796232,-0.070398904383183],[0.10979217290878,0.077637687325478,0.050536528229713]],[[-0.053862400352955,-0.057798564434052,0.066386088728905],[-0.0056127551943064,-0.13841463625431,0.068622671067715],[-0.11429787427187,-0.023295409977436,-0.086767122149467]],[[-0.11959030479193,0.085439212620258,0.16700707376003],[0.023588493466377,0.093041144311428,-0.082866415381432],[-0.0095793483778834,-0.060448098927736,0.059586428105831]],[[-0.024815110489726,-0.19260573387146,-0.076617769896984],[0.019286904484034,0.0072358977049589,-0.023972652852535],[0.059110853821039,0.0058398111723363,0.0023503263946623]],[[-0.022811504080892,0.0027419072575867,-0.023701295256615],[-0.098220638930798,0.016370557248592,0.031992170959711],[-0.05864368006587,0.05138249322772,0.078300558030605]],[[0.042403999716043,0.10679817199707,0.021692709997296],[-0.12908233702183,-0.035753648728132,-0.00080778420669958],[-0.043550875037909,-0.030479753389955,-0.019569402560592]],[[0.055309738963842,0.054779939353466,-0.070159636437893],[0.018412850797176,-0.075511910021305,-0.042941134423018],[0.058550320565701,-0.038498423993587,0.0053205410949886]],[[-0.011189050972462,0.061742726713419,0.0075351162813604],[0.11547680944204,-0.064286701381207,0.12202962487936],[-0.13612101972103,0.042011499404907,0.086918413639069]],[[0.063946947455406,-0.043449427932501,-0.0017312386771664],[0.065404072403908,0.063693813979626,0.039556480944157],[-0.038667939603329,0.067526079714298,0.086141347885132]],[[0.053171623498201,0.0062509998679161,-0.042345106601715],[-0.028788767755032,-0.10941943526268,0.17731329798698],[-0.053513988852501,0.014357160776854,0.11036785691977]],[[-0.074850507080555,-0.0087036872282624,0.0053133680485189],[-0.059119358658791,0.026349233463407,0.041944935917854],[-0.055444311350584,-0.14060662686825,-0.020723333582282]],[[-0.12066703289747,-0.12012573331594,0.052723847329617],[-0.23039337992668,-0.094332076609135,-0.030961496755481],[-0.12919297814369,-0.12635427713394,-0.03136695548892]],[[-0.049201902002096,-0.097030334174633,-0.1255294829607],[0.071422889828682,0.062792122364044,0.24643136560917],[0.042271453887224,0.0060426867567003,0.13878288865089]],[[-0.015646249055862,0.12569749355316,0.27305164933205],[0.013311720453203,-0.063253320753574,0.058214776217937],[-0.15599720180035,-0.17333297431469,-0.039712700992823]],[[-0.040159687399864,0.037445887923241,0.074349485337734],[0.04213248193264,-0.051003716886044,0.02359427511692],[-0.075417511165142,-0.24956572055817,0.049127649515867]],[[0.1023840084672,-0.17042909562588,-0.12826083600521],[0.063778221607208,-0.0059401048347354,0.0033354442566633],[0.075902909040451,-0.029318518936634,0.085851147770882]],[[0.00018500797159504,0.011911623179913,0.0016641705296934],[0.0083599099889398,-0.023209473118186,0.034298148006201],[-0.079850412905216,0.071997076272964,0.0016030605183914]],[[0.12229266762733,0.052435930818319,-0.038360748440027],[0.12637661397457,-0.1691719442606,0.068382777273655],[-0.0035332101397216,-0.034854799509048,0.078301846981049]],[[-0.069503463804722,0.16279603540897,-0.14817443490028],[0.021946284919977,-0.0078035495243967,-0.00040265324059874],[0.067074991762638,0.041006665676832,0.10088877379894]],[[0.043853268027306,-0.018492361530662,0.092078775167465],[-0.0509177967906,-0.079745851457119,0.05251133441925],[0.13636188209057,0.1717631071806,-0.16281867027283]],[[-0.081704705953598,0.023753583431244,-0.11496351659298],[0.059476725757122,0.064227245748043,0.00059799815062433],[-0.034605324268341,0.0450669080019,-0.012604901567101]],[[-0.015589509159327,-0.033425591886044,0.019238114356995],[0.069111362099648,0.034608446061611,-0.020183891057968],[0.0079677402973175,-0.026438485831022,-0.034861132502556]],[[0.0057279947213829,-0.021571449935436,0.028243079781532],[0.0022997504565865,-0.031137354671955,0.0047624777071178],[-0.097066007554531,-0.016051599755883,-0.079789720475674]],[[-0.057763982564211,0.052033826708794,0.091990515589714],[-0.023685123771429,-0.09758235514164,0.15387897193432],[-0.065203748643398,-0.074230849742889,-0.12401294708252]],[[0.071016915142536,0.034016836434603,0.072345614433289],[0.061151750385761,0.070457831025124,0.060259234160185],[0.022998170927167,-0.01314037013799,0.045352961868048]],[[0.014428790658712,0.066310882568359,-0.064351253211498],[-0.051058210432529,-0.016230285167694,0.0048476727679372],[0.014135616831481,0.073881067335606,4.1855906601995e-05]],[[0.010846819728613,0.086690135300159,0.062526196241379],[0.030227622017264,-0.048962246626616,0.042891547083855],[-0.071110531687737,0.031919289380312,0.08044794946909]],[[0.089395426213741,0.058917995542288,-0.042238675057888],[-0.088757455348969,-0.059963941574097,0.034248322248459],[0.011192433536053,-0.0010956369806081,-0.061173632740974]],[[0.01969263330102,0.051765516400337,-0.18922699987888],[-0.014021462760866,0.093746706843376,-0.1410283446312],[0.088762015104294,-0.1697888225317,-0.13701616227627]],[[-0.027581719681621,-0.019215129315853,-0.075108997523785],[0.01786177046597,-0.028266154229641,0.11902561038733],[-0.020053882151842,-0.024863880127668,-0.066174812614918]],[[0.042466782033443,0.0021044262684882,0.017496842890978],[-0.024833152070642,-0.10546900331974,0.057874340564013],[-0.044729173183441,0.062355749309063,0.0813272818923]],[[0.027915500104427,-0.089493989944458,-0.046226106584072],[0.015247797593474,-0.026654774323106,0.059361573308706],[-0.11539403349161,-0.10148806869984,0.0073309815488756]],[[-0.038998242467642,-0.0063536637462676,-0.016285859048367],[-0.15621925890446,-0.11766441166401,-0.087022952735424],[-0.071046270430088,-0.037766184657812,-0.12021917104721]],[[-0.019841892644763,0.042903646826744,-0.10268845409155],[-0.027214335277677,0.0059746638871729,0.0040980959311128],[0.017637904733419,0.065437383949757,-0.045320700854063]],[[-0.068038128316402,-0.03819590061903,-0.019228557124734],[-0.0076929801143706,-0.15748932957649,0.03327476605773],[0.17652057111263,0.091568157076836,0.012050253339112]],[[0.17927235364914,-0.0036741495132446,0.010034333914518],[-0.16522824764252,0.12327980995178,-0.012899255380034],[-0.016167152673006,-0.13272978365421,0.051317319273949]],[[-0.081219501793385,0.15525822341442,-0.067185394465923],[0.0070405015721917,0.081515088677406,-0.057577017694712],[0.085058189928532,-0.023617424070835,-0.069929301738739]],[[-0.047463767230511,-0.036259554326534,-0.21514065563679],[-0.035533457994461,0.097851470112801,-0.13846781849861],[0.014294281601906,0.11789738386869,-0.015197056345642]],[[-0.15159550309181,0.048741862177849,0.030926737934351],[-0.11569844186306,-0.067459225654602,-0.096063412725925],[-0.061459992080927,-0.053085993975401,0.022069755941629]],[[0.083213157951832,0.13321809470654,0.032756052911282],[-0.10831049829721,0.07089588791132,0.11562491208315],[-0.032316658645868,-0.025311466306448,-0.091313861310482]],[[-0.0053224847652018,0.028938375413418,-0.05504897236824],[-0.1012914404273,-0.14318542182446,0.011229457333684],[-0.14021986722946,-0.074196830391884,0.024017099291086]],[[-0.044000700116158,0.029447952285409,-0.012592361308634],[0.099094070494175,-0.047378592193127,-0.060562137514353],[0.077314384281635,0.090619318187237,-0.004110908601433]]],[[[0.13223262131214,0.06883143633604,-0.017197193577886],[0.024522066116333,-0.063984073698521,0.048319317400455],[0.043257415294647,-0.055867817252874,-0.011106330901384]],[[0.067332290112972,0.030861485749483,0.02497217617929],[-0.064275436103344,0.10868198424578,-0.059844207018614],[-0.079369872808456,-0.1470044106245,0.051698751747608]],[[0.12872284650803,0.041772957891226,-0.014889613725245],[-0.030046656727791,0.0024162128102034,-0.049588214606047],[0.035507742315531,-0.004007279407233,-0.019830832257867]],[[-0.07641813904047,-0.12701953947544,0.021244782954454],[-0.10146047174931,0.020824491977692,-0.046638682484627],[0.10879607498646,0.10428206622601,-0.17346651852131]],[[-0.069016739726067,-0.057764772325754,0.075304426252842],[-0.013111590407789,0.065551176667213,0.045071940869093],[-0.061946637928486,-0.039664063602686,-0.095062293112278]],[[0.0030056950636208,0.088513046503067,-0.050692837685347],[0.0098787397146225,0.026086207479239,-0.048438221216202],[-0.10473399609327,0.051862791180611,0.079878650605679]],[[-0.20033842325211,-0.028946187347174,-0.15254494547844],[0.11776375770569,0.077656053006649,-0.16231018304825],[0.10490193217993,-0.046043373644352,0.092038594186306]],[[0.1178831756115,0.056491278111935,0.15772520005703],[0.0147715639323,0.071892485022545,-0.0066217198036611],[-0.10522302240133,0.052384823560715,0.011306941509247]],[[-0.03819140419364,-0.0151223000139,0.024405047297478],[0.013214270584285,0.11780278384686,0.0081398114562035],[-0.053264815360308,-0.082465440034866,0.017415748909116]],[[-0.074851602315903,0.068423546850681,-0.0090894997119904],[-0.1006693392992,-0.041165579110384,-0.0085773896425962],[-0.078135810792446,-0.030176540836692,-0.0029472350142896]],[[0.017409203574061,-0.025580985471606,-0.017378313466907],[-0.056115012615919,-0.059011146426201,0.013389161787927],[-0.11661888659,-0.15085837244987,-0.019672038033605]],[[0.08591752499342,0.15329556167126,0.01313478499651],[0.13917514681816,-0.056790180504322,-0.089597456157207],[-0.043640147894621,-0.1119108274579,-0.21977165341377]],[[-0.087293684482574,-0.052787873893976,-0.083732113242149],[-0.16256631910801,0.011577034369111,0.0033799530938268],[-0.072636969387531,-0.090031608939171,-0.066880941390991]],[[0.10750348865986,0.051565311849117,0.16132086515427],[-0.08336403220892,-0.069589853286743,0.03772209957242],[-0.0038188903126866,-0.05799176543951,-0.047515634447336]],[[-0.065756775438786,-0.042306903749704,0.10864749550819],[0.071239307522774,-0.014813702553511,-0.015710722655058],[-0.051613260060549,-0.0016710568452254,-0.0046271001920104]],[[-0.14002798497677,0.039019454270601,-0.00010742676386144],[-0.064561136066914,0.05530433729291,-0.015641985461116],[0.021502442657948,-0.079110011458397,-0.093407966196537]],[[-0.0094826621934772,0.038696471601725,-0.00031017485889606],[0.13467806577682,-0.022243577986956,-0.04745227843523],[-0.011160488240421,0.08952260017395,-0.04658879339695]],[[-0.042416606098413,0.14422801136971,0.039886366575956],[-0.019315097481012,-0.17683038115501,0.040193483233452],[-0.079047083854675,-0.027589159086347,-0.01356787700206]],[[0.020730894058943,0.17979793250561,0.090801320970058],[-0.099317900836468,-0.078514859080315,-0.043567731976509],[3.2901280064834e-05,-0.10162302106619,-0.090865045785904]],[[0.020432205870748,0.22167894244194,-0.16937915980816],[0.030924057587981,-0.0051845046691597,-0.0013989028520882],[-0.18064494431019,-0.092366918921471,-0.093496203422546]],[[-0.015788501128554,0.062855459749699,0.012138513848186],[0.0037698056548834,-0.005896560382098,-0.018478270620108],[0.04485122859478,0.00017312502313871,-0.017113665118814]],[[0.042960084974766,-0.0038619553670287,0.0068878438323736],[0.035495448857546,-0.13337764143944,-0.082429081201553],[-0.019879760220647,-0.085696786642075,-0.0081612821668386]],[[-0.10504543036222,0.16558888554573,0.1684732735157],[-0.11098486185074,0.11427269130945,-0.022853577509522],[-0.036067269742489,-0.087053455412388,-0.14165289700031]],[[0.042723521590233,-0.05278929695487,0.023724084720016],[0.048519816249609,0.049398452043533,0.096680000424385],[-0.00042990883230232,0.041904248297215,0.049616515636444]],[[0.080291047692299,-0.0020558591932058,0.044133752584457],[-0.023591030389071,-0.030767655000091,-0.043875154107809],[-0.11568058282137,-0.13612395524979,0.15112203359604]],[[-0.0042223311029375,-0.10698308795691,-0.12241569906473],[0.034042540937662,-0.0099967168644071,0.010744941420853],[-0.19446370005608,0.10446381568909,0.065134175121784]],[[0.021716024726629,0.0099090095609426,-0.065045952796936],[0.097197659313679,0.0090903593227267,-0.012146934866905],[0.080886244773865,0.057716093957424,-0.013403275050223]],[[-0.15329164266586,-0.0074007948860526,-0.051688253879547],[0.096519008278847,0.13358445465565,-0.051304716616869],[0.079308524727821,-0.13278087973595,0.041241869330406]],[[-0.072306670248508,-0.078758582472801,0.035742204636335],[0.09111937135458,-0.099276557564735,0.094110064208508],[-0.073513045907021,0.0075718532316387,0.12201765179634]],[[-0.17681048810482,0.064379908144474,-0.10434041917324],[0.0011673864210024,-0.052511163055897,-0.11012755334377],[-0.022350292652845,0.11422023177147,-0.058626104146242]],[[0.10234019160271,-0.028114415705204,0.11348421871662],[-0.12579342722893,0.011594454757869,0.036910157650709],[-0.10427096486092,-0.11706578731537,-0.082606054842472]],[[-0.074266418814659,0.091762848198414,0.11758124083281],[-0.16382059454918,-0.11913004517555,0.052403144538403],[-0.031611759215593,-0.036360055208206,-0.10690466314554]],[[0.16315640509129,-0.13591986894608,0.089967504143715],[-0.0060286861844361,-0.0015337284421548,0.002644726075232],[0.0082487063482404,-0.044035207480192,0.11064931005239]],[[-0.10319262742996,0.00098271132446826,-0.019559532403946],[-0.060301523655653,-0.10798212140799,0.010230019688606],[-0.081840261816978,-0.051613084971905,-0.019271651282907]],[[0.0421521961689,0.058954145759344,0.18856303393841],[-0.014994833618402,-0.066489517688751,0.078854858875275],[-0.058019299060106,-0.18819932639599,-0.10705339163542]],[[-0.038845755159855,-0.16861291229725,-0.047471474856138],[0.058434203267097,0.071728020906448,-0.005604365374893],[0.03079123981297,0.099234364926815,0.058136135339737]],[[-0.11809086799622,-0.10047093033791,0.037326138466597],[-0.10872249305248,0.0073939738795161,0.081761345267296],[-0.020137097686529,0.006732476875186,0.046974144876003]],[[0.081647291779518,0.087011210620403,0.0038880980573595],[-0.069659516215324,-0.072120398283005,-0.046819891780615],[-0.2526328265667,-0.058617949485779,0.05830467119813]],[[-0.018685229122639,0.047089118510485,0.0034660771489143],[-0.043386969715357,-0.0093881767243147,0.023933790624142],[-0.014605963602662,-0.015275633893907,-0.0094183506444097]],[[0.0012402780121192,-0.11067368090153,0.030176319181919],[-0.034188188612461,0.021528290584683,-0.075093001127243],[-0.021283537149429,-0.061249285936356,0.089221268892288]],[[0.045597683638334,0.048184432089329,0.072664737701416],[0.036092508584261,0.027468448504806,0.013489155098796],[-0.045644409954548,-0.032942224293947,0.04056491330266]],[[-0.15618273615837,0.014871074818075,-0.014818578027189],[0.04649280756712,-0.1140630915761,-0.048305209726095],[-0.13551066815853,0.064185693860054,0.0022019040770829]],[[0.074526086449623,0.09191857278347,-0.008395086042583],[0.081805303692818,0.037592552602291,0.17909352481365],[-0.021813493221998,-0.10001884400845,-0.16483117640018]],[[0.056265935301781,0.10262995958328,-0.10724606364965],[-0.060376644134521,-0.049516301602125,0.018417784944177],[-0.029748195782304,0.06144230812788,0.013247000984848]],[[-0.010139410383999,-0.13475820422173,0.034647092223167],[-0.026765182614326,-0.039698768407106,0.083716504275799],[0.057646110653877,0.028413355350494,0.076520770788193]],[[0.068293400108814,0.014821035787463,0.036025688052177],[-0.021055085584521,-0.10528801381588,0.021738639101386],[0.13167703151703,-0.04074751958251,0.14216122031212]],[[-0.05586214363575,0.066626504063606,0.030947552993894],[0.023652724921703,0.024529848247766,-0.035889554768801],[-0.15464815497398,-0.049329623579979,-0.035040132701397]],[[-0.017808215692639,-0.10561733692884,-0.18085445463657],[-0.0066653708927333,0.036191001534462,-0.0029087103903294],[0.052942402660847,0.029591789469123,0.039562933146954]],[[0.0709033831954,0.030419865623116,0.068195581436157],[0.071047760546207,-0.049061674624681,-0.12923178076744],[-0.019949859008193,-0.13423152267933,0.054294638335705]],[[0.074615232646465,0.02133777923882,0.027966883033514],[-0.065878041088581,-0.010678061284125,0.080231182277203],[0.01037800963968,-0.075721897184849,-0.19211389124393]],[[0.052260350435972,-0.059786606580019,-0.10713776946068],[-0.056546922773123,-0.038046333938837,0.060380186885595],[0.023637715727091,0.00010363601177232,0.066042453050613]],[[-0.038563057780266,0.034349154680967,0.012567449361086],[-0.031823974102736,0.084938034415245,0.035195387899876],[-0.10528323799372,-0.17292974889278,-0.054047375917435]],[[0.035445045679808,-0.14074328541756,0.065082311630249],[-0.088587030768394,0.040194623172283,-0.076332077383995],[0.081053078174591,-0.078701786696911,-0.089621037244797]],[[0.12913782894611,0.047560680657625,0.03463564440608],[-0.0078609064221382,-0.0067425300367177,0.058027148246765],[-0.00057427363935858,-0.050909422338009,0.14960420131683]],[[-0.08177824318409,-0.085279740393162,-0.022783434018493],[-0.01767086237669,0.00068103964440525,-0.083823978900909],[-0.030749307945371,0.072557248175144,0.058460868895054]],[[0.024912914261222,-0.18488952517509,-1.9808659999399e-05],[-0.010936320759356,0.096439577639103,0.19114899635315],[0.015890533104539,-0.019924836233258,0.11427257955074]],[[0.1176488250494,0.19552282989025,0.20794619619846],[-0.018502114340663,0.13610683381557,0.1313421279192],[0.008254611864686,-0.13324449956417,-0.016477541998029]],[[-0.13665325939655,0.093477107584476,-0.097118020057678],[-0.064748294651508,-0.031761299818754,-0.012133803218603],[0.10961084067822,-0.080376416444778,0.02117176912725]],[[-0.034675545990467,0.076591305434704,0.040658988058567],[0.073784194886684,0.022422699257731,0.017798388376832],[-0.043551612645388,-0.16440001130104,0.14528454840183]],[[-0.065588861703873,0.17777076363564,-0.007941972464323],[-0.091624185442924,0.028422851115465,-0.031439691781998],[-0.15136961638927,-0.075379110872746,0.057105861604214]],[[0.068979784846306,-0.05539882928133,-0.046054638922215],[-0.015999557450414,0.0026867690030485,0.0080436673015356],[-0.013332158327103,0.06742587685585,0.11540508270264]],[[-0.081391602754593,-0.073631562292576,-0.16537848114967],[0.034685701131821,-0.13071338832378,-0.020974352955818],[0.02638472430408,0.024015257135034,0.067858777940273]],[[0.11335095763206,-0.042880706489086,0.065754242241383],[-0.023838283494115,0.0028146910481155,-0.043428473174572],[-0.060423489660025,-0.037449341267347,0.12555065751076]],[[0.084335304796696,0.10261366516352,-0.066494509577751],[-0.05763752758503,-0.033006563782692,0.045221339911222],[-0.16893203556538,0.031002175062895,-0.0086907353252172]]],[[[0.0040963897481561,0.039351351559162,-0.028305599465966],[0.039906345307827,-0.086280137300491,0.032782237976789],[0.12571458518505,-0.050145655870438,-0.084388345479965]],[[0.076064579188824,-0.028421292081475,-0.10805620998144],[0.048476252704859,0.013125818222761,0.01044605858624],[0.12810985743999,-0.14820823073387,0.021387964487076]],[[-0.060988288372755,-0.032924432307482,-0.049685869365931],[0.083705350756645,-0.051188860088587,-0.040657497942448],[0.28834220767021,0.11017989367247,0.096126340329647]],[[0.047756247222424,-0.064477242529392,0.099054299294949],[-0.0065687601454556,-0.046285916119814,0.10546910017729],[-0.0058797812089324,-0.13819898664951,0.015426476486027]],[[-0.029262395575643,-0.033002678304911,-0.014496844261885],[0.058888252824545,0.03423049300909,-0.025891160592437],[-0.086687214672565,0.017603222280741,-0.098542131483555]],[[0.036408044397831,0.057788390666246,0.070836320519447],[0.010638552717865,-0.049939803779125,-0.0065496978349984],[0.020845197141171,-0.19677077233791,-0.047536928206682]],[[0.063739769160748,-0.036892037838697,0.10153905302286],[0.03457835316658,-0.017184037715197,-0.055152028799057],[-0.01810478977859,-0.12009432166815,0.040338426828384]],[[-0.024529552087188,0.083944767713547,0.06127242743969],[0.084295585751534,-0.11801575869322,-0.026223098859191],[-0.016026495024562,-0.074093133211136,0.0036626849323511]],[[-0.082094639539719,-0.05786095932126,-0.10740541666746],[0.028591619804502,0.044799163937569,0.023148788139224],[0.050170458853245,0.046168047934771,0.073171861469746]],[[0.071563512086868,-0.13030184805393,0.045621383935213],[-0.0094381086528301,-0.015412122011185,0.099619351327419],[0.05345069244504,-0.093566372990608,-0.0022399357985705]],[[-0.033512264490128,-0.07191263884306,-0.018089456483722],[-0.12061356753111,0.048604525625706,0.10616303235292],[0.023374123498797,-0.038387946784496,0.061207860708237]],[[-0.028399392962456,0.018478026613593,0.082964666187763],[-0.099037930369377,-0.13287492096424,-0.0014692876720801],[0.090011976659298,-0.03212570771575,0.20128692686558]],[[-0.03091842122376,-0.069883413612843,-0.15596343576908],[0.1285914927721,0.15265393257141,0.069315299391747],[0.0055044325999916,0.056156117469072,-0.065649978816509]],[[-0.018750362098217,-0.16031128168106,-0.13281989097595],[0.047160711139441,-0.037520129233599,0.073326386511326],[-0.0048541566357017,-0.069270506501198,0.031206307932734]],[[0.0067005245946348,-0.025794187560678,-0.045832648873329],[0.066040717065334,-0.079268150031567,-0.054950598627329],[0.011507068760693,0.0038947707507759,0.08903044462204]],[[0.08775844424963,-0.19484654068947,0.068078577518463],[-0.056189205497503,0.027830494567752,0.023098014295101],[0.049186531454325,0.12221001088619,-0.061903811991215]],[[0.033598963171244,-0.0040832981467247,0.012906267307699],[-0.12382839620113,0.013339941389859,-0.11049876362085],[0.0055563114583492,-0.04471105709672,0.1091682612896]],[[-0.11665910482407,-0.12144067138433,-0.10321199148893],[0.096895970404148,0.14182351529598,0.055586382746696],[0.09537173807621,0.12375283241272,-0.025515355169773]],[[-0.089197091758251,0.016832051798701,-0.071021348237991],[0.0070230881683528,0.1718166321516,0.02602406963706],[-0.046419121325016,0.06145853921771,0.035082753747702]],[[-0.20947363972664,0.052389953285456,0.099119178950787],[0.0083443960174918,0.037913110107183,0.058997981250286],[-0.0030776087660342,0.072279550135136,-0.14808511734009]],[[0.097017005085945,-0.0087026413530111,0.010386707261205],[0.012610320933163,-0.041777204722166,0.053145475685596],[0.095499709248543,-0.022370725870132,0.024033354595304]],[[-0.014188023284078,0.15267924964428,-0.028486479073763],[0.15456035733223,0.16798883676529,0.084500089287758],[-0.072986222803593,-0.046279080212116,-0.083828069269657]],[[-0.0010189609602094,0.057578202337027,-0.021481461822987],[-0.029187446460128,-0.03558786958456,0.18956696987152],[-0.24723774194717,0.0035398912150413,0.0039826328866184]],[[-0.22977986931801,-0.013897879980505,-0.18056039512157],[-0.10305664688349,-0.18833097815514,-0.1052306368947],[-0.10172963887453,-0.13013218343258,0.0038536400534213]],[[-0.10808618366718,-0.083736762404442,0.1272416561842],[0.020676404237747,0.037331320345402,0.040579970926046],[-0.071088552474976,0.025033472105861,-0.0646603256464]],[[0.074460633099079,-0.089538298547268,-0.12188541144133],[0.18474857509136,0.082072593271732,-0.004470428917557],[-0.031649805605412,0.13639122247696,-0.091704927384853]],[[0.045529048889875,0.060809087008238,0.099542446434498],[-0.092839941382408,-0.073554866015911,-0.086169362068176],[-0.012419800274074,-0.0073274741880596,-0.038627717643976]],[[0.027737295255065,0.031509034335613,-0.0023844265379012],[-0.059429537504911,0.014589568600059,0.02248115837574],[-0.098321385681629,0.062824562191963,-0.011714559979737]],[[0.024869900196791,-0.035116393119097,-0.070834420621395],[0.0062404409982264,0.020797109231353,0.1102806404233],[0.05143378674984,0.005071422085166,-0.15380108356476]],[[0.037945222109556,0.017178958281875,-0.11006837338209],[0.14595368504524,-0.0084072817116976,0.051311101764441],[-0.03500359505415,-0.14006948471069,-0.060793183743954]],[[0.016095761209726,0.052013855427504,0.049355056136847],[0.0037978843320161,0.069286502897739,-0.015587121248245],[-0.10669293254614,-0.055521424859762,-0.005894388537854]],[[-0.031795535236597,-0.0093626426532865,0.094430588185787],[0.069000586867332,-0.10702493041754,-0.10145075619221],[-0.094051599502563,-0.028042294085026,-0.053827531635761]],[[0.006647689267993,0.0045015728101134,-0.0034967272076756],[0.023484384641051,0.018035843968391,0.0058071087114513],[-0.031698562204838,-0.065094672143459,0.02072718180716]],[[0.049890730530024,0.048974186182022,-0.047852829098701],[0.053786654025316,-0.038058388978243,-0.031083066016436],[0.098515897989273,0.021549010649323,0.035717234015465]],[[0.010080273263156,-0.018921544775367,-0.024913908913732],[0.066346228122711,-0.047670837491751,0.0051571428775787],[0.031835854053497,-0.081844799220562,0.031998801976442]],[[-0.035911954939365,0.0084331752732396,0.059180457144976],[-0.21006880700588,-0.14807936549187,0.03323607891798],[-0.0071768993511796,-0.10939840972424,-0.00037630347651429]],[[0.033170484006405,0.014840141870081,0.0084906993433833],[0.021909773349762,-0.11243180930614,0.1374649554491],[-0.055758815258741,-0.059173639863729,0.014824663288891]],[[-0.20798835158348,-0.029795056208968,0.0331618078053],[0.037022020667791,-0.08478157967329,0.11884954571724],[0.039993967860937,0.010215170681477,0.062432061880827]],[[-0.090750277042389,-0.049812782555819,-0.064127236604691],[-0.15982601046562,-0.072954796254635,0.093821957707405],[0.08699319511652,0.025316080078483,-0.022518675774336]],[[-0.023600539192557,-0.07617612183094,0.07483834028244],[-0.046410396695137,-0.01716180332005,-0.058562338352203],[0.099307104945183,0.042672671377659,-0.062890529632568]],[[0.072384342551231,-0.11733196675777,0.019590605050325],[0.053684320300817,0.015172854997218,0.060620497912169],[-0.060158725827932,-0.034268401563168,-0.056159731000662]],[[-4.3581720092334e-05,0.060908544808626,-0.055127963423729],[0.085066862404346,-0.18060459196568,-0.048872068524361],[0.043564580380917,-0.021529629826546,-0.002498100977391]],[[-0.025418547913432,-0.075472429394722,-0.058798283338547],[0.0434525385499,0.012176717631519,0.033774465322495],[0.064324721693993,-0.020181065425277,-0.055611845105886]],[[0.082063190639019,0.12661591172218,0.034135580062866],[0.018547084182501,-0.034284200519323,0.056878346949816],[-0.17824713885784,-0.01386390440166,-0.10112997889519]],[[0.05809673294425,-0.050814520567656,-0.090074636042118],[-0.047966308891773,0.00063815125031397,0.028908910229802],[-0.14250150322914,-0.0026531512849033,0.028927667066455]],[[0.1302687972784,-0.21274827420712,-0.08962944149971],[0.015466320328414,-0.077986806631088,0.061674013733864],[0.087254345417023,-0.073105044662952,0.0029177654068917]],[[0.1184361577034,0.092505648732185,0.024950854480267],[0.059022728353739,0.032485343515873,-0.0040092836134136],[-0.074058420956135,0.1605643928051,-0.080014899373055]],[[-0.11102490127087,0.053529098629951,-0.078582294285297],[-0.047255877405405,-0.068196021020412,-0.087917290627956],[0.078482165932655,-0.023999636992812,-0.030441042035818]],[[0.024504585191607,0.061928424984217,-0.01205946598202],[-0.15366201102734,0.019043039530516,0.024570856243372],[-0.097978316247463,0.043974958360195,0.05736007168889]],[[-0.089700423181057,0.019133290275931,-0.044555108994246],[0.0093470104038715,0.072025455534458,0.043498829007149],[-0.0017445801058784,-0.079509615898132,0.020801262930036]],[[0.021913940086961,-0.038136657327414,0.035523161292076],[0.023605899885297,-0.038223180919886,0.0093945767730474],[0.12306731194258,-0.068163111805916,-0.020971391350031]],[[-0.047100216150284,0.036227364093065,0.02288244664669],[-0.0094379093497992,0.008035502396524,-0.053651195019484],[-0.12517243623734,-0.077335774898529,-0.0045148930512369]],[[-0.084151409566402,-0.084932655096054,0.096435382962227],[-0.005165935959667,0.037541080266237,0.0098845958709717],[0.094002947211266,-0.055839583277702,0.024178201332688]],[[-0.085657462477684,0.1032100841403,-0.16083362698555],[-0.010151727125049,0.055054064840078,0.10158751904964],[0.086156465113163,0.075567007064819,-0.012165651656687]],[[0.054938115179539,0.065137781202793,0.028493652120233],[-0.11297554522753,-0.038654930889606,-0.058771822601557],[-0.21980056166649,-0.3286906182766,0.030751274898648]],[[0.098188228905201,-0.15628810226917,-0.095932707190514],[-0.033534590154886,-0.13506077229977,0.025605695322156],[-0.009660242125392,-0.041323736310005,-0.0096635427325964]],[[-0.17674280703068,0.0088144261389971,0.083594180643559],[0.0055711511522532,0.012822387740016,-0.022418586537242],[0.015601573511958,0.097716696560383,0.018448082730174]],[[0.029733464121819,0.0076053189113736,-0.057022791355848],[-0.043009262531996,0.0045479708351195,0.073226943612099],[-0.067750997841358,0.012857978232205,-0.031090386211872]],[[-0.10023190826178,-0.020234713330865,0.10694813728333],[0.0092031639069319,-0.012327769771218,-0.00069150433409959],[-0.036036886274815,-0.015055150724947,0.10123328119516]],[[-0.14650529623032,-0.030928697437048,0.14860451221466],[-0.031861186027527,-0.079557925462723,0.0052310014143586],[-0.03960644826293,0.02008930966258,-0.020201049745083]],[[-0.025160180404782,0.10496031492949,-0.07383169978857],[-0.0017388308187947,-0.021170161664486,-0.14227965474129],[0.06141434237361,-0.025732509791851,-0.049690939486027]],[[0.067659199237823,-0.055766448378563,0.046482019126415],[-0.0086829224601388,-0.12763951718807,-0.034718755632639],[-0.042931996285915,0.024208705872297,0.032821632921696]],[[-0.18393431603909,-0.02784557454288,-0.057133220136166],[0.047033607959747,0.11076155304909,-0.086636655032635],[-0.079579241573811,-0.094196401536465,0.031277637928724]],[[0.059343386441469,-0.15746214985847,0.10432521998882],[-0.072210408747196,-0.024507451802492,-0.085358127951622],[0.10505297780037,-0.094536498188972,-0.021133460104465]]],[[[0.031022626906633,0.086556576192379,-0.065384358167648],[0.026221504434943,-0.10844445973635,-0.090419746935368],[-0.073325723409653,-0.026131428778172,0.057186007499695]],[[0.041195813566446,-0.0075456514023244,-0.060006380081177],[0.0074200127273798,-0.019411362707615,0.091285467147827],[0.019797060638666,0.074843965470791,-0.041042361408472]],[[0.025316847488284,0.028313236311078,0.027254834771156],[-0.074412100017071,-0.071331217885017,0.05444673076272],[-0.11432721465826,0.078121833503246,-0.024356903508306]],[[-0.049756482243538,0.069835543632507,0.025812214240432],[-0.021237278357148,-0.01490216050297,0.060950290411711],[-0.12157228589058,0.044222943484783,0.05751671269536]],[[0.066274464130402,-0.046963028609753,0.065739035606384],[-0.013515233062208,0.051155526190996,0.033249005675316],[0.032595284283161,-0.018437290564179,-0.098063439130783]],[[-0.021849317476153,0.17258384823799,0.015848578885198],[0.025409584864974,-0.046735905110836,0.12263536453247],[0.11836030334234,-0.20448280870914,-0.032257579267025]],[[0.13199561834335,-0.050495147705078,0.021689299494028],[0.11702997237444,0.04951936006546,-0.19884893298149],[0.019399832934141,0.11631448566914,-0.03109610080719]],[[0.058759246021509,0.02083108946681,0.044143911451101],[-0.095771163702011,0.028158064931631,-0.03392481803894],[0.027461901307106,-0.027337683364749,0.00075834523886442]],[[-0.042627964168787,-0.008373087272048,0.095142729580402],[0.040212124586105,0.057223238050938,0.031910337507725],[-0.074592635035515,-0.053730454295874,-0.017377268522978]],[[-0.19362626969814,0.026397859677672,0.078787058591843],[0.099430203437805,-0.094690315425396,0.061884351074696],[0.042979005724192,0.03184449672699,-0.027785455808043]],[[-0.12414897978306,-0.035122506320477,-0.090087257325649],[-0.084948420524597,0.078583262860775,0.050652660429478],[0.056566566228867,0.032440487295389,-0.044647760689259]],[[-0.019816545769572,0.13797332346439,-0.12654376029968],[0.10349082946777,-0.037303529679775,0.054234329611063],[0.013731903396547,0.096153043210506,-0.065092511475086]],[[-0.0055620884522796,-0.11594676971436,0.096164211630821],[-0.046173669397831,0.077193565666676,-0.15295888483524],[0.062216844409704,-0.014607476070523,0.06275051087141]],[[0.095849633216858,0.065388150513172,0.10835532099009],[-0.092850215733051,0.031033985316753,-0.091024540364742],[-0.088569715619087,-0.047064404934645,0.078365884721279]],[[0.008221335709095,-0.033293258398771,0.1018245741725],[-0.076287999749184,0.034590650349855,0.095505364239216],[-0.082074485719204,-0.08815324306488,-0.0046764193102717]],[[-0.0095247756689787,0.069160357117653,-0.13062655925751],[-0.028394652530551,0.11453671008348,0.10478540509939],[0.03205843269825,-0.027021558955312,-0.095741756260395]],[[-0.045501720160246,0.016164084896445,-0.074077494442463],[0.065097711980343,-0.057346805930138,-0.015944676473737],[-0.094910494983196,0.015300798229873,-0.0097986236214638]],[[0.071464590728283,0.1745438426733,0.085281915962696],[0.0017582440050319,-0.056203152984381,-0.010866069234908],[-0.11843227595091,0.0074020107276738,0.042546175420284]],[[0.035103973001242,0.075031280517578,-0.015653850510716],[0.020602498203516,0.004787206184119,-0.083515286445618],[-0.060228727757931,0.13146434724331,0.002197632798925]],[[0.10865516215563,0.00019106789841317,0.15334591269493],[-0.024647256359458,0.064650811254978,-0.21644175052643],[0.15048339962959,-0.11470036953688,0.14233902096748]],[[0.014212246984243,0.049966484308243,0.073336996138096],[0.028467727825046,0.0010495689930394,-0.014718350954354],[-0.049110986292362,-0.043037604540586,0.050146248191595]],[[-0.073615692555904,-0.11536797881126,-0.032520528882742],[-0.04375484213233,-0.015846459195018,0.032328084111214],[0.024335995316505,-0.02557179145515,-0.033620681613684]],[[0.078785806894302,0.0084829796105623,0.19114789366722],[-0.18563494086266,-0.019230492413044,0.076147221028805],[-0.0684624761343,-0.081986993551254,0.072991967201233]],[[0.058217294514179,-0.0028661862015724,-0.010603024624288],[-0.056883201003075,0.079666249454021,0.073167107999325],[0.0030040724668652,0.020247587934136,0.0045198262669146]],[[0.10822663456202,0.031727742403746,0.019879546016455],[-0.0081612132489681,-0.013835907913744,-0.04797488078475],[0.033424243330956,-0.063643708825111,0.026878040283918]],[[0.088410720229149,0.054188437759876,-0.078711055219173],[-0.0115218879655,0.10599786043167,-0.017703339457512],[0.12060134112835,0.13777910172939,-0.021314390003681]],[[-0.053662747144699,0.02096183411777,0.069220378994942],[-0.045316033065319,-0.086725890636444,0.051845137029886],[0.0096068363636732,0.00034025963395834,0.00017817858315539]],[[0.018857873976231,-0.045940890908241,-0.011896478943527],[-0.041341926902533,0.038184944540262,0.056068982928991],[-0.086115218698978,0.06175797060132,0.023465072736144]],[[0.0092406561598182,0.041704289615154,0.049120865762234],[-0.13231904804707,0.084552899003029,-0.10023162513971],[0.0032247509807348,0.0031575670000166,0.20793053507805]],[[-0.1000472009182,-0.01011508423835,-0.020593157038093],[-0.050520811229944,0.018463848158717,0.05146112665534],[-0.036509070545435,-0.031808789819479,0.019723048433661]],[[0.052659101784229,-0.03953467682004,0.060750670731068],[0.047510750591755,0.11570806801319,-0.13755075633526],[0.045908972620964,0.06909766793251,0.049547519534826]],[[0.046272840350866,-0.081399880349636,-0.15740236639977],[0.012296796776354,0.069478020071983,-0.015562889166176],[0.074754469096661,0.059668734669685,0.087186932563782]],[[0.078420996665955,0.0053726229816675,0.11749526113272],[-0.024102056398988,0.036942988634109,-0.022893536835909],[-0.013442265801132,-0.012921242974699,0.082698300480843]],[[0.03572853282094,-0.050726402550936,0.048526830971241],[0.065025240182877,0.056921031326056,-0.070496618747711],[-0.070653490722179,-0.036594677716494,-0.010945832356811]],[[0.032216724008322,0.095577612519264,-0.061601307243109],[-0.16733002662659,-0.030165363103151,0.09690035879612],[0.032599184662104,-0.1104726716876,-0.09216620773077]],[[-0.13322189450264,0.067153096199036,-0.13100704550743],[0.03840995579958,-0.11190405488014,0.075750224292278],[-0.079511202871799,0.044653214514256,-0.14861862361431]],[[-0.068995274603367,0.050996195524931,0.18821136653423],[-0.1728358566761,-0.032188102602959,0.095909625291824],[-0.16436065733433,-0.036595478653908,0.041351944208145]],[[0.013065260834992,-0.063410721719265,0.076631456613541],[-0.098704025149345,0.015737937763333,0.067052572965622],[0.004607018083334,-0.00059937889454886,0.11042499542236]],[[-0.014676410704851,0.016851361840963,0.019652709364891],[-0.042827546596527,0.039790902286768,0.027144825085998],[-0.11746247112751,-0.05757812410593,0.19709479808807]],[[-0.086344659328461,0.043056011199951,-0.069465965032578],[0.12715432047844,-0.085399277508259,0.11755591630936],[-0.066757597029209,0.030339172109962,-0.033932406455278]],[[-0.10034342110157,0.18657077848911,-0.0085478937253356],[0.044602707028389,-0.15782736241817,0.10974433273077],[0.032150205224752,0.075775049626827,0.068821638822556]],[[0.030105480924249,-0.0088801318779588,-0.0033124017063528],[-0.091729655861855,0.079281896352768,0.12090979516506],[0.011235324665904,0.05997547134757,0.098794467747211]],[[-0.053630661219358,0.0402637347579,0.035964418202639],[-0.10341470688581,-0.075075067579746,0.023194281384349],[-0.035600125789642,0.010987398214638,-0.024092262610793]],[[0.018714694306254,-0.046139359474182,-0.014142970554531],[-0.027590626850724,-0.020078651607037,-0.062996417284012],[0.085303544998169,0.061066400259733,0.0051458855159581]],[[0.025103207677603,0.084172382950783,0.09266859292984],[0.047005202621222,0.014460453763604,-0.12159505486488],[-0.10914566367865,-0.025229586288333,-0.0065968041308224]],[[-0.11966439336538,0.10082698613405,0.07841020822525],[0.021420342847705,-0.10029700398445,-0.051410745829344],[-0.10275195538998,-0.0079031204804778,0.0021002702414989]],[[-0.018520414829254,0.0040950984694064,-0.04158004373312],[-0.076460644602776,-0.032743230462074,-0.0011849032016471],[-0.017290787771344,-0.0018329811282456,0.095204673707485]],[[0.091011457145214,0.030265564098954,-0.043664179742336],[0.096359193325043,-0.089674144983292,0.0078467223793268],[-0.00092993403086439,-0.030716994777322,-0.029757168143988]],[[-0.051171246916056,0.00045839644735679,0.18582631647587],[0.024241069331765,0.028279421851039,-0.081848748028278],[0.010067636147141,0.070332758128643,0.087540216743946]],[[-0.083657152950764,0.080040916800499,0.094940081238747],[-0.036410644650459,0.0031408723443747,0.081228278577328],[-0.10975922644138,-0.060979198664427,-0.025357738137245]],[[0.057237181812525,-0.029393753036857,-0.10343919694424],[-0.050311528146267,-0.016930440440774,-0.043105483055115],[-0.00051449582679197,0.023728121072054,0.034235779196024]],[[-0.059682406485081,0.075180307030678,-0.039283640682697],[-0.0014784085797146,-0.057386573404074,0.050701566040516],[-0.0080985026434064,-0.016129035502672,-0.0043200715444982]],[[-0.13794223964214,-0.0080277267843485,0.01909557916224],[0.049923736602068,-0.035485662519932,-0.086702033877373],[-0.017429865896702,0.010401207022369,0.041548173874617]],[[0.013985202647746,-0.01732068695128,0.044023964554071],[0.095240250229836,-0.11088919639587,0.050981484353542],[-0.0309988129884,-0.050997979938984,-0.014248004183173]],[[-0.020586706697941,0.039815485477448,0.1058813482523],[0.018319303169847,0.018875505775213,0.0018801550613716],[0.00050453009316698,-0.0054354006424546,-0.07839335501194]],[[-0.1815627515316,-0.079671256244183,0.14294509589672],[0.036733191460371,0.031490530818701,-0.00054101325804368],[-0.013808663934469,0.048470471054316,-0.01156906876713]],[[0.060517750680447,-0.033102598041296,0.050494264811277],[0.14386223256588,0.087612852454185,0.13567915558815],[0.1555330902338,0.12270187586546,0.059625316411257]],[[0.087205789983273,0.033573735505342,0.025061322376132],[0.036807358264923,-0.011682656593621,-0.043855708092451],[-0.15930750966072,-0.0595358684659,0.025788215920329]],[[0.083304889500141,-0.044009450823069,-0.0029560399707407],[-0.079616375267506,0.032147414982319,0.024697363376617],[0.023303376510739,-0.045736387372017,0.015222936868668]],[[-1.6791995221865e-05,0.1588648557663,0.15490184724331],[-0.056754134595394,-0.014934276230633,-0.094305709004402],[0.033685978502035,-0.021804643794894,-0.064211487770081]],[[-0.0011015078052878,-0.032859526574612,0.057686757296324],[0.050760805606842,0.058949414640665,-0.023380974307656],[-0.052133303135633,-0.090261809527874,0.10611362010241]],[[0.15288184583187,0.11571948230267,0.25708168745041],[-0.029442939907312,-0.051673151552677,-0.10263884812593],[-0.089040279388428,-0.1035139337182,0.043399158865213]],[[-0.079610012471676,-0.010036695748568,-0.054571487009525],[-0.053937718272209,-0.044471997767687,-0.047452744096518],[0.094546049833298,0.0054300180636346,0.058124635368586]],[[-0.026685528457165,0.056726064532995,-0.061523552983999],[-0.066607616841793,0.11323007941246,0.19831101596355],[-0.11882223188877,0.091678313910961,-0.065409272909164]]],[[[0.012540737167001,0.11597640812397,-0.040373425930738],[0.049076244235039,0.032145407050848,-0.20510642230511],[-0.004775429610163,-0.10237147659063,-0.0046657342463732]],[[0.11606711149216,0.03993696346879,0.0025922358036041],[0.023623928427696,0.020498359575868,0.040972873568535],[-0.08888353407383,-0.13739828765392,0.10238531976938]],[[0.023304026573896,-0.013050870038569,0.00085642916383222],[-0.021735556423664,0.010962086729705,-0.055796928703785],[-0.12862667441368,-0.068328350782394,0.0080901756882668]],[[-0.074964120984077,0.037449598312378,-0.064946964383125],[0.022076554596424,-0.056380432099104,0.051425941288471],[0.079152382910252,0.039269536733627,-0.13326866924763]],[[0.11903830617666,0.028479348868132,0.011810960248113],[-0.062301021069288,0.034954864531755,-0.080292880535126],[-0.065030939877033,0.026663772761822,-0.047110237181187]],[[0.039925668388605,0.080463796854019,0.014363070949912],[-0.095094613730907,-0.12647470831871,0.0092884236946702],[-0.01323616784066,0.066268891096115,-0.14126652479172]],[[-0.088563442230225,-0.019098119810224,-0.0658850222826],[-0.10974340885878,-0.15676988661289,-0.012767635285854],[0.08530505746603,-0.0061421818099916,0.052493412047625]],[[-0.032402902841568,-0.072352908551693,-0.0076811923645437],[-0.039637453854084,0.041479635983706,-0.043671626597643],[-0.067836113274097,0.050536781549454,0.03312636166811]],[[-0.059673395007849,-0.052826065570116,-0.02875803783536],[-0.069349244236946,0.032397396862507,0.045886795967817],[0.0044279503636062,0.10902407765388,0.036518860608339]],[[0.023500099778175,0.062437504529953,-0.041233599185944],[-0.036468043923378,-0.0049452320672572,-0.17247107625008],[0.049676258116961,0.08829740434885,-0.033143181353807]],[[-0.1189676001668,0.072255797684193,-0.0157471280545],[-0.064809493720531,0.043693289160728,-0.063245609402657],[-0.082463577389717,-0.055510878562927,-0.04409421235323]],[[-0.041467685252428,-0.20522789657116,-0.027065608650446],[0.032637726515532,0.087668001651764,0.028793830424547],[-0.038136135786772,-0.0081050880253315,0.028275823220611]],[[-0.033782135695219,0.015270973555744,-0.014919593930244],[-0.13641083240509,-0.091062195599079,0.012001768685877],[0.032043572515249,-0.064964957535267,-0.017820762470365]],[[-0.043728116899729,0.024709256365895,-0.016863388940692],[-0.041904475539923,0.024054788053036,-0.0048650279641151],[0.08490613847971,0.048047319054604,-0.0062335184775293]],[[0.033521883189678,-0.075888335704803,-0.11255629360676],[0.019694628193974,-0.13407328724861,-0.04464403167367],[0.010389943607152,0.116689696908,0.085283309221268]],[[0.057338736951351,0.050282411277294,-0.11489681899548],[-0.05892226099968,-0.11292538791895,-0.024576727300882],[-0.0074704666621983,0.10620363801718,0.073780849575996]],[[0.041442081332207,-0.06077079847455,-0.0014838667120785],[0.051990821957588,0.020685359835625,0.01095999032259],[-0.10797207802534,0.0089719025418162,-0.0080456547439098]],[[-0.036131072789431,-0.05977450683713,0.01415325794369],[-0.13052226603031,-0.056109290570021,0.051818665117025],[-0.15281650424004,-0.05872680991888,0.014170912094414]],[[-0.015232942998409,-0.030081598088145,0.028183272108436],[0.05978936329484,-0.093855649232864,-0.0061599500477314],[-0.062073264271021,0.048312339931726,-0.17599959671497]],[[0.21994894742966,-0.0095218177884817,-0.071566522121429],[0.047187075018883,0.016726782545447,0.03990825265646],[-0.03131390362978,0.024198304861784,-0.091227523982525]],[[-0.023403519764543,-0.031285751610994,-0.046741846948862],[-0.0048700501210988,0.022055301815271,0.01946902833879],[-0.10989412665367,-0.037323247641325,-0.011238609440625]],[[-0.13022217154503,0.12030294537544,0.044103298336267],[-0.13702467083931,-0.073945887386799,-0.13066971302032],[0.061998791992664,-0.065368287265301,0.15796840190887]],[[0.089032687246799,-0.012240491807461,0.063986167311668],[-0.15087726712227,0.061384249478579,-0.056956689804792],[-0.079121641814709,0.028620786964893,0.040298312902451]],[[-0.024081410840154,-0.016895202919841,0.026231249794364],[0.082721367478371,-0.13071668148041,0.056361395865679],[-0.041068490594625,0.0086455568671227,0.062151953577995]],[[-0.028572242707014,0.0086671886965632,-0.0065185562707484],[-0.034748002886772,0.057078547775745,-0.11153913289309],[0.063069134950638,0.090027295053005,-0.048593390733004]],[[-0.062848031520844,-0.059191826730967,0.066938549280167],[-0.23691082000732,0.024606727063656,0.023556068539619],[-0.12436544150114,0.17924609780312,0.067491270601749]],[[-0.01758486405015,-0.029983883723617,-0.13384291529655],[-0.05605997517705,0.053608197718859,0.017099780961871],[0.10382220894098,0.096798218786716,-0.067541129887104]],[[0.0081112841144204,-0.0045654559507966,0.0064247525297105],[-0.01969338580966,-0.033943712711334,0.12746649980545],[-0.048761185258627,-0.19233357906342,-0.15085315704346]],[[-0.095860943198204,0.13161958754063,-0.0522590726614],[-0.030087916180491,-0.12168027460575,0.014565989375114],[0.033707246184349,-0.072995714843273,-0.053726430982351]],[[-0.10857366770506,-0.015453472733498,0.12787839770317],[0.058144208043814,-0.05500166118145,0.085381016135216],[0.038090597838163,0.13234807550907,0.04552698880434]],[[0.088626004755497,0.024867370724678,0.033598925918341],[0.032499901950359,0.056106667965651,-0.050160929560661],[-0.033561032265425,0.0091677289456129,-0.15617109835148]],[[0.040085673332214,-0.017607226967812,-0.019771739840508],[-0.034920684993267,0.038496982306242,-0.0042694513686001],[-0.082399196922779,-0.21973188221455,-0.15731503069401]],[[0.09612549841404,-0.14912386238575,0.03128120675683],[0.01537455059588,-0.025870189070702,0.053741130977869],[-0.040904674679041,-0.056477200239897,-0.033875301480293]],[[-0.017220823094249,-0.059077557176352,0.057087756693363],[-0.13501486182213,0.0644556209445,-0.0022955115418881],[-0.074800685048103,0.070806488394737,0.10179395228624]],[[-0.099555179476738,0.042695622891188,0.073717795312405],[0.0074115265160799,-0.12245272099972,-0.029191609472036],[0.09446407854557,-0.080692961812019,-0.038063418120146]],[[-0.13230329751968,-0.071268431842327,0.017363732680678],[0.099293313920498,0.073905348777771,0.00084483769023791],[-0.17261870205402,0.078894421458244,-0.057939436286688]],[[-0.0069024180993438,-0.014030379243195,-0.080251693725586],[-0.1016891002655,0.079827457666397,0.039968710392714],[-0.044625300914049,-0.010097020305693,0.041933100670576]],[[0.10656072199345,-0.091548003256321,-0.005854909773916],[-0.077284246683121,-0.02403100579977,-0.070210285484791],[-0.0027681202627718,0.064750321209431,-0.034756142646074]],[[-0.055616062134504,0.003283551428467,0.14321699738503],[-0.087226405739784,0.076327636837959,-0.11001489311457],[-0.0030661823693663,-0.053346302360296,0.061571907252073]],[[0.057811427861452,-0.0090671284124255,0.042003091424704],[-0.085901238024235,0.037924509495497,-0.054357215762138],[0.059114623814821,-0.030720373615623,-0.0038524449337274]],[[0.0028706924058497,-0.07597903162241,0.055173765867949],[0.040745303034782,0.018920542672276,-0.057848259806633],[0.068329028785229,0.016884244978428,-0.0050294133834541]],[[-0.021827440708876,-0.0032696430571377,-0.022261975333095],[-0.026026617735624,0.02446498349309,-0.0001063247473212],[-0.021976482123137,0.11725395917892,-0.016128420829773]],[[-0.016793502494693,-0.089578837156296,0.061851624399424],[-0.04901846498251,-0.19120520353317,-0.024005627259612],[-0.024765584617853,0.14723832905293,0.054645366966724]],[[-0.092277280986309,-0.038345072418451,0.010410816408694],[0.050503734499216,0.10430842638016,0.016190296038985],[-0.047052547335625,-0.032158397138119,0.046437852084637]],[[0.018393777310848,-0.058174800127745,-0.10019099712372],[-0.0033147549256682,-0.069849856197834,-0.053704258054495],[-0.0018314451444894,0.0074469256214797,0.10167247802019]],[[0.12207825481892,0.022540979087353,-0.097563415765762],[-0.05212414637208,0.13317409157753,-0.014186708256602],[-0.068455725908279,0.075874716043472,0.0095911091193557]],[[-0.037214685231447,0.024627985432744,0.0032623207662255],[-0.037772890180349,0.0024618268944323,-0.04158791154623],[-0.0098876375705004,0.033358212560415,0.053980875760317]],[[0.025586050003767,-0.082505740225315,-0.07393479347229],[0.032808739691973,0.00024293680326082,0.073137670755386],[0.01040015462786,-0.030163824558258,0.004844225011766]],[[-0.024662947282195,-0.069542415440083,-0.067429050803185],[0.1326639354229,0.035406097769737,0.094819098711014],[0.076953656971455,-0.086724475026131,0.038714151829481]],[[-0.069611564278603,-0.041951298713684,0.033629052340984],[0.047027982771397,-0.10466832667589,0.066779308021069],[-0.084806181490421,0.046293653547764,-0.028487738221884]],[[-0.086435079574585,-0.09594514966011,-0.015819627791643],[0.031801003962755,0.053424660116434,-0.031537536531687],[0.0093004768714309,-0.031311187893152,0.10288719832897]],[[-0.047625295817852,0.079066805541515,0.066052742302418],[0.069915622472763,-0.15033408999443,-0.11799798905849],[-0.041639838367701,0.12058964371681,-0.042234901338816]],[[0.038908671587706,0.0045495429076254,0.039251558482647],[0.07324256747961,0.039868626743555,-0.093589201569557],[-0.022581228986382,-0.082582540810108,0.024901274591684]],[[0.05604575574398,0.014872749336064,0.1572242975235],[-0.12710127234459,-0.041335619986057,0.083059027791023],[0.0053865113295615,0.088385589420795,0.015644181519747]],[[-0.015059310942888,-0.089238986372948,0.057652499526739],[0.023083323612809,0.083371244370937,-0.11532969772816],[-0.038817256689072,-0.0068088821135461,-0.00027486227918416]],[[-0.10380876809359,0.14283533394337,0.016771268099546],[0.056958820670843,0.017097476869822,-0.1094416603446],[0.013995222747326,-0.018910145387053,0.026917504146695]],[[-0.014151231385767,0.05808250233531,0.027811899781227],[-0.0017675436101854,0.090410619974136,0.025498330593109],[0.12698765099049,0.060990136116743,0.14034578204155]],[[0.051077824085951,0.073791317641735,-0.072909064590931],[-0.24500885605812,0.012782028876245,0.080620259046555],[0.1047433540225,-0.25188881158829,0.1316634863615]],[[0.06678930670023,0.094957791268826,0.048592120409012],[-0.12285981327295,-0.089802592992783,-0.12613722681999],[0.093836612999439,-0.0091092893853784,0.0098552806302905]],[[0.064169369637966,-0.048247285187244,0.095466189086437],[-0.11978491395712,-0.046245198696852,0.13727857172489],[-0.052019864320755,0.0022581352386624,0.014689202420413]],[[0.010355190373957,-0.084628909826279,0.038839031010866],[0.085580267012119,-0.024096492677927,-0.041062526404858],[-0.059658106416464,0.033469833433628,0.1114312261343]],[[-0.012129650451243,-0.089844219386578,0.05729927495122],[0.01176209654659,0.099780976772308,0.099500417709351],[-0.047118227928877,0.053454965353012,-0.087893471121788]],[[-0.071031011641026,-0.0065141753293574,-0.092723198235035],[-0.015050901100039,-0.080747105181217,0.10521534085274],[-0.063638530671597,-0.092628076672554,-0.013278881087899]],[[-0.050378706306219,-0.0057771583087742,0.014039502479136],[0.046403985470533,-0.077984392642975,-0.03212608397007],[-0.039500828832388,-0.021854389458895,0.13301737606525]]],[[[-0.033123400062323,-0.0022173342294991,0.086929894983768],[0.039006773382425,-0.081582061946392,0.05222037807107],[0.013384104706347,0.0042277639731765,-0.04785268008709]],[[0.0029114652425051,0.041991852223873,0.056243691593409],[-0.0096678491681814,-0.06909067928791,-0.024929646402597],[0.091786183416843,0.022605342790484,-0.022141279652715]],[[0.0060488898307085,0.017496751621366,-0.062452785670757],[0.047347068786621,-0.023672135546803,-0.11737121641636],[0.04956641793251,0.062751173973083,-0.062056910246611]],[[-0.0097636813297868,0.0022917506285012,0.086029388010502],[0.014888348057866,-0.021754484623671,-0.040605057030916],[-0.046985682100058,0.11943184584379,0.046991650015116]],[[-0.053990554064512,-0.09981481730938,-0.010927476920187],[0.060761597007513,-0.026502562686801,0.070644468069077],[-0.0094028981402516,0.024959992617369,0.0067528774961829]],[[-0.075045689940453,-0.12136632204056,-0.010591417551041],[0.012946970760822,0.010200545191765,-0.014431403018534],[0.054417245090008,0.0093656582757831,0.14218969643116]],[[0.056961972266436,0.10468826442957,0.086027659475803],[-0.10777855664492,-0.12878657877445,0.091904334723949],[-0.0014737533638254,-0.019612954929471,-0.021614843979478]],[[0.044220630079508,-0.0418965741992,0.1221327483654],[-0.048248771578074,0.0097196102142334,-0.0058003533631563],[0.0025009617675096,-0.011002155952156,-0.027953924611211]],[[0.0084473798051476,0.10287497192621,0.065437689423561],[-0.07283728569746,0.040984831750393,-0.038393698632717],[-0.035063091665506,0.040432777255774,-0.10300346463919]],[[-0.015392935834825,0.032291788607836,-0.099608458578587],[-0.10578223317862,0.10070735961199,-0.035665649920702],[-0.056992072612047,-0.041269540786743,0.038024205714464]],[[0.01727550663054,0.056170575320721,-0.12162539362907],[0.044828910380602,-0.047496426850557,-0.046187315136194],[-0.00073419522959739,0.041503548622131,0.035476446151733]],[[-0.016317583620548,0.14024133980274,-0.0081783197820187],[0.045657217502594,0.10601568967104,0.13211685419083],[-0.0722331777215,0.058522339910269,0.048978626728058]],[[-0.063366465270519,0.032206896692514,-0.033152360469103],[0.041466809809208,-0.020369749516249,-0.0093171959742904],[0.095247767865658,0.012837206944823,-0.075414814054966]],[[-0.095939457416534,0.11536786705256,-0.12955614924431],[0.001084168208763,0.011835012584925,-0.03108061850071],[-0.07268451154232,-0.069351434707642,-0.067417964339256]],[[0.0021652320865542,-0.11228789389133,-0.11173562705517],[-0.098088465631008,0.078646771609783,-0.01227833237499],[-0.18220448493958,0.21024383604527,0.10163729637861]],[[-0.096875593066216,-0.074665509164333,0.025100408121943],[0.07254172116518,-0.032044298946857,-0.12062702327967],[-0.036162074655294,0.14291034638882,0.047983575612307]],[[-0.031450524926186,0.0093996673822403,-0.096944943070412],[0.047689847648144,-0.061286583542824,0.024626147001982],[-0.054436113685369,-0.0050154477357864,-0.0068657933734357]],[[-0.019535722211003,0.041572522372007,-0.084712386131287],[-0.021704545244575,0.1379795819521,-0.069733873009682],[-0.012906260788441,-0.027910394594073,0.093019030988216]],[[0.020107613876462,-0.0914311632514,0.020718481391668],[0.0085690142586827,-0.031085154041648,-0.096612811088562],[-0.13163441419601,-0.099401995539665,-0.033692616969347]],[[-0.013277949765325,0.029571179300547,-0.044827803969383],[0.13259749114513,-0.067987464368343,0.0023860894143581],[-0.037728082388639,-0.068265058100224,0.011059037409723]],[[-0.13626223802567,-0.024781730026007,0.043979104608297],[0.10686074197292,-0.057251196354628,0.022348053753376],[0.023624816909432,0.012753877788782,0.12832960486412]],[[-0.095698691904545,-0.14444872736931,-0.050647065043449],[-0.037948351353407,-0.02605320699513,0.06610681116581],[-0.033573552966118,0.030667711049318,0.049826376140118]],[[0.0095279542729259,0.10128036886454,-0.087433606386185],[0.044204968959093,-0.0069910855963826,0.10561826080084],[0.040141995996237,0.04730636253953,-0.059984613209963]],[[0.041418615728617,0.15414859354496,-0.041379746049643],[0.020803352817893,0.14375647902489,0.020749993622303],[-0.061233896762133,-0.071147330105305,0.03440248221159]],[[0.026997366920114,-0.022215189412236,-0.16857887804508],[0.13531719148159,-0.11593719571829,-0.076283976435661],[-0.028772907331586,0.06283887475729,0.031437128782272]],[[0.025130132213235,0.080211780965328,-0.069718599319458],[0.061585385352373,-0.033970221877098,-0.0077217686921358],[-0.004645464476198,0.084804244339466,-0.06929025053978]],[[-0.041100777685642,-0.04864339157939,0.036462169140577],[-0.098043709993362,-0.1023943349719,0.011413040570915],[0.017438048496842,-0.040639750659466,-0.05589896067977]],[[-0.038758102804422,0.035056669265032,0.073282152414322],[0.0083215609192848,-0.034875832498074,-0.13780380785465],[-0.029740639030933,0.015248236246407,0.039241023361683]],[[-0.023802852258086,-0.028370682150126,0.0075663039460778],[0.035525802522898,0.0086189182475209,-0.047236684709787],[0.030436430126429,0.014003281481564,0.0027095831464976]],[[-0.17490841448307,-0.0047396514564753,-0.003029016777873],[-0.17943190038204,-0.00432302756235,0.022772321477532],[-0.012114509008825,-0.050848472863436,-0.052404321730137]],[[0.014723390340805,-0.14214673638344,-0.078092254698277],[0.0075625898316503,-0.0038353241980076,-0.12880177795887],[-0.024644032120705,0.013970272615552,-0.08714298158884]],[[-0.0066572781652212,-0.098825260996819,-0.055648274719715],[0.059711519628763,0.050281316041946,-0.12579713761806],[-0.0089729754254222,0.065130561590195,0.0088311824947596]],[[-0.035533931106329,0.050451599061489,0.099128246307373],[0.098821111023426,0.054312776774168,-0.040565762668848],[-0.00048550666542724,0.0065606287680566,-0.089837484061718]],[[-0.085373006761074,0.05850338190794,0.020496059209108],[0.090389393270016,-0.035423867404461,0.10425240546465],[0.037272211164236,-0.058397628366947,0.0057046310976148]],[[-0.065258644521236,-0.057686060667038,-0.069123640656471],[0.0047650234773755,-0.016800528392196,0.056123603135347],[-0.14666011929512,-0.004625856410712,0.055157747119665]],[[-0.027506493031979,-0.0088599063456059,-0.010208598338068],[0.0022804054897279,-0.049531310796738,0.081300817430019],[0.040035806596279,-0.059656728059053,0.017340425401926]],[[-0.064865343272686,-0.0093142325058579,0.025770507752895],[-0.042086713016033,0.040991853922606,-0.048673197627068],[0.076129518449306,0.070100359618664,0.096944987773895]],[[0.04054443910718,0.054189961403608,0.035869263112545],[0.058210093528032,-0.093422047793865,0.016263512894511],[0.024131610989571,-0.085117556154728,-0.052926350384951]],[[-0.041400957852602,-0.027456484735012,-0.086035549640656],[-0.11597826331854,-0.026587279513478,0.062011417001486],[0.073511712253094,0.058945618569851,-0.014868105761707]],[[0.089946947991848,-0.039284244179726,0.00013841048348695],[0.020905338227749,0.055553704500198,-0.0074579687789083],[-0.047980159521103,0.0031213618349284,0.026066996157169]],[[0.0047497092746198,-0.020316243171692,0.026898475363851],[0.12363582849503,0.032235309481621,-0.005384087562561],[-0.039036322385073,0.040949791669846,0.091085985302925]],[[-0.099552839994431,-0.030293859541416,-0.0047196801751852],[-0.046405639499426,-0.05536488071084,0.0006823088042438],[0.1373093277216,0.0613913834095,-0.039839047938585]],[[0.0090457471087575,-0.018141550943255,0.021512899547815],[-0.031107895076275,0.018077369779348,0.13846817612648],[0.10109415650368,-0.036290522664785,-0.1333132237196]],[[-0.035679340362549,-0.01812869310379,0.048787895590067],[-0.019512966275215,0.030352143570781,0.056993905454874],[0.014672718942165,-0.12403048574924,0.026651045307517]],[[-0.011803949251771,-0.021064421162009,0.024000646546483],[-0.02285148575902,0.032424699515104,0.024565992876887],[-0.052444998174906,0.035232555121183,-0.13648608326912]],[[-0.020564930513501,-0.077786579728127,-0.0043167001567781],[-0.18013100326061,0.041053891181946,-0.00014832700253464],[-0.093525290489197,0.016829052940011,-0.053830511868]],[[0.019928136840463,-0.067357666790485,-0.022717863321304],[-0.10524240881205,0.10763955116272,-0.093209877610207],[-0.027791051194072,0.023824011906981,-0.14689289033413]],[[-0.080546863377094,-0.028078600764275,0.063290789723396],[-0.021704072132707,0.0091866590082645,-0.028571149334311],[0.046596474945545,-0.081584975123405,-0.0047439387999475]],[[-0.20599323511124,0.1200775206089,0.066902495920658],[0.025112630799413,-0.0022037965245545,-0.046046528965235],[-0.0026919248048216,-0.025393400341272,0.17872589826584]],[[-0.046332817524672,-0.093540608882904,-0.052708297967911],[0.0071799624711275,-0.014975964091718,0.027470195665956],[-0.084674425423145,0.070411287248135,0.011718468740582]],[[-0.080450765788555,-0.025239199399948,-0.00016010898980312],[0.041209850460291,0.06861562281847,0.031764276325703],[-0.10867584496737,0.0072911251336336,0.062454801052809]],[[0.047156177461147,-0.030815122649074,-0.081329748034477],[0.066570401191711,0.0094915330410004,0.054337698966265],[-0.15219312906265,0.1036698743701,0.12711361050606]],[[-0.099166050553322,-0.23570941388607,0.00089994200970978],[-0.012258339673281,-0.074643686413765,-0.076735615730286],[-0.034418538212776,-0.00542974146083,0.055997703224421]],[[0.23903506994247,-0.045049879699945,-0.097834169864655],[0.12878972291946,-0.075179986655712,0.02306174300611],[0.029534136876464,-0.035962544381618,-0.098122209310532]],[[-0.024660132825375,0.079651147127151,0.088163271546364],[-0.013268515467644,0.053116984665394,0.10131223499775],[-0.035496104508638,0.028011035174131,0.091233059763908]],[[-0.013845847919583,-0.017450109124184,-0.034839671105146],[-0.038423489779234,-0.20678800344467,-0.047115836292505],[0.020096847787499,-0.031901799142361,-0.040969531983137]],[[-0.019093949347734,0.017138209193945,0.19587330520153],[0.013449175283313,0.0090127596631646,0.15866009891033],[0.11418784409761,0.065661817789078,0.16833455860615]],[[-0.053527653217316,0.087111346423626,0.073881171643734],[0.11827410757542,-0.0062159248627722,0.048952165991068],[-0.12154976278543,0.1236409842968,-0.022519614547491]],[[0.026011750102043,0.019654219970107,-0.029169321060181],[0.13407960534096,-0.044633392244577,0.04099902883172],[-0.19480392336845,-0.055512379854918,-0.016735501587391]],[[-0.13056875765324,0.013866011053324,-0.035224631428719],[-0.05373403429985,-0.12379700690508,-0.051751509308815],[0.042154066264629,-0.042587324976921,-0.00058583909412846]],[[-0.0062725748866796,0.079222120344639,-0.0050445669330657],[0.027472132816911,0.017091162502766,0.029060769826174],[0.0050870599225163,0.051948674023151,-0.052754729986191]],[[-0.085890464484692,-0.070143088698387,-0.06383965909481],[-0.027655312791467,-0.04400722309947,0.017419012263417],[-0.050217609852552,-0.035018410533667,0.033448003232479]],[[-0.0074642798863351,0.1668097525835,-0.097770638763905],[-0.054812394082546,0.014756460674107,0.084702119231224],[0.12379825115204,-0.016455642879009,-0.077937304973602]],[[0.012475904077291,0.054762460291386,0.046182811260223],[0.10661599785089,0.041495341807604,0.0022700356785208],[-0.004917040001601,-0.065219506621361,-0.014413073658943]]],[[[-0.055945914238691,0.041120409965515,-0.032142471522093],[0.0096937408670783,0.048890680074692,0.072395831346512],[-0.026403179392219,-0.027109595015645,-0.057109955698252]],[[-0.013459667563438,-0.060008976608515,0.051565051078796],[-0.021932972595096,0.044888064265251,0.099086180329323],[-0.021542333066463,0.068554885685444,-0.046396464109421]],[[-0.0014313738793135,-0.00090345129137859,0.016016425564885],[0.00057215930428356,0.091090880334377,-0.0086121940985322],[-0.013090125285089,-0.054539006203413,0.048765122890472]],[[0.025301666930318,-0.12459795176983,0.0047221616841853],[0.12186028808355,-0.35916033387184,0.021996892988682],[0.051379449665546,-0.049182906746864,-0.1105277761817]],[[0.018020380288363,0.083157762885094,0.01350115519017],[-0.081270486116409,-0.010457186959684,-0.072480753064156],[-0.02345540560782,-0.052852530032396,-0.03076802007854]],[[-0.016300512477756,-0.03921016305685,-0.045469053089619],[0.078196883201599,0.04130931571126,-0.11195848882198],[0.05631323158741,0.0095885610207915,0.030161002650857]],[[0.036139130592346,-0.10456539690495,-0.21391128003597],[0.1363766938448,0.0085252933204174,0.022098613902926],[0.039243020117283,-0.17443230748177,-0.071234710514545]],[[-0.10342328995466,0.032051555812359,0.029033489525318],[-0.06302323192358,-0.056346975266933,-0.014799412339926],[0.15130537748337,-0.04365361481905,0.058205276727676]],[[-0.017996961250901,-0.063615970313549,0.039821106940508],[-0.034957375377417,0.034428395330906,-0.031780790537596],[0.031184328719974,0.045723978430033,0.039270605891943]],[[-0.094552494585514,-0.026259133592248,-0.074994310736656],[-0.17274402081966,-0.10905186086893,-0.073110476136208],[-0.10987910628319,0.067347519099712,-0.12151195853949]],[[0.0065559400245547,0.083381973206997,-0.060080390423536],[0.018044181168079,0.069913133978844,-0.062317755073309],[-0.071678675711155,-0.10475447028875,0.066503331065178]],[[-0.27563479542732,0.010342394933105,0.056129187345505],[-0.18979428708553,-0.021592112258077,0.038987293839455],[-0.12988196313381,0.015639090910554,0.050121322274208]],[[-0.0097895180806518,0.012549972161651,0.11941346526146],[-0.12788048386574,-0.17661973834038,-0.022845908999443],[-0.10395170748234,-0.11346809566021,-0.030738113448024]],[[0.12597239017487,0.054769087582827,-0.082885250449181],[-0.085711516439915,0.047277800738811,0.038033097982407],[-0.077329702675343,0.0064323050901294,-0.12151188403368]],[[-0.011047133244574,-0.079833269119263,0.0023971959017217],[0.073301628232002,-0.13366602361202,-0.012479228898883],[0.0049432562664151,0.05941953510046,0.13061957061291]],[[0.07428690046072,-0.066512919962406,0.01459956727922],[-0.0089747626334429,-0.036145199090242,0.031485334038734],[0.06882955878973,0.048268157988787,-0.063604258000851]],[[-0.073848247528076,0.046523708850145,0.13525988161564],[-0.18521244823933,-0.083052754402161,0.050149083137512],[0.024759348481894,0.017605762928724,0.10067102313042]],[[-0.14098356664181,-0.08575513958931,-0.002212742343545],[-0.16007123887539,0.12535914778709,0.0044076316989958],[-0.14526681602001,0.0025182161480188,0.026696378365159]],[[-0.11532690376043,0.10306952893734,-0.01625712774694],[-0.093414202332497,0.12726925313473,0.072455644607544],[-0.026994705200195,0.027218610048294,-0.087753050029278]],[[0.087045721709728,0.11646769195795,0.035933036357164],[0.040285956114531,-0.026816757395864,0.19135464727879],[0.063880257308483,-0.05190135166049,-0.077774807810783]],[[0.031721040606499,-0.05295580253005,0.065816797316074],[0.056726962327957,-0.059798508882523,0.0057001863606274],[-0.32685524225235,0.036725681275129,-0.037325158715248]],[[0.024859709665179,0.089606307446957,0.032859180122614],[-0.10257940739393,-0.13257485628128,0.027284929528832],[-0.023819547146559,-0.13711425662041,0.019196080043912]],[[-0.046199530363083,-0.052808489650488,-0.0049320184625685],[0.028341792523861,-0.092452980577946,0.055647749453783],[0.048969142138958,-0.029609555378556,0.092216476798058]],[[-0.10350172966719,0.026338009163737,-0.16005446016788],[-0.16547153890133,0.019822340458632,-0.039382725954056],[0.085050493478775,-0.09811020642519,0.10309979319572]],[[-0.010206861421466,0.063254185020924,-0.084968253970146],[0.0064473915845156,0.13546811044216,-0.1047675833106],[-0.0085641946643591,-0.14745524525642,0.025965409353375]],[[-0.077365770936012,0.16181489825249,-0.073907382786274],[-0.11951696872711,0.15168406069279,-0.016814121976495],[-0.033467810600996,-0.023706613108516,-0.0091759636998177]],[[-0.054774925112724,0.10520150512457,-0.035153653472662],[0.024891376495361,-0.012823483906686,-0.094538204371929],[0.059986162930727,-0.12907207012177,-0.001555037451908]],[[-0.10784013569355,0.084963910281658,-0.03760839626193],[-0.11472567170858,0.022016571834683,-0.049810785800219],[-0.067038089036942,0.14464712142944,0.01641022413969]],[[0.082769624888897,0.062931329011917,0.010315486229956],[-0.13513916730881,0.05470908805728,-0.031797345727682],[-0.022484062239528,0.0065710600465536,-0.039001129567623]],[[0.064242742955685,-0.12357460707426,0.16044829785824],[0.02505287155509,0.025674337521195,-0.024292400106788],[0.071483187377453,-0.1439157128334,0.04967975243926]],[[0.022875627502799,-0.08215906471014,0.087695740163326],[-0.226448148489,0.16415192186832,-0.011407393030822],[-0.11958689242601,0.0082605965435505,0.013448375277221]],[[0.14335940778255,-0.015785090625286,0.074254520237446],[0.04523891210556,0.025595201179385,0.069107331335545],[-0.11650117486715,-0.036528348922729,0.029939016327262]],[[0.01578607968986,-0.066918924450874,-0.1174289509654],[-0.087608508765697,0.012752087786794,0.055856760591269],[-0.057557605206966,-0.01046343985945,0.16337667405605]],[[-0.13542893528938,0.10458797961473,-0.04390749707818],[-0.075431197881699,-0.020906530320644,-0.072796069085598],[0.011180535890162,-0.035620264708996,0.036793202161789]],[[0.052215293049812,0.008136747404933,0.039115738123655],[0.080293230712414,-0.038975521922112,0.11985489726067],[-0.16594411432743,0.090748742222786,-0.016493991017342]],[[0.086906991899014,-0.050582606345415,0.0037171635776758],[-0.1054779663682,-0.0024718611966819,-0.11178424954414],[-0.014895908534527,0.14331956207752,-0.21792823076248]],[[0.0089298421517015,-0.013505525887012,-0.081905096769333],[-0.12107241898775,0.0058422209694982,-0.058043412864208],[0.069240786135197,0.010957735590637,0.031215591356158]],[[-0.063521429896355,0.11901890486479,0.10807495564222],[-0.066262364387512,-0.0021446666214615,0.055839471518993],[0.031688243150711,0.089772030711174,-0.11081386357546]],[[-0.1547454893589,-0.0028214303310961,0.0047927713021636],[-0.035923827439547,-0.042076796293259,0.058713592588902],[0.046409923583269,-0.012855064123869,-0.04339899122715]],[[-0.03187071159482,0.040451645851135,0.068467810750008],[-0.056591808795929,-0.016947580501437,0.013705731369555],[-0.10133595764637,0.0085342330858111,-0.090555220842361]],[[-0.00097444927087054,0.062273465096951,0.040045998990536],[0.020765556022525,-0.091290511190891,0.11044924706221],[-0.067880153656006,-0.19633707404137,0.047068517655134]],[[0.053217925131321,-0.072486750781536,0.058080092072487],[-0.0029119709506631,-0.064040638506413,-0.024389242753386],[-0.069426156580448,-0.065459996461868,-0.13694462180138]],[[-0.14101311564445,-0.011640643700957,0.11596069484949],[-0.015228779055178,-0.14565168321133,-0.021027406677604],[0.10453789681196,-0.052225898951292,-0.11730950325727]],[[0.09873328357935,0.07941522449255,-0.053265538066626],[-0.02066595107317,0.0047178138047457,0.012794340960681],[-0.04492024704814,0.021804401651025,-0.075108788907528]],[[-0.14679916203022,-0.052772630006075,-0.02768475189805],[-0.19087533652782,0.11549617350101,-0.019522875547409],[0.057081867009401,0.12590672075748,0.080078803002834]],[[-0.33547255396843,-0.028997430577874,0.073731377720833],[0.053894970566034,-0.095582090318203,-0.047279044985771],[0.025190513581038,-0.19671541452408,-0.011842815205455]],[[-0.009368053637445,-0.035230781883001,0.11367847770452],[0.05663488805294,0.024683512747288,-0.066191501915455],[-0.0058805518783629,0.0023095819633454,-0.15960121154785]],[[0.00093082385137677,0.081493213772774,-0.13797406852245],[-0.020908715203404,0.044569183140993,0.0090766008943319],[0.048158638179302,0.041843112558126,-0.053029973059893]],[[-0.03727013617754,0.0796924456954,-0.036775022745132],[0.030788023024797,0.061995677649975,-0.0070643681101501],[-0.11361204832792,-0.033389668911695,0.038257218897343]],[[-0.047785248607397,0.047184802591801,0.018273316323757],[-0.026014197617769,-0.019027540460229,0.088799886405468],[0.092069640755653,0.031537219882011,-0.067082397639751]],[[0.048642538487911,-0.025983510538936,-0.03616439551115],[-0.039201274514198,-0.18127445876598,0.075969509780407],[-0.0040076719596982,0.02913735434413,0.11455999314785]],[[0.10013353079557,-0.094942927360535,0.040227096527815],[0.029039325192571,-0.13904190063477,0.014708799310029],[0.049493998289108,0.086160331964493,-0.13132557272911]],[[0.050625309348106,-0.055428817868233,0.05056170001626],[-0.0067725307308137,0.020561881363392,-0.19349057972431],[0.051417957991362,0.0056322547607124,0.11498922109604]],[[-0.041024398058653,-0.18788734078407,0.087669961154461],[0.07940286397934,0.10592149198055,-0.23208858072758],[0.10294037312269,0.22255718708038,0.045860316604376]],[[-0.093827374279499,0.042326770722866,-0.066004559397697],[-0.19067838788033,-0.033549308776855,-0.13776499032974],[0.091857865452766,-0.051975727081299,0.00032537389779463]],[[0.10012774914503,0.094260565936565,-0.11268936097622],[-0.062651209533215,0.073192164301872,-0.061500076204538],[0.054965630173683,0.077897243201733,-0.021882705390453]],[[0.16029182076454,0.00023709828383289,0.12330098450184],[0.082279600203037,0.090870954096317,-0.012158172205091],[0.008988338522613,0.10113454610109,-0.042373426258564]],[[-0.075165919959545,-0.050486113876104,-0.041929021477699],[-0.09299423545599,0.038035843521357,-0.11734494566917],[-0.079177871346474,-0.019129741936922,-0.11329157650471]],[[0.012805229984224,-0.0075129638426006,-0.03845252469182],[0.16405203938484,0.068878129124641,-0.077665396034718],[0.069052688777447,-0.09418098628521,-0.040590293705463]],[[-0.068544805049896,0.043698936700821,-0.10632219910622],[0.016113923862576,0.079905025660992,-0.089655689895153],[0.095210485160351,-0.086840972304344,0.24320378899574]],[[-0.024236569181085,-0.039603460580111,0.016059666872025],[-0.013903361745179,-0.081786297261715,0.021812312304974],[0.20809794962406,-0.23668891191483,0.076547585427761]],[[-0.075694099068642,-0.18637828528881,0.015004955232143],[0.0032852662261575,-0.013923124410212,-0.067496247589588],[-0.0062975725159049,-0.072465293109417,-0.057550475001335]],[[-0.1473326832056,0.13078559935093,-0.050681509077549],[-0.14943781495094,0.031594287604094,-0.19454100728035],[-0.11205410957336,0.043935038149357,-0.10831294208765]],[[0.1073739528656,-0.059607367962599,-0.16466231644154],[0.13784739375114,0.034997217357159,-0.1207639425993],[0.02406002394855,-0.067792810499668,-0.14807596802711]]],[[[0.069201968610287,0.11572366207838,-0.034182656556368],[0.021424744278193,-0.004219273570925,-0.00083138269837946],[-0.032847918570042,0.07853551954031,0.080518662929535]],[[0.084071531891823,0.12065748125315,-0.18410460650921],[0.015469374135137,0.025789534673095,-0.028482299298048],[0.092825353145599,-0.010588285513222,-0.042221371084452]],[[0.087643936276436,-0.015559266321361,0.059388089925051],[0.001196272787638,0.022247852757573,0.0077640688978136],[-0.010476284660399,-0.046348854899406,0.0065895318984985]],[[-0.029560294002295,-0.11471166461706,0.0062421052716672],[-0.055847723037004,-0.11749490350485,-0.14422850310802],[-0.031853921711445,-0.08359868824482,-0.015100931748748]],[[0.080300234258175,0.022525979205966,-0.014680108055472],[-0.0030174339190125,0.095367096364498,0.014379265718162],[0.051977023482323,0.048325158655643,-0.022515079006553]],[[0.010612734593451,0.050505891442299,-0.150933355093],[0.14526258409023,-0.18000482022762,0.080293335020542],[-0.08468833565712,-0.0092084808275104,0.082046404480934]],[[0.10657592862844,0.011212068609893,0.034169767051935],[0.10991745442152,0.0028699182439595,0.0068307020701468],[0.0020394574385136,0.06168295070529,0.12141215801239]],[[0.043575271964073,-0.068531207740307,0.011081395670772],[0.066623970866203,-0.05726982280612,-0.10156393051147],[-0.0096171926707029,0.061688911169767,-0.024132609367371]],[[0.018891666084528,-0.032598029822111,-0.0095924129709601],[0.025242947041988,-0.033128794282675,0.054100211709738],[0.015509642660618,-0.07601061463356,-0.018294228240848]],[[-0.12044700235128,-0.17846022546291,0.11648497730494],[0.16128690540791,-0.011196142062545,-0.054616935551167],[-0.014967329800129,-0.052536264061928,0.088728033006191]],[[-0.080951660871506,0.041539188474417,0.026024017482996],[-0.061708364635706,-0.081373825669289,-0.077304996550083],[0.0014378130435944,-0.029659224674106,-0.082218781113625]],[[-0.068864084780216,0.045455023646355,-0.13482046127319],[0.041223727166653,0.068346738815308,-0.0635005235672],[-0.0095997219905257,-0.036702070385218,-0.0017367266118526]],[[-0.072980180382729,0.01434169895947,0.038378249853849],[0.10019839555025,-0.0080713722854853,-0.15113133192062],[-0.057882107794285,0.0038077575154603,-0.043708637356758]],[[0.12421891838312,0.058309867978096,0.065913535654545],[-0.021617507562041,-0.25710311532021,-0.013208825141191],[-0.13589262962341,-0.049375452101231,0.11250299215317]],[[0.046020116657019,-0.04826695099473,0.021370710805058],[0.033397518098354,-0.015762735158205,0.034805934876204],[-0.022294426336884,0.033623684197664,-0.09625031799078]],[[-0.13481003046036,0.048738777637482,-0.042514611035585],[0.024356067180634,-0.02164057828486,0.063617587089539],[-0.15692339837551,0.081117168068886,-0.016704976558685]],[[-0.097675383090973,0.010851914063096,-0.035810612142086],[0.11827654391527,0.11574310809374,-0.031369660049677],[-0.06114450097084,0.043371707201004,0.079799965023994]],[[-0.026117216795683,0.02654829993844,0.073431611061096],[0.073829375207424,-0.032584834843874,-0.052584055811167],[0.074553407728672,-0.029860014095902,-0.0074521023780107]],[[0.050587303936481,-0.04634965211153,-0.060980521142483],[0.0091886715963483,-0.077072359621525,-0.14110980927944],[0.14912270009518,0.0095527926459908,0.067183434963226]],[[-0.092408202588558,0.0034442516043782,0.093603283166885],[0.065080069005489,-0.0020838596392423,-0.10398078709841],[0.02659061178565,0.0017282449407503,0.14755281805992]],[[-0.042026340961456,-0.21591413021088,0.10289775580168],[-0.12773358821869,-0.00012591668928508,-0.12810797989368],[-0.040202114731073,0.096430599689484,-0.21608574688435]],[[-0.01926688849926,0.0072011779993773,0.083272106945515],[0.0091515183448792,-0.017505651339889,0.026215316727757],[-0.07813972979784,0.051734130829573,0.084184624254704]],[[0.097644776105881,0.0017252238467336,-0.017471199855208],[0.07796286046505,0.031696829944849,0.04024326428771],[0.0031188449356705,-0.073616154491901,-0.055710669606924]],[[0.003583992132917,-0.050213664770126,0.063538745045662],[0.15828052163124,0.096797987818718,0.097181737422943],[0.046106398105621,0.020889988169074,0.0052675381302834]],[[0.046339362859726,0.035339847207069,0.087707072496414],[0.042244434356689,-0.040680546313524,0.030981492251158],[-0.1399450302124,0.042188707739115,0.073468670248985]],[[-0.13097356259823,0.02842359803617,-0.020421283319592],[0.050938282161951,-0.0062452941201627,0.074757762253284],[-0.082175575196743,0.05330853164196,-0.049199152737856]],[[0.043979123234749,-0.01185492426157,0.0028125715907663],[-0.13682225346565,0.0007213739445433,0.070702828466892],[-0.018424652516842,0.066607117652893,-0.052466884255409]],[[0.030502000823617,0.0096047502011061,0.040490541607141],[0.062530718743801,-0.038649816066027,-0.043211072683334],[-0.0023294158745557,-0.012415368109941,0.1038863658905]],[[0.0052105546928942,-0.03779474273324,0.018050579354167],[-0.00096626358572394,-0.041374269872904,-0.076731465756893],[-0.0500223711133,-0.0714291036129,-0.010557212866843]],[[0.040724363178015,0.073266968131065,0.12100473046303],[-0.057099010795355,-0.16321815550327,0.13708272576332],[-0.2230584025383,-0.023903280496597,0.014096318744123]],[[0.0090031521394849,0.082865640521049,-0.13829711079597],[-0.073865301907063,-0.022312415763736,0.011834650300443],[0.12549316883087,-0.0035658245906234,0.022084591910243]],[[0.092654727399349,0.037227902561426,-0.11614530533552],[0.04023626819253,-0.054053001105785,-0.12857984006405],[-0.022133156657219,-0.027189975604415,0.060387559235096]],[[0.045986171811819,-0.016247296705842,0.17036961019039],[-0.055568914860487,0.074692271649837,0.14722408354282],[-0.006423132494092,-0.06014547124505,0.13696984946728]],[[-0.012407875619829,-0.046376828104258,-0.013728079386055],[-0.012852375395596,-0.30708172917366,-0.042639046907425],[-0.02545421384275,-0.033556878566742,-0.066485680639744]],[[0.087136656045914,0.070483222603798,0.15615247189999],[-0.011713333427906,-0.06572425365448,0.055979210883379],[-0.12345464527607,-0.17561082541943,0.13184559345245]],[[-0.019606452435255,-0.092582732439041,0.0069144326262176],[-0.098353765904903,0.062751024961472,0.17685857415199],[0.005219645332545,-0.1022084876895,0.035380840301514]],[[-0.077495440840721,0.020986840128899,-0.073218382894993],[-0.0075779305770993,-0.051993776112795,-0.024595098569989],[0.089952766895294,-0.023972645401955,0.005609801504761]],[[-0.14823745191097,-0.016019828617573,0.020756974816322],[-0.084755942225456,0.098714739084244,0.03583812713623],[-0.013507764786482,0.11443985998631,0.12322071939707]],[[0.059918459504843,-0.15302368998528,0.12583713233471],[-0.152203977108,-0.018936514854431,0.043813899159431],[-0.11620602011681,0.052602630108595,-0.074740506708622]],[[-0.067233055830002,0.024659641087055,-0.12619812786579],[0.030939076095819,0.0877376049757,0.051591925323009],[0.027637153863907,-0.062950603663921,0.0006882791640237]],[[0.011200435459614,0.054957777261734,0.069251045584679],[-0.12257093936205,0.049925845116377,0.0042826244607568],[0.017665661871433,0.069792702794075,0.058512158691883]],[[-0.029774308204651,-0.14118413627148,-0.095084972679615],[-0.005691812839359,-0.12471403181553,-0.010887652635574],[-0.20033940672874,-0.056787192821503,0.14921776950359]],[[0.12503887712955,-0.024356104433537,0.19646090269089],[-0.0017815983155742,-0.15953627228737,0.058953855186701],[-0.037880081683397,0.019856618717313,-0.041231166571379]],[[0.048759967088699,-0.0069798645563424,0.092733509838581],[-0.090276084840298,-0.017361581325531,-0.032431423664093],[-0.055716264992952,0.10983271896839,-0.061597939580679]],[[0.091998018324375,-0.046213615685701,-0.08137883991003],[0.072802864015102,0.055614374577999,-0.043963439762592],[-0.074926853179932,-0.047718923538923,0.017905181273818]],[[-0.029666524380445,0.077810205519199,-0.064010471105576],[0.020785231143236,-0.058554854243994,-0.27502483129501],[-0.1860296279192,-0.045607820153236,0.094156824052334]],[[0.08913317322731,-0.010073604993522,-0.11745038628578],[-0.049904186278582,0.080218866467476,-0.0477738045156],[0.049158420413733,0.086756713688374,-0.014611784368753]],[[0.099446557462215,0.063237078487873,-0.065010644495487],[0.12404507398605,-0.017083562910557,0.15821023285389],[-0.071845732629299,0.0350446626544,-0.015286196954548]],[[-0.15429352223873,0.08374147862196,-0.0068558696657419],[-0.001153010991402,0.18240721523762,-0.062613487243652],[-0.096233524382114,-0.022003728896379,0.044393882155418]],[[-0.018826223909855,0.0023662324529141,0.038837172091007],[-0.055487547069788,-0.12290381640196,0.034729722887278],[-0.01212219055742,-0.095744259655476,-0.068765960633755]],[[0.048236489295959,-0.025278970599174,0.06057221069932],[-0.033586908131838,-0.054989505559206,-0.074643485248089],[-0.080922730267048,0.028005620464683,0.032072234898806]],[[0.10948640108109,0.032411228865385,0.0073448489420116],[-0.11014983803034,0.0070638325996697,-0.034464612603188],[-0.12270560115576,-0.09190372377634,0.043814081698656]],[[0.056008461862803,0.040359705686569,0.0044719087891281],[0.040646262466908,-0.063587002456188,-0.12253984063864],[-0.075283214449883,0.020039431750774,-0.083710677921772]],[[0.060223944485188,0.019721567630768,-0.029598398134112],[0.0041753207333386,0.088127538561821,-0.008630758151412],[-0.019346978515387,0.049393933266401,0.045430343598127]],[[-0.079937934875488,-0.0051328861154616,-0.089271686971188],[-0.041871901601553,-0.11549842357635,0.060130514204502],[-0.11902620643377,-0.049452167004347,-0.083593882620335]],[[-0.046905018389225,-0.058070175349712,0.073502987623215],[0.0009002125589177,0.066312946379185,-0.050667136907578],[-0.027223845943809,-0.081996142864227,-0.062097609043121]],[[0.083134055137634,0.043486930429935,-0.072385638952255],[0.065257713198662,0.14529857039452,-0.012219779193401],[0.099166512489319,-0.055976364761591,-0.021403290331364]],[[-0.06776088476181,-0.033512782305479,0.1593259125948],[-0.065485008060932,0.092761822044849,-0.10117492824793],[-0.15509018301964,0.10656191408634,0.020444894209504]],[[0.016444142907858,0.0071628279983997,0.10167137533426],[-0.10989294201136,-0.011681869626045,0.10901835560799],[-0.11765871942043,-0.11314049363136,-0.10780779272318]],[[-0.041504878550768,0.058135371655226,0.0026869636494666],[0.02976761572063,-0.059316210448742,0.088882461190224],[-0.027813192456961,-0.0090130707249045,-0.10321883112192]],[[0.09760819375515,-0.10059937089682,0.027362484484911],[-0.040664087980986,0.01045888941735,-0.05712366104126],[-0.018533922731876,-0.12158146500587,-0.031042315065861]],[[-0.10932043939829,0.15642391145229,0.073525860905647],[-0.029420038685203,-0.22641032934189,0.081203460693359],[-0.2648611664772,0.0886460095644,0.0025686719454825]],[[-0.18033309280872,0.0096860993653536,-0.0027484714519233],[-0.06269133836031,0.069339834153652,0.0027547294739634],[0.053964022547007,0.047148507088423,-0.037799309939146]],[[0.077574878931046,-0.052696827799082,-0.062318347394466],[-0.16146489977837,0.13085436820984,0.087691500782967],[-0.15072798728943,0.12552773952484,-0.17267788946629]]],[[[-0.11091709136963,-0.10256500542164,0.017861571162939],[-0.040904395282269,0.018614554777741,-0.073560766875744],[0.040614929050207,-0.05545748770237,0.13698971271515]],[[-0.15491481125355,-0.056717351078987,-0.050932850688696],[0.030682951211929,0.068934559822083,0.045436765998602],[-0.034769225865602,0.070027388632298,-0.056744229048491]],[[-0.010053653270006,-0.11619584262371,0.021261988207698],[0.049395263195038,0.0092766117304564,0.11183001101017],[0.036379400640726,0.07871175557375,0.019423766061664]],[[0.10250955075026,-0.053160116076469,-0.029773402959108],[0.098260425031185,-0.11260043829679,-0.033305525779724],[0.11990586668253,-0.00987458974123,-0.068142272531986]],[[-0.19594821333885,0.1131478920579,-0.098123595118523],[-0.057497851550579,0.11533699184656,0.069125398993492],[0.060200002044439,0.0045837024226785,-0.010030838660896]],[[-0.12485586851835,-0.025320779532194,-0.03358968347311],[-0.069922216236591,-0.033995073288679,-0.070560604333878],[0.029579263180494,0.15788313746452,0.0014629991492257]],[[-0.023309187963605,0.006647530477494,0.039045158773661],[0.10537631064653,-0.031354960054159,-0.03517983481288],[0.078229866921902,0.029786607250571,-0.021797481924295]],[[0.046483263373375,-0.12296395003796,0.03283778205514],[0.043681018054485,-0.049204789102077,-0.062836550176144],[0.050140842795372,0.027269992977381,-0.043861739337444]],[[-0.017947318032384,-0.001995088532567,-0.0074577080085874],[0.0090119997039437,0.086041115224361,-0.037650275975466],[0.010990581475198,0.044190615415573,-0.071665354073048]],[[-0.076210901141167,-0.08072354644537,0.041813969612122],[-0.10292730480433,0.12602062523365,0.029441028833389],[-0.0040608663111925,0.091660268604755,-0.03193562105298]],[[-0.02567870169878,0.026186423376203,-0.024752235040069],[0.15111945569515,-0.038550961762667,0.0482387393713],[-0.087465167045593,-0.079254843294621,0.062419105321169]],[[-0.16688324511051,0.074763372540474,0.29727274179459],[-0.011952393688262,0.049447935074568,0.13607560098171],[-0.11486367881298,-0.097256474196911,-0.038161993026733]],[[0.027701329439878,0.065135650336742,0.11619471758604],[-0.011307259090245,0.030488897114992,0.032540045678616],[0.058436263352633,-0.036319430917501,-0.055940382182598]],[[-0.065510854125023,-0.093597255647182,-0.027531828731298],[0.048999935388565,0.15563209354877,0.040285658091307],[-0.067360609769821,-0.069854736328125,-0.098862834274769]],[[-0.086255379021168,-0.092191934585571,-0.00045284250518307],[0.046943981200457,-0.17292553186417,0.13117149472237],[0.11449096351862,-0.060581725090742,0.081817224621773]],[[-0.064904302358627,-0.083709239959717,0.0034206828568131],[0.07565226405859,0.043980251997709,0.071985937654972],[-0.02807399071753,-0.19155175983906,-0.06171603128314]],[[-0.013055744580925,-0.1457729190588,-0.010264232754707],[0.092994883656502,-0.028948510065675,0.039183981716633],[0.00018628987891134,0.022853827103972,0.058016587048769]],[[-0.21692354977131,0.21440607309341,0.063108831644058],[-0.17795649170876,-0.048542715609074,0.15938855707645],[-0.047074273228645,-0.043545011430979,0.06478164345026]],[[-0.024763356894255,-0.069600708782673,0.0062621780671179],[-0.017441054806113,0.055146411061287,-0.012644822709262],[-0.03571991994977,0.015619399026036,0.16626159846783]],[[0.052145943045616,0.026366809383035,0.13417020440102],[-0.069666467607021,0.030260579660535,0.0054468903690577],[-0.060813400894403,0.058728788048029,0.048288490623236]],[[-0.047080870717764,-0.080034203827381,0.052651755511761],[0.11676967144012,-0.22354279458523,0.090655095875263],[0.073467068374157,-0.039699330925941,0.063059687614441]],[[0.10695112496614,0.20682129263878,-0.12724138796329],[0.0062415148131549,-0.065876640379429,-0.016109613701701],[0.049567550420761,-0.099827371537685,0.021071659401059]],[[-0.074912339448929,0.021723330020905,0.068808026611805],[-0.090306363999844,0.085753366351128,-0.012516252696514],[-0.092593297362328,-0.0084570497274399,0.056286115199327]],[[0.018627282232046,0.041635725647211,-0.11450822651386],[-0.0034667009022087,0.1066552773118,-0.0040056807920337],[0.099135309457779,-0.20515531301498,0.023431239649653]],[[0.031590923666954,0.045343160629272,-0.056306295096874],[-0.027226153761148,-0.057382505387068,-0.10970823466778],[0.0032958937808871,-0.0095820929855108,0.060568012297153]],[[0.07225327193737,0.10167653858662,-0.056279830634594],[-0.12371820211411,0.042799141258001,-0.012647884897888],[-0.017090879380703,-0.10640001296997,-0.017865961417556]],[[0.030956968665123,-0.11451490968466,-0.080825932323933],[0.10672168433666,-0.041410882025957,-0.094914257526398],[0.049781139940023,-0.017799930647016,-0.114950992167]],[[-0.073246844112873,0.077837757766247,-0.095818690955639],[0.14231105148792,0.025807866826653,-0.0187346059829],[0.018808355554938,0.037901174277067,-0.050958480685949]],[[-0.15632148087025,0.021124700084329,0.013690937310457],[-0.20407539606094,-0.015974113717675,-0.035653952509165],[0.17453762888908,-0.054819572716951,-0.0016204866115004]],[[-0.040002346038818,-0.014685180969536,0.035466220229864],[-0.20185862481594,-0.00096571666654199,0.079578034579754],[-0.025516474619508,-0.090812399983406,0.0644361525774]],[[-0.009253459982574,-0.067438088357449,-0.075527869164944],[-0.083311080932617,0.10239842534065,0.11564695090055],[-0.084323130548,-0.014138647355139,-0.023135025054216]],[[0.1117876842618,-0.20161786675453,-0.099653609097004],[0.00028371004736982,0.0024931784719229,-0.051931254565716],[-0.032862860709429,-0.052722759544849,0.012718715704978]],[[-0.064169809222221,0.024614572525024,-0.030148463323712],[-0.21185487508774,0.045815706253052,-0.0074133039452136],[-0.024526137858629,-0.00034877582220361,0.081353649497032]],[[-0.15452572703362,0.23616270720959,-0.028751147910953],[-0.19155292212963,0.2090663164854,0.10258831828833],[-0.078582763671875,-0.15183953940868,-0.030896730720997]],[[-0.053217001259327,-0.054201800376177,-0.05242445319891],[0.11229130625725,-0.14299200475216,0.0059217624366283],[0.012446881271899,-0.00240597454831,0.039016526192427]],[[-0.063650786876678,0.014325539581478,-0.080971695482731],[0.1105485484004,0.064889967441559,-0.077132634818554],[-0.020134633406997,0.081099636852741,-0.11567564308643]],[[-0.065187312662601,-0.022819960489869,0.062679082155228],[0.054343432188034,-0.033048044890165,-0.16615676879883],[-0.018821891397238,-0.054716624319553,-0.035881482064724]],[[0.044362511485815,-0.02276230789721,0.1307530105114],[-0.15264439582825,-0.048849325627089,-0.10261109471321],[-0.033455744385719,0.010720701888204,0.015839291736484]],[[-0.044020846486092,0.039891492575407,0.13877947628498],[0.037752356380224,-0.071214288473129,0.077688604593277],[-0.11733284592628,-0.12338010966778,0.026274977251887]],[[0.041546743363142,0.085700303316116,-0.0090479049831629],[0.062520258128643,-0.090655095875263,-0.082431457936764],[-0.020922780036926,-0.084154173731804,0.0086845858022571]],[[-0.0060925474390388,-0.13585510849953,0.10122536867857],[0.032036736607552,-0.13974590599537,0.12345347553492],[-0.14117254316807,-0.050418023020029,0.020376522094011]],[[-0.046980384737253,-0.075761422514915,-0.083444334566593],[-0.077646292746067,-0.22067286074162,-0.25097090005875],[0.072824448347092,-0.090362831950188,-0.14449977874756]],[[-0.11865475028753,-0.083473227918148,0.059341385960579],[0.093734741210938,0.059374444186687,0.17093712091446],[-0.14504423737526,0.0033049103803933,-0.082364469766617]],[[0.019375432282686,-0.096710793673992,0.0043706553988159],[0.0031390164513141,0.040166333317757,0.066678553819656],[0.0022867694497108,-0.057296261191368,0.019203159958124]],[[-0.079007849097252,-0.030890874564648,-0.0093366457149386],[-0.033184751868248,0.029638011008501,-0.13826894760132],[0.097334213554859,0.020539831370115,0.040228378027678]],[[0.0024056821130216,-0.16892376542091,-0.089180432260036],[0.17549507319927,-0.24572578072548,0.05615596100688],[0.071591809391975,-0.064273558557034,0.26495197415352]],[[0.12483083456755,0.086186490952969,-0.012336319312453],[-0.0466138869524,-0.13353727757931,-0.063153557479382],[0.095865294337273,-0.046718683093786,-0.1085782200098]],[[0.03601661324501,0.096778564155102,-0.2137738019228],[-0.051686339080334,0.17267379164696,0.029040414839983],[0.085242576897144,-0.016764169558883,-0.054120134562254]],[[-0.011589055880904,0.11882044374943,0.031730402261019],[0.017619661986828,0.099217846989632,-0.13569079339504],[-0.0021346993744373,0.011579385958612,0.0048146923072636]],[[-0.083683781325817,0.0168192461133,-0.015158608555794],[-0.086712926626205,-0.04170124232769,-0.039945382624865],[0.05914917960763,0.026814002543688,-0.0099240653216839]],[[-0.088778518140316,-0.025320924818516,-0.058064714074135],[-0.14921456575394,-0.04477870836854,0.020724594593048],[0.10032925009727,-0.047252904623747,0.0070353364571929]],[[0.09237652271986,-0.061847969889641,-0.187260389328],[-0.024367962032557,0.019879225641489,-0.13560239970684],[-0.099047876894474,0.093284703791142,-0.076450414955616]],[[-0.040346741676331,-0.11667262017727,0.094515934586525],[0.022297905758023,-0.08574403077364,-0.060803603380919],[-0.13562531769276,-0.044168252497911,0.10590726137161]],[[0.044664483517408,-0.054849054664373,-0.096094466745853],[0.04457325860858,0.049134541302919,-0.073178000748158],[0.092369467020035,0.06607548892498,0.1350504308939]],[[0.0027925216127187,0.0035327174700797,0.013113901950419],[0.011028760112822,-0.0063289487734437,-0.0017318794270977],[0.052412439137697,-0.067116379737854,0.098782196640968]],[[0.026478663086891,-0.086141854524612,-0.054487641900778],[-0.077108077704906,0.042048502713442,0.012939793989062],[0.068512454628944,0.0038754236884415,0.018638744950294]],[[-0.03881774097681,0.11231476813555,0.032113458961248],[0.063365995883942,0.072331130504608,0.12330600619316],[0.02668410167098,0.021973226219416,0.048469915986061]],[[-0.066363885998726,0.035239435732365,-0.048552561551332],[-0.10471583902836,0.020291525870562,-0.051245678216219],[0.12391185760498,0.035027675330639,-0.022046159952879]],[[-0.0082450276240706,-0.0032957463990897,-0.26634380221367],[0.013353018090129,-0.049511656165123,-0.057252574712038],[0.035438556224108,0.091299377381802,0.084379389882088]],[[0.012969303876162,0.0067869103513658,-0.084175892174244],[-0.021827459335327,-0.029423989355564,-0.0052366671152413],[-0.05420633405447,0.062774643301964,0.16409194469452]],[[-0.10177244991064,0.058527447283268,-0.039247248321772],[0.072045713663101,0.067115813493729,0.066891513764858],[0.097684375941753,0.082007467746735,-0.20269937813282]],[[-0.06335236877203,-0.032524064183235,-0.04138732329011],[0.075525030493736,0.0916867852211,-0.03551783785224],[0.063147306442261,0.12519273161888,0.054201077669859]],[[0.1265334635973,0.009779361076653,-0.0040337969549],[-0.096063181757927,0.096006758511066,-0.081140488386154],[-0.024195715785027,0.052801012992859,0.056934636086226]],[[0.19698317348957,-0.13594803214073,-0.2770214676857],[0.18040846288204,0.013925509527326,-0.077278204262257],[0.040892001241446,0.1323317438364,0.051516208797693]]],[[[-0.080105103552341,-0.097827702760696,-0.029487604275346],[-0.046389855444431,-0.025302393361926,0.101616717875],[-0.070855796337128,0.047774132341146,0.042883161455393]],[[0.098672531545162,0.077096775174141,-0.038684949278831],[-0.14626471698284,0.024456271901727,0.01639011874795],[0.0069079184904695,-0.016158297657967,0.077864855527878]],[[0.074268706142902,-0.049332667142153,-0.0066688843071461],[0.032605186104774,-0.03891110047698,-0.10928224027157],[0.07428964227438,-0.01679995469749,-0.085137009620667]],[[0.14449569582939,0.040554702281952,0.019549580290914],[0.17324396967888,0.063517898321152,0.07433146238327],[-0.12574969232082,0.10833483934402,-0.078430131077766]],[[-0.010352866724133,-0.014137230813503,-0.090911008417606],[-0.11256913840771,-0.015593159012496,-0.064140193164349],[0.090293578803539,0.14374123513699,-0.016191186383367]],[[-0.096153974533081,-0.12855635583401,-0.14862754940987],[-0.1356041431427,-0.19274245202541,-0.12403852492571],[0.030766217038035,-0.26983925700188,-0.08620211482048]],[[0.048929579555988,-0.10053861141205,-0.0045737670734525],[0.1008128747344,-0.049973025918007,0.077999994158745],[0.088200002908707,0.05244267359376,-0.086854495108128]],[[-0.098993241786957,-0.028931027278304,0.085252061486244],[0.052093863487244,0.031011734157801,-0.04230684787035],[0.014895158819854,0.08731297403574,-0.081067577004433]],[[0.019162282347679,-0.0086479671299458,-0.012851376086473],[0.023421010002494,0.034103203564882,0.029803583398461],[-0.036729864776134,0.019983176141977,-0.033657342195511]],[[-0.02567046135664,-0.035219922661781,0.14440011978149],[-0.029607938602567,-0.05335370823741,-0.048297330737114],[0.012425862252712,0.029176488518715,0.026144726201892]],[[0.068938001990318,-0.038918875157833,-0.070746704936028],[-0.023867767304182,-0.065417170524597,0.12298057228327],[-0.0014773578150198,0.080602690577507,0.060105495154858]],[[-0.25648546218872,-0.16665488481522,0.056983191519976],[-0.24183732271194,-0.19603353738785,0.14956609904766],[0.0077432971447706,0.059991117566824,0.12910190224648]],[[0.043074619024992,-0.02759494073689,0.015262881293893],[0.039805382490158,-0.025007730349898,-0.062825761735439],[0.048185363411903,-0.055990189313889,0.019864631816745]],[[-0.023165291175246,-0.072156369686127,0.0049772886559367],[-0.045151621103287,0.13614536821842,0.036568485200405],[0.054245389997959,0.080310016870499,0.0014532645000145]],[[0.04194837808609,-0.053579021245241,0.0304463673383],[0.041137672960758,-0.12735226750374,-0.091843150556087],[-0.028637522831559,-0.070883996784687,-0.035889651626348]],[[-0.026497412472963,-0.040714383125305,-0.00057087338063866],[-0.011721895076334,0.036642979830503,-0.016502488404512],[-0.02944465726614,0.090923175215721,-0.079676546156406]],[[0.11512114107609,0.062121789902449,-0.0097036007791758],[0.1143439784646,-0.11503577977419,0.050841581076384],[0.0014533019857481,-0.059339668601751,0.069722078740597]],[[-0.10612789541483,0.031254906207323,-0.075731948018074],[-0.11974203586578,0.014683673158288,0.024708371609449],[0.0592330545187,0.075703926384449,0.1834037899971]],[[0.036728080362082,0.0030233378056437,-0.083972282707691],[-0.03275291621685,0.0092517742887139,-0.0074927951209247],[-0.066479325294495,0.048806250095367,0.025372525677085]],[[-0.14530436694622,0.041750855743885,0.014336151070893],[-0.065089836716652,0.078386902809143,0.059440772980452],[-0.097454190254211,0.090252056717873,0.095674447715282]],[[0.027691759169102,-0.06456932425499,0.11313589662313],[-0.055639669299126,-0.01988947764039,-0.020398726686835],[0.033788874745369,0.036491353064775,-0.063929535448551]],[[-0.014179930090904,0.029365841299295,-0.067028224468231],[0.089752897620201,-0.058405827730894,0.011828674003482],[-0.015937155112624,-0.0032596006058156,0.014133758842945]],[[-0.076325938105583,-0.10485481470823,0.048570763319731],[-0.045376241207123,-0.014515132643282,-0.035216588526964],[0.01546601112932,0.045947551727295,-0.019367618486285]],[[0.0067840400151908,0.038970731198788,-0.057541999965906],[0.20144042372704,0.068356305360794,-0.10136324167252],[0.1268325150013,-0.036553852260113,-0.069394968450069]],[[0.036772783845663,0.008986609056592,-0.024970393627882],[-0.011023529805243,0.061718989163637,-0.0043831085786223],[-0.039007157087326,-0.023821238428354,0.10571056604385]],[[0.016313247382641,-0.07160497456789,-0.053734790533781],[0.015130019746721,-0.14243750274181,-0.019064143300056],[-0.019406398758292,-0.039754912257195,-0.04140080884099]],[[-0.057224757969379,0.12694093585014,-0.11557719111443],[-0.0028651361353695,0.0035655174870044,-0.039529234170914],[-0.097764663398266,-0.03253823146224,0.024201450869441]],[[-0.056015443056822,-0.034636221826077,0.01058586128056],[0.090035937726498,-0.10513160377741,-0.15077836811543],[0.036402616649866,-0.10478778928518,0.0034739736001939]],[[0.039283074438572,-0.0064397635869682,0.0043118773028255],[0.0092044696211815,0.007683414965868,-0.045402802526951],[0.024324191734195,0.060680326074362,-0.090032555162907]],[[0.18074774742126,-0.046199958771467,0.011335485614836],[0.020735653117299,-0.1427994966507,0.024371920153499],[-0.059434980154037,-0.1438902169466,-0.091970160603523]],[[-0.14873422682285,-0.030599484220147,0.0065621547400951],[-0.093971699476242,0.052950780838728,0.027430649846792],[-0.13754662871361,0.013750334270298,0.0776641741395]],[[0.0066384947858751,0.027032336220145,0.012227236293256],[-0.047307547181845,0.13343486189842,0.13274385035038],[0.033218652009964,-0.0044833403080702,-0.091905668377876]],[[0.051051672548056,0.0058353012427688,-0.042341716587543],[0.021672707051039,0.077734544873238,-0.089653633534908],[0.083362258970737,-0.1257206350565,0.011082590557635]],[[-0.072002336382866,0.0076130395755172,-0.039454892277718],[-0.20635275542736,-0.065892793238163,0.044437907636166],[0.075424961745739,-0.11705566942692,-0.1617605984211]],[[-0.032018236815929,-0.068035140633583,-0.13049523532391],[-0.07525609433651,-0.014183415099978,-0.067609138786793],[-0.012216149829328,0.037938375025988,-0.0026446727570146]],[[0.055453404784203,0.0092269442975521,0.12992060184479],[-0.086889296770096,-0.061220161616802,0.036510404199362],[-0.050271313637495,-0.084697104990482,-0.034193154424429]],[[0.14610047638416,0.065809242427349,-0.061025459319353],[0.10818298906088,0.089165844023228,-0.17919319868088],[-0.054610528051853,-0.052767675369978,-0.1581406891346]],[[-0.13470637798309,-0.052155252546072,-0.026348363608122],[-0.06536029279232,-0.052208710461855,0.060106128454208],[-0.034162882715464,0.043367091566324,0.069856740534306]],[[-0.15263324975967,-0.012258522212505,0.16524615883827],[-0.109509781003,0.019981609657407,-0.066949650645256],[0.016806095838547,0.072379000484943,-0.02587154135108]],[[-0.11625176668167,-0.054680302739143,-0.069536782801151],[0.031108271330595,0.075290061533451,-0.0092807756736875],[-0.069918543100357,0.011814310215414,0.040402930229902]],[[-0.049363870173693,0.042059928178787,0.10721050202847],[-0.34546571969986,-0.10988190770149,-0.0667979195714],[-0.15588596463203,-0.12958480417728,-0.10002055764198]],[[-0.013270427472889,-0.047796949744225,-0.044161111116409],[-0.12214644998312,-0.058117158710957,-0.090979009866714],[0.030213618651032,0.0033242241479456,-0.11871065944433]],[[0.091269597411156,0.11393115669489,-0.054671447724104],[0.060439802706242,-0.037723202258348,-0.031298723071814],[0.025858171284199,0.0027761191595346,-0.067493811249733]],[[-0.030925059691072,-0.0066615389660001,-0.058861032128334],[0.0068564899265766,-0.017616270110011,0.081892780959606],[0.11860460788012,-0.026417968794703,-0.051882855594158]],[[-0.06318587064743,0.017668440937996,0.057483050972223],[0.047310449182987,0.087777160108089,-0.021417126059532],[-0.029720608144999,-0.03850507363677,-0.11151102930307]],[[0.041085045784712,-0.019641114398837,0.10399433970451],[0.043312776833773,-0.0065741715952754,-0.079829581081867],[0.015333075076342,-0.030249150469899,0.068403080105782]],[[0.092407785356045,0.076446421444416,-0.24878726899624],[0.10471738129854,0.081101506948471,0.060275468975306],[0.066331468522549,0.018675919622183,-0.14265736937523]],[[-0.017654461786151,-0.061307322233915,-0.039643850177526],[-0.036920744925737,-0.0064278920181096,-0.011879426427186],[0.12873359024525,0.01942284591496,0.095453947782516]],[[0.13135294616222,0.06144106015563,0.022756803780794],[0.16632631421089,-0.018837556242943,-0.025801138952374],[-0.05301358923316,-0.011836929246783,0.049989983439445]],[[0.015400555916131,0.044596519321203,-0.034082897007465],[0.03355609998107,0.012830170802772,0.050461664795876],[0.064329266548157,-0.25719821453094,-0.027405343949795]],[[-0.037233095616102,0.09199608117342,0.049156367778778],[-0.019284987822175,-0.0076338285580277,-0.10059490054846],[-0.0087370900437236,0.053282987326384,-0.10308150202036]],[[0.12741449475288,-0.0019769947975874,0.054426554590464],[-0.048736609518528,-0.023592481389642,0.085366062819958],[-0.16416454315186,-0.036141451448202,0.045757535845041]],[[-0.0050917584449053,-0.0066221537999809,-0.11684762686491],[0.011004080064595,0.0058670123107731,-0.024454990401864],[-0.014325610361993,-0.015826420858502,-0.010582500137389]],[[-0.044715639203787,-0.0011806185357273,0.035453654825687],[-0.061804067343473,-0.042262323200703,-0.09282174706459],[-0.021610405296087,-0.0012636232422665,-0.092038750648499]],[[-0.05145962536335,0.064400628209114,-0.02838265709579],[0.039139613509178,-0.002090455731377,0.043500375002623],[0.04747686907649,-0.032759852707386,0.0097818719223142]],[[-0.060004878789186,0.21051648259163,0.012464788742363],[0.016452018171549,-0.092672280967236,-0.17536801099777],[-0.01435183826834,-0.030446765944362,-0.00040684858686291]],[[0.025425953790545,0.043000560253859,0.10190435498953],[-0.040924523025751,0.074405305087566,0.15689541399479],[0.080710843205452,-0.060327846556902,0.19274854660034]],[[0.088437788188457,0.048663131892681,0.037792392075062],[-0.019362585619092,0.031713273376226,0.057115264236927],[0.024220729246736,-0.016710689291358,-0.13710515201092]],[[0.14198988676071,-0.009336412884295,-0.12387635558844],[0.043138317763805,0.014782141894102,0.017368102446198],[0.018254132941365,0.011129279620945,0.013832078315318]],[[0.11191636323929,0.024421961978078,-0.067592151463032],[0.043855283409357,-0.052281711250544,-0.05464730411768],[0.010866732336581,0.08707582950592,0.014814971014857]],[[-0.013249028474092,0.016148883849382,0.05900726467371],[-0.034485299140215,0.040241062641144,-0.0231719519943],[0.051256682723761,-0.020839197561145,-0.078823439776897]],[[0.019123077392578,-0.031431712210178,0.13736870884895],[0.0059287939220667,0.092087358236313,-0.073560871183872],[0.097335629165173,0.10185480117798,-0.0022780147846788]],[[0.14319124817848,0.09608343988657,0.061185248196125],[0.021060375496745,-0.054176367819309,0.029717959463596],[0.0070802038535476,-0.071945160627365,0.080638058483601]],[[-0.00077693548519164,-0.019543679431081,-0.10027580708265],[0.12670320272446,0.087057068943977,-0.033791076391935],[-0.051718834787607,0.013305694796145,0.031244592741132]]],[[[-0.063664011657238,0.029814440757036,0.16694554686546],[-0.093162454664707,-0.060620527714491,-0.050618335604668],[0.037258882075548,0.14922843873501,-2.5308454496553e-06]],[[0.017154145985842,0.032285086810589,0.0051690777763724],[0.097792834043503,-0.024139415472746,-0.049360491335392],[0.052055343985558,0.018622539937496,0.011366477236152]],[[-0.034448217600584,0.042233046144247,-0.01032779738307],[-0.037926200777292,-0.088194280862808,0.13813725113869],[0.17811273038387,-0.017096806317568,-0.1174688860774]],[[0.02474139817059,-0.068223930895329,-0.084285266697407],[0.067886002361774,0.0015874616801739,-0.051703874021769],[0.063423611223698,-0.087585106492043,0.041800778359175]],[[-0.0067558279260993,0.012991605326533,-0.084740571677685],[-0.014264148660004,0.076148398220539,-0.062855415046215],[-0.043540835380554,-0.084544219076633,-0.13759784400463]],[[-0.048517473042011,0.009553138166666,0.10735588520765],[0.05195602029562,0.047816697508097,-0.052916511893272],[0.024022400379181,-0.023593313992023,-0.0028890008106828]],[[-0.06358677148819,-0.001283064018935,0.091778710484505],[-0.0064762770198286,-0.10452480614185,-0.039368819445372],[-0.013333525508642,0.041048664599657,0.036329407244921]],[[0.062846399843693,0.004075211007148,-0.11798465251923],[-0.058307129889727,0.0071320114657283,-0.038153953850269],[0.089725136756897,-0.037723127752542,0.13960425555706]],[[0.014107599854469,0.012528304941952,-0.087893329560757],[0.074061341583729,-0.073225937783718,-0.036094810813665],[0.044568818062544,0.087149567902088,-0.025434669107199]],[[0.0045385984703898,0.00029623360023834,-0.14692234992981],[0.031615201383829,0.022261256352067,-0.082321681082249],[-0.0013058944605291,-0.0091570802032948,-0.0034518295433372]],[[-0.013440120965242,0.022307951003313,-0.054565284401178],[0.06618881970644,0.062145791947842,-0.065568998456001],[-0.034912414848804,0.031043013557792,0.081362426280975]],[[0.048159152269363,-0.02475206181407,-0.035048294812441],[0.011818406172097,-0.075567096471786,-0.042050190269947],[0.046243034303188,-0.040118101984262,-0.0093907210975885]],[[0.0205352678895,-0.034897930920124,-0.020739328116179],[-0.063486360013485,-0.0237235147506,0.046759147197008],[-0.025548495352268,0.0050734370015562,-0.0086418436840177]],[[0.053567588329315,0.0008868922595866,-0.12248080968857],[0.040463674813509,0.051848590373993,0.037172172218561],[-0.050273448228836,0.015340533107519,0.0078733069822192]],[[0.020813014358282,-0.014929093420506,-0.039045285433531],[0.055713552981615,-0.10485247522593,0.0019811710808426],[0.083963915705681,-0.053916025906801,-0.034640926867723]],[[0.026358779519796,-0.019880106672645,-0.075816929340363],[0.020217474550009,0.033581230789423,-0.0025606332346797],[-0.078436717391014,-0.098069034516811,-0.06656252592802]],[[0.065650247037411,0.0057771913707256,0.038978256285191],[0.0014647011412308,0.13401238620281,-0.077655933797359],[0.060716882348061,-0.02496063709259,0.090521842241287]],[[-0.023803289979696,0.082333765923977,-0.049573704600334],[-0.046988401561975,-0.060965955257416,0.03451656550169],[-0.013303020037711,-0.024303494021297,-0.036813631653786]],[[-0.028868746012449,0.081054136157036,0.021031873300672],[-0.050955314189196,-0.053119041025639,0.011411476880312],[-0.053558766841888,-0.021609336137772,0.038550581783056]],[[-0.019993051886559,0.089415304362774,-0.048164214938879],[-0.0051148398779333,0.085951678454876,0.067156761884689],[0.068293333053589,0.02178473956883,-0.079385116696358]],[[0.0081390095874667,-0.046327218413353,-0.015505983494222],[-0.082212209701538,-0.042487077414989,-0.11052067577839],[0.049001410603523,0.036026008427143,-0.094579391181469]],[[0.019134644418955,-0.11245822906494,-0.050241068005562],[0.022063042968512,0.013080355711281,0.012268115766346],[0.031236339360476,-0.051185462623835,-0.064189046621323]],[[-0.0017992422217503,-0.0848708152771,0.011718839406967],[0.022473542019725,-0.032191786915064,0.0076932450756431],[-0.10638406872749,0.086091533303261,-0.027066642418504]],[[0.067768424749374,0.008566346950829,-0.057089734822512],[0.0038754192646593,-0.062088452279568,0.037817992269993],[-0.022112550213933,-0.057669147849083,0.0024442819412798]],[[-0.070449590682983,-0.035469826310873,0.0011104298755527],[0.14166663587093,-0.0050605600699782,-0.046322349458933],[-0.063141725957394,0.040875039994717,-0.07656455039978]],[[-0.02146297506988,-0.051308646798134,-0.029094994068146],[-0.093150295317173,0.0030000845436007,0.053316749632359],[0.042951449751854,-0.0082713905721903,-0.043689459562302]],[[-0.032072942703962,-0.010422207415104,-0.054909124970436],[0.010381954722106,-0.041267387568951,-0.05842474475503],[0.020934885367751,0.086910076439381,-0.072596482932568]],[[0.047320336103439,0.040357351303101,-0.00011415293556638],[0.024369969964027,0.082725279033184,0.01221536193043],[0.017316181212664,-0.0057368534617126,-0.066760905086994]],[[-0.04516601935029,0.044664423912764,0.028250692412257],[-0.0074687283486128,-0.060307569801807,-0.010022738948464],[0.084862053394318,-0.014036188833416,-0.0086579164490104]],[[0.041326589882374,0.08212423324585,-0.083183519542217],[-0.018639052286744,-0.079711176455021,0.0085602765902877],[0.080374360084534,-0.093509346246719,-0.014067199081182]],[[0.01610604301095,0.044468019157648,0.011344565078616],[-0.073583267629147,0.015926454216242,0.14300492405891],[-0.021061386913061,0.020286606624722,0.040235318243504]],[[0.070113569498062,-0.038274750113487,0.020146047696471],[0.036547776311636,0.014775417745113,0.033635128289461],[-0.019451199099422,-0.016847128048539,-0.019596707075834]],[[-0.024086032062769,0.14033545553684,0.053968925029039],[0.0156882815063,-0.11189118772745,0.0037689015734941],[-0.020695872604847,-0.11337460577488,0.026982633396983]],[[0.055546801537275,-0.15430811047554,0.045582707971334],[0.12016274780035,-0.17458672821522,0.09389716386795],[0.049445778131485,0.004221685230732,-0.10690665245056]],[[0.079306669533253,-0.010341339744627,0.056028254330158],[-0.053423449397087,0.087019003927708,-0.052689343690872],[-0.051026225090027,-0.13580955564976,0.052296578884125]],[[-0.026286566630006,-0.0092276157811284,0.049923934042454],[-0.022815452888608,-0.10377594083548,-0.084966532886028],[0.044437389820814,-0.060898754745722,0.024465860798955]],[[0.064526662230492,0.039669670164585,0.006463625933975],[0.063434459269047,-0.091066189110279,-0.049933221191168],[-0.0020550272893161,-0.078611344099045,0.089909285306931]],[[0.020486613735557,0.082169093191624,0.14182186126709],[0.023251002654433,-0.076833337545395,-0.0098456330597401],[-0.089634828269482,-0.017023082822561,-0.063203983008862]],[[-0.035899233072996,-0.02886694855988,-0.060316197574139],[0.055325608700514,-0.055334806442261,-0.081452272832394],[0.070510014891624,-0.062438011169434,-0.050174996256828]],[[-0.016806347295642,0.012247848324478,-0.050700724124908],[-0.13001684844494,0.10877645760775,-0.00039741044747643],[-0.063961021602154,-0.058887958526611,0.033796168863773]],[[-0.023958334699273,-0.1665686070919,0.041105829179287],[0.027976477518678,-0.12280527502298,0.051514871418476],[0.038431193679571,-0.16903801262379,-0.019207803532481]],[[0.039702482521534,-0.0096167735755444,-0.066867373883724],[-0.0025944237131625,-0.091430872678757,-0.027023829519749],[-0.072460345923901,-0.038694147020578,-0.14564318954945]],[[-0.018255930393934,-0.092098794877529,-0.075275778770447],[-0.021262031048536,-0.014940624125302,-0.17752148211002],[0.16915117204189,0.14605210721493,-0.089660748839378]],[[-0.03904939815402,-0.01173597201705,0.11669125407934],[-0.090145908296108,0.015253937803209,0.022449035197496],[-0.046438336372375,-0.01688858307898,0.046490859240294]],[[0.047293815761805,-0.076052375137806,-0.0049341395497322],[-0.13652710616589,0.037910766899586,0.012802550569177],[0.021410988643765,-0.022998390719295,-0.031845089048147]],[[-0.0029634153470397,-0.025090800598264,-0.031086860224605],[-0.0076607782393694,-0.073500484228134,-0.016128832474351],[0.040378592908382,-0.10711342841387,-0.04741008579731]],[[0.0056705451570451,0.048786275088787,-0.16095857322216],[-0.10001027584076,0.015277964994311,-0.025154482573271],[-0.071770682930946,-0.08898439258337,-0.060592710971832]],[[0.083087846636772,-0.099167130887508,0.0086817275732756],[0.030461000278592,0.12543547153473,-0.056976277381182],[0.099498450756073,-0.049728404730558,-0.083456963300705]],[[-0.062070585787296,0.020589288324118,0.027524568140507],[-0.14727464318275,-0.015964871272445,0.09513970464468],[-0.045372128486633,0.036128416657448,-0.032729394733906]],[[0.07782569527626,-0.048748638480902,0.018776044249535],[-0.039605427533388,0.03312436491251,0.0060683251358569],[0.039104174822569,-0.0094447927549481,-0.19934889674187]],[[0.080149851739407,-0.023596588522196,-0.068970136344433],[-0.062617063522339,0.0030726420227438,0.021756399422884],[-0.0380854383111,0.00060510809998959,-0.089215472340584]],[[0.075693428516388,5.5950189562282e-05,-0.026318801566958],[0.032202951610088,-0.035598609596491,-0.012231514789164],[0.04859958216548,-0.10684564709663,-0.13905313611031]],[[-0.12423145025969,-0.0084254527464509,0.022900534793735],[0.0085135046392679,-0.00073658407200128,0.042921267449856],[-0.0041281315498054,0.019246170297265,0.040903456509113]],[[-0.061363533139229,0.029822772368789,0.03370912745595],[0.029237857088447,-0.029823161661625,0.0092187710106373],[0.068027406930923,0.039472911506891,-0.035997174680233]],[[0.0054041836410761,-0.066105760633945,0.027399942278862],[-0.020246516913176,0.023073649033904,-0.05820257216692],[-0.065676018595695,-0.015569359995425,0.024090236052871]],[[-0.0089641017839313,0.01633282750845,-0.044094316661358],[0.014215942472219,-0.1914636194706,-0.023200860247016],[0.029184179380536,-0.063226774334908,0.026848062872887]],[[0.035187818109989,0.07340732216835,0.023832006379962],[-0.12395425140858,0.23438282310963,-0.043932810425758],[0.011623600497842,0.11647483706474,-0.032132465392351]],[[-0.021263178437948,0.026856807991862,0.087991341948509],[0.022584989666939,0.068094678223133,0.034398701041937],[-0.14667671918869,0.024335807189345,-0.033879846334457]],[[0.019104721024632,-0.034178994596004,-0.064073227345943],[0.030668586492538,0.048913136124611,-0.083217725157738],[-0.062017079442739,0.0066752498969436,-0.02804078347981]],[[-0.026557637378573,0.021639024838805,0.033819459378719],[-0.0065513327717781,-0.060874652117491,-0.094322443008423],[-0.031949199736118,0.092712581157684,-0.10416536033154]],[[0.059385385364294,-0.087495043873787,0.11252268403769],[0.00060472788754851,0.033453192561865,-0.041398428380489],[-0.0030649632681161,-0.11757055670023,-0.047578617930412]],[[0.023596372455359,-0.0021417622920126,-0.062887959182262],[-0.038466233760118,-0.070757783949375,-0.032924838364124],[-0.044430080801249,0.01900576800108,0.12180826067924]],[[-0.042323991656303,0.012209632433951,-0.019435681402683],[-0.037732340395451,0.011766627430916,0.045408718287945],[-0.058659460395575,-0.069909617304802,0.050180170685053]],[[0.018972471356392,0.1196279078722,-0.036544751375914],[-0.064417786896229,0.14440731704235,0.052584737539291],[0.0050966148264706,-0.055470913648605,-0.030221937224269]]],[[[0.13813619315624,0.068179465830326,-0.01662022061646],[-0.08831537514925,-0.1191183552146,0.0094505678862333],[-0.036003895103931,0.0076030176132917,0.045822322368622]],[[-0.050523955374956,-0.037179380655289,0.22777730226517],[-0.084792710840702,0.0086764674633741,0.12530475854874],[0.12697221338749,0.021845426410437,0.059350099414587]],[[-0.15854623913765,-0.040878091007471,0.025017697364092],[-0.21218994259834,-0.075269415974617,0.010302593000233],[0.065438874065876,0.15436440706253,-0.014438914135098]],[[-0.14879080653191,-0.18021441996098,0.12164840102196],[0.11781495064497,0.023416539654136,0.15602323412895],[-0.033935844898224,-0.068352058529854,-0.093790970742702]],[[-0.016687337309122,0.070786118507385,-0.20154581964016],[0.077366411685944,0.18495117127895,-0.044506721198559],[-0.12179770320654,-0.08050499856472,0.061174683272839]],[[-0.036755561828613,-0.020370449870825,0.088550053536892],[0.122254088521,0.071518376469612,-0.1672291457653],[0.079714767634869,-0.10172653198242,-0.080829180777073]],[[-0.17643922567368,-0.040072660893202,0.032778970897198],[0.019866341724992,0.10776609927416,-0.080160029232502],[-0.017785822972655,0.037944946438074,-0.042929630726576]],[[0.16051350533962,-0.018100278452039,-0.075687050819397],[-0.051543325185776,0.079514749348164,0.08896204829216],[0.10488356649876,-0.027010230347514,-0.11092462390661]],[[0.0092015322297812,0.049173161387444,-0.014661484397948],[-0.052920803427696,0.02489092759788,-0.022867592051625],[-0.024467453360558,0.048097681254148,0.019909115508199]],[[0.020315494388342,0.074294395744801,0.03302113711834],[0.0099714640527964,-0.0045936172828078,-0.0020053805783391],[0.035057444125414,-0.027766212821007,-0.12786871194839]],[[0.014372480101883,-0.016075516119599,0.060428682714701],[0.043148417025805,0.072219453752041,-0.07226175814867],[0.0031541758216918,0.058108814060688,-0.026405148208141]],[[-0.044368647038937,0.19785189628601,0.072312906384468],[-0.043475098907948,-0.096907272934914,-0.16873045265675],[-0.16692985594273,0.011091278865933,0.018551563844085]],[[-0.15367659926414,-0.27454391121864,0.045392073690891],[0.20175009965897,0.087088547646999,0.12727524340153],[0.022809453308582,-0.14095209538937,-0.0075302855111659]],[[-0.0082020880654454,-0.14083416759968,0.084070175886154],[-0.11514791846275,-0.036149963736534,0.041994526982307],[0.051352553069592,0.053990058600903,0.027676796540618]],[[0.071470521390438,0.090677961707115,-0.050758115947247],[0.018293730914593,-0.1757742613554,-0.011869798414409],[0.024264130741358,-0.14125548303127,-0.083981819450855]],[[-0.078799121081829,-0.065077140927315,-0.067460387945175],[-0.039140723645687,-0.11396425962448,-0.0028215681668371],[0.031949616968632,-0.008960435166955,-0.0099684502929449]],[[-0.052763968706131,-0.035409525036812,0.042025592178106],[0.13548694550991,0.071668937802315,0.010363584384322],[-0.0092594306915998,-0.11877857148647,0.11405067145824]],[[0.099210843443871,-0.0039356341585517,0.04582617431879],[-0.1477003544569,1.3064327504253e-06,-0.079052083194256],[-0.035588759928942,0.20046696066856,-0.088073462247849]],[[0.1025128364563,-0.011336850933731,-0.048728331923485],[-0.060420375317335,-0.055057801306248,0.11343773454428],[0.055673487484455,-0.025899181142449,0.076339781284332]],[[0.034192372113466,-0.064672462642193,0.0076386239379644],[9.6964795375243e-06,0.11845029890537,0.088760979473591],[0.016633933410048,-0.070945799350739,0.056607075035572]],[[0.087689526379108,0.087562933564186,-0.01825650036335],[0.015632616356015,-0.053618829697371,-0.023946594446898],[-0.038961913436651,-0.03534048050642,-0.0078889466822147]],[[-0.12607783079147,0.041155807673931,-0.10922507196665],[-0.062239304184914,0.042621575295925,0.0048132780939341],[0.070079326629639,-0.12873859703541,0.04400697350502]],[[-0.016888972371817,0.075395032763481,0.0075753796845675],[0.068214796483517,-0.079180419445038,0.10284251719713],[-0.10030695050955,-0.0045731663703918,-0.029821641743183]],[[-0.098028987646103,0.122733540833,0.00297079840675],[0.033712334930897,0.055056318640709,-0.019755503162742],[-0.050680611282587,0.030326005071402,0.093232445418835]],[[0.019292568787932,0.024740917608142,-0.074821062386036],[-0.0039990250952542,-0.041487399488688,0.039426501840353],[0.04747236892581,0.078475065529346,-0.11353708803654]],[[-0.0012552043190226,0.025067927315831,-0.16555890440941],[0.0085873706266284,-0.00037017275462858,-0.040609318763018],[-0.011247023008764,0.085041463375092,-0.077122032642365]],[[0.010714107193053,-0.038182731717825,-0.10219833999872],[0.15404658019543,0.042235340923071,-0.088399335741997],[0.020595546811819,-0.06542731821537,0.036959581077099]],[[-0.0017588529735804,0.0025123588275164,0.0059965834952891],[0.10520529747009,-0.082885175943375,-0.07053791731596],[-0.052589382976294,-0.055729296058416,-0.047391157597303]],[[0.021342225372791,-0.13935519754887,0.021497268229723],[-0.12093232572079,0.0060847937129438,0.057031009346247],[0.059426940977573,0.012118515558541,-0.041279643774033]],[[-0.078988835215569,-0.045059822499752,0.0038526365533471],[-0.11796080321074,0.11279432475567,0.097600057721138],[0.048149526119232,0.01984273083508,-0.044596575200558]],[[-0.0093492483720183,-0.15628948807716,-0.0056525124236941],[-0.10376667231321,0.085945107042789,0.1411774456501],[0.028206828981638,0.042805794626474,0.064266532659531]],[[0.080774374306202,0.074308045208454,-0.024073895066977],[0.084701783955097,-0.055055472999811,0.025122355669737],[-0.00032407301478088,0.017235141247511,0.036930214613676]],[[-0.035426292568445,-0.033913165330887,-0.039068344980478],[0.070598788559437,0.011007602326572,-0.0427759103477],[0.22008135914803,-0.069205857813358,-0.024356786161661]],[[0.0019406750798225,-0.040042012929916,-0.097811840474606],[-0.10958199948072,0.1280777156353,-0.0096179684624076],[0.052879244089127,-0.016832705587149,-0.016154745593667]],[[-0.10567349940538,-0.02433936484158,0.000668810098432],[0.024150345474482,0.12263995409012,0.078241273760796],[-0.1005727276206,0.07109197229147,-0.098334670066833]],[[0.028570426627994,0.098808035254478,-0.069984249770641],[0.031083879992366,-0.034142255783081,-0.18457362055779],[-0.016130926087499,0.049033842980862,-0.084596246480942]],[[-0.058897480368614,-0.048125974833965,-0.036280546337366],[-0.0062445029616356,0.036943461745977,0.01046346873045],[0.073461003601551,0.11211025714874,-0.0012799601536244]],[[-0.091357707977295,0.00075155083322898,-0.063224591314793],[-0.019520319998264,-0.043290365487337,0.12662544846535],[0.049240492284298,-0.0060318415053189,0.043237220495939]],[[-0.10880272090435,-0.10355948656797,0.139637991786],[-0.038711689412594,-0.084617376327515,-0.070693343877792],[0.0028569477144629,0.10351222753525,0.021700527518988]],[[-0.061226721853018,0.0038585767615587,0.053996380418539],[0.033835142850876,-0.045177679508924,0.074256211519241],[-0.10856545716524,0.12078814208508,-0.026580894365907]],[[0.07642388343811,-0.039740420877934,0.058990843594074],[0.017499588429928,0.11311292648315,0.06777685135603],[-0.0058923824690282,-0.048017133027315,0.0056182313710451]],[[0.070583321154118,0.07298182696104,0.051396138966084],[-0.10798986256123,0.031937371939421,-0.078340105712414],[-0.05491154640913,-0.2173141092062,-0.13860721886158]],[[0.10212533175945,-0.016250284388661,-0.11787541210651],[-0.072401963174343,-0.040044520050287,-0.028397984802723],[0.038648594170809,0.010354194790125,-0.045175116509199]],[[-0.057936117053032,-0.12063759565353,-0.0028558392077684],[0.052697394043207,-0.031866189092398,0.083949945867062],[0.019163215532899,0.078691326081753,-0.0073478692211211]],[[-0.13691544532776,-0.10703885555267,-0.17131276428699],[-0.112463504076,0.053293187171221,0.052736863493919],[0.039999641478062,0.039522644132376,-0.076020859181881]],[[0.15924125909805,-0.050040032714605,0.069440804421902],[0.087366998195648,-0.1363387554884,-0.026247253641486],[-0.0065876482985914,-0.11312166601419,0.064362443983555]],[[-0.067328654229641,-0.071280032396317,0.010003883391619],[-0.040025655180216,-0.11440500617027,0.10793489962816],[0.025329802185297,-0.046442814171314,0.035948637872934]],[[-0.13909585773945,-0.0057093403302133,0.13485358655453],[0.13720446825027,-0.077931679785252,-0.053414069116116],[-0.010046110488474,-0.032659240067005,0.057815637439489]],[[-0.023903837427497,0.023568481206894,0.032442230731249],[-0.0048197251744568,0.038753367960453,-0.07201787084341],[-0.064713537693024,-0.04780125617981,-0.11570747196674]],[[-0.029439575970173,0.028238018974662,0.0081054754555225],[0.034914828836918,-0.0010193267371505,-0.022795364260674],[0.053127359598875,-0.1053855791688,-0.031388346105814]],[[0.027734655886889,0.067256480455399,0.082199804484844],[0.017069455236197,-0.0374840721488,-0.11656161397696],[-0.028412943705916,-0.096604093909264,-0.10954762250185]],[[0.043652176856995,-0.032415244728327,0.087985374033451],[0.07653646916151,-0.051485914736986,0.0773960724473],[-0.035196051001549,-0.12261921912432,-0.010692732408643]],[[-0.040033865720034,-0.16941975057125,0.043164867907763],[0.047637511044741,0.060880102217197,0.10245285183191],[0.033038269728422,0.029509890824556,-0.067008458077908]],[[-0.11746383458376,-0.18287613987923,-0.028362471610308],[-0.00036801301757805,-0.039681758731604,0.08589182049036],[0.052089836448431,-0.042803443968296,0.0058502540923655]],[[0.086764872074127,-0.015866285189986,-0.029079521074891],[0.054862074553967,-0.10136913508177,-0.053519811481237],[0.027006024494767,-0.10252390056849,-0.030539993196726]],[[0.12076318264008,-0.14306604862213,-0.0010069839190692],[-0.019490739330649,0.057025760412216,0.13102224469185],[0.04360143840313,-0.038371980190277,0.029299410060048]],[[-0.043188791722059,0.1974585801363,-0.01812569797039],[-0.024103535339236,0.062031518667936,0.038327589631081],[0.069697797298431,0.20918323099613,0.061262138187885]],[[0.10172731429338,-0.075325153768063,-0.012282269075513],[0.030439073219895,-0.032408360391855,-0.05516255646944],[0.017461162060499,0.0077414461411536,-0.001145662390627]],[[0.084763899445534,-0.052257556468248,0.036950387060642],[0.022686339914799,-0.092444241046906,0.049515970051289],[0.042744781821966,-0.012598283588886,0.17418129742146]],[[0.067117780447006,-0.060234982520342,0.0014149742200971],[0.010827330872416,-0.024874847382307,0.093888834118843],[-0.0065912292338908,0.066781803965569,0.11817344278097]],[[0.1679285466671,0.067604772746563,-0.096449591219425],[0.13118976354599,-0.033645205199718,-0.105009958148],[0.14065219461918,-0.12070205062628,0.026458432897925]],[[0.055933453142643,-0.010975705459714,-0.013257409445941],[0.006579902023077,-0.015881430357695,0.1946589499712],[-0.088661178946495,0.076412759721279,-0.06574708968401]],[[-0.072639398276806,-0.070233464241028,-0.01467714086175],[0.097830310463905,0.13241495192051,-0.016116319224238],[-0.024944866076112,-0.019065225496888,-0.043068651109934]],[[0.061343807727098,-0.1465682387352,-0.12244354188442],[0.056229904294014,-0.10590080916882,-0.10496337711811],[0.02329451777041,0.12201571464539,-0.0036528240889311]]],[[[-0.017351845279336,0.046783201396465,-0.11202801018953],[-0.034773763269186,0.0099613601341844,-0.021772379055619],[-0.030245583504438,0.010730446316302,0.13490141928196]],[[-0.026025811210275,-0.045961610972881,0.0055306190624833],[0.020229980349541,0.020048191770911,0.037505496293306],[-0.0043101338669658,0.16418200731277,0.069556906819344]],[[-0.011306429281831,0.064396515488625,-0.028170518577099],[0.053854744881392,-0.012568576261401,0.086977191269398],[-0.03588093072176,0.058587502688169,0.028601909056306]],[[-0.12452065944672,0.19592568278313,0.073800303041935],[-0.011386908590794,0.092119306325912,0.091109611093998],[-0.094811640679836,0.18319489061832,-0.084223881363869]],[[0.011218601837754,0.017639644443989,-0.036501068621874],[-0.02696874178946,0.016514396294951,0.020386448130012],[0.072616137564182,-0.016560025513172,-0.14773842692375]],[[0.025917207822204,0.057775609195232,-0.070914134383202],[-0.01559039670974,0.062396362423897,-0.091020531952381],[-0.0069965408183634,-0.011258892714977,-0.101333335042]],[[-0.0040479837916791,0.12768967449665,0.042500928044319],[0.041488256305456,-0.082670167088509,0.0085204001516104],[0.087962359189987,0.030667018145323,-0.07112929224968]],[[0.079719163477421,-0.052746966481209,-0.065480187535286],[-0.11058753728867,0.070145606994629,0.063662022352219],[0.12079808115959,0.1198728531599,0.0021668828558177]],[[-0.084997579455376,0.051160719245672,-0.099689722061157],[0.097388915717602,0.047686967998743,-0.076008327305317],[0.011207566596568,0.044693116098642,0.031145136803389]],[[-0.12200023233891,-0.018341964110732,-0.046576570719481],[0.068408668041229,0.087406329810619,-0.02228931337595],[0.070525825023651,0.13307581841946,-0.086456641554832]],[[-0.048832003027201,0.048114579170942,-0.013831595890224],[0.020135369151831,0.10615784674883,-0.024015262722969],[0.01227124594152,-0.0065260888077319,-0.094835259020329]],[[0.14635419845581,-0.02902228012681,-0.00450199842453],[0.13733105361462,0.0078954957425594,-0.0030856335069984],[0.0067617921158671,-0.063327148556709,0.050443284213543]],[[-0.073705017566681,0.049408849328756,0.071095801889896],[-0.054844453930855,0.14231917262077,-0.02073728479445],[-0.022275369614363,0.086151257157326,-0.070357583463192]],[[0.041400898247957,-0.054623872041702,-0.079811297357082],[-0.043666049838066,0.0081655373796821,0.10944535583258],[0.12211368232965,-0.008306372910738,0.055229637771845]],[[-0.1350317299366,0.029450170695782,-0.0077536688186228],[-0.01488440297544,-0.019413152709603,0.090409941971302],[-0.15722432732582,0.026061141863465,-0.058386940509081]],[[-0.02680647559464,0.014690076000988,0.02223745174706],[0.052876114845276,-0.015527185983956,0.014710520394146],[0.01960476487875,-0.14564919471741,0.056954275816679]],[[-0.061843942850828,3.8500911614392e-06,0.020236268639565],[-0.048063538968563,-0.010586027987301,-0.13749715685844],[-0.09977475553751,-0.036406185477972,-0.0058942339383066]],[[-0.046349916607141,0.049349535256624,-0.11642364412546],[-0.036547608673573,-0.069995313882828,0.10498794913292],[-0.0079396786168218,0.093980841338634,0.045784953981638]],[[0.08649305254221,-0.11649496108294,0.056188642978668],[0.022774130105972,-0.094559669494629,-0.018830969929695],[0.023865442723036,0.0025292297359556,-0.0082366829738021]],[[0.084740296006203,0.017441244795918,0.1816888153553],[-0.00020906593999825,0.11816292256117,0.0093669034540653],[0.17024098336697,-0.036221541464329,0.013901500031352]],[[0.063199117779732,-0.021589549258351,-0.058662220835686],[-0.051047138869762,-0.016117984429002,-0.047258235514164],[-0.09217307716608,-0.078128784894943,0.020828055217862]],[[0.053042802959681,-0.026376964524388,0.1453200429678],[-0.0069976411759853,0.032348718494177,0.0068860608153045],[-0.062672600150108,-0.027167232707143,0.22257439792156]],[[-0.07562130689621,0.077489480376244,-0.010113120079041],[-0.098237603902817,-0.045059777796268,0.03215803951025],[0.16007624566555,0.1508837044239,-0.0254109762609]],[[-0.04173131659627,-0.0032636732794344,0.064524553716183],[0.089804820716381,-0.022520685568452,0.065294951200485],[-0.068819053471088,-0.053428240120411,0.0055028237402439]],[[0.0066478229127824,-0.092912569642067,-0.045948896557093],[-0.042899657040834,-0.19814546406269,0.0022270020563155],[0.11114867031574,-0.0047032786533237,0.059085007756948]],[[0.17952515184879,-0.047479245811701,-0.053715340793133],[0.093686409294605,-0.045024994760752,-0.046297509223223],[0.055973388254642,-0.081076122820377,0.0034336373209953]],[[0.036182057112455,-0.058874942362309,0.033096697181463],[0.10406533628702,-0.035939861088991,-0.077888160943985],[-0.0693449229002,-0.013570380397141,-0.069916509091854]],[[0.16079914569855,0.033961553126574,-0.12572057545185],[-0.065993838012218,0.1369773298502,0.05930495634675],[0.014365082606673,0.011344675906003,0.040132656693459]],[[-0.11124341934919,0.072235889732838,0.023948881775141],[-0.031372684985399,0.11495275050402,-0.002141633303836],[-0.027567798271775,0.046287577599287,-0.016985159367323]],[[-0.068206071853638,0.0072590834461153,-0.046008303761482],[-0.027130167931318,-0.01808450371027,0.024398030713201],[-0.11547860503197,-0.084447875618935,0.060085169970989]],[[-0.059410728514194,0.20280684530735,-0.076488420367241],[-0.055262938141823,-0.0086631281301379,0.11980682611465],[0.053862378001213,0.024271951988339,-0.14419886469841]],[[0.02383990213275,0.0082217743620276,-0.012744521722198],[-0.016817813739181,-0.051941964775324,-0.084288895130157],[0.076779276132584,-0.14151628315449,-0.068869091570377]],[[0.070151172578335,0.019524207338691,0.11665923148394],[0.0016505146631971,-0.037237264215946,-0.03140852227807],[0.068403713405132,-0.0028285933658481,0.051805965602398]],[[0.079169034957886,-0.063898332417011,0.076920680701733],[0.13221864402294,-0.11197599768639,-0.012121392413974],[0.089655488729477,0.053077485412359,0.083522289991379]],[[0.0010690616909415,0.012061323970556,-0.048263270407915],[-0.11890512704849,-0.1427284181118,-0.058561131358147],[-0.032276250422001,-0.1011119633913,-0.086787819862366]],[[-0.064657464623451,-0.014841860160232,-0.053939513862133],[-0.0057256943546236,0.076859049499035,0.043924599885941],[-0.076002649962902,0.043443031609058,-0.085122808814049]],[[-0.035766743123531,0.016997681930661,0.11843131482601],[0.035818070173264,0.019879076629877,-0.053417723625898],[-0.037044871598482,-0.065574936568737,-0.031355708837509]],[[0.18904659152031,0.11490700393915,-0.026881439611316],[-0.042206585407257,-0.047569617629051,-0.0044753011316061],[0.053110737353563,-0.067228339612484,-0.025973629206419]],[[-0.031976416707039,-0.12079758197069,0.030489960685372],[0.11586064100266,-0.21907489001751,-0.014546985737979],[0.0034911837428808,0.042227279394865,0.026428388431668]],[[0.038088448345661,0.10076362639666,-0.081042446196079],[0.044274065643549,-0.13919275999069,0.16790835559368],[-0.055581081658602,0.037689916789532,-0.097395457327366]],[[0.020980730652809,0.036314692348242,-0.069444201886654],[0.059981506317854,-0.026099318638444,-0.13246440887451],[-0.041434574872255,0.061432272195816,-0.0084371687844396]],[[0.027719436213374,0.043594229966402,-0.028973735868931],[-0.18384009599686,0.084413014352322,-0.014939752407372],[-0.13734437525272,0.026702985167503,0.061323687434196]],[[-0.044094245880842,0.065218299627304,-0.059923738241196],[-0.035377912223339,-0.031711407005787,-0.061177980154753],[-0.083241917192936,-0.059141002595425,-0.067202895879745]],[[0.098927870392799,-0.0053245476447046,0.055424232035875],[-0.15764671564102,-0.04767794162035,0.030414609238505],[-0.016919668763876,0.0077994759194553,0.025080161169171]],[[0.12369994819164,-0.062879830598831,-0.25499296188354],[-0.03804138302803,0.020651062950492,-0.020080043002963],[-0.025603152811527,-0.094598740339279,0.045557014644146]],[[-0.0086150942370296,-0.074806295335293,-0.01968902349472],[-0.1934676617384,0.11667055636644,0.065423361957073],[0.0088853416964412,0.11883026361465,0.0028857602737844]],[[-0.049869000911713,0.0099810510873795,0.14896275103092],[-0.010413385927677,0.09827870875597,0.019318891689181],[-0.065599627792835,0.04493173584342,0.00050763337640092]],[[0.039051752537489,-0.13369585573673,-0.0048317667096853],[0.049523800611496,-0.031984247267246,-0.086987860500813],[-0.043963063508272,-0.02270707860589,-0.035783063620329]],[[0.061907790601254,-0.067069038748741,0.20481327176094],[0.088818147778511,-0.04470394924283,0.12794682383537],[-0.0082568740472198,-0.18215876817703,-0.042268097400665]],[[-0.048878218978643,0.062333844602108,0.12813439965248],[0.020491482689977,0.013178546912968,-0.11173301190138],[-0.063341155648232,-0.00818264298141,0.037174012511969]],[[-0.046627707779408,0.0040589603595436,0.096551187336445],[-0.12942279875278,0.039125345647335,-0.061164315789938],[-0.079234264791012,-0.029704658314586,0.0077160461805761]],[[-0.010651875287294,0.021708944812417,-0.067279905080795],[-0.017007844522595,0.075676567852497,-0.087447099387646],[0.069851644337177,-0.044457864016294,-0.054598212242126]],[[0.048760574311018,-0.015607411973178,0.015284434892237],[0.071727648377419,-0.055075645446777,0.0046021821908653],[-0.02248060144484,0.0031819685827941,0.037707727402449]],[[-0.16724964976311,0.067720949649811,0.040086925029755],[-0.13962763547897,-0.022132478654385,-0.032001510262489],[0.054766345769167,0.019477730616927,0.030605509877205]],[[-0.10156416893005,0.02388533949852,0.038320876657963],[0.080145627260208,-0.10308171063662,-0.078167073428631],[-0.10055406391621,0.030671890825033,-0.16888809204102]],[[-0.15891115367413,-0.023824645206332,-0.028498183935881],[-0.085604317486286,-0.09718881547451,0.0419628508389],[-0.10628021508455,-0.09585539996624,-0.047061484307051]],[[-0.010211335495114,0.18951235711575,0.041630949825048],[0.15036635100842,0.043000034987926,0.041204817593098],[-0.037932686507702,0.16538970172405,-0.028523553162813]],[[0.016133230179548,0.06425678730011,0.028858963400126],[0.10610865056515,-0.12194023281336,0.030006147921085],[-0.092158749699593,-0.055348034948111,-0.10097854584455]],[[0.023448746651411,0.068773284554482,0.0035444789100438],[-0.023120775818825,-0.031887348741293,0.044487901031971],[-0.043254878371954,0.028578106313944,0.022657562047243]],[[0.00034288299502805,0.043552871793509,0.031129904091358],[-0.028141502290964,-0.0866329818964,0.00097528658807278],[0.044808901846409,-0.051234234124422,-0.0497214384377]],[[0.10099837183952,-0.081245265901089,0.011201954446733],[0.045786298811436,0.024976992979646,0.018835697323084],[-0.1146821975708,-0.037434156984091,-0.040404465049505]],[[0.014146099798381,-0.0082773342728615,-0.020281381905079],[-0.077374219894409,-0.13906963169575,-0.020275458693504],[0.15008528530598,0.10572110116482,0.051015887409449]],[[-0.04876522347331,0.07158999145031,-0.035929832607508],[0.073052659630775,0.0080332728102803,0.070784956216812],[-0.13500942289829,-0.11804655194283,-0.11845496296883]],[[0.040331240743399,-0.049278020858765,-0.00021989637752995],[-0.023242199793458,-0.021419124677777,0.15914079546928],[-0.018704473972321,0.084417693316936,0.13128693401814]]],[[[-0.046473268419504,-0.026046834886074,0.03575798869133],[-0.019886616617441,-0.013753455132246,-0.088202439248562],[0.027593713253736,0.041281849145889,0.013041156344116]],[[-0.21818326413631,0.041472714394331,0.067301325500011],[-0.17174163460732,0.19553254544735,0.16603229939938],[-0.055323027074337,-0.062310285866261,0.074147999286652]],[[0.043370585888624,-0.08055567741394,-0.055931024253368],[-0.025189589709044,-0.11955337971449,-0.081277556717396],[-0.23010964691639,-0.12969066202641,-0.023835489526391]],[[0.029414733871818,0.042329374700785,0.03263134136796],[0.074612401425838,0.075654424726963,0.057309944182634],[-0.076963998377323,0.067507393658161,-0.029782086610794]],[[0.058024402707815,0.035739243030548,0.038788743317127],[-0.0732401907444,-0.10893297940493,0.079811006784439],[-0.0067005357705057,-0.069536626338959,0.054729092866182]],[[-0.062608279287815,-0.14751446247101,-0.15023212134838],[0.040897112339735,0.034559540450573,0.036174576729536],[-0.01010656170547,0.0094407070428133,-0.0077716945670545]],[[0.034399461001158,0.0041081877425313,-0.073517225682735],[0.02711758762598,0.038112867623568,0.0019290699856356],[-0.050782848149538,0.011507811024785,-0.015064712613821]],[[-0.037034016102552,-0.020427035167813,-0.076713860034943],[-0.042919054627419,-0.0078252060338855,-0.012269910424948],[0.11355988681316,0.04632855579257,0.045522466301918]],[[-0.014855452813208,0.02322893217206,0.11931881308556],[-0.074017614126205,-0.075368851423264,0.14097088575363],[-0.053844384849072,-0.054519601166248,-0.029574397951365]],[[-0.032231375575066,-0.098441891372204,-0.12044337391853],[-0.048379331827164,-0.069688245654106,-0.11414373666048],[-0.086523175239563,-0.085751570761204,-0.0087154414504766]],[[0.069136552512646,0.10008063912392,-0.078372076153755],[-0.015271763317287,-0.022183464840055,-0.051917862147093],[-0.058199856430292,-0.076317898929119,-0.16363672912121]],[[-0.1239795088768,-0.092117384076118,-0.14388075470924],[0.019896924495697,-0.013156865723431,-0.056700725108385],[0.067136779427528,0.050518449395895,-0.026507273316383]],[[-0.033432222902775,-0.15773424506187,-0.13026060163975],[0.029430979862809,-0.060259457677603,-0.087531268596649],[0.057141404598951,-0.046771921217442,-0.055932227522135]],[[-0.010021086782217,0.011606181040406,0.038499914109707],[-0.0047942791134119,-0.063625261187553,0.072574190795422],[0.016297895461321,-0.039084311574697,0.015809943899512]],[[-0.010458180680871,-0.020556502044201,-0.036550395190716],[-0.010694424621761,-0.056444801390171,0.024765571579337],[0.011032206937671,-0.040450897067785,-0.10150272399187]],[[-0.015644395723939,-0.042150560766459,0.014535052701831],[0.05078037455678,-0.028169550001621,0.054653871804476],[-0.020906995981932,0.014947926625609,0.036032576113939]],[[-0.0054090702906251,-0.031643576920033,0.02505762130022],[0.068316370248795,0.0028256601653993,-0.024101568385959],[-0.047398168593645,0.0060493657365441,0.039479270577431]],[[-0.056896783411503,-0.22442865371704,0.014626388438046],[-0.029443878680468,-0.20260639488697,-0.028785454109311],[-5.952541687293e-05,-0.0026038731448352,-0.015255782753229]],[[-0.054187934845686,0.046418033540249,-0.094066269695759],[0.012695695273578,-0.058913934975863,-0.022928774356842],[0.036778137087822,-0.003184508299455,-0.054919991642237]],[[0.19449497759342,-0.084166780114174,-0.090929590165615],[-0.017762638628483,0.18059660494328,0.023654920980334],[-0.071428261697292,-0.02111480012536,0.093556918203831]],[[0.0034772611688823,-0.16362410783768,-0.010926744900644],[0.003080926835537,-0.22167007625103,0.011042750440538],[0.016257215291262,-0.035523392260075,-0.035802081227303]],[[-0.063180260360241,-0.045905023813248,-0.17923393845558],[0.017395133152604,-0.041784796863794,-0.021908970549703],[0.0020615090616047,0.029578179121017,0.017464961856604]],[[-0.085819989442825,-0.074396699666977,0.048754964023829],[-0.071193009614944,-0.014492050744593,-0.07364409416914],[0.098832406103611,-0.027009705081582,-0.0040630800649524]],[[0.061258587986231,-0.081882059574127,0.051389116793871],[0.12499050796032,0.11340934038162,-0.17663496732712],[0.0011239603627473,0.076194509863853,0.017356531694531]],[[0.083203539252281,0.044085215777159,0.071858771145344],[-0.034294486045837,0.14548936486244,0.012457843869925],[-0.086331367492676,-0.0059755281545222,0.025198128074408]],[[-0.01007018238306,-0.32109075784683,-0.038313020020723],[-0.13012857735157,-0.16278244554996,-0.0086741773411632],[0.12427025288343,-0.003904503537342,0.015152579173446]],[[0.012428223155439,0.03038252145052,0.010728220455348],[-0.0069966269657016,0.063488408923149,0.0055848769843578],[-0.011476803570986,0.034675542265177,-0.097136951982975]],[[-0.065382733941078,0.015852624550462,0.034351367503405],[-0.014983184635639,0.040079098194838,-0.0071641034446657],[-0.10633784532547,0.0047915214672685,0.050919841974974]],[[0.026355689391494,0.018355902284384,0.010638727806509],[-0.051012866199017,-0.066348478198051,0.053663577884436],[-0.0084730060771108,-0.070869632065296,0.07821374386549]],[[-0.01683490537107,0.021979382261634,0.075241558253765],[0.0026639741845429,-0.051064658910036,-0.088538512587547],[-0.08118350058794,0.049263443797827,0.013849139213562]],[[-0.00011085571895819,0.1227371096611,-0.10370734333992],[-0.037610404193401,-0.083852842450142,0.11129801720381],[0.14254964888096,-0.015253322198987,-0.065144963562489]],[[0.040368553251028,-0.12770514190197,0.065516196191311],[0.035463087260723,-0.010445415973663,-0.047849833965302],[0.027621198445559,0.019729902967811,0.043383967131376]],[[0.039506290107965,-0.23099522292614,0.095094494521618],[-0.043970450758934,-0.10000723600388,0.060683630406857],[-0.009810677729547,-0.070196785032749,-0.047938238829374]],[[-0.1229927316308,-0.057168815284967,-0.022147420793772],[-0.095410443842411,-0.071040913462639,-0.098551943898201],[0.079853564500809,-0.056855585426092,-0.012326632626355]],[[-0.041410472244024,0.022548297420144,-0.0027205985970795],[0.017055412754416,-0.095646671950817,-0.063431911170483],[-0.026535464450717,0.066191211342812,-0.025734774768353]],[[0.061065122485161,0.045043285936117,0.026167107746005],[0.03370513394475,0.049650650471449,0.090316109359264],[-0.10409435629845,-0.027164610102773,-0.0058576161973178]],[[0.026440421119332,-0.018594816327095,-0.11656638979912],[0.056579742580652,0.042722050100565,0.016334738582373],[0.04220224916935,0.045035351067781,0.044886950403452]],[[0.04390137270093,0.018373550847173,-0.069989912211895],[-0.067474022507668,0.026364751160145,0.049454230815172],[-0.13586431741714,-0.093729242682457,0.13748718798161]],[[0.031219962984324,-0.037913616746664,-0.078396588563919],[-0.051069423556328,-0.06440631300211,0.065737225115299],[0.032796833664179,0.054367732256651,-0.0049761808477342]],[[0.031278636306524,0.035354696214199,0.018783321604133],[0.0032222860027105,-0.18174670636654,0.15432639420033],[0.026026533916593,0.078407809138298,-0.02488025650382]],[[-0.07037702947855,-0.0050102239474654,-0.076121166348457],[-0.099040947854519,-0.12018755078316,-0.061496376991272],[-0.0066677955910563,-0.03925908729434,0.00019752539810725]],[[0.0011272676056251,0.0028636993374676,0.044622823596001],[0.078593902289867,-0.2396320104599,0.045440793037415],[0.17808890342712,-0.27991029620171,0.0012692029122263]],[[0.0023199999704957,-0.03951695933938,0.003668830730021],[-0.027627479285002,-0.039402898401022,-0.030728528276086],[0.092129044234753,0.039631512016058,-0.060389656573534]],[[0.023412166163325,-0.012226128950715,-0.070454828441143],[0.10166386514902,0.019886858761311,-0.22313703596592],[0.08086185157299,0.073318764567375,0.017460662871599]],[[-0.016086032614112,-0.27622509002686,-0.0025983762461692],[0.079385593533516,-0.13808904588223,-0.056398138403893],[0.033537726849318,-0.037913292646408,0.025825928896666]],[[0.046605844050646,-0.0058377874083817,-0.067052997648716],[0.037927459925413,0.053446564823389,-0.23277938365936],[-0.013286209665239,0.027229631319642,-0.071638904511929]],[[0.053719323128462,-0.0014629100915045,0.088797062635422],[0.023796804249287,-0.0049120355397463,0.085035055875778],[0.037812389433384,-0.049122933298349,-0.052919197827578]],[[-0.0037247003056109,-0.065857626497746,0.049659315496683],[0.0081546176224947,0.022357270121574,0.097568109631538],[-0.040325943380594,-0.0085805365815759,-0.014748252928257]],[[-0.086409643292427,-0.11005029827356,-0.15914779901505],[0.086427748203278,0.051860447973013,-0.043502002954483],[-0.019216245040298,0.055143002420664,-0.070682808756828]],[[0.055366512387991,0.002516255248338,-0.030218068510294],[-0.020056668668985,-0.085346527397633,0.030740067362785],[0.018546367064118,-0.11579514294863,0.090913899242878]],[[-0.056394185870886,0.019998826086521,-0.060905937105417],[0.0090277716517448,-0.14073537290096,-0.0021788254380226],[0.014002506621182,0.025790186598897,-0.0095542371273041]],[[0.10764865577221,-0.060155555605888,0.053274258971214],[-0.0054836720228195,0.0017407104605809,0.06037263199687],[-0.072782129049301,-0.0012553073465824,0.044989205896854]],[[0.058236856013536,-0.003001187928021,-0.022989176213741],[-0.029027719050646,0.040100496262312,-0.0042972904630005],[-0.020380422472954,0.013694575987756,-0.089613825082779]],[[0.0023938354570419,-0.021408122032881,0.056434754282236],[-0.10698459297419,0.078311890363693,0.12974072992802],[-0.052995905280113,0.0087376032024622,0.10026710480452]],[[0.033990848809481,-0.090470507740974,0.043325915932655],[0.053932789713144,-0.14993047714233,-0.087941758334637],[0.075689360499382,0.10385829955339,0.077831089496613]],[[-0.00012949868687429,0.0064920606091619,-0.33064338564873],[-0.0084337843582034,0.0077318418771029,-0.070565491914749],[-0.041840095072985,-0.055129386484623,0.0035007169935852]],[[-0.085134513676167,-0.014018295332789,0.20123052597046],[0.081183902919292,-0.13096079230309,0.074752986431122],[0.033813700079918,0.036055691540241,-0.054177612066269]],[[0.020803121849895,0.0075859883800149,-0.031667567789555],[0.047464728355408,-0.084542989730835,-0.0034009297378361],[-0.013149064965546,0.078394837677479,0.028901414945722]],[[0.03305647149682,0.047802187502384,0.0043587852269411],[0.12691390514374,0.10061566531658,-0.075503066182137],[-0.028131902217865,0.076073154807091,0.028510894626379]],[[-0.011827423237264,-0.029626540839672,-0.086661949753761],[0.020433543249965,-0.011618555523455,-0.068865232169628],[0.073578685522079,-0.16273812949657,0.0055560460314155]],[[-0.0191780179739,-0.061535887420177,0.057463426142931],[-0.0046286461874843,0.022473052144051,-0.025274204090238],[-0.0064865094609559,0.019981399178505,-0.019840126857162]],[[0.016425967216492,0.087994419038296,-0.032948460429907],[-0.032744016498327,-0.055661641061306,0.025653097778559],[0.056565418839455,0.068674191832542,-0.031826674938202]],[[0.060425888746977,0.075652100145817,0.015100137330592],[-0.0093430699780583,-0.045083779841661,0.014628602191806],[0.016535690054297,0.055102001875639,-0.03810441493988]],[[0.019750675186515,0.016751058399677,0.039107363671064],[0.11065868288279,0.034437451511621,0.097305133938789],[-0.069350138306618,0.064970962703228,0.0052821352146566]]],[[[-0.034982934594154,-0.0022805593907833,-0.078132323920727],[-0.04419094696641,-0.11676824092865,-0.095209158957005],[-0.038489356637001,0.072688959538937,0.0095203388482332]],[[0.098514676094055,-0.046403892338276,-0.12807227671146],[0.11652648448944,0.050372123718262,-0.0016659658867866],[-0.14197361469269,-0.13122972846031,0.048816632479429]],[[-0.05481881275773,0.019166408106685,-0.0013802079483867],[-0.13821989297867,-0.10246656090021,0.018005726858974],[-0.0018167258240283,-0.025783643126488,0.025637740269303]],[[-0.087613314390182,-0.0051048137247562,-0.063739523291588],[-0.047068003565073,-0.024644874036312,-0.040480960160494],[-2.6925590645988e-05,0.010822124779224,0.026797553524375]],[[-0.013232889585197,-0.040454123169184,0.028002025559545],[0.090200684964657,-0.11559081822634,0.059108398854733],[-0.038978952914476,-0.042864508926868,-0.0066673145629466]],[[0.032209627330303,-0.056395031511784,-0.0067967516370118],[-0.021140923723578,0.013566535897553,-0.025784444063902],[0.012061617337167,-0.012098893523216,-0.0059357983991504]],[[-0.029151171445847,-0.062947563827038,-0.095199935138226],[0.051425490528345,-0.062467288225889,-0.054388381540775],[-0.021820263937116,-0.07114963978529,-0.023308100178838]],[[0.042319156229496,0.071735315024853,-0.086327560245991],[-0.014108930714428,0.029543379321694,0.0018556229770184],[0.04791247472167,0.079347223043442,-0.030108846724033]],[[-0.036309488117695,-0.034004300832748,0.030783763155341],[0.11199280619621,-0.015468296594918,-0.025101041421294],[-0.019167540594935,-0.084140807390213,-0.050928361713886]],[[-0.062432494014502,-0.024712581187487,0.01166888140142],[0.041597299277782,0.036680687218904,-0.087657377123833],[0.023561270907521,-0.047034949064255,0.029563169926405]],[[0.025758013129234,0.033903695642948,0.038304518908262],[-0.056102886795998,0.042971089482307,0.056218452751637],[0.040150877088308,-0.042816672474146,-0.018937757238746]],[[0.00016667315503582,-0.091475993394852,-0.031765230000019],[-0.057859688997269,-0.06625946611166,-0.018062647432089],[-0.065041154623032,-0.067476652562618,-0.018661299720407]],[[-0.031101673841476,0.053831219673157,0.017145689576864],[-0.0013439356116578,-0.0032098300289363,-0.078212969005108],[-0.07970817387104,-0.056405231356621,-0.028320154175162]],[[0.021157905459404,-0.073413126170635,0.0394347012043],[0.073097318410873,0.022939138114452,-0.008527921512723],[-0.047234911471605,-0.051830463111401,-0.078839361667633]],[[0.049466699361801,-0.032358180731535,0.06060828268528],[-0.012607723474503,-0.091430127620697,-0.026240421459079],[0.022669496014714,0.040880344808102,0.0030132269021124]],[[0.07126522064209,-0.14457342028618,0.0037345928139985],[0.079784892499447,-0.070436917245388,-0.018013061955571],[-0.015215030871332,-0.027306096628308,0.0031718520913273]],[[-0.006884500849992,-0.056334882974625,-0.03434144333005],[-0.011679702438414,-0.023148223757744,-0.00071902183117345],[0.027558267116547,-0.018133724108338,0.091730087995529]],[[-0.021148944273591,-0.05402709171176,0.050373304635286],[-0.024187264963984,-0.058528654277325,0.055285595357418],[0.060409460216761,-0.0064540910534561,-0.015026672743261]],[[-0.020074589177966,0.089894957840443,0.036174204200506],[-0.091079458594322,0.080907121300697,-0.057938002049923],[-0.063757218420506,-0.049334805458784,0.06595329195261]],[[-0.0675018876791,0.017735313624144,-0.17139914631844],[0.065390966832638,0.1225076764822,-0.17534452676773],[0.00066064408747479,0.033298891037703,-0.10543324798346]],[[-0.025576245039701,-0.02239372394979,-0.051676090806723],[-0.012193123809993,-0.076393716037273,-0.035834457725286],[-0.07884855568409,-0.10980132967234,-0.054710742086172]],[[0.011781797744334,0.087591275572777,-0.022615853697062],[-0.0039942930452526,-0.048689741641283,0.057133208960295],[-0.037267997860909,0.007236004807055,0.0011534739751369]],[[-0.085544906556606,0.018048517405987,-0.0197698995471],[-0.061644997447729,0.0020822156220675,0.007681320887059],[-0.06867453455925,-0.0055115879513323,-0.0043948907405138]],[[-0.0089508332312107,-0.030257932841778,-0.030325071886182],[0.028489496558905,-0.032703544944525,-0.0015424416633323],[-0.038717661052942,-0.032462909817696,-0.026104614138603]],[[0.0093866121023893,-0.079143211245537,-0.012312716804445],[0.0044604958966374,-0.019531015306711,0.05379219353199],[0.028333820402622,-0.009397960267961,0.021082850173116]],[[0.0060379789210856,0.010882244445384,0.043520584702492],[0.095298886299133,-0.15464703738689,-0.094109818339348],[0.032017063349485,0.00016388397489209,-0.23514941334724]],[[0.018262816593051,-0.13797451555729,0.0057541658170521],[0.014819388277829,-0.013191545382142,-0.055515822023153],[-0.081959269940853,0.079617507755756,-0.0072199660353363]],[[0.018841795623302,0.054679475724697,0.059668779373169],[-0.0053859581239522,-0.0054852161556482,0.0086794896051288],[-0.07548926025629,-0.040701884776354,0.066587075591087]],[[-0.018538085743785,0.12051604688168,-0.016645085066557],[0.035394296050072,-0.0088302548974752,0.11871444433928],[-0.061943247914314,-0.015055816620588,-0.021656468510628]],[[-0.044856764376163,-0.094637051224709,0.0075046368874609],[-0.010009335353971,-0.091543078422546,-0.004597875289619],[0.055108841508627,-0.043132312595844,0.062008291482925]],[[-0.02651740424335,0.014260594733059,-0.015270160511136],[-0.14324079453945,-0.064713604748249,0.048866003751755],[-0.021536761894822,0.018925219774246,0.019499270245433]],[[-0.030940845608711,-0.037081852555275,0.040033709257841],[-0.0082320673391223,0.055231381207705,0.070726849138737],[0.038185507059097,-0.0039403568953276,0.022085960954428]],[[0.023894632235169,-0.064577765762806,-0.0035840761847794],[-0.028549790382385,-0.025882635265589,-0.050047431141138],[-0.059968639165163,-0.012354759499431,-0.042082626372576]],[[0.010287688113749,-0.14568899571896,0.053831774741411],[0.06370485574007,-0.13408154249191,-0.017702307552099],[-0.013602373190224,-0.052056659013033,-0.08539567142725]],[[-0.020055651664734,0.067001923918724,-0.040197532624006],[0.068452909588814,-0.16732156276703,-0.12934128940105],[0.090799517929554,0.13057215511799,-0.1502493172884]],[[-0.055980373173952,-0.071286842226982,-0.0099325459450483],[0.0090774241834879,-0.0063620177097619,0.0024420311674476],[0.011718125082552,-0.037762179970741,-0.039456762373447]],[[-0.091884158551693,0.052948374301195,-0.031648956239223],[-0.026553081348538,0.03546155244112,0.0049543944187462],[-0.0090521471574903,-0.081736497581005,-0.17988494038582]],[[-0.093507714569569,-0.0098863486200571,0.088215529918671],[-0.047756515443325,-0.016520237550139,0.00060086167650297],[-0.0081916600465775,0.073568418622017,0.026059780269861]],[[-0.031045857816935,0.0028765089809895,-0.046725209802389],[-0.01165209710598,-0.0416474416852,-0.0010791819076985],[0.061297480016947,-0.0048692040145397,0.026317523792386]],[[0.0049273762851954,-0.019357614219189,-0.10116580873728],[0.039730682969093,-0.025631589815021,-0.051515571773052],[0.013950523920357,0.0041863154619932,0.020159132778645]],[[0.0073297931812704,-0.026974277570844,0.05809760093689],[0.10075382143259,-0.050832364708185,0.02590811252594],[0.0013353169197217,0.0077102016657591,0.14370991289616]],[[-0.016752747818828,0.0053307577036321,-0.01668150909245],[-0.093905583024025,-0.049663301557302,-0.020848488435149],[-0.10120306909084,-0.021343445405364,0.028328264132142]],[[0.031581033021212,0.038799189031124,-0.15940250456333],[-0.043585035949945,0.0058726565912366,0.020861709490418],[-0.050171997398138,-0.11097611486912,-0.060846708714962]],[[-0.072173677384853,-0.053975217044353,-0.049670528620481],[0.0083675142377615,0.01503000035882,0.058298915624619],[-0.008497946895659,-0.023359337821603,0.082724899053574]],[[-0.046141628175974,0.092331916093826,0.017211453989148],[-0.031401243060827,-0.046480719000101,-0.15161879360676],[0.039601229131222,0.019706772640347,0.0054660569876432]],[[-0.023264724761248,0.076499797403812,-0.028638521209359],[0.047210220247507,0.07833468914032,-0.057681750506163],[0.040596690028906,0.027135625481606,0.051665894687176]],[[-0.15229481458664,-0.10692612081766,-0.021552361547947],[-0.077917210757732,0.008741719648242,0.012028669007123],[-0.068759918212891,-0.0074890507385135,-0.045732870697975]],[[-0.020763387903571,-0.016118405386806,-0.090567871928215],[0.067002601921558,0.059041541069746,-0.1003168746829],[0.017077308148146,-0.0023196458350867,-0.031060779467225]],[[-0.023842047899961,-0.033658646047115,0.011980660259724],[-0.10556771606207,-0.022522741928697,0.05297240242362],[-0.071723721921444,-0.05541654676199,0.052972782403231]],[[-0.00068637868389487,0.037239391356707,-0.064008936285973],[-0.0028396220877767,0.045589558780193,-0.028076358139515],[0.035356044769287,-0.00023368980328087,-0.080811910331249]],[[-0.0075207185000181,0.0031771522480994,-0.050499621778727],[0.061433013528585,-0.020514054223895,-0.079975135624409],[-0.0091787641867995,0.0094509907066822,-0.028106022626162]],[[0.03001700527966,0.029064932838082,0.0054184924811125],[-0.013815781101584,-0.0075811091810465,0.0097823832184076],[0.0021191129926592,-0.065611906349659,-0.04189183190465]],[[-0.079078361392021,0.0020473427139223,-0.05351472273469],[0.0005892007611692,-0.014545473270118,-0.090898551046848],[0.043254107236862,-0.026149746030569,-0.047255489975214]],[[-0.025716723874211,-0.016108613461256,0.0138975167647],[-0.062541656196117,0.043839003890753,0.052369970828295],[-0.031285781413317,-0.034243665635586,-0.022634204477072]],[[-0.0044978051446378,-0.041161019355059,-0.0034838141873479],[-0.020004417747259,0.087751679122448,0.072040855884552],[-0.10555962473154,-0.07520592212677,0.021602604538202]],[[-0.02177057787776,-0.098911046981812,0.089799910783768],[0.021636659279466,-0.11462094634771,0.0092692710459232],[0.037959136068821,-0.030954198911786,-0.01595644839108]],[[-0.15218238532543,-0.012117644771934,-0.028318345546722],[-0.050869230180979,0.087531901896,0.011427805759013],[-0.13787479698658,0.088237643241882,-0.014864518307149]],[[-0.029965240508318,-0.027174221351743,0.0088376058265567],[-0.03271160274744,-0.034440074115992,0.027551703155041],[0.029231445863843,-0.062645077705383,0.0073788170702755]],[[0.078473590314388,-0.0060159987770021,0.044605154544115],[-0.01046235486865,-0.06663204729557,-0.084895081818104],[0.056422796100378,0.12259230017662,-0.048422690480947]],[[0.046889487653971,-0.073094636201859,0.0012588256504387],[-0.055682841688395,-0.10359764844179,0.092282585799694],[0.049164898693562,-0.11661909520626,0.017400117591023]],[[0.016873314976692,0.021232087165117,0.13203962147236],[0.065728053450584,-0.017113955691457,0.017194846644998],[-0.086483851075172,-0.06251722574234,0.13379783928394]],[[0.025673303753138,-0.053456466645002,-0.057632423937321],[-0.079853236675262,-0.05870046839118,-0.061442576348782],[-0.022453522309661,0.014439009130001,-0.0062188361771405]],[[-0.0081489980220795,-0.0094847492873669,-0.0103595033288],[0.00059404707280919,-0.010927339084446,0.062206018716097],[-0.015082079917192,-0.12537711858749,0.076626181602478]],[[0.023914083838463,-0.056182909756899,-0.026434266939759],[-0.0043485467322171,-0.016188278794289,-0.0019394715782255],[-0.097978487610817,-0.081818379461765,-0.051656760275364]]],[[[-0.013396418653429,-0.094224475324154,0.036571633070707],[0.031600948423147,-0.018720963969827,-0.025890352204442],[-0.028501847758889,0.0070080948062241,0.048114728182554]],[[-0.0094733731821179,-0.11099690943956,-0.049196351319551],[-0.032870054244995,0.088771007955074,-0.063416689634323],[-0.066269688308239,0.077883668243885,0.11360559612513]],[[-0.013083035126328,0.087974689900875,0.010956985875964],[-0.057870909571648,-0.17430451512337,0.021172029897571],[-0.04242230579257,0.018573669716716,-0.00302450847812]],[[-0.02937532030046,0.10298310220242,0.089276008307934],[-0.025119010359049,-0.086349628865719,-0.0053054317831993],[-0.061913106590509,0.075141243636608,-0.18129377067089]],[[-0.071796074509621,0.064206950366497,0.00054326455574483],[0.041571162641048,0.046739384531975,0.014227051287889],[0.027341732755303,0.0079064071178436,-0.029993558302522]],[[0.059116404503584,0.084547206759453,-0.012872317805886],[-0.0056606098078191,-0.02679281681776,-0.073468804359436],[0.040620338171721,-0.0016238836105913,0.060894150286913]],[[-0.048567492514849,0.037099722772837,-0.081601090729237],[-0.026259010657668,-0.001625316333957,-0.14021483063698],[-0.015115454792976,0.070735231041908,-0.0027387628797442]],[[0.087601989507675,-0.015103556215763,-0.022094331681728],[0.11540918052197,-0.0980034917593,-0.10411683470011],[0.10963103175163,0.16610312461853,0.11358764022589]],[[0.030215160921216,0.016778156161308,-0.035548746585846],[0.012018184177577,-0.019684806466103,0.043941348791122],[-0.040834039449692,0.0087798358872533,0.033973976969719]],[[0.020112000405788,-0.09384810179472,-0.10676096379757],[0.00092372728977352,0.010390720330179,-0.11523025482893],[-0.06062601134181,-0.053841449320316,-0.092132963240147]],[[-0.0088453032076359,0.037980481982231,-0.015529587864876],[0.082400910556316,0.061029259115458,0.010429845191538],[0.023589175194502,-0.058575335890055,-0.06069765612483]],[[-0.14768819510937,-0.11797609180212,-0.095539957284927],[0.0087341452017426,-0.035814695060253,-0.11658494919538],[0.11135391145945,0.10834655165672,0.032364137470722]],[[0.11244365572929,0.097230695188046,0.017772564664483],[-0.076810739934444,0.026843138039112,0.065076798200607],[0.010858786292374,-0.15176096558571,-0.018289968371391]],[[0.033662479370832,0.02757516130805,-0.029285999014974],[0.049315456300974,0.022523354738951,0.076765969395638],[-0.0085239289328456,-0.076557777822018,-0.087043203413486]],[[0.02199624478817,-0.0017051068134606,-0.082066811621189],[-0.02183173596859,-0.047203820198774,0.024925548583269],[-0.076857157051563,-0.038257941603661,0.020097423344851]],[[0.083207562565804,-0.044223871082067,-0.030515868216753],[0.028663367033005,0.036330617964268,0.023169385269284],[-0.032861948013306,-0.030516924336553,-0.076111041009426]],[[0.047834012657404,0.10496913641691,0.036757629364729],[-0.027374556288123,-0.035082451999187,0.021319206804037],[-0.020052179694176,-0.023778326809406,0.044030047953129]],[[0.0065593589097261,-0.010290626436472,0.0052258060313761],[0.16057886183262,-0.022998224943876,0.05708984285593],[-0.10924253612757,0.12807084619999,0.010550956241786]],[[0.049641560763121,-0.020326156169176,0.21745389699936],[-0.06248052418232,-0.020134054124355,0.077420771121979],[-0.0303371604532,-0.062244366854429,-0.025157487019897]],[[-0.022808060050011,0.099850580096245,0.019434923306108],[-0.076676309108734,-0.010786201804876,0.04877307638526],[0.075081631541252,-0.0027080622967333,-0.18490643799305]],[[0.027167486026883,0.018921706825495,0.021116256713867],[-0.01096224039793,0.030811855569482,-0.032269388437271],[-0.025349598377943,-0.010051413439214,0.051141437143087]],[[0.12253157794476,0.016298497095704,0.0012334098573774],[-0.031398318707943,-0.074403986334801,-0.060033898800611],[-0.055772989988327,-0.049072630703449,-0.027960447594523]],[[0.10757823288441,0.081564240157604,-0.07327888160944],[0.061254493892193,0.10799720883369,-0.0089933956041932],[-0.15689647197723,-0.12415439635515,-0.10285274684429]],[[0.029643401503563,-0.058464247733355,-0.066474445164204],[0.097197942435741,-0.033519253134727,-0.072590075433254],[0.010640454478562,-0.012321693822742,0.12322744727135]],[[-0.042740192264318,-0.028324484825134,0.023820832371712],[-0.038330119103193,0.0076860897243023,-0.049033753573895],[-0.036477509886026,0.051383513957262,0.02558764256537]],[[0.067749835550785,0.067091196775436,0.072691164910793],[0.0038458090275526,-0.11081367731094,0.089512206614017],[-0.12543611228466,-0.15690161287785,0.1481621414423]],[[0.035965040326118,0.075380310416222,-0.17173846065998],[-0.010783057659864,-0.007292749825865,-0.093167200684547],[-0.0030447687022388,0.099967978894711,-0.16634848713875]],[[0.0072941635735333,-0.027431542053819,0.044721595942974],[-0.014339445158839,-0.022902235388756,-0.0080901933833957],[0.038270406424999,0.082928389310837,0.06018329039216]],[[-0.029223911464214,-0.052022915333509,0.12755516171455],[-0.021460892632604,0.037016354501247,0.16348513960838],[-0.16948911547661,-0.08221697807312,0.1508232653141]],[[-0.011832939460874,0.075368165969849,0.054244063794613],[-0.059782937169075,-0.019306616857648,-0.045038335025311],[-0.11309309303761,-0.022094907239079,-0.08064428716898]],[[-0.041013527661562,-0.091049589216709,-0.10518277436495],[0.018326105549932,-0.05999480932951,0.061263624578714],[0.039863329380751,0.060687746852636,0.052656095474958]],[[-0.057646788656712,-0.064030088484287,-0.0092727923765779],[-0.022999115288258,-0.023650892078876,0.00027299352223054],[0.088201723992825,0.088558234274387,0.0064738132059574]],[[-0.07762810587883,0.011233739554882,0.045086555182934],[0.028580151498318,-0.0052423877641559,0.08800033479929],[-0.077035166323185,0.037701860070229,-0.068176418542862]],[[0.12173437327147,0.08823898434639,0.15490981936455],[0.032659024000168,0.088653713464737,-0.068805322051048],[-0.029499081894755,-0.086335875093937,0.051003649830818]],[[0.0043646804988384,-0.037125263363123,0.03656717389822],[0.094507046043873,-0.065293483436108,-0.075886197388172],[0.0027950587682426,-0.013210262171924,0.089093163609505]],[[-0.14358180761337,-0.27969998121262,-0.056275557726622],[-0.021967986598611,-0.011909771710634,-0.21328413486481],[0.038746282458305,0.056271221488714,0.052355237305164]],[[0.037906050682068,0.066836059093475,0.092779070138931],[0.015828929841518,-0.10457966476679,-0.023174235597253],[-0.022164477035403,-0.12368098646402,-0.14156404137611]],[[0.041508983820677,0.034768808633089,-0.03844615444541],[0.11759386211634,-0.059631552547216,0.023085616528988],[0.032286349684,0.050773650407791,-0.053412918001413]],[[0.061829816550016,0.012092431075871,-0.027882551774383],[0.017188230529428,0.02639801800251,-0.11434453725815],[-0.048065651208162,0.0025865046773106,0.072378389537334]],[[0.044901434332132,0.045544981956482,0.063701525330544],[-0.053501710295677,0.085409298539162,0.016380105167627],[0.016043765470386,-0.043090745806694,-0.015914756804705]],[[-0.14489394426346,0.034058097749949,0.068277165293694],[-0.052908558398485,-0.063519202172756,-0.018682196736336],[-0.062876485288143,-0.15878322720528,-0.088852375745773]],[[0.016840869560838,0.017049301415682,0.040437929332256],[-0.030498068779707,0.028736066073179,-0.15209574997425],[-0.11949592828751,-0.16057033836842,0.0055239046923816]],[[0.011229697614908,0.12033584713936,-0.00016879226313904],[0.050153732299805,0.0071892095729709,-0.12608537077904],[0.041530873626471,0.1516115963459,0.028141926974058]],[[-0.0070453314110637,0.01344804931432,0.073693312704563],[-0.012777196243405,-0.03326815739274,-0.00047119837836362],[0.094319730997086,-0.029589436948299,-0.086710333824158]],[[0.0087748449295759,0.097428478300571,-0.075244002044201],[-0.0015805757138878,0.0033332393504679,0.041794624179602],[0.0023450737353414,-0.065570764243603,-0.0782161206007]],[[0.047939706593752,0.062394008040428,-0.044531561434269],[0.0031192728783935,-0.06306067854166,-0.014644352719188],[0.010175037197769,0.028269397094846,-0.033199194818735]],[[0.036838676780462,0.072998367249966,0.13134233653545],[0.070504926145077,-0.0080142896622419,0.025335246697068],[0.050457164645195,0.037141770124435,0.11943463236094]],[[-0.052808426320553,-0.11639469861984,0.041747029870749],[-0.10922422260046,0.09647873044014,0.085802637040615],[-0.10593724250793,-0.043486870825291,-0.043044652789831]],[[-0.046968165785074,-0.050458755344152,0.16292691230774],[-0.068288989365101,-0.060914646834135,-0.051214821636677],[-0.0071196020580828,0.0062545347027481,-0.12301599234343]],[[0.07078542560339,0.038784854114056,0.02677752263844],[-0.020693201571703,-0.051386870443821,0.03426280990243],[0.030784618109465,-0.12372139841318,-0.13985781371593]],[[0.021634073927999,-0.13369370996952,0.087057895958424],[-0.0068045067600906,-0.082018621265888,0.068542413413525],[-0.0079077249392867,-0.037056013941765,-0.019518457353115]],[[-0.11418210715055,-0.077955417335033,-0.0083820056170225],[-0.057289104908705,-0.10157527774572,-0.26837772130966],[0.079985201358795,0.022955676540732,0.078471809625626]],[[0.010291191749275,-0.026495505124331,0.02988045103848],[-0.015770651400089,0.099968627095222,0.056191872805357],[-0.0087593430653214,-0.063050180673599,-0.12522415816784]],[[-0.12902745604515,-0.13846731185913,0.1217445358634],[0.073077820241451,0.027642633765936,0.1229665055871],[0.018750628456473,-0.0024865171872079,0.22210165858269]],[[0.04948166757822,-0.024002458900213,-0.064334377646446],[-0.023793278262019,-0.046298962086439,-0.10164994746447],[0.044973824173212,-0.10916845500469,-0.01355252508074]],[[-0.10814915597439,-0.063429266214371,-0.08521281182766],[0.04296563565731,0.032673019915819,0.039676696062088],[-0.053934160619974,0.075520887970924,0.015058294869959]],[[0.066787771880627,-0.037600465118885,-0.10166984051466],[0.04546245932579,0.065845876932144,0.006901788059622],[0.059907678514719,-0.00042080273851752,0.090479627251625]],[[-0.018679911270738,-0.022214496508241,0.022359859198332],[-0.039554852992296,-0.075123868882656,-0.062958009541035],[0.032803546637297,0.0066217826679349,-0.11982486397028]],[[-0.039644945412874,0.0078572640195489,-0.14932218194008],[-0.03228971362114,0.0048340721987188,-0.079743422567844],[0.083989411592484,0.13219791650772,0.012636980973184]],[[0.0032856736797839,0.022432133555412,0.053231317549944],[0.01131849642843,-0.057972885668278,-0.029657343402505],[0.017700996249914,0.024469535797834,-0.02160282060504]],[[-0.030482217669487,-0.17572602629662,0.035338267683983],[-0.076597310602665,-0.07982113212347,-0.14573347568512],[0.04555893316865,0.12182097136974,0.10589122027159]],[[0.03489077091217,-0.020426573231816,0.042315796017647],[-0.030702279880643,0.026770368218422,-0.0091028185561299],[-0.071725077927113,0.037117928266525,0.077076949179173]],[[0.1398678123951,-0.032063368707895,-0.013105104677379],[0.025627756491303,0.010699152946472,0.0083796149119735],[0.0053469878621399,0.08542761951685,0.0044597126543522]],[[-0.14244571328163,0.06705841422081,-0.36218902468681],[0.057174418121576,0.035979192703962,0.10593591630459],[0.020346345379949,0.019170328974724,0.15425251424313]]],[[[-0.055071234703064,-0.11958946287632,-0.087600402534008],[0.0094543127343059,-0.08206033706665,-0.10598056763411],[-0.12248003482819,0.053191624581814,-0.02738799341023]],[[0.064270839095116,-0.031036986038089,0.090740285813808],[0.003833026625216,0.046638779342175,0.037029411643744],[0.072390250861645,0.20402036607265,0.099338248372078]],[[-0.17399138212204,-0.20766378939152,-0.049153245985508],[-0.1433751732111,-0.16718129813671,-0.25906151533127],[-0.10105583071709,-0.038013987243176,-0.089754424989223]],[[-0.13603563606739,-0.0058704423718154,-0.15379203855991],[-0.10595431178808,-0.1002551317215,0.068658411502838],[-0.12555289268494,-0.061108581721783,-0.13782925903797]],[[-0.038558263331652,0.022001652047038,0.065730184316635],[0.10610752552748,-0.087999150156975,-0.074584849178791],[0.0055097122676671,-0.08627637475729,-0.12879851460457]],[[0.030504364520311,-0.080715231597424,-0.072300463914871],[-0.045363746583462,-0.012981494888663,-0.039584774523973],[-0.10200028121471,-0.036368664354086,-0.036846928298473]],[[-0.1566920876503,-0.05201867595315,-0.078549705445766],[-0.07992846518755,0.030723476782441,-0.086401633918285],[-0.10273046046495,-0.18615891039371,-0.092546962201595]],[[0.11362940073013,0.10151083022356,-0.10267549753189],[-0.044603228569031,0.093011938035488,0.065340995788574],[0.077029548585415,0.059098780155182,0.13994298875332]],[[0.012083240784705,-0.007274214643985,-0.12487631291151],[-0.08120359480381,-0.10789688676596,-0.004387694876641],[-0.22462220489979,-0.21579803526402,-0.28573220968246]],[[-0.095510393381119,0.067717537283897,-0.052972421050072],[0.055789597332478,-0.15881051123142,-0.12649536132812],[-0.15010230243206,-0.10118266940117,0.08762563765049]],[[-0.10395877063274,-0.22528015077114,0.027224346995354],[-0.084337078034878,-0.013533881865442,0.00012686973786913],[0.05237615481019,-0.027960985898972,0.00016648705059197]],[[-0.12070842832327,-0.16935634613037,-0.019766060635448],[-0.20848444104195,-0.14397867023945,-0.055523537099361],[-0.021924553439021,-0.13431657850742,-0.1274665594101]],[[0.051662277430296,-0.15534637868404,-0.055556815117598],[-0.30029165744781,-0.20102663338184,-0.26692989468575],[-0.012429571710527,-0.10191372036934,-0.088416747748852]],[[-0.032836463302374,-0.01570743881166,-0.076087810099125],[-0.075753197073936,-0.11002795398235,-0.016757758334279],[-0.16654194891453,-0.055567137897015,0.087505973875523]],[[0.0026995404623449,0.099419929087162,0.055395394563675],[-0.17033270001411,-0.17377950251102,-0.10292629897594],[-0.085118725895882,-0.13770082592964,-0.11451322585344]],[[-0.046650588512421,-0.0037234392948449,-0.066966444253922],[-0.027106704190373,-0.066871672868729,0.011912986636162],[0.0093599939718843,-0.0010709065245464,-0.067338079214096]],[[0.035499628633261,-0.0030154443811625,0.12331717461348],[-0.012673615477979,0.0095799304544926,-0.010772281326354],[-0.0050996723584831,-0.18546481430531,-0.065026924014091]],[[-0.13228993117809,-0.24397724866867,-0.080847501754761],[-0.052801705896854,-0.022705901414156,-0.17274163663387],[0.064726009964943,-0.0075540686957538,0.0030306368134916]],[[0.01368850748986,-0.033817801624537,0.10364352911711],[-0.0668865442276,0.08668976277113,0.1740400493145],[-0.23984304070473,-0.1631580889225,-0.066906541585922]],[[-0.0055411700159311,0.080886386334896,0.11845202744007],[0.013955247588456,-0.01170158945024,0.19848170876503],[0.20696507394314,0.29489195346832,0.11678989976645]],[[0.033206574618816,0.030651871114969,-0.19011437892914],[0.11484096944332,0.066516511142254,-0.030382920056581],[0.10911414772272,-0.066714696586132,0.01541758608073]],[[0.0026060726959258,-0.044193927198648,-0.25585490465164],[0.0070726475678384,0.013505892828107,-0.00033499821438454],[-0.26135647296906,-0.28627562522888,-0.054749939590693]],[[-0.047284107655287,-0.067745395004749,0.11997590214014],[-0.14410081505775,0.038139160722494,0.050977900624275],[-0.17088596522808,0.0052818418480456,0.06418115645647]],[[-0.028700601309538,0.039944846183062,0.0028800123836845],[-0.23822394013405,-0.2926838696003,-0.23546198010445],[0.041118834167719,0.034490570425987,0.0081548411399126]],[[-0.066221378743649,0.00048829196020961,-0.0072181047871709],[-0.0073041724972427,0.063695803284645,-0.0572763197124],[-0.019764602184296,0.078016556799412,-0.10888046771288]],[[0.006969353184104,-0.31629553437233,0.0086641367524862],[-0.1051354855299,0.033054169267416,-0.10684958845377],[-0.25382342934608,-0.17642264068127,-0.014836950227618]],[[0.096318133175373,-0.085888236761093,0.024741938337684],[-0.042650561779737,0.024765223264694,-0.2002711892128],[-0.14598974585533,-0.071419224143028,-0.17721579968929]],[[0.088187158107758,-0.048499871045351,0.034599158912897],[0.020062688738108,-0.086862087249756,-0.084366530179977],[0.041579429060221,-0.083446323871613,0.14565686881542]],[[-0.025690719485283,-0.016032531857491,0.13934770226479],[-0.041174918413162,-0.047190587967634,0.0062868287786841],[-0.14118309319019,-0.091311194002628,-0.0728699862957]],[[-0.064884021878242,-0.067196704447269,0.072509586811066],[-0.05303118377924,0.078827135264874,-0.098027668893337],[-0.038439627736807,-0.2898376584053,-0.063567109405994]],[[-0.015066025778651,-0.029416916891932,0.080776192247868],[-0.0098105622455478,0.058956682682037,-0.11089143157005],[-0.037658505141735,0.050037857145071,0.042804718017578]],[[-0.051892153918743,0.073937632143497,0.075065292418003],[-0.11824107915163,-0.31504872441292,0.059225846081972],[0.19121567904949,-0.20893070101738,-0.21583074331284]],[[-0.067079678177834,-0.031314492225647,0.08111384510994],[-0.0086318608373404,0.075627155601978,0.044934429228306],[-0.10222575068474,-0.013262521475554,-0.12718139588833]],[[0.14870312809944,-0.23780880868435,-0.031052883714437],[-0.042887050658464,-0.17073853313923,0.099501341581345],[-0.1327838152647,0.089835457503796,-0.0065880226902664]],[[-0.07423447072506,-0.029369911178946,-0.25075197219849],[-0.071802228689194,0.044908758252859,-0.19825255870819],[-0.086889587342739,-0.13386029005051,-0.13686691224575]],[[-0.21026007831097,-0.24429389834404,-0.12270835042],[-0.13059183955193,-0.19761964678764,-0.18798907101154],[-0.16376554965973,-0.19580034911633,-0.17358992993832]],[[-0.085247978568077,-0.043445255607367,-0.10142239183187],[0.012531706131995,-0.087655439972878,-0.22086764872074],[0.019413724541664,-0.065916754305363,-0.15500167012215]],[[0.13592456281185,0.027941405773163,-0.10984261333942],[0.10339414328337,0.016426475718617,-0.033624392002821],[0.049566224217415,0.031710598617792,0.00012337754014879]],[[0.11918055266142,-0.003733713645488,-0.0054798582568765],[-0.16684757173061,-0.10160198807716,-0.074198484420776],[-0.087996989488602,0.21401287615299,0.13460326194763]],[[0.020383672788739,0.0037556062452495,0.10684843361378],[0.037275109440088,0.023673299700022,0.061989266425371],[0.0580680295825,-0.095915079116821,-0.021424507722259]],[[0.029967358335853,0.014709791168571,-0.018402732908726],[0.05145575478673,-0.1416884958744,-0.093941062688828],[-0.22493463754654,-0.038407620042562,-0.097733616828918]],[[0.03280245885253,-0.025784004479647,-0.095789432525635],[-0.030156711116433,0.065357752144337,-0.16676566004753],[-0.20089156925678,0.062060747295618,-0.02280473895371]],[[-0.007843398489058,-0.041670449078083,-0.065145619213581],[-0.17242729663849,0.079096257686615,-0.18674145638943],[-0.2529504597187,-0.086458995938301,-0.082201093435287]],[[-0.06858167052269,-0.073883570730686,0.022369695827365],[-0.071391403675079,-0.040380023419857,-0.076112031936646],[0.11131516098976,0.10819831490517,0.047059789299965]],[[-0.21321266889572,-0.13203972578049,-0.015513514168561],[-0.1269069314003,-0.27283760905266,-0.18909949064255],[-0.11715312302113,-0.17383921146393,-0.048765622079372]],[[-0.09214186668396,-0.012340236455202,0.033078990876675],[0.11722262203693,-0.086096905171871,-0.14743193984032],[0.13827735185623,-0.040197294205427,-0.075111344456673]],[[-0.17548196017742,-0.1677829772234,-0.043814152479172],[-0.027866397053003,0.041552405804396,-0.013403701595962],[0.02974671497941,-0.059772986918688,-0.15566053986549]],[[-0.016001179814339,0.001434167381376,-0.099317565560341],[-0.075631313025951,-0.12962780892849,0.19229388237],[-0.092517450451851,-0.015667738392949,-0.027424795553088]],[[-0.0023413207381964,-0.039394356310368,0.11346477270126],[-0.16629001498222,-0.045676797628403,-0.083490312099457],[0.048737112432718,-0.01519888266921,0.011896370910108]],[[-7.3855757364072e-05,-0.091501079499722,0.0081713376566768],[-0.014170880429447,-0.0064947293139994,-0.044001068919897],[-0.055956091731787,-0.00066414137836546,-0.083890050649643]],[[-0.076355367898941,-0.074628628790379,-0.14766244590282],[-0.16817313432693,-0.052637275308371,0.031145688146353],[-0.19392189383507,-0.10510596632957,0.02114175260067]],[[-0.13588987290859,-0.22364500164986,-0.0020303621422499],[-0.23249396681786,-0.14831537008286,-0.21987493336201],[0.0085937846451998,-0.028209820389748,-0.068197183310986]],[[-0.19991111755371,0.05275135114789,0.086256235837936],[0.040310967713594,0.10834635049105,0.091538950800896],[0.0017505708383396,-0.19866745173931,-0.15400299429893]],[[-0.15439550578594,-0.059625212103128,-0.015070976689458],[0.023075979202986,0.13469767570496,0.0083520980551839],[0.05378932505846,-0.092390507459641,0.21477279067039]],[[-0.070915125310421,-0.098247811198235,-0.14035715162754],[-0.44948142766953,-0.044938452541828,-0.13032950460911],[-0.18093985319138,-0.37834170460701,-0.29876345396042]],[[-0.021454989910126,-0.31997567415237,0.027663704007864],[0.080317467451096,-0.024086575955153,-0.37567508220673],[-0.074134334921837,-0.069621376693249,-0.063600331544876]],[[0.20949573814869,0.10570374131203,0.29205197095871],[0.14320442080498,0.26387456059456,0.2358013689518],[0.1540219783783,0.12178784608841,0.14383178949356]],[[-0.014969727955759,-0.23068453371525,-0.2145219296217],[-0.096127465367317,-0.13317477703094,-0.089698366820812],[-0.35094100236893,-0.1266897469759,0.076816692948341]],[[0.055836874991655,-0.082747161388397,-0.132768034935],[-0.047616560012102,-0.062929771840572,-0.021659811958671],[0.052126355469227,0.054256912320852,0.084331125020981]],[[0.12661492824554,-0.072897963225842,-0.21780148148537],[-0.142746925354,-0.14789654314518,-0.012534596957266],[-0.16839435696602,-0.14587710797787,-0.042445011436939]],[[-0.13540840148926,-0.057880956679583,-0.0054751923307776],[-0.036703050136566,-0.16889506578445,0.010573812760413],[0.062893807888031,-0.11292197555304,-0.035983715206385]],[[0.013847704045475,-0.042144764214754,0.055973332375288],[-0.032160542905331,0.067604824900627,-0.0055104126222432],[-0.21467716991901,0.006542488001287,0.076837368309498]],[[0.010699824430048,-0.13813060522079,-0.13688711822033],[0.1062299311161,0.0096361730247736,-0.1703375428915],[0.05123333632946,0.033301815390587,-0.14053848385811]],[[-0.23889683187008,-0.0042449729517102,-0.040425736457109],[-0.1777621358633,-0.14050175249577,0.031932655721903],[0.24382762610912,0.10871528834105,-0.03123951330781]]],[[[0.080632984638214,-0.055889997631311,0.091112896800041],[-0.11033330112696,-0.16935610771179,-0.17586386203766],[0.045909482985735,0.011207432486117,0.03286562487483]],[[0.026979569345713,0.036055359989405,0.029387848451734],[0.024915629997849,0.071997627615929,-0.004878627602011],[-0.028172357007861,-0.074457824230194,0.069443769752979]],[[-0.067622512578964,-0.1648678034544,0.010334158316255],[-0.24784979224205,-0.13515083491802,-0.016346791759133],[-0.085873804986477,0.14999257028103,-0.059886235743761]],[[-0.018149247393012,0.18783664703369,0.054185222834349],[0.084014475345612,0.019104585051537,0.0049470826052129],[0.056763477623463,-0.20692844688892,-0.17111521959305]],[[-0.096827454864979,-0.062623985111713,0.03702886775136],[-0.039906490594149,0.045907106250525,0.062896236777306],[-0.1555151194334,0.039343383163214,-0.07318726927042]],[[0.089780822396278,-0.018342759460211,-0.03301814571023],[0.007546950597316,-0.00025725795421749,0.028159394860268],[0.075385674834251,0.073954433202744,0.017163965851068]],[[0.023579102009535,-0.10769774764776,-0.043524701148272],[-0.039855733513832,0.10468924790621,-0.067082054913044],[0.1194200143218,-0.062705934047699,-0.12957106530666]],[[-0.024368267506361,0.071182727813721,0.067860342562199],[0.043102782219648,-0.0059675276279449,-0.023969246074557],[0.052568256855011,-0.048215053975582,-0.038387186825275]],[[-0.074023120105267,-0.043163742870092,0.084641180932522],[0.034352518618107,0.02361261472106,0.074326038360596],[-0.021722182631493,-0.041494980454445,-0.0065447078086436]],[[0.00080475042341277,-0.29290792346001,-0.13241119682789],[-0.094525530934334,0.036871176213026,-0.012932541780174],[0.039443425834179,0.230867177248,-0.029949590563774]],[[-0.030429610982537,-0.049513880163431,0.0038247215561569],[-0.024778893217444,0.069707252085209,0.055685635656118],[-0.027748061344028,-0.074959240853786,0.0044368193484843]],[[0.13098119199276,-0.044680114835501,-0.017750330269337],[0.053060814738274,-0.089729398488998,-0.053176369518042],[-0.23944322764874,-0.28418639302254,-0.0096107600256801]],[[-0.052449818700552,-0.096502654254436,-0.035850744694471],[0.020353948697448,0.10908328741789,0.026924762874842],[-0.097859151661396,-0.09627577662468,0.039160907268524]],[[-0.078439339995384,-0.21747733652592,0.038316126912832],[-0.014133222401142,0.059900458902121,0.054485689848661],[0.11707042902708,0.12077756971121,0.075719103217125]],[[0.023277834057808,0.09614310413599,-0.00040540701593272],[0.040587477385998,0.080165848135948,0.03338336572051],[0.058290004730225,-0.11696760356426,0.028368748724461]],[[0.038804367184639,-0.057456612586975,0.091149792075157],[-0.016882032155991,-0.095873609185219,0.032832071185112],[-0.037789080291986,-0.055091787129641,-0.035884987562895]],[[0.018311711028218,0.038817010819912,-0.023380445316434],[-0.00056634924840182,0.085654355585575,-0.034352522343397],[-0.071727357804775,0.013849632814527,0.10134806483984]],[[0.019058560952544,-0.02624224498868,0.017905909568071],[-0.071132153272629,-0.052327111363411,-0.007489756681025],[-0.13656491041183,0.10626430809498,0.033941235393286]],[[-0.068588458001614,-0.0206079762429,0.056454181671143],[0.06194269284606,0.05662576854229,0.048285942524672],[0.055157423019409,-0.093857645988464,-0.010580692440271]],[[0.022099081426859,0.084928154945374,0.015392129309475],[0.085862815380096,0.17178650200367,0.085233256220818],[-0.018365172669291,0.030772222205997,0.010074249468744]],[[0.023615533486009,0.004750844091177,-0.098464109003544],[-0.01252216566354,-0.11527352780104,0.064465321600437],[-0.0013339854776859,0.11919435858727,-0.010086514987051]],[[-0.17993070185184,0.026204628869891,-0.008469695225358],[-0.081017032265663,-0.035581581294537,0.073914892971516],[-0.026366615667939,-0.075620390474796,0.11054728925228]],[[-0.016469165682793,0.013000328093767,0.052772287279367],[-0.011689129285514,-0.060893688350916,0.10077553987503],[0.0094534112140536,-0.030515065416694,-0.037492629140615]],[[0.034223400056362,-0.089497655630112,-0.27304270863533],[0.041611146181822,-0.10033214092255,-0.0879782512784],[-0.005167949013412,-0.22536781430244,-0.10286131501198]],[[0.028709946200252,0.055471163243055,0.050741191953421],[-0.15852181613445,0.089287355542183,0.061205871403217],[-0.11675544083118,0.082435019314289,-0.11390180885792]],[[-0.1036317050457,-0.073232740163803,-0.0027281614020467],[0.009190509095788,0.12586216628551,-0.05090294033289],[0.010017665103078,-0.090826541185379,0.031287126243114]],[[-0.02547569014132,-0.012178971432149,-0.055318079888821],[-0.006646279245615,0.013161456212401,-0.060432732105255],[0.13787254691124,-0.072421789169312,0.098183140158653]],[[-0.076602086424828,0.051428146660328,-0.092713348567486],[0.053237590938807,-0.017326245084405,-0.059702515602112],[0.0081715760752559,0.080709010362625,0.1680633276701]],[[-0.0086147980764508,-0.11561784893274,-0.056987140327692],[0.032889701426029,0.059520456939936,0.017072603106499],[0.069207094609737,0.21092958748341,-0.19455575942993]],[[0.061037085950375,-0.035999592393637,-0.12968754768372],[-0.049978274852037,0.20683787763119,-0.023235339671373],[-0.006632077973336,-0.26172989606857,-0.058633457869291]],[[0.032571587711573,-0.13511180877686,-0.0025854026898742],[-0.051774919033051,-0.0608005002141,-0.006274017971009],[-0.064996428787708,-0.0093046789988875,0.0097872130572796]],[[-0.0098981829360127,0.072052918374538,0.11471212655306],[0.026184931397438,-0.070390649139881,-0.073351569473743],[0.047800790518522,0.067837975919247,-0.096523329615593]],[[-0.012991029769182,-0.031335286796093,-0.017179906368256],[0.074631035327911,0.052859012037516,0.037520322948694],[-0.059537183493376,-0.083573743700981,-0.078228294849396]],[[-0.044924430549145,0.0065902299247682,0.088849879801273],[-0.14545913040638,0.0012402331922203,-0.13683624565601],[0.01137319020927,-0.00085775292245671,-0.031011303886771]],[[-0.019119665026665,-0.14528019726276,0.0058999387547374],[-0.0013555876212195,0.10178680717945,-0.0040024719201028],[0.049942720681429,0.061250992119312,-0.030834294855595]],[[0.0384591370821,0.1898076236248,-0.058315824717283],[0.016560409218073,-0.23094652593136,-0.020842479541898],[-0.035736560821533,-0.0015451950021088,-0.13730317354202]],[[-0.052648074924946,-0.183978125453,-0.070268332958221],[0.0091245518997312,-0.040075067430735,-0.085946872830391],[0.028745748102665,-0.0083788698539138,0.056769248098135]],[[-0.0048851738683879,-0.0091678537428379,-0.081815525889397],[0.083130836486816,-0.053226422518492,0.058655634522438],[-0.017694851383567,0.036405827850103,0.084693886339664]],[[-0.050959274172783,-0.11906304955482,-0.0061340401880443],[0.06004025042057,-0.026478048413992,-0.060798462480307],[0.051819823682308,-0.057061154395342,0.0051416489295661]],[[-0.023626374080777,0.021499054506421,0.13182488083839],[-0.16062796115875,0.028192365542054,0.044269789010286],[-0.033061761409044,-0.052982814610004,0.04506728425622]],[[-0.013656372204423,-0.14900919795036,0.026179036125541],[0.084836110472679,-0.068182833492756,0.0036407134030014],[0.037257242947817,0.05043737962842,0.07534221559763]],[[-0.028473168611526,-0.04260215908289,-0.013666209764779],[-0.096106216311455,-0.02228775806725,0.010068903677166],[0.034090030938387,0.033191204071045,0.022630149498582]],[[0.054751191288233,-0.19054165482521,-0.068536661565304],[-0.01304333191365,0.070636883378029,-0.18604366481304],[0.081834509968758,0.056429080665112,0.20103761553764]],[[0.032970156520605,0.0013020854676142,-0.059339206665754],[0.023322509601712,-0.015827879309654,-0.09687102586031],[0.025297917425632,0.049419540911913,0.049160547554493]],[[-0.17929866909981,-0.083875209093094,0.0059669488109648],[-0.046036966145039,0.094757661223412,-0.039142083376646],[0.094542890787125,0.095744222402573,0.034365747123957]],[[-0.016041051596403,-0.12021744996309,-0.036122739315033],[0.013487013056874,0.093083500862122,-0.0055754384957254],[0.10099402815104,-0.076955050230026,-0.10617408901453]],[[-0.042387254536152,0.067748673260212,-0.016574740409851],[0.1438128054142,0.055196449160576,-0.03299817815423],[0.093230359256268,-0.021325338631868,0.013390944339335]],[[-0.039868779480457,0.06899256259203,-0.0957395657897],[-0.034304637461901,0.12248345464468,-0.077827088534832],[-0.048542108386755,0.10182749480009,-0.10239285230637]],[[0.017816405743361,-0.023454351350665,-0.096011683344841],[0.11100524663925,0.15953397750854,-0.0020897327922285],[0.030432313680649,0.0031906689982861,-0.023289225995541]],[[-0.092621378600597,0.039712373167276,0.028607903048396],[0.020210249349475,-0.0060251718387008,0.13335241377354],[0.098623409867287,-0.14219796657562,-0.18923524022102]],[[-0.16559563577175,-0.067800104618073,-0.03604656085372],[-0.0020955037325621,-0.17409357428551,0.05634468048811],[0.029613889753819,0.13532017171383,-0.01083495747298]],[[0.016966953873634,0.065945968031883,-0.04855103418231],[0.0029001014772803,0.040260028094053,-0.043610859662294],[0.043600797653198,-0.00045654809218831,-0.09003896266222]],[[-0.019550466910005,-0.070534884929657,-0.089115120470524],[-0.0017090750625357,-0.006471314933151,0.020683560520411],[-0.028310434892774,-0.12324143201113,0.080101281404495]],[[0.11045797914267,0.13973312079906,0.052161354571581],[-0.0063456520438194,-0.019968677312136,-0.047800552099943],[0.037248183041811,0.095679685473442,-0.02730518579483]],[[-0.044754728674889,0.14781767129898,0.028943726792932],[0.1169958114624,0.049477577209473,0.019086493179202],[0.05288004130125,-0.10577385872602,-0.05092715844512]],[[0.063495196402073,0.021150441840291,0.013049265369773],[-0.046160195022821,0.00098193611484021,-0.11138369143009],[0.011510439217091,-0.071058765053749,0.042573407292366]],[[0.091009944677353,0.10297460108995,0.033956207334995],[0.094870030879974,0.093297697603703,-0.014458374120295],[-0.1656519472599,0.0045606237836182,-0.038998644798994]],[[0.076892867684364,-0.11911717802286,-0.16788643598557],[0.073252648115158,0.12551064789295,-0.11591950803995],[0.064783930778503,-0.011118815280497,0.11172193288803]],[[-0.0099763087928295,0.013005734421313,0.016589134931564],[-0.1477697044611,-0.020832188427448,-0.033145561814308],[-0.0043494035489857,0.1413082331419,0.017564885318279]],[[-0.075749188661575,0.013051607646048,-0.011041199788451],[0.0025918995961547,0.15538586676121,-0.068824782967567],[0.006565994117409,0.064371541142464,-0.030788622796535]],[[0.0074686468578875,-0.087892457842827,-0.0037304570432752],[-0.0055295331403613,0.052908308804035,0.0048205396160483],[0.097383737564087,-0.077768564224243,-0.033977478742599]],[[0.06081360206008,-0.044170010834932,0.0092080757021904],[-0.02302148938179,0.091923661530018,0.097162529826164],[0.095977202057838,-0.05979074165225,-0.048756808042526]],[[-0.019392255693674,0.030237348750234,-0.071010649204254],[0.01848298124969,-0.026548929512501,-0.11846239119768],[-0.07767815887928,-0.012864235788584,-0.057960610836744]],[[0.05332400649786,0.11826144903898,0.064418725669384],[-0.056034367531538,-0.025829235091805,-0.069532632827759],[-0.09843859821558,0.0057692704722285,-0.024438677355647]]],[[[-0.1144113317132,0.056805267930031,-0.044930849224329],[0.17932911217213,-0.013272331096232,0.066471084952354],[0.077857732772827,-0.021615162491798,0.0058207586407661]],[[-0.010448770597577,-0.041009016335011,0.038600135594606],[0.027617454528809,0.018664883449674,-0.017383839935064],[-0.0021568026859313,-0.16005918383598,0.00059038418112323]],[[-0.0965905636549,0.013615656644106,-0.026257043704391],[-0.13406264781952,-0.06944365054369,-0.078234523534775],[0.12797698378563,0.023660689592361,0.040338162332773]],[[0.09037184715271,-0.038051672279835,-0.077110514044762],[0.063004143536091,0.092633053660393,0.10708279907703],[-0.21277935802937,-0.091621845960617,0.053412333130836]],[[-0.041899405419827,0.018076891079545,-0.038198947906494],[-0.073253929615021,0.12058383226395,0.082013018429279],[-0.093001745641232,-0.044030554592609,0.017147013917565]],[[-0.12528930604458,-0.14829801023006,-0.074184492230415],[0.1201426461339,0.19908583164215,0.0037922172341496],[-0.059546113014221,0.050378933548927,0.071282751858234]],[[-0.034622363746166,-0.059253934770823,0.037603333592415],[-0.12022989243269,0.053260542452335,0.086352542042732],[0.0091293454170227,-0.097286343574524,0.033073104918003]],[[0.011081048287451,0.042868047952652,-0.057136218994856],[-0.011761576868594,-0.039647147059441,0.07503005117178],[-0.055464874953032,-0.0454490929842,0.079927623271942]],[[-0.09273673593998,0.024785697460175,0.011556770652533],[0.027830816805363,-0.011757356114686,-0.037410337477922],[0.066211692988873,0.0048084552399814,0.01400669850409]],[[0.0025646460708231,-0.097615242004395,-0.086247228085995],[-0.050087876617908,0.0035050134174526,0.019357116892934],[0.0020830028224736,0.10775650292635,-0.054538987576962]],[[-0.085005886852741,-0.11326583474874,0.049331489950418],[0.016516342759132,-0.063324972987175,-0.053611628711224],[0.14828883111477,0.088390722870827,0.034257389605045]],[[0.083094358444214,0.1303378790617,0.13997969031334],[-0.21357044577599,-0.012734485790133,0.056757621467113],[-0.077895827591419,-0.16221126914024,-0.0017766219098121]],[[-0.2693952023983,-0.20585736632347,-0.045793991535902],[0.1908672451973,-0.027571633458138,-0.023795695975423],[0.069604523479939,0.11174160987139,-0.073359131813049]],[[-0.054281584918499,-0.013022525236011,0.034944340586662],[0.035805597901344,-0.026238024234772,-0.029743591323495],[-0.045523904263973,0.036688823252916,0.017618846148252]],[[-0.10407550632954,-0.093542724847794,0.0024205413646996],[0.10298224538565,0.072096936404705,-0.026520691812038],[-0.05085602030158,-0.03902542963624,0.14101202785969]],[[-0.10531669855118,-0.057887632399797,-0.057094298303127],[0.042423788458109,0.042498011142015,-0.0040067839436233],[-0.022586844861507,-0.036633014678955,0.11587332189083]],[[0.10103861242533,-0.15327496826649,-0.11618932336569],[0.083317674696445,0.097450204193592,-0.11034333705902],[-0.049953419715166,-0.0061757047660649,0.1201089695096]],[[-0.093600541353226,-0.14112883806229,0.02264741808176],[-0.10228382050991,-0.00011666265345411,-0.12017563730478],[0.25998130440712,0.10271482914686,0.017673412337899]],[[0.025965051725507,-0.047624927014112,-0.093790777027607],[0.14950884878635,-0.0011076212394983,-0.10022351890802],[-0.011444563046098,0.12529557943344,0.06172439455986]],[[-0.043925195932388,0.025393662974238,0.082300178706646],[-0.026146365329623,0.10547246783972,0.11812504380941],[-0.088615946471691,0.020581945776939,-0.029537834227085]],[[-0.020788978785276,-0.033618282526731,-0.061449687927961],[-0.005001422483474,-0.0014051051111892,0.0019967139232904],[0.011584575287998,0.011270819231868,0.054777633398771]],[[0.02507321536541,0.0024341105017811,-0.18722389638424],[0.032365933060646,0.064470931887627,0.049205139279366],[-0.023000456392765,0.00030014506774023,0.062205594033003]],[[0.012772462330759,-0.077463805675507,-0.21470472216606],[0.094635970890522,0.13783273100853,0.0018473850795999],[-0.083618775010109,0.20173981785774,0.040754336863756]],[[-0.210125669837,0.029254656285048,0.086815267801285],[-0.0021588066592813,-0.078804582357407,-0.1965239495039],[-0.021409733220935,-0.1348140835762,-0.12650300562382]],[[0.069196529686451,-0.013280430808663,-0.014633836224675],[0.0051418114453554,0.1428319811821,-0.026543490588665],[-0.021706173196435,-0.0085844043642282,-0.067914836108685]],[[-0.13664820790291,-0.057537317276001,0.0050037810578942],[0.0074606793932617,0.015200906433165,-0.16938796639442],[0.12640680372715,0.050110310316086,0.029889855533838]],[[0.15029184520245,0.022577563300729,0.067630298435688],[-0.024204200133681,0.075762234628201,0.012414668686688],[-0.22453057765961,-0.06671142578125,-0.038164850324392]],[[0.10213669389486,-0.0075855278410017,0.011873842217028],[0.039011891931295,0.014100943692029,-0.063520543277264],[-0.1706333309412,-0.10855438560247,0.02295109257102]],[[-0.0043854820542037,0.029223918914795,-0.11217611283064],[-0.029377760365605,-0.044300593435764,-0.0031886990182102],[0.033325359225273,0.15845875442028,0.042830564081669]],[[0.011460801586509,0.034840457141399,-0.04976412281394],[0.077288933098316,0.01592992991209,-0.025439038872719],[-0.066083110868931,0.048243544995785,-0.049629218876362]],[[0.010092074982822,-0.022476878017187,-0.028400918468833],[0.11955036222935,-0.032231226563454,-0.043639369308949],[-0.059078320860863,-0.075414516031742,0.10072740912437]],[[0.0043202266097069,0.015601449646056,0.24234829843044],[-0.025808803737164,-0.14309483766556,-0.088527768850327],[-0.1560682207346,-0.11526305228472,0.082965821027756]],[[-0.044500607997179,-0.030634058639407,-0.047783777117729],[0.11143270879984,0.033792395144701,-0.048463188111782],[0.019497571513057,0.19582018256187,0.0027293507009745]],[[-0.012361842207611,0.037731427699327,0.069082200527191],[0.034110702574253,0.030207596719265,-0.026740906760097],[0.021920524537563,0.028854768723249,-0.030194154009223]],[[0.086048543453217,-0.017157819122076,-0.058170173317194],[0.24332110583782,0.054161597043276,-0.089295998215675],[-0.0044821240007877,0.023643761873245,0.090120017528534]],[[0.082158856093884,0.10155293345451,0.10655792057514],[-0.19647558033466,0.055901676416397,0.12970876693726],[-0.098071783781052,-0.2514474093914,-0.10302197933197]],[[-0.063684023916721,0.051116026937962,0.12604382634163],[-0.032687190920115,-0.071019262075424,-0.054279327392578],[0.059234995394945,-0.01479457039386,-0.015115071088076]],[[-0.064300991594791,-0.0049600903876126,0.011157280765474],[0.0080852555111051,0.029364405199885,-0.017531549558043],[-0.084827199578285,0.0076000848785043,-0.039128705859184]],[[-0.014844925142825,-0.036563325673342,0.011600520461798],[-0.17773473262787,0.010716082528234,-0.011396808549762],[-0.071845680475235,-0.018366783857346,0.019625071436167]],[[0.15503463149071,-0.033028047531843,0.013895764946938],[-0.027719991281629,0.045136064291,0.045938689261675],[0.094233132898808,-0.057134985923767,0.076844304800034]],[[0.098302133381367,0.035083048045635,0.054007526487112],[-0.024327699095011,-0.047046579420567,0.043945848941803],[-0.052723217755556,0.074682019650936,-0.051535155624151]],[[0.004449300467968,0.041288372129202,0.018856478855014],[-0.024805054068565,0.11949069052935,0.04937681928277],[0.071356609463692,-0.099934779107571,0.049446374177933]],[[-0.026731276884675,-0.033103596419096,0.023087538778782],[-0.0033515410032123,-0.023430032655597,-0.017382884398103],[-0.028856761753559,0.13529953360558,0.072764046490192]],[[0.12550437450409,-0.008905709721148,0.0076067699119449],[-0.10106514394283,0.050446141511202,0.019857414066792],[-0.065535247325897,0.0081710750237107,-0.036342483013868]],[[-0.09611052274704,-0.049094948917627,-0.10795059800148],[-0.06506522744894,0.044227585196495,-0.045493442565203],[0.015842318534851,-0.056775368750095,0.065123409032822]],[[-0.29399499297142,0.017914395779371,0.070393368601799],[-0.22146262228489,-0.16820421814919,0.045473821461201],[0.030780663713813,0.16175985336304,0.11526488512754]],[[0.075264655053616,0.048437397927046,-0.0037745982408524],[0.093173742294312,0.11208757013083,0.068143360316753],[-0.19964879751205,-0.02913767658174,-0.050440229475498]],[[0.026825932785869,0.083183966577053,-0.017180973663926],[0.029831631109118,-0.016772417351604,0.10597262531519],[-0.19339735805988,-0.086089387536049,0.010125721804798]],[[0.091375969350338,0.022226044908166,0.12077713757753],[0.11155416071415,-0.078213199973106,-0.066659606993198],[-0.047168061137199,0.013560830615461,-0.022596644237638]],[[-0.032948583364487,0.0043469169177115,0.013013809919357],[0.10789701342583,-0.03483746573329,-0.020057247951627],[0.084526561200619,0.013679603114724,-0.075008869171143]],[[0.1156265065074,0.091737248003483,-0.080092459917068],[0.099811658263206,-0.1219776943326,-0.05312967300415],[-0.028456442058086,-0.082328997552395,-0.017307342961431]],[[0.030401680618525,-0.0026973821222782,-0.080033965408802],[-0.15159270167351,0.19818715751171,0.12344335019588],[-0.072181656956673,-0.30038911104202,-0.096523962914944]],[[-0.019645299762487,0.053076781332493,-0.071851171553135],[-0.014314166270196,-0.0039368364959955,-0.068289890885353],[0.13909040391445,-0.045052491128445,0.095524482429028]],[[0.028902368620038,-0.044140566140413,-0.061421923339367],[-0.072527356445789,-0.044692657887936,-0.13522627949715],[0.11479541659355,0.071753054857254,0.15722893178463]],[[0.07572740316391,0.0021313214674592,-0.10579478740692],[-0.12206272780895,-0.077561624348164,0.035771828144789],[0.026658838614821,-0.011992094106972,-0.0049287979491055]],[[0.0087845614179969,0.034022804349661,0.0061033740639687],[0.00078613619552925,-0.16032256186008,-0.013024172745645],[-0.052497040480375,-0.079680480062962,0.023494333028793]],[[0.075867548584938,0.084926642477512,0.16333808004856],[-0.14876720309258,-0.026975993067026,-0.005606540478766],[-0.0030079658608884,0.10765035450459,-0.076697461307049]],[[-0.071590676903725,-0.045981146395206,-0.11515935510397],[0.063585378229618,-0.04373412579298,-0.0015549977542832],[-0.18889750540257,0.21304892003536,0.020159242674708]],[[0.10493259131908,-0.0076957023702562,-0.00095254968618974],[-0.092219159007072,-0.091302379965782,0.029586296528578],[0.0065971044823527,0.039095047861338,0.083666376769543]],[[-0.003610767191276,-0.072537772357464,-0.085852295160294],[0.065181382000446,-0.10466591268778,0.1262828707695],[0.12163538485765,0.035840008407831,0.16592091321945]],[[-0.09726770222187,0.0018616344314069,-0.19593745470047],[0.044578637927771,0.042470071464777,0.0099663278087974],[0.07152895629406,-0.096826359629631,0.073457598686218]],[[0.069236479699612,-0.071465007960796,0.044562745839357],[-0.034958962351084,-0.089597575366497,-0.1541163623333],[-0.0041568856686354,0.01019312441349,0.014331039041281]],[[0.018348801881075,0.12556183338165,-0.0049488958902657],[-0.08278564363718,0.0054776002652943,-0.036387454718351],[0.073239117860794,0.041704703122377,-0.14151902496815]],[[0.026018446311355,0.103257201612,0.24446748197079],[-0.037040114402771,-0.069203235208988,-0.048192471265793],[-0.048414897173643,-0.12493385374546,-0.090250447392464]]],[[[0.0092700244858861,0.11192125827074,-0.0046319584362209],[0.033887300640345,-0.049137279391289,-0.066344849765301],[-0.043597050011158,0.067572295665741,-0.082935459911823]],[[0.0074322801083326,0.011544962413609,0.027512596920133],[-0.1465310305357,0.060348555445671,0.083881802856922],[-0.040460310876369,-0.034935038536787,-0.035946246236563]],[[-0.003498932113871,-0.0056053036823869,0.023124327883124],[-0.019828546792269,-0.044611521065235,-0.032677941024303],[-0.080269083380699,0.0038550177123398,0.029608841985464]],[[0.11203812807798,-0.097510151565075,0.0011685424251482],[-0.03501982986927,-0.0082804188132286,-0.04438903927803],[-0.04096595197916,0.0030176760628819,0.01879271492362]],[[-0.040875282138586,-0.06304319947958,0.019713826477528],[0.018421348184347,-0.075975127518177,0.04095558822155],[-0.0065882550552487,0.011481202207506,0.03383719176054]],[[-0.024312742054462,-0.06101256236434,-0.013793688267469],[-0.0095833921805024,-0.098013818264008,-0.018241276964545],[0.028736487030983,0.0039745112881064,0.0037161586806178]],[[-0.015116087161005,-0.053049698472023,-0.013616661541164],[-0.018613593652844,0.051417712122202,-0.14269225299358],[0.0076983193866909,0.07700864225626,-0.060979709029198]],[[-0.0025005475617945,-0.048738304525614,0.0093007711693645],[0.03369115665555,-0.081365443766117,0.049954619258642],[-0.074639938771725,-0.014834818430245,0.11463990807533]],[[0.048457186669111,0.061236571520567,0.031141420826316],[-0.064562492072582,-0.077979169785976,0.085610099136829],[-0.0094515755772591,-0.053198039531708,-0.0020083587151021]],[[0.064653851091862,0.068418733775616,-0.042760424315929],[-0.1161829829216,0.0071073384024203,-0.082178443670273],[-0.0061103873886168,0.020600844174623,0.012765442021191]],[[-0.059975899755955,0.018647709861398,0.10973946750164],[0.029673896729946,0.053617928177118,-0.017436929047108],[-0.039995774626732,-0.034801978617907,-0.13637465238571]],[[-0.00167433579918,-0.026842344552279,-0.039091892540455],[-0.073998980224133,-0.071528151631355,-0.12414997071028],[-0.022938789799809,0.13019190728664,0.031529165804386]],[[-0.11664183437824,0.025560528039932,0.046378049999475],[0.045475095510483,-0.14105942845345,0.067237727344036],[0.017846366390586,0.019792323932052,-0.049255672842264]],[[0.026538675650954,-0.0072036688216031,-0.034523542970419],[-0.056849241256714,0.049002181738615,0.0082170991227031],[-0.022088577970862,-0.017747938632965,-0.025922425091267]],[[-0.032930035144091,-0.035584058612585,-0.0079608419910073],[-0.010700859129429,-0.018173035234213,-0.17643940448761],[-0.085595339536667,0.022381905466318,-0.031118361279368]],[[0.070550918579102,0.06541284173727,0.0074289008043706],[-0.015682309865952,-0.053496267646551,-0.079576723277569],[0.017453880980611,-0.039804469794035,0.079155772924423]],[[0.10935097187757,-0.00083132134750485,-0.061543010175228],[-0.088553965091705,-0.0090986946597695,-0.039291776716709],[0.029371526092291,0.036895278841257,0.018697267398238]],[[-0.046715579926968,-0.064723446965218,0.17777371406555],[-0.083277083933353,-0.030825361609459,0.09708821028471],[0.082856886088848,-0.11439637094736,-0.10943092405796]],[[0.037520419806242,-0.063775628805161,0.00698002288118],[0.02942349947989,-0.028979947790504,-0.0037855892442167],[-0.0023767550010234,-0.068467378616333,-0.0038928806316108]],[[-0.018811162561178,-0.031023370102048,0.046619970351458],[0.068679176270962,0.078245021402836,-0.10061963647604],[-0.042635124176741,0.029454696923494,0.047770112752914]],[[0.017145676538348,0.042189467698336,-0.037310883402824],[-0.028755458071828,-0.08143226057291,0.0030374499037862],[-0.031361568719149,0.071343928575516,-0.037884790450335]],[[-0.00066034431802109,-0.061892051249743,0.011209997348487],[0.051808822900057,-0.060187980532646,0.074760131537914],[0.028406301513314,-0.010390046052635,-0.0003602389479056]],[[-0.060420639812946,0.0081225410103798,0.14380072057247],[-0.058312129229307,0.061067622154951,0.093334756791592],[-0.045943628996611,-0.052805591374636,0.038661804050207]],[[-0.072522297501564,0.11073686927557,0.048725187778473],[0.079976744949818,-0.094650372862816,0.020808167755604],[0.039883423596621,0.097616694867611,-0.032328523695469]],[[0.01191043201834,0.032107073813677,-0.029879570007324],[0.041543781757355,-0.0465296395123,0.14051800966263],[-0.028140790760517,-0.0017754520522431,-0.016581552103162]],[[0.053750518709421,-0.045965492725372,0.17839948832989],[-0.13073402643204,-0.25780010223389,0.051839169114828],[0.043493121862411,0.023745698854327,-0.014524900354445]],[[-0.020042806863785,-0.0026008316781372,-0.055305231362581],[0.0046149492263794,0.018384205177426,-0.083684846758842],[0.013765458017588,-0.050876244902611,0.053503643721342]],[[-0.096032798290253,-0.034593444317579,-0.038771953433752],[-0.0019198179943487,-0.020913681015372,0.02254987321794],[0.0099757481366396,-0.10827804356813,0.024997774511576]],[[0.078701883554459,0.04321776330471,-0.055616810917854],[-0.016362980008125,-0.06678444892168,0.059882555156946],[-0.051079127937555,-0.13301520049572,-0.045065548270941]],[[-0.013245667330921,-0.055322516709566,0.038099687546492],[-0.016393216326833,-0.0074054840952158,0.075361512601376],[0.044355407357216,-0.010233273729682,-0.10159099847078]],[[-0.017925702035427,0.052173051983118,0.0088969599455595],[-0.0498604811728,0.025887701660395,0.083722077310085],[0.13923588395119,0.082710824906826,-0.085284799337387]],[[-0.07051882147789,0.034244909882545,-0.057188153266907],[-0.0055855149403214,-0.10116450488567,-0.041829202324152],[-0.044789638370275,0.047677237540483,-0.058830328285694]],[[0.016786908730865,-0.046080444008112,0.0033123043831438],[0.015575074590743,-0.030024705454707,0.14002265036106],[0.032852746546268,0.032506033778191,-0.017421526834369]],[[0.0014934111386538,-0.16736999154091,-0.042926695197821],[-0.074498891830444,-0.015304482541978,-0.12357919663191],[-0.09647610783577,0.032049939036369,0.00086066796211526]],[[-0.053291130810976,-0.053284134715796,-0.076134063303471],[-0.052710339426994,0.031142871826887,0.087121516466141],[0.055786717683077,-0.0062521006911993,-0.051584970206022]],[[0.06912299990654,-0.049203179776669,-0.11265372484922],[-0.073085702955723,0.06653868407011,0.0331243686378],[-0.078804388642311,-0.13149544596672,-0.0014596674591303]],[[0.066992774605751,0.0076920781284571,-0.032095927745104],[0.062768988311291,-0.042887397110462,0.0072730579413474],[0.025118563324213,-0.030024532228708,0.01998633518815]],[[-0.18124122917652,0.028653806075454,0.12111721932888],[0.030986171215773,-0.05112536624074,-0.14821441471577],[0.07060033082962,-0.057083684951067,0.094514936208725]],[[0.059954229742289,0.0038651223294437,0.049574878066778],[0.075100883841515,-0.036495961248875,0.067575216293335],[-0.08143874257803,-0.0099974172189832,-0.0096022486686707]],[[-0.022172670811415,0.041116286069155,-0.019399259239435],[-0.044875267893076,0.055937271565199,0.10037185996771],[-0.035150144249201,0.044287521392107,-0.018270883709192]],[[0.074534639716148,0.033780157566071,0.018205342814326],[-0.10991160571575,-0.098063565790653,-0.014396142214537],[0.12151715159416,-0.075829796493053,-0.10271672159433]],[[0.008191192522645,0.0084192017093301,-0.010285058058798],[0.043871194124222,0.054633725434542,0.018832443282008],[0.092244736850262,-0.16289576888084,0.031722109764814]],[[-0.040478747338057,-0.037200160324574,0.023039462044835],[0.004022151697427,0.048539489507675,-0.022256337106228],[0.06761546432972,-0.058609191328287,-0.11202649772167]],[[-0.065830267965794,-0.033842273056507,-0.064833223819733],[0.081951469182968,0.028635989874601,-0.021143367514014],[0.084117949008942,0.035804811865091,-0.03272258117795]],[[-0.077277593314648,-0.00070898688863963,0.032217659056187],[0.088022172451019,-0.037933260202408,-0.0087600769475102],[0.0232272464782,0.0058462331071496,-0.019260436296463]],[[-0.066879943013191,0.10368787497282,0.086240850389004],[0.013617028482258,0.0081872241571546,-0.056716550141573],[-0.013240478001535,-0.026578718796372,-0.05430069565773]],[[0.00096151686739177,-0.06925543397665,-0.087635464966297],[0.0018626492237672,0.1760445535183,0.047653872519732],[0.0070770857855678,-0.11602418124676,0.018691623583436]],[[-0.08243565261364,0.060570366680622,-0.048101227730513],[0.099433250725269,0.020480580627918,-0.01461795438081],[-0.037690937519073,0.080498591065407,0.0016735306708142]],[[-0.0056267050094903,-0.049430884420872,0.043287608772516],[-5.0141996325692e-05,0.094161070883274,0.070221200585365],[0.0080638127401471,0.05154337733984,-0.042543072253466]],[[-0.033232968300581,0.075162373483181,0.019949059933424],[-0.046544317156076,-0.053767185658216,-0.087856769561768],[0.035687763243914,0.081167541444302,0.042173344641924]],[[0.029164008796215,0.032437726855278,0.024604953825474],[-0.021167811006308,-0.0074367355555296,-0.017127025872469],[0.050174899399281,-0.062190264463425,-0.0074624083936214]],[[0.054368436336517,-0.03018618747592,2.0115163351875e-05],[-0.026999669149518,0.002227233024314,-0.045391913503408],[0.021344680339098,0.073248267173767,-0.020050385966897]],[[-0.0082060769200325,0.0030953919049352,-0.062023919075727],[-0.058586072176695,-0.051446538418531,-0.044170621782541],[-0.021424839273095,0.099440157413483,0.0089339856058359]],[[-0.065553039312363,-0.076684936881065,0.037275578826666],[-0.016753537580371,-0.027793385088444,0.11743702739477],[0.015270872972906,0.0003145424707327,0.17426778376102]],[[-0.0393405854702,0.015314591117203,-0.030861001461744],[0.020794047042727,-0.12333767861128,0.04955268651247],[0.064647726714611,-0.14889650046825,-0.075166873633862]],[[0.069198749959469,-0.018776830285788,0.018317075446248],[0.0065271444618702,0.089265123009682,-0.15460872650146],[-0.029638214036822,-0.015600838698447,0.011093253269792]],[[-0.071749828755856,0.14753311872482,0.086452223360538],[0.10016749054193,0.0063123190775514,0.12110722064972],[0.013579144142568,-0.031487163156271,-0.12073089182377]],[[-0.080929823219776,-0.0016227485612035,0.012649027630687],[-0.1362311989069,-0.0038000210188329,-0.051662970334291],[0.088893808424473,-0.22382022440434,0.11518008261919]],[[0.0096463821828365,-0.065641149878502,0.056709736585617],[0.1557631790638,-0.041351892054081,-0.041558790951967],[-0.0056657800450921,-0.0062027536332607,0.01213600486517]],[[-0.070190906524658,-0.084234066307545,0.0028733985964209],[-0.040841199457645,-0.040305607020855,0.028841966763139],[0.075823739171028,0.050360426306725,-0.12718142569065]],[[0.05916066840291,0.067508175969124,-0.039704900234938],[-0.069213576614857,0.061211325228214,0.05432541295886],[-0.0071598086506128,0.11351927369833,0.035096257925034]],[[-0.098321445286274,-0.040155343711376,0.082586906850338],[-0.0054668253287673,0.0016413427656516,-0.062750443816185],[-0.008789973333478,0.030281854793429,-0.038519900292158]],[[0.18817909061909,0.13444702327251,-0.10545113682747],[0.028162308037281,0.040147017687559,-0.0055548404343426],[0.033208601176739,-0.11295215785503,-0.097938776016235]],[[-0.096365690231323,0.0061390586197376,-0.087718725204468],[0.0056308191269636,0.080586545169353,0.043351821601391],[0.0224047023803,-0.057650934904814,0.058127470314503]]],[[[0.078599460422993,-0.018046595156193,0.0074311136268079],[-0.066872417926788,-0.022087287157774,0.092464663088322],[-0.07154742628336,0.048966370522976,0.048163641244173]],[[-0.11532049626112,-0.081274688243866,-0.003803433617577],[-0.076157107949257,0.018912749364972,0.095206648111343],[-0.098818354308605,0.020670237019658,0.081242181360722]],[[-0.14511512219906,0.059651877731085,-0.0098087191581726],[0.072447054088116,0.086774803698063,0.0065795057453215],[-0.084215365350246,-0.063937947154045,0.013635519891977]],[[-0.13602276146412,-0.053366526961327,-0.022190511226654],[-0.093765996396542,0.12218816578388,0.07029065489769],[-0.074955470860004,0.027405461296439,0.011029883287847]],[[0.0010056960163638,0.004682928789407,-0.031507175415754],[0.10837189108133,-0.016310196369886,-0.066828094422817],[0.023646548390388,-0.018678659573197,0.026518540456891]],[[-0.081137038767338,-0.01869966648519,0.019895013421774],[-0.046412400901318,0.0090284608304501,0.057015210390091],[-0.0033801039680839,0.060948744416237,0.069366574287415]],[[0.028928032144904,0.026075469329953,0.010407527908683],[0.057932965457439,-0.092729590833187,-0.096741147339344],[-0.071139052510262,-0.010769027285278,0.03233602270484]],[[-0.12642282247543,0.032255817204714,-0.0092746755108237],[0.064092747867107,0.10818894952536,-0.065707750618458],[-0.11398413777351,0.032006096094847,0.063366927206516]],[[0.13676173985004,0.018703043460846,-0.057757891714573],[0.01999394968152,-0.072051264345646,-0.038297157734632],[0.012547424994409,0.0097257010638714,-0.055353581905365]],[[0.10077137500048,-0.26626044511795,0.050970911979675],[-0.033199168741703,0.0060590193606913,0.067722156643867],[0.017934655770659,0.010531379841268,-0.035631168633699]],[[-0.077503032982349,-0.076812922954559,-0.035521280020475],[-0.11597220599651,-0.099663406610489,-0.0347412340343],[-0.0039188754744828,0.020302545279264,-0.011180678382516]],[[0.0710803642869,0.032582491636276,-0.017879655584693],[0.11504866927862,0.11223054677248,-0.056158542633057],[0.010113800875843,0.0020973703358322,-0.070293210446835]],[[-0.17684848606586,0.037735775113106,-0.039776939898729],[-0.06377162784338,0.0098725603893399,0.039130330085754],[-2.4883687729016e-05,0.00092925265198573,-0.0083256242796779]],[[0.017695542424917,-0.041455399245024,-0.070861011743546],[-0.052516132593155,-0.081068366765976,0.035315420478582],[-0.0046378276310861,0.01323383115232,0.026369191706181]],[[-0.036400638520718,-0.0090749990195036,0.02717587351799],[-0.013571639545262,0.075508512556553,-0.013749168254435],[-0.011026731692255,0.033173676580191,0.0077822743915021]],[[0.084009885787964,-0.035795573145151,0.020168375223875],[-0.047479912638664,0.038641776889563,-0.08141715079546],[0.018475661054254,-0.090775139629841,0.083637110888958]],[[0.04515590146184,-0.041941158473492,-0.059521146118641],[0.1023588553071,-0.033767271786928,-0.062851577997208],[0.0053377654403448,0.018824744969606,-0.045862499624491]],[[0.028395859524608,-0.020177265629172,0.028483781963587],[-0.024935847148299,-0.0031688546296209,-0.025560131296515],[-0.024956302717328,-0.012178269214928,-0.049099717289209]],[[0.019620532169938,-0.018800375983119,-0.030176250264049],[-0.10202270746231,-0.0071675623767078,0.020058749243617],[0.051609061658382,0.0048930183984339,-0.032843071967363]],[[-0.20380766689777,-0.012087664566934,-0.050595544278622],[0.1819085329771,0.084694065153599,-0.028898436576128],[-0.019807554781437,-0.073765657842159,-0.066491596400738]],[[0.080489903688431,-0.034019853919744,-0.030003633350134],[0.064502507448196,-0.10236643999815,0.050188988447189],[0.052200496196747,-0.052912030369043,0.0096959797665477]],[[-0.058835186064243,-0.079539142549038,0.018302565440536],[-0.032608307898045,0.032626077532768,-0.020504485815763],[-0.019804824143648,0.019459139555693,-0.0031835646368563]],[[0.061890307813883,-0.03735588863492,-7.9552126408089e-05],[0.028533950448036,0.081739023327827,0.079249061644077],[0.06015233322978,-0.048226736485958,-0.047975424677134]],[[-0.026212904602289,-0.22351568937302,-0.045827236026525],[-0.20955620706081,0.035332195460796,0.060058582574129],[-0.019241515547037,0.034099034965038,-0.0025814815890044]],[[-0.14812169969082,-0.0070903426967561,-0.083537861704826],[0.046719994395971,-0.055286213755608,0.032745528966188],[-0.0022097416222095,0.045148190110922,0.070523343980312]],[[-0.033122260123491,0.073335573077202,-0.031921915709972],[0.026676302775741,0.046372629702091,-0.0083880228921771],[-0.035546194761992,0.00052715034689754,0.003438349114731]],[[-0.032015517354012,0.078503951430321,-0.050355307757854],[-0.0025121932849288,-0.030764384195209,-0.017500896006823],[0.039469823241234,0.026183899492025,-0.063837870955467]],[[0.077263355255127,0.048129942268133,0.015121294185519],[-0.1450287103653,0.073658384382725,0.042695783078671],[0.0027398876845837,0.00077000149758533,-0.009459818713367]],[[-0.03953168913722,0.043068613857031,0.027196638286114],[-0.069367907941341,-0.027056461200118,0.082611232995987],[-0.068562351167202,0.043949257582426,0.042930234223604]],[[0.095774538815022,-0.053946267813444,0.0039161746390164],[-0.033184580504894,-0.12375525385141,-0.020354177802801],[-0.054002016782761,0.016528194770217,0.010840246453881]],[[0.040368113666773,0.079369843006134,-0.09868835657835],[0.081966675817966,-0.047687783837318,0.03170570731163],[0.063736230134964,-0.0087775643914938,0.005120241548866]],[[-0.039415538311005,-0.021840248256922,-0.018283177167177],[-0.028260458260775,-0.10909885168076,-0.077507510781288],[-0.0057809529826045,-0.023340154439211,0.029170202091336]],[[-0.015841688960791,-0.01492219697684,-0.086760021746159],[-0.027461150661111,0.10905127227306,0.032626464962959],[0.0076240948401392,0.028763381764293,-0.084831446409225]],[[0.0019372932147235,0.12881813943386,0.056523557752371],[-0.035862289369106,0.074102908372879,0.00090105616254732],[-0.010898583568633,-0.017591673880816,-0.0069072637706995]],[[-0.023186692968011,0.026941543444991,-0.012190372683108],[-0.1669245660305,-0.0078929690644145,-0.006366397254169],[0.033409990370274,0.022542338818312,-0.0095361042767763]],[[0.10060119628906,-0.045593269169331,0.015724044293165],[0.044200472533703,-0.041447732597589,-0.0017040628008544],[-0.041533585637808,-0.042551662772894,0.03049922734499]],[[-0.16513729095459,-0.052713230252266,0.0061747008003294],[-0.078267112374306,-0.067954674363136,-0.015294994227588],[0.071013070642948,0.021333372220397,0.085049763321877]],[[-0.22179925441742,-0.14423935115337,-0.00055389606859535],[-0.0041974517516792,0.010484877042472,-0.010105297900736],[0.020215831696987,-0.089394092559814,0.10271098464727]],[[0.099681727588177,-0.035221859812737,0.048802491277456],[-0.040795363485813,-0.025120422244072,-0.06121040135622],[-0.085518382489681,-0.022240947932005,-0.0060623590834439]],[[0.012149323709309,0.082876965403557,-0.10253858566284],[-0.065078862011433,-0.053183790296316,0.11182850599289],[-0.067179672420025,-0.028193792328238,0.052990067750216]],[[-0.05501925945282,-0.083717495203018,0.013810788281262],[-0.21368680894375,-0.047672938555479,-0.0056925117969513],[-0.0040224515832961,-0.0010223624994978,0.0048851147294044]],[[0.0026576307136565,0.043201375752687,0.016241773962975],[-0.042824096977711,-0.023407878354192,0.001562831341289],[-0.034876681864262,-0.057287998497486,-0.030383022502065]],[[-0.015433475375175,-0.0074636787176132,-0.0027105414774269],[-0.15544931590557,-0.24068102240562,-0.034864325076342],[0.014825445599854,-0.05012459680438,0.088038615882397]],[[-0.1133883818984,-0.036809053272009,0.099837474524975],[0.0083219278603792,-0.013692158274353,0.02696792781353],[-0.044479586184025,0.003879311028868,0.064459092915058]],[[0.061705466359854,-0.14916364848614,-0.040975417941809],[0.062519326806068,-0.095837473869324,0.0061821104027331],[-0.013806348666549,-0.016999820247293,-0.020430251955986]],[[-0.035046849399805,0.054720167070627,-0.027085389941931],[-0.13070838153362,-0.0086267534643412,-0.062185663729906],[-0.065100610256195,0.0060830526053905,-0.065877251327038]],[[-0.090486735105515,-0.010955160483718,0.0024390236940235],[-0.018010269850492,-0.023126056417823,-0.059507865458727],[0.0022873878479004,-0.041318472474813,0.11880328506231]],[[0.026558943092823,-0.041742686182261,-0.01616020873189],[-0.047707784920931,-0.089493729174137,-0.042016848921776],[0.021331971511245,0.030588058754802,0.028460087254643]],[[-0.14495170116425,-0.16760009527206,-0.039817977696657],[0.077213913202286,-0.036361210048199,0.13805858790874],[-0.052659071981907,-0.081218734383583,0.0077595813199878]],[[-0.046088874340057,0.0062287948094308,-0.0098201222717762],[-0.065089516341686,0.090054608881474,0.073424234986305],[0.029169023036957,0.022148255258799,-0.00087423162767664]],[[0.054335836321115,-0.015098670497537,0.03570320084691],[-0.02430185675621,-0.030919434502721,0.03807396069169],[-0.060768753290176,-0.024574037641287,0.020816776901484]],[[-0.073013499379158,-0.056970253586769,-0.05603289976716],[0.0013887188397348,0.008411536924541,-0.0066079790703952],[0.042410865426064,0.025599997490644,0.019253799691796]],[[-0.044276591390371,0.10368311405182,-0.01584891974926],[0.073277004063129,-0.016575556248426,-0.015831809490919],[-0.02209116332233,-0.044940326362848,0.02582866512239]],[[-0.18128389120102,-0.068394966423512,-0.011851573362947],[-0.030866993591189,0.11916973441839,-0.027242856100202],[0.025828558951616,0.076612703502178,0.078009404242039]],[[0.037312190979719,-0.032315839082003,0.0081297429278493],[-0.1249925494194,-0.087829075753689,-0.055107019841671],[0.011993434280157,0.079412743449211,-0.044616170227528]],[[-0.0073786396533251,-0.0070016914978623,-0.1321851760149],[0.0087767746299505,-0.031969752162695,0.042152550071478],[-0.029517604038119,-0.035506565123796,-0.052354138344526]],[[0.2145626693964,0.055532995611429,-0.0090720281004906],[0.084531307220459,-0.22260497510433,-0.083843193948269],[0.035243090242147,-0.1356628537178,0.062249336391687]],[[0.023712266236544,0.0050635635852814,-0.0069940979592502],[0.023880833759904,0.073177754878998,-0.021096426993608],[0.057203210890293,-0.011062743142247,-0.023180859163404]],[[-0.14314866065979,-0.16941863298416,-0.14127561450005],[-0.09423153847456,-0.092671081423759,0.10258024185896],[-0.14499780535698,-0.10328170657158,0.16343405842781]],[[-0.00057086657034233,-0.0058111362159252,-0.022998822852969],[0.092633441090584,-0.095190957188606,0.0031491813715547],[0.02582598850131,-0.013871408067644,-0.042597558349371]],[[0.026472751051188,0.0060600335709751,-0.011909579858184],[-0.028639350086451,-0.03985608369112,0.0021852112840861],[0.022941336035728,-0.029699617996812,-0.048814874142408]],[[-0.0018031122162938,-0.1219722032547,-0.065927468240261],[-0.14602583646774,-0.022213371470571,0.065304011106491],[0.024536103010178,-0.042675096541643,0.0081517836079001]],[[-0.042541664093733,0.012331471778452,-0.043590813875198],[0.057035304605961,0.0071957330219448,-0.16032506525517],[0.040514905005693,0.019644832238555,0.0032949654851109]],[[0.012116934172809,-0.046319134533405,0.030976532027125],[-0.10592406243086,-0.087596446275711,0.021773176267743],[-0.045726772397757,-0.035406477749348,0.059489157050848]]],[[[0.044786788523197,-0.11963269859552,0.048915386199951],[0.052750676870346,0.014944905415177,0.026980698108673],[0.15619064867496,-0.029615350067616,-0.0169394351542]],[[-0.12127866595984,0.058860991150141,0.068727098405361],[-0.012137551791966,-0.1361507922411,-0.01940331608057],[-0.11288868635893,0.042831815779209,0.056879609823227]],[[0.072045378386974,-0.10379081219435,0.035855740308762],[-0.085829891264439,0.075802497565746,-0.10548333823681],[0.11551363766193,-0.051374033093452,-0.010925960727036]],[[-0.070619180798531,0.1321509629488,-0.21723082661629],[0.09074742347002,-0.017103442922235,0.027566213160753],[0.065622068941593,0.025837859138846,0.10543149709702]],[[0.031725216656923,0.12338028848171,-0.053682662546635],[-0.063716970384121,0.09739226847887,0.09101103246212],[0.063269376754761,-0.12106021493673,-0.0663081407547]],[[0.030227007344365,-0.23145425319672,0.15626604855061],[-0.055113669484854,0.18098682165146,-0.10058129578829],[-0.088022261857986,-0.095692366361618,-0.021990889683366]],[[-0.010019254870713,-0.054560083895922,0.065356262028217],[-0.029297281056643,-0.0061155073344707,-0.047246601432562],[0.017998743802309,0.0040144468657672,0.04877695441246]],[[0.040889952331781,-0.0024242280051112,-0.044284000992775],[-0.00051805394468829,-0.051678672432899,-0.03589491173625],[0.037969946861267,-0.0022250064648688,0.039874996989965]],[[-0.13014249503613,0.036022994667292,0.0016160096274689],[0.16170370578766,-0.072410427033901,-0.04612509906292],[-0.024243699386716,0.12113691866398,-0.072232753038406]],[[-0.038421053439379,-0.13071355223656,0.020354485139251],[0.029206590726972,-0.046780705451965,-0.07092572748661],[0.055767685174942,-0.0034085586667061,0.0069482927210629]],[[0.023984113708138,-0.017501519992948,0.1371446698904],[-0.03663107380271,0.045112695544958,-0.12862764298916],[-0.0076336287893355,-0.081499487161636,0.023360138759017]],[[0.10018065571785,-0.13967548310757,0.063477210700512],[0.13012686371803,0.0602409504354,-0.045281391590834],[-0.073585420846939,0.0068419696763158,0.054918881505728]],[[0.05549555644393,-0.1456758081913,0.035015150904655],[0.027692560106516,0.1179738715291,-0.12531569600105],[-0.012660874053836,-0.18768985569477,0.0099167693406343]],[[0.030872529372573,-0.019042370840907,-0.087285362184048],[0.11094433814287,-0.024291776120663,-0.050245549529791],[-0.015644168481231,0.019455155357718,-0.031275372952223]],[[-0.023500632494688,-0.037022951990366,-0.060465920716524],[0.013017942197621,0.045223392546177,-0.017940748482943],[0.041150826960802,-0.023557754233479,-0.06908230483532]],[[-0.049817055463791,-0.15207456052303,0.079419478774071],[0.044989116489887,0.00086758163524792,0.098255097866058],[-0.010282274335623,-0.074814550578594,-0.07285762578249]],[[0.080744355916977,-4.2978426790796e-05,-0.0025452487170696],[-0.037233173847198,-0.076228655874729,-0.07014411687851],[-0.055092956870794,0.076417677104473,0.10900390893221]],[[-0.10457144677639,-0.087049946188927,0.14483769237995],[0.0088189803063869,0.15742641687393,-0.082540057599545],[-0.086884871125221,-0.11705243587494,0.035910025238991]],[[-0.033222697675228,-0.017213108018041,0.1013815626502],[0.087890982627869,0.069168411195278,-0.048994190990925],[-0.15842577815056,0.075035594403744,-0.1373423486948]],[[0.14544560015202,0.013447808101773,0.083320677280426],[-0.047545842826366,0.19715410470963,0.021097047254443],[0.20713302493095,-0.040608916431665,0.039066333323717]],[[0.14393346011639,-0.059889029711485,-0.0059035359881818],[-0.014582552947104,-0.055990379303694,0.20706090331078],[-0.063260346651077,0.013614038936794,-0.090751029551029]],[[0.089730098843575,0.081787846982479,-0.028780981898308],[-0.048241231590509,-0.017854668200016,-0.022225050255656],[-0.068935170769691,-0.074275828897953,0.21635454893112]],[[0.098243519663811,0.033931277692318,-0.054262965917587],[0.090073116123676,-0.14014165103436,-0.052216492593288],[-0.0067482166923583,-0.17571260035038,0.17345379292965]],[[0.099969513714314,-0.10111895948648,0.054853942245245],[-0.08842010051012,-0.044123657047749,0.13696120679379],[-0.060945272445679,0.081241525709629,0.078679151833057]],[[0.089310124516487,-0.093895480036736,-0.052793245762587],[0.055385913699865,-0.2005944699049,-0.065624997019768],[-0.040958039462566,0.19386960566044,-0.046628095209599]],[[0.03648841008544,-0.027193490415812,0.079046569764614],[0.030219724401832,-0.041723225265741,-0.011698361486197],[-0.0063852439634502,-0.087274499237537,-0.084689572453499]],[[0.063567064702511,-0.091057501733303,0.028417004272342],[-0.13313199579716,0.050279311835766,-0.11805459856987],[0.013761520385742,-0.083287246525288,0.039077617228031]],[[0.065397441387177,0.0070947450585663,0.050470303744078],[-0.049558855593204,0.018659923225641,-0.18427681922913],[0.0079747987911105,-0.01998389698565,0.026345489546657]],[[0.057043053209782,-0.10553453862667,-0.068473190069199],[-0.051914464682341,-0.13675880432129,0.11825878173113],[0.013772428035736,0.011543590575457,-0.040537036955357]],[[0.02871173992753,0.1169126406312,0.097133561968803],[-0.018213802948594,-0.013493990525603,-0.15827465057373],[0.04438230022788,-0.014727261848748,0.10392340272665]],[[0.13999010622501,0.010406457819045,0.095893755555153],[0.033405523747206,0.020506983622909,0.027761498466134],[-0.0028316793031991,0.019505031406879,-0.17853802442551]],[[-0.10292114317417,0.059847299009562,-0.11433558911085],[-0.026982644572854,-0.082840353250504,-0.054205823689699],[-0.041935902088881,0.072814434766769,0.058757357299328]],[[0.027330813929439,-0.15340405702591,0.083429299294949],[-0.020449858158827,0.027492186054587,-0.032361473888159],[-0.059846136718988,0.10893801599741,-0.013054637238383]],[[0.025596670806408,0.07787399739027,0.0094248689711094],[0.082558386027813,-0.021810483187437,0.066850833594799],[0.0041758599691093,0.08769291639328,-0.033525969833136]],[[0.17825677990913,0.019367856904864,-0.052843853831291],[-0.044574666768312,0.021407159045339,0.068819634616375],[0.13808730244637,-0.1404116153717,-0.018666546791792]],[[-0.015575744211674,0.043709345161915,0.090668864548206],[-0.021182619035244,-0.048165857791901,0.041771929711103],[-0.16516014933586,0.15658684074879,-0.10921190679073]],[[0.023870721459389,-0.040856007486582,0.13024067878723],[0.042567156255245,0.054888058453798,-0.14304612576962],[-0.27637538313866,-0.029775954782963,-0.10872506350279]],[[0.013018843717873,0.17217017710209,0.042916711419821],[-0.045247480273247,-0.074698850512505,0.029327282682061],[-0.027881631627679,-0.048499654978514,-0.10847218334675]],[[0.0039362874813378,0.0060485163703561,0.11022220551968],[-0.069550581276417,-0.039181906729937,-0.090100951492786],[0.0018910196376964,-0.055387627333403,0.13718719780445]],[[-0.17447331547737,0.050398048013449,0.039041057229042],[0.086702555418015,-0.0066565941087902,0.027312761172652],[-0.12730300426483,0.016010701656342,0.0006732476176694]],[[-0.094393208622932,0.045727513730526,0.049903329461813],[0.065023176372051,-0.069884426891804,-0.014273992739618],[-0.056507136672735,0.060547553002834,0.058762490749359]],[[-0.0057595311664045,0.029058676213026,-0.020524958148599],[-0.039253506809473,0.054023746401072,0.014912878163159],[-0.083041183650494,-0.0039254212751985,-0.061738956719637]],[[0.01422671508044,0.14589504897594,0.061672374606133],[-0.0603839866817,-0.021547559648752,0.020183030515909],[-0.018318116664886,0.092268139123917,-0.014138404279947]],[[0.052314188331366,0.0082976641133428,0.040313687175512],[-0.091910965740681,0.00031888886587694,0.03022900223732],[-0.096311964094639,0.0089332275092602,0.036640390753746]],[[0.079971261322498,-0.024769727140665,-0.031761147081852],[-0.21889418363571,0.0038670781068504,0.0084682973101735],[0.088680915534496,-0.038953021168709,-0.039305470883846]],[[-0.028589807450771,-0.043880928307772,0.063058525323868],[-0.083440832793713,0.1751723587513,-0.24706746637821],[-0.02568181976676,-0.063269078731537,0.076309897005558]],[[0.016510542482138,-0.03507936373353,-0.073125697672367],[0.026559034362435,0.092638574540615,-0.12015073746443],[-0.060676589608192,-0.017748108133674,-0.085636906325817]],[[-0.074789173901081,0.16324579715729,-0.13845229148865],[-0.083338506519794,-0.020486850291491,0.14291843771935],[-0.13057214021683,0.045259043574333,-0.016649948433042]],[[0.044299140572548,0.022200038656592,-0.054553288966417],[-0.028321968391538,0.0020079195965081,0.12305334210396],[-0.19645056128502,-0.0074516474269331,0.02810432203114]],[[0.14049550890923,-0.091785691678524,0.014947555027902],[0.021502086892724,0.048643466085196,-0.04396840184927],[-0.092370301485062,-0.015640284866095,-0.053253643214703]],[[0.065309055149555,0.037542626261711,0.077857092022896],[-0.068762093782425,-0.034813679754734,0.0057706851512194],[0.04584975913167,0.053566593676805,0.01126700360328]],[[0.016893774271011,0.03416121378541,-0.025757450610399],[0.030906170606613,0.090244717895985,0.056226581335068],[0.01902455277741,-0.05822991579771,-0.15272645652294]],[[0.1828445494175,-0.022950753569603,-0.05415715277195],[-0.04592327401042,0.02312839217484,-0.0053263674490154],[-0.0036158410366625,-0.070633627474308,0.0055911098606884]],[[-0.0086821941658854,0.1245109885931,-0.12296470999718],[-0.043021962046623,-0.0033263175282627,-0.0098568852990866],[0.017659163102508,0.053460258990526,-0.12594643235207]],[[-0.084990985691547,0.031967986375093,-0.061327457427979],[-0.099896863102913,-0.049455739557743,0.035427629947662],[-0.037835747003555,-0.10851760953665,-0.094235055148602]],[[-0.04539643228054,0.0655537545681,-0.061969738453627],[0.0064759138040245,-0.10794954001904,0.038289748132229],[-0.17296589910984,-0.019759545102715,-0.03349931910634]],[[0.09452510625124,0.03148727118969,-0.0066346772946417],[0.022242391481996,0.14158533513546,0.02659111097455],[0.080701053142548,0.11711356788874,0.052982266992331]],[[-0.094065293669701,0.1646568775177,-0.20409299433231],[-0.11420784145594,0.019630677998066,0.10139063745737],[-0.092291980981827,-0.061529062688351,-0.10162665694952]],[[0.14749780297279,0.021949172019958,-0.025177804753184],[0.058942619711161,-0.12219008803368,0.11111607402563],[-0.064371481537819,-0.015186673030257,-0.15708981454372]],[[-0.019976899027824,-0.13334295153618,0.0064280973747373],[0.14237095415592,-0.05025490373373,0.05592493340373],[-0.0065468088723719,-0.047020670026541,-0.10856133699417]],[[-0.038431465625763,-0.056184306740761,-0.16770826280117],[0.087342575192451,-0.061870016157627,-0.0239039324224],[0.11587546020746,-0.046543966978788,0.007429557852447]],[[-0.21984526515007,0.12147008627653,-0.055293951183558],[-0.02789524756372,-0.13220167160034,0.079433314502239],[0.0087393866851926,0.079614207148552,-0.12836340069771]],[[-0.091849088668823,0.11299087107182,-0.1186950802803],[0.0074939797632396,0.069412685930729,-0.086332447826862],[-0.020505195483565,-0.10051651299,0.095526926219463]],[[-0.10144720971584,0.18786370754242,-0.091613821685314],[0.12567967176437,-0.10819088667631,-0.019995143637061],[-0.10164906084538,0.089215084910393,0.097836002707481]]],[[[0.014368559233844,0.0026515908539295,0.055270325392485],[0.018579589203,0.019569423049688,0.050525348633528],[0.038328863680363,-0.11074629426003,-0.098776951432228]],[[-0.017967145889997,-0.0093114720657468,-0.0093674175441265],[-0.02561348862946,0.039119798690081,-0.034856703132391],[0.19521072506905,-0.086166590452194,-0.044946104288101]],[[-0.0090357232838869,-0.017178790643811,-0.0064498842693865],[-0.096958577632904,-0.042379893362522,-0.05102751031518],[0.11767710000277,0.042895324528217,0.015449390746653]],[[0.019321428611875,-0.06546775251627,0.035497695207596],[0.036323316395283,-0.093453787267208,-0.013698797672987],[0.041031338274479,0.026907242834568,-0.036500904709101]],[[0.020996101200581,-0.028414033353329,0.024363555014133],[-0.027473084628582,0.022896023467183,0.059136457741261],[0.025954328477383,-0.085848160088062,-0.034538626670837]],[[0.011393623426557,-0.01581247895956,-0.022332109510899],[-0.027840157970786,0.10889063030481,-0.078006975352764],[-0.011075734160841,0.036969743669033,-0.017536543309689]],[[-0.024827763438225,-0.019152047112584,-0.040648248046637],[0.031466607004404,-0.047465108335018,0.078760035336018],[0.01678217574954,0.0039090337231755,-0.021817794069648]],[[0.060901116579771,-0.10689843446016,0.047454245388508],[0.054224688559771,-0.035239927470684,0.069179393351078],[-0.0032540347892791,0.040050834417343,-0.087539926171303]],[[-0.010767995379865,0.20650066435337,-0.0283247474581],[0.01780129596591,0.11596786975861,0.075777962803841],[0.098208270967007,0.11224640905857,0.044348675757647]],[[-0.030739197507501,0.035615034401417,0.036489371210337],[0.081150807440281,0.035814065486193,-0.07984633743763],[0.041662354022264,-0.0255740378052,-0.10453739017248]],[[0.016498357057571,-0.056946028023958,0.029372336342931],[0.047343194484711,-0.023744540289044,-0.010869778692722],[-0.014408833347261,0.0050453813746572,-0.030165718868375]],[[0.014059291221201,-0.00012021709699184,-0.034671474248171],[-0.040104173123837,0.016094785183668,0.017135702073574],[-0.03535870462656,0.058203581720591,-0.051351360976696]],[[0.036339085549116,-0.054478567093611,-0.027274554595351],[-0.03278636559844,-0.0027356585487723,-0.0084575479850173],[-0.042941186577082,0.019739028066397,0.033414751291275]],[[-0.033386763185263,-0.016821954399347,-0.030613139271736],[-0.025049678981304,0.011029207147658,0.14073224365711],[0.0029302705079317,-0.055112894624472,0.0046150614507496]],[[0.027718024328351,-0.026540778577328,0.021098701283336],[-0.0048711127601564,-0.025706049054861,-0.052659299224615],[0.018926154822111,0.010755245573819,0.019759157672524]],[[-0.046550866216421,0.047643315047026,-0.016713501885533],[-0.054522681981325,0.094275824725628,-0.10911712050438],[0.017045779153705,0.014219149015844,0.040138456970453]],[[-0.058153849095106,0.024860326200724,0.011031191796064],[-0.05445358902216,-0.019492752850056,0.024975555017591],[0.046312820166349,-0.014897087588906,0.042163107544184]],[[0.0095748100429773,0.0029586448799819,0.0065713874064386],[-0.022100504487753,-0.018369449302554,-0.034603916108608],[0.0059016337618232,-0.018174584954977,0.022666906937957]],[[-0.01704527810216,-0.0060022627003491,-0.089612782001495],[0.0582963116467,0.019396144896746,-0.12627109885216],[-0.019315639510751,0.14446519315243,0.034376543015242]],[[-0.0012984580826014,-0.062056791037321,0.088986530900002],[-0.088146299123764,-0.078384250402451,0.074349328875542],[0.0058684954419732,0.057674925774336,0.014512843452394]],[[-0.0051326449029148,0.044372271746397,-0.038084499537945],[-0.011494860053062,-0.030004786327481,0.014537336304784],[-0.018191112205386,0.070922702550888,-0.0067974836565554]],[[0.037981435656548,-0.13753725588322,-0.066117949783802],[-0.038617916405201,0.05001962184906,0.034560244530439],[0.03130166977644,0.044081144034863,0.0093836048617959]],[[-0.017242912203074,0.012508885934949,-0.01712454855442],[-0.039720192551613,0.042629614472389,-0.02854935079813],[0.019303116947412,0.01686448417604,0.002690440043807]],[[0.0092700198292732,0.13177014887333,0.00098354753572494],[0.0015508225187659,0.023892231285572,-0.019864790141582],[-0.032018311321735,-0.040480859577656,-0.059934630990028]],[[-0.082707017660141,0.089130319654942,0.056226544082165],[-0.071000136435032,0.042119190096855,0.115972019732],[0.013010807335377,-0.052234690636396,-0.11064701527357]],[[0.038543529808521,-0.025298034772277,-0.04958812519908],[-0.018084472045302,-0.06544653326273,0.072851866483688],[-0.050694465637207,0.0046597304753959,0.003504291176796]],[[-0.0033923923037946,-0.014191980473697,0.026426060125232],[-0.019604368135333,-0.058073807507753,0.026281382888556],[0.007157564163208,0.031377337872982,-0.010335956700146]],[[0.097465716302395,-0.099062047898769,0.056120697408915],[0.060579355806112,-0.056521140038967,-0.024145819246769],[-0.01024673320353,-0.038998328149319,0.019037248566747]],[[0.010065766051412,-0.016069082543254,0.033736381679773],[0.034454111009836,0.0080457963049412,-0.059136975556612],[0.0037349904887378,-0.027401631698012,0.00086129090050235]],[[-0.048534411936998,-0.040683582425117,0.0030122301541269],[-0.017295418307185,0.051958322525024,0.016370056197047],[0.063179083168507,-0.10041236877441,0.022129833698273]],[[0.018784631043673,-0.013759740628302,-0.015098066069186],[0.017763696610928,0.026282228529453,0.034635864198208],[-0.046889644116163,-0.021857097744942,-0.013573106378317]],[[-0.028824565932155,0.018907381221652,0.0071622370742261],[-0.050907205790281,0.0053806276991963,0.020355561748147],[-0.0023734839633107,0.0084368977695704,-0.034930761903524]],[[-0.032978571951389,0.035082899034023,0.03532586991787],[0.032370436936617,-0.01967653632164,-0.030900152400136],[-0.013056745752692,-0.031591918319464,0.0075872857123613]],[[0.056310571730137,-0.032146722078323,-0.05020546913147],[0.030091624706984,-0.033084578812122,-0.05467551201582],[0.086265251040459,-0.041804280132055,-0.006594670470804]],[[-0.027215698733926,-0.036328043788671,-0.028741717338562],[0.066219143569469,-0.0052775884978473,0.10085310041904],[0.023709138855338,-0.10547316074371,-0.031405054032803]],[[-0.045051924884319,-0.026895366609097,-0.071833848953247],[-0.044120285660028,0.020402118563652,-0.0042799720540643],[0.048676140606403,0.019975477829576,0.044242549687624]],[[0.076169043779373,-0.027698427438736,-0.037003483623266],[-0.0039708642289042,-0.062700919806957,0.04766046255827],[-0.037537463009357,-0.02725182287395,0.047506332397461]],[[0.042825270444155,-0.0092072412371635,-0.031999569386244],[0.01075173728168,0.0096167149022222,-0.00014964339789003],[0.045126263052225,-0.047846257686615,-0.024333894252777]],[[0.0018288607243448,0.045414928346872,-0.002313130768016],[0.022969024255872,-0.053313970565796,0.021627670153975],[-0.022013815119863,-0.044643316417933,0.015870379284024]],[[-0.07539614289999,0.04041401296854,-0.0096582034602761],[-0.11197851598263,0.095581337809563,0.082672938704491],[-0.033268336206675,-0.013804031535983,0.053273051977158]],[[0.044550962746143,0.051628265529871,-0.023215245455503],[0.0035091850440949,-0.01853814907372,0.012628670781851],[-0.064238116145134,-0.040647227317095,0.0066866870038211]],[[-0.022150512784719,0.010759082622826,-0.021498927846551],[-0.025820149108768,0.073850035667419,0.042667083442211],[-0.090832091867924,0.040135156363249,0.023796323686838]],[[0.019314900040627,-0.050444234162569,0.012221541255713],[-0.041798196732998,0.041582774370909,-0.011338694952428],[0.048334877938032,-0.012388228438795,-0.039922196418047]],[[-0.091742657124996,-0.067154347896576,-0.13462443649769],[-0.099918857216835,-0.052299797534943,-0.011238008737564],[-0.11207988113165,0.045139592140913,-0.16851937770844]],[[0.015542763285339,-0.03548364713788,0.044830221682787],[-0.13986310362816,0.049949549138546,-0.0061555546708405],[-0.038381796330214,0.028742974624038,0.010661387816072]],[[0.0077904113568366,-0.044092081487179,0.061156962066889],[0.013999164104462,0.080500885844231,-0.036612343043089],[0.0011105668963864,-0.031154341995716,-0.034571595489979]],[[0.039645340293646,-0.049215272068977,-0.047162063419819],[-0.036825995892286,-0.061410419642925,0.039178170263767],[-0.069756895303726,0.086020596325397,0.055690504610538]],[[0.0010019234614447,-0.0023165233433247,-0.015694752335548],[0.050478614866734,-0.037435457110405,-0.01365705486387],[-0.051184136420488,0.011680371128023,0.056196969002485]],[[-0.04906727746129,-0.031247833743691,0.066103287041187],[0.012927365489304,0.028845578432083,-0.014669259078801],[0.021325528621674,0.011385855264962,-0.040918506681919]],[[0.040622390806675,-0.024765055626631,-0.022115172818303],[-0.098385646939278,-0.017485426738858,0.011902159079909],[0.065854109823704,0.020450850948691,0.0084138186648488]],[[-0.025297084823251,0.0013700717827305,-0.022216968238354],[0.052653320133686,-0.028068292886019,-0.055483311414719],[-0.031138800084591,0.06205241009593,0.024423215538263]],[[0.020325126126409,-0.072143323719501,-0.031036373227835],[-0.0077858329750597,-0.02232439443469,0.026074508205056],[0.013823604211211,-0.038273368030787,0.061170674860477]],[[-0.037263289093971,0.037777353078127,-0.085993267595768],[0.019310921430588,0.016171474009752,-0.014332537539303],[0.03499386459589,-0.033784300088882,0.041332844644785]],[[-0.03317104652524,-0.066337503492832,0.026872396469116],[-0.037213135510683,0.013482758775353,0.0021005088929087],[0.03027174808085,0.015858493745327,0.025075955316424]],[[-0.040585834532976,0.0079584093764424,-0.011494476348162],[-0.048629257827997,0.1172071620822,0.099777437746525],[-0.041372992098331,-0.093928687274456,-0.009846854954958]],[[0.02866967767477,-0.1053623855114,0.017554448917508],[-0.058649431914091,-0.029921378940344,0.07653845846653],[-0.026162939146161,-0.0091941179707646,0.040681082755327]],[[-0.14627511799335,-0.078736484050751,0.011218479834497],[-0.067305333912373,0.013855031691492,0.15494053065777],[-0.074412412941456,0.0043535316362977,0.075375162065029]],[[0.075263068079948,-0.035225503146648,-0.010217434726655],[-0.057645484805107,-0.0086387703195214,-0.0034003604669124],[-0.02055405266583,-0.0061704399995506,0.00096328527433798]],[[-0.022528534755111,0.0076244617812335,-0.019345350563526],[0.052619051188231,0.005798471160233,0.014188206754625],[-0.014353659003973,-0.11260870844126,0.12011866271496]],[[-0.012835069559515,-0.010718423873186,-0.047304037958384],[-0.00053926208056509,-0.015611229464412,-0.023315191268921],[-0.0048553454689682,0.052656449377537,0.030514989048243]],[[0.052998177707195,-0.038264323025942,0.010726178996265],[-0.066065691411495,-0.01288881432265,-0.007919067516923],[-0.01476629730314,0.045138783752918,0.016832141205668]],[[0.01893588155508,0.025025010108948,0.032360676676035],[-0.060146436095238,-0.031300991773605,0.042426202446222],[-0.022913239896297,-0.0015025809407234,0.0081702778115869]],[[-0.024676233530045,0.07329086959362,-0.014578074216843],[-0.043986979871988,-0.0026446057017893,-0.058689497411251],[0.0082786846905947,-0.010934992693365,0.060444556176662]],[[-0.013070956803858,0.031926117837429,-0.011163776740432],[-0.024309102445841,0.020004276186228,-0.0039032087661326],[0.0069425110705197,0.010859123431146,-0.025948848575354]]],[[[0.059622101485729,0.010245827026665,0.077379673719406],[0.039277248084545,0.021256502717733,-0.01849234290421],[-0.00068414298584685,0.014942731708288,-0.045423850417137]],[[0.048103168606758,-0.091165244579315,-0.0067045870237052],[0.051797531545162,0.015966478735209,-0.074940532445908],[-0.13325189054012,-0.0022163304965943,0.038240414112806]],[[-0.18029755353928,0.066288456320763,0.029250564053655],[-0.072545625269413,-0.16702216863632,0.058960366994143],[0.18096008896828,-0.043208993971348,-0.05568915233016]],[[-0.20617108047009,-0.21459259092808,-0.045284546911716],[-0.21646583080292,-0.11635192483664,0.12850442528725],[-0.093284763395786,-0.0120370676741,0.084188036620617]],[[0.055733699351549,-0.024975664913654,-0.032218087464571],[0.0053517306223512,0.024558046832681,0.0094318250194192],[-0.0079099033027887,0.082216955721378,-0.050056960433722]],[[0.11485108733177,-0.046813640743494,0.097964741289616],[-0.0087789576500654,-0.032233003526926,-0.062001749873161],[0.0055299210362136,-0.072678759694099,0.032640047371387]],[[-0.19554334878922,-0.14187268912792,-0.0256581120193],[-0.10526686906815,-0.032568745315075,0.098722867667675],[0.031068747863173,-0.025772074237466,0.081992462277412]],[[-0.16147693991661,0.030078504234552,-0.053721740841866],[-0.036504819989204,-0.11118433624506,-0.035965614020824],[0.053840052336454,0.044316925108433,0.11781500279903]],[[0.0021493823733181,0.060594942420721,-0.074852108955383],[0.0067909071221948,0.009906955063343,-0.06478326022625],[0.049153577536345,0.045990999788046,-0.041281044483185]],[[-0.0064355726353824,-0.020051157101989,0.076800614595413],[0.010668740607798,0.021137205883861,0.11965879797935],[-0.0093013532459736,-0.1077099069953,0.10550685971975]],[[0.0046969600953162,-0.042943775653839,0.012208027765155],[0.03036311455071,0.048229664564133,-0.025649070739746],[0.059380810707808,0.064105525612831,0.047776289284229]],[[0.14095520973206,0.27512741088867,0.030161079019308],[-0.0035857560578734,0.11314730346203,0.085014507174492],[0.024802803993225,0.040007743984461,0.0050742267630994]],[[-0.13634899258614,0.042479049414396,0.1182666271925],[0.0061514796689153,-0.019179729744792,0.056903060525656],[0.014667700976133,0.065369695425034,0.0020660094451159]],[[0.030289221554995,0.13400736451149,0.0029313615523279],[-0.067570388317108,-0.097073681652546,-0.1064291074872],[0.013433678075671,-0.085562750697136,-0.094273291528225]],[[0.0085232527926564,0.050143979489803,-0.071211285889149],[0.010013595223427,0.16765084862709,-0.088097147643566],[-0.00045212777331471,0.038618616759777,0.073813661932945]],[[-0.024302091449499,0.0034379810094833,-0.084868535399437],[-0.023840365931392,-0.04148306697607,-0.01751758903265],[-0.041943851858377,-0.024583596736193,-0.0024430446792394]],[[-0.047275770455599,-0.028516368940473,-0.044403832405806],[0.029647188261151,-0.089534893631935,-0.036635771393776],[0.10338347405195,0.034912336617708,-0.047851357609034]],[[0.12537212669849,-0.016996676102281,-0.029544167220592],[0.11132425814867,0.080644257366657,-0.052729442715645],[0.07264019548893,0.012544664554298,-0.095111310482025]],[[-0.041145101189613,0.046756524592638,-0.06901454180479],[-0.025794783607125,0.024043370038271,0.0042858244851232],[-0.0075113903731108,0.013059693388641,0.11255113780499]],[[0.10933317244053,-0.036427907645702,0.082279689610004],[0.18545562028885,0.057071402668953,-0.10406111180782],[-0.053240690380335,-0.20361810922623,-0.085363067686558]],[[-0.060431968420744,0.0021344595588744,-0.0006711762980558],[-0.057695653289557,-0.0038440756034106,-0.011209385469556],[0.031318750232458,-0.027665412053466,0.029135432094336]],[[0.042299401015043,0.056763719767332,0.15728202462196],[0.13746806979179,0.00056124350521713,-0.014440403319895],[0.017430935055017,-0.057212136685848,-0.025717480108142]],[[0.10562159121037,-0.020757416263223,0.10768918693066],[0.085092760622501,0.026581587269902,-0.033972654491663],[-0.078569494187832,0.10898374021053,0.02267143689096]],[[-0.055511694401503,0.1131791099906,-0.11109498888254],[-0.27667701244354,-0.083697654306889,0.1412760168314],[-0.068394161760807,-0.058720350265503,0.072049975395203]],[[-0.14281478524208,-0.012278486043215,-0.031447414308786],[-0.0065786261111498,-0.035007420927286,-0.051622394472361],[0.006659503094852,0.042003363370895,0.04504756256938]],[[0.023734530434012,0.029673730954528,-0.0042692390270531],[0.0508878454566,0.076560206711292,0.016712000593543],[-0.077709876000881,-0.027119806036353,-0.0157421361655]],[[-0.074396230280399,0.0069641568697989,0.069487437605858],[-0.033979333937168,0.004188968334347,0.0054675093851984],[-0.039399467408657,0.04700493812561,-0.032629113644361]],[[-0.0046450216323137,-0.021409161388874,0.0089334473013878],[0.031224427744746,0.0074790106154978,-0.19456292688847],[0.063732080161572,-0.12224504351616,-0.11751314252615]],[[-0.048353333026171,-0.00068578828359023,0.010347523726523],[-0.096073724329472,-0.086843483150005,0.078711092472076],[-0.017296163365245,0.011748745106161,0.037778466939926]],[[-0.14656092226505,0.0011541360290721,-0.049911737442017],[-0.043051570653915,0.011072285473347,0.046426795423031],[-0.030677076429129,0.08528558164835,-0.0066110538318753]],[[-0.010768317617476,0.035335596650839,0.11878362298012],[0.12028681486845,0.020402900874615,-0.06105163693428],[0.072746321558952,-0.11657080054283,-0.14165613055229]],[[-0.015425240620971,-0.067075446248055,0.071615792810917],[0.0040986156091094,-0.038466319441795,0.023839028552175],[-0.059990722686052,-0.0058952276594937,0.095274284482002]],[[-0.027359575033188,-0.15750801563263,-0.00037452127435245],[-0.0011665286729112,0.024316165596247,-0.059400822967291],[0.011571927927434,0.1785660982132,0.046324834227562]],[[-0.099327191710472,-0.028422618284822,-0.018037840723991],[0.0050746253691614,-0.038854096084833,0.027525026351213],[0.077313378453255,-0.03091924265027,-0.01036284584552]],[[0.018021814525127,-0.042405571788549,0.054039306938648],[0.027174329385161,0.0029208189807832,0.072252601385117],[-0.082074023783207,-0.054178681224585,0.054867196828127]],[[-0.034858133643866,-0.12272836267948,-0.027645392343402],[-0.11030180007219,0.078971818089485,0.052959460765123],[0.0011546926107258,-0.0065917763859034,0.0024973864201456]],[[-0.15077039599419,0.074853867292404,-0.033103343099356],[-0.11118821799755,-0.066675961017609,-0.13996975123882],[0.018704582005739,0.019598614424467,0.0018319227965549]],[[0.058968145400286,-0.06821832805872,0.017163326963782],[0.070660658180714,-0.031918134540319,0.072953566908836],[0.10469546169043,-0.046977341175079,-0.094262152910233]],[[-0.018633658066392,0.066520154476166,0.1952378898859],[-0.074279598891735,-0.07494543492794,0.024757239967585],[-0.059769462794065,0.073060758411884,-0.08177438378334]],[[0.064362183213234,-0.0025585549883544,0.053664293140173],[-0.0046893581748009,-0.053518764674664,0.0044927014969289],[0.10040163248777,-0.0090976282954216,-0.08407798409462]],[[0.056936986744404,0.035684116184711,0.033836405724287],[0.046031136065722,0.082713916897774,0.019394116476178],[-0.096153676509857,0.11032176762819,0.005069961771369]],[[-0.13660894334316,-0.014182389713824,0.055345863103867],[-0.18982535600662,-0.14680807292461,0.072419866919518],[-0.063836008310318,-0.043530907481909,-0.078440614044666]],[[-0.080026783049107,-0.074621506035328,0.021316925063729],[0.012462181039155,-0.063995994627476,0.070813730359077],[-0.044358383864164,0.030104456469417,0.052132729440928]],[[-0.095682427287102,0.023345243185759,0.095729306340218],[-0.099726423621178,0.09071446210146,0.010742862708867],[-0.088212564587593,-0.029978251084685,0.081869050860405]],[[-0.14357076585293,-0.078830040991306,-0.066739439964294],[-0.10377038270235,0.10253775119781,0.0066948616877198],[0.013973235152662,-0.043174963444471,0.13082945346832]],[[-0.16571025550365,-0.037987027317286,-0.013185573741794],[-0.15428537130356,-0.0076769273728132,0.0099110342562199],[-0.048091951757669,-0.069491162896156,0.11830302327871]],[[-0.093057118356228,-0.11969990283251,0.0088101271539927],[-0.14922200143337,-0.10540395230055,-0.065491244196892],[0.014015194028616,-0.13799984753132,0.0037691087927669]],[[0.085040621459484,-0.080654390156269,-0.0057691317051649],[0.010642565786839,0.0005161146982573,-0.012743940576911],[0.001750617637299,-0.014214862138033,-0.010796561837196]],[[0.066010601818562,-0.0064421105198562,0.033414348959923],[-0.057904072105885,0.014089866541326,0.05675208568573],[0.017614852637053,-0.10268916934729,-0.040369249880314]],[[-0.010389221832156,-0.027350649237633,0.01030710618943],[0.038485791534185,-0.054576806724072,-0.07689180970192],[0.08253750950098,0.049479302018881,0.0174829531461]],[[-0.0095628015697002,-0.080675266683102,0.14500516653061],[-0.0009709972073324,0.045674987137318,-0.0047233900986612],[0.0090663265436888,0.03934933245182,0.031785432249308]],[[-0.020364744588733,-0.11810352653265,0.0071102357469499],[-0.20193846523762,-0.057844083756208,-0.027632806450129],[0.03475146740675,-0.030916433781385,0.035304747521877]],[[-0.19207273423672,0.066151216626167,0.075312040746212],[-0.0563496761024,0.13034956157207,-0.028302289545536],[0.017793832346797,0.11710074543953,-0.02249120734632]],[[-0.12533757090569,-0.192168161273,-0.13887944817543],[0.0064090215601027,0.087130568921566,-0.18281751871109],[-0.0023522137198597,0.0098236622288823,-0.021697277203202]],[[-0.024517558515072,-0.035066444426775,-0.043455190956593],[-0.21678820252419,-0.14592999219894,-0.066044181585312],[-0.11143826693296,0.043263580650091,0.05720454454422]],[[-0.027035834267735,-0.051543023437262,-0.17610788345337],[-0.014935205690563,0.14063942432404,-0.036784626543522],[-0.020840430632234,-0.025579836219549,0.064402163028717]],[[0.18690098822117,0.10672018676996,-0.087786220014095],[0.16070283949375,0.11010191589594,-0.2162364423275],[0.099942333996296,0.15385149419308,0.0022238760720938]],[[0.072220481932163,0.062257677316666,0.018802450969815],[0.086486726999283,0.03554979339242,-0.063358888030052],[-0.054576773196459,0.020346274599433,0.057511314749718]],[[-0.042257755994797,0.0038375582080334,-0.066122844815254],[-0.2121167331934,-0.059352315962315,0.013224430382252],[-0.04434035718441,0.081833846867085,0.032486144453287]],[[-0.080237716436386,0.0059825475327671,0.085508435964584],[-0.093480966985226,-0.049486193805933,-0.025800410658121],[0.010522077791393,-0.078703463077545,0.0014683913905174]],[[0.035976056009531,0.051347699016333,-0.045263521373272],[-0.084960781037807,-0.027089832350612,0.025478303432465],[0.099324777722359,0.020468534901738,-0.043726831674576]],[[0.0090461615473032,-0.0017859704094008,-0.080732747912407],[0.023518960922956,0.10690569132566,-0.033457554876804],[-0.054270531982183,-0.049939937889576,-0.0022592542227358]],[[-0.22964188456535,-0.012902423739433,-0.03739345818758],[-0.024738989770412,-0.07667975127697,0.03299418091774],[-0.10429614037275,0.083512678742409,0.11341409385204]],[[0.023314954712987,-0.24316276609898,-0.14013034105301],[-0.083302281796932,-0.10748343169689,-0.12594340741634],[0.074609853327274,-0.10147807002068,-0.047598127275705]]],[[[-0.0697126314044,0.053833764046431,0.034085065126419],[-0.10641815513372,0.044768039137125,0.047979671508074],[0.024957271292806,-0.023979429155588,0.14478659629822]],[[-0.074310004711151,-0.21622076630592,0.014038138091564],[0.17604111135006,-0.0039043028373271,-0.12782454490662],[0.026123639196157,-0.011528206057847,0.11055691540241]],[[0.049748796969652,0.067961029708385,-0.0086967321112752],[0.088998414576054,0.026534359902143,0.07989302277565],[0.013189494609833,0.088647060096264,-0.0051909345202148]],[[-0.091233439743519,0.12481788545847,-0.016057442873716],[-0.37829741835594,0.063321590423584,0.015394743531942],[0.11713068187237,0.016503356397152,-0.042050160467625]],[[0.074248962104321,0.0010626115836203,-0.026248933747411],[0.050879418849945,-0.019621757790446,-0.076703280210495],[-0.024496586993337,0.11350017040968,0.0021350265014917]],[[0.061531465500593,-0.12359099090099,-0.042794544249773],[-0.097817532718182,-0.062658071517944,-0.046540684998035],[-0.028994888067245,-0.086955808103085,-0.10755858570337]],[[-0.022037265822291,-0.090436138212681,0.001354060950689],[-0.021803813055158,-0.097895972430706,-0.18371075391769],[0.026887444779277,-0.062339439988136,-0.20595496892929]],[[-0.031794875860214,-0.0062591806054115,-0.10088549554348],[0.040003199130297,-0.091473959386349,-0.04798000305891],[-0.02311559766531,0.059442326426506,-0.054209843277931]],[[-0.041740268468857,0.00095099443569779,-0.029598116874695],[0.048607431352139,0.05730289593339,-0.0057763033546507],[0.011306406930089,0.01417869143188,-0.022333746775985]],[[-0.037883229553699,-0.038293849676847,-0.010668092407286],[-0.030702309682965,0.11530282348394,-0.050209861248732],[-0.056889940053225,0.068116597831249,0.022637257352471]],[[0.098171480000019,0.092558644711971,-0.003563912352547],[-0.1098929643631,-0.028701102361083,-0.030965769663453],[0.22032943367958,0.0087115243077278,0.042084764689207]],[[-0.12466695159674,-0.44501999020576,0.012667682953179],[0.074594996869564,-0.037408445030451,-0.022403815761209],[0.052552580833435,-0.053060628473759,0.062341973185539]],[[0.080794230103493,-0.050871502608061,-0.031860683113337],[-0.010567164048553,0.14856964349747,-0.05359860137105],[-0.12645137310028,-0.047664258629084,0.045404590666294]],[[0.044129531830549,0.015716679394245,0.011222943663597],[0.14780512452126,0.0090966327115893,-0.061662815511227],[-0.11648707836866,-0.0028791350778192,0.095501132309437]],[[0.056125435978174,0.11455602198839,-0.0016704258741811],[-0.063348226249218,0.014867832884192,-0.046802621334791],[0.0021614488214254,-0.20380221307278,-0.14191818237305]],[[0.050849974155426,-0.052448015660048,0.0196069534868],[0.1135745793581,0.037142600864172,0.066610842943192],[-0.026088491082191,-0.072103761136532,-0.033166546374559]],[[0.050636153668165,0.035300005227327,0.074251919984818],[-0.15688851475716,-0.23907166719437,-0.00022212347539607],[0.035004071891308,-0.21516336500645,0.051422841846943]],[[-0.026958603411913,-0.12044610828161,-0.026889700442553],[0.073653414845467,-0.0049456208944321,0.033540479838848],[-0.01490172278136,-0.028657395392656,0.13099691271782]],[[-0.0061921291053295,0.0046808212064207,-0.054067097604275],[-0.086475402116776,-0.03754898160696,-0.05599407851696],[0.10157599300146,0.042216014117002,0.029468363150954]],[[-0.12733760476112,-0.074419640004635,0.013808190822601],[-0.037068031728268,0.12166697531939,0.038628280162811],[0.013856835663319,0.062113158404827,0.1052608191967]],[[0.15273825824261,-0.10866576433182,0.013925996609032],[0.070500619709492,0.00082534406101331,-0.085938110947609],[0.075493402779102,0.029905881732702,-0.044000599533319]],[[0.09162162989378,0.0092824008315802,0.049020271748304],[0.13141421973705,-0.0029509656596929,0.12371104210615],[0.071289904415607,0.0040277880616486,-0.090216621756554]],[[-0.069526828825474,-0.035049501806498,0.015859877690673],[0.066381826996803,0.10931956022978,0.046007808297873],[-0.11144714057446,0.056464895606041,0.00041743816109374]],[[-0.011719049885869,-0.012915262952447,-0.016728926450014],[0.045069441199303,-0.30752527713776,-0.054064892232418],[0.064225859940052,0.053378973156214,-0.072507709264755]],[[-0.078704915940762,-0.069103270769119,-0.090626187622547],[0.019220476970077,0.067377336323261,0.015134155750275],[0.045074548572302,0.060747690498829,0.11856490373611]],[[0.036559347063303,-0.074987158179283,-0.0070511884987354],[0.16283212602139,-0.077093340456486,0.043509133160114],[-0.09437407553196,0.0049946852959692,-0.010917076840997]],[[0.024382574483752,0.075285412371159,-0.085010953247547],[0.20825868844986,0.014051190577447,-0.036176521331072],[-0.026526775211096,-0.074983663856983,0.012221932411194]],[[-0.0013545292895287,-0.056788321584463,0.099107176065445],[0.04273372516036,-0.05822766944766,0.006161033641547],[-0.11408794671297,-0.061405893415213,-0.12189513444901]],[[0.015234387479722,0.069367401301861,-0.018068639561534],[0.051247268915176,-0.12329456955194,-0.0047467602416873],[-0.062850259244442,-0.02895731665194,-0.087909430265427]],[[0.090838238596916,-0.079803049564362,-0.056338619440794],[0.010395185090601,-0.14175543189049,-0.024059677496552],[0.03716953843832,0.13540774583817,-0.095808140933514]],[[-0.13111539185047,0.1796028316021,0.0086611313745379],[-0.02856357768178,-0.031725738197565,0.022158872336149],[0.13797010481358,-0.016725789755583,0.071339949965477]],[[0.092119187116623,0.024593718349934,0.025656597688794],[0.011725685559213,0.009073500521481,-0.0073855994269252],[0.055401291698217,0.11638341844082,0.0069636828266084]],[[0.013015862554312,0.1010077893734,-0.048192650079727],[0.047135908156633,0.09877110272646,0.043681509792805],[-0.024043455719948,-0.13946843147278,-0.13693980872631]],[[-0.082462713122368,-0.12001357972622,0.071523860096931],[0.27555951476097,-0.0082098199054599,0.014143285341561],[-0.17393638193607,0.010910404846072,0.039646904915571]],[[0.029737839475274,0.099138282239437,0.10725631564856],[0.021303178742528,-0.16215197741985,-0.10185488313437],[0.08623319119215,-0.029107220470905,-0.19117079675198]],[[-0.29982575774193,0.041802484542131,0.020508177578449],[-0.00076080881990492,-0.0098751951009035,-0.019192337989807],[0.050345417112112,-0.019883420318365,-0.046766769140959]],[[0.05694380030036,0.062370032072067,-0.036086216568947],[0.19837966561317,-0.062275804579258,-0.10232127457857],[-0.13211564719677,-0.097734212875366,-0.10381187498569]],[[-0.033459309488535,-0.0075399996712804,-0.13148041069508],[-0.0048081711865962,0.026625806465745,0.035735324025154],[-0.094440385699272,0.10619033128023,0.18947909772396]],[[0.08925012499094,-0.12501049041748,-0.079839468002319],[-0.019004983827472,0.16526000201702,-0.024339212104678],[0.19215127825737,-0.15413101017475,-0.11766290664673]],[[-0.14092864096165,-0.0042614950798452,-0.12523417174816],[-0.047972962260246,-0.0051052886992693,0.015715958550572],[-0.033573258668184,0.085557326674461,0.12814424932003]],[[-0.14533510804176,-0.069947361946106,0.008329464122653],[-0.21057438850403,-0.33410736918449,-0.12767960131168],[0.18383711576462,0.15572254359722,-0.02815299294889]],[[0.10250346362591,0.007005128543824,-0.069265760481358],[-0.027389029040933,0.080711610615253,-0.0017310183029622],[-0.3266227543354,-0.1283220499754,0.011040097102523]],[[0.097395151853561,-0.14768035709858,-0.013055243529379],[0.054430589079857,0.17491561174393,0.046247370541096],[0.0088133132085204,0.080650493502617,-0.013175415806472]],[[0.052653681486845,0.006875064689666,0.088781625032425],[-0.034697975963354,-0.037714909762144,0.0083680599927902],[-0.023203976452351,-0.020446306094527,-0.03614604100585]],[[0.088228665292263,0.057615488767624,0.0050869258120656],[0.10683795064688,-0.030091820284724,-0.052058942615986],[-0.026378210633993,-0.11812061071396,-0.056983150541782]],[[0.17819590866566,-0.029379777610302,-0.018876003101468],[0.080289475619793,0.1278440207243,-0.030034802854061],[-0.0019436598522589,0.025898827239871,-0.0762679874897]],[[-0.12222412228584,0.06992831081152,-0.0285017285496],[0.030137039721012,0.027584232389927,-0.024717550724745],[-0.18412309885025,0.076741084456444,-0.071392312645912]],[[0.15024371445179,-0.017501767724752,-0.18253001570702],[0.075300365686417,-0.12768705189228,-0.18517439067364],[0.11366303265095,-0.049615059047937,-0.086022473871708]],[[0.01612333022058,0.032277140766382,-0.01959409378469],[-0.047706108540297,0.082278996706009,0.097210511565208],[0.062637679278851,0.025195132941008,-0.0007213723147288]],[[0.040670782327652,0.05581421777606,-0.042554195970297],[0.0082651367411017,0.12804906070232,-0.076982937753201],[-0.18179659545422,-0.055015597492456,0.063978634774685]],[[0.066986225545406,0.071563802659512,0.040587279945612],[0.062012974172831,-0.048388998955488,-0.048066955059767],[-0.05551166459918,0.059195056557655,-0.072843343019485]],[[-0.14384172856808,0.065075680613518,0.05071210116148],[-0.063509032130241,-0.05301458388567,-0.017005717381835],[0.11446694284678,-0.18292824923992,0.067561380565166]],[[-0.15399740636349,0.23054459691048,-0.018465083092451],[-0.059672988951206,-0.11176229268312,0.017448920756578],[0.026998624205589,0.0059678498655558,-0.047356504946947]],[[-0.057604819536209,0.093278460204601,0.088634051382542],[-0.30016070604324,-0.11261331290007,-0.0049712676554918],[0.036256957799196,-0.010259889997542,-0.14119428396225]],[[0.029909290373325,-0.040127471089363,-0.025235511362553],[0.12738406658173,-0.07228709757328,-0.063128359615803],[-0.040490008890629,-0.11846002936363,-0.22282512485981]],[[-0.19213201105595,-0.1821966022253,0.037425454705954],[0.084362246096134,-0.20058591663837,-0.24479082226753],[0.098351515829563,-0.071174375712872,-0.049276236444712]],[[-0.011671312153339,-0.0073275594040751,0.081027112901211],[0.020360644906759,0.10314427316189,0.015537716448307],[-0.00077445397619158,0.2171713411808,0.23907922208309]],[[-0.081989921629429,-0.040082532912493,0.025580577552319],[0.09598807990551,0.075350888073444,-0.087554484605789],[-0.012895633466542,-0.13216948509216,0.04006078466773]],[[0.055234022438526,0.039388056844473,-0.052068043500185],[-0.049830548465252,-0.11734855920076,0.051719963550568],[0.089957632124424,0.045629195868969,-0.020891210064292]],[[0.021989049389958,0.072837702929974,-0.016870304942131],[0.17791841924191,-0.027190905064344,-0.063786260783672],[0.020203096792102,-0.064485475420952,-0.13281397521496]],[[0.028362294659019,0.020050691440701,0.016030767932534],[0.045579694211483,0.019298592582345,-0.003821958322078],[-0.035561792552471,-0.1135905534029,-0.069262400269508]],[[0.11444386839867,0.0013287953333929,-0.049590084701777],[-0.02878780849278,-0.039644446223974,-0.04050924256444],[0.048587214201689,0.0030871743801981,-0.090643398463726]],[[-0.012133776210248,0.007148640230298,0.072424739599228],[0.13654436171055,-0.0095282876864076,-0.04920943453908],[0.07853052765131,0.05854582414031,0.037634771317244]],[[-0.16073790192604,0.068367570638657,0.011540859937668],[-0.1466266065836,-0.0080166989937425,0.05980958044529],[-0.23968431353569,-0.14574645459652,0.091190546751022]]],[[[-0.059582654386759,-0.0309839528054,-0.014383460395038],[0.022658875212073,0.062524951994419,-0.029863327741623],[0.0065577463246882,0.012213204056025,0.045027300715446]],[[-0.071879155933857,-0.16073542833328,0.075796969234943],[0.0012375373626128,0.053898219019175,-0.029111294075847],[0.030132753774524,0.032600678503513,0.19499260187149]],[[-0.027294915169477,-0.037414852529764,0.026599913835526],[0.038698621094227,-0.0073889982886612,-0.034137044101954],[-0.098836928606033,0.047993157058954,-0.063934236764908]],[[-0.10987639427185,0.17177778482437,0.10330960899591],[-0.064333260059357,0.26939916610718,0.0507907345891],[-0.019158810377121,0.094108015298843,-0.2221072614193]],[[-0.066149272024632,0.014781666919589,-0.057769794017076],[-0.00020466813293751,0.065483346581459,-0.032454822212458],[0.12936659157276,-0.080825179815292,-0.10908527672291]],[[-0.080802321434021,0.035032924264669,0.017670653760433],[-0.092447213828564,0.03516736254096,-0.01841109059751],[0.077370204031467,-0.15944582223892,-0.051889382302761]],[[-0.002091629197821,0.087533347308636,0.045671533793211],[-0.081390254199505,-0.010490084066987,0.035101193934679],[0.061649784445763,0.13761803507805,-0.12035727500916]],[[-0.13840916752815,-0.056825738400221,0.089079342782497],[-0.0055374624207616,0.0047501833178103,0.1386231482029],[-0.037292346358299,0.15559314191341,-0.02619824744761]],[[-0.031188307330012,0.049468349665403,0.027308039367199],[-0.022544438019395,-0.051271196454763,0.040492948144674],[0.0038695770781487,-0.0019069220870733,0.0055825775489211]],[[-0.05768658220768,-0.077705763280392,-0.17616313695908],[0.057147957384586,0.031303480267525,-0.11673258244991],[0.041601274162531,-0.093174368143082,-0.29321527481079]],[[0.029027720913291,0.097222119569778,-0.029166290536523],[-0.03884968534112,0.1120046377182,0.010090936906636],[0.004843823146075,0.11171977967024,-0.028945259749889]],[[-0.018720712512732,-0.026311105117202,0.06343886256218],[0.077288046479225,-0.27366346120834,-0.19493351876736],[0.032240193337202,0.057429954409599,-0.15733858942986]],[[0.12677146494389,-0.056375831365585,0.020709013566375],[0.018382128328085,0.1012100726366,-0.025787873193622],[0.070391438901424,-0.12913367152214,0.046287640929222]],[[-0.11041075736284,-0.10365430265665,0.080452643334866],[-0.017623687162995,0.083460867404938,0.094143882393837],[0.03565151616931,0.037051640450954,0.078210674226284]],[[-0.048456460237503,0.12411393970251,-0.12727206945419],[-0.073913119733334,0.086837127804756,-0.013376888819039],[-0.075201109051704,-0.0052743130363524,-0.029114991426468]],[[-0.035051967948675,0.023946061730385,0.03819603100419],[0.04780663177371,0.004420951474458,0.014036550186574],[-0.02706204354763,0.0042348653078079,0.039924308657646]],[[0.070334143936634,0.059413321316242,-0.060384348034859],[-0.032485567033291,-0.077946051955223,0.085404448211193],[-0.10629608482122,0.077003642916679,0.079705715179443]],[[0.012061354704201,0.037940539419651,-0.11488718539476],[0.045718591660261,-0.071386590600014,0.012063298374414],[0.067696586251259,-0.090096712112427,0.076376795768738]],[[0.051679346710443,0.04377368837595,-0.10978536307812],[0.031030898913741,-0.01389654353261,-0.10502579063177],[0.054867498576641,-0.040674477815628,0.083110369741917]],[[0.11917841434479,-0.060448586940765,0.068598300218582],[-0.093758642673492,0.096124395728111,0.11197030544281],[0.041434284299612,-0.082740798592567,0.18897086381912]],[[0.060898125171661,0.021111847832799,-0.082335382699966],[0.057745207101107,-0.045532066375017,-0.20316402614117],[0.044246345758438,-0.080998562276363,-0.010178783908486]],[[-0.12196578830481,-0.004883554764092,0.079191237688065],[0.054860133677721,-0.10437353700399,0.022719211876392],[-0.046753361821175,-0.092679232358932,-0.089070998132229]],[[0.010741497389972,-0.12091166526079,-0.011168272234499],[-0.004988947417587,0.072087414562702,-0.11914441734552],[0.08807872235775,-0.14069601893425,-0.087816916406155]],[[-0.05130922049284,0.076391957700253,0.1166569814086],[0.13697700202465,-0.29348999261856,-0.15813073515892],[0.04226702824235,0.036810871213675,-0.14317442476749]],[[-0.038559358566999,-0.025752076879144,-0.029738124459982],[-0.015079151839018,-0.020570496097207,-0.027647633105516],[-0.09419921040535,-0.010258920490742,0.092794001102448]],[[0.23527528345585,0.033299889415503,-0.12751521170139],[0.11968652904034,-0.077852867543697,-0.057191215455532],[0.045665696263313,-0.13695414364338,0.070998542010784]],[[0.14088568091393,0.06275499612093,-0.0345100723207],[0.0046330587938428,-0.019709970802069,0.0056757698766887],[-0.046113923192024,-0.1089410930872,-0.20409008860588]],[[0.023841692134738,0.080385789275169,-0.15261352062225],[0.0088533293455839,-0.013080785982311,0.03726327046752],[0.011032088659704,0.019776752218604,0.028887625783682]],[[-0.00084604282164946,0.011592350900173,0.10580798238516],[0.037263307720423,-0.079190351068974,0.0396673604846],[-0.015912689268589,-0.0020620960276574,0.11619777977467]],[[0.032572239637375,-0.054168090224266,0.0059393113479018],[-0.059441570192575,0.11430002003908,-0.050156977027655],[0.026541152969003,-0.064850509166718,-0.2089572250843]],[[0.088487349450588,0.018934745341539,-0.024239186197519],[-0.039825987070799,0.080596253275871,0.10170037299395],[-0.004002797883004,-0.090516045689583,-0.057757623493671]],[[-0.017129754647613,0.0033799982629716,0.011504340916872],[0.046863429248333,0.1004628688097,-0.018999788910151],[0.043380051851273,-0.1219220533967,0.07511742413044]],[[-0.044685568660498,-0.074801661074162,-0.036162603646517],[0.034069612622261,-0.073719762265682,0.078691259026527],[0.067328728735447,-0.095350123941898,-0.14496655762196]],[[-0.028434216976166,0.025266531854868,0.13154388964176],[0.029026111587882,-0.10220777988434,-0.082806751132011],[0.19219778478146,-0.024931207299232,-0.050744019448757]],[[0.053075421601534,-0.032126810401678,-0.048392079770565],[0.042679503560066,0.0062389224767685,-0.04482701048255],[0.017108654603362,0.029694933444262,-0.059324573725462]],[[-0.073631025850773,0.033701557666063,0.068523749709129],[0.068600885570049,-0.11474116891623,-0.081469044089317],[-0.092274382710457,-0.022172790020704,0.14288957417011]],[[-0.064340949058533,0.14374721050262,-0.042765900492668],[0.092865452170372,0.13081315159798,0.062420696020126],[0.0085897091776133,-0.035404287278652,-0.11863788962364]],[[0.050172448158264,-0.045631140470505,-0.01824345625937],[0.010868679732084,0.034376513212919,0.16322746872902],[-0.057502690702677,-0.0047515942715108,-0.091319359838963]],[[0.046680144965649,0.013284113258123,-0.073254093527794],[-0.085184387862682,0.10731709003448,-0.20881676673889],[0.038746859878302,0.065558329224586,0.080025151371956]],[[-0.035633999854326,-0.10132803022861,-0.057725086808205],[0.15332427620888,0.14702482521534,-0.028700191527605],[-0.076550170779228,0.03895877301693,0.047610834240913]],[[-0.025040809065104,-0.11494758725166,0.022589167580009],[0.027472112327814,-0.25614222884178,-0.026813980191946],[0.034245889633894,-0.03911979496479,-0.036208607256413]],[[0.002656003460288,-0.039669889956713,0.075193226337433],[0.046105623245239,0.028613464906812,-0.033139191567898],[0.08345989137888,0.14031095802784,0.15644308924675]],[[-0.0080430330708623,-0.03616851568222,-0.14452034235001],[-0.018814586102962,0.042932517826557,-0.069843858480453],[-0.0038823876529932,0.1437750607729,-0.027870694175363]],[[0.014061593450606,-0.041827451437712,-0.047723647207022],[-0.038876075297594,0.023958614096045,-0.023037612438202],[0.092430964112282,-0.0037373495288193,0.020394876599312]],[[-0.021987918764353,0.017666719853878,0.030259950086474],[0.07899846881628,-0.083460845053196,0.011627818457782],[0.022878499701619,-0.023527212440968,-0.16405218839645]],[[0.073487848043442,-0.074118994176388,-0.0067381463013589],[0.038814403116703,-0.0064060357399285,-0.053938541561365],[0.026666948571801,0.11246480047703,-0.15266904234886]],[[0.008947036229074,0.05644953623414,-0.096057437360287],[0.0098090516403317,0.11419253051281,-0.0077202934771776],[-0.16289888322353,0.024214589968324,0.020619608461857]],[[-0.09959401935339,0.017926678061485,0.024701861664653],[-0.039722457528114,0.0011749221011996,-0.056699816137552],[0.052220024168491,-0.088961638510227,-0.043798629194498]],[[0.045709870755672,0.094792895019054,0.0075300424359739],[0.021049346774817,0.034717865288258,0.010424400679767],[-0.14966417849064,-0.03159648925066,0.083962135016918]],[[0.0042857015505433,0.03701151534915,0.098094277083874],[0.080607801675797,0.054656695574522,-0.034421656280756],[0.12172468006611,-0.068603061139584,-0.20077322423458]],[[-0.050990466028452,-0.092547103762627,0.059401448816061],[0.04997380822897,-0.076312161982059,-0.06825315207243],[0.032277505844831,0.030166821554303,-0.031810767948627]],[[-0.099465698003769,0.1283613294363,0.050298321992159],[0.054516900330782,2.1198698959779e-05,-0.054218664765358],[-0.037820342928171,-0.1201982870698,0.015913059934974]],[[-0.05006730183959,0.022658903151751,0.021300107240677],[0.0077987303957343,0.036654055118561,0.012647580355406],[-0.0024868680629879,-0.089281365275383,-0.0012865458847955]],[[0.00082666840171441,0.088593550026417,-0.0027895588427782],[0.025798197835684,-0.14732937514782,0.049222242087126],[-0.033089641481638,-0.065855331718922,0.26783576607704]],[[0.080009542405605,-0.02146703004837,0.0086399652063847],[0.093154393136501,-0.057232450693846,0.097815379500389],[0.017983743920922,-0.17159602046013,-0.11264241486788]],[[-0.06915183365345,0.031431090086699,0.32293203473091],[-0.037402078509331,-0.013282650150359,0.032294034957886],[0.0025142626836896,-0.10296003520489,-0.064365670084953]],[[0.001057012588717,-0.014081811532378,0.11835658550262],[0.010954494588077,0.14611820876598,0.11933796107769],[0.10952633619308,-0.055942703038454,0.10669170320034]],[[-0.23328259587288,-0.051099341362715,0.040727887302637],[-0.10261634737253,-0.10756865888834,0.056106835603714],[0.12292014807463,-0.015358730219305,0.097044952213764]],[[-0.052771840244532,-0.046578247100115,-0.13202615082264],[-0.047027084976435,0.044141512364149,0.09891864657402],[0.072038494050503,0.027394186705351,0.26342669129372]],[[0.12987615168095,0.044719461351633,-0.0039186924695969],[-0.091103091835976,0.0656473711133,-0.012035800144076],[0.082791365683079,0.025898257270455,-0.15203514695168]],[[0.10869991779327,-0.042768590152264,0.064565233886242],[-0.10371426492929,-0.085393637418747,-0.11995045095682],[0.085755042731762,0.0072359009645879,-0.076277300715446]],[[0.077163621783257,-0.072437070310116,0.065047658979893],[-0.086358822882175,-0.055824998766184,0.044117551296949],[-0.021370649337769,-0.12000054121017,0.018665600568056]],[[-0.005101184360683,-0.063102342188358,0.053531780838966],[0.056038599461317,-0.050110917538404,0.035926640033722],[0.014239220879972,-0.11494724452496,0.070926807820797]],[[0.023821834474802,0.0291797965765,-0.051984924823046],[0.04882937297225,0.016299713402987,0.051911752671003],[-0.19839197397232,0.076970241963863,0.08118050545454]]],[[[-0.15991893410683,0.035723496228456,0.055051255971193],[0.039242278784513,0.02459792047739,0.055640198290348],[0.093914732336998,0.15762305259705,-0.052056767046452]],[[-0.029455298557878,0.072241611778736,0.16674722731113],[-0.13839529454708,-0.077646784484386,0.091035135090351],[0.05348201841116,0.06220780685544,-0.12769135832787]],[[0.064776860177517,0.048759087920189,0.091022938489914],[0.049643263220787,-0.014930575154722,0.027603158727288],[0.013780529610813,-0.18092322349548,-0.047882135957479]],[[-0.041174225509167,-0.068324707448483,-0.058739021420479],[0.054180964827538,-0.16964587569237,-0.094217151403427],[-0.19364352524281,-0.086167924106121,0.11660221219063]],[[0.089153774082661,0.032404784113169,-0.0038141659460962],[-0.011725376360118,0.0048689944669604,0.1122585311532],[0.071730926632881,0.074121184647083,-0.046004321426153]],[[-0.13938511908054,0.031598817557096,-0.027851976454258],[0.094070389866829,0.095029033720493,0.069536209106445],[-0.082300819456577,-0.05110352113843,0.090285412967205]],[[0.11629608273506,0.0021111569367349,-0.11010321974754],[0.14841546118259,-0.010539664886892,-0.1676229685545],[0.096562467515469,-0.19217143952847,0.031945060938597]],[[0.0056466879323125,-0.0080319233238697,0.084592171013355],[-0.040465284138918,0.039336122572422,0.0081219850108027],[-0.077934041619301,0.019081205129623,0.048209346830845]],[[0.030265158042312,0.032022558152676,0.039209198206663],[0.018896779045463,-0.053039010614157,-0.095142036676407],[0.012044766917825,0.0065506184473634,0.0005184676265344]],[[-0.0064520733430982,0.021624566987157,-0.1784391105175],[-0.0084102200344205,0.017161587253213,0.0026162990834564],[-0.037041667848825,-0.055552162230015,-0.039739076048136]],[[-0.07060918956995,-0.06657463312149,-0.092750996351242],[0.070951797068119,-0.036103613674641,0.0016286544268951],[0.0094407498836517,-0.0026037816423923,0.096618786454201]],[[-0.063028275966644,-0.1547369658947,0.094710670411587],[-0.2024795114994,-0.040034595876932,0.084098875522614],[-0.12287471443415,0.18841372430325,0.075708851218224]],[[-0.069500185549259,-0.022510396316648,0.055106803774834],[-0.066245719790459,-0.05931269749999,-0.01945742033422],[0.094370469450951,-0.15005598962307,-0.057204764336348]],[[-0.0092982463538647,0.035692363977432,0.045853406190872],[-0.13268998265266,-0.208351790905,0.036986265331507],[-0.026596009731293,0.088203206658363,-0.10585786402225]],[[0.060429319739342,-0.036248024553061,0.094564743340015],[0.0054269270040095,-0.046417467296124,0.0018513672985137],[0.11053088307381,0.015822976827621,-0.13967657089233]],[[-0.0044825891964138,-0.07995430380106,-0.069859609007835],[0.03287098929286,0.025885106995702,-0.0094458013772964],[0.01721416413784,-0.055312104523182,0.095616936683655]],[[-0.042443942278624,-0.071808077394962,0.13407270610332],[0.00024073946406133,0.023321436718106,-0.080473780632019],[0.073177054524422,-0.077337570488453,-0.10965945571661]],[[-0.12583330273628,-0.0019477418391034,0.046319857239723],[-0.013393400236964,-0.065326526761055,0.13014674186707],[0.10506452620029,-0.018401637673378,0.030682111158967]],[[-0.077019847929478,0.039597757160664,0.24491372704506],[-0.19337072968483,0.10331963002682,0.18418468534946],[-0.16131049394608,0.0045478488318622,-0.10997477173805]],[[-0.1634421646595,0.074394755065441,-0.069720901548862],[-0.081507854163647,0.047851160168648,0.1170072183013],[-0.020158067345619,-0.011804897338152,-0.17277619242668]],[[0.058871552348137,0.015157677233219,-0.14259673655033],[-0.11153367906809,-0.11693405359983,0.056064046919346],[0.016328586265445,-0.10189507901669,0.085040278732777]],[[-0.15810641646385,-0.053143288940191,0.10805182158947],[0.014013709500432,0.037548627704382,0.008011830970645],[-0.048815201967955,-0.0058431616052985,0.083947524428368]],[[-0.080480828881264,-0.14536574482918,0.023861026391387],[-0.15282864868641,-0.026128862053156,0.064047545194626],[-0.07299992442131,0.0039764894172549,0.1573775857687]],[[-0.068056710064411,0.032292444258928,0.0021622974891216],[0.10852412879467,-0.10467796772718,0.12698565423489],[0.021507719531655,0.021075624972582,0.08106255531311]],[[-0.046481043100357,-0.0064963037148118,-0.029813639819622],[0.10620342940092,0.11651607602835,0.028145227581263],[-0.016027752310038,-0.041013542562723,0.023494279012084]],[[-0.055247358977795,-0.028216250240803,-0.083910308778286],[-0.085281826555729,-0.052583269774914,-0.12107162922621],[-0.10578722506762,-0.20240923762321,-0.0035234214738011]],[[0.055353477597237,-0.11288914084435,-0.055539894849062],[0.055500503629446,-0.057685941457748,0.055720847100019],[-0.028807615861297,0.13207092881203,-0.085831105709076]],[[0.0012761548859999,-0.082073032855988,0.041193589568138],[-0.19161710143089,0.038765758275986,-0.024846373125911],[0.10065491497517,0.0024182852357626,-0.17619031667709]],[[0.060985241085291,-0.015667464584112,0.086597166955471],[0.10323895514011,-0.012563671916723,-0.12992851436138],[0.096630685031414,-0.056583024561405,-0.019477277994156]],[[-0.0067162490449846,0.064496539533138,0.16772778332233],[0.053170476108789,-0.11395766586065,0.052947446703911],[-0.038918755948544,-0.12691394984722,-0.076495930552483]],[[-0.064235918223858,-0.085094071924686,-0.031846322119236],[-0.14353872835636,0.0067705470137298,0.17192858457565],[-0.079652264714241,-0.040974669158459,0.23126764595509]],[[0.013765511102974,-0.024324990808964,-0.17394933104515],[-0.068220257759094,0.10449449717999,-0.0073442300781608],[-0.041793700307608,0.047935388982296,0.10220958292484]],[[-0.012505168095231,0.046188231557608,0.011006466113031],[-0.086855739355087,0.04722847416997,-0.032685410231352],[-0.038337875157595,-0.0012625299859792,-0.019320631399751]],[[-0.1950897872448,0.18080168962479,0.080683685839176],[-0.11148375272751,-0.064570732414722,0.0091448277235031],[-0.006326534319669,-0.092792212963104,-0.085440263152122]],[[0.1607458293438,0.093870535492897,0.14477531611919],[-0.076306253671646,0.054911211133003,0.036606196314096],[-0.16774095594883,-0.062252689152956,0.023708635941148]],[[-0.0037788106128573,0.039876811206341,-0.072721675038338],[-0.077793523669243,0.063201420009136,-0.088513307273388],[-0.026856580749154,-0.042605720460415,-0.021047543734312]],[[0.048245768994093,0.0063515165820718,-0.1005647778511],[0.064814358949661,-0.037035092711449,-0.063182346522808],[-0.12105467915535,-0.07181915640831,-0.074576877057552]],[[-0.14562129974365,-0.19531841576099,0.19809548556805],[-0.14675775170326,-0.12967374920845,0.1321836411953],[-0.14698950946331,-0.036399286240339,0.052423644810915]],[[-0.15818192064762,-0.14561659097672,0.055146396160126],[-0.086708769202232,-0.012470122426748,-0.021381806582212],[-0.15039257705212,0.02673226967454,0.15750612318516]],[[-0.029484568163753,-0.0089575555175543,0.011014917865396],[-0.034848384559155,0.0053558116778731,0.003307368606329],[0.00049192312872037,0.021087311208248,-0.11126884073019]],[[0.052263375371695,0.024345742538571,-0.020828349515796],[0.046087313443422,-0.136853992939,-0.0083780307322741],[-0.098051562905312,-0.039266590029001,0.090589746832848]],[[0.11462409794331,0.098019286990166,-0.047883331775665],[0.07065087556839,-0.068123146891594,-0.18186537921429],[-0.12385489791632,-0.21891088783741,-0.27288630604744]],[[0.0205033197999,0.068866141140461,0.096742652356625],[0.025301473215222,-0.14814880490303,-0.11191622912884],[-0.14485456049442,0.019243972375989,0.12993128597736]],[[0.054837379604578,0.045053225010633,0.068281397223473],[-0.067048065364361,-0.015123839490116,-0.066212423145771],[-0.05813442543149,0.073282428085804,-0.0075512258335948]],[[0.097572326660156,0.10839506983757,0.010062161833048],[0.016090754419565,-0.058815881609917,-0.045488271862268],[-0.072015278041363,-0.14622403681278,-0.1804334372282]],[[-0.04299084097147,-0.02517406269908,-0.11859578639269],[-0.048736959695816,-0.080073162913322,0.044099155813456],[-0.095138266682625,-0.032453045248985,0.036438062787056]],[[-0.055284779518843,0.075443722307682,-0.029662981629372],[-0.046449963003397,0.080045364797115,0.077993646264076],[-0.07696320861578,-0.055375587195158,0.059177812188864]],[[-0.018353307619691,0.030572509393096,-0.0059488648548722],[0.074008494615555,0.062697641551495,-0.16825278103352],[0.16477209329605,0.043329652398825,0.032099492847919]],[[-0.070387482643127,0.060886364430189,0.005062525626272],[-0.083784371614456,-0.0078778406605124,0.068101450800896],[-0.11586603522301,0.13857750594616,0.10357163101435]],[[0.0054284455254674,0.069660358130932,-0.015609784983099],[0.032153476029634,-0.020933302119374,-0.096164911985397],[-0.11787740886211,0.058962989598513,0.0050242128781974]],[[0.11249746382236,-0.091563664376736,0.059713717550039],[-0.010872558690608,0.00062297697877511,-0.028098471462727],[0.0079644480720162,0.074840657413006,-0.1516537964344]],[[0.056554295122623,-0.011362615972757,0.037625104188919],[-0.033083133399487,0.035413764417171,-0.0089252172037959],[-0.04383048415184,0.0095113394781947,0.05196325480938]],[[-0.061134546995163,-0.15697182714939,-0.01861128769815],[-0.045124497264624,0.040383089333773,-0.071694023907185],[-0.04864477366209,0.086853176355362,0.072032988071442]],[[-0.14525821805,0.0025937797036022,-0.016097094863653],[-0.15777064859867,0.058322373777628,0.071659006178379],[0.00088611518731341,-0.1439039260149,-0.016027610749006]],[[-0.012777237221599,-0.042911663651466,-0.030936539173126],[-0.075474001467228,0.012344791553915,-0.19561591744423],[-0.086649559438229,-0.074062936007977,-0.04044034704566]],[[-0.0041454532183707,0.028505444526672,0.031214328482747],[-0.013484999537468,-0.1925860196352,-0.0076204361394048],[0.0028415024280548,-0.059487495571375,-0.16176454722881]],[[-0.11887343972921,-0.0084273694083095,0.078435450792313],[-0.059823255985975,0.03190840035677,0.19244861602783],[0.011049366556108,0.030107736587524,0.11328457295895]],[[-0.053218375891447,0.052508488297462,-0.011984206736088],[-0.030883599072695,-0.17393754422665,-0.085749574005604],[-0.015708312392235,0.012672350741923,-0.096210815012455]],[[-0.031351216137409,0.062997333705425,-0.004794780164957],[-0.037618197500706,-0.036571923643351,0.064968310296535],[0.055602021515369,0.0028525681700557,0.0062545323744416]],[[0.080822393298149,0.12564037740231,0.15722312033176],[0.10057054460049,0.086593806743622,0.019153866916895],[-0.010935164056718,-0.017622092738748,-0.05014281347394]],[[-0.087927013635635,-0.044198039919138,0.026587586849928],[0.05359360575676,-0.022537497803569,-0.085034839808941],[0.021042741835117,0.081607297062874,-0.051362305879593]],[[0.090792164206505,0.098291732370853,0.010707725770772],[0.046351827681065,-0.0041258884593844,-0.016369054093957],[-0.069494463503361,-0.00022333201195579,-0.082490712404251]],[[-0.24976243078709,-0.1740690767765,-0.063331753015518],[-0.27467745542526,-0.13058896362782,0.0058119278401136],[-0.054030142724514,0.11924155801535,0.26937901973724]],[[-0.051730781793594,-0.0076360525563359,-0.060500141233206],[-0.11736742407084,0.029024599120021,-0.11262826621532],[-0.12455746531487,-0.0048323119990528,0.047274220734835]]]],"nOutputPlane":64,"kW":3,"kH":3,"bias":[-0.00588050018996,0.0008885528659448,-0.0057445778511465,-0.0035950150340796,-0.0015332452021539,-0.048650950193405,-0.0030352203175426,-0.0023438697680831,-0.0049941455945373,0.0018939082510769,-0.0030656384769827,-0.011646983213723,-0.0099629564210773,-0.005798801779747,-0.011946951970458,-0.0031217276118696,-0.010976647958159,-0.0047516878694296,0.0043024607002735,-0.0032059801742435,-0.0080632520839572,-0.0049681682139635,5.7128509070026e-05,-0.0015297307400033,0.0015176525339484,-0.0076840720139444,0.0010468447580934,-0.010081626474857,-0.0021154887508601,-0.0031456560827792,0.0029334740247577,-0.0034899509046227,0.0032497881911695,-0.0028147180564702,-0.0065538082271814,-0.054927051067352,-0.01054963003844,0.0020889812149107,-0.0014902936527506,-0.003754778765142,-0.0033093597739935,-0.0033519377466291,-0.0098138032481074,0.0025215896312147,0.0048941071145236,-0.012393111363053,-0.0053693554364145,-0.0033873543143272,-0.0011144878808409,-0.017202230170369,-0.0097322249785066,0.0021081063896418,-0.0035756335128099,-0.0051966747269034,-0.0016549455467612,-0.0036366453859955,-0.0067147053778172,-0.010736564174294,-0.0074983248487115,0.00012872797378805,-0.004280676599592,0.0043212152086198,-0.0056016431190073,0.0005356929032132],"nInputPlane":64},{"weight":[[[[0.057490475475788,0.024424266070127,0.0123131563887],[0.044238872826099,0.054165184497833,0.00040905419155024],[-0.023657182231545,0.045819412916899,0.056803204119205]],[[0.025098269805312,-0.0031940720509738,-0.030848115682602],[0.008911638520658,-0.032486744225025,-0.025963351130486],[-0.020227555185556,-0.0037898113951087,0.0012706907000393]],[[0.074432089924812,0.0063604894094169,-9.6284507890232e-05],[-0.079526036977768,-0.034771218895912,0.041900735348463],[0.088307298719883,-0.11181112378836,0.02748336084187]],[[0.030196918174624,0.065525971353054,-0.029654875397682],[0.047660797834396,-0.038515876978636,-0.012766025960445],[0.066562280058861,0.053421247750521,-0.075568400323391]],[[0.027825843542814,-0.034076027572155,0.015690747648478],[0.010821704752743,0.0083595179021358,0.048261016607285],[0.035233426839113,0.01177890598774,0.044977597892284]],[[-0.055702801793814,-0.077520847320557,-0.061925463378429],[-0.01161418389529,-0.14454047381878,-0.09969686716795],[-0.080800250172615,0.020730279386044,0.39606532454491]],[[-0.020549908280373,0.032465070486069,-0.028819024562836],[-0.035137470811605,-0.10957474261522,-0.026460880413651],[0.014653016813099,-0.044947620481253,0.04864951223135]],[[0.012006427161396,-0.011734962463379,-0.068662464618683],[-0.0099011724814773,0.02654417231679,0.039787832647562],[0.026894859969616,0.056056674569845,-0.019474068656564]],[[0.00658805295825,0.013640061952174,-0.075956515967846],[0.030958840623498,-0.054709959775209,0.016581788659096],[-0.025979811325669,0.020230315625668,-0.083015702664852]],[[0.0045374510809779,-0.052606347948313,-0.038639008998871],[-0.0029850178398192,0.018107647076249,0.011879061348736],[-0.034079525619745,0.038025170564651,0.0051992926746607]],[[-0.056552533060312,0.033428091555834,0.02742862328887],[0.0068782432936132,-0.0022884358186275,0.05497869104147],[0.019892385229468,0.034187104552984,0.064406290650368]],[[-0.022412111982703,0.022473536431789,-0.036384452134371],[-0.0079030031338334,-0.041935730725527,0.024744169786572],[-0.0077842087484896,-0.014374236576259,0.017363710328937]],[[-0.0032974982168525,-0.020477242767811,-0.026848437264562],[0.055415846407413,0.042664930224419,-0.028222614899278],[0.013534119352698,0.015323984436691,0.0066066198050976]],[[0.010767553932965,0.067542605102062,-0.002415593713522],[0.067257232964039,0.10126411914825,0.049768533557653],[0.010306227952242,0.028102241456509,0.027672164142132]],[[0.0064562293700874,0.014989290386438,0.022310078144073],[0.030560780316591,-0.029958231374621,-0.093896195292473],[0.0083921896293759,-0.097458556294441,-0.081351555883884]],[[-0.033287081867456,0.040691759437323,-0.0037188164424151],[-0.090744622051716,0.0096593517810106,0.10924032330513],[-0.03691204637289,0.028126608580351,-0.00065487017855048]],[[-0.012311868369579,-0.027831403538585,0.035293143242598],[-0.03675327450037,0.026084195822477,-0.0003201843064744],[-0.0013770778896287,-0.025969948619604,0.067314885556698]],[[0.051584471017122,0.049562133848667,-0.035351347178221],[0.019375065341592,0.027521701529622,0.031016688793898],[-0.019425548613071,-0.0085175130516291,0.017988182604313]],[[-0.083816275000572,0.05156509950757,-0.01202623359859],[0.016439139842987,0.052641656249762,-0.018962368369102],[-0.02639683149755,0.025602484121919,-0.091230764985085]],[[0.060908231884241,-0.025900181382895,0.058661621063948],[0.023653225973248,-0.10749370604753,0.020098509266973],[-0.06341340392828,0.0049540544860065,0.093887500464916]],[[0.10967432707548,-0.016219900920987,-0.015334856696427],[-0.06545601785183,-0.031196178868413,-0.016071271151304],[-0.040282692760229,0.022548081353307,-0.02813876606524]],[[-0.073507837951183,0.059289589524269,-0.061032675206661],[-0.033611331135035,-0.0031893302220851,0.038949109613895],[0.066117256879807,0.024883575737476,0.0092931222170591]],[[0.011387258768082,0.029768045991659,-0.032295849174261],[0.0026405754033476,0.044829584658146,-0.033475421369076],[-0.029859248548746,-0.029417298734188,0.047985099256039]],[[0.01310364343226,-0.0019607776775956,-0.0122737204656],[-0.035563327372074,0.072518013417721,0.019530007615685],[-0.017203064635396,-0.062778271734715,-0.088711626827717]],[[0.011615424416959,0.021802751347423,0.064195692539215],[-0.0036022081039846,-0.073359236121178,0.079825028777122],[0.014025915414095,-0.022880768403411,0.098528251051903]],[[0.036934982985258,-0.043688371777534,-0.021446827799082],[-0.0099521381780505,0.008855827152729,-0.063563510775566],[-0.035784896463156,-0.0018949622754008,-0.069608896970749]],[[0.018126748502254,0.058518696576357,-0.016778944060206],[-0.0031865194905549,-0.066646255552769,-0.04864801093936],[-0.049026668071747,-0.0082383044064045,0.050653260201216]],[[0.026749864220619,0.028257772326469,0.075704470276833],[-0.06150995567441,-0.043136823922396,0.0018623765790835],[0.04309618473053,-0.029822058975697,-0.06560655683279]],[[-0.048037022352219,0.0067984662018716,-0.0262232683599],[-0.06684735417366,0.051423795521259,-0.032804355025291],[-0.064779959619045,0.078842416405678,-0.092126175761223]],[[-0.10024490207434,-0.00091493740910664,0.014414214529097],[0.012855967506766,-0.022909330204129,-0.0068834717385471],[-0.0096503002569079,0.013863364234567,0.0031949991825968]],[[-0.00074354751268402,-0.049272757023573,0.02442342787981],[0.010396736674011,0.0017379871569574,-0.051287647336721],[-0.049824014306068,0.067909918725491,-0.063644461333752]],[[0.053592152893543,0.0082248579710722,0.061490826308727],[-0.070562213659286,-0.009929908439517,0.050609234720469],[-0.031831685453653,0.025508096441627,0.077215440571308]],[[-0.0089393397793174,-0.013663036748767,-0.096471913158894],[0.00384336640127,-0.023847486823797,-0.098366037011147],[0.040819313377142,0.012137997895479,0.0055614495649934]],[[-0.025651127099991,-0.031228262931108,-0.0040043103508651],[-0.018861625343561,-0.0027651425916702,-0.05550542101264],[-0.0096488911658525,-0.046935725957155,-0.10113690048456]],[[0.0043826154433191,-0.016593964770436,-0.01816220767796],[0.0061434167437255,0.0036661422345787,-0.011344153434038],[0.016752233728766,-0.0078065926209092,0.067526139318943]],[[0.072069771587849,0.14092692732811,-0.0006841272697784],[0.038020312786102,-0.037326920777559,-0.15227408707142],[0.0086456807330251,-0.068526245653629,-0.061083875596523]],[[-0.026125621050596,-0.049962982535362,-0.033507589250803],[-0.057458806782961,0.040792226791382,-0.092514619231224],[0.085379667580128,0.073058359324932,-0.036160461604595]],[[0.048712436109781,-0.0064395824447274,-0.058938771486282],[-0.062372919172049,0.04318818077445,0.034334067255259],[-0.066489949822426,-0.033247537910938,0.015830794349313]],[[0.023420488461852,0.0058820494450629,0.058108020573854],[-0.026669761165977,-0.038359675556421,0.0015968724619597],[0.010657757520676,-0.042091444134712,-0.020176127552986]],[[0.051668576896191,-0.05138898640871,0.10772652924061],[-0.064140819013119,0.00068346003536135,-0.01126957219094],[-0.0161407366395,-0.019176056608558,0.048012889921665]],[[0.058866448700428,-0.038210183382034,-0.054962132126093],[-0.038442071527243,-0.048889815807343,0.011876062490046],[0.0358070358634,-0.04786915704608,0.11352518945932]],[[0.0038925509434193,-0.098263874650002,-0.061889298260212],[-0.048672702163458,-0.086644016206264,0.15657563507557],[-0.026065360754728,0.023449001833797,0.016877923160791]],[[0.0031220603268594,0.030294295400381,-0.040436279028654],[0.030143849551678,-0.030166123062372,0.0018808012828231],[0.03501695767045,-0.024456890299916,-0.020894767716527]],[[0.030094727873802,-0.029359739273787,-0.010611729696393],[0.028032619506121,0.081811614334583,0.0085378531366587],[-0.010235127061605,-0.067359328269958,0.0056078489869833]],[[0.063608817756176,-0.10641438513994,0.012477664276958],[-0.048294708132744,-0.019357915967703,0.093706138432026],[-0.09554086625576,-0.18545468151569,0.088998936116695]],[[0.075658015906811,-0.0023660082370043,0.058632891625166],[-0.036627519875765,-0.068165957927704,-0.042745314538479],[-0.023930886760354,0.075908668339252,-0.0032120491378009]],[[0.0052124373614788,0.04598331078887,-0.035377740859985],[0.073252037167549,-0.042023103684187,-0.01953143812716],[-0.0037075493019074,-0.039215788245201,0.0085326256230474]],[[0.022535784170032,-0.048970781266689,-0.0472242385149],[-0.00030927485204302,0.023450057953596,0.10014520585537],[-0.022014789283276,-0.046125292778015,0.10822436213493]],[[-0.021631916984916,-0.05205625295639,-0.021020395681262],[0.016913620755076,0.016917113214731,0.025785116478801],[0.045778542757034,0.071696050465107,0.013874220661819]],[[0.092834569513798,-0.021773427724838,-0.084193624556065],[0.00080268643796444,0.075051724910736,-0.0066963508725166],[0.032783515751362,-0.004311163444072,-0.061106398701668]],[[-0.044177316129208,-0.036269266158342,0.011120396666229],[-0.0088857924565673,-0.0070412284694612,-0.015651861205697],[-0.020877115428448,-0.060435753315687,0.025608878582716]],[[0.031964797526598,0.015347635373473,0.040287367999554],[0.026118198409677,-0.061224263161421,-0.010450465604663],[0.045701757073402,0.045623760670424,0.080278061330318]],[[-0.0063673839904368,-0.059629004448652,-0.017277602106333],[-0.095323592424393,0.03365844860673,-0.042275190353394],[0.070890486240387,-0.01724780164659,0.054072812199593]],[[-0.032394893467426,0.0778439193964,0.045655839145184],[0.05728368461132,0.10090175271034,0.031390301883221],[0.067508645355701,0.02617753483355,0.09011796861887]],[[0.06373319029808,-0.039608605206013,0.00097788206767291],[-0.049176931381226,-0.015178821049631,-0.081582270562649],[-0.068346507847309,0.049371227622032,0.10296021401882]],[[-0.033421650528908,0.00046100449981168,0.044063609093428],[0.0054223691113293,-0.040919408202171,0.031071081757545],[-0.011423260904849,0.039888340979815,0.048153396695852]],[[0.0030145815107971,0.0050787497311831,-0.016938524320722],[-0.0013002631021664,0.037487212568521,-0.040346499532461],[0.009898011572659,0.06709835678339,-0.026408787816763]],[[-0.012832637876272,-0.02829422801733,0.038168858736753],[0.040014736354351,-0.012297215871513,0.025244139134884],[0.0090068988502026,-0.034721374511719,0.14560121297836]],[[0.026308793574572,-0.031174747273326,0.098475150763988],[-0.017727747559547,0.058107748627663,0.073428057134151],[-0.02524422109127,-0.023315483704209,-0.050139062106609]],[[-0.051358316093683,-0.0080450642853975,0.012129018083215],[-0.0023035989142954,-0.0010637373197824,0.050300426781178],[0.037877805531025,-0.01945005916059,0.083907723426819]],[[-0.012264456599951,0.0053733545355499,0.023043068125844],[0.011801825836301,-0.004133720882237,-0.011553588323295],[0.044437631964684,-0.056451205164194,0.053788248449564]],[[0.01317900326103,0.017722150310874,-0.0054724258370697],[-0.013614728115499,0.0036975510884076,-0.038834195584059],[0.025579111650586,0.056095857173204,-0.049222454428673]],[[0.039022546261549,0.030021831393242,-0.0081868125125766],[-0.068925559520721,0.006389997433871,0.022943884134293],[0.061004232615232,0.0593651086092,-0.079835422337055]],[[-0.040938638150692,-0.0041858167387545,0.015221467241645],[0.027779595926404,-0.021811448037624,0.020642280578613],[0.03584698215127,0.053056746721268,-0.039633218199015]]],[[[0.076001584529877,-0.035047128796577,-0.010594204068184],[-0.11570375412703,-0.039639748632908,-0.01226644963026],[-0.010238668881357,0.048394445329905,0.055595811456442]],[[0.014921276830137,0.0030122802127153,-0.0091522205621004],[-0.030323712155223,-0.014739056117833,-0.052096471190453],[-0.047472935169935,-0.019445788115263,-0.032108020037413]],[[-0.045681804418564,0.084475889801979,-0.0036383813712746],[-0.041429340839386,-0.039420887827873,-0.015286589041352],[-0.0021122288890183,0.036651756614447,0.019511202350259]],[[-0.048039074987173,-0.039812233299017,0.026195390149951],[-0.068071030080318,0.027530780062079,0.041500397026539],[-0.013479750603437,0.10074186325073,-0.037952907383442]],[[-0.01236835680902,-0.023888310417533,0.045660942792892],[-0.039715755730867,0.013965195976198,0.021863793954253],[0.02130570076406,-0.011293378658593,-0.025177968665957]],[[-0.11487065255642,0.12885531783104,0.022247202694416],[-0.046521548181772,-0.011421092785895,0.038009751588106],[0.076361030340195,-0.035222485661507,-0.052596967667341]],[[0.013309475034475,0.043695371598005,0.044596582651138],[-0.00019431153486948,-0.014151317998767,-0.023230101913214],[-0.02238960377872,0.0077471653930843,-0.0044370084069669]],[[0.044427376240492,-0.09182408452034,0.0020667747594416],[0.018005786463618,0.028559846803546,-0.11029657721519],[0.029240868985653,-0.016750641167164,-0.0017435136251152]],[[-0.042866095900536,-0.044136561453342,-0.080969385802746],[-0.016217045485973,-0.0028232363983989,0.018925102427602],[-0.012138810008764,0.009456449188292,0.024911085143685]],[[-0.0092808548361063,0.038901168853045,-0.0053901812061667],[0.0096672270447016,-0.056408856064081,0.044837713241577],[-0.011685584671795,-0.060510281473398,-0.0036262436769903]],[[-0.072069749236107,0.10075190663338,-0.007726286072284],[0.0051539693959057,-0.028985626995564,-0.014583325013518],[-0.00049265549750999,0.029074061661959,0.045626241713762]],[[-0.02698171697557,-0.028538813814521,0.026282867416739],[-0.044818595051765,0.093338049948215,-0.063049860298634],[0.039032060652971,-0.0047034132294357,-0.012151048518717]],[[0.040747798979282,0.029930716380477,-0.013875594362617],[-0.023138361051679,0.015293126925826,0.03849296271801],[0.016210775822401,0.033717475831509,-0.022860981523991]],[[0.10993317514658,0.028737904503942,0.075809665024281],[0.016917044296861,0.069706231355667,0.093133188784122],[0.0087267179042101,0.071017630398273,0.078666396439075]],[[0.049811068922281,0.0057391412556171,0.060913275927305],[-0.045413229614496,-0.013154337182641,-0.0082344245165586],[-0.048970736563206,0.084941171109676,-0.0065254885703325]],[[-0.043374534696341,-0.044468972831964,0.075683489441872],[-0.044041901826859,-0.0032980523537844,-0.078749127686024],[0.039492104202509,0.024146173149347,-0.035163968801498]],[[0.0072727170772851,0.059014119207859,0.029906870797276],[0.085096850991249,-0.0030156439170241,-0.052813492715359],[0.014498739503324,0.062247656285763,0.042857721447945]],[[-0.031966466456652,0.043435595929623,-0.036180432885885],[-0.0032204389572144,0.01808550581336,0.0003969999961555],[-0.04765771701932,-0.008316108956933,-0.015038033016026]],[[0.010556996800005,-0.054240871220827,-0.028096210211515],[0.026548629626632,0.065151773393154,-0.0037483449559659],[0.028831593692303,-0.017846267670393,-0.0075420956127346]],[[0.055528860539198,0.022472605109215,0.038179688155651],[0.014463484287262,0.044400259852409,-0.03959909081459],[0.010696165263653,0.016523890197277,0.023829665035009]],[[0.013382633216679,0.099862329661846,0.037011791020632],[0.066188186407089,0.053007669746876,0.085613653063774],[0.040229950100183,0.065342098474503,0.065585188567638]],[[0.12406566739082,0.071591258049011,0.10416403412819],[0.052012834697962,0.020713996142149,-0.054189786314964],[0.0086374180391431,-0.017035724595189,-0.05148783326149]],[[-0.040168981999159,0.051089573651552,0.030405044555664],[-0.029513042420149,-0.0033470736816525,-0.020011208951473],[-0.019505590200424,0.0084935845807195,0.029366200789809]],[[-0.067692212760448,-0.0028115527238697,-0.031853627413511],[0.053620018064976,0.061317548155785,0.0082301590591669],[0.028406808152795,0.057776249945164,0.0041500856168568]],[[0.017258247360587,0.02412579767406,0.030487459152937],[0.024941077455878,0.035355467349291,0.049309089779854],[0.042312074452639,0.064869828522205,0.010251152329147]],[[0.0024449117481709,-0.038698263466358,-0.060920111835003],[0.079011745750904,0.025520138442516,0.0098000569269061],[-0.0061045233160257,-0.068906299769878,-0.021286090835929]],[[0.081835217773914,0.15912927687168,0.037075355648994],[0.050009492784739,-0.041041154414415,-0.026835529133677],[0.016547165811062,0.076078072190285,0.01367358956486]],[[0.050990626215935,0.084809176623821,0.0087120030075312],[-0.012029067613184,0.01140099298209,0.011389424093068],[0.011996202170849,0.0021633966825902,-0.067712672054768]],[[0.026027070358396,-0.037743229418993,-0.029109703376889],[-0.033563192933798,0.14505948126316,0.015271024778485],[-0.018497131764889,0.015095601789653,-0.022868299856782]],[[-0.0038818411994725,0.034236267209053,-0.016793409362435],[0.0048258579336107,-0.052211407572031,0.05110065639019],[-0.040953278541565,0.04091763868928,-0.048531033098698]],[[-0.00087633897783235,0.024816377088428,0.068983778357506],[0.031323477625847,0.0026405295357108,-0.027586735785007],[-0.030233431607485,0.005136460531503,0.020865738391876]],[[0.037064716219902,-0.032893139868975,0.024604240432382],[0.048047311604023,-0.063135907053947,-0.06428200751543],[0.070198282599449,0.010813406668603,-0.066907644271851]],[[-0.00078768015373498,-0.012428839690983,0.014795464463532],[-0.041771717369556,-0.035935867577791,0.0079672811552882],[0.016553247347474,0.012628208845854,0.0048121851868927]],[[-0.039258375763893,0.061674412339926,-0.0013213388156146],[-0.016985403373837,0.012474372982979,-0.010906642302871],[-0.061470087617636,0.022822584956884,0.050112966448069]],[[0.011640098877251,0.019098134711385,-0.0073707224801183],[0.012246232479811,-0.020164838060737,0.012316794134676],[0.0025084570515901,-0.0049511874094605,0.0159478969872]],[[0.014089881442487,0.013874755240977,0.01123455259949],[0.087876334786415,0.0038307774811983,0.050798758864403],[0.041397549211979,0.083366349339485,0.0038361009210348]],[[-0.081435978412628,-0.025860801339149,0.044353079050779],[0.044931937009096,0.062384828925133,-0.031516723334789],[-0.076834164559841,0.039108272641897,-0.025755761191249]],[[-0.063875615596771,-0.065107576549053,0.03946565836668],[0.036038804799318,0.011281916871667,0.011473382823169],[-0.027833044528961,-0.047881118953228,-0.00044912900193594]],[[-0.054331578314304,0.026462694630027,-0.0048641716130078],[-0.023311676457524,0.043064188212156,0.019952237606049],[0.046234108507633,0.0128378784284,0.051372475922108]],[[-0.032131116837263,-0.047095607966185,0.061260554939508],[0.0094089023768902,0.0057638809084892,0.08026547729969],[-0.034581638872623,0.048514794558287,-0.009423547424376]],[[-0.0018390367040411,0.042707052081823,0.035168677568436],[-0.086217284202576,-0.001284314901568,-0.0083334911614656],[0.0034049476962537,-0.0043706749565899,0.069243215024471]],[[0.024217508733273,0.05957642570138,0.018953409045935],[-0.054424479603767,-0.028003308922052,0.023656552657485],[-0.074775174260139,-0.059420756995678,-0.012368637137115]],[[0.054068297147751,0.00024853623472154,0.026087632402778],[0.04525925591588,0.045344807207584,-0.056917995214462],[0.013968080282211,-0.036082848906517,0.044415105134249]],[[-0.090004779398441,-0.01679084263742,0.017087705433369],[-0.074183367192745,-0.014464252628386,-0.03108823299408],[-0.052172858268023,-0.046029336750507,-0.025815570726991]],[[-0.028445530682802,0.067278236150742,-0.080015167593956],[0.040256556123495,0.045156925916672,0.046255849301815],[0.055632952600718,0.063776411116123,-0.0077936947345734]],[[-0.0061384565196931,0.014811875298619,-0.0010442368220538],[0.052623249590397,-0.087609224021435,0.010867580771446],[0.056245587766171,-0.04827880486846,-0.0073603973723948]],[[0.056841846555471,0.023142317309976,0.00034730488550849],[-0.084812633693218,-0.010641809552908,-0.050144422799349],[-0.093891471624374,-0.011501139961183,0.011995618231595]],[[-0.019407449290156,0.029204288497567,0.029935117810965],[0.00060251553077251,-0.011105997487903,-0.022597415372729],[0.030905328691006,0.01764814183116,0.01815046556294]],[[0.027431953698397,0.015220132656395,-0.074286423623562],[0.025673896074295,-0.026122638955712,-0.031845811754465],[0.029999136924744,0.022457027807832,-0.041466344147921]],[[-0.0018126111244783,0.024236982688308,0.043796338140965],[-0.036407992243767,0.016082290560007,0.086982607841492],[-0.0017541726119816,0.040701799094677,0.033867366611958]],[[-0.011210050433874,0.047600619494915,0.030926495790482],[0.070717670023441,0.0032695170957595,-0.018878748640418],[0.046159964054823,0.021700376644731,0.027180410921574]],[[-0.053890828043222,-0.016962381079793,0.020409446209669],[-0.0029220425058156,0.080252952873707,0.019483499228954],[-0.0029218508861959,-0.068701513111591,-0.058820001780987]],[[-0.0078789470717311,0.011810553260148,-0.0092840669676661],[-0.067550525069237,-0.084661707282066,-0.027637595310807],[-0.037768684327602,0.034059155732393,-0.010984887368977]],[[0.07231293618679,0.053124032914639,0.049075543880463],[0.023025427013636,-0.034356199204922,-0.038567915558815],[0.082798078656197,0.018458301201463,0.063093714416027]],[[0.043225344270468,0.05863169953227,0.0081417206674814],[-0.011598602868617,-0.0057169036008418,0.0026183447334915],[-0.054890103638172,-0.09072034060955,-0.025888850912452]],[[0.053063310682774,0.025847712531686,0.014179385267198],[-0.010532055050135,-0.053594384342432,-0.016172295436263],[0.0098595842719078,-0.073609732091427,0.028756590560079]],[[0.046479217708111,0.0048531284555793,0.023845948278904],[0.053258806467056,-0.030541531741619,0.067425653338432],[0.059556789696217,0.03087273798883,-0.025934644043446]],[[-0.034663591533899,0.019199477508664,0.01063859090209],[-0.0058614751324058,-0.010312780737877,0.015344045124948],[0.020581094548106,-0.028495378792286,-0.063384413719177]],[[-0.074663236737251,-0.0062917335890234,0.054144650697708],[0.022893270477653,-0.055613432079554,0.028693513944745],[-0.035341300070286,0.04234204441309,-0.059511177241802]],[[-0.013758029788733,0.024706600233912,-0.0065731345675886],[0.011354397051036,-0.0078156795352697,-0.057399783283472],[0.075977973639965,0.025699354708195,-0.0017935201758519]],[[-0.041142880916595,0.02087421528995,0.0098937265574932],[-0.0073080016300082,0.084161154925823,-0.0052681202068925],[0.018928185105324,0.014529142528772,0.0038617651443928]],[[-0.04710466042161,-0.018741710111499,-0.018143936991692],[0.02847214601934,-0.034892991185188,0.060598526149988],[-0.068710550665855,0.00092793576186523,-0.021052688360214]],[[0.027599904686213,-0.015542006120086,0.023340161889791],[-0.0457593947649,-0.027708936482668,0.020159425213933],[0.010563572868705,-0.00091546337353066,-0.01426796708256]],[[0.089158467948437,0.017199609428644,-0.0040903622284532],[-0.048607304692268,-0.033998984843493,-0.034437876194715],[0.042959652841091,0.010017720982432,-0.16722247004509]]],[[[-0.012413115240633,-0.080788172781467,0.075208194553852],[-0.017946194857359,0.04908062890172,-0.081817768514156],[-0.028201309964061,-0.030215198174119,-0.056884743273258]],[[-0.014747873879969,-0.004369487054646,-0.12267760932446],[0.14598740637302,0.004118197131902,-0.073084607720375],[0.11058197170496,0.019867008551955,-0.00073571625398472]],[[-0.029553897678852,0.032861687242985,0.022905487567186],[-0.086838692426682,0.027879077941179,0.047357920557261],[-0.032921653240919,-0.089537002146244,-0.019484408199787]],[[0.034725703299046,-0.066271394491196,0.0053615309298038],[0.015336438082159,0.017348490655422,-0.074303887784481],[0.050444431602955,-0.04617803171277,0.00034223811235279]],[[0.021008471027017,-0.023051477968693,-0.11631751060486],[0.019113291054964,0.059901863336563,-0.047865904867649],[-0.0050919158384204,0.10034367442131,0.10300146043301]],[[0.095040522515774,0.051985066384077,-0.15398482978344],[0.059441812336445,-0.0024762318935245,-0.04812291264534],[0.070988066494465,-0.065808095037937,-0.026801759377122]],[[-0.022858668118715,-0.051089745014906,-0.032379042357206],[-0.014100470580161,0.0031510973349214,-5.799506106996e-05],[-0.0081695262342691,0.036945104598999,0.010663985274732]],[[-0.090874403715134,0.021122822538018,-0.023301403969526],[-0.015195964835584,-0.0075766588561237,-0.067875817418098],[0.032189603894949,0.044472634792328,0.03108018822968]],[[0.046134430915117,0.0008301087655127,0.13854099810123],[-0.004286898765713,-0.061038825660944,-0.030960423871875],[-0.029163060709834,-0.074211403727531,-0.057827711105347]],[[-0.015624117106199,0.046947330236435,-0.0654251947999],[-0.014410218223929,-0.031448692083359,-0.057276595383883],[-0.036939322948456,-0.0074456050060689,-0.01342711597681]],[[-0.082418575882912,-0.02677877061069,-0.035515613853931],[-0.040072053670883,-0.058623131364584,-0.039967346936464],[-0.0020556529052556,-0.039103794842958,0.08155432343483]],[[3.264627957833e-05,-0.056340359151363,0.015918679535389],[-0.059502001851797,0.015719842165709,0.090940929949284],[-0.050829965621233,-0.033260129392147,0.062521487474442]],[[0.02099883556366,-0.12561765313148,-0.095193199813366],[0.0087629435583949,0.021557053551078,-0.1298716366291],[0.06269446760416,-0.073537215590477,0.060832303017378]],[[-0.08032414317131,0.033155802637339,0.23084416985512],[-0.04957814514637,-0.0044194376096129,0.16417580842972],[-0.048637427389622,-0.060443393886089,0.11791327595711]],[[-0.10828337818384,-0.012159117497504,0.085033640265465],[-0.05006630718708,-0.0058378046378493,0.079067632555962],[-0.0054673557169735,-0.072540156543255,0.033747427165508]],[[-0.012386839836836,0.028175281360745,-0.12369927018881],[0.062430273741484,0.0062804953195155,-0.040804147720337],[0.066441632807255,0.065966308116913,-0.025873173028231]],[[-0.0060751624405384,0.034004610031843,-0.15133094787598],[0.0034938759636134,0.049189660698175,0.040016278624535],[0.020891709253192,0.033031389117241,0.070746131241322]],[[0.016242802143097,-0.025713481009007,0.00012786184379365],[0.028206774964929,-0.0032081068493426,-0.054707158356905],[-0.009268444031477,-0.0028498072642833,-0.093195073306561]],[[0.079303957521915,0.044221103191376,-0.0033597128931433],[-0.073350071907043,-0.022299002856016,-0.016900526359677],[0.10101042687893,-0.053053688257933,0.0054703117348254]],[[-0.044072151184082,-0.015288586728275,-0.088479742407799],[0.0066312062554061,0.0029862802475691,-0.034175124019384],[0.039076760411263,0.087199248373508,-0.015652460977435]],[[0.0020960748661309,0.047235038131475,0.094353705644608],[-0.078313209116459,0.006849417462945,0.029438011348248],[-0.012956949882209,0.052595783025026,0.00038804329233244]],[[-0.018611650913954,-0.060381736606359,-0.055270306766033],[0.016615090891719,0.1117532774806,0.024316010996699],[0.10249041765928,-0.078095965087414,0.049516279250383]],[[0.073300182819366,-0.045345768332481,-0.01385838072747],[0.066517487168312,-0.095564223825932,0.051176361739635],[0.048257376998663,-0.047462593764067,-0.027319245040417]],[[0.0021032171789557,-0.088011153042316,-0.018682429566979],[0.0029194690287113,0.048629131168127,-0.076162986457348],[-0.0039982292801142,0.033904399722815,-0.062946453690529]],[[0.040141891688108,-0.026892945170403,0.10656090080738],[0.066712334752083,-0.078974083065987,-0.024634478613734],[0.13086214661598,0.030041424557567,-0.06223663315177]],[[0.070537343621254,-0.093145839869976,0.018183510750532],[0.07569681853056,-0.068985112011433,-0.065127819776535],[-0.072577647864819,-0.0086749969050288,-0.063332781195641]],[[-0.028989048674703,0.12987631559372,0.021726839244366],[-0.1344209164381,-0.031457737088203,0.026963414624333],[-0.087557271122932,-0.076432980597019,0.032428532838821]],[[0.039902448654175,0.059066366404295,0.084311120212078],[-0.013923071324825,0.014763941988349,0.057640753686428],[-0.20265959203243,-0.049882184714079,0.043831840157509]],[[-0.072000451385975,-0.0028175951447338,0.090920671820641],[0.042408287525177,-0.0021161660552025,0.023047002032399],[-0.070880278944969,-0.000718071940355,0.059615220874548]],[[0.033234946429729,0.019245490431786,-0.024074450135231],[-0.042052157223225,0.028355374932289,-0.010419768281281],[0.014220654964447,0.011045228689909,-0.11947304010391]],[[0.030742067843676,-0.019734535366297,-0.015500189736485],[-0.096059568226337,-0.0077613452449441,-0.10993459075689],[0.037692923098803,-0.13000462949276,0.014395372010767]],[[-0.11328289657831,-0.053324077278376,-0.077485673129559],[-0.024600295349956,0.0053020915947855,-0.081289522349834],[-0.027070637792349,-0.018458360806108,-0.035116773098707]],[[-0.012017036788166,0.041447337716818,0.0093103097751737],[0.030651032924652,-0.051600869745016,-0.0051557682454586],[-0.067623667418957,-0.045041881501675,-0.047705978155136]],[[-0.0042177881114185,0.0098436065018177,0.018483135849237],[0.012555955909193,0.043068144470453,0.0065606278367341],[0.053057972341776,0.0033796883653849,-0.050633817911148]],[[0.0067485929466784,0.033967074006796,-0.048881780356169],[0.03207591548562,0.14811927080154,0.11695616692305],[0.026310091838241,-0.07200526446104,-0.0088133551180363]],[[-0.016949847340584,-0.052986387163401,-0.014042794704437],[0.052871473133564,-0.037012208253145,-0.017513865604997],[-0.062209155410528,-0.082288518548012,0.011828381568193]],[[-0.057032559067011,-0.04314186796546,-0.0048198481090367],[-0.0057567339390516,0.035066682845354,0.028766458854079],[-0.075949661433697,-0.056087784469128,0.073529727756977]],[[0.050930462777615,0.00045041742851026,-0.21107490360737],[-0.096825443208218,0.12782882153988,-0.014599597081542],[-0.068254813551903,0.10675617307425,-0.090709418058395]],[[0.12136184424162,0.025429144501686,-0.20354953408241],[0.073638968169689,-0.030485827475786,-0.099160335958004],[0.046445906162262,0.040656842291355,-0.047437254339457]],[[-0.069699205458164,-0.14708611369133,0.04192291945219],[0.080087304115295,-0.10949657857418,-0.032344318926334],[0.0031872214749455,0.060349211096764,0.069486245512962]],[[-0.0418361723423,-0.069187633693218,0.020586429163814],[-0.017767844721675,-0.020105550065637,-0.019997810944915],[-0.051595207303762,-0.016681049019098,0.043168518692255]],[[0.07344538718462,0.026433560997248,0.029348274692893],[-0.048808697611094,-0.066021241247654,0.059330698102713],[0.0079071512445807,-0.0034693786874413,-0.022950289770961]],[[-0.17031939327717,0.017583983018994,0.07914611697197],[-0.18480226397514,-0.020684165880084,0.10582471638918],[-0.15052285790443,-0.009097901172936,0.04648919776082]],[[-0.019619159400463,-0.013793743215501,-0.040941502898932],[0.10980585217476,-0.04495819658041,0.0018909765640274],[0.11639835685492,0.030559593811631,-0.042229175567627]],[[0.084166616201401,-0.13385842740536,0.037461172789335],[0.024532480165362,-0.11458371579647,0.0032884546089917],[0.048354931175709,-0.081907741725445,-0.015009638853371]],[[0.054619807749987,-0.016646087169647,0.015742583200336],[-0.041533194482327,0.14097189903259,0.018476853147149],[-0.015040128491819,-0.010658551938832,0.090430125594139]],[[-0.040822930634022,-0.11786327511072,-0.082480765879154],[-0.030158882960677,0.031949877738953,0.13288836181164],[0.05279678106308,0.033883087337017,0.13057337701321]],[[0.013791895471513,-0.049280311912298,0.02801620028913],[0.071624949574471,0.00015874071686994,-0.053658947348595],[0.043069038540125,0.00062526157125831,0.0026765202637762]],[[0.10068587958813,-0.0039387922734022,-0.032107274979353],[0.070421263575554,-0.027559839189053,0.033785346895456],[0.066937901079655,-0.01541952136904,0.029685541987419]],[[-0.059523209929466,-0.048675000667572,0.063705995678902],[-0.093122534453869,-0.049533478915691,-0.070076115429401],[0.017234301194549,-0.013884331099689,-0.04399236664176]],[[-0.074636183679104,-0.13160853087902,0.0085567338392138],[0.040224563330412,-0.010824274271727,-0.0085701672360301],[-0.072864629328251,0.047884739935398,-0.10112200677395]],[[0.033064126968384,0.0044832671992481,-0.093315921723843],[-0.043001186102629,-0.039680045098066,-0.063146837055683],[-0.0090628685429692,0.012153069488704,0.0033511309884489]],[[0.017457718029618,-0.025500945746899,-0.10571672767401],[0.042148876935244,0.09474416077137,0.093039229512215],[-0.011118145659566,0.0070659867487848,-0.025232806801796]],[[0.14577476680279,0.10074733197689,0.029681352898479],[0.00046071116230451,0.073363892734051,0.070232793688774],[-0.028536181896925,0.11875649541616,0.11336247622967]],[[0.018510220572352,-0.03684725984931,0.061352048069239],[0.058103423565626,-0.076099842786789,0.097281336784363],[-0.04638609290123,0.062437009066343,-0.044059790670872]],[[0.079930111765862,-0.11397644877434,0.036039020866156],[0.099073320627213,0.048611957579851,-0.18732810020447],[0.053239148110151,0.026912156492472,-0.13947463035583]],[[-0.10412476211786,-0.045454408973455,-0.0085813263431191],[-0.0041364748030901,-0.096032097935677,0.12023697793484],[0.0015946298372,-0.015473153442144,-0.075353391468525]],[[-0.015438437461853,-0.0070788222365081,-0.0076459408737719],[0.00070095720002428,0.032937474548817,0.030751006677747],[0.02147401124239,0.027945468202233,0.056647293269634]],[[0.025221701711416,-0.12080306559801,-0.054181911051273],[-0.023624576628208,-0.0023554635699838,-0.069561868906021],[-0.04748398438096,0.025287352502346,0.064333759248257]],[[-0.003552901558578,0.022759774699807,0.038975238800049],[-0.098116353154182,0.069501489400864,-0.013483219780028],[-0.0036865146830678,0.032836623489857,0.039109971374273]],[[-0.017491331323981,0.067678608000278,0.041755691170692],[0.11914586275816,0.021818311884999,0.043955110013485],[0.039733052253723,0.065153658390045,0.077158704400063]],[[-0.083501540124416,-0.092860512435436,-0.010773909278214],[0.036230258643627,-0.062916032969952,-0.075345851480961],[0.059590678662062,0.13459704816341,0.065098993480206]],[[0.0096689322963357,-0.069777794182301,-0.11585372686386],[0.14457567036152,0.037814617156982,-0.0030133444815874],[0.074888102710247,-0.033055175095797,0.090452998876572]],[[0.00024402307462879,0.058024197816849,0.037815924733877],[-0.052812181413174,-0.049548272043467,0.062980279326439],[0.031106473878026,0.016293417662382,0.14489133656025]]],[[[0.0378477871418,0.0092621613293886,-0.010442970320582],[0.0017048923764378,-0.019765503704548,-0.023555800318718],[-0.034771911799908,-0.045966174453497,0.042106151580811]],[[-0.0005781744257547,-0.026606122031808,-0.028296329081059],[-0.036931168287992,-0.019619727507234,0.021779173985124],[0.016489990055561,-0.0089608114212751,0.03480501845479]],[[-0.0025297387037426,0.016262959688902,-0.0002142947196262],[-0.032820329070091,-0.051772207021713,0.0076598734594882],[0.001832612673752,-0.019348032772541,-0.014738948084414]],[[0.0049750693142414,0.016312848776579,0.005139566026628],[-0.023016473278403,-0.058104127645493,0.019123347476125],[-0.011888199485838,-0.027629578486085,-0.0096592092886567]],[[-0.043978631496429,-0.0037786196917295,0.0024605074431747],[-0.0034649204462767,-0.017553804442286,-0.015522007830441],[-0.025474540889263,0.021653026342392,-0.04347861930728]],[[-0.0099364994093776,0.082878768444061,0.049177870154381],[0.054944686591625,-0.087928049266338,-0.00070754328044131],[-0.020643206313252,-0.099550291895866,0.091118164360523]],[[-0.037236232310534,-0.025712555274367,-0.019886173307896],[-0.018693394958973,-0.083400152623653,-0.023359874263406],[-0.030612900853157,-0.024476381018758,0.0075328219681978]],[[0.011284846812487,-0.0392991527915,-9.1565350885503e-05],[-0.030160155147314,-0.021198336035013,0.045702159404755],[-0.042990908026695,0.0027884361334145,0.026091601699591]],[[-0.054985851049423,0.052838258445263,-0.06243371963501],[0.092840977013111,-0.045294515788555,0.021298428997397],[-0.072499454021454,-0.064052358269691,0.013825138099492]],[[-0.017131842672825,0.024448838084936,0.043538823723793],[-0.017487980425358,0.018151950091124,-0.031137408688664],[-0.049013521522284,0.029025614261627,-0.0095005687326193]],[[0.018661106005311,-0.015250064432621,0.017178624868393],[-0.037339344620705,0.10362400859594,-0.02022816427052],[0.04093024879694,-0.013378052040935,-0.03121941536665]],[[0.043302103877068,0.056054938584566,0.010382763110101],[0.045094389468431,0.020348712801933,-0.022658031433821],[-0.079318404197693,0.021596759557724,-0.03346311300993]],[[-0.0049802400171757,-0.066830053925514,0.026381261646748],[-0.037038702517748,0.019195750355721,0.005337433423847],[0.043354164808989,-0.086642637848854,-0.033407565206289]],[[0.064628504216671,0.024014892056584,-0.014291755855083],[-0.052503395825624,0.043745290488005,0.03885730355978],[0.062256254255772,0.016853433102369,0.072475045919418]],[[-0.007163560949266,0.075114175677299,-0.034605573862791],[0.0051173930987716,-0.014829399995506,-0.030210947617888],[0.057245086878538,0.025287218391895,-0.050980012863874]],[[0.087708823382854,-0.055836264044046,0.048660635948181],[-0.039681531488895,0.047798603773117,-0.014841005206108],[0.045391205698252,0.019423715770245,0.0066167837940156]],[[0.058960933238268,0.0056986818090081,0.0164495985955],[0.010984904132783,-0.033840097486973,-0.0059390752576292],[0.081965833902359,-0.0093782441690564,0.060301776975393]],[[-0.0033281277865171,-0.017944486811757,0.0037532201968133],[0.028185231611133,-0.028417902067304,-0.0024687205441296],[0.011600221507251,0.066824898123741,-0.027531661093235]],[[0.075042694807053,-0.057668663561344,-0.020850015804172],[-0.025465937331319,0.017239775508642,-0.030507104471326],[-0.025747692212462,-0.045199800282717,-0.04103335365653]],[[0.00061651621945202,-0.044409830123186,0.01785784214735],[-0.0079820835962892,0.081500142812729,0.027940068393946],[-0.021692521870136,0.0028774789534509,-0.021966470405459]],[[0.013375032693148,-0.058416053652763,0.053605992347002],[-0.028424357995391,-0.004305912181735,0.06478064507246],[-0.04615181684494,-0.03374045714736,-0.028772609308362]],[[0.0027330741286278,0.011416057124734,0.012323667295277],[-0.021092040464282,-0.042930774390697,-0.12073644250631],[-0.018414497375488,0.0046191117726266,-0.01038421690464]],[[0.019394963979721,-0.007463438436389,0.011386101134121],[0.036967817693949,-0.032872594892979,-0.022142870351672],[-0.0052489559166133,0.042286202311516,-0.027207966893911]],[[0.015185870230198,-0.025712043046951,0.043397087603807],[-0.018624067306519,-0.0046179131604731,0.02010478451848],[-0.057490259408951,-0.051741912961006,-0.0078740529716015]],[[0.019779775291681,-0.028973177075386,0.076971001923084],[0.018316950649023,0.011539692990482,-0.051336515694857],[0.022147098556161,0.020521929487586,0.010386360809207]],[[-0.065125577151775,0.0026316719595343,0.017238292843103],[-0.031880229711533,0.019368899986148,0.017844216898084],[-0.011756080202758,-0.049835875630379,-0.0063430182635784]],[[-0.060335338115692,-0.027112998068333,0.0045359539799392],[-0.070566035807133,-0.013198859058321,-0.014015318825841],[-0.033652897924185,-0.12554335594177,0.0078732091933489]],[[0.024845764040947,0.043407823890448,0.013536333106458],[0.012162723578513,-0.0035719971638173,0.046579737216234],[-0.02780226059258,-0.061178706586361,0.031643930822611]],[[-0.0064532314427197,0.043718725442886,0.034895420074463],[0.011841280385852,0.024063682183623,0.0024416667874902],[-0.03934021294117,0.05706425756216,-0.04730374738574]],[[-0.0004995126510039,0.0028389585204422,-0.027678187936544],[0.015504684299231,0.0057510719634593,0.03202461078763],[0.035232990980148,-0.040830183774233,0.031082935631275]],[[-0.031543865799904,-0.049939431250095,-0.017311224713922],[0.029928497970104,0.0338494181633,-0.057092361152172],[0.038341492414474,0.017426013946533,-0.028042010962963]],[[-0.022292686626315,-0.0015640829224139,0.002769896062091],[-0.053065814077854,0.0025805835612118,0.018188171088696],[-0.03527444601059,-0.043330874294043,-0.047439828515053]],[[-0.051967699080706,-0.025586711242795,-0.024567009881139],[-0.034863382577896,-0.056497037410736,-0.0061998129822314],[0.026017628610134,0.035226535052061,-0.069862134754658]],[[-0.030758041888475,-0.010268647223711,-0.021386099979281],[-0.016529666259885,0.021738963201642,-0.027848402038217],[0.017886849120259,0.00096029322594404,-0.020744668319821]],[[-0.014625301584601,0.034309893846512,0.064553417265415],[0.056990090757608,-0.031467922031879,0.021007554605603],[0.024017825722694,0.019593507051468,0.032155726104975]],[[-0.052843108773232,-0.10102315247059,0.002232554834336],[-0.06305493414402,0.060106713324785,-0.061920769512653],[-0.02812665887177,0.006988599896431,-0.0026726231444627]],[[-0.011042230762541,-0.028306307271123,-0.010007176548243],[-0.069427080452442,0.019519275054336,-0.02520121075213],[0.019560091197491,-0.0034755000378937,-0.0022912516724318]],[[0.055070158094168,0.043891221284866,0.0048151048831642],[0.035980794578791,-0.0046742535196245,-0.010767039842904],[0.076005719602108,-0.01407596282661,-0.0028558103367686]],[[-0.040089786052704,0.0054939123801887,-0.014511542394757],[-0.046892441809177,0.042727820575237,-0.0021564103662968],[-0.06554239243269,0.006559357047081,0.029864197596908]],[[-0.047232497483492,0.052003484219313,-0.021119529381394],[-0.025347182527184,-0.032533057034016,-0.021507419645786],[0.045241069048643,-0.0076226498931646,0.046786766499281]],[[0.024046866223216,0.013396915979683,-0.010671720840037],[-0.042107589542866,0.015535130165517,-0.049122769385576],[0.0082067307084799,-0.028695788234472,-0.0078637981787324]],[[0.013369317166507,-0.0099102547392249,-0.042165815830231],[0.023190692067146,-0.011246816255152,0.042238272726536],[-0.10921137034893,-0.033688094466925,-0.024808591231704]],[[0.069051623344421,-0.010206047445536,-0.04859010130167],[-0.019808068871498,-0.038503218442202,0.048973869532347],[-0.044374465942383,-0.0010853641433641,-0.034595768898726]],[[-0.010495124384761,-0.040060631930828,-0.043785020709038],[0.0076914164237678,-0.014336483553052,-0.040503442287445],[-0.020816480740905,0.0328602604568,0.02994048409164]],[[0.070920690894127,0.0062434724532068,0.019798552617431],[0.051213528960943,0.015359071083367,-0.076381005346775],[-0.035226952284575,-0.052091866731644,-0.0094603020697832]],[[-0.017950389534235,-0.013582240790129,-0.014030901715159],[0.0039338935166597,-0.045699831098318,0.00066885282285511],[0.0063407928682864,-0.035719003528357,0.026940742507577]],[[-0.0031412981916219,-0.059693068265915,-0.03675502166152],[0.026585714891553,-0.0032582376152277,0.015683120116591],[0.017960833385587,-0.032264411449432,-0.025127600878477]],[[0.026719508692622,-0.0073591102845967,0.032308526337147],[0.052943680435419,-0.017513016238809,0.027759375050664],[0.013208421878517,0.0048290565609932,0.019879147410393]],[[0.08749944716692,-0.00082305166870356,0.0048064887523651],[0.015887841582298,-0.040466025471687,0.028756238520145],[0.039333704859018,-0.013730294071138,-0.050084758549929]],[[0.016494736075401,0.030144084244967,0.058114249259233],[0.00028260314138606,0.048367287963629,-0.020534561946988],[0.025436958298087,-0.01712117344141,0.0060952981002629]],[[-0.0045926417224109,0.00024599174503237,0.0073029370978475],[-0.0032473742030561,-0.071592003107071,-0.017908424139023],[-0.037616714835167,-0.030398171395063,0.027284583076835]],[[-0.034506395459175,0.029467107728124,-0.017946850508451],[-0.0090055344626307,0.054723080247641,0.028110150247812],[-0.036307562142611,-0.041462115943432,0.032512340694666]],[[-0.0048910593613982,0.03736162558198,-0.0100018652156],[0.023896459490061,-0.025076538324356,0.017237942665815],[0.0054325857199728,0.020068105310202,0.037430323660374]],[[0.025377092882991,-0.016593653708696,0.035975333303213],[-0.0057943211868405,0.03810527920723,0.14393420517445],[-0.017544712871313,0.033778879791498,0.052715998142958]],[[-0.031886544078588,0.028718519955873,-0.084422774612904],[-0.058666627854109,0.0036168619990349,-0.03202348202467],[0.046188868582249,-0.010947303846478,0.023295013234019]],[[-0.01681156642735,-0.033988185226917,0.051096323877573],[-0.056818034499884,0.031952958554029,0.016380669549108],[0.03688008710742,0.055047210305929,-0.044365711510181]],[[-0.045276157557964,-0.001854976057075,-0.0019579513464123],[0.012029820121825,-0.042198147624731,-0.054666474461555],[0.015557538717985,-0.069557853043079,-0.0053675081580877]],[[-0.019008085131645,0.019879573956132,0.0058516287244856],[-0.00030511248041876,0.010911383666098,0.039376985281706],[0.021910186856985,-0.051000878214836,0.044907171279192]],[[0.070484295487404,0.0029977159574628,0.045217879116535],[-0.033598888665438,-0.01645739376545,-0.033930242061615],[-0.050725564360619,-0.040963668376207,-0.0016365689225495]],[[-0.0087418276816607,0.0054589547216892,-0.017181100323796],[-0.027184717357159,0.024505883455276,0.046197269111872],[-0.0073842988349497,-0.024442473426461,0.004051607567817]],[[-0.0043336991220713,-0.0099246250465512,-0.076534636318684],[0.030487671494484,0.022861134260893,0.0051695620641112],[0.042504262179136,0.010768545791507,0.026036012917757]],[[0.018892236053944,0.032792780548334,-0.01604924723506],[0.012842862866819,-0.015529336407781,-0.036894574761391],[-0.010737878270447,0.016369849443436,-0.015828935429454]],[[0.028557721525431,0.034873262047768,-0.024583596736193],[-0.008492598310113,-0.040578536689281,-0.088891640305519],[0.035511802881956,0.0021921850275248,0.024031857028604]],[[0.026276184245944,-0.024706639349461,-0.0010748144704849],[0.0054453876800835,-0.03950534760952,-0.022048804908991],[0.015724623575807,0.0048704678192735,-0.068768344819546]]],[[[-0.090405337512493,-0.08327142894268,0.012231545522809],[0.072671554982662,-0.084848664700985,0.015419121831656],[-0.055181697010994,0.052773304283619,-0.017149038612843]],[[-0.018483996391296,-0.0039949603378773,0.017679911106825],[-0.022341633215547,-0.010830094106495,0.021001180633903],[0.032568465918303,0.025442631915212,0.040177896618843]],[[0.021965350955725,0.0088453134521842,-0.0057560973800719],[-0.013174623250961,-0.0069264564663172,0.03519830852747],[0.02390113286674,-0.034673053771257,0.037068352103233]],[[0.01124669611454,0.033896569162607,-0.01806678622961],[-0.012200707569718,0.058063488453627,-0.028485650196671],[0.0018367229495198,0.024696983397007,0.0054996162652969]],[[0.0095249777659774,-0.020969055593014,0.074821695685387],[0.069920837879181,0.035355508327484,-0.0024655242450535],[-0.037781294435263,0.037168901413679,-0.00026993849314749]],[[0.043470270931721,-0.045877274125814,0.025617867708206],[0.033350400626659,-0.14461220800877,0.031311377882957],[-0.13175339996815,0.053961023688316,-0.0038760206662118]],[[0.032649409025908,0.026594901457429,0.003837933531031],[-0.015487897209823,-0.015478626824915,-0.018938617780805],[-0.049473088234663,0.020135931670666,-0.020317735150456]],[[0.028217263519764,-0.040279485285282,0.052315577864647],[-0.072869755327702,0.044703595340252,0.032002173364162],[-0.018465360626578,0.045732740312815,-0.033690914511681]],[[-0.034798387438059,0.068744324147701,0.0042188079096377],[0.0008965750457719,0.004292203579098,-0.010042279958725],[-0.012877762317657,-0.048472344875336,-0.031784247606993]],[[0.032632194459438,0.012378616258502,0.025014599785209],[0.049319107085466,-0.0034235797356814,0.026786006987095],[-0.12374355643988,0.012224681675434,-0.028059786185622]],[[0.0039601102471352,-0.072479322552681,0.011381587944925],[0.078828878700733,-0.044570088386536,0.035147853195667],[0.011672391556203,-0.044968783855438,-0.023619057610631]],[[0.059015572071075,0.015334035269916,0.040230095386505],[-0.0085247186943889,-0.009558486752212,-0.014481606893241],[0.0044879890047014,0.035464238375425,0.055236663669348]],[[0.045097310096025,-0.0019243503920734,0.038025051355362],[-0.0021869598422199,0.042780801653862,0.018494958058],[0.0082880072295666,0.029554329812527,-0.031627759337425]],[[-0.011028966866434,-0.0065623563714325,-0.0046843132004142],[-0.023444918915629,-0.056747104972601,0.023994542658329],[0.090705625712872,-0.035553511232138,0.032807338982821]],[[-0.019166201353073,0.060276638716459,-0.11997456103563],[0.018316278234124,0.03276876360178,-0.061697036027908],[0.020409064367414,0.045646224170923,0.028097515925765]],[[-0.0031541646458209,0.035233292728662,-0.016646932810545],[0.021933630108833,0.066177174448967,-0.029627729207277],[-0.0019857042934746,0.034688528627157,0.057580087333918]],[[0.0043372535146773,-3.5023418604396e-05,0.015930654481053],[0.013393893837929,0.00024798908270895,0.037395697087049],[-0.006159114651382,-0.046803422272205,-0.021647268906236]],[[0.0016887977253646,0.021257219836116,-0.036401655524969],[-0.0022739970590919,0.02401814609766,0.058204911649227],[-0.0033925690222532,0.085349693894386,-0.0066301925107837]],[[0.011308374814689,0.040076538920403,0.040568500757217],[-0.042577613145113,-0.0083967605605721,0.005754895042628],[-0.017331359907985,-0.0099558709189296,-0.027916653081775]],[[-0.058609448373318,-0.041456181555986,0.053424086421728],[-0.033604633063078,-0.0048035513609648,0.018712129443884],[-0.023528128862381,-0.069320574402809,-0.0030774758197367]],[[-0.0037861759774387,-0.0050520007498562,-0.040720742195845],[0.066968977451324,0.032961033284664,0.050128154456615],[0.078239992260933,-0.016333056613803,-0.021251918748021]],[[0.029747208580375,0.028941243886948,0.036134365946054],[-0.0078150387853384,-0.022482326254249,-0.0058384374715388],[0.043017279356718,-0.029311537742615,0.011351643130183]],[[-0.010085425339639,0.03412326797843,0.009527588263154],[0.0022058133035898,-0.011550275608897,0.013695881702006],[-0.0040353462100029,0.023384146392345,-0.034922890365124]],[[0.0055963378399611,-0.027707414701581,0.0097073893994093],[0.0047543300315738,0.031577449291945,0.024283464998007],[-0.032742865383625,0.003588346298784,0.016388051211834]],[[0.0085505181923509,0.047717090696096,-0.0036450659390539],[0.070195019245148,-0.013776659965515,0.015724891796708],[-0.032393492758274,0.072383023798466,-0.01663975045085]],[[-0.063767328858376,-0.015907978639007,-0.0012034572428092],[0.0060170758515596,-0.059618204832077,-0.011455199681222],[-0.015042586252093,-0.071312248706818,0.061076287180185]],[[0.031706504523754,0.040995806455612,0.026122584939003],[0.010567024350166,2.108344779117e-05,0.014549752697349],[-0.018238384276628,-0.0072755222208798,-0.04404815658927]],[[0.042667239904404,0.052132479846478,0.016739619895816],[-0.073327511548996,0.13683119416237,0.015378448180854],[-0.037099778652191,0.056467186659575,0.033905308693647]],[[0.0085869235917926,0.014006963931024,-0.012241600081325],[-0.0037217140197754,-0.03052187897265,-0.0049811573699117],[-0.0094611663371325,-0.0038697635754943,-0.02029930613935]],[[0.018248347565532,0.02343319542706,0.05123870074749],[-0.010220781899989,0.052490208297968,-0.066288322210312],[-0.018028240650892,0.028976745903492,0.0063834162428975]],[[0.030754068866372,-0.044125210493803,-0.060638412833214],[0.019785534590483,-0.039905574172735,0.056402675807476],[-0.07773531973362,-0.02188977599144,-0.053030699491501]],[[-0.047312058508396,0.037716031074524,-0.032617505639791],[0.0090831145644188,-0.02297668159008,0.02322568744421],[0.0061373156495392,0.026901144534349,0.052874177694321]],[[-0.013522759079933,0.014133575372398,-0.060073468834162],[-0.030592760071158,-0.030319822952151,-0.023468898609281],[0.020368812605739,0.032823100686073,-0.025453003123403]],[[-0.0060868496075273,0.05844172462821,0.027358032763004],[-0.029936879873276,-0.050611633807421,0.03595108166337],[-0.010729776695371,-0.013918776996434,0.030843045562506]],[[-0.021571969613433,-0.04475025832653,0.022531595081091],[-0.030596634373069,0.011212135665119,0.0084749516099691],[-0.014444892294705,0.014685215428472,0.012537827715278]],[[-0.0390814691782,-0.0065097738988698,0.0081003084778786],[-0.0122837042436,-0.050529181957245,0.088302657008171],[-0.074888318777084,-0.033800952136517,-0.053096536546946]],[[-0.011882148683071,0.036067016422749,-0.0017514368519187],[-0.014798450283706,-0.0034044699277729,-0.042724121361971],[-0.035599261522293,0.031530633568764,-0.023615449666977]],[[-0.0036681815981865,0.014444566331804,0.042025700211525],[-0.00095671159215271,0.014228967018425,-0.065594360232353],[0.022803824394941,0.077279627323151,0.046020530164242]],[[0.011592566035688,-0.037551324814558,0.011087494902313],[-0.025202054530382,0.015100577846169,-0.066738925874233],[-0.016916774213314,-0.019111292436719,0.025468867272139]],[[0.028581021353602,-0.0038508649449795,0.0031775441020727],[-0.017729571089149,0.014188441447914,0.042255017906427],[0.02074614726007,0.027348522096872,0.026824371889234]],[[0.048161927610636,-0.0096387797966599,0.08308169990778],[0.070562034845352,-0.021267078816891,0.020909633487463],[-0.06557035446167,-0.02576782181859,0.064991004765034]],[[-0.025494603440166,-0.049610715359449,-0.082050390541553],[-0.069938167929649,-0.0073545281775296,-0.041028708219528],[0.086802013218403,0.026554128155112,-0.018413467332721]],[[0.023846503347158,-0.083536803722382,0.010456406511366],[-0.083038158714771,0.027272589504719,-0.094736911356449],[0.047838617116213,-0.014611550606787,-0.070040516555309]],[[-0.032461501657963,-0.017099002376199,-0.0091019626706839],[-0.030903166159987,-0.0346036888659,-0.05005244165659],[0.0083918096497655,-0.027360327541828,-0.028524210676551]],[[-0.03012621961534,0.035370465368032,-0.041734267026186],[-0.033071629703045,0.00085205980576575,-0.015411276370287],[-0.051338158547878,0.08661986887455,-0.043151933699846]],[[-0.088032774627209,-0.027575336396694,-0.0045401179231703],[0.043855749070644,-0.010681104846299,0.019144395366311],[0.060543671250343,0.041183952242136,0.053635355085135]],[[-0.035849060863256,-0.003285160753876,0.030302980914712],[0.03167737647891,-0.040256179869175,0.01970311999321],[-0.027899099513888,-0.015515984036028,-0.0047459425404668]],[[-0.052842766046524,0.033097960054874,-0.025693088769913],[0.071832999587059,-0.044465910643339,-0.033663339912891],[0.042621046304703,0.014235018752515,0.026378044858575]],[[0.017869554460049,0.0055591254495084,-0.0010267958277836],[-0.047786977142096,0.025684440508485,0.11140092462301],[0.050868809223175,0.042678847908974,-0.0016400933964178]],[[0.043772719800472,0.010403786785901,0.035105515271425],[0.029377486556768,0.01870702393353,-0.040272582322359],[-0.045387182384729,0.022544035688043,0.023880910128355]],[[-0.011768560856581,0.04577761515975,0.0024218074977398],[0.0032811933197081,-0.019776510074735,-0.039765574038029],[-0.0053030485287309,-0.022796120494604,0.019279139116406]],[[-0.10799216479063,0.0073072728700936,-0.052902951836586],[0.010605207644403,0.0037704217247665,0.030468132346869],[0.022731877863407,0.01986444927752,0.027324756607413]],[[0.0084978844970465,-0.028981877490878,0.025844682008028],[0.00067079224390909,-0.043543513864279,0.064894862473011],[-0.039780139923096,0.017139058560133,-0.010495875962079]],[[0.008651508949697,0.0085455337539315,0.083030045032501],[0.078621491789818,0.078698568046093,0.024586502462626],[0.14876346290112,0.024653900414705,0.043646465986967]],[[0.042486768215895,-0.0034684229176491,-0.0077151227742434],[-0.045201864093542,-0.034738719463348,-0.03193037211895],[-0.083147399127483,-0.050775650888681,0.029993809759617]],[[0.027309807017446,-0.01444991491735,-0.055578246712685],[0.044668830931187,-0.0020604587625712,-0.010796041227877],[0.0197828207165,-0.0036269112024456,-0.022205092012882]],[[0.01295814756304,0.040829814970493,0.027431486174464],[0.037504483014345,0.075250126421452,0.018317544832826],[-0.0096179628744721,-0.024526439607143,0.0056769349612296]],[[0.012995040044188,-0.0082941921427846,0.021254613995552],[-0.023001665249467,-0.016530768945813,0.019921666011214],[-0.0027549020014703,-0.017929017543793,0.029610082507133]],[[0.074704796075821,0.0888437256217,0.012534423731267],[-0.025087613612413,0.012405311688781,-0.068776473402977],[0.013153814710677,-0.0026795957237482,0.029577860608697]],[[-0.015241417102516,-0.023756733164191,0.0011776401661336],[0.050509914755821,0.046187233179808,0.0074480129405856],[0.0043408046476543,-0.0070877755060792,0.027974648401141]],[[-0.014985009096563,0.056651689112186,-0.020954124629498],[0.032449435442686,0.03211135789752,0.071799285709858],[-0.049076110124588,-0.017973178997636,-0.024985367432237]],[[0.034869439899921,-0.018075343221426,0.021911403164268],[0.00095959840109572,-0.014471691101789,-0.038876745849848],[0.042164072394371,0.059566918760538,0.011539376340806]],[[0.050215419381857,-0.0621845908463,0.047989018261433],[0.028165573254228,0.04024887830019,0.00072575605008751],[-0.012672803364694,-0.013446716591716,0.015081881545484]],[[0.035849567502737,-0.044357262551785,-0.0074148494750261],[-0.038107473403215,-0.037266418337822,0.026915026828647],[0.062007933855057,-0.031920060515404,-0.030822925269604]]],[[[-0.066405944526196,0.084853194653988,-0.028098497539759],[-0.054188165813684,-0.012551613152027,-0.007440138142556],[0.026156907901168,0.0043909037485719,-0.020510686561465]],[[-0.079399041831493,0.010145355015993,0.030317896977067],[-0.0080886483192444,0.046954825520515,-0.0099192634224892],[0.053752884268761,0.040438901633024,0.054758362472057]],[[-0.067945286631584,0.010957774706185,-0.022320447489619],[0.055731028318405,0.010454173199832,-0.14644214510918],[0.084981828927994,0.040822774171829,-0.12371415644884]],[[0.0093382149934769,-0.034247372299433,-0.013533229008317],[-0.00010518769704504,0.0047100782394409,-0.097716845571995],[-0.010104929096997,0.0085992161184549,-0.013993978500366]],[[0.03532987087965,-0.038873109966516,0.0017847893759608],[-0.0032277286518365,-0.00044062320375815,0.072054296731949],[0.081269204616547,-0.018054816871881,-0.085912495851517]],[[-0.0095150964334607,0.055456757545471,0.04711727052927],[-0.012044223956764,-0.10139410197735,-0.054228894412518],[-0.028018556535244,0.018487619236112,-0.048171650618315]],[[-0.025764100253582,-0.061031349003315,0.00091266876552254],[-0.010483651421964,0.012764996849,-0.027275061234832],[0.021983861923218,-0.06031483784318,-0.012009904719889]],[[0.0062124668620527,-0.066223487257957,-0.03506001457572],[-0.042296424508095,-0.12837144732475,-0.058456886559725],[0.016768418252468,-0.02963705919683,0.063084550201893]],[[0.050094835460186,0.047048326581717,0.077352799475193],[0.073804438114166,-0.0030428229365498,-0.080843403935432],[0.02773973532021,-0.062936969101429,0.050057895481586]],[[-0.046653289347887,-0.0070525230839849,-0.073941104114056],[-0.00032927969004959,-0.066559709608555,0.007625506259501],[0.008259448222816,0.019940752536058,-0.077865868806839]],[[-0.043154437094927,-0.020727477967739,0.040210530161858],[0.048681549727917,0.022977711632848,0.025364447385073],[-0.073251456022263,-0.046612612903118,-0.011212079785764]],[[-0.017178185284138,-0.023719977587461,-0.016477851197124],[-0.044060435146093,-0.029950100928545,-0.00068722560536116],[0.00013098304043524,-0.076589532196522,-0.02922972291708]],[[-0.021823631599545,-0.05302669852972,-0.00082947127521038],[0.0013802110916004,-0.079611867666245,0.0099012786522508],[-0.11276438832283,-0.04115542024374,-0.12234708666801]],[[0.044419080018997,-0.023257043212652,-0.036972749978304],[0.030837053433061,0.055650893598795,0.040477823466063],[0.0059099718928337,-0.031339518725872,0.023027334362268]],[[-0.010767413303256,-0.079616099596024,0.048204407095909],[0.0061254468746483,-0.052259437739849,-0.0090928310528398],[-0.016330854967237,-0.03076745569706,-0.13671410083771]],[[0.037263110280037,-0.0045494688674808,-0.012374968267977],[-0.039152979850769,-0.0060241026803851,-0.016622383147478],[0.020332422107458,-0.053080603480339,-0.024616219103336]],[[0.038650896400213,-0.037216506898403,0.010949081741273],[-0.047389842569828,0.028631312772632,-0.12246700376272],[-0.028471214696765,0.010120858438313,-0.028274180367589]],[[0.01177051756531,0.017023200169206,-0.024932848289609],[0.0039014138747007,-0.053422328084707,-0.011549722403288],[-0.019139023497701,0.02881721034646,-0.045080367475748]],[[0.026155391708016,-0.081196494400501,-0.04319317266345],[-0.093399964272976,-0.067475564777851,-0.067087382078171],[-0.053217962384224,0.051691226661205,0.0500543192029]],[[0.0089140320196748,-0.047479145228863,0.024097640067339],[-0.035197611898184,-0.028941385447979,0.080296665430069],[-0.073192328214645,0.074116282165051,-0.050123993307352]],[[-0.059089560061693,-0.028998348861933,-0.11569277197123],[0.0029906402342021,0.013798038475215,0.0016960615757853],[-0.0072603411972523,-0.17412073910236,0.074008367955685]],[[0.022664815187454,0.023825623095036,-0.02387061342597],[-0.06227707490325,0.013950958848,0.02440139837563],[-0.0084651885554194,-0.087759368121624,-0.031018426641822]],[[-0.055933143943548,0.062770329415798,-0.07344463467598],[0.043645039200783,-0.00086225185077637,-0.055179044604301],[0.033398382365704,-0.021544229239225,0.066695995628834]],[[-0.017159547656775,0.067629851400852,0.008832648396492],[-0.031355012208223,0.011073590256274,0.025564407929778],[-0.018259886652231,-0.074177466332912,-0.029033860191703]],[[-0.094731606543064,0.0023505943827331,0.031545337289572],[-0.013195458799601,-0.017788542434573,0.057239841669798],[-0.035940185189247,0.0785893201828,-0.083894267678261]],[[-0.0019039047183469,0.0047627137973905,0.048823244869709],[-0.051073834300041,-0.018254956230521,-0.0089805265888572],[-0.0034331320784986,0.026674225926399,0.013910098001361]],[[0.0257228910923,-0.0230344068259,-0.044855359941721],[-0.010601162910461,-0.084960997104645,-0.073377467691898],[-0.054233599454165,-0.11929682642221,-0.0092043420299888]],[[0.033465512096882,-0.06813258677721,0.02953982539475],[-0.067632339894772,-0.04566490277648,-0.057525798678398],[0.032000184059143,-0.14311483502388,-0.013384555466473]],[[0.024388156831264,0.02564537897706,-0.004363174084574],[0.021325092762709,-0.07308803498745,-0.078157134354115],[0.0084246695041656,-0.00092058000154793,-0.02421292103827]],[[0.018452350050211,-0.065312430262566,0.025276936590672],[0.0075729629024863,0.022227996960282,-0.061808504164219],[0.0047531058080494,0.019153313711286,0.015391238965094]],[[-0.12496099621058,0.040430620312691,-0.058117549866438],[0.02202813513577,0.061472754925489,-0.027783032506704],[0.004619101062417,0.048710934817791,-0.0086654294282198]],[[0.014152513816953,0.012852265499532,0.043426923453808],[-0.043525844812393,0.0031691754702479,-0.031934518367052],[-0.14369738101959,0.0064841615967453,-0.02644389308989]],[[0.012101838365197,-0.069677017629147,-0.019076900556684],[0.020244302228093,0.078472003340721,0.01417741458863],[-0.04365024715662,-0.00074298301478848,-0.057546034455299]],[[-0.022643607109785,-0.00053564656991512,-0.0067819831892848],[-0.085790455341339,0.018337478861213,-0.043965835124254],[-0.0085748787969351,-0.011542960070074,-0.11053618043661]],[[0.0060553690418601,0.001146764610894,0.026593796908855],[-0.10582734644413,0.011265208013356,0.0046613113954663],[0.013603320345283,0.097212046384811,-0.074184574186802]],[[-0.018760222941637,-0.083042703568935,-0.046480432152748],[-0.046348087489605,-0.033937707543373,-0.021235853433609],[-0.0095337340608239,0.036526471376419,-0.07175736874342]],[[0.023007709532976,0.095873147249222,-0.037615492939949],[-0.11469583213329,-0.037086058408022,-0.0021199316252023],[-0.037112083286047,0.001736753154546,-0.00021988412481733]],[[0.054325539618731,-0.041560519486666,0.071019150316715],[-0.018365487456322,-0.066307120025158,0.061866112053394],[0.054036911576986,0.0038907546550035,-0.055943917483091]],[[0.048543378710747,0.037779022008181,0.10050018876791],[-0.004814000800252,-0.01354057341814,-0.11607138812542],[-0.090133622288704,0.028162503615022,-0.042281646281481]],[[0.050880566239357,-0.00092449714429677,0.013143887743354],[-0.013159074820578,-0.038799412548542,-0.045769728720188],[-0.012938343919814,0.017365934327245,0.0046544028446078]],[[0.053121574223042,-0.12255284935236,0.0033551598899066],[0.045858383178711,-0.061193905770779,-0.020199183374643],[0.034915048629045,-0.039950795471668,-0.032526433467865]],[[-0.084831535816193,-0.012966061942279,0.010344686917961],[-0.0019790902733803,-0.00073067704215646,-0.10974688827991],[0.0067455125972629,-0.01001432724297,0.015989135950804]],[[-0.038701325654984,-0.024320229887962,-0.095891736447811],[0.011471865698695,-0.029199259355664,0.10785360634327],[0.095583036541939,-0.038537081331015,0.064204394817352]],[[-0.022913381457329,0.037454467266798,0.0031638133805245],[0.026177451014519,-0.0099681429564953,-0.05709657818079],[-0.024078760296106,-0.040302354842424,-0.041517212986946]],[[-0.068568110466003,0.029040584340692,0.055711857974529],[0.00764817930758,-0.10500986129045,0.032483510673046],[0.0113863684237,0.0079675940796733,0.018585607409477]],[[0.032762423157692,0.016722563654184,-0.0089689856395125],[-0.13386189937592,0.060378726571798,-0.068011075258255],[0.0027685295790434,0.026706801727414,0.048501197248697]],[[0.045426659286022,0.027568187564611,-0.12249816954136],[-0.066340409219265,-0.0076910657808185,0.016512731090188],[-0.026988994330168,-0.0035695731639862,0.018909581005573]],[[-0.033289927989244,-0.063013404607773,-0.056563757359982],[0.069963097572327,-0.022329771891236,0.076994203031063],[0.065551608800888,-0.013352744281292,0.016882563009858]],[[0.030985379591584,0.016686486080289,-0.041018307209015],[-0.07615665346384,0.013730882667005,-0.059666637331247],[-0.071818217635155,0.0051610129885375,-0.04181095585227]],[[-0.089329808950424,-0.055003702640533,-0.03627785295248],[-0.04902782663703,-0.077533558011055,-0.040218971669674],[-0.011363027617335,-0.0035113075282425,-0.063867084681988]],[[0.0028714283835143,-0.024302497506142,-0.010492445901036],[-0.023179158568382,-0.0027257448527962,-0.048140481114388],[-0.047967821359634,0.023778380826116,-0.0036519353743643]],[[-0.062430277466774,0.034774538129568,-0.020449858158827],[0.06403312087059,-0.015481069684029,-0.0093269711360335],[-0.0098099187016487,0.030407443642616,0.037313710898161]],[[-0.016342068091035,0.036183159798384,0.00069178408011794],[0.012627519667149,0.020765539258718,0.0029243684839457],[-0.022888464853168,0.084124028682709,0.021021563559771]],[[0.068971782922745,0.03176998719573,-0.019472669810057],[0.16681529581547,0.060511540621519,0.16892524063587],[0.034591302275658,0.058577675372362,-0.0019928892143071]],[[0.048758175224066,-0.028332876041532,0.037458993494511],[-0.0015443575102836,0.046956524252892,-0.016436941921711],[0.01666727475822,0.039862267673016,-0.015725076198578]],[[0.034745413810015,-0.039859313517809,0.039209805428982],[-0.0039258999750018,0.056679088622332,-0.0089914985001087],[0.039047852158546,0.045285619795322,-0.071550324559212]],[[-0.020891826599836,-0.013887403532863,0.011158962734044],[-0.040129993110895,-0.034604784101248,-0.099209599196911],[-0.05120350420475,-0.040194652974606,-0.03956650197506]],[[0.041104916483164,-0.042325034737587,0.018788946792483],[-0.047201309353113,0.0047088959254324,-0.032048765569925],[-0.012948408722878,0.031845487654209,-0.018920879811049]],[[0.027775816619396,-0.029209980741143,-0.032242994755507],[-0.0094107249751687,0.037283878773451,0.066589966416359],[-0.087677508592606,0.00062966370023787,0.0057142139412463]],[[-0.0020384220406413,-0.059153504669666,0.0029448785353452],[0.043726928532124,0.040216829627752,0.028561390936375],[-0.018022218719125,-0.01988841407001,0.076259709894657]],[[-0.094532273709774,0.055726770311594,-0.0049639749340713],[-0.026110045611858,0.02518773637712,-0.012250965461135],[0.056789547204971,-0.12064256519079,-0.039784923195839]],[[0.031131798401475,0.039127256721258,0.059200804680586],[0.0044974852353334,0.013100675307214,-0.044404592365026],[-0.018230395391583,0.067510969936848,-0.0010595418279991]],[[-0.060312788933516,0.047337662428617,-0.012347877025604],[-0.028555613011122,0.0056797889992595,0.032060571014881],[0.023152777925134,-0.03600637242198,-0.063113912940025]],[[-0.03680532798171,-0.037192799150944,-0.05551914870739],[-0.0027059752028435,0.033342413604259,-0.010387096554041],[-0.040479738265276,-0.11189185082912,0.015218899585307]]],[[[-0.037751793861389,0.036577548831701,-0.012991334311664],[0.037845473736525,-0.019274357706308,0.0092830620706081],[0.070472694933414,0.017977947369218,0.071085974574089]],[[0.079729594290257,-0.014010858722031,-0.010823738761246],[-0.036303196102381,-0.044552125036716,-0.035202227532864],[0.0062712389044464,-0.019417438656092,0.0052572274580598]],[[0.052900355309248,-0.011623458005488,0.01117944996804],[-0.035959292203188,-0.040687315165997,-0.019438989460468],[0.0057832719758153,0.019107088446617,0.036233104765415]],[[-0.036337614059448,0.014171663671732,0.03087224625051],[0.011307663284242,-0.090365774929523,-0.0079894652590156],[-0.0055408244952559,-0.086611121892929,-0.014580154791474]],[[-0.057738300412893,-0.021660188212991,0.017841778695583],[0.025620944797993,0.0099007291719317,-0.075523994863033],[0.049862150102854,0.034950446337461,0.02779277972877]],[[0.027596063911915,-0.081921197474003,-0.084185153245926],[0.029205359518528,-0.015218375250697,0.12218128144741],[-0.04352992027998,0.050373144447803,0.037410698831081]],[[-0.0010735325049609,-0.018405424430966,0.0015468857018277],[-0.056532878428698,0.013318715617061,0.019165465608239],[0.018623318523169,0.050813857465982,-0.013192531652749]],[[0.073367483913898,-0.023782089352608,-0.03234152123332],[-0.0048713288269937,0.031327322125435,0.040897715836763],[-0.0068861613981426,-0.10359410196543,-0.034104816615582]],[[-0.048886675387621,0.054883021861315,0.046369139105082],[-0.013928431086242,0.052635859698057,0.01692889072001],[0.019055787473917,0.016309166327119,-0.019561219960451]],[[0.0019921341445297,0.047586165368557,0.0091699277982116],[-0.074929900467396,-0.04985050112009,0.0093603255227208],[0.015404789708555,-0.030161339789629,-0.0014380459906533]],[[0.032496172934771,-0.092191740870476,0.022056244313717],[0.021102711558342,-0.090734593570232,-0.03711686655879],[-0.0068380162119865,-0.055748879909515,0.027600791305304]],[[0.0032037424389273,-0.081560984253883,-0.028647493571043],[-0.010957287624478,-0.034636825323105,-0.016507206484675],[-0.027869090437889,-0.027632126584649,0.039133060723543]],[[0.010635848157108,-0.11464020609856,0.062972739338875],[0.0090796072036028,-0.059671688824892,-0.023446038365364],[-0.015532013960183,-0.0075265178456903,0.022309152409434]],[[-0.043790966272354,0.010406354442239,0.04230722039938],[0.036954216659069,0.0070221209898591,0.083895035088062],[0.083813801407814,-0.0061296378262341,0.034059066325426]],[[0.11171609908342,-0.04307247325778,0.0033467903267592],[0.019414411857724,-0.0030412198975682,-0.015962956473231],[-0.032109692692757,-0.0035677989944816,-0.0024757939390838]],[[0.02866530045867,-0.021856550127268,-0.029928999021649],[-0.036180891096592,-0.02337490953505,0.0072988560423255],[0.030908407643437,-0.00025203375844285,0.040423270314932]],[[-0.027081379666924,0.027819102630019,0.010357414372265],[0.069372333586216,0.041131589561701,-0.00021898100385442],[0.00075421296060085,0.07852403819561,-0.018860172480345]],[[-0.024673018604517,-0.076219283044338,0.028582151979208],[-0.019635748118162,0.054279625415802,0.0084838457405567],[-0.0098135368898511,0.067846134305,0.031720906496048]],[[0.044481109827757,-0.058520790189505,0.063482075929642],[-0.012933226302266,0.0064941495656967,-0.0048983697779477],[0.053126361221075,-0.012076665647328,-0.025820033624768]],[[0.016839530318975,0.026964958757162,0.0086452048271894],[-0.017804330214858,-0.015929406508803,-0.019322853535414],[0.02824573405087,0.052569378167391,-0.015660583972931]],[[-0.05292983725667,-0.093391880393028,-0.046406768262386],[0.02880859747529,-0.035715609788895,-0.031026216223836],[0.0018477343255654,-0.0020085184369236,-0.036103881895542]],[[-0.080465897917747,-0.03889973834157,0.018698401749134],[0.083388090133667,-0.091992355883121,-0.0087311519309878],[-0.021006491035223,0.044328425079584,-0.0089285541325808]],[[-0.03193698450923,-0.075053617358208,0.04306984692812],[0.01463031116873,0.068374805152416,-0.064224265515804],[-0.0095586515963078,0.056798364967108,-0.0040730922482908]],[[0.013297610916197,0.028154164552689,-0.019627364352345],[-0.0078774495050311,0.018752733245492,-0.01117608230561],[-0.027351362630725,-0.041628830134869,-0.013466137461364]],[[0.052391733974218,0.038610376417637,0.040093254297972],[-0.033797681331635,0.019942753016949,0.084728948771954],[-0.0017594137461856,-0.010289516299963,0.064470537006855]],[[0.047099247574806,0.029552428051829,0.049483750015497],[-0.037216495722532,-0.023181334137917,0.011136353947222],[-0.057014755904675,-0.010552595369518,-0.0018851074855775]],[[-0.022526102140546,-0.012422506697476,-0.013104574754834],[0.028269119560719,0.016707252711058,-0.03491198644042],[0.021160662174225,0.036764413118362,-0.027404712513089]],[[0.035112824290991,-0.068670347332954,0.029283355921507],[-0.0080026853829622,0.011070869863033,0.086680173873901],[0.05961611494422,-0.075692392885685,0.046833492815495]],[[-0.010267223231494,0.019645683467388,-0.031050007790327],[-0.03875569999218,-0.0072333910502493,-0.050177220255136],[-0.0055035632103682,-0.0015614515868947,0.015271039679646]],[[0.015512770973146,-0.025678934529424,-0.024841235950589],[0.0031531623098999,0.0015976259019226,-0.037999618798494],[-0.019477782770991,0.031516335904598,-0.00019396937568672]],[[0.0090949507430196,-0.052050944417715,0.039837192744017],[-0.037353590130806,-0.019753908738494,-0.011618502438068],[-0.059753216803074,0.0012170338304713,0.0061907800845802]],[[-0.042299751192331,-0.020276473835111,-0.010304035618901],[-0.0085362205281854,0.03241615369916,0.039686169475317],[-0.0028042846824974,-0.0096793351694942,0.02433080598712]],[[-0.043685421347618,-0.10500567406416,-0.074744187295437],[0.0086780125275254,-0.10462808609009,-0.032336682081223],[0.030685236677527,0.018188493326306,0.016381155699492]],[[0.046111550182104,0.039673160761595,-0.063120990991592],[-0.073216199874878,0.033935844898224,0.072213910520077],[-0.040254406630993,0.046626057475805,-0.010027491487563]],[[-0.013871455565095,-0.037958018481731,-0.012408453039825],[0.025125479325652,0.086273357272148,0.036864947527647],[-0.0094992062076926,-0.0035246086772531,-0.062168959528208]],[[0.044841766357422,-0.048133406788111,0.063583076000214],[-0.027445334941149,-0.013552635908127,0.021363042294979],[-0.05615010112524,-0.046652399003506,-0.040847167372704]],[[-0.019712625071406,0.044065743684769,0.026893580332398],[-0.0073249796405435,0.017915055155754,-0.0010121730156243],[-0.037552580237389,0.031044567003846,0.049186643213034]],[[0.078788727521896,-0.11534681171179,0.0074682659469545],[0.075370311737061,0.018291741609573,0.027156658470631],[-0.045866873115301,0.014593495056033,-0.049672905355692]],[[0.019315330311656,-0.022569064050913,0.016561320051551],[0.005716357845813,0.033654555678368,0.038133200258017],[-0.016339695081115,-0.030747592449188,-0.0043096384033561]],[[0.00086505763465539,-0.0016910940175876,0.045470144599676],[-0.032201632857323,0.022990392521024,0.0062747257761657],[-0.038343697786331,-0.021222826093435,-0.014085003174841]],[[0.013981876894832,0.030743042007089,-0.011982661671937],[-0.070194713771343,0.038480941206217,0.062281996011734],[-0.008758345618844,-0.026802642270923,0.012571076862514]],[[0.045371364802122,0.091551132500172,0.0554169267416],[0.0082446979358792,-0.031480792909861,0.028286419808865],[-0.049711409956217,0.027630502358079,0.053901508450508]],[[0.018186138942838,0.037332203239202,-0.012901146896183],[0.059939935803413,0.02767819352448,-0.016202766448259],[0.035628460347652,-0.012992358766496,0.036264307796955]],[[-0.049217872321606,0.027400214225054,-0.043298285454512],[0.0087092043831944,-0.0066394335590303,-0.049015391618013],[-0.011329475790262,0.010503256693482,-0.049391742795706]],[[0.02547793276608,-0.032912224531174,-0.0072054942138493],[0.021906021982431,-0.0038020866923034,0.0087748384103179],[-0.049984727054834,-0.027911357581615,0.023853277787566]],[[-0.043695956468582,0.087530672550201,0.00053975114133209],[0.0057046227157116,0.035732120275497,-0.00015841890126467],[-0.051751993596554,0.023161148652434,-0.014023342169821]],[[-0.003007892286405,-0.0007959232898429,-0.074089795351028],[-0.030508236959577,0.039440084248781,-0.025100763887167],[-0.033684022724628,0.006816390901804,0.02241912856698]],[[-0.067097991704941,-0.065214909613132,0.029081828892231],[-0.0097245145589113,0.046536721289158,-0.0091086653992534],[0.020356521010399,0.09484001994133,0.05886447429657]],[[-0.025416299700737,-0.00068162532988936,0.0098542766645551],[-0.045834928750992,0.0031004084739834,0.012220217846334],[-0.091903731226921,-0.072743698954582,-0.0014579758280888]],[[-0.037483546882868,0.11022731661797,0.054569143801928],[-0.031255625188351,-0.023820111528039,-0.0039413077756763],[-0.081356659531593,-0.090929575264454,-0.049454908818007]],[[0.0014540632255375,-0.016308711841702,-0.0055768764577806],[-0.041532091796398,0.054784625768661,0.033515304327011],[-0.024827985092998,-0.014962470158935,-0.019302502274513]],[[-0.075504533946514,0.047827128320932,-0.043430060148239],[-0.070625647902489,0.030518747866154,-0.029443068429828],[-0.036401592195034,-0.049119029194117,0.0082734255120158]],[[-0.0030958915594965,-0.0054943095892668,-0.052637174725533],[0.023931181058288,0.048362914472818,0.020570319145918],[-0.0077673839405179,0.03932174667716,-0.017968088388443]],[[0.036523401737213,0.0781264975667,0.027321677654982],[0.055385060608387,0.060950409621,0.020891843363643],[0.086502946913242,-0.0095861312001944,0.054235849529505]],[[-0.0062122433446348,0.0035865542013198,-0.047854717820883],[0.025628976523876,-0.02940695732832,0.016903916373849],[-0.07885180413723,-0.0096526481211185,-0.025646850466728]],[[-0.032680183649063,0.044051829725504,0.0369658395648],[0.020192373543978,-0.020016107708216,-0.01591482758522],[0.0053768563084304,0.01720947958529,0.033187747001648]],[[-0.03584174066782,-0.054983891546726,-0.021329781040549],[0.021195013076067,-0.051784597337246,0.047337304800749],[0.0083303153514862,0.045253667980433,-0.057723868638277]],[[0.0079869898036122,0.033397126942873,-0.018391322344542],[-0.0418273024261,-0.0060790786519647,0.017214100807905],[-0.042861364781857,-0.010201377794147,-0.026101725175977]],[[0.022123135626316,0.014101472683251,0.0032754875719547],[-0.036034513264894,0.052008561789989,-0.012683687731624],[0.0077053923159838,-0.048727791756392,-0.025741375982761]],[[0.038485817611217,0.050244078040123,0.022074477747083],[-0.017660723999143,-0.042023453861475,0.01061580516398],[0.021862167865038,0.005404588766396,-0.023424690589309]],[[0.061341762542725,-0.057150468230247,-0.059439856559038],[-0.038935486227274,-0.019024325534701,-0.0022609794978052],[0.017075892537832,0.057266004383564,0.049773670732975]],[[0.028959970921278,0.019224792718887,0.03657552972436],[0.016969662159681,-0.024126732721925,-0.047444254159927],[0.013597336597741,-7.9321340308525e-05,-0.055325083434582]],[[0.016650427132845,0.029721044003963,-0.0068113137967885],[-0.03609361499548,-0.0076530147343874,0.0094977552071214],[0.084018714725971,-0.027288941666484,0.037795580923557]],[[-0.020846139639616,0.032484613358974,0.052851557731628],[-0.02711140923202,0.020914278924465,0.028166845440865],[-0.044453226029873,0.059337873011827,-0.027089711278677]]],[[[0.059130217880011,0.022703252732754,-0.022690258920193],[-0.036936838179827,0.027059322223067,-0.02718472853303],[-0.0089296819642186,-0.05975903198123,-0.03990538045764]],[[-0.0065625784918666,0.057499311864376,0.053067289292812],[-0.016345351934433,0.00071122508961707,-0.0014492418849841],[0.029350068420172,-0.032054536044598,-0.010082778520882]],[[0.0017476900247857,-0.0056651290506124,0.0048183188773692],[0.031523134559393,-0.021915283054113,0.024053171277046],[-0.032921928912401,-0.025303291156888,0.047672942280769]],[[0.0068688662722707,0.030670240521431,0.060313560068607],[-0.0063104396685958,0.038683716207743,0.033489607274532],[0.056252438575029,-0.02280168235302,-0.016580622643232]],[[0.011139183305204,0.027027893811464,0.0091407569125295],[0.0063047334551811,0.014284840784967,-0.013390640728176],[0.015667092055082,0.050677079707384,-0.017837667837739]],[[0.05753268301487,0.051253072917461,0.05015792325139],[-0.021656950935721,-0.027139313519001,0.0055827284231782],[-0.024709593504667,0.00175848568324,-0.00059863249771297]],[[0.016208132728934,-0.034114848822355,-0.029534701257944],[-0.063146010041237,-0.022578837350011,-0.020648391917348],[-0.015730241313577,-0.0020207243505865,-0.0020445717964321]],[[-0.01822404935956,-0.023206051439047,0.014646734111011],[-0.091987028717995,-0.024700682610273,0.047443974763155],[-0.0025735711678863,0.0063284845091403,-0.019905146211386]],[[0.030287398025393,0.0064730513840914,-0.0041781794279814],[-0.0032732032705098,-0.043683525174856,0.043503206223249],[0.064005009829998,0.077445715665817,-0.0021004879381508]],[[0.014901042915881,-0.065695680677891,0.019689766690135],[0.10829182714224,-0.0068085072562099,0.00057798461057246],[-0.029778661206365,0.033107038587332,-0.022136308252811]],[[0.012914996594191,0.057608664035797,0.0067577622830868],[0.023163877427578,-0.020774515345693,0.0095771327614784],[0.012695265002549,-0.013173940591514,0.0014861256349832]],[[0.056443724781275,0.04403742775321,0.010708946734667],[0.036915317177773,-0.028605304658413,0.0074791153892875],[-0.036968801170588,-0.024212926626205,-0.0017767288954929]],[[-0.032915476709604,0.032718874514103,-0.027471236884594],[-0.0082412380725145,0.040887925773859,-0.036786980926991],[0.027936596423388,0.040632702410221,-0.072171129286289]],[[0.08656894415617,0.035259239375591,-0.010807832702994],[0.048504129052162,0.070313185453415,0.10501088947058],[0.02636743709445,0.0091474074870348,0.040486935526133]],[[0.028448337689042,0.054258655756712,0.0016845248173922],[0.0090457526966929,0.025180393829942,0.051547158509493],[-0.0098343603312969,-0.0017711209366098,0.0334199257195]],[[0.011874351650476,-0.027184585109353,0.019195070490241],[-0.041003968566656,0.046397101134062,-0.037199832499027],[-0.01428247243166,0.04671698063612,0.021897006779909]],[[0.063156142830849,0.1014836281538,0.04227377474308],[-0.03263433277607,-0.039025563746691,-0.026066165417433],[-0.0049480348825455,0.010603466071188,0.014056623913348]],[[0.024466145783663,-0.00089956552255899,0.010783144272864],[0.047080393880606,0.021974673494697,0.00024850471527316],[-0.014396354556084,-0.088179297745228,0.044744439423084]],[[-0.054154835641384,0.019198918715119,0.014486630447209],[0.048563316464424,-0.00407550111413,-0.051336657255888],[-0.012156780809164,-0.012282858602703,0.061443421989679]],[[0.0054705156944692,0.042850229889154,-0.066729545593262],[0.030813321471214,-0.028924008831382,-0.0070467088371515],[0.007602097466588,-0.022183967754245,0.010335213504732]],[[0.030434764921665,0.045231498777866,-0.065773002803326],[0.024046145379543,-0.029161171987653,-0.027614783495665],[0.047251436859369,-0.10907726734877,0.014290648512542]],[[0.006134897004813,0.050120078027248,0.0061541758477688],[0.065689519047737,0.041500862687826,-0.0088387355208397],[0.0079064704477787,-0.0058713210746646,0.039735220372677]],[[0.0052001252770424,0.028248470276594,-0.028592707589269],[0.0083332927897573,0.062561482191086,-0.0070985252968967],[-0.030839053913951,-0.039534859359264,0.023397490382195]],[[-0.033464469015598,-0.058330785483122,0.036706816405058],[-0.016374738886952,-0.039790030568838,-0.018173290416598],[0.0015110935783014,-0.047396473586559,0.011499151587486]],[[0.014125782065094,0.029896831139922,0.011867008171976],[0.06898906826973,-0.045656654983759,-0.050991866737604],[-0.02824062295258,0.054080244153738,-0.092776350677013]],[[-0.085790298879147,0.015262445434928,-0.053811855614185],[-0.0033526157494634,-0.020780870690942,0.013627886772156],[0.00042657472658902,0.015501867048442,-0.011982394382358]],[[0.026372576132417,0.031640835106373,-0.00028837964055128],[-0.0042917593382299,0.0056208209134638,-0.022471399977803],[-0.051833555102348,-0.03328263014555,0.024765722453594]],[[-0.010921406559646,0.030077179893851,-0.044289652258158],[0.054469998925924,-0.076588675379753,0.0011084458092228],[0.031258650124073,0.032837297767401,-0.042270723730326]],[[-0.013448117300868,0.015896441414952,0.0236910674721],[-0.05768932774663,-0.00080980337224901,-0.016387283802032],[0.020864777266979,0.010077085345984,-0.060547169297934]],[[-0.019036289304495,0.027827594429255,-0.013862012885511],[0.002414511051029,0.010923316702247,-0.0080552361905575],[-0.015473040752113,0.026856975629926,-0.0071886940859258]],[[-0.02499127574265,-0.030555007979274,-0.041691184043884],[0.016859855502844,-0.017662482336164,-0.082400038838387],[-0.0088670663535595,0.018506664782763,-0.037021186202765]],[[0.017540629953146,0.035144746303558,-0.0081660337746143],[0.01391504984349,0.026031063869596,0.026404181495309],[-0.0024909609928727,-0.032853495329618,0.01020114403218]],[[-0.06368737667799,-0.03892732411623,-0.049177568405867],[-0.023591585457325,0.0033867249730974,0.0096913706511259],[0.063700392842293,-0.020126633346081,-0.023931551724672]],[[-0.06803560256958,-0.013189339078963,0.042461667209864],[0.00070645048981532,-0.052072368562222,0.013861257582903],[-0.040283657610416,-0.049588277935982,0.048171985894442]],[[-0.031491253525019,0.072369687259197,0.052280072122812],[0.039120566099882,-0.06601682305336,-0.076643235981464],[0.009375668130815,-0.0095814988017082,0.069459073245525]],[[0.03167513012886,-0.020258575677872,-0.043233714997768],[-0.03870702534914,-0.011077677831054,-0.02985804527998],[-0.026500908657908,-0.0024551937822253,-0.05860174447298]],[[-0.0073224077932537,0.020950250327587,0.017504315823317],[-0.076761782169342,-0.059907294809818,0.01898836158216],[-0.031768422573805,0.037617571651936,-0.037393376231194]],[[-0.022699903696775,0.040567703545094,-0.015670828521252],[-0.027223056182265,-0.049982085824013,0.0095894262194633],[-0.0077024940401316,-0.01475262735039,0.032976128160954]],[[-0.0077322577126324,-0.024656519293785,-0.0041743731126189],[-0.034774884581566,-0.018025435507298,0.013558492995799],[-0.035849746316671,-0.079773768782616,-0.0065319156274199]],[[0.0041958545334637,0.05630673840642,-0.057620786130428],[-0.054597239941359,-0.046247687190771,0.015292895026505],[0.04606869071722,-0.0061316704377532,0.014456985518336]],[[0.052158858627081,-0.022436629980803,0.010137911885977],[0.015006787143648,-0.058995459228754,-0.02571071498096],[-0.028391271829605,0.070339351892471,-0.0078694941475987]],[[-0.022288851439953,-0.1376705467701,-0.025027763098478],[-0.079188421368599,0.0773054510355,0.026850592344999],[0.02455366589129,-0.028035145252943,0.032026350498199]],[[0.029845410957932,0.073036387562752,0.0067248633131385],[0.013821113854647,-0.035490024834871,-0.0094438530504704],[-0.068795584142208,0.0046411701478064,-0.082282304763794]],[[0.06034267321229,-0.034176107496023,0.038753774017096],[0.004538924433291,-0.0046798666007817,-0.037178996950388],[-0.0099216923117638,-0.066472582519054,-0.026065176352859]],[[0.067956946790218,0.021045111119747,-0.030330043286085],[0.029598787426949,-0.024729741737247,0.0038537178188562],[0.062812201678753,0.0389772541821,-0.025266520678997]],[[-0.0022393325343728,0.03115026652813,-0.0024001013953239],[0.00034197387867607,-0.014357331208885,-0.030676705762744],[0.052288491278887,0.026834696531296,0.035619858652353]],[[-0.090931497514248,-0.056864514946938,0.074396133422852],[-0.071411274373531,-0.037863276898861,0.10113205015659],[0.053326331079006,0.0077237500809133,-0.039952080696821]],[[-0.028797000646591,0.014658296480775,-0.035133227705956],[-0.033741299062967,0.069947637617588,0.076673001050949],[-0.081330582499504,-0.0044223805889487,0.052107691764832]],[[-0.05186539888382,0.046658672392368,0.016742553561926],[-0.088534072041512,0.0046174582093954,0.027160353958607],[-0.042744338512421,0.024472400546074,0.03819302469492]],[[0.063659623265266,0.0061642802320421,0.046478107571602],[0.00103732815478,0.065168477594852,-0.0078491419553757],[-0.054642703384161,0.094833433628082,0.010522393509746]],[[-0.002313012490049,-0.014904655516148,-0.020172614604235],[0.05040356144309,-0.059781730175018,0.00017431942978874],[-0.003156544174999,0.0063080894760787,-0.0044206255115569]],[[-0.055743474513292,0.0027038953267038,0.0015046189073473],[0.0073431259952486,-0.0029344588983804,0.020911648869514],[0.088476091623306,0.01442779880017,-0.010485394857824]],[[-0.019845670089126,0.054624285548925,0.0091710854321718],[-0.027203850448132,0.046798672527075,-0.016878450289369],[-0.019109092652798,-0.0097904950380325,0.042731713503599]],[[0.0838463306427,0.0366390645504,-0.039071172475815],[-0.0022279671393335,0.061173647642136,0.12063863128424],[0.04007176309824,0.098249763250351,-0.014482554979622]],[[-0.038054149597883,0.048153072595596,-0.0150051349774],[0.047776732593775,-0.10897875577211,0.037067044526339],[0.014097628183663,0.038531970232725,-0.017232090234756]],[[-0.0040693157352507,-0.050197839736938,-0.014292871579528],[-0.057202998548746,0.019238522276282,0.0088847354054451],[0.019099382683635,-0.073085218667984,0.047405228018761]],[[-0.026025205850601,-0.010050237178802,0.019204014912248],[0.0084991231560707,0.043774150311947,0.035356733947992],[-0.017584886401892,-0.034740660339594,0.073701828718185]],[[-0.0096633266657591,0.049123600125313,-0.010990438982844],[0.015363527461886,-0.011466512456536,-0.0076820640824735],[0.013062274083495,0.044932097196579,0.0012318637454882]],[[0.09286043047905,0.012324121780694,0.052908919751644],[-0.019678812474012,0.020045390352607,0.009145469404757],[0.065225258469582,-0.019697098061442,0.026238350197673]],[[0.01751902140677,-0.057902749627829,0.029649624601007],[-0.0029663098976016,0.022746095433831,0.026688784360886],[0.026694608852267,0.027930166572332,-7.0006353780627e-05]],[[-0.017330281436443,-0.035773191601038,-0.037255793809891],[-0.045529536902905,0.0096584213897586,-0.022242411971092],[0.062912009656429,-0.017815668135881,0.015931937843561]],[[-0.062468815594912,-0.019892852753401,0.030457014217973],[0.013751008547843,0.028417140245438,0.017572775483131],[0.017646608874202,-0.021669259294868,0.038045004010201]],[[0.00012889482604805,-0.012630684301257,-0.042909365147352],[0.012185850180686,-0.015254411846399,0.011469173245132],[0.055792097002268,-0.015338594093919,-0.054943308234215]],[[-0.025253027677536,-0.01034140586853,0.036405090242624],[-0.066655687987804,-0.015340590849519,-0.018065810203552],[0.0026630153879523,-0.0048122243024409,0.0083360765129328]]],[[[0.076049216091633,0.031685493886471,0.036438919603825],[0.012628766708076,-0.09073144942522,-0.12664774060249],[0.0042587891221046,0.0032881805673242,-0.022142296656966]],[[-0.010373085737228,0.065525636076927,-0.0082038650289178],[-0.060479503124952,-0.033715933561325,0.03931275382638],[-0.039854247123003,-0.01943744905293,-0.0047962558455765]],[[0.019368834793568,0.028498509898782,0.064761012792587],[-0.045631114393473,-0.04066227003932,-0.014789381064475],[-0.050716318190098,-0.022004388272762,-0.0071504805237055]],[[-0.061642501503229,-0.00040602701483294,0.019560772925615],[0.010847665369511,0.091986075043678,0.046640202403069],[0.015598928555846,0.019886638969183,-0.037757053971291]],[[0.0032424193341285,0.026764903217554,-0.075102798640728],[0.017157947644591,-0.029414650052786,0.055799812078476],[-0.0012607178650796,0.022950049489737,-0.068786822259426]],[[-0.12186793982983,0.023832991719246,-0.038519930094481],[-0.034297559410334,0.036101095378399,-0.045696496963501],[-0.075589284300804,0.029824111610651,-0.031563524156809]],[[-0.022412415593863,-0.017217813059688,0.0071911313571036],[-0.027875749394298,-0.068735927343369,0.012986443936825],[-0.046114973723888,0.010198873467743,0.010452944785357]],[[-0.064851492643356,-0.018147168681026,0.027138072997332],[-0.11580003798008,0.012719491496682,-0.0094180013984442],[-0.031222689896822,-0.0066267079673707,-0.0010917582549155]],[[-0.051303587853909,-0.033891290426254,0.0014786254614592],[0.054865378886461,-0.0045516425743699,0.057816237211227],[-0.048222821205854,0.064145348966122,-0.016108920797706]],[[0.060556404292583,0.050955876708031,-0.037310041487217],[0.029007947072387,-0.0098731424659491,-0.042953617870808],[0.010870892554522,-0.0016659464454278,-0.026725690811872]],[[0.012479806318879,0.00057745538651943,0.061605170369148],[-0.079610899090767,-0.036547049880028,0.034825176000595],[0.015768025070429,0.087389945983887,-0.020599756389856]],[[0.0029213463421911,0.031078197062016,0.043240297585726],[0.00186179834418,-0.016037894412875,0.060655441135168],[0.017634706571698,0.03172180429101,-0.037003360688686]],[[-0.0052797575481236,0.00068116647889838,-0.01903703995049],[-0.028992230072618,0.028199205175042,-0.012586414813995],[0.056096844375134,0.061194229871035,-0.0082610761746764]],[[0.049701295793056,0.0076015233062208,0.027693569660187],[0.056818276643753,0.054292220622301,-0.040026720613241],[-0.016791885718703,-0.025644928216934,-0.015012796036899]],[[-0.013146585784853,0.09475664049387,0.013659453950822],[-0.029138654470444,-0.041949957609177,0.025129383429885],[-0.017117824405432,0.028978986665606,0.019845085218549]],[[0.018655130639672,-0.054747741669416,0.044981218874454],[0.0019100721692666,-0.038479052484035,-0.012588886544108],[-0.054610315710306,0.022094920277596,0.0037892183754593]],[[-0.027381701394916,0.0055426671169698,0.026251330971718],[-0.0098700448870659,-0.0059748641215265,-0.042680412530899],[0.032289896160364,-0.031139431521297,0.042955733835697]],[[-0.012879530899227,0.021265776827931,-0.0095456643030047],[-0.023888939991593,0.0039240489713848,0.023703843355179],[-0.043505780398846,-0.0058386921882629,-0.041965078562498]],[[-0.033914126455784,-0.00093542650574818,0.014519470743835],[0.023271983489394,-0.011974593624473,-0.037611238658428],[-0.034558769315481,-0.0017919831443578,0.0051603587344289]],[[-0.042589507997036,-0.03798408433795,0.0071875192224979],[-0.033385667949915,0.011195453815162,-0.0021118668373674],[0.036224097013474,-0.051018282771111,-0.011025745421648]],[[0.015634421259165,0.038593806326389,0.0053317272104323],[0.081283271312714,0.00085509393829852,0.059783138334751],[-0.068349257111549,-0.033935353159904,0.027874341234565]],[[0.075674399733543,-0.040901646018028,-0.01099272351712],[-0.027925420552492,0.00405562389642,-0.051531616598368],[0.021381262689829,-0.0040165018290281,0.024877233430743]],[[0.056178748607635,0.035604014992714,0.016506809741259],[-0.032708425074816,-0.046707198023796,-0.0093707097694278],[-0.021783171221614,0.0061993291601539,0.015993647277355]],[[0.057267677038908,-0.070015177130699,0.027319708839059],[-0.062949948012829,0.037549447268248,0.0014468684094027],[-0.0037458392325789,-0.031099094077945,-0.015023687854409]],[[-0.024938335642219,0.020639002323151,-0.084247455000877],[0.054037228226662,-0.0057338159531355,-0.021641634404659],[-0.030411606654525,-0.011863954365253,0.042320765554905]],[[-0.018224321305752,0.044670831412077,0.0034425135236233],[-0.025753097608685,-0.016822535544634,-0.010425884276628],[0.029499700292945,0.0024895933456719,-0.049449175596237]],[[-0.056890562176704,0.042869612574577,0.043771144002676],[-0.0058764303103089,-0.016383977606893,-0.0049144942313433],[0.029545247554779,0.0016876163426787,0.0037393767852336]],[[0.02813296765089,-0.041224520653486,-0.004256091080606],[0.047980446368456,-0.0086872400715947,-0.0038191031198949],[-0.037858594208956,-0.044101741164923,-0.017299426719546]],[[0.052568171173334,-0.0031795424874872,-0.014794813469052],[-0.062856383621693,-0.01635629683733,-0.0064112762920558],[0.047605104744434,-0.020624987781048,0.040544584393501]],[[-0.038513273000717,-0.031759098172188,0.011188986711204],[0.021351832896471,0.033648893237114,0.039592888206244],[0.06889333575964,0.01095168851316,0.022722434252501]],[[-0.010220156982541,0.030312020331621,-0.044749185442924],[-0.043203741312027,-0.056385342031717,-0.024510649964213],[-0.00096173124620691,-0.050168227404356,0.018051916733384]],[[0.035158410668373,0.080185420811176,-0.0034197352360934],[-0.012709319591522,-0.028065593913198,-0.006145607214421],[0.039296615868807,-0.04131069406867,-0.030295215547085]],[[-0.074937626719475,-0.04356537759304,-0.056146644055843],[-0.023026080802083,-0.0068604499101639,-0.039814967662096],[0.04394968226552,0.03606516122818,-0.042924076318741]],[[-0.039904203265905,-0.027288863435388,-0.0023413845337927],[-0.013842225074768,-0.023664422333241,0.0062795002013445],[0.040501642972231,-0.10702956467867,-0.041210357099771]],[[-0.063499711453915,-0.0071614845655859,0.038711979985237],[0.0099988179281354,-0.0085127977654338,-0.057312212884426],[-0.062999859452248,0.012048569507897,0.058171086013317]],[[-0.049439541995525,-0.03658589348197,-0.049992203712463],[-0.067948751151562,-0.0069646374322474,-0.063839726150036],[0.039555631577969,0.037302378565073,0.048455704003572]],[[0.0065552992746234,-0.0086439987644553,0.050542950630188],[-0.063264466822147,-0.041507553309202,0.035304646939039],[-0.010089603252709,0.023800620809197,0.043903183192015]],[[-0.0053586876019835,0.037503995001316,0.0054422449320555],[-0.035377494990826,0.067888759076595,0.0088359406217933],[0.053003389388323,-0.052307154983282,-0.0044917166233063]],[[-0.0024465061724186,-0.029646834358573,0.04436956346035],[0.0026842672377825,-0.043975051492453,-0.049379244446754],[-0.033400487154722,-0.090894795954227,-0.080311119556427]],[[0.068823881447315,0.040133222937584,-0.026342805474997],[0.030679240822792,0.031502023339272,0.017602952197194],[-0.049264244735241,0.041389316320419,-0.017965704202652]],[[-0.063111744821072,-0.0049375775270164,0.0090362261980772],[0.039035603404045,-0.0066545568406582,0.097132101655006],[-0.03411778062582,0.0057503152638674,0.015330786816776]],[[-0.0028529495466501,-0.030553657561541,-0.060802027583122],[-0.062976062297821,-0.096287071704865,-0.031253855675459],[-0.001352682011202,0.036269344389439,-0.043050620704889]],[[-0.057806812226772,-0.031571947038174,0.041352290660143],[-0.03287411108613,0.02615549787879,0.014719846658409],[0.011258601211011,-0.017946556210518,-0.018040426075459]],[[-0.052552260458469,-0.010381568223238,0.026697339490056],[0.026639606803656,-0.025750819593668,0.019861701875925],[0.045684102922678,0.0010527941631153,-0.010001769289374]],[[0.0176553837955,-0.027357185259461,0.015639843419194],[0.021027380600572,0.039055112749338,-0.067942567169666],[0.042451217770576,-0.0078960638493299,0.027208302170038]],[[0.038546677678823,-0.051970314234495,0.024663958698511],[0.011088505387306,0.012804351747036,-0.0012748981826007],[0.08386492729187,-0.028257029131055,0.035502456128597]],[[0.077663905918598,-0.10395040363073,0.014483031816781],[-0.024730520322919,0.03428453207016,-0.022414613515139],[0.0075361733324826,-0.038459476083517,0.010946094989777]],[[0.026089223101735,-0.021386316046119,0.038711659610271],[-0.014128223992884,-0.0630012601614,-0.03251039981842],[0.0095371333882213,-0.0010952947195619,0.018120313063264]],[[0.033960152417421,-0.014915648847818,0.0044708629138768],[-0.04848675429821,0.056396562606096,0.011746405623853],[0.03517035022378,-0.011803106404841,0.032538656145334]],[[0.043658286333084,-0.045707404613495,-0.022305311635137],[0.10149199515581,0.066709861159325,0.015284359455109],[-0.0035400267224759,0.027598025277257,0.08359532058239]],[[-0.0021302383393049,0.027885688468814,-0.020165884867311],[0.047492198646069,-0.0074039846658707,-0.018727485090494],[-0.019284201785922,-0.0027702467050403,-0.020404597744346]],[[-0.05785147100687,-0.027596022933722,0.028330136090517],[0.016552994027734,0.071801386773586,0.027995845302939],[0.029470156878233,-0.011046146042645,-0.07236222922802]],[[-0.009422211907804,0.042015749961138,-0.02922155149281],[-0.085478976368904,0.01339218672365,-0.052227076143026],[-0.0027630690019578,0.019104199483991,-0.043725199997425]],[[0.056542932987213,0.013303400017321,0.083644725382328],[0.03303536772728,-0.014974623918533,0.025103703141212],[0.07483759522438,0.069379962980747,0.078201100230217]],[[0.076973870396614,-0.057668995112181,-0.037130452692509],[-0.019901538267732,-0.0049968822859228,-0.01258435472846],[-0.0065153366886079,0.0088124917820096,-0.013334050774574]],[[-0.00069690821692348,-0.00044040186912753,-0.0020003814715892],[-0.049883831292391,0.021772095933557,0.024243243038654],[0.0396395213902,-0.018400892615318,0.086269199848175]],[[0.026007480919361,0.018072877079248,0.054295502603054],[0.019814725965261,0.022084789350629,-0.012685257010162],[0.044945497065783,-0.040534917265177,0.046400155872107]],[[-0.048991814255714,0.0064151748083532,0.016948882490396],[0.055176436901093,0.060590896755457,0.01048868894577],[-0.024489771574736,-0.0058118142187595,-0.023302040994167]],[[0.037356335669756,0.042558584362268,0.0060113510116935],[-0.0095061520114541,0.019212955608964,0.074998959898949],[0.019584892317653,-0.05549069866538,-0.0014277982991189]],[[-0.033030156046152,0.013571785762906,0.0067427288740873],[0.0087939519435167,0.046716712415218,-0.013759012334049],[0.020989926531911,0.033355742692947,-0.017319032922387]],[[-0.037001941353083,-0.0059874327853322,-0.055194213986397],[-0.022464230656624,-0.045682922005653,-0.02799897454679],[-0.024636972695589,-0.022170681506395,0.044474329799414]],[[0.089205384254456,0.0012402082793415,0.012580179609358],[-0.030243063345551,-0.0025912155397236,-0.032568942755461],[0.01864729821682,-0.037852969020605,-0.016055097803473]],[[0.0014519726391882,0.015232908539474,-0.053323563188314],[0.00059357727877796,-0.027441222220659,-0.0061044567264616],[-0.012199084274471,0.052309945225716,-0.05091580376029]],[[0.020519345998764,-0.026635773479939,0.025229398161173],[0.051138799637556,-0.038245182484388,-0.0021267919801176],[-0.07331857085228,0.025407664477825,-0.05057705566287]]],[[[0.032780092209578,0.071236275136471,0.095911107957363],[0.14170435070992,0.027498960494995,-0.21751941740513],[-0.073593787848949,0.10957437008619,0.10380710661411]],[[-0.038093347102404,-0.058614265173674,-0.040810208767653],[-0.078263498842716,-0.10720057785511,-0.10433525592089],[0.046005886048079,-0.0061559658497572,-0.090317688882351]],[[-0.032664958387613,-0.07582351565361,-0.02556069009006],[-0.045573864132166,-0.0020624021999538,0.025918155908585],[-0.1348058283329,0.019850520417094,-0.018151000142097]],[[0.0065148961730301,0.058615431189537,-0.10292159020901],[-0.088491126894951,-0.030052008107305,-0.020652588456869],[0.032139386981726,0.10669349879026,0.0071086171083152]],[[-0.066724061965942,0.10963696241379,0.0096410047262907],[0.1064782589674,-0.0348653011024,0.045197553932667],[0.015064368955791,-0.10093670338392,0.0036069238558412]],[[-0.038802437484264,0.058870494365692,-0.10798982530832],[-0.1001198142767,-0.015402936376631,-0.035287078469992],[-0.054296184331179,0.055009089410305,-0.050770789384842]],[[-0.10581853985786,-0.11638198047876,0.016532694920897],[-0.02358359657228,-0.029878925532103,-0.032606575638056],[-0.078621000051498,-0.082011207938194,0.012229228392243]],[[0.04602362588048,0.023748755455017,-0.070483684539795],[-0.040413659065962,-0.10561507195234,0.056009940803051],[-0.0085559086874127,-0.066877171397209,-0.0081379925832152]],[[0.025660082697868,-0.0080857314169407,-0.025767598301172],[0.0099682463333011,0.068802699446678,-0.0135284550488],[0.002066498156637,0.031296029686928,-0.096510119736195]],[[0.05749523639679,-0.012645242735744,0.11839350312948],[-0.060824248939753,-0.081236064434052,-0.10627254098654],[0.098480351269245,0.071459598839283,-0.16267523169518]],[[0.1129994392395,0.014156637713313,0.10947267711163],[0.0039157113060355,0.08207406103611,-0.069258004426956],[-0.19893179833889,0.041732415556908,-0.015806123614311]],[[-0.010721653699875,0.011047053150833,0.040598157793283],[0.04140093550086,-0.078737169504166,-0.010209106840193],[-0.062827669084072,-0.045315720140934,-0.016785418614745]],[[0.010281202383339,-0.00073242635698989,0.00064082228345796],[-0.039869271218777,-0.033833034336567,-0.013932063244283],[-0.033074133098125,0.085658602416515,-0.037287876009941]],[[0.00211217161268,0.034283775836229,0.089325554668903],[0.053302712738514,0.23066177964211,0.21472871303558],[0.12916737794876,0.057903800159693,0.19250562787056]],[[0.086290970444679,0.12916907668114,0.032060749828815],[0.019061760976911,-0.03417744114995,0.097398184239864],[0.032670330256224,0.045611876994371,0.12042728811502]],[[-0.083289444446564,0.042437750846148,0.11995991319418],[-0.042475987225771,0.02624580077827,0.033604614436626],[0.053405862301588,0.064976029098034,0.043876852840185]],[[0.025129118934274,-0.027358625084162,0.0012725042179227],[-0.0113182105124,-0.1296706199646,0.026018621399999],[-0.0090347258374095,-0.119200758636,0.0047651221975684]],[[-0.10783039033413,-0.086858697235584,-0.045814011245966],[-0.088618621230125,0.012375317513943,-0.11907501518726],[-0.056304328143597,-0.14080436527729,-0.12203841656446]],[[-0.0075804768130183,0.025435008108616,-0.060782145708799],[-0.13115650415421,-0.084065861999989,-0.065250419080257],[0.014033142477274,-0.03817642480135,-0.056309465318918]],[[0.024300361052155,-0.10646372288465,-0.013794523663819],[-0.13040286302567,-0.0066856141202152,-0.03084715269506],[0.041520267724991,-0.12347090244293,0.074265532195568]],[[0.11876028031111,0.030437670648098,0.095956407487392],[0.19206409156322,0.0085369255393744,0.11104550212622],[0.15964183211327,0.069615252315998,0.03842618316412]],[[0.065684169530869,-0.10122327506542,-0.027716593816876],[-0.049338821321726,-0.033550273627043,0.0049412837252021],[-0.092085503041744,0.013845681212842,-0.010786021128297]],[[0.071035318076611,0.016275258734822,0.085740223526955],[-0.12506991624832,-0.13349297642708,0.066341742873192],[-0.0096269184723496,0.0015872295480222,0.066394284367561]],[[0.052012160420418,-0.0074773393571377,0.025285646319389],[-0.033435747027397,0.095000438392162,0.0069202836602926],[-0.036591783165932,0.042145691812038,-0.088924273848534]],[[-0.024437932297587,0.020960099995136,0.031121475622058],[-0.028664777055383,0.092853747308254,0.012439886108041],[-0.0023614000529051,0.085211619734764,0.14189645648003]],[[-0.058482605963945,-0.050689641386271,-0.054667849093676],[0.014294592663646,-0.0042736297473311,-0.031177153810859],[-0.044328905642033,0.026220250874758,-0.063827060163021]],[[0.041868150234222,-0.043945353478193,-0.057704843580723],[0.074019886553288,-0.13025446236134,0.05373952537775],[-0.047082930803299,0.0081107281148434,0.0096311857923865]],[[-0.011798955500126,0.14477175474167,0.22900608181953],[-0.01809105835855,0.10364965349436,0.085589796304703],[0.098619647324085,-0.015281230211258,0.011822309345007]],[[-0.037036534398794,0.11619090288877,0.11002322286367],[0.089057594537735,0.05303155630827,0.055353704839945],[0.0068742912262678,0.045332245528698,-0.033416192978621]],[[-0.016030354425311,-0.11630181223154,-0.030013494193554],[-0.097703151404858,-0.053385224193335,0.033470299094915],[-0.012652962468565,0.044582296162844,0.02644388191402]],[[-0.045921925455332,-0.14736206829548,0.024066135287285],[0.018166534602642,-0.0067409323528409,-0.018996328115463],[-0.018548024818301,0.013262622989714,0.075861841440201]],[[0.019115645438433,0.039620373398066,0.01611683703959],[0.10408713668585,-0.0026792236603796,0.042737696319818],[-0.054477628320456,-0.090500965714455,0.021772312000394]],[[-0.052041564136744,0.019282618537545,-0.0019057474564761],[0.019836926832795,0.015579115599394,-0.054584868252277],[0.042968709021807,0.065761290490627,-0.085954152047634]],[[0.033518072217703,-0.0025323841255158,0.024181308224797],[-0.11360063403845,-0.10276763886213,-0.046806439757347],[-0.020295614376664,-0.09597510099411,-0.16104997694492]],[[-0.069972179830074,-0.01179310772568,-0.020954612642527],[0.00088506424799562,0.12578132748604,0.15372668206692],[-0.0016024111537263,0.078580133616924,0.13343447446823]],[[-0.048192836344242,-0.064367339015007,-0.12301515042782],[-0.00028462850605138,0.10647547245026,-0.11309064924717],[0.050212252885103,0.025222316384315,-0.036308094859123]],[[-0.050954226404428,-0.011597600765526,0.04152388125658],[0.031417541205883,-0.058328434824944,0.11770672351122],[-0.039632931351662,0.063362367451191,0.028369192034006]],[[-0.028793251141906,-0.079105637967587,0.11562667787075],[0.0053050676360726,0.0060217664577067,-0.041733089834452],[-0.027964664623141,0.082039855420589,-0.07594957202673]],[[0.050034921616316,0.0020518533419818,0.017824240028858],[-0.044716738164425,0.007138998247683,0.084517724812031],[0.065139874815941,-0.093670308589935,0.12333042174578]],[[-0.069630578160286,0.063449926674366,0.036288265138865],[-0.018581338226795,0.052649296820164,0.1524807959795],[-0.0078774075955153,-0.026223471388221,0.01715736463666]],[[-0.033693473786116,0.029144963249564,0.041950423270464],[-0.015185889787972,-0.050097331404686,-0.074978664517403],[-0.097637511789799,-0.12138652801514,0.065770246088505]],[[0.034884434193373,-0.031201483681798,-0.010713122785091],[-0.017900560051203,-0.17306073009968,-0.063472412526608],[-0.039760880172253,0.012419396080077,0.033451344817877]],[[-0.00081020302604884,0.020931031554937,0.018198473379016],[-0.051947496831417,-0.061754163354635,-0.11175568401814],[-0.018746124580503,-0.14229418337345,0.0025780289433897]],[[-0.018599953502417,0.019062696024776,0.028749316930771],[-0.010566447861493,0.005341250449419,-0.010296969674528],[0.019482122734189,0.032380230724812,0.018546706065536]],[[-0.021754702553153,0.022686224430799,0.035721816122532],[0.07364259660244,0.14201039075851,-0.078952997922897],[0.0047926385886967,0.045238614082336,0.0085696177557111]],[[0.060154695063829,0.025308068841696,-0.05768870189786],[-0.11516367644072,-0.094388328492641,0.13182456791401],[0.0092181712388992,-0.043083738535643,0.13397246599197]],[[0.012577089481056,-0.056235048919916,-0.02288163267076],[0.042904548346996,0.0098634138703346,0.0487638451159],[0.017784776166081,0.027427377179265,0.077230490744114]],[[-0.078436851501465,-0.024932082742453,-0.061950720846653],[-0.1548085808754,-0.032500114291906,-0.1553959697485],[-0.10262938588858,-0.017321564257145,-0.059806544333696]],[[-0.066013641655445,-0.025787374004722,0.061204001307487],[0.0060290554538369,0.081582844257355,0.02749533392489],[-0.054724346846342,-0.039431635290384,-0.010425440967083]],[[0.0066463146358728,0.13429947197437,0.042813193053007],[0.041071802377701,0.14635975658894,-0.043340507894754],[0.025184884667397,-0.023788694292307,-0.23486311733723]],[[-0.063600823283195,-0.031203255057335,-0.037346035242081],[-0.090702079236507,-0.13469655811787,0.060106951743364],[0.042357098311186,-0.20287035405636,0.0074223643168807]],[[-0.10659342259169,-0.082120336592197,-0.071387998759747],[0.057681210339069,-0.0037421649321914,-0.037587478756905],[-0.032414626330137,-0.021372081711888,-0.050993770360947]],[[0.023977341130376,0.046671766787767,-0.013963675126433],[0.018593480810523,-0.06292849034071,-0.039441987872124],[-0.050287917256355,-0.0047374209389091,-0.059069558978081]],[[-0.10182158648968,-0.19116345047951,0.065117843449116],[0.14860053360462,0.27291125059128,-0.029357295483351],[0.14116081595421,0.25847586989403,0.017526121810079]],[[-0.034845750778913,-0.14705768227577,0.082243956625462],[0.005107051692903,0.0098431007936597,0.10974206775427],[0.035022716969252,0.07100972533226,0.0054859896190464]],[[0.0099070128053427,0.10790979862213,-0.026143413037062],[0.084753386676311,0.10096157342196,0.0080686444416642],[0.012142634950578,-0.019912540912628,-0.035689603537321]],[[-0.059145409613848,0.022451432421803,0.0027542694006115],[0.015574731864035,-0.12864935398102,0.036370370537043],[-0.0011610513320193,-0.01122097671032,-0.05294007435441]],[[-0.0064458018168807,-0.043564971536398,-0.052602745592594],[0.016822263598442,-0.22038757801056,-0.067006565630436],[-0.075530640780926,-0.04991988837719,-0.039743896573782]],[[-0.018097806721926,0.01532812975347,0.010724938474596],[-0.069119229912758,0.025591434910893,0.014855640940368],[0.010620943270624,0.018372014164925,0.077369384467602]],[[-0.069239132106304,-0.031705062836409,-0.033008899539709],[0.12483894824982,0.1485743522644,0.01068917196244],[0.0025272471830249,-0.0048006395809352,-0.074477881193161]],[[-0.07698281109333,-0.10234031826258,0.0035746276844293],[0.033890295773745,0.058105651289225,-0.010826445184648],[0.0073600085452199,0.037831600755453,-0.034918196499348]],[[0.014526135288179,0.014434984885156,0.071619898080826],[0.0060304687358439,-0.071638233959675,-0.021163197234273],[-0.020744819194078,0.049171295017004,0.028905952349305]],[[-0.0057146823965013,0.069235347211361,0.023521654307842],[-0.045144688338041,-0.066073730587959,-0.058829098939896],[0.028035746887326,-0.087008625268936,0.068451918661594]],[[-0.014856066554785,-0.064529344439507,0.031950738281012],[-0.10788247734308,-0.018178947269917,-0.0019544668029994],[-0.016520399600267,0.024827828630805,-0.003932704217732]]],[[[-0.086123451590538,-0.10754042118788,-0.077402278780937],[0.034474056214094,0.053559098392725,-0.068428009748459],[0.056519351899624,-0.045718245208263,-0.070797294378281]],[[-0.0099191088229418,-0.058870006352663,-0.029654663056135],[0.019303085282445,0.0016716041136533,0.018231270834804],[-0.039806921035051,0.025475781410933,0.085595488548279]],[[0.051050882786512,0.073199830949306,0.052486654371023],[-0.00092711107572541,-0.085574977099895,0.037977151572704],[-0.020004523918033,-0.037756513804197,-0.031501401215792]],[[-0.020594840869308,-0.0056673376820982,0.030727706849575],[-0.01746316626668,-0.024843379855156,-0.032376021146774],[0.016229430213571,0.02683618478477,0.0041446099057794]],[[0.048307072371244,0.044353876262903,0.027839578688145],[-0.037426587194204,0.037144500762224,-0.0064934231340885],[0.024478962644935,-0.027530802413821,-0.012849713675678]],[[0.11961194872856,-0.016787197440863,0.036659117788076],[-0.096785604953766,-0.0805843770504,0.054885260760784],[-0.093120001256466,-0.049691043794155,-0.041708961129189]],[[0.050254341214895,0.0081515675410628,-0.050610400736332],[-0.048754084855318,0.012639203108847,0.013006116263568],[-0.044324226677418,-0.029123887419701,-0.10460173338652]],[[-0.13142195343971,-0.12237260490656,0.011628398671746],[-0.054508537054062,-0.045022614300251,0.052341725677252],[0.030871205031872,-0.042226634919643,0.039592672139406]],[[-0.015772635117173,0.051234569400549,0.02253588475287],[0.014757633209229,-0.03621806204319,-0.011743297800422],[0.017235556617379,0.0021644094958901,-0.029696077108383]],[[0.038197685033083,-0.014666310511529,0.052739255130291],[0.00095158361364156,-0.017774242907763,0.062958396971226],[0.030671430751681,-0.020589094609022,-0.068780831992626]],[[0.018024019896984,-0.0056821801699698,0.048113036900759],[-0.051046524196863,0.052068214863539,-0.027196601033211],[0.0091292960569263,0.062989227473736,0.096227250993252]],[[-0.054134771227837,-0.046540454030037,-0.11986146867275],[-0.05176891759038,-0.023802192881703,0.026839008554816],[0.01976060308516,0.010589707642794,0.023904852569103]],[[0.0119474157691,-0.0041749230585992,0.0038734166882932],[0.058496423065662,-0.012548518367112,-0.010283723473549],[-0.03031618706882,0.006532299797982,-0.0042646611109376]],[[-0.069443896412849,0.049650985747576,-0.065323561429977],[0.10476650297642,0.027806460857391,-0.0086862239986658],[0.064436160027981,-0.02735722437501,0.072258621454239]],[[-0.014363933354616,0.055201355367899,-0.0061454488895833],[0.062173698097467,0.018142057582736,-0.019271524623036],[0.036275308579206,-0.016805898398161,-0.046069230884314]],[[0.010243933647871,0.0047815446741879,-0.01381257083267],[0.020289814099669,0.048504810780287,0.0029710056260228],[0.093115828931332,-0.03762824088335,0.0020150085911155]],[[-0.0063317697495222,-0.054221246391535,0.043916121125221],[-0.020235411822796,0.024148974567652,0.069065488874912],[-0.026108792051673,-0.0627461373806,-0.026050580665469]],[[0.024860292673111,0.062673278152943,-0.016465447843075],[-0.058487016707659,-0.031037883833051,0.031188406050205],[-0.066055603325367,-0.060749474912882,-0.065038315951824]],[[0.0039540734142065,0.0042923437431455,0.0083074998110533],[0.097715154290199,0.062781900167465,0.012191079556942],[0.002057628473267,-0.095750167965889,-0.013021942228079]],[[-0.0049656596966088,-0.10423657298088,-0.037290249019861],[-0.057114109396935,-0.050640873610973,-0.020385675132275],[-0.049239493906498,0.035293102264404,-0.03761288523674]],[[0.086562909185886,-0.0095964334905148,-0.040753625333309],[0.012601187452674,-0.019849333912134,-0.035331897437572],[-0.017408335581422,-0.032153863459826,-0.01388247217983]],[[0.00063472910551354,-0.017187461256981,0.0018170356051996],[0.06426015496254,-0.035926200449467,0.029753683134913],[0.023100866004825,-0.039032839238644,-0.0026537880767137]],[[-0.0078403176739812,0.021736161783338,0.043009348213673],[0.025704951956868,0.036123972386122,-0.007797840051353],[-0.0023805361706764,-0.05097820982337,-0.052901543676853]],[[0.081961661577225,-0.03943820297718,-0.0055987010709941],[-0.0020854510366917,-0.036988720297813,0.0030865801963955],[-0.0081073874607682,-0.03440785035491,-0.0090402625501156]],[[0.015048646368086,0.082294322550297,0.031625021249056],[0.039171628654003,-0.04734144359827,0.020537706092],[0.012541112489998,-0.035820003598928,-0.010724524967372]],[[0.040697988122702,0.06365705281496,0.026933617889881],[-0.021405428647995,0.020692693069577,-0.013036550953984],[-0.052273310720921,0.0010791788809001,0.032013598829508]],[[-0.0098890997469425,0.0047607594169676,-0.035730056464672],[-0.06158871948719,-0.047617290169001,-0.060980413109064],[-0.031450647860765,-0.046322364360094,-0.11179432272911]],[[-0.023066816851497,-0.0042953202500939,0.015656121075153],[-0.010837323963642,0.018172910436988,0.022487122565508],[0.038765881210566,-0.041074674576521,-0.036995399743319]],[[0.043186258524656,0.042188495397568,0.057894948869944],[-0.019244505092502,-0.027055921033025,0.058366917073727],[-0.013874525204301,0.052757520228624,0.036364953964949]],[[-0.042100191116333,-0.029519122093916,-0.057353798300028],[-0.07573726028204,0.021758718416095,-0.082849197089672],[-0.050079129636288,4.5605316699948e-05,-0.048316031694412]],[[0.096906065940857,-0.043212957680225,0.034202419221401],[0.061356659978628,-0.033812966197729,-0.0061386874876916],[-0.1612264662981,-0.012658653780818,-0.064672261476517]],[[0.017482442781329,0.018515491858125,0.044505272060633],[0.039651036262512,0.021694406867027,0.030609970912337],[-0.082069039344788,0.090699896216393,0.0084513518959284]],[[0.085831299424171,-0.090981312096119,-0.12326519191265],[0.0029787668026984,0.021967899054289,-0.017025986686349],[0.00024925579782575,0.037823799997568,0.0053135682828724]],[[0.081631578505039,0.061939489096403,0.015561454929411],[-0.039236556738615,0.02025580778718,0.013203567825258],[-0.00065622897818685,0.03295137360692,0.038244184106588]],[[-0.043887212872505,-0.033811282366514,-0.041238434612751],[0.0030841373372823,-0.015226924791932,0.036857858300209],[0.0021840299014002,-0.046843089163303,-0.020574977621436]],[[0.039700306952,0.00079809624003246,-0.025802943855524],[0.0071905581280589,-0.1223599165678,-0.014768747612834],[-0.089645020663738,-0.13225291669369,-0.14148357510567]],[[0.018510652706027,-0.011951510794461,-0.049455389380455],[0.087665110826492,-0.021947735920548,-0.0057635037228465],[-0.053859408944845,-0.0020007374696434,0.011638953350484]],[[0.013874241150916,0.013443422503769,0.042359840124846],[0.050998520106077,0.0066040414385498,-0.071060217916965],[-0.024441882967949,0.023247078061104,0.0063472874462605]],[[0.0027148043736815,0.01385472714901,0.043692138046026],[0.024495899677277,0.017903633415699,0.039706207811832],[-0.0078540444374084,-0.045233361423016,0.0036733110900968]],[[0.0292216129601,-0.041122514754534,0.097254484891891],[0.052082192152739,-0.028075719252229,0.040218718349934],[-0.069268025457859,-0.040566768497229,0.025411836802959]],[[0.05881217494607,-0.0056079491041601,0.030272550880909],[0.013206250965595,0.0023846940603107,-0.032598428428173],[0.0017538203392178,-0.073409698903561,0.054530862718821]],[[-0.0029843528755009,-0.026699913665652,0.06824055314064],[0.017544198781252,0.0012738117948174,0.01912241987884],[0.011616409756243,0.020308380946517,-0.034920834004879]],[[-0.035542540252209,-0.043614782392979,0.085242815315723],[0.026558892801404,0.0096406498923898,0.0019245351431891],[-0.0057201818563044,-0.040296200662851,-0.067135125398636]],[[-0.044026982039213,-0.029520848765969,0.011300575919449],[-0.019806362688541,-0.060468532145023,0.021559085696936],[0.015251342207193,0.024470835924149,0.060854736715555]],[[-0.030919080600142,0.021986125037074,-0.022551864385605],[0.030861267820001,0.046482410281897,0.02182712033391],[-0.12352585792542,-0.010863966308534,-0.042264010757208]],[[-0.023171501234174,0.022009102627635,-0.005313700530678],[-0.022683685645461,-0.0217653978616,-0.072514779865742],[0.045964937657118,0.02300818823278,0.010087622329593]],[[-0.052213720977306,-0.032189656049013,-0.017334699630737],[0.02257558517158,0.080142006278038,0.052117373794317],[0.012934676371515,0.02934386394918,0.0083853518590331]],[[0.012771666049957,0.028998298570514,0.01757244206965],[0.0039707864634693,-0.017466638237238,-0.086149945855141],[0.018946820870042,0.030992351472378,-0.017216002568603]],[[0.044349577277899,-0.027205012738705,-0.028621112927794],[-0.024949084967375,0.028932901099324,-0.006699743680656],[-0.037405677139759,-0.1048264876008,-0.034295007586479]],[[0.014250642620027,-0.007623225916177,-0.072097897529602],[0.029728543013334,-0.038317535072565,-0.06695381551981],[-0.026931582018733,-0.0075157661922276,-0.073305331170559]],[[0.069843702018261,-0.024942664429545,0.025277383625507],[-0.033221833407879,0.050722200423479,0.019973056390882],[0.0065363915637136,0.030623285099864,0.040617082268]],[[-0.0095641408115625,0.028993843123317,-0.041292935609818],[-0.033684983849525,-0.0034641490783542,0.018726231530309],[0.0038368788082153,-0.057826276868582,-0.028192179277539]],[[0.040292374789715,-0.035031132400036,-0.040191806852818],[-0.10443233698606,-0.055306736379862,0.026623893529177],[-0.090817406773567,-0.041619766503572,0.0020995826926082]],[[0.069075644016266,0.065984942018986,0.087366670370102],[0.05195103213191,0.033108312636614,-0.01372778788209],[0.06875417381525,0.083137311041355,0.10329934954643]],[[0.018797850236297,0.013307529501617,0.044533781707287],[-0.02384683676064,-0.017197858542204,0.0090236142277718],[-0.033202391117811,-0.058919660747051,-0.017940428107977]],[[-0.01914181932807,-0.015390004962683,-0.026864282786846],[-0.032250545918941,0.025611201301217,-0.033071130514145],[-0.074197165668011,0.002132774097845,-0.013560088351369]],[[0.049640350043774,-0.030789947137237,0.029368029907346],[-0.034638900309801,0.055267378687859,0.053280934691429],[-0.084815084934235,-0.023435976356268,-0.05145051330328]],[[0.023588197305799,-0.014219807460904,-0.014461560174823],[-0.026611734181643,-0.017638707533479,0.06851913779974],[-0.027719890698791,0.0044156755320728,0.063903696835041]],[[-0.0019923343788832,-0.019598366692662,-0.084375381469727],[-0.014252997934818,0.070890404284,0.038685653358698],[-0.083597928285599,-0.02979183383286,-0.055531967431307]],[[-0.00023875670740381,0.0085670854896307,-0.037308439612389],[-0.050770666450262,0.023859441280365,-0.025344846770167],[0.02960367128253,0.056644774973392,0.053677257150412]],[[0.017283016815782,0.032668855041265,-0.073884099721909],[0.06086103990674,-0.027087509632111,-0.015305984765291],[-0.08221473544836,-0.034947276115417,-0.019342616200447]],[[-0.071328967809677,-0.087454311549664,-0.02668708562851],[-0.040569331496954,0.035388644784689,-0.00092310027685016],[-0.0023911029566079,0.016609760001302,-0.056400120258331]],[[0.094998382031918,0.051648333668709,-0.013438247144222],[0.011070352979004,-0.062857702374458,0.059825848788023],[-0.043734110891819,0.017255889251828,-0.057997226715088]],[[-0.087341748178005,0.016183773055673,0.0021047841291875],[-0.051972441375256,-0.049653753638268,-0.0079059759154916],[0.029570195823908,0.012141044251621,-0.057988774031401]]],[[[-0.094521164894104,-0.097482331097126,0.084948092699051],[-0.014536529779434,-0.0294448453933,0.079372957348824],[0.10171341896057,-0.043414615094662,0.035173002630472]],[[0.042416591197252,-0.00023180912830867,-0.001147192902863],[-0.0032206361647695,0.021761640906334,0.028015533462167],[-0.093486957252026,-0.052104935050011,-0.11192105710506]],[[0.037625059485435,-0.024887641891837,-0.025959873571992],[-0.069508269429207,-0.12759128212929,0.025874363258481],[0.026143383234739,-0.10068130493164,-0.081539623439312]],[[0.12273106724024,-0.20879863202572,0.093302667140961],[-0.19821059703827,0.092004656791687,-0.12593893706799],[0.072470463812351,-0.10566771775484,-0.063259392976761]],[[-0.099759884178638,0.021339122205973,-0.003889414248988],[0.048197910189629,-0.05751571804285,-0.059510227292776],[0.071998842060566,-0.10597421228886,0.038078308105469]],[[0.018790820613503,-0.065130889415741,0.070724189281464],[0.021870654076338,0.0012178687611595,-0.081579074263573],[-0.019618451595306,-0.003984188195318,-0.073649786412716]],[[0.017316659912467,-0.089818954467773,0.0047212294302881],[-0.11961109191179,-0.033321999013424,-0.039865076541901],[-0.057035431265831,-0.035907819867134,0.0069095701910555]],[[-0.040183424949646,-0.069478869438171,0.015675561502576],[-0.058301616460085,-0.063496530056,0.019292188808322],[-0.018982253968716,0.088159881532192,-0.00012177440657979]],[[0.043452218174934,0.027515601366758,0.066698417067528],[-0.069531925022602,0.024494027718902,-0.036654446274042],[-0.0051737162284553,0.05005494877696,-0.021533168852329]],[[-0.22165282070637,0.24340628087521,-0.1107029914856],[0.079707309603691,-0.14960642158985,-0.01820426248014],[0.076895862817764,-0.19764068722725,0.1172392219305]],[[0.0044994154013693,-0.024348547682166,-0.087238840758801],[-0.030618941411376,-0.042468883097172,0.027993429452181],[-0.0043124365620315,-0.047442156821489,-0.049022443592548]],[[-0.25445225834846,0.076671831309795,0.012348315678537],[0.19533525407314,-0.08040776103735,-0.045801274478436],[-0.17408725619316,0.050640009343624,0.049016762524843]],[[-0.057196348905563,0.029777809977531,-0.051591668277979],[0.08208866417408,0.00090761744650081,0.028977587819099],[-0.056975491344929,0.098626993596554,-0.070118270814419]],[[-0.0036695611197501,0.11430051922798,0.11025334149599],[-0.033128336071968,0.20563246309757,0.0069492268376052],[0.09644078463316,-0.13670611381531,0.19615630805492]],[[-0.10168748348951,-0.046967148780823,-0.079091556370258],[0.044846791774035,-0.070596165955067,0.17173007130623],[0.055732864886522,-0.068353474140167,-0.029986696317792]],[[0.024568688124418,-0.072578422725201,0.053676042705774],[0.10556837916374,-0.058421388268471,-0.0013558458304033],[-0.088360704481602,0.090087398886681,-0.070431709289551]],[[-0.23090767860413,-0.052459839731455,-0.23774261772633],[-0.1323037147522,-0.059299971908331,-0.22511695325375],[-0.12934498488903,-0.10711281746626,0.016715321689844]],[[-0.080819524824619,-0.13676449656487,0.013469887897372],[0.041097562760115,0.026585010811687,-0.1297549456358],[-0.16707563400269,0.003916559740901,-0.050228651612997]],[[0.053551144897938,-0.056893739849329,-0.037682678550482],[-0.085990503430367,-0.11272914707661,0.12759985029697],[-0.1948653459549,0.09129660576582,-0.13046549260616]],[[0.14573565125465,-0.071697473526001,-0.042804375290871],[-0.045124981552362,-0.05312742292881,0.021992145106196],[-0.075407989323139,0.092338986694813,-0.11792375892401]],[[-0.013727096840739,0.020521834492683,-0.036038212478161],[-0.022713327780366,-0.057178281247616,0.039314735680819],[-0.047253277152777,0.051616352051497,-0.018261168152094]],[[0.065268494188786,-0.16874808073044,0.14209516346455],[0.14591763913631,-0.075990453362465,-0.17039482295513],[-0.30992916226387,0.11024576425552,-0.10206569731236]],[[0.049005281180143,-0.055789384990931,0.023313701152802],[0.0094090076163411,0.061278589069843,0.0063133779913187],[-0.073226377367973,-0.033580008894205,0.0071293297223747]],[[0.08222408592701,-0.019637314602733,0.045793190598488],[-0.046364489942789,-0.001862755860202,0.045408047735691],[-0.036172479391098,-0.054069731384516,-0.020760992541909]],[[-0.01935307867825,0.064297996461391,0.025784600526094],[-0.02240345813334,0.12086374312639,-0.10758420825005],[0.041294246912003,-0.13659009337425,0.10642446577549]],[[0.013204692862928,-0.061425589025021,-0.09958778321743],[-0.086342923343182,-0.038236513733864,-0.0025945629458874],[0.080960817635059,-0.072526827454567,-0.010565363802016]],[[-0.02976044639945,0.11742401123047,-0.12043773382902],[-0.15674185752869,0.066995024681091,-0.047594226896763],[0.012933121062815,-0.069409750401974,-0.055554252117872]],[[0.043236061930656,0.015806220471859,-0.090430453419685],[-0.069038197398186,0.075705319643021,-0.0079706367105246],[0.11941995471716,-0.1550517231226,0.062356643378735]],[[-0.00079773308243603,-0.0086092185229063,-0.10404123365879],[-0.056197796016932,0.039620831608772,-0.030308762565255],[0.029446575790644,-0.024735709652305,0.14882992208004]],[[0.04158129543066,0.10383073985577,-0.050251636654139],[-0.081639289855957,0.031108271330595,0.025132218375802],[0.070278219878674,-0.078666605055332,0.13101997971535]],[[-0.073986530303955,-0.034870859235525,-0.037137988954782],[-0.052020993083715,0.060684971511364,-0.10706289857626],[0.13617525994778,-0.11207684874535,0.013470533303916]],[[0.060531925410032,-0.048265401273966,0.12682236731052],[-0.026417849585414,0.11279927194118,-0.031021533533931],[-0.12845486402512,0.056350015103817,0.017813267186284]],[[0.011071676388383,-0.0094527173787355,-0.11760749667883],[0.02040757983923,-0.020919049158692,-0.090263053774834],[-0.0099807903170586,0.13736997544765,0.036163866519928]],[[0.050691232085228,-0.049587607383728,-0.019643876701593],[-0.081260874867439,-0.081571884453297,-0.080080293118954],[-0.065021090209484,-0.025075836107135,-0.2354970574379]],[[0.067870542407036,-0.0088958637788892,-0.063313186168671],[-0.13701288402081,-0.023479450494051,-0.053553361445665],[0.082439079880714,-0.062694698572159,0.058836597949266]],[[-0.055293787270784,0.024392096325755,-0.055477574467659],[0.050505489110947,-0.064202561974525,0.072229966521263],[-0.040827836841345,-0.097604811191559,-0.11694081127644]],[[0.096193075180054,-0.019902382045984,0.13055208325386],[-0.055929485708475,0.00022335634275805,-0.11281219869852],[-0.021761009469628,0.087829656898975,-0.12075331062078]],[[0.0081849079579115,-0.081273086369038,0.16949592530727],[-0.18242500722408,0.10886401683092,-0.099378935992718],[0.10172096639872,-0.064243346452713,0.15202993154526]],[[-0.13630545139313,0.032426979392767,-0.03528443723917],[-0.021701958030462,-0.029526861384511,0.064033269882202],[0.038131181150675,0.00019690531189553,-0.018084960058331]],[[0.028159448876977,-0.020214445888996,0.069628328084946],[0.10876577347517,-0.15505829453468,0.11903227865696],[-0.16252100467682,0.16307640075684,-0.10262909531593]],[[-0.04612547904253,-0.002975428942591,0.039381794631481],[-0.072474412620068,-0.016555087640882,-0.10969191044569],[-0.024208083748817,-0.084782280027866,-0.0010513075394556]],[[-0.19983346760273,0.08010970056057,0.011114564724267],[0.0085241850465536,-0.091324515640736,-0.12420544028282],[-0.019571011886001,0.011616832576692,0.14211215078831]],[[-0.0022284989245236,-0.058427076786757,-0.004845411516726],[0.025486189872026,-0.05025202780962,0.024775693193078],[-0.062008373439312,0.0268932916224,-0.070527285337448]],[[0.13796938955784,-0.22313749790192,0.1270427107811],[-0.15623573958874,-0.046262677758932,-0.13936229050159],[0.0284991171211,-0.043824568390846,0.049407094717026]],[[0.07380136102438,0.016772834584117,-0.069375678896904],[-0.095060855150223,0.055049922317266,0.044808071106672],[-0.014967299997807,-0.14502124488354,0.032688464969397]],[[0.042392563074827,0.0073441090062261,0.059351183474064],[0.0051359999924898,0.1340316683054,-0.091132059693336],[-0.070934928953648,0.095365293323994,-0.028992276638746]],[[0.11307157576084,0.027097186073661,0.033433020114899],[-0.073377065360546,-0.12631227076054,-0.039797227829695],[-0.16274572908878,0.23079538345337,-0.19507038593292]],[[-0.025594120845199,-0.030482806265354,-0.10078209638596],[0.021338539198041,-0.0039383522234857,0.00034295581281185],[0.052709672600031,-0.13936287164688,0.071647763252258]],[[0.031926658004522,-0.090637713670731,0.078357510268688],[0.04021280631423,0.10814345628023,-0.04135736823082],[-0.054724350571632,-0.06540048122406,-0.12924095988274]],[[0.086001537740231,-0.039224278181791,0.030524456873536],[0.011291969567537,-0.016789726912975,0.099545978009701],[-0.00058105186326429,0.017325544729829,-0.076640501618385]],[[0.017737513408065,-0.030726674944162,0.029350999742746],[-0.018339183181524,-0.022751618176699,0.080986700952053],[0.089328043162823,-0.014671701006591,0.024174094200134]],[[-0.004065043758601,0.039920572191477,-0.061469301581383],[0.020347664132714,0.053715165704489,-0.041606828570366],[-0.046303622424603,-0.079809345304966,0.054008394479752]],[[-0.068550057709217,0.008855240419507,0.035166323184967],[-0.060392878949642,-0.083490386605263,0.084794335067272],[-0.13482001423836,0.10573387145996,-0.25554877519608]],[[-0.0042383349500597,0.079928427934647,0.08050175756216],[0.12241685390472,0.049024604260921,0.043643958866596],[0.17782641947269,0.10058033466339,0.084885984659195]],[[0.016708176583052,-0.16724474728107,0.086777471005917],[-0.014705516397953,-0.048392489552498,-0.035911846905947],[0.0074360659345984,-0.13496825098991,0.14410692453384]],[[0.03996542096138,-0.024235546588898,0.027782838791609],[-0.0057218540459871,0.01497704628855,0.048044722527266],[0.034918487071991,0.04262912273407,-0.079592101275921]],[[-0.028271840885282,-0.083764590322971,-0.099334381520748],[-0.050443135201931,0.070795632898808,-0.09368047118187],[-0.11185876280069,0.10862964391708,-0.070669896900654]],[[-0.014473067596555,-0.020943187177181,-0.026949333027005],[-0.056633848696947,-0.010094818659127,-0.068194963037968],[0.063260704278946,-0.096112675964832,0.056642279028893]],[[-0.24233438074589,-0.058353841304779,-0.021444737911224],[-0.29911896586418,0.045085623860359,-0.30281966924667],[-0.31383520364761,-0.19174893200397,0.14502127468586]],[[-0.0083443904295564,0.027235586196184,-0.006551330909133],[-0.039992030709982,0.0026111979968846,-0.015742732211947],[0.035414408892393,0.044429164379835,0.0022793682292104]],[[0.031610526144505,-0.11250155419111,0.095065623521805],[0.056744534522295,0.030692784115672,-0.045144766569138],[-0.083215668797493,0.056022115051746,0.038481082767248]],[[-0.13213025033474,0.11359106749296,-0.094946444034576],[0.23715154826641,-0.062828317284584,-0.040589839220047],[-0.0014084950089455,-0.072922833263874,0.017437757924199]],[[-0.1738895624876,0.083211950957775,-0.2067836523056],[0.15521992743015,-0.14473600685596,0.056110445410013],[-0.15387606620789,0.069838978350163,-0.10583763569593]],[[-0.067742392420769,-0.038663387298584,-0.0645502358675],[0.036545038223267,-0.076687254011631,0.04680098220706],[-0.085204012691975,0.080467060208321,0.01449609734118]]],[[[0.048810109496117,0.0069395946338773,0.057497810572386],[-0.016992004588246,0.07974711805582,0.096749648451805],[-0.024138800799847,-0.042964328080416,-0.086007043719292]],[[-0.03038833476603,-0.004459435120225,-0.02012112736702],[-0.021247949451208,0.031405154615641,-0.019062109291553],[0.0053383824415505,-0.01919300109148,0.023362439125776]],[[-0.084457330405712,-0.032822586596012,0.053217027336359],[-0.012131826020777,-0.032231621444225,0.059607516974211],[0.001710198353976,0.027851030230522,-0.057650618255138]],[[-0.0068873353302479,0.046077128499746,-0.043984152376652],[0.0155178476125,-0.01365933008492,0.017335940152407],[-0.015161893330514,-0.00018747744616121,0.062464583665133]],[[0.006578435190022,0.078016892075539,-0.049943961203098],[-0.034531071782112,-0.051456119865179,0.021364433690906],[-0.032446675002575,-0.076649732887745,0.064389608800411]],[[-0.02144511975348,0.033146198838949,-0.096422925591469],[-0.020020268857479,0.16939274966717,-0.06674163043499],[-0.11224771291018,0.090839318931103,-0.02647884003818]],[[-0.022787913680077,0.003996588755399,-0.016664626076818],[0.010604137554765,-0.030711518600583,0.0023450555745512],[-0.00049448478966951,-0.067700810730457,-0.057948976755142]],[[-0.027861524373293,0.039055436849594,0.015233539044857],[0.033233501017094,0.0026032624300569,0.0021128626540303],[0.015939988195896,0.027149111032486,0.031725071370602]],[[-0.0011513030622154,-0.041531633585691,-0.10811084508896],[-0.022175662219524,-0.050838369876146,-0.045664139091969],[-0.064888097345829,-0.0087933819741011,-0.0012877527624369]],[[0.041816137731075,-0.044455610215664,0.022425912320614],[-0.012667423114181,-0.02374136634171,-0.042159643024206],[0.026833245530725,0.029876066371799,-0.053550649434328]],[[-0.054664593189955,0.015439222566783,0.095403164625168],[-0.012134960852563,-0.026845740154386,0.049840055406094],[-0.070875816047192,-0.030938511714339,0.05653440579772]],[[0.010046540759504,0.0017640937585384,-0.01958685182035],[0.02588096819818,0.0071540027856827,0.010976900346577],[0.044678159058094,0.004889365285635,0.050755448639393]],[[-0.032347075641155,-0.053179357200861,-0.036004818975925],[-0.098175533115864,-0.027752241119742,-0.035633988678455],[0.018316140398383,0.0057859588414431,0.092412725090981]],[[0.084842137992382,0.032004572451115,0.064095787703991],[-0.071535661816597,0.0098926955834031,0.061304528266191],[-0.0013694457011297,-0.015940878540277,0.026755830273032]],[[0.014256095513701,-0.04079907387495,-0.022496040910482],[0.018378870561719,0.03064483217895,0.057151053100824],[0.017684007063508,0.011636955663562,0.067415237426758]],[[-0.04902957752347,-0.052745506167412,0.039029091596603],[0.048910517245531,-0.030375804752111,-0.02493236027658],[0.0404865257442,0.020831568166614,2.533996666898e-05]],[[-0.027695078402758,-0.062847062945366,0.037042293697596],[0.046487998217344,0.14729528129101,0.099976383149624],[0.0064121568575501,0.00021015274978708,0.02201010659337]],[[-0.0073982691392303,-0.032259132713079,0.0012858855770901],[-0.01541099883616,-0.016551891341805,0.011329780332744],[0.030933784320951,0.014193560928106,-0.020814176648855]],[[0.013674611225724,-0.026927856728435,-0.053458604961634],[0.024224035441875,0.02339150942862,0.034900069236755],[-0.030499028041959,-0.029554687440395,-0.039930287748575]],[[0.0075432420708239,0.0044219410046935,-0.047428753226995],[0.019689561799169,0.053728900849819,0.021569296717644],[0.037203006446362,-0.088811300694942,-0.043750006705523]],[[0.1311871856451,0.018870176747441,0.060072995722294],[0.089898288249969,-0.012940973043442,0.027169702574611],[0.081302247941494,0.0837776735425,0.073378644883633]],[[0.017700212076306,-0.0070537752471864,0.011311206966639],[0.020939996466041,-0.0036782422102988,-0.017138445749879],[-0.015471669845283,0.019923495128751,-0.012400107458234]],[[0.037038248032331,-0.022226655855775,0.038237534463406],[0.011363854631782,0.035659410059452,-0.004681455437094],[-0.0092572700232267,-0.01319111417979,-0.051804754883051]],[[0.0018491540104151,-0.020328352227807,0.014984405599535],[0.012538770213723,-0.086387723684311,0.0069902325049043],[0.0027967456262559,0.088172018527985,-0.061554666608572]],[[-0.02560805529356,0.036776233464479,-0.075776949524879],[0.0015859887935221,-0.065018899738789,0.072193816304207],[0.039943560957909,-0.002326478715986,-0.084337696433067]],[[0.063912153244019,-0.094833001494408,-0.061725929379463],[-0.026561236009002,0.013951999135315,0.040759228169918],[-0.026822727173567,0.030268128961325,0.043315928429365]],[[-0.074583865702152,-0.030560879036784,-0.039839424192905],[-0.017411863431334,0.017046295106411,-0.0078909583389759],[0.020737217739224,0.062514618039131,-0.0051080323755741]],[[0.02507146820426,0.035525780171156,0.085308738052845],[-0.019806852564216,0.066094897687435,-0.012096489779651],[0.048811133950949,0.0057328124530613,0.068419374525547]],[[-0.11560303717852,-0.11679068207741,0.019913464784622],[-0.040354371070862,-0.043365754187107,0.046934895217419],[0.087204828858376,0.050838183611631,0.036369375884533]],[[-0.052885852754116,-0.077418901026249,-0.044880140572786],[-0.014413954690099,0.03538241609931,0.012773071415722],[-0.03042870387435,0.028745383024216,0.0131856482476]],[[-0.030357705429196,0.02000779658556,0.026094360277057],[-0.0034692981280386,-0.030849173665047,-0.062058907002211],[-0.078386887907982,0.022607365623116,0.041808743029833]],[[0.066665396094322,-0.030640443786979,-0.070823647081852],[0.035799216479063,-0.0057123461738229,0.032653283327818],[0.059300627559423,0.085328534245491,0.040691565722227]],[[0.045910079032183,0.06184596195817,-0.031585678458214],[0.043750233948231,0.0077234171330929,0.044526595622301],[-0.0010769891086966,-0.049610640853643,-0.036060012876987]],[[0.050958253443241,-0.082326628267765,-0.096516586840153],[-0.047376837581396,-0.027777021750808,0.058844491839409],[-0.0083153937011957,0.048087820410728,-0.028811514377594]],[[0.0023997069802135,-0.058458391577005,0.030193626880646],[0.020382340997458,0.015815867111087,0.043443989008665],[0.010323717258871,-0.018458817154169,-0.063978344202042]],[[-0.063313961029053,-0.072391040623188,-0.060142602771521],[-0.013264216482639,-0.039597950875759,-0.082449927926064],[-0.012562904506922,-0.051641035825014,-0.064960062503815]],[[0.022370453923941,0.02714685164392,0.066937908530235],[-0.037505805492401,-0.029528358951211,0.0016782820457593],[0.10220336914062,0.056158252060413,0.01110627502203]],[[0.021332953125238,0.023747846484184,-0.015126867219806],[-0.011251097545028,0.057380806654692,-0.035336058586836],[-0.0011315625160933,-0.029764078557491,0.0047278921119869]],[[0.050793245434761,0.011062362231314,0.10697619616985],[-0.022393574938178,0.020196678116918,0.021944493055344],[-0.011821406893432,-0.018357688561082,0.0038586528971791]],[[0.056039303541183,-0.057981517165899,0.029398547485471],[-0.039709709584713,0.038145639002323,0.0079435762017965],[0.012579986825585,-0.025215335190296,0.017474360764027]],[[-0.02133415825665,0.057822655886412,-0.07669760286808],[-0.010207951068878,-0.012828689068556,0.083256408572197],[-0.0072227162308991,0.020240584388375,-0.011624303646386]],[[0.05544962733984,0.0057242373004556,0.080924727022648],[0.071095556020737,-0.087589547038078,-0.03741493076086],[-0.011076086200774,-0.063971474766731,0.040703438222408]],[[0.026927415281534,0.029695533216,0.028994385153055],[-0.0055606830865145,0.034888233989477,-0.0022184480912983],[-0.030607106164098,-0.05591107159853,0.011970159597695]],[[-0.011453097686172,-0.037763822823763,-0.023729300126433],[0.00094566534971818,0.012851254083216,0.047805845737457],[-0.087688520550728,0.010055408813059,0.0094235297292471]],[[0.0042960639111698,-0.024489972740412,-0.056345328688622],[0.012289418838918,-0.012888106517494,0.0032750233076513],[-0.070128716528416,0.042177904397249,-0.023289926350117]],[[0.063498139381409,0.06497685611248,0.019294714555144],[-0.010424922220409,-0.0039536524564028,-0.040927045047283],[-0.044489976018667,-0.057989589869976,0.012625617906451]],[[-0.048360902816057,-0.078972585499287,0.0024810582399368],[-0.010066050104797,0.054955124855042,0.057003974914551],[-0.11559671908617,0.010362337343395,-0.072283960878849]],[[0.04838702455163,-0.010008768178523,0.010246432386339],[-0.008072535507381,0.024969233199954,-0.022951265797019],[0.044687192887068,0.01299945730716,0.04093824326992]],[[0.025076514109969,-0.06425816565752,-0.0067987353540957],[-0.010627066716552,-0.042389381676912,-0.0037114499136806],[-0.016929795965552,-0.059042766690254,0.031272035092115]],[[0.026315428316593,0.096482902765274,-0.0084900567308068],[0.058656051754951,0.0099693574011326,0.011840056627989],[0.0045990590006113,-0.01029902882874,-0.0094181383028626]],[[3.0141725801514e-05,-0.0067173661664128,0.025454074144363],[-0.0013476001331583,0.030655791983008,0.02544141933322],[-0.01931057497859,-0.02645462565124,-0.017720276489854]],[[0.0085972491651773,0.036334577947855,0.053998567163944],[0.054443333297968,0.038269300013781,0.053945243358612],[-0.00064020609715953,-0.059750355780125,0.076639257371426]],[[-0.015238174237311,0.0094520123675466,-0.060407813638449],[-0.0050053130835295,-0.0065105580724776,0.0019394501578063],[0.039064154028893,-0.035711195319891,-0.030334491282701]],[[0.016495866701007,0.14574654400349,0.050926759839058],[0.041902177035809,0.0041384780779481,0.044723782688379],[-0.015673898160458,-0.028259554877877,0.012678578495979]],[[0.10147819668055,-0.009917133487761,0.038733303546906],[-0.034499764442444,-0.019687332212925,-0.034850127995014],[-0.00018085545161739,0.0051441532559693,0.028853887692094]],[[-0.038139574229717,-0.0033261447679251,-0.057963386178017],[0.043028499931097,-0.062234479933977,-0.089550636708736],[0.019609900191426,0.066302001476288,-0.026553058996797]],[[-0.0094336159527302,0.058581277728081,0.059500150382519],[0.042385991662741,0.013681396842003,0.056924443691969],[-0.0053362501785159,0.042151145637035,-0.016683561727405]],[[0.0074389209039509,-0.028585212305188,0.030343135818839],[-0.0040659378282726,0.028559243306518,0.043992735445499],[-0.0084069883450866,0.0095858769491315,0.107241936028]],[[-0.067963890731335,0.0023412404116243,0.0091963270679116],[0.0041021034121513,-0.059708975255489,0.056472811847925],[-0.036374174058437,0.0058210860006511,0.024918135255575]],[[-0.0010336773702875,-0.023481694981456,0.027302980422974],[-0.014143577776849,0.0048124394379556,-0.025221049785614],[0.015220231376588,0.039690900593996,0.053688034415245]],[[0.0091238068416715,0.013309885747731,0.02845698967576],[0.053095530718565,0.020349850878119,0.051218580454588],[-0.06145004183054,0.017715238034725,-0.0093388659879565]],[[0.013331118039787,0.0073611042462289,-0.070694655179977],[-0.025460924953222,0.01106480602175,0.052623279392719],[-0.084304392337799,0.010345378890634,-0.01538450922817]],[[0.088725581765175,-0.0016488203546032,-0.028304940089583],[0.001018357812427,-0.018239228054881,0.029613880440593],[-0.056978534907103,-0.006255466490984,-0.03183426707983]],[[-0.022825790569186,0.0075426180846989,0.0020283898338675],[0.071568012237549,0.037075262516737,-0.016379838809371],[0.022502895444632,0.0047904928214848,-0.011797964572906]]],[[[-0.061165928840637,0.10858462005854,0.037556525319815],[0.058207105845213,-0.0062610786408186,0.0079803112894297],[0.083668775856495,-0.054178643971682,-0.048614304512739]],[[0.029426353052258,0.024584703147411,0.051432207226753],[0.024085208773613,0.00037603959208354,0.0097536202520132],[0.046838872134686,-0.054081950336695,-0.022176891565323]],[[0.038868431001902,-0.015592227689922,0.023012222722173],[0.069336771965027,0.0017739027971402,-0.035094514489174],[-0.01782400906086,-0.048935290426016,-0.033366445451975]],[[-0.014287129044533,-0.0049764062277973,-0.043769173324108],[0.0073000215925276,0.054037392139435,-0.030056143179536],[-0.0036472424399108,-0.01944662630558,-0.055361662060022]],[[-0.022783098742366,-0.011901501566172,0.040181670337915],[0.062835231423378,0.028355523943901,-0.0028471446130425],[-0.033791288733482,-0.026838263496757,-0.092664785683155]],[[-0.082511194050312,0.18143981695175,-0.038904249668121],[0.051091022789478,-0.039676543325186,0.076624669134617],[0.10715454816818,-0.16750647127628,-0.038563918322325]],[[-0.058964774012566,-0.033338747918606,0.033706154674292],[0.051277343183756,-0.0075455522164702,-0.020581118762493],[0.028922745957971,0.021819496527314,0.033948834985495]],[[-0.070433437824249,0.045354466885328,-0.028086232021451],[-0.0083340769633651,-0.013080520555377,-0.034253988415003],[-0.026425734162331,-0.0068918247707188,0.0010138518409804]],[[0.018485771492124,0.011928723193705,-0.050662495195866],[0.021998671814799,0.0035362234339118,0.0027520982548594],[-0.030954537913203,0.0053711575455964,-0.014741070568562]],[[0.035479854792356,0.0070812911726534,0.044490706175566],[0.028873551636934,0.049385063350201,-0.031464789062738],[-0.016454145312309,-0.054951079189777,0.0063719283789396]],[[-0.0022434608545154,0.065000645816326,0.0048090592026711],[-0.055851817131042,-0.018370131030679,-0.012306183576584],[-0.0088522266596556,-0.012688373215497,-0.090614505112171]],[[-0.020409215241671,0.027985729277134,0.030244955793023],[0.030219305306673,0.042196091264486,-0.059626840054989],[-0.020780432969332,0.017664613202214,0.024968622252345]],[[-0.043044917285442,0.0073974137194455,-0.035467382520437],[0.020293522626162,0.050191946327686,-0.050061948597431],[-0.025433225557208,0.010492823086679,-0.040400434285402]],[[-0.054507028311491,-0.0039350925944746,-0.056725427508354],[-0.021743409335613,-0.017416436225176,0.079136446118355],[0.059298031032085,0.037851367145777,0.058190658688545]],[[0.023584490641952,0.030768966302276,0.064965754747391],[0.0079017030075192,-0.015725202858448,-0.03812076151371],[0.052771687507629,0.013148944824934,-0.02182736620307]],[[0.033947173506021,0.014512619003654,-0.015348946675658],[0.019860751926899,0.011860788799822,-0.025573782622814],[-0.022662961855531,-0.0014094021171331,-0.073168933391571]],[[-0.025476993992925,0.0053460667841136,0.064831092953682],[-0.0060922200791538,-0.033522319048643,0.043289594352245],[-0.0022352582309395,0.00010981802188326,-0.024870535358787]],[[0.03035675175488,-0.012135773897171,-0.019612807780504],[-0.027021387591958,-0.013505113311112,-0.067577309906483],[-0.033331654965878,-0.025816207751632,-0.051658216863871]],[[-0.005115897860378,-0.015867829322815,-0.028941851109266],[-0.033901605755091,-0.018726382404566,-0.046769477427006],[-0.012634438462555,-0.029249649494886,0.034853167831898]],[[-0.083587974309921,-0.043731279671192,-0.0060763647779822],[0.092236645519733,-0.00038825834053569,0.015252524055541],[0.010426081717014,0.025561342015862,-0.092285983264446]],[[-0.046977836638689,-0.036195807158947,0.10729574412107],[-0.048364337533712,-0.050485748797655,0.028930572792888],[0.013674948364496,0.078314363956451,0.058795709162951]],[[-0.052021056413651,0.016819274052978,-0.044458966702223],[0.0067360298708081,-0.035644568502903,-0.013283639214933],[0.028710583224893,-0.012755651958287,0.011441141366959]],[[0.05759447440505,0.012490944936872,-0.036867752671242],[-0.067854285240173,-0.053282275795937,0.0033606579527259],[0.03611871227622,0.024566641077399,-0.013516589067876]],[[-0.006444341968745,0.01709346100688,0.059295054525137],[0.068143725395203,-0.036646939814091,0.021432189270854],[0.02215807326138,-0.045716293156147,-0.066297858953476]],[[-0.040251012891531,-0.0246616397053,0.011833649128675],[-0.01125985942781,-0.025991436094046,0.018731320276856],[0.049182143062353,-0.03390958160162,0.0400410592556]],[[-0.011550639756024,-0.032231651246548,-0.040413565933704],[0.038996331393719,0.036775153130293,0.0064859315752983],[0.0026229256764054,0.016587700694799,0.0030213280115277]],[[-0.0024275353644043,0.028036087751389,0.039417255669832],[-0.082255154848099,-0.032196972519159,0.052185002714396],[0.0051324060186744,-0.044459231197834,0.0049073360860348]],[[0.001401147688739,-0.017156478017569,-0.0273706484586],[-0.054994828999043,0.042019132524729,-0.019802428781986],[0.053660456091166,-0.0025302059948444,0.015375916846097]],[[0.065378598868847,0.0074730417691171,0.019362976774573],[-0.020254770293832,0.0094559220597148,-0.0025035615544766],[-0.087593130767345,-0.00098283542320132,-0.0036703031510115]],[[-0.02472323551774,0.10489533096552,0.060641586780548],[0.041623886674643,0.0019578225910664,-0.00066999037517235],[0.055307004600763,-0.04659541323781,-0.034871447831392]],[[0.093000493943691,-0.0082469694316387,-0.0047205444425344],[-0.0056799645535648,-0.07066784799099,-0.04135150834918],[-0.010539633221924,-0.0031240074895322,-0.016524586826563]],[[0.046293370425701,-0.023665180429816,0.039351623505354],[0.019196283072233,-0.019008515402675,0.095567137002945],[-0.024031069129705,-0.010933319106698,-0.038482695817947]],[[0.016811456531286,-0.010975433513522,-0.059109717607498],[-0.0019010495161638,-0.020919939503074,0.092775218188763],[-0.016573326662183,0.033915836364031,-0.051839079707861]],[[-0.00085472781211138,-0.05918600782752,-0.016198506578803],[0.09983267635107,0.02697828412056,-0.1003448292613],[-0.027028359472752,-0.04108938574791,-0.081469722092152]],[[0.034988570958376,-0.041075427085161,0.022776108235121],[-0.036482729017735,0.021811012178659,0.043657753616571],[0.026476003229618,0.036784362047911,-0.050479400902987]],[[-0.039305552840233,-0.012065336108208,-0.078996889293194],[-0.041943300515413,-0.0099295768886805,0.039719339460135],[0.031251221895218,0.012292618863285,0.013668308034539]],[[0.060832999646664,0.0057042655535042,-0.059637580066919],[-0.035249575972557,0.052133657038212,0.021739162504673],[-0.021221023052931,-0.050292879343033,-0.026163391768932]],[[0.032200306653976,0.024019155651331,0.024207770824432],[-0.032263051718473,0.054783053696156,-0.0068882741034031],[-0.010627414099872,-0.079339943826199,-0.018486343324184]],[[0.05800299346447,-0.027064815163612,0.096379019320011],[0.018297022208571,-0.069620467722416,-0.060655146837234],[-0.024078197777271,0.044821165502071,-0.050004050135612]],[[0.025294797495008,-0.0024401950649917,0.050988372415304],[0.044529058039188,-0.069795690476894,-0.014287904836237],[0.066158942878246,-0.046465590596199,0.067363746464252]],[[-0.061780426651239,-0.064223311841488,0.06125671043992],[0.017165761440992,-0.0089912759140134,-0.02199918217957],[-0.011817662976682,-0.019132170826197,-0.008314442820847]],[[-0.024276964366436,-0.0067470627836883,-0.010162495076656],[0.012608356773853,-0.095503963530064,0.010064849629998],[-0.0037389434874058,-0.0031722695566714,0.072886407375336]],[[-0.030339244753122,-0.073972046375275,0.063712902367115],[-0.077036574482918,0.025302240625024,0.042971316725016],[-0.038656923919916,0.018091596662998,-0.005627999547869]],[[0.061353847384453,0.023408757522702,-0.04200940951705],[-0.032188083976507,-0.060413718223572,0.0070985890924931],[-0.007968177087605,0.031325295567513,-0.060360636562109]],[[0.019035991281271,-0.00096420361660421,0.018762612715364],[-0.09190122038126,0.060590654611588,-0.036444805562496],[-0.053000152111053,0.0044913338497281,-0.013193766586483]],[[-0.011629243381321,-0.0428077429533,0.03924436122179],[0.053582258522511,-0.036264684051275,0.036869529634714],[-0.087163046002388,0.04432987049222,0.0086736110970378]],[[0.01925415918231,0.0028493362478912,0.00024531179224141],[-0.059374112635851,-0.0010158324148506,0.074219755828381],[0.024721037596464,0.023338617756963,0.032714486122131]],[[0.066887959837914,-0.0033691497519612,0.069855697453022],[0.014244118705392,0.0042925248853862,-0.010562702082098],[-0.010179628618062,0.021870596334338,-0.052656698971987]],[[0.066575646400452,0.00048087385948747,-0.029859442263842],[0.083413176238537,-0.025758190080523,-0.061768729239702],[0.029331693425775,-0.034505475312471,-0.0097773121669888]],[[-0.018503138795495,0.084911607205868,-0.0053218458779156],[-0.0093838246539235,-0.05117667093873,0.074288763105869],[-0.020673839375377,0.081899113953114,0.036431849002838]],[[-0.046736143529415,0.032485738396645,0.036434058099985],[-0.034399308264256,-0.025804968550801,-0.040886476635933],[0.0016916391905397,-0.013177550397813,-0.04152850061655]],[[0.055435568094254,0.0095062078908086,0.017099492251873],[-0.028458653017879,-0.0043997243046761,0.086051918566227],[0.026068955659866,-0.052905309945345,0.022722302004695]],[[0.02914042212069,0.022015195339918,-0.035578262060881],[-0.033603589981794,-0.016284136101604,-0.0010325683979318],[0.033504251390696,0.038619302213192,-0.033109977841377]],[[0.014463644474745,0.037977445870638,0.12349665164948],[0.018070068210363,0.055054798722267,0.044536061584949],[0.047392055392265,0.020729620009661,0.059281561523676]],[[0.041874915361404,-0.024787936359644,-0.097797445952892],[0.026659173890948,-0.073674492537975,-0.024070054292679],[-0.01215750630945,0.057678617537022,0.0028597239870578]],[[0.016328681260347,-0.0043129287660122,0.034459784626961],[0.022854901850224,0.00053843006026,-0.0028630055021495],[-0.018084665760398,-0.013738561421633,-0.0084189353510737]],[[0.046610601246357,0.07193660736084,-0.03711150214076],[-0.005285813473165,-0.017921339720488,0.0083295563235879],[-0.035385273396969,-0.034904234111309,-0.026691822335124]],[[-0.022155730053782,0.014917760156095,0.076378799974918],[0.03879027068615,-0.024834694340825,0.07122191041708],[0.0019413609988987,-0.058280494064093,0.047522895038128]],[[0.034786511212587,-0.062001083046198,0.023895889520645],[0.056991901248693,-0.037833318114281,0.04523017629981],[0.0078034796752036,0.0012710921000689,-0.012866257689893]],[[-0.0090586002916098,0.026369873434305,0.042579591274261],[-0.0296038556844,0.008899942971766,-0.0023303458001465],[-0.017492270097136,0.038473714143038,0.013842863030732]],[[-0.014685488305986,-0.024970104917884,-0.0062251118943095],[0.0085767675191164,-0.03172805160284,0.0037775801029056],[0.089870266616344,-0.034049421548843,-0.038535617291927]],[[-0.0038932813331485,0.018520446494222,-0.027473594993353],[0.13047526776791,0.010049493052065,0.0096039585769176],[-0.039127193391323,0.050121497362852,-0.028803769499063]],[[-0.040921304374933,0.072819739580154,0.0046020499430597],[-0.005096741952002,-0.0040776687674224,-0.050052892416716],[-0.013086230494082,-0.070690549910069,-0.038685396313667]],[[0.049269881099463,0.03888725861907,0.052455067634583],[-0.068656280636787,-0.040427211672068,-0.0014186637708917],[-0.084323659539223,-0.0032071762252599,-0.064965851604939]]],[[[0.14933769404888,0.22340305149555,0.016779966652393],[-0.086955308914185,0.13759657740593,0.097424425184727],[0.0090184304863214,-0.015655249357224,-0.091350838541985]],[[-0.0033353506587446,0.020191175863147,0.023703999817371],[0.05628826469183,-0.14416348934174,0.081052727997303],[-0.0016232494963333,-0.028095418587327,-0.036987133324146]],[[-0.031973604112864,0.0030230591073632,-0.017502937465906],[-0.060769557952881,-0.082915462553501,-0.25713577866554],[-0.049987483769655,-0.021831348538399,-0.058023598045111]],[[-0.073650978505611,0.0084792971611023,0.084218867123127],[-0.021251061931252,0.0049643428064883,0.036252122372389],[-0.06900842487812,-0.091782882809639,-5.3219400797389e-06]],[[-0.019649151712656,-0.12630099058151,0.01000361610204],[-0.044985890388489,-0.077567473053932,-0.024211093783379],[0.0032196831889451,-0.10798664391041,-0.040270444005728]],[[-0.084400214254856,-0.052781917154789,0.069104798138142],[-0.076244950294495,-0.1347841322422,0.024488538503647],[-0.1125146523118,-0.049424983561039,0.009778163395822]],[[-0.060150615870953,-0.046634592115879,-0.061363343149424],[-0.14956131577492,-0.063889816403389,-0.034802321344614],[-0.11434940993786,-0.16354569792747,-0.13138794898987]],[[-0.10329768061638,-0.14005102217197,-0.033605434000492],[-0.10013047605753,-0.086429879069328,-0.052240576595068],[-0.10648614168167,-0.0052752871997654,-0.018880039453506]],[[0.043874237686396,-0.059864524751902,0.054730970412493],[-0.016953701153398,-0.0095322979614139,-0.04623968526721],[-0.030029157176614,-0.040946036577225,0.024238022044301]],[[0.026015201583505,-0.013410618528724,-0.042287927120924],[0.0016136323101819,0.061930004507303,-0.00098873639944941],[-0.078009530901909,0.020923286676407,0.091001458466053]],[[0.092185616493225,-0.003364269156009,0.10226452350616],[-0.043373458087444,0.050788879394531,-0.010576255619526],[-0.057130396366119,-0.12872393429279,0.057808641344309]],[[0.0077884891070426,-0.088740266859531,-0.031096864491701],[0.0022248837631196,-0.034769218415022,0.0024406102020293],[-0.049508355557919,-0.061014514416456,0.024644559249282]],[[-0.0054295463487506,-0.0089638829231262,-0.041389655321836],[-0.048576060682535,-0.046491198241711,-0.047129757702351],[-0.022369418293238,-0.070067062973976,-0.073975093662739]],[[0.094858959317207,0.048310041427612,-0.02430778183043],[0.11869597434998,0.14690361917019,0.16206446290016],[0.079887248575687,0.061958819627762,-0.029436931014061]],[[-0.01947720721364,-0.068531841039658,-0.0072524719871581],[0.019952012225986,-0.066135384142399,-0.21922129392624],[0.00023221966694109,0.053770951926708,0.010335091501474]],[[0.0048172753304243,-0.05735407397151,-0.053683210164309],[-0.049364980310202,-0.01274383906275,-0.019814696162939],[0.0039270492270589,0.0093516558408737,-0.021000329405069]],[[-0.089712016284466,-0.10391807556152,0.028391029685736],[0.036181814968586,-0.14728105068207,-0.025413326919079],[0.071836441755295,0.0049316100776196,-0.15184289216995]],[[-0.027809688821435,-0.0067162718623877,-0.052953392267227],[-0.11297233402729,0.013029281981289,-0.041083410382271],[-0.097656950354576,-0.095870062708855,-0.18407170474529]],[[-0.054993815720081,-0.08362652361393,-0.070381551980972],[-0.11002649366856,-0.063265644013882,0.059930026531219],[-0.077119015157223,0.094498164951801,-0.017564967274666]],[[-0.0047159432433546,0.027582429349422,-0.03339271619916],[-0.049694985151291,0.072929501533508,0.056969732046127],[0.1373175829649,0.15361182391644,-0.028526993468404]],[[-0.069413676857948,0.032668724656105,-0.075813412666321],[0.10776619613171,0.15835194289684,0.065549269318581],[-0.23466429114342,0.13522750139236,0.055360954254866]],[[0.043920177966356,-0.015705076977611,0.018212683498859],[-0.074004292488098,-0.10812145471573,-0.027284726500511],[-0.025529595091939,-0.061177253723145,0.022660572081804]],[[0.08081529289484,-0.03576048836112,-0.081573434174061],[0.12809544801712,-0.010116746649146,-0.11495388299227],[0.056980084627867,0.080031260848045,-0.029211815446615]],[[-0.01017839834094,0.034372601658106,0.058739688247442],[0.012751957401633,-0.001557864015922,0.070562139153481],[-0.12562105059624,-0.022428760305047,0.0067420094273984]],[[0.051729112863541,0.12709301710129,0.11940095573664],[0.013923713937402,-0.024312632158399,-0.068705983459949],[0.0031430113594979,-0.012512100860476,0.031833823770285]],[[0.0069138142280281,0.1018578633666,0.09189360588789],[-0.1137593537569,0.038210306316614,0.00027768930885941],[0.052528828382492,0.013911144807935,0.094096161425114]],[[-0.019389463588595,-0.057260632514954,0.022628800943494],[-0.10466824471951,-0.090913571417332,-0.051360581070185],[-0.13749197125435,-0.051497213542461,-0.035993121564388]],[[0.135357812047,-0.038236573338509,-0.11535310745239],[0.13105836510658,0.043613605201244,0.040401019155979],[0.13846158981323,0.12366744875908,-0.0083617633208632]],[[0.0042183441109955,-0.16369758546352,0.0011498150415719],[-0.064739696681499,-0.071616105735302,-0.15198315680027],[-0.10090310871601,-0.049558814615011,-0.023380242288113]],[[-0.0088875507935882,0.047126278281212,0.010401056148112],[0.017042942345142,-0.022605579346418,-0.040889389812946],[0.045928776264191,-0.045512534677982,0.042323172092438]],[[0.046543300151825,0.10366842895746,-0.10863824933767],[-0.13702197372913,0.030885677784681,0.060901403427124],[-0.05767647176981,-0.028103239834309,-0.099612921476364]],[[-0.058824561536312,-0.024273488670588,0.047888789325953],[-0.018067702651024,0.078338712453842,0.045901566743851],[-0.0057972623035312,0.014788066036999,-0.066161051392555]],[[-0.028040941804647,-0.0015263856621459,-0.15289726853371],[0.055136814713478,0.026261355727911,0.041991714388132],[-0.022099826484919,-0.040971238166094,0.075405530631542]],[[0.072108782827854,-0.017066657543182,0.049827914685011],[0.045587688684464,0.058054607361555,0.013120437040925],[-0.015424598939717,-0.064426995813847,0.0098301507532597]],[[-0.094462037086487,-0.093134492635727,0.13252617418766],[0.074879840016365,-0.10968843847513,-0.016389440745115],[0.1657643020153,0.07806720584631,-0.12170038372278]],[[-0.028199473395944,0.0042097107507288,0.076189406216145],[-0.12257862091064,-0.077198974788189,0.087975263595581],[-0.040856633335352,-0.12036188691854,-0.04596009105444]],[[0.029598763212562,-0.011751065030694,-0.050865992903709],[0.071061171591282,-0.0058079571463168,-0.094823904335499],[-0.10284045338631,0.06121214106679,0.1054043546319]],[[0.0334597453475,0.13645201921463,-0.089640542864799],[-0.01168121304363,0.033272854983807,0.026836182922125],[-0.081102766096592,-0.096063226461411,0.053265146911144]],[[-0.040842767804861,-0.023686155676842,0.04957165569067],[-0.0092965327203274,-0.12597021460533,0.028584016487002],[0.013166083954275,0.0025565961841494,-0.11517004668713]],[[-0.064539402723312,0.045887172222137,-0.07229371368885],[-0.059612814337015,0.032664697617292,-0.036914642900229],[-0.0066715995781124,-0.12754637002945,-0.044690869748592]],[[-0.06318835914135,0.027600735425949,0.048202343285084],[-0.068721309304237,-0.04135274887085,0.084572285413742],[-0.031909678131342,-0.078628569841385,-0.10403013974428]],[[0.04636737704277,0.014954539015889,0.074077412486076],[0.11256271600723,0.055985070765018,0.065256915986538],[0.014086839742959,-0.023739006370306,0.1274658292532]],[[-0.072565078735352,-0.010011262260377,-0.036708474159241],[-0.035209108144045,-0.15881744027138,0.053402848541737],[0.055935680866241,0.14531925320625,0.045034680515528]],[[-0.042902454733849,-0.083469144999981,0.044098917394876],[-0.048949711024761,0.044949665665627,0.017414301633835],[-0.12844055891037,-0.058527391403913,0.039440099149942]],[[0.0098256906494498,0.10489895939827,0.065709143877029],[-0.010814382694662,0.047156643122435,-0.015358781442046],[-0.03253822401166,0.024049434810877,0.144326582551]],[[-0.0028234391938895,-0.06073422729969,0.011448125354946],[0.12371373921633,-0.091037772595882,0.018047420307994],[0.050225730985403,0.043901856988668,-0.089625529944897]],[[0.13781870901585,0.014108926057816,0.0033573904074728],[0.078013814985752,-0.039778340607882,0.023495629429817],[0.016968922689557,-0.073118254542351,-0.050994601100683]],[[-0.01510912925005,0.052461609244347,-0.026368752121925],[-0.03523388877511,-0.05891652777791,0.05785846337676],[0.10588332265615,-0.023690555244684,0.015938054770231]],[[0.041115041822195,-0.030621783807874,0.028065893799067],[0.030158068984747,0.059972520917654,-0.052879121154547],[0.0063111917115748,-0.13737262785435,-0.098650753498077]],[[0.011201366782188,0.12081263959408,0.098183944821358],[0.08425385504961,0.042033169418573,-0.042901925742626],[-0.02639664337039,0.25760966539383,0.019503798335791]],[[-0.069084450602531,-0.04580045863986,-0.018731493502855],[-0.03478617221117,-0.064920373260975,-0.11747392266989],[-0.15542317926884,-0.057150024920702,-0.1076146364212]],[[0.030515171587467,0.096280165016651,-0.032479491084814],[-0.096013009548187,0.039078172296286,0.048978254199028],[-0.072129115462303,-0.082555308938026,0.03806284442544]],[[0.0036786000709981,0.053890369832516,-0.074397571384907],[-0.027505673468113,-0.080582112073898,-8.3302220446058e-06],[0.105833157897,-1.9405133571126e-06,0.052016548812389]],[[0.25532850623131,0.24910905957222,-0.097719848155975],[0.15148930251598,0.37418627738953,0.39037892222404],[-0.032597988843918,-0.11045870929956,0.23524948954582]],[[0.10164412856102,-0.04435421153903,-0.1296167075634],[0.053413577377796,0.064977183938026,-0.053226865828037],[-0.0052856151014566,-0.029817698523402,-0.070728495717049]],[[-0.013498472981155,-0.043492753058672,-0.010664869099855],[-0.067317590117455,0.019678523764014,0.01364551205188],[0.10336532443762,-0.042835235595703,-0.033334754407406]],[[-0.038330152630806,-0.11477357149124,-0.11191300302744],[-0.099739208817482,-0.096492022275925,-0.098287843167782],[-0.1523045450449,-0.16380482912064,-0.074350446462631]],[[-0.03423098474741,-0.034963555634022,-0.033522184938192],[0.0050441208295524,-0.039037171751261,-0.037583161145449],[0.0083997910842299,-0.07739719748497,0.016835104674101]],[[-0.0076891095377505,0.056795243173838,-0.12919615209103],[0.050683073699474,-0.11772139370441,0.020970584824681],[-0.063941471278667,0.064770862460136,0.023016886785626]],[[0.0091487448662519,0.09664162248373,0.09421144425869],[-0.11854808032513,0.13752253353596,0.1753516048193],[-0.090144224464893,-0.037097204476595,0.050311490893364]],[[0.093073576688766,0.027776340022683,-0.011468048207462],[-0.011466440744698,0.019868550822139,0.087669394910336],[0.049938570708036,0.053084883838892,0.053881507366896]],[[0.031119903549552,0.089855641126633,-0.11934813857079],[0.036721225827932,-0.001335593406111,0.017794730141759],[-0.055400356650352,-0.051232047379017,0.10237174481153]],[[0.042399261146784,0.046000696718693,-0.015817413106561],[0.039250779896975,0.13209018111229,-0.078989118337631],[-0.037235707044601,-0.014315400272608,0.010380648076534]],[[-0.046492163091898,-0.11711967736483,-0.070348590612411],[0.078873850405216,-0.11488562077284,-0.065573945641518],[0.056095119565725,0.0095451883971691,0.023351283743978]]],[[[-0.10991365462542,-0.1089331060648,0.0055580865591764],[-0.044325664639473,-0.01007005572319,-0.060557033866644],[-0.013824206776917,0.047730132937431,0.079643160104752]],[[-0.12295074760914,0.058518305420876,0.09286530315876],[0.025854237377644,-0.035188023000956,0.04993648827076],[0.017032792791724,0.049205988645554,-0.018489452078938]],[[0.0093240113928914,-0.1314809024334,-0.05269680544734],[-0.036040779203176,-0.042748246341944,-0.035598631948233],[-0.024713259190321,-0.058458298444748,-0.033259570598602]],[[0.020766898989677,-0.018599044531584,-0.019900411367416],[-0.018547499552369,-0.04558951407671,-0.0083782011643052],[0.050613630563021,-0.12197627127171,-0.0077764326706529]],[[-0.063860446214676,-0.19045306742191,-0.038858521729708],[-0.041746735572815,0.12439561635256,0.0087369130924344],[0.029199477285147,-0.039744757115841,0.020093994215131]],[[0.022687615826726,-0.055382616817951,0.088793471455574],[-0.05575905367732,-0.16541485488415,-0.042345527559519],[-0.033981837332249,0.033641755580902,-0.0021810673642904]],[[-0.041948415338993,-0.040371228009462,-0.019228687509894],[-0.0044748582877219,-0.033934779465199,0.019047429785132],[-0.012329593300819,0.039701592177153,-0.010172029957175]],[[-0.016100266948342,-0.090166471898556,0.018396753817797],[-0.032609023153782,-0.063839100301266,-0.0032368379179388],[0.070633091032505,0.067927055060863,0.08677976578474]],[[-0.10343155264854,0.0087253144010901,0.036944717168808],[0.099497631192207,-0.035363964736462,0.052621673792601],[-0.029555197805166,-0.073952704668045,-0.10584244132042]],[[-0.0842424929142,0.01777583733201,0.01100452337414],[-0.1426959335804,-0.042662270367146,-0.075541444122791],[0.064305700361729,-0.001775607932359,0.0074466424994171]],[[0.0041036135517061,-0.01262366771698,-0.021138459444046],[-0.043552447110415,-0.015660099685192,0.033057477325201],[0.02645181119442,-0.049655348062515,-0.0079771988093853]],[[0.025923728942871,-0.0082240980118513,0.069336362183094],[0.023793725296855,0.089450851082802,-0.053062379360199],[-0.012198751792312,-1.3226438568381e-05,0.027755960822105]],[[0.0065249940380454,-0.048680979758501,-0.012639125809073],[0.0086091663688421,-0.13237909972668,0.0088876252993941],[0.0092157023027539,-0.081543363630772,-0.028796494007111]],[[0.039844546467066,-0.071619123220444,0.053923945873976],[-0.025216318666935,0.06585718691349,0.0082773054018617],[0.11329241842031,-0.0014781076461077,0.085706047713757]],[[-0.10548173636198,-0.079536445438862,-0.047475144267082],[-0.088514380156994,0.13160014152527,-0.15129441022873],[-0.031766530126333,-0.024551395326853,-0.011249165982008]],[[0.010651327669621,0.013798482716084,0.050197657197714],[-0.064783878624439,-0.055530767887831,0.023402648046613],[-0.013373425230384,0.047710113227367,-0.00073900591814891]],[[-0.052810944616795,-0.1195387840271,-0.0099515616893768],[-0.1049410328269,0.0065744798630476,-0.20919397473335],[-0.062229797244072,-0.010161546990275,-0.018556706607342]],[[-0.05484701693058,-0.010669072158635,-0.0072146537713706],[0.015947883948684,-0.14397290349007,-0.030995851382613],[-0.027416218072176,0.055789839476347,0.12255581468344]],[[-0.026106916368008,-0.044399436563253,0.011404910124838],[-0.15047159790993,-0.10654467344284,-0.046070925891399],[-0.026825746521354,0.0060895346105099,-0.0017506547737867]],[[0.0053705400787294,-0.048152137547731,-0.015204258263111],[0.026756193488836,0.0040937019512057,-0.042153812944889],[-0.010545550845563,0.035828500986099,0.0066617550328374]],[[-0.15905551612377,0.063482135534286,-0.18680657446384],[0.092615783214569,-0.095470227301121,-0.045001734048128],[-0.096182852983475,0.11812770366669,-0.21358904242516]],[[0.10516348481178,0.057653822004795,-0.10002583265305],[-0.052276127040386,-0.036144904792309,-0.047801107168198],[-0.034162603318691,-0.027824258431792,-0.012961967848241]],[[-0.062279250472784,-0.1165410131216,-0.038114424794912],[0.097006551921368,0.013482513837516,-0.011829021386802],[0.042655806988478,0.032593831419945,0.025569563731551]],[[-0.043559886515141,-0.015336701646447,0.0035025177057832],[-0.024053487926722,3.2471347367391e-05,-0.050493642687798],[0.0095904069021344,-0.011839488521218,-0.0072019933722913]],[[0.027704309672117,-0.016747858375311,-0.0072294739075005],[0.055621992796659,0.015872260555625,0.013501545414329],[-0.045177921652794,0.027751103043556,-0.018258903175592]],[[0.015010205097497,0.055259328335524,0.010095577687025],[-0.0038660317659378,-0.089339531958103,0.037501942366362],[0.009637582115829,0.068396158516407,-0.018335521221161]],[[-0.0018070633523166,-0.035206325352192,-0.087767638266087],[-0.13625425100327,-0.068633712828159,-0.0042995130643249],[-0.054476257413626,0.01777970045805,-0.0083394562825561]],[[-0.091471120715141,0.071900747716427,-0.028502631932497],[-0.060369458049536,0.016838787123561,-0.012874369509518],[-0.19836972653866,0.031591538339853,-0.15850119292736]],[[0.0014278012095019,0.046569518744946,-0.0047346381470561],[0.00075954193016514,-0.005590861197561,-0.034248035401106],[0.015462308190763,0.017528403550386,-0.015260738320649]],[[0.087964370846748,-0.030918473377824,-0.045079253613949],[-0.14021326601505,-0.15074102580547,-0.023050712421536],[0.0036059103440493,0.08046717196703,-0.0095082195475698]],[[-0.12019208073616,-0.11803215742111,-0.11081014573574],[-0.015473648905754,-0.058383021503687,0.050069991499186],[0.065782725811005,0.018641801550984,0.010563034564257]],[[-0.031377743929625,0.062585793435574,0.1405693590641],[-0.12720078229904,-0.003449046285823,0.042258933186531],[-0.057319354265928,0.067321792244911,-0.017366409301758]],[[0.037331130355597,-0.038144376128912,-0.10864844918251],[0.02288855612278,-0.0023087030276656,0.074288681149483],[-0.042844548821449,0.015326667577028,-0.025914518162608]],[[-0.10038357973099,-0.094842925667763,0.05385634303093],[-0.042174857109785,-0.069181703031063,-0.024308325722814],[-0.019621374085546,-0.078977420926094,0.019916435703635]],[[-0.038537293672562,-0.0040997941978276,-0.0056741456501186],[0.027794923633337,0.065206527709961,-0.042407296597958],[-0.018423674628139,0.024240341037512,-0.013597415760159]],[[0.024355780333281,-0.17035385966301,-0.037635259330273],[0.063490852713585,-0.046579923480749,0.016289781779051],[-0.020744513720274,0.038139682263136,0.00013514538295567]],[[-0.073250986635685,0.0007720566354692,-0.085984900593758],[0.079152397811413,-0.042474061250687,-0.039467021822929],[0.015513009391725,-4.4047297706129e-05,-0.0071549359709024]],[[-0.061484880745411,0.042514100670815,0.028679978102446],[-0.073572248220444,-0.050443131476641,0.023334600031376],[0.044886957854033,0.0027330634184182,0.027821831405163]],[[-0.0026195663958788,0.043419286608696,0.028066696599126],[-0.027273822575808,-0.0039830096065998,-0.0055835410021245],[-0.050088841468096,-0.016676560044289,0.018932200968266]],[[-0.10309690982103,-0.17648603022099,-0.15544375777245],[0.028240075334907,-0.1070111989975,0.00026809121482074],[0.025145681574941,0.012632099911571,0.035431962460279]],[[-0.029088439419866,-0.0084199290722609,0.053214877843857],[-0.1119271889329,-0.069336853921413,-0.1128191575408],[0.013915314339101,-0.041301794350147,0.014818456023932]],[[-0.00022533447190654,0.04842571914196,0.051875732839108],[-0.010997667908669,0.05997920781374,0.0042155869305134],[-0.054640766233206,-0.026766389608383,0.030352661386132]],[[-0.050201799720526,-0.050608869642019,-0.067317299544811],[0.066238030791283,-0.062634095549583,0.056536924093962],[-0.010408933274448,0.037067428231239,0.036455534398556]],[[-0.087913617491722,0.055001392960548,-0.1308409422636],[0.027697246521711,-0.026091882959008,0.0067982878535986],[0.024022774770856,0.050469692796469,-0.039225414395332]],[[-0.077387690544128,0.12887126207352,0.059372205287218],[0.074351027607918,-0.073383882641792,0.0025985902175307],[-0.041619449853897,-0.051192503422499,-0.039176508784294]],[[0.0077479337342083,-0.051092736423016,0.037330605089664],[-0.057106051594019,-0.091901153326035,-0.042925927788019],[-0.013513471931219,0.026224812492728,0.033298019319773]],[[0.079312905669212,0.045115415006876,-0.13859963417053],[0.1121429502964,-0.035871107131243,-0.039953045547009],[0.054585117846727,-0.012055082246661,-0.086354166269302]],[[-0.064692847430706,0.0064499173313379,-0.041032284498215],[0.10262921452522,-0.06128890812397,-0.021454622969031],[0.070806965231895,0.062299843877554,-0.014562472701073]],[[-0.034728594124317,0.032073378562927,0.013099982403219],[0.054376348853111,0.056016575545073,-0.010498406365514],[-0.00091515068197623,-0.020620483905077,-0.0069017335772514]],[[-0.06536728143692,-0.057949669659138,0.15633633732796],[-0.16389784216881,-0.072146318852901,-0.082103259861469],[-0.019653789699078,-0.10236740857363,-0.038108479231596]],[[0.024533225223422,-0.085736870765686,-0.004650664050132],[-0.032366946339607,-0.06070988997817,-0.0072077265940607],[-0.16397148370743,-0.06767326593399,0.002485872246325]],[[0.014930170960724,0.027013493701816,-0.012216075323522],[0.0062490780837834,-0.015017448924482,-0.017666770145297],[0.02107996866107,0.0063266498036683,-0.086967937648296]],[[0.0065670078620315,-0.037361722439528,-0.017850618809462],[-0.081208273768425,-0.22510321438313,0.0075463806279004],[0.034913998097181,0.0781329870224,-0.0049966787919402]],[[0.015098463743925,0.30715790390968,0.01486002933234],[0.11485414206982,0.03030763193965,0.11748950183392],[-0.12702693045139,0.020870441570878,-0.055981561541557]],[[-0.090542644262314,-0.17841044068336,-0.082822352647781],[0.037793815135956,0.063606657087803,0.022422650828958],[0.091802410781384,0.065826110541821,0.069619320333004]],[[-0.0022850865498185,-0.065884321928024,-0.032637733966112],[-0.0079079512506723,0.0098634753376245,0.035172987729311],[-0.043404288589954,-0.013462299481034,-0.035210404545069]],[[-0.064347729086876,-0.10887605696917,-0.052456438541412],[-0.080237530171871,-0.094241179525852,0.0098786624148488],[-0.034286744892597,-0.1122829541564,-0.0042226440273225]],[[0.013912421651185,-0.060776006430387,0.011116280220449],[-0.058650556951761,-0.013520088978112,-0.0074647567234933],[0.0077320258133113,-0.043469324707985,-0.16879668831825]],[[-0.036223534494638,-0.072720669209957,0.078797489404678],[0.054136492311954,-0.14990845322609,-0.044858295470476],[-0.088976621627808,-0.069581873714924,-0.06915321201086]],[[0.059001855552197,0.11290621757507,0.040000628679991],[-0.037167213857174,-0.087414041161537,0.042277988046408],[-0.037415191531181,-0.029151076450944,-0.038339830935001]],[[-0.011316180229187,-0.051914189010859,-0.043381400406361],[0.087009333074093,0.07051595300436,-0.0051494399085641],[0.053867537528276,-0.0098872967064381,-0.12821273505688]],[[0.1094608604908,0.039571862667799,0.0022044058423489],[0.0081944903358817,0.021724466234446,-0.033074609935284],[-0.011799581348896,-0.0489322245121,-0.059400841593742]],[[-0.066162213683128,-0.099173851311207,0.0022381539456546],[-0.05746978521347,0.044466570019722,-0.012329707853496],[0.026667391881347,-0.068458318710327,0.017270108684897]],[[-0.053110636770725,0.022880410775542,0.019514752551913],[-0.015537969768047,-0.012648098170757,0.026910794898868],[-0.0045157209970057,0.0084237139672041,0.021262664347887]]],[[[0.060339365154505,-0.089087776839733,-0.085238806903362],[0.0053424700163305,-0.023835627362132,0.014698310755193],[-0.036885488778353,0.032136622816324,0.14731660485268]],[[-0.0031565623357892,-0.063601583242416,-0.020327050238848],[-0.055232957005501,-0.0048162606544793,0.0032641754951328],[0.012611840851605,-0.00030636039446108,-0.086949668824673]],[[0.0070440708659589,0.049971424043179,-0.041867930442095],[-0.078117735683918,0.012950631789863,-0.087495498359203],[0.022910295054317,-0.0086664659902453,0.077990509569645]],[[0.021351171657443,0.056348331272602,-0.042027566581964],[-0.025469042360783,0.0047434489242733,0.037948813289404],[0.096128441393375,-0.035819035023451,0.011061673983932]],[[-0.050846997648478,0.027912581339478,0.022059038281441],[-0.028297828510404,0.020250644534826,-0.047260109335184],[-0.034764416515827,0.044635877013206,0.050915274769068]],[[-0.051234401762486,-0.13756056129932,-0.022650267928839],[0.11005517840385,-0.10679373145103,-0.13027942180634],[-0.0074066682718694,0.10532035678625,0.035827834159136]],[[-0.0057735187001526,0.0030114350374788,0.0018992066616192],[0.0054290755651891,0.01470972597599,0.056493833661079],[-0.10337112098932,-0.011588321067393,-0.015574863180518]],[[0.026934185996652,0.0035163334105164,-0.062267299741507],[0.055630408227444,0.02117470279336,-0.0096704289317131],[0.028444731608033,0.12350364029408,0.009701888076961]],[[0.021528054028749,-0.057667452841997,-0.088305592536926],[-0.042696915566921,0.025442713871598,-0.01746179535985],[0.068699181079865,0.0069704847410321,-0.050152149051428]],[[-0.0027453382499516,0.0090277269482613,-0.0043509029783309],[0.046585489064455,0.013006689958274,-0.026477759703994],[0.011055886745453,-0.049200545996428,0.0084787681698799]],[[0.028933266177773,-0.065701961517334,0.016369154676795],[-0.0076894545927644,-0.075275167822838,0.087542496621609],[-0.0018770354799926,-0.0019474041182548,0.0041880151256919]],[[-0.154012337327,-0.023409580811858,-0.039749290794134],[0.0066097895614803,-0.0026123952120543,-0.025599109008908],[0.076021797955036,0.046753663569689,0.049230109900236]],[[0.03222594410181,0.029558913782239,0.012553729116917],[-0.056810177862644,0.0015760988462716,0.070492975413799],[0.03772072121501,-0.071327202022076,-0.050832238048315]],[[0.051325973123312,-0.00032705895137042,0.029178991913795],[0.027529140934348,0.068209074437618,0.017695093527436],[0.046799458563328,0.0068674604408443,-0.014132801443338]],[[0.02935117483139,0.06347368657589,-0.072503745555878],[-0.002064626198262,0.12194556742907,-0.016158822923899],[0.0088816964998841,0.016042429953814,0.043768137693405]],[[-0.032208319753408,-0.082311153411865,-0.022734070196748],[-0.012241628021002,0.04895531758666,-0.06735560297966],[-0.003777917008847,-0.029694916680455,-0.02254993468523]],[[0.028484579175711,-0.034877926111221,0.017055692151189],[-0.010993427596986,-0.12287966161966,0.061369549483061],[-0.070077396929264,0.028382793068886,0.03111613355577]],[[0.031828504055738,-0.011426070705056,-0.0016613363986835],[-0.03355985507369,0.056313447654247,0.023154145106673],[-0.042573519051075,0.071134470403194,0.14836041629314]],[[-0.0017328611575067,0.01691416464746,0.029460867866874],[-0.010537831112742,-0.030014619231224,0.017386445775628],[-0.046711843460798,0.0044996934011579,0.030021289363503]],[[-0.0073248967528343,-0.042100891470909,0.055601354688406],[-0.014017436653376,-0.011980080977082,-0.0043481108732522],[-0.013032691553235,0.00086391519289464,0.043653387576342]],[[0.055938474833965,-0.020749919116497,0.0068152802996337],[0.074037775397301,-0.038161557167768,-0.064320132136345],[0.039219468832016,0.0098686795681715,-0.098312258720398]],[[-0.016124850139022,-0.045807365328074,0.035314794629812],[-0.012409331277013,-0.028702765703201,0.058046489953995],[-0.011972810141742,-0.053200103342533,0.013809960335493]],[[0.02922217734158,0.0017293869750574,0.019255947321653],[-0.10877975821495,0.03810815140605,0.053106013685465],[-0.023155467584729,-0.023391596972942,0.032645877450705]],[[-0.014451002702117,0.015858378261328,-0.051858566701412],[-0.0071194772608578,0.016503728926182,-0.059497520327568],[0.082988508045673,-0.079235948622227,0.048180978745222]],[[0.004199305549264,-0.070359818637371,-0.085938863456249],[0.0042650527320802,-0.061210438609123,0.0014840663643554],[-0.020625034347177,-0.032013218849897,0.090461254119873]],[[-0.035105217248201,-0.0052971434779465,-0.070863954722881],[0.023216553032398,-0.025263858959079,-0.034029688686132],[0.032498434185982,-0.1140598654747,-0.011847473680973]],[[-0.0044490965083241,-0.047089777886868,0.0051973364315927],[0.10441065579653,0.024757901206613,-0.055847946554422],[-0.0023669560905546,0.030129386112094,0.075227938592434]],[[0.10641410201788,0.031782083213329,-0.054562110453844],[0.039873939007521,-0.10850158333778,-0.02577043697238],[0.006882372777909,0.030820282176137,-0.0032108486630023]],[[0.038570646196604,0.048618637025356,-0.056741550564766],[0.045736648142338,0.068561851978302,-0.011757369153202],[-0.026858048513532,-0.006439299788326,-0.012569238431752]],[[0.021010303869843,0.034815557301044,-0.058903716504574],[0.045737896114588,0.018558146432042,-0.032570064067841],[-0.075610108673573,0.014998587779701,0.0049980054609478]],[[-0.065153509378433,0.013823374174535,0.017992623150349],[0.018105089664459,-0.010798320174217,0.00469487067312],[0.048976972699165,-0.024096373468637,0.037571951746941]],[[0.0051121450960636,0.0085704708471894,0.0086097670719028],[-0.019762238487601,0.0087022799998522,-0.016106370836496],[-0.028810108080506,-0.065224833786488,-0.044230025261641]],[[-0.0071892398409545,0.082369662821293,0.040598325431347],[0.02355825714767,-0.044020015746355,0.043599270284176],[-0.053336672484875,0.02836768515408,-0.033297050744295]],[[-0.033113781362772,-0.029315548017621,-0.01239192020148],[0.029539432376623,-0.062308918684721,-0.032410923391581],[-0.077308833599091,-0.087274551391602,0.034742534160614]],[[-0.010303075425327,0.038835410028696,0.02076618373394],[0.088266782462597,-0.046440575271845,-0.042601555585861],[-0.090298280119896,-0.041772734373808,0.059076927602291]],[[-0.065439715981483,-0.069328546524048,0.0024224603548646],[0.0029150552581996,-0.051818892359734,-0.099932380020618],[-0.04777006059885,-0.022765796631575,0.022236324846745]],[[-0.060389395803213,0.026373375207186,-0.06115784496069],[0.0091213956475258,-0.0033326509874314,0.02457969635725],[-0.0033928432967514,0.028538284823298,0.0056764637120068]],[[-0.035390339791775,0.0064590368419886,0.059842813760042],[-0.038971222937107,-0.069268025457859,-0.060051392763853],[-0.049382887780666,-0.06346483528614,0.033604439347982]],[[-0.011932995170355,0.002187684411183,-0.048475429415703],[0.019369004294276,-0.0032098167575896,-0.017617659643292],[0.024137005209923,-0.03539814054966,0.046044152230024]],[[0.026294330134988,0.11152588576078,-0.066568173468113],[-0.01648285612464,-0.048118375241756,0.034556675702333],[0.064098134636879,-0.0083964494988322,-0.031257566064596]],[[-0.11690926551819,0.0070919590070844,0.014744613319635],[0.025755060836673,0.046233542263508,-0.053669258952141],[0.011251082643867,-0.0023185417521745,0.010658624581993]],[[0.0062199290841818,-0.10294706374407,-0.1077491492033],[-0.058437209576368,-0.014075526967645,-0.021244700998068],[0.015036792494357,0.081245921552181,-0.013911792077124]],[[0.024088511243463,0.035175692290068,0.018444180488586],[-0.020323220640421,-0.02157443203032,-0.016276335343719],[-0.020829053595662,0.015474590472877,0.0011351858265698]],[[0.00074176903581247,-0.0096009578555822,0.030487865209579],[-0.015648953616619,0.023720242083073,0.047224812209606],[-0.0085975024849176,0.020098244771361,0.059438787400723]],[[0.051373109221458,-0.01152165979147,0.01988041959703],[0.022373680025339,0.02729775570333,-0.0054787872359157],[0.043332614004612,-0.027143474668264,0.036755502223969]],[[-0.049140281975269,0.028939213603735,0.04038479924202],[0.012279381044209,0.12362233549356,0.023095920681953],[0.065128445625305,-0.042270831763744,-0.037258576601744]],[[0.040715601295233,-0.059387367218733,0.034328605979681],[0.0049001788720489,0.017559492960572,-0.074321217834949],[0.073341928422451,-0.0054812538437545,-0.16399149596691]],[[-0.032964378595352,0.046612855046988,-0.10500067472458],[-0.13985066115856,-0.037318084388971,0.010271642357111],[-0.085532121360302,-0.026359906420112,0.038324169814587]],[[-0.045492008328438,-0.024097930639982,-0.039172284305096],[-0.030376981943846,-0.013819481246173,0.0110854646191],[0.03306644782424,-0.037216611206532,-0.015734968706965]],[[0.003241601632908,-0.0048052947968245,0.071230553090572],[-0.097920380532742,-0.015097809024155,0.095804989337921],[-0.025062615051866,0.079652599990368,0.05884612351656]],[[-0.017247749492526,0.020774738863111,0.021608516573906],[0.045077335089445,-0.045575603842735,-0.015772681683302],[-0.016872508451343,0.084027074277401,0.03555603697896]],[[-0.079755119979382,0.012255109846592,-0.010717655532062],[-0.0021572327241302,0.048578672111034,-0.025387965142727],[-0.032107260078192,-0.040382418781519,-0.036886535584927]],[[-0.095728695392609,-0.014164987020195,0.082808241248131],[-0.061512757092714,0.057580780237913,-0.040611151605844],[-0.039762303233147,0.010817222297192,0.0071929264813662]],[[0.018651753664017,0.10885980725288,0.052196107804775],[0.020473133772612,0.029497662559152,0.087584391236305],[0.13073846697807,0.076219066977501,-0.080924600362778]],[[0.030281795188785,0.029504174366593,0.053049258887768],[-0.013594699092209,-0.0064152395352721,0.017981996759772],[0.021958619356155,0.033782109618187,0.021570816636086]],[[-0.040846794843674,0.00058013573288918,-0.076852366328239],[-0.032973270863295,0.010089448653162,0.01833251491189],[-0.027127927169204,-0.0013181215617806,0.032844517379999]],[[-0.045910347253084,-0.0028518661856651,0.0033584255725145],[0.05438195541501,0.075073450803757,0.035853873938322],[-0.046787191182375,0.0033956631086767,0.039470504969358]],[[-0.022739253938198,-0.017370015382767,0.0011278704041615],[0.018658403307199,-0.0034794954117388,-0.062380779534578],[-0.01016587484628,-0.048276871442795,-0.048058785498142]],[[-0.040612936019897,-0.04539580270648,0.11082910001278],[-0.064017377793789,0.002355900593102,-0.083486504852772],[0.061033308506012,-0.01226201467216,0.00084098312072456]],[[-0.021631801500916,0.0033962610177696,0.0026752883568406],[0.056971456855536,-0.0036251314450055,-0.024119585752487],[0.043969970196486,-0.020619694143534,-0.0098696984350681]],[[0.037700675427914,-0.032917965203524,-0.007007721811533],[-0.033078495413065,-0.0069800210185349,-0.0055331666953862],[-0.024218153208494,-0.036349259316921,-0.029739573597908]],[[0.11462637037039,0.013536685146391,-0.082622028887272],[-0.036471169441938,-0.0023280142340809,0.06221941486001],[-0.086695142090321,-0.09279203414917,-0.032206509262323]],[[-0.035463899374008,0.032743725925684,-0.080238983035088],[-0.016358444467187,-0.051028523594141,-0.036733973771334],[0.0085396217182279,-0.042710285633802,-0.01576074026525]],[[0.038101751357317,-0.028429187834263,-0.016773236915469],[-0.0048294421285391,0.041428819298744,-0.023878866806626],[0.058053724467754,0.052832689136267,-0.004324906039983]]],[[[0.021387213841081,-0.11763793230057,0.056846763938665],[0.014170737937093,0.040617011487484,-0.12793743610382],[-0.048365477472544,0.11417409777641,0.082914382219315]],[[-0.01975985057652,-0.0701934248209,-0.090481951832771],[-0.066348150372505,-0.040739163756371,-0.041580680757761],[-0.085371933877468,-0.10103350877762,-0.05696415156126]],[[0.062904722988605,0.015252775512636,0.058148190379143],[-0.078787907958031,0.045251160860062,-0.0096096275374293],[-0.064777337014675,-0.039516568183899,-0.033228520303965]],[[-0.082133762538433,-0.1037098839879,0.034010507166386],[0.012287803925574,-0.054061993956566,-0.12178708612919],[-0.082682229578495,-0.14270585775375,0.12304393947124]],[[-0.062194928526878,0.077565580606461,0.00091304309898987],[-0.091588780283928,-0.043379548937082,-0.014579094946384],[0.016211913898587,0.047511391341686,-0.028709452599287]],[[-0.042242590337992,0.071066275238991,0.094146408140659],[0.0073422831483185,0.00017697218572721,-0.016982156783342],[-0.15515038371086,0.088305823504925,-0.0072202617302537]],[[0.030206575989723,0.018983939662576,0.0044304202310741],[0.027272243052721,-0.044129561632872,-0.075062699615955],[-0.005434297490865,0.0046462472528219,-0.034193444997072]],[[0.0012775930808857,-0.02526486851275,-0.14768896996975],[-0.14657962322235,0.1467686444521,0.072962328791618],[-0.26067969202995,-0.047766461968422,-0.051757253706455]],[[0.008624772541225,0.028671422973275,0.016759384423494],[0.010675475932658,0.023440450429916,-0.041180431842804],[0.079626813530922,-0.0070759668014944,-0.014812998473644]],[[-0.031650621443987,0.024684844538569,-0.010630821809173],[0.026279585435987,0.0565435141325,-0.028435796499252],[-0.062142454087734,-0.058573700487614,0.0099657494574785]],[[-0.058064840734005,0.0057605658657849,-0.16933603584766],[0.022291865199804,-0.024352557957172,0.029382828623056],[0.13116905093193,-0.14590431749821,0.0025321044959128]],[[-0.10349209606647,-0.07601560652256,-0.10318773239851],[-0.10907411575317,-0.045693758875132,-0.11867842078209],[0.023577263578773,-0.1264750957489,-0.0079801455140114]],[[0.034680064767599,-0.049963358789682,0.13490895926952],[0.033975031226873,-0.11997050046921,0.036900721490383],[-0.054756332188845,0.033355575054884,-0.11578940600157]],[[0.073224596679211,0.016580732539296,0.04623607173562],[0.016032434999943,0.11581098288298,0.021507747471333],[0.010646997019649,0.075964622199535,0.017956895753741]],[[-0.030884673818946,0.08584201335907,-0.054142732173204],[0.058963548392057,0.029154447838664,-0.15957845747471],[0.084955222904682,0.043399557471275,0.028701972216368]],[[0.039403818547726,0.017132088541985,-0.044295787811279],[-0.0048656277358532,0.0223219525069,-0.022285018116236],[-0.037048894912004,-0.0054151499643922,0.023725479841232]],[[0.030297795310616,-0.083587773144245,0.041700843721628],[-0.04865101352334,0.0073761115781963,0.024702435359359],[-0.10170710086823,-0.085864141583443,-0.060124956071377]],[[-0.0069973678328097,0.0051936306990683,0.020079547539353],[-0.017800208181143,0.027821339666843,-0.11701803654432],[0.015186738222837,0.11326100677252,-0.028373651206493]],[[-0.010947672650218,-0.050583153963089,0.04644512757659],[-0.039226494729519,0.051203455775976,-0.039317581802607],[-0.043272983282804,-0.082724198698997,-0.038380600512028]],[[0.016350312158465,-0.020922392606735,0.0076648150570691],[0.019649567082524,-0.0036820201203227,0.064822345972061],[-0.022694954648614,-0.0032741220202297,0.021722735837102]],[[-0.021583445370197,0.067327700555325,0.11312340945005],[0.012985256500542,0.023320810869336,0.021124646067619],[0.02007245644927,-0.024193216115236,0.1479566693306]],[[0.015321319922805,-0.012847756966949,0.048026818782091],[0.072504334151745,0.059158157557249,-0.0048107258044183],[-0.018300956115127,0.013447589240968,0.014676634222269]],[[-0.016592463478446,0.054548617452383,0.016857650130987],[-0.030856743454933,0.0020740011241287,-0.0073312227614224],[0.03435942903161,-0.014299468137324,-0.031150799244642]],[[0.05376810580492,-0.017477605491877,0.041988916695118],[0.021242773160338,-0.0029159178957343,0.024434322491288],[0.017964888364077,0.090991012752056,0.058438386768103]],[[-0.033028621226549,0.03585571423173,-0.044465437531471],[0.0049660159274936,-0.08271137624979,-0.054685711860657],[-0.00071858149021864,-0.060003191232681,0.0043758344836533]],[[-0.030321527272463,0.057144645601511,0.14136563241482],[-0.077594734728336,0.012670114636421,0.052402567118406],[0.087070852518082,-0.095404595136642,-0.0241709779948]],[[0.048425607383251,-0.026673264801502,0.084921903908253],[0.033776924014091,-0.031303837895393,0.028188660740852],[0.15167188644409,0.15814223885536,-0.018969770520926]],[[-0.024581314995885,-0.058227155357599,0.0026941290125251],[0.027910966426134,0.049095589667559,0.12512882053852],[0.13705171644688,0.11064895242453,0.12390238046646]],[[0.00054389494471252,-0.073384553194046,0.051665559411049],[0.0092091960832477,-0.067370377480984,0.0025236818473786],[-0.067313946783543,0.051493510603905,-0.00028759322594851]],[[0.035343419760466,0.0075093819759786,-0.022996827960014],[0.1166272982955,0.047054640948772,0.0054731061682105],[0.021892171353102,0.021624794229865,0.046875908970833]],[[-0.0329210460186,-0.1125101968646,-0.059550289064646],[0.022526966407895,0.0022404070477933,-0.16940326988697],[-0.13809601962566,8.3876337157562e-05,-0.0072257397696376]],[[-0.020802743732929,0.041474979370832,0.04631470516324],[0.046676717698574,0.081222087144852,0.04548429325223],[0.093793593347073,0.10825749486685,-0.040909327566624]],[[0.081035286188126,-0.023746589198709,0.0027920084539801],[-0.060503985732794,-0.0085253855213523,-0.0047083231620491],[0.01725997403264,0.033166766166687,0.063865676522255]],[[-0.002076914999634,0.09887008368969,0.057250317186117],[0.045350763946772,0.088740475475788,0.12262695282698],[0.0211016908288,0.025643277913332,0.016007672995329]],[[-0.034489475190639,0.041484840214252,-0.019123109057546],[0.052441872656345,0.011680074036121,-0.079762406647205],[-0.024992223829031,-0.062163796275854,-0.03913901373744]],[[0.022122621536255,0.039871126413345,-0.031310398131609],[-0.056973908096552,-0.0023395714815706,-0.0680847838521],[-0.023237528279424,-0.16240741312504,-0.0019364904146641]],[[-0.033126953989267,-0.013942752033472,-0.01928180642426],[-0.04654860496521,0.013403292745352,0.091703496873379],[-0.0014872236642987,-0.055620763450861,0.0014120240230113]],[[0.030567886307836,-0.019463408738375,0.11787255108356],[0.059782952070236,0.0096365185454488,0.080911763012409],[0.030595701187849,-0.18933346867561,0.011359435506165]],[[0.012499028816819,-0.014253010973334,0.11672075837851],[-0.071537703275681,0.013112343847752,-0.0014291910920292],[-0.071264930069447,0.032645482569933,0.0036761336959898]],[[-0.053771521896124,-0.039684601128101,0.1096409112215],[-0.0503342859447,0.020719774067402,0.038043756037951],[-0.079275317490101,0.09402996301651,-0.078895680606365]],[[0.013858624733984,-0.08579245954752,-0.10338903963566],[-0.015885282307863,0.032681122422218,0.058713424950838],[-0.065851971507072,-0.036409806460142,0.03257055208087]],[[-0.02458287589252,-0.032150596380234,-0.051978215575218],[0.0054004467092454,-0.013121325522661,0.029575850814581],[0.011257539503276,0.067185558378696,-0.057196073234081]],[[-0.048920154571533,-0.039987068623304,-0.044679719954729],[0.022416109219193,0.10176439583302,-0.15185467898846],[0.039976019412279,-0.032800268381834,-0.084017030894756]],[[0.012933100573719,0.055618152022362,-0.039228804409504],[0.029538916423917,-0.072834178805351,0.13342455029488],[-0.16520127654076,0.040288951247931,-0.011482037603855]],[[-0.0047984896227717,0.098199270665646,0.066807851195335],[0.019086170941591,-0.13230217993259,0.076079174876213],[0.071969553828239,0.074697360396385,-0.019763162359595]],[[0.038602411746979,-0.080474570393562,0.045683536678553],[-0.078983746469021,-0.025515716522932,0.018448766320944],[-0.052650101482868,-0.057507831603289,-0.11671247333288]],[[-0.008527091704309,-0.033282708376646,-0.037632465362549],[0.066897727549076,0.05929109454155,-0.088435351848602],[-0.086307398974895,-0.09053136408329,-0.042749959975481]],[[0.13238026201725,-0.10511804372072,0.03028654679656],[0.11124982684851,-0.26741135120392,0.01532391551882],[-0.028959730640054,-0.1832210123539,-0.069848947227001]],[[-0.024673562496901,-0.012264200486243,-0.2013988494873],[0.0074745058082044,-0.1157049536705,-0.092664316296577],[-0.090494737029076,-0.081917695701122,0.0066164629533887]],[[-0.049420658499002,-0.054740849882364,-0.14601822197437],[0.07285763323307,0.11790701746941,0.053024470806122],[0.034010574221611,0.11370866000652,0.08120396733284]],[[-0.046949986368418,-0.044539898633957,0.036245234310627],[-0.077479727566242,-0.056941024959087,-0.0062566208653152],[-0.074351839721203,-0.11086075752974,-0.1027032956481]],[[0.058527484536171,0.045963648706675,-0.02688311971724],[-0.039817120879889,0.033966206014156,-0.0015529507072642],[-0.070459522306919,0.032502867281437,-0.017488393932581]],[[-0.055057410150766,-0.11436645686626,0.0052277189679444],[-0.08275993168354,-0.10260773450136,-0.15879553556442],[-0.15781344473362,-0.053149703890085,-0.14075419306755]],[[0.035270240157843,0.10377549380064,-0.042067494243383],[0.0092540718615055,0.099527940154076,0.096750900149345],[0.17652191221714,0.14844180643559,0.12159169465303]],[[0.0055665764957666,-0.032739661633968,-0.0061371773481369],[-0.019156742841005,0.095728151500225,-0.055439155548811],[0.014859425835311,0.15611423552036,-0.063389331102371]],[[-0.07760301232338,-0.048411414027214,-0.17721402645111],[-0.00022475881269202,-0.12509313225746,-0.10705264657736],[-0.065547093749046,-0.037193410098553,-0.079825736582279]],[[0.065850973129272,-0.010959839448333,-0.029862036928535],[-0.04315534606576,0.19205597043037,-0.018650587648153],[-0.16919869184494,-0.10721898823977,0.13945789635181]],[[0.002042330102995,0.012731090188026,0.00076914299279451],[-0.043090373277664,-0.053905721753836,0.14042299985886],[-0.0059346002526581,-0.078980080783367,0.019006974995136]],[[-0.014426226727664,0.019831094890833,-0.056204002350569],[0.021858869120479,0.033137563616037,0.02832842990756],[-0.079933032393456,0.022626863792539,-0.037426270544529]],[[0.00033041584538296,-0.035599797964096,0.011432413943112],[0.024149734526873,-0.0049603725783527,0.015041537582874],[-0.0096087343990803,0.05172136053443,0.045839589089155]],[[0.05106845498085,0.12294092029333,-0.042352873831987],[0.035074129700661,-0.020574713125825,-0.0554358959198],[0.038017060607672,0.032148607075214,0.10983533412218]],[[-0.01697501540184,-0.053679838776588,0.04994673281908],[-0.023060776293278,-0.0085356971248984,-0.046443186700344],[-0.014373105950654,0.070222176611423,0.010358223691583]],[[-0.046662952750921,0.043805543333292,0.010284431278706],[0.01784460619092,0.02771214209497,-0.076588377356529],[0.015451984480023,0.024316636845469,-0.038908287882805]],[[0.00049720163224265,0.070622101426125,-0.043368738144636],[0.021082676947117,0.0034035623539239,0.021354192867875],[0.0031441554892808,0.098022438585758,-0.012163267470896]]],[[[-0.015198637731373,0.076001048088074,-0.012751357629895],[0.039098624140024,-0.0065350299701095,0.032250802963972],[-0.015749149024487,-0.025226458907127,0.12245586514473]],[[0.0046023814938962,0.017289720475674,0.02959849499166],[0.042339954525232,0.077028445899487,0.025261621922255],[-0.035371817648411,-0.030231332406402,-0.093137219548225]],[[0.035842627286911,0.045199684798717,-0.1032305881381],[-0.0070405467413366,0.0081617347896099,0.032121177762747],[-0.0016262015560642,-0.089499659836292,-0.023043574765325]],[[-0.015423119068146,0.026834024116397,0.027632441371679],[0.046672202646732,0.025011319667101,0.10328023135662],[-0.016342340037227,0.016416825354099,0.028814509510994]],[[0.0082860654219985,0.015357200987637,0.016127316281199],[-0.0064076292328537,-0.00772152421996,-0.039310462772846],[-0.05233907699585,-0.068502306938171,-0.01985832862556]],[[0.009781351312995,-0.081848450005054,0.1140590980649],[-0.12780179083347,-0.060989174991846,0.13774101436138],[0.12852436304092,-0.057246007025242,-0.00091136089758947]],[[-0.014255158603191,-0.018068321049213,0.014319581910968],[0.032794587314129,-0.06571651995182,3.4265201975359e-05],[0.037704207003117,-0.046127684414387,-0.050996817648411]],[[-0.025885134935379,0.11768212914467,0.05328282341361],[-0.037058606743813,-0.042713977396488,0.042365185916424],[0.014772957190871,-0.027735251933336,-0.048324070870876]],[[-0.018464459106326,-0.088487759232521,-0.046598311513662],[-0.027721123769879,0.055553156882524,0.071806699037552],[0.048715993762016,0.021576005965471,0.0046264873817563]],[[0.078071072697639,0.023243380710483,-0.090571701526642],[-0.066357560455799,-0.042010463774204,-0.006107512395829],[-0.044778440147638,-0.12033524364233,-0.043699566274881]],[[0.050600945949554,0.1045001745224,-0.02241649851203],[-0.032603748142719,-0.089378789067268,-0.01826130785048],[-0.06452576816082,-0.098651863634586,0.013877519406378]],[[0.057196594774723,-0.010165910236537,0.030751012265682],[0.036459725350142,-0.063796974718571,0.016990391537547],[0.073222033679485,-0.014504649676383,-0.043098974972963]],[[-0.068178802728653,0.070903450250626,0.045527428388596],[0.016408301889896,-0.066734358668327,-0.098543830215931],[0.01360266841948,-0.10005932301283,-0.08103883266449]],[[0.085461132228374,0.016630595549941,0.051711514592171],[0.033159129321575,-0.0022329529747367,-0.059767317026854],[0.11542781442404,-0.092593096196651,-0.019757729023695]],[[-0.0024911779910326,-0.099684864282608,-0.0040097809396684],[-0.040997121483088,0.14255891740322,0.0025334369856864],[0.021204190328717,0.045129831880331,0.053910873830318]],[[-0.065524458885193,-0.020600309595466,0.0084195863455534],[0.048890393227339,-0.012105655856431,-0.034834194928408],[-0.058275360614061,-0.068996988236904,0.049464449286461]],[[0.023810733109713,0.062675669789314,0.06215263530612],[0.022010980173945,-0.079587258398533,-0.13349585235119],[-0.0033775880001485,0.0093873515725136,-0.077645003795624]],[[-0.076460994780064,-0.011000475846231,-0.013421741314232],[0.070604287087917,-0.064865201711655,-0.032415218651295],[0.04892510920763,0.036757010966539,-0.024148674681783]],[[0.04637635871768,0.00603541219607,0.052679263055325],[-0.05226481333375,-0.033053904771805,-0.067596592009068],[-0.039613623172045,0.019351251423359,0.0099386172369123]],[[0.11583320051432,0.018627000972629,-0.05132395401597],[0.055655624717474,0.036654580384493,0.044631820172071],[-0.010331617668271,0.054647106677294,0.022169288247824]],[[-0.023599388077855,0.0008450715104118,-0.089461714029312],[0.020822416990995,0.016514424234629,0.010251144878566],[0.0041268425993621,0.057463493198156,0.084779508411884]],[[0.060599569231272,0.099277555942535,0.015755956992507],[-0.05406940728426,0.078474678099155,0.0089737810194492],[0.0022267764434218,0.041991408914328,-0.053126007318497]],[[-0.075814925134182,0.033465869724751,0.064396813511848],[-0.11033792793751,0.031503964215517,0.035818740725517],[-0.041747007519007,0.052382983267307,0.011418933048844]],[[-0.10229732096195,0.0051933499053121,0.020372714847326],[-0.058729108422995,0.0085698226466775,-0.040704656392336],[0.10260895639658,0.050077222287655,0.02585300989449]],[[-0.024090614169836,-0.022368045523763,0.083398625254631],[-0.12947909533978,0.040360901504755,0.10296689718962],[-0.029502857476473,0.015515502542257,0.027266731485724]],[[-0.074502311646938,-0.041451174765825,-0.038073103874922],[0.0144680775702,0.0088711343705654,0.03069113008678],[-0.097466021776199,-0.1604986935854,-0.067157484591007]],[[-0.099903777241707,0.090838737785816,0.0019198440713808],[0.088060684502125,0.10819181799889,-0.0048855138011277],[0.1034741923213,-0.0062395455315709,0.020658001303673]],[[-0.15614497661591,-0.048702090978622,-0.080407060682774],[0.025303533300757,-0.040773540735245,0.21576009690762],[-0.06432493776083,0.11191838234663,-0.011645090766251]],[[0.073226526379585,0.054898872971535,0.036054458469152],[-0.0078980037942529,0.038132768124342,-0.11926770210266],[0.016689604148269,0.021073898300529,-0.051724996417761]],[[0.0049820733256638,-0.069676846265793,-0.02573143132031],[0.080062821507454,0.013083660043776,0.017168745398521],[0.028628202155232,0.081994898617268,-0.07438637316227]],[[-0.087955921888351,-0.00067725498229265,-0.032487016171217],[0.0077972733415663,-0.032672725617886,-0.0040158550255001],[0.002678707242012,-0.093913324177265,0.049398474395275]],[[0.1715871244669,0.0889942497015,0.004817861597985],[0.11644858121872,-0.067370049655437,-0.04678288847208],[-0.031373608857393,0.055487874895334,-0.099666148424149]],[[0.089790388941765,-0.10710635781288,-0.29542145133018],[0.10080456733704,0.10916789621115,-0.063094988465309],[0.16233697533607,0.13050507009029,-0.07185747474432]],[[0.043913565576077,-0.090139254927635,-0.075365774333477],[-0.011861725710332,-0.090902909636497,-0.089816436171532],[0.0090781934559345,-0.0041256039403379,-0.026013581082225]],[[0.088913783431053,-0.071213595569134,-0.10926630347967],[-0.026740230619907,0.013793298974633,-0.074882470071316],[-0.0011370094725862,-0.0070878369733691,0.071952112019062]],[[0.038515318185091,-0.21343621611595,0.0053528128191829],[0.094696238636971,-0.070882551372051,0.038888871669769],[0.14254333078861,-0.025976292788982,0.048179849982262]],[[-0.073352187871933,0.10746040195227,0.043419666588306],[0.17079985141754,-0.023973887786269,-0.0052276630885899],[0.051661685109138,0.024118753150105,-0.078995384275913]],[[-0.072236977517605,-0.05993927270174,-0.063116006553173],[-0.055208165198565,0.034844350069761,-0.091898635029793],[-0.0022082831710577,0.034820146858692,0.1018675044179]],[[-0.0076182764023542,-0.071503832936287,-0.028677046298981],[0.02625435963273,-0.12833820283413,-0.10239305347204],[-0.050447847694159,-0.038437332957983,-0.04652576521039]],[[0.079503990709782,0.14982728660107,0.1228843331337],[-0.03724941983819,0.014271003194153,-0.17686697840691],[-0.018166733905673,-0.19010217487812,-0.055083055049181]],[[-0.040558185428381,0.08248695731163,0.1433801651001],[-0.064623273909092,0.082798160612583,0.042365893721581],[-0.0075984476134181,-0.097695961594582,-0.05731312930584]],[[-0.044453959912062,-0.10708867013454,-0.039584796875715],[-0.0096227265894413,-0.004852517042309,0.0029002069495618],[-0.051072265952826,0.090260148048401,0.0043867090716958]],[[0.055107321590185,0.007885355502367,0.0083559323102236],[-0.037154663354158,0.089516691863537,0.033221632242203],[0.10115421563387,0.063340328633785,0.024710753932595]],[[-0.020341567695141,-0.031355027109385,0.071685642004013],[0.019833697006106,0.044300876557827,-0.043622773140669],[0.010545204393566,0.045952439308167,0.047761764377356]],[[-0.077991262078285,0.10463603585958,0.045489877462387],[0.0037135654129088,0.093685559928417,0.040369860827923],[-0.0038467170670629,-0.064481481909752,0.01569527760148]],[[0.13871178030968,-0.028079584240913,0.026294954121113],[0.11221417039633,-0.048979695886374,-0.043970011174679],[0.1157940775156,-0.11865359544754,0.0007768030045554]],[[0.25469660758972,-0.012313836254179,-0.10424603521824],[-0.0094198910519481,0.0032217386178672,-0.097584508359432],[-0.019508747383952,-0.013182724826038,-0.056534953415394]],[[-0.062311712652445,0.0097897788509727,-0.050657577812672],[-0.12035142630339,-0.11293189972639,0.02115367911756],[-0.032997533679008,0.0058467532508075,-0.078257635235786]],[[-0.04377106577158,-0.020560931414366,0.019352251663804],[-0.068778216838837,-0.0025494175497442,0.031615022569895],[-0.011623606085777,-0.025008512660861,0.12188782542944]],[[-0.060628443956375,0.025249321013689,0.051057003438473],[-0.065662182867527,0.16641937196255,-0.0072062187828124],[0.034084547311068,-0.00094824458938092,0.14551347494125]],[[0.073249280452728,0.040945015847683,-0.010505292564631],[0.085682258009911,0.04857774451375,0.041955094784498],[0.087101019918919,0.10129683464766,0.039729598909616]],[[-0.15120643377304,2.7003487048205e-05,-0.017770987004042],[0.034676689654589,0.066007733345032,-0.035087689757347],[-0.064177192747593,-0.0047456002794206,-0.031231973320246]],[[0.013923792168498,-0.12031473219395,-0.01922869682312],[-0.075881510972977,-0.13616473972797,-0.092609830200672],[-0.0083163557574153,0.014147584326565,-0.11223615705967]],[[-0.036375783383846,-0.036305017769337,0.13298490643501],[0.070607885718346,0.0062794694676995,0.088027089834213],[0.042644213885069,0.15198735892773,0.036994785070419]],[[0.014551194384694,0.1389215439558,0.0033125290647149],[0.035344708710909,0.031982623040676,0.065634444355965],[0.032032407820225,0.042703174054623,-0.042817588895559]],[[0.048416342586279,0.0045003481209278,-0.0097759841009974],[0.038664568215609,-0.051404800266027,-0.12627916038036],[-0.063530489802361,-0.030976055189967,-0.095295868813992]],[[-0.048547077924013,-0.083817929029465,0.036623395979404],[-0.077418401837349,0.070679113268852,-0.041877221316099],[-0.019604614004493,0.016367798671126,-0.046187978237867]],[[0.012588790617883,-0.045440338551998,-0.046989131718874],[-0.0052148047834635,-0.1047368273139,-0.0067612105049193],[0.040728639811277,0.057075262069702,-0.21375793218613]],[[0.05605361238122,-0.0058604907244444,0.1159608438611],[0.0086176376789808,-0.062215588986874,-0.102196007967],[0.040442574769258,-0.060455352067947,-0.050439707934856]],[[-0.0029145213775337,0.029392026364803,-0.064875587821007],[0.065827660262585,0.0035424523521215,-0.0091650653630495],[0.072943471372128,-0.024169266223907,0.00020352366846055]],[[-0.16037228703499,-0.1326931566,-0.072496525943279],[-0.13431049883366,-0.017123766243458,0.057509392499924],[-0.0074212145991623,0.18144668638706,0.0094696674495935]],[[0.0417515411973,0.048702925443649,0.01768097281456],[-0.037132378667593,0.074605271220207,0.10560006648302],[-0.097886204719543,-0.066425368189812,-0.061436425894499]],[[0.021212538704276,-0.026502747088671,-0.01198695320636],[-0.027672290802002,-0.10596673190594,-0.082838892936707],[-0.087215714156628,0.077676303684711,-0.0060473596677184]],[[-0.082715921103954,0.059654470533133,-0.016977172344923],[0.05945136025548,0.044101521372795,-0.003873513545841],[0.051859442144632,-0.02926423586905,-0.093017064034939]]],[[[-0.014332661405206,-0.064973659813404,0.014769146218896],[0.025331014767289,-0.054656472057104,-0.0084681482985616],[0.11310654878616,-0.021921979263425,-0.070284657180309]],[[-0.022306660190225,0.0067471736110747,-0.029025133699179],[-0.029916275292635,-0.020309424027801,-0.043010845780373],[-0.037242334336042,-0.097165159881115,-0.027410838752985]],[[-0.039670038968325,-0.083050601184368,-0.043567907065153],[0.064577788114548,-0.076483972370625,-0.057959921658039],[0.0579041428864,0.029214734211564,0.02292893268168]],[[0.052973099052906,0.035755477845669,-0.036781389266253],[0.089722022414207,0.0073416875675321,-0.048954233527184],[0.059751380234957,-0.009143122471869,0.040189385414124]],[[-0.01307390909642,0.023841634392738,0.030711479485035],[0.064688213169575,0.017476316541433,-0.0033695949241519],[-0.062395520508289,-0.054542124271393,-0.07231742143631]],[[0.068823136389256,-0.12534835934639,-0.15775512158871],[0.069603078067303,-0.03866371139884,-0.15320731699467],[0.016055081039667,0.14747281372547,-0.10551622509956]],[[-0.076845251023769,0.045944660902023,-0.073977291584015],[-0.015912329778075,-0.011217830702662,0.0010552511084825],[-0.09200381487608,8.0703095591161e-05,-0.062366586178541]],[[-0.015614742413163,0.010462377220392,-0.026171678677201],[0.040756296366453,0.069795392453671,-0.012922998517752],[0.083439767360687,0.036241579800844,0.035025555640459]],[[-0.055705368518829,-0.015766089782119,-0.026550514623523],[-0.031872689723969,-0.035328630357981,0.027439944446087],[-0.016682902351022,-0.025330895558,-0.02817882783711]],[[0.065400071442127,0.07676462829113,0.045844223350286],[-0.0066591948270798,0.019469833001494,-0.022166425362229],[-0.002411225810647,-0.063660129904747,-0.043300803750753]],[[0.044934958219528,-0.095149949193001,-0.066169932484627],[0.090839490294456,0.034369967877865,-0.04289847612381],[0.050428315997124,0.11263633519411,-0.084883190691471]],[[0.0079525941982865,-0.013249345123768,-0.052922364324331],[0.053788051009178,-0.030608609318733,0.07028803229332],[0.05503660812974,0.015901807695627,-0.0062403017655015]],[[-0.00078810972627252,0.023812526836991,-0.034557908773422],[-0.00012040472211083,-0.031543236225843,-0.10100023448467],[0.026807913556695,-0.018715491518378,-0.068350575864315]],[[0.046509318053722,0.062056820839643,0.092452488839626],[-0.0065867281518877,-0.0034515757579356,0.0011012756731361],[0.014114965684712,0.074002765119076,-0.0419762134552]],[[-0.053044989705086,0.13166275620461,-0.030923828482628],[0.017785903066397,-0.047234643250704,-0.039745856076479],[-0.028779476881027,0.032048631459475,0.025677051395178]],[[-0.0059828250668943,-0.019991459324956,-0.046723823994398],[0.061956658959389,0.060835659503937,0.02351644821465],[-0.0049074366688728,0.018401669338346,-0.020694633945823]],[[-0.035153046250343,-0.059553153812885,-0.061426479369402],[0.061053302139044,0.038995161652565,-0.015254194848239],[0.023775301873684,0.034159827977419,-0.014280147850513]],[[-0.018529800698161,0.015556233935058,-0.039614889770746],[-0.013630012050271,-0.013247572816908,0.018734646961093],[-0.013595463708043,0.0056146043352783,0.0093201193958521]],[[-0.04028207436204,0.029435331001878,0.040303390473127],[0.020052153617144,0.02978896908462,0.0070336768403649],[-0.038531962782145,-0.033428229391575,-0.049526322633028]],[[0.049609359353781,0.0083370935171843,0.027462277561426],[0.08124215900898,-0.0037682766560465,-0.038646411150694],[-0.094808220863342,-0.067952908575535,-0.027889549732208]],[[-0.079640179872513,-0.013740349560976,-0.0071364874020219],[-0.0025278606917709,-0.021455785259604,-0.024781228974462],[-0.061653606593609,0.067406855523586,-0.096564441919327]],[[0.04702852293849,-0.074235431849957,0.011189792305231],[-0.024392558261752,0.032642997801304,0.085358284413815],[-0.022038795053959,-0.0086654806509614,-0.016089808195829]],[[0.070801839232445,0.0089296093210578,-0.019098207354546],[0.0022852546535432,-0.010079420171678,0.040697783231735],[-0.048614870756865,0.010402454994619,-0.041612058877945]],[[-0.042816441506147,-0.043982714414597,0.025582320988178],[0.015483638271689,0.0033479789271951,-0.051807582378387],[0.00068930932320654,0.019991686567664,0.092985168099403]],[[0.0031041845213622,-0.054678805172443,-0.08744340389967],[-0.032660454511642,0.065415754914284,-0.12113329768181],[0.04231359064579,-0.067640416324139,0.0035252794623375]],[[0.016390414908528,0.017223807051778,-0.010297548957169],[-0.0092270420864224,0.027050750330091,0.042163696140051],[-0.056206244975328,-0.042828973382711,0.00061488634673879]],[[-0.057328563183546,-0.075712159276009,-0.042492181062698],[-0.0047170170582831,-0.0099246008321643,-0.11613135039806],[-0.036698084324598,-0.033763650804758,-0.024332446977496]],[[0.11072129756212,-0.019220320507884,-0.041885405778885],[0.077443324029446,-0.024029646068811,-0.0054820976220071],[-0.066787287592888,0.07789234817028,-0.003501514904201]],[[0.0119070969522,-0.08976124972105,-0.041843865066767],[-0.076805777847767,0.012044877745211,0.056643486022949],[0.035065647214651,0.011313876137137,0.020882477983832]],[[-0.049250122159719,-0.024306461215019,-0.091785565018654],[-0.01876705698669,-0.019260136410594,0.025642266497016],[-0.027521347627044,-0.00085702340584248,-0.026218911632895]],[[0.039773613214493,-0.011770629324019,-0.023028109222651],[-0.037367399781942,-0.019892057403922,-0.034489791840315],[0.037443172186613,-0.085663162171841,0.0031049479730427]],[[-0.085906095802784,0.021985299885273,0.083788439631462],[-0.060731317847967,0.0058336392976344,-0.014125729911029],[-0.095479555428028,0.022026075050235,0.0091659547761083]],[[0.058714114129543,-0.042515873908997,0.052015148103237],[0.079278148710728,-0.04414775967598,-0.048114366829395],[0.028634693473577,-0.0025975874159485,0.021822478622198]],[[0.010954924859107,-0.083024926483631,-0.053181372582912],[-0.016829002648592,-0.06934493035078,-0.017521142959595],[0.0010571219027042,-0.046381451189518,0.013162057846785]],[[0.035962112247944,0.030610617250204,-0.050790589302778],[0.055862855166197,0.0084793968126178,0.010125051252544],[-0.023430220782757,-0.053189571946859,0.023978335782886]],[[-0.061552453786135,-0.048495195806026,0.02262088470161],[-0.054363526403904,-0.099644556641579,-0.043930534273386],[-0.076206989586353,0.011809939518571,-0.026328966021538]],[[-0.10782843083143,0.0088739357888699,0.05985888466239],[-0.050475407391787,-0.01920061558485,-0.015280135907233],[0.010899996384978,-0.025011133402586,0.043161302804947]],[[0.0090654697269201,0.0046917586587369,0.041064366698265],[-0.022722195833921,0.019351299852133,-0.016429660841823],[-0.036090444773436,-0.057592064142227,0.045687284320593]],[[-0.0098422160372138,-0.025203473865986,0.031042950227857],[-0.043322402983904,0.034454561769962,-0.063532762229443],[-0.05664348974824,-0.010088234208524,-0.053068112581968]],[[-0.026002960279584,-0.0068268151953816,-0.057551383972168],[0.047570209950209,-0.023315280675888,-0.007165564224124],[-0.054048530757427,-0.0065775536932051,-0.040653448551893]],[[-0.069918341934681,0.0084614343941212,0.032566823065281],[0.050399221479893,0.065966255962849,0.0035721899475902],[-0.012984277680516,-0.027822323143482,-0.047708239406347]],[[0.04466537758708,-0.021053519099951,-0.028735497966409],[-0.00089375919196755,0.015618654899299,-0.0043985806405544],[-0.043682131916285,-0.039858967065811,0.0065477322787046]],[[-0.062919065356255,0.026170119643211,0.1005565226078],[-0.015663865953684,0.0090168621391058,-0.042266339063644],[-0.056349258869886,-0.031947646290064,0.031489513814449]],[[-0.017904508858919,0.037337072193623,-0.039261691272259],[0.0023014184553176,-0.02092070505023,-0.065314695239067],[0.022651048377156,0.048156090080738,0.023893402889371]],[[-0.014190207235515,-0.053975589573383,-0.12734958529472],[-0.043417040258646,0.051186911761761,-0.063306987285614],[-0.024192241951823,-0.0029633245430887,-0.066402360796928]],[[-0.0074704280123115,0.0048370882868767,0.011069550178945],[0.026996999979019,-0.018299547955394,0.030131701380014],[0.014014098793268,0.046077258884907,0.054275166243315]],[[-0.059409700334072,0.014074979349971,0.09784297645092],[-0.0042825150303543,0.0055389394983649,0.0525185726583],[-0.01385344658047,0.0087393540889025,0.017129804939032]],[[0.013631675392389,0.022882185876369,-0.06032282859087],[-0.04496768862009,0.0081385429948568,0.093984849750996],[-0.06912087649107,0.027127873152494,-0.041619021445513]],[[-0.032924003899097,-0.030222097411752,-0.052743259817362],[-0.042875938117504,-0.075555235147476,0.026249099522829],[-0.050432980060577,-0.14277143776417,0.010272641666234]],[[0.057417783886194,0.019295351579785,0.031405560672283],[0.060137253254652,-0.003641321323812,-0.025120934471488],[0.054600782692432,-0.021159870550036,0.017689825966954]],[[-0.029658734798431,-0.015285005792975,0.016254369169474],[-0.051210079342127,-0.058278553187847,-0.0036385564599186],[-0.036677215248346,0.032169990241528,-0.011120757088065]],[[-0.049052722752094,-0.027570586651564,-0.0005049059400335],[0.028488539159298,0.011930800974369,0.0098134307190776],[0.03280445560813,0.0372712649405,-0.0051238839514554]],[[-0.047490026801825,-0.010370036587119,-0.029623813927174],[-0.057778839021921,-0.0065336395055056,-0.050560291856527],[-0.065284609794617,-0.067454636096954,-0.012060136534274]],[[-0.0058427532203496,0.1406784504652,0.12761907279491],[-0.023294335231185,0.041099317371845,-0.037848830223083],[0.09287516772747,0.045194443315268,0.026897646486759]],[[0.020027158781886,0.0028478719759732,0.013474046252668],[0.02950325794518,0.013173142448068,-0.015202464535832],[0.020554479211569,0.041326995939016,0.022455288097262]],[[-0.055409140884876,-0.00030161533504725,-0.057756200432777],[-0.042558431625366,0.0020818391349167,0.012026341632009],[-0.044494763016701,-0.021894153207541,0.034903544932604]],[[-0.012695838697255,-0.026726249605417,0.012741782702506],[0.038939286023378,-0.031579796224833,0.038599453866482],[0.0081508476287127,-0.0087299244478345,0.041241101920605]],[[-0.039789162576199,-0.031320687383413,0.0034073586575687],[0.045238714665174,0.060203243046999,0.022031016647816],[-0.0035656071268022,0.031881671398878,0.039692245423794]],[[-0.010044034570456,0.0088850120082498,0.054094556719065],[-0.047773193567991,0.027308730408549,-0.011075816117227],[-0.031766694039106,-0.04544897004962,0.012429466471076]],[[-0.047180321067572,0.052813310176134,-0.013544498942792],[-0.029072556644678,0.015170719474554,0.053688578307629],[0.037190262228251,-0.041365176439285,0.025183420628309]],[[0.01805954426527,0.0020331230480224,-0.010998232290149],[0.010955733247101,-0.04988282173872,0.0053742076270282],[-0.008187672123313,0.028259353712201,-0.026549935340881]],[[0.039769511669874,0.011620352976024,-0.025181738659739],[-0.010053428821266,-0.0036081513389945,0.0047744768671691],[-0.029852822422981,0.019581954926252,-0.023956129327416]],[[-0.024084186181426,0.00061745493439957,-0.028530878946185],[-0.014220047742128,-0.056951321661472,0.017355289310217],[-0.029545061290264,0.034634355455637,-0.0057319030165672]],[[-0.060788940638304,0.0071105030365288,-0.035192720592022],[-0.011361362412572,0.034955989569426,0.028611596673727],[0.019236406311393,0.0086445221677423,0.041597925126553]]],[[[-0.04597757384181,-0.0038906116969883,0.012013643048704],[-0.046740807592869,-0.10575135797262,0.039109010249376],[0.040452141314745,0.042143143713474,0.017084894701838]],[[-0.05956131964922,-0.046499088406563,0.015741173177958],[-0.00047938970965333,0.019128557294607,0.030728548765182],[-0.057712286710739,-0.02502279728651,-0.069629609584808]],[[0.018773596733809,-0.01005840767175,-0.036880034953356],[-0.022826699540019,-0.048342145979404,-0.0057717813178897],[0.040178012102842,0.0083707803860307,0.040335822850466]],[[0.073429398238659,0.0065324236638844,0.068184971809387],[0.00042481312993914,0.028313810005784,0.083166241645813],[-0.0050809886306524,-0.062163598835468,0.13906189799309]],[[-0.074444867670536,0.049803148955107,-0.029643505811691],[0.023738520219922,-0.0022482303902507,0.10798677802086],[0.049444392323494,0.067051485180855,-0.016837710514665]],[[-0.052073653787374,-0.044066365808249,0.03722558170557],[0.061744604259729,0.036046087741852,-7.1736489189789e-05],[-0.0088709304109216,-0.023962924256921,0.0051307752728462]],[[0.034070018678904,0.02177301608026,0.032476838678122],[0.037247829139233,0.034377187490463,0.034834291785955],[0.047486241906881,0.068229764699936,-0.003134801518172]],[[0.032622486352921,0.012827917002141,0.011391516774893],[0.027931464836001,0.027730068191886,-0.039227589964867],[-0.055458731949329,-0.14578826725483,-0.031765505671501]],[[0.0032276210840791,0.019758224487305,0.0090472986921668],[0.0033371224999428,0.0034978315234184,-0.068824902176857],[-0.042592763900757,-0.034487519413233,0.057737160474062]],[[-0.040297988802195,0.013320503756404,-0.064200460910797],[0.0085482252761722,0.023189954459667,-0.035727761685848],[-0.042923286557198,0.014987629838288,0.042264383286238]],[[-0.040854837745428,0.02919495664537,-0.012678067199886],[0.05523893237114,-0.034782238304615,0.017729539424181],[-0.053109534084797,0.019611425697803,0.023364692926407]],[[0.035391669720411,0.013810376636684,0.0317238047719],[-0.0085252998396754,0.037257898598909,-0.048488531261683],[0.0043169842101634,-0.031470406800508,0.016634780913591]],[[0.02920007519424,0.037053368985653,0.13239715993404],[-0.016720522195101,0.061956021934748,-0.072291851043701],[0.027352808043361,0.018942618742585,0.0081784054636955]],[[0.064048431813717,0.037248857319355,0.023946275934577],[0.010565776377916,-0.029105596244335,0.05931094288826],[-0.022374346852303,0.045970369130373,0.026275578886271]],[[0.026333713904023,-0.0099200727418065,-0.058780264109373],[0.020814122632146,0.024113837629557,0.065269574522972],[0.050088051706553,-0.012665802612901,0.040442258119583]],[[0.049477219581604,-0.015003086067736,-0.068825349211693],[-0.024220459163189,0.0014388794079423,-0.036581266671419],[0.067178659141064,-0.012694950215518,0.014240848831832]],[[0.0026514399796724,0.11247150599957,0.06172126531601],[0.084727488458157,0.1592827886343,0.063820920884609],[0.16579262912273,0.14321781694889,0.10160025954247]],[[0.034550733864307,-0.0014054817147553,0.019734527915716],[0.037107400596142,0.06308588385582,0.001352553954348],[0.082351922988892,0.11760305613279,-0.05841838568449]],[[-0.043096709996462,0.014280072413385,-0.10289491713047],[0.011328788474202,-0.0002197816647822,-0.022173020988703],[-0.12297957390547,-0.0050571160390973,-0.0020790919661522]],[[0.0067734327167273,-0.03139441460371,-0.0007335472619161],[0.039673671126366,0.097679182887077,-0.081161767244339],[0.00017398878117092,0.021406285464764,0.064127437770367]],[[0.13509938120842,0.081718601286411,0.045854706317186],[0.11252816021442,0.052479632198811,0.068379081785679],[0.08011020720005,0.1262838691473,0.089813962578773]],[[0.08347986638546,0.017626482993364,0.021483711898327],[0.043797247111797,-0.03911816701293,-0.038903675973415],[0.081241548061371,0.012144424952567,-0.062125317752361]],[[-0.029189519584179,-0.015491299331188,0.039756264537573],[0.011471220292151,0.076961755752563,-0.047107744961977],[-0.038149010390043,0.055531479418278,-0.032873462885618]],[[-0.00043515535071492,-0.00085538125131279,-0.036459032446146],[-0.057010166347027,0.010591708123684,0.048404227942228],[0.0067485277540982,0.013119084760547,-0.018396086990833]],[[0.06333763897419,0.061712238937616,0.063858836889267],[-0.0019214794738218,-0.02820504643023,0.054982800036669],[-0.0010019153123721,0.021770933642983,0.041469603776932]],[[0.063305221498013,-0.020506400614977,0.036380615085363],[0.042149133980274,0.011607836000621,0.0021442025899887],[0.019211985170841,-0.040271606296301,0.03522128239274]],[[-0.059032320976257,-0.017317717894912,0.040176283568144],[0.11972729861736,0.062436424195766,0.023665769025683],[0.047199632972479,0.13129250705242,0.083548180758953]],[[-0.010901181958616,-0.0033415681682527,-0.053937897086143],[-0.0033258597832173,-0.080729953944683,0.086026892066002],[0.06501179933548,0.090945944190025,0.086132481694221]],[[-0.0025482126511633,0.018278667703271,0.037186395376921],[-0.078939937055111,-0.01168220397085,0.032411590218544],[-0.0089406743645668,-0.016413105651736,-0.042268339544535]],[[-0.0089278621599078,0.0053991824388504,-0.0079201022163033],[-0.029992839321494,-0.0055333473719656,-0.0051244213245809],[-0.029171759262681,-0.034675687551498,-0.072711519896984]],[[0.025344410911202,0.036656573414803,-0.066211491823196],[-0.025553178042173,-0.017159456387162,-0.040023043751717],[0.029198119416833,0.048322051763535,-0.030949510633945]],[[-0.024567555636168,-0.026515109464526,-0.11787942796946],[-0.021574854850769,-0.041317135095596,-0.10559993982315],[0.065098762512207,0.01957380771637,-0.080340482294559]],[[-0.021812692284584,-0.051880944520235,0.033327806740999],[0.06767837703228,0.057022992521524,0.0047133327461779],[-0.11077357083559,-0.076207846403122,0.015483003109694]],[[0.078757435083389,0.034763164818287,0.050129842013121],[-0.037133440375328,0.066194154322147,0.056256476789713],[-0.037311751395464,0.036056157201529,0.14173552393913]],[[0.069771535694599,0.033277310431004,0.090569883584976],[0.023720726370811,0.017759000882506,-0.0040477272123098],[-0.12907946109772,-0.026330580934882,-0.060683473944664]],[[-0.028429483994842,-0.031439978629351,0.0098096048459411],[-0.14067274332047,0.037772007286549,0.038174219429493],[-0.012790949083865,-0.036289505660534,-0.019898720085621]],[[0.015621482394636,0.058792896568775,0.001027716207318],[0.048503112047911,-0.015591070055962,-0.057921539992094],[0.028365984559059,0.055632777512074,0.052878715097904]],[[0.0006081490428187,-0.0074646063148975,-0.034531258046627],[0.059689950197935,-0.061673268675804,-0.063856795430183],[-0.079667650163174,-0.041838802397251,-0.044601909816265]],[[0.053754858672619,-0.035826329141855,-0.028759442269802],[-0.048526357859373,0.047223474830389,-0.038100894540548],[0.00023311328550335,0.017037533223629,0.070658951997757]],[[-0.050411440432072,-0.048764146864414,-0.003101256210357],[0.028107775375247,-0.049012389034033,0.0050823469646275],[-0.031807143241167,-0.021204832941294,0.0077615496702492]],[[-0.013305232860148,0.12823995947838,0.042152300477028],[-0.041093461215496,0.022491609677672,0.067945100367069],[0.015641996636987,-0.00086166331311688,0.044799763709307]],[[0.0094317691400647,0.035891357809305,0.088604778051376],[-0.034621246159077,-0.042452190071344,0.11430183798075],[0.010883878916502,-0.0056963576935232,0.041367344558239]],[[0.027745448052883,0.016641162335873,-0.0054781008511782],[0.079067997634411,0.018923474475741,-0.0075429012067616],[-0.013131997548044,0.014140784740448,0.040730111300945]],[[0.047601986676455,0.080847531557083,0.07218100130558],[0.027579130604863,-0.012981116771698,-0.0032728507649153],[-0.014932886697352,0.01042471639812,0.0074131679721177]],[[-0.0097760511562228,-0.038866575807333,-0.076066464185715],[0.094169221818447,-0.02069547958672,-0.0019704115111381],[-0.020732088014483,0.06512812525034,0.018464524298906]],[[-0.011281912215054,-0.011100932955742,0.057033363729715],[-0.027057137340307,0.021137855947018,-0.063362322747707],[0.01056822668761,-0.020269541069865,0.0014851222513244]],[[-0.048821091651917,-0.043749410659075,0.052811067551374],[-0.041406005620956,-6.9893547333777e-05,0.032483514398336],[-0.0078144045546651,-0.046078540384769,-0.051277060061693]],[[-0.046814188361168,0.056381985545158,-0.019575214013457],[0.027183400467038,-0.040816001594067,-0.05266236141324],[-0.047909028828144,0.10103193670511,0.022672981023788]],[[0.075842186808586,-0.037424944341183,0.012722349725664],[0.00086202513193712,0.028923636302352,-0.010792881250381],[-0.034807126969099,0.014930807985365,0.017541073262691]],[[-0.052415102720261,0.013208310119808,0.018975332379341],[-0.056403368711472,0.051743309944868,0.11262286454439],[0.036706678569317,-0.014638442546129,0.087947100400925]],[[0.020701142027974,-0.021047402173281,0.024037215858698],[-0.055005766451359,-0.073829032480717,-0.028280016034842],[0.023143623024225,0.041482713073492,-0.034361213445663]],[[-0.01923044770956,0.044167514890432,0.08770502358675],[0.015253047458827,0.10523277521133,0.012803934514523],[-0.030377363786101,-0.032077934592962,-0.010003169067204]],[[0.069365777075291,-0.016751447692513,-0.045173656195402],[0.062639452517033,-0.013136117719114,-0.041263174265623],[-0.036760427057743,-0.045062277466059,0.021274762228131]],[[0.031116586178541,0.13440158963203,0.089283041656017],[0.025080902501941,0.086984559893608,0.089074797928333],[0.013957914896309,-0.059249836951494,0.014028634876013]],[[-0.027639051899314,0.005382567178458,0.051783058792353],[0.014092220924795,-0.053037978708744,0.049294769763947],[0.012371872551739,-0.029925661161542,-0.010352276265621]],[[-0.0092878248542547,-0.015971627086401,-0.02177800051868],[-0.02240570448339,-0.10048113018274,0.016751747578382],[0.018095165491104,-0.02216923981905,0.0020813378505409]],[[0.0027558412402868,0.046700295060873,0.079532526433468],[-0.0049965283833444,0.0070348172448575,0.049545831978321],[0.039858505129814,0.10595458745956,0.049627188593149]],[[0.0047844354994595,-0.053189791738987,-0.046781469136477],[0.0091685745865107,-0.046993527561426,-0.015189433470368],[0.024207673966885,-0.020273167639971,-0.055733043700457]],[[-0.019666625186801,0.15100029110909,0.018841408193111],[-0.0026130015030503,0.21918900310993,0.064744226634502],[-0.03059059381485,-0.030708830803633,0.021356254816055]],[[0.075918734073639,-0.0029016758780926,0.024423709139228],[0.054734028875828,-0.078080222010612,-0.021342981606722],[0.036608994007111,0.014455949887633,0.024311792105436]],[[0.051278222352266,0.055021524429321,-0.022261936217546],[0.023931453004479,0.048568744212389,0.018277758732438],[-0.025795379653573,0.0073096472769976,-0.010919196531177]],[[-0.0069461236707866,-0.031270891427994,0.024256812408566],[-0.030776375904679,-0.042718674987555,-0.048108499497175],[0.010376507416368,0.049940805882215,-0.0011908932356164]],[[0.080640725791454,0.0064005870372057,-0.0049913474358618],[0.013191328383982,0.018476683646441,-0.006464222446084],[0.014993157237768,0.06074832752347,0.10460138320923]],[[-0.021539913490415,-0.037160955369473,0.057671327143908],[0.042250748723745,0.045374404639006,-0.018296472728252],[0.062223058193922,-0.045533701777458,0.029269123449922]]],[[[0.18388019502163,-0.11696034669876,0.018595857545733],[-0.14050610363483,0.0011965999146923,-0.046282358467579],[0.061809495091438,0.021687485277653,0.19219273328781]],[[-0.03416270762682,0.052652817219496,0.026406204327941],[-0.062235474586487,0.016399946063757,-0.009799805469811],[-0.010998599231243,0.034024376422167,0.075488619506359]],[[0.051504753530025,-0.013774087652564,-0.006318342871964],[-0.001231157919392,0.035307981073856,-0.060478508472443],[0.0028038769960403,-0.069979898631573,0.036759361624718]],[[-0.017047511413693,-0.068150550127029,0.053359944373369],[-0.0017195247346535,-0.025700513273478,-0.019761299714446],[0.032637625932693,-0.079490587115288,-0.089339956641197]],[[0.024476867169142,-0.047908268868923,0.0053628040477633],[-0.043505147099495,0.060334257781506,-0.024497617036104],[0.069036342203617,0.031476639211178,-0.066599555313587]],[[0.05253043025732,0.034648343920708,0.12160517275333],[-0.037924155592918,0.094814300537109,0.014802929013968],[-0.012984280474484,-0.037030592560768,-0.15040303766727]],[[-0.033555049449205,-0.0027398820966482,-0.028052467852831],[0.093641042709351,-0.097196079790592,-0.05067415162921],[-0.018473690375686,0.0080613745376468,0.013227164745331]],[[-0.025053657591343,-0.059827163815498,-0.012861710041761],[-0.11382631212473,-0.083322264254093,0.017872514203191],[-0.03141114115715,-0.046481233090162,0.045088537037373]],[[0.078694239258766,-0.09294018894434,0.014329617843032],[-0.036969043314457,0.015061541460454,0.021062467247248],[0.002753822831437,0.048471607267857,-0.077206246554852]],[[-0.067981444299221,-0.018928095698357,-0.13788928091526],[-0.0062976107001305,-0.072511233389378,0.075802430510521],[-0.040987968444824,0.011996068060398,0.047298483550549]],[[-0.12465232610703,-0.053965166211128,0.06181263551116],[-0.13314437866211,0.023468608036637,0.00021661001665052],[-0.002594546880573,-0.081131607294083,0.0087951738387346]],[[0.04483238235116,-0.00056193518685177,-0.05285906419158],[-0.037462275475264,-0.085256233811378,-0.024615814909339],[-0.070278868079185,0.0076540638692677,-0.015697440132499]],[[0.027782524004579,-0.041288420557976,-0.055875346064568],[-0.032879635691643,-0.044101364910603,-0.07692976295948],[-0.083750866353512,-0.12774628400803,-0.076264016330242]],[[0.0019867192022502,-0.054028615355492,0.11537554860115],[0.034350700676441,0.009253004565835,0.10641678422689],[-0.052108522504568,0.066662192344666,-0.016766773536801]],[[0.021149210631847,-0.00045254963333718,-0.029389610514045],[0.041363421827555,-0.010515519417822,-0.05731725692749],[0.13495850563049,0.073793418705463,0.11603759974241]],[[-0.042729087173939,0.016778213903308,0.047318808734417],[-0.0405000038445,0.028332445770502,-0.063031196594238],[0.042501393705606,0.01041226182133,0.082146808505058]],[[0.062378160655499,-0.0013149485457689,0.024008985608816],[-0.070289760828018,-0.028528926894069,-0.11315792053938],[0.020623728632927,-0.0047774878330529,-0.012660022825003]],[[-0.021057315170765,0.0084573095664382,-0.020433260127902],[0.027644896879792,-0.029978424310684,0.021912068128586],[-0.044776178896427,0.059942737221718,0.061110764741898]],[[-0.028790704905987,-0.017448665574193,-0.045747101306915],[-0.036373879760504,-0.071882501244545,0.0052584512159228],[-0.0025020106695592,-0.0055652414448559,0.081692956387997]],[[0.033682461827993,-0.024748098105192,-0.03251026943326],[0.11137702316046,-0.014464233070612,0.0093715405091643],[-0.049090687185526,0.0034665009006858,0.012016608379781]],[[0.083409547805786,-0.02201995626092,-0.058741319924593],[-0.052001122385263,-0.00928935687989,-0.042920753359795],[0.01337425597012,-0.081531062722206,-0.031974390149117]],[[-0.0082781715318561,0.040589291602373,0.053573351353407],[0.017011515796185,0.070374146103859,-0.040524549782276],[-0.020999604836106,0.012219531461596,-0.020887373015285]],[[-0.091812990605831,-0.085235759615898,-0.0344950966537],[0.0057779937051237,0.060175102204084,0.025381423532963],[0.047733571380377,0.057715363800526,0.0069467364810407]],[[-0.17427642643452,0.018591972067952,-0.019305281341076],[0.0360715277493,-0.066219337284565,0.049541518092155],[-0.037684686481953,-0.069654047489166,-0.00097981875296682]],[[0.060704417526722,0.056815642863512,0.062170032411814],[0.079427920281887,-0.014950190670788,-0.0095157967880368],[-0.023666936904192,0.0051881712861359,-0.12776136398315]],[[-0.064886771142483,-0.016030386090279,-0.009101876989007],[0.066381834447384,0.0060846298001707,-0.070959247648716],[-0.014175380580127,-0.043139792978764,-0.02180489897728]],[[-0.0040877405554056,0.044479791074991,0.019125638529658],[0.087938740849495,-0.0016727773472667,-0.043135829269886],[-0.048913899809122,0.0036318197380751,0.053854554891586]],[[-0.1341540813446,-0.061053838580847,-0.091024413704872],[-0.025314414873719,-0.052477199584246,-0.045944850891829],[0.0057170051150024,-0.11453503370285,-0.082478627562523]],[[0.021829394623637,-0.022253725677729,-0.014926298521459],[-0.034086406230927,-0.04760755226016,-0.12226594239473],[-0.15418499708176,-0.046958062797785,-0.040260765701532]],[[0.073302768170834,0.075896762311459,-0.037878751754761],[0.04531679674983,0.028321877121925,0.0045551476068795],[-0.031169917434454,-0.034506011754274,-0.039986435323954]],[[-0.13691303133965,0.015664044767618,-0.066950716078281],[0.082218915224075,0.040614690631628,-0.057483933866024],[0.078173242509365,-0.0020421126391739,-0.047301445156336]],[[-0.029830621555448,-0.035845890641212,0.040911141782999],[-0.025180846452713,0.047136161476374,-0.0018696906045079],[0.0094783054664731,0.039137493818998,0.026765154674649]],[[-0.041294388473034,-0.065068371593952,-0.030589869245887],[-0.026735058054328,0.069520078599453,-0.086048364639282],[0.011473635211587,0.04404229670763,-0.021475736051798]],[[-0.02529614046216,0.029662057757378,-0.0076002804562449],[-0.0149767100811,-0.027668820694089,-0.054008543491364],[-0.08242666721344,-0.10683269798756,0.024238064885139]],[[-0.049300696700811,0.061110287904739,0.053986500948668],[0.079313315451145,-0.0054370034486055,-0.12113908678293],[0.033306691795588,0.015759343281388,0.061066824942827]],[[0.082109071314335,0.063299641013145,0.049782030284405],[-0.071945309638977,-0.018985789269209,-0.10909290611744],[-0.08319927752018,-0.039695501327515,-0.033808775246143]],[[0.079655922949314,0.07305096834898,-0.082092352211475],[-0.0089197345077991,-0.043094128370285,-0.089860118925571],[0.043064653873444,-0.0607082657516,-0.08414152264595]],[[0.036378879100084,0.036642555147409,-0.024496687576175],[0.067835837602615,0.014938354492188,-0.038912322372198],[-0.00058049178915098,0.059148564934731,0.05729378759861]],[[-0.0096505144611001,0.00730193965137,0.026934381574392],[-0.063145115971565,-0.083335213363171,-0.027897894382477],[0.03619609773159,0.05397367849946,-0.044319026172161]],[[-0.0076710325665772,0.023321308195591,0.012818363495171],[-0.063763849437237,-0.018783966079354,-0.015519694425166],[0.031428389251232,0.091034546494484,-0.099456518888474]],[[-0.029626211151481,-0.027227940037847,-0.0028776221442968],[-0.035237099975348,0.0043124202638865,-0.05707785114646],[-0.0014218795113266,0.022773636505008,0.077862918376923]],[[-0.084552451968193,-0.081181168556213,-0.051115937530994],[-0.018925778567791,0.038092881441116,0.12695406377316],[0.01188919134438,0.076253034174442,0.033340558409691]],[[-0.059679411351681,-0.017229350283742,-0.035317860543728],[-0.043285012245178,-0.0060769533738494,-0.0022944181691855],[0.051880333572626,0.079658634960651,0.11478161066771]],[[0.0092724962159991,0.00098241504747421,0.063657015562057],[-0.017855430021882,-0.047199163585901,-0.044909317046404],[-0.010387010872364,0.0011838240316138,-0.1348684579134]],[[0.044312801212072,-0.015186624601483,0.047333709895611],[0.022387214004993,0.0019639700185508,0.048236198723316],[0.024275677278638,0.056434731930494,0.019930044189095]],[[-0.053613528609276,0.0021696763578802,0.021653899922967],[-0.047688454389572,0.049759469926357,-0.02953396178782],[0.054939478635788,0.063542440533638,-0.017833914607763]],[[0.042818371206522,0.081685245037079,-0.085114248096943],[-0.087311290204525,-0.088420182466507,0.0055192331783473],[0.0060415659099817,0.028521426022053,0.041005186736584]],[[-0.013841854408383,0.013677918352187,-0.049381326884031],[0.029846722260118,0.067697644233704,-0.0037418690044433],[-0.050382230430841,0.07723405957222,0.01338554546237]],[[-0.027021355926991,-0.0048168818466365,-0.0061107813380659],[-0.079710572957993,0.00040075648576021,-0.064386315643787],[-0.045025259256363,0.05033091083169,-0.044259738177061]],[[-0.12807634472847,-0.031345065683126,-0.063515678048134],[0.0010720923310146,-0.020068867132068,-0.07485531270504],[0.032197486609221,0.049510542303324,0.097611054778099]],[[0.040607359260321,0.019046934321523,-0.044572476297617],[0.0047585661523044,-0.1123046875,-0.0065987328998744],[0.012087768875062,-0.01533886231482,0.0043954406864941]],[[-0.031654018908739,0.051853030920029,0.028463147580624],[0.021249374374747,0.099758647382259,-0.041470423340797],[-0.041757501661777,-0.082587242126465,-0.091590210795403]],[[0.084573648869991,-0.050328653305769,0.035555627197027],[0.054506033658981,-0.0077229011803865,-0.048049814999104],[0.051755715161562,0.036771550774574,0.080250106751919]],[[0.048094540834427,0.051990948617458,0.15486347675323],[0.179478764534,0.078006349503994,0.21063081920147],[-0.019959546625614,-0.068902187049389,-0.026079108938575]],[[-0.034246943891048,-0.057243641465902,0.011946056038141],[0.051407124847174,-0.044464461505413,-0.02867803350091],[0.020927987992764,-0.070963725447655,0.003493390744552]],[[0.0583266466856,-0.046436756849289,0.017417719587684],[-0.0071819215081632,0.030297225341201,0.020456075668335],[0.011820358224213,-0.02960916236043,-0.045152705162764]],[[-0.11261866986752,-0.11849801242352,-0.14427214860916],[-0.030011700466275,-0.019937111064792,-0.034445218741894],[-0.1041971296072,-0.11275987327099,-0.044157207012177]],[[0.029376028105617,0.018164537847042,-0.045702565461397],[-0.071532316505909,-0.060245733708143,-0.14426122605801],[-0.038978703320026,-0.028081800788641,-0.15906667709351]],[[-0.040229447185993,-0.027393808588386,0.051423460245132],[0.04300856590271,0.01251273881644,0.052342984825373],[0.048970945179462,0.058400105684996,-0.057736542075872]],[[0.079895704984665,0.036922551691532,0.02624549344182],[0.023338217288256,0.0054376823827624,0.0130107505247],[-0.031445153057575,-0.077288992702961,0.008522380143404]],[[-0.045200183987617,-0.022526394575834,0.003860485041514],[0.015504159033298,0.1035328283906,-0.096382595598698],[0.07070604711771,-0.046173617243767,-0.054456785321236]],[[0.03962280228734,0.05099593475461,0.017920447513461],[-0.039859607815742,-0.026543399319053,-0.0041083409450948],[-0.092907525599003,0.036859076470137,-0.0077318823896348]],[[-0.016601879149675,0.047996129840612,-0.086761638522148],[-0.033994659781456,-0.022006746381521,0.060610886663198],[0.0032942981924862,-0.034979518502951,0.023724019527435]],[[-0.010516577400267,0.0031217925716192,-0.029836423695087],[-0.048629619181156,-0.01321202609688,-0.002249289304018],[0.02020594291389,-0.043381005525589,-0.011768805794418]]],[[[-0.026786003261805,0.074884057044983,-0.0065505607053638],[0.025179026648402,-0.023997796699405,-0.03839098662138],[-0.056118328124285,0.010467090643942,-0.026223853230476]],[[0.010929115116596,-0.015493208542466,-0.066455036401749],[0.0080248033627868,-0.050029400736094,0.0012502180179581],[-0.06914684176445,0.028420366346836,-0.011909883469343]],[[0.0050119133666158,0.03883658349514,-0.019216202199459],[0.0024520941078663,-0.064375020563602,0.05208757519722],[0.037879720330238,-0.0075547462329268,0.012870061211288]],[[-0.017401203513145,0.025799322873354,0.0097772339358926],[-0.034197021275759,-0.041974369436502,0.074689045548439],[0.081942237913609,0.018267706036568,0.02352967299521]],[[0.043869767338037,-0.035826683044434,-0.041257414966822],[-0.050851054489613,-0.026865715160966,0.028485218062997],[0.060218404978514,-0.0015112665714696,0.035884588956833]],[[0.067687273025513,0.031388774514198,-0.00039648471283726],[-0.13460272550583,0.06365293264389,-0.0529830083251],[-0.11715377122164,0.014415415935218,0.059289023280144]],[[-0.050204992294312,0.057411693036556,-0.060625027865171],[-0.047894187271595,-0.024816362187266,0.00038269127253443],[-0.0024095452390611,0.00088571908418089,-0.024291405454278]],[[0.00063268205849454,0.054906044155359,-0.11132607609034],[-0.099269717931747,0.042104918509722,0.030105542391539],[0.070491410791874,-0.0031878028530627,0.040671247988939]],[[0.0073202983476222,-0.024166285991669,-0.031999066472054],[0.03427205234766,0.02871492318809,0.063419103622437],[0.0072655263356864,0.019143503159285,-0.036414068192244]],[[0.029607748612761,0.0254594553262,-0.028147615492344],[-0.037583112716675,0.045842513442039,0.0063396585173905],[0.0025715650990605,-0.055106367915869,-0.020059276372194]],[[0.01780485920608,0.0077121206559241,0.022172641009092],[-0.063568651676178,0.072016395628452,-0.042626567184925],[0.0032125366851687,0.050579912960529,0.023639434948564]],[[0.0067160036414862,-0.013920875266194,-0.010942194610834],[-0.04356437921524,-0.021307097747922,-0.020136907696724],[0.013080511242151,-0.0074056684970856,0.031402841210365]],[[0.010725225321949,0.0011539687402546,-0.031356785446405],[-0.036980453878641,-0.046666350215673,0.015253687277436],[-0.018637044355273,0.0034187512937933,-0.035297565162182]],[[-0.024780105799437,0.087045304477215,0.10068076848984],[-0.020421016961336,0.030908146873116,0.005071965046227],[0.055186122655869,0.068365633487701,-0.034681588411331]],[[0.0095815546810627,0.02900755032897,0.083000965416431],[-0.067798234522343,-0.030634388327599,0.046654898673296],[-0.044382721185684,-0.067851312458515,0.061227414757013]],[[0.034944213926792,-0.0016760407015681,-0.029850900173187],[0.049615480005741,-0.05134566500783,-0.0095798587426543],[0.062127191573381,-0.054570499807596,0.012858592905104]],[[-0.027494104579091,-0.057370856404305,-0.082603618502617],[0.029283314943314,0.071589656174183,0.09067077934742],[0.022191546857357,-0.049429763108492,0.025003017857671]],[[0.016510827466846,0.066322915256023,-0.10550253838301],[-0.016551092267036,-0.0062091103754938,-0.0010581521783024],[-0.0044267596676946,-5.9843943745364e-05,0.028507683426142]],[[0.0033176145516336,-0.011123202741146,-0.017751457169652],[-0.024699246510863,0.079402253031731,-0.007835378870368],[-0.068326659500599,-0.037630226463079,-0.023180739954114]],[[-0.081517808139324,-0.077490858733654,-0.083090290427208],[-0.0092652710154653,-0.025318527594209,-0.025180116295815],[-0.017557248473167,0.0095431581139565,0.052591107785702]],[[-0.031395632773638,-0.021887695416808,-0.019933946430683],[-0.075362287461758,-0.067534953355789,-0.055584840476513],[-0.1076262742281,0.033000141382217,-0.07901855558157]],[[0.035662684589624,-0.033489055931568,0.060132086277008],[-0.0045553031377494,0.009864330291748,-0.046559266746044],[0.0025784817989916,0.001336136017926,-0.0024978211149573]],[[-0.00084285042248666,0.050078611820936,-0.048380631953478],[0.033648371696472,0.069897510111332,-0.0080538364127278],[4.7659494157415e-05,-0.055845335125923,-0.017272885888815]],[[0.040138337761164,-0.042691562324762,-0.030527262017131],[-0.012603879906237,0.042250331491232,-0.044512148946524],[0.027502106502652,0.01749824732542,0.024237655103207]],[[-0.045041590929031,0.04847264662385,-0.10505025088787],[-0.05506344512105,0.055704087018967,-0.059614971280098],[-0.0392573364079,-0.0063730194233358,-0.025100089609623]],[[-0.058788299560547,0.036359906196594,-0.013262870721519],[0.004536859691143,0.10311898589134,-0.085106290876865],[-0.064592413604259,-0.028528861701488,0.0025493477005512]],[[0.020121723413467,-0.14343677461147,0.094307564198971],[-0.07097439467907,-0.059317708015442,-0.05376061797142],[-0.055340487509966,-0.074349693953991,0.016189642250538]],[[-0.072406947612762,-0.00051507871830836,0.02529720403254],[0.021550208330154,0.035730578005314,-0.03404938057065],[-0.041773278266191,-0.0078542781993747,-0.016487691551447]],[[0.083109803497791,0.028756184503436,-0.010516193695366],[-0.087606638669968,0.0089495768770576,0.02018017321825],[-0.015788221731782,-0.067563638091087,-0.027632895857096]],[[-0.020505748689175,-0.095636136829853,0.0390365421772],[-0.01383379753679,0.053337819874287,0.013313798233867],[-0.12980800867081,-0.045218124985695,0.016004232689738]],[[-0.037715915590525,0.016738340258598,0.046368487179279],[-0.0023464758414775,-0.0019826490897685,-0.0023046291898936],[-0.027359703555703,-0.052778456360102,0.026376869529486]],[[0.012184620834887,-0.049799133092165,-0.023503202944994],[0.033549945801497,-0.037090189754963,-0.012624836526811],[0.043003339320421,0.0082484493032098,0.030794803053141]],[[0.028541680425406,-0.025447778403759,-0.09267944842577],[0.081632278859615,-0.01656374707818,-0.050105854868889],[0.077060654759407,-0.014137661084533,-0.037469185888767]],[[-0.003439937485382,-0.085870295763016,-0.018011840060353],[0.014522065408528,-0.017505779862404,0.0033164422493428],[-0.061728294938803,-0.027235513553023,0.034977417439222]],[[-0.021856071427464,-0.036264639347792,0.012283159419894],[-0.025153154507279,-0.038956876844168,-0.052479844540358],[-0.029481781646609,-0.023859672248363,0.033378999680281]],[[-0.05778231471777,0.038324359804392,0.017007246613503],[-0.15679498016834,-0.1025663241744,0.041940107941628],[-0.075312398374081,-0.019525429233909,-0.048221096396446]],[[0.024492556229234,0.00066652748500928,-0.084161855280399],[-0.052520632743835,-0.090027928352356,0.020454756915569],[-0.023563742637634,-0.049615245312452,0.0042663807980716]],[[0.00067373871570453,-0.06212130934,0.031456775963306],[0.0080926083028316,-0.020147504284978,-0.062599986791611],[0.036454547196627,0.049193259328604,-0.02456315048039]],[[-0.10757246613503,0.014478892087936,-0.0097037237137556],[0.055181242525578,0.018857268616557,0.049703538417816],[-0.13458356261253,-0.016235405579209,-0.02845611795783]],[[-0.036146089434624,-0.049236886203289,0.040343336760998],[0.036841109395027,-0.00026153889484704,-0.029467303305864],[0.031405173242092,0.012803100980818,-0.0030657204333693]],[[-0.055968645960093,-0.050092279911041,-0.060998167842627],[-0.036127578467131,-0.024869345128536,0.11859676241875],[0.0032383508514613,0.021005008369684,0.10824167728424]],[[-0.02323087118566,-0.035364501178265,0.029930036514997],[0.040846068412066,-0.013143889605999,-0.0055475062690675],[-0.011932721361518,-0.071149855852127,-0.025326712056994]],[[-0.042051363736391,0.0199825912714,0.0051211705431342],[-0.057179726660252,0.019271854311228,0.10798734426498],[-0.0056459070183337,-0.014270247891545,0.0062328008934855]],[[-0.010149531066418,-0.042626410722733,-0.014241019263864],[0.011442246846855,-0.010739832185209,0.024278953671455],[-0.039812311530113,0.056048840284348,0.050143204629421]],[[0.056309018284082,-0.014093458652496,-0.0074340174905956],[-0.061129033565521,0.065498016774654,-0.094971694052219],[-0.14803558588028,0.034381542354822,0.00821128860116]],[[-0.0058986111544073,0.0074589331634343,-0.032198779284954],[-0.030576296150684,-0.017132734879851,0.072514995932579],[0.056898646056652,-0.0098528973758221,0.0044392375275493]],[[-0.028545871376991,-0.0098211281001568,0.059522274881601],[-0.020566575229168,0.059919331222773,-0.0091403303667903],[0.018708571791649,0.016856774687767,0.039165493100882]],[[0.049155566841364,0.037304021418095,0.014007405377924],[-0.0060630044899881,0.025933306664228,0.017733264714479],[-0.016125587746501,-0.080861166119576,0.021026000380516]],[[-0.0015770413447171,-0.047327119857073,-0.059312589466572],[0.011513532139361,0.03774743899703,-0.043564930558205],[-0.008365124464035,-0.01673842407763,0.0094901034608483]],[[0.050151694566011,-0.052323516458273,-0.0098004080355167],[-0.050576694309711,0.017935106530786,-0.046693168580532],[0.031513020396233,0.05857902765274,-0.020434807986021]],[[-0.044506419450045,0.037454083561897,0.0021270720753819],[-0.0042040571570396,-0.04911794885993,-0.07790669798851],[-0.036624196916819,0.056201662868261,0.010786773636937]],[[-0.07893730700016,-0.016812391579151,-0.061549421399832],[0.033064786344767,0.0088379783555865,0.048323310911655],[0.058924447745085,-0.0050563178956509,-0.022130070254207]],[[0.016838347539306,-0.0017885873094201,-0.053984977304935],[-0.020935023203492,-0.045701470226049,-0.053923595696688],[-0.029370475560427,0.026271723210812,0.010361397638917]],[[0.028129409998655,0.049223817884922,0.033190689980984],[0.14001938700676,0.080811575055122,0.051694247871637],[0.0013734254753217,-0.014377620071173,0.053940396755934]],[[0.021943539381027,0.073096290230751,-0.068349160254002],[-0.04122955724597,-0.019884550943971,-0.0085460180416703],[0.058917105197906,0.007056696806103,0.015310649760067]],[[-0.01523972582072,-0.066493675112724,-0.049912963062525],[0.0083733582869172,-0.031078919768333,0.0018874702509493],[-0.0040557808242738,-0.012597958557308,0.083849862217903]],[[0.01344798412174,-0.095685660839081,0.0027762679383159],[-0.015861986204982,0.022046899423003,0.066398210823536],[-0.042095083743334,0.02424362488091,0.0078177973628044]],[[-0.010373642668128,-0.032249391078949,0.018485311418772],[-0.031633503735065,-0.015141754411161,0.026847530156374],[-0.0078333811834455,-0.029236560687423,0.078145176172256]],[[-0.048898421227932,-0.015571030788124,0.035343945026398],[-0.0207663718611,0.0010329361539334,0.027708949521184],[-0.03542111068964,0.038499258458614,0.037639919668436]],[[0.03329024091363,-0.012268922291696,0.010060130618513],[-0.02941401861608,-0.07151385396719,0.043350420892239],[0.016690226271749,0.081552922725677,0.010974502190948]],[[-0.041515816003084,-0.059872847050428,-0.059335917234421],[0.014685656875372,-0.026370430365205,-0.0390719845891],[0.052970517426729,0.055348698049784,0.0083443783223629]],[[0.00812067091465,-0.034071117639542,-0.031656671315432],[0.0019925297237933,-0.00024526490597054,0.01180793531239],[0.0059949196875095,-0.017033712938428,-0.07481674849987]],[[-0.010160225443542,-0.055087573826313,0.022038800641894],[-0.015219789929688,-0.054118856787682,-0.052917465567589],[-0.007161614485085,0.053717464208603,-0.017156170681119]],[[-0.001130725373514,-0.017041789367795,-0.015970431268215],[0.00039354598266073,-0.04794891923666,0.033355787396431],[-0.045229975134134,0.0051486906595528,0.10164967179298]]],[[[0.042517732828856,0.043186236172915,-0.025150392204523],[-0.057574968785048,-0.043934922665358,-0.011742131784558],[0.095739871263504,0.02784968726337,-0.00032573094358668]],[[-0.050719350576401,0.037513583898544,0.025397954508662],[0.032214984297752,-0.026088576763868,-0.064240716397762],[-0.018628345802426,-0.01548620313406,0.0095418868586421]],[[0.017033107578754,-0.0091313254088163,0.069290868937969],[-0.030602622777224,-0.045347135514021,-0.040251947939396],[0.0047104223631322,0.04901710152626,0.014171457849443]],[[0.014289780519903,-0.028247835114598,-0.017666812986135],[-0.0066159893758595,0.01092723198235,-0.087729223072529],[0.037134487181902,0.0058663683012128,0.037616364657879]],[[0.071725435554981,0.0033436992671341,-0.073343716561794],[-0.13038264214993,-0.025476582348347,0.038682274520397],[0.058939442038536,0.025371572002769,0.03365046530962]],[[0.015136126428843,0.10899948328733,0.14074620604515],[-0.0076447739265859,-0.099619790911674,0.21963205933571],[-0.062700048089027,-0.18853484094143,0.042583677917719]],[[0.058731403201818,0.035713352262974,0.032192677259445],[0.014328283257782,-0.033280935138464,0.023087035864592],[0.0049542021006346,-0.044196087867022,-0.033262487500906]],[[-0.081785745918751,-0.010726984590292,0.0069099366664886],[-0.098146423697472,0.030273305252194,-0.045332677662373],[-0.0020673382095993,0.048644967377186,0.14401844143867]],[[0.035056252032518,0.024245886132121,-0.021445268765092],[-0.024889796972275,-0.095740459859371,0.046436876058578],[-0.033637307584286,0.07117272913456,-0.037575174123049]],[[-0.025441952049732,0.022057078778744,0.0049214684404433],[-0.051012720912695,0.054681289941072,-0.067328065633774],[0.059998799115419,0.025960160419345,-0.019461022689939]],[[0.09122796356678,-0.058960676193237,-0.029305938631296],[0.030966252088547,-0.00994888599962,0.082192838191986],[0.035881500691175,0.058428566902876,-0.013263559900224]],[[-0.042370647192001,-0.029809977859259,-0.055990573018789],[-0.035343714058399,0.079203940927982,0.061694856733084],[0.0047957305796444,-0.025000082328916,-0.0094739161431789]],[[-0.016841791570187,-0.036820206791162,-0.0022532364819199],[-0.045339364558458,-0.061196818947792,-0.04309356585145],[-0.0093535454943776,0.043166935443878,-0.046781737357378]],[[0.035822473466396,0.026945119723678,0.043206054717302],[-0.041408978402615,0.10965091735125,0.064191579818726],[0.13134190440178,-0.0027850137557834,-0.057736489921808]],[[-0.0034407456405461,-0.06760960817337,0.10947702080011],[0.068581715226173,-0.11051480472088,-0.050049480050802],[0.00028211131575517,0.046257711946964,-0.062240060418844]],[[0.028709022328258,0.037759948521852,0.033614158630371],[0.0047338246367872,-0.039091378450394,0.0033017178066075],[0.031050987541676,0.01932917535305,0.023858023807406]],[[-0.090780153870583,-0.00015480167348869,0.0081747397780418],[-0.040642183274031,-0.014326078817248,0.010913703590631],[-0.0013575400225818,0.013535403646529,-0.067688584327698]],[[-0.016312576830387,0.017273455858231,-0.045844033360481],[-0.065467439591885,-0.031778734177351,-0.0025785977486521],[0.0018007392063737,-0.020507622510195,0.0076184142380953]],[[-0.022048072889447,0.024828299880028,0.012679941952229],[-0.025987109169364,0.017170595005155,-0.061971306800842],[-0.013693076558411,-0.0045833503827453,0.074197456240654]],[[-0.046689849346876,-0.015961458906531,-0.029737072065473],[-0.0036691315472126,0.0040282560512424,-0.020707191899419],[-0.0075145093724132,-0.019832031801343,-0.020066823810339]],[[-0.053196307271719,-0.037071827799082,0.011828196235001],[0.082410663366318,-0.0011321908095852,-0.060952141880989],[-0.00074476969894022,0.033814020454884,0.033675726503134]],[[-0.013068715110421,0.00055681291269138,-0.034371145069599],[0.017468446865678,0.056663129478693,0.029687665402889],[-0.051613632589579,-0.041201904416084,-0.045702394098043]],[[-0.010633907280862,0.031514953821898,-0.042527988553047],[0.029447900131345,0.017595231533051,0.019855037331581],[-0.012923108413815,-0.0016003431519493,-0.055011633783579]],[[-0.0049274391494691,0.050868470221758,0.035058256238699],[-0.011557024903595,-0.017282444983721,-0.004678706638515],[-0.0074216015636921,0.036045391112566,0.065409183502197]],[[0.0046072825789452,-0.0083243418484926,0.040409207344055],[0.061993807554245,-0.039946459233761,0.049229376018047],[-0.031300064176321,0.01412255037576,0.03277600184083]],[[0.047827087342739,-0.036142818629742,-0.051611755043268],[-0.035992775112391,0.030321650207043,0.00067993742413819],[-0.052568323910236,0.02775046415627,0.017493629828095]],[[-0.066262498497963,-0.036040633916855,-0.023075424134731],[-0.019205214455724,-0.044429767876863,0.055648237466812],[0.0096915904432535,-0.056384742259979,-0.057675998657942]],[[-0.051392275840044,-0.046484667807817,0.022681165486574],[-0.082619614899158,0.026589410379529,-0.024281492456794],[0.069378159940243,-0.061983812600374,0.080395519733429]],[[0.049748782068491,-0.00093655497767031,-0.0018643526127562],[-0.059225335717201,0.043591890484095,-0.049253303557634],[-0.088180385529995,0.053134094923735,0.064645104110241]],[[0.042582139372826,-0.039622481912374,-0.038110960274935],[-0.026717545464635,-0.016419816762209,-0.0015942013124004],[-0.0049775070510805,-0.0032767821103334,-0.016497604548931]],[[-0.007431773468852,0.020865004509687,-0.0033593915868551],[-0.057144165039062,0.015133541077375,-0.024458583444357],[0.02732877805829,-0.086735747754574,-0.058133833110332]],[[-0.027114907279611,-0.055947192013264,-0.0065311067737639],[-0.10814315825701,-0.014454949647188,0.00049973599379882],[-0.028660899028182,0.021837877109647,-0.019878637045622]],[[0.043247383087873,-0.02480548620224,-0.084712408483028],[0.037877269089222,0.039959970861673,0.043576445430517],[0.0044650631025434,-0.064633503556252,-0.021745689213276]],[[0.030495284125209,-0.011441073380411,0.0052057132124901],[-0.0301523655653,-0.010793388821185,-0.039472956210375],[0.016545686870813,0.026758285239339,0.042341899126768]],[[-0.05929484218359,0.042159512639046,0.013443483039737],[0.053928643465042,-0.012132643721998,0.036918193101883],[-0.016674654558301,0.039612371474504,-0.079431526362896]],[[0.01804705709219,0.061750389635563,0.0073397089727223],[0.0086714578792453,-0.072117887437344,0.068065516650677],[-0.027751663699746,-0.058405373245478,0.017844870686531]],[[-0.029184751212597,-0.07352053374052,-0.034961480647326],[0.057751912623644,0.069088578224182,-0.021126193925738],[-0.079441845417023,0.014232514426112,-0.035382393747568]],[[0.053833264857531,-0.028540980070829,0.070998385548592],[-0.024080710485578,0.0052414513193071,-0.090282574295998],[-0.02480255253613,-0.067833349108696,0.057357549667358]],[[0.051275584846735,0.016649471595883,0.0061404299922287],[0.041919961571693,-0.11921082437038,-0.055084872990847],[-0.013863268308342,-0.050523545593023,-0.079730965197086]],[[-0.038035828620195,0.0033558011054993,0.047948442399502],[0.024726686999202,-0.063555240631104,-0.038614589720964],[-0.022371381521225,-0.068338178098202,0.031039822846651]],[[-0.090874761343002,-0.016211058944464,0.051027286797762],[-0.01321810297668,0.0014166051987559,-0.012079307809472],[-0.0020878638606519,-0.0011670193634927,0.016127560287714]],[[0.09088846296072,0.060509715229273,-0.090916842222214],[0.0086789401248097,0.0065275118686259,0.023737845942378],[-0.037904508411884,0.043723024427891,0.039143335074186]],[[0.011243866756558,0.0024966679047793,-0.081206783652306],[0.040431041270494,0.028080459684134,-0.012613721191883],[0.05307998880744,-0.018430031836033,0.045505732297897]],[[0.049636706709862,-0.01285286527127,-0.049871832132339],[-0.014515991322696,-0.12456806004047,-0.019643353298306],[-0.0086639253422618,0.077366665005684,-0.029497440904379]],[[-0.029720874503255,0.073871858417988,0.046421393752098],[0.0059803230687976,0.018114032223821,-0.0049642161466181],[0.00194149708841,-0.040179707109928,0.058347895741463]],[[0.058598652482033,0.033490959554911,-0.038817118853331],[-0.053394686430693,0.005082085262984,0.0086040031164885],[-0.022172773256898,0.04206084087491,-0.052282989025116]],[[-0.013872379437089,0.0097686713561416,0.0031615030020475],[0.013628992252052,-0.023714605718851,0.073695957660675],[-0.0024367170408368,0.010231984779239,-0.038080811500549]],[[0.030932791531086,0.015141810290515,0.032787200063467],[0.020974215120077,-0.025537062436342,0.012620743364096],[0.01982837356627,0.049849331378937,0.092392385005951]],[[0.035178750753403,0.023581365123391,0.038917671889067],[-0.0779924467206,-0.058213472366333,-0.022976171225309],[-0.082360088825226,-0.044281553477049,-0.010321099311113]],[[-0.050530523061752,0.022534549236298,-0.016941756010056],[0.028771469369531,0.005087910220027,-0.049224279820919],[-0.10352136939764,0.013290485367179,-0.029586561024189]],[[-0.014892465434968,0.038235552608967,0.015091782435775],[0.034689977765083,-0.013559282757342,0.013177422806621],[0.0042721233330667,0.0022997993510216,-0.018120050430298]],[[-0.041851814836264,-0.046678557991982,0.0056798034347594],[-0.038358133286238,-0.032004121690989,-0.11915899068117],[-0.0096207121387124,0.075251236557961,-0.069569699466228]],[[-0.04880503937602,-0.013107905164361,0.010890556499362],[-0.033639226108789,-0.017311476171017,-0.094934977591038],[-0.0082125775516033,0.0207390319556,-0.044908352196217]],[[0.10558019578457,0.018369214609265,0.016320055350661],[0.093943051993847,0.12647986412048,0.07590714097023],[0.077618174254894,0.057042758911848,0.086799331009388]],[[-0.053503632545471,0.031650885939598,0.003114300314337],[0.017325840890408,0.060830350965261,-0.015905102714896],[-0.012261372059584,-0.055203143507242,-0.024427806958556]],[[-0.0027019558474422,-0.0074213854968548,-0.071658901870251],[-0.054052788764238,-0.01117496099323,-0.051979698240757],[0.01396085228771,-0.015700777992606,-0.00057350716087967]],[[0.011551443487406,0.027024753391743,-0.0011082426644862],[0.025689927861094,-0.029904274269938,-0.10264164209366],[-0.041949924081564,-0.002019670791924,-0.0082239583134651]],[[-0.0078171864151955,0.019603421911597,0.07188817858696],[-0.0045904102735221,-0.057587951421738,0.048238843679428],[-0.030214935541153,0.049633406102657,0.055611152201891]],[[0.065533086657524,-0.015519513748586,0.037871167063713],[0.093042649328709,0.0008241402101703,0.030900737270713],[0.071914188563824,-0.035585269331932,-0.046929635107517]],[[0.024125788360834,0.050589498132467,-0.0066298106685281],[-0.026160281151533,-0.040609937161207,0.0072478801012039],[0.041811231523752,-0.032938595861197,0.030659429728985]],[[0.061571639031172,-0.025621900334954,-0.094468258321285],[0.044976767152548,-0.052852392196655,0.0028706446755677],[-0.0098847560584545,-0.053521130234003,0.01293424796313]],[[-0.04202688857913,0.053140856325626,-0.048491187393665],[0.092367209494114,-0.072338476777077,-0.094484649598598],[-0.031168159097433,0.012741786427796,-0.00061971339164302]],[[0.028271518647671,0.017161441966891,0.00069276982685551],[0.034221075475216,-0.0476662106812,-0.018401829525828],[-0.12226490676403,-0.0081442296504974,0.016861880198121]],[[-0.030453562736511,-0.044848948717117,0.091562867164612],[0.04375471919775,-0.03460468351841,0.0027908007614315],[-0.079116098582745,0.040758688002825,0.047688014805317]]],[[[0.020093718543649,0.14877831935883,-0.013925269246101],[0.1403541713953,-0.0078312754631042,-0.010915099643171],[-0.24525780975819,0.068308785557747,-0.02740871347487]],[[-0.19756019115448,0.11584801226854,-0.062666520476341],[0.13065671920776,-0.086640320718288,0.051654495298862],[-0.19444219768047,0.056351818144321,-0.05676956474781]],[[-0.13569414615631,0.035609312355518,-0.14048820734024],[-0.16281208395958,0.024300772696733,-0.0041142129339278],[0.01596911996603,-0.11753390729427,-0.16876891255379]],[[-0.13717480003834,-0.058942258358002,-0.025278691202402],[0.16664791107178,0.010656581260264,-0.07682678103447],[0.020658994093537,0.16505225002766,-0.095430441200733]],[[0.17206636071205,-0.12985932826996,-0.094634875655174],[-0.11650139093399,0.082349322736263,0.034432373940945],[0.05691422149539,-0.21562939882278,-0.036388728767633]],[[-0.10026898235083,-0.014024362899363,-0.062514424324036],[-0.0093735251575708,-0.043375391513109,-0.045062474906445],[-0.0042260494083166,-0.029343212023377,-0.042987298220396]],[[-0.10957984626293,-0.05220877379179,0.016872588545084],[-0.083246380090714,-0.019322525709867,-0.037835497409105],[-0.0046491092070937,-0.051624815911055,-0.023417545482516]],[[-0.0068931980058551,-0.022722855210304,0.099663347005844],[0.0010078105842695,0.026111764833331,-0.094094760715961],[0.035339597612619,0.0038803543429822,-0.0078485552221537]],[[0.0028902862686664,-0.020408906042576,0.042063768953085],[0.096907906234264,0.026097524911165,-0.062540598213673],[-0.0096804136410356,0.10423464328051,-0.10139981657267]],[[-0.046902351081371,-0.12139712274075,0.15207763016224],[0.080766096711159,0.07727088779211,-0.13804663717747],[-0.0418691188097,-0.061240971088409,-0.044217221438885]],[[0.05648485198617,-0.027984337881207,-0.063884407281876],[-0.12086570262909,-0.0013722757576033,-0.064831636846066],[0.11376521736383,-0.035736374557018,0.038970794528723]],[[0.15172147750854,-0.26616078615189,0.067580878734589],[-0.20245389640331,0.16936013102531,-0.24959035217762],[-0.041941300034523,-0.14458432793617,0.1065277531743]],[[-0.039290189743042,0.053771048784256,-0.075214236974716],[0.056821748614311,-0.055695276707411,-0.011998983100057],[-0.10993513464928,0.15893165767193,-0.072474241256714]],[[0.09583891928196,0.024440910667181,0.024674708023667],[0.05220390483737,0.034663651138544,0.15879657864571],[-0.072704620659351,0.13276802003384,-0.094807960093021]],[[-0.070314951241016,-0.023709384724498,-0.070082671940327],[-0.11334615945816,0.035455405712128,0.029585802927613],[0.17548435926437,-0.032347481697798,0.11656914651394]],[[0.2012722492218,-0.021039253100753,-0.0088914828374982],[-0.11002347618341,0.0023733032867312,0.0050973389297724],[0.0098456153646111,0.10602892190218,-0.12028110772371]],[[-0.00094617839204147,-0.099050790071487,-0.023136595264077],[-0.015730110928416,-0.12568025290966,-0.10414646565914],[-0.070399180054665,-0.062657944858074,-0.15717148780823]],[[0.040439359843731,-0.10573373734951,0.011327535845339],[-0.066865615546703,-0.043446410447359,-0.0952487885952],[-0.013364031910896,-0.047900926321745,-0.078580565750599]],[[-0.282525151968,0.090893484652042,-0.28107893466949],[0.05551053583622,-0.13215653598309,0.11124938726425],[-0.2856627702713,0.10293633490801,-0.23459529876709]],[[-0.12071488052607,0.045653972774744,0.0020865618716925],[0.059670120477676,-0.023843005299568,0.0059967408888042],[0.0018059471622109,-0.040669325739145,-0.018098773434758]],[[-0.16322509944439,-0.10989445447922,0.34363043308258],[0.067362725734711,-0.036960512399673,-0.056545924395323],[-0.072637222707272,0.21280145645142,-0.25563275814056]],[[0.1611185669899,-0.19677487015724,0.056338094174862],[-0.13034690916538,0.040398068726063,-0.0096700247377157],[0.043229956179857,0.039122637361288,-0.10240250080824]],[[0.043425183743238,-0.070169553160667,0.042851373553276],[-0.0096535701304674,0.070197001099586,-0.015595933422446],[0.0019300697604194,-0.046311981976032,-0.020069152116776]],[[-0.15636467933655,0.16729915142059,-0.25647494196892],[0.091299340128899,-0.11109664291143,0.14719603955746],[-0.12902227044106,0.10805337131023,-0.1507525742054]],[[0.11760437488556,-0.13000422716141,0.28324875235558],[0.031209310516715,0.029822802171111,-0.01809742115438],[-0.0089055197313428,-0.068733498454094,-0.00041857030009851]],[[-0.041807066649199,-0.151521936059,0.12558542191982],[-0.034970331937075,0.035276338458061,-0.075141489505768],[0.079730056226254,-0.06170691549778,0.036312106996775]],[[-0.131008207798,-0.01754592359066,-0.0989905372262],[0.03696483746171,-0.0034767652396113,0.12118393927813],[0.078904896974564,0.0069185774773359,-0.11116753518581]],[[-0.10354734957218,0.026912780478597,0.065776370465755],[0.03634462878108,0.036372568458319,-0.016405588015914],[-0.075738355517387,0.0083622988313437,0.23445057868958]],[[-0.096892274916172,0.034255843609571,0.061528645455837],[0.066740371286869,0.014420344494283,-0.12178107351065],[-0.090419620275497,-0.024520190432668,0.078338071703911]],[[-0.10094675421715,0.042731340974569,-0.035566620528698],[0.14132905006409,0.011222739703953,-0.042818106710911],[-0.087260082364082,-0.032720983028412,0.051566276699305]],[[-0.05582582205534,-0.19422625005245,-0.01603321544826],[-0.21834602952003,0.1633345335722,-0.075758822262287],[0.070702724158764,-0.13978762924671,0.0049736010842025]],[[0.026433462277055,-0.11596421897411,0.12183832377195],[-0.029033107683063,0.040577691048384,-0.01282110158354],[-0.070120044052601,0.047966364771128,0.017494026571512]],[[0.087789855897427,0.040005445480347,-0.055223550647497],[-0.17037542164326,0.057491686195135,-0.021409712731838],[0.077416814863682,-0.19065235555172,0.04769042879343]],[[-0.015190280042589,-0.018406139686704,-0.071350023150444],[-0.072715304791927,-0.00065909448312595,0.036405615508556],[0.092409677803516,-0.18621021509171,-0.078007906675339]],[[-0.23633283376694,0.14815185964108,-0.18462260067463],[0.15803149342537,-0.18952007591724,0.15277926623821],[-0.30547741055489,0.11694772541523,-0.18624264001846]],[[-0.019800549373031,0.036129023879766,-0.044130511581898],[0.016212269663811,-0.051278218626976,0.062117822468281],[-0.10247426480055,-0.072042785584927,0.038115449249744]],[[-0.023939283564687,-0.12649610638618,0.19625025987625],[-0.028254590928555,-0.0039614136330783,-0.1479640007019],[0.12014442682266,-0.056369479745626,-0.05019037052989]],[[-0.10865008831024,-0.10056173801422,0.034599110484123],[0.13184666633606,-0.11689763516188,0.018120847642422],[-0.21377816796303,0.14509524405003,-0.091295331716537]],[[-0.18541516363621,0.14748740196228,-0.076350785791874],[0.066448263823986,-0.075205840170383,-0.009616294875741],[-0.074929378926754,0.023129103705287,0.062782548367977]],[[0.016204476356506,-0.15739278495312,-0.016059754416347],[-0.14591488242149,0.094447694718838,-0.073163107037544],[0.15509356558323,-0.17404519021511,0.12141544371843]],[[0.017770478501916,-0.15955013036728,-0.12860083580017],[0.13814316689968,-0.15142565965652,-0.22384890913963],[-0.22647172212601,0.079833701252937,-0.044083785265684]],[[-0.020015310496092,-0.060689363628626,0.089346766471863],[0.17144151031971,-0.10518351197243,-0.14944341778755],[0.011993645690382,0.045500684529543,0.077484227716923]],[[-0.013061888515949,0.10521361231804,-0.10985071212053],[-0.016160976141691,-0.083855360746384,0.061247281730175],[0.033999212086201,0.070148877799511,-0.073615275323391]],[[-0.082817383110523,-0.051058791577816,0.034692224115133],[0.11484166234732,0.035954285413027,-0.09566942602396],[-0.0498086810112,0.075529016554356,0.0062994007021189]],[[0.10778744518757,0.056323751807213,-0.14238655567169],[-0.017667982727289,-0.040733806788921,0.093098141252995],[-0.035768188536167,-0.029596561565995,-0.00087101035751402]],[[-0.059359405189753,0.041074123233557,0.099743500351906],[0.10095775872469,-0.14734190702438,0.10355465114117],[-0.05783386528492,-0.016149610280991,-0.091931276023388]],[[-0.010466360487044,-0.063636057078838,0.041253212839365],[0.03103887476027,-0.080337047576904,0.055693723261356],[-0.067191459238529,0.11725446581841,-0.17734213173389]],[[0.040024500340223,-0.039800308644772,-0.045531775802374],[-0.02648301422596,0.032142020761967,-0.04310480505228],[0.046651221811771,-0.038044977933168,0.047382496297359]],[[-0.11943139135838,-0.0034376780968159,-0.080848224461079],[0.067437015473843,-0.029678449034691,0.10348600894213],[-0.029779151082039,0.1431288421154,-0.074131652712822]],[[0.045535944402218,0.02028532512486,-0.0079465340822935],[0.072048537433147,-0.016891252249479,-0.10326603055],[-0.12452565133572,0.10451513528824,0.025585724040866]],[[-0.047651994973421,0.081885434687138,-0.030250879004598],[0.062249828130007,-0.015939578413963,0.052844475954771],[-0.069166302680969,0.025357734411955,-0.021293010562658]],[[0.069544531404972,-0.03697856515646,-0.015083198435605],[0.025178572162986,0.037831291556358,-0.062541268765926],[0.079476974904537,-0.053486067801714,0.10469178110361]],[[-0.060773152858019,0.0064141401089728,-0.035839166492224],[-0.062664672732353,-0.084529832005501,0.03607589378953],[-0.098598271608353,0.11109931021929,-0.1657696813345]],[[0.066686697304249,-0.025843108072877,0.48637068271637],[0.042195290327072,0.20531241595745,0.033187583088875],[-0.035483345389366,0.10330343991518,0.008022821508348]],[[-0.00092198717175052,-0.050012309104204,0.013938817195594],[-0.023425713181496,-0.020411813631654,0.0111537380144],[0.020472651347518,-0.020310681313276,0.1226569712162]],[[0.12345322966576,-0.20309345424175,0.077273271977901],[-0.16342952847481,0.14672875404358,-0.14673686027527],[0.07784678041935,-0.11167978495359,0.039272107183933]],[[-0.086333446204662,-0.0610033236444,-0.14530958235264],[-0.11918889731169,-0.044397428631783,-0.074284121394157],[-0.0098455408588052,-0.094127811491489,-0.04895007237792]],[[-0.024240599945188,0.037470139563084,-0.060282006859779],[-0.044361133128405,-0.1124651953578,0.046607479453087],[-0.0032469069119543,-0.025290498510003,0.019174207001925]],[[0.0060266461223364,-0.18691001832485,0.14108026027679],[-0.094093896448612,-0.080709770321846,-0.075892217457294],[-0.17677435278893,0.021901074796915,0.074549704790115]],[[-0.025224121287465,0.026308720931411,0.013589425012469],[0.012537647038698,0.0084815118461847,0.027138674631715],[0.0066917976364493,0.0092865247279406,0.015097835101187]],[[0.1238172724843,-0.070129662752151,0.086142621934414],[-0.1062591150403,0.029298568144441,-0.083478584885597],[0.11428370326757,-0.071294851601124,0.089380368590355]],[[0.20274133980274,-0.13042455911636,0.066994525492191],[-0.12580969929695,-0.0026210797950625,-0.11345905065536],[0.0036024751607329,-0.086091160774231,-0.0085816038772464]],[[-0.12296330183744,-0.091867245733738,-0.090898744761944],[0.073307409882545,-0.20001962780952,0.14278472959995],[-0.081010900437832,0.23395155370235,-0.26600995659828]],[[-0.11670969426632,-0.13292242586613,0.058972809463739],[0.079044967889786,-0.084831744432449,0.018508655950427],[0.11351595818996,0.070892199873924,-0.13873451948166]]],[[[0.024426950141788,0.0030829664319754,-0.1325950473547],[-0.10284654051065,-0.034364640712738,0.089354887604713],[-0.036006886512041,0.035732235759497,0.054525665938854]],[[0.0092091476544738,0.060350622981787,0.065859764814377],[0.01245192065835,0.057275503873825,0.032873835414648],[0.045882228761911,0.056014705449343,0.0083870124071836]],[[0.038948640227318,0.047940190881491,-0.03931687772274],[-0.039126068353653,-0.014400166459382,-0.12677489221096],[-0.042398985475302,-0.065293423831463,-0.13093459606171]],[[0.064155861735344,0.074604630470276,0.031334307044744],[0.056275445967913,0.15774726867676,0.096507482230663],[0.068148449063301,-0.01927830837667,0.0006462698802352]],[[0.064009115099907,0.042062792927027,-0.041677638888359],[0.013560350984335,0.087316796183586,-0.11122355610132],[-0.0071791363880038,-0.038951739668846,-0.025764275342226]],[[-0.082208096981049,-0.044970251619816,0.030315173789859],[-0.058116715401411,-0.024149576202035,0.041231382638216],[0.0171800237149,0.059474129229784,-0.013663086108863]],[[-0.076739907264709,0.059612914919853,-0.015183700248599],[0.058264937251806,0.076387099921703,-0.05009551346302],[0.035102657973766,-0.076838597655296,-0.020265115424991]],[[0.017389493063092,-0.062654115259647,-0.036296151578426],[0.013062850572169,-0.074450880289078,0.080382853746414],[0.015503616072237,-0.16464477777481,0.021395055577159]],[[0.057881373912096,-0.08679286390543,0.01949374191463],[-0.0083950292319059,-0.058263193815947,-0.019173447042704],[0.035016410052776,-0.036089651286602,-0.009220196865499]],[[-0.050525944679976,-0.053489446640015,-0.0179722327739],[-0.0060467994771898,-0.05764140188694,-0.018450979143381],[0.054403107613325,0.029328335076571,-0.047428280115128]],[[-0.05723088234663,-0.022485662251711,0.018710067495704],[0.011799317784607,-0.015482652001083,0.034226823598146],[0.021030429750681,0.062133133411407,-0.023476347327232]],[[0.0052797365933657,-0.105672724545,-0.10699044913054],[-0.23124913871288,0.027020815759897,-0.12968909740448],[-0.15539851784706,-0.15332168340683,-0.027060844004154]],[[0.088054813444614,-0.060590770095587,0.0038456092588603],[-0.028224727138877,-0.0012587321689352,0.10104297846556],[-0.03278524428606,0.15422987937927,0.030036929994822]],[[-0.0041414382867515,-0.057008385658264,0.056311633437872],[-0.053947184234858,0.058659870177507,0.10030879080296],[-0.066533960402012,0.20213045179844,0.12157282233238]],[[0.039961952716112,0.023858107626438,-0.047703996300697],[-0.08009871840477,0.02050818875432,-0.010031260550022],[0.017177425324917,0.020044259727001,0.054019343107939]],[[0.021209344267845,-0.018183905631304,-0.022352829575539],[0.033355299383402,-0.075911812484264,0.024584339931607],[0.028583398088813,-0.0088463788852096,-0.023953415453434]],[[0.0027008908800781,-0.028811983764172,-0.024077218025923],[-0.10850425064564,-0.085027262568474,0.061861768364906],[-0.049124263226986,0.0038346864748746,0.027717156335711]],[[-0.24750518798828,-0.090305097401142,-0.073380567133427],[-0.23460248112679,-0.24638298153877,-0.077573895454407],[-0.1183375865221,-0.029810640960932,-0.046130690723658]],[[-0.033158905804157,0.023138266056776,-0.022190688177943],[0.0037568197585642,-0.013167515397072,0.057864751666784],[-0.0075108222663403,-0.0077870758250356,-0.0013896790333092]],[[-0.070188514888287,0.068250067532063,-0.059235956519842],[-0.013563797809184,0.019970670342445,0.0079243639484048],[-0.044807385653257,-0.049973476678133,0.022025149315596]],[[0.10142557322979,0.24187207221985,-0.097890548408031],[-0.10025703907013,-0.098835416138172,0.030506536364555],[-0.0404232442379,-0.039142042398453,0.25440457463264]],[[-0.0015260108048096,0.082899652421474,-0.054722748696804],[-0.063939623534679,0.053519807755947,-0.00029143490246497],[0.031051699072123,-0.072589054703712,0.029664918780327]],[[0.039920553565025,0.0035919055808336,-0.014846137724817],[-0.045237440615892,0.0048686717636883,0.057133801281452],[-0.063909940421581,0.038402933627367,-0.0087482947856188]],[[0.029533622786403,-0.021617788821459,0.026101568713784],[0.0017771979328245,-0.04699569940567,0.025782372802496],[0.037395756691694,-0.12392278015614,-0.10378673672676]],[[0.1054273545742,0.019084928557277,-0.024276604875922],[0.086621031165123,0.088581025600433,-0.12582962214947],[0.013351983390749,-0.010111132636666,0.11632345616817]],[[-0.09188885986805,-0.11545006930828,-0.018821269273758],[-0.11817138642073,-0.095515355467796,-0.22977611422539],[-0.099389255046844,-0.10131458938122,-0.15579687058926]],[[-0.024706073105335,-0.0072766970843077,-0.049370132386684],[-0.088749438524246,-0.039021514356136,-0.042061548680067],[-0.045915871858597,-0.076962374150753,-0.024865552783012]],[[0.19878633320332,0.029229022562504,-0.018304225057364],[0.1342907845974,-0.093705713748932,-0.17711417376995],[0.027707668021321,0.0036652148701251,0.10368715971708]],[[-0.010519029572606,0.039499912410975,-0.042825873941183],[0.039566330611706,0.083300098776817,0.045549776405096],[0.041173487901688,-0.065783560276031,-0.012881436385214]],[[-0.09964632242918,-0.013091924600303,-0.095410957932472],[0.058406263589859,0.05083816125989,-0.070625774562359],[-0.083808958530426,-0.068159326910973,-0.0060881790705025]],[[-0.011686046607792,0.039350137114525,0.030243264511228],[-0.0010329936631024,0.010329811833799,0.008475280366838],[0.039708930999041,0.026446321979165,0.040669534355402]],[[-0.023201674222946,-0.0070453225634992,-0.086097873747349],[-0.11221186071634,0.029502723366022,-0.021657884120941],[-0.07869091629982,0.0070002782158554,-0.087894953787327]],[[0.040023066103458,0.029662562534213,-0.072491690516472],[-0.030300926417112,0.067767128348351,-0.20158568024635],[-0.11348923295736,-0.0033040267881006,-0.062004588544369]],[[-0.036663059145212,0.10029486566782,-0.071607507765293],[0.09828170388937,0.022160643711686,-0.10315003246069],[-0.018952688202262,-0.18035064637661,-0.044478323310614]],[[-0.0301662851125,0.01753268763423,0.12307537347078],[-0.028782090172172,-0.014245988801122,-0.03606266528368],[0.019262643530965,0.0056199408136308,0.016236297786236]],[[-0.011431312188506,-0.029958941042423,0.022803353145719],[-0.02260035276413,-0.15047669410706,-0.025657339021564],[-0.059749461710453,0.041556600481272,-0.055790055543184]],[[0.030763057991862,-0.02192160487175,0.091242097318172],[-0.048073511570692,-0.027160111814737,-0.0021677783224732],[0.0060066785663366,-0.016724729910493,-0.032053574919701]],[[-0.035913214087486,-0.084477119147778,-0.023387538269162],[0.10646885633469,-0.017033118754625,-0.059809669852257],[-0.043887078762054,0.071961894631386,-0.0124243311584]],[[-0.023109689354897,-0.093613088130951,0.089951157569885],[0.022754523903131,0.080078095197678,0.024346698075533],[0.048835635185242,-0.0015204708324745,0.026233915239573]],[[0.0028378607239574,-0.059961631894112,-0.0063678226433694],[-0.0039554256945848,0.019915711134672,-0.10140673816204],[0.027443854138255,0.01325920317322,-0.054536208510399]],[[-0.036519538611174,0.13757547736168,-0.014857615344226],[-0.21072612702847,-0.086269274353981,0.083582550287247],[-0.04012568667531,-0.028921926394105,0.0046415221877396]],[[0.050696305930614,-0.043144837021828,0.00077585258986801],[-0.02312602289021,0.073361739516258,0.0056493016891181],[0.042686451226473,0.025684518739581,0.028283754363656]],[[-0.014539682306349,0.11473471671343,-0.0504468716681],[0.0032115015201271,-0.073663301765919,-0.00038774046697654],[-0.020239818841219,-0.033695958554745,-0.031400747597218]],[[0.021016137674451,0.041443984955549,0.10066449642181],[0.065096579492092,-0.053081937134266,0.078149020671844],[0.045174337923527,0.065930739045143,-0.079189665615559]],[[0.022402556613088,0.018662886694074,-0.018188605085015],[0.042292550206184,-0.027367448434234,0.02872814424336],[0.068214245140553,-0.032554615288973,-0.15945969521999]],[[0.0017400896176696,-0.051971722394228,0.031166570261121],[-0.017882106825709,0.11097231507301,-0.029121734201908],[-0.025256430730224,-0.0098693128675222,-0.058288626372814]],[[0.10402926057577,-0.010423321276903,0.010838992893696],[-0.028623452410102,-0.03261661157012,0.062020469456911],[0.0098884822800756,-0.035400234162807,-0.078909695148468]],[[0.016737470403314,0.008997967466712,-0.048057824373245],[-0.058691069483757,0.046527966856956,-0.022839030250907],[-0.015782436355948,0.094614960253239,0.00052821892313659]],[[-0.036146972328424,-0.17965443432331,-0.066820099949837],[-0.062155820429325,-0.083188280463219,-0.13604201376438],[-0.056376036256552,0.053308546543121,-0.058870516717434]],[[0.0025650502648205,-0.060945983976126,0.089288592338562],[0.06604016572237,-0.072819210588932,-0.032722026109695],[-0.11472618579865,-0.15254843235016,-0.069977417588234]],[[0.08445829898119,0.060565337538719,0.012719405815005],[0.13378356397152,0.0078657418489456,0.023790009319782],[0.10770767182112,0.0031904010102153,0.068953096866608]],[[-0.050834320485592,0.038467157632113,-0.004347512498498],[0.073764652013779,0.071750454604626,0.026062278077006],[0.013164036907256,0.016095397993922,-0.024967247620225]],[[0.061354212462902,0.050049055367708,0.054649606347084],[0.0561746917665,0.062583714723587,0.075262248516083],[-0.034194491803646,0.072832174599171,0.020795276388526]],[[0.010412193834782,0.12069146335125,0.038530759513378],[0.16320723295212,0.10458574444056,0.11028607934713],[0.077604532241821,-0.0062242448329926,0.024129526689649]],[[-0.030645124614239,-0.082473956048489,0.0044669914059341],[-0.071747541427612,0.072505980730057,-0.0016083328519017],[-0.15805126726627,-0.10722786188126,-0.15396459400654]],[[0.037642069160938,-0.027355683967471,0.082529567182064],[0.024664582684636,-0.013855520635843,-0.035038348287344],[0.040302131325006,0.042894002050161,0.025704110041261]],[[-0.0016352364327759,-0.089620724320412,0.0053172567859292],[0.15053573250771,-0.0017072285991162,-0.030366947874427],[0.021801792085171,-0.021803611889482,-0.021658327430487]],[[-0.023198429495096,-0.090003199875355,-0.015212573111057],[-0.090961322188377,-0.092050991952419,-0.15842252969742],[-0.037228256464005,-0.051795460283756,-0.11964099854231]],[[-0.038036651909351,-0.16382829844952,-0.03844653069973],[-0.056596245616674,0.043230351060629,-0.044480469077826],[-0.013198278844357,0.072113811969757,-0.0087763955816627]],[[-0.002304277382791,0.025261098518968,-0.024766597896814],[0.057974629104137,-0.073626436293125,0.020200023427606],[0.032861933112144,0.039121739566326,-9.9507982668001e-05]],[[-0.031341757625341,-0.093094758689404,0.035164933651686],[0.024536170065403,0.04990616068244,-0.06275513023138],[0.0099850548431277,0.069167122244835,0.024590954184532]],[[-0.047640301287174,-0.073953628540039,-0.0033618069719523],[0.015085809864104,0.025275131687522,0.04825883358717],[0.0097627742215991,0.063073933124542,-0.067195951938629]],[[0.079668618738651,-0.029356926679611,-0.021541683003306],[0.064516209065914,0.0006853828090243,0.037087418138981],[-0.018363090232015,-0.064913712441921,0.0051048193126917]],[[-0.10604774951935,-0.094964034855366,0.045792374759912],[-0.042140945792198,0.036546107381582,-0.006885620765388],[-0.041137795895338,0.10989682376385,0.037439096719027]]],[[[-0.093311876058578,0.054843723773956,2.917419624282e-05],[-0.058375049382448,0.031719133257866,-0.029296148568392],[-0.11112689971924,0.056542925536633,-0.030217718333006]],[[-0.012193926610053,0.0082466760650277,0.051756639033556],[-0.0084032416343689,-0.026568667963147,-0.034429997205734],[-0.045146569609642,-0.0074679553508759,-0.024036649614573]],[[-0.0042320350185037,-0.010021596215665,0.06236956641078],[-0.021489206701517,-0.0029908574651927,-0.016648665070534],[-0.11126799881458,-0.061298377811909,0.015644935891032]],[[-0.093394130468369,-0.023542754352093,0.011880896054208],[-0.020488187670708,-0.019745560362935,0.034961074590683],[-0.037843629717827,0.030029335990548,-0.017374157905579]],[[-0.045736461877823,-0.013935058377683,0.0079312492161989],[0.054147131741047,0.041754741221666,0.021674208343029],[0.0051606786437333,0.00083249097224325,0.042572923004627]],[[-0.036897011101246,-0.043382946401834,0.061011835932732],[0.0012833118671551,-0.0153216002509,0.040817968547344],[-0.033357374370098,-0.15864443778992,0.053604707121849]],[[-0.01843230985105,0.0061131659895182,-0.040893811732531],[-0.035482909530401,-0.0096787037327886,0.0051768170669675],[-0.076129123568535,0.035824060440063,-0.081712692975998]],[[-0.015933062881231,-0.089844986796379,-0.022868940606713],[-0.061296876519918,-0.046390611678362,0.021191375330091],[0.0069408458657563,-0.020126022398472,-0.020059425383806]],[[-0.057209827005863,-0.0094049442559481,-0.022994654253125],[0.047155022621155,0.051713887602091,-0.012227742932737],[-0.023459451273084,-0.007474354468286,-0.035194993019104]],[[-0.0020121461711824,0.043198458850384,0.0093913674354553],[0.032298840582371,0.044749177992344,0.038418937474489],[0.033986993134022,-0.019549731165171,0.027015125378966]],[[0.080028124153614,0.049113303422928,0.076463505625725],[0.0050952574238181,-0.07418517768383,-0.012117091566324],[-0.018729357048869,-0.005753327626735,0.097589872777462]],[[0.046751990914345,0.052247662097216,0.015356260351837],[-0.0018528340151533,-0.036249630153179,0.0026929662562907],[0.0069460738450289,0.014291296713054,0.030360972508788]],[[-0.051004745066166,0.0012878268025815,0.091463066637516],[0.066346406936646,0.10282634198666,-0.03829175978899],[0.021035654470325,0.059533398598433,-0.034628223627806]],[[0.073327705264091,-0.037328157573938,0.086178608238697],[0.020444108173251,0.035088811069727,0.045867182314396],[-0.06688928604126,0.018921919167042,0.041015725582838]],[[-0.015821240842342,-0.096839085221291,-0.0051184208132327],[-0.0036690358538181,-0.0072683440521359,0.13054348528385],[0.0079051908105612,0.010958281345665,-0.0012890576617792]],[[0.0032864396926016,-0.021126937121153,-0.037004005163908],[-0.021572532132268,0.044153790920973,0.094157822430134],[-0.016159106045961,-0.064639680087566,0.044940542429686]],[[-0.033020161092281,0.024086687713861,0.079802379012108],[0.041269812732935,-0.014987837523222,-0.036973491311073],[-0.025620168074965,0.02857406437397,-0.0012334793573245]],[[0.0041800565086305,-0.021272895857692,0.051962085068226],[0.02479605935514,-0.0049516619183123,-0.049068242311478],[0.013230255804956,0.035395834594965,-0.061182159930468]],[[-0.062157291918993,0.047120627015829,0.036046665161848],[-0.01195877417922,-0.060045138001442,0.02340498380363],[-0.1145920753479,-0.013264933601022,0.031381718814373]],[[-0.080498777329922,0.014184057712555,0.035625729709864],[0.01877823844552,0.03166938573122,-0.11051101982594],[-0.031107315793633,0.067431874573231,-0.027152314782143]],[[-0.020485335960984,0.023078914731741,-0.038715079426765],[-0.0082516204565763,0.020160987973213,-0.026085657998919],[0.016218291595578,-0.013570662587881,-0.042201500386]],[[-0.0057528517208993,-0.0041742366738617,-0.017035011202097],[-0.078356131911278,0.020207332447171,0.026647858321667],[0.1167481765151,-0.054707802832127,0.04709405824542]],[[-0.020860044285655,0.029321329668164,0.0012893634848297],[0.051902536302805,0.043049480766058,-0.073221378028393],[0.019260985776782,-0.027074348181486,-0.0048075593076646]],[[-0.091514259576797,-0.023157469928265,0.063372641801834],[-0.034810435026884,0.013358946889639,-0.0020494058262557],[-0.021407928317785,-0.027972552925348,0.012489226646721]],[[0.049988202750683,0.027689263224602,-0.077476657927036],[-0.00078983709681779,-0.014571218751371,0.01112799346447],[-0.037562105804682,0.028205184265971,0.041185718029737]],[[0.048953175544739,0.052843298763037,0.086476013064384],[0.16086211800575,-0.011542320251465,-0.0050704595632851],[0.043553080409765,-0.031127022579312,0.082932315766811]],[[0.0015896947588772,-0.044293932616711,-0.016606371849775],[-0.12459609657526,-0.035352539271116,0.070399165153503],[0.039888478815556,-0.018855422735214,-0.02609796077013]],[[-0.039245892316103,-0.0019126130500808,0.016957711428404],[0.13482908904552,0.033860269933939,-0.0031426222994924],[0.099072739481926,0.0082588559016585,-0.0068258647806942]],[[0.0016078896587715,0.091922663152218,0.055660869926214],[-0.032574694603682,0.031750056892633,-0.075431562960148],[-0.038832616060972,0.015351044945419,0.063353031873703]],[[0.088230758905411,0.031768139451742,0.0064218691550195],[0.0081987315788865,0.052106391638517,-0.073139205574989],[-0.01238395832479,-0.044660661369562,0.073216132819653]],[[-0.029859771952033,-0.0036377017386258,0.0093915071338415],[-0.0099852913990617,0.006116172298789,0.067963674664497],[-0.040493700653315,-0.0012530460953712,-0.058706514537334]],[[-0.0067506176419556,0.018935197964311,-0.051690444350243],[0.014872694388032,-0.043455749750137,0.082392148673534],[-0.17820999026299,-0.072911739349365,0.074396520853043]],[[0.032830599695444,-0.058479953557253,-0.056815650314093],[0.041867725551128,0.081433832645416,-0.16193230450153],[0.071621529757977,0.014589229598641,0.042486611753702]],[[-0.043049085885286,0.013763868249953,-0.010718182660639],[-0.0076434025540948,-0.015718491747975,0.001432957360521],[-0.090482696890831,0.087050721049309,0.12453970313072]],[[0.030052460730076,-0.040720868855715,0.061777465045452],[-0.06252696365118,0.036794748157263,0.049126140773296],[0.038463272154331,0.016519682481885,-0.09645377099514]],[[-0.057432536035776,0.0063758445903659,0.040746182203293],[-0.07108710706234,-0.035051375627518,-0.055368330329657],[-0.048043508082628,-0.03541774302721,-0.09556470066309]],[[0.020715679973364,-0.11138977855444,-0.072767078876495],[0.1010622382164,0.0017551407217979,0.025952747091651],[-0.012516329064965,-0.0024117871653289,0.034432016313076]],[[0.11511382460594,-0.04426147788763,-0.077902808785439],[-0.048277359455824,-0.093467742204666,-0.045999705791473],[-0.066417470574379,0.12936307489872,0.075873076915741]],[[-0.0084048062562943,0.038276664912701,0.029625095427036],[0.016232965514064,0.089109361171722,-0.018553536385298],[0.061395924538374,-0.026278290897608,0.045134142041206]],[[-0.037428636103868,-0.00074130319990218,0.050134170800447],[-0.0075401230715215,0.058237534016371,0.069700144231319],[0.051742065697908,-0.0060187466442585,-0.016620211303234]],[[0.0004065302782692,0.021924819797277,-0.04459298402071],[0.048127830028534,-0.016635106876493,-0.088917799293995],[-0.034362129867077,0.074829705059528,0.031793981790543]],[[0.01023971196264,0.012566573917866,0.044455263763666],[-0.06152206286788,0.051540143787861,-0.079178243875504],[0.0030459307599813,0.022277966141701,-0.018853861838579]],[[0.047804947942495,0.04535873234272,0.037187930196524],[0.047972928732634,0.024426298215985,-0.042585149407387],[-0.033050872385502,0.034833937883377,-0.041357453912497]],[[-0.0037379402201623,0.018493987619877,-0.0049149179831147],[-0.0011428374564275,-0.0078622922301292,-0.10916251689196],[-0.01665535569191,0.021305652335286,0.074205718934536]],[[-0.0065019340254366,0.068138942122459,-0.055032674223185],[0.086745642125607,0.0031119317281991,0.046985693275928],[0.056201118975878,0.021719742566347,0.048103787004948]],[[0.0078777763992548,0.048875562846661,0.0022720478009433],[-0.019423112273216,0.067087292671204,-0.019115574657917],[0.038457658141851,-0.025624616071582,-0.043324887752533]],[[0.0018929005600512,-0.035900976508856,0.01176012121141],[0.055429041385651,-0.0042058825492859,-0.0012670534197241],[0.03648666292429,-0.021194351837039,0.036714509129524]],[[-0.056696280837059,0.077689662575722,-0.063450403511524],[0.087249539792538,0.021553538739681,0.038411427289248],[0.026145035400987,0.0025783472228795,0.051928397268057]],[[-0.0093277953565121,0.047363705933094,-0.014816553331912],[0.061257142573595,0.016996413469315,0.086195044219494],[0.099505022168159,0.14703804254532,-0.018828142434359]],[[0.016572261229157,0.1335571706295,-0.0065316059626639],[0.0038119372911751,0.032121177762747,0.0053359693847597],[0.021289691329002,0.068998441100121,0.071723684668541]],[[0.0083029773086309,0.0088803982362151,-0.019805487245321],[-0.043532729148865,0.026176024228334,0.0038903602398932],[-0.0021208610851318,-0.079860769212246,0.012229825370014]],[[-0.0064359083771706,0.022813746705651,-0.014138361439109],[0.068969085812569,0.04053757339716,0.015152279287577],[-0.016009600833058,0.042556740343571,-0.035722464323044]],[[0.021852605044842,-0.041748885065317,-0.0048304959200323],[0.010258074849844,0.032976228743792,-0.046144999563694],[-0.029542988166213,0.020132467150688,0.017773117870092]],[[0.12341676652431,0.034917701035738,0.019984964281321],[-0.0002218095905846,0.066715717315674,-0.018957357853651],[0.020210212096572,-0.024899126961827,0.026572786271572]],[[-0.077063761651516,0.03067322447896,-0.01791593618691],[0.11590547114611,0.081957884132862,-0.0089456140995026],[0.084511741995811,-0.00063790619606152,0.023094294592738]],[[-0.054900769144297,-0.040914446115494,0.10501869767904],[0.056453008204699,0.036328300833702,0.062899820506573],[-0.021985018625855,0.027602441608906,-0.037745822221041]],[[-0.023113358765841,-0.025993999093771,-0.019389497116208],[-0.072046458721161,0.023233944550157,-0.02628386951983],[-0.010423170402646,0.058793786913157,0.0056601720862091]],[[0.0078253960236907,0.0043475236743689,0.0017720103496686],[-0.041297309100628,-0.031344808638096,0.0051710265688598],[-0.010861204005778,0.008901852183044,0.039434138685465]],[[0.01656617410481,-0.006084259133786,0.070893354713917],[0.035240598022938,-0.067105807363987,-0.020124623551965],[0.028375469148159,0.02765560336411,-0.045777782797813]],[[0.0090313265100121,-0.010581446811557,-0.012860142625868],[-0.02604297362268,-0.042943503707647,0.039852984249592],[0.029822204262018,0.018664818257093,0.026998603716493]],[[-0.013751907274127,-0.0089088119566441,-0.058868408203125],[0.045586388558149,0.077140480279922,-0.0015702444361523],[-0.023388348519802,0.047485779970884,0.031618908047676]],[[-0.0056234211660922,-0.00078575097722933,0.059190887957811],[0.0095967082306743,0.089720241725445,-0.084240548312664],[0.021480727940798,0.014904297888279,-0.017184047028422]],[[0.034171838313341,-0.019788218662143,0.031990278512239],[0.047254174947739,0.063662946224213,-0.011451080441475],[0.017318366095424,-0.011835585348308,0.029164699837565]],[[0.050283953547478,-0.077934838831425,0.031822182238102],[0.028800712898374,0.032796837389469,-0.030396660789847],[0.0048198206350207,0.017991583794355,0.014203219674528]]],[[[-0.017448244616389,-0.024102060124278,0.04028582200408],[-0.0022578411735594,-0.02268454618752,0.0046954029239714],[0.025693025439978,-0.0037999134510756,0.078423082828522]],[[0.014996719546616,0.03103775344789,0.0013917676405981],[-0.023276908323169,0.047333754599094,-0.032181825488806],[-0.036064997315407,0.016530929133296,-0.031405050307512]],[[-0.0027601299807429,-0.02384521253407,-0.058777384459972],[-0.012611696496606,0.034485477954149,0.0033085329923779],[0.0075976825319231,-0.048137053847313,-0.001229845569469]],[[0.033107429742813,-0.01420334354043,-0.0099822822958231],[-0.027425423264503,-0.018419094383717,-0.018015468493104],[0.055550742894411,-0.0076191280968487,0.009155323728919]],[[0.0044507440179586,0.033441700041294,0.012549381703138],[0.0015136867295951,-0.047700021415949,-0.014038858003914],[0.063483826816082,0.062327992171049,0.025671305134892]],[[0.077021636068821,-0.042733520269394,-0.060595907270908],[0.098945468664169,-0.12153346091509,0.061619225889444],[0.10211810469627,-0.12079585343599,-0.02385039255023]],[[-0.01854557543993,-0.01854289136827,-0.0029368039686233],[-0.01246827095747,-0.049727033823729,0.021674945950508],[-0.084199078381062,-0.018534550443292,-0.034485470503569]],[[0.050079438835382,0.01268323417753,-0.057550232857466],[0.013242343440652,0.04168589413166,-0.017298813909292],[-0.020524229854345,-0.016733257099986,-0.049697604030371]],[[0.037873089313507,-0.031697064638138,-0.073572404682636],[0.0069372509606183,-0.032017771154642,0.018755078315735],[0.00050495064351708,0.027807701379061,0.054776385426521]],[[-0.031044835224748,0.044497191905975,-0.026770105585456],[0.031135126948357,-0.0051001333631575,-0.012980961240828],[-0.082213655114174,-0.049205981194973,0.015565918758512]],[[0.0023938938975334,-0.028767418116331,0.027195969596505],[0.00022412349062506,-0.035758640617132,-0.016309918835759],[0.038038175553083,0.047542989253998,0.070353105664253]],[[0.017816673964262,-0.037872422486544,-0.026447124779224],[-0.047900717705488,0.00031997618498281,0.017644550651312],[-0.0011058110976592,-0.013955645263195,-0.039576098322868]],[[-0.038046058267355,0.0016715041128919,0.0057662115432322],[0.092364430427551,0.0071643921546638,-0.048174120485783],[0.0078298263251781,0.004318265710026,-0.062907680869102]],[[-0.0089451586827636,-0.019089808687568,0.044269613921642],[-0.015240936540067,0.035237148404121,0.10376632213593],[0.027551636099815,0.0086450185626745,-0.031098026782274]],[[-0.0025950220879167,-0.051900275051594,0.048328924924135],[0.0069689494557679,-0.021876642480493,-0.0081940973177552],[0.040474478155375,0.048133052885532,0.018432794138789]],[[-0.051833610981703,-0.048028871417046,0.017084797844291],[0.012815155088902,-0.036599915474653,0.012667195871472],[0.078817754983902,-0.0048539550043643,-0.040044505149126]],[[0.11883000284433,0.083357490599155,-0.034203976392746],[0.009111812338233,0.025066711008549,-0.015566419810057],[0.029031686484814,-0.057658843696117,-0.056764110922813]],[[-0.014095440506935,0.021338071674109,-0.061893824487925],[0.034604337066412,-0.0028786833863705,-0.013271291740239],[0.022942403331399,-0.020703312009573,0.019012395292521]],[[0.0014920033281669,-0.00085942127043381,-0.0095683392137289],[0.0096532180905342,0.0015377139206976,-0.034166872501373],[0.016467355191708,-0.057254195213318,-0.026520291343331]],[[0.0027830041944981,-0.030452812090516,-0.019989503547549],[0.017606580629945,0.0081317331641912,-0.067382335662842],[-0.028200495988131,-0.00071473338175565,0.06990459561348]],[[0.014718650840223,-0.042948294430971,-0.043870404362679],[0.014967566356063,-0.056859437376261,-0.0079025188460946],[-0.024284908547997,-0.024436602368951,0.023211726918817]],[[-0.062261831015348,-0.0081419656053185,-0.0076213455758989],[0.017353923991323,0.0106241395697,0.0097744334489107],[-0.12928012013435,0.033237800002098,-0.00021883244335186]],[[0.034676816314459,0.020871054381132,-0.078740857541561],[0.03234425932169,0.031090345233679,-0.010147054679692],[-0.051792588084936,0.0057889414019883,0.012339565902948]],[[-0.012176612392068,-0.053296074271202,-0.015468810684979],[-0.037535320967436,0.0018657715991139,-0.043991513550282],[-0.061951842159033,-0.038210988044739,0.0089139509946108]],[[0.019363131374121,0.047869734466076,0.028762498870492],[0.061962567269802,0.073177076876163,-0.029231710359454],[-0.035793166607618,-0.029569156467915,-0.02180833555758]],[[0.043891038745642,-0.0029081145767123,-0.11034876853228],[0.035740651190281,-0.033323332667351,-0.035713911056519],[0.039223715662956,-0.076294548809528,0.022643821313977]],[[-0.039348874241114,-0.038639076054096,0.038374610245228],[-0.0091148009523749,-0.022456582635641,-0.0052641499787569],[-0.013242167420685,-0.046531688421965,-0.0012794889044017]],[[0.044515065848827,0.0082800323143601,-0.024063255637884],[0.033970922231674,-0.026587419211864,-0.0035766360815614],[-0.048416301608086,-0.062317777425051,-0.054534133523703]],[[0.0082272356376052,0.0880062058568,0.036371897906065],[-0.043623942881823,-0.045879520475864,0.06715951114893],[-0.0029337550513446,0.020865730941296,0.093083709478378]],[[-0.050734721124172,0.078274928033352,-0.045847471803427],[0.0033072638325393,0.033167846500874,-0.038266129791737],[0.019857820123434,0.0083804922178388,0.0015873339725658]],[[-0.03947775810957,0.087989017367363,-0.025318827480078],[-0.0039279223419726,0.022345839068294,0.012413646094501],[-0.023406939581037,0.076648719608784,-0.0062305978499353]],[[-0.011078850366175,-0.079380445182323,-0.038893688470125],[-0.0078985933214426,-0.02809876576066,-0.011012367904186],[-0.011364278383553,0.046841587871313,0.0034553336445242]],[[0.012040105648339,0.053200915455818,0.075368590652943],[-0.047203712165356,0.058259468525648,-0.01599863357842],[0.0041194926016033,-0.067611679434776,-0.034745905548334]],[[0.024830166250467,0.019332103431225,0.028035959228873],[-0.01181073859334,0.024286303669214,-0.048049546778202],[-0.0085691455751657,-0.020636081695557,0.048539489507675]],[[0.0092412680387497,0.091558068990707,-0.006659893784672],[0.013635036535561,-0.034989561885595,-0.04893284291029],[-0.025920437648892,-0.018482780084014,0.020039198920131]],[[-0.030500495806336,-0.02088126540184,0.065014980733395],[0.012080441229045,-0.0062877512536943,-0.037209499627352],[-0.062737219035625,-0.067536979913712,-0.087729662656784]],[[-0.046186726540327,0.0037983066868037,-0.075586400926113],[-0.03864224255085,-0.047292847186327,0.011070532724261],[0.00074287567986175,-0.049350887537003,0.030482739210129]],[[0.006272585131228,-0.027737822383642,0.022732092067599],[0.057123433798552,-0.026759354397655,-0.039908424019814],[-0.054922543466091,0.003241544123739,0.057338614016771]],[[-0.065223209559917,-0.00031215345370583,-0.0063179237768054],[0.093546219170094,0.060061801224947,-0.011322459205985],[0.017209691926837,-0.0054548876360059,-0.018425347283483]],[[0.024919144809246,0.022689331322908,-0.016568973660469],[0.0084040835499763,-0.011161698959768,-0.069918341934681],[0.018230399116874,-0.0027031295467168,0.010309125296772]],[[-0.023021334782243,-0.043445128947496,-0.034323379397392],[-0.01701227016747,0.079434305429459,-0.055328760296106],[0.034577831625938,0.055899020284414,-0.0050505977123976]],[[0.011458768509328,-0.023287830874324,-0.11243616789579],[-0.0022400990128517,0.069949835538864,0.047635495662689],[-0.0036099930293858,-0.0090592736378312,-0.02790579199791]],[[-0.038563679903746,0.016706323251128,0.0024707564152777],[0.021047033369541,0.04848574846983,0.09486461430788],[-0.029054790735245,-0.0070506129413843,0.0092118289321661]],[[-0.098161056637764,0.031246490776539,-0.0073418985120952],[-0.055686563253403,-0.050245497375727,-0.0034903730265796],[-0.043978478759527,0.0070032407529652,-0.012233262881637]],[[-0.047282449901104,0.054374277591705,-0.052951447665691],[0.010689103975892,-0.06416018307209,-0.00026951252948493],[0.01418408472091,-0.017720011994243,0.0043975678272545]],[[0.0043057957664132,-0.0091420263051987,-0.063321948051453],[-0.068846665322781,0.014854099601507,-0.026569480076432],[0.028584746643901,0.014365354552865,0.014946446754038]],[[-0.0062329918146133,0.069491237401962,0.075203239917755],[0.021707786247134,0.031155148521066,0.031818028539419],[-0.024451110512018,-0.026514962315559,-0.030082657933235]],[[0.065557695925236,0.015530481934547,-0.019877312704921],[-0.045655187219381,0.020175179466605,0.065395995974541],[-0.040450640022755,0.038428079336882,0.021371932700276]],[[-0.0020018422510475,0.045753642916679,-0.045937366783619],[0.013495719060302,0.013350505381823,-0.029196687042713],[-0.021558631211519,-0.078800417482853,-0.053054917603731]],[[0.00074683298589662,-0.016150984913111,0.005743901245296],[-0.017622193321586,0.026069365441799,-0.0090493513271213],[-0.076012670993805,-0.086626060307026,-0.098626546561718]],[[-0.0006912195822224,-0.012925842776895,-0.028394728899002],[0.007301171310246,-0.016813110560179,-0.054994117468596],[0.053158156573772,-0.054341487586498,0.015378930605948]],[[-0.057050455361605,-0.065965130925179,-0.041563615202904],[0.026990409940481,0.052872736006975,-0.02563814073801],[-0.014282462187111,0.0084385592490435,0.011193858459592]],[[-0.040272876620293,0.01417401432991,-0.013071602210402],[-0.071671575307846,0.00011981470743194,-0.024559419602156],[-0.054164789617062,-0.030731489881873,0.05465417355299]],[[-0.023046612739563,-0.0068912412971258,0.10166322439909],[0.071556068956852,0.035811193287373,0.07138492166996],[0.040676854550838,-0.074823275208473,0.078237220644951]],[[-0.053084593266249,-0.05031555518508,-0.055287756025791],[0.015181872993708,-0.032333590090275,-0.026519365608692],[0.080620802938938,0.027306042611599,0.099850915372372]],[[0.012844354845583,-0.029515996575356,-0.029985696077347],[-0.010290220379829,-0.0036493893712759,-0.026911651715636],[-0.066850371658802,-0.037592850625515,-0.059553287923336]],[[-0.0090318527072668,-0.13594438135624,-0.04401882737875],[-0.013988700695336,0.016571126878262,0.0038830060511827],[0.0069819893687963,0.01642569154501,0.034032136201859]],[[-0.02161380648613,0.0027242677751929,-0.01207581255585],[0.013896255753934,0.0034391558729112,0.010280387476087],[0.0023250740487128,-0.0068887416273355,-0.017642922699451]],[[0.0057930601760745,-0.025000013411045,0.057636592537165],[-0.022570230066776,0.013077158480883,0.011066914536059],[0.029094642028213,0.083598203957081,0.025585634633899]],[[-0.0068125668913126,0.0081165293231606,0.0066434321925044],[0.0021087895147502,-0.029996193945408,0.007282339502126],[0.007681951392442,0.017946280539036,0.013637095689774]],[[-0.026610383763909,0.067026421427727,-0.012223618105054],[0.0176049657166,-0.025802280753851,-0.023510087281466],[-0.011021412909031,-0.0064918943680823,0.013675917871296]],[[-0.010025513358414,-0.03933547064662,-0.1206675991416],[-0.038239117711782,0.041242025792599,-0.014361252076924],[-0.024960985407233,0.0047199036926031,0.034416794776917]],[[0.020932339131832,-0.055991198867559,-0.0023267273791134],[0.010083130560815,-0.058650683611631,0.071719601750374],[0.0031872300896794,-0.02502560429275,0.019568223506212]],[[-0.021374385803938,0.0036135504487902,-0.045014087110758],[-0.039859496057034,-0.034116879105568,-0.018749056383967],[-0.015157429501414,-0.00017743089119904,0.026189627125859]]],[[[-0.051938764750957,-0.061226062476635,0.013157425448298],[0.046625752002001,0.023946525529027,-0.074629992246628],[0.025870833545923,-0.052422698587179,0.031632229685783]],[[0.011433893814683,-0.045049350708723,0.024832228198647],[-0.073037952184677,-0.030968815088272,0.011885923333466],[0.065755546092987,0.011494494043291,-0.014444681815803]],[[0.0069082262925804,0.040496550500393,0.014043264091015],[-0.033319212496281,0.04778790473938,0.049300219863653],[-0.051677882671356,-0.060764819383621,-0.016073731705546]],[[-0.036832012236118,0.041483990848064,-0.0080658411607146],[0.04076312482357,-0.059618189930916,0.0028880694881082],[0.020464681088924,-0.0036184038035572,-0.020857712253928]],[[0.018984632566571,-0.023135956376791,0.0013407295336947],[-0.001209449605085,-0.016034875065088,-0.029638841748238],[0.016563914716244,-0.029624056071043,0.03152010589838]],[[-0.041014060378075,0.13670301437378,-0.024279152974486],[-0.12474435567856,0.20516692101955,0.045373287051916],[-0.024255096912384,-0.10435477644205,-0.15983907878399]],[[0.0050292019732296,0.014365867711604,-0.02058476023376],[-0.0027283569797873,0.02580532990396,-0.051093466579914],[-0.066532753407955,-0.08297998458147,-0.013454037718475]],[[-0.068411700427532,0.036817234009504,-0.012574607506394],[-0.050224471837282,-0.028082232922316,-0.036422643810511],[-0.085426077246666,0.063689477741718,0.045520555227995]],[[0.025181919336319,-0.026304814964533,0.0042040105909109],[0.032827969640493,-0.008761596865952,-0.019639512524009],[-0.031748462468386,-0.014700278639793,0.051675710827112]],[[-0.01775261759758,0.037283375859261,0.026781138032675],[0.088512353599072,0.025612283498049,-0.020027095451951],[0.045342069119215,0.021223617717624,-0.034222189337015]],[[-0.022225389257073,-0.006215067114681,0.020501939579844],[-0.036608438938856,-0.0035005190875381,0.020002499222755],[0.076422147452831,-0.09216833114624,0.01649859175086]],[[0.0052494206465781,-0.037060372531414,-0.03864785656333],[0.014651753939688,-0.0051569235511124,0.024191634729505],[0.00083321408601478,-0.06810587644577,-0.051269821822643]],[[-0.011084037832916,0.036257609724998,-0.02116197347641],[-0.020643992349505,-0.011768688447773,-0.020010525360703],[0.028719091787934,0.00038812521961518,-0.017930125817657]],[[0.072519272565842,0.0059490012936294,-0.020668225362897],[0.017548499628901,0.058522313833237,0.016859374940395],[0.088258363306522,0.093724936246872,0.049200404435396]],[[-0.049902360886335,-0.07850369066,-0.017915029078722],[-0.048753764480352,-0.020853139460087,0.098462827503681],[-0.035921420902014,0.0050729871727526,-0.0055930120870471]],[[-0.058022294193506,-0.031426776200533,-0.028095295652747],[0.02076405659318,0.05025152862072,0.0066597922705114],[-0.012244820594788,0.11227814108133,0.072853595018387]],[[0.080632455646992,0.0299914162606,-0.023441061377525],[0.012254016473889,-0.0064425235614181,-0.011412710882723],[0.01038954872638,-0.11314310133457,0.0075685544870794]],[[0.029413007199764,-0.0023649842478335,0.020393842831254],[0.0032152719795704,-0.0031644939444959,-0.012277687899768],[0.024710197001696,-0.040466923266649,-0.10649416595697]],[[-0.015035424381495,-0.028949091210961,-0.0040335222147405],[-0.0051125213503838,0.0024549434892833,0.011186038143933],[-0.010635659098625,0.015179617330432,-0.038785841315985]],[[-0.044117070734501,-0.040175836533308,-0.063589841127396],[-0.064602881669998,-0.050115197896957,0.040456753224134],[-0.023459877818823,0.029824597761035,-0.082666344940662]],[[0.037232112139463,-0.07529491186142,0.024102071300149],[-0.045337166637182,-0.056884206831455,-0.022371998056769],[-0.076262436807156,-0.015610167756677,0.073011785745621]],[[0.080291166901588,-0.043153595179319,-0.038675632327795],[-0.003420339897275,0.028987957164645,0.032677117735147],[0.091953098773956,-0.024591144174337,0.022038666531444]],[[-0.071004256606102,0.063187189400196,0.019839908927679],[0.062179766595364,-0.040937550365925,-8.0689351307228e-05],[0.012628666125238,-0.038590669631958,-0.011536401696503]],[[-0.015316761098802,0.039310123771429,-0.014473978430033],[-0.042699065059423,0.014367836527526,-0.029997991397977],[-0.054426338523626,0.083875969052315,-0.0039687193930149]],[[-0.053750596940517,0.045217331498861,0.067747436463833],[-0.012274762615561,-0.010773240588605,0.057636756449938],[0.020203990861773,-0.038002967834473,-0.022898940369487]],[[0.014143296517432,-0.051402032375336,-0.06591721624136],[-0.065998531877995,-0.030601441860199,-0.078598462045193],[-0.021882433444262,-0.019425269216299,-0.015194202773273]],[[0.045792423188686,0.060782510787249,-0.012812142260373],[-0.091786935925484,-0.017675720155239,0.03775205463171],[-0.062768712639809,-0.12302395701408,-0.10364557802677]],[[-0.01728269085288,0.025109482929111,-0.053161084651947],[0.0034468581434339,0.038504224270582,0.057381417602301],[0.024744031950831,0.054619949311018,-0.092520780861378]],[[-0.058885291218758,0.069033361971378,-0.012879496440291],[0.0095370262861252,-0.036726862192154,-0.036604005843401],[-0.050252322107553,0.017983363941312,-0.01553419046104]],[[-0.031071966513991,-0.019815253093839,0.0084675345569849],[0.015339418314397,-0.010030903853476,0.0053281718865037],[-0.028104167431593,-0.02260922268033,0.010548230260611]],[[0.0043053878471255,0.010508433915675,-0.0065215877257288],[-0.1211828365922,-0.017916910350323,-0.0062745735049248],[-0.086582608520985,-0.065993674099445,-0.054618149995804]],[[0.039916791021824,0.0071546910330653,-0.041677474975586],[0.060661528259516,0.0046901684254408,0.041508194059134],[0.037884566932917,-0.020524505525827,-0.011162674054503]],[[-0.052418868988752,0.0024497050326318,0.0014372483128682],[0.0063524032011628,-0.014382933266461,-0.00809963978827],[0.047302510589361,0.024151848629117,0.0029277026187629]],[[-0.079414062201977,-0.097881279885769,-0.01195933111012],[0.0094447713345289,0.0436304025352,-0.02913236245513],[0.041863661259413,0.022738613188267,0.0098405545577407]],[[-0.00050971773453057,6.1656355683226e-05,-0.020187126472592],[0.015432205051184,-0.042269837111235,-0.083118222653866],[0.011411536484957,-0.00062814477132633,-0.053470533341169]],[[-0.0045992932282388,0.017972178757191,0.066852651536465],[-0.020728930830956,0.096938505768776,-0.015017885714769],[-0.043580789119005,-0.075858607888222,0.012495214119554]],[[-0.015259453095496,-0.053536113351583,-0.011961597949266],[0.089809812605381,-0.10973291099072,0.041819732636213],[-0.072718434035778,0.022534850984812,-0.023747019469738]],[[-0.048074517399073,0.013363899663091,0.029985116794705],[0.0047373063862324,-0.025040604174137,-0.062007490545511],[0.038181751966476,0.016532277688384,-0.065533325076103]],[[-0.03404700383544,-0.057754538953304,0.029641760513186],[0.00566968601197,0.012022141367197,0.0032780969049782],[-0.061665926128626,-0.063026487827301,0.031608164310455]],[[0.022512538358569,0.022787038236856,-0.016499705612659],[-0.0088866306468844,-0.0027420942205936,-0.053232997655869],[-0.029351579025388,-0.061839692294598,0.011789962649345]],[[-0.0018802197882906,-0.027854466810822,-0.03272308409214],[0.058281533420086,-0.098963007330894,0.015204294584692],[0.052895747125149,0.03562967479229,0.036558695137501]],[[-0.0014003631658852,0.016228791326284,-0.034001220017672],[-0.047467585653067,-0.037350337952375,-0.029235096648335],[0.042643513530493,-0.0068095298483968,0.011832283809781]],[[0.00021753506734967,0.026976281777024,-0.036204241216183],[0.075550235807896,-0.0080418642610312,-0.0068321102298796],[-0.086442060768604,0.033367976546288,0.023319508880377]],[[0.022568963468075,-0.00031340087298304,0.018850442022085],[-0.0092203672975302,-0.025804428383708,-0.021552868187428],[-0.0041228625923395,-0.036780659109354,-0.016772316768765]],[[0.0002256775915157,0.05814640969038,-0.0079610766842961],[-0.014312189072371,0.025743244215846,0.084124013781548],[-0.0024423743598163,-0.035054881125689,-0.049040853977203]],[[0.033073615282774,-0.0067197638563812,-0.076797120273113],[0.049531023949385,-0.067506320774555,0.017183035612106],[-0.0707917958498,0.016308655962348,-0.0034778553526849]],[[0.016448436304927,0.041913881897926,-0.032456751912832],[-0.022974183782935,-0.0050729643553495,0.034677937626839],[-0.060795925557613,0.03462602570653,0.014063033275306]],[[-0.0097257476300001,0.0016974919708446,-0.0029403532389551],[0.035664469003677,-0.040498200803995,-0.05944712460041],[0.041290018707514,0.012582643888891,-0.0021442680153996]],[[-0.032153900712729,0.027388425543904,-0.068843521177769],[0.0053321002051234,-0.020762287080288,-0.076466418802738],[-0.019639825448394,-0.034933600574732,-0.036791451275349]],[[-0.034236121922731,0.10994885861874,0.070689208805561],[0.032499369233847,-0.019387681037188,-0.0014421883970499],[-0.025698117911816,-0.012533731758595,-0.025554060935974]],[[-0.0021245346870273,0.05079535394907,-0.00098534510470927],[-0.015798814594746,0.072153188288212,0.040703292936087],[-0.016453623771667,0.05313178524375,-0.046298131346703]],[[0.020054304972291,0.0094574419781566,-0.077563643455505],[-0.070399411022663,0.085662990808487,0.083907060325146],[0.027583889663219,-0.0056720026768744,0.019976878538728]],[[-0.040646962821484,0.011634844355285,-0.019112730398774],[-0.07759627699852,-0.092196561396122,-0.031499836593866],[-0.035335835069418,-0.044361170381308,-0.076747976243496]],[[0.067281320691109,0.084001705050468,-0.016385354101658],[0.07200114428997,0.01113557908684,0.079007767140865],[0.036772605031729,0.021709464490414,0.11229679733515]],[[-0.0055444748140872,0.018079815432429,0.0060383793897927],[0.034243363887072,-0.076256886124611,-0.011254468932748],[0.0074552446603775,0.073083557188511,-0.062825493514538]],[[-0.045165710151196,-0.046097591519356,0.0016742986626923],[-0.015840124338865,0.045320395380259,0.050523571670055],[-0.022593969479203,-0.028398210182786,-0.016101233661175]],[[0.014494366012514,0.050072140991688,-0.025588303804398],[0.022454492747784,0.0050694020465016,-0.020295629277825],[-0.040507238358259,-0.11231632530689,-0.06088637933135]],[[0.006318926345557,0.0018756580539048,0.02051099576056],[-0.027696423232555,-0.031968880444765,0.033767063170671],[-0.0018478480633348,-0.0079419976100326,-0.010221092961729]],[[-0.016244992613792,0.026108322665095,0.067392341792583],[-0.0098139587789774,-0.051117241382599,0.00038879225030541],[-0.013317098841071,-0.017766954377294,0.010782117024064]],[[-0.021605974063277,-0.008547923527658,-0.011931431479752],[0.010049381293356,-0.025039929896593,0.0037186469417065],[-0.010761154815555,0.086165904998779,0.032186161726713]],[[-0.039522755891085,-0.059595476835966,0.0020709962118417],[0.0030890395864844,0.04902882501483,-0.058913249522448],[-0.010251133702695,-0.053762592375278,-0.0072564319707453]],[[0.024739295244217,-0.083488866686821,0.022548522800207],[0.030148055404425,0.0038780178874731,0.016548428684473],[-0.003725444432348,0.024909138679504,-0.032301712781191]],[[-0.050850961357355,-0.033055786043406,0.035169046372175],[0.0093517284840345,-0.013806979171932,0.017548033967614],[-0.032473508268595,-0.03879227861762,0.074639275670052]],[[-0.011474568396807,0.072983413934708,0.034602515399456],[0.017329951748252,-0.045105591416359,0.027409430593252],[-0.028903748840094,-0.086444690823555,0.064941793680191]]],[[[0.049874693155289,0.02318087220192,0.037831209599972],[-0.078937597572803,0.0033112983219326,-0.017212955281138],[0.041418045759201,-0.029693458229303,-0.023543881252408]],[[0.018734944984317,0.0012144745560363,-0.04180807992816],[0.034958183765411,-0.051714543253183,-0.02503421343863],[-0.015469601377845,-0.018615908920765,-0.0094923917204142]],[[-0.047636222094297,-0.025284234434366,0.1011291667819],[-0.062806375324726,0.038503926247358,-0.0047605424188077],[-0.051227558404207,-0.012454557232559,-0.016398556530476]],[[0.022598827257752,-0.026724029332399,-0.02252927608788],[-0.069806523621082,0.027647251263261,0.071108296513557],[-0.10844420641661,0.081261307001114,0.050064861774445]],[[-0.030208265408874,0.012706587091088,0.030186183750629],[0.03535782545805,0.08751392364502,0.027323476970196],[-0.030036086216569,-0.013683153316379,-0.037597455084324]],[[-0.092815220355988,0.073729626834393,0.079962752759457],[-0.066131740808487,-0.0078280298039317,0.024853587150574],[0.055709779262543,-0.096503511071205,-0.031296923756599]],[[-0.08318755030632,0.0074897524900734,0.0073455818928778],[-0.046240467578173,-0.0017733301501721,-0.0029650048818439],[-0.033721838146448,0.0030657346360385,0.026132624596357]],[[0.0033546863123775,0.049929350614548,-0.025020169094205],[0.008082072250545,0.032888386398554,0.054010756313801],[0.042432315647602,0.0020219155121595,-0.028671074658632]],[[0.0059230760671198,-0.045425429940224,-0.016387883573771],[0.051976751536131,0.0102843279019,-0.027364831417799],[0.020123794674873,0.035010259598494,-0.07742565870285]],[[0.092775642871857,0.019321165978909,-0.059188693761826],[0.059756025671959,0.00913305580616,-0.055267259478569],[-0.083182990550995,-0.050505120307207,-0.037727501243353]],[[0.0065233930945396,-0.079521298408508,0.083397731184959],[-0.070849530398846,0.050104539841413,0.013486291281879],[-0.047755371779203,-0.032678943127394,0.067329831421375]],[[0.032773204147816,-0.070899091660976,0.035590104758739],[-0.050090227276087,-0.027787454426289,0.092913627624512],[0.060312896966934,0.028868371620774,-0.0033090692013502]],[[0.042297501116991,0.086260281503201,0.052786003798246],[-0.042506568133831,-0.0049423952586949,0.043937910348177],[0.024531869217753,0.037430815398693,0.076959609985352]],[[0.11211558431387,0.058477763086557,0.0035046238917857],[0.13166087865829,0.06091532856226,-0.048024233430624],[0.072530262172222,0.10229469835758,-0.065477669239044]],[[-0.0065260827541351,-0.01902231015265,0.016738776117563],[-0.059802066534758,-0.0480279289186,-0.032648637890816],[-0.047292992472649,-0.025357643142343,-0.11205964535475]],[[0.099201291799545,0.016757555305958,0.013232067227364],[-0.06477428227663,0.079598069190979,-0.012433309108019],[-0.0057155820541084,0.071991950273514,0.015821108594537]],[[-0.062581174075603,-0.001929925638251,0.0022551028523594],[-0.041648864746094,-0.018622012808919,0.017926003783941],[-0.0015624022344127,0.025937091559172,0.031840018928051]],[[-0.028975836932659,0.052087284624577,0.081059247255325],[-0.024145361036062,-0.022754564881325,-0.012661925517023],[-0.057055588811636,-0.010287882760167,-0.089497856795788]],[[-0.040202904492617,-0.041762486100197,0.084839344024658],[-0.018178414553404,0.024448590353131,0.013217628002167],[-0.016083724796772,0.0027463980950415,0.014516968280077]],[[-0.021257869899273,0.059266284108162,-0.026488862931728],[-0.026899510994554,0.013726828619838,-0.023861065506935],[0.0014893623301759,-0.023060228675604,-0.030859984457493]],[[-0.013880645856261,-0.0063555524684489,0.029581740498543],[-0.031120451167226,0.027588542550802,-0.0090409722179174],[0.013482645153999,-0.0552161000669,-0.0041895541362464]],[[-0.022713454440236,0.01232928968966,-0.031396009027958],[0.031672105193138,0.058250237256289,-0.0024893512018025],[0.03179881721735,-0.031481627374887,0.063636928796768]],[[0.019174387678504,0.01132888905704,0.067624248564243],[-0.018846409395337,0.02986011095345,-0.036822210997343],[-0.061619341373444,-0.013680221512914,-0.022121269255877]],[[-0.0003322486882098,0.062880553305149,0.0035086569841951],[-0.033520583063364,-0.025626735761762,0.023559182882309],[-0.053395882248878,0.071434438228607,-0.070697203278542]],[[-0.059712115675211,-0.026884187012911,0.01689475029707],[-0.060700383037329,0.0029267081990838,-0.048339568078518],[-0.032842557877302,-0.022802010178566,-0.017037289217114]],[[0.039523307234049,0.0037420024164021,0.01055399607867],[0.0075285476632416,0.034264482557774,0.069685406982899],[0.036184541881084,-0.0060868179425597,0.038631569594145]],[[-0.10054898262024,-0.063727505505085,-0.012953289784491],[0.0061669587157667,0.010929215699434,0.0089701879769564],[0.048992931842804,0.031944178044796,-0.085596509277821]],[[0.026515439152718,-0.049025487154722,0.053574696183205],[-0.023133793845773,0.10430726408958,-0.039828211069107],[-0.0076618855819106,0.0065069133415818,0.0084254769608378]],[[0.012756975367665,-0.051568191498518,0.037939716130495],[-0.13283456861973,0.0033397383522242,0.041326303035021],[0.14616802334785,0.012058055959642,0.087237223982811]],[[-0.077781967818737,-0.080781303346157,-0.16384142637253],[-0.021439515054226,0.04328390583396,-0.011147877201438],[0.011256065219641,0.037476550787687,-0.043326016515493]],[[-0.045459538698196,0.0097932349890471,0.030646441504359],[0.018062051385641,-0.025325663387775,-0.022275425493717],[-0.079840399324894,-0.0029651147779077,0.0043284832499921]],[[-0.004569299519062,0.01592106372118,0.047192249447107],[0.085366539657116,0.0040220646187663,0.0169617254287],[0.092776484787464,0.072893418371677,0.026815298944712]],[[0.0028516298625618,-0.072636649012566,0.018050888553262],[-0.0004988886648789,0.0037377390544862,-0.004483194090426],[-0.096943698823452,-0.040934979915619,0.043904423713684]],[[-0.038428723812103,-0.0044676256366074,-0.0066681718453765],[-0.045396417379379,0.013468365184963,0.018913282081485],[-0.045108444988728,0.045076820999384,-0.025085953995585]],[[0.052509214729071,0.001157364808023,-0.036043364554644],[0.031308807432652,0.040691591799259,-0.10932713001966],[0.064482219517231,0.025308042764664,-0.066828183829784]],[[-0.072309032082558,0.0077430112287402,0.027347583323717],[-0.054561518132687,-0.078438058495522,-0.020121866837144],[-0.047976084053516,-0.046253241598606,-0.056419711560011]],[[-0.035194631665945,-0.013406603597105,0.013370963744819],[-0.055671267211437,-0.074037864804268,-0.020369289442897],[-0.089569076895714,-0.062509417533875,0.020064188167453]],[[-0.044191487133503,0.07247769087553,-0.021988108754158],[-0.036074038594961,-0.034484677016735,-0.071308724582195],[-0.036796111613512,-4.383220220916e-05,0.087996579706669]],[[-0.047317367047071,0.079892508685589,0.038068316876888],[-0.046454321593046,0.10282688587904,-0.052563596516848],[-0.058687411248684,-0.016014605760574,-0.047643937170506]],[[-0.037934120744467,-0.010371188633144,0.042305186390877],[-0.077672548592091,-0.065623432397842,0.043470852077007],[0.046460554003716,-0.039971154183149,0.0093208877369761]],[[0.013038592413068,0.015040098689497,0.024227220565081],[0.08523266762495,-0.062305748462677,5.1941093261121e-05],[-0.10070444643497,-0.098862640559673,-0.0617307536304]],[[-0.050175726413727,-0.045098654925823,-0.031245490536094],[0.055051237344742,-0.051115587353706,-0.057872448116541],[0.0052120494656265,0.051503006368876,0.034885764122009]],[[-0.062194358557463,0.033727671951056,0.067201070487499],[-0.019838059321046,-0.0081559540703893,-0.0037389697972685],[-0.051343154162169,0.00073475408134982,-0.075869247317314]],[[-0.041860330849886,0.034256882965565,0.00069257715949789],[-0.051534809172153,-0.095590189099312,-0.061844695359468],[-0.06915146112442,-0.015777984634042,-0.11415627598763]],[[-0.0017590845236555,0.0026988605968654,-0.11567919701338],[0.044502664357424,0.094128184020519,0.011121191084385],[0.037181813269854,0.0033733686432242,0.015039836987853]],[[-0.015506193973124,-0.029245370998979,-0.040468856692314],[0.0084839509800076,-0.039720397442579,-0.014200355857611],[-0.042007211595774,0.022636255249381,-0.074725970625877]],[[-0.050518400967121,0.074124291539192,0.0031071016564965],[-0.021970180794597,0.039311610162258,-0.019132770597935],[-0.020959321409464,-0.033044394105673,-0.0017024567350745]],[[-0.022097563371062,-0.032925121486187,-0.027103703469038],[-0.10696198046207,0.02835569344461,0.060343787074089],[-0.041758704930544,-0.007198613602668,0.0093770977109671]],[[-0.0032913552131504,-0.025448739528656,-0.015888715162873],[-0.020285381004214,-0.036479502916336,0.020792437717319],[-0.096272148191929,-0.021678108721972,-0.032698798924685]],[[-0.036385808140039,0.072642594575882,-0.18352957069874],[-0.016778502613306,-0.001852986169979,0.046448856592178],[-0.001110571087338,0.0014732778072357,-0.073716476559639]],[[0.0064962115138769,0.035099014639854,0.037423104047775],[-0.053856246173382,-0.0034035937860608,0.036715999245644],[-0.0068515953607857,0.026917714625597,-0.025676688179374]],[[-0.047848392277956,-0.043632749468088,0.01270264107734],[-0.10796788334846,0.0082590589299798,-0.015437783673406],[-0.094204030930996,0.0065226778388023,0.002749917563051]],[[-0.035999957472086,-0.055911853909492,0.02317301183939],[0.027536222711205,-0.061325073242188,-0.065116658806801],[-0.055317379534245,-0.070130117237568,0.0003154308651574]],[[0.054819412529469,0.09923543035984,0.025646386668086],[0.1671067327261,0.0057871923781931,0.045707400888205],[-0.019395532086492,0.060061365365982,0.061506114900112]],[[-0.02964829467237,-0.03908957913518,0.032199796289206],[-0.045502848923206,-0.046273574233055,0.015436675399542],[0.028772823512554,-0.010858826339245,-0.025724453851581]],[[-0.034705255180597,0.011763917282224,-0.0043541332706809],[0.035578716546297,-0.011742172762752,0.027477294206619],[0.032218810170889,0.02913754619658,-0.04413229227066]],[[0.037392400205135,0.078224927186966,0.017512721940875],[0.025607226416469,0.063817404210567,0.015793204307556],[-0.06600558757782,0.061483591794968,-0.006056229583919]],[[-0.024613808840513,-0.018221780657768,-0.02749739587307],[-0.039023779332638,0.051349077373743,0.043438233435154],[-0.018992964178324,-0.00012078297004336,0.023197036236525]],[[-0.028937410563231,-0.040188498795033,-0.055082373321056],[0.019858688116074,-0.036480244249105,0.063299350440502],[-0.015242137014866,0.05827334523201,0.035712778568268]],[[0.0045433882623911,-0.046652335673571,-0.075266100466251],[0.0089280409738421,0.08493710309267,0.035451229661703],[0.029374884441495,0.018445547670126,0.049590285867453]],[[-0.017663301900029,0.010590932331979,-0.0029231843072921],[-0.011794199235737,-0.069656826555729,0.017317604273558],[-0.054624743759632,-0.013562475331128,0.02434091642499]],[[-0.095818638801575,-0.023581413552165,-0.069164723157883],[0.010179456323385,0.0069144829176366,-0.091121301054955],[0.0059872884303331,0.0015505054034293,-0.039323426783085]],[[0.030373936519027,0.087629206478596,-0.0094911474734545],[-0.0081071518361568,-0.065958455204964,-0.024493554607034],[-0.0032092118635774,-0.019509077072144,0.020707231014967]],[[-0.01769432425499,-0.017275374382734,0.071551993489265],[0.027378730475903,0.021906452253461,0.056094992905855],[0.0029282255563885,0.029847862198949,0.07441234588623]]],[[[-0.0029033941682428,-0.050435073673725,-0.11457630246878],[0.025645900517702,-0.045076306909323,-0.1119197383523],[0.13639861345291,0.05054758861661,0.10855528712273]],[[-0.031972903758287,-0.068298742175102,0.057137511670589],[-0.035652074962854,0.0064926706254482,0.08995147049427],[-0.15963147580624,-0.093744687736034,-0.050028800964355]],[[0.0028660241514444,-0.050518590956926,0.063796631991863],[-0.037904091179371,-0.057574953883886,-0.040911689400673],[0.07123202085495,-0.046296581625938,0.050600919872522]],[[0.010665175504982,-0.06214676424861,0.075162589550018],[-0.009478303603828,-0.051811374723911,-0.08604571223259],[0.053619489073753,0.043139059096575,0.014164907857776]],[[-0.0084542110562325,-0.013634934090078,-0.052015155553818],[-0.064315356314182,0.063248381018639,0.039257049560547],[0.03079784847796,0.04211700335145,-0.014960747212172]],[[-0.0068517415784299,0.023697726428509,-0.11969890445471],[-0.0067666950635612,0.010299563407898,-0.019797643646598],[0.010517478920519,-0.044376127421856,-0.080569066107273]],[[-0.031651347875595,0.014782237820327,0.033177491277456],[-0.042330473661423,-0.023515023291111,0.0050868508405983],[-0.022350871935487,0.0048379553481936,0.089375756680965]],[[0.062295224517584,-0.040456295013428,-0.11713773757219],[0.013395288959146,0.10733448714018,0.13200537860394],[0.0079925302416086,0.0026770159602165,-0.012556771747768]],[[-0.15951067209244,-0.022598940879107,-0.0050202808342874],[0.015618550591171,-0.047116130590439,-0.071033351123333],[-0.12967240810394,-0.076026447117329,0.007581103593111]],[[-0.050762455910444,0.07592211663723,0.030862722545862],[0.04675666987896,-0.0013804362388328,0.041798509657383],[0.09862058609724,-0.0091224638745189,0.05251756682992]],[[0.068214409053326,-0.111332885921,-0.12019960582256],[-0.092081911861897,0.13432703912258,-0.12164258956909],[0.11101448535919,0.080907382071018,0.02026779204607]],[[0.014586918987334,-0.11773700267076,0.050188209861517],[0.048874907195568,0.074028074741364,-0.074228771030903],[-0.023600017651916,0.024078892543912,0.068678304553032]],[[0.072830393910408,0.064582355320454,-0.075381934642792],[-0.075330510735512,0.046338733285666,0.066599011421204],[-0.10051985085011,-0.12977224588394,-0.1462749093771]],[[0.015038030222058,0.043587040156126,-0.14089627563953],[-0.058884512633085,0.041796281933784,0.032857973128557],[0.17793422937393,0.14699837565422,0.097589425742626]],[[0.033051654696465,-0.020606661215425,-0.07023161649704],[0.0038232975639403,-0.021485522389412,-0.19547465443611],[0.089472338557243,0.11287620663643,-0.01549855619669]],[[-0.042844690382481,0.11736204475164,0.064112991094589],[0.043159633874893,-0.084709070622921,-0.081687368452549],[0.01593978330493,-0.088845290243626,-0.11646661162376]],[[-0.08294852077961,-0.077510043978691,-0.12762151658535],[-0.028002394363284,-0.032373689115047,0.049941673874855],[-0.028986122459173,-0.1022671982646,-0.11277145892382]],[[0.0062485337257385,-0.018534859642386,0.0064598936587572],[0.045982774347067,-0.082250207662582,-0.060121845453978],[-0.087552279233932,0.036927036941051,0.057159096002579]],[[-0.090854652225971,-0.037757955491543,-0.20725478231907],[0.015833025798202,-0.1109564602375,-0.071846388280392],[0.055965170264244,-0.026774171739817,-0.057947508990765]],[[-0.024295765906572,0.054102469235659,-0.047316648066044],[-0.041405204683542,-0.024416217580438,-0.024917421862483],[0.013559487648308,0.0029008376877755,0.055640500038862]],[[-0.014728104695678,-0.030410908162594,-0.15971100330353],[0.089392475783825,-0.011840587481856,-0.15535685420036],[0.098418407142162,0.12298563867807,-0.12873630225658]],[[-0.0020995242521167,-0.058216240257025,0.045494150370359],[-0.039143823087215,0.049681209027767,0.048397071659565],[-0.13359619677067,-0.057056251913309,-0.020288376137614]],[[0.010079639032483,-0.017417773604393,-0.068396128714085],[0.021167693659663,0.084413848817348,-0.020537016913295],[-0.028098434209824,-0.004819730296731,0.031770192086697]],[[0.031151061877608,8.4571554907598e-05,-0.010441051796079],[0.081658445298672,-0.029248889535666,-0.023735657334328],[0.031935218721628,0.063775971531868,-0.1907773911953]],[[0.021472908556461,0.00036538287531585,0.20421072840691],[0.098361529409885,0.068628318607807,0.0022895103320479],[-0.041227124631405,0.0046650599688292,0.027190214022994]],[[-0.029164394363761,-0.054755751043558,0.036120198667049],[-0.011373830959201,0.0047419839538634,-0.030026454478502],[-0.11720702797174,-0.047422930598259,-0.022447755560279]],[[0.066762737929821,-0.099169678986073,-0.081252753734589],[-0.013584641739726,-0.067067444324493,0.02616947889328],[0.045200269669294,0.10747393220663,0.093521296977997]],[[0.02250680886209,-0.042005274444818,-0.1274438649416],[0.013313827104867,0.048510178923607,-0.11332710087299],[0.10619928687811,-0.063100814819336,-0.16431279480457]],[[0.019548421725631,-0.11158458143473,-0.064722128212452],[-0.048950176686049,-0.10002671182156,-0.057215355336666],[0.017940003424883,0.060478508472443,0.047736283391714]],[[-0.040523894131184,0.015888655558228,-0.013052036054432],[-0.018220320343971,-0.063755430281162,-0.077829919755459],[-0.027950229123235,0.020938619971275,0.056783005595207]],[[0.043533612042665,-0.03991287574172,0.24500440061092],[0.061444822698832,-0.11530391126871,-0.019364733248949],[0.037078678607941,-0.016840854659677,0.0041319052688777]],[[-0.080694280564785,-0.08987931907177,-0.062902025878429],[-0.064298607409,0.046412326395512,0.055595837533474],[-0.07058135420084,0.070322930812836,0.079236567020416]],[[-0.040304239839315,-0.033399734646082,-0.020013937726617],[-0.012459960766137,-0.036472246050835,-0.043208718299866],[-0.024276807904243,-0.057942725718021,-0.055140569806099]],[[0.012831840664148,-0.054027885198593,-0.060244273394346],[0.085043855011463,0.1062283217907,-0.019478304311633],[-0.034690476953983,0.025262545794249,-0.060737371444702]],[[-0.061443161219358,-0.036842480301857,0.061694718897343],[0.0068281241692603,0.082442283630371,0.12093386054039],[-0.27887284755707,-0.044235195964575,0.12150954455137]],[[0.0049667661078274,0.0024491881486028,-0.0018896104302257],[0.0034890833776444,-0.079122066497803,-0.12465282529593],[0.015732103958726,-0.080111809074879,-0.054490827023983]],[[0.037241503596306,-0.15689839422703,0.031816698610783],[-0.017765000462532,-0.029171720147133,-0.13066351413727],[0.013054192066193,0.048281636089087,-0.012531877495348]],[[-0.047039028257132,-0.27813822031021,0.04778841137886],[-0.040033254772425,-0.027200100943446,-0.18728017807007],[0.141387835145,0.095878951251507,0.078253485262394]],[[0.0066383369266987,0.10665659606457,0.075308911502361],[-0.095550447702408,-0.023768849670887,-0.054765287786722],[-0.018649922683835,-0.096942037343979,-0.060157421976328]],[[-0.012276916764677,0.056566141545773,0.08479105681181],[-0.07983573526144,-0.094224646687508,-0.086420029401779],[-0.081612318754196,0.036391206085682,-0.022504294291139]],[[-0.0080017913132906,-0.053624864667654,-0.083408251404762],[-0.006025543436408,0.085709549486637,0.054428156465292],[0.035755053162575,-0.066223949193954,-0.073847606778145]],[[0.04387042298913,-0.11105504631996,0.14577607810497],[-0.03163243085146,-0.013792264275253,0.038756716996431],[0.010450903326273,0.083943627774715,0.074337415397167]],[[-0.13691551983356,0.047938946634531,-0.04137197881937],[-0.00062978995265439,0.020296819508076,0.096407420933247],[-0.0093944603577256,-0.025324461981654,-0.071199916303158]],[[-0.020748687908053,0.12309136241674,0.040665302425623],[0.010961146093905,-0.0013975296169519,0.0041910065338016],[0.035364780575037,-0.081940174102783,-0.14823564887047]],[[-0.036699797958136,0.0074151181615889,-0.15643315017223],[0.02911476790905,0.03882771730423,0.021756881847978],[0.086755238473415,-0.048989001661539,0.061183631420135]],[[0.021226456388831,0.035509929060936,-0.10401181876659],[-0.16020709276199,0.075805433094501,0.060197453945875],[-0.073993802070618,-0.01714058406651,-0.044808574020863]],[[0.071030102670193,0.006185898091644,0.020655760541558],[-0.015992168337107,0.086001098155975,-0.0039441077969968],[-0.14814588427544,0.018318979069591,0.046040151268244]],[[-0.013642305508256,-0.038440387696028,-0.10979452729225],[0.04222097247839,0.17330075800419,-0.058851718902588],[-0.020816165953875,0.019618984311819,-0.017669934779406]],[[0.0012740151723847,0.030229613184929,0.089246019721031],[-0.018511895090342,-0.050156608223915,-0.0060665956698358],[-0.14700873196125,-0.023418186232448,0.017698397859931]],[[-0.077577538788319,-0.084887705743313,-0.13776890933514],[0.21111550927162,-0.05847379565239,-0.11366398632526],[0.065458372235298,-0.10675120353699,-0.17091828584671]],[[0.033802580088377,0.11020214855671,0.037830535322428],[-0.16606429219246,-0.090595461428165,0.02641830034554],[-0.049246635288,-0.26367077231407,-0.06009591370821]],[[-0.014250768348575,0.01794021204114,0.1083650290966],[-0.080365307629108,-0.03836353495717,0.089092470705509],[-0.043068181723356,0.034288685768843,-0.049106527119875]],[[0.00022745490423404,0.087511703372002,0.095779106020927],[-0.049845732748508,-0.078278839588165,0.02745882794261],[-0.019865853711963,0.02457726560533,-0.021076407283545]],[[0.0033688452094793,0.11126453429461,-0.024878507480025],[0.080960243940353,0.080229088664055,0.18240642547607],[0.17321349680424,0.19294236600399,0.075032338500023]],[[-0.013690020889044,-0.07195533066988,-0.030107654631138],[0.0456587895751,-0.0079715987667441,-0.057829588651657],[0.023319831117988,0.024236433207989,-0.046002939343452]],[[-0.079138875007629,0.03715993091464,-0.091136440634727],[-0.056705117225647,-0.016665522009134,-0.077066197991371],[-0.1781190931797,-0.091691553592682,-0.09248124063015]],[[-0.084329523146152,-0.095697455108166,-0.082236021757126],[-0.017840391024947,-0.13708724081516,-0.11009686440229],[-0.035362411290407,0.17108941078186,-0.10904390364885]],[[0.0066633173264563,-0.02503708191216,0.0042246677912772],[0.025310143828392,0.020292036235332,-0.067716494202614],[-0.073670983314514,-0.01360378228128,-0.087818533182144]],[[-0.064744725823402,0.0018377612577751,-0.10868241637945],[0.090342402458191,0.01065850071609,-0.073658503592014],[0.033421117812395,0.05886210501194,-0.04148031771183]],[[0.010804754681885,0.052019398659468,0.079802893102169],[0.025017008185387,-0.06399492174387,0.066976457834244],[0.0057868515141308,0.010025051422417,-0.038901854306459]],[[0.0519801042974,-0.03502831235528,0.1053192615509],[0.029724072664976,0.10684192925692,-0.045073248445988],[-0.080775201320648,0.090499266982079,0.018490547314286]],[[0.023085033521056,-0.11011707037687,0.05311044305563],[-0.065392680466175,-0.025838457047939,0.05210692808032],[-0.061343938112259,0.024768678471446,0.024032400920987]],[[-0.0018894940149039,0.015328260138631,0.031068896874785],[0.031014204025269,0.011914035305381,-0.020733997225761],[-0.069043785333633,-0.00048824693658389,-0.093908481299877]],[[0.054364271461964,0.016707820817828,-0.005788744892925],[-0.0082638813182712,-0.06640238314867,0.0021933261305094],[0.024393275380135,0.0015219050692394,-0.019310688599944]]],[[[-0.10648046433926,0.03102076984942,-0.057421363890171],[0.032400634139776,-0.031475439667702,-0.06186031922698],[-0.1210722848773,-0.027507200837135,0.016345102339983]],[[0.0064357607625425,0.018529223278165,-0.08387153595686],[0.034674391150475,0.010015429928899,-0.043729573488235],[-0.044767841696739,-0.11250114440918,-0.01985165849328]],[[-0.0061861420981586,-0.012110506184399,-0.045713234692812],[-0.077147491276264,-0.034634694457054,0.00017187095363624],[-0.020406134426594,-0.026884535327554,-0.033948633819818]],[[-0.053985003381968,-0.022370731458068,-0.029470345005393],[-0.0043323915451765,0.0083881057798862,-0.071156114339828],[0.012318075634539,0.043899267911911,0.0048094275407493]],[[-0.01249089371413,0.075871549546719,-0.051133617758751],[0.057138562202454,-0.066343799233437,-0.00014614388055634],[-0.0012239061761647,0.071738503873348,0.025903273373842]],[[-0.023053020238876,-0.0073320954106748,-0.069154143333435],[-0.11445359885693,-0.078755863010883,-0.13686986267567],[0.05599195882678,-0.12862585484982,0.10026334226131]],[[-0.020510457456112,0.038209762424231,-0.024749388918281],[0.0060350224375725,-0.025087768211961,0.017767529934645],[0.018932363018394,-0.058606047183275,-0.0026541023980826]],[[-0.026621524244547,-0.0024349256418645,0.045542914420366],[-0.017925620079041,0.079240396618843,0.090228609740734],[0.040158789604902,0.020685907453299,0.037049472332001]],[[0.088311269879341,0.086750067770481,-0.093534089624882],[0.020727371796966,-0.025657972320914,-0.0047538499347866],[0.10169659554958,-0.04923265054822,-0.059856548905373]],[[-0.1172644123435,0.10147684812546,0.091225251555443],[0.070720806717873,0.11579672247171,-0.044990058988333],[0.045083601027727,0.14293138682842,-0.19856137037277]],[[-0.069994762539864,0.013186804950237,-0.023507881909609],[0.073179326951504,-0.11148612946272,-0.055713541805744],[0.11821186542511,-0.11984802037477,-0.014741650782526]],[[0.03490336611867,0.015895077958703,-0.01349566783756],[-0.082040794193745,-0.028355916962028,-0.0056292093358934],[0.055948663502932,0.040856748819351,-0.097046725451946]],[[-0.10444688796997,-0.24050977826118,-0.0085009122267365],[-0.030705036595464,-0.0028764344751835,0.12482565641403],[0.023594824597239,0.060736548155546,0.056900799274445]],[[-0.025149270892143,-0.045474592596292,0.0079996958374977],[0.022125942632556,0.0092476373538375,0.052276704460382],[0.03954915702343,0.02366671897471,0.014793891459703]],[[-0.049321889877319,-0.019844947382808,-0.062522038817406],[-0.029865784570575,0.0034495652653277,-0.064474001526833],[-0.070243038237095,0.031584024429321,0.069498308002949]],[[-0.067321307957172,-0.04317207634449,-0.11798878014088],[0.016349952667952,0.17392274737358,-0.022475080564618],[0.025610338896513,-0.029204402118921,-0.014144649729133]],[[-0.045014332979918,-0.031096514314413,-0.0033084584865719],[0.017175836488605,-0.06514935195446,-0.0066386694088578],[-0.010622592642903,0.081434041261673,0.057404153048992]],[[-0.020510079339147,0.032987009733915,-0.00030962086748332],[0.062344297766685,-0.0088159386068583,0.083404459059238],[0.013683255761862,-0.067272953689098,0.039138466119766]],[[-0.056107819080353,0.007377602159977,-0.05767172947526],[-0.02524377964437,0.065080434083939,0.053264204412699],[-0.023035850375891,-0.063847556710243,-0.072138853371143]],[[-0.068530566990376,-0.019100788980722,0.084112860262394],[-0.015185464173555,-0.00314035336487,0.064689345657825],[-0.089421018958092,-0.03405299410224,-0.016863567754626]],[[0.07462278008461,0.17431734502316,0.076515339314938],[0.098543472588062,0.016901331022382,0.053391236811876],[0.043111961334944,0.045846670866013,0.02836649119854]],[[-0.054912522435188,-0.075560532510281,0.021617138758302],[-0.019132236018777,0.0015072067035362,0.024847343564034],[0.035209834575653,0.061999376863241,-0.057069860398769]],[[-0.017917877063155,0.03508698195219,0.0058244722895324],[-0.035181861370802,0.036852970719337,0.015652785077691],[-0.0179936401546,-0.003551636589691,-0.0042386399582028]],[[0.0037875189445913,-0.055558364838362,0.026297686621547],[-0.056948006153107,-0.099512927234173,0.038032110780478],[-0.12692388892174,0.13588570058346,0.088949531316757]],[[-0.02130289003253,-0.003527156310156,0.031053459271789],[-0.11966186761856,0.016352387145162,0.068687073886395],[-0.093791514635086,0.064670771360397,0.021296374499798]],[[-0.021423771977425,0.11391825973988,-0.01334291882813],[0.016771588474512,-0.047460224479437,0.082353852689266],[-0.06088063493371,-0.0077748936600983,-0.029617404565215]],[[-0.038193259388208,0.017018705606461,0.070348709821701],[0.034493032842875,-0.054897513240576,-0.014135806821287],[0.023259153589606,-0.10179741680622,-0.12878160178661]],[[-0.030477302148938,0.030835865065455,0.0037464702036232],[0.081606015563011,0.039183456450701,0.020393682643771],[-3.5237888369011e-05,-0.05308560281992,-0.035886462777853]],[[-0.0021385843865573,-0.09426636993885,0.09196974337101],[-0.037342958152294,0.076730318367481,-0.020599758252501],[-0.031772885471582,0.023426854982972,-0.0064501003362238]],[[-0.072258837521076,0.041458629071712,0.13467410206795],[-0.11115539073944,-0.013525980524719,0.0657909065485],[-0.13629798591137,0.072122268378735,0.059615474194288]],[[-0.067328475415707,0.034199375659227,-0.10389534384012],[0.084566228091717,0.090691931545734,0.048378270119429],[-0.012338710017502,-0.028340211138129,-0.079043827950954]],[[-0.01502800732851,0.21510297060013,0.10770529508591],[-0.023034457117319,0.054378133267164,-0.036762159317732],[-0.0058373562060297,-0.10756696015596,-0.062075108289719]],[[-0.016715066507459,0.029030848294497,0.12850846350193],[-0.03768004104495,-0.00044069238356315,0.07144171744585],[-0.033400282263756,0.024340499192476,0.059238947927952]],[[-0.091696120798588,0.09958454221487,0.056480690836906],[0.019706467166543,0.08004654198885,0.024348922073841],[-0.12474701553583,-0.030908469110727,0.022471252828836]],[[-0.0097589194774628,0.054094459861517,-0.21790541708469],[0.02452515438199,-0.019518159329891,0.033440113067627],[-0.017741229385138,0.013939427211881,0.04681122303009]],[[-0.035108901560307,0.0015544892521575,-0.030702503398061],[-0.079256221652031,-0.0061858710832894,-0.058123242110014],[-0.062537185847759,-0.026865020394325,-0.061176035553217]],[[0.030670633539557,-0.047218210995197,0.080335572361946],[0.014866757206619,-0.053439043462276,0.080653063952923],[-0.068513303995132,0.027893150225282,-0.027521381154656]],[[-0.0019961658399552,0.20275039970875,0.15259249508381],[-0.022354429587722,-0.11130628734827,0.054323378950357],[-0.11015226691961,-0.041495401412249,0.010835332795978]],[[0.033046010881662,-0.082073912024498,0.025472713634372],[0.063683457672596,0.012600928544998,0.063838176429272],[0.01617736928165,-0.069551080465317,-0.061183840036392]],[[0.02277746796608,0.060961656272411,-0.025269616395235],[0.018081584945321,0.12509573996067,0.10100699216127],[0.021921806037426,0.028553631156683,-0.09818185120821]],[[-0.079528942704201,-0.071800924837589,0.075173445045948],[0.02015632763505,-0.13020613789558,-0.013027940876782],[-0.062430448830128,0.017991788685322,0.073741286993027]],[[-0.031867433339357,-0.0073700505308807,-0.11750431358814],[-0.040428146719933,-0.011113359592855,0.057682558894157],[0.1087431833148,-0.034756403416395,-0.035569995641708]],[[0.064302623271942,0.024418340995908,-0.018230549991131],[0.07741055637598,-0.17409722507,-0.0052917529828846],[0.067339934408665,0.050918132066727,0.031302697956562]],[[0.054274272173643,0.049791179597378,0.042337331920862],[0.057524442672729,0.0061868256889284,0.081319287419319],[-0.086655259132385,-0.10325977951288,-0.039521992206573]],[[-0.045923683792353,-0.00057156855473295,0.038109667599201],[-0.073463998734951,0.13456052541733,-0.010228078812361],[-0.08236800134182,0.079065024852753,-0.018668802455068]],[[0.018610680475831,-0.0041153505444527,-0.025745529681444],[0.096128582954407,0.044145822525024,-0.067830219864845],[0.04092088341713,-0.038163982331753,-0.11212401837111]],[[0.060362577438354,0.0013610097812489,-0.077937573194504],[0.067357666790485,-0.032626297324896,0.0091495672240853],[0.017240334302187,-0.019640220329165,-0.010232634842396]],[[-0.01985895074904,-0.092833444476128,0.044253975152969],[-0.056648649275303,0.023503568023443,0.073962949216366],[0.036940898746252,-0.061426844447851,-0.023546112701297]],[[0.025896601378918,-0.063243262469769,-0.056025937199593],[0.10842335224152,-0.0018456690013409,0.090569868683815],[-0.039632089436054,0.045533139258623,-0.026903359219432]],[[-0.047323066741228,-0.02632424980402,-0.040425315499306],[0.011981543153524,0.24781681597233,-0.035609107464552],[0.11697756499052,-0.042762111872435,0.081456288695335]],[[-0.014058112166822,-0.045331876724958,-0.047593414783478],[0.072420790791512,0.043311528861523,-0.052869983017445],[0.084437109529972,-0.0011899716919288,-0.019484749063849]],[[0.02903894521296,-0.037072516977787,-0.0872767791152],[0.026189852505922,-0.097766295075417,0.041773650795221],[0.037963960319757,0.0013151076855138,-0.001484890235588]],[[0.029876815155149,0.0034988464321941,-0.006437303032726],[-0.066608384251595,-0.03787874057889,-0.086890950798988],[-0.028463466092944,0.059327881783247,0.00010820339957718]],[[-0.08806911110878,0.073694996535778,0.10764165967703],[0.057250060141087,-0.024863870814443,0.0676304474473],[-0.015907278284431,0.043336525559425,-0.037989214062691]],[[-0.047497190535069,0.079863183200359,-0.21582213044167],[0.056752122938633,-0.067327052354813,-0.16050297021866],[0.039572134613991,-0.0038681006990373,-0.057113170623779]],[[0.023151312023401,0.037938289344311,-0.026139250025153],[-0.0043394388630986,-0.016181208193302,-0.01017992477864],[-0.018401838839054,-0.0029337573796511,-0.05247463285923]],[[0.0039743832312524,0.052874229848385,-0.014129602350295],[0.036694779992104,0.018161687999964,0.012993175536394],[-0.052824005484581,0.019918374717236,-0.0067048948258162]],[[-0.018760839477181,0.015365528874099,0.068003788590431],[-0.007133923470974,-0.075120836496353,-0.038838185369968],[0.030967243015766,-0.18362255394459,0.015656376257539]],[[0.066969856619835,-0.024042772129178,0.083961226046085],[-0.0051132207736373,0.086351186037064,-0.059063628315926],[0.040735442191362,-0.0047376723960042,-0.051476042717695]],[[0.031039398163557,-0.02589919231832,0.00457698199898],[0.036467421799898,-0.062165126204491,0.011298445984721],[0.01404142100364,-0.01094847265631,0.01053159404546]],[[-0.029280444607139,0.082141429185867,0.0083927260711789],[0.0099837062880397,0.063943110406399,-0.028083203360438],[0.043472234159708,-0.11395239084959,-0.10907747596502]],[[-0.0036911531351507,0.064526677131653,0.013728548772633],[-0.094108141958714,0.062146972864866,-0.027104649692774],[-0.13965329527855,0.075480543076992,0.014420533552766]],[[0.092616952955723,0.062507927417755,0.0061378432437778],[0.0069305920042098,-0.0158930439502,-0.058348212391138],[-0.072481825947762,0.019071517512202,-0.065656311810017]],[[-0.016659734770656,-0.021925250068307,-0.047259818762541],[-0.00077942141797394,-0.0009906436316669,-0.12875236570835],[-0.012912916950881,0.033016990870237,0.015534467063844]]],[[[-0.039957214146852,-0.075954154133797,-0.082476317882538],[-0.021893084049225,-0.038424823433161,0.051953300833702],[-0.0053734271787107,-0.021662345156074,-0.012023608200252]],[[-0.037726365029812,-0.019332725554705,-0.021378960460424],[-0.029157366603613,-0.015986915677786,-0.0057201152667403],[-0.018796665593982,0.0080380216240883,0.006752657238394]],[[-0.042513061314821,-0.021064108237624,-0.0098260948434472],[0.011807519942522,-0.026544079184532,0.018152406439185],[-0.043147727847099,-0.056240782141685,-0.0072492244653404]],[[0.00017222668975592,0.090992636978626,-0.075542941689491],[0.004180661868304,-0.0075530968606472,-0.023690300062299],[0.072466716170311,0.055533479899168,-0.04019820690155]],[[-0.07998913526535,0.0026198676787317,0.0063881939277053],[0.0090669151395559,-0.061921879649162,-0.065452098846436],[0.017544742673635,0.062050223350525,0.073269434273243]],[[-0.084761135280132,0.092968702316284,0.061555925756693],[0.032152093946934,-0.13293339312077,0.043673608452082],[0.055112887173891,-0.20990417897701,-0.15787717700005]],[[-0.043865479528904,0.024382878094912,-0.0011477002408355],[0.05223136395216,-0.037465091794729,-0.005103818140924],[0.015601838938892,0.0053108218125999,-0.056658666580915]],[[0.051981925964355,0.0093761039897799,0.027664666995406],[-0.0021281696390361,0.0017634034156799,0.031300310045481],[-0.019297072663903,-0.078127086162567,-0.048483964055777]],[[-0.0086562158539891,0.020184757187963,0.035311050713062],[-0.024980591610074,-0.040949936956167,-0.04900636151433],[-0.010766502469778,-0.022918056696653,-0.013095240108669]],[[0.022068267688155,-0.0017419318901375,-0.059156876057386],[-0.010683983564377,0.048891358077526,-0.12215013802052],[0.036452796310186,-0.038804691284895,-0.013529858551919]],[[-0.017385248094797,0.025880118831992,-0.015995280817151],[-0.029870554804802,-0.087197735905647,0.026914512738585],[-0.090718746185303,-0.047408472746611,0.028313143178821]],[[-0.042090721428394,-0.019832691177726,-0.046994134783745],[0.0082934079691768,-0.026399035006762,0.0043557747267187],[0.029681768268347,-0.0068867816589773,-0.0042935060337186]],[[-0.01123930234462,-0.017659796401858,0.051494210958481],[0.024859171360731,-0.03904265165329,0.00072419771458954],[-0.031533930450678,0.024747027084231,-0.08311814814806]],[[0.084444895386696,-0.031726650893688,-0.0012808870524168],[0.042395934462547,-0.0052923015318811,0.048106964677572],[0.060009382665157,0.0096311001107097,-0.0092082777991891]],[[0.025417374446988,-0.063541978597641,0.043824091553688],[-0.01633589528501,0.081089079380035,0.02183629758656],[0.089632041752338,0.055506054311991,0.017102053388953]],[[0.058295521885157,0.027280695736408,0.052430830895901],[0.032628241926432,0.010549323633313,-0.068879626691341],[0.068664856255054,0.0626011043787,-0.0023647176567465]],[[0.011438398621976,0.019708875566721,0.049113556742668],[0.014350047335029,-0.021715980023146,0.034314699470997],[-0.00066092581255361,0.03419741615653,-0.020621277391911]],[[-0.010884423740208,0.0068364511243999,0.0053302189335227],[0.01713364943862,0.060129970312119,0.064947105944157],[-0.013126344420016,0.024874981492758,0.032827563583851]],[[-0.006051026750356,-0.085261821746826,-0.048421151936054],[-0.062713280320168,0.067171581089497,-0.03571542352438],[-0.0010745659237728,0.012031997554004,0.036477487534285]],[[-0.034678153693676,0.034047987312078,-0.028934847563505],[-0.050040170550346,0.046902138739824,0.028621859848499],[0.027224516496062,0.0248813778162,0.039976228028536]],[[-0.010536587797105,-0.020915614441037,0.067749604582787],[0.020314004272223,0.010407737456262,0.0064079421572387],[-0.069192811846733,0.0028463515918702,-0.092782542109489]],[[0.0050959563814104,-0.053031001240015,-0.047183439135551],[-0.019342366605997,-0.0011976974783465,-0.043062999844551],[0.0043576583266258,0.0043692854233086,-0.017756253480911]],[[-0.030150085687637,-0.042134676128626,-0.001530262758024],[0.010384637862444,0.084329381585121,-0.03206130489707],[-0.069489844143391,0.075269311666489,0.038000997155905]],[[-0.0018614658620209,-0.0023936340585351,0.0045952387154102],[-0.015551079064608,-0.030464630573988,-0.0065304469317198],[-0.064030699431896,-0.090359464287758,-0.055315602570772]],[[0.051895719021559,0.00089446257334203,0.040808506309986],[0.0026368559338152,-0.048786662518978,0.039704479277134],[0.017584869638085,0.0083175776526332,-0.0029606558382511]],[[0.02237731590867,0.010659255087376,-0.040329735726118],[0.028373848646879,0.0021346788853407,-0.030598601326346],[-0.016226872801781,-0.057514190673828,0.0097158504649997]],[[-0.06355307996273,-0.018478531390429,0.015629053115845],[-0.028147924691439,-0.0071018193848431,0.020562553778291],[0.053182259202003,0.060255941003561,0.030088154599071]],[[-0.12383694946766,0.025857487693429,0.042554397135973],[-0.058770004659891,-0.010215438902378,0.031751401722431],[-0.024914467707276,-0.030904069542885,-0.057031221687794]],[[-0.013936870731413,-0.03621481731534,0.051461547613144],[0.014709260314703,-0.05434811860323,-0.0010058770421892],[0.02602225355804,-0.073971875011921,0.020533218979836]],[[-0.051016222685575,-0.042544823139906,-0.0084860352799296],[-0.017790326848626,-0.048615716397762,-0.047545596957207],[-0.018198819831014,0.027134720236063,0.035765413194895]],[[-0.023622278124094,0.001142566325143,-0.016270210966468],[0.016386730596423,-0.063769593834877,0.011442008428276],[0.018191771581769,-0.013371124863625,-0.0093447025865316]],[[0.0097362641245127,-0.015807503834367,-0.017639355733991],[-0.014183959923685,-0.003906637430191,-0.056333120912313],[0.090262867510319,0.012228014878929,-0.021376922726631]],[[-0.012132718227804,0.011717569082975,-0.021245239302516],[0.029887618497014,-0.053294375538826,-0.093132473528385],[0.015922125428915,0.018056897446513,-0.063649140298367]],[[-0.063684448599815,-0.032596506178379,-0.017363280057907],[-0.043224632740021,-0.079581774771214,-0.015298310667276],[-0.036147560924292,0.03091493435204,0.044158544391394]],[[0.036819405853748,-0.0031932247802615,0.043821550905704],[0.055869653820992,0.064903751015663,-0.018220128491521],[-0.050696957856417,-0.10015201568604,-0.057431757450104]],[[-0.12638983130455,-0.027894657105207,0.02093394100666],[0.016245171427727,-0.083557300269604,0.038680989295244],[-0.089776046574116,-0.011634786613286,-0.042038660496473]],[[-0.033352382481098,-0.0054739359766245,-0.038675673305988],[-0.02225156314671,-0.034772984683514,0.044225540012121],[-0.0067367274314165,-0.0066729043610394,0.048475481569767]],[[-0.0091857919469476,-0.024309676140547,-0.016089322045445],[0.032627064734697,0.034644059836864,-0.022890236228704],[-0.019541952759027,-0.017620697617531,0.029681481420994]],[[-0.028969952836633,-0.017857665196061,-0.033435400575399],[-0.039845280349255,-0.028189372271299,0.038731995970011],[-0.00093538290821016,0.015913665294647,0.027046894654632]],[[-0.073659434914589,-0.045556351542473,0.057579953223467],[-0.026976620778441,-0.0090272491797805,-0.013087703846395],[0.0025876048021019,-0.00087739451555535,-0.029515149071813]],[[-0.04808946326375,-0.0207479018718,-0.040451869368553],[-0.032440923154354,0.045084930956364,0.016742771491408],[0.022372949868441,0.076081648468971,0.011874407529831]],[[0.020908191800117,0.03597280010581,0.07578606903553],[-0.034082610160112,-0.065028518438339,0.01486743055284],[-0.0034302317071706,-0.040336731821299,-0.00069272250402719]],[[0.035085942596197,-0.010042536072433,-0.021647861227393],[0.00062787474598736,0.030485898256302,-0.0014127355534583],[0.047977034002542,-0.064153924584389,0.0026086594443768]],[[0.024772312492132,0.025448095053434,0.001936222310178],[-0.069571055471897,-0.061447877436876,0.00080591806909069],[-0.051016394048929,-0.029279351234436,-0.0099122636020184]],[[-0.051684185862541,-0.025080503895879,-0.040683187544346],[0.043123688548803,0.026251148432493,0.013533227145672],[-0.016135081648827,-0.048197966068983,0.052197951823473]],[[-0.0051563582383096,-0.025401264429092,-0.080005154013634],[0.012512002140284,-0.0015428349142894,-0.0054880557581782],[-0.020546028390527,0.0059251310303807,-0.066329039633274]],[[-0.11815312504768,-0.031217057257891,-0.0053629986941814],[-0.081850007176399,-0.052582185715437,-0.0048099895939231],[0.002356298500672,-0.071902610361576,-0.020092053338885]],[[-0.042124625295401,0.016066215932369,-0.025228230282664],[-0.02086178585887,0.0066210385411978,-0.0385184250772],[-0.03328849747777,0.032457508146763,-0.0016111233271658]],[[0.018360072746873,0.018506726250052,-0.046690579503775],[-0.019564351066947,0.031747180968523,-0.022067107260227],[-0.096430614590645,-0.049941617995501,-0.021232284605503]],[[-0.028662044554949,0.10176180303097,-0.061937011778355],[-0.1077810972929,-0.022986024618149,-0.071481257677078],[-0.047517597675323,0.06394898891449,0.037020333111286]],[[0.0020660376176238,0.013728120364249,-0.026449717581272],[-0.014722442254424,0.0022503016516566,-0.040616948157549],[0.020451812073588,-0.040551651269197,-0.017960609868169]],[[0.027807030826807,-0.04229548946023,-0.013176826760173],[-0.0088916076347232,0.019962459802628,0.023169174790382],[-0.01393361389637,-0.0013422054471448,0.0041975579224527]],[[-0.024878954514861,-0.041803583502769,0.011958690360188],[0.018036343157291,-0.00050554564222693,-0.00015941668243613],[-0.010047594085336,0.045239325612783,0.0068314042873681]],[[0.04696012288332,0.053086169064045,0.072259113192558],[-0.048786625266075,0.091337442398071,0.043677765876055],[0.0015327265718952,0.055445719510317,0.0089750168845057]],[[0.0087684644386172,-0.0040092458948493,0.006530859041959],[0.0092488387599587,-0.038057498633862,-0.027839822694659],[0.026321003213525,-0.019989838823676,0.0086839022114873]],[[-0.031201492995024,-0.028791194781661,0.080662332475185],[0.021957034245133,-0.086024314165115,-0.066789224743843],[0.036578483879566,-0.038062281906605,-0.027781995013356]],[[-0.067410759627819,-0.038341224193573,-0.019729917868972],[-0.0012025735341012,-0.020381225273013,-0.049964666366577],[-0.028728146106005,0.030806330963969,-0.003953299485147]],[[-0.025095790624619,-0.01080231461674,-0.017264248803258],[-0.015472501516342,-0.090431161224842,-0.062770776450634],[-0.024247931316495,-0.056215889751911,-0.10263397544622]],[[-0.027448337525129,0.037213861942291,-0.033850703388453],[-0.072425469756126,0.011566309258342,-0.083530731499195],[0.077688321471214,0.013687456026673,0.058586925268173]],[[0.042871721088886,0.050687819719315,-0.0035500666126609],[-0.023658499121666,-0.055360049009323,-0.016766166314483],[-0.022851107642055,0.048857167363167,0.022275187075138]],[[0.0015395723748952,-0.0402447655797,0.023219766095281],[0.029057214036584,0.063344940543175,0.060838457196951],[-4.5974811655469e-05,-0.029847839847207,-0.062895439565182]],[[0.0075412383303046,-0.054257314652205,-0.12385328859091],[-0.038781236857176,0.053845155984163,-0.05299986153841],[0.0090604573488235,0.0082928705960512,-0.022828038781881]],[[-0.058947958052158,-0.021219808608294,-0.0026339353062212],[-0.015540552325547,0.0094788987189531,-0.0036811509635299],[0.036848343908787,-0.028467191383243,-0.010503460653126]],[[-0.069603376090527,0.069892019033432,0.013792118057609],[0.0064551127143204,-0.09496270865202,-0.034645475447178],[-0.029100241139531,0.02326899394393,-0.036515742540359]]],[[[0.011549681425095,0.026247443631291,-0.0089225368574262],[0.04550601541996,-0.00062137446366251,-0.038456592708826],[0.020683446899056,0.036664161831141,0.037413071841002]],[[-0.001714916084893,-0.0077665075659752,0.021623495966196],[0.042939741164446,0.015800749883056,-0.020636964589357],[0.0013508962001652,-0.031650949269533,-0.048084802925587]],[[-0.052347782999277,0.003165997331962,-0.042460560798645],[0.0026594144292176,-0.027998382225633,0.032566651701927],[0.041831590235233,-0.070869892835617,-0.0059204213321209]],[[-0.098524622619152,0.017615249380469,-0.025103708729148],[-0.023134047165513,0.036353908479214,-0.022910946980119],[0.042503755539656,0.062282152473927,-0.075006522238255]],[[-0.012978316284716,-0.063559606671333,-0.037364650517702],[0.064545080065727,-0.044227842241526,-0.047475900501013],[-0.03733666986227,0.020926266908646,0.017216889187694]],[[-0.00035294250119478,-0.02819056250155,-0.043770898133516],[-0.19521076977253,0.041426137089729,0.033275857567787],[0.062593095004559,-0.010371626354754,0.028517859056592]],[[-0.043148938566446,-0.078978434205055,-0.032784614712],[-0.0059829843230546,-0.035033229738474,-0.023793814703822],[-0.0073289186693728,0.013265855610371,0.056320879608393]],[[0.011693846434355,0.054343041032553,-0.05075653642416],[0.040987450629473,0.044902503490448,0.13226316869259],[0.010631963610649,-0.00020179111743346,0.041990995407104]],[[0.020103489980102,0.016260106116533,-0.0039931749925017],[-0.029748504981399,-0.031706634908915,-0.0058504682965577],[-0.012138209305704,-0.024282980710268,-0.019431073218584]],[[-0.028745563700795,-0.0099639752879739,0.0017472440376878],[0.0020420080982149,-0.0037368235643953,0.0073073231615126],[0.0072027291171253,-0.043508492410183,-0.0061382343992591]],[[0.052553866058588,-0.029549056664109,-0.049391757696867],[-0.047061156481504,-0.0079600792378187,-0.036352843046188],[-0.013951097615063,-0.079252704977989,0.0016901697963476]],[[-0.04230847209692,-0.036982078105211,-0.0057960646227002],[-0.050797946751118,0.039154943078756,-0.015283029526472],[0.041422788053751,-0.019169306382537,0.087923981249332]],[[0.010814627632499,-0.037652723491192,-0.091341368854046],[0.0067832977510989,-0.12615914642811,-0.01991388015449],[-0.015715328976512,-0.059847962111235,-0.033876061439514]],[[0.0020922946278006,0.009006773121655,0.14372415840626],[-0.015592090785503,-0.073246218264103,0.015326814725995],[-0.061638738960028,-0.10029987245798,-0.027090448886156]],[[0.090995222330093,0.014054132625461,0.064582020044327],[0.041941683739424,-0.023937437683344,-0.014692776836455],[-0.0064528086222708,0.072796747088432,0.093356497585773]],[[-0.05872979387641,-0.11358588933945,-0.044311948120594],[-0.018071720376611,-0.032277334481478,0.00074027047958225],[0.041943464428186,-0.010714624077082,-0.0046318639069796]],[[-0.0039887032471597,0.074218846857548,0.019059443846345],[0.041397489607334,0.059546738862991,0.068161405622959],[0.092742525041103,0.10109407454729,0.11503545194864]],[[-0.035570628941059,-0.029793752357364,-0.069399744272232],[-0.052134715020657,0.092905104160309,-0.00019418200827204],[0.013376327231526,0.051167447119951,0.070636570453644]],[[-0.042689498513937,0.010158327408135,-0.065577909350395],[-0.082216061651707,0.032260090112686,-0.030586339533329],[0.015458393841982,0.0022062272764742,-0.016326036304235]],[[0.041414648294449,0.0083733545616269,0.015031273476779],[0.023674979805946,0.00020429065625649,0.061388574540615],[-0.045518681406975,-0.0071112080477178,0.02601682394743]],[[0.023939751088619,-0.04607080668211,-0.00060701312031597],[0.013745724223554,-0.028851725161076,-0.060671918094158],[-0.03562980890274,-0.10271823406219,-0.036895558238029]],[[-0.042813919484615,0.015687067061663,-0.013327769935131],[0.0095909731462598,-0.01775012165308,-0.074864745140076],[0.024559464305639,-0.020016441121697,-0.039369162172079]],[[0.024231057614088,-0.045206878334284,-0.054621372371912],[0.026214921846986,-0.0066375932656229,-0.0361567735672],[0.019941980019212,0.034629236906767,0.026517689228058]],[[0.0051587480120361,-0.043116874992847,-0.0077511114068329],[-0.037615172564983,0.038871187716722,-0.03017501719296],[0.0054779569618404,-0.040483351796865,0.042903229594231]],[[0.026100380346179,0.065997689962387,0.026344388723373],[0.041866928339005,0.032485730946064,0.041386347264051],[0.072011820971966,0.024446403607726,-0.0011590024223551]],[[0.023563403636217,0.016814276576042,0.014407550916076],[0.056549809873104,-0.024904081597924,0.032832078635693],[0.016353884711862,-0.033953245729208,-0.0057213301770389]],[[-0.032320529222488,-0.029064178466797,-0.061086680740118],[-0.071693778038025,0.018529422581196,0.017645014449954],[0.065186008810997,0.054620206356049,0.0021665543317795]],[[-0.018933996558189,0.058487594127655,0.050491776317358],[-0.042797736823559,-0.0089983521029353,-0.044117778539658],[-0.083286374807358,-0.016031531617045,-0.03827253729105]],[[-0.07550336420536,-0.0096101453527808,-0.083098776638508],[-0.044640526175499,-0.0085763083770871,-0.0087909400463104],[-0.063368126749992,0.028779217973351,-0.062929086387157]],[[-0.068322315812111,0.030530234798789,0.019444536417723],[-0.0018808695022017,0.007782491389662,-0.004342732951045],[-0.036217637360096,0.019575914368033,0.015532148070633]],[[0.0098341088742018,-0.072783805429935,-0.078388728201389],[0.058536518365145,0.014587808400393,-0.0015632130671293],[0.025885591283441,0.024873342365026,-0.011113689281046]],[[-0.034810446202755,-0.013112328015268,-0.069265529513359],[-0.00083117437316105,-0.027076236903667,0.026508059352636],[0.066441833972931,0.0060775689780712,-0.034027975052595]],[[0.01199169550091,-0.054114833474159,0.034369569271803],[0.004812334664166,0.0228032451123,0.0068803378380835],[0.0090371277183294,0.011299406178296,-0.026967771351337]],[[-0.00081200641579926,0.017474357038736,-0.0025437828153372],[0.016453839838505,-0.025128854438663,-0.030973335728049],[-0.042256101965904,-0.0084414128214121,-0.032781600952148]],[[-0.0022131085861474,-0.012519221752882,0.095007158815861],[-0.021741181612015,0.11975695937872,0.036201652139425],[0.0027792549226433,-0.00048635408165865,-0.013881588354707]],[[-0.0041230516508222,-0.053078010678291,-0.073651105165482],[-0.084304183721542,0.0034836360719055,0.0083536710590124],[-0.022902622818947,0.0060647698119283,0.072420962154865]],[[-0.096869632601738,0.0071865827776492,-0.044432569295168],[0.021245105192065,-0.060177389532328,-0.0025977217592299],[0.0037617441266775,-0.018676644191146,0.033617943525314]],[[0.0043474822305143,-0.10967962443829,-0.068691313266754],[0.049103427678347,0.058321800082922,0.076434805989265],[0.023470574989915,0.075561739504337,-0.027379877865314]],[[-0.046296339482069,-0.028208684176207,-0.016543222591281],[-0.071641400456429,-0.02336123213172,-0.017159432172775],[-0.034286443144083,0.028483174741268,-0.085799895226955]],[[-0.013580719009042,-0.048093125224113,-0.051247540861368],[0.024601209908724,-0.024836525321007,0.018018862232566],[0.0074394079856575,-0.0052780294790864,-0.0011214093538001]],[[-0.012966551817954,-0.13111443817616,0.036047831177711],[-0.0068686506710947,-0.066770382225513,0.1721399128437],[-0.036808833479881,0.077473111450672,0.039019901305437]],[[-0.029647016897798,0.030766578391194,0.05893387272954],[0.051680874079466,0.045808747410774,0.022247333079576],[0.067219883203506,-0.034609504044056,0.019127253443003]],[[0.024993151426315,-0.0047221374697983,-0.033573135733604],[-0.015414813533425,0.033040151000023,0.046703513711691],[0.090719364583492,0.01764627918601,0.036252222955227]],[[0.033162262290716,0.10597078502178,-0.026079304516315],[-0.012733889743686,-0.072136580944061,-0.02766066044569],[0.023762624710798,0.011358019895852,0.02631519921124]],[[0.0082727735862136,0.027206059545279,-0.0067814160138369],[-0.012639561668038,-0.043585103005171,0.042032703757286],[0.016161793842912,-0.026659300550818,-0.020917454734445]],[[0.092981241643429,-0.028158728033304,-0.017359893769026],[0.00082498718984425,0.07023973762989,0.014631615020335],[0.016174212098122,-0.007813822478056,-0.019005302339792]],[[0.016997156664729,-0.03383319824934,-0.00028417131397873],[-0.058418557047844,-0.049914259463549,-0.022685412317514],[0.017937622964382,0.07827240973711,0.033536784350872]],[[-0.06182000413537,0.044280987232924,-0.050372969359159],[0.054710820317268,0.073497518897057,0.025140799582005],[0.022293504327536,0.083390101790428,0.012166978791356]],[[0.027786254882812,0.055581238120794,-0.017607320100069],[0.015303683467209,0.064686566591263,-0.012431611306965],[0.014980629086494,0.0092717409133911,-0.0018545809434727]],[[0.00015353281924035,0.044086564332247,0.024735033512115],[0.01351654343307,0.035726178437471,-0.0041472748853266],[-0.036904852837324,-0.028674757108092,0.0098451552912593]],[[-0.077665969729424,-0.070604510605335,-0.018479704856873],[-0.043609440326691,-0.0065390975214541,-0.036766264587641],[-0.0088642928749323,-0.038267843425274,-0.00035100770764984]],[[0.02067762054503,0.035632763057947,0.032787412405014],[0.027226608246565,-0.0065223234705627,0.0098271807655692],[0.12666392326355,-0.021531447768211,-0.088976077735424]],[[0.10046938061714,0.044518880546093,-0.008359532803297],[0.01369253359735,0.089870788156986,0.02335174754262],[0.070855475962162,0.08352667838335,-0.015535875223577]],[[0.035534430295229,-0.0027494241949171,0.12346468865871],[0.045874107629061,-0.0027854789514095,0.067245364189148],[0.026806076988578,-0.032785590738058,0.0090589402243495]],[[-0.0050455089658499,-0.0015985263744369,-0.048935171216726],[0.0088415900245309,-0.0040054433047771,0.020568447187543],[0.035662852227688,-0.014443945139647,0.048347156494856]],[[0.043401047587395,-0.066341556608677,0.11079194396734],[0.043193686753511,0.0036470850463957,-0.044293574988842],[0.0097736874595284,-0.047232616692781,-0.042345263063908]],[[-0.028969405218959,-0.086480483412743,-0.065293483436108],[0.0023183925077319,0.022960543632507,-0.037118814885616],[0.025204353034496,-0.023778531700373,-0.061694581061602]],[[-0.029480688273907,-0.0006197948823683,-0.0031753508374095],[-0.017811853438616,0.0074412296526134,-0.0018459459533915],[-0.012436779215932,0.016091134399176,-0.10081994533539]],[[-0.037275791168213,0.011139323934913,-0.018820183351636],[-0.033010669052601,0.012559501454234,0.17562979459763],[0.062795169651508,0.055989425629377,0.1153326779604]],[[-0.0049784728325903,0.081956833600998,0.11110504716635],[0.020192284137011,-0.010205586440861,-0.018458839505911],[-0.042781800031662,-0.013044033199549,-0.047030989080667]],[[0.028000973165035,-0.017945770174265,-0.0042721703648567],[-0.0015110286185518,0.044715777039528,0.021907517686486],[0.038709316402674,0.06669607013464,0.023838782683015]],[[0.04514267668128,0.037729982286692,0.0047476547770202],[0.057648900896311,-0.059999965131283,-0.083274610340595],[0.031044209375978,-0.010433514602482,-0.034065894782543]],[[0.018291410058737,-0.014425716362894,0.027669034898281],[0.02070801705122,0.0087137781083584,-0.012562002055347],[-0.017935087904334,-0.021480182185769,0.0045531149953604]],[[-0.066717468202114,-0.0020206465851516,-0.029705710709095],[-0.022093256935477,-0.041668049991131,0.076521426439285],[-0.0017060873797163,-0.013985224068165,0.051524363458157]]],[[[0.0089649008587003,0.073587901890278,-0.018704317510128],[-0.026703547686338,-0.057000640779734,-0.023750504478812],[0.05398977547884,-0.0061293700709939,0.036990523338318]],[[-0.058839183300734,0.0098846303299069,-0.01034171693027],[0.033699873834848,-0.019725758582354,0.02126619964838],[0.029437221586704,-0.013826249167323,0.018937146291137]],[[0.009638580493629,-0.0078282672911882,-0.061560671776533],[0.033973503857851,-0.023977164179087,-0.048107128590345],[0.011641247197986,0.030609669163823,-0.022718710824847]],[[-0.0067022508010268,-0.024122223258018,-0.026366930454969],[-0.02304476685822,-0.086885184049606,-0.029376259073615],[-0.027159878984094,-0.0094951139762998,0.058282423764467]],[[-0.03685674443841,0.017507333308458,0.0039906036108732],[0.013559306040406,-0.053004153072834,-0.02048933878541],[-0.014075502753258,-0.030543746426702,-0.01739134080708]],[[-0.099522843956947,0.076084442436695,-0.063809722661972],[0.037281952798367,0.047086350619793,-0.05978113040328],[-0.0052657299675047,0.038335889577866,0.063151188194752]],[[-0.043069291859865,0.011549665592611,0.020777499303222],[-0.046710398048162,-0.033096950501204,0.014641198329628],[0.0096290912479162,-0.010390507988632,-0.0062419683672488]],[[-0.060555476695299,0.082123525440693,0.020678305998445],[0.066565074026585,0.044273465871811,0.035503573715687],[0.015957567840815,-0.040608678013086,0.047324817627668]],[[-0.12058228254318,0.0014488507295027,-0.017287064343691],[-0.060234021395445,-0.077035203576088,0.025693392381072],[-0.019525963813066,0.0033711530268192,-0.070818088948727]],[[0.067678354680538,-0.027263237163424,-0.0091331852599978],[-0.018536107614636,-0.086079403758049,-0.026220040395856],[0.033785603940487,-0.01861672103405,-0.1089364439249]],[[-0.058389931917191,-0.039284188300371,-0.012891517020762],[0.0063886307179928,-0.075210690498352,-0.012637316249311],[0.054077904671431,0.041465505957603,-0.0091348122805357]],[[-0.0014061399269849,-0.057723820209503,-0.0023850719444454],[-0.038540184497833,-0.051614180207253,-0.025541955605149],[0.005017701536417,-0.021145129576325,0.0012289171572775]],[[0.049033366143703,0.090646795928478,0.046493731439114],[-0.016271473839879,0.012778637930751,-0.046628925949335],[-0.02199736610055,0.011161231435835,-0.057638309895992]],[[-0.0094150742515922,0.080955728888512,0.0060316594317555],[0.0040960274636745,0.042224664241076,0.043544624000788],[-0.011867012828588,0.058744173496962,0.027896357700229]],[[-0.051570728421211,-0.0091020260006189,0.062531508505344],[0.090011261403561,-0.024623418226838,0.011871296912432],[0.028075935319066,0.20340624451637,0.016705701127648]],[[-0.025518029928207,-0.033157307654619,-0.05272363871336],[-0.029879691079259,-0.021952060982585,-0.097410276532173],[0.081623606383801,-0.075847469270229,-0.014926064759493]],[[0.036798369139433,-0.047746021300554,-0.019795011729002],[0.1169804930687,0.066608272492886,0.048855803906918],[0.01500731986016,-0.026892945170403,-0.048578299582005]],[[-0.0072656371630728,0.056118424981833,0.034164160490036],[-0.042028859257698,-0.074879288673401,0.059706743806601],[0.01695260964334,-0.0031186728738248,0.0059967464767396]],[[0.028533974662423,-0.072855204343796,0.029174895957112],[-0.030477238819003,0.023789310827851,-0.0023318391758949],[0.027120806276798,-0.0013062552316114,-0.036694843322039]],[[0.025718251243234,0.037985883653164,-0.072673551738262],[0.092588827013969,-0.0039276904426515,0.012019081041217],[0.0031780260615051,-0.019577985629439,-0.033307921141386]],[[0.028046723455191,0.049594428390265,0.0011011918541044],[-0.0042456788942218,-0.021280454471707,-0.014259433373809],[0.043030831962824,-0.016886293888092,0.096633747220039]],[[-0.033173639327288,-0.025539087131619,-0.033612310886383],[-0.018168998882174,-0.048079337924719,0.030783277004957],[-0.021542282775044,-0.018920253962278,0.001723121968098]],[[0.053280774503946,-0.076023958623409,0.024434944614768],[-0.032052595168352,-0.0063960961997509,-0.01339814811945],[-0.014412638731301,0.016154486685991,0.051666937768459]],[[-0.02248802781105,0.062646068632603,-0.047124058008194],[0.094079293310642,0.0037215985357761,-0.068717963993549],[-0.035923104733229,0.0052878125570714,-0.14755347371101]],[[-0.034343414008617,0.055344227701426,0.031600419431925],[0.013705413788557,0.00031936098821461,0.011151324026287],[0.068597204983234,0.0033367958385497,0.05153850838542]],[[0.061170369386673,0.05796654522419,-0.0021577591542155],[0.00027625815710053,0.032724663615227,0.060160212218761],[-0.014607771299779,-0.075070589780807,-0.074952848255634]],[[-0.05919124558568,0.011388227343559,0.0013408088125288],[-0.0170366037637,-0.04347263649106,-0.038964819163084],[-0.027048837393522,0.01950329169631,0.016006734222174]],[[-0.018474590033293,-0.0825335085392,0.082226946949959],[-0.031139366328716,-0.073847696185112,-0.063483327627182],[-0.040247637778521,-0.061602644622326,0.037874784320593]],[[0.0026933713816106,0.0052958065643907,0.022915728390217],[-0.055968295782804,-0.047393891960382,0.032234400510788],[0.01959522254765,-0.070216797292233,-0.060773622244596]],[[0.050521492958069,0.067577801644802,-0.04427782073617],[0.030625957995653,0.077840477228165,-0.079314887523651],[0.054314468055964,0.0023831492289901,-0.0072828088887036]],[[0.034028925001621,-0.031557969748974,-0.0094561474397779],[0.020120196044445,-0.011329622007906,-0.090685181319714],[-0.0071416758000851,0.060697659850121,0.10632292181253]],[[-0.055386535823345,-0.02306023798883,0.038018111139536],[-0.12367728352547,0.027928555384278,0.032393220812082],[-0.17523834109306,0.046716034412384,-0.043945271521807]],[[0.098024792969227,0.042502071708441,0.18003597855568],[-0.058103628456593,-0.0021036055404693,0.053685870021582],[-0.16767902672291,-0.099872939288616,-0.073929071426392]],[[0.047199048101902,0.045309942215681,0.02082340605557],[0.075050450861454,-0.019175203517079,-0.02408529818058],[0.043205138295889,-0.023002484813333,-0.17975863814354]],[[0.017534717917442,-0.0048384675756097,-0.031290419399738],[0.044099003076553,0.00068603141698986,0.032131679356098],[0.043862618505955,-0.080128684639931,-0.087689347565174]],[[-0.07321459800005,-0.009690030477941,-0.013292448595166],[-0.046381626278162,0.043236404657364,-0.0024239448830485],[0.056529514491558,-0.011305143125355,-0.0099898418411613]],[[0.025955975055695,0.028679067268968,0.037246935069561],[-0.013811599463224,0.0032903794199228,-0.0090958951041102],[0.022936066612601,-0.041491914540529,0.011906639672816]],[[0.068591728806496,-0.029565373435616,-0.016952887177467],[-0.015287926420569,0.1383538544178,0.1272389292717],[-0.065748438239098,-0.072603464126587,-0.10553237050772]],[[0.060335397720337,-0.020649323239923,-0.074726358056068],[-0.060826431959867,-0.026209814473987,-0.049710940569639],[-0.072800509631634,-0.067576207220554,-0.024644758552313]],[[0.051908385008574,-0.022834533825517,0.036652106791735],[0.058771543204784,-0.021596981212497,-0.090571649372578],[-0.038493379950523,-0.088643498718739,0.010476914234459]],[[-0.0543546192348,-0.065176576375961,-0.048193860799074],[0.048147186636925,-0.01375412940979,0.0045730187557638],[-0.0017431274754927,-0.026916034519672,0.030897391960025]],[[-0.059608951210976,0.010157362557948,-0.049814149737358],[-0.11695700138807,-0.11912117898464,-0.0042160074226558],[-0.087527386844158,0.06030984967947,0.01887284219265]],[[-0.038890987634659,-0.064391493797302,0.13337521255016],[-0.063390128314495,0.064121775329113,0.067773297429085],[0.034217443317175,0.020292975008488,0.042244888842106]],[[-0.011203463189304,0.045315589755774,-0.0034239026717842],[0.0029138212557882,-0.046106778085232,0.029404638335109],[-0.017575062811375,-0.014562305994332,-0.12191923707724]],[[0.061393864452839,-0.045739773660898,-0.04365635663271],[-0.017810260877013,0.010523095726967,-0.020997723564506],[0.03604369983077,0.0041592582128942,-0.043542038649321]],[[-0.0040169544517994,-0.013400149531662,-0.01667533069849],[0.033880285918713,0.010383737273514,-0.051455963402987],[-0.09089794754982,-0.042795244604349,0.035180971026421]],[[-0.037325277924538,-0.010787109844387,0.050629209727049],[0.031184492632747,0.091686375439167,0.038295190781355],[0.00098428374622017,-0.10525370389223,-0.096448585391045]],[[0.061494961380959,-0.042166963219643,-0.013927232474089],[-9.2230238806223e-06,0.027852004393935,-0.048010990023613],[-0.024246862158179,0.023129068315029,-0.00090985069982708]],[[0.02344461902976,0.030359826982021,0.020591555163264],[-0.059595707803965,-0.0027725175023079,-0.01885805465281],[0.033727638423443,-0.093005083501339,0.013770650140941]],[[-0.067696303129196,-0.083375312387943,-0.079479992389679],[0.00458102254197,0.0014325397787616,0.0045203813351691],[0.038249064236879,0.0088945776224136,-0.057340513914824]],[[0.027456007897854,-0.0056445533409715,0.028234513476491],[-0.029697773978114,-0.01009173784405,-0.074400089681149],[0.039799220860004,-0.045943327248096,0.00012421130668372]],[[-0.086674943566322,0.015988813713193,0.077355667948723],[0.063339121639729,-0.0064946468919516,0.0025919619947672],[0.023089284077287,0.025774784386158,-0.03660275042057]],[[-0.081801578402519,-0.014386421069503,-0.046584527939558],[-0.014932548627257,0.051703836768866,-0.0052395733073354],[-0.045726139098406,0.019064029678702,-0.0071760751307011]],[[0.12765315175056,0.076608784496784,0.010877730324864],[0.029432641342282,0.10845675319433,0.067964315414429],[0.011250552721322,0.11213627457619,0.023352243006229]],[[0.051388707011938,-0.028064677491784,0.056895058602095],[-0.0070159710012376,0.05031219497323,0.050739783793688],[-0.075852304697037,-0.064123742282391,-0.004359140060842]],[[-0.083747357130051,-0.0066230036318302,0.0026766746304929],[-0.07101533561945,-0.012000621296465,-0.06231352686882],[-0.040883101522923,0.0077498876489699,-0.037482924759388]],[[-0.03946141526103,-0.049463260918856,-0.0093016708269715],[-0.016212146729231,-0.04153585806489,0.0027015765663236],[-7.4001887696795e-05,0.0122912209481,-0.0134651446715]],[[0.0038917814381421,-0.0060970750637352,-0.021098412573338],[0.029819369316101,0.085497058928013,-0.066454976797104],[0.0073946872726083,-0.017771515995264,-0.061302218586206]],[[-0.0082615464925766,-0.072321847081184,-0.036771561950445],[-0.051658205688,0.022185256704688,0.099640063941479],[-0.018936662003398,0.016113378107548,0.063407108187675]],[[-0.0080649089068174,0.042298868298531,-0.0048056012019515],[0.010445152409375,0.061819117516279,-0.033571589738131],[0.044625002890825,-0.028300207108259,0.0083716763183475]],[[0.032900992780924,0.03870153427124,0.018521428108215],[-0.03610335290432,0.0015725382836536,-0.0407286696136],[0.0098235374316573,-0.066148370504379,-0.077535651624203]],[[-0.063911452889442,0.029969705268741,0.025700230151415],[-0.0037775028031319,-0.02805352024734,-0.023891016840935],[0.022691475227475,-0.0034530174452811,-0.012428900226951]],[[-0.0094805425032973,-0.052485998719931,0.045184075832367],[-0.032409243285656,-0.0032274022232741,0.048332553356886],[0.046877350658178,-0.061931416392326,-0.047811225056648]],[[0.070158712565899,0.045227814465761,0.038718700408936],[0.050015915185213,-0.046698372811079,-0.062868170440197],[0.026543626561761,0.0096539333462715,-0.020429683849216]]],[[[0.14099858701229,-0.079077430069447,-0.063266716897488],[0.018424108624458,0.078831017017365,-0.0018620868213475],[-0.0086681982502341,0.044366113841534,0.12005933374166]],[[0.076497331261635,-0.16141819953918,0.14971429109573],[0.031604122370481,-0.20325900614262,-0.043130379170179],[0.021612463518977,0.080300748348236,-0.064089946448803]],[[0.015708830207586,0.030148250982165,-0.050654333084822],[-0.055364076048136,0.017163509503007,-0.069099478423595],[-0.05111288279295,0.017974127084017,-0.076974764466286]],[[-0.027434030547738,-0.0093383779749274,-0.061492320150137],[-0.046789143234491,0.03584199398756,-0.017033468931913],[0.09196962416172,-0.039375774562359,-0.043645169585943]],[[-0.057991158217192,0.14681918919086,0.054264727979898],[0.036712784320116,-0.076362051069736,0.0023757708258927],[0.010479390621185,-0.071255095303059,-0.1356502622366]],[[-0.013113065622747,-0.034097000956535,0.14431521296501],[-0.079321339726448,-0.039128050208092,-0.024912988767028],[0.11230693757534,-0.038715660572052,0.0032732067629695]],[[-0.053008124232292,-0.029556341469288,-0.0010078180348501],[0.050210818648338,-0.038942016661167,-0.060051117092371],[0.021249396726489,0.020390044897795,0.050245068967342]],[[-0.0099126230925322,-0.11685290187597,0.025034273043275],[0.083177708089352,0.01118969079107,0.071243777871132],[0.10784512013197,0.071590691804886,0.041224475950003]],[[0.0081997681409121,-0.10758771747351,0.091957956552505],[-0.035479102283716,0.083403706550598,0.0598469004035],[-0.019718421623111,-0.078187622129917,-0.095301933586597]],[[0.097406804561615,-0.043615393340588,0.047884617000818],[0.0074389660730958,0.0086787259206176,0.024040387943387],[0.099826157093048,-0.030900742858648,-0.050550200045109]],[[-0.0008188656065613,-0.0090403845533729,-0.1467999368906],[0.010549085214734,0.14899176359177,0.036995701491833],[-0.086892627179623,0.09040267765522,0.050153139978647]],[[0.032175995409489,0.0030731603037566,-0.04774558916688],[-0.064371407032013,-0.0095510967075825,0.04258843883872],[0.040058471262455,0.054968904703856,0.053794097155333]],[[-0.078621387481689,0.027066821232438,0.0019634359050542],[-0.023352986201644,-0.093585900962353,0.0027032676152885],[0.069431006908417,-0.25720176100731,-0.024350667372346]],[[-0.036879952996969,-0.014746109955013,0.0086512779816985],[-0.1983647197485,0.014894493855536,-0.054656732827425],[-0.08835294097662,-0.056995455175638,0.044122342020273]],[[-0.055420894175768,0.021710036322474,-0.021319897845387],[0.012117411009967,-0.079948596656322,-0.098162353038788],[0.017808254808187,-0.034104157239199,-0.060154866427183]],[[-0.065217956900597,0.0052352915517986,0.069310672581196],[-0.047334119677544,-0.07205943018198,0.052777338773012],[-0.025361364707351,0.031304348260164,-0.002238865243271]],[[-0.053790017962456,0.13323076069355,-0.10646036267281],[-0.052921030670404,-0.0035287188366055,-0.073083870112896],[-0.0082664992660284,-0.11799095571041,-0.024392010644078]],[[0.010192417539656,-0.14282415807247,-0.026582827791572],[0.034504637122154,-0.059199374169111,-0.038090594112873],[0.056107878684998,0.046531680971384,0.011274029500782]],[[-0.044399570673704,-0.057296499609947,-0.016988283023238],[0.0082747573032975,-0.079067647457123,0.016779918223619],[-0.0062163271941245,-0.07326815277338,-0.036470990628004]],[[-0.10696547478437,0.067165143787861,-0.087881498038769],[-0.027346469461918,0.03163780644536,0.074877813458443],[-0.070137210190296,-0.013721121475101,0.0032798005267978]],[[0.13791237771511,0.12153209745884,-0.12010082602501],[-0.013052861206234,0.002242871792987,-0.09512023627758],[0.075074970722198,0.16673867404461,0.072642162442207]],[[0.12190667539835,0.082427680492401,0.12552104890347],[-0.052871398627758,-0.062672920525074,-0.01157786604017],[0.006161343306303,-0.17524056136608,-0.085717096924782]],[[0.015541405417025,-0.034167658537626,-0.057412099093199],[0.021692428737879,0.0080955466255546,-0.038166116923094],[0.027108328416944,0.03306008130312,0.0048535908572376]],[[0.012641796842217,-0.059238504618406,0.033788695931435],[-0.10183376818895,-0.027162773534656,-0.018894741311669],[0.048472814261913,0.0073225535452366,-0.010615650564432]],[[0.071893788874149,0.0030760313384235,-0.013355718925595],[-0.0020395517349243,0.16905373334885,-0.1296569108963],[0.017412459477782,-0.0088093318045139,0.064837507903576]],[[0.05495248734951,0.0031019740272313,0.060430705547333],[0.0280885938555,0.097430102527142,0.010396046563983],[0.044203825294971,-0.091931454837322,0.05877285823226]],[[-0.021041378378868,-0.13364517688751,0.0066144587472081],[-0.023413872346282,-0.12702806293964,-0.027116008102894],[-0.0092012658715248,-0.13622789084911,-0.0889907553792]],[[-0.022360542789102,0.081053622066975,0.013503673486412],[0.0088686533272266,0.053056459873915,0.017513759434223],[-0.079242460429668,-0.00058258348144591,0.11686444282532]],[[-0.016120532527566,0.0017723425989971,0.042739149183035],[0.042691506445408,0.011687734164298,-0.0011219187872484],[-0.012842756696045,-0.039308171719313,-0.0025461465120316]],[[-0.036807380616665,0.061500385403633,-0.0019432350527495],[-0.010486708022654,-0.0026214821264148,-0.085823990404606],[-0.034838747233152,0.043193887919188,0.034331876784563]],[[0.017971951514482,-0.079304337501526,-0.037176866084337],[0.065519995987415,-0.11408965289593,-0.039223853498697],[0.1312030851841,0.092137113213539,-0.09908489137888]],[[0.0087216729298234,-0.069463282823563,0.069465711712837],[0.0085466802120209,-0.098770178854465,0.12375148385763],[0.044628240168095,-0.076512902975082,0.040729139000177]],[[-0.023451618850231,-0.16054029762745,-0.039264909923077],[0.1671040058136,-0.044006075710058,-0.04287776350975],[-0.0067092976532876,0.043046694248915,-0.055461794137955]],[[-0.040373466908932,-0.07369601726532,0.059168886393309],[-0.049051370471716,0.099649302661419,0.0046895570121706],[-0.045565783977509,-0.088832184672356,0.031991150230169]],[[-0.08432936668396,0.042390920221806,0.071702137589455],[0.012265719473362,0.057349663227797,0.031911980360746],[-0.001920142560266,0.11103609204292,0.046101745218039]],[[0.045545488595963,0.021371455863118,-0.13806204497814],[0.02129615470767,-0.053534969687462,-0.028981288895011],[0.010318832471967,0.090469688177109,0.087840564548969]],[[-0.042877804487944,-0.10733695328236,-0.1486558765173],[0.02041251398623,-0.087085373699665,-0.026351137086749],[0.11640868335962,0.092404462397099,0.074511684477329]],[[0.083208337426186,-0.00011130001803394,-0.21813870966434],[-0.027092982083559,0.20637392997742,-0.0068074949085712],[-0.077579483389854,-0.077848248183727,-0.030604826286435]],[[-0.097248733043671,0.088404804468155,-0.0034558249171823],[-0.033901754766703,-0.059149999171495,-0.023468254134059],[-0.022306593134999,-0.0048322360962629,0.046363461762667]],[[-0.011108132079244,-0.24020662903786,-0.05254739895463],[0.059589464217424,-0.085860595107079,0.034301526844501],[0.022325206547976,0.0034166490659118,-0.036016400903463]],[[0.035971853882074,-0.0083287907764316,0.017790541052818],[0.030854927375913,0.10044211894274,0.032955281436443],[0.031537894159555,0.064451865851879,0.046726282685995]],[[-0.066500633955002,0.065006338059902,0.14278295636177],[-0.047687239944935,0.02402008511126,0.024601381272078],[0.031442511826754,-0.025471549481153,0.087831854820251]],[[0.039797674864531,-0.027552276849747,-0.064733579754829],[0.068110711872578,-0.0067682028748095,0.071268245577812],[0.001427065115422,-0.0094391852617264,-0.060048446059227]],[[0.11730933189392,0.071277730166912,0.039936650544405],[0.092711798846722,-0.07422548532486,-0.027947915717959],[0.024897294119,0.068556994199753,0.064545296132565]],[[0.019642196595669,0.17868937551975,-0.21922421455383],[-0.074415937066078,0.21653173863888,-0.037090886384249],[-0.15527747571468,0.011277455836535,-0.064109086990356]],[[0.018694661557674,-0.012049949727952,0.18877302110195],[-0.13503883779049,-0.10456715524197,0.044034160673618],[0.082412764430046,-0.22265776991844,0.073231101036072]],[[0.054820220917463,0.1274384111166,0.030303124338388],[-0.050590772181749,-0.029460614547133,0.050986897200346],[0.0059128412976861,0.046907849609852,-0.21429848670959]],[[-0.03743364661932,0.084304377436638,-0.06274338811636],[-0.0081659574061632,0.0086306519806385,0.10598414391279],[-0.096852570772171,0.0022247391752899,-0.072427704930305]],[[-0.060632325708866,0.046850651502609,-0.025251034647226],[0.049497306346893,-0.13266848027706,0.046654094010592],[0.0077302544377744,-0.014911298640072,-0.067868016660213]],[[-0.014238330535591,0.15911337733269,0.033678352832794],[-0.071343101561069,0.043101463466883,-0.013618043623865],[0.0043553588911891,-0.0892673432827,-0.06839656829834]],[[0.02477946691215,-0.017731020227075,-0.013799323700368],[-0.0079556433483958,-0.11522088199854,-0.028256986290216],[-0.033928990364075,0.067461274564266,0.048937555402517]],[[-0.038120325654745,-0.014298883266747,-0.065946750342846],[0.018574066460133,-0.024996662512422,0.088810004293919],[-0.029492815956473,-0.025140946730971,-0.0058920597657561]],[[-0.047170273959637,-0.025870077311993,0.09062997251749],[0.080057188868523,0.052611969411373,0.043973036110401],[0.024329077452421,0.067284695804119,-0.027990249916911]],[[-0.14686726033688,0.15500590205193,0.14843587577343],[-0.028587596490979,0.055391073226929,0.11805962026119],[-0.028383577242494,0.088571563363075,-0.0091994246467948]],[[-0.021545436233282,-0.09307573735714,-0.16502201557159],[0.1415368616581,0.058283917605877,0.063569039106369],[0.026347002014518,-0.10350131243467,-0.057879012078047]],[[-0.013929964974523,0.00057222216855735,0.090449713170528],[-0.026661368086934,0.081750109791756,0.07984397560358],[-0.013985763303936,0.011266329325736,0.035238899290562]],[[-0.24885305762291,-0.15515530109406,-0.0068364297039807],[-0.13959124684334,-0.040500994771719,-0.084126926958561],[0.032369092106819,0.0053288405761123,0.020402302965522]],[[0.016451999545097,0.074650354683399,-0.11218354105949],[-0.0087319919839501,0.10477292537689,-0.023230450227857],[-0.063039354979992,-0.023211991414428,-0.039313156157732]],[[0.088634371757507,-0.025282893329859,0.027526376768947],[-0.023341719061136,0.061498630791903,0.060706987977028],[0.04993487149477,-0.07129018753767,-0.061360087245703]],[[-0.028780423104763,0.067784786224365,0.02911365032196],[-0.00038420749478973,-0.091841883957386,0.055358171463013],[-0.025050669908524,-0.040511969476938,0.0031011020764709]],[[-0.0035318972077221,-0.090624444186687,0.13052055239677],[0.096456259489059,-0.069528706371784,0.0013059217017144],[0.0076889507472515,0.067661717534065,-0.11870461702347]],[[0.1614196151495,0.16247169673443,-0.15385696291924],[0.010014046914876,0.093647547066212,-0.14077281951904],[0.0057768314145505,-0.050624031573534,-0.068957261741161]],[[0.16971336305141,0.053866021335125,-0.12048061937094],[-0.066607236862183,-0.017031392082572,0.070293202996254],[0.0106550604105,-0.055812932550907,0.13108801841736]],[[-0.057546429336071,-0.096034027636051,0.095038838684559],[-0.076786704361439,-0.12144114077091,0.12617434561253],[0.024008834734559,-0.171152099967,0.045179780572653]]],[[[-0.094436705112457,0.24212546646595,0.098291672766209],[-0.078650921583176,-0.088947467505932,0.061433482915163],[-0.075625978410244,-0.029360735788941,0.16682782769203]],[[0.020360914990306,0.0081652421504259,-0.071131080389023],[-0.074214220046997,-0.13991016149521,0.063715718686581],[-0.046743530780077,-0.058896526694298,0.0033998561557382]],[[0.027222190052271,-0.018932057544589,0.034947659820318],[-0.040354046970606,-0.051305212080479,-0.032215479761362],[-0.043194834142923,0.0070756343193352,-0.023451818153262]],[[-0.034141931682825,-0.038749739527702,-0.0058229700662196],[0.078294947743416,-0.0021316092461348,0.007234098855406],[-0.015552037395537,-0.069595247507095,-0.017903292551637]],[[0.0012982517946512,0.069299578666687,0.0951047539711],[0.053857635706663,-0.11140083521605,-0.13045886158943],[-0.014074338600039,-0.050151046365499,-0.0065515455789864]],[[-0.047413621097803,-0.0028761229477823,-0.06466206163168],[0.070539876818657,-0.048029366880655,-0.066054455935955],[0.026174059137702,0.074061572551727,0.054662510752678]],[[0.030944200232625,-0.013941947370768,0.015669753775001],[-0.068551920354366,-0.064069926738739,-0.077522486448288],[-0.025649404153228,0.0073008076287806,-0.014566819183528]],[[-0.097192168235779,-0.21912996470928,-0.19914551079273],[0.058783609420061,0.031961087137461,0.055182002484798],[0.13380518555641,0.063541606068611,-0.011608975939453]],[[-0.053752463310957,-0.077706888318062,-0.059602659195662],[-0.032670095562935,0.018732445314527,-0.050374448299408],[0.036691352725029,0.018025647848845,0.0091091794893146]],[[0.12614637613297,0.17209804058075,0.064187653362751],[0.061433997005224,0.10693511366844,-0.015361437574029],[-0.10479622334242,-0.17382290959358,-0.085358060896397]],[[-0.043413903564215,-0.091914981603622,0.090270884335041],[-0.05316136777401,0.056369494646788,-0.05599669367075],[-0.001505363616161,0.044868152588606,0.082924604415894]],[[0.048753876239061,-0.026111505925655,-0.0066643934696913],[-0.024791540578008,-0.1218329295516,-0.034556087106466],[0.058057364076376,0.08046917617321,-0.0069480799138546]],[[0.041489325463772,-0.026745278388262,-0.12228102982044],[-0.071201004087925,-0.17046543955803,-0.033575043082237],[0.075025677680969,0.045427896082401,-0.0066447504796088]],[[-0.069389708340168,0.11185155808926,0.057122386991978],[-0.024304768070579,-0.090526193380356,0.041043743491173],[-0.023425806313753,-0.040016174316406,-0.065325401723385]],[[-0.02217061817646,-0.081008344888687,-0.0048923580907285],[-0.015619359910488,-0.024511700496078,-0.014723032712936],[0.09014481306076,-0.065777808427811,0.11331953853369]],[[-0.095447860658169,0.05910886079073,-0.0060120578855276],[-0.045265052467585,0.010860390029848,0.021711695939302],[-0.00065269169863313,0.016433093696833,-0.0070488839410245]],[[-0.045859050005674,-0.085338607430458,-0.1520099490881],[0.011858625337481,0.016499100252986,-0.17975057661533],[-0.0098639037460089,-0.002965749707073,0.0061588026583195]],[[0.027285827323794,-0.033865425735712,-0.11652378737926],[0.014057651162148,-0.079096518456936,-0.069796808063984],[0.0072769518010318,-0.024911642074585,-0.045970715582371]],[[-0.051574435085058,-0.069100081920624,-0.0054164631292224],[-0.063756421208382,0.10600804537535,-0.020366420969367],[-0.081199206411839,-0.07741416990757,-0.062583848834038]],[[-0.034276854246855,-0.0022157819475979,0.0047084614634514],[0.024826051667333,0.03922850266099,-0.0028776668477803],[-0.0040538907051086,-0.044323064386845,-0.062628500163555]],[[-0.004664208739996,0.15704667568207,0.18155470490456],[0.11924492567778,-0.034175787121058,-0.015024377964437],[-0.12301240861416,-0.12522612512112,-0.01534921489656]],[[0.030533095821738,-0.0084718791767955,-0.045100796967745],[0.020543264225125,0.0032298234291375,0.039355237036943],[4.5658787712455e-05,-0.040080968290567,-0.054254904389381]],[[0.071234032511711,0.04736040905118,0.035643916577101],[-0.0062540345825255,-0.12517829239368,0.020271945744753],[-0.040334481745958,0.021796923130751,-0.028068799525499]],[[-0.04524639248848,-0.045437432825565,-0.027315236628056],[-0.089685179293156,0.027797769755125,0.038791827857494],[0.030589392408729,0.092497050762177,-0.014014581218362]],[[8.0246500147041e-06,-0.0062937317416072,-0.053901918232441],[0.0017664360348135,0.060144480317831,0.095093697309494],[-0.0065387589856982,0.0078400345519185,-0.0096356561407447]],[[-0.17911083996296,-0.29504850506783,-0.015466098673642],[0.14447449147701,-0.0090869292616844,0.073962949216366],[0.06960454583168,-0.049984067678452,-0.0041542816907167]],[[-0.029775884002447,-0.18857365846634,-0.004464800003916],[0.0064308997243643,-0.0041723721660674,-0.13083417713642],[0.049046747386456,-0.010918254032731,0.058512546122074]],[[0.029877915978432,0.030564775690436,0.16821099817753],[-0.14992989599705,0.096050515770912,-0.066545531153679],[-0.24324636161327,0.04900011792779,-0.074285760521889]],[[-0.00022586187697016,-0.049134906381369,0.024492064490914],[0.010500403121114,0.059645105153322,0.030160440132022],[0.01798839122057,-0.049086108803749,-0.02229500003159]],[[0.069095499813557,0.055587869137526,-0.035658087581396],[0.054356954991817,0.018958792090416,0.076954871416092],[-0.027195120230317,0.007222939748317,-0.0066667408682406]],[[-0.06371209025383,-0.027770910412073,-0.046307925134897],[-0.037717327475548,0.053884126245975,-0.045052409172058],[0.069194436073303,-0.092338688671589,0.0051081366837025]],[[0.032308854162693,0.086785487830639,0.14699013531208],[-0.011327019892633,-0.16887894272804,0.0036718719638884],[-0.13082002103329,-0.056794416159391,-0.032046981155872]],[[0.0043627195991576,0.019955974072218,-0.098194435238838],[0.1637500077486,0.05797640606761,0.040459491312504],[0.11392223834991,-0.037607084959745,-0.058465301990509]],[[0.030009081587195,0.035351421684027,-0.017610892653465],[0.022120464593172,-0.044826973229647,-0.080142311751842],[-0.057454559952021,-0.028989288955927,-0.015404512174428]],[[0.047404900193214,-0.021757978945971,-0.14515051245689],[-0.040019694715738,-0.13954113423824,-0.031400043517351],[0.041458111256361,0.035474248230457,0.033312682062387]],[[0.044734045863152,0.0030983949545771,-0.050561524927616],[0.032546423375607,-0.043424021452665,-0.19370260834694],[0.028555685654283,0.030918968841434,-0.042809803038836]],[[-0.010097408667207,-0.127451390028,-0.14886556565762],[-0.06483756005764,0.012632131576538,0.040218763053417],[-0.026477262377739,-0.019000679254532,0.062764018774033]],[[0.068263657391071,0.081892155110836,-0.062582053244114],[-0.063978679478168,-0.1564454883337,-0.017643915489316],[-0.1995380371809,-0.054787795990705,0.062751039862633]],[[0.081802979111671,-0.01552564650774,0.053364150226116],[-0.03593735396862,-0.048636127263308,-0.034863516688347],[-0.021775593981147,-0.025903807953,-0.058427557349205]],[[0.005008218344301,-0.00051892531337216,0.19390152394772],[0.012090801261365,0.055249370634556,0.036645114421844],[0.089424647390842,-0.10777921229601,-0.043216202408075]],[[-0.079101614654064,0.076984345912933,-0.03655506670475],[0.042681783437729,-0.072621732950211,-0.023649955168366],[0.063157193362713,-0.046449769288301,-0.0011048028245568]],[[-0.041149847209454,-0.03276164829731,-0.070693716406822],[0.046999629586935,0.010452598333359,0.032062325626612],[0.067947298288345,-0.030511975288391,0.091668546199799]],[[-0.061246301978827,0.038227062672377,0.066142715513706],[-0.061740078032017,-0.01641677506268,-0.049320083111525],[-0.033259347081184,0.0061088651418686,0.049944471567869]],[[-0.0030764110852033,-0.018319817259908,0.023157579824328],[-0.019671220332384,0.051423013210297,0.094929330050945],[0.049600660800934,0.035179316997528,-0.029480183497071]],[[0.074547559022903,-0.0093931574374437,0.15412418544292],[-0.070341646671295,-0.0046374346129596,0.086943030357361],[0.05219642072916,-0.08824110776186,-0.014023522846401]],[[-0.011694055050611,0.026224985718727,0.012035757303238],[-0.016339331865311,0.031933981925249,-0.044780008494854],[0.02790748514235,-0.020213274285197,-0.040466364473104]],[[0.18427337706089,-0.085948206484318,0.01155374571681],[0.031581297516823,0.044723220169544,0.0063252192921937],[0.033218033611774,-0.012243031524122,-0.12620088458061]],[[-0.0043958919122815,-0.072173081338406,-0.073670886456966],[-0.097585521638393,-0.081416368484497,0.0070090317167342],[-0.10201305150986,-0.021895358338952,0.020127719268203]],[[0.02122887223959,-0.0012667675036937,0.12073005735874],[0.0080980882048607,-0.21495360136032,-0.35791999101639],[0.15164774656296,0.079427428543568,0.089200809597969]],[[0.038335304707289,0.1413965523243,-0.11682001501322],[0.12817832827568,0.045934792608023,-0.093948282301426],[0.098677009344101,-0.086076945066452,-0.043548621237278]],[[-0.073658250272274,0.08257619291544,0.048107124865055],[-0.014852184802294,-0.024931602180004,-0.019636383280158],[0.029779225587845,0.07434968650341,-0.010285394266248]],[[-0.058823384344578,-0.10186754912138,-0.051113586872816],[0.045127812772989,0.074063703417778,0.044716011732817],[0.037418745458126,-0.015046721324325,-0.018303632736206]],[[-0.10244507342577,-0.033527713268995,0.095872774720192],[0.010014601051807,-0.096209868788719,-0.076157204806805],[0.046310983598232,-0.043405327945948,-0.076113015413284]],[[-0.1071263179183,-0.060920581221581,-0.13306647539139],[-0.016591003164649,0.13367055356503,0.2612039744854],[-0.033696003258228,0.07814384251833,0.14823660254478]],[[-0.012879467569292,0.13063389062881,0.064405873417854],[0.073407679796219,-0.079931899905205,-0.084178015589714],[0.0049446187913418,-0.038373082876205,0.0024748793803155]],[[-0.0077758496627212,-0.027190005406737,-0.017652332782745],[-0.066834181547165,-0.090034015476704,-0.15831613540649],[0.016238376498222,0.043004173785448,0.045424845069647]],[[-0.037058494985104,0.047877192497253,-0.0048228921368718],[-0.02206514775753,0.056491270661354,0.020260717719793],[-0.067267939448357,0.010555368848145,-0.036101225763559]],[[-0.064706593751907,-0.0024355752393603,0.044512517750263],[0.022196542471647,-0.030544966459274,-0.094651199877262],[0.010155322961509,0.022195003926754,0.039126094430685]],[[-0.10057629644871,0.17311173677444,0.029416091740131],[-0.045447073876858,-0.008779427036643,-0.070373430848122],[-0.042183592915535,0.10619736462831,-0.057655487209558]],[[-0.059125281870365,-0.082819119095802,-0.023679967969656],[0.0098751140758395,0.046298567205667,0.060211721807718],[0.040629219263792,0.01827866025269,0.014439368620515]],[[0.058602064847946,0.087198883295059,0.012581026181579],[0.074591271579266,-0.10797257721424,-0.15555407106876],[-0.0051704118959606,0.048037458211184,0.068874292075634]],[[-0.00073265709215775,0.069694884121418,-0.15979498624802],[0.11297515779734,0.074274465441704,-0.0074803261086345],[-0.022324541583657,-0.02440993860364,-0.023117339238524]],[[0.0424491353333,0.15739715099335,-0.0018625488737598],[0.041096184402704,-0.053384125232697,-0.011975972913206],[-0.02773823030293,-0.11529268324375,-0.016898235306144]],[[-0.021893423050642,-0.079424276947975,-0.10782523453236],[0.10159830003977,0.030290672555566,-0.08347475528717],[0.091571159660816,0.072971880435944,-0.012824692763388]]],[[[0.0046456167474389,0.038445822894573,0.034727729856968],[-0.03182926774025,0.028444278985262,-0.026911063119769],[-0.021731706336141,0.12147972732782,-0.011315482668579]],[[-0.039985924959183,-0.014178219251335,0.0033857142552733],[-0.029600484296679,0.012688242830336,0.0046985866501927],[0.057413306087255,-0.01570413634181,-0.067958451807499]],[[-0.025184988975525,-0.043710462749004,-0.023198276758194],[0.023975534364581,-0.062352228909731,0.028087770566344],[-0.00025224903947674,-0.010621857829392,-0.066078551113605]],[[-0.08150789141655,-0.0012103103799745,0.052975408732891],[0.17617577314377,0.060892593115568,-0.188860937953],[-0.0060506677255034,-0.066363051533699,-0.099294304847717]],[[-0.051358424127102,-0.053064029663801,0.0093082217499614],[0.039976697415113,0.017810875549912,0.10413482785225],[0.012303631752729,0.014149531722069,-0.051595520228148]],[[0.12326169013977,-0.0051626805216074,0.088701352477074],[-0.060623329132795,-0.068427443504333,0.00547946523875],[0.011921332217753,0.035816308110952,0.04156444594264]],[[0.0010286774486303,-0.020825516432524,0.0084118358790874],[0.042364411056042,-0.0023243366740644,-0.0022689120378345],[-0.0036501449067146,-0.0064745382405818,-0.065711252391338]],[[-0.030239662155509,-0.036476980894804,0.060654204338789],[0.038925748318434,-0.10976667702198,0.044511895626783],[-0.00928920134902,0.0050992011092603,0.032309491187334]],[[0.024307074025273,-0.0020354420412332,-0.0001164139539469],[-0.02772281318903,-0.033630449324846,-0.14812207221985],[0.0073008383624256,-0.0019009686075151,0.045613076537848]],[[-0.046116203069687,-0.018255075439811,-0.014287854544818],[0.071749441325665,0.013590657152236,0.04145048931241],[-0.056141894310713,0.024915970861912,-0.0067377258092165]],[[0.1031087487936,-0.01179099176079,0.052464835345745],[-0.058171115815639,0.0034998347982764,-0.045811094343662],[0.074145816266537,0.02640213817358,0.0077292295172811]],[[-0.060848858207464,0.0078468527644873,0.038089599460363],[0.076891392469406,0.10512392967939,0.036019135266542],[-0.018127555027604,-0.042865142226219,0.051511060446501]],[[0.053183134645224,-0.031009789556265,0.047121651470661],[0.05043763294816,-0.026813443750143,0.13446003198624],[-0.022372301667929,0.026149962097406,0.010509889572859]],[[0.034041300415993,0.055672280490398,0.021166373044252],[0.10829468816519,0.021737461909652,-0.060333885252476],[-0.066906422376633,0.039785586297512,-0.013797639869153]],[[0.12369664758444,0.057067465037107,-0.16196209192276],[-0.10974676907063,0.00058571348199621,-0.0098205432295799],[0.069342605769634,0.0048730876296759,0.02930766902864]],[[0.07443368434906,0.053101908415556,-0.058691211044788],[0.11644036322832,-0.0039088022895157,-0.054331205785275],[0.051811624318361,-0.025481514632702,-0.05323676019907]],[[-0.0011244282359257,-0.029546845704317,0.012178543955088],[-0.042134266346693,0.06346333771944,-0.15287825465202],[-0.0093823634088039,0.034706450998783,0.031783524900675]],[[-0.0067381174303591,-0.061354756355286,0.03408520296216],[-0.006840811111033,0.055589832365513,-0.011126578785479],[-0.032156586647034,0.046129837632179,-0.0012110270326957]],[[0.037619333714247,0.01414483319968,-0.09758199006319],[-0.039153166115284,-0.080722972750664,0.022674888372421],[0.016871184110641,0.0062158494256437,0.012839733622968]],[[-0.059249095618725,0.016801062971354,0.013223613612354],[0.058616194874048,-0.01622299477458,-0.017231080681086],[0.019721185788512,-0.05087960138917,-0.031616546213627]],[[-0.064814783632755,0.037823475897312,-0.098164416849613],[-0.025210406631231,0.022468354552984,0.067144259810448],[0.013265821151435,0.061654835939407,-0.02273372747004]],[[-0.0053091961890459,-0.0089834127575159,0.038009352982044],[0.094109155237675,-0.041482228785753,-0.15353286266327],[-0.052794083952904,0.067700177431107,0.0091670090332627]],[[-0.020409086719155,-0.013111240230501,-0.0058734845370054],[-0.027600720524788,0.016877733170986,0.0056804553605616],[0.045359298586845,-0.00034415087429807,-0.0086845075711608]],[[0.013470636680722,-0.0012266468256712,0.037791665643454],[0.01014705747366,-0.090909190475941,-0.055758107453585],[-0.028322000056505,-0.011501983739436,0.041582982987165]],[[0.12925288081169,0.04591753706336,0.036199316382408],[0.037751022726297,-0.028704587370157,0.008898357860744],[0.093497730791569,-0.0057134991511703,-0.031489498913288]],[[-0.075609542429447,0.10549650341272,0.21797879040241],[-0.17028352618217,-0.044587705284357,0.030442921444774],[0.11520297080278,0.073236674070358,-0.0070858094841242]],[[0.11092468351126,0.05185991153121,-0.029224576428533],[-0.084589697420597,0.10335654765368,-0.023377830162644],[0.077641732990742,0.041956208646297,-0.027845397591591]],[[-0.057903684675694,-0.049470264464617,-0.0026420608628541],[0.0025426133070141,0.10418643057346,0.053870256990194],[0.063524693250656,0.0556007809937,0.038607977330685]],[[0.074083648622036,0.036534197628498,0.024912465363741],[0.029275113716722,-0.034674201160669,-0.11008694767952],[-0.0025867628864944,-0.018665265291929,-0.032885659486055]],[[-0.0066525707952678,-0.0057759084738791,0.045322824269533],[-0.0075489333830774,-0.060525756329298,-0.07484183460474],[0.0120346583426,0.036785863339901,0.016126284375787]],[[-0.070908218622208,-0.0015875542303547,-0.081432707607746],[0.043588861823082,-0.076454602181911,-0.034388449043036],[0.089314647018909,-0.029428286477923,0.082647100090981]],[[0.034743674099445,-0.0043405117467046,0.011727458797395],[-0.15702393651009,0.13131700456142,0.12521015107632],[0.057234141975641,0.039683438837528,-0.066538736224174]],[[0.017539886757731,-0.10284393280745,-0.055395059287548],[-0.12567023932934,-0.14427228271961,-0.14248041808605],[-0.0041594835929573,0.096514627337456,0.098142594099045]],[[-0.071869738399982,-0.023947417736053,0.013867254368961],[-0.041492227464914,0.030587593093514,-0.04375858232379],[-0.097774654626846,-0.23697467148304,-0.006657914724201]],[[-0.077406875789165,-0.024253346025944,0.063225075602531],[0.10331946611404,0.079269461333752,-0.046806626021862],[-0.022507956251502,-0.1129325479269,0.01794171333313]],[[0.029981883242726,-0.085877604782581,0.052275564521551],[-0.0016824379563332,0.028665335848927,0.068495154380798],[0.040665056556463,0.018416490405798,0.049915436655283]],[[0.0093336701393127,0.0093526979908347,-0.11392758786678],[0.033418338745832,-0.053457416594028,-0.018976911902428],[0.043601103127003,-0.073587723076344,0.062030401080847]],[[-0.14034654200077,-0.077908031642437,0.11115770787001],[0.094768017530441,0.10972490161657,-0.066296584904194],[0.025796009227633,-0.052379742264748,0.016379565000534]],[[0.046199258416891,0.088003739714622,0.0055705523118377],[-0.063069418072701,0.02653575129807,-0.066797964274883],[0.0081722531467676,0.0061441310681403,-0.031845185905695]],[[0.042186316102743,-0.0071794055402279,-0.019545093178749],[-0.14302563667297,0.064983561635017,0.032643731683493],[-0.017776096239686,0.01978175342083,-0.060860801488161]],[[0.032006684690714,0.016913317143917,-0.026517521589994],[0.0099539132788777,-0.089815899729729,0.12248948961496],[-0.0034781941212714,0.060048241168261,0.012016355991364]],[[-0.052111398428679,0.035684809088707,-0.058921698480844],[-0.019277105107903,-0.049173053354025,-0.034455113112926],[0.10799252986908,0.010623509995639,0.071132741868496]],[[-0.099531523883343,-0.12200532853603,0.047655530273914],[0.076067499816418,0.032958246767521,0.044629748910666],[0.058683063834906,-0.027484780177474,0.00469018984586]],[[0.0921565964818,0.13755190372467,0.0054575600661337],[-0.037980016320944,0.046301905065775,-0.017598362639546],[0.036265041679144,-0.044440425932407,-0.00068596401251853]],[[-0.0084856636822224,0.1023870781064,0.070584677159786],[-0.12949922680855,-0.014389419928193,0.031208099797368],[-0.026092594489455,0.098435938358307,-0.013747109100223]],[[-0.03880986571312,-0.016141083091497,0.013502272777259],[-0.034828919917345,-0.025520065799356,-0.078493699431419],[-0.08219613134861,0.11082109063864,-0.021016793325543]],[[0.11856406927109,0.029990816488862,0.055237729102373],[-0.11270812898874,0.0061703976243734,-0.14619612693787],[-0.056029222905636,0.042669143527746,-0.0043081887997687]],[[0.0084107518196106,0.073048651218414,0.039853546768427],[0.030759029090405,-0.13184855878353,-0.03645147383213],[0.10837309807539,0.028127767145634,-0.0031779755372554]],[[0.014252554625273,-0.031335890293121,-0.0094212172552943],[-0.042986333370209,0.1053090468049,0.092322863638401],[-0.053513444960117,-0.0025613140314817,0.051167782396078]],[[-0.012135266326368,0.048363365232944,0.046935502439737],[0.024983663111925,-0.035756923258305,0.07092110812664],[0.031591005623341,0.051831614226103,0.090025775134563]],[[0.0421950109303,-0.021862607449293,-0.014536423608661],[0.0011892233742401,-0.15423350036144,-0.0077866902574897],[-0.13262751698494,-0.067058019340038,-0.0060971123166382]],[[0.0047400016337633,-0.0042211711406708,0.045130535960197],[-0.024274228140712,-0.018909433856606,0.05979798361659],[-0.079278238117695,0.0030023772269487,-0.070453867316246]],[[0.081334680318832,0.0055492944084108,0.078426674008369],[0.031943824142218,0.066780090332031,-0.072165250778198],[-0.00015775104111526,0.06082497164607,0.024391179904342]],[[0.023912915959954,0.082622408866882,0.026028215885162],[0.094354249536991,0.030665142461658,0.026528585702181],[-0.020648999139667,0.0093049183487892,0.063987247645855]],[[-0.08153235912323,-0.04650479182601,-0.027305750176311],[-0.11112378537655,0.036556664854288,0.051595337688923],[0.067130245268345,0.016608633100986,-0.007722232490778]],[[0.019855672493577,-0.015242213383317,-0.0088377390056849],[-0.020186953246593,0.031529255211353,-0.045694131404161],[-0.089210979640484,0.020787850022316,-0.00584756443277]],[[-0.11200943589211,-0.066491909325123,-0.0072190347127616],[0.026650629937649,0.065282270312309,-0.083373606204987],[-0.002490627579391,-0.033683001995087,-0.087957516312599]],[[0.020686093717813,0.0033729881979525,0.0076906909234822],[0.0055351690389216,-0.073833160102367,0.022503454238176],[-0.012371705844998,0.015419294126332,-0.052155442535877]],[[-0.043685961514711,-0.06037937104702,0.080272108316422],[-0.0077919675968587,-0.075010433793068,0.00020170852076262],[-0.054236028343439,-0.054548360407352,0.096285201609135]],[[0.030721917748451,0.034174967557192,-0.015685791149735],[-0.011003933846951,-0.0070650512352586,-0.014320692978799],[-0.032472122460604,0.0084768710657954,0.019968923181295]],[[-0.0079829012975097,0.04188547283411,-0.079539008438587],[-0.034149255603552,-0.0050190379843116,-0.10769553482533],[0.0055308281444013,0.031723003834486,-0.084582343697548]],[[0.021773260086775,0.043985284864902,-0.0097910473123193],[0.03036592155695,-0.053042657673359,-0.014145317487419],[-0.062251590192318,0.0066110142506659,0.0053173135966063]],[[-0.0073554473929107,0.039780084043741,0.030962653458118],[0.029812844470143,-0.098098769783974,-0.12344465404749],[0.083680734038353,0.034338716417551,0.028528675436974]],[[0.07219160348177,0.0027333330363035,-0.016275346279144],[-0.089473202824593,0.0405133664608,0.024994049221277],[0.060795549303293,-0.025987772271037,0.011047133244574]]],[[[-0.17191110551357,0.092003867030144,-0.19299910962582],[-0.0084778312593699,0.097298622131348,-0.0018134413985536],[0.042792983353138,0.088808812201023,0.15793254971504]],[[0.15843032300472,0.0060092243365943,-0.093821905553341],[-0.012805979698896,-0.0096810022369027,-0.044768840074539],[-0.052990019321442,-0.025973323732615,-0.041392862796783]],[[-0.013148795813322,0.025677366182208,0.037018839269876],[-0.027251282706857,-0.019042221829295,0.004737289622426],[-0.04744777828455,0.00773547263816,-0.072607442736626]],[[0.052500832825899,-0.069774247705936,-0.066397346556187],[-0.17800591886044,0.0060342908836901,0.12651337683201],[0.10191325843334,0.10152342170477,-0.0052131903357804]],[[-0.22923588752747,0.10658329725266,0.013543920591474],[0.020765408873558,-0.0083922427147627,0.049280568957329],[0.053293656557798,0.085554257035255,-0.13449488580227]],[[-0.042999092489481,0.041510377079248,0.00018162169726565],[-0.094015404582024,0.019740086048841,-0.035399071872234],[-0.15548767149448,-0.077884517610073,0.053274180740118]],[[-0.050476349890232,-0.00086726510198787,0.0043689087033272],[0.017484720796347,-0.081619367003441,0.029136803001165],[-0.080030202865601,-0.015366178005934,-0.0019930624403059]],[[-0.12634468078613,-0.0040946407243609,-0.015986794605851],[-0.10287126153708,0.00049842614680529,0.0004332649987191],[0.023083491250873,-0.003737055696547,-0.070194616913795]],[[0.069761455059052,0.053175706416368,-0.040558967739344],[-0.017320938408375,0.029319182038307,-0.029325824230909],[-0.057887595146894,0.004616932477802,0.072761401534081]],[[-0.0070101073943079,-0.02808946929872,-0.045149069279432],[0.019032523036003,-0.023683574050665,-0.048042573034763],[-0.013778744265437,0.10257361829281,0.06149860471487]],[[-0.030795536935329,0.013609231449664,-0.019735354930162],[-0.11137066781521,-0.016268871724606,-0.060979846864939],[-0.24671442806721,0.064161762595177,0.14366503059864]],[[0.031193813309073,0.03424409404397,-0.020638348534703],[0.038328744471073,0.011485176160932,0.087571419775486],[0.011031905189157,0.027325611561537,-0.025296235457063]],[[0.12367474287748,0.074121572077274,-0.042945586144924],[-0.07794202119112,-0.13147579133511,-0.0014178373385221],[-0.16965620219707,0.027834925800562,0.03424134477973]],[[-0.21459612250328,0.050593044608831,0.13483841717243],[-0.018946884199977,0.060404621064663,0.12233418226242],[-0.020460026338696,0.11348386853933,0.11522081494331]],[[-0.11216677725315,-0.11242324858904,-0.053226921707392],[-0.11462836712599,-0.034772288054228,0.087254770100117],[0.013575846329331,0.018041474744678,0.11600407958031]],[[0.064747184514999,-0.013489194214344,0.07706606388092],[-0.051849592477083,0.029538119211793,-0.078316554427147],[0.057960275560617,-0.043488554656506,-0.10826645046473]],[[-0.046996977180243,-0.20092105865479,0.13164891302586],[-0.090985342860222,-0.037394784390926,-0.068610824644566],[-0.1596003472805,-0.074305549263954,-0.181505843997]],[[0.12805642187595,-0.036130271852016,-0.013600086793303],[0.0010301000438631,0.0052784234285355,-0.13809853792191],[-0.066974125802517,-0.17015661299229,-0.27161952853203]],[[-0.021236173808575,-0.0095018092542887,-0.0019949749112129],[-0.075803473591805,-0.083925075829029,-0.081509239971638],[0.068012319505215,-0.048472881317139,-0.071655742824078]],[[-0.0071080359630287,-0.011848881840706,-0.068734519183636],[0.052667077630758,0.025920169427991,0.0019593557808548],[-0.014348827302456,0.050658971071243,-0.053854279220104]],[[-0.14090298116207,-0.13457648456097,-0.0019648359157145],[-0.020550042390823,0.08066076785326,0.1625105291605],[-0.021833462640643,0.14930061995983,-0.087479516863823]],[[-0.0038826642557979,0.059180967509747,-0.12592595815659],[0.044909831136465,-0.008550001308322,0.0073325764387846],[0.015015166252851,0.051136273890734,0.032939080148935]],[[0.058143138885498,-0.00577680952847,0.014335258863866],[0.058897886425257,-0.022415090352297,-0.041741199791431],[0.02967788092792,-0.023911967873573,-0.044468559324741]],[[0.15685380995274,0.020384358242154,-0.013492686673999],[-0.12078965455294,-0.020667565986514,0.023592054843903],[0.0049575217999518,0.1740949600935,0.099991738796234]],[[0.086609780788422,-0.015934711322188,-0.01771861128509],[0.1507351398468,0.052782587707043,0.017608530819416],[-0.032628934830427,0.1750566214323,-0.020131913945079]],[[0.053358279168606,-0.011638142168522,-0.12975443899632],[0.0033150287345052,-0.043617323040962,-0.20899002254009],[-0.15326488018036,-0.092666320502758,-0.15784694254398]],[[0.044123236089945,-0.010098698548973,-0.05315512791276],[0.015160488896072,-0.10162179172039,-0.0059026717208326],[-0.028000921010971,-0.050848860293627,0.033351264894009]],[[-0.05847591906786,-0.11384707689285,-0.0083360495045781],[-0.11734194308519,0.050800304859877,0.13453774154186],[0.11039857566357,0.030942706391215,-0.053279161453247]],[[-0.060734890401363,-0.015551745891571,-0.032729595899582],[-0.14659811556339,-0.083333179354668,0.15701031684875],[-0.065958045423031,-0.015692710876465,0.012701538391411]],[[0.0028531968127936,0.031099203974009,-0.11080010980368],[0.13042855262756,-0.029224567115307,-0.26866617798805],[-0.16545490920544,-0.33820751309395,-0.19359686970711]],[[-0.099521793425083,-0.036631733179092,0.021095797419548],[0.0042231138795614,0.043485652655363,-0.028677701950073],[-0.041219100356102,-0.1449395865202,-0.1256345063448]],[[0.055090583860874,0.086405858397484,-0.10590206831694],[0.10115011036396,-0.041706077754498,-0.14564114809036],[-0.033255830407143,-0.038474831730127,-0.13602490723133]],[[0.030038703233004,0.040067944675684,-0.030662855133414],[-0.11212012916803,0.0087664555758238,-0.042554210871458],[-0.12672503292561,0.071458242833614,-0.092795148491859]],[[-0.046229600906372,0.05265836417675,-0.042286932468414],[0.055628936737776,0.055683080106974,-0.092540748417377],[-0.13236546516418,0.0058870590291917,-0.1346268504858]],[[0.081738069653511,-0.068099290132523,0.059094615280628],[0.15668892860413,0.12936455011368,-0.070055775344372],[-0.16468022763729,-0.24585331976414,-0.13220031559467]],[[0.013109826482832,0.10836920142174,0.077295184135437],[0.035455100238323,0.010824457742274,-0.088033698499203],[-0.075734809041023,-0.14414544403553,-0.17250607907772]],[[0.1082567051053,-0.15684677660465,0.017375960946083],[-0.22919327020645,-0.052361689507961,0.043180931359529],[-0.11462387442589,0.030414363369346,0.06333090364933]],[[0.025923671200871,-0.026880279183388,-0.036222025752068],[0.052054695785046,0.056154329329729,-0.018123963847756],[0.12253008037806,0.0022783449385315,-0.030523987486959]],[[0.031043199822307,0.032995466142893,0.077749788761139],[-0.052214283496141,0.056833863258362,-0.029028033837676],[-0.029243156313896,-0.14119958877563,-0.25620993971825]],[[0.029860820621252,-0.089705906808376,0.049138404428959],[-0.1782910078764,0.025697352364659,0.10914285480976],[0.063830517232418,0.10351447016001,0.090266406536102]],[[0.12439639121294,0.059629857540131,0.017246788367629],[-0.06232338771224,0.022752065211535,0.003619136987254],[-0.035778496414423,-0.021626168861985,-0.15525299310684]],[[0.017397807911038,0.055228754878044,-0.10399108380079],[0.0036466964520514,0.012527028098702,-0.021047290414572],[0.062890343368053,-0.00019712987705134,0.026938101276755]],[[-0.14648063480854,0.030799999833107,0.028509605675936],[-0.016573663800955,-0.080717548727989,0.069611668586731],[-0.014829022809863,-0.047791764140129,0.074138656258583]],[[0.18805852532387,-0.077014416456223,-0.013766632415354],[0.028035132214427,0.062726356089115,0.044690556824207],[-0.048031974583864,0.033675093203783,0.022993873804808]],[[0.032818384468555,0.054972503334284,0.0030378298833966],[-0.045737393200397,-0.025420855730772,-0.007913033477962],[-0.060141798108816,-0.068336322903633,-0.030572919175029]],[[-0.060006700456142,0.011030657216907,0.061282332986593],[-0.060974061489105,-0.20428863167763,0.0013516945764422],[-0.13478212058544,-0.12333007156849,-0.057095263153315]],[[0.03329960256815,-0.037436816841364,0.047795422375202],[-0.00027804390992969,-0.0044719623401761,-0.0032689056824893],[-0.11231172829866,0.011392928659916,0.17000596225262]],[[0.11865912377834,-0.035546023398638,0.055360816419125],[0.061877716332674,0.051453523337841,0.040412470698357],[0.027617609128356,0.019844073802233,0.037780307233334]],[[0.011214321479201,0.075561381876469,0.025201143696904],[0.16448862850666,0.18505151569843,-0.02030317299068],[-0.030481528490782,-0.068727262318134,-0.087494239211082]],[[-0.16606973111629,0.028562495484948,-0.069378271698952],[-0.061370301991701,0.10878579318523,-0.043574616312981],[-0.02848837338388,0.077340222895145,-0.060514241456985]],[[-0.055321525782347,-0.0030682578217238,0.0035159911494702],[-0.0044752554967999,-0.0082753906026483,0.0033534362446517],[-0.047703992575407,-0.023931540548801,-0.026007443666458]],[[0.15142671763897,0.026460548862815,-0.054566763341427],[-0.012716835364699,-0.072415858507156,0.061995323747396],[-0.079909890890121,0.092100456357002,-0.047746609896421]],[[0.0089684072881937,0.074173659086227,-0.017001429572701],[-0.072070322930813,0.012652534991503,-0.049416515976191],[-0.11293428391218,-0.035441283136606,-0.16861219704151]],[[0.032894164323807,0.074208542704582,0.06921623647213],[0.048103366047144,0.10359423607588,0.098588600754738],[0.16713608801365,0.21945324540138,0.21091128885746]],[[-0.10610640794039,0.10557209700346,0.044882949441671],[-0.064171597361565,0.029112318530679,0.0030833552591503],[-0.0091577414423227,0.032159425318241,-0.17769396305084]],[[0.033089317381382,0.10437326133251,-0.066015429794788],[0.0080268764868379,-0.029989758506417,-0.21321485936642],[-0.10211849957705,-0.1627888828516,-0.14701102674007]],[[0.032720740884542,0.031157480552793,0.040243573486805],[-0.13390238583088,-0.037429250776768,-0.021449482068419],[-0.15385444462299,-0.1290245205164,-0.027111936360598]],[[-0.048780687153339,0.051425281912088,-0.015552173368633],[0.094271518290043,0.05792049691081,-0.024294685572386],[-0.031922440975904,-0.006225117482245,0.10094916820526]],[[0.078045293688774,-0.072458907961845,-0.013790010474622],[-0.058634847402573,-0.07596555352211,-0.042886141687632],[0.020521160215139,-0.081338763237,0.028527220711112]],[[-0.035670295357704,0.019048577174544,0.011725602671504],[-0.014328827150166,-0.001835199422203,0.056395556777716],[-0.017082991078496,0.075557507574558,0.070965841412544]],[[-0.066755227744579,0.026718102395535,0.078278332948685],[0.13482181727886,-0.010227950289845,0.05263988673687],[0.053586639463902,-0.022640576586127,0.10489317029715]],[[0.048546381294727,0.11506544053555,-0.05589759349823],[-0.0035217287950218,-0.10075086355209,0.09838043898344],[0.072121478617191,0.026924632489681,0.022345367819071]],[[-0.089586548507214,0.091486655175686,-0.013876019045711],[0.04159527644515,0.039634943008423,0.0020355249289423],[-0.030827483162284,0.02016900293529,-0.068308539688587]],[[0.083061724901199,0.037087213248014,0.092703953385353],[-0.02826321311295,-0.023844411596656,-0.0050430046394467],[-0.035073526203632,-0.0048772734589875,0.10120292007923]]],[[[-0.070343963801861,0.019030474126339,0.12710931897163],[0.040219217538834,-0.067905470728874,-0.016741784289479],[-0.21301364898682,-0.12773326039314,0.071802988648415]],[[-0.011494184844196,-0.040983285754919,-0.04668502882123],[-0.067529879510403,-0.11208125203848,0.0085656940937042],[0.0057588252238929,-0.034285679459572,-0.015453645028174]],[[-0.021607108414173,-0.036513328552246,-0.0098784975707531],[-0.007731351070106,-0.0073795644566417,-0.0070853997021914],[-0.045642483979464,0.054565969854593,-0.01157334446907]],[[-0.05751745775342,0.017477169632912,-0.11153852939606],[-0.029530271887779,-0.16133360564709,-0.13437481224537],[-0.049952007830143,-0.074504822492599,0.012193597853184]],[[-0.030049262568355,-0.042685303837061,0.0048287832178175],[0.10357782244682,-0.052519585937262,-0.039447341114283],[-0.014182667247951,-0.044748041778803,0.00967379193753]],[[-0.064675360918045,-0.0014987837057561,0.060553621500731],[-0.046198401600122,-0.13220652937889,-0.049135100096464],[-0.072166010737419,-0.0038537338841707,-0.11692236363888]],[[-0.030070964246988,0.00056931999279186,-0.0088591501116753],[0.047268163412809,-0.0010495478054509,-0.027648424729705],[0.075014151632786,-0.0059707765467465,0.044148977845907]],[[0.0062317079864442,0.064431138336658,-0.01726639829576],[-0.067619740962982,0.10396537929773,0.10873957723379],[0.036371484398842,-0.040281720459461,-0.0428207218647]],[[-0.0080336108803749,-0.011388301849365,0.011608984321356],[0.060082778334618,0.029192922636867,-0.0033557671122253],[-0.031203174963593,0.0065741455182433,0.10222783684731]],[[-0.021956253796816,0.058249078691006,-0.036625310778618],[0.051033552736044,0.035607255995274,-0.012412406504154],[0.030901521444321,-0.028314905241132,-0.021470693871379]],[[-0.037317637354136,-0.10146944224834,0.05743670836091],[-0.011539427563548,0.054566074162722,-0.014590542763472],[0.055889692157507,-0.036064796149731,0.034395515918732]],[[0.0078912107273936,-0.035722061991692,-0.087533503770828],[0.02136137150228,-0.04631507396698,-0.019304431974888],[-0.020529696717858,-0.019749449566007,-0.051982533186674]],[[-0.06526841968298,-0.079114213585854,-0.043607249855995],[0.015694281086326,0.087142735719681,-0.043780766427517],[0.038910374045372,0.062189728021622,0.0024515783879906]],[[0.015668803825974,0.026323495432734,0.080005452036858],[0.1382377743721,0.019590446725488,-0.0069056772626936],[0.041521035134792,0.12806080281734,-0.065025575459003]],[[0.16564723849297,0.069618597626686,-0.037741456180811],[0.061404898762703,0.11508396267891,0.10840178281069],[-0.074885807931423,-0.097728833556175,-0.022056249901652]],[[0.073558144271374,0.016741832718253,-0.061696112155914],[-0.061004895716906,-0.075472295284271,0.062120251357555],[0.059837985783815,0.14292299747467,-0.022316647693515]],[[-0.048201397061348,0.020804271101952,-0.064036272466183],[-0.026293372735381,0.023645306006074,-0.0034954517614096],[-0.025501353666186,-0.060708280652761,-0.046806268393993]],[[-0.053877953439951,-0.032594036310911,-0.096826083958149],[0.014486320316792,-0.00015581697516609,-0.031229268759489],[0.11135425418615,0.0656518638134,0.087911538779736]],[[0.0035410188138485,0.040349882096052,0.015079082921147],[0.021424988284707,-0.060472782701254,0.091202698647976],[0.046585269272327,-0.046367555856705,0.025543244555593]],[[-0.095914959907532,0.044675327837467,0.071492806077003],[0.039583902806044,-0.016496369615197,0.070489898324013],[0.013734556734562,0.063907027244568,0.0095751471817493]],[[-0.032568696886301,0.12541049718857,-0.033607583492994],[0.028369974344969,-0.0068800505250692,0.088023811578751],[0.021618580445647,-0.13277196884155,0.023051721975207]],[[0.048992775380611,-0.055426958948374,-0.012713464908302],[-0.1764013916254,-0.13808964192867,-0.050092503428459],[0.019922390580177,-0.052379671484232,0.024203395470977]],[[0.040382470935583,-0.0034925695508718,-0.059729944914579],[-0.055094558745623,0.033766303211451,-0.013115898706019],[-0.0219397675246,0.056499917060137,0.036660231649876]],[[-0.023869397118688,-0.023074107244611,-0.1094461902976],[0.0042241374030709,-0.084216319024563,-0.13157486915588],[-0.025768660008907,0.002379932673648,-0.091561377048492]],[[0.027365809306502,-0.046062916517258,0.0021853346843272],[-0.083150289952755,0.10031863301992,0.11120584607124],[-0.077343627810478,0.018805503845215,0.13419859111309]],[[0.10282501578331,0.051483243703842,-0.075555026531219],[0.052414048463106,-0.025337558239698,0.032375808805227],[0.026927661150694,0.070157580077648,0.089223772287369]],[[-0.056908059865236,0.026306387037039,0.07583174854517],[-0.14309875667095,0.09112373739481,-0.031863555312157],[0.086664251983166,-0.1618686914444,-0.065817959606647]],[[0.072862505912781,0.009293450973928,0.13292028009892],[0.067801848053932,-0.027196897193789,-0.027375204488635],[-0.035010490566492,-0.070352002978325,-0.0036283014342189]],[[0.014469434507191,0.089630730450153,0.089678570628166],[0.081091955304146,-0.060445629060268,-0.0043644243851304],[-0.070030868053436,0.089432716369629,-0.019240222871304]],[[0.024771150201559,-0.017891077324748,0.065712168812752],[0.058569200336933,-0.037003271281719,0.10629502683878],[0.03663356974721,0.071279078722,0.1096022054553]],[[0.056260298937559,-0.0078152492642403,-0.073189921677113],[-0.025348719209433,0.036031991243362,-0.14584290981293],[0.02996176853776,0.023937148973346,-0.13314618170261]],[[-0.018751716241241,0.050772901624441,-0.0145846279338],[0.030565820634365,-0.0244976952672,-0.097450666129589],[-0.019927229732275,-0.024004828184843,0.0075128036551178]],[[-0.063091807067394,-0.055821567773819,0.13885030150414],[0.067831762135029,0.11921801418066,0.04777267575264],[0.038499444723129,-0.010195787996054,0.011937341652811]],[[0.060094900429249,0.080492302775383,-0.03400344774127],[0.05103912577033,-0.074437581002712,-0.13750497996807],[-0.080584175884724,0.060351148247719,-0.03175426274538]],[[0.028616761788726,0.039008248597383,-0.048584848642349],[-0.061667498201132,-0.087827757000923,0.03459108620882],[-0.067534945905209,0.00322883320041,-0.0096170380711555]],[[0.024284828454256,-0.10198699682951,-0.03765469416976],[-0.065160423517227,0.060306925326586,-0.072854071855545],[-0.10174816101789,-0.03453852981329,0.016106583178043]],[[0.0039831860922277,-0.01367187872529,0.030526857823133],[0.0041129128076136,-0.015554768033326,0.015161542221904],[-0.12042424827814,0.025025418028235,0.020759381353855]],[[0.041169598698616,0.095340438187122,-0.06475855410099],[-0.016999438405037,-0.12719026207924,0.012141471728683],[-0.18252603709698,-0.072092965245247,0.034365262836218]],[[-0.030454369261861,0.04286016151309,0.0056468066759408],[-0.052681133151054,-0.042586088180542,0.015540275722742],[0.13459421694279,0.10034736245871,0.039690162986517]],[[-0.032716285437346,-0.19513596594334,-0.16488701105118],[0.029672583565116,0.01926059089601,-0.18926173448563],[-0.02498709410429,0.015563380904496,0.0023011118173599]],[[-0.086804702877998,-0.058287393301725,-0.080867387354374],[0.054449714720249,0.047951493412256,-0.055766083300114],[-0.010325312614441,-0.0047228410840034,-0.04181332886219]],[[0.038136392831802,-0.039392597973347,-0.010697943158448],[-0.080595403909683,-0.033106919378042,0.044295363128185],[0.02113245986402,-0.047411799430847,-0.05008514970541]],[[-0.0077045131474733,-0.039503369480371,-0.030456203967333],[-0.0027086713816971,0.036074046045542,-0.12461631000042],[0.039226591587067,-0.025633793324232,-0.037429749965668]],[[-0.098626054823399,-0.072775311768055,-0.020313605666161],[-0.040639013051987,-0.0032537716906518,-0.042789112776518],[0.034773513674736,-0.11032305657864,-0.062075525522232]],[[0.039209645241499,0.026505570858717,-0.12529937922955],[-0.023779416456819,0.01526490598917,0.10142000764608],[0.054238986223936,0.021364523097873,0.030272563919425]],[[0.0385259129107,-0.0082934321835637,-0.090709954500198],[-0.012130414135754,-0.04388539493084,-0.076554700732231],[0.015027997083962,-0.090902358293533,0.0095613142475486]],[[-0.053521227091551,-0.08405476808548,0.042854353785515],[-0.018372789025307,0.016835546121001,5.7335339079145e-05],[0.013264301232994,0.023929646238685,0.00067149073584005]],[[-0.037994883954525,-0.025312023237348,0.03431298583746],[0.025105467066169,0.0050466228276491,0.07550884783268],[-0.030003493651748,-0.040326129645109,0.050292771309614]],[[-0.046517614275217,-0.043775707483292,-0.15903095901012],[0.039701666682959,0.11250047385693,-0.05198972299695],[-0.030706813558936,0.063639022409916,0.02318593673408]],[[0.037369813770056,0.064617849886417,0.12452954798937],[-0.069640561938286,-0.030275756493211,-0.041364546865225],[-0.036327868700027,-0.19078940153122,-0.11822484433651]],[[-0.06369087100029,-0.060317270457745,-0.0059929918497801],[-0.021945253014565,-0.10182945430279,-0.22273880243301],[0.09484975039959,0.030870964750648,-0.0065250718034804]],[[0.031514905393124,0.0054206689819694,-0.080979190766811],[0.040321283042431,-0.028539024293423,-0.0088451923802495],[-0.020291427150369,-0.0095472205430269,-0.028786750510335]],[[-0.011186364106834,0.043120257556438,-0.088377185165882],[-0.11897376179695,-0.1028395742178,-0.13234853744507],[0.10390491038561,0.084752179682255,-0.099693067371845]],[[-0.040537569671869,0.10195285081863,0.075467050075531],[0.17073154449463,0.15261214971542,0.23530173301697],[-0.021250175312161,0.032943870872259,-0.047435626387596]],[[-0.075352475047112,0.082611367106438,0.017715668305755],[0.07230469584465,-0.04729874804616,-0.033560018986464],[-0.20276518166065,-0.052109554409981,-0.053660996258259]],[[-0.15410943329334,-0.10857381671667,-0.13753773272038],[-0.064387902617455,0.10326099395752,0.064063556492329],[0.12730661034584,0.02722591906786,0.15491017699242]],[[-0.153076633811,-0.10311621427536,-0.034109976142645],[-0.011654647067189,-0.15116231143475,-0.091666795313358],[-0.052575137466192,-0.022749120369554,0.0019079972989857]],[[0.014999900013208,0.043092977255583,0.016408720985055],[0.016965268179774,-0.0060369819402695,0.020684214308858],[-0.085403501987457,-0.050731271505356,-0.059100050479174]],[[0.0011908347951248,0.015822721645236,-0.050348356366158],[-0.010064198635519,0.032711427658796,0.017042048275471],[0.0085930544883013,-0.065955370664597,0.023354209959507]],[[0.043090108782053,0.0095953233540058,0.064287059009075],[0.024099139496684,-0.033902730792761,0.039393346756697],[0.030813341960311,-0.040837492793798,-0.007151102181524]],[[0.06036376953125,-0.041026547551155,-0.01733835786581],[6.5647407609504e-05,-0.03492147102952,-0.0307582244277],[0.042939390987158,-0.013595532625914,-0.11479239910841]],[[-0.07360802590847,0.028537584468722,-0.086556144058704],[-0.056071050465107,0.0085111493244767,0.048988070338964],[0.010837525129318,-0.024706125259399,-0.012444160878658]],[[0.056488819420338,0.053955391049385,0.042869597673416],[-0.012049895711243,-0.055157989263535,-0.017284212633967],[-0.072871223092079,-0.1166163906455,-0.017002126201987]],[[0.02648426219821,0.017043996602297,0.027738016098738],[-0.041298374533653,0.055550441145897,-0.067494072020054],[0.087044090032578,0.030450591817498,-0.048719458281994]]],[[[0.046906020492315,-0.042898535728455,0.047734849154949],[0.051800966262817,-0.0090481145307422,0.039574064314365],[-0.0048065832816064,0.011504770256579,0.018139641731977]],[[0.071044772863388,-0.042830374091864,0.0043166736140847],[0.0060806283727288,0.084102995693684,0.061567466706038],[-0.014703189954162,-0.015468313358724,0.10325512290001]],[[-0.077126063406467,-0.083278268575668,-0.073448121547699],[0.044417142868042,-0.083642370998859,-0.086133345961571],[0.0023227506317198,0.0054902057163417,-0.072826609015465]],[[0.043246880173683,-0.045654390007257,0.043855778872967],[-0.0056683807633817,-0.03279060125351,-0.015301460400224],[-0.24253191053867,0.021774984896183,0.043992504477501]],[[-0.009914418682456,-0.055687416344881,-0.017433853819966],[-0.062974318861961,0.023401472717524,0.048016734421253],[-0.0064292508177459,-0.20863896608353,0.031248174607754]],[[-0.02879025042057,-0.024583991616964,-0.014288971200585],[0.088156044483185,-0.10856167972088,0.035207934677601],[0.026223549619317,0.015054917894304,-0.20092809200287]],[[0.018108058720827,0.028159422799945,0.047641597688198],[-0.080705270171165,-0.019109115004539,0.033941507339478],[-0.045703835785389,-0.055694453418255,0.04947679117322]],[[-0.053775679320097,0.039234548807144,-0.013956418260932],[-0.034116927534342,-0.011739366687834,-0.0024260370992124],[0.086994163691998,0.15102972090244,-0.0043866983614862]],[[0.0047483257949352,0.024576837196946,-0.03373659029603],[0.026267180219293,0.043555069714785,-0.13533800840378],[-0.0031177091877908,0.053885616362095,-0.11267024278641]],[[0.062191594392061,-0.18321707844734,-0.055503234267235],[0.11097821593285,0.099408119916916,-0.052345637232065],[-0.093851648271084,0.012152728624642,-0.13224747776985]],[[0.046633914113045,0.098285682499409,0.052899111062288],[-0.13154953718185,-0.037352681159973,-0.0725172534585],[0.017196711152792,-0.060663834214211,-0.10950493812561]],[[-0.032345645129681,0.0067030787467957,0.036649402230978],[-0.05589222162962,-0.07770462334156,-0.020319094881415],[0.03846064209938,-0.056823913007975,0.036315385252237]],[[0.0024592354893684,0.0077003729529679,0.015737298876047],[-0.014965080656111,0.098238468170166,-0.018932865932584],[-0.051397252827883,-0.04283232614398,-0.0023242514580488]],[[0.022489294409752,-0.005209774710238,0.010024697519839],[-0.091603130102158,-0.008538325317204,0.0055776201188564],[0.039202202111483,-0.0082669826224446,0.00034287112066522]],[[0.002698334865272,-0.0018448719056323,-0.096287563443184],[-0.038451258093119,0.075795166194439,0.058978155255318],[-0.00045701340422966,0.063020490109921,-0.0048356121405959]],[[-0.037136718630791,0.045691590756178,0.05700633302331],[0.030199868604541,0.00037308293394744,0.15365029871464],[-0.026232922449708,-0.074735708534718,-0.0061838221736252]],[[-0.028149977326393,-0.19393764436245,0.029438078403473],[0.10034729540348,0.073360666632652,0.058390039950609],[0.0031585860997438,-0.0080875046551228,-0.015603598207235]],[[-0.045767024159431,0.0039376500062644,0.068436898291111],[0.011298486031592,-0.12077629566193,0.077814556658268],[0.034486915916204,-0.06736832857132,0.0024536685086787]],[[-0.054894238710403,-0.051410969346762,-0.092664822936058],[0.040197402238846,-0.0093344524502754,-0.079080514609814],[-0.037936445325613,-0.017812995240092,0.050139103084803]],[[0.072648398578167,0.0079284971579909,0.10568409413099],[-0.072373613715172,0.096093446016312,0.075169160962105],[-0.0063204048201442,-0.089634597301483,0.037039387971163]],[[0.15982259809971,0.12477799504995,0.086474664509296],[0.11252338439226,0.012157739140093,0.12978887557983],[0.087066784501076,0.073151051998138,0.044241484254599]],[[-0.023450519889593,0.014595127664506,0.041604116559029],[0.11997386813164,-0.098308145999908,-0.076079741120338],[0.031466905027628,-0.040340296924114,-0.061334911733866]],[[0.015399535186589,0.040434151887894,-0.012668202631176],[0.0086222030222416,-0.073306918144226,0.045687798410654],[-0.039855647832155,0.012770435772836,0.012890018522739]],[[0.097112596035004,-0.011351662687957,-0.039698120206594],[0.027137475088239,-0.020549094304442,0.016670919954777],[-0.01747322268784,0.084853388369083,0.01995499804616]],[[-0.042663380503654,-0.026477005332708,0.021526446565986],[0.14198277890682,-0.10229329019785,0.028747592121363],[-0.02452022396028,0.033386699855328,0.036131214350462]],[[0.077322334051132,0.071096003055573,-0.0098274135962129],[0.058369439095259,-0.016019897535443,0.038771126419306],[0.019035175442696,-0.052401345223188,0.022967534139752]],[[0.025820706039667,0.055288050323725,-0.084126360714436],[-0.10164330899715,-0.03891360014677,-0.020666170865297],[0.072045490145683,-0.015086822211742,-0.027933588251472]],[[0.07590838521719,0.13007648289204,0.071294397115707],[0.076327189803123,-0.0047308527864516,-0.01212489977479],[-0.057121846824884,-0.037609942257404,0.08837053924799]],[[0.046998906880617,0.068074397742748,-0.092915318906307],[-0.051033087074757,0.13691195845604,-0.0068468693643808],[-0.051504518836737,0.0014360893983394,-0.0071411654353142]],[[-0.0071877902373672,-0.022363053634763,-0.021334873512387],[-0.15166443586349,0.016829671338201,0.018498757854104],[0.0051691848784685,0.017992340028286,-0.05090419575572]],[[0.047954380512238,-0.080651178956032,-0.021442048251629],[0.0056101926602423,0.018782209604979,0.034121710807085],[-0.088342174887657,0.06548435986042,0.092013522982597]],[[0.0482372418046,0.025943988934159,-0.012333108112216],[-0.059287682175636,-0.10837809741497,0.018347272649407],[-0.076585955917835,-0.14176954329014,-0.026970896869898]],[[0.070658311247826,0.029325695708394,0.077380761504173],[-0.013548097573221,0.11193942278624,-0.0090080043300986],[0.098123252391815,-0.041599631309509,0.021467646583915]],[[-0.044174335896969,0.057976294308901,-0.065563261508942],[-0.081866189837456,-0.035034488886595,-0.031196739524603],[-0.10228011757135,0.022129088640213,-0.04031378775835]],[[-0.0090065598487854,0.066494546830654,0.059147503226995],[0.067763112485409,-0.131642177701,-0.018155248835683],[0.027527369558811,-0.006362862419337,-0.0091071585193276]],[[-0.057050116360188,-0.12312620133162,-0.096919097006321],[-0.043205577880144,-0.037994287908077,-0.037091001868248],[-0.049809105694294,0.011453240178525,0.02879885211587]],[[0.036411102861166,-0.16472835838795,-0.099742710590363],[0.017198570072651,0.031699329614639,-0.04998766258359],[-0.03064925968647,0.007755002938211,0.03565850481391]],[[-0.036117054522038,0.061586480587721,0.0050384164787829],[0.070680975914001,-0.10061024129391,-0.055156663060188],[-0.15313124656677,0.0013786763884127,0.046170633286238]],[[0.076344557106495,0.05182570964098,0.050034411251545],[0.072093293070793,0.018359880894423,0.047830831259489],[-0.062358796596527,-0.096418507397175,0.087593495845795]],[[0.03983760625124,0.094543188810349,-0.070373855531216],[0.0092741148546338,-0.015629244968295,0.026472562924027],[-0.0521105453372,0.040870226919651,0.034628473222256]],[[-0.0058739720843732,-0.029522679746151,-0.015611559152603],[0.026776731014252,0.010998692363501,0.0062137800268829],[-0.0010794447734952,-0.076568730175495,-0.036376550793648]],[[-0.07447275519371,0.068760335445404,-0.066960826516151],[0.010211319662631,-0.069602809846401,-0.18471547961235],[0.061769768595695,0.056043788790703,0.054003108292818]],[[-0.0378761254251,-0.048323109745979,-0.053856991231441],[-0.048487011343241,0.0019763619638979,0.038763053715229],[0.061769891530275,0.060762748122215,-0.0040098545141518]],[[-0.020626397803426,-0.10984291136265,-0.016773486509919],[-0.011819309554994,0.0010281068971381,-0.08355924487114],[-0.10384295880795,-0.035701300948858,0.1338524222374]],[[0.014043825678527,-0.10032245516777,0.12003872543573],[-0.11863858252764,0.010514450259507,0.022921035066247],[-0.0029272742103785,-0.038054931908846,-0.094862528145313]],[[-0.073867671191692,0.019836774095893,-0.13188438117504],[0.049830041825771,0.026238150894642,0.045876398682594],[-0.024350946769118,-0.039858926087618,0.02989755384624]],[[-0.047380547970533,-0.0096811056137085,0.091764017939568],[0.0027082927990705,-0.03268776461482,-0.028455836698413],[0.0048333751037717,-0.090913668274879,-0.1031715720892]],[[-0.025206616148353,0.0073904767632484,0.049700871109962],[-0.034524604678154,-0.042218007147312,0.0038801785558462],[0.0056397509761155,-0.012730550020933,-0.034095402806997]],[[0.010687778703868,0.036685511469841,-0.030361032113433],[-0.092524908483028,0.029592789709568,0.088509991765022],[0.062222622334957,-0.061112012714148,0.016114622354507]],[[-0.016211625188589,0.027627794072032,0.042863078415394],[0.051833387464285,0.020623488351703,-0.11669459939003],[0.053692348301411,0.062044028192759,-0.06874206662178]],[[-0.037067208439112,-0.050866913050413,0.011932304129004],[-0.12215968966484,-0.012528525665402,-0.030821530148387],[0.16114163398743,0.048863157629967,0.0011598697165027]],[[-0.07525198161602,-0.10343359410763,-0.0026654647663236],[0.12171822041273,0.016367852687836,0.0066351164132357],[-0.010191542096436,0.057267356663942,0.07547951489687]],[[-0.056823752820492,0.098034977912903,0.031613279134035],[-0.031842097640038,0.02048222348094,0.080530419945717],[-0.10796770453453,-0.0042647109366953,0.01594452932477]],[[0.12977941334248,-0.0057805688120425,-0.028791209682822],[0.079136349260807,0.20012405514717,0.042998731136322],[0.037332452833652,0.090727634727955,0.013437843881547]],[[-0.035589072853327,0.074003733694553,0.051812987774611],[0.042807374149561,0.016364216804504,0.010173747316003],[-0.070190973579884,-0.11318157613277,0.023537637665868]],[[-0.1161299943924,0.020197305828333,0.20277364552021],[-0.00045538443373516,0.033796697854996,0.038120340555906],[-0.10067218542099,0.031822800636292,0.018029512837529]],[[-0.0059536378830671,0.023440027609468,0.13420341908932],[-0.074933387339115,0.027451997622848,0.04384097084403],[-0.12020348012447,0.1031386256218,0.086425490677357]],[[-0.018014131113887,0.036829140037298,-0.01562119834125],[0.01981608197093,-0.041402138769627,0.024520063772798],[0.036311022937298,-0.013880765996873,0.041396833956242]],[[-0.080453127622604,0.062208756804466,-0.079683803021908],[0.038851134479046,-0.03244312107563,-0.031195063143969],[-0.01582982391119,0.011965966783464,-0.061501543968916]],[[-0.029186835512519,-0.0058527966029942,0.0084808263927698],[0.022110784426332,-0.00072459713555872,0.012875624001026],[0.036563236266375,0.034900553524494,0.0075084632262588]],[[0.025020696222782,0.024343278259039,-0.046782076358795],[-0.030403215438128,0.027874678373337,0.026001907885075],[-0.056680958718061,-0.11648597568274,0.027586363255978]],[[0.035938061773777,0.067191019654274,0.047098983079195],[0.0058942874893546,-0.020064193755388,-0.22332519292831],[-0.089826591312885,0.081627868115902,-0.052203483879566]],[[0.057779833674431,0.09092091023922,0.019035229459405],[-0.03515112772584,-0.10071081668139,-0.12051932513714],[-0.10935620218515,-0.0040906080976129,-0.061233762651682]],[[-0.012600916437805,0.041094515472651,-0.06296630948782],[-0.016761669889092,0.087923943996429,0.069814749062061],[0.053393170237541,-0.051687616854906,-0.10219596326351]]],[[[0.11140272021294,0.053228057920933,-0.040459182113409],[0.12697514891624,0.041989978402853,0.008136723190546],[0.052619829773903,-0.023530745878816,-0.081416770815849]],[[-0.012130712158978,0.081725969910622,0.069278098642826],[-0.037691056728363,0.023884613066912,-0.013675121590495],[0.050372645258904,0.029215890914202,0.028537090867758]],[[0.02422833442688,-0.037556502968073,-0.060409680008888],[0.011946399696171,-0.0077367164194584,-0.031124612316489],[-0.057384587824345,0.023065527901053,-0.09423340857029]],[[0.002579708583653,0.024963155388832,0.0075871651060879],[-0.071916982531548,-0.021362271159887,-0.017583614215255],[0.048376251012087,-0.091338969767094,-0.048269417136908]],[[0.071214124560356,0.081765428185463,-0.13876104354858],[0.013743718154728,0.022037826478481,-0.026081923395395],[0.014305071905255,-0.017807636409998,-0.098658449947834]],[[-0.049178209155798,0.035824060440063,-0.020067719742656],[-0.017168095335364,-0.032579500228167,-0.026581121608615],[-0.013531097210944,0.019797760993242,0.028732310980558]],[[-0.015445293858647,0.021353866904974,-0.037899095565081],[-0.12364600598812,0.03073606453836,0.012200428172946],[-0.053990058600903,-0.023877220228314,0.014629588462412]],[[0.036366410553455,-0.021893477067351,-0.0021710123401135],[0.022868843749166,0.010690323077142,0.055489297956228],[0.05393972247839,0.013769027777016,0.11170024424791]],[[0.07290817797184,0.2539863884449,0.25340431928635],[-0.21230512857437,-0.091827750205994,0.07901968806982],[-0.24031737446785,-0.19775424897671,-0.10070054233074]],[[0.0094516510143876,0.11180707067251,0.020919801667333],[-0.02830558642745,-0.028876777738333,-0.057860847562551],[0.083164513111115,-0.058400455862284,-0.07502294331789]],[[-0.041471179574728,0.048421707004309,0.078650899231434],[-0.015426609665155,-0.050880450755358,0.12949253618717],[0.031370125710964,-0.007782971020788,-0.00063464289996773]],[[-0.029476495459676,0.0053275879472494,-0.0071671307086945],[-0.092607699334621,-0.017688613384962,-0.041148856282234],[0.037152659147978,0.0335982888937,-0.0017445476260036]],[[-0.023968849331141,0.022437850013375,-0.095827713608742],[-0.0092105278745294,0.004540091380477,-0.094899378716946],[-0.2001630961895,-0.14347249269485,-0.014735627919436]],[[-0.023547818884254,5.6481123465346e-05,0.023756511509418],[-0.042924873530865,0.070505134761333,0.0051295566372573],[-0.071043752133846,-0.039345510303974,-0.011051744222641]],[[0.051669254899025,0.03383868560195,0.05081083625555],[0.059324514120817,-0.073574297130108,-0.091718599200249],[-0.042023003101349,0.04793981090188,0.050659999251366]],[[-0.08985161036253,-0.015014006756246,0.077271424233913],[-0.010912689380348,-0.057827182114124,0.056090291589499],[-0.16667091846466,-0.13488234579563,-0.046123322099447]],[[0.010191107168794,-0.033869076520205,0.05214050039649],[0.030455395579338,-0.036228373646736,0.043465949594975],[0.040271434932947,0.056452125310898,0.040097177028656]],[[0.012309153564274,-0.01957200281322,-0.040796529501677],[-0.052948355674744,-0.031073585152626,-0.015822550281882],[0.021661998704076,0.041160684078932,-0.056911192834377]],[[-0.046872191131115,0.04246361553669,0.055489055812359],[-0.031542368233204,0.057352226227522,0.060700826346874],[-0.11980786174536,-0.059180077165365,-0.019179061055183]],[[0.066921003162861,0.054546371102333,-0.067445829510689],[-0.021808594465256,-0.024102354422212,-0.028800265863538],[-0.080324418842793,-0.0047135902568698,0.0069548431783915]],[[0.056884907186031,0.044779855757952,0.056742593646049],[-0.022888343781233,-0.0096620824187994,0.013763835653663],[0.030982792377472,0.028224360197783,0.0075771505944431]],[[-0.00098728353623301,0.097612380981445,0.0078870048746467],[0.011287353001535,0.07696882635355,-0.081467352807522],[-0.1924701333046,-0.11612790822983,-0.15702019631863]],[[0.019331088289618,-0.084983378648758,-0.023465685546398],[0.044786147773266,0.028439279645681,-0.025439884513617],[0.10981070995331,-0.027704751119018,-0.035774804651737]],[[-0.037900298833847,0.036435540765524,0.061050619930029],[0.011149709112942,-0.054558016359806,0.049485396593809],[-0.065019942820072,-0.041226156055927,-0.054395031183958]],[[0.04585962370038,0.070466279983521,0.090593926608562],[0.068295232951641,0.021940616890788,0.056493308395147],[0.13044112920761,-0.024262340739369,-0.083222426474094]],[[-0.020774381235242,0.058083221316338,0.072172775864601],[-0.073306746780872,-0.047093488276005,-4.9944435886573e-05],[-0.063887402415276,-0.040010243654251,0.029515195637941]],[[0.10281336307526,0.06160831078887,0.025919022038579],[-0.013383779674768,-0.056395202875137,-0.036110758781433],[-0.078573063015938,0.0056374631822109,-0.018472097814083]],[[0.0080051003023982,0.1375757753849,0.14478644728661],[-0.040554087609053,0.069393076002598,0.14666813611984],[-0.087533809244633,-0.13952718675137,-0.042023431509733]],[[-0.023178061470389,0.018198622390628,0.0079480819404125],[-0.047498609870672,-0.076772443950176,-0.02737707644701],[0.064230754971504,-0.010759217664599,-0.016732396557927]],[[0.033659383654594,0.13396248221397,-0.0019241113914177],[-0.12262000888586,-0.099403277039528,-0.049365747720003],[0.0058986749500036,0.016058642417192,-0.0042926520109177]],[[-0.0055169891566038,-0.12795302271843,-0.082137137651443],[-0.14633725583553,0.039005555212498,-0.038247119635344],[0.11264863610268,-0.077214412391186,0.12507236003876]],[[-0.1128685772419,-0.12660005688667,0.084898769855499],[-0.035926841199398,0.040030591189861,0.084763064980507],[-0.17505989968777,0.043907579034567,0.079574629664421]],[[-0.0071247620508075,-0.11492709815502,-0.026837296783924],[-0.0075468551367521,-0.048836067318916,-0.11492116004229],[0.088819690048695,0.011561720632017,-0.050951797515154]],[[-0.030625980347395,-0.012907708995044,0.082029812037945],[0.060212105512619,-0.07498637586832,0.0076392777264118],[0.091016575694084,0.020927442237735,0.005816251039505]],[[0.03428553789854,0.11548492312431,-0.0021307412534952],[0.063872180879116,0.29105150699615,0.16399146616459],[-0.16572493314743,0.02889177761972,0.083076536655426]],[[0.095164284110069,-0.01003038790077,0.0029191412031651],[0.030394822359085,-0.02130888774991,-0.044980578124523],[0.037918366491795,0.012171401642263,0.020126966759562]],[[-0.029317023232579,-0.03259514644742,-0.049642477184534],[-0.08565566688776,-0.074007272720337,-0.060407534241676],[0.053892597556114,-0.0045022736303508,0.035506702959538]],[[-0.16348020732403,-0.36631798744202,-0.49218118190765],[0.20015369355679,0.06619618088007,-0.12630397081375],[0.38883462548256,0.22478207945824,0.0089239869266748]],[[0.0039724525995553,0.0059772739186883,-0.047087121754885],[0.087496131658554,-0.047670152038336,-0.022938514128327],[-0.063134960830212,-0.01091986708343,0.067998021841049]],[[-0.20439383387566,-0.1811862885952,-0.092715926468372],[-0.11303901672363,-0.15605220198631,-0.20379480719566],[0.075714610517025,-0.10800087451935,-0.055536165833473]],[[-0.041431874036789,-0.091892816126347,0.0039479094557464],[-0.046210471540689,-0.076010711491108,0.048464611172676],[-0.0079139452427626,-0.059994459152222,0.092280253767967]],[[-0.051686491817236,0.10749460756779,0.075930520892143],[-0.1342841386795,0.010844108648598,0.14030002057552],[-0.08525475114584,-0.034797556698322,0.05353519320488]],[[-0.0052468571811914,0.012100649997592,-0.097639836370945],[0.0076800165697932,0.12627638876438,0.052769511938095],[-0.10056660324335,-0.073569864034653,0.058707427233458]],[[0.0306002125144,-0.024468315765262,0.014293775893748],[-0.047941956669092,-0.18724648654461,0.01779467985034],[-0.0034107069950551,-0.060808125883341,0.023473538458347]],[[-0.050176277756691,-0.026321765035391,-0.076259732246399],[0.054964117705822,0.021844090893865,-0.0011441522510722],[0.19798520207405,-0.049329981207848,-0.1003440991044]],[[-0.057488583028316,-0.014412318356335,0.046978421509266],[-0.10778204351664,-0.14889414608479,0.072996042668819],[-0.097045764327049,-0.070139370858669,0.0036767122801393]],[[0.093467108905315,-0.031844839453697,-0.11277428269386],[0.11779962480068,-0.015382448211312,0.088342376053333],[0.1006525605917,-0.062622427940369,-0.10888768732548]],[[0.06612154841423,0.0091843819245696,-0.034760482609272],[0.10976965725422,0.032644722610712,-0.017997644841671],[0.043481606990099,0.044440902769566,-0.012586275115609]],[[0.020203664898872,0.010228318162262,0.029966812580824],[0.035697035491467,-0.06317363679409,0.02880322560668],[-0.060981310904026,-0.01122166402638,0.0097573408856988]],[[-0.041062828153372,0.021412512287498,0.030959965661168],[-0.084463529288769,-0.10658995062113,0.057506661862135],[0.0020105277653784,-0.078913547098637,0.015918372198939]],[[-0.038980167359114,-0.04321251064539,-0.015913009643555],[-0.096591331064701,-0.13509939610958,-0.014664922840893],[-0.20006720721722,-0.071296639740467,0.01268567610532]],[[0.060450449585915,0.0056873015128076,-0.073722802102566],[0.041688803583384,0.10269075632095,0.075706213712692],[0.045878395438194,0.0020257504656911,0.044063672423363]],[[-0.038015875965357,-0.11827892810106,0.035879220813513],[0.041646491736174,0.090893015265465,0.08316557854414],[0.018141673877835,0.058817632496357,0.090441390872002]],[[0.078926809132099,0.092500932514668,0.089467115700245],[-0.023808553814888,0.06064223870635,0.16937166452408],[0.065474517643452,0.0077374204993248,0.043001621961594]],[[-0.083770118653774,-0.23053047060966,-0.16703854501247],[-0.061492763459682,-0.0088559770956635,0.02257801964879],[0.11825751513243,0.061568789184093,0.0458944439888]],[[-0.047807514667511,-0.10540442913771,-0.12323895096779],[0.042296025902033,-0.090201318264008,-0.10459968447685],[-0.056482318788767,0.0050156023353338,0.012031516060233]],[[-0.1071759685874,-0.039191618561745,0.10838204622269],[-0.15977603197098,-0.05919024720788,0.019693063572049],[0.018649226054549,-0.13611376285553,-0.003627783851698]],[[-0.01484317984432,0.009769425727427,0.0061545991338789],[0.027562847360969,-0.052779663354158,0.018554953858256],[-0.011800987645984,0.0053991372697055,0.083528190851212]],[[0.02656945772469,0.041686065495014,-0.029877522960305],[-0.04499514400959,0.023417454212904,-0.020053301006556],[0.039977911859751,-0.06202719733119,0.049883130937815]],[[-0.00086359033593908,0.067437581717968,0.092827573418617],[-0.066744863986969,0.0021518168505281,0.069929085671902],[-0.032286919653416,-0.061730023473501,-0.0055184615775943]],[[-0.084385812282562,0.0860475897789,0.1065546348691],[-0.025952847674489,-0.070707932114601,-0.095852628350258],[0.15484823286533,-0.028294935822487,-0.06928239017725]],[[0.061385560780764,0.055435497313738,-0.09821168333292],[0.039148259907961,-0.072491258382797,-0.15686923265457],[-0.059747330844402,-0.14548794925213,0.057875115424395]],[[0.0067668221890926,-0.12032312899828,-0.030964529141784],[-0.052744463086128,-0.0067726448178291,-0.0093310438096523],[0.0062767108902335,-0.032427452504635,0.020204961299896]],[[-0.17191554605961,0.062255762517452,0.17097041010857],[-0.045392729341984,-0.014217622578144,0.043697573244572],[-0.16246557235718,-0.10168031603098,-0.02568095177412]]],[[[-0.048502288758755,0.058324474841356,0.098713040351868],[0.060413952916861,0.017412917688489,0.012213428504765],[-0.021798677742481,-0.056997638195753,-0.012951606884599]],[[-0.0075177829712629,-0.031569719314575,0.010088634677231],[0.012578434310853,-0.00062132289167494,-0.018065894022584],[-0.10512693226337,-0.0064509389922023,0.036053020507097]],[[0.053014863282442,-0.0084500052034855,-0.0030662124045193],[-0.0063038887456059,-0.064070649445057,0.020653318613768],[-0.047268986701965,0.035460848361254,-0.039882693439722]],[[0.0360470674932,0.040641497820616,-0.038075301796198],[-0.011733599938452,-0.04094435274601,-0.021606875583529],[-0.12391225248575,-0.02841598726809,0.011926633305848]],[[-0.014183244667947,0.082074902951717,-0.055664759129286],[0.084905713796616,-0.027481639757752,0.02351376786828],[-0.024366231635213,-0.13830943405628,-0.0068474817089736]],[[-0.077682815492153,0.00074589619180188,-0.0024976832792163],[0.004618217702955,-0.087851025164127,-0.036427967250347],[0.021714339032769,-0.076151371002197,0.057703349739313]],[[0.074739634990692,-0.028907900676131,-0.014633058570325],[-0.037135489284992,0.047022085636854,-0.052975844591856],[-0.023930327966809,0.01377306971699,-0.054020047187805]],[[0.036644443869591,-0.085986189544201,-0.073216676712036],[0.068084500730038,-0.052644427865744,0.0090716313570738],[0.025123819708824,0.035489857196808,0.040434267371893]],[[-0.070919923484325,-0.022269733250141,-0.050748083740473],[-0.083760552108288,0.090174406766891,-0.0074756951071322],[-0.039716240018606,-0.10315816104412,-0.010940841399133]],[[0.028694977983832,0.077476136386395,0.0030996950808913],[-0.016695849597454,-0.020531943067908,0.095786638557911],[-0.058457154780626,-0.065523318946362,-0.024464298039675]],[[-0.028488269075751,0.0093675162643194,-0.038572952151299],[-0.036550223827362,0.089435376226902,-0.035911988466978],[0.06825839728117,-0.0097927805036306,0.019560147076845]],[[-0.010619663633406,-0.0028433753177524,-0.029699487611651],[0.007517515681684,-0.078899078071117,0.040987960994244],[-0.036798991262913,-0.013028293848038,-0.083343341946602]],[[0.0052179084159434,0.018645020201802,-0.03139691054821],[-0.034454539418221,-0.067706629633904,-0.079140797257423],[-0.077948644757271,-0.074405767023563,-0.032179914414883]],[[0.030586339533329,0.074095666408539,0.084159970283508],[0.06689066439867,0.0010160161182284,0.055585149675608],[0.070842124521732,0.030325867235661,-0.014058203436434]],[[0.037429798394442,-0.022540343925357,0.097918845713139],[-0.012875910848379,-0.078005105257034,-0.089434005320072],[0.062011256814003,0.0062147090211511,-0.067116767168045]],[[0.003908546641469,-0.019915021955967,0.036600932478905],[0.042174946516752,-0.011104034259915,0.028417766094208],[-0.0517847687006,-0.016780029982328,0.038093909621239]],[[-0.02416069060564,0.0025545191019773,-0.11806411296129],[-0.018515951931477,-0.039590869098902,0.0055633708834648],[0.022409496828914,0.024951821193099,-0.020543081685901]],[[-0.0090158618986607,0.0087907090783119,-0.078443594276905],[-0.019179536029696,-0.018172383308411,0.0013001690385863],[0.01642395183444,-0.028020353987813,-0.038608651608229]],[[-0.0050305854529142,-0.069143392145634,0.047961834818125],[-0.069727532565594,0.017006423324347,0.0062302742153406],[-0.014758435077965,0.028680263087153,0.021630901843309]],[[0.013930778950453,-0.0018663208466023,0.0056239855475724],[-0.051715787500143,-0.013407704420388,-0.027690654620528],[-0.047223169356585,0.068781591951847,-0.042036861181259]],[[-0.048790723085403,-0.059612650424242,-0.074975900352001],[-0.042034585028887,-0.044607769697905,-0.020460162311792],[0.019371079280972,-0.048935182392597,0.030697483569384]],[[-0.013483240269125,0.082789778709412,-0.010811975225806],[-0.061234496533871,-0.072293341159821,0.016718272119761],[-0.0094416299834847,0.024363154545426,-0.030416375026107]],[[0.013286679983139,-0.049672402441502,-0.00097748823463917],[0.03375244513154,-0.022113021463156,0.011030741967261],[0.056821033358574,-0.0089644556865096,-0.024814566597342]],[[0.040620658546686,-0.032169420272112,0.009513434022665],[-0.030405532568693,-0.058596648275852,-0.0070837740786374],[0.045420899987221,0.069820895791054,0.04455766454339]],[[-0.04835794493556,0.026258483529091,-0.016025822609663],[0.014625038951635,-0.010911350138485,-0.015365627594292],[0.057503152638674,-0.039585147053003,0.02348711527884]],[[-0.030148049816489,-0.020862996578217,0.0064297406934202],[-0.006417402997613,0.028968811035156,-0.05805604159832],[-0.040211714804173,0.035568598657846,-0.067919827997684]],[[-0.056841377168894,0.026852138340473,0.0053538898937404],[-0.076469920575619,-0.023664740845561,-0.066844828426838],[-0.051709815859795,-0.093134470283985,-0.063200429081917]],[[-0.010135287418962,0.03823971003294,0.035902880132198],[0.038829702883959,0.077042542397976,0.063010573387146],[0.011987032368779,-0.060036573559046,0.090734824538231]],[[-0.036939933896065,-0.044570297002792,-0.068850733339787],[-0.041675738990307,0.019889570772648,0.0082564139738679],[-0.056317932903767,0.087960764765739,0.013502540066838]],[[-0.015421431511641,0.0091295735910535,0.0028113790322095],[-0.024781120941043,-0.027411283925176,-0.03517322987318],[0.0024614844005555,0.022851075977087,-0.058584854006767]],[[0.037012778222561,0.010512658394873,-0.11228580772877],[0.045613300055265,-0.094885647296906,-0.069393612444401],[-0.0027376466896385,-0.0067286607809365,0.066094070672989]],[[-0.13814815878868,0.047660570591688,0.030062107369304],[-0.091040909290314,0.034361720085144,0.019516473636031],[-0.0086773335933685,0.039223793894053,0.056010220199823]],[[-0.062379185110331,0.0023316813167185,-0.058432213962078],[0.048033703118563,0.0020504223648459,-0.022377720102668],[-0.019544286653399,-0.0091594494879246,-0.038320600986481]],[[0.0098394164815545,-0.057784967124462,-0.009898915886879],[-0.01631673052907,-0.032422740012407,-0.0020455955527723],[0.012107454240322,-0.035436417907476,-0.032264966517687]],[[0.017805431038141,-0.050519037991762,-0.046802151948214],[0.035854160785675,0.045370049774647,0.0067948708310723],[0.0535555370152,-0.0054385950788856,-0.040069099515676]],[[0.08995221555233,0.12745103240013,-0.0097692152485251],[-0.057605251669884,0.068675227463245,0.095178723335266],[-0.029360169544816,-0.086707077920437,-0.0058617116883397]],[[-0.021958919242024,-0.025233147665858,-0.16603469848633],[0.036351658403873,-0.075299479067326,0.017084676772356],[-0.017551200464368,0.046592269092798,0.01920110732317]],[[0.036674547940493,-0.047462098300457,-0.071774654090405],[-0.034661762416363,0.093232676386833,-0.0066826064139605],[-0.044015083462,0.094382546842098,0.01061265449971]],[[-0.030346728861332,-0.091421082615852,0.022172974422574],[0.038594461977482,-0.012863856740296,-0.00836475007236],[0.015083677135408,-0.037291128188372,-0.0087736360728741]],[[-0.0077784964814782,-0.080510072410107,4.3474887206685e-05],[-0.061632558703423,0.016581319272518,-0.04280761256814],[-0.03325829282403,-0.0046971756964922,0.017654249444604]],[[0.031852759420872,0.033015497028828,-0.044642679393291],[-0.029006559401751,-0.052077822387218,0.039941526949406],[-0.11457618325949,0.085733495652676,-0.078294582664967]],[[-0.13058677315712,-0.060913547873497,-0.014703689143062],[0.027807762846351,0.0054215006530285,-0.016183961182833],[-0.0066054305061698,0.037247598171234,0.04278451576829]],[[-0.10211603343487,-0.086009815335274,0.0027365512214601],[-0.044509474188089,-0.041574340313673,0.077308133244514],[-0.085244722664356,0.05132919177413,0.087583102285862]],[[0.013293623924255,-0.040330830961466,-0.0014212550595403],[0.031295150518417,0.018414504826069,-0.021004479378462],[-0.011434242129326,-0.097002118825912,-0.030203219503164]],[[-0.027833934873343,0.010819752700627,0.027002565562725],[0.091937333345413,0.053770404309034,-0.038615688681602],[0.07592911273241,-0.041401255875826,-0.018522137776017]],[[-0.11441624909639,0.081688463687897,0.032096143811941],[-0.16880470514297,0.0053536919876933,-0.0010217006783932],[-0.0077369133941829,-0.059622760862112,0.032069087028503]],[[0.085282661020756,0.068882010877132,-0.01996548846364],[0.050250664353371,0.011572753079236,0.043938979506493],[-0.029794564470649,-0.02823693677783,-0.029001705348492]],[[-0.044286053627729,0.015740435570478,-0.022458828985691],[0.01608600653708,0.014387087896466,-0.02614869736135],[0.066113047301769,0.076846495270729,-0.056426707655191]],[[-0.013587984256446,-0.022820236161351,0.0048693069256842],[-0.0074206027202308,0.0014440803788602,-0.0038949057925493],[0.091312602162361,-0.037635482847691,-0.096551284193993]],[[0.016413442790508,-0.028177203610539,0.032051175832748],[0.018327511847019,-0.038355089724064,0.015066163614392],[-0.068589739501476,0.00097580009605736,0.068090617656708]],[[-0.0050848480314016,0.017229601740837,-0.0075675393454731],[-0.095777697861195,-0.028243388980627,-0.0038790120743215],[-0.027210237458348,0.012978441081941,0.045454572886229]],[[-0.06241862475872,7.2351504059043e-05,-0.019622949883342],[-0.0031878517474979,-0.027887023985386,-0.00045581100857817],[-0.027832664549351,-0.021443391218781,0.097929909825325]],[[-0.051715165376663,0.12896247208118,-0.10424194484949],[-0.063838310539722,0.054801072925329,0.0082454746589065],[-0.0070489370264113,-0.0034025146160275,-0.026943912729621]],[[0.062915153801441,0.024580331519246,0.11702855676413],[0.077405609190464,0.03741355240345,0.0075502237305045],[-0.016779504716396,0.051656972616911,0.14926609396935]],[[0.041877716779709,-0.021479103714228,0.0023224612232298],[0.029749725013971,0.070934310555458,0.018816646188498],[0.039595495909452,-0.024531349539757,0.011816055513918]],[[-0.010187150910497,0.04569074884057,-0.028079865500331],[-0.035683397203684,0.022164164111018,0.011525006964803],[-0.037771482020617,-0.0009774254867807,0.042207900434732]],[[0.017566943541169,-0.07477892935276,-0.099327482283115],[-0.044216331094503,-0.077563464641571,6.4423016738147e-05],[-0.0095694130286574,-0.023885807022452,0.010175679810345]],[[0.0173863414675,0.0066989841870964,0.027061026543379],[0.010195329785347,0.040784675627947,-0.00092968973331153],[-0.00043201079824939,0.014578309841454,0.037851236760616]],[[-0.07270772755146,-0.017118785530329,0.088438704609871],[0.018767047673464,0.0041616633534431,-0.01430933829397],[-0.11885697394609,0.014385430142283,-0.057842750102282]],[[-0.030079495161772,0.029075654223561,0.05206810310483],[-0.02898327447474,0.031436752527952,-0.048476997762918],[0.010016155429184,-0.020713523030281,0.053454861044884]],[[0.0082030659541488,0.065968081355095,-0.063722662627697],[-0.012086885981262,0.022478856146336,0.022174019366503],[0.05538322404027,-0.022874798625708,0.044177889823914]],[[0.029103588312864,-0.012262165546417,0.053037978708744],[0.073406688868999,0.034849084913731,0.0037778906989843],[-0.00027207404491492,-0.024524684995413,-0.09722276777029]],[[0.020319582894444,-0.078921921551228,0.026079757139087],[-0.025639519095421,-0.035628251731396,-0.024799959734082],[-0.040056299418211,-0.02513593994081,0.0052213263697922]],[[0.028930155560374,-0.018125249072909,0.055496148765087],[0.037568360567093,-0.031137837097049,-0.015485408715904],[-0.06221991404891,-0.076121509075165,0.010218723677099]]],[[[-0.028795542195439,-0.01743640191853,-0.045081444084644],[-0.069039806723595,-0.05440840870142,-0.064758308231831],[0.023037662729621,0.034934867173433,-0.08284156024456]],[[0.076431311666965,0.11154505610466,0.062291976064444],[-0.08467710763216,0.069286070764065,0.074468933045864],[0.070999667048454,-0.019979642704129,-0.044642727822065]],[[-0.06658449023962,0.0045602298341691,0.032084308564663],[-0.013360974378884,-0.055546075105667,-0.047381300479174],[0.006713739130646,-0.0320252366364,0.068854741752148]],[[0.0092742396518588,0.004288372118026,0.069733574986458],[0.0069261244498193,-0.062702037394047,-0.039897754788399],[0.0094894412904978,-0.058815598487854,-0.079760320484638]],[[-0.12805072963238,0.032981537282467,0.0060511087067425],[0.037775736302137,-0.021906452253461,-0.033327464014292],[0.0014279460301623,0.03227823600173,0.0082578575238585]],[[-0.041140105575323,0.042162738740444,0.019905790686607],[-0.084390662610531,-0.037690825760365,0.011827869340777],[-0.032158464193344,-0.097595721483231,0.056957501918077]],[[-0.049674049019814,0.0060625965707004,0.0082808854058385],[-0.018527729436755,-0.06745795160532,0.067298598587513],[-0.033911842852831,0.060408901423216,-0.07944244146347]],[[0.031842693686485,-0.072080291807652,-0.0067058946006],[-0.019804058596492,-0.083058781921864,0.04340423643589],[-0.061747618019581,-0.084413766860962,-0.0001422210916644]],[[-0.025997597724199,0.014266477897763,0.1035899668932],[-0.0056672426871955,-0.0085132056847215,-0.03116150200367],[-0.056388162076473,0.038721386343241,-0.018096024170518]],[[-0.0078268675133586,-0.031517721712589,0.071892723441124],[-0.029844572767615,-0.11793043464422,0.030786229297519],[-0.070979490876198,0.048304203897715,0.073511376976967]],[[0.019963102415204,-0.021013211458921,0.065056324005127],[0.07856772094965,-0.024166837334633,-0.051097102463245],[-0.026710610836744,-0.048445347696543,-0.099947847425938]],[[0.0025161663070321,0.053337257355452,0.10465800017118],[-0.019288126379251,-0.034905269742012,0.068415731191635],[-0.043527372181416,0.029721580445766,-0.044416882097721]],[[0.013733638450503,-0.00066994823282585,-0.0063597187399864],[-0.093995951116085,-0.066774941980839,-0.0064693694002926],[-0.047743428498507,-0.14709244668484,-0.032071977853775]],[[-0.027165612205863,0.0027687456458807,0.041543364524841],[0.054246328771114,0.046952024102211,0.031615048646927],[-0.013676096685231,0.11712975800037,-0.065347328782082]],[[0.022340644150972,-0.039759203791618,-0.06998273730278],[-0.075077854096889,-0.0023843813687563,-0.13258388638496],[0.029575370252132,0.0055274926126003,-0.021674631163478]],[[-0.043083187192678,0.067753687500954,-0.020921766757965],[-0.054306797683239,-0.10496339946985,0.051605768501759],[-0.00029052447644062,-0.088278487324715,-0.059987518936396]],[[-0.00047077363706194,-0.021029496565461,-0.016153585165739],[-0.097517549991608,-0.041584484279156,-0.017097815871239],[0.014671979472041,0.047656677663326,-0.037050873041153]],[[-0.0086682382971048,-0.05147822573781,-0.011966491118073],[-0.042620126157999,-0.028812248259783,-0.038896840065718],[-0.063481621444225,0.035702247172594,-0.0068314438685775]],[[0.046467553824186,-0.010278772562742,0.0054367608390749],[-0.015250238589942,0.029370609670877,-0.051117435097694],[0.050378277897835,-0.0051381378434598,0.011873258277774]],[[0.0037313604261726,0.0046433843672276,0.0091496929526329],[-0.0058986828662455,-0.013384965248406,-0.016876041889191],[0.0043267691507936,-0.05272164568305,0.025291927158833]],[[-0.019339926540852,-0.005331345833838,-0.12652872502804],[-0.00075896916678175,0.089499346911907,-0.12554979324341],[0.040347274392843,0.020494813099504,-0.082220114767551]],[[0.089343525469303,0.043886378407478,0.0067798616364598],[0.090494826436043,0.033098746091127,-0.069447048008442],[-0.048792686313391,0.017417937517166,0.070207834243774]],[[0.04681583866477,-0.029877154156566,0.028137700632215],[-0.016805348917842,-0.043530069291592,0.024839635938406],[-0.0039631361141801,0.038949135690928,-0.035516645759344]],[[0.0078909154981375,-0.066566273570061,0.037729248404503],[-0.0076490915380418,0.031188182532787,-0.00083217740757391],[-0.11580464988947,-0.1294699460268,0.012202054262161]],[[0.01101775560528,0.10263798385859,-0.10741125792265],[-0.033490058034658,0.09993863850832,0.041527044028044],[0.012922761961818,0.020723342895508,0.02097531221807]],[[-0.091439127922058,-0.067337356507778,-0.076812610030174],[-0.03279984369874,0.01518473867327,-0.094472080469131],[-0.0033828159794211,-0.033012252300978,0.048419319093227]],[[0.00059275951934978,0.11238317191601,-0.10633278638124],[-0.12923067808151,0.032009158283472,0.057019833475351],[-0.012901460751891,0.01029125507921,0.044327069073915]],[[0.19342510402203,0.053678523749113,-0.081204175949097],[0.027988392859697,-0.036395780742168,0.089096300303936],[-0.053328428417444,-0.086600214242935,0.0456687733531]],[[-0.12065067887306,0.05955084040761,0.0056520435027778],[0.032100364565849,-0.064734853804111,0.0030399602837861],[0.017054475843906,-0.04848300293088,-0.006676462944597]],[[-0.065412737429142,0.0024918951094151,-0.053549602627754],[-0.02402419783175,-0.040044520050287,0.016042347997427],[0.012482370249927,0.011972763575613,-0.026038974523544]],[[0.015883196145296,0.082318134605885,-0.062261272221804],[0.020148446783423,-0.082004681229591,-0.0021725660189986],[0.017460234463215,-0.076403632760048,0.10674028843641]],[[-0.14967449009418,-0.11566884070635,0.04982927441597],[-0.071926526725292,0.14975154399872,-0.024355934932828],[-0.052137073129416,0.03420140221715,0.13091404736042]],[[-0.057413842529058,-0.014670331962407,-0.14579835534096],[0.016544859856367,0.0023031630553305,-0.066689074039459],[0.02447946742177,-0.080695614218712,-0.075428865849972]],[[0.019691478461027,-0.1261138767004,0.013487927615643],[0.071593657135963,-0.1070489436388,0.07360478490591],[-0.046648655086756,-0.13987238705158,-0.021692713722587]],[[-0.057647544890642,-0.018004734069109,-0.035061746835709],[0.03461105376482,0.023903334513307,0.057752203196287],[-0.0076933214440942,-0.024016849696636,-0.036667730659246]],[[-0.02602625451982,-0.0017554877558723,-0.066310413181782],[0.017310410737991,-0.045370578765869,-0.097978480160236],[0.025508349761367,-0.15526215732098,-0.120824187994]],[[-0.14498138427734,-0.06384164839983,0.0088553167879581],[-0.097637817263603,0.094577722251415,0.0067613702267408],[0.018302788957953,0.063859298825264,0.022436382248998]],[[-0.16183617711067,-0.031883310526609,-0.056311320513487],[0.098468877375126,0.063139118254185,0.054619714617729],[0.0091060856357217,-0.033682364970446,0.12407869845629]],[[0.085112385451794,0.033752363175154,0.085934571921825],[-0.050516467541456,0.018276859074831,-0.021271035075188],[0.074107646942139,-0.045976381748915,-0.063039675354958]],[[0.0056689991615713,-0.033479653298855,0.041291888803244],[-0.044782530516386,-0.052921131253242,-0.034996133297682],[0.00092780793784186,-0.011534158140421,0.046090114861727]],[[-0.098386645317078,0.0085096023976803,0.052864469587803],[-0.10076146572828,-0.14668613672256,0.0079086543992162],[-0.0010429811663926,-0.069660067558289,-0.085213162004948]],[[-0.01385569293052,0.052787501364946,-0.015810117125511],[-0.005184025503695,0.042737942188978,0.017218494787812],[-0.062866076827049,-0.0088051659986377,-0.10578103363514]],[[-0.013429659418762,0.011951155029237,0.02950000949204],[-0.07452642172575,-0.063669189810753,-0.016996378079057],[-0.023139670491219,0.021418252959847,-0.098419651389122]],[[-0.035168159753084,-0.037073593586683,0.058355208486319],[-0.042355429381132,0.034949500113726,0.018414739519358],[0.041472416371107,0.038913242518902,-0.020079078152776]],[[9.0192414063495e-05,-0.020855834707618,-0.016953883692622],[0.047029480338097,0.0099358269944787,0.0078929606825113],[-0.067429929971695,-0.019823767244816,0.037496026605368]],[[0.054275620728731,0.048188615590334,0.030815152451396],[-0.030034866183996,-0.0046081403270364,-0.0016957597108558],[-0.038505811244249,0.016963552683592,-0.042645663022995]],[[-0.044790629297495,-0.058235436677933,0.030912166461349],[-0.06294672191143,-0.045489020645618,0.012516150251031],[-0.033895056694746,0.0059338021092117,0.028657456859946]],[[-0.030926886945963,0.015202189795673,-0.0214220341295],[-0.019714770838618,-0.0022037676535547,0.012623911723495],[-0.0048601683229208,0.015339344739914,-0.033026982098818]],[[-0.043480478227139,0.0016478057950735,0.08350583165884],[-0.037287697196007,-0.1322640478611,-0.05465292558074],[0.02523579262197,-0.04895194247365,-0.015463857911527]],[[0.042689792811871,-0.106141731143,0.053378216922283],[-0.012259332463145,0.024340761825442,0.026817979291081],[-0.15549765527248,-0.10733868926764,-0.0017654362600297]],[[0.035924918949604,-0.055961087346077,0.042230449616909],[-0.011676265858114,-0.0070944079197943,-0.017109839245677],[-0.06409327685833,0.02324085496366,0.028474155813456]],[[-0.029173381626606,0.041707921773195,0.00070983701152727],[0.020295072346926,-0.0093433801084757,0.023533344268799],[0.03154768794775,-0.027746671810746,-0.057209346443415]],[[-0.01919923722744,0.077792212367058,-0.083808459341526],[-0.16288207471371,-0.042997740209103,-0.05874564871192],[-0.036000896245241,-0.11897039413452,-0.12005782872438]],[[0.15039944648743,0.083663873374462,0.049539312720299],[0.070166632533073,-0.022063912823796,0.084545627236366],[0.087845601141453,0.094395764172077,0.044066179543734]],[[0.050066158175468,0.051343448460102,0.073471590876579],[0.014595311135054,-0.069427296519279,0.12194008380175],[-0.12422803044319,-0.11985566467047,0.025843167677522]],[[0.0062919431366026,-0.038118995726109,-0.10764506459236],[-0.074495978653431,-0.06814943999052,-0.042277693748474],[3.7901390896877e-05,-0.08185663819313,-0.061665471643209]],[[-0.054760597646236,0.037719812244177,0.047879293560982],[-0.0067999744787812,-0.026948176324368,0.012597315944731],[0.084716968238354,-0.095768347382545,-0.10877207666636]],[[-0.04726329818368,-0.079170539975166,0.0068554920144379],[0.004969943780452,-0.040369749069214,-0.048358291387558],[0.012458795681596,-0.0083690835162997,0.045834947377443]],[[0.010754247196019,-0.030436834320426,0.0063358042389154],[-0.0072667975910008,0.030288556590676,0.014409438706934],[0.08462692797184,-0.014115980826318,-0.061916701495647]],[[-0.030457980930805,0.01321002934128,-0.013626649975777],[0.052827190607786,0.030991513282061,0.029973661527038],[0.01928367651999,-0.0023346471134573,-0.00091377552598715]],[[0.052633449435234,0.025608569383621,0.022449355572462],[-0.035960510373116,0.011140177026391,0.088923066854477],[0.10344076901674,0.071709610521793,0.026426307857037]],[[-0.042326934635639,-0.021550841629505,0.011225453577936],[0.032689683139324,-0.0088964365422726,0.057913288474083],[0.0015680375508964,-0.11526291072369,0.16972772777081]],[[0.015916351228952,0.050056096166372,0.02021374925971],[-0.11649798601866,0.12470550090075,-0.031671788543463],[-0.058734867721796,-0.10748362541199,0.019385203719139]],[[-0.012349245138466,0.060766372829676,-0.044576548039913],[-0.10475497692823,0.019036188721657,0.0083862394094467],[-0.087289839982986,-0.0065839979797602,-0.015018840320408]]],[[[0.1139664798975,-0.0828722640872,-0.10275009274483],[-0.03853040933609,-0.022385330870748,-0.10351219773293],[0.0674939006567,0.018954202532768,-0.086631372570992]],[[0.010470184497535,-0.031917050480843,-0.032456252723932],[-0.088252633810043,0.051467224955559,0.017221331596375],[-0.027038995176554,-0.0097695076838136,0.011656818911433]],[[0.052453052252531,0.033162720501423,-0.014515061862767],[-0.020923461765051,0.054217614233494,-0.0039833025075495],[-0.010620600543916,-0.02488955296576,0.071138963103294]],[[0.018700201064348,0.067753538489342,0.072064124047756],[-0.021345367655158,-0.020610356703401,-0.041569422930479],[0.0067057823762298,-0.084690876305103,-0.0033018444664776]],[[0.0041459803469479,0.066511616110802,0.083630509674549],[0.0019600368104875,-0.084249965846539,-0.080603264272213],[-0.11376102268696,-0.092266261577606,-0.09308185428381]],[[-0.10530722886324,-0.079107731580734,0.085229858756065],[-0.064398735761642,-0.1302045583725,0.0033946225885302],[-0.0007047604303807,-0.11202294379473,-0.036222074180841]],[[-0.081528827548027,0.03346536681056,0.013590013608336],[-0.028772234916687,-0.012899146415293,-0.060962691903114],[-0.021833088248968,-0.032440830022097,-0.095227666199207]],[[-0.075490958988667,-0.079463325440884,0.018077965825796],[0.045163828879595,0.030830392614007,-0.055541608482599],[-0.013990331441164,0.10312741994858,0.075091257691383]],[[0.020928965881467,0.082599960267544,-0.044723261147738],[0.06526605039835,-0.11402708292007,0.052214134484529],[-0.021585676819086,0.052228812128305,0.048468574881554]],[[0.0073596234433353,-0.055802207440138,-0.094013281166553],[0.08989842236042,-0.076353244483471,-0.00055026798509061],[0.056228429079056,-0.20480485260487,0.07178820669651]],[[-0.020304841920733,-0.045710071921349,-0.002888738643378],[-0.037456717342138,0.10100156068802,-0.14144498109818],[0.022204473614693,0.00412767380476,0.0035862759687006]],[[-0.040863547474146,-0.064309641718864,0.055612523108721],[-0.014898540452123,-0.023826286196709,0.028724310919642],[0.007958541624248,0.047702789306641,-0.018880059942603]],[[-0.012743726372719,-0.019237440079451,0.01750043220818],[-0.014041243121028,-0.10162432491779,-0.001168769900687],[-0.069571301341057,-0.082065761089325,-0.10940672457218]],[[0.015614951960742,0.045804116874933,-0.022815980017185],[0.090238906443119,0.0077629019506276,-0.062687054276466],[0.040344163775444,0.076245032250881,-0.054992131888866]],[[0.036303594708443,0.0027896240353584,-0.036391448229551],[0.088019497692585,0.014526817016304,-0.16281139850616],[0.06884827464819,-0.032238066196442,-0.13708306849003]],[[0.065158195793629,-0.018858382478356,-0.0070921629667282],[-0.014277544803917,-0.15789724886417,0.011329399421811],[-0.050504013895988,-0.085839778184891,-0.080669805407524]],[[-0.086520187556744,-0.010490596294403,0.021631248295307],[-0.040406007319689,-0.024132570251822,0.030842984095216],[-0.021307649090886,0.011853656731546,-0.019840981811285]],[[-0.051943071186543,0.031267929822206,-0.01520486921072],[-0.056635800749063,-0.092431336641312,-0.042408414185047],[-0.046525340527296,0.0053686485625803,0.033847063779831]],[[-0.001774005475454,0.041451893746853,0.026198089122772],[0.038721114397049,0.050975404679775,0.017072420567274],[0.0023757624439895,0.024052860215306,-0.075955763459206]],[[-0.040313262492418,-0.0054836273193359,-0.035609286278486],[0.052393522113562,0.0012137218145654,-0.046972870826721],[0.013447135686874,-0.0018867753678933,0.014867966994643]],[[0.11007222533226,0.0056624729186296,-0.107640594244],[-0.027806265279651,0.0067126685753465,-0.12821839749813],[-0.01155763771385,-0.065631717443466,-0.10537401586771]],[[-0.12782444059849,0.068221345543861,0.043354533612728],[0.027530409395695,0.085363082587719,0.082952760159969],[-0.030468011274934,0.0033643508795649,-0.069837279617786]],[[0.0020423622336239,0.025877919048071,0.042557273060083],[-0.04039078950882,0.033652514219284,-0.069541335105896],[0.0028648087754846,0.023228039965034,-0.018057493492961]],[[-0.018182877451181,0.017384419217706,-0.12525226175785],[-0.0023850763682276,0.0057003884576261,-0.11068036407232],[-0.0016511015128344,-0.018509764224291,0.05782063305378]],[[0.004670730791986,-0.039624508470297,-0.0010347565403208],[-0.0063101639971137,-0.084831580519676,0.030991371721029],[0.044465687125921,0.033193524926901,0.0031067763920873]],[[-0.036616925150156,0.047676220536232,0.018164189532399],[-0.064747102558613,-0.0001850507396739,0.040819324553013],[0.025598360225558,-0.063743561506271,-0.040295675396919]],[[-0.043068554252386,-0.039598144590855,-0.073632441461086],[0.014380895532668,-0.15535216033459,-0.049992613494396],[-0.084821373224258,-0.037767730653286,0.00030128099024296]],[[0.099646337330341,0.048658054322004,-0.012439786456525],[0.10096806287766,-0.016077844426036,-0.0187614466995],[0.068446278572083,-0.16197788715363,-0.0018829824402928]],[[-0.10888039320707,-0.025823082774878,-0.0096465349197388],[0.017554048448801,0.022217269986868,0.033782806247473],[-0.00091269507538527,-0.062161989510059,-0.064504310488701]],[[-0.13218204677105,-0.042964737862349,0.19300575554371],[-0.21303905546665,0.032707538455725,0.10001953691244],[-0.1301487237215,-0.11925446242094,0.027917083352804]],[[0.068563394248486,0.012676698155701,0.058553319424391],[-0.13454306125641,-0.063589669764042,0.1162928789854],[0.10760610550642,0.03986756503582,-0.090409204363823]],[[0.0062181297689676,0.0024849460460246,-0.10197698324919],[-0.071781560778618,-0.032051339745522,0.14521606266499],[0.027314094826579,0.13298031687737,0.027855258435011]],[[0.007283098064363,-0.0408522374928,-0.059934105724096],[-0.025036515668035,0.017522403970361,0.089210897684097],[0.0081898234784603,-0.064113602042198,0.043805275112391]],[[-0.10192535817623,-0.055175613611937,-0.032041147351265],[-0.048771891742945,-0.067859053611755,0.018109550699592],[0.079571582376957,-0.053757198154926,0.086418062448502]],[[-0.11024262011051,-0.027245588600636,-0.054725024849176],[-0.0050139538943768,0.043489955365658,-0.058195807039738],[0.027704641222954,-0.016755698248744,0.019171906635165]],[[-0.019362054765224,-0.093606494367123,-0.046661328524351],[0.022278275340796,-0.0013521072687581,0.031402081251144],[-0.059923205524683,-0.11832517385483,-0.050608284771442]],[[-0.077723488211632,-0.046485330909491,-0.015099409036338],[-0.068622522056103,-0.044831667095423,0.12454310059547],[-0.05911311507225,-0.06370260566473,-0.0035216163378209]],[[-0.12309279292822,-0.03102252818644,-0.12950697541237],[-0.1449294090271,-0.056366547942162,0.10677319765091],[0.03142524510622,0.079769790172577,-0.024103812873363]],[[0.017941799014807,0.091787680983543,0.044091951102018],[-0.028417110443115,-0.025969734415412,-0.017324656248093],[-0.0063823373056948,-0.0042577320709825,-0.044476635754108]],[[0.0042789583094418,-0.0087976194918156,-0.08675778657198],[-0.10207325965166,-0.0025550343561918,-0.036393638700247],[-0.037738651037216,-0.021098347380757,-0.022350244224072]],[[0.050351288169622,0.059638891369104,0.00117566739209],[-0.060917284339666,-0.077705554664135,-0.078786313533783],[-0.03672892972827,-0.049555048346519,-0.10834245383739]],[[0.015827691182494,-0.05946783721447,-0.093754008412361],[0.018465714529157,0.0043932884000242,-0.020615665242076],[0.033079240471125,0.0047990675084293,-0.0046497997827828]],[[-0.033758714795113,0.097352363169193,-0.084631770849228],[-0.042065929621458,0.027968376874924,-0.068429052829742],[-0.016094943508506,0.0084033971652389,0.060700818896294]],[[0.0015137168811634,-0.0028785557951778,0.042754147201777],[0.0060072359628975,0.047363772988319,-0.0056071863509715],[0.021044034510851,-0.012345380149782,0.0539865270257]],[[0.071344397962093,0.044544879347086,-0.035846091806889],[0.11112168431282,0.023493638262153,-0.032142292708158],[-0.12121520191431,-0.15701155364513,0.036151204258204]],[[-0.00021340866805986,0.026205061003566,-0.049189370125532],[-0.046356372535229,-0.011349126696587,0.02131556533277],[-0.045816022902727,-0.035083536058664,-0.074677340686321]],[[-0.075750708580017,0.066611588001251,-0.088417835533619],[-0.016538569703698,-0.10270738601685,-0.10488716512918],[0.037633869796991,-0.077388599514961,0.016978828236461]],[[-0.0090594133362174,0.00095230859005824,0.028990710154176],[-0.032646391540766,-0.063762634992599,0.019522450864315],[-0.014473911374807,0.0066029261797667,-0.015857137739658]],[[-0.00803851056844,-0.11941904574633,-0.072070240974426],[-0.022385787218809,-0.013555428013206,-0.037163700908422],[0.0066384295932949,0.020868564024568,-0.050192724913359]],[[0.12072533369064,-0.057878088206053,-0.098943762481213],[-0.08038741350174,-0.22318869829178,-0.05916690453887],[0.049685254693031,-0.09272089600563,-0.014894171617925]],[[-0.0044355904683471,0.032434992492199,0.047768037766218],[-0.075049199163914,-0.08306223154068,-0.087118253111839],[-0.016530090942979,-0.031120495870709,0.11694487929344]],[[-0.12093269079924,-0.051343575119972,0.072821952402592],[-0.092065945267677,0.038769334554672,0.10154059529305],[-0.048789735883474,0.011057929135859,0.035697925835848]],[[-0.17231038212776,-0.089787907898426,0.081329762935638],[-0.11559236049652,-0.015196825377643,0.16163372993469],[0.040029939264059,-0.061934992671013,0.042504105716944]],[[0.078121744096279,0.066955551505089,0.012742350809276],[0.14784921705723,0.11721826344728,0.063370324671268],[0.10800526291132,0.12643393874168,0.0025684023275971]],[[0.051122821867466,0.089812949299812,-0.030161503702402],[-0.021640133112669,-0.037839110940695,0.040159329771996],[-0.025433929637074,-0.022050622850657,0.046076245605946]],[[0.018203312531114,0.006370578892529,-0.0095521630719304],[-0.044928029179573,0.037146512418985,0.041298862546682],[-0.061229132115841,0.037102229893208,0.013936011120677]],[[-0.046778231859207,0.061709214001894,-0.0011223644251004],[-0.072190515697002,-0.021648900583386,-0.073616713285446],[-0.052660431712866,-0.060222219675779,-0.019565658643842]],[[-0.024497341364622,-0.0062510366551578,-0.020018719136715],[-0.036736395210028,0.010535586625338,0.027309879660606],[-0.025828115642071,-0.052315231412649,0.068602859973907]],[[0.021492324769497,-0.13055403530598,0.014755926094949],[-0.083873465657234,-0.016190046444535,-0.034494947642088],[-0.029633991420269,-0.057051461189985,0.0016037143068388]],[[0.022701375186443,-0.012033616192639,-0.0018040797440335],[-0.00038668437628075,0.022315952926874,0.0345722399652],[0.012294633314013,0.016168024390936,0.011509978212416]],[[-0.018451005220413,-0.087438814342022,0.053399488329887],[-0.038169883191586,-0.10121685266495,0.074334643781185],[0.02459205314517,-0.033515363931656,0.077661983668804]],[[-0.072140105068684,-0.10729775577784,0.0050039631314576],[-0.019640874117613,-0.043782170861959,-0.12693122029305],[0.0072377300821245,-0.048083402216434,-0.0068762763403356]],[[0.031184151768684,0.019251942634583,-0.0439039953053],[-0.068156436085701,0.0099979322403669,-0.016449045389891],[-0.031919632107019,-0.043760575354099,0.023892717435956]],[[-2.4528653739253e-06,-0.049097109586,0.0042525017634034],[-0.041569244116545,-0.046949248760939,-0.032670557498932],[0.011973961256444,-0.036435410380363,-0.080789551138878]]],[[[0.035779569298029,-0.0030948533676565,-0.025403181090951],[-0.023450285196304,0.053560696542263,0.015855871140957],[0.055828977376223,-0.098706886172295,0.12356930226088]],[[-0.087134025990963,0.014126016758382,-0.028882836923003],[0.012466482818127,-0.026994533836842,0.016867104917765],[-0.0077766329050064,-0.077512137591839,-0.049006946384907]],[[0.018898501992226,-0.044809941202402,-0.12644858658314],[-0.048074439167976,0.0052675707265735,-0.027639845386147],[0.0078330188989639,0.039391007274389,0.01343978382647]],[[-0.026913175359368,-0.012422515079379,-0.034305866807699],[0.0070918272249401,0.0079509047791362,0.027054468169808],[0.05301396176219,-0.049889203161001,0.078989684581757]],[[0.038382418453693,0.029143156483769,0.045478012412786],[-0.051381532102823,6.073381882743e-05,0.030119374394417],[0.0065627656877041,-0.03925709053874,-0.076228521764278]],[[-0.056446358561516,0.0078162243589759,-0.10665917396545],[-0.062447272241116,-0.047759138047695,0.036014173179865],[0.066568374633789,0.027214050292969,0.080497600138187]],[[0.013099119067192,-0.059189211577177,-0.064344480633736],[-0.040848609060049,-0.042069040238857,0.017337970435619],[-0.0044487318955362,-0.047577299177647,-0.052637815475464]],[[0.037040080875158,-0.01762174256146,-0.098018243908882],[0.063536547124386,-0.036829445511103,0.096372164785862],[-0.0011246834183112,0.082731880247593,0.038522154092789]],[[0.034747213125229,0.015179544687271,-0.011248250491917],[-0.037784464657307,-0.011066851206124,0.001451532705687],[-0.0085838846862316,0.041343312710524,0.018055444583297]],[[0.0033014721702784,0.053069476038218,-0.036180283874273],[-0.018501792103052,0.022076832130551,0.0067393286153674],[0.012373139150441,-0.036365158855915,-0.092143923044205]],[[-0.0045685032382607,-0.029587414115667,0.025457607582211],[-0.041220746934414,-0.10714576393366,0.078649826347828],[0.011225052177906,0.10835938900709,-0.0092584528028965]],[[0.0029967317823321,-0.061678104102612,-0.0084258746355772],[-0.04950125515461,-0.055384084582329,-0.084793865680695],[0.044988956302404,0.055305078625679,0.026211380958557]],[[0.011605489067733,-0.066247545182705,0.040492363274097],[0.069014184176922,-0.026369405910373,-0.045344304293394],[-0.0094058029353619,-0.017362032085657,-0.022783175110817]],[[0.02606200799346,0.06888110935688,0.10245772451162],[-0.051116466522217,-0.058445949107409,0.10680700093508],[-0.023244658485055,0.016395630314946,-0.070072084665298]],[[0.015256457030773,0.044128894805908,0.021643612533808],[-0.1013276129961,-0.087486803531647,0.021376403048635],[-0.037366356700659,0.042297467589378,0.035387542098761]],[[-0.0070751900784671,-0.048498567193747,0.02953246049583],[0.012204188853502,0.042912315577269,0.031086977571249],[0.023258509114385,-0.011094462126493,-0.062909193336964]],[[-0.074629381299019,0.013622611761093,-0.005292390473187],[-0.030809417366982,0.052310507744551,0.018855478614569],[0.074480421841145,0.0060474989004433,0.0097751198336482]],[[-0.010473691858351,-0.0027484891470522,-0.029930854216218],[-0.042468912899494,-0.046501521021128,-0.035506822168827],[0.066911704838276,0.03332344815135,-0.015491013415158]],[[-0.088878951966763,0.043230134993792,-0.039581477642059],[0.00081388640683144,-0.019385453313589,-0.028597604483366],[-0.042061518877745,-0.04813339933753,-0.0079885413870215]],[[-0.049798544496298,0.0039814934134483,0.0089145116508007],[-0.039695229381323,-0.0088696349412203,-0.0088200531899929],[-0.10957785695791,0.045552652329206,0.017236640676856]],[[0.024352718144655,-0.028395872563124,-0.0098088812083006],[-0.049300249665976,-0.08305861055851,0.0027751706074923],[-0.026704683899879,-0.16267494857311,-0.064190454781055]],[[0.0017851457232609,-0.04656358808279,0.084304675459862],[-0.03560433909297,-0.0056597981601954,0.029804397374392],[-0.021881010383368,-0.086099661886692,0.024114588275552]],[[0.078522317111492,-0.01005837880075,-0.014003400690854],[0.053269870579243,0.015098693780601,-0.084401533007622],[-0.017310190945864,-0.031998220831156,0.010180165059865]],[[-0.014945878647268,-0.088738761842251,0.078038394451141],[-0.0011952294735238,-0.066918298602104,-0.038645632565022],[-0.00031849055085331,-0.03159636259079,0.017581891268492]],[[0.084657646715641,-0.055011577904224,-0.13426861166954],[0.11205525696278,-0.0059150285087526,-0.091009087860584],[0.051981408149004,-0.011554824188352,0.025798371061683]],[[-0.009932417422533,0.061177115887403,0.020479319617152],[-0.002980929100886,0.020101556554437,-0.11095172911882],[0.0067225191742182,-0.025021512061357,-0.0014873095788062]],[[-0.11671432852745,-0.018277836963534,-0.076809741556644],[-0.13061103224754,-0.15761761367321,-0.076660290360451],[-0.022258559241891,-0.0094188144430518,0.011377643793821]],[[0.12209472805262,0.031811274588108,0.098829425871372],[-0.027890423312783,0.010137253440917,-0.10471908003092],[-0.05399102717638,-0.03887540102005,-0.017754981294274]],[[0.063742525875568,-0.04388465732336,-0.014129645191133],[-0.038485214114189,0.046188298612833,0.096845708787441],[0.039738737046719,0.057545028626919,0.075388543307781]],[[0.014812568202615,0.0093441670760512,0.015919430181384],[-0.0047563947737217,0.015349229797721,-0.018969181925058],[-0.061961576342583,0.0050606424920261,0.020497547462583]],[[-0.069197170436382,0.070472963154316,-0.060222804546356],[0.060104727745056,-0.047291733324528,0.0054259761236608],[0.095232367515564,0.041489597409964,0.063243433833122]],[[-0.096743151545525,-0.042944636195898,-0.015590413473547],[-0.088653191924095,-0.046681150794029,0.0013068988919258],[-0.13189098238945,-0.03397473692894,-0.032553840428591]],[[0.058182150125504,0.096471808850765,-0.020177278667688],[0.037176493555307,0.0080573558807373,0.0054991841316223],[0.023254370316863,-0.0050184270367026,0.0043429764918983]],[[-0.017809448763728,-0.085421584546566,-0.013118129223585],[0.01802172511816,-0.04991789162159,-0.059895936399698],[0.016615303233266,-0.022241244092584,0.017843620851636]],[[-0.00020759782637469,0.041132990270853,0.023796107620001],[0.024051295593381,0.015745958313346,-0.020542677491903],[-0.02536877989769,0.0059145321138203,0.045884735882282]],[[0.071016795933247,-0.024415574967861,-0.019641008228064],[-0.029620815068483,-0.018284054473042,0.075354605913162],[-0.022297965362668,-0.022675845772028,0.048150986433029]],[[-0.022356944158673,-0.073588475584984,-0.066094011068344],[-0.05223061144352,-0.038829136639833,0.062997557222843],[0.011717078275979,-0.0021080204751343,0.01431246008724]],[[0.007419812027365,0.075691290199757,0.035677507519722],[-0.075680814683437,-0.011590473353863,-0.0035431296564639],[-0.090883798897266,-0.027700711041689,0.014778955839574]],[[-0.04943859949708,-0.0053755613043904,-0.091751553118229],[-0.030866188928485,0.0016047958051786,-0.078248791396618],[-0.037935256958008,0.028528047725558,-0.0056161792017519]],[[-0.026440327987075,-0.028861161321402,0.040104020386934],[-0.039006534963846,-0.0012953981058672,-0.0021317035425454],[0.054386753588915,0.006746522616595,-0.0060039809904993]],[[-0.0271439217031,-0.062648110091686,-0.057009290903807],[-0.12306841462851,0.041823238134384,0.044740598648787],[-0.12907327711582,0.043953645974398,-0.10626859217882]],[[-0.025303931906819,0.002956482116133,-0.034240819513798],[0.021344266831875,0.0013710256898776,0.0082051884382963],[-0.094220161437988,-0.015632158145308,0.032462369650602]],[[0.067718386650085,-0.045673489570618,0.034556832164526],[0.014510057866573,-0.13375982642174,0.098719090223312],[-0.013145293109119,-0.084009490907192,-0.036660999059677]],[[0.030759733170271,-0.017032485455275,-0.10882733762264],[-0.026618083938956,0.020808544009924,0.026311878114939],[0.1397303044796,-0.011944728903472,-0.02601688914001]],[[0.028937101364136,0.08123567700386,-0.12270104885101],[0.014463594183326,-0.13813771307468,-0.10980582237244],[0.012956162914634,-0.043387237936258,-0.043675620108843]],[[-0.040347922593355,0.043167687952518,0.03908909112215],[-0.0052325874567032,-0.034654576331377,0.036968778818846],[0.077263683080673,-0.029249912127852,0.02186000905931]],[[-0.10346417874098,0.0031259146053344,0.032673329114914],[0.059539601206779,0.080331668257713,0.016053605824709],[0.042970634996891,0.085855782032013,0.0042882645502687]],[[0.07034745067358,0.00080110569251701,-0.023968590423465],[0.052624180912971,0.02135412581265,0.032407276332378],[-0.048775691539049,0.051346078515053,-0.021467072889209]],[[-0.070260606706142,-0.03084616176784,-0.018740512430668],[-0.0058902404271066,-0.044829297810793,-0.034412022680044],[-0.0027061998844147,-0.033256698399782,-0.057005159556866]],[[-0.01817674189806,-0.039101596921682,-0.062868751585484],[-0.010063926689327,-0.048916943371296,0.021822441369295],[-0.068766839802265,0.021638598293066,-0.049268890172243]],[[-0.01132317725569,-0.024769905954599,-0.0040765823796391],[-0.031453054398298,-0.028606483712792,-0.043058704584837],[-0.020433977246284,-0.033974256366491,-0.025253033265471]],[[0.003137320978567,0.052457340061665,0.047454547137022],[0.07987629622221,-0.026304675266147,-0.10777112841606],[-0.047827534377575,0.010392228141427,-0.076783180236816]],[[-0.047660365700722,0.050570651888847,0.010201440192759],[0.053032226860523,-0.01963971182704,-0.00082716951146722],[-0.0081177121028304,-0.041729100048542,-0.043166566640139]],[[0.0060116811655462,0.090357877314091,0.046398710459471],[0.011233457364142,0.088541768491268,0.076643370091915],[0.039985276758671,0.11848698556423,0.046102277934551]],[[0.052733838558197,0.042510624974966,0.021923223510385],[-0.024722643196583,0.023534091189504,0.039997182786465],[0.09027886390686,0.0029120477847755,0.016771525144577]],[[-0.052274148911238,0.011923437938094,0.0047654286026955],[0.016056740656495,-0.039431482553482,0.077640354633331],[-0.0074967509135604,0.018735392019153,-0.066727519035339]],[[-0.013360277749598,-0.071328140795231,-0.0082075111567974],[-0.021590815857053,-0.063725017011166,-0.032943911850452],[0.068414986133575,0.0056386226788163,-0.019801203161478]],[[-0.029706673696637,-0.0098079340532422,0.00129703595303],[-0.00025015574647114,0.0057357475161552,0.046904787421227],[0.028072111308575,0.074701480567455,0.0025838387664407]],[[-0.024319011718035,0.10755191743374,0.021999085322022],[-0.02877432666719,0.03880587592721,-0.019918272271752],[-0.015990547835827,0.056273847818375,-0.0017104722792283]],[[-0.0037346286699176,-0.028823146596551,0.030747329816222],[-0.019318843260407,0.032567858695984,0.053400360047817],[0.0022027930244803,-0.023244408890605,0.014322661794722]],[[-0.0093376450240612,0.054812651127577,-0.0059010847471654],[0.031993251293898,-0.026348553597927,0.02258088812232],[0.031302027404308,0.058509059250355,0.040855627506971]],[[-0.061272978782654,-0.027175774797797,-0.098358549177647],[-0.034309156239033,-0.034649036824703,-0.030305948108435],[0.037361919879913,0.050006683915854,0.05470821633935]],[[-0.036929655820131,0.01769476942718,-0.017532533034682],[0.046493574976921,0.0018502421444282,0.039821121841669],[-0.00067310262238607,-0.080343879759312,-0.01569052785635]],[[0.014496117830276,0.017756167799234,-0.061664901673794],[-0.03270099312067,-0.0425113029778,0.11998306214809],[-0.086590796709061,3.4065844374709e-05,0.090493127703667]]],[[[0.019903572276235,0.032212268561125,0.11129608750343],[0.0047740880399942,-0.12347423285246,-0.029458215460181],[-0.15664520859718,-0.13841214776039,0.042455766350031]],[[-0.029612625017762,-0.072829619050026,-0.096275396645069],[-0.042756348848343,-0.057861126959324,-0.068507634103298],[-0.046186275780201,-0.039414532482624,-0.22077783942223]],[[0.077406778931618,-0.019781807437539,-0.051862742751837],[-0.046283263713121,0.014193472452462,-0.06473620980978],[0.013411081396043,-0.050771478563547,0.079090669751167]],[[0.046768065541983,0.030472949147224,0.038494899868965],[0.028731053695083,0.047393247485161,0.014726138673723],[0.15665405988693,-0.014117900282145,0.045861132442951]],[[-0.10480715334415,0.011516648344696,0.035739302635193],[0.049767035990953,-0.14274421334267,-0.053999941796064],[0.079717241227627,-0.035799514502287,-0.12829680740833]],[[-0.090919762849808,-0.025261595845222,-0.078825496137142],[-0.050378166139126,0.018337398767471,-0.017550818622112],[-0.022623229771852,0.027453789487481,0.00072057312354445]],[[-0.057395271956921,-0.041601695120335,0.0023124220315367],[0.077727884054184,-0.057052202522755,-0.020321175456047],[0.016878936439753,-0.01555004529655,-0.029627272859216]],[[-0.088100947439671,0.044046927243471,0.029725268483162],[0.020603653043509,0.09010049700737,0.047948900610209],[-0.094017744064331,-0.064682126045227,0.0055176382884383]],[[-0.018846277147532,0.069705255329609,-0.092967875301838],[-0.067162066698074,0.096880070865154,0.040601190179586],[-0.0049544088542461,-0.014719786122441,0.081955604255199]],[[-0.025979330763221,0.12587939202785,-0.05306800827384],[-0.0090540573000908,0.060044929385185,0.0020443017128855],[-0.0039185215719044,-0.034246951341629,-0.0038273597601801]],[[0.0015076395357028,0.01693819463253,0.053935874253511],[0.020697979256511,0.05960738286376,0.073704823851585],[-0.035526547580957,-0.017200319096446,0.034793179482222]],[[0.0054711936973035,-0.076821438968182,0.033667333424091],[-0.059855837374926,-0.0098865842446685,-0.10978829115629],[-0.058878179639578,0.041289564222097,-0.10961937904358]],[[0.0039959251880646,0.0026799046900123,-0.051764570176601],[-0.050258226692677,-0.058453433215618,0.0090196011587977],[0.053225710988045,-0.019345242530107,-0.031525880098343]],[[0.052698519080877,0.016004679724574,0.27259057760239],[0.097647450864315,-0.021200802177191,-0.0020535318180919],[0.01351969782263,-0.0013948495034128,0.010319884866476]],[[-0.01381235010922,0.17234665155411,0.035599905997515],[-0.010540667921305,-0.1520821005106,0.047912441194057],[-0.12362031638622,0.048124637454748,-0.040778841823339]],[[-0.0094596557319164,0.015138044022024,0.020578356459737],[-0.012018596753478,0.0022987346164882,0.019231077283621],[0.053896728903055,0.10398544371128,-0.048610474914312]],[[0.012163819745183,0.050667479634285,-0.074325062334538],[-0.11414296925068,-0.034824069589376,0.0034134432207793],[0.044470775872469,-0.072897180914879,-0.10261739045382]],[[-0.018585147336125,0.010055313818157,-0.038115404546261],[-0.037141516804695,-0.1077484562993,-0.10401958227158],[-0.059569910168648,0.11069633811712,-0.052162040024996]],[[0.02824873290956,-0.020996179431677,-0.022717332467437],[0.044508509337902,-0.044893339276314,-0.0064968280494213],[0.018294129520655,0.0049880240112543,-0.012357140891254]],[[-0.078274585306644,-0.14505127072334,-0.0049909674562514],[0.036466009914875,-0.08494883030653,-0.13105040788651],[0.012879308313131,-0.010591149330139,-0.047855924814939]],[[-0.0030446154996753,0.064817756414413,0.033328104764223],[-0.06156400591135,-0.07935057580471,-0.043543513864279],[-0.030949173495173,-0.010854451917112,0.015596540644765]],[[0.099116057157516,-0.062013201415539,-0.070983201265335],[-0.055493678897619,-0.045990236103535,-0.099874690175056],[-0.0022731237113476,-0.029880955815315,-0.036451835185289]],[[-0.031437616795301,-0.010190377011895,0.0072475019842386],[0.037947792559862,0.039140876382589,-0.067516386508942],[-0.012203228659928,0.038810253143311,-0.00044651454663835]],[[-0.014181849546731,0.062247797846794,-0.015793973580003],[-0.12906759977341,-0.031756188720465,-0.035694193094969],[-0.0058215404860675,-0.040560007095337,-0.083767458796501]],[[-0.042864836752415,0.004553334787488,0.040128313004971],[-0.062002416700125,0.021132957190275,0.062206462025642],[-0.051444869488478,0.0042095310054719,0.10469964891672]],[[-0.05235244333744,0.014323718845844,0.0008100473205559],[-0.044322766363621,0.022671585902572,-0.073037534952164],[-0.083322606980801,-0.071430966258049,-0.072038143873215]],[[-0.0509172976017,-0.05053524300456,0.0093517983332276],[0.018601514399052,-0.077623225748539,-0.074783571064472],[0.047615703195333,0.014915044419467,-0.05007678642869]],[[0.073362603783607,-0.046212557703257,0.067881613969803],[-0.045309867709875,-0.03041473031044,0.042707927525043],[-0.074353009462357,-0.026632452383637,0.048371538519859]],[[0.011552168987691,-0.02972461655736,0.043993942439556],[-0.03938540443778,0.039131049066782,0.045627396553755],[0.060141682624817,-0.10344137996435,-0.061044707894325]],[[-0.097197026014328,0.02210446819663,-0.036188017576933],[-0.06532009691,-0.0058897938579321,-0.0063404175452888],[-0.02588122151792,0.044988609850407,0.064465492963791]],[[0.014456632547081,0.037034764885902,0.046854462474585],[0.042017668485641,-0.013874958269298,-0.061003714799881],[0.12202290445566,0.0088443085551262,-0.11720810085535]],[[0.041623037308455,-0.088749587535858,-0.049904935061932],[0.071793280541897,0.018269898369908,0.036682635545731],[-0.052506193518639,-0.066860660910606,-0.13234411180019]],[[0.043258719146252,-0.0975461602211,-0.00036368815926835],[-0.086395494639874,0.051534805446863,0.11600834876299],[-0.01203057076782,-0.092865169048309,-0.016366884112358]],[[-0.044103294610977,-0.022886998951435,0.049802731722593],[0.023737030103803,0.065127611160278,0.017860198393464],[-0.029020611196756,0.050225775688887,-0.011070318520069]],[[0.081911005079746,-0.025558101013303,0.016102651134133],[-0.14089912176132,0.1350926309824,-0.055894292891026],[0.11389480531216,0.036790128797293,0.093492947518826]],[[0.11695410311222,0.041052285581827,0.023390328511596],[-0.068026356399059,-0.081416711211205,-0.0054548187181354],[0.00013020783080719,-0.1087998226285,-0.10927037894726]],[[0.006585958879441,0.015632294118404,0.0034993188455701],[-0.011640578508377,-0.035178538411856,0.10809348523617],[-0.040214288979769,-0.0024526743218303,0.027427176013589]],[[0.027308566495776,0.060684487223625,-0.026628088206053],[0.0083169164136052,0.005483269225806,-0.076932184398174],[0.023776493966579,-0.0091053787618876,-0.16530202329159]],[[-0.027270117774606,-0.0035557926166803,-0.04662562161684],[0.040418889373541,0.00040298004751094,0.10003207623959],[0.082378141582012,0.031731277704239,-0.049387816339731]],[[-0.092140212655067,0.022836551070213,0.054186649620533],[-0.01909264922142,0.069694258272648,-0.029774868860841],[0.06196254119277,-0.039067562669516,-0.074289470911026]],[[-0.043650437146425,0.00054394191829488,0.023051785305142],[-0.031593594700098,-0.052389293909073,-0.024274930357933],[-0.052973091602325,0.0049516004510224,-0.010076864622533]],[[0.0086051849648356,-0.0083018792793155,0.025333650410175],[-0.052520290017128,0.078580148518085,0.06837297976017],[0.018946716561913,-0.06845311075449,0.070382244884968]],[[0.061507537961006,0.013184023089707,0.016183014959097],[-0.021418169140816,0.073002316057682,0.016112625598907],[0.015011383220553,-0.077210634946823,-0.012666910886765]],[[-0.11737029254436,0.045470159500837,-0.14921663701534],[-0.10663508623838,-0.050081230700016,-0.14566116034985],[0.074615389108658,0.041083104908466,-0.0057632378302515]],[[0.060036547482014,0.049197990447283,-0.0094545111060143],[-0.021092062816024,0.10394785553217,-0.053642891347408],[-0.044736947864294,0.020806100219488,-0.070420943200588]],[[-0.058155357837677,-0.012461889535189,0.065527759492397],[-0.045053377747536,-0.092886224389076,0.0483653023839],[0.077176816761494,-0.071786023676395,-0.19684562087059]],[[0.042784385383129,0.036152433604002,0.0054770521819592],[0.0099846096709371,-0.07150936126709,0.035056702792645],[0.086764171719551,-0.1286093890667,-0.03607427701354]],[[-0.019938252866268,0.026689901947975,-0.033669389784336],[0.058334775269032,0.058665402233601,0.050028495490551],[0.06388796120882,0.079930856823921,-0.02064404450357]],[[-0.13381831347942,-0.026764983311296,-0.074124164879322],[0.024042518809438,-0.08012643456459,-0.0087292091920972],[0.02736672013998,0.070299699902534,0.0213040728122]],[[0.11369927972555,0.0094368131831288,-0.017088724300265],[-0.063938692212105,-0.13601189851761,-0.043154943734407],[-0.14653889834881,-0.079933568835258,0.14023973047733]],[[-0.072013936936855,-0.029645327478647,-0.036128129810095],[0.019273888319731,0.040267217904329,-0.069962531328201],[-0.028254315257072,0.010808419436216,0.052502647042274]],[[0.03018381819129,-0.047173421829939,-0.032986219972372],[-0.00043526838999242,0.064151436090469,0.052022870630026],[0.032757550477982,-0.039890095591545,0.027425495907664]],[[-0.023939184844494,0.0069491136819124,0.068011455237865],[0.22970435023308,-0.0076838033273816,-0.011308249086142],[0.13628715276718,0.14952537417412,-0.012332351878285]],[[0.073947034776211,-0.025211540982127,0.038916766643524],[-0.023379424586892,0.065219789743423,0.062004633247852],[0.025693494826555,0.0097359688952565,0.17761009931564]],[[0.019512867555022,0.01878984645009,0.090017221868038],[0.018283236771822,0.073930375277996,-0.06773354113102],[-0.015862781554461,-0.017556186765432,-0.039266441017389]],[[0.14819388091564,0.10632090270519,-0.064311668276787],[0.084526583552361,0.03358993679285,0.0098593179136515],[0.048774439841509,0.071342453360558,0.096363611519337]],[[-0.11776774376631,-0.075736559927464,0.047024447470903],[0.029567580670118,-0.042079895734787,-0.10831982642412],[0.008417883887887,-0.086941808462143,0.013517019338906]],[[0.020498340949416,-0.03146331012249,0.0085790632292628],[-0.045863065868616,-0.0030964447651058,0.044365495443344],[-0.020130665972829,-0.04957277327776,-0.0113924741745]],[[0.012092918157578,-0.040580090135336,-0.029893107712269],[0.044842772185802,-0.11792027950287,0.059212166815996],[-0.056565158069134,-0.076977245509624,0.079243823885918]],[[0.0160066280514,0.023990185931325,0.005198750179261],[-0.037482034415007,0.0087673729285598,0.020093327388167],[0.011030784808099,-0.034925509244204,-0.0035700388252735]],[[-0.055242091417313,-0.0071587329730392,0.015793412923813],[-0.016354957595468,-0.0069506084546447,0.0092507088556886],[0.0022452578414232,-0.089413098990917,-0.013524252921343]],[[0.089657850563526,-0.11376918107271,-0.041712466627359],[0.065378606319427,0.12613271176815,0.1241944283247],[-0.059972960501909,-0.059866432100534,0.13308066129684]],[[-0.015742333605886,-0.0085314279422164,-0.018229756504297],[-0.019351107999682,-0.12835201621056,-0.014921335503459],[-0.049579173326492,-0.11259514093399,-0.12796030938625]],[[-0.062125936150551,-0.011886741966009,0.038248538970947],[0.026215730234981,-0.10523666441441,0.077249549329281],[-0.0076794209890068,0.099837824702263,-0.06221054494381]]],[[[-0.046537153422832,-0.086560793220997,0.096789173781872],[0.061499737203121,0.055987015366554,0.061244789510965],[0.023279311135411,-0.001047071418725,0.060942102223635]],[[0.026661852374673,-0.025464141741395,0.014267291873693],[-0.056868128478527,-0.013496724888682,0.06671617180109],[-0.020302981138229,-0.043055333197117,-0.12822291254997]],[[0.012456041760743,-0.026985310018063,0.0065127508714795],[-0.018156500533223,0.029364002868533,0.022850353270769],[-0.11464734375477,-0.037546806037426,-0.16367244720459]],[[0.017178121954203,-0.061788093298674,-0.012090066447854],[0.0045908130705357,-0.0021693424787372,-0.015677807852626],[0.0069945165887475,-0.081897996366024,-0.02235396578908]],[[-0.017588967457414,0.0089980671182275,0.054009597748518],[-0.038981173187494,0.020578812807798,-0.071086443960667],[0.017218645662069,-0.093570776283741,-0.03671758249402]],[[-0.038120117038488,-0.032054703682661,-0.058610718697309],[-0.020711315795779,-0.13976961374283,-0.029364001005888],[0.032120380550623,-0.13550473749638,-0.067464083433151]],[[-0.0064737559296191,0.011197787709534,-0.10974941402674],[0.0050958218052983,-0.05771816894412,0.015863385051489],[-0.066209435462952,-0.0046402430161834,-0.042730495333672]],[[0.02032357826829,-0.10238157957792,0.014250016771257],[-0.036645710468292,0.067437194287777,0.024901896715164],[-0.0071720485575497,-0.032593879848719,-0.013358317315578]],[[-0.066115632653236,0.12185076624155,-0.056825093924999],[-0.059271022677422,-0.11689292639494,-0.031657785177231],[-0.13625191152096,0.21266627311707,-0.12248305976391]],[[-0.0057542896829545,0.028477100655437,0.024219732731581],[-0.022558579221368,-0.05218793079257,-0.022423032671213],[-0.029682960361242,0.084883540868759,-0.077446103096008]],[[-0.17448273301125,0.07526296377182,-0.081981711089611],[0.041905488818884,-0.022628579288721,-0.0087285237386823],[-0.00085977662820369,0.033979292958975,0.040486853569746]],[[0.12406668812037,0.071516148746014,-0.055418249219656],[-0.023482386022806,0.036540362983942,-0.097574934363365],[-0.038762003183365,-0.053924426436424,-0.030102010816336]],[[0.021291738376021,0.0030422029085457,0.063007019460201],[-0.013561896979809,-0.034709025174379,-0.073514506220818],[-0.050216443836689,-0.034986946731806,-0.010498163290322]],[[0.021668467670679,0.031416930258274,0.13175246119499],[0.0017463332042098,0.021140694618225,-0.063390210270882],[0.080150932073593,0.033604476600885,0.069677852094173]],[[0.057621724903584,-0.072578631341457,-0.0024196065496653],[0.029238173738122,-0.038286067545414,0.025382401421666],[0.11010088026524,0.076767519116402,0.041260544210672]],[[-0.031019404530525,0.01030130777508,-0.071603536605835],[0.070659071207047,0.0083882426843047,-0.039142750203609],[0.044667359441519,-0.016768425703049,0.01944138109684]],[[-0.057415794581175,-0.032390128821135,-0.045109204947948],[-0.0033766871783882,-0.10409062355757,-0.021627271547914],[-0.086277328431606,0.089383497834206,-0.094069465994835]],[[-0.030349289998412,-0.028510650619864,-0.040271207690239],[0.0076505737379193,-0.044910624623299,0.010082503780723],[-0.087486363947392,0.019800584763288,-0.04258893430233]],[[-0.03026444464922,-0.083616442978382,0.051392808556557],[0.01279931422323,0.021035596728325,-0.036723710596561],[-0.13200597465038,0.0083615612238646,-0.022627383470535]],[[-0.0036087932530791,0.052717268466949,-0.013738778419793],[-0.0028392900712788,-0.020555915310979,0.077212631702423],[-0.011076915077865,0.01767641492188,-0.054723110049963]],[[-0.11646148562431,-0.083719119429588,-0.16271390020847],[0.03641901910305,-0.17881694436073,-0.053401663899422],[-0.27638792991638,0.084804221987724,-0.13553901016712]],[[-0.053472436964512,0.093079812824726,-0.10316129028797],[0.10523533821106,-0.054275449365377,-0.037230040878057],[-0.026044737547636,-0.023400975391269,-0.04346265271306]],[[-0.046101823449135,-0.037087582051754,-0.015141586773098],[0.024676699191332,0.040291119366884,0.054683361202478],[-0.038818642497063,0.031296044588089,-0.0055561955086887]],[[-0.067357137799263,0.01413363404572,-0.10604368150234],[-0.050273772329092,0.039853125810623,-0.027053071185946],[-0.065052732825279,-0.031888242810965,0.063780449330807]],[[-0.044138737022877,0.099341489374638,-0.053744301199913],[0.12274487316608,-0.031865123659372,-0.070195958018303],[-0.079506427049637,0.063464283943176,-0.074268415570259]],[[-0.035938940942287,-0.0069706658832729,-0.0032226971816272],[0.072722926735878,-0.03336001932621,-0.070013761520386],[-0.090674832463264,-0.019564455375075,0.0074275159277022]],[[0.0051830946467817,0.044688884168863,-0.025140952318907],[0.071213394403458,-0.021567402407527,0.016758903861046],[0.01208739914,0.017265098169446,-0.022691106423736]],[[-0.043002396821976,0.024631399661303,0.050972051918507],[-0.08754812926054,0.058827240020037,-0.092159979045391],[0.01233759149909,-0.084707200527191,0.14167100191116]],[[0.11925366520882,-0.045663859695196,0.05132469534874],[-0.034488350152969,0.035163372755051,-0.062435016036034],[-0.011353304609656,-0.055752009153366,0.00424245884642]],[[0.030870944261551,-0.049779381603003,0.0062683187425137],[-0.094239868223667,0.078657098114491,-0.041829518973827],[0.040427066385746,-0.082923948764801,0.037557229399681]],[[0.038445688784122,-0.0024166421499103,-0.07310152053833],[0.050225105136633,-0.22502921521664,-0.026651130989194],[-0.055919006466866,0.019535733386874,-0.15365748107433]],[[-0.054098598659039,0.048570729792118,-0.021237082779408],[0.069747917354107,-0.034213989973068,0.0083231646567583],[0.059399332851171,0.073064267635345,0.038606949150562]],[[0.072484664618969,0.027137197554111,-0.088855318725109],[-0.00092608446720988,-0.051793567836285,0.046725768595934],[0.074482426047325,-0.010150434449315,-0.0038884284440428]],[[-0.074763931334019,0.019233031198382,-0.055588811635971],[-0.082753710448742,-0.022265052422881,-0.033625282347202],[-0.03997616097331,0.041227333247662,-0.038158558309078]],[[0.11252594739199,-0.064178623259068,-0.041784912347794],[-0.045221123844385,-0.0020955791696906,0.037769585847855],[0.0097287809476256,-0.019979240372777,0.06415881216526]],[[-0.0090473107993603,-0.012621697969735,0.010949816554785],[0.045997679233551,-0.078120790421963,0.045159853994846],[-0.17678588628769,-0.017358297482133,-0.098915576934814]],[[-0.055282831192017,0.059378758072853,-0.069602899253368],[0.013818755745888,0.032642882317305,0.13787929713726],[-0.024547474458814,0.059340454638004,-0.050414692610502]],[[-0.16191464662552,0.070266358554363,0.024301094934344],[0.080137267708778,-0.052455361932516,0.031155746430159],[-0.10092709213495,0.027420878410339,-0.062724284827709]],[[-0.054634138941765,-0.013072637841105,0.02271842956543],[-0.055456809699535,0.049760088324547,0.00086124031804502],[-0.038077861070633,-0.034881938248873,0.045696917921305]],[[0.014619627967477,-0.017177902162075,0.037590906023979],[0.022141944617033,-0.060153786092997,0.094897337257862],[-0.023325454443693,0.03599825873971,-0.080348387360573]],[[-0.066492229700089,-0.14002346992493,0.11282984912395],[-0.046644300222397,-0.050387918949127,-0.048447668552399],[-0.11782199144363,-0.015361785888672,0.063256703317165]],[[0.001967977033928,-0.054912846535444,-0.029162641614676],[-0.013068675994873,0.0011842522071674,0.00052695570047945],[0.01335113029927,-0.011729108169675,0.020384937524796]],[[-0.029327737167478,0.073836244642735,-0.024099249392748],[-0.035406712442636,0.020075282081962,0.073243454098701],[-0.020918242633343,-0.0051936591044068,0.022140666842461]],[[-0.031346309930086,-0.034253556281328,-0.031150391325355],[0.016036374494433,0.018058631569147,-0.039973929524422],[0.028668520972133,0.077032566070557,0.0086993593722582]],[[-0.082140408456326,-0.12408792227507,0.037199635058641],[0.0054821539670229,0.087230615317822,-0.14527067542076],[0.093080818653107,-0.011130199767649,0.03679758310318]],[[0.021292272955179,-0.028148107230663,0.091972127556801],[0.0515894331038,-0.015323917381465,0.006312511395663],[0.0033606882207096,-0.093128152191639,0.0015156526351348]],[[-0.09092240780592,-0.0022228767629713,-0.11775097250938],[-0.012252879329026,-0.033235765993595,0.048769772052765],[-0.11692128330469,0.13436934351921,-0.16355548799038]],[[-0.07239930331707,-0.046793106943369,-0.030777143314481],[-0.034108944237232,0.0034905497450382,0.01510626450181],[0.01977987959981,0.039351060986519,0.084751717746258]],[[0.053828522562981,0.053139731287956,-0.0092672640457749],[-0.0018033911474049,-0.028095372021198,-0.04634927213192],[0.024204598739743,0.034437343478203,0.028894579038024]],[[-0.019959770143032,-0.051064435392618,0.049396477639675],[-0.032531879842281,0.061469819396734,-0.064340218901634],[0.012522193603218,0.034041330218315,-0.048290360718966]],[[-0.038875740021467,0.0025514380540699,0.010848593898118],[0.0025503872893751,-0.060197744518518,0.025789815932512],[0.010884118266404,0.042189586907625,0.022279283031821]],[[-0.014988908544183,0.010097051970661,0.013869166374207],[-0.041754927486181,-0.017241565510631,-0.00052240601507947],[-0.023645110428333,0.026151748374104,0.044553007930517]],[[-0.071201883256435,0.1287854462862,-0.059816118329763],[0.15767221152782,-0.07753574848175,-0.032693855464458],[-0.12261569499969,0.12663428485394,-0.13469387590885]],[[0.023889211937785,0.20023420453072,0.058874744921923],[0.18131160736084,0.012060624547303,0.10924160480499],[-0.046864945441484,0.10644666105509,0.063554659485817]],[[0.090679578483105,0.0054101105779409,-0.046295449137688],[-0.064966946840286,0.0035635642707348,0.024238897487521],[-0.039509195834398,-0.055026136338711,-0.040418528020382]],[[0.015924660488963,-0.0063606356270611,-0.0041953264735639],[0.049801174551249,-0.067834362387657,0.026478370651603],[-0.026934891939163,-0.1019426882267,0.036200907081366]],[[-0.10807528346777,-0.016107320785522,-0.064871221780777],[-0.023376572877169,-0.044829927384853,-0.036115229129791],[-0.11798347532749,-0.025953656062484,-0.059569787234068]],[[-0.0036404163111001,0.049901146441698,-0.068641349673271],[-0.052198216319084,-0.04985149204731,-0.071237720549107],[0.033897455781698,-0.05199384316802,-0.0010361990425736]],[[-0.025810841470957,0.058027520775795,0.00010432179988129],[-0.049218524247408,0.033875118941069,0.036381643265486],[0.015248365700245,-0.071251206099987,0.014584979973733]],[[0.0022968759294599,0.052538435906172,0.0079828007146716],[0.017057277262211,-0.041129682213068,0.0016373666003346],[-0.012624751776457,0.056951802223921,-0.015660978853703]],[[0.022171940654516,0.0059868083335459,-0.027135964483023],[0.032776050269604,-0.045978840440512,-0.073324240744114],[-0.031247287988663,-0.03932960703969,-0.02865220233798]],[[0.022372126579285,0.029788292944431,0.009778612293303],[-0.047372244298458,0.10686650872231,0.0025201186072081],[0.085760682821274,0.03268076851964,-0.072727628052235]],[[-0.02658998593688,-0.059610471129417,0.0048665446229279],[0.068519122898579,-0.020926667377353,-0.0034685006830841],[-0.081074193120003,0.025042979046702,-0.14182455837727]],[[-0.038795705884695,-0.081828869879246,0.0044792960397899],[0.029275434091687,-0.036060720682144,0.062952674925327],[-0.086659528315067,0.025415223091841,-0.052042793482542]]],[[[-0.042395647615194,-0.09552501142025,0.078147761523724],[-0.069056801497936,-0.065409198403358,-0.058445431292057],[-0.071040816605091,-0.020652640610933,0.032047603279352]],[[-0.020079754292965,-0.014032813720405,-0.0095539661124349],[-0.0090178577229381,0.036090418696404,0.0044346377253532],[0.052117485553026,-0.0033302791416645,0.056401804089546]],[[0.0029456962365657,0.01252322550863,0.025791695341468],[0.026498552411795,0.0163938626647,-0.0026740953326225],[0.00461146235466,-0.019327539950609,0.050754301249981]],[[-0.01285049226135,0.035310376435518,0.038205035030842],[0.00090672890655696,-0.001512132701464,0.065527111291885],[0.0005712445708923,0.054098825901747,0.00026495545171201]],[[-0.039736993610859,-0.054585263133049,-0.082905605435371],[0.047178089618683,-0.0013176293577999,0.076144695281982],[4.2241437768098e-05,0.039265129715204,0.0854212641716]],[[-0.022037805989385,-0.0011957999086007,0.12799865007401],[-0.063516654074192,0.016854530200362,-0.0012042026501149],[-0.0083449361845851,0.0044017308391631,-0.097812317311764]],[[-0.060143653303385,0.024620672687888,-0.027387419715524],[0.044759947806597,0.0018364622956142,-0.021555246785283],[-0.0069314450956881,0.028544947504997,0.098852746188641]],[[0.02320540137589,-0.025383019819856,-0.053928393870592],[-0.036084048449993,0.063731156289577,0.0017610231880099],[-0.096850335597992,-0.041798964142799,0.017072480171919]],[[0.013765307143331,-0.021212674677372,0.021295350044966],[-0.042288359254599,0.034144978970289,0.033020101487637],[0.094282224774361,0.010523020289838,0.021627873182297]],[[-0.051541682332754,0.025330401957035,0.0087334290146828],[-0.031661741435528,-0.00013545516412705,0.084985673427582],[0.075527101755142,-0.050073761492968,-0.046952985227108]],[[0.013110019266605,-0.085196241736412,0.064169980585575],[0.091459430754185,0.017668636515737,0.1311851143837],[0.088446192443371,-0.046782340854406,0.0045516765676439]],[[-0.010596525855362,0.14410212635994,0.060716908425093],[0.030763825401664,-0.036527987569571,0.0045031905174255],[0.05335209518671,-0.01989272236824,0.029425354674459]],[[-0.052854020148516,0.06964510679245,0.012991732917726],[-0.036695003509521,-0.027112632989883,0.062135837972164],[-0.0081603126600385,0.075458757579327,-0.072242625057697]],[[-0.039524409919977,-0.052470274269581,0.010863817296922],[0.02797687612474,0.065404787659645,-0.057244271039963],[0.086353100836277,0.053599614650011,0.0083729019388556]],[[-0.099099643528461,0.060754436999559,0.079125426709652],[-0.0022338209673762,-0.055669441819191,-0.16167283058167],[-0.024258356541395,0.073262713849545,0.073593989014626]],[[0.022687207907438,0.078862436115742,0.010731619782746],[0.055430926382542,0.045504603534937,0.01804063655436],[-0.013575791381299,0.017836408689618,0.044393181800842]],[[0.043407149612904,0.044702928513288,0.098699271678925],[0.016977263614535,-0.036631740629673,0.047419514507055],[0.03142336755991,-0.0046675833873451,-0.038360383361578]],[[-0.0044399481266737,0.010825985111296,-0.023215040564537],[-0.028041047975421,0.010141313076019,0.094398856163025],[0.015546155162156,0.068746514618397,0.0027708648703992]],[[-0.033254846930504,-0.060839049518108,-0.016055684536695],[-0.098495110869408,0.0076160952448845,0.11312286555767],[-0.00043366485624574,0.0084317279979587,-0.048210758715868]],[[0.0137131633237,-0.010482141748071,0.050388745963573],[0.0085048191249371,-0.033006805926561,0.099459290504456],[-0.033826127648354,0.046293087303638,0.0039667077362537]],[[-0.10667330771685,0.021215133368969,0.053457703441381],[0.062776237726212,-0.0021965536288917,0.033605314791203],[0.092083722352982,0.087574452161789,0.035250011831522]],[[0.017682218924165,-0.01148936804384,0.07731206715107],[0.0047148657031357,-0.076874516904354,0.022202853113413],[0.032936919480562,-0.036743484437466,0.039314419031143]],[[-0.023728566244245,-0.0087090581655502,0.035786256194115],[-0.0011471700854599,0.0011804815148935,0.013818892650306],[-0.027755133807659,0.00060492812190205,0.039735548198223]],[[-0.0083398493006825,-0.0049953404814005,0.0069208536297083],[-0.005604350939393,0.089066080749035,-0.07494729757309],[-0.060093563050032,-0.01328581571579,0.028566278517246]],[[-0.025620363652706,0.051331140100956,0.051580082625151],[-0.027898600324988,0.018278263509274,0.045234423130751],[0.022404812276363,0.023852031677961,0.036010775715113]],[[-0.015201411210001,0.040353987365961,0.035196591168642],[0.010901072993875,0.023637145757675,0.017448967322707],[-0.019270252436399,-0.019567472860217,-0.010123427025974]],[[0.01555560529232,-0.045266754925251,0.064771734178066],[0.090340100228786,0.098619028925896,0.079932518303394],[0.043821938335896,0.015653371810913,0.062307812273502]],[[0.016002036631107,0.012439711950719,-0.010933404788375],[-0.04142228141427,0.032014977186918,0.0088450042530894],[-0.025112021714449,-0.059222467243671,-0.050216741859913]],[[-0.0010872222483158,0.021496834233403,0.028885519132018],[0.022540390491486,-0.040886141359806,-0.0088880779221654],[0.014403383247554,-0.10072258114815,-0.02162691950798]],[[-0.015817584469914,0.056341413408518,0.05038258805871],[-0.027558384463191,0.0057873427867889,0.010388968512416],[8.0419675214216e-05,0.066214479506016,0.0086153950542212]],[[0.0079078106209636,0.021780049428344,-0.0049882219173014],[-0.028859907761216,-0.034802567213774,-0.051359366625547],[0.021488476544619,0.028560157865286,-0.017534462735057]],[[-0.023808365687728,0.018445741385221,-0.10823107510805],[0.095954164862633,0.039473418146372,0.028236145153642],[-0.0074540763162076,-0.042830549180508,0.046999271959066]],[[-0.010499307885766,-0.017487842589617,-0.02758926525712],[-0.031320478767157,-0.034465476870537,-0.069911539554596],[0.065898261964321,0.0041825650259852,-0.093834735453129]],[[0.022846279665828,0.071979470551014,-0.010718498378992],[-0.02794886380434,0.0320042707026,0.041467268019915],[-0.011971285566688,-0.061478264629841,-0.020434698089957]],[[0.063486404716969,-0.038076974451542,0.028066869825125],[-0.044993296265602,-0.021834075450897,-0.0090249767526984],[0.0065420954488218,-0.029404129832983,0.069281175732613]],[[-0.10143050551414,-0.010102052241564,-0.10026221722364],[-0.13649593293667,-0.012787614949048,-0.049556352198124],[-0.045885786414146,0.054443180561066,0.038564782589674]],[[-0.01438475959003,-0.0054542925208807,0.011009714566171],[0.015942400321364,0.028926828876138,0.044054165482521],[0.0056429337710142,0.0688152089715,-0.031114786863327]],[[-0.083891585469246,-0.026553597301245,-0.046304740011692],[0.00029509089654312,0.033622674643993,0.02010809071362],[0.067484617233276,0.11132738739252,-0.010172076523304]],[[-0.053492039442062,-0.014548594132066,-0.0061839851550758],[-0.012271733023226,-0.019155466929078,-0.018664795905352],[-0.048321127891541,0.027953581884503,-0.033271100372076]],[[-0.016944957897067,-0.027801904827356,0.033334475010633],[0.0002831794845406,-0.013590821996331,-0.013759569264948],[-0.056271851062775,0.011241807602346,0.0012186854146421]],[[-0.030386699363589,-0.047306966036558,0.070543676614761],[0.093718603253365,0.051389954984188,-0.041109472513199],[-0.029913948848844,0.022913360968232,0.019925843924284]],[[-0.020741425454617,-0.04705024510622,0.043890409171581],[-0.064717933535576,-0.043621812015772,-0.12566274404526],[-0.040040336549282,-0.048333611339331,-0.039798069745302]],[[0.047110509127378,0.032616760581732,0.0093919280916452],[-0.018989205360413,-0.01682941429317,-0.01225286629051],[-0.022379919886589,-0.023030828684568,0.029927797615528]],[[-0.077562414109707,0.076612949371338,0.11777167022228],[-0.10815921425819,-0.010346933268011,0.013035397976637],[-0.00049821700667962,-0.022097719833255,0.050065577030182]],[[0.0056576272472739,0.014648746699095,0.078112833201885],[-0.092759989202023,0.024715330451727,0.039123591035604],[-0.067891925573349,-0.005265689920634,0.021224420517683]],[[0.008258655667305,-0.013304277323186,-0.052360404282808],[0.042627062648535,-0.050005629658699,0.052290555089712],[0.10522066801786,0.03935719653964,0.030877009034157]],[[0.044235728681087,-0.0047399899922311,0.029982808977365],[-0.083331555128098,-0.036638263612986,-0.041613429784775],[-0.0071924971416593,-0.034901078790426,-0.022544763982296]],[[-0.050595708191395,-0.04379989951849,0.030983628705144],[-0.034855347126722,-0.11799833923578,0.021814720705152],[0.019489824771881,0.003628792706877,-0.027549104765058]],[[0.020464602857828,0.087281286716461,-0.047986224293709],[-0.042718924582005,0.060870405286551,0.024683713912964],[0.0095297554507852,0.017391299828887,0.011691497638822]],[[-0.050689753144979,-0.001572422683239,0.13716699182987],[0.029849367216229,0.053033363074064,0.0067372834309936],[-0.0023245543707162,-0.11037890613079,-0.064912423491478]],[[-0.025569951161742,0.015480635687709,0.018495246767998],[-0.051871720701456,0.054266415536404,-0.03583312407136],[0.013886204920709,0.0014668112853542,-0.02549733966589]],[[-0.079323202371597,0.073663234710693,0.012674733065069],[0.061359453946352,0.049418967217207,0.043322812765837],[-0.01273457147181,0.018192559480667,-0.079703502357006]],[[-0.045390520244837,0.0026336284354329,-0.0081510655581951],[-0.00038620049599558,0.0027321462985128,0.017252145335078],[-0.057274907827377,0.056355211883783,-0.017728954553604]],[[0.12287533283234,0.025958575308323,0.10068493336439],[0.053113203495741,0.067407913506031,-0.042986389249563],[-0.013141258619726,0.088049605488777,0.047557558864355]],[[-0.0065151527523994,-0.077734127640724,-0.038683507591486],[0.048200875520706,-0.031586956232786,0.028232617303729],[-0.028480479493737,-0.052616775035858,-0.07740992307663]],[[0.0222745295614,0.03588954731822,0.0056809643283486],[-0.031766127794981,-0.042459778487682,0.055111344903708],[0.038664624094963,0.027606906369328,-0.02361230738461]],[[-0.015106081031263,-0.006114745978266,-0.029632026329637],[0.035966753959656,0.039653405547142,0.027853099629283],[0.027558783069253,0.011998628266156,0.054663743823767]],[[0.030613102018833,-0.048731509596109,-0.0049848784692585],[-0.017745900899172,-0.038150850683451,-0.018190680071712],[0.0043484228663146,-0.057228829711676,-0.085449896752834]],[[0.046324416995049,0.030710842460394,0.082323551177979],[0.0053059896454215,-0.02516333758831,0.080588340759277],[0.024908104911447,0.085693560540676,0.027941539883614]],[[0.026503464207053,0.06023670732975,0.047567546367645],[-0.032541509717703,-0.015503195114434,-0.016837643459439],[0.038916867226362,0.042817320674658,-0.038048453629017]],[[-0.051628522574902,0.0016650693723932,-0.12707822024822],[-0.054231125861406,0.092423669993877,-0.023262720555067],[-0.05609080940485,0.035159163177013,-0.013386007398367]],[[0.031274531036615,-0.072705321013927,0.085088111460209],[-0.024994989857078,-0.062891811132431,-0.057990174740553],[0.10750774294138,0.0031860216986388,-0.01981283351779]],[[-0.056900322437286,-0.027321141213179,-0.0048710126429796],[-0.0078404294326901,0.021886771544814,0.070143036544323],[0.061624519526958,-0.027224630117416,-0.020396932959557]],[[0.013853393495083,-0.012099067680538,-0.0045545711182058],[0.0040818601846695,-0.044260758906603,0.078016392886639],[-0.016060022637248,-0.04357497766614,0.016309818252921]]],[[[0.032654009759426,0.019021656364202,-0.036937274038792],[0.0010045195231214,-0.011252538301051,0.050401482731104],[-0.06892392039299,-0.0004704175516963,0.0095326593145728]],[[-0.041797749698162,0.026417417451739,0.025727495551109],[0.010829538106918,0.030045375227928,-0.024448741227388],[-0.020381473004818,-0.068089939653873,-0.045141790062189]],[[0.032288633286953,-0.027632040902972,-0.0124276811257],[-0.029094500467181,-0.032910443842411,0.0046748369932175],[0.050806488841772,-0.0002593458048068,0.039147652685642]],[[0.00918750744313,-0.068567968904972,-0.061027135699987],[-0.0084391720592976,-0.03106844983995,-0.047194059938192],[0.072789810597897,-0.024759164080024,-0.018658943474293]],[[0.057148922234774,-0.049254629760981,0.017928197979927],[0.00086427759379148,0.035358570516109,-0.012536301277578],[0.045875161886215,-0.0059518087655306,0.021252308040857]],[[0.057697258889675,-0.055558893829584,0.045981377363205],[-0.032685320824385,-0.019647162407637,-0.0097332280129194],[0.038547158241272,0.018568871542811,0.0076565975323319]],[[0.022053556516767,0.013777180574834,0.030263522639871],[-0.010614614933729,0.015505931340158,0.074963174760342],[-0.0042709596455097,-0.030003888532519,0.043307416141033]],[[-0.032734822481871,-0.019653217867017,-0.0094718737527728],[-0.01022429484874,0.037474505603313,0.12462043017149],[-0.051487144082785,0.032966278493404,0.05523656308651]],[[0.0015143845230341,-0.048833440989256,0.0039954693056643],[0.012983659282327,-0.017300143837929,0.010141406208277],[0.024747485294938,-0.026255752891302,0.025028005242348]],[[0.054524514824152,-0.1304334551096,-0.013289080932736],[-0.029144860804081,0.010020141489804,0.036757718771696],[0.062819093465805,0.051013574004173,-0.021007439121604]],[[0.022410431876779,0.032204262912273,0.044188980013132],[-0.0086764954030514,-0.099483713507652,0.048388056457043],[0.031949900090694,0.051772497594357,0.092633664608002]],[[-0.04908436909318,-0.031422484666109,-0.067177064716816],[-0.034455887973309,0.044327430427074,0.013059133663774],[0.054566171020269,0.026935268193483,0.058071937412024]],[[-0.015206250362098,-0.045645739883184,-0.013477734290063],[0.013048322871327,-0.013345020823181,0.061749264597893],[0.010640632361174,0.034617032855749,-0.049165043979883]],[[0.06004511192441,-0.061279352754354,0.078045353293419],[0.077385887503624,0.036512728780508,0.0046030352823436],[0.018123498186469,0.04741557314992,0.11994330585003]],[[0.074140876531601,0.053186915814877,0.011689750477672],[-0.0129853207618,-0.0016213922062889,-0.069474674761295],[0.048525389283895,0.0076450160704553,0.085448771715164]],[[-0.014059064909816,0.044239886105061,-0.081065885722637],[0.013569786213338,-0.062282714992762,-0.031922642141581],[0.064502067863941,-0.0022790452931076,-0.036847185343504]],[[0.041593968868256,0.057360414415598,0.047055933624506],[0.008207930251956,-0.056163873523474,0.0034642480313778],[0.04448552057147,0.064683273434639,0.015720061957836]],[[-0.022984892129898,0.0019593429751694,0.0034968988038599],[0.021714970469475,-0.0027048629708588,-0.018861519172788],[-0.010187025181949,0.048297423869371,0.013197217136621]],[[0.016447488218546,0.0004999655066058,-0.03042864240706],[-0.016375456005335,0.00033091922523454,0.026103874668479],[0.030775457620621,0.013880542479455,0.009847360663116]],[[-0.0037640559021384,0.046804279088974,0.047149997204542],[-0.064525865018368,-0.027994811534882,-0.024759061634541],[0.00853649713099,-0.015336907468736,-0.05430019274354]],[[0.047032799571753,0.058683082461357,-0.051044259220362],[-0.0021402719430625,0.050429087132215,0.074547559022903],[0.014522169716656,0.026313127949834,-0.0082557667046785]],[[0.014312982559204,-0.040240682661533,-0.036596208810806],[0.030631506815553,0.0030200090259314,-0.009836888872087],[-0.018773932009935,-0.028512071818113,-0.015132986940444]],[[-0.0088742300868034,-0.041010946035385,-0.015585474669933],[0.030467225238681,0.047910384833813,0.011983933858573],[-0.029009046033025,-0.052376009523869,0.048381242901087]],[[0.039601601660252,0.041690282523632,-0.031488075852394],[-0.062806732952595,-0.10152447968721,0.01889574341476],[0.026964206248522,-0.018909621983767,-0.030827919021249]],[[0.041697930544615,0.037122949957848,0.073231622576714],[0.020490810275078,0.039196327328682,-0.021414522081614],[0.028719058260322,0.022241402417421,-0.015357552096248]],[[-0.08106417953968,0.056296020746231,-0.023695638403296],[-0.0027619507163763,0.017885008826852,-0.023968549445271],[-0.0050513395108283,-0.054807584732771,0.011566515080631]],[[-0.015662554651499,0.057403933256865,-0.019831880927086],[0.015072354115546,-0.034329567104578,-0.038520388305187],[0.044157594442368,0.095410712063313,0.087848663330078]],[[-0.012232883833349,-0.027782430872321,0.069469504058361],[-0.010096481069922,-0.017947625368834,0.0073842159472406],[0.12376952171326,-0.088461957871914,0.035067308694124]],[[0.007814702577889,-0.047492209821939,-0.065573811531067],[-0.042272217571735,0.016908662393689,0.0663842856884],[-0.0016938778571784,-0.0035739878658205,-0.032001856714487]],[[0.0014192365342751,0.023190515115857,0.082304187119007],[-0.09828232228756,-0.013938571326435,-0.028986804187298],[-0.049615543335676,0.025016894564033,0.029404293745756]],[[0.017507091164589,-0.029169766232371,-0.0010184904094785],[0.011781218461692,0.056929729878902,-0.012112002819777],[-0.095301449298859,-0.032104790210724,0.053549256175756]],[[-0.096905149519444,-0.051492806524038,-0.077092327177525],[0.10120978206396,0.022461038082838,-0.14971400797367],[0.01533423922956,0.020161246880889,-0.0082927253097296]],[[0.022608382627368,0.042360354214907,0.013237333856523],[-0.0059435083530843,-0.0085041970014572,-0.011852676048875],[0.0073273861780763,0.035104483366013,-0.0020742551423609]],[[0.010424631647766,0.010765400715172,-0.0110321957618],[0.0012010228820145,-0.070247285068035,-0.023804353550076],[-0.059432160109282,0.046966154128313,-0.026950960978866]],[[0.018642155453563,0.051826555281878,0.078192450106144],[0.0069358805194497,-0.065943494439125,-0.027047885581851],[-0.0099408468231559,-0.05539882928133,0.01039307191968]],[[-0.011872991919518,0.058497004210949,0.05033028498292],[0.031022982671857,-0.0077609238214791,-0.065886959433556],[-0.055331941694021,0.017009409144521,0.072844497859478]],[[0.051754850894213,-0.0092149190604687,0.048407465219498],[-0.002559470012784,-0.0466034039855,-0.0043935705907643],[-0.0071118003688753,0.076945573091507,-0.017217414453626]],[[0.0068555008620024,0.008084918372333,0.048240967094898],[0.021362967789173,-0.035467855632305,-0.013291705399752],[-0.07172766327858,0.0056939511559904,-0.025720795616508]],[[0.019010862335563,-0.11497000604868,-0.1309871673584],[-0.06224550306797,0.038725793361664,0.041052766144276],[-0.0088731674477458,0.010720524005592,0.016085850074887]],[[0.0012997577432543,-0.070312030613422,-0.025318920612335],[0.0044626938179135,-0.004978044424206,0.021109322085977],[-0.049002036452293,-0.039284639060497,-0.022797537967563]],[[0.065415926277637,-0.036211606115103,-0.043193470686674],[0.004531770478934,0.021275291219354,-0.020860176533461],[-0.011980872601271,0.021774563938379,-0.012468384578824]],[[-0.0011658661533147,-0.043508037924767,-0.011455815285444],[-0.059491228312254,-0.031027654185891,-0.0024011929053813],[0.040533374994993,0.032621048390865,-0.021253351122141]],[[0.036811672151089,-0.018551358953118,-0.035944510251284],[-0.0045880628749728,-0.019027289003134,0.01134807150811],[0.018450040370226,0.047636248171329,0.01826599240303]],[[-0.0024145878851414,0.019560692831874,0.002011451870203],[-0.033076569437981,-0.020933002233505,0.034951332956553],[0.021023092791438,0.048594694584608,0.082401029765606]],[[0.047536600381136,-0.02697959728539,-0.087944589555264],[-0.030568646267056,-0.016315590590239,-0.0043284255079925],[0.014305567368865,0.0071520279161632,-0.0088098049163818]],[[-0.026759199798107,0.033399123698473,0.018516331911087],[-0.004125383682549,0.039064440876245,0.0034530393313617],[0.017506653442979,-0.0030411703046411,-0.14744073152542]],[[-0.099066115915775,0.041273005306721,-0.022018108516932],[-0.02600109577179,-0.014212082140148,0.020273694768548],[0.0054974858649075,-0.086722381412983,-0.010663761757314]],[[0.060146655887365,-0.031401239335537,0.0071526034735143],[0.036033533513546,0.014479122124612,-0.027534315362573],[0.023404205217957,-0.0023055896162987,0.03549837321043]],[[-0.025874059647322,0.046432327479124,-0.048511795699596],[-0.028068987652659,0.011063629761338,-0.058276101946831],[0.036013841629028,-0.053223561495543,0.010117175988853]],[[-0.043554771691561,-0.029466995969415,0.018699223175645],[-0.071758508682251,-0.019436681643128,0.033825859427452],[0.023548297584057,0.033838104456663,-0.013368535786867]],[[-0.049543652683496,-0.070408269762993,-0.015266086906195],[0.011643803678453,0.039784003049135,0.0098790396004915],[-0.004896632861346,-0.0039220941253006,-0.026943871751428]],[[-0.06000079959631,-0.074993468821049,-0.10023000836372],[0.056146658957005,-0.0089508229866624,-0.00029161834390834],[0.0037492122501135,-0.019183849915862,-0.0026590053457767]],[[-0.018065581098199,-0.049378164112568,-0.0049010766670108],[-0.015250753611326,0.083544388413429,0.001755821867846],[-0.02622938528657,-0.038928370922804,0.021847225725651]],[[0.059477474540472,0.095271855592728,0.044790375977755],[0.040027923882008,0.0060290372930467,0.035036496818066],[0.051521498709917,0.076199375092983,0.01725884526968]],[[0.045148439705372,0.093981191515923,0.026890380308032],[-0.0062451125122607,-0.063557967543602,0.043701112270355],[0.0031082145869732,0.033243004232645,-0.05043388530612]],[[-0.065851017832756,0.01294279191643,-0.049248438328505],[-0.0041591236367822,-0.015915907919407,-0.023485939949751],[0.011054289527237,-0.074254602193832,-0.0075170355848968]],[[0.045345120131969,0.023959435522556,0.0099610611796379],[0.061085067689419,0.02250312268734,0.019814493134618],[0.0048165041953325,0.013182493858039,0.035576269030571]],[[0.033820170909166,0.0034592242445797,0.020438136532903],[-0.048379864543676,-0.01863438822329,0.023474195972085],[0.040365509688854,-0.032411806285381,-0.058201428502798]],[[0.049734085798264,-0.036719433963299,-0.0062719071283937],[-0.090347602963448,-0.024521576240659,-0.042464006692171],[0.035811934620142,-0.0027011041529477,0.016365697607398]],[[-0.013776886276901,-0.0045665469951928,0.064338818192482],[0.011814520694315,-0.016271604225039,-0.077043063938618],[0.011689734645188,0.063759423792362,-0.0093018496409059]],[[0.030319333076477,-0.063708521425724,-0.0081735188141465],[0.019656080752611,-0.011303322389722,-0.029127962887287],[-0.025960344821215,0.003574849339202,0.012129969894886]],[[-0.016209241002798,-0.044274996966124,-0.13884752988815],[0.016296355053782,-0.039439480751753,0.025097604840994],[-0.087690658867359,0.027526076883078,0.010388011112809]],[[0.0377282127738,-0.011496219784021,-0.0029443632811308],[-0.024682661518455,-0.036493446677923,0.0069053340703249],[0.014065000228584,0.027953747659922,-0.046512968838215]],[[0.071725934743881,-0.032582934945822,-0.045792255550623],[-0.049562390893698,-0.070782780647278,-0.0089101726189256],[0.014206525869668,-0.0063190828077495,0.012125167064369]]],[[[-0.039322059601545,0.010665077716112,-0.03260301426053],[-0.089039370417595,0.064817972481251,0.030418559908867],[-0.07682428508997,-0.00025767504121177,0.10099095106125]],[[-0.062966771423817,-0.039163559675217,0.010431998409331],[-0.015614074654877,0.018925772979856,0.014885271899402],[0.047685872763395,0.081631079316139,0.01201044768095]],[[0.01473943144083,-0.0088431816548109,-0.047571610659361],[-0.040616974234581,-0.030297446995974,0.018259055912495],[-0.024628387764096,0.0091376360505819,-0.010443324223161]],[[0.0026289473753422,-0.072349175810814,0.019043939188123],[-0.089594028890133,-0.0070780678652227,0.048908960074186],[0.068410396575928,-0.0071012550033629,0.033426590263844]],[[0.0083843534812331,-0.096950270235538,-0.060762722045183],[-0.012063157744706,-0.13429665565491,0.059718865901232],[0.017388505861163,0.11582576483488,0.041907135397196]],[[-0.053589403629303,-0.067203648388386,0.019466990604997],[0.0060164895839989,0.062723435461521,0.015011606737971],[-0.0047018444165587,0.068681940436363,-0.051497910171747]],[[-0.028098609298468,-0.040152799338102,0.014930906705558],[0.05785595625639,0.015898898243904,-0.033508233726025],[0.032270051538944,0.018008101731539,0.015593817457557]],[[0.038716305047274,-0.048334643244743,0.002278683707118],[0.070753872394562,-0.042256847023964,0.0062086991965771],[-0.041761614382267,-0.046729575842619,0.061580553650856]],[[-0.010567133314908,-0.033001523464918,0.037963036447763],[0.010813965462148,0.0083095133304596,-1.8093944163411e-05],[-0.0074462136253715,0.0062298136763275,-0.030588250607252]],[[-0.30050081014633,0.0093628047034144,0.01057193800807],[0.024763166904449,-0.11784180253744,0.075570829212666],[0.048538394272327,0.047780185937881,-0.029988300055265]],[[0.063531368970871,-0.01925503090024,-0.0099374847486615],[-0.034709144383669,-0.069209732115269,-0.018799543380737],[-0.028130235150456,-0.031532451510429,-0.1355934292078]],[[0.045483838766813,-0.0054275365546346,0.05678079277277],[0.082912959158421,0.058745924383402,-0.033068262040615],[-0.004473754670471,-0.028297485783696,-0.034737847745419]],[[0.0025738943368196,0.073481440544128,0.015452696941793],[-0.10926024615765,-0.12719585001469,0.067765131592751],[-0.0092344349250197,-0.077734723687172,-0.0049458551220596]],[[0.038437005132437,-0.070606969296932,0.031958598643541],[0.057689394801855,0.042539648711681,-0.0032270413357764],[-0.013098149560392,-0.00067302456591278,-0.024488238617778]],[[0.12820112705231,0.038269758224487,-0.078209400177002],[-0.030293161049485,0.077154882252216,-0.030654506757855],[0.0011646453058347,-0.025378780439496,0.021112529560924]],[[-0.094812899827957,0.065167814493179,0.02909735403955],[-0.0093077626079321,0.12297704070807,0.041433081030846],[-0.026453647762537,0.054201383143663,-0.0011443319963291]],[[0.098441042006016,0.074888087809086,0.08616204559803],[0.088408559560776,0.026230916380882,-0.0054537560790777],[0.096729777753353,0.0037326449528337,-0.0047516641207039]],[[-0.01922264136374,0.022429496049881,-0.023833619430661],[0.048343479633331,-0.021196128800511,0.041852645576],[0.07345462590456,0.047434352338314,0.11915741115808]],[[-0.0072079999372363,-0.0036755043547601,-0.040219515562057],[0.05138360708952,-0.037367444485426,-0.055603988468647],[-0.018286822363734,0.06438310444355,-0.059483088552952]],[[-0.031477209180593,0.021636322140694,-0.024494543671608],[0.0074305776506662,-0.032484617084265,0.028722861781716],[0.013827363029122,-0.030649747699499,0.073109395802021]],[[0.080845057964325,0.11467867344618,0.036017633974552],[0.16529278457165,0.12233509123325,0.068486861884594],[0.13402731716633,0.12589934468269,0.12970399856567]],[[0.05138873681426,-0.025790439918637,-0.020924145355821],[-0.054753247648478,0.043126422911882,-0.0131148211658],[0.0058374865911901,0.048443347215652,-0.042246341705322]],[[-0.073294453322887,-0.0055987513624132,-0.0097286161035299],[-0.025406423956156,0.00094079080736265,0.023697961121798],[-0.027692705392838,0.06709511578083,0.061566170305014]],[[-0.079755432903767,0.010500566102564,0.018194148316979],[0.025209108367562,-0.022630918771029,0.026877721771598],[-0.0034361237194389,-0.15243284404278,0.019234290346503]],[[-0.063836023211479,0.075230836868286,0.094035163521767],[-0.029087450355291,0.031335599720478,0.044817682355642],[-0.042957443743944,0.061864819377661,0.071651592850685]],[[-0.062986418604851,0.034948039799929,-0.028145210817456],[-0.021099403500557,-0.0017966132145375,0.020476220175624],[-0.10856085270643,-0.11291247606277,-0.015484116971493]],[[0.066043637692928,-0.01180658582598,0.029093150049448],[0.056215044111013,-0.0085475016385317,0.032358922064304],[0.075917541980743,0.026846498250961,-0.017230842262506]],[[-0.033596947789192,0.010244319215417,-0.0576560087502],[-0.013589452952147,0.060899931937456,0.07797147333622],[-0.011960034258664,-0.022676086053252,-0.043866954743862]],[[0.13693927228451,0.051301468163729,0.026359787210822],[0.077279135584831,-0.029061056673527,-0.04182455688715],[-0.068299427628517,-0.11729096621275,0.00061281933449209]],[[0.022415161132812,-0.016604131087661,-0.030111523345113],[0.079039566218853,0.085976719856262,-0.042095959186554],[-0.043657507747412,0.085724025964737,-0.039578054100275]],[[0.0043096258305013,-0.015971031039953,-0.051668014377356],[-0.051486663520336,0.015756001695991,0.0072375554591417],[0.095592357218266,-0.063854739069939,0.030095286667347]],[[0.085352331399918,-0.0016642289701849,-0.17110767960548],[0.25810953974724,0.055152453482151,-0.068795219063759],[-0.046142935752869,0.021428512409329,-0.088171750307083]],[[-0.035287041217089,-0.25783666968346,-0.23555850982666],[0.10789766162634,-0.052440598607063,-0.048008821904659],[0.22287079691887,0.073370069265366,-0.060402531176805]],[[0.011671260930598,-0.066428773105145,-0.063438184559345],[-0.085031315684319,-0.10040414333344,-0.045862317085266],[0.048049245029688,0.067404538393021,0.024481233209372]],[[-0.033998370170593,-0.10760495066643,0.13218219578266],[-0.0057008164003491,-0.037750232964754,0.069780774414539],[-0.16908000409603,0.061474695801735,0.035771112889051]],[[0.033182971179485,0.00058678368804976,0.0057671014219522],[-0.020620560273528,-0.079755805432796,-0.02282128110528],[0.0083009079098701,0.051388990134001,-0.030313342809677]],[[0.073467470705509,0.075429767370224,0.0043913470581174],[0.099739395081997,-0.10197116434574,-0.11293493211269],[0.10415697097778,-0.0080059384927154,-0.092456132173538]],[[0.029384991154075,-0.11363478004932,-0.036159086972475],[0.088953524827957,0.043632991611958,0.061216659843922],[0.089960873126984,-0.063840307295322,-0.099115483462811]],[[-0.064061731100082,0.02840224839747,0.029039708897471],[0.012310375459492,-0.048505119979382,0.063986055552959],[0.052499942481518,0.096344791352749,0.055444784462452]],[[-0.013324680738151,-0.11583260446787,-0.082717560231686],[-0.1004481613636,-0.091252326965332,-0.10893899947405],[-0.04450262337923,-0.0072031798772514,0.040528584271669]],[[-0.021556166931987,-0.019886467605829,0.047872576862574],[-0.12302033603191,0.090902060270309,0.023775057867169],[0.0089475344866514,0.079641424119473,0.11384364962578]],[[0.061841405928135,-0.022291289642453,0.0017019364750013],[-0.12756256759167,-0.034278322011232,0.038811355829239],[0.002069506328553,-0.073915183544159,0.065068691968918]],[[0.020811019465327,0.057397127151489,-0.054891388863325],[0.0388388261199,0.10648201406002,-0.026051472872496],[0.0060874340124428,0.00086468632798642,0.032488834112883]],[[-0.098933428525925,0.02958625741303,-0.0012834805529565],[-0.020050881430507,0.084285534918308,0.023637531325221],[0.043546866625547,0.04631718993187,0.0017171282088384]],[[-0.019213005900383,0.14689654111862,0.054006524384022],[-0.040779363363981,0.021761082112789,0.10804150998592],[0.017307367175817,-0.043323431164026,0.019718781113625]],[[0.027741070836782,-0.20563946664333,0.051535621285439],[-0.057266306132078,-0.043587177991867,-0.022221628576517],[0.024762950837612,0.0084425704553723,-0.068521745502949]],[[0.018808867782354,0.02368894778192,-0.0015609798720106],[-0.067655801773071,-0.090336814522743,0.00091373914619908],[-0.056237902492285,-0.073817268013954,-0.042010553181171]],[[-0.10318636149168,0.068646982312202,0.0076358020305634],[-0.088204368948936,-0.018405908718705,-0.0016769291833043],[-0.097812302410603,0.028226222842932,0.0010961568914354]],[[-0.15368919074535,0.070024624466896,0.036318346858025],[0.025840863585472,0.0014300619950518,-0.055216461420059],[0.027454864233732,-0.0052606044337153,-0.022207183763385]],[[-0.094748765230179,0.068640775978565,-0.0077745225280523],[-0.12395124137402,-0.071897983551025,0.093154452741146],[-0.10377487540245,-0.03821374848485,0.037939354777336]],[[-0.075004644691944,0.009028485044837,0.0085473917424679],[0.014065693132579,-0.024688983336091,-0.014377297833562],[0.045505404472351,0.1503221988678,0.038843888789415]],[[0.053747039288282,-0.0073598395101726,0.057226151227951],[-0.015848346054554,0.051752973347902,-0.01153551787138],[-0.038261514157057,-0.04249531775713,0.010863095521927]],[[0.062163934111595,-0.023932963609695,0.096360489726067],[0.013491642661393,0.066113486886024,0.067761406302452],[-0.033608213067055,0.02117775939405,0.10911341756582]],[[-0.0040999441407621,0.16459287703037,0.090014077723026],[0.038619816303253,0.064473979175091,0.04255622625351],[0.068479612469673,-0.024699514731765,-0.1200977563858]],[[0.016545251011848,0.10143253207207,-0.032638199627399],[-0.0010884868679568,0.027869716286659,0.10163351148367],[0.011205981485546,0.036552902311087,0.066891074180603]],[[0.041551124304533,0.013068840838969,-0.035166971385479],[-0.034913469105959,0.018073763698339,-0.012558445334435],[-0.03593048453331,0.048485018312931,0.0088930167257786]],[[-0.084006741642952,-0.053075581789017,-0.015379711985588],[-0.045299094170332,-0.007819346152246,0.040367025882006],[0.00011248983355472,-0.012826588004827,0.059565730392933]],[[0.034882180392742,-0.03855799138546,-0.049160294234753],[-0.021466601639986,0.084680065512657,-0.12148085981607],[-0.033339459449053,0.030966171994805,-0.19770522415638]],[[-0.013755892403424,0.11933524906635,0.030427666381001],[-0.01345088519156,-0.0053471950814128,0.058787818998098],[0.024147367104888,0.018057318404317,-0.05741561204195]],[[0.089882656931877,0.076194986701012,0.040327053517103],[0.032879825681448,-0.081508226692677,-0.036346450448036],[0.046710107475519,-0.086867980659008,-0.024016728624701]],[[-0.043900806456804,-0.20363140106201,-0.01928448677063],[0.098342753946781,0.020990084856749,0.048769172281027],[-0.040863964706659,0.16469211876392,0.035546783357859]],[[-0.010876732878387,-0.034188002347946,0.034874394536018],[0.0001703517336864,-0.11501830071211,0.02986810170114],[-0.071247726678848,-0.021179726347327,-0.0097836153581738]],[[-0.10442589968443,-0.14466701447964,-0.053033761680126],[-0.069494098424911,-0.096159636974335,-0.011971187777817],[0.035439431667328,0.12471489608288,0.093652330338955]],[[-0.014856777153909,0.0051291668787599,0.029509600251913],[-0.016539309173822,-0.0077792503871024,-0.018097596243024],[0.019447198137641,0.016707072034478,-0.04769641533494]]],[[[0.030986512079835,0.011755536310375,-0.033766068518162],[-0.13045236468315,-0.0130704510957,-0.094579294323921],[0.073859639465809,0.044256661087275,0.13824287056923]],[[0.0042181755416095,0.021934950724244,0.02052516490221],[-0.027779392898083,0.0098646897822618,-0.0026307727675885],[0.021713513880968,0.00060969759942964,-0.011838807724416]],[[0.007362418808043,0.026775386184454,-0.036102324724197],[5.0721606385196e-05,-0.067625433206558,0.026903659105301],[-0.028530949726701,-0.043341137468815,0.0071800122968853]],[[-0.080001063644886,-0.024106623604894,0.040047131478786],[-0.052696134895086,0.027768161147833,-0.036167874932289],[0.056578863412142,0.02076755836606,-0.076969787478447]],[[-0.054152846336365,-0.04698983579874,-0.036885228008032],[-0.066950798034668,0.026826184242964,-0.037190612405539],[-0.056445710361004,0.014706434682012,0.016713440418243]],[[-0.037215325981379,0.13309949636459,0.084273658692837],[0.047029834240675,-0.032860144972801,0.011788002215326],[-0.047721300274134,-0.13978561758995,-0.017464946955442]],[[-0.042070437222719,-0.0026608777698129,0.018523667007685],[-0.092145368456841,-0.033565316349268,-0.022818831726909],[-0.025298699736595,-0.013383680023253,0.03754822537303]],[[-0.013914092443883,-0.10267101973295,-0.018063517287374],[-0.01713833026588,-0.054703876376152,-0.0072535220533609],[0.0080201094970107,-0.024974415078759,0.016526056453586]],[[-0.034361395984888,-0.042173393070698,0.088234089314938],[0.02089267782867,0.049605127424002,0.010465513914824],[-0.040816862136126,-0.025470186024904,-0.031194610521197]],[[-0.035039559006691,0.0040347240865231,-0.0093112969771028],[-0.034190997481346,-0.039900872856379,0.00025016046129167],[-0.0602743960917,-0.036108516156673,0.0030368387233466]],[[-0.0079906117171049,0.018834264948964,0.023682879284024],[-0.079287551343441,-5.6779088481562e-05,-0.052243892103434],[-0.046743419021368,-0.017621144652367,-0.067886091768742]],[[0.031454216688871,0.002858854830265,-0.079423323273659],[-0.0020949896425009,-0.0083784647285938,0.005494904704392],[0.014148894697428,-0.0070270304568112,-0.016287939622998]],[[-0.019123358651996,-0.043366342782974,-0.035302016884089],[-0.07159698009491,0.026906283572316,-0.0059641376137733],[-0.077870912849903,-0.01369461696595,-0.11451950669289]],[[-0.084950558841228,0.026242196559906,0.039629247039557],[-0.080256901681423,0.084135800600052,0.00059675110969692],[0.020688895136118,0.084078423678875,-0.0085314093157649]],[[-0.02559451572597,-0.031625021249056,-0.013830007053912],[-0.039564725011587,-0.00052543228957802,-0.064252808690071],[-0.058400277048349,0.013847561553121,-0.024073459208012]],[[-0.04265858232975,0.033684249967337,0.014534384012222],[0.018013264983892,-0.027326190844178,-0.029142465442419],[-0.019792843610048,-0.013304225169122,0.092826619744301]],[[-0.064043961465359,0.043242394924164,-0.082782596349716],[-0.0080287139862776,-0.0076897842809558,-0.012437274679542],[-0.021183690056205,0.0074357935227454,-0.024668147787452]],[[-0.028438832610846,0.015050664544106,-0.070301480591297],[-0.012568083591759,-0.029467489570379,-0.036844626069069],[0.025414623320103,-0.019076706841588,-9.4804352556821e-05]],[[-0.025090305134654,-0.029205335304141,-0.034515712410212],[-0.028186939656734,-6.0675592976622e-05,0.033633202314377],[0.0037537703756243,-0.015296314842999,-0.027916304767132]],[[-0.04513992369175,0.027089029550552,-0.080202013254166],[-0.0057997754774988,-0.0037552260328084,-0.012695816345513],[-0.0071058534085751,-0.017901422455907,-0.027104835957289]],[[-0.001717263716273,-0.01697332970798,0.0099536431953311],[0.017235901206732,-0.074280306696892,-0.016528369858861],[0.10519107431173,-0.032421883195639,-0.056532636284828]],[[-0.055483940988779,0.011216969229281,-0.013146373443305],[0.034773163497448,0.02784532494843,-0.077182061970234],[-0.0061991349793971,-0.04204561188817,0.089866943657398]],[[-0.010240791365504,0.015738578513265,-0.029117455706],[-0.045017782598734,0.028103690594435,-0.035741120576859],[0.045073725283146,-0.029593134298921,0.064346663653851]],[[-0.065096341073513,0.00065186072606593,-0.0087043084204197],[0.059515580534935,-0.038072790950537,0.0072202715091407],[-0.0093157272785902,-0.055279664695263,-0.089177943766117]],[[0.027306193485856,0.0061219688504934,0.094655558466911],[-0.010083819739521,-0.010145696811378,0.010481966659427],[-0.030329585075378,-0.048061136156321,0.022429661825299]],[[-0.1004603356123,0.038130864500999,0.058979261666536],[-0.0037304197903723,-0.06850615888834,-0.028211113065481],[0.01177329197526,-0.04447415843606,-0.0068207979202271]],[[0.002151194261387,0.099547907710075,0.014013699255884],[-0.028771184384823,-0.032834321260452,-0.0043208794668317],[-0.045370358973742,0.029723761603236,-0.03895278647542]],[[0.047668516635895,0.054156258702278,0.085056766867638],[0.042167946696281,-0.053026717156172,0.0125264050439],[0.038153365254402,-0.040536429733038,0.0040112319402397]],[[0.056964062154293,-0.020453914999962,0.026702357456088],[0.043624471873045,-0.055710755288601,-0.029968656599522],[0.0065176305361092,-0.023105850443244,-0.069469913840294]],[[0.0066324565559626,0.0099210618063807,0.007645879406482],[-0.054045341908932,0.064588695764542,-0.0091411154717207],[-0.02071151137352,0.030121117830276,0.046643290668726]],[[-0.0356120839715,-0.025036452338099,0.02567114494741],[0.0049470039084554,-0.073430098593235,-0.022387605160475],[-0.018708413466811,-0.02193951420486,0.016612773761153]],[[-0.047178968787193,0.0042957304976881,0.025747975334525],[-0.0017968962201849,0.058944527059793,-0.014246877282858],[0.018186109140515,-0.057587962597609,0.010429904796183]],[[-0.013099273666739,-0.066520668566227,-0.1821471452713],[-0.066090568900108,0.03515499830246,-0.038789395242929],[0.004389759618789,-0.0078418841585517,-0.041042156517506]],[[-0.00090357701992616,0.060488879680634,-0.0031354518141598],[0.057354532182217,-0.085862092673779,0.039706993848085],[-0.045094974339008,-0.046741403639317,-0.05387644469738]],[[-0.030953168869019,-0.078443855047226,0.026853432878852],[-0.021784296259284,-0.021532978862524,0.002743041375652],[0.067369513213634,-0.0012232201406732,-0.014353737235069]],[[-0.022621992975473,0.061839636415243,0.098206259310246],[-0.014263209886849,-0.039921972900629,-0.088078022003174],[-0.049701865762472,0.033409029245377,0.016397455707192]],[[-0.030381752178073,-0.0087400497868657,0.0037573503796011],[-0.00053352117538452,-0.093367539346218,-0.0066655739210546],[-0.014448665082455,-0.044834088534117,-0.030666587874293]],[[-0.09091380238533,0.020293779671192,-0.0006067255162634],[-0.062804393470287,-0.0012167148524895,0.039790045469999],[0.096801400184631,0.056845922023058,-0.02134009078145]],[[0.022323189303279,0.0086684236302972,-0.012201271019876],[-0.044497042894363,-0.066252022981644,-0.0047511095181108],[-0.0020093852654099,-0.052112963050604,0.078271076083183]],[[0.033560760319233,0.020330572500825,-0.012661688029766],[-0.05579998344183,-0.061595965176821,-0.025310451164842],[-0.061645198613405,-0.053696326911449,0.023668467998505]],[[-0.052290927618742,-0.016310874372721,0.043620754033327],[-0.088943727314472,0.012539024464786,0.018326889723539],[0.01603346504271,0.006060195621103,-0.0421492010355]],[[-0.083279676735401,0.019365003332496,-0.014524823985994],[0.0037229610607028,-0.064223617315292,0.0022746461909264],[-0.0048624561168253,-0.018645023927093,-0.0032120726536959]],[[-0.053870480507612,0.080990798771381,-0.0024047063197941],[-0.068148069083691,0.06851227581501,-0.031193980947137],[0.00811449252069,-0.0078980922698975,0.032549671828747]],[[-0.02869363874197,-0.038824032992125,0.059735864400864],[-0.024144256487489,-0.017571229487658,-0.11213476955891],[0.0079611800611019,-0.043610461056232,0.0046427240595222]],[[0.0077948742546141,0.060704529285431,-0.047026284039021],[0.02327081002295,-0.027736151590943,0.018866384401917],[-0.045805841684341,0.01254151109606,-0.00063280196627602]],[[-0.055843099951744,-0.0087668150663376,-0.02852276340127],[-0.09882940351963,-0.05295068398118,-0.026932403445244],[0.022542292252183,0.037374179810286,0.017754642292857]],[[0.0053327232599258,0.011554092168808,-0.01250712107867],[0.018669825047255,-0.065989531576633,0.036469768732786],[0.023476952686906,-0.042759403586388,-0.080809094011784]],[[-0.041168749332428,0.010952020995319,0.005610354244709],[0.01612227410078,0.013053153641522,-0.070189215242863],[-0.063486583530903,-0.059813473373652,-0.0025751744396985]],[[-0.058224894106388,0.015313815325499,-0.050908874720335],[-0.018796971067786,0.025189520791173,-0.032914314419031],[0.0072046802379191,-0.0082759046927094,-0.061839964240789]],[[-0.023399820551276,-0.011425589211285,-0.048128575086594],[0.0076885260641575,-0.037979748100042,-0.013761565089226],[-0.044739842414856,0.070606842637062,0.0087514230981469]],[[0.027916248887777,0.013209103606641,-0.034643352031708],[-0.012986904941499,-0.031528860330582,-0.021612960845232],[-0.036104831844568,-0.002160124713555,0.019082352519035]],[[-0.029982302337885,0.024873739108443,-0.046548709273338],[0.015317219309509,-0.014709583483636,0.026754142716527],[0.0008237810106948,-0.078720189630985,-0.056087359786034]],[[0.051457121968269,0.035900413990021,-0.034699279814959],[-0.060616072267294,-0.018674254417419,-0.013455407693982],[0.019490027800202,0.012503947131336,-0.03134660795331]],[[0.023849084973335,0.041538640856743,0.028052184730768],[0.10132100433111,0.013821247965097,-0.019904114305973],[0.0035893679596484,0.027171440422535,0.034190889447927]],[[-0.015210353769362,-0.091823428869247,-0.070726290345192],[-0.023132968693972,-0.022485116496682,0.042110167443752],[-0.006456570699811,-0.011647621169686,-0.019920490682125]],[[-0.0087892320007086,0.022433072328568,0.036811407655478],[-0.026829201728106,0.0072799208573997,0.0054672416299582],[-0.029628302901983,0.091886252164841,-0.0064402315765619]],[[0.026078166440129,-0.066661149263382,-0.013902113772929],[-0.067785389721394,-0.035894736647606,-0.05037733912468],[-0.048715922981501,-0.09669653326273,-0.015913065522909]],[[0.025631513446569,0.010778846219182,0.021843872964382],[-0.04237037524581,0.007893018424511,-0.070031680166721],[-0.069869935512543,-0.077936179935932,-0.022044900804758]],[[-0.062193475663662,0.039301693439484,0.0030531561933458],[0.036486200988293,0.010948623530567,-0.025343604385853],[-0.052511312067509,0.042020246386528,-0.019903309643269]],[[0.018749378621578,0.0092348176985979,0.014536429196596],[-0.046654902398586,-0.015883419662714,0.027032054960728],[-0.011823544278741,0.022751675918698,-0.030255798250437]],[[-0.065826885402203,0.011936341412365,-0.05907067283988],[0.029146561399102,-0.027183886617422,-0.010785127058625],[0.037355657666922,-0.032518800348043,0.023653019219637]],[[-0.053431529551744,0.053184226155281,-0.014645602554083],[-0.036466300487518,0.012901943176985,-0.039269264787436],[0.00092161365319043,0.00078927882714197,-0.051535066217184]],[[-0.0076371720060706,-0.032484289258718,-0.029889658093452],[-0.011883957311511,-0.063628025352955,-0.016702210530639],[0.030536293983459,-0.0581314265728,-0.04884685203433]],[[0.04948665574193,0.036598976701498,0.042534708976746],[-0.074143931269646,-0.063054986298084,-0.067504242062569],[0.0055759055539966,-0.049598291516304,-0.011663235723972]]],[[[-0.029280718415976,-0.0037725255824625,-0.051290653645992],[0.026772510260344,-0.015635881572962,0.089305482804775],[0.019352588802576,0.14127540588379,0.063761457800865]],[[-0.097601436078548,-0.15826959908009,-0.063202992081642],[-0.082337714731693,0.013554377481341,-0.14351816475391],[-0.10717964917421,-0.074904777109623,0.0098886676132679]],[[-0.0040285256691277,0.023757988587022,-0.014875791966915],[-0.017800401896238,0.0078242784366012,-0.0028897714801133],[0.035087816417217,-0.0098931770771742,-0.0082823559641838]],[[0.017381574958563,-0.011412722058594,-0.2220021635294],[-0.001089122495614,-0.069023571908474,-0.18089798092842],[-0.052891954779625,0.012252790853381,-0.13310165703297]],[[0.067275367677212,-0.023755172267556,-0.090911790728569],[0.091307647526264,0.075810745358467,0.0067741223610938],[-0.013671902008355,-0.0037527987733483,0.067411974072456]],[[-0.015244242735207,0.10143981128931,-0.12869964540005],[0.026776276528835,0.036004245281219,-0.060747228562832],[-0.051994796842337,-0.098663091659546,0.044834740459919]],[[-0.055557418614626,0.062412396073341,0.010640610009432],[0.0071665057912469,0.0002193643595092,0.064312487840652],[-0.073637887835503,-0.083635210990906,0.01671876385808]],[[0.037482436746359,-0.024158742278814,-0.073223061859608],[-0.024544067680836,-0.05962323769927,-0.10964445024729],[-0.016253009438515,0.13065455853939,0.023334171622992]],[[-0.029511608183384,-0.017891746014357,-0.095853619277477],[-0.083202138543129,-0.073906771838665,-0.072557732462883],[-0.059215798974037,0.012865351513028,-0.11530224978924]],[[-0.059357266873121,0.023997785523534,0.0039452123455703],[0.062170248478651,0.046036675572395,-0.14035472273827],[0.038623832166195,0.0038997146766633,-0.071874648332596]],[[0.054877016693354,-0.0041127968579531,0.070179916918278],[-0.020423734560609,-0.058292962610722,-0.12793208658695],[0.18784858286381,0.093687474727631,0.091676793992519]],[[-0.07289170473814,0.03637183457613,-0.0068925055675209],[-0.12264794111252,-0.010742465034127,-0.048614833503962],[-0.019349809736013,-0.11293411254883,0.06558134406805]],[[0.074399292469025,0.022748759016395,0.062612220644951],[0.048674762248993,0.15314513444901,0.10181680321693],[0.010838996618986,0.10395754128695,0.09924978017807]],[[0.080764137208462,0.13024185597897,0.029763471335173],[-0.043257340788841,-0.025349801406264,0.081312656402588],[-0.0034022079780698,-0.0083963060751557,-0.02535917237401]],[[-0.04497205466032,-0.011461047455668,0.1188982129097],[0.016581244766712,0.055976655334234,0.11183477193117],[0.1043810993433,-0.031825583428144,-0.028990471735597]],[[0.0054349191486835,-0.037397254258394,-0.057336781173944],[-0.077841185033321,0.015280702151358,0.045592401176691],[-0.059593770653009,0.0031559998169541,-0.072246305644512]],[[-0.053396642208099,-0.014801283366978,-0.032834284007549],[0.013944812119007,0.061458606272936,-0.0025074344594032],[-0.026144819334149,-0.019767079502344,0.11654637753963]],[[0.022600894793868,0.066673927009106,0.0090502500534058],[-0.013471149839461,0.074084654450417,-0.0021799108944833],[-0.014948517084122,-0.12830020487309,-0.044600419700146]],[[-0.030971700325608,-0.0392025411129,0.052393477410078],[-0.1273345798254,0.056449774652719,0.02264004573226],[0.013509809970856,-0.043949939310551,-0.063614219427109]],[[0.077132485806942,0.005148496478796,0.063891179859638],[-0.10104030370712,-0.05728118494153,-0.030849365517497],[-0.007392589468509,-0.01094828825444,-0.014512443915009]],[[0.0056352759711444,0.086115911602974,0.085265837609768],[0.060698937624693,0.030961319804192,0.061217669397593],[0.033204685896635,0.011137268505991,0.058735974133015]],[[-0.010165986604989,-0.025777652859688,0.063877336680889],[-0.022183932363987,0.0011467697331682,-3.5278881114209e-06],[-0.11066660284996,-0.032737750560045,-0.010243192315102]],[[0.0032942527905107,0.057342946529388,0.01499820034951],[0.041609857231379,-0.026848077774048,0.014018913730979],[-0.04354128614068,0.02645256742835,-0.078771032392979]],[[0.024336595088243,-0.041376829147339,0.058180063962936],[0.079635925590992,0.027393830940127,0.11761840432882],[-0.0042606801725924,-0.037273459136486,-0.083121828734875]],[[-0.02714728936553,-0.115408167243,0.078237727284431],[-0.13532702624798,0.024816799908876,-0.10519924759865],[0.11242990940809,-0.032870054244995,-0.035496696829796]],[[0.12769997119904,0.084654346108437,-0.0043846960179508],[0.23170042037964,0.065245725214481,0.12087482213974],[0.13102267682552,0.062317226082087,0.053694043308496]],[[-0.090853504836559,-0.040260713547468,0.14550267159939],[0.017671886831522,0.15568713843822,-0.23011916875839],[-0.096887975931168,-0.21124383807182,-0.016028711572289]],[[0.090300984680653,0.098825238645077,0.086249023675919],[0.11164782941341,0.1984087228775,0.049402676522732],[-0.019484905526042,-0.077713221311569,-0.031469967216253]],[[-0.034394524991512,0.058781702071428,0.042968463152647],[-0.18518844246864,-0.0059059225022793,0.070712186396122],[0.0041891899891198,0.043205369263887,-0.0007991335587576]],[[-0.014497137628496,0.053503908216953,0.077313557267189],[0.042446363717318,-0.034218940883875,0.14634399116039],[0.019257446750998,0.03715892508626,0.08860544860363]],[[-0.010551997460425,-0.019848100841045,-0.028686603531241],[-0.00080913375131786,-0.028216101229191,-0.0049326689913869],[0.073793612420559,-0.085910730063915,-0.049614783376455]],[[0.044663075357676,0.11353664845228,0.081838615238667],[0.038733750581741,-0.12050072103739,-0.21116071939468],[0.16735291481018,-0.10298860818148,0.050914101302624]],[[0.00029493900365196,0.061801739037037,0.15455754101276],[-0.10417084395885,-0.11205830425024,0.0083208614960313],[0.18058870732784,0.10523366928101,-0.10638764500618]],[[-0.016695506870747,0.076491847634315,-0.039613381028175],[0.025492927059531,-0.016563383862376,-0.17012453079224],[-0.088356390595436,0.019196325913072,-0.018947618082166]],[[0.014655816368759,-0.078488759696484,-0.072975143790245],[0.023348309099674,-0.088703617453575,-0.017737898975611],[-0.19588778913021,0.026703655719757,-0.026785267516971]],[[0.0038981719408184,-0.037598181515932,0.024130553007126],[0.048907890915871,0.054153084754944,-0.043738935142756],[-0.064439333975315,0.029542336240411,-0.014332779683173]],[[0.012044925242662,-0.063004240393639,-0.038465850055218],[-0.049216791987419,-0.098655022680759,0.043286371976137],[0.011933879926801,0.068158321082592,-0.029261400923133]],[[0.025239519774914,0.067262880504131,-0.20353896915913],[-0.0068370271474123,-0.12702649831772,0.063417479395866],[-0.12643626332283,0.058331672102213,0.084805510938168]],[[0.026602091267705,0.082934431731701,0.040763042867184],[-0.032048586755991,0.056804113090038,-0.00055067840730771],[0.068160876631737,-0.020033769309521,-0.045207895338535]],[[-0.065458558499813,0.020795347169042,0.031437467783689],[-0.026850644499063,0.006839825771749,-0.14102154970169],[0.0049987635575235,-0.0081087648868561,-0.080822542309761]],[[-0.031686879694462,-0.023722106590867,-0.067446507513523],[0.049344152212143,0.052056044340134,-0.027857491746545],[-0.013087548315525,-0.029182652011514,-0.061934631317854]],[[-0.050285317003727,-0.0035784945357591,0.020850196480751],[0.025999559089541,0.02362902648747,0.020048059523106],[-0.040020175278187,-0.10241197794676,-0.0091257281601429]],[[-0.013223772868514,-0.0010116205085069,-0.087150722742081],[0.0056593073531985,-0.064913772046566,-0.10750755667686],[8.9721594122238e-05,-0.10297556221485,-0.00017556380771566]],[[-0.033528983592987,-0.11867629736662,-0.15473665297031],[-0.098093613982201,-0.075054652988911,-0.075383886694908],[-0.092673972249031,0.030300578102469,-0.0041707358323038]],[[0.055329699069262,0.041429653763771,0.014978553168476],[0.025105303153396,0.046480905264616,0.14891205728054],[0.059076052159071,0.090761363506317,-0.043594472110271]],[[-0.012711479328573,0.060778390616179,-0.053403321653605],[-0.0087885269895196,-0.083307005465031,-0.035164207220078],[-0.040877848863602,-0.041405737400055,-0.012641428038478]],[[-0.056476689875126,0.020832633599639,-0.12971486151218],[0.067080952227116,-0.085198096930981,0.0065935421735048],[0.088148877024651,0.038546435534954,0.065898939967155]],[[-0.040704727172852,0.0053612147457898,-0.022053178399801],[0.012347459793091,0.13978092372417,0.057354256510735],[-0.042226355522871,0.098610997200012,-0.036765165627003]],[[-0.047733154147863,-0.029479775577784,0.093004502356052],[0.057325512170792,0.046813946217299,0.20892335474491],[0.072096943855286,0.095809914171696,0.11706867069006]],[[-0.011964227072895,-0.0088800778612494,0.012343890033662],[0.0082646636292338,-0.026400258764625,0.0737564265728],[0.15785171091557,-0.0078268088400364,-0.025103775784373]],[[-0.051480080932379,0.0022527556866407,0.012414624914527],[-0.040917951613665,0.06497548520565,-0.081094115972519],[0.030726524069905,-0.21550053358078,-0.17476816475391]],[[0.044592242687941,-0.024542935192585,-0.075136855244637],[-0.052149832248688,-0.055573739111423,0.051749978214502],[0.031462144106627,-0.019937537610531,-0.088207207620144]],[[-0.048253521323204,-0.071122020483017,-0.10457199811935],[-0.26767274737358,-0.021496677771211,0.042944192886353],[0.0033027234021574,-0.013059278950095,-0.17718499898911]],[[0.10869770497084,0.11918754130602,0.029534738510847],[0.038198545575142,-0.012826276011765,0.12415006756783],[-0.026021348312497,0.12557408213615,0.2226438075304]],[[-0.07382445037365,0.11119668185711,-0.11317485570908],[0.019082330167294,0.047979325056076,-0.13972154259682],[0.048108011484146,-0.070820435881615,-0.021074235439301]],[[-0.068964652717113,-0.014656454324722,0.020905228331685],[-0.12878805398941,-0.001961306668818,-0.066784389317036],[-0.12036809325218,-0.06108221039176,0.0071950512938201]],[[0.01080784574151,0.12844730913639,0.0082844374701381],[-0.052678771317005,-0.16089916229248,0.023140346631408],[0.0063495105132461,-0.080396957695484,-0.079745717346668]],[[-0.020559888333082,-0.057505868375301,-0.011847404763103],[0.066314622759819,-0.049901869148016,-0.0072057754732668],[0.030828615650535,0.063611894845963,0.058183655142784]],[[0.0042075174860656,0.024659918621182,-0.029650149866939],[-0.035168532282114,-0.076684467494488,0.0035896133631468],[-0.041186399757862,0.014793979935348,0.040716327726841]],[[0.019846890121698,-0.017314588651061,-0.047828804701567],[-0.023039292544127,-0.031391095370054,0.035790227353573],[0.075316749513149,0.02576264180243,0.071557953953743]],[[0.089205719530582,0.041020758450031,-0.029600529000163],[-0.083935916423798,-0.098612852394581,0.055014558136463],[-0.018224261701107,-0.070620283484459,-0.10481963306665]],[[0.023573499172926,0.063470669090748,-0.082843497395515],[-0.079607151448727,0.010687228292227,-0.072225272655487],[-0.052064958959818,0.0067031881771982,-0.027457753196359]],[[0.05012359842658,-0.040575157850981,-0.057147815823555],[0.037992011755705,-0.030255068093538,-0.0021844229195267],[0.097096011042595,-0.034157309681177,-0.052036330103874]],[[0.017449410632253,0.035848621279001,-0.022719914093614],[0.035788841545582,7.5304313213564e-05,-0.08986996114254],[0.13747243583202,0.028343258425593,0.017293581739068]]],[[[0.037812013179064,-0.037681106477976,-0.025011751800776],[-0.0080173555761576,-0.014718620106578,-0.06338070333004],[0.017580827698112,-0.092728771269321,0.011023801751435]],[[-0.035734288394451,0.015302996151149,0.049155853688717],[-0.012166487984359,-0.030926847830415,-0.057522997260094],[0.00018974556587636,0.05075042322278,0.022479865700006]],[[-0.029019827023149,0.041013028472662,-0.026330137625337],[-0.018579106777906,0.064735040068626,0.035526446998119],[0.035154677927494,-0.11267709732056,0.058801181614399]],[[1.0776563613035e-05,-0.04276791587472,0.067442618310452],[-0.02795840241015,0.02640587463975,0.030192671343684],[0.068208195269108,-0.017367165535688,-0.010837218724191]],[[0.007371321786195,-0.060468520969152,0.056338485330343],[-0.042843338102102,0.06014185026288,-0.0026321238838136],[0.035938449203968,0.044545087963343,0.017705617472529]],[[0.006232223007828,0.061545763164759,-0.08471205085516],[-0.066328853368759,0.026398940011859,0.013901928439736],[-0.069511875510216,-0.064781844615936,0.0058982013724744]],[[0.011136299930513,-0.035193536430597,0.029642170295119],[-0.058807257562876,0.082709148526192,-0.002471090760082],[-0.087292112410069,-0.022171601653099,0.069916501641273]],[[0.074440374970436,-0.058247894048691,-0.0072800237685442],[0.0035140791442245,0.0013598353834823,-0.097043953835964],[-0.10266786813736,0.00088282360229641,-0.016234900802374]],[[-0.023580366745591,-0.0035537735093385,0.034441106021404],[0.0081620346754789,0.088254541158676,0.010892353951931],[0.031354408711195,-0.046546287834644,-0.032934118062258]],[[0.027520267292857,-0.024403112009168,0.0080865565687418],[0.05400413647294,0.042019806802273,-0.010944833047688],[-0.097943849861622,-0.027816075831652,-0.041405633091927]],[[-0.016162341460586,-0.022572370246053,-0.11999379843473],[0.01239840965718,-0.023133831098676,0.038109287619591],[0.073831833899021,0.0094586042687297,0.009191544726491]],[[0.023727970197797,-0.013242686167359,0.096836172044277],[-0.033772461116314,-0.02947205491364,0.038887798786163],[-0.0056841946206987,0.030878638848662,0.039799772202969]],[[-0.02115279622376,-0.017575250938535,0.016384577378631],[0.0027811489999294,-0.010002095252275,0.030187444761395],[0.039183668792248,0.084515586495399,-0.029130112379789]],[[-0.049002762883902,0.038069900125265,-0.015097411349416],[-0.0089748874306679,0.092630311846733,0.043540850281715],[0.051594588905573,0.094889990985394,-0.058212645351887]],[[-0.060981437563896,0.10787592083216,0.016631804406643],[-0.058045607060194,0.069731988012791,0.08099476993084],[-0.022934937849641,0.017017349600792,-0.07319699972868]],[[0.0074250749312341,-0.032086573541164,-0.0073406514711678],[-0.0039125559851527,-0.018767571076751,0.065908081829548],[0.082518339157104,0.02551943436265,0.080564178526402]],[[0.018893590196967,0.023787660524249,-0.0010892181890085],[-0.064456254243851,-0.013368653133512,-0.055789556354284],[0.043608218431473,-0.033538568764925,0.04273122176528]],[[-0.011332415044308,-0.080895438790321,0.0057414607144892],[0.025499785318971,0.095817729830742,-0.0028755962848663],[-0.078586429357529,0.021375894546509,0.12234201282263]],[[0.0017156678950414,-0.017880482599139,-0.010889618657529],[-0.096755713224411,0.01647200062871,0.00048507118481211],[0.021051784977317,0.0093256002292037,0.0061788600869477]],[[-0.042575418949127,-0.0034737375099212,0.052258502691984],[-0.0080983126536012,0.014407688751817,-0.010383896529675],[0.016609694808722,0.0045124422758818,0.0060751177370548]],[[0.024618558585644,0.0066258041188121,-0.06731441617012],[-0.014467135071754,-0.024950955063105,0.01009052246809],[0.072115637362003,-0.063602924346924,-0.007416220381856]],[[0.024054007604718,-0.055502582341433,0.033196706324816],[-0.020917076617479,-0.079331755638123,-0.024853749200702],[0.050458900630474,0.071476608514786,0.020401757210493]],[[-0.013680565170944,-0.013758484274149,0.046948328614235],[0.054202597588301,-0.020284676924348,0.031821507960558],[-0.068640634417534,-0.036603737622499,0.031220097094774]],[[-0.044025059789419,0.011989993043244,0.0013367595383897],[0.069532111287117,0.023938037455082,-0.030264310538769],[-0.044939253479242,-0.078541398048401,0.037568252533674]],[[0.044466458261013,0.012505213730037,0.026894133538008],[-0.0031781899742782,0.04345254227519,-0.0090241171419621],[-0.0458411462605,0.027669131755829,-0.10076072067022]],[[0.034918490797281,-0.056620843708515,0.087126396596432],[0.013766617514193,0.017223889008164,0.052587371319532],[0.03288047388196,-0.017876410856843,-0.035317283123732]],[[0.061512377113104,0.051897931843996,0.079128943383694],[0.099811278283596,0.01608039624989,0.066842868924141],[-0.073316514492035,-0.12431167066097,0.0099371057003736]],[[0.094775699079037,0.066237330436707,-0.038768481463194],[0.1217050999403,0.067736960947514,-0.10297887027264],[0.061470072716475,-0.014512004330754,-0.018129365518689]],[[-0.012873530387878,-0.0021337354555726,-0.073174342513084],[-0.065389402210712,0.075948588550091,0.0083880145102739],[0.026483142748475,0.021823637187481,-0.1090245321393]],[[0.046915989369154,-0.0077318409457803,0.013620983809233],[-0.061755307018757,-0.017605058848858,-0.0048958179540932],[0.022885009646416,0.049246054142714,-0.016997968778014]],[[-0.0046048955991864,-0.018764274194837,-0.023896872997284],[-0.01454328559339,0.00032397845643573,-0.037823028862476],[-0.084580689668655,-0.071420386433601,-0.012553891167045]],[[0.11328494548798,0.034683544188738,0.0063029988668859],[-0.00026594291557558,0.049459308385849,0.024274351075292],[-0.017722463235259,0.027652438730001,-0.048545584082603]],[[-0.055099867284298,-0.051783561706543,-0.12599831819534],[-0.014247258193791,-0.040156021714211,-0.037412285804749],[-0.053461827337742,0.0039347363635898,-0.040023941546679]],[[-0.018200701102614,0.051569450646639,0.081957370042801],[-0.032903969287872,-0.010897588916123,0.022811144590378],[-0.045431658625603,-0.030372122302651,0.013711751438677]],[[0.032774820923805,0.0064958487637341,0.13175618648529],[-0.10304234176874,-0.078667968511581,-0.016309747472405],[0.018175520002842,-0.021692289039493,-0.076994515955448]],[[-0.071385249495506,-0.048446860164404,-0.013305969536304],[-0.1001593619585,0.046195242553949,0.0046597928740084],[-0.16233071684837,-0.0019137602066621,-0.051749303936958]],[[-0.063472248613834,-0.014885171316564,0.0298808272928],[0.029528977349401,0.035460334271193,-0.037768069654703],[0.04178811237216,0.003405645955354,0.026669766753912]],[[-0.0021772184409201,-0.054568242281675,-0.016573900356889],[0.0031233071349561,0.10864374041557,-0.015580794773996],[0.063757829368114,0.047434341162443,-0.013906192034483]],[[0.045757755637169,0.045012570917606,0.010788261890411],[-0.00064038997516036,0.031399317085743,-0.0070105069316924],[0.014596200548112,-0.052076894789934,0.051610425114632]],[[0.040593389421701,-0.04288037866354,-0.082769215106964],[0.06305342912674,-0.0079951509833336,0.050669711083174],[0.023766329512,-0.033353291451931,0.0062789246439934]],[[0.020174223929644,-0.0072702602483332,0.029170302674174],[-0.028614800423384,0.03059745579958,0.058980572968721],[-0.019653040915728,0.027296496555209,0.012571060098708]],[[-0.082823939621449,-0.070078827440739,-0.070679642260075],[-0.05688251554966,-0.041928615421057,-0.0421386025846],[0.067994028329849,0.067179128527641,0.032485011965036]],[[0.090037979185581,0.064537271857262,-0.06222190707922],[-0.028297448530793,-0.057006549090147,0.0049061649478972],[-0.028766945004463,-0.054916054010391,0.074324913322926]],[[-0.046550545841455,0.014413218013942,0.069991394877434],[-0.062042627483606,-0.035210408270359,0.013024848885834],[0.00010179381206399,0.032062623649836,0.019244074821472]],[[-0.081987492740154,0.048793718218803,0.019748633727431],[0.08906402438879,-0.022561881691217,-0.12463364750147],[-0.058247640728951,0.050416879355907,-0.096754975616932]],[[0.022967014461756,0.015278669074178,-0.031396936625242],[0.041206762194633,0.048109412193298,0.061296593397856],[0.021215390414,0.019349660724401,-0.0056939674541354]],[[-0.015771847218275,-0.024489695206285,0.053900886327028],[-0.026218168437481,-0.055081095546484,-0.0076237204484642],[0.019197287037969,0.048968587070704,-0.058374579995871]],[[-0.077672198414803,-0.033412262797356,-0.0492003262043],[-0.04128435626626,-0.058982934802771,-0.050180077552795],[-0.045605923980474,-0.014271025545895,0.02359364554286]],[[0.0014307234669104,-0.047398179769516,-0.030178461223841],[0.0082396455109119,-0.036479100584984,0.086233422160149],[-0.053311482071877,0.065424524247646,0.035630699247122]],[[-0.06691287457943,0.022581327706575,0.060452084988356],[0.062472715973854,0.043562725186348,-0.01690018363297],[-0.024315180256963,0.017598366364837,-0.0026952272746712]],[[-0.0099638951942325,-0.0071636000648141,-0.038690853863955],[0.022816410288215,0.043936651200056,-0.072748422622681],[-0.020590333268046,0.054473549127579,0.020362436771393]],[[0.016611998900771,-0.014549922198057,-0.075323522090912],[-0.11516631394625,-0.073655821382999,-0.058797668665648],[0.0086032785475254,-0.011039342731237,0.020213047042489]],[[0.017292151227593,-0.024546245113015,-0.028992757201195],[-0.067526169121265,0.01662215963006,0.020279953256249],[0.024711567908525,-0.0044685150496662,-0.04581493139267]],[[0.090365707874298,0.037102039903402,0.10797223448753],[0.099231667816639,-0.02169438265264,0.05027836561203],[0.095225550234318,-0.020913092419505,-0.0048683332279325]],[[-0.074899926781654,-0.062970891594887,-0.033476937562227],[0.028275003656745,-0.076347038149834,0.022745730355382],[-0.065849840641022,-0.00011685169738485,-0.035811234265566]],[[-0.028936481103301,-0.055054415017366,0.020133271813393],[-0.024053126573563,-0.012549318373203,-0.022109622135758],[0.010394503362477,0.058052934706211,-0.011698937043548]],[[-0.042506791651249,-0.0014951064949855,0.040643662214279],[0.056658159941435,0.1188040599227,0.076033763587475],[0.016779636964202,-0.066977761685848,0.014228503219783]],[[0.0085860146209598,0.012903737835586,-0.014823036268353],[-0.025188498198986,-0.017237449064851,-0.038072843104601],[0.020997004583478,0.057245884090662,-0.063073635101318]],[[0.081669025123119,0.027261190116405,-0.024004023522139],[-0.0094573246315122,-0.033411119133234,-0.0047076097689569],[0.03321298211813,-0.016965091228485,0.012409148737788]],[[0.015104438178241,0.0006438500713557,0.0032141907140613],[0.044765837490559,0.030619399622083,-0.070174671709538],[0.0069059948436916,0.049594733864069,-0.023305017501116]],[[-0.047871507704258,-0.073774993419647,-0.071015872061253],[-0.061624277383089,0.030710712075233,-0.044220056384802],[-0.0056095854379237,0.0013553113676608,-0.019502379000187]],[[-0.013593674637377,-0.025469787418842,-0.01356232073158],[0.023615496233106,0.0010689259506762,-0.029892332851887],[-0.0087123671546578,-0.022284399718046,-0.020181816071272]],[[-0.070551306009293,-0.02949196845293,-0.039495475590229],[-0.0018560320604593,-0.0082408171147108,-0.056951306760311],[0.043325550854206,-0.039663419127464,0.10653010755777]],[[0.025187376886606,-0.0089322635903955,-0.0081490529701114],[0.0096983714029193,0.041115391999483,0.004418243188411],[0.017028601840138,-0.010938992723823,0.068585798144341]]],[[[0.047049663960934,0.029849156737328,0.029983304440975],[0.038316063582897,0.006273876875639,0.14091293513775],[-0.052713628858328,0.01541664917022,-0.1016293540597]],[[-0.0043835290707648,0.10306998342276,0.048161379992962],[0.051748599857092,-0.025691956281662,-0.031575132161379],[0.045172959566116,0.038617826998234,0.046975366771221]],[[0.064752712845802,-0.034047231078148,-0.037138387560844],[0.0063569257035851,-0.12346360832453,-0.0024756849743426],[0.050324864685535,-0.011022914201021,0.005312561057508]],[[0.011074178852141,0.067914701998234,0.065641470253468],[0.0011845185654238,-0.066629707813263,-0.078748375177383],[0.028097094967961,-0.01253404840827,0.051116399466991]],[[-0.086010217666626,-0.077661260962486,0.030319906771183],[0.03609511628747,-0.057395756244659,0.037585474550724],[0.031975116580725,0.058334901928902,0.017343480139971]],[[0.071424081921577,-0.068974398076534,0.031623683869839],[-0.029444085434079,-0.022984655573964,0.072962053120136],[0.063995383679867,-0.081733278930187,0.0012240711366758]],[[-0.010499157011509,-0.023587116971612,0.0072536445222795],[0.024980472400784,0.017789278179407,0.083111919462681],[0.011561274528503,0.017283601686358,-0.049817208200693]],[[-0.017219001427293,-0.02774222753942,-0.0045817182399333],[-0.013404785655439,0.069236062467098,0.064776554703712],[-0.042333785444498,0.01230984646827,0.015764452517033]],[[-0.076766230165958,-0.013338567689061,-0.0043757585808635],[-0.015021529980004,0.087700754404068,0.0096874469891191],[-0.032566990703344,-0.15537191927433,0.015388044528663]],[[-0.033609606325626,-0.034621093422174,-0.11228903383017],[-0.014806535094976,0.098404608666897,0.051394917070866],[0.034877311438322,-0.099564373493195,-0.024403870105743]],[[-0.097446143627167,-0.080505892634392,0.044352184981108],[0.046733677387238,-0.09014817327261,-0.10953843593597],[0.12669393420219,-0.036139436066151,0.060132026672363]],[[0.040862955152988,0.014232096262276,0.0037554767914116],[0.03754348307848,0.024815378710628,0.086596198379993],[0.03451282158494,0.059140041470528,-0.0048640253953636]],[[0.011381748132408,-0.11716862022877,-0.033815942704678],[-0.038275439292192,-0.020441865548491,0.10271526128054],[0.030902270227671,-0.077003680169582,-0.020766967907548]],[[0.043266143649817,-0.044031627476215,-0.070004247128963],[0.036274123936892,0.077785193920135,-0.079282313585281],[0.054572228342295,0.1985307186842,-0.078876286745071]],[[0.082103133201599,0.039987932890654,-0.084055364131927],[0.029104040935636,0.087263777852058,0.0027739831712097],[-0.043248232454062,-0.0049147480167449,0.19316540658474]],[[0.0089274346828461,-0.05048006772995,-0.11036594212055],[0.038135223090649,0.080770805478096,0.0095002083107829],[-0.061549998819828,0.090655647218227,-0.012931848876178]],[[-0.024396585300565,0.05301670730114,0.030993914231658],[-0.037433549761772,0.034863505512476,-0.18704836070538],[-0.021908445283771,-0.007033237721771,0.023019613698125]],[[-0.068110518157482,-0.022793626412749,0.06842203438282],[0.010447130538523,-0.023957813158631,0.068655870854855],[-0.035881768912077,-0.059531044214964,-0.009722582064569]],[[-0.0086826579645276,0.015426535159349,0.048512455075979],[0.05134017765522,-0.078312568366528,-0.10748291015625],[-0.031433831900358,0.018751000985503,0.055063828825951]],[[-0.050344251096249,-0.069629698991776,-0.030089629814029],[0.050210054963827,0.049259070307016,-0.02591572701931],[-0.0034747663885355,0.037014808505774,-0.059014473110437]],[[-0.077374912798405,0.10020949691534,-0.038924477994442],[-0.018160995095968,0.040482711046934,0.0024436681997031],[-0.046701211482286,-0.021404977887869,-0.069576278328896]],[[-0.015002716332674,0.01150306686759,-0.0091523751616478],[0.017071276903152,-0.068884246051311,-0.074626632034779],[0.010504370555282,0.010785433463752,-0.0040931976400316]],[[0.017858954146504,-0.031057363376021,-0.093287363648415],[0.013636932708323,0.067627549171448,0.035239685326815],[-0.041528169065714,-0.016450218856335,0.045976717025042]],[[0.012832281179726,0.0018636671593413,0.027304084971547],[0.0013876059092581,-0.029819572344422,-0.056244071573019],[0.0092340689152479,-0.18081967532635,0.041650369763374]],[[0.023421674966812,0.040456876158714,0.038707975298166],[-0.08025861531496,-0.043587394058704,0.00020083607523702],[0.071283340454102,-0.069999270141125,-0.058429591357708]],[[-0.039796818047762,-0.019144050776958,0.0099774412810802],[0.0086835538968444,-0.020257690921426,-0.00899104680866],[0.0052816276438534,-0.041144818067551,-0.047630365937948]],[[-0.029228052124381,0.0035708586219698,-0.0069927731528878],[0.016122419387102,0.067455269396305,-0.0046038301661611],[0.031291339546442,0.064429119229317,0.087753504514694]],[[-0.071437679231167,0.045286640524864,-0.061572600156069],[0.00066650635562837,-0.10995708405972,-0.00071819493314251],[0.028293009847403,0.039108157157898,0.019462740048766]],[[0.00020491775649134,-0.0064854267984629,0.013893000781536],[-0.081555724143982,0.047318957746029,-0.066806368529797],[0.0092663299292326,-0.065751649439335,0.011067949235439]],[[-0.085724949836731,0.044097132980824,0.015478548593819],[0.013180191628635,0.11455196887255,-0.004230618942529],[-0.022396301850677,0.0087699880823493,-0.065209276974201]],[[-0.0217528603971,0.036770846694708,0.034870631992817],[-0.011605031788349,-0.037948917597532,-0.090253189206123],[-0.046305265277624,-0.047395519912243,0.069251582026482]],[[-0.038765333592892,-0.069969065487385,-0.08244701474905],[0.10881016403437,0.021890705451369,0.20813463628292],[0.05387107655406,-0.12537425756454,-0.059820685535669]],[[-0.099993266165257,-0.21379899978638,-0.23842114210129],[0.17279474437237,-0.095607101917267,0.046912785619497],[0.036598153412342,0.017315918579698,0.015201640315354]],[[0.046695381402969,-0.0079583125188947,0.12515610456467],[0.043968580663204,0.065743058919907,0.12250905483961],[-0.056572027504444,-0.11023074388504,0.014076493680477]],[[-0.026950690895319,0.054268181324005,0.075378097593784],[0.043236471712589,0.086458131670952,-0.0037393202073872],[-0.061395633965731,-0.057809099555016,-0.0036805220879614]],[[0.025236649438739,-0.048108197748661,0.018069909885526],[-0.023063426837325,0.05473293364048,0.084744416177273],[-0.036251869052649,0.0017721434123814,0.013481707312167]],[[-0.084223628044128,0.0040100808255374,-0.055977709591389],[0.061171725392342,-0.0098746903240681,-0.010501689277589],[0.069419451057911,-0.093441635370255,0.0099711287766695]],[[0.070923030376434,0.0180833209306,-0.039543699473143],[0.093137867748737,0.20138853788376,0.031833000481129],[-0.20388016104698,-0.1389295309782,-0.083767004311085]],[[0.09447968006134,-0.092123962938786,0.11936140805483],[0.0064093079417944,-0.077543750405312,-0.011049072258174],[0.0052854977548122,-0.0012865862809122,0.011534968391061]],[[0.047194674611092,-0.014588315971196,-0.093649491667747],[0.0049575041048229,-0.024393392726779,-0.030827453359962],[0.01674940623343,-0.030096609145403,0.079161733388901]],[[-0.034241419285536,-0.11813429743052,0.033580746501684],[0.085111312568188,0.045051198452711,-0.056304212659597],[0.012707931920886,0.047058820724487,0.02163552492857]],[[0.083313517272472,0.079125136137009,0.13741448521614],[-0.10178737342358,-0.10866693407297,0.058056946843863],[0.08188534528017,0.00014316363376565,0.066604778170586]],[[0.0047060893848538,0.11856745183468,0.0029887419659644],[-0.00080613547470421,0.0013159983791411,0.022137146443129],[-0.00062612228794023,-0.074012406170368,0.023008765652776]],[[-0.014164946973324,-0.069917149841785,-0.086201384663582],[0.0079098790884018,-0.038648072630167,-0.048470936715603],[0.031090419739485,0.018083062022924,-0.049092963337898]],[[-0.0019296344835311,0.024556851014495,0.11603557318449],[-0.058353591710329,-0.015377298928797,-4.3339750845917e-05],[0.0044911997392774,-0.0061787399463356,0.0031290291808546]],[[0.0071378764696419,0.043001852929592,-0.058399863541126],[-0.21390236914158,0.0036850236356258,-0.13435365259647],[0.10376933217049,0.073733881115913,0.11873523890972]],[[0.021312540397048,0.035803079605103,0.086626149713993],[-0.0055872402153909,0.046848498284817,-0.13813962042332],[0.058812696486712,0.024758495390415,-0.036529690027237]],[[0.016740782186389,0.028935179114342,-0.042743571102619],[0.0027285034302622,0.12993296980858,0.039023540914059],[-0.029257221147418,-0.012131092138588,0.024515841156244]],[[-0.012601315043867,-0.02212998829782,-0.025402519851923],[0.019506489858031,0.049418289214373,0.046906940639019],[-0.066432267427444,-0.0073724556714296,0.011286281980574]],[[-0.067520506680012,0.023499211296439,-0.11622916907072],[0.03066230751574,-0.1023216471076,0.052138887345791],[-0.053970750421286,-0.038049552589655,0.099078699946404]],[[0.06947273015976,0.040147326886654,-0.00026380355120637],[0.064140282571316,-0.38944980502129,-0.025245340541005],[0.012174710631371,0.10006166994572,0.01236635632813]],[[0.020881121978164,0.023168291896582,0.034211240708828],[-0.13357616961002,-0.077834814786911,0.048219706863165],[0.046862412244081,-0.034313958138227,-0.023033827543259]],[[0.031657807528973,-0.057554617524147,0.073259003460407],[-0.067641027271748,0.13177381455898,0.07065162062645],[-0.067070692777634,-0.11825750768185,0.013325789012015]],[[0.064686305820942,0.14312621951103,0.012933175079525],[0.0068648550659418,-0.035865746438503,0.1212559491396],[0.12297072261572,0.031676482409239,0.040272910147905]],[[0.028108708560467,-0.022678619250655,0.00050194305367768],[-0.044704705476761,-0.045494124293327,0.032938040792942],[0.024918016046286,0.015534419566393,-0.032145097851753]],[[0.038257274776697,0.0066518057137728,0.0035038748756051],[-0.018819592893124,-0.0046207560226321,-0.025756623595953],[-0.013522235676646,0.0022148594725877,-0.022906271740794]],[[-0.10721869021654,-0.064489297568798,0.029151620343328],[-0.046951852738857,0.0040746545419097,0.0079158861190081],[0.053824841976166,0.085624322295189,0.0075770975090563]],[[-0.0069929724559188,0.0057200961746275,0.027905633673072],[0.0014582820003852,0.067932114005089,0.0068956748582423],[-0.032437942922115,-0.05937185883522,-0.20815296471119]],[[0.049920629709959,-0.019139848649502,0.043915551155806],[0.021299291402102,0.066721566021442,-0.00046065243077464],[-0.021520653739572,-0.11792388558388,0.040723964571953]],[[0.0030521089211106,0.084608599543571,0.023346334695816],[0.01809786260128,-0.091196075081825,-0.029187984764576],[0.028355175629258,0.033665515482426,-0.021271608769894]],[[-0.080635488033295,-0.069104678928852,0.0373839661479],[0.049965523183346,0.1047190502286,-0.056443646550179],[-0.049486618489027,0.00029579480178654,-0.027949761599302]],[[-0.012215454131365,0.0061641735956073,-0.071467861533165],[-0.047065336257219,-0.068867385387421,0.10686472803354],[0.011392864398658,-0.040102977305651,-0.0500746704638]],[[0.0069396626204252,0.094779960811138,-0.067133031785488],[0.020295327529311,-0.16253036260605,-0.011221432127059],[0.067767962813377,0.11963523924351,-0.10446287691593]],[[0.038286667317152,-0.035408925265074,0.088342167437077],[-0.048746559768915,0.061229296028614,0.10523004829884],[-0.05502513423562,-0.054080873727798,0.061939850449562]]],[[[0.044062159955502,0.04405927285552,0.002877437742427],[0.10025487840176,-0.11396800726652,-0.25693202018738],[-0.019355598837137,-0.016217669472098,-0.0051738168112934]],[[0.074908934533596,0.084019601345062,0.038506325334311],[0.10596402734518,0.014464089646935,0.064219146966934],[0.10304614901543,-6.5371772507206e-05,0.054351266473532]],[[-0.015852501615882,0.081931985914707,0.018519598990679],[-0.047765247523785,-0.10718052834272,-0.0015637445030734],[-0.01173597946763,-0.07885967195034,-0.033283278346062]],[[0.0054258308373392,-0.12694379687309,0.06775139272213],[0.25456628203392,0.068723082542419,-0.054983668029308],[-0.01970705203712,0.13555769622326,-0.14624238014221]],[[0.00018011692736764,0.010095969773829,-0.026896113529801],[0.046972516924143,0.041914597153664,0.031813107430935],[0.015175518579781,-0.004152609501034,-0.019944231957197]],[[0.0012908776989207,0.063783541321754,0.0084770731627941],[-0.10428509116173,-0.071063548326492,-0.052855879068375],[-0.0078401006758213,-0.030130384489894,0.030909933149815]],[[0.011158534325659,-0.044708788394928,0.048487596213818],[-0.090621024370193,-0.041832260787487,-0.0016169605078176],[0.0047600278630853,-0.003897609654814,0.0091537069529295]],[[0.0025847072247416,-0.00019135259208269,-0.011923079378903],[-0.056038249284029,-0.023501414805651,-0.12595909833908],[-0.0098258350044489,0.009632209315896,-0.071706965565681]],[[0.035239391028881,0.0040892530232668,-0.06759712100029],[0.084270358085632,-0.028739437460899,-0.01043064147234],[-0.017640020698309,-0.012983809225261,-0.031746432185173]],[[0.042170811444521,0.09270828962326,0.0058351424522698],[0.043276060372591,-0.00073952239472419,0.038731064647436],[0.010725042782724,0.058456741273403,0.074606187641621]],[[0.080855064094067,0.016518807038665,-0.036478396505117],[-0.027668699622154,0.027913179248571,-0.11749498546124],[-0.082788661122322,-0.020317122340202,-0.031385291367769]],[[-0.096946477890015,-0.0024950178340077,-0.038038123399019],[-0.029758706688881,-0.098343499004841,-0.014849786646664],[-0.086350597441196,-0.12959024310112,-0.044416327029467]],[[0.0072264382615685,0.062679745256901,-0.0059474217705429],[0.083957828581333,0.02277809381485,-0.082345232367516],[0.031023196876049,-0.19957196712494,-0.043325778096914]],[[-0.10149869322777,0.067811913788319,-0.093659721314907],[0.12413519620895,0.03216191008687,-0.004740625154227],[0.080646932125092,-0.11803872138262,0.041351959109306]],[[-0.10118996351957,-0.060151223093271,-0.071164824068546],[0.019114265218377,-0.15721450746059,-0.0068710409104824],[0.072250477969646,-0.03754410520196,-0.014516785740852]],[[-0.0039620539173484,-0.0070528769865632,-0.0007284416933544],[-0.037699915468693,0.091957494616508,0.04350071400404],[0.037216112017632,0.064572639763355,0.047301985323429]],[[0.0030758548527956,0.02118731290102,0.045829776674509],[0.035828109830618,0.066414043307304,-0.099529512226582],[-0.048891071230173,0.032527931034565,0.09182546287775]],[[-0.11017265170813,-0.11146942526102,-0.073286607861519],[-0.045596960932016,0.16970105469227,-0.14746282994747],[-0.043143704533577,-0.12451535463333,-0.28692311048508]],[[-0.014597301371396,-0.055095765739679,0.036521673202515],[0.019107235595584,-0.044985789805651,-0.020305059850216],[0.0057651759125292,0.057259377092123,0.020967880263925]],[[-0.035001568496227,-0.081229783594608,0.10220094770193],[0.03838149830699,-0.03873723000288,-0.076340578496456],[0.077340550720692,-0.035806056112051,-0.026652544736862]],[[0.10505883395672,-0.017657132819295,0.18112200498581],[0.055210813879967,0.19925405085087,0.22065635025501],[0.03706444054842,0.1769872456789,-0.1174301058054]],[[-0.063714414834976,0.0149159822613,0.077733181416988],[-0.074582912027836,-0.059701986610889,0.020934578031301],[0.028316805139184,-0.0034688741434366,0.0054003861732781]],[[-0.003981314599514,0.022918833419681,0.015885701403022],[0.031424153596163,0.038277514278889,-0.034019704908133],[0.024703996255994,-0.040001280605793,-0.048540323972702]],[[-0.01140019390732,0.0093317413702607,-0.03056868724525],[-0.036515515297651,0.021399773657322,-0.092865854501724],[-0.011951711960137,-0.023152366280556,0.13280688226223]],[[-0.069022111594677,0.038984216749668,-0.018316576257348],[-0.081461802124977,-0.095359243452549,0.0140938796103],[0.03810590878129,-0.015171228908002,-0.091580592095852]],[[-0.073724128305912,-0.072002395987511,-0.067698404192924],[-0.080601990222931,-0.08067848533392,-0.12481731176376],[-0.079703167080879,-0.019565772265196,-0.088348910212517]],[[-0.022471351549029,-0.12806226313114,-0.080677278339863],[0.058113504201174,-0.10565131157637,-0.082408107817173],[0.023052224889398,-0.17727275192738,-0.11533612012863]],[[0.025388272479177,-0.040390111505985,-0.11913182586432],[0.017121132463217,0.078991807997227,0.039542995393276],[0.022699663415551,0.12121521681547,0.036035422235727]],[[-0.071037165820599,-0.021438712254167,-0.0049345488660038],[-0.015590022318065,-0.015139205381274,-0.043018244206905],[-0.01622735708952,-0.13059760630131,0.027062796056271]],[[-0.093696683645248,0.009664642624557,-0.045391727238894],[-0.17708110809326,0.043159354478121,-0.058920294046402],[-0.056292816996574,-0.15003676712513,-0.16763015091419]],[[0.019275587052107,-0.022784488275647,0.046380866318941],[-0.023226762190461,-0.016068516299129,0.089917860925198],[0.03176075220108,0.051989153027534,0.030659813433886]],[[0.0004270400677342,-0.092105031013489,-0.026374230161309],[-0.00049528683302924,0.042292837053537,0.025649938732386],[-0.0015829775948077,-0.073150739073753,-0.077286168932915]],[[-0.11183966696262,-0.0012677920749411,0.096719644963741],[0.11373625695705,-0.093536861240864,0.052065942436457],[-0.077485918998718,-0.061793722212315,-0.16117022931576]],[[-0.086338229477406,-0.077783353626728,0.048669293522835],[-0.080536067485809,0.10374281555414,-0.036605354398489],[0.093049719929695,-0.0066302428022027,-0.008089211769402]],[[0.10345617681742,0.0029241668526083,-0.087141901254654],[0.081767879426479,0.048645533621311,-0.0079262536019087],[0.040629547089338,0.087195865809917,0.048007972538471]],[[-0.081408441066742,-0.082239605486393,0.015318648889661],[0.010129537433386,-0.07051682472229,0.0017328994581476],[0.002416864503175,-0.067252442240715,-0.081917725503445]],[[0.046606417745352,0.025154873728752,-0.070149779319763],[-0.055752508342266,0.027933072298765,0.0025742657016963],[-0.11027436703444,-0.066836930811405,0.093095116317272]],[[-0.13108713924885,0.010065284557641,-0.018804505467415],[-0.10890719294548,-0.033525217324495,0.030723448842764],[-0.0052995611913502,-0.11865103244781,-0.06550107896328]],[[0.034319810569286,0.072408124804497,0.048657272011042],[-0.048193898051977,0.018045771867037,0.025058623403311],[-0.049352511763573,0.039585292339325,0.13023135066032]],[[-0.018001599237323,0.011859009973705,0.042325597256422],[-0.0055937999859452,-0.0027382159605622,0.052101332694292],[-0.0012330869212747,-0.02009511180222,0.051184959709644]],[[-0.14192736148834,-0.050827823579311,0.00414929818362],[0.00064115005079657,0.012259124778211,-0.039449494332075],[-0.13119779527187,-0.018019700422883,-0.023574367165565]],[[0.060445465147495,0.061779696494341,-0.048197098076344],[-0.049187637865543,-0.035112120211124,0.0096679162234068],[0.019389171153307,-0.051183637231588,-0.048674896359444]],[[0.076361164450645,0.021875459700823,-0.0048893028870225],[0.014175239950418,0.0013968977145851,-0.097118809819221],[-0.02519871853292,-0.034127302467823,-0.036569207906723]],[[0.084262564778328,-0.12212347239256,-0.079038374125957],[0.028768759220839,0.18832261860371,0.17931759357452],[0.010307574644685,-0.048279494047165,0.19612228870392]],[[0.0090778535231948,0.012086918577552,0.0051077990792692],[0.053401842713356,0.029505984857678,-0.096613258123398],[0.089421547949314,0.084208719432354,-0.12942346930504]],[[-0.036401383578777,0.034739516675472,0.032256692647934],[0.044584956020117,-0.031244652345777,-0.0039573502726853],[-0.025863727554679,-0.0084290830418468,-0.034894585609436]],[[-0.14093735814095,-0.072310209274292,0.051832273602486],[-0.00069828983396292,0.015036994591355,0.013211011886597],[0.0025845426134765,-0.0064946310594678,0.071885637938976]],[[0.095911853015423,-0.000634512049146,0.045214831829071],[0.081134788691998,-0.013528947718441,-0.070282451808453],[0.061148971319199,0.038132905960083,0.039271201938391]],[[0.023297935724258,-0.088875114917755,-0.034843925386667],[-0.1048676148057,-0.042634777724743,-0.13784964382648],[-0.10542234033346,-0.10957482457161,-0.027969013899565]],[[-0.034076001495123,0.048553675413132,-0.010172815993428],[0.028134118765593,0.025380700826645,-0.13012650609016],[0.015234287828207,-0.0027116273995489,-0.086554072797298]],[[-0.10358439385891,0.038053192198277,0.010647451505065],[-0.022367822006345,0.069439597427845,0.041262499988079],[-0.079434372484684,0.10147021710873,0.033609952777624]],[[0.08710877597332,-0.0013914115261286,0.04392584040761],[-0.015712417662144,-0.11726573109627,0.020106827840209],[0.016898483037949,-0.01775455288589,0.091287024319172]],[[-0.03657153993845,0.059375539422035,-0.0099104307591915],[-0.041263435035944,-0.0075301271863282,-0.030330447480083],[0.082965716719627,-0.021015577018261,0.072391398251057]],[[0.1207262724638,0.055994618684053,0.0017648967914283],[0.068953782320023,0.045654516667128,0.060476090759039],[-0.050932768732309,0.15091782808304,0.085869058966637]],[[0.022599572315812,-0.0053973156027496,0.0047390223480761],[0.066891849040985,0.092128865420818,-0.050074156373739],[-0.12886647880077,-0.071095623075962,-0.037443026900291]],[[0.037713009864092,-0.050148736685514,0.049482386559248],[0.051755871623755,-0.034965321421623,0.038525883108377],[-0.011897346004844,-0.0099400114268064,0.0093114404007792]],[[0.070749714970589,0.1235811188817,0.037621591240168],[-0.03598491102457,0.01720909960568,-0.019412519410253],[-0.021657405421138,0.01035019941628,-0.041477046906948]],[[-0.21134071052074,-0.0095176827162504,0.014091193675995],[-0.12703405320644,-0.1985976099968,-0.016202583909035],[-0.029564935714006,-0.066201701760292,-0.14379946887493]],[[-0.18115964531898,-0.020623141899705,-0.093541190028191],[0.0090028624981642,0.071844205260277,-0.029314758256078],[-0.042588770389557,-0.041854277253151,-0.087825126945972]],[[0.024000348523259,-0.059648014605045,0.0069098714739084],[-0.0028035321738571,-0.0093715842813253,0.023391770198941],[0.021360149607062,-0.007033163215965,0.05059277638793]],[[0.11893125623465,0.051936164498329,-0.013802136294544],[-0.019062073901296,0.012877459637821,-0.00022850219102111],[0.041776426136494,-0.14646588265896,-0.12415542453527]],[[0.045634567737579,0.029358167201281,0.012564639560878],[-0.052613344043493,-0.055039495229721,0.0006997148739174],[0.026623791083694,-0.0071909790858626,0.11228834092617]],[[-0.053012277930975,-0.0051839840598404,0.040982846170664],[0.056789845228195,-0.096833914518356,-0.0462203361094],[-0.027589291334152,-0.012676781974733,0.016882007941604]],[[-0.12521460652351,0.0089885434135795,-0.043664038181305],[0.028963698074222,-0.0076630292460322,0.067177757620811],[0.0071424758061767,-0.043506927788258,0.0015127793885767]]],[[[-0.10242794454098,0.0067734224721789,-0.04529282823205],[0.073914460837841,0.065961197018623,-0.047427974641323],[0.025938240811229,0.10947922617197,0.0126869129017]],[[0.032705835998058,0.013987150043249,-0.014328900724649],[-0.051613874733448,-0.046625573188066,-0.025194441899657],[-0.032702714204788,-0.01167444139719,-0.070465721189976]],[[-0.020605051890016,0.045791011303663,-0.08090515434742],[-0.01746454462409,0.04675729572773,-0.049967586994171],[0.033021792769432,-0.0048794229514897,0.0074034039862454]],[[-0.026237716898322,-0.053084950894117,0.006059561856091],[0.039262764155865,-0.067851908504963,0.006522158626467],[0.0029281778261065,0.017684027552605,0.031660348176956]],[[0.069300100207329,0.084391690790653,0.043909173458815],[0.011803600005805,0.017530830577016,-0.044937904924154],[-0.030685286968946,-0.018497131764889,0.050019647926092]],[[-0.0020379435736686,0.042756278067827,0.054968874901533],[-0.047795686870813,-0.06354895234108,-0.010384144261479],[0.037656381726265,-0.026721578091383,0.037042789161205]],[[-0.011441553011537,-0.01243676058948,0.0042820917442441],[-0.046599056571722,-0.039234064519405,0.016987254843116],[-0.068428434431553,-0.046021118760109,-0.058084428310394]],[[0.024077212437987,-0.11417789757252,0.026006173342466],[0.047612685710192,0.023804200813174,0.079905912280083],[0.024643694981933,-0.034850504249334,-0.0010936169419438]],[[-0.017416078597307,-0.0056446865200996,-0.10939558595419],[0.06511290371418,-0.022532671689987,-0.034306116402149],[-0.022370979189873,0.034369979053736,0.023669132962823]],[[-0.058703925460577,0.034023344516754,-0.035145986825228],[0.0010603300761431,-0.10190938413143,0.039506256580353],[-0.028142642229795,0.044032447040081,0.02895656041801]],[[-0.031611442565918,-0.010846342891455,0.063105948269367],[-0.072428874671459,0.017154665663838,0.0041882223449647],[-0.07527793943882,-0.017983889207244,-0.027677034959197]],[[-0.022933991625905,-0.0038984771817923,-0.019984049722552],[-0.0039286343380809,-0.037592157721519,-0.026525240391493],[-0.051233302801847,-0.065376959741116,-0.044804655015469]],[[0.0026076284702867,-0.030793029814959,0.0026765696238726],[0.035118702799082,-0.015559563413262,0.0047657294198871],[0.0088838711380959,-0.022857965901494,0.019085418432951]],[[0.10279836505651,0.096476398408413,-0.061404287815094],[0.052736856043339,0.020330980420113,0.072905011475086],[0.0057207187637687,0.079484477639198,0.051714424043894]],[[0.030201815068722,0.021577451378107,0.0023866891860962],[0.053930461406708,-0.046895831823349,0.027314936742187],[0.064596943557262,0.031577654182911,-0.10363829880953]],[[-0.01369000878185,-0.018721895292401,-0.0034508877433836],[0.0010024232324213,-0.02125907689333,0.070019491016865],[0.038372572511435,-0.067867107689381,0.034808043390512]],[[-0.019887749105692,-0.028016578406096,0.018948797136545],[-0.10862427204847,0.060875482857227,0.034962866455317],[0.010266416706145,0.051201485097408,0.061994787305593]],[[0.012053397484124,0.0012279156362638,0.006017021369189],[-0.010722889564931,-0.027998069301248,-0.0050960583612323],[-0.020855290815234,0.010886082425714,-0.0094818705692887]],[[0.013694736175239,-0.0028935738373548,-0.017301646992564],[-0.035975210368633,-0.044416423887014,0.019667061045766],[0.0082810474559665,-0.015285903587937,0.023158011958003]],[[0.046915590763092,0.0022818553261459,-2.2104555682745e-05],[-0.050661396235228,-0.088392727077007,-0.037222281098366],[-0.018720405176282,-0.012240598909557,0.044807218015194]],[[0.016910428181291,0.062325771898031,-0.0037117360625416],[-0.01356232073158,0.023636307567358,-0.00094181072199717],[0.057845443487167,0.092394270002842,0.072977997362614]],[[-0.022856140509248,-0.012360163033009,-0.069401495158672],[-0.031562831252813,0.081197537481785,-0.0048932889476418],[0.020237935706973,-0.014693479984999,0.0018763496773317]],[[0.037569724023342,0.01693456992507,-0.0025910043623298],[0.038660932332277,-0.008262986317277,0.018513968214393],[-0.026825791224837,-0.033822856843472,-0.039226021617651]],[[-0.011033404618502,0.0050072385929525,-0.021394841372967],[0.039535235613585,0.020994884893298,-0.042915675789118],[-0.04737439006567,-0.0027876945678145,-0.019830202683806]],[[-0.039617769420147,0.008971662260592,0.0044067134149373],[-0.060673795640469,-0.0051563545130193,0.048193030059338],[-0.023371189832687,-0.015915986150503,0.078746549785137]],[[-0.035921789705753,-0.018244862556458,0.029736252501607],[0.0580421872437,-0.09604624658823,0.0093632470816374],[0.025987688452005,0.0086169131100178,0.0025454817805439]],[[0.034625556319952,-0.030231295153499,-0.011213093064725],[-0.074306227266788,0.063176117837429,-0.012576368637383],[-0.066833913326263,-0.057395685464144,-0.0078088589943945]],[[-0.033375803381205,-0.01492334343493,-0.025720143690705],[0.024732988327742,0.062601715326309,-0.097360484302044],[-0.010556701570749,-0.079333864152431,-0.033262625336647]],[[-0.0033188057132065,0.018600754439831,-0.009058615192771],[-0.022625260055065,-0.053751364350319,0.026926927268505],[-0.093781754374504,0.031131418421865,0.0014336134772748]],[[-0.029812179505825,-0.019205044955015,-0.046362400054932],[-0.028816752135754,-0.0054052476771176,-0.010811185464263],[-0.028924968093634,-0.043973751366138,-0.0073345112614334]],[[-0.028076656162739,0.005925826728344,0.010369269177318],[-0.054784372448921,-0.042839653789997,0.018095904961228],[-0.036703657358885,0.013267856091261,-0.0047616753727198]],[[0.024676265195012,0.020016193389893,-0.036427054554224],[0.038400784134865,0.012506441213191,0.04222371801734],[0.012883357703686,-0.042335238307714,-0.049737989902496]],[[-0.072079978883266,-0.087970316410065,0.0066112694330513],[-0.019955202937126,-0.018815835937858,-0.059030942618847],[0.016895145177841,0.053505890071392,0.038551595062017]],[[0.0062183025293052,-0.0017780305352062,0.029340252280235],[0.015271083451807,-0.034095425158739,0.04849573969841],[-0.004140236414969,-0.044085294008255,0.016156520694494]],[[0.019133392721415,-0.030547007918358,0.025213008746505],[0.036865942180157,0.011640676297247,-0.025080248713493],[-0.0013794070109725,-0.003621319308877,-0.021973082795739]],[[0.030289348214865,0.00057037046644837,0.012724537402391],[-0.020024858415127,-0.028224814683199,-0.034823019057512],[-0.065085940063,-0.086932711303234,0.062289752066135]],[[-0.11328575760126,-0.0098474454134703,-0.045515395700932],[-0.05257735401392,0.044646766036749,-0.094284132122993],[0.057626444846392,0.092132918536663,0.0099431527778506]],[[0.0019737512338907,0.060186330229044,-0.0014725143555552],[-0.021576263010502,-0.035915281623602,-0.02669495344162],[-0.041576016694307,0.0037378827109933,0.033287905156612]],[[0.042193721979856,0.095157653093338,0.042950782924891],[-0.0067582279443741,0.0013688595499843,-0.0091117573902011],[-0.0025104978121817,0.027495855465531,-0.018167644739151]],[[0.05172011628747,0.029972713440657,0.030393304303288],[-0.021422944962978,0.027327483519912,-0.0088484352454543],[-0.0059288376942277,0.021765956655145,0.004299808293581]],[[0.009004577063024,0.035270120948553,0.021834233775735],[0.0039570974186063,-0.067829214036465,0.0067258258350194],[-0.088922314345837,-0.0043095913715661,-0.012784054502845]],[[0.039857815951109,-0.03015766851604,-0.027548046782613],[-0.029368303716183,0.058117296546698,-0.00017158941773232],[0.0088674379512668,0.0064520924352109,-0.023398196324706]],[[-0.0047305063344538,0.014210154302418,0.0056268498301506],[0.045894544571638,-0.0023335821460932,0.02096357382834],[0.0015716629568487,-0.061329830437899,-0.028694437816739]],[[-0.0066052367910743,0.017950665205717,0.026456121355295],[0.014888245612383,0.027702027931809,-0.051401805132627],[-0.0049113538116217,-0.03896301612258,-0.0034472583793104]],[[-0.00084084470290691,0.068108171224594,0.058876223862171],[0.063263155519962,0.048349287360907,-0.035739187151194],[-0.05925165489316,-0.030251517891884,0.021288665011525]],[[-0.056792121380568,0.054428856819868,0.039079818874598],[-0.018874879926443,0.038083918392658,-0.089304447174072],[-0.036548994481564,0.068438865244389,-0.029810907319188]],[[-0.036535415798426,0.015040179714561,-0.064216904342175],[0.046101357787848,-0.0085182674229145,0.021372362971306],[0.0085467621684074,0.0067920451983809,0.035543598234653]],[[-0.024810947477818,0.055609483271837,0.030283601954579],[0.046763591468334,0.03446102514863,0.016324542462826],[0.041719533503056,-0.060752682387829,0.062947876751423]],[[-0.073626980185509,-0.093898370862007,0.03889050334692],[-0.029469290748239,0.0085082249715924,-0.017394322901964],[-0.037960454821587,0.050320792943239,-0.052906971424818]],[[0.0097614834085107,0.051032558083534,-0.048033136874437],[0.019743157550693,0.00020894351473544,-0.0046764430589974],[0.056273203343153,-0.020676832646132,-0.028491891920567]],[[0.029317941516638,-0.011754741892219,0.020253524184227],[-0.021571550518274,-0.0028788412455469,0.010247743688524],[-0.011331946589053,-0.0085639851167798,0.0012452475493774]],[[-0.016091777011752,0.038436390459538,-0.033175144344568],[-0.037311304360628,-0.030653895810246,-0.020534988492727],[0.041694849729538,0.02759744413197,0.01847424916923]],[[-0.0037421835586429,-0.061086632311344,0.033026564866304],[-0.010654279962182,-0.018084118142724,0.00076877069659531],[0.0036708754487336,0.017348952591419,-0.044811498373747]],[[0.081752330064774,0.031389154493809,0.060908317565918],[0.021647185087204,-0.026892993599176,-0.010957011952996],[0.14458554983139,0.045425936579704,0.018166655674577]],[[-0.069561645388603,-0.014021775685251,0.039900369942188],[0.070933237671852,0.058893691748381,0.044817294925451],[-0.050718933343887,0.027882855385542,-0.034585319459438]],[[0.0013132498133928,0.021296635270119,-0.058315359055996],[0.00071361288428307,-0.024469781666994,0.034666165709496],[0.00042406015563756,0.024211131036282,0.00876668933779]],[[0.0037423684261739,0.023360848426819,0.026779379695654],[-0.015000434592366,0.05576391518116,-0.014944142661989],[0.012377570383251,0.05908489599824,-0.024161793291569]],[[-0.014737607911229,-0.0033313476014882,0.029167791828513],[0.0079669523984194,0.013335667550564,0.0036837484221905],[0.01727182045579,0.069237157702446,0.11470779031515]],[[-0.039959877729416,-0.032277248799801,-0.097489975392818],[-0.015714943408966,-0.040778234601021,-0.016959542408586],[-0.042396042495966,0.032332703471184,0.0081632863730192]],[[-0.010266850702465,-0.054318875074387,-0.032072074711323],[-0.017929142341018,0.057694941759109,0.037670746445656],[0.040122419595718,0.0095568681135774,0.039428550750017]],[[0.025898359715939,0.012480927631259,-0.065998964011669],[-0.081874705851078,0.015164733864367,-0.044786427170038],[0.02807554975152,0.028102297335863,0.041589770466089]],[[-0.030942991375923,0.080114245414734,0.026691922917962],[0.016575722023845,0.0010487815598026,-0.043450258672237],[-0.044607419520617,-0.014999309554696,-0.029411904513836]],[[0.032038014382124,0.030130784958601,0.041520625352859],[-0.02734693698585,0.0066776634193957,-0.047264810651541],[-0.049797363579273,-0.03587756305933,-0.011625847779214]],[[-0.00024947230122052,0.015170779079199,-0.017846824601293],[0.0051660914905369,0.033533461391926,0.017671033740044],[-0.016775162890553,-0.009962810203433,-0.0019935523159802]]],[[[0.012079868465662,-0.0587297976017,0.047709982842207],[0.052583537995815,-0.1002671867609,-0.039080515503883],[0.0094493143260479,0.084033466875553,-0.10947676748037]],[[-0.11231511086226,-0.17506676912308,-0.11898485571146],[-0.019371611997485,-0.027965331450105,-0.0030078731942922],[-0.012753228656948,-0.035520106554031,-0.029489932581782]],[[-0.042365588247776,-0.052662946283817,0.027585741132498],[0.016095271334052,0.026918327435851,-0.098472237586975],[-0.031339861452579,0.054687339812517,0.043706588447094]],[[0.039917968213558,-0.045004576444626,0.088820554316044],[-0.091530419886112,0.10405872017145,-0.039534647017717],[-0.014050997793674,0.047463361173868,0.10360115021467]],[[-0.0095238648355007,-0.030924815684557,-0.0077729341574013],[-0.063115537166595,0.040840543806553,0.055892799049616],[-0.0017371741123497,0.068504713475704,0.079230017960072]],[[-0.017471667379141,0.0029828741680831,-0.13219420611858],[0.058219376951456,-0.070000119507313,-0.099850617349148],[-0.086222782731056,-0.0082052210345864,-0.0056803324259818]],[[0.002703549573198,0.036363605409861,-0.02205815911293],[-0.031094837933779,0.027638519182801,-0.00041458936175331],[-0.017555912956595,-0.01774643920362,0.053084287792444]],[[0.0042973337695003,-0.036317307502031,-0.026709130033851],[0.08837353438139,0.050300341099501,0.09109503030777],[-0.021969391033053,0.029955128207803,0.049686022102833]],[[0.02838727273047,-0.015098284929991,0.0090361405164003],[-0.053335104137659,0.046769984066486,0.023060608655214],[0.025661950930953,-0.0059630125761032,-0.024765521287918]],[[-0.020395124331117,-0.079394772648811,0.007949679158628],[-0.035304248332977,-0.062962360680103,-0.10877195745707],[0.069967396557331,0.095487229526043,0.020942827686667]],[[-0.088091358542442,0.032118152827024,0.022082958370447],[0.031332492828369,0.040950838476419,0.0085468823090196],[-0.0021920274011791,-0.017462398856878,-0.017814744263887]],[[-0.05381752923131,-0.04127661883831,-0.057207494974136],[-0.027415433898568,0.011232982389629,0.026276256889105],[0.0074554262682796,0.027401795610785,-0.037705946713686]],[[0.067341692745686,-0.025796877220273,0.059298530220985],[0.035813111811876,0.053409948945045,0.086392343044281],[-0.00057182728778571,0.042547080665827,0.092062100768089]],[[0.16631105542183,0.18889117240906,0.12085451930761],[-0.015654044225812,0.079995647072792,0.082609981298447],[0.046109437942505,0.0019384572515264,0.018060680478811]],[[0.014547969214618,0.040809318423271,-0.099758125841618],[-0.001204542000778,-0.030727697536349,-0.044710014015436],[-0.032941587269306,-0.023379912599921,-0.028321005403996]],[[0.019214456900954,-0.061131723225117,-0.093037232756615],[-0.00767732411623,0.010206422768533,0.10999139398336],[0.027311218902469,-0.076064132153988,0.049265801906586]],[[-0.015058451332152,-0.10892288386822,-0.13511121273041],[-0.036561887711287,0.088746607303619,-0.0097217913717031],[0.0014467576984316,-0.025355480611324,0.068647734820843]],[[-0.0040147635154426,0.046036582440138,-0.022102965041995],[-0.085758283734322,-0.032450836151838,-0.02494802698493],[-0.0061848270706832,0.1096770465374,0.002685560612008]],[[0.024720745161176,-0.063013888895512,-0.058842595666647],[0.032434087246656,-0.040890816599131,0.019860196858644],[0.034878775477409,-0.093030378222466,-0.022475047037005]],[[-0.054775912314653,-0.019321260973811,-0.063665352761745],[-0.014997464604676,-0.002298068953678,-0.017561543732882],[0.021667065098882,0.020235989242792,0.086446367204189]],[[0.040755100548267,0.041190795600414,-0.051328249275684],[0.014494462870061,-0.0045904605649412,-0.05797753110528],[-0.02505312114954,-0.054445687681437,-0.031686298549175]],[[-0.058980323374271,-0.023321691900492,0.039512794464827],[-0.016101017594337,-0.020569393411279,-0.024994436651468],[-0.05392037332058,-0.024836150929332,-0.050199147313833]],[[-0.037737153470516,0.0014299865579233,0.031770434230566],[-0.015249443240464,-0.010643572546542,0.0051415101625025],[0.048170436173677,-0.00077856879215688,-0.0024496861733496]],[[0.0095580015331507,-0.029619462788105,-0.0194788929075],[-0.0075923115946352,-0.026764513924718,-0.12304764986038],[-0.074685037136078,-0.031092142686248,-0.054631564766169]],[[0.041006281971931,0.099331744015217,0.063783846795559],[0.10296055674553,0.065260119736195,-0.0074010831303895],[0.025128116831183,0.039580062031746,0.023656003177166]],[[0.00076647097012028,-0.0063687572255731,0.0062580914236605],[-0.055293157696724,0.010815402492881,-0.074209563434124],[0.0012649099808186,-0.079756431281567,-0.0066199656575918]],[[0.079762540757656,0.054518219083548,-0.070572748780251],[0.052704930305481,0.082023359835148,0.087303079664707],[-0.0050211786292493,0.088558562099934,-0.0094333970919251]],[[-0.05809248238802,0.079443007707596,0.10653070360422],[0.078277111053467,-0.030068630352616,-0.039841324090958],[-0.039126627147198,-0.16047213971615,0.011331426911056]],[[0.015388513915241,-0.035328634083271,-0.0083732046186924],[-0.020523477345705,-0.054732676595449,0.029800333082676],[-0.17576791346073,-0.042563386261463,0.061693023890257]],[[0.050887666642666,0.015286610461771,-0.060159634798765],[0.023005159571767,-0.085452780127525,-0.011922331526875],[0.091609425842762,-0.086093351244926,0.022124696522951]],[[0.03046803176403,0.065795354545116,0.035766083747149],[-0.075161598622799,0.045804720371962,-0.0086748888716102],[0.052124448120594,-0.070271983742714,0.12464565038681]],[[-0.028422892093658,0.0088278939947486,-0.02608722820878],[-0.094620265066624,0.028595494106412,0.061843689531088],[0.099889822304249,0.041560336947441,-0.019538963213563]],[[-0.085214450955391,-0.074491009116173,-0.081934787333012],[-0.11298671364784,0.049764256924391,-0.051169764250517],[-0.13237731158733,-0.044983603060246,-0.071855276823044]],[[-0.030947454273701,-0.0065219351090491,-0.086814612150192],[-0.058726776391268,-0.040554277598858,-0.023583067581058],[0.044673096388578,-0.10582942515612,-0.013304782100022]],[[0.0015745211858302,0.041980355978012,0.0083777094259858],[0.047664415091276,0.014437724836171,-0.042935516685247],[-0.0091856634244323,-0.06983558088541,-0.10747276246548]],[[0.022949486970901,-0.052749734371901,0.037229105830193],[-0.073568522930145,-0.029702866449952,-0.099864184856415],[-0.036119937896729,0.0047182398848236,0.011029281653464]],[[0.021769287064672,0.039245799183846,-0.030769392848015],[-0.030326476320624,0.0047222613357008,-0.0035270245280117],[0.040755577385426,-0.063803866505623,-0.010270660743117]],[[-0.010946284979582,-0.044512372463942,-0.046213876456022],[0.0040308181196451,0.049100764095783,-0.044520627707243],[-0.066992089152336,-0.029502585530281,0.040790181607008]],[[0.063504755496979,0.037545692175627,-0.050864394754171],[0.012850976549089,0.080686442553997,0.019815495237708],[0.052884977310896,0.032090090215206,0.032574832439423]],[[0.08118599653244,0.041034609079361,0.09821268171072],[-0.1360520273447,0.073083363473415,0.064689710736275],[0.032297875732183,0.080002553761005,0.01220487896353]],[[-0.013980235904455,0.02356817945838,-0.048473455011845],[-0.0076509048230946,-0.021450627595186,0.066038064658642],[-0.023588009178638,-0.035497944802046,0.035135436803102]],[[-0.0083290012553334,0.012661393731833,-0.039168730378151],[0.0085555221885443,0.022817853838205,-0.033836260437965],[0.034631811082363,0.016924640163779,0.057568620890379]],[[-0.03070685826242,0.010032821446657,0.033860709518194],[0.028856378048658,-0.027474129572511,0.0019802669994533],[0.00088590354425833,-0.067411780357361,-0.080862052738667]],[[0.044238898903131,-0.10044579207897,-0.10746978223324],[-0.046361681073904,-0.07449296861887,-0.053788408637047],[0.017240803688765,-0.039733976125717,-0.03725827485323]],[[0.0027310727164149,-0.015145882964134,0.065643511712551],[0.098349869251251,-0.00033211306435987,-0.12635572254658],[0.05300397798419,-0.051962476223707,0.11320575326681]],[[0.022856628522277,0.03139066323638,-0.014609307050705],[-0.058415036648512,0.028648909181356,0.056687854230404],[-0.027625758200884,0.0070804925635457,-0.0031400532461703]],[[-0.068572305142879,-4.3122778151883e-05,-0.035195972770452],[0.085732363164425,0.084712997078896,0.054922953248024],[0.0012521217577159,-0.11633417755365,-0.018888028338552]],[[-0.013918986544013,-0.0083865532651544,2.6400819479022e-05],[-0.024772835895419,0.070610404014587,-0.079756498336792],[0.0075763966888189,0.014964452013373,0.035905443131924]],[[-0.024081092327833,0.069091826677322,-0.0079060662537813],[-0.029868209734559,0.013102162629366,0.0072538652457297],[-0.056435808539391,0.11143759638071,0.11554218828678]],[[0.0011507029412314,-0.0020821786019951,0.01587837561965],[-0.009127501398325,-0.013209104537964,-0.029747027903795],[-0.055540837347507,0.030776714906096,-0.053723588585854]],[[0.0009506624774076,-0.041127648204565,-0.0010806659702212],[-0.14055082201958,-0.041200704872608,-0.0055231326259673],[-0.067333541810513,-0.045895263552666,-0.07629968225956]],[[-0.065876610577106,0.032485026866198,-0.037957154214382],[0.041029758751392,-0.026752185076475,-0.037036243826151],[-0.00042093454976566,-0.033644180744886,0.033643897622824]],[[-0.036898799240589,0.12523691356182,0.048433624207973],[0.010079507716,0.10842391848564,0.16071920096874],[0.1052476093173,-0.039925374090672,0.14438477158546]],[[0.071609102189541,0.083818130195141,0.15998351573944],[0.12418308109045,0.063064284622669,0.042557395994663],[-0.073255643248558,0.040073230862617,-0.019838094711304]],[[-0.12390448153019,-0.04307209327817,0.078764282166958],[0.00010516063775867,0.0085999108850956,0.0030184681527317],[0.033829860389233,0.037568487226963,-0.04273834452033]],[[0.055833831429482,-0.057247620075941,0.090885415673256],[-0.038627665489912,0.0053560342639685,0.017901353538036],[0.033107865601778,0.12337335199118,0.034278146922588]],[[-0.021646916866302,-0.018316406756639,0.014817044138908],[-0.10150466859341,-0.050208307802677,-0.021637244150043],[-0.060733124613762,-0.0034486900549382,-0.036105740815401]],[[-0.0073266541585326,-0.0092429229989648,-0.026768937706947],[0.011299338191748,0.0050325877964497,-0.046085435897112],[-0.099097065627575,-0.021302308887243,-0.0060928701423109]],[[0.051819499582052,-0.060515057295561,-0.0059087900444865],[0.025493755936623,0.044176191091537,0.041217781603336],[0.013909512199461,-0.020063968375325,-0.057646080851555]],[[0.016650276258588,0.041788902133703,-0.015314171090722],[-0.0070157391019166,0.021551512181759,0.041659984737635],[0.00071931193815544,-0.024384766817093,0.0058267889544368]],[[-0.078490816056728,-0.021533608436584,-0.042066171765327],[-0.028565688058734,0.03605579957366,-0.059615887701511],[-0.019694205373526,-0.1110370606184,-0.01337128225714]],[[-0.22068889439106,-0.072630390524864,0.04067662358284],[0.060982841998339,-0.086558096110821,-0.082987137138844],[0.04534825310111,0.081533454358578,0.14241720736027]],[[0.034407313913107,-0.0015520633896813,-0.096211455762386],[-0.078938670456409,-0.014295211993158,-0.017128080129623],[-0.0063161351718009,0.019986866042018,0.0047245854511857]],[[-0.005069934297353,0.034809298813343,-0.043883234262466],[-0.09003958851099,0.026046788319945,0.15152318775654],[0.046456299722195,0.031483296304941,0.0010902074864134]]],[[[-0.13223019242287,0.16564224660397,0.025092152878642],[-0.034176331013441,0.057742558419704,-0.092590011656284],[0.026796691119671,0.053889978677034,0.063392855226994]],[[-0.045654479414225,0.075785234570503,0.073416344821453],[0.048119217157364,0.064429506659508,-0.016999647021294],[-0.008329588919878,0.16064924001694,0.041903372853994]],[[-0.039584901183844,0.058981526643038,-0.010766334831715],[-0.035335384309292,0.0024475192185491,-0.027848726138473],[-0.0023839790374041,0.019931441172957,-0.051919158548117]],[[-0.07092747092247,0.012253892607987,0.058478880673647],[0.087142169475555,0.020516199991107,-0.13008564710617],[-0.098414421081543,-0.040523923933506,0.10327173769474]],[[0.22949412465096,-0.021877845749259,-0.084776364266872],[-0.090972229838371,0.10961058735847,-0.062814474105835],[0.0090796044096351,-0.051071811467409,0.10760068893433]],[[-0.052997756749392,-0.060598652809858,-0.0311229955405],[-0.10028696805239,0.0019027336966246,-0.014587621204555],[-0.034748669713736,0.023179380223155,-0.068860851228237]],[[0.037876266986132,-0.032181121408939,0.029191600158811],[-0.0030712473671883,0.11450695246458,-0.023045672103763],[0.0072212480008602,-0.079276643693447,0.027193255722523]],[[0.064463682472706,-0.012975515797734,-0.0062129856087267],[0.02776044793427,-0.030752092599869,0.057971090078354],[0.14850604534149,-0.29168474674225,0.032480742782354]],[[0.14054916799068,0.00081315910210833,-0.065677605569363],[0.042168375104666,-0.1165354475379,0.11700599640608],[0.026827674359083,0.009903060272336,-0.14522737264633]],[[0.056447189301252,-0.14162237942219,0.063375502824783],[0.025480033829808,0.040903750807047,-0.042692195624113],[0.14486613869667,-0.14425925910473,0.090877659618855]],[[-0.13515062630177,0.14650750160217,0.0099493293091655],[-0.014777167700231,0.0030279641505331,-0.10664247721434],[0.026870120316744,-0.067228920757771,0.0081360843032598]],[[0.11030492931604,-0.0070129805244505,-0.062623135745525],[0.035311505198479,0.073930956423283,-0.062095314264297],[-0.065220922231674,-0.01069357059896,0.1611640304327]],[[0.12677593529224,-0.11523544043303,-0.03444679453969],[-0.050741594284773,-0.061739947646856,-0.2024309784174],[-0.038873005658388,0.083474367856979,-0.14420185983181]],[[0.18309773504734,-0.055337097495794,-0.018596405163407],[0.0037194134201854,-0.090887382626534,-0.0070456969551742],[-0.11848113685846,0.05989408865571,0.059206735342741]],[[0.037254471331835,0.064131408929825,-0.016225311905146],[-0.034174662083387,0.12041617929935,0.011943596415222],[0.01672057248652,0.049793917685747,0.046912912279367]],[[-0.14244900643826,-0.20203258097172,-0.0051778014749289],[-0.059732913970947,0.10651963949203,-0.029518082737923],[-0.0013502103975043,-0.0050431834533811,0.034673601388931]],[[-0.053139887750149,-0.1517893075943,0.0060654547996819],[0.030977668240666,0.024634912610054,-0.058109197765589],[-0.014693627133965,-0.01372676808387,0.11376947909594]],[[-0.14399822056293,-0.071631267666817,-0.055425733327866],[0.0094019379466772,-0.082090266048908,0.070040598511696],[-0.021167004480958,-0.18055441975594,0.042667280882597]],[[0.0060718576423824,-0.02980412915349,0.038658209145069],[0.032044660300016,0.026462323963642,0.0093621099367738],[0.00067965558264405,-0.011197895742953,-0.026037145406008]],[[0.047684475779533,0.017355183139443,-0.035499706864357],[0.10762614756823,-0.0091217253357172,-0.047349389642477],[-0.0011823417153209,-0.041973039507866,0.031184539198875]],[[-0.052707772701979,0.0045954417437315,-0.001967447809875],[-0.077871561050415,-0.028729774057865,0.062120094895363],[-0.056683171540499,-0.053029429167509,-0.016250539571047]],[[-0.088435553014278,0.064790271222591,-0.030660754069686],[-0.00010572747851256,0.041297871619463,0.055739361792803],[0.12923547625542,-0.074124693870544,0.019442673772573]],[[-0.074107185006142,0.055456381291151,0.021121112629771],[0.0077227451838553,0.053570859134197,0.024096727371216],[-0.046628758311272,0.010252448730171,-0.040046464651823]],[[0.00097196688875556,-0.047691661864519,-0.0094573702663183],[0.052758283913136,-0.15669140219688,0.026659604161978],[0.12821900844574,0.053752195090055,-0.11442843079567]],[[0.0064437100663781,0.0538957901299,0.024765124544501],[-0.052552133798599,-0.21146783232689,0.048069212585688],[0.18737363815308,-0.16294381022453,-0.064056791365147]],[[-0.039903838187456,0.0060599958524108,-0.048186339437962],[-0.010181318968534,-0.021836729720235,-0.036334782838821],[-0.025046149268746,-0.086754180490971,-0.016741311177611]],[[-0.10743506997824,0.022083712741733,-0.082106530666351],[-0.057979293167591,-0.031835656613111,-0.082572668790817],[-0.068864494562149,-0.075074635446072,0.047428030520678]],[[-0.11548674851656,0.082490764558315,0.04254400357604],[0.077394172549248,-0.018575737252831,-0.093423947691917],[0.13474769890308,-0.10294210910797,0.040945958346128]],[[-0.068336509168148,0.0099596390500665,0.0098769012838602],[0.057436011731625,0.021802052855492,0.071234241127968],[0.018911615014076,-0.02209416218102,-0.029368860647082]],[[-0.008113881573081,-0.03213132917881,-0.061017379164696],[-0.18667323887348,0.10272653400898,0.0058857672847807],[-0.14215193688869,-0.1124739870429,-0.067274190485477]],[[-0.080695182085037,0.14291453361511,0.011185551062226],[0.087035290896893,-0.0050488347187638,-0.11759993433952],[0.015007637441158,0.027582561597228,0.042745299637318]],[[0.037900414317846,-0.050064887851477,-0.088412769138813],[-0.092997997999191,-0.079197935760021,0.04108951985836],[-0.016395511105657,-0.11935787647963,-0.036545563489199]],[[0.13383056223392,0.0096855154260993,-0.011689814738929],[0.039343617856503,0.021327715367079,-0.090793684124947],[0.047208778560162,0.026023719459772,-0.10415432602167]],[[-0.013749492354691,-0.028163706883788,-0.039333488792181],[0.087933838367462,-0.087636575102806,-0.059881143271923],[-0.12262853235006,-0.043888121843338,0.013257020153105]],[[-0.05136427283287,-0.087636485695839,0.085119120776653],[-0.014628121629357,-0.10327341407537,0.096582762897015],[-0.0014504354912788,-0.13080008327961,0.15963396430016]],[[-0.021760107949376,-0.1339502632618,-0.055098164826632],[-0.01623977907002,-0.09352458268404,0.020820774137974],[-0.02574541606009,-0.0447848290205,-0.00082722207298502]],[[0.067302659153938,0.015147719532251,-0.0035504337865859],[0.070017084479332,-0.048977058380842,0.043406955897808],[0.08924961835146,-0.043590527027845,-0.014679724350572]],[[-0.057048909366131,0.060573935508728,-0.11477687209845],[-0.016886048018932,0.0076364800333977,0.048161141574383],[-0.17687214910984,0.14086692035198,-0.084734357893467]],[[-0.043810073286295,-0.034738000482321,0.0099184764549136],[-0.0089283185079694,-0.07215990871191,-0.064674787223339],[-0.033835336565971,0.075201481580734,-0.01573259755969]],[[0.075433611869812,-0.056246694177389,-0.094762444496155],[0.033961545675993,-0.020197756588459,-0.081115216016769],[-0.055081978440285,0.011426079086959,-0.022794434800744]],[[0.026956720277667,0.065788008272648,0.014331575483084],[0.032369367778301,0.01946223154664,-0.032094992697239],[0.0026473451871425,0.070421069860458,-0.050013497471809]],[[0.039479039609432,-0.16607856750488,0.019191710278392],[-0.01495925989002,0.014382258988917,0.0038392543792725],[-0.085085980594158,0.086192548274994,0.046305518597364]],[[0.019180901348591,-0.041414570063353,-0.053855247795582],[-0.061331689357758,-0.00098395615350455,0.042493972927332],[-0.059356182813644,-0.13040982186794,0.021417686715722]],[[0.068219266831875,0.0096020372584462,0.11373350024223],[0.057885985821486,0.10277523100376,0.041321985423565],[0.056013513356447,0.16028356552124,-0.02755044773221]],[[0.05389753729105,-0.028499327600002,-0.043133873492479],[0.10729422420263,-0.017098305746913,0.066618472337723],[-0.090452164411545,0.032739143818617,-0.014453468844295]],[[0.037032887339592,-0.018711572512984,0.0204834677279],[0.049246102571487,0.023711200803518,-0.076139755547047],[-0.0005962829454802,0.080995194613934,0.06001790240407]],[[-0.0030462916474789,-0.16208118200302,-0.0071779987774789],[-0.048652853816748,0.034428097307682,-0.10316267609596],[-0.066779889166355,0.04014378041029,-0.039483673870564]],[[-0.083454318344593,0.035830248147249,0.024782774969935],[-0.040341321378946,-0.0043540732003748,-0.019859319552779],[-0.053323786705732,0.089599549770355,0.022389877587557]],[[-0.11193406581879,-0.13398490846157,0.063127718865871],[-0.0019091141875833,-0.026344692334533,-0.074260987341404],[0.00067282636882737,-0.041653376072645,-0.078162409365177]],[[0.07843841612339,0.00079678220208734,0.11648797243834],[0.014346975833178,-0.14877043664455,0.13905070722103],[-0.051915913820267,-0.074440166354179,0.028592886403203]],[[0.16591081023216,0.053533621132374,0.004876381251961],[0.060644153505564,0.10412791371346,0.033404380083084],[0.12045937776566,-0.059413529932499,0.030408848077059]],[[-0.0845802500844,0.050379555672407,0.031095074489713],[-0.037081558257341,-0.028742590919137,-0.047795850783587],[0.011550774797797,0.099470302462578,-0.043693844228983]],[[-0.067259676754475,-0.094520017504692,-0.10541749745607],[-0.17832814157009,-0.12141072005033,-0.092958606779575],[-0.18620331585407,0.0039958725683391,-0.019525235518813]],[[0.21058508753777,0.1912756562233,0.12255658209324],[0.064109168946743,0.11135271936655,0.07189754396677],[0.02688848040998,0.019712237641215,0.13732592761517]],[[0.12896260619164,-0.10415609925985,-0.021500904113054],[0.039823450148106,-0.014909314922988,-0.10093860328197],[-0.040997140109539,-0.0056720077991486,-0.06549708545208]],[[-0.0859384983778,-0.21922427415848,-0.020846605300903],[-0.023709220811725,-0.0296316370368,-0.10521053522825],[-0.034547843039036,-0.044922437518835,-0.18762265145779]],[[0.097507335245609,-0.1019556298852,0.016984602436423],[-0.031989622861147,-0.13485331833363,-0.040281772613525],[0.030923165380955,0.0028772251680493,-0.1299739331007]],[[-0.0033215896692127,-0.16489267349243,-0.032911367714405],[-0.023422524333,-0.036844380199909,-0.048798657953739],[-0.01727550290525,0.020055403932929,-0.12872333824635]],[[0.094005964696407,-0.052845150232315,-0.11420091986656],[0.055452793836594,-0.050698559731245,0.027368249371648],[0.085828974843025,-0.0020775806624442,0.039130620658398]],[[0.014765778556466,-0.009501245804131,0.00033412376069464],[0.068000353872776,-0.0013915450545028,-0.0016784005565569],[0.05198835209012,0.025344461202621,0.017911285161972]],[[0.16198827326298,0.074636586010456,-0.00073988258372992],[-0.082293525338173,-0.028281832113862,-0.10544910281897],[-0.096080414950848,0.10153286159039,0.034752130508423]],[[-0.11350717395544,-0.062364980578423,0.059210728853941],[0.091270841658115,-0.062038138508797,-0.05243132263422],[0.050727590918541,-0.01517444383353,-0.19282628595829]],[[0.081714116036892,-0.015447895042598,0.050860393792391],[0.11377316713333,0.016742093488574,0.049421690404415],[0.12836961448193,0.045062813907862,0.051551841199398]],[[0.007294247392565,-0.15827822685242,-0.066673927009106],[-0.016075218096375,0.0092752994969487,0.004312998149544],[0.0053414772264659,-0.11804830282927,0.051986537873745]]],[[[0.043972682207823,-0.019317448139191,0.052283957600594],[0.11765751987696,-0.058352828025818,0.057027082890272],[0.028196137398481,-0.062283720821142,0.02926685474813]],[[-0.0024396199733019,0.017773093655705,-0.0055394330993295],[0.026245979592204,0.0088482899591327,-0.044023916125298],[-0.0049300533719361,0.0063432087190449,0.036313384771347]],[[-0.03589441254735,0.025274215266109,-0.0082705048844218],[-0.046714853495359,-0.013002007268369,-0.010326521471143],[-0.010767450556159,-0.01495748013258,-0.010657001286745]],[[-0.02746201120317,0.03683116286993,0.021455943584442],[-0.0016295418608934,-0.00046333356294781,0.031336795538664],[0.054371256381273,0.015975607559085,0.028089223429561]],[[0.007674858905375,0.019404364749789,0.054845463484526],[0.028731191530824,-0.034341439604759,0.091122731566429],[0.014715479686856,0.0076095899567008,-0.012345710769296]],[[-0.060951020568609,0.0024402751587331,0.09729129076004],[0.055473942309618,0.070278085768223,0.090905971825123],[-0.08636112511158,-0.0038435512688011,-0.11274933815002]],[[-0.017005594447255,-0.038311012089252,-0.0010778912110254],[0.01471428014338,0.049270950257778,0.0103630553931],[-0.054035063832998,-0.015308208763599,0.0070361313410103]],[[-0.0016322344308719,0.038727357983589,-0.013094614259899],[0.071868136525154,-0.0020273344125599,0.00079495314275846],[-0.011246060952544,-0.10337363183498,0.036892522126436]],[[0.0389051027596,0.00046240040683188,-0.056683104485273],[-0.05748987197876,-0.014486650004983,-0.0062881093472242],[-0.0078677386045456,0.040238056331873,-0.021445944905281]],[[-0.026152951642871,-0.062250200659037,-0.087392747402191],[0.021910089999437,0.010291364043951,0.083338372409344],[0.090270861983299,-0.062928289175034,0.056827023625374]],[[0.024858891963959,-0.013545312918723,0.050748646259308],[-0.077776156365871,-0.040576186031103,0.014556034468114],[0.056025851517916,-0.19260200858116,0.013616559095681]],[[0.0044180541299284,0.070492118597031,0.068338565528393],[0.003342017531395,0.0089959409087896,0.00018927615019493],[0.040835805237293,0.0015731347957626,-0.049550760537386]],[[-0.035233803093433,-0.03350305557251,-0.0016149355797097],[-0.029304191470146,0.038843467831612,-0.035292364656925],[0.023765936493874,-0.015583025291562,0.05073731392622]],[[0.053497277200222,-0.067470423877239,-0.034969929605722],[0.065326027572155,-0.043341211974621,0.077526114881039],[0.036808837205172,0.01403624098748,-0.085981979966164]],[[-0.091733425855637,-0.0080796722322702,-0.062471009790897],[-0.029857154935598,0.063245244324207,-0.049987968057394],[-0.010903229005635,-0.049560263752937,-0.057635974138975]],[[0.028248349204659,0.037552434951067,0.0026196809485555],[0.015432906337082,-0.012199624441564,0.015980616211891],[0.032542571425438,0.060331523418427,-0.053043235093355]],[[-0.029514990746975,0.061736181378365,0.06857343018055],[0.017436252906919,-0.0088678868487477,0.014618933200836],[0.039503183215857,-0.055418148636818,0.014708462171257]],[[-0.021543733775616,-0.060184143483639,0.012008481658995],[0.001348166144453,0.069822520017624,-0.041226528584957],[-0.0011369858402759,-0.01777252368629,0.013662772253156]],[[-0.041689623147249,-0.027999022975564,0.035786829888821],[0.024115385487676,-0.047260478138924,-0.019407410174608],[-0.02271332219243,-0.024602942168713,0.058177087455988]],[[0.027404403313994,0.028870945796371,-0.040975872427225],[-0.0076306276023388,0.036451727151871,-0.031965363770723],[-0.0091129168868065,-0.036509599536657,0.019926410168409]],[[0.0082905003800988,0.0089183421805501,0.072938315570354],[-0.038724392652512,0.042406059801579,-0.047226052731276],[0.0026784013025463,0.058655358850956,-0.035704828798771]],[[-0.0039310259744525,-0.0046534319408238,-0.0064651709981263],[-0.018469510599971,0.02810750156641,0.037415996193886],[0.014226073399186,0.03356309980154,-0.045867212116718]],[[0.021879186853766,-0.023451022803783,-2.3475877242163e-08],[-0.01181635633111,0.073014423251152,0.020419279113412],[-0.056195717304945,0.017751695588231,-0.040865834802389]],[[-0.070365816354752,-0.0092327892780304,-0.028495186939836],[-0.036486383527517,-0.039493296295404,0.051036939024925],[-0.046365484595299,-0.02130320109427,0.043510422110558]],[[-0.03980441391468,-0.033731259405613,0.02678937651217],[-0.067274697124958,0.06468765437603,0.043984182178974],[-0.03696471452713,0.011580476537347,-0.0016386636998504]],[[-0.043248534202576,2.1288953576004e-05,-0.062137931585312],[-0.052851043641567,-0.05114521458745,0.054258797317743],[-0.013078368268907,0.015718901529908,-0.077886283397675]],[[-0.028905984014273,-0.015255203470588,0.061284512281418],[0.067830145359039,-0.048668313771486,0.037049978971481],[0.047298699617386,0.002532871440053,0.063882224261761]],[[0.0032337352167815,0.039202950894833,-0.042467508465052],[0.031334467232227,-0.012950384989381,-0.019328784197569],[0.032961364835501,0.018552454188466,-0.03176537156105]],[[-0.012873666360974,-0.011313370428979,-0.084702737629414],[-0.076203316450119,0.13294392824173,-0.00091114587849006],[0.013968043960631,-0.018536794930696,-0.010647514835]],[[-0.047200810164213,0.024830888956785,-0.0137400906533],[0.030697755515575,-0.06899531185627,-0.04267243668437],[0.0097749084234238,0.035922508686781,-0.074969828128815]],[[-0.018866902217269,0.038967873901129,-0.073622785508633],[-0.080519169569016,0.0059095746837556,-0.035034690052271],[0.037564218044281,0.017819093540311,0.025339623913169]],[[0.067844301462173,0.073143742978573,0.021535485982895],[-0.00041373743442819,-0.0018362459959462,-0.066892720758915],[-0.021499499678612,0.043906949460506,0.0025295789819211]],[[-0.061543211340904,0.0086056422442198,0.0034012740943581],[-0.05094825848937,-0.047628853470087,0.0050742514431477],[0.016579700633883,0.027340948581696,-0.028413455933332]],[[0.00059222494019195,-0.054516199976206,-0.023792531341314],[-0.081897221505642,0.017851831391454,-0.0078174080699682],[0.021319001913071,-0.031477194279432,0.044624518603086]],[[0.042211677879095,0.037704583257437,0.095086194574833],[0.01649190671742,0.017134239897132,-0.10327368229628],[-0.026548448950052,0.049987785518169,-0.056326620280743]],[[-0.011124557815492,-0.019720464944839,-0.088082142174244],[0.013767350465059,-0.0084738172590733,0.015130546875298],[0.019553780555725,-0.058980379253626,-0.030452594161034]],[[-0.0047631277702749,-0.014166615903378,-0.050555363297462],[0.029276726767421,0.0099958209320903,0.024696785956621],[0.0019061171915382,0.023392027243972,0.0066284984350204]],[[0.033680479973555,0.0020323586650193,-0.0079501522704959],[0.051156841218472,-0.059401199221611,-0.035990584641695],[0.0020453941542655,0.082468308508396,-0.046423997730017]],[[-0.10953547805548,-0.00039465914596803,0.06041058152914],[-0.0066298767924309,0.060254547744989,-0.016546506434679],[-0.080441005527973,0.021628558635712,-0.099895946681499]],[[0.030821187421679,0.039518099278212,0.0080794412642717],[-0.053106602281332,0.031504355370998,-0.0071125151589513],[-0.0029230075888336,0.041606429964304,0.0042255348525941]],[[-0.030872961506248,0.081492997705936,0.0077694072388113],[-0.03762274608016,0.0068205827847123,0.039249807596207],[0.036991737782955,-0.029065219685435,-0.022539155557752]],[[0.044258832931519,0.0070967893116176,0.0098678441718221],[0.03317528963089,-0.081561535596848,-0.016951289027929],[-0.096654869616032,0.017958445474505,0.011170458048582]],[[0.01193577144295,0.063746027648449,-0.087918728590012],[7.1875256253406e-05,-0.0042779771611094,-0.048389539122581],[-0.043398071080446,-0.11245081573725,-0.0056068957783282]],[[-0.081022515892982,-0.052767563611269,-0.093834325671196],[0.051607400178909,-0.036753877997398,0.024516351521015],[-0.038948304951191,0.046609703451395,0.029791640117764]],[[0.036307621747255,0.024844175204635,0.00024300112272613],[0.076247945427895,-0.037260044366121,0.020828556269407],[-0.0023611928336322,-0.0029625382740051,-0.020073901861906]],[[0.034921284765005,-0.033470164984465,-0.042477767914534],[-0.044720835983753,0.045816667377949,0.040954653173685],[-0.0071200430393219,-0.058810628950596,-0.035862192511559]],[[0.0057295151054859,-0.11822388321161,-0.022907027974725],[0.0071834912523627,0.0021668639965355,-0.019681535661221],[-0.023675084114075,7.5597679824568e-05,-0.030399410054088]],[[-0.0071683707647026,-0.045376166701317,-0.012556929141283],[-0.075141377747059,0.029592026025057,-0.0095073664560914],[-0.03989165276289,-0.017234828323126,0.025234028697014]],[[0.034661628305912,-0.013712203130126,0.036262579262257],[-0.01639405451715,-0.017964124679565,0.025125578045845],[-0.017807411029935,-0.021012479439378,-0.01279713306576]],[[0.014473371207714,0.0121816881001,0.0096715278923512],[0.01062217541039,-0.027672940865159,0.0091524329036474],[-0.043987642973661,-0.052691373974085,0.072983719408512]],[[-0.061599288135767,-0.054052338004112,-0.026481669396162],[0.020577298477292,0.061115656048059,-0.038494009524584],[-0.0017304145731032,-0.026990935206413,0.012226603925228]],[[0.0020839772187173,0.032055996358395,0.0026379728224128],[-0.074270397424698,0.018938792869449,-0.093782223761082],[-0.038474101573229,0.021186418831348,0.05836159363389]],[[0.0065746293403208,0.064266920089722,0.0026828825939447],[-0.02177201770246,0.039538837969303,0.011812423355877],[-0.010369900614023,-0.011875913478434,-0.0075344550423324]],[[0.049121875315905,0.017166882753372,0.063781544566154],[0.0039846915751696,0.042952798306942,0.12569482624531],[0.043576512485743,0.014672347344458,0.061245150864124]],[[-0.02633348107338,-0.020244736224413,0.00036781761446036],[0.041036523878574,-0.071861304342747,-0.039540663361549],[0.0092872558161616,0.05088946968317,0.010350509546697]],[[-0.032747574150562,-0.031395524740219,0.053964629769325],[0.018264150246978,0.08257569372654,0.0061888080090284],[-0.0035340157337487,0.0041805519722402,-0.024248709902167]],[[-0.019738251343369,0.02573711052537,0.009661010466516],[0.021026501432061,0.0069453003816307,-0.024920269846916],[0.042062181979418,0.0016746959881857,0.010563842020929]],[[-0.037240736186504,0.010005650110543,0.029477223753929],[-0.0053432993590832,0.0048927417956293,-0.011249296367168],[-0.002135940361768,-0.012201224453747,0.01244724355638]],[[-0.0063454913906753,0.074401833117008,0.088752426207066],[0.0066439267247915,-0.07671882212162,0.059957876801491],[-0.021232152357697,-0.03697070479393,0.034323204308748]],[[-0.0081744361668825,-0.017446253448725,0.0070098433643579],[0.031950570642948,-0.047098658978939,0.019167471677065],[0.052065595984459,-0.025893189013004,0.055475167930126]],[[0.036500975489616,-0.045854564756155,-0.078104764223099],[-0.07313447445631,-0.01980321854353,0.062727063894272],[0.00067089992808178,0.075867436826229,0.03483772277832]],[[0.016857586801052,-0.038462318480015,-0.095895133912563],[0.031179673969746,-0.074789427220821,-0.083637058734894],[-0.095925822854042,0.0044220937415957,-0.0040280660614371]],[[0.033692590892315,-0.052542615681887,-0.086807407438755],[0.040448453277349,0.0025266068987548,0.02316565439105],[0.034760523587465,-0.027084168046713,0.054730650037527]],[[0.030612923204899,-0.022836057469249,0.041015446186066],[0.041040480136871,0.010814533568919,-0.050435815006495],[-0.052985340356827,-0.028258863836527,-0.0099661070853472]]],[[[0.075921088457108,-0.078401871025562,-0.1402088701725],[0.063589088618755,0.14260467886925,-0.16937847435474],[0.14897379279137,0.001932862913236,0.065241992473602]],[[-0.032723449170589,0.0060007823631167,0.15311545133591],[-0.097048051655293,0.052212499082088,0.038981791585684],[-0.28397452831268,-0.21960723400116,-0.042852275073528]],[[0.051086667925119,-0.041523233056068,-0.054781761020422],[-0.043738529086113,-0.014025915414095,-0.017621668055654],[0.064162977039814,0.045749001204967,0.034122325479984]],[[-0.013127281330526,-0.038079060614109,-0.036373842507601],[-0.056996431201696,-0.029698604717851,0.027857756242156],[0.00038634709198959,0.050821986049414,0.084587581455708]],[[-0.10521544516087,-0.060751061886549,0.076141402125359],[0.0086718751117587,0.014475892297924,0.010595576837659],[0.022779600694776,0.034754432737827,-0.0018142429180443]],[[0.017777513712645,-0.0055679739452899,-0.057554502040148],[0.030245969071984,-0.058166228234768,-0.049762107431889],[0.0098373098298907,0.0025521616917104,-0.025412021204829]],[[0.028741354122758,0.01865510083735,-0.050155445933342],[-0.0022347003687173,0.01970680616796,0.028256375342607],[0.003931934479624,-0.12733663618565,-0.017204988747835]],[[-0.077881544828415,-0.12895603477955,-0.031345874071121],[0.18946377933025,0.035482995212078,0.048870585858822],[0.02671492099762,-0.040692407637835,0.048283033072948]],[[-0.0736153870821,0.095616362988949,-0.042873024940491],[-0.038373429328203,-0.0017512766644359,0.018641456961632],[-0.063419878482819,0.087017029523849,0.12226936221123]],[[-0.14173302054405,-0.044232975691557,0.089380405843258],[-0.11518957465887,-0.030381029471755,0.037185709923506],[0.072662658989429,0.022962927818298,0.027687851339579]],[[0.11475339531898,-0.1219932064414,-0.16230672597885],[0.10470540821552,0.16218037903309,-0.14429743587971],[0.080308079719543,-0.037495747208595,0.062453649938107]],[[0.00038544987910427,0.024769945070148,0.05069649964571],[0.053034827113152,0.042578231543303,-0.0012407725444064],[-0.088471829891205,0.0002433069748804,0.057937640696764]],[[0.0042291339486837,-0.014420932158828,-0.018460834398866],[-0.12018632143736,-0.092322804033756,-0.021330233663321],[-0.11556959152222,-0.10327122360468,-0.071039423346519]],[[0.00047713759704493,-0.092678464949131,-0.10222909599543],[-0.02431289665401,0.086411967873573,-0.073874741792679],[0.17769874632359,0.012718544341624,-0.047900747507811]],[[-0.11763112992048,-0.22645474970341,-0.19619336724281],[0.10047598928213,0.030314415693283,-0.094327822327614],[0.1936908364296,-0.011364467442036,-0.029008327051997]],[[-0.00090240663848817,0.034315176308155,0.11321253329515],[0.05225683003664,-0.024977164342999,0.010229333303869],[-0.042026527225971,0.058156087994576,-0.08251765370369]],[[-0.03387751057744,0.041281871497631,-0.026995975524187],[-0.011656293645501,-0.15423034131527,0.017344459891319],[-0.048898607492447,-0.058387696743011,-0.071684122085571]],[[-0.008360804989934,-0.028240082785487,-0.06484417617321],[-0.031300984323025,0.051088809967041,0.04834657907486],[-0.023162487894297,-0.1330178976059,0.059274293482304]],[[-0.098525710403919,-0.10982409119606,0.052559550851583],[0.029355570673943,-0.11385515332222,-0.11911973357201],[0.073749609291553,-0.0049877520650625,-0.017219273373485]],[[-0.054633691906929,0.03424235060811,0.023910515010357],[0.049708224833012,0.051638592034578,0.00086182623635978],[-0.055063471198082,0.044731829315424,0.012750121764839]],[[-0.028633534908295,-0.038544204086065,-0.14991171658039],[0.07890623062849,-0.054049555212259,-0.068345941603184],[0.22260965406895,-0.0083215115591884,0.027843164280057]],[[0.14648480713367,0.19997656345367,0.019188806414604],[-0.055794443935156,-0.087172396481037,0.038261644542217],[-0.21151798963547,-0.15425632894039,-0.066115066409111]],[[0.015631657093763,-0.016252001747489,-0.049555864185095],[-0.0063156201504171,0.047670599073172,-0.019706422463059],[-0.00083672197069973,0.033998113125563,-0.0040133656002581]],[[0.10040714591742,0.029548292979598,-0.043071459978819],[-0.0012789519969374,-0.14471212029457,0.011833749711514],[0.053467560559511,0.042051918804646,-0.028353858739138]],[[-0.022170497104526,-0.013422115705907,0.040445741266012],[0.108896702528,-0.01404195278883,0.084733232855797],[0.053768008947372,0.0265550352633,0.052376069128513]],[[-0.04867110028863,0.039782203733921,0.045465517789125],[-0.084830805659294,-0.08468646556139,-0.031352732330561],[-0.073485985398293,-0.023825520649552,-0.031855013221502]],[[-0.097884252667427,-0.16696017980576,-0.04485947266221],[0.20010353624821,0.034724459052086,0.011874603107572],[0.084807187318802,0.015936534851789,-0.013106757774949]],[[0.047834876924753,-0.10188408941031,-0.043550882488489],[-0.11842311173677,0.021007234230638,-0.033945389091969],[0.13733699917793,0.086619213223457,-0.031239073723555]],[[-0.043970853090286,-0.049975976347923,0.037177201360464],[0.031117960810661,-0.25359725952148,0.064940325915813],[0.088887415826321,-0.018297452479601,0.0094079999253154]],[[-0.15468913316727,0.018381355330348,0.076994456350803],[-0.019078314304352,0.057018164545298,-0.094984866678715],[-0.069613620638847,0.080389931797981,-0.010732270777225]],[[-0.052468679845333,0.06476353853941,0.022789897397161],[0.031271941959858,-0.19116348028183,0.10885800421238],[-0.010070501826704,-0.0025972698349506,0.055042326450348]],[[-0.096775613725185,0.096156373620033,-0.10719785094261],[0.13854336738586,-0.026990974321961,0.059962447732687],[0.039219051599503,-0.047793202102184,0.0171007681638]],[[0.00075438903877512,0.051366358995438,0.033880092203617],[-0.040501061826944,-0.048971723765135,-0.015940451994538],[-0.096431106328964,0.032919902354479,-0.037407889962196]],[[0.036969192326069,0.0067113982513547,0.094622664153576],[0.035444263368845,-0.0022216155193746,-0.018645649775863],[-0.059783443808556,0.15004102885723,0.04307771846652]],[[0.01304935850203,0.082726173102856,0.021925093606114],[-0.05827971175313,0.15352074801922,0.015393951907754],[-0.13798435032368,0.018572993576527,0.0028410635422915]],[[0.00085079600103199,-0.11079794168472,-0.12975589931011],[0.019199414178729,0.053144082427025,-7.0513982791454e-05],[-0.15596030652523,-0.063692770898342,-0.0069802119396627]],[[-0.078845515847206,-0.14901268482208,-0.13629497587681],[0.057478938251734,-0.14609326422215,-0.033793602138758],[0.0013462115311995,0.096305601298809,0.015211116522551]],[[-0.018686231225729,-0.043372873216867,0.059101313352585],[0.12151566892862,-0.17666792869568,0.030139749869704],[0.068610608577728,0.082720018923283,-0.0059412000700831]],[[0.090213462710381,0.036088090389967,0.055479709059],[-0.071102328598499,0.054058816283941,0.070636481046677],[0.00284837000072,-0.12455756217241,-0.019011080265045]],[[-0.093749955296516,-0.032148983329535,-0.10767016559839],[-0.086575210094452,-0.026555802673101,0.066033288836479],[-0.042229443788528,-0.082906506955624,-0.036358095705509]],[[0.08870317786932,-0.018281124532223,0.037699718028307],[0.1041504740715,0.029069298878312,0.023442715406418],[-0.027095997706056,0.047557007521391,-0.051353633403778]],[[-0.0035038525238633,0.060665562748909,-0.021520728245378],[0.038647599518299,-0.1183338612318,0.17403818666935],[0.061563551425934,-0.06837709993124,-0.05255238711834]],[[0.048483941704035,-0.07655268907547,0.032470740377903],[-0.11160037666559,0.065755352377892,0.029990581795573],[0.069178454577923,-0.031145300716162,0.07663232088089]],[[-0.014561325311661,0.18082903325558,0.020645750686526],[-0.098523288965225,-0.037201389670372,0.15208791196346],[-0.19232201576233,-0.10131116211414,-0.017108792439103]],[[0.0054741282947361,-0.045065633952618,0.018502231687307],[0.076332487165928,0.05932467803359,-0.031812191009521],[0.062209662050009,0.036809910088778,-0.021154237911105]],[[-0.044914186000824,0.037504315376282,0.066361404955387],[-0.057876914739609,-0.067789241671562,0.015291503630579],[-0.028330331668258,0.045413792133331,-0.094700336456299]],[[0.037234757095575,0.049467589706182,0.022714411839843],[-0.058289591223001,0.065953448414803,0.021203557029366],[-0.085715144872665,0.072367496788502,-0.062154859304428]],[[0.053406860679388,-0.14085315167904,0.10697933286428],[0.026951974257827,0.1151884496212,-0.10330040752888],[0.0026734387502074,0.16850586235523,0.016067923977971]],[[-0.1202829182148,0.0297643058002,0.05638750270009],[0.043742343783379,0.11960186064243,-0.063799276947975],[-0.085964173078537,-0.029971953481436,0.0688606351614]],[[-0.0021678041666746,-0.13100697100163,-0.25487589836121],[0.075902253389359,-0.018930226564407,-0.11660396307707],[0.067452348768711,0.0084438659250736,-0.063799075782299]],[[0.012669264338911,0.045089464634657,0.058073353022337],[-0.37520751357079,0.22620536386967,-0.030229484662414],[-0.15851974487305,-0.17788390815258,0.020062368363142]],[[0.014936683699489,0.10807078331709,-0.11578933894634],[-0.0033583093900234,-0.025614975020289,0.049915041774511],[-0.040716990828514,0.019017957150936,0.0029009520076215]],[[-0.086399398744106,0.13828080892563,0.067328616976738],[0.036407817155123,-0.024645002558827,0.088375516235828],[-0.23212987184525,0.024675091728568,-0.10122219473124]],[[0.15767231583595,0.15402612090111,0.0018711058655754],[0.11763120442629,0.14824196696281,0.025970937684178],[0.13100661337376,0.021740941330791,0.061676107347012]],[[-0.093764536082745,-0.013062871061265,-0.12588304281235],[-0.061254598200321,-0.10288814455271,0.028258254751563],[-0.05552963539958,-0.17303235828876,-0.02549535036087]],[[-0.10022314637899,0.048851173371077,-0.041726909577847],[-0.15274322032928,0.02159633859992,-0.097085446119308],[-0.066888563334942,-0.015389007516205,-0.029488053172827]],[[-0.011013286188245,-0.023097403347492,-0.00029846050892957],[-0.012948920950294,-0.10680612176657,-0.030890792608261],[0.041018296033144,-0.048635181039572,-0.023831106722355]],[[0.015982754528522,-0.028758686035872,0.050093628466129],[0.037419505417347,-0.0660759806633,0.039375994354486],[-0.053518146276474,-0.066599123179913,-0.10972145199776]],[[0.090961411595345,-0.066247016191483,0.059580001980066],[0.010317376814783,0.14798255264759,-0.034776009619236],[-0.020667729899287,-0.077238418161869,0.10266675800085]],[[0.036597605794668,0.024760065600276,0.090439438819885],[-0.023800449445844,0.024135366082191,0.026323234662414],[-0.00080001557944342,-0.029888408258557,0.014602105133235]],[[-0.081999816000462,0.023799777030945,0.014461562968791],[0.042386010289192,-0.031528010964394,0.11810950934887],[-0.11566495895386,0.061048410832882,-0.016258036717772]],[[-0.11776076257229,-0.13636103272438,0.092554531991482],[-0.050367061048746,-0.11821239441633,0.1054619923234],[-0.10330568253994,0.0079037053510547,-0.018695868551731]],[[0.10403772443533,0.0077715674415231,0.019281854853034],[-0.008812552317977,-0.059020355343819,0.036966226994991],[-0.0353036634624,-0.17994816601276,-0.032345704734325]],[[-0.068210527300835,-0.037631925195456,0.03903716430068],[0.050062675029039,-0.028741292655468,-0.025242686271667],[0.031928222626448,-0.06992395222187,-0.031701251864433]]],[[[0.12344088405371,-0.11545469611883,0.046718075871468],[-0.15612585842609,-0.074793785810471,0.094319857656956],[0.028242669999599,0.077850595116615,0.22419196367264]],[[-0.053403474390507,0.087776258587837,0.036660518497229],[0.017683021724224,0.0097437230870128,0.017900161445141],[-0.068014606833458,-0.033223707228899,-0.12615196406841]],[[0.10647038370371,-0.04352069273591,-0.038071893155575],[-0.026443338021636,0.0015159489121288,-0.036303330212831],[0.043755266815424,-0.01478838454932,-0.042135689407587]],[[-0.072246387600899,-0.042821142822504,0.017793556675315],[-0.061257526278496,0.045606344938278,0.016329396516085],[-0.0094591239467263,-0.04070832952857,-0.011120024137199]],[[-0.025788737460971,-0.077219732105732,-0.13593183457851],[-0.060688085854053,-0.062742978334427,-0.10601039230824],[-0.011103589087725,0.085072413086891,0.099566653370857]],[[0.14555415511131,0.23995184898376,0.10927864164114],[0.017821399495006,0.032428022474051,-0.10929059237242],[-0.062461689114571,-0.049576800316572,-0.16066105663776]],[[-0.0054505309090018,0.031717170029879,0.0010598920052871],[-0.01076852530241,-0.040486868470907,-0.01402476709336],[0.0051170778460801,0.013868149369955,0.0014637263957411]],[[0.11452393233776,0.06377612054348,0.0096846874803305],[0.0067278323695064,-0.0071955402381718,-0.073576591908932],[-0.058679562062025,-0.042945306748152,-0.025808161124587]],[[-0.16811963915825,-0.13788865506649,0.057535219937563],[0.012141909450293,-0.0075044753029943,0.061620328575373],[0.10794179141521,0.062445927411318,-0.01662166044116]],[[-0.034037537872791,-0.077963158488274,-0.044093232601881],[-0.023288711905479,-0.0070387772284448,-0.031846906989813],[-0.002139484975487,0.017707461491227,0.052562601864338]],[[0.010220115073025,0.023039396852255,0.038608092814684],[0.048346091061831,-0.035497382283211,-0.12797735631466],[0.034219264984131,0.069482192397118,-0.052281271666288]],[[-0.0068656005896628,-0.0031052802223712,0.038467034697533],[-0.034265205264091,0.025178536772728,-0.020328091457486],[0.014876578934491,-0.060372442007065,-0.043142084032297]],[[-0.054224397987127,-0.013613995164633,0.0062581785023212],[0.0061313891783357,-0.084257625043392,-0.034435778856277],[0.032656963914633,0.0042532766237855,-0.15542203187943]],[[0.040338829159737,0.086550034582615,0.050442680716515],[0.045114163309336,0.082055673003197,0.057899076491594],[0.013873918913305,0.056445799767971,-0.015817124396563]],[[0.0057550794444978,0.15742808580399,0.038569401949644],[0.024152096360922,0.071114167571068,-0.073435440659523],[0.022625636309385,0.089569665491581,-0.037233974784613]],[[-0.091138035058975,0.025385729968548,-0.026236539706588],[-0.049605056643486,-0.013638655655086,0.11223895847797],[-0.030117183923721,0.0095079848542809,0.092931762337685]],[[0.023001139983535,0.019908208400011,0.13235822319984],[-0.032633204013109,0.010811178945005,-0.056341722607613],[0.024269392713904,0.032513774931431,0.052908651530743]],[[-0.10800014436245,-0.055944986641407,-0.079400643706322],[-0.0079479282721877,-0.034227449446917,0.033133950084448],[-0.0014275889843702,-0.026297103613615,0.10664318501949]],[[-0.011513561941683,-0.088712297379971,0.046659175306559],[-0.076007343828678,0.01758685708046,0.00050329539226368],[-0.10098364204168,0.057939127087593,-0.023913422599435]],[[0.041850540786982,0.047339897602797,0.010568452998996],[-0.0053631230257452,-0.00059180281823501,-0.036219634115696],[0.0092669893056154,0.0023745722137392,-0.034669350832701]],[[0.0054430924355984,0.024884153157473,0.024067983031273],[0.026262320578098,0.068591415882111,0.03379649668932],[0.024809047579765,0.077924966812134,0.18034002184868]],[[0.23501451313496,0.02207818813622,-0.16710805892944],[-0.16764031350613,-0.041473869234324,-0.18546481430531],[-0.075760863721371,-0.042743492871523,-0.099536828696728]],[[-0.031546134501696,-0.031318850815296,-0.0047272043302655],[-0.011663882993162,-0.028128569945693,0.03483060002327],[-0.017923846840858,0.053191009908915,0.036000523716211]],[[0.11632313579321,-0.11784374713898,-0.16625611484051],[-0.16963112354279,-0.088920116424561,-0.13637214899063],[-0.12825626134872,-0.19186875224113,0.16546067595482]],[[0.066671207547188,0.039116840809584,0.013224185444415],[-0.060454044491053,-0.020239848643541,0.0039888191968203],[0.0013586500426754,-0.0091968812048435,0.11489248275757]],[[-0.026420207694173,0.047317083925009,0.069637939333916],[0.048329878598452,0.032747816294432,-0.092013441026211],[0.064968928694725,-0.073014326393604,-0.016446026042104]],[[-0.030615469440818,0.091942235827446,0.026164580136538],[-0.01657503657043,0.11816450953484,-0.0033221538178623],[0.019480427727103,-0.027694750577211,0.05307400226593]],[[0.04830365255475,-0.14330254495144,-0.020981481298804],[-0.1296221613884,-0.022644709795713,0.024338513612747],[0.0021116251591593,0.040974337607622,0.11285919696093]],[[0.050082851201296,0.063131026923656,0.041217178106308],[0.039457954466343,-0.10508915781975,-0.056296106427908],[-0.031714983284473,-0.0075640478171408,-0.03926744312048]],[[0.15576645731926,-0.068956047296524,-0.043737322092056],[-0.0017507178708911,-0.0045664212666452,-0.029655581340194],[-0.055166117846966,-0.073422953486443,0.12106989324093]],[[-0.079645164310932,-0.022968772798777,-0.092430651187897],[0.00031699336250313,-0.0020837066695094,-0.0027369991876185],[0.018648203462362,0.097136415541172,0.078155770897865]],[[-0.012635267339647,0.070612497627735,0.17499525845051],[-0.013634520582855,-0.032435562461615,0.027909770607948],[-0.063930220901966,0.012464388273656,0.011022463440895]],[[-0.021660346537828,-0.023716093972325,-0.019210744649172],[0.12632586061954,-0.12890103459358,-0.0024853970389813],[0.094173565506935,-0.037027593702078,-7.1813410613686e-05]],[[0.031921338289976,-0.048331655561924,0.0014440861996263],[-0.081149302423,-0.1893035620451,-0.047903157770634],[-0.088515289127827,-0.09046895802021,-0.0093396389856935]],[[-0.099815674126148,-0.065789930522442,0.040123555809259],[-0.11483024805784,0.011162823066115,0.0778863504529],[-0.040899977087975,0.16081178188324,0.094939596951008]],[[-0.035498023033142,0.030112458392978,-0.0075100245885551],[0.021253684535623,0.0076388642191887,-0.045568320900202],[0.01409063860774,-0.011172112077475,0.024589531123638]],[[-0.033404126763344,0.101193331182,0.080408446490765],[0.059509739279747,0.04777330160141,-0.019148007035255],[0.063561305403709,-0.046273078769445,-0.10684102773666]],[[0.073024578392506,0.1437231451273,0.12155026197433],[0.01842931099236,0.011946587823331,-0.11532143503428],[-0.16031856834888,-0.096003882586956,-0.0036233579739928]],[[0.0044240863062441,-0.00047586462460458,0.13570675253868],[-0.086084850132465,-0.0069811926223338,-0.092716701328754],[0.0087502272799611,-0.042103234678507,-0.06878612190485]],[[0.020014766603708,-0.046733267605305,0.015614164061844],[0.011491893790662,-0.034735321998596,-0.00016700669948477],[-0.014791362918913,-0.047741107642651,-0.11931142956018]],[[-0.1186880171299,-0.012815198861063,0.031577613204718],[-0.020526656880975,-0.055455185472965,0.059275884181261],[0.024644430726767,-0.040542297065258,0.12859006226063]],[[0.17793220281601,-0.059769738465548,-0.014924440532923],[-0.13465788960457,-0.097562335431576,0.0075695938430727],[-0.067644618451595,0.082890771329403,0.041877917945385]],[[0.064547725021839,-0.036701522767544,-0.030250124633312],[0.016378991305828,0.0068690069019794,0.019547201693058],[0.027543159201741,0.026221100240946,0.051839612424374]],[[-0.024834088981152,0.035535033792257,0.036193132400513],[-0.0081377131864429,-0.10118158906698,-0.033486008644104],[-0.031844016164541,-0.11393227428198,-0.040904078632593]],[[-0.1685836315155,-0.0027832693886012,-0.1254225820303],[0.0050161764957011,0.055417705327272,0.0062955403700471],[0.066977247595787,0.034301109611988,0.0041210590861738]],[[0.0023684916086495,-0.035581547766924,-0.02941913716495],[0.06568643450737,0.11149179190397,-0.14604753255844],[0.099040552973747,-0.024900807067752,-0.14833001792431]],[[0.24398122727871,0.09482380002737,-0.13405150175095],[0.10558959841728,-0.14438942074776,-0.19690831005573],[0.081263996660709,-0.29827991127968,-0.086746834218502]],[[0.011356613598764,-0.047803830355406,0.0034083002246916],[-0.035584013909101,0.020684482529759,-0.045502439141273],[0.030156848952174,-0.013506808318198,-0.034163177013397]],[[-0.1901693046093,0.017599612474442,0.066296130418777],[-0.10149274766445,0.023298682644963,0.068231426179409],[0.05695616453886,0.081607483327389,0.0046549472026527]],[[-0.062249191105366,-0.074874766170979,-0.00148407346569],[-0.085329480469227,-0.12356459349394,0.042099609971046],[-0.090263918042183,-0.09996397793293,0.10864815115929]],[[0.092486441135406,-0.031968884170055,-0.019681138917804],[0.10068388283253,-0.026111895218492,0.034560091793537],[-0.031037919223309,-0.018794203177094,0.030720507726073]],[[0.0054877316579223,0.035921920090914,0.062594771385193],[0.0068251402117312,0.031998880207539,-0.021063484251499],[0.060696229338646,-0.021670406684279,-0.040263641625643]],[[0.019271584227681,-0.088224790990353,-0.015317415818572],[-0.059501811861992,0.00016015546862036,-0.020765818655491],[-0.028725828975439,0.067107878625393,0.021194975823164]],[[-0.079372368752956,0.011244207620621,0.097038827836514],[0.071996107697487,0.073556527495384,0.071017019450665],[0.0041160373948514,0.059018693864346,0.100181825459]],[[-0.0068738041445613,-0.039062552154064,-0.049824476242065],[-0.11349338293076,-0.0266356728971,-0.040029242634773],[-0.049928609281778,0.10988723486662,0.14077590405941]],[[-0.041853070259094,-0.012255119159818,0.042148135602474],[-0.021595146507025,-0.038417436182499,0.086593806743622],[-0.027193175628781,-0.030436299741268,0.049466114491224]],[[-0.089069627225399,-0.13058677315712,-0.054625920951366],[0.045880723744631,-0.075944975018501,-0.047207701951265],[0.023644974455237,-0.085280224680901,-0.026709957048297]],[[0.028179345652461,-0.0090861432254314,-0.047710325568914],[-0.070413321256638,-0.035799756646156,-0.077110826969147],[-0.012625019997358,-0.086673803627491,-0.11565900593996]],[[0.0035356192383915,0.012678091414273,0.025159614160657],[-0.040599789470434,-0.0062499921768904,0.10497987270355],[0.025974705815315,-0.054934620857239,0.011810745112598]],[[0.025996878743172,0.084396965801716,0.01963490433991],[0.014598503708839,0.012620581313968,-0.089801371097565],[0.036762904375792,-0.045108165591955,-0.021657221019268]],[[-0.17986422777176,-0.016408810392022,-0.031220592558384],[0.056489937007427,0.084202386438847,0.038699306547642],[0.039906896650791,0.10819293558598,-0.054022826254368]],[[-0.020673949271441,0.11701500415802,0.10173511505127],[0.0044988123700023,0.022556494921446,-0.028191773220897],[-0.0055117309093475,-0.11952775716782,-0.0079359728842974]],[[-0.050067856907845,-0.10516831278801,-0.055512562394142],[-0.064291790127754,-0.098223358392715,-0.016037492081523],[0.032189588993788,0.0069692195393145,0.070614002645016]],[[-0.056218449026346,-0.057450897991657,0.0015509250806645],[0.090184658765793,0.065876759588718,0.028469663113356],[0.072844766080379,-0.009958908893168,-0.14922533929348]]],[[[0.034768603742123,0.12358298152685,0.092814370989799],[-0.059525460004807,0.0001627160818316,0.0076098507270217],[-0.052671957761049,0.015420363284647,-0.044582925736904]],[[-0.022613642737269,-0.13121655583382,-0.1684346050024],[-0.057393807917833,0.035444971174002,0.1122132614255],[-0.05319444835186,-0.16081263124943,-0.014697502367198]],[[-0.0076883821748197,-0.022257596254349,-0.0224550049752],[-0.012880792841315,0.02909879758954,-0.1255969107151],[-0.0093287145718932,0.032427161931992,-0.12634550035]],[[-0.035977330058813,0.086441591382027,0.025376215577126],[0.1544962823391,-0.056340523064137,-0.12576664984226],[-0.0035213241353631,0.076410233974457,0.113475009799]],[[0.02668178267777,0.18016822636127,0.060032062232494],[-0.024808712303638,-0.074598535895348,0.034386835992336],[0.03430251032114,-0.16463467478752,-0.16355535387993]],[[-0.12643042206764,-0.097454011440277,-0.10285400599241],[0.16897292435169,-0.18753129243851,-0.098604865372181],[-0.072344847023487,0.042289968580008,-0.0062339594587684]],[[0.057330545037985,-0.057941529899836,0.03065830282867],[-0.064172871410847,-0.061939239501953,0.028621591627598],[-0.072581730782986,-0.076085694134235,-0.052997764199972]],[[-0.047768779098988,-0.13373589515686,-0.054204691201448],[-0.056805938482285,-0.023417854681611,-0.093306988477707],[0.059609487652779,0.1627014875412,0.18860965967178]],[[0.081482380628586,0.084372207522392,0.02674875035882],[-0.065578229725361,-0.068517476320267,0.10999011993408],[0.049460150301456,0.06554126739502,-0.034739032387733]],[[0.087840065360069,0.03703523427248,-0.021280137822032],[0.034273687750101,0.052503980696201,-0.048367451876402],[-0.19189141690731,-0.0078566800802946,-0.10885567963123]],[[0.010846305638552,0.026519622653723,0.0047056889161468],[0.00020912229956593,-0.097563579678535,0.052256230264902],[-0.11114986985922,-0.041896305978298,-0.068647161126137]],[[-0.055872678756714,-0.02250836417079,0.039676759392023],[-0.01259396225214,0.013931690715253,-0.02263879776001],[0.028627160936594,0.0042651793919504,-0.020651627331972]],[[-0.078314207494259,0.080368153750896,0.038004022091627],[0.028376698493958,0.15740182995796,-0.04548803716898],[0.013194306753576,-0.12717500329018,-0.082536600530148]],[[-0.017886968329549,-0.021745793521404,-0.049978900700808],[-0.084111534059048,0.057769082486629,0.065405063331127],[-0.099397428333759,-0.085270442068577,-0.012187175452709]],[[-0.033156417310238,-0.027257710695267,-0.14394910633564],[-0.052020527422428,0.077630147337914,0.055670127272606],[0.043720621615648,0.049712885171175,-0.065691247582436]],[[0.066991835832596,-0.078240476548672,-0.11141353845596],[0.060682091861963,0.031807109713554,0.10181256383657],[-0.011637875810266,-0.078911080956459,-0.015123535878956]],[[-0.053479410707951,-0.10127119719982,-0.034502156078815],[-0.096187599003315,-0.052582636475563,-0.05053224414587],[0.013099497184157,-0.060153510421515,-0.098586872220039]],[[0.036006323993206,-0.1076352968812,0.0121786929667],[0.01034452021122,-0.12491125613451,-0.093316666781902],[0.0021884054876864,-0.01033434458077,-0.11436434090137]],[[-0.010672494769096,-0.041791401803493,-0.04123629629612],[-0.0090888338163495,-0.032137006521225,-0.089248538017273],[-0.12435787916183,-0.053359165787697,0.012956281192601]],[[-0.02820336073637,-0.039197724312544,0.10914739966393],[0.0071868025697768,-0.062363687902689,-0.032807495445013],[0.030900770798326,-0.0051094200462103,-0.022988999262452]],[[0.11708229780197,-0.017174130305648,0.01473771315068],[-0.099341370165348,0.054968327283859,-0.020267065614462],[-0.060335237532854,-0.073418080806732,-0.036056935787201]],[[0.063203707337379,-0.0098692746832967,-0.045273367315531],[0.059967841953039,0.10762391239405,-0.047426000237465],[-0.099793113768101,-0.068280763924122,-0.074489645659924]],[[0.060597732663155,0.05957393348217,0.038139499723911],[-0.082916095852852,-0.054354172199965,-0.02099584043026],[0.034038998186588,-0.0052590295672417,-0.035469155758619]],[[-0.098297506570816,-0.10021579265594,-0.021602855995297],[-0.035238858312368,-0.0086981551721692,-0.10546068847179],[0.07351541519165,0.10874363780022,0.12104859948158]],[[-0.10435929894447,0.034726157784462,-0.22578617930412],[-0.083538345992565,0.012850855477154,-0.021124061197042],[0.11077487468719,-0.01731039956212,-0.12065605819225]],[[0.012138119898736,-0.11091706156731,-0.029526054859161],[-0.077352553606033,0.010307153686881,-0.00068154773907736],[0.035138823091984,-0.064370021224022,-0.043654266744852]],[[-0.079145170748234,0.032983463257551,0.077174350619316],[0.10009177774191,-0.16883558034897,-0.085479378700256],[-0.029606951400638,0.071170300245285,-0.099798627197742]],[[-0.065104097127914,-0.031838942319155,0.079273819923401],[0.033789835870266,0.10885478556156,0.034267406910658],[-0.028559222817421,-0.013012772426009,0.17561002075672]],[[0.034497566521168,-0.18005582690239,-0.078010506927967],[0.065675623714924,0.13336834311485,0.11891258507967],[-0.11442980915308,-0.18943144381046,0.020033916458488]],[[0.018511494621634,-0.045751083642244,-0.19297978281975],[-0.0054415869526565,-0.13603058457375,-0.13323849439621],[-0.07591537386179,0.081312119960785,0.0071443398483098]],[[-0.038768704980612,-0.013318606652319,-0.047784850001335],[0.044281993061304,-0.025449547916651,0.0083647202700377],[-0.078497901558876,-0.017870269715786,0.0096317483112216]],[[0.0083336988463998,0.057087235152721,0.042009919881821],[0.0014366960385814,0.046530902385712,-0.011054531671107],[-0.070967599749565,0.045057769864798,-0.035736281424761]],[[-0.092124134302139,0.0057992697693408,-0.036764550954103],[-0.059124253690243,0.05415852740407,0.1087694466114],[-0.0080078095197678,-0.020061088725924,-0.055239252746105]],[[0.0079871714115143,0.1285305917263,-0.023675337433815],[-0.051432922482491,0.049977459013462,-0.18028934299946],[-0.038336828351021,-0.013390776701272,0.033936869353056]],[[-0.18620237708092,0.0070130405947566,-0.01335924398154],[-0.068272404372692,-0.14643226563931,-0.054263178259134],[0.056901600211859,0.20639136433601,0.061320159584284]],[[0.011910333298147,0.011839262209833,-0.052655719220638],[-0.014615113846958,-0.06902638822794,-0.028311876580119],[0.019307572394609,-0.043278619647026,0.022739179432392]],[[0.066383019089699,-0.053188014775515,-0.037006232887506],[-0.0052260025404394,0.12517592310905,-0.02271924726665],[-0.077214635908604,-0.048037491738796,-0.059445463120937]],[[0.14857114851475,0.067071326076984,0.039330158382654],[-0.16708537936211,-0.1645794659853,-0.0059164175763726],[0.091592654585838,-0.041945833712816,-0.089473739266396]],[[-0.026689538732171,-0.037611238658428,0.074688278138638],[-0.0090511608868837,-0.036981649696827,0.12550349533558],[-0.091806545853615,-0.0707081630826,0.0079017970710993]],[[-0.023680210113525,0.0034227105788887,0.13899965584278],[0.0285130944103,0.14232623577118,-0.039613358676434],[-0.12851104140282,-0.015434545464814,0.081115536391735]],[[0.012848479673266,0.069001279771328,0.090015456080437],[0.029749725013971,-0.015165673568845,-0.075803987681866],[-0.098099172115326,-0.044336728751659,-0.05765476077795]],[[-0.13838209211826,-0.11924735456705,-0.14117729663849],[0.07224827259779,0.1201368868351,0.021059324964881],[0.030882462859154,0.062102310359478,0.21140316128731]],[[-0.15649385750294,0.051952056586742,-0.053121238946915],[0.008437117561698,-0.047890931367874,-0.059997335076332],[0.072361938655376,0.050064403563738,0.070470787584782]],[[0.056057143956423,-0.022854531183839,-0.034252427518368],[-0.052426680922508,0.091901451349258,-0.0084446854889393],[0.036718275398016,-0.11513479799032,0.011654670350254]],[[-0.051801331341267,0.11587052792311,0.13230183720589],[-0.09912721067667,0.066295973956585,-0.12048648297787],[-0.0638113245368,0.014874257147312,-0.02071788161993]],[[-0.052255589514971,0.0069053280167282,-0.023649591952562],[0.11351199448109,-0.036435917019844,0.078735195100307],[0.027054980397224,-0.014043299481273,-0.11319598555565]],[[0.21427436172962,0.087960854172707,-0.042070884257555],[0.0013819325249642,-0.022228747606277,-0.090510375797749],[-0.027246624231339,-0.08265994489193,-0.08536035567522]],[[-0.016203377395868,-0.031384516507387,0.023414693772793],[-0.088534370064735,-0.074811220169067,-0.0071486071683466],[0.060019288212061,0.062344674021006,-0.03195583820343]],[[-0.01163165550679,-0.040502648800611,-0.085263751447201],[0.021955963224173,-0.037818528711796,0.010511616244912],[0.059667158871889,-0.11407819390297,-0.12151842564344]],[[-0.071765646338463,0.01613898947835,-0.028703548014164],[0.059750124812126,-0.10717676579952,-0.056093722581863],[0.058982457965612,0.061194866895676,-0.068038761615753]],[[0.0034453745465726,0.057434391230345,-0.010314610786736],[-0.021222352981567,-0.037135440856218,-0.012290883809328],[0.079796224832535,-0.004305764567107,-0.055956017225981]],[[0.0023388711269945,-0.19102014601231,0.031985010951757],[0.076796844601631,0.03853552043438,-0.054897267371416],[0.013970396481454,0.023875372484326,0.10740289837122]],[[-0.038899946957827,0.0071423784829676,0.1539149582386],[0.075700499117374,-0.048928931355476,0.11372415721416],[0.0057711796835065,-0.041870776563883,0.10116028040648]],[[0.012631889432669,0.0028439231682569,0.2186973541975],[0.071987472474575,0.13199293613434,-0.079244121909142],[0.004307541064918,0.10366502404213,0.15130780637264]],[[0.083839498460293,0.026769407093525,0.065382711589336],[-0.012842600233853,0.12198971956968,0.061514258384705],[0.0061026671901345,-0.14467811584473,-0.051187939941883]],[[0.032088909298182,0.098978452384472,0.026277396827936],[-0.083315461874008,-0.15728150308132,0.13906173408031],[-0.003834223607555,0.15010596811771,-0.12511579692364]],[[-0.063739739358425,0.094289518892765,-0.007915792055428],[-0.10832865536213,-0.089041948318481,-0.15299460291862],[-0.13026505708694,0.018109539523721,0.192965939641]],[[-0.01609256491065,0.068388447165489,-0.092396154999733],[0.016032509505749,-0.093635477125645,0.04206619784236],[0.0096789915114641,-0.010830876417458,0.069584704935551]],[[0.029703510925174,0.018842965364456,-0.0086876703426242],[-0.069045647978783,0.0086408220231533,-0.038131389766932],[0.023502623662353,-0.13745787739754,-0.031870182603598]],[[-0.031109075993299,-0.084998555481434,0.016587411984801],[0.040812823921442,0.078029587864876,-0.0044200182892382],[-0.013008367270231,-0.013836563564837,0.05831041932106]],[[-0.009156228043139,0.098922125995159,-0.0037296775262803],[0.012944590300322,-0.10218055546284,-0.031870298087597],[0.074552148580551,0.0015161199262366,-0.0068878126330674]],[[0.24709151685238,-0.0066179730929434,-0.0030210665427148],[0.15850593149662,0.097880110144615,-0.12983000278473],[-0.01395849045366,-0.063688486814499,0.038726460188627]],[[0.13452656567097,0.011646951548755,-0.088378354907036],[0.052313007414341,0.12877894937992,0.098336540162563],[-0.17537006735802,-0.21167956292629,-0.071842290461063]],[[-0.045368164777756,-0.030715350061655,-0.18684703111649],[-0.047002874314785,0.098048284649849,0.056619867682457],[-0.049444764852524,-0.09356851875782,0.097414471209049]]],[[[-0.030259011313319,0.053804904222488,0.0599500015378],[0.029990449547768,0.03259401768446,-0.072523199021816],[-0.065789461135864,-0.11461672186852,-0.0033464336302131]],[[0.035919617861509,0.014704911969602,-0.016844540834427],[-0.032329104840755,-0.038708861917257,-0.0233637932688],[0.012071748264134,-0.068608447909355,0.033718816936016]],[[0.081355057656765,-0.084586851298809,0.0082804569974542],[0.084451206028461,-0.11954334378242,-0.031537380069494],[0.10254906862974,0.037632241845131,-0.01620271243155]],[[7.7001393947285e-05,0.030346184968948,-0.023515272885561],[0.052862208336592,0.02290278673172,0.0046510281972587],[0.021180266514421,0.034440904855728,0.030208637937903]],[[0.010295430198312,-0.019307274371386,0.0090431105345488],[0.0026992962229997,0.013743821531534,0.094720102846622],[-0.077334500849247,-0.00033109579817392,-0.051962319761515]],[[0.10851524025202,-0.05513010174036,-0.0072484305128455],[0.008678175508976,-0.090052507817745,-0.16468805074692],[0.10719496756792,-0.010199626907706,-0.071664601564407]],[[0.018312836065888,0.0013852459378541,0.019210334867239],[-0.090733610093594,0.0031227986328304,-0.0048769442364573],[-0.045742969959974,0.011826771311462,-0.034027319401503]],[[-0.10593876987696,-0.079337447881699,0.045222029089928],[0.0059754978865385,-0.0046991058625281,-0.022499199956656],[0.0085994433611631,0.068141661584377,0.038559157401323]],[[-0.017219485715032,0.048293512314558,-0.0014571744250134],[-0.014397326856852,0.0073364609852433,-0.07464611530304],[-0.02844219841063,0.0080974455922842,-0.048736158758402]],[[-0.0076643382199109,0.064508005976677,-0.034859627485275],[0.047836199402809,0.033419258892536,0.064063861966133],[-0.011344674043357,0.0059614474885166,-0.001781546510756]],[[0.0077133690938354,0.048711862415075,0.043527662754059],[-0.035410903394222,0.016954207792878,0.015508517622948],[0.051082603633404,-0.087776444852352,0.048165619373322]],[[-0.035357225686312,0.0098651079460979,-0.015538328327239],[0.055428985506296,0.0048308172263205,-0.0089193591848016],[0.017143901437521,-0.066364116966724,0.0098759029060602]],[[0.067192651331425,0.029650438576937,-0.023226315155625],[-0.034971352666616,0.085730038583279,-0.024270659312606],[0.024410434067249,0.078374974429607,0.069388993084431]],[[0.01127440109849,0.014061981812119,0.060458388179541],[-0.012567109428346,0.042131260037422,-0.010608588345349],[0.025644939392805,-0.040886752307415,-0.018910193815827]],[[-0.028788344934583,-0.032740045338869,-0.034584879875183],[-0.089780554175377,-0.023869583383203,-0.037068113684654],[0.10868941992521,-0.024259459227324,-0.015438576228917]],[[0.027519626542926,0.047202531248331,0.012853956781328],[-0.074844434857368,-0.02419619075954,0.065700575709343],[-0.013201527297497,0.082751952111721,0.057750731706619]],[[-0.047832507640123,-0.045839373022318,0.0051793619059026],[-0.02342039719224,0.043517325073481,-0.079236589372158],[-0.017302338033915,-0.022997284308076,0.010271986946464]],[[-0.015564186498523,-0.0021929314825684,-0.023980401456356],[-0.028003860265017,0.0048068147152662,-0.00083000812446699],[0.014968113973737,0.023605113849044,-0.049948737025261]],[[-0.0009438288398087,0.062304459512234,-0.023025555536151],[0.064504392445087,-0.050310652703047,-0.03107912838459],[-0.046417593955994,0.024467637762427,-0.027229653671384]],[[0.022042138502002,-0.04202900454402,-0.079526737332344],[0.015833705663681,-0.027653304859996,-0.00099719176068902],[-0.021593391895294,0.067620255053043,0.039177928119898]],[[-0.0052849701605737,-0.063892640173435,-0.05948605760932],[-0.024703348055482,-0.054865535348654,-0.006350941490382],[-0.036206156015396,0.11462447047234,0.0066481376998127]],[[-0.039542730897665,0.028222154825926,-0.033346146345139],[-0.013937733136117,0.031901393085718,0.036837682127953],[0.032605648040771,-0.014964651316404,0.0059127495624125]],[[0.058119289577007,-0.017828403040767,0.017429394647479],[-0.04283083230257,0.05905582383275,0.036537159234285],[-0.023851854726672,-0.030642325058579,-0.038118492811918]],[[-0.029953770339489,-0.027981046587229,-0.021151941269636],[-0.035300046205521,-0.090107940137386,0.0037097816821188],[-0.050207626074553,-0.043611027300358,0.10518688708544]],[[-0.090125910937786,0.017948279157281,-0.039991166442633],[-0.070473194122314,-0.0082945628091693,-0.10100083053112],[0.0021528736688197,0.032478086650372,0.083722211420536]],[[-0.048517618328333,-0.076477281749249,-0.03294513002038],[-5.1871327741537e-05,-0.079067409038544,-0.014066024683416],[-0.013660646043718,-0.041042305529118,-0.021521288901567]],[[-0.17223870754242,-0.061637885868549,0.024550937116146],[-0.053766686469316,-0.13094887137413,-0.024210615083575],[0.027469970285892,-0.044504716992378,-0.065374299883842]],[[-0.0059497281908989,0.038877617567778,-0.026101000607014],[-0.014681110158563,0.059954576194286,-0.06165274605155],[0.019681246951222,-0.058349676430225,0.00067281525116414]],[[0.076432555913925,-0.14551922678947,0.0046119340695441],[-0.013114516623318,0.04330712929368,-0.0095843113958836],[0.0071062175557017,-0.025624761357903,0.0068387822248042]],[[-0.057834956794977,0.0029867656994611,0.080483198165894],[0.0014488700544462,-0.026906684041023,-0.0069723799824715],[-0.048384316265583,0.023768844082952,-0.043756756931543]],[[0.026743490248919,0.026639143005013,0.046497520059347],[-0.11239414662123,0.026679936796427,-0.063194125890732],[0.067125484347343,-0.046993274241686,0.012297680601478]],[[0.0096388850361109,-0.020704761147499,0.099636554718018],[-0.044237494468689,0.0053701791912317,-0.042621646076441],[-0.1346793025732,-0.0053014261648059,-0.027002580463886]],[[0.08674018830061,0.019407102838159,-0.046413466334343],[0.049990873783827,0.01754105836153,-0.015868380665779],[0.023048594594002,0.090069070458412,-0.034803424030542]],[[-0.085943482816219,-0.1114684715867,-0.053809359669685],[-0.068216912448406,0.030623201280832,-0.019945891574025],[-0.088806763291359,-0.010140711441636,0.0074521098285913]],[[-0.090789988636971,0.0076173949055374,-0.082738757133484],[-0.028859360143542,-0.03988117352128,-0.053883649408817],[-0.027446499094367,0.034467034041882,-0.032205849885941]],[[-0.044458087533712,-0.072592087090015,-0.05363967269659],[-0.10994459688663,-0.043293859809637,-0.025689993053675],[0.010771310888231,0.045795068144798,0.020775487646461]],[[0.011119171977043,-0.038561604917049,-0.023504644632339],[-0.037381358444691,-0.014165345579386,-0.023671552538872],[0.021937560290098,-0.0066016628406942,0.039753247052431]],[[0.0049243080429733,0.036343216896057,0.014536360278726],[0.017070142552257,0.040480978786945,0.040608417242765],[-0.11865072697401,-0.09990668296814,-0.030570974573493]],[[0.011209460906684,0.0033386598806828,-0.011436141096056],[-0.030530791729689,-0.11023084074259,0.027176471427083],[0.021196398884058,-0.0063702901825309,-0.0083732390776277]],[[0.084201119840145,-0.029459495097399,-0.0097565064206719],[0.0043860417790711,-0.038525938987732,-0.0021471937652677],[0.014869218692183,0.063475728034973,-0.0081712258979678]],[[0.043370328843594,-0.081110671162605,-0.023227278143167],[-0.0088576944544911,-0.0088117644190788,-0.079196505248547],[0.068983502686024,0.0033345075789839,-0.044690120965242]],[[0.022323386743665,-0.010805011726916,-0.055790118873119],[0.053250569850206,0.0029135327786207,0.00789725035429],[-0.014286807738245,-0.027501005679369,0.0050226380117238]],[[-0.033914845436811,0.028255203738809,0.013480542227626],[0.007765538059175,-0.029164189472795,-0.013365195132792],[-0.1261188685894,0.004785590339452,-0.0013392640976235]],[[-0.019730100408196,-0.038010913878679,0.0050396099686623],[0.030274273827672,-0.010482177138329,-0.052175238728523],[0.035982016474009,0.0072858133353293,-0.005673713516444]],[[0.041547626256943,-0.099195472896099,-0.020125420764089],[-0.016122395172715,-0.024713141843677,0.013405559584498],[-0.080194890499115,-0.071544855833054,-0.084785334765911]],[[0.0016697086393833,0.020343272015452,0.049231383949518],[-0.06984057277441,-0.012779499404132,-0.062413211911917],[-0.039995484054089,0.027163110673428,-0.11351396143436]],[[-0.026903837919235,-0.0013954794267192,-0.034333676099777],[-0.017037240788341,0.0030198313761503,0.060543108731508],[-0.011476369574666,-0.0012446463806555,-0.015421693213284]],[[-0.029306704178452,-0.021787289530039,-0.036079443991184],[-0.053391180932522,-0.050426077097654,-0.033844139426947],[-0.04522954672575,-0.10012210905552,0.037511736154556]],[[-0.018035294488072,-0.023474907502532,0.0076582347974181],[-0.028521066531539,0.060251504182816,0.0017750698607415],[-0.05883676931262,0.089711412787437,-0.014274848625064]],[[0.020460488274693,-0.04862492904067,-0.059056051075459],[0.0049611744470894,-0.043264012783766,-0.075477927923203],[-0.0087000876665115,0.047921601682901,0.031238270923495]],[[0.0079726008698344,0.045938856899738,-0.027629155665636],[-0.05619940534234,-0.066629268229008,0.00045402243267745],[0.071868702769279,0.045342650264502,-0.015563090331852]],[[0.014122090302408,-0.080309234559536,-0.002680042758584],[-0.074793681502342,-0.041341438889503,-0.03518957644701],[0.032229375094175,-0.0012517891591415,-0.025465434417129]],[[-0.031015511602163,-0.088035486638546,-0.066455096006393],[-0.059660386294127,-0.016817539930344,-0.044405702501535],[-0.069425448775291,-0.089143075048923,0.0065372497774661]],[[0.10009910166264,0.063615992665291,0.030615409836173],[-0.015834156423807,0.02210495620966,0.016079992055893],[0.065530888736248,0.064890302717686,0.13495717942715]],[[0.052084386348724,0.06223526224494,0.0810951218009],[0.05599170923233,0.011359316296875,0.063630953431129],[-0.053519707173109,-0.0015851963544264,0.021678855642676]],[[-0.070243023335934,0.0088723674416542,0.0040815561078489],[-0.054083600640297,0.050434105098248,-0.024284215644002],[-0.0018667726544663,0.067146740853786,-0.0024395294021815]],[[0.045036599040031,0.061623554676771,0.032544746994972],[-0.048315841704607,0.051714796572924,-0.03041810542345],[-0.0015269313007593,0.0027922866865993,-0.010381346568465]],[[-0.040250029414892,-0.048976011574268,0.010956704616547],[0.012502891011536,-0.0043698293156922,-0.033713847398758],[-0.0044459500350058,0.058609496802092,-0.01353982463479]],[[0.029130861163139,-0.072844535112381,-0.07339896261692],[-0.011933577246964,-0.0053781741298735,-0.08040901273489],[-0.02064448222518,0.051303017884493,-0.003765249857679]],[[-0.055870287120342,-0.026493396610022,-0.042372606694698],[-0.0077692554332316,0.0075437715277076,0.032044392079115],[0.055989004671574,0.034599479287863,0.062035903334618]],[[0.018142255023122,-0.080377377569675,-0.10969993472099],[-0.0092776929959655,-0.018472721800208,-0.034982666373253],[-0.0099519528448582,0.083793349564075,0.032576929777861]],[[-0.068753831088543,0.043536964803934,-0.021976875141263],[0.0011101381387562,-0.054884411394596,-0.0052276654168963],[0.0008064866415225,0.080491289496422,-0.023497538641095]],[[-0.0065848836675286,-0.028707806020975,-0.073622547090054],[-0.016213625669479,-0.0079085566103458,0.075286656618118],[-0.025558013468981,0.0049794954247773,-0.098246105015278]],[[-0.044617250561714,-0.033948440104723,0.065006755292416],[-0.014010763727129,-0.014236753806472,0.058733403682709],[-0.015076679177582,-0.01818984374404,0.010140581987798]]],[[[0.0056674461811781,-0.075734980404377,0.056630071252584],[0.0094745848327875,0.0038343612104654,0.07140576094389],[-0.046673305332661,-0.029376626014709,-0.0025923189241439]],[[0.0069626271724701,-0.10547488182783,-0.03181142359972],[-0.0029894197359681,0.0044199633412063,0.01998470723629],[0.064463257789612,0.026104919612408,-0.020039038732648]],[[-0.017286775633693,0.0097170481458306,-0.076178900897503],[0.0069745942018926,-0.033800907433033,0.058733947575092],[0.012025954201818,0.019688988104463,-0.0051946332678199]],[[-0.062442291527987,0.019524306058884,0.019026473164558],[0.02484386600554,-0.15313011407852,0.020630147308111],[-0.067297793924809,0.050005078315735,-0.028152611106634]],[[-0.14524215459824,-0.061431583017111,-0.007136425934732],[-0.0048871864564717,-0.0025527181569487,-0.0076479190029204],[0.016034645959735,-0.0020770209375769,0.066441401839256]],[[-0.15603648126125,-0.056648228317499,-0.039570715278387],[-0.076609700918198,-0.11144181340933,-0.037978142499924],[-0.030831910669804,0.0252316724509,0.084011599421501]],[[-0.029793223366141,-0.061032000929117,-0.0054879733361304],[0.0092823132872581,-0.027613239362836,0.0086211049929261],[0.057648904621601,0.052509151399136,0.015740774571896]],[[0.038954429328442,0.049315955489874,-0.02246280759573],[0.043632481247187,0.056562446057796,0.025641873478889],[-0.0053671230562031,0.042292971163988,0.035437688231468]],[[0.0069903428666294,0.066151604056358,0.020092414692044],[-0.0078210467472672,-0.0005532240611501,0.010835504159331],[-0.066934533417225,0.023190230131149,-0.0094575230032206]],[[-0.0088599510490894,0.02025162987411,0.012171782553196],[-0.040624085813761,-0.022994201630354,-0.029005357995629],[0.0041100243106484,-0.042718138545752,0.029795568436384]],[[0.09750635176897,-0.017993550747633,0.062114499509335],[0.013030688278377,-0.029496563598514,-0.013702259398997],[-0.1357676833868,-0.14100493490696,0.034900173544884]],[[-0.011957485228777,-0.0015558867016807,0.015153149142861],[0.049915805459023,0.073285117745399,-0.047647386789322],[0.027181211858988,0.017147943377495,-0.044379107654095]],[[-0.055401559919119,-0.065292075276375,-0.011850785464048],[-0.010945606976748,0.032397162169218,-0.086181811988354],[0.0069748787209392,0.0041011953726411,-0.035723347216845]],[[0.042203523218632,0.015979958698153,0.026519615203142],[0.0046359812840819,0.020297231152654,-0.0037415975239128],[0.039464142173529,-0.025157302618027,-0.081091269850731]],[[-0.014590651728213,0.080248676240444,0.018448308110237],[-0.066183157265186,-0.022611508145928,0.034426309168339],[-0.058721501380205,-0.065106645226479,0.024985847994685]],[[-0.014886351302266,-0.10826364159584,-0.039508521556854],[-0.053664449602365,0.032349277287722,0.052474826574326],[0.0093355979770422,0.062424540519714,0.10457791388035]],[[0.042461033910513,-0.12829424440861,-0.097155205905437],[0.11255361884832,-0.023642506450415,0.067887790501118],[0.042661685496569,0.096749924123287,0.086421132087708]],[[-0.016542809084058,-0.042248908430338,-0.0084120919927955],[0.020704129710793,0.0065544950775802,0.010110978968441],[0.032415468245745,0.099212720990181,-0.016651658341289]],[[0.010672383010387,0.079054899513721,-0.14167028665543],[-0.026124894618988,-0.077275291085243,0.018115354701877],[0.014728391543031,0.0087439687922597,0.00035280719748698]],[[0.025034811347723,-0.01991661824286,0.040649369359016],[0.022531384602189,-0.00066394958412275,0.016238857060671],[0.076239071786404,0.039884950965643,0.034408450126648]],[[0.031476464122534,0.018186304718256,0.04570122808218],[-0.039290614426136,0.0029189754277468,0.070298172533512],[0.09782949090004,-0.093634389340878,-0.077592223882675]],[[0.032161176204681,-0.080136582255363,0.020580882206559],[-0.0048172539100051,-0.016006899997592,-0.058712720870972],[0.027716772630811,-0.060134790837765,0.012217888608575]],[[-0.037183042615652,-0.036118917167187,-0.0057742381468415],[0.016561085358262,-0.015325375832617,-0.014387879520655],[0.02024807408452,0.063928052783012,0.023987300693989]],[[-0.051903698593378,-0.056453574448824,-0.038713771849871],[0.0046732593327761,0.046971414238214,-0.060246609151363],[-0.013048466295004,-0.014185036532581,0.029616745188832]],[[0.026113677769899,0.025403799489141,0.062348499894142],[0.0026800713967532,-0.051587220281363,0.061130426824093],[0.041559606790543,-0.00098753208294511,0.047297716140747]],[[0.022606134414673,-0.024937970563769,-0.005337749607861],[0.01141972001642,-0.059111170470715,-0.034462861716747],[0.010854103602469,-0.074753813445568,-0.03389685973525]],[[-0.051865335553885,-0.02596733905375,-0.0608278401196],[0.004727522842586,0.026234431192279,0.02229274250567],[0.04796177521348,-0.063718758523464,-0.0024863418657333]],[[-0.0087392656132579,-0.029922258108854,0.1435089558363],[-0.027812058106065,0.0012368566822261,-0.02618127129972],[-0.11645969748497,-0.041587010025978,0.017963087186217]],[[-0.022170823067427,0.050582598894835,0.057379629462957],[-0.048303317278624,0.02945027500391,-0.009538215585053],[-0.052496317774057,-0.067398227751255,-0.018026361241937]],[[-0.011991987936199,-0.017478581517935,-0.091385737061501],[0.029777439311147,-0.0037622579839081,0.052621450275183],[0.023896967992187,-0.009310276247561,-0.0078149093315005]],[[0.030704965814948,0.024613548070192,-0.047434478998184],[-0.081334315240383,-0.055100504308939,0.094611547887325],[-0.02031839825213,-0.028512429445982,-0.0099237924441695]],[[-0.05531944334507,-0.061399079859257,-3.8920759834582e-05],[-0.10152466595173,0.013924283906817,-0.020592749118805],[0.038438484072685,-0.064018741250038,-0.0099677667021751]],[[-0.0099142827093601,-0.008217116817832,0.074449472129345],[0.022429732605815,-0.060537923127413,-0.013234972022474],[-0.062094889581203,-0.013186636380851,-0.021151093766093]],[[-0.026306383311749,-0.073688521981239,-0.082670733332634],[0.03536619246006,0.027416568249464,-0.087186425924301],[-0.028152633458376,0.013197626918554,-0.018313920125365]],[[-0.035630609840155,-0.073376514017582,-0.058598708361387],[0.11319050192833,0.07271221280098,0.087548553943634],[0.090837523341179,0.09191569685936,0.090979978442192]],[[-0.087549582123756,-0.0046426504850388,0.084639817476273],[-0.021834464743733,-0.13015106320381,-0.010639505460858],[-0.025058219209313,-0.010405663400888,-0.10150997340679]],[[0.016190404072404,0.0053828088566661,0.061932824552059],[-0.03278624266386,0.040639188140631,0.058842424303293],[-0.033262673765421,0.03223779425025,0.013375760987401]],[[0.022798739373684,-0.088306158781052,0.043255090713501],[0.010504066944122,0.028026968240738,0.072784245014191],[-0.011687983758748,-0.0098190139979124,0.081668220460415]],[[-0.050645887851715,-0.13626833260059,-0.032316341996193],[0.029091846197844,-0.02228163741529,0.0022825251799077],[0.031960044056177,0.053777571767569,0.013899187557399]],[[-0.13628087937832,0.10687705129385,0.091058917343616],[0.02370254509151,-0.076766192913055,0.02066009119153],[-0.022132927551866,-0.021796843037009,-0.058577042073011]],[[-0.094666250050068,-0.082197301089764,0.034756943583488],[0.003132727695629,-0.067644700407982,-0.065698593854904],[0.038075964897871,-0.045870203524828,0.05760982632637]],[[0.022291418164968,-0.00051893299678341,0.02022410929203],[-0.036448758095503,-0.030217902734876,0.029703393578529],[0.0084720281884074,-0.012383362278342,0.088181093335152]],[[-0.020366793498397,0.0011976924724877,0.051308404654264],[0.036518391221762,0.10897848010063,-0.07599662989378],[-0.019186194986105,-0.0003132700221613,0.08895767480135]],[[-0.0010750729124993,0.057639975100756,0.030773561447859],[-0.010222462937236,-0.094835877418518,-0.077980510890484],[-0.028921656310558,0.0029586397577077,-0.082823425531387]],[[-0.031592648476362,-0.00062245619483292,0.027427077293396],[-0.037999428808689,0.037316102534533,0.034596625715494],[-0.06765254586935,0.0062654376961291,-0.016033127903938]],[[-0.0095976507291198,0.070572547614574,-0.01318998914212],[-0.037004571408033,-0.0080536976456642,-0.045858778059483],[-0.0344243273139,-0.023851849138737,-0.080790877342224]],[[-0.10443059355021,-0.025730630382895,-0.071640245616436],[-0.07507648319006,-0.08787053078413,0.052746325731277],[0.024602703750134,0.036038275808096,0.065087556838989]],[[0.021883981302381,0.1170911565423,-0.011333854869008],[0.057979431003332,0.061103515326977,-0.018879977986217],[0.026360683143139,0.03647068887949,-0.031024072319269]],[[0.024499729275703,0.012532922439277,0.00823490973562],[0.011840847320855,0.011884242296219,-0.018720127642155],[0.014666155911982,-0.1120445728302,0.014231398701668]],[[0.048671659082174,0.031852651387453,-0.011035959236324],[-0.0051746745593846,-0.084892332553864,-0.0061851902864873],[-0.021403664723039,-0.01338279619813,-0.064948752522469]],[[-0.0055661755613983,-0.0095463311299682,-0.020886439830065],[0.048415258526802,0.0012437369441614,0.037512466311455],[-0.055643003433943,0.039247125387192,-0.023991687223315]],[[0.028381759300828,-0.00048980966676027,-0.0061338189989328],[0.025322312489152,0.021722853183746,-0.0085269622504711],[-0.026432756334543,-0.1007212549448,-0.044461708515882]],[[-0.049146700650454,-0.034682851284742,0.029345756396651],[-0.0037926102522761,0.034715555608273,0.030011855065823],[0.17342396080494,0.0490732640028,0.050456967204809]],[[-0.0097383875399828,-0.0069182151928544,0.087135285139084],[-0.022806664928794,0.10511577129364,0.072879321873188],[-0.038594953715801,0.050258856266737,9.2986643721815e-05]],[[-0.057057395577431,-0.022594934329391,0.048076849430799],[0.016442805528641,0.031172780320048,0.0026076955255121],[-0.082542814314365,-0.053089160472155,-0.00065715715754777]],[[-0.0049726823344827,-0.10388021916151,0.037571262568235],[0.042006254196167,0.053431730717421,0.061953093856573],[0.071914337575436,0.021945487707853,0.061578694730997]],[[-0.069172099232674,0.015397474169731,0.0040569053962827],[0.017893671989441,-0.00046682491665706,0.036800026893616],[0.034122124314308,0.018497481942177,-0.052130237221718]],[[-0.038812939077616,0.0085703432559967,-0.037945054471493],[-0.035912897437811,-0.028147703036666,-0.049763880670071],[-0.016628636047244,-0.084007531404495,-0.065531335771084]],[[0.054623883217573,0.060772225260735,-0.06456333398819],[-0.12404562532902,-0.090913884341717,0.047533024102449],[0.039960917085409,0.068020455539227,0.05085402354598]],[[0.032958060503006,0.050102103501558,0.0044990270398557],[0.021728901192546,0.029164459556341,0.020086236298084],[-0.031574510037899,-0.016153125092387,-0.023116465657949]],[[0.05337331444025,0.00062801514286548,-0.041550856083632],[-0.021032908931375,0.043747343122959,0.06877639144659],[0.061885870993137,0.032353639602661,0.031033987179399]],[[0.018167525529861,-0.098421789705753,0.004080327693373],[0.018841426819563,-0.040943518280983,-0.10538823902607],[0.070403099060059,0.025319971144199,-0.011828110553324]],[[-0.056415338069201,0.070341564714909,0.071647450327873],[-0.060804713517427,-0.00599952833727,0.0068086949177086],[-0.038749136030674,-0.079025872051716,-0.002451830310747]],[[-0.062033511698246,0.048585347831249,-0.046506691724062],[-0.016100620850921,0.056577011942863,-0.020539343357086],[-0.036116816103458,0.067550502717495,0.11636329442263]]],[[[-0.13882194459438,-0.022912837564945,0.026422191411257],[-0.021241324022412,-0.017037929967046,-0.0054919891990721],[-0.0095412973314524,0.037259843200445,-0.013353845104575]],[[-0.019294749945402,-0.0040423753671348,-0.018770964816213],[-0.027817947790027,-0.033123221248388,0.0080791851505637],[0.053250819444656,-0.020598109811544,-0.10150197893381]],[[0.047251082956791,0.04289585724473,-0.0038925018161535],[0.005146770272404,0.0069243498146534,-0.020326048135757],[0.0027386266738176,-0.0016468517715111,0.026135334745049]],[[-0.042985491454601,0.013481481000781,-0.016792383044958],[0.011599406599998,-0.042067494243383,-0.044552069157362],[-0.064010769128799,-0.09230101108551,0.039986480027437]],[[-0.014069859869778,0.052356373518705,-0.047027722001076],[0.057458497583866,-0.047142248600721,-0.020956801250577],[0.013382795266807,0.04086908698082,0.047176696360111]],[[-0.056963063776493,0.042393047362566,-0.085890546441078],[-0.034332178533077,-0.07202959805727,-0.033090632408857],[-0.025957368314266,-0.071007005870342,0.013293808326125]],[[0.032124597579241,0.040962155908346,-0.0070908330380917],[-0.0072834775783122,-0.028925053775311,-0.00024360077804886],[0.05575830489397,0.0089074103161693,-0.0052140355110168]],[[-0.027795216068625,-0.058224190026522,-0.020714500918984],[-0.074151165783405,-0.076293043792248,-0.056310974061489],[-0.029294254258275,-0.06811435520649,-0.0027032548096031]],[[-0.033353012055159,-0.0057539544068277,0.031414296478033],[-0.016612574458122,-0.00028036546427757,-0.035976316779852],[0.038702093064785,0.022484270855784,-0.031602140516043]],[[-0.041738145053387,-0.014271326363087,0.042589247226715],[-0.049266025424004,0.061189241707325,0.056380659341812],[-0.029339937493205,0.035860054194927,0.061560969799757]],[[0.010160378180444,0.09945172816515,0.089558728039265],[0.041814934462309,-0.10873005539179,-0.014946348033845],[0.026360020041466,0.098852187395096,-0.13119466602802]],[[0.092040956020355,0.09182246774435,0.014278288930655],[0.08232818543911,-0.0041943392716348,0.067961364984512],[-0.01764427870512,0.029055388644338,0.045883093029261]],[[-0.012670741416514,-0.046580974012613,-0.015592790208757],[0.090288661420345,0.075392656028271,-0.051593672484159],[-0.00047426775563508,-0.057877335697412,0.0024408379103988]],[[-0.032963618636131,-0.0077780694700778,-0.0008833670290187],[0.1012092679739,0.00085744186071679,0.033332206308842],[0.0076517350971699,0.0040412857197225,0.01827447116375]],[[-0.047524854540825,0.029230959713459,-0.052843414247036],[-0.015714781358838,0.014460137113929,0.046742223203182],[0.04873800650239,-0.010986315086484,0.098199531435966]],[[-0.090079382061958,0.014324394986033,-0.043501008301973],[-0.048416949808598,0.011437107808888,0.038838978856802],[0.017965937033296,0.034393813461065,0.03977919369936]],[[0.040081534534693,-0.0057165678590536,0.051106065511703],[0.067763268947601,0.018945943564177,-0.025065898895264],[-0.013715878129005,0.065201297402382,-0.059261038899422]],[[0.017316835001111,-0.033603824675083,-0.0011240635067225],[0.020031083375216,-0.0096485018730164,-0.018006611615419],[0.052229952067137,0.041279155761003,-0.027947181835771]],[[-0.031754586845636,0.023468712344766,-0.056344464421272],[-0.015561182051897,0.018230451270938,0.044943630695343],[-0.092343106865883,0.01624071598053,-0.038079183548689]],[[-0.048238258808851,0.027729855850339,-0.023556178435683],[-0.037519793957472,0.011987812817097,0.018374131992459],[-0.0034895895514637,-0.023024177178741,-0.036866005510092]],[[0.063443705439568,0.027725603431463,0.083416491746902],[-0.021089058369398,-0.03601785376668,0.0126145305112],[0.051419142633677,0.072223037481308,-0.029607204720378]],[[-0.032788410782814,0.0067892055958509,0.12507551908493],[0.013118500821292,0.015790885314345,-0.051746774464846],[0.091787226498127,-0.0029952907934785,-0.11860159784555]],[[-0.028296303004026,-0.01253254711628,-0.0085462052375078],[-0.024638541042805,0.028470575809479,0.038129489868879],[0.048130221664906,-0.036946728825569,0.010608121752739]],[[-0.0083233267068863,-0.060979627072811,0.11359883844852],[-0.02657382376492,-0.015033422037959,0.073669597506523],[-0.03594708070159,-0.019273409619927,0.036399900913239]],[[0.100521042943,0.059327304363251,0.063886344432831],[0.012725739739835,0.034898400306702,-0.059367749840021],[0.024756759405136,0.059819206595421,-0.016216089949012]],[[-0.0021502336021513,0.040901973843575,-0.032779190689325],[-0.044158272445202,-0.035415261983871,0.034879799932241],[0.020971622318029,-0.0045904507860541,-0.056108810007572]],[[0.046544089913368,-0.012118156068027,0.073879308998585],[0.091399326920509,0.030466984957457,-0.028215780854225],[-0.017439689487219,-0.0046832519583404,0.011089293286204]],[[-0.070665679872036,-0.0066467779688537,0.015477661043406],[0.022735485807061,0.03206705302,0.065990954637527],[0.038540057837963,0.053493198007345,0.037470418959856]],[[-0.045886322855949,0.033224172890186,-0.0045131766237319],[-0.02629535086453,-0.045005157589912,0.06203443557024],[0.071306087076664,-0.079863809049129,-0.032173000276089]],[[0.048780757933855,0.031354688107967,-0.0045676366426051],[-0.080086059868336,0.0076067522168159,-0.095010176301003],[-0.059257794171572,0.085787564516068,-0.03382720798254]],[[-0.021674672141671,0.064350612461567,-0.046729512512684],[-0.011950582265854,-0.005014767870307,-0.012068180367351],[-0.042164251208305,-0.061320710927248,0.067255601286888]],[[-0.036019094288349,0.010830748826265,0.02691663429141],[-0.11718010157347,-0.014370799064636,-0.00018398248357698],[0.042037330567837,0.019158573821187,-0.057806681841612]],[[-0.0081249391660094,-0.10001880675554,-0.040860705077648],[0.01879115216434,-0.0038051614537835,-0.0041804304346442],[-0.072107277810574,0.010673469863832,0.0063305674120784]],[[-0.0032005498651415,-0.020161259919405,-0.031158979982138],[-0.13087052106857,0.049289532005787,0.13538846373558],[-0.048589237034321,-0.02396041341126,-0.0047565186396241]],[[0.048156786710024,-0.04734667763114,-0.0091913724318147],[0.05565956607461,0.051615759730339,0.022466711699963],[0.068876825273037,-0.041884232312441,0.023329677060246]],[[-0.042586166411638,0.1109307706356,-0.031093221157789],[-0.14201743900776,0.033916387706995,0.0020079498644918],[-0.074067249894142,-0.091187663376331,-0.011027599684894]],[[0.03750916197896,-0.0071215452626348,0.095353879034519],[-0.017573032528162,0.002791210077703,-0.025710536167026],[0.040776949375868,0.056976661086082,0.09715711325407]],[[0.07080153375864,-0.090941786766052,0.0083320997655392],[0.023524325340986,-0.0013876269804314,0.046131692826748],[-0.056007519364357,-0.034455593675375,-0.053254947066307]],[[0.091239050030708,-0.075801908969879,-0.00030592561233789],[0.051923263818026,0.030415043234825,-0.029005503281951],[0.022989269345999,0.047766342759132,-0.026307260617614]],[[-0.01064845174551,-0.038074843585491,0.035389520227909],[0.073335364460945,0.085318118333817,-0.066647127270699],[-0.081197187304497,0.006011888384819,0.065082892775536]],[[0.062033761292696,0.079603597521782,-0.078165628015995],[-0.0017789006233215,-0.073681995272636,0.10867697745562],[-0.018466804176569,0.070634379982948,0.00049338227836415]],[[0.021652799099684,-0.06864932179451,0.013266919180751],[-0.026962323114276,-0.029273642227054,-0.090005993843079],[0.034460097551346,0.051241185516119,-0.025016408413649]],[[0.012207644060254,-0.00092111324192956,-0.013911257497966],[-0.0051678619347513,-0.045719310641289,0.034668210893869],[0.0049903048202395,0.065259329974651,0.072275601327419]],[[0.037596575915813,0.085049174726009,0.13956931233406],[-0.016647070646286,-0.069242171943188,-0.059381637722254],[0.06337071955204,-0.036227583885193,-0.088255740702152]],[[-0.036571476608515,-0.047697346657515,0.0015886758919805],[0.036098893731833,0.047184620052576,0.046323832124472],[0.053429398685694,0.024009793996811,0.041060507297516]],[[0.037525054067373,0.038688722997904,0.047397099435329],[0.023889532312751,-0.02780600450933,-0.011382647790015],[0.049598027020693,-0.016945760697126,0.017916949465871]],[[0.039150599390268,-0.031764145940542,-0.065121836960316],[0.0011608781060204,0.011934143491089,-0.01355039421469],[0.05637800693512,0.068376481533051,0.10628741979599]],[[-0.055704690515995,-0.05152391269803,0.068537853658199],[0.018534382805228,0.018164461478591,-0.051952239125967],[-0.016338365152478,0.034001022577286,-0.017268063500524]],[[0.062995940446854,0.14307914674282,0.010925941169262],[0.043707299977541,-0.0038251348305494,0.025905344635248],[-0.077349208295345,0.073235176503658,0.017657162621617]],[[-0.0062165139243007,0.021177383139729,0.058771014213562],[0.024281729012728,-0.045804675668478,0.044896252453327],[-0.00078840652713552,0.043700411915779,0.10821335017681]],[[-0.045653935521841,0.040511202067137,-0.0043378402478993],[0.015923550352454,0.039459209889174,-0.068809002637863],[0.029788287356496,0.024731317535043,-0.010506581515074]],[[0.060029692947865,0.085875794291496,0.010920433327556],[-0.01665622740984,-0.008727471344173,0.097520306706429],[-0.089862897992134,0.027437143027782,-0.11310948431492]],[[0.034561347216368,-0.012514968402684,-0.058488562703133],[0.014740494079888,0.011053612455726,0.0081277722492814],[-0.053827613592148,-0.0084393601864576,0.0038592412602156]],[[-0.02348336391151,0.090766862034798,0.077827244997025],[0.024236347526312,-0.076582014560699,0.0049172583967447],[0.0022261734120548,0.014415471814573,0.095538653433323]],[[0.051787007600069,-0.063704878091812,-0.033271431922913],[0.036595668643713,-0.016438132151961,-0.063725583255291],[0.067628562450409,-0.011431478895247,0.062049448490143]],[[0.04843245446682,-0.0011442336253822,0.094726286828518],[-0.0079202950000763,-0.060028243809938,-0.031303972005844],[-0.036385718733072,0.027332421392202,-0.032877843827009]],[[-0.025997295975685,0.014323803596199,0.02737351693213],[0.0062790652737021,0.032280001789331,0.074116341769695],[-0.036103315651417,0.026716699823737,-0.031775467097759]],[[-0.0082551194354892,0.011123019270599,0.045899037271738],[-0.026333179324865,-0.045020028948784,-0.12747210264206],[-0.0093981176614761,0.010437949560583,-0.046267222613096]],[[0.0018652511062101,0.017704794183373,0.054724156856537],[-0.012772369198501,0.0078785307705402,0.021011905744672],[0.049538865685463,-0.090699315071106,0.023202616721392]],[[0.044652104377747,-0.010608094744384,0.041851129382849],[0.010400508530438,-0.0095846122130752,-0.040704682469368],[0.0023878156207502,0.0271125305444,-0.025373745709658]],[[0.12090358138084,0.047742418944836,0.025228062644601],[-0.04413902387023,0.16138716042042,-0.00084782124031335],[0.056174796074629,0.0075725954957306,-0.056818291544914]],[[-0.029109386727214,0.015884524211287,0.05768708512187],[0.048035524785519,0.0049988888204098,0.013842340558767],[0.071077771484852,0.02411812916398,0.014545287005603]],[[-0.010413222946227,0.027943652123213,0.039840318262577],[0.089018732309341,0.084693677723408,0.05430131778121],[-0.0077531817369163,0.014875905588269,0.03929103910923]],[[-0.031677648425102,-0.064825333654881,0.0079617351293564],[0.036940760910511,0.012683885172009,-0.067420922219753],[0.021725529804826,0.058480437844992,-0.046820621937513]]],[[[0.061843756586313,-0.025679763406515,-0.041976600885391],[-0.014734398573637,-0.045042905956507,0.028467448428273],[0.023983666673303,-0.03142150118947,0.04687774181366]],[[-0.077521897852421,-0.035186626017094,0.033666349947453],[0.013899299316108,0.045579008758068,-0.021889332681894],[-0.040810149163008,-0.016831504181027,0.0041774618439376]],[[0.030812617391348,-0.015944479033351,-0.016842057928443],[-0.025601817294955,-0.035155430436134,0.024170616641641],[-0.024322414770722,-0.011979961767793,0.0038780656177551]],[[0.017325405031443,-0.0067370012402534,0.0011577273253351],[-0.018096318468451,0.088576607406139,-0.0043350518681109],[0.047492709010839,0.024762917309999,-0.037047691643238]],[[0.026996746659279,0.019711162894964,-0.014533746056259],[-0.037274494767189,-0.010330811142921,-0.027743753045797],[0.00078463711543009,-0.060344472527504,-0.021527135744691]],[[-0.016601888462901,0.053914126008749,-0.072465613484383],[0.034255210310221,-0.01853378303349,-0.070810623466969],[-0.064076907932758,0.039300970733166,-0.020318709313869]],[[-0.010346127673984,-0.032507181167603,-0.0072191446088254],[-0.050751492381096,0.036660891026258,-0.016980355605483],[-0.0036702293436974,-0.014073980972171,-0.0090890740975738]],[[-0.076885722577572,-0.075274236500263,-0.060858353972435],[-0.10339057445526,-0.01484071649611,-0.019276294857264],[-0.050290048122406,-0.03695660457015,0.040163051337004]],[[-0.043247487396002,-0.014743308536708,0.020838992670178],[0.017343258485198,-0.013762356713414,-0.020848764106631],[-0.05260867998004,-0.0014017460634932,-0.016953770071268]],[[0.051560662686825,-0.017343817278743,-0.053145501762629],[-0.0073363399133086,-0.049401119351387,-0.017925757914782],[-0.017715429887176,-0.049280595034361,-0.030778408050537]],[[0.0038653819356114,0.012711810879409,-0.038945931941271],[-0.033399406820536,-0.068508081138134,-0.054572992026806],[-0.041589379310608,-0.0016365246847272,0.027005180716515]],[[0.08346051722765,-0.014775326475501,0.039622630923986],[-0.03846251219511,0.021408565342426,-0.063451640307903],[-0.070657879114151,-0.050871904939413,0.0038055740296841]],[[0.017636049538851,0.011203685775399,-0.043565198779106],[-0.010287743993104,0.050911143422127,0.014904007315636],[-0.03732081875205,0.0080273766070604,-0.10127473622561]],[[-0.056815676391125,-0.037524480372667,-0.031515698879957],[0.014586140401661,0.027684854343534,0.10590992122889],[-0.0035351468250155,0.04794243350625,0.09035724401474]],[[-0.029189607128501,0.054648529738188,0.023060774430633],[-0.12581157684326,0.031273558735847,-0.057564735412598],[-0.0019570023287088,-0.0018764480482787,-0.04939104989171]],[[-0.027942908927798,0.053158070892096,0.04849112406373],[-0.091208845376968,0.10598075389862,-0.049281798303127],[-0.015742160379887,0.091548964381218,0.011320102959871]],[[0.029367728158832,0.035887371748686,0.0037870791275054],[0.012304553762078,-0.041576381772757,-0.032747067511082],[0.062216456979513,0.011979445815086,0.0085251051932573]],[[0.0024376132059842,0.0048728208057582,-0.031451884657145],[-0.0084194308146834,0.0076937070116401,-0.011855736374855],[-0.031192503869534,0.001921534538269,0.061801005154848]],[[-0.021587653085589,-0.013908639550209,-0.029506227001548],[-0.092497229576111,0.02789843827486,-0.082003533840179],[0.065979577600956,-0.029596338048577,-0.039076738059521]],[[-0.033263377845287,-0.018004780635238,-0.031019799411297],[-0.0020498889498413,-0.046784412115812,-0.008247665129602],[-0.0079630073159933,0.040032606571913,0.037821553647518]],[[-0.027593817561865,-0.14354892075062,0.055913154035807],[-0.020679660141468,-0.015216835774481,0.017992485314608],[0.014559396542609,-0.068927012383938,-0.047301653772593]],[[0.026880761608481,0.0098844058811665,-0.013722914271057],[0.064284861087799,-0.031549334526062,0.054979428648949],[-0.075187765061855,0.021361725404859,-0.013180965557694]],[[0.002343748928979,-0.017077289521694,0.021370032802224],[-0.044674944132566,-0.0093367407098413,-5.9380796301411e-05],[0.0046092281118035,0.051197826862335,-0.0082049453631043]],[[-0.046495504677296,-0.047042034566402,-0.024555027484894],[-0.035725053399801,0.055647484958172,-0.0037045271601528],[-0.019247502088547,-0.020037248730659,0.014764082618058]],[[-0.056034859269857,0.028874896466732,0.019193226471543],[0.037354990839958,-0.074585184454918,-0.014006775803864],[-0.021478047594428,0.068255625665188,-0.036631636321545]],[[-0.037646263837814,-0.062341168522835,-0.029372585937381],[-0.0093330582603812,0.01019552256912,0.011968580074608],[-0.011104611679912,-0.08416585624218,-0.0094092842191458]],[[0.011014963500202,0.073720388114452,-0.00012517903815024],[-0.013465493917465,-0.016829023137689,0.017139201983809],[-0.022166250273585,-0.047692108899355,-0.014781742356718]],[[0.00058051710948348,-0.01984840258956,0.010636078193784],[-0.034110698848963,0.016839535906911,-0.005792451556772],[-0.08894470334053,-0.062181513756514,-0.031020063906908]],[[-0.054200738668442,0.019991802051663,-0.0032498377840966],[0.052832640707493,-0.0061790975742042,0.0031061626505107],[-0.079375185072422,0.014529710635543,-0.039069384336472]],[[0.079463355243206,-0.019957952201366,0.035425860434771],[0.093248903751373,-0.011519211344421,-0.021507415920496],[0.0087426137179136,0.02516988478601,-0.011849181726575]],[[-0.025695720687509,-0.038160130381584,-0.087598584592342],[0.034469712525606,0.0064871925860643,0.015574502758682],[0.047090515494347,0.032837070524693,-0.021107025444508]],[[0.022006195038557,-0.01195752248168,0.033778175711632],[-0.04801319539547,0.013913944363594,0.01503013074398],[-0.065025992691517,-0.04298035800457,0.032453130930662]],[[0.020484000444412,0.057997316122055,0.013514367863536],[0.0051592355594039,-0.060930088162422,-0.0043710479512811],[0.0069078067317605,0.018618490546942,-0.0094378534704447]],[[-0.011841123923659,-0.057320341467857,-0.022836586460471],[-0.023523814976215,-0.0039992458187044,-0.077227339148521],[-0.084106288850307,-0.025238672271371,-0.049591362476349]],[[-0.012897524051368,-0.021314201876521,-0.029840027913451],[0.0073041594587266,0.030919818207622,0.029353415593505],[0.01564765907824,1.0222761375189e-05,0.063512519001961]],[[0.016407024115324,-0.0088178366422653,-0.075468055903912],[0.045431211590767,-0.027355140075088,0.0068467385135591],[0.00082656653830782,0.029110338538885,-0.0055507039651275]],[[0.0024275579489768,0.026001838967204,-0.050428699702024],[-0.03013182990253,-0.019138449802995,-0.0023803415242583],[-0.015404020436108,0.010511024855077,-0.044293839484453]],[[-0.0014314816799015,-0.011317578144372,0.040517624467611],[-0.0056149130687118,0.0017621299484745,0.039579849690199],[-0.028724668547511,0.088628344237804,-0.027903024107218]],[[-0.064272202551365,-0.020970622077584,0.019538475200534],[-0.091933153569698,-0.084738656878471,-0.11788845062256],[0.016900837421417,0.021823313087225,-0.020953318104148]],[[0.030972709879279,0.03234888240695,0.025516556575894],[-0.019807334989309,-0.068667121231556,0.05981582030654],[-0.0070161279290915,0.0088058803230524,0.020803093910217]],[[-0.023053806275129,-0.026004049926996,0.017683710902929],[-0.045969482511282,-0.047907020896673,0.017747839912772],[-0.066003851592541,-0.015789559110999,0.036796063184738]],[[-0.013914301991463,-0.12141183763742,-0.072036653757095],[-0.021671948954463,-0.074773900210857,-0.0033233058638871],[0.0029012118466198,0.050107792019844,0.034439753741026]],[[-0.027845334261656,-0.086061343550682,0.045181561261415],[-0.055345438420773,-0.078756704926491,-0.008685814216733],[-0.03922063857317,-0.042547613382339,0.011493590660393]],[[0.012363386340439,0.038743540644646,-0.085520021617413],[-0.018101094290614,-0.027630802243948,0.0034821033477783],[-0.07775517553091,0.033623661845922,-0.046904511749744]],[[-0.053076770156622,0.12348893284798,-0.033351883292198],[-0.054278295487165,0.067369446158409,-0.044834658503532],[-0.037373963743448,0.015598129481077,-0.022582102566957]],[[0.024542763829231,-0.066667221486568,0.019225524738431],[-0.065607503056526,-0.031513605266809,0.088725902140141],[0.018970355391502,0.0039462600834668,0.02084450982511]],[[0.018918544054031,0.01639455370605,0.0091488864272833],[0.028104420751333,-0.021230345591903,-0.069239094853401],[0.052149895578623,0.064339242875576,-0.032841593027115]],[[-0.066266849637032,-0.063560202717781,0.003493107156828],[-0.055900324136019,-0.0061101992614567,-0.040131628513336],[-0.061692897230387,0.016352448612452,-0.0081933597102761]],[[0.013314126059413,-0.047713119536638,-0.026814932003617],[-0.058309759944677,0.091892994940281,-0.017953144386411],[-0.053785614669323,-0.0083775669336319,0.00242227059789]],[[0.091869100928307,0.002573522971943,0.064633391797543],[-0.0043287388980389,0.0044943555258214,-0.069325894117355],[-0.051255386322737,-0.05577664077282,-0.075227133929729]],[[0.024722747504711,0.014205255545676,-0.014178058132529],[0.05299248918891,0.0062901340425014,-0.011150796897709],[-0.016669068485498,-0.024275440722704,-0.020783288404346]],[[-0.065452575683594,0.0021114216651767,-0.0060530779883265],[0.029969446361065,-0.02970371209085,-0.016955638304353],[-0.0021741846576333,0.028206504881382,0.017677038908005]],[[0.023626329377294,-0.0094832703471184,0.011096567846835],[-0.043143928050995,-0.047494798898697,-0.061651885509491],[0.011430718004704,0.027106657624245,-0.00035565788857639]],[[0.060685377568007,-0.045865755528212,0.073602564632893],[-0.052181631326675,0.097310304641724,0.0080782808363438],[0.065253913402557,0.055541452020407,0.076126851141453]],[[0.01151411794126,0.049159456044436,0.023153392598033],[0.019096868112683,-0.044868960976601,-0.037198010832071],[-0.0041983644478023,-0.045166168361902,-0.060444563627243]],[[-0.034023232758045,-0.0025736819952726,0.004126189276576],[-0.02627906948328,0.015219992958009,0.0070154033601284],[-0.067732080817223,-0.053665228188038,0.035308126360178]],[[-0.02461832948029,-0.048505034297705,-0.022380011156201],[-0.057003173977137,-0.10729024559259,-0.05471695587039],[0.041622139513493,-0.064270257949829,0.020752815529704]],[[-0.027745505794883,-0.0010230035986751,-0.0060466630384326],[-0.0014384693931788,-0.031018247827888,-0.10388764739037],[-0.017309315502644,-0.015976943075657,-0.052639320492744]],[[-0.0075936010107398,-0.039822392165661,0.0079662594944239],[-0.042522881180048,-0.040564548224211,-0.0014617048436776],[-0.0068184239789844,0.037282474339008,0.0060638589784503]],[[0.0040801018476486,0.0090431356802583,-0.0026602628640831],[0.0029452661983669,0.041757099330425,-0.037396993488073],[0.028366750106215,-0.041815120726824,0.013030024245381]],[[-0.020471774041653,-0.0088417865335941,-0.022559372708201],[0.01828021556139,0.014941825531423,0.026829160749912],[0.020133709535003,0.023547142744064,-0.068904556334019]],[[-0.010488319210708,0.052582826465368,0.018487839028239],[-0.0019862628541887,-0.017080193385482,-0.0054899826645851],[-0.031123770400882,-0.021755022928119,0.011180606670678]],[[-0.095237031579018,0.024310633540154,-0.014010634273291],[-0.047462582588196,0.030221272259951,-0.031398572027683],[0.035444378852844,-0.10261055827141,-0.0062313829548657]],[[0.0059564891271293,0.027794683352113,0.011212669312954],[-0.043896745890379,-0.028726255521178,-0.075180999934673],[-0.01442714035511,-0.023684464395046,-0.10966394841671]]],[[[-0.0027930643409491,0.022566914558411,-0.039502583444118],[-0.046836990863085,-0.16089937090874,0.099750027060509],[-0.0017329825786874,0.041127502918243,-0.029891557991505]],[[0.051415555179119,-0.039457749575377,0.00091358821373433],[-0.0047967722639441,-0.056644760072231,-0.11304802447557],[0.0069880238734186,-0.054924294352531,-0.081008493900299]],[[0.074268959462643,-0.057336512953043,0.015106559731066],[-0.049959976226091,-0.075151421129704,0.042090967297554],[0.020038515329361,0.034605905413628,-0.035762872546911]],[[-0.030705714598298,0.046450924128294,0.00057630124501884],[0.033208601176739,-0.0061284834519029,-0.02508551068604],[-0.09319806843996,-0.010035225190222,-0.10976640880108]],[[0.030197193846107,-0.051402561366558,-0.056765023618937],[-0.05054584890604,-0.14328263700008,-0.016912531107664],[0.06353372335434,0.10451699793339,0.16572093963623]],[[-0.0098271034657955,0.0081637101247907,0.011848474852741],[-0.0007394987042062,0.043504141271114,-0.059295203536749],[-0.042741499841213,-0.10885153710842,-0.053564101457596]],[[0.03036175109446,0.0032997343223542,-0.026290029287338],[0.052625730633736,0.0047692530788481,0.036080840975046],[0.016706066206098,0.04239010438323,-0.033680055290461]],[[-0.14984951913357,-0.040136657655239,0.032484043389559],[0.026305748149753,-0.14362619817257,0.019420951604843],[-0.031538091599941,0.01054741255939,0.011102731339633]],[[-0.068909272551537,0.030877949669957,-0.035441070795059],[0.020662989467382,0.031745191663504,-0.029403790831566],[0.0032429394777864,6.9420872023329e-05,-0.035627510398626]],[[-0.096313528716564,0.014083419926465,-0.089393742382526],[-0.068919897079468,-0.043170057237148,0.021600641310215],[-0.04667441546917,-0.044407609850168,0.04269890114665]],[[-0.0076627908274531,-0.085011556744576,0.17188894748688],[-0.10666610300541,-0.025376396253705,0.005299047101289],[-0.017363568767905,-0.13844218850136,0.0037524225190282]],[[-0.048489704728127,-0.0056244856677949,-0.076596900820732],[-0.013122694566846,0.026997279375792,0.022362008690834],[0.030305180698633,0.013975666835904,-0.098527029156685]],[[0.025176897644997,0.022375959903002,0.02045444957912],[0.046195343136787,-0.0062455777078867,-0.049147333949804],[0.018378369510174,-0.08406326174736,-0.062149077653885]],[[0.16093945503235,0.014626613818109,-0.040869820863008],[0.098956227302551,0.054788749665022,0.064076833426952],[-0.0077850366942585,0.049396622925997,0.033722080290318]],[[-0.14619094133377,-0.068658612668514,-0.05939781665802],[-0.052676718682051,-0.061587188392878,0.00083997956244275],[0.072655141353607,0.029449813067913,-0.074506215751171]],[[-0.049095418304205,0.029247082769871,-0.11702138185501],[-0.013763535767794,0.057592306286097,-0.04882800579071],[-0.028972724452615,0.035069592297077,-0.063729733228683]],[[-0.064751625061035,0.026757439598441,-0.040399838238955],[3.7902045733063e-05,-0.050892472267151,-0.26387909054756],[-0.00050166371511295,-0.036181550472975,0.097250290215015]],[[0.055251404643059,0.068026468157768,-0.050349973142147],[-0.011159254238009,0.11549695581198,-0.12773881852627],[0.026729464530945,-0.095115654170513,-0.0639618486166]],[[0.0033954095561057,0.041685733944178,-0.052332416176796],[0.071067370474339,-0.094719208776951,-0.017114562913775],[-0.063436299562454,-0.038550913333893,-0.012388137169182]],[[0.070744350552559,0.0065688071772456,0.0321662761271],[0.0069341445341706,-0.035412225872278,-0.078521944582462],[-0.030596531927586,0.023609315976501,0.065539702773094]],[[-0.053261883556843,0.072174057364464,-0.050106283277273],[-0.002516713924706,-0.028719715774059,-0.038423765450716],[-0.038618419319391,-0.076852522790432,0.072271913290024]],[[0.060778435319662,-0.063119560480118,-0.084906682372093],[-0.0082973791286349,0.030508631840348,-0.10001903027296],[-0.021077735349536,0.014808317646384,0.011348724365234]],[[-0.025002820417285,0.044422339648008,-0.024700008332729],[-0.0176298674196,0.037716004997492,0.042649481445551],[-0.012703890912235,0.029268987476826,-0.058040104806423]],[[-0.038920044898987,0.055332761257887,0.035907600075006],[0.059234496206045,-0.067055314779282,-0.076784670352936],[0.024022305384278,-0.027616856619716,0.10468751192093]],[[0.1376359462738,0.036885812878609,0.0014718713937327],[-0.023763487115502,-0.045897841453552,0.10244386643171],[0.00024108737125061,-0.1311304718256,-0.028408182784915]],[[-0.070524670183659,-0.094368487596512,-0.13192071020603],[-0.011164504103363,0.0099001927301288,-0.19311176240444],[-0.053499080240726,-0.064041018486023,-0.066644601523876]],[[-0.05026201158762,-0.037509728223085,0.017498971894383],[0.082029893994331,-0.015924209728837,-0.099866539239883],[-0.042156416922808,0.0038176695816219,-0.0045042126439512]],[[-0.065566033124924,-0.043805088847876,-0.13304197788239],[0.044856838881969,0.029871689155698,-0.018028639256954],[-0.0083314273506403,0.080808103084564,0.13969795405865]],[[0.0095646139234304,0.047212243080139,-0.056887872517109],[-0.011841001920402,-0.017793599516153,-0.080273039638996],[-0.024192526936531,-0.0020110916811973,0.037345711141825]],[[0.21926766633987,0.10674237459898,0.00010619386739563],[0.14402425289154,0.088539607822895,-0.034729525446892],[0.038387347012758,0.037679336965084,0.016920005902648]],[[0.071627736091614,0.033208854496479,-0.0094120316207409],[0.034003652632236,-0.070839270949364,-0.045233450829983],[-0.0090430183336139,-0.040219578891993,0.069760926067829]],[[-0.040570929646492,0.010874263942242,0.020009804517031],[-0.014251168817282,0.1190497726202,-0.04511509090662],[-0.075892396271229,0.033834964036942,-0.043807089328766]],[[0.076513797044754,-0.050266936421394,0.053513363003731],[0.0094753876328468,0.031788434833288,0.040518153458834],[-0.054634720087051,-0.16715489327908,-0.025643229484558]],[[0.088516093790531,-0.016852619126439,-0.054956242442131],[-0.015920730307698,-0.12913802266121,-0.068157687783241],[-0.045980781316757,-0.16177299618721,0.059081327170134]],[[0.0095914732664824,0.038624163717031,-0.17329801619053],[0.038286682218313,-0.028882179409266,-0.067936614155769],[-0.060587760061026,0.11016670614481,-0.0047768801450729]],[[0.0060619660653174,-0.10214488953352,-0.02545422501862],[-0.046634092926979,-0.049351450055838,-0.041433982551098],[-0.061818663030863,-0.067332170903683,-0.019649928435683]],[[-0.10309921205044,0.045397575944662,-0.12793534994125],[0.022434424608946,0.013461996801198,-0.1220041885972],[0.0013831820106134,-0.15080185234547,-0.049833033233881]],[[0.11820717900991,0.043139327317476,-0.22291530668736],[-0.028804767876863,0.077201209962368,-0.21188232302666],[0.12452981621027,-0.032516587525606,-0.038359902799129]],[[0.019085267558694,-0.014352955855429,-0.019217664375901],[0.014365709386766,-0.16239900887012,-0.0591587908566],[0.00023617623082828,-0.096469685435295,-0.096913412213326]],[[0.023562092334032,-0.045547906309366,0.0038175687659532],[0.0043143886141479,0.019627772271633,0.018126582726836],[-0.055345643311739,-0.13929726183414,-0.01500809751451]],[[-0.063482940196991,-0.017340620979667,-0.016004463657737],[-0.042587667703629,-0.026807041838765,-0.016094401478767],[-0.0077170934528112,0.025209791958332,0.037379998713732]],[[-0.000262655550614,-0.034751810133457,0.031712237745523],[-0.024717880412936,0.034334089607,0.081590168178082],[-0.082651011645794,-0.047121316194534,0.046230766922235]],[[-0.028156690299511,-0.00033781368983909,0.062448222190142],[0.087475568056107,0.023577224463224,-0.019933572039008],[0.0087890010327101,0.057682570070028,-0.026983272284269]],[[0.029934735968709,0.021408382803202,-0.029151190072298],[0.024840041995049,0.039770510047674,-0.067235864698887],[0.02592952363193,-0.099421486258507,-0.053763408213854]],[[-0.0039959903806448,0.0049817305989563,-0.013744153082371],[-0.068315394222736,-0.064210645854473,-0.025953842326999],[0.079482190310955,0.014034980908036,0.028959298506379]],[[-0.004361605271697,-0.035351272672415,-0.024789629504085],[-0.048199806362391,-0.029217276722193,0.018230034038424],[0.039207596331835,0.057310111820698,0.079261884093285]],[[-0.0038283979520202,0.014077838510275,0.082851842045784],[-0.021694986149669,0.08262874186039,-0.10102462768555],[0.085207551717758,0.022848656401038,-0.042395409196615]],[[-0.0163927488029,0.077263124287128,-0.0072249947115779],[-0.014750537462533,-0.14403294026852,-0.058028843253851],[0.039521679282188,0.029528679326177,-0.061832088977098]],[[0.088310837745667,0.096556931734085,-0.033836990594864],[-0.015516130253673,0.051157578825951,0.078324183821678],[0.040490161627531,0.04037481918931,0.053379543125629]],[[-0.043776206672192,-0.0034731738269329,0.073054052889347],[-0.17038848996162,-0.11101707071066,0.10023923963308],[-0.032034568488598,-0.057080414146185,0.10546779632568]],[[-0.01196223590523,-0.051407970488071,-0.020401289686561],[0.0821877643466,0.0099805574864149,0.030655199661851],[0.016435064375401,-0.023267282173038,0.013825210742652]],[[-0.011849340982735,0.030080530792475,0.029230898246169],[0.018667813390493,0.15883180499077,-0.044614661484957],[-0.042762368917465,0.035060364753008,-0.027151830494404]],[[0.096224926412106,-0.019316531717777,-0.12085092067719],[-0.055220536887646,0.037774160504341,-0.046545628458261],[-0.046464491635561,-0.020399400964379,0.013045878149569]],[[0.089434891939163,0.11892847716808,0.067185133695602],[0.11454689502716,0.1312230527401,0.10691844671965],[0.094459518790245,0.055712942034006,0.10152017325163]],[[0.0027513750828803,0.063521467149258,-0.03214231133461],[-0.085449770092964,-0.018082674592733,-0.022468376904726],[-0.08060859143734,-0.092534244060516,-0.057015582919121]],[[-0.046448308974504,-0.009654987603426,-0.046385727822781],[0.11031723022461,-0.0064116581343114,0.014492614194751],[-0.028426529839635,-0.0044018649496138,0.015641326084733]],[[0.016886107623577,-0.024633832275867,-0.0052947653457522],[-0.071703523397446,-0.020078800618649,0.014331840910017],[-0.10633965581656,-0.12326913326979,-0.091257527470589]],[[0.061390671879053,-0.015942547470331,0.044068019837141],[-0.002211555140093,-0.011316032148898,-0.050150718539953],[0.016503643244505,-0.023474307730794,-0.086062721908092]],[[0.0057871360331774,-0.011361598968506,-0.0088848061859608],[-0.0018306316342205,-0.0079556768760085,-0.079730927944183],[0.033593628555536,0.081317506730556,0.014344349503517]],[[0.044509869068861,0.024263693019748,0.021240495145321],[0.0074453437700868,-0.0041053569875658,-0.0066470173187554],[0.049646761268377,0.0023736341390759,0.027568923309445]],[[0.013428183272481,0.14147980511189,-0.11705727130175],[0.022653751075268,0.093401603400707,-0.1383703649044],[0.063076086342335,-0.059541624039412,-0.036833386868238]],[[0.096891321241856,-0.013769781216979,0.080161787569523],[-0.092973574995995,0.13188678026199,0.075238153338432],[0.015595946460962,-0.066147834062576,-0.0017528643365949]],[[-0.021079588681459,-0.086650505661964,-0.020005529746413],[-0.091242946684361,-0.089502215385437,-0.076178655028343],[-0.011581881903112,-0.03210387378931,-0.013079700060189]],[[0.17635203897953,0.013534605503082,0.12110301107168],[-0.075433127582073,0.10351943224669,0.042772177606821],[0.021339904516935,-0.0095738051459193,-0.058592550456524]]],[[[-0.044746801257133,0.074408754706383,0.16302211582661],[0.073337458074093,0.11147953569889,0.006552358623594],[0.067986503243446,-0.014960168860853,-0.040556523948908]],[[0.0052423849701881,-0.080872565507889,-0.052496243268251],[-0.00016352292732336,-0.10955979675055,-0.050652373582125],[-0.093734361231327,-0.083984114229679,-0.035419102758169]],[[-0.029424615204334,0.065515615046024,-0.019539181143045],[0.0069954739883542,-0.020074624568224,0.015062988735735],[-0.021539684385061,0.012778157368302,-0.096598960459232]],[[0.014691279269755,0.01540691498667,-0.057697899639606],[-0.091762833297253,-0.066401928663254,-0.020299019291997],[-0.077610842883587,0.027608828619123,0.0097166290506721]],[[0.065466672182083,0.086442165076733,0.019714957103133],[0.046061456203461,0.14718137681484,0.08726454526186],[-0.057726386934519,-0.12070944905281,-0.12251242250204]],[[-0.01841183565557,-0.019361726939678,-0.018735338002443],[-0.0062168897129595,-0.061519160866737,-0.056005652993917],[-0.019146015867591,0.0031755301170051,-0.060452293604612]],[[-1.9779925423791e-05,0.013179066590965,-0.084588274359703],[0.014383681118488,-0.030091110616922,-0.063102692365646],[-0.032295905053616,0.002954978030175,-0.071382462978363]],[[-0.08277153968811,-0.1064588278532,0.0019844598136842],[-0.1259006857872,0.048913661390543,0.009313490241766],[-0.002652978990227,0.099888063967228,0.027500042691827]],[[-0.068250887095928,-0.052430920302868,-0.077245198190212],[0.059259243309498,0.0085467183962464,0.012939870357513],[0.033794693648815,0.06337708234787,-0.026854755356908]],[[-0.067229345440865,-0.042669102549553,0.0051407902501523],[0.11606425791979,0.025314375758171,0.0082675097510219],[0.092490814626217,0.062465313822031,-0.0090146819129586]],[[-0.036909826099873,0.10029155015945,-0.0419448800385],[0.013150907121599,0.0446457862854,-0.022348113358021],[0.0051334411837161,0.10933560878038,0.062521420419216]],[[0.005438613705337,-0.0044689774513245,-0.022418137639761],[-0.047324389219284,-0.13482618331909,-0.039941988885403],[-0.050198990851641,0.013837588019669,0.03020897321403]],[[0.051852565258741,0.0040700752288103,0.0012418229598552],[0.12021473795176,0.098402813076973,0.08094859868288],[0.12732914090157,0.097788669168949,0.13563211262226]],[[0.065118156373501,0.11341961473227,0.12742972373962],[0.011780108325183,0.016477406024933,-0.051023803651333],[-0.09828782081604,-0.087091393768787,-0.055809266865253]],[[0.044857587665319,0.08517998456955,0.12168564647436],[0.056761506944895,0.068616181612015,-0.0057613560929894],[0.064375013113022,0.04430229216814,-0.10295931249857]],[[-0.0022123523522168,0.039014961570501,0.052968587726355],[-0.0082889813929796,-0.0066484487615526,-0.0093920053914189],[-0.093526847660542,0.0068980664946139,-0.036895103752613]],[[0.047519240528345,0.037345834076405,0.080486908555031],[0.059175096452236,0.0031246629077941,0.09004969894886],[0.02573337033391,0.070872209966183,0.026957686990499]],[[0.032681290060282,0.033729791641235,-0.025215871632099],[-0.0017294565914199,-0.067462049424648,-0.099299885332584],[-0.022496365010738,-0.12052072584629,-0.13194774091244]],[[-0.088550470769405,-0.062352478504181,-0.050575289875269],[0.0082522816956043,0.012327456846833,0.010699866339564],[-0.03301465511322,-0.031155670061707,-0.080542117357254]],[[0.025625385344028,-0.044283173978329,0.045034889131784],[0.023734202608466,-0.069933503866196,-0.073795571923256],[-0.017027629539371,0.0022278123069555,-0.047423951327801]],[[0.064778983592987,0.0149016212672,0.018634386360645],[-0.031027032062411,0.085531540215015,0.034151747822762],[0.0015671584988013,0.081430368125439,0.071852803230286]],[[-0.042070768773556,-0.15444633364677,-0.035696770995855],[0.010744046419859,-0.0026660012081265,-0.013125929050148],[0.086791686713696,0.0083847008645535,0.021273603662848]],[[0.023556167259812,0.061701785773039,0.030171310529113],[0.053882714360952,0.03935294598341,-0.046720929443836],[-0.086528033018112,-0.015759561210871,-0.05696615204215]],[[-0.010482099838555,-0.12079113721848,0.034796122461557],[0.032318659126759,0.14073836803436,0.0073014507070184],[0.054508306086063,0.012090707197785,0.042235858738422]],[[-0.05818273127079,-0.0091565605252981,0.0085801118984818],[0.0059911143034697,0.062113676220179,-0.03021189942956],[-0.05471508949995,-0.0070262141525745,-0.0041287741623819]],[[-0.04010047391057,-0.020774500444531,-0.056536123156548],[0.10214009135962,0.017061874270439,0.030447278171778],[-0.057947762310505,0.075863637030125,0.10651603341103]],[[-0.021931787952781,0.0077540152706206,0.047527525573969],[-0.053604550659657,-0.0021435196977109,-0.046199135482311],[0.033366605639458,-0.023766968399286,-0.049689512699842]],[[0.11114215105772,0.06612104922533,-0.03364197537303],[0.043157763779163,-0.09393385052681,0.064865179359913],[0.074364215135574,0.039328187704086,0.084566511213779]],[[-0.0971415117383,-0.0074240160174668,-0.022309424355626],[-0.1162178888917,-0.0011510316981003,-0.013205741532147],[0.012828960083425,0.063813515007496,0.08328054100275]],[[-0.043032746762037,-0.17475184798241,-0.0052876253612339],[0.067034512758255,0.080501064658165,-0.015103525482118],[0.055345479398966,-0.054505936801434,0.025057654827833]],[[0.0079753762111068,0.0068218791857362,-0.098062865436077],[-0.044732909649611,-0.042370069772005,-0.011791756376624],[-0.03914238139987,0.038550280034542,-0.00232696486637]],[[-0.026285668835044,0.030580589547753,-0.11572965234518],[0.15173964202404,-0.0052436967380345,-0.15254910290241],[0.10066191107035,0.10943959653378,0.0017606586916372]],[[-0.0079579874873161,0.076890803873539,0.090707495808601],[0.0030329469591379,0.06862698495388,-0.053243540227413],[0.066247276961803,0.051556318998337,0.014274432323873]],[[-0.077884584665298,-0.010761394165456,-0.078808046877384],[-0.050076920539141,-0.051625795662403,-0.0059995036572218],[-0.066349066793919,0.093845054507256,0.031077018007636]],[[0.033983137458563,-0.084423646330833,-0.042961433529854],[-0.06813071668148,-0.032780312001705,0.0012469933135435],[-0.089336104691029,-0.0091072870418429,0.02690377086401]],[[0.066560216248035,0.042694658041,-0.031732946634293],[0.02166835218668,0.033188864588737,-0.1395922601223],[0.028917845338583,-0.076713256537914,-0.090182155370712]],[[0.009081257507205,-0.046175085008144,-7.6866954259458e-06],[-0.034468557685614,0.024762839078903,-0.0095732109621167],[-0.048472605645657,0.0052328193560243,0.019581528380513]],[[-0.050825536251068,-0.0094623919576406,-0.011654746718705],[0.097827903926373,0.058281775563955,-0.017609493806958],[-0.087082751095295,-0.049409508705139,-0.044309686869383]],[[-0.086881019175053,-0.058608487248421,-0.12700594961643],[0.0058067529462278,0.10920066386461,0.053336974233389],[0.089050769805908,-0.030875612050295,-0.10360018163919]],[[-0.073738373816013,0.039854537695646,-0.064849644899368],[0.065359942615032,0.1282724738121,-0.044803857803345],[0.05441078543663,0.092830635607243,-0.061748284846544]],[[0.015759699046612,-0.040213797241449,-0.013046995736659],[0.0026100364048034,0.079653367400169,-0.075844019651413],[0.0080576818436384,0.076783657073975,-0.052808232605457]],[[-0.045743085443974,-0.012518730014563,-0.034620326012373],[0.0025084777735174,-0.012449467554688,-0.056963037699461],[-0.012117044068873,0.024048274382949,-0.04704662412405]],[[0.00066404457902536,0.062981426715851,-0.02279950492084],[0.11680376529694,-0.11292331665754,-0.017250975593925],[-0.026273710653186,-0.087372526526451,-0.018882868811488]],[[0.0081020044162869,-0.11230528354645,-0.096660137176514],[-0.067316882312298,0.022048348560929,0.021314335986972],[-0.09577664732933,0.10896469652653,0.11659149080515]],[[0.064981862902641,0.0091424006968737,0.033501852303743],[-0.065289720892906,0.035042777657509,0.022289032116532],[-0.11552786082029,-0.076369777321815,0.036196976900101]],[[-0.0030605290085077,0.071436531841755,-0.0022731455974281],[-0.03171468898654,0.0064955255948007,0.027419865131378],[0.081109322607517,-0.063217110931873,-0.07118546962738]],[[-0.064530774950981,-0.065906509757042,0.011462778784335],[0.012993013486266,0.15554951131344,0.091327220201492],[0.014272155240178,0.0021075461991131,0.041430033743382]],[[-0.004649696405977,-0.023965314030647,0.026390727609396],[-0.020596962422132,0.029959322884679,0.016519686207175],[-0.0020816056057811,0.0080815656110644,0.044318851083517]],[[-0.027347855269909,-0.036040540784597,-0.05276083946228],[-0.024141706526279,-0.049834683537483,0.095978654921055],[0.052004795521498,0.1843528598547,0.081708267331123]],[[0.029855186119676,0.011304779909551,-0.055388655513525],[0.081469461321831,0.045378524810076,0.073863953351974],[0.021524269133806,0.0049206768162549,-0.047608159482479]],[[-0.089743107557297,0.025969220325351,0.0099014127627015],[-5.1268089009682e-05,0.033445585519075,-0.0023739566095173],[0.08684328943491,-0.094931192696095,-0.064845383167267]],[[-0.0088030882179737,0.03932997956872,-0.039634760469198],[-0.092400759458542,0.02882456406951,0.059039182960987],[-0.0029361427295953,0.050053421407938,0.029467208310962]],[[0.084199592471123,0.058114524930716,0.061611011624336],[-0.041679710149765,0.016068525612354,-0.029188932850957],[-0.10072666406631,-0.022013446316123,-0.11764384806156]],[[0.099340580403805,0.11588644236326,0.0051567223854363],[-0.10002451390028,-0.10581564903259,0.014711640775204],[0.047121442854404,-0.042560622096062,0.056632801890373]],[[-0.072247803211212,0.12963072955608,0.12597706913948],[0.10952211916447,0.0010997720528394,0.050295826047659],[-0.032669808715582,-0.015079776756465,0.067512698471546]],[[-0.065999172627926,0.076329097151756,-0.047686144709587],[-0.06753197312355,-0.032344054430723,0.052900079637766],[0.0097624817863107,-0.018385032191873,0.068724505603313]],[[0.059051714837551,0.084114514291286,0.023316303268075],[-0.036612372845411,0.04513893276453,-0.018445773050189],[0.079574726521969,0.099594831466675,-0.054445173591375]],[[-0.027331126853824,-0.0088140787556767,0.0088372956961393],[0.023620676249266,0.024582557380199,0.047184377908707],[-0.013235531747341,0.062414955347776,0.14721710979939]],[[0.046604227274656,0.023660616949201,0.010244279168546],[0.018786435946822,-0.012775063514709,-0.015877785161138],[-0.016262628138065,-0.035679455846548,0.01842188462615]],[[-0.062820643186569,-0.049853306263685,-0.0059831757098436],[-0.034563720226288,-0.0436045601964,0.058940201997757],[0.055945347994566,0.022791733965278,0.054159294813871]],[[0.092714697122574,-0.04910883307457,0.063264816999435],[-0.10921442508698,0.088972546160221,-0.035744473338127],[-0.061894524842501,0.16689169406891,0.021701900288463]],[[-0.033196128904819,-0.039689410477877,-0.070888787508011],[-0.11946851015091,0.0097869578748941,-0.01914669573307],[0.11188542097807,0.093479610979557,0.033876143395901]],[[0.11075533926487,0.060004562139511,-0.03487453609705],[0.063036240637302,0.034809894859791,-0.013417169451714],[0.0042670853435993,0.047337736934423,-0.072845436632633]],[[-0.0092605333775282,0.081930160522461,-0.057553965598345],[0.037127539515495,-0.0075286882929504,0.0040143658407032],[0.026764692738652,-0.078843288123608,-0.056437410414219]]],[[[-0.076019503176212,0.08532802015543,-0.13965158164501],[0.01495984941721,-0.067352928221226,0.011415107175708],[0.037182848900557,0.061088137328625,0.079256519675255]],[[0.16044047474861,-0.0073509914800525,-0.041076261550188],[0.015402059070766,-0.074080534279346,-0.036715190857649],[-0.1273480206728,-0.099081620573997,-0.12433693557978]],[[-0.13383609056473,-0.077181987464428,-0.018813386559486],[0.024277735501528,-0.11877853423357,0.00096228992333636],[0.089829280972481,0.046424672007561,0.062328979372978]],[[-0.030302869156003,-0.095520511269569,0.10288412123919],[0.087817624211311,-0.029907124117017,0.044368416070938],[0.050942424684763,-0.047244407236576,-0.036768596619368]],[[-0.10419049859047,0.027360973879695,-0.046844843775034],[-0.010219855234027,-0.014690848067403,0.060892056673765],[-0.0023402008228004,-0.017609402537346,-0.062171395868063]],[[-0.091219842433929,-0.15413999557495,0.038362890481949],[-0.067242510616779,0.067887395620346,-0.089110612869263],[0.041772734373808,0.044099695980549,-0.033655468374491]],[[-0.11131606996059,0.022289056330919,-0.0644810795784],[0.0019477166933939,-0.21426479518414,0.022979646921158],[-0.070170544087887,0.043026387691498,-0.01413649879396]],[[-0.068331710994244,-0.078469268977642,0.04200279712677],[-0.018369428813457,-0.038658920675516,0.13272650539875],[-0.088086359202862,-0.044955406337976,0.048252761363983]],[[-0.035282701253891,-0.061908088624477,0.1193727850914],[-0.13455292582512,-0.002068670000881,-0.050790473818779],[-0.034516494721174,-0.038559470325708,0.011287081055343]],[[-0.037285905331373,0.00039289446431212,-0.058375813066959],[-0.061302300542593,-0.042328584939241,0.0037489167880267],[0.050663255155087,0.083923757076263,0.10235279798508]],[[0.082355476915836,0.029420094564557,-0.021271754056215],[0.0077634579502046,0.0025808084756136,0.070538654923439],[-0.098285645246506,0.07190478593111,0.093178041279316]],[[0.02097469009459,0.033116962760687,-0.077672101557255],[-0.11128076165915,0.01577383838594,0.054354649037123],[0.035802081227303,-0.068846620619297,-0.058322437107563]],[[-0.065374612808228,0.049028337001801,0.0096377460286021],[-0.11899295449257,0.071169830858707,-0.010701479390264],[-0.0055131153203547,-0.084394939243793,-0.023405127227306]],[[-0.014135671779513,-0.091206513345242,-0.097426846623421],[-0.027512982487679,-0.055724386125803,-0.016096651554108],[0.061721004545689,0.074435360729694,0.11930544674397]],[[0.016506155952811,-0.042104236781597,0.012527199462056],[-0.021406222134829,0.0040221093222499,-0.021862730383873],[0.076987832784653,0.023852728307247,0.1512808650732]],[[0.041648991405964,-0.049292858690023,-0.05309047922492],[-0.0023317763116211,-0.041123352944851,-0.031200595200062],[-0.026137316599488,-0.018792847171426,0.01610279083252]],[[-0.057452592998743,-0.030152969062328,0.11059125512838],[-0.0055204876698554,-0.071376085281372,-0.21227598190308],[-0.026937074959278,-0.064778998494148,-0.13817478716373]],[[0.059394460171461,0.031536281108856,-0.014726342633367],[0.0067721107043326,0.0024889837950468,-0.21292115747929],[-0.053006120026112,-0.070084311068058,-0.15737698972225]],[[-0.04522867128253,0.017689803615212,-0.064012095332146],[0.092947885394096,-0.0040275189094245,-0.043644640594721],[0.001937071676366,-0.010377689264715,0.012754905037582]],[[0.016411434859037,0.020444771274924,-0.066694036126137],[0.00458624958992,-0.014915656298399,-0.03381684422493],[-0.028729366138577,-0.020914943888783,-0.030611803755164]],[[-0.088949769735336,-0.075225524604321,-0.10583300888538],[-0.049549613147974,0.032737694680691,0.076959386467934],[-0.055675216019154,0.1085714623332,-0.030641699209809]],[[-0.022745199501514,-0.055171765387058,0.10453591495752],[-0.027171636000276,-0.067771963775158,0.10910329222679],[-0.009552544914186,0.038105707615614,-0.065038129687309]],[[0.038048278540373,0.01562038064003,0.014149948954582],[0.016298118978739,-0.009064007550478,0.0010912079596892],[0.027788449078798,-0.071064807474613,-0.028128745034337]],[[0.050326786935329,-0.082827135920525,0.031239353120327],[0.038982454687357,0.10177604854107,0.079703405499458],[-0.045537523925304,0.051353119313717,0.0085502527654171]],[[0.077634543180466,0.070773579180241,-0.01897687278688],[0.0388551838696,0.048631630837917,0.049811899662018],[-0.028068765997887,0.067839995026588,0.015087708830833]],[[0.03586707636714,-0.092469975352287,0.0052471654489636],[-0.06314430385828,-0.034343361854553,-0.038557838648558],[-0.01939370855689,-0.043312679976225,-0.084610067307949]],[[-0.08734717220068,-0.02650492824614,0.11986590176821],[-0.033312246203423,-0.061709091067314,-0.095720633864403],[-0.070598371326923,0.0011063622077927,-0.0025588157586753]],[[-0.23071637749672,-0.13344329595566,-0.030578095465899],[-0.02793007530272,0.032077189534903,0.15008135139942],[0.012492396868765,0.087509520351887,-0.014256179332733]],[[0.011040001176298,-0.05464781075716,-0.0073141590692103],[-0.074309833347797,0.021080549806356,0.028817985206842],[-0.025765717029572,-0.079974509775639,-0.0060041486285627]],[[-0.022971207275987,0.08069258928299,-0.031193789094687],[0.072398297488689,-0.19049014151096,-0.097224779427052],[-0.084455326199532,-0.11849353462458,-0.11749308556318]],[[0.092669069766998,0.024602269753814,0.11286125332117],[0.018521210178733,0.028253335505724,0.0026489140000194],[-0.078854382038116,-0.074119992554188,-0.057569481432438]],[[0.0083541562780738,0.063079565763474,-0.058698814362288],[0.08616304397583,-0.0087548056617379,-0.081281445920467],[0.035516206175089,0.034508600831032,-0.023853726685047]],[[-0.039582461118698,-0.04584750905633,0.066784836351871],[-0.12444182485342,0.055410038679838,0.094958700239658],[-0.076451428234577,-0.052739609032869,-0.11265098303556]],[[0.18935757875443,0.014232032932341,-0.053697753697634],[0.11854172497988,0.032297000288963,-0.098010070621967],[-0.025099335238338,-0.18349699676037,-0.088545434176922]],[[0.04370004311204,-0.023476079106331,0.063197277486324],[-0.062700070440769,-0.27193522453308,-0.16866798698902],[-0.040756970643997,-0.16988727450371,-0.05246214941144]],[[0.06022372469306,0.010214815847576,0.029520507901907],[0.014235905371606,0.084645472466946,0.018844610080123],[-0.02997499704361,-0.044828567653894,-0.0061266710981727]],[[0.033197771757841,0.00053115340415388,-0.10985461622477],[-0.019921978935599,-0.0038848526310176,-0.012640681117773],[0.017112853005528,0.010575525462627,-0.0082766683772206]],[[-0.070545971393585,-0.071097582578659,0.008627318777144],[-0.022639445960522,0.087515816092491,-0.042596187442541],[0.04192353412509,0.043577373027802,0.039588421583176]],[[0.003862130921334,0.041611421853304,0.041631046682596],[0.0015725464327261,0.017543273046613,-0.021424535661936],[-0.081738449633121,-0.017266649752855,-0.13625858724117]],[[0.01104605384171,-0.011461264453828,0.09409823268652],[0.0077135157771409,0.082744419574738,0.087531924247742],[0.059812773019075,0.081181511282921,0.01435783226043]],[[0.085418619215488,0.094895005226135,-0.080974228680134],[0.018205415457487,-0.016319464892149,0.084254078567028],[-0.049747601151466,-0.10862817615271,-0.0027563474141061]],[[0.032440040260553,0.0013371095992625,0.058441180735826],[-0.1052310615778,-0.093762382864952,0.0010201942641288],[0.025355512276292,0.023787029087543,0.044163957238197]],[[-0.12828396260738,-0.056207783520222,-0.0076594185084105],[0.1066814288497,-0.037651408463717,0.035724364221096],[-0.046301927417517,0.0036340092774481,0.008509436622262]],[[0.17092323303223,-0.12754479050636,0.073676481842995],[-0.034483462572098,0.030161222442985,0.005590399261564],[-0.036172445863485,-0.055853791534901,-0.035886820405722]],[[-0.032160505652428,0.15279905498028,0.028173316270113],[0.091682873666286,-0.0061676786281168,-0.12291833013296],[-0.010759439319372,-0.14624942839146,-0.020057242363691]],[[-0.07784416526556,0.071515567600727,-0.049873799085617],[-0.0095360931009054,0.018388956785202,-0.057669043540955],[0.027332812547684,0.062766879796982,-0.015531204640865]],[[-0.026856031268835,-0.033813450485468,0.082015499472618],[-0.10288065671921,0.036465246230364,0.022695189341903],[-0.14498251676559,0.018079997971654,0.038625728338957]],[[0.21297162771225,-0.037863090634346,-0.13966400921345],[0.088554486632347,-0.12176568061113,-0.036864828318357],[0.11325665563345,0.0016509152483195,-0.0049032648093998]],[[0.055440504103899,0.13037540018559,0.13503751158714],[0.1537036895752,-0.061516009271145,-0.00089700205717236],[-0.078662604093552,-0.086012184619904,-0.013153662905097]],[[-0.1424473375082,0.035327389836311,-0.11429324001074],[-0.012612462975085,-0.059076126664877,-0.03642737492919],[-0.074162282049656,0.10879204422235,0.093624897301197]],[[-0.1295413672924,0.078596606850624,-0.010339071974158],[0.15534391999245,-0.065719924867153,-0.00022828410146758],[-0.053017865866423,-0.010665567591786,0.012576086446643]],[[-0.0033095565158874,0.080125294625759,0.076580889523029],[-0.076258599758148,0.11293224990368,0.0093973027542233],[0.012428648769855,-0.021086005493999,-0.0097768809646368]],[[0.02502903342247,-0.056898634880781,0.072622820734978],[-0.19496689736843,-0.015085358172655,-0.11976230144501],[-0.14910785853863,-0.14524872601032,-0.13347585499287]],[[-0.002684308681637,0.0088636483997107,-0.02190431766212],[0.11317770183086,0.064422935247421,0.019332414492965],[0.10789941996336,0.1972466558218,0.23606203496456]],[[0.051599934697151,-0.00081316335126758,0.050248585641384],[-0.028654268011451,-0.017652127891779,-0.090572379529476],[-0.1302947551012,-0.19970758259296,-0.076516799628735]],[[0.024337984621525,0.022970281541348,-0.12880788743496],[-0.061802074313164,-0.004194260109216,-0.086501576006413],[-0.065838277339935,-0.058893818408251,-0.056738615036011]],[[-0.040220089256763,-0.15878307819366,0.027869317680597],[0.015440684743226,0.034187380224466,0.03350817412138],[-0.17846454679966,-0.124680750072,-0.030598446726799]],[[0.0026164508890361,0.13167467713356,-0.044203605502844],[0.021630670875311,-0.18079021573067,0.15662659704685],[0.031103381887078,-0.063161537051201,-0.022791331633925]],[[0.14339116215706,-0.017314590513706,-0.056799933314323],[-0.20581610500813,-0.027606653049588,0.023165941238403],[0.057074557989836,-0.077593170106411,-0.023554151877761]],[[0.021821347996593,0.0059541845694184,-0.033277023583651],[-0.0016448954120278,0.011525738053024,0.065095022320747],[-0.01440086401999,0.022241372615099,0.051062200218439]],[[-0.017352156341076,-0.076686225831509,0.076393969357014],[-0.052314039319754,-0.024476172402501,0.050844620913267],[-0.046578574925661,-0.12810169160366,-0.043997909873724]],[[0.079269975423813,0.0019327864283696,-0.064260505139828],[-0.022526958957314,0.085096888244152,0.22413937747478],[-0.069831609725952,0.034301102161407,0.11057069152594]],[[0.056063283234835,0.00026287059881724,-0.054400872439146],[0.031021304428577,0.040836371481419,-0.051831044256687],[-0.042234383523464,-0.040673200041056,-0.075783245265484]],[[0.073732808232307,-0.0034230744931847,0.012188511900604],[-0.015797818079591,-0.026742052286863,0.020786046981812],[0.0052622510120273,-0.076646700501442,-0.066910557448864]]],[[[-0.049109142273664,0.094151817262173,0.12429766356945],[-0.043385803699493,-0.0016433667624369,0.042500890791416],[-0.029519144445658,-0.2357741445303,-0.10491272062063]],[[0.047316834330559,-0.07130666077137,-0.095036849379539],[0.10865281522274,0.076513662934303,-0.097172610461712],[0.0378154553473,0.12125887721777,0.0048688100650907]],[[-0.043264359235764,0.034947417676449,0.044604979455471],[-0.071106649935246,-0.090685412287712,0.050483681261539],[0.012215171009302,0.089100368320942,-0.011805783957243]],[[-0.12031537294388,-0.07503779232502,-0.01481657102704],[-0.10333077609539,-0.028290178626776,-0.066545583307743],[0.018386129289865,0.0093618594110012,-0.038095347583294]],[[-0.075550898909569,0.0069700116291642,0.0068902336061001],[-0.023670457303524,-0.024403912946582,-0.0076187569648027],[0.13438831269741,-0.11100592464209,-0.011419774033129]],[[-0.0038136201910675,-0.053236111998558,-0.06375552713871],[0.048412300646305,4.2064879380632e-05,-0.097416564822197],[-0.13629011809826,0.021245010197163,-0.080480672419071]],[[0.0031926098745316,-0.014461657032371,-0.046180162578821],[-0.067460313439369,0.058823514729738,-0.035093013197184],[-0.034183625131845,-0.053891558200121,-0.0099936742335558]],[[0.020807653665543,0.060496594756842,0.026411050930619],[0.021276377141476,0.056873925030231,-0.11464647948742],[0.089122347533703,0.048997949808836,-0.025053387507796]],[[0.067713879048824,0.030231982469559,-0.13077004253864],[0.020291129127145,-0.018103539943695,0.10494472831488],[0.031984202563763,0.039920933544636,0.072801254689693]],[[0.076653890311718,0.033247295767069,-0.0037249762099236],[0.07319214195013,0.053960856050253,-0.081022322177887],[-0.023187447339296,-0.10569709539413,0.053636528551579]],[[0.10700757801533,-0.0041986480355263,0.013569492846727],[-0.082003071904182,-0.10689030587673,0.1075806170702],[0.05686304345727,-0.05625169351697,-0.088990330696106]],[[-0.079880058765411,0.035988863557577,-0.0094267232343554],[0.034645341336727,0.082078620791435,-0.012648772448301],[0.03788947314024,-0.023102678358555,0.05744444206357]],[[-0.13034300506115,-0.22142608463764,-0.16263531148434],[-0.2100655734539,-0.046008057892323,-0.14590087532997],[0.027743736281991,-0.019373252987862,-0.033807765692472]],[[-0.053306423127651,0.13478870689869,0.17919692397118],[-0.024231247603893,0.055843431502581,0.14256553351879],[-0.073444224894047,-0.059753276407719,-0.083224162459373]],[[0.038964621722698,0.13015720248222,0.13504748046398],[0.0074603594839573,-0.0059497002512217,0.076404690742493],[-0.13413859903812,-0.091716580092907,-0.13492347300053]],[[0.075203731656075,-0.022169830277562,-0.068714134395123],[0.078483060002327,-0.071867518126965,-0.16369493305683],[-0.010044910944998,-0.045809756964445,-0.04293504357338]],[[-0.0059648063033819,-0.18142350018024,-0.13616919517517],[-0.030189260840416,-0.16206867992878,-0.037950586527586],[0.05815489217639,-0.10147897154093,-0.025780817493796]],[[-0.039773933589458,-0.017148848623037,-0.091941878199577],[-0.024061866104603,-0.02844125777483,-0.12245670706034],[-0.018920907750726,-0.038558691740036,0.097639016807079]],[[0.026388689875603,-0.014622757211328,0.057312421500683],[0.044557876884937,0.0718909278512,-0.067120566964149],[0.061733167618513,0.019939418882132,0.036167558282614]],[[0.098869800567627,0.04720102250576,-0.043965946882963],[-0.012973321601748,-0.007052110042423,-0.029577102512121],[-0.037353713065386,0.063469804823399,-0.015860384330153]],[[0.087996497750282,-0.034186150878668,0.16022884845734],[0.075101293623447,0.10319281369448,-0.026668706908822],[-0.1264686435461,0.011948315426707,-0.050604268908501]],[[0.027041621506214,-0.11078990995884,-0.043624959886074],[0.11928411573172,-0.0063127717003226,0.063545122742653],[-0.040626928210258,0.016296358779073,-0.032794944941998]],[[0.033376175910234,0.039903745055199,-0.038281127810478],[0.0030807023867965,0.0045600514858961,0.040637001395226],[-0.028263857588172,-0.049087580293417,-0.0029636546969414]],[[0.017488429322839,0.027163777500391,-0.077380992472172],[-0.048755496740341,-0.0477359816432,-0.02654879167676],[-0.11334996670485,-0.095175288617611,-0.036052610725164]],[[0.033329114317894,-0.064063914120197,0.011449521407485],[-0.0068388786166906,-0.016179978847504,0.044190339744091],[-0.042823858559132,-0.017360674217343,-0.031463708728552]],[[-0.13162797689438,-0.068752318620682,-0.21702194213867],[-0.064506478607655,-0.032938804477453,0.012082007713616],[0.024646565318108,0.060672406107187,0.035558212548494]],[[0.028253076598048,-0.034363836050034,0.066360533237457],[0.0013210361357778,-0.0084902169182897,0.020256515592337],[0.078423857688904,-0.10832335054874,-0.010664559900761]],[[-0.063452824950218,0.13596247136593,0.151211977005],[-0.031814400106668,-0.08946368098259,-0.022915041074157],[-0.050257328897715,-0.066612400114536,0.00082329753786325]],[[0.05733385682106,-0.12108928710222,0.068862475454807],[0.018674431368709,0.14503757655621,-0.12212477624416],[0.11861763894558,-0.030806487426162,0.055313188582659]],[[-0.20935447514057,-0.23416571319103,-0.12663371860981],[-0.19152991473675,-0.12166845798492,0.061471246182919],[0.072068117558956,0.12047848105431,0.019628388807178]],[[-0.019978722557425,-0.065529190003872,-0.045625671744347],[0.012032888829708,-0.10197906196117,-0.022070771083236],[-0.081980481743813,-0.0015620396006852,-0.083670794963837]],[[-0.0735969170928,-0.19764237105846,-0.22936637699604],[-0.03530353680253,-0.12434127181768,-0.2231418043375],[0.086816780269146,0.057132765650749,0.055990792810917]],[[0.0019243936985731,0.069632902741432,0.14075577259064],[-0.088407330214977,0.078313134610653,0.061744894832373],[0.014606696553528,0.10895877331495,-0.0085269268602133]],[[-0.037836510688066,-0.12114382535219,-0.14331257343292],[-0.056870624423027,-0.0034173638559878,-0.073377221822739],[0.0048553375527263,0.17826442420483,0.095309406518936]],[[-0.010457394644618,-0.14776033163071,-0.16750225424767],[0.032219100743532,0.11723166704178,-0.33987951278687],[0.0034271678887308,0.055992219597101,0.040375724434853]],[[0.018568122759461,-0.024270012974739,-0.070970214903355],[-0.034724701195955,0.0064011234790087,-0.036725126206875],[-0.039061222225428,-0.0034375851973891,0.020386220887303]],[[-0.014093693345785,-0.0017999523552135,-0.060765638947487],[-0.0065377745777369,-0.019398288801312,-0.041835658252239],[0.031439945101738,-0.046762932091951,0.013475282117724]],[[0.01725766249001,-0.13106541335583,0.041670709848404],[0.11049988120794,-0.1327002197504,-0.059203803539276],[-0.01851030997932,-0.017506621778011,0.03956026211381]],[[0.093786023557186,-0.10346069186926,-0.05481681227684],[0.094775900244713,0.017854770645499,-0.10980163514614],[0.10395167768002,0.11770445853472,0.072140008211136]],[[-0.01822366937995,0.056197419762611,-0.12749119102955],[-0.076791547238827,-0.044238593429327,0.068827979266644],[0.023802913725376,0.00051404471741989,-0.0036241174675524]],[[-0.095781452953815,-0.10780136287212,-0.12131432443857],[0.019279133528471,-0.066678144037724,0.044461462646723],[0.0040383064188063,-0.034932542592287,-0.14757800102234]],[[0.021105118095875,-0.005953571293503,0.053769133985043],[-0.037099629640579,0.013345627114177,0.00061013345839456],[-0.093763217329979,-0.025777889415622,-0.01728805154562]],[[-0.10434908419847,0.049730785191059,0.056429348886013],[-0.07183163613081,-0.023773349821568,0.10934154689312],[-0.13254536688328,-0.11842583119869,-0.0050795464776456]],[[0.085043981671333,-0.058014109730721,0.016134718433022],[0.058075048029423,0.070093624293804,0.059133812785149],[-0.030591314658523,0.010707820765674,-0.015023979358375]],[[-0.093914307653904,-0.04101662710309,-0.076207734644413],[-0.11234591156244,-0.08223932236433,0.078085906803608],[-0.070759929716587,0.084632582962513,0.042022775858641]],[[-0.074999548494816,0.027270548045635,-0.00019053540017921],[-0.038722265511751,-0.0076171779073775,0.010129688307643],[0.038703262805939,-0.02341172657907,-0.0057928925380111]],[[-0.013592653907835,-0.11763524264097,-0.1383361518383],[-0.0083697829395533,0.045640677213669,-0.08507576584816],[-0.024756286293268,0.027355911210179,0.087486393749714]],[[-0.039868969470263,0.047600261867046,-0.067073665559292],[0.0055729928426445,-0.07348694652319,0.054049201309681],[-0.036822494119406,-0.10576084256172,-0.065596505999565]],[[0.036209784448147,-0.07311162352562,-0.05807164311409],[-0.0024028965272009,0.0048674899153411,-0.039251063019037],[0.03106202930212,-0.063241608440876,-0.0065400404855609]],[[-0.0056069856509566,0.13624987006187,-0.043300393968821],[0.034453228116035,-0.13182961940765,-0.0079601500183344],[-0.18028309941292,-0.06824766844511,-0.023489961400628]],[[-0.11646202206612,-0.061033327132463,-0.037794880568981],[-0.020135071128607,0.043812565505505,-0.039837166666985],[0.072372570633888,-0.011731994338334,0.016854139044881]],[[-0.011148687452078,-0.073572240769863,-0.10599246621132],[0.014576064422727,-0.009304272942245,-0.037778198719025],[-0.055215574800968,0.086393781006336,0.086567305028439]],[[-0.21939371526241,-0.13394996523857,-0.10495124012232],[-0.10932051390409,-0.17991897463799,-0.10748695582151],[0.013065924867988,-0.022865459322929,-0.14572554826736]],[[0.13905388116837,0.16280630230904,0.1902961730957],[0.067164465785027,0.10789859294891,0.16518212854862],[-0.036121916025877,0.027718922123313,0.056739680469036]],[[-0.024848276749253,0.17129664123058,0.086087889969349],[0.0073732757009566,0.10554857552052,-0.087463580071926],[0.020624544471502,-0.10503669828176,0.038333799690008]],[[0.10164113342762,0.041273605078459,-0.14248010516167],[0.060615871101618,-0.17778038978577,0.097696602344513],[0.13598144054413,0.11221364140511,-0.013080620206892]],[[-0.098744258284569,-0.15156818926334,-0.14908401668072],[-0.20176708698273,0.11695922911167,-0.14713470637798],[0.035657603293657,-0.024299809709191,0.017948625609279]],[[0.011221100576222,0.013007562607527,0.0075883422978222],[0.022171748802066,-0.0036912704817951,-0.01213388890028],[0.010989089496434,0.017085211351514,-0.02886263653636]],[[-0.023287048563361,0.027033250778913,0.088018588721752],[-0.030761318281293,-0.14155068993568,0.041990052908659],[-0.045610748231411,0.007698499597609,-0.0012118441518396]],[[-0.022221982479095,-0.020894706249237,0.02986466139555],[0.015743214637041,0.015046971850097,-0.022202393040061],[0.015704434365034,0.065439529716969,0.022070681676269]],[[-0.12994182109833,-0.11646683514118,0.032042291015387],[-0.073944076895714,-0.046992782503366,0.062647253274918],[-0.013314142823219,0.084645345807076,0.038034897297621]],[[0.021526142954826,-0.054802574217319,-0.086091883480549],[0.096774078905582,0.097264610230923,0.089880228042603],[0.065064214169979,0.012082662433386,-0.025135543197393]],[[-0.005713795311749,-0.020315147936344,-0.012124426662922],[0.086883693933487,0.0092832501977682,-0.015223830007017],[0.044254280626774,-0.017274271696806,-0.084940567612648]],[[-0.00028584437677637,0.051617942750454,-0.0091872876510024],[0.0090879816561937,0.040730912238359,-0.064064152538776],[-0.028399989008904,-0.04463842138648,0.087636500597]]],[[[0.015183015726507,-0.054368574172258,0.074622116982937],[0.0079786852002144,0.043165467679501,-0.057944189757109],[0.090301156044006,-0.1145948767662,0.085144951939583]],[[-0.056931864470243,0.044648423790932,-0.054001715034246],[0.024030338972807,-0.044442895799875,-0.013931659050286],[0.045337256044149,0.020902492105961,0.00013861783372704]],[[-0.019558373838663,0.018165880814195,-0.065254010260105],[-0.051416113972664,-0.054700408130884,0.041341431438923],[0.042141523212194,-0.0076292948797345,-0.013302253559232]],[[-0.019984954968095,0.0093240719288588,0.052355341613293],[-0.031934171915054,0.0052399793639779,-0.073350787162781],[-0.0090327151119709,0.055301059037447,0.014135276898742]],[[-0.0018498605350032,0.028980107977986,-0.056709509342909],[0.0038029307033867,-0.042522426694632,0.016345210373402],[-0.021067406982183,-0.0052925925701857,0.020740630105138]],[[-0.04662924259901,-0.016640059649944,0.0035913686733693],[-0.031533822417259,0.0098087023943663,0.11397435516119],[-0.074756354093552,-0.031123764812946,0.13336752355099]],[[-0.0490408167243,-0.046566117554903,0.018945254385471],[0.011410908773541,0.011237652972341,-0.0019120394717902],[-0.017140494659543,-0.066869892179966,-0.013021291233599]],[[0.058715019375086,-0.035213481634855,-0.047603096812963],[-0.035301838070154,-0.031578294932842,0.024002645164728],[0.039532653987408,-0.0073535060510039,-0.038328967988491]],[[0.038029402494431,-0.027216631919146,0.055200170725584],[0.034044854342937,0.0039109610952437,0.015369416214526],[-0.022826274856925,0.042883791029453,-0.045423235744238]],[[-0.00047166593139991,0.080738455057144,-0.015760596841574],[-0.030624017119408,-0.078732162714005,0.012067067436874],[0.087938837707043,-0.0027239955961704,-0.03702075406909]],[[0.054134592413902,0.01810291223228,0.0093704471364617],[0.01779274083674,-0.015073019079864,-0.0030415609944612],[0.0074591068550944,-0.072658874094486,-0.063866071403027]],[[-0.089687585830688,-0.11096291989088,-0.014984392561018],[-0.058339025825262,0.023189077153802,-0.011482178233564],[0.0070080794394016,0.035560518503189,0.033935885876417]],[[-0.033680655062199,0.027344107627869,-0.065853171050549],[-0.042579282075167,0.092523299157619,-0.088790081441402],[-0.048749886453152,-0.050837393850088,0.077743299305439]],[[-0.016945170238614,-0.035325329750776,-0.0039421231485903],[0.12095430493355,0.019465424120426,-0.075281888246536],[0.15396544337273,0.060756348073483,0.029935220256448]],[[0.077076531946659,-0.051890015602112,-0.094497121870518],[0.065309666097164,-0.041287709027529,0.0079943044111133],[-0.057057615369558,-0.077764272689819,-0.03374657407403]],[[0.028088442981243,-0.054485403001308,0.025314783677459],[0.11167871952057,-0.001418515923433,0.052474834024906],[-0.13314536213875,0.015773460268974,0.043726395815611]],[[0.050486095249653,0.0058870897628367,-0.070657595992088],[-0.083497561514378,-0.0050739413127303,0.095373705029488],[-0.0022089204285294,-0.06283650547266,0.022935934364796]],[[-0.054831393063068,-0.080917946994305,-0.018322382122278],[0.018147828057408,-0.046521734446287,-0.046825926750898],[-0.0072558159008622,0.078756354749203,-0.0011972478823736]],[[-0.040297109633684,-0.016369558870792,-0.014328854158521],[-0.024139106273651,-0.026790637522936,-0.030943907797337],[0.012421643361449,-0.023955512791872,0.08129595220089]],[[-0.010066339746118,-0.026505384594202,-0.01377262827009],[-0.034254997968674,-0.057819955050945,-0.051515497267246],[0.014867597259581,0.018698450177908,0.033368650823832]],[[0.069756306707859,-0.036740738898516,0.015858463943005],[-0.029610333964229,-0.0031506880186498,-0.047089401632547],[-0.054070021957159,-0.0032822848297656,-0.059725735336542]],[[0.049865625798702,0.027584906667471,0.0056931101717055],[0.011635527014732,0.06535878777504,-0.017407689243555],[-0.0041506034322083,-0.054936375468969,0.07182340323925]],[[-0.0038578847888857,-0.001228321227245,0.069312788546085],[0.034263461828232,-0.036052446812391,-0.044882748275995],[0.0095487693324685,-0.029731104150414,0.0003842314472422]],[[0.0097220400348306,-0.0084989881142974,0.044724497944117],[0.074415594339371,0.042283065617085,-0.023907015100121],[-0.064805172383785,-0.037278812378645,0.018510490655899]],[[-0.067104637622833,-0.070097498595715,0.027358338236809],[-0.051510136574507,-0.013213178142905,0.0047294879332185],[-0.025934046134353,0.0061803786084056,0.045531075447798]],[[-0.039709638804197,0.038300033658743,0.074710361659527],[-0.069892011582851,0.01908690109849,0.067558616399765],[-0.019658900797367,-0.0081168944016099,0.0074351481162012]],[[0.00076574913691729,0.079051457345486,-0.042106449604034],[-0.027133028954268,-0.021580593660474,0.081219501793385],[0.09022282063961,-0.11510314047337,-0.055017247796059]],[[0.035179037600756,-0.040483955293894,0.098554380238056],[-0.025073118507862,0.033072087913752,-0.078239917755127],[0.037556231021881,-0.048000480979681,-0.026854952797294]],[[0.052818197757006,0.063043497502804,-0.025694347918034],[-0.05750210210681,0.014929697848856,-0.023691570386291],[-0.10906194895506,0.021265156567097,-0.042665492743254]],[[0.0068045994266868,-0.05834174901247,-0.013472180813551],[-0.063572369515896,-0.051812920719385,-0.03625700622797],[-0.048967827111483,-0.014687413349748,0.081330172717571]],[[-0.042013399302959,0.012648866511881,-0.10229757428169],[-0.027808077633381,-0.013265512883663,-0.069697342813015],[-0.024194318801165,-0.0065784030593932,0.070104360580444]],[[-0.064727932214737,0.0357705950737,0.074588961899281],[-0.029258292168379,0.12515740096569,0.1871198117733],[0.013014024123549,-0.069342106580734,-0.026219505816698]],[[0.0326485671103,0.0048867734149098,-0.024020968005061],[0.077348731458187,-0.094032175838947,-0.055034387856722],[0.046748347580433,-0.029766814783216,-0.024887485429645]],[[-0.0030688703991473,-0.042096577584743,-0.0063022361136973],[0.029070159420371,0.07915123552084,0.021956136450171],[-0.0059084980748594,-0.12328940629959,-0.063500672578812]],[[-0.048415210098028,0.016274826601148,0.038906175643206],[-0.011541247367859,0.027925474569201,-0.074949473142624],[0.012330699712038,0.0065136351622641,-0.068208537995815]],[[-0.015895502641797,-0.053638909012079,-0.078664392232895],[0.043967831879854,0.021866487339139,-0.016080098226666],[0.035958211869001,-0.031090376898646,-0.0093312431126833]],[[-0.0093821492046118,-0.17828674614429,-0.039418634027243],[-0.0729685947299,-0.036164175719023,-0.00052202376537025],[-0.15572817623615,0.0086085246875882,0.010233622044325]],[[-0.1072591021657,0.13291035592556,-0.032099235802889],[-0.03543084487319,0.030213162302971,-0.01017905306071],[-0.053974095731974,-0.057324025779963,0.064630642533302]],[[-0.04501985758543,0.039990704506636,0.095105156302452],[-0.097462862730026,-0.045350655913353,-0.026892444118857],[-0.11439788341522,-0.089152567088604,-0.036021903157234]],[[0.083330020308495,0.082300171256065,0.054992359131575],[-0.092632859945297,-0.043003246188164,-0.013050274923444],[0.012608524411917,-0.079346671700478,0.045941703021526]],[[-0.060175053775311,0.058927062898874,0.041051629930735],[-0.038049135357141,-0.031332187354565,0.033048924058676],[-0.064377129077911,-0.07242226600647,-0.058401465415955]],[[-0.044031016528606,0.037771128118038,0.019417999312282],[-0.058005392551422,-0.14427946507931,-0.048279635608196],[0.0035820796620101,0.11008434742689,-0.038200899958611]],[[-0.062781445682049,0.089430138468742,-0.0047983294352889],[-0.05266073346138,0.007524237036705,-0.042829629033804],[-0.12332160025835,-0.030234569683671,-0.058375354856253]],[[-0.094502650201321,-0.066668480634689,0.042344354093075],[0.048711936920881,0.077530913054943,-0.022868881002069],[0.068681873381138,0.10809645056725,-0.048466499894857]],[[0.015161072835326,0.085797391831875,-0.014083311893046],[0.057728379964828,0.0083084013313055,0.00046328848111443],[0.028018096461892,-0.046252645552158,0.070246271789074]],[[0.037367142736912,0.046210713684559,-0.03748831525445],[-0.03322945535183,0.13265793025494,0.014222835190594],[0.039684284478426,-0.0043565733358264,-0.00098602299112827]],[[-0.038954015821218,0.068606041371822,-0.011703317984939],[0.095932342112064,0.024005813524127,-0.02466943860054],[0.048994712531567,-0.00010633446072461,-0.018560217693448]],[[0.032107140868902,-0.060189329087734,0.026280671358109],[0.019746009260416,-0.11503058671951,-0.015906067565084],[-0.0017577530816197,0.013228574767709,-0.036712288856506]],[[0.0053442167118192,-0.013488272204995,0.085960991680622],[0.011508200317621,-0.08126825094223,-0.056271884590387],[-0.021504232659936,-0.047064159065485,-0.026964783668518]],[[-0.06790704280138,-0.0041277999989688,0.067938275635242],[0.0081147132441401,0.079224266111851,-0.048330947756767],[-0.036391273140907,0.04333582893014,-0.084544360637665]],[[0.031218441203237,-0.010765453800559,-0.014850934036076],[-0.11752191185951,0.0029268150683492,0.030468882992864],[-0.053704511374235,0.036777190864086,0.0095186093822122]],[[-0.03570295125246,0.0080044846981764,-0.010023314505816],[0.037233229726553,0.018732458353043,-0.042126979678869],[0.034868862479925,-0.00044075810001232,-0.06906271725893]],[[-0.040711294859648,0.037161413580179,-0.022598581388593],[-0.041039407253265,-0.034692738205194,-0.019602250307798],[0.043315351009369,-0.027425248175859,-0.020552860572934]],[[0.059794969856739,-0.068576835095882,0.070623494684696],[0.087289422750473,0.0098446812480688,0.024484138935804],[0.0050212042406201,0.13947074115276,0.05369109660387]],[[0.042206488549709,0.024149559438229,-0.039466712623835],[-0.071092776954174,0.12200915068388,0.017980521544814],[0.029325110837817,0.1358929425478,-0.0017802525544539]],[[-0.045717544853687,-0.056888796389103,0.066353477537632],[-0.013432320207357,0.0006613508448936,0.0025559677742422],[-0.057423800230026,0.0033786136191338,-0.053087379783392]],[[-0.060531549155712,-0.08600290119648,0.01357349101454],[0.0016363863833249,0.010746785439551,0.035144537687302],[-0.051192432641983,0.030478645116091,-0.074977226555347]],[[-0.0013576216297224,-0.045390896499157,-0.028929457068443],[-0.026999430730939,0.036434631794691,0.047721397131681],[-0.023357713595033,-0.031678266823292,0.06482458114624]],[[-0.031632903963327,0.087980672717094,0.034435279667377],[-0.028265204280615,-0.1667622178793,0.016516257077456],[0.0376734174788,0.045224193483591,-0.092365130782127]],[[0.025918297469616,-0.044235002249479,-0.011400477960706],[0.02849929779768,0.047735698521137,-0.02738780900836],[-0.027025911957026,-0.0036967142950743,0.022470191121101]],[[-0.0017694869311526,0.0064686397090554,-0.068793095648289],[0.094857394695282,-0.13448126614094,-0.015045241452754],[0.037604693323374,-0.16480022668839,-0.0020914222113788]],[[-0.10189903527498,0.007732252124697,-0.048992563039064],[-0.057210106402636,-0.0074083982035518,-0.084119603037834],[-0.0012334069469944,0.0079664252698421,-0.031949710100889]],[[-0.039595872163773,-0.035561200231314,-0.026761893182993],[0.075202830135822,-0.0012574376305565,-0.045136988162994],[-0.046114280819893,0.00034085151855834,-0.0058074840344489]],[[-0.0063617653213441,-0.072264455258846,0.040200062096119],[0.02361074090004,-0.051542859524488,0.055257130414248],[0.041016381233931,-0.016241734847426,0.0020587956532836]]],[[[-0.0053989919833839,0.031313568353653,0.055113676935434],[-0.078609943389893,-0.043340280652046,-0.028619706630707],[0.0078106406144798,0.039659451693296,0.04252341017127]],[[0.11632451415062,0.14042429625988,-0.0026748694945127],[-0.12211517244577,0.025345588102937,0.0077058165334165],[-0.012569750659168,-0.095010042190552,0.068020813167095]],[[-0.06690277159214,0.011517848819494,-0.054638918489218],[-0.050557270646095,-0.00048461099504493,0.0084949256852269],[-0.073208197951317,-0.087312892079353,-0.060765955597162]],[[-0.09279940277338,0.0032847910188138,0.013701082207263],[-0.067591644823551,-0.072827190160751,0.032164074480534],[-0.1400133818388,0.12411860376596,-0.14367547631264]],[[0.089514695107937,-0.22255502641201,0.15184690058231],[0.086523108184338,0.095020696520805,-0.022547455504537],[-0.059540044516325,0.0027382518164814,-0.032832898199558]],[[-0.053837064653635,-0.018452066928148,-0.094556331634521],[0.037226889282465,0.008456289768219,-0.080999292433262],[0.017310859635472,0.035715337842703,0.02505961805582]],[[-0.051868796348572,-0.028814554214478,0.0095864199101925],[-0.047054413706064,-0.10118481516838,0.011518464423716],[0.0091874804347754,-0.073286473751068,0.042859833687544]],[[-0.21036596596241,-0.074181526899338,-0.094049610197544],[-0.001973778475076,0.099478371441364,-0.033642280846834],[0.036718968302011,0.11376205831766,0.033776998519897]],[[0.13964493572712,0.093788489699364,-0.017228865996003],[-0.051871918141842,-0.10468181222677,-0.025506118312478],[-0.067964732646942,-0.062083501368761,0.17251396179199]],[[-0.031848557293415,0.14312547445297,-0.051580432802439],[-0.056227948516607,0.016680859029293,-0.066718712449074],[0.0048649897798896,0.024045249447227,-0.1416259855032]],[[0.007714772131294,0.063294321298599,-0.033743157982826],[0.03857496753335,-0.057069394737482,0.0763785764575],[0.12370530515909,0.032508946955204,-0.068581394851208]],[[-0.072392858564854,-0.061469148844481,0.075758144259453],[-0.25560703873634,-0.082544460892677,0.13599886000156],[0.24795593321323,-0.18970333039761,-0.16994191706181]],[[-0.030974112451077,0.013234880752861,0.12085301429033],[-0.036342870444059,0.036647297441959,-0.080385901033878],[-0.066060684621334,-0.083895556628704,-0.025283239781857]],[[-0.026038374751806,0.0066774915903807,0.023580931127071],[0.048156708478928,-0.00039753422606736,0.082111403346062],[0.0076621589250863,-0.00078976171789691,0.044327780604362]],[[-0.021998150274158,0.059438686817884,0.037851467728615],[-0.026647681370378,0.012691570445895,-0.057274125516415],[0.057251084595919,0.11791073530912,-0.027156095951796]],[[-0.16552916169167,-0.032451737672091,-0.1841262280941],[-0.068255975842476,-0.018997803330421,0.10179707407951],[0.024436822161078,-0.064844205975533,0.14445871114731]],[[-0.022314071655273,-0.051376514136791,-0.042897071689367],[0.0052686333656311,0.051590599119663,-0.086102873086929],[-0.10025227069855,-0.0017434378387406,0.055030003190041]],[[0.0010398039594293,0.026820020750165,-0.022835223004222],[-0.019314616918564,0.0004181427648291,0.029033705592155],[-0.015295332297683,-0.060542713850737,-0.14170046150684]],[[-0.12882749736309,-0.069891944527626,-0.12523202598095],[-0.061849027872086,0.098810806870461,0.028821289539337],[-0.11482995003462,-0.074561044573784,0.043925777077675]],[[-0.044769562780857,0.055561177432537,-0.058451369404793],[0.016463220119476,0.064499668776989,0.020079258829355],[0.016535393893719,-0.067482672631741,0.047149091959]],[[0.07664555311203,-0.012383341789246,0.030292952433228],[0.13284520804882,0.072688594460487,0.081728108227253],[-0.051154486835003,0.07757069170475,0.050057590007782]],[[0.0084111504256725,6.6057415097021e-05,0.083353370428085],[0.1174920797348,0.034258734434843,-0.077682867646217],[-0.097139701247215,-0.037806760519743,-0.052532929927111]],[[-0.030499899759889,0.018203251063824,0.045048363506794],[-0.022121779620647,-0.02342196367681,-0.026207577437162],[0.036583695560694,0.043157335370779,-0.029740462079644]],[[0.045815572142601,0.026919107884169,-0.075325898826122],[-0.012673835270107,0.10668101906776,-0.14140708744526],[-0.1162121668458,-0.016814287751913,0.025205472484231]],[[0.039969604462385,0.01579998806119,0.021543951705098],[0.081917323172092,-0.00017770478734747,0.063645057380199],[0.14420500397682,0.058211617171764,-0.062115479260683]],[[-0.091576084494591,0.1457870900631,0.0027615737635642],[-0.18444812297821,0.083356104791164,0.0015720017254353],[0.075916424393654,-0.049961153417826,-0.079109624028206]],[[-0.013839866034687,0.0073634502477944,-0.099603347480297],[-0.015543322078884,0.029231671243906,0.037318427115679],[-0.005628087092191,-0.00035919819492847,0.028046270832419]],[[0.024673381820321,0.060214232653379,0.075792074203491],[-0.054963912814856,0.04631369560957,0.11751984804869],[-0.089588239789009,0.027391461655498,0.14258395135403]],[[-0.054131165146828,0.10597363859415,-0.084410794079304],[-0.087739057838917,0.022021379321814,0.070457555353642],[-0.0038916231133044,0.0066314144060016,-0.17025773227215]],[[0.017216011881828,0.007335355039686,-0.019382925704122],[0.0087604243308306,0.050666004419327,-0.092502906918526],[0.020090792328119,0.03637357801199,-0.036899462342262]],[[-0.15430119633675,-0.042529001832008,-0.050398278981447],[-0.052013102918863,-0.044326588511467,0.11192826926708],[0.14208695292473,-0.080386720597744,-0.045041050761938]],[[0.13675837218761,-0.089493975043297,0.079361647367477],[-0.031136497855186,0.028031604364514,-0.18690466880798],[-0.11750344932079,0.017063334584236,-0.015403943136334]],[[-0.079223982989788,0.11246187984943,-0.0034529981203377],[-0.10347450524569,-0.20196875929832,0.026280384510756],[0.20780728757381,-0.1725994348526,-0.078177683055401]],[[0.03052512742579,-0.02261764369905,-0.035698994994164],[-0.12463038414717,0.042553581297398,-0.12226957827806],[0.021696522831917,0.093643181025982,0.12513756752014]],[[0.19038532674313,-0.18620267510414,-0.085752129554749],[0.11976803839207,0.015658009797335,-0.14149831235409],[-0.11173441261053,0.13647530972958,0.065185576677322]],[[0.012646147981286,0.08505617082119,0.041245672851801],[-0.0061428351327777,-0.07346349209547,-0.0035226831678301],[-0.021678963676095,-0.037944462150335,0.11236849427223]],[[0.07329498976469,-0.024362470954657,0.016676796600223],[0.014903425239027,0.042196944355965,0.065724343061447],[0.066135317087173,-0.051439806818962,-0.079540625214577]],[[-0.0039856829680502,0.030121523886919,0.18104329705238],[-0.031365167349577,-0.083010204136372,-0.078346125781536],[0.046408630907536,0.097478672862053,-0.18202485144138]],[[-0.0633694678545,0.069262377917767,-0.047101404517889],[-0.051241636276245,0.020971575751901,0.073162011802197],[-0.028345538303256,-0.1397020816803,0.20786862075329]],[[-0.20424364507198,0.14932899177074,0.081089928746223],[-0.045931648463011,-0.10260748118162,-0.020859181880951],[0.15342144668102,0.012020719237626,-0.071123406291008]],[[-0.0031599786598235,-0.010074276477098,0.1476191431284],[0.035005580633879,0.037149678915739,-0.050078727304935],[-0.097849376499653,0.082198478281498,-0.054474145174026]],[[0.031940516084433,0.01543574873358,0.087879553437233],[0.031900361180305,-0.03168148547411,0.047735080122948],[0.043010950088501,-0.027933781966567,-0.086574696004391]],[[0.057816877961159,-0.07263521105051,0.012121807783842],[-0.018222946673632,0.063735902309418,-0.027667826041579],[0.040848903357983,0.035422090440989,0.0085264910012484]],[[0.02599111571908,-0.19062274694443,-0.22685189545155],[-0.06594405323267,0.10913438349962,0.042457543313503],[0.073391184210777,-0.25101029872894,0.14827825129032]],[[0.026258276775479,0.0054998123086989,0.093351267278194],[0.020681027323008,-0.09395731985569,0.014840006828308],[-0.068203143775463,0.14071041345596,-0.12363518774509]],[[0.16121962666512,-0.045622739940882,-0.053382862359285],[-0.057178512215614,0.11134564131498,0.16565084457397],[-0.20711588859558,-0.07271858304739,0.10172399133444]],[[0.12016759812832,-0.072341896593571,-0.062857195734978],[0.090589269995689,0.085728414356709,-0.010094977915287],[-0.016478208824992,-0.072429366409779,-0.039307501167059]],[[-0.088279470801353,-0.015074455179274,0.11128851026297],[0.0084904590621591,-0.054351944476366,-0.056199591606855],[0.032818343490362,0.021231312304735,0.013928172178566]],[[0.010828829370439,0.16367448866367,-0.13774107396603],[-0.090858213603497,-0.092567212879658,-0.082146845757961],[0.12552523612976,0.02432300336659,0.031200475990772]],[[-0.020583184435964,0.036783877760172,0.016736561432481],[-0.0070320405066013,-0.00093752786051482,0.13775244355202],[0.020336696878076,-0.077120780944824,0.028650254011154]],[[-0.0040145688690245,-0.030930044129491,0.0052643776871264],[0.0032995021902025,0.082642391324043,-0.029167739674449],[-0.025524858385324,0.020437428727746,0.008207636885345]],[[0.13508035242558,0.084201104938984,-0.01830986328423],[0.038244914263487,-0.079158179461956,-0.036183752119541],[0.036244187504053,-0.0058645699173212,0.047816459089518]],[[0.021400675177574,0.063640922307968,-0.10315711051226],[-0.13206598162651,-0.035552002489567,-0.025293067097664],[0.11221094429493,-0.050663977861404,0.097251415252686]],[[0.12574115395546,0.1244068145752,0.048503499478102],[-0.063528403639793,0.11381428688765,0.21245202422142],[0.069152005016804,-0.082260444760323,0.047699566930532]],[[-0.17829243838787,0.070329211652279,0.029944110661745],[-0.030181942507625,-0.06493653357029,0.15165421366692],[0.12310566753149,-0.14553852379322,-0.010790933854878]],[[0.082881130278111,-0.1705563813448,0.13087032735348],[0.051851004362106,-0.07189168035984,-0.015711423009634],[-0.10352186858654,0.084912948310375,-0.21202604472637]],[[-0.0053389677777886,-0.025750227272511,0.070112317800522],[-0.10388897359371,-0.051377363502979,-0.1113859936595],[-0.088773407042027,-0.064899675548077,-0.02755768597126]],[[-0.0069477083161473,-0.02471049502492,-0.021904118359089],[0.036304254084826,-0.081525832414627,-0.031330842524767],[-0.023421194404364,-0.077989399433136,0.046245481818914]],[[-0.043344397097826,-0.042855609208345,0.0087483674287796],[-0.0042883921414614,0.073260888457298,0.076314352452755],[-0.046864729374647,0.077431209385395,0.035151872783899]],[[0.042612992227077,0.034426685422659,0.030888762325048],[-0.021945672109723,0.0057405610568821,-0.02533245459199],[-0.019732944667339,0.015159952454269,0.055343080312014]],[[-0.040205147117376,-0.038314484059811,0.00042313899029978],[-0.043813310563564,-0.051181249320507,0.10081958770752],[0.21421308815479,-0.056546423584223,-0.023887636139989]],[[-0.04167115688324,0.088711082935333,0.083881989121437],[0.09116630256176,-0.086140371859074,-0.074040874838829],[0.11587953567505,-0.12129633128643,-0.026781085878611]],[[-0.032890249043703,0.1110508441925,-0.11517121642828],[0.085199885070324,-0.10436520725489,-0.076268054544926],[-0.28869900107384,0.042024496942759,0.29503291845322]],[[-0.076251141726971,0.03360828012228,-0.17081961035728],[-0.096578478813171,0.11499090492725,-0.099002234637737],[-0.16113163530827,0.13739483058453,0.036038529127836]]],[[[-0.010905201546848,-0.0090605160221457,-0.044969227164984],[0.083561673760414,0.017153071239591,0.016929943114519],[0.011312117800117,-0.021679727360606,0.0011153047671542]],[[0.026959337294102,0.0039862967096269,-0.0048077753745019],[-0.065949596464634,0.004035824444145,-0.01810802705586],[-0.016849828884006,0.030056497082114,-0.054670631885529]],[[-0.047102350741625,-0.00069298397284001,-0.056262761354446],[-0.046375319361687,0.025990143418312,-0.046526752412319],[0.047358714044094,0.011617937125266,0.076809488236904]],[[-0.013581985607743,0.022351073101163,0.01447575725615],[0.052646227180958,-0.00014837220078334,-0.013793582096696],[0.0091426046565175,-0.06327036768198,-0.046190280467272]],[[-0.0066443951800466,-0.044723555445671,-0.018531484529376],[0.030013214796782,0.012924778275192,-0.03711348772049],[0.011235690675676,-0.034475337713957,0.024488478899002]],[[0.047961939126253,0.041010301560163,-0.023860638961196],[-0.055206641554832,0.0021706174593419,0.04303777962923],[0.0068057174794376,-0.068945214152336,0.12490954995155]],[[-0.042372677475214,-0.040001172572374,0.0089701842516661],[-0.011418947018683,-0.0013569776201621,0.031103787943721],[-0.045971747487783,0.065894462168217,0.022895930334926]],[[-0.042261015623808,0.020980397239327,0.052665814757347],[-0.029566513374448,-0.00067750329617411,0.0063553457148373],[-0.050704941153526,-0.0124406889081,-0.014484596438706]],[[0.0055792131461203,0.01713403314352,0.064402610063553],[-0.0057041454128921,-0.03123426809907,0.0062590870074928],[-0.012067725881934,-0.020553627982736,0.00010596620995784]],[[-0.016562666743994,-0.042361468076706,0.03129743039608],[-0.033665221184492,-0.065754868090153,-0.027491314336658],[0.027428455650806,-0.091650314629078,-0.039437841624022]],[[-0.025899467989802,0.040701784193516,-0.060527313500643],[-0.018639227375388,0.05027861520648,-0.08507326990366],[0.1011489033699,-0.052126821130514,0.11207741498947]],[[-0.024842796847224,0.021907705813646,0.0093864500522614],[-0.00053386512445286,-0.040019486099482,0.01812631264329],[-0.0078126862645149,0.051830306649208,-0.0086024394258857]],[[-0.037501160055399,-0.0585772767663,-0.05722938850522],[0.028342768549919,0.050378449261189,-0.033385016024113],[-0.011581244878471,0.0044012139551342,-0.021061915904284]],[[0.035194836556911,-0.01449828967452,0.0080863162875175],[0.0011487691663206,0.0023356589954346,-0.0080227749422193],[0.14363969862461,-0.0026265669148415,-0.033206485211849]],[[-0.030419742688537,0.04919858276844,0.022339163348079],[0.043554566800594,-0.087576158344746,-0.038131672888994],[0.014042688533664,-0.019091989845037,0.082164399325848]],[[-0.096754334867001,-0.014538488350809,0.040803000330925],[0.0424072034657,0.022289143875241,0.031551592051983],[0.0083890948444605,-0.011973852291703,0.051255598664284]],[[-0.025758925825357,-0.0014416964258999,-0.023881297558546],[-0.0051961536519229,0.0924988463521,0.045630298554897],[0.0016571643063799,-0.019693844020367,0.037806786596775]],[[-0.006167087238282,0.032972514629364,-0.024029079824686],[0.0011684659402817,-0.018729114905,0.017232703045011],[-0.016375742852688,0.073418028652668,0.066037058830261]],[[0.012259544804692,-0.01755927875638,0.01921060308814],[0.045619498938322,-0.00098905654158443,0.019240191206336],[0.04002345725894,-0.010055346414447,0.058475784957409]],[[0.018095649778843,0.018687745556235,-0.012568994425237],[0.024598516523838,0.0020241509191692,-0.021435318514705],[-0.01599533483386,0.012866914272308,0.013848363421857]],[[0.016577230766416,0.095250993967056,0.011533222161233],[0.065291114151478,0.035226859152317,-0.1048035249114],[0.011514096520841,0.0058264159597456,0.035456992685795]],[[-0.0084363399073482,-0.028460143133998,-0.031727470457554],[0.010575090534985,0.07719699293375,0.046544633805752],[0.018476791679859,0.01678442209959,0.029004126787186]],[[0.022516051307321,-0.043464388698339,-0.027871392667294],[0.026164695620537,0.021484954282641,0.022824462503195],[-0.056369300931692,0.030396621674299,0.0043802699074149]],[[0.015985602512956,-0.036464098840952,-0.049894638359547],[0.0050676669925451,0.012618226930499,0.0090928710997105],[-0.058476310223341,-0.049633726477623,0.012160984799266]],[[0.042198818176985,0.00029263764736243,-0.0013243822613731],[-0.0068225488066673,-0.044481415301561,-0.020440544933081],[-0.065057449042797,-0.042839989066124,0.030791934579611]],[[-0.069996111094952,-0.011959436349571,0.045932527631521],[0.015833942219615,-0.010011870414019,0.027431111782789],[-0.020795647054911,-0.01939707249403,0.048462722450495]],[[0.029640894383192,0.018178692087531,0.027942972257733],[-0.057345300912857,0.031462952494621,-0.034563008695841],[-0.0043857949785888,0.031717445701361,0.084701754152775]],[[0.06787421554327,-0.033398270606995,0.022025227546692],[0.10039341449738,0.0096312761306763,-0.052487384527922],[-0.031708233058453,-0.07569295912981,-0.0202372726053]],[[-0.048986751586199,0.063221752643585,0.049534182995558],[-0.040911488234997,-0.074377328157425,0.053123958408833],[-0.023190570995212,0.013669652864337,0.00044855737360194]],[[-0.0056255925446749,0.065388821065426,-0.0021067829802632],[0.036119382828474,0.043974976986647,0.0056508015841246],[0.011497723869979,0.051059488207102,0.015812959522009]],[[-0.0088147772476077,-0.012863483279943,-0.040657393634319],[0.09156608581543,0.065441705286503,0.01152107398957],[-0.011860246770084,0.028104724362493,0.071441695094109]],[[0.018328199163079,0.029369866475463,0.021473037078977],[0.0099571859464049,0.01228965818882,0.029531801119447],[-0.040514905005693,0.055704891681671,0.025979042053223]],[[-0.067092530429363,0.02931291051209,0.044074155390263],[-0.0083822086453438,-0.0025095706805587,-0.032293781638145],[-0.09819333255291,-0.033269826322794,-0.01412337180227]],[[0.012713013216853,0.0082885278388858,0.0090213194489479],[0.01312696095556,-0.063421785831451,0.020517745986581],[-0.00029429365531541,-0.032202251255512,-0.01007445063442]],[[0.0087299030274153,-0.0041292356327176,0.062645718455315],[0.0043994043953717,-0.034889657050371,0.037225022912025],[0.0028579942882061,0.06578604131937,0.021617824211717]],[[0.0074015050195158,-0.024113837629557,0.019323019310832],[-0.0050124321132898,-0.037984151393175,-0.041010148823261],[0.076652526855469,0.068169467151165,0.018150933086872]],[[-0.075215168297291,-0.030227405950427,-0.01351563911885],[-0.031838800758123,-0.073341250419617,-0.04170373827219],[0.0085773719474673,-0.086799331009388,-0.025094082579017]],[[0.0093908058479428,0.044871315360069,0.058407638221979],[0.029035340994596,0.076023831963539,-0.070748955011368],[-0.04725781083107,-0.037077840417624,0.065974704921246]],[[-0.01939120516181,0.027789801359177,0.029856136068702],[-0.0076530217193067,-0.060750491917133,-0.040009737014771],[-0.0065293880179524,0.026544161140919,0.046494238078594]],[[-0.083285771310329,-0.077150970697403,0.0029486576095223],[0.028757475316525,-0.027290543541312,-0.037008058279753],[0.035262603312731,0.022658504545689,0.0097589716315269]],[[-0.00035819952609017,-0.02793600410223,-0.024147350341082],[0.011074502952397,-0.015974972397089,0.054385062307119],[-0.027696741744876,-0.028042381629348,0.04767233133316]],[[-0.026415515691042,-0.099147401750088,0.036436460912228],[-0.017464820295572,-0.015194712206721,0.009013470262289],[0.01864480599761,-0.031530510634184,-0.041223302483559]],[[-0.036332935094833,0.04495145380497,0.0071675777435303],[0.013497056439519,-0.00069718935992569,0.094459608197212],[0.017007809132338,-0.01219024322927,-0.015028884634376]],[[-0.01634031906724,0.030282774940133,-0.0050478824414313],[0.011134929023683,-0.012680609710515,0.017169192433357],[-0.012546646408737,-0.026554556563497,-0.035979211330414]],[[0.019422389566898,-0.0332893691957,-0.030087335035205],[0.051383834332228,-0.021945938467979,-0.026540838181973],[0.036494735628366,0.015462098643184,-0.046382829546928]],[[-0.011341863311827,0.03781358525157,0.079192996025085],[0.033490929752588,0.01176180690527,-0.040232956409454],[0.04363376647234,0.069365948438644,-0.021484155207872]],[[0.0003398098051548,-0.0014568468322977,0.0018131139222533],[-0.074542045593262,0.00094493763754144,0.01147336512804],[-0.02439283952117,0.017379071563482,0.03605242818594]],[[-0.032798606902361,-0.0035899188369513,-0.037465658038855],[0.0072790691629052,0.086681023240089,0.024857049807906],[-0.0051122382283211,0.0089707495644689,-0.019817182794213]],[[0.010937980376184,-0.015185262076557,-0.0017288498347625],[-0.061287872493267,0.020562466233969,-0.048334017395973],[0.027790641412139,-0.044127073138952,-0.023240553215146]],[[0.0043680500239134,0.0076670087873936,-0.017988251522183],[-0.061382401734591,-0.047037281095982,-0.0095137618482113],[0.029752526432276,-0.043275915086269,0.036428540945053]],[[-0.018086204305291,-0.045532517135143,-0.034760616719723],[-0.0015748394653201,-0.055626608431339,-0.04022678732872],[0.056023243814707,-0.026592956855893,0.021841138601303]],[[-0.044362433254719,-0.043139912188053,-0.034820672124624],[0.056565824896097,0.05788566172123,0.039185971021652],[-0.0061504691839218,0.020384334027767,-0.057926144450903]],[[0.04431476816535,-0.036708321422338,-0.0035393165890127],[-0.044514164328575,0.01834032125771,0.04474276676774],[-0.0082580652087927,0.035415019840002,-0.025966553017497]],[[0.037812404334545,0.027260964736342,0.087448142468929],[0.057345941662788,-0.046328291296959,0.066652074456215],[0.038308370858431,0.016442084684968,0.059596218168736]],[[-0.030462311580777,0.024618839845061,0.028385980054736],[0.012995213270187,-0.015284555964172,-0.028806613758206],[-0.0067434664815664,-0.038745976984501,-0.012305978685617]],[[0.0091682113707066,-0.062640495598316,-0.011204786598682],[-0.024615274742246,0.0066128256730735,0.046614807099104],[-0.021177230402827,-0.051907077431679,-0.063320867717266]],[[-0.030465884134173,-0.050826791673899,0.028132220730186],[-0.045037388801575,-0.0036008602473885,0.01239721570164],[-0.0017496335785836,0.034940131008625,0.064489297568798]],[[-0.0050869537517428,0.014775844290853,-0.033707749098539],[-0.03271472454071,-0.0075922477990389,-0.031221285462379],[0.021991726011038,0.038317490369081,-0.0096924975514412]],[[0.065234147012234,0.040209718048573,0.005304261110723],[-0.0075555071234703,0.0044450638815761,-0.01483360864222],[-0.043910477310419,-0.0078485095873475,-0.0021773660555482]],[[0.012462696060538,-0.027759473770857,0.036479972302914],[-0.018276926130056,0.00025829605874605,-0.036337196826935],[0.045715648680925,-0.016651917248964,-0.02119374461472]],[[0.0049026049673557,-0.0046793464571238,-0.08047803491354],[-0.0081641366705298,0.018828991800547,0.0028297896496952],[0.015131855383515,-0.012665425427258,0.041557837277651]],[[-0.010863779112697,-0.0090065561234951,-0.096031881868839],[-0.011875800788403,-0.040965784341097,0.053212616592646],[0.0064373393543065,-0.0071552293375134,-0.020100241526961]],[[0.017869452014565,0.0091347536072135,0.013904528692365],[-0.025050388649106,0.011067369021475,-0.0036193707492203],[-0.049999881535769,-0.029881374910474,-0.0085262237116694]],[[0.045694813132286,-0.0086541771888733,-0.002899621380493],[0.017109761014581,0.030944449827075,-0.0044960603117943],[-0.0068980609066784,0.011310933157802,-0.035437323153019]]],[[[-0.06285322457552,0.055713303387165,-0.015480083413422],[-0.036653447896242,-0.043414913117886,-0.072852171957493],[-0.052486639469862,0.034106265753508,-0.047250863164663]],[[0.027888501062989,-0.13643373548985,-0.1081003472209],[0.005785598885268,0.0046714306809008,-0.081837207078934],[0.050392638891935,-0.014248993247747,-0.10395909100771]],[[0.011851489543915,-0.024896312505007,0.00079732201993465],[0.044090636074543,-0.090582370758057,0.015407447703183],[0.0011008580913767,-0.030922036617994,-0.0013346410123631]],[[0.032351985573769,0.039353623986244,0.01183520630002],[0.021310685202479,-0.041951883584261,-0.010647880844772],[-0.021352192386985,0.019224241375923,0.000477927736938]],[[-0.066493511199951,-0.10340264439583,-0.024450736120343],[0.023046085610986,0.029593460261822,-0.03873884677887],[-0.00029870061553083,0.11281403154135,-0.051889050751925]],[[-0.047189395874739,-0.12591955065727,-0.10051766782999],[-0.0080900834873319,-0.09886372834444,-0.072725504636765],[0.054136600345373,0.14771981537342,0.10034112632275]],[[-0.010818633250892,0.048025604337454,-0.060923784971237],[0.016033848747611,0.030291181057692,-0.01561439409852],[0.029107404872775,0.0083685182034969,0.0045842905528843]],[[-0.021222997456789,0.019716151058674,-0.010986477136612],[-0.026968777179718,0.0071225501596928,-0.064512237906456],[0.039395097643137,-0.00062629760941491,0.0056006666272879]],[[-0.062267571687698,-0.058766018599272,-0.10119054466486],[0.048591651022434,0.0093683796003461,-0.031504016369581],[0.092434905469418,0.070009000599384,0.043122500181198]],[[0.045188397169113,-0.05770405381918,-0.078596323728561],[0.040672220289707,-0.024704974144697,-0.004724242258817],[0.086022645235062,-0.072077684104443,-0.038841430097818]],[[0.021113861352205,0.053085550665855,-0.015845576301217],[0.0054851719178259,-0.054739527404308,0.070533558726311],[0.038217585533857,0.0018969989614561,-0.027922883629799]],[[-0.16263566911221,0.0032949030864984,-0.045263387262821],[-0.081643849611282,-0.001840827986598,-0.078772783279419],[-0.03543208912015,0.0010125631233677,-0.059625286608934]],[[0.013780412264168,-0.006242549046874,0.022041065618396],[0.074722930788994,-0.0075445924885571,0.039981029927731],[-0.031235624104738,0.17086546123028,0.08111160248518]],[[0.10912088304758,0.067600294947624,0.097260139882565],[0.079287096858025,0.011868211440742,0.048831600695848],[-0.045469205826521,-0.018810136243701,0.11648336052895]],[[0.025648439303041,0.066276691854,0.04233717545867],[-0.018318032845855,-0.035075724124908,-0.055706083774567],[-0.14969845116138,-0.075022466480732,-0.034988261759281]],[[0.030177023261786,-0.055703766644001,-0.059826884418726],[0.015272164717317,0.050615224987268,-0.052083268761635],[0.10938730090857,-0.035858932882547,-0.021346986293793]],[[0.018581040203571,-0.084578596055508,0.0032422689255327],[-0.048047035932541,0.032161507755518,-0.057642910629511],[-0.064062461256981,0.0049482611939311,0.017614183947444]],[[0.046624302864075,0.041353795677423,-0.039734829217196],[-0.05835260078311,0.026257758960128,-0.0093829622492194],[-0.064569376409054,-0.014051300473511,-0.012199061922729]],[[0.017837455496192,-0.0848678201437,0.013249067589641],[-0.016491441056132,0.057250812649727,-0.095403268933296],[0.016039088368416,0.030525986105204,0.01354943588376]],[[-0.091340318322182,0.091029949486256,-0.015100694261491],[-0.025566663593054,0.0075084222480655,-0.017983758822083],[-0.02641168795526,0.030767409130931,-0.034220829606056]],[[-0.035451155155897,-0.01310807466507,-0.00099019089248031],[-0.05640970915556,0.028281651437283,0.01256859395653],[-0.010462405160069,0.023886827751994,0.033655472099781]],[[0.039210863411427,0.023566294461489,0.0097780022770166],[0.07987180352211,-0.017501398921013,0.012238446623087],[-0.014330223202705,-0.054508130997419,-0.038424450904131]],[[0.0085825119167566,0.029852241277695,0.025396449491382],[0.040833722800016,-0.045221135020256,-0.021275276318192],[-0.032731305807829,0.00028315000236034,-0.036832213401794]],[[0.031475845724344,-0.028317078948021,0.0056379153393209],[0.0066986284218729,-0.070003934204578,-0.049222432076931],[0.067580163478851,0.019284592941403,0.056574556976557]],[[0.02847783267498,0.013389200903475,-0.026188170537353],[0.016048340126872,-0.16157047450542,0.027060246095061],[0.058680605143309,-0.0110435904935,0.05954572185874]],[[-0.0026273843832314,-0.097274996340275,-0.078223019838333],[0.027163095772266,-0.03756432980299,-0.033535491675138],[0.0018852942157537,-0.06693971902132,-0.031776044517756]],[[-0.05908302590251,0.0094083538278937,0.021012587472796],[-0.010630428791046,-0.063541002571583,-0.055503707379103],[-0.16167797148228,-0.036647900938988,0.018923871219158]],[[0.065612278878689,0.10498163104057,0.035823248326778],[0.059146542102098,0.011406122706831,-0.020049722865224],[-0.072960235178471,-0.046025976538658,-0.033416371792555]],[[0.025738881900907,0.043975789099932,-0.012605731375515],[-0.076686501502991,0.0031021842733026,0.0076338038779795],[0.026896875351667,0.04068685695529,-0.0010201798286289]],[[-0.035593081265688,0.0028962017968297,-0.039629895240068],[-0.012268725782633,-0.032721061259508,0.023427857086062],[0.032979782670736,0.03176649287343,-0.026408663019538]],[[-0.022719137370586,-0.0030040973797441,0.016346333548427],[-0.033097911626101,-0.064687617123127,0.020086623728275],[-0.036888640373945,-0.032562896609306,-0.10467263311148]],[[-0.081705123186111,0.012590747326612,-0.002834175247699],[-0.041267655789852,-0.010025345720351,-0.021942270919681],[-0.11610697209835,-0.10829544812441,-0.029477532953024]],[[0.0066696209833026,0.045110829174519,0.056882087141275],[-0.028437413275242,0.040155369788408,0.044888604432344],[0.019186403602362,-0.013979826122522,0.02080767787993]],[[0.018201936036348,-0.0064487941563129,-0.11961098760366],[-0.060901299118996,0.024151151999831,-0.10209518671036],[0.015445492230356,-0.060058996081352,-0.071032971143723]],[[0.059456415474415,-0.10536631196737,-0.070122800767422],[0.04130844026804,0.064269229769707,-0.11635032296181],[0.077039085328579,0.13316291570663,0.063912697136402]],[[0.035576030611992,0.06316950917244,0.066190086305141],[-0.031453933566809,-0.12900198996067,0.046862751245499],[-0.099200844764709,-0.0089461803436279,-0.0056320652365685]],[[-0.015010462142527,0.051645942032337,0.028834067285061],[-0.027073783800006,0.03358431532979,-0.063468039035797],[-0.048116263002157,-0.060236755758524,0.012389664538205]],[[-0.0023165408056229,-0.1329203993082,-0.010334325954318],[0.089166030287743,0.029230417683721,0.032559514045715],[-0.01338043436408,-0.059789769351482,-0.0081720994785428]],[[0.068401336669922,0.0079408492892981,-0.010840470902622],[-0.0021304760593921,0.071094565093517,-0.043609701097012],[0.05708347633481,-0.048269458115101,-0.072428114712238]],[[0.061497531831264,-0.0025911733973771,-0.089133225381374],[0.0050266059115529,-0.063302755355835,-0.063465893268585],[-0.1107424646616,-0.0068624173291028,0.015272646211088]],[[-0.050278060138226,-0.0010383512126282,-0.056270077824593],[0.017588282003999,0.014853819273412,0.017394473776221],[0.027113646268845,0.026260497048497,0.025408862158656]],[[0.0053618024103343,-0.046402599662542,-0.089970774948597],[-0.022441275417805,0.058014627546072,0.064798951148987],[0.05946446210146,0.05757474899292,0.045868951827288]],[[0.031278058886528,-0.023053031414747,0.022589571774006],[-0.040563430637121,-0.035306379199028,-0.074310168623924],[-0.069459669291973,-0.000537344138138,0.040300127118826]],[[0.02772169560194,-0.036332860589027,-0.15206997096539],[0.02079026773572,0.14911267161369,-0.0071034305728972],[-0.026009550318122,0.060555994510651,-0.120979167521]],[[-0.09425950050354,-0.037167157977819,-0.010047622025013],[0.038094822317362,-0.1009740754962,0.0036845593713224],[-0.084213256835938,0.023930953815579,0.00066156242974102]],[[0.04026285558939,-0.0081169325858355,0.010496914386749],[-0.034760173410177,0.031715482473373,-0.035657789558172],[-0.077679164707661,-0.032588325440884,0.01202352065593]],[[-0.02422352693975,-0.045370258390903,0.034802831709385],[0.022907786071301,0.028009407222271,0.038867674767971],[-0.0065884366631508,0.053092282265425,0.073718264698982]],[[-0.027569308876991,0.014307458885014,0.052583575248718],[0.099839471280575,0.024630522355437,0.00072741083567962],[0.05803569406271,-0.041078072041273,-0.026286689564586]],[[0.058915171772242,-0.070324428379536,-0.061323240399361],[-0.016239499673247,-0.024917908012867,0.0076119843870401],[-0.091419734060764,0.074249133467674,-0.084086120128632]],[[-0.013178727589548,0.014710545539856,0.018704844638705],[-0.0238301102072,0.030871184542775,0.086424775421619],[-0.021367521956563,-0.072484314441681,-0.0085011431947351]],[[-0.072753988206387,-0.03698655962944,-0.0070795845240355],[0.084191389381886,-0.037360571324825,-0.0033805763814598],[0.082842044532299,-0.0551638007164,-0.049041736871004]],[[-0.06567195057869,-0.023765182122588,-0.026899755001068],[0.013749098405242,0.046332843601704,0.00066126405727118],[-0.020949875935912,0.025570785626769,-0.037090390920639]],[[-0.0054214731790125,-0.024568365886807,-0.058090314269066],[-0.0030577431898564,-0.010383476503193,-0.10202337801456],[-0.031374081969261,0.033749636262655,-0.069347769021988]],[[0.032129280269146,0.11322302371264,0.074546068906784],[0.058878425508738,0.00094173761317506,0.038517143577337],[0.062984704971313,0.039374679327011,0.019143076613545]],[[0.0654436647892,0.05692932382226,0.033983692526817],[0.0093488907441497,0.03941847383976,-0.044076681137085],[0.078605338931084,-0.018312798812985,-0.021450085565448]],[[0.058206796646118,-0.064900279045105,0.030043914914131],[0.043877754360437,-0.045000970363617,-0.029837276786566],[0.005700598936528,0.024026988074183,0.051318999379873]],[[-0.017987390980124,0.079689934849739,-0.0095604192465544],[-0.021730372682214,0.017929993569851,-0.0010367588838562],[0.040924225002527,-0.057962853461504,-0.015412314794958]],[[-0.015211483463645,-0.029146252200007,0.0086287949234247],[-0.011850917711854,-0.027711385861039,-0.013138798996806],[0.012578275986016,0.0083267576992512,0.0073225693777204]],[[0.029808243736625,-0.086988374590874,-0.015725426375866],[0.0087782507762313,-0.048750132322311,-0.033162113279104],[-0.0047898450866342,-0.013866716064513,0.014774000272155]],[[0.0033149376977235,-0.039929773658514,0.010659630410373],[-0.00017401557124685,-0.00022993359016255,0.012651653960347],[0.0076925358735025,0.0268076043576,0.00038703522295691]],[[0.0090626422315836,0.0073715783655643,-0.095419399440289],[-0.077591240406036,0.03581777215004,-0.066663861274719],[0.08595847338438,0.075645282864571,-0.067572757601738]],[[-0.027925886213779,-0.041013326495886,0.057545550167561],[0.02779446169734,-0.091660715639591,0.040689490735531],[0.060025904327631,-0.053197585046291,-0.12597869336605]],[[0.012536249123514,0.014019691385329,-0.077095545828342],[0.0064922752790153,-0.015884842723608,-0.084968850016594],[-0.034716889262199,0.010497745126486,-0.084105551242828]],[[0.02459485270083,0.023952672258019,0.059552848339081],[-0.081150628626347,0.11822660267353,0.019383538514376],[-0.027640646323562,0.075546137988567,0.0091181630268693]]],[[[-0.042102582752705,0.034300576895475,-0.0019216630607843],[-0.079440839588642,-0.0067172185517848,-0.041793622076511],[-0.014119719155133,-0.037497065961361,0.019125457853079]],[[0.031038852408528,0.025501543655992,0.0035726870410144],[0.0075101656839252,0.0046142973005772,-0.061569269746542],[-0.040728040039539,-0.021294634789228,-0.039957072585821]],[[0.075910739600658,-0.0047941929660738,-0.02700674906373],[0.077388897538185,0.014361313544214,0.0080482149496675],[0.06044052541256,-0.0052641462534666,0.033309537917376]],[[0.036950275301933,-0.020616255700588,-0.031728968024254],[0.083742521703243,0.050692193210125,-0.081756852567196],[-0.0077704307623208,0.0070246504619718,-0.05428371578455]],[[-0.08791933208704,-0.044598266482353,-0.058365199714899],[-0.0099600553512573,0.044538836926222,-0.017317712306976],[-0.028353415429592,-0.024806506931782,-0.0032030025031418]],[[0.14657366275787,-0.22467762231827,-0.046933930367231],[-0.067596316337585,-0.058818303048611,-0.18451578915119],[0.095804311335087,0.13822281360626,-0.030620407313108]],[[-0.0017523122951388,0.026151280850172,-0.077946797013283],[-0.01403240300715,0.035936936736107,0.068851634860039],[-0.042015552520752,0.060640975832939,0.0007475673337467]],[[-0.010671757161617,0.003442735876888,0.043175142258406],[0.11040442436934,0.028163669630885,-0.046591613441706],[-0.060412589460611,-0.043605446815491,-0.05670028924942]],[[-0.057182718068361,-0.012423132546246,0.037929370999336],[-0.1787064820528,-0.070306748151779,-0.073979377746582],[-0.019798241555691,0.0093615474179387,0.062659367918968]],[[-0.077430292963982,0.016050120815635,-0.032027568668127],[0.029070841148496,0.044121343642473,0.030424350872636],[-0.015599808655679,0.037824582308531,0.034670550376177]],[[0.089016601443291,-0.050450380891562,0.019760582596064],[-0.045800354331732,0.030476244166493,0.010205885395408],[-0.056887209415436,-0.12712337076664,-0.025087716057897]],[[0.038851231336594,-0.0025168771389872,-0.076032400131226],[0.028136653825641,-0.0064567252993584,0.00099186087027192],[0.087298884987831,0.0063971886411309,0.013845128007233]],[[0.068115718662739,-0.01903030462563,-0.057189099490643],[0.053748283535242,-0.077303305268288,0.024038137868047],[-0.0020036203786731,-0.086511701345444,-0.017087694257498]],[[0.014948283322155,0.039718918502331,0.065123200416565],[0.048659510910511,0.053301569074392,0.016577092930675],[0.074277020990849,-0.017969680950046,-0.0033577517606318]],[[0.011287455447018,0.11731799691916,-0.058502122759819],[0.04303440824151,-0.0005560337449424,-0.031855762004852],[-0.014754174277186,0.030112100765109,0.17531484365463]],[[-0.012396367266774,-0.030927874147892,-0.028276646509767],[-0.042958050966263,0.014334876090288,0.021616600453854],[-0.00096262781880796,-0.0089603196829557,-0.033691924065351]],[[0.051241520792246,0.092162743210793,0.057410545647144],[0.063713125884533,-0.0077575873583555,-0.029063710942864],[-0.015891890972853,-0.023690151050687,-0.091663993895054]],[[-0.0072403703816235,0.052123796194792,-0.058480821549892],[-0.040370587259531,0.057578686624765,0.033804554492235],[0.027955951169133,0.032830104231834,0.086843647062778]],[[-0.0015574096469209,0.016999626532197,0.02281366661191],[0.079655885696411,-0.04027359560132,-0.093681864440441],[-0.073867447674274,-0.057648744434118,0.0034423368051648]],[[-0.037019103765488,0.04633379727602,-0.086856223642826],[-0.036018487066031,0.0067893150262535,0.034205120056868],[-0.020364981144667,0.023322382941842,0.027826573699713]],[[0.0030045879539102,0.057911369949579,-0.012410840019584],[0.046221058815718,-0.012403750792146,-0.0069581866264343],[-0.069265320897102,0.0091245397925377,0.055315371602774]],[[-0.086808167397976,0.018744666129351,0.034653726965189],[0.04666331410408,-0.0011525130830705,-0.035572584718466],[-0.093795754015446,0.038006797432899,0.0056759351864457]],[[0.03851318359375,-0.049688510596752,0.017833793535829],[-0.033123388886452,-0.0055076805874705,0.025086183100939],[-0.079271852970123,0.063850663602352,0.040413726121187]],[[0.05595837906003,-0.00639951787889,-0.0032942474354059],[-0.049624308943748,-0.12791593372822,-0.045176900923252],[-0.0028092486318201,-0.05104311928153,-0.021000681445003]],[[0.05519525706768,-0.043422255665064,-0.010676278732717],[0.019385935738683,-0.015168267302215,-0.019532365724444],[0.018730757758021,0.022920727729797,0.060401130467653]],[[-0.044231045991182,-0.05959739536047,0.0058534699492157],[-0.032830305397511,0.0063974321819842,-0.024242669343948],[-0.093719810247421,-0.11968914419413,-0.055192537605762]],[[-0.038096342235804,-0.067145451903343,-0.063950665295124],[-0.012190027162433,-0.020098069682717,0.020577885210514],[0.040329452604055,0.019114829599857,-0.044204063713551]],[[0.027428023517132,0.022700970992446,-0.017687847837806],[-0.14820504188538,0.0065998788923025,0.035538777709007],[-0.073949635028839,-0.028308119624853,-0.058224439620972]],[[0.075437404215336,-0.036651827394962,0.06355070322752],[-0.019596377387643,-0.14758579432964,-0.063006550073624],[0.073906153440475,-0.05951352417469,-0.054224535822868]],[[-0.013460281305015,0.027602389454842,0.0072465613484383],[0.08753228187561,0.058266039937735,0.0012365609873086],[-0.060277286916971,0.036493115127087,-0.052454099059105]],[[0.017708253115416,0.0031512586865574,0.0050041158683598],[0.0049164309166372,-0.055088795721531,-0.071005068719387],[0.078593708574772,-0.040242802351713,0.040391910821199]],[[0.0087008839473128,-0.074981689453125,-0.048240181058645],[-0.10630026459694,0.044426247477531,0.027870092540979],[-0.13682220876217,0.044292490929365,0.045911483466625]],[[0.096236437559128,0.079258747398853,-0.056899171322584],[0.018050760030746,-0.018728770315647,0.046261344105005],[0.015766270458698,-0.050724629312754,-0.029444357380271]],[[0.019415469840169,-0.018803594633937,-0.062670521438122],[0.052478279918432,0.027146119624376,-0.033642135560513],[-0.073728822171688,-0.089961051940918,-0.021968651562929]],[[0.043836783617735,-0.016609508544207,0.022306352853775],[0.046194478869438,0.032110758125782,-0.035515882074833],[0.018376331776381,0.067880265414715,0.02302772924304]],[[-0.021561782807112,0.048939533531666,-0.074726164340973],[-0.046592216938734,-0.080132327973843,-0.098893895745277],[-0.030640365555882,-0.043172065168619,-0.042670350521803]],[[0.0027707263361663,0.029735092073679,-0.096018001437187],[0.094073213636875,0.01519407518208,-0.10732561349869],[-0.0088134659454226,-0.053641501814127,-0.052544418722391]],[[-0.049319535493851,-0.018300717696548,0.0269694942981],[-0.087473124265671,0.0017649268265814,-0.059410870075226],[-0.02453488856554,0.0087635535746813,0.064939931035042]],[[-0.0078124073334038,0.023851551115513,-0.070754781365395],[-0.046795193105936,-0.011556958779693,0.000887603207957],[-0.043599810451269,-0.015234508551657,-0.023534318432212]],[[0.051788501441479,-0.016447868198156,-0.058835592120886],[0.0088639380410314,-0.054734662175179,-0.038745135068893],[0.028312046080828,0.021523959934711,0.032531660050154]],[[-0.076592296361923,0.047359507530928,0.018088942393661],[0.040390364825726,0.01806609518826,0.030157124623656],[-0.10622830688953,0.075042769312859,0.0011663943296298]],[[-0.028290364891291,-0.032655294984579,0.020614249631763],[-0.059461448341608,0.033541966229677,0.05294406786561],[-0.031336102634668,-0.050340417772532,0.033984556794167]],[[0.02263955026865,0.013556668534875,-0.025004543364048],[-0.017115356400609,-0.10307595133781,-0.014690661802888],[-0.059011440724134,0.073149539530277,0.016033379361033]],[[-0.022214079275727,-0.012111988849938,-0.01829331740737],[0.023152608424425,0.03410666808486,0.030684692785144],[0.0006054961704649,0.026654021814466,-0.051520735025406]],[[-0.097563527524471,0.043157454580069,-0.046723503619432],[-0.1580318659544,0.015621081925929,-0.059699807316065],[-0.17797148227692,-0.050043810158968,0.10961191356182]],[[-0.062143597751856,0.03183851018548,-0.087717078626156],[-0.10028471797705,0.086271867156029,0.016859363764524],[0.0050523853860795,0.042672868818045,-0.0085656624287367]],[[-0.011202213354409,-0.062936283648014,-0.011615734547377],[0.030950048938394,-0.034395772963762,0.00087309948867187],[0.008048907853663,0.02207744307816,-0.0011413936736062]],[[-0.048718482255936,0.030366463586688,-0.017024943605065],[-0.13902859389782,-0.058005712926388,-0.055114578455687],[-0.002708837389946,-0.048116102814674,0.044137712568045]],[[-0.061445560306311,-0.015627516433597,-0.034212108701468],[-0.050399672240019,0.0061148903332651,0.019973551854491],[-0.056031487882137,0.03710775449872,-0.02289979532361]],[[-0.01176146697253,0.026831477880478,0.073644503951073],[-0.040297638624907,-0.015645369887352,0.014427927322686],[-0.16284492611885,-0.03794751316309,0.0027214083820581]],[[0.023703761398792,-0.031835112720728,0.0095538096502423],[-0.039522089064121,0.03183800727129,0.011955079622567],[0.043683551251888,-0.041805174201727,-0.016035996377468]],[[-0.015251525677741,0.00056286156177521,-0.081829391419888],[-0.08170809596777,0.033998142927885,0.0040115471929312],[0.0047415499575436,-0.048932459205389,-0.035874083638191]],[[-0.028254060074687,-0.077686011791229,0.0016275828238577],[0.038853298872709,0.038136921823025,-0.064363598823547],[-0.0019515946041793,0.0054181199520826,0.02486763894558]],[[0.055165890604258,-0.026934284716845,0.01513200905174],[0.051865868270397,0.057497680187225,0.14984549582005],[0.054191119968891,0.10929921269417,0.061859074980021]],[[0.023205280303955,0.03543646633625,-0.090422742068768],[-0.053322780877352,-0.0096722589805722,0.037071757018566],[-0.0039505595341325,-0.045538861304522,-0.01233687531203]],[[-0.009445802308619,-0.050087846815586,0.018040435388684],[-0.065782628953457,0.030015580356121,0.015957845374942],[0.030515855178237,0.020113948732615,-0.054571706801653]],[[-0.018594101071358,0.064981319010258,-0.0118572935462],[0.060609299689531,-0.023222366347909,-0.057100974023342],[-0.034217704087496,0.033335894346237,-0.068207636475563]],[[0.022712644189596,-0.021963754668832,-0.063287667930126],[0.047937538474798,-0.012694058008492,-0.0020142812281847],[0.029491722583771,0.056453984230757,-0.22192603349686]],[[-0.0096995458006859,0.0029255312401801,0.057790033519268],[-0.016911623999476,-0.03148090466857,-0.00011759861808969],[-0.023319711908698,-0.01573895290494,-0.028206216171384]],[[0.0077207833528519,0.069143526256084,0.00047738687135279],[0.034429222345352,-0.0095326788723469,-0.006737008690834],[0.047874137759209,-0.043604820966721,-0.037894006818533]],[[-0.052593927830458,-0.074031122028828,-0.045767296105623],[-0.050991855561733,-0.047428946942091,-0.020330268889666],[-0.014007948338985,0.022210601717234,-0.078230567276478]],[[-0.002981950994581,-0.041669253259897,-0.015305185690522],[0.039805974811316,0.012682903558016,0.07677037268877],[0.026781758293509,-0.013377645984292,0.087783791124821]],[[-0.01806160621345,-0.098080307245255,-0.050955291837454],[-0.033892709761858,-0.067307904362679,-0.039847202599049],[-0.036376666277647,-0.060714077204466,0.020419653505087]],[[0.051395691931248,0.0089625846594572,0.0091779446229339],[-0.028678193688393,-0.058305103331804,-0.053784977644682],[0.0012590759433806,0.0074974303133786,0.024381153285503]]],[[[-0.021979654207826,0.012051138095558,0.094695501029491],[-0.082263067364693,0.00087472848827019,-0.054707948118448],[-0.024537285789847,0.022323872894049,0.099564656615257]],[[-0.01302591804415,0.006290677934885,0.027985641732812],[0.076237872242928,-0.013322478160262,-0.057507060468197],[0.018129523843527,-0.097359739243984,-0.019906574860215]],[[0.044720429927111,0.0062416875734925,-0.014356997795403],[-0.012592617422342,-0.033799275755882,0.012898213230073],[0.0350207015872,-0.04290958493948,0.010163662023842]],[[-0.031509555876255,-0.02280899323523,-0.011348960921168],[0.045110270380974,-0.023744253441691,-0.12922994792461],[-0.053034637123346,0.052639778703451,0.0094251576811075]],[[-0.032509911805391,0.065017066895962,0.055214866995811],[-0.026027424260974,0.026667345315218,0.031106378883123],[-0.045390632003546,-0.001320235314779,-0.036837004125118]],[[0.037983492016792,0.0018016418907791,-0.15234419703484],[-0.046922527253628,0.039342168718576,-0.062009617686272],[0.063239879906178,0.093459866940975,-0.079006068408489]],[[0.020501554012299,0.028835503384471,-0.02843838557601],[-0.052711211144924,0.030188640579581,-0.013583820313215],[0.063367076218128,-0.0078769251704216,0.0093518206849694]],[[-0.01306654792279,0.013335768133402,0.043960213661194],[-0.0069059133529663,0.025322485715151,0.027713432908058],[-0.024736193940043,-0.059568505734205,0.10625302046537]],[[0.021359600126743,-0.060915898531675,-0.21634013950825],[0.042581848800182,-0.047146577388048,-0.020459925755858],[-0.0019813138060272,0.046492770314217,0.0349459387362]],[[-0.090510815382004,-0.08421303331852,0.068882428109646],[0.010954577475786,-0.043476589024067,-0.03283815830946],[0.007753093726933,0.039805185049772,-0.031366474926472]],[[0.01852591522038,-0.026725685223937,-0.09123045951128],[-0.090091653168201,-0.034420818090439,0.084776692092419],[0.033255618065596,0.012733528390527,0.032224051654339]],[[0.029480485245585,0.019969142973423,-0.10719396919012],[-0.032543607056141,0.011972039937973,0.0040512415580451],[-0.060537625104189,0.034267831593752,-0.039132673293352]],[[0.063523903489113,-0.018167896196246,0.071466207504272],[-0.08029393106699,0.065769337117672,0.035700015723705],[-0.046436239033937,0.078249707818031,-0.03061549924314]],[[0.011778499931097,0.038465265184641,0.22035039961338],[-0.024613058194518,0.10399278998375,0.079934194684029],[-0.0015471153892577,-0.0090326834470034,0.11529850959778]],[[0.0446373000741,-0.018938757479191,-0.002775123808533],[-0.034330256283283,-0.015679521486163,0.0087036788463593],[0.10583823919296,0.030315935611725,0.020353695377707]],[[0.014421031810343,0.026432070881128,-0.066592454910278],[-0.04283095523715,-0.062656469643116,-0.030546357855201],[-0.022792061790824,-0.078871965408325,-0.0066902027465403]],[[0.018355002626777,-0.017484158277512,-0.0053908764384687],[0.030930522829294,0.062058947980404,-0.014478038996458],[0.0012101965257898,-0.022552918642759,0.057612542062998]],[[-0.010064204223454,0.018754800781608,-0.017169466242194],[-0.057204991579056,0.079130277037621,-0.051129776984453],[0.082225978374481,0.061471864581108,0.060014020651579]],[[0.037698283791542,0.014304451644421,-0.04177488386631],[-0.027067622169852,-0.044580221176147,-0.046782810240984],[-0.031191920861602,-0.062884949147701,-0.043480016291142]],[[-0.053349982947111,0.023497184738517,0.035937637090683],[0.057946942746639,0.0056072566658258,0.035025782883167],[0.02555931918323,0.036151312291622,-0.017059355974197]],[[-0.048002384603024,0.030790686607361,-0.066926620900631],[0.026823297142982,0.021545069292188,0.013388119637966],[0.056979551911354,-0.036598432809114,0.13217835128307]],[[0.071748644113541,0.026815691962838,0.018526619300246],[-0.0593919493258,-0.059133928269148,0.053081002086401],[0.0033780497033149,-0.16537477076054,-0.0055976454168558]],[[0.0070934477262199,0.004082266241312,-0.0061793816275895],[-0.014915307983756,-0.030845649540424,-0.013586150482297],[0.030927080661058,-0.014800765551627,0.02643128298223]],[[0.042898330837488,0.023522317409515,0.044576425105333],[-0.059712827205658,-0.057426817715168,-0.047656636685133],[0.027853364124894,0.096919767558575,0.019779937341809]],[[-0.044534679502249,-0.040939126163721,-0.1174378246069],[0.0075870701111853,-0.028197411447763,-0.0016195529606193],[-0.047754522413015,0.062530800700188,0.065854296088219]],[[-0.017094835639,0.054515771567822,-0.015957215800881],[0.08155183494091,-0.020838839933276,-0.071468159556389],[0.10276368260384,-0.036004573106766,0.013821584172547]],[[-0.11650978773832,-0.16475534439087,-0.026725325733423],[-0.1155040115118,0.010227498598397,0.044377472251654],[0.038710877299309,-0.040814105421305,-0.022450773045421]],[[0.040395852178335,0.01586514338851,0.090222090482712],[-0.063490368425846,-0.033352054655552,-0.063582770526409],[-0.033754460513592,0.074822537600994,0.078843846917152]],[[0.011479222215712,-0.03075117059052,0.0044465237297118],[-0.0068817916326225,-0.082936234772205,0.035239219665527],[0.0010618343949318,-0.06500455737114,0.036407500505447]],[[0.047639075666666,0.035702977329493,0.028845304623246],[0.038223385810852,-0.068033114075661,-0.029790174216032],[0.08248770236969,0.076440691947937,0.066329956054688]],[[-0.019505707547069,0.060311157256365,0.0060451687313616],[-0.037198074162006,-0.080478802323341,0.018823651596904],[0.057346779853106,-0.0088494280353189,-0.0070236823521554]],[[-0.063692279160023,0.0091207064688206,0.022324129939079],[0.071900278329849,0.082525067031384,-0.070588946342468],[0.032285064458847,-0.11964306980371,-0.12511216104031]],[[0.0064882724545896,-0.075424984097481,0.12809185683727],[0.070536009967327,0.076124511659145,0.023268872871995],[0.15620923042297,0.20648403465748,0.063899599015713]],[[0.0565713532269,0.054050825536251,-0.036843601614237],[0.087970308959484,0.085478372871876,-0.16419167816639],[-0.034357968717813,0.076108768582344,0.033539324998856]],[[0.047477100044489,0.10809121280909,-0.034652501344681],[0.058734033256769,0.00053584994748235,-0.14081811904907],[-0.041312389075756,-0.076726399362087,0.079137235879898]],[[0.020349621772766,-0.059883590787649,-0.084551051259041],[0.091078072786331,-0.020099455490708,-0.14821982383728],[0.054816391319036,0.051678836345673,0.024155607447028]],[[-0.028385397046804,-0.064019039273262,-0.01381463650614],[0.12753136456013,-0.021465877071023,0.11808612197638],[0.076089844107628,-0.095402128994465,0.043556969612837]],[[-0.020441122353077,-0.07379849255085,-0.030452635139227],[0.14296351373196,-0.044828470796347,0.01656093262136],[-0.13667729496956,-0.13857765495777,0.05230051651597]],[[0.011885986663401,-0.067498922348022,-0.058979075402021],[0.01612938195467,-0.041975773870945,-0.063675366342068],[0.05127589777112,-0.035555467009544,-0.023257920518517]],[[-0.084699012339115,-0.1512331366539,-0.061409972608089],[-0.051382634788752,-0.014089192263782,-0.0066278260201216],[0.0066421134397388,-0.025213679298759,-0.13845340907574]],[[0.03273993730545,-0.048269163817167,-0.093363374471664],[0.010090431198478,0.048142194747925,-0.03553368896246],[-0.00054383382666856,0.0028466961812228,-0.14254581928253]],[[0.008635887876153,0.0062991958111525,-0.10512834787369],[-0.059546533972025,-0.014385816641152,-0.018956683576107],[0.064096994698048,-0.02747012116015,0.047409929335117]],[[-0.014494211412966,-0.017338575795293,-0.021797146648169],[0.079647831618786,0.03544107824564,-0.046669960021973],[-0.0050280056893826,-0.05580697208643,-0.12127803266048]],[[0.053338963538408,-0.13860365748405,-0.11769795417786],[-0.081039525568485,-0.015132188796997,-0.030849382281303],[-0.02018022723496,-0.024935504421592,-0.043531693518162]],[[0.0028171129524708,0.090660467743874,-0.081277541816235],[-0.12332775443792,-0.036275748163462,0.024929530918598],[-0.012479929253459,0.072458133101463,0.035522248595953]],[[-0.041518416255713,0.062170065939426,-0.0061774770729244],[-0.024430800229311,-0.042265180498362,-0.047996081411839],[0.030527310445905,-0.016865519806743,-0.053998943418264]],[[-0.010414400137961,-0.039011038839817,0.0062726601026952],[0.12429442256689,-0.056260824203491,0.0025047054514289],[0.033958330750465,-0.047728460282087,-0.035222560167313]],[[0.086635008454323,0.082232601940632,0.036135323345661],[0.099091328680515,-0.053096856921911,0.049043960869312],[-0.075878545641899,0.00098539853934199,0.04845417663455]],[[0.01464734505862,-0.0095565998926759,-0.14102658629417],[-0.037539437413216,-0.049648731946945,-0.10296723246574],[0.051228098571301,-0.036740366369486,0.027936132624745]],[[-0.028172213584185,-0.00092595483874902,0.032486472278833],[-0.063536956906319,-0.038111701607704,0.051253229379654],[-0.073629647493362,-0.016169143840671,0.013132117688656]],[[-0.0055071995593607,-0.046378348022699,0.006385815795511],[-0.14937455952168,-0.12677828967571,-0.080062992870808],[-0.06483905762434,0.030585261061788,-0.071695923805237]],[[-0.012197525240481,0.032703399658203,-0.025229057297111],[-0.022166538983583,-0.016314899548888,-0.012490143999457],[0.047507654875517,0.036316424608231,-0.0066770915873349]],[[-0.068976312875748,-0.11376915872097,-0.058578968048096],[-0.16279657185078,-0.027154218405485,-0.11248973011971],[-0.14720566570759,-0.044511537998915,-0.11615551263094]],[[0.04980893060565,0.077580742537975,0.092465654015541],[0.11161587387323,0.11583186686039,0.081382364034653],[0.10587009042501,0.038488797843456,0.073568724095821]],[[-0.13083249330521,0.011031915433705,0.061688188463449],[0.059854224324226,0.054438453167677,-0.13043566048145],[0.20420415699482,0.0054712938144803,0.02684274315834]],[[-0.032224502414465,0.047455590218306,0.011847594752908],[-0.17998696863651,-0.017739281058311,0.011525465175509],[-0.046296451240778,0.12640474736691,-0.016726311296225]],[[0.0834821164608,0.043395638465881,0.034439042210579],[0.019545866176486,0.049142725765705,0.032182689756155],[0.12122752517462,0.032142329961061,0.0090525969862938]],[[0.032571487128735,-0.035747982561588,-0.026382494717836],[0.013887613080442,-0.038218982517719,-0.026781929656863],[-0.00071131763979793,-0.031547822058201,-0.018402891233563]],[[0.10407833009958,-0.16961722075939,0.052232757210732],[-0.12223538011312,0.034965332597494,0.014988761395216],[0.0023582510184497,0.0017225372139364,-0.07473286241293]],[[-0.0023494199849665,-0.0048844655975699,0.017188290134072],[-0.0094926105812192,0.03078643232584,0.065902382135391],[0.015624642372131,0.035017840564251,0.016355896368623]],[[0.016802476719022,-0.090727172791958,-0.090852580964565],[0.0057051163166761,0.038248218595982,-0.015298953279853],[0.10345902293921,0.021575659513474,0.018137443810701]],[[0.071637496352196,-0.039953865110874,0.026550242677331],[-0.029282450675964,-0.025111239403486,0.018067363649607],[-0.069551520049572,0.073840379714966,0.048072878271341]],[[0.060228928923607,0.047619991004467,-0.016004167497158],[0.038625296205282,0.0077417460270226,0.017635511234403],[-0.0055153160355985,-0.039734616875648,-0.031491454690695]],[[0.073227994143963,0.02908593416214,0.028367131948471],[-0.066751606762409,0.062947914004326,0.048232544213533],[0.10839691758156,0.067356072366238,-0.063840642571449]]],[[[-0.1349024772644,-0.04441649839282,0.014109327457845],[-0.0022816802375019,0.032799012959003,0.070077508687973],[-0.0081684282049537,0.01377263199538,-0.036366231739521]],[[-0.035008575767279,-0.041962821036577,0.019160404801369],[-0.04904804751277,-0.015476290136576,-0.00019368596258573],[-0.037274315953255,-0.025642501190305,-0.008938143029809]],[[-0.0052671157754958,0.019406456500292,0.012138378806412],[0.035027109086514,-0.0078453458845615,0.014582314528525],[0.10736485570669,-0.062200624495745,-0.002728644059971]],[[0.019403826445341,-0.034637417644262,-0.038450993597507],[0.06056746840477,-0.017924698069692,0.060322746634483],[-0.0052836276590824,0.0059969564899802,0.079269900918007]],[[-0.06211544200778,0.019513366743922,0.061965599656105],[-0.017258390784264,-0.037040311843157,-0.04152288287878],[0.021359721198678,-0.0025928851682693,0.00058048142818734]],[[0.15133516490459,-0.085835531353951,-0.11712696403265],[0.0015167262172326,0.039649553596973,-0.16249851882458],[-0.052183501422405,-0.13804021477699,-0.10676576942205]],[[0.053522691130638,-0.012547184713185,-0.034095887094736],[0.0044153928756714,-0.00183922983706,-0.048412669450045],[-0.020184352993965,-0.095995150506496,-0.10391364246607]],[[-0.12693272531033,-0.010268087498844,0.0012621199712157],[-0.074614964425564,0.006544669624418,-0.068098992109299],[-0.057668846100569,0.051794715225697,-0.047044347971678]],[[-0.0067950338125229,-0.036237951368093,-0.0073352255858481],[-0.016276236623526,-0.11849644035101,0.042745795100927],[0.021865285933018,-0.043998133391142,-0.019701279699802]],[[-0.003945788834244,-0.0065223923884332,-0.059283457696438],[0.045960355550051,0.041235521435738,-0.018951516598463],[0.068958900868893,0.025056704878807,-0.11080119758844]],[[0.022633818909526,-0.020218394696712,-0.038097593933344],[-0.082252807915211,-0.022375538945198,-0.026190472766757],[0.048280391842127,-0.044347934424877,0.081542000174522]],[[0.020289702340961,0.003701655426994,-0.035358980298042],[0.026458321139216,0.0074450373649597,-0.026446506381035],[-0.012185356579721,0.0058819623664021,0.030357632786036]],[[0.0040451665408909,0.014660365879536,0.0094071784988046],[0.073771424591541,0.03736050054431,0.015077210962772],[0.075226806104183,-0.021788803860545,0.038008719682693]],[[-0.013156455010176,0.059836521744728,-0.022192312404513],[-0.031756423413754,-0.031202750280499,0.11243131011724],[-0.010493325069547,-0.045651525259018,-0.0077567440457642]],[[-0.062418475747108,-0.0069097713567317,-0.064365290105343],[-0.039467327296734,-0.089720971882343,0.11075069755316],[0.078212603926659,0.090385437011719,0.037899881601334]],[[-0.04022353515029,0.074457794427872,-0.076929777860641],[0.044359188526869,-0.011228452436626,0.022859299555421],[-0.0035482116509229,0.028502374887466,-0.053929042071104]],[[0.026037592440844,0.073382265865803,0.078073650598526],[0.025406483560801,-0.019547399133444,-0.083943665027618],[0.059597950428724,0.028216110542417,0.032440010458231]],[[0.045162610709667,-0.0047180033288896,0.0054300259798765],[0.015069860965014,0.014256474561989,-0.04604609310627],[-0.01027817837894,-0.071271501481533,-0.030924502760172]],[[0.067881166934967,0.05164909362793,0.03298744186759],[0.021903838962317,0.011692532338202,-0.050421703606844],[-0.048235062509775,-0.027152433991432,-0.04291982203722]],[[0.021862482652068,-0.032145336270332,-0.06598349660635],[-0.027542423456907,0.027416817843914,-0.020798938348889],[-0.053817018866539,-0.023033583536744,-0.0043811746872962]],[[-0.045269500464201,0.086515620350838,-0.051518689841032],[0.015024481341243,0.063088238239288,0.0004532941384241],[0.039882965385914,-0.0021770384628326,-0.034198619425297]],[[-0.0011667296057567,0.044744744896889,0.020970735698938],[-0.057512674480677,-0.030346065759659,0.039586130529642],[0.037214372307062,0.040874823927879,0.062409088015556]],[[0.030642870813608,0.058336332440376,0.018242018297315],[-0.014970092102885,-0.011292710900307,0.015144848264754],[-0.018673829734325,0.00019281028653495,-0.076327435672283]],[[0.042793460190296,0.024616196751595,0.0018714591860771],[-0.017432522028685,-0.086184740066528,0.001513106864877],[0.0083327209576964,0.015295629389584,0.04978185147047]],[[0.003086025826633,0.050001624971628,0.0027934352401644],[0.047719281166792,0.052702188491821,-0.0042023891583085],[0.011897994205356,0.0027475617825985,-0.046195074915886]],[[0.064810328185558,0.079414717853069,-0.11015712469816],[-0.032164853066206,-0.0096077462658286,0.016563978046179],[0.0097022131085396,-0.0041530369780958,0.046882916241884]],[[0.0026769780088216,-0.0091147609055042,8.5429492173716e-05],[-0.010921127162874,-0.044136170297861,-0.030796518549323],[-0.024283507838845,-0.054756607860327,-0.04797125980258]],[[-0.018171148374677,0.12098790705204,-0.016891559585929],[-0.015366525389254,-0.095701843500137,0.10491213947535],[-0.087706983089447,0.072277136147022,0.075863964855671]],[[0.0055131437256932,0.10053504258394,-0.0075686532072723],[-0.025914741680026,0.09967715293169,0.059127777814865],[0.041452154517174,-0.086018867790699,-0.0021769416052848]],[[-0.052476566284895,-0.012038665823638,-0.0068526496179402],[-0.022200604900718,-0.0099070006981492,-0.027941510081291],[-0.05751309171319,-0.043784096837044,-0.0049445256590843]],[[-0.0078079290688038,0.014671636745334,0.039914503693581],[0.0041314358823001,-0.0096812024712563,0.0091988733038306],[-0.051289245486259,-0.046042498201132,-0.038506515324116]],[[0.0087878089398146,0.00022094677842688,-0.086270786821842],[-0.029423501342535,-0.039877433329821,-0.00048127234913409],[0.02542569488287,0.039159618318081,-0.014568705111742]],[[0.11649380624294,-0.054961204528809,-0.010841649957001],[-0.0016925471136346,0.023019256070256,-0.021577071398497],[0.073954574763775,-0.0090514291077852,-0.049652379006147]],[[-0.039409674704075,0.00064814911456779,-0.021478852257133],[-0.058379843831062,-0.015751333907247,-0.0099574103951454],[-0.024740220978856,0.040260322391987,0.074279390275478]],[[0.032891046255827,-0.024844542145729,-0.043338116258383],[-0.055323917418718,-0.015699584037066,-0.029037328436971],[-0.099200174212456,0.0013374486006796,-0.061331398785114]],[[0.00092198437778279,0.036876667290926,0.0034760008566082],[0.016119465231895,-0.0068192072212696,-0.030552888289094],[-0.091354787349701,-0.05876200273633,-0.018055072054267]],[[0.081400021910667,0.029565081000328,-0.012641060166061],[-0.011716652661562,0.0046875039115548,0.034819878637791],[0.081176251173019,0.038501154631376,0.021982347592711]],[[0.053308825939894,-0.0035468998830765,0.013170098885894],[0.0050226501189172,0.013798508793116,0.015240794047713],[-0.039336819201708,0.015698708593845,0.012854835018516]],[[-0.063770592212677,-0.057483550161123,-0.019546274095774],[-0.018134271726012,0.039387822151184,-0.070555798709393],[-0.020929522812366,-0.046102087944746,0.022585991770029]],[[0.052367649972439,0.018432755023241,-0.025628192350268],[0.011396480724216,0.07130990177393,0.07339396327734],[-0.033264804631472,0.032055769115686,0.017519157379866]],[[0.10843992233276,0.0089416708797216,-0.025827331468463],[0.017526810988784,0.040092471987009,-0.0086905183270574],[-0.03475084900856,0.034971367567778,-0.048328779637814]],[[-0.02013373747468,0.028507431969047,0.0010934800375253],[-0.0038496248889714,-0.047020602971315,0.032229594886303],[0.062867864966393,-0.061771608889103,-0.024763887748122]],[[0.032245274633169,-0.016431326046586,0.0095636229962111],[-0.010190413333476,-0.039892964065075,-0.063170216977596],[-0.066897600889206,0.048383630812168,-0.009894696995616]],[[-0.043342303484678,0.022197283804417,-0.033780436962843],[0.023499108850956,-0.0067867795005441,-0.028291212394834],[0.032955314964056,0.015816908329725,-0.021312410011888]],[[0.019751872867346,-0.057663150131702,-0.050117991864681],[-0.028233610093594,0.05228903144598,-0.033391632139683],[-0.023483972996473,-0.046911023557186,0.0017060044920072]],[[0.01601948030293,0.066092409193516,-0.018220344558358],[0.049133066087961,-0.076098151504993,0.036956667900085],[0.025834018364549,-0.0010468664113432,0.020806642249227]],[[-0.081058204174042,0.0010559599613771,0.10201555490494],[-0.0079332338646054,0.068218536674976,0.0019958904013038],[-0.007303707767278,0.022052379325032,-0.034320067614317]],[[-0.0019534549210221,-0.02810219489038,-0.035521380603313],[-0.023350505158305,-0.047543488442898,-0.0051083825528622],[-0.0028297817334533,-0.0035496309865266,-0.019545830786228]],[[-0.026821825653315,-0.0092009771615267,-0.0033237969037145],[0.01396784838289,-0.00067297893110663,-0.033597409725189],[-0.013935616239905,-0.027801943942904,-0.051816679537296]],[[0.075425557792187,0.114895388484,0.088598042726517],[-0.012209141626954,0.043332599103451,0.010433157905936],[-0.026204861700535,-0.028312092646956,0.043334726244211]],[[0.01181513722986,0.010040176101029,0.011409249156713],[0.03158051148057,0.028319953009486,-0.042065855115652],[0.030013330280781,0.0034774062223732,-0.002066764049232]],[[-0.0089854393154383,0.0421650595963,-0.02915476821363],[0.0072335125878453,-0.043707881122828,-0.018005488440394],[0.019671086221933,0.054212991148233,-0.0052904286421835]],[[-0.087219730019569,-0.051571302115917,0.011537045240402],[-0.014631928876042,-0.082215778529644,-0.025800675153732],[-0.046069856733084,-0.020841684192419,-0.055133499205112]],[[0.068817928433418,-0.079934597015381,0.050468917936087],[-0.0041491910815239,0.093046091496944,0.033448416739702],[0.14708624780178,0.091971024870872,0.03781995922327]],[[0.056351114064455,0.065211303532124,0.023047592490911],[-0.022362804040313,0.010706485249102,0.020034313201904],[-0.018609590828419,-0.0022496848832816,0.075701631605625]],[[-0.071630582213402,-0.036472108215094,-0.026267819106579],[-0.039450127631426,-0.00083271827315912,-0.010412999428809],[-0.040936052799225,0.027951017022133,-0.04906065389514]],[[0.068636693060398,0.082007236778736,0.076125465333462],[0.02863846719265,0.047390528023243,0.012504816055298],[0.015320621430874,-0.0031591863371432,0.0098245888948441]],[[-0.019931364804506,0.018109988421202,0.0095254881307483],[0.011107505299151,-0.016761308535933,0.051483508199453],[0.00041657267138362,-0.007428465411067,0.038088984787464]],[[0.052283335477114,0.098747372627258,0.017521159723401],[-0.048794060945511,0.052453048527241,-0.11291724443436],[-0.10965219885111,-0.037669386714697,0.042146168649197]],[[-0.010072267614305,-0.0083991223946214,-0.031278941780329],[0.037111420184374,-0.021482227370143,0.023654708638787],[-0.02367090806365,0.075637646019459,0.062390964478254]],[[0.07789845764637,0.00045008552842773,-0.033775541931391],[0.0036295619793236,0.021364679560065,0.0020802568178624],[-0.071810014545918,0.011980410665274,0.018323445692658]],[[-0.067785881459713,-0.01565826497972,0.042709946632385],[-0.044241800904274,-0.0070927133783698,0.073193036019802],[0.023059142753482,0.038468159735203,0.049109302461147]],[[0.002314604818821,0.0023702862672508,0.030421905219555],[-0.010737411677837,0.019821071997285,-0.0064406949095428],[-0.10097798705101,-0.0080221937969327,-0.018058013170958]],[[0.0077715269289911,0.0010597023647279,-0.019867157563567],[-0.058889385312796,-0.024894094094634,-0.08715583384037],[-0.00433369865641,-0.044626209884882,-0.025909559801221]]],[[[0.10678086429834,-0.020852074027061,-0.034175228327513],[-0.014590612612665,-0.094311855733395,-0.028488764539361],[0.084905125200748,0.039266597479582,0.069897457957268]],[[-0.00566441193223,0.0013623852282763,0.1108482927084],[-0.08144486695528,-0.0037984778173268,-0.031480886042118],[0.03920266777277,0.011060761287808,0.040537774562836]],[[-0.064973868429661,-0.031365565955639,-0.039798222482204],[-0.080534152686596,0.0039086821489036,0.060121022164822],[-0.080011829733849,-0.05025565251708,0.033983495086432]],[[0.010434842668474,-0.0076499851420522,-0.013471649959683],[-0.035840041935444,0.0030182471964508,-0.014972966164351],[0.012860023416579,-0.039082959294319,-0.0022675213404]],[[0.020045964047313,-0.098581030964851,-0.060898885130882],[-0.024625658988953,0.03386964648962,-0.03766243904829],[0.050420243293047,0.081938356161118,0.10710083693266]],[[-0.1035765260458,0.056927930563688,-0.026589624583721],[0.035736884921789,-0.0412278175354,-0.053661949932575],[-0.12712712585926,0.010936614125967,-0.042697489261627]],[[-0.022781889885664,-0.022074852138758,-0.021432612091303],[-0.0022770683281124,0.050031494349241,-0.07117010653019],[-0.0020789511036128,0.037917405366898,0.043844565749168]],[[0.029779877513647,0.016714217141271,0.060724839568138],[0.020837748423219,0.0065179863013327,-0.066833570599556],[-0.065525680780411,-0.076719537377357,-0.067958474159241]],[[-0.022206382825971,0.039325535297394,0.038561873137951],[0.034478981047869,0.04123754426837,0.037975531071424],[0.015272054821253,-0.067375168204308,-0.00033099856227636]],[[-0.03236985579133,-0.067983895540237,0.056942753493786],[0.02620904147625,-0.081089422106743,0.011330724693835],[-0.090965174138546,0.029202312231064,0.049926534295082]],[[-0.13474857807159,-0.026883225888014,-0.021733475849032],[-0.019270438700914,-0.08595622330904,-0.053646720945835],[0.0081687867641449,-0.025896154344082,-0.040362328290939]],[[0.036226011812687,0.063540309667587,0.052709762006998],[-0.050473533570766,0.02924438752234,0.0094326045364141],[0.039282351732254,-0.016174091026187,0.081110015511513]],[[0.011835402809083,-0.05139946565032,0.017929885536432],[-0.069159865379333,0.012089442461729,0.045756723731756],[0.0017052952898666,0.046522442251444,-0.036877863109112]],[[0.071532659232616,-0.066551335155964,-0.04058776050806],[0.097634993493557,0.051190678030252,-0.012189615517855],[0.10042460262775,0.024386851117015,0.0076210647821426]],[[-0.016867017373443,0.10992547869682,0.034856680780649],[0.01408957503736,-0.038929589092731,-0.014536417089403],[0.029875980690122,0.084726728498936,0.072999842464924]],[[-0.00047008506953716,-0.061618808656931,-0.046743921935558],[0.054510399699211,-0.032903663814068,0.062946237623692],[0.063492774963379,0.048649333417416,0.04174629971385]],[[-0.011493712663651,0.028446955606341,0.0372713804245],[0.065028421580791,-0.026774659752846,0.086334846913815],[0.046742957085371,0.041478648781776,0.05161015316844]],[[-0.060218349099159,-0.021502356976271,0.0089232241734862],[-0.037144564092159,-0.049157604575157,0.068306155502796],[0.012132944539189,0.056309800595045,0.14870962500572]],[[0.040789369493723,-0.0067357337102294,-0.013225618749857],[-0.044142164289951,-0.063165992498398,0.025874925777316],[-0.042379204183817,-0.091775543987751,0.034582819789648]],[[-0.016239900141954,0.064300015568733,0.0014798775082454],[0.024099005386233,-0.019250044599175,0.055467694997787],[0.016339875757694,0.0015851369826123,0.043024722486734]],[[0.10309273004532,0.0068516079336405,-0.033677980303764],[0.042703855782747,0.046189453452826,0.085327237844467],[0.077143885195255,0.0096695190295577,0.010666421614587]],[[0.027545116841793,-0.012598887085915,-0.010620503686368],[-0.0075574042275548,-0.011029299348593,-0.046542663127184],[0.020853631198406,-0.056778065860271,-0.020111069083214]],[[-0.086018055677414,-0.074914917349815,-0.0046875164844096],[0.037378635257483,-0.0053721643052995,0.042035352438688],[-0.016245655715466,0.029508410021663,0.088160760700703]],[[0.051936831325293,0.022692250087857,0.034952390938997],[0.014807405881584,-0.076864682137966,-0.028503216803074],[0.018270540982485,0.035812329500914,-0.08222471177578]],[[0.049577254801989,0.076849795877934,0.072967238724232],[0.058112423866987,0.12093032896519,0.043895769864321],[-0.0047168079763651,0.062929540872574,0.061223328113556]],[[-0.0090720737352967,0.062553077936172,0.11476645618677],[9.0767920482904e-05,-0.025601407513022,0.052264429628849],[-0.0062329964712262,0.018118677660823,0.029888929799199]],[[0.016724433749914,0.055413879454136,0.045800913125277],[0.055787440389395,0.065578617155552,0.10301878303289],[-0.014436748810112,0.082322612404823,0.044801905751228]],[[-0.027794724330306,-0.16576707363129,-0.028635017573833],[-0.054288990795612,-0.022814827039838,0.010324071161449],[0.084417641162872,-0.0078280083835125,-0.015926877036691]],[[0.095702104270458,0.035204105079174,-0.0061249742284417],[-0.013812533579767,0.018455971032381,-0.065262950956821],[-0.065369792282581,-0.0027159817982465,-0.054248347878456]],[[0.10716114938259,0.012399341911077,0.038252480328083],[0.06612553447485,0.0640619546175,0.077937670052052],[-0.0077296192757785,0.040569849312305,0.056196268647909]],[[-0.056454170495272,-0.088614165782928,-0.058635234832764],[-0.032111287117004,-0.054268702864647,-0.081327982246876],[-0.036034867167473,0.010300450026989,-0.014403921552002]],[[0.0070634610019624,0.084032371640205,-0.036863923072815],[-0.015101226046681,0.025515221059322,-0.032960567623377],[0.020796036347747,0.010800932534039,-0.026209650561213]],[[-0.042409237474203,-0.040591530501842,-0.047886479645967],[-0.05974081531167,0.08233904838562,-0.080857761204243],[-0.17178864777088,-0.054284252226353,-0.036063831299543]],[[0.02770378626883,0.056329846382141,0.064805395901203],[-0.019936054944992,0.013320752419531,0.045831102877855],[-0.012703436426818,-0.053681191056967,-0.0056093945167959]],[[0.019729880616069,-0.015114915557206,0.019430739805102],[0.037851955741644,0.033844515681267,-0.020077679306269],[0.011459641158581,-0.05032915994525,0.027903800830245]],[[0.012977967038751,0.034798089414835,0.0059742154553533],[-0.041718006134033,-0.0075854742899537,0.021380139514804],[-0.054408948868513,-0.062466353178024,-0.059307154268026]],[[-0.012359173968434,-0.032423872500658,0.083858743309975],[-0.03089583106339,-0.017683167010546,-0.014347399584949],[-0.014286844059825,0.0046557933092117,0.006046914961189]],[[-0.078877002000809,0.0051649417728186,-0.047721549868584],[-0.0037659308873117,0.014091555029154,0.049858145415783],[0.00066236150451005,0.045704517513514,0.002048964612186]],[[-0.043216697871685,-0.035932514816523,-0.010839560069144],[0.0017388159176335,-0.032463319599628,-0.0086486209183931],[-0.026341022923589,-0.057937294244766,-0.024604983627796]],[[0.024441735818982,0.064274966716766,0.021313289180398],[0.0081612197682261,-0.017597939819098,0.012562979012728],[-0.0035358758177608,0.013060082681477,0.023321749642491]],[[0.08324134349823,0.068681947886944,-0.0071239154785872],[-0.034285649657249,0.002051156014204,-0.0020930690225214],[0.00018694285245147,0.007144876755774,0.039644669741392]],[[-0.041632123291492,0.025910828262568,0.041748844087124],[0.0031073270365596,-0.031234808266163,-0.055615484714508],[-0.0010203111451119,-0.034580163657665,-0.0037433395627886]],[[0.079100459814072,0.023880379274487,0.020773755386472],[0.079882323741913,0.043653171509504,0.0201993342489],[0.03728761523962,0.019469682127237,0.017960172146559]],[[0.027379810810089,-0.0018497967394069,0.013510297052562],[-0.064610876142979,0.042610693722963,-0.011503803543746],[-0.0093004936352372,0.0091577712446451,0.069197498261929]],[[-0.04652052745223,-0.061383012682199,0.0058529861271381],[0.04648745059967,-0.019150085747242,-0.010038590058684],[0.095500305294991,0.04231109470129,0.097724974155426]],[[0.0046566436067224,0.070903725922108,-0.051367003470659],[0.092474587261677,-0.0021057776175439,-0.078101627528667],[-0.023578211665154,-0.021760771051049,-0.071565501391888]],[[0.099972456693649,0.0075454469770193,-0.11347199976444],[0.055100448429585,-0.11667028069496,0.022132454439998],[-0.061281196773052,0.009541236795485,-0.055070694535971]],[[0.00044795728172176,-0.035208806395531,-0.063604764640331],[-0.013092845678329,0.0142708029598,0.0011544660665095],[0.05774537473917,-0.0063700382597744,-0.060493014752865]],[[0.026416728273034,0.088851220905781,0.10087054222822],[0.014235357753932,0.001475271419622,0.023890865966678],[-0.026701766997576,-0.023584667593241,0.091443464159966]],[[-0.01987087354064,0.029180800542235,-0.021901477128267],[-0.03999388217926,0.021749299019575,0.00022214982891455],[-0.021284271031618,-0.02675798162818,-0.021531105041504]],[[0.017998810857534,0.018930004909635,0.021732818335295],[-0.026921233162284,0.032984834164381,-0.06121089309454],[0.059171017259359,-0.0075436546467245,0.0079851374030113]],[[-0.038239318877459,0.074545577168465,-0.014989553019404],[0.0060837916098535,0.054901205003262,0.065131701529026],[0.049026798456907,-0.02088232152164,-0.010256319306791]],[[-0.016489110887051,-0.018408207222819,-0.01570950075984],[0.12232065200806,0.062045618891716,0.05043114349246],[-0.036397121846676,-0.032746966928244,-0.027495734393597]],[[0.070715472102165,-0.055872812867165,-0.014123039320111],[0.094277776777744,0.097254812717438,0.054990418255329],[0.084540262818336,0.022283241152763,-0.078936658799648]],[[-0.10685334354639,-0.046885762363672,-0.021765265613794],[-0.017020337283611,-0.013188165612519,0.041791826486588],[-0.023851266130805,-0.02252952940762,-0.033867515623569]],[[0.011872586794198,0.065029852092266,0.073455184698105],[0.032314833253622,-0.029365675523877,0.02534924261272],[0.030853245407343,-0.052332825958729,0.01449008192867]],[[-0.087444700300694,-0.083860345184803,-0.027856644243002],[-0.033625368028879,-0.00025274691870436,0.019085548818111],[-0.022370088845491,-0.026212129741907,0.017295246943831]],[[0.012453579343855,0.01722152903676,-0.020080553367734],[-0.048052370548248,-0.0082448534667492,-0.1159240975976],[-0.012280012480915,-0.07529229670763,-0.10754491388798]],[[0.026522690430284,0.009756182320416,-0.054079882800579],[-0.0058445977047086,0.033301379531622,0.060144584625959],[0.032181542366743,-0.007944512180984,0.014704191125929]],[[0.052914340049028,0.084072835743427,0.058756552636623],[0.031784173101187,-0.039510883390903,-0.039982624351978],[-0.0024312592577189,0.021722014993429,-0.066471368074417]],[[-0.053141321986914,-0.049761056900024,-0.042065769433975],[0.032830100506544,0.06904998421669,0.05476725474],[-0.022666854783893,-0.010352097451687,-0.056713428348303]],[[0.050947200506926,0.001172341639176,0.06296905875206],[-0.028610298410058,-0.065602958202362,-0.044916063547134],[-0.079222656786442,-0.083650827407837,-0.05041766166687]],[[0.038035169243813,0.010757930576801,0.078090526163578],[-0.084681399166584,-0.017042303457856,0.04519060999155],[0.052046932280064,0.046163070946932,0.049135815352201]],[[0.013613369315863,-0.035883810371161,-0.010428819805384],[0.060615234076977,-0.063048884272575,-0.040685590356588],[-0.020039115101099,-0.029842920601368,-0.02404123917222]]],[[[0.071647554636002,-0.051096357405186,0.029743509367108],[0.088310070335865,-0.0065052807331085,0.1128411963582],[-0.073065914213657,0.065910466015339,0.001829803106375]],[[-0.023003133013844,-0.027224760502577,0.02104626968503],[-0.033277004957199,0.03667526319623,-0.032884903252125],[-0.034907873719931,-0.030395155772567,0.0070331552997231]],[[-0.015339281409979,0.0016779848374426,-0.0054559106938541],[-0.041935853660107,0.059407010674477,0.0048419320955873],[0.019967421889305,-0.038732647895813,0.025159189477563]],[[0.026226602494717,0.0042260033078492,-0.044616054743528],[0.0093964226543903,0.030210115015507,0.052709203213453],[-0.0071815433911979,0.052914150059223,0.0010621512774378]],[[0.026237091049552,0.063809111714363,0.00931591168046],[0.0081087313592434,0.011881993152201,-0.007756779436022],[0.047270391136408,-0.0080925347283483,0.021620074287057]],[[-0.026830676943064,-0.081381507217884,-0.0011827525449917],[0.075335338711739,0.04009659960866,0.00062824448104948],[-0.094827242195606,0.075909584760666,-0.12383433431387]],[[-0.0032114270143211,0.0011274701682851,-0.01543266326189],[-0.015788115561008,-0.046915084123611,-0.016931127756834],[0.016590096056461,-0.055531293153763,-0.037412770092487]],[[0.068976327776909,-0.0092353830114007,0.014569173566997],[0.016805984079838,0.015649829059839,-0.039229068905115],[-0.049493234604597,0.0085825808346272,-0.089658193290234]],[[-0.011666759848595,0.0067596514709294,-0.079676389694214],[-0.033268053084612,-0.03810515999794,0.0012592119164765],[0.013872214592993,-0.033356178551912,-0.0041825529187918]],[[-0.029235176742077,-0.0051889643073082,-0.041982803493738],[0.013718892820179,-0.029880777001381,-0.018034549430013],[-0.0073500494472682,0.062962032854557,0.06157149747014]],[[0.0058412333019078,0.0031793254893273,-0.1017853692174],[0.054926633834839,-0.0025217407383025,0.11140839755535],[0.013554020784795,-0.048225603997707,-0.012819125317037]],[[0.046816173940897,0.01170195825398,0.030362877994776],[0.039718061685562,0.023640772327781,0.056325189769268],[0.0075790067203343,0.036221228539944,-0.0029570762999356]],[[0.032843664288521,-0.015698954463005,0.018002944067121],[0.053490854799747,0.018294421955943,0.01810541562736],[-0.021058881655335,0.030245017260313,0.063055150210857]],[[-0.064298048615456,0.011938684619963,0.038104847073555],[-0.039459489285946,0.020010706037283,0.086558543145657],[0.060953710228205,0.053041037172079,0.0036431788466871]],[[-0.038844775408506,-0.035970419645309,0.032106336206198],[0.063294038176537,0.056596167385578,-0.052187394350767],[0.033349562436342,0.059981662780046,0.084582984447479]],[[-0.028281243517995,-0.041656490415335,-0.069816678762436],[-0.08439052850008,0.008664496243,-0.027222454547882],[0.023551151156425,0.00044003548100591,-0.01642126776278]],[[0.039006546139717,0.11602832376957,0.043031416833401],[0.10107992589474,-0.01605574414134,0.026221845299006],[0.010503638535738,0.047004580497742,-0.011367676779628]],[[0.017421819269657,-0.027436850592494,-0.0084139443933964],[0.0054973009973764,0.044819045811892,-0.03972015529871],[0.024018114432693,-0.061680916696787,0.050791401416063]],[[0.027475871145725,0.018133608624339,-0.025931051000953],[-0.056246127933264,-0.0092507293447852,-0.077805563807487],[-0.020402437075973,-0.017253512516618,0.030412336811423]],[[0.039133328944445,0.00034880088060163,-0.038401681929827],[-0.033235002309084,0.028850317001343,0.021749196574092],[0.022411273792386,0.057357184588909,-0.01726465113461]],[[-0.025039901956916,-0.018859405070543,0.040050696581602],[-0.0097258603200316,-0.013909671455622,0.042729120701551],[-0.048037588596344,0.062030460685492,0.055466800928116]],[[-0.021706877276301,0.014207894913852,-0.02961159311235],[0.048369847238064,-0.075988776981831,-0.017767639830709],[-0.046874694526196,0.037600755691528,0.022447856143117]],[[0.069094866514206,-0.0014806899707764,0.0019854228012264],[-0.019556928426027,-0.0072767762467265,-0.032102920114994],[-0.032414391636848,0.03479640558362,0.011174683459103]],[[0.00097080756677315,-0.013903300277889,0.0071422490291297],[-0.0087154908105731,-0.055192105472088,-0.034958083182573],[0.0088855512440205,-0.0022225405555218,-0.0072348625399172]],[[0.0046709743328393,0.023591959849,0.039514269679785],[0.065834484994411,-0.037219129502773,0.0017893983749673],[0.017754247412086,0.039946816861629,0.013823051936924]],[[0.01622655056417,-0.032959222793579,0.0079709505662322],[-0.0075817024335265,-0.020215451717377,-0.02831269428134],[0.036521159112453,-0.035116419196129,0.015989005565643]],[[-0.031317722052336,-0.0098698167130351,-0.034314498305321],[-0.032038401812315,-0.018549930304289,0.052699476480484],[0.040777053683996,-0.013366946019232,-0.0031599847134203]],[[0.076797321438789,0.021962948143482,-0.010380447842181],[0.040488582104445,0.018838800489902,0.023421678692102],[-0.034968238323927,-0.0087803844362497,-0.066705092787743]],[[-0.015367838554084,0.042844183743,-0.012704606167972],[0.00096323009347543,-0.028939289972186,-0.00063191691879183],[-0.021921530365944,-0.028301490470767,-0.0086829997599125]],[[-0.018825750797987,0.011521501466632,-0.040785264223814],[0.057548820972443,-0.0021276390179992,-0.025361163541675],[-0.010466114617884,0.039740145206451,0.0085451118648052]],[[0.061857707798481,-0.038289397954941,-0.047797255218029],[-0.020083228126168,0.041492380201817,-0.017274063080549],[-0.04358671978116,-0.025794722139835,-0.03651936724782]],[[-0.072640396654606,0.029865769669414,0.0082213655114174],[-0.08292131870985,-0.006005872040987,-0.055798038840294],[-0.035376500338316,-0.048763107508421,-0.014730459079146]],[[-0.0078648356720805,0.065050318837166,0.025795051828027],[0.009678733535111,-0.043685335665941,-0.029495576396585],[-0.0031926184892654,0.0011075873626396,-0.025102220475674]],[[0.01180705614388,0.015300631523132,-0.010627492330968],[0.024562114849687,-0.04482726752758,-0.025401504710317],[-0.063367135822773,0.05025003105402,0.05471183359623]],[[0.054208986461163,0.027697812765837,0.049883224070072],[-8.8023021817207e-05,0.013572321273386,0.030509540811181],[-0.061046078801155,-0.012126837857068,0.015673875808716]],[[-0.033939935266972,0.065209768712521,0.0067319138906896],[0.0059768743813038,-0.030977929010987,-0.026300955563784],[-0.085875995457172,-0.020993661135435,-0.032772820442915]],[[0.022056939080358,0.03417032957077,-0.024411901831627],[-0.045651625841856,0.016258487477899,-0.04141791164875],[0.066066831350327,0.056406397372484,0.00094635767163709]],[[0.00085184775525704,-0.032861027866602,-0.024625774472952],[-0.0076071252115071,-0.007397476118058,0.036273617297411],[-0.079937249422073,-0.0044690878130496,-0.060027331113815]],[[0.0088492594659328,0.056646153330803,-0.094150997698307],[-0.07644148170948,-0.041156601160765,-0.076369568705559],[0.031364977359772,0.012926016934216,-0.048282887786627]],[[0.033202864229679,0.064215391874313,0.00079683045623824],[0.024076323956251,0.0230956915766,-0.058582466095686],[0.016544541344047,0.048758670687675,-0.0056032133288682]],[[0.053859405219555,-0.0017023145919666,0.060883317142725],[-0.027307335287333,0.070041842758656,-0.031739596277475],[-0.057236645370722,0.029288180172443,-0.017933167517185]],[[-0.096762850880623,-0.060996577143669,-0.019933387637138],[0.0028176486957818,0.020028317347169,0.029103754088283],[0.057852581143379,-0.0059699770063162,0.061065837740898]],[[-0.047787040472031,-0.021034302189946,0.014430472627282],[-0.03250690177083,0.016439331695437,0.0010891010751948],[-0.0009376707021147,-0.034354317933321,0.094441652297974]],[[0.0021579551976174,-0.0088207023218274,-0.078409932553768],[0.021421182900667,0.022377667948604,0.049612674862146],[-0.013907010667026,0.038746554404497,-0.027600163593888]],[[0.074082493782043,-0.028954569250345,-0.054871335625648],[-0.0026205363683403,-0.0091892648488283,0.004395411349833],[-0.011976204812527,-0.044307537376881,0.0076418234966695]],[[0.00413305638358,-0.010072345845401,-0.01212402805686],[-0.035824667662382,-0.042515128850937,0.065032735466957],[0.008479718118906,-0.032659463584423,-0.019561728462577]],[[0.0010349412914366,-0.036119364202023,0.073137231171131],[0.057414148002863,0.089224524796009,0.027348782867193],[0.0057127606123686,-0.040314123034477,-0.055549308657646]],[[0.033364742994308,0.03070954605937,0.057088520377874],[0.011986897327006,0.010748495347798,0.078657098114491],[-0.021882684901357,0.073750488460064,0.01346320938319]],[[0.0053303511813283,0.02726736664772,0.011056769639254],[0.033781711012125,0.022553721442819,0.019888743758202],[0.027064824476838,0.051324602216482,0.020611910149455]],[[0.023208692669868,0.058271441608667,-0.014990538358688],[0.0029701378662139,0.0395792350173,0.087095357477665],[-0.056764043867588,0.026978431269526,-0.068476520478725]],[[-0.046821143478155,0.0068710371851921,0.023663673549891],[0.01408561412245,-0.0025717713870108,-0.041561510413885],[0.017617302015424,-0.038841567933559,0.001334086060524]],[[-0.017123553901911,0.031454440206289,0.034617945551872],[0.0083495583385229,0.048809520900249,-0.015398196876049],[0.042832441627979,0.058006945997477,0.095027431845665]],[[0.0032380551565439,-0.0037537303287536,0.033463064581156],[0.0069768349640071,0.020569143816829,-0.011674867011607],[0.0015806616283953,-0.0033877424430102,0.021977650001645]],[[0.038444228470325,0.085032097995281,-0.011725416406989],[0.051005467772484,0.03445964679122,0.062413979321718],[0.046302583068609,-0.040439262986183,0.082943841814995]],[[0.039795700460672,0.023000169545412,0.031164277344942],[0.0053573502227664,-0.016928231343627,-0.047114990651608],[0.020731162279844,0.033961053937674,0.039506278932095]],[[-0.049789026379585,-0.034050185233355,0.029605012387037],[0.023195112124085,0.030911989510059,-0.036123655736446],[-0.045506034046412,0.0051745069213212,-0.017568983137608]],[[0.014633257873356,0.044406604021788,0.019425900653005],[0.031942181289196,0.013811568729579,0.0090382508933544],[0.019325464963913,0.054200146347284,0.033150728791952]],[[0.041140746325254,0.01108247321099,0.0081760035827756],[0.012811763212085,0.022895803675056,0.038393188267946],[-0.0041769053786993,0.028215704485774,-0.039651725441217]],[[0.052006874233484,0.060315579175949,0.014625994488597],[-0.061836462467909,0.014687677845359,-0.078785963356495],[-0.033091843128204,0.076058484613895,0.025324871763587]],[[-0.0052637509070337,-0.041571248322725,0.030056849122047],[0.070901863276958,0.0058913617394865,0.028289124369621],[0.0074646454304457,-0.017240971326828,0.027012336999178]],[[0.043220240622759,-0.0020035996567458,-0.016758285462856],[0.071383491158485,0.017048478126526,0.050436738878489],[-0.025830235332251,0.017981911078095,-0.034261804074049]],[[0.0091953109949827,-0.023316472768784,-0.032200120389462],[0.020302280783653,0.046180814504623,-0.030995232984424],[-0.030714198946953,0.0044290479272604,0.081999696791172]],[[0.0073970607481897,-0.024303272366524,0.019129354506731],[0.0099333859980106,0.020734079182148,-0.031495250761509],[0.021883936598897,0.0086154043674469,-0.042188752442598]],[[0.048520319163799,-0.0065500750206411,0.016029568389058],[-0.044629987329245,0.015629194676876,-0.03062435425818],[-0.012495242059231,-0.0067106396891177,-0.019603768363595]]],[[[-0.054210782051086,-0.048008441925049,-0.011176490224898],[-0.14301943778992,0.0011019987287,0.073087975382805],[-0.037720508873463,0.0062152910977602,0.0975401699543]],[[0.10960927605629,0.1078360453248,0.063182651996613],[-0.03186871483922,0.018042974174023,0.036833435297012],[-0.01199700217694,0.10993164777756,-0.096351400017738]],[[-0.0097556049004197,0.0021274229511619,-0.036039460450411],[-0.033237848430872,-0.044483121484518,-0.050327692180872],[-0.010843401774764,-0.081342101097107,-0.072561874985695]],[[0.014749957248569,-0.11225760728121,0.13395130634308],[-0.019658457487822,-0.068199478089809,-0.086569286882877],[-0.14358966052532,-0.054058112204075,-0.081611759960651]],[[0.11109974235296,-0.019613433629274,-0.0028540682978928],[0.030564857646823,0.062061101198196,0.020897403359413],[-0.005657556001097,0.0026420892681926,-0.0083111301064491]],[[0.060891207307577,-0.069730296730995,0.076400592923164],[0.068657122552395,-0.028232431039214,-0.097298443317413],[-0.10036379098892,0.035543590784073,-0.0881068110466]],[[-0.026040010154247,-0.034094728529453,-0.044579785317183],[0.018294373527169,-0.019680446013808,0.023870078846812],[-0.034479465335608,0.046946167945862,0.0053310934454203]],[[-0.010768941603601,-0.036647651344538,-0.011443378403783],[-0.058482382446527,-0.048288464546204,-0.029326763004065],[-0.016876628622413,0.13496638834476,0.0060350047424436]],[[0.033404946327209,0.050358101725578,0.055369440466166],[0.066737599670887,-0.023219084367156,-0.019313519820571],[0.068152584135532,-0.12089940160513,0.0051038106903434]],[[0.11226464062929,0.13541622459888,-0.12829205393791],[-0.12136593461037,0.095044523477554,-0.036368951201439],[0.023734174668789,-0.0065499553456903,0.026974761858582]],[[-0.1281876116991,0.048444122076035,-0.085619688034058],[-0.075249627232552,0.014254918321967,0.030974647030234],[-0.046717990189791,0.018997924402356,-0.046040415763855]],[[-0.19025023281574,0.10475518554449,-0.16612440347672],[-0.23341625928879,-0.15453879535198,0.028725497424603],[0.16801880300045,-0.11349193006754,0.1078926846385]],[[-0.035504546016455,0.031373146921396,-0.023859634995461],[0.028292866423726,-0.012449675239623,-0.067497156560421],[-0.032929837703705,0.061855833977461,-0.016888635233045]],[[0.038230080157518,-0.088770315051079,0.020983340218663],[-0.041321590542793,0.064501062035561,0.042828992009163],[-0.079831518232822,0.15479069948196,-0.10697387158871]],[[-0.061979502439499,-0.093216978013515,-0.013109440915287],[0.022909978404641,0.06586892157793,-0.0094221336767077],[0.057533588260412,0.069189965724945,-0.0015409665647894]],[[-0.089077733457088,-0.038373149931431,0.08162098377943],[0.0047665708698332,-0.14114183187485,-0.0047589824534953],[0.056112784892321,-0.07341867685318,-0.010140406899154]],[[-0.11281795799732,-0.1071637570858,-0.19298656284809],[-0.017508700489998,-0.081000261008739,-0.13240261375904],[0.0091307898983359,0.015329669229686,-0.10948140919209]],[[-0.0056905434466898,-0.055232688784599,0.017960531637073],[0.020159903913736,-0.083554692566395,0.014019114896655],[-0.068688161671162,0.074325799942017,-0.059656828641891]],[[-0.033272907137871,-0.17253151535988,0.021788539364934],[0.0084024472162127,-0.026279317215085,-0.021332567557693],[-0.069096907973289,-0.075469821691513,0.081184253096581]],[[0.11537633091211,-0.02472591213882,0.018050676211715],[0.073736816644669,0.088127620518208,-0.0024703454691917],[-0.049724951386452,-0.043166991323233,-0.062394618988037]],[[0.043383337557316,-0.0051920460537076,-0.044953800737858],[0.13061547279358,-0.020791053771973,0.012853444553912],[-0.027979273349047,-0.017481004819274,0.137296423316]],[[0.1614762544632,-0.072077862918377,0.057554680854082],[-0.080243624746799,0.0061244517564774,-0.045434426516294],[-0.074887290596962,0.024425856769085,-0.052883349359035]],[[-0.076974637806416,0.011348420754075,-0.029834510758519],[0.010204532183707,0.004320751875639,0.012171684764326],[0.045486573129892,0.010664721019566,0.015660731121898]],[[0.043054416775703,0.066316269338131,-0.0029409658163786],[-0.062472548335791,0.036666437983513,0.034482665359974],[0.0050330245867372,0.0026339767500758,-0.075838252902031]],[[-0.027219334617257,0.08066201210022,-0.018564362078905],[-0.039336554706097,0.17363204061985,0.0097426483407617],[-0.03251526504755,0.033243671059608,0.037402216345072]],[[0.043833158910275,-0.018791293725371,0.013799967244267],[0.022087892517447,0.13024616241455,0.0209477879107],[-0.00045172256068327,-0.0028786195907742,0.042923457920551]],[[0.054926358163357,0.13381294906139,-0.049530006945133],[-0.026167653501034,-0.016103211790323,0.0010637977393344],[-0.039603985846043,0.040617793798447,-0.12214330583811]],[[-0.11139159649611,0.078090004622936,-0.048843953758478],[-0.035503394901752,0.048648275434971,0.040779259055853],[0.096742384135723,0.012510053813457,0.075398489832878]],[[-0.016851611435413,-0.093104615807533,-0.016915017738938],[-0.020293075591326,0.019702732563019,-0.023527052253485],[-0.10212904959917,0.15317924320698,0.023740492761135]],[[0.0038409035187215,0.073113925755024,-0.066327303647995],[-0.038457233458757,0.055300340056419,0.0036523600574583],[-0.029518477618694,0.032178536057472,0.098614484071732]],[[-0.014651607722044,-0.15781047940254,-0.016277838498354],[-0.044072382152081,0.10650859028101,-0.06366878002882],[-0.049660347402096,0.17166920006275,-0.16002771258354]],[[0.12265687435865,-0.069863043725491,0.083575792610645],[0.017657833173871,0.0096944244578481,-0.035744648426771],[-0.24340544641018,0.11256841570139,-0.072191998362541]],[[-0.051121678203344,-0.080036871135235,-0.098717056214809],[0.014272546395659,-0.005952135194093,-0.070774786174297],[0.064481370151043,0.079482242465019,-0.00086926820222288]],[[-0.041538458317518,-0.068881720304489,0.045828875154257],[-0.042350962758064,-0.032834447920322,-0.074036508798599],[0.065951637923717,-0.065435849130154,-0.073360286653042]],[[0.040411550551653,-0.066336810588837,0.1451550424099],[0.059033080935478,-0.008553528226912,0.00043907188228332],[-0.011803510598838,-0.0001182061896543,-0.073144562542439]],[[-0.019700353965163,0.021724654361606,0.018460378050804],[0.012075383216143,-0.036390595138073,-0.05988908931613],[-0.10656733065844,0.037818782031536,-0.024328822270036]],[[0.099658496677876,-0.021824093535542,-0.0682732462883],[-0.0051446189172566,-0.040220659226179,-0.024653075262904],[-0.07908196747303,0.086276561021805,-0.036511469632387]],[[-0.038928911089897,0.22398091852665,-0.031171042472124],[-0.11097583174706,0.14321388304234,-0.11829943209887],[-0.069779142737389,-0.1023985594511,0.080562978982925]],[[-0.21513338387012,0.01602666079998,0.097954094409943],[-0.066738724708557,-0.042415525764227,0.1470832824707],[-0.021599432453513,0.051094617694616,-0.034120317548513]],[[-0.06681639701128,0.012646980583668,-0.014611597172916],[0.018265679478645,0.039996184408665,-0.01477194391191],[0.061384581029415,-0.018386382609606,0.02515166439116]],[[-0.0036885156296194,-0.0054022031836212,0.11183320730925],[-0.019518217071891,-0.029072025790811,0.062762320041656],[0.024215810000896,-0.12709186971188,0.0075336140580475]],[[-0.070873059332371,-0.12891627848148,0.18372966349125],[-0.032558917999268,0.077287778258324,-0.069217637181282],[-0.086042702198029,0.15781328082085,-0.074356943368912]],[[-0.099519178271294,0.063655480742455,0.048036575317383],[0.069547064602375,-0.054794136434793,0.06010776758194],[0.12227462977171,0.021324306726456,0.031046483665705]],[[0.097485981881618,-0.064290516078472,0.098885580897331],[-0.0018107205396518,-0.035449113696814,-0.10831431299448],[-0.10586653649807,0.1947705000639,-0.090549252927303]],[[-0.0073760715313256,0.066370569169521,-0.042670480906963],[0.046466950327158,0.095087669789791,-0.0072816419415176],[-0.047606285661459,-0.11576745659113,0.029700394719839]],[[0.13078294694424,-0.14703695476055,0.10315765440464],[0.1512592881918,-0.03882347419858,0.034965824335814],[0.048144340515137,0.11472074687481,-0.18981982767582]],[[0.079613603651524,-0.0062416642904282,0.010889030061662],[0.077978827059269,-0.11808688938618,-0.03795849531889],[0.076093338429928,-0.11643204838037,-0.070371501147747]],[[-0.065217897295952,-0.044056337326765,-0.019331881776452],[-0.048353653401136,0.075155705213547,-0.014940351247787],[0.02447003684938,-0.036731090396643,-0.041025463491678]],[[-0.020591484382749,-0.061514776200056,0.093136675655842],[0.0064142174087465,-0.01307097543031,-0.12200000137091],[0.021611578762531,0.030796965584159,-0.052669458091259]],[[0.044026959687471,-0.0036384956911206,0.20084607601166],[-0.039090000092983,-0.070185102522373,0.044280026108027],[-0.058830510824919,-0.027857465669513,-0.13283330202103]],[[0.012475250288844,0.013047087937593,0.00068430980900303],[-0.066411502659321,-0.1124452650547,0.02075563184917],[0.046958889812231,-0.018973004072905,-0.0042303260415792]],[[0.010148327797651,-0.0027728474233299,0.021894568577409],[0.041124146431684,0.039071187376976,-0.049989975988865],[-0.071633562445641,0.050746414810419,-0.063508301973343]],[[-0.06034154817462,-0.01698693819344,0.043671824038029],[-0.10263859480619,-0.024470772594213,0.034434724599123],[-0.022961113601923,-0.019548131152987,-0.031452085822821]],[[0.070480056107044,0.039598572999239,0.10856268554926],[-0.012083834968507,0.058544803410769,0.0054983580484986],[0.0043351696804166,0.10413421690464,-0.12947870790958]],[[-0.025141531601548,-0.0026205701287836,-0.04402668774128],[-0.0406773686409,0.041982039809227,-0.07842480391264],[-0.13468842208385,0.16985061764717,0.06427439302206]],[[-0.0085299666970968,-0.039077267050743,0.016779579222202],[0.057617414742708,0.03850207477808,0.033778943121433],[-0.016969032585621,-0.0094868196174502,-0.063332960009575]],[[0.047622751444578,-0.050001326948404,-0.096118576824665],[-0.16396781802177,0.01179514080286,-0.037037909030914],[-0.027454031631351,-0.092548012733459,-0.02807136438787]],[[-0.024278933182359,0.00099802855402231,-0.048608478158712],[-0.067015804350376,-0.034611701965332,-0.12662357091904],[0.00067583471536636,-0.13518659770489,-4.9081587349065e-05]],[[0.0089761735871434,-0.037952359765768,-0.1295965462923],[-0.16801916062832,-0.13570894300938,-0.085047408938408],[-0.062754906713963,0.064776323735714,0.07242875546217]],[[0.061326876282692,0.031830798834562,0.011309570632875],[-0.026490958407521,0.011942465789616,-0.025217605754733],[0.016777373850346,-0.038637861609459,-0.030482893809676]],[[0.039430845528841,-0.080726519227028,0.03927356377244],[0.096896685659885,-0.069407314062119,0.040209013968706],[-0.060423191636801,0.036209590733051,0.05841638147831]],[[-0.077740177512169,0.17694054543972,0.022434180602431],[-0.065060809254646,0.015839846804738,0.0021362255793065],[0.057040013372898,-0.048866759985685,-0.049728836864233]],[[-0.076766222715378,0.13066923618317,-0.10752874612808],[-0.0022763528395444,-0.17515096068382,0.11413323879242],[0.14915381371975,-0.18614989519119,0.093045853078365]],[[0.0091623878106475,-0.11101473122835,0.019563300535083],[0.022611299529672,-0.045956816524267,0.060263205319643],[-0.12032920867205,-0.0039188642986119,0.021103750914335]]],[[[0.041878834366798,-0.023095849901438,0.01359532866627],[-0.0035882585216314,0.076917544007301,-0.11726652085781],[0.089956387877464,-0.054326727986336,0.012557553127408]],[[-0.0038457775954157,-0.0033195975702256,0.024983733892441],[0.0090544205158949,0.025219328701496,-0.048651218414307],[-0.016768576577306,-0.016718450933695,0.0070216492749751]],[[0.048252932727337,0.038456540554762,0.10430442541838],[-0.090924210846424,-0.035103026777506,0.11225540190935],[-0.0077613834291697,-0.072108417749405,-0.058449976146221]],[[0.040172874927521,0.018314121291041,0.010281634517014],[-0.069118157029152,-0.038812339305878,-0.032235637307167],[-0.02287246286869,-0.012228364124894,-0.035970214754343]],[[0.001401666784659,0.0048402170650661,-0.048449721187353],[0.068470932543278,0.037260204553604,-0.022879038006067],[-0.053079687058926,-0.025951504707336,0.019775431603193]],[[0.023383691906929,-0.061596099287271,0.23625725507736],[-0.1188964471221,-0.13891397416592,0.017203912138939],[-0.10277514904737,-0.013428922742605,0.045120049268007]],[[-0.026504760608077,-0.0070300004445016,-0.028754962608218],[0.0056415037252009,-0.0090752094984055,-0.052395522594452],[-0.0010611374164,-0.059993170201778,-0.015787709504366]],[[-0.027536215260625,0.12438219040632,0.017471784725785],[-0.22624935209751,-0.012101721949875,-0.0031892796978354],[0.0560352653265,0.011117541231215,0.021579561755061]],[[0.026288576424122,0.022246023640037,-0.0086976159363985],[0.023930979892612,0.0010565255070105,0.063278436660767],[-0.015660254284739,0.051484629511833,0.013935302384198]],[[0.038746628910303,-0.023801071569324,0.02478346042335],[0.0077597675845027,-0.031946033239365,-0.04585961997509],[-0.0047653070650995,-0.034461107105017,0.050404448062181]],[[-0.070856273174286,-0.062490962445736,-0.078716725111008],[-0.07028279453516,0.012803959660232,0.081293784081936],[0.059131618589163,0.02177644893527,-0.011577595956624]],[[-0.058914184570312,-0.045772936195135,0.032700676470995],[0.0048230914399028,0.011617975309491,-0.041986215859652],[-0.026945043355227,-0.088908046483994,-0.011797957122326]],[[0.0066930525936186,-0.050214562565088,-0.011897369287908],[-0.0086540943011642,-0.0070727546699345,-0.045269813388586],[-0.049499977380037,-0.049467410892248,0.012642262503505]],[[-0.049042101949453,0.034020006656647,0.031173598021269],[0.054001931101084,0.018764214590192,0.028122315183282],[0.052640672773123,0.031407587230206,0.058474022895098]],[[0.055092006921768,-0.018254622817039,-0.090497575700283],[0.029631299898028,0.076959580183029,0.01480804104358],[0.01582658290863,-0.032987467944622,0.0027849862817675]],[[-0.05723936855793,-0.099907733500004,0.00083113560685888],[0.0073668383993208,0.076039008796215,-0.053640022873878],[0.056931883096695,0.068230204284191,0.0096813617274165]],[[0.019667977467179,0.022859623655677,0.067188367247581],[0.015201830305159,-0.035028282552958,-0.01305088493973],[-0.044639226049185,0.040235683321953,0.0078400280326605]],[[0.0027585495263338,0.046001803129911,-0.0077328630723059],[-0.053604919463396,-0.051825400441885,-0.029304180294275],[-0.024259360507131,-0.017081625759602,0.082228519022465]],[[0.013789068907499,0.0010452183196321,-0.017605405300856],[0.017153527587652,0.038836468011141,-0.038718182593584],[-0.017986461520195,-0.059292521327734,-0.01795007288456]],[[0.0027175559662282,0.015828149393201,0.01572347432375],[-0.033051181584597,0.0051048435270786,0.0045399265363812],[0.036897696554661,-0.07892045378685,0.024716487154365]],[[-0.0062204538844526,-0.070791386067867,0.0061606233939528],[0.070168778300285,-0.0089998338371515,-0.0038040792569518],[0.021775348111987,0.051802758127451,0.013956560753286]],[[0.024201029911637,-0.040985446423292,0.077977783977985],[-0.028414037078619,-0.067191064357758,0.00080988853005692],[0.042396765202284,-0.055339749902487,0.028382230550051]],[[0.021923428401351,-0.021641159430146,-0.025693049654365],[-0.042968101799488,0.051977436989546,0.048805318772793],[0.013033809140325,0.0081911822780967,-0.052032582461834]],[[-0.033983215689659,0.013949085958302,-0.025946760550141],[0.0013692115899175,0.019135907292366,0.0044481609947979],[-0.086962297558784,-0.012219940312207,0.0046027493663132]],[[0.0031054429709911,0.035844523459673,0.0020157978869975],[0.022650169208646,-0.048847232013941,-0.029748803004622],[0.022871831431985,-0.098437018692493,-0.034629482775927]],[[-0.048198357224464,-0.13013279438019,-0.064623586833477],[0.021821454167366,0.012229109182954,-0.0064610107801855],[-0.056795906275511,-0.021075984463096,-0.061790365725756]],[[0.049422405660152,-0.063921332359314,0.099788933992386],[-0.021332522854209,0.059244852513075,-0.0095661729574203],[-0.070410117506981,-0.078245289623737,-0.10289430618286]],[[-0.038724191486835,-0.01130058709532,-0.041639618575573],[0.046186257153749,-0.032826974987984,-0.051267132163048],[0.080896526575089,-0.0060598128475249,-0.0044688601046801]],[[-0.15440368652344,0.1037262827158,-0.050336953252554],[0.12040498107672,-0.048069529235363,0.018808573484421],[-0.023658756166697,-0.025796610862017,-0.010516871698201]],[[0.017796063795686,-0.0040946109220386,-0.088890671730042],[-0.014871508814394,-0.031486101448536,-0.043538257479668],[0.01518539711833,-0.0024364138953388,-0.031328734010458]],[[0.036922186613083,-0.045839332044125,0.07769438624382],[0.01520627643913,-0.025038205087185,-0.013253595679998],[-0.018525134772062,-0.085014916956425,-0.083922021090984]],[[-0.050780024379492,-0.052669197320938,0.041833978146315],[0.039129961282015,0.0020799541380256,-0.042720168828964],[-0.033537656068802,0.025434846058488,0.056635528802872]],[[0.037850167602301,0.081468552350998,-0.019807931035757],[-0.029481021687388,-0.062799997627735,-0.075692355632782],[0.0018336890498176,0.07362225651741,-0.037597451359034]],[[0.017696755006909,0.0026087537407875,-0.012522319331765],[-0.0021776494104415,-0.050479266792536,-0.034697901457548],[-0.073520913720131,0.0097492076456547,0.073166981339455]],[[-0.0095635009929538,-0.0075196195393801,-0.012973229400814],[-0.0041247578337789,-0.053578663617373,0.0040384391322732],[-0.022166192531586,-0.0090889055281878,0.038297060877085]],[[-0.037128519266844,0.022216940298676,0.03382121026516],[0.055732939392328,-0.0091373864561319,-0.01117058377713],[-0.049662001430988,-0.10157331079245,-0.039975471794605]],[[-0.064633652567863,-0.099257744848728,-0.062880992889404],[0.14122258126736,-0.051036585122347,-0.051992241293192],[-0.0038518854416907,-0.042463347315788,0.041725773364305]],[[-0.027690822258592,-0.064565077424049,0.12420319020748],[0.13603492081165,-0.020615926012397,-0.017108097672462],[-0.045725118368864,0.010158156044781,-0.013899177312851]],[[-0.012113648466766,-0.006052169483155,-0.0014070514589548],[-0.026999223977327,-0.037621133029461,0.0078434636816382],[0.0028591239824891,-0.058554690331221,0.062847413122654]],[[0.044755835086107,0.013329396024346,0.046489395201206],[-0.01816700771451,0.046155016869307,0.039723958820105],[-0.0055935489945114,-0.007807647343725,0.057538829743862]],[[-0.01171562820673,-0.05989146232605,-0.0090398667380214],[-0.031711753457785,0.063571132719517,0.046716723591089],[0.0015420006820932,-0.045331973582506,-0.0047380495816469]],[[-0.093099415302277,-0.081980250775814,-0.035343810915947],[0.024631757289171,-0.016405636444688,-0.082434542477131],[-0.012538246810436,-0.00070930499350652,0.073989368975163]],[[-0.058485765010118,-0.057437777519226,0.08280361443758],[-0.03397798538208,0.056351158767939,-0.02066788636148],[0.056103322654963,-0.02024676464498,0.093882888555527]],[[0.042204789817333,-0.003129311138764,0.04130545258522],[0.0041004065424204,-0.0090743033215404,0.032210048288107],[-0.032520178705454,0.038295187056065,-0.0013337843120098]],[[0.0093982461839914,-0.010638467036188,-0.055537261068821],[0.057463467121124,0.037606507539749,0.10393550992012],[-0.016224853694439,0.048055931925774,0.0022813330870122]],[[-0.035151898860931,-0.03703398257494,0.044510550796986],[0.045513644814491,0.017598325386643,0.025094766169786],[0.017574476078153,-0.030461460351944,-0.052682790905237]],[[0.034528899937868,0.077106110751629,0.077406339347363],[0.033215627074242,-0.018466331064701,-0.042555909603834],[0.0051752803847194,0.033718124032021,-0.053978394716978]],[[0.031389653682709,0.058609012514353,0.046172525733709],[-0.019337791949511,0.082847744226456,-0.011419951915741],[0.011321088299155,0.051301069557667,-0.022579502314329]],[[0.040042940527201,0.025422982871532,0.057526096701622],[-0.060340110212564,-0.038966841995716,0.034900367259979],[0.10505554080009,-0.026760524138808,-0.0031844431068748]],[[0.058691766113043,-0.022554250434041,0.085743457078934],[-0.00078164553269744,0.01616290025413,-0.091843396425247],[-0.035568237304688,0.014807564206421,0.053183153271675]],[[0.021971324458718,-0.0051589664071798,0.053961709141731],[-0.0060982648283243,-0.019337430596352,-0.019027821719646],[0.044819194823503,0.014082347974181,0.012406386435032]],[[-0.054194312542677,0.035168841481209,0.011868622153997],[-0.00032416777685285,0.0036203099880368,-0.0080160107463598],[0.051139336079359,-0.023090882226825,0.018330182880163]],[[0.022042427212,-0.00063365785172209,0.048487089574337],[-0.074586868286133,-0.014829017221928,-0.010698071680963],[-0.094926871359348,-0.047740485519171,-0.0067719947546721]],[[0.089691616594791,0.01077151671052,0.0074829161167145],[0.040959242731333,0.13511015474796,0.029002586379647],[0.022977696731687,-0.0029682668391615,0.032227039337158]],[[-0.033629201352596,-0.12245750427246,0.0090321600437164],[0.065866440534592,0.075176388025284,-0.046432085335255],[0.01969738304615,-0.039248023182154,-0.021670181304216]],[[0.0010979367652908,-0.026660934090614,-0.05016653239727],[-0.041609831154346,0.037200018763542,-0.067734107375145],[0.011982900090516,-0.075136184692383,0.037280071526766]],[[-0.045374855399132,-0.019193278625607,-0.050517786294222],[-0.033609926700592,0.031915783882141,0.02971725165844],[-0.034000564366579,-0.065289355814457,-0.02926048822701]],[[0.018256908282638,0.022783728316426,0.038026742637157],[0.012632844038308,-0.065357580780983,0.010876975953579],[0.0053141685202718,0.00029078987427056,0.05955333635211]],[[0.0039826701395214,0.073184818029404,0.028328256681561],[-0.055709928274155,-0.014138381928205,0.0086590955033898],[0.0039694220758975,0.068072594702244,-0.04415787011385]],[[0.015038303099573,-0.032719969749451,0.022739168256521],[0.020523464307189,0.053934216499329,-0.022094305604696],[-0.029388323426247,-0.02310031466186,0.0495540574193]],[[0.041015461087227,-0.043462991714478,-0.035282015800476],[-0.049102503806353,-0.0017243231413886,-0.056249309331179],[0.021392252296209,-0.036449491977692,-0.0056605767458677]],[[-0.0024170216638595,-0.010347351431847,-0.066165275871754],[0.073253281414509,0.015619982033968,-0.00045351195149124],[-0.056767269968987,0.039884638041258,-0.040863342583179]],[[-0.13079218566418,-0.0013701620046049,-0.034083422273397],[0.10312435030937,-0.027616422623396,-0.0050382809713483],[-0.0038354848511517,-0.039412338286638,-0.019207445904613]],[[0.0081752557307482,0.051905520260334,0.082457907497883],[-0.047739468514919,0.027756236493587,-0.015124631114304],[-0.02021761611104,-0.094178654253483,0.024993928149343]]],[[[0.03481337800622,-0.084692053496838,0.055070348083973],[-0.077320918440819,-0.0029887519776821,0.0026507850270718],[0.020198862999678,0.0091246059164405,0.020137120038271]],[[0.042988613247871,-0.073270544409752,-0.058928590267897],[-0.030452102422714,-0.011974280700088,0.0046582389622927],[-0.011447335593402,-0.068669863045216,0.089255623519421]],[[0.10366261005402,-0.029715994372964,0.052414406090975],[-0.0028858880978078,0.016898013651371,-0.042830552905798],[0.037366978824139,-0.010914182290435,-0.17430911958218]],[[0.028033908456564,0.021517813205719,-0.060335047543049],[0.037785459309816,-0.040667880326509,-0.0071242777630687],[-0.05358000844717,0.10982314497232,-0.10220429301262]],[[0.0031364653259516,0.05417974665761,-0.01842207275331],[0.010049326345325,0.032837983220816,0.091257110238075],[0.023993430659175,-0.071301750838757,-0.11856991797686]],[[-0.062447838485241,0.1240497007966,0.0072923502884805],[0.079879134893417,0.066723190248013,-0.026296371594071],[-0.040676180273294,-0.052260711789131,-0.028314337134361]],[[-0.019615031778812,0.059622507542372,-0.002695226110518],[-0.028417337685823,-0.068541586399078,0.031179590150714],[-0.0097977006807923,-0.089941598474979,-0.049266912043095]],[[0.083779036998749,-0.022427575662732,-0.00756152626127],[0.027366569265723,-0.098947659134865,-0.038394566625357],[-0.02292993851006,0.12275507301092,-0.028229258954525]],[[-0.01834917999804,0.0056007471866906,0.0074143074452877],[0.067522749304771,0.042029414325953,-0.066818565130234],[-0.010649069212377,0.069564886391163,-0.11895148456097]],[[-0.0063123200088739,-0.0082357861101627,0.09778193384409],[-0.0074395728297532,-0.012232312932611,0.099511094391346],[0.015802169218659,0.091590516269207,-0.079152643680573]],[[0.042610857635736,-0.022227754816413,-0.099023558199406],[-0.048839580267668,0.045023363083601,0.036465257406235],[0.051819022744894,0.017057588323951,-0.0089092534035444]],[[0.13108672201633,0.1386232227087,-0.039699599146843],[-0.066219970583916,-0.072365410625935,-0.047022789716721],[-0.0693693831563,0.0115513978526,0.088748835027218]],[[0.013316189870238,0.0080591384321451,-0.037175182253122],[0.054650761187077,0.03465049341321,-0.0065691261552274],[0.0173828471452,-0.05951214581728,0.15730954706669]],[[-0.028121357783675,0.050202321261168,0.034431058913469],[-0.0063490495085716,0.037813104689121,0.094235301017761],[0.0056565953418612,0.0033587429206818,-0.052143763750792]],[[0.10283874720335,-0.037097215652466,-0.011816255748272],[-0.07560358196497,0.0037180867511779,0.01702282205224],[0.095499321818352,-0.10214137285948,0.15113957226276]],[[-0.11547746509314,0.010529203340411,-0.0040748012252152],[-0.039043035358191,0.19615417718887,0.044369108974934],[-0.051167160272598,-0.024531463161111,0.054859559983015]],[[-0.014753042720258,0.0033452496863902,-0.052876770496368],[0.017249347642064,-0.17515975236893,-0.036425292491913],[0.016669973731041,-2.5406012355234e-05,0.011199929751456]],[[-0.023621363565326,0.00013624904386234,-0.033320300281048],[-0.0014708227245137,-0.046977356076241,0.020296648144722],[-0.048773977905512,-0.069410018622875,-0.0087823383510113]],[[-0.0046890317462385,-0.088132597506046,-0.0017584972083569],[-0.046880666166544,0.022650890052319,0.053256336599588],[-0.11658497154713,0.093386821448803,-0.13193525373936]],[[-0.079791508615017,0.012520391494036,-0.02721719071269],[0.0241105761379,0.055490363389254,0.0038029479328543],[0.0615114569664,0.052538394927979,0.06402438133955]],[[0.082576349377632,-0.030174089595675,0.13740642368793],[-0.090653717517853,0.076073072850704,0.061800673604012],[0.022016976028681,0.04683618247509,0.013547118753195]],[[-0.14717036485672,-0.11135759949684,-0.021333917975426],[-0.0023588198237121,0.051802467554808,-0.071792341768742],[0.058943398296833,0.064433962106705,0.0091168386861682]],[[0.051925376057625,-0.0063509391620755,0.0082158176228404],[0.0080023482441902,0.071952417492867,-0.088501363992691],[-0.0013247677125037,-0.056569311767817,0.0098409270867705]],[[-0.01993440836668,0.089330263435841,0.044765323400497],[0.046455562114716,0.019995551556349,-0.04989343509078],[-0.064988166093826,-0.094402633607388,0.058361697942019]],[[0.056755132973194,-0.088110782206059,-0.014728824608028],[-0.023991035297513,-0.055233370512724,-0.024887321516871],[-0.011682583019137,0.021639807149768,-0.098902612924576]],[[0.087955228984356,0.031300850212574,0.05714200809598],[0.066208228468895,-0.036670714616776,0.023996448144317],[-0.12954203784466,-0.10208212584257,-0.0061231218278408]],[[-0.0175178386271,-0.072337917983532,-0.049479924142361],[0.09247625619173,-0.065511673688889,0.015032115392387],[-0.12168007344007,-0.1447668671608,-0.025591522455215]],[[-0.0016835005953908,0.10365886241198,0.038579538464546],[0.070001058280468,0.0035436409525573,0.025400426238775],[-0.10530130565166,-0.038091115653515,-0.072587072849274]],[[-0.022278117015958,-0.058092914521694,-0.00074999302159995],[-0.0032156328670681,-0.092923648655415,0.04385057464242],[0.063319221138954,0.02324485220015,0.072148568928242]],[[0.10151033848524,-0.096676625311375,0.14318938553333],[-0.12894870340824,0.068802356719971,-0.022808095440269],[-0.044098544865847,-0.016265444457531,0.043007642030716]],[[-0.037220157682896,-0.0021131781395525,-0.15013520419598],[-0.049473471939564,0.09421569108963,0.038011580705643],[-0.049657210707664,0.071810126304626,-0.12400638312101]],[[-0.030075611546636,0.018257681280375,0.13327591121197],[0.079185888171196,-0.001771624898538,-0.10055183619261],[-0.19241020083427,-0.065417103469372,0.011408458463848]],[[0.085570521652699,0.018476419150829,-0.047794427722692],[0.01708484813571,-0.031560432165861,0.0042705507948995],[0.121841840446,0.036185696721077,0.20611862838268]],[[-0.057263989001513,-0.034034579992294,0.12445402145386],[-0.055554646998644,-0.025437407195568,-0.1005197390914],[0.057846192270517,-0.051374461501837,0.065344169735909]],[[-0.1295063495636,0.023892296478152,-0.03676026314497],[-0.053276646882296,-0.075387418270111,-0.012765795923769],[0.10296255350113,0.11394356936216,-0.097262844443321]],[[-0.044642318040133,-0.022135771811008,0.064245916903019],[-0.012444230727851,0.024886749684811,0.015178335830569],[-0.0069912639446557,-0.027512568980455,-0.072369396686554]],[[-0.046883568167686,0.092813700437546,-0.1132176220417],[0.11051582545042,-0.041358280926943,-0.15787988901138],[-0.044881418347359,-0.00033743010135368,0.16327808797359]],[[0.059384290128946,0.035582222044468,-0.30778041481972],[0.021849855780602,0.024469641968608,0.023965738713741],[0.049846231937408,0.063454359769821,0.080036208033562]],[[-0.11538628488779,0.11914271861315,0.052095718681812],[0.038927238434553,-0.013359433971345,0.021268129348755],[0.040064003318548,-0.044111128896475,-0.010164274834096]],[[-0.042103543877602,-0.14580914378166,0.1574295759201],[-0.043574444949627,0.0083775194361806,0.11737854033709],[-0.044055741280317,-0.16220764815807,0.062427341938019]],[[0.041358407586813,-0.040136843919754,0.044696666300297],[0.038333363831043,-0.071548193693161,0.038266070187092],[-0.0058874334208667,-0.095377169549465,-0.016783012077212]],[[-0.051020469516516,-0.06208747625351,-0.14753824472427],[0.019348250702024,0.037645693868399,-0.014516458846629],[0.086798049509525,0.04500150308013,0.049587942659855]],[[-0.10621112585068,-0.017935594543815,-0.0014899011002854],[-0.032009553164244,-0.11107105761766,-0.12351210415363],[0.020453333854675,-0.12794065475464,0.034482579678297]],[[-0.01693650893867,0.0061289733275771,-0.022940959781408],[0.0069523570127785,0.064797177910805,-0.0079391552135348],[0.04062433168292,0.045425035059452,-0.030777007341385]],[[-0.063389711081982,0.053610105067492,0.092138133943081],[0.066866472363472,0.035479091107845,0.26646015048027],[-0.21951188147068,-0.34576240181923,0.080251827836037]],[[-0.058785255998373,-0.025345230475068,-0.028730809688568],[0.099823653697968,0.015916436910629,-0.041630927473307],[0.021445153281093,0.0084663610905409,0.021227065473795]],[[-0.016102960333228,-0.050565082579851,0.05787817761302],[0.10377834737301,-0.040146842598915,0.053019311279058],[-0.039371948689222,0.04450187087059,0.043562073260546]],[[0.024319281801581,0.053186621516943,-0.063838183879852],[-0.03084833547473,0.15691336989403,0.076189748942852],[0.06655465066433,0.061259988695383,0.041733141988516]],[[0.021085666492581,-0.001914614927955,-0.00015086111670826],[0.054203234612942,0.057002387940884,0.0021902017761022],[0.081619650125504,-0.060752727091312,-0.030734162777662]],[[0.047084271907806,0.070471480488777,-0.11679819971323],[0.098072700202465,0.058459870517254,-0.093430384993553],[-0.045310337096453,0.0018696316983551,-0.092576093971729]],[[0.032636445015669,-0.019429136067629,-0.015325875021517],[0.0085297161713243,-0.019692935049534,-0.028659719973803],[-0.15462167561054,-0.062519550323486,-0.04703164100647]],[[-0.050783757120371,0.11382741481066,-0.12141496688128],[-0.044653352349997,0.049506057053804,-0.045208312571049],[-0.020886439830065,-0.064423181116581,0.035548195242882]],[[-0.067934945225716,-0.078660547733307,-0.12873278558254],[-0.050475765019655,0.015084745362401,-0.019961757585406],[-0.086712911725044,-0.023347049951553,-0.13884063065052]],[[0.090960532426834,0.078489758074284,0.069982290267944],[-0.0056143146939576,0.086520545184612,0.035101488232613],[0.067077040672302,-0.057592578232288,0.18394085764885]],[[-0.030314762145281,0.070245914161205,-0.042301818728447],[0.028734236955643,-0.097585283219814,-7.605802238686e-05],[0.037154350429773,0.062856286764145,-0.10159907490015]],[[-0.07282792031765,0.020472962409258,0.054103441536427],[-0.0085432082414627,-0.0096028987318277,0.030800215899944],[0.004871865734458,0.045532073825598,-0.020663382485509]],[[-0.037358485162258,0.022817611694336,0.091980196535587],[0.099996007978916,-0.010932295583189,-0.059431996196508],[0.0039654225111008,0.030154284089804,-0.073638252913952]],[[0.010341697372496,0.011526952497661,-0.020069245249033],[-0.035830561071634,0.0095613803714514,-0.033619470894337],[-0.0079185636714101,-0.035409681499004,-0.093161396682262]],[[-0.058469504117966,0.043554127216339,-0.067615196108818],[-0.11504874378443,0.069270752370358,0.12288659065962],[0.073599867522717,-0.064702823758125,-0.052334498614073]],[[-0.0072146984748542,-0.018056558445096,-0.038733035326004],[-0.0099866092205048,0.037227921187878,0.053691308945417],[-0.03027387149632,-0.0037556060124189,0.060745541006327]],[[-0.10606203228235,0.0059329182840884,0.003768537659198],[0.086787104606628,0.062451954931021,-0.049957159906626],[0.020892605185509,0.012274280190468,-0.019447667524219]],[[0.035788495093584,0.10571344196796,-0.14469502866268],[-0.06781343370676,-0.10659145563841,0.03555990755558],[0.12934264540672,0.020493572577834,0.10918351262808]],[[-0.0086611611768603,0.057854618877172,-0.10189912468195],[0.04156769067049,0.04904692620039,0.025745134800673],[-0.042359061539173,0.028597477823496,-0.00194009358529]],[[-0.019087867811322,-0.065994538366795,-0.055936180055141],[0.065400309860706,-0.0035527634900063,-0.1239662989974],[-0.04888703301549,0.037720631808043,0.03749967738986]]],[[[0.018320506438613,-0.091362185776234,-0.0043674050830305],[0.0011283105704933,-0.052116513252258,0.041708674281836],[0.0094610322266817,0.047195546329021,-0.032927546650171]],[[-0.0092156585305929,-0.0026461961679161,-0.0085110142827034],[-0.013066676445305,-0.038174819201231,-0.036622449755669],[-0.02113900333643,0.0067276479676366,0.033294882625341]],[[0.015564286150038,0.046266809105873,-0.013065407052636],[0.015067922882736,0.017452182248235,-0.007360830437392],[-0.0087428214028478,0.0045414664782584,-0.023444039747119]],[[0.082830548286438,0.025488024577498,0.021471168845892],[-0.047509122639894,0.036399506032467,-0.04130432009697],[0.03113236092031,-0.051521003246307,0.061767999082804]],[[0.057670570909977,-0.022444630041718,0.028206633403897],[0.023937907069921,0.057130675762892,-0.00057879026280716],[-0.029221024364233,-0.0060050152242184,0.047796364873648]],[[0.077847689390182,0.00084510492160916,0.010696874931455],[-0.047970369458199,-0.094209469854832,-0.048676449805498],[-0.069067403674126,-0.044150840491056,-0.054333921521902]],[[0.0364587046206,0.011139797046781,-0.038828924298286],[0.029280003160238,0.022135384380817,0.015669535845518],[-0.069758184254169,-0.034573446959257,-0.023901253938675]],[[-0.04176626726985,-0.088828131556511,0.019162897020578],[-0.010635794140399,-0.049384776502848,-0.051738929003477],[-0.05169614776969,-0.022733565419912,-0.074594639241695]],[[0.097057521343231,0.050920482724905,0.032473172992468],[-0.040200542658567,0.028363661840558,0.011392164044082],[0.032841544598341,-0.020553352311254,0.0060286582447588]],[[0.018286373466253,-0.052195575088263,0.025729661807418],[-0.053028430789709,-0.053017258644104,0.012902649119496],[0.064696170389652,0.00024302251404151,0.015645230188966]],[[0.0040645184926689,0.0088665410876274,0.0050441799685359],[0.0047731092199683,-0.022115789353848,0.00096664729062468],[-0.049886368215084,-0.04545783996582,-0.028593888506293]],[[0.034741837531328,-0.047052416950464,-0.014948921278119],[-0.013053619302809,0.024962347000837,0.073274523019791],[-0.014107752591372,-0.03665005043149,-0.08991401642561]],[[0.035662967711687,-0.0025453837588429,-0.02944310195744],[0.007864024490118,0.018759608268738,-0.041318472474813],[-0.0054218526929617,0.012595208361745,-0.037269718945026]],[[0.053160045295954,-0.049505576491356,-0.0017979099648073],[0.012036210857332,0.050284933298826,0.017264349386096],[0.067094780504704,0.032775186002254,-0.031586296856403]],[[0.016065685078502,0.053690817207098,-0.080961465835571],[-0.072465561330318,0.036570589989424,0.0022698503453285],[0.050181265920401,-0.0079461028799415,0.00023467365826946]],[[0.041667394340038,0.022301623597741,0.044140454381704],[0.0029253149405122,0.022565355524421,-0.075123131275177],[-0.018898889422417,0.0068340725265443,0.028980171307921]],[[0.030697491019964,0.045421309769154,-0.053546994924545],[-0.081842392683029,0.018066510558128,-0.027494985610247],[0.00088471389608458,-0.10448507964611,-0.031802553683519]],[[0.0089676231145859,0.014344533905387,0.02499202825129],[-0.018494229763746,0.016917388886213,0.093069009482861],[0.021641541272402,-0.019979348406196,-0.0045947302132845]],[[0.045860268175602,-0.01709739305079,-0.0005265052895993],[-0.055989656597376,-0.014820211566985,-0.043583426624537],[0.043260134756565,-0.018845545127988,-0.0025313477963209]],[[0.0013727977639064,0.023129822686315,-0.050491403788328],[-0.0094386227428913,0.011872450821102,0.014703531749547],[-0.037981402128935,-0.025219310075045,-0.036253001540899]],[[0.032502189278603,0.0088618434965611,0.016550378873944],[-0.0034219361841679,0.018254088237882,0.035066731274128],[0.099988974630833,-0.032114401459694,-0.066717617213726]],[[-0.022830890491605,-0.0039685610681772,-0.033990159630775],[-0.052646819502115,0.0413125641644,-0.011709555052221],[0.027461837977171,0.021989369764924,0.0071446318179369]],[[-0.059608239680529,-0.011608484201133,0.051495794206858],[0.0098354881629348,0.088843680918217,-0.0044450955465436],[-0.06326762586832,-0.0037322351709008,-0.0075604831799865]],[[0.032177891582251,-0.015053797513247,0.0011788343545049],[0.064763590693474,0.028096718713641,0.029714267700911],[-0.080604143440723,-0.00089971185661852,0.016004838049412]],[[0.035356163978577,-0.068918190896511,0.064658239483833],[-0.0071106599643826,-0.11803502589464,-0.048941224813461],[-0.056427713483572,-0.030779540538788,-0.033425271511078]],[[0.0093300873413682,-0.0096645718440413,0.018504055216908],[0.013677036389709,-0.046541579067707,-0.014070744626224],[-0.019022114574909,0.008781835436821,-0.036191988736391]],[[0.0067725512199104,0.07820850610733,0.010011084377766],[-0.018222607672215,-0.059059672057629,0.0014115197118372],[0.02165524289012,-0.051959473639727,-0.053715240210295]],[[0.050452001392841,-0.024440832436085,0.037972752004862],[0.052265308797359,-0.056702733039856,0.081626750528812],[0.09051126986742,0.0019981721416116,0.030375137925148]],[[-0.0064766453579068,0.0086694145575166,-0.019525559619069],[-0.020973550155759,0.028519349172711,0.0044129551388323],[-0.047119047492743,-0.0047715599648654,-0.023424850776792]],[[0.040106296539307,-0.0021588541567326,0.035815577954054],[0.04342145845294,0.011219416745007,-0.040028415620327],[0.019093319773674,-0.0025776578113437,0.0039853840135038]],[[0.022711284458637,0.036817088723183,0.029719669371843],[-0.01275250967592,-0.071762651205063,-0.011553124524653],[-0.081887952983379,0.02644264139235,-0.013406792655587]],[[0.032359514385462,0.10928381234407,0.021234130486846],[-0.026907188817859,0.053213439881802,0.020336052402854],[-0.014908902347088,-0.044225513935089,0.046813420951366]],[[-0.0085727432742715,-0.052536521106958,-0.015810230746865],[-0.034098699688911,-0.0062404680065811,-0.027357518672943],[-0.001155628124252,-0.0027101351879537,0.0082725519314408]],[[-0.018247416242957,-0.019495075568557,0.022969417273998],[-0.056094534695148,-0.058651637285948,0.081960961222649],[-0.051431566476822,-0.060309115797281,-0.083747915923595]],[[0.016744315624237,0.029509177431464,0.083701550960541],[-0.037805303931236,0.022714944556355,-0.0038407614920288],[0.016338294371963,-0.082801677286625,-0.035234313458204]],[[-0.017630834132433,-0.074661515653133,0.018608693033457],[-0.06075344607234,-0.0461305975914,-0.058220826089382],[-0.024027461186051,-0.074412457644939,-0.12423260509968]],[[-0.020323684439063,-0.035888560116291,0.022596769034863],[-0.018291085958481,-0.058310206979513,0.025366336107254],[0.037253879010677,0.015487154014409,-0.0036553936079144]],[[0.056810166686773,0.099853448569775,-0.018395569175482],[-0.0041523166000843,0.0029813167639077,0.0024566415231675],[0.0065437108278275,-0.0029823635704815,0.0075649959035218]],[[0.040355946868658,-0.004512564279139,-0.082206413149834],[-0.045050214976072,0.093477785587311,0.014352562837303],[-0.053628988564014,-0.015316692180932,0.02808254212141]],[[-0.00057886366266757,0.033653821796179,0.041360054165125],[-0.045974005013704,0.064512096345425,0.0042949020862579],[-0.011879334226251,-0.0022981469519436,0.020434122532606]],[[-0.0050356471911073,0.058202680200338,0.080055899918079],[-0.027267973870039,0.03889736905694,-0.053803935647011],[-0.035196334123611,0.03433595970273,-0.044931940734386]],[[0.030665583908558,-0.071796305477619,-0.015149501152337],[-0.064007446169853,-0.034876212477684,-0.064556263387203],[-0.03272433578968,0.020428938791156,0.065551288425922]],[[-0.018476178869605,0.077394850552082,-0.059927277266979],[0.012450817041099,-0.046094633638859,0.06516769528389],[0.012322220019996,0.0086245825514197,-0.066849775612354]],[[0.01862327940762,-0.0068684886209667,0.064809657633305],[-0.037635929882526,0.015376348048449,-0.010682341642678],[-0.011601969599724,-0.0065734842792153,-0.076325923204422]],[[0.00829719286412,-0.0018471588846296,0.011655197478831],[0.10623916238546,-0.021963624283671,-0.0050404067151248],[0.011354473419487,0.027998635545373,-0.068553246557713]],[[0.033200580626726,0.046287257224321,-0.043569687753916],[0.070487320423126,0.037028450518847,-0.0016644088318571],[0.05607345700264,0.0092084743082523,-0.015393875539303]],[[-0.029385726898909,-0.036916051059961,-0.030957439914346],[-0.022936450317502,-0.026281129568815,0.022337621077895],[-0.033328656107187,-0.027512283995748,0.048239264637232]],[[-0.1000971198082,-0.025939652696252,0.035377457737923],[-0.0066775227896869,0.0022825018968433,-0.02327024564147],[-0.049660675227642,-0.047458242624998,0.02775819785893]],[[-0.03868118673563,0.00075441494118422,-0.026131032034755],[-0.034228820353746,0.0032881214283407,0.05707786232233],[-0.019531514495611,-0.029414525255561,-0.0012461281148717]],[[-0.054918926209211,-0.0317900814116,-0.021464416757226],[-0.045673877000809,-0.091586455702782,0.019977375864983],[-0.023290015757084,0.027530618011951,-0.10164589434862]],[[0.051092367619276,0.042433626949787,0.0065102335065603],[0.063433304429054,-0.0025590739678591,0.022020701318979],[0.0048536276444793,0.011087091639638,-0.0066423276439309]],[[-0.042088836431503,0.056956633925438,-0.020220885053277],[-0.078766293823719,0.0032127893064171,-0.05522371083498],[-0.032975491136312,0.012370592914522,0.039460323750973]],[[0.015665628015995,0.0087924934923649,-0.0040082484483719],[-0.086751841008663,0.015426560305059,-0.0065765311010182],[-0.011364663019776,-0.038906075060368,0.0089818267151713]],[[0.029983283951879,0.049967177212238,0.081870511174202],[0.042914871126413,0.042946584522724,0.012448035180569],[0.11701118201017,0.066920422017574,0.014637767337263]],[[-0.012786203995347,0.025928368791938,0.016028301790357],[-0.0163913089782,-0.0043260958045721,0.054522261023521],[-0.032852545380592,-0.05278629809618,0.0051702079363167]],[[0.00068303756415844,-0.012938158586621,0.044127974659204],[0.020515643060207,0.0060530719347298,-0.046321704983711],[-0.010481594130397,-0.0026728601660579,-0.030151013284922]],[[0.013157620094717,0.016934169456363,0.068166300654411],[5.3422427299665e-05,0.025056060403585,0.019125502556562],[-0.020820390433073,-0.00083836214616895,0.057058896869421]],[[-0.0058398712426424,-0.011211641132832,-0.030802255496383],[-0.0067883026786149,-0.014273227192461,-0.059611409902573],[-0.016968486830592,0.044590223580599,0.0199975669384]],[[0.013588976114988,0.037380799651146,-0.0070944400504231],[-0.067554391920567,0.023676577955484,-0.021323267370462],[0.012195560149848,-0.025785585865378,-0.037039428949356]],[[0.039734933525324,-0.032455094158649,-0.0063247559592128],[-0.016740640625358,-0.016800871118903,-0.018877487629652],[0.057238858193159,0.031324919313192,0.031617850065231]],[[-0.032266482710838,0.0081587051972747,-0.051199939101934],[-0.015486910939217,0.028491020202637,-0.0093399547040462],[-0.034391567111015,-0.067940220236778,0.0036346076522022]],[[0.027184933423996,0.033104725182056,-0.0067967548966408],[-0.026665238663554,0.0015404134755954,0.01885531283915],[-0.0025551849976182,0.049420304596424,-0.0035904375836253]],[[0.01519974693656,-0.035125557333231,-0.11510054767132],[0.026391606777906,0.037097435444593,-0.033057928085327],[-0.011096523143351,-0.014715034514666,-0.019183220341802]],[[-0.035313744097948,-0.012295834720135,-0.030570019036531],[0.02139182202518,0.016644310206175,-0.014216960407794],[0.0048152948729694,-0.01337312348187,-0.0573022775352]]],[[[0.073293574154377,-0.015791721642017,0.026044255122542],[-0.066413976252079,0.031565573066473,-0.10051269829273],[-0.0029510338790715,0.048958301544189,0.095104530453682]],[[-0.084838844835758,-0.042130786925554,-0.010898983106017],[0.0045239198952913,0.015624538064003,0.080272532999516],[-0.018411412835121,-0.035332102328539,-0.025185083970428]],[[0.027723817154765,-0.0059579811058939,-0.0024815038777888],[-0.053349163383245,-0.03885605558753,0.0098693510517478],[0.040037304162979,-0.033082351088524,-0.038628276437521]],[[0.024534031748772,0.043512396514416,-0.0062326421029866],[0.089010775089264,0.044705402106047,-0.16967920958996],[-0.091665588319302,-0.12785601615906,0.01877530105412]],[[0.010563303716481,-0.0068566603586078,-0.041651345789433],[0.046900413930416,-0.019037198275328,0.033402126282454],[-0.032844644039869,0.061901707202196,0.0095442309975624]],[[0.098201669752598,0.020974177867174,0.11139612644911],[-0.086909465491772,-0.030806757509708,0.044003494083881],[0.02237937413156,-0.0059018116444349,-0.080621272325516]],[[0.00095616444014013,-0.055008459836245,-0.012428005225956],[-0.0028664069250226,0.00042906063026749,-0.014505221508443],[0.03211323171854,-0.021901216357946,0.0095256874337792]],[[0.041312757879496,-0.037721462547779,0.020421788096428],[0.082768194377422,-0.1282594949007,-0.068703219294548],[-0.087506659328938,-0.0084676994010806,-0.019692746922374]],[[-0.0064915921539068,-0.018557369709015,-0.013364111073315],[-0.073283702135086,-0.0056342557072639,0.0025778734125197],[-0.015015929937363,0.022753551602364,-0.0082695055752993]],[[-0.076308220624924,0.017853943631053,-0.11064443737268],[0.017836743965745,0.0093747470527887,0.024177696555853],[-0.03716829419136,0.029756419360638,0.010751247406006]],[[0.015932330861688,0.031407885253429,0.0051322616636753],[-0.1040159240365,-0.044267445802689,-0.0079721072688699],[-0.0072929649613798,-0.022818967700005,-0.090275272727013]],[[0.029484201222658,-0.027660736814141,0.067429900169373],[-0.022448027506471,0.036923691630363,0.039031341671944],[-0.02363608404994,-0.0013145466800779,-0.016170836985111]],[[-0.0053485194221139,0.040919899940491,-0.057546675205231],[0.031015187501907,-0.057448979467154,-0.019521145150065],[-0.042339522391558,0.004858176689595,0.062902830541134]],[[0.045850493013859,-0.065721340477467,-0.0096719032153487],[0.036115761846304,0.021494388580322,-0.02137178555131],[0.08664008975029,0.16661965847015,0.1020372658968]],[[-0.053863994777203,0.026046311482787,0.074477851390839],[-0.011467156000435,-0.0099184103310108,0.046352505683899],[0.030442573130131,-0.012667601928115,0.042197939008474]],[[-0.044609680771828,-0.055431451648474,0.069615565240383],[0.0051430431194603,0.11448700726032,-0.093698583543301],[-0.050485901534557,0.038076840341091,0.034616440534592]],[[0.055972579866648,-0.0083963489159942,0.026999002322555],[-0.0091530010104179,0.0051922369748354,-0.015229904092848],[0.034262217581272,0.0085471170023084,-0.0083723850548267]],[[0.027829768136144,0.064275354146957,0.0080936336889863],[-0.037481557577848,0.0099092982709408,0.014555785804987],[0.016775507479906,-0.056438110768795,0.0012827483005822]],[[-0.012031893245876,0.061716895550489,-0.011609185487032],[0.054713968187571,-0.049498792737722,-0.00083975092275068],[-0.036395967006683,-0.04496693611145,0.0043533490970731]],[[0.0705197006464,0.07368303835392,-0.014173859730363],[0.028456199914217,0.041464645415545,0.061800267547369],[-0.024564001709223,-0.044842857867479,0.043143272399902]],[[0.0055155069567263,-0.0028462712652981,-0.027709599584341],[-0.041485600173473,0.039378199726343,-0.051866471767426],[0.0031751641072333,0.0077936886809766,0.059908527880907]],[[0.11559623479843,0.045989435166121,-0.015665868297219],[0.026912929490209,-0.022467708215117,-0.012521575205028],[0.081283234059811,0.040539734065533,-0.0033794774208218]],[[-0.010646185837686,-0.020745454356074,-0.0019430316751823],[-0.056013997644186,-0.0014688699739054,0.020573779940605],[0.064575292170048,-0.063761197030544,0.060883164405823]],[[-0.014789859764278,0.039368126541376,0.038730841130018],[0.013951324857771,0.033749870955944,-0.025055212900043],[-0.018938744440675,-0.031854536384344,-0.00034787310869433]],[[-0.01602521724999,0.026607822626829,0.013587359338999],[0.0046746493317187,-0.005189694929868,0.00015751918544993],[0.0031610555015504,0.012199773453176,0.050614047795534]],[[-0.01155851688236,0.048500385135412,-0.0015388668980449],[-0.051819119602442,0.038891892880201,0.01975679770112],[0.0046891393139958,0.062777005136013,-0.050644565373659]],[[0.011893221177161,0.022158673033118,-0.014359529130161],[-0.058007098734379,0.064334742724895,-0.02219539321959],[-0.029809890314937,0.016941605135798,0.10704579204321]],[[0.021780353039503,0.050185050815344,0.058783382177353],[0.040143519639969,-0.059542942792177,-0.019370833411813],[0.10723309963942,-0.017673265188932,0.0062939701601863]],[[-0.023091668263078,-0.033000230789185,-0.018626173958182],[0.11426523327827,-0.099822655320168,-0.13104894757271],[-0.044740796089172,-0.047964666038752,-0.026219295337796]],[[-0.075077712535858,0.010058699175715,0.0026074664201587],[0.054715596139431,0.060803923755884,0.05881829187274],[0.043564029037952,0.020954206585884,0.0077232862822711]],[[-0.030576623976231,0.0090101575478911,-0.070495523512363],[-0.0039189979434013,-0.078350245952606,-0.040040511637926],[0.09280751645565,0.015904650092125,-0.034879490733147]],[[0.066401094198227,0.045410517603159,0.052935268729925],[-0.080557070672512,0.036825139075518,0.0048404955305159],[-0.035581890493631,-0.022176489233971,-0.05333661660552]],[[0.073880255222321,-0.0051900004036725,0.068936564028263],[-0.043167844414711,-0.0093548623844981,0.0057044685818255],[-0.045126527547836,-0.10418695956469,-0.060550022870302]],[[-0.041169662028551,-0.032222453504801,0.067791298031807],[0.033439982682467,0.0053174649365246,-0.037397783249617],[-0.037932518869638,-0.1068911626935,-0.12762956321239]],[[0.031026020646095,-0.0024521653540432,0.03283778950572],[0.019595583900809,0.0026491635944694,-0.0017840126529336],[-0.018212653696537,-0.01819446310401,0.042056553065777]],[[0.087518751621246,-0.047225117683411,0.021280616521835],[0.0016193353803828,0.044305723160505,-0.10371123254299],[0.075190372765064,-0.054123006761074,-0.040885649621487]],[[-0.01533258985728,0.030349314212799,0.0076660187914968],[-0.0014209473738447,0.0069407876580954,0.045176461338997],[0.011728233657777,-0.046852130442858,-0.047558449208736]],[[0.06525331735611,0.021080143749714,0.040238741785288],[-0.12326481938362,0.015201493166387,0.11139612644911],[-0.0012543456396088,0.022475272417068,0.0085621355101466]],[[-0.10531710088253,-0.01035722810775,-0.039000123739243],[0.069968804717064,-0.0040204557590187,-0.045581266283989],[-0.016293168067932,0.002747624181211,-0.017865050584078]],[[-0.026132244616747,0.023169830441475,0.0049680126830935],[-0.011847734451294,-0.052898298949003,0.016545742750168],[-0.009363348595798,0.01874016970396,-0.023348299786448]],[[-0.033903650939465,0.038375325500965,-0.014282492920756],[0.069734312593937,-0.068747043609619,0.023031324148178],[-0.013005460612476,-0.013893633149564,-0.044706214219332]],[[-0.054611187428236,-0.043685391545296,0.042167484760284],[0.02235465683043,-0.068037860095501,-0.030386509373784],[0.03873722627759,0.043141834437847,-0.0015333378687501]],[[-0.10481901466846,0.12246088683605,-0.019161323085427],[-0.040755480527878,-0.014485666528344,0.08520495146513],[0.060089573264122,-0.028635757043958,0.049515880644321]],[[-0.020635867491364,0.033487658947706,-0.0095162494108081],[-0.020654754713178,-0.037650946527719,-0.022276163101196],[0.01234167534858,-0.061460290104151,-0.15454399585724]],[[-0.069268025457859,0.085034497082233,-0.02453420124948],[0.080337554216385,-0.050331346690655,0.09270341694355],[0.058618314564228,0.0084630195051432,-0.029634028673172]],[[-0.012639537453651,-0.0015831644413993,0.010848060250282],[-0.061286401003599,0.024684183299541,0.0020006783306599],[-0.026648838073015,-0.015924451872706,0.022217614576221]],[[-0.014171944931149,-0.016123419627547,-0.0012359827524051],[0.023566327989101,-0.043059196323156,-0.02616585791111],[-0.020424181595445,-0.049904853105545,0.0036140286829323]],[[0.019122639670968,-0.048729531466961,-0.043552547693253],[0.0025681159459054,-0.012657038867474,-0.0091089578345418],[0.051920440047979,0.016171189025044,0.006287008523941]],[[-0.00059038156177849,0.00052173307631165,-0.041471593081951],[-0.068714618682861,-0.02632037550211,0.031302981078625],[-0.043319184333086,0.03942783549428,0.022218568250537]],[[-0.0039471294730902,-0.036047071218491,-0.036901909857988],[-0.0086990315467119,-0.028985241428018,-0.074320614337921],[0.038210492581129,-0.053403306752443,-0.09015665948391]],[[-0.012774345465004,0.014558816328645,0.0058732060715556],[0.0025284022558481,0.0099996887147427,0.0079670259729028],[-0.01338090095669,0.0045763612724841,-0.016629232093692]],[[-0.038375925272703,-0.0055573456920683,0.043061163276434],[0.025506993755698,0.02039928548038,0.01256175711751],[-0.0052774329669774,0.084853872656822,-0.0077570336870849]],[[-0.0043916897848248,0.058786857873201,-0.061838980764151],[0.041796069592237,0.0030865308362991,0.0030630812980235],[0.0019729621708393,-0.0035205250605941,-0.0021679310593754]],[[-0.069037243723869,0.060209270566702,0.0056777074933052],[0.033000830560923,0.073504470288754,0.057984743267298],[0.067252419888973,0.046896927058697,0.023640284314752]],[[0.028713149949908,-0.057722475379705,-0.031461391597986],[-0.020833311602473,-0.0083616124466062,0.018832130357623],[0.021369509398937,-0.016140058636665,-0.089957356452942]],[[-0.0080299144610763,-0.0123246088624,0.017034528777003],[-0.0080060241743922,0.0064349328167737,0.039723046123981],[-0.023779863491654,0.011317459866405,-0.022139240056276]],[[0.02637293189764,-0.010786772705615,0.026655294001102],[-0.019501065835357,0.073904477059841,0.020199615508318],[-0.088585279881954,-0.057381175458431,-0.085189953446388]],[[-0.0050722360610962,-0.013080015778542,-0.0028772556688637],[0.058783318847418,-0.0023877799976617,-0.060120701789856],[-0.055050373077393,0.018756877630949,-0.10278896987438]],[[0.0041209734044969,-0.03176212310791,0.0081451423466206],[0.060986578464508,0.00097812712192535,-0.00043686787830666],[-0.035015299916267,0.021723380312324,0.063794806599617]],[[-0.0059741572476923,0.036267012357712,0.0040572420693934],[0.055449068546295,-0.00097692909184843,0.020470913499594],[-0.049741335213184,0.037702448666096,-0.027054354548454]],[[-0.0045541916042566,-0.015746407210827,0.027130344882607],[-0.0032913652248681,-0.017159758135676,0.02261289767921],[0.045125111937523,0.025306828320026,-0.023247567936778]],[[0.045914061367512,0.023208115249872,0.066971026360989],[0.034852355718613,0.034886453300714,-0.014978157356381],[0.060042783617973,-0.031875025480986,-0.033643469214439]],[[0.01166176982224,0.01883801445365,-0.019016468897462],[0.024525685235858,-0.0053863483481109,0.022552905604243],[0.0044617070816457,-0.020924909040332,-0.06389856338501]],[[0.034004706889391,-0.093838669359684,0.069192469120026],[0.038148757070303,-0.036919448524714,-0.034717809408903],[0.0091894138604403,-0.053504604846239,0.017406707629561]]],[[[0.059822365641594,-0.05613649263978,7.8133329225238e-05],[-0.039307657629251,0.029977833852172,0.053266324102879],[0.027664812281728,0.045148860663176,-0.00014022408868186]],[[-0.031032402068377,-0.00023006428091321,-0.028488218784332],[-0.041613824665546,0.00070599693572149,-0.053761217743158],[0.02048622444272,0.0026101928669959,0.031566116958857]],[[-0.0035372273996472,-0.012604153715074,0.0054065496660769],[-0.033116988837719,-0.00047054380411282,-0.038313083350658],[0.028729984536767,0.031066901981831,-0.026277521625161]],[[0.048995967954397,-0.049473866820335,0.010255386121571],[-0.034102853387594,0.0087648080661893,-0.11089247465134],[-0.013932631351054,0.011468442156911,-0.089595377445221]],[[0.00039267001557164,-0.0054906154982746,-0.0059545831754804],[-0.022570043802261,0.00013801992463414,-0.019939767196774],[0.026870619505644,-0.064551666378975,-0.031954020261765]],[[0.019068000838161,0.0024518012069166,-0.10240289568901],[0.052263744175434,-0.0065236533991992,0.0052345707081258],[0.10781456530094,0.071829177439213,-0.038720902055502]],[[-0.019793951883912,-0.034576240926981,0.014489536173642],[-0.087187387049198,0.0084058344364166,0.029141778126359],[-0.033606957644224,0.037258636206388,-0.019457841292024]],[[0.023520274087787,0.035909354686737,0.049577817320824],[0.070526368916035,0.047881994396448,-0.0086183743551373],[0.0062609557062387,0.040819440037012,-0.067858196794987]],[[0.016320569440722,-0.023175237700343,0.091868616640568],[-0.0087157124653459,-0.030748696997762,0.0051319808699191],[-0.025594184175134,-0.026000048965216,0.000612088420894]],[[-0.032059367746115,0.095142893493176,-0.018115362152457],[-0.07582987844944,0.0043987985700369,-0.012765860185027],[0.043469805270433,-0.015412115491927,0.031950488686562]],[[0.088816680014133,0.058690004050732,-0.0025885722134262],[-0.012331895530224,0.015862748026848,-0.051715597510338],[-0.054571013897657,0.0011403482640162,0.015466541051865]],[[0.036197904497385,-0.048349000513554,0.0035065447445959],[0.027511080726981,-0.033670548349619,0.021831789985299],[-0.0088240234181285,-0.033166225999594,-0.033399749547243]],[[0.013711981475353,-0.010860946029425,-0.033758938312531],[-0.0085103744640946,-0.0043997028842568,-0.01783736795187],[0.015884449705482,-0.046821638941765,0.032031167298555]],[[0.045285727828741,0.030382826924324,0.082221418619156],[0.052237279713154,0.048152044415474,0.023431012406945],[0.0097075728699565,-0.052356749773026,-0.036372780799866]],[[0.059360332787037,0.027159754186869,0.043124590069056],[-0.08461656421423,-0.036238268017769,-0.055627249181271],[0.11323051154613,-0.010742880403996,0.028758201748133]],[[0.041691686958075,0.035464279353619,0.0094986576586962],[0.018551163375378,0.012162373401225,0.058891631662846],[0.046073745936155,-0.039953298866749,0.044747214764357]],[[0.051570396870375,-0.022594947367907,-0.015709552913904],[0.024764683097601,-0.02284380607307,0.018433298915625],[-0.011708995327353,0.037740245461464,0.017106870189309]],[[-0.034502636641264,-0.016905929893255,0.039396550506353],[0.044622488319874,0.016026550903916,0.069776020944118],[0.039872903376818,0.045462336391211,0.022121326997876]],[[-0.039430022239685,0.0024247511755675,0.047717493027449],[-0.048800595104694,-0.018073942512274,0.047414399683475],[-0.022264899685979,-0.0026669600047171,0.0047168470919132]],[[0.021104110404849,-0.0324478559196,-0.030988533049822],[0.0060155256651342,0.02767076715827,-0.021888772025704],[0.015676837414503,0.036060877144337,0.029216032475233]],[[0.07556589692831,-0.037018943578005,-0.0098502514883876],[-0.020110882818699,-0.092485398054123,0.031019944697618],[0.042217243462801,0.010543928481638,0.04962719976902]],[[0.066182978451252,-0.088212721049786,0.039447598159313],[0.009009669534862,0.018846236169338,0.018374636769295],[-0.10517106950283,0.033036470413208,0.048764012753963]],[[-0.013870038092136,-0.0084145506843925,0.0064013176597655],[-0.029827868565917,-0.028808886185288,-0.012520559132099],[-0.0099282432347536,0.058838874101639,-0.0042313006706536]],[[0.011610131710768,0.010999231599271,0.021800195798278],[0.03388823568821,0.05690336599946,-0.030812062323093],[0.010893375612795,-0.016307644546032,-0.040237832814455]],[[0.021350830793381,-0.11396596580744,-0.048433009535074],[0.012179304845631,0.10813776403666,-0.00679612159729],[0.058408964425325,0.0025806704070419,0.10223365575075]],[[0.012773215770721,0.0089808367192745,0.017074540257454],[0.02705598808825,0.01871120929718,-0.00031086546368897],[-0.039486911147833,-0.012732729315758,-0.021104730665684]],[[-0.05022245272994,-0.087768018245697,-0.046494610607624],[0.066878706216812,-0.053518783301115,0.013350907713175],[-0.0012474169488996,0.0094072809442878,0.017593063414097]],[[0.003626651596278,-0.039800565689802,0.066489286720753],[-0.035072200000286,-0.065309569239616,0.039748504757881],[0.0044062030501664,-0.11137130856514,0.013940080069005]],[[0.033380229026079,0.0097093414515257,0.10991733521223],[-0.03742216899991,-0.092384785413742,-0.056603197008371],[0.072014763951302,-0.052795346826315,0.0036554245743901]],[[0.0080312257632613,-0.069663435220718,-0.016882678493857],[-0.032444953918457,0.0085585089400411,-0.0076052234508097],[0.021079432219267,0.050753332674503,-0.025210836902261]],[[-0.052174489945173,0.035485785454512,-0.042537033557892],[-0.016150882467628,-0.015884283930063,0.0081903925165534],[0.05804679915309,-0.02374710328877,0.045652344822884]],[[0.031958173960447,-0.023715535178781,-0.0037798369303346],[0.01544611249119,0.016784017905593,-0.00057367148110643],[0.03915624320507,0.043219957500696,-0.066153481602669]],[[0.013467386364937,-0.012816938571632,0.033376306295395],[0.011874795891345,0.014085072092712,0.044590435922146],[-0.0060777007602155,-0.019057061523199,-0.066198252141476]],[[-0.016991058364511,-0.06498745828867,-0.013510456308722],[-0.046896040439606,-0.022198684513569,0.016226287931204],[0.01837545260787,-0.044382162392139,0.011733538471162]],[[-0.098894514143467,0.079591929912567,-0.032596107572317],[-0.0037076363805681,-0.064829923212528,0.12943229079247],[0.086973652243614,-0.034453049302101,-0.016028268262744]],[[-0.064266830682755,-0.0036280287895352,-0.026639306917787],[-0.077204048633575,-0.062363352626562,-0.023636233061552],[0.040592022240162,0.023980319499969,0.0032430505380034]],[[-0.0025422568432987,0.079235926270485,0.033218957483768],[-0.011168966069818,0.00022083928342909,-0.011077152565122],[0.035740826278925,0.012143063358963,0.052893660962582]],[[-0.0040685520507395,0.054702267050743,-0.018056094646454],[-0.054229196161032,0.039463490247726,-0.0033840124960989],[-0.019753180444241,0.060126699507236,0.047598239034414]],[[0.01373475510627,0.057648818939924,0.061109382659197],[-0.10109219700098,-0.030179042369127,0.088944859802723],[-0.016014751046896,-0.030921574681997,-0.0042790868319571]],[[-0.0071604573167861,0.038098126649857,0.069243684411049],[0.02560244128108,-0.058867711573839,-0.043195120990276],[-6.2187842559069e-05,-0.00469900527969,0.019263651221991]],[[0.004646432120353,0.016963349655271,-0.013140420429409],[-0.01777258887887,0.016682207584381,0.015944261103868],[-0.04475349932909,0.0095545751973987,0.01517088804394]],[[-0.051119331270456,-0.023461572825909,-0.055564261972904],[0.098558843135834,0.070776917040348,-0.019512256607413],[-0.029371742159128,0.10287748277187,0.090238004922867]],[[0.024185989052057,-0.098142087459564,0.015775926411152],[0.071968883275986,0.084620878100395,-0.03882047906518],[0.016654452309012,0.020278675481677,0.029038516804576]],[[-0.01444579847157,-0.0065691727213562,-0.090009354054928],[-0.035356987267733,0.06487450748682,0.063954226672649],[-0.041166659444571,0.0059523964300752,0.065457992255688]],[[0.0025045664515346,0.028795348480344,-0.082204654812813],[-0.047712247818708,0.045933850109577,-0.010570394806564],[0.0385487601161,0.027596892789006,-0.02091932669282]],[[0.028218377381563,0.016745211556554,0.037441864609718],[-0.02337115444243,0.0063892626203597,0.016395270824432],[-0.088268995285034,0.0076164943166077,-0.0285529717803]],[[0.027444634586573,0.041698012501001,0.037053134292364],[0.019995482638478,-0.0070637315511703,0.0022820190060884],[-0.015205284580588,-0.019316628575325,-0.0093105752021074]],[[-0.0022503978107125,-0.048541720956564,-0.018918080255389],[-0.051870286464691,0.010181237012148,0.029970202594995],[0.031799700111151,0.017606211826205,-0.022809686139226]],[[-0.013955973088741,0.0049519673921168,0.039200082421303],[-0.008521874435246,0.061544667929411,0.001910756691359],[0.00584158860147,0.054973479360342,-0.024707397446036]],[[0.014097028411925,-0.0046913879923522,0.064637392759323],[-0.060439605265856,0.013538992032409,0.014361736364663],[-0.095139943063259,-0.13157460093498,-0.019862469285727]],[[0.062003139406443,0.023106602951884,0.00089988874970004],[-0.038751937448978,0.043791715055704,0.0078890779986978],[-0.029914842918515,-0.034641075879335,-0.038687285035849]],[[0.023423152044415,-0.0065502002835274,-0.083185017108917],[0.033862750977278,-0.010642433539033,0.062455922365189],[-0.12402877211571,-0.064299523830414,0.020605893805623]],[[-0.054628420621157,0.0098452912643552,-0.00048948655603454],[0.03006793372333,-0.016095507889986,-0.018536046147346],[0.032312881201506,0.024953318759799,-0.058692786842585]],[[-0.032776527106762,-0.0079983752220869,0.026106646284461],[0.117560736835,-0.037364829331636,0.049806676805019],[0.084789201617241,0.05553962662816,0.033830970525742]],[[0.0087757594883442,-0.045627504587173,0.042843677103519],[0.03306407853961,0.060112778097391,0.018109504133463],[-0.044803019613028,-0.06159770861268,-0.02979127317667]],[[0.063137412071228,0.035619761794806,0.03718489408493],[-0.00049947266234085,0.074605412781239,0.020334549248219],[0.054980468004942,0.020275466144085,0.033902231603861]],[[-0.053335774689913,-0.010346757248044,-0.050897188484669],[0.01058532204479,-0.036496471613646,-0.023039374500513],[0.0052135181613266,0.017313443124294,0.0026748282834888]],[[-0.0074420757591724,-0.027700314298272,-0.021404689177871],[0.010341323912144,0.027975600212812,-0.025302933529019],[-0.015922719612718,-0.040657814592123,-0.066471390426159]],[[0.0047273607924581,0.032098677009344,0.0027195096481591],[-0.011409743689001,-0.051564700901508,0.079465992748737],[0.018042013049126,-0.012290807440877,-0.00078488438157365]],[[0.033549763262272,0.047791641205549,-0.034727688878775],[0.062267430126667,0.0016261772252619,-0.0059057851321995],[-0.0082325376570225,-0.032247893512249,0.022212529554963]],[[0.053828157484531,0.031815081834793,0.018885055556893],[-0.098023481667042,0.012819664552808,0.073117479681969],[0.03534296900034,0.0024306799750775,-0.032209265977144]],[[0.052622277289629,0.062019936740398,-0.026178171858191],[0.026997832581401,0.017656462267041,-0.021315783262253],[-0.0094471555203199,0.003414920065552,0.026140419766307]],[[0.011778814718127,0.065188556909561,0.039988059550524],[-0.028977306559682,0.05166694521904,-0.0072097480297089],[-0.076946832239628,-0.0042424998246133,0.038590725511312]],[[-0.013452427461743,-0.024389183148742,-0.021346684545279],[0.026580473408103,-0.06227970123291,0.067667454481125],[-0.002326924353838,0.068509057164192,0.010518949478865]]],[[[0.022848129272461,-0.022588483989239,-0.020184302702546],[0.040876772254705,-0.040723823010921,-0.0032489814329892],[-0.062461219727993,0.038158722221851,-0.016910057514906]],[[-0.022221909835935,-0.015738599002361,-0.0051146899349988],[0.012763662263751,0.025542765855789,-0.030789315700531],[-0.028687657788396,-0.051061570644379,-0.040791310369968]],[[-0.012477279640734,-0.036603856831789,-0.00064257526537403],[0.004992303904146,-0.018424026668072,-0.013246276415884],[0.012457928620279,0.012501233257353,-0.0072640241123736]],[[-0.0042583607137203,-0.0078917192295194,-0.017319910228252],[-0.014356982894242,0.02343949303031,0.00059768790379167],[-0.0081220529973507,-0.060000654309988,0.046038296073675]],[[-0.021998308598995,0.026743143796921,0.055801164358854],[0.0008871789323166,-0.046748854219913,-0.0408137999475],[0.028129881247878,-0.076335579156876,0.063876904547215]],[[-0.062922731041908,-0.053214062005281,0.066886939108372],[-0.068756826221943,0.039445258677006,-0.16610984504223],[0.057232767343521,0.12593974173069,0.048208896070719]],[[-0.026407888159156,-0.031806834042072,-0.051954384893179],[0.012556065805256,0.011058989912271,-0.029223380610347],[0.060084842145443,-0.018014112487435,-0.058429222553968]],[[-0.0070385788567364,-0.050804689526558,-0.043120235204697],[-0.0096898041665554,0.02920663356781,0.071126505732536],[0.073336079716682,0.06614775210619,0.024090254679322]],[[0.001320821698755,-0.03720361739397,-0.040036059916019],[-0.0031551390420645,-0.030762931331992,0.030836507678032],[0.014319534413517,-0.00081800867337734,0.10747451335192]],[[0.054386243224144,-0.035533633083105,-0.055927876383066],[0.0055179791525006,0.0043841651640832,0.026790682226419],[-0.048202898353338,-0.02736802212894,-0.037583757191896]],[[-0.031453523784876,0.0655407756567,0.013808413408697],[-0.032969240099192,-0.029331291094422,0.0021337892394513],[0.06100045889616,-0.0017428232822567,0.034379113465548]],[[-0.039512377232313,-0.025829704478383,-0.056151699274778],[-0.034386921674013,-0.057025339454412,-0.053942244499922],[0.044198654592037,-0.00639987597242,0.047806728631258]],[[0.0012786224251613,-0.0037182059604675,-0.010944340378046],[-0.018550530076027,-0.02230822108686,0.03309553489089],[-0.04003694280982,0.0037770164199173,-0.034477721899748]],[[-0.098912045359612,0.099240601062775,0.025365957990289],[-0.057919651269913,0.033205036073923,0.1176649928093],[-0.080680966377258,0.023752061650157,0.07508846372366]],[[0.003770625917241,0.041945666074753,-0.02151739038527],[0.00035808817483485,-0.13017971813679,0.052251249551773],[0.09482604265213,0.042628616094589,0.051476784050465]],[[-0.021250650286674,0.0098959868773818,-0.024756567552686],[-0.015610061585903,0.030422404408455,0.00039342968375422],[0.091516971588135,0.074636526405811,0.064070351421833]],[[-0.028755016624928,-0.01878571882844,0.045145343989134],[0.05341000109911,-0.0056001073680818,0.00078704248880967],[0.10731119662523,0.08985410630703,0.023687051609159]],[[0.011462355032563,0.044940751045942,0.014986936934292],[-0.030734039843082,0.039492003619671,-0.044354349374771],[0.0083973072469234,-0.03133549913764,-0.0001792772236513]],[[0.01471796259284,0.0034914605785161,0.013632946647704],[-0.049726732075214,0.069396369159222,-0.037533633410931],[-0.022912377491593,-0.044942911714315,-0.0078561091795564]],[[-0.018872132524848,-0.00052755227079615,0.010411499999464],[0.067273259162903,0.030265811830759,0.0084096407517791],[0.052654575556517,0.024195028468966,0.015791403129697]],[[-0.026905110105872,-0.066734440624714,-0.038300096988678],[-0.095824085175991,0.019345935434103,0.0021408873144537],[-0.054897494614124,0.071687459945679,-0.0078893350437284]],[[-0.05462184920907,-0.042262367904186,0.0049476898275316],[-0.0076679768972099,0.041882079094648,0.027656719088554],[0.046776760369539,-0.075536206364632,0.070957757532597]],[[0.01878871396184,0.010144806466997,-0.03575899079442],[-0.0011509628966451,-0.03906274586916,0.0079388190060854],[0.024280840530992,0.012124264612794,-0.019232258200645]],[[0.0065566981211305,-0.041635625064373,-0.04038218781352],[-0.0243927128613,-0.044295504689217,-0.03829438611865],[0.025560762733221,-0.031721726059914,0.049701429903507]],[[-0.00010414881398901,0.041937436908484,0.029439257457852],[0.04143139347434,0.031141947954893,0.069492176175117],[0.038419485092163,-0.0015290275914595,0.0036420673131943]],[[0.0066372384317219,-0.014958078041673,-0.055169366300106],[0.024426052346826,-0.029607469215989,-0.024014871567488],[0.025225846096873,-0.018381990492344,-0.068190522491932]],[[-0.1187732219696,-0.068623527884483,0.010752345435321],[-0.038595415651798,-0.030598532408476,-0.038785509765148],[0.00098131457343698,-0.0033085856121033,0.015311049297452]],[[0.068839848041534,0.020188506692648,-0.069954216480255],[0.010621743276715,-0.04377031698823,-0.054093200713396],[-0.012640602886677,-0.11249452829361,-0.00063719478202984]],[[-0.053958527743816,0.037730656564236,0.022196557372808],[0.023711077868938,-0.0072528924793005,0.022104419767857],[-0.014171987771988,-0.039087969809771,0.040444284677505]],[[-0.069864884018898,0.010812475346029,0.072675704956055],[-0.032688483595848,-0.02339474670589,-0.002206854056567],[-0.015187776647508,0.02024563588202,-0.0064069321379066]],[[0.0095701785758138,-0.0355464220047,0.031348954886198],[-0.021212320774794,-0.015031435526907,0.054140347987413],[0.062622971832752,-0.078077480196953,-0.024343566969037]],[[-0.052376687526703,-0.0062359594739974,-0.028723331168294],[-0.022701270878315,-0.042646024376154,0.011466400697827],[0.028692031279206,0.0061664758250117,-0.028096111491323]],[[0.027176404371858,0.020515395328403,0.019346248358488],[0.0049016722477973,0.036091364920139,-0.043429896235466],[0.0040681166574359,0.036161277443171,-0.0052631702274084]],[[0.010609178803861,-0.036808494478464,-0.062610469758511],[-0.003258096287027,0.033042054623365,-0.05685693025589],[0.057934675365686,0.022273192182183,0.0055264821276069]],[[0.047290969640017,-0.0060940240509808,-0.003525486914441],[0.035593654960394,0.035927996039391,0.027315557003021],[0.057044859975576,0.00096005282830447,-0.046970658004284]],[[-0.011968355625868,0.0076201925985515,-0.03515987098217],[0.011892101727426,-0.051227439194918,0.071450456976891],[0.034008305519819,-0.056957799941301,-0.046836916357279]],[[0.0026771805714816,0.028343191370368,-0.051566038280725],[-0.038831993937492,-0.010951357893646,0.0035654278472066],[-0.013103753328323,0.0050582117401063,0.019846552982926]],[[-0.015095970593393,0.038495544344187,0.022204102948308],[-0.023498985916376,-0.01937816850841,0.02847733721137],[0.020654462277889,0.0093437815085053,-0.04128785431385]],[[-0.0004665031156037,-0.045173786580563,0.0074297459796071],[-0.0056143817491829,-0.030665960162878,-0.11170632392168],[0.060451127588749,0.0078009171411395,-0.044838599860668]],[[-0.046889312565327,-0.0060748946852982,0.028776280581951],[0.042420919984579,-0.026780337095261,-0.036661859601736],[0.01358535233885,0.033301968127489,-0.024758400395513]],[[-0.032677575945854,-0.033189263194799,0.025013361126184],[0.049506977200508,-0.025167910382152,-0.048417508602142],[0.018069857731462,0.060367058962584,-0.025018285959959]],[[-0.031295713037252,0.0016144736437127,0.018460489809513],[0.039846364408731,-0.00077084713848308,0.0037729400210083],[0.033191662281752,0.0028601246885955,0.020452713593841]],[[-0.084517389535904,-0.020376151427627,0.026281731203198],[-0.037163238972425,0.044422458857298,0.058770902454853],[0.062786519527435,0.03430662676692,0.065364643931389]],[[0.016121491789818,-0.02714584954083,-0.024365721270442],[-0.098790019750595,-0.062191922217607,-0.029967442154884],[-0.02117152698338,-0.0059649152681231,0.0047961692325771]],[[0.016860349103808,0.013066840358078,0.017012447118759],[-0.073946371674538,-0.023583333939314,0.094629049301147],[-0.028514677658677,0.020849572494626,0.07495241612196]],[[-0.056312929838896,0.031641121953726,-0.0085496157407761],[-0.009334254078567,-0.030048787593842,0.027072621509433],[-0.00025299825938419,-0.029750438407063,-0.020540362223983]],[[0.090928010642529,0.055385950952768,-0.012628152966499],[0.017515636980534,-0.037306848913431,0.0029225756879896],[0.063336454331875,0.02176322042942,-0.021508205682039]],[[0.034352160990238,-0.038952849805355,0.00086166267283261],[0.075429812073708,0.04387404024601,0.037752471864223],[0.026938578113914,0.060220170766115,0.060215376317501]],[[0.040042389184237,-0.038508143275976,-0.04002495855093],[0.002677834359929,-0.02806393429637,-0.025712857022882],[0.038403458893299,-0.090147398412228,-0.090918831527233]],[[0.014097365550697,-0.083294108510017,-0.030969565734267],[-0.055826980620623,0.062907502055168,-0.088371500372887],[-0.046379704028368,-0.048473101109266,-0.021347405388951]],[[0.021608164533973,-0.028092697262764,0.02089555375278],[-0.041677009314299,0.040539089590311,0.013455255888402],[0.014545137993991,-0.015160894021392,-0.016174143180251]],[[-0.0024216927122325,0.059127207845449,-0.022308941930532],[0.045458629727364,0.083549730479717,0.052941720932722],[-0.020526830106974,0.05806252732873,-0.045076955109835]],[[-0.057519197463989,0.021736957132816,-0.028956405818462],[0.046436183154583,-0.019282873719931,-0.030717285349965],[-0.018371013924479,-0.026606373488903,-0.014247146435082]],[[0.07123726606369,0.073153108358383,-0.018229285255075],[0.0066754412837327,0.10460951179266,0.096436686813831],[-0.065980978310108,0.0095665734261274,0.079922497272491]],[[0.074913807213306,-0.0021851765923202,0.031637314707041],[0.058405760675669,-0.0023827461991459,-0.070389397442341],[0.021022060886025,-0.028670700266957,-0.0064016478136182]],[[-0.0051629836671054,-0.072705782949924,-0.0079545006155968],[0.031711369752884,0.0033084941096604,0.017521446570754],[-0.016908099874854,0.00060164497699589,-0.017767138779163]],[[-0.028918333351612,-0.0067847417667508,-0.052728418260813],[-0.043963253498077,-0.038573071360588,-0.027469327673316],[-0.023986075073481,-0.032286673784256,0.010405196808279]],[[-0.0093947993591428,-0.017903843894601,0.036285992711782],[0.016265263780951,-0.013295764103532,0.0012763494160026],[-0.006348293274641,-0.028765723109245,-0.018505785614252]],[[-0.049524459987879,-0.1126805767417,-0.0075677307322621],[-0.01164108607918,0.0059743793681264,0.01230501756072],[0.01507599838078,0.022358365356922,0.039921574294567]],[[0.039978593587875,0.051847498863935,0.033367268741131],[0.0036138172727078,-0.0058883824385703,0.033468943089247],[-0.064060673117638,-0.017213327810168,0.020911663770676]],[[0.058352548629045,0.036098267883062,0.0027901150751859],[0.032725650817156,0.035710591822863,0.023161813616753],[-0.0083701675757766,0.059542927891016,0.010204575024545]],[[0.028331253677607,0.040645580738783,0.010541361756623],[-0.025980556383729,0.0046648173592985,0.0046065510250628],[-0.0056167533621192,-0.013985071331263,0.021359954029322]],[[0.0089976601302624,0.0098770605400205,-0.028921589255333],[-0.040996845811605,0.040404688566923,-0.066584281623363],[0.00077517714817077,-0.038798872381449,0.01426890771836]],[[0.00192312290892,-0.023301973938942,-0.01104446221143],[0.01850270666182,-0.0017434488981962,0.017272280529141],[-0.031375743448734,-0.035338412970304,0.057595204561949]]],[[[0.0011741002090275,-0.090601041913033,0.022251995280385],[-0.012035095132887,0.057425800710917,-0.039840307086706],[0.0090363631024957,0.022016823291779,-0.016821233555675]],[[-0.028237191960216,-0.057165145874023,0.061586365103722],[0.01594184152782,-0.018816862255335,-0.0016443729400635],[0.012753685936332,-0.088637329638004,-0.04262962564826]],[[0.027397779747844,-0.011389586143196,-0.0054470403119922],[0.02971370331943,0.020904775708914,-0.071384824812412],[0.088931240141392,0.018063236027956,0.013733685016632]],[[-0.037945590913296,-0.079129971563816,0.027881322428584],[0.071647375822067,0.063989751040936,-0.070935614407063],[-0.065887741744518,-0.015105394646525,-0.043616831302643]],[[0.046943921595812,0.046870678663254,0.06217247620225],[0.025982918217778,0.0035673659294844,-0.12866623699665],[-0.034634385257959,0.0079580191522837,-0.0033015499357134]],[[0.01968820951879,0.032207239419222,-0.056222591549158],[-0.054303538054228,0.065898157656193,-0.027776051312685],[0.047975886613131,0.10312284529209,-0.060415714979172]],[[-0.040824122726917,-0.034697759896517,-0.041463054716587],[0.0038338960148394,0.009590026922524,0.038697030395269],[-0.012694631703198,-0.020289314910769,-0.062380637973547]],[[-0.020265867933631,0.043698083609343,-0.071442976593971],[-0.080104738473892,-0.0035031549632549,0.0062980898655951],[-0.021921800449491,0.058339584618807,0.081619411706924]],[[-0.1303273588419,-0.0071032564155757,-0.057476975023746],[-0.061303935945034,0.023971538990736,0.11990286409855],[0.0045310468412936,0.005181479267776,-0.087943874299526]],[[-0.0084982514381409,-0.009925115853548,-0.054005932062864],[-0.029841605573893,-0.0086520938202739,0.075375311076641],[-0.049400925636292,0.014958515763283,-0.19141571223736]],[[-0.027293836697936,-0.023041354492307,0.06447684019804],[-0.067487441003323,-0.075362406671047,0.063137277960777],[0.0075684837065637,0.13807249069214,0.074990667402744]],[[0.17976221442223,0.093124032020569,0.074468143284321],[-0.019077861681581,0.02735230140388,0.010185437276959],[0.10714995861053,0.028829554095864,0.099195666611195]],[[-0.035378314554691,0.02127962000668,-0.043075334280729],[0.02590431086719,0.08160562813282,-0.0021676765754819],[0.078762412071228,0.03536669164896,-0.019999602809548]],[[-0.053451094776392,0.11535934358835,-0.052811179310083],[0.0051312390714884,-0.048191010951996,-0.058726914227009],[0.10023538023233,0.077621094882488,-0.0021477174013853]],[[0.0051792366430163,0.012479248456657,-0.1067508533597],[0.012448010966182,-0.0040930490940809,0.0392080321908],[-0.052057929337025,0.1079517826438,-0.078094437718391]],[[-0.11513783782721,0.19476465880871,-0.112129740417],[0.045279990881681,0.093665257096291,-0.0078156376257539],[-0.048654198646545,0.0068136313930154,-0.056997120380402]],[[0.038486566394567,0.0102100931108,-0.021964190527797],[0.019767889752984,0.027745719999075,-0.026073014363647],[-0.028045093640685,-0.011528972536325,0.031170599162579]],[[-0.063436724245548,0.0031999140046537,-0.040584456175566],[0.015580176375806,0.014815301634371,0.045535255223513],[-0.034324888139963,-0.026582222431898,-0.077961228787899]],[[0.022391606122255,0.0019563098903745,0.05597060546279],[-0.040818341076374,0.070881180465221,-0.044250048696995],[0.030161563307047,-0.0091325109824538,-0.061930436640978]],[[-0.0083209574222565,0.022047288715839,0.017974512651563],[-0.068740352988243,-0.05114658921957,-0.12118076533079],[-0.081575453281403,-0.06424617767334,0.10052713751793]],[[0.048636823892593,0.0036700726486742,-0.024225946515799],[-0.03760439530015,0.0457395426929,0.019372904673219],[0.15704067051411,0.016893172636628,-0.051512751728296]],[[-0.028096182271838,-0.024266954511404,-0.0083312168717384],[0.076504416763783,0.074050605297089,0.014866721816361],[-0.031106417998672,0.050747234374285,-0.0011207009665668]],[[-0.02259055711329,-0.0028221623506397,0.042435694485903],[-0.055166132748127,0.0689302906394,0.045401308685541],[-0.037528734654188,-0.032776299864054,-0.026400336995721]],[[-0.0027316224295646,0.026790138334036,-0.071258865296841],[0.0087709287181497,-0.049205660820007,0.062364041805267],[0.019435429945588,0.033198174089193,0.10602133721113]],[[0.12071148306131,0.017699899151921,0.06998298317194],[-0.0694415345788,-0.023638937622309,-0.039912719279528],[0.037353627383709,0.075202964246273,-0.02807579189539]],[[-0.03677324205637,-0.055603809654713,-0.037367325276136],[0.017165884375572,-0.041489537805319,-0.025328097864985],[0.039993114769459,-0.010490717366338,0.0023910100571811]],[[0.046493675559759,0.088671199977398,-0.015993610024452],[0.0077478475868702,-0.014465627260506,-0.10088405758142],[-0.031431026756763,0.095007814466953,-0.018487064167857]],[[-0.13324834406376,0.056580029428005,0.072865553200245],[-0.030686547979712,0.079185672104359,0.090594597160816],[-0.013182115741074,0.041975162923336,0.05037984624505]],[[-0.024447955191135,-0.05482017621398,0.050074845552444],[0.046093836426735,0.0020353398285806,0.11207780987024],[0.035067345947027,-0.064223371446133,-0.026320783421397]],[[-0.065082460641861,-0.070992395281792,0.020781980827451],[-0.013935898430645,-0.10861667990685,-0.046017710119486],[-0.063396416604519,-0.028592154383659,-0.027804266661406]],[[0.023296732455492,-0.023098323494196,0.082095764577389],[-0.0020601837895811,-0.038516137748957,-0.13480979204178],[-0.04767007753253,-0.037066742777824,0.07449758797884]],[[0.027351975440979,-0.038481131196022,0.01167050562799],[0.170255869627,-0.097002670168877,0.16267842054367],[-0.098742924630642,-0.046906754374504,-0.062864981591702]],[[-0.083738915622234,-0.016434092074633,-0.062686122953892],[0.13103461265564,0.054502815008163,-0.0044035608880222],[-0.057366233319044,-0.0093055721372366,0.033850621432066]],[[0.020798670127988,-0.018434951081872,0.097028158605099],[-0.058611456304789,-0.034150585532188,0.045891612768173],[-0.042919360101223,-0.015000361949205,0.036558102816343]],[[-0.063797518610954,-0.08650304377079,-0.10929949581623],[0.041258566081524,0.12492741644382,0.11318372189999],[-0.029407538473606,-0.1291097253561,-0.026890205219388]],[[-0.015594728291035,-0.0064328606240451,-0.010561365634203],[0.011450038291514,-0.12619288265705,-0.12779708206654],[-0.01564322039485,-0.10812235623598,-0.040145587176085]],[[-0.024960231035948,0.014804279431701,-0.067065119743347],[0.17736576497555,-0.046846155077219,0.12397224456072],[0.031064681708813,-0.073864005506039,-0.023461760953069]],[[0.071812525391579,-0.046479903161526,0.0025121832732111],[-0.0092001492157578,0.10125416517258,0.011392282322049],[-0.067238762974739,-0.035558842122555,-0.12376126646996]],[[0.05866926908493,-0.056321304291487,0.17343856394291],[-0.056078620254993,-0.099471747875214,-0.057834144681692],[0.078635543584824,-0.08704948425293,0.11750061810017]],[[0.026653500273824,0.071407198905945,-0.0057800258509815],[-0.048352360725403,0.0068089999258518,-0.038850329816341],[0.058817215263844,0.004963899962604,-0.016009259968996]],[[0.018597260117531,-0.071960307657719,0.13188309967518],[0.005939413793385,0.078403517603874,-0.07209424674511],[-0.04554707929492,-0.081414639949799,0.056849107146263]],[[0.06787121295929,0.014210847206414,0.012884634546936],[0.044041316956282,-0.21676699817181,-0.077754974365234],[0.074434578418732,0.013875769451261,0.043149530887604]],[[-0.036115605384111,-0.013459109701216,-0.034129474312067],[-0.023980991914868,-0.00067689002025872,-0.07144720107317],[0.077899627387524,-0.11114892363548,0.027334010228515]],[[-0.068215109407902,-0.10468342900276,-0.11119455844164],[0.003469048300758,-0.062114711850882,0.031294997781515],[-0.011251492425799,-0.036493688821793,-0.061910402029753]],[[0.082068085670471,-0.18317483365536,0.0012064328184351],[-0.02606387808919,-0.0013970269355923,0.12496316432953],[0.08594886213541,-0.14235958456993,0.043203569948673]],[[0.034554898738861,0.015769448131323,0.027747137472034],[-0.025200402364135,-0.07475583255291,-0.057769358158112],[0.0095761101692915,0.032325960695744,-0.083091624081135]],[[0.024281417950988,0.015090505592525,0.0010102909291163],[-0.05440616980195,0.014683880843222,-0.054259825497866],[0.14654837548733,-0.043360844254494,-0.018700212240219]],[[-0.049319494515657,-0.075338311493397,-0.003988228738308],[-0.038067992776632,0.064808025956154,-0.0050484449602664],[0.0087765036150813,-0.0010132401948795,-0.068002499639988]],[[-0.012773808091879,0.046715892851353,0.15273134410381],[-0.12785083055496,-0.054129354655743,0.023619739338756],[0.077869743108749,-0.086000718176365,0.13881781697273]],[[0.043019454926252,0.015596113167703,0.0053635975345969],[0.073322355747223,-0.035832233726978,0.0047272350639105],[0.020148040726781,0.031479053199291,-0.0082833282649517]],[[0.034531693905592,-0.063409604132175,0.0033688340336084],[0.041416861116886,0.07253360003233,0.044153857976198],[0.08788725733757,-0.031120710074902,0.091487303376198]],[[-0.013703060336411,0.025072459131479,0.013816787861288],[-0.056531049311161,-0.00813930016011,0.027490317821503],[-0.0068817506544292,-0.0029344556387514,-0.059825703501701]],[[-0.024791810661554,-0.13157637417316,0.0052176644094288],[-0.15808457136154,-0.037643071264029,-0.0023302643094212],[-0.041371189057827,-0.072343535721302,-0.052817348390818]],[[0.12724570930004,-0.04787340387702,0.078702636063099],[-0.0046006347984076,0.0088452827185392,0.051572050899267],[0.11576492339373,0.079406432807446,0.1423536837101]],[[0.0029317687731236,0.10791362076998,0.04758832603693],[-0.030948529019952,-0.085912011563778,-0.017919996753335],[-0.028342112898827,0.13574613630772,-0.0058636697940528]],[[0.017963713034987,-0.011226754635572,-0.038125958293676],[-0.052425388246775,0.0027126888744533,-0.054176520556211],[-0.071681246161461,0.083409629762173,-0.052855115383863]],[[-0.058786317706108,-0.068903625011444,0.034441754221916],[-0.035504013299942,-0.1471506357193,0.10151249170303],[-0.044233627617359,0.09094549715519,0.010653160512447]],[[-0.051634445786476,-0.0038688031490892,-0.11908131837845],[0.026493335142732,0.032910831272602,-0.012870579957962],[-0.095343627035618,-0.034507319331169,-0.1460953950882]],[[0.086427733302116,-0.1136879324913,0.069367751479149],[-0.029031071811914,0.059516951441765,0.02109751291573],[0.016943484544754,-0.057679358869791,0.034342274069786]],[[0.033502981066704,0.022969657555223,-0.019407251849771],[-0.010365975089371,0.006827246863395,-0.067634433507919],[0.036215294152498,0.022131890058517,0.053078707307577]],[[0.013593563809991,0.034070406109095,0.15968100726604],[-0.085421167314053,0.053470958024263,-0.126598700881],[-0.08051224052906,0.015260700136423,-0.019215386360884]],[[-0.037408150732517,-0.042730584740639,-0.035118069499731],[0.037313722074032,-0.09220315515995,0.10114566236734],[-0.050347276031971,-0.0066781928762794,0.040294848382473]],[[-0.021783236414194,0.0082704201340675,0.0073002767749131],[0.17067921161652,-0.088909521698952,0.097371838986874],[-0.037153992801905,0.0026435251347721,-0.1933481991291]],[[-0.008652918972075,-0.089834429323673,0.11387384682894],[0.10560765862465,-0.051364663988352,0.059319283813238],[0.094181925058365,-0.12248254567385,0.058556575328112]]],[[[-0.065141446888447,0.077009990811348,-0.12181871384382],[0.019727658480406,0.016746988520026,-0.060302045196295],[0.04851620644331,-0.011462981812656,0.047791995108128]],[[-0.08160437643528,-0.16452407836914,-0.1316162198782],[0.014603231102228,0.031342387199402,-0.024498840793967],[-0.049509823322296,-0.068926744163036,-0.065523236989975]],[[-0.018403658643365,-0.045015849173069,-0.080224774777889],[-0.03941447660327,0.028562741354108,-0.01303266081959],[0.022846659645438,0.0014715068973601,-0.0059581119567156]],[[0.0084217162802815,0.011977424845099,-0.028128828853369],[0.014378417283297,0.043186742812395,0.083857879042625],[0.03943894430995,0.04819867759943,0.065050765872002]],[[-0.062922894954681,-0.010993746109307,-0.0035272769164294],[-0.04532378166914,0.027227006852627,-0.044719539582729],[-0.018444068729877,-0.061734840273857,-0.0088139018043876]],[[0.011902597732842,0.19781075417995,-0.082427471876144],[-0.03462802991271,-0.018993195146322,-0.07409480214119],[-0.072114236652851,-0.1044672653079,-0.082513064146042]],[[0.032126359641552,0.015018654987216,-0.020262898877263],[-0.038622744381428,0.011282807216048,0.002830965211615],[0.027621150016785,-0.043589927256107,-0.039682921022177]],[[-0.0077541409991682,-0.0035098693333566,-0.016174567863345],[0.039728425443172,-0.13509024679661,0.034076832234859],[-0.077985629439354,0.021578507497907,0.0071493280120194]],[[0.065515495836735,0.1041165292263,-0.084539018571377],[0.048200119286776,-0.01613362878561,0.029225714504719],[-0.011140743270516,0.10224921256304,0.043936803936958]],[[-0.17124021053314,0.072356909513474,-0.031359866261482],[0.0044787754304707,0.010737247765064,-0.063490115106106],[-0.039475470781326,0.017234202474356,0.040964841842651]],[[0.044614024460316,-0.071134112775326,0.043603263795376],[-0.17054651677608,-0.059576250612736,0.040643349289894],[0.026842255145311,-0.048814557492733,0.0010291158687323]],[[-0.0076182335615158,0.037614315748215,-0.031792003661394],[-0.0023608112242073,0.0072990567423403,0.021964155137539],[-0.029057905077934,-0.0072724078781903,-0.022957952693105]],[[-0.050729997456074,-0.14777502417564,0.0081671541556716],[-0.14127112925053,-0.014901439659297,-0.122429035604],[-0.08182929456234,0.022834818810225,-0.014633453451097]],[[0.091565541923046,0.056816980242729,-0.017757326364517],[0.087365306913853,0.085782125592232,0.0012152992421761],[0.087019629776478,0.0049918056465685,-0.017231775447726]],[[0.026724671944976,-0.030473105609417,0.046175014227629],[-0.13942225277424,0.022591141983867,0.0068733613006771],[0.014512246474624,0.047416381537914,-0.024901073426008]],[[-0.031843844801188,0.052915848791599,-0.064112387597561],[0.04461120814085,-0.028450053185225,-0.085117772221565],[-0.0054052141495049,0.019480746239424,-0.040426831692457]],[[0.008102179504931,-0.025525229051709,-0.016344454139471],[0.0059594279155135,-0.0098790638148785,-0.010991457849741],[-0.040941663086414,0.022475650534034,-0.065774165093899]],[[-0.0099509879946709,0.0094377128407359,0.01876482181251],[-0.037170361727476,0.0065011894330382,0.011500900611281],[0.0085715791210532,-0.056336272507906,0.040975283831358]],[[-0.032425925135612,-0.054558396339417,-0.0085238879546523],[-0.010515075176954,0.02226272597909,0.0022512159775943],[0.010491011664271,-0.0034138679038733,0.021967483684421]],[[-0.019014183431864,0.071726486086845,0.095529325306416],[0.017840849235654,0.0087163997814059,0.00097418430959806],[0.035059377551079,0.066283255815506,-0.026832779869437]],[[0.059213913977146,-0.036100514233112,0.044095687568188],[0.041563116014004,0.046315416693687,0.021886065602303],[-0.038790248334408,0.044055938720703,0.050374802201986]],[[0.093130186200142,-0.066712349653244,0.016863826662302],[0.12014769017696,-0.081868268549442,0.057284016162157],[-0.055749963968992,-0.057554498314857,0.077112659811974]],[[0.0026141467969865,0.013601724989712,0.013500463217497],[-0.034472525119781,-0.011554656550288,0.04877346009016],[-0.020379286259413,-0.012896996922791,0.013993639498949]],[[0.032826080918312,0.024727918207645,0.098694019019604],[0.0028072497807443,0.041605349630117,0.059289764612913],[0.025496682152152,-0.0032243174500763,0.019156062975526]],[[0.074176304042339,0.021059315651655,-0.0019601145759225],[-0.0018912983359769,-0.076429836452007,0.029640581458807],[-0.11488476395607,0.002345482353121,0.032733533531427]],[[-0.10894396156073,-0.095708690583706,-0.11721085011959],[0.027953110635281,-0.094033002853394,-0.09767509996891],[-0.10607128590345,-0.11476339399815,0.0073620723560452]],[[0.01263979729265,0.020387940108776,0.10701345652342],[0.081668429076672,0.053242839872837,-0.012960721738636],[0.026707330718637,0.1183830499649,0.020661449059844]],[[-0.091007180511951,0.019499199464917,0.050354793667793],[0.046195741742849,0.057374633848667,-0.018467132002115],[-0.044550303369761,-0.024088410660625,-0.090337172150612]],[[0.018355388194323,-0.023372743278742,0.0096082827076316],[0.071514338254929,-0.019336171448231,-0.072136096656322],[0.0056606931611896,-0.016631484031677,0.011338035576046]],[[-0.030338898301125,-0.074667878448963,-0.0052578523755074],[0.073064394295216,-0.074297346174717,0.0086487075313926],[-0.0019769670907408,-0.020323844626546,0.012323740869761]],[[-0.022643566131592,-0.1706316024065,-0.0756825953722],[-0.061480302363634,-0.05768733471632,-0.010375662706792],[-0.024050008505583,-0.057024724781513,0.014393844641745]],[[0.066974803805351,0.18183022737503,0.00028407422360033],[0.01032324321568,0.086638689041138,-0.079730071127415],[0.076638333499432,-0.016389979049563,0.042937841266394]],[[0.011401357129216,-0.056128315627575,0.076844587922096],[-0.12403868883848,0.025767855346203,0.040246278047562],[0.032345447689295,0.028554731979966,0.075565710663795]],[[-0.032968532294035,0.14397950470448,0.014794298447669],[-0.12487234920263,-0.097457706928253,-0.0060027251020074],[-0.074723236262798,0.013632940128446,0.058870237320662]],[[0.052412673830986,-0.013413100503385,-0.13111470639706],[0.010051709599793,-0.065716631710529,-0.075654596090317],[-0.12403512001038,-0.042213652282953,0.038282368332148]],[[0.062156517058611,0.0084591498598456,0.0054446305148304],[0.04394669085741,-0.044485297054052,0.012012102641165],[-0.0014421450905502,-0.039453949779272,0.013711276464164]],[[-0.015866240486503,0.065063029527664,-0.098387658596039],[0.0016333502717316,0.014947198331356,-0.029478963464499],[0.047953806817532,0.037411894649267,0.06456071138382]],[[0.11035843938589,0.049386996775866,0.052746191620827],[0.15492127835751,-0.13643774390221,0.040312778204679],[-0.026578318327665,-0.067595295608044,0.12949967384338]],[[-0.074984543025494,0.037347439676523,0.077900692820549],[-0.0045392354950309,0.051411267369986,-0.01940156519413],[-0.017337650060654,0.069518491625786,-0.0079550668597221]],[[-0.015686810016632,0.016163071617484,0.053610324859619],[-0.021985974162817,-0.0082875108346343,0.023986328393221],[0.014048082754016,0.064150549471378,-0.12986934185028]],[[-0.057380672544241,-0.0006947256042622,0.065791383385658],[0.010080518200994,-0.0074215247295797,-0.033781513571739],[0.036419972777367,-0.062953770160675,-0.015401134267449]],[[0.038674555718899,-0.0026722478214651,-0.038380179554224],[-0.0038451149594039,0.041727788746357,0.0022294772788882],[0.0068141226656735,0.011092299595475,-0.0096551803871989]],[[0.013630685396492,0.07770100235939,0.029986653476954],[-0.028972389176488,0.047499511390924,-0.07857733219862],[-0.041341617703438,-0.048777401447296,0.023660629987717]],[[0.12159565836191,0.080928318202496,0.05143766477704],[-0.054465632885695,0.015518458560109,0.036746598780155],[-0.076671689748764,-0.046050045639277,0.041505005210638]],[[-0.097433395683765,-0.18250966072083,-0.060525722801685],[-0.13660532236099,-0.035001341253519,0.050031468272209],[-0.079457804560661,0.024228695780039,0.00020870269509032]],[[-0.022343268617988,0.014999589882791,0.11881940811872],[0.038420185446739,-0.014095799066126,0.018287010490894],[0.016205474734306,0.0085246684029698,-0.057287223637104]],[[-0.032602213323116,0.071123369038105,0.010640456341207],[0.031973510980606,0.027992123737931,-0.018944445997477],[0.082783661782742,-0.030680648982525,-0.029385572299361]],[[-0.044885147362947,-0.11377374082804,-0.039952453225851],[-0.056096974760294,-0.051365070044994,-0.0042351996526122],[-0.11875031888485,-0.016275182366371,0.0068244677968323]],[[0.010493508540094,-0.047962881624699,-0.067290596663952],[0.018529567867517,0.031436428427696,-0.02665058337152],[0.089688844978809,-0.071813322603703,0.039454761892557]],[[-0.056955553591251,-0.014012918807566,0.1221946105361],[-0.026070458814502,0.13108152151108,0.012706497684121],[0.015315317548811,0.060172159224749,0.0099816899746656]],[[-0.00019499877816997,0.00094793445896357,0.01077891048044],[-0.0091361869126558,-0.020205674692988,-0.030581681057811],[0.0079473629593849,0.0093796765431762,-0.017212064936757]],[[-0.023728176951408,0.064694680273533,-0.075151324272156],[-0.043919384479523,0.03261873498559,0.0061449808999896],[0.007955395616591,0.011270152404904,0.04467249661684]],[[-0.0013755125692114,-0.075461313128471,-0.044328205287457],[-0.082906551659107,-0.080382689833641,-0.022430969402194],[-0.099860012531281,0.0067750955931842,-0.023484662175179]],[[0.061964321881533,0.052654754370451,0.091217562556267],[0.094863757491112,0.081911064684391,0.039116788655519],[0.093613661825657,0.067600347101688,0.022414634004235]],[[-0.13056267797947,0.075372569262981,0.087204746901989],[0.013220656663179,0.037054140120745,-0.13618968427181],[0.0061248978599906,-0.1293028742075,0.013812063261867]],[[-0.0059960214421153,-0.096252590417862,-0.10481867939234],[-0.045681107789278,0.0015356480143964,-0.0050058299675584],[-0.055390547960997,-0.057146489620209,0.011027806438506]],[[0.044141724705696,0.077019460499287,0.034367881715298],[0.090817019343376,-0.02336298301816,0.044440656900406],[0.041250694543123,-0.012009255588055,0.090786308050156]],[[-0.015251580625772,0.050983279943466,0.013280547223985],[-0.0029308907687664,0.034049361944199,-0.018133696168661],[0.0028184445109218,-0.050578467547894,-0.065437003970146]],[[0.0078498544171453,0.0096926540136337,0.086706854403019],[-0.024731425568461,0.0061877286061645,0.0020222165621817],[0.023882472887635,-0.07260650396347,-0.03317429125309]],[[-0.017289239913225,0.019807200878859,-0.010658731684089],[0.066359207034111,0.010226155631244,-0.00027773636975326],[0.021218730136752,-0.013138270936906,0.027061440050602]],[[0.067515052855015,0.031572561711073,0.088254652917385],[0.023900840431452,0.031788051128387,-0.013532257638872],[0.0068607088178396,0.12012579292059,0.0041606617160141]],[[-0.0046070502139628,0.1071278527379,-0.047775402665138],[0.011385736986995,0.004651403054595,-0.030138680711389],[-0.022117339074612,0.01953411847353,-0.038412325084209]],[[-0.014028113335371,0.078416436910629,-0.11491961032152],[0.034888155758381,0.031052459031343,-0.0042843404226005],[-0.052122909575701,-0.005509409122169,-0.050414863973856]],[[-0.0075207753106952,0.047897893935442,0.053717758506536],[-0.031818576157093,-0.0054581821896136,-0.13558386266232],[-0.03194622322917,0.097438149154186,-0.096492819488049]]],[[[0.021462405100465,0.002514896215871,0.0695970505476],[0.072439692914486,-0.06759162992239,0.0055872374214232],[-0.06316314637661,0.020781660452485,-0.0016190784517676]],[[-0.039750903844833,-0.039982710033655,-0.0043340367265046],[0.018103521317244,0.021969817578793,0.006951164919883],[-0.046394072473049,-0.016270970925689,-0.041304651647806]],[[0.0069439918734133,-0.07633139193058,0.0060316435992718],[-0.020677622407675,0.022742690518498,-0.042221426963806],[0.0071588773280382,0.018130315467715,-0.071523934602737]],[[0.030176557600498,-0.038050446659327,-0.019967583939433],[0.019435422495008,-0.03902168571949,-0.048840459436178],[0.038749720901251,-0.082988619804382,0.021756255999207]],[[0.031921524554491,-0.021100388839841,-0.075093798339367],[0.0049281446263194,-0.015475663356483,-0.00016918388428167],[0.0091284550726414,0.051225949078798,0.044257704168558]],[[-0.039155285805464,-0.015310317277908,-0.011777552776039],[0.061366330832243,-0.012706046923995,-0.092128127813339],[-0.02301512658596,0.037827480584383,-0.0064369398169219]],[[-0.051911316812038,0.060689948499203,-0.0024497397243977],[-0.027804287150502,0.045813281089067,0.023678123950958],[0.025797976180911,0.025320630520582,0.061109714210033]],[[0.014781501144171,-0.021415781229734,0.0056916023604572],[-0.047241546213627,-0.039366316050291,0.03599114716053],[-0.067597240209579,-0.011909853667021,-0.077161438763142]],[[-0.091023735702038,-0.045583751052618,-0.0086878715083003],[0.077391549944878,-0.043328698724508,0.019512075930834],[-0.0037876137066633,-0.048057522624731,-0.034547112882137]],[[0.036484692245722,-0.041341803967953,-0.0002459685492795],[0.0011364197125658,0.046814016997814,-0.003503720741719],[0.013196763582528,0.013314697891474,0.016528908163309]],[[-0.034376736730337,0.078237988054752,-0.0087674586102366],[-0.051738522946835,-0.027662152424455,0.064979828894138],[0.024666568264365,0.00053807569202036,-0.011525646783412]],[[-0.036955397576094,-0.11229369789362,-0.0014613275416195],[0.019927220419049,0.056485984474421,0.036540634930134],[0.031626861542463,0.035305682569742,0.076764538884163]],[[-0.026515867561102,0.029217010363936,-0.029218733310699],[-0.010516660287976,-0.015454459935427,-0.019661366939545],[-0.077300406992435,0.029050441458821,-0.012838535010815]],[[0.023225467652082,-0.039633076637983,0.050103057175875],[0.088484883308411,0.077955439686775,-0.0065581169910729],[0.033450122922659,0.033075269311666,0.019789522513747]],[[-0.03075734525919,-0.028181079775095,-0.002143198158592],[-0.057771034538746,0.013639139942825,-0.011845840141177],[-0.052991133183241,0.022206157445908,0.050469364970922]],[[-0.011869828216732,-0.035316906869411,-0.015574096702039],[-0.023501208052039,-0.004696948453784,0.027820827439427],[-0.0010050534037873,0.01386484503746,0.059252865612507]],[[0.051638629287481,0.010655542835593,0.016327356919646],[0.0065036676824093,0.0094055999070406,0.0050465818494558],[0.079747468233109,0.0057103172875941,0.058757912367582]],[[0.0031991212163121,-0.0008884763228707,-0.0034645677078515],[-0.020408323034644,0.033915147185326,-0.024653702974319],[-0.065104052424431,-0.05901999771595,0.022565068677068]],[[-0.00027746229898185,-0.08631157130003,-0.032135877758265],[0.030708370730281,0.027252733707428,-0.012804378755391],[0.072517715394497,-0.05317185074091,-0.034631107002497]],[[0.042784329503775,-0.033986561000347,-0.089532613754272],[0.0064500155858696,0.0028230722527951,-0.000788206118159],[-0.014691531658173,-0.0015041019069031,-0.040577612817287]],[[0.042515106499195,-0.05456593260169,-0.048343800008297],[0.0026772087439895,-0.016510864719748,-0.012507337145507],[0.054653864353895,0.0099789556115866,-0.092557027935982]],[[-0.031313721090555,0.0032441082876176,-0.01056148763746],[-0.041719723492861,-0.036636598408222,-0.028129858896136],[0.015050115063787,-0.0029335021972656,-0.045407559722662]],[[-0.031270232051611,0.026328187435865,-0.014105738140643],[0.017321756109595,-0.071849577128887,0.080447539687157],[-0.017631590366364,-0.017335053533316,0.035580150783062]],[[0.033554065972567,0.010396408848464,-0.037522707134485],[-0.015567294321954,-0.019262909889221,-0.044415608048439],[-0.0036113653331995,0.027211468666792,-0.041283838450909]],[[0.045915212482214,-0.064084962010384,0.084769323468208],[0.01835098490119,-0.041962835937738,-0.081160761415958],[-0.03534272313118,-0.015949659049511,0.061787314713001]],[[0.029721807688475,-0.0073166694492102,-0.0015449246857315],[-0.0055474936962128,0.0015255020698532,0.051428250968456],[0.0082127712666988,0.0021837379317731,-0.040817674249411]],[[0.0055660782381892,0.025196189060807,0.058577097952366],[0.0095356795936823,-0.023367932066321,-0.017472460865974],[0.033425506204367,0.076495371758938,0.078975953161716]],[[0.05396630987525,-0.046248912811279,-0.015816792845726],[-0.0069160326384008,0.051072992384434,0.031690370291471],[-0.10393349826336,-0.0065893963910639,-0.09861583262682]],[[-0.067433558404446,-0.17917442321777,0.025485180318356],[-0.0075605087913573,-0.052093036472797,-6.3442603277508e-05],[-0.017944384366274,-0.0034177002962679,0.10578810423613]],[[-0.042571898549795,-0.0066759479232132,-0.0031131391879171],[-0.041261784732342,-0.03207054361701,-0.0069117629900575],[0.1387143433094,-0.038866061717272,0.0087391678243876]],[[0.01093403249979,-0.095382377505302,-0.078607395291328],[0.059251792728901,-0.021421896293759,-0.031738970428705],[-0.06550120562315,0.059652846306562,-0.032341297715902]],[[0.022104080766439,0.038585171103477,0.044689849019051],[0.023353634402156,0.02212780714035,-0.020962024107575],[-0.041200645267963,0.010434452444315,-0.012552254833281]],[[-0.037016108632088,0.08376283198595,0.021903648972511],[0.0066918795928359,-0.062076915055513,0.040472667664289],[-0.046128958463669,-0.083972446620464,-0.065261542797089]],[[-0.00048985733883455,-0.040978521108627,-0.01408941950649],[-0.048964597284794,-0.040802638977766,-0.012352426536381],[0.041423462331295,-0.10741959512234,-0.052419193089008]],[[0.025584964081645,0.011623404920101,0.01627785153687],[0.031412780284882,-0.043504778295755,0.046566978096962],[0.057080760598183,-0.019068744033575,0.013347483240068]],[[0.034817643463612,0.035852327942848,0.029051437973976],[-0.0058517353609204,-0.022025723010302,-0.094515092670918],[0.053706668317318,0.044560991227627,-0.08058375865221]],[[-0.0047482172958553,-0.031884230673313,-0.022195216268301],[-0.061776835471392,-0.0062758987769485,-0.013569371774793],[-0.05258434638381,-0.047126602381468,0.030542593449354]],[[-0.013179248198867,0.023891186341643,-0.058128148317337],[0.0037360549904406,0.038669802248478,0.037576947361231],[0.0020067079458386,0.0045300237834454,0.013785695657134]],[[-0.0060312054120004,0.013469344004989,-0.024695916101336],[0.015993954613805,0.0080845560878515,-0.011040766723454],[0.0058331899344921,-0.015297475270927,0.0023782914504409]],[[0.045295145362616,0.013560106046498,0.0082324538379908],[0.032266478985548,-0.053186047822237,0.0087583428248763],[-0.012292003259063,-0.010605636052787,-0.012274812906981]],[[-0.082068972289562,-0.08988019824028,0.00093431834829971],[-0.052794609218836,-0.051260732114315,0.056945826858282],[0.05123857408762,-0.0087343826889992,0.10186136513948]],[[-0.035825908184052,-0.054112389683723,-0.057935476303101],[0.019769972190261,0.0020226484630257,0.057046357542276],[0.070614583790302,-0.060198999941349,-0.019813127815723]],[[-0.00054899940732867,0.0038539415691048,0.03046428412199],[-0.0045022484846413,-0.0015602698549628,0.0007495908648707],[-0.032061845064163,-0.0049097589217126,-0.0098847914487123]],[[0.00055478780996054,0.022857312113047,0.0019798367284238],[-0.0095756184309721,-0.025156831368804,-0.031252566725016],[-0.013675894588232,-0.063819192349911,-0.069665431976318]],[[-0.054193630814552,-0.015231258235872,0.06394861638546],[-0.002760550705716,-0.013227409683168,-0.0069948527961969],[0.028528051450849,-0.032649770379066,0.016284175217152]],[[0.01723856292665,0.0087268799543381,-0.012071097269654],[-0.056582793593407,-0.023932738229632,-0.047604244202375],[-0.002795142820105,0.070855870842934,-0.008780475705862]],[[0.011782458983362,0.060862697660923,-0.010629766620696],[-0.0088018234819174,-0.025348231196404,0.0081760948523879],[0.0045628827065229,-0.041809216141701,-0.020087337121367]],[[-0.043321054428816,-0.059743084013462,-0.045875124633312],[0.00014138243568595,0.008543910458684,0.0042698895558715],[-0.01093699876219,-0.11407651007175,0.0053706262260675]],[[-0.031535364687443,0.02129384316504,0.050085537135601],[-0.082694299519062,-0.088837504386902,0.077550269663334],[-0.027525708079338,-0.0072900196537375,0.01167372148484]],[[-0.025119349360466,0.033076323568821,0.054463945329189],[0.086204372346401,-0.043605744838715,-0.024679161608219],[-0.024584587663412,0.032771978527308,-0.018411608412862]],[[0.020594159141183,0.0089042745530605,-0.035412941128016],[-0.041169088333845,0.031342200934887,0.026016987860203],[-0.029232796281576,-0.020320113748312,-0.038125246763229]],[[-0.050855230540037,0.031660567969084,-0.031462926417589],[-0.049157850444317,-0.0046754190698266,0.0099829575046897],[-0.077622517943382,-0.0021616898011416,0.0019588686991483]],[[0.027381399646401,0.060222592204809,-0.050971005111933],[-0.020777683705091,-0.0021184997167438,0.030171716585755],[-0.023558529093862,0.031612694263458,0.0083516854792833]],[[0.079048722982407,0.10379677265882,0.067973867058754],[-0.015077744610608,0.080665089190006,0.074018403887749],[0.039857443422079,0.028396708890796,0.099828705191612]],[[0.030599474906921,-0.031160321086645,0.067348398268223],[-0.028123568743467,-0.042104881256819,0.011436932720244],[-0.079803943634033,0.010487071238458,-0.017406120896339]],[[-0.053179450333118,-0.018428586423397,-0.033015999943018],[0.017362652346492,-0.059506975114346,0.014042031951249],[-0.016494819894433,-0.020480567589402,0.076299197971821]],[[0.042001504451036,0.046987641602755,-0.014458964578807],[-0.061399217694998,-0.031099805608392,-0.0088431779295206],[-0.012584971264005,0.022179413586855,0.044193763285875]],[[-0.0071023567579687,-0.035271666944027,0.026330400258303],[-0.00037063384661451,0.014171509072185,-0.098034732043743],[-0.017011817544699,0.012305366806686,-0.041035309433937]],[[0.02326887845993,-0.0089527377858758,-0.047254048287868],[0.010787185281515,-0.0010410437826067,0.010788504965603],[0.0042009297758341,-0.024804400280118,0.0034730217885226]],[[0.020162664353848,0.019853541627526,0.0093526737764478],[-0.015726624056697,-0.011699072085321,-0.028797736391425],[-0.0050460635684431,0.046036262065172,-0.023557050153613]],[[0.0063264654017985,0.075402982532978,-0.024314166978002],[0.001504203537479,-0.023573217913508,-0.032787438482046],[-0.076973117887974,0.0056592701002955,-0.0062516736797988]],[[-0.025169545784593,0.036962147802114,0.015173622407019],[-0.032009657472372,-0.036097824573517,-0.020623566582799],[-0.029523713514209,-0.029325913637877,0.033978894352913]],[[-0.00053684087470174,-0.030796026811004,0.00012054949911544],[0.015543636865914,-0.058799851685762,-0.065247349441051],[0.0032826415263116,-0.040259812027216,-0.075300790369511]],[[-0.0098241306841373,-0.027106273919344,0.031243808567524],[0.0047162394039333,0.0091280844062567,0.029903138056397],[-0.021911462768912,0.034848816692829,0.0017661617603153]]],[[[0.026529744267464,0.057337194681168,0.042883530259132],[-0.077960610389709,-0.026759911328554,0.0068877539597452],[-0.10840906947851,0.058683350682259,-0.0088568236678839]],[[-0.0051303752698004,-0.040885116904974,0.012660633772612],[0.047857485711575,-0.0096497312188148,0.030005188658834],[-0.018370147794485,-0.013581594452262,-0.0084381699562073]],[[0.0086252316832542,0.0052937199361622,0.065945126116276],[0.0044216108508408,-0.031274363398552,-0.034401025623083],[-0.045775141566992,-0.098535694181919,0.042481515556574]],[[-0.027509219944477,-0.0064948443323374,-0.056073538959026],[-0.03081831894815,0.073645956814289,-0.021749697625637],[-0.013440012931824,-0.043990790843964,-0.031530648469925]],[[-0.019380996003747,0.035940025001764,-0.032087590545416],[-0.027464875951409,0.052638303488493,-0.0092386594042182],[-0.025669964030385,-0.025798322632909,-0.038236547261477]],[[-0.067142769694328,-0.060917723923922,0.0721141025424],[-0.026989949867129,0.026911972090602,0.028391072526574],[-0.058942407369614,0.019409716129303,-0.025494316592813]],[[-0.036554541438818,-0.059421930462122,0.038464836776257],[-0.056723389774561,0.0077787046320736,-0.0049625290557742],[0.0097242761403322,-0.025333924219012,-0.0072157247923315]],[[0.020291410386562,-0.0063524744473398,0.029599778354168],[0.024992641061544,0.011342337355018,0.0059134257026017],[-0.0035874776076525,0.0067581869661808,0.024245642125607]],[[0.0079035134986043,-0.021542388945818,-0.065236151218414],[-0.039878439158201,-0.0078090750612319,0.022325592115521],[-0.037985719740391,-0.044358987361193,-0.02676915563643]],[[0.050595905631781,-0.00029566307784989,-0.028734631836414],[0.031961034983397,0.0099807325750589,0.053335785865784],[-0.062989011406898,0.022840734571218,-0.076397225260735]],[[-0.07376991212368,0.0304492469877,-0.0060898191295564],[-0.0066507142037153,0.032156422734261,0.020252646878362],[-0.023016674444079,0.049072712659836,-0.062541924417019]],[[-0.005063459277153,-0.015462817624211,0.017981929704547],[-0.069339223206043,-0.089067913591862,-0.022735144942999],[0.034008670598269,0.063056409358978,0.045252375304699]],[[-0.0011935699731112,-0.043203495442867,-0.026657432317734],[-0.054056953638792,-0.014871565625072,-0.026449874043465],[0.048074495047331,-0.035853330045938,0.018259143456817]],[[-0.052124213427305,0.055599577724934,0.044099979102612],[-0.11430223286152,0.023218939080834,0.10600692033768],[-0.070375166833401,0.0065818694420159,0.10907628387213]],[[-0.019802240654826,-0.0003759975079447,0.048632279038429],[0.041653692722321,-0.037108905613422,-0.024943036958575],[0.083555072546005,-0.037132762372494,-0.0002963712613564]],[[0.088378749787807,0.018033681437373,-0.015162361785769],[0.0079698814079165,0.065378561615944,0.020056562498212],[0.0066748345270753,0.017502447590232,-0.047763545066118]],[[-0.022735737264156,0.038500186055899,0.021476460620761],[0.017077973112464,-0.0054473215714097,0.083305142819881],[0.017236171290278,-0.060909256339073,0.006687487475574]],[[-0.014346726238728,-0.065108828246593,-0.057119313627481],[-0.025474352762103,-0.052732545882463,-0.12777374684811],[-0.028111901134253,0.010033658705652,0.011745326220989]],[[-0.016637286171317,-0.0051998561248183,-0.011221206746995],[-0.026530761271715,-0.0073001286946237,0.0051179863512516],[-0.088761456310749,-0.086633779108524,-0.022472623735666]],[[-0.0042948652990162,-0.039033181965351,-0.0016724187880754],[-0.077485583722591,0.011912275105715,0.03230844810605],[0.061473064124584,-0.0225765760988,0.031947147101164]],[[0.031841088086367,-0.0160325858742,-0.036589071154594],[-0.085506916046143,-0.10028033703566,-0.016216119751334],[0.0098813539370894,-0.0039201457984746,-0.022377084940672]],[[-0.0064706383273005,0.012267866171896,0.021910978481174],[0.02375577762723,-0.053066238760948,-0.012137211859226],[-0.087501809000969,-0.027353826910257,-0.014475353993475]],[[0.1112371981144,-0.034121572971344,-0.047107338905334],[0.026445388793945,-0.040108174085617,-0.023424463346601],[0.0055029951035976,0.02605657838285,-0.016250876709819]],[[-0.018313216045499,0.013203248381615,-0.037211492657661],[-0.090591594576836,0.040982391685247,0.031473685055971],[-0.056131131947041,-0.014617407694459,0.041605971753597]],[[0.036612063646317,-0.027371434494853,0.011607949621975],[0.029964074492455,0.035961072891951,0.03028067573905],[0.061290584504604,-5.4882522817934e-05,-0.0068822931498289]],[[-0.05624733120203,-0.016500050202012,-0.030187413096428],[0.012139062397182,0.012468530796468,0.0083159105852246],[-0.032161064445972,-0.073027886450291,-0.074658557772636]],[[-0.027328886091709,-0.0064591793343425,-0.0031327188480645],[-0.15727640688419,-0.020889038220048,-0.045046504586935],[-0.042302209883928,-0.088014289736748,-0.056550286710262]],[[0.067162871360779,0.024865930899978,0.014395412057638],[-0.052361629903316,0.092991963028908,-0.056313309818506],[-0.1087858825922,0.016389770433307,-0.072242207825184]],[[0.029618022963405,0.0011645981576294,0.093357242643833],[5.9195936046308e-05,-0.024496272206306,0.00055582239292562],[0.078244172036648,0.035189975053072,0.0045782742090523]],[[0.0023685726337135,0.0071551906876266,-0.028560629114509],[0.0030819338280708,0.018146568909287,0.021733252331614],[0.039490636438131,0.0069783157669008,-0.026369633153081]],[[0.015604893676937,-0.049396615475416,-0.025066880509257],[0.011886710301042,-0.0075216284021735,-0.027925569564104],[0.039568942040205,-0.025742907077074,0.0057472684420645]],[[-0.11684274673462,-0.010022233240306,0.0079662352800369],[-0.034457184374332,-0.080451488494873,0.0037209163419902],[-0.08258144557476,-0.0041627148166299,-0.012822915799916]],[[-0.0010527691338211,-0.060738384723663,-0.080911420285702],[0.014318464323878,0.022423820570111,-0.014611928723752],[0.094146452844143,0.061416774988174,-0.0025744591839612]],[[0.10492504388094,-0.0089766019955277,0.013414964079857],[-0.011288256384432,-0.063368320465088,-0.047557171434164],[0.0062015969306231,-0.0070331408642232,-0.041743829846382]],[[-0.0052697896026075,-0.023428235203028,0.033138889819384],[-0.01643137075007,0.03984747454524,0.033423583954573],[-0.021461632102728,0.039613675326109,0.065342709422112]],[[-0.017856307327747,-0.072274468839169,-0.062899097800255],[-0.062399059534073,0.021916685625911,0.035793736577034],[0.037441775202751,-0.028856663033366,0.027782667428255]],[[-0.066155910491943,-0.052672937512398,-0.08222633600235],[-0.00087149912724271,-0.031108634546399,0.02216899767518],[0.033263385295868,0.066838048398495,-0.014174946583807]],[[-0.069094844162464,0.0093658659607172,0.045829992741346],[0.057183228433132,0.031898017972708,-0.002819542074576],[-0.075137779116631,0.10852079093456,0.020360957831144]],[[-0.010869060643017,-0.034612756222486,-0.066509462893009],[0.015989147126675,-0.031999982893467,-0.084824800491333],[-0.022606303915381,-0.010544526390731,-0.040154706686735]],[[0.011093493551016,-0.015733106061816,-0.00057217199355364],[0.0014600674621761,0.021552497521043,0.050812859088182],[0.036106124520302,-0.035465192049742,0.0072928830049932]],[[-0.025248777121305,-0.034283094108105,0.030744118615985],[-0.047826174646616,0.010346641764045,-0.029432391747832],[-0.021731002256274,-0.10309286415577,0.0071656908839941]],[[-0.071503400802612,0.059080071747303,0.011157774366438],[0.037892155349255,-0.08108764141798,0.07659237831831],[0.031670965254307,-0.028134925290942,-0.010238433256745]],[[-0.04620360955596,0.0024485760368407,-0.00034643066464923],[-0.058180473744869,-0.024702548980713,-0.0064861727878451],[-0.023804496973753,0.039395172148943,-0.020421395078301]],[[0.051015716046095,-0.030567388981581,-0.059200793504715],[0.097608283162117,0.059023078531027,-0.010324197821319],[-0.00098499783780426,0.069089084863663,0.048526030033827]],[[0.090312644839287,-0.022030390799046,-0.012397889979184],[0.01280003413558,-0.0067544458433986,-0.0091703180223703],[-0.07187993824482,0.022719634696841,-0.022528439760208]],[[-0.068086750805378,-0.043941877782345,0.024414025247097],[-0.054409865289927,-0.0096510294824839,0.034627474844456],[-0.062957532703876,0.0056106159463525,0.013591184280813]],[[-0.021081645041704,-0.017443051561713,0.052430912852287],[0.09626467525959,-0.03533661365509,0.059293992817402],[0.017340207472444,0.011066535487771,-0.089184671640396]],[[0.053939033299685,0.05917938426137,0.0017376161413267],[-0.078246764838696,0.04080393910408,0.021686302497983],[0.029049614444375,0.085274524986744,0.036630351096392]],[[0.088885881006718,-0.033227156847715,0.018525827676058],[-0.028466012328863,-0.071966372430325,0.022934088483453],[0.087726458907127,0.026371927931905,-0.011093817651272]],[[0.0016297147376463,0.037707142531872,-0.035670667886734],[0.012624204158783,0.01789241656661,-0.04456938803196],[0.10567763447762,-0.0016285583842546,-0.12096226215363]],[[-0.095848143100739,-0.05327258631587,0.018333164975047],[-0.01702343672514,-0.062551498413086,-0.068528696894646],[-0.069951191544533,-0.0016520280623809,0.026003351435065]],[[-0.034467160701752,-0.044539853930473,0.033080950379372],[0.02479475736618,0.050102867186069,-0.0074581075459719],[-0.010454951785505,0.018493046984076,0.033496309071779]],[[0.017888305708766,0.028386041522026,0.03099856339395],[0.051963932812214,-0.046540785580873,-0.049037411808968],[0.019113879650831,-0.00056821975158527,-0.013683162629604]],[[-0.097449697554111,0.037742704153061,0.029459211975336],[-0.040122386068106,0.098800681531429,0.066927865147591],[0.061426654458046,0.045902982354164,0.097900032997131]],[[0.02563682384789,0.029948657378554,-0.044849593192339],[0.098348267376423,-0.036305472254753,0.032436553388834],[0.076129555702209,0.0085541782900691,0.025137398391962]],[[-0.061502169817686,0.039568115025759,0.024481719359756],[0.059828661382198,0.0035641021095216,-0.011489570140839],[-0.0069487653672695,-0.0031309146434069,0.0015953741967678]],[[-0.065529681742191,-0.048922263085842,-0.030417637899518],[-0.015674959868193,-0.035357531160116,-0.079586252570152],[0.049804598093033,0.034462206065655,-0.015671111643314]],[[-0.00022381171584129,0.0032622595317662,0.03927231952548],[0.013532405719161,0.069057211279869,0.071444667875767],[0.002288073534146,0.00077081233030185,0.0080886799842119]],[[-0.030157893896103,0.01883346028626,0.01350986585021],[-0.0081044193357229,-0.019773650914431,0.0035900983493775],[-0.065904378890991,0.011383964680135,-0.035420354455709]],[[-0.057116240262985,0.044072415679693,0.033242035657167],[-0.029222317039967,0.038966003805399,-0.0090042250230908],[-0.039496555924416,0.0085005238652229,0.0618005245924]],[[-0.0062086777761579,-0.0075211971998215,-0.016092590987682],[0.042681142687798,0.0099432971328497,0.04774234443903],[0.027910672128201,0.10630062222481,-0.0049060853198171]],[[0.033096667379141,-0.043733052909374,-0.014139464125037],[0.095749266445637,-0.016857335343957,-0.025786897167563],[0.014066701754928,-0.015535219572484,0.040813978761435]],[[0.060723207890987,-0.019371325150132,-0.017749639227986],[-0.0030453782528639,0.015613961964846,0.073307499289513],[0.0070851529017091,-0.033127631992102,0.025827180594206]],[[0.028823224827647,-0.024221455678344,-0.026843002066016],[0.0062851160764694,-0.059004161506891,-0.021302653476596],[0.02662243694067,-0.029651738703251,-0.045322198420763]]],[[[0.029264856129885,-0.038888659328222,0.055036678910255],[0.047894258052111,0.028147196397185,0.032727017998695],[-0.010605819523335,-0.021234011277556,-0.072498925030231]],[[-0.046113561838865,-0.0038364152424037,0.014713914133608],[0.041509184986353,0.018419677391648,0.061816360801458],[-0.058063343167305,0.045686084777117,-0.023701371625066]],[[-0.056172206997871,-0.014025553129613,-0.06544828414917],[-0.01726302318275,-0.081577315926552,-0.023959269747138],[0.015530577860773,-0.069783195853233,-0.09355953335762]],[[-0.0047064437530935,-0.072400100529194,-0.053148753941059],[0.010974072851241,-0.052183136343956,-0.032513912767172],[0.084859028458595,-0.087249331176281,-0.002201555063948]],[[0.020932653918862,-0.12835040688515,0.049211274832487],[-0.027117704972625,0.097873516380787,0.032806247472763],[-0.091007135808468,-0.027984527871013,-0.081202387809753]],[[-0.11581844091415,-0.031738836318254,-0.047079354524612],[-0.070725031197071,-0.044194079935551,0.15930505096912],[-0.08260153979063,0.018695298582315,-0.01626642793417]],[[-0.028292521834373,-0.025611354038119,-0.017876528203487],[-0.073936469852924,0.022813435643911,0.022881781682372],[0.00054544204613194,-0.035942886024714,0.0043274541385472]],[[-0.072774514555931,-0.019240893423557,0.0013038337929174],[-0.050984714180231,0.11876918375492,0.032445933669806],[0.033997982740402,0.078952863812447,-0.075453475117683]],[[-0.016764936968684,0.042872101068497,-0.22675220668316],[0.10454043745995,-0.13309592008591,-0.18363438546658],[0.078220844268799,-0.15808027982712,-0.11047653853893]],[[-0.045334029942751,0.12531031668186,-0.13732618093491],[-0.018608197569847,0.012419007718563,-0.10165352374315],[0.05585340783,-0.063895866274834,-0.043564453721046]],[[-0.080338679254055,0.057938013225794,-0.072747454047203],[-0.070341289043427,-0.12129919230938,0.10673905909061],[-0.0015668458072469,-0.020382389426231,-0.04052035883069]],[[-0.1134472489357,-0.046041388064623,-0.081662431359291],[-0.086237490177155,-0.038169480860233,-0.10874342173338],[0.051081951707602,0.11510746181011,0.11738849431276]],[[0.16100443899632,-0.0051341485232115,-0.10612603276968],[-0.09046532958746,-0.0095892949029803,0.012450250796974],[-0.11797920614481,0.10137667506933,0.009566149674356]],[[-0.18768782913685,-0.032691303640604,0.1225625500083],[-0.13243994116783,0.056058842688799,0.13950031995773],[-0.013268230482936,0.057225819677114,0.047038566321135]],[[0.037171091884375,-0.11484168469906,-0.063034780323505],[0.0087373908609152,-0.089776277542114,0.061498966068029],[-0.039382014423609,0.0047243735753,0.0016076345928013]],[[-0.054283764213324,0.010110408067703,-0.032481487840414],[0.038326065987349,-0.066529601812363,-0.075729511678219],[-0.04894271120429,-0.063940100371838,0.0019715356174856]],[[-0.014305480755866,-0.049935813993216,-0.1033861041069],[-0.026611100882292,-0.045909553766251,-0.047819681465626],[0.019076889380813,-0.033035822212696,0.039937820285559]],[[-0.0051270346157253,-0.038489285856485,-0.077076829969883],[-0.13608850538731,-0.092654347419739,-0.081488512456417],[-0.05376310646534,0.035829909145832,-0.02818133495748]],[[-0.082938827574253,-0.040566332638264,0.027874767780304],[0.0092849992215633,-0.12492193281651,-0.069194875657558],[-0.13466596603394,-0.090895801782608,0.025343554094434]],[[0.072913348674774,-0.013572779484093,0.0046758595854044],[0.064211949706078,0.02817059122026,-0.039482455700636],[-0.0012462236918509,-0.036996427923441,-0.04712151363492]],[[0.15352675318718,-0.17083476483822,-0.089626304805279],[-0.024906549602747,-0.032627016305923,-0.12324169278145],[0.016714513301849,-0.031406380236149,-0.014372957870364]],[[-0.089620821177959,0.12489835172892,0.020133325830102],[0.11906539648771,0.084484830498695,-0.013212721794844],[-0.039307396858931,0.027926029637456,-0.059296455234289]],[[0.032624967396259,-0.049833208322525,-0.057155046612024],[0.065032079815865,-0.027248656377196,-0.0034510623663664],[0.041648514568806,-0.023153817281127,0.013707667589188]],[[0.021417684853077,0.039149902760983,0.055787645280361],[0.034353241324425,0.11634868383408,-0.12440916150808],[-0.10211432725191,0.10782726109028,-0.11015091836452]],[[0.091812759637833,0.17845593392849,-0.069852210581303],[0.10568207502365,-0.0081850728020072,-0.11893121153116],[0.05011186003685,0.017805747687817,-0.033424999564886]],[[0.038501210510731,-0.041850205510855,0.077047996222973],[-0.0058171316049993,0.017590820789337,-0.067686602473259],[-0.059941302984953,-0.091636277735233,-0.031145859509706]],[[-0.02027827501297,-0.034682251513004,-0.066075585782528],[-0.17545053362846,-0.15855413675308,-0.041900333017111],[0.080696292221546,-0.0025385301560163,0.046997856348753]],[[0.11592399328947,0.11414904892445,0.067063719034195],[-0.036068066954613,0.028428502380848,-0.056029796600342],[-0.088161736726761,-0.1022105962038,-0.10949514061213]],[[-0.023729423061013,0.0090676276013255,0.0092688864096999],[-0.034638449549675,-0.028866861015558,-0.016590708866715],[0.0093938717618585,0.019056435674429,0.021298991516232]],[[0.04886531457305,0.03417494520545,-0.064212083816528],[-0.05692045763135,-0.00056429719552398,-0.11394774913788],[-0.065146699547768,0.01010871771723,-0.026721557602286]],[[-0.057608276605606,-0.10683985054493,-0.12511005997658],[-0.019331280142069,0.010005765594542,-0.045290239155293],[0.12436776608229,-0.023714473471045,-0.010725367814302]],[[-0.040861487388611,-0.13343997299671,0.27417448163033],[-0.20263393223286,0.054130245000124,0.07281830906868],[-0.14599069952965,-0.17296029627323,-0.031823728233576]],[[-0.014868350699544,0.033327642828226,0.032981541007757],[-0.10759354382753,0.042962145060301,-0.034092180430889],[-0.023998845368624,0.23872688412666,-0.15584789216518]],[[0.073096446692944,-0.12331998348236,0.066563799977303],[0.12689274549484,-0.095360495150089,-0.048357866704464],[-0.11633852869272,-0.037511628121138,-0.051226459443569]],[[-0.075743392109871,0.089630886912346,0.018528036773205],[0.06926816701889,0.13129739463329,-0.022440304979682],[0.042421739548445,0.060531374067068,-0.14504273235798]],[[0.049008995294571,0.065747164189816,-0.12700152397156],[0.015141844749451,0.050892282277346,-0.029638698324561],[0.038730025291443,0.020640481263399,-0.018689263612032]],[[-0.12677063047886,0.063710682094097,0.052151694893837],[-0.10731094330549,-0.007131093647331,0.057518925517797],[-0.04747861251235,0.067755244672298,-0.019176580011845]],[[-0.12144995480776,0.18008725345135,0.25609749555588],[-0.013429169543087,0.065338596701622,-0.075382493436337],[-0.051306463778019,-0.17292407155037,0.020158894360065]],[[0.052625868469477,0.0061807502061129,-0.073424018919468],[-0.041012406349182,0.058748003095388,0.021087653934956],[-0.12095532566309,0.027061600238085,-0.082752697169781]],[[-0.068802051246166,0.018165221437812,-0.017927637323737],[-0.027548041194677,-0.098937645554543,-0.017086640000343],[-0.03098912909627,-0.012803439982235,0.051775116473436]],[[0.12321192026138,-0.075553990900517,-0.011360357515514],[-0.0060734185390174,-0.0097946412861347,-0.008326786570251],[-0.0033878933172673,-0.017542377114296,-0.10045325756073]],[[-0.1237900480628,0.13517127931118,0.051309689879417],[-0.10168585926294,0.11004307866096,-0.043323811143637],[-0.055116672068834,0.036717861890793,0.029051218181849]],[[-0.049503941088915,-0.13275195658207,0.046468980610371],[-0.035263940691948,-0.040958631783724,0.14465802907944],[-0.018157802522182,-0.072405070066452,0.08369754254818]],[[-0.16142070293427,0.010324887000024,0.010010867379606],[-0.05377683788538,-0.045131474733353,-0.014822124503553],[0.12678031623363,0.11149729788303,-0.023642782121897]],[[0.16422232985497,0.027293233200908,-0.19893433153629],[0.056993544101715,-0.11342150717974,0.055893838405609],[-0.055199939757586,0.02449543774128,-0.023157279938459]],[[-0.25968447327614,0.044968973845243,0.16934406757355],[-0.23336479067802,0.034637928009033,0.044797360897064],[-0.18562172353268,0.063372373580933,0.049444787204266]],[[-0.1047340631485,0.072420313954353,0.018395483493805],[-0.0069653890095651,0.16693559288979,-0.060249835252762],[0.018863607198,0.024006886407733,-0.060584127902985]],[[0.12120928615332,-0.10817025601864,-0.049739569425583],[0.024619583040476,0.032111253589392,0.056706875562668],[-0.02381313033402,0.014127536676824,-0.039639070630074]],[[0.038071162998676,-0.15988443791866,0.033542308956385],[-0.15172603726387,-0.10166661441326,-0.0029845333192497],[-0.032102882862091,0.039577376097441,0.0026238020509481]],[[0.092654190957546,0.0036089944187552,-0.10256099700928],[0.15014845132828,-0.10327082127333,-0.1162112429738],[0.13278317451477,-0.11037962883711,-0.090741626918316]],[[-0.11839467287064,-0.040446236729622,-0.026296753436327],[-0.10126682370901,-0.10712253302336,-0.043103575706482],[-0.15065941214561,-0.067543044686317,-0.050714559853077]],[[-0.028786374256015,-0.02123586460948,0.0038856188766658],[-0.003387643257156,0.0030947695486248,0.011797134764493],[-0.032691780477762,-0.018839705735445,-0.017023347318172]],[[-0.055935624986887,0.036987539380789,0.075528435409069],[0.037640862166882,0.1018468812108,0.058732464909554],[0.043045341968536,0.027776923030615,0.039679560810328]],[[0.13880543410778,0.030601978302002,0.16123002767563],[-0.069731220602989,0.13023643195629,0.069744244217873],[0.04567751660943,-0.045733459293842,0.10202622413635]],[[0.012985722161829,-0.22857569158077,-0.075379714369774],[-0.0080297645181417,0.099683426320553,-0.028084209188819],[0.25605329871178,0.24581043422222,0.013709454797208]],[[0.088669650256634,-0.044652331620455,-0.0087424842640758],[0.045114673674107,0.0066266031935811,0.015202482230961],[0.024755608290434,0.027811488136649,-0.057444855570793]],[[-0.14621005952358,-0.010069835931063,-0.027782121673226],[-0.084339551627636,0.016787143424153,-0.10290566086769],[0.032715510576963,0.019955927506089,-0.034100700169802]],[[0.0076046972535551,-0.081102795898914,-0.010596833191812],[0.0064167082309723,-0.070824444293976,0.018097206950188],[0.032678205519915,-0.061717338860035,0.049213115125895]],[[0.042345430701971,0.040211949497461,-0.033229824155569],[-0.13150998950005,0.043908063322306,0.070530369877815],[0.14016775786877,0.001112800440751,-0.13412661850452]],[[0.0042742495425045,0.019050482660532,0.048300966620445],[-0.12683288753033,0.024838220328093,0.035278975963593],[-0.017355723306537,0.080130718648434,0.00095338054234162]],[[0.12705074250698,-0.17916551232338,-0.1997891664505],[0.026493480429053,-0.15421801805496,0.024331290274858],[-0.10317646712065,-0.043224144726992,0.094441838562489]],[[0.060125280171633,0.048408143222332,-0.012004194781184],[0.015391081571579,-0.043038200587034,-0.099776163697243],[0.044856090098619,0.047644905745983,-0.075244180858135]],[[0.10573220998049,0.031486209481955,-0.029520485550165],[0.15800845623016,-0.0048157181590796,-0.11197429150343],[-0.054576009511948,-0.041434042155743,-0.01294769346714]],[[-0.11420844495296,-0.085313946008682,0.031965602189302],[-0.12681357562542,-0.092718183994293,0.16908079385757],[-0.22135056555271,0.15987433493137,0.06981099396944]]],[[[0.23275892436504,0.080494351685047,-0.055190518498421],[0.035814620554447,0.11271815747023,-0.22879680991173],[0.00061126769287512,-0.064726456999779,-0.039964690804482]],[[-0.096701122820377,-0.055548585951328,0.027676260098815],[-0.28085985779762,0.018932705745101,-0.029807932674885],[-0.20283165574074,-0.10208079218864,-0.075536802411079]],[[0.023897828534245,-0.036021780222654,0.0032609577756375],[-0.014272111468017,0.023556772619486,0.064201407134533],[0.058931794017553,-0.039873369038105,0.068445704877377]],[[0.06145802885294,0.073157303035259,-0.018697598949075],[0.058486387133598,0.11527959257364,0.070594944059849],[0.15416686236858,-0.022502213716507,0.045531269162893]],[[-0.12330218404531,0.00040703956619836,0.0019283634610474],[-0.047197803854942,0.045225318521261,-0.026550102978945],[0.050338312983513,0.033772181719542,0.029954317957163]],[[0.0079806251451373,0.004374798387289,-0.0089542670175433],[-0.20703771710396,0.004594455473125,-0.13812051713467],[0.036548640578985,0.023940009996295,0.036722835153341]],[[0.0047532119788229,0.0037066282238811,0.032327689230442],[0.051367830485106,-0.028871348127723,0.04576463252306],[-0.010714950971305,0.017708566039801,-0.032459191977978]],[[0.10062204301357,-0.084782019257545,-0.011890013702214],[0.11230993270874,-0.049527943134308,-0.028069486841559],[-0.057050794363022,-0.046165030449629,0.042962215840816]],[[-0.084481634199619,0.068806327879429,-0.089419476687908],[-0.027986206114292,-0.027065753936768,0.081021964550018],[-0.030125485733151,0.044574081897736,0.0051939315162599]],[[-0.020048439502716,-0.064912408590317,0.016132632270455],[0.11320916563272,0.0033253093715757,-0.036564294248819],[0.11203905940056,-0.02592938952148,0.12276463955641]],[[0.078079551458359,0.096934713423252,-0.042442467063665],[-0.02668833732605,0.055768318474293,0.036864191293716],[-0.041400026530027,0.058630578219891,-0.11922790110111]],[[0.021830961108208,0.073125816881657,-0.026691619306803],[-0.018541254103184,0.065273553133011,-0.061752777546644],[-0.021571302786469,-0.0072403447702527,0.028259223327041]],[[-0.028326690196991,0.075553700327873,0.024051941931248],[0.092930659651756,0.064718268811703,0.072877295315266],[0.15435735881329,-0.071573309600353,0.062585718929768]],[[0.18778651952744,0.084482543170452,-0.024582726880908],[0.17295837402344,0.051341168582439,-0.025526018813252],[0.19135209918022,0.0018192352727056,-0.066816419363022]],[[-0.025447931140661,-0.025137024000287,-0.091798670589924],[0.011131013743579,0.10032214224339,-0.036909837275743],[0.07543122023344,-0.024771146476269,-0.083567313849926]],[[-0.072691611945629,-0.0894425958395,0.097439862787724],[0.082431301474571,-0.0348776653409,-0.032833963632584],[0.011148602701724,0.012487072497606,-0.032817967236042]],[[-0.062171645462513,0.15310594439507,-0.010553829371929],[-0.11037533730268,-0.36252993345261,-0.048235923051834],[0.066129110753536,0.030765874311328,-0.016712026670575]],[[-0.040437232702971,0.0070135602727532,-0.013713971711695],[-0.038469895720482,0.067146822810173,0.044519931077957],[-0.18094947934151,-0.046152994036674,0.21136610209942]],[[0.0072723589837551,-0.049679532647133,0.030282031744719],[0.064766384661198,-0.026845647022128,-0.082959033548832],[-0.047373972833157,-0.0054283523932099,-0.026452243328094]],[[-0.054969929158688,0.0054615787230432,0.027657805010676],[-0.10554542392492,-0.070935554802418,-0.003116489155218],[-0.057498678565025,-0.024413296952844,0.069774590432644]],[[0.11480255424976,-0.023365957662463,0.038398060947657],[0.12878014147282,-0.024217722937465,0.024612423032522],[0.13002355396748,-0.027199614793062,-0.12527024745941]],[[-0.18106150627136,0.035322211682796,0.036892261356115],[-0.18645384907722,-0.14897073805332,-0.026530027389526],[0.035165868699551,0.061051744967699,0.071906760334969]],[[-0.031241901218891,-0.00079570699017495,0.024176647886634],[-0.018136389553547,0.017560722306371,0.0019092396833003],[-0.0011256232392043,-0.0071187214925885,0.021000117063522]],[[-0.022467171773314,0.093910470604897,-0.05003571882844],[-0.023032004013658,-0.040412500500679,0.032459922134876],[-0.048402488231659,-0.023305740207434,0.028938746079803]],[[0.088580496609211,0.06739367544651,0.04159889742732],[0.05841526761651,0.05218518525362,0.11293078958988],[0.030224489048123,0.08579657971859,0.029463838785887]],[[-0.074274629354477,-0.01195609010756,-0.0092370789498091],[-0.024372668936849,-0.065311335027218,0.09928473085165],[-0.034449208527803,0.085772454738617,0.0045356922782958]],[[-0.0012060721637681,0.026053333655,0.068589560687542],[0.27895787358284,0.013107381761074,-0.051781181246042],[-0.13670589029789,0.010428400710225,-0.030112566426396]],[[0.020633259788156,-0.067990444600582,-0.10684087872505],[-0.049214668571949,0.069156594574451,-0.090260751545429],[0.24103435873985,0.13410115242004,-0.17041540145874]],[[0.053776692599058,0.04134189337492,0.046893902122974],[0.0033315164037049,0.055774863809347,0.065443813800812],[-0.010344654321671,-0.02620598487556,0.03666939213872]],[[-0.071106851100922,-0.040794614702463,0.053625144064426],[-0.083201587200165,0.098536290228367,0.016547340899706],[-0.0062460256740451,0.069669000804424,0.051111407577991]],[[0.094648852944374,0.04820254445076,0.062440954148769],[0.031176256015897,-0.095234215259552,0.1122228577733],[-0.056386519223452,0.066699668765068,-0.015379251912236]],[[0.011943147517741,-0.010575208812952,-0.047809563577175],[0.13107132911682,-0.12600520253181,-0.050068039447069],[-0.080064810812473,0.025435421615839,0.049308959394693]],[[-0.047381069511175,0.045128535479307,0.0053861504420638],[0.051571410149336,0.0068059479817748,0.056385919451714],[-0.064158245921135,0.021997002884746,0.052070487290621]],[[-0.11988240480423,-0.11233703047037,-0.095028601586819],[-0.28859478235245,-0.011976066045463,0.025171622633934],[-0.078886903822422,0.047297537326813,0.11719522625208]],[[-0.088081695139408,-0.026507150381804,-0.0048435097560287],[-0.16215093433857,-0.028417078778148,0.12181981652975],[-0.07128194719553,0.026812540367246,0.06737344712019]],[[-0.1016933619976,0.087187476456165,-0.008674162440002],[-0.010958307422698,0.11286616325378,-0.0098591921851039],[-0.050175409764051,0.071887351572514,0.017874328419566]],[[0.057056698948145,-0.061442758888006,-0.020896123722196],[0.090807609260082,-0.087405480444431,-0.16530352830887],[-0.028774779289961,0.071695350110531,0.0077314148657024]],[[-0.080906480550766,-0.051411021500826,-0.010008979588747],[-0.016602361574769,-0.032394327223301,0.085744306445122],[-0.042055420577526,0.020267287269235,0.034454513341188]],[[-0.030644170939922,0.055940736085176,0.0058578131720424],[0.14404080808163,0.024160109460354,0.066517017781734],[-0.068227775394917,-0.012365585193038,0.0085043637081981]],[[0.015899240970612,0.0019270018674433,-0.053099803626537],[0.010513486340642,-0.092132568359375,0.031990829855204],[-0.039809331297874,-0.00071953347651288,0.033158134669065]],[[0.0053115445189178,0.0072769750840962,0.061494003981352],[0.0094474498182535,0.02997450530529,-0.059739712625742],[-0.058444291353226,0.087088339030743,0.056098219007254]],[[0.047745876014233,0.026120068505406,-0.09845807403326],[0.011104928329587,-0.064375564455986,0.031153494492173],[0.049252793192863,0.015201950445771,0.05807077139616]],[[0.079098209738731,-0.092519633471966,-0.012834487482905],[-0.0019249735632911,-0.021385930478573,-0.09398939460516],[-0.00069683435140178,0.015431769192219,0.070631854236126]],[[-0.08384694904089,-0.061139963567257,0.075472839176655],[-0.10801021754742,-0.097675994038582,0.11775553971529],[-0.11605262756348,0.029354212805629,-0.037170402705669]],[[0.0098152132704854,-0.07344813644886,-0.038817215710878],[0.2365494966507,0.13846768438816,0.05926987528801],[-0.0019507929682732,-0.05391600728035,0.03515175357461]],[[0.013613816350698,0.0010320225264877,0.011269660666585],[0.01448236592114,-0.061960525810719,-0.057598788291216],[0.027605580165982,0.0018541382160038,-0.003396691987291]],[[0.0086251040920615,0.051199998706579,0.010239140130579],[-0.084202341735363,0.018414124846458,-0.0053608189336956],[-0.073450207710266,0.041812591254711,-0.090986423194408]],[[0.0087434975430369,0.069403283298016,-0.038431406021118],[-0.21866858005524,0.0795688778162,-0.12536071240902],[0.08746849745512,-0.052401166409254,-0.036247070878744]],[[-0.042544655501842,-0.0059953569434583,0.095539152622223],[-0.03901669383049,0.028631653636694,0.020575970411301],[-0.029288312420249,0.0072795706801116,0.047294076532125]],[[0.15624928474426,-0.032429255545139,-0.043296616524458],[0.13799892365932,0.058788053691387,-0.10295134782791],[-0.016288483515382,0.011631147935987,0.056959886103868]],[[-0.036971636116505,0.073208622634411,0.02020438015461],[-0.19843347370625,0.043756201863289,0.0075107896700501],[-0.091422572731972,-0.066244781017303,0.041807539761066]],[[0.032786451280117,-0.054085470736027,0.049240261316299],[-0.0081873899325728,0.091458946466446,0.071491472423077],[0.034680895507336,-0.066135361790657,-0.041208401322365]],[[-0.04731360077858,0.044944427907467,0.081760764122009],[0.10814901441336,-0.089655384421349,0.066190376877785],[-0.018250392749906,0.056044787168503,-0.013054019771516]],[[0.14753276109695,0.0043643014505506,0.00051116762915626],[0.054239578545094,0.099094443023205,-0.14264564216137],[0.19597160816193,-0.0052974545396864,-0.012113601900637]],[[0.0021697173360735,0.049981378018856,-0.050942115485668],[-0.079171620309353,-0.053980529308319,-0.019056789577007],[-0.085767440497875,-0.037437260150909,0.0098714251071215]],[[-0.056360147893429,-0.0019753074739128,-0.030278511345387],[-0.079567916691303,0.028494842350483,0.086992852389812],[-0.018966421484947,0.0067830877378583,0.059788130223751]],[[-0.099582836031914,0.10709594935179,-0.027202302590013],[0.015896916389465,-0.0352883040905,0.06533033400774],[-0.10863244533539,-0.083539374172688,0.016878295689821]],[[-0.019026696681976,-0.012739618308842,0.031499493867159],[-0.025275880470872,-0.12647043168545,0.039060302078724],[-0.016193149611354,-0.027401678264141,-0.12501984834671]],[[0.061716075986624,0.036391597241163,0.033706329762936],[0.16239356994629,0.10609003156424,-0.069989837706089],[-0.045180112123489,-0.018407510593534,0.042270831763744]],[[0.050313364714384,0.028703467920423,-0.0280333571136],[0.042715016752481,-0.053242091089487,-0.029929280281067],[0.036210108548403,0.0010846606455743,-0.036481656134129]],[[-0.18019269406796,-0.019694047048688,-0.0089138448238373],[-0.11184795945883,0.20094709098339,0.079510658979416],[-0.20962581038475,0.076213255524635,-0.043126557022333]],[[-0.1178972646594,-0.14828887581825,-0.019759520888329],[-0.10303355753422,0.069394402205944,0.081766277551651],[-0.080193154513836,0.0001819711033022,0.023936497047544]],[[-0.093250304460526,0.058008369058371,-0.03797522559762],[-0.02820092625916,0.042605016380548,0.0092586912214756],[-0.088499747216702,-0.021303148940206,0.0058877943083644]],[[0.0043141664937139,0.024002877995372,0.035312246531248],[0.057950235903263,-0.088828422129154,-0.10716252774],[-0.041394576430321,-0.033641189336777,0.025988303124905]]],[[[0.039014529436827,0.00032659934367985,-0.0084235109388828],[0.064510360360146,-0.063331045210361,-0.053869787603617],[0.081650868058205,0.016730034723878,-0.053852580487728]],[[-0.047823019325733,-0.043939605355263,-0.052993185818195],[-0.10113944113255,-0.07006398588419,-0.083559602499008],[-0.063355669379234,-0.056661639362574,-0.14782616496086]],[[-0.017252277582884,-0.027884555980563,-0.0019651460461318],[0.020296266302466,-0.018996328115463,0.010628988966346],[0.018866514787078,0.017711099237204,0.018115838989615]],[[-0.028432404622436,-0.037829957902431,-0.028626035898924],[-0.0041993809863925,0.0022431837860495,-0.019124271348119],[0.030309217050672,-0.012602778151631,0.014709625393152]],[[-0.060727264732122,-0.032025534659624,0.050127308815718],[-0.033176336437464,-0.0086758872494102,0.055102292448282],[-0.085580445826054,0.013904574327171,-0.013192736543715]],[[-0.085458643734455,-0.094822287559509,-0.043302062898874],[-0.020672466605902,0.043044120073318,0.011968371458352],[0.036557465791702,0.090266361832619,0.021562479436398]],[[-0.004014840349555,-0.02752335742116,-0.00060341431526467],[-0.033506873995066,-0.0077859535813332,-0.02358790487051],[0.030371453613043,0.016892114654183,0.01909326761961]],[[0.082481563091278,-0.052895680069923,-0.0057711652480066],[0.12785236537457,0.053597465157509,0.079963900148869],[-0.10058183968067,0.026104019954801,0.0083296010270715]],[[-0.046794757246971,-0.083469562232494,0.10059803724289],[0.010933305136859,0.035629786550999,-0.038561716675758],[-0.028096731752157,-0.06986303627491,-0.061892356723547]],[[0.010447323322296,-0.093236304819584,-0.076205708086491],[0.019891154021025,-0.10024061053991,-0.044272135943174],[-0.064965710043907,-0.027608117088675,0.061899669468403]],[[-0.011770930141211,-0.0043708309531212,0.022518571466208],[0.028466669842601,-0.02749533392489,-0.11145241558552],[0.01870091445744,-0.076290257275105,0.025444250553846]],[[-0.066052682697773,-0.051969833672047,0.0022909559775144],[0.044756680727005,0.085094355046749,0.01121824234724],[-0.073709040880203,-0.028188234195113,0.0017573437653482]],[[0.050909005105495,-0.10684122890234,-0.11976296454668],[0.017598982900381,-0.12078507244587,0.036304671317339],[-0.15843676030636,-0.11749655753374,-0.019053313881159]],[[0.012420788407326,0.17557691037655,0.0099960835650563],[0.012979595921934,-0.041275802999735,0.031072678044438],[-0.013120762072504,-0.078399807214737,-0.032473839819431]],[[-0.013616786338389,-0.011385305784643,-0.034080106765032],[0.078127838671207,-0.071201361715794,-0.0032371140550822],[0.050005037337542,0.029878417029977,0.0682383030653]],[[0.042248111218214,0.0062484019435942,-0.070189155638218],[-0.064278431236744,0.06850291788578,-0.010638565756381],[-0.043197363615036,0.01471414975822,-0.0062608332373202]],[[-0.055382870137691,-0.0035759171005338,-0.079570330679417],[-0.05015280097723,0.053619828075171,-0.005924500990659],[-0.059954389929771,0.0021866206079721,0.066164553165436]],[[-0.003823668230325,0.00090002984507009,0.017077865079045],[-0.04449213296175,0.026682062074542,-0.048608556389809],[-0.1028618812561,0.080083787441254,-0.030583772808313]],[[0.081689789891243,0.02351694740355,0.035198539495468],[-0.048998359590769,-0.04263961315155,-0.0090672709047794],[0.020222201943398,0.023656651377678,-0.072863548994064]],[[-0.031753979623318,-0.027458833530545,-0.044921338558197],[0.032739654183388,-0.029221469536424,-0.013136487454176],[-0.00023341563064605,0.054649572819471,0.027800794690847]],[[0.055796191096306,0.0072249686345458,-0.010578040033579],[0.05670752376318,-0.061393674463034,-0.12665651738644],[0.013188576325774,0.058549135923386,0.052010390907526]],[[0.041596423834562,0.07843379676342,0.034111324697733],[-0.0018495749682188,-0.0040450878441334,-0.038527969270945],[-0.098899513483047,-0.02420780621469,0.047997042536736]],[[0.013727343641222,-0.044682919979095,-0.071793504059315],[0.044165331870317,0.025127097964287,-0.048763446509838],[0.07691802084446,0.046966623514891,-0.02991552837193]],[[0.054111320525408,-0.047223202884197,0.052093535661697],[0.10864406824112,0.097402572631836,0.00043511774856597],[-0.068957805633545,-0.072979331016541,-0.018564367666841]],[[0.036018777638674,0.01684626378119,0.08130419999361],[0.078415021300316,-0.015958663076162,0.0085422275587916],[0.008977816440165,0.055753000080585,0.010871849954128]],[[-0.02937675639987,-0.052793253213167,0.072235196828842],[-0.14385893940926,0.058577887713909,-0.031766250729561],[0.033089525997639,0.016139596700668,0.030047133564949]],[[0.1620132625103,0.012974109500647,-0.047607641667128],[0.021419512107968,0.005129961296916,0.067423842847347],[-0.10084676742554,0.041560936719179,-0.0056185889989138]],[[0.086001373827457,0.10644952952862,0.097433291375637],[-0.088645301759243,-0.024838214740157,-0.0028667210135609],[-0.12389380484819,-0.089587293565273,-0.031020622700453]],[[-0.036605909466743,0.0032215451356024,-0.085540622472763],[0.004083564504981,0.02325783111155,0.011007291264832],[0.047102801501751,0.036943469196558,0.037488762289286]],[[0.048795513808727,0.1160956248641,0.055629141628742],[-0.052649337798357,-0.045049358159304,-0.049626849591732],[0.12529163062572,0.063355885446072,-0.019329786300659]],[[-0.06157485768199,0.047588009387255,-0.033606644719839],[-0.055002849549055,-0.062711276113987,-0.033879719674587],[-0.041522305458784,-0.080801665782928,-0.015977026894689]],[[0.016728211194277,-0.094302408397198,0.085487261414528],[-0.027659649029374,0.10667135566473,0.054753765463829],[-0.020510399714112,0.095270901918411,0.027511948719621]],[[0.082401014864445,-0.052317481487989,0.11277432739735],[0.084087982773781,-0.14421692490578,0.056358475238085],[0.014884281903505,-0.042779345065355,0.067548185586929]],[[0.080336473882198,-0.002651063259691,0.12730479240417],[0.10988258570433,0.025286385789514,0.13058334589005],[0.12659622728825,-0.038934540003538,0.1021526157856]],[[-0.017165049910545,0.080906398594379,0.16497968137264],[0.015713170170784,-0.019696243107319,-0.031883656978607],[0.0067299646325409,0.10359958559275,-0.036772988736629]],[[-0.018143426626921,-0.073782563209534,-0.052328526973724],[0.0030025322921574,-0.0374267809093,-0.028126496821642],[-0.0029670493677258,0.05745666846633,0.031810279935598]],[[-0.073554255068302,-0.019958890974522,-0.017125902697444],[0.0046567604877055,0.047114904969931,-0.039595756679773],[0.048583947122097,-0.0056424499489367,-0.040750589221716]],[[-0.049063168466091,0.024125553667545,-0.11939376592636],[-0.011639507487416,0.11146929860115,-0.05139484256506],[0.17617419362068,-0.012821555137634,-0.0074919913895428]],[[-0.028635023161769,0.011362828314304,-0.011940201744437],[-0.041417367756367,-0.021043471992016,0.038030698895454],[-0.084527656435966,0.036700196564198,-0.0335533618927]],[[-0.036165256053209,-0.14383056759834,-0.097354240715504],[-0.055617894977331,-0.13339042663574,-0.083283968269825],[-0.15540398657322,-0.033224284648895,-0.0064912298694253]],[[0.080683834850788,-0.038392182439566,-0.10266830772161],[0.025780586525798,0.068303652107716,0.0088564855977893],[0.026963006705046,0.024810126051307,-0.068784706294537]],[[-0.016598019748926,0.096291325986385,0.014756963588297],[-0.064231559634209,0.022034337744117,0.0073590758256614],[-0.07908596098423,0.074732154607773,0.0089133819565177]],[[0.017002981156111,-0.016591764986515,-0.12100526690483],[0.071404434740543,0.049172256141901,-0.014762467704713],[0.073987573385239,0.078191973268986,-0.0057622636668384]],[[-0.077218092978001,0.14197401702404,-0.10227029770613],[0.023031922057271,0.018348757177591,0.029873982071877],[-0.18261553347111,-0.11647336930037,-0.011980367824435]],[[0.016886258497834,0.040723998099566,-0.062030553817749],[0.03503904491663,-0.16472461819649,-0.060916028916836],[0.06013111025095,-0.048976875841618,0.017168395221233]],[[0.072559297084808,-0.1140878200531,-0.020573349669576],[0.033588510006666,-0.014709230512381,-0.086785458028316],[-0.024388164281845,0.0062834355048835,-0.047521594911814]],[[-0.058211397379637,-0.067189931869507,0.0010447325184941],[0.026930348947644,0.050524208694696,0.052553206682205],[0.086644165217876,0.0027059132698923,-0.024785114452243]],[[0.091178804636002,0.14945060014725,-0.093059852719307],[0.12891754508018,0.13080994784832,-0.043623778969049],[0.12664416432381,0.065312623977661,0.046236783266068]],[[-0.068513922393322,0.062170945107937,-0.096618093550205],[-0.046583782881498,0.0032886492554098,-0.06378909945488],[-0.019770691171288,-0.055269908159971,-0.069417752325535]],[[-0.010236908681691,0.0073725464753807,-0.0074404813349247],[-0.013175588101149,-0.038341917097569,0.02389170974493],[0.07924859970808,-0.062411829829216,-0.0049880254082382]],[[-0.15691713988781,-0.22635978460312,-0.14670605957508],[-0.15858954191208,-0.22856159508228,-0.1060611307621],[-0.28799825906754,-0.11137324571609,-0.043447885662317]],[[-0.057062685489655,-0.033319853246212,0.039171233773232],[-0.011024041101336,0.062137831002474,0.043532151728868],[0.019344702363014,-0.020181717351079,0.02922853268683]],[[-0.2172991335392,-0.13146214187145,-0.10081945359707],[-0.025481373071671,0.034551601856947,0.038118243217468],[0.019921109080315,-0.028729883953929,-0.015730988234282]],[[0.073701582849026,0.032371185719967,0.080569542944431],[0.093602322041988,0.08246237039566,0.10588147491217],[0.062894754111767,0.021358730271459,0.083110548555851]],[[-0.0066440375521779,-0.23264947533607,0.030539089813828],[-0.036093011498451,0.080097660422325,0.084392964839935],[-0.049536351114511,0.10367196053267,0.068845421075821]],[[-0.03118696436286,-0.019270246848464,0.002780205802992],[-0.071171894669533,0.027256844565272,-0.048760190606117],[-0.13868644833565,-0.11277318000793,0.05858951061964]],[[-0.071867726743221,-0.10147552937269,0.0756960734725],[-0.076428189873695,-0.098483540117741,-0.037176892161369],[0.12295917421579,-0.0020450067240745,-0.018197180703282]],[[0.0094562340527773,-0.002228775061667,0.07769513875246],[-0.028776979073882,-0.057111341506243,-0.041243389248848],[-0.020414503291249,-0.012665607966483,-0.034227840602398]],[[-0.01713708601892,-0.023317201063037,-0.087334178388119],[-0.080540560185909,0.0092236921191216,0.056181386113167],[0.044547606259584,0.058437913656235,-0.019806267693639]],[[-0.010635684244335,0.032458949834108,0.095399923622608],[0.0053522079251707,-0.038066428154707,0.063821867108345],[-0.031509026885033,-0.054710127413273,0.031587965786457]],[[-0.036144971847534,0.013096084818244,0.11113521456718],[0.054731044918299,-0.10750257223845,0.072730652987957],[0.11342097818851,-0.0057478058151901,-0.055489875376225]],[[-0.037612061947584,0.059018768370152,-0.020825048908591],[-0.0032791288103908,-0.040190223604441,-0.077290832996368],[-0.0013968566199765,-0.042131133377552,-0.07352639734745]],[[0.042541641741991,-0.051077257841825,0.020722528919578],[-0.066765822470188,0.04246062412858,0.056434113532305],[-0.019034892320633,-0.063850827515125,0.07400431483984]],[[0.037158064544201,0.023871190845966,0.12109249830246],[0.027630565688014,-0.07524162530899,0.042185787111521],[-0.0054252734407783,0.033570468425751,0.056826557964087]]],[[[-0.033351793885231,-0.0099225835874677,0.007858051918447],[0.00067682313965634,-0.10637921094894,0.060732811689377],[0.018252352252603,0.073416590690613,0.046273734420538]],[[-0.0043712481856346,0.10322669893503,0.025312792509794],[-0.0051743262447417,-0.0070057241246104,-0.036392454057932],[-0.03843717649579,-0.018439028412104,-0.020615899935365]],[[0.026211529970169,-0.040701080113649,-0.0008535428205505],[-0.042915780097246,-0.020458025857806,-0.023287514224648],[0.070853568613529,0.003305931109935,0.035732246935368]],[[-0.1589018702507,0.057294242084026,0.050306558609009],[-0.049378499388695,-0.1173842176795,-0.018507016822696],[0.020434334874153,-0.090614587068558,-0.013575103133917]],[[0.0056236288510263,-0.07853589951992,0.15151223540306],[-0.060756672173738,-0.026594944298267,-0.0032534813508391],[0.041306845843792,-0.024929407984018,0.0041280565783381]],[[-0.0012547556543723,-0.080661229789257,0.049484729766846],[0.032798051834106,0.004446619655937,0.02439727447927],[-0.096028819680214,-0.054298285394907,0.011769789271057]],[[-0.035068348050117,0.038725506514311,-0.011915176175535],[0.02610388211906,-0.01187258400023,0.03541948646307],[0.0049811420030892,0.053886208683252,-0.0036964882165194]],[[0.039110474288464,-0.022649904713035,-0.020376468077302],[-0.038716912269592,0.03272320330143,0.08460459113121],[-0.03140090033412,-0.014650619588792,0.037448335438967]],[[0.0053773783147335,0.060510061681271,-0.036206651479006],[0.025726027786732,-0.016271442174911,-0.022517513483763],[-0.012863583862782,0.014839881099761,-0.0048603937029839]],[[-0.096380367875099,0.099037997424603,-0.0037996305618435],[-0.017499575391412,0.016586748883128,-0.052835997194052],[0.034449532628059,-0.03505664691329,-0.023490542545915]],[[-0.097679443657398,0.083092644810677,0.017462220042944],[-0.025618433952332,-0.17834314703941,0.042460702359676],[-0.049220461398363,-0.010146301239729,0.033873680979013]],[[0.090826034545898,-0.074027441442013,-0.049469318240881],[-0.007759056519717,0.092572040855885,0.027588441967964],[0.00094474357319996,0.02514274045825,0.012344875372946]],[[-0.0072521809488535,0.022545155137777,0.011746749281883],[-0.18798813223839,0.12969322502613,0.065078862011433],[0.0034568584524095,-0.076937064528465,-0.027033131569624]],[[0.02242885902524,0.010313680395484,-0.040388129651546],[0.053624227643013,0.030421102419496,0.022806968539953],[0.13162685930729,-0.060625579208136,-0.021004026755691]],[[0.073710732161999,0.082915678620338,0.02312208712101],[-0.025961525738239,0.017773492261767,-0.10651428252459],[0.13891254365444,0.055441424250603,0.020340004935861]],[[0.04508876055479,0.013738897629082,0.05623035132885],[0.022870734333992,0.038998275995255,-0.027862368151546],[0.048710905015469,-0.044096454977989,-0.041654020547867]],[[0.038730353116989,0.088850893080235,-0.031293883919716],[0.016543328762054,-0.020037565380335,-0.014639315195382],[0.021692417562008,0.012829720973969,-0.010116132907569]],[[-0.020315999165177,-0.023404257372022,0.064320348203182],[0.057821415364742,0.0032314993441105,-0.032238990068436],[-0.042114764451981,0.061025965958834,0.11993575841188]],[[0.0063588912598789,-0.047776777297258,0.035095546394587],[-0.023640688508749,0.082811199128628,0.003914394415915],[0.022042581811547,-0.020902328193188,-0.017217854037881]],[[0.010836366564035,-0.024728585034609,0.019732134416699],[0.01216930616647,-0.02416536770761,-0.023674355819821],[-0.033137947320938,-0.031617313623428,0.0073966565541923]],[[0.12251775711775,0.020367382094264,0.050583243370056],[0.084785155951977,0.046714030206203,0.013706879690289],[-0.081839181482792,0.026927657425404,-0.070307888090611]],[[0.17147834599018,0.079951480031013,-0.098193436861038],[-0.059355232864618,-0.098707750439644,-0.018566410988569],[-0.00079038145486265,0.011275165714324,-0.040035273879766]],[[-0.089887201786041,0.031093219295144,-0.012553081847727],[-0.032093439251184,0.02904855273664,0.00026577056269161],[0.017540892586112,0.070680774748325,-0.0079333884641528]],[[-0.0042739445343614,0.048546515405178,-0.013738661073148],[-0.080880708992481,0.034561034291983,0.067759357392788],[-0.093642182648182,-0.063623026013374,0.019843390211463]],[[0.0092552434653044,0.04480579867959,0.084742948412895],[-0.009960113093257,-0.0042592440731823,-0.013410143554211],[0.02289898134768,-0.00819131731987,0.00035672914236784]],[[0.01616601459682,0.019263166934252,-0.012147163972259],[-0.088177308440208,-0.045328471809626,-0.021629920229316],[-0.069140486419201,0.055726371705532,-0.030310330912471]],[[-0.0038939970545471,-0.022528855130076,0.028895407915115],[0.076177299022675,0.0013792142271996,0.017667336389422],[0.045662555843592,0.054015781730413,0.045384354889393]],[[-0.068519361317158,0.044094048440456,-0.10711102932692],[0.053104441612959,-0.051454093307257,0.035261631011963],[0.0023070925381035,0.11207011342049,-0.060913391411304]],[[-0.13773903250694,0.18791009485722,0.024072425439954],[0.047063797712326,-0.0088865915313363,-0.0035286757629365],[-0.032685067504644,-0.10204303264618,-0.030373794957995]],[[-0.02426041662693,0.057495567947626,0.046335063874722],[0.053188066929579,-0.029010271653533,-0.026692215353251],[0.029266806319356,0.03831834346056,0.019021701067686]],[[-0.052198052406311,-0.062535770237446,-0.027818778529763],[0.055358730256557,-0.030642110854387,0.059208773076534],[-0.029333068057895,0.034632127732038,0.070320837199688]],[[-0.047454711049795,-0.046032268553972,0.042615603655577],[-0.018694980069995,0.056994412094355,-0.02674101665616],[-0.042495802044868,0.11749810725451,0.017518121749163]],[[0.0084787607192993,0.029604617506266,-0.078765690326691],[-0.07984883338213,-0.051903408020735,0.027893528342247],[-0.063684307038784,-0.016668636351824,-0.060107056051493]],[[0.0021434857044369,0.0048028649762273,-0.01242942083627],[-0.11561883985996,-0.021924449130893,0.081899709999561],[-0.033164214342833,-0.071664653718472,-0.044208262115717]],[[0.052532531321049,-0.0032054288312793,0.0073328693397343],[0.066508829593658,0.035132307559252,-0.013640501536429],[-0.024254538118839,-0.0094640646129847,-0.060424610972404]],[[-0.11278226226568,-0.045515645295382,0.0050199176184833],[0.01982513256371,-0.08182218670845,-0.049355637282133],[-0.082305029034615,0.00074219459202141,0.050198417156935]],[[0.050731882452965,-0.031983152031898,-0.065094873309135],[-0.027055736631155,0.05255588889122,-0.05092479288578],[0.036999732255936,0.014905688352883,-0.035143226385117]],[[-0.0043789888732135,-0.01119077205658,0.048713110387325],[0.031249519437551,0.0038592484779656,0.032066985964775],[-0.10326352715492,-0.02915296703577,-0.0094522014260292]],[[0.014950422570109,-0.066827587783337,0.045540921390057],[-0.08431538194418,0.072097815573215,-0.0068513914011419],[-0.016666071489453,-0.014927627518773,-0.014081485569477]],[[0.036458548158407,-0.051387574523687,0.012604531832039],[-0.086151115596294,-0.031403787434101,0.0045016617514193],[0.026719802990556,-0.0030558411963284,0.0097816186025739]],[[-0.053540959954262,0.059746891260147,0.022974528372288],[-0.12803007662296,-0.031186608597636,0.027945825830102],[0.047441139817238,0.00035764093627222,0.045948889106512]],[[0.041750602424145,0.011344581842422,-0.069230377674103],[-0.057832233607769,0.0085901189595461,-0.080976516008377],[0.060628283768892,0.047782011330128,0.030661785975099]],[[0.030409101396799,-0.050621703267097,0.10030397772789],[-0.012152600102127,-0.052934892475605,-0.020146368071437],[-0.016167322173715,0.072848871350288,-0.031227881088853]],[[-0.0098364530131221,-0.032806318253279,-0.038999982178211],[-0.023209180682898,-0.02368582598865,0.012529076077044],[-0.0084212543442845,-0.019758870825171,-0.094095766544342]],[[-0.085698693990707,-0.17058376967907,-0.035340692847967],[0.088519409298897,0.11515561491251,-0.10292810946703],[-0.020630909129977,-0.075382597744465,0.094660006463528]],[[-0.096586212515831,-0.036599233746529,-0.021875968202949],[0.0083377435803413,0.054852180182934,0.062535978853703],[0.0044141914695501,-0.015250886790454,-0.0077432570978999]],[[-0.0037446992937475,-0.021989079192281,-0.052095584571362],[-0.0041081430390477,-0.0035648057237267,-0.045063532888889],[0.0095820389688015,-0.026438007131219,-0.066700592637062]],[[0.069189429283142,-0.012725692242384,-0.092270977795124],[-0.045802172273397,0.037351433187723,-0.014766524545848],[0.040092404931784,0.02723141387105,0.040031384676695]],[[-0.094370633363724,0.03719337657094,0.045841559767723],[0.06675947457552,-0.11589033156633,0.010926040820777],[-0.041259631514549,0.055527467280626,0.033047519624233]],[[-0.010316940024495,-0.054090701043606,0.021980995312333],[0.075706213712692,-0.015390080399811,-0.013062654063106],[0.077607251703739,-0.0024710884317756,0.11281453818083]],[[-0.017682088539004,0.0086448565125465,-0.016678996384144],[0.087602704763412,0.020321346819401,-0.042214162647724],[-0.04897978156805,-0.10377066582441,-0.059080205857754]],[[0.010658857412636,0.038282748311758,-0.049043998122215],[-0.054961271584034,-0.032374363392591,0.0037186564877629],[0.043176237493753,-0.02351962774992,-0.045439321547747]],[[0.076330944895744,-0.071631222963333,0.049975179135799],[-0.029423661530018,0.049358103424311,-0.051066368818283],[0.058865092694759,-0.015653781592846,-0.037966933101416]],[[0.1068072244525,0.025430740788579,-0.1216249987483],[0.042422380298376,0.057353418320417,0.069912247359753],[0.00042825756827369,0.0082285404205322,0.028626892715693]],[[-0.043706960976124,0.0021925764158368,0.048912458121777],[-0.019552171230316,-0.11955577135086,-0.022697191685438],[-0.050051815807819,0.051170222461224,-0.022573493421078]],[[-0.0069073564372957,1.34877536766e-05,0.035924509167671],[-0.042685277760029,-0.076372809708118,0.015534140169621],[-0.039911214262247,-0.044492579996586,-0.012039041146636]],[[0.034641720354557,-0.008722297847271,-0.017342548817396],[0.039245188236237,0.0039810528978705,0.0011678521987051],[0.010391338728368,-0.071487843990326,-0.091943226754665]],[[-0.011447864584625,0.0093888537958264,0.042759396135807],[-0.048002764582634,-0.14973640441895,0.038759600371122],[-0.01888912729919,-0.16233842074871,-0.050473913550377]],[[0.046820804476738,-0.10894078016281,-0.04218377545476],[0.05321978032589,0.055510856211185,-0.040026515722275],[0.031731721013784,-0.032284654676914,0.11798775941133]],[[0.026081740856171,0.036279138177633,0.011377386748791],[0.066046059131622,-0.025651935487986,-0.040751583874226],[0.0067414669319987,-0.072635196149349,0.015889102593064]],[[-0.010791254229844,-0.098262578248978,-0.074114926159382],[0.055229764431715,-0.024671444669366,0.028461487963796],[0.064406424760818,-0.029513666406274,-0.073919638991356]],[[0.014725767076015,0.034205935895443,0.043690234422684],[-0.067909702658653,-0.037538845092058,0.079812526702881],[-0.056718830019236,-0.076468832790852,0.097908355295658]],[[-0.0771594196558,0.012263405136764,0.01233974751085],[0.011695618741214,0.13163651525974,-0.025306932628155],[-0.035429861396551,0.013192313723266,-0.011666283942759]],[[-0.023334983736277,0.0089627802371979,0.022800654172897],[0.083982467651367,0.031635478138924,-0.023252729326487],[-0.010117187164724,0.01531914062798,-0.062025282531977]]],[[[0.0020790887065232,-0.019963294267654,0.004389354493469],[-0.097231842577457,0.074554286897182,-0.021220875903964],[0.03230894729495,0.035202778875828,0.060660757124424]],[[-0.064289674162865,-0.049661844968796,-0.0098387785255909],[-0.013488604687154,-0.0077913934364915,-0.030092550441623],[0.018946437165141,-0.045517403632402,-0.016800813376904]],[[0.013627412728965,-0.069851160049438,0.12191404402256],[-0.072083249688148,-0.067928902804852,0.010419339872897],[-0.010902365669608,-0.01524468138814,0.042170815169811]],[[0.0008259309688583,0.074909955263138,0.0043478417210281],[0.025516843423247,0.017406523227692,-0.037508241832256],[-0.033170327544212,-0.051877062767744,0.031346578150988]],[[0.045015335083008,0.03298481926322,-0.029083721339703],[-0.034496624022722,-0.0089175682514906,-0.022605819627643],[-0.0040787565521896,-0.011751778423786,0.14364722371101]],[[0.031384963542223,0.047026351094246,0.067730396986008],[0.0027592235710472,-0.14362320303917,0.051787495613098],[-0.10333457589149,-0.023990601301193,0.049801826477051]],[[-0.0087657766416669,0.032321635633707,-0.054860569536686],[-0.06019901111722,0.057621598243713,0.059812061488628],[-0.017164906486869,-0.051873732358217,0.040477626025677]],[[-0.036509402096272,0.01033769454807,0.041582126170397],[0.050676673650742,0.019570445641875,-0.021240759640932],[-0.014525300823152,-0.026974840089679,-0.063140667974949]],[[0.041542675346136,-0.066245384514332,-0.015821617096663],[-0.043403044342995,-0.059127438813448,-0.0012996358564124],[0.05590682849288,0.045601788908243,-0.099320583045483]],[[0.054446090012789,-0.030135150998831,-0.044855605810881],[-0.024016750976443,0.022098038345575,-0.075197815895081],[-0.063845612108707,-0.0036852294579148,0.023821776732802]],[[0.0075804628431797,-0.0053845448419452,-0.056298982352018],[0.051177520304918,-0.12720802426338,0.13149644434452],[0.062574848532677,0.10025328397751,-0.075538717210293]],[[-0.046779993921518,-0.010594242252409,-0.02690670825541],[-0.034600596874952,-0.0051874099299312,0.041530150920153],[0.0043481690809131,-0.01212752610445,-0.029578663408756]],[[-0.044908154755831,0.0075707589276135,0.0072157462127507],[0.021877037361264,0.054506570100784,-0.021668964996934],[-0.01941061578691,0.069075912237167,0.014982396736741]],[[0.082069389522076,-0.013445797376335,0.00187006033957],[0.086966723203659,0.058059811592102,0.017551818862557],[0.016684116795659,0.023379659280181,-0.033349499106407]],[[0.047462519258261,-0.10929673910141,-0.027015654370189],[-0.074483998119831,0.013769725337625,0.060016095638275],[0.050037998706102,-0.037679430097342,0.020076146349311]],[[0.018458914011717,0.043225023895502,-0.0093710459768772],[0.03390247374773,-0.065919309854507,0.010779038071632],[0.050446067005396,0.015593890100718,0.026213016360998]],[[0.029158473014832,0.019729509949684,-0.014626638963819],[-0.015151831321418,0.0080423317849636,-0.03324943780899],[0.048241142183542,0.076541401445866,-0.012029001489282]],[[0.038685422390699,0.056644167751074,0.023474575951695],[-0.061518501490355,0.047200184315443,0.021108500659466],[-0.016903437674046,-0.0666538849473,-0.02006796002388]],[[-0.029655382037163,0.036161173135042,0.051443044096231],[-0.044429391622543,0.0043315785005689,-0.052171785384417],[0.016433365643024,0.015743950381875,0.049185499548912]],[[-0.041564732789993,-0.030735542997718,0.024651497602463],[-0.059671305119991,-0.014559643343091,-0.04823387786746],[0.013929706066847,-0.0019681968260556,-0.0027273031882942]],[[0.032054323703051,0.026709530502558,0.0059400424361229],[0.028667574748397,0.0040162061341107,-0.036747355014086],[0.069747880101204,0.0091171199455857,-0.028736189007759]],[[-0.046938542276621,-0.019481720402837,-0.02762727625668],[0.033126465976238,0.017649715766311,-0.0087791979312897],[0.029025584459305,0.055634196847677,0.025266952812672]],[[0.013837519101799,0.053131464868784,0.0029535256326199],[0.012885653413832,-0.00916419737041,-0.019770540297031],[-0.04764299467206,-0.010328731499612,0.012024913914502]],[[-0.0064573846757412,-0.030227262526751,0.052618626505136],[0.038863595575094,0.041898563504219,-0.002262347843498],[-0.04820766672492,-0.025614166632295,-0.034815020859241]],[[-0.022504307329655,-0.035076860338449,0.04643601924181],[0.030379327014089,-0.14180056750774,0.014005737379193],[-0.014875144697726,0.025875562801957,0.028713118284941]],[[0.03630606085062,0.054850488901138,-0.071901984512806],[-0.060792125761509,-0.0068849693052471,0.05092516541481],[-0.1323416531086,-0.013373530469835,-0.026458309963346]],[[-0.049023427069187,-0.021484846249223,0.010068585164845],[0.021156610921025,-0.0028655384667218,0.047662973403931],[-0.019410690292716,0.02814506739378,-0.00080413359683007]],[[0.045839264988899,-0.023254824802279,0.0015898570418358],[-0.0079078171402216,-0.090620458126068,0.07615389674902],[0.085948072373867,0.053563077002764,0.023332556709647]],[[-0.076399751007557,-0.0043051978573203,-0.027067251503468],[-0.044997174292803,-0.001881922245957,0.029832322150469],[-0.045318275690079,-0.019795207306743,-0.065316691994667]],[[-0.032400604337454,-0.020762922242284,-0.079895332455635],[0.027540639042854,0.0046777189709246,-0.050632856786251],[-0.022790137678385,0.032401748001575,-0.050130285322666]],[[-4.525386611931e-05,0.015838239341974,-0.0035288447979838],[-0.1164640635252,-0.043701816350222,-0.00585001334548],[-0.027985213324428,-0.0096372961997986,-0.016171813011169]],[[0.031148398295045,0.081320405006409,-0.042627137154341],[0.029879841953516,0.062177363783121,-0.027265409007668],[-0.0062300995923579,-0.0045076725073159,-0.0039940187707543]],[[-0.09830991178751,-0.03235862031579,-0.0084322271868587],[0.013660525903106,-0.042703676968813,-0.044636901468039],[0.063932873308659,-0.040555641055107,-0.092499159276485]],[[0.0037918337620795,-0.039602052420378,0.021796219050884],[-0.017014138400555,0.027019893750548,0.1131502315402],[0.069007992744446,-0.086857333779335,-0.048299707472324]],[[-0.00396638084203,-0.021525733172894,-0.016026640310884],[0.05511999130249,-0.025268744677305,-0.03836714476347],[0.046605799347162,-0.12186306715012,-0.020240331068635]],[[-0.06658623367548,-0.031043659895658,0.027763139456511],[-0.057359874248505,0.02436238899827,0.011210348457098],[-0.092145100235939,-0.090006105601788,-0.035745833069086]],[[0.073364749550819,-0.11342220753431,-0.018677838146687],[-0.012354401871562,0.036733031272888,0.013074273243546],[0.021482827141881,-0.0010427890811116,0.051433514803648]],[[0.039779767394066,-0.023194191977382,-0.10144297778606],[-0.05587850138545,-0.0022549729328603,-0.037929572165012],[-0.075461998581886,0.044492743909359,0.0016175317578018]],[[0.04012007266283,0.040384747087955,-0.061119705438614],[-0.0018944429466501,-0.014012358151376,0.039499286562204],[-0.036125797778368,-0.062037270516157,0.018092146143317]],[[-0.018758777529001,0.017704864963889,-0.0085626803338528],[0.041336506605148,0.038117650896311,0.010912532918155],[-0.084822207689285,-0.0024565644562244,0.027168242260814]],[[0.041971396654844,-0.10265233367682,0.043764725327492],[0.0027904876042157,0.0011130544589832,-0.055270817130804],[-0.02678476087749,0.0031266869045794,0.00066406308906153]],[[-0.12054344266653,0.025856390595436,0.048552896827459],[0.05651393905282,0.017607759684324,-0.055101130157709],[-0.058631781488657,0.11237840354443,-0.015936244279146]],[[-0.0060243112966418,-0.0089094461873174,0.01973332837224],[-0.018183000385761,-0.0492845736444,0.12995991110802],[-0.030079524964094,0.0567218773067,0.031575042754412]],[[-0.052152074873447,-0.042965445667505,0.031161038205028],[-0.026820641011,-0.017033228650689,-0.0096362689509988],[-0.062843330204487,-0.0009170540724881,-0.051428869366646]],[[0.047589659690857,0.0043057794682682,-0.034618489444256],[0.029862085357308,0.027015700936317,0.038357451558113],[-0.015762496739626,-0.060728210955858,-0.059796217828989]],[[-0.0094975065439939,0.092104248702526,-0.047945644706488],[0.03537991642952,0.088412031531334,-0.0628507360816],[-0.08951985090971,0.013705989345908,0.02253864146769]],[[-0.033892408013344,-0.036188613623381,-0.0052927979268134],[-0.042779743671417,-0.03446701914072,0.024498701095581],[-0.010665601119399,-0.041326213628054,-0.059315372258425]],[[0.013792088255286,-0.062217548489571,-0.044309418648481],[0.061936520040035,0.082236759364605,-0.0054552843794227],[-0.10146744549274,-0.069891847670078,-0.036755934357643]],[[-0.026561290025711,-0.029624121263623,-0.036881778389215],[-0.14116610586643,0.0085212327539921,0.017975574359298],[-0.010040931403637,-0.1282234787941,-0.13936701416969]],[[-0.00044247123878449,0.012913878075778,0.02859497629106],[0.0037569031119347,0.041241712868214,-0.094724245369434],[-0.028279937803745,0.036143943667412,-0.037592470645905]],[[0.09626429527998,0.012234062887728,0.020362328737974],[0.021395340561867,0.042119842022657,0.0086610876023769],[-0.015541772358119,-0.061999373137951,-0.049926273524761]],[[-0.020088391378522,-0.0055521614849567,-0.0030943269375712],[-0.011141560040414,-0.029171906411648,0.05613961443305],[-0.0077936942689121,-0.018908424302936,-0.078612826764584]],[[-0.00989621412009,0.032329078763723,-0.056144963949919],[-0.028771094977856,0.064240776002407,-0.056338671594858],[-0.046627808362246,0.010502547025681,0.0087573304772377]],[[0.15095812082291,0.032994456589222,0.062187608331442],[0.12427189946175,0.13281080126762,0.0010355876293033],[0.097190961241722,0.040179520845413,-0.0033805998973548]],[[-0.030693104490638,-0.030321216210723,-0.018492631614208],[0.0053674937225878,-0.060311578214169,-0.037348326295614],[-0.057400710880756,-0.045921798795462,-0.025817096233368]],[[0.02628069370985,-0.054699223488569,-0.024424396455288],[-0.056643277406693,0.026657152920961,-0.038979344069958],[-0.011949271894991,0.01257324591279,-0.062834545969963]],[[-0.045254025608301,-0.00019744674500544,0.033430475741625],[0.021605355665088,0.085004732012749,0.047957710921764],[0.027526585385203,-0.0092058628797531,-0.019477598369122]],[[-0.013163331896067,0.019159549847245,-0.0026890428271145],[0.024327298626304,0.053776364773512,-0.058990102261305],[-0.039316534996033,-0.04371227696538,0.019528416916728]],[[0.0094979992136359,0.055707339197397,-0.032855316996574],[0.011927079409361,-0.0095461988821626,0.036939613521099],[-0.0016193018527701,-0.0032900355290622,-0.014315943233669]],[[0.063417240977287,-0.019991995766759,-0.028971867635846],[-0.029623541980982,0.060256063938141,-0.031955063343048],[0.042695268988609,0.032763224095106,-0.0047515844926238]],[[-0.044839359819889,0.0029780257027596,-0.06405957788229],[0.030673142522573,-0.040456149727106,-0.0044025685638189],[-0.090810477733612,0.029586415737867,-0.095513917505741]],[[0.022615095600486,-0.10545504838228,-0.15191671252251],[-0.029346065595746,-0.057624187320471,-0.044057160615921],[-0.049601823091507,0.0028387687634677,-0.010025791823864]],[[0.065648071467876,-0.041723545640707,0.026159897446632],[-0.045398194342852,-0.026297593489289,0.00012174100265838],[-0.016600536182523,-0.045910887420177,0.0015317876823246]],[[-0.099804796278477,0.036950904875994,0.045296981930733],[0.0054028336890042,-0.037571635097265,-0.0036446019075811],[-0.059590004384518,0.078531086444855,0.042085729539394]]],[[[-0.24738158285618,0.020368928089738,-0.04559389129281],[0.010545160621405,0.019499516114593,0.024917118251324],[0.021975392475724,-0.050371631979942,-0.035393886268139]],[[-0.052527241408825,-0.044671315699816,0.023292923346162],[-0.041922479867935,0.04301080852747,-0.067793771624565],[-0.0044816145673394,0.030668457970023,0.0091516962274909]],[[0.029065540060401,0.084821991622448,-0.092677913606167],[0.029275624081492,0.018840489909053,-0.028904149308801],[0.10802589356899,0.034160289913416,0.020454013720155]],[[0.0082635646685958,0.0072870370931923,-0.099778197705746],[0.066940359771252,0.060443267226219,-0.009564490057528],[0.0019420654280111,0.021319655701518,-0.07702761143446]],[[0.0012493879767135,0.0017480384558439,0.0061937435530126],[-0.012974328361452,0.081227123737335,-0.035490117967129],[-0.00015160143084358,-0.071110352873802,0.055830206722021]],[[0.082934610545635,0.0065998858772218,0.02363783493638],[0.037685681134462,-0.010347506031394,-0.041784424334764],[0.02240532822907,0.017909992486238,-0.11521534621716]],[[0.025789549574256,-0.1187299489975,0.0021809795871377],[0.036555990576744,-0.041237019002438,-0.033566329628229],[-0.080187954008579,-0.10547295212746,-0.0039811306633055]],[[0.055713452398777,0.036928582936525,-0.030706658959389],[-0.015268980525434,-0.064182743430138,-0.11200039833784],[0.035727169364691,0.010757745243609,0.024953151121736]],[[-0.051461111754179,0.061266675591469,0.020210269838572],[0.088959135115147,-0.0096411788836122,0.0058000469580293],[-0.066065184772015,-0.034476760774851,0.033985402435064]],[[0.016233243048191,-0.01648973301053,-0.027560133486986],[0.14090625941753,-0.017472499981523,-0.074825882911682],[0.049573443830013,-0.063974641263485,0.0023020142689347]],[[-0.092570103704929,-0.027580261230469,-0.029926957562566],[-0.056379806250334,-0.013620727695525,0.037888906896114],[-0.054314937442541,0.034876801073551,0.0019302451983094]],[[0.036420620977879,0.13144443929195,-0.016974173486233],[0.081396259367466,0.034092862159014,0.065294958651066],[0.05299536511302,0.010417855344713,-0.0022681136615574]],[[0.0088151674717665,0.056606449186802,-0.0023206586483866],[0.0054261703044176,-0.066904217004776,0.11714252084494],[-0.0040559200569987,0.036550741642714,-0.10091242194176]],[[-0.022015390917659,0.055147852748632,-0.045144345611334],[-0.10913179069757,0.040986984968185,0.042976472526789],[0.076683528721333,-0.027538571506739,0.14134901762009]],[[-0.016241794452071,0.050417635589838,-0.10573049634695],[0.02478894405067,-0.047480303794146,-0.01212434284389],[0.048082623630762,-0.017527785152197,-0.0051154969260097]],[[-0.031974893063307,-0.081452749669552,0.016255829483271],[-0.017719067633152,-0.0064491545781493,0.075501903891563],[0.07163642346859,-0.065276525914669,0.010984811931849]],[[-0.066346444189548,0.021764988079667,-0.050735261291265],[0.027202824130654,-0.077435337007046,0.06362933665514],[0.037499997764826,-0.0088695548474789,-0.014993066899478]],[[0.027299221605062,-0.21070401370525,0.00026578802498989],[0.063389495015144,0.075203098356724,-0.0018263448728248],[-0.02818207629025,-0.13510246574879,0.022318299859762]],[[0.079019092023373,-0.041165824979544,-0.0096602970734239],[0.024114595726132,-0.052838709205389,-0.00030405330471694],[0.017537649720907,-0.018770270049572,-0.00011021671525668]],[[-0.031693354249001,0.020619194954634,0.015572188422084],[-0.073891900479794,-0.015546063892543,-0.048579394817352],[0.086187019944191,-0.054626110941172,-0.044723194092512]],[[-0.097360700368881,0.017969958484173,-0.072708174586296],[0.0386728271842,0.015744980424643,-0.043866068124771],[0.12439817935228,0.054061334580183,-0.056298665702343]],[[-0.067770704627037,0.18720206618309,-0.051951430737972],[-0.078213229775429,-0.17064590752125,0.10247799754143],[0.031945422291756,0.060088962316513,0.024616315960884]],[[-0.0089916195720434,-0.012182737700641,0.05868786200881],[0.044455863535404,-0.017652593553066,0.0035299216397107],[0.0055557903833687,-0.040517460554838,-0.063563972711563]],[[-0.05316261574626,0.058761738240719,-0.002189782448113],[-0.048007760196924,0.052022282034159,-0.067632213234901],[-0.018218668177724,0.035639598965645,0.059915732592344]],[[-0.012820583768189,0.13906599581242,-0.12356113642454],[-0.06743810325861,-0.030868256464601,-0.044734142720699],[-0.01050076354295,0.01987005956471,-0.028968941420317]],[[-0.0077143860980868,-0.01243104133755,-0.030249578878284],[-0.075776837766171,0.026432985439897,0.031755294650793],[-0.0070912577211857,0.05991130694747,-0.02929924055934]],[[0.065088897943497,-0.020826021209359,0.018896205350757],[-0.049598108977079,-0.013968476094306,0.067271672189236],[-0.10482504218817,-0.13601604104042,-0.079483516514301]],[[0.022436851635575,-0.10086050629616,0.056719869375229],[0.029009435325861,0.0027761813253164,0.023517848923802],[0.11052836477757,0.063696980476379,0.0096800588071346]],[[-0.017849745228887,0.010202707722783,-0.0021471020299941],[-0.056696716696024,-0.09454870223999,0.0013803238980472],[-0.0015703386161476,-0.0086834467947483,0.0056259166449308]],[[0.10371229052544,-0.097608350217342,-0.067314475774765],[-0.0019230524776503,-0.067852348089218,-0.045916225761175],[0.094216056168079,0.025094848126173,-0.087473228573799]],[[0.059695176780224,0.013652368448675,-0.032174088060856],[-0.0059033506549895,0.056375160813332,-0.044579893350601],[-0.047003600746393,0.023406883701682,-0.092440694570541]],[[-0.091648951172829,0.059151884168386,-0.091162674129009],[0.032888911664486,0.12974089384079,-0.043519377708435],[-0.080799542367458,0.0077291144989431,-0.0063892821781337]],[[0.040497951209545,0.090318739414215,-0.11234466731548],[0.024038635194302,0.16788168251514,-0.024068143218756],[-0.15180049836636,-0.030759729444981,0.0031556198373437]],[[-0.037266723811626,0.072050385177135,-0.047616381198168],[-0.075651235878468,0.0095873521640897,-0.0020489781163633],[-0.054293259978294,-0.030578173696995,-0.02165955491364]],[[0.031051341444254,-0.055716969072819,-0.039166085422039],[-0.037789832800627,-0.049517124891281,-0.0075165969319642],[-0.01881848089397,0.029982363805175,-0.023715108633041]],[[-0.10145483911037,-0.016559896990657,-0.12028101831675],[-0.060648504644632,-0.13342392444611,-0.079117886722088],[-0.1049295142293,-0.067585155367851,-0.062424331903458]],[[0.031442780047655,-0.07092223316431,0.040165137499571],[0.070006504654884,0.023641837760806,-0.066371962428093],[-0.040619403123856,-0.0052837156690657,-0.06476417183876]],[[-0.06294709444046,0.10497503727674,0.020805543288589],[-0.025422532111406,0.031627167016268,0.11036659032106],[-0.058188315480947,-0.06867528706789,-0.050395399332047]],[[0.014342776499689,0.088550493121147,-0.080349862575531],[-0.053174272179604,0.030614765360951,-0.10553044825792],[-0.055654808878899,0.078942768275738,-0.059801086783409]],[[-0.13648796081543,0.057185996323824,0.11403207480907],[0.0037584695965052,-0.061210945248604,-0.13902339339256],[0.020674549043179,0.090719178318977,0.095040440559387]],[[0.019199004396796,0.060111295431852,0.0043991515412927],[-0.098299697041512,0.076157674193382,0.045316945761442],[-0.03052644059062,-0.00019920113845728,-0.046123307198286]],[[-0.026396097615361,-0.0091264192014933,0.037953894585371],[0.021895876154304,-0.1099951416254,-0.061535470187664],[0.04565766081214,0.074949406087399,-0.088783919811249]],[[-0.1291338801384,-0.019407568499446,0.10547954589128],[-0.0086301323026419,-0.16147801280022,-0.0014719793107361],[-0.023451086133718,0.10319671779871,0.10206583142281]],[[-0.030131505802274,-0.002281418768689,-0.032649923115969],[0.024735406041145,-0.034967884421349,0.040573246777058],[-0.0070743458345532,-0.054779011756182,0.018757099285722]],[[-0.10507852584124,0.203767567873,-0.10510843247175],[-0.11097218841314,0.057219784706831,-0.11721874028444],[-0.032926835119724,0.2221951186657,-0.16895382106304]],[[0.018154306337237,-0.083472587168217,0.08510997146368],[0.090572759509087,-0.054797030985355,0.045052196830511],[-0.014951075427234,0.036438520997763,-0.06587702780962]],[[-0.00082021183334291,0.16225433349609,-0.010286814533174],[-0.043451745063066,0.03668225556612,-0.066493935883045],[-0.015199214220047,0.11509595811367,0.022532934322953]],[[0.025726711377501,-0.038593128323555,0.056299921125174],[-0.038461063057184,-0.020042654126883,-0.031362909823656],[-0.0096604218706489,0.08726329356432,-0.061336830258369]],[[-0.12543575465679,0.079356521368027,-0.035752322524786],[0.03872898593545,-0.039357718080282,-0.09711679071188],[-0.060130339115858,0.0081351911649108,-0.0033070426434278]],[[0.021806495264173,-0.10118206590414,0.11820501834154],[-0.050571173429489,-0.029049675911665,-0.056883085519075],[0.014281355775893,-0.025323785841465,0.011577882803977]],[[-0.079094409942627,0.019066980108619,-0.038780879229307],[-0.0388771481812,0.046503033488989,0.0564328096807],[-0.007651069201529,-0.017867648974061,-0.048753444105387]],[[0.039071142673492,-0.026670597493649,0.053445782512426],[0.02724570967257,-0.0032195255625993,-0.040903154760599],[-0.013630914501846,0.086483024060726,0.027850046753883]],[[-0.13575203716755,0.033590409904718,-0.030580891296268],[0.024046583101153,-0.008609252050519,-0.0029935170896351],[-0.072606667876244,-0.056558083742857,-0.066429667174816]],[[0.029968976974487,0.0098154433071613,0.10421847552061],[-0.0080778393894434,0.072541773319244,-0.042480666190386],[-0.01283722370863,0.060353860259056,0.12111210078001]],[[0.055485691875219,-0.0050025517120957,0.080810964107513],[-0.01024576369673,-0.048671845346689,-0.024847997352481],[0.04938118904829,-0.014310887083411,0.053049057722092]],[[0.047952301800251,-0.0089368596673012,0.065469682216644],[-0.012283362448215,-0.033160388469696,-0.032558206468821],[-0.001580753014423,-0.015453564934433,0.021275024861097]],[[-0.014692277647555,-0.0013159089721739,0.04525400698185],[0.0077689825557172,0.033476028591394,-0.045040339231491],[-0.069697454571724,-0.012264235876501,0.11530814319849]],[[0.0025652679614723,0.011446027085185,-0.075330130755901],[-0.052119605243206,-0.072616584599018,0.037138145416975],[0.044031597673893,-0.014731344766915,-0.0017466150457039]],[[0.086760140955448,-0.071115501224995,-0.044766377657652],[0.0034064401406795,-0.035394307225943,-0.023687094449997],[-0.06112277880311,0.16613060235977,0.060310583561659]],[[-0.020392278209329,0.031704403460026,0.01334775518626],[0.0011405202094465,0.0032919223885983,0.016539881005883],[-0.035134840756655,0.045844785869122,0.039472162723541]],[[-0.060848284512758,-0.075376883149147,-0.10797952860594],[-0.018964963033795,-0.028227912262082,-0.0013355939881876],[0.076018266379833,0.02014347538352,0.07160809636116]],[[-0.081147223711014,-0.063808940351009,-0.014586470089853],[0.091935746371746,0.012150913476944,0.038197614252567],[-0.051604688167572,-0.045124139636755,-0.054810099303722]],[[-0.050773840397596,-0.060655657202005,0.040023431181908],[0.089552290737629,-0.010656110942364,-0.064043775200844],[-0.027830589562654,-0.038255412131548,0.0046058832667768]],[[0.046335529536009,-0.06555412709713,0.0501290820539],[-0.0038324315100908,-0.038832377642393,0.082309916615486],[-0.014055780135095,-0.017899330705404,0.077976264059544]]],[[[0.019516976550221,0.0091738495975733,0.037289462983608],[-0.056294661015272,0.058437515050173,-0.030698157846928],[0.004448582418263,-0.056505538523197,-0.025257183238864]],[[-0.017951065674424,0.13198609650135,0.091779500246048],[-0.0026326400693506,-0.031379710882902,-0.046858415007591],[0.076815843582153,0.090609028935432,-0.0046040359884501]],[[-0.057557947933674,-0.0035402318462729,0.023409429937601],[-0.014087446033955,0.0051381876692176,0.02258481271565],[0.062007520347834,-0.023050427436829,0.014008480124176]],[[-0.12135784327984,-0.036981161683798,0.070822305977345],[-0.013188937678933,-0.13475468754768,0.095964893698692],[0.054857138544321,-0.048352852463722,-0.19895677268505]],[[-0.088694825768471,-0.18555411696434,0.041434422135353],[0.02209347859025,-0.12884978950024,-0.049272995442152],[-0.089221939444542,0.0530707500875,-0.029716739431024]],[[-0.018087273463607,-0.074912369251251,-0.013513838872313],[-0.027073938399553,-0.16976761817932,0.0035637009423226],[0.0098760742694139,-0.021354835480452,-0.045491062104702]],[[-0.061312451958656,-0.079528629779816,-0.037295185029507],[0.020003607496619,-0.022593142464757,0.032665062695742],[-0.020383896306157,0.035498358309269,0.037142489105463]],[[0.15006577968597,0.073862500488758,-0.043386943638325],[0.08703176677227,0.094063803553581,0.015991093590856],[-0.077106267213821,-0.16889882087708,-0.059208255261183]],[[-0.066619545221329,0.025453083217144,-0.041497770696878],[0.03380100056529,0.097402051091194,-0.083520404994488],[-0.0029402147047222,-0.068994216620922,0.075213305652142]],[[-0.10632465034723,-0.022405359894037,0.024521691724658],[-0.084437444806099,0.067418709397316,-0.003737227525562],[-0.015155848115683,0.00036919859121554,-0.03713708370924]],[[0.060477197170258,-0.059921033680439,-0.057437032461166],[0.079352170228958,0.017645066604018,-0.054774049669504],[-0.020725654438138,-0.15685822069645,-0.099730968475342]],[[-0.066145218908787,0.073318302631378,0.0027405885048211],[0.024437906220555,0.042164161801338,-0.026500821113586],[-0.080142132937908,-0.039289820939302,-0.028487423434854]],[[-0.12002085149288,-0.054057527333498,0.038757119327784],[-0.1652574390173,-0.29621198773384,-0.066243752837181],[-0.1108630001545,-0.091825291514397,-0.21436507999897]],[[0.099405758082867,0.021956807002425,0.0066041224636137],[0.10861356556416,0.078541584312916,-0.0015197813045233],[0.020762544125319,0.033544488251209,-0.048950735479593]],[[0.0023068252485245,-0.073737740516663,-0.064697183668613],[-0.025143852457404,-0.030813073739409,0.041141085326672],[0.0053833173587918,0.02844326198101,0.024502154439688]],[[-0.022812789306045,-0.0035662658046931,0.013643622398376],[0.025054527446628,-0.0057499180547893,-0.072132714092731],[0.021132564172149,0.024764386937022,0.017215566709638]],[[-0.13227641582489,0.034454107284546,0.050402592867613],[-0.006337022408843,-0.0069348430261016,-0.021677883341908],[0.050647482275963,0.064734309911728,-0.02694577910006]],[[-0.15446899831295,-0.10147394984961,-0.051923040300608],[-0.11008114367723,0.06643483787775,-0.00033769581932575],[-0.079084061086178,0.013500175438821,0.052480135113001]],[[0.080276735126972,0.066948138177395,-0.031479097902775],[-0.038233391940594,-0.036846183240414,0.01123144198209],[0.080653376877308,0.044466078281403,0.066895432770252]],[[-0.057447522878647,-0.034388951957226,-0.10260240733624],[0.014248297549784,-0.070278361439705,-0.0044168210588396],[0.0072984253056347,-0.033070996403694,0.010402277112007]],[[-0.034644477069378,0.045919466763735,-0.13651295006275],[-0.03369814530015,0.022390354424715,0.018836788833141],[-0.033917117863894,0.05361719802022,0.012044369243085]],[[0.033607270568609,-0.077427312731743,0.020215375348926],[-0.0018111801473424,-0.12082808464766,-0.023036777973175],[-0.027842773124576,-0.040586195886135,-0.057264495640993]],[[-0.068600751459599,-0.059900134801865,0.00757045019418],[-0.010780414566398,-0.0053131142631173,0.059531401842833],[-0.021868472918868,0.071389153599739,0.053739544004202]],[[-0.079493254423141,0.017507394775748,-0.06279032677412],[-0.068561181426048,-0.029514145106077,-0.046604637056589],[-0.089078240096569,-0.026905696839094,-0.14796687662601]],[[-0.033407494425774,0.010180396027863,-0.078277625143528],[-0.074141673743725,-0.027897702530026,0.012509667314589],[-0.016525754705071,-0.036689907312393,0.028942899778485]],[[0.031109359115362,0.010483794845641,0.0090282587334514],[0.10365331918001,0.049844834953547,-0.063797600567341],[-0.026454593986273,-0.06280180811882,-0.048128135502338]],[[-0.048524782061577,-0.10496459156275,-0.078068368136883],[0.02201278321445,0.096437640488148,-0.031902495771646],[-0.088020101189613,0.10573418438435,-0.007413656450808]],[[-0.10862782597542,-0.11354726552963,-0.13701276481152],[-0.029398975893855,-0.098521612584591,-0.028727082535625],[-0.017383571714163,0.030398197472095,0.069005146622658]],[[0.038089603185654,0.06797006726265,0.043010804802179],[0.043834552168846,-0.016828011721373,0.031872104853392],[-0.019095046445727,-0.038975968956947,0.020621618255973]],[[-0.13645289838314,-0.13412563502789,-0.027537422254682],[-0.17295603454113,-0.26440006494522,-0.005522399675101],[-0.10988314449787,-0.04923901706934,-0.1002933755517]],[[0.056240949779749,-0.012472580187023,0.080987818539143],[-0.029976958408952,0.039203226566315,0.0095260441303253],[0.010413327254355,0.052019935101271,0.055265605449677]],[[0.092708826065063,-0.0067098075523973,0.041478611528873],[0.067644990980625,-0.0010177169460803,-0.031610894948244],[-0.10559474676847,0.00702945003286,0.063475035130978]],[[-0.028031408786774,-0.067406721413136,-0.05555485188961],[0.0012759214732796,0.050114311277866,-0.0052683604881167],[-0.023617530241609,0.041245561093092,-0.099220164120197]],[[-0.0552495457232,0.072924949228764,-0.052792631089687],[0.046410329639912,-0.054569497704506,0.027382500469685],[0.091691054403782,-0.0071634068153799,0.037817638367414]],[[-0.0060587455518544,0.062637060880661,-0.036945462226868],[0.024688839912415,0.018634194508195,-0.015807323157787],[-0.0015106770442799,0.0537249147892,0.068576991558075]],[[-0.17397239804268,-0.18037155270576,-0.026606841012836],[-0.1086873114109,-0.0015093327965587,0.060965616255999],[-0.043876111507416,0.015088770538568,0.083675920963287]],[[0.12860287725925,0.089694820344448,0.0072908233851194],[0.014744378626347,-0.016477130353451,-0.11419643461704],[0.04618925973773,0.060981322079897,-0.062181767076254]],[[-0.01358575001359,-0.01801691390574,-0.060190994292498],[0.033115670084953,-0.089860290288925,-0.060871079564095],[0.079515166580677,0.03726364672184,-0.06069753319025]],[[0.053120601922274,0.092572338879108,0.030784232541919],[0.042595069855452,-0.02475674636662,-0.016343131661415],[0.025242913514376,-0.02422103472054,-0.013277634978294]],[[0.035718020051718,-0.064044520258904,0.022390153259039],[0.020594807341695,0.0030949164647609,-0.027755152434111],[0.0074224378913641,-0.020383957773447,-0.065659366548061]],[[-0.048962257802486,0.045957252383232,0.065577924251556],[-0.022902365773916,0.018350705504417,0.070173241198063],[-0.048074398189783,-0.081432543694973,-0.068111881613731]],[[0.002182774245739,0.014602853916585,0.018257036805153],[0.093004249036312,-0.012852665036917,0.039783593267202],[0.037219595164061,-0.05630936846137,-0.17171491682529]],[[0.03889038041234,0.067273944616318,-0.035766270011663],[0.048353299498558,0.032390050590038,-0.012300374917686],[0.03354237228632,0.049341924488544,0.037524405866861]],[[-0.068416699767113,-0.0026294754352421,0.030228771269321],[-0.11064406484365,-0.0068368152715266,-0.0060672429390252],[-0.02017536945641,-0.04898489639163,-0.27592694759369]],[[0.036910150200129,0.10215497761965,-0.11794839799404],[-0.032233819365501,0.052268292754889,0.057407863438129],[0.0099460687488317,0.040563024580479,0.0077316123060882]],[[-0.023881535977125,-0.010254721157253,-0.0083356229588389],[-0.0034382538869977,0.042506329715252,-0.092789225280285],[0.030345361679792,0.074779868125916,-0.037660714238882]],[[-0.049594953656197,0.027661902830005,0.023699425160885],[-0.05370569974184,-0.070358626544476,-0.13384054601192],[-0.0052208383567631,0.017283566296101,-0.16682055592537]],[[-0.059254832565784,0.058359228074551,-0.04381600022316],[-0.031396333128214,-0.036045387387276,-0.037055969238281],[0.079009242355824,0.11063331365585,-0.030841320753098]],[[0.023387584835291,-0.026793321594596,0.048649087548256],[0.12967735528946,0.10079615563154,0.020528392866254],[-0.005370787344873,0.061244979500771,-0.039674881845713]],[[-0.17186689376831,0.045941971242428,0.042700845748186],[-0.23515617847443,0.012609475292265,0.037365689873695],[-0.19542418420315,-0.062957972288132,0.20523113012314]],[[-0.065939582884312,9.2279020464048e-05,0.026105839759111],[0.078226529061794,0.036803986877203,0.034397520124912],[0.041291762143373,0.013065493665636,0.10588139295578]],[[0.08357198536396,0.092632673680782,0.051982026547194],[0.030766230076551,0.040478590875864,0.06496749073267],[0.061183411628008,-0.045104492455721,-0.10384917259216]],[[0.062025114893913,-0.1097669005394,-0.0043590837158263],[-0.015305927023292,-0.10124079883099,-0.042962584644556],[-0.054145153611898,0.12951315939426,0.088422141969204]],[[0.045840878039598,0.067434199154377,-0.05408001691103],[0.17225407063961,0.18605801463127,0.093009792268276],[0.13028061389923,0.035959284752607,0.035893138498068]],[[0.0023839245550334,-0.099746719002724,-0.014830948784947],[0.060147125273943,-0.088325053453445,-0.046686746180058],[-0.08612585067749,-0.087684065103531,-0.18904377520084]],[[-0.045774627476931,-0.01725709438324,0.011566774919629],[0.032315660268068,0.02178387157619,0.043452054262161],[0.039992347359657,0.012169565074146,0.0065139052458107]],[[-0.034043028950691,-0.021326564252377,0.038203053176403],[0.049827262759209,-0.0071864821948111,0.081703349947929],[0.016273066401482,-0.13040877878666,0.023409243673086]],[[0.02402282692492,-0.023103266954422,0.017903380095959],[-0.042590372264385,-0.40066289901733,-0.16846483945847],[0.00072176347021013,-0.18580821156502,-0.33915486931801]],[[-0.059443641453981,0.038080602884293,-0.039505835622549],[0.070248283445835,0.036375172436237,-0.15856350958347],[0.0091267107054591,0.020132323727012,-0.04876883327961]],[[0.088567338883877,0.091754741966724,-0.0026456348132342],[0.07429151982069,-0.023753296583891,-0.028458654880524],[0.019755057990551,-0.055734984576702,-0.062151126563549]],[[-0.06070127338171,-0.13264945149422,-0.059848103672266],[-0.081000760197639,-0.12013819813728,-0.11580716073513],[-0.048044420778751,-0.039615523070097,-0.095382951200008]],[[0.028429782018065,0.11896228045225,0.051937557756901],[-0.10900238156319,-0.0071101333014667,0.13248905539513],[0.0018326024292037,-0.0150923486799,-0.082809634506702]],[[-0.14278450608253,0.007672839332372,-0.06687543541193],[-0.078035965561867,-0.026521138846874,0.00042414251947775],[0.001115070306696,-0.11148533970118,-0.012521851807833]],[[-0.012650929391384,-0.0016423769993708,0.0034994154702872],[-0.031573187559843,0.082984618842602,-0.029832281172276],[-0.091300487518311,0.018257308751345,-0.059637479484081]]],[[[-0.065708935260773,-0.094311274588108,0.0055287457071245],[-0.11637748777866,-0.027355462312698,0.0035621265415102],[0.084534920752048,0.067453384399414,0.0070248506963253]],[[0.097832515835762,0.16424930095673,-0.037614971399307],[-0.091040425002575,-0.077544435858727,0.038907214999199],[0.035924136638641,0.029407439753413,0.021625274792314]],[[0.071715049445629,0.0012267084093764,0.047345213592052],[0.042146135121584,0.05285756662488,-0.048006616532803],[-0.050268664956093,-0.030569495633245,-0.027957890182734]],[[-0.18304520845413,-0.047091528773308,0.0055323648266494],[0.035580903291702,-0.22868293523788,0.0095629580318928],[-0.19666284322739,-0.12681451439857,-0.18383496999741]],[[0.17428524792194,-0.080317743122578,0.038835406303406],[-0.0027405882719904,0.047822169959545,-0.10261507332325],[-0.051856216043234,-0.073061093688011,-0.0055468128994107]],[[0.079241350293159,-0.054266761988401,-0.13285447657108],[-0.02695843949914,0.0030257576145232,0.010697410441935],[-0.057546369731426,-0.13576455414295,-0.10771263390779]],[[0.01017689332366,-0.029610982164741,0.014524417929351],[0.0066161113791168,-0.023306647315621,-0.065478511154652],[0.012944385409355,-0.026978000998497,-0.060784757137299]],[[-0.010080883279443,0.060478553175926,0.023736819624901],[-0.094054087996483,-0.059542864561081,0.018031526356936],[-0.0066539933905005,-0.067533388733864,0.050381526350975]],[[0.055609162896872,0.10019389539957,0.022815754637122],[0.046217288821936,-0.11018070578575,0.030127178877592],[0.015989162027836,-0.065384693443775,0.0056178634986281]],[[0.11388193815947,0.08025024831295,0.033359952270985],[-0.028937323018909,0.021732432767749,0.069275438785553],[-0.05750747397542,-0.12139389663935,-0.038293804973364]],[[0.078026592731476,0.0052155125886202,0.08260452747345],[-0.081453718245029,0.086377128958702,-0.001653054729104],[-0.023963177576661,-0.034672368317842,0.058169674128294]],[[0.0015849864576012,-0.077406585216522,0.05595787614584],[-0.10229283571243,0.0090198880061507,-0.058928161859512],[-0.094189666211605,-0.039281219244003,-0.094714216887951]],[[-0.069678515195847,-0.12668693065643,0.0015215483726934],[0.10538019239902,-0.12865899503231,-0.15747313201427],[-0.039822295308113,-0.040374543517828,0.095937334001064]],[[-0.18724952638149,-0.053319834172726,0.019160490483046],[0.015126025304198,0.059111587703228,0.072977811098099],[0.033268254250288,0.041953779757023,0.15767094492912]],[[0.098988309502602,0.041875813156366,0.0028778538107872],[-0.076620072126389,-0.031944934278727,-0.0080732526257634],[-0.12000829726458,-0.061416331678629,-0.058423526585102]],[[0.0063753570429981,-0.037426635622978,-0.089553020894527],[-0.0081829885020852,0.0061730500310659,0.034922670572996],[0.0054549900814891,-0.034867726266384,0.055687710642815]],[[0.060947712510824,0.043650023639202,0.022461021319032],[-0.020258143544197,0.011876047588885,-0.16145807504654],[-0.086015373468399,-0.069862857460976,0.066545814275742]],[[-0.016353730112314,-0.058213077485561,0.06791528314352],[-0.0012302034301683,-0.019861301407218,-0.074506022036076],[-0.076843321323395,-0.030825331807137,-0.12275004386902]],[[-0.03484446182847,-0.00066092656925321,0.01329171191901],[-0.056198190897703,-0.046180076897144,0.075007803738117],[-0.011427642777562,0.016357000917196,-0.0029164075385779]],[[0.070122547447681,-0.0070792678743601,-0.025122886523604],[0.065991714596748,-0.086529344320297,-0.015597331337631],[0.006342651322484,0.051723770797253,-0.02441536821425]],[[0.17288935184479,0.011462558060884,-0.083601430058479],[-0.045582942664623,0.1054879501462,-0.056539230048656],[0.06761958450079,-0.0088891368359327,0.0074169058352709]],[[0.099780023097992,-0.031128913164139,0.024028087034822],[-0.00059159845113754,0.10136473923922,-0.010046471841633],[-0.13458485901356,-0.007676197681576,0.036996502429247]],[[0.040060292929411,-0.040454525500536,0.019649123772979],[0.025929465889931,-0.036391779780388,-0.00049344316357747],[0.049238257110119,-0.0093413759022951,-0.038977559655905]],[[0.0077973655425012,-0.014803286641836,0.014853917993605],[0.011295638047159,-0.071819812059402,0.0045859576202929],[0.019709760323167,-0.09015429019928,-0.000887953909114]],[[0.00219871615991,-0.041171886026859,-0.064091354608536],[-0.062248066067696,0.073643371462822,-0.023183990269899],[0.013174443505704,0.013923210091889,0.011617531999946]],[[-0.081711269915104,0.010523429140449,-0.035680074244738],[-0.093489818274975,-0.017067493870854,-0.017983024939895],[-0.1329670548439,-0.0158876106143,0.073078341782093]],[[-0.015610373578966,0.013626008294523,-0.064790010452271],[-0.060033407062292,0.042578916996717,-0.091674849390984],[-0.11000674962997,-0.15469260513783,-0.12819109857082]],[[-0.12995959818363,0.10333282500505,0.10589023679495],[-0.030293917283416,0.10368624329567,0.026524808257818],[-0.036884281784296,0.05313827469945,0.04946294426918]],[[0.038779433816671,0.047689065337181,-0.081910870969296],[-0.07540974766016,-0.0162573158741,-0.082741618156433],[0.058112192898989,-0.0074044237844646,-0.013489354401827]],[[-0.037610318511724,-0.051408853381872,-0.096636019647121],[0.0024041039869189,-0.04408498108387,-0.0058880462311208],[0.032790772616863,-0.055997755378485,-0.01344108954072]],[[-0.049414023756981,-0.15404622256756,-0.037342172116041],[0.1010507196188,-0.080587327480316,0.035156507045031],[0.069146044552326,-0.10204526036978,-0.0045128567144275]],[[-0.047771167010069,0.02629167214036,0.01877405680716],[0.028045564889908,-0.0082295332103968,0.060477059334517],[-0.12428135424852,-0.044809553772211,0.018459716811776]],[[-0.005172704346478,-0.019561128690839,0.0010051665594801],[0.010119415819645,-0.075270891189575,-0.0023845552932471],[-0.0070359166711569,0.082949988543987,-0.057225782424212]],[[-0.075803354382515,0.06325476616621,0.11007222533226],[-0.04471580684185,-0.082013390958309,0.001195695833303],[0.071963213384151,-0.076552800834179,0.020575931295753]],[[-0.02495595626533,0.16567619144917,0.060287021100521],[-0.034172669053078,0.072321534156799,0.039324481040239],[0.039944153279066,0.13692277669907,0.0053474213927984]],[[0.082335002720356,0.040105637162924,0.024821978062391],[0.055275343358517,0.037263236939907,-0.0082485973834991],[-0.12747702002525,-0.090961486101151,-0.11193416267633]],[[-0.16215419769287,0.11325837671757,0.056474208831787],[-0.1583307236433,0.060462642461061,0.014221100136638],[-0.14984409511089,-0.039556514471769,-0.073803134262562]],[[0.084238678216934,-0.10816276818514,-0.096217654645443],[0.071873918175697,0.012958998791873,-0.10558135807514],[0.076726697385311,-0.11439533531666,0.034724276512861]],[[0.0060446970164776,-0.008128228597343,-0.046018276363611],[0.0050893067382276,-0.014690656214952,0.010213470086455],[-0.038525860756636,-0.029086904600263,0.028009058907628]],[[-0.11322994530201,-0.11301083862782,0.1102566421032],[-0.012944196350873,-0.054809335619211,-0.044650971889496],[-0.049753081053495,-0.22087825834751,-0.0079511646181345]],[[-0.01483756583184,-0.076696678996086,0.02715065702796],[-0.016968984156847,0.012750258669257,-0.024802736938],[0.042278110980988,-0.044422842562199,0.12381811439991]],[[-0.10945753008127,0.032836638391018,0.031170280650258],[-0.094399966299534,-0.020241778343916,0.032541900873184],[0.011148575693369,0.19760099053383,0.0024531011004001]],[[-0.0033314772881567,-0.1009132489562,0.023605527356267],[-0.029095474630594,-0.034119036048651,-0.031322535127401],[-0.003322955686599,0.074973806738853,0.023500056937337]],[[0.07993146777153,-0.03820937871933,-0.086505137383938],[-0.03185348212719,0.015642676502466,-0.0086660319939256],[-0.001305113430135,-0.092183850705624,0.11644925177097]],[[0.0017910730093718,0.015348554588854,0.093693569302559],[0.039012923836708,0.0034124120138586,-0.039500962942839],[0.035153660923243,-0.021651284769177,-0.082489781081676]],[[-0.097983300685883,-0.035154279321432,0.039226457476616],[-0.00040222724783234,0.029615750536323,0.08452570438385],[-0.038387075066566,0.03173128888011,0.061407957226038]],[[0.068914867937565,0.080430552363396,0.038284927606583],[0.096656270325184,-0.054950676858425,0.038830202072859],[0.057536367326975,0.010110634379089,-0.0020591251086444]],[[0.01629894413054,0.039456002414227,0.073724038898945],[0.0021045112516731,0.0096553908661008,0.02330107241869],[-0.026476643979549,0.060149356722832,-0.057903595268726]],[[0.0713230073452,-0.0001752066455083,-0.061758562922478],[0.045424554497004,0.060175884515047,-0.0046983482316136],[-0.040299125015736,-0.029133893549442,0.035246457904577]],[[0.069359205663204,0.080325894057751,-0.0074223419651389],[-0.02172271721065,0.062135688960552,0.1266303062439],[-0.004926510155201,-0.17238613963127,-0.10190124064684]],[[-0.00077531993156299,-0.042397644370794,-0.0069856247864664],[0.021310918033123,0.041295345872641,0.038228791207075],[-0.093878984451294,0.04365037754178,0.098762273788452]],[[0.09898142516613,0.051339846104383,-0.041574519127607],[0.026587082073092,0.082039639353752,-0.027810676023364],[0.071516521275043,-0.05804767459631,-0.025304498150945]],[[-0.0091180708259344,-0.11982499063015,-0.13662558794022],[-0.0057491357438266,0.054504305124283,-0.10788913071156],[0.063277676701546,-0.024158857762814,0.014792433008552]],[[0.11170289665461,0.071382753551006,0.015668012201786],[0.056864008307457,0.13197189569473,0.048562683165073],[-0.022534115239978,0.058136697858572,0.16541282832623]],[[-0.048602424561977,-0.2003261744976,0.091960407793522],[0.020591873675585,-0.16245192289352,-0.019496386870742],[-0.022628476843238,-0.028082037344575,-0.011460489593446]],[[-0.043434705585241,-0.075255908071995,0.069525890052319],[0.049721576273441,0.013138055801392,-0.013146380893886],[-0.018416734412313,-0.03395926579833,-0.059219446033239]],[[-0.0021586094517261,-0.068121500313282,0.020151874050498],[0.017184127122164,0.00087851518765092,-0.047380227595568],[0.057291574776173,-0.079865656793118,-0.054239422082901]],[[0.0018406722228974,0.074595972895622,0.0033194478601217],[0.0017444103723392,-0.11505981534719,0.034855980426073],[0.047616463154554,0.010224364697933,-0.031761214137077]],[[-0.080179400742054,-0.024709219112992,-0.0081168441101909],[0.093461379408836,0.040283717215061,0.061087690293789],[0.061214651912451,-0.0043122852221131,0.065162315964699]],[[-0.0050178794190288,0.065624117851257,0.0062058009207249],[0.021280093118548,0.011000486090779,-0.033708900213242],[-0.043599653989077,-0.0074914768338203,0.084170825779438]],[[-0.099438026547432,-0.14091373980045,0.059648528695107],[-0.019243739545345,-0.079960629343987,0.080251298844814],[0.22089099884033,-0.078716441988945,-0.035851929336786]],[[0.15338391065598,0.15998420119286,-0.032458625733852],[0.024186920374632,0.01805005222559,0.049089666455984],[0.043582882732153,-0.067654572427273,-0.053423952311277]],[[0.036148935556412,-0.022763164713979,0.092977277934551],[-0.0011946618324146,-0.075839966535568,0.049769084900618],[0.001464624889195,0.03718813508749,0.0035579400137067]],[[-0.055122200399637,0.040475055575371,-0.07982562482357],[-0.084873393177986,-0.065429471433163,0.096350446343422],[-0.040833599865437,-0.012089814990759,0.17288936674595]]],[[[-0.042962595820427,0.014236071147025,0.0050335489213467],[-0.056542906910181,-0.056865148246288,0.050758209079504],[0.020601604133844,0.099515438079834,-0.049767706543207]],[[0.0036820229142904,-0.044977445155382,-0.023216282948852],[-0.013540849089622,0.043561853468418,0.046404205262661],[0.0028823476750404,-0.018593367189169,0.031236490234733]],[[0.0064812344498932,-0.018985638394952,0.022457115352154],[-0.012138170190156,-0.0055766240693629,0.0043186810798943],[0.069871038198471,-0.018848445266485,-0.00069921847898513]],[[-0.017647488042712,0.0035536466166377,-0.011145979166031],[-0.0088223349303007,-0.016009859740734,-0.012479808181524],[-0.0052654310129583,0.0098423808813095,-0.040885210037231]],[[-0.01947308331728,-0.065624557435513,-0.022548088803887],[-0.031854331493378,0.048163201659918,-0.0029141753911972],[0.068943850696087,0.018710738047957,-0.039840426295996]],[[0.034843400120735,0.0086351670324802,0.07455188781023],[-0.013366270810366,-0.024723516777158,0.09194802492857],[0.013699212111533,-0.064010500907898,-0.0080448677763343]],[[-0.017981011420488,0.00060792156727985,-0.036626197397709],[-0.0054152538068593,0.0038501722738147,-0.0053357584401965],[0.013515951111913,-0.032535668462515,0.042290989309549]],[[0.048666283488274,-0.01365159265697,-0.03047483228147],[-0.023559583351016,-0.021645942702889,-0.0106644295156],[-0.077182829380035,-0.024948820471764,-0.0063302963972092]],[[-0.010834437794983,0.018862439319491,0.021480847150087],[-0.018719958141446,-0.034052796661854,0.027510130777955],[0.064755350351334,0.0074554588645697,-0.03615190461278]],[[-0.017102397978306,0.032438881695271,0.0023705060593784],[-0.024942979216576,0.047487538307905,0.024941047653556],[-0.0064991544932127,-0.066021174192429,0.00087452656589448]],[[0.040042124688625,-0.0064917774870992,-0.026992103084922],[-0.038176752626896,0.031210338696837,0.0064875660464168],[-0.0063615390099585,0.0045835082419217,0.0069350167177618]],[[-0.024433767423034,0.013979464769363,0.028033778071404],[-0.0071084224618971,-0.04029718786478,-0.067058108747005],[0.00092779425904155,-0.018373593688011,0.040725596249104]],[[-0.021944008767605,-0.030192075297236,-0.012000819668174],[0.023435682058334,-0.031346678733826,-0.015271478332579],[-0.015929298475385,-0.034381289035082,-0.02758208476007]],[[-0.047304254025221,-0.034086637198925,0.029028717428446],[0.0036556902341545,0.041864298284054,-0.026144005358219],[-0.064181812107563,0.097071029245853,0.032337214797735]],[[-0.023764278739691,-0.060236066579819,0.072370424866676],[0.006800732575357,-0.009140282869339,0.021045085042715],[-0.024496646597981,0.077679827809334,-0.0064842160791159]],[[0.077093243598938,-0.078617446124554,0.021682064980268],[0.058319266885519,0.042866311967373,-0.052558697760105],[0.044650182127953,0.064164012670517,-0.0084142163395882]],[[-0.011667459271848,-0.013369987718761,0.034457560628653],[0.057132303714752,0.031260751187801,0.035203333944082],[0.093156784772873,-0.0085688447579741,-0.0052763083949685]],[[0.0093646422028542,-0.0039096879772842,-0.0043051103129983],[-0.0032968346495181,0.051197104156017,0.0066946712322533],[0.034572426229715,0.0073026171885431,0.037269063293934]],[[0.030314745381474,-0.035035226494074,-0.053421840071678],[0.0042928368784487,0.020078174769878,0.021248526871204],[0.028537705540657,0.00076259113848209,0.0053349751979113]],[[-0.0050766621716321,0.0080082230269909,-0.037578716874123],[0.028060531243682,0.057337585836649,-0.011847800575197],[0.039293386042118,0.0098425066098571,0.023357825353742]],[[-0.0032792775891721,0.014456096105278,-0.047125194221735],[-0.02862111479044,0.034575004130602,-0.0010341322049499],[-0.029390310868621,0.016972314566374,0.014584700576961]],[[-0.050819054245949,-0.020503567531705,-0.011993640102446],[0.022901680320501,-0.0066586569882929,-0.065039440989494],[0.038339700549841,0.048338998109102,-0.10908419638872]],[[-0.017277518287301,-0.05233146622777,-0.024710085242987],[0.045664209872484,-0.0045305364765227,0.054203499108553],[-0.025484967976809,0.045846674591303,-0.031076308339834]],[[0.016572704538703,0.031139360740781,-0.012601611204445],[-0.032729879021645,-0.0032500035595149,-0.032799288630486],[-0.0076480424031615,0.012691753916442,-0.029172366485]],[[-0.0050846613012254,0.071534149348736,0.10314276814461],[0.036700922995806,0.025624997913837,-0.0098430840298533],[0.048384707421064,0.029380915686488,-0.048812214285135]],[[0.017072407528758,-0.07367380708456,0.063306480646133],[-0.02053564414382,-0.012243899516761,-0.077468678355217],[0.028573153540492,-0.0093553410843015,0.0034843368921429]],[[-0.024759581312537,0.0021357140503824,-0.014538287185133],[-0.066857434809208,-0.056083746254444,0.055824767798185],[-0.0016828869702294,0.025389323011041,-0.00079169147647917]],[[-0.061584696173668,0.035364251583815,-0.050446018576622],[-0.04026485979557,-0.083463221788406,-0.0063613830134273],[-0.070266589522362,0.0072478759102523,-0.00091331091243774]],[[0.029852334409952,-0.023330086842179,-0.022692207247019],[0.029270008206367,-0.029857903718948,0.0039859018288553],[0.034734670072794,-0.047588732093573,-0.030841859057546]],[[-0.086063988506794,0.059652004390955,-0.018708249554038],[-0.0037018156144768,-0.017296023666859,-0.03577696159482],[-0.014772643335164,0.0093203913420439,0.011309604160488]],[[0.038014803081751,-0.063549906015396,-0.0083659831434488],[0.0018682999070734,0.013768862001598,-0.056805901229382],[0.081098712980747,0.016235116869211,-7.8871329606045e-05]],[[0.032290041446686,-0.052267346531153,-0.0070988051593304],[-0.024477818980813,0.035715583711863,-0.015840858221054],[0.044887732714415,0.0050457771867514,0.0001678929256741]],[[-0.014231234788895,0.032528083771467,-0.019547332078218],[0.0016737916739658,-0.061627335846424,-0.014120349660516],[0.0026358852628618,-0.03510419651866,-0.072819642722607]],[[-0.077041894197464,-0.0089299222454429,-0.059891413897276],[-0.014632343314588,0.010869045741856,-0.022188486531377],[-0.0015154334250838,-0.03383956104517,-0.0084130149334669]],[[0.018915385007858,0.037758525460958,0.051393043249846],[0.0368976816535,-0.063194938004017,-0.019063070416451],[0.051516629755497,0.059157356619835,-0.061008457094431]],[[0.0051983916200697,0.0018008907791227,-0.035936068743467],[0.037540569901466,-0.048440776765347,0.0006597358151339],[-0.013617954216897,-0.024550572037697,-0.020931951701641]],[[0.078129991889,0.051768597215414,-0.011898948810995],[0.019378900527954,0.028797894716263,-0.020154705271125],[0.0016428119270131,-0.062769815325737,-0.04724258556962]],[[-0.0099037308245897,-0.03273268789053,-0.027708807960153],[0.054526619613171,0.052589111030102,0.029598545283079],[0.090148970484734,-0.013861490413547,-0.069178283214569]],[[0.039695389568806,0.027561897411942,-0.028046060353518],[-0.040040571242571,0.00016043518553488,-0.0056038089096546],[-0.092634715139866,-0.044265940785408,-0.036550901830196]],[[0.010426050983369,-0.0091468105092645,0.032101847231388],[-0.0086818663403392,-0.04830863699317,-0.0098662599921227],[0.028120959177613,-0.016191441565752,-0.039858136326075]],[[-0.034551873803139,-0.052005060017109,-0.031394984573126],[-0.012819712050259,-0.0018654295708984,-0.0040544788353145],[0.039052091538906,0.038661099970341,0.040409635752439]],[[-0.045542478561401,-0.011369463056326,0.03746261075139],[-0.030798442661762,0.014592040330172,0.035378836095333],[0.028945934027433,-0.05414155870676,-0.010377553291619]],[[0.02134601213038,0.018322413787246,-0.040529850870371],[-0.038135018199682,0.026615101844072,0.010238933376968],[-0.08975725620985,0.024802511557937,-0.034387022256851]],[[0.022969461977482,-0.052513796836138,-0.00012376776430756],[-0.011887554079294,-0.077858805656433,-0.084803640842438],[-0.0155931096524,0.018278626725078,0.053090639412403]],[[0.091402813792229,-0.053607739508152,-0.0029515800997615],[0.056274708360434,0.08760903775692,-0.042424727231264],[-0.045421905815601,0.063236229121685,0.015045137144625]],[[-0.041350066661835,0.065787047147751,-0.010834754444659],[-0.0016137547791004,-0.027270397171378,0.033840853720903],[0.050604794174433,0.023295715451241,-0.050668325275183]],[[0.02542831376195,-4.1154853533953e-05,0.017149034887552],[-0.066640615463257,-0.086249962449074,-0.026835775002837],[0.006577861495316,-0.038500301539898,0.054478038102388]],[[-0.041012790054083,-0.01291009504348,-0.028455980122089],[0.05217219889164,0.078960850834846,-0.06541895866394],[0.026498902589083,0.04178873822093,0.0019055140437558]],[[0.046696692705154,-0.027601031586528,-0.021142167970538],[-0.026668626815081,-0.040628142654896,0.00080879603046924],[-0.02586798928678,0.029128272086382,0.0037550760898739]],[[-0.017301531508565,-0.067723631858826,-0.035780154168606],[-0.0014357659965754,0.0060634580440819,-0.0078092529438436],[0.022047867998481,-0.0032369187101722,-0.030741449445486]],[[0.029375087469816,-0.022048640996218,-0.025532523170114],[0.03050635010004,-0.0088954018428922,-0.029536550864577],[-0.0054827267304063,-0.00085938611300662,0.024531850591302]],[[0.0046028345823288,-0.022280029952526,0.0076560778543353],[0.0061741354875267,-0.014135492034256,-0.0064399875700474],[0.033779036253691,0.035432890057564,0.044801693409681]],[[-0.034519728273153,0.010166937485337,-0.0012267386773601],[0.069705180823803,0.0092210816219449,0.02933338843286],[0.10369934141636,-0.036019496619701,-0.017956119030714]],[[0.061863698065281,0.085915312170982,0.034904751926661],[0.037704411894083,0.028887601569295,0.13645076751709],[0.029840912669897,0.11307756602764,0.0044092666357756]],[[0.0070942318998277,-0.033553831279278,0.016658697277308],[-0.037736807018518,0.014977879822254,0.020182928070426],[0.042282737791538,-0.02078721113503,0.0065175648778677]],[[0.029251055791974,-0.0078337779268622,0.047972023487091],[-0.045347683131695,0.010440673679113,0.0061607682146132],[-0.0013818888692185,-0.019824452698231,0.0016019680770114]],[[-0.10133621841669,-0.024693295359612,-0.032438430935144],[-0.0054758712649345,-0.025637447834015,-0.010578616522253],[-0.021206261590123,-0.044527277350426,-0.040101431310177]],[[-0.0065441243350506,0.030252626165748,0.0030479477718472],[-0.0077181560918689,-0.056717988103628,-0.056282918900251],[0.051838252693415,-0.022941332310438,-0.014107674360275]],[[0.071831919252872,-0.022204954177141,0.038480076938868],[0.034913193434477,-0.066373161971569,-0.078675024211407],[-0.034133139997721,-0.012856568209827,0.045328479260206]],[[0.048538368195295,0.0015925653278828,0.0111114513129],[0.020310847088695,0.042343903332949,-0.028677677735686],[-0.00085348781431094,-0.0036311582662165,0.024667773395777]],[[-0.0062155216000974,-0.010660580359399,-0.0081721115857363],[0.042734883725643,0.010618473403156,0.050421871244907],[0.020076271146536,-0.014590089209378,-0.021731741726398]],[[-0.051027841866016,0.050527174025774,-0.013159708119929],[-0.021931491792202,-0.032743774354458,-0.0099888015538454],[-0.024565979838371,-0.040449608117342,0.0028281959239393]],[[-0.055081520229578,0.062739670276642,0.0028062372002751],[-0.060453068464994,-0.014239455573261,0.0073186531662941],[0.044440805912018,-0.012910841032863,0.015385185368359]],[[-0.048517994582653,-0.011708522215486,-0.021234028041363],[-0.0014523895224556,0.061659920960665,-0.0083599137142301],[-0.089110322296619,-0.028561986982822,-0.0069096335209906]]],[[[0.057397328317165,0.023718388751149,0.0017573023214936],[0.013461436145008,-0.04874362796545,-0.086725011467934],[0.00018422452558298,0.05184280872345,0.061438620090485]],[[-0.020092036575079,0.06141958758235,0.035943027585745],[-0.011910392902792,-0.014834389090538,0.046588569879532],[-0.014500780962408,-0.004531592130661,0.027939995750785]],[[0.010407262481749,0.029968867078424,0.061003945767879],[0.011245152913034,-0.090197905898094,0.025424223393202],[-0.075766913592815,0.0059619252569973,0.0035558415111154]],[[-0.022069431841373,-0.0067042419686913,0.043490171432495],[-0.026591774076223,-0.052231132984161,-0.045783281326294],[-0.021586362272501,0.0071105221286416,0.066065981984138]],[[0.0010382195468992,0.021147398278117,0.015594067052007],[0.001507094479166,0.014145511202514,0.037038967013359],[0.013668077066541,-0.081009812653065,-0.03153020888567]],[[-0.0072543066926301,0.12995959818363,-0.056144148111343],[0.028643872588873,-0.10835105925798,-0.0050925016403198],[0.0018991802353412,0.028694789856672,0.023305997252464]],[[-0.025398373603821,0.016220485791564,-0.021031307056546],[-0.069855868816376,-0.037888281047344,-0.0075543173588812],[0.020922105759382,0.0066459346562624,0.030103007331491]],[[-0.062216699123383,-0.085170961916447,0.04590168595314],[0.04609240591526,0.068002067506313,0.079494476318359],[0.030717274174094,0.062277372926474,-0.015106186270714]],[[-0.067016169428825,0.029167905449867,0.044071096926928],[0.0034362836740911,-0.0097727188840508,0.016107907518744],[0.036810673773289,-0.050505701452494,0.007328093983233]],[[-0.0018385222647339,0.0086885299533606,0.01779081299901],[0.045322809368372,0.030417658388615,0.064463287591934],[-0.023259384557605,0.0041533871553838,-0.09251195192337]],[[-0.034554343670607,0.028195353224874,-0.012961736880243],[0.074830189347267,-0.040574744343758,-0.022354174405336],[0.093038514256477,-0.017835674807429,0.049310848116875]],[[0.063989102840424,0.040475957095623,0.066358610987663],[-0.059413898736238,0.068633742630482,-0.0077675636857748],[0.015565275214612,0.022377941757441,0.059139125049114]],[[0.043624952435493,-0.031748838722706,-0.081630282104015],[-0.11954766511917,-0.04348311945796,-0.019461859017611],[-0.025965381413698,0.014283862896264,-0.020750654861331]],[[0.062388520687819,0.02454636618495,0.054149106144905],[0.066929027438164,-0.020964911207557,0.0062703983858228],[-0.018763119354844,0.007441767025739,-0.024693010374904]],[[0.034383658319712,0.075544729828835,-0.024895971640944],[0.076981320977211,-0.062887474894524,0.0016650975449011],[-0.04389026761055,0.081916391849518,0.0066704824566841]],[[0.037603568285704,0.055110815912485,-0.049803748726845],[0.0074429782107472,-0.075118139386177,0.056309845298529],[0.060445699840784,-0.0022985388059169,0.03786912560463]],[[-0.049693860113621,0.02891038544476,-0.048470199108124],[-0.013860883191228,0.10405651479959,0.041393853724003],[0.032962419092655,0.0063930279575288,-0.016989897936583]],[[-0.02378548309207,0.040784679353237,0.0075601674616337],[-0.018943410366774,-0.048130515962839,0.083686418831348],[-0.052651949226856,-0.013112604618073,0.040744837373495]],[[-0.022808983922005,-0.0010700690327212,0.041167188435793],[0.032537933439016,-0.066179513931274,0.050446048378944],[-0.00097464810824022,0.027243006974459,0.0093428865075111]],[[-0.00297537073493,0.041558373719454,0.020747493952513],[0.01340591814369,0.0872433334589,-0.005964114330709],[0.0038623362779617,0.031692236661911,0.0033966712653637]],[[0.043400563299656,0.097524657845497,0.033865191042423],[0.037055492401123,-0.0089924735948443,-0.06317912042141],[0.045854639261961,0.028914220631123,0.11475088447332]],[[-0.048204161226749,0.012554183602333,0.021806130185723],[0.019556744024158,0.010269064456224,-0.019842572510242],[0.040975082665682,0.044971328228712,-0.084697499871254]],[[0.012610019184649,-0.0022858344018459,-0.079698942601681],[0.046403408050537,-0.00088152894750237,0.032845847308636],[-0.046762719750404,0.017159450799227,0.021280739456415]],[[-0.0077452901750803,-0.001410040538758,-0.027354875579476],[-0.027352897450328,-0.041417397558689,-0.010434432886541],[-0.017021229490638,-0.035430762916803,-0.025888998061419]],[[0.018752433359623,0.006427382119,0.025414215400815],[0.078149132430553,0.11330638825893,-0.050854738801718],[-0.0064905215986073,-0.002884583780542,0.051405847072601]],[[-0.016566829755902,0.015442338772118,-0.013019606471062],[0.009984009899199,0.060179065912962,-0.017665285617113],[-0.072133451700211,-0.033591784536839,0.010640302672982]],[[0.041324008256197,-0.020025931298733,-0.06944502145052],[-0.04137122631073,-0.038553010672331,0.028652373701334],[0.05432166531682,0.060631677508354,0.052616290748119]],[[0.022306233644485,0.018465042114258,-0.022336861118674],[0.020537354052067,0.02877158485353,-0.048054821789265],[0.043889682739973,-0.054991766810417,0.097210839390755]],[[-0.019082877784967,-0.0067242607474327,0.024518217891455],[-0.0051085068844259,-0.016706302762032,-0.014879028312862],[0.00023667443019804,0.0069573200307786,-0.034563016146421]],[[-0.028141448274255,-0.097399264574051,-0.0071538491174579],[0.0013054776936769,0.0059109013527632,-0.091055326163769],[-0.0058815125375986,-0.040231067687273,0.042278684675694]],[[-0.042585499584675,-0.017143355682492,-0.022762916982174],[0.029849104583263,0.04439202696085,-0.039011538028717],[0.0087311118841171,-0.039072409272194,-0.0076171588152647]],[[-0.033998880535364,0.059111967682838,-0.041419498622417],[0.016500886529684,0.0061283516697586,0.061263225972652],[0.028369251638651,0.076248988509178,-0.0045318230986595]],[[0.017513794824481,-0.022482085973024,-0.069891355931759],[0.014366055838764,0.019228020682931,-0.0051487837918103],[-0.049137938767672,-0.070381216704845,-0.077846355736256]],[[0.0081056179478765,-0.025119822472334,0.032687477767467],[-0.022191042080522,-0.012656313367188,-0.0064559481106699],[0.0060546435415745,-0.0066106799058616,-0.0037244255654514]],[[0.079613745212555,0.0081435786560178,0.039955422282219],[0.052019558846951,-0.0079483427107334,-0.01955015771091],[0.010800365358591,0.058268882334232,0.034032441675663]],[[0.018953269347548,-0.028494091704488,0.01217485871166],[-0.053466431796551,-0.10681136697531,-0.070375300943851],[-0.052744787186384,-0.0035686425399035,-0.036743316799402]],[[-0.02068411000073,-0.025603713467717,0.061220660805702],[0.0050534759648144,-0.038864050060511,-0.005715602543205],[0.037144709378481,0.019733792170882,0.013385453261435]],[[-0.035207729786634,0.053828362375498,-0.095892563462257],[-0.039067715406418,0.019516902044415,0.033288903534412],[0.020077323541045,0.011273853480816,0.042312424629927]],[[-0.05920359864831,0.038111858069897,0.046475276350975],[-0.0048705493099988,0.04512233287096,0.05340639129281],[-0.0094048492610455,-0.026646122336388,0.074869632720947]],[[-0.0034297804813832,-0.031874813139439,0.0014196806587279],[-0.02617640607059,0.011830837465823,0.021571973338723],[-0.0060474453493953,-0.0058513954281807,-0.055123548954725]],[[-0.044831581413746,0.0099703650921583,-0.027156054973602],[-0.035428024828434,0.077972412109375,0.064808636903763],[0.03907598555088,0.010828294791281,-0.030996048822999]],[[0.015774654224515,0.091160506010056,0.029074192047119],[0.0069335480220616,0.069849170744419,-0.042273130267859],[0.00040630350122228,0.0097683034837246,0.1173864081502]],[[-0.01455897372216,-0.030988302081823,0.0095207598060369],[0.014824571087956,0.0019608419388533,0.010000166483223],[0.0023191636428237,0.0081469099968672,0.01223312318325]],[[0.0053437491878867,0.032868552953005,0.013756558299065],[-0.019742548465729,-0.05996735021472,-0.0491535179317],[0.059969034045935,-0.0056926161050797,-0.038763906806707]],[[-0.02607804723084,-0.01712965592742,-0.012701094150543],[-0.026755811646581,0.048826385289431,-0.089211545884609],[-0.053469393402338,0.075042933225632,-0.048508413136005]],[[-0.062189631164074,0.02759075909853,0.021442491561174],[-0.065892145037651,-0.04914590716362,-0.038715235888958],[0.014729502610862,-0.063502058386803,-0.026261126622558]],[[-0.034853845834732,0.020556546747684,0.054721504449844],[-0.0015661232173443,0.021240655332804,0.024613481014967],[-0.062091894447803,0.013364390470088,-0.060173496603966]],[[0.0028933968860656,0.069001495838165,0.011664011515677],[0.073459483683109,0.053703907877207,0.069531388580799],[0.0056597599759698,-0.034655470401049,0.00097628473304212]],[[-0.029262565076351,-0.034403536468744,-0.022061444818974],[-0.069181449711323,-0.0065702586434782,0.053834814578295],[-0.023649776354432,-0.013793228194118,-0.055703960359097]],[[0.10354651510715,0.087290056049824,-0.036475524306297],[0.041078813374043,0.053160347044468,-0.061394717544317],[0.032740566879511,-0.0067905858159065,-0.035712271928787]],[[-0.016021706163883,-0.0090033626183867,-0.019555930048227],[-0.097817085683346,-0.080855377018452,-0.018366780132055],[0.040292836725712,-0.019180564209819,-0.017651410773396]],[[-0.033220585435629,0.0054131848737597,0.020632905885577],[0.013187482021749,0.0013888842659071,-0.040107574313879],[-0.10914190858603,0.0054319812916219,0.027727032080293]],[[-0.081618756055832,0.010564374737442,-0.021489622071385],[0.029987836256623,-0.02028476074338,0.096328921616077],[-0.063514560461044,0.076931014657021,0.041207123547792]],[[0.12565022706985,0.075872004032135,0.025005839765072],[0.02101737819612,-0.021371340379119,0.12062837183475],[0.060040187090635,0.0034356261603534,-0.00092431594384834]],[[-0.077575676143169,-0.047925535589457,-0.063649222254753],[-0.0042262799106538,0.047981955111027,0.013844565488398],[0.018772872164845,0.0070546669885516,-0.045428171753883]],[[-0.018119676038623,0.050678059458733,-0.10742335021496],[-0.015143521130085,-0.048834532499313,0.13590537011623],[-0.010935836471617,0.090519599616528,-0.0093378135934472]],[[-0.010726214386523,-0.045152865350246,-0.011010608635843],[-0.030728325247765,0.046016976237297,0.064857006072998],[0.010874051600695,0.09873428940773,0.00014570228813682]],[[0.0031751545611769,-0.017752591520548,0.053153481334448],[-0.022401180118322,0.06354084610939,-0.033152300864458],[0.021004946902394,0.0269674975425,0.018340623006225]],[[-0.10251055657864,0.068287126719952,-0.017078520730138],[0.024409605190158,-0.010535777546465,0.029055720195174],[-0.048030987381935,0.019684510305524,0.047348741441965]],[[0.00011019749945262,0.030345939099789,0.033223375678062],[-0.040907043963671,-0.0064944601617754,0.0032564857974648],[0.033135715872049,0.035012099891901,-0.02400485239923]],[[-0.026839293539524,0.030633989721537,-0.077649183571339],[0.030650105327368,-0.048563059419394,-0.071676529943943],[-0.014977666549385,-0.02616866119206,0.046000998467207]],[[-0.024653196334839,0.060362085700035,0.033142853528261],[-0.033504668623209,-0.033968437463045,-0.052457369863987],[0.044756125658751,-0.026335468515754,-0.035789716988802]],[[0.068981304764748,-0.045705132186413,0.044089630246162],[0.003425513394177,0.0092600295320153,0.052137460559607],[-0.0079214917495847,-0.035242412239313,0.0080839851871133]],[[-0.040687147527933,-0.011707090772688,0.0015270260628313],[0.066162802278996,0.026112152263522,0.10439694672823],[-0.075182348489761,0.0085810497403145,0.037917360663414]]],[[[0.063024207949638,-0.05022506788373,0.0028216775972396],[-0.080801993608475,-0.090138748288155,-0.065044932067394],[-0.008236363530159,0.019053319469094,0.1151055842638]],[[-0.061657540500164,-0.076395511627197,-0.039812758564949],[-0.0092740412801504,0.05280589312315,0.025585582479835],[0.039358928799629,-0.02004424110055,-0.038064796477556]],[[-0.059043001383543,-0.0045452429912984,-0.028491018339992],[0.0062699066475034,-0.0035256608389318,-0.02768749371171],[-0.009543165564537,-0.011591834016144,0.036301769316196]],[[0.10008381307125,0.025145728141069,-0.074507541954517],[0.038667183369398,0.0042006308212876,-0.00086172355804592],[0.052019476890564,-0.013300362974405,-0.026391854509711]],[[-0.00045448081800714,-0.0087527958676219,0.076740205287933],[-0.065121009945869,0.069245018064976,0.034712750464678],[-0.065054647624493,-0.025368336588144,-0.065751127898693]],[[-0.13722230494022,0.068271242082119,-0.0123554430902],[0.041575945913792,-0.019461125135422,0.071149796247482],[0.083522900938988,-0.17752905189991,0.055738817900419]],[[0.0014804754173383,0.01797523163259,-0.056355115026236],[-0.015968469902873,0.017004495486617,-0.039052166044712],[-0.076013714075089,-0.035967867821455,-0.013071300461888]],[[-0.038566458970308,-0.013199512846768,0.043559078127146],[0.099482446908951,-0.020835472270846,-0.024710759520531],[-0.076509974896908,0.0049193203449249,0.075483538210392]],[[0.035452414304018,-0.00099623401183635,-0.18922190368176],[-0.059226747602224,0.026755077764392,0.081169545650482],[0.10213981568813,-0.012679876759648,0.061625223606825]],[[0.0037660440430045,-0.078968390822411,-0.055265720933676],[0.037899028509855,0.078580878674984,-0.015137078240514],[-0.012138138525188,-0.08075051009655,-0.11904370039701]],[[-0.10713916271925,-0.017838617786765,-0.011180376634002],[0.033179130405188,0.052951712161303,0.012273234315217],[0.035756330937147,0.0007937439950183,-0.0040563312359154]],[[0.01886023953557,0.0049294256605208,0.018060866743326],[0.0047435788437724,-0.053937431424856,-0.034604016691446],[-0.064933516085148,-0.012804477475584,0.013499381951988]],[[-0.039855740964413,-0.023561533540487,0.026339566335082],[-0.06790854036808,0.0090275360271335,0.015196563676],[0.059742733836174,-0.04827992618084,0.048821195960045]],[[-0.019820787012577,-0.005742107052356,0.09231299161911],[-0.044497892260551,-0.040429841727018,-0.099520139396191],[-0.0025454377755523,0.022631889209151,0.02665444649756]],[[0.069178365170956,0.0027638520114124,-0.064315229654312],[0.020274536684155,0.012904363684356,0.012278944253922],[-0.092485100030899,-0.035964794456959,-0.033179774880409]],[[-0.029593652114272,-0.042017180472612,-0.0065194736234844],[0.059872657060623,0.049003224819899,0.016591001302004],[-0.013714462518692,-0.015475945547223,0.039311043918133]],[[-0.035837832838297,0.036034259945154,-0.058414183557034],[-0.0087288599461317,-0.036447398364544,-0.021585205569863],[-0.0049968590028584,-0.030331810936332,0.028189990669489]],[[0.0049474374391139,-0.031912725418806,-0.037412501871586],[0.041582569479942,0.03712285682559,-0.022670721635222],[0.014228043146431,0.0030544043984264,0.023444499820471]],[[-0.020339915528893,-0.016203736886382,-0.025292247533798],[0.01906824298203,-0.042682971805334,0.016939669847488],[-0.039366528391838,-0.080030873417854,-8.1255393524771e-06]],[[-0.067195527255535,-0.063092991709709,-0.096088893711567],[-0.068872183561325,-0.0080088842660189,-0.0065572564490139],[-0.062998257577419,-0.031113693490624,0.0063786394894123]],[[0.17310321331024,0.064322508871555,-0.021366899833083],[-0.013181661255658,-0.069202624261379,-0.13167840242386],[-0.045704510062933,0.014219680801034,-0.11064636707306]],[[-0.0064286659471691,0.0045867240987718,0.080682568252087],[-0.054118905216455,0.025225140154362,-0.0092792334035039],[-0.026836281642318,-0.044664856046438,-0.023235289379954]],[[-0.028383452445269,0.065357692539692,0.026239791885018],[0.0097729191184044,0.0051865978166461,-0.021436836570501],[-0.02574985101819,0.001173133845441,-0.031623218208551]],[[-0.023729998618364,-0.06934130191803,-0.014032853767276],[-0.029685011133552,0.0063776010647416,-0.0173912178725],[0.015993917360902,-0.016527799889445,0.033137395977974]],[[0.0047427648678422,-0.027814581990242,-0.015093313530087],[0.025430895388126,-0.025466976687312,-0.12635609507561],[0.031078860163689,0.032734341919422,-0.026889080181718]],[[-0.0027616035658866,-0.082929268479347,-0.085848703980446],[-0.060266859829426,0.033677726984024,-0.043652445077896],[-0.034522112458944,-0.030861435458064,-0.048004370182753]],[[0.11220378428698,-0.016183607280254,-0.014483133330941],[0.0077140126377344,-0.0134057411924,-0.030870219692588],[-0.035982932895422,-0.021768197417259,0.022832190617919]],[[-0.0080243907868862,0.04568287730217,-0.030273705720901],[0.051202557981014,0.0010548549471423,0.010450406000018],[-0.054251834750175,-0.042397137731314,0.048167381435633]],[[-0.027165150269866,-0.064027473330498,-0.077225148677826],[0.013691775500774,0.031216500326991,0.10934340208769],[-0.0085448492318392,-0.0055363606661558,-0.024388439953327]],[[-0.081048473715782,0.014931585639715,-0.015305773355067],[0.013329548761249,-0.05078948289156,-0.032479029148817],[-0.035930193960667,0.010282578878105,-0.0067317052744329]],[[-0.013118233531713,-0.021415065973997,-0.083589166402817],[-0.05839391797781,0.019392417743802,-0.03265019506216],[0.019610717892647,-0.024861430749297,0.04365673288703]],[[-0.010012602433562,0.010494745336473,0.030749561265111],[-0.048329617828131,0.00029440564685501,0.06313619017601],[0.013678262010217,-0.051185790449381,-0.026726456359029]],[[0.0079663945361972,-0.022222280502319,-0.0042280978523195],[0.088639922440052,-0.032964214682579,0.042954545468092],[0.063587009906769,0.077106729149818,0.0091161392629147]],[[-0.11713533848524,-0.059313856065273,-0.061321415007114],[-0.06026541441679,-0.0058869868516922,-0.013674553483725],[-0.0017779149347916,-0.11436446011066,0.019119678065181]],[[-0.019046649336815,0.039920203387737,-0.038155276328325],[0.054349225014448,-0.055061064660549,-0.058241609483957],[-0.064466431736946,-0.00034386391052976,0.085378237068653]],[[-0.0081025948747993,-0.041820179671049,-0.0073294728063047],[-0.10619290918112,-0.022044658660889,-0.11323376744986],[0.017903540283442,0.031000999733806,0.021813321858644]],[[0.019349848851562,-0.056791882961988,-0.06979314237833],[-0.018831120803952,-0.02977516874671,-0.089736297726631],[-0.0082748774439096,0.11171709746122,-0.036323368549347]],[[-0.096220746636391,-0.03070661239326,-0.024515448138118],[0.015606398694217,0.036932148039341,-0.015740554779768],[-0.045279409736395,-0.047965288162231,0.06062775105238]],[[-0.035613056272268,-0.021658770740032,-0.072185665369034],[-0.010797282680869,0.11351805925369,0.040482979267836],[-0.024858323857188,0.024356909096241,-0.025426618754864]],[[-0.015378445386887,0.018782852217555,-0.07631204277277],[-0.054210584610701,0.011248929426074,0.048956919461489],[0.004027527756989,0.017574643716216,-0.078430563211441]],[[0.025008389726281,0.0024889211636037,0.029441794380546],[0.011612888425589,0.037805765867233,0.023322435095906],[-0.12627835571766,0.02950088493526,-0.089878268539906]],[[-0.0058661899529397,-0.031488098204136,0.02534805983305],[-0.066843695938587,0.013963358476758,0.007780950050801],[-0.045648563653231,-0.077797763049603,-0.0067587019875646]],[[-0.033776115626097,-0.01239559147507,-0.023024866357446],[-0.002257164567709,-0.051497157663107,0.0051355483010411],[-0.070921957492828,-0.051560875028372,-0.017128707841039]],[[-0.0098721431568265,-0.020780561491847,-0.0053654070943594],[0.032712083309889,0.043377690017223,-0.030629016458988],[0.10803091526031,0.072110518813133,0.047323703765869]],[[0.079785518348217,-0.017811823636293,-0.025451229885221],[0.027544170618057,0.029080487787724,-0.046283584088087],[0.0097171058878303,-0.0013924464583397,-0.027449449524283]],[[-0.01494162529707,0.048427313566208,0.053655747324228],[0.039402820169926,0.031324740499258,-0.0091713694855571],[-0.0079312976449728,-0.066774368286133,0.016026185825467]],[[-0.14672335982323,0.0025511751882732,0.041278168559074],[-0.04365636780858,0.046051360666752,0.014149866998196],[0.030543943867087,0.069101065397263,-0.0022855536080897]],[[-0.027460375800729,-0.011808836832643,0.0029967282898724],[-0.093573167920113,-0.097850523889065,0.035710759460926],[0.043983839452267,0.010031972080469,-0.014755059033632]],[[-0.00038657104596496,0.030392441898584,-0.05274011939764],[-0.070680767297745,-0.0002421234967187,0.066156558692455],[0.0096394447609782,0.070192165672779,0.0018322014948353]],[[0.041413970291615,-0.027759624645114,-0.045921362936497],[-0.027547635138035,0.048232551664114,0.098033748567104],[-0.045872241258621,-0.075437538325787,0.043028883635998]],[[-0.045635621994734,-0.019798569381237,-0.043262001127005],[0.044730864465237,-0.038295537233353,-0.017066789790988],[0.026858391240239,-0.031534790992737,0.035226318985224]],[[-0.050949171185493,0.0047754840925336,-0.048643860965967],[-0.096491605043411,-0.070621207356453,-0.10216678678989],[0.03878266736865,-0.020687736570835,-0.0097241774201393]],[[-0.077022649347782,0.010378547012806,-0.018808130174875],[-0.029208157211542,-0.010307970456779,-0.025002541020513],[-0.0025396689306945,-0.007570440415293,-0.041750535368919]],[[0.11625055968761,0.051048446446657,0.10432663559914],[-0.027151891961694,0.035884283483028,-0.02405309677124],[0.090664848685265,0.19194702804089,0.022061487659812]],[[-0.013841909356415,0.11001295596361,-0.016667054966092],[-0.019785679876804,-0.072896756231785,-0.00051145686302334],[0.068525657057762,0.05746703594923,-0.037866394966841]],[[-0.017592430114746,-0.036048147827387,0.034574702382088],[-0.066598445177078,-0.048898465931416,0.03620257973671],[-0.016895763576031,-0.0056485068053007,-0.0075417049229145]],[[-0.068587861955166,0.054270457476377,0.045504044741392],[-0.014742675237358,0.024309806525707,0.020808763802052],[-0.039402719587088,-0.002460855524987,-0.0086324736475945]],[[-0.05630661919713,0.034674424678087,-0.051676534116268],[0.0034152753651142,0.029191493988037,-0.0019508253317326],[0.032147843390703,-0.073878541588783,0.00061543320771307]],[[0.030128359794617,-0.031120974570513,0.074265465140343],[-0.018277402967215,0.017875118181109,-0.047437682747841],[-0.030602663755417,-0.033127531409264,-0.015490906313062]],[[0.031626477837563,-0.089343428611755,-0.027422100305557],[-0.0050357789732516,-0.0057222857140005,0.021673796698451],[0.032863114029169,0.018434461206198,0.041859410703182]],[[-0.0063754701986909,0.010459473356605,-0.010519731789827],[-0.0084614334627986,-0.082424499094486,-0.10388092696667],[0.009066398255527,0.044103242456913,0.058687843382359]],[[-0.064493007957935,0.0065315612591803,-0.011099451221526],[0.021412372589111,0.012765764258802,0.0084082027897239],[0.04084312543273,-0.034044817090034,-0.026260638609529]],[[0.0082920221611857,-0.01857697032392,-0.057078786194324],[-0.034402802586555,0.011279086582363,0.029978066682816],[0.046908833086491,-0.037926241755486,-0.067296996712685]],[[-0.094134390354156,0.028779394924641,0.029624715447426],[-0.0033105469774455,-0.0036894106306136,0.025966916233301],[-0.021438147872686,0.0068331914953887,-0.035450611263514]]],[[[-0.0029346810188144,-0.032863389700651,0.036084495484829],[0.025252021849155,0.016880605369806,-0.029479341581464],[0.036704923957586,0.0076208501122892,0.1044264882803]],[[0.0045624156482518,-0.039123546332121,-0.072353377938271],[-0.033219981938601,-0.010763438418508,0.0007117138011381],[-0.025785245001316,0.01590989343822,0.0049272109754384]],[[0.010679901577532,-0.045224096626043,-0.026029860600829],[-0.013633738271892,-0.0500083938241,0.027910493314266],[-0.015318093821406,0.015719186514616,0.0087615810334682]],[[-0.0084342332556844,0.010623928159475,0.0040870471857488],[0.027806023135781,-0.0026274877600372,-0.044890131801367],[-0.029919354245067,0.030060697346926,0.050626531243324]],[[-0.080585971474648,0.034577213227749,-0.035445868968964],[0.031024741008878,-0.014333182014525,-0.051496244966984],[0.0037085595540702,0.10144044458866,-0.0085242744535208]],[[0.043283235281706,0.072968050837517,0.0073476359248161],[0.0039526796899736,0.05161426961422,-0.0062184622511268],[-0.011038958095014,-0.043183382600546,-0.081302046775818]],[[-0.026568509638309,0.0047223065048456,-0.012430812232196],[-0.010708780027926,0.0638093277812,0.0091139571741223],[0.012691794894636,-0.037652093917131,0.024842189624906]],[[-0.012223726138473,0.036940142512321,0.042428120970726],[0.093462876975536,0.071517392992973,0.000203679286642],[-0.037238173186779,-0.038839489221573,-0.097165003418922]],[[-0.030827635899186,0.052933618426323,-0.023755157366395],[-0.0036481756251305,-0.024985622614622,-0.0092862155288458],[-0.030952533707023,0.032538782805204,-0.026902988553047]],[[-0.049169667065144,0.0065216198563576,-0.079591199755669],[-0.029684618115425,0.0054543851874769,0.0090091610327363],[0.021778834983706,0.020343974232674,0.053997658193111]],[[-0.039870020002127,0.045813750475645,-0.079040229320526],[-0.032670132815838,-0.013595861382782,-0.07712396979332],[0.10743816196918,0.074896901845932,-0.062487293034792]],[[-0.0099834157153964,-0.048084851354361,0.04323835670948],[-0.020723842084408,0.0028013405390084,-0.019607841968536],[-0.010502126999199,0.05096448212862,0.038605328649282]],[[-0.026091048493981,0.030431918799877,-0.036539010703564],[-0.020545031875372,0.077477537095547,-0.016048330813646],[0.0011902932310477,0.020876420661807,0.021856205537915]],[[-0.050912961363792,-0.041408851742744,0.052985187619925],[0.029349518939853,-0.0023759473115206,0.056827154010534],[-0.030063219368458,0.06316913664341,2.4992226826726e-05]],[[-0.08792719990015,0.022317133843899,-0.16961327195168],[-0.0066019268706441,-0.099349938333035,0.10814663022757],[0.063568621873856,0.0158979780972,0.039066910743713]],[[-0.11850920319557,-0.037937004119158,0.0099954893812537],[-0.001595584792085,0.03442906588316,0.0098021812736988],[0.001147827366367,0.053985483944416,-0.019112685695291]],[[-0.0097822966054082,0.021811814978719,0.061373226344585],[0.043486151844263,0.02044259570539,-0.020041257143021],[-0.051518812775612,0.00025369520881213,0.036355443298817]],[[-0.022696217522025,0.023996084928513,-0.01119517441839],[0.014167142100632,0.018516439944506,-0.0040759537369013],[-0.048316992819309,0.038866184651852,0.030372122302651]],[[0.024923613294959,-0.0015845237066969,-0.041657913476229],[-0.045162092894316,-0.011490017175674,-0.052163649350405],[0.0083926180377603,0.027542924508452,0.028089975938201]],[[-0.023152887821198,-0.0091978795826435,-0.0050655673258007],[0.016450518742204,-0.034587882459164,-0.03899734467268],[0.020011285319924,0.024983825162053,0.0040478529408574]],[[0.0141307041049,-0.038764022290707,-0.076992429792881],[-0.052412923425436,0.046399667859077,0.17637650668621],[0.0098245311528444,0.015657488256693,0.099273279309273]],[[0.1420713365078,-0.12300499528646,-0.052042677998543],[0.062831752002239,0.062171224504709,-0.054501920938492],[0.008864788338542,-0.020653480663896,-0.013511671684682]],[[0.028216095641255,-0.032919254153967,-0.0076423762366176],[0.0060669686645269,0.027973022311926,0.019125394523144],[-0.04625203832984,-0.01029200758785,0.025877229869366]],[[-0.074220806360245,0.00026770104886964,0.0095017971470952],[0.02959050051868,-0.039774470031261,-0.019736746326089],[-0.023373613134027,-0.028263352811337,0.010095879435539]],[[0.002831201069057,0.051228400319815,0.072594903409481],[0.0017464936245233,0.027476927265525,-0.050277050584555],[-0.04674019664526,-0.01095247734338,0.02708775550127]],[[-0.054853666573763,0.08528408408165,-0.048970505595207],[0.025263417512178,-0.04179373383522,-0.044948071241379],[0.067241407930851,-0.048695173114538,-0.005746791139245]],[[-0.025313599035144,0.071813181042671,-0.00054456887301058],[-0.0095534222200513,-0.03204532712698,-0.0015185233205557],[-0.061110399663448,0.021552339196205,0.02482452057302]],[[-0.051785424351692,0.073811255395412,0.035847365856171],[-0.0045283059589565,-0.031216811388731,-0.070077210664749],[0.083942554891109,-0.024717917665839,-0.032674264162779]],[[-0.063236549496651,0.027354445308447,0.072039701044559],[0.031923856586218,0.029208639636636,0.002819120651111],[-0.034269582480192,-0.036219216883183,-0.099004626274109]],[[0.036194305866957,0.019407670944929,0.026923581957817],[-0.042836517095566,0.044436473399401,-0.082844324409962],[-0.050832364708185,0.028354300186038,0.045472532510757]],[[0.049305982887745,-0.018012195825577,-0.034861139953136],[-0.037769597023726,-0.036350667476654,0.062842905521393],[-0.001040022005327,0.006144670303911,0.053019359707832]],[[-0.061460111290216,0.014255584217608,0.046561699360609],[0.035885877907276,0.0558409281075,-0.028338434174657],[-0.031948808580637,0.027402864769101,-0.014750554226339]],[[0.001351535320282,-0.073643878102303,-0.038474198430777],[-0.031403705477715,-0.032278064638376,-0.038950432091951],[-0.018536044284701,-0.062537677586079,-0.0021977224387228]],[[0.034226957708597,-0.0095055997371674,0.0013511035358533],[0.02005172893405,-0.01059961412102,0.039194606244564],[-0.044236678630114,-0.037067756056786,0.029736939817667]],[[0.019446555525064,0.02158884704113,0.024809237569571],[-0.00977579690516,-0.0005055054789409,0.031894534826279],[-0.051712278276682,-0.082784451544285,-0.021506745368242]],[[-0.051108658313751,0.076442204415798,0.044398467987776],[-0.043628826737404,-0.0017023716354743,0.0046895146369934],[-0.0091406181454659,0.033188853412867,-0.016896044835448]],[[0.051188565790653,0.04409846663475,0.050232954323292],[-0.019013337790966,-0.040524747222662,-0.0089763794094324],[-0.049166083335876,0.012714421376586,-0.013667101971805]],[[0.048526346683502,-0.021076695993543,0.028158264234662],[0.023202372714877,0.033266738057137,0.0024970921222121],[-0.047391634434462,0.0063099055550992,0.048782587051392]],[[-0.015197075903416,-0.0076089794747531,0.019737830385566],[-0.049729194492102,-0.006496743299067,-0.072000935673714],[0.041583888232708,-0.0012350138276815,0.00068008009111509]],[[-0.0566694624722,-0.021163854748011,0.020361987873912],[-0.008668003603816,-0.037394519895315,0.0079576233401895],[0.022400300949812,-0.039063449949026,-0.041836049407721]],[[0.039218213409185,0.028999201953411,0.0011687765363604],[-0.01704335026443,-0.04851546511054,0.0075884740799665],[-0.024403549730778,0.1021973118186,0.030417585745454]],[[-0.013817872852087,0.0011542077409104,-0.056519664824009],[0.019159097224474,-0.084499292075634,-0.026077251881361],[-0.0060860272496939,0.06902377307415,0.058151941746473]],[[-0.03956950083375,-0.030766893178225,0.0012791024055332],[-0.021700387820601,0.057338774204254,-0.048175133764744],[-0.050992354750633,0.046674154698849,-0.004833581391722]],[[-0.084971539676189,0.046940036118031,0.0014170956565067],[0.025040155276656,0.02310573682189,-0.0065665054135025],[-0.056533511728048,-0.032413754612207,-0.053807303309441]],[[-0.0097083831205964,0.051403921097517,-0.14924010634422],[-0.081809096038342,-0.030768131837249,0.017071288079023],[0.021456092596054,0.0026637883856893,-0.027753168717027]],[[-0.013287934474647,0.021572628989816,0.04031240940094],[-0.020413227379322,0.056268323212862,-0.093051701784134],[0.0775056630373,-0.030223906040192,-0.017186243087053]],[[-0.05990557000041,-0.058703493326902,0.0250483173877],[0.013391975313425,-0.010964194312692,0.059614934027195],[-0.0078484546393156,-0.083503119647503,0.043048940598965]],[[-0.034212525933981,0.03002992272377,-0.037090037018061],[-0.040288787335157,-0.011825385503471,0.009540282189846],[-0.045405235141516,0.0050742607563734,-0.0264684073627]],[[-0.08722723275423,0.018028618767858,0.073795549571514],[-0.064223006367683,-0.02694171667099,0.0010366147616878],[0.011841036379337,-0.007980146445334,0.0072007398121059]],[[0.033088095486164,0.052218124270439,-0.08018808811903],[-0.00076681195059791,-0.039542283862829,-0.076985917985439],[0.029351914301515,-0.1033693626523,-0.043413430452347]],[[-0.026169696822762,-0.047413989901543,-0.0079535702243447],[0.019769290462136,0.021015560254455,7.1963637310546e-05],[0.048860475420952,-0.022868283092976,-0.0064651872962713]],[[-0.0771788880229,0.057567249983549,0.021659258753061],[-0.020974010229111,-0.019166376441717,-0.066592633724213],[-0.069479085505009,0.037598945200443,0.072940371930599]],[[0.056056540459394,-0.037769541144371,-0.046826016157866],[0.018445629626513,-0.013779453001916,-0.038453351706266],[-0.064273059368134,-0.026697766035795,-0.029533296823502]],[[0.10029897093773,0.11143188178539,0.070319421589375],[0.0305842962116,0.050373878329992,0.016423849388957],[0.022439483553171,0.028586283326149,0.0163654666394]],[[-0.038192935287952,-0.030244389548898,0.10197058320045],[0.032724972814322,-0.089211940765381,0.028372768312693],[0.018438160419464,-0.072288572788239,-0.043297294527292]],[[-0.032107539474964,-0.0026379320770502,-0.030515983700752],[-0.020493885502219,-0.053248308598995,0.050784796476364],[-0.033488258719444,0.017996391281486,-0.05349513143301]],[[0.0023652478121221,0.011030226014555,-0.013335206545889],[0.0041047213599086,0.043590907007456,-0.024852640926838],[0.0073842173442245,0.046883147209883,0.0087640937417746]],[[0.02125015296042,-0.027277175337076,0.0040871808305383],[-0.04688948392868,0.020357370376587,-0.065129920840263],[-0.010716687887907,0.021172285079956,-0.065613344311714]],[[0.0014444696716964,0.031823486089706,-0.034666266292334],[-0.038983713835478,0.0093568991869688,-0.063362076878548],[0.069417588412762,0.087369456887245,-0.017607433721423]],[[0.035664886236191,-0.0070271999575198,-0.011127395555377],[0.02749933861196,-0.011786674149334,-0.0081840679049492],[0.036628130823374,0.022575845941901,0.0035997400991619]],[[0.022944590076804,0.037840243428946,-0.088365539908409],[0.0074553131125867,0.015696261078119,0.0054034208878875],[-0.080213643610477,0.050058592110872,-0.021695252507925]],[[0.015274339355528,0.050055213272572,-0.027337957173586],[-0.045195702463388,-0.0094753624871373,-0.05729453265667],[-0.012756554409862,0.021207924932241,0.063120797276497]],[[0.07468780875206,-0.016656773164868,0.0014141259016469],[0.0029202701989561,-0.0053495923057199,-0.010786752216518],[-0.013101689517498,0.027158295735717,0.0017230048542842]],[[0.025227852165699,-0.024908976629376,0.021291913464665],[0.053275641053915,-0.02775813639164,-0.0084765665233135],[-0.028696497902274,0.065676249563694,0.023023121058941]]],[[[-0.094816699624062,-0.078171148896217,0.035888597369194],[-0.011950066313148,-0.0024946038611233,0.097933299839497],[-0.012943588197231,0.033374693244696,-0.022900002077222]],[[-0.018535373732448,-0.0067808632738888,-0.01549051143229],[-0.036778498440981,-0.050216171890497,-0.051690191030502],[0.0063938479870558,-0.0090086879208684,-0.013222256675363]],[[-0.030641797930002,-0.078688926994801,0.0036239398177713],[-0.079293265938759,-0.072359509766102,0.0067869173362851],[0.023127699270844,-0.053197681903839,0.045664604753256]],[[0.003030224936083,0.0062143700197339,0.015200208872557],[-0.069723702967167,-0.039635490626097,0.054306879639626],[0.029636096209288,0.010944278910756,0.075678817927837]],[[0.0057865199632943,-0.054149709641933,-0.046962074935436],[-0.053820587694645,-0.06965035200119,-0.02428325638175],[0.016757508739829,-0.10575667023659,-0.0063130822964013]],[[0.016414415091276,-0.059524692595005,0.048297438770533],[0.025469418615103,-0.044892996549606,-0.034371469169855],[-0.070998266339302,0.1314260661602,0.068687453866005]],[[-0.010118038393557,-0.012561983428895,0.010976009070873],[-0.041406840085983,-0.025867654010653,0.048444524407387],[-0.073129333555698,0.0089559732005,0.02901129424572]],[[-0.0014485202264041,0.0067618764005601,-0.013632182963192],[0.064357429742813,0.030260320752859,0.0026413812302053],[0.023218749091029,0.081155583262444,0.049526568502188]],[[-0.0048321932554245,0.0046185981482267,0.020601650699973],[0.011253396049142,-0.0020481385290623,-0.012971920892596],[0.012835936620831,0.066751748323441,-0.057380393147469]],[[0.036554001271725,-0.0003278428921476,-0.063757114112377],[-0.056669484823942,0.0087387571111321,0.0078263059258461],[0.0708092674613,-0.042294349521399,-0.015085890889168]],[[-0.038620874285698,0.066111713647842,0.076673313975334],[-0.0899842903018,-0.0340441390872,0.0033438017126173],[0.029781753197312,0.090615980327129,0.010944837704301]],[[-0.1260479092598,0.082061849534512,0.012519693933427],[0.011564626358449,-0.0063119707629085,-0.023044221103191],[0.055375013500452,0.081052526831627,0.026278851553798]],[[-0.039425522089005,0.016369896009564,-0.0048388885334134],[0.0013559513026848,-0.0022649252787232,-0.011374244466424],[-0.086275301873684,-0.075318604707718,0.034625388681889]],[[0.068833827972412,0.091642573475838,0.017916878685355],[0.058595508337021,0.0050687566399574,0.032204929739237],[0.0068675843067467,-0.0092887589707971,-0.075118198990822]],[[0.0033140731975436,-0.032683964818716,0.06137590110302],[0.0093365730717778,0.020494369789958,-0.059294495731592],[-0.027269104495645,-0.078475780785084,0.044063370674849]],[[0.056108720600605,-0.068280220031738,-0.018019082024693],[0.032406877726316,-0.098819613456726,-0.029668631032109],[-0.0021675466559827,-0.041591569781303,0.029152212664485]],[[-0.029043657705188,-0.044665291905403,-0.027182774618268],[-0.00683205248788,0.0017738005844876,0.021623810753226],[-0.040097311139107,0.041267182677984,-0.055655721575022]],[[-0.0037787845358253,0.003291854634881,-0.03568721935153],[-0.028854766860604,0.030745409429073,0.0018950462108478],[-0.0079173063859344,0.058375250548124,-0.0557716563344]],[[-0.050482772290707,0.029149308800697,-0.049047324806452],[0.049153216183186,-0.009911211207509,-0.0018164128996432],[-0.052309136837721,0.017814861610532,0.04893521592021]],[[0.02760536596179,0.011795871891081,-0.0068052955903113],[-0.030562000349164,-0.005997852422297,-0.011877258308232],[-0.047437723726034,-0.026323087513447,-0.072486765682697]],[[0.050196085125208,-0.052975133061409,0.027725430205464],[-0.037825223058462,-0.074696034193039,-0.068227864801884],[-0.010993522591889,0.044391021132469,-0.018664345145226]],[[-0.082603722810745,0.02629741281271,-0.0033977306447923],[-0.085117414593697,-0.042374230921268,0.050324853509665],[-0.025379240512848,-0.0019722334109247,0.01847480237484]],[[-0.0014964686706662,-0.030757483094931,0.036395218223333],[-0.0095486640930176,0.029044786468148,0.01141332089901],[0.0015345752472058,-0.047142863273621,0.0054697804152966]],[[0.0014832277083769,0.038217697292566,-0.00056844652863219],[0.070051968097687,0.0064520691521466,0.0019807401113212],[-0.055531814694405,0.039394725114107,-0.0054861870594323]],[[-0.073206722736359,0.079573675990105,0.03085046634078],[-0.051580537110567,0.057707447558641,-0.0058098528534174],[-0.080353535711765,0.0037101246416569,0.034111358225346]],[[0.027978058904409,-0.034046649932861,-0.020873077213764],[0.01307750493288,0.041877612471581,0.0076511274091899],[0.0076453322544694,0.036682397127151,0.04753802344203]],[[-0.11865898221731,0.027524439617991,-0.020656980574131],[-0.0463049672544,-0.027406807988882,-0.017326394096017],[0.026622429490089,0.029528863728046,0.045074097812176]],[[-0.077560588717461,0.023039454594254,0.10183089226484],[-0.0075758709572256,-0.054186876863241,0.044293515384197],[-0.044652707874775,0.030543057247996,-0.0013941691722721]],[[-0.050705768167973,-0.088918007910252,-0.044905506074429],[-0.01037080027163,0.03089652210474,-0.053904566913843],[0.033347498625517,0.027422688901424,0.022376300767064]],[[-0.0025980256032199,-0.088767349720001,-0.03048294596374],[0.0031911924015731,-0.058742042630911,0.073499888181686],[-0.044039763510227,-0.025438845157623,0.03308942168951]],[[-0.0093648806214333,0.053464945405722,0.011114968918264],[0.023887017741799,-0.015135608613491,0.0064408034086227],[0.021697770804167,0.0071178134530783,0.052634604275227]],[[0.025392131879926,-0.053231485188007,-0.015990050509572],[0.0029384500812739,-0.0059024998918176,-0.03944381326437],[-0.029753120616078,-0.044057350605726,-0.041832778602839]],[[0.041332870721817,-0.0013959507923573,0.038283210247755],[0.025540176779032,0.045127265155315,0.064859420061111],[-0.030477294698358,-0.035745084285736,0.029707727953792]],[[0.009900476783514,-0.080106414854527,0.022951263934374],[0.005751259624958,-0.01696752011776,-0.061675399541855],[0.00707085756585,0.058798525482416,0.0053049270063639]],[[0.029403569176793,0.065391682088375,0.038997650146484],[0.051947396248579,-0.0030600763857365,-0.0082568293437362],[-0.028350107371807,-0.00061958294827491,-0.0314638055861]],[[-0.02500513382256,0.053555235266685,-0.042053081095219],[-0.025547474622726,-0.0085506457835436,0.0038526975549757],[0.039401449263096,-0.047602444887161,0.010350681841373]],[[-0.0064533306285739,0.039646845310926,0.0065484056249261],[0.036574184894562,-0.029523696750402,0.026322713121772],[0.022129623219371,0.019885502755642,0.014823326840997]],[[-0.011182393878698,0.05483266711235,-0.015974599868059],[0.021722536534071,-0.035153262317181,-0.047209180891514],[0.039454933255911,-0.047968272119761,0.0023890538141131]],[[0.021227434277534,0.03401530906558,0.015531436540186],[-0.10334447771311,0.0048563308082521,0.014917001128197],[-0.040704466402531,-0.036985084414482,-0.034586578607559]],[[-0.0065644555725157,0.0045820320956409,-0.020374342799187],[-0.036202482879162,-0.081434264779091,-0.025147683918476],[-0.052222765982151,0.002365130931139,-0.035689808428288]],[[-0.050182595849037,0.033096980303526,-0.10262934863567],[0.025043988600373,0.040237411856651,0.038829028606415],[0.084848023951054,0.0056698019616306,-0.044780015945435]],[[0.028489494696259,0.011065875180066,-0.020618682727218],[-0.070203103125095,-0.012443081475794,-0.059112299233675],[-0.12845613062382,0.0050902855582535,-0.13717821240425]],[[0.0059357834979892,0.052185967564583,0.0043876268900931],[0.014614876359701,0.03237783908844,-0.018590651452541],[-0.088373281061649,-0.012104703113437,0.00045942430733703]],[[0.011566597037017,-0.051643595099449,-0.026874477043748],[0.026776157319546,0.06597001105547,0.077046126127243],[0.0034664557315409,0.10482005029917,0.12377588450909]],[[0.014248807914555,-0.033922649919987,0.021111492067575],[0.015558715909719,-0.021353296935558,0.010296649299562],[-0.017316970974207,-0.014855461195111,0.015354842878878]],[[0.031031362712383,0.058997385203838,0.06428100913763],[0.014948694035411,-0.024591684341431,-0.033279094845057],[0.0080391019582748,0.03206006065011,-0.0023694105912]],[[0.035054542124271,-0.020227519795299,0.036418743431568],[0.021608306095004,0.023299917578697,-0.012965937145054],[-0.013490853831172,-0.095539897680283,-0.051712404936552]],[[-0.021217625588179,-0.10352526605129,-0.07112643122673],[-0.019489996135235,0.011238523758948,-0.04592177271843],[0.028052788227797,0.0019022328779101,-0.013017642311752]],[[0.0013656532391906,-0.069638833403587,0.0036866317968816],[-0.02247054874897,-0.004646398127079,-0.0097814165055752],[0.0053162458352745,0.0037712848279625,0.060192454606295]],[[0.0064783883281052,0.017275748774409,-0.034067291766405],[0.062734112143517,0.056520815938711,0.00096098863286898],[-0.0024970371741802,0.06707426160574,-0.053225975483656]],[[-0.013276454992592,-0.033886380493641,0.0048984363675117],[0.035614438354969,0.014432543888688,0.0090251434594393],[-0.0055298311635852,0.085303016006947,0.0010213993955404]],[[0.02549627609551,-0.022159637883306,-0.025129791349173],[0.011637818999588,-0.043538477271795,-0.086385659873486],[-0.0032245528418571,-0.033227354288101,-0.0056245098821819]],[[0.0038316666614264,-0.0029750855173916,-0.088430784642696],[-0.023499809205532,9.7133350209333e-05,-0.083694726228714],[0.018493711948395,-0.01957687176764,-0.023159738630056]],[[0.063920632004738,0.088420450687408,0.029007732868195],[0.080177396535873,0.04291570186615,0.011327631771564],[-0.0052775638177991,0.058454915881157,0.0024758349172771]],[[-0.025755545124412,0.041043717414141,0.07193785905838],[-0.19925989210606,-0.0016005205688998,-0.0066287736408412],[0.07498562335968,0.080266162753105,0.089186653494835]],[[-0.0035811900161207,0.0057760518975556,-0.0046560387127101],[-0.048482585698366,0.046165220439434,-0.0072601409628987],[-0.0050960583612323,-0.06193432956934,0.018274266272783]],[[-0.0023383146617562,-0.022758843377233,0.002082742517814],[-0.051053263247013,0.044551841914654,0.084787085652351],[-0.0188495721668,0.077949434518814,-0.043300304561853]],[[-0.0036702931392938,-0.031817361712456,-0.050637472420931],[-0.014723710715771,-0.032553214579821,-0.009414853528142],[9.4280185294338e-05,0.0048799188807607,0.020462857559323]],[[-0.027399139478803,-0.0035825150553137,-0.11197935789824],[-0.0093144625425339,-0.051862224936485,0.055989135056734],[-0.058200247585773,-0.053059488534927,0.055024519562721]],[[0.013717081397772,-0.0081670517101884,-0.070788182318211],[-0.032214444130659,0.072242237627506,-0.044348079711199],[-0.012499372474849,0.055907525122166,0.043227482587099]],[[0.0070230448618531,-0.025529235601425,-0.021563140675426],[0.008064997382462,-0.00066218158463016,0.043292071670294],[0.04864289239049,0.013794576749206,0.035265386104584]],[[-0.0049340631812811,-0.011599211022258,-0.01001656241715],[0.016492195427418,0.010465082712471,0.025328617542982],[-0.025699384510517,-0.034866381436586,0.026251183822751]],[[-0.03420901671052,0.0054139820858836,0.00015252127195708],[-0.033083848655224,-0.044761035591364,0.027540411800146],[0.035600956529379,0.079438641667366,0.080825038254261]],[[-0.053179316222668,-0.057887729257345,-0.030519993975759],[0.044750440865755,0.0033704193774611,0.00250822189264],[0.018890701234341,0.05068938061595,0.066962443292141]]],[[[-0.054341826587915,0.06932532787323,0.035749550908804],[0.042524669319391,0.073332525789738,0.091755874454975],[-0.024210467934608,0.015048428438604,-0.17987105250359]],[[-0.00059244356816635,-0.009285076521337,-0.0011980358976871],[0.0072601716965437,-0.0056775887496769,0.011870268732309],[-0.0016312074149027,-0.038351990282536,0.0045159044675529]],[[-0.10446416586637,-0.017990110442042,-0.039481118321419],[-0.02361960709095,-0.05813866853714,-0.012428135611117],[-0.021491922438145,0.030602168291807,0.058385089039803]],[[0.067904315888882,0.10111892223358,-0.013036101125181],[-0.0086853904649615,-0.024874657392502,0.021505611017346],[-0.061591576784849,0.019927220419049,0.11295703053474]],[[-0.014692852273583,0.0077630900777876,0.022693121805787],[0.021705746650696,-0.016663104295731,0.027091521769762],[0.037014249712229,-0.049886170774698,0.037257172167301]],[[-0.059256825596094,-0.099795378744602,0.030233154073358],[-0.097914636135101,-0.026658240705729,0.082924127578735],[-0.019381197169423,0.1648196130991,0.12815959751606]],[[-0.033374343067408,-0.0051108240149915,0.0047917794436216],[-0.020661992952228,0.029025480151176,-0.022090077400208],[-0.014008811675012,-0.013067715801299,-0.018642431125045]],[[-0.10892426222563,-0.014107274822891,0.06389793753624],[0.014706198126078,-0.017718276008964,0.12486504763365],[0.010808547027409,0.057452250272036,0.023666912689805]],[[0.012521316297352,0.064913742244244,0.025212846696377],[-0.0053753843531013,0.020020065829158,-0.0090349828824401],[0.038526933640242,-0.046708337962627,-0.00018648829427548]],[[-0.021231081336737,0.022611098363996,0.024619223549962],[0.041892647743225,-0.021266583353281,0.005962654016912],[0.025700816884637,-0.052577160298824,-0.023965839296579]],[[0.012666399590671,0.07295385748148,-0.054355751723051],[-0.040471237152815,-0.055780980736017,0.0050208107568324],[0.044538915157318,-0.03196432441473,0.036095526069403]],[[0.0095716686919332,-0.021004525944591,0.019227670505643],[-0.046661324799061,-0.05421582236886,0.01722346432507],[0.0022030507680029,0.028740212321281,-0.0075837313197553]],[[-0.042607769370079,-0.046743251383305,0.034643068909645],[0.0023698867298663,-0.047837246209383,-0.0088420463725924],[-0.033352967351675,-0.013431554660201,0.021817125380039]],[[0.031417846679688,0.047449104487896,0.040338478982449],[-0.010945688933134,0.0084205530583858,0.024367570877075],[0.0034517927560955,0.047646824270487,-0.049952354282141]],[[0.066728480160236,-0.14519907534122,-0.15526773035526],[0.075641013681889,0.030363038182259,3.6601442843676e-05],[0.043845217674971,-0.13038046658039,0.059671264141798]],[[-0.056366369128227,-0.011241712607443,0.034476827830076],[-0.022285049781203,-0.01991244032979,0.0047811409458518],[0.07812525331974,0.041251786053181,-0.0070649078115821]],[[0.006047697737813,-0.05902000144124,-0.055411577224731],[0.039118908345699,0.07572877407074,-0.051202353090048],[0.0037618321366608,0.0021385450381786,0.011503290385008]],[[-0.031717371195555,-0.041991166770458,-0.017608545720577],[-0.00076253339648247,0.084017165005207,-0.011370756663382],[0.029821690171957,-0.0058046574704349,-0.010903120972216]],[[0.003878764109686,-0.025822095572948,-0.019185507670045],[0.0062016476877034,-0.03894616663456,-0.059108048677444],[0.028069190680981,0.0097062857821584,0.060141690075397]],[[-0.059209600090981,-0.024350736290216,-0.090351901948452],[-0.025982135906816,0.0051680104807019,-0.00015094989794306],[-0.060429155826569,0.069509938359261,0.018546557053924]],[[-0.0084059378132224,-0.011037420481443,-0.050250880420208],[-0.013871335424483,0.0076729864813387,0.049653317779303],[-0.044607799500227,0.0025857016444206,-0.0035789939574897]],[[0.0397033020854,0.087131924927235,-0.028975496068597],[-0.067689798772335,0.022459927946329,-0.055925093591213],[-0.0067862407304347,-0.020071316510439,-0.11533915996552]],[[-0.033396136015654,0.025194611400366,-0.0085020586848259],[0.017750538885593,0.063863836228848,-0.013588551431894],[-0.010187233798206,-0.061218496412039,0.0047496329061687]],[[-0.090207196772099,0.053059350699186,-0.11646685004234],[-0.038191255182028,0.0055128247477114,-0.023276142776012],[-0.028109457343817,0.051150765269995,0.075607940554619]],[[-0.069992892444134,0.0066965064033866,0.048387803137302],[-0.061901677399874,-0.061143420636654,0.0012795174261555],[0.0034934023860842,-0.04035360366106,0.021657859906554]],[[0.033873699605465,-0.027724996209145,-0.037766054272652],[-0.061448626220226,0.0031514351721853,-0.0043400437571108],[-0.00059598864754662,-0.021419949829578,0.029385231435299]],[[0.029131321236491,-0.012863706797361,0.010862147435546],[-0.059988893568516,-0.019389046356082,-0.10044936835766],[-0.078016571700573,0.035690475255251,0.084129318594933]],[[-0.02515946701169,0.025481872260571,0.016808208078146],[0.026470946148038,0.027908157557249,0.017791593447328],[0.034872610121965,-0.052130952477455,0.00083548878319561]],[[-0.14896865189075,-0.058688081800938,-0.035917904227972],[-0.014975080266595,0.064279325306416,0.027990583330393],[-0.023815276101232,-0.025920253247023,0.060125723481178]],[[0.059505820274353,0.0037853331305087,0.040538094937801],[-0.093923829495907,-0.040310725569725,-0.011818828992546],[0.033418923616409,-0.050564717501402,0.02811149507761]],[[0.040825892239809,-0.040002975612879,0.026165535673499],[-0.045588161796331,0.03008721023798,-0.0042087691836059],[-0.0033731702715158,-0.016220455989242,-0.015193822793663]],[[0.061128012835979,-0.011848397552967,0.070217445492744],[0.053962457925081,0.033121734857559,-0.030412636697292],[-0.057084284722805,0.078171387314796,-0.10554190725088]],[[0.0025834718253464,-0.10274892300367,0.015621247701347],[0.021910754963756,-0.0053400010801852,-0.037327881902456],[-0.091172575950623,0.025353306904435,0.066114217042923]],[[-0.0071091656573117,-0.0083735063672066,-0.02021904475987],[-0.051305640488863,-0.038112040609121,0.029184823855758],[-0.026635006070137,0.03063745982945,0.036127019673586]],[[0.056431796401739,-0.021440243348479,0.023702181875706],[-0.061911962926388,-0.0050628585740924,0.031757112592459],[0.006661603692919,0.0035720793530345,-0.0750552713871]],[[-0.0071878931485116,-0.055223233997822,0.029546795412898],[-0.054107192903757,-0.062662199139595,0.012208295054734],[-0.024268606677651,0.053899396210909,-0.041812781244516]],[[-0.03862938284874,0.056018434464931,0.061486303806305],[-0.084577791392803,-0.026845801621675,0.035777058452368],[0.060284152626991,-0.010238031856716,0.014598242007196]],[[0.0091197770088911,0.036174703389406,-0.019476668909192],[-0.091825969517231,-0.026587406173348,0.061225716024637],[-0.0042056236416101,-0.02320190705359,0.011472248472273]],[[0.075621366500854,0.019019972532988,-0.044734533876181],[-0.018760973587632,-0.12048901617527,-0.0088888201862574],[0.0283975135535,0.068730771541595,-0.034182820469141]],[[0.016933135688305,-0.04067362844944,-0.0019120944198221],[0.010723951272666,-0.019530342891812,0.023250762373209],[-0.068153366446495,0.049459554255009,0.031938657164574]],[[0.014634318649769,-0.0017718629678711,-0.016904791817069],[-0.069826789200306,0.03103980794549,0.017018176615238],[0.079503461718559,-0.02122706361115,0.035027720034122]],[[-0.015427990816534,-0.063307851552963,-0.0067385216243565],[-0.0039193783886731,0.006927577778697,-0.044445883482695],[0.010108494199812,0.023900190368295,-0.012300559319556]],[[0.072053007781506,0.028806205838919,0.023458810523152],[0.0082287881523371,0.076349906623363,0.054576624184847],[0.00756327342242,-0.0044704838655889,0.0032373734284192]],[[-0.051052305847406,0.0020776796154678,-0.050252094864845],[-0.058423489332199,-0.0075987274758518,-0.033340524882078],[0.047752007842064,-0.0085452944040298,-0.015554426237941]],[[0.027818730100989,0.046134255826473,-0.15821874141693],[-0.086277864873409,0.059125281870365,0.06118793040514],[0.050851993262768,0.02911240234971,-0.012666654773057]],[[0.089574828743935,0.0077922395430505,-0.069237932562828],[-0.059941973537207,0.037032056599855,-0.027430731803179],[0.009613398462534,0.083720527589321,-0.034341707825661]],[[-0.055275719612837,-0.088245160877705,-0.017635310068727],[0.0012185629457235,0.11477836966515,0.085953995585442],[-0.040092956274748,-0.041379302740097,-0.0040921671316028]],[[-0.049058616161346,-0.030567606911063,0.00027373209013604],[0.043046984821558,0.024645840749145,0.047507796436548],[0.0013970632571727,-0.088012129068375,0.034575112164021]],[[0.026618909090757,-0.03039382211864,-0.055896792560816],[0.0013602930121124,-0.013650461100042,-0.023836703971028],[0.017721613869071,-0.009738746099174,-0.021955795586109]],[[-0.14659076929092,-0.04136984795332,-0.003527476452291],[0.042591698467731,0.082382343709469,-0.050272658467293],[0.007920453324914,0.029884874820709,0.057267047464848]],[[0.097826935350895,-0.035593140870333,0.024609053507447],[-0.044176116585732,-0.0013870508410037,-0.010695124045014],[0.046440582722425,0.063389278948307,-0.027040511369705]],[[-0.074884556233883,0.10809023678303,-0.089377976953983],[-0.037162937223911,-0.081487290561199,-0.023423431441188],[-0.059486318379641,0.01103220321238,-0.034405574202538]],[[-0.0079430118203163,-0.066403344273567,-0.047333225607872],[0.027740556746721,-0.0052011907100677,-0.058890264481306],[-0.00039434226346202,-0.064712271094322,-0.044395811855793]],[[0.10063499212265,0.090844810009003,0.02786979265511],[0.12851242721081,0.074651956558228,-0.030680634081364],[0.0016232228372246,-0.00051330908900127,0.0063666384667158]],[[0.051258269697428,0.0039420826360583,0.095840685069561],[0.0037814439274371,0.029074950143695,-0.037662230432034],[-0.041729960590601,-0.0060169924981892,0.048890631645918]],[[-0.014147346839309,-0.06357929110527,-0.097638994455338],[0.0088339159265161,0.006694070994854,-0.032537493854761],[-0.012485585175455,-0.030974242836237,-0.025638217106462]],[[0.030484082177281,-0.062292125076056,0.034572869539261],[-0.03460518270731,0.064248107373714,0.018671657890081],[0.026363575831056,0.094158828258514,0.00064697884954512]],[[0.0010741229634732,-0.049067415297031,-0.0081717306748033],[0.0014335298910737,-0.038653437048197,0.015655281022191],[-0.024636264890432,0.078698165714741,-0.017930347472429]],[[-0.024224439635873,0.0070074140094221,0.020986115559936],[-0.044443998485804,0.088204376399517,-0.010683138854802],[-0.044635448604822,-0.13804565370083,0.038084164261818]],[[-0.021906647831202,-0.014480235055089,-0.031462784856558],[0.066760823130608,-0.014227190054953,-0.031037118285894],[-0.0066727697849274,0.039192195981741,0.017510117962956]],[[-0.03255782648921,0.018730416893959,-0.0093940859660506],[0.026417963206768,-0.010838533751667,0.0004348709480837],[-0.038198452442884,0.0035083603579551,0.021799577400088]],[[-0.015370890498161,0.013897246681154,-0.04754227399826],[-0.065389655530453,-0.066985338926315,0.0097384285181761],[-0.051362741738558,-0.063611246645451,-0.072404660284519]],[[0.068751327693462,-0.016835262998939,-0.0058129401877522],[-0.074071608483791,0.00038541652611457,-0.0037150266580284],[-0.044533330947161,0.042684253305197,-0.012530723586679]],[[-0.0033787675201893,-0.026425806805491,0.029453787952662],[0.0034531615674496,0.15860025584698,0.088115081191063],[0.047425042837858,-0.010617006570101,0.038508184254169]]],[[[-0.016048911958933,0.091655269265175,0.11970230191946],[0.0590940117836,0.073043040931225,-0.04539792984724],[0.026970017701387,0.018620742484927,-0.078035727143288]],[[0.00032175230444409,-0.025167444720864,0.0032329435925931],[0.049919288605452,0.017902487888932,0.05020434781909],[-0.018432606011629,-0.02510535158217,-0.038281120359898]],[[-0.077360115945339,-0.10679536312819,0.016812292858958],[-0.0065282345749438,0.012156140059233,-0.085654243826866],[-0.012335687875748,0.030102396383882,-0.0057664383202791]],[[0.0077564413659275,0.063540898263454,-0.025468461215496],[0.036951623857021,0.0075480765663087,0.062768094241619],[0.013465462252498,0.086854383349419,0.0021324534900486]],[[-0.013615884818137,-0.00022344884928316,-0.0020619460847229],[0.069037079811096,-0.011125599965453,0.033690217882395],[-0.02172970212996,-0.045188192278147,-0.0097145503386855]],[[-0.2244535535574,-0.13861267268658,0.019241249188781],[-0.076895944774151,0.1051364466548,-0.018325934186578],[-0.036236681044102,0.0077304891310632,0.043913934379816]],[[-0.019853362813592,-0.0019332050578669,-0.017455803230405],[-0.047245483845472,0.023786464706063,-0.019024834036827],[-0.017501048743725,-0.056135125458241,0.012316985987127]],[[-0.0091006914153695,-0.014302017167211,0.0053704991005361],[0.072476476430893,0.055126514285803,0.024292077869177],[0.072349540889263,0.026106933131814,0.00037551647983491]],[[0.014639269560575,0.052384506911039,-0.0090668359771371],[-0.020516099408269,-0.073258280754089,-0.027221208438277],[0.010577999986708,-0.0053939116187394,-0.0022015662398189]],[[-0.051722303032875,0.019921667873859,-0.0055639022029936],[0.05940455943346,0.020838109776378,0.021041544154286],[-0.011588267050683,-0.039750322699547,-0.048992853611708]],[[0.07012465596199,-0.02263449318707,0.006191817112267],[-0.081829391419888,0.010025015100837,-0.029277954250574],[0.060416337102652,-0.0076667875982821,0.028302321210504]],[[-0.011258574202657,-0.013760445639491,0.0022128296550363],[0.0016773253446445,-0.066120646893978,0.043981172144413],[0.033683318644762,0.048157449811697,-0.031037973240018]],[[-0.039560753852129,0.025774540379643,-0.0021083359606564],[-0.04093462228775,0.0045594498515129,-0.05314515158534],[0.027876002714038,0.059165563434362,-0.036874324083328]],[[0.099015578627586,0.098919957876205,0.04229187220335],[0.015389300882816,0.010400764644146,-0.069796532392502],[-0.051131121814251,-0.014802861958742,-0.084301881492138]],[[-0.070476457476616,-0.013212679885328,0.024347979575396],[0.042751792818308,0.033171009272337,0.034758780151606],[-0.039088901132345,0.0018127136863768,0.015883941203356]],[[0.0058635962195694,0.03841682523489,0.0017480574315414],[-0.0022717157844454,0.0032642986625433,0.040496323257685],[0.010556886903942,0.072029791772366,-0.048995193094015]],[[0.010043578222394,-0.056990034878254,0.0097634308040142],[0.0091636162251234,0.0046914308331907,0.03862376511097],[0.0053691929206252,0.047661099582911,0.064082488417625]],[[-0.019075574353337,-0.051720019429922,-0.015899091959],[0.035981893539429,-0.013087468221784,0.0025628295261413],[0.019206134602427,-0.022310679778457,-0.044385422021151]],[[-0.050162937492132,-0.04649256169796,0.010780723765492],[-0.0065484116785228,-0.0026080177631229,0.03213994204998],[0.0017409421270713,0.028030555695295,0.041174158453941]],[[-0.01969532482326,0.027993442490697,0.037021979689598],[0.018457550555468,-0.0379953160882,-0.0010499607305974],[0.025230672210455,0.04266495257616,-0.0025754554662853]],[[0.066680170595646,0.0033486485481262,0.028796639293432],[-0.016168415546417,-0.010467354208231,-0.030784826725721],[0.05956507101655,-0.043821722269058,-0.086107850074768]],[[-0.042743004858494,-0.013807485811412,0.020841423422098],[0.017997426912189,0.0023548123426735,0.054477706551552],[-0.050813127309084,0.034633658826351,0.020873449742794]],[[0.045100420713425,0.011483076028526,-0.042490519583225],[-0.016315720975399,0.0016604347620159,0.017120234668255],[-0.01117052976042,-0.027186622843146,-0.012225771322846]],[[0.036163344979286,-0.013777586631477,-0.053125932812691],[-0.015775827690959,-0.018663721159101,0.027145486325026],[-0.014714209362864,0.040229335427284,0.038866508752108]],[[-0.078900650143623,0.028535034507513,-0.013741468079388],[-0.041144978255033,0.083378538489342,-0.022712308913469],[-0.041369769722223,-0.0067472979426384,0.049268797039986]],[[-0.017367335036397,0.031636595726013,-0.09252018481493],[-0.036318313330412,0.020452253520489,-0.0019252401543781],[-0.032683216035366,-0.027153342962265,-0.085353456437588]],[[0.038450621068478,-0.018845543265343,0.0037825331091881],[0.01728287525475,-0.031950306147337,-0.01841045729816],[-0.046593904495239,0.02233138307929,0.027538413181901]],[[0.11802905797958,0.060263406485319,0.028764704242349],[-0.047233138233423,0.059149660170078,0.025692751631141],[-0.016576716676354,-0.018064899370074,0.0010388874216005]],[[0.017010375857353,0.049136538058519,-0.056309472769499],[-0.053379710763693,0.028001902624965,-0.018531208857894],[-0.019299328327179,-0.001684533781372,-0.060860443860292]],[[-0.013660582713783,-0.024179389700294,-0.011867201887071],[-0.012195342220366,0.035531409084797,-0.032489094883204],[0.044952914118767,0.023341502994299,-0.045024123042822]],[[-0.034288816154003,-0.0022618346847594,0.041759815067053],[-0.020914394408464,-0.013116707094014,-0.033574782311916],[0.029349844902754,0.036064337939024,0.057236019521952]],[[0.023666597902775,0.032454997301102,0.037543527781963],[-0.032788269221783,4.4432061258703e-05,-0.028017630800605],[-0.081106394529343,-0.044661283493042,-0.061515871435404]],[[-0.00066167692421004,0.023720303550363,0.068497769534588],[-0.022476589307189,0.0046222656965256,0.054986238479614],[0.041935868561268,-0.01020893920213,0.046486347913742]],[[-0.018962096422911,-0.051225256174803,0.016889985650778],[-0.008421222679317,0.030058233067393,0.10076167434454],[0.030487801879644,-0.0086959814652801,0.017810283228755]],[[0.026495890691876,0.050539504736662,-0.01126638893038],[0.0075547811575234,-0.010698522441089,-0.0081603238359094],[0.019740669056773,-0.036861050873995,0.0035960015375167]],[[-0.1249144077301,-0.075327597558498,-0.010612382553518],[0.034617897123098,0.021845679730177,-0.023655885830522],[-0.00020111858611926,0.00071303767617792,0.027112875133753]],[[0.0068016154691577,-0.027319872751832,0.037715941667557],[0.027529006823897,0.054105214774609,0.0683463960886],[0.0053716418333352,0.028280979022384,0.01449847407639]],[[-0.0039827479049563,0.045084595680237,0.0014395439065993],[-0.052454244345427,0.049844309687614,-0.017808796837926],[-0.10224255919456,-0.074007369577885,0.036085542291403]],[[-0.043199684470892,-0.022836580872536,-0.039574813097715],[-0.00029850244754925,-0.036720026284456,-0.045469969511032],[-0.044250439852476,-0.0039601167663932,-0.059606097638607]],[[-0.011311849579215,-0.044298946857452,-0.03411602973938],[0.033303324133158,0.013199996203184,0.037247512489557],[0.010009647347033,-0.031517539173365,0.036204986274242]],[[-0.070296257734299,0.032391868531704,0.012706688605249],[-0.025799717754126,0.025081358850002,0.013839779421687],[0.0094778584316373,-0.048339623957872,-0.018661260604858]],[[-0.067811816930771,0.092288129031658,-0.012108690105379],[0.01205888018012,-0.024019811302423,-0.066327974200249],[-0.019096843898296,0.033873222768307,0.011515290476382]],[[0.028607895597816,0.035043001174927,0.044283978641033],[0.090400665998459,0.0062261745333672,0.0014878001529723],[0.035701867192984,0.01186675671488,-0.005784850101918]],[[-0.022384831681848,-0.026084054261446,0.0076809916645288],[0.011270251125097,0.01023524068296,0.006202997174114],[-0.035724651068449,-0.0076863528229296,0.061813749372959]],[[-0.018322594463825,0.038043543696404,-0.019077895209193],[-0.0041830125264823,0.036096137017012,0.026203002780676],[0.04067038744688,0.061969351023436,0.03920266777277]],[[0.042802087962627,0.02489285171032,0.010983382351696],[0.045708745718002,0.030460765585303,-0.019650446251035],[-0.021541593596339,-0.054082799702883,0.012571644969285]],[[-0.034556474536657,0.052467346191406,-0.0045068301260471],[0.053351942449808,0.034881457686424,0.0075966473668814],[-0.024640828371048,-0.0053541483357549,-0.039034593850374]],[[0.052851308137178,0.074056267738342,0.030177101492882],[-0.011446950957179,-0.095090791583061,0.020828535780311],[0.0020389657001942,0.05775161087513,0.00091198412701488]],[[-0.044045530259609,0.056586340069771,-0.051698070019484],[-0.042510211467743,0.0010209348984063,0.029291111975908],[-0.018651476129889,0.0026019169017673,-0.08039241284132]],[[0.027921531349421,0.060502383857965,0.029486088082194],[-0.045834127813578,-0.079657636582851,0.042176842689514],[0.03375531733036,-0.0030431139748544,0.02983664907515]],[[0.0099867274984717,-0.01412151940167,0.031280819326639],[-0.007335789501667,0.035542521625757,-0.020159989595413],[0.01853352598846,0.023687936365604,0.012940250337124]],[[0.026124101132154,-0.039645694196224,-0.015802565962076],[0.017994401976466,0.047002710402012,0.0069606220349669],[-0.047497101128101,0.029442325234413,-0.063763178884983]],[[-0.032311130315065,0.046798422932625,-0.04803941398859],[0.0035269157961011,-0.015527738258243,0.0064876275137067],[0.02903063595295,-0.059005375951529,-0.022202389314771]],[[0.10328478366137,0.067039147019386,-0.011084425263107],[0.10730731487274,-0.066242150962353,-0.014615574851632],[0.02880366332829,0.057266660034657,0.069612830877304]],[[0.018504513427615,-0.034099917858839,0.018252627924085],[-0.0099005214869976,0.0076588378287852,-0.026655208319426],[0.022745449095964,0.0018208647379652,0.051684387028217]],[[-0.043105870485306,-0.0011181286536157,-0.041449062526226],[-0.0091596627607942,0.0052470867522061,-0.026500733569264],[-0.016147335991263,-0.0075883422978222,-0.0078283566981554]],[[-0.035919606685638,-0.016799263656139,-0.023452227935195],[-0.019467668607831,0.0046955230645835,-0.0064855003729463],[0.039004255086184,0.076242759823799,0.0097824251279235]],[[-0.020860273391008,-0.054393995553255,-0.020600415766239],[0.0081486683338881,0.075303353369236,-0.027954187244177],[0.013562354259193,0.031061451882124,0.03884332254529]],[[-0.11450877040625,0.0067085810005665,0.0022975548636168],[0.05715798959136,0.027075421065092,0.053172085434198],[0.039926651865244,-0.043265338987112,-0.01394953392446]],[[0.0010821658652276,-0.0052172979339957,0.007520713377744],[0.026864413172007,-0.033570826053619,-0.044936928898096],[0.020013699308038,0.036617610603571,0.045084461569786]],[[-0.0019341750303283,0.059214022010565,-0.025880236178637],[-0.040346741676331,0.02996064350009,-0.043098300695419],[0.027546932920814,0.011752028018236,0.040029659867287]],[[-0.063284277915955,-0.078856334090233,-0.098295830190182],[-0.010860545560718,-0.042514219880104,-0.047887582331896],[-0.0044707097113132,-0.024069290608168,0.044266797602177]],[[0.039275608956814,0.034894056618214,0.049121897667646],[-0.081228293478489,-0.012301694601774,0.02304214052856],[-0.020339708775282,0.061338402330875,0.0066571673378348]],[[-0.028334654867649,-0.01799806393683,-0.022438509389758],[0.017261512577534,0.0080483984202147,0.066394276916981],[-0.0059444322250783,-0.037245728075504,-0.033136978745461]]],[[[-0.10534577816725,0.010088471695781,-0.0095290206372738],[-0.019533690065145,0.049114286899567,0.034318264573812],[-0.007388717494905,-0.040919452905655,0.05025439709425]],[[-0.010451576672494,0.062767989933491,-0.046829041093588],[-0.037317376583815,-0.091375648975372,-0.070898063480854],[-0.017013901844621,0.083912923932076,-0.04153023660183]],[[0.04974988847971,0.04389775544405,-0.048741083592176],[0.002871627220884,-0.03393429890275,0.038177561014891],[0.075628072023392,-0.051411360502243,-0.014879424124956]],[[-0.091204926371574,0.023549349978566,-0.054810505360365],[0.006451552733779,-0.03461929410696,-0.012332318350673],[0.10467050224543,-0.064813576638699,-0.037908665835857]],[[-0.058135531842709,-0.12891462445259,-0.031939465552568],[-0.011524769477546,0.12924429774284,0.022655399516225],[-0.025737594813108,-0.04469320550561,-0.027316704392433]],[[0.14105002582073,-0.00038653446245007,-0.0607247389853],[0.16980987787247,-0.20263010263443,0.10077600181103],[0.048859987407923,0.010078690946102,-0.12065245211124]],[[-0.0075877266936004,-0.067302130162716,0.041991606354713],[-0.088590815663338,0.012869021855295,-0.025140207260847],[-0.036380302160978,-0.062300402671099,-0.035814873874187]],[[0.030800672248006,0.022566419094801,-0.051292303949594],[0.026594201102853,0.027478134259582,-0.021204212680459],[0.05021632835269,0.013132439926267,-0.035920411348343]],[[-0.021093966439366,0.059683863073587,-0.008490932174027],[0.046940866857767,-0.040707569569349,-0.028917396441102],[-0.02713655307889,-0.046913485974073,-0.029245309531689]],[[-0.0097546018660069,-0.090324610471725,0.01264438778162],[-0.18469101190567,-0.047862082719803,-0.064914613962173],[0.082629837095737,-0.0057680755853653,-0.024711366742849]],[[0.010361932218075,0.049886327236891,-0.035473715513945],[-0.023114489391446,0.014635467901826,-0.0094763739034534],[-0.072994761168957,-0.02027702704072,0.010397847741842]],[[0.040384858846664,-0.010128970257938,-0.076106682419777],[0.011535785160959,-0.059742975980043,0.0082296095788479],[-0.019680842757225,-0.045936193317175,-0.012292568571866]],[[0.00099076889455318,-0.030604215338826,0.01184999756515],[-0.033905766904354,-0.021830962970853,-0.089635796844959],[0.037266254425049,0.03995481133461,0.015574843622744]],[[-0.00049911992391571,0.040913127362728,0.025316759943962],[0.01768446341157,-0.02254306524992,0.048688303679228],[-0.041760627180338,0.036300662904978,0.096008032560349]],[[0.0099768880754709,-0.06184933334589,-0.00087593006901443],[-0.022675348445773,-0.07017807662487,0.057778567075729],[0.024133877828717,0.013760431669652,-0.045681718736887]],[[-0.0054120821878314,-0.022623039782047,-0.023261517286301],[-0.012527173385024,-0.033491812646389,-0.060208909213543],[0.017760075628757,-0.041381113231182,0.03236972540617]],[[-0.018408427014947,-0.022849954664707,-0.13181959092617],[0.051390256732702,0.030965358018875,-0.090708807110786],[-0.041289441287518,-0.028399793431163,-0.10080862045288]],[[-0.037568852305412,-0.00091880344552919,-0.017125068232417],[0.050209037959576,0.019142378121614,0.036747667938471],[-0.018966192379594,-0.082647547125816,-0.042670700699091]],[[0.054641131311655,0.019305059686303,-0.039054065942764],[0.041593696922064,-0.029111742973328,0.0028004262130708],[-0.05335484072566,-0.046891801059246,-0.026468770578504]],[[0.040335115045309,-0.067867562174797,-0.0021760759409517],[-0.028437053784728,0.015108260326087,-0.040024600923061],[-0.011608234606683,-0.038117419928312,-0.049518205225468]],[[0.0021122347097844,-0.051536675542593,0.045866638422012],[0.0069003226235509,0.0060009639710188,0.018734566867352],[0.040996495634317,-0.008390873670578,0.053416512906551]],[[-0.034079927951097,-0.018188089132309,0.046231467276812],[-0.028359852731228,0.063959248363972,-0.027459131553769],[-0.0021534466650337,-0.044654622673988,0.0087934732437134]],[[0.029349969699979,0.029861046001315,-0.010282798670232],[0.020546888932586,-0.0048654414713383,-0.01596887037158],[-0.03386203572154,-0.027811758220196,0.0097451973706484]],[[-0.04671910777688,-0.031246243044734,0.077143132686615],[0.0093957670032978,-0.12046936154366,-0.001633221632801],[0.0084669068455696,0.091619655489922,-0.068750657141209]],[[0.026103364303708,-0.019826225936413,-0.029008354991674],[-0.0068230787292123,0.039560191333294,0.08316570520401],[-0.022144179791212,0.018314829096198,0.0089487954974174]],[[-0.088778927922249,-0.014567084610462,-0.027844307944179],[0.083320885896683,-0.031087499111891,-0.057418029755354],[-0.028352247551084,-0.037160504609346,-0.044526148587465]],[[-0.025305274873972,-0.014861701056361,-0.042219094932079],[0.073340632021427,0.013445015065372,0.038351982831955],[-0.023820960894227,-0.076381847262383,-0.073975183069706]],[[0.083696588873863,0.0505694411695,0.002834168728441],[0.05780628696084,-0.045646846294403,-0.035037502646446],[0.026153862476349,0.021908147260547,-0.0070654968731105]],[[-0.043266784399748,0.060913406312466,0.068331949412823],[0.057555984705687,0.062040068209171,-0.0047379299066961],[0.029656000435352,0.043321620672941,-0.0081745274364948]],[[-0.017225008457899,-0.051533788442612,0.082351572811604],[0.048903536051512,0.053066771477461,-0.011166493408382],[-0.016925111413002,-0.0057663079351187,0.013543005101383]],[[0.018706945702434,0.032133851200342,-0.028274221345782],[0.0097270552068949,-0.0052856612019241,0.033358700573444],[-0.050050176680088,0.012401513755322,0.060672346502542]],[[0.009612419642508,-0.04280985891819,0.0029603473376483],[-0.025064311921597,0.058995876461267,-0.042019937187433],[0.067323841154575,0.037493925541639,-0.04762327298522]],[[0.059501431882381,-0.12677980959415,-0.067296892404556],[0.059404421597719,-0.04075726121664,-0.0096305897459388],[0.020768953487277,0.16266705095768,-0.073324553668499]],[[-0.021896217018366,-0.022459700703621,0.030653389170766],[-0.10588544607162,0.010758663527668,0.056997615844011],[-0.0053992546163499,0.034859359264374,0.027349296957254]],[[-0.049625113606453,-0.0026101688854396,-0.039584636688232],[0.062817052006721,0.056756008416414,-0.008794185705483],[-0.058097630739212,0.012123767286539,-0.054652445018291]],[[-0.045310277491808,-0.073852479457855,-0.034721661359072],[0.035620484501123,-0.0042630019597709,0.05088784173131],[-0.12126000225544,-0.042782489210367,-0.058338597416878]],[[-0.029400074854493,-0.03306956961751,-0.023366222158074],[-0.03850369155407,-0.070849731564522,-0.070383660495281],[-0.024750176817179,0.060589198023081,0.0078572165220976]],[[0.022425416857004,-0.085671581327915,0.061556078493595],[0.049024872481823,0.044395476579666,0.014353382401168],[-0.083939932286739,-0.088182672858238,-0.15395033359528]],[[0.015390583314002,-0.01860280148685,-0.023735234513879],[-0.008244345895946,0.049231611192226,0.033536676317453],[-0.018363874405622,0.0022204206325114,-0.060251448303461]],[[0.022108525037766,0.013534808531404,-0.011097203940153],[0.093638755381107,0.0086946366354823,0.050319906324148],[-0.0035735247656703,-0.066592484712601,-0.013398826122284]],[[-0.029503833502531,0.0092528723180294,0.026215650141239],[-0.066802203655243,0.0054866797290742,-0.089979954063892],[-0.017711520195007,-0.035989362746477,-0.069958567619324]],[[0.0086381938308477,0.10491963475943,0.13570502400398],[0.051099546253681,-0.29200717806816,-0.13657142221928],[-0.0083353351801634,0.0053130928426981,0.019205192103982]],[[-0.040201086550951,0.040534138679504,0.06634259223938],[-0.055006835609674,0.0090200006961823,-0.00093943817773834],[0.082611545920372,-0.072619125247002,0.010672129690647]],[[-0.051150094717741,-0.030284693464637,-0.10268888622522],[-0.060518488287926,0.061419900506735,0.06923259049654],[-0.017879387363791,0.022063378244638,0.047882553189993]],[[0.047171093523502,-0.022221472114325,-0.031856592744589],[-0.068483926355839,0.080335162580013,0.06522075086832],[-0.14186555147171,-0.017972346395254,0.01927574723959]],[[0.030876692384481,0.016616920009255,-0.032679673284292],[-0.0046292366459966,0.029885644093156,-0.0019895290024579],[0.0084615983068943,-0.01586457900703,-0.022550607100129]],[[-0.028976257890463,-0.030921671539545,0.06160993874073],[0.040450133383274,-0.020833306014538,0.019822932779789],[-0.02237950079143,0.024975607171655,-0.0098202656954527]],[[0.036190565675497,0.063502267003059,0.010001505725086],[0.046339150518179,0.00099567836150527,-0.064589783549309],[0.030872678384185,0.0054638972505927,0.059076901525259]],[[-0.067557118833065,0.0024563462939113,0.06314854323864],[-0.025916561484337,0.023758143186569,-0.062436453998089],[0.023542266339064,0.04653612151742,0.01205600053072]],[[-0.043461978435516,0.062816560268402,-0.014413657598197],[0.0047112838365138,-0.045528572052717,0.055621527135372],[-0.026220383122563,0.024298595264554,-0.037686582654715]],[[-0.023892587050796,-0.052653595805168,-0.037193235009909],[0.023115880787373,0.02718161791563,0.02030985802412],[0.02458993345499,0.011374711059034,-0.0068259816616774]],[[0.00099105888511986,-0.0090568298473954,-0.061186201870441],[0.016334265470505,-0.021691102534533,-0.095849134027958],[0.020460821688175,0.087232373654842,0.064956367015839]],[[-0.070447050035,0.016354324296117,-0.078506872057915],[-0.083074375987053,-0.020226892083883,0.043143596500158],[-0.13927410542965,-0.021894421428442,-0.10613045096397]],[[0.079236567020416,0.0573027767241,-0.0078929914161563],[0.051562454551458,-0.023532290011644,0.10348343104124],[0.046623021364212,0.062462832778692,0.033258844166994]],[[-0.056930493563414,0.030709821730852,0.0088364109396935],[0.0080195479094982,0.074132777750492,0.026080012321472],[-0.049648895859718,-0.00012498618161771,-0.021445697173476]],[[0.042691100388765,-0.022882541641593,-0.0030318973585963],[0.02310997620225,-0.13990157842636,-0.048280578106642],[-0.021456100046635,0.070298932492733,-0.055343233048916]],[[-0.0073742554523051,0.044061023741961,0.012288955971599],[0.022185206413269,-0.055238112807274,-0.039609860628843],[-0.022853761911392,-0.013132836669683,-0.061115212738514]],[[-0.016165686771274,-0.0078064645640552,-0.0054775308817625],[-0.021803822368383,0.098553508520126,0.011862742714584],[6.7815875809174e-05,0.029846873134375,-0.036169197410345]],[[0.014916703104973,0.074225097894669,-0.019508734345436],[-0.12154158204794,-0.021529205143452,0.039371285587549],[0.035291146486998,0.013950497843325,0.035454325377941]],[[-0.018064416944981,-0.009181572124362,-0.0072197201661766],[-0.030265588313341,0.024440901353955,-0.005626181140542],[0.044128626585007,0.033080503344536,0.023152083158493]],[[0.01807564869523,-0.028018528595567,-0.061391782015562],[0.017230957746506,0.096123717725277,0.056692212820053],[-0.067704454064369,-0.018126539885998,-0.055094122886658]],[[0.041081331670284,0.044174432754517,-0.010997839272022],[0.017079940065742,-0.015323848463595,0.0030014137737453],[-0.0034918754827231,0.0086507992818952,-0.025306845083833]],[[0.0010374528355896,0.019262669607997,-0.033923856914043],[-0.015098593197763,0.031132634729147,-0.0031752800568938],[-0.0081870118156075,-0.054251357913017,0.0048303953371942]],[[0.026698214933276,0.092344172298908,-0.057037889957428],[0.037953075021505,-0.05201455578208,0.038329869508743],[0.05462834239006,0.0017388254636899,-0.05933815613389]]],[[[-0.048172876238823,0.1600735783577,0.035604741424322],[0.13217142224312,0.0037397232372314,0.018831420689821],[-0.077893882989883,-0.1118475496769,-0.020564379170537]],[[-0.0046851360239089,-0.029065882787108,-0.0027394504286349],[-0.054084070026875,0.012142226099968,-0.044401828199625],[0.018802693113685,-0.01539209485054,-0.0080151194706559]],[[-0.046026617288589,-0.046018324792385,0.022699186578393],[-0.013038113713264,-0.10442056506872,-0.010804046876729],[0.0038107666186988,0.082693837583065,-0.038342285901308]],[[0.02669832855463,-0.053501389920712,-0.079429745674133],[0.021500030532479,-0.051559094339609,0.017492029815912],[-0.0092875901609659,-0.0092059690505266,-0.032591123133898]],[[0.0056556137278676,0.030401237308979,-0.074433155357838],[-0.048130415380001,0.036651644855738,-0.010555854067206],[-0.021789330989122,-0.050045646727085,0.0049406979233027]],[[-0.088337041437626,-0.017947601154447,-0.16233475506306],[-0.016716813668609,-0.013919781893492,-0.041436646133661],[0.032128941267729,0.074651949107647,0.070874482393265]],[[0.020657304674387,-0.0072053386829793,0.0020741722546518],[-0.091420121490955,-0.022724056616426,0.0018149387324229],[-0.055932525545359,-0.058039914816618,-0.00030263321241364]],[[-0.014183632098138,-0.10554078221321,0.025472264736891],[-0.0047316052950919,0.073908217251301,-0.0069754021242261],[0.017067087814212,0.022730436176062,-0.0032219444401562]],[[0.046482119709253,0.015435329638422,-0.035814378410578],[-0.021647753193974,-0.0014953013742343,0.02080244012177],[0.027101902291179,-0.054638642817736,0.090115047991276]],[[-0.029349185526371,0.045306630432606,0.039647832512856],[0.026065703481436,0.081967674195766,-0.068813621997833],[-0.12543785572052,-0.017330352216959,-0.15611279010773]],[[-0.085664667189121,0.033159386366606,-0.0090905046090484],[0.041725125163794,-0.0022126131225377,0.075712338089943],[0.03603770583868,0.066213935613632,0.065653882920742]],[[-0.0032928269356489,-0.01223118789494,-0.054333820939064],[0.016691591590643,-0.055158767849207,-0.026452787220478],[0.0058386991731822,0.034082539379597,0.0052432231605053]],[[0.013046947307885,-0.0062840529717505,-0.022494016215205],[-0.02294185012579,0.0029556662775576,0.067818000912666],[-0.032055128365755,0.021582195535302,0.055709652602673]],[[0.015602070838213,0.074255771934986,0.058250464498997],[0.0016159772640094,-0.026447180658579,0.061743699014187],[-0.080361299216747,0.00067510252119973,-0.0094323707744479]],[[0.069273129105568,-0.078470647335052,0.049954660236835],[0.0095996055752039,-0.075497075915337,-0.041643884032965],[-0.009662807919085,0.04535286873579,-0.05213850364089]],[[-0.016844151541591,-0.061001528054476,0.0543496273458],[-0.0044907792471349,-0.020608372986317,-0.029829699546099],[-0.016602367162704,0.012537568807602,-0.080656319856644]],[[0.023964632302523,0.053445633500814,0.07278898358345],[0.079757258296013,0.016501724720001,0.015726322308183],[-0.020279685035348,0.07179706543684,-0.0081503642722964]],[[-0.011687461286783,-0.0083068301901221,-0.10853120684624],[-0.0041086613200605,-0.0014941345434636,0.02150634676218],[0.013624149374664,0.016129497438669,0.04810719192028]],[[-0.011230735108256,0.071021653711796,0.020563596859574],[0.052297621965408,-0.10202108323574,-0.047875124961138],[-0.029141243547201,-0.0509167984128,-0.019748751074076]],[[0.00075644737808034,-0.0096795177087188,0.014988847076893],[0.030193386599422,-0.01016234792769,0.047192323952913],[-0.068417921662331,-0.00020679760200437,-0.026894373819232]],[[0.0033075765240937,-0.031552478671074,-0.034425921738148],[0.090954631567001,0.0018202686915174,-0.040011249482632],[-0.12388429790735,-0.10644789785147,0.052458085119724]],[[-0.029220532625914,0.012379658408463,0.013451428152621],[0.07772671431303,-0.13363812863827,-0.0061019766144454],[0.021274503320456,-0.079288974404335,0.013234896585345]],[[0.0095422454178333,0.0050255232490599,-0.0028977766633034],[0.010191998444498,-0.0041353232227266,0.023228120058775],[0.0021523188333958,0.019844269379973,-0.043258380144835]],[[-0.039812717586756,-0.080131784081459,-0.051814135164022],[-0.093528635799885,-0.0034000549931079,0.03233940154314],[0.040572565048933,0.028293883427978,0.057230345904827]],[[0.04513481259346,0.015732984989882,0.027714712545276],[0.086053363978863,-0.035856693983078,0.001238870434463],[0.011361097916961,0.03543059155345,-0.018153306096792]],[[0.033374547958374,-0.028358174487948,-0.16110099852085],[0.1060186997056,0.046977162361145,-0.017096448689699],[-0.037209738045931,-0.052232801914215,-0.022909829393029]],[[-0.064112111926079,-0.019592450931668,-0.036303736269474],[-0.014502935111523,-0.023033082485199,-0.014069804921746],[0.035444509238005,-0.059893801808357,-0.00067165127256885]],[[0.0012121461331844,0.061748616397381,0.017100999131799],[-0.018316941335797,-0.089563027024269,-0.088544294238091],[-0.10248639434576,-0.14238451421261,-0.036065842956305]],[[-0.073188446462154,-0.11707105487585,0.086620852351189],[-0.018073307350278,0.038538828492165,0.056136637926102],[0.038573335856199,0.017277514562011,-0.0085485009476542]],[[-0.015836538746953,0.010914099402726,0.05648997053504],[0.056449063122272,-0.0045715644955635,-0.088725492358208],[-0.030328361317515,-0.031860519200563,0.017586322501302]],[[0.074588596820831,0.05284570530057,-8.7854587036418e-06],[-0.051109164953232,0.02219689451158,-0.051988914608955],[0.030171222984791,-0.016111239790916,0.016855791211128]],[[-0.018400356173515,-0.023416699841619,-0.068971768021584],[-0.0099844327196479,-0.035139158368111,-0.054324340075254],[-0.030881840735674,-0.012359727174044,-0.078589841723442]],[[0.014609130099416,0.012981050647795,0.013241591863334],[0.037662647664547,0.050348799675703,-0.014110466465354],[-0.080422103404999,-0.010856019333005,0.0038469203282148]],[[-0.0049575474113226,-0.013906759209931,-0.076524749398232],[-0.043724846094847,0.056916404515505,-0.01458137575537],[-0.060683481395245,0.024454228579998,0.0054501048289239]],[[-0.026905668899417,-0.027118178084493,-0.0013168484438211],[0.021171171218157,0.040019735693932,0.059196129441261],[-0.080131374299526,0.033772762864828,-0.035036277025938]],[[-0.081432268023491,-0.13050670921803,-0.033422827720642],[-0.012688048183918,-0.063796706497669,0.0083154831081629],[-0.099963165819645,-0.0013169692829251,-0.048615250736475]],[[0.049488339573145,0.013022937811911,-0.038891095668077],[-0.0046699647791684,0.039135135710239,0.011064793914557],[0.012651504017413,0.062930464744568,-0.0018284659599885]],[[0.017782943323255,0.050684124231339,0.091796919703484],[0.054097130894661,-0.022593431174755,0.061096407473087],[-0.1273126155138,-0.057649672031403,-0.037585414946079]],[[-0.061552837491035,-0.020510587841272,-0.008655752055347],[-0.049096513539553,0.016920495778322,-0.031342897564173],[-0.024890586733818,-0.055025566369295,-0.047141704708338]],[[-0.013807185925543,0.012740900740027,-0.035684254020452],[0.042091283947229,0.017038702964783,0.012197893112898],[0.033878523856401,-0.0020839406643063,0.036785613745451]],[[-0.00057398102944717,-0.0085394456982613,0.0082416776567698],[0.0080237509682775,-0.012056349776685,-0.025188975036144],[0.04210165143013,0.0094908103346825,-0.038627859205008]],[[-0.029959606006742,0.054067231714725,-0.0014032333856449],[0.013027106411755,-0.006027405615896,-0.08215769380331],[-0.019404707476497,0.0021962926257402,0.0063142972066998]],[[0.049725137650967,-0.096884094178677,0.073326624929905],[-0.0088571477681398,-0.0093936724588275,0.0048461696133018],[-0.0045072413049638,-0.058667659759521,0.041767727583647]],[[-0.052698601037264,-0.0012534994166344,-0.030076667666435],[-0.025034457445145,0.024299213662744,0.11102484166622],[-0.035830903798342,-0.028562491759658,-0.028400572016835]],[[0.034717153757811,0.035638451576233,-0.14783065021038],[0.0067565157078207,0.11644949764013,0.030077388510108],[-0.10374168306589,0.068772040307522,0.063363090157509]],[[-0.005305661354214,0.05379731580615,-0.030776230618358],[0.0086324075236917,0.0097439475357533,0.012503352947533],[0.022686032578349,-0.042315158993006,-0.055003359913826]],[[-0.038159597665071,0.039279509335756,0.026778683066368],[0.067404799163342,0.031921938061714,-0.091388918459415],[-0.0096222599968314,-0.073261812329292,-0.029210709035397]],[[-0.02358727902174,-0.099083058536053,0.022192157804966],[-0.048102103173733,-0.041339363902807,0.02466288022697],[0.029777944087982,0.018427250906825,0.037671491503716]],[[-0.017587307840586,-0.065482392907143,-0.036188255995512],[-0.044473249465227,0.051231291145086,-0.029288062825799],[-0.020139034837484,0.042411386966705,-0.020409379154444]],[[-0.034632004797459,-0.045094978064299,-0.030330903828144],[-0.02023439668119,0.028294445946813,-0.031780548393726],[-0.092780850827694,-0.081826068460941,-0.078120581805706]],[[-0.030738595873117,0.00046765396837145,-0.014051254838705],[-0.015880882740021,-0.012732515111566,0.014763446524739],[0.0013568181311712,0.0042757415212691,0.016011631116271]],[[-0.079254321753979,-0.050925057381392,0.0013041469501331],[-0.040715947747231,0.048292178660631,0.044322598725557],[0.034876849502325,-0.0098271742463112,0.024052945896983]],[[-0.11076427996159,-0.0050960658118129,-0.0071462728083134],[0.04390562698245,0.072950884699821,-0.010158250108361],[-0.039277587085962,0.018232487142086,-0.0269331689924]],[[0.076328128576279,-0.012637588195503,0.09772701561451],[0.028725031763315,0.041436396539211,-0.054666180163622],[0.087381236255169,0.0088306283578277,0.067979894578457]],[[0.050268184393644,0.0752097889781,0.040983129292727],[-0.041566237807274,0.010367969982326,-0.048444528132677],[0.016409346833825,-0.027827605605125,-0.014087193645537]],[[-0.033209010958672,-0.019133497029543,-0.051816843450069],[-0.01610061340034,-0.045287858694792,0.036144685000181],[-0.0077949878759682,0.053409922868013,0.041623439639807]],[[-0.045627672225237,0.054022721946239,-0.034844402223825],[-0.002205757657066,0.011233383789659,-0.031201776117086],[-0.038777083158493,-0.0017040802631527,-0.093298003077507]],[[-0.016104120761156,-0.027098052203655,-0.002952906768769],[-0.032947678118944,0.038146156817675,-0.044810336083174],[-0.0021532783284783,-0.024030791595578,0.033722691237926]],[[0.039649371057749,-0.057984054088593,-0.048493824899197],[-0.018214087933302,0.08257994055748,-0.076596297323704],[-0.021625936031342,0.057957392185926,0.055503778159618]],[[0.0061859986744821,0.0004790943057742,0.02377662435174],[0.02450324781239,-0.036902200430632,-0.017718443647027],[-0.018158404156566,0.054217100143433,-0.0015690324362367]],[[0.019706320017576,-0.0083903009071946,-0.044282790273428],[-0.00042787718120962,0.043953824788332,0.038118436932564],[-0.034787595272064,0.0090633975341916,0.007142938207835]],[[-0.0070493686944246,0.0679921656847,0.037285581231117],[-0.038478031754494,-0.043068639934063,-0.037676189094782],[0.0083814477548003,0.05899989977479,-0.024235628545284]],[[-0.043061267584562,0.076575756072998,0.028175195679069],[-0.0065533118322492,0.028209626674652,0.022308798506856],[-0.024617133662105,-0.11074705421925,-0.038196045905352]],[[-0.053614262491465,0.021595738828182,0.022092426195741],[-0.022751446813345,-0.021931052207947,-0.019308529794216],[0.050495531409979,0.068026170134544,-0.045568499714136]]],[[[0.047706753015518,0.058959510177374,-0.066439874470234],[0.11700268834829,0.063209697604179,-0.029193930327892],[-0.066805526614189,0.067367941141129,0.055293798446655]],[[0.010359494015574,-0.14203083515167,-0.089803300797939],[0.040586769580841,0.041619189083576,-0.0052090622484684],[-0.048484779894352,-0.059252124279737,0.055844608694315]],[[0.040029682219028,-0.040035229176283,0.050172962248325],[-0.040492486208677,-0.055419225245714,0.019516367465258],[0.051022931933403,-0.0039158859290183,0.091364398598671]],[[-0.015033418312669,0.019754128530622,-0.10407041013241],[0.093507707118988,-0.0061283009126782,0.049328129738569],[-0.022015897557139,0.091594658792019,0.079501956701279]],[[0.023795682936907,0.00052344211144373,0.036164529621601],[0.015363562852144,-0.1190951615572,-0.00075128773460165],[-0.099184617400169,0.059099961072206,0.05952388048172]],[[-0.12224307656288,-0.019148446619511,0.056160110980272],[-0.2026481628418,-0.14233736693859,0.012454482726753],[0.15882007777691,0.07656504958868,0.035660780966282]],[[-0.11154568940401,0.024615611881018,-0.015763668343425],[0.029052244499326,-0.029118653386831,-0.078663215041161],[0.024786066263914,-0.027302572503686,0.017577657476068]],[[-0.10982722789049,-0.016618654131889,0.11403550952673],[0.011278836987913,-0.037265378981829,0.082930766046047],[0.10047592967749,0.035107973963022,0.04425110667944]],[[-0.013942137360573,-0.084035880863667,0.038182374089956],[-0.015781482681632,0.05001038312912,0.033285405486822],[-0.036526583135128,0.046184565871954,-0.044610910117626]],[[0.11196830123663,0.057702150195837,-0.12722806632519],[-0.059045124799013,-0.12098708003759,0.036228813230991],[-0.046147901564837,-0.0014692031545565,-0.0027958783321083]],[[0.073706224560738,-0.037971056997776,0.0040053832344711],[0.037745986133814,-0.04617902636528,-0.069933570921421],[0.063762560486794,0.046855390071869,0.058105431497097]],[[-0.079911060631275,0.08128073066473,0.051731042563915],[-0.052593413740396,0.012373957782984,0.10136860609055],[0.11066845804453,0.042838700115681,0.014425177127123]],[[-0.03606241568923,-0.0046172854490578,-0.016755159944296],[0.031267892569304,0.11211878806353,-0.051286295056343],[-0.0043920744210482,-0.14634001255035,0.021188212558627]],[[0.076321326196194,0.044326949864626,0.057084493339062],[0.053611915558577,0.095637410879135,0.063706204295158],[-0.039872214198112,0.08594024181366,-0.018450563773513]],[[0.061539523303509,-0.12487594038248,0.0096056824550033],[0.035341519862413,0.046216804534197,-0.038698278367519],[0.067273385822773,-0.049304015934467,0.074647687375546]],[[0.019981386139989,0.040794987231493,0.032500602304935],[0.0026950435712934,-0.13026283681393,0.047222316265106],[-0.017193332314491,0.001781695522368,0.01832271181047]],[[0.016844861209393,-0.12511000037193,0.081586189568043],[0.1141683831811,-0.012101379223168,-0.095530107617378],[0.0052380082197487,-0.066387847065926,0.049293864518404]],[[-0.14511178433895,-0.0032506179995835,-0.01482891663909],[-0.035455495119095,0.020498350262642,0.013924391940236],[0.063239991664886,0.059286955744028,0.045232474803925]],[[0.019187796860933,-0.093897752463818,0.03092985227704],[-0.0043410575017333,0.057894214987755,0.0027825403958559],[-0.034505806863308,0.0044150995090604,0.088871866464615]],[[-0.070494584739208,-0.012360364198685,-0.051162861287594],[-0.042762618511915,-0.12354924529791,0.0063494057394564],[-0.017545821145177,-0.012248815968633,0.0066019301302731]],[[0.040938809514046,-0.018654076382518,-0.048014353960752],[-0.056450445204973,0.050977796316147,0.0044071180745959],[-0.062706485390663,-0.030573409050703,-0.0070557091385126]],[[-0.043904971331358,-0.046138700097799,0.031517948955297],[-0.075215302407742,0.084305614233017,0.014700810424984],[-0.096207305788994,-0.057181693613529,-0.029065137729049]],[[-0.038433916866779,0.11173961311579,-0.05539171770215],[-0.022348195314407,0.045038122683764,-0.03301053866744],[0.042234692722559,-0.04771938174963,-0.0066297356970608]],[[0.011437440291047,-0.030119614675641,-0.021650778129697],[-0.024021230638027,-0.077531069517136,0.086569204926491],[-0.026727050542831,0.07178720831871,-0.0083865197375417]],[[0.038164932280779,-0.072474464774132,-0.012891148217022],[0.0051472904160619,-0.024124085903168,0.060119424015284],[-0.012707405723631,0.018435766920447,-0.024317070841789]],[[-0.018531078472733,-0.10225915163755,0.03244885802269],[-0.015141119249165,0.093913219869137,-0.023204389959574],[-0.079870380461216,-0.018736811354756,-0.015644451603293]],[[-0.094116881489754,0.0017742823110893,0.0073134414851665],[0.0050592329353094,-0.12518566846848,-0.087524652481079],[-0.022122640162706,-0.13997113704681,0.041057199239731]],[[-0.10997723788023,0.051797512918711,0.012773713096976],[-0.023852843791246,-0.076058730483055,0.024462573230267],[-0.07154980301857,-0.034101147204638,-0.036478605121374]],[[-0.038397245109081,-0.077225208282471,0.058317344635725],[-0.0011666988721117,-0.019173350185156,-0.011329101398587],[0.067289434373379,0.02084850333631,0.057670142501593]],[[0.037003021687269,-0.057157028466463,-0.026331011205912],[-0.057554669678211,-0.014765540137887,-0.017741333693266],[0.011689914390445,0.061151448637247,-0.029267879202962]],[[-0.035195931792259,-0.025310955941677,0.071760043501854],[-0.10043588280678,0.045854106545448,0.07658039778471],[-0.088575549423695,-0.031964235007763,-0.009509015828371]],[[0.021545898169279,-0.092414297163486,-0.050254642963409],[0.061237674206495,-0.042067475616932,-0.013290555216372],[-0.036073554307222,0.063756749033928,0.0019652512855828]],[[0.077835313975811,-0.23178726434708,-0.052313081920147],[-0.022687964141369,-0.086089074611664,0.047292668372393],[-0.01446879375726,0.016543416306376,-0.014353957958519]],[[0.097025386989117,-0.072391271591187,-0.00063225993653759],[-0.025277441367507,0.027815168723464,0.052159551531076],[-0.056522812694311,-0.028059558942914,-0.096992880105972]],[[-0.014753377996385,-0.029928777366877,-0.091184057295322],[0.054101753979921,-0.018510339781642,0.0082577550783753],[-0.013576100580394,-0.0028660537209362,0.030540753155947]],[[-0.012029320932925,-0.032909706234932,0.11411265283823],[-0.12233778089285,-0.013680114410818,0.033566515892744],[-0.045855205506086,-0.00515405414626,0.0016309634083882]],[[-0.033431854099035,-0.011890225112438,-0.087780192494392],[0.06232600659132,0.013616303913295,-0.012594883330166],[0.029355134814978,-0.087214685976505,-0.059376385062933]],[[-0.074325419962406,0.038820598274469,-0.0397291444242],[0.014678897336125,0.022553885355592,-0.023683642968535],[-0.03218986839056,-0.094463050365448,0.05828969180584]],[[-0.023810466751456,0.019195381551981,-0.082175046205521],[-0.021851856261492,-0.19172856211662,-0.0061553418636322],[0.016075123101473,0.058415502309799,-0.12667405605316]],[[0.033085059374571,-0.027923978865147,-0.06666050106287],[-0.024315221235156,-0.084985673427582,-0.0032595251686871],[-0.022827200591564,0.11147905886173,-0.046798519790173]],[[-0.0058988379314542,0.051002852618694,0.025385228917003],[0.013764987699687,-0.1318928450346,0.096431590616703],[-0.014098745770752,-0.01785104162991,-0.023071827366948]],[[0.013450670056045,-0.066701389849186,-0.072227366268635],[-0.033027905970812,-0.021408217027783,0.015660563483834],[-0.11672675609589,-0.015766452997923,0.0013340078294277]],[[-0.015625679865479,0.003047386649996,0.065310038626194],[-0.070079945027828,0.022253984585404,-0.050943128764629],[0.018524885177612,0.042139910161495,0.025729432702065]],[[0.027900399640203,-0.025337358936667,-0.059963658452034],[-0.047084931284189,-0.030589085072279,0.022569952532649],[-0.020763747394085,0.00051954877562821,-0.025852615013719]],[[-0.047773260623217,-0.070708997547626,-0.0078107132576406],[-7.3398005042691e-05,-0.063461601734161,-0.013087364844978],[-0.046348229050636,0.018841948360205,-0.0090631125494838]],[[0.0091638891026378,0.14444926381111,-0.062195301055908],[-0.06058868393302,-0.015806326642632,-0.041098400950432],[0.054419077932835,0.039574380964041,-0.00066289911046624]],[[0.11316701769829,-0.088223591446877,0.019146054983139],[-0.010017326101661,0.045095719397068,-0.030880302190781],[-0.0061946883797646,0.024336900562048,-0.032217927277088]],[[-0.02148967795074,0.043988071382046,-0.03368154913187],[0.026867277920246,0.13782860338688,0.10177585482597],[0.057280004024506,0.048297673463821,0.049893416464329]],[[0.0081940786913037,0.05273137614131,-0.054242331534624],[-0.079386107623577,-0.099754080176353,-0.030899981036782],[-0.019512578845024,0.016707237809896,0.077130071818829]],[[0.013702373020351,-0.050205785781145,0.053885977715254],[-0.10638898611069,0.081888392567635,-0.092595495283604],[0.017303932458162,-0.1075805798173,0.091893553733826]],[[0.029541671276093,-0.07340008020401,-0.039950229227543],[-0.073795780539513,0.031758788973093,0.044654686003923],[0.023758279159665,0.024654261767864,-0.050889398902655]],[[-0.055767066776752,0.12180108577013,0.090925641357899],[0.061249021440744,0.070326879620552,-0.025667862966657],[-0.050065316259861,-0.095377691090107,-0.082753449678421]],[[-0.080644689500332,0.061812613159418,-0.05737916380167],[-0.092379175126553,-0.02415337972343,-0.035073190927505],[0.026588674634695,-0.14812982082367,-0.036921914666891]],[[-0.014583066105843,0.12315559387207,0.010654305107892],[0.03587207570672,0.029863081872463,0.1549389064312],[-0.027481578290462,0.043588470667601,0.050404295325279]],[[-0.044779654592276,0.031549118459225,0.08672758936882],[0.055511202663183,-0.00092774693621323,-0.022505003958941],[-0.0061460109427571,-0.028389431536198,-0.0066915121860802]],[[0.053074575960636,-0.11621348559856,0.077636361122131],[0.012396953999996,-0.046686463057995,0.037745907902718],[-0.00010056975588668,-0.022945627570152,-0.0034589220304042]],[[-0.042525365948677,-0.029435211792588,-0.016567742452025],[0.067289046943188,0.016100851818919,0.0014624088071287],[-0.050124626606703,0.019027458503842,0.041283950209618]],[[-0.0049836845137179,-0.076643243432045,0.070292495191097],[-0.070123396813869,-0.093907654285431,0.058586969971657],[0.037294395267963,0.10198536515236,-0.086592942476273]],[[0.02209941111505,0.0084081031382084,-0.013765743933618],[-0.069297164678574,-0.020704530179501,0.0024224210064858],[0.10451009869576,-0.021184746176004,-0.023171490058303]],[[-0.027014568448067,-0.0022190054878592,0.032437141984701],[0.0063787330873311,-0.018316242843866,0.061143040657043],[0.022406984120607,-0.0081697329878807,0.0022997562773526]],[[-0.079441666603088,0.02031734213233,-0.0333062261343],[-0.0030287094414234,0.0086925635114312,0.061942551285028],[-0.04331461340189,0.055356122553349,0.026642069220543]],[[0.083493798971176,0.023808719590306,-0.059206508100033],[-0.026470242068172,-0.070067584514618,-0.02763413824141],[-0.058700934052467,-0.041572086513042,-0.12134206295013]],[[0.051196161657572,0.041978340595961,-0.02958245947957],[-0.061594076454639,-0.05112873390317,0.054051123559475],[-0.036505561321974,0.0080635603517294,0.033287681639194]],[[0.02081236615777,-0.036399316042662,0.14131067693233],[0.035869922488928,0.083426244556904,0.16808605194092],[0.0052982890047133,-0.007829574868083,-0.018210135400295]]],[[[-0.069797396659851,-0.019616767764091,-0.031613387167454],[-0.015955613926053,-0.051564514636993,0.034334383904934],[0.0036829789169133,0.045107662677765,0.087890841066837]],[[0.028164548799396,-0.023655600845814,-0.020400075241923],[0.024897491559386,-0.024393221363425,-0.0504000633955],[0.0026768539100885,0.031385790556669,0.009394814260304]],[[0.0056554060429335,-0.02582279779017,0.01955258846283],[-0.015577091835439,-0.013824820518494,-0.018113974481821],[0.0087915807962418,0.017819117754698,0.0049221506342292]],[[-0.032303918153048,0.026554150506854,-0.029475230723619],[-0.0058101452887058,-0.033095937222242,0.037845313549042],[0.016716362908483,0.043051145970821,-0.020996320992708]],[[-0.0073872520588338,0.009684999473393,0.013933897949755],[-0.04773472994566,0.0097628459334373,0.00013507284165826],[0.017803521826863,-0.029471781104803,0.022136926651001]],[[0.025116588920355,0.061963155865669,-0.077078178524971],[-0.0041005881503224,-0.011871886439621,0.026133952662349],[0.0053745107725263,-0.02156556583941,-0.022087555378675]],[[-0.027790706604719,0.022977635264397,0.00047608162276447],[-0.083175301551819,-0.042029175907373,0.00027066605980508],[0.0084866564720869,0.031057730317116,-0.0071372874081135]],[[-0.01693138666451,0.028018834069371,-0.023134967312217],[0.0090795187279582,0.030279938131571,-0.021291570737958],[-0.0046992474235594,-0.031536255031824,0.017560256645083]],[[-0.032772198319435,0.037831857800484,0.0028350511565804],[0.081240199506283,-0.022656109184027,0.013455542735755],[-0.065745145082474,0.039185080677271,-0.045101933181286]],[[0.015735419467092,-0.062673591077328,0.035585809499025],[-0.001525923027657,-0.035793654620647,-0.047532375901937],[0.020285284146667,0.0098458146676421,0.0036482699215412]],[[0.00078981916885823,-0.0078874230384827,-0.029168043285608],[-0.010166768915951,0.0052761742845178,0.020413361489773],[-0.018177958205342,0.0021357340738177,0.015079449862242]],[[-0.02588359080255,0.022211255505681,0.0053373696282506],[-0.0038029332645237,0.019995512440801,-0.025931028649211],[-0.0075545022264123,0.0017349736299366,0.016950493678451]],[[-0.0092279771342874,0.054304160177708,0.0087658390402794],[0.0093036722391844,0.0055300313979387,0.03847436979413],[-0.011114501394331,-0.084862746298313,0.013464792631567]],[[-0.099192701280117,0.1671571880579,-0.013955651782453],[-0.026944968849421,-0.041660271584988,-0.04740983620286],[0.023530129343271,0.060301251709461,-0.044318664819002]],[[-0.032494436949492,-0.020157814025879,0.0030642244964838],[0.0074045653454959,0.032272785902023,0.070504300296307],[0.020557805895805,-0.0046084453351796,0.025557855144143]],[[0.044409245252609,-0.059550113976002,0.065514981746674],[-0.034220330417156,-0.013465903699398,0.0059112319722772],[-0.023495757952332,-0.016886867582798,0.033965680748224]],[[-0.073005445301533,-0.023984992876649,0.044941566884518],[0.025755554437637,-0.051570244133472,-0.028337199240923],[0.013186636380851,-0.0027943793684244,-0.0015657808398828]],[[0.020329523831606,0.032845497131348,-0.018362695351243],[-0.026042284443974,-0.054630968719721,0.0078077423386276],[-0.015514348633587,0.0077315871603787,0.037340901792049]],[[-0.0026295545976609,0.049873866140842,-0.008053514175117],[-0.016705514863133,0.0072635058313608,-0.032749842852354],[-0.0042483871802688,0.031919579952955,-0.0099256876856089]],[[-0.049815911799669,-0.0064636841416359,-0.025033148005605],[-0.024406338110566,0.076933339238167,-0.0013342336751521],[0.033071290701628,-0.026866286993027,0.04108139872551]],[[-0.04117464274168,-0.07657378166914,0.021781090646982],[-0.0085006095468998,0.025252053514123,0.073741994798183],[-0.033330082893372,0.029924297705293,-0.0030902777798474]],[[-0.026727180927992,-0.034169472754002,-0.024742031469941],[0.0089605133980513,0.045267172157764,0.04364337772131],[-0.038351286202669,-0.0009744928102009,0.0035320420283824]],[[0.060971733182669,0.10925174504519,0.10335397720337],[0.028782432898879,0.12482809275389,0.024648372083902],[0.069553785026073,-0.01242942828685,0.050629440695047]],[[0.0095076775178313,-0.011242889799178,-0.022732801735401],[-0.025795042514801,0.018638839945197,0.012079670093954],[-0.031885530799627,0.038523774594069,-0.021908747032285]],[[-0.051328971982002,-0.03856373205781,-0.045369926840067],[0.029844673350453,0.024678895249963,0.051549702882767],[-0.052120883017778,0.0043873190879822,0.015994790941477]],[[0.040877908468246,-0.012690451927483,-0.031535565853119],[0.011778853833675,0.03589129447937,0.011935910210013],[-0.007195524405688,0.033917631953955,-0.019676191732287]],[[-0.0014327801764011,0.024799818173051,-0.0084975855425],[-0.058095388114452,0.047922264784575,0.0082712536677718],[-0.031846348196268,0.019846415147185,0.012249887920916]],[[0.067534483969212,0.04524265602231,-0.017080958932638],[-0.05239886790514,0.026943629607558,-0.062889993190765],[-0.064465425908566,0.043650794774294,-0.0085999965667725]],[[-0.015687089413404,-0.010337201878428,0.037290398031473],[0.0087755741551518,0.061839740723372,-0.035715065896511],[-0.0020454439800233,-0.0031399095896631,-0.015810269862413]],[[-0.008147681131959,-0.0037617005873471,0.015483415685594],[0.0040431912057102,0.0075306249782443,0.016429783776402],[-0.004593753721565,0.012007145211101,-0.0039157196879387]],[[0.027831112965941,-0.0037407726049423,-0.012319285422564],[-0.0030514332465827,-0.058733966201544,0.055404040962458],[-0.015235320664942,0.00036381496465765,0.01652997918427]],[[-0.035590041428804,0.049869157373905,-0.013382123783231],[-0.043324612081051,0.036545634269714,-0.012440050020814],[-0.01118313614279,-0.0077782389707863,0.027202701196074]],[[0.0082536051049829,-0.01163159776479,-0.014530526474118],[0.0080646490678191,0.016650276258588,0.016415981575847],[0.0097596077248454,-0.0075968997552991,-0.017733568325639]],[[-0.016583427786827,0.042120020836592,-0.025180257856846],[0.03358206897974,-0.010929347015917,-0.0060837082564831],[0.0016260199481621,-0.020049145445228,0.02103179693222]],[[-0.0079120164737105,0.0077323466539383,-0.023302365094423],[0.01974892988801,-0.038898680359125,0.022883102297783],[0.018226910382509,0.026145923882723,-0.039695780724287]],[[-0.010972932912409,0.012428716756403,-0.0050361594185233],[0.015807596966624,0.0778638869524,0.038378868252039],[0.021113451570272,0.034040037542582,0.023497607558966]],[[0.025244625285268,-0.037524081766605,0.0001151916658273],[-0.030421167612076,0.059504296630621,-0.006503386888653],[0.0056539135985076,0.0032636662945151,0.0091332234442234]],[[-0.010156298056245,-0.018575863912702,0.022698165848851],[-0.02526468411088,0.0031344492454082,0.027464468032122],[0.0421546921134,-0.02036371640861,-0.027929451316595]],[[-0.018137620761991,0.037896130234003,0.00043050578096882],[0.0082804374396801,-0.024819325655699,0.013803424313664],[0.0055384947918355,-0.015039063990116,0.019499460235238]],[[-0.04786067083478,0.00080698938108981,0.0025308255571872],[0.021799517795444,-0.036856442689896,0.029193406924605],[0.028434917330742,0.0073456219397485,-0.0035264249891043]],[[0.03868717700243,0.0111278956756,0.025204053148627],[-0.019499041140079,-0.010551416315138,-0.032059259712696],[0.0076926075853407,-0.008454111404717,0.046884313225746]],[[0.019177382811904,0.015542679466307,-0.039470374584198],[0.034969639033079,0.019022364169359,-0.0092766592279077],[-0.013600359670818,-0.00023226591292769,-0.0072733159177005]],[[0.040859613567591,-0.048562597483397,0.01943626627326],[-0.045820083469152,-0.042442340403795,-0.011123544536531],[0.028480401262641,0.010408265516162,-0.01767560094595]],[[0.023087168112397,-0.020857065916061,0.0098825534805655],[0.041043002158403,-0.0097343707457185,0.014874338172376],[-0.021017847582698,0.02872340939939,-0.002918804762885]],[[0.048930566757917,0.0020451457239687,-0.0094475774094462],[-0.039535935968161,-0.0088172052055597,-0.020730786025524],[-0.013012455776334,-0.0034327122848481,0.0025226313155144]],[[-0.015016508288682,0.014606853947043,-0.0052433870732784],[-0.013942268677056,-0.00029588816687465,-0.016445603221655],[0.019347062334418,0.027833428233862,-0.0040618977509439]],[[-0.015389471314847,-0.039161574095488,-0.018123855814338],[-0.0027618035674095,0.059333059936762,0.011447696015239],[0.04675830155611,-0.034759301692247,0.00059651036281139]],[[-0.0051499004475772,-0.026790088042617,0.020017459988594],[0.0094198668375611,-0.048671521246433,-0.026869529858232],[0.047980681061745,-0.021613137796521,-0.025977563112974]],[[0.028853053227067,0.02273297868669,-0.0051784375682473],[0.0030020796693861,0.018367685377598,0.012183814309537],[-0.044171318411827,-0.04122444242239,-0.021610045805573]],[[0.048060525208712,0.025981262326241,0.038444045931101],[-0.039241269230843,-0.046094805002213,-0.085319481790066],[-0.01189617998898,0.034534379839897,-0.011670252308249]],[[0.0052436417900026,0.027474913746119,0.002314314711839],[-0.045935444533825,0.066081881523132,0.0030830972827971],[-0.067895323038101,0.042733784765005,0.020399078726768]],[[-0.017126278951764,-0.043918538838625,-0.0075456281192601],[0.06378099322319,-0.039780061691999,0.0064845154993236],[0.0074493680149317,-0.051668796688318,-0.0031211317982525]],[[-0.035310093313456,0.0038888331037015,0.050057798624039],[0.02448470517993,-0.066617339849472,-0.087229169905186],[0.037456680089235,0.006669391412288,0.038086127489805]],[[0.065605103969574,0.096340581774712,0.054129019379616],[-0.026235617697239,-0.022266078740358,-0.00065642088884488],[0.0020324871875346,-0.018344523385167,-0.047651838511229]],[[0.035548262298107,-0.020386133342981,-0.00073965813498944],[-0.00195006292779,-0.061129830777645,0.019126860424876],[0.018512599170208,0.0019873986020684,-0.0013655702350661]],[[-0.029001288115978,0.051991865038872,-0.042662132531404],[0.0028455313295126,0.018114903941751,-0.015616110526025],[0.023296903818846,-0.074225388467312,0.010709959082305]],[[0.0036733001470566,-0.00458690430969,0.0062519605271518],[-0.039632089436054,0.025608513504267,0.015324958600104],[0.0054380595684052,-0.038775324821472,0.006505727302283]],[[-0.025266448035836,0.015079017728567,-0.026307374238968],[-0.0065761283040047,0.10708002001047,-0.0056278128176928],[-0.015105756931007,0.027410943061113,-0.11207419633865]],[[0.022015960887074,-0.048148181289434,-0.011046555824578],[-0.015026294626296,0.016301885247231,0.0094772502779961],[0.065424770116806,-0.026447424665093,0.020963806658983]],[[-0.073436327278614,-0.1291830688715,-0.012190079316497],[-0.090808980166912,0.013191338628531,-0.027815457433462],[-0.025336684659123,-0.02348374389112,-0.04856014996767]],[[0.012332309037447,-0.050248302519321,-0.020083390176296],[-0.0026866206899285,0.025478467345238,0.0079108392819762],[0.037627920508385,0.011271364986897,-0.044860895723104]],[[-0.033380128443241,0.022812934592366,0.06784925609827],[0.036658957600594,-0.026915270835161,-0.023999162018299],[-0.017483100295067,-0.038463369011879,0.013866120018065]],[[0.015364601276815,0.029686823487282,-0.0077381189912558],[0.026530373841524,-0.063044033944607,-0.013369550928473],[-0.022885465994477,0.023708712309599,-0.016539318487048]],[[-0.0015389837790281,-0.030290687456727,-0.0071301674470305],[0.023553274571896,0.008679605089128,0.040989886969328],[-0.028504949063063,0.013419604860246,0.0097010228782892]]],[[[0.014975328929722,0.022929776459932,-0.0065251146443188],[0.038320228457451,0.030175723135471,-0.091375507414341],[-0.030644482001662,0.026326915249228,-0.038044989109039]],[[-0.024677209556103,0.026620965451002,0.027679856866598],[-0.021069383248687,-0.017835000529885,0.021550498902798],[0.0082149058580399,-0.033659387379885,0.015500583685935]],[[0.017236160114408,0.0060793519951403,0.023798683658242],[0.0056195696815848,-0.047749705612659,-0.048956293612719],[-0.0084217498078942,0.04860296100378,0.0050586848519742]],[[-0.013739568181336,-0.019452201202512,0.056551069021225],[0.028889628127217,-0.049571793526411,-0.054532032459974],[0.022255811840296,0.014237162657082,0.017806090414524]],[[-0.037936083972454,-0.014244074933231,-0.013217205181718],[0.018947219476104,0.014870708808303,0.023985832929611],[0.013039449229836,0.0015067240456119,-0.017164044082165]],[[-0.0071051954291761,-0.010810275562108,0.0083803087472916],[-0.035338766872883,0.067635834217072,-0.010682506486773],[-0.016576144844294,-0.026360124349594,0.021295823156834]],[[-0.061030071228743,0.042378216981888,-0.017110137268901],[0.052476041018963,0.059536099433899,-0.0092964340001345],[-0.0048902691341937,-0.026822393760085,-0.029725912958384]],[[0.033913772553205,-0.082668073475361,0.00063212134409696],[-0.0035558384843171,-0.037950482219458,0.048137333244085],[-0.00032283371547237,0.039175406098366,-0.0075793513096869]],[[-0.030741196125746,-0.014142888598144,0.04696436226368],[0.035261202603579,-0.0052929185330868,-0.00053901801584288],[-0.0058558499440551,-0.023618392646313,0.0091194985434413]],[[-0.025093730539083,-0.017842261120677,-0.021343300119042],[0.017676413059235,-0.0018943749601021,0.03742915391922],[0.014398794621229,-0.010802610777318,-0.015798538923264]],[[0.028583470731974,-0.028499066829681,-0.028563050553203],[-0.022357223555446,0.027421126142144,-0.054150860756636],[0.0029163961298764,0.036333680152893,0.032810512930155]],[[0.009257135912776,-0.021811610087752,0.024773865938187],[0.0085717495530844,-0.0090528735890985,-0.021633498370647],[0.01347201038152,-0.0061931740492582,0.01894093491137]],[[-0.012484909966588,-0.026754323393106,-0.012813477776945],[-0.0065013486891985,-0.086121462285519,-0.015011343173683],[0.020616380497813,0.093083709478378,0.012793570756912]],[[0.022971548140049,-0.018169773742557,-0.039273411035538],[0.050766695290804,-0.035648226737976,-0.0013974505709484],[-0.00029909727163613,0.0034923902712762,0.026698306202888]],[[-0.022937150672078,0.05358025804162,-0.00423963367939],[0.014161456376314,-0.068979769945145,0.096427530050278],[-0.0013155387714505,-0.010262951254845,-0.047213222831488]],[[-0.010450926609337,0.065085850656033,-0.0078417807817459],[0.013238240964711,0.0016461207997054,0.060269586741924],[-0.0017813735175878,-0.11146990209818,-0.0055832741782069]],[[-0.027327122166753,0.042916592210531,-0.039349772036076],[-0.015999397262931,-0.11197612434626,0.053823124617338],[0.0087307523936033,0.04983026906848,-0.018671030178666]],[[0.0020077142398804,-0.0091761741787195,0.013151941820979],[0.0013831158867106,0.085112832486629,-0.0070854020304978],[0.0001013046130538,-0.024481574073434,-0.078534506261349]],[[-0.0077099339105189,-0.022148076444864,-0.013308404013515],[0.030921652913094,-0.010699403472245,0.046834204345942],[0.0076174437999725,-0.011613333597779,-0.020548172295094]],[[-0.012919756583869,-0.065893411636353,-0.052749026566744],[-0.0025839135050774,-0.0069878790527582,-0.047321770340204],[-0.015211543999612,-0.080904975533485,-0.050251595675945]],[[0.03277362883091,-0.032693415880203,-0.017913289368153],[-0.039133813232183,0.010759120807052,0.057813659310341],[0.056593239307404,-0.020780265331268,-0.015392506495118]],[[0.025081526488066,-0.035221487283707,0.049178175628185],[-0.022660193964839,0.010734530165792,-0.05978786945343],[0.020179755985737,-0.01059696264565,0.026720372959971]],[[-0.080815680325031,-0.12478908151388,-0.062607921659946],[-0.058917947113514,-0.095939971506596,-0.030468344688416],[-0.073163241147995,-0.071684800088406,-0.058998171240091]],[[0.012290011160076,-0.019836470484734,0.0035793150309473],[-0.038073498755693,-0.0015278566861525,-0.0031279730610549],[0.041236598044634,0.0042356355115771,-0.0070828618481755]],[[0.017557166516781,0.056501928716898,0.062481932342052],[-0.010661882348359,-0.063853085041046,-0.063507676124573],[-0.04077684879303,-0.02495289593935,0.032423336058855]],[[-0.066686257719994,-0.0083882194012403,0.048933256417513],[0.053075890988111,-0.040820986032486,-0.01038811262697],[0.022847931832075,-0.04023128002882,0.033490668982267]],[[-0.0083248950541019,0.020590133965015,-0.021383162587881],[0.065485760569572,-0.08260565251112,0.013580014929175],[0.020113939419389,-0.0022829298395663,-0.0012156306765974]],[[-0.0082724867388606,-0.031670555472374,0.044453978538513],[0.017112005501986,0.0084306988865137,-0.025712443515658],[0.004248533397913,-0.01257462054491,0.018577855080366]],[[0.090229257941246,-0.011997358873487,-0.024039592593908],[0.0064121563918889,-0.050922986119986,-0.050868786871433],[0.0042493557557464,0.024287451058626,0.020861994475126]],[[0.030230553820729,0.040415171533823,0.0031919523607939],[0.041660789400339,-0.01675389520824,0.010367578826845],[-0.024892261251807,-0.037973579019308,-0.025205114856362]],[[-0.023658219724894,0.026474568992853,0.036974176764488],[-0.00085101276636124,0.017123710364103,-0.028025990352035],[-0.015817549079657,-0.022340638563037,-0.0091589009389281]],[[0.0011624995386228,-0.019484680145979,-0.0037992193829268],[0.00069653772516176,-0.012131428346038,0.025822974741459],[0.0069228396750987,0.020553136244416,-0.02676116488874]],[[0.00024855529773049,-0.038469318300486,-0.0079341372475028],[0.021702641621232,-0.015657195821404,0.040259152650833],[0.0095571018755436,-0.013836265541613,0.0026969951577485]],[[0.0048907157033682,-0.016288612037897,0.021377380937338],[-0.038269948214293,-0.027510052546859,0.036560021340847],[-0.031503394246101,0.073296755552292,-0.023513603955507]],[[0.009814246557653,-0.0016925517702475,0.043327029794455],[-0.023044731467962,0.060705538839102,-0.044298496097326],[-0.024106925353408,-0.018831176683307,-0.022122599184513]],[[-0.0013847256777808,-0.022788796573877,0.057219829410315],[-0.054056230932474,0.028468715026975,-0.052576027810574],[0.025670299306512,0.036225400865078,0.035019896924496]],[[-0.029105378314853,0.063586950302124,-0.034848790615797],[0.076320625841618,-0.10641611367464,0.0045641981996596],[-0.018796116113663,-0.014212916605175,0.030704315751791]],[[0.0057353023439646,-0.00084608141332865,-0.022095808759332],[0.029304377734661,0.025452014058828,0.0062611605972052],[-0.042774517089128,-0.0012963372282684,-0.00090984907001257]],[[0.0034497329033911,-0.04020131751895,-0.021492816507816],[-0.010564114898443,0.068712472915649,-0.0060892538167536],[0.019143061712384,-0.0042536836117506,-0.016537247225642]],[[0.028377113863826,-0.043199304491282,-0.027246739715338],[0.0035859146155417,0.05705338716507,-0.02199642919004],[-0.0030006011947989,0.011001969687641,0.0029752918053418]],[[-0.030829155817628,-0.010974766686559,-0.029794758185744],[0.026960413902998,5.2979758038418e-05,0.04530018940568],[0.065786585211754,0.013970222324133,-0.053518857806921]],[[0.059542141854763,-0.013427588157356,0.072123356163502],[-0.037422567605972,0.013860762119293,-0.032579116523266],[0.018922124058008,-0.049903851002455,-0.033508542925119]],[[-0.028118189424276,-0.030679795891047,-0.070158027112484],[0.046214681118727,0.04377855733037,0.076683908700943],[-0.010258815251291,-0.014301515184343,-0.044569734483957]],[[0.038002394139767,0.01988965831697,0.027089703828096],[-0.055766280740499,-0.011185296811163,-0.051522362977266],[0.058381453156471,-0.0073296874761581,0.023193579167128]],[[-0.03478104993701,0.033912897109985,0.0031080495100468],[0.041815835982561,-0.024069126695395,0.0042967675253749],[-0.010911732912064,-0.045217040926218,0.017281437292695]],[[-0.019205158576369,-0.042028576135635,0.039369568228722],[0.014760354533792,0.047368112951517,-0.045383516699076],[-0.011155554093421,0.0020795844029635,0.01310886349529]],[[-0.00067039643181488,0.018632587045431,-0.019438317045569],[-0.01114406902343,-0.044990591704845,0.035262800753117],[-0.0013135802000761,0.012584089301527,0.020632481202483]],[[0.010823355987668,0.057362623512745,-0.020055213943124],[-0.081198133528233,0.020614612847567,0.054287098348141],[-0.058609422296286,0.012282442301512,-0.030697476118803]],[[-0.019989697262645,0.09072083234787,-0.030840702354908],[-0.021859990432858,0.0099141718819737,-0.019003380089998],[-0.012277222238481,0.041427124291658,-0.031027773395181]],[[-0.0011937632225454,0.02764455601573,0.0074923601932824],[-0.056736890226603,0.010316039435565,0.017307071015239],[-0.0095963636413217,0.049747671931982,-0.04209977760911]],[[0.0027366958092898,0.015420712530613,0.0017218958819285],[0.040191095322371,-0.14415840804577,-0.0041608717292547],[0.08920881152153,0.035693112760782,-0.021893238648772]],[[-0.057207103818655,0.034544847905636,-0.0336131490767],[-0.052936539053917,0.021242156624794,0.044960089027882],[0.00020689980010502,-0.01254372857511,-0.033224944025278]],[[0.030615795403719,-0.008591610006988,-0.024246359243989],[-0.036145929247141,0.066215053200722,0.031172292307019],[-0.02244240604341,-0.044601000845432,0.0064698406495154]],[[-0.086442947387695,-0.036368574947119,-0.092560857534409],[-0.050640501081944,-0.047828659415245,-0.016485992819071],[-0.031749427318573,0.035576481372118,-0.013435107655823]],[[0.0032166030723602,0.0055471220985055,-0.027943620458245],[0.00228810030967,0.018397208303213,0.025061752647161],[-0.0082798358052969,0.021823523566127,-0.044765710830688]],[[0.019951399415731,-0.028682852163911,0.0041177198290825],[0.0038522542454302,-0.023599019274116,-0.026814235374331],[-0.0079359970986843,0.020348981022835,0.029074667021632]],[[-0.050471022725105,-0.069110326468945,0.0026075339410454],[0.077655643224716,-0.040398541837931,-0.0074915825389326],[0.0027811385225505,0.060535032302141,-0.017419116571546]],[[0.0041461000218987,0.0050524394027889,-0.009271970950067],[-0.024637024849653,-0.11735288053751,0.017791554331779],[0.010636150836945,0.0080981748178601,0.099867910146713]],[[-0.021096836775541,0.040170922875404,-0.02836636453867],[0.014603909105062,-0.05063896253705,0.024761307984591],[0.037541776895523,0.022007906809449,-0.017281027510762]],[[0.062430396676064,0.097468614578247,0.096517257392406],[0.0077436775900424,0.069795943796635,0.022618101909757],[0.035582859069109,0.088961347937584,0.03392980992794]],[[-0.049540258944035,-0.011932052671909,0.023467350751162],[0.015150076709688,0.033172242343426,-0.019687816500664],[-0.026899546384811,-0.019749090075493,0.024332011118531]],[[-0.002456767950207,0.014771832153201,-0.0090162558481097],[-0.0087868180125952,0.012950787320733,0.02027883566916],[0.00059516046894714,0.00043380094575696,-0.048102736473083]],[[-0.06939310580492,-0.011216372251511,-0.0011539562838152],[0.0070280721411109,0.06644531339407,0.019107788801193],[0.0089732017368078,-0.010005112737417,-0.019890837371349]],[[0.014700329862535,-0.0078863902017474,-0.0086689842864871],[-0.028560845181346,-0.05334397405386,0.014632659032941],[0.039150755852461,-0.015514951199293,0.053340274840593]]],[[[-0.0060975793749094,0.021683165803552,-0.0062714470550418],[0.015700990334153,0.046637382358313,0.050158675760031],[-0.017215486615896,-0.016156295314431,0.064940363168716]],[[-0.038932487368584,-0.011782169342041,-0.036678321659565],[-0.052025478333235,-0.04774022474885,-0.035761035978794],[-0.023640720173717,-0.0090736746788025,-0.016175210475922]],[[-0.04248022288084,-0.0029151220805943,-0.048124689608812],[0.021695056930184,-0.051415894180536,0.04495007917285],[0.0077580688521266,-0.053197652101517,0.039046391844749]],[[-0.0041847708635032,0.03575250133872,-0.055234007537365],[-0.0070762168616056,-0.0047573195770383,0.063686691224575],[0.044952318072319,0.045523691922426,0.035141624510288]],[[0.036284744739532,-0.010643222369254,0.0038060646038502],[-0.10775078833103,0.00082218577153981,0.025956153869629],[-0.023061331361532,-0.020104808732867,-0.027343966066837]],[[-0.0046443031169474,-0.080697737634182,0.01729330047965],[0.025975929573178,0.050174750387669,-0.04131843522191],[-0.060441676527262,0.094646990299225,-0.031642407178879]],[[-0.019266296178102,-0.0091902501881123,0.014544436708093],[-0.056594528257847,-0.010743889957666,0.029232922941446],[-0.032503638416529,-0.049796715378761,0.0058260834775865]],[[0.012330221012235,0.011191314086318,-0.010899894870818],[-0.021432872861624,-0.020211469382048,0.070283032953739],[0.012645692564547,-0.044638022780418,0.06387784332037]],[[0.00075129698961973,-0.054278772324324,0.010069399140775],[0.017858766019344,-0.033892154693604,-0.060589369386435],[-0.039176572114229,-0.0087054148316383,0.032482676208019]],[[0.029517352581024,0.063374646008015,0.0045179412700236],[-0.0095630781725049,0.030539829283953,-0.035600140690804],[0.016324078664184,-0.053472999483347,-0.034506034106016]],[[0.070411458611488,0.024924824014306,0.067701488733292],[-0.0059759640134871,0.0088494475930929,0.029530443251133],[0.011794568970799,-0.034150272607803,-0.06312507390976]],[[-0.040514275431633,0.0067594479769468,-0.00086664751870558],[0.10218644142151,0.021574836224318,-0.015857493504882],[-0.051488745957613,-0.051710974425077,0.0088273379951715]],[[-0.033419828861952,-0.01352184265852,0.068173877894878],[-0.011376088485122,-0.021535316482186,-0.01713739708066],[-0.012327688746154,-0.011771913617849,0.031436812132597]],[[0.08224118500948,0.026296325027943,0.063656598329544],[0.041440304368734,-0.028541473671794,0.024007992818952],[0.052585106343031,-0.015577873215079,-0.028732370585203]],[[-0.080867417156696,-0.039784014225006,-0.086460620164871],[0.014994753524661,0.083036959171295,0.047418836504221],[-0.03487640991807,0.01752226613462,-0.0036100225988775]],[[-0.019473258405924,0.0046058832667768,-0.040704272687435],[0.023967325687408,0.013997809030116,-0.049392253160477],[-0.034707318991423,0.031956106424332,-0.018969375640154]],[[0.030757863074541,0.041387289762497,0.077064216136932],[-0.024435108527541,-0.049979534000158,0.021775789558887],[0.026147276163101,0.035191737115383,0.001662299502641]],[[-0.048089526593685,-0.0080919954925776,-0.0019230002071708],[0.023112166672945,0.018651874735951,0.0057215602137148],[-0.0057981256395578,-0.028602823615074,0.026840057224035]],[[0.037616025656462,-0.015097695402801,0.00080215517664328],[-0.030825715512037,0.007268953602761,-0.0022213947959244],[-0.012438082136214,-0.036467064172029,-0.030302880331874]],[[-0.012561331503093,0.029821638017893,0.046409353613853],[-0.0096976403146982,0.030543616041541,-0.029919380322099],[0.027547782287002,0.076147504150867,0.02764381095767]],[[0.013023351319134,0.0035592331551015,-0.039476919919252],[0.0045263539068401,0.0078856041654944,-0.02609490044415],[0.022991118952632,-0.02398681640625,-0.014265774749219]],[[0.018947508186102,-0.048882868140936,-0.053357966244221],[-0.0097263660281897,0.021343683823943,0.018531968817115],[0.018273308873177,0.031828556209803,0.0083068246021867]],[[0.0034480043686926,0.046337883919477,-0.0062005687505007],[0.032440956681967,-0.082194298505783,0.048382434993982],[-0.067629419267178,0.019059255719185,0.0091828675940633]],[[-0.049411065876484,0.037192277610302,0.0094608599320054],[-0.030455499887466,0.029115321114659,0.016343306750059],[0.020917274057865,-0.0099208997562528,-0.017541568726301]],[[-0.020211908966303,0.040807381272316,0.064347758889198],[-0.0059444420039654,0.014134891331196,-0.078265510499477],[0.004872283898294,0.031455930322409,0.070447355508804]],[[-0.0030010193586349,0.00033337486092933,0.027021188288927],[-0.12198238819838,0.0076871071942151,-0.047082338482141],[0.0081717660650611,-0.030293643474579,-0.011475618928671]],[[0.002106182044372,-0.049436453729868,-0.012321784161031],[0.0050407671369612,-0.0088938139379025,-0.02684879116714],[-0.011102834716439,0.039646696299314,0.048911098390818]],[[0.016429226845503,-0.062641128897667,0.014728169888258],[-0.033807434141636,-0.020417604595423,-0.023758934810758],[-0.0092899100854993,-0.050431586802006,-0.054564610123634]],[[0.02631901204586,0.0030948035418987,-0.017257994040847],[0.024950060993433,0.023270595818758,-0.061614215373993],[-0.012689513154328,-0.0026764674112201,-0.051170852035284]],[[-0.001944528426975,-0.065205559134483,-0.00085808715084568],[-0.043227653950453,0.010965430177748,-0.028745211660862],[-0.026410328224301,-0.042006283998489,-0.015165095217526]],[[0.0070761628448963,-0.023982057347894,-0.017061473801732],[-0.0052070734091103,-0.0017953542992473,0.025385985150933],[0.021646343171597,-0.032366242259741,-0.010107846930623]],[[0.058954078704119,-0.020590012893081,0.002998661948368],[0.018086090683937,0.049784176051617,-0.016458993777633],[0.013855561614037,0.01955789886415,-0.056653402745724]],[[-0.022724052891135,0.036792788654566,0.016788365319371],[-0.015649197623134,0.01638905890286,0.040221147239208],[-0.038300395011902,-0.037115827202797,-0.040140341967344]],[[-0.042508590966463,-0.033176433295012,-0.024526838213205],[0.043660238385201,-0.0059084664098918,-0.043798428028822],[0.031811308115721,-0.026441683992743,0.068473666906357]],[[0.0018938700668514,-0.021606236696243,0.024375246837735],[0.015504000708461,0.0046837870031595,-0.0062078023329377],[0.032509915530682,0.020535506308079,-0.018235869705677]],[[-0.035942688584328,-0.030675154179335,-0.0043997555039823],[-0.018238278105855,-0.0031338406261057,-0.064619556069374],[0.054492846131325,-0.028083184733987,0.015506713651121]],[[-0.012012552469969,0.038044083863497,-0.0080134682357311],[-0.029976507648826,-0.038347024470568,0.014363588765264],[-0.023743614554405,0.023678880184889,-0.03437153622508]],[[-0.050236348062754,0.0013731397921219,0.058585356920958],[0.027468387037516,-0.033461153507233,0.001644246163778],[-0.02310723438859,-0.052101012319326,-0.03345250710845]],[[0.020242629572749,0.046890497207642,0.0074247843585908],[-0.047799106687307,-0.052089679986238,0.0042100180871785],[-0.10228568315506,0.0094821285456419,-0.012357694096863]],[[0.046487797051668,0.041172418743372,0.030253116041422],[0.031523570418358,-0.040615040808916,-0.024093709886074],[0.020296674221754,0.0072984006255865,0.014533782377839]],[[0.034222200512886,0.038774851709604,0.0078110657632351],[-0.0012266059638932,0.033867295831442,0.045079164206982],[0.0036354884505272,-0.047412011772394,-0.015753788873553]],[[0.035559941083193,-0.0063509242609143,-1.4273113265517e-05],[-0.064860925078392,-0.063867062330246,-0.16402831673622],[0.0021793462801725,-0.053659290075302,0.012443182989955]],[[0.040041867643595,0.0014360254863277,-0.0059427926316857],[0.027828373014927,-0.029409090057015,0.015842653810978],[-0.05632209777832,-0.0095944358035922,0.0048976386897266]],[[-0.025027839466929,-0.043337967246771,-0.038364425301552],[0.0070634502917528,-0.060046423226595,0.0093644307926297],[-0.014861527830362,-0.0078219305723906,0.058099564164877]],[[0.0062960460782051,-0.040553577244282,-0.080199837684631],[-0.015240333043039,0.0085667185485363,0.072693474590778],[-0.094091601669788,0.039317414164543,0.053561702370644]],[[0.093967892229557,-0.0413738489151,0.011738014407456],[-0.014920078217983,-0.03094993904233,0.033081538975239],[0.0076251877471805,-0.01534070353955,-0.010899026878178]],[[-0.034574661403894,-0.028831971809268,-0.05704040825367],[-0.012428171932697,-0.047490801662207,0.043398670852184],[-0.017755474895239,0.014031744562089,-0.010190824978054]],[[-0.044826094061136,-0.06009178981185,-0.0026439586654305],[-0.0072378325276077,-0.00022624786652159,-0.037327073514462],[-0.010297102853656,0.012214889749885,-0.044603656977415]],[[-0.0072194309905171,0.017377723008394,-0.023866087198257],[0.022092763334513,-0.025791378691792,-0.039607163518667],[-0.105323523283,0.051420919597149,-0.028807399794459]],[[-0.022697580978274,0.020691063255072,-0.10833372920752],[-0.043678250163794,-0.0078965714201331,0.046696946024895],[-0.099491484463215,0.020146513357759,-0.047966834157705]],[[-0.028613045811653,0.031231645494699,-0.00768180238083],[0.012476875446737,0.028635084629059,-0.016290910542011],[0.0027367318980396,-0.0070753549225628,0.0071925050579011]],[[0.02117357775569,0.013787833042443,-0.012036906555295],[-0.006637935526669,-0.058279763907194,0.074758425354958],[-0.015988251194358,0.0020770691335201,-0.046335533261299]],[[-0.033199738711119,-0.0041504073888063,-0.017340851947665],[-0.036359239369631,-0.052841067314148,0.016230704262853],[-0.015104237012565,9.0808774984907e-05,0.014495154842734]],[[0.028220621868968,0.10536161065102,0.062788844108582],[0.038045335561037,-0.015765275806189,0.031733512878418],[-0.031036360189319,0.11629685759544,0.10308964550495]],[[0.0023774087894708,0.07917957007885,0.045970540493727],[0.02569299377501,0.00070774112828076,0.017332803457975],[-0.042562615126371,0.045121368020773,0.029366299510002]],[[-0.033833183348179,-0.082246899604797,0.0021484298631549],[-0.016944479197264,0.015073820017278,-0.09257099032402],[0.031711932271719,-0.074345037341118,-0.018132403492928]],[[0.01192369312048,0.015604805201292,-0.028802819550037],[-0.011065780185163,0.002003968693316,0.0048455740325153],[0.062123645097017,-0.040749303996563,-0.036550499498844]],[[-0.013450860977173,0.00039727403782308,-0.02178137563169],[0.0050383722409606,-0.032228671014309,0.024995105341077],[0.030734732747078,0.015032358467579,-0.066488228738308]],[[0.070577263832092,0.033874701708555,0.02146515622735],[-0.071763128042221,-0.028309889137745,6.1879101849627e-05],[0.011972625739872,-0.010651763528585,0.060317911207676]],[[-0.0027954084798694,-0.0081369560211897,-0.033871609717607],[0.010689207352698,0.011915860697627,0.018032109364867],[0.021134786307812,0.01119947899133,0.023544866591692]],[[-0.016695983707905,0.022866826504469,0.020609077066183],[-0.015236677601933,-0.036821439862251,0.051033392548561],[-0.0375746935606,0.005570768378675,0.021677237004042]],[[0.00027025651070289,-0.013097727671266,-0.043357942253351],[-0.052068181335926,0.013192540034652,-0.059598132967949],[-0.031496923416853,-0.052249565720558,-0.010547912679613]],[[-0.039623811841011,0.01305444445461,0.031671978533268],[-0.0037744250148535,-0.015688577666879,0.012170693837106],[-0.0023034380283207,0.072144329547882,0.043328177183867]],[[0.032991625368595,-0.032373454421759,0.00021530444792006],[0.049577388912439,0.03899160400033,-0.038358572870493],[0.010964121669531,-0.013607514090836,-0.0045283557847142]]],[[[0.012358196079731,0.0010326391784474,-0.0032248860225081],[-0.014092853292823,0.022865129634738,-0.039138931781054],[-0.032374639064074,-0.057082984596491,-0.052820596843958]],[[0.0099482908844948,0.0005040411488153,0.020342884585261],[0.012941461987793,-0.033645030111074,-0.0099462838843465],[-0.0047072735615075,0.019680835306644,-0.012385946698487]],[[-0.0099764140322804,0.063553936779499,-0.0018281838856637],[-0.053436286747456,0.031454227864742,-0.10651632398367],[0.037432078272104,-0.0081142457202077,0.028200421482325]],[[-0.0067028552293777,0.024399196729064,-0.0030652643181384],[-0.023909756913781,0.077074728906155,0.029858574271202],[-0.014350824989378,-0.010441659018397,0.036678969860077]],[[-0.06013835221529,0.0014418796636164,0.029053231701255],[0.029636826366186,0.019403617829084,0.0099190091714263],[-0.046159327030182,-0.017207134515047,0.054277013987303]],[[-0.025257151573896,0.058366533368826,0.021505462005734],[-0.018685625866055,-0.036941297352314,-0.023812770843506],[-0.034792095422745,0.021195480599999,0.11508723348379]],[[-0.027859635651112,-0.00023914272605907,-0.0060364925302565],[-0.055645238608122,-0.049705926328897,0.0092140752822161],[0.010308132506907,-0.032707922160625,-0.031317114830017]],[[-0.03834418579936,-0.07074362039566,-0.043724715709686],[-0.020998632535338,0.036158684641123,-0.01781321875751],[0.0051208375953138,0.0629917755723,-0.024738971143961]],[[0.0019314850214869,-0.00061682623345405,-0.040526315569878],[0.013257063925266,0.0010262402938679,0.033927202224731],[-0.053302407264709,-0.037984848022461,-0.033701911568642]],[[0.0054335272870958,0.12313514202833,-0.037113543599844],[0.045836932957172,-0.027291115373373,-0.024040278047323],[0.0033179472666234,0.026277465745807,0.018771188333631]],[[-0.023019140586257,0.034150678664446,-0.047915447503328],[0.0067436159588397,-0.0056701702997088,-0.0239616651088],[0.048315819352865,-0.07366930693388,0.068236567080021]],[[0.046134777367115,-0.029961237683892,0.042082820087671],[0.02092956751585,-0.015360076911747,0.012757625430822],[0.011557298712432,0.066618412733078,0.040959864854813]],[[-0.022017467767,0.011909694410861,0.039820782840252],[0.030176986008883,0.029833627864718,-0.023407083004713],[0.041259326040745,-0.0062053361907601,0.069656997919083]],[[0.088762357831001,0.096246436238289,0.0096949245780706],[-0.014364644885063,0.031575955450535,0.036688219755888],[-0.035788986831903,0.00073847931344062,0.040482316166162]],[[0.063154779374599,-0.037999782711267,0.043974559754133],[0.026663931086659,0.0079699559137225,-0.0029055534396321],[-0.0057054203934968,-0.041861455887556,0.028140988200903]],[[-0.06509430706501,0.050760220736265,0.024564251303673],[-0.035552777349949,0.029307188466191,0.10820206999779],[-0.017452195286751,-0.026969345286489,-0.026107987388968]],[[0.010159208439291,0.064304448664188,-0.0198666267097],[-0.040423355996609,-0.026216322556138,0.06715489923954],[-0.002017465652898,0.053698539733887,0.01909190043807]],[[0.015505382791162,-0.011357069946826,-0.0010354401310906],[0.016646375879645,-0.055147379636765,-0.035439983010292],[-0.02339400537312,0.000121361699712,-0.020960170775652]],[[-0.0027476651594043,0.0312859416008,0.007066669408232],[0.0098910760134459,0.040104478597641,-0.013504300266504],[-0.055520828813314,-0.024943688884377,-0.0077092782594264]],[[-0.016852952539921,0.02065178193152,-0.070123225450516],[-0.038924101740122,-0.028170473873615,-0.099351227283478],[-0.043524403125048,-0.043048791587353,0.023919751867652]],[[-0.0038138260133564,-0.00064497318817303,-0.021836938336492],[0.0100915459916,0.0018066705670208,0.021967209875584],[0.023860046640038,-0.032246712595224,0.051990814507008]],[[-0.03924011066556,-0.07086855173111,0.054202701896429],[0.02611318975687,-0.018396148458123,-0.006065372377634],[-0.047095440328121,-0.027942851185799,0.006551269441843]],[[0.05937147885561,0.046499814838171,0.0085213333368301],[-0.015770627185702,0.019921084865928,-0.01712660677731],[0.021754324436188,-0.0014888001605868,-0.11321281641722]],[[-0.0051773828454316,0.024845061823726,-0.043707318603992],[0.04601613804698,0.02696786634624,-0.093272387981415],[-0.017480198293924,0.081832461059093,0.064994804561138]],[[-0.020516663789749,0.017612108960748,-0.025945076718926],[0.0026238355785608,-0.00058043305762112,-0.0055404002778232],[-0.014533753506839,-0.035026762634516,0.014630949124694]],[[0.008486220613122,0.021723845973611,-0.031049864366651],[-0.01698799803853,0.025359766557813,0.0076835351064801],[0.017764717340469,-0.0047502689994872,0.01346539799124]],[[0.048519909381866,0.054670635610819,0.00096401962218806],[-0.071618050336838,-0.072063021361828,-0.076792061328888],[-0.019485646858811,-0.022788804024458,-0.014302926138043]],[[0.034893114119768,0.055518634617329,0.039065904915333],[0.0090652210637927,0.026707885786891,0.04720164462924],[-0.093571543693542,0.067252084612846,-0.021510599181056]],[[0.00473030237481,0.023266296833754,-0.003114749211818],[0.016031082719564,0.023471437394619,-0.034851670265198],[0.021239323541522,-0.033100131899118,0.00095954141579568]],[[-0.024878464639187,-0.014567036181688,-0.064753495156765],[-0.008486426435411,-0.0081217084079981,0.0207515116781],[0.023210886865854,-0.022641407325864,-0.012877035886049]],[[-0.015803007408977,-0.0079146064817905,-0.014191953465343],[0.057233680039644,0.069721505045891,-0.030134238302708],[0.0080513395369053,-0.0079920319840312,0.031603183597326]],[[-0.092860117554665,-0.00390763906762,-0.015279563143849],[-0.0070214956067502,0.0053068436682224,-0.050683494657278],[-0.10322923958302,-0.054456397891045,-0.014039607718587]],[[0.017553621903062,-0.069343514740467,0.028270971029997],[0.005223729647696,-0.082349643111229,0.062311571091413],[0.05686404183507,-0.0039877407252789,0.062491197139025]],[[-0.051243148744106,0.028429754078388,-0.00208186567761],[0.020469637587667,-0.052329506725073,0.0052731614559889],[-0.00012016349501209,-0.01968514546752,0.071359157562256]],[[-0.028245691210032,-0.010483263991773,0.0049445000477135],[-0.002916453871876,0.01778880879283,0.039136134088039],[-0.09136500954628,0.02202626876533,0.028090769425035]],[[-0.019704014062881,-0.0618558190763,0.028074510395527],[-0.068177111446857,-0.028517942875624,-0.13577368855476],[-0.082231178879738,0.02983901835978,0.038371589034796]],[[-0.059705179184675,-0.00094504287699237,-0.016166327521205],[0.030529819428921,0.01789559610188,0.008808234706521],[0.081139974296093,-0.017987059429288,-0.010795286856592]],[[-0.032104704529047,0.030544601380825,0.037998665124178],[0.017231287434697,-0.039300877600908,0.049461860209703],[0.020985789597034,-0.051558922976255,-0.041868031024933]],[[-0.0069269393570721,0.057696953415871,-0.071297198534012],[-0.040563181042671,-0.011410092003644,-0.049349382519722],[-0.017767947167158,-0.022132962942123,0.024563185870647]],[[0.029310934245586,-0.043772328644991,-0.012594365514815],[0.046969063580036,-0.025926429778337,-0.044187292456627],[-0.060960806906223,-0.023462807759643,0.033735100179911]],[[-0.071536339819431,-0.09547808021307,-0.014349319972098],[-0.0027308978606015,-0.028470158576965,0.059870213270187],[0.00048598047578707,-0.021721499040723,0.099300071597099]],[[-0.03812462836504,-0.045462023466825,-0.054016709327698],[-0.01779162697494,0.024888332933187,0.00025648783775978],[0.0045656817965209,0.0047076069749892,0.02170997671783]],[[0.015545071102679,-0.016517950221896,0.030434496700764],[-0.034413635730743,-0.06306304782629,-0.067027412354946],[-0.030027139931917,0.0038231133949012,-0.0032195497769862]],[[0.0035742693580687,0.0044203833676875,0.0052052712999284],[0.029317930340767,-0.0037417884450406,-0.041598871350288],[0.0081725129857659,0.017642918974161,0.0035571127664298]],[[0.015131486579776,0.049049757421017,-0.022239286452532],[0.12712606787682,-0.014635981991887,-0.10571168363094],[-0.010115010663867,-0.045557521283627,0.016040816903114]],[[0.067913182079792,-0.086463607847691,-0.022470641881227],[-0.034692760556936,0.013366096653044,-0.019034327939153],[-0.059212144464254,-0.043566443026066,0.040235169231892]],[[-0.015982858836651,-0.0046793930232525,0.0068392865359783],[0.058605551719666,0.032403346151114,0.06302997469902],[0.033770330250263,0.027676433324814,-0.029149822890759]],[[-0.042472496628761,0.041784159839153,0.022075470536947],[0.021857088431716,0.030865356326103,0.032949700951576],[0.033830046653748,0.0040152510628104,-0.020725555717945]],[[-0.024494865909219,0.0088651236146688,0.0096510406583548],[-0.031204687431455,0.0030737491324544,-0.039673943072557],[-0.063340619206429,-0.023698149248958,0.0013997034402564]],[[-0.012410248629749,0.070945598185062,0.046190991997719],[0.1672246158123,0.018311373889446,0.021491888910532],[0.0061618774197996,0.038483262062073,-0.023306731134653]],[[0.015715856105089,0.01696271263063,0.014469619840384],[0.0078177377581596,-0.065288476645947,-0.0111970808357],[-0.040843423455954,-0.05284121260047,-0.046883087605238]],[[0.020369838923216,0.0028352653607726,-0.029047997668386],[-0.039287779480219,0.0092302663251758,0.029212923720479],[-0.029520196840167,-0.039642602205276,-0.060210824012756]],[[0.049718923866749,0.0059700193814933,0.057289469987154],[-0.0014917575754225,-0.032012660056353,-0.034089274704456],[0.04127112030983,-0.063614957034588,-0.051426097750664]],[[-0.035774871706963,0.034660890698433,0.01855019107461],[0.15205585956573,0.016230760142207,0.076963230967522],[0.059830591082573,0.068137764930725,-0.093635037541389]],[[0.0080792987719178,-0.019723724573851,0.01265814807266],[0.039946731179953,-0.035534530878067,-0.017899872735143],[-0.0073771188035607,0.052321672439575,0.037253890186548]],[[-0.037041205912828,0.044525120407343,0.027044881135225],[-0.0070600076578557,0.025583999231458,0.00060370814753696],[0.060091398656368,-0.013421976007521,0.010858708061278]],[[0.02352536469698,0.022388627752662,0.01898324303329],[0.022859981283545,0.03118222951889,0.025395272299647],[0.026071563363075,0.021534215658903,0.031139835715294]],[[-0.016655331477523,0.031670805066824,-0.03239618614316],[0.03456174954772,0.05244055762887,0.083525128662586],[-0.049620773643255,0.037336580455303,0.11863628029823]],[[-0.045987188816071,-0.035212799906731,0.0012718663783744],[-0.07769538462162,-0.053779061883688,0.0066445898264647],[0.0047608194872737,-0.03946428373456,-0.021239019930363]],[[-0.031692307442427,-0.0020032478496432,0.0088010523468256],[0.015953887254,-0.04405253380537,0.02774809114635],[0.021743640303612,0.01536223012954,0.02305961586535]],[[-0.025626797229052,-0.011109239421785,-0.014147952198982],[-0.030641477555037,-0.012752197682858,0.0070713320747018],[0.014801987446845,0.067783653736115,0.020879061892629]],[[-0.080343209207058,-0.065000422298908,-0.015054311603308],[-0.028676629066467,0.015703791752458,0.011558467522264],[0.027365658432245,-0.013440281152725,0.059696644544601]],[[-0.010967992246151,0.035632472485304,0.026517251506448],[0.061433963477612,-0.019435660913587,-0.029928810894489],[-0.037847567349672,0.072518020868301,-0.018320962786674]],[[0.03308767080307,-0.015148252248764,0.024385195225477],[-0.03882373124361,-0.0066902781836689,0.016293976455927],[0.022545516490936,0.0092968698590994,-0.030632503330708]]],[[[-0.041112598031759,-0.0036039573606104,0.033365812152624],[-0.0062237093225121,0.0061552836559713,0.038564212620258],[0.044888503849506,0.01823814958334,-0.0026824739761651]],[[0.011430301703513,-0.017913768067956,0.0092806592583656],[-0.025207066908479,0.044130239635706,-0.00016480918566231],[0.0033115884289145,0.0068164821714163,0.0025924183428288]],[[0.020284757018089,0.011147355660796,-0.00035703156027012],[0.018243979662657,-0.0025642758700997,0.05671052634716],[-0.00120437995065,-0.058065228164196,-2.0197494450258e-05]],[[0.036725182086229,0.00051992881344631,-0.027962209656835],[-0.0048121809959412,0.050852440297604,0.026249499991536],[-0.023550635203719,-0.028667544946074,-0.017987253144383]],[[0.013492447324097,0.012343432754278,0.0089405262842774],[0.01766244135797,-0.023528380319476,-0.014429021626711],[-0.01761881634593,0.016801564022899,0.0011179090943187]],[[-0.012097963131964,0.0070141083560884,0.012742625549436],[0.0066670537926257,-0.064157016575336,0.021804643794894],[-0.038463037461042,0.05410760641098,0.045829281210899]],[[0.048996731638908,-0.014518879354,0.030554577708244],[-0.026946986094117,-0.099011264741421,0.041629083454609],[0.029635714367032,0.089556261897087,0.023021664470434]],[[-0.016013180837035,0.034960053861141,0.02927397377789],[-0.034360382705927,0.013728051446378,0.010134956799448],[0.0010307893389836,0.012158967554569,-0.011014382354915]],[[0.028564132750034,-0.0053971041925251,-0.050820257514715],[-0.081669166684151,0.020702151581645,0.018465705215931],[0.010612993501127,-0.012261813506484,0.045873794704676]],[[0.028364019468427,0.031552542001009,-0.0061403950676322],[0.011859851889312,0.05306089296937,-0.020365936681628],[-0.020498910918832,-0.0016033126739785,0.0069941696710885]],[[-0.0057799480855465,0.06292200088501,0.010538361035287],[-0.0035588990431279,0.020700059831142,0.049902450293303],[-0.040168233215809,-0.045329097658396,-0.027778519317508]],[[0.011828818358481,-0.013886825181544,-0.0059908595867455],[-0.0037448788061738,-0.0061100218445063,0.018537297844887],[0.011636406183243,0.015416335314512,-0.014935775659978]],[[-0.0014510493492708,0.0006304879207164,-0.0036819351371378],[-0.0061700437217951,0.05916965007782,-0.02911982499063],[0.0079137664288282,-0.061982505023479,-0.014548860490322]],[[0.014321247115731,0.010794138535857,-0.013921802863479],[-0.0034937162417918,-0.011320418678224,0.081419043242931],[-0.012442577630281,-0.027080357074738,0.0054354434832931]],[[-0.026090985164046,-0.062921866774559,-0.061067182570696],[-0.028423042967916,0.024162143468857,0.05894723534584],[-0.021063528954983,-0.010090446099639,-0.026573106646538]],[[-0.014352817088366,0.018799666315317,-0.0053433254361153],[0.0266022849828,0.020158626139164,-0.0072746914811432],[0.0069401129148901,0.01811708137393,-0.059493370354176]],[[0.096587829291821,-0.003606341779232,-0.0075354012660682],[-0.0097429510205984,0.11170540750027,-0.036448210477829],[-0.0024177136365324,-0.020429717376828,0.0057153310626745]],[[0.011223819106817,-0.021994994953275,0.015022785402834],[0.051263388246298,-0.10513239353895,0.026302605867386],[-0.0067967474460602,0.0065958546474576,0.020274156704545]],[[0.016558704897761,-0.031329061836004,0.02934430539608],[-0.0093020247295499,-0.015141411684453,0.0016933667939156],[0.0029738005250692,-0.0059453044086695,0.016457749530673]],[[0.0060912328772247,-0.061930667608976,0.032672479748726],[0.026964168995619,-0.043588884174824,-0.019028108566999],[0.050466373562813,-0.026684690266848,-0.03829387575388]],[[0.031256087124348,0.011975022032857,0.0088911969214678],[-0.0030299834907055,-0.0037541585043073,0.04714397713542],[-0.029470527544618,0.0156060019508,-0.056686855852604]],[[0.015221523120999,0.034129079431295,0.014468894340098],[0.0073095122352242,-0.035879522562027,-0.00995157007128],[0.019860193133354,-0.0059035369195044,0.00094579963479191]],[[0.058283638209105,0.04661700874567,0.024507269263268],[0.074020557105541,0.11131407320499,0.014764696359634],[0.038560345768929,0.090478166937828,-0.031782064586878]],[[-0.0059742857702076,0.011776162311435,0.0030905182939023],[0.02388421818614,0.0052836504764855,-0.025845425203443],[-0.0087033566087484,-0.01624458655715,0.040333073586226]],[[-0.0029679504223168,0.010429413057864,-0.028529919683933],[-0.0034499054308981,0.019146416336298,0.031863648444414],[0.052207924425602,-0.012320127338171,-0.0053270515054464]],[[0.0092770913615823,0.014221833087504,-0.014675813727081],[-0.033362995833158,0.0034217527136207,0.013715716078877],[-0.020026087760925,-0.0013988664140925,0.0028220771346241]],[[0.0016389496158808,-0.011556383222342,0.01105338986963],[-0.044046230614185,0.03300466760993,0.022345775738358],[-0.0043416088446975,-0.028956685215235,-0.026649914681911]],[[0.023733323439956,0.023643096908927,-0.03311014175415],[0.024238431826234,0.032708887010813,0.017721870914102],[-0.075579315423965,0.040505588054657,-0.021863400936127]],[[-0.0058083273470402,0.021095195785165,0.0026329983957112],[-0.027439758181572,-0.0008366871625185,0.046775422990322],[-0.033171895891428,-0.029235787689686,-0.00091505405725911]],[[-0.009603351354599,-0.025792447850108,-0.005994675680995],[-0.048523370176554,0.03496265411377,-0.0098232319578528],[0.0044880616478622,0.0047089760191739,0.02780595049262]],[[0.0090695833787322,-0.030995482578874,0.0005551318754442],[0.0050475439056754,0.017863472923636,-0.0098440907895565],[0.042403552681208,0.0049277176149189,-0.033330194652081]],[[0.025391818955541,-0.0092396773397923,0.0080162398517132],[0.034098383039236,-0.027916118502617,0.00021182524506003],[0.015156163834035,-0.013225068338215,-0.0019993539899588]],[[-0.026385685428977,0.039735022932291,0.015176189132035],[-0.024894302710891,0.026791645213962,-0.043233226984739],[-0.017925811931491,0.026485146954656,0.015391326509416]],[[0.0092207286506891,-0.010845360346138,0.0034508488606662],[-0.0016747518675402,0.020741853863001,-0.025577668100595],[0.033650401979685,-0.054895184934139,0.029390461742878]],[[0.0094290766865015,0.0016935712192208,-0.050559271126986],[0.012565838173032,-0.017580846324563,0.013447865843773],[0.015678349882364,0.0068872189149261,0.044500544667244]],[[-0.043080374598503,0.066363550722599,-0.026836015284061],[0.040667567402124,-0.061667632311583,0.014981369487941],[-0.022057803347707,-0.018499813973904,0.0047643696889281]],[[0.034187447279692,-0.067158162593842,0.037916257977486],[-0.040733989328146,0.059954576194286,-0.038705907762051],[0.0092813279479742,-0.0011358042247593,-0.03296622633934]],[[0.0023475703783333,0.0098035857081413,0.0040479199960828],[-0.013808812014759,-0.018827650696039,-0.021328881382942],[0.0038456665351987,0.020665002986789,0.015323733910918]],[[0.019283432513475,-0.025260791182518,-0.00360819674097],[0.012051175348461,-0.055620383471251,-0.0055579706095159],[-0.017555683851242,0.0056519871577621,0.0077564702369273]],[[0.030257621780038,0.0081340614706278,0.0069808508269489],[-0.0017351440619677,-0.013490561395884,-0.0054442845284939],[-0.041169855743647,-0.030538523569703,0.020975707098842]],[[-0.0059500597417355,-0.011253722943366,-0.021496443077922],[-0.018372898921371,0.039482064545155,0.0030707970727235],[-0.043043620884418,-0.011892109178007,-0.011821856722236]],[[-0.02136342972517,0.029115768149495,-0.033854894340038],[0.02599917165935,-0.034415848553181,-0.02139238640666],[-0.006706056650728,0.0077832601964474,0.026109868660569]],[[0.0036583868786693,0.0095898890867829,0.040439628064632],[0.020524594932795,0.0014335388550535,-0.072375237941742],[0.034300658851862,0.019316822290421,0.04256484284997]],[[-0.027850078418851,-0.0085207354277372,-0.013876530341804],[-0.0085880663245916,0.018189894035459,0.019350845366716],[-0.031562153249979,-0.00059729762142524,-0.0074480967596173]],[[-0.010007315315306,-0.024490274488926,0.0073128757067025],[-0.014930070377886,0.012267295271158,0.0055420487187803],[0.030354650691152,0.051978573203087,-0.00073472241638228]],[[0.014624308794737,0.0059971385635436,-0.019030494615436],[0.00087091105524451,-0.020141558721662,0.043679662048817],[-0.028455037623644,-0.055796880275011,0.01312180608511]],[[-0.01553175970912,0.022003337740898,0.052161931991577],[0.037543851882219,-0.011814103461802,-0.043327566236258],[-0.032972346991301,-0.0027735976036638,0.0042085777968168]],[[0.034623868763447,-0.034651160240173,0.022098811343312],[0.10953269153833,-0.05902511999011,-0.04024275764823],[0.010739210061729,0.054925676435232,0.012787991203368]],[[-0.01426221895963,-0.054629396647215,0.037599388509989],[0.029627082869411,-0.025625098496675,0.011141522787511],[0.061568230390549,-0.029216736555099,0.022549174726009]],[[0.025108011439443,-0.031702388077974,-0.028429988771677],[0.073047399520874,-0.0074774287641048,-0.009161957539618],[0.030531795695424,-0.059033345431089,0.037501767277718]],[[-0.0010358679573983,-0.010271892882884,0.0042717722244561],[-0.049257311969995,0.080325864255428,0.0017231825040653],[-0.054814882576466,-0.045988369733095,0.0050953566096723]],[[0.065701887011528,-0.034796964377165,0.0043647936545312],[0.027174953371286,-0.0095618097111583,-0.010130872949958],[-0.0073226951062679,0.038364361971617,0.0094973035156727]],[[-0.02200317569077,0.019093915820122,-0.0092882215976715],[0.018257005140185,-0.033178992569447,0.023221058771014],[0.0048854467459023,0.054402370005846,-0.015299464575946]],[[-0.0024051230866462,0.12869870662689,0.047748796641827],[-0.10982398688793,-0.071495860815048,-0.054330766201019],[0.0071689989417791,-0.095360822975636,-0.018353773280978]],[[-0.014236502349377,0.01680744998157,0.034019138664007],[-0.029205307364464,0.010497545823455,-0.012379110790789],[-0.0074532823637128,-0.0055641061626375,0.017062114551663]],[[0.0055798497051001,-0.014577335678041,0.02385494671762],[0.0093793990090489,-0.022988017648458,0.049470316618681],[-0.0054191341623664,0.036022126674652,-0.0062563177198172]],[[0.024331986904144,0.068593971431255,-0.0084174759685993],[-0.072822369635105,0.025917753577232,0.013755288906395],[0.011706710793078,-0.043524313718081,0.017934693023562]],[[-0.0022398501168936,-0.0093133058398962,0.0030787531286478],[0.012228257954121,0.044695805758238,0.035370800644159],[0.018107069656253,-0.017845751717687,-0.019997332245111]],[[-0.0067414315417409,0.027918802574277,-0.030832648277283],[0.024733491241932,-0.032416380941868,-0.020888602361083],[-0.026372913271189,0.015072425827384,-0.0032220103312284]],[[-0.032739073038101,-0.034151576459408,-0.046489924192429],[-0.095103278756142,-0.0408732034266,-0.091885358095169],[-0.035458642989397,-0.060042507946491,-0.012088480405509]],[[0.025783855468035,0.021658573299646,-0.021225016564131],[0.0046324748545885,-0.048136875033379,0.010670272633433],[-0.00010966770059895,0.034850742667913,-0.0058885863982141]],[[0.028234710916877,-0.03913039714098,-0.057705022394657],[0.0044996575452387,0.0032096232753247,0.017601115629077],[0.002577719045803,0.037434183061123,-0.0088458983227611]],[[0.0034851261880249,-0.011286547407508,0.031717389822006],[0.0028676360379905,-0.010601428337395,0.00025211571482942],[0.0063103246502578,-0.017181344330311,0.026736333966255]],[[-0.0060426169075072,0.025510359555483,0.02729369327426],[-0.024515364319086,-0.020481886342168,-0.061756309121847],[0.0076283463276923,0.023575996980071,-0.01516580209136]]],[[[-0.05025452002883,0.050885275006294,-0.0015626462409273],[0.052184004336596,0.013475042767823,0.0379808396101],[-0.0086635872721672,0.033265020698309,-0.03299031406641]],[[-0.014282791875303,0.017516752704978,-0.086602672934532],[-0.040313474833965,-0.0082196919247508,0.0019936833996326],[0.036150146275759,-0.020470382645726,-0.020071061328053]],[[-0.063109494745731,-0.067910932004452,0.074269384145737],[0.018282733857632,-0.028980333358049,-0.071394734084606],[0.042864225804806,0.029246976599097,0.045357473194599]],[[-0.071511253714561,-0.0059103681705892,0.019731614738703],[-0.019354315474629,0.011693722568452,0.01562543399632],[0.059693869203329,0.014983098953962,0.0091580506414175]],[[0.011233544908464,0.050606090575457,-0.082714334130287],[-0.01004433631897,-0.027536038309336,0.086481869220734],[0.02950649894774,0.0026519468519837,-0.087863318622112]],[[-0.096142932772636,0.046033635735512,-0.021779092028737],[0.031222246587276,-0.025550184771419,0.041502613574266],[0.035179685801268,-0.023807786405087,0.048601716756821]],[[-0.010040859691799,-0.027398711070418,0.03661872446537],[-0.02366628497839,0.019788274541497,-0.021519958972931],[-0.0043936441652477,-0.0046726665459573,0.042752493172884]],[[0.039655610918999,0.0050287558697164,-0.020939446985722],[-0.04691307246685,-0.013223100453615,0.053338412195444],[0.019114723429084,-0.010115573182702,0.055135961622]],[[-0.022441599518061,-0.011595148593187,0.039906393736601],[0.015138141810894,0.051012724637985,-0.027968380600214],[-0.016606491059065,-0.043677911162376,0.026318365707994]],[[0.15777486562729,-0.0060077793896198,0.044974680989981],[-0.030160937458277,-0.050506927073002,-0.049783691763878],[0.042439416050911,-0.049726068973541,-0.00022736057871953]],[[-0.042959969490767,-0.0049620037898421,-0.085675872862339],[-0.0015571195399389,-0.05410198867321,0.059819065034389],[0.025673573836684,0.027266748249531,-0.021732863038778]],[[0.038923177868128,-0.034282881766558,-0.0055423192679882],[-0.049013752490282,-0.04170286282897,0.015843566507101],[0.0039448970928788,0.014964706264436,0.0098746977746487]],[[0.015989804640412,0.029297081753612,-0.014766674488783],[-0.054408725351095,-0.029239492490888,-0.026462910696864],[-0.022613268345594,0.021825507283211,-0.039607968181372]],[[0.03188918158412,0.061438478529453,-0.0044360067695379],[0.04748959094286,-0.010847890749574,0.034308020025492],[0.054562859237194,0.045061219483614,-0.032933436334133]],[[-0.013705238699913,-0.05543277412653,0.031288396567106],[0.030401991680264,0.027376445010304,-0.057761125266552],[0.060138951987028,-0.011930758133531,-0.0052620870992541]],[[0.027449676766992,-0.0078698201104999,-0.063626043498516],[-0.020484866574407,0.033201474696398,0.010906236246228],[-0.021750489249825,0.065111219882965,0.0066521489061415]],[[0.01139160990715,0.0090561732649803,-0.076414674520493],[0.015975700691342,0.099853940308094,0.0060955411754549],[0.013959238305688,-0.011753214523196,0.044079255312681]],[[-0.043151453137398,-0.036500938236713,-0.0058066342025995],[0.047845453023911,0.0073296325281262,-0.025399623438716],[-0.039330516010523,-0.0051822257228196,-0.00025768621708266]],[[0.033487748354673,-0.019432129338384,0.017078835517168],[-0.0024739752989262,0.025522226467729,-0.022620555013418],[0.051355350762606,0.010128125548363,0.020234057679772]],[[-0.062528125941753,0.054452460259199,0.0098361875861883],[-0.06495001912117,0.036129999905825,0.018682645633817],[0.012711738236248,0.028221424669027,-0.012489262968302]],[[-0.042673949152231,-0.023279810324311,-0.051519930362701],[0.018996035680175,-0.024758890271187,-0.037567567080259],[0.039312470704317,-0.013102827593684,-0.025939436629415]],[[0.018192572519183,-0.059298507869244,-0.04521705955267],[-0.0041808248497546,0.01934408955276,-0.0087116798385978],[-0.0011405749246478,0.032180368900299,-0.11191481351852]],[[-0.01161683164537,-0.0086591588333249,0.046153340488672],[0.042227122932673,0.046308442950249,-0.097672618925571],[-0.038820821791887,-0.018083455041051,0.027483467012644]],[[-0.048007514327765,-0.024050632491708,0.041252143681049],[0.0025982137303799,0.016036963090301,0.056136801838875],[-0.044770009815693,0.074526973068714,-0.065759152173996]],[[-0.020190170034766,-0.019473629072309,-0.040647152811289],[0.010690425522625,0.019120313227177,0.018565412610769],[0.033205274492502,-0.036443255841732,-0.052533239126205]],[[-0.035025924444199,-0.021738642826676,-0.0012419394915923],[-0.065481022000313,0.085217863321304,0.027545981109142],[-0.090317025780678,-0.012181737460196,0.010437292978168]],[[-0.033174104988575,-0.079993605613708,-0.044397763907909],[-0.021577391773462,-0.021694852039218,-0.03850457072258],[-0.025655286386609,0.062003016471863,-0.00019161851378158]],[[-0.03511344268918,-0.065778277814388,-0.042545840144157],[-0.012367711402476,0.060598447918892,-0.1219684407115],[0.034737158566713,-0.080856762826443,-0.031599938869476]],[[-0.056614845991135,-0.068966791033745,0.022687258198857],[-0.12872911989689,0.028453201055527,-0.054010387510061],[-0.0030642545316368,-0.05619952082634,0.046081963926554]],[[-0.013865533284843,-0.05027948319912,-0.024317029863596],[-0.012443895451725,0.0089198304340243,-0.0090800821781158],[-0.029231613501906,-0.0019046927336603,0.042030952870846]],[[-0.077024683356285,0.014511004090309,-0.016432244330645],[-0.0019032197305933,-0.0079851998016238,-0.0044100070372224],[0.052002910524607,0.045596063137054,0.0095487842336297]],[[0.034772265702486,0.020310673862696,-0.05626130849123],[-0.050009958446026,-0.035850949585438,0.036455675959587],[0.018146088346839,-0.033046666532755,0.012811557389796]],[[0.033806767314672,-0.018191736191511,-0.0014030508464202],[0.046918254345655,0.048763334751129,0.023822465911508],[-0.051291234791279,-0.010596725158393,0.013943652622402]],[[-0.014742999337614,-0.015428885817528,-0.0081517025828362],[0.018287271261215,0.043694507330656,0.062109090387821],[-0.049038950353861,-0.0089498935267329,-0.010810034349561]],[[-0.017942210659385,-0.0051044099964201,0.0022201337851584],[0.031468383967876,0.03420877456665,0.0059881363995373],[0.01770268753171,0.0021380838006735,0.0087287044152617]],[[0.049616273492575,-0.071194387972355,-0.076336435973644],[-0.092962346971035,-0.071376323699951,0.040165454149246],[-0.051312331110239,-0.058809500187635,-0.069913938641548]],[[0.098240248858929,-0.051596537232399,0.017087329179049],[-0.054369956254959,-0.0060085668228567,-0.050293944776058],[0.00023095034703147,-0.037268944084644,0.073298908770084]],[[0.023504892364144,0.0075431670993567,-0.033697236329317],[-0.082986362278461,-0.015696555376053,-0.011771829798818],[0.032318651676178,-0.030215922743082,0.01739626377821]],[[-0.029467303305864,0.0013159991940483,-0.0066520357504487],[-0.0083422968164086,-0.045745730400085,0.059793397784233],[-0.025218499824405,-0.015653753653169,-0.021209029480815]],[[0.012776272371411,-0.071724019944668,0.048024088144302],[0.010387731716037,0.015166573226452,-0.00190070993267],[-0.006676281336695,-0.01010200381279,0.074153885245323]],[[0.040511019527912,-0.0846913382411,0.027107639238238],[-0.027637388557196,0.0048004663549364,0.014289488084614],[0.015397194772959,-0.048207905143499,0.021099174395204]],[[0.010849563404918,-0.013787964358926,0.053253017365932],[-0.045530010014772,-0.013126741163433,0.056854136288166],[0.0085617769509554,-0.029252972453833,-0.0077911405824125]],[[-0.025484751909971,-0.027349514886737,-0.019617816433311],[-0.032804705202579,0.014492532238364,0.010641288012266],[0.017494805157185,-0.044257815927267,0.060279000550508]],[[-0.01324084866792,-0.00019168232392985,-0.016214273869991],[0.021614264696836,-0.027415633201599,-0.0091332411393523],[0.0058441199362278,-0.030350523069501,0.045218471437693]],[[-0.037859760224819,0.008549096994102,0.047887086868286],[-0.0014036762295291,-0.041516877710819,-0.080606676638126],[-0.046443734318018,-0.0090325810015202,-0.012615879997611]],[[0.063406631350517,-0.040871851146221,0.069212436676025],[-0.034590739756823,-0.089039616286755,0.043785218149424],[0.048492852598429,0.042235009372234,-0.038611676543951]],[[0.03799756988883,-0.026961706578732,-0.05687453225255],[-0.018003210425377,0.04612235724926,-0.084936715662479],[0.04820342361927,-0.037468962371349,-0.041402649134398]],[[-0.019645921885967,-0.057533897459507,0.0091798901557922],[-0.056787516921759,0.055503834038973,0.058706928044558],[0.068486124277115,0.0090460907667875,0.040736269205809]],[[-0.016389954835176,-0.078477717936039,0.090792655944824],[-0.08919894695282,0.010925732553005,-0.038659460842609],[-0.0084894215688109,0.092705875635147,0.029833918437362]],[[0.092109024524689,0.054477229714394,-0.029409606009722],[0.011002356186509,-0.034302569925785,0.042088255286217],[0.047200858592987,-0.019617095589638,-0.074360385537148]],[[-0.028026523068547,-0.010907095856965,0.046082753688097],[-0.028940957039595,0.051314759999514,0.056820966303349],[-0.028753239661455,-0.095599807798862,-0.031416069716215]],[[-0.029648650437593,0.017666961997747,0.025162860751152],[-0.031375478953123,-0.052335608750582,0.050252132117748],[0.019016992300749,-0.0017654305556789,-0.084795877337456]],[[0.0091190822422504,-0.025684596970677,-0.017772249877453],[-0.032072149217129,-0.050477676093578,0.096872344613075],[0.012402431108057,0.028383305296302,0.009067989885807]],[[0.12047518789768,0.018659239634871,0.073764495551586],[0.092995919287205,0.09578512609005,-0.05187064409256],[0.024992408230901,0.026343636214733,0.009739039465785]],[[0.080712102353573,0.037616584450006,-0.047016751021147],[-0.071257300674915,-0.012726866640151,-0.037609163671732],[-0.023483093827963,-0.05505607649684,0.035042982548475]],[[-0.092132359743118,-0.0045064170844853,-0.036333598196507],[-0.0092468215152621,0.0058461506851017,-0.006341896019876],[0.020037587732077,-0.015606672503054,0.036389857530594]],[[0.0048315348103642,-0.028255900368094,-0.014898252673447],[-0.00089503033086658,0.049894187599421,-0.0090102525427938],[-0.0019113699672744,0.071288399398327,-0.059816010296345]],[[-0.030230596661568,-0.026700522750616,-0.023888546973467],[-0.034168370068073,-0.033658631145954,0.053919844329357],[0.028383070603013,-0.0034932044800371,0.024817876517773]],[[-0.074342027306557,0.10138562321663,0.010448482818902],[-0.032041434198618,-0.071935929358006,-0.042326610535383],[-0.076143473386765,0.11307675391436,0.0031703892163932]],[[0.031818188726902,-0.0041935197077692,0.021074008196592],[-0.018981857225299,-0.022921282798052,0.04296462982893],[0.0076053733937442,0.027111236006021,-0.022839421406388]],[[-0.024138234555721,-0.034329880028963,-0.015465648844838],[0.018133759498596,-0.0066872434690595,-0.034803684800863],[0.015332338400185,-0.040732897818089,0.055897492915392]],[[-0.037607245147228,0.0041089840233326,-0.066380865871906],[0.013274224475026,0.0065039787441492,-0.093377888202667],[-0.028611736372113,-0.05164984986186,-0.013268847949803]],[[0.050495978444815,-0.010364986024797,-0.052505057305098],[-0.069115675985813,-0.023208931088448,0.011832146905363],[0.047945607453585,-0.049183458089828,-0.065454266965389]],[[-0.044010411947966,0.032524518668652,0.019146909937263],[0.016023933887482,0.0050765443593264,0.040010496973991],[0.010188594460487,0.072520919144154,-0.052856229245663]]],[[[0.056894488632679,0.070564799010754,-0.10603415220976],[0.055417980998755,-0.020862024277449,-0.11025533080101],[0.1982449144125,-0.0084759648889303,0.030695740133524]],[[-0.07445402443409,-0.069141834974289,0.0047780964523554],[-0.024937458336353,0.00057895836653188,-0.10940604656935],[-0.081849969923496,0.027093581855297,-0.060496237128973]],[[0.014508506283164,0.0087892021983862,-0.037688102573156],[0.0049873157404363,0.0090597467496991,0.011378294788301],[-0.0014989876653999,-0.063084714114666,-0.00076281384099275]],[[-0.0080913752317429,-0.027279213070869,0.018205655738711],[0.099277377128601,0.037895455956459,0.087923057377338],[0.047807857394218,-0.033602118492126,0.070729590952396]],[[0.01651425473392,0.016924390569329,-0.11138875037432],[-0.037980284541845,-0.030424227938056,-0.00704086991027],[-0.067924819886684,-0.043073579668999,0.13916070759296]],[[-0.070621863007545,0.06564386934042,-0.0081096207723022],[-0.061286345124245,-0.034012012183666,0.081195928156376],[0.029320606961846,0.0011342576472089,-0.18182948231697]],[[0.025724597275257,-0.053294699639082,-0.066893368959427],[-0.021186202764511,-0.064400903880596,0.019416639581323],[0.028044458478689,-0.054251007735729,-0.0049010869115591]],[[-0.095087647438049,-0.066975995898247,-0.060813404619694],[0.01344554964453,-0.057087931782007,0.0082552963867784],[0.07526645809412,-0.099831506609917,-0.022839779034257]],[[0.036138914525509,0.045101620256901,0.057558856904507],[-0.0065977526828647,0.073897980153561,0.085226811468601],[0.011696842499077,-0.010846922174096,-0.013222682289779]],[[0.023185046389699,0.047935057431459,0.079015947878361],[-0.016952935606241,-0.16836568713188,-0.016824059188366],[0.074723459780216,-0.089060358703136,0.020022640004754]],[[0.065477296710014,0.093584164977074,-0.053159777075052],[-0.0026896144263446,-0.010432527400553,-0.078343123197556],[-0.0034679211676121,0.015077448450029,-0.016122072935104]],[[0.071123845875263,0.13393679261208,0.029312800616026],[0.0075539639219642,0.018727790564299,0.086327232420444],[0.049863208085299,-0.0041196537204087,-0.0026181729044765]],[[-0.01310870423913,-0.036508101969957,-0.15611708164215],[-0.028015207499266,0.064488805830479,-0.34985932707787],[0.02332934178412,-0.13831010460854,-0.2443250566721]],[[0.087278634309769,0.014364488422871,0.0086142523214221],[-0.0034188646823168,-0.020868582651019,-0.016599582508206],[0.035509429872036,0.053138747811317,0.083346776664257]],[[-0.016831062734127,0.082396201789379,0.093080878257751],[-0.074806146323681,-0.10164221376181,0.05156022682786],[-0.12422826141119,-0.043203804641962,-0.050680909305811]],[[0.0084133297204971,-0.028642227873206,0.02177619934082],[-0.059427570551634,0.05343297123909,0.01427230425179],[0.0098114069551229,-0.053852569311857,-0.073042072355747]],[[0.0077215088531375,-0.031642615795135,0.08406400680542],[0.038029383867979,0.018746076151729,-0.053409166634083],[0.067574553191662,-0.025089979171753,-0.086531586945057]],[[0.028202425688505,-0.010623480193317,0.034275878220797],[-0.03989477828145,-0.012045565992594,0.0029572045896202],[-0.026819227263331,-0.073001995682716,-0.063579000532627]],[[-0.02961159311235,-0.007138829678297,-0.0240618288517],[0.083677358925343,-0.027478842064738,-0.023410988971591],[-0.032953482121229,-0.0026774199213833,0.016502590849996]],[[-0.020970560610294,0.03096847422421,-0.010115149430931],[0.0071398760192096,0.0016818868461996,0.030947664752603],[0.020729942247272,0.074695512652397,0.0743023827672]],[[-0.035847272723913,-0.02296101488173,-0.033704686909914],[-0.063118509948254,-0.028170198202133,-0.053330700844526],[0.0076640076003969,0.045242842286825,-0.054211542010307]],[[0.058157283812761,0.072081483900547,0.11434189230204],[0.050847645848989,-0.044338349252939,-0.05699297785759],[0.033781550824642,0.10466554015875,0.016503931954503]],[[-0.0090492460876703,0.040358629077673,-0.0085318265482783],[-0.0033630740363151,-0.075372569262981,-0.012305506505072],[0.005497831851244,0.05413131415844,0.01646232791245]],[[0.12095061689615,0.10501053929329,-0.012888972647488],[-0.079180009663105,0.07053603976965,-0.035641688853502],[0.095909126102924,0.0051904865540564,-0.053502127528191]],[[0.042195349931717,-0.037564162164927,0.09234195202589],[0.045651815831661,-0.0050934599712491,0.18105085194111],[0.091778747737408,0.027759021148086,0.035968296229839]],[[-0.049223687499762,-0.019153729081154,-0.020633982494473],[0.0087509630247951,-0.095284141600132,0.030926270410419],[-0.18065720796585,0.029732195660472,-0.025532584637403]],[[0.046890109777451,0.12225522845984,0.0015036050463095],[0.050353072583675,0.10352679342031,0.066744491457939],[-0.017329636961222,-0.014410046860576,0.039627511054277]],[[0.023433497175574,-0.030808825045824,-0.023870876058936],[0.082996614277363,-0.053407497704029,0.024741631001234],[-0.054479353129864,0.021068826317787,-0.042069479823112]],[[-0.047922905534506,0.11643300205469,0.078754350543022],[-0.014852127991617,-0.087137989699841,0.027683546766639],[0.027882007881999,0.051238100975752,-0.030319256708026]],[[-0.065681926906109,0.003326068399474,-0.0579619333148],[-0.085503973066807,-0.065583288669586,0.00079868693137541],[-0.12456731498241,-0.087839849293232,-0.048791471868753]],[[-0.048705089837313,-0.046403400599957,-0.07510632276535],[-0.0075693866237998,0.0066825170069933,-0.15531024336815],[-0.069959633052349,0.043896153569221,-0.021431341767311]],[[-0.008506752550602,-0.027324812486768,-0.094584219157696],[0.012158235535026,-0.13690258562565,0.033802382647991],[-0.047931399196386,-0.10166126489639,0.13280741870403]],[[-0.005357320420444,-0.066859617829323,-0.18604452908039],[-0.031946897506714,0.15968835353851,-0.084581956267357],[0.11682628840208,-0.046237975358963,-0.10415858030319]],[[0.0057953405193985,0.015240173786879,-0.15631337463856],[-0.033809386193752,0.095393449068069,-0.057539980858564],[-0.009413430467248,0.0051353774033487,-0.15111121535301]],[[-0.031747050583363,-0.10286734253168,0.043363623321056],[-0.0033296458423138,-0.047014199197292,0.053517889231443],[-0.0081079658120871,-0.01900009252131,0.077088735997677]],[[-0.001634324202314,0.01210615132004,-0.02637892216444],[-0.009248455055058,0.0039331107400358,0.011808795854449],[-0.10525339096785,-0.10211295634508,-0.091923601925373]],[[-0.008521449752152,-0.17089392244816,0.082562603056431],[-0.013883666135371,-0.079334884881973,-0.017166346311569],[0.023224107921124,0.050559062510729,-0.033606562763453]],[[0.040568750351667,0.073791451752186,0.088369853794575],[0.00036160324816592,0.051629316061735,0.043911650776863],[-0.16493682563305,0.11460098624229,0.021961156278849]],[[0.047484874725342,0.0024867986794561,0.058570832014084],[-0.038317829370499,0.037117458879948,-0.13326732814312],[0.0060584815219045,-0.046314634382725,-0.15389023721218]],[[0.023393638432026,0.015519022941589,-0.086038172245026],[-0.0088270418345928,0.016910305246711,-0.15991504490376],[0.0062558711506426,-0.095984421670437,-0.083533741533756]],[[-0.036676269024611,0.11809727549553,0.016962338238955],[-0.012938761152327,-0.10786788165569,0.010270850732923],[-0.070823512971401,-0.065142065286636,0.01759210601449]],[[0.0011132783256471,0.011870137415826,0.026310114189982],[0.017088785767555,0.066296428442001,0.019929265603423],[-0.051401406526566,-0.046539932489395,0.072256371378899]],[[-0.059087838977575,0.0440838560462,-0.071408845484257],[-0.067072167992592,-0.21288648247719,0.030727175995708],[0.09154287725687,-0.032382901757956,0.046450488269329]],[[0.0017626913031563,0.011330025270581,0.21633903682232],[-0.045512046664953,0.091848835349083,-0.037479367107153],[0.10597704350948,-0.00082262750947848,-0.07760176807642]],[[-0.054405562579632,-0.063782803714275,-0.053294979035854],[-0.1121311634779,-0.0091581270098686,-0.11668621003628],[0.035969343036413,-0.014593258500099,-0.079409405589104]],[[-0.021748943254352,0.0057831043377519,-0.02452066168189],[0.027665503323078,-0.044344689697027,-0.069205805659294],[0.0069567300379276,0.054823324084282,0.025249125435948]],[[-0.061262488365173,0.023182734847069,-0.079587116837502],[-0.03795413300395,0.030024966225028,-0.036694090813398],[-0.039576545357704,0.036853395402431,0.086951494216919]],[[-0.060739852488041,-0.067745640873909,-0.079264797270298],[-0.0051882700063288,-0.07482797652483,-0.014487861655653],[-0.035002250224352,0.076285399496555,0.025377796962857]],[[-0.018396677449346,0.095934152603149,0.071925573050976],[0.024246545508504,0.023637279868126,0.11509878188372],[-0.052128840237856,0.084741324186325,0.035821259021759]],[[0.023415189236403,-0.010288600809872,-0.018568847328424],[0.005846485029906,0.015414603054523,-0.036280315369368],[-0.089131124317646,-0.00041322325705551,-0.079322412610054]],[[0.0085241757333279,0.028819721192122,-0.0033994442783296],[-0.0060713938437402,0.066026858985424,0.061160914599895],[0.068732649087906,-0.10298772901297,-0.035498403012753]],[[-0.049141500145197,-0.071169123053551,0.016361378133297],[-0.019973870366812,0.068262360990047,0.029732534661889],[0.044988136738539,0.041222013533115,0.0086438758298755]],[[-0.072197251021862,-0.022081440314651,-0.077606908977032],[-0.090176410973072,-0.022048218175769,-0.063281640410423],[0.047882042825222,0.00033794168848544,0.033388499170542]],[[0.036547530442476,0.15233360230923,0.041233062744141],[0.10557251423597,0.07031911611557,0.12390926480293],[-0.01009741704911,0.11181879043579,0.079673700034618]],[[0.089629396796227,0.019095817580819,-0.24163508415222],[0.049809362739325,0.032482501119375,0.016058476641774],[0.018464123830199,-0.13160873949528,0.10984453558922]],[[-0.015549851581454,-0.088854685425758,-0.040501229465008],[-0.0016431278781965,0.00055047468049452,0.030336823314428],[-0.00068575324257836,-0.041622310876846,-0.064225070178509]],[[-0.098251156508923,-0.057583674788475,-0.10784167051315],[-0.074114285409451,-0.088588908314705,-0.20548991858959],[-0.12917536497116,0.040548201650381,-0.16117024421692]],[[0.0048085367307067,0.05270441994071,-0.058445744216442],[-0.0045259846374393,-0.016800411045551,-0.0083433333784342],[-0.0023574756924063,0.045410726219416,0.011679107323289]],[[-0.064397044479847,0.085472285747528,0.017920276150107],[-0.038666490465403,0.025530194863677,0.0054635494016111],[-0.027757609263062,-0.043741565197706,0.00145766697824]],[[-0.0053966883569956,0.013560769148171,0.066470712423325],[0.0009479708969593,0.047544647008181,0.04493910446763],[0.030699867755175,-0.025359502062201,-0.027921635657549]],[[0.043654095381498,0.066444166004658,0.090572133660316],[-0.03035725094378,0.028406880795956,0.081027366220951],[0.0042290952987969,0.14583840966225,0.042689375579357]],[[0.034202892333269,-0.0099468994885683,0.018667636439204],[0.0060611893422902,0.073659054934978,-0.041227363049984],[0.039429921656847,0.077848300337791,-0.020486555993557]],[[0.11593660712242,0.037051577121019,0.0087922979146242],[-0.059816505759954,-0.043234266340733,0.084610939025879],[0.035262458026409,-0.11803336441517,-0.11970020085573]],[[-0.010726865381002,-0.021878812462091,0.072832472622395],[0.024449087679386,0.00041098479414359,0.061118833720684],[-0.0037730105686933,-0.075109586119652,-0.065500885248184]]],[[[0.17675669491291,0.18116894364357,-0.13421942293644],[0.10952584445477,0.017213381826878,0.032612323760986],[-0.0074734045192599,-0.019175307825208,-0.2328629642725]],[[-0.056370999664068,-0.016679493710399,0.041325479745865],[-0.078578770160675,0.03545044362545,-0.016230441629887],[-0.033043939620256,0.066337995231152,0.066849686205387]],[[-0.069539591670036,-0.080994948744774,-0.0015384200960398],[0.026480343192816,0.0062884227372706,0.063417546451092],[0.091760776937008,0.014673464931548,-0.017850561067462]],[[-0.16254639625549,-0.18506646156311,-0.038517855107784],[0.040792897343636,-0.023369643837214,-0.05511611327529],[0.11868355423212,0.08265532553196,-0.085663177073002]],[[-0.062753215432167,-0.17956812679768,-0.031690642237663],[0.019339807331562,-0.05743321031332,0.089815095067024],[0.058871760964394,-0.039819281548262,0.02564013376832]],[[-0.050755254924297,-0.068096503615379,-0.038944162428379],[0.039109993726015,-0.10716516524553,-0.10768509656191],[0.092164054512978,-0.024789284914732,-0.13778752088547]],[[-0.021710770204663,-0.02418945170939,-0.025119652971625],[-0.028007637709379,0.11699420213699,-0.024846699088812],[-0.024286242201924,0.058105815201998,0.11932118237019]],[[0.021406000480056,0.10485501587391,-0.012456763535738],[-0.0054321414791048,-0.049100577831268,-0.053475812077522],[-0.031620811671019,0.045334033668041,0.0045054322108626]],[[-0.013105757534504,0.099176958203316,0.028548881411552],[-0.090312786400318,0.096425130963326,0.042537592351437],[0.039117634296417,0.018688408657908,0.020455369725823]],[[-0.049636524170637,-0.095128297805786,0.060549821704626],[-0.044889628887177,0.13324202597141,0.071799859404564],[-0.024125874042511,0.081524915993214,-0.11487494409084]],[[0.041643165051937,0.14168539643288,-0.026056207716465],[0.11569213867188,-0.11601164191961,-0.10992491990328],[-0.052080202847719,-0.21105696260929,-0.16522124409676]],[[-0.067462310194969,0.011580801568925,0.028690621256828],[0.0093315886333585,-0.035479635000229,0.033659722656012],[0.065953262150288,-0.024069126695395,0.012071878649294]],[[-0.22390347719193,-0.1967755407095,-0.16199189424515],[-0.1665418446064,0.22657153010368,0.15619017183781],[0.018561817705631,0.0271329395473,-0.12038183957338]],[[0.24373170733452,0.12121936678886,0.01614385843277],[0.10539771616459,0.048107925802469,-0.02677758410573],[0.020663445815444,-2.4257569748443e-06,-0.20017449557781]],[[0.12435914576054,0.061081789433956,0.03523763641715],[0.046582546085119,0.027787588536739,-0.1346582621336],[0.026872513815761,-0.085046403110027,-0.15256309509277]],[[0.084091834723949,-0.2113831192255,-0.10604725778103],[0.080379031598568,0.029883133247495,-0.052767507731915],[0.0055922521278262,-0.010656854137778,-0.074774257838726]],[[-0.061240073293447,-0.0314731746912,0.064749777317047],[0.022032927721739,-0.050087884068489,-0.065863840281963],[0.048206657171249,-0.057812999933958,-0.042166627943516]],[[-0.27212050557137,-0.24863986670971,-0.24403713643551],[-0.12262031435966,0.059564404189587,0.20120792090893],[-0.045469615608454,0.03860767558217,0.11965399980545]],[[0.042393922805786,-0.039486326277256,-0.084965728223324],[0.016102375462651,-0.03812912851572,-0.039775811135769],[0.021255595609546,0.062917955219746,-0.020187638700008]],[[-0.0052791023626924,0.041455503553152,0.018761085346341],[-0.044935870915651,-0.037699643522501,0.10269426554441],[0.0030408385209739,0.011749315075576,-0.043834619224072]],[[-0.019247077405453,0.05622585490346,-0.12038870155811],[0.00016896567831282,0.057036057114601,-0.076633788645267],[0.017531787976623,0.022406511008739,-0.12191254645586]],[[0.11038657277822,-0.25879207253456,-0.069542855024338],[-0.043467987328768,0.019511772319674,0.0083316732198],[0.084314242005348,0.024041272699833,0.067168191075325]],[[-0.072549976408482,0.0107934307307,-0.027185717597604],[-0.076254777610302,0.038789134472609,0.11430106312037],[-0.0045231627300382,-0.012553559616208,0.045952379703522]],[[-0.19288116693497,-0.17476430535316,0.025639457628131],[-0.080731987953186,-0.011433023028076,0.013441746123135],[-0.091219499707222,-0.073300302028656,-0.082644499838352]],[[0.03413337469101,0.0796854570508,0.073064096271992],[-0.049467690289021,0.035166945308447,0.096628271043301],[-0.0095162903890014,0.0044642724096775,0.023209178820252]],[[-0.084382385015488,0.013002519495785,-0.029110075905919],[0.0085240732878447,-0.093418434262276,-0.00030897685792297],[0.039122108370066,0.082236714661121,0.15073372423649]],[[-0.010341388173401,0.0087843099609017,-0.042351651936769],[0.076183579862118,0.25231629610062,0.067073352634907],[0.051240488886833,-0.096206471323967,0.02743379957974]],[[0.08038005977869,0.05429957062006,-0.061597589403391],[0.16947685182095,-0.15490083396435,0.0088078612461686],[-0.071802631020546,-0.030324073508382,0.050439994782209]],[[-0.0084575992077589,-0.00047434700536542,0.039910227060318],[0.0067169717513025,-0.009376173838973,-0.02416412346065],[-0.034985739737749,0.020064000040293,0.083589024841785]],[[-0.014782102778554,-0.13582402467728,-0.063861556351185],[-0.11977326124907,-0.24116444587708,0.15252748131752],[-0.0088291438296437,0.11794446408749,0.083200603723526]],[[0.0065568895079195,0.10825238376856,-0.0042499089613557],[-0.14027743041515,-0.19321788847446,-0.057557221502066],[-0.082910925149918,0.068987712264061,0.036111071705818]],[[-0.10983414202929,-0.07199489325285,-0.025514153763652],[0.056230708956718,0.11634808778763,0.070469819009304],[-0.016751447692513,0.027232443913817,0.11014553159475]],[[-0.064617797732353,0.089971773326397,-0.10489690303802],[-0.016039462760091,0.10267894715071,-0.010033925995231],[-0.027855914086103,-0.036270573735237,0.11968150734901]],[[-0.036571208387613,-0.13367411494255,-0.095968075096607],[-0.15981012582779,-0.1033945903182,0.013989639468491],[-0.13192680478096,-0.0057093212381005,-0.15181958675385]],[[-0.1686284840107,-0.043298255652189,0.080982066690922],[-0.17700047791004,0.0476592220366,-0.037827797234058],[-0.12808232009411,0.078764319419861,0.036213539540768]],[[-0.15086475014687,-0.087313935160637,0.038363426923752],[-0.060237713158131,0.092607825994492,0.14598721265793],[-0.057792127132416,-0.059468824416399,-0.12163812667131]],[[-0.046153489500284,0.042952347546816,-0.084328062832355],[0.087311260402203,0.0065750107169151,0.049038708209991],[-0.0046772328205407,-0.019278325140476,-0.0049740192480385]],[[-0.11007548868656,-0.07903815060854,-0.00043646642006934],[0.015277575701475,-0.010561978444457,0.045997966080904],[0.028180440887809,0.034257236868143,0.0072591444477439]],[[-0.033575486391783,-0.026743732392788,0.12348961830139],[0.017694938927889,-0.019901951774955,0.046834353357553],[0.01883789896965,0.005427441559732,0.092908978462219]],[[-0.039924453943968,-0.057175822556019,-0.12706181406975],[0.038407322019339,0.064537420868874,-0.13497696816921],[0.0079820808023214,-0.0081202294677496,-0.016611944884062]],[[-0.082302421331406,-0.028031677007675,-0.036185700446367],[-0.050576142966747,-0.034750983119011,0.16040775179863],[0.00037782656727359,0.12897233664989,-0.036692082881927]],[[0.15207104384899,0.059671528637409,0.016089297831059],[0.039247151464224,0.013833254575729,-0.1435222774744],[-0.018885895609856,-0.08147718757391,0.033908318728209]],[[0.11014481633902,0.07267102599144,0.031217187643051],[-0.10486617684364,0.015645496547222,-0.16881692409515],[-0.0042914454825222,-0.057451892644167,0.01434704195708]],[[0.0034148765262216,0.030811667442322,-0.0052554155699909],[-0.020911103114486,0.080917298793793,-0.068585246801376],[-0.054712697863579,-0.1066185310483,0.091071411967278]],[[-0.023506777361035,-0.0078078210353851,-0.039577286690474],[-0.14196778833866,0.076484851539135,-0.051922298967838],[-0.02958576194942,0.051430024206638,0.051548417657614]],[[0.038601081818342,-0.0047722146846354,0.045837178826332],[-0.006909757386893,-0.050341349095106,-0.12095295637846],[0.00021568273950834,-0.0013039571931586,-0.03677261993289]],[[-0.059547733515501,-0.22396758198738,-0.024561084806919],[-0.071091562509537,0.063111804425716,-0.025140410289168],[-0.046520099043846,-0.04697835072875,0.0139933032915]],[[-0.053966086357832,-0.01180964242667,-0.0054159071296453],[-0.052972540259361,-0.14303497970104,-0.053065553307533],[0.083669759333134,0.0050606243312359,-0.024938823655248]],[[-0.1229667365551,-0.071052886545658,-0.039726655930281],[-0.072401292622089,0.1412644982338,0.12524497509003],[-0.066238202154636,0.10090252012014,0.023507218807936]],[[-0.060138788074255,0.078950203955173,0.071355894207954],[-0.048110254108906,-0.027375567704439,-0.026165392249823],[-0.038472943007946,-0.096452347934246,-0.068542532622814]],[[0.017773829400539,-0.027983913198113,-0.014427194371819],[0.030162075534463,0.10877112299204,0.031333424150944],[0.025251485407352,-0.027407482266426,0.044026028364897]],[[-0.030513074249029,0.099620409309864,-0.066232658922672],[0.024681847542524,-0.083372257649899,-0.0074415937997401],[0.033179327845573,0.02940246462822,0.026689682155848]],[[-0.06266076862812,0.098737813532352,0.0029600781854242],[-0.051376774907112,-0.10199148207903,-0.11624312400818],[-0.020314889028668,0.13362294435501,0.10767539590597]],[[0.3151518702507,0.12735436856747,0.06953901052475],[0.17814315855503,0.11147928982973,0.02214078605175],[0.10424573719501,-0.0085455169901252,-0.1484430283308]],[[0.062522552907467,0.10756171494722,0.21976679563522],[-0.12685716152191,0.0072059282101691,0.10517802834511],[-0.1947784870863,-0.019656825810671,0.01256747264415]],[[-0.081683345139027,-0.026554718613625,0.014148937538266],[-0.051290657371283,0.040013294667006,0.11803434044123],[0.052802454680204,0.035902731120586,0.066358759999275]],[[-0.082119949162006,-0.17655411362648,-0.038346160203218],[-0.014608766883612,0.20339435338974,0.032987397164106],[0.017544334754348,-0.0069862301461399,-0.069323271512985]],[[0.03731657192111,0.014773664996028,-0.013010839931667],[-0.1335951089859,-0.17961300909519,-0.22083996236324],[-0.023508131504059,-0.03605617210269,-0.076477527618408]],[[-0.019453313201666,0.011621210724115,-0.058797046542168],[0.064631156623363,0.025659289211035,-0.046304129064083],[0.016501192003489,-0.052039861679077,-0.072809860110283]],[[0.077393218874931,0.06310947984457,0.017847035080194],[0.10268668830395,-0.023631777614355,-0.08022478967905],[0.024699851870537,0.029249232262373,-0.077075153589249]],[[-0.18805770576,-0.20481152832508,-0.0069415625184774],[-0.20098672807217,-0.14699617028236,0.13961619138718],[0.027384001761675,0.081513844430447,-0.081497430801392]],[[-0.13886742293835,-0.09371691942215,-0.072499603033066],[-0.13846488296986,0.0035908576101065,-0.034213200211525],[-0.017109675332904,0.056048445403576,0.020801685750484]],[[0.033529914915562,-0.19679461419582,-0.0029229130595922],[-0.14914618432522,0.027580445632339,-0.058117143809795],[-0.065392412245274,-0.084347188472748,-0.091421559453011]],[[-0.011457561515272,0.00047300511505455,0.044594347476959],[-0.054549794644117,-0.070010751485825,0.088365100324154],[-0.094012998044491,-0.0090368967503309,0.033981140702963]]],[[[0.11084047704935,0.028591802343726,0.10138209909201],[-0.01922408118844,-0.030533760786057,-0.010643679648638],[0.012249764986336,-0.034469954669476,-0.0098059605807066]],[[-0.062413245439529,-0.010612860321999,-0.015745246782899],[0.024723140522838,-0.028302576392889,-0.023045672103763],[-0.0115184513852,0.029411753639579,0.092962920665741]],[[0.090580120682716,-0.015716360881925,-0.053998865187168],[0.038993656635284,0.0015412514330819,-0.066329777240753],[-0.027913514524698,-0.0097040645778179,0.072602540254593]],[[-0.15463601052761,-0.0081667490303516,0.018638564273715],[0.096595019102097,-0.0099823633208871,0.01639424264431],[0.058334421366453,-0.063339464366436,-0.0068389740772545]],[[0.0049472940154374,-0.044492527842522,-0.030593445524573],[-0.016169691458344,0.011778444051743,0.021782442927361],[0.070856377482414,0.025162559002638,0.0003445201436989]],[[-0.019492760300636,-0.044956132769585,-0.11541827023029],[-0.017172893509269,0.032846268266439,-0.11840139329433],[0.076497845351696,-0.09026475250721,0.0048974058590829]],[[-0.0043506026268005,0.0069429925642908,0.020888831466436],[0.039205726236105,-0.018031340092421,-0.016173386946321],[0.060771580785513,-0.0049246572889388,0.0047152945771813]],[[0.064771570265293,-0.031241569668055,-0.099857345223427],[0.035322032868862,0.032442651689053,0.050518952310085],[-0.023064848035574,0.0073047513142228,0.076741322875023]],[[-0.053640581667423,0.034125670790672,0.10645492374897],[-0.055680174380541,0.049529150128365,0.041677042841911],[-0.043923579156399,-0.035121478140354,-0.057952951639891]],[[-0.00093514035688713,0.13114611804485,0.071275465190411],[0.0031508337706327,-0.098555587232113,-0.084920786321163],[0.030016774311662,-0.02710728533566,-0.022220455110073]],[[0.005791480652988,-0.0013622618280351,0.088179193437099],[-0.069216139614582,-0.026833629235625,-0.036556553095579],[-0.016512054949999,0.042418777942657,-0.068065881729126]],[[0.0094545045867562,-0.017795760184526,-0.010163629427552],[0.0008883333648555,-0.082993842661381,0.04392696544528],[0.0082621723413467,-0.051916223019361,-0.0218875259161]],[[0.0058059394359589,-0.091229610145092,-0.06592570245266],[0.047462567687035,0.13728898763657,0.061962883919477],[0.0049782115966082,-0.06430908292532,-0.05375349521637]],[[0.0078753428533673,-0.022927656769753,0.032307550311089],[0.061677921563387,0.008822288364172,0.032323468476534],[0.037480290979147,0.042008545249701,-0.012568278238177]],[[0.094878777861595,0.10929401963949,0.046881299465895],[0.059016741812229,-0.064753293991089,-0.014789702370763],[-0.097431369125843,-0.046758107841015,-0.19145956635475]],[[-0.0067160637117922,0.010682239197195,-0.099657334387302],[0.0079351458698511,-0.069610089063644,-0.0098785841837525],[-0.066290989518166,-0.016268698498607,0.075366578996181]],[[-0.025151021778584,0.011073014698923,-0.02961315587163],[0.088072292506695,0.050622470676899,-0.025847075507045],[-0.024078562855721,-0.010624415241182,0.020582102239132]],[[-0.055770799517632,-0.058605261147022,-0.1017986908555],[0.047284867614508,-0.031972199678421,-0.042112670838833],[0.086740672588348,0.036267567425966,0.07732217758894]],[[0.017742581665516,0.049184706062078,0.06535754352808],[-0.058394867926836,-0.13746984302998,-0.023010114207864],[-0.0071887695230544,0.011500598862767,0.033140424638987]],[[-0.0095815202221274,-0.036885067820549,0.050309520214796],[0.021628370508552,0.036701574921608,0.040649365633726],[-0.007000467274338,-0.0053751142695546,0.047801733016968]],[[-0.0041020982898772,0.05871295183897,-0.026881027966738],[0.062464598566294,-0.012884206138551,0.0098654292523861],[-0.018077209591866,0.030360545963049,0.02453282289207]],[[0.075864486396313,-0.056503526866436,-0.0050108744762838],[-0.031734582036734,0.033021699637175,0.00090549577726051],[0.03196407854557,-0.028878422454,0.070172436535358]],[[-0.0037637541536242,-0.0049204947426915,-0.051858980208635],[0.016119662672281,-0.046132523566484,0.033928170800209],[0.037208337336779,0.029001588001847,-0.00096177880186588]],[[0.022307837381959,-0.032311696559191,0.012430244125426],[-0.027944752946496,0.06398818641901,-0.013222409412265],[-0.034356568008661,-0.078273855149746,-0.052594695240259]],[[0.028856612741947,0.03155281022191,0.010376720689237],[-0.014370475895703,-0.00022223919222597,-0.014118082821369],[0.0020652404054999,0.078608371317387,-0.021215043962002]],[[-0.027573902159929,0.010176746174693,-0.11347136646509],[0.0051025222055614,-0.034396879374981,-0.088073864579201],[0.05616433173418,0.0021954725962132,-0.0094215087592602]],[[-0.017340974882245,-0.086045622825623,-0.05423104390502],[-0.011551833711565,0.086453080177307,0.039795208722353],[0.053582578897476,-0.02283189445734,-0.014968330040574]],[[-0.065051503479481,0.0029740552417934,0.004306476097554],[0.027022318914533,0.012985591776669,0.044844001531601],[-0.004604828543961,0.070630192756653,0.0064951423555613]],[[0.040068250149488,0.037335447967052,-0.02211694791913],[-0.10926318913698,-0.010298289358616,0.18118235468864],[-0.085940450429916,0.0074098454788327,0.012531544081867]],[[0.084248729050159,0.030443634837866,0.019462483003736],[0.0056173671036959,-0.052085395902395,0.010486304759979],[-0.048144400119781,-0.056175027042627,-0.0044795745052397]],[[-0.0028830198571086,-0.044988751411438,-0.028271917253733],[-0.07283379137516,0.0096215540543199,-0.091029912233353],[0.023986268788576,-0.0087051158770919,0.092017062008381]],[[0.090564176440239,0.033198721706867,0.089222893118858],[-0.15194350481033,-0.20125363767147,-0.12349193543196],[-0.073509484529495,0.040021382272243,0.13297376036644]],[[-0.017908398061991,-0.012974948622286,0.027403123676777],[-0.073607891798019,-0.018730789422989,-0.091507710516453],[0.012230514548719,0.0066823321394622,-0.074348866939545]],[[0.010254449211061,0.024184761568904,-0.015758343040943],[0.075200736522675,0.029975309967995,0.01573290117085],[0.002432462759316,-0.0067326514981687,-0.00098833406809717]],[[-0.095029108226299,-0.065955810248852,-0.032690659165382],[0.074888043105602,0.10535038262606,0.095032632350922],[0.065581530332565,-0.040972806513309,-0.085404753684998]],[[0.0092473737895489,-0.051539283245802,-0.083743363618851],[-0.011642210185528,0.14590141177177,0.037745784968138],[-0.053457837551832,-0.077419213950634,0.008295183070004]],[[-0.027023358270526,-0.01958685554564,0.031430769711733],[0.01947595924139,0.0070996391586959,0.079779915511608],[0.088583000004292,-0.017339751124382,0.033730879426003]],[[0.04858423769474,0.038008712232113,-0.023027412593365],[-0.036077830940485,-0.011769122444093,-0.045273933559656],[0.076105497777462,0.073905400931835,0.02702178992331]],[[0.023276165127754,0.054376572370529,0.057496018707752],[0.020938895642757,0.015186649747193,-0.038364578038454],[-0.042036179453135,-0.016950884833932,0.016051683574915]],[[-0.034149076789618,-0.069274589419365,-0.039773266762495],[0.021628133952618,-0.0045238872990012,0.060099061578512],[0.0056714033707976,-0.022864049300551,-0.0066550681367517]],[[0.019269097596407,-0.0066188587807119,-0.044834893196821],[-0.051946375519037,-0.013494216836989,-0.029228428378701],[-0.066873393952847,0.060196001082659,0.015836741775274]],[[-0.0051324996165931,-0.088276386260986,-0.067301481962204],[-0.01394856441766,0.12438967078924,0.072542808949947],[0.0164680685848,-0.068800657987595,0.043806068599224]],[[0.055242571979761,0.010224846191704,0.0043684709817171],[-0.14391908049583,0.013235485181212,0.027257710695267],[-0.056574560701847,0.017806805670261,0.035480003803968]],[[0.073270618915558,0.0084730004891753,0.020471699535847],[0.07869166135788,0.063274696469307,-0.038416910916567],[-0.039876211434603,-0.1084220930934,-0.073422595858574]],[[-0.031930886209011,-0.029184069484472,-0.15548567473888],[0.039136230945587,0.059654716402292,-0.033829461783171],[0.022177221253514,-0.016899744048715,-0.041747141629457]],[[-0.014806130900979,0.04916574805975,-0.01835803873837],[0.023119904100895,-0.054203875362873,0.03246721252799],[-0.028439540416002,-0.055613294243813,0.047453410923481]],[[0.0068653891794384,-0.017074389383197,-0.10141545534134],[0.072995290160179,0.045782387256622,0.062608458101749],[0.17410281300545,-0.060997106134892,-0.026901727542281]],[[-0.020716197788715,-0.06510766595602,-0.023839337751269],[0.058893531560898,0.001075676176697,0.009591493755579],[0.0072536375373602,0.072302147746086,-0.044015649706125]],[[-0.066373161971569,-0.028069905936718,0.023777106776834],[0.0068505615927279,-0.0017970952903852,-0.062105361372232],[0.085189469158649,0.079455927014351,0.023098886013031]],[[0.1008443236351,0.026700040325522,-0.011841188184917],[0.080759957432747,0.015138068236411,-0.030478399246931],[-0.019241165369749,-0.055888708680868,0.047379579395056]],[[-0.034734737128019,-0.025394082069397,0.04458524286747],[-0.023121180012822,-0.081869632005692,-0.10406312346458],[-0.069083541631699,-0.010557096451521,-0.026029895991087]],[[-0.0051967492327094,0.058438450098038,0.022201035171747],[0.015524620190263,-0.055539563298225,-0.032234217971563],[-0.026772476732731,0.022473344579339,0.024837112054229]],[[0.07708914577961,-0.033745191991329,-0.024420285597444],[-0.042597949504852,0.067629434168339,0.027396580204368],[0.067172728478909,0.056765928864479,-0.0096902074292302]],[[0.061153415590525,-0.0012482868041843,-0.012268323451281],[0.0079731475561857,-0.015465993434191,0.081676304340363],[-0.058535493910313,0.02423639036715,-0.016014000400901]],[[-0.083457417786121,0.028406703844666,-0.068018101155758],[-0.0238246191293,0.0027165592182428,0.0043227281421423],[-0.00058392307255417,-0.009987928904593,-0.011078865267336]],[[-0.030079741030931,0.0021143858321011,-0.040637008845806],[0.036467261612415,0.050004951655865,-0.0055714580230415],[0.0012890773359686,0.027215858921409,0.087433032691479]],[[-0.019551353529096,-0.014282803982496,0.016206383705139],[-0.070105902850628,0.0034247369039804,-0.04201776906848],[0.051436249166727,-0.02081504277885,-0.013866614550352]],[[-0.0010816981084645,0.019742833450437,-0.0050263102166355],[-0.016494994983077,-0.05780852586031,-0.096157558262348],[0.010430294089019,-0.023001225665212,-0.052272133529186]],[[0.072072461247444,0.0019027037778869,0.081900097429752],[-0.012845505960286,0.061581928282976,-0.038484089076519],[0.022522257640958,-0.059331975877285,0.023932905867696]],[[0.018670877441764,-0.030972624197602,0.027162671089172],[-0.00095517834415659,0.045436814427376,-0.013339932076633],[0.0095021203160286,-0.0011818673228845,-0.044686675071716]],[[-0.020845018327236,-0.0069037205539644,-0.042158894240856],[0.044480986893177,-0.048354867845774,0.085770837962627],[0.080898270010948,-0.068613663315773,-0.061607282608747]],[[0.0025081348139793,0.071753926575184,-0.071860782802105],[0.022281017154455,0.033347308635712,-0.079672455787659],[0.041438650339842,0.0061684451065958,-0.084078721702099]],[[0.063778109848499,-0.036729890853167,0.047647036612034],[0.025744134560227,0.019999047741294,0.042160205543041],[0.050463359802961,-0.032181199640036,0.058068491518497]],[[0.040398132055998,-0.012004184536636,-0.044782053679228],[0.040753837674856,-0.062507562339306,0.067681103944778],[0.015353939495981,0.023212322965264,-0.009138529188931]]],[[[-0.037918698042631,0.067545227706432,-0.0032663373276591],[-0.02015825919807,-0.062257904559374,0.033583343029022],[-0.039336368441582,-0.069686219096184,0.017898336052895]],[[-0.076991267502308,0.0095396274700761,-0.029979525133967],[0.023929767310619,0.0036445995792747,0.006099502556026],[0.011382619850338,-0.020071534439921,0.0019773181993514]],[[-0.065952852368355,-0.039359211921692,0.059841930866241],[0.0043325140140951,-0.0042765312828124,0.0014561074785888],[-0.017949027940631,0.021522991359234,0.0098510570824146]],[[0.033195186406374,0.02899513207376,0.01509072072804],[-0.024718593806028,0.028063774108887,0.039329320192337],[-0.059008400887251,0.055091518908739,0.043062049895525]],[[-0.0046579921618104,0.039500076323748,-0.066810011863708],[0.041824582964182,-0.028940679505467,0.031368318945169],[-0.080834232270718,0.00567063735798,1.198167228722e-05]],[[-0.048256285488605,-0.10864274948835,-0.0016626830911264],[-0.15876041352749,0.025779353454709,0.0021634201984853],[-0.019525503739715,0.0718038007617,0.094562597572803]],[[0.013103275559843,-0.036026358604431,-0.027514912188053],[0.012507536448538,-0.043564032763243,-0.038793947547674],[-0.022802792489529,-0.0031201899982989,0.0061782589182258]],[[0.043815184384584,-0.017932876944542,0.046780992299318],[-0.097631558775902,0.008083070628345,0.02772980183363],[0.040826126933098,0.0039849737659097,-0.023296060040593]],[[0.013773269951344,0.039490383118391,-0.021038345992565],[-0.022547418251634,-0.066164918243885,0.11722695827484],[0.021917372941971,0.013749680481851,0.017017349600792]],[[0.016318771988153,-0.043513417243958,-0.0062184049747884],[-0.00076635065488517,-0.024172289296985,-0.029516585171223],[-0.058319639414549,0.080633364617825,-0.09784734249115]],[[0.0084647852927446,0.030259205028415,0.087556391954422],[-0.038803026080132,0.077005840837955,-0.033636622130871],[0.004563482478261,-0.050742514431477,0.063118807971478]],[[0.039424806833267,-0.018699711188674,-0.0076525900512934],[-0.056376516819,0.00079566065687686,0.017559733241796],[-0.023887377232313,0.0026320468168706,-0.056799277663231]],[[-0.0069413711316884,0.0072464225813746,0.021949591115117],[-0.0447594858706,-0.023936808109283,-0.044988494366407],[-0.0039462982676923,0.0023422834929079,0.021963246166706]],[[0.0012046158080921,-0.013792673125863,0.064238861203194],[0.012517312541604,0.0307776350528,-0.064236171543598],[0.037082120776176,-0.018239172175527,0.08557116985321]],[[-0.016435105353594,0.030632086098194,-0.064968802034855],[-0.030958360061049,0.028225550428033,-0.010481016710401],[0.02157867886126,0.023037232458591,0.078514143824577]],[[-0.066263377666473,-0.03260875493288,0.0069587435573339],[-0.024664122611284,-0.0080536995083094,0.095630750060081],[-0.017467971891165,-0.045209877192974,0.071344122290611]],[[0.036606904119253,0.037132784724236,-0.033266194164753],[0.040089461952448,-0.015563697554171,0.014902100898325],[0.045320618897676,-0.013575866818428,0.017635295167565]],[[-0.002018672414124,-0.0053444756194949,0.018852790817618],[-0.00018318180809729,-0.0095984172075987,0.062404051423073],[0.038795374333858,-0.00093880615895614,-0.05807838216424]],[[0.014810120686889,-0.041401382535696,0.013249869458377],[-0.029421476647258,-0.038048308342695,0.010485797189176],[0.015156607143581,-0.006824039388448,0.033311296254396]],[[-0.035415809601545,0.023954691365361,0.02373212389648],[0.014811841771007,-0.039051029831171,-0.012888985686004],[-0.019565157592297,-0.012442441657186,-0.041784774512053]],[[0.02802818454802,0.0022262341808528,0.0035812144633383],[0.030465809628367,0.031324457377195,-0.050876352936029],[-0.04674931243062,0.00022825291671325,0.019650913774967]],[[0.031872399151325,0.01837495341897,0.018070543184876],[0.0023178607225418,-0.009259051643312,0.04887118563056],[0.016692804172635,-0.06415943801403,-0.027344869449735]],[[-0.016505187377334,0.0046649789437652,-0.0040868585929275],[0.023670334368944,-0.0089048584923148,0.018715154379606],[0.04599054902792,-0.040070068091154,-0.023748403415084]],[[0.021658034995198,-0.027795877307653,0.018369825556874],[0.014132607728243,0.030048837885261,-0.063248582184315],[-0.0031102492939681,0.020264701917768,0.0048990990035236]],[[0.010927155613899,0.0084114614874125,0.070727810263634],[0.016706800088286,0.035598132759333,-0.0044378442689776],[0.058541864156723,0.024722388014197,-0.055114768445492]],[[0.039153799414635,0.018811171874404,-0.062686048448086],[-0.067509412765503,-0.011847365647554,-0.014096401631832],[-0.038166612386703,-0.0044700955040753,-0.0099551901221275]],[[0.035056844353676,-0.020714478567243,0.0099899666383862],[-0.031671199947596,-0.021843308582902,-0.0171969383955],[0.043582398444414,0.0051038437522948,0.030405305325985]],[[0.04091377928853,-0.00064471992664039,-0.020384451374412],[0.048473857343197,-0.0041124247945845,-0.0034146148245782],[0.044773016124964,0.022699870169163,0.00018814249779098]],[[-0.029697515070438,-0.017273837700486,-0.036900885403156],[-0.01607059687376,-0.047242701053619,0.040386747568846],[0.0083592813462019,-0.003438790794462,-0.047649044543505]],[[-0.030324185267091,-0.038736026734114,-0.05001387745142],[-0.028100254014134,0.04317831993103,0.012329281307757],[-0.039318311959505,0.0030777549836785,0.0027481892611831]],[[0.0016342159360647,0.008533394895494,0.018332527950406],[0.018276372924447,-0.032881680876017,-0.0039565260522068],[-0.05489843711257,0.0057925432920456,0.034654095768929]],[[-0.051453493535519,0.070332705974579,-0.039625938981771],[-0.015800587832928,0.00088793766917661,0.061703059822321],[0.033002436161041,-0.0076610841788352,0.014449866488576]],[[0.011474266648293,-0.058426111936569,-0.021911012008786],[0.008625665679574,0.024675766006112,-0.037016268819571],[-0.0021917417179793,0.022473327815533,0.032020915299654]],[[-0.018375216051936,0.01505574118346,-0.0012223863741383],[-0.061453953385353,0.020672520622611,-0.0031510752160102],[0.028600376099348,-0.010555020533502,-0.028836704790592]],[[0.014491654932499,0.045384865254164,0.0037497507873923],[0.038032751530409,0.027827810496092,0.01679321937263],[0.024996384978294,-0.0088584870100021,0.0042427279986441]],[[-0.00054109503980726,-0.018603444099426,0.010116499848664],[-0.033574093133211,0.04811155423522,-0.077096343040466],[-0.11125182360411,-0.062944196164608,0.034217763692141]],[[-0.033635016530752,-0.0043994029983878,-0.024686789140105],[0.0021616984158754,0.012135644443333,0.051950342953205],[-0.02330919355154,0.033893320709467,0.02668472006917]],[[0.00056967238197103,0.023602429777384,-0.031479220837355],[0.0078809699043632,0.027126403525472,0.028547389432788],[-0.039401412010193,0.089237436652184,-0.022589894011617]],[[-0.00093795306747779,-0.072407007217407,-0.014259563758969],[0.043700031936169,-0.022720983251929,-0.087479121983051],[-0.064927540719509,-0.018908830359578,-0.022817920893431]],[[0.016982575878501,0.032944299280643,0.0059963497333229],[-0.030260229483247,-0.014103256165981,0.0019040257902816],[0.0069327326491475,-0.019660916179419,0.07371199131012]],[[-0.029246736317873,-0.042690757662058,-0.062477551400661],[0.016682513058186,-0.012697443366051,0.071924790740013],[-0.032350901514292,0.027545098215342,-0.041999779641628]],[[-0.080758720636368,0.0077216872014105,-0.0093988124281168],[-0.027626117691398,0.07731868326664,-0.046906542032957],[0.02193545922637,-0.0074522746726871,0.014871606603265]],[[-0.0064983228221536,0.021722957491875,-0.029228452593088],[0.023161996155977,-0.0067721884697676,0.05227068439126],[0.014915060251951,0.078395940363407,0.013908358290792]],[[-0.053642604500055,-0.053393103182316,0.025108968839049],[-0.022323191165924,0.0020696166902781,-0.0146140800789],[0.0097652189433575,-0.037526164203882,-0.058498281985521]],[[-0.057447295635939,0.013037331402302,0.010371024720371],[0.038470607250929,0.027990749105811,0.094418041408062],[0.012615911662579,0.032863352447748,-0.029349798336625]],[[0.020902736112475,0.051973804831505,-0.085873953998089],[0.061627574265003,0.013096833601594,0.0040775146335363],[0.010118016041815,0.0067719328217208,-0.0028126479592174]],[[-0.020177537575364,0.009313615038991,-0.023048434406519],[0.050846595317125,-0.024802107363939,0.026953706517816],[-0.072004839777946,-0.026556150987744,-0.037892073392868]],[[0.017243703827262,-0.050395846366882,0.0089439060539007],[0.020436452701688,0.026652544736862,-0.0027166926302016],[0.030730431899428,0.025749586522579,-0.016483997926116]],[[-0.011089303530753,-0.012797471135855,-0.076033890247345],[-0.056501697748899,-0.04482713714242,-0.020140970125794],[-0.022063713520765,-0.061759985983372,0.026178698986769]],[[0.030769873410463,-0.017224470153451,-0.0072220996953547],[0.037957917898893,-0.020389413461089,0.022215891629457],[-0.019690237939358,-0.05525766313076,-0.039722677320242]],[[-0.011445078998804,-0.0092119164764881,-0.0069123678840697],[0.0048993374221027,-0.01693251542747,0.0067099551670253],[0.029288955032825,0.016400914639235,0.01193093881011]],[[0.027347587049007,0.050213363021612,0.035132803022861],[0.013298547826707,-0.059053741395473,0.0010655181249604],[0.036505222320557,-0.027463462203741,-0.10126601159573]],[[-0.0032846666872501,0.066821373999119,-0.019387222826481],[-0.001382885267958,0.027242176234722,-0.0088381571695209],[0.05512372776866,-0.030044654384255,-0.012063601054251]],[[0.0018074662657455,0.071507669985294,0.077530674636364],[0.077478505671024,0.0097255669534206,-0.0033781558740884],[0.0066183949820697,0.043630741536617,-0.010413257405162]],[[-0.027724709361792,0.022159997373819,-0.016906650736928],[-0.03317741677165,-0.0060416324995458,-0.00079981057206169],[0.0089472057297826,-0.013237583450973,-0.043368328362703]],[[0.011870792135596,0.023439407348633,-0.018972208723426],[-0.024403274059296,-0.002602830529213,-0.046566586941481],[-0.012081224471331,0.039337616413832,-0.011672889813781]],[[-0.022121261805296,-0.0027426660526544,0.0001870654814411],[-0.017638627439737,0.039980821311474,0.030538925901055],[-0.049138713628054,0.0066119339317083,-0.018672458827496]],[[0.0068547721020877,-0.014500926248729,-0.027236254885793],[-0.0018753196345642,0.038190644234419,-0.023721896111965],[-0.012244436889887,0.011889387853444,0.066116668283939]],[[-0.016838368028402,0.023579992353916,-0.026475185528398],[-0.016216427087784,0.016019383445382,-0.0072493255138397],[0.010659677907825,0.0031442760955542,0.029454382136464]],[[0.0170892868191,0.0096171228215098,-0.0042832200415432],[0.024369686841965,0.031533446162939,-0.015849472954869],[-0.014260699041188,-0.011717935092747,0.0098458249121904]],[[0.046089626848698,0.049832731485367,0.049744039773941],[0.033022671937943,-0.025290105491877,-0.04189283400774],[0.020658114925027,-0.038559891283512,-0.0079682432115078]],[[-0.044632911682129,-0.021894585341215,0.0017942500999197],[-0.095166243612766,0.024398170411587,-0.072908863425255],[0.0082683004438877,0.038767833262682,0.050009317696095]],[[0.056169345974922,0.013948016799986,-0.0010900660417974],[0.012804741971195,-0.021224966272712,0.0019765202887356],[-0.023894589394331,-0.02205565571785,0.030940212309361]],[[-0.059893645346165,0.051210511475801,-0.028003545477986],[-0.027992691844702,0.00016386032802984,0.033629465848207],[-0.047594379633665,-0.073086202144623,0.017931338399649]]],[[[-0.065013818442822,-0.083083309233189,-0.034585911780596],[0.022448347881436,0.0016471470007673,0.096527308225632],[0.0039750775322318,-0.019487598910928,-0.052598115056753]],[[0.019284777343273,0.058044124394655,0.029027353972197],[-0.01487276237458,-0.0077839409932494,-0.023412937298417],[-0.046753454953432,-0.023971773684025,0.0067884642630816]],[[-0.0050994786433876,-0.040259681642056,-0.043700069189072],[-0.00011746012751246,-0.00240383669734,0.00040797280962579],[0.011145649477839,-0.020969972014427,-0.062083713710308]],[[0.00021491291408893,-0.011322695761919,-0.040428403764963],[-0.058000937104225,-0.012411635369062,0.047402925789356],[0.032128218561411,0.043458759784698,-0.03217525780201]],[[0.028467115014791,0.026169251650572,0.046450614929199],[0.039503198117018,-0.0085657788440585,-0.057833351194859],[-0.0076671540737152,0.020721938461065,0.00061870511854067]],[[-0.030602149665356,0.034237768501043,-0.03165502846241],[-0.034762363880873,0.063334338366985,-0.16733957827091],[0.066033266484737,0.072521701455116,-0.10195460170507]],[[-0.012034119106829,-0.015003421343863,0.0053192884661257],[0.015503887087107,0.017376562580466,0.0065047321841121],[-0.043782576918602,-0.042119864374399,-0.028095822781324]],[[-0.005691874306649,0.035256091505289,0.024448398500681],[-0.066625632345676,-0.24154847860336,-0.1021361425519],[-0.020315360277891,0.042891677469015,0.012444661930203]],[[-0.014410687610507,0.056990221142769,0.063666716217995],[0.042184449732304,-0.001672581769526,0.0064013823866844],[0.060973327606916,-0.011025724001229,-0.063597172498703]],[[0.039104502648115,0.022634515538812,0.025858577340841],[-0.020648047327995,0.016508378088474,-0.031306404620409],[-0.081728801131248,0.014909359626472,-0.022508917376399]],[[0.014642800204456,-0.011236416175961,-0.026504270732403],[0.019415874034166,0.038575887680054,0.0069687473587692],[-0.040147483348846,-0.022036770358682,-0.029062416404486]],[[0.047905389219522,-0.0060670655220747,0.010680220089853],[0.0054799020290375,-0.16667376458645,0.014138912782073],[0.0079363528639078,-0.14776413142681,0.044638026505709]],[[-0.0068864547647536,0.058003529906273,0.034042775630951],[0.0087404530495405,-0.14904198050499,0.096484683454037],[0.064569503068924,0.053598035126925,-0.1891460865736]],[[-0.07267989218235,0.060559287667274,-0.062571935355663],[-0.014529748819768,0.18197993934155,-0.026620682328939],[0.07532063126564,0.13744308054447,0.060951963067055]],[[0.0055202064104378,-0.0096074799075723,-0.062318168580532],[0.035678967833519,0.015677059069276,0.014250135980546],[-0.010999022051692,0.040922921150923,0.02369824424386]],[[0.0093713812530041,-0.027233671396971,-0.031998995691538],[0.010430778376758,0.014786029234529,-0.070311687886715],[0.0011031429748982,0.05138149484992,0.047211971133947]],[[-0.0055468492209911,-0.007229539565742,-0.015693014487624],[-0.0068024937063456,-0.010088405571878,-0.074611648917198],[-0.011559071019292,-0.022259727120399,-0.048361010849476]],[[0.0010134589392692,0.011692872270942,0.032068736851215],[-0.027428949251771,-0.046056412160397,-0.03588180616498],[0.025279926136136,0.0018087626667693,-0.014287889935076]],[[-0.030871020630002,-0.046416498720646,0.0049897087737918],[-0.010160026140511,0.022777916863561,-0.068748757243156],[-0.061403792351484,0.023435041308403,0.0036113949026912]],[[-0.015483579598367,0.043837707489729,0.043850969523191],[0.020553296431899,-0.10422907024622,-0.010679384693503],[0.039467412978411,-0.098428726196289,-0.064895778894424]],[[0.06559307128191,0.079393625259399,0.029253512620926],[-0.011901545338333,-0.10618983954191,0.020007617771626],[-0.0060074059292674,-0.039698839187622,0.019268767908216]],[[0.040745530277491,-0.04883186519146,-0.005619952455163],[0.00088955037062988,-0.029114795848727,-0.045956172049046],[0.025388080626726,0.012801430188119,-0.010367487557232]],[[0.0092884683981538,-0.0049744723364711,0.082816764712334],[-0.03833619877696,-0.019150760024786,0.13718429207802],[-0.043009668588638,-0.13584537804127,0.011420931667089]],[[-0.034506063908339,0.0095453253015876,0.039037443697453],[-0.051367606967688,-0.040594328194857,0.017795290797949],[0.04579384624958,0.022840352728963,-0.021104175597429]],[[0.015094636939466,-0.010918909683824,-0.06023233383894],[0.0014081249246374,-0.027811661362648,-0.069633409380913],[-0.0052804416045547,0.010511734522879,0.0055050645023584]],[[0.017864797264338,-0.00034862940083258,-0.0071186143904924],[-0.031445167958736,0.013503008522093,-0.043346114456654],[0.020965119823813,0.049068693071604,0.0031032983679324]],[[0.011233198456466,0.027600159868598,0.016511667519808],[-0.040441729128361,-0.13604307174683,-0.05738153681159],[-0.011352920904756,-0.057397607713938,-0.054360337555408]],[[-0.018012931570411,-0.062411431223154,-0.020818157121539],[0.053933832794428,-0.09883813560009,-0.050959475338459],[0.10224783420563,0.13346876204014,-0.034009784460068]],[[0.023363199084997,0.015246250666678,-0.0043561360798776],[0.011968364939094,0.0015433164080605,0.029922384768724],[0.030633425340056,0.029390048235655,-0.053930968046188]],[[-0.0020427904091775,-0.07463788241148,-0.014584282413125],[0.06482121348381,-0.0050421077758074,-0.038611683994532],[-0.032070148736238,0.0058064484037459,-0.010715535841882]],[[-0.029386395588517,-0.010915346443653,-0.055276039987803],[-0.009390601888299,-0.028650240972638,-0.017664812505245],[-0.053525391966105,0.054605279117823,0.0091078076511621]],[[0.0076288068667054,0.068206496536732,-0.027544405311346],[0.0010900306515396,0.094116538763046,0.0024626126978546],[-0.0076797474175692,0.082092963159084,-0.092662908136845]],[[-0.027583545073867,-0.061472453176975,-0.019923830404878],[0.10167936235666,0.040560070425272,-0.016378458589315],[-0.030168084427714,0.031518787145615,0.031598679721355]],[[-0.020075554028153,0.0058409571647644,-0.0223632697016],[-0.03002461977303,0.00098075368441641,-0.076019942760468],[-0.12354052066803,-0.075088500976562,-0.019730042666197]],[[0.048231437802315,0.013545088469982,-0.045544765889645],[0.005984443705529,-0.15387052297592,-0.29776638746262],[0.079578451812267,-0.048529449850321,-0.14927032589912]],[[0.035198628902435,0.054320584982634,0.041779730468988],[0.015157200396061,-0.0043718279339373,0.026756670325994],[-0.034227464348078,-0.24072048068047,-0.020886737853289]],[[-0.0088266599923372,-0.019063919782639,0.033010143786669],[-0.0012915997067466,0.066706903278828,0.013640395365655],[-0.015035508200526,-0.035945687443018,0.016159916296601]],[[0.037910632789135,-0.0010250699706376,0.057701591402292],[0.031917344778776,-0.012698817998171,0.055769257247448],[-0.074918240308762,-0.051571469753981,-0.053976405411959]],[[-0.011187168769538,-0.0087413536384702,0.076267272233963],[-0.013608967885375,-0.061568181961775,0.078525505959988],[-0.053390998393297,-0.015607673674822,0.021541779860854]],[[-0.014936433173716,-0.0022090133279562,0.11968649923801],[0.0051875980570912,0.029305141419172,0.081500470638275],[-0.090351611375809,0.06867653131485,0.024154057726264]],[[-0.029155444353819,0.010571094229817,0.07184749096632],[-0.099967055022717,-0.085133589804173,-0.094456888735294],[-0.013378033414483,0.022969489917159,0.049427967518568]],[[-0.053898647427559,-0.058624558150768,-0.10005043447018],[-0.033090177923441,0.0086072590202093,0.026116831228137],[0.064587228000164,-0.051712565124035,0.009559528902173]],[[-0.037051618099213,-0.018869012594223,0.013837958686054],[-0.027781570330262,-0.028680795803666,0.090827822685242],[-0.0084758615121245,-0.14991036057472,-0.037750195711851]],[[0.0063660922460258,0.021546950563788,-0.0079622296616435],[0.016467029228806,-0.023392057046294,-0.051550049334764],[-0.059064507484436,0.090138867497444,-0.021518055349588]],[[-0.028323797509074,0.062881477177143,0.10322991013527],[-0.015881778672338,-0.033384013921022,0.0026830832939595],[-0.13814973831177,-0.043900392949581,-0.024989543482661]],[[0.0066336900927126,0.0092414459213614,-0.07075809687376],[0.046412628144026,-0.029710846021771,-0.01079991273582],[0.080576531589031,0.026954719796777,0.088313683867455]],[[0.024231730028987,0.068159058690071,-0.061373762786388],[0.025650123134255,0.01123474817723,0.0058132857084274],[0.0077395713888109,-0.065972745418549,-0.13290818035603]],[[0.0025336965918541,-0.046519953757524,0.01039086189121],[-0.02971482463181,-0.1833041459322,-0.081654153764248],[0.0017629433423281,-0.14164984226227,-0.039587922394276]],[[-0.014437399804592,-0.011436593718827,-0.055082228034735],[0.041169907897711,-0.038153126835823,0.047851547598839],[-0.0029350088443607,0.003660008776933,-0.14840438961983]],[[0.011551661416888,-0.10238003730774,0.072239726781845],[0.01295698992908,0.045921362936497,0.060093741863966],[-0.08549727499485,-0.096041604876518,0.10189125686884]],[[-0.0019779400900006,0.0055146152153611,-0.028700152412057],[0.023482179269195,-0.037610344588757,0.086468711495399],[0.079132825136185,-0.41618511080742,0.040443532168865]],[[-0.0055961017496884,-0.020945690572262,0.0083887139335275],[0.027550503611565,-0.042886298149824,0.071936182677746],[-0.019143130630255,-0.06777336448431,0.037337895482779]],[[-0.021101355552673,-0.090939231216908,0.055091787129641],[-0.032207649201155,-0.072453685104847,-0.054679680615664],[-0.048278033733368,-0.0179995726794,-0.0071719279512763]],[[0.051736354827881,-0.0062955319881439,0.17287577688694],[-0.0048623541370034,-0.018117036670446,-0.094598308205605],[0.094894096255302,0.20249919593334,0.053967379033566]],[[0.012886577285826,-0.084578983485699,-0.0051829176954925],[0.01990876160562,0.084217324852943,-0.086932919919491],[0.0022990861907601,0.021589169278741,-0.031526494771242]],[[0.0031791338697076,0.026696667075157,0.079556733369827],[0.033098679035902,-0.0070966416969895,-0.032746840268373],[0.0024517260026187,-0.025420472025871,-0.081026129424572]],[[-0.010240457952023,0.0032697503920645,-0.038042187690735],[0.041960258036852,-0.2370180785656,0.0046414444223046],[-0.027626687660813,-0.05859662592411,-0.06168195232749]],[[-0.0050427624955773,-0.016657771542668,-0.02997569181025],[0.012268011458218,0.021534696221352,0.00055037206038833],[-0.00059049139963463,-0.057458147406578,-0.090814106166363]],[[-0.059257742017508,0.027806792408228,-0.0045285522937775],[-0.029779905453324,-0.062763355672359,-0.039097905158997],[0.057464387267828,-0.040488708764315,0.047660231590271]],[[0.0022825798951089,-0.033225744962692,-0.049321912229061],[0.038896288722754,0.058103650808334,-0.058526121079922],[0.03315506502986,0.045908998697996,0.0074650542810559]],[[-0.0074718189425766,-0.036779243499041,-0.063548363745213],[0.02830171957612,-0.032272040843964,-0.10428186506033],[-0.013540837913752,-0.0028721860144287,0.042331267148256]],[[0.096038818359375,0.088870503008366,0.026453651487827],[0.023169737309217,0.10308215767145,0.0091637298464775],[-0.010089155286551,0.022848427295685,-0.067760922014713]],[[0.046375554054976,0.077741540968418,0.056812509894371],[0.001412775949575,-0.016383280977607,0.0014758332399651],[-0.00099760561715811,-0.10878413170576,-0.047957964241505]],[[-0.025483494624496,-0.0028740705456585,-0.073869876563549],[0.022040473297238,0.044162586331367,0.026111796498299],[-0.06748079508543,0.0069632856175303,0.0016449575778097]]],[[[-0.0075177731923759,-0.090609766542912,0.02513076364994],[-0.02970995940268,-0.059672601521015,0.08696661144495],[-0.035563141107559,0.025641286745667,-0.0091538578271866]],[[-0.05180199444294,-0.11096258461475,-0.027430912479758],[-0.050383560359478,-0.0049435175023973,-0.0039370404556394],[-0.056591883301735,-0.023166740313172,0.051529500633478]],[[-0.01136117707938,0.078503929078579,-0.056063678115606],[0.026847558096051,0.037435434758663,0.00083028560038656],[-0.02002240344882,0.0012766602449119,0.046546194702387]],[[-0.013373355381191,-0.020056154578924,-0.033627592027187],[-0.020402960479259,0.024892136454582,0.098461017012596],[-0.028867550194263,-0.011899943463504,0.0077764871530235]],[[-0.077320784330368,0.0026040966622531,-0.040526308119297],[-0.049626059830189,0.063840888440609,-0.042557887732983],[-0.024726124480367,-0.052961342036724,0.0073671140708029]],[[0.13545671105385,0.11477830260992,-0.012680160813034],[-0.033149387687445,0.043299578130245,-0.052275538444519],[-0.022133992984891,0.040880378335714,0.081712529063225]],[[-0.0048209205269814,-0.024955242872238,0.024973521009088],[0.025362500920892,0.028924344107509,0.001331354607828],[0.0063902516849339,0.033980816602707,0.073101349174976]],[[0.059800207614899,-0.043310482054949,0.010121919214725],[0.005628926679492,0.068732500076294,0.02472672238946],[-0.071519114077091,0.0164456050843,-0.040537431836128]],[[0.010805632919073,-0.081283316016197,-0.061767030507326],[-0.024400280788541,-0.024371171370149,0.020913193002343],[0.048381548374891,0.04349010437727,-0.063342802226543]],[[-0.050568342208862,0.015755284577608,-0.078202895820141],[0.031512197107077,-0.0037831549998373,0.011111969128251],[-0.066643081605434,0.089752234518528,-0.051525082439184]],[[-0.051009476184845,-0.11540800333023,-0.0078083663247526],[-0.026494381949306,0.05469860881567,-0.041939917951822],[-0.043633569031954,-0.042606841772795,0.0090025821700692]],[[0.019465129822493,-0.040862701833248,-0.032197188585997],[0.038769498467445,0.038330309092999,0.021589854732156],[-0.033160462975502,0.017275650054216,0.015768099576235]],[[0.013493102043867,-0.03345301002264,0.040739826858044],[-0.052303917706013,-0.0091706514358521,0.046377558261156],[-0.028360275551677,-0.061636291444302,-0.024278849363327]],[[-0.049925580620766,0.025688404217362,0.0013795676641166],[0.071368232369423,0.071253299713135,0.03023767285049],[0.020056845620275,0.030513379722834,-0.044080957770348]],[[-0.030184864997864,0.0036169837694615,0.0036981091834605],[0.026850072667003,0.024780342355371,-0.016629671677947],[0.090601623058319,-0.053950477391481,-0.039722219109535]],[[0.0015374881913885,-0.055441103875637,0.034505736082792],[0.014324531890452,-0.027893740683794,0.023483069613576],[0.066714875400066,0.024925846606493,-0.021657582372427]],[[-0.014705643057823,0.024760821834207,-0.02653550542891],[0.029236560687423,0.048187289386988,-0.012175671756268],[-0.024215713143349,-0.014868706464767,0.10070297122002]],[[-0.025650020688772,0.025378623977304,0.040210597217083],[-0.022216463461518,0.024250436574221,0.011434842832386],[-0.013646677136421,0.0060580810531974,0.062737293541431]],[[0.029142213985324,-0.041619766503572,-0.0053746118210256],[-0.060427937656641,0.001401876565069,-0.004802024923265],[0.012056381441653,0.01789940148592,0.043963883072138]],[[-0.015192034654319,-0.070245772600174,-0.032180387526751],[-0.0010534103494138,0.019438412040472,-0.046023942530155],[0.03578669205308,0.049925018101931,0.028923230245709]],[[-0.095481559634209,0.049519557505846,-0.0423414260149],[0.024023279547691,0.034031383693218,0.062865726649761],[0.040920358151197,0.0043488070368767,0.016780417412519]],[[0.07524348795414,-0.046008672565222,-0.014789706096053],[0.032177083194256,0.012740072794259,-0.062232449650764],[-0.042233366519213,0.018699141219258,-0.11747656017542]],[[-0.028612932190299,0.0030407975427806,0.031041782349348],[-0.088930957019329,0.0093298265710473,0.018226897343993],[-0.048579644411802,0.078754954040051,0.0025830725207925]],[[0.015972014516592,0.034978210926056,-0.059769604355097],[0.0013044630177319,-0.026993969455361,-0.069429643452168],[0.013834002427757,-0.11785553395748,0.027438962832093]],[[0.011435002088547,0.03963090851903,0.12059723585844],[-0.019432500004768,0.026521369814873,-0.0065856659784913],[-0.0057261097244918,0.033840343356133,0.055955927819014]],[[0.03597728908062,-0.030137784779072,-0.084138445556164],[-0.028875987976789,-0.043608766049147,-0.078084252774715],[-0.0096589922904968,-0.059210196137428,-0.0025283428840339]],[[0.11135118454695,0.074284486472607,0.0077096507884562],[0.10313601791859,0.089455559849739,-0.02053390070796],[0.007665254175663,-0.039016101509333,0.0081872660666704]],[[-0.041510790586472,-0.075726456940174,0.025098318234086],[-0.082555554807186,0.022297646850348,-0.04523741081357],[0.032194130122662,0.045996453613043,0.082931503653526]],[[0.061008982360363,0.021792493760586,-0.017937770113349],[0.039278719574213,-0.022391252219677,0.02811430208385],[-0.019414827227592,-0.042472328990698,-0.012552326545119]],[[0.0035737375728786,-0.008367451839149,0.0073897438123822],[0.0047780526801944,0.01449660398066,0.0023811568971723],[-0.0041286889463663,-0.0026685423217714,0.024707829579711]],[[-0.068001940846443,-0.065498724579811,-0.014904644340277],[0.0027778781950474,-0.038595147430897,0.014745280146599],[0.047543924301863,-0.012594523839653,-0.012274251319468]],[[-0.016391737386584,-0.03028355166316,-0.045470535755157],[0.011604581028223,-0.053072981536388,0.038121994584799],[0.015304649248719,0.069823317229748,0.046835497021675]],[[-0.060828376561403,0.028832094743848,0.018099619075656],[-0.079496473073959,0.091060921549797,0.058655820786953],[-0.026774346828461,-0.026322402060032,0.00095832388615236]],[[0.0070822727866471,0.047094728797674,-0.043063752353191],[-0.030016891658306,-0.10186947882175,-0.039803214371204],[0.06361198425293,-0.072657182812691,0.019381375983357]],[[0.013123377226293,-0.035225793719292,-0.081932127475739],[-0.062316823750734,0.023166965693235,0.059572651982307],[-0.012190164998174,-0.018394593149424,0.071646556258202]],[[0.014301430433989,0.031480073928833,0.024007901549339],[-0.040026109665632,-0.046040426939726,0.059145793318748],[0.017125517129898,0.0083134071901441,-0.096709191799164]],[[0.033779311925173,0.061771173030138,-0.04854042828083],[0.037645220756531,-0.011163216084242,-0.029991613700986],[0.032504756003618,-0.0019403133774176,-0.04161200299859]],[[0.10077827423811,0.0018801069818437,-0.15970854461193],[-0.13416311144829,-0.026306193321943,0.043509345501661],[-0.049238633364439,0.075940117239952,0.04071382433176]],[[-0.00679523171857,-0.047275610268116,0.012813006527722],[-0.078967548906803,-0.067026026546955,-0.043902192264795],[-0.023199174553156,-0.076071478426456,-0.02388458698988]],[[0.0048679076135159,0.053903490304947,-0.030809860676527],[-0.026242488995194,-0.023657703772187,-0.13349995017052],[-0.0073925391770899,-0.058306485414505,-0.015780381858349]],[[0.029554385691881,0.01691934838891,0.079109892249107],[-0.02396734058857,-0.041936662048101,0.10718858987093],[-0.08271549642086,-0.030880704522133,0.066549226641655]],[[-0.040916971862316,-0.10522278398275,-0.018344055861235],[0.050277806818485,0.027546148747206,0.021962754428387],[-0.01272951811552,0.046567060053349,0.10232660919428]],[[-0.031023997813463,-0.060280650854111,0.0038435310125351],[0.061785668134689,0.023220119997859,-0.082231990993023],[0.0062230061739683,-0.028777610510588,-0.070135913789272]],[[0.0175876673311,0.029354497790337,-0.010907073505223],[-0.021266434341669,-0.036979604512453,-0.037957161664963],[-0.071123749017715,-0.025660838931799,-0.033350970596075]],[[0.075904607772827,0.13418935239315,-0.10443233698606],[-0.0081312134861946,0.02905448526144,0.103719137609],[-0.037844356149435,0.0090367216616869,-0.0042257346212864]],[[-0.024423884227872,0.0034325395245105,0.0082672648131847],[-0.026475891470909,0.058072123676538,0.003586687380448],[0.077075742185116,0.038471769541502,0.023471519351006]],[[-0.033345278352499,-0.029013980180025,0.034382302314043],[-0.040990669280291,-0.003276270115748,-0.010471552610397],[-0.030791642144322,-0.038763947784901,-0.068264722824097]],[[-0.01765868999064,-0.06600633263588,-0.022270103916526],[-0.077184319496155,0.050646666437387,0.031694620847702],[-0.05549056455493,0.076988995075226,0.00018948581418954]],[[-0.0059402608312666,0.028949551284313,-0.048067182302475],[0.0043656518682837,0.020811727270484,0.0023320326581597],[-0.043757636100054,0.098428048193455,-0.048923268914223]],[[0.01738085411489,0.09397166967392,0.0015203057555482],[-0.0078811990097165,0.09626742452383,0.074954636394978],[0.017991002649069,0.022097526118159,-0.047271873801947]],[[0.085152842104435,-0.012091659009457,0.021064227446914],[0.045931227505207,-0.0003000530123245,0.0068279313854873],[0.031953360885382,0.015531164593995,0.030139332637191]],[[0.040041070431471,-0.0020882363896817,0.01789116859436],[0.013772031292319,-0.039408892393112,-0.050181899219751],[-0.10226223617792,-0.0066306488588452,0.047623384743929]],[[-0.0088524920865893,-0.026206819340587,-0.0081043066456914],[-0.041576784104109,-0.045666452497244,-0.0065170587040484],[0.071611173450947,-0.091786183416843,0.047423489391804]],[[-0.041650384664536,0.00027815747307613,0.12585107982159],[0.15280722081661,0.17395685613155,0.070139467716217],[0.013959777541459,0.17045238614082,-0.027062505483627]],[[-0.080124944448471,0.065403804183006,-0.0092057418078184],[-0.067949093878269,-0.041958030313253,0.014550076797605],[-0.094266086816788,-0.097393795847893,-0.0012336844811216]],[[0.012171007692814,-0.074145011603832,0.021919785067439],[0.0027361088432372,0.014834207482636,0.011161159723997],[-0.027539161965251,-0.027067832648754,-0.018317008391023]],[[0.0040963413193822,-0.020067874342203,-0.0085451919585466],[0.064835250377655,0.04575926437974,0.014472506940365],[0.002255731029436,0.035423550754786,0.044756107032299]],[[0.0473249591887,0.0055042752064764,-0.027621265500784],[-0.0092370342463255,0.0712009370327,-0.12075198441744],[-0.050459485501051,-0.080123074352741,-0.1359903216362]],[[-0.017743784934282,-0.031892713159323,-0.015996288508177],[0.041690696030855,-0.065361015498638,0.027867019176483],[0.016559870913625,0.070784598588943,7.8044540714473e-05]],[[0.080651335418224,0.039725869894028,-0.026851311326027],[0.047694448381662,0.035865984857082,-0.037696812301874],[0.0049770595505834,-0.057817429304123,0.031042795628309]],[[-0.088908202946186,-0.0771694034338,0.0079975910484791],[-0.031320691108704,0.061691012233496,0.046541467308998],[-0.015204031020403,-0.0094104576855898,-0.013827197253704]],[[-0.035738207399845,-0.0096473572775722,-0.0083400132134557],[0.04615854844451,0.09245254099369,0.067314796149731],[0.04236638918519,0.0052628088742495,0.039701722562313]],[[-0.0073962789028883,-0.030990408733487,-0.033781155943871],[0.015150927938521,-0.025841938331723,-0.044376660138369],[-0.095233723521233,0.0046495185233653,0.0483478307724]],[[0.038167119026184,-0.050898473709822,0.032872840762138],[-0.055462367832661,-0.043629843741655,0.01680938154459],[-0.058030623942614,-0.063395239412785,0.0075858733616769]]],[[[-0.07928204536438,-0.062178876250982,0.096632696688175],[-0.16242198646069,0.072406686842442,0.079343512654305],[0.10349210351706,-0.036960776895285,0.08044445514679]],[[0.088868334889412,-0.1323254108429,-0.046759687364101],[0.16590975224972,-0.16240242123604,-0.18950580060482],[0.045263972133398,0.031227024272084,-0.20588073134422]],[[-0.032609194517136,-0.011142652481794,-0.016481468454003],[-0.046595271676779,0.030768876895308,0.03469105437398],[0.0075170006603003,-0.05381092056632,0.068406194448471]],[[0.027612553909421,0.0073987450450659,-0.060442462563515],[-0.0098092770203948,0.010791189968586,0.019758647307754],[0.033178202807903,-0.016772273927927,-0.044581979513168]],[[-0.061886183917522,-0.10745840519667,0.0084691038355231],[-0.076783537864685,0.0068679112009704,-0.034236952662468],[0.059246513992548,0.020470755174756,0.021919878199697]],[[0.036431662738323,0.020545206964016,-0.024879388511181],[0.024272624403238,0.04250605776906,-0.025399342179298],[-0.069064080715179,-0.037033837288618,-0.11331406980753]],[[0.020937100052834,-0.02955630235374,0.018974971026182],[-0.014258011244237,0.1405284255743,-0.1041411831975],[-0.010101470164955,-0.028275078162551,0.00084570795297623]],[[-0.042548779398203,-0.035203844308853,0.049558721482754],[0.038990318775177,0.041367944329977,-0.081809818744659],[-0.027392832562327,-0.031742889434099,-0.085207216441631]],[[0.053728237748146,-0.024193435907364,-0.16150660812855],[-0.013287807814777,-0.016745401546359,-0.0063932952471077],[0.044078823179007,-0.025398252531886,-0.0082747004926205]],[[-0.044941082596779,-0.13281919062138,-0.070301048457623],[0.093406982719898,-0.1169685870409,-0.0091489125043154],[-0.017184626311064,-0.066845521330833,0.0062463786453009]],[[-0.12429096549749,-0.037434622645378,0.027193596586585],[-0.0039326855912805,-0.068987235426903,0.061075635254383],[0.0099709173664451,-0.013068451546133,0.081043392419815]],[[-0.03470104932785,0.013467078097165,0.050053127110004],[0.0020561835262924,-0.076817758381367,-0.0803017988801],[-0.045418761670589,-0.074953898787498,-0.13472402095795]],[[-0.054427873343229,0.078466981649399,0.017120910808444],[-0.018789183348417,-0.0027775301132351,-0.049982368946075],[0.054775923490524,-0.022253645583987,0.028833756223321]],[[-0.082357138395309,-0.043460439890623,0.085340522229671],[-0.044558562338352,-0.027045227587223,0.2406220883131],[-0.10795766860247,-0.033487882465124,0.081192225217819]],[[0.033629439771175,-0.018546793609858,0.13044795393944],[-0.085480347275734,-0.097341425716877,-0.019816944375634],[-0.042535077780485,0.027846639975905,-0.05939057096839]],[[0.10214000195265,-0.035885784775019,0.069898061454296],[0.11363756656647,-0.064250789582729,-0.071021147072315],[0.037031371146441,0.015511138364673,-0.011216904968023]],[[0.091684028506279,-0.073985397815704,-0.086920365691185],[-0.14115019142628,-0.043120052665472,0.10745462030172],[0.10138639807701,0.0082432283088565,-0.045970104634762]],[[0.048782356083393,0.038879610598087,-0.078302793204784],[0.10590490698814,0.0066673001274467,-0.17854203283787],[-0.051431234925985,0.10483259707689,-0.163479834795]],[[0.047880876809359,-0.0006484811892733,0.089581213891506],[-0.015759432688355,0.01000508479774,-0.026059651747346],[0.06803647428751,0.042594682425261,0.012246680445969]],[[-0.016018722206354,-0.056905139237642,-0.10635232925415],[-0.011139782145619,-0.059481799602509,-0.069111779332161],[-0.0066942707635462,0.022786054760218,0.019885934889317]],[[0.017322208732367,-0.02809888496995,0.18455027043819],[-0.095897451043129,0.047110825777054,0.058761950582266],[-0.15746729075909,0.074657797813416,0.075223661959171]],[[-0.059550080448389,-0.022256914526224,-0.075506679713726],[-0.0041169594042003,0.025570463389158,-0.061769798398018],[0.016927868127823,-0.075944922864437,-0.12355540692806]],[[-0.045497473329306,0.053149171173573,-0.028989367187023],[0.015222737565637,0.0096070915460587,-0.016761349514127],[-0.0053259716369212,0.056264739483595,-0.031003480777144]],[[0.055538047105074,-0.040251318365335,0.0044749584048986],[0.044601693749428,-0.11646350473166,-0.01017047278583],[-0.028528865426779,-0.11813056468964,0.0028221551328897]],[[0.011555299162865,0.040444184094667,0.036607440561056],[-0.03797072917223,-0.047267023473978,0.065506480634212],[-0.071248963475227,0.0071636871434748,0.09780615568161]],[[0.11418341100216,0.094720028340816,-0.118862234056],[0.080808952450752,-0.069413043558598,-0.10034830123186],[-0.027755908668041,0.0026112038176507,-0.082405529916286]],[[0.040946651250124,0.17367844283581,0.0065998858772218],[0.00096508156275377,-0.13342462480068,-0.078475579619408],[-0.14297080039978,-0.13517113029957,-0.000214768879232]],[[-0.080856166779995,-0.029651073738933,0.21277345716953],[-0.095735885202885,-0.040295511484146,0.15574604272842],[-0.108712695539,-0.089532852172852,0.19352839887142]],[[0.12684652209282,0.026567939668894,-0.018352296203375],[-0.052445650100708,-0.069308757781982,0.03398422524333],[0.01530481968075,0.024155246093869,0.040087960660458]],[[0.028935359790921,-0.034397203475237,-0.11021391302347],[0.049616780132055,0.022467171773314,-0.11644541472197],[-0.027546759694815,-0.014377584680915,-0.16368578374386]],[[-0.032714158296585,0.04193527251482,0.049377098679543],[-0.069681286811829,-0.11816252022982,0.018887529149652],[-0.03079411201179,0.0092123597860336,-0.040385507047176]],[[0.10302055627108,0.10362390428782,-0.097180865705013],[0.09187275916338,0.070611320436001,-0.30847945809364],[-0.021335855126381,-0.07239942252636,-0.15599364042282]],[[0.028865890577435,0.059317640960217,-0.01380599476397],[0.03815034776926,0.0070656761527061,0.079947501420975],[-0.12450201809406,-0.01146655343473,-0.050671741366386]],[[0.026277413591743,0.018041433766484,-0.076918661594391],[0.080926939845085,-0.059919346123934,-0.039094883948565],[0.032738633453846,0.084199912846088,-0.21624217927456]],[[-0.021058063954115,-0.17318253219128,-0.042237982153893],[0.044813763350248,-0.12594573199749,0.043304614722729],[0.028677754104137,0.097869746387005,-0.075222134590149]],[[-0.051864247769117,0.067791268229485,-0.02462163195014],[-0.025698859244585,0.019136695191264,0.038059879094362],[-0.0079758428037167,-0.048297353088856,0.014249325729907]],[[0.061562813818455,-0.083915218710899,-0.13526038825512],[-0.075576901435852,0.14641423523426,-0.073549270629883],[-0.022352458909154,0.075263790786266,0.045767616480589]],[[0.098639763891697,-0.081165634095669,-0.072616696357727],[-0.0085682757198811,-0.20715647935867,-0.12210847437382],[0.11434549838305,0.055833522230387,-0.079972960054874]],[[0.061553321778774,-0.099798776209354,-0.073782205581665],[0.056524552404881,0.036103524267673,-0.048334166407585],[-0.05482242256403,0.010224414989352,-0.030964367091656]],[[-0.039050221443176,0.043467875570059,-0.23760513961315],[0.018217900767922,0.0076599679887295,-0.075526714324951],[-0.018623992800713,-0.03758742660284,0.052670694887638]],[[-0.0079643949866295,-0.0081153158098459,0.072175480425358],[0.0053795683197677,-0.061939522624016,-0.046924788504839],[-0.0098376283422112,-0.064847990870476,0.0017353105358779]],[[-0.095200322568417,-0.23491497337818,0.087142705917358],[-0.024150284007192,0.068371780216694,0.2045065164566],[-0.076932907104492,0.006580809596926,0.063430920243263]],[[-0.005774324759841,0.019335810095072,-0.014257712289691],[-0.028783256188035,0.096381328999996,-0.083824053406715],[-0.074494689702988,-0.019626215100288,-0.070767618715763]],[[0.065549150109291,-0.020537251606584,-0.14214186370373],[0.13095393776894,-0.058766230940819,-0.0076428735628724],[0.0044148685410619,0.018237354233861,-0.0021681992802769]],[[0.1543136537075,0.075898490846157,-0.056150104850531],[0.014984497800469,0.12886235117912,-0.0025442878250033],[-0.10195101797581,-0.098173975944519,-0.096330545842648]],[[0.015136621892452,-0.042277250438929,-0.054820612072945],[-0.0030930209904909,0.022560868412256,0.00733189471066],[0.0068706525489688,0.11996351182461,-0.046357169747353]],[[-0.01001857034862,0.14261284470558,0.01638519577682],[0.047813273966312,-0.068964757025242,-0.01098576746881],[-0.012328071519732,-0.010336636565626,-0.056453004479408]],[[0.014369024895132,0.035179544240236,-0.10976967960596],[0.015118532814085,-0.018333479762077,0.047739092260599],[0.030964028090239,0.010709176771343,-0.0087661175057292]],[[0.074657924473286,0.023366168141365,-0.0049018189311028],[0.074640646576881,0.0077393604442477,-0.0267827603966],[0.087948940694332,0.060688830912113,-0.046883009374142]],[[-0.17014075815678,0.064666993916035,-0.00067565881181508],[-0.1366151124239,0.016055461019278,0.21335616707802],[-0.095975436270237,0.028408454731107,0.044643603265285]],[[-0.080133184790611,-0.13155470788479,-0.081030018627644],[-0.023018730804324,-0.088736586272717,-0.15647330880165],[-0.024032110348344,-0.060313768684864,-0.12392886728048]],[[-0.088441871106625,0.040829997509718,-0.0019943369552493],[0.085166700184345,0.13819219172001,0.012399135157466],[-0.076882295310497,0.050027806311846,-0.081011407077312]],[[-0.045988894999027,0.059449575841427,-0.063001357018948],[0.046151500195265,0.059576410800219,-0.05638712272048],[0.10156880319118,0.1310183852911,-0.053355935961008]],[[-0.0098716607317328,0.067775443196297,0.19760771095753],[0.083792671561241,0.14683546125889,0.06064435839653],[0.014121484942734,0.021025586873293,0.19998981058598]],[[0.15675708651543,0.094781793653965,0.063471719622612],[0.11238221079111,0.01329971011728,-0.093172758817673],[-0.13984043896198,-0.27731996774673,-0.12936632335186]],[[0.023601165041327,0.043481774628162,-0.084200121462345],[0.060154024511576,-0.045158907771111,0.011242687702179],[0.046851981431246,0.037237539887428,0.0058193909935653]],[[0.098059773445129,-0.097954884171486,0.016213249415159],[-0.0099701844155788,0.046333894133568,-0.22724016010761],[0.093669965863228,-0.07723194360733,-0.039539624005556]],[[0.045077249407768,0.015963107347488,-0.025164924561977],[-0.035234551876783,0.10644013434649,-0.079046569764614],[0.017392018809915,-0.25131642818451,-0.065203100442886]],[[-0.069765791296959,-0.086828500032425,-0.026494365185499],[0.060595199465752,-0.14029644429684,0.023571196943521],[-0.092689253389835,0.1169096454978,0.19458761811256]],[[0.034902136772871,0.0039217239245772,0.042134720832109],[-0.0070459833368659,0.0020053663756698,0.032590825110674],[-0.018066117540002,0.0024887060280889,0.0087225791066885]],[[-0.0400565341115,-0.078606709837914,-0.12796196341515],[0.1869905591011,-0.16769933700562,-0.11700683832169],[0.060104686766863,-0.09491128474474,-0.14908124506474]],[[-0.025397701188922,-0.080353498458862,0.0067582866176963],[0.0088658472523093,0.10510144382715,0.1431036144495],[0.066645406186581,-0.034888930618763,0.067925542593002]],[[-0.038936261087656,-0.044563952833414,0.0086726387962699],[0.033599071204662,0.077137045562267,-0.018295453861356],[-0.047046139836311,0.054259795695543,0.021102771162987]],[[0.019368309527636,0.018392583355308,0.11213612556458],[0.082386888563633,-0.055068597197533,0.017411585897207],[0.0080415857955813,-0.026985257863998,0.049658078700304]]],[[[0.0160066857934,0.057677038013935,-0.028157768771052],[0.023180559277534,-0.016122145578265,0.032172486186028],[-0.037614706903696,-0.015161116607487,-0.094653606414795]],[[-0.012841591611505,-0.015393526293337,-0.046355802565813],[0.017582166939974,-0.041162844747305,-0.0005766341346316],[-0.014860654249787,0.022213837131858,0.030344545841217]],[[-0.048042960464954,-0.048619847744703,0.052197564393282],[-0.028184991329908,-0.030823234468699,-0.014345550909638],[0.0158945415169,0.013614248484373,0.0048557668924332]],[[0.015989130362868,0.039281465113163,-0.043810501694679],[-0.0065706525929272,0.037995886057615,0.018235385417938],[-0.035884313285351,-0.022664299234748,-0.096147477626801]],[[-0.0054749418050051,0.014536462724209,0.042422197759151],[0.0014789931010455,0.034952823072672,0.0058498024009168],[0.036597035825253,-0.010062180459499,-0.0057843304239213]],[[0.019581668078899,-0.15524558722973,-0.046438794583082],[-0.049215719103813,0.088540710508823,-0.020334640517831],[-0.018963422626257,0.10940215736628,0.052289981395006]],[[0.016401689499617,-0.020734263584018,0.0047907251864672],[0.0019910577684641,0.053114593029022,-0.023730566725135],[0.00075675605330616,-0.077844366431236,0.0046277828514576]],[[0.02404597774148,0.032147094607353,-0.046941000968218],[0.041000489145517,0.020208772271872,0.015567659400403],[0.041383545845747,-0.028247926384211,0.081630125641823]],[[-0.0021091473754495,0.043144270777702,-0.047602377831936],[0.024383405223489,0.08771563321352,-0.0018429028568789],[-0.010941731743515,0.0021832843776792,-0.018948191776872]],[[0.028546925634146,-0.013688311912119,0.09230088442564],[-0.011554097756743,-0.029140358790755,-0.012413509190083],[0.046835038810968,-0.025688854977489,-0.07136008143425]],[[0.0063577154651284,-0.060160752385855,0.073039941489697],[-0.026054741814733,-0.0049084667116404,0.051635976880789],[0.1551308631897,0.0040581021457911,0.022577980533242]],[[-0.041657336056232,-0.0065208021551371,-0.004887075163424],[-0.051042605191469,-0.010436122305691,0.027893956750631],[0.089326210319996,-0.03316381201148,0.017901165410876]],[[-0.08861631155014,-0.0012496148701757,-0.001424127491191],[-0.013604743406177,-0.046286318451166,-0.0055745812132955],[0.021460989490151,0.038918625563383,-0.0097588347271085]],[[0.017023183405399,0.094142638146877,0.099648088216782],[-0.015709038823843,0.040559809654951,0.015798773616552],[-0.066897012293339,-0.11766020953655,0.0050609493628144]],[[0.018588878214359,-0.012192886322737,-0.072181388735771],[0.11582735925913,0.057823784649372,0.13584306836128],[0.076495490968227,0.0033623005729169,0.010415297932923]],[[-0.1435786485672,0.0035171187482774,-0.027930438518524],[-0.061681780964136,-0.035789307206869,-0.0050203450955451],[-0.019549176096916,-0.017201533541083,0.0046066888608038]],[[0.03042677603662,-0.059508636593819,0.01627267152071],[0.055946454405785,0.053872428834438,0.054642170667648],[0.12966121733189,0.033087309449911,0.069575309753418]],[[-0.018507793545723,-0.049324430525303,-0.045676708221436],[0.019250510260463,-0.0026352498680353,-0.0033152517862618],[0.042096801102161,0.034257560968399,-0.037292078137398]],[[0.0089097926393151,-0.030929323285818,-0.028437336906791],[-0.0075913821347058,-0.061318352818489,0.013262155465782],[0.035721953958273,0.024815309792757,0.068129263818264]],[[-0.076988287270069,-0.037605460733175,0.047683171927929],[0.0082360161468387,-0.073952712118626,0.012039549648762],[0.026018714532256,-0.025710305199027,-0.0090351114049554]],[[0.091414846479893,0.018335025757551,0.10276393592358],[0.075966522097588,0.0055807828903198,0.037114750593901],[0.013474262319505,0.10307117551565,0.059192012995481]],[[-0.010598632507026,-0.043992027640343,0.066695995628834],[-0.019334357231855,-0.056370086967945,0.018636887893081],[0.01412848290056,0.0064609362743795,-0.00086679734522477]],[[-0.0077017741277814,-0.026584137231112,-0.0015306066488847],[0.051535930484533,0.022808972746134,-0.023879719898105],[0.0063874823972583,0.02565379627049,-0.0515026897192]],[[-0.026930840685964,-0.0083651803433895,-0.022812485694885],[-0.0068826195783913,-0.0032964115962386,0.029958825558424],[0.041585981845856,0.0014469634043053,-0.045854989439249]],[[0.056971829384565,0.058971974998713,0.024615675210953],[-0.01082933973521,0.040052741765976,0.12232431024313],[-0.045102566480637,0.071540877223015,-0.02178162895143]],[[0.014586852863431,-0.011467602103949,0.014748441055417],[-0.040796875953674,-0.013520299457014,0.029057256877422],[0.027497747913003,-0.004710148088634,0.031417079269886]],[[-0.00036427131271921,-0.00014963033027016,-0.03238295763731],[-0.002659018849954,0.024182334542274,-0.073119178414345],[0.025200935080647,0.0055378689430654,0.045990403741598]],[[-0.035363718867302,-0.017313871532679,0.053406316787004],[-0.0048547103069723,0.033399932086468,0.020565638318658],[-0.054702069610357,0.019830390810966,-0.043642066419125]],[[0.010339355096221,-0.0055533978156745,-0.069490537047386],[0.025714118033648,0.02582504414022,-0.026487946510315],[-0.065529242157936,-0.022938108071685,0.0034020720049739]],[[-0.023260857909918,0.0070172301493585,-0.028739696368575],[-0.032308902591467,-0.105743072927,-0.043908510357141],[-0.067433811724186,0.061927914619446,-0.037893529981375]],[[0.00080963602522388,-0.017383636906743,-0.0070072393864393],[0.023366833105683,-0.053517963737249,-0.034308165311813],[0.066853575408459,0.046679191291332,-0.024435855448246]],[[-0.0012916926061735,0.0006208989652805,-0.050800763070583],[-0.0043675331398845,-0.047533500939608,-0.073226809501648],[-0.058111757040024,0.024504220113158,-0.084996476769447]],[[0.0016995266778395,-0.035954628139734,0.10834897309542],[-0.0005730707780458,-0.021079495549202,0.042863789945841],[0.01359885558486,0.022703615948558,0.0092662405222654]],[[-0.0033045667223632,-0.032935190945864,0.0019488115794957],[0.025386365130544,0.015779245644808,-0.015157347545028],[0.02385426685214,0.082743935286999,0.089903295040131]],[[0.040660835802555,0.042705677449703,0.057546429336071],[-0.0091930832713842,0.064385131001472,0.020710680633783],[0.0066525144502521,0.045914299786091,-0.016864396631718]],[[0.034811217337847,0.022819940000772,-0.080042392015457],[-0.065891571342945,-0.0033426191657782,-0.0083561213687062],[0.060020670294762,-0.049911268055439,-0.0024422074202448]],[[-0.007070675957948,0.0076904115267098,0.019463831558824],[0.06530637294054,0.031525246798992,-0.046559445559978],[-0.0054452293552458,0.049832791090012,-0.059083197265863]],[[0.009675670415163,-0.020814970135689,0.061655059456825],[0.011855777353048,-0.044137004762888,-0.041807200759649],[-0.018035396933556,-0.010186878964305,-0.023922488093376]],[[-0.032974369823933,-0.062400326132774,0.0062978905625641],[0.057823766022921,-0.038450136780739,0.0027321628294885],[-0.040713392198086,0.0014896845677868,0.02581387385726]],[[-0.12641820311546,-0.015992095693946,-0.0727514103055],[-0.010999657213688,-0.0046353633515537,-0.019636793062091],[-0.012870034202933,-0.036248963326216,0.021523106843233]],[[0.0025069063995034,-0.0095440624281764,-0.043080847710371],[-0.059495788067579,-0.042236834764481,0.022787913680077],[-0.0675915107131,0.067605704069138,0.017976842820644]],[[-0.088223621249199,-0.032356541603804,0.011240021325648],[-0.033364813774824,0.0012861354043707,0.050425283610821],[-0.053781572729349,0.0070218103937805,0.056194137781858]],[[0.092560052871704,-0.016022637486458,0.039176270365715],[0.0044977655634284,0.0044543715193868,-0.050439078360796],[0.039279997348785,0.024009017273784,-0.059520918875933]],[[-0.0025745183229446,-0.040432702749968,-0.023449469357729],[-0.015549792908132,-0.035754460841417,0.015427859500051],[-0.0515206605196,0.046124830842018,-0.040155652910471]],[[0.015572484582663,0.0035646460019052,-0.048303194344044],[-0.0072360914200544,0.0055998880416155,-0.015387960709631],[0.0073093227110803,0.079545363783836,-0.053483549505472]],[[0.050023820251226,0.012921436689794,-0.011529692448676],[0.01642738468945,0.041390687227249,0.057432312518358],[-0.031292375177145,-0.011517551727593,0.011516460217535]],[[-0.049340568482876,-0.075001239776611,-0.010778662748635],[-0.022085558623075,0.023517023772001,0.031721498817205],[-0.019377186894417,-0.031316574662924,0.08863890171051]],[[0.077377647161484,0.072849906980991,-0.053767666220665],[0.093011178076267,0.018886981531978,0.026749292388558],[0.085492610931396,0.028639528900385,0.066730342805386]],[[0.006671002600342,-0.00092179409693927,-0.0010982205858454],[0.061054933816195,0.016162736341357,-0.022000396624207],[0.020170187577605,0.022737115621567,0.064640492200851]],[[0.081171162426472,-0.12016958743334,-0.041864488273859],[0.021427331492305,-0.032105892896652,-0.0043613715097308],[0.015246016904712,0.00093044363893569,0.015516970306635]],[[-0.043815284967422,-0.021614087745547,0.0059352898970246],[-0.02653306722641,-0.042542699724436,-0.037093691527843],[-0.026255793869495,-0.020847462117672,0.015461028553545]],[[0.020625961944461,0.032178554683924,0.035388447344303],[0.0022832036484033,-0.0042348918505013,0.010727411136031],[0.022551888599992,-0.032423507422209,-0.010554350912571]],[[0.039494227617979,0.02153604477644,0.0065366178750992],[0.075032770633698,0.069766350090504,-0.07722382247448],[0.016105754300952,0.027541710063815,0.02273809351027]],[[-0.0016068541444838,0.032110340893269,0.056046772748232],[0.05358687415719,0.10027090460062,0.035645477473736],[-0.012616691179574,-0.0045171119272709,-0.026547070592642]],[[0.043275464326143,-0.0047712214291096,0.027426395565271],[0.010817710310221,-0.044266406446695,-0.037827100604773],[0.00084813061403111,0.0045517818070948,0.010529411956668]],[[-0.018752496689558,-0.084202915430069,-0.042512465268373],[0.0063526998274028,0.065200008451939,-0.018043905496597],[-0.019670674577355,-0.037558797746897,-0.058903235942125]],[[-0.10539443045855,0.025566997006536,0.013404571451247],[0.010004348121583,0.07395876199007,-0.013955156318843],[0.014025701209903,-0.0054869181476533,-0.027544301003218]],[[0.028014594689012,-0.013377404771745,0.031797848641872],[0.0082694953307509,-0.06058444455266,0.035633914172649],[0.018910553306341,-0.0036424649879336,0.0079845301806927]],[[-0.06496225297451,0.010583863593638,0.0013034082949162],[0.0073717511259019,-0.04822001606226,0.055135283619165],[-0.032367389649153,0.027134023606777,0.025617528706789]],[[-0.028698593378067,-0.0095925852656364,0.021200338378549],[0.0033540860749781,0.024512698873878,0.009295990690589],[0.013978861272335,-0.010172589682043,0.014299977570772]],[[-0.011931012384593,-0.0051280395127833,-0.0028851921670139],[0.0044000325724483,0.052684187889099,0.019274163991213],[0.044319067150354,0.065980963408947,-0.066275730729103]],[[-0.032287765294313,-0.085900112986565,-0.0050199716351926],[0.0063611408695579,-0.074766971170902,-0.032755352556705],[-0.044204290956259,0.00021661157370545,0.011815345846117]],[[0.016088251024485,-0.09089607000351,0.080362319946289],[0.004160450771451,0.025376824662089,-0.030456716194749],[-0.044747047126293,0.020299786701798,0.024157395586371]],[[-0.062410987913609,0.0075974143110216,-0.0058592399582267],[0.068584881722927,0.00042478661634959,0.03737485408783],[-0.041294634342194,0.0069843763485551,-0.018818609416485]]],[[[0.047246675938368,-0.057045727968216,0.0053759850561619],[-0.044181756675243,0.12365192174911,0.060307148844004],[0.018620254471898,0.063620857894421,0.041230272501707]],[[-0.008287881501019,-0.041337389498949,-0.057664755731821],[-0.0091307954862714,0.043928898870945,-0.014031213708222],[0.043376334011555,-0.031762767583132,-0.00046544821816497]],[[-0.055762577801943,0.058691460639238,0.048374094069004],[-0.05067352950573,0.049506030976772,-0.010790753178298],[-0.071072578430176,-0.0056937988847494,-0.012673981487751]],[[0.02921893261373,-0.015769965946674,-0.006594377104193],[-0.026772987097502,-0.025894774124026,0.013652781024575],[-0.044635329395533,0.10645305365324,-4.3774725781986e-05]],[[0.025812577456236,0.0059127127751708,0.027301233261824],[-0.05105410143733,0.064358532428741,-0.032313086092472],[-0.0085526825860143,-0.028258312493563,0.045867867767811]],[[0.0084024239331484,0.0010808798251674,-0.023178653791547],[0.046152394264936,0.077163316309452,0.10512801259756],[-0.14817464351654,0.011467094533145,0.0082159098237753]],[[0.042130623012781,-0.021391995251179,0.0043432004749775],[0.00085339270299301,-0.076735287904739,-0.0086074359714985],[-0.024651786312461,-0.021803671494126,-0.037025272846222]],[[-0.10170921683311,-0.05064719170332,0.01629295386374],[-0.0020347784738988,-0.045268584042788,-0.015783613547683],[-0.0021033193916082,0.0089626479893923,0.026728780940175]],[[0.039192974567413,-0.0079577229917049,0.065388053655624],[0.0065542804077268,-0.024208404123783,0.0095495507121086],[-0.07770798355341,0.038350906223059,-0.0049416488036513]],[[0.017175860702991,0.049904633313417,0.011162299662828],[0.031597159802914,-0.016248438507318,-0.13269884884357],[-0.016943896189332,-0.036216359585524,-0.036735840141773]],[[-0.03481674939394,0.074349910020828,0.010975122451782],[0.049799706786871,-0.087502680718899,-0.017843438312411],[0.090323612093925,0.082836978137493,-0.079842552542686]],[[0.044420972466469,-0.037991560995579,0.08873101323843],[0.034711085259914,0.030160259455442,-0.078726530075073],[-0.0020589106716216,0.011726784519851,0.087315455079079]],[[0.0067583862692118,0.049785751849413,0.033272445201874],[0.016491902992129,-0.02057701908052,0.032785944640636],[0.038384195417166,0.070884570479393,0.075700804591179]],[[0.017867162823677,-0.0080845039337873,-0.044359277933836],[0.0696045383811,0.029023664072156,0.025669427588582],[0.079803213477135,0.017820578068495,0.010582548566163]],[[0.044047705829144,-0.0038957754150033,0.013150569051504],[-0.054958179593086,0.039678230881691,0.073853924870491],[0.041254475712776,-0.022557225078344,-0.0042456393130124]],[[-0.0089308014139533,-0.024034885689616,-0.041769549250603],[0.020297326147556,-0.022564198821783,0.048601698130369],[-0.00073112384416163,0.040109694004059,0.017331644892693]],[[-0.019035123288631,0.010868167504668,-0.016766726970673],[-0.0014540962874889,0.041111804544926,0.044322311878204],[0.021745508536696,-0.051208019256592,-0.028649000450969]],[[0.020137213170528,0.067429594695568,0.075523756444454],[-0.02162080258131,0.069882564246655,0.027779061347246],[0.0072759124450386,0.020461427047849,-0.027245810255408]],[[-0.095296561717987,0.071082696318626,0.10136643052101],[-0.065362393856049,0.004719044547528,0.032219961285591],[-0.0067163766361773,-0.018165290355682,0.0011002769460902]],[[0.0040915077552199,-0.023895328864455,0.02923808991909],[0.025461070239544,0.0289555657655,-8.1391757703386e-05],[0.029510926455259,0.050886310636997,0.0602036267519]],[[0.080410301685333,-0.070701345801353,-0.022451620548964],[0.004154113586992,-0.028448762372136,0.056797202676535],[0.1642886698246,0.1189032047987,0.15427286922932]],[[0.0020489075686783,-0.0076374737545848,0.068293176591396],[0.040366377681494,0.055927406996489,0.0070906234905124],[0.040747862309217,-0.014848066493869,0.03107382170856]],[[-0.0084241759032011,0.042870387434959,0.055582836270332],[0.021928247064352,0.022353464737535,-0.051414720714092],[-0.065585918724537,-0.0050502000376582,0.0011067719897255]],[[0.062244053930044,-0.013175164349377,0.093684367835522],[-0.038490939885378,0.039594635367393,0.0074398443102837],[0.05617431551218,0.0031788742635399,-0.026008246466517]],[[-0.13704159855843,0.051676973700523,0.022773180156946],[-0.039732463657856,0.00066555273951963,-0.066146939992905],[0.025324005633593,-0.024315822869539,-0.027853175997734]],[[0.034709386527538,0.037154916673899,0.036346714943647],[-0.014117701910436,0.01159178186208,-0.055339820683002],[0.024479752406478,-0.088231444358826,-0.042656484991312]],[[0.04221522808075,0.10166297107935,-0.032009340822697],[-0.013957252725959,-0.052370827645063,0.074420221149921],[-0.050497725605965,-0.032805372029543,0.0404810346663]],[[0.053109981119633,-0.0050341645255685,-0.021695828065276],[-0.011559163220227,0.11837531626225,0.019502636045218],[0.12059939652681,0.092960514128208,0.036216009408236]],[[-0.069851472973824,0.0084463646635413,-0.066486582159996],[-0.032102350145578,-0.031580451875925,0.043390676379204],[0.016982957720757,-0.036795485764742,-0.083352290093899]],[[0.036713659763336,-0.083035089075565,0.037604402750731],[-0.056461773812771,0.075223930180073,-0.057320415973663],[0.043481022119522,0.0088161313906312,-0.061222594231367]],[[-0.0043886206112802,0.038521058857441,-0.011059045791626],[-0.073670193552971,0.029667396098375,-0.041667990386486],[0.067966289818287,-0.12290827929974,0.03173515573144]],[[0.099717371165752,0.059432093054056,0.038184888660908],[-0.01465308573097,-0.032138161361217,0.0084789870306849],[-0.007146664429456,0.079523608088493,0.00048327702097595]],[[0.033493664115667,0.02276031114161,-0.077405944466591],[-0.095384776592255,-0.16418135166168,0.055694013834],[0.16507463157177,-0.032832112163305,0.024979878216982]],[[0.084209606051445,0.03004171513021,0.059351444244385],[0.051424242556095,0.069394499063492,0.090988881886005],[-0.0036756249610335,-0.043559614568949,-0.037326000630856]],[[-0.030584491789341,0.06804695725441,0.002358649391681],[0.10134480148554,-0.055670481175184,-0.017177393659949],[-0.033834278583527,-0.087010979652405,-0.057448267936707]],[[0.017028169706464,-0.067278288304806,-0.0056903283111751],[-0.19306789338589,-0.090116746723652,0.049309510737658],[-0.030033113434911,0.02703426219523,0.024113027378917]],[[-0.031872734427452,-0.037880588322878,0.065259404480457],[-0.091024965047836,0.068734712898731,0.039128474891186],[-0.041363820433617,-0.043365139514208,-0.0088088642805815]],[[0.049250494688749,-0.06841916590929,-0.0098797949030995],[0.0011110283667222,0.052051812410355,0.02931097894907],[-0.13452416658401,-0.01658190600574,-0.050237212330103]],[[0.12819923460484,0.19713650643826,-0.012536039575934],[0.090490221977234,-0.051982965320349,0.056793108582497],[-0.077826075255871,-0.09762991964817,-0.0027070103678852]],[[0.042790818959475,-0.032049804925919,-0.026161909103394],[-0.00012958057050128,-0.031013859435916,0.012832895852625],[0.035289369523525,-0.04810593277216,-0.096906155347824]],[[0.050733111798763,0.058074165135622,0.050835151225328],[-0.049013994634151,0.030033489689231,0.093356810510159],[-0.01819759234786,-0.082296639680862,-0.033335138112307]],[[-0.082892723381519,-0.055394057184458,-0.025452034547925],[-0.013232837431133,0.00076549913501367,-0.011842857114971],[-0.028656678274274,0.057559929788113,0.14266167581081]],[[0.028806591406465,0.013648862019181,0.0047284425236285],[-0.043170958757401,0.037260644137859,-0.0050599765963852],[-0.00056570232845843,-0.036005437374115,-0.053381618112326]],[[-0.011629749089479,-0.035718493163586,-0.05477237328887],[0.013593459501863,0.018796795979142,-0.011933936737478],[-0.071343392133713,-0.075908467173576,-0.010451384820044]],[[0.043168310075998,0.025098552927375,-0.089606389403343],[0.11630172282457,0.039199288934469,-0.15287524461746],[0.15948170423508,0.01258419174701,-0.057846654206514]],[[0.043667290359735,-0.023001281544566,-0.080952174961567],[-0.0064151389524341,0.0091820200905204,-0.02791154012084],[0.0047577759250998,-0.074756614863873,-0.003784355474636]],[[-0.026663364842534,-0.058301754295826,0.064753636717796],[-0.060225334018469,0.066378273069859,-0.038387112319469],[0.014859205111861,-0.048553522676229,0.054981123656034]],[[-0.0025477283634245,0.021300723776221,0.014976339414716],[0.0030609723180532,0.071476876735687,0.0076237241737545],[-0.028156930580735,-0.024187656119466,0.029361847788095]],[[0.0037869105581194,0.0092235440388322,-0.0089777614921331],[-0.068634025752544,0.076572895050049,-0.016450259834528],[0.013842002488673,0.011312860064209,-0.022911882027984]],[[-0.0099554462358356,0.007587636820972,-0.061426650732756],[-0.050654985010624,-0.049069955945015,0.08461856842041],[0.045875761657953,0.055817138403654,-0.013669502921402]],[[0.048408381640911,0.04361928626895,-0.011128273792565],[0.022814786061645,-0.022481065243483,0.0058260122314095],[-0.11445969343185,0.038660746067762,-0.011007009074092]],[[0.012130152434111,-0.0049226516857743,0.02973985299468],[-0.064669102430344,0.091118380427361,0.043096661567688],[-0.010836509056389,-0.00084526877617463,0.071541763842106]],[[0.00068795098923147,0.058731153607368,-0.052643250674009],[-0.016308834776282,-0.039144065231085,-0.061423942446709],[-0.044999249279499,-0.071328334510326,0.016987586393952]],[[0.12581241130829,-0.026156861335039,-0.060214411467314],[-0.0060649402439594,0.069704294204712,0.082015089690685],[0.1957585811615,0.1139605268836,0.035879261791706]],[[0.16259667277336,-0.059080667793751,-0.053301304578781],[0.092164397239685,-0.024774814024568,0.0078560318797827],[-0.050494886934757,-0.052834138274193,-0.081695169210434]],[[0.083155855536461,0.1025149077177,-0.0078774048015475],[0.011780298314989,0.067083895206451,-0.060485903173685],[-0.0041284118779004,-0.042348932474852,0.02932364679873]],[[0.1193879544735,0.076019428670406,0.021590940654278],[0.031152494251728,0.017122253775597,-0.038018062710762],[0.081545889377594,-0.013724649325013,-0.000654197181575]],[[-0.0013003539061174,-0.025759866461158,0.0063031353056431],[0.0013631432084367,0.033455643802881,0.0089284973219037],[-0.012807314284146,0.021054126322269,-0.038924563676119]],[[-0.065657369792461,0.05781988799572,-0.058410041034222],[0.051480047404766,-0.052839998155832,0.0088047049939632],[0.040425803512335,-0.057439390569925,-0.082075364887714]],[[0.022630032151937,-0.023003278300166,-0.028399385511875],[-0.0094580259174109,-0.01977526396513,0.018861584365368],[0.05928810685873,0.032728925347328,0.063306145370007]],[[-0.0065928515978158,0.076141402125359,-0.032092362642288],[-0.019411770626903,-0.061205390840769,-0.024360632523894],[-0.059752397239208,0.05138711258769,0.056915834546089]],[[-0.030883608385921,0.061005383729935,-0.015797417610884],[0.084237225353718,-0.009280614554882,-0.10114144533873],[0.065092444419861,-0.050238601863384,-0.0077714901417494]],[[0.017486624419689,-0.047878071665764,0.03232790902257],[0.059272199869156,0.036098975688219,0.010836482048035],[-0.032198332250118,-0.023418799042702,0.0053247949108481]],[[0.040571797639132,-0.072343662381172,-0.039466790854931],[-0.062618136405945,-0.04027721658349,0.063146904110909],[-0.022672135382891,0.13603956997395,-0.043780822306871]]],[[[-0.094103991985321,-0.1544988155365,-0.029127672314644],[-0.047788422554731,0.04025761038065,0.064665302634239],[-0.017785271629691,0.051807623356581,-0.021822175011039]],[[-0.016388963907957,0.011598920449615,0.02910977602005],[0.056475173681974,0.042614948004484,-0.058173201978207],[-0.077866844832897,-0.0049715666100383,0.020865824073553]],[[0.00046019192086533,0.04468073323369,-0.042293969541788],[0.0061501231975853,-0.10456726700068,-0.011640109121799],[-0.016747133806348,0.0067515391856432,-0.095659822225571]],[[0.12697716057301,-0.052539195865393,-0.090708643198013],[-0.20103906095028,-0.09217319637537,0.030253874137998],[0.085939005017281,-0.13804821670055,0.10009671002626]],[[-0.0058365697041154,-0.072684727609158,-0.16021195054054],[0.010345494374633,0.085954189300537,0.027762381359935],[-0.031028425320983,0.065352000296116,0.043274279683828]],[[-0.013313983567059,-0.016131574288011,0.0068422444164753],[0.046782352030277,-0.0039769136346877,-0.056246023625135],[0.0024991421960294,-0.085423596203327,-0.046083636581898]],[[-0.013319688849151,-0.049882296472788,-0.04053770750761],[0.048401072621346,-0.0078009171411395,0.030120005831122],[0.037636399269104,0.022682240232825,0.054705772548914]],[[0.061657663434744,0.048599481582642,-0.059874542057514],[-0.0059594796039164,0.073486186563969,0.0083038620650768],[0.051268700510263,-0.14300334453583,0.048562921583652]],[[-0.00028458723681979,-0.0088701294735074,0.17201094329357],[-0.046251717954874,-0.13813863694668,-0.050150536000729],[0.093829460442066,-0.042389553040266,-0.15313038229942]],[[-0.19893354177475,-0.0025954109150916,0.046586312353611],[0.043937206268311,-0.13115426898003,-0.022465087473392],[0.10858859121799,0.11038000881672,-0.0013966808328405]],[[-0.11621081829071,0.010383425280452,-0.031800471246243],[0.063921950757504,-0.082344070076942,-0.034105874598026],[0.0026748348027468,0.11935879290104,0.030591094866395]],[[-0.15630342066288,0.057737987488508,-0.00048085537855513],[-0.062834553420544,-0.059574466198683,-3.9069464037311e-06],[0.031468734145164,0.043011900037527,0.019841497763991]],[[0.045604709535837,0.039447296410799,-0.080270305275917],[0.015699006617069,-0.014308896847069,-0.1626847833395],[-0.016752194613218,0.046250071376562,0.089075528085232]],[[-0.081586465239525,-0.039994198828936,0.039550378918648],[-0.0059031439013779,-0.0004510332364589,0.083861976861954],[-0.027634484693408,0.10615538805723,-0.010474077425897]],[[-0.022308198735118,0.0059666899032891,0.023258488625288],[-0.0055438573472202,0.0050591384060681,-0.04461419954896],[0.084582462906837,-0.009833344258368,0.057176776230335]],[[-0.097504653036594,0.011557682417333,0.031259555369616],[0.046243716031313,-0.020904410630465,-0.0017946243751794],[0.039271231740713,0.065428383648396,0.035427678376436]],[[0.047150015830994,0.068282529711723,0.0078950980678201],[-0.012266267091036,-0.016750833019614,-0.020846337080002],[-0.058301825076342,0.03401730582118,0.0052144275978208]],[[-0.072882771492004,0.048638232052326,-0.071180239319801],[-0.02496506460011,-0.028259878978133,-0.016582190990448],[0.0012440198333934,-0.0012041834415868,0.11920067667961]],[[-0.10179416835308,-0.022769268602133,0.013438598252833],[-0.067255064845085,0.0042171915993094,-0.050107289105654],[-0.022640386596322,0.033278189599514,-0.072447955608368]],[[-0.050432037562132,0.063715294003487,-0.028435541316867],[-0.072758138179779,-0.034600131213665,0.0093699023127556],[-0.0063359867781401,-0.06672041863203,0.018101351335645]],[[-0.052211072295904,-0.005841507576406,0.08605033159256],[0.017173325642943,-0.074880607426167,-0.010198776610196],[-0.016061382368207,0.059177312999964,0.069732792675495]],[[0.03962542116642,0.059520617127419,-0.08813051879406],[-0.027363818138838,-0.062432885169983,-0.0036202848423272],[-0.035879835486412,-0.027753347530961,0.10375960171223]],[[0.018797604367137,-0.012870113365352,-0.12236072123051],[0.014777233824134,0.087067432701588,-0.014428907074034],[-0.054164174944162,0.030500881373882,0.046492766588926]],[[0.060258764773607,0.042549025267363,0.02483251132071],[-0.026740709319711,0.086506821215153,0.049607429653406],[-0.11418984085321,-0.059216447174549,-0.07658052444458]],[[-0.028233731165528,0.066849507391453,0.078214623034],[-0.052154891192913,0.12846344709396,-0.088762730360031],[-0.10224658995867,0.080500386655331,0.096723109483719]],[[-0.032199464738369,-0.11611497402191,-0.0030681013595313],[-0.014022684656084,-0.10046434402466,-0.025763396173716],[0.016762956976891,-0.073738895356655,0.034168940037489]],[[-0.044930096715689,0.092253006994724,-0.027452107518911],[-0.023797007277608,0.038060732185841,-0.0036806338466704],[-0.035524278879166,0.010653273202479,0.141522154212]],[[0.045214299112558,0.096195206046104,0.082676485180855],[0.02287369966507,0.054544396698475,0.13405486941338],[-0.11739642173052,-0.07050859183073,-0.075850687921047]],[[-0.16710016131401,-0.054464392364025,0.015200766734779],[-0.046013165265322,-0.12749396264553,-0.062960051000118],[-0.004836046602577,-0.029449222609401,0.04582679271698]],[[-0.051621038466692,0.043898746371269,-0.088953346014023],[0.072269171476364,0.11168394237757,-0.04191904887557],[0.00036141872988082,0.038546897470951,-0.016985254362226]],[[-0.14775861799717,-0.14478050172329,-0.053366258740425],[-0.061140507459641,-0.038598444312811,-0.13237658143044],[0.16171281039715,0.12168552726507,0.054556284099817]],[[-0.082849338650703,-0.01356756594032,-0.071001969277859],[0.013509296812117,0.055988110601902,-0.06544703990221],[-0.13237270712852,-0.022063480690122,-0.075067616999149]],[[0.029035286977887,-0.072028264403343,-0.05585128441453],[0.10127265751362,-0.0040219505317509,0.015179386362433],[0.0229836627841,0.019028460606933,-0.11687342077494]],[[0.13446250557899,-0.017650259658694,0.01464939955622],[0.058947965502739,0.085729688405991,0.033449579030275],[-0.013085185550153,0.036199439316988,-0.10643368214369]],[[0.069184064865112,-0.035760756582022,0.065242037177086],[0.070133902132511,-0.029267596080899,0.14651927351952],[-0.0054143075831234,0.028078062459826,-0.11561089754105]],[[0.073268972337246,-0.011329940520227,0.044069096446037],[0.14707823097706,-0.10653513669968,-0.1012935936451],[-0.039965268224478,0.019628569483757,-0.032211694866419]],[[-0.056775912642479,-0.004214683547616,-0.02686832845211],[-0.0022960817441344,-0.055774483829737,0.00087047857232392],[0.12185605615377,0.17480221390724,-0.050832904875278]],[[-0.0044206292368472,-0.13466963171959,-0.061735540628433],[0.065462499856949,0.11664140224457,0.00049961358308792],[-0.029047777876258,0.014968017116189,0.040902122855186]],[[0.10851433128119,0.026554074138403,0.062088176608086],[-0.038283050060272,-0.029003163799644,0.04965403676033],[-0.0072583602741361,0.089834198355675,-0.086582891643047]],[[0.0058733895421028,-0.037984136492014,-0.049189705401659],[0.018439320847392,-0.19264741241932,-0.0067384457215667],[0.089145511388779,0.049531389027834,0.077573910355568]],[[-0.031888898462057,-0.0079735778272152,-0.0015227106632665],[-0.0070891748182476,0.0258530639112,-0.033281374722719],[0.099353477358818,0.017114775255322,0.066952876746655]],[[-0.058207299560308,0.08771325647831,0.096740327775478],[0.047381106764078,0.0078133754432201,0.02681390568614],[0.060096234083176,-0.10029012709856,-0.066644288599491]],[[-0.11390179395676,-0.082921326160431,0.094824932515621],[0.010160720907152,0.0094190975651145,0.11438573896885],[-0.018401520326734,-0.073964662849903,0.04296762868762]],[[-0.046869721263647,-0.02730967104435,-0.030354512855411],[-0.021330093964934,-0.032357428222895,-0.060044590383768],[0.024010537192225,0.079960957169533,-0.062431376427412]],[[-0.040923964232206,0.010600436478853,0.013584782369435],[-0.010513219982386,0.031066417694092,0.038673236966133],[-0.20285604894161,0.019463174045086,-0.033403120934963]],[[0.012903715483844,-0.11965792626143,-0.00085007934831083],[-0.0077827642671764,-0.062142923474312,-0.058562271296978],[-0.022849977016449,-0.07945129275322,0.0039185625500977]],[[0.17669110000134,0.02557635679841,-0.11580877751112],[0.19908182322979,0.088166750967503,-0.074688538908958],[-0.053231067955494,-0.0091727497056127,-0.085368677973747]],[[0.0056572961620986,0.10342868417501,-0.029494410380721],[-0.019046017900109,0.16901436448097,-0.0011800448410213],[-0.080327443778515,-0.008082190528512,-0.018770342692733]],[[0.048277083784342,0.060477007180452,0.02226016484201],[0.014615161344409,-0.011062401346862,-0.029435349628329],[-0.021096844226122,-0.037982810288668,0.059499673545361]],[[-0.019517911598086,0.048416934907436,0.037434369325638],[-0.10751836001873,0.015034946613014,0.037772692739964],[0.087864734232426,0.0073895375244319,-0.0097681153565645]],[[0.049227971583605,-0.040149662643671,-0.014034658670425],[0.024860080331564,-0.14776700735092,-0.012292038649321],[0.0065929307602346,-0.015448694117367,-0.10835079848766]],[[0.088698253035545,-0.010855099186301,0.036610189825296],[0.051110729575157,0.052275836467743,-0.019465027377009],[-0.045299369841814,0.0090484675019979,-0.038289982825518]],[[0.036008972674608,0.021504057571292,0.10844281315804],[-0.00033613803680055,0.067777469754219,0.025433361530304],[0.020797722041607,-0.002367575885728,-0.00057097233366221]],[[0.041905105113983,0.17458809912205,0.0037040666211396],[0.0069258431904018,-0.0078628053888679,0.14292596280575],[0.049787294119596,0.061707030981779,-0.046218406409025]],[[-0.1099770590663,-0.082211673259735,-0.11962208151817],[-0.0054792878217995,0.036942735314369,-0.044499430805445],[-0.069501809775829,0.09917263686657,0.048487722873688]],[[0.12537975609303,-0.051551029086113,-0.12471914291382],[0.01363683771342,0.093728207051754,-0.09458701312542],[-0.045124463737011,0.043990600854158,-0.019607704132795]],[[-0.029727621003985,-0.1225468814373,-0.027288312092423],[0.11075907945633,-0.12185993045568,-0.033882685005665],[0.091682180762291,-0.043109949678183,-0.084207095205784]],[[-0.013536908663809,-0.079550996422768,-0.01813874207437],[0.022623462602496,-0.0052320822142065,-0.07645283639431],[-0.045058108866215,-0.0033410133328289,-0.07011329382658]],[[-0.047718700021505,-0.10233751684427,0.014001291245222],[0.013280429877341,-0.024858759716153,-0.025257801637053],[0.021054370328784,0.013929545879364,0.0085761696100235]],[[0.010516528971493,0.034308832138777,0.074849180877209],[-0.0050436919555068,-0.055976424366236,0.0029098172672093],[0.02590230666101,-0.019366329535842,-0.038166765123606]],[[-0.063924834132195,-0.045421365648508,-0.010265734046698],[0.11512477695942,0.11422031372786,0.041154753416777],[-0.082450456917286,0.12361551821232,0.10054010897875]],[[-0.016436571255326,0.069508068263531,-0.01715868152678],[0.13570769131184,-0.091297216713428,-0.053699094802141],[-0.021485060453415,0.02626483514905,-0.094198547303677]],[[-0.079410873353481,-0.15905968844891,0.069971516728401],[-0.054222017526627,0.058665279299021,-0.0029216504190117],[0.019940461963415,0.12823036313057,-0.13711331784725]],[[-0.13366079330444,-0.033755958080292,0.074245028197765],[0.022942198440433,-0.10430116206408,0.075454607605934],[0.012984051369131,-0.084215760231018,-0.017175126820803]]],[[[0.032353281974792,-0.045951217412949,0.065303444862366],[0.058945681899786,-0.070050224661827,-0.014172581955791],[-0.0087668746709824,0.062592379748821,-0.048448070883751]],[[-0.012055742554367,-0.014250428415835,-0.016129374504089],[-0.0032386416569352,-0.054823122918606,3.1037383450894e-05],[0.013010586611927,-0.014903587289155,-0.024504227563739]],[[-0.024785591289401,-0.029623923823237,0.045327506959438],[0.0021024465095252,-0.031368013471365,-0.015162947587669],[-0.0011799720814452,0.017983181402087,0.0077838278375566]],[[-0.019907768815756,-0.01533639896661,0.022019926458597],[-0.0042902426794171,0.03365296125412,-0.011530335992575],[0.04020743444562,-0.050994500517845,-0.028900252655149]],[[-0.010487345978618,0.0029407169204205,-0.024490527808666],[0.025462659075856,-0.031475029885769,0.016730139032006],[-0.023246312513947,-0.015690319240093,-0.070786334574223]],[[0.0023898794315755,0.030183827504516,0.012097149156034],[-0.1061213389039,0.17580746114254,-0.088733196258545],[-0.075339183211327,0.051658842712641,-0.066267803311348]],[[-0.055994693189859,0.036634087562561,-0.0078321360051632],[-0.05948268994689,-0.00033003595308401,0.045953530818224],[-0.012943055480719,0.019643522799015,0.067419163882732]],[[0.11680449545383,0.055483341217041,-0.017413552850485],[-0.079866841435432,0.050967663526535,0.078070059418678],[0.0044520949013531,0.025633262470365,0.011563280597329]],[[-0.056929942220449,-0.062630467116833,0.0056302770972252],[-0.0073235272429883,-0.014143107458949,-0.024990594014525],[-0.072997562587261,-0.016360484063625,-0.0034371926449239]],[[-0.011272054165602,-0.055071666836739,0.075249187648296],[0.023561403155327,-0.028590528294444,-0.015824468806386],[-0.022081410512328,0.086125813424587,-0.078268125653267]],[[-0.011272157542408,-0.051056265830994,0.0030172395054251],[-0.077887684106827,0.064905472099781,-0.12668055295944],[-0.018907798454165,0.031242376193404,0.1034682393074]],[[-0.013195007108152,-0.048672866076231,0.007061657961458],[-0.070189036428928,-0.060435079038143,0.0027888587210327],[0.034302286803722,0.055164113640785,-0.0028432051185519]],[[-0.0033823775593191,-0.048165056854486,-0.084644183516502],[-0.081129528582096,0.0032399236224592,0.024931825697422],[0.031133282929659,-0.0018016415415332,-0.047332793474197]],[[0.016221679747105,0.073060177266598,0.02489666827023],[0.020882440730929,0.097039759159088,0.0073647005483508],[0.064706668257713,0.011184835806489,0.033016722649336]],[[0.043285723775625,0.0054824091494083,0.00047174395876937],[-0.00052931922255084,-0.02580277249217,0.023393988609314],[0.0609460324049,0.013426415622234,0.0435193143785]],[[-0.062520027160645,-0.026367928832769,-0.046309143304825],[-0.020772440358996,0.014608516357839,0.02652851305902],[-0.033955279737711,-0.075711734592915,0.0068259849213064]],[[0.0047598709352314,0.00850426312536,0.0092859622091055],[-0.044679369777441,0.047806520015001,0.048020765185356],[0.064795188605785,-0.030354617163539,0.047374360263348]],[[0.0028592171147466,-0.029614884406328,-0.041781306266785],[-0.036780998110771,-0.026462690904737,-0.033687129616737],[-0.0076051591895521,0.082428731024265,0.054762091487646]],[[0.078466653823853,0.021175663918257,0.049253705888987],[0.040785260498524,-0.055426474660635,0.011349061504006],[-0.0043623349629343,-0.070492640137672,-0.052468817681074]],[[-0.015386735089123,0.00071141857188195,-0.051849368959665],[-0.025699065998197,-0.04572381451726,-0.038669358938932],[0.041085455566645,-0.036137528717518,0.023470509797335]],[[-0.059553343802691,0.058055147528648,0.049711272120476],[-0.013041509315372,0.10755167156458,-0.014336511492729],[0.048665326088667,0.021705688908696,0.044253803789616]],[[-0.0079344203695655,-0.010417439043522,-0.01000196672976],[0.023949675261974,0.0073043443262577,-0.029267070814967],[0.016806228086352,-0.00054395542247221,0.0096802748739719]],[[-0.0038532314356416,0.049404814839363,-0.035921085625887],[-0.030193377286196,-0.025730369612575,0.0006581874913536],[-0.0013985941186547,-0.0093346713110805,0.034621965140104]],[[0.011410981416702,-0.0044844755902886,-0.016938166692853],[-0.01299995649606,0.021516606211662,0.030245561152697],[0.0041823801584542,0.029234107583761,0.0042662173509598]],[[-0.051852185279131,0.002952117472887,0.024366015568376],[0.008872234262526,-0.019358145073056,0.053737673908472],[0.062611863017082,0.034399434924126,0.10280442982912]],[[0.012870027683675,0.09158892929554,0.010704993270338],[0.029444945976138,0.014210042543709,-0.035619027912617],[-0.0043405019678175,0.012264136224985,0.027274152263999]],[[-0.0088283764198422,-0.017720380797982,-0.035843584686518],[-0.027281200513244,0.14738772809505,-0.017431823536754],[-0.026474714279175,0.050531830638647,0.047961134463549]],[[0.11872121691704,0.098615281283855,0.06358440220356],[0.021933726966381,0.04063218459487,0.042073301970959],[-0.023334454745054,-0.094448260962963,-0.057234730571508]],[[0.029432537034154,0.0005122039001435,0.072831377387047],[-0.053192786872387,-0.11517810821533,0.079188667237759],[-0.023901557549834,-0.017087543383241,0.059334646910429]],[[0.079874344170094,-0.010407627560198,0.01249985396862],[0.0038630228955299,0.072956211864948,-0.027892470359802],[-0.045056536793709,-0.0075811422429979,-0.00075312633998692]],[[-0.088279813528061,-0.0091648902744055,0.0091302031651139],[-0.036223735660315,-0.011780885048211,0.0062266387976706],[-0.034121043980122,0.024739740416408,0.01130361482501]],[[-0.023946162313223,0.04895468428731,0.0004436265444383],[-0.012461850419641,-0.030556770041585,0.050102587789297],[0.026173042133451,0.02812154404819,0.0021701671648771]],[[-0.0041386312805116,-0.12380641698837,-0.021457195281982],[-0.025796016678214,-0.057003155350685,-0.092384181916714],[0.068284392356873,-0.022925078868866,-0.08415637165308]],[[0.028817355632782,0.023552540689707,0.012527496553957],[-0.064297422766685,-0.057818755507469,-0.04091714322567],[0.020217414945364,0.031836330890656,-0.04314785823226]],[[0.0020791573915631,-0.021588884294033,0.0086840335279703],[0.042416907846928,0.0092953788116574,0.0068436064757407],[-0.016204101964831,0.0051860935054719,0.079621821641922]],[[0.021395778283477,-0.042329583317041,0.05165846273303],[0.01091172080487,0.0086631439626217,-0.10702922940254],[0.052992306649685,-0.035947997123003,-0.00031760451383889]],[[-0.035023264586926,-0.059523727744818,-0.040183357894421],[-0.022957632318139,-0.01736974902451,0.074026629328728],[-0.013316282071173,-0.031382512301207,-0.035723719745874]],[[0.01868880353868,0.002037234371528,-0.10179916024208],[-0.024415381252766,0.074956692755222,-0.023150788620114],[-0.040330808609724,0.098630920052528,0.090745151042938]],[[-0.028065456077456,0.00632802862674,0.034271005541086],[-0.032435484230518,0.017970375716686,-0.023011783137918],[-0.070637412369251,-0.041202168911695,0.02369967661798]],[[0.064125083386898,-0.047960501164198,-0.034307297319174],[-0.022220499813557,-0.053307365626097,-0.053276937454939],[0.027971001341939,-0.014307371340692,-0.0066965431906283]],[[-0.017299182713032,0.014592273160815,-0.037592604756355],[0.041351325809956,0.023126639425755,0.029927214607596],[-0.077931419014931,-0.0090585835278034,0.012867202982306]],[[-0.01718195527792,0.062770523130894,-0.081233121454716],[0.03175188973546,0.0041176280938089,-0.06536341458559],[0.013448310084641,0.049221210181713,0.083463542163372]],[[0.02293161675334,0.0071508558467031,-0.0092899445444345],[-0.0087551837787032,-0.025903338566422,-0.014648206532001],[-0.075638376176357,0.038146939128637,-0.025962043553591]],[[-0.023082545027137,-0.022919975221157,0.027466051280499],[-0.076139405369759,-0.026249721646309,-0.030193706974387],[0.035507217049599,0.027262303978205,-0.010132249444723]],[[0.0048791747540236,0.026338174939156,0.0098229059949517],[-0.07942695915699,0.054765604436398,-0.067366681993008],[-0.078267298638821,0.028690857812762,-0.02113320864737]],[[-0.063153669238091,0.009493357501924,-0.045914046466351],[0.022526375949383,0.0052841082215309,-0.045286167412996],[0.080531805753708,-0.039645992219448,-0.011248934082687]],[[0.049649309366941,-0.048765208572149,-0.021513398736715],[-0.017607379704714,-0.11064236611128,-0.020231587812304],[-0.023961812257767,0.005163767375052,-0.061545450240374]],[[-0.0090155135840178,0.0092339077964425,0.024446189403534],[-0.021016644313931,0.022486435249448,0.043242201209068],[-0.018323255702853,0.033714096993208,-0.041028909385204]],[[-0.035966292023659,0.038515239953995,0.048211392015219],[-0.010683781467378,-0.060535881668329,-0.039088241755962],[-0.027155473828316,-0.061813235282898,0.01541567966342]],[[0.029278526082635,0.020053872838616,-0.028708582744002],[0.0036034290678799,0.050117958337069,-0.03108030743897],[0.031576178967953,0.10876858234406,0.010954453609884]],[[0.011967766098678,0.034881245344877,0.03334903344512],[0.011164648458362,-0.072601072490215,0.0049396925605834],[0.0090176369994879,-0.02346995845437,-0.027455985546112]],[[-0.096383146941662,-0.027279520407319,0.00023733331181575],[0.0063411230221391,0.041489515453577,0.010809266008437],[-0.012086324393749,0.01655725389719,0.0082440096884966]],[[-0.012983216904104,-0.018067972734571,-0.02188060246408],[0.037411846220493,-0.026906026527286,-0.012039357796311],[0.042204704135656,0.017920058220625,0.033518560230732]],[[-0.023095443844795,0.08083564043045,0.0054062129929662],[0.055487781763077,-0.019183911383152,0.088786140084267],[0.012325604446232,0.061079870909452,0.078937090933323]],[[-0.02719508856535,-0.05180449411273,0.0064755850471556],[0.059493191540241,-0.054638925939798,0.11485437303782],[0.053272303193808,0.037061370909214,0.080409958958626]],[[-0.026327732950449,0.054078485816717,-0.015827296301723],[0.060836054384708,-0.012858466245234,0.0040424545295537],[-0.062867380678654,-0.038437731564045,-0.030952248722315]],[[-0.010105331428349,-0.022310810163617,-0.069822877645493],[0.017744665965438,0.073984712362289,-0.049263291060925],[0.001637096866034,0.036174211651087,-0.017364230006933]],[[0.032098952680826,-0.00084388093091547,0.033275689929724],[-0.034211751073599,0.09251756966114,0.023978734388947],[-0.026864841580391,-0.018509274348617,-0.0030073442030698]],[[-0.024253319948912,-0.051309235394001,0.016454799100757],[-0.083392940461636,0.0073343040421605,0.042833294719458],[0.029736893251538,-0.016669541597366,0.050584703683853]],[[-0.00054566358448938,-0.029676182195544,-0.0022805898915976],[0.030843913555145,0.03979305550456,0.030224606394768],[0.0035021831281483,0.053095791488886,-0.058034379035234]],[[-0.07961281388998,-0.030046354979277,0.0022872497793287],[0.015026494860649,-0.041397415101528,0.040618341416121],[-0.0094389459118247,0.11896421760321,0.048753846436739]],[[-0.0123156523332,-0.0020939111709595,-0.0067310817539692],[-0.083229757845402,0.0082995127886534,0.0002214588021161],[-0.091345384716988,-0.013888889923692,0.037920854985714]],[[0.037345316261053,-0.072538711130619,0.047653172165155],[0.031722404062748,0.013374124653637,-0.0073347655124962],[0.050964210182428,-0.0029783598147333,0.055130235850811]],[[0.075313910841942,-0.046914771199226,0.0014124402077869],[-0.015454331412911,-0.051986075937748,0.043155249208212],[0.00012805995356757,0.037084169685841,0.0069457679055631]]],[[[-0.067823357880116,-0.071094542741776,-0.040379162877798],[-0.0093267736956477,0.040222130715847,0.030561842024326],[0.01323380600661,0.0074122841469944,0.10226372629404]],[[0.013617567718029,0.020376784726977,-0.0085196932777762],[-0.036467865109444,-0.03113804385066,0.034755241125822],[-0.031699441373348,0.030466439202428,-0.02034542709589]],[[0.015086052007973,0.034059260040522,-0.012765792198479],[0.016716973856091,-0.10643261671066,0.086359865963459],[-0.00089814641978592,-0.069287218153477,-0.077867180109024]],[[-0.070352979004383,0.14262230694294,0.065012224018574],[-0.08620648086071,-0.033103592693806,0.028862396255136],[0.068423978984356,-0.083177782595158,-0.053548511117697]],[[-0.030642967671156,-0.050501517951488,0.014106634072959],[-0.062316201627254,0.030363069847226,0.034918669611216],[0.0568090043962,0.017587387934327,-0.0050861923955381]],[[0.15288735926151,0.012696835212409,0.018960002809763],[0.082295335829258,-0.10639930516481,-0.010212930850685],[0.078447297215462,-0.098592191934586,-0.043036330491304]],[[-0.017157284542918,-0.019704634323716,-0.01838818565011],[-0.0080529283732176,-0.0033244455698878,-0.00055976992007345],[0.062538743019104,-0.019015641883016,-0.046322531998158]],[[-0.04454118013382,-0.077857844531536,-0.050731629133224],[0.09585140645504,-0.033944237977266,-0.016442785039544],[-0.047754861414433,-0.041832819581032,0.054482538253069]],[[0.036359716206789,-0.0026460504159331,0.07276713103056],[0.04132117331028,0.01838524453342,-0.093656986951828],[-0.041167449206114,0.02588652446866,0.091894254088402]],[[-0.15084517002106,0.075595393776894,0.042674284428358],[0.060773000121117,0.085798822343349,0.021673701703548],[0.060568176209927,-0.085047096014023,0.0044544069096446]],[[-0.093379572033882,0.037008266896009,-0.044699769467115],[-0.040657389909029,0.10274317115545,0.058733876794577],[-0.0086728865280747,-0.091036021709442,0.008051079697907]],[[0.098738215863705,0.014564004726708,-0.0083777261897922],[-0.016881696879864,-0.031574800610542,-0.01208695396781],[-0.036292772740126,0.10350443422794,-0.01836677454412]],[[0.047801654785872,-0.030979530885816,-0.032296717166901],[-0.023563614115119,-0.026381060481071,-0.02591303922236],[-0.045877046883106,0.053576119244099,-0.021343652158976]],[[-0.052048686891794,-0.056756943464279,0.017668260261416],[-0.046634256839752,0.079384535551071,0.021385326981544],[0.040111802518368,-0.023056793957949,-0.0087965028360486]],[[0.043293222784996,0.086563087999821,0.0039611677639186],[-0.010798448696733,0.021693589165807,-0.065907627344131],[-0.034168262034655,-0.069817081093788,-0.051935471594334]],[[0.0137376813218,-0.012298862449825,-0.019690303131938],[-0.10789231210947,-0.026072096079588,0.0052698864601552],[-0.094697408378124,-0.016732607036829,-0.11331604421139]],[[-0.027142541483045,0.045291908085346,-0.0092180650681257],[0.0051847915165126,-0.058819111436605,-0.082116991281509],[-0.021924315020442,-0.038143284618855,-0.093608886003494]],[[0.025350412353873,0.0087650362402201,-0.0053181177936494],[0.032556742429733,0.042758747935295,0.026820404455066],[-0.051873058080673,-0.0040582357905805,0.019690783694386]],[[0.0055695925839245,0.016839530318975,-0.0026613683439791],[-0.021966125816107,-0.029979871585965,0.034679528325796],[0.032075252383947,-0.022860715165734,-0.0083327861502767]],[[-0.085160799324512,-0.063022561371326,-0.0017878494691104],[0.024954764172435,0.027458995580673,0.048074040561914],[0.00099027378018945,-0.028159374371171,0.080003023147583]],[[-0.037239037454128,-0.010696476325393,-0.05263252183795],[-0.057071208953857,0.0043101175688207,-0.094147227704525],[-0.029112532734871,-0.029430147260427,-0.0588792078197]],[[0.067571714520454,0.084727510809898,-0.0082404939457774],[0.02117315120995,0.11715151369572,-0.062570922076702],[-0.0066387443803251,0.019242733716965,-0.045749451965094]],[[-0.046631895005703,-0.028505446389318,-0.026527635753155],[-0.042571980506182,0.10509790480137,-0.0011775618186221],[-0.016914481297135,0.014901464805007,0.046374596655369]],[[-0.10800073295832,-0.019801450893283,0.022411432117224],[0.039557367563248,-0.1099906489253,-0.060428842902184],[-0.084611423313618,-0.070649713277817,-0.078618578612804]],[[-0.044619213789701,-0.015749648213387,-0.012741290032864],[0.010760951787233,0.055237527936697,0.021539153531194],[-0.041682008653879,0.074246503412724,-0.07182314991951]],[[-0.044233862310648,0.039025340229273,-0.037971921265125],[0.10549364984035,-0.051898434758186,-0.080661781132221],[0.037999451160431,-0.033042144030333,-0.025877114385366]],[[0.047012247145176,0.080014958977699,0.023206626996398],[0.11232456564903,-0.043926235288382,0.006331879645586],[-0.033730559051037,0.04199443385005,0.037418119609356]],[[-0.060119647532701,-0.0861556828022,-0.0093335639685392],[0.1008498519659,-0.019112817943096,-0.046450726687908],[0.047288566827774,-0.06115535646677,0.068398274481297]],[[0.074092149734497,0.027799684554338,0.030224375426769],[-0.06301998347044,-0.044484924525023,-0.054070129990578],[0.072224378585815,-0.077410489320755,-0.061862956732512]],[[0.10289077460766,0.001485152519308,0.0031383158639073],[-0.019450189545751,0.12897336483002,-0.011452053673565],[0.02142670378089,-0.097737483680248,-0.0071658445522189]],[[-0.0085479076951742,0.042490087449551,-0.040712278336287],[0.023030364885926,-0.013048000633717,-0.011285835877061],[-0.036147654056549,-0.089627474546432,-0.068816632032394]],[[0.031547855585814,0.040720090270042,0.0032316036522388],[0.053332529962063,0.067939959466457,0.0060285893268883],[0.053511075675488,0.070827953517437,0.0057116709649563]],[[8.5839281382505e-05,0.047889996320009,-0.096135936677456],[-0.043446592986584,-0.053745575249195,0.0030095686670393],[0.0040956763550639,0.040498167276382,-0.042094644159079]],[[-0.071680389344692,-0.10164623707533,-0.063583634793758],[-0.05008552968502,-0.022659791633487,-0.056472405791283],[-0.037655357271433,0.034161441028118,-0.014283671043813]],[[0.037345621734858,0.046133689582348,0.099479034543037],[-0.050862427800894,0.010994331911206,0.063210166990757],[0.071735329926014,-0.070585824549198,-0.029866421595216]],[[0.028774805366993,-0.068626895546913,-0.0089933099225163],[-0.060947578400373,-0.15439541637897,-0.079705648124218],[0.083636648952961,0.010857073590159,-0.11021230369806]],[[0.078065156936646,0.014177714474499,-0.097097732126713],[-0.019039284437895,-0.042434979230165,-0.028095195069909],[-0.043114349246025,-0.0029017038177699,-0.023022254928946]],[[0.052642975002527,-0.13103517889977,0.043070778250694],[0.037993479520082,0.10055009275675,0.024934595450759],[0.075515486299992,-0.019895192235708,-0.020562946796417]],[[-0.00791703350842,-0.036933694034815,0.049874290823936],[0.045752216130495,0.033733550459146,-0.017035163938999],[0.033452764153481,0.021532053127885,-0.0055662430822849]],[[0.042380284518003,0.015075745992362,0.10540204495192],[0.091893129050732,0.0040504783391953,0.0086467852815986],[0.02665476873517,-0.019465047866106,-0.00052416505059227]],[[-0.067057020962238,-0.038789961487055,-0.023536156862974],[0.039846412837505,-0.0010072303703055,0.015119962394238],[-0.10279630124569,0.030119802802801,0.042986746877432]],[[-0.0092142447829247,-0.10901352018118,-0.047936700284481],[-0.038927275687456,-0.033662501722574,-0.023336226120591],[0.027487544342875,0.07015211135149,0.12084431946278]],[[-0.021688157692552,-0.046033766120672,-0.0015475392574444],[0.011962026357651,0.045507591217756,-0.071069464087486],[0.037705928087234,-0.030935408547521,-0.060766216367483]],[[0.033616673201323,0.060106202960014,0.0041573191992939],[-0.053786031901836,-0.068072371184826,-0.044160846620798],[-0.016181401908398,0.0013036353047937,0.029257377609611]],[[-0.026571514084935,0.02046156860888,0.078284747898579],[0.0040985988453031,0.0020447564311326,-0.00081704696640372],[0.061357818543911,-0.060806225985289,0.00042467538150959]],[[-0.095053672790527,-0.056981302797794,0.021008770912886],[-0.054071836173534,0.038995746523142,-0.025661535561085],[0.073746010661125,0.041702605783939,0.013760225847363]],[[-0.05477449670434,-0.026741787791252,0.099777542054653],[-0.071850664913654,-0.0092437947168946,0.034816436469555],[0.008402924053371,-0.018389916047454,-0.015586320310831]],[[-0.029503162950277,-0.029670037329197,-0.0363156683743],[-0.0052958754822612,0.077299490571022,0.00064812717027962],[-0.039209648966789,0.061315272003412,-0.052833311259747]],[[-0.085329338908195,0.048061341047287,-0.020742205902934],[0.024082543328404,0.023402951657772,0.043664608150721],[0.010913076810539,0.0182901378721,0.027470273897052]],[[-0.0039969147183001,0.087196506559849,-0.028001520782709],[0.015694165602326,-0.023279516026378,-0.02609827555716],[-0.091181449592113,0.0066440836526453,0.11463530361652]],[[0.0026913441251963,0.04130420088768,-0.042002953588963],[0.048778846859932,-0.13298456370831,-0.014696286991239],[-0.050125882029533,0.044364042580128,0.011215202510357]],[[0.073695495724678,-0.0085865017026663,0.027493484318256],[-0.013816281221807,0.0068648303858936,0.010965151712298],[-0.1084782704711,0.038614071905613,-0.014544381760061]],[[0.085051313042641,-0.00089066987857223,0.044923085719347],[0.058269795030355,0.046023823320866,0.032050304114819],[0.083351291716099,0.01761582121253,0.07788422703743]],[[-0.037626650184393,0.019326372072101,0.051488228142262],[0.1674889177084,0.074768163263798,0.076773196458817],[-0.0072709848172963,-0.02514579705894,-0.0069223809987307]],[[-0.064884580671787,-0.041706893593073,-0.064952127635479],[-0.0030702971853316,-0.015450965613127,-0.015485688112676],[0.059945914894342,0.0046836356632411,-0.022993357852101]],[[-0.069547034800053,-0.081327125430107,0.016567321494222],[-0.036720164120197,-0.0087576685473323,-0.098911628127098],[-0.03219960257411,-0.0068754712119699,-0.028832936659455]],[[-0.075047306716442,-0.051424026489258,-0.048568863421679],[-0.011208810843527,0.065298557281494,0.045072115957737],[0.054274849593639,-0.10743958503008,-0.039279498159885]],[[0.00032341090263799,0.0012844846351072,0.035582602024078],[-0.042940884828568,-0.0013674529036507,-0.056221235543489],[-0.010758258402348,-0.1579175889492,-0.11988562345505]],[[0.096439428627491,0.026977632194757,0.039914835244417],[-0.054805308580399,-0.046293817460537,0.02687662653625],[0.070272423326969,0.017678119242191,0.029040910303593]],[[0.040446750819683,0.062542110681534,0.035572648048401],[-0.02097032032907,-0.07513066381216,0.0063417437486351],[0.036356374621391,-0.070034757256508,0.015130238607526]],[[0.058955650776625,0.014065238647163,-0.035956528037786],[-0.030575821176171,0.031239427626133,0.030535478144884],[0.0085744233801961,-0.09365551918745,-0.083378858864307]],[[-0.056246563792229,0.012411588802934,-0.059877268970013],[-0.073798716068268,0.057115878909826,0.032711148262024],[0.097763128578663,0.059365306049585,0.081583447754383]],[[0.028569471091032,-0.0097409412264824,0.0015940567245707],[-0.086637452244759,0.080267012119293,-0.036485243588686],[0.066688217222691,-0.060228228569031,0.055018145591021]],[[-0.020682919770479,0.00078533054329455,-0.059360515326262],[-0.059200093150139,-0.090409845113754,-0.066866382956505],[0.069585554301739,0.036993537098169,-0.099858172237873]]],[[[0.11455973237753,-0.01004090718925,0.0029106957372278],[0.091816000640392,0.027893170714378,0.022797029465437],[0.032943781465292,-0.0044558830559254,-0.0036952593363822]],[[0.043005678802729,-0.086470544338226,0.027147321030498],[-0.13952055573463,0.033419247716665,-0.044724185019732],[-0.06319959461689,-0.10576418787241,-0.057350493967533]],[[-0.0080082379281521,-0.0075731039978564,-0.086032666265965],[0.0090587623417377,-0.066975682973862,-0.035665661096573],[0.028982363641262,-0.063545949757099,-0.044928878545761]],[[-0.028136873617768,-0.053811941295862,-0.005096894223243],[-0.057989433407784,-0.14706805348396,-0.00047466674004681],[-0.038669787347317,0.011773776262999,-0.069563426077366]],[[0.036145318299532,-0.05605336651206,0.0073884688317776],[0.051609206944704,0.033649653196335,-0.0057779513299465],[-0.12307290732861,0.031936541199684,0.038124054670334]],[[0.033098183572292,0.080107241868973,0.05831790715456],[-0.026061587035656,0.033940818160772,-0.062351185828447],[-0.02053489163518,0.051277417689562,0.035471484065056]],[[-0.03016633912921,-0.015093821100891,-0.056396245956421],[-0.05974929779768,-0.05509191006422,-0.003533091628924],[0.00078433909220621,-0.060661476105452,0.012123044580221]],[[-0.079504519701004,-0.060242936015129,-0.034964255988598],[0.10537777096033,0.044268302619457,0.024381125345826],[-0.081653565168381,-0.070414617657661,-0.055390279740095]],[[0.0077042244374752,-0.12505881488323,-0.060109589248896],[-0.067153550684452,-0.034980028867722,-0.0023817559704185],[0.089816950261593,0.06231077387929,-0.031003218144178]],[[0.099187269806862,-0.029921503737569,-0.06055661663413],[0.042598452419043,-0.042297925800085,0.057527977973223],[-0.061132960021496,-0.017689645290375,0.044798851013184]],[[0.088952712714672,-0.011294876225293,0.032085087150335],[-0.042638458311558,-0.059339545667171,-0.021621907129884],[0.048923145979643,-0.038557525724173,-0.080506801605225]],[[0.047023970633745,-0.16798242926598,-0.031449317932129],[-0.0035589842591435,0.029969660565257,0.047806605696678],[-0.0051054251380265,0.026890819892287,-0.053643081337214]],[[0.071383759379387,0.027487663552165,-0.19137439131737],[-0.025214165449142,0.089930340647697,0.004403620492667],[-0.043013650923967,0.022466618567705,-0.08487993478775]],[[0.055008322000504,0.082931444048882,-0.029654778540134],[0.057567868381739,0.095100663602352,0.041142325848341],[-0.059066083282232,-0.081735245883465,0.015906972810626]],[[0.0850899964571,-0.012963462620974,-0.052834499627352],[-0.095329284667969,0.030837815254927,0.087387301027775],[-0.14107367396355,0.21897993981838,0.011457733809948]],[[-0.065287098288536,-0.056895725429058,0.1437081694603],[-0.017549410462379,-0.03992486000061,0.0045922677963972],[-0.045756116509438,-0.093441426753998,0.051002662628889]],[[-0.086806386709213,-0.036225643008947,0.089347451925278],[0.060221869498491,0.045302838087082,-0.10945348441601],[-0.02272367104888,-0.033514685928822,-0.030221097171307]],[[0.010153207927942,-0.03398085013032,-0.032858535647392],[-0.11709827929735,-0.014893851242959,0.0042470120824873],[0.00068935210583732,-0.064827002584934,0.022613298147917]],[[-0.049416478723288,0.024339739233255,-0.11746897548437],[0.088211379945278,-0.10321529209614,0.053375281393528],[-0.10386972129345,-0.1029119566083,0.029242044314742]],[[0.043764147907495,-0.076709888875484,-0.065051697194576],[0.067537933588028,0.0078991241753101,-0.088392242789268],[-0.028740450739861,-0.097325421869755,-0.057038407772779]],[[-0.00429318100214,0.0009609162225388,-0.035389922559261],[-0.015229471959174,0.09164983779192,-0.0013471437850967],[0.051745027303696,0.049925953149796,-0.039215978235006]],[[0.15090414881706,0.038570865988731,-0.033396419137716],[0.065392039716244,-0.011779676191509,-0.073189795017242],[-0.16062086820602,-0.049271360039711,-0.037365220487118]],[[0.0087852170690894,0.027057575061917,0.026816165074706],[-0.080788150429726,-0.0073217363096774,0.0030588817317039],[0.00129342766013,0.0045725447125733,0.011589787900448]],[[-0.065054200589657,-0.03407396748662,0.0057474114000797],[0.016543693840504,-0.010970822535455,-0.092802062630653],[-0.03488964214921,-0.10042379051447,0.16000516712666]],[[0.082794107496738,0.08604558557272,-0.010518262162805],[0.030557667836547,-0.10167840868235,0.013422755524516],[-0.099375046789646,-0.06951879709959,0.17336697876453]],[[-0.23067450523376,0.0095736812800169,-0.073403924703598],[-0.11471087485552,0.056607790291309,-0.18851312994957],[0.022848227992654,-0.077268213033676,0.010981881059706]],[[0.050652530044317,0.013791113160551,-0.11991368979216],[-0.11500573158264,0.025098150596023,0.060031037777662],[-0.10971551388502,-0.00017213332466781,0.035156235098839]],[[0.032558813691139,0.016958266496658,0.017833843827248],[0.007913320325315,-0.089883022010326,-0.072908349335194],[-0.22665879130363,-0.018741521984339,0.14524206519127]],[[0.00035624287556857,0.082235209643841,-0.0014692362165079],[0.0019789671059698,0.043151289224625,-0.077690497040749],[-0.056633368134499,-0.055885132402182,0.015361843630672]],[[0.14390410482883,0.059900008141994,-0.13369862735271],[-0.00088552216766402,-0.11419124156237,-0.018309343606234],[0.084030069410801,-0.16331797838211,0.0526487454772]],[[-0.021191030740738,0.023954544216394,-0.1184750571847],[-0.074521124362946,-0.01550617814064,-0.18750295042992],[-0.028732402250171,0.030265334993601,0.10593436658382]],[[-0.087199851870537,0.13863003253937,0.25839626789093],[0.066482521593571,0.021361885592341,0.1130845695734],[-0.067394189536572,-0.31556901335716,0.035636357963085]],[[0.076249651610851,-0.084717608988285,-0.051115248352289],[0.06954050809145,0.00712123606354,-0.087396286427975],[0.29604256153107,0.238286241889,-0.0021153746638447]],[[0.057691756635904,0.014322229661047,0.18008829653263],[0.010877034626901,-0.085592851042747,-0.0011677017901093],[0.0011936011724174,0.047822944819927,-0.07738584280014]],[[-0.08380888402462,-0.047632358968258,-0.034001018851995],[0.015556640923023,-0.055016785860062,0.034382000565529],[-0.16173049807549,0.082594886422157,0.038988046348095]],[[0.060841642320156,0.1653029024601,-0.047064453363419],[-0.0099145127460361,-0.066091269254684,-0.001400209730491],[0.0034722178243101,0.038158167153597,0.018445368856192]],[[-0.12384875863791,-0.037271104753017,0.085534445941448],[-0.010385973379016,0.16534000635147,-0.035597994923592],[0.048554219305515,0.014086417853832,-0.14537245035172]],[[-0.24576471745968,0.13863356411457,0.25898835062981],[0.15116882324219,-0.026944728568196,-0.1958521604538],[-0.12272082269192,-0.13819310069084,0.12331514060497]],[[0.0019711540080607,0.0059147016145289,0.035578552633524],[0.02513463050127,0.042554646730423,-0.010375843383372],[0.088230282068253,-0.11411019414663,-0.182766482234]],[[0.035698108375072,0.031713653355837,0.0026897320058197],[-0.018623638898134,0.022395551204681,-0.04356300458312],[-0.023325674235821,-0.046211645007133,-0.15646460652351]],[[0.024547584354877,-0.11042576283216,0.017954029142857],[-0.033973522484303,-0.0063313539139926,0.044211998581886],[-0.012273035943508,-0.065087921917439,-0.053478356450796]],[[-0.069606296718121,0.039163757115602,-0.1063190177083],[0.00061383540742099,-0.098017543554306,0.020861653611064],[0.012832682579756,0.023615041747689,0.090145960450172]],[[0.006484679877758,-0.039543196558952,0.079084485769272],[0.053826067596674,-0.05448292195797,-0.0053008729591966],[0.070619210600853,-0.02127954736352,0.10547276586294]],[[-0.11103292554617,0.040237963199615,0.089089445769787],[0.019841782748699,0.085066758096218,-0.040263045579195],[0.026316495612264,-0.085356473922729,-0.091849081218243]],[[-0.033003862947226,0.17351467907429,-0.20102681219578],[-0.35345643758774,0.17317965626717,-0.090984202921391],[0.038567770272493,0.14304609596729,0.0041171233169734]],[[-0.12300073355436,-0.0088158827275038,-0.14469270408154],[-0.020709166303277,0.015631694346666,0.047947812825441],[0.038418903946877,0.026110356673598,-0.089332558214664]],[[-0.17331418395042,0.010652361437678,0.026073034852743],[0.080121397972107,-0.032553445547819,-0.022451736032963],[0.12973555922508,-0.070845738053322,0.070975095033646]],[[0.048199310898781,-0.02882182225585,-0.052808772772551],[-0.071787543594837,-0.044193398207426,-0.025914272293448],[-0.021188816055655,0.021659502759576,0.056433815509081]],[[-0.079755410552025,-0.14164698123932,-0.032604418694973],[-0.17622102797031,0.071754887700081,0.015428219921887],[0.045721083879471,0.030551847070456,0.10911728441715]],[[-0.020173288881779,-0.10449353605509,-0.030081477016211],[-0.06395335495472,-0.027692323550582,0.041746728122234],[0.050611555576324,0.054519586265087,0.01752301864326]],[[0.0060073882341385,-0.099573187530041,-0.014836075715721],[0.027158441022038,0.008976012468338,0.023830993101001],[0.013763312250376,0.067775763571262,0.032997883856297]],[[-0.11550735682249,0.030301030725241,0.098758786916733],[-0.01909102499485,-0.0047815358266234,-0.018721645697951],[0.059988744556904,0.036288265138865,-0.0044197761453688]],[[-0.07022700458765,-0.038652658462524,-0.069634653627872],[-0.07008084654808,-0.055595114827156,-0.10323838889599],[0.014788055792451,0.044635064899921,-0.036305330693722]],[[0.070009052753448,-0.040737546980381,0.23744221031666],[0.053056657314301,0.16313324868679,0.080819509923458],[0.068189166486263,0.012745718471706,0.11517632007599]],[[0.029059007763863,-0.079062104225159,-0.034158073365688],[-0.0036595165729523,-0.03378913551569,0.017364054918289],[0.059620279818773,-0.060904867947102,0.17362034320831]],[[-0.029352152720094,-0.0070373704656959,-0.056315321475267],[-0.015273967757821,-0.11969398707151,-0.0287846904248],[0.017247870564461,-0.11542857438326,0.055467423051596]],[[-0.081529691815376,0.030514782294631,0.04152986779809],[-0.015337000600994,-0.07895590364933,-0.10613179951906],[0.050872009247541,-0.025573652237654,-0.0012129257665947]],[[0.016729593276978,-0.033240795135498,-0.029550142586231],[0.0021409846376628,0.040662206709385,-0.025563344359398],[-0.064127035439014,-0.088772684335709,-0.072512619197369]],[[-0.17623025178909,0.10810615867376,0.053259208798409],[-0.074577502906322,-0.017476361244917,0.0057773655280471],[0.094461485743523,0.035227078944445,0.029886534437537]],[[-0.052490916103125,-0.037716720253229,0.034838367253542],[0.020909974351525,0.066269002854824,-0.023429537191987],[0.048603910952806,0.0039372052997351,0.020678991451859]],[[-0.040925849229097,-0.01507021766156,-0.15016677975655],[-0.1182399019599,-0.026051728054881,0.0060944152064621],[0.14753024280071,0.12612228095531,0.024862980470061]],[[-0.015778416767716,0.012598681263626,0.16394229233265],[-0.064777746796608,0.17882084846497,-0.044302936643362],[-0.087736800312996,-0.067506805062294,-0.12119390070438]],[[0.11079446971416,-0.070428542792797,-0.15279924869537],[-0.011006460525095,0.050841998308897,-0.0037171836011112],[0.0017216205596924,-0.19598087668419,0.044158585369587]],[[0.036837007850409,-0.098973169922829,-0.10400635749102],[-0.078106366097927,-0.052048664540052,0.11611320823431],[0.05741798132658,0.06926766037941,-0.061905018985271]]]],"nOutputPlane":128,"kW":3,"kH":3,"bias":[-0.0094322999939322,0.00046276653301902,-0.0032271037343889,-0.0061664297245443,-0.0033527554478496,-0.0075097652152181,-0.0027688178233802,-0.0044393073767424,-0.0047362730838358,-0.014212036505342,-0.0043969512917101,-0.0095920022577047,-0.0031772013753653,-0.0063413614407182,-0.016928674653172,-0.0066147125326097,-0.0053861802443862,-0.0026549980975688,-0.00056249811314046,-0.006396637763828,-0.0035103741101921,-0.0067708529531956,-0.007105365395546,-0.0051199966110289,-0.0064286827109754,-0.006828423589468,-0.0046577886678278,-0.0032492240425199,-0.0021526368800551,-0.0081759011372924,-0.0054262783378363,-0.0078533757477999,-0.010679971426725,-0.0046326820738614,-0.0019500554772094,-0.0045784562826157,-0.0078862421214581,0.00022225006250665,-0.0062188468873501,-0.0055245291441679,-0.005238592159003,-0.0058892252855003,-0.0040519027970731,-0.0057558855041862,-0.0053950557485223,-0.0038638336118311,-0.0065292823128402,-0.0090258596464992,-0.0051863393746316,0.00080524937948212,-0.0041167051531374,-0.0055138263851404,-0.0026024498511106,-0.0027606934309006,-0.0030215322040021,-0.0067715989425778,-0.0024932427331805,-0.0060071935877204,-0.0057770637795329,-0.0056531624868512,-0.0058529390953481,-0.0052540958859026,-0.0085860025137663,-0.005529398098588,-0.0066254520788789,-0.0044873463921249,-0.0039866887964308,-0.0063852020539343,-0.0053950189612806,-0.0040693953633308,-0.0048961793072522,-0.0032829537522048,-0.0069933976046741,-0.0018741296371445,-0.005934034474194,-0.0063779740594327,-0.0052124634385109,-0.0060457177460194,-0.0055990824475884,-0.0042502847500145,-0.010135414078832,-0.0046979589387774,-0.0027849387843162,-0.0095562180504203,-0.0043113585561514,-0.0085145654156804,-0.0059371395036578,-0.0063356179744005,-0.0034825841430575,-0.0033998584840447,-0.0058086584322155,-0.0073780473321676,-0.0010731745278463,-0.0015820475528017,-0.0039845113642514,-0.0026133621577173,-0.01134926173836,-0.0054880469106138,-0.007336878683418,-0.0049822079017758,-0.0019526079995558,-0.0035902808886021,-0.0029152203351259,-0.00061069772345945,-0.0052465875633061,-0.0085630686953664,-0.0047321296297014,-0.0080675957724452,-0.0053922324441373,0.0082346741110086,0.00057344167726114,-0.0024301467929035,-0.0031014275737107,-0.00089313474018127,-0.0043110805563629,-0.0052303145639598,-0.0056586130522192,-0.0050673810765147,-0.0059892991557717,-0.004713402595371,-0.0057226847857237,-0.0017752628773451,-0.0045964303426445,-0.0027774521149695,-0.0042080753482878,-0.0045146401971579,-0.005391048733145,-0.0032717499416322],"nInputPlane":64},{"weight":[[[[-0.0064086844213307,0.014400883577764,0.046846758574247],[0.034757569432259,0.063202425837517,-1.585573045304e-05],[0.0067976275458932,-0.033959459513426,-0.067161098122597]],[[0.020211476832628,-0.041727405041456,-0.029462007805705],[-0.052145652472973,-0.043179232627153,0.049004331231117],[-0.0094279246404767,-0.061957355588675,-0.015919297933578]],[[-0.0077791553921998,0.047305274754763,-0.014557410031557],[-0.076863721013069,0.026533724740148,-0.051670357584953],[-0.10008157789707,0.048624824732542,0.049505490809679]],[[0.032688517123461,-0.045798007398844,0.072812467813492],[-0.0020715452264994,0.088745780289173,-0.022618118673563],[-0.0089822402223945,0.046385250985622,-0.032975316047668]],[[-0.066692300140858,-0.036616116762161,-0.0081565799191594],[-0.038400389254093,-0.12058331817389,0.015974840149283],[0.0069295465946198,-0.028648678213358,0.021840767934918]],[[0.06276524066925,-0.017141211777925,-0.054542902857065],[-0.032376900315285,-0.0051980447024107,-0.055914431810379],[0.027305396273732,-0.078085727989674,-0.025121023878455]],[[0.014767246320844,-0.0061698835343122,0.067227967083454],[-0.039871137589216,-0.063480570912361,0.033477954566479],[0.012864597141743,-0.032251246273518,-0.07941060513258]],[[0.072924517095089,0.064984053373337,-0.024049233645201],[-0.017778918147087,-0.077945351600647,0.029026659205556],[0.069924250245094,0.040017619729042,0.041469197720289]],[[0.034140896052122,0.0024065517354757,-0.036695923656225],[0.01515459921211,-0.018333930522203,0.033093344420195],[0.059866238385439,-0.061259772628546,0.016312962397933]],[[-0.0046271029859781,0.060262512415648,0.13362808525562],[0.029618285596371,0.0089911017566919,-0.028522331267595],[0.075723305344582,-0.022479686886072,-0.018824510276318]],[[0.02350520901382,-0.028186682611704,-0.041472677141428],[0.031855121254921,-0.038655839860439,0.02856813184917],[0.043975964188576,0.026215197518468,0.021045509725809]],[[-0.040896393358707,-0.049683626741171,0.02498160302639],[0.10182698816061,0.028024340048432,-0.022320384159684],[-0.055995929986238,0.010010851547122,-0.029413159936666]],[[-0.069447100162506,0.03138468042016,-0.038497198373079],[-0.0007836144650355,-0.00086328713223338,0.030022442340851],[-0.057196021080017,-0.018913634121418,-0.0060830032452941]],[[-0.0053642657585442,-0.0033245596569031,-0.049147341400385],[0.0060146637260914,-0.048795383423567,0.032518684864044],[0.056169662624598,0.0022274570073932,-0.031653750687838]],[[-0.055391523987055,0.0072186035104096,0.022401621565223],[-0.025292402133346,-0.012922117486596,0.057828582823277],[0.035413015633821,-0.064348667860031,0.023257872089744]],[[-0.0080188373103738,-0.045900713652372,-0.034431137144566],[-0.014005516655743,0.033070750534534,0.065062306821346],[0.0926323980093,-0.089193589985371,0.076972588896751]],[[-0.032418869435787,0.0092559522017837,-0.024111391976476],[-0.0328952036798,-0.00038476829649881,0.085133254528046],[-0.0017608494963497,0.078063145279884,-0.041945807635784]],[[-0.015223718248308,-0.035786844789982,0.051870219409466],[0.0088344002142549,-0.0063115167431533,-0.099702097475529],[0.048935323953629,0.077896662056446,-0.032615955919027]],[[-0.052064720541239,-0.015635496005416,0.029207389801741],[0.0027049973141402,-0.0226308144629,0.037382408976555],[0.044622156769037,0.053243763744831,0.0021984644699842]],[[-0.011727871373296,0.022901544347405,0.010439399629831],[0.037764448672533,-0.035943429917097,-0.0073417602106929],[0.022369217127562,0.028823222965002,-0.061593294143677]],[[-0.092028617858887,0.018703805282712,0.0038929111324251],[0.089589625597,-0.048465631902218,0.006673738360405],[-0.00057267810916528,-0.058987576514482,0.040693499147892]],[[0.035817846655846,-0.013968414627016,0.0076970099471509],[-0.01135223172605,0.00011665395140881,-0.035529989749193],[-0.0053194388747215,0.025720564648509,0.0084798941388726]],[[0.023081606253982,-0.020204180851579,0.10970135778189],[-0.035902600735426,0.032129265367985,-0.015437775291502],[0.0084753995761275,0.0061526405625045,0.047386448830366]],[[0.037145517766476,-0.01773963496089,0.030855502933264],[-0.046592138707638,0.025527952238917,-0.027930598706007],[-0.028299143537879,0.002001081360504,0.0040748547762632]],[[0.012594982050359,0.050523448735476,-0.024371756240726],[0.0065968972630799,0.044069863855839,0.027050152420998],[0.024768490344286,0.057219583541155,0.0059164548292756]],[[-0.052588444203138,0.037499409168959,-0.05356527119875],[-0.0025022036861628,-0.015828585252166,0.026473557576537],[-0.039806455373764,-0.0071169487200677,-0.073957949876785]],[[-0.0031124260276556,-0.017564039677382,0.05181235820055],[-0.027479419484735,-0.059328839182854,0.013179860077798],[0.015952939167619,0.10714439302683,0.083089388906956]],[[-0.033613707870245,-0.045180927962065,-0.0022316004615277],[-0.0057522361166775,0.090682283043861,0.023963704705238],[0.036642163991928,-0.027901783585548,-0.049419522285461]],[[0.027876252308488,0.048401303589344,-0.00043530919356272],[-0.061000522226095,0.013652559369802,-0.033365320414305],[0.05018388107419,-0.076748088002205,-0.010221090167761]],[[-0.035309292376041,-0.079718254506588,0.0083490367978811],[-0.00016390380915254,-0.020105758681893,0.040543630719185],[0.031591583043337,-0.056702587753534,0.0086450977250934]],[[0.010070749558508,0.054496254771948,0.056263126432896],[0.050168171525002,-0.0088813425973058,0.038851201534271],[-0.05951739102602,-0.073916964232922,-0.023797953501344]],[[-0.05155373737216,0.020460335537791,-0.05917351692915],[0.088996939361095,-0.0037268379237503,-0.012493591755629],[-0.036179646849632,0.018864780664444,-0.015604014508426]],[[-0.023580459877849,-0.05840077996254,0.041752055287361],[-0.016354346647859,-0.021767323836684,0.0071887569501996],[0.050986181944609,0.054344240576029,0.046177197247744]],[[0.006031041033566,-0.053078658878803,0.039170134812593],[-0.0055024013854563,-0.095812521874905,-0.002852524863556],[0.032090276479721,0.035831600427628,0.019071992486715]],[[-0.042735677212477,-0.038187824189663,-0.01032442599535],[0.067956082522869,-0.047930013388395,-0.0092607885599136],[0.048884022980928,0.070886619389057,0.031288031488657]],[[0.024758905172348,0.026222363114357,-0.01441627368331],[-0.0032203795854002,0.0067722829990089,-0.0422936193645],[0.03896239772439,0.038587331771851,0.024234764277935]],[[-0.050739079713821,0.00029301643371582,-0.0021503423340619],[0.039069570600986,-0.014932394959033,-0.031009141355753],[0.045860506594181,-0.056965094059706,0.080541118979454]],[[0.035684548318386,0.0069421292282641,0.0035354366991669],[-0.094833821058273,0.017789358273149,-0.037396274507046],[0.014250778593123,-0.017251221463084,-0.059476912021637]],[[-0.015292836353183,0.0055494424887002,0.10300797969103],[0.039852954447269,0.05141544342041,0.11117388308048],[-0.022282777354121,-0.07466471940279,0.020703863352537]],[[-0.043330244719982,0.01072712149471,-0.013433186337352],[-0.028696432709694,-0.051546085625887,0.005747995339334],[-0.052744720131159,0.02407062985003,0.074236996471882]],[[0.022518210113049,-0.094437308609486,0.0072605567984283],[-0.014230360276997,0.015276022255421,0.023951627314091],[-0.044725231826305,0.0055036740377545,0.04213659465313]],[[0.011832477524877,-0.041938237845898,-0.076246984302998],[-0.043583117425442,-0.025206882506609,-0.078211784362793],[0.01920199021697,0.037603534758091,-0.026426952332258]],[[-0.032152581959963,0.056601833552122,-0.074022382497787],[-0.040541388094425,0.025280242785811,0.062537528574467],[0.009392848238349,0.017908556386828,0.0032980539835989]],[[0.0054267048835754,0.019083142280579,0.04545059800148],[-0.0051820208318532,0.048333570361137,0.046303022652864],[0.046918455511332,-0.01935001835227,0.010591636411846]],[[-0.00044483566307463,0.014213060028851,-0.0029540895484388],[0.045532893389463,0.0013002211926505,0.06640762090683],[-0.041771452873945,-0.032651130110025,-0.071873918175697]],[[0.05422504991293,-0.030025014653802,0.031718160957098],[-0.018634933978319,0.025908458977938,-0.025353249162436],[-0.010205367580056,-0.017802067101002,-0.045359596610069]],[[-0.0080232182517648,0.014497751370072,0.0065208314917982],[0.039044622331858,-0.021950984373689,0.021569291129708],[0.0019524762174115,-0.008576113730669,0.018717225641012]],[[0.019512144848704,-0.01994264125824,-0.015522189438343],[0.041367087513208,0.0017518356908113,-0.008582204580307],[0.024959623813629,0.087102673947811,0.0323431417346]],[[0.051973640918732,-0.067877292633057,-0.041581526398659],[-0.09436322748661,0.030004926025867,0.037998862564564],[0.048873603343964,-0.017328893765807,-0.018928235396743]],[[-0.029834253713489,0.032776080071926,-0.010104077868164],[0.037728760391474,0.059325013309717,-0.046053431928158],[0.0031694676727057,-0.017550984397531,0.041945327073336]],[[0.0065927561372519,0.040827352553606,0.012637688778341],[-0.039390224963427,0.014593779109418,-0.0031503308564425],[-0.014696074649692,-0.084697559475899,0.049570053815842]],[[-0.019830467179418,0.045369811356068,0.0077936230227351],[-0.065627381205559,-0.023317735642195,0.029357491061091],[0.02405646070838,-0.019709387794137,0.046436671167612]],[[-0.013039429672062,-0.054548539221287,-0.042921051383018],[0.014978255145252,-0.0064401943236589,-0.010661688633263],[0.027588656172156,-0.048732992261648,0.025152627378702]],[[0.010222439654171,0.042580667883158,-0.064474411308765],[-0.024539591744542,-0.020743943750858,0.012193419039249],[0.067811392247677,0.071898423135281,0.072240747511387]],[[0.10640354454517,-0.0026799631305039,0.046167440712452],[0.005164950620383,-0.033466219902039,0.0007756797131151],[-0.012314576655626,-0.070925354957581,0.0058137709274888]],[[0.04905029386282,0.016950728371739,-0.06677882373333],[0.0082641262561083,-0.02025568112731,0.042616482824087],[-0.04969884827733,-0.0044091064482927,0.053962416946888]],[[-0.018433419987559,-0.029208991676569,0.032077897340059],[0.035787966102362,-0.039336904883385,0.013001514598727],[0.038183353841305,-0.047912959009409,0.0022248772438616]],[[-0.063293658196926,-0.050377301871777,-0.0079393768683076],[-0.040189918130636,-0.035199102014303,-0.067701101303101],[0.012193555943668,0.010928423143923,0.042656265199184]],[[0.059642672538757,0.037439793348312,0.065568149089813],[0.051080122590065,0.0051129134371877,-0.057916942983866],[-0.033323246985674,-0.027765450999141,-0.019786978140473]],[[0.019386125728488,-0.060065533965826,0.024104537442327],[-0.011690191924572,0.053242962807417,-0.091590069234371],[0.048392426222563,-0.061968453228474,0.03029072843492]],[[-0.028198109939694,0.042329017072916,0.016060194000602],[-0.03826942294836,-0.072183728218079,0.083896227180958],[0.034432847052813,0.014299781993032,-0.036745171993971]],[[-0.007491216994822,-0.075300544500351,0.020992513746023],[0.00098481064196676,-0.060655795037746,0.044427428394556],[0.011776639148593,0.014484665356576,0.056600637733936]],[[0.012843150645494,0.04096282273531,0.027910429984331],[0.027852630242705,0.065138667821884,-0.0013980031944811],[-0.023471318185329,-0.048777401447296,-0.055664531886578]],[[-0.052909310907125,0.032751325517893,-0.0010112561285496],[-0.010292033664882,-0.054679736495018,-0.035634547472],[-0.0015063028549775,-0.04882263019681,-0.064155489206314]],[[-0.0088667916134,-0.10244269669056,-0.03409269452095],[-0.02943841740489,0.0036249826662242,-0.022669121623039],[0.027279121801257,0.015007393434644,0.035837907344103]],[[-0.0066518429666758,-0.053810808807611,0.10342854261398],[0.010715267620981,0.066094778478146,-0.017310652881861],[0.070922024548054,0.074321016669273,-0.00099120638333261]],[[0.016755254939198,-0.060923773795366,-0.01171927433461],[0.023879257962108,-0.025018062442541,0.0053201257251203],[-0.020548213273287,-0.075053259730339,0.018043698742986]],[[-0.023244425654411,0.012564213015139,0.027853595092893],[-0.087339535355568,-0.011520708911121,-0.012675731442869],[-0.061993636190891,0.065829798579216,-0.02617428265512]],[[0.029835775494576,-0.049766551703215,-0.0024012650828809],[-0.0065448954701424,-0.038620509207249,-0.044199366122484],[0.032337546348572,0.0095947347581387,0.011700625531375]],[[-0.046601705253124,-0.01131784170866,0.0011563003063202],[-0.052981980144978,0.049256559461355,0.045507621020079],[0.084785617887974,-0.02253364212811,0.00050313404062763]],[[-0.038818374276161,-0.032177485525608,-0.043413650244474],[-0.023594109341502,0.0058955955319107,0.0033505726605654],[-0.029085954651237,-0.053183738142252,0.021368891000748]],[[-0.033931456506252,0.022985668852925,0.029554722830653],[-0.017103450372815,-0.060416661202908,0.029151475057006],[-0.0047651533968747,0.016724452376366,-0.022720400243998]],[[-0.0096937716007233,-0.016864970326424,0.028595624491572],[-0.075606651604176,-0.0020286375656724,0.0038422101642936],[0.078831240534782,0.026935612782836,-0.049059092998505]],[[0.051117036491632,0.0065250215120614,0.019002528861165],[0.025149868801236,0.015740245580673,-0.01205220259726],[-0.012965173460543,0.002177621005103,-0.022791335359216]],[[-0.030854366719723,0.025565452873707,-0.004583147354424],[0.014870717190206,-0.028044443577528,-0.072579637169838],[0.029718952253461,-0.020041322335601,-0.038894515484571]],[[-0.026497010141611,0.070202574133873,0.01646007783711],[-0.024920659139752,-0.061243865638971,0.046074338257313],[-0.00047855987213552,-0.020082408562303,-0.007523451000452]],[[0.0024106693454087,0.0017201714217663,0.038280688226223],[-0.013502559624612,-0.020354636013508,0.034988455474377],[-0.0051770200952888,-0.05751671269536,-0.0034189175348729]],[[-0.013190180063248,0.021810425445437,0.031755637377501],[0.012583182193339,0.023272817954421,9.4715403974988e-05],[0.048864677548409,0.01199768576771,-0.00075730221578851]],[[0.023877765983343,0.020376881584525,0.038887500762939],[0.032137401401997,-0.056822292506695,0.0038163040298969],[0.087017379701138,-0.025872219353914,0.02506535500288]],[[-0.061339538544416,-0.0067556030116975,0.074793361127377],[0.058573961257935,0.013424606993794,-0.0091987494379282],[0.033215768635273,0.00058654753956944,0.077174328267574]],[[0.026531536132097,-0.049963589757681,-0.025603622198105],[0.027515452355146,0.0021344986744225,-0.035911675542593],[-0.050623789429665,-0.0010483413934708,-0.073902569711208]],[[0.052009858191013,0.018286323174834,-0.00083115819143131],[0.019554171711206,0.0040554208680987,-0.038386136293411],[0.047836821526289,0.023051060736179,0.06021511182189]],[[-0.05994601547718,0.017033319920301,-0.021417023614049],[-0.048813946545124,-0.09507878869772,-0.10441177338362],[-0.030981039628386,-0.0048284535296261,-0.069506861269474]],[[-0.069798029959202,-0.0315723977983,-0.059427943080664],[0.039158869534731,-0.011746365576982,-0.071589305996895],[-0.03041097894311,-0.0039902501739562,-0.003897411050275]],[[0.015715017914772,-0.027446208521724,0.025856109336019],[-0.10248919576406,-0.0055249570868909,-0.033060904592276],[0.053761016577482,0.073605991899967,0.023848647251725]],[[0.0044996039941907,0.03079922683537,-0.027145329862833],[-0.11335534602404,-0.029800964519382,0.051194678992033],[-0.012076689861715,-0.0078995954245329,-0.035856191068888]],[[0.082633428275585,0.042021747678518,0.012222744524479],[-0.020193153992295,-0.034296713769436,0.032792899757624],[-0.041685491800308,-0.0070706736296415,0.012044804170728]],[[0.035442400723696,0.052631452679634,-0.0068879323080182],[0.04024026915431,-0.056670043617487,-0.01839710213244],[-0.017764313146472,0.028281265869737,-0.0043107797391713]],[[0.02536011300981,-0.015910424292088,0.016145085915923],[0.03910556063056,-0.073159478604794,-0.030322341248393],[0.0036758135538548,0.0032891256269068,-0.078580603003502]],[[-0.012496134266257,0.063179478049278,-0.0040055229328573],[-0.040101058781147,-0.026806449517608,0.011536910198629],[-0.072653479874134,-0.035814825445414,0.047835309058428]],[[-0.091321811079979,-0.025816895067692,0.035814229398966],[0.050624094903469,-0.057095017284155,0.0015398646937683],[-0.013133739121258,-0.035332180559635,-0.054719015955925]],[[0.012625721283257,0.04295077174902,0.0059507531113923],[0.0019935760647058,-0.013649339787662,-0.010999388992786],[-0.059021778404713,-0.021775966510177,0.018425118178129]],[[-0.0072510843165219,-0.031691789627075,0.0091110756620765],[0.018809285014868,-0.024750381708145,0.029236927628517],[0.083663910627365,-0.067988239228725,-0.041054930537939]],[[-0.015163890086114,0.030239587649703,-0.032093863934278],[0.018684780225158,-0.047999031841755,0.025811808183789],[0.030269742012024,0.04883835464716,-0.010742544196546]],[[-0.014812153764069,-0.02708393894136,0.01716204546392],[-0.029305996373296,0.009872923605144,0.068736225366592],[0.094268679618835,0.027572806924582,-0.07597241550684]],[[-0.069020472466946,0.048457119613886,-0.024020176380873],[0.002454218454659,-0.00095625373069197,0.0042135966941714],[0.11101558059454,-0.033393293619156,0.058156635612249]],[[-0.0065202177502215,0.014542216435075,-0.0031581800431013],[0.087363541126251,-0.010312790051103,-0.042068880051374],[-0.013102225959301,0.0062573477625847,-0.0059162299148738]],[[0.036467541009188,-0.02035148628056,0.038798820227385],[0.066065065562725,-0.026041638106108,0.013714015483856],[-0.083055377006531,0.0088019389659166,-0.003226013854146]],[[0.032065059989691,-0.0026124720461667,0.018474265933037],[0.0089444695040584,0.0063883438706398,-0.042111694812775],[0.0085580283775926,-0.018386853858829,0.027821177616715]],[[-0.0068890214897692,-0.02389438636601,-0.021915907040238],[-0.046261079609394,0.052755352109671,0.074726335704327],[0.034238565713167,-0.035598061978817,0.025522707030177]],[[-0.025755971670151,-0.001374242361635,0.0032523463014513],[0.05187140032649,0.0094291502609849,-0.054187327623367],[-0.011067194864154,0.02556898444891,0.023512691259384]],[[0.041524581611156,0.02995247207582,0.0039907637983561],[-0.034877020865679,-0.0080694360658526,-0.026997074484825],[-0.013813328929245,0.057220987975597,-0.05109116435051]],[[0.048022862523794,0.0055891182273626,-0.060185447335243],[-0.013613861985505,-0.010674391873181,0.020092714577913],[0.024358786642551,0.02092413417995,0.027599293738604]],[[0.023493377491832,-0.089041814208031,0.033218488097191],[-0.0060991500504315,0.010093045420945,0.025504063814878],[-0.002041649306193,-0.081027150154114,-0.034012667834759]],[[0.028949223458767,0.016192305833101,-0.039478309452534],[0.0059938528575003,0.046767447143793,0.010362967848778],[-0.023263586685061,-0.029993476346135,-0.04956703260541]],[[-0.0054800109937787,0.048953153192997,-0.0029575855005533],[-0.019730672240257,0.045736908912659,-0.074476309120655],[0.090507492423058,-0.076492138206959,0.039050240069628]],[[-0.060106955468655,-0.017630308866501,-0.031668044626713],[0.061429619789124,-0.019492903724313,0.0087552964687347],[0.017741126939654,-0.021276207640767,-0.021308105438948]],[[0.063368782401085,0.003615147434175,0.0071055833250284],[0.060300190001726,-0.077434010803699,0.085344262421131],[-0.0093754548579454,0.027237832546234,0.007957081310451]],[[0.027830542996526,-0.046268977224827,0.044944368302822],[-0.014340806752443,0.02640119381249,-0.028977716341615],[-0.041597623378038,-0.056409765034914,-0.0039868731983006]],[[0.057085201144218,-0.099180392920971,-0.064765185117722],[-0.063139751553535,-0.027440320700407,-0.031527381390333],[0.0099689522758126,-0.026138715445995,-0.043958470225334]],[[0.019675033167005,0.054932311177254,0.073346264660358],[0.02782722376287,-0.041093192994595,0.015566146932542],[0.05484776571393,0.044885385781527,0.033498447388411]],[[-0.030391892418265,0.029850812628865,-0.0029755241703242],[-0.037596631795168,-0.026955833658576,-0.078754037618637],[-0.014321967959404,0.025097897276282,0.032809890806675]],[[0.0092837065458298,0.010119886137545,0.018432823941112],[0.038958065211773,0.041206877678633,-0.10804875195026],[0.019508169963956,0.017957160249352,0.045342091470957]],[[-0.10273546725512,-0.042500246316195,-0.075565755367279],[-0.032879378646612,0.0092442138120532,-0.036873213946819],[-0.053509458899498,-0.055895835161209,-0.0666763484478]],[[-0.088426135480404,-0.12945298850536,0.11492735147476],[-0.082151271402836,0.0014675077982247,-0.016291715204716],[0.058767974376678,0.032330561429262,0.036274340003729]],[[-0.025722729042172,-0.075495049357414,-0.02505868114531],[0.051469154655933,-0.0098864836618304,0.05954684689641],[-0.038053635507822,-0.0060335006564856,-0.09229514747858]],[[-0.0058023855090141,-0.046360339969397,-0.04872227832675],[-0.0014090192271397,-0.045017078518867,0.00037657641223632],[0.047201953828335,-0.027803860604763,-0.030974894762039]],[[0.043081630021334,0.014380702748895,0.024373302236199],[0.035641267895699,-0.019381737336516,-0.045312851667404],[-0.0058116791769862,0.023847382515669,0.09941366314888]],[[-0.010872733779252,0.055917654186487,0.011839034967124],[-0.024428818374872,0.023530337959528,-0.00103212101385],[-0.017863983288407,-0.02699176594615,0.091214247047901]],[[0.040989261120558,-0.048063952475786,0.040369257330894],[-0.017316153272986,0.034472808241844,0.02801563590765],[-0.06959917396307,0.035263478755951,0.012902140617371]],[[-0.06210657581687,-0.032986480742693,0.016255734488368],[0.014875758439302,-0.044503375887871,-0.017879301682115],[0.034094795584679,-0.018563903868198,-0.045481137931347]],[[0.0016086013056338,0.035719640552998,0.0031670280732214],[-0.061761256307364,-0.079310148954391,-0.018685234710574],[-0.059774335473776,0.088027074933052,0.056165259331465]],[[-0.015029510483146,-0.017102414742112,0.076126798987389],[-0.063812837004662,0.01005791593343,-0.027033546939492],[-0.011895057745278,0.052744302898645,0.016992416232824]],[[0.059178851544857,-0.042075730860233,-0.064595863223076],[-0.066136099398136,0.023606333881617,0.067711234092712],[-0.038218475878239,0.036204896867275,0.0063730315305293]],[[-0.012812159955502,-0.018127979710698,0.040849719196558],[0.02711502276361,0.019382299855351,0.048575587570667],[-0.042761355638504,-0.029273591935635,0.044657308608294]],[[0.031462449580431,0.067092001438141,-0.046935234218836],[-0.015750830993056,0.023272167891264,-0.033001888543367],[-0.04022504389286,-0.083140507340431,-0.014210625551641]],[[-0.027015460655093,0.035740707069635,0.0028999617788941],[-0.0090302107855678,0.0022511640563607,0.035949971526861],[0.026736469939351,0.017125276848674,-0.054310347884893]],[[0.0001530207664473,0.031863611191511,-0.038622193038464],[0.0057647102512419,0.087192229926586,-0.041047617793083],[-0.036947507411242,-0.0089636938646436,0.0057281362824142]]],[[[-0.070121914148331,-0.051142733544111,0.041315630078316],[0.012033235281706,0.017809981480241,0.029872693121433],[0.0046818619593978,-0.052347306162119,0.023254217579961]],[[-0.075439766049385,-0.00045622463221662,-0.0847187936306],[-0.0045663020573556,0.062952063977718,-0.022086177021265],[0.11366365849972,0.039655838161707,-0.083692774176598]],[[-0.028474407270551,-0.0038747270591557,-0.0053013609722257],[-0.029616048559546,0.054437268525362,-0.023478042334318],[0.0069880555383861,0.032585769891739,-0.10073157399893]],[[0.047616004943848,0.071112461388111,-0.0046076290309429],[0.072898410260677,0.013195591978729,0.051780879497528],[-0.019399151206017,0.052716244012117,0.058678146451712]],[[0.018768262118101,0.017823783680797,0.0082379430532455],[0.0091256657615304,0.053380187600851,0.024633336812258],[-0.015724735334516,0.063570819795132,-0.014199580065906]],[[0.0039949528872967,-0.018620550632477,0.10938260704279],[-0.00061424938030541,0.033630359917879,0.077966265380383],[0.10037994384766,-0.056721266359091,0.034912813454866]],[[0.036724865436554,-0.10131807625294,-0.074001021683216],[-0.10604840517044,-0.043585542589426,0.031966868788004],[-0.081350795924664,-0.029019257053733,0.014852496795356]],[[-0.021087778732181,-0.011849883012474,0.01832015812397],[0.063736349344254,0.024079069495201,-0.02250849083066],[-0.11268971115351,-0.046601239591837,0.015626892447472]],[[-0.045450817793608,0.024436673149467,-0.037854969501495],[0.0080007463693619,0.030147586017847,0.0054444377310574],[-0.019097171723843,0.033340409398079,-0.022218177095056]],[[-0.046163845807314,0.13092869520187,0.050052493810654],[0.04974552989006,0.11780689656734,0.053001333028078],[0.20363599061966,0.16823118925095,0.073234722018242]],[[-0.03962380066514,-0.011576125398278,-0.018378501757979],[-0.045293070375919,0.009965275414288,0.056375302374363],[0.0082824919372797,0.055080261081457,0.024066288024187]],[[0.061464708298445,0.069437526166439,0.0071301641874015],[0.055945217609406,0.00052309036254883,0.026344833895564],[0.05333898961544,0.028021218255162,-0.083032950758934]],[[-0.00072687992360443,-0.022038256749511,-0.066634692251682],[0.018124947324395,-0.047139532864094,-0.029196489602327],[-0.06857930123806,-0.054364450275898,-0.053870178759098]],[[-0.10297137498856,0.006873672362417,-0.030934784561396],[0.012047328986228,-0.070388548076153,0.022301139310002],[0.090768665075302,0.049881972372532,0.016257101669908]],[[0.11234927177429,0.13576443493366,-0.059420350939035],[0.018382934853435,0.045071799308062,0.011664714664221],[0.046729248017073,0.062093671411276,0.038015503436327]],[[0.01190276350826,0.021606512367725,0.014540986157954],[-0.026963537558913,0.03240380436182,-0.023793363943696],[0.0020274915732443,-0.090668700635433,-0.034569978713989]],[[-0.031497452408075,0.020574266090989,-0.029541220515966],[-0.0084991296753287,-0.030285345390439,0.023080013692379],[-0.022826310247183,0.031356893479824,0.048704355955124]],[[-0.067156590521336,-0.036638617515564,-0.028987128287554],[-0.10061914473772,-0.0017495723441243,-0.00018574122805148],[-0.10333972424269,-0.007367686368525,0.070408038794994]],[[0.045650117099285,-0.024434518069029,-0.039260067045689],[0.11066068708897,-0.084852159023285,-0.043566044420004],[-0.072429426014423,0.01717060431838,0.052323874086142]],[[-0.0024879374541342,-0.036881789565086,-0.024439679458737],[0.024729093536735,0.032878469675779,0.080029428005219],[0.015229577198625,0.12466678768396,-0.032510355114937]],[[-0.017459591850638,0.064407058060169,0.004685272462666],[0.0083118993788958,0.036805637180805,0.017399318516254],[0.052163150161505,0.027587017044425,0.0051428945735097]],[[0.062621615827084,0.081290081143379,0.040152609348297],[0.048113390803337,0.079771943390369,0.10111679881811],[-0.0039112106896937,0.079052373766899,0.10571280121803]],[[-0.091020293533802,0.020418336614966,0.096788063645363],[-0.00025203690165654,-0.058213673532009,0.013040499761701],[-0.12613685429096,0.011529930867255,-0.0081278523430228]],[[-0.06957520544529,-0.10287150740623,0.014159422367811],[0.032640095800161,0.068645127117634,0.03091524541378],[0.095529302954674,0.11924580484629,0.10797853767872]],[[0.066868424415588,0.040375206619501,0.042575240135193],[-0.03484582901001,0.069089949131012,-0.056488242000341],[0.0053488505072892,0.048259798437357,0.085961662232876]],[[-0.041891153901815,-0.012397268787026,0.087009139358997],[0.02452783100307,0.017381809651852,0.0034718664828688],[-0.016681924462318,0.077695772051811,0.13436461985111]],[[-0.029294492676854,0.019547270610929,0.031779181212187],[-0.0042689749971032,0.061614628881216,-0.0032005331013352],[-0.048389732837677,-0.0037987914402038,0.0046052499674261]],[[-0.021895479410887,-0.069876365363598,0.047810886055231],[-0.075392194092274,0.078419350087643,0.018632885068655],[0.12166853994131,0.030147805809975,-0.033621083945036]],[[-0.015204353258014,0.0071005681529641,-0.0071459277532995],[-0.030637318268418,-0.045324981212616,0.031687956303358],[-0.015339652076364,-0.045759782195091,-0.016769027337432]],[[-0.023979797959328,0.069535799324512,0.0038215664681047],[0.11253038793802,0.058664280921221,-0.00055397709365934],[0.1251455694437,-0.038282204419374,0.019446164369583]],[[-0.019273163750768,0.088450133800507,0.050295807421207],[0.040957044810057,0.13120894134045,-0.030520774424076],[0.037947773933411,0.097209230065346,-0.057406980544329]],[[-0.03490823507309,-0.016084767878056,0.02296251617372],[0.025134215131402,0.048285111784935,0.087073385715485],[-0.037927899509668,-0.0047974912449718,0.033702701330185]],[[-0.027738001197577,0.058564819395542,0.057281628251076],[-0.033114109188318,0.076059192419052,-0.0092323757708073],[0.039402294903994,0.054097227752209,0.06389569491148]],[[0.039304681122303,0.035423591732979,-0.016204787418246],[0.093646235764027,0.10097356885672,-0.021221918985248],[-0.023578936234117,0.07014150172472,0.03937416896224]],[[-0.040629874914885,-0.028927581384778,-0.047223757952452],[0.018345503136516,0.010942928493023,-0.06492742151022],[0.12257155030966,0.087944231927395,-0.045984499156475]],[[-0.073409035801888,-0.13542951643467,0.041959993541241],[-0.0012504790211096,-0.062467947602272,-0.030847322195768],[0.017173023894429,-0.057754009962082,-0.018852995708585]],[[0.018158949911594,-0.030373465269804,-0.052151061594486],[0.013985525816679,-0.098631955683231,-0.088998131453991],[0.030607970431447,-0.022521801292896,0.034419935196638]],[[-0.063801944255829,0.059336949139833,-0.027858169749379],[0.10174444317818,0.032653968781233,0.060879595577717],[0.079484164714813,0.10694543272257,-0.028903298079967]],[[0.030323775485158,0.072083756327629,-0.070544362068176],[0.13733918964863,0.0177410710603,-0.10143291950226],[0.0018572881817818,-0.020562382414937,-0.096246272325516]],[[-0.014342505484819,0.029166832566261,-0.072893492877483],[0.018662141636014,0.0002741476346273,0.04126912727952],[-0.075700879096985,0.059503376483917,0.074491254985332]],[[0.052323058247566,-0.021047379821539,0.002559207379818],[-0.0052615664899349,0.019669935107231,0.028827745467424],[0.024377560243011,-0.044382221996784,0.030925750732422]],[[-0.015844805166125,0.0085987318307161,0.027649343013763],[0.052105598151684,-0.057767283171415,-0.013588532805443],[0.0079498616978526,-0.034350123256445,-0.018974242731929]],[[-0.0044833337888122,0.046383541077375,0.12683308124542],[0.055448852479458,0.048414759337902,0.035487271845341],[0.050692323595285,0.13831348717213,0.07908458262682]],[[-0.031309448182583,0.013619237579405,0.012559260241687],[-0.082065306603909,0.0043614790774882,-0.038831252604723],[-0.03322371840477,-0.042224004864693,-0.025505902245641]],[[-0.095674686133862,0.0086986450478435,0.038339849561453],[0.0014560457784683,0.033201526850462,0.031867042183876],[0.040062461048365,0.039571959525347,-0.039363697171211]],[[0.0017803389346227,-0.030987665057182,0.064864374697208],[0.071402311325073,-0.0019900109618902,0.013697441667318],[0.082834891974926,0.019395772367716,-0.0078998496755958]],[[0.012758530676365,0.042845748364925,0.054373200982809],[0.045222274959087,0.0031184761319309,-0.024793103337288],[0.025760153308511,-0.0038945476990193,-0.052204128354788]],[[0.042879763990641,-0.03508584946394,0.011144488118589],[-0.021497683599591,0.087145291268826,-0.0020786360837519],[0.052161622792482,0.021714905276895,-0.030474402010441]],[[-0.048855543136597,0.049559708684683,0.0071536567993462],[0.04298347607255,0.042423892766237,-0.014694381505251],[-0.0042459084652364,0.04771551117301,0.093603603541851]],[[0.016420565545559,0.013047105632722,-0.062168590724468],[-0.039601314812899,-0.030043909326196,-0.037146542221308],[-0.075309164822102,0.015822570770979,-0.018724927678704]],[[0.0092740710824728,-0.082324951887131,0.016869453713298],[-0.097979880869389,0.0099299000576138,-0.021817579865456],[-0.025420481339097,-0.037735465914011,-0.033359490334988]],[[-0.038870237767696,-0.0057032601907849,0.12050718814135],[0.043609786778688,-0.018319871276617,0.10497879981995],[0.089861549437046,0.062165778130293,0.0046913661062717]],[[0.1340584307909,0.038011852651834,0.052944220602512],[0.10226538777351,0.063011199235916,0.032894350588322],[0.077722169458866,0.0085469074547291,0.030493399128318]],[[0.009366113692522,0.0014524990692735,-0.040720053017139],[0.062640942633152,0.049465958029032,0.013248529285192],[0.016222750768065,0.06260272860527,-0.052304193377495]],[[-0.038996651768684,-0.033889923244715,-9.785911970539e-05],[0.034683160483837,0.049119930714369,-0.066566072404385],[0.011807365342975,-0.023058170452714,0.048359248787165]],[[0.016234893351793,0.059002120047808,0.029819810763001],[0.0029244560282677,-0.019662974402308,0.040760420262814],[-0.041287362575531,0.095769636332989,-0.0231096688658]],[[-0.089617408812046,-0.095035299658775,0.097214952111244],[-0.073269627988338,-0.077467851340771,-0.0336739346385],[-0.074243508279324,0.072154901921749,0.041811130940914]],[[-0.034780759364367,0.052068382501602,0.10733332484961],[0.035639118403196,0.058900184929371,-0.0363410115242],[0.015717331320047,-0.017791260033846,0.13766558468342]],[[0.056201782077551,0.09324049949646,0.051377661526203],[-0.10002137720585,0.086850993335247,0.06068179756403],[-0.091993235051632,-0.027310306206346,0.065067924559116]],[[0.021331492811441,0.047444716095924,-0.06841404736042],[0.018054634332657,-0.005279534496367,0.054392982274294],[-0.033375278115273,-0.01414892822504,0.090851537883282]],[[-0.034968830645084,-0.022738063707948,0.049265000969172],[-0.046304620802402,0.012018814682961,0.040818832814693],[-0.048448856920004,-0.01129606552422,0.023444477468729]],[[0.0024864634033293,-0.004704118706286,-0.0047207069583237],[-0.0089941387996078,-0.013723501935601,0.019287895411253],[-0.0033304796088487,0.0081239528954029,0.0011996610555798]],[[0.017795158550143,-0.0065531278960407,0.018693916499615],[0.01759865693748,0.029507396742702,-0.011947339400649],[-0.027834532782435,-0.045195173472166,-0.020469777286053]],[[-0.0026857298798859,0.0066196247935295,0.028832199051976],[-0.038511384278536,0.05682947486639,-0.041125308722258],[-0.019352290779352,-0.010689885355532,-0.039903171360493]],[[0.10491245239973,0.006842898670584,0.059957504272461],[0.076607413589954,0.022945553064346,-0.036202292889357],[0.010086412541568,-0.18309473991394,0.010502777062356]],[[-0.0038219450507313,-0.014891317114234,-0.062831647694111],[-0.001567741157487,-0.026279784739017,0.043432950973511],[0.05426749587059,-0.0106913279742,-0.012976989150047]],[[-0.00083029799861833,0.024157771840692,-0.033209912478924],[0.030248064547777,0.070683218538761,0.073435433208942],[0.047247473150492,0.066486716270447,0.068195171654224]],[[0.01905763708055,0.011105546727777,-0.022666089236736],[0.011767532676458,0.049643035978079,0.021034877747297],[-0.0078341402113438,-0.01345931366086,0.072849407792091]],[[-0.028793774545193,-0.023722149431705,0.038883171975613],[-0.065608225762844,-0.0019410725217313,0.066147536039352],[-0.043348345905542,0.038751654326916,-0.03826767578721]],[[-0.041061464697123,-0.020081209018826,0.031808152794838],[0.033112164586782,0.079988442361355,0.029672218486667],[0.033947248011827,-0.05698050186038,-0.0061845174059272]],[[-0.0030118359718472,0.0035032203886658,0.0030489140190184],[0.0044735749252141,0.057179089635611,0.033329296857119],[0.06246530264616,-0.035012967884541,-0.0081319911405444]],[[0.00090382195776328,0.013232469558716,0.033106040209532],[0.084749676287174,0.0097926231101155,0.070728205144405],[-0.033890470862389,-0.018315242603421,0.038754630833864]],[[0.053165450692177,0.055575035512447,-8.8580593001097e-05],[-0.00034559678169899,0.0075145047158003,0.022609323263168],[0.010977730154991,0.024659793823957,-0.080875635147095]],[[0.011094382964075,0.054925341159105,0.030953081324697],[-0.032136920839548,0.043930072337389,-0.017048375681043],[-0.023617293685675,0.13683180510998,-0.056878231465816]],[[0.0073216129094362,0.056455694139004,0.012774421833456],[-0.036728423088789,-0.0072277020663023,0.02626346051693],[-0.073197938501835,0.079969868063927,-0.063188463449478]],[[0.055057354271412,0.007915198802948,-0.017498860135674],[0.034015480428934,0.045216962695122,-0.02935715764761],[-0.0004050579154864,0.11798184365034,0.066005796194077]],[[-0.036635894328356,0.042190231382847,-0.04790910705924],[0.0023057933431119,-0.016139041632414,-0.018262917175889],[-0.021096242591739,-0.029325885698199,0.054910730570555]],[[0.0071893255226314,-0.029694601893425,0.045780677348375],[-0.0075250430963933,0.15633825957775,0.051661550998688],[-0.057276181876659,0.10518560558558,0.06326774507761]],[[0.0072524240240455,0.046534180641174,-0.047059342265129],[0.13767594099045,-0.048296701163054,-0.031878758221865],[0.00415561767295,0.079171121120453,0.058963496237993]],[[-0.081390850245953,-0.066905148327351,0.0088257482275367],[-0.005828011315316,-0.0034830584190786,-0.049765761941671],[0.026081919670105,0.027861185371876,-0.037554949522018]],[[0.049918957054615,-0.004697653464973,0.064892940223217],[0.072612665593624,-0.012261255644262,0.035378612577915],[0.0095020914450288,-0.029413187876344,0.01177747361362]],[[-0.077996514737606,0.061319626867771,-0.032328307628632],[-0.051138877868652,-0.038565088063478,-0.029165435582399],[-0.031782474368811,-0.011951628141105,-0.038238238543272]],[[-0.0057860179804265,-0.073576748371124,-0.024947943165898],[-0.027397535741329,-0.024025935679674,0.033618066459894],[-0.065632522106171,0.071745783090591,0.049723617732525]],[[-0.02253620699048,0.01582252793014,0.028714912012219],[0.015549069270492,0.025221928954124,0.032594498246908],[-0.053344614803791,0.034130707383156,-0.0028516149614006]],[[-0.00080628501018509,0.052899703383446,-0.011948587372899],[0.14478723704815,0.074079155921936,0.039064571261406],[0.15991787612438,0.03420002758503,-0.032827813178301]],[[0.073250383138657,0.0052370592020452,-0.058494448661804],[0.083529554307461,0.081645920872688,0.047812283039093],[0.036669719964266,0.033087559044361,0.029461599886417]],[[-0.040525633841753,0.029591798782349,-0.050577562302351],[0.030611647292972,0.030426563695073,0.078285455703735],[-0.030439503490925,-0.076318994164467,0.05870945006609]],[[0.11701542884111,0.049517303705215,0.034886196255684],[0.15261587500572,0.10796631872654,-0.057085029780865],[0.030685499310493,0.053032547235489,0.011713275685906]],[[0.0070836315862834,0.07084009796381,-0.082297131419182],[0.092181675136089,-0.037096504122019,-0.030347066000104],[-0.010961683467031,0.013350625522435,-0.043095298111439]],[[0.021091120317578,0.036782644689083,-0.023707002401352],[0.028217185288668,0.044646080583334,-0.026823554188013],[0.044242911040783,0.079524256289005,-0.017911579459906]],[[0.0053560901433229,0.075156964361668,-0.024648541584611],[0.047153897583485,0.05137126147747,0.12122624367476],[-0.042945004999638,0.037699591368437,0.078755863010883]],[[-0.00056349713122472,-0.019562972709537,-0.018951008096337],[0.0088539831340313,-0.10201570391655,-0.0088472757488489],[0.040027879178524,-0.025329858064651,-0.014636750333011]],[[-0.0062362235039473,0.015851244330406,-0.026741301640868],[-0.042782202363014,-0.052323721349239,-0.0015741613460705],[-0.085128426551819,0.043338917195797,0.093562819063663]],[[0.017526226118207,0.065342508256435,0.078156255185604],[-0.055618204176426,0.065790690481663,0.018106730654836],[-0.028954470530152,0.08562583476305,0.051268022507429]],[[-0.024550395086408,-0.04472328722477,0.029397271573544],[-0.010798077099025,-0.043190363794565,0.15742227435112],[-0.0060521140694618,0.054039601236582,0.11955399811268]],[[0.010393967851996,-0.020435377955437,-0.013035436160862],[0.037979867309332,0.048315234482288,-0.02934293821454],[0.018156150355935,0.059958681464195,-0.075653523206711]],[[-0.007718846667558,-0.013774278573692,0.095467776060104],[-0.038093607872725,0.0096783023327589,0.08292692899704],[0.018692107871175,-0.0043074642308056,0.20284326374531]],[[0.0025275994557887,0.11858673393726,0.017353802919388],[0.018084704875946,0.072635754942894,0.10816552489996],[-0.063747830688953,-0.012592602521181,0.13586367666721]],[[0.047895614057779,-0.077592544257641,0.012178326956928],[0.036419559270144,0.0072328993119299,0.021421644836664],[-0.10315180569887,0.022820055484772,0.042682640254498]],[[-0.029053620994091,0.045130368322134,0.021806938573718],[0.048733714967966,-0.089019611477852,-0.013040883466601],[0.08064741641283,0.099431030452251,0.0085312407463789]],[[0.028335124254227,-0.031283989548683,0.013930379413068],[0.0057089594192803,-0.079094529151917,0.022494832053781],[-0.017900090664625,-0.025930164381862,0.086694374680519]],[[-0.065405286848545,0.084246568381786,-0.023638477548957],[0.018009567633271,0.085699796676636,-0.02422053553164],[0.054149441421032,0.097521476447582,0.049434017390013]],[[0.081964887678623,0.067416667938232,-0.011758069507778],[-0.036267708986998,0.029372410848737,0.039142083376646],[0.065800294280052,0.13831180334091,-0.048449501395226]],[[-0.062363684177399,-0.041197512298822,0.025775833055377],[-0.03672756627202,-0.010650080628693,-0.060942567884922],[0.011093788780272,0.020149320363998,-0.0059982100501657]],[[-0.040426183491945,0.043102152645588,0.026689475402236],[0.12419594079256,0.027977637946606,-0.039703249931335],[0.05466777458787,0.068852439522743,-0.0048867706209421]],[[-0.061727769672871,0.025357361882925,0.01388650201261],[0.023707611486316,0.015349525026977,0.01247288659215],[0.070507563650608,0.048019085079432,0.0040816199034452]],[[0.02774890512228,0.01168657746166,-0.091351337730885],[0.044472612440586,0.02928064763546,-0.0066288760863245],[-0.030676949769258,0.0090756807476282,0.1643093675375]],[[-0.078880026936531,0.01159805431962,-0.0067268768325448],[-0.02017280086875,-0.0033213458955288,0.035260550677776],[0.011224886402488,0.035367839038372,-0.0085928607732058]],[[-0.0059251124039292,-0.039301175624132,-0.041869074106216],[-0.068922653794289,0.00078578473767266,0.042651865631342],[0.02920420281589,-0.020604012534022,-0.023244943469763]],[[0.071025133132935,0.028180485591292,-0.0064517082646489],[0.096540041267872,0.065567843616009,-0.072062574326992],[0.02551507204771,-0.036479968577623,-0.050884537398815]],[[-0.019306475296617,-0.02883886732161,0.030593665316701],[-0.061936628073454,-0.029778409749269,0.039374876767397],[0.07826554775238,0.0070978007279336,-0.0025020418688655]],[[-0.013359318487346,0.028760591521859,-0.054489642381668],[0.0054736221209168,0.011465486139059,0.028682975098491],[-0.066986851394176,-0.032104801386595,0.033760488033295]],[[-0.062379214912653,0.062153544276953,-0.020985711365938],[0.011434933170676,0.0053476467728615,-0.023226670920849],[-0.0062053590081632,0.060408383607864,-0.04409159719944]],[[0.026645751670003,0.010000147856772,-0.059237644076347],[0.013157521374524,0.0086697908118367,-0.04465040564537],[-0.053577963262796,-0.040132913738489,0.0055750561878085]],[[0.057511959224939,0.011070561595261,0.04967101290822],[0.036873862147331,-0.043874815106392,0.035236220806837],[-0.028058128431439,-0.052161309868097,0.019847262650728]],[[-0.052737355232239,-0.021955646574497,0.013821922242641],[-0.0011331181740388,-0.048634435981512,-0.028307335451245],[-0.062341898679733,0.038549285382032,0.085363931953907]],[[-0.024709329009056,-0.0040758359245956,0.012391006574035],[0.048118639737368,0.063453175127506,0.090151116251945],[0.055523637682199,0.023506691679358,0.13349588215351]],[[0.018758628517389,0.025769015774131,0.009269904345274],[0.10763382166624,0.092945069074631,0.0061715831980109],[-0.051730662584305,-0.030621021986008,0.069471187889576]],[[-0.093777813017368,-0.039933994412422,0.055876772850752],[-0.035745818167925,0.075733512639999,-0.018837420269847],[0.054961211979389,-0.047574531286955,-0.036351423710585]],[[-0.023451058194041,-0.062176514416933,-0.056140676140785],[-0.021797204390168,0.053550489246845,-0.033368933945894],[-0.075378447771072,0.021973557770252,-0.071753412485123]],[[0.036309991031885,-0.0026229876093566,-0.047483284026384],[0.014552844688296,-0.095407024025917,-0.021839391440153],[0.039095632731915,0.011597554199398,0.077264107763767]],[[0.0029800918418914,0.09646513313055,0.0016956774052233],[0.080881752073765,0.12364538013935,-0.010293367318809],[0.080939345061779,-0.024704968556762,0.02963531948626]],[[0.072023302316666,0.060847379267216,-0.069941349327564],[0.08979793637991,-0.068315520882607,-0.063444569706917],[-0.054863557219505,0.039511516690254,-0.068137980997562]],[[0.12042056769133,0.015228787437081,-0.10692435503006],[0.024740986526012,-0.10364743322134,-0.046433299779892],[-0.08156930655241,-0.18248035013676,-0.10036260634661]],[[-0.0091302804648876,-0.013666644692421,0.048876259475946],[-0.0092175099998713,0.022848919034004,-0.076435953378677],[0.04619474709034,0.025534700602293,0.07307555526495]],[[-0.015962125733495,-0.00055610726121813,-0.0038106641732156],[0.015301393344998,0.0443349853158,-0.04454268887639],[0.020472280681133,0.095036648213863,0.016311526298523]],[[-0.027984673157334,-0.017250552773476,0.054062761366367],[0.14792208373547,0.065364710986614,0.057422641664743],[0.039500918239355,0.11534959822893,0.058811672031879]],[[-0.033399950712919,-0.018638890236616,-0.016999825835228],[-0.016182338818908,0.075470700860023,-0.028623104095459],[0.018847273662686,0.0099305277690291,-0.031703807413578]]],[[[0.056898016482592,-0.042768053710461,-0.024548795074224],[0.0025926977396011,0.018423905596137,0.0014594091335312],[0.0065468489192426,-0.054620485752821,-0.0090633518993855]],[[-0.04272036626935,0.038360584527254,0.010685020126402],[-0.011100596748292,0.055614486336708,-0.0056569282896817],[-0.058763984590769,-0.029126022011042,0.017863618209958]],[[-0.057334166020155,-0.0067480402067304,0.057586621493101],[0.0030804157722741,0.018310954794288,-0.093288064002991],[-0.047856509685516,-0.060678251087666,0.037305127829313]],[[-0.0093315094709396,0.031127562746406,0.022201301530004],[-0.003992578946054,-0.0016085797687992,-0.02491700462997],[-0.05312842130661,0.0026011897716671,-0.018613563850522]],[[-0.044063292443752,0.0050293011590838,-0.04175441339612],[0.10886362195015,0.022967861965299,-0.084779381752014],[-0.0075555238872766,0.022532165050507,-0.0047950581647456]],[[0.066635124385357,0.007407623808831,0.006816788110882],[0.020854827016592,-0.0055009587667882,0.045524019747972],[-0.062434922903776,-0.026788555085659,-0.057027608156204]],[[-0.035291101783514,-0.042639575898647,-0.058956064283848],[0.027808770537376,0.017521895468235,-0.03804649040103],[-0.022484315559268,0.019739601761103,-0.024684434756637]],[[0.03562854975462,-0.014968879520893,-0.0045878137461841],[-0.057234767824411,-0.040664870291948,-0.02395548671484],[0.06546077132225,-0.018734809011221,0.0081951422616839]],[[0.063145950436592,0.00098223437089473,-0.043943241238594],[0.051347378641367,0.011690553277731,-0.05136588960886],[-0.041457075625658,-0.081033147871494,0.075695350766182]],[[0.017767483368516,-0.066127873957157,0.01800693012774],[0.043228913098574,0.10761546343565,0.02756579965353],[0.062179610133171,-0.018166691064835,-0.035614002496004]],[[-0.001073497813195,-0.055121459066868,-0.017080150544643],[0.055330783128738,0.075361475348473,0.011522331275046],[0.039526559412479,-0.029336342588067,-0.039796989411116]],[[0.00055147142848,0.0098879029974341,0.050800390541553],[0.010914523154497,0.018015583977103,0.015996001660824],[-0.0051318230107427,-0.0452043376863,-0.0017055372009054]],[[-0.011063466779888,-0.005371124483645,-0.0076319891959429],[-0.07297495752573,0.016018958762288,-0.050517555326223],[-0.025438057258725,-0.05970049649477,-0.044142581522465]],[[-0.030731055885553,0.034754332154989,0.010367440059781],[-0.017046304419637,-0.022632412612438,-0.047723736613989],[0.056061495095491,-0.0042249979451299,-0.020744636654854]],[[-0.025337886065245,-0.0020345677621663,0.024593325331807],[-0.035201005637646,0.014102187938988,-0.018536724150181],[0.05358611792326,0.035970594733953,0.0533407330513]],[[0.023530276492238,0.037074446678162,0.077740669250488],[-0.025172611698508,-0.0040012001991272,-0.013710896484554],[0.026756839826703,-0.0014689979143441,0.037900619208813]],[[-0.0054867342114449,-0.054666925221682,0.040536191314459],[0.027880258858204,-0.014494843780994,-0.010252760723233],[0.029940703883767,-0.03317129984498,-0.017759663984179]],[[-0.030689883977175,0.073907628655434,-0.0064608035609126],[-0.033175192773342,-0.049787402153015,0.03062405064702],[0.0088346768170595,0.014398634433746,-0.083462230861187]],[[-0.046323176473379,-0.0092469472438097,0.0034731556661427],[-0.012072489596903,-0.065999329090118,-0.025027168914676],[-0.01312799192965,0.064225509762764,-0.017931658774614]],[[0.011272232048213,0.019107619300485,-0.054296482354403],[-0.024752575904131,0.031687349081039,0.038632351905107],[-0.0052164713852108,0.06489173322916,0.020893309265375]],[[-0.089158222079277,0.033346340060234,0.025799803435802],[0.078681796789169,0.034312829375267,0.043614149093628],[0.045960083603859,0.044982004910707,0.048372864723206]],[[0.017055781558156,0.020217157900333,-0.048835717141628],[0.058303281664848,0.060096256434917,-0.10857584327459],[0.029861724004149,0.028151009231806,-0.019672375172377]],[[0.080548532307148,-0.030592607334256,-0.01387987844646],[0.015055299736559,0.047271952033043,-0.11383184045553],[0.045141540467739,0.049002822488546,-0.024249494075775]],[[-0.039151504635811,-0.022500770166516,-0.033550843596458],[-0.044291503727436,0.020821807906032,-0.050002943724394],[-0.048373114317656,-0.0096994508057833,-0.023471836000681]],[[0.00029188743792474,0.026614027097821,0.057810731232166],[-0.0010771900415421,-0.11109451949596,0.031999539583921],[0.0040686051361263,0.024048820137978,0.048900563269854]],[[-0.017757145687938,-0.048142269253731,0.016505543142557],[0.0021066900808364,0.036212213337421,0.017662413418293],[-0.047870397567749,-0.014783290214837,-0.028545094653964]],[[-0.024116411805153,0.073799334466457,-0.040785703808069],[0.017569620162249,0.083470873534679,-0.0086466781795025],[0.062055181711912,0.016016066074371,0.063625730574131]],[[0.009582506492734,0.072558559477329,0.079501569271088],[-0.03287872299552,-0.058829884976149,0.0021755723282695],[0.022421030327678,-0.07204645127058,-0.042079698294401]],[[0.026225870475173,-0.024018790572882,0.027877410873771],[-0.0015891104703769,-0.0047451718710363,0.064309149980545],[0.019994840025902,0.015927195549011,0.017478186637163]],[[0.091567672789097,-0.040583617985249,0.010187741369009],[-0.04604247584939,0.00090382195776328,-0.0046382625587285],[0.015590918250382,-0.053687866777182,-0.0079065291211009]],[[-0.064084261655807,-0.036582384258509,-0.0022888586390764],[0.070931687951088,0.064151436090469,0.0097292494028807],[0.024380851536989,0.023130992427468,-0.03656243160367]],[[0.027234194800258,0.0060294200666249,-0.087194740772247],[-0.064813055098057,0.033631581813097,0.049812104552984],[-0.041346792131662,0.017830548807979,-0.047103021293879]],[[-0.04797613248229,0.092951647937298,0.0042519685812294],[-0.024490658193827,-0.05451687052846,0.014917300082743],[0.075374476611614,-0.023250872269273,0.054021988064051]],[[-0.049356341362,-0.030148668214679,0.017713030800223],[-0.02356624789536,0.019748467952013,0.032350119203329],[0.036504194140434,0.02937725186348,0.03686311841011]],[[0.043636221438646,-0.075654529035091,0.019411081448197],[0.018644073978066,0.032570518553257,-0.079670704901218],[-0.026954593136907,0.047546297311783,0.080766201019287]],[[-0.027936052531004,0.014854462817311,0.0099453255534172],[-0.047527715563774,-0.0099039999768138,-0.010739321820438],[-0.085291281342506,-0.001681883004494,-0.015126516111195]],[[-0.025241566821933,-0.0077193398028612,-0.035306118428707],[0.018392281606793,0.069583281874657,-0.0013738456182182],[0.0040841661393642,-0.041062161326408,-0.02457158640027]],[[0.016640082001686,0.030338104814291,0.03162707388401],[0.0099979471415281,0.0052815964445472,0.027720501646399],[-0.01075123436749,-0.027516804635525,-0.0623361133039]],[[0.034456335008144,0.020729405805469,0.024078879505396],[0.0014138505794108,0.092710494995117,-0.035517808049917],[0.084276251494884,0.024051953107119,-0.032690968364477]],[[-0.047449316829443,0.017237916588783,-0.066535897552967],[-0.0032081841491163,0.063986957073212,7.0954876719043e-05],[0.021188896149397,-0.052451066672802,-0.033933252096176]],[[-0.07866045832634,-0.0044240546412766,-0.0096402717754245],[0.023020105436444,-0.049940932542086,-0.046950813382864],[0.00079141824971884,-0.035154510289431,0.019208712503314]],[[-0.10089357197285,0.034478459507227,-0.024084398522973],[-0.0025045187212527,-0.0027619958855212,-0.086406990885735],[-0.05126915499568,-0.01090176962316,0.037921901792288]],[[-0.060233477503061,-0.00078576145460829,-0.01173647865653],[-0.055095411837101,0.030940465629101,-0.089422427117825],[-0.056116830557585,0.021436855196953,-0.081883251667023]],[[0.059703640639782,0.017195712774992,0.0067465789616108],[-0.0018379486864433,-0.040759522467852,-0.028791071847081],[0.026030568405986,-0.0074508753605187,0.0085199428722262]],[[0.02555344440043,-0.033042319118977,0.067223459482193],[-0.045017041265965,-0.0090410150587559,0.032450530678034],[0.021357320249081,-0.043826665729284,0.019231259822845]],[[0.071066491305828,0.060937877744436,-0.078569278120995],[-0.040731403976679,-0.1055501177907,0.01696141064167],[-0.035345830023289,0.059387482702732,0.043478470295668]],[[-0.08267816901207,-0.016028665006161,-0.0097811548039317],[-0.028217844665051,-0.016608435660601,-0.091805756092072],[-0.03053180128336,0.0027402061969042,0.0049060950987041]],[[-0.0074592777527869,-0.021413862705231,-0.013836390338838],[-0.0052052028477192,-0.028326144441962,0.06478950381279],[0.061161629855633,0.033618237823248,-0.0029167775064707]],[[0.026596922427416,0.022597858682275,-0.0042769103311002],[-0.028997642919421,-0.010940825566649,-0.088848143815994],[-0.0088994046673179,-0.029373120516539,0.027204621583223]],[[-0.017206242308021,-0.032149262726307,0.06628730148077],[-0.010823709890246,0.036958821117878,0.013609633781016],[-0.025671219453216,-0.030456552281976,-0.055022750049829]],[[0.069316811859608,0.021533088758588,-0.0074752797372639],[0.015943100675941,-0.068531937897205,0.029505804181099],[0.057793732732534,0.014188333414495,-0.043445780873299]],[[-0.0093657355755568,-0.014542267657816,0.11662575602531],[0.026913780719042,-0.032302808016539,-0.087230414152145],[0.04485410451889,0.054956022650003,-0.0092181339859962]],[[-0.066549181938171,-0.001399164670147,-0.008387541398406],[0.047874879091978,-0.073881588876247,0.037910979241133],[0.023085456341505,0.030650107190013,0.067286916077137]],[[0.034035794436932,-0.025098299607635,0.034261409193277],[-0.089309513568878,0.010393789969385,0.03393866494298],[0.023658631369472,-0.050722606480122,-0.021630166098475]],[[-0.062588438391685,0.0011738133616745,-0.059326760470867],[0.053480539470911,0.041527796536684,-0.084649734199047],[0.013606215827167,-0.059357441961765,0.027677053585649]],[[0.02610819414258,-0.067372590303421,-0.022763334214687],[0.02487407065928,0.046971008181572,0.031575713306665],[-0.0088009256869555,-0.024179423227906,0.024230945855379]],[[-0.039873577654362,-0.057961627840996,0.018077746033669],[-0.026702815666795,-0.052431911230087,-0.0032527069561183],[0.05900801718235,-0.025173528119922,0.00074882950866595]],[[-0.027198363095522,0.024829659610987,-0.013599757105112],[-0.0090725012123585,-0.043906021863222,-0.02047455497086],[-0.015782289206982,0.036668062210083,-0.04638908430934]],[[0.005492074880749,0.0091311922296882,0.0091050276532769],[0.052858401089907,-0.036737497895956,-0.06630028039217],[0.038351252675056,-0.027783026918769,0.030353661626577]],[[0.024430632591248,-0.013838396407664,-0.0054788398556411],[0.037239447236061,-0.14381837844849,-0.02596434392035],[-0.061290588229895,0.005836836528033,-0.029905807226896]],[[-0.015466917306185,0.048883620649576,0.019703423604369],[0.0093470849096775,-0.06618869304657,0.026447730138898],[-0.051682703197002,0.0047663198783994,-0.042294178158045]],[[-0.036773949861526,0.076088070869446,0.030356531962752],[-0.021735768765211,0.017975743860006,-0.10143319517374],[3.4187665733043e-05,-0.055431079119444,0.023775435984135]],[[0.020411711186171,0.10088792443275,0.027741905301809],[-0.047540750354528,0.045719284564257,-0.084435805678368],[-0.00010076305625262,0.10578688979149,-0.028026739135385]],[[0.078309766948223,-0.036916546523571,-0.060937128961086],[-0.076657809317112,0.0021454149391502,0.037263255566359],[0.0086353793740273,-0.0055366242304444,-0.017577383667231]],[[0.01540008187294,0.0026281534228474,-0.026185985654593],[-0.016362486407161,0.05417089164257,0.015727883204818],[0.052872940897942,0.017917215824127,-0.029206158593297]],[[0.012830056250095,-0.07617723941803,-0.037503488361835],[0.0091976467519999,-8.6469313828275e-05,0.017172571271658],[-0.055310908704996,-0.073653116822243,0.017697365954518]],[[0.05010012164712,-0.041567448526621,-0.0309465713799],[0.049438778311014,-0.023907102644444,-0.01525410450995],[-0.014193341135979,-0.028528375551105,0.04178162291646]],[[0.043067924678326,-0.0097111407667398,0.0082278521731496],[0.049566555768251,0.033285804092884,0.052341852337122],[0.030739083886147,-0.098637729883194,-0.0091256583109498]],[[0.0309481266886,-0.045547898858786,0.023813873529434],[0.0022878423333168,-0.018669277429581,-0.0071966112591326],[-0.0082542821764946,-0.028340596705675,0.068238846957684]],[[-0.00011590597569011,0.069727629423141,-0.059364404529333],[-0.0077386759221554,0.0075898235663772,-0.028512144461274],[-0.002638652920723,0.033719200640917,-0.076063744723797]],[[0.0025968486443162,-0.033895429223776,0.0073779164813459],[0.020057402551174,-0.033693160861731,-0.031079065054655],[-0.00081435102038085,-0.036868218332529,-0.032759636640549]],[[0.035275280475616,0.0010122203966603,0.0055375350639224],[-0.0028099613264203,-0.021127505227923,0.041312277317047],[-0.028759459033608,-0.018356183543801,-0.079468488693237]],[[-0.019250495359302,-0.017003376036882,-0.051693022251129],[-0.01050273142755,0.07611283659935,-0.079990066587925],[0.03535183519125,0.042388193309307,0.016678225249052]],[[-0.011742857284844,0.02417771704495,0.020891876891255],[0.013690405525267,-0.032949142158031,-0.014310827478766],[0.03472663462162,0.052476238459349,0.074852518737316]],[[-0.0027749126311392,0.036159589886665,0.012283796444535],[-0.016121841967106,0.0303621198982,0.058048471808434],[0.00972821097821,0.022294122725725,0.047145817428827]],[[-0.041092999279499,-0.0067312172614038,-0.058354519307613],[-0.037570413202047,0.019847445189953,0.029859045520425],[0.036720011383295,0.04819693416357,0.046096596866846]],[[0.052996024489403,0.02976905927062,-0.031652968376875],[0.01470729149878,-0.0053511708974838,-0.020908650010824],[-0.0021737224888057,0.055752072483301,0.071023017168045]],[[-0.024147985503078,-0.035712581127882,-0.055665872991085],[0.035983208566904,-0.0057970164343715,-0.045737408101559],[0.042488243430853,0.031894635409117,0.012122268788517]],[[-0.015241250395775,-0.071203738451004,0.0047723264433444],[-0.047884985804558,0.029943019151688,0.079185403883457],[0.045583177357912,-0.052761279046535,0.022942114621401]],[[-0.067842438817024,-0.048353873193264,0.026021176949143],[-0.01458256226033,0.07194734364748,-0.018363043665886],[0.039885237812996,-0.0012436260003597,-0.039490964263678]],[[-0.0556905195117,-0.04317007958889,0.0072451285086572],[0.034761670976877,0.010150556452572,0.04992326721549],[-0.023635659366846,0.015527227893472,-0.036659266799688]],[[-0.048237834125757,0.00095624546520412,-0.030008312314749],[-0.037759307771921,-0.0093646375462413,-0.034340832382441],[-0.064373813569546,0.0054807639680803,0.018575126305223]],[[-0.0091238766908646,-0.019018335267901,-0.0033507263287902],[0.066819034516811,-0.067603453993797,0.082340061664581],[-0.051472924649715,-0.018600877374411,0.0079852789640427]],[[-0.0055658291094005,-0.022554026916623,0.030961889773607],[0.036352097988129,0.01805698685348,-0.043246306478977],[-0.073728993535042,0.014772855676711,-0.025551412254572]],[[0.045920550823212,0.0048461104743183,0.010882733389735],[0.045103121548891,0.054219055920839,-0.02597445435822],[0.027805633842945,0.0014177062548697,-0.047489821910858]],[[-0.00032685304176994,-0.057190649211407,0.0027721114456654],[-0.022161157801747,-0.031926479190588,-0.027323063462973],[-0.034831792116165,-0.046278808265924,-0.035918518900871]],[[-0.0070668910630047,0.016595846042037,0.028817020356655],[0.037888266146183,-0.078460194170475,0.013870011083782],[0.034037712961435,0.0032078719232231,0.027306836098433]],[[-0.016034917905927,0.067407533526421,-0.02586424537003],[-0.0046493001282215,-0.012915844097733,-0.01551026571542],[-0.026577232405543,0.00010897902393481,-0.06534256786108]],[[0.013477711938322,0.0037719439715147,0.0077729541808367],[-0.0411147326231,-0.062147572636604,-0.0038829678669572],[-0.10913101583719,-0.00010944879613817,-0.036067627370358]],[[0.028946937993169,-0.070887178182602,-0.076279193162918],[-0.061916343867779,0.034915801137686,0.031021744012833],[-0.03773470968008,-0.055645227432251,-0.0060198912397027]],[[-0.037685729563236,0.062686733901501,0.018772341310978],[0.058766264468431,-0.034586865454912,0.022445060312748],[0.013636107556522,-0.029499430209398,-0.020790301263332]],[[-0.012589211575687,-0.011289189569652,0.043934844434261],[0.10013253986835,-0.003831097157672,-0.057292148470879],[-0.12801484763622,0.013335020281374,-0.022611036896706]],[[0.053575184196234,0.033734615892172,-0.028939068317413],[-0.015046400018036,-0.015079722739756,-0.029848609119654],[-0.017562141641974,0.021373748779297,0.027122851461172]],[[-0.032481752336025,-0.016401303932071,0.016844484955072],[-0.027287712320685,0.088309161365032,0.032070025801659],[0.039634309709072,0.02931191213429,-0.011762818321586]],[[-0.047021068632603,0.0036098207347095,0.027823327109218],[0.039732210338116,0.010028251446784,0.014907159842551],[-0.04802929982543,-0.045267388224602,0.021349279209971]],[[0.015548818744719,0.099355071783066,0.045086719095707],[0.043618761003017,0.0008553322404623,0.012224514037371],[-0.087736889719963,0.048533994704485,-0.037392348051071]],[[-0.04088244959712,0.017328672111034,-0.049287080764771],[-0.032334331423044,-0.0081386975944042,0.0024838952813298],[0.0087521011009812,0.0015758865047246,-0.078839235007763]],[[-0.026387095451355,0.054393786936998,0.038759082555771],[0.034772973507643,0.018216360360384,-0.06744597107172],[0.055378083139658,0.015627784654498,-0.0045515140518546]],[[0.018122868612409,0.034500781446695,0.030287971720099],[-0.061545979231596,0.027777381241322,0.00064381584525108],[0.0058466317132115,0.0056265955790877,0.055577129125595]],[[-0.0048604030162096,-0.02861731313169,0.003616523463279],[-0.0044477633200586,0.025393765419722,0.0052760890685022],[0.024739095941186,0.046505682170391,0.020845107734203]],[[-0.055458437651396,-0.041100785136223,0.021059921011329],[0.000469069898827,0.0020100211258978,-0.081690542399883],[0.066767416894436,-0.093002669513226,0.038816384971142]],[[0.0017732311971486,-0.005684819072485,-0.081628501415253],[-0.0085467286407948,0.012356426566839,-0.07185060530901],[0.054797355085611,-0.016755077987909,0.014778927899897]],[[0.014384362846613,-0.027629567310214,-0.0052523338235915],[0.055155601352453,0.023534424602985,0.0011629436630756],[0.042275995016098,0.025581194087863,0.027946878224611]],[[0.0093621490523219,-0.034107860177755,0.033483196049929],[0.018395794555545,-0.041218113154173,-0.035365823656321],[-0.028254393488169,-0.020861471071839,0.03161520883441]],[[-0.018377341330051,-0.0046178842894733,0.05304541811347],[-0.076715551316738,0.011803093366325,-0.033746175467968],[-0.0044928407296538,0.047843139618635,-0.019531533122063]],[[-0.0076705501414835,0.049892473965883,0.051736529916525],[0.023381091654301,-0.020800458267331,0.044799912720919],[-0.068475693464279,-0.038413528352976,0.030286647379398]],[[0.0087304059416056,-0.047998942434788,0.051088098436594],[-0.07264818251133,-0.047575302422047,-0.020947244018316],[0.079787291586399,-0.076618187129498,0.0053006731905043]],[[0.027113668620586,0.038303252309561,-0.071639768779278],[0.010264274664223,-0.058432646095753,0.024657603353262],[-0.01073885243386,-0.041072823107243,0.010269809514284]],[[-0.024810388684273,-0.0047108205035329,0.036597911268473],[-0.070378951728344,0.030062086880207,-0.0089148804545403],[0.036496698856354,0.0083727557212114,-0.033003933727741]],[[-0.031231690198183,-0.026475679129362,-0.032441504299641],[-0.0002410454035271,-0.018138825893402,-0.061873696744442],[-0.047260127961636,-0.02740285359323,-0.0098353819921613]],[[0.010188933461905,-0.0024627002421767,0.044910728931427],[-0.012643716298044,0.036167621612549,0.10028544068336],[-0.013888499699533,-0.0053780605085194,0.080444067716599]],[[0.022203268483281,-0.025483781471848,0.0093720396980643],[-0.042330488562584,0.032120261341333,0.0089902197942138],[-0.068616777658463,0.047683898359537,-0.0049930335953832]],[[-0.045786798000336,0.028624188154936,-0.009629993699491],[-0.033621169626713,-0.0015686125261709,0.0042097275145352],[0.044269561767578,0.048831969499588,-0.0070548136718571]],[[0.011181068606675,-0.033412855118513,0.023719992488623],[0.030986895784736,-0.0036115443799645,-0.072532072663307],[-0.015987664461136,-0.017201835289598,-0.075049996376038]],[[-0.066531822085381,-0.016870303079486,-0.018065745010972],[0.04245588555932,-0.074032559990883,0.073021650314331],[-0.005500353872776,0.028377691283822,0.014759081415832]],[[0.075279347598553,0.0028004026971757,-0.018511680886149],[0.019694922491908,0.036965098232031,-0.034955576062202],[-0.0067470613867044,-0.020953701809049,0.021955218166113]],[[0.021068055182695,-0.090752072632313,-0.038079131394625],[-0.018552655354142,-0.0072894496843219,-0.0071710185147822],[0.019157413393259,-0.016645170748234,0.042805686593056]],[[-0.010456804186106,-0.022921867668629,0.078784182667732],[0.018163003027439,0.083786137402058,-0.045520562678576],[0.079581916332245,-0.085883051156998,0.010677274316549]],[[0.035660240799189,0.067267872393131,0.020137809216976],[0.014043165370822,-0.010145008563995,0.012731324881315],[0.0083693973720074,0.023720525205135,-0.0088642770424485]],[[0.0050398353487253,0.0037947227247059,0.034795485436916],[0.024286041036248,-0.043753352016211,-0.015765901654959],[0.0063949497416615,0.082570098340511,0.0062260357663035]],[[-0.018144156783819,-0.037889305502176,-0.017124151811004],[0.020312942564487,-0.041362870484591,0.0035839988850057],[-0.06372969597578,-0.038809604942799,0.036130707710981]],[[0.025401581078768,-0.026936385780573,-0.0012493681861088],[0.029902547597885,-0.0048482259735465,-0.077818274497986],[0.013359311036766,-0.031395148485899,0.0707793161273]],[[0.042396456003189,0.05070998519659,-0.002528601558879],[-0.042652625590563,0.05914893001318,-0.037173178046942],[-0.00033289461862296,-0.061483941972256,-0.015406265854836]],[[-0.0088182101026177,0.055942445993423,-0.046740550547838],[-0.059939425438643,-0.062020007520914,-0.033893194049597],[-0.0020875826012343,-0.012474033050239,-0.063922896981239]],[[0.047042511403561,-0.018160136416554,-0.005350605584681],[-0.027936173602939,-0.038254201412201,-0.0063389334827662],[-0.074007757008076,0.024375833570957,-0.019411697983742]],[[-0.040043909102678,0.024469146504998,-0.011016303673387],[-0.055296145379543,-0.031783521175385,0.013050408102572],[-0.0048648095689714,0.03798395767808,-0.0055803093127906]],[[-0.10588488727808,0.054717138409615,0.062689073383808],[-0.039619542658329,0.0181251950562,-0.005089748185128],[0.034050855785608,0.017372258007526,-0.041542019695044]],[[-0.045846994966269,-0.05378582701087,0.01597373560071],[-0.027837516739964,0.02780338563025,-0.080300860106945],[-0.049384817481041,0.018033891916275,-0.052304401993752]]],[[[0.04951323568821,-0.0077508874237537,0.019593022763729],[0.039099238812923,0.0090532982721925,0.039837568998337],[0.0041611501947045,0.028619077056646,-0.073254100978374]],[[0.011618753895164,0.015211356803775,0.021747522056103],[-0.058263417333364,-0.0083809541538358,-0.023253435268998],[-0.023954669013619,-0.035855147987604,0.019297828897834]],[[0.00043345629819669,0.023333201184869,0.017089674249291],[0.064719170331955,-0.031479500234127,-0.0016179849626496],[-0.013996648602188,-0.010287386365235,0.023280100896955]],[[-0.02482427470386,-0.021991806104779,0.023128714412451],[0.042945649474859,0.01255305763334,0.042030911892653],[-0.007778026163578,-0.06428986042738,-0.042225927114487]],[[-0.026746597141027,-0.027261212468147,-0.018138123676181],[0.054770160466433,0.040611989796162,-0.051076199859381],[-0.041092723608017,-0.093742810189724,0.041768003255129]],[[0.0062625403515995,0.075338736176491,0.0094577483832836],[-0.0019091912545264,-0.042834259569645,-0.022704686969519],[-0.054731041193008,0.015453251078725,0.069069802761078]],[[0.03971304371953,0.049824237823486,-0.094844721257687],[-0.034533314406872,-0.003827617270872,-0.037258941680193],[0.03209675103426,-0.014048578217626,0.012340575456619]],[[0.037573594599962,-0.02113845013082,0.0081004332751036],[0.0088699860498309,-0.025775598362088,-0.013755003921688],[-0.040218587964773,0.086831882596016,0.048528619110584]],[[0.0044912174344063,-0.04853406175971,-0.062644474208355],[0.010945243760943,0.032347418367863,0.018418988212943],[0.024271050468087,0.056976597756147,0.0018060459988192]],[[0.096776656806469,-0.055164687335491,0.061757303774357],[0.02198414504528,0.033965576440096,-0.044732809066772],[-0.023406147956848,0.066036626696587,0.055136207491159]],[[0.021993147209287,-0.00035069553996436,-0.013620334677398],[0.0039738034829497,0.052358888089657,0.022753320634365],[-0.0029707397334278,0.029166497290134,-0.019721254706383]],[[-0.010341570712626,0.00685292808339,0.025130925700068],[-0.020797992125154,0.059895887970924,0.06763718277216],[-0.034063447266817,-0.011063044890761,0.042645189911127]],[[-0.0046960548497736,-0.095470741391182,0.075652860105038],[-0.05355079472065,-0.019886782392859,0.018018528819084],[0.048130556941032,0.041093938052654,0.047867212444544]],[[-0.0076212789863348,0.033149100840092,0.00063658342696726],[0.029707498848438,-0.046839263290167,0.015678096562624],[0.0016228412277997,-0.052085980772972,0.070072494447231]],[[0.0015241681830958,0.0053247255273163,0.0012075004633516],[0.0078719276934862,0.0023393738083541,0.045664988458157],[0.070437334477901,0.1058177947998,0.0074525601230562]],[[0.0046209571883082,0.018043093383312,0.015546989627182],[-0.041639897972345,-0.048984661698341,0.012434530071914],[0.02079801261425,-0.0016314889071509,0.014670143835247]],[[-0.03000214882195,-0.028937535360456,-0.067611761391163],[-0.0008016821811907,0.01171287894249,-0.013673612847924],[0.011655826121569,0.067147172987461,0.082987055182457]],[[-0.0057936180382967,4.1907376726158e-05,-0.038613669574261],[-0.015328174456954,-0.032366905361414,-0.017494788393378],[0.023746397346258,0.021312169730663,0.029427977278829]],[[0.00622663134709,-0.032889358699322,-0.01381763163954],[0.087527215480804,0.032929122447968,0.050357904285192],[-0.098394483327866,0.059687484055758,0.026525683701038]],[[0.01438922714442,-0.03022894077003,-0.016085330396891],[-0.024144057184458,0.07649452984333,-0.019945727661252],[0.0069845230318606,0.015683941543102,0.080632500350475]],[[0.10818859189749,-0.01104521099478,0.020555023103952],[-0.016549773514271,-0.031273528933525,0.0033224348444492],[-0.0019333572126925,-0.036394730210304,0.032999828457832]],[[0.007338943425566,0.044481057673693,0.028152041137218],[0.097530253231525,0.012899931520224,0.012402458116412],[0.018626809120178,0.047866389155388,-0.035320445895195]],[[0.074379988014698,-0.047747492790222,0.02232750877738],[-0.1044092848897,0.01856922544539,0.065108865499496],[0.015538170933723,-0.089892521500587,0.029617324471474]],[[-0.0054397657513618,-0.030644977465272,-0.0010775944683701],[0.070790164172649,-0.029722118750215,0.013297205790877],[-0.030317077413201,-0.10561366379261,0.040075231343508]],[[0.0017915372736752,-0.048672240227461,0.055812984704971],[0.040761947631836,-0.080653935670853,0.001489614835009],[-0.0041866237297654,0.069341316819191,0.030478563159704]],[[0.0026653760578483,0.010894525796175,-0.029946979135275],[0.001338915200904,-0.023156533017755,-0.018459808081388],[-0.0026976088993251,0.0060861529782414,-0.027319300919771]],[[0.014845360070467,0.044823821634054,-0.028884509578347],[0.017003459855914,0.0019023306667805,-0.011221622116864],[0.012470122426748,-0.011243951506913,-0.0043508624657989]],[[-0.038634367287159,0.015513668768108,0.0017107503954321],[0.02219021692872,-0.054717510938644,0.040460966527462],[0.046976268291473,0.025345548987389,-0.067095465958118]],[[-0.040651172399521,0.02641568146646,-0.034117124974728],[0.043898317962885,-0.039437402039766,0.013206302188337],[-0.0074033653363585,-0.001884397584945,-0.075376823544502]],[[-0.0086195087060332,-0.018810946494341,-0.085921503603458],[-0.0033361604437232,0.067041039466858,0.0085399700328708],[0.056730702519417,0.090005926787853,0.040829066187143]],[[0.0013894329313189,0.0074404259212315,-0.0031979181803763],[0.045199260115623,0.046674396842718,0.018428478389978],[0.026741839945316,-0.033399350941181,-0.072714559733868]],[[0.022574516013265,-0.019272422417998,-0.012909171171486],[-0.048745714128017,0.01078986749053,0.036128968000412],[-0.059957962483168,-0.037694580852985,0.087874241173267]],[[-0.066612787544727,0.00067883433075622,0.12378097325563],[0.063819959759712,0.040413875132799,-0.047100301831961],[-0.010110381990671,0.02226173505187,0.012466954067349]],[[-0.033113062381744,0.051814276725054,0.0043810200877488],[0.022274957969785,0.049263965338469,-0.005678434856236],[-0.0048393462784588,-0.0006693554460071,-0.032309971749783]],[[0.043802063912153,-0.093702860176563,0.0064792674966156],[-0.05239662528038,0.027572020888329,-0.046841606497765],[0.060507070273161,-0.065866842865944,-0.01419270131737]],[[-0.037224866449833,0.021018197759986,0.061708625406027],[-0.044011823832989,0.028882451355457,-0.0027535781264305],[0.0039940313436091,0.0069541437551379,0.061680126935244]],[[-0.0052117123268545,0.023443071171641,-0.1071061193943],[-0.06462537497282,0.062867939472198,0.0016923557268456],[-0.012259960174561,-0.037338867783546,-0.047941770404577]],[[-0.032761596143246,-0.0057937707751989,-0.051469136029482],[0.0012412791838869,-0.088997088372707,-0.035719525068998],[-0.026197751984,0.03753187507391,0.037864152342081]],[[-0.032769065350294,-0.0088599594309926,0.066376380622387],[0.011570254340768,0.0092707294970751,0.075997859239578],[0.027129145339131,-0.068328894674778,-0.029748678207397]],[[-0.059682723134756,-0.063315235078335,-0.00018913707754109],[0.064245983958244,0.07085619866848,-0.089151531457901],[0.021749082952738,0.018138451501727,0.04530356824398]],[[0.022675717249513,-0.12116784602404,-0.017764369025826],[0.13188301026821,-0.0012623425573111,-0.044193182140589],[-0.025024337694049,-0.063216470181942,0.040325541049242]],[[-0.022905573248863,-0.055458884686232,0.00069288472877815],[0.0025509216357023,0.005847379565239,0.0091677391901612],[-0.031684879213572,0.0033844991121441,-0.087218843400478]],[[-0.029555583372712,-0.002556006424129,-0.01912665553391],[0.011770894750953,0.11112577468157,-0.075959846377373],[-0.03662795946002,-0.067387312650681,0.02253182977438]],[[-0.014317101798952,0.030706284567714,0.031947541981936],[0.042723994702101,0.0086936643347144,-0.0053350371308625],[0.0025398924481124,0.033147536218166,-0.0045298226177692]],[[-0.053948529064655,0.041002459824085,-0.048417184501886],[-0.020115753635764,0.050427615642548,0.010453086346388],[-0.057605378329754,-0.062305945903063,-0.017812879756093]],[[0.039916589856148,0.024999063462019,0.010946495458484],[-3.7926882214379e-05,0.063573196530342,-0.014832748100162],[-0.058123156428337,0.054115202277899,-0.041010838001966]],[[-0.040737874805927,0.054124571382999,0.012634061276913],[0.017385259270668,0.046273928135633,0.034686215221882],[-0.027650801464915,0.028868786990643,-0.035872686654329]],[[-0.014534729532897,0.056545756757259,0.0080654146149755],[0.052319888025522,-0.025513963773847,0.00032612023642287],[-0.0028111801948398,0.042980507016182,-0.010116143152118]],[[-0.01251230482012,-0.0058103548362851,0.02472896873951],[0.085154555737972,-0.016819206997752,0.010291424579918],[-0.020251639187336,0.01731588318944,0.012912327423692]],[[-0.00036852803896181,-0.085079707205296,0.0071313064545393],[-0.044205781072378,0.064869150519371,-0.0049361158162355],[0.070994086563587,-0.0043101985938847,0.03540850430727]],[[0.02346383780241,-0.074495524168015,0.040139432996511],[0.054801341146231,-0.031833332031965,0.068611994385719],[-0.0061021633446217,-0.026475349441171,0.090059205889702]],[[-0.063334584236145,-0.032704714685678,0.031927458941936],[0.028976831585169,0.024027485400438,0.010942676104605],[-0.019318776205182,-0.0011254758574069,0.09179425984621]],[[-0.017992684617639,0.047706127166748,0.004500696901232],[0.043779615312815,0.054025657474995,0.015060410834849],[-0.063133537769318,-0.04615955799818,0.0010692602954805]],[[-0.029257830232382,0.028474595397711,0.025246638804674],[-0.0096788750961423,-0.0013831106480211,0.061322409659624],[0.021625522524118,0.01624896004796,-0.01805268228054]],[[0.0092890514060855,0.068222172558308,-0.00050136056961492],[0.037447396665812,-0.041212916374207,-0.029635014012456],[0.062283597886562,0.012873478233814,-0.072294652462006]],[[-0.019017970189452,-0.029236972332001,-0.048238564282656],[0.02142246440053,0.076518766582012,-0.026869745925069],[0.098622187972069,0.032566957175732,-0.039741601794958]],[[-0.062250096350908,0.0094119431450963,-0.0043900529854],[0.025160674005747,-0.050240594893694,0.031444419175386],[-0.024370927363634,-0.029291022568941,0.028733698651195]],[[-0.01339615508914,0.050754234194756,0.0026826173998415],[-0.012365468777716,0.038364998996258,-0.088228292763233],[-0.043575067073107,-0.097075529396534,-0.0077465232461691]],[[0.027575805783272,0.023739896714687,0.032071128487587],[0.014196856878698,0.024919619783759,0.048927828669548],[-0.044734623283148,-0.040903519839048,-0.047636855393648]],[[0.050724547356367,0.018376084044576,0.05530671030283],[-0.026174429804087,0.0029336053412408,-0.0020403086673468],[0.028211284428835,0.034807972609997,0.011985273100436]],[[-0.091911271214485,-0.013434255495667,0.011794243007898],[-0.03464762121439,0.079291380941868,-0.041846666485071],[-0.01764384098351,-0.042091533541679,0.064726464450359]],[[-0.024845477193594,0.12155282497406,-0.034713450819254],[0.014326672069728,0.0093259438872337,0.0074821305461228],[0.018853904679418,0.038426969200373,0.017622157931328]],[[0.0081134811043739,-0.022728556767106,0.036892380565405],[-0.040288235992193,-0.044349599629641,-0.00031345704337582],[0.049411959946156,-0.010223756544292,0.029522115364671]],[[0.0019796506967396,-0.040477775037289,0.048849631100893],[0.02064629457891,-0.028254156932235,-0.010293070226908],[-0.003300502197817,-0.041534006595612,-0.00056558393407613]],[[0.029645862057805,0.031982716172934,-0.041100218892097],[0.01004583388567,0.12356846779585,-0.048337176442146],[0.021669376641512,-0.043654698878527,0.019277973100543]],[[0.031797137111425,-0.0099500603973866,0.026953252032399],[0.038386791944504,-0.049102108925581,-0.037556041032076],[0.012208783067763,-0.029915194958448,-0.0035500600934029]],[[0.0045191063545644,0.067110382020473,-0.03570806607604],[0.054368264973164,0.0022342279553413,-0.061405371874571],[0.025080252438784,-0.044398628175259,-0.04024500399828]],[[0.0087941084057093,-0.041131507605314,-0.0079135894775391],[-0.052889484912157,0.030902996659279,0.010656374506652],[-0.022650683298707,0.015977632254362,-0.032329082489014]],[[-0.0010840807808563,-0.023756550624967,0.066054858267307],[0.015578963793814,-0.037706557661295,-0.022386493161321],[0.0029515372589231,0.089119806885719,0.01852054707706]],[[0.042948123067617,0.021806705743074,0.059302177280188],[0.048730503767729,-0.082432083785534,0.050659824162722],[0.016160262748599,-0.00043341159471311,0.0042037814855576]],[[-0.015251064673066,0.017602847889066,0.073633067309856],[0.049287736415863,-0.051437370479107,-0.01039906963706],[0.021991331130266,0.0090238777920604,0.10059487819672]],[[-0.00044230264029466,-0.06794236600399,0.0061924667097628],[-0.015847323462367,0.0618040189147,-0.020407192409039],[0.030556596815586,-0.036788299679756,-0.066211618483067]],[[-0.021679615601897,-0.028042752295732,0.0231499876827],[-0.018365843221545,0.017211435362697,-0.042475312948227],[0.028552532196045,0.0034151358995587,0.031642481684685]],[[-0.11536165326834,0.089228421449661,0.0088981604203582],[0.045196264982224,-0.059512443840504,0.032847806811333],[0.0384681224823,0.032489109784365,-0.049124877899885]],[[0.041291546076536,0.096735641360283,0.0011841285740957],[0.017432237043977,-0.055818017572165,-0.05948855355382],[0.028579795733094,0.049780491739511,-0.096024855971336]],[[0.0013795708073303,0.058222480118275,-0.048437613993883],[0.02753602527082,-0.050827898085117,0.048694219440222],[-0.0032602092251182,-0.030403459444642,0.019166853278875]],[[0.028864368796349,0.054025262594223,0.0011991637293249],[0.011181886307895,-0.016904398798943,0.066126123070717],[-0.0067156255245209,1.7154565284727e-05,-0.0068227956071496]],[[0.043956778943539,0.023242814466357,0.056065462529659],[-0.030542591586709,-0.01111928652972,0.022226205095649],[0.078497275710106,-0.070200212299824,0.033969666808844]],[[0.00021773131447844,-0.070547193288803,0.024593053385615],[-0.035630725324154,0.07184287160635,-0.064608216285706],[-0.040624119341373,-0.013523384928703,0.037486594170332]],[[-0.042200081050396,0.095669716596603,0.00099539663642645],[0.059643756598234,-0.076272800564766,-0.058063618838787],[0.071582682430744,0.00068337889388204,0.064290933310986]],[[-0.0094478856772184,-0.01442274171859,0.00098199408967048],[-0.061642214655876,0.033758752048016,-0.028874875977635],[0.065481223165989,-0.066807381808758,0.011407790705562]],[[-0.033415678888559,-0.050663277506828,0.013837480917573],[-0.02658461779356,-0.010296455584466,-0.023146571591496],[0.11066274344921,-0.0017140309792012,0.011734249070287]],[[-0.048374474048615,-0.07243973761797,0.0018360908143222],[-0.017276119440794,-0.022004205733538,-0.022802758961916],[0.01161406096071,-0.034819148480892,0.016385877504945]],[[-0.02202957868576,-0.041721157729626,0.048709023743868],[0.060665745288134,-0.022217519581318,-0.068644292652607],[0.023183226585388,0.060375109314919,-0.033550769090652]],[[0.0089454054832458,0.064201965928078,-0.059248998761177],[0.015652228146791,0.037295922636986,0.10556393116713],[-0.020624358206987,0.023798828944564,-0.022751240059733]],[[-0.080797784030437,-0.0034189019352198,0.046443395316601],[-0.0056348787620664,0.032335966825485,-0.075346231460571],[0.025883117690682,-0.011001252569258,-0.027375834062696]],[[0.047804746776819,0.0010631394106895,-0.024229740723968],[-0.0016414823476225,0.0014011781895533,-0.037867601960897],[0.037714891135693,0.011410020291805,0.0032075780909508]],[[-0.01870078034699,-0.026446023955941,0.04098866507411],[-0.044373225420713,0.024399733170867,0.020045671612024],[0.049242150038481,-0.037614554166794,0.021386615931988]],[[-0.0064397645182908,0.0037122203502804,-0.052490878850222],[-0.087795913219452,0.023657072335482,-0.017179254442453],[-0.003251489950344,-0.039840582758188,-0.016451627016068]],[[-0.073688246309757,-0.010780050419271,-0.001997573999688],[0.020767385140061,-0.048748660832644,0.042257487773895],[-0.029940323904157,-0.01236123777926,-0.010572410188615]],[[-0.0012424681335688,-0.056359875947237,0.04559675976634],[0.010020450688899,0.016772840172052,-0.034384578466415],[0.012557005509734,0.0071201855316758,-0.076832324266434]],[[-0.015675684437156,-0.0038563413545489,-0.11822994798422],[0.071571618318558,0.053397815674543,-0.004490771330893],[-0.0034222798421979,-0.011589541099966,-0.075444363057613]],[[-0.015254027210176,-0.019810173660517,0.035633537918329],[0.053943745791912,-0.016892898827791,-0.10263600200415],[0.004818195477128,0.021009458228946,0.0085103120654821]],[[-0.030493220314384,-0.011650513857603,0.016249883919954],[-0.0085156736895442,0.037527408450842,-0.0026724427007139],[0.022837046533823,0.022904789075255,0.022282319143414]],[[-0.020908994600177,-0.095772311091423,-0.010731497779489],[0.06228357180953,-0.013616087846458,0.0080902241170406],[0.04026023671031,0.024460526183248,-0.012122156098485]],[[-0.024046916514635,-0.054071333259344,0.032125554978848],[-0.0060718744061887,0.05080184713006,-0.020442986860871],[-0.070230238139629,0.056554730981588,0.006357513833791]],[[0.074338488280773,0.068627096712589,0.019852370023727],[-0.033491119742393,-0.07890947163105,0.00034560670610517],[0.01206841878593,0.024744890630245,-0.04038343206048]],[[0.038022797554731,-0.0012779739918187,0.072577834129333],[0.0017368290573359,-0.011346715502441,-0.087313450872898],[0.026368450373411,0.079100199043751,0.04192328825593]],[[0.067623451352119,-0.054232750087976,0.022484164685011],[-0.023464480414987,0.003728112205863,-0.0070840176194906],[0.066956616938114,-0.033136706799269,-0.019750421866775]],[[0.056140411645174,0.025209264829755,-0.0018255261238664],[0.0058893230743706,-0.0015875296667218,0.023071115836501],[0.0064482260495424,0.031643409281969,-0.063678301870823]],[[-0.020039821043611,0.041655786335468,-0.049840867519379],[-0.031341411173344,-0.09691908955574,0.042455472052097],[0.0055196760222316,0.054378844797611,0.012069682590663]],[[-0.053728882223368,0.017490167170763,-0.034550823271275],[0.098367840051651,0.068133160471916,-0.031679254025221],[0.037956070154905,0.055974595248699,-0.056751530617476]],[[-0.088782504200935,0.022050661966205,0.017792334780097],[-0.020850891247392,0.013998922891915,0.11192810535431],[0.018037177622318,-0.0061012115329504,0.053107377141714]],[[0.026131611317396,-0.0096804220229387,-0.0078134462237358],[-0.00096263206796721,-0.045267283916473,-0.019193032756448],[-0.025999123230577,-0.049958795309067,-0.057079378515482]],[[0.046536460518837,-0.027906117960811,-0.022317228838801],[-0.025335863232613,0.047326870262623,0.066789582371712],[-0.019117031246424,-0.11142641305923,-0.023829424753785]],[[-0.055420979857445,0.035129994153976,0.056720472872257],[0.021736668422818,-0.014154964126647,0.070006646215916],[0.051431611180305,0.019533252343535,0.021675126627088]],[[0.049241483211517,0.0051509030163288,0.039443749934435],[-0.038470312952995,-0.028186952695251,-0.00034455183777027],[0.0012805213918909,-0.016703125089407,-0.032529644668102]],[[0.0055460790172219,-0.026606682687998,0.014440715312958],[-0.0055798920802772,-0.019598631188273,0.012273796834052],[-0.024307742714882,0.047222021967173,0.067285612225533]],[[-0.029828177765012,-0.048309803009033,-0.072886072099209],[0.036369323730469,-0.021788062527776,0.056291684508324],[-0.0026751216500998,-0.046515043824911,-0.012506385333836]],[[-0.094130970537663,-0.023720094934106,0.012423722073436],[-0.025859586894512,-0.067784860730171,-0.067161194980145],[0.06266462802887,0.013778489083052,-0.0084879379719496]],[[-0.035400204360485,-0.00026137760141864,0.11259318888187],[-0.0065051331184804,0.00044497588532977,0.060818959027529],[-0.0060812598094344,0.0072777466848493,0.052507173269987]],[[0.047932472079992,0.0056213685311377,0.014381131157279],[-0.027562474831939,-0.003213758347556,0.03405224904418],[0.048074379563332,-0.0030426648445427,-0.022355617955327]],[[0.048718106001616,0.11279164254665,0.040154464542866],[0.0081642232835293,-0.038526371121407,-0.03082081489265],[0.038707163184881,-0.026459349319339,-0.018774742260575]],[[-0.010874616913497,-0.01107679028064,-0.028847875073552],[-0.011881901882589,-0.0062678907997906,-0.020424475893378],[-0.037171620875597,-0.028269706293941,-0.0040217088535428]],[[0.052500165998936,0.0061068795621395,0.054670143872499],[-0.066699542105198,0.035613510757685,-0.052609760314226],[0.0035425659734756,0.018738409504294,-0.0055469325743616]],[[-0.0010107920970768,-0.049578469246626,0.011818335391581],[-0.038897786289454,-0.020818512886763,0.11325731128454],[0.03614903986454,-0.051886264234781,-0.042229190468788]],[[0.014166961424053,-0.016858076676726,-0.059883624315262],[0.022631766274571,0.051457487046719,0.010150503367186],[-0.0054962299764156,-0.041650034487247,0.012664188630879]],[[-0.021843550726771,-0.040521930903196,-0.043274834752083],[0.014727779664099,-0.017268868163228,-0.033759623765945],[0.021384064108133,0.047819331288338,0.0011260143946856]],[[-0.017639750614762,0.0060928473249078,-0.0081543773412704],[0.045862626284361,0.018554145470262,0.04400185123086],[-0.010952725075185,-0.0035378360189497,-0.055771321058273]],[[-0.10831847786903,-0.0059168543666601,0.054040394723415],[0.0034105982631445,0.041778363287449,-0.0097097204998136],[-0.059115331619978,0.0045215655118227,0.0035917244385928]],[[-0.032458916306496,-0.015189151279628,0.036394774913788],[-0.034937996417284,-0.027989890426397,0.011171398684382],[-0.044696468859911,0.012653863988817,-0.075567618012428]],[[-0.0047626066952944,0.019354837015271,0.019979247823358],[-0.046373970806599,0.02905142866075,0.023298379033804],[0.014212836511433,-0.0093191880732775,0.055789098143578]],[[-0.0005920595722273,-0.073863252997398,-0.030742041766644],[0.090386673808098,-0.023760765790939,0.031270183622837],[0.00033014989458025,-0.0036860704421997,0.029966419562697]],[[0.0010974279139191,0.018178667873144,-0.029929416254163],[-0.063124902546406,0.049292635172606,-0.053818318992853],[-0.011303162202239,-0.065087050199509,0.027902005240321]],[[0.059193033725023,0.032597281038761,0.014214691706002],[-0.027989432215691,0.07006610929966,-0.070749834179878],[0.0015119750751182,-0.020852733403444,-0.0038607409223914]],[[-0.016610071063042,-0.040702842175961,0.019823322072625],[0.046382434666157,0.009231629781425,0.015864733606577],[0.10051576048136,-0.087440505623817,-0.031105544418097]],[[0.016651500016451,0.021392978727818,-0.002857064595446],[-0.061955630779266,0.057381652295589,-0.012932745739818],[0.0086131449788809,-0.029361803084612,0.023783331736922]],[[0.022137379273772,-0.0050039445050061,0.0025638877414167],[0.018915252760053,-0.00039210234535858,-0.03526333719492],[0.02949776686728,-0.083159402012825,0.018879132345319]]],[[[-0.13505145907402,-0.061853498220444,-0.021995348855853],[-0.071943044662476,0.31331714987755,-0.0035776838194579],[-0.055995088070631,0.23126468062401,-0.12967577576637]],[[0.096033319830894,0.18245609104633,-0.06981710344553],[0.1180262491107,-0.15154847502708,-0.25445640087128],[0.066947035491467,-0.17929843068123,-0.021522620692849]],[[-0.10917739570141,-0.10422506183386,0.10427862405777],[-0.066748730838299,-0.040722128003836,0.25279241800308],[-0.022878935560584,-0.088061101734638,0.10504914820194]],[[0.0043807332403958,0.065863989293575,0.0069004273973405],[0.073191210627556,0.069487571716309,-0.10009033232927],[-0.018862029537559,0.032578468322754,-0.074130706489086]],[[-0.018379474058747,0.14972631633282,0.13971973955631],[0.049344375729561,-0.020214537158608,-0.092829272150993],[-0.035493537783623,-0.11651831120253,-0.010368121787906]],[[0.082956217229366,0.072080805897713,-0.016989670693874],[0.041278604418039,0.082442335784435,0.16115665435791],[0.025001397356391,0.0088876206427813,-0.095755472779274]],[[0.00083120685303584,-0.10470939427614,0.15494342148304],[0.0059559033252299,-0.075073421001434,0.10677194595337],[-0.12575142085552,-0.11235026270151,0.028891514986753]],[[0.019647058099508,0.024513894692063,0.033930011093616],[-0.0054617268033326,0.0089967465028167,0.089935339987278],[0.018044387921691,-0.021622329950333,0.012322279624641]],[[0.083057835698128,0.041523534804583,-0.077371396124363],[-0.0094286883249879,-0.063206516206264,0.070843264460564],[-0.020806541666389,0.038197714835405,-0.042667374014854]],[[0.22807383537292,0.025554144755006,0.062767133116722],[0.21173022687435,-0.15340223908424,0.17185352742672],[0.16004617512226,-0.021844049915671,0.20386399328709]],[[-0.19564516842365,0.11972714960575,0.090737000107765],[0.0053616594523191,0.1698182374239,0.025789257138968],[-0.10665947198868,0.045845061540604,-0.083054043352604]],[[0.0067377118393779,-0.08787440508604,0.013537926599383],[-0.04905366525054,-0.016267120838165,0.07200562953949],[-0.06536203622818,-0.014255006797612,-0.039354618638754]],[[-0.080596134066582,-0.010000227950513,0.0033195964060724],[0.070814810693264,0.17365293204784,-0.021470312029123],[0.066810674965382,0.051156211644411,-0.10174611210823]],[[-0.00084190961206332,0.040826693177223,-0.047432769089937],[-0.067864000797272,0.15480862557888,-0.080845855176449],[-0.11377460509539,0.25589773058891,-0.039490092545748]],[[-0.044697441160679,0.24670659005642,0.12576699256897],[0.03012297488749,0.35000464320183,0.14729210734367],[0.029709115624428,0.059893760830164,0.16144314408302]],[[0.019330779090524,-0.033733520656824,0.026192696765065],[0.022442290559411,0.13293555378914,-0.023072130978107],[0.013843216001987,-0.055391762405634,-0.11518148332834]],[[-0.053735114634037,-0.10565342009068,-0.18950209021568],[-0.032948277890682,-0.052284140139818,-0.05938533693552],[0.046716533601284,0.081546448171139,0.19939942657948]],[[-0.0081995241343975,0.069762744009495,0.18317650258541],[-0.13930328190327,0.14820818603039,-0.06705965846777],[-0.053101718425751,0.048491708934307,-0.16128243505955]],[[-0.03786351159215,-0.0050077382475138,-0.21875873208046],[0.03871338814497,-0.1843719035387,0.033857308328152],[0.01379132270813,-0.056579817086458,0.18076723814011]],[[-0.11513539403677,-0.048546385020018,0.014155887998641],[-0.07550061494112,0.055821537971497,0.091850839555264],[-0.082523003220558,0.17983603477478,0.1720040589571]],[[-0.059352487325668,0.026224041357636,-0.050265207886696],[0.11381823569536,-0.14388400316238,-0.050320222973824],[0.080034777522087,-0.16560083627701,-0.19818158447742]],[[0.14748792350292,0.1595299243927,0.096832424402237],[0.09156745672226,-0.055105391889811,-0.051312565803528],[0.0066640661098063,-0.069714762270451,-0.11191108077765]],[[-0.187245875597,0.15037497878075,-0.10220291465521],[-0.076000578701496,0.014069929718971,-0.14594446122646],[0.096522405743599,0.1593509465456,0.071123793721199]],[[-0.078090190887451,-0.052892606705427,-0.059250265359879],[-0.044642604887486,0.13270734250546,0.14712609350681],[-0.0051312418654561,-0.037966754287481,-0.013451227918267]],[[0.063300140202045,-0.073736399412155,0.020368482917547],[-0.036812722682953,0.099272258579731,0.051674261689186],[-0.003017132403329,-0.0025612094905227,-0.057590488344431]],[[-0.1673593968153,0.035722553730011,-0.0086647355929017],[-0.16562017798424,-0.13822251558304,-0.12441232055426],[0.051063358783722,0.018200475722551,0.005107703153044]],[[-0.18554873764515,-0.037758808583021,0.15279942750931],[0.13886973261833,0.066452704370022,-0.009069511666894],[0.090635351836681,-0.10401287674904,-0.082100130617619]],[[-0.057935394346714,0.034304205328226,0.0035905095282942],[-0.052716430276632,-0.13583055138588,0.038119416683912],[0.047529876232147,-0.020653354004025,0.13979786634445]],[[0.086324691772461,0.038572456687689,0.12062281370163],[0.075482852756977,0.038954958319664,-0.034458588808775],[-0.047854192554951,-0.056342136114836,-0.16645683348179]],[[-0.061951361596584,-0.13563108444214,0.042083222419024],[-0.10848286002874,-0.061149902641773,0.14818607270718],[-0.11524884402752,0.07175824791193,0.31238141655922]],[[-0.028658874332905,-0.10763349384069,-0.13879542052746],[0.040058325976133,-0.074370138347149,-0.02152606472373],[0.086004659533501,-0.051295921206474,0.12347476184368]],[[-0.09358412027359,-0.1327935308218,0.090128600597382],[-0.12990221381187,0.083144411444664,-0.13810709118843],[0.1755013614893,-0.042495187371969,0.084654718637466]],[[-0.030473792925477,0.01685880497098,0.0012132162228227],[0.087745577096939,0.031156474724412,-0.037583991885185],[0.026070455089211,-0.068549819290638,-0.029842363670468]],[[-0.021214844658971,-0.056426320225,-0.035074103623629],[-0.0034505375660956,-0.05174981802702,-0.023491038009524],[0.088418491184711,0.07798333466053,0.10989226400852]],[[-0.11656646430492,-0.085986696183681,-0.04636437818408],[-0.068460658192635,0.038596153259277,0.068442784249783],[-0.1011114269495,-0.073097817599773,0.29102182388306]],[[-0.021636605262756,-0.014146357774734,-0.11629486083984],[-0.083538480103016,0.0029566395096481,-0.15396818518639],[-0.12289497256279,-0.085852205753326,-0.16791652143002]],[[0.12759065628052,-0.045047603547573,0.030771730467677],[-0.25457635521889,-0.32017669081688,0.02083090133965],[-0.11497943103313,-0.18606117367744,-0.17500483989716]],[[-0.0031422902829945,-0.065123371779919,-0.076865874230862],[0.04151377081871,-0.1538669615984,0.088128969073296],[0.0028107243124396,-0.051432754844427,0.1373804807663]],[[0.069558329880238,0.013745262287557,-0.024120600894094],[0.040420148521662,-0.021141540259123,0.089019313454628],[-0.069641076028347,-0.0032285747583956,-0.0071364375762641]],[[0.14131544530392,0.036850359290838,0.0044535207562149],[0.044436190277338,-0.08777979016304,-0.16124507784843],[0.051601804792881,0.012691465206444,-0.069145746529102]],[[-0.10788944363594,-0.11806135624647,-0.038369733840227],[-0.028217410668731,-0.020732445642352,0.026413338258862],[0.024511314928532,0.17523793876171,0.280906021595]],[[-0.0054386453703046,0.11397466808558,0.066374868154526],[-0.047125712037086,0.14038215577602,-0.068531781435013],[-0.10856177657843,0.057650063186884,0.017899848520756]],[[-0.056625716388226,0.010097909718752,0.075742535293102],[0.069245979189873,0.11387404054403,0.070101723074913],[-0.08233767747879,-0.064131215214729,0.037747144699097]],[[0.30700835585594,-0.0017858213977888,-0.022488258779049],[0.10171569138765,-0.011368568986654,0.018943391740322],[-0.0021850066259503,-0.15162381529808,-0.080787889659405]],[[-0.016674946993589,0.01707717962563,-0.12423718720675],[0.18765237927437,0.01635099761188,-0.12517616152763],[0.2181851118803,0.069162644445896,-0.045079331845045]],[[-0.092397131025791,-0.22417372465134,-0.3222561776638],[0.080721296370029,0.018597396090627,0.16085889935493],[0.07753299176693,0.28583061695099,0.11146355420351]],[[0.10563840717077,-0.049903839826584,0.045561909675598],[0.1009726151824,-0.11365949362516,-0.093968063592911],[0.11117377132177,-0.062109269201756,0.015558741986752]],[[-0.012026579119265,0.11049422621727,0.038992021232843],[0.018997102975845,0.049576640129089,0.060456391423941],[0.050126425921917,-0.011346254497766,0.094439789652824]],[[0.10348209738731,-0.016563076525927,0.050940908491611],[0.085441008210182,-0.27163252234459,-0.089128114283085],[-0.04203125089407,-0.0068647442385554,-0.055413838475943]],[[-0.020274380221963,0.030774628743529,-0.0087497271597385],[0.022024480625987,-0.082163631916046,-0.10680671781301],[-0.023637901991606,0.11527829617262,-0.0076951389200985]],[[0.036568190902472,0.078029371798038,-0.27193972468376],[-0.0057772006839514,-0.11794458329678,-0.1738293170929],[0.031102878972888,-0.13857066631317,0.097050234675407]],[[-0.066007845103741,0.0085103893652558,0.076977014541626],[-0.048616133630276,0.090600363910198,-0.046648539602757],[0.047364696860313,-0.174690797925,0.038732022047043]],[[0.10112973302603,-0.007408703211695,0.1872257143259],[0.038167081773281,-0.0059228320606053,-0.077603362500668],[-0.15392495691776,0.080791018903255,-0.1980152130127]],[[-0.016077829524875,0.048660393804312,0.20703460276127],[-0.052309278398752,-0.32838836312294,0.19944058358669],[-0.058844156563282,-0.10794366896152,0.049889840185642]],[[-0.092264346778393,-0.013379534706473,0.012898236513138],[-0.12624743580818,-0.25952395796776,0.046560350805521],[0.037144862115383,-0.070616669952869,0.062162321060896]],[[0.061687219887972,0.14228244125843,-0.12591677904129],[0.17218571901321,0.30360674858093,-0.023534452542663],[-0.035454459488392,0.0360335893929,-0.31517949700356]],[[-0.10881274938583,-0.11709152162075,-0.037417326122522],[0.11717230826616,0.20305360853672,0.078221656382084],[-0.0066027282737195,-0.057564184069633,0.01183020696044]],[[-0.017671307548881,0.098494566977024,-0.1254319101572],[-0.043266747146845,-0.11922957748175,0.10961827635765],[-0.097987323999405,-0.17990610003471,0.1684872508049]],[[-0.0048576374538243,0.023645391687751,-0.09881442040205],[0.034398630261421,-0.046055383980274,0.0050322902388871],[0.023250119760633,-0.13637498021126,0.19445233047009]],[[0.055558256804943,-0.074241809546947,0.049438212066889],[0.0064656124450266,-0.034533508121967,0.0038536489009857],[0.014474135823548,-0.02440432831645,-0.0074369646608829]],[[0.01403946056962,0.03857759386301,-0.050969928503036],[-0.016557643190026,-0.1127395555377,-0.12466102093458],[-0.091847755014896,-0.033143930137157,-0.20419591665268]],[[0.060716211795807,0.023965839296579,-0.1432987600565],[0.25106087327003,-0.13898251950741,-0.18863195180893],[-0.11810354143381,-0.27388635277748,0.023401513695717]],[[0.0007572338799946,-0.012885320931673,-0.029048342257738],[0.1171650364995,0.046651549637318,0.10136930644512],[0.0086487596854568,-0.0026025385595858,-0.026286313310266]],[[-0.047315582633018,-0.10516633093357,-0.02300032787025],[0.080395989120007,-0.071637891232967,0.022514663636684],[0.030746191740036,-0.0055757220834494,0.04395716637373]],[[-0.022805167362094,-0.0080272313207388,0.052100576460361],[-0.047904945909977,0.042680934071541,-0.072569467127323],[-0.07467645406723,-0.0015027623157948,-0.011159438639879]],[[0.17306187748909,-0.015192453749478,0.22791662812233],[0.11540301889181,-0.13251586258411,-0.028739005327225],[0.13168984651566,-0.3982210457325,-0.21279260516167]],[[0.2035259604454,0.021274141967297,-0.095166102051735],[0.096972465515137,-0.051452554762363,-0.038831140846014],[-0.05336694046855,-0.13104729354382,0.019399968907237]],[[-0.012286866083741,-0.0047502275556326,-0.077400490641594],[-0.035041570663452,-0.031975917518139,-0.12940059602261],[-0.065747827291489,-0.15962572395802,0.05237603187561]],[[0.022997558116913,-0.22073230147362,-0.087646067142487],[0.21779477596283,0.047581378370523,-0.1290245950222],[0.24332165718079,0.093230120837688,-0.095532305538654]],[[0.051739037036896,0.060943957418203,-0.00088742171647027],[0.021149070933461,0.0045509953051805,-0.026349576190114],[0.0042573232203722,0.021736780181527,-0.23399123549461]],[[-0.093166813254356,-0.008857699111104,-0.066783525049686],[-0.010854491963983,-0.030737075954676,-0.024318661540747],[0.076000526547432,0.022795438766479,0.22615228593349]],[[-0.14425438642502,0.0057066851295531,0.11885081231594],[-0.16755193471909,0.13920660316944,0.057548902928829],[-0.10344228893518,0.035092558711767,0.0078859338536859]],[[0.09548944234848,-0.06927628070116,-0.15435445308685],[-0.031048247590661,0.049631599336863,-0.19556522369385],[0.009168054908514,0.062750421464443,0.10120745003223]],[[-0.034280765801668,0.03475945815444,0.15985664725304],[0.018073540180922,-0.060701284557581,-0.01019130833447],[-0.11769650131464,-0.037753120064735,0.047970976680517]],[[-0.046661481261253,0.050820775330067,-0.036796968430281],[0.0041267536580563,-0.053602647036314,0.0085672261193395],[-0.077317826449871,-0.045857384800911,-0.024455262348056]],[[0.13837057352066,-0.093142785131931,-0.033910807222128],[-0.076871193945408,-0.35517612099648,0.13670833408833],[0.021847851574421,-0.078783258795738,0.14838491380215]],[[0.044367250055075,-0.099871262907982,-0.29059439897537],[0.0058141658082604,0.01195140182972,-0.014940129593015],[0.26167151331902,0.29867985844612,-0.080667592585087]],[[-0.0330217666924,-0.028336962684989,-0.07176061719656],[0.15259972214699,-0.0058886301703751,-0.12436217814684],[0.13856220245361,0.020068570971489,-0.15089170634747]],[[0.083903469145298,0.0034514556173235,0.1964617818594],[0.07343690097332,-0.02513125911355,0.0010851516854018],[-0.12483115494251,-0.090379670262337,0.019733592867851]],[[0.04372850805521,-0.12479017674923,-0.13637733459473],[0.030400028452277,0.00060785096138716,0.043451808393002],[-0.014430317096412,0.12268147617579,0.086146205663681]],[[0.14679203927517,-0.040046360343695,-0.054029852151871],[-0.033785685896873,-0.14548581838608,-0.12812674045563],[-0.14538981020451,-0.10497018694878,-0.077616512775421]],[[-0.021655037999153,0.11811403185129,-0.038235757499933],[-0.048804391175508,0.097488984465599,-0.10570022463799],[0.050213199108839,0.019478637725115,-0.048530835658312]],[[-0.15300460159779,0.053491625934839,0.0068109650164843],[0.082940444350243,0.067716337740421,-0.017408521845937],[0.07870414853096,-0.16779737174511,0.069176226854324]],[[-0.014079784043133,0.050578597933054,0.13398849964142],[0.061594489961863,0.15020713210106,0.14287295937538],[-0.10520362854004,-0.23188409209251,-0.076175138354301]],[[0.072253964841366,0.073882505297661,-0.078524403274059],[-0.097502298653126,-0.0083825029432774,0.14887385070324],[-0.20835572481155,-0.14799609780312,0.28687262535095]],[[-0.030016824603081,-0.045816630125046,-0.037619423121214],[0.062963113188744,-0.08412804454565,0.086062163114548],[0.024527486413717,-0.029219588264823,0.095715664327145]],[[-0.039677418768406,-0.038575146347284,-0.039920207113028],[0.0037623799871653,0.093258030712605,-0.19268009066582],[0.025913277640939,0.1106526479125,-0.0058783562853932]],[[-0.075102679431438,-0.022049501538277,-0.060758370906115],[0.4090191423893,-0.24205327033997,0.17754721641541],[0.028048744425178,-0.17482599616051,0.048371963202953]],[[-0.17438764870167,0.027492294088006,0.17017649114132],[0.042193155735731,-0.022773729637265,0.079043664038181],[0.028986144810915,0.056898158043623,-0.076318964362144]],[[-0.008821134455502,-0.067113183438778,0.058968357741833],[-0.13577142357826,0.035404957830906,0.16080118715763],[-0.05090719461441,-0.10980468988419,0.19845393300056]],[[0.031585112214088,0.093212150037289,-0.15210108458996],[-0.022910309955478,0.036510925740004,-0.029377307742834],[0.020676024258137,0.1792800873518,0.091569639742374]],[[0.093995288014412,0.076874524354935,0.094696149230003],[-0.11071618646383,-0.0054558031260967,0.1258769184351],[-0.19977390766144,0.19143517315388,0.047016426920891]],[[-0.030552847310901,0.10938064008951,0.074790291488171],[0.16160874068737,-0.057103130966425,-0.11583466827869],[0.14356656372547,-0.19246205687523,-0.30437836050987]],[[0.0060186013579369,-0.10726870596409,-0.13880285620689],[0.081278309226036,0.03925072774291,0.16573786735535],[0.2975589632988,-0.054764978587627,0.01410732511431]],[[0.061314690858126,0.00071543484227732,-0.01075735874474],[-0.013292417861521,0.088342472910881,-0.26859751343727],[-0.048420108854771,0.017082570120692,-0.1777648627758]],[[-0.088318102061749,-0.17149414122105,0.13144373893738],[-0.061767589300871,0.19604919850826,0.10153523087502],[-0.14058302342892,-0.26127538084984,0.19499288499355]],[[0.033098760992289,0.11087917536497,0.031750295311213],[-0.071640163660049,0.093253806233406,-0.16459654271603],[-0.0091775683686137,0.095258705317974,-0.26033619046211]],[[0.024553099647164,-0.0061216074973345,-0.10223191231489],[-0.12062216550112,-0.31312453746796,-0.2540919482708],[0.063056565821171,-0.16964618861675,-0.12926156818867]],[[-0.35048735141754,-0.092579670250416,0.18217714130878],[-0.0086916480213404,-0.032167371362448,0.081209473311901],[-0.072968535125256,0.13148517906666,-0.18177415430546]],[[0.14948654174805,0.036740683019161,-0.020910276100039],[-0.13511411845684,-0.04718704521656,-0.0081888642162085],[0.028024958446622,-0.011951279826462,-0.068557351827621]],[[-0.1313824057579,-0.080529451370239,-0.073142826557159],[-0.045690577477217,0.051096215844154,0.10068772733212],[-0.073991239070892,-0.010021151043475,0.3343548476696]],[[0.05370594188571,0.090323083102703,-0.10061652213335],[0.041867051273584,-0.026334663853049,-0.013696413487196],[0.11831823736429,0.031754553318024,0.023779103532434]],[[-0.0419034473598,0.021814227104187,-0.061679188162088],[0.030600475147367,-0.074427425861359,0.063502080738544],[0.022049356251955,-0.23407617211342,0.11772625148296]],[[-0.086948364973068,-0.11685582995415,-0.10887333750725],[-0.066953122615814,0.036616802215576,0.049236267805099],[0.040328193455935,0.13675689697266,0.11178237944841]],[[-0.15349997580051,0.091483995318413,-0.11325178295374],[0.024559821933508,0.080796167254448,0.0581434071064],[0.057334341108799,-0.14643108844757,0.027785412967205]],[[-0.03195733204484,0.05278354883194,-0.069131508469582],[-0.067425832152367,0.0024562042672187,-0.022914400324225],[0.13590060174465,-0.15564808249474,0.13737328350544]],[[-0.054029636085033,-0.061202678829432,0.031935375183821],[-0.038190934807062,0.042842168360949,0.024901444092393],[-0.036735352128744,-0.0021971915848553,0.025718696415424]],[[0.08283307403326,-0.0017073815688491,-0.087753146886826],[0.15157870948315,-0.037818424403667,-0.088659182190895],[-0.021021947264671,-0.028300952166319,0.032200988382101]],[[0.042373824864626,-0.036268394440413,-0.012005331926048],[-0.11588348448277,-0.04158652946353,-0.020625038072467],[-0.050880677998066,0.038772951811552,0.0048254220746458]],[[-0.015953959897161,0.083477944135666,0.020649636164308],[0.050518229603767,0.024796502664685,-0.070402450859547],[0.016935121268034,0.043747335672379,-0.13450893759727]],[[0.011314140632749,-0.060542400926352,0.029628248885274],[-0.028017887845635,-0.10856004804373,0.039509277790785],[-0.031046781688929,0.012812200002372,0.083671182394028]],[[-0.01259262021631,0.0321488045156,-0.12383025884628],[0.042856644839048,-0.012307689525187,0.041600983589888],[0.076651602983475,-0.010985053144395,-0.15577980875969]],[[-0.17374731600285,0.03739807009697,-0.16184942424297],[0.083186231553555,0.038009196519852,0.035540472716093],[0.11010640114546,-0.0342339836061,0.077895008027554]],[[0.01933111064136,0.12121675163507,-0.031167494133115],[0.074423357844353,0.015052896924317,-0.14723342657089],[0.017358180135489,0.0020877313800156,-0.15152771770954]],[[-0.22280187904835,0.059350669384003,0.060776211321354],[0.026081738993526,-0.048107989132404,-0.067494317889214],[0.022244269028306,0.065215870738029,0.031970456242561]],[[-0.086984008550644,0.25623780488968,0.10045632719994],[-0.08431152254343,0.2457212805748,-0.0028485697694123],[0.0024227637331933,0.043406773358583,0.03102045878768]],[[0.17439194023609,-0.049817357212305,0.071598425507545],[0.05727207288146,-0.16273005306721,0.016630582511425],[-0.15028707683086,-0.18934035301208,-0.10358294844627]],[[-0.011418017558753,0.063557885587215,0.013219910673797],[-0.010455200448632,0.077394746243954,0.057680208235979],[-0.10801037400961,-0.051730740815401,-0.12159930169582]],[[-0.049818631261587,0.0072233797982335,-0.028897015377879],[0.032478969544172,0.056643832474947,0.045925091952085],[-0.0082521196454763,-0.056000985205173,-0.010546990670264]],[[0.094335958361626,-0.24099966883659,-0.0070115732960403],[0.1756402105093,-0.33403366804123,0.05920572578907],[0.028256025165319,-0.14099864661694,0.12482024729252]],[[0.089621745049953,0.051447663456202,-0.14912088215351],[0.082985587418079,-0.24623069167137,-0.19011427462101],[0.068737253546715,-0.20625913143158,0.23551212251186]],[[0.014788350090384,-0.088337779045105,-0.14310272037983],[0.045253530144691,-0.11453077197075,-0.30851078033447],[-0.091342285275459,-0.18930447101593,-0.17534336447716]],[[-0.00086037564324215,-0.0092590404674411,-0.056295298039913],[0.10662277042866,-0.026069371029735,-0.040980037301779],[0.10297928005457,0.10517686605453,-0.050494022667408]],[[0.073147289454937,0.0017719698371366,-0.036278273910284],[0.047127485275269,-0.16402718424797,0.14643511176109],[-0.14759038388729,-0.086257591843605,0.060746651142836]],[[-0.01168629899621,-0.098670415580273,-0.10838412493467],[-0.020471109077334,0.068447761237621,0.0030932289082557],[-0.071741446852684,0.067145295441151,-0.0069595025852323]],[[-0.054604649543762,-0.066676124930382,-0.10327333211899],[-0.028300940990448,0.014595797285438,-0.0058590429835021],[0.031547792255878,0.11809275299311,0.22978699207306]],[[0.036604654043913,0.20183591544628,-0.1007966324687],[-0.0080222627148032,-0.10303889214993,-0.33228647708893],[0.043409090489149,0.010889055207372,0.19835188984871]],[[-0.11567565053701,0.118577003479,-0.058762203902006],[0.091751262545586,-0.055601809173822,-0.054357260465622],[-0.086935691535473,-0.039792880415916,0.093218453228474]]],[[[0.063755601644516,0.0073065659962595,-0.017887065187097],[-0.077104233205318,-0.029318975284696,0.069779358804226],[-0.011168333701789,-0.0848438590765,-0.012305717915297]],[[0.024302264675498,0.009858381934464,0.012952646240592],[-0.045155994594097,-0.044676285237074,0.029296066612005],[0.069203205406666,-0.0039247469976544,0.10268131643534]],[[-0.030797751620412,0.0041965148411691,0.035972710698843],[0.0071845683269203,-0.0078222518786788,0.082474552094936],[0.033782914280891,0.030804708600044,0.017461812123656]],[[0.025741636753082,0.063680060207844,0.04503833130002],[0.061990421265364,-0.010105444118381,0.016271285712719],[0.072731725871563,0.030870035290718,-0.022037444636226]],[[-0.062876023352146,-0.087990559637547,-0.06329195946455],[-0.036490365862846,-0.052459251135588,0.067849725484848],[0.052204195410013,-0.027890123426914,0.049244839698076]],[[-0.0055727860890329,-0.0064086527563632,0.026508308947086],[0.014762384817004,0.030273457989097,-0.022947587072849],[0.024287540465593,-0.038007669150829,0.037962406873703]],[[0.01191555801779,-0.050214495509863,0.04966864362359],[-0.015498142689466,0.020866475999355,-0.027197413146496],[-0.043001711368561,0.033252038061619,-0.0065103522501886]],[[0.080882422626019,-0.011699841357768,-0.030443638563156],[0.030868154019117,0.083959355950356,-0.00067822961136699],[0.10939657688141,-0.048127748072147,0.0021602481137961]],[[-0.045634582638741,-0.069731973111629,0.012851492501795],[0.016363751143217,0.012800658121705,0.035845372825861],[0.049227301031351,0.029968544840813,0.0039832280017436]],[[0.037527855485678,0.061189103871584,0.057277947664261],[-0.035671778023243,0.0078422017395496,0.027493316680193],[0.045919351279736,0.053227052092552,0.011060045100749]],[[0.026349375024438,0.064529128372669,0.006326615344733],[0.0024826861917973,0.0062412284314632,-0.010291061364114],[0.008128016255796,0.031238421797752,0.032569389790297]],[[-0.0063425777480006,0.00992461014539,0.0029938803054392],[0.021303664892912,-0.025787152349949,-0.036098726093769],[-0.017143040895462,0.046612959355116,0.048348367214203]],[[0.022412609308958,0.055558800697327,-0.0055162715725601],[0.032788719981909,0.032264892011881,-0.0622184202075],[-0.012530205771327,-0.027395360171795,-0.034166976809502]],[[0.060912031680346,-0.062484130263329,-0.0024986900389194],[0.061719462275505,0.094236247241497,-0.0033366407733411],[-0.056291323155165,-0.053457297384739,-0.0051852720789611]],[[0.081926554441452,0.038414310663939,0.040502246469259],[-0.0095345946028829,0.041206389665604,0.084722131490707],[0.083464965224266,0.012994274497032,0.063301295042038]],[[-0.0029296628199518,0.053542926907539,-0.038163889199495],[0.010306821204722,-0.0055051008239388,-0.0083967661485076],[0.032370235770941,-0.0017923165578395,-0.023512778803706]],[[0.010433557443321,0.10870840400457,0.0092242667451501],[0.035668917000294,0.12840573489666,-0.030283825471997],[0.006100329104811,0.071633838117123,0.015135891735554]],[[0.027366964146495,-0.039250619709492,-0.011422714218497],[-0.012651044875383,0.016904234886169,0.0060285390354693],[0.051022235304117,-0.018436992540956,-0.017682526260614]],[[0.029265521094203,-0.038466095924377,0.035845529288054],[0.010724405758083,0.025494636967778,0.046666495501995],[-0.018530352041125,0.039176844060421,0.041608519852161]],[[0.059148393571377,-0.066991373896599,0.030411647632718],[-0.0096611678600311,-0.09765737503767,-0.015408025123179],[0.040242675691843,0.081673622131348,0.0040898760780692]],[[0.016575952991843,-0.02883811108768,0.050944820046425],[-0.017700366675854,0.029469994828105,-0.036845795810223],[0.0023284219205379,-0.048670429736376,0.049583666026592]],[[-0.039457265287638,0.039409130811691,-0.035485617816448],[-0.015076931566,0.04378318041563,0.0044966731220484],[-0.0064224041998386,-0.067867375910282,0.053574625402689]],[[-0.02819680981338,0.061356827616692,0.0038211683277041],[0.057547621428967,-0.019211260601878,0.022717090323567],[0.017726304009557,0.016571145504713,0.066610641777515]],[[-0.0020469438750297,-0.052304439246655,0.01834848895669],[0.025677410885692,-0.018517119809985,0.083218969404697],[-0.040852796286345,0.015381617471576,0.023013593629003]],[[-0.0038098830264062,0.061486843973398,-0.015506404452026],[0.062319096177816,0.048018623143435,0.039628989994526],[0.012945577502251,-0.011135823093355,0.096556901931763]],[[-0.015553713776171,-0.0063081937842071,0.023648239672184],[-0.017423395067453,0.0273392572999,-0.073965333402157],[0.001734257908538,-0.024804957211018,-0.029671378433704]],[[-0.02428787946701,-0.030812392011285,0.011680148541927],[0.00062215514481068,0.0096815507858992,-0.013816180638969],[0.0066091883927584,0.039644323289394,0.023704431951046]],[[-0.057106282562017,-0.015620035119355,0.062888205051422],[-0.042716264724731,0.012991849333048,0.044427901506424],[-0.027463596314192,0.056667432188988,0.032877281308174]],[[0.005651606246829,-0.036751557141542,0.073469407856464],[0.0092227393761277,0.04714173078537,0.018166808411479],[-0.016867304220796,-0.0054652262479067,0.031255848705769]],[[0.014312291517854,0.03300653770566,-0.0032156978268176],[-0.063564889132977,-0.0037736918311566,-0.01399489492178],[0.051216699182987,-0.0030536705162376,0.037511840462685]],[[-0.034739531576633,0.062869980931282,0.046502556651831],[-0.010886908508837,0.083696573972702,-0.03870502114296],[-0.0030241578351706,-0.035733718425035,0.030133409425616]],[[0.048634298145771,-0.040878247469664,-0.082440994679928],[0.023189678788185,-0.0050812559202313,-0.024932987987995],[-0.0068028625100851,-0.0074438648298383,-0.079064577817917]],[[-0.011836814694107,-0.018361577764153,-0.0066346996463835],[-0.085257306694984,0.044422708451748,0.052338104695082],[0.022459724918008,0.055134352296591,-0.11893352866173]],[[-0.010141091421247,-0.0029904756229371,-0.0064262514933944],[0.079799085855484,0.02806406468153,-0.016994269564748],[-0.015757231041789,0.030939266085625,0.010185513645411]],[[-0.013753944076598,0.021907908841968,-0.013636882416904],[-0.048015095293522,-0.02514910325408,-0.027363508939743],[-0.022960659116507,-0.024268455803394,0.026584314182401]],[[0.044428635388613,0.043819691985846,0.023725852370262],[0.071185179054737,-0.02996694855392,0.004944363143295],[-0.044359140098095,0.034360598772764,0.0098706055432558]],[[0.033056423068047,-0.059262786060572,0.034405760467052],[0.040607038885355,-0.062212649732828,0.024771239608526],[0.0046061025932431,-0.028121234849095,-0.043870102614164]],[[0.069118916988373,0.050922427326441,0.0015953517286107],[-0.11927129328251,-0.018109126016498,0.040191400796175],[0.050959598273039,0.0069789807312191,-0.029839657247066]],[[-0.014552489854395,-0.00065034395083785,0.0029847950208932],[0.014175157062709,0.046406388282776,-0.038401018828154],[0.072700947523117,0.01215298846364,0.0047673252411187]],[[0.011795652098954,0.05470048263669,0.047767236828804],[0.0042721219360828,0.03471303358674,-0.025920240208507],[-0.0034966494422406,0.038030620664358,-0.01155115570873]],[[0.052929230034351,-0.046141892671585,0.0042641377076507],[-0.045081328600645,-0.0054684649221599,0.011176905594766],[0.020697502419353,0.044302050024271,0.11854299157858]],[[-0.0039415787905455,-0.062809310853481,-0.016302449628711],[-0.0073011568747461,0.0090874498710036,-0.04981666430831],[-0.015794171020389,-0.04286752268672,0.036281500011683]],[[0.0092243487015367,0.037094123661518,-0.022857666015625],[0.00096134404884651,0.043746992945671,-0.012069473043084],[-0.0082297883927822,0.024852035567164,0.0088683245703578]],[[-0.0082106357440352,0.026739664375782,0.080794930458069],[0.013451050035655,0.06231677159667,0.039901435375214],[0.070832319557667,0.045862819999456,0.075572982430458]],[[0.076489940285683,-0.022565489634871,-0.028116529807448],[0.069757461547852,0.011583127081394,-0.020608643069863],[0.065959401428699,0.0019660503603518,-0.064305312931538]],[[-0.021330170333385,0.023121329024434,0.054702136665583],[0.029367255046964,0.027117786929011,-0.05393723025918],[0.013887169770896,-0.024867357686162,0.05829543992877]],[[0.062564484775066,-0.055702343583107,-0.0042320159263909],[-0.012494521215558,0.0027073249220848,0.034535776823759],[-0.010776705108583,-0.022975293919444,0.067509733140469]],[[-0.023187393322587,0.057755198329687,-0.063659399747849],[-0.038037646561861,0.031108567491174,0.054434146732092],[0.010513270273805,-0.018170347437263,0.0054231504909694]],[[-0.015902580693364,-0.086003862321377,0.015991255640984],[0.031905803829432,0.008971038274467,-0.012885205447674],[0.015989817678928,0.031676881015301,0.023058502003551]],[[0.021502172574401,0.06515059620142,-0.042709093540907],[-0.009151398204267,0.013053468428552,0.026499221101403],[-0.037461824715137,-0.073517099022865,0.057567313313484]],[[0.0086842933669686,-0.013562907464802,0.048456102609634],[0.0071884510107338,0.038608204573393,-0.018691826611757],[0.034223057329655,0.028888886794448,0.0038294224068522]],[[0.023025499656796,-0.01568235643208,0.02814513631165],[-0.029572069644928,0.070972874760628,0.0023426567204297],[-0.064898148179054,0.020847203209996,0.013553543016315]],[[-0.016319647431374,0.00074108148692176,-0.041664611548185],[0.011734415777028,0.028588535264134,-0.062680751085281],[0.044987335801125,0.073558747768402,0.0394929908216]],[[0.00051210151286796,-0.024134378880262,0.04112871363759],[0.012166914530098,-0.017136031761765,0.00088823988335207],[0.045876868069172,0.094946876168251,-0.066496819257736]],[[-0.0052251308225095,-0.024447003379464,-0.013724368996918],[0.043006867170334,-0.0020859432406723,-0.0044196886010468],[0.057167701423168,0.03340708091855,-0.010811602696776]],[[0.056637536734343,-0.0039491844363511,-0.045331552624702],[-0.05849002301693,-0.0064025362953544,0.076419048011303],[0.025132156908512,-0.072200074791908,0.022177364677191]],[[-0.046285308897495,0.017639089375734,0.058326557278633],[0.00030628009699285,0.011685704812407,-0.017575547099113],[-0.021954003721476,-0.076395839452744,0.010375063866377]],[[-0.022209445014596,-0.0060140280984342,-0.013252041302621],[0.043911952525377,-0.06152880191803,0.027935337275267],[0.061531100422144,-0.025108003988862,-0.0030995046254247]],[[-0.062212783843279,0.0087722633033991,0.028607586398721],[0.069545723497868,0.062195401638746,0.055846307426691],[0.033781338483095,0.011794907972217,0.014619532972574]],[[0.028219487518072,0.054543245583773,-0.062218181788921],[0.1003555431962,-0.010365761816502,0.03424084186554],[0.059499926865101,0.069884687662125,0.0095983231440187]],[[-0.063114203512669,0.043639954179525,0.032359018921852],[0.038382522761822,0.034478601068258,0.052910394966602],[0.04423213750124,-0.013776117935777,-0.020639298483729]],[[-0.016222327947617,0.028666632249951,0.047020778059959],[-0.022790370509028,0.03374295309186,-0.11743357777596],[-0.038746692240238,0.0020550861954689,0.0072856429032981]],[[0.00093628698959947,0.016699500381947,0.03831747546792],[-0.018813721835613,0.039132427424192,0.042620420455933],[-0.0029978486709297,0.0054302904754877,-0.028884222730994]],[[0.040845919400454,0.06573486328125,-0.085440889000893],[0.0065271784551442,0.0002540239947848,0.044143095612526],[-0.011468929238617,-0.0083459774032235,-0.0074286819435656]],[[0.012582925148308,-0.01043089479208,-0.0027516190893948],[0.0026730990502983,0.03428839892149,-0.034108553081751],[0.03269300237298,0.013244581408799,-0.0050329654477537]],[[0.026690579950809,0.022186717018485,0.041571531444788],[0.045566029846668,-0.024540076032281,-0.04120920971036],[0.052368298172951,-0.042719233781099,0.042842578142881]],[[-0.0020171706564724,0.060113571584225,0.00079749489668757],[0.049634296447039,-0.043679602444172,-0.01299973577261],[-0.019476296380162,-0.020408861339092,0.11728095263243]],[[0.1263885051012,0.027365352958441,0.0034877804573625],[-0.0087661147117615,-0.01630525290966,0.042601104825735],[0.03898810967803,0.0081945266574621,-0.026363072916865]],[[0.025857467204332,0.043258111923933,-0.045187741518021],[0.018326312303543,0.028562430292368,0.048396039754152],[0.14009176194668,-0.026268107816577,-0.040314946323633]],[[0.027300950139761,0.016201788559556,0.014383780770004],[0.041980743408203,0.046453688293695,-0.0043287687003613],[0.0099531412124634,-0.10148269683123,-0.0721390619874]],[[0.0070858993567526,-0.019980251789093,0.00078704231418669],[-0.087046958506107,-0.0048397579230368,-0.019923146814108],[0.038944210857153,0.082931868731976,0.021460052579641]],[[0.024469543248415,0.0011208300711587,-0.0058346604928374],[0.040550783276558,0.10464797914028,0.0042585171759129],[-0.012160890735686,-0.029416896402836,0.014708083122969]],[[0.069956786930561,0.10047189891338,-0.023850059136748],[-0.024035971611738,0.014544356614351,-0.004677414894104],[0.019234078004956,0.067082226276398,0.0126369651407]],[[0.05070536211133,-0.030714578926563,0.054443910717964],[0.0010781673481688,-0.0028157362248749,0.019756600260735],[0.015526678413153,-0.057033024728298,-0.021813193336129]],[[-0.0097149331122637,-0.024579621851444,-0.062407791614532],[-0.014483329840004,-0.035686027258635,-0.075028024613857],[-0.02508556842804,0.029701303690672,0.02948784083128]],[[0.06202145665884,0.057459603995085,-0.038009352982044],[0.040477816015482,0.031124047935009,0.014611060731113],[-0.0015962600009516,0.0045376480557024,-0.018597247079015]],[[-0.0065644523128867,-0.050725027918816,-8.096445526462e-05],[0.047316864132881,0.0066706952638924,0.079170800745487],[0.0095517095178366,0.018133278936148,-0.0088886367157102]],[[-0.0035094348713756,0.011540644802153,-0.037345547229052],[0.048601131886244,0.038143906742334,0.040904514491558],[0.015489772893488,-0.049204874783754,0.062557056546211]],[[0.0097116939723492,0.084383368492126,-0.056155372411013],[0.035087261348963,0.092969417572021,-0.01260847132653],[-0.052722312510014,-0.046384375542402,0.015404406003654]],[[0.0031462081242353,-0.049138400703669,-0.025880498811603],[-0.02635838277638,0.080385185778141,-0.067274689674377],[0.026280779391527,0.083776734769344,0.035417560487986]],[[0.022632824257016,0.046725135296583,0.027322955429554],[0.052902586758137,-0.088588431477547,0.027813322842121],[-0.0023642962332815,0.0048339725472033,0.04674306884408]],[[-0.015218133106828,-0.067303657531738,-0.070083044469357],[-0.057125747203827,0.059652283787727,-0.045707635581493],[-0.0035186724271625,-0.038154300302267,-0.015473403036594]],[[-0.008288724347949,0.037546772509813,0.022820642217994],[-0.055343259125948,-0.024346869438887,0.086026825010777],[0.083824135363102,0.0004896882455796,-0.027786083519459]],[[0.039825912564993,0.063283354043961,0.043877724558115],[-0.072459578514099,-0.049690842628479,0.025245575234294],[0.044305946677923,-0.026685498654842,-0.10955069959164]],[[0.046454325318336,0.037885576486588,0.014686532318592],[-0.037373889237642,-0.014021188952029,0.057024173438549],[0.020051063969731,-0.0063251690007746,0.035333961248398]],[[0.047360729426146,0.10326919704676,0.026627684012055],[0.068805485963821,0.026631528511643,-0.079583562910557],[-0.012114360928535,0.05319981649518,-0.020918780937791]],[[-0.016164584085345,-0.019826972857118,0.0022299296688288],[0.024497983977199,0.041373450309038,0.014315469190478],[0.064295940101147,-0.0037380286958069,0.0044367704540491]],[[0.0024975046981126,0.011089324951172,0.010899382643402],[0.059063579887152,0.045114424079657,-0.030304454267025],[-0.021291481330991,-0.033063162118196,0.00649094581604]],[[0.036458447575569,0.016209121793509,-0.030089136213064],[0.053809404373169,0.036367680877447,0.061031308025122],[-0.018054950982332,-0.025119420140982,-0.034285988658667]],[[0.0048667145892978,0.0068361354060471,0.011055478826165],[-0.013633416965604,0.054928660392761,0.040809255093336],[0.0034957865718752,-0.092040151357651,-0.0030702713411301]],[[0.02152507007122,0.06030061468482,0.048223275691271],[0.022770758718252,0.02271382138133,0.00098694034386426],[0.068784683942795,0.060502283275127,-0.040354631841183]],[[-0.091410271823406,0.062415238469839,0.074522346258163],[0.0372707657516,-0.054074168205261,-0.057693056762218],[0.094808809459209,0.033035926520824,-0.041837714612484]],[[-0.00319205946289,0.041395422071218,0.042550880461931],[0.020122099667788,-0.025103978812695,-0.059037450700998],[0.024698788300157,-0.013298030942678,-0.073008097708225]],[[-0.011039844714105,0.08676864951849,0.0044874241575599],[0.025999808683991,0.053969889879227,-0.029181243851781],[-0.0012887050397694,-0.022631367668509,0.030585430562496]],[[0.041790798306465,-0.011649493128061,0.014677957631648],[0.047420907765627,0.0175178386271,0.042212419211864],[-0.010491009801626,-0.0042051384225488,-0.039750110358]],[[0.011564344167709,0.07663257420063,-0.037468135356903],[-0.092239178717136,0.10359343141317,0.078659936785698],[-0.050473537296057,0.034214664250612,-0.024260135367513]],[[0.018083093687892,0.011056496761739,-0.024216106161475],[-0.01416662055999,-0.09791674464941,0.00087927671847865],[-0.0023455999325961,-0.023409025743604,0.0022012440022081]],[[0.1153180450201,0.0184963978827,-0.0084332572296262],[0.019071647897363,0.063389621675014,-0.02070395834744],[0.084822364151478,0.079559795558453,0.016827184706926]],[[0.039117358624935,-0.082419849932194,-0.039392933249474],[0.054914399981499,-0.046036593616009,0.080050215125084],[0.033836584538221,-0.067553482949734,0.033895969390869]],[[-0.026748802512884,-0.0068591269664466,0.00084377313032746],[0.02576557174325,0.02814350835979,0.098474815487862],[0.086402662098408,-0.0072657205164433,-0.016438568010926]],[[-0.05621836706996,-0.068412773311138,0.11133312433958],[0.01394646987319,-0.038891054689884,0.0029373241122812],[-0.050208263099194,0.038363397121429,0.005997434258461]],[[0.018801042810082,0.0042283562943339,-0.0046956199221313],[0.050274025648832,0.010267772711813,0.075013123452663],[0.0064682592637837,0.047539077699184,0.11270140856504]],[[0.012855229899287,0.019190507009625,-0.022591535001993],[-0.0076545006595552,-0.014356278814375,0.027615439146757],[-0.0096106361597776,0.016879817470908,0.048592790961266]],[[0.014243942685425,0.005538288038224,0.016097879037261],[0.011603621765971,-0.0062986039556563,-0.050516866147518],[0.093784049153328,-0.0057914396747947,-0.023875292390585]],[[-0.0048021185211837,-0.014772329479456,0.024163268506527],[0.058149568736553,-0.081347964704037,0.016665916889906],[0.014952527359128,0.047151412814856,-0.043931093066931]],[[-0.014477764256299,-0.016078390181065,0.021844072267413],[0.11535949259996,0.026920298114419,-0.00097349437419325],[0.036017894744873,0.064835220575333,-0.040396846830845]],[[0.034088887274265,-0.049484271556139,0.00088868214515969],[0.033101689070463,-0.054576706141233,0.0035975594073534],[-0.022434994578362,0.089543759822845,8.4763623817707e-06]],[[-0.049642205238342,0.012552225962281,0.012519730255008],[-0.057254571467638,-0.13929575681686,0.0096524385735393],[-0.048879057168961,0.020951373502612,0.0024462451692671]],[[0.032671567052603,0.031520128250122,0.020593147724867],[-0.074670389294624,-0.082072183489799,0.017332132905722],[0.03914550319314,0.00010423355706735,0.044754710048437]],[[-0.0030601597391069,0.040821235626936,0.011429667472839],[-0.036396104842424,0.047455005347729,-0.00092125998344272],[0.0050874794833362,-0.012844691053033,-0.078334905207157]],[[-0.048717599362135,-0.090624094009399,-0.049444578588009],[0.026909008622169,0.013714230619371,-0.016515761613846],[0.00084095820784569,0.043394088745117,-0.0095435157418251]],[[0.10106905549765,-0.028777247294784,-0.038017399609089],[-0.01793834194541,-0.025939539074898,-0.022619180381298],[-0.069866918027401,0.008667292073369,0.02250213176012]],[[0.019392732530832,-0.043789558112621,0.075311467051506],[0.019272290170193,0.044084791094065,0.017236398532987],[0.030784144997597,0.054810013622046,0.036847982555628]],[[-0.029270892962813,0.056808158755302,-0.064262330532074],[0.046701747924089,0.006798573769629,0.03148128464818],[-0.046806141734123,-0.047490671277046,0.052969425916672]],[[-0.0086692543700337,0.041096951812506,0.029441181570292],[-0.0435681194067,0.049988184124231,0.010772203095257],[0.0033622388727963,-0.012115215882659,0.081619843840599]],[[0.035259187221527,0.07499922811985,0.0037800977006555],[0.045387774705887,0.022185562178493,-0.0077955117449164],[0.046195600181818,0.016161475330591,0.031621981412172]],[[0.0068176137283444,-0.072888471186161,-0.068578831851482],[0.021116247400641,-0.022988000884652,-0.0054355203174055],[0.024636587128043,0.061251055449247,0.0059974193572998]],[[0.052052304148674,-0.016121838241816,0.058995757251978],[-0.0023775638546795,-0.0099074793979526,-0.089613251388073],[-0.038298234343529,-0.091131500899792,0.008745432831347]],[[-0.060055650770664,-0.045561831444502,0.023302949965],[0.014857528731227,0.043596506118774,-0.016389222815633],[-0.072683691978455,0.029325956478715,-0.011460562236607]],[[-0.074290484189987,-0.04662824422121,0.015448329038918],[0.013587915338576,0.037735689431429,-0.017971828579903],[0.00975551456213,-0.025615442544222,-0.016756827011704]],[[-0.034595396369696,-0.021924676373601,-0.009581764228642],[0.0039200983010232,-0.038755808025599,0.090151131153107],[-0.030943337827921,-0.0012994767166674,-0.041328262537718]],[[-0.0063178897835314,0.0099554490298033,-0.066643394529819],[-0.00080201827222481,0.052992392331362,0.025242170318961],[-0.0041803997009993,0.047077987343073,-0.1365557461977]],[[-0.084963291883469,-0.028476875275373,0.036635495722294],[-0.035133097320795,-0.018969690427184,-0.028219182044268],[-0.0054316055029631,-0.023189257830381,-0.039612364023924]],[[0.10362167656422,0.073059678077698,0.0094373039901257],[0.0049294247291982,0.063092783093452,0.043834637850523],[0.036670506000519,-0.023345533758402,-0.069234102964401]],[[0.013483487069607,-0.018777618184686,0.0032169152982533],[0.014626304619014,0.02387273311615,0.038875427097082],[0.030599934980273,0.041377253830433,0.046439681202173]],[[-0.0068956795148551,0.0098673803731799,0.026524625718594],[0.0026686117053032,0.016921447589993,0.0020194668322802],[-0.037735041230917,-0.071266524493694,-0.022170720621943]],[[-0.01159721147269,-0.026844177395105,0.0091073932126164],[-0.0046806531026959,0.017662905156612,0.038180097937584],[0.027627099305391,-0.013678015209734,-0.0014650238445029]],[[-0.056814949959517,0.024812204763293,-0.062383498996496],[0.036205239593983,0.022152172401547,0.095824912190437],[-0.020771650597453,-0.020690424367785,0.044138044118881]]],[[[-0.081664033234119,0.029148103669286,-0.038063004612923],[-0.015164811164141,0.051833592355251,-0.016313433647156],[0.036149866878986,-0.0061149871908128,0.0056091267615557]],[[-0.017246624454856,-0.013234309852123,0.013175391592085],[0.022582797333598,-0.050397600978613,-0.017580414190888],[0.029310634359717,-0.0035489040892571,-0.0030249720439315]],[[-0.087869934737682,0.058938268572092,0.038253340870142],[0.043354343622923,0.025910241529346,-0.064008094370365],[-0.01874472387135,-0.016889967024326,0.0064838537946343]],[[0.032805178314447,-0.062076240777969,0.0092377718538046],[0.034399505704641,-0.064450211822987,0.046719029545784],[0.033348482102156,0.014580423943698,-0.037388611584902]],[[-0.027200439944863,-0.018233850598335,0.048429988324642],[0.010846633464098,0.043698381632566,0.053846508264542],[-0.08683355152607,-0.045672070235014,-0.053282052278519]],[[-0.022133266553283,0.042753361165524,0.061689540743828],[-0.010451722890139,-0.015523427166045,0.014606328681111],[-0.023138824850321,-0.022451056167483,0.0092118615284562]],[[-0.0072453962638974,0.067828074097633,-0.01228903234005],[0.02364394813776,0.0052762245759368,-0.017452068626881],[-0.0093634640797973,0.0035931582096964,-0.048949502408504]],[[0.0047483518719673,0.013908440247178,0.024964101612568],[-0.060627311468124,-0.033154856413603,0.0039069885388017],[-0.047193389385939,-0.01917615160346,0.0079924538731575]],[[0.011727464385331,0.031478468328714,-0.076882392168045],[0.0081195328384638,0.0010647125309333,0.063980311155319],[-0.085700370371342,0.03002973087132,0.034058608114719]],[[-0.015303808264434,0.0038225932512432,-0.040128204971552],[0.039984725415707,-0.10957482457161,-0.042150259017944],[0.0094741135835648,0.017414102330804,0.015858924016356]],[[-0.0041235634125769,0.056441135704517,0.014432191848755],[0.04627200961113,0.073809191584587,-0.031438700854778],[-0.0022929315455258,-0.029524507001042,-0.072141326963902]],[[-0.032725021243095,-0.027209132909775,0.032565720379353],[-0.011780934408307,0.054549656808376,0.011376984417439],[0.022877734154463,-0.014118700288236,-0.03156504034996]],[[-0.031921617686749,-0.055786021053791,0.0097726052626967],[0.027627058327198,-0.016622727736831,0.034085564315319],[-0.042632482945919,-0.042310118675232,-0.02411306463182]],[[0.028979996219277,-0.037245269864798,0.042763110250235],[-0.0036038749385625,0.056597080081701,-0.014557876624167],[0.021912273019552,0.0032885631080717,-0.041976861655712]],[[-0.034072428941727,-0.08532103151083,-0.15740858018398],[0.016223438084126,-0.027400704100728,0.057198416441679],[0.028834972530603,-0.041593354195356,0.0068140476942062]],[[0.0087894387543201,-0.008458036929369,0.017484677955508],[0.014940467663109,-0.086582615971565,-0.014495018869638],[-0.027986090630293,-0.051150139421225,-0.040599156171083]],[[-0.045918561518192,-0.00094209355302155,-0.068312577903271],[0.025056432932615,0.043948572129011,-0.08112046122551],[-0.029044549912214,0.014444352127612,-0.010606769472361]],[[-0.011603989638388,-0.008362652733922,0.025280511006713],[-0.029305534437299,-0.046114336699247,-0.10655158013105],[-0.012455456890166,-0.022312747314572,0.0075474944896996]],[[0.0012614669976756,0.046494763344526,-0.036805402487516],[0.0047096945345402,0.0052544111385942,0.0082336645573378],[0.03130629658699,-0.062427714467049,0.0085848197340965]],[[0.010038717649877,0.04052359610796,-0.050944171845913],[-0.0043754228390753,0.013197076506913,-0.043389372527599],[0.024964326992631,0.076243102550507,-0.0075133610516787]],[[-0.025529654696584,-0.0078386757522821,0.030869547277689],[-0.086750291287899,-0.034212496131659,-0.032207019627094],[-0.04643652588129,-0.038978174328804,-0.0026525410357863]],[[-0.021621601656079,-0.00067529425723478,0.024257929995656],[-0.064165905117989,-0.10304375737906,0.051154226064682],[0.03379887342453,-0.024886282160878,0.0052215177565813]],[[-0.012391197495162,-0.043234322220087,0.012567305937409],[0.021833688020706,0.035674396902323,0.051515202969313],[-0.029876589775085,-0.019884636625648,-0.025524009019136]],[[-0.019227599725127,-0.060570418834686,-0.032930608838797],[-0.023523068055511,0.021649092435837,0.014332401566207],[0.030447835102677,-0.041648592799902,0.047690961509943]],[[-0.042830906808376,0.021653406322002,-0.0065428735688329],[0.0058630486018956,0.0011600774014369,-0.035851016640663],[-0.028700115159154,-0.0096506346017122,0.05988672748208]],[[0.014969180338085,0.061329983174801,0.056015681475401],[-0.011453789658844,-0.049183033406734,-0.0047530136071146],[0.015655975788832,0.010422025807202,-0.0082183480262756]],[[0.006966152228415,0.012105750851333,0.058375515043736],[-0.0050217574462295,-0.081334672868252,0.045259889215231],[-0.056088250130415,0.024941086769104,-0.051480278372765]],[[-0.034435756504536,0.018291493877769,-0.03496877849102],[-0.041949916630983,0.028875581920147,0.050706744194031],[-0.011430440470576,0.013815495185554,0.024274187162519]],[[-0.040048006922007,0.007281456142664,0.010440522804856],[0.038541954010725,0.075503058731556,0.023591056466103],[0.0010467024985701,-0.068626038730145,-0.091740503907204]],[[0.0049276514910161,0.0091755287721753,0.0024309917353094],[0.0042183301411569,-0.051269758492708,-0.07994732260704],[0.0038925523404032,0.002533390885219,0.056290168315172]],[[0.0021499753929675,-0.065026067197323,-0.021148193627596],[-0.018987709656358,-0.020314989611506,0.05479796230793],[8.8286775280721e-05,0.0097718928009272,-0.034497823566198]],[[0.002183391712606,-0.045618131756783,-0.056780628859997],[-0.036211039870977,-0.047838527709246,0.03897113353014],[0.012304625473917,-0.0080803148448467,0.067950829863548]],[[-0.045584715902805,-0.053470488637686,0.058262258768082],[-0.014521069824696,0.02699226886034,0.02426627650857],[0.0078293448314071,-0.026716738939285,-0.023915069177747]],[[0.021541565656662,-0.091547794640064,-0.036099210381508],[-0.017058108001947,-0.031660694628954,-0.027129156515002],[0.0089068990200758,0.060526069253683,-0.054893001914024]],[[0.058159962296486,0.032628748565912,-0.059224877506495],[-0.002600132022053,-0.012224926613271,-0.020191734656692],[0.033069334924221,0.040341354906559,0.018052309751511]],[[-0.057158757001162,0.024628810584545,-0.013591061346233],[-0.018097842112184,0.050239965319633,-0.029258908703923],[-0.049293514341116,-0.018872397020459,-0.0084403986111283]],[[-0.055613838136196,-0.093341656029224,-0.024809719994664],[0.016411082819104,0.020035749301314,0.014947032555938],[0.033394064754248,0.067594431340694,0.016914986073971]],[[0.054069563746452,-0.030808258801699,-0.0043003638274968],[-0.027281271293759,0.0042474791407585,-0.0092300549149513],[0.050775110721588,-0.040948834270239,0.021595245227218]],[[0.037641499191523,-0.037062648683786,0.02346552349627],[0.059821534901857,-0.086206771433353,0.00017041036335286],[0.044501066207886,-0.062686868011951,0.055916823446751]],[[0.039942055940628,-0.01830674149096,-0.0083444388583302],[0.048025753349066,-6.7726519773714e-05,-0.053793404251337],[-0.048904180526733,-0.010488086380064,-0.038139425218105]],[[-0.028093218803406,0.0076463376171887,0.053446184843779],[0.014651877805591,-0.047060329467058,-0.013315442018211],[-0.0045064617879689,-0.007278707344085,0.001872799359262]],[[-0.026067355647683,-0.034794416278601,-0.032221760600805],[-0.012673820368946,0.0083186831325293,-0.012860419228673],[-0.097629457712173,0.028377970680594,0.047720741480589]],[[-0.047736719250679,-0.010093818418682,0.026531441137195],[-0.058073896914721,0.0097093498334289,-0.013913787901402],[0.0019995651673526,0.027746826410294,0.011349367909133]],[[-0.037887930870056,-0.019747197628021,0.045752454549074],[-0.033931326121092,0.0041820253245533,-0.030886789783835],[0.021212851628661,-0.031629104167223,0.01840222068131]],[[-0.041230365633965,-0.032501559704542,-0.024021469056606],[0.028010096400976,-0.066187508404255,-0.021282160654664],[0.051034830510616,0.11517467349768,-0.02512789145112]],[[-0.045575905591249,-0.022513812407851,0.029595905914903],[0.019086623564363,-0.063627228140831,-0.0044010295532644],[-0.037943832576275,0.0028970132116228,0.047112789005041]],[[-0.022387634962797,0.021526552736759,0.004884185269475],[0.060447201132774,-0.03074455074966,-0.047691207379103],[0.0085400193929672,0.01886903680861,0.047894168645144]],[[-0.021143624559045,-0.023240262642503,0.030932247638702],[0.050337720662355,0.063225828111172,-0.023267844691873],[-0.016378855332732,0.0041513037867844,-0.0052722254768014]],[[-0.086450211703777,-0.062682762742043,0.045374050736427],[0.076333567500114,-0.004740790463984,0.01811452768743],[-0.030978262424469,-0.018080508336425,0.0051989485509694]],[[-0.025743728503585,0.0040443069301546,0.049229610711336],[0.025216674432158,-0.037620607763529,-0.067705042660236],[-0.012934130616486,-0.02934785746038,0.080869354307652]],[[0.020640879869461,-0.052171763032675,-0.032364025712013],[0.090042494237423,0.026086248457432,-0.012910129502416],[-0.018066799268126,-0.049370270222425,-0.036002729088068]],[[-0.075375452637672,0.032235790044069,0.03602335229516],[0.059070084244013,0.0029776860028505,-0.014063893817365],[0.0024585053324699,-0.031618122011423,-0.020811574533582]],[[-0.05511712282896,0.0027431044727564,-0.013019667007029],[-0.086772426962852,-0.028970843181014,0.10657061636448],[0.0055816774256527,0.051424216479063,-0.028316646814346]],[[-0.014310010708869,0.0037476327270269,-0.02644738741219],[0.013225240632892,-0.0098448703065515,0.0093801328912377],[0.0092995734885335,-0.027685610577464,-0.0097841834649444]],[[-0.057223089039326,-0.052220828831196,0.0063319411128759],[0.076725609600544,0.026551285758615,-0.058043286204338],[0.017908664420247,0.031641647219658,-0.024941932410002]],[[-0.006775644607842,-0.01270888838917,-0.00051021628314629],[-0.076895587146282,0.0024417508393526,0.0084726884961128],[-0.015824638307095,-0.056985348463058,0.025551028549671]],[[-0.040508177131414,-0.0064235012978315,-0.093529045581818],[-0.022737946361303,0.022374646738172,-0.018602501600981],[0.081731393933296,-0.033354070037603,-0.040593817830086]],[[-0.04764935746789,0.059136208146811,-0.0061106183566153],[-0.035825081169605,-0.06746282428503,-0.039360597729683],[0.067889250814915,-0.0059663262218237,-0.0023294561542571]],[[0.028852082788944,-0.058102667331696,-0.052010618150234],[0.058160573244095,0.017058754339814,0.01440136693418],[0.0057242829352617,0.02900105714798,-0.03259876742959]],[[-0.0034158951602876,0.022904369980097,-0.067259937524796],[0.023593299090862,-0.00097530806669965,-0.013507986441255],[-0.039076056331396,-0.038748789578676,0.0054469602182508]],[[-0.01225714571774,-0.0106520075351,-0.057786803692579],[-0.046145841479301,-0.10245050489902,-0.075661554932594],[0.059438709169626,0.028104938566685,-0.020243303850293]],[[0.039481945335865,-0.0045673414133489,0.010882624424994],[-0.021169200539589,0.0013730892678723,-0.015868594869971],[0.023038508370519,-0.035840637981892,-0.044909063726664]],[[0.015625398606062,-0.01692576892674,-0.021369755268097],[0.022103127092123,0.038633320480585,0.00068806123454124],[0.0043027210049331,0.0069479336962104,-0.063406318426132]],[[0.065416812896729,0.046303987503052,0.023065023124218],[-0.059679672122002,-0.10424905270338,0.064574807882309],[-0.034623797982931,-0.031180648133159,0.029452446848154]],[[0.038460046052933,-0.031928312033415,0.0019185085548088],[0.049738049507141,0.056388024240732,-0.086380913853645],[-0.042689200490713,-0.010244739241898,-0.012647856026888]],[[-0.0051701432093978,-0.068398095667362,-0.01576816663146],[0.098028764128685,-0.01841189712286,0.020197715610266],[-0.017700890079141,-0.020292019471526,-0.0054095881059766]],[[-0.018458737060428,0.059792537242174,0.067411534488201],[-0.03519069775939,-0.025727419182658,0.0011907942825928],[0.0069598280824721,-0.038936853408813,0.0052006295882165]],[[0.0039567155763507,-0.023614937439561,-0.022616481408477],[0.031661007553339,-0.004778332542628,-0.068176127970219],[-0.0025469155516475,0.018507014960051,0.028756638988853]],[[0.0014832692686468,-0.032109219580889,0.016949744895101],[-0.05015442147851,0.010807286947966,-0.024903954938054],[0.057720977813005,-0.051477298140526,-0.13031405210495]],[[-0.053515303879976,-0.015296353958547,-0.038120333105326],[-0.0064781396649778,0.07078605890274,0.044253673404455],[-0.019597148522735,0.00074654584750533,0.013263260014355]],[[0.00448716012761,0.017673106864095,0.014983652159572],[0.032583594322205,-0.011373764835298,0.040110815316439],[0.0063705695793033,-0.074230208992958,-0.010979934595525]],[[-0.080467775464058,-0.0047928215935826,0.0043477010913193],[-0.073449671268463,-0.010097888298333,0.084012188017368],[-0.051194202154875,0.091113857924938,-0.016083609312773]],[[0.018571894615889,-0.014514355920255,0.014376106671989],[0.0044124289415777,-0.076875694096088,0.0048174862749875],[-0.011891872622073,-0.00068836973514408,0.057370588183403]],[[-0.0051630949601531,0.022198712453246,0.020450130105019],[-0.047135449945927,0.024610288441181,-0.084057107567787],[-0.056873925030231,0.024569632485509,0.047986194491386]],[[-0.00077384925680235,0.034452922642231,0.0012302515096962],[-7.6366297435015e-05,-0.0061676860786974,0.010327601805329],[-0.0092882653698325,-0.023125011473894,-0.0054446216672659]],[[0.064499825239182,0.02357511036098,0.0096241161227226],[0.039272092282772,-0.00059589784359559,-0.018302749842405],[-0.030568897724152,-0.0010096663609147,-0.042469948530197]],[[-0.0099306460469961,-0.045964773744345,-0.0098800398409367],[-0.026286790147424,-0.025994727388024,0.003842982230708],[0.023333676159382,-0.032544314861298,0.0060391402803361]],[[-0.024778662249446,-0.045019302517176,0.058678094297647],[0.035899963229895,0.012298909015954,-0.014068716205657],[-0.021472152322531,-0.015100885182619,0.014164104126394]],[[0.0083118611946702,0.0121686514467,0.055163271725178],[-0.050950966775417,0.014023464173079,-0.034021884202957],[-0.069125764071941,0.023583522066474,-0.05673111602664]],[[0.0059555969201028,0.048867736011744,0.0035858300980181],[-0.001509158173576,-0.10107969492674,-0.045188426971436],[0.041799381375313,0.0018348973244429,-0.0097858626395464]],[[0.01386995986104,-0.075852759182453,-0.033323921263218],[0.0057027926668525,0.0090147070586681,-0.018236124888062],[-0.0022506017703563,-0.0037828246131539,-0.027784528210759]],[[0.036588456481695,0.043012075126171,-0.049588829278946],[-4.9802823923528e-05,0.028134467080235,0.0044323718175292],[-0.0094625279307365,0.03985982015729,-0.056985050439835]],[[-0.016976056620479,-0.036232829093933,-0.049927871674299],[0.012664826586843,-0.07864536345005,0.0094256615266204],[-0.0057279784232378,0.059627141803503,0.034371972084045]],[[-0.01418424397707,-0.052564978599548,-0.015643203631043],[0.13241748511791,0.03475383669138,0.0056339139118791],[-0.053915876895189,0.0063011413440108,-0.021126544103026]],[[-0.040690593421459,-0.0089913960546255,0.024872437119484],[0.0074050058610737,0.022459080442786,-0.0044491412118077],[-0.017378440126777,0.0032761306501925,-0.023261800408363]],[[0.02203725092113,-0.049718540161848,-0.028653658926487],[-0.016892677173018,0.018472630530596,-0.032836481928825],[-0.010965219698846,0.023673918098211,0.074998937547207]],[[0.028159357607365,0.016834154725075,-0.050459381192923],[0.012117786332965,-0.038533732295036,-0.02346121892333],[-0.093859732151031,0.04531205072999,0.034143190830946]],[[0.06308402121067,-0.053060822188854,0.010647438466549],[0.050504788756371,-0.035660527646542,-0.014924148097634],[0.021711563691497,0.0088234702125192,-0.066256955265999]],[[0.064909562468529,0.0081567438319325,0.059188768267632],[0.017756232991815,0.020103255286813,-0.020466374233365],[0.040758773684502,-0.0086556980386376,-0.079633310437202]],[[0.069463826715946,0.025029577314854,-0.023516528308392],[-2.6105288270628e-05,0.017396342009306,-0.087396956980228],[0.061892338097095,0.0095724500715733,-0.063327178359032]],[[-0.041554849594831,0.055968757718801,-0.039046302437782],[0.009496983140707,0.0023617453407496,-0.067026071250439],[0.027639616280794,0.042574189603329,0.040585197508335]],[[0.031610030680895,-0.072139054536819,0.065187409520149],[-0.064653344452381,-0.023410717025399,0.041571080684662],[-0.0011816823389381,-0.0077771060168743,-0.061849176883698]],[[-0.068097300827503,0.035089761018753,-0.033771272748709],[0.060547590255737,-0.046220533549786,0.04840736836195],[-0.048350177705288,-0.024183904752135,-0.044843681156635]],[[0.01763672195375,-0.091126568615437,-0.0022612675093114],[-0.0087622972205281,0.040472917258739,0.010574169456959],[0.015672007575631,0.014057761058211,-0.010724969208241]],[[-0.016076561063528,0.027923282235861,-0.047394454479218],[0.072104103863239,0.016935415565968,-0.018429972231388],[-0.013393942266703,0.040288735181093,-0.070038072764874]],[[-0.026680393144488,-0.014974831603467,-0.050214476883411],[0.0073118833824992,-0.021961970254779,-0.048999931663275],[0.012455482035875,0.0049038366414607,0.056614238768816]],[[0.029227152466774,-0.071688592433929,0.0202402677387],[-0.080713778734207,-0.050686899572611,-0.039701964706182],[0.0079356711357832,-0.027579756453633,0.025170776993036]],[[0.032633494585752,-0.008448707871139,-0.078140400350094],[0.060353871434927,0.036231435835361,-0.039823323488235],[-0.060213837772608,0.034667905420065,-0.060561049729586]],[[-0.072867907583714,-0.026260495185852,-0.016043655574322],[0.029085317626595,-0.00013270630734041,0.0099212164059281],[-0.046133417636156,-0.031993545591831,-0.051524881273508]],[[0.036774199455976,0.020574389025569,-0.048806667327881],[-0.024116087704897,-0.0074920668266714,-0.04190780594945],[0.025017961859703,-0.01829413883388,-0.044962614774704]],[[-0.061258535832167,-0.0073143360204995,0.042567778378725],[0.0091389296576381,-0.014185895211995,-0.00064064160687849],[0.019810128957033,-0.012905074283481,0.082100510597229]],[[-0.017926506698132,0.024447267875075,-0.042195081710815],[-0.073256887495518,-0.019670663401484,-0.0070676286704838],[-0.02863983809948,0.043708343058825,0.075934879481792]],[[0.036976885050535,-0.036237005144358,-0.033931020647287],[0.013967315666378,0.0030657933093607,0.049497753381729],[-0.035361405462027,-0.0055662984959781,-0.064882278442383]],[[-0.041067887097597,-0.055135935544968,0.02796570956707],[-0.038242403417826,-0.083520360291004,0.019905619323254],[-0.024550378322601,-0.046009935438633,0.072268165647984]],[[0.0031636669300497,-0.0085417032241821,-0.0060307132080197],[0.058739051222801,-0.034978993237019,-0.06181426346302],[0.0085159679874778,-0.094732955098152,0.05093477666378]],[[-0.04576925560832,0.080382123589516,-0.045961327850819],[0.025939255952835,-0.038895137608051,-0.0029310458339751],[-0.02390000782907,-0.0084747225046158,0.02844375744462]],[[-0.033964909613132,0.024002179503441,-0.01283419597894],[0.026918141171336,0.043217334896326,0.037324447184801],[-0.090455710887909,-0.030264334753156,-0.041182622313499]],[[-0.0062091695144773,0.074913963675499,-0.028855066746473],[-0.0093445004895329,-0.021787691861391,0.058130744844675],[0.023805949836969,-0.070082619786263,-0.054750844836235]],[[-0.061285197734833,0.010475834831595,0.0022798900026828],[-0.032173056155443,-0.034746494144201,0.063573822379112],[0.023138554766774,-0.11712403595448,0.11151760816574]],[[0.081919319927692,0.072987720370293,0.059503521770239],[0.01618605107069,0.076018020510674,0.098390884697437],[0.096153736114502,0.0012288731522858,0.067619308829308]],[[0.0045742085203528,0.041181527078152,0.045786194503307],[-0.059384573251009,-0.043870572000742,-0.12887467443943],[-0.04412803798914,-0.027482440695167,-0.058367799967527]],[[-0.025746708735824,-0.0089389169588685,-0.0030966338235885],[0.019166896119714,-0.021760316565633,-0.044898379594088],[0.054359514266253,-0.011931928806007,0.040188413113356]],[[-0.059160865843296,0.0035182670690119,0.0140341501683],[0.0025157399941236,-0.062400326132774,-0.0030516011174768],[-0.0039575174450874,0.022356875240803,-0.038743626326323]],[[0.02349366247654,0.087471842765808,-0.039997242391109],[0.022252289578319,0.055687438696623,0.09542939811945],[0.064614064991474,-0.012501661665738,0.099824622273445]],[[0.037337254732847,-0.037275843322277,0.0039217988960445],[-0.032303743064404,-0.01117081195116,-0.025730095803738],[-0.0040208953432739,0.057220228016376,-0.024135265499353]],[[0.044453799724579,-0.034406412392855,-0.015600706450641],[-0.02585207670927,0.0065503702498972,-0.04535561427474],[0.012576225213706,0.012876234017313,-0.023617194965482]],[[-0.004509499296546,-0.083309732377529,0.043601538985968],[-0.026512900367379,0.035773240029812,-0.070388168096542],[-0.012570763006806,0.021611206233501,0.034664776176214]],[[0.056097235530615,-0.028213456273079,-0.056558392941952],[-0.014945399016142,0.076749786734581,0.0080945435911417],[0.019744362682104,0.0030012482311577,-0.017475983127952]],[[0.014211711473763,0.0054984674789011,0.034014370292425],[-0.062294565141201,0.063723750412464,0.00070297298952937],[0.018144696950912,-0.018459431827068,-0.019567904993892]],[[0.019781902432442,0.040061704814434,-0.030586514621973],[0.038476429879665,-0.08332784473896,-0.06968941539526],[0.10394251346588,0.0687071159482,0.011272720992565]],[[0.020895002409816,-0.0034341919235885,0.027999974787235],[0.034113451838493,-0.068911947309971,0.012678308412433],[-0.043725237250328,0.070996046066284,-0.022455908358097]],[[-0.017395947128534,-0.066870644688606,0.0076358821243048],[0.041997842490673,0.018199138343334,-0.013980615884066],[-0.031403157860041,-0.0056148627772927,0.048167940229177]],[[-0.039016213268042,-0.079562164843082,-0.00634202407673],[-0.078395485877991,-0.059295900166035,0.097353510558605],[0.057390838861465,-0.0026958386879414,0.043664261698723]],[[-0.049393724650145,-0.043040852993727,0.054150607436895],[-0.017486672848463,-0.027598883956671,0.046529598534107],[-0.0011749861296266,-0.094168089330196,0.017543785274029]],[[-0.01263040304184,-0.050466977059841,-0.055613379925489],[0.0092558963224292,0.1033019721508,0.018787020817399],[-0.031369309872389,0.065557233989239,-0.010503625497222]],[[-0.025028932839632,0.0027470411732793,-0.014195579104125],[0.096502892673016,0.054638639092445,0.0085445325821638],[0.010990352369845,-0.030252749100327,-0.033138494938612]],[[0.022816464304924,-0.027596732601523,0.045059658586979],[0.0038031463045627,-0.0095413364470005,-0.062328599393368],[0.025277068838477,0.01713733933866,-0.040655940771103]],[[0.074154354631901,-0.026937747374177,-0.030381051823497],[-0.0091029955074191,0.047456331551075,0.010905829258263],[-0.018812341615558,-0.0004148721054662,-0.053955428302288]]],[[[0.055219363421202,0.073099426925182,-0.041057046502829],[-0.0088736163452268,-0.070730045437813,0.046872321516275],[-0.0082434518262744,0.055196475237608,0.0056800455786288]],[[0.033765099942684,-0.0012508607469499,0.0083214361220598],[-0.044585071504116,-0.13535934686661,0.051958180963993],[0.013863511383533,0.034077774733305,-0.060669016093016]],[[0.13816352188587,0.11977888643742,0.049952626228333],[0.0013553195167333,-0.042697470635176,0.027045035734773],[-0.051210984587669,0.0057634422555566,-0.033013734966516]],[[0.049015522003174,-0.074435949325562,-0.048489153385162],[0.058315578848124,0.0097997868433595,-0.032232865691185],[0.029456678777933,-0.098118342459202,0.010052448138595]],[[0.011527054011822,-0.044567789882421,-0.016491811722517],[-0.028016241267323,0.031852468848228,-0.055919162929058],[0.031425520777702,-0.033820532262325,-0.051943525671959]],[[-0.05402647703886,0.036134589463472,0.013039043173194],[0.017509933561087,-0.011587569490075,0.081127978861332],[-0.038755670189857,-0.00026129087200388,-0.068737529218197]],[[-0.023546716198325,-0.01899179816246,-0.0070386328734457],[-0.014744070358574,-0.024483347311616,-0.036889728158712],[0.0059337476268411,0.054036024957895,0.064585752785206]],[[0.031947664916515,-0.05863531306386,-0.0088970465585589],[-0.023372605443001,-0.01984204351902,0.0012809177860618],[-0.020410872995853,0.046053010970354,-0.030559677630663]],[[-0.011684190481901,-0.019348179921508,0.060258358716965],[0.030936075374484,-0.046802971512079,0.046327125281096],[-0.078895419836044,0.045507118105888,0.015524453483522]],[[-0.0096635520458221,-0.02525051496923,0.01797634921968],[-0.0029171132482588,-0.0069170664064586,-0.0053861034102738],[-0.0051934057846665,-0.034037668257952,0.064121060073376]],[[-0.037814538925886,0.011648779734969,-0.012780614197254],[-0.030697582289577,-0.036055635660887,-0.021107884123921],[-0.0059737954288721,0.032832499593496,0.027758032083511]],[[0.082867562770844,-0.033652875572443,0.058433383703232],[-0.027698252350092,0.10716103762388,-0.027286451309919],[0.035414587706327,-0.026701932772994,0.024907518178225]],[[0.019017094746232,-0.059205256402493,0.033900491893291],[0.039383322000504,0.029111100360751,-0.022132663056254],[0.019642636179924,0.03332931175828,-0.0057884207926691]],[[0.0020321286283433,-0.028331751003861,-0.067961275577545],[0.11632201820612,0.095667779445648,-0.083320237696171],[-0.085160307586193,0.082436099648476,0.026096539571881]],[[0.00024791908799671,-0.035672683268785,0.036660771816969],[0.097298681735992,-0.012348107993603,-0.010775653645396],[0.040711905807257,-0.083482541143894,0.036419559270144]],[[0.0025429881643504,-0.025285290554166,0.04684703797102],[-0.039529476314783,-0.10879760235548,0.061792943626642],[-0.03283266723156,-0.019107950851321,-0.0024318865034729]],[[-0.0090628573670983,-0.045268554240465,0.00054181698942557],[-0.019800612702966,-0.027519935742021,-0.03664506226778],[0.016267016530037,0.015669967979193,-0.012160004116595]],[[-0.066749155521393,-0.053187295794487,0.030733155086637],[0.0091768596321344,0.075612045824528,-0.0027382688131183],[-0.0010416557779536,0.025265172123909,0.014122867956758]],[[-0.0085674012079835,0.024612624198198,-0.0051304693333805],[0.032720092684031,-0.0074653229676187,0.054483179003],[-0.00399129698053,-0.094996266067028,-0.02868059463799]],[[-0.0047309505753219,0.0070121875032783,0.010031281970441],[-0.0078114559873939,-0.0046822531148791,0.0068461741320789],[0.016713922843337,-0.071528859436512,-0.020717306062579]],[[0.05894073843956,-0.019262786954641,-0.020500816404819],[-0.033747978508472,0.053387135267258,0.055425573140383],[-0.025437079370022,0.0012519774027169,0.026041701436043]],[[0.073340512812138,0.046445470303297,-0.011674471199512],[-0.00071627693250775,-0.043475430458784,0.024749994277954],[0.029679307714105,0.009373533539474,0.0016021382762119]],[[0.053190127015114,0.0048412336036563,0.05224895849824],[-0.02617590688169,-0.0063105281442404,-0.013329884037375],[0.007677995134145,-0.057352479547262,0.024827221408486]],[[-0.0053087519481778,0.041857738047838,-0.032938998192549],[-0.016646118834615,-0.027264324948192,0.074292436242104],[0.037423476576805,0.040616199374199,-0.0049605588428676]],[[0.044063456356525,0.08183091878891,0.074464894831181],[-0.049707908183336,0.012979040853679,-0.028210889548063],[-0.0096544260159135,0.032149121165276,0.0021706318948418]],[[0.016221355646849,-0.088132582604885,0.07668873667717],[-0.009861215017736,-0.014175633899868,0.04040963947773],[-0.053485181182623,0.024138946086168,0.011376422829926]],[[-0.026353634893894,-0.026761962100863,-0.0068808360956609],[0.04829678311944,0.010069874115288,-0.029270607978106],[0.039014834910631,0.0072755864821374,0.013773815706372]],[[-0.021702392026782,-0.025788625702262,0.0036575780250132],[-0.078400008380413,-0.033972635865211,-0.020600872114301],[-0.0078001753427088,0.015273256227374,-0.0086219720542431]],[[-0.065723270177841,0.042278774082661,0.01704403012991],[0.020449869334698,0.03803676366806,-0.0051430091261864],[0.027039529755712,0.019687578082085,-0.0026665769983083]],[[0.057520370930433,0.00057620246661827,0.0022072014398873],[-0.011219148524106,0.035441871732473,0.0001041946670739],[0.063855849206448,0.0064921607263386,0.038282662630081]],[[0.0025325799360871,0.017507685348392,0.019790479913354],[-0.042640347033739,-0.06015419960022,-0.010041230358183],[0.049989480525255,0.0053696790710092,-0.036635007709265]],[[-0.055716007947922,-0.012970180250704,-0.0098015619441867],[0.04675555229187,-0.0070752766914666,0.0017707218648866],[0.054966486990452,-0.044299513101578,0.10057539492846]],[[-0.006858398206532,-0.05655324831605,-0.019306579604745],[-0.0040326938033104,-0.038520704954863,0.028058774769306],[-0.026514682918787,-0.0015165940858424,-0.044825281947851]],[[-0.033263057470322,-0.032010659575462,-0.016067495569587],[-0.014485569670796,0.0067473561502993,0.06093430891633],[-0.026299640536308,0.03410317003727,0.044998817145824]],[[-0.00030579970916733,-0.066770054399967,-0.0027722106315196],[-0.079679556190968,0.057389441877604,0.004011332988739],[0.01607957482338,0.0048809880390763,-0.021607253700495]],[[-0.015819188207388,0.016055386513472,-0.015561122447252],[0.026138616725802,0.016673626378179,-0.0058842715807259],[-0.044999670237303,-0.052909381687641,-0.03102694824338]],[[0.047327253967524,-0.0040789148770273,0.03665929287672],[0.0018686013063416,-0.042643934488297,0.077911242842674],[-0.012151203118265,0.0072434809990227,0.076314650475979]],[[0.052125032991171,0.0075366850942373,-0.068180255591869],[0.037282809615135,0.036102220416069,-0.0016110931755975],[0.012465038336813,0.0067091342061758,0.041777670383453]],[[0.033234138041735,-0.028672222048044,0.021563151851296],[0.092578835785389,-0.069579631090164,0.068670548498631],[-0.018001578748226,0.049917258322239,0.039935402572155]],[[-0.0024108665529639,-0.019978858530521,0.0053502377122641],[0.023851748555899,0.03988978639245,-0.0066656647250056],[-0.022831434383988,0.016638454049826,0.0099839642643929]],[[0.015180935151875,-0.058596353977919,-0.01026020757854],[0.028202902525663,-0.014522056095302,-0.022759424522519],[0.062425848096609,0.068046897649765,-0.05905444920063]],[[0.015167933888733,0.065763838589191,-0.047229401767254],[0.014635430648923,0.038514666259289,-0.028030533343554],[-0.097879752516747,-0.038102649152279,0.0011612626258284]],[[0.024291375651956,-0.040685016661882,0.061921343207359],[0.020387856289744,0.075973264873028,0.0060084848664701],[0.016760677099228,0.08029130846262,0.038402136415243]],[[-0.046932972967625,-0.0093456199392676,-0.03140764310956],[-0.059535529464483,0.043483316898346,-0.024585178121924],[-0.020971395075321,-0.016922431066632,-0.056252382695675]],[[0.047456789761782,-0.046345215290785,0.016217298805714],[0.04731597751379,0.017421239987016,0.012297628447413],[-0.017231814563274,-0.026105599477887,-0.049138829112053]],[[-0.034270320087671,-0.061622723937035,-0.01850919239223],[0.081275194883347,-0.068590365350246,-0.020412629470229],[0.026396812871099,-0.066280424594879,-0.0078998059034348]],[[-0.042767006903887,0.11717199534178,0.0072184335440397],[-0.042022526264191,-0.016617603600025,-0.030605839565396],[-0.039192419499159,-0.012284223921597,-0.073827244341373]],[[-0.027411680668592,-0.04717068374157,-0.05373465269804],[0.05747340247035,-0.010046254843473,-0.048490971326828],[-0.033153302967548,-0.0067602940835059,-0.030989605933428]],[[-0.032269481569529,-0.070908829569817,-0.017590910196304],[0.013081312179565,-0.027277117595077,-0.0060660894960165],[-0.012090191245079,0.062958180904388,0.034145582467318]],[[0.025557681918144,-0.033818867057562,0.014415211975574],[-0.11313363909721,0.023943088948727,0.017414279282093],[-0.0077690319158137,-0.014963016845286,0.082095049321651]],[[0.031582161784172,0.020620491355658,-0.034567818045616],[0.065288603305817,0.062246464192867,0.037045493721962],[0.014479340985417,0.048111889511347,0.038647472858429]],[[0.031727414578199,-0.0055963043123484,-0.017964869737625],[-0.0472655557096,0.025757271796465,-0.041093032807112],[-0.021404961124063,0.034009482711554,0.040161829441786]],[[0.046476151794195,-0.045951522886753,0.028720427304506],[-0.10748576372862,0.081085167825222,0.039229799062014],[0.049214530736208,0.010820052586496,0.00037721518310718]],[[-0.018952541053295,0.055200137197971,0.010530599392951],[-0.016575153917074,-0.0050337444990873,0.0036374470219016],[-0.025566449388862,0.024547886103392,-0.033088926225901]],[[0.081642873585224,-0.042093802243471,0.016643133014441],[0.0079717300832272,0.052918404340744,0.023521104827523],[0.036556202918291,0.0060144704766572,0.0098619665950537]],[[-0.018985925242305,-0.01870553009212,0.029871298000216],[0.037166312336922,0.063406094908714,0.042360085994005],[0.0106479562819,0.058039270341396,0.0003946884535253]],[[0.025130078196526,-0.030264833942056,-0.0091338716447353],[-0.0064401258714497,0.043183501809835,-0.032193429768085],[0.019261788576841,0.0089892763644457,-0.045027825981379]],[[-0.013609807938337,-0.036200188100338,-0.050470396876335],[-0.0495845079422,0.015628987923265,-0.072400450706482],[-0.050669178366661,-0.0028128947596997,-0.020402535796165]],[[-0.067087292671204,-0.008070464245975,0.0070739234797657],[0.039009284228086,0.017507094889879,-0.021433975547552],[0.040213648229837,0.025500996038318,-0.053193848580122]],[[0.05769969522953,0.026584688574076,0.01968039944768],[-0.048178672790527,0.0083205634728074,-0.028964068740606],[-0.03027243539691,0.010528837330639,0.012289926409721]],[[-0.011396024376154,-0.01120947021991,0.017636304721236],[-0.083072453737259,-0.0265486035496,-0.039657901972532],[0.017691515386105,0.0080732963979244,0.047154434025288]],[[-0.069152168929577,0.0067328573204577,0.045809142291546],[0.045724358409643,-0.0088798999786377,-0.012833969667554],[0.067762598395348,0.026674358174205,0.053463168442249]],[[-0.019526315853,0.061212908476591,-0.042958363890648],[0.04698121920228,0.099346660077572,-0.034447800368071],[0.025612197816372,0.053279299288988,-0.0080309193581343]],[[-0.010003519244492,0.074761956930161,0.027048835530877],[0.046849843114614,-0.054379288107157,-0.0074062729254365],[0.019705720245838,-0.0014819398056716,-0.0027641304768622]],[[0.053104918450117,0.0084138512611389,0.027959177270532],[0.029076239094138,-0.037688955664635,0.0029419604688883],[-0.030136123299599,-0.055724151432514,0.0060497224330902]],[[0.082036845386028,0.032055385410786,0.037408251315355],[-0.040575716644526,0.054569263011217,0.015845952555537],[0.03874234482646,-0.02401452884078,0.074556708335876]],[[-0.038214221596718,-0.060690116137266,-0.022077510133386],[-0.035430267453194,-0.027633743360639,-0.03328713029623],[-0.04735765978694,-0.0058565265499055,0.046256355941296]],[[0.044282235205173,0.03262098133564,-0.0017377402400598],[-0.012948770076036,0.013618319295347,0.0096635604277253],[0.040089927613735,0.0038790430407971,-0.0032971352338791]],[[-0.037387676537037,-0.021044010296464,0.0029947892762721],[-0.017684547230601,-0.044649057090282,-0.020217757672071],[-0.046255368739367,-0.030275709927082,0.0061377291567624]],[[0.069952100515366,-0.012239108793437,-0.014413774944842],[0.0058674141764641,0.035240054130554,0.035612866282463],[0.0094105266034603,-0.013119176961482,-0.041122857481241]],[[0.024008970707655,0.0014019462978467,-0.078028090298176],[0.021121950820088,0.046342123299837,0.019974179565907],[0.01106125395745,-0.016503475606441,0.077155932784081]],[[0.023320080712438,-0.055513013154268,-0.014592243358493],[-0.0078199673444033,-0.034002754837275,0.026662286370993],[0.042625457048416,-0.013025640510023,0.029872357845306]],[[0.0099925864487886,-0.027253478765488,-0.0080913053825498],[0.0095823919400573,-0.065706975758076,0.082111500203609],[0.015476402826607,-0.040541287511587,0.015035371296108]],[[-0.051451053470373,0.012470239773393,-0.028194934129715],[0.046359281986952,0.036939680576324,0.044752832502127],[0.024515395984054,-0.056825693696737,-0.0022676549851894]],[[0.063387177884579,-0.0088952230289578,-0.05702531337738],[-0.0067718625068665,-0.034938585013151,0.055258702486753],[-0.0031500107143074,0.012480129487813,0.077850095927715]],[[0.032654270529747,0.035972476005554,0.0089872628450394],[0.040018655359745,0.028358269482851,-0.034969795495272],[0.0088436668738723,0.013916160911322,0.045278001576662]],[[-0.044738311320543,0.027521522715688,-0.016313163563609],[0.05676605924964,0.030185347422957,0.0036116051487625],[-0.011959133669734,-0.026271251961589,-0.0088129267096519]],[[0.029307832941413,0.044707838445902,0.055246692150831],[-0.002891709562391,-0.01201836951077,0.0079721240326762],[0.050409883260727,0.0083283465355635,-0.039278287440538]],[[0.01248259935528,-0.020922353491187,0.017212638631463],[0.044601824134588,-0.04482676461339,-0.017941473051906],[-0.010209524072707,-0.0077317585237324,0.001185524277389]],[[-0.0022090920247138,-0.049878511577845,0.03650838509202],[-0.0068897223100066,0.0013605926651508,-0.0044067590497434],[-0.030532127246261,0.025675423443317,-0.0052073365077376]],[[-0.0090876454487443,-0.088656760752201,-0.056514643132687],[0.048747628927231,-0.010026639327407,0.051450874656439],[0.019032694399357,0.015729550272226,0.0089838327839971]],[[-0.059493951499462,0.056853421032429,0.0030756138730794],[0.012551127932966,-0.063519582152367,0.01822093129158],[-0.020102554932237,0.063765950500965,-0.084313213825226]],[[-0.028349744156003,0.053878106176853,0.037330579012632],[-0.048166152089834,0.02517762593925,-0.083081729710102],[0.049350164830685,0.08240482211113,-0.029303409159184]],[[0.024931082502007,-0.018087146803737,0.046795688569546],[0.063833139836788,0.0038760742172599,0.010688253678381],[0.022416258230805,0.018484368920326,-0.13210210204124]],[[-0.0058857253752649,0.068656340241432,0.082285515964031],[-0.050643030554056,0.043404925614595,-0.030224474146962],[-0.0074723595753312,0.060944862663746,0.036571610718966]],[[0.035606775432825,-0.054755579680204,-0.02637579664588],[-0.023727966472507,-0.0081469342112541,-0.053432799875736],[-0.044200446456671,-0.036316841840744,-0.011775362305343]],[[0.042455643415451,0.014361157082021,0.02567489631474],[-0.035904183983803,0.020648876205087,0.057373501360416],[0.016223419457674,0.012936653569341,-0.032237693667412]],[[0.038360137492418,-0.06649774312973,0.034257605671883],[0.064263395965099,-0.0077339126728475,-0.037772465497255],[-0.032168786972761,-0.045587755739689,0.093058861792088]],[[0.068835310637951,-0.0521453730762,-0.029075380414724],[-0.024509023874998,-0.014175765216351,-0.011731701903045],[0.030342122539878,0.052361443638802,-0.027111634612083]],[[-0.014205007813871,-0.077137880027294,0.024717243388295],[0.0051490478217602,0.027195356786251,-0.0061177648603916],[0.021230643615127,0.033090528100729,-0.053041860461235]],[[0.023888204246759,-0.082833364605904,-0.01453878171742],[-0.015615625306964,-0.047688812017441,0.091072387993336],[-0.017120353877544,-0.0099710468202829,-0.026111416518688]],[[-0.015857251361012,0.098330795764923,-0.011026654392481],[0.010397296398878,-0.037742935121059,-0.044874768704176],[0.068333201110363,0.033204160630703,0.0070530436933041]],[[-0.0047232215292752,-0.0015640675555915,-0.041348803788424],[0.079801999032497,-0.068562611937523,-0.0515326410532],[0.032985493540764,-0.10748006403446,0.025260422378778]],[[0.026196327060461,0.038118924945593,0.010362016968429],[-0.047223579138517,0.06691886484623,0.019782843068242],[-0.053825069218874,-0.025414500385523,-0.00047428556717932]],[[-0.011663380078971,0.00054467294830829,-0.0015351214678958],[-0.02448682487011,-0.042233757674694,-0.024020506069064],[0.0043699368834496,-0.015050764195621,0.050562750548124]],[[0.073858849704266,-0.03509633243084,0.079790115356445],[0.013679601252079,-0.058149438351393,-0.066545456647873],[0.048013668507338,-0.035752467811108,-0.0068098320625722]],[[0.061296988278627,-0.0023609541822225,-0.015031664632261],[-0.015979574993253,-4.8920515837381e-05,0.059751573950052],[0.024283524602652,0.000275637867162,-0.026874639093876]],[[-0.037170853465796,0.045393150299788,0.039637986570597],[0.026010930538177,0.10495608299971,0.030673814937472],[-0.0049921767786145,-0.012381999753416,0.023521665483713]],[[-0.020722324028611,-0.035462200641632,0.040272984653711],[0.020791443064809,-0.016641415655613,0.042945064604282],[-0.047031138092279,-0.021549208089709,-0.033931497484446]],[[-0.021142994984984,-0.071419902145863,-0.085561960935593],[0.0079853441566229,0.035194706171751,-0.0097424015402794],[0.032195154577494,-0.031539440155029,-0.041930813342333]],[[0.012606622651219,0.0038561678957194,-0.043780617415905],[0.0010443204082549,-0.014757456257939,-0.035451214760542],[-0.04557267203927,0.02973279543221,0.06559431552887]],[[-0.0089634889736772,0.029780453070998,0.072025485336781],[0.010633223690093,-0.021249024197459,-0.07365071028471],[0.10272545367479,0.006151516456157,0.00077563052764162]],[[0.061206821352243,-0.01630262658,0.1083211004734],[-0.018124939873815,0.073978267610073,0.0040688738226891],[0.0058730430901051,0.0095232874155045,-0.051442883908749]],[[0.023257352411747,-0.066497698426247,-0.011015393771231],[-0.063024923205376,0.00083705224096775,-0.031913794577122],[0.040095157921314,-0.036495629698038,0.014357612468302]],[[-0.011723645962775,-0.049043636769056,-0.0043416465632617],[0.047448955476284,-0.079924032092094,-0.037304989993572],[-0.0065981685183942,0.0021829439792782,-0.060109306126833]],[[-0.017594493925571,-0.00043309072498232,-0.0098086185753345],[0.010421230457723,-0.031404618173838,-0.04790959879756],[-0.007882583886385,0.033403873443604,0.02199181355536]],[[-0.067577578127384,-0.028650252148509,0.019225044175982],[0.062405060976744,-0.0078118927776814,-0.031107645481825],[-0.01885893009603,-0.027193266898394,0.032387897372246]],[[0.034403204917908,0.021117588505149,0.02746619656682],[-0.02646741271019,0.012153814546764,-0.013149590231478],[-0.040900532156229,-0.009225188754499,-0.0042157061398029]],[[0.01162813603878,0.039390597492456,-0.02092394977808],[-0.03441084176302,0.049281027168036,-0.015177052468061],[-0.040959548205137,0.042945776134729,-0.024861274287105]],[[-0.051615878939629,0.06417990475893,-0.0060731475241482],[0.054393734782934,-0.033618498593569,-0.0006598771433346],[-0.1345561593771,0.0030221391934901,-5.4678275773767e-05]],[[-0.020527489483356,0.00058711873134598,0.036862030625343],[0.076775655150414,0.0058037405833602,0.086803957819939],[0.04638934135437,0.043564639985561,0.055076256394386]],[[0.012654691934586,-0.020049549639225,0.020064603537321],[-0.01868942566216,-0.042285550385714,-0.006837063934654],[0.0086731025949121,-0.0071433535777032,-0.029401075094938]],[[0.020566212013364,-0.0062597203068435,0.061529509723186],[0.041662599891424,-0.022969152778387,-0.010544409044087],[-0.00017562776338309,0.03428104147315,-0.01583256945014]],[[0.027763428166509,-0.046360190957785,-0.014155116863549],[-0.035478144884109,0.030482020229101,-0.039640095084906],[0.020776068791747,-0.072789765894413,0.020490245893598]],[[-0.0025908902753145,-0.014109984971583,0.075425170361996],[0.025781465694308,-0.015472322702408,0.053948994725943],[0.081021137535572,-0.020988363772631,-0.015276691876352]],[[-0.057656731456518,-0.039368599653244,-0.041040569543839],[0.017758544534445,-0.04563957080245,-0.13690094649792],[0.0029528103768826,0.014895451255143,-0.012069331482053]],[[0.029539795592427,-0.0042678276076913,0.023676818236709],[-0.037600979208946,0.012455985881388,-0.040675953030586],[-0.018081733956933,0.0061443308368325,-0.02499738521874]],[[0.042748242616653,0.0016168222064152,-0.038989454507828],[0.022387526929379,-0.03632977604866,0.012177005410194],[-0.010515342466533,-0.0096298260614276,-0.00071004685014486]],[[0.022168012335896,-0.017736138775945,-0.067200601100922],[-0.020129337906837,0.032940100878477,-0.076480872929096],[0.029633281752467,0.0097705079242587,-0.024437718093395]],[[0.0038806865923107,0.013769787736237,-0.0089877033606172],[-0.086084075272083,0.059993788599968,0.012897599488497],[0.0037966712843627,-0.023916181176901,0.014670444652438]],[[-0.0073035326786339,0.038268439471722,0.012678700499237],[0.070689730346203,0.0028419033624232,-0.031377699226141],[0.017895612865686,-0.0011908168671653,0.01541315484792]],[[-0.046548336744308,-0.0011487315641716,-0.028721263632178],[0.044395677745342,0.02000623755157,-0.013883219100535],[0.015641584992409,-0.0092691071331501,-0.11237763613462]],[[-0.028343867510557,0.076037839055061,0.066245630383492],[-0.010019661858678,0.033271335065365,0.0029063392430544],[-0.050325628370047,0.032286487519741,0.055753163993359]],[[-0.020646240562201,0.014533450827003,0.051988489925861],[-0.016715008765459,0.035119451582432,-0.011531870812178],[0.052051287144423,0.020043028518558,-0.016116384416819]],[[-0.010839239694178,-0.020129857584834,0.00088045926531777],[0.00045673607382923,-0.035963859409094,0.055471155792475],[0.023297660052776,-0.090109430253506,-0.014620519243181]],[[0.013777968473732,-0.062607131898403,-0.03326953202486],[0.024278627708554,0.049023106694221,0.079200781881809],[-0.021266693249345,0.071042470633984,0.02514810115099]],[[0.046376515179873,0.011232001706958,0.019923185929656],[-0.05011435598135,0.0066494438797235,-0.032912455499172],[-0.015976004302502,-0.0031979449559003,-0.022398576140404]],[[0.042342752218246,-0.009408675134182,0.029782498255372],[0.046805668622255,-0.044339910149574,0.0028101727366447],[-0.0095872776582837,-0.017904959619045,0.03590177744627]]],[[[-0.059128236025572,-0.048207797110081,0.013254031538963],[-0.027108745649457,-0.038712032139301,-0.0025968414265662],[-0.011792394332588,-0.014356241561472,0.020529551431537]],[[0.019316686317325,0.067762240767479,0.011218557134271],[-0.07159348577261,0.03827790170908,-0.090884186327457],[-0.022078545764089,0.051567073911428,-0.017482763156295]],[[-0.021678438410163,-0.0022771838121116,0.03112667798996],[-0.069434709846973,-0.035815197974443,0.002315362682566],[0.066142298281193,-0.000898435653653,-0.090305536985397]],[[-0.065006114542484,-0.081664599478245,-0.012497213669121],[-0.017793998122215,-0.00099334202241153,0.038156107068062],[-0.0078405672684312,0.0030825042631477,0.0038764283526689]],[[-0.018720149993896,0.010818614624441,-0.00067954824771732],[0.028694754466414,-0.036027852445841,0.048311654478312],[-0.030340686440468,-0.0047804927453399,0.03869866207242]],[[0.074066296219826,0.0041326014325023,-0.03875270113349],[-0.054022554308176,-0.031524714082479,-0.021695142611861],[0.017635690048337,-0.012764220125973,0.035817492753267]],[[0.050324007868767,-0.030274767428637,0.025461815297604],[0.065459653735161,-0.02548791654408,-0.042452290654182],[0.0025713907089084,0.018309094011784,0.00042697807657532]],[[-0.0045868647284806,-0.054083157330751,-0.017861416563392],[0.020419873297215,0.018404820933938,-0.018569078296423],[-0.06961864233017,-0.029924334958196,-0.025615451857448]],[[0.041239809244871,0.068289086222649,-0.013166774995625],[-0.056003127247095,-0.013119021430612,0.024693638086319],[0.016513764858246,0.01319466996938,-0.10258397459984]],[[-0.037000551819801,-0.013559781014919,0.050334323197603],[-0.10676664859056,-0.069109953939915,-0.03455526009202],[0.075369000434875,-0.063116401433945,-0.066447831690311]],[[0.00177555764094,0.012017766013741,-0.03309091553092],[0.056329339742661,0.089984439313412,0.00025483869831078],[-0.02292793430388,-0.072089314460754,-0.047497909516096]],[[-0.070664957165718,0.034155651926994,0.0069745606742799],[0.11938559263945,0.0068303090520203,-0.053669974207878],[-0.044931825250387,-0.015988182276487,0.0014429631410167]],[[0.053282104432583,-0.0079737463966012,-0.04181345179677],[0.019407199695706,0.032442674040794,-0.018721766769886],[-0.0065044690854847,-0.049507822841406,0.035305835306644]],[[0.043663244694471,-0.018935175612569,0.019484847784042],[0.032133847475052,0.035562690347433,-0.10487058758736],[0.057491432875395,0.012041617184877,0.0079492777585983]],[[0.015033894218504,-0.045367147773504,0.010922335088253],[0.007689687423408,0.027095640078187,0.079676665365696],[-0.14385142922401,-0.01876681111753,0.062776401638985]],[[0.027346663177013,0.0097897509112954,0.025308528915048],[-0.015231858938932,0.041196819394827,0.012161773629487],[0.027717966586351,-0.04870492592454,0.028766063973308]],[[-0.027908366173506,-0.079442635178566,0.010743477381766],[0.023592686280608,0.05051851272583,-0.013879732228816],[0.0076326970010996,-0.0074378964491189,-0.015910906717181]],[[-0.0092113083228469,-0.00040579488268122,-0.021907595917583],[0.0050494247116148,0.020456973463297,0.039666879922152],[-0.022215506061912,0.053381491452456,-0.012409971095622]],[[-0.044680379331112,-0.016891939565539,0.021481411531568],[-0.012690549716353,-0.0032794596627355,-0.024466963484883],[0.023551501333714,0.018624307587743,-0.086783476173878]],[[-0.048349443823099,-0.0010022034402937,-0.015772214159369],[0.064160391688347,0.024507017806172,-0.067800454795361],[0.0076437555253506,0.026952257379889,-0.020907483994961]],[[-0.0098996693268418,-0.066927164793015,0.0011589889181778],[-0.011309095658362,-0.071333289146423,0.011539286933839],[-0.039018139243126,0.016042632982135,-0.023432739078999]],[[-0.017121642827988,-0.068144157528877,-0.075631409883499],[-0.015411227941513,-0.014686650596559,-0.024567754939198],[-0.045992959290743,-0.0015388590982184,-0.091313496232033]],[[0.022906394675374,-0.010371306911111,-0.06643108278513],[-0.070585608482361,-0.048429008573294,0.044924736022949],[0.041872099041939,0.0088864751160145,-0.034972261637449]],[[-0.012631546705961,-0.06823468953371,-0.042642902582884],[-0.0034106594976038,0.063128851354122,-0.0088274674490094],[0.019433725625277,-0.027304030954838,-0.054864693433046]],[[-0.057313822209835,-0.017176028341055,0.023918567225337],[-0.011450449004769,-0.02890632301569,0.046713758260012],[0.01395302079618,-0.044514559209347,0.01591862924397]],[[0.043553456664085,-0.044287350028753,-0.017121907323599],[0.033736728131771,-0.040161550045013,0.024365453049541],[-0.0036068379413337,0.0344034768641,-0.026033483445644]],[[-0.054943982511759,0.032816287130117,-0.018102336674929],[-0.068124800920486,0.028727253898978,-0.024329654872417],[-0.053560357540846,-0.038334473967552,0.035420507192612]],[[0.020335050299764,0.0043371594510972,-0.037787150591612],[-0.040494550019503,0.0030165624339134,-0.018050001934171],[0.010694609954953,-0.05199633166194,-0.012797883711755]],[[0.032894566655159,-0.0099034011363983,-0.10718471556902],[0.0252764839679,0.052922997623682,-0.027317525818944],[0.039534855633974,-0.05613474547863,0.012149310670793]],[[-0.046247221529484,-0.038792494684458,0.01407505851239],[-0.055834449827671,0.043640911579132,-0.045919612050056],[-0.0083375796675682,-0.038798999041319,0.0067760772071779]],[[-0.032095570117235,0.031829502433538,0.033702116459608],[-0.077076703310013,0.028079725801945,-0.050729315727949],[-0.0074515799060464,-0.052135091274977,-0.0097570056095719]],[[-0.047599717974663,-0.028456155210733,0.0042543835006654],[-0.0030959073919803,-0.020283745601773,0.045809730887413],[-0.041838750243187,0.029418947175145,0.015498927794397]],[[-0.026219850406051,0.020412972196937,-0.071781933307648],[-0.084155112504959,0.019993722438812,0.022009154781699],[-0.014689594507217,0.0058945473283529,-0.036709275096655]],[[0.023916577920318,0.080793917179108,0.007035770919174],[-0.0033346652053297,0.032131891697645,0.0045434175990522],[-0.10720670223236,-0.0046017584390938,-0.029588893055916]],[[-0.039236012846231,-0.0011680385796353,0.076396949589252],[-0.048283878713846,-0.019784275442362,-0.066496670246124],[0.0091490177437663,0.063488394021988,-0.0042468868196011]],[[-0.0086646573618054,-0.020658439025283,-0.068510010838509],[-0.0022059660404921,-0.022095574066043,0.0020388083066791],[-0.020994065329432,0.084560886025429,0.012545382604003]],[[0.078417874872684,-0.005586517509073,-0.0030708524864167],[-0.018541174009442,-0.013278413563967,0.053594771772623],[0.0041014356538653,0.039635799825191,0.032110456377268]],[[-0.03448474034667,-0.0031144155655056,0.040589570999146],[-0.044459342956543,-0.054788444191217,-0.016540940850973],[-0.038024429231882,0.00083934550639242,0.053134329617023]],[[0.070067830383778,0.0609325543046,0.022675739601254],[-0.0093357907608151,-0.0049201394431293,-0.0047461027279496],[0.0043654078617692,-0.010515997186303,-0.016244176775217]],[[-0.036250684410334,0.027449101209641,-0.0052017099224031],[-0.027311652898788,-0.094923377037048,-0.0029041185043752],[-0.043239463120699,-0.013210081495345,0.026516821235418]],[[0.04450161755085,0.030371500179172,0.0079778470098972],[0.057897217571735,-0.035084392875433,-0.0069101052358747],[0.0047470335848629,0.0215436629951,0.033358015120029]],[[0.0030228241812438,0.039419565349817,-0.0030466520693153],[-0.026914538815618,-0.013948186300695,0.023618565872312],[-0.038106475025415,-0.018334235996008,0.0064495666883886]],[[-0.054543733596802,-0.055695593357086,0.063937693834305],[-0.021459050476551,-0.00033294927561656,-0.02465601451695],[0.086326360702515,-0.091962844133377,-0.028291095048189]],[[0.034636557102203,0.0068240878172219,-0.030004406347871],[0.014537760056555,-0.013416611589491,-0.014511595480144],[-0.052446313202381,-0.015563605353236,-0.019379889592528]],[[-0.022336212918162,0.011370646767318,0.046718254685402],[-0.062446482479572,-0.034287225455046,-0.012681411579251],[-0.030209664255381,0.0038169377949089,-0.015292592346668]],[[-0.036088850349188,-0.011810746043921,-0.04718691110611],[-0.018015364184976,-0.10659312456846,0.057222384959459],[-0.066978372633457,-0.028567275032401,0.038565181195736]],[[0.028756715357304,0.038590498268604,0.059212487190962],[-0.023104999214411,-0.0062360754236579,-0.034045267850161],[-0.014677973464131,-0.075461074709892,-0.01714139804244]],[[0.02927727997303,0.016134293749928,-0.022132586687803],[0.022141924127936,0.022043894976377,-0.028206966817379],[0.016618724912405,0.046758480370045,-0.041244465857744]],[[0.05943788215518,-0.079315334558487,-0.038747973740101],[-0.030672343447804,0.029847886413336,0.0210772883147],[0.0023363784421235,-0.064440496265888,0.00048328915727325]],[[0.052600935101509,0.0026420617941767,-0.010981734842062],[-0.046684466302395,-0.044045932590961,-0.020687833428383],[-0.047695141285658,0.033460669219494,0.046521078795195]],[[-0.030845638364553,0.017498008906841,0.0025415285490453],[-0.032046709209681,-0.0028651414904743,0.033734865486622],[-0.03465474396944,0.040505360811949,-0.046330075711012]],[[-0.041673541069031,0.014583544805646,0.073528274893761],[0.016018107533455,-0.012441919185221,-0.030457651242614],[-0.024861145764589,-0.019919661805034,-0.05577277392149]],[[-0.041571367532015,0.021098934113979,-0.079257801175117],[0.0059740203432739,-0.0077345250174403,-0.023741899058223],[-0.036890685558319,0.037630248814821,-0.0016971158329397]],[[0.036367405205965,-0.022255202755332,-0.023317685350776],[-0.10589332133532,-0.038579829037189,-0.030986003577709],[-0.010175955481827,0.11328118294477,-0.032883759588003]],[[0.0034324971493334,-0.046169340610504,0.049646489322186],[-0.036019511520863,0.032814964652061,0.027032501995564],[-0.080223947763443,0.02255048789084,-0.038849983364344]],[[-0.063206352293491,-0.0234848074615,0.017741562798619],[-0.013826197944582,0.046630103141069,-0.061347972601652],[-0.053372006863356,0.015329685993493,0.043456677347422]],[[0.020409651100636,-0.041094616055489,-0.014540245756507],[-0.037500645965338,0.0018167443340644,-0.026317426934838],[0.0094335786998272,-0.02698814868927,0.0092887077480555]],[[-0.09293770045042,-0.049872510135174,0.019257847219706],[-0.004264741204679,0.056604154407978,-0.042940348386765],[0.076746910810471,0.062826663255692,-0.11075031757355]],[[-0.026856815442443,-0.018839931115508,0.02232957072556],[-0.025347918272018,0.043269861489534,0.012811311520636],[0.025877768173814,-0.045801166445017,0.018568903207779]],[[-0.028011914342642,0.027631934732199,0.0088777160272002],[-0.019186725839972,-0.10061917454004,-0.041607338935137],[0.034312874078751,-0.025634115561843,-0.045687258243561]],[[-0.042090725153685,-0.059066165238619,0.034229885786772],[0.014518793672323,-0.0076709357090294,0.016674229875207],[-0.014904029667377,0.048471972346306,0.021185860037804]],[[0.0024836603552103,-0.042786076664925,0.036547932773829],[0.061276365071535,-0.0058546527288854,-0.035438232123852],[0.00069384480593726,-0.050019048154354,-0.085388734936714]],[[0.027256639674306,0.032012350857258,0.016231223940849],[-0.0063871899619699,0.02782940864563,0.0039545744657516],[0.042461164295673,-0.016945963725448,0.0047593787312508]],[[-0.076756343245506,-0.036746297031641,0.051623355597258],[-0.037176657468081,-0.0056934957392514,-0.13246580958366],[-0.0047433511354029,0.083016730844975,-0.10905905812979]],[[-0.066018722951412,0.0095622213557363,0.003796654054895],[0.0055254762992263,0.029467871412635,0.011053200811148],[0.0089741935953498,0.01173457223922,0.049998942762613]],[[-0.05746578797698,0.012740716338158,0.042108800262213],[-0.022245761007071,0.044267781078815,0.0061660846695304],[-0.031062306836247,-0.060029361397028,0.0081136245280504]],[[-0.028511140495539,0.023331085219979,-0.039009131491184],[-0.027451187372208,0.00047127297148108,-0.014187373220921],[-0.056652493774891,0.10774116963148,-0.046341557055712]],[[-0.076118908822536,-0.036868534982204,-0.026540422812104],[-0.070484392344952,-0.035284452140331,0.055767647922039],[-0.045384861528873,-0.012588324956596,-0.029759647324681]],[[-0.061832934617996,-0.015210415236652,-0.0065370202064514],[-0.030379176139832,-0.025430152192712,0.00027160119498149],[-0.06921711564064,0.068289041519165,-0.00070947903441265]],[[-0.015639577060938,-0.041096400469542,0.055180300027132],[-0.073605641722679,0.015238421037793,-0.06605426967144],[-0.040135655552149,0.00082955654943362,0.067881874740124]],[[0.0066598411649466,0.053769171237946,0.040544737130404],[0.0047918143682182,0.020863385871053,-0.036881346255541],[-0.039976004511118,0.077628418803215,0.045251093804836]],[[0.0083298059180379,-0.040858287364244,0.065561316907406],[0.057887148112059,-0.021050559356809,-0.051883168518543],[-0.00072498648660257,0.089456252753735,-0.080045759677887]],[[0.012153533287346,0.029974931851029,0.032523639500141],[-0.074504375457764,0.080410994589329,0.051943272352219],[0.0667579844594,-0.016370447352529,0.063701942563057]],[[0.036463961005211,-0.035966612398624,0.0092923482879996],[0.022139154374599,0.060028072446585,-0.074576452374458],[-0.078221008181572,-0.01704298146069,0.0039918385446072]],[[-0.02971369959414,0.043025799095631,-0.040206823498011],[-0.041931983083487,-0.0075345844961703,0.0041929702274501],[-0.02438529022038,0.076863467693329,-0.027932420372963]],[[-0.10515586286783,0.020199224352837,-0.0036670560948551],[-0.024310007691383,-0.0054305545054376,-0.050193086266518],[-0.00020632856467273,0.013101632706821,0.080257833003998]],[[-0.0013022925704718,-0.041550114750862,0.035612490028143],[-0.033146131783724,-0.0101014720276,0.0033658402971923],[-0.024572357535362,-0.0095334304496646,0.017745250836015]],[[0.026512771844864,-0.039558425545692,0.0033380554523319],[-0.018012365326285,-0.049177307635546,0.065192967653275],[-0.014039557427168,-0.068768344819546,-0.002900306135416]],[[-0.03763971477747,-0.048656303435564,-0.031871110200882],[0.052994463592768,-0.032116234302521,-0.002052100840956],[-0.021884990856051,0.066947676241398,-0.0074887434020638]],[[0.028503447771072,-0.028664238750935,0.020232170820236],[0.019192267209291,-0.064571164548397,0.02619850449264],[0.016773585230112,-0.0376329831779,-0.0024234037846327]],[[0.019860725849867,-0.035166464745998,0.041226726025343],[0.056328147649765,-0.023224806413054,0.030964808538556],[0.033789474517107,-0.023843517526984,-0.0049877492710948]],[[0.013762205839157,-0.029386268928647,0.045579552650452],[0.0058017908595502,0.0056288447231054,-0.018216596916318],[0.0040143937803805,0.054752241820097,-0.019447054713964]],[[0.014416418038309,0.064772896468639,-0.03686061501503],[-0.023066587746143,-0.06022647023201,-0.012918933294713],[0.049805041402578,-0.058114606887102,-0.0096868984401226]],[[-0.02122419886291,0.0035522333346307,0.063159167766571],[-0.011247598566115,-0.021602308377624,-0.04673133790493],[-0.017523046582937,0.016775157302618,-0.014738839119673]],[[0.028976801782846,0.0083537604659796,0.046792212873697],[-0.034929145127535,-0.028563631698489,0.0010259817354381],[0.083103820681572,-0.020891437307,0.036650251597166]],[[-0.01903361082077,-0.10210696607828,0.051144175231457],[-0.016104813665152,0.081859283149242,-0.041590567678213],[-0.0079325791448355,0.017849730327725,-0.04833297431469]],[[-0.0018901386065409,0.081182278692722,0.016303267329931],[0.00088875432265922,-0.046257890760899,0.031245581805706],[0.019165828824043,-0.012547236867249,-0.048279110342264]],[[0.00068010785616934,-0.0071517010219395,-0.056531976908445],[-0.028602600097656,-0.035299032926559,-0.052023630589247],[-0.038669288158417,0.026799485087395,0.027722848579288]],[[0.00051565520698205,0.049138970673084,0.045654840767384],[-8.4988052549306e-05,-0.03221932426095,-0.044377140700817],[0.0078207040205598,-0.060613892972469,0.071119494736195]],[[0.026693997904658,-0.0028566969558597,-0.020430134609342],[-0.025981767103076,-0.015390012413263,-0.014302181079984],[-0.073516897857189,-0.0085449311882257,0.075129203498363]],[[-0.077293112874031,-0.0054359729401767,-0.0037216152995825],[-0.031268376857042,0.0031215890776366,0.032462231814861],[-0.044290538877249,-0.063705451786518,0.023515280336142]],[[0.016226917505264,-0.0054226550273597,-0.022533047944307],[0.0031780896242708,-0.057042602449656,0.06052989512682],[-0.020377580076456,0.0091997208073735,0.0480069629848]],[[-0.016360998153687,-0.01087439339608,-0.066829092800617],[0.014470604248345,0.060254354029894,-0.033925719559193],[-0.049859054386616,-0.031918603926897,-0.040195439010859]],[[0.012164819054306,-0.041733860969543,0.011874256655574],[-0.03420290723443,-0.032098010182381,-0.022439152002335],[-0.0095794387161732,-0.0044815558940172,-0.021166911348701]],[[-0.028046844527125,0.042945332825184,0.044553183019161],[0.027816779911518,-0.036293886601925,-0.021306997165084],[-0.051070779561996,0.005734505597502,0.030072396621108]],[[-0.061241425573826,-0.027695138007402,-0.060712307691574],[0.03800293803215,0.01366420276463,0.05590146407485],[-0.056525506079197,-0.032742157578468,-0.045001402497292]],[[0.0073130908422172,0.033625233918428,-0.0088435700163245],[0.0083413161337376,-0.090896956622601,-0.025662835687399],[-0.019420463591814,-0.029197130352259,-0.0059910011477768]],[[-0.00019122633966617,-0.027244780212641,-0.031710974872112],[-0.025755845010281,0.008537576533854,0.056046642363071],[-0.028760833665729,0.05110714957118,-0.008115173317492]],[[0.011945471167564,-0.026326214894652,0.019500244408846],[-0.07568134367466,-0.019523750990629,0.046366982161999],[0.043181519955397,-0.025360433384776,0.01464671548456]],[[0.050421137362719,0.026622842997313,-0.0122593883425],[-0.071964249014854,-0.1154316291213,-0.0097964210435748],[0.014823940582573,0.025056269019842,-0.0068797944113612]],[[-0.028944721445441,-0.011354026384652,-0.057530667632818],[0.042912423610687,0.084765054285526,0.02231059782207],[-0.06362260133028,-0.037607941776514,-0.081670746207237]],[[-0.10173954069614,-0.038939602673054,-0.0071486136876047],[-0.119668610394,-0.047134891152382,-0.011043336242437],[-0.0385697260499,-0.014391155913472,0.00032860517967492]],[[-0.073881834745407,-0.018871657550335,-0.0065772938542068],[-0.0013244290603325,-0.03260312974453,0.011845887638628],[-0.068891033530235,0.030020399019122,-0.009734034538269]],[[-0.013133957982063,0.053333915770054,0.041912842541933],[-0.021002186462283,0.013147862628102,-0.0021829751785845],[-0.0051735513843596,0.030183542519808,-0.037003088742495]],[[0.028887527063489,-0.038198854774237,-0.035992525517941],[-0.035243656486273,-0.048097670078278,-0.033755496144295],[0.051279854029417,-0.011635625734925,0.035720240324736]],[[0.025636900216341,-0.054578103125095,0.0051751933060586],[0.040873184800148,-0.0035386472009122,-0.021154442802072],[-0.011485904455185,-0.029312932863832,-0.020931931212544]],[[0.015661757439375,-0.0033233514986932,-0.049279872328043],[-0.0072337198071182,0.042755763977766,-0.048257749527693],[-0.013668871484697,0.049110140651464,0.016643300652504]],[[-0.015597384423018,-0.037548374384642,0.060858022421598],[0.01270701084286,0.006284817121923,-0.030433291569352],[-0.052141986787319,0.012694071978331,-0.059090204536915]],[[-0.052072037011385,-0.035353805869818,-0.0029793612193316],[-0.03574001789093,0.0029926761053503,0.00086172774899751],[-0.018330920487642,0.025569258257747,-0.021428655833006]],[[0.03639118745923,0.036839716136456,-0.0098240459337831],[0.00094394426560029,-0.055773504078388,0.067316144704819],[-0.041382294148207,0.0056909723207355,0.046522419899702]],[[0.034882012754679,-0.040355123579502,-0.056919977068901],[0.025598213076591,0.014199282974005,0.038973368704319],[0.014859301969409,-0.05713402107358,-0.042292363941669]],[[-0.024174589663744,-0.060077369213104,-0.018842790275812],[0.044841442257166,0.056932151317596,0.045681431889534],[-0.042085006833076,0.040059342980385,-0.0040728808380663]],[[-0.0049002072773874,-0.035660732537508,-0.062864571809769],[0.061104908585548,-0.006836386397481,-0.033760510385036],[-0.019173074513674,0.021745905280113,0.053560800850391]],[[-0.094222173094749,0.0019278296967968,-0.0056282738223672],[-0.016520591452718,-0.0010252305073664,-0.022020904347301],[-0.014333890751004,0.00025537586770952,-0.027232555672526]],[[0.0053741335868835,-0.07923786342144,0.0024312811437994],[0.043971944600344,-0.038286227732897,0.049575742334127],[-0.0068503092043102,-0.03175139054656,-0.031009294092655]],[[-0.03128295764327,-0.074541911482811,0.026908382773399],[0.021792074665427,0.063164383172989,-0.0047027375549078],[0.049752749502659,-0.0289883967489,0.0014188430504873]],[[-0.0014589562779292,-0.0060677658766508,0.0082236556336284],[-0.02517893537879,0.026394905522466,-0.057863831520081],[0.032356072217226,-0.020473720505834,-0.03001569211483]],[[-0.0263153295964,0.017967322841287,0.025936340913177],[0.048362635076046,0.045385509729385,0.011141917668283],[-0.041650537401438,-0.053853038698435,0.0034669481683522]],[[-0.001765004475601,-0.0031750006601214,0.026455329731107],[-0.066436223685741,0.044327709823847,0.011162548325956],[-0.014853609725833,-0.036388020962477,0.045712478458881]],[[-0.014237904921174,0.0074822879396379,-0.030228294432163],[0.020371224731207,-0.13036759197712,0.011227569542825],[0.075488150119781,-0.01200130302459,-0.028025094419718]],[[-0.034768886864185,0.061402909457684,0.055127561092377],[-0.13020756840706,0.0099177490919828,-0.043153595179319],[-0.012521297670901,0.087824620306492,-0.052639458328485]],[[-0.060441259294748,-0.0046355798840523,-0.0024588836822659],[-0.03430062904954,-0.030811712145805,0.048199463635683],[-0.01255489140749,-0.036393355578184,-0.060456544160843]],[[0.02396360039711,0.0066116526722908,-0.032279316335917],[-0.0010994874173775,0.014487691223621,-0.027467472478747],[-0.080945037305355,-0.025166509672999,0.047024089843035]],[[0.0076973498798907,0.015257535502315,-0.054177049547434],[-0.01713353022933,-0.002028722083196,0.014314766041934],[-0.025972004979849,0.0024174835998565,0.022619493305683]],[[-0.010020585730672,0.0041194758377969,0.037131417542696],[0.021845739334822,0.053022172302008,-0.073899112641811],[0.063828095793724,-0.032754227519035,-0.0082823177799582]],[[0.022359957918525,0.00077203067485243,0.0036243447102606],[0.041108395904303,0.01047345995903,-0.0095594022423029],[-0.0094038583338261,-0.061189640313387,0.062816731631756]],[[-0.10051520913839,-0.013949315063655,-0.039056666195393],[0.023728791624308,-0.0073879789561033,0.000871108379215],[0.024589793756604,0.074154876172543,0.036286916583776]],[[-0.024005828425288,0.056732907891273,-0.0011249140370637],[0.013317224569619,-0.0032730035018176,-0.047669168561697],[0.024720938876271,-0.036343056708574,0.046193171292543]]],[[[0.0039304941892624,-0.020892878994346,0.0049441079609096],[0.049695380032063,0.031471628695726,0.054789889603853],[-0.032260052859783,0.027092067524791,0.056207202374935]],[[0.0061104246415198,-0.0014083462301642,0.00089065503561869],[0.021471047773957,-0.011022424325347,0.04021904245019],[-0.0083362692967057,0.090749844908714,0.0011330054840073]],[[0.033932086080313,0.059012714773417,-0.081203676760197],[0.074110858142376,0.034255512058735,0.09196649491787],[0.10692655295134,-0.04692293331027,0.042445082217455]],[[0.0023532288614661,0.0075184246525168,0.014039979316294],[-0.00079521629959345,0.0062511549331248,-0.025728853419423],[0.091726645827293,0.055556379258633,-0.044321522116661]],[[0.0053256922401488,-0.0016515660099685,0.054708264768124],[0.014298177324235,-0.039532747119665,-0.022671611979604],[-0.0097741950303316,-0.0095345769077539,0.055486723780632]],[[0.055802006274462,-0.0015342705883086,-0.024706985801458],[-0.013533532619476,0.0093438727781177,-0.016495322808623],[0.012815433554351,0.031189782544971,0.058174561709166]],[[-0.00091052305651829,0.017198337242007,-0.023606652393937],[-1.4135989658826e-05,0.03495330363512,-0.020782213658094],[0.0014880737289786,0.028208933770657,0.057120621204376]],[[-0.024240463972092,-0.032419040799141,-0.011153106577694],[-0.028037337586284,-0.024429142475128,0.0092481151223183],[-0.017345316708088,0.02306267246604,0.043136455118656]],[[0.021458547562361,0.013928223401308,0.03788798302412],[-0.069267727434635,-0.070736467838287,0.019069598987699],[0.024659944698215,0.059853196144104,-0.042741853743792]],[[-0.017755649983883,0.14791817963123,-0.039279110729694],[-0.051761131733656,-0.00045412621693686,-0.079758994281292],[0.062456667423248,0.10594851523638,0.098441369831562]],[[0.043983563780785,-0.06967730820179,0.016889963299036],[4.0618186176289e-05,-0.046775046736002,0.077212028205395],[0.015164405107498,-0.062154069542885,0.08864787966013]],[[0.074410475790501,0.048551607877016,-0.026002578437328],[0.057647120207548,-0.039789311587811,-0.044231940060854],[-0.06784176081419,0.043010488152504,0.04866236448288]],[[0.018293300643563,0.0047702873125672,0.078832484781742],[0.037340689450502,0.013473838567734,-0.014094940386713],[-0.016883846372366,0.057866133749485,0.03329212218523]],[[-0.028247671201825,0.020388096570969,0.059634763747454],[-0.025323441252112,-0.0084052374586463,0.060236189514399],[-0.0243910998106,0.051889814436436,-0.033886313438416]],[[0.095740795135498,-0.0053934748284519,0.037953227758408],[-0.017649818211794,0.14877034723759,0.10558712482452],[0.072564788162708,0.018452130258083,0.095517814159393]],[[-0.051120176911354,-0.012881032191217,-0.029747016727924],[0.02375522069633,0.0014548826729879,-0.024823691695929],[-0.073944993317127,-0.058659870177507,-0.045757062733173]],[[0.010145647451282,0.047452364116907,-0.036952555179596],[-0.060503110289574,0.040642682462931,0.039594396948814],[-0.025662010535598,0.025513017550111,-0.04315559566021]],[[0.03196719661355,0.039516534656286,-0.08340248465538],[-0.08333071321249,-0.049004573374987,0.024463394656777],[-0.04480454698205,-0.027309922501445,0.034103728830814]],[[0.053833708167076,-0.0028235269710422,-0.009233889169991],[0.044604852795601,-0.022778591141105,-0.0010653571225703],[-0.08044845610857,0.039592493325472,0.033085763454437]],[[-0.024448785930872,-0.0096047092229128,-0.016294285655022],[-0.0088196368888021,0.049926411360502,-0.010226801969111],[-0.0049166614189744,0.012353114783764,0.016586082056165]],[[-0.025648890063167,-0.072075486183167,-0.021006163209677],[-0.022733900696039,-0.02224906347692,-0.011815182864666],[-0.026211932301521,-0.011334918439388,0.04985174536705]],[[0.028032863512635,-0.066684454679489,0.058394834399223],[0.071580842137337,0.067600935697556,0.011315519921482],[0.12250098586082,0.10770496726036,0.089348442852497]],[[0.089067004621029,-0.038221251219511,-0.048642616719007],[-0.029085321351886,0.096565015614033,0.016609208658338],[0.033172778785229,-0.054267231374979,0.056263443082571]],[[-0.046224605292082,-0.032174345105886,-0.0029616542160511],[0.020307617262006,-0.062281236052513,-0.0024335351772606],[-0.086407229304314,-0.026072703301907,-0.020608264952898]],[[-0.042962461709976,0.013159007765353,0.0061573558486998],[0.03060626424849,0.07284464687109,-0.0028537588659674],[0.025294413790107,0.056630544364452,0.083436861634254]],[[0.10909655690193,0.0046459967270494,0.058914076536894],[0.010364095680416,0.046505998820066,-0.015352388843894],[0.025128398090601,0.015508865937591,-0.049804218113422]],[[0.030443297699094,-0.006659637670964,-0.0081621902063489],[0.047539610415697,-0.0047266450710595,0.064505353569984],[-0.052894070744514,0.095692813396454,0.029834685847163]],[[0.042597763240337,-0.064721435308456,0.0057250969111919],[-0.042849533259869,-0.0083367954939604,0.065965607762337],[0.040197297930717,-0.040816929191351,-0.01940786652267]],[[-0.020085075870156,0.056728649884462,0.015969647094607],[-0.032036509364843,0.070605367422104,-0.0051282118074596],[0.018711801618338,0.064191110432148,0.11943358927965]],[[0.097577378153801,0.016188435256481,-0.03718576580286],[0.0026151076890528,0.011353484354913,0.024827713146806],[0.04646410793066,0.076180808246136,0.065103940665722]],[[0.033032353967428,0.0014945878647268,-0.038152035325766],[-0.074858486652374,0.01144500169903,0.036141771823168],[0.082977563142776,-0.041840337216854,-0.0074915871955454]],[[-0.055924210697412,-0.040010906755924,0.029844405129552],[-0.014241655357182,-0.025696845725179,-0.059110719710588],[0.0047413660213351,-0.017513303086162,-0.0081963893026114]],[[0.045998673886061,-0.0045341718941927,0.037401758134365],[0.070370092988014,0.0061307083815336,-0.055518060922623],[0.07692889124155,0.076530858874321,-0.0054802861995995]],[[-0.057127635926008,-0.031066348776221,-0.046818293631077],[0.06825464963913,-0.011708160862327,0.031332444399595],[-0.054655879735947,0.10614345222712,-0.028786901384592]],[[0.050945371389389,0.016785645857453,-0.022135850042105],[0.034661386162043,-0.0093312487006187,0.06477427482605],[0.066657155752182,-0.029483359307051,-0.080489039421082]],[[0.037859056144953,-0.0038411803543568,0.031073614954948],[-0.057261999696493,-0.011567239649594,-0.01344732940197],[0.03644447401166,-0.033725220710039,-0.01652941852808]],[[0.0064675863832235,-0.047959569841623,-0.020571779459715],[-0.034203380346298,0.0072863809764385,-0.11760015040636],[0.058380346745253,-0.031301945447922,0.016632348299026]],[[0.0032630192581564,0.065639689564705,-0.0019132706802338],[0.042034715414047,-0.069068774580956,-0.01728961057961],[0.034442324191332,0.046457666903734,0.042623765766621]],[[0.048903811722994,0.10938039422035,0.043509274721146],[0.008291001431644,-0.010451151058078,0.020234052091837],[0.0069580865092576,0.049209836870432,-0.049023471772671]],[[-0.045455366373062,0.011527013033628,-0.011339926160872],[-0.041695918887854,-0.020996199920774,-0.017483074218035],[0.014039703644812,0.010267131961882,-0.016224633902311]],[[-0.028111023828387,-0.11502197384834,0.016066543757915],[-0.03949411213398,0.037772785872221,-0.02442186512053],[0.020687287673354,-0.038921773433685,-0.022808661684394]],[[0.019795147702098,0.022213712334633,0.011805823072791],[-0.0021552632097155,-0.0016251446213573,0.028963718563318],[0.041208162903786,0.019588969647884,0.030805857852101]],[[-0.015258378349245,0.058162786066532,0.089114479720592],[-0.012113117612898,0.073186174035072,-0.020563034340739],[-0.0080753043293953,0.028863061219454,-0.013735946267843]],[[0.081405632197857,0.06464709341526,-0.024054858833551],[0.044119585305452,-0.04681533947587,-0.026821510866284],[0.038972191512585,0.051749553531408,0.024774603545666]],[[0.048379603773355,0.067451022565365,-0.030244961380959],[-0.024956803768873,0.028392855077982,-0.003885290119797],[-0.021808257326484,0.018909329548478,0.057814203202724]],[[0.073404438793659,-0.028255339711905,0.031559512019157],[0.007215263787657,-0.042637638747692,-0.0097272461280227],[0.069380946457386,-0.016935436055064,0.043368052691221]],[[0.031779162585735,0.04105456918478,0.017857125028968],[0.016049977391958,-0.018041994422674,0.082840666174889],[0.060316912829876,0.00096181320259348,-0.031736735254526]],[[-0.023828096687794,0.051813513040543,0.064335286617279],[0.061077788472176,-0.019607665017247,0.036665327847004],[0.10589721798897,-0.012127170339227,-0.0039986553601921]],[[0.03868068382144,-0.099657714366913,0.059232641011477],[-0.0323681011796,0.060336053371429,0.027128174901009],[-0.051253985613585,-0.051348760724068,0.035432100296021]],[[0.028400493785739,-0.063735648989677,-0.026666762307286],[0.01789659820497,-0.00051974406233057,-0.062125310301781],[0.023049972951412,-0.051372405141592,-0.026794197037816]],[[-0.048601485788822,-0.0073368777520955,-0.0059963162057102],[-0.083205096423626,0.052979495376348,-0.11884217709303],[0.0081543251872063,0.032700669020414,0.039261598140001]],[[0.067546151578426,-0.0016301551368088,0.089116804301739],[-0.031027015298605,-0.048499763011932,-0.060900811105967],[0.055917907506227,-0.020096372812986,0.052563320845366]],[[-0.0093878284096718,0.040787998586893,0.041154097765684],[-0.013651668094099,-0.011120761744678,-0.093877136707306],[0.03789385035634,0.034782461822033,-0.051138337701559]],[[0.0063661993481219,0.029380051419139,0.041374564170837],[-0.10762883722782,0.069215580821037,0.0022820201702416],[0.12674356997013,-0.054997060447931,0.063958205282688]],[[0.0301931835711,-0.0016480636550114,0.065963409841061],[-0.017065584659576,0.047187127172947,0.046911265701056],[0.027549924328923,0.043189715594053,0.042210783809423]],[[-0.053490325808525,-0.044869188219309,5.3138042858336e-05],[-0.0095963412895799,-0.011685226112604,0.04346015676856],[0.0017655626870692,-0.04208767414093,-0.024535425007343]],[[0.074752300977707,0.005473499186337,0.035407211631536],[0.042717941105366,-0.021032445132732,-0.065291963517666],[-0.05137412250042,0.037524506449699,-0.039205204695463]],[[0.054081935435534,0.03268089145422,-0.024459164589643],[-0.015232101082802,0.0084545342251658,0.019182607531548],[-0.00061513297259808,-0.021989392116666,0.063384242355824]],[[0.039142433553934,0.060747761279345,0.05271852016449],[-0.018806489184499,0.015798447653651,0.059858132153749],[0.010281270369887,-0.13658374547958,0.010048241354525]],[[-0.0055977571755648,0.029646983370185,-0.067272379994392],[0.022510517388582,0.037231523543596,-0.026697160676122],[-0.029926495626569,-0.081233568489552,0.008486601524055]],[[-0.050087302923203,-0.022731713950634,0.042785245925188],[-0.013227771967649,0.034244582056999,0.037834268063307],[0.046423319727182,0.043865848332644,0.018897732719779]],[[0.030667688697577,-0.057077795267105,0.033966064453125],[-0.01084841042757,0.029091700911522,0.00070296070771292],[-0.012172748334706,0.031178910285234,-0.034223020076752]],[[0.00053761986782774,0.0049640680663288,0.0018485734472051],[-0.041982688009739,-0.02478058449924,-0.088522270321846],[0.0039902650751173,-0.017239661887288,0.045943103730679]],[[0.058628760278225,0.027539225295186,0.031976297497749],[0.079555861651897,0.018281158059835,-0.0076366243883967],[0.048007916659117,-0.018872141838074,-0.043409071862698]],[[0.082985877990723,0.016044959425926,-0.023677268996835],[0.0076120672747493,0.0038280207663774,-0.0094182761386037],[-0.012818747200072,0.0057225762866437,-0.054667003452778]],[[0.030901979655027,0.030576195567846,0.065633580088615],[0.065393358469009,-0.041218236088753,-0.017961358651519],[-0.017305729910731,0.040903504937887,0.016418339684606]],[[0.073186092078686,0.061417710036039,0.014438559301198],[-0.025283861905336,-0.00080869678640738,0.0054300790652633],[0.049465022981167,-0.040825821459293,0.039708871394396]],[[-0.019610391929746,0.061274796724319,0.036012537777424],[0.0023813208099455,-0.00026091380277649,-0.019098173826933],[0.035460095852613,0.060840267688036,0.012534892186522]],[[-0.053054682910442,0.10340736061335,0.0055724820122123],[0.050282090902328,-0.043389245867729,0.034205362200737],[0.033988881856203,-0.037014778703451,-0.0016297266120091]],[[0.01009089499712,0.055166721343994,-0.014350637793541],[0.0029345066286623,-0.023275349289179,0.070272177457809],[7.3532472015359e-05,-0.0022508623078465,0.02586255967617]],[[0.0014548865146935,0.010026558302343,-0.013135101646185],[-0.03054610081017,0.043609261512756,-0.11035580188036],[-6.0870377637912e-05,-0.013932475820184,0.054135572165251]],[[0.084138303995132,0.066100113093853,0.03974923864007],[-0.031974572688341,0.052372202277184,0.051522679626942],[0.053255651146173,-0.013473760336637,0.0099789584055543]],[[0.09411508589983,-0.05366437882185,-0.032162006944418],[-0.080037802457809,0.042602203786373,0.037604998797178],[0.070681765675545,-0.051266256719828,0.0307611618191]],[[-0.0045433640480042,-0.086990870535374,0.012520289048553],[0.02538063749671,-0.007931737229228,-0.016987519338727],[0.083390317857265,-0.035102341324091,-0.069870263338089]],[[-0.0010453083086759,0.01289467420429,-0.054074764251709],[0.085773609578609,-0.10249147564173,0.044888097792864],[-0.04242530465126,-0.02336654625833,0.05604962259531]],[[-0.0056840046308935,-0.0019853226840496,-0.068021059036255],[0.023118436336517,-0.065893590450287,0.012254744768143],[-0.0020425007678568,0.020527312532067,-0.038719601929188]],[[0.03056469745934,0.029986936599016,-0.065860740840435],[0.078546650707722,0.064934261143208,0.049515292048454],[-0.048567142337561,-0.047803487628698,-0.041595917195082]],[[0.016214966773987,0.046095725148916,-0.033206827938557],[-0.0015465231845155,-0.095566876232624,-0.0026580300182104],[0.014470294117928,0.043115045875311,-0.034319296479225]],[[0.0097316820174456,0.0095417611300945,-0.021944832056761],[-0.079999916255474,0.076753169298172,0.024728883057833],[0.045167103409767,0.047294989228249,0.020077800378203]],[[-0.037744045257568,-0.0051826653070748,0.010103732347488],[-0.052366364747286,0.00085816002683714,0.028519803658128],[-0.00093011651188135,-0.029651263728738,0.006047903560102]],[[0.04494372010231,-0.0020093305502087,0.0010891802376136],[0.024222975596786,0.067320518195629,0.017587795853615],[0.014633321203291,0.0054759257473052,0.0063449526205659]],[[-0.085158728063107,-0.0032688458450139,0.010802370496094],[0.030199674889445,0.062275350093842,-0.02729819715023],[-0.034320197999477,-0.11555322259665,0.0038582403212786]],[[0.039931174367666,0.049447782337666,-0.010813622735441],[0.011572157032788,-0.013267178088427,-0.015546935610473],[-0.029544029384851,0.039248127490282,-0.021284759044647]],[[-0.015799758955836,0.056657698005438,-0.069101206958294],[-0.010585165582597,0.066680043935776,0.0475949421525],[0.053394634276628,-0.073142841458321,0.0056594982743263]],[[-0.012841222807765,0.019897568970919,0.0073845307342708],[-0.013674122281373,-0.011307415552437,-0.050470285117626],[-0.014649617485702,-0.056027207523584,-0.064347565174103]],[[0.0028566101100296,-0.0075808395631611,0.07735675573349],[0.040209636092186,-0.042161114513874,-0.018774189054966],[-0.0061847404576838,-0.081775739789009,-0.025094948709011]],[[-0.019097901880741,-0.054718792438507,-0.021610660478473],[-0.048895910382271,-0.0051969843916595,0.0063252206891775],[-0.052764814347029,0.035617548972368,0.049470636993647]],[[-0.0086827557533979,-0.0094500007107854,-0.038245677947998],[0.039175096899271,-0.039316400885582,-0.019479734823108],[0.071706861257553,0.053073558956385,-9.8655591500574e-06]],[[0.048987302929163,-0.052932638674974,0.018204674124718],[0.11288509517908,-0.017207559198141,0.050956577062607],[-0.019183741882443,-0.14168719947338,0.038213051855564]],[[-0.038558300584555,0.036432448774576,-0.0046250126324594],[0.050866644829512,0.0050409459508955,0.032622177153826],[-0.038619048893452,-0.015106317587197,-0.012949088588357]],[[-0.016305739060044,-0.0047566834837198,0.025048658251762],[0.044762875884771,0.007701066788286,0.0014207722852007],[0.089140802621841,0.01943675801158,0.0074860146269202]],[[-0.016156772151589,-0.0047222184948623,-0.039770238101482],[0.027898460626602,-0.079243242740631,0.072571605443954],[-0.094997763633728,-0.10029077529907,-0.030386323109269]],[[-0.016281306743622,0.0015349888708442,-0.025711663067341],[0.062135118991137,-0.0098100556060672,-0.023723034188151],[-0.0055015441030264,0.029445867985487,0.064315438270569]],[[0.06638740748167,0.025879301130772,0.05822704359889],[0.027618272230029,-0.030284937471151,-0.013767243362963],[-0.010153785347939,0.0003685737028718,0.029379768297076]],[[-0.043100733309984,0.018078219145536,0.023172816261649],[0.024263169616461,0.087346449494362,0.042391639202833],[0.038176495581865,-0.08209066092968,-0.030979020521045]],[[-0.019603399559855,-0.045940186828375,-0.059728670865297],[-0.005172707606107,-0.039528258144855,-0.010408429428935],[-0.022068094462156,-0.00089630100410432,0.031510911881924]],[[-0.0083271758630872,0.00094622391043231,-0.014274060726166],[0.064891807734966,-0.03009925968945,-0.094266816973686],[0.046454697847366,0.035395443439484,0.041123203933239]],[[0.036809220910072,0.043352451175451,0.0051019517704844],[-0.03544731810689,0.010375336743891,-0.049107201397419],[0.043761041015387,0.0083312634378672,0.0049973037093878]],[[-0.0050436141900718,0.06492718309164,0.03086899407208],[-0.012194976210594,0.098243936896324,0.01256313174963],[0.01850013807416,0.09476512670517,-0.00029139686375856]],[[-0.014086366631091,-0.010469162836671,0.034863982349634],[-0.001481169834733,0.017716780304909,0.0026327115483582],[-0.028158923611045,-0.05036173760891,-0.0064996955916286]],[[0.026305504143238,-0.028282197192311,0.06340729445219],[-0.0048811137676239,-0.02450823225081,-0.037396773695946],[-0.040910266339779,-0.11565604060888,0.052200678735971]],[[-0.013356550596654,-0.044263422489166,0.007367895450443],[0.037169560790062,-0.021689152345061,-0.018379736691713],[0.052000645548105,0.011113984510303,-0.021421821787953]],[[-0.017882768064737,-0.0051280306652188,-0.034830179065466],[-0.0024290131404996,0.043512627482414,0.047253295779228],[0.077524624764919,0.0027489496860653,0.013839130289853]],[[-0.0098629454150796,0.052411209791899,-0.046196606010199],[0.0019452385604382,-0.031229881569743,-0.01779112778604],[-0.019825061783195,-0.060404658317566,0.031422860920429]],[[-0.024197110906243,0.094698332250118,-0.014847313985229],[0.014975749887526,-0.037426393479109,-0.0128722647205],[0.013259091414511,-0.0031106015667319,0.013359183445573]],[[-0.0053234226070344,0.03078687004745,0.058918338268995],[0.011357512325048,0.049828972667456,-0.047809835523367],[0.031212721019983,-0.012437895871699,-0.040696978569031]],[[0.042908266186714,-0.074426382780075,0.049876678735018],[0.087499931454659,0.0058058346621692,0.050439145416021],[-0.014641799032688,-0.031816158443689,-0.030475456267595]],[[-0.072244234383106,0.012236176989973,0.068457208573818],[-0.042749620974064,-0.084697715938091,-0.0074939643964171],[-0.11747413873672,0.0079464474692941,0.051769480109215]],[[0.023131685331464,-0.10974998027086,0.038443762809038],[-0.018425626680255,0.099680654704571,0.035711832344532],[-0.037212751805782,-0.0078531336039305,0.0056418520398438]],[[-0.0043889046646655,5.867553409189e-05,0.050334297120571],[0.023108225315809,0.036740604788065,0.042600464075804],[0.0043027498759329,-0.0011849468573928,-0.010457749478519]],[[0.027769340202212,0.026485020294785,-0.074041977524757],[-0.017639938741922,0.016072228550911,-0.018940439447761],[0.0087247639894485,-0.026224249973893,0.06895487010479]],[[-0.077324353158474,-0.075737044215202,-0.037253960967064],[-0.013327619992197,0.055421590805054,-0.029070658609271],[-0.028300201520324,0.013933555223048,-0.053542032837868]],[[-0.025271886959672,-0.048048358410597,-0.0094256363809109],[0.014610187150538,-0.011900634504855,-0.010463719256222],[-0.0016112520825118,-0.035026252269745,0.033490221947432]],[[-0.045174490660429,-0.034641951322556,0.034599203616381],[0.01121590193361,0.019486943259835,-0.07579043507576],[-0.022615713998675,-0.11106708645821,0.036655254662037]],[[-0.0093106906861067,-0.017641613259912,0.077798403799534],[0.054261680692434,-0.050992231816053,0.032251179218292],[0.020873118191957,0.021970305591822,-0.022596767172217]],[[0.034771129488945,0.002688268898055,0.05001999810338],[-0.012164803221822,0.026535075157881,-0.041217420250177],[-0.0026261466555297,0.07490961253643,0.056205376982689]],[[0.078395836055279,0.05437920987606,0.0007663729484193],[-0.025013128295541,-0.013617519289255,0.08815535902977],[-0.0022727705072612,0.10923489928246,0.0091219376772642]],[[0.051324971020222,-0.031640276312828,-0.021305644884706],[0.012593284249306,0.034893877804279,-0.00096067652339116],[0.055876955389977,0.0019940899219364,-0.0012791262706742]],[[-0.011808379553258,0.065231956541538,-0.016425540670753],[0.10101694613695,0.0099040828645229,-0.011027094908059],[-0.083314448595047,0.043162800371647,-0.027246363461018]],[[-0.04905104264617,-0.027300609275699,0.0053345034830272],[0.00075432489393279,-0.077863797545433,-0.076234355568886],[-0.026462847366929,0.0085599152371287,0.031220106408]],[[0.024580171331763,0.031246216967702,0.033552512526512],[-0.025000631809235,-0.03590239956975,-0.019244190305471],[-0.032388541847467,0.018145693466067,-0.019760239869356]],[[0.037786640226841,-0.043811418116093,-0.0033341725356877],[-0.01972158998251,0.024362348020077,-0.038883242756128],[0.043868131935596,0.023083481937647,-0.00089996476890519]],[[0.011403117328882,-0.0096969669684768,0.036822397261858],[-0.027419509366155,-0.057769827544689,-0.017834722995758],[0.041206065565348,0.072379745543003,-0.12740714848042]],[[0.023430690169334,-0.061557535082102,-0.0078249769285321],[0.027177644893527,0.042461983859539,0.047430731356144],[0.01806902140379,-0.069830901920795,0.00019980104116257]],[[0.043088410049677,-0.032407935708761,-0.023801509290934],[0.00050204060971737,-0.043805237859488,0.050285622477531],[-0.034461867064238,0.035034999251366,0.079717524349689]],[[-0.028608350083232,0.025984590873122,0.017235780134797],[-0.0092835044488311,0.053626388311386,0.043528746813536],[0.089833632111549,0.002038886770606,-0.03806534036994]],[[-0.0022082533687353,0.0043428628705442,0.0145428404212],[-0.034263581037521,-0.013305216096342,0.016488986089826],[0.073068268597126,-0.061340846121311,0.037356793880463]],[[0.0034110373817384,0.0075236307457089,-0.06187728792429],[0.054003681987524,-0.031702794134617,-0.024780550971627],[0.011195523664355,-0.02405851893127,0.074838690459728]]],[[[0.066935867071152,0.099917717278004,0.12758509814739],[0.060902815312147,0.090430416166782,0.048755962401628],[0.011039361357689,0.075020886957645,0.0034028962254524]],[[0.05270828679204,0.015826966613531,-0.0043735611252487],[-0.0017326881643385,0.0044346586801112,0.054422702640295],[0.014512113295496,0.0057586790062487,0.019367845728993]],[[-0.010342109017074,-0.043303247541189,-0.095375634729862],[0.024151895195246,-0.0098569756373763,0.0079243406653404],[-0.056883424520493,0.021077865734696,0.035792861133814]],[[0.074904471635818,-0.012457380071282,0.057182855904102],[-0.026596507057548,-0.018370622768998,-0.078313358128071],[0.039597809314728,-0.0069960015825927,-0.045256089419127]],[[-0.040551874786615,0.014873185195029,-0.003804981475696],[0.036499604582787,-0.068954929709435,0.047208249568939],[0.0093578416854143,-0.058241076767445,0.02324585057795]],[[-0.018535343930125,0.053591463714838,-0.049488063901663],[0.0080325156450272,-0.020126072689891,0.03756407648325],[-0.020990539342165,-0.064131051301956,0.060573671013117]],[[0.054388545453548,0.033092498779297,0.048153538256884],[0.092465445399284,-0.024630339816213,-0.13637487590313],[0.077807188034058,0.020194640383124,-0.012552637606859]],[[0.037299931049347,0.028478186577559,-0.082493476569653],[-0.015827791765332,-0.089635297656059,-0.017206681892276],[0.13150398433208,0.051617819815874,-0.15627218782902]],[[-0.036436848342419,0.016582921147346,-0.04453969374299],[-0.01952008344233,-0.043332532048225,0.041642393916845],[0.07508897036314,0.093347728252411,0.13169299066067]],[[0.15905065834522,0.084024660289288,0.1066203340888],[0.19875872135162,-0.01199659332633,0.04252628237009],[0.16934306919575,-0.014841292984784,0.10577341914177]],[[0.056073352694511,-0.021117137745023,0.047722220420837],[-0.006875938270241,0.060974206775427,-0.055774290114641],[0.040432821959257,-0.047746386379004,0.17597386240959]],[[0.042402517050505,0.0089354962110519,0.008214196190238],[0.081554099917412,0.026317212730646,0.01197013258934],[-0.026523469015956,0.080372855067253,0.11762209236622]],[[-0.093795090913773,-0.046630408614874,0.00047165085561574],[0.012739941477776,-0.0095879780128598,-0.018136169761419],[0.11905678361654,0.096457988023758,0.022605046629906]],[[-0.033328462392092,0.0028122127987444,0.11862008273602],[-0.0076187686063349,0.097349472343922,0.073699474334717],[0.048595901578665,-0.023988656699657,0.15388613939285]],[[0.16073291003704,0.17670406401157,0.0078673688694835],[0.27613067626953,0.15454025566578,0.18840892612934],[-0.035351138561964,0.18120577931404,0.25690299272537]],[[-0.033055383712053,-0.046692628413439,-0.043520599603653],[-0.080969169735909,-0.077263467013836,-0.13760477304459],[-0.084130108356476,-0.055232305079699,-0.025674657896161]],[[0.077203616499901,0.099045477807522,0.039878837764263],[-0.0058806906454265,0.020385673269629,0.0090532582253218],[-0.055643253028393,-0.047054134309292,-0.076342582702637]],[[-0.084354817867279,-0.086529433727264,-0.04559213668108],[-0.10316507518291,-0.014587729237974,-0.005331005435437],[-0.0031838954892009,0.020330734550953,0.034262198954821]],[[-0.070652022957802,-0.005056784953922,-0.069034330546856],[0.05165471881628,0.0091069033369422,0.006130488589406],[0.028207173570991,0.023497657850385,0.068416714668274]],[[0.088685043156147,0.012847462669015,0.0059686424210668],[0.043497428297997,-0.028517950326204,-0.067903205752373],[-0.012463653460145,-0.067322142422199,-0.010779816657305]],[[-0.02243035659194,0.012935614213347,-0.022198842838407],[-0.0049539525061846,-0.019854234531522,0.11969960480928],[0.014328519813716,0.10834861546755,0.14684329926968]],[[0.090893596410751,0.06175472214818,0.038477391004562],[0.011556607671082,0.1201184540987,0.03264881670475],[0.15297302603722,0.1364571005106,0.063241027295589]],[[0.017465595155954,-1.1261206964264e-05,-0.060007054358721],[-0.03843816369772,-0.019114600494504,0.030555030331016],[-0.041731305420399,0.13865441083908,-0.032792396843433]],[[-0.017936168238521,-0.042389005422592,-0.041060529649258],[-0.043170176446438,-0.03199103474617,-0.062420431524515],[0.12058324366808,0.097158461809158,0.035049602389336]],[[0.11720571666956,0.14801247417927,-0.0033869994804263],[0.028944777324796,0.018983824178576,0.059927377849817],[0.054309293627739,0.067872315645218,0.015202070586383]],[[-0.0059884577058256,-0.015427242033184,-0.030769659206271],[0.021683296188712,-0.064314670860767,0.069120906293392],[0.088218569755554,-0.030733415856957,-0.067873030900955]],[[0.035787999629974,-0.025770971551538,-0.062686547636986],[-0.012030196376145,0.0016970759024844,-0.054267734289169],[0.035818923264742,0.079862415790558,0.10796692967415]],[[-0.0082068610936403,0.023512398824096,0.011356210336089],[0.055951487272978,-0.028327928856015,0.030489316210151],[-0.041703574359417,0.076331838965416,0.093246825039387]],[[0.084863014519215,0.093301199376583,-0.0084112351760268],[0.12371949106455,-0.055613983422518,0.097625426948071],[-0.043885067105293,0.076046444475651,0.096885748207569]],[[-0.049299448728561,0.01259280461818,0.0055507924407721],[-0.028711812570691,-0.041510321199894,-0.034574594348669],[0.039993796497583,0.009927867911756,-0.073528192937374]],[[0.095554359257221,0.062337063252926,-0.031643446534872],[0.059490241110325,-0.01764053851366,-0.0093083279207349],[-0.031663808971643,-0.014909106306732,-0.044720411300659]],[[-0.015938291326165,0.053282257169485,-0.073320135474205],[0.049174595624208,0.05011285468936,-0.053188350051641],[-0.13041883707047,0.094885259866714,-0.059605326503515]],[[0.00056743231834844,-0.098302751779556,0.040215246379375],[0.077978946268559,0.012602237053216,-0.098283007740974],[0.023534843698144,0.13639710843563,-0.010452413000166]],[[0.064171679317951,-0.01467945985496,-0.019706774502993],[0.033418636769056,-0.013071659952402,0.0051281815394759],[0.0048050442710519,-0.015418382361531,0.0057976180687547]],[[0.072790838778019,-0.01937960088253,-0.079623512923717],[-0.031803719699383,0.021364636719227,0.023032927885652],[-0.069475345313549,-0.057867012917995,-0.012348081916571]],[[0.008100182749331,-0.012945901602507,-0.045198582112789],[-0.014815772883594,0.0043499255552888,-0.047381397336721],[0.0037353113293648,0.01126329600811,0.013756732456386]],[[0.029068384319544,-0.010555037297308,-0.050199247896671],[0.069194912910461,-0.017813626676798,0.0039093582890928],[-0.022970594465733,0.067090764641762,-0.038870181888342]],[[0.020792463794351,0.047807395458221,-0.046773623675108],[0.009112536907196,-0.081614755094051,-0.12472146004438],[-0.012871590442955,0.0089397262781858,0.028848432004452]],[[0.14762318134308,0.069607309997082,0.063787072896957],[0.07039500027895,-0.0093987705186009,0.010687796398997],[0.10883096605539,-0.039602003991604,-0.02497349306941]],[[-0.034537062048912,-0.017276581376791,-0.01863563619554],[0.079111106693745,0.017337406054139,-0.081533350050449],[0.0061052464880049,0.0032723471522331,0.078266598284245]],[[-0.061485882848501,0.045334115624428,0.015963846817613],[0.16872756183147,0.0069680958986282,-0.033598121255636],[-0.034708317369223,-0.08913742005825,0.072500377893448]],[[0.043569602072239,-0.038983389735222,-0.0068116295151412],[0.00037116068415344,-0.019636845216155,0.024821173399687],[-0.0072261923924088,-0.023990787565708,0.011369997635484]],[[-0.049270089715719,-0.051083292812109,0.03281632438302],[0.10710652917624,0.0042102942243218,0.073788851499557],[0.01819477789104,-0.07250889390707,-0.024051876738667]],[[0.052607864141464,0.0077415001578629,0.040162149816751],[0.076811008155346,-0.020008834078908,0.062697604298592],[0.03150549530983,0.034601788967848,0.13792870938778]],[[-0.0040502552874386,0.021152384579182,0.036279808729887],[0.032982207834721,-0.013396227732301,-0.074484340846539],[0.0051992018707097,0.0072810826823115,-0.01955814473331]],[[0.078288681805134,0.070563718676567,-0.023198112845421],[0.11430954933167,-0.026385279372334,-0.016435153782368],[-0.07077880948782,-0.020844921469688,0.088183671236038]],[[-0.012756342068315,0.01304067671299,-0.066368035972118],[-0.06933581084013,-0.042548753321171,0.028820475563407],[0.091031856834888,0.047907151281834,0.035871624946594]],[[-0.0042853443883359,0.085858277976513,0.058121737092733],[-0.032360732555389,0.13491760194302,0.047398079186678],[-0.01333930529654,0.095912173390388,0.032500490546227]],[[0.017323471605778,-0.026383211836219,0.15005260705948],[-0.003448681673035,0.0048040626570582,0.079834960401058],[0.065903373062611,0.017839467152953,-0.02698840200901]],[[0.03980203345418,0.079682178795338,-0.013884826563299],[-0.020408255979419,0.040568821132183,0.13287925720215],[0.10088036954403,-0.020774319767952,0.020367572084069]],[[0.031201768666506,0.087566450238228,-0.0067686317488551],[-0.062600858509541,-0.087814494967461,-0.038196638226509],[0.031637422740459,0.038292821496725,-0.080452419817448]],[[0.059249084442854,-0.0015539606101811,0.047227188944817],[-0.062448102980852,0.050341084599495,0.0079529117792845],[0.11859885603189,0.067135639488697,0.11484006047249]],[[-0.0082698445767164,-0.0057973186485469,0.061299309134483],[0.0020485005807132,0.03594196587801,0.028308151289821],[0.031394761055708,-0.0042732688598335,-0.0044839060865343]],[[-0.013675496913493,-0.009396793320775,0.025708369910717],[0.063306763768196,-0.022834846749902,-7.0077490818221e-05],[0.12717232108116,0.072676569223404,-0.0046884180046618]],[[-0.0034059062600136,0.039149064570665,0.021817971020937],[0.0051996386609972,0.052449218928814,0.022218992933631],[0.018720220774412,0.075004599988461,-0.0062385010533035]],[[0.012580331414938,0.034428082406521,-0.017244670540094],[0.0075872885063291,0.025070616975427,0.051206409931183],[0.024568997323513,-0.017370147630572,0.023349409922957]],[[-0.071850545704365,-0.028198977932334,0.020349705591798],[0.033507045358419,-0.019695147871971,-0.012291419319808],[0.080466605722904,-0.050959594547749,0.052318975329399]],[[0.06181912124157,0.00060705322539434,-0.11638495326042],[0.047782421112061,0.040400516241789,-0.11479570716619],[0.012921368703246,-0.039153598248959,-0.053526174277067]],[[0.037204898893833,0.061784751713276,0.0029579394031316],[0.027326179668307,0.13289014995098,0.06831406056881],[0.070161230862141,0.14365068078041,0.15977703034878]],[[0.00081617577234283,0.14831854403019,-0.088074706494808],[0.011811707168818,0.029457213357091,0.00043881236342713],[0.01566956192255,0.017396412789822,0.065837368369102]],[[-0.015858810395002,0.06372793763876,-0.020069425925612],[-0.016119543462992,0.11868931353092,0.093883328139782],[-0.093366667628288,-0.045938227325678,-0.019675435498357]],[[-0.05268919095397,-0.023834889754653,-0.016673916950822],[-0.013187658973038,0.029423786327243,0.01186634413898],[0.003565871855244,-0.035091355443001,0.063673838973045]],[[-0.033268298953772,0.0073365359567106,-0.052641659975052],[-0.0067622032947838,-0.066839016973972,-0.073234125971794],[0.0050645447336137,-0.033477313816547,-0.036713872104883]],[[0.035981070250273,-0.042783409357071,-0.0085136163979769],[0.092855423688889,-0.052888635545969,0.079370491206646],[-0.016464589163661,-0.025370115414262,0.023960683494806]],[[-0.061780262738466,0.015077687799931,0.063770458102226],[0.031447965651751,-0.027095634490252,0.03721521794796],[-0.043448597192764,0.057566899806261,-0.011273566633463]],[[0.065781489014626,-0.0095532154664397,-0.028217790648341],[-0.0033951334189624,0.00039467547321692,-0.015481256879866],[-0.049816749989986,0.024872485548258,0.013024481013417]],[[0.072796918451786,0.13760857284069,0.074640303850174],[0.12154724448919,0.059741601347923,0.042957045137882],[0.019850052893162,0.0078643225133419,0.082750998437405]],[[0.096634104847908,0.065055780112743,-0.04084550589323],[-0.0090291975066066,-0.062392260879278,-0.048076570034027],[-0.026864135637879,-0.049828242510557,-0.013856808654964]],[[-0.032173912972212,-0.03931563347578,0.01845327205956],[7.0281632361002e-05,0.0089245028793812,-0.011601668782532],[-0.035144198685884,-0.071500979363918,0.086103729903698]],[[-0.038277838379145,0.036956135183573,0.044558141380548],[0.033230695873499,0.048104576766491,-0.0061298119835556],[0.05171562731266,0.062922216951847,-0.044728685170412]],[[0.0032050288282335,0.023522552102804,-0.034026801586151],[-0.012203271500766,0.10437474399805,0.013298157602549],[0.0926294028759,0.12755000591278,0.026036731898785]],[[0.079942181706429,-0.037292432039976,-0.036856546998024],[0.031374763697386,-0.034114256501198,0.016872346401215],[0.0021560105960816,0.08751367777586,0.20253865420818]],[[-0.011352769099176,0.0053752958774567,-0.097395732998848],[-5.0962491513928e-05,0.021703479811549,0.014868297614157],[-0.010832746513188,-0.014871513471007,0.043870162218809]],[[0.037895008921623,0.030302595347166,0.016345029696822],[0.12295654416084,0.055615600198507,0.09448454529047],[-0.027443176135421,0.030204208567739,0.080613344907761]],[[-0.042606979608536,0.027780609205365,-0.069988958537579],[-0.00041688472265378,-0.0062856888398528,-0.032627165317535],[0.068466663360596,0.0020687284413725,0.041719194501638]],[[-0.009955920279026,-0.0035641524009407,-0.044996842741966],[0.024648752063513,-0.065018512308598,-0.030544461682439],[0.059440594166517,-0.031190980225801,-0.12092640250921]],[[-0.080147460103035,-0.053707167506218,0.081780523061752],[-0.030652765184641,-0.0030254879966378,0.011673266068101],[0.0117616225034,-0.027040420100093,-0.011333549395204]],[[0.02915701828897,0.012534197419882,0.11190701276064],[0.038067869842052,0.045532289892435,-0.0066676717251539],[-0.010633517988026,0.073692977428436,0.044595796614885]],[[0.088711366057396,-0.036408524960279,-0.028051093220711],[-0.057658936828375,-0.020667525008321,-0.061082549393177],[0.095543965697289,-0.022677766159177,0.036048032343388]],[[-0.01384689565748,0.085459649562836,0.090052470564842],[0.013915361836553,-0.059967696666718,-0.044823087751865],[-0.00084786053048447,0.019144810736179,0.074834443628788]],[[0.02160931378603,-0.001951671903953,0.075691893696785],[0.0076105077750981,0.058909807354212,0.018272776156664],[-0.031641833484173,-0.021424070000648,-0.044479258358479]],[[-0.0058657312765718,-0.054195456206799,-0.036556154489517],[-0.026650626212358,-0.051328767091036,-0.067618384957314],[0.0270856898278,0.016604371368885,0.091856151819229]],[[-0.051278579980135,-0.013571186922491,0.071976043283939],[-0.023920828476548,-0.019050639122725,-0.033545538783073],[0.075986966490746,0.074357643723488,-0.0345194414258]],[[-0.11049917340279,0.048411581665277,-0.062082298099995],[-0.0019475368317217,-0.040749747306108,-0.076385021209717],[0.11690565943718,0.040506366640329,-0.024663569405675]],[[-0.035951808094978,0.0074516697786748,0.072649508714676],[0.015207350254059,-0.17103719711304,-0.075016595423222],[-0.01472117099911,0.019783420488238,-0.060127969831228]],[[0.065119564533234,0.011865354143083,0.10279509425163],[0.07319151610136,-0.028565715998411,0.033022411167622],[0.052554842084646,0.03408170118928,0.05741723626852]],[[0.0036481257993728,0.069783292710781,0.067321315407753],[0.062129806727171,0.062206406146288,0.063530407845974],[-0.047546740621328,0.0074294623918831,0.045240893959999]],[[0.069669939577579,0.0097890561446548,0.045874454081059],[0.035725098103285,0.11704125255346,0.070033244788647],[-0.055576425045729,0.045995343476534,0.048522870987654]],[[-0.0073212464340031,0.03504604101181,0.058786645531654],[-0.042561996728182,-0.011970230378211,-0.049874097108841],[0.072031557559967,-0.022621441632509,-0.011841487139463]],[[-0.045099183917046,0.062479358166456,0.060836713761091],[0.15648813545704,0.097292967140675,0.11567970365286],[0.044522143900394,0.04689560085535,-0.0039157113060355]],[[0.15024012327194,0.050191756337881,-0.043421976268291],[0.064382120966911,0.11007446795702,-0.019344506785274],[0.099576644599438,-0.029936434701085,0.2288900911808]],[[0.013477492146194,0.076370358467102,-0.045177891850471],[0.044572096318007,0.066935457289219,-0.0020113482605666],[0.03047788143158,-0.033659655600786,-0.0098282312974334]],[[-0.0093090320006013,0.015697073191404,0.039628237485886],[-0.034365616738796,0.048032455146313,0.0023324047215283],[0.020614866167307,0.014200002886355,-0.042597554624081]],[[0.051875047385693,0.011827128939331,-0.067492909729481],[0.037555817514658,0.10638178139925,0.077995896339417],[0.04594362154603,-0.0021089566871524,0.030905513092875]],[[-0.014281715266407,0.0034047272056341,0.077367059886456],[0.008666536770761,0.052362814545631,0.051097597926855],[-0.015977555885911,-0.09367972612381,-0.0074758278205991]],[[0.058140691369772,0.086539842188358,-0.033185057342052],[0.040247060358524,-0.12054324895144,0.0051698083989322],[0.038726590573788,0.021243074908853,-0.082162521779537]],[[0.014370284043252,0.012270543724298,0.093292914330959],[0.064945980906487,-0.025076918303967,-0.032198525965214],[0.093224361538887,0.02248296327889,0.014602866955101]],[[0.061400476843119,0.079382501542568,0.066455081105232],[0.18550896644592,0.098772354424,-0.0091063464060426],[0.063621282577515,0.018801048398018,-0.10438023507595]],[[-0.045761879533529,-0.009591837413609,-0.027434395626187],[-0.031882029026747,-0.02178131043911,-0.046677000820637],[0.13239197432995,0.086190775036812,0.019318895414472]],[[0.064120694994926,0.10735257714987,0.021107459440827],[0.012934827245772,-0.073891386389732,-0.07969968020916],[0.041962664574385,-0.10988830029964,-0.056648183614016]],[[-0.1098659709096,-0.010407875292003,-0.13647335767746],[0.048334416002035,-0.031771667301655,-0.039057150483131],[0.080595538020134,0.067131876945496,0.02710260078311]],[[0.089476868510246,0.011076522991061,0.045769803225994],[0.10588378459215,0.10403694957495,0.060797825455666],[-0.0016229946631938,0.071384713053703,-0.028559692203999]],[[0.039415493607521,-0.0060544745065272,-0.037581536918879],[-0.0068133031018078,0.013710572384298,0.017520304769278],[0.069679722189903,-0.039257861673832,0.14563553035259]],[[0.010627763345838,0.027239218354225,-0.010768320411444],[-0.031193232163787,-0.060012988746166,0.034826587885618],[0.056693986058235,-0.065228834748268,-0.082449808716774]],[[0.045378010720015,0.056364130228758,0.022910008206964],[0.0065266517922282,0.076165720820427,0.033848453313112],[0.13233554363251,-0.00015110496315174,0.048849545419216]],[[0.085039421916008,-0.0020464544650167,-0.013509444892406],[0.049556314945221,0.0013730174396187,0.016749732196331],[0.0010371309472248,-0.0057442770339549,-0.065649338066578]],[[-0.02440501563251,0.046208072453737,-0.020622350275517],[0.080047070980072,0.032606814056635,-0.016596276313066],[0.071394465863705,-0.05005943402648,0.010019709356129]],[[-0.11150614917278,-0.051082640886307,0.03071310557425],[0.078105114400387,-0.035570446401834,-0.017780594527721],[0.0060323355719447,0.067355923354626,0.13620333373547]],[[0.004394952673465,0.048582345247269,-0.059287823736668],[0.10574670881033,0.048469066619873,-0.032964572310448],[0.09722001850605,-0.016002871096134,0.053298957645893]],[[-0.15333707630634,-0.063975803554058,-0.03249092400074],[0.019882159307599,0.070820495486259,0.0243462882936],[0.16343674063683,0.018491936847568,0.026995416730642]],[[0.024833992123604,0.12539736926556,-0.044462069869041],[0.075836449861526,0.03334391489625,-0.065742574632168],[-0.12024103105068,-0.051732569932938,0.045862305909395]],[[0.077703833580017,-0.059417467564344,0.053559809923172],[0.05508478730917,0.054174084216356,-0.10628005862236],[-0.092219814658165,0.0027720564976335,0.10718777030706]],[[0.10982196033001,-0.019526468589902,-0.040474213659763],[0.058527011424303,-0.0054077305831015,-0.04203025624156],[0.027464170008898,0.0068409321829677,-0.0098765837028623]],[[-0.096899405121803,-0.14499740302563,0.047342985868454],[-0.039827775210142,0.015736144036055,-0.038807518780231],[0.020613770931959,0.12026756256819,-0.023662256076932]],[[-0.02600653655827,0.016288422048092,0.00028172045131214],[0.041646737605333,0.052628196775913,-0.097775310277939],[0.0005726701929234,-0.069424793124199,0.075661644339561]],[[0.036885526031256,0.0098543297499418,0.035424161702394],[0.080276995897293,-0.058167338371277,0.02504257299006],[0.099189504981041,0.10452882945538,0.12401951104403]],[[-0.017748333513737,-0.016907604411244,0.073417194187641],[0.069757595658302,0.089201413094997,0.12444038689137],[0.11005860567093,0.13340497016907,0.064788244664669]],[[-0.017380712553859,0.055506967008114,-0.087493382394314],[-0.10445930808783,0.0052116685546935,-0.031103435903788],[0.027356522157788,0.051104348152876,0.069344565272331]],[[-0.014486214146018,-0.055874109268188,-0.018266646191478],[0.030788354575634,-0.040019828826189,0.0055868253111839],[0.025946291163564,0.0076245316304266,0.099015444517136]],[[-0.10136662423611,-0.06208087131381,0.029052181169391],[0.018154349178076,-0.098165161907673,-0.022488456219435],[0.0399214848876,-0.035590946674347,-0.076287686824799]],[[-0.013316042721272,0.079130813479424,-0.00071122421650216],[0.015338766388595,0.024849770590663,-0.049685295671225],[0.12444720417261,0.031829666346312,-0.042275194078684]],[[-0.06339955329895,0.068262696266174,-0.10791253298521],[0.074971817433834,0.10419809818268,-0.0056090764701366],[0.062373798340559,-0.040858015418053,0.0046185841783881]],[[-0.046555899083614,-0.010492407716811,0.042588468641043],[0.030440852046013,-0.038917876780033,0.010018127970397],[-0.011886320076883,-0.040576480329037,0.061285723000765]],[[0.022931510582566,0.029347201809287,-0.078753925859928],[0.031620249152184,-0.013630121015012,-0.014851826243103],[0.01089655701071,-0.03492172062397,-0.050358593463898]],[[-0.022242210805416,-0.038159381598234,-0.039420455694199],[0.061933152377605,0.094430506229401,0.021218992769718],[0.029634658247232,-0.0010660799453035,0.03840458765626]],[[0.079938039183617,-0.042299583554268,0.052236698567867],[0.041342504322529,-0.014110316522419,0.0036161781754345],[0.069753177464008,0.058675292879343,-0.038904245942831]],[[0.027339726686478,0.051392827183008,-0.043293077498674],[-0.044184371829033,0.037399794906378,-0.002992000663653],[0.14205388724804,0.009625650011003,-0.057214919477701]],[[-0.033167324960232,-0.057245541363955,-0.080104842782021],[0.0015967185609043,-0.012978059239686,-0.051433835178614],[-0.013432210311294,0.01926726847887,0.020131712779403]]],[[[-0.01316118426621,-0.035156551748514,0.026613004505634],[0.062209784984589,-0.026288459077477,0.047690309584141],[-0.041568581014872,0.046034093946218,-0.064453154802322]],[[-0.041660506278276,-0.04885009303689,-0.089504443109035],[-0.019821917638183,0.010222639888525,0.064647302031517],[-0.0012841472635046,0.015143775381148,-0.055434983223677]],[[0.030028067529202,-0.004836761392653,-0.012607510201633],[-0.027691151946783,-0.058822184801102,-0.0042810505256057],[-0.060267861932516,-0.013575254008174,0.012804872356355]],[[-0.0032391031272709,0.035730179399252,-0.078056588768959],[-0.02913267724216,0.012146920897067,0.019562218338251],[0.0077744987793267,-0.028534559533,-0.035671602934599]],[[0.014612142927945,-0.039396572858095,-0.045474622398615],[-0.080262809991837,0.052112836390734,-0.03857284039259],[0.025247847661376,0.027541760355234,-0.08210826665163]],[[0.018690614029765,0.025911571457982,-0.015717722475529],[-0.005136891733855,0.054959982633591,-0.033823277801275],[0.053732790052891,0.024555029347539,-0.015443681739271]],[[-0.039832971990108,0.010721658356488,0.049763701856136],[-0.026454955339432,0.052591852843761,-0.030213402584195],[-0.037793233990669,-0.0075645558536053,0.024950113147497]],[[0.061959989368916,0.011433888226748,-0.0082741770893335],[0.00026896712370217,0.003253708826378,0.035772547125816],[0.0061549008823931,0.009261847473681,-0.096737004816532]],[[0.086623303592205,0.065008766949177,0.030083876103163],[0.01699579320848,0.062983341515064,0.03402591496706],[-0.044263888150454,-0.013262370601296,-0.035090371966362]],[[-0.025006091222167,-0.018053662031889,-0.0026604372542351],[0.04926636070013,-0.0035992648918182,0.044312588870525],[-0.0089684277772903,-0.019637923687696,-0.026221452280879]],[[0.050027120858431,-0.077969133853912,0.0097847618162632],[-0.075769156217575,0.0047575039789081,-0.04117165133357],[0.018893362954259,0.0224440228194,-0.018605343997478]],[[0.0046388655900955,0.0015588857932016,0.055371724069118],[0.10600325465202,0.057666625827551,0.040217410773039],[0.016426626592875,-0.020723583176732,0.017648046836257]],[[0.012246210128069,0.026534775272012,0.013628725893795],[-0.013858230784535,0.051520846784115,0.021221259608865],[0.013365629129112,-0.044788099825382,-0.0098780887201428]],[[-0.029172424226999,-0.011977177113295,-0.018137706443667],[-0.036896865814924,0.056573871523142,-0.071426667273045],[0.063907310366631,0.0059265419840813,-0.025019573047757]],[[0.017763800919056,-0.066255114972591,-0.079239867627621],[-0.0078125679865479,0.058561664074659,0.1013920083642],[0.069680541753769,-0.016217404976487,0.071429312229156]],[[-0.015498582273722,-0.099791698157787,-0.047478459775448],[0.01420050766319,0.041946180164814,0.02418565005064],[-0.026138227432966,0.019605230540037,-0.018130328506231]],[[0.042066317051649,0.055444989353418,-0.0013022199273109],[-0.014874703250825,-0.068584382534027,0.016172163188457],[-0.040601726621389,-0.052311547100544,-0.0094718392938375]],[[-0.02767201513052,-0.02035142108798,0.039023663848639],[0.059970833361149,-0.064587466418743,-0.0074733234941959],[0.066478326916695,-0.046030662953854,-0.050350446254015]],[[0.023995961993933,-0.055332038551569,-0.025754084810615],[-0.0035700737498701,-0.023150630295277,0.021986681967974],[-0.010516588576138,-0.030551198869944,0.056755978614092]],[[0.029421139508486,-0.015924200415611,0.025397321209311],[-0.0055747078731656,0.0027850652113557,0.068371616303921],[-0.017390565946698,-0.056617259979248,-0.080719493329525]],[[-0.085198223590851,-0.066241182386875,0.0240857899189],[-0.070429369807243,0.0062140231020749,-0.04812653362751],[-0.0090996101498604,-0.047148980200291,0.025007231160998]],[[-0.016630606725812,0.0088863708078861,-0.032783396542072],[0.061406992375851,0.097994491457939,0.055656760931015],[-0.05029983073473,0.058657936751842,-0.017522186040878]],[[0.018638441339135,-0.091408543288708,0.029534418135881],[0.014210985042155,0.058551598340273,0.090930253267288],[0.0057006757706404,-0.051751803606749,-0.054217528551817]],[[0.024023121222854,-0.073111943900585,0.035260491073132],[-0.040188513696194,-0.030385620892048,-0.015291478484869],[0.018464479595423,-0.043250903487206,0.017150454223156]],[[0.044336620718241,-0.065181255340576,0.023104526102543],[0.045778620988131,0.014534303918481,-0.064260609447956],[0.029090827330947,0.046200376003981,0.057049762457609]],[[0.071221984922886,-0.032621052116156,-0.013172594830394],[0.033139329403639,0.034262303262949,-0.006834473926574],[-0.042858969420195,-0.0060037225484848,-0.072851419448853]],[[0.0079398080706596,-0.029982455074787,0.0059032919816673],[0.043305870145559,-0.02508096024394,-0.023634159937501],[-0.019135769456625,0.00024202815257013,-0.016940103843808]],[[0.0024019835982472,0.089168228209019,0.034195404499769],[0.012457633391023,-0.0187067091465,-0.044253528118134],[-0.077333383262157,-0.01777938939631,0.015004522167146]],[[0.0042257755994797,0.039038710296154,0.036947503685951],[0.012189846485853,-0.021226938813925,-0.025164552032948],[-0.10040126740932,0.022042291238904,-0.007451226003468]],[[-0.035021785646677,-0.014179320074618,-0.042171467095613],[0.0020020711235702,-0.0081323608756065,0.052228175103664],[0.028133053332567,0.0095872888341546,0.028295766562223]],[[-0.046977359801531,-0.04581668227911,0.051855124533176],[0.0063098832033575,-0.049983400851488,0.0020703843329102],[0.0057472139596939,-0.0078913643956184,0.0079070515930653]],[[0.018324756994843,0.048029575496912,0.039901625365019],[-0.057601980865002,-0.036401402205229,-0.049556076526642],[-0.0021220198832452,0.038827773183584,-0.095414765179157]],[[0.025070618838072,0.043251696974039,0.024398481473327],[0.046371322125196,0.0078655406832695,0.0012934684054926],[0.062370732426643,0.045624177902937,-0.041259489953518]],[[0.019760176539421,-0.039139427244663,-0.038874614983797],[-0.030875068157911,0.006370437797159,0.0061171813867986],[0.053318932652473,0.028242537751794,0.031365182250738]],[[-0.02832699380815,-0.024263489991426,-0.022946666926146],[0.019542707130313,0.037026222795248,0.039071004837751],[-0.087986275553703,0.0014166216133162,-0.028585005551577]],[[-0.060114752501249,0.011072964407504,-0.010501639917493],[0.038967706263065,-0.038772225379944,-0.038874976336956],[0.034652289003134,0.061094660311937,-0.0060644475743175]],[[-0.0038110625464469,-0.04108189791441,-0.047114811837673],[0.027906073257327,-0.085689581930637,-0.019785650074482],[0.008175672031939,0.011349188163877,-0.040250886231661]],[[-0.091511532664299,0.022445084527135,-0.024821544066072],[-0.060024209320545,-0.10404310375452,0.012283679097891],[0.019113250076771,0.0088874325156212,-0.014488434419036]],[[-0.00010954117169604,-0.025576457381248,0.033262077718973],[0.057649340480566,0.025634447112679,0.037673756480217],[-0.04168264195323,0.017783138900995,0.0026789752300829]],[[-0.073739089071751,0.033589124679565,-0.056193698197603],[0.013080012053251,-0.040009673684835,-0.013939107768238],[0.019106360152364,-0.024247333407402,-0.030450666323304]],[[0.029025318101048,0.043665438890457,-0.0005627057980746],[-0.044390089809895,0.0015847943723202,-0.029436897486448],[0.07213406264782,0.0015668519772589,0.047127015888691]],[[-0.0089935967698693,0.026660026982427,7.403374183923e-05],[0.0036312497686595,0.0012647478142753,0.058912049978971],[-0.017008112743497,0.028122609481215,-0.0066924653947353]],[[-0.043749377131462,-0.0031834512483329,0.000820217654109],[0.028140742331743,-0.019753575325012,-0.021520715206861],[0.0036362803075463,0.046696461737156,-0.046557180583477]],[[-0.024397019296885,-0.010318580083549,0.025595918297768],[0.025441205129027,-0.081755042076111,-0.013843533582985],[0.011716870591044,-0.040416572242975,-0.038302049040794]],[[-0.022639775648713,0.050213299691677,-0.022532146424055],[-0.020380819216371,-0.034417726099491,-0.044304497539997],[0.044883895665407,0.044262267649174,0.062542088329792]],[[-0.11190885305405,-0.035319697111845,-0.068066708743572],[-0.020913794636726,0.0072956695221364,-0.028627391904593],[-0.027112809941173,-0.011873258277774,-0.036805115640163]],[[-0.054523281753063,0.024452460929751,-0.046460662037134],[-0.04045781493187,0.0053734136745334,-0.036546904593706],[-0.011384355835617,0.026508556678891,-0.001179680461064]],[[0.050563488155603,-0.0086000906303525,0.094448044896126],[-0.0043200976215303,-0.039898455142975,0.020705467090011],[0.041479177772999,0.054087206721306,-0.065502636134624]],[[-0.067145861685276,0.034016724675894,0.035283230245113],[-0.014282423071563,-0.12885269522667,0.027486184611917],[0.021328799426556,0.033599961549044,-0.014296418987215]],[[-0.042121630162001,-0.022926867008209,-0.026143658906221],[0.0064308969303966,-0.017438912764192,0.058514688163996],[0.0099687026813626,0.023700242862105,-0.0068309917114675]],[[-0.020090395584702,0.070467628538609,-0.062884464859962],[-0.033006895333529,-0.081913307309151,-0.023187501356006],[0.067761495709419,0.028010845184326,0.031339280307293]],[[-0.018356977030635,0.0041736490093172,0.04180384427309],[0.010055715218186,-0.013187971897423,-0.0042810286395252],[0.051232557743788,0.0079974243417382,0.031755328178406]],[[-0.013835639692843,-0.059448163956404,-0.074989102780819],[-0.043205361813307,-0.018398387357593,-7.0079026045278e-05],[-0.018978478386998,-0.010895977728069,0.0060920733958483]],[[-0.03937304764986,-0.036515843123198,-0.0019486609380692],[-0.064437352120876,0.022886697202921,-0.033623836934566],[0.012389790266752,-0.00075921753887087,0.085608407855034]],[[0.014792691916227,0.031418513506651,-0.0037712163757533],[-0.047933209687471,-0.028632679954171,-0.071231983602047],[-0.059523433446884,0.019700299948454,-0.019478186964989]],[[-0.010990053415298,0.0050310003571212,0.096847824752331],[0.023114601150155,-0.038863305002451,-0.090236470103264],[0.08337864279747,-0.036666855216026,-0.012059459462762]],[[-0.051418028771877,0.062111496925354,-0.01078731380403],[0.034811224788427,-0.0010693816002458,0.00044390890980139],[-0.026045629754663,-0.0086194239556789,-0.048149839043617]],[[0.03632003068924,0.033895261585712,-0.048313103616238],[-0.020011451095343,-0.0015876868274063,0.10156443715096],[-0.049787700176239,-0.026140984147787,-0.012118588201702]],[[-0.0030816067010164,-0.015606077387929,-0.034715764224529],[-0.0060978904366493,-0.0053218947723508,0.010776625946164],[-0.0035155189689249,-0.023946223780513,0.055611491203308]],[[0.010908715426922,0.02812878601253,0.022975645959377],[-0.045015946030617,0.013614129275084,-0.045526370406151],[0.032030180096626,0.0027964462060481,-0.0084114633500576]],[[0.0071945814415812,-0.011787717230618,0.11476849019527],[-0.092031724750996,-0.047276388853788,0.051074020564556],[-0.13114656507969,-0.030300309881568,0.042881298810244]],[[0.021625299006701,0.024097580462694,-0.0217050537467],[-0.03586309030652,-0.072139859199524,0.002017910592258],[-0.018260538578033,0.005865003913641,-0.0039452216587961]],[[0.0080026797950268,-0.018667576834559,0.060790967196226],[0.015764389187098,-0.0043872380629182,-0.020188787952065],[0.016234459355474,-0.0096873072907329,2.1200357878115e-05]],[[0.066321693360806,-0.0046406658366323,0.0029245899058878],[-0.079446792602539,-0.022792994976044,-0.078003443777561],[-0.0055450829677284,-0.044056452810764,0.0020711221732199]],[[-0.0097222961485386,-0.072695016860962,-0.013765443116426],[0.0043188971467316,0.0063597201369703,0.025398129597306],[0.010680764913559,0.059084098786116,0.062662422657013]],[[0.014679088257253,0.01199200283736,0.06148212775588],[0.034743778407574,-0.094088636338711,-0.052205175161362],[-0.027957074344158,0.052405998110771,-0.032080449163914]],[[-0.027552084997296,0.055069763213396,0.042343251407146],[0.070244051516056,-0.079889014363289,0.02452028542757],[-0.011289171874523,0.014945824630558,0.048532016575336]],[[0.016796408221126,0.011369902640581,0.008491893298924],[-0.08882836997509,-0.012001398950815,0.053430244326591],[0.011649122461677,0.031781107187271,-0.016993651166558]],[[-0.019403357058764,0.026549091562629,0.0099875265732408],[0.038932766765356,-0.071987077593803,0.015049962326884],[-0.06366291642189,0.06157960370183,0.065915480256081]],[[-0.018028920516372,0.040314015001059,-0.01522121950984],[0.00076299259671941,-0.056780304759741,0.073651887476444],[0.0094953654333949,0.093603655695915,0.034134760499001]],[[0.0080373408272862,-0.055264219641685,-0.023554529994726],[0.022573608905077,0.042186524719,-0.0098167574033141],[-0.0075851352885365,-0.10533655434847,0.066317640244961]],[[0.034038510173559,0.0019868859089911,-0.008690245449543],[-0.099913828074932,-0.00084948324365541,0.02590143494308],[-0.00062988715944812,0.018760062754154,-0.002385517116636]],[[0.013059358112514,-0.0095631815493107,0.0061262962408364],[0.068454146385193,0.065778464078903,-0.060897685587406],[-0.05468101426959,0.026766713708639,-0.0054539041593671]],[[0.0024904799647629,-0.0056779314763844,-0.069258876144886],[0.03296385332942,-0.0022283252328634,-0.047134809195995],[-0.038829352706671,0.048584494739771,0.0073568522930145]],[[-0.090360209345818,0.019774215295911,0.023189980536699],[0.0015299004735425,-0.012223523110151,0.0077707064338028],[0.052187014371157,0.031893961131573,0.00031233747722581]],[[0.019714798778296,-0.043262526392937,-0.015526277013123],[-0.029277948662639,0.084778346121311,-0.034296881407499],[-0.016106085851789,-0.054688405245543,0.0018485977780074]],[[-0.0057827066630125,-0.017637757584453,0.02177756652236],[0.01637770421803,0.028821567073464,-0.029642097651958],[-0.028287587687373,-0.061688087880611,-0.027689965441823]],[[-0.0053929137066007,0.079585283994675,-0.014664767310023],[-0.040056146681309,-0.0021760307718068,-0.042354479432106],[-0.014718918129802,-0.037207305431366,-0.072198666632175]],[[-0.014048284851015,0.028795525431633,0.059128038585186],[0.0018663333030418,0.061150014400482,-0.024847768247128],[-0.038708735257387,-0.059972070157528,0.0071134194731712]],[[0.018239881843328,0.069528639316559,0.031930755823851],[0.065312385559082,0.039422165602446,-0.057717349380255],[0.045902829617262,0.012965681962669,0.076996244490147]],[[0.087267309427261,-0.028740445151925,0.0082671474665403],[-0.099160000681877,0.030511034652591,0.016961796209216],[-0.028566541150212,-0.028371579945087,-0.050062328577042]],[[-0.063614875078201,0.010649178177118,-0.010719686746597],[-0.012323088943958,-0.065327130258083,0.034406937658787],[0.046090718358755,0.019849263131618,0.010945099405944]],[[-0.0016553290188313,-0.087106838822365,0.037030905485153],[0.012934887781739,0.0046366560272872,-0.044135294854641],[-0.044440805912018,0.019531374797225,0.023601088672876]],[[-0.051818557083607,-0.03774743527174,-0.019599782302976],[0.014939312823117,-0.089091561734676,-0.0044693709351122],[0.0052268486469984,0.02447559311986,-0.061919149011374]],[[-0.10220562666655,-0.019411467015743,0.0017864663386717],[0.0075251734815538,-0.03969943523407,0.01321058254689],[-0.019315388053656,0.0052029355429113,0.032342132180929]],[[-0.02556817419827,0.010049901902676,-0.035037215799093],[5.6390101235593e-05,-0.011683950200677,-0.015227466821671],[0.0094633130356669,0.025237197056413,-0.045113239437342]],[[-0.00018086325144395,-0.004699919372797,0.036070376634598],[-0.037765055894852,-0.048747219145298,-0.023797018453479],[0.020538832992315,0.033386833965778,0.013456714339554]],[[-0.068019203841686,0.013170355930924,-0.0086341565474868],[0.015437192283571,0.026090560480952,0.027189640328288],[0.00084186386084184,-0.010717087425292,-0.024077855050564]],[[0.033012170344591,0.030335938557982,-0.017936823889613],[-0.0099428156390786,0.020733494311571,-0.042040672153234],[-0.066592410206795,-0.026498358696699,-0.015998424962163]],[[0.070119053125381,0.020688943564892,0.0016671696212143],[0.016583636403084,-0.03851705417037,-0.057319283485413],[-0.031734433025122,0.063309550285339,0.061261031776667]],[[0.031140411272645,-0.04794455319643,-0.018089082092047],[0.0031152607407421,-0.044754713773727,0.015177819877863],[-0.097573556005955,-0.080704882740974,-0.026096757501364]],[[-0.0067963558249176,0.030967440456152,-0.023885678499937],[-0.018961817026138,-0.0047184969298542,-0.046089801937342],[0.0018059409921989,0.016002248972654,-0.035579092800617]],[[-0.040782447904348,-0.028563644737005,-0.018140794709325],[-0.0037819114513695,0.057067427784204,-0.032691232860088],[-0.030445534735918,-0.032845955342054,-0.0085246190428734]],[[0.055260695517063,0.098779007792473,0.039815172553062],[0.044841431081295,-0.049062445759773,-0.033464811742306],[-0.011258789338171,0.037489783018827,0.01106567773968]],[[-0.0075952825136483,-0.012797029688954,-0.0073973597027361],[-0.071963958442211,-0.02733901143074,0.0030784178525209],[0.014876236207783,0.018797129392624,-0.0057682865299284]],[[0.067763410508633,-0.046477735042572,0.072611838579178],[0.044927354902029,0.087127268314362,-0.015546562150121],[0.00099964765831828,-0.058330494910479,-0.070461802184582]],[[0.014172628521919,0.0090585155412555,-0.044119145721197],[0.040319669991732,-0.073069646954536,-0.033357672393322],[0.017174314707518,0.059712462127209,0.041717611253262]],[[0.09146273881197,-0.010258400812745,-0.059492867439985],[0.020986795425415,0.12857562303543,0.010289344005287],[-0.0086077647283673,0.014792507514358,0.0011376137845218]],[[0.10479466617107,0.030389945954084,-0.0005744420341216],[-0.037104338407516,-0.07830585539341,-0.0047469502314925],[-0.037537265568972,-0.040111005306244,0.0043334164656699]],[[-0.0046927356161177,-0.05519412830472,-0.064704097807407],[0.035493150353432,0.020917294546962,0.0085287047550082],[0.016064329072833,-0.0028447122313082,-0.048674613237381]],[[-0.019055511802435,0.027805728837848,-0.057168107479811],[-0.066864371299744,-0.093839831650257,-0.085769161581993],[-0.054158143699169,-0.056560322642326,-0.035481419414282]],[[-0.0059461914934218,0.094382874667645,-0.11585783213377],[0.030875297263265,0.067548997700214,-0.0057355486787856],[0.053632728755474,-0.010696342214942,0.020321832969785]],[[0.0016951787983999,-0.014491045847535,0.016125680878758],[-0.066259570419788,0.01806304231286,-0.045230809599161],[0.066060371696949,-0.068390280008316,0.050688896328211]],[[0.0093227829784155,-0.015273370780051,0.022820416837931],[0.0092936856672168,0.018761517480016,0.079538032412529],[-0.050468556582928,-0.012559401802719,-0.064315356314182]],[[0.027835134416819,-0.011605164036155,0.00033890415215865],[-0.086052604019642,0.0092158894985914,-0.013912933878601],[-0.076348230242729,-0.04267980530858,0.020752865821123]],[[0.037078030407429,-0.0061922324821353,0.041906211525202],[0.044208403676748,-4.3517593439901e-05,0.066914662718773],[0.0017798379994929,-0.0032833856530488,-0.022345634177327]],[[0.080194912850857,-0.055295921862125,-0.023432105779648],[-0.027875620871782,0.062308877706528,-0.06538300216198],[-0.031668160110712,-0.079810038208961,-0.004682844504714]],[[-0.084987908601761,-0.057776287198067,-0.018106553703547],[-0.026627389714122,0.0042697181925178,-0.0066247778013349],[0.0086616827175021,0.0030930794309825,0.021803278476]],[[-0.0043119634501636,0.021049750968814,-0.055566638708115],[0.0065782871097326,-0.0060903914272785,-0.0053427056409419],[-0.053600493818521,-0.05482991784811,0.0067049022763968]],[[-0.048375159502029,-0.057600311934948,-0.044826090335846],[0.0093506034463644,-0.032057266682386,-0.04422115162015],[-0.094715416431427,0.019793145358562,0.040590144693851]],[[0.026425052434206,0.041675947606564,0.025077378377318],[0.0066578802652657,0.04647321999073,0.00056212081108242],[0.040052074939013,-0.061862826347351,-0.016848104074597]],[[-0.015561953186989,0.0092634744942188,0.0029967937152833],[-0.010005014017224,0.030358381569386,0.010738342069089],[-0.00094778428319842,0.10142760723829,-0.039874482899904]],[[-0.07273293286562,-0.038657806813717,0.046613022685051],[0.085915312170982,0.0030613243579865,0.022426534444094],[-0.020183948799968,-0.060105346143246,-0.017163181677461]],[[-0.060144297778606,0.047949466854334,-0.081205330789089],[0.085060834884644,-0.051845975220203,-0.0057622878812253],[-0.026404283940792,0.058546084910631,-0.071379631757736]],[[-0.023764073848724,0.037265956401825,0.038743078708649],[-0.035587094724178,-0.0086492756381631,-0.015699518844485],[-0.057056669145823,0.007839604280889,-0.010811328887939]],[[0.077285163104534,0.063974015414715,0.11336753517389],[-0.012961483560503,-0.015738610178232,-0.020499875769019],[0.058168791234493,-0.0036057329270989,0.078478254377842]],[[0.040196552872658,0.053281988948584,-0.025147074833512],[-0.086882650852203,-0.025841269642115,-0.053274091333151],[0.025279574096203,0.0156409740448,0.0018445497844368]],[[-0.011776538565755,-0.035122521221638,-0.01017436105758],[0.0055188364349306,-0.017738996073604,-0.0034487703815103],[0.032878492027521,-0.018589803948998,0.024556137621403]],[[0.053016431629658,0.073076687753201,-0.036128908395767],[0.032971054315567,-0.087162606418133,-0.0093722697347403],[-0.099549263715744,0.024529570713639,-0.023271040990949]],[[-0.056306395679712,-0.015683406963944,-0.021966932341456],[0.042683608829975,-0.0536671243608,0.0044959797523916],[-0.079683184623718,0.052298836410046,-0.062457699328661]],[[-0.080953061580658,-0.0053175059147179,-0.038144379854202],[-0.051922485232353,-0.004263115581125,-0.036935523152351],[0.022289179265499,0.02363526634872,0.017747802659869]],[[0.010315328836441,0.0012278776848689,-0.014448545873165],[0.039213709533215,0.024483663961291,-0.034264475107193],[0.040975622832775,0.091941691935062,-0.04129233956337]],[[-0.041353393346071,0.02771401964128,0.013796135783195],[0.041471648961306,-0.05059739202261,0.043782070279121],[-0.068300649523735,0.019260613247752,-0.02202320471406]],[[-0.061591394245625,-0.03506438434124,-0.0061806631274521],[0.010983869433403,-0.071130774915218,-0.04862878844142],[-0.0051463046111166,-0.1072603315115,0.037667505443096]],[[-0.019092770293355,0.024177433922887,-0.072100572288036],[0.010411909781396,0.065994463860989,0.0025208131410182],[0.044247049838305,0.030792253091931,0.034082029014826]],[[0.015432210639119,-0.03774169832468,0.05960151925683],[0.076729506254196,0.0040094549767673,0.019367191940546],[-0.010700992308557,-0.0055632605217397,0.011888112872839]],[[-0.045087318867445,-0.0048552453517914,-0.036219503730536],[-0.00092507869703695,0.008042817004025,-0.024567380547523],[-0.025428401306272,0.061765506863594,-0.024842677637935]],[[-0.033873550593853,0.036091797053814,-0.034477863460779],[-0.058794036507607,0.005823674146086,-0.013487170450389],[-0.02141223102808,0.016928436234593,0.030759649351239]]],[[[-0.067574590444565,0.0062186610884964,0.070467233657837],[0.0022326363250613,-0.049893666058779,-0.025267591699958],[0.052052695304155,-0.041718356311321,-0.010588114149868]],[[-0.021002724766731,-0.064602293074131,0.019264278933406],[-0.0081871841102839,-0.054216671735048,0.054002929478884],[-0.0093404920771718,0.04528733715415,0.051772717386484]],[[-0.012488561682403,-0.083559542894363,-0.080910690128803],[0.076992593705654,-0.066138722002506,-0.083966635167599],[0.025181462988257,-0.010843141935766,0.019576411694288]],[[-0.02010378241539,0.046929586678743,0.03187608346343],[0.0041515189222991,0.030345667153597,0.0065718274563551],[0.06758651137352,-0.012567478232086,0.031795863062143]],[[0.021955594420433,-0.0083709200844169,-0.014659065753222],[0.035178858786821,-0.00040944857755676,-0.080438278615475],[-0.027054287493229,0.07819752395153,-0.075833417475224]],[[0.070494681596756,6.7212604335509e-05,0.036604423075914],[-0.0011755359591916,0.033625543117523,-0.026653930544853],[0.068163745105267,-0.038207083940506,0.0843425989151]],[[-0.029624003916979,0.02135431393981,0.042856123298407],[-0.14249268174171,0.0018912475788966,-0.031839810311794],[-0.027661953121424,0.0011864281259477,0.092791862785816]],[[0.0033022670540959,-0.041144147515297,-0.0037803465966135],[-0.046397868543863,0.027558453381062,0.09449977427721],[-0.056431140750647,-0.023623695597053,-0.0080216927453876]],[[-0.062883503735065,-0.083607867360115,0.024056356400251],[0.056163627654314,0.025971155613661,0.00087636354146525],[0.0054469052702188,0.054687857627869,-0.012242441996932]],[[0.059437602758408,0.02978253364563,0.026728888973594],[0.04610450565815,0.080937907099724,0.03729560598731],[0.034527510404587,0.051688447594643,0.047199692577124]],[[-0.043671183288097,-0.028172273188829,-0.082582049071789],[-0.01588880084455,-0.087778300046921,0.03424371778965],[-0.025995979085565,-0.0035826503299177,-0.064462691545486]],[[-0.0096866078674793,0.0057679577730596,0.13976392149925],[0.034795939922333,0.10871525853872,-0.016984775662422],[0.061670310795307,-0.054020721465349,0.045612882822752]],[[0.071426317095757,-0.036891482770443,0.012490981258452],[-0.046346835792065,-0.15819673240185,0.023690594360232],[0.094185866415501,0.010960825718939,-0.042170472443104]],[[0.03533237054944,0.00020020882948302,-0.033679414540529],[-0.038408242166042,-0.0023698168806732,0.059255015105009],[-0.036132134497166,0.10460935533047,0.12563793361187]],[[0.058283697813749,0.021043859422207,0.0085380934178829],[0.055150710046291,0.044390987604856,-0.073086842894554],[0.088960349559784,0.17772287130356,-0.0032563384156674]],[[0.0035184996668249,0.042954966425896,-0.061007473617792],[0.069376654922962,0.071627244353294,0.063646569848061],[-0.014637715183198,-0.061076149344444,0.12105398625135]],[[0.0534179918468,0.016239620745182,0.045087076723576],[0.040750738233328,0.08803254365921,-0.044314961880445],[-0.040686227381229,0.1044584363699,0.027545534074306]],[[0.0083877351135015,0.010562828741968,0.015389704145491],[-0.089473523199558,-0.072721391916275,-0.047217004001141],[-0.041646040976048,-0.023797929286957,0.021507807075977]],[[-0.013500396162271,0.033750299364328,-0.09724298119545],[0.043265324085951,0.029078103601933,0.060784827917814],[0.10490077733994,0.0050157243385911,0.046086855232716]],[[0.020382227376103,0.069844953715801,-0.12440906465054],[0.043697513639927,-0.0055982675403357,0.010611587204039],[0.029755217954516,0.017326526343822,-0.017607886344194]],[[-0.053925961256027,0.025939121842384,0.13090826570988],[0.0016653527272865,-0.047246500849724,0.11315423250198],[-0.040360305458307,-0.058876678347588,0.034893412142992]],[[-0.012109820730984,-0.017301639541984,0.012258801609278],[0.035397984087467,0.0072796051390469,0.059377018362284],[0.041941843926907,0.062598899006844,0.040301691740751]],[[-0.026055315509439,0.034867469221354,0.0057518114335835],[0.015319433063269,-0.061938863247633,0.035988219082355],[0.0051509202457964,0.0072091873735189,-0.080140054225922]],[[-0.082145981490612,0.044096320867538,-0.027621081098914],[-0.0025838965084404,-0.073946766555309,0.061788149178028],[0.034082066267729,0.069863095879555,-0.078052386641502]],[[0.17837589979172,-0.015091832727194,0.045760009437799],[-0.02635051868856,-0.010361501015723,-0.074476338922977],[-0.010602607391775,0.077958188951015,0.051187053322792]],[[0.040009748190641,-0.054058682173491,0.012438878417015],[-0.046058624982834,-0.028753783553839,0.058710385113955],[0.041652385145426,0.035774391144514,0.076238453388214]],[[-0.059581115841866,-0.060852687805891,-0.053128484636545],[0.0064970818348229,0.099078364670277,0.017096288502216],[0.039422620087862,-0.055096056312323,-0.076870135962963]],[[-0.028567247092724,0.045250043272972,0.069592244923115],[-0.0077379108406603,0.017945826053619,0.028274681419134],[0.02277810126543,-0.016973093152046,-0.1244825348258]],[[-0.034588553011417,0.0052916198037565,-0.028691196814179],[-0.04980681091547,0.04785917699337,-0.068970695137978],[0.024738110601902,0.055496193468571,-0.030862685292959]],[[-0.018334176391363,0.079270906746387,0.043313346803188],[0.019614398479462,-0.065676540136337,0.025252237915993],[-0.044991195201874,-0.041645374149084,0.016134764999151]],[[-0.037668082863092,-0.012113558128476,-0.068375825881958],[0.014320391230285,-0.020019069314003,0.0051150028593838],[0.070887327194214,0.040209289640188,0.050448387861252]],[[0.10604314506054,0.0086715556681156,-0.054078672081232],[0.029256647452712,-0.014245431870222,-0.053242474794388],[0.021143510937691,0.021896442398429,-0.0093697095289826]],[[-0.045764464884996,-0.033462982624769,-0.023206945508718],[0.00074494566069916,-0.04365448653698,-0.056082230061293],[0.01031990814954,0.023326780647039,0.0034931320697069]],[[0.081927709281445,0.072642460465431,0.12015993148088],[-0.053374085575342,0.040754571557045,-0.0031348490156233],[0.12168802320957,0.085034005343914,0.01976733841002]],[[0.037869647145271,-0.02392603456974,0.017828177660704],[0.027283744886518,0.0037552511785179,0.016495073214173],[0.019989972934127,0.049940437078476,-0.034166019409895]],[[0.049913566559553,0.058094304054976,0.094489872455597],[-0.04712126776576,0.059075735509396,0.014818986877799],[0.056669771671295,-0.034906998276711,0.092560485005379]],[[-0.074692144989967,0.062958158552647,-0.023635828867555],[-0.083302989602089,0.035284996032715,-0.018754014745355],[0.092765644192696,-0.03885567933321,0.017418198287487]],[[0.003403750481084,0.034402664750814,-0.020192284137011],[0.081491835415363,0.049432493746281,0.039011515676975],[-0.0063781593926251,0.021776590496302,-0.014488431625068]],[[0.0070613166317344,-0.0038237692788243,0.056118987500668],[-0.034564252942801,0.075380228459835,-0.068347938358784],[0.078104257583618,0.066421397030354,0.027566308155656]],[[-0.048252355307341,-0.041954230517149,-0.082390919327736],[0.011976639740169,-0.015850607305765,-0.026266584172845],[0.045638717710972,0.059422474354506,-0.028911460191011]],[[0.028516367077827,-0.0051110647618771,-0.028683425858617],[-0.027909489348531,0.025166505947709,-0.010179400444031],[0.085929900407791,-0.0074543603695929,0.017123565077782]],[[-0.021181203424931,-0.039154253900051,-0.019812971353531],[0.041047815233469,-0.049632385373116,-0.024681845679879],[0.082996651530266,0.012566938996315,-0.033848382532597]],[[0.022453969344497,0.0052910265512764,-0.018853755667806],[-0.063075125217438,0.0038126453291625,0.020805019885302],[0.019919130951166,0.04915377125144,0.040753845125437]],[[-0.076219864189625,-0.040190361440182,-0.033851690590382],[0.010733894072473,0.04822788015008,0.023080237209797],[0.060589704662561,-0.031616222113371,-0.0090587269514799]],[[0.046486102044582,-0.021858604624867,0.0025296772364527],[-0.028513226658106,-0.035393588244915,-0.01720686070621],[-0.027058152481914,0.081260792911053,0.12479276955128]],[[0.084206975996494,0.007810584269464,-0.068808071315289],[0.070667989552021,0.10384891927242,-0.026876233518124],[0.039348796010017,-0.024013932794333,-0.0039480654522777]],[[-0.033633690327406,0.038525588810444,0.071174502372742],[0.02868227660656,-0.049267567694187,-0.014616949483752],[0.027948105707765,-0.0012101242318749,0.0099197570234537]],[[0.079858429729939,0.058586820960045,0.040682073682547],[0.033171206712723,0.053854916244745,-0.072931759059429],[0.034844562411308,-0.087010346353054,0.013100812211633]],[[0.027404738590121,0.024129286408424,0.033976171165705],[0.02201459556818,-0.02010558731854,0.05971771851182],[0.0070499265566468,-0.015599552541971,0.0096246572211385]],[[0.021077888086438,-0.030559157952666,-0.0046204868704081],[0.016022564843297,0.0054873721674085,0.02805245295167],[-0.0014664580812678,0.096918918192387,0.10818928480148]],[[-0.035605642944574,-0.044626988470554,-0.021941566839814],[0.024292107671499,-0.043014254420996,-0.048772793263197],[-0.04512682184577,0.024010555818677,-0.07996704429388]],[[0.04329614341259,0.024720100685954,0.14472553133965],[0.069746270775795,-0.01423182617873,0.013316831551492],[0.043316707015038,0.014755471609533,0.0013431564439088]],[[0.044032957404852,0.027448093518615,0.15812461078167],[0.07612518966198,-0.010114091448486,-0.096776098012924],[0.0032649205531925,0.11670257151127,0.064702346920967]],[[-0.027188986539841,-0.05454858392477,-0.074839010834694],[0.019443916156888,0.012392952106893,0.11579398810863],[-0.091044619679451,0.022924166172743,0.032583102583885]],[[-0.04027196392417,0.017801400274038,0.03641726821661],[0.036528382450342,-0.0021429669577628,0.015146696940064],[0.047045860439539,0.021310662850738,0.014370841905475]],[[0.070049777626991,-0.011889205314219,-0.10525672137737],[0.040564853698015,0.00012459067511372,-0.0070626283995807],[0.010126146487892,-0.0032631631474942,0.025627870112658]],[[0.05251993983984,0.051451977342367,-0.067690558731556],[0.0046868436038494,-0.039627321064472,0.02416324056685],[-0.054642748087645,0.013492740690708,-0.10220286995173]],[[-0.029914973303676,-0.005393011495471,0.03461092710495],[0.048203643411398,0.01231309119612,-0.034836143255234],[-0.043953351676464,0.0083648152649403,0.00060425169067457]],[[0.035730611532927,0.062559895217419,-0.017456462606788],[0.011470448225737,0.0027319551445544,0.043175559490919],[0.048177056014538,0.046670239418745,-0.027911819517612]],[[0.033534280955791,0.021635137498379,0.015798965469003],[0.019611662253737,-0.041926309466362,-0.025343131273985],[-0.0020955316722393,-0.036409460008144,0.081970848143101]],[[0.031075075268745,-0.018274242058396,-0.055804777890444],[-0.0058330888859928,0.034392960369587,-0.021756706759334],[-0.0043874620459974,0.053665172308683,0.010262210853398]],[[0.0046855355612934,-0.074361905455589,0.032532069832087],[-0.094600640237331,-0.073800854384899,-0.0037635879125446],[-0.0043220310471952,-0.09670951962471,-0.018399052321911]],[[0.071397714316845,0.00053714495152235,0.096050225198269],[0.073406554758549,0.024106191471219,0.084487363696098],[-0.0058317948132753,0.071845561265945,0.046111799776554]],[[0.062893383204937,0.034573838114738,-0.060882072895765],[0.030972676351666,-0.028792409226298,0.047160357236862],[-0.022070404142141,0.029216550290585,0.013460206799209]],[[0.051986116915941,0.060384575277567,0.063133232295513],[-0.031768202781677,-0.042404439300299,-0.00045297649921849],[0.029790939763188,0.05999206751585,-0.080198056995869]],[[0.065502353012562,-0.0017688805237412,-0.092109724879265],[0.016487497836351,0.056411270052195,0.051072753965855],[0.012930670753121,-0.0096494741737843,0.089544966816902]],[[0.028653871268034,-0.0073822257108986,-0.046601813286543],[-0.025527728721499,-0.019016290083528,-0.051516611129045],[0.045273505151272,0.017100978642702,0.0029125916771591]],[[0.014486747793853,0.074362844228745,0.033005371689796],[0.019768584519625,0.044474102556705,-0.045503079891205],[0.0792051628232,-0.059521548449993,0.11905860900879]],[[0.063530869781971,0.0027330722659826,0.071267835795879],[-0.077299676835537,-0.0077645475976169,0.054801426827908],[-0.019083950668573,0.04186611995101,-0.020284105092287]],[[0.033550854772329,-0.048013374209404,0.070415072143078],[0.054778959602118,-0.013738750480115,-0.013660022057593],[0.037437371909618,-0.04098392277956,0.053721409291029]],[[-0.06086515262723,-0.032698329538107,0.029108829796314],[0.039620321244001,-0.0059753321111202,0.043774276971817],[0.036303851753473,0.024518553167582,-0.0021098393481225]],[[0.014151711016893,0.058753479272127,-0.059873078018427],[-0.02286178059876,-0.04004468396306,0.056230373680592],[-0.0001760480372468,-0.015103987418115,-0.011463863775134]],[[0.034833703190088,0.082645520567894,0.098281599581242],[0.11090762168169,0.011390985921025,0.1480173766613],[0.057373896241188,0.0074431747198105,0.0425128005445]],[[0.13267236948013,-0.040750473737717,0.042395710945129],[0.015219915658236,0.037270125001669,0.033835202455521],[0.043652944266796,-0.0098645547404885,0.029693823307753]],[[0.017732977867126,0.018749555572867,-0.0012598119210452],[-0.092037878930569,-0.011654595844448,0.084096431732178],[-0.014678562059999,0.010976665653288,0.022698873654008]],[[-0.044248294085264,0.050715308636427,-0.022243211045861],[-0.014633431099355,-0.013999572955072,0.0095173139125109],[-0.053298678249121,0.038113474845886,0.012517793104053]],[[0.019572649151087,0.053457424044609,0.051506776362658],[-0.030554896220565,-0.020756430923939,-0.071708254516125],[-0.021679472178221,-0.011878131888807,-0.024508019909263]],[[-0.0049288654699922,0.021683743223548,-0.010847979225218],[0.054863844066858,0.056620217859745,-0.0004406311782077],[-0.041985861957073,-0.0048608989454806,0.09149906784296]],[[0.019038153812289,-0.065433762967587,-0.032612282782793],[0.098874390125275,0.052528526633978,-0.0035733946133405],[-0.075889803469181,0.055533610284328,-0.033574875444174]],[[0.060526672750711,0.002339615020901,0.050896245986223],[0.0046992502175272,0.058808863162994,-0.066113762557507],[-0.036046214401722,0.0019877292215824,0.04594649374485]],[[0.013550600036979,0.070046342909336,-0.023003613576293],[-0.015924278646708,0.03052931278944,0.013553530909121],[0.038817796856165,-0.0047677052207291,-0.043041460216045]],[[-0.14387370646,-0.098572745919228,-0.068137213587761],[-0.047640033066273,-0.041986953467131,-0.0029766538646072],[0.033052273094654,0.017730128020048,0.020714702084661]],[[0.06923071295023,-0.035560447722673,0.077361568808556],[0.13460627198219,-0.035475485026836,-0.003816063515842],[0.10622127354145,0.054081570357084,-0.024955051019788]],[[0.039033774286509,-0.045711047947407,-0.016789820045233],[0.063042640686035,0.10607808083296,-0.098540961742401],[0.0012805786682293,0.037380691617727,0.083442829549313]],[[0.10159372538328,0.094524800777435,-0.013142631389201],[-0.060857318341732,0.065730579197407,0.14991670846939],[0.026022624224424,0.033473398536444,0.03962866589427]],[[0.074381865561008,-0.011510427109897,-0.082361735403538],[0.016896039247513,0.050579067319632,-0.003266129642725],[0.014537787996233,0.07427329570055,-0.024725157767534]],[[0.032622929662466,-0.015686072409153,0.013852935284376],[0.017110893502831,0.00019669096218422,-0.0091992830857635],[0.0056929448619485,-0.053370237350464,0.023643197491765]],[[0.0028055442962795,-0.035931546241045,0.00014405626279768],[-0.0064290966838598,-0.014485938474536,0.015183252282441],[-0.060301393270493,0.0096589038148522,0.034825451672077]],[[0.07282742112875,0.076702885329723,0.017247887328267],[-0.018526721745729,-0.014466384425759,0.081857368350029],[0.065907537937164,-0.0083618694916368,0.10551726818085]],[[-0.0088706938549876,-0.020769482478499,0.0098671326413751],[0.094920478761196,-0.00017622680752538,0.058400996029377],[0.0015897573903203,-0.031933035701513,0.058705762028694]],[[-0.025343013927341,0.0044664577580988,0.14561951160431],[0.037076152861118,0.044880468398333,0.06290802359581],[0.015488988719881,0.030599776655436,0.067339979112148]],[[0.071326337754726,0.053008303046227,0.014838047325611],[-0.030356010422111,0.0021695184987038,0.054062850773335],[0.0017890135059133,0.0019681546837091,0.041001863777637]],[[-0.10657991468906,-0.011871713213623,-0.025802299380302],[-0.039231434464455,-0.011498842388391,-0.033398445695639],[-0.015370918437839,0.041038256138563,-0.024407487362623]],[[0.11110310256481,0.049456864595413,-0.0017048359150067],[0.00031094410223886,-0.03347634524107,-0.067839115858078],[-0.035119608044624,0.037553008645773,0.024964576587081]],[[0.041548423469067,0.030435923486948,-0.0022934242151678],[0.0078335450962186,0.066741272807121,0.0017619687132537],[0.093540400266647,-0.0043297032825649,0.034868855029345]],[[0.019318146631122,0.037660766392946,-0.024634040892124],[-0.052573431283236,0.036414086818695,0.013085103593767],[0.022585934028029,-0.01267419103533,-0.020851995795965]],[[0.074088051915169,0.010156728327274,0.070636689662933],[-0.029386406764388,0.081864774227142,0.065235055983067],[0.024742275476456,0.079645983874798,-0.051927037537098]],[[0.12368783354759,0.0129907252267,-0.002559976419434],[0.046980902552605,0.00034550789860077,-0.021132949739695],[0.023687848821282,0.070736788213253,0.087713420391083]],[[0.011592119932175,0.03399033844471,0.0576979406178],[0.022292198613286,-0.017745107412338,-0.054884903132915],[-0.072507999837399,0.021092647686601,0.02708975225687]],[[-0.055028539150953,-0.066056631505489,0.1016613766551],[-0.058383140712976,0.044977746903896,-0.05400363728404],[0.064244352281094,-0.10037009418011,0.031361021101475]],[[0.05673012137413,0.092419937252998,-0.063999682664871],[-0.0111611969769,-0.093020908534527,-0.015853308141232],[0.018173523247242,-0.02188603579998,0.034429840743542]],[[-0.030926115810871,0.010657655075192,0.046409245580435],[0.15426753461361,0.054743491113186,-0.049980022013187],[0.039942666888237,0.1095954105258,0.024165032431483]],[[0.02011689171195,-0.043581247329712,0.020724084228277],[0.015351783484221,-0.05170388892293,0.024705866351724],[-0.00070049735950306,0.025768846273422,-0.017495650798082]],[[0.030548693612218,0.028088437393308,-0.023797962814569],[0.062518112361431,-0.082984752953053,0.041056614369154],[0.028146453201771,-0.047877907752991,0.0081619396805763]],[[0.08442759513855,0.095289804041386,0.073508001863956],[0.043470237404108,0.069630540907383,0.01147613953799],[0.07244735211134,0.065967030823231,0.017056528478861]],[[-0.13483348488808,-0.057536274194717,0.034777514636517],[0.00014653912512586,0.030995815992355,-0.012740591540933],[0.080544620752335,0.030389279127121,0.030768873170018]],[[0.00015660155622754,0.039595399051905,-0.04741770401597],[0.091928750276566,-0.025531377643347,-0.0024471313226968],[0.042981244623661,0.085036292672157,-0.032820783555508]],[[-0.062357120215893,0.035925172269344,0.097117587924004],[-0.0482760630548,0.039741303771734,-0.027106190100312],[0.052546046674252,-0.045822158455849,0.018099458888173]],[[-0.043354537338018,0.071866750717163,-0.042824257165194],[0.039366170763969,0.022459227591753,-0.031948748975992],[0.013273759745061,-0.047870766371489,0.080540798604488]],[[0.056346643716097,0.055297147482634,0.04117077216506],[0.013151724822819,-0.018391193822026,0.00084610446356237],[0.0088600972667336,-0.023766353726387,-0.037546087056398]],[[0.028135752305388,0.066061481833458,-0.060889314860106],[-0.034500367939472,-0.028623208403587,0.012182881124318],[-0.034234777092934,-0.017640493810177,0.025520067662001]],[[0.059365645051003,0.048147585242987,-0.042170342057943],[-0.013135397806764,0.0012090504169464,0.048583559691906],[0.10120966285467,-0.024512603878975,0.046007551252842]],[[-0.010349972173572,-0.043612629175186,-0.025920793414116],[0.031229352578521,0.067863166332245,0.010623154230416],[-0.017311764881015,-0.0074921646155417,0.039183065295219]],[[0.016001742333174,0.016428653150797,-0.0062157302163541],[0.021994875743985,-0.02640880830586,-0.061216983944178],[0.043458629399538,-0.022834334522486,-0.047931797802448]],[[0.060363598167896,-0.045846030116081,-0.053370930254459],[-0.013034729287028,0.016430934891105,0.017170734703541],[0.097765229642391,-0.086694613099098,-0.13044981658459]],[[0.025261897593737,0.066825598478317,-0.0036672467831522],[0.11573404818773,-0.011707893572748,0.040832284837961],[0.063528478145599,0.0058689955621958,0.010259971022606]],[[-0.062656819820404,0.11232464015484,0.043520096689463],[0.023699298501015,0.085672445595264,0.070227026939392],[0.026058631017804,0.052959568798542,0.055835235863924]],[[0.001470988499932,-0.0020947207231075,0.040229309350252],[0.024448744952679,0.095278106629848,-0.04990166425705],[-0.074053145945072,-0.002103325445205,-0.049799844622612]],[[0.051753882318735,-0.059172328561544,-0.053978264331818],[0.071737378835678,0.076725505292416,0.045432452112436],[0.0048970407806337,-0.011574567295611,-0.045575328171253]],[[-0.027200262993574,-0.02972824499011,-0.051590632647276],[-0.090272903442383,-0.05115806683898,-0.028909351676702],[0.059266611933708,0.073508806526661,-0.082555644214153]],[[-0.053960334509611,-0.0041004153899848,0.0061304285191],[0.03823309391737,0.0074773570522666,-0.037035964429379],[-0.08428880572319,-0.0013865776127204,0.092498540878296]],[[-0.0022333669476211,0.018605161458254,0.025973303243518],[0.058889161795378,0.0014946531737223,-0.053053949028254],[0.039870303124189,0.065085105597973,0.019743207842112]],[[0.098795793950558,-0.076891995966434,-0.038729041814804],[-0.030212612822652,0.077524490654469,0.019364731386304],[-0.038176234811544,-0.019520856440067,0.020442012697458]],[[-0.0097155971452594,0.0076962122693658,-0.054022252559662],[0.02695233002305,-0.12325175851583,-0.034900210797787],[-0.036689065396786,-0.0040787509642541,-0.10061265528202]],[[0.033135872334242,0.010177287273109,0.02466719225049],[0.028815131634474,0.11639466881752,0.090268112719059],[-0.04855215921998,0.030721725896001,0.063727609813213]],[[-0.016342159360647,0.00078748923260719,-0.03967822343111],[-0.0045387772843242,-0.038727879524231,-0.061700247228146],[-0.042862579226494,0.051148224622011,-0.010097559541464]],[[0.02469745464623,0.015062768943608,0.055994883179665],[0.079571418464184,-0.00088819698430598,-0.000355427415343],[0.046711076050997,0.06016505882144,-0.013097126968205]],[[0.0074563813395798,0.041413523256779,0.014575010165572],[0.11471004784107,0.05899066850543,-0.039526771754026],[0.0023100920952857,0.11673191189766,-0.016749277710915]]],[[[-0.074223309755325,0.045414388179779,0.063563659787178],[0.028082124888897,-0.062944829463959,0.0089608281850815],[0.045210085809231,-0.005451453384012,0.058367118239403]],[[0.03238283097744,-0.02857811935246,-0.040861140936613],[-0.087498962879181,-0.0066730384714901,0.018643073737621],[-0.014154463075101,-0.051867380738258,-0.0045981067232788]],[[-0.022838609293103,0.044358570128679,0.053069308400154],[0.00070616882294416,0.08295925706625,-0.042006753385067],[0.018000407144427,-0.0011971150524914,0.038072288036346]],[[-0.049376014620066,0.070456989109516,-0.013053939677775],[-0.019853055477142,0.023720629513264,-0.015819862484932],[-0.017926450818777,0.042018037289381,-0.0014215335249901]],[[0.030571658164263,0.028403710573912,0.0065458593890071],[0.0026935692876577,-0.008357779122889,-0.018236812204123],[0.065892681479454,0.027546236291528,-0.027517974376678]],[[0.057800035923719,0.089477188885212,0.046301014721394],[0.027722770348191,0.034307651221752,-0.02341440692544],[0.037941168993711,0.037124827504158,0.033041760325432]],[[0.0048126303590834,-0.063453257083893,-0.023108899593353],[-0.058828879147768,-0.061196655035019,-0.023451834917068],[0.083248123526573,0.025427859276533,-0.049255933612585]],[[0.078548237681389,0.07258240878582,-0.01930152066052],[-0.033655356615782,-0.039562053978443,-0.030295014381409],[-0.08085048943758,-0.011086785234511,-0.030298534780741]],[[0.029197122901678,0.064389072358608,0.056501563638449],[0.020962523296475,-0.015523557551205,0.061042547225952],[0.034246619790792,0.002675621304661,0.053185429424047]],[[0.02619656175375,0.079726710915565,0.018264418467879],[0.0049499128945172,0.154133066535,0.12098932266235],[0.087510362267494,0.003843767568469,0.069988019764423]],[[-0.024435004219413,0.019388953223825,0.040055278688669],[-0.099945515394211,-0.010913177393377,0.011640710756183],[0.049560137093067,0.11548592150211,-0.013754869811237]],[[-0.019750185310841,0.0089530516415834,0.012622770853341],[-0.027047213166952,0.056609485298395,0.098653174936771],[0.018053369596601,0.061787612736225,-0.044665850698948]],[[0.030515210703015,-0.073941022157669,0.0031571940053254],[-0.010058658197522,0.032975558191538,0.0049809855408967],[0.036035213619471,0.022209245711565,0.0035483639221638]],[[0.031525421887636,0.014488129876554,-0.043504856526852],[-0.07078542560339,0.041921187192202,0.046214379370213],[0.14363542199135,-0.02507590688765,0.06571438908577]],[[-0.053682148456573,0.027603294700384,0.044257052242756],[0.16145469248295,-0.0092197712510824,-0.029452657327056],[0.038244009017944,0.13980379700661,0.0062535400502384]],[[-0.0082625858485699,0.031959772109985,-0.0069533474743366],[-0.078450992703438,0.031344018876553,-0.035388354212046],[-0.01384052913636,-0.010119246318936,-0.033882807940245]],[[-0.0010768790962175,0.041951134800911,0.011816957965493],[0.063241757452488,0.17997562885284,-0.042370349168777],[-0.05553400143981,-0.026875307783484,0.010051202960312]],[[0.030661353841424,0.01139216311276,-0.03389636054635],[-0.048483349382877,0.024469399824739,-0.0042497180402279],[0.028675137087703,-0.015633935108781,-0.0075329821556807]],[[-0.047589361667633,0.041631054133177,-0.045712132006884],[-0.040619276463985,0.014085080474615,0.085034646093845],[0.072700798511505,0.011522858403623,0.012341059744358]],[[0.051388837397099,0.034331880509853,0.013152055442333],[-0.05007641017437,0.028557937592268,-0.066498763859272],[0.030308451503515,0.00048173777759075,0.043329160660505]],[[-0.034217406064272,0.0063542388379574,0.011536286212504],[0.034208532422781,0.11026852577925,-0.021410845220089],[0.063928753137589,0.041370991617441,0.003365341341123]],[[0.051014341413975,-0.020545264706016,-0.037276539951563],[0.022655980661511,-0.012039112858474,0.10195432603359],[-0.024992123246193,0.081974424421787,0.16208153963089]],[[-0.047145929187536,-0.010581926442683,-0.051506381481886],[-0.048894762992859,-0.024460991844535,-0.018380301073194],[-0.097365751862526,-0.025491217151284,-0.041901908814907]],[[-0.021232148632407,0.057810068130493,-0.0035159063991159],[-0.059134192764759,0.09350547939539,0.022469254210591],[-0.018489088863134,0.021776681765914,-0.024825975298882]],[[-0.090685591101646,0.010641118511558,-0.026717107743025],[0.022899243980646,0.06592408567667,0.024145843461156],[0.0011900564422831,-0.073378503322601,-0.03100118227303]],[[-0.054261334240437,-0.043399512767792,0.024530248716474],[-0.087264209985733,0.036609038710594,-0.11443967372179],[-0.1173981577158,-0.073447227478027,-0.049642696976662]],[[-0.042759735137224,-0.029599403962493,0.032212916761637],[0.012228114530444,-0.003419506829232,0.026011228561401],[0.11879542469978,0.0077224201522768,-0.049084853380919]],[[0.020362421870232,0.065620891749859,0.073227748274803],[0.039751999080181,0.086951918900013,0.0017386527033523],[-0.0049991272389889,-0.10537447035313,-0.0034657779615372]],[[0.048318229615688,-0.00087046879343688,-0.0028481320478022],[0.085027135908604,0.082227386534214,0.011438448913395],[0.0044453209266067,-0.036857798695564,0.02699470706284]],[[-0.10456471145153,-0.0029416023753583,0.0042943819426],[0.056456733494997,-0.022007690742612,0.0019197694491595],[0.00069117196835577,0.045900702476501,0.019910719245672]],[[-0.078475333750248,0.03057368285954,0.044506397098303],[-0.02959474734962,0.11618042737246,0.051745977252722],[0.070485562086105,0.059192217886448,0.046109206974506]],[[-0.0002029230381595,0.0055871088989079,-0.002562791807577],[0.079422913491726,-0.10321751981974,0.19364129006863],[-0.035186108201742,-0.062467962503433,0.0031665870919824]],[[-0.022399028763175,0.022062480449677,0.016913069412112],[0.017110301181674,0.020872129127383,-0.024281334131956],[0.032641038298607,0.022201735526323,0.040450870990753]],[[0.060688778758049,-0.086151942610741,0.031283982098103],[0.018401842564344,-0.008936352096498,0.032769560813904],[0.032148823142052,0.02714523486793,0.0092184646055102]],[[-0.056146372109652,0.02524895593524,0.082617238163948],[-0.022991737350821,-0.059678941965103,0.074918709695339],[0.063860110938549,0.11448545008898,-0.012739755213261]],[[0.0007090464932844,-0.0482008010149,0.008555231615901],[0.055046625435352,0.035402726382017,0.014917145483196],[-0.0085153831169009,-0.049983073025942,0.058037921786308]],[[-0.067688077688217,-0.065077289938927,-0.069470897316933],[0.051210153847933,-0.14412443339825,-0.04778053611517],[-0.1000546887517,-0.026656957343221,-0.13558055460453]],[[-0.003530465066433,-0.062167003750801,-0.03099687024951],[-0.12511251866817,0.0010815397836268,-0.0019535510800779],[-0.02093917503953,-0.0068476162850857,0.12505653500557]],[[-0.0041106273420155,0.014203423634171,0.063454426825047],[-0.040385618805885,-0.00028911759727634,-0.006855427287519],[0.075320012867451,-0.00035118131199852,0.0085260849446058]],[[0.036516107618809,0.082521565258503,0.071159318089485],[0.00484853470698,0.01692415587604,0.027605522423983],[0.082293160259724,0.0038114059716463,0.0067682876251638]],[[0.086890615522861,0.046564839780331,-0.015984961763024],[0.0046905404888093,-0.0031471538823098,-0.0091342544183135],[-0.079026065766811,0.092683970928192,-0.015177384950221]],[[0.031415972858667,-0.050207175314426,0.030193304643035],[0.040232073515654,-0.02946474775672,0.0029667967464775],[-9.1095294919796e-05,-0.04518336802721,-0.011430522426963]],[[0.071140006184578,-0.02446161955595,-0.028747590258718],[-0.0044375793077052,0.052761536091566,0.016262864693999],[0.023596430197358,0.045519609004259,-0.010038462467492]],[[0.007516956422478,-0.033734913915396,0.043674327433109],[0.00077105296077207,0.024100119248033,-0.034790679812431],[-0.0046851704828441,0.01957069709897,0.070669494569302]],[[-0.027508223429322,0.030502442270517,0.049973011016846],[-0.062048308551311,-0.019444761797786,-0.019891854375601],[-0.074480332434177,0.081448249518871,0.074899934232235]],[[0.086212739348412,-0.097317360341549,0.00061265600379556],[0.0028862105682492,0.025626342743635,-0.036674216389656],[0.064254522323608,0.063442908227444,-0.003586643608287]],[[-0.091599225997925,-0.017376195639372,0.050277087837458],[0.0021679864730686,0.050753567367792,0.011404747143388],[0.029168279841542,0.017440807074308,0.015119665302336]],[[0.045742750167847,-0.034008707851171,0.080500707030296],[0.041785895824432,0.080033272504807,0.014197235926986],[0.018541799858212,0.017044091597199,0.057582281529903]],[[-0.034843612462282,-0.0047806692309678,0.013688963837922],[-0.038101673126221,0.075073726475239,-0.033165197819471],[-0.0168660543859,-0.016743583604693,-0.012846637517214]],[[-0.016861481592059,0.033597346395254,0.11064118891954],[-0.058346260339022,0.0075496528297663,-0.083945833146572],[-0.18318963050842,0.0013072678120807,0.051727745682001]],[[0.03291293233633,0.031360447406769,0.016323562711477],[-0.027126092463732,-0.00036657229065895,-0.0019390864763409],[-0.036491584032774,0.071089714765549,-0.04609751701355]],[[0.01196529623121,-0.024842066690326,0.11456099897623],[-0.035571381449699,0.039103522896767,0.038570046424866],[-0.0073618781752884,-0.002430142601952,-0.003654905827716]],[[0.023803949356079,-0.049433913081884,0.054693534970284],[0.042942799627781,-0.008599023334682,-0.059965688735247],[0.12899196147919,-0.045999631285667,0.10051187127829]],[[0.054074931889772,0.053412977606058,-0.015560915693641],[0.048679683357477,0.013805597089231,-0.014455962926149],[-0.066903509199619,0.069820776581764,0.0073711341246963]],[[-0.037605263292789,0.075788870453835,0.075223073363304],[0.0046831802465022,0.014665110968053,-0.05290650203824],[0.10272677987814,-0.02071394957602,0.0013795614941046]],[[0.087687104940414,-0.097038395702839,-0.020755967125297],[-0.071729399263859,0.016887893900275,0.055768415331841],[0.069985307753086,0.0022960223723203,-0.016521021723747]],[[-0.0080001791939139,0.022906372323632,-0.0026597008109093],[-0.012347548268735,-0.013283143751323,0.04739186912775],[-0.012880012392998,0.021085010841489,-0.023353070020676]],[[0.048890396952629,0.10532423108816,0.016045292839408],[-0.043305158615112,0.010030675679445,-0.04653076082468],[-0.036999348551035,-0.00060173438396305,0.0051099904812872]],[[-0.0085944598540664,0.067097954452038,0.032203607261181],[-0.037608969956636,-0.028413262218237,0.11683400720358],[0.057609774172306,0.089228175580502,0.038847960531712]],[[-0.0055876597762108,0.055277276784182,0.0019401032477617],[0.011257565580308,0.033402178436518,-0.069590851664543],[0.064254842698574,0.11469182372093,0.066907726228237]],[[-0.052316635847092,0.04638871923089,0.0047155604697764],[0.027054764330387,0.0063170013017952,0.02386736497283],[0.045349035412073,0.092806205153465,-0.0063778883777559]],[[0.049792986363173,0.0092390477657318,-0.099399521946907],[0.0080485269427299,0.019684171304107,0.05987660586834],[0.026418307796121,0.012324786745012,-0.029933610931039]],[[-0.080818705260754,-0.073487550020218,0.029925556853414],[-0.025874178856611,0.036079037934542,-0.06706765294075],[0.10325894504786,-0.026383627206087,-0.0332674048841]],[[0.083117879927158,0.12783752381802,0.063556462526321],[0.019840052351356,-0.0080965021625161,-0.025261431932449],[-0.012264390476048,-0.064370691776276,-0.019043866544962]],[[0.038203153759241,-0.046309780329466,-0.013363034464419],[-0.050597183406353,0.028538467362523,-0.032367821782827],[-0.0044897077605128,-0.00069873698521405,-0.0033435260411352]],[[-0.043959777802229,0.081582650542259,-0.024375073611736],[-0.07630230486393,0.014288782142103,-0.055112991482019],[-0.023360712453723,0.012543139047921,0.038040310144424]],[[0.093691267073154,-0.0018328543519601,-0.011011010967195],[0.010113090276718,0.082124903798103,0.049048200249672],[0.04780150577426,0.12996426224709,0.030599495396018]],[[0.014008637517691,0.046025596559048,0.043072681874037],[0.002483895746991,-0.03977819904685,-0.03651974350214],[0.028476927429438,0.022173078730702,0.03325879573822]],[[-0.055054821074009,-0.017841985449195,0.035304725170135],[-0.04225455224514,-0.010897059924901,0.045922070741653],[-0.032090228050947,0.12181641161442,-0.020501751452684]],[[0.01770556718111,0.057640865445137,0.066118709743023],[0.071610845625401,-0.027912186458707,0.048453878611326],[0.077523551881313,0.011572696268559,0.0034059737809002]],[[0.013119883835316,-0.030890740454197,0.017084611579776],[0.033403694629669,0.024811964482069,0.016376918181777],[0.043948378413916,0.01541670691222,0.052049830555916]],[[0.028299363330007,-0.012853119522333,-0.0080982958897948],[0.066675238311291,-0.012374199926853,0.024479301646352],[0.049425274133682,0.046009324491024,-0.043797191232443]],[[0.050887670367956,0.015961183235049,0.090453281998634],[0.0012566997902468,0.0063340403139591,-0.081852205097675],[-0.011643283069134,-0.056604698300362,-0.0092217093333602]],[[0.047126941382885,0.070247709751129,0.024698536843061],[-0.029936512932181,0.024471903219819,0.024340925738215],[0.027820626273751,0.04551100730896,0.039516132324934]],[[0.0012559056049213,-0.0062456666491926,0.043068308383226],[-0.037547890096903,-0.046588782221079,-0.012846075929701],[-0.0098985629156232,-0.093063592910767,-0.05280564725399]],[[0.17943270504475,0.052088394761086,0.086038686335087],[-0.062953725457191,-0.034331634640694,-0.075852148234844],[-0.0026134017389268,0.077434226870537,0.10132916271687]],[[0.060714215040207,-0.031246712431312,-0.025738570839167],[-0.057998154312372,0.0012673314195126,0.048869404941797],[-0.0085076000541449,-0.1260284781456,-0.016670783981681]],[[0.057666357606649,-0.032493099570274,-0.048705384135246],[0.024564730003476,0.10236499458551,0.025167120620608],[0.020107777789235,0.126579195261,0.044957730919123]],[[0.039910804480314,-0.025067366659641,0.075217500329018],[-0.065074428915977,0.093775875866413,0.02783627435565],[0.003184090834111,0.042229760438204,-0.039155349135399]],[[0.043901819735765,-0.060965035110712,0.098416790366173],[0.026934057474136,-0.0099390121176839,0.013528101146221],[-0.049644120037556,-0.030877824872732,-0.0052362326532602]],[[0.036987587809563,0.060306254774332,0.0091850003227592],[0.060291562229395,0.003745834575966,0.038059175014496],[0.085422180593014,-0.043985951691866,0.010974107310176]],[[-0.058317121118307,-0.068812891840935,-0.002450477797538],[0.02200379781425,-0.062096975743771,0.12554141879082],[-0.029673432931304,0.015811642631888,0.030857965350151]],[[-0.011779201216996,0.00042280985508114,0.012503665871918],[0.075952805578709,-0.045258611440659,0.067981906235218],[-0.039793413132429,-0.023853547871113,0.079919449985027]],[[0.028971893712878,0.027307111769915,0.079760685563087],[0.011155479587615,0.086858294904232,-0.010070711374283],[-0.018182560801506,0.006687683518976,0.090461805462837]],[[0.037638656795025,0.056655533611774,-0.0013541624648497],[-0.010511936619878,0.078860126435757,-0.012007219716907],[-0.046155996620655,-0.13445495069027,-0.027982845902443]],[[0.021662641316652,0.013910052366555,-0.014536932110786],[0.071874059736729,-0.10773284733295,0.062148183584213],[0.05110864713788,0.01413855701685,-0.015450623817742]],[[0.034032516181469,-0.024487851187587,-0.046062618494034],[0.056119978427887,0.029268857091665,0.078699797391891],[-0.0072030290029943,0.024176666513085,0.0072068884037435]],[[0.016907047480345,0.0026188620831817,-0.010992308147252],[0.080552935600281,-0.081640794873238,0.02535386942327],[0.15600410103798,0.088013298809528,-0.039735287427902]],[[-0.01684745028615,0.0017718023154885,-0.0074938922189176],[0.016494804993272,-0.012933847494423,0.094273447990417],[0.021489564329386,0.06748104095459,0.044926188886166]],[[0.031466953456402,0.0029479104559869,-0.0092314332723618],[-0.054860949516296,-0.040055930614471,-0.03521703928709],[0.0099140331149101,0.019051473587751,0.050778403878212]],[[0.074024990200996,0.0032975198701024,-0.053654100745916],[0.083957642316818,0.097076676785946,0.02568874694407],[0.060397140681744,-0.012174010276794,0.033218119293451]],[[0.0036817761138082,0.054910864681005,-0.009392274543643],[-0.014402694068849,-0.013981264084578,-0.089714013040066],[0.018803829327226,0.06506484746933,0.0027928894851357]],[[0.016095027327538,-0.0059708640910685,-0.0072920378297567],[-0.060857426375151,-0.096051953732967,0.021350998431444],[-0.039151940494776,-0.04056216776371,0.036095436662436]],[[-0.021826567128301,-0.025357089936733,-0.055364057421684],[0.087679468095303,0.0053102360107005,-0.058811891824007],[0.073385514318943,0.020064817741513,0.0097367130219936]],[[-0.010796681977808,0.14862713217735,0.031194465234876],[-0.011800073087215,0.065279632806778,0.079771868884563],[-0.027118058875203,-0.022755168378353,0.099545501172543]],[[-0.034780945628881,0.035664767026901,-0.053363665938377],[-0.047588847577572,0.021421238780022,-0.03739470615983],[-0.00014723812637385,0.1660537570715,0.03077263943851]],[[0.0017890244489536,-0.015696616843343,0.033666931092739],[-0.044232223182917,0.079051025211811,0.027144847437739],[-0.037101466208696,-0.019238481298089,-0.0034046466462314]],[[0.00086177774937823,0.099634654819965,0.095133818686008],[0.018266920000315,-0.043565254658461,0.10136535763741],[0.02576239220798,0.055995635688305,0.05678429082036]],[[0.0040323939174414,0.061306465417147,-0.00085421046242118],[0.030555451288819,-0.031800668686628,-0.037695810198784],[0.019340617582202,0.049917459487915,0.043351951986551]],[[-0.016930529847741,-0.037385184317827,0.017472608014941],[0.015957674011588,0.020762167870998,0.030434811487794],[0.029039833694696,-0.0069260764867067,0.017117025330663]],[[-0.0085502071306109,-0.018932806327939,0.065231069922447],[0.044717855751514,-0.016110867261887,0.045651093125343],[-0.017380174249411,0.010227983817458,-0.0006158854230307]],[[0.039000160992146,0.089834675192833,0.01725228689611],[0.028959982097149,0.055194061249495,-0.02952447347343],[0.039853494614363,0.10525587946177,0.059091117233038]],[[0.011739647015929,0.0078139267861843,0.036349546164274],[-0.016748243942857,-0.094940111041069,0.014229604974389],[0.04781049862504,0.065837971866131,-0.044836688786745]],[[0.033544521778822,0.044633567333221,0.029076857492328],[0.05239400267601,-0.05356040969491,0.083875022828579],[-0.008785773999989,-0.017027415335178,0.0075841592624784]],[[0.0061016352847219,-0.034727353602648,0.025035744532943],[0.06103204190731,0.031641162931919,-0.016841061413288],[-0.0070698661729693,0.028790652751923,0.079777851700783]],[[0.0045068096369505,-0.03946328908205,0.0094790393486619],[0.0090028923004866,0.034055314958096,-0.0088261784985662],[-0.035479284822941,0.018543122336268,-0.0029927277937531]],[[0.16089054942131,0.076067864894867,0.082162044942379],[0.062010560184717,-0.014380514621735,0.10941660404205],[-0.003917430061847,0.011712808161974,0.015576871111989]],[[0.057589665055275,-0.019587403163314,-0.042921777814627],[-0.024648230522871,0.074543535709381,-0.025624398142099],[0.032953679561615,-0.025125430896878,0.010014087893069]],[[-0.023721938952804,-0.041343376040459,0.02119205519557],[-0.11477793008089,-0.12816524505615,-0.099441573023796],[0.052057825028896,-0.10450576245785,0.038301773369312]],[[-0.022069089114666,0.096678905189037,0.030651113018394],[-0.047214459627867,-0.1165563762188,0.05685817450285],[0.023019405081868,0.024500727653503,-0.11451332271099]],[[-0.035183630883694,-0.01138473674655,-0.062652625143528],[0.11558122932911,0.027398627251387,-0.0025208641309291],[-0.078446932137012,-0.039822604507208,-0.035125818103552]],[[0.045276861637831,-0.0090571967884898,0.13740433752537],[-0.011227073147893,0.018772091716528,-0.018377590924501],[0.012638292275369,0.04159939661622,-0.062407739460468]],[[-0.074315898120403,-0.049149114638567,0.0019396035932004],[-0.040234722197056,-0.01963316090405,-0.064074702560902],[0.1003330051899,-0.0067366883158684,0.11628644913435]],[[0.050672620534897,0.043325301259756,-0.00051601644372568],[0.019615639001131,-0.044801704585552,0.047521132975817],[0.015256121754646,0.016761207953095,-0.12778005003929]],[[-0.12338501960039,-0.051991548389196,-0.067227505147457],[0.0083194505423307,-0.090941615402699,-0.040400303900242],[-0.077887281775475,0.0028256638906896,0.0099099101498723]],[[0.095208220183849,0.030638316646218,0.030552860349417],[-0.008832149207592,0.084488213062286,0.074029803276062],[0.014884389936924,0.042940597981215,0.064402990043163]],[[0.063323028385639,-0.025826796889305,-0.06814844161272],[-0.041710127145052,0.078207835555077,0.094080679118633],[0.07748406380415,0.01459248457104,0.062740638852119]],[[0.10542575269938,-0.055166207253933,-0.04804652929306],[0.059193875640631,0.054629646241665,0.089678786695004],[-0.0083467373624444,0.048288654536009,-0.025689471513033]],[[0.028579382225871,-0.077768251299858,-0.020116062834859],[-0.0061810109764338,-2.6297528165742e-05,0.035781513899565],[-0.014108764007688,0.069866865873337,0.10561784356833]],[[-0.014236385002732,-0.033355247229338,-0.12400561571121],[-0.023769760504365,-0.088444069027901,-0.022314878180623],[0.072102636098862,0.0010716022225097,-0.0070584518834949]],[[-0.059212446212769,-0.091480821371078,0.046279303729534],[-0.10390716791153,-0.016738912090659,-0.030861143022776],[0.093934036791325,0.0088550699874759,-0.025416124612093]],[[-0.0292081348598,-0.13082908093929,-0.0051620076410472],[0.061112608760595,0.039600186049938,0.078628666698933],[-0.017034400254488,0.11953338980675,0.023926513269544]],[[0.07037390768528,-0.030622817575932,-0.012392838485539],[-0.0061427317559719,0.037124510854483,0.013415041379631],[-0.014177352190018,0.022365363314748,-0.028628919273615]],[[0.033335879445076,0.035474590957165,-0.026756472885609],[-0.039770860224962,-0.043606523424387,0.021236354485154],[-0.00098800333216786,0.074116393923759,-0.029439330101013]],[[-0.022813832387328,-0.037648927420378,0.0071444595232606],[0.060963336378336,0.0089228972792625,0.059544570744038],[0.071957260370255,0.03383607044816,0.052885070443153]],[[-0.0040453099645674,-0.045474670827389,0.059216167777777],[-0.010455819778144,-0.0221605617553,-0.034922655671835],[0.023303236812353,0.080322183668613,0.0044671823270619]],[[-0.0099048977717757,0.13634550571442,0.090631008148193],[0.066997274756432,-0.0071569993160665,-0.032764434814453],[0.057401888072491,0.064880460500717,0.16119965910912]],[[0.047454204410315,0.017237780615687,0.016082352027297],[-0.042372316122055,0.051427777856588,0.031294543296099],[0.058261193335056,0.023671867325902,0.013438386842608]]],[[[-0.057718172669411,-0.13566854596138,-0.022625101730227],[0.013819760642946,-0.047669589519501,-0.063216239213943],[-0.027291445061564,-0.054988138377666,-0.022813173010945]],[[-0.0066275857388973,-0.069945402443409,0.031843185424805],[0.012800849042833,-0.0061577041633427,0.0069323154166341],[0.0013606753200293,-0.024933490902185,0.021782292053103]],[[0.078098744153976,-0.0093986270949244,-0.021335247904062],[-0.0017599536804482,-0.008542787283659,0.020872490480542],[0.018671182915568,-0.038821551948786,-0.046962339431047]],[[0.03382633253932,-0.036954782903194,-0.068019293248653],[0.036134202033281,-0.031499870121479,0.032150998711586],[-0.059808943420649,-0.018101273104548,-0.055303137749434]],[[0.045038484036922,0.045731723308563,0.049785327166319],[-0.070896774530411,-0.042194757610559,0.06706990301609],[-0.0032063552644104,-0.0060636000707746,-0.02564980648458]],[[0.073222771286964,0.03888488188386,-0.0039801490493119],[-0.0028611989691854,0.040977228432894,-0.046594947576523],[-0.010687535628676,-0.028655974194407,-0.025194697082043]],[[-0.073811285197735,0.042512815445662,0.10094618797302],[-0.015258426778018,0.14344142377377,0.10960963368416],[-0.0640899091959,0.023518934845924,-0.024986166507006]],[[0.010164393112063,0.010567309334874,-0.031963169574738],[-0.029040601104498,-0.009756718762219,-0.13756760954857],[0.048827473074198,0.054141946136951,-0.078662775456905]],[[0.058179080486298,-0.10482329875231,-0.055916208773851],[-0.017307041212916,0.012098477222025,0.00089264108100906],[-0.015041640028358,-0.1331787109375,0.03234638646245]],[[-0.061171669512987,-0.10508944094181,-0.032637432217598],[0.061997424811125,-0.1827659457922,-0.07491160184145],[0.027186309918761,-0.12776035070419,0.057819582521915]],[[0.038871843367815,0.020028341561556,0.016771180555224],[-0.12571823596954,0.02706933580339,-0.026587683707476],[-0.02692966721952,-0.014939859509468,-0.093255490064621]],[[0.075936518609524,-0.019313305616379,-0.038957837969065],[0.049993693828583,-0.08585112541914,0.086337931454182],[-0.031681973487139,-0.042290557175875,-0.060222204774618]],[[-0.020906986668706,-0.0098089277744293,-0.031471505761147],[0.043706025928259,0.019832035526633,-0.089978419244289],[-0.033066395670176,-0.042355950921774,0.046375554054976]],[[-0.01620183326304,0.088473856449127,-0.051756009459496],[0.0032046800479293,0.10929492861032,-0.0073728621937335],[0.017769776284695,-0.050140712410212,-0.097319535911083]],[[0.0099476799368858,0.17543688416481,-0.17287664115429],[-0.095751896500587,-0.042064532637596,0.020965944975615],[-0.068725869059563,0.051120776683092,0.040990676730871]],[[0.072559647262096,-0.08772137761116,0.012795967981219],[-0.014035853557289,-0.0010418330784887,-0.035233452916145],[0.016375441104174,0.050818160176277,0.01325249671936]],[[-0.035003159195185,-0.020840771496296,-0.088707730174065],[0.024310370907187,-0.057562321424484,-0.030206114053726],[-0.029868418350816,0.047547664493322,-0.051446035504341]],[[0.020647510886192,0.07666601985693,0.017870390787721],[-0.056572742760181,0.041985929012299,-0.0089922705665231],[-0.0028109685517848,-0.091670177876949,0.034888934344053]],[[0.0019693186040968,-0.026185559108853,0.058891173452139],[0.015348449349403,0.042583964765072,0.038579512387514],[-0.0065558268688619,0.033669073134661,0.0055076321586967]],[[-0.06154727563262,0.048350866883993,-0.041594509035349],[-0.087503664195538,0.044876303523779,0.061247035861015],[-0.034324914216995,-0.033410754054785,0.023350037634373]],[[-0.0673793181777,-0.01454811077565,-0.11448162049055],[-0.0037672494072467,-0.073884263634682,-0.036414157599211],[-0.012255760841072,-0.025978988036513,0.020955268293619]],[[-0.028027534484863,-0.03957387432456,-0.030794754624367],[-0.20411649346352,-0.051132187247276,-0.087849453091621],[-0.11161584407091,-0.08060359954834,-0.02810918726027]],[[0.1395325511694,-0.051798462867737,-0.07901469618082],[-0.054109092801809,-0.059539150446653,0.0019712219946086],[-0.021703688427806,-0.027505215257406,-0.069120764732361]],[[-0.06755918264389,-0.074906505644321,0.0022010731045157],[-0.0042437170632184,-0.068984441459179,0.055156897753477],[0.029918497428298,0.01784317009151,-0.092940583825111]],[[-0.10263434797525,0.053631749004126,0.021267959848046],[-0.080714665353298,-0.1321827173233,-0.063786409795284],[-0.042915113270283,-0.014120501466095,0.12794421613216]],[[0.027899477630854,0.024433333426714,-0.091885752975941],[-0.051413301378489,-0.019730078056455,-0.0760198533535],[0.062669828534126,-0.04637810215354,-0.041107133030891]],[[0.036509610712528,-0.11172916740179,-0.078390531241894],[-0.093765310943127,-0.056996501982212,0.070403553545475],[-0.088002368807793,0.056735914200544,0.053454607725143]],[[0.039396226406097,-0.1090224981308,0.027006482705474],[0.032605729997158,-0.060627225786448,-0.046914719045162],[0.042366102337837,-0.010376668535173,0.029492640867829]],[[-0.014624427072704,-0.062250822782516,-0.055634465068579],[0.0056518251076341,0.074559569358826,-0.08209103345871],[0.020070957019925,-0.021040642634034,-0.058754548430443]],[[-0.055047784000635,0.084565870463848,0.02678587846458],[-0.023209417238832,-0.0022901627235115,-0.073517106473446],[0.028905099257827,0.010685441084206,-0.068099364638329]],[[-0.027398630976677,-0.035709720104933,-0.016905698925257],[-0.06340167671442,-0.080819889903069,-0.015022903680801],[0.021217487752438,0.027968438342214,0.010920010507107]],[[-0.034702561795712,-0.0040386081673205,-0.086101584136486],[-0.012643282301724,-0.015803743153811,-0.01098519936204],[-0.070878483355045,-0.029952619224787,-0.03384705632925]],[[0.0052068009972572,-0.02698215469718,0.002938921796158],[0.031049536541104,-0.049033012241125,-0.057324901223183],[-0.019007679075003,-0.0037604095414281,-0.026460887864232]],[[-0.024448929354548,0.085719719529152,0.029121110215783],[0.01532235275954,0.01478158030659,-0.027476793155074],[0.035902615636587,0.090167015790939,-0.02818650752306]],[[-0.049184527248144,-0.068695232272148,0.046584524214268],[-0.00911636184901,-0.11027161031961,-0.035012695938349],[3.4246677387273e-06,-0.012653109617531,-0.044474199414253]],[[0.040567442774773,-0.041101559996605,-0.0056926985271275],[-0.066766157746315,0.039596237242222,-0.0060930158942938],[-0.044795524328947,0.063775658607483,0.05212851241231]],[[0.027622090652585,0.024147614836693,0.01911199092865],[0.064718328416348,-0.09250894933939,0.012446968816221],[0.03664768487215,-0.029363149777055,-0.0788484364748]],[[-0.057624600827694,-0.0033645716030151,0.0069627924822271],[0.073313735425472,-0.01360419485718,-0.062576249241829],[0.017138991504908,0.015884924679995,-0.043095916509628]],[[0.017743790522218,-0.0098508410155773,0.041997145861387],[0.0033424359280616,0.029752863571048,0.040228042751551],[0.010715617798269,-0.061208892613649,0.0107511440292]],[[0.052320927381516,0.020457373932004,0.017961839213967],[0.0025264299474657,-0.053024489432573,0.036546155810356],[0.031858243048191,0.0078765209764242,-0.012795098125935]],[[0.039611648768187,0.074655771255493,0.037614796310663],[-0.022073742002249,0.043549943715334,0.052892558276653],[0.023293390870094,-0.011081804521382,-0.064222775399685]],[[-0.047747790813446,-0.024368993937969,0.037343889474869],[-0.059303488582373,-0.0056899408809841,0.061266008764505],[-0.055103033781052,0.050701677799225,0.0089505268260837]],[[-0.04741932079196,0.022091239690781,-0.1327610462904],[0.016382690519094,-0.050341337919235,0.074260681867599],[-0.026259269565344,0.046830505132675,-0.044348526746035]],[[-0.011043759062886,0.015049079433084,0.034745845943689],[0.013472490943968,0.008303364738822,-0.087667688727379],[0.0016712747747079,0.0057061430998147,0.056760508567095]],[[0.041928499937057,-0.042759019881487,-0.022715779021382],[0.050335023552179,-0.020990954712033,0.012825866229832],[0.072026453912258,-0.035351414233446,0.01515304017812]],[[0.041941922158003,-0.024249732494354,-0.074849829077721],[-0.075765140354633,-0.082485273480415,-0.016160180792212],[-0.048215322196484,0.12072721123695,-0.042349427938461]],[[0.01782139390707,0.017632940784097,0.0038045551627874],[-0.06722716987133,-0.022638956084847,0.013904778286815],[0.050567902624607,-0.025599598884583,-0.11997535079718]],[[-0.039024867117405,0.057917781174183,-0.032882913947105],[0.069304540753365,0.02386979945004,-0.060240443795919],[-0.028830928727984,-0.036420427262783,0.032156955450773]],[[-0.14217060804367,-0.071936093270779,-0.016394201666117],[-0.013444796204567,-0.0030203424394131,-0.013574343174696],[-0.062632530927658,-0.0082653984427452,-0.033449653536081]],[[-0.028396174311638,0.0061392644420266,-0.050070989876986],[-0.021462131291628,-0.051703572273254,-0.075976505875587],[-0.0021309505682439,0.029355840757489,0.013477078638971]],[[-0.0027421386912465,-0.018807578831911,-0.0199832059443],[-0.017296859994531,0.011612306348979,0.041214041411877],[0.034086115658283,-0.092173703014851,0.00015507012722082]],[[-0.0069787045940757,-0.034240797162056,-0.070873096585274],[-0.069511316716671,-0.017818134278059,0.11987543851137],[-0.13168609142303,-0.059361409395933,0.013990459032357]],[[0.022868938744068,0.01276127807796,0.0035024932585657],[-0.064942896366119,-0.039214856922626,-0.042928520590067],[-0.045387655496597,-0.0061660860665143,-0.019121766090393]],[[-0.019124038517475,0.021537996828556,-0.11413614451885],[0.050639148801565,-0.091249287128448,0.0064424970187247],[0.031556952744722,0.051308784633875,-0.090999156236649]],[[-0.063973121345043,0.057823617011309,0.00052609544945881],[0.038150731474161,0.0057180877774954,-0.06624536216259],[-0.0070596341975033,0.045976366847754,0.077830247581005]],[[-0.037467177957296,-0.039436034858227,0.0047668078914285],[-0.03672257065773,-0.091118551790714,0.026839420199394],[0.012917165644467,0.054839842021465,0.014109483920038]],[[-0.061579816043377,-0.13927459716797,-0.021677983924747],[-0.017774978652596,0.01263865083456,-0.045969184488058],[0.10704977810383,0.0032387042883784,-0.032204985618591]],[[-0.075006388127804,-0.07863937318325,0.0027802139520645],[-0.1076187863946,0.022037914022803,-0.043442744761705],[0.020791592076421,0.033834557980299,-0.026980450376868]],[[0.040758967399597,0.10546299815178,0.018161626532674],[0.052606794983149,-0.033454369753599,0.031636957079172],[-0.02942243590951,0.034715209156275,-0.058857955038548]],[[0.014111223630607,0.0052494299598038,-0.069416359066963],[-0.13936872780323,0.052768837660551,-0.0050552962347865],[0.051529131829739,-0.10325007885695,-0.075522698462009]],[[-5.6798184232321e-05,0.02372220531106,-0.084017403423786],[-0.065847769379616,-0.04993275180459,0.006037499755621],[0.061651855707169,-0.029376996681094,-0.038881558924913]],[[-0.010710095986724,-0.0079398658126593,-0.0042569302022457],[0.045646514743567,0.033313982188702,0.035187166184187],[0.065824300050735,0.00019684838480316,-0.025823740288615]],[[-0.047741457819939,0.025768484920263,0.017554515972733],[0.03317953273654,0.010358341038227,0.044527132064104],[-0.0082807298749685,0.043018586933613,0.014025817625225]],[[-0.03197194263339,-0.04637124016881,0.00089334952645004],[-0.00051913835341111,-0.084727384150028,0.098909944295883],[-0.066607266664505,0.082904316484928,-0.0019978338386863]],[[0.0153968045488,0.048613794147968,0.034428328275681],[0.048458930104971,-0.086500510573387,0.029163232073188],[-0.062340147793293,0.029665239155293,0.084613390266895]],[[-0.049299959093332,0.014134420081973,-0.026412859559059],[0.027661656960845,-0.037650093436241,0.021405721083283],[-0.045948211103678,-0.014196308329701,-0.012553717009723]],[[-0.1275762617588,0.0064596547745168,-0.0207693669945],[-0.081252507865429,-0.0056036510504782,-0.034896925091743],[-0.058097060769796,-0.088370628654957,-0.0014446718851104]],[[0.029660888016224,-0.060557164251804,0.0044469246640801],[-0.018772983923554,-0.062548466026783,0.024120341986418],[-0.0067777559161186,-0.057730529457331,-0.016547279432416]],[[-0.011699350550771,0.061615694314241,-0.0055860760621727],[-0.010043682530522,0.011618117801845,0.03307818248868],[0.024284588173032,-0.067310340702534,-0.0061936662532389]],[[0.012913351878524,-0.10288499295712,-0.034751079976559],[-0.093441322445869,0.059639036655426,0.0125812292099],[-0.00025166035629809,-0.12037616223097,0.0053119175136089]],[[0.0098944352939725,0.003574863774702,0.005300214048475],[-0.041992194950581,-0.04856039956212,0.098821572959423],[-0.070058196783066,0.036233384162188,-0.0029197996482253]],[[-0.069211952388287,-0.12040109187365,0.01386877708137],[0.0041770758107305,-0.029503347352147,-0.0050436165183783],[0.050579484552145,0.068822123110294,-0.11226139217615]],[[0.026981566101313,0.064304709434509,-0.042793154716492],[0.080990090966225,-0.0031362932641059,0.0042588147334754],[0.026464335620403,0.018890868872404,-0.035489846020937]],[[-0.08970432728529,0.0022545664105564,0.062371321022511],[-0.0096477400511503,-0.035781316459179,-0.078330017626286],[0.0472611784935,-0.0065538166090846,-0.064450263977051]],[[-0.10102438926697,-0.077236622571945,-0.057492300868034],[-0.093316525220871,0.001506759901531,0.019493348896503],[-0.049174480140209,-0.017198123037815,-0.086400911211967]],[[-0.013989398255944,-0.034358154982328,0.043903578072786],[-0.039871551096439,-0.028396051377058,-0.033980883657932],[-0.042155750095844,-0.0095927584916353,0.011639904230833]],[[-0.016081696376204,-0.021672191098332,0.062257245182991],[-0.04942998662591,-0.037292890250683,0.061961438506842],[-0.050043985247612,-0.015892338007689,-0.076039277017117]],[[-0.0012535841669887,-0.049912381917238,-0.088874995708466],[0.080481246113777,-0.010280040092766,-0.12301964312792],[-0.05345568805933,-0.09187638014555,0.0066217896528542]],[[-0.16313900053501,0.05742110311985,0.053484316915274],[-0.026464527472854,-0.022673428058624,-0.00092520675389096],[-0.068268194794655,-0.030173556879163,-0.043648969382048]],[[0.027045162394643,0.036458887159824,-0.13092312216759],[-0.030588822439313,0.066736064851284,0.027779234573245],[-0.0026656168047339,0.0063032512553036,0.00010819519229699]],[[0.008458910509944,0.038572177290916,-0.043739229440689],[-0.0463653691113,-0.077347345650196,-0.065913192927837],[-0.017431044951081,-0.071100428700447,-0.0054337219335139]],[[-0.050762597471476,0.076534301042557,0.043326254934072],[-0.0814004316926,-0.056850079447031,-0.016032919287682],[-0.021576812490821,0.047010719776154,-0.046961504966021]],[[-0.021360957995057,-0.10154257714748,-0.034603603184223],[-0.037140320986509,0.049488753080368,-0.043071415275335],[-0.072562053799629,-0.05719331651926,0.04593113437295]],[[0.011873703449965,-0.011728112585843,-0.049011241644621],[0.021368144080043,-0.039115786552429,-0.0096933552995324],[0.037585135549307,-0.0194147285074,0.0071427584625781]],[[-0.0080006811767817,-0.054775517433882,0.021323690190911],[0.046049732714891,-0.009730638936162,0.033222991973162],[-0.018464602530003,0.048563979566097,0.044236373156309]],[[0.03077488951385,0.048245910555124,0.044053595513105],[-0.0050518903881311,0.036856029182673,0.11041393131018],[-0.028956651687622,-0.016747543588281,-0.030802866443992]],[[0.017487166449428,0.032426614314318,-0.018192425370216],[-0.074756272137165,0.093337006866932,0.047600951045752],[0.0035691699013114,-0.03945729136467,-0.023446267470717]],[[0.0079061314463615,-0.0068282126449049,0.063477508723736],[-0.0060426751151681,0.028520369902253,-0.040869619697332],[0.0017550009069964,-0.027506722137332,-0.13442094624043]],[[0.011099802330136,0.069686852395535,-0.10365665704012],[0.0076965363696218,0.018285602331161,0.01658033952117],[0.016314242035151,0.035524930804968,-0.012075359001756]],[[-0.036500781774521,-0.023409008979797,0.02953789010644],[0.047867406159639,0.0092373248189688,-0.029518820345402],[-0.047648422420025,-0.043077483773232,0.057241592556238]],[[-0.082944951951504,-0.078774847090244,-0.1243758648634],[-0.0039476752281189,-0.0022811247035861,0.022514345124364],[0.0014924238203093,0.057620037347078,0.012519103474915]],[[0.026063710451126,-0.02009610645473,-0.093687273561954],[0.015009911730886,-0.0094947805628181,-0.0283696167171],[0.028044603765011,-0.032519791275263,0.033342115581036]],[[0.028268033638597,0.034355513751507,-0.040484189987183],[0.05370019748807,-0.11761580407619,0.065870366990566],[-0.025177801027894,-0.06287132948637,-0.091241359710693]],[[-0.018458109349012,-0.046118620783091,-0.044177804142237],[-0.060008160769939,0.011972987093031,0.011699134483933],[-0.036981999874115,0.00047678267583251,0.033388942480087]],[[-0.10808002203703,0.098286055028439,-0.026908835396171],[0.05667856708169,-0.07745798677206,-0.10883653908968],[0.10256673395634,-0.16574370861053,0.031054550781846]],[[-0.029556652531028,-0.052585836499929,0.037353731691837],[-0.10851591080427,-0.069099344313145,-0.07365208119154],[0.06918241083622,-0.0099564762786031,0.050590075552464]],[[-0.014858635142446,-0.0024021614808589,-0.045864552259445],[0.12279384583235,0.0040763043798506,-0.010203029029071],[-0.023764943704009,-0.076142244040966,-0.066177502274513]],[[-0.10346785187721,0.015175920911133,-0.027361661195755],[0.051718678325415,0.11041636019945,-0.028449239209294],[-0.06120590865612,-0.10548440366983,0.057072661817074]],[[-0.032238099724054,-0.045725513249636,0.018974222242832],[0.10295510292053,0.10407840460539,-0.029994899407029],[0.024880880489945,-0.034548573195934,-0.011841647326946]],[[-0.016171323135495,0.024676136672497,-0.052065886557102],[-0.054113879799843,-0.04402206838131,-0.043902259320021],[-0.01923718675971,0.0013658290263265,-0.0066050603054464]],[[-0.019934993237257,0.083186566829681,0.024261696264148],[-0.022038478404284,0.085402436554432,0.021256813779473],[-0.0097724050283432,0.033185109496117,-0.037698317319155]],[[-0.10676766186953,-0.078135944902897,-0.081358894705772],[-0.029798505827785,-0.2003575116396,-0.018980864435434],[-0.10926774144173,-0.033773962408304,7.438515604008e-05]],[[-0.011543633416295,-0.0053374692797661,-0.071303181350231],[0.095232702791691,-0.030850764364004,-0.0058370814658701],[-0.060909442603588,0.088174596428871,-0.021911304444075]],[[0.0071862684562802,0.0087743522599339,-0.088987685739994],[0.04934474080801,-0.035765636712313,-0.057206857949495],[0.05442837998271,0.0038656084798276,-0.060876064002514]],[[0.020295850932598,0.066729299724102,-0.045094057917595],[-0.12058812379837,-0.082832463085651,0.005107868462801],[-0.013047877699137,-0.014895534142852,-0.042443212121725]],[[-0.011018265038729,0.026833223178983,-0.071451626718044],[-0.054950311779976,0.012691549956799,0.041604869067669],[0.010675000026822,-0.078477017581463,-0.036494307219982]],[[-0.073100566864014,-0.013715767301619,-0.088402569293976],[0.041930858045816,0.025748973712325,-0.061666011810303],[0.0079981135204434,-0.012246936559677,0.04408897459507]],[[-0.0088936537504196,-0.08774197101593,0.061490502208471],[0.096862427890301,-0.03480276465416,-0.11977491527796],[-0.038138400763273,-0.11396246403456,-0.040753204375505]],[[0.057989723980427,0.044933084398508,0.038554325699806],[0.0077046044170856,0.027292191982269,-0.097599104046822],[-0.049800232052803,-0.014293470419943,-0.012810602784157]],[[0.0034628729335964,0.032096281647682,-0.028575003147125],[0.039521962404251,0.080635368824005,-0.083083942532539],[0.04035384580493,0.02911239862442,-0.041578624397516]],[[-0.033980246633291,0.032354813069105,-0.054973218590021],[0.005741024389863,-0.037426128983498,0.044430244714022],[-0.0061258408240974,-0.038532048463821,0.060794208198786]],[[-0.00034313977812417,-0.0053490158170462,-0.05467725917697],[0.017711082473397,0.029014797881246,0.00044262196752243],[-0.032488558441401,0.0042962706647813,-0.0054061687551439]],[[-0.0038181783165783,-0.025595135986805,0.016798557713628],[0.1385635882616,0.032302223145962,-0.046019800007343],[0.040205061435699,-0.00274264276959,0.017029281705618]],[[0.041210353374481,-0.078993074595928,-0.032421365380287],[0.084173902869225,0.044298227876425,-0.030789684504271],[-0.092011965811253,-0.0012117172591388,-0.020943563431501]],[[-0.060655571520329,0.05757924541831,-0.086768910288811],[0.020903956145048,-0.034095097333193,0.0047742440365255],[0.07660385966301,0.042539242655039,0.018300639465451]],[[0.033337637782097,0.032822709530592,-0.032458133995533],[0.051080171018839,0.050173494964838,0.01413531973958],[-0.055260881781578,0.026352122426033,0.026382215321064]],[[0.009429756551981,-0.064337097108364,0.036745477467775],[-0.044955395162106,-0.0026940628886223,0.060397379100323],[0.016511043533683,-0.035353377461433,-0.035172928124666]],[[0.019118605181575,-0.026013258844614,0.029165459796786],[0.0037529065739363,-0.0025839125737548,-0.037385307252407],[-0.062119197100401,-0.059137392789125,0.01747359149158]],[[0.0012163127539679,-0.13551537692547,-0.023561367765069],[0.077806569635868,0.024654928594828,0.056883163750172],[0.026520224288106,-0.018346687778831,-0.036154929548502]],[[0.080153502523899,0.12150517106056,0.083230763673782],[0.072815261781216,0.10534555464983,0.071203760802746],[0.027894288301468,0.093764252960682,0.02754208445549]],[[-0.01872480660677,-0.014540396630764,0.023864662274718],[0.040501721203327,0.033484689891338,0.027452938258648],[-0.047090899199247,-0.053973063826561,-0.0082653546705842]],[[-0.083954304456711,0.00018354985513724,-0.051793478429317],[-0.046385854482651,-0.050796225667,0.021554257720709],[-0.043419439345598,-0.041450593620539,0.016116358339787]],[[0.055394183844328,0.0072694504633546,-0.026741422712803],[0.0057056085206568,-0.058606900274754,-0.064196698367596],[-0.033633526414633,0.035505328327417,-0.078438453376293]],[[0.042399760335684,0.068415559828281,-0.020816463977098],[-0.051356870681047,0.023112570866942,-0.046775173395872],[0.020524207502604,-0.027739159762859,-0.022116091102362]],[[0.021026883274317,0.0047891256399453,0.062416754662991],[0.010428650304675,0.015731979161501,0.014490511268377],[-0.011654458008707,-0.024244165048003,-0.0056533366441727]],[[0.022552916780114,-0.079742304980755,-0.056621819734573],[0.012315928004682,-0.043486494570971,-0.028651382774115],[0.026646165177226,-0.035392507910728,-0.048759896308184]],[[-0.034280017018318,-0.0065207541920245,0.0084143569692969],[0.10542675107718,-0.051306385546923,-0.013989589177072],[-0.077400825917721,0.038803648203611,0.07134173065424]],[[0.051117748022079,0.075048431754112,0.055294223129749],[-0.0099085923284292,0.017432494089007,0.064399935305119],[0.019642177969217,0.003486217232421,-0.014701494015753]]],[[[0.096351869404316,-0.017598273232579,-0.016378007829189],[-0.025826627388597,0.005697226151824,-0.059849295765162],[-0.00017663909238763,-0.10530519485474,0.078758701682091]],[[0.00038826302625239,-0.03445840626955,0.016281172633171],[-0.013507381081581,0.02773411385715,-0.03647081181407],[0.023918252438307,0.021121928468347,0.039921637624502]],[[0.04147170856595,-0.032023120671511,-0.044655498117208],[0.0067269974388182,0.0022581850644201,-0.01849796436727],[-0.020683653652668,0.059689290821552,-0.055974684655666]],[[-0.066657684743404,0.04095259308815,-0.059524066746235],[0.053707882761955,-0.023204393684864,-0.022709814831614],[0.050982173532248,-0.01711343973875,0.03473648801446]],[[-0.0025264862924814,-0.043121885508299,-0.018392177298665],[0.029943527653813,0.049507327377796,-0.060527425259352],[0.0059605771675706,-0.011130319908261,-0.057256497442722]],[[0.0071927267126739,-0.077659331262112,0.11917020380497],[-0.077610157430172,0.07327339053154,0.053923755884171],[0.011713012121618,0.036687731742859,-2.39982327912e-05]],[[0.026008808985353,0.061649218201637,0.0050050443969667],[0.054772984236479,-0.022051652893424,-0.021342093124986],[-0.040778059512377,-0.020705133676529,-0.045832060277462]],[[0.02570229396224,-0.027542665600777,-0.026790957897902],[-0.044422872364521,0.023259878158569,-0.047313597053289],[0.037409443408251,0.030209444463253,0.018631527200341]],[[0.052938804030418,-0.039940554648638,-0.043778710067272],[-0.12156384438276,-0.021334808319807,0.0089895967394114],[0.088173434138298,0.039415512233973,0.048265628516674]],[[0.1740829795599,0.12917445600033,-0.061357375234365],[-0.049066368490458,-0.041799161583185,0.12040036171675],[0.09057380259037,0.013239150866866,0.055860944092274]],[[0.041603926569223,-0.0073044877499342,0.072608038783073],[0.069342568516731,-0.041535623371601,-0.028207112103701],[0.023247485980392,0.03665854036808,0.003886261023581]],[[0.080781064927578,0.046557825058699,-0.018988655880094],[0.0098511446267366,0.009960975497961,0.023845311254263],[0.015531177632511,0.022059667855501,0.00085988402133808]],[[-0.012272226624191,-0.044656660407782,-0.04737389087677],[0.041005879640579,0.055680010467768,0.02564650028944],[-0.013872470706701,0.065863311290741,-0.021661076694727]],[[0.096861034631729,0.034223675727844,0.002997012808919],[0.041312623769045,-0.013682967983186,-0.021862326189876],[0.021998370066285,0.076482467353344,-0.034531086683273]],[[0.021313650533557,-0.078953921794891,0.023843917995691],[0.12690114974976,0.2042852640152,-0.077635727822781],[-0.058279376477003,0.11592754721642,0.087647326290607]],[[-0.073158651590347,-0.027724292129278,-0.020298784598708],[-0.0038314871490002,-0.015379870310426,-0.058582559227943],[0.0083866128697991,-0.08857849240303,0.006738587282598]],[[0.0050115631893277,-0.04291695356369,0.02850846759975],[-0.014450306072831,-0.014377481304109,-0.031566310673952],[-0.046122726052999,-0.057525958865881,-0.062831752002239]],[[0.011738885194063,0.04567938670516,0.024636890739202],[0.012690590694547,0.018455006182194,0.049199029803276],[-0.015582873485982,0.005239637568593,0.00048986962065101]],[[-0.043998006731272,0.029478281736374,-0.036235176026821],[0.016096647828817,0.0053506437689066,0.058246586471796],[0.029562225565314,-0.029513681307435,-0.055792089551687]],[[0.055932197719812,0.004318896215409,0.013248150236905],[0.020407656207681,-0.0041832108981907,-0.041465695947409],[0.0049257543869317,-0.034024626016617,0.079327560961246]],[[0.0036288648843765,-0.034944176673889,-0.0031307230237871],[0.036036241799593,-0.045193985104561,0.031708344817162],[-0.047888170927763,-0.047554414719343,0.079346857964993]],[[0.083472169935703,0.0644850730896,0.083666779100895],[0.11945806443691,0.071070142090321,0.033095993101597],[0.049702774733305,0.037141043692827,0.10891651362181]],[[-0.011806134134531,0.030972616747022,0.036152392625809],[0.029318375512958,-0.018046567216516,-0.085915118455887],[-0.0010094705503434,-0.05763316527009,-0.011308904737234]],[[-0.014995175413787,-0.08565504103899,0.034432116895914],[0.010884811170399,-0.035503406077623,-0.031512945890427],[0.048941552639008,0.056655749678612,0.060216464102268]],[[0.081597119569778,-0.014811938628554,0.085824176669121],[0.09635403752327,3.9090809877962e-06,0.0033783076796681],[0.047185834497213,0.048021346330643,-0.018256822600961]],[[0.014201796613634,0.0306625533849,0.061305705457926],[-0.066743366420269,0.024141265079379,-0.023463126271963],[-0.042012646794319,-0.03985508158803,0.017276614904404]],[[-0.046382732689381,0.018741864711046,0.011566144414246],[0.024627903476357,-0.02094797603786,0.025692040100694],[0.058524496853352,0.029456499963999,0.13314799964428]],[[0.0041374657303095,0.084444053471088,-0.046137120574713],[0.038438584655523,-0.033856227993965,-0.021044552326202],[0.090594358742237,2.2473228455056e-05,0.007777709979564]],[[0.028547229245305,-0.049731161445379,-0.065864659845829],[0.065997503697872,-0.027517423033714,-0.013133436441422],[0.089823499321938,0.0073892027139664,0.026816006749868]],[[-0.031627599149942,-0.04577811434865,-0.040733303874731],[0.0087396344169974,0.021252386271954,0.029904212802649],[0.062996484339237,0.0064294273033738,-0.010656191967428]],[[0.03189130499959,0.0012326777214184,-0.029030477628112],[0.0043901284225285,0.0027223823126405,0.05876550078392],[0.019935896620154,0.018636303022504,0.043522119522095]],[[0.01631055958569,-0.034206632524729,0.01511003356427],[-0.058871630579233,0.01998514868319,-0.033715385943651],[0.0091877104714513,0.00054799986537546,0.05033740401268]],[[-0.019793109968305,-0.014373557642102,-0.016057094559073],[-0.027155477553606,-0.038984000682831,-0.003418373176828],[-0.0099243158474565,0.018857017159462,0.075954221189022]],[[-0.00045579150901176,0.03173104301095,0.11290327459574],[0.012837593443692,-0.0044933259487152,0.072813138365746],[0.0082552554085851,-0.038223203271627,-0.076474912464619]],[[0.0019265352748334,-0.056560676544905,0.050157520920038],[0.044163845479488,0.035957686603069,-0.014340641908348],[-0.024951992556453,0.062151748687029,0.10783960670233]],[[-0.048109881579876,-0.015757270157337,0.0033782827667892],[-0.030469572171569,-0.047820322215557,0.00010529446444707],[0.0068045402877033,-0.059387359768152,-0.022864148020744]],[[-0.050329715013504,0.0446144528687,-0.014673964120448],[-0.022168569266796,-0.0011500745313242,0.021820452064276],[-0.011694706976414,-0.007151051890105,-0.059498354792595]],[[0.04948466271162,-0.048324830830097,0.097301624715328],[-0.034394480288029,-0.043577443808317,-0.0092152571305633],[0.029637943953276,0.037838246673346,-0.019235549494624]],[[-0.015803206712008,0.022613873705268,0.017229998484254],[0.0071617863141,0.050856985151768,0.049713902175426],[0.067800156772137,0.035563811659813,-0.020436694845557]],[[0.019040806218982,0.0014387186383829,-0.036568783223629],[0.064700774848461,-0.071980215609074,0.017158089205623],[0.1188517510891,0.082539156079292,-0.015059486031532]],[[0.037979878485203,0.032892920076847,0.031779922544956],[0.050954550504684,-0.03471390530467,0.038141369819641],[-0.063942566514015,-0.0093933194875717,0.03389385342598]],[[-0.033691521733999,-0.00040996802272275,-0.022005777806044],[-0.059577878564596,-0.00099575868807733,0.0074652014300227],[-0.016623638570309,0.082687802612782,0.017706306651235]],[[0.046524737030268,0.0064358995296061,0.0016761752776802],[-0.014070683158934,0.11755949258804,0.078273020684719],[0.009079466573894,-0.024181231856346,0.01555613707751]],[[0.040112636983395,-0.0047923224046826,-0.024722108617425],[0.026216927915812,0.0087879784405231,0.019452197477221],[0.030131367966533,0.049625534564257,0.027887342497706]],[[0.03902431204915,-0.01005080062896,-0.010755883529782],[0.002601039595902,-0.013427860103548,0.032558854669333],[0.031672298908234,-0.016213037073612,0.018351938575506]],[[-0.0093140648677945,-0.027969866991043,0.055585622787476],[-0.041328646242619,-0.026629272848368,-0.023801816627383],[-0.0006833805819042,0.023043552413583,0.0077665536664426]],[[0.024339148774743,0.0076178195886314,0.011624374426901],[0.081478141248226,-0.028156721964478,0.049510169774294],[0.087339453399181,0.018303519114852,-0.023295860737562]],[[0.003954054787755,-0.0053237779065967,-0.056195084005594],[0.024797223508358,0.071381784975529,0.0002561436558608],[0.046071376651525,0.054039180278778,0.029704429209232]],[[-0.014666094444692,0.037975735962391,0.017309170216322],[-0.032565504312515,-0.062149293720722,0.025677025318146],[0.0024308015126735,0.095751032233238,-0.09307437390089]],[[-0.086889564990997,0.0024564808700234,0.010402764193714],[-0.033049929887056,-0.062727354466915,-0.00054253230337054],[-0.0033735739998519,-0.03542360290885,-0.043065689504147]],[[-0.027960127219558,-0.068604953587055,0.011188199743629],[-0.054706498980522,-0.15350230038166,0.082403227686882],[-0.031777430325747,0.028086092323065,-0.047034632414579]],[[-0.057818870991468,0.044967133551836,0.056064765900373],[-0.019884500652552,-0.015780817717314,0.026696527376771],[-0.038245499134064,-0.033381268382072,0.045967001467943]],[[0.044537056237459,-0.041514623910189,0.013609991408885],[0.056531578302383,0.11200733482838,-0.021518301218748],[-0.024437095969915,0.021672351285815,0.048181869089603]],[[0.038683850318193,-0.012540768831968,-0.11268406361341],[0.021011719480157,0.011793293990195,-0.0083464859053493],[0.10527888685465,0.0041911723092198,0.097530648112297]],[[0.023628104478121,-0.016323147341609,-0.011223874986172],[0.032366000115871,-0.026384240016341,0.0098478449508548],[0.032720629125834,0.041633348912001,0.034861788153648]],[[-0.025015607476234,0.017405357211828,-0.00016873306594789],[0.054390914738178,-0.0033800201490521,-0.074005797505379],[-0.019093248993158,0.0030188970267773,0.00028022867627442]],[[0.037521660327911,-0.069506607949734,0.0035841523203999],[0.018083518370986,-0.032055929303169,0.01671039685607],[-0.0012556577567011,0.0067263031378388,-0.01136555057019]],[[-0.075450882315636,-0.00041057914495468,0.013723460957408],[0.029748579487205,0.08086784183979,-0.043628357350826],[0.020641623064876,0.10513806343079,-0.096211977303028]],[[-0.020467672497034,-0.0038190358318388,0.010955430567265],[0.0051453057676554,-0.033226873725653,0.040607418864965],[0.12249276787043,0.050581131130457,-0.015374256297946]],[[0.04907988011837,0.052912216633558,0.081729382276535],[-0.056889783591032,0.031949397176504,0.039316717535257],[-0.0066915149800479,-0.0028262722771615,-0.033099167048931]],[[0.051849626004696,0.014787536114454,0.012732453644276],[-0.020888073369861,0.016975298523903,0.028955260291696],[-0.10238865017891,-0.016980398446321,0.026883162558079]],[[-0.0018589515239,0.035029958933592,0.019655773416162],[-0.012118675746024,0.069904379546642,-0.019334141165018],[-0.0016494691371918,0.064017876982689,0.0045980317518115]],[[0.023350350558758,-0.0030922153964639,0.029801236465573],[-0.001813878538087,-0.017505828291178,0.036668475717306],[-0.013262744061649,0.023688877001405,-0.028437366709113]],[[0.041481859982014,0.073726274073124,-0.014012604020536],[-0.095587767660618,-0.0049801371060312,0.0020731578115374],[0.0031158574856818,0.024563238024712,-0.050338204950094]],[[0.0086427349597216,-0.076021805405617,0.054353315383196],[0.035307727754116,-0.046063303947449,0.045871436595917],[0.031360123306513,-0.027196187525988,-0.032777950167656]],[[0.046478636562824,0.010941089130938,-0.0060043749399483],[0.0034387630876154,-0.014516143128276,-0.072611562907696],[0.0063956510275602,-0.03148439899087,0.002643215470016]],[[0.024836083874106,0.071727193892002,-0.013202875852585],[0.062290456146002,0.11196494847536,0.084012299776077],[-0.031387954950333,-0.088053166866302,0.076649643480778]],[[0.031608011573553,-0.030704854056239,-0.01456415001303],[0.063074640929699,0.0061453059315681,-0.034251194447279],[-0.032262925058603,0.029975924640894,-0.03752563893795]],[[0.028319058939815,-0.01818922534585,0.10801450908184],[0.0091816009953618,0.066734045743942,-0.036210712045431],[-0.020589517429471,-0.053193405270576,-0.00085886643500999]],[[0.027214663103223,0.015093765221536,0.021080182865262],[0.016021240502596,0.064822167158127,0.042823415249586],[-0.009257473051548,0.0016347707714885,0.050351180136204]],[[-0.068456277251244,-0.018566478043795,0.020871268585324],[0.0020732975099236,-0.04970121383667,0.012420707382262],[-0.0096738133579493,0.063009686768055,-0.027642348781228]],[[0.018996758386493,-0.038337647914886,0.00279506505467],[-0.015990966930985,-0.023145988583565,0.026030907407403],[-0.015293858014047,0.081036880612373,0.061617538332939]],[[0.022667737677693,0.058591596782207,0.0027151305694133],[0.11225145310163,-0.019455034285784,0.030405635014176],[0.04818082228303,-0.0042145852930844,0.045315723866224]],[[0.10212127864361,-0.013688586652279,-0.01728137023747],[-0.037750523537397,-0.0094540044665337,0.044041384011507],[0.00031947405659594,-0.037517432123423,-0.0036293037701398]],[[-0.029930112883449,0.0087160086259246,0.028909578919411],[-0.052186459302902,-0.062586456537247,-0.0082478169351816],[0.03032374382019,0.032512344419956,0.045193206518888]],[[0.060971904546022,0.011942654848099,0.059601534157991],[0.029469480738044,-0.035705164074898,-0.059731993824244],[0.028281876817346,0.035574574023485,-0.01623909547925]],[[0.00084694364340976,-0.053938008844852,-0.01970305852592],[-0.049705792218447,0.033724587410688,-0.06165174394846],[-0.04858236759901,-0.035850219428539,-0.049757808446884]],[[0.044170055538416,-0.009161832742393,0.041728168725967],[-0.015207589603961,0.037843782454729,0.017054958269],[0.0073331207968295,0.025912528857589,-0.04980792850256]],[[0.079790756106377,0.068992160260677,0.0090901870280504],[0.015521223656833,0.0081819286569953,-0.0015273933531716],[0.018260344862938,0.057412564754486,-0.039370130747557]],[[0.0040773781947792,-0.070975951850414,0.03554593026638],[-0.064526803791523,0.043092384934425,-0.022363098338246],[0.084791608154774,-0.012984682805836,0.0025271568447351]],[[-0.047326937317848,0.033598110079765,-0.033859450370073],[-0.0060275779105723,0.04706247150898,-0.035647124052048],[0.0061927386559546,0.011828632093966,-0.037289034575224]],[[0.04189096391201,-0.022628301754594,0.050719752907753],[0.039645191282034,0.0071584107354283,-0.024251572787762],[0.01702176220715,0.026489309966564,0.021765163168311]],[[-0.069593869149685,0.00095053733093664,-0.0060409852303565],[0.062647894024849,-0.048349648714066,0.029206179082394],[0.0034074911382049,-0.0094915768131614,0.043876215815544]],[[-0.077771499752998,-0.028211863711476,-0.012488751672208],[-0.010813800618052,-0.010351883247495,-0.058884508907795],[0.021822711452842,-0.022732071578503,-0.027562567964196]],[[-0.064445734024048,-0.0013221537228674,0.049019038677216],[0.022865979000926,-0.082943245768547,-0.011570631526411],[0.060482650995255,0.013269561342895,0.062284514307976]],[[-0.063842311501503,0.00093525310512632,0.072586990892887],[-0.067359946668148,-0.071284860372543,-0.015001508407295],[0.045026112347841,0.018903292715549,-0.083964005112648]],[[0.0014139079721645,-0.030193831771612,0.059710297733545],[0.029636377468705,0.024441266432405,-0.049159158021212],[-0.038634326308966,-0.0057368171401322,0.064270958304405]],[[0.030060134828091,0.033861216157675,0.022822193801403],[0.016533290967345,0.07567972689867,0.13973167538643],[0.075341701507568,0.12771011888981,-0.0044198082759976]],[[-0.0061566946096718,0.004067303147167,0.089441709220409],[0.012602041475475,-0.018154751509428,-0.038903471082449],[-0.022985763847828,-0.043030582368374,0.10667546093464]],[[0.023539550602436,0.0097221927717328,-0.025537544861436],[0.01738141477108,0.075663596391678,0.029862027615309],[0.081893093883991,0.025496352463961,0.027581717818975]],[[-0.017666529864073,0.034330509603024,0.058963343501091],[0.016792526468635,0.023235207423568,0.059341639280319],[0.027282612398267,0.04182618111372,0.039763361215591]],[[0.0069919573143125,-0.075956888496876,0.030970960855484],[-0.0076058288104832,0.020556667819619,-0.04893396794796],[0.041599988937378,-0.016109062358737,0.019408732652664]],[[-0.030386967584491,0.033778630197048,-0.010380611754954],[0.044638343155384,-0.042354010045528,-0.040699433535337],[0.012859661132097,-0.017914116382599,0.044471342116594]],[[0.029892573133111,-0.038816768676043,-0.023988001048565],[0.016191186383367,-0.030887767672539,0.092592805624008],[0.034297481179237,0.027077807113528,-0.016322148963809]],[[0.026236856356263,0.056534014642239,0.0080199725925922],[0.068150535225868,0.029651056975126,-0.013783606700599],[0.042069349437952,0.05879708006978,-0.06849792599678]],[[0.067982703447342,-0.0019564998801798,-0.0027333912439644],[0.013865823857486,0.0099089154973626,-0.058199793100357],[-0.033099737018347,0.064650654792786,0.0060008317232132]],[[-0.031896948814392,-0.046594027429819,0.058201711624861],[0.0072376546449959,0.0031538044568151,-0.087689012289047],[-0.027698906138539,0.0016685847658664,0.062446154654026]],[[0.040576606988907,0.025586826726794,-0.10157906264067],[0.018338393419981,-0.024390665814281,-0.090519331395626],[-0.0043943896889687,-0.0036036667879671,0.026489505544305]],[[0.033491719514132,0.050095837563276,0.10286317765713],[-0.024425961077213,0.015945971012115,0.028149852529168],[-0.045153956860304,0.041455395519733,-0.048073824495077]],[[0.032058585435152,0.018793269991875,0.021423667669296],[0.028959048911929,-0.1421323120594,0.04646197706461],[0.011972052045166,0.040501434355974,-0.033968381583691]],[[-0.019665408879519,-0.031098678708076,-0.0093171019107103],[0.058768004179001,-0.022022029384971,-0.036749977618456],[-0.042169656604528,0.020793840289116,-0.02279881760478]],[[0.0050535323098302,0.024608114734292,0.068420439958572],[0.075781129300594,0.076165586709976,-0.04186600446701],[0.075439170002937,0.068264789879322,-0.0067655700258911]],[[0.0079400986433029,0.034515712410212,0.019489653408527],[0.051481936126947,-0.114850461483,-0.025250473991036],[0.010446481406689,0.061550296843052,0.052402462810278]],[[-0.065808705985546,-0.082202449440956,-0.045484814792871],[-0.0094839846715331,-0.00025007931981236,-0.0018622422358021],[0.099950857460499,-0.00029135000659153,-0.055829141288996]],[[0.088192082941532,0.016633700579405,0.0022021655458957],[0.023021938279271,-0.015584057196975,0.0019345168257132],[-0.041714772582054,0.030344184488058,-0.054459877312183]],[[-0.050474997609854,0.03453903645277,-0.010074739344418],[-0.075955651700497,0.014333299361169,-0.038738049566746],[-0.050130095332861,-0.035589285194874,0.0994763225317]],[[-0.048083264380693,0.025514870882034,-0.032499842345715],[-0.016254920512438,-0.042274568229914,-0.044779919087887],[0.10004561394453,-0.011450132355094,0.0089878970757127]],[[0.084449119865894,0.016618190333247,-0.0093838414177299],[0.03042820468545,-0.050432085990906,-0.028624640777707],[-0.043015126138926,-0.042017851024866,-0.021864155307412]],[[-0.0057036569342017,0.021256394684315,-0.041943147778511],[-0.093837298452854,-0.049924451857805,-0.032115940004587],[0.037036132067442,-0.043556526303291,0.042827177792788]],[[0.033208508044481,-0.029654992744327,0.0046039423905313],[0.08693989366293,-0.036675006151199,-5.0421247578925e-05],[-0.010084011591971,0.10258793085814,-0.037132561206818]],[[0.058380886912346,0.041250068694353,-0.047033283859491],[-0.026714134961367,-0.0081903664395213,0.013839833438396],[-0.10706089437008,0.024358056485653,0.070557683706284]],[[-0.015997568145394,-0.039677806198597,-0.073519267141819],[-0.10740932822227,-0.022820357233286,-0.046357303857803],[-0.033301286399364,0.02576725371182,0.054574377834797]],[[-0.024101419374347,-0.0011661745375022,0.0038235883694142],[-0.070871442556381,-0.054010462015867,-0.035329136997461],[0.0065621305257082,-0.017762865871191,-0.10286036133766]],[[-0.092754565179348,-0.0071881981566548,0.010801976546645],[-0.0098591726273298,-0.050834622234106,0.045328237116337],[-0.020587826147676,0.054201275110245,-0.074418179690838]],[[-0.047124035656452,-0.065387435257435,-0.075569055974483],[0.049623753875494,-0.014051182195544,0.064439795911312],[-0.0028522603679448,-0.010993436910212,-0.020029487088323]],[[0.065643139183521,-0.036626912653446,-0.018159609287977],[0.050163272768259,0.060924202203751,-0.0083304913714528],[0.031311620026827,0.076844103634357,0.059848878532648]],[[0.038986369967461,0.059345815330744,0.043921902775764],[-6.6158581830678e-06,0.0035953044425696,-0.016105024144053],[0.043298535048962,0.068402647972107,0.010765174403787]],[[0.042177271097898,-0.087470777332783,-0.047198679298162],[0.056032285094261,0.066517487168312,0.021051907911897],[-0.049958758056164,0.033313475549221,0.060208756476641]],[[0.033644050359726,-0.023281404748559,0.036420349031687],[-0.056165646761656,0.028786355629563,-0.031242463737726],[0.055234655737877,0.040641017258167,0.10646748542786]],[[0.016544992104173,-0.0069500911049545,-0.06103465333581],[-0.037115443497896,-0.028145896270871,0.0037844518665224],[0.01129602920264,0.032369088381529,-0.0044991965405643]],[[-0.039011724293232,-0.0076628969982266,0.014704473316669],[0.10288270562887,-0.023946860805154,-0.040618266910315],[0.047186888754368,-0.04183916375041,-0.0072501660324633]],[[0.0054902350530028,0.022219002246857,0.014601234346628],[0.057648479938507,-0.010393270291388,0.045646600425243],[0.0645871758461,0.025193771347404,-0.00264119845815]],[[-0.0047142077237368,-0.024753184989095,-0.0049383002333343],[0.04256896674633,0.016210669651628,-0.047625448554754],[0.012124146334827,-0.01753911934793,-0.0050167627632618]],[[-0.025876305997372,-0.0067233419977129,-0.038320817053318],[-0.034367669373751,-0.033291421830654,-0.072539322078228],[-0.047636289149523,-0.045178201049566,-0.0015951583627611]],[[-0.0049563711509109,0.008846789598465,0.017498694360256],[-0.006431058049202,-0.020441740751266,0.035812668502331],[-0.081886388361454,0.02201671153307,0.10082125663757]],[[-0.020291101187468,0.012599593959749,-0.035801496356726],[0.0018764929845929,-0.0047986241988838,-0.043636385351419],[0.02344367466867,0.084226943552494,0.12534363567829]],[[-0.028307279571891,0.073761701583862,0.046872928738594],[-0.038830313831568,0.03413412719965,0.02649294398725],[0.0072788107208908,-0.031652465462685,0.032496213912964]],[[0.012184052728117,-0.024670267477632,-0.037506870925426],[-0.019420277327299,0.00068219809327275,0.057006850838661],[-0.0027630056720227,0.0083987917751074,0.055808495730162]]],[[[-0.017155412584543,-0.039049569517374,-0.079889379441738],[0.00060619221767411,-0.028322052210569,0.017103541642427],[0.023438194766641,-0.039930433034897,-0.04207294434309]],[[-0.0030155051499605,-0.0077568017877638,0.0035951340105385],[-0.024514498189092,-0.007796498015523,0.049031876027584],[-0.015722000971437,0.0058032227680087,0.020280942320824]],[[0.006480498239398,0.063512079417706,-0.044167034327984],[0.0021600476466119,0.038434904068708,-0.014748321846128],[-0.034401852637529,0.011529849842191,-0.066064022481441]],[[0.0044519286602736,-0.027747673913836,-0.0310780685395],[0.037737112492323,0.052841950207949,0.039559178054333],[0.00015715707559139,0.04092601314187,0.14229895174503]],[[-0.021330328658223,-0.033975098282099,0.024789366871119],[-0.060604475438595,-0.00071432156255469,-0.12406372278929],[0.022002618759871,0.039187885820866,0.080286681652069]],[[0.025371072813869,0.031674195080996,0.07561544328928],[0.0511728040874,-0.079844854772091,0.049693267792463],[-0.015517900697887,-0.012031725607812,-0.059402666985989]],[[0.051599938422441,-0.026510844007134,-0.054334554821253],[-0.062215529382229,-0.0092481710016727,-0.043457020074129],[-0.10580713301897,-0.14477722346783,-0.015101345255971]],[[0.015630826354027,-0.086166478693485,-0.0026288935914636],[-0.034653790295124,0.010267679579556,-0.028152862563729],[0.075097598135471,0.12220936268568,-0.022440068423748]],[[0.053357467055321,0.028143620118499,-0.036374963819981],[0.039071712642908,0.059633180499077,0.017275648191571],[0.039692390710115,-0.077216871082783,-0.064973995089531]],[[-0.00078061554813758,0.11257964372635,0.041088122874498],[0.020582901313901,0.013945853337646,0.064124405384064],[0.022963497787714,0.094722382724285,0.087333366274834]],[[-0.053743675351143,0.0077642509713769,-0.0061622844077647],[-0.075867176055908,0.020088216289878,0.023090027272701],[-0.0026703416369855,0.03763085231185,0.04510934650898]],[[0.05974855273962,0.010093428194523,0.0051982216536999],[0.013967441394925,0.012978953309357,0.0021605712827295],[0.046065963804722,0.038619536906481,0.064954459667206]],[[-0.00094821490347385,0.039649285376072,-0.026642756536603],[0.10034057497978,-0.063027866184711,-0.046426095068455],[0.055335227400064,0.002245681360364,0.037550207227468]],[[0.0098799876868725,0.052772246301174,0.03573477268219],[0.01000206079334,-0.035473853349686,-0.025735205039382],[0.030666138976812,0.10935823619366,0.050606992095709]],[[0.11667764931917,0.12214010953903,0.046485256403685],[-0.0325070284307,0.071864724159241,-0.0039365333504975],[0.0078596854582429,0.053324487060308,0.055188935250044]],[[-0.024392714723945,-0.058270532637835,-0.037159882485867],[0.028526468202472,0.019961588084698,0.018255522474647],[0.0086156306788325,-0.0226228851825,-0.052197385579348]],[[0.010932606644928,0.09218292683363,0.03168935328722],[0.01392221916467,-0.048454485833645,-0.018521474674344],[0.026900116354227,0.015103874728084,0.04661213979125]],[[-0.052457012236118,-0.025078533217311,-0.0021947172936052],[-0.073417492210865,-0.0075800763443112,-0.027714852243662],[-0.074635587632656,-0.027039263397455,0.034702438861132]],[[0.052119072526693,-0.011251585558057,0.021218687295914],[-0.029250165447593,-0.051816429942846,0.029852572828531],[0.039914965629578,0.0072904191911221,-0.002057631034404]],[[0.011037505231798,-0.028531886637211,-0.035917419940233],[0.059601847082376,-0.11548516899347,-0.002145632635802],[-0.017049072310328,0.066675715148449,-0.13886947929859]],[[0.030394770205021,0.057264719158411,0.040808562189341],[0.047053258866072,0.040478002279997,-0.013889447785914],[0.077434666454792,0.079302847385406,0.0067605911754072]],[[0.029378585517406,0.036908697336912,0.073346726596355],[0.03390758857131,-0.045205548405647,-0.0021059506107122],[0.095614962279797,0.0041641597636044,0.078326433897018]],[[0.0064762732945383,-0.031671550124884,-0.0060555599629879],[0.011145377531648,0.045524593442678,-0.052128273993731],[0.013888058252633,-0.049172528088093,0.049284033477306]],[[-0.0046928850933909,0.015768771991134,-0.083081498742104],[-0.037988763302565,-0.016599273309112,0.075814977288246],[-0.0079302052035928,-0.0036609708331525,0.015095963142812]],[[0.014143595471978,-0.0083632152527571,0.060781553387642],[0.023978468030691,-0.013464469462633,-0.046797454357147],[0.090861991047859,0.015903316438198,-0.026697820052505]],[[0.0054244785569608,0.030362939462066,-0.0041775363497436],[-0.084284350275993,0.062007326632738,-0.009265124797821],[0.0026510555762798,0.019287494942546,0.031015554443002]],[[-0.041000619530678,-0.10980116575956,-0.057392954826355],[-0.032559607177973,0.06908118724823,0.03789147734642],[0.033665738999844,0.019993133842945,-0.015372700057924]],[[-0.0082298684865236,0.015936018899083,0.040157366544008],[-0.069911725819111,-0.043835908174515,0.026911480352283],[-0.048365660011768,0.01407179236412,-0.037480253726244]],[[-0.0082124108448625,-0.059843495488167,0.06740353256464],[-0.012908791191876,0.0061633177101612,-0.017162587493658],[-0.012410147115588,-0.025470316410065,0.013611945323646]],[[0.0023985768202692,0.027312703430653,0.030813934281468],[-0.036459110677242,-0.027889186516404,-0.0072792037390172],[0.052162453532219,-0.09624756872654,0.11406920105219]],[[-0.009910480119288,0.016150111332536,0.0084853656589985],[-0.037670206278563,0.021993782371283,0.0094558214768767],[0.10697457939386,0.030216202139854,-0.038100071251392]],[[-0.061986602842808,0.026729293167591,-0.027497114613652],[-0.027315517887473,-0.0013269636547193,-0.060954701155424],[0.028779719024897,0.0055491286329925,0.011072999797761]],[[0.023508090525866,0.0578871704638,0.045543558895588],[-0.034321453422308,0.023661147803068,0.019912900403142],[0.029608817771077,0.075467310845852,-0.055115070194006]],[[0.035559106618166,0.11422775685787,-0.021304909139872],[-0.068274773657322,-0.066860891878605,0.045270871371031],[-0.020824987441301,0.08470257371664,0.1690522134304]],[[-0.01027107052505,-0.04312614351511,0.051851995289326],[0.021131005138159,-0.04534075409174,0.015639713034034],[0.027268568053842,-0.043808173388243,0.010590293444693]],[[0.097628720104694,0.018043804913759,0.030479125678539],[0.02551131695509,0.026986485347152,0.042556840926409],[-0.022620717063546,-0.036314260214567,-0.0030921385623515]],[[0.019684553146362,0.048657990992069,-0.019220013171434],[-0.0022000395692885,0.0044994689524174,-0.019401498138905],[-0.038656961172819,-0.027782090008259,-0.024383883923292]],[[-0.090134009718895,-0.017198078334332,0.0068557192571461],[0.026791242882609,-0.030636118724942,-0.10093807429075],[-0.0047467821277678,-0.072431772947311,-0.029020868241787]],[[0.035040810704231,0.010473532602191,0.041531607508659],[0.025241214782,-0.018025910481811,-0.038524821400642],[0.024966597557068,-0.14386071264744,-0.01540962792933]],[[-0.04771513864398,-0.081242360174656,0.035528499633074],[0.014264605008066,-0.057785730808973,0.022326912730932],[-0.027260672301054,0.031795240938663,0.029220292344689]],[[0.016985731199384,-0.038912571966648,-0.00061043107416481],[-0.045522268861532,-0.0095176072791219,0.05060762912035],[-0.085532426834106,-0.061503361910582,-0.023721920326352]],[[-0.052956119179726,0.018062118440866,0.022847948595881],[-0.031538128852844,-0.014784347265959,-0.027051821351051],[0.01675072312355,-0.10698083043098,0.0048985350877047]],[[-0.047204401344061,0.044429380446672,0.066610179841518],[-0.057932578027248,0.040158335119486,0.022447204217315],[0.014378249645233,0.079922869801521,0.058888476341963]],[[-0.013311224989593,0.0049221813678741,0.0056409859098494],[0.0094150304794312,0.025280011817813,0.054453115910292],[-0.0055658216588199,0.073656022548676,0.017367137596011]],[[-0.032198093831539,0.025817329064012,-0.061718296259642],[0.0044352654367685,-0.0026609376072884,-0.019747575744987],[0.0046018604189157,-0.015009758993983,-0.011310727335513]],[[0.0028658185619861,0.00090721517335624,-0.034883972257376],[0.069722250103951,0.03910181298852,-0.06406082212925],[-0.027294371277094,-0.0082367556169629,0.034041278064251]],[[0.0039895661175251,-0.047821573913097,0.02457121014595],[0.10010194033384,0.079119578003883,0.051160279661417],[-0.064587011933327,0.061838265508413,-0.034926939755678]],[[0.061063431203365,0.0087439715862274,-0.037450972944498],[0.012662730179727,0.043945711106062,0.015567527152598],[0.054580423980951,0.026624390855432,0.043261513113976]],[[-0.054485391825438,0.011471935547888,0.011357268318534],[0.042365867644548,0.083789490163326,-0.039014160633087],[0.067216880619526,-0.026455596089363,0.041090209037066]],[[0.045175511389971,0.033274214714766,-0.031638488173485],[-0.027541805058718,0.023162644356489,-0.012082007713616],[-0.071193620562553,0.059998039156199,0.019016448408365]],[[-0.025059472769499,-0.037562444806099,-0.052760325372219],[0.016766307875514,-0.028396025300026,-0.00043102382915094],[0.017301378771663,-0.0023582801222801,0.010874792933464]],[[-0.0022772795055062,-0.025078058242798,0.051529213786125],[-0.00274204229936,-0.0052140047773719,-0.0015372824855149],[0.019477736204863,0.088138811290264,0.059647966176271]],[[0.059407234191895,0.011828106828034,0.052262209355831],[-0.074625417590141,0.042124770581722,0.033995863050222],[0.0025464456994087,0.035518422722816,-0.037813309580088]],[[-0.063307002186775,-0.0078294603154063,-0.035220459103584],[-0.029414301738143,0.047198794782162,-0.032313104718924],[0.0080073494464159,0.05546386167407,0.020356580615044]],[[0.05577839910984,0.010761683806777,-0.047669548541307],[0.062961228191853,0.041223146021366,0.0087538985535502],[0.025781309232116,0.004755852278322,0.014854498207569]],[[0.02578205242753,0.023519780486822,-0.054529450833797],[0.0081781903281808,0.058097906410694,0.015679301694036],[0.10434881597757,-0.01362757012248,0.043120644986629]],[[-0.066628031432629,-0.01053624600172,0.00030928815249354],[-0.035332284867764,-0.029924815520644,0.028737377375364],[-0.032088991254568,0.070614352822304,-0.031024962663651]],[[-0.026136100292206,0.0065201590768993,0.019476532936096],[0.030279763042927,-0.035399682819843,-0.06281765550375],[0.05277293920517,0.017686389386654,-0.018187258392572]],[[0.018267503008246,-0.07584448158741,0.020718162879348],[0.046906441450119,0.095514588057995,0.040669538080692],[0.035328194499016,-0.023415226489305,0.04328902438283]],[[0.049105018377304,0.037439592182636,-0.031512662768364],[0.023084152489901,0.045733265578747,0.018367847427726],[0.020291106775403,0.021927233785391,-0.0042766914702952]],[[-0.024311870336533,0.0037369984202087,0.058798063546419],[0.030477633699775,0.071851916611195,0.030313491821289],[0.023695563897491,0.022192366421223,-0.030016029253602]],[[0.067047215998173,-0.063491612672806,-0.027484010905027],[-0.016906198114157,-0.050510369241238,0.00097792909946293],[0.049272544682026,-0.032353162765503,-0.01359863486141]],[[-0.002598223509267,0.024302149191499,0.021475752815604],[-0.020435431972146,0.026520432904363,0.056038744747639],[0.081847481429577,-0.068218067288399,-0.071197360754013]],[[0.060358762741089,-0.028879785910249,-0.057183902710676],[0.060835372656584,-0.038012187927961,-0.0046749557368457],[0.0043366812169552,0.0261250436306,0.027338724583387]],[[0.066666088998318,0.039627239108086,0.07302712649107],[-0.062306273728609,0.009237902238965,0.026288785040379],[-0.05956058204174,0.056983690708876,0.025146981701255]],[[-0.0093141850084066,-0.052438456565142,0.047044515609741],[0.051755636930466,-0.0028120230417699,-0.0034056298900396],[-0.0032015123870224,0.039664141833782,0.057340282946825]],[[-0.051171727478504,0.039834011346102,0.016609014943242],[0.020543312653899,-0.0050071580335498,0.022700889036059],[0.057809855788946,0.09941790252924,-0.024810472503304]],[[-0.0054396404884756,0.048306938260794,0.064129114151001],[-0.0023557462263852,0.032491248100996,0.014943411573768],[0.074181281030178,0.055932078510523,-0.005873444955796]],[[-0.020837524905801,0.052056364715099,0.028598334640265],[-0.0312425121665,0.020272184163332,-0.028932264074683],[-0.02665058337152,-0.015132050029933,-0.047287330031395]],[[0.047250729054213,-0.0014143921434879,-0.014047469943762],[0.044669259339571,0.0028193416073918,0.077354855835438],[-0.018294995650649,-0.026205172762275,-0.040208738297224]],[[-0.0098792472854257,-0.035150215029716,0.056769076734781],[-0.067778304219246,-0.028198283165693,-0.032982628792524],[0.032404594123363,0.068242534995079,0.063363842666149]],[[0.00063317239983007,-0.043647225946188,-0.033532805740833],[0.037945386022329,-0.085478529334068,-0.0032766186632216],[-0.01282615121454,0.024241283535957,0.00084860477363691]],[[0.0077371774241328,0.010127152316272,-0.0078521119430661],[0.025273732841015,-0.062202591449022,0.0089939646422863],[0.090244971215725,0.00060798006597906,0.070591270923615]],[[0.03337162733078,0.0075141210108995,0.032294031232595],[0.016037596389651,0.057440146803856,-0.077985972166061],[0.086106702685356,0.032477274537086,0.0064088739454746]],[[0.067260891199112,0.051610335707664,0.015444223769009],[-0.035117618739605,-0.026726488023996,-0.06162341311574],[-0.018167829141021,0.018423493951559,0.021741323173046]],[[0.073404721915722,-0.056254461407661,-0.027179703116417],[0.031606804579496,-0.071166470646858,-0.059742469340563],[-0.023456340655684,-0.085753366351128,-0.063056610524654]],[[0.037865817546844,0.031786058098078,-0.022255865857005],[0.022365726530552,-0.060312688350677,-0.056932739913464],[-0.03743165358901,-0.0040763197466731,-0.0021437604445964]],[[0.089288115501404,0.075851745903492,-0.059468273073435],[-0.03378351777792,0.036863211542368,0.0080219218507409],[0.036455810070038,0.011668309569359,0.041564412415028]],[[-0.015789914876223,-0.039779145270586,0.032562728971243],[0.057608418166637,-0.048618514090776,0.00023407580738422],[0.051315400749445,-0.077744707465172,0.029083214700222]],[[-0.041951049119234,-0.010197738185525,0.028826408088207],[0.058824639767408,-0.043247263878584,0.061929393559694],[0.0045962361618876,-0.0082794697955251,-0.014941101893783]],[[-0.042853001505136,0.03785477951169,0.084808342158794],[0.014882675372064,-0.011472372338176,-0.017035957425833],[0.038533356040716,0.006932906806469,-0.0050592496991158]],[[-0.036249779164791,-0.037682875990868,-0.015629367902875],[-0.048165682703257,0.052635047584772,-0.0098015600815415],[-0.054964922368526,0.023683482781053,-0.0054182042367756]],[[-0.030803721398115,-0.072906672954559,0.0734783411026],[0.049350790679455,0.050921346992254,-0.014792857691646],[-0.0073720212094486,0.043319545686245,0.030231511220336]],[[-0.046932395547628,-0.0011094646761194,-0.065490372478962],[-0.017315464094281,-0.010334118269384,0.02913885936141],[0.043031249195337,0.0058525619097054,-0.022833775728941]],[[-0.023460410535336,0.021214496344328,0.064580358564854],[-0.036035247147083,0.035345066338778,0.010994656011462],[0.084980458021164,0.039353549480438,0.043643247336149]],[[0.019063472747803,0.09225244820118,0.063284918665886],[0.034032482653856,0.0039660609327257,0.0054568974301219],[-0.045060768723488,0.035922463983297,0.018399169668555]],[[0.043314497917891,0.056756746023893,0.046581111848354],[-0.033460956066847,-0.065628387033939,-0.024323843419552],[0.048392970114946,0.054223962128162,-0.045161794871092]],[[-0.03037946857512,-0.029542045667768,0.01164048910141],[0.070708222687244,0.10128484666348,0.012826031073928],[-0.037188038229942,0.036449149250984,-0.035785395652056]],[[-0.0083440775051713,0.020648656412959,0.023155910894275],[-0.023597221821547,-0.0048336782492697,0.00096084672259167],[-0.056363511830568,-0.064832657575607,0.017181217670441]],[[-0.0016207444714382,0.011018012650311,0.0081392135471106],[-0.044420465826988,0.020961342379451,0.059621877968311],[0.024847088381648,0.041088089346886,0.048272404819727]],[[0.045911632478237,-0.024498580023646,-0.0066458703950047],[0.028563747182488,-0.0051575568504632,0.031702324748039],[-0.053500320762396,0.041304882615805,0.026365622878075]],[[-0.033351480960846,-0.064366459846497,0.033020675182343],[0.054692465811968,0.072526127099991,0.0096272267401218],[-0.025055885314941,-0.047688614577055,0.026613898575306]],[[-0.067088834941387,-0.069227531552315,0.054420601576567],[0.039205629378557,0.007814560085535,0.036877870559692],[-0.012523697689176,0.010695855133235,-0.047070696949959]],[[-0.031825061887503,0.0047382391057909,0.050668220967054],[0.041434720158577,0.0022849056404084,0.037953913211823],[0.023073595017195,0.018732495605946,0.016832437366247]],[[-0.03079011105001,-0.028944261372089,0.0020754465367645],[0.019337905570865,0.044371474534273,0.02094748057425],[0.011809010989964,-0.035281527787447,0.034302569925785]],[[-0.048652775585651,0.00086233176989481,0.044326692819595],[-0.033137068152428,0.038880720734596,0.02406351454556],[-0.041697233915329,0.0024368886370212,-0.046933718025684]],[[-0.026281157508492,0.086210571229458,-0.0181042868644],[0.0073611899279058,0.017129134386778,0.0089046927168965],[0.021891998127103,0.098938226699829,0.038668550550938]],[[0.068222030997276,-0.029996573925018,0.095229022204876],[0.050495158880949,0.017797857522964,0.050535943359137],[0.046724405139685,0.13861982524395,0.11273099482059]],[[0.0053794225677848,-0.019347673282027,0.034987721592188],[-0.034287661314011,-0.0022804774343967,0.016569741070271],[0.032229240983725,0.012403866276145,-0.013012177310884]],[[0.0051392475143075,-0.051913626492023,-0.044167824089527],[0.061705093830824,0.063476748764515,-0.016559513285756],[-0.027665257453918,-0.036645881831646,-0.035952351987362]],[[-0.087706595659256,0.053415693342686,-0.016902420669794],[0.0011706510558724,-0.1148069947958,-0.039428614079952],[-0.053163383156061,0.046611815690994,0.086324892938137]],[[0.077535793185234,0.033109050244093,-0.02386218868196],[0.10184700042009,-0.014235155656934,0.10227160900831],[0.047347940504551,0.012474376708269,0.094886012375355]],[[-0.034299843013287,0.017038337886333,-0.03033128939569],[-0.010840667411685,0.054471474140882,-0.032305382192135],[-0.0029624789021909,-0.013475554063916,-0.011434941552579]],[[-0.040802218019962,-0.022777382284403,-0.007812867872417],[0.0022469223476946,0.0083527946844697,0.017348494380713],[-0.022892221808434,0.020895157009363,-0.012196013703942]],[[-0.11388414353132,0.010873236693442,0.068353042006493],[0.087792553007603,0.0086946645751595,0.098175279796124],[0.02215120010078,-0.028381161391735,0.049398124217987]],[[-0.0082034235820174,0.081999324262142,0.076149351894855],[-0.062803357839584,-0.0012284524273127,-0.0053421417251229],[0.069241754710674,0.040844578295946,-0.016364730894566]],[[0.025019895285368,0.065557539463043,-0.040137596428394],[0.063808985054493,0.043413959443569,-0.010766239836812],[-0.020791189745069,-0.046177115291357,0.063995614647865]],[[-0.052403796464205,-0.017097802832723,-0.011229719035327],[0.0031804288737476,-0.014816503971815,0.07274653762579],[0.0036627950612456,0.030899848788977,-0.031408336013556]],[[-0.061439387500286,0.058472078293562,0.004315975587815],[0.021646909415722,-0.045114170759916,-0.087924018502235],[-0.0037528811953962,-0.0028146291151643,0.0487145408988]],[[-0.01114347577095,0.0355652756989,0.015205027535558],[0.069283314049244,0.016525603830814,0.007718603592366],[0.010611272417009,-0.1017349883914,-0.049715138971806]],[[-0.052095506340265,-0.01804731413722,-0.019840683788061],[-0.042522232979536,-0.017604721710086,0.03996305167675],[0.032650776207447,0.023348705843091,-0.0496456772089]],[[-0.036217510700226,0.00065146735869348,0.037539836019278],[-0.028661793097854,-0.0040786880999804,0.10355949401855],[0.057331446558237,0.049696229398251,-0.025911618024111]],[[0.019825119525194,0.044307392090559,0.0045872731134295],[0.033221997320652,0.11551845818758,-0.01984366774559],[0.13656580448151,-0.030140658840537,-0.0037468003574759]],[[0.011149799451232,0.01695672608912,-0.01168708037585],[0.016498988494277,0.0097045199945569,0.010116660967469],[0.018184971064329,-0.035264600068331,-0.025405729189515]],[[-0.063268475234509,0.041009806096554,0.038897305727005],[-0.013692734763026,0.016855841502547,-0.074921794235706],[-0.0054181371815503,0.003527105320245,0.009733010083437]],[[0.030660951510072,-0.015474930405617,0.082077763974667],[-0.032176416367292,0.094230063259602,-0.030762724578381],[0.044823464006186,0.058221809566021,-0.019552571699023]],[[-0.045995302498341,-0.025982907041907,-0.015371673740447],[0.026230307295918,0.026057492941618,0.013065681792796],[0.0084191532805562,-0.055633898824453,0.0063875778578222]],[[-0.0059846993535757,0.0034467191435397,0.021904513239861],[0.072607681155205,0.041324935853481,-0.03318152949214],[-0.0047537344507873,-0.0033039664849639,0.0089323772117496]],[[0.0474135838449,-0.00937495008111,0.051889892667532],[-0.054634016007185,0.068706847727299,0.0016265913145617],[0.033131916075945,-0.016353990882635,-0.043309096246958]],[[-0.00093259010463953,-0.034408826380968,-0.044054411351681],[-0.036594793200493,-0.026648972183466,-0.052090480923653],[-0.054595444351435,-0.030726429075003,-0.0032354474533349]],[[-0.032021682709455,-0.0013205150607973,-0.068302065134048],[-0.040721647441387,-0.025110013782978,-0.040664989501238],[-0.026627246290445,0.015869932249188,0.033446252346039]],[[-0.019406074658036,-0.02123667486012,0.0045951441861689],[0.040163323283195,0.0069231386296451,-0.014233805239201],[0.041848253458738,0.016687581315637,0.061693456023932]],[[-0.070461392402649,-0.010229821316898,0.11395313590765],[0.03506475687027,-0.023379445075989,-0.0054579642601311],[0.034750442951918,0.0065112980082631,0.047361209988594]],[[-0.037180162966251,0.034810859709978,0.0032443152740598],[0.021472778171301,-0.025605389848351,-0.079599410295486],[-0.0073223561048508,-0.060016114264727,-0.024965658783913]],[[-0.028667576611042,-0.11324288696051,0.070169374346733],[0.028311528265476,0.014641829766333,0.060963861644268],[0.027225065976381,0.065678328275681,0.053931873291731]],[[0.055302709341049,0.027435133233666,0.033513285219669],[-0.0093479445204139,0.04830464348197,0.0188551209867],[0.036589022725821,0.029724890366197,0.0081478077918291]],[[-0.13875687122345,-0.048542015254498,0.031513258814812],[0.0034204570110887,0.035220444202423,-0.008582416921854],[0.0683189406991,0.07464475184679,-0.092021718621254]],[[0.001862384728156,-0.0083133317530155,0.025449730455875],[-0.0020047773141414,0.060985740274191,-0.0091158794239163],[0.025816470384598,-0.018616199493408,0.032792303711176]]],[[[0.0876090452075,0.020112633705139,0.075948692858219],[0.055861297994852,0.091439127922058,0.013518366031349],[-0.0127930091694,-0.035983573645353,-0.0046369414776564]],[[0.0098356641829014,-0.024177839979529,0.037695437669754],[0.09667780995369,-0.010177304968238,0.015216995030642],[0.064557269215584,0.04143800213933,0.027505334466696]],[[0.022476982325315,-0.072615712881088,0.042694635689259],[0.036555491387844,0.014396337792277,-0.035026300698519],[-0.0051938039250672,-0.038036301732063,-0.011760673485696]],[[0.098802573978901,0.0028359589632601,0.012411337345839],[-0.019920248538256,-0.029604658484459,-0.10100851207972],[-0.0092075979337096,-0.022284191101789,-0.041575945913792]],[[-0.0042833024635911,0.051554184406996,0.00055869086645544],[-0.036490730941296,0.064541876316071,-0.06683386862278],[-0.073195606470108,-0.032367780804634,0.085837781429291]],[[0.0049888151697814,0.077941671013832,-0.022607708349824],[-0.012870670296252,-0.0039666472002864,0.010378703474998],[-0.0087603516876698,0.053510088473558,0.0065909610129893]],[[0.066910579800606,-0.0098069803789258,0.057268988341093],[0.019643208011985,0.014297648333013,-0.059019096195698],[0.0029134233482182,0.019141741096973,0.043813191354275]],[[-0.050347171723843,0.1099873483181,0.0074709295295179],[0.0073680998757482,-0.019897658377886,0.028029667213559],[0.00078194966772571,0.018869072198868,0.0081951273605227]],[[0.017764946445823,0.019727621227503,0.021563677117229],[-0.021692888811231,-0.0077839624136686,-0.027655143290758],[0.035785581916571,0.051012583076954,0.00074876827420667]],[[-0.076635085046291,0.07855086773634,0.099688865244389],[0.061977911740541,0.076168462634087,0.079413808882236],[0.020927950739861,0.052140288054943,-0.00019813161634374]],[[0.035258334130049,0.011027685366571,0.063413999974728],[0.0010697669349611,0.058438505977392,-0.080842822790146],[0.03056700900197,-0.034017816185951,0.018402291461825]],[[0.018377980217338,0.017306070774794,0.0045580840669572],[0.03551322221756,0.0043220487423241,-0.022649668157101],[0.0094914650544524,0.04490765184164,0.0270662792027]],[[0.032117314636707,0.018305452540517,0.02851315587759],[0.018502486869693,-0.014605264179409,0.092653460800648],[-0.035077344626188,-0.048891134560108,0.01744968816638]],[[0.018691582605243,-0.058281507343054,0.0021661582868546],[-0.018054783344269,-0.074432484805584,0.017722060903907],[-0.0090100532397628,0.051993943750858,0.0045959283597767]],[[0.0010939500061795,0.083460316061974,0.0076122423633933],[0.084435604512691,0.18115204572678,0.21605412662029],[0.11240377277136,0.03789259120822,0.16031417250633]],[[0.04124990850687,-0.083770781755447,-0.018379043787718],[-0.062238708138466,-0.04305611923337,-0.081531465053558],[-0.033671069890261,-0.068960651755333,-0.043238095939159]],[[-0.042956557124853,-0.0047699315473437,0.013322622515261],[0.049662932753563,-0.0056735211983323,0.022328287363052],[-0.012514933012426,-0.036263152956963,-0.077238775789738]],[[-0.065140038728714,0.005117173306644,-0.016625050455332],[-0.05513709038496,-0.051952738314867,-0.021805511787534],[0.013918975368142,0.011961821466684,-0.08102111518383]],[[-0.038141209632158,0.0015781295951456,0.040576983243227],[0.054193560034037,0.060231231153011,-0.00778823858127],[0.055134512484074,0.021246336400509,0.031155029311776]],[[0.0011103559518233,0.052689239382744,0.093066290020943],[0.012839572504163,0.014175901189446,0.032354831695557],[0.047351248562336,0.019814141094685,0.096026338636875]],[[0.077642425894737,-0.034500680863857,0.01735976152122],[0.054320074617863,0.0163654088974,-0.069684624671936],[-0.011805096641183,0.042780712246895,1.4106826711213e-05]],[[0.022905360907316,-0.021251810714602,0.0070683783851564],[0.037128321826458,0.063044555485249,0.012071910314262],[0.13026635348797,0.095663614571095,0.03853215649724]],[[0.036128833889961,0.019581954926252,-0.076271191239357],[-0.0062894364818931,-0.051372472196817,-0.042374324053526],[0.037774961441755,0.023769035935402,0.020252902060747]],[[0.021973110735416,-0.041554115712643,-0.066546365618706],[0.040651328861713,-0.052115961909294,-0.0070504327304661],[8.7753200205043e-05,-0.012068725191057,0.015016168355942]],[[-0.0053765247575939,0.0085009085014462,-0.0044135372154415],[0.064243443310261,0.051410213112831,0.049995295703411],[0.01822772808373,-0.0049136071465909,0.011644354090095]],[[-0.10100115835667,-0.033537909388542,0.069251626729965],[0.023323515430093,0.046868253499269,-0.023365307599306],[0.0011551483767107,0.026342056691647,0.0035822775680572]],[[0.041616205126047,0.1117238253355,-0.046700168401003],[0.051785632967949,-0.0087766451761127,-0.053718067705631],[-0.13627658784389,-0.0084521742537618,-0.010772837325931]],[[0.02415519580245,-0.098055809736252,0.13760495185852],[0.020797185599804,-0.040016211569309,-0.0053986539132893],[0.044783640652895,0.046318922191858,0.047331836074591]],[[-0.024074453860521,-0.0090556675568223,-0.037553668022156],[0.036290124058723,-0.048425674438477,0.036912776529789],[0.034116182476282,0.012479616329074,0.020763577893376]],[[-0.0021655031014234,0.017262695357203,0.096934266388416],[0.030881015583873,0.06043654307723,0.03660199791193],[0.084554500877857,-0.0038715465925634,-0.062942273914814]],[[0.05645639821887,0.006022522225976,0.02764187194407],[0.090447463095188,0.0032892627641559,0.028970958665013],[-0.11137975007296,0.029664957895875,0.044685382395983]],[[0.0061135990545154,0.011272503063083,0.045072484761477],[0.037645999342203,-0.041667435318232,0.074598863720894],[0.087435945868492,0.041462678462267,0.0012276213383302]],[[0.08756348490715,-0.091405808925629,-0.040370348840952],[0.013282187283039,-0.083898536860943,-0.014298069290817],[-0.087533727288246,0.042012169957161,0.04143600165844]],[[0.0038626801688224,0.11903815716505,0.060448464006186],[0.05437857657671,-0.029096309095621,0.064289018511772],[-0.061393138021231,-0.0046489150263369,-0.055161774158478]],[[0.050421442836523,0.015614420175552,-0.089369624853134],[0.0050125219859183,-0.020502215251327,0.044575158506632],[0.010591195896268,-0.0042023221030831,-0.069273352622986]],[[-0.046171743422747,-0.030217871069908,-0.037393722683191],[-0.090876400470734,-0.032317701727152,-0.0084303002804518],[-0.044280521571636,0.020242797210813,0.014649019576609]],[[-0.014724167995155,-0.027475336566567,-0.02347251214087],[-0.0095219230279326,-0.014838705770671,-0.033120274543762],[0.016404779627919,-0.071547031402588,-0.021258449181914]],[[0.015978578478098,0.040862653404474,0.066005066037178],[-0.0053737605921924,-0.058223143219948,-0.021545747295022],[-0.034300398081541,-0.079688221216202,0.038263324648142]],[[-0.018698619678617,0.055872622877359,0.036016065627337],[0.08232019841671,0.072901710867882,-0.034716833382845],[-0.0027988124638796,0.091603294014931,-0.1214739382267]],[[-0.0012617260217667,-0.040765408426523,0.0070362184196711],[0.012862289324403,0.022479938343167,0.049003913998604],[0.022006390616298,0.0054203583858907,0.063753515481949]],[[0.073127590119839,-0.048136968165636,0.034455381333828],[0.017989186570048,0.010547953657806,-0.021650180220604],[-0.040055125951767,0.029814740642905,0.031934674829245]],[[-0.0091663366183639,0.058938644826412,0.026537263765931],[0.018093749880791,0.017342876642942,0.057712476700544],[0.037807162851095,0.038920808583498,0.022246733307838]],[[0.070139355957508,-0.0028459494933486,-0.018519550561905],[0.089938335120678,0.05253866314888,0.01185070630163],[0.048517398536205,-0.015419715084136,-0.049932170659304]],[[0.012091838754714,0.084962248802185,0.045829899609089],[-0.042644213885069,0.012218466028571,0.023069614544511],[-0.0052842870354652,0.0068939118646085,0.078497633337975]],[[-0.0047461837530136,0.052608866244555,-0.032716792076826],[-0.051007900387049,-0.0072175776585937,0.062489598989487],[0.017424112185836,0.044530998915434,0.035319723188877]],[[0.018497828394175,0.060281902551651,0.064686477184296],[0.010776189155877,0.019294625148177,-0.033516105264425],[-0.017859145998955,0.087906576693058,0.046873334795237]],[[0.012844535522163,0.065014645457268,0.059577342122793],[0.062357969582081,-0.00064666051184759,-0.072054654359818],[0.034817323088646,-0.037990920245647,0.088239200413227]],[[-0.031449306756258,0.023794956505299,-0.058566249907017],[0.026997638866305,-0.014755632728338,-0.0091170938685536],[0.049007914960384,0.054101042449474,-0.040052242577076]],[[0.055437050759792,-0.0066088698804379,-0.023933008313179],[-0.036231204867363,-0.033916484564543,0.036248043179512],[0.061961725354195,0.018009917810559,0.017632525414228]],[[-0.11088558286428,-0.0028580680955201,-0.060987617820501],[-0.003205134999007,-0.058235362172127,0.020044168457389],[0.033049806952477,0.10432284325361,-0.026447994634509]],[[-0.0049423445016146,-0.060605198144913,-0.071169592440128],[0.044515296816826,-0.079398296773434,-0.067835234105587],[0.018776571378112,-0.09262627363205,0.040391765534878]],[[0.024582816287875,0.016123481094837,0.07701675593853],[0.017613897100091,-0.014408495277166,0.0041581983678043],[0.062144048511982,0.025744684040546,0.024273686110973]],[[-0.060602616518736,0.02375927567482,0.0024699626956135],[0.03067853488028,0.053087569773197,0.013046141713858],[-0.07928416877985,-0.00408317707479,-0.048623915761709]],[[0.045069351792336,0.0048043616116047,0.081239633262157],[-0.047308899462223,-0.032915413379669,-0.00084643583977595],[-0.027842471376061,-0.001877625589259,0.013392665423453]],[[0.074352487921715,0.04279613122344,-0.018622998148203],[0.0096130659803748,0.048800993710756,0.041134357452393],[-0.0088898409157991,-0.055940505117178,-0.015592624433339]],[[-0.10490042716265,-0.0098825637251139,0.024186935275793],[0.12679736316204,-0.038347661495209,0.030837327241898],[0.049454782158136,0.061032209545374,0.058170057833195]],[[-0.047231983393431,0.017247557640076,-0.053821675479412],[-0.10055057704449,-0.026208719238639,-0.038997370749712],[-0.020078619942069,-0.030224796384573,0.017482196912169]],[[0.041358560323715,-0.042916372418404,-0.031060820445418],[-0.023006938397884,-0.059466723352671,-0.032450638711452],[0.041892196983099,-0.06541683524847,-0.0057473117485642]],[[0.064221598207951,0.049577224999666,0.076723337173462],[-0.044013008475304,0.087853372097015,0.027327880263329],[0.089558012783527,-0.02254481613636,0.044260244816542]],[[0.015747016295791,-0.030086612328887,0.01811926625669],[-0.0044783502817154,0.034336503595114,-0.045578710734844],[-0.024158731102943,0.12351837009192,0.0042074173688889]],[[0.012473502196372,0.057467166334391,0.065638422966003],[-0.11121585965157,0.010233985260129,-0.017185766249895],[-0.033048424869776,-0.0037763195578009,0.017904087901115]],[[-0.016126481816173,0.0053224684670568,0.040123544633389],[0.06150183826685,0.0062049487605691,-0.033032488077879],[-0.067011594772339,0.02695775963366,0.0016908129910007]],[[-0.010640957392752,-0.022895915433764,-0.011162209324539],[-0.020303267985582,0.083559155464172,-0.012347184121609],[0.074005305767059,0.072167880833149,0.020810274407268]],[[-0.020244929939508,-0.022078022360802,0.027857311069965],[-0.041376166045666,0.029166270047426,-0.00093126931460574],[-0.02299558185041,0.001360071124509,0.0083658555522561]],[[-0.061357945203781,-0.036542382091284,-0.057397942990065],[-0.005814257543534,-0.0058958791196346,0.01941404864192],[0.076874136924744,0.063528746366501,0.071971692144871]],[[-0.0090244710445404,0.060828551650047,0.029090939089656],[0.061528854072094,-0.010472270660102,-0.0080746402963996],[-0.018322564661503,0.0071602207608521,0.0077510080300272]],[[0.11428311467171,0.10262589156628,0.059359714388847],[-0.031452983617783,0.11515727639198,0.020347686484456],[0.06246292963624,0.053895886987448,0.0083438446745276]],[[-0.016917109489441,0.09244504570961,-0.012723314575851],[0.12183323502541,0.017545873299241,-0.0047363680787385],[0.025903144851327,-0.010054907761514,-0.03380236402154]],[[0.035603117197752,-0.061800841242075,0.0032956574577838],[-0.039374828338623,0.010655977763236,0.04196959361434],[0.077362067997456,-0.033271443098783,0.021174721419811]],[[-0.035886317491531,0.043243039399385,0.040125895291567],[0.027372168377042,0.063795275986195,0.070588476955891],[-0.0058693909086287,0.021085226908326,0.053555253893137]],[[0.028676088899374,0.010624282062054,0.051964703947306],[-0.015504033304751,0.055182468146086,0.027990622445941],[-0.0041233068332076,0.0089704217389226,0.051413681358099]],[[-0.013508316129446,-0.0039965873584151,0.050538443028927],[0.014090827666223,0.0064764367416501,0.078572623431683],[-0.022245278581977,0.012400465086102,0.072377920150757]],[[0.081661827862263,-0.038010384887457,0.039584081619978],[0.013946211896837,0.10182426869869,-0.017591040581465],[-0.0060798279009759,-0.062268171459436,-0.021245645359159]],[[0.032007191330194,-0.032599497586489,-0.04400248080492],[0.064838364720345,0.049219630658627,0.04889615252614],[-0.078395493328571,-0.0062787337228656,-0.061876092106104]],[[0.027885340154171,0.011292599141598,-0.071617752313614],[0.004765719641,-0.026839660480618,-0.046147890388966],[0.03211173415184,0.031055284664035,0.014352777972817]],[[-0.065392166376114,0.023744681850076,0.022271333262324],[0.075266808271408,-0.021852687001228,-0.041929189115763],[0.011334326118231,0.012313272804022,-0.047501213848591]],[[-0.079164780676365,-0.050512615591288,-0.0039200037717819],[-0.017947306856513,-0.0066540804691613,-0.021064057946205],[-0.035873614251614,-0.027067283168435,-0.024187352508307]],[[0.046328164637089,0.026766924187541,-0.0055843843147159],[0.068647429347038,-0.05708597227931,-0.022492554038763],[0.031305659562349,0.052133459597826,0.0074332044459879]],[[0.037564158439636,0.020741239190102,0.008576575666666],[-0.022133173421025,0.061551339924335,0.042990267276764],[0.070067957043648,0.071976758539677,0.036674521863461]],[[-0.031452409923077,0.024090310558677,0.023020608350635],[-0.039216749370098,0.039869539439678,-0.035936310887337],[0.044294707477093,0.010109703056514,-0.010395222343504]],[[0.051835641264915,-8.0671772593632e-05,-0.014541470445693],[-0.0040271999314427,0.063328258693218,0.023485217243433],[0.059277944266796,0.039266031235456,0.13781447708607]],[[-0.012254684232175,0.018214140087366,0.023094518110156],[0.024410212412477,-0.037393633276224,0.0037712855264544],[-0.031314853578806,0.0064477198757231,0.00052161671919748]],[[0.015249085612595,0.068171292543411,0.033155962824821],[-0.058095909655094,-0.010244661010802,0.050804853439331],[0.063724726438522,0.037692826241255,0.021254485473037]],[[0.016158929094672,-0.018111858516932,0.0023812218569219],[-0.010909581556916,-0.0091290278360248,0.029770832508802],[0.0035381268244237,-0.042605545371771,0.022522892802954]],[[0.0060262032784522,-0.0074660168029368,-0.040212772786617],[-0.028297027572989,-0.022698134183884,0.021851578727365],[0.094498068094254,-0.042386464774609,-0.094870783388615]],[[0.030359134078026,-0.043949082493782,0.048737298697233],[-0.018157007172704,0.017535945400596,0.033502519130707],[-0.01489754486829,0.084545008838177,0.006641932297498]],[[-0.053595080971718,0.064287520945072,0.047264896333218],[0.042773444205523,0.040459804236889,0.016515724360943],[0.048577781766653,0.017813097685575,0.029680594801903]],[[0.10129138082266,0.020088206976652,0.096942685544491],[0.041335843503475,-0.040683019906282,0.076333679258823],[0.051313046365976,0.028654290363193,0.035501077771187]],[[0.029391122981906,0.015048516914248,0.022532878443599],[0.039381828159094,0.029185453429818,-0.064642459154129],[0.043530475348234,-0.063537783920765,0.028042644262314]],[[-0.0015549761010334,0.016984865069389,-8.5635067080148e-05],[0.046025782823563,0.002351988106966,0.013743579387665],[0.025309421122074,0.049674298614264,-0.018301784992218]],[[0.055549431592226,0.11698198318481,-0.049479175359011],[0.034710437059402,0.04125888645649,-0.00015102862380445],[0.085464410483837,0.017432762309909,0.077167749404907]],[[0.0018704639514908,0.020478604361415,0.025017511099577],[-0.022776806727052,-0.0084795765578747,0.011577521450818],[-0.04028894007206,0.031511437147856,-0.019535494968295]],[[0.015116331167519,-0.041616071015596,0.067062437534332],[-0.057640705257654,0.039726596325636,-0.017735555768013],[-0.10329569131136,-0.0031137021724135,-0.037621676921844]],[[-0.061567585915327,0.012570235878229,0.014288183301687],[-0.017763242125511,0.045249160379171,0.056118655949831],[0.026792032644153,-0.025784052908421,0.035206075757742]],[[-0.074542716145515,0.014965781010687,0.0057440842501819],[-0.050359677523375,-0.1084643304348,0.039678767323494],[0.075944758951664,-0.020345291122794,0.059716090559959]],[[-0.025095300748944,0.023344207555056,0.066150493919849],[0.095970444381237,0.094831474125385,0.043484326452017],[0.053711708635092,-0.038555916398764,-0.01779911108315]],[[-0.062261376529932,0.0055422983132303,0.01922077126801],[0.023307790979743,0.11273072659969,-0.052510544657707],[0.0035993957426399,0.051963251084089,-0.030855663120747]],[[0.019909396767616,0.080317065119743,0.05316324159503],[-0.067008294165134,0.023060601204634,0.056039500981569],[-0.011545683257282,-0.036504883319139,-0.017463998869061]],[[0.010850701481104,0.032084058970213,-0.029468076303601],[0.018163507804275,0.054786883294582,0.093132749199867],[-0.058203980326653,-0.091276533901691,-0.0031186928972602]],[[-0.030451277270913,-0.0095088137313724,0.026995470747352],[-0.014894763939083,0.014487533830106,0.071742199361324],[-0.042372670024633,0.020038764923811,-0.045607171952724]],[[0.048862345516682,-0.017449364066124,0.014223674312234],[0.12807562947273,-0.035704649984837,-0.033560078591108],[0.032060161232948,-0.0099770557135344,-0.043067917227745]],[[-0.014333868399262,0.034401956945658,0.030622486025095],[0.016809392720461,0.014552413485944,0.10282973945141],[0.10013041645288,-0.06776512414217,-0.040348768234253]],[[-0.0044622053392231,0.0057902187108994,0.0055014532990754],[0.061006065458059,0.10353278368711,0.0184919051826],[-0.035461336374283,0.0032396430615336,0.061797857284546]],[[-0.11795743554831,-0.069410189986229,-0.048223406076431],[0.014427181333303,-0.039658434689045,0.013473059982061],[-0.047753632068634,-0.046511370688677,-0.041270829737186]],[[-0.038351856172085,0.071652986109257,-0.0080760326236486],[0.024855287745595,-0.033857300877571,0.011275121942163],[0.012305754236877,0.041249539703131,-0.0017520680557936]],[[0.063956178724766,0.07693162560463,0.065735161304474],[0.10500451177359,0.028211589902639,-0.013537488877773],[0.075129330158234,0.08498503267765,0.013033942319453]],[[0.012577175162733,-0.0081247668713331,0.012260195799172],[-0.016824783757329,0.083317786455154,-0.023192755877972],[0.12044890224934,0.050260134041309,0.030773978680372]],[[0.0012651204597205,-0.0055945138446987,0.00091413944028318],[0.016459975391626,0.034388273954391,0.0021832513157278],[-0.053315345197916,0.03392031416297,-0.079004526138306]],[[0.031727515161037,0.044645067304373,0.1010762527585],[-0.023392612114549,0.0076761967502534,-0.059379853308201],[0.056319769471884,-0.059772957116365,0.0901138484478]],[[-0.029658449813724,-0.1293850839138,-0.0011600849684328],[0.010734166949987,-0.012258200906217,0.02557778917253],[0.076654382050037,0.11044086515903,0.061370011419058]],[[-0.03878416121006,0.046794261783361,0.0093679819256067],[0.041893996298313,0.047537013888359,0.0075231189839542],[-0.028935387730598,-0.012830254621804,-0.092823646962643]],[[-0.0057632019743323,0.011869926936924,-0.063629403710365],[-0.042165044695139,0.000934116425924,0.03248555213213],[-0.060037799179554,0.020680921152234,0.053396470844746]],[[-0.020652951672673,0.055381812155247,0.0053045037202537],[0.0061657642945647,-0.039194669574499,0.057325169444084],[-0.059939421713352,-0.075172066688538,0.048384081572294]],[[0.010981788858771,-0.088865958154202,-0.0070782778784633],[-0.065182015299797,0.055545102804899,-0.084226161241531],[-0.04426771774888,-0.044941708445549,0.063947521150112]],[[-0.023366633802652,0.066145949065685,-0.04380775988102],[-0.062189899384975,0.024459253996611,-0.027146266773343],[0.041345104575157,0.086398929357529,0.012269960716367]],[[-0.012608747929335,0.028035901486874,-0.026636764407158],[0.041105762124062,-0.05174720287323,-0.033737380057573],[0.028001261875033,0.067690350115299,0.038070626556873]],[[0.048503112047911,0.029603123664856,0.010588869452477],[0.041853461414576,-0.002013960853219,0.012116137892008],[0.07788098603487,0.084546968340874,0.058336395770311]],[[-0.034223858267069,0.046691291034222,0.014483473263681],[0.025243900716305,-0.084562785923481,-0.052333541214466],[-0.0061711170710623,0.038772534579039,0.031622063368559]],[[-0.047451138496399,0.051594030112028,-0.096425570547581],[0.045092072337866,0.047437999397516,-0.030453709885478],[0.0014174119569361,0.062716320157051,0.02463473379612]],[[-0.039150279015303,0.038451474159956,0.0096953548491001],[0.025534115731716,-0.034964755177498,-0.038451552391052],[-0.026126703247428,0.0049420357681811,-0.04258194938302]],[[-0.064423233270645,0.02648126333952,-0.02991403453052],[0.056993950158358,0.12768903374672,-0.036069553345442],[0.016277985647321,-0.019280815497041,0.049968633800745]],[[0.091446362435818,0.034600611776114,0.079953528940678],[0.030598983168602,0.039623886346817,0.037261549383402],[0.033124540001154,-0.04151152074337,-0.10332948714495]],[[0.014079939574003,-0.048648405820131,-0.083842299878597],[0.0093907844275236,0.088506586849689,-0.032857894897461],[-0.032093469053507,-0.035236898809671,0.017726395279169]],[[-0.02644021064043,-0.036340057849884,-0.044855244457722],[0.058850977569818,0.059694156050682,-0.055635176599026],[-0.0034017404541373,0.063502952456474,0.050162222236395]],[[0.008057146333158,0.023582501336932,-0.066236570477486],[0.0082195429131389,-0.0067678717896342,0.058048274368048],[0.037110939621925,0.064432606101036,-0.031159089878201]],[[0.098524942994118,0.091874830424786,0.01811102591455],[0.0020479841623455,0.0076338863000274,0.017113152891397],[0.021289624273777,0.020133616402745,-0.017144957557321]],[[0.081708654761314,-0.036538783460855,0.040679819881916],[0.078786663711071,0.058577556163073,0.036218997091055],[0.060128062963486,0.0064929304644465,0.022273432463408]],[[0.052322972565889,-0.082310691475868,0.071950294077396],[0.054187200963497,0.059132065623999,-0.024107104167342],[-0.051340457051992,0.045860070735216,0.0099987555295229]]],[[[0.03783243149519,0.040745168924332,-0.04308258742094],[0.087657786905766,0.033786859363317,0.056429084390402],[-0.026791559532285,0.023029608651996,0.035815469920635]],[[0.028626726940274,0.02924220636487,-0.044761963188648],[0.061807349324226,-0.0058860522694886,0.022782936692238],[0.023214070126414,0.041097451001406,0.031939163804054]],[[0.02406794950366,0.015285092405975,0.0053350003436208],[0.0012057361891493,0.072540752589703,0.021128633990884],[0.0079738656058908,0.038435947149992,-0.058574359863997]],[[-0.015771433711052,0.046051949262619,0.082791827619076],[0.033058367669582,-0.061933238059282,-0.022213825955987],[0.020948905497789,0.0096554243937135,0.014531508088112]],[[0.061079110950232,-0.030755624175072,-0.089243918657303],[0.061584308743477,-0.10373771935701,-0.051531076431274],[-0.061582449823618,0.010339161381125,0.024018427357078]],[[0.013285748660564,0.050848621875048,0.058162428438663],[0.06141796335578,-0.12326067686081,0.029076475650072],[0.10289412736893,-0.058831933885813,0.00015599917969666]],[[-0.017710581421852,0.054080177098513,0.0094199487939477],[-0.016349244862795,0.027579866349697,-0.044781766831875],[-0.059834327548742,0.017506310716271,-0.025927320122719]],[[0.073677644133568,-0.025772172957659,-0.058233551681042],[-0.038043804466724,0.023197904229164,-0.064983829855919],[-0.046916496008635,0.018301665782928,0.078363567590714]],[[-0.047426287084818,0.026140350848436,0.076019763946533],[0.022718697786331,0.01415666565299,-0.020934829488397],[-0.0051687392406166,0.037839740514755,-0.055073499679565]],[[-0.0036807027645409,0.040130715817213,0.047975238412619],[0.072765059769154,0.11076269298792,0.074783578515053],[0.02206576988101,-0.12097659707069,0.046024344861507]],[[0.048396032303572,-0.0096528138965368,0.033481359481812],[0.083976246416569,-0.029620034620166,0.0023984911385924],[0.027458576485515,-0.010956802405417,0.0031487348023802]],[[-0.044464871287346,0.011894940398633,0.02154360152781],[0.027133170515299,0.023249354213476,-0.037374015897512],[0.018504854291677,0.030773613601923,0.014188368804753]],[[0.030244562774897,0.068960547447205,-0.03050921112299],[0.0017755650915205,-0.026069149374962,0.031537760049105],[-0.040401946753263,0.044705953449011,0.021522587165236]],[[0.043248485773802,0.022208960726857,-0.057232692837715],[-0.04497604817152,0.048104144632816,-0.055404022336006],[-0.015971949324012,-0.035786386579275,0.014821711927652]],[[0.013508901000023,0.080602198839188,0.071968160569668],[0.13078378140926,0.098618067800999,-0.036698833107948],[-0.036905266344547,0.077001199126244,0.099711440503597]],[[-0.062213379889727,-0.069388225674629,-0.023017998784781],[-0.014087794348598,-0.041044354438782,-0.053829085081816],[-0.01245130226016,-0.073330171406269,-0.035775549709797]],[[0.023875743150711,-0.02518592774868,0.014658007770777],[0.014628172852099,0.0037791391368955,0.045828260481358],[-0.022408470511436,-0.043724372982979,-0.044986050575972]],[[-0.025631856173277,0.068387657403946,-0.052674662321806],[-0.012294079177082,-0.091234922409058,-0.06667822599411],[0.04022254049778,0.0099402721971273,-0.056404773145914]],[[-0.014809078536928,0.043320223689079,0.018734812736511],[0.010356723330915,0.039246588945389,0.096026964485645],[-0.01211413834244,0.072141468524933,-0.020826475694776]],[[0.082003347575665,-0.00096911174478009,0.099347345530987],[0.013333388604224,0.047014731913805,0.011115501634777],[-0.0063186907209456,0.003153528785333,0.048366792500019]],[[0.0014282037736848,0.0033436107914895,0.014527607709169],[0.008004697971046,-0.089471131563187,-0.075234591960907],[0.046302851289511,0.028778979554772,-0.080882132053375]],[[0.074371196329594,-0.018837112933397,0.060541883111],[0.037211533635855,-0.0043920455500484,0.038251623511314],[-0.007999250665307,0.037003114819527,0.047253217548132]],[[-0.078701600432396,-0.0098548820242286,-0.024037670344114],[0.10875856876373,-0.018431361764669,-0.050577338784933],[-0.06699612736702,0.011171652004123,0.075307801365852]],[[0.012496736831963,0.016853922978044,0.092459328472614],[0.015259285457432,-0.0018613012507558,-0.030214069411159],[0.039622269570827,-0.044846717268229,-0.028325520455837]],[[-0.0024811178445816,-0.021581742912531,0.02110430598259],[-0.017200915142894,-0.013430186547339,0.079833246767521],[0.034558244049549,0.024188594892621,-0.00059841311303899]],[[-0.050038360059261,0.023777389898896,0.043611362576485],[0.027457965537906,-0.043415617197752,-0.01323913410306],[0.018956415355206,-0.038348510861397,0.021869417279959]],[[0.018621331080794,0.013324079103768,0.065216071903706],[-0.06312407553196,0.036092586815357,-0.013635385781527],[-0.048737827688456,-0.0071218335069716,0.030781658366323]],[[0.0013530984288082,0.071310475468636,0.020098283886909],[0.018448432907462,-0.056638665497303,0.054490804672241],[0.037693168967962,0.075099922716618,0.007573664188385]],[[-0.013495303690434,0.049068924039602,0.034463468939066],[-0.026353111490607,0.0013020085170865,0.060481496155262],[-0.019100025296211,0.03047251701355,0.034262966364622]],[[0.040917672216892,-0.008821508847177,0.078412212431431],[0.011761327274144,-0.040348131209612,-0.049470532685518],[0.0074963215738535,-0.03869204968214,-0.035148624330759]],[[0.0024866496678442,0.037354160100222,-0.033874485641718],[0.031507909297943,-0.011995328590274,-0.017683677375317],[-0.013436336070299,0.0015821285778657,0.058286137878895]],[[0.010618944652379,0.024241499602795,-0.0014025274431333],[0.034240625798702,-0.063062883913517,-0.019396072253585],[0.04392359405756,0.079890504479408,0.075916148722172]],[[-0.040471397340298,-0.0020393554586917,-0.063737086951733],[-0.066789649426937,-0.028674846515059,-0.021816115826368],[0.012793772853911,0.074016436934471,-0.047923378646374]],[[0.0059580132365227,-0.051745638251305,-0.0057820011861622],[-0.055079270154238,-0.011727392673492,-0.025972791016102],[0.010047013871372,0.023859392851591,0.035602360963821]],[[0.010022698901594,-0.041870679706335,-0.090413838624954],[0.01961169578135,-0.029305836185813,-0.01457267254591],[0.016749845817685,0.014565865509212,0.083049528300762]],[[-0.03787798807025,-0.057695705443621,-0.030162155628204],[-0.064212426543236,-0.054926920682192,-0.071713514626026],[-0.0059934579767287,0.039060276001692,0.037373706698418]],[[-0.073002561926842,0.0094703212380409,0.026942793279886],[0.076842397451401,-0.023270800709724,0.032234508544207],[-0.066198475658894,-0.0032966672442853,-0.0084138521924615]],[[-0.028449127450585,-0.037900373339653,0.040056731551886],[-0.046840701252222,0.0055457856506109,-0.040610168129206],[-0.027861375361681,0.016477754339576,0.032363135367632]],[[0.10210577398539,0.03619072586298,-0.00937429536134],[-0.0028414272237569,0.010726626962423,0.035616654902697],[-0.042592160403728,-0.012318064458668,0.015249078162014]],[[0.025556752458215,-0.01858483441174,-0.020996805280447],[-0.057268813252449,0.049459058791399,0.044859636574984],[-0.0026520625688136,-0.00019200416863896,0.0035894948523492]],[[-0.020080048590899,-0.0090620229020715,0.020332684740424],[-0.0067337970249355,0.0062398365698755,-0.0045378310605884],[0.026100447401404,0.021035922691226,0.04655098170042]],[[0.048360090702772,0.018888266757131,-0.066229723393917],[0.02148630656302,0.0054176482371986,0.039717454463243],[0.081807106733322,-0.062814235687256,-0.055248681455851]],[[0.070600777864456,-0.02911045588553,-0.043802458792925],[0.031671304255724,-0.022969592362642,-0.019321888685226],[0.00034203170798719,-0.033750399947166,-0.017994938418269]],[[0.012266960926354,-0.04753926768899,0.012337937019765],[-0.016133790835738,-0.059804268181324,0.0066611850634217],[0.048762325197458,0.038654930889606,0.016193686053157]],[[-0.040588121861219,-0.019764829427004,0.026597497984767],[0.084528341889381,0.019089445471764,0.059361930936575],[0.014242545701563,0.0037004442419857,0.039868164807558]],[[0.076303072273731,0.086815662682056,0.023093977943063],[0.062716029584408,0.010927442461252,0.01887102983892],[-0.052003540098667,0.001046753488481,0.027061954140663]],[[0.067775137722492,0.040474057197571,0.071921810507774],[-0.0067493333481252,-0.085497841238976,-0.0011358415940776],[-0.0010226984741166,0.0018806357402354,0.052825964987278]],[[-0.014183244667947,-0.014515817165375,0.070146545767784],[-0.026701137423515,0.042416017502546,0.040503975003958],[-0.0018014673842117,-0.0031854163389653,0.068564422428608]],[[0.0029625638853759,0.04906115308404,-0.016427623108029],[-0.0059902654029429,-0.0038790258113295,0.066309377551079],[0.014764813706279,0.018404297530651,0.019233541563153]],[[-0.0027511431835592,0.054907072335482,-0.016315443441272],[0.014268714003265,-0.048412512987852,0.05406604334712],[-0.025641165673733,0.028950896114111,-0.015683144330978]],[[-0.055892072618008,-0.0036556418053806,-0.028870908543468],[0.073039583861828,-0.015368769876659,0.012905635870993],[-0.0065450449474156,-0.03801317512989,-0.085985705256462]],[[0.046218518167734,0.019517390057445,0.016370128840208],[0.010685824789107,-0.12386903911829,-0.043213479220867],[0.038375180214643,0.087473817169666,-0.031244749203324]],[[-0.065702997148037,-0.05120861902833,0.013899870216846],[-0.10009993612766,0.0024115147534758,0.061449352651834],[-0.014013991691172,-0.043437719345093,0.039365477859974]],[[0.005389261059463,-0.024956928566098,-0.032061263918877],[0.088937923312187,-0.049515806138515,-0.037033621221781],[-0.0060293627902865,0.026709901168942,-0.0011793578742072]],[[-0.02737906947732,0.059778112918139,-0.029222058132291],[-0.055391646921635,-0.010873018763959,-0.010420177131891],[0.037886086851358,0.05393959954381,-0.014833330176771]],[[0.008072498254478,0.019224537536502,-0.025980845093727],[0.0081560546532273,0.033807404339314,0.050180099904537],[0.016689650714397,-0.047228954732418,0.033552549779415]],[[-0.048191864043474,-0.064464516937733,-0.063967198133469],[0.093518666923046,-0.052684627473354,0.0059543941169977],[-0.051549557596445,-0.021624634042382,-0.025223020464182]],[[-0.015636784955859,-0.030215431004763,-0.067691028118134],[-0.028736082836986,0.043601375073195,-0.021559214219451],[0.013792393729091,-0.03042527101934,-0.013852081261575]],[[0.019740795716643,0.050857674330473,-0.028023486956954],[-0.025935690850019,0.044411193579435,0.04334307089448],[-0.031263917684555,0.084150843322277,-0.013326813466847]],[[-0.018310282379389,0.0026624999009073,0.081881061196327],[-0.033042781054974,0.0070949145592749,0.0007419326575473],[0.024634441360831,0.0058308481238782,0.027897326275706]],[[0.012516788206995,-0.0074227228760719,-0.042568907141685],[-0.051273100078106,0.047303058207035,0.034497432410717],[-0.053081471472979,0.026304610073566,0.021434552967548]],[[0.011491239070892,0.017531450837851,-0.015762960538268],[-0.045528318732977,-0.025756487622857,-0.013869591057301],[-0.020551396533847,-0.065801322460175,0.054572310298681]],[[0.016108883544803,-0.083759605884552,0.0067658014595509],[-0.049628999084234,0.031353499740362,0.029179636389017],[0.017765885218978,0.054786939173937,0.054141622036695]],[[-0.029189467430115,-0.012749998830259,0.043817088007927],[0.055242124944925,0.013601239770651,-0.094773784279823],[0.033242352306843,0.013306704349816,-0.099022887647152]],[[0.030925078317523,0.039470665156841,-0.019525786861777],[0.021963894367218,0.041777156293392,0.0078676110133529],[0.11654328554869,-0.043785888701677,0.046439025551081]],[[-0.021061897277832,0.047693386673927,0.052169863134623],[-0.0091007146984339,-0.093695871531963,-0.01104139816016],[-0.099459566175938,-0.062495484948158,-0.061781220138073]],[[0.10314159095287,0.029294988140464,0.036984577775002],[0.051249995827675,0.03281144797802,0.014499667100608],[0.018448321148753,0.0023666771594435,-0.034620054066181]],[[0.075222350656986,-0.061837144196033,0.018098305910826],[0.024901855736971,0.043068181723356,0.071517810225487],[0.072748899459839,0.009320018813014,0.034029841423035]],[[-0.036076635122299,-0.021288117393851,-0.028484519571066],[0.024909136816859,-0.0084680998697877,-0.062230613082647],[0.02954057790339,0.031959306448698,0.034816808998585]],[[-0.054518815129995,0.047926526516676,0.051356595009565],[0.043662745505571,-0.014207760803401,-0.019538747146726],[-0.00027349314768799,0.033551204949617,0.049809876829386]],[[0.040705312043428,-0.0024985573254526,-0.057384856045246],[-0.02345884591341,-0.0089584123343229,0.01230906881392],[-0.015351464040577,-0.0021833607461303,-0.0034342312719673]],[[0.018735826015472,-0.015094265341759,-0.016247319057584],[0.074343174695969,-0.01298941206187,-0.036662738770247],[-0.0056041600182652,0.068653039634228,0.0026426874101162]],[[-0.03291293233633,-0.01117542013526,0.025201391428709],[0.060825008898973,-0.046731598675251,-0.032448772341013],[-0.065796412527561,-0.029318215325475,0.026554750278592]],[[0.017050428315997,0.059530191123486,-0.011121137067676],[0.099094316363335,-0.013867187313735,0.0027684608940035],[-0.0098637910559773,-0.03077775798738,0.049675386399031]],[[-0.11376938223839,-0.05121598765254,-0.0036950160283595],[-0.028365183621645,0.0031655658967793,-0.019790414720774],[0.063210286200047,-0.019084678962827,-0.036443009972572]],[[-0.014529199339449,0.036640081554651,-0.037295587360859],[0.014974513091147,0.0090355258435011,0.076122216880322],[0.0047538443468511,-0.029819028452039,-0.023789884522557]],[[-0.032581854611635,-0.063510775566101,-0.051510993391275],[0.007373159751296,0.010024715214968,-0.028100471943617],[0.016558919101954,-0.037249684333801,0.0070576849393547]],[[0.0057345940731466,-0.02687231451273,0.088110268115997],[0.044949844479561,0.10727240145206,-0.017645398154855],[0.06330181658268,0.059909582138062,0.04489778354764]],[[0.058642771095037,0.03049680031836,-0.025680977851152],[0.011967382393777,0.0013947715051472,-0.00010773298708955],[0.023029254749417,0.078584164381027,-0.028032029047608]],[[0.0076873213984072,-0.073841094970703,-0.010223224759102],[-0.051234282553196,0.095102444291115,0.074010901153088],[-0.0032587703317404,0.057581670582294,-0.029587861150503]],[[-0.048835527151823,-0.067636489868164,-0.041719488799572],[0.045177914202213,0.063925594091415,0.090738214552402],[-0.0155711453408,0.075354889035225,0.0026658955030143]],[[0.095290370285511,-0.06371745467186,0.050711147487164],[-0.010250461287796,-0.025891957804561,-0.082871653139591],[-0.023386400192976,-0.0049089859239757,0.062192033976316]],[[0.038317386060953,0.079012334346771,0.013587724417448],[-0.048082802444696,-0.032868202775717,-0.035396408289671],[-0.01014871802181,0.0070378328673542,0.016602614894509]],[[0.038393698632717,-0.011847523972392,-0.002305865753442],[-0.02133490331471,0.0058844652958214,0.029389647766948],[-0.001818646909669,0.0052113481797278,-0.00015916764095891]],[[-0.008381774649024,-0.020017564296722,0.0080601032823324],[0.079060047864914,0.027854468673468,-0.029536003246903],[-0.044917326420546,-0.014416529797018,-0.004656087141484]],[[0.037872273474932,0.058050710707903,-0.11269419640303],[0.04805489256978,0.0016380342422053,0.055735524743795],[-0.028927022591233,-0.044477891176939,-0.05516292154789]],[[0.079871624708176,-0.035332288593054,-0.020476069301367],[0.012149296700954,-0.004940849263221,-0.015633264556527],[0.0082508437335491,-0.00095552823040634,-0.026524238288403]],[[0.014676813036203,0.0053693852387369,0.038047578185797],[0.084672003984451,0.041355475783348,0.031523678451777],[0.041387688368559,0.0072438754141331,0.011261157691479]],[[0.038991637527943,0.018149930983782,0.044118009507656],[-0.017030203714967,-0.030225379392505,0.0059022726491094],[-0.072423934936523,0.017026802524924,0.021426796913147]],[[0.010410338640213,0.0096135223284364,0.025194166228175],[-0.039390258491039,0.018730191513896,-0.091371230781078],[-0.026392595842481,0.0080477632582188,0.080002762377262]],[[0.062903143465519,0.081729248166084,-0.10185544937849],[0.054082334041595,-0.02804902754724,-0.0082201790064573],[-0.050728037953377,-0.041800979524851,-0.0051057981327176]],[[-0.04517762735486,0.040067527443171,0.015980092808604],[-0.052862323820591,0.02437249943614,0.078965649008751],[-0.0011750013800338,-0.031836580485106,0.063297234475613]],[[-0.043441731482744,-0.021500529721379,0.019032133743167],[-0.034471280872822,-0.037378557026386,0.024478547275066],[-0.056445628404617,0.025575552135706,0.00025943238870241]],[[0.0045153284445405,-0.04255610704422,-0.045889101922512],[-0.026812048628926,0.12658427655697,-0.019734393805265],[-0.087862245738506,0.00181333522778,0.055061858147383]],[[0.029991801828146,-0.0380504950881,0.037063498049974],[0.020776223391294,-0.047768536955118,-0.010037804022431],[0.063515737652779,-0.02567445486784,0.026995969936252]],[[3.071784885833e-05,0.037964127957821,0.030003944411874],[0.0063336533494294,0.036867577582598,-0.018300889059901],[0.021759809926152,0.016427453607321,-0.035830780863762]],[[0.039799559861422,-0.092472426593304,0.025246135890484],[0.017207514494658,-0.030477469787002,0.020815065130591],[0.022327000275254,-0.022251769900322,-0.038259007036686]],[[-0.044273592531681,0.083920836448669,-0.073749862611294],[0.030140358954668,0.06702184677124,0.02761104516685],[0.014703151769936,-0.0088534420356154,-0.022569622844458]],[[-0.098911508917809,0.023989235982299,-0.020099090412259],[0.031943637877703,0.046087943017483,-0.054850932210684],[-0.075656965374947,0.0047250092029572,0.0012482579331845]],[[0.04270963743329,0.037091668695211,0.0042890533804893],[-0.024030826985836,0.044026650488377,-0.04767319560051],[0.027308592572808,0.0061532538384199,0.044792529195547]],[[-0.012988216243684,0.0069637964479625,-0.059320166707039],[-0.025851372629404,-0.015590677037835,0.064600773155689],[-0.011749882251024,0.083439625799656,-0.071205019950867]],[[-0.027926156297326,0.03464075922966,-0.0034601574297994],[0.039701219648123,0.022828118875623,0.0019752359949052],[0.065950728952885,-0.00039341926458292,-0.004884191788733]],[[0.018589666113257,-0.0008010555175133,-0.050324004143476],[0.011363247409463,0.016660781577229,-0.033381748944521],[0.038492348045111,0.012413900345564,0.00067547039361671]],[[0.012510068714619,-0.042714782059193,-0.048654239624739],[-0.0022564777173102,0.04367882758379,-0.015341191552579],[-0.037354949861765,-0.026369910687208,-0.01151661016047]],[[0.038525231182575,0.014069016091526,0.074318781495094],[-0.059811692684889,0.050177119672298,0.01570668630302],[0.042949210852385,0.0057245581410825,-0.015599257312715]],[[0.0028578951023519,0.014017175883055,0.028853818774223],[0.058536916971207,0.0059148757718503,0.01565452478826],[-0.023958005011082,0.036022171378136,0.085173465311527]],[[-0.047405980527401,0.028345163911581,0.0055027180351317],[0.029974577948451,0.015921905636787,-0.0027990348171443],[-0.031509790569544,0.086382940411568,-0.011960672214627]],[[0.085173308849335,-0.054338563233614,0.0566650852561],[-0.0079647107049823,0.10639332234859,0.019313545897603],[-0.00065586995333433,-0.081045597791672,0.024166038259864]],[[0.021519612520933,0.078648321330547,0.0053469203412533],[-0.015341736376286,0.015069278888404,0.063595436513424],[-0.022207351401448,0.01452496740967,-0.064142599701881]],[[-0.014996930956841,0.061996690928936,-0.019268410280347],[0.0021149236708879,-0.013851954601705,0.00084382382920012],[-0.027834363281727,0.021545730531216,0.025718778371811]],[[-0.044460065662861,0.035497505217791,0.034675661474466],[-0.015946730971336,-0.012755444273353,-0.026012381538749],[0.077313534915447,-0.095861010253429,0.032864704728127]],[[0.082713581621647,-0.026447396725416,-0.01337562687695],[-0.048487614840269,-0.011584986932576,-0.051878616213799],[0.014229384250939,0.035131029784679,0.015621154569089]],[[0.0011284404899925,0.060835480690002,0.003569258376956],[-0.025112882256508,0.0086013311520219,0.017157521098852],[0.0044746003113687,0.0014522430719808,-0.015483590774238]],[[-0.024335414171219,-0.090600103139877,-0.045366801321507],[-0.026424881070852,-0.0051658004522324,0.023902654647827],[0.036822766065598,0.055937740951777,0.013162774965167]],[[0.01178371347487,0.0093152141198516,-0.022112084552646],[-0.013146403245628,0.10196749120951,-0.026306999847293],[-0.005801270250231,-0.0041764448396862,0.046314720064402]],[[-0.01404988206923,-0.016975911334157,-0.042231421917677],[0.036469504237175,0.019442748278379,0.0061372225172818],[0.020259529352188,0.00082337443018332,0.017816288396716]],[[-0.038614232093096,0.053809799253941,0.027107730507851],[0.035730041563511,0.043084073811769,0.021945951506495],[0.059139706194401,0.011019185185432,0.010263590142131]],[[0.080675311386585,0.014239174313843,-0.0045899664983153],[-0.026148565113544,0.040734183043242,-0.035474922508001],[0.0074122389778495,0.057653080672026,0.038347724825144]],[[-0.11368283629417,-0.042431309819221,-0.053594395518303],[-0.068023107945919,0.036348592489958,0.12330941855907],[-0.0020922450348735,0.050330720841885,-0.01840977743268]],[[-0.054038800299168,-0.055562503635883,0.017734184861183],[-0.040770884603262,0.032636523246765,0.035890746861696],[-0.023883670568466,0.029818804934621,-0.052654813975096]],[[0.030184568837285,0.027628542855382,0.036927577108145],[0.033745519816875,0.076456040143967,0.0025212769396603],[0.046948101371527,-0.058096785098314,-0.0032964798156172]],[[-0.060534060001373,-0.0026181091088802,0.055218163877726],[-0.023806577548385,0.029619498178363,-0.00020679229055531],[0.016431799158454,0.033366158604622,-0.016122112050653]],[[0.010316351428628,-0.047175426036119,-0.07309353351593],[0.005723784212023,0.037710189819336,-0.053011365234852],[-0.023183301091194,-0.044425528496504,0.028621543198824]],[[0.0039084716700017,-0.0067946910858154,0.012042128480971],[0.017964370548725,-0.0731306001544,-0.012865968979895],[-0.028863910585642,0.071172699332237,0.058622598648071]],[[0.044918097555637,-0.024206597357988,-0.06803834438324],[-0.019186992198229,-0.028698042035103,0.020307997241616],[-0.0037039923481643,0.0084378188475966,-0.066664636135101]],[[0.060862842947245,-0.0055614872835577,-0.019185099750757],[-0.0043719573877752,0.05047120153904,-0.07372459769249],[0.030070440843701,0.015084380283952,0.059618066996336]],[[0.034220173954964,0.064338997006416,0.065461419522762],[0.061833791434765,0.044606395065784,0.010879366658628],[0.055314693599939,0.020030526444316,0.027653181925416]],[[0.067316561937332,-0.019685817882419,-0.13201232254505],[0.036142151802778,0.0029010395519435,0.0076837912201881],[0.030114442110062,0.064247824251652,0.043124102056026]]],[[[0.11080975085497,0.063911132514477,-0.021722540259361],[-0.01123367715627,-0.038155779242516,0.081098802387714],[-0.063335977494717,-0.014218942262232,-0.046693161129951]],[[0.055819906294346,-0.066346764564514,0.11133363097906],[-0.0060545317828655,0.082822404801846,-0.032450415194035],[-0.13258017599583,-0.046078823506832,-0.023967472836375]],[[0.065362602472305,0.022622849792242,0.043411463499069],[0.019083080813289,-0.054189313203096,-0.15059754252434],[0.045601326972246,0.035589642822742,0.0055745388381183]],[[0.055017467588186,0.051756419241428,0.087203562259674],[0.017354963347316,0.10019920766354,0.016238246113062],[-0.055493950843811,-0.06440058350563,-0.045485708862543]],[[-0.050078604370356,0.08480479568243,-0.062872141599655],[-0.016844790428877,0.089599780738354,0.089949175715446],[0.036076474934816,-0.047845665365458,0.07248068600893]],[[-0.011307742446661,-0.0082190362736583,0.066969811916351],[0.16766917705536,0.027149725705385,0.030670493841171],[0.017205512151122,0.072911508381367,0.022828442975879]],[[0.11842932552099,-0.062290873378515,0.091825321316719],[0.019384760409594,-0.0010038844775409,-0.046050291508436],[-0.12896603345871,0.032232586294413,-0.033326182514429]],[[-0.036690074950457,-0.010297352448106,-0.03538753464818],[-0.090575091540813,-0.08688435703516,0.084017246961594],[-0.062674701213837,-0.03090513125062,0.038074143230915]],[[-0.02458456531167,0.0034049756359309,0.14472317695618],[0.024304429069161,-0.10318877547979,0.010381205938756],[-0.072636269032955,0.11243262887001,-0.024866085499525]],[[0.17729516327381,0.015563174150884,0.13083417713642],[0.068400040268898,0.036201640963554,0.047660652548075],[-0.11490470170975,-0.046996001154184,0.060199588537216]],[[0.066040404140949,0.033938843756914,0.10183238983154],[0.029994668439031,0.096085265278816,0.0009207462426275],[-0.089476197957993,-0.12673290073872,-0.077765956521034]],[[0.003853184171021,0.090485416352749,0.1229882389307],[-0.018207371234894,0.070588417351246,0.0076238750480115],[0.028333654627204,-0.050212614238262,0.047477919608355]],[[-0.0056389109231532,-0.049010679125786,-0.024585457518697],[0.099552512168884,-0.088658362627029,0.078989207744598],[-0.018950628116727,0.038437366485596,-0.060691699385643]],[[0.093305133283138,0.060354512184858,0.1203920841217],[-0.063585862517357,0.042443074285984,-0.027821555733681],[-0.03108205460012,-0.0097326254472136,-0.031360819935799]],[[0.071982808411121,0.23066672682762,0.18554998934269],[0.023250410333276,-0.019217414781451,0.089958764612675],[0.08299246430397,0.012956005521119,0.014725184999406]],[[0.073384694755077,0.037430457770824,-0.062516435980797],[-0.14701786637306,-0.10243979841471,0.0073773581534624],[-0.0094705140218139,-0.017455553635955,-0.048893135040998]],[[-0.018132762983441,0.083689995110035,0.013663043268025],[-0.066732496023178,0.040814753621817,-0.036771334707737],[0.081510111689568,0.045041278004646,-0.034693114459515]],[[0.082547828555107,0.042601350694895,-0.059516381472349],[-0.0021301645319909,0.015846867114305,0.11730416864157],[-0.17284248769283,-0.067813962697983,-0.04298447817564]],[[0.068864852190018,-0.13819773495197,0.026341315358877],[0.096376277506351,0.076133832335472,-0.016947502270341],[-0.0032904034014791,0.090938627719879,-0.038173485547304]],[[-0.087191633880138,0.045623749494553,0.081142343580723],[0.11990325152874,0.070662178099155,-0.0066702710464597],[0.055369131267071,0.12095303833485,0.052394635975361]],[[-0.1296159029007,-0.067523628473282,0.10727049410343],[0.022394513711333,-0.072981424629688,-0.057943031191826],[-0.043133750557899,0.026142289862037,0.079316668212414]],[[0.075527645647526,0.037788785994053,0.15071104466915],[0.13081762194633,0.059300556778908,0.093579970300198],[0.083926819264889,0.033566761761904,-0.022796599194407]],[[-0.21708615124226,0.035409767180681,-0.048938155174255],[0.017565963789821,0.051041506230831,-0.084252513945103],[-0.034592822194099,-0.042314276099205,-0.056628324091434]],[[-0.013844819739461,0.079993188381195,0.10994167625904],[0.022368470206857,0.020946903154254,0.050719916820526],[-0.080950193107128,-0.14790308475494,0.083126060664654]],[[-0.0066648223437369,0.043986812233925,0.029000908136368],[0.046295735985041,0.048058345913887,-0.019491005688906],[0.022218186408281,-0.0090394103899598,-0.038730695843697]],[[0.071188144385815,0.051275432109833,0.012309210374951],[-0.15818573534489,0.059785436838865,0.012650393880904],[-0.2325354963541,0.024333277717233,-0.18494184315205]],[[0.13395692408085,0.071773663163185,0.052243277430534],[-0.026241907849908,0.010369748808444,0.064378902316093],[-0.061250139027834,0.031245464459062,-0.025240892544389]],[[0.12602858245373,-0.084346637129784,-0.040577217936516],[-0.088918536901474,0.066192619502544,0.024953501299024],[0.034039985388517,0.13352806866169,-0.081782482564449]],[[0.023576008155942,0.061425786465406,-0.0055454070679843],[-0.072686851024628,0.15153555572033,-0.035518918186426],[-0.019523011520505,-0.057499468326569,0.011547490023077]],[[-0.10194561630487,0.04220824688673,0.11836416274309],[0.037226971238852,-0.047345716506243,-0.0074215149506927],[-0.036995783448219,-0.013330877758563,0.072603546082973]],[[0.0033402889966965,-0.033558283001184,-0.033245295286179],[0.0060569373890758,-0.0036265843082219,-0.051706779748201],[0.026938632130623,0.0416105017066,-0.084772750735283]],[[0.05600954964757,-0.028235195204616,0.10087654739618],[0.052003391087055,-0.10967350751162,-0.0058954912237823],[-0.0022610186133534,-0.0056321257725358,0.041522275656462]],[[0.11425422877073,-0.037703242152929,0.1207891702652],[-0.016613774001598,-0.0019054145086557,0.05316749215126],[-0.086101032793522,-0.09465092420578,0.015610333532095]],[[0.073265053331852,0.00064061972079799,0.039838787168264],[-0.029323980212212,0.0052117723971605,0.081833630800247],[-0.088226929306984,-0.033301468938589,0.14403024315834]],[[-0.062979906797409,0.037428148090839,0.093968778848648],[0.084441281855106,0.03670521453023,-0.00062411878025159],[0.042604170739651,0.089207671582699,0.00055782462004572]],[[0.043556608259678,0.039004139602184,0.0030904964078218],[-0.04095670953393,-0.016120979562402,-0.0084325047209859],[0.067957736551762,0.037121899425983,-0.030370932072401]],[[-0.011388756334782,-0.022535314783454,-0.02773654460907],[-0.020910499617457,-0.072447501122952,-0.037735037505627],[-0.081049598753452,-0.088296368718147,-0.035221382975578]],[[0.12257318198681,0.033169258385897,0.013140612281859],[0.1523213237524,0.020120790228248,-0.018986398354173],[0.097921304404736,0.0035451340954751,-0.033052138984203]],[[0.094338797032833,0.11035633087158,0.059585247188807],[-0.021736158058047,-0.082643806934357,-0.029163485392928],[-0.080587476491928,-0.015151657164097,0.091273695230484]],[[0.060317344963551,-0.023392152041197,0.040410239249468],[-0.017253175377846,-0.033906914293766,0.045481413602829],[-0.057171929627657,-0.02029505930841,-0.03698106855154]],[[0.015116980299354,0.030975185334682,0.1660153567791],[0.048652295023203,0.022834565490484,0.068870112299919],[-0.074091382324696,-0.05006455630064,-0.057666990906]],[[0.046849749982357,0.07136157900095,-0.092134222388268],[0.033363744616508,0.076825201511383,0.06149186193943],[-0.0019500781781971,0.0062075704336166,-0.026078417897224]],[[0.21310490369797,-0.0059349378570914,-0.0050240494310856],[0.035485334694386,0.076987974345684,-0.031048895791173],[0.045510221272707,0.12015759944916,0.049931671470404]],[[0.053499899804592,-0.10024879127741,0.0386624597013],[-0.069900363683701,0.015114534646273,0.081180110573769],[-0.065043672919273,0.028189975768328,-0.0088747572153807]],[[0.082067087292671,-0.026149356737733,-0.067980274558067],[0.083955161273479,0.05933578684926,-0.0084817130118608],[0.053939644247293,-0.0085284681990743,0.057738397270441]],[[0.074071876704693,-0.084177061915398,0.073704890906811],[0.063566468656063,-0.031691197305918,-0.040624726563692],[0.084967710077763,-0.059858519583941,0.046927977353334]],[[0.095596335828304,0.045039728283882,0.064465433359146],[0.007659493945539,-0.034676723182201,0.04362465813756],[-0.04302179068327,-0.062562793493271,-0.018340671434999]],[[0.082377761602402,-0.03565626963973,0.058126471936703],[0.048204746097326,0.04306598752737,0.076416000723839],[-0.0022856504656374,0.015356854535639,0.070069119334221]],[[0.077663287520409,0.033696059137583,0.011368495412171],[0.019603867083788,0.083066552877426,0.058633025735617],[-0.067223362624645,-0.021980497986078,0.064312271773815]],[[-0.067900955677032,-0.044749159365892,-0.078469321131706],[-0.014369292184711,0.0514135658741,0.10860395431519],[-0.025546925142407,-0.073757149279118,0.062349215149879]],[[0.14695692062378,0.056935582309961,-0.11200612783432],[-0.066232338547707,0.13083602488041,0.073597028851509],[0.00029808262479492,-0.089814752340317,0.064850337803364]],[[-0.023585554212332,0.069375723600388,0.10787368565798],[0.01433570496738,-0.068137146532536,0.12152164429426],[-0.047638148069382,0.049442242830992,-0.043835714459419]],[[-0.060273330658674,0.026733946055174,-0.025316994637251],[0.023047927767038,-0.0066092838533223,-0.0077295480296016],[-0.0099472813308239,-0.10135464370251,0.023821100592613]],[[-0.094149246811867,0.090255431830883,-0.014569110237062],[-0.12621742486954,-0.023977292701602,0.023273481056094],[-0.067013032734394,-0.020918248221278,0.011452870443463]],[[0.22036488354206,0.1187860891223,-0.039805110543966],[0.039105661213398,-0.0038699605502188,-0.020776730030775],[-0.03680631890893,0.039773285388947,-0.021788880228996]],[[-0.14494794607162,0.017361456528306,0.034327905625105],[0.05915292724967,-0.029225960373878,-0.056377772241831],[-0.064923197031021,-0.16130620241165,0.0030506972689182]],[[-0.035618487745523,0.016524631530046,-0.060999117791653],[0.0076875989325345,-0.036616034805775,0.11896675080061],[0.032389860600233,-0.021284086629748,-0.056213274598122]],[[-0.1485149115324,0.012270437553525,0.065199442207813],[0.09586501121521,-0.14694285392761,0.059867322444916],[-0.10470420867205,-0.079157635569572,-0.013146894983947]],[[-0.23143449425697,-0.12510353326797,0.013556980527937],[-0.11950534582138,-0.085517182946205,0.07285438477993],[-0.11946372687817,0.010545595549047,0.14400671422482]],[[0.044979400932789,0.063032291829586,0.1224654763937],[-0.034977626055479,-0.070836752653122,-0.034800868481398],[-0.10351576656103,-0.011865646578372,-0.044867817312479]],[[0.040432590991259,-0.00037754609365948,0.028859121724963],[-0.015499438159168,0.12479949742556,0.0041678128764033],[0.031266406178474,-0.018794998526573,0.016134895384312]],[[0.040340200066566,0.0080178994685411,-0.038530521094799],[0.00683379964903,0.023966383188963,0.087499924004078],[0.054966010153294,-0.047074217349291,0.07217488437891]],[[0.062227379530668,0.035824928432703,0.11935663223267],[-0.074329636991024,-0.080385200679302,0.0021775728091598],[-0.042262054979801,-0.030681762844324,-0.057187486439943]],[[-0.0077253263443708,-0.098447784781456,-0.025641629472375],[-0.027412643656135,-0.058384377509356,0.042742252349854],[0.097180806100368,-0.067977838218212,0.02070178091526]],[[-0.023547003045678,0.0065694092772901,-0.093259714543819],[-0.019778529182076,0.0051419408991933,-0.042965032160282],[-0.0025707180611789,0.097054250538349,0.011912787333131]],[[-0.070573695003986,-0.0037771097850055,0.085135474801064],[0.060879070311785,-0.0030989211518317,-0.026510974392295],[-0.1819134503603,0.098533205688,-0.026250977069139]],[[-0.0023948799353093,0.0067205298691988,0.056620057672262],[0.012004545889795,0.0098949363455176,0.040453635156155],[0.053381819278002,-0.061787832528353,0.0044125053100288]],[[0.065821766853333,0.019421752542257,0.030070463195443],[0.098964273929596,0.077153362333775,0.0064848526380956],[-0.070620320737362,0.027071351185441,-0.06575645506382]],[[-0.065312512218952,0.015955742448568,-0.01419254206121],[0.052561301738024,-0.078800424933434,0.042737267911434],[-0.025271134451032,-0.021190043538809,-0.061482537537813]],[[-0.011109985411167,0.091195046901703,-0.015612804330885],[-0.094891868531704,0.089431472122669,0.069515556097031],[-0.073629267513752,-0.028248302638531,-0.092123426496983]],[[0.11575930565596,0.31443724036217,-0.1174955740571],[-0.00011723447096301,0.010145088657737,-0.1033750474453],[0.017496835440397,0.036633878946304,-0.21414588391781]],[[0.02061615511775,0.045750416815281,0.00089797825785354],[-0.11468026787043,-0.045077081769705,0.11091290414333],[0.071761675179005,0.047623243182898,0.022477757185698]],[[0.070480234920979,-0.048680324107409,-0.021662056446075],[-0.006478211376816,0.010307874530554,0.031850885599852],[0.03047576546669,0.01873424090445,0.0059172618202865]],[[-0.10360529273748,-0.014595960266888,0.10184508562088],[-0.0033987837377936,-0.0028761243447661,-0.12382270395756],[0.058743067085743,-0.0038736867718399,0.13667224347591]],[[-0.054936822503805,-0.038025356829166,-0.010145029053092],[-0.01106283813715,-0.11765584349632,-0.047645080834627],[-0.091485239565372,0.054965205490589,0.12131791561842]],[[-0.089023523032665,-0.054815962910652,0.0471396073699],[-0.093055844306946,0.05984428152442,-0.057952370494604],[-0.016150640323758,-0.098930887877941,0.034625004976988]],[[0.086639188230038,-0.025026930496097,0.015043944120407],[0.090249314904213,0.043152704834938,0.078929722309113],[-0.035366546362638,0.045375969260931,-0.0031163489911705]],[[-0.016873123124242,-0.0029693217948079,-0.050081513822079],[0.11792639642954,0.0032955713104457,-0.026891738176346],[-0.002768152859062,-0.14672388136387,0.051193915307522]],[[-0.01843580044806,0.022261947393417,0.029539758339524],[-0.021279575303197,0.054720129817724,0.029475040733814],[-0.0098694609478116,0.021367562934756,0.041374895721674]],[[0.037774037569761,-0.063326552510262,0.045723512768745],[-0.1068888604641,-0.041653860360384,-0.087749972939491],[0.017408758401871,0.0032029785215855,-0.0030513373203576]],[[-0.12456825375557,-0.041268236935139,-0.061439901590347],[0.11270749568939,0.026336815208197,0.055611755698919],[0.017085988074541,0.040583170950413,0.077505074441433]],[[-0.020630633458495,-0.0072349389083683,0.02211662940681],[-0.03352515399456,-0.005994878243655,-0.0032407145481557],[-0.034926768392324,-0.057436656206846,0.0072632594965398]],[[0.094182103872299,-0.0014778771437705,-0.094414673745632],[-0.028858289122581,0.055247694253922,0.032178826630116],[0.059696488082409,-0.075946606695652,0.075431443750858]],[[0.018348712474108,0.020847348496318,-0.019966561347246],[0.0018140906468034,-0.11266479641199,-0.010421920567751],[-0.043258614838123,0.0485182069242,-0.086999289691448]],[[-0.083065703511238,0.12358390539885,-0.013788328506052],[0.040246941149235,-0.022057237103581,0.01404838077724],[-0.099881403148174,-0.038434728980064,0.014355801045895]],[[0.033272724598646,-0.063913606107235,0.041388675570488],[-0.0084850918501616,-0.013006895780563,0.039656162261963],[-0.084398955106735,0.0015487929340452,0.042859748005867]],[[0.030067153275013,-0.052593257278204,-0.0069762100465596],[0.047497969120741,0.032628260552883,-0.034394584596157],[-0.015598187223077,0.088516190648079,0.13698409497738]],[[-0.037602018564939,-0.052126925438643,-0.018222099170089],[-0.066966772079468,0.129429936409,0.025673625990748],[-0.027240108698606,-0.0052196127362549,0.14594279229641]],[[0.056979861110449,0.053056664764881,0.010046591050923],[-0.13412429392338,0.026429932564497,0.10994584113359],[-0.07466559112072,-0.0042478861287236,0.029818627983332]],[[-0.14039745926857,0.12060172855854,-0.12048347294331],[-0.032760724425316,-0.017359476536512,-0.016056442633271],[-0.033221304416656,0.0047768880613148,0.059151515364647]],[[-0.083605624735355,0.21793162822723,0.049495466053486],[-0.01421707123518,-0.0082553708925843,0.080169104039669],[0.05213363096118,0.028367346152663,0.015824947506189]],[[0.035648364573717,0.030368959531188,-0.046594440937042],[0.0051923561841249,0.055577121675014,-0.0090990429744124],[0.05866552144289,0.11329808831215,0.050192784518003]],[[0.025738904252648,-0.022622345015407,-0.0034096266608685],[-0.012962841428816,0.033290844410658,0.015403585508466],[-0.04466700181365,-0.0039235735312104,0.10941793769598]],[[-0.030550369992852,-0.079881072044373,0.11212222278118],[0.075895614922047,-0.057844299823046,-0.018532982096076],[0.016722206026316,0.047079298645258,0.0099329482764006]],[[0.023517921566963,-0.0028754232916981,-0.068255558609962],[-0.031796276569366,-0.010045908391476,0.23396623134613],[-0.0091902995482087,-0.039632432162762,0.011352288536727]],[[-0.023724040016532,0.13322533667088,0.049266364425421],[-0.043107114732265,0.059272490441799,-0.036490488797426],[-0.066864162683487,-0.11977063119411,0.055589132010937]],[[0.050099093466997,0.011517318896949,-0.03611583262682],[-0.038811899721622,0.0026952954940498,0.042857829481363],[0.097089327871799,-0.0098902983590961,0.046579226851463]],[[-0.03734452649951,-0.17081233859062,-0.099015653133392],[0.072008743882179,0.056853584945202,0.13445414602757],[0.022452427074313,-0.024316156283021,0.084161318838596]],[[0.068532958626747,0.078271716833115,0.0052829952910542],[0.092326030135155,0.032876022160053,0.10680463165045],[0.026856793090701,0.024436123669147,0.05223523825407]],[[-0.051736786961555,-0.04420593008399,0.008144972845912],[0.00021138753800187,0.04922865703702,0.02402994595468],[-0.11306666582823,-0.0690683349967,0.091780565679073]],[[-0.0044901459477842,-0.0039323549717665,-0.069722637534142],[0.086730122566223,0.051027201116085,0.051683615893126],[-0.058920089155436,0.064634710550308,0.058188859373331]],[[0.017085812985897,0.16562230885029,0.045276287943125],[0.020319182425737,0.050053287297487,0.037440992891788],[-0.0075220447033644,-0.04529432579875,-0.053818013519049]],[[0.010165335610509,0.067994169890881,0.037577144801617],[-0.0042964154854417,0.062808118760586,-0.00194876792375],[0.0089524267241359,-0.026501452550292,0.055194512009621]],[[0.039249923080206,0.1270315349102,0.11408427357674],[-0.076501116156578,0.016124133020639,0.021742206066847],[-0.038605477660894,-0.0034769158810377,-0.0084047866985202]],[[-0.066219203174114,-0.056252781301737,-0.047180909663439],[0.059254352003336,-0.061098989099264,0.071318052709103],[0.058212276548147,-0.042150158435106,0.082066178321838]],[[0.0071178521029651,-0.060551673173904,0.075756326317787],[-0.05224534124136,0.0053021730855107,-0.0015136932488531],[0.044913053512573,0.14117041230202,0.050237692892551]],[[0.033938929438591,-0.083973124623299,0.036752115935087],[-0.030189264565706,0.044703554362059,0.026626510545611],[-0.047962792217731,0.014230906032026,0.10439401865005]],[[0.0063436273485422,-0.13192796707153,-0.046416636556387],[0.0054948795586824,0.093415878713131,-0.024398086592555],[0.028166526928544,0.046987034380436,-0.016414184123278]],[[0.04480778798461,0.0066547598689795,0.00088619149755687],[0.11954433470964,-0.18741402029991,-0.1292469650507],[0.011760371737182,0.20460557937622,0.0057785077951849]],[[0.066646672785282,0.059289496392012,-0.050043251365423],[-0.10370983183384,0.053993903100491,0.084408298134804],[-0.0038276072591543,-0.12632922828197,0.047908160835505]],[[-0.017439242452383,-0.044705431908369,-0.02499950863421],[-0.059066288173199,-0.044199917465448,0.018937706947327],[0.099016390740871,0.041805878281593,-0.0062574869953096]],[[0.055035963654518,-0.10985779762268,0.051084950566292],[-0.09283784031868,-0.0036838112864643,0.097768992185593],[0.015756754204631,0.023647457361221,-0.018146693706512]],[[0.022645570337772,0.1274074614048,0.052684746682644],[0.0075910002924502,-0.055044855922461,0.10234871506691],[-0.017770117148757,-0.026527056470513,-0.040471944957972]],[[0.0053549562580884,0.042796544730663,0.088630042970181],[-0.15564131736755,-0.012499746866524,-0.018909331411123],[0.10931549966335,-0.069736771285534,-0.017528196796775]],[[-0.076453559100628,-0.040700163692236,0.017035162076354],[0.044157292693853,-0.0034764292649925,0.089655354619026],[-0.017744427546859,0.035633467137814,0.09834311902523]],[[0.076729699969292,0.051860369741917,0.036418594419956],[0.010450027883053,0.067355871200562,0.050853490829468],[-0.12428788840771,-0.063902884721756,0.010752519592643]],[[-0.11375138163567,-0.00047936799819581,0.048822849988937],[0.06505523622036,0.010682822205126,0.04327192530036],[-0.050432324409485,0.094610422849655,0.11354847997427]],[[-0.16099059581757,-0.11054306477308,-0.029374508187175],[0.062588483095169,-0.068935327231884,-0.017301306128502],[0.060391455888748,0.005295735783875,0.026148732751608]],[[0.019599528983235,0.080882996320724,-0.04685403034091],[-0.017990496009588,0.013144881464541,0.0014111215714365],[-0.021525725722313,0.043224729597569,-0.017868498340249]],[[-0.015551626682281,-0.10691852122545,-0.050362609326839],[-0.036187600344419,-0.089316807687283,-0.1343690007925],[0.00024477756232955,0.035371419042349,-0.13223521411419]],[[-0.11899027973413,0.085853978991508,0.14552317559719],[-0.013064975850284,0.0031089098192751,-0.015596591867507],[0.063767902553082,-0.11238071322441,0.051113422960043]],[[-0.06200348213315,0.19007343053818,-0.21084994077682],[-0.0056672790087759,-0.07604455947876,0.22977527976036],[0.068578779697418,-0.0081428019329906,-0.015538708306849]],[[0.018051052466035,-0.040512356907129,-0.0097658112645149],[-0.15378640592098,0.054945223033428,0.023795261979103],[-0.057169623672962,-0.017788462340832,-0.041205953806639]],[[-0.011229364201427,0.01675889827311,0.0023456211201847],[-0.084760531783104,-0.070357404649258,-0.010383796878159],[0.024854846298695,0.014693148434162,-0.025380039587617]],[[0.060339670628309,-0.034035090357065,0.013497765175998],[0.030012907460332,0.067369498312473,0.019712697714567],[-0.0082408273592591,0.022882875055075,-0.02778891287744]],[[-0.073657795786858,0.050222113728523,0.021503109484911],[0.014404442161322,-0.079796239733696,0.067507095634937],[-0.050568401813507,0.0054499646648765,-0.011063599959016]],[[0.071218088269234,-0.045504819601774,0.10651911795139],[0.07356283813715,-0.0028129823040217,0.0060285963118076],[0.0055956677533686,-0.062412988394499,0.062771186232567]],[[0.099442929029465,-0.019973723217845,0.072144322097301],[0.012458395212889,0.049398470669985,-0.034678734838963],[-0.094366326928139,0.031562723219395,0.0423294454813]]],[[[-0.079627975821495,0.022044960409403,0.0096978154033422],[-0.064949698746204,0.1173143312335,0.095932260155678],[0.00048172334209085,0.071943737566471,-0.015784380957484]],[[-0.023168092593551,-0.01543926820159,-0.025969937443733],[-0.083784818649292,0.10984066128731,-0.075956404209137],[-0.022468434646726,-0.040119454264641,-0.00061438197735697]],[[0.034637551754713,0.026019766926765,-0.081405580043793],[-0.032547798007727,0.046723429113626,-0.09046645462513],[0.026061419397593,0.10552041977644,-0.01870172470808]],[[-0.060348223894835,-0.11270310729742,0.027847355231643],[0.027593275532126,0.07051719725132,-0.054833222180605],[-0.062386229634285,0.029387321323156,0.046049922704697]],[[0.045343283563852,0.013766993768513,0.021142669022083],[0.064109183847904,-0.013603094033897,0.032646611332893],[-0.019115144386888,0.030064569786191,-0.034102465957403]],[[0.062047496438026,0.012007084675133,0.12961366772652],[0.12725804746151,0.054657578468323,-0.041538920253515],[-0.033090770244598,-0.037987802177668,0.001853730995208]],[[-0.06295020878315,-0.061615440994501,-0.023814935237169],[0.049581117928028,0.040912460535765,-0.10367498546839],[0.068315893411636,0.029939420521259,0.15134565532207]],[[-0.014542255550623,0.006085223518312,0.046176802366972],[-0.012582931667566,0.029637107625604,0.081841871142387],[0.11641930043697,-0.043230265378952,-0.09174295514822]],[[-0.089790351688862,-0.11128826439381,0.035981941968203],[0.13441832363605,0.13591821491718,-0.10815286636353],[-0.04934848845005,0.0025586935225874,0.022182198241353]],[[-0.01558290142566,0.068076364696026,0.02243510633707],[0.015934707596898,-0.024909812957048,-0.063352681696415],[-0.062106318771839,0.007478600833565,-0.079100102186203]],[[0.13225004076958,0.1028510555625,0.057177640497684],[-0.045367870479822,-0.036424465477467,0.081058397889137],[-0.11774501204491,-0.0071413777768612,-0.034790705889463]],[[0.065017051994801,-0.020386645570397,0.057586882263422],[0.099804803729057,-0.03718651458621,0.050085157155991],[-0.07598115503788,0.11230102926493,-0.041272815316916]],[[-0.049825079739094,0.02010652422905,0.093067921698093],[-0.063698530197144,0.0025587272830307,0.047165974974632],[0.096151791512966,-0.039338406175375,0.046436913311481]],[[-0.0071524516679347,0.028968296945095,-0.090115316212177],[0.0072901649400592,0.080370754003525,-0.058858118951321],[0.12930575013161,-0.085044853389263,-0.12981037795544]],[[0.10137995332479,0.062075041234493,-0.014941516332328],[0.041471619158983,0.01755160652101,0.046502966433764],[-0.042433835566044,-0.011978979222476,0.0028008434455842]],[[-0.01588162779808,-0.06256228685379,-0.030006432905793],[-0.045238476246595,0.18459017574787,-0.066878333687782],[-0.011583391577005,-0.034552782773972,-0.030208243057132]],[[-0.0025496962480247,-0.017456214874983,-0.080853804945946],[0.081521697342396,0.067474938929081,0.052181035280228],[0.073233045637608,0.01891597174108,0.084786251187325]],[[-0.0074245296418667,-0.0096260802820325,0.063783906400204],[0.038285732269287,-0.065575666725636,-0.055393200367689],[-0.026235844939947,-0.11496165394783,0.071336954832077]],[[0.011790028773248,-0.010823084972799,0.081074677407742],[-0.060654252767563,0.17731547355652,-0.025230843573809],[0.036570064723492,-0.04207680746913,-0.013161210343242]],[[-0.061453804373741,-0.011240424588323,0.099412404000759],[0.015045956708491,-0.032666675746441,0.059925869107246],[0.058273948729038,0.088671185076237,0.040468011051416]],[[-0.067994929850101,-0.0202546864748,0.068640567362309],[-0.010998979210854,-0.071687035262585,-0.17070963978767],[0.10590355098248,-0.005125354975462,-0.060255892574787]],[[-0.15916165709496,-0.063514746725559,0.035577766597271],[-0.017124906182289,-0.019489912316203,0.071000277996063],[-0.011708090081811,0.042982254177332,0.0768758431077]],[[0.13294531404972,0.028369935229421,0.041797455400229],[-0.17177098989487,0.033665236085653,0.02151938714087],[0.12679105997086,-0.13375625014305,0.0086131803691387]],[[-0.072560347616673,0.14969955384731,-0.083035431802273],[-0.062374107539654,-0.14831759035587,0.0030138685833663],[0.11642365157604,-0.031352948397398,-0.055188104510307]],[[0.064474031329155,0.032983560115099,-0.038996234536171],[0.020597670227289,0.054181538522243,0.026212029159069],[0.046203784644604,0.018892137333751,0.00029132040799595]],[[0.10481064021587,-0.15925306081772,-0.010875798761845],[0.084563665091991,-0.071401879191399,-0.013904211111367],[0.019836712628603,-0.14711208641529,0.010134645737708]],[[-0.12423332035542,0.089679852128029,0.16714373230934],[0.012477163225412,0.025941822677851,-0.061385463923216],[-0.05394796282053,0.0077232383191586,-0.11306135356426]],[[-0.059626560658216,-0.031346444040537,-0.090036302804947],[-0.088251180946827,-0.011080239899457,0.077618032693863],[-0.050555676221848,-0.0015202544163913,-0.085839912295341]],[[0.14452125132084,0.0090690432116389,-0.14581644535065],[0.041597437113523,-0.10400541126728,-0.1041407585144],[0.039450004696846,-0.097081817686558,-0.032190103083849]],[[-0.1743036955595,-0.059369172900915,0.037917219102383],[-0.050357319414616,-0.00099457206670195,0.016003005206585],[0.027771476656199,0.031831678003073,-0.018407324329019]],[[-0.1329974681139,0.092273995280266,-0.097472444176674],[-0.018193462863564,0.0068429508246481,-0.096897877752781],[0.29204487800598,-0.081878557801247,-0.088894352316856]],[[0.025792419910431,0.043557338416576,0.014483182691038],[-0.058172281831503,0.16049638390541,-0.074715822935104],[0.077463559806347,0.066643096506596,-0.0023599171545357]],[[-0.093390181660652,-0.014388394542038,0.016747226938605],[-0.042705029249191,0.04631644114852,-0.083126656711102],[0.028972003608942,-0.08409583568573,0.0094867758452892]],[[-0.069508463144302,-0.091083467006683,0.034241814166307],[-0.068097829818726,-0.015382381156087,0.073277249932289],[0.032784983515739,0.022407071664929,0.069080837070942]],[[-0.11761076748371,0.066892050206661,-0.016498859971762],[-0.031011048704386,-0.036819338798523,-0.11593583226204],[0.030308673158288,0.1574659794569,0.20463016629219]],[[-0.034611895680428,-0.057331576943398,-0.052332475781441],[0.11249728500843,-0.042422004044056,-0.084573045372963],[-0.055544212460518,0.072790339589119,0.03653747215867]],[[0.024238171055913,-0.024409139528871,0.074431605637074],[-0.085696324706078,-0.036327019333839,0.0077517083846033],[0.053558759391308,0.035530038177967,0.043094661086798]],[[-0.017409902065992,-0.14066770672798,-0.055461920797825],[-0.015426499769092,0.023825256153941,0.12062610685825],[0.011457443237305,-0.03665304929018,0.039985865354538]],[[0.022932404652238,0.092464201152325,0.017731843516231],[0.014310874044895,0.01684052683413,-0.24315994977951],[0.047695495188236,-0.16517390310764,0.22195166349411]],[[-0.041071005165577,0.0096505153924227,0.018740721046925],[-0.11822032183409,-0.03923512622714,0.14378933608532],[0.099796682596207,0.011100061237812,0.057630676776171]],[[0.24277696013451,0.068671800196171,0.01025983504951],[-0.019760875031352,-0.018767641857266,-0.02647751942277],[-0.011722126975656,0.030427493155003,0.042115461081266]],[[0.097104594111443,-0.0072955405339599,-0.069268986582756],[-0.073878571391106,-0.055332835763693,0.037475448101759],[-0.027191933244467,0.038295857608318,-0.098213769495487]],[[-0.0059935073368251,0.015075096860528,0.072290323674679],[0.059714775532484,0.0047293244861066,0.074347414076328],[-0.01608113758266,-0.054454937577248,0.26641008257866]],[[0.19402776658535,-0.14500145614147,0.12214639782906],[0.0249700602144,0.01254424918443,0.09379681199789],[-0.043376546353102,0.053256534039974,0.071621909737587]],[[-0.055387567728758,-0.050605826079845,0.08033511787653],[0.10722566395998,0.073252774775028,0.071604162454605],[-0.08415549248457,-0.067267194390297,0.084367036819458]],[[-0.12316814810038,-0.01124994084239,0.039317108690739],[0.023367060348392,0.077556483447552,0.06620667129755],[0.15988026559353,-0.038401294499636,-0.015000183135271]],[[0.014223941601813,0.20758448541164,0.0021301887463778],[0.1294027119875,0.04512394964695,-0.0013522026129067],[0.023936459794641,0.043822389096022,-0.040140483528376]],[[0.058889158070087,-0.023304928094149,0.018157094717026],[0.00042583138565533,0.037955261766911,0.093218825757504],[0.10432333499193,-0.021395597606897,0.083799496293068]],[[0.16310730576515,-0.069277502596378,-0.059273567050695],[0.049755576997995,-0.067076794803143,0.026577243581414],[-0.1233024969697,-0.029543833807111,0.0495880022645]],[[0.067307472229004,-0.050157304853201,0.039014458656311],[0.1999299377203,-0.088482961058617,-0.075235433876514],[-0.17822515964508,-0.039289522916079,0.005466946400702]],[[0.0229871571064,-0.062578029930592,0.030857542529702],[0.03666527569294,0.1108221039176,0.063707925379276],[-0.031224166974425,-0.11320759356022,-0.097396329045296]],[[0.13069891929626,-0.07027380913496,-0.1100624576211],[-0.11803208291531,0.056819934397936,0.020997965708375],[0.0088817244395614,-0.22446022927761,-0.015432541258633]],[[0.0083793886005878,-0.023841999471188,-0.10301508009434],[-0.052281092852354,-0.15531416237354,-0.09622997790575],[0.039021547883749,-0.023734347894788,-0.014993576332927]],[[-0.044788707047701,0.10816189646721,0.05784871801734],[0.059068221598864,-0.15329696238041,-0.0016914765583351],[-0.11044547706842,0.017585482448339,-0.036631368100643]],[[0.054127138108015,-0.10715744644403,0.040899354964495],[-0.084588795900345,0.12007166445255,0.040052283555269],[-0.023764612153172,0.059934411197901,-0.22570046782494]],[[0.095598913729191,0.022407682612538,-0.067517422139645],[-0.024924915283918,-0.034887295216322,-0.0090917786583304],[0.047152753919363,-0.1125995516777,-0.25957515835762]],[[0.0069180843420327,0.091052286326885,0.023801704868674],[-0.053304314613342,0.099668703973293,0.050284016877413],[-0.047449268400669,0.092119768261909,0.028758836910129]],[[-0.011248040944338,0.0033282947260886,0.12388085573912],[0.059328813105822,-0.024838315322995,-0.10789852589369],[0.011355216614902,0.059951715171337,0.093654662370682]],[[-0.17803147435188,-0.061657436192036,0.11034938693047],[0.02558028139174,0.013482029549778,0.088450543582439],[0.094716623425484,0.016203634440899,-0.016738777980208]],[[0.068750686943531,-0.11636812239885,0.11109352111816],[-0.19018147885799,0.17850574851036,-0.072208531200886],[-0.0061680767685175,-0.11634261906147,0.018375281244516]],[[-0.01680600643158,-0.067210957407951,-0.049308843910694],[-0.12515060603619,-0.11551310122013,0.010942962951958],[0.22668823599815,0.085350945591927,-0.032526157796383]],[[-0.12672194838524,0.033285785466433,-0.032055899500847],[0.12232378870249,-0.19118554890156,-0.12087035924196],[-0.0043658153153956,0.079674169421196,-0.024963514879346]],[[-0.10176361352205,0.052975300699472,-0.077179662883282],[0.070791326463223,-0.016406403854489,0.12938399612904],[0.069962427020073,0.055698275566101,-0.0086162211373448]],[[0.028299359604716,0.020575448870659,-0.15672940015793],[0.030997391790152,0.091341555118561,-0.010758486576378],[-0.03853702917695,0.012043195776641,-0.020936606451869]],[[-0.030030809342861,0.034969888627529,-0.053357806056738],[0.11130690574646,-0.032670963555574,0.018918823450804],[0.050099510699511,0.11874142289162,0.029045570641756]],[[0.046435084193945,0.045659188181162,-0.13329549133778],[0.095905087888241,0.052965153008699,-0.081674754619598],[-0.029029067605734,-0.074504688382149,-0.0014813682064414]],[[-0.01097197830677,0.043976698070765,-0.073934637010098],[0.088440127670765,-0.022119933739305,0.03103606775403],[0.032374948263168,0.086941614747047,0.033003140240908]],[[0.020350845530629,0.010483974590898,0.00090536952484399],[-0.010746416635811,0.019297355785966,0.14338891208172],[-0.1162299066782,0.13851940631866,0.018656061962247]],[[-0.042072989046574,-0.038728978484869,0.071002915501595],[-0.061847716569901,-0.026571020483971,-0.044100135564804],[-0.098540768027306,-0.027430780231953,0.017935140058398]],[[0.0060703116469085,0.052579917013645,0.045157082378864],[0.012904672883451,0.13239571452141,0.014113621786237],[-0.18899340927601,-0.20839166641235,-0.0092775337398052]],[[-0.0044485577382147,0.072178490459919,0.014207441359758],[0.024994494393468,0.063047751784325,0.010381234809756],[0.04024314135313,-0.046128936111927,-0.052086982876062]],[[-0.03886317461729,-0.1293630450964,0.11596287041903],[0.031673341989517,0.003180353436619,-0.024130636826158],[-0.036232721060514,-0.13158915936947,0.038084477186203]],[[-0.025976922363043,0.041572961956263,0.0069657657295465],[-0.012089614756405,0.021677019074559,0.15516881644726],[0.013523277826607,0.037279903888702,0.021827720105648]],[[0.023410327732563,-0.029248354956508,0.050860967487097],[-0.11189050227404,0.041158586740494,0.10097776353359],[0.0061641889624298,0.043674021959305,-0.068749241530895]],[[-0.011882029473782,-0.11137939244509,-0.070973694324493],[0.065237149596214,0.12369421869516,-0.085872732102871],[0.12907990813255,0.079772979021072,-0.035065229982138]],[[-0.084076419472694,-0.0065811108797789,-0.051519419997931],[-0.062247324734926,0.11697219312191,0.12954267859459],[0.014160647988319,-0.11631911993027,0.087574787437916]],[[0.10145246982574,-0.11796110123396,-0.023797834292054],[-0.074939496815205,0.041684571653605,0.016851099207997],[-0.013693619519472,0.0055505223572254,0.092789009213448]],[[0.080429345369339,-0.0763765797019,-0.030541192740202],[-0.046736728399992,0.032350685447454,0.091453224420547],[-0.028952715918422,0.032997138798237,-0.043061468750238]],[[-0.033110313117504,-0.095091961324215,0.095114029943943],[-0.09274385124445,0.026101130992174,-0.20788438618183],[0.17239040136337,0.025196559727192,0.1430184841156]],[[-0.022766511887312,-0.019945399835706,0.027428943663836],[-0.092436254024506,-0.081933416426182,0.028202369809151],[0.036071993410587,0.039507325738668,0.051029786467552]],[[0.076964527368546,-0.048870034515858,0.061424147337675],[0.064600251615047,-0.0086598424240947,-0.062802486121655],[-0.014736957848072,0.0041266735643148,-0.062404740601778]],[[0.028701515868306,-0.014092123135924,0.048356924206018],[-0.039247874170542,-0.19094900786877,0.057642124593258],[0.046140640974045,-0.050346530973911,0.053134992718697]],[[-0.10038308054209,0.021053683012724,0.068512938916683],[-0.050816025584936,-0.0016762994928285,0.014880599454045],[0.04367146641016,0.036946337670088,-0.021828265860677]],[[-0.024737855419517,0.050511293113232,0.10589274764061],[0.020903524011374,0.05101965367794,0.057181306183338],[-0.12614238262177,0.035083465278149,0.0008628002833575]],[[0.10103329271078,-0.14372985064983,-0.13694520294666],[-0.094935491681099,-0.092442087829113,0.1048160046339],[0.060126483440399,0.045532058924437,0.010162287391722]],[[-0.057041008025408,-0.15664620697498,-0.13465616106987],[0.00045205585774966,-0.022538043558598,-0.062360890209675],[0.032002005726099,0.062120288610458,0.080154649913311]],[[-0.16689023375511,0.07009569555521,-0.082434475421906],[0.14186123013496,-0.044038485735655,0.062782965600491],[0.033778604120016,0.025120360776782,0.022750830277801]],[[0.053026281297207,0.065588667988777,-0.062720321118832],[0.18350993096828,-0.052713975310326,0.058046817779541],[-0.17524157464504,-0.10443340241909,0.017909968271852]],[[-0.030248001217842,-0.046866826713085,-0.041547562927008],[0.10290956497192,0.15222819149494,-0.030804876238108],[0.040976863354445,-0.12493317574263,0.15280224382877]],[[0.047384589910507,0.045523647218943,-0.052041854709387],[0.019235927611589,0.095681220293045,-0.00036195205757394],[0.14855241775513,0.076773956418037,0.046530600637197]],[[-0.080965593457222,-0.068393655121326,-0.0090131377801299],[-0.035963490605354,0.015293835662305,0.075674906373024],[0.035031996667385,-0.063184060156345,0.067142099142075]],[[-0.030402116477489,-0.029634622856975,0.0007717547705397],[-0.032248485833406,-0.058897845447063,-0.076673284173012],[-0.010833906941116,-0.068637162446976,0.015669079497457]],[[-0.096602544188499,-0.043932680040598,-0.073760658502579],[-0.092968888580799,0.020885780453682,-0.0188058745116],[-0.027910260483623,-0.0034099142067134,-0.10416723042727]],[[-0.10214877873659,0.0061289966106415,-0.023053087294102],[-0.081248506903648,0.030060959979892,0.092132374644279],[0.0063913087360561,0.020172536373138,0.012063018977642]],[[-0.068278253078461,-0.11400356888771,0.079387053847313],[0.070527873933315,0.21360132098198,-0.097014300525188],[-0.19594441354275,0.032253745943308,0.17495326697826]],[[0.016149302944541,-0.077604331076145,-0.0066997236572206],[-0.087487675249577,0.093410111963749,0.13270618021488],[0.028578236699104,0.036734458059072,-0.064299888908863]],[[0.11016619950533,-0.052814401686192,0.037040788680315],[0.044721856713295,-0.092873327434063,-0.0054902737028897],[-0.13100881874561,0.093265809118748,0.049085009843111]],[[-0.11859545856714,-0.083928808569908,-0.041788212954998],[0.0002542365109548,0.012166623026133,0.045473895967007],[0.067204490303993,0.10231599211693,0.15983445942402]],[[-0.070633076131344,-0.021227363497019,0.010505037382245],[-0.033766955137253,-0.063582248985767,0.24539548158646],[0.073464572429657,-0.047842405736446,0.0030912880320102]],[[0.12493895739317,-0.026533840224147,-0.064082026481628],[-0.018650339916348,-0.20778378844261,0.19248120486736],[0.013369568623602,0.068699672818184,-0.058821957558393]],[[-0.097108334302902,-0.015804262831807,-0.011517672799528],[-0.098299793899059,0.1228374093771,-0.11441579461098],[0.001151803531684,0.014176668599248,0.078805096447468]],[[-0.017744470387697,0.01013811212033,0.083674699068069],[-0.066437624394894,0.16832971572876,-0.022083563730121],[-0.018802704289556,-0.027307590469718,0.0088762026280165]],[[-0.031119924038649,-0.022050224244595,0.01519916113466],[-0.028651567175984,-0.12385784089565,-0.054455004632473],[-0.012048305012286,0.062758445739746,-0.028391493484378]],[[0.0031280603725463,0.062742382287979,0.012631681747735],[0.02743817307055,-0.0085568390786648,0.051489904522896],[-0.053595758974552,-0.025390837341547,-0.076237298548222]],[[-0.0097412196919322,0.036771290004253,0.020685696974397],[-0.071791298687458,0.038457177579403,0.0090989088639617],[-0.010476459749043,0.012997756712139,-0.10181963443756]],[[-0.058027509599924,0.072653979063034,-0.061618290841579],[-0.046877443790436,0.040680330246687,0.0091693848371506],[0.10235495120287,0.0043246080167592,0.051409110426903]],[[-0.0091516701504588,0.1353926807642,-0.004129352979362],[0.010110621340573,-0.017046973109245,-0.13327006995678],[0.010747049935162,0.0024495960678905,-0.10340487211943]],[[0.050139296799898,-0.068689592182636,-0.032939933240414],[-0.025673136115074,0.12959714233875,0.062189843505621],[0.024538934230804,0.023876814171672,-0.1034222766757]],[[0.032145846635103,-0.14737898111343,0.099570669233799],[-0.07566674053669,0.16045217216015,-0.16558116674423],[0.04398163408041,-0.0057681505568326,-0.027569700032473]],[[-0.049233186990023,0.048969950526953,-0.0013520017964765],[-0.010421013459563,-0.14127476513386,0.087675303220749],[0.085071578621864,-0.0546939894557,0.046646170318127]],[[-0.025653230026364,0.26865521073341,-0.069031111896038],[0.097369886934757,0.013236659578979,0.099547021090984],[0.019133219495416,-0.11569484323263,-0.0039045484736562]],[[0.061561562120914,0.0072273006662726,-0.029706159606576],[0.074277177453041,-0.0034449929371476,-0.021840926259756],[-0.055847082287073,-0.0078783594071865,0.011785868555307]],[[0.044781979173422,-0.04239135608077,-0.056968115270138],[0.0040102377533913,0.052191521972418,-0.040521413087845],[0.1604181677103,0.0068746577017009,-0.040759135037661]],[[-0.034853260964155,0.15448759496212,-0.029270766302943],[0.10523111373186,-0.10341089218855,0.075499027967453],[0.025491405278444,0.049667838960886,0.050259809941053]],[[-0.046915993094444,0.02990155108273,0.0091282166540623],[-0.041546225547791,0.018309494480491,0.072520978748798],[0.013912217691541,0.14191211760044,-0.099719852209091]],[[-0.052324675023556,0.066905952990055,-0.10694577544928],[-0.046851467341185,0.0090057207271457,0.103629514575],[0.062590025365353,-0.0090830558910966,-0.043040677905083]],[[0.09092989563942,-0.026904668658972,-0.074890695512295],[-0.086787268519402,0.10883618146181,-0.050507944077253],[-0.09003696590662,-0.0048930747434497,0.072434529662132]],[[0.10651300102472,0.093058466911316,0.064602933824062],[0.013427307829261,-0.065496623516083,-0.080414861440659],[-0.0092733316123486,0.088216960430145,0.095916055142879]],[[-0.029179835692048,0.0073244599625468,0.11369653046131],[0.055822048336267,0.022988207638264,-0.026185182854533],[0.08562558144331,0.011466579511762,0.10169051587582]],[[-0.042456939816475,-0.051285054534674,0.077761754393578],[-0.013943360187113,-0.047605510801077,0.0055505577474833],[0.035798221826553,-0.053167570382357,-0.006143145263195]],[[-0.029567804187536,-0.0076977401040494,-0.13988883793354],[-0.028665447607636,-0.10818838328123,0.0081591485068202],[0.043675046414137,0.027275003492832,0.072333820164204]],[[0.020243236795068,-0.07245260477066,-0.049164559692144],[-0.096630819141865,-0.10398709774017,0.018295077607036],[-0.060223575681448,0.015602711588144,0.077650740742683]],[[-0.03313884139061,0.018599091097713,-0.019157830625772],[0.080728679895401,-0.049269340932369,-0.031557276844978],[0.065938837826252,0.0042869769968092,-0.12193051725626]],[[-0.083889931440353,0.036229517310858,-0.096716694533825],[0.11831624060869,0.0073894988745451,-0.017944347113371],[0.032835219055414,-0.03256094828248,0.08283082395792]],[[0.074738122522831,-0.039761748164892,0.058266747742891],[-0.015213473699987,-0.024102814495564,-0.093289643526077],[0.08108888566494,-0.011172002181411,0.041643179953098]],[[-0.050637196749449,0.014431240037084,-0.007157466839999],[-0.035237956792116,0.022383939474821,0.039376445114613],[0.019363228231668,0.073272831737995,0.097360715270042]],[[0.056369166821241,0.039873827248812,-0.023856606334448],[-0.064408630132675,0.014049148187041,-0.0032384335063398],[0.0574448145926,-0.040511760860682,-0.027790056541562]],[[-0.018886156380177,0.12751547992229,-0.13234253227711],[0.19809260964394,-0.0054913638159633,0.030223425477743],[-0.040898181498051,-0.050110962241888,-0.015730520710349]]],[[[0.0033487263135612,-0.01280355732888,-0.1736930757761],[0.090245202183723,-0.096852973103523,0.012949613854289],[-0.1160953938961,-0.053188771009445,0.12585727870464]],[[0.023936102166772,0.10500981658697,-0.12301304191351],[0.10970034450293,-0.097365215420723,-0.026697417721152],[0.037349279969931,0.005345837213099,-0.057943657040596]],[[0.028416560962796,-0.011329366825521,0.092267014086246],[0.013815083540976,0.24711403250694,-0.19443762302399],[0.011579945683479,-0.044047795236111,0.069768130779266]],[[0.017995465546846,0.014963823370636,-0.012679984793067],[-0.080537974834442,0.084746681153774,-0.042092721909285],[0.11650707572699,-0.026336090639234,0.081582181155682]],[[-0.15614023804665,0.12888488173485,0.056644961237907],[0.078473471105099,0.028193587437272,0.05446582660079],[-0.059516742825508,0.037262544035912,-0.15543955564499]],[[0.0095377238467336,0.11904244124889,-0.040304232388735],[-0.071883022785187,-0.0073816650547087,-0.017900366336107],[0.13277953863144,0.056387633085251,0.088336452841759]],[[-0.010879475623369,-0.018533179536462,0.076354987919331],[-0.027182703837752,0.083490706980228,0.052296031266451],[-0.085773900151253,0.058658495545387,0.035836469382048]],[[-0.030127415433526,0.099545352160931,-0.13104167580605],[0.086676210165024,0.063416294753551,-0.069977022707462],[-0.054112877696753,-0.0085591375827789,0.057018503546715]],[[0.074072100222111,0.019822143018246,0.023659765720367],[-0.063993848860264,-0.14854730665684,-0.026532599702477],[0.069877162575722,0.01608132570982,0.15491469204426]],[[0.10496327280998,0.040243413299322,0.093493044376373],[0.01587819121778,0.086659334599972,0.11660244315863],[0.0020947768352926,0.050629112869501,0.11574563384056]],[[0.05365464836359,0.049941260367632,0.099392935633659],[0.065452009439468,-0.018763789907098,0.071137495338917],[-0.043714426457882,-0.11164940148592,-0.056937444955111]],[[0.13660095632076,0.018750213086605,-0.033015660941601],[-0.024355778470635,-0.063502952456474,0.043534215539694],[0.053841460496187,0.092184379696846,-0.011384427547455]],[[0.036969043314457,-0.045088678598404,-0.085068121552467],[0.057729054242373,0.026510192081332,-0.015897130593657],[-0.0052692098543048,0.020420650020242,0.14763858914375]],[[-0.038668606430292,-0.0038850263226777,0.08233992010355],[0.08927857875824,0.018222635611892,0.13816739618778],[-0.060448002070189,0.089180827140808,0.068905770778656]],[[0.16374059021473,0.027060804888606,0.24683332443237],[0.10991042852402,0.14323152601719,0.060029655694962],[0.18243484199047,0.14845059812069,0.068007722496986]],[[-0.073153354227543,-0.0050487197004259,-0.014929940924048],[0.030792433768511,0.052934743463993,0.05827634036541],[0.10087998956442,0.01953318528831,0.0274149607867]],[[0.03395938873291,-0.028691679239273,0.042704727500677],[-0.011781143955886,-0.0038591707125306,-0.031683638691902],[0.0093869864940643,0.03557538241148,0.087912730872631]],[[0.046833537518978,0.045462962239981,-0.083015114068985],[-0.00126005965285,0.022765923291445,-0.044279210269451],[-0.10307487845421,-0.00077465933281928,-0.098079055547714]],[[0.033426575362682,0.0044187493622303,0.031431075185537],[-0.0090744029730558,-0.095513820648193,-0.12091893702745],[-0.083313845098019,-0.10896602272987,-0.077592343091965]],[[0.037675969302654,0.088789686560631,-0.038487389683723],[-0.0097223659977317,-0.024137636646628,-0.02979277446866],[0.066184341907501,0.1189871430397,0.067859455943108]],[[0.00334477215074,-0.004583234898746,-0.08640805631876],[0.081880412995815,0.023388288915157,-0.040404606610537],[-0.056780744343996,-0.022489469498396,-0.080460220575333]],[[0.024933155626059,0.13112516701221,0.0094349384307861],[0.023816553875804,0.042379427701235,-0.086307510733604],[0.10596097260714,0.027356836944818,-0.0052401660941541]],[[-0.12514923512936,-0.037400685250759,0.094033397734165],[0.12846967577934,-0.018223455175757,-0.029581720009446],[-0.091839917004108,0.047994095832109,-0.04329639300704]],[[-0.015000686049461,-0.012620157562196,0.10681702941656],[0.018575601279736,-0.096748471260071,-0.029771717265248],[0.019460819661617,-0.1416938751936,0.032315097749233]],[[0.065272144973278,-0.012121428735554,0.0066725509241223],[0.031467452645302,0.03325804695487,0.01900383643806],[-0.045254468917847,0.025819787755609,0.0096788620576262]],[[-0.087077245116234,-0.0078927418217063,0.018895594403148],[0.057603519409895,0.096589155495167,0.015742341056466],[0.084686644375324,0.050278674811125,-0.10269396007061]],[[0.10327187925577,0.1143356487155,0.0059065059758723],[-0.052714690566063,0.02134345844388,0.053513143211603],[-0.18458659946918,0.022707061842084,-0.071822233498096]],[[0.081064000725746,0.072714485228062,-0.073071263730526],[0.0010769837535918,-0.026849869638681,-0.097018085420132],[-0.034143310040236,-0.022100817412138,-0.070177055895329]],[[0.065029606223106,0.04446342214942,0.11152556538582],[-0.023802664130926,-0.023859748616815,0.03519543632865],[0.026238879188895,-0.010938826017082,-0.036366902291775]],[[0.010581273585558,0.15797905623913,0.0077158170752227],[0.05814141407609,0.042630240321159,-0.051568910479546],[0.089912369847298,0.090419046580791,0.012143238447607]],[[0.010373009368777,-0.06758575886488,-0.036790382117033],[0.067251183092594,0.055402353405952,-0.052823267877102],[0.0045982873998582,0.027925813570619,-0.077136605978012]],[[-0.0082800211384892,0.061956346035004,0.022806268185377],[-0.080270551145077,-0.031623285263777,-0.021547731012106],[-0.07709514349699,0.010811945423484,-0.044458463788033]],[[-0.0081608481705189,0.041136641055346,0.0088875247165561],[-0.0010453583672643,-0.0098241353407502,-0.0021336548961699],[-0.051819987595081,-0.082452520728111,-0.029711293056607]],[[-0.14401319622993,-0.054627887904644,-0.039222400635481],[-0.0012492887908593,0.0030519508291036,-0.017100412398577],[0.079804442822933,0.049797091633081,-0.068389877676964]],[[-0.0067530926316977,0.004974527284503,-0.018235208466649],[0.13293364644051,-0.034251846373081,0.083844684064388],[-0.043883040547371,0.052399922162294,0.022515658289194]],[[-0.10339841991663,-0.053226038813591,-0.0090839918702841],[-0.065095260739326,-0.10584887862206,0.03201711550355],[0.098658859729767,-0.10069553554058,-0.11156722903252]],[[-0.11958092451096,-0.063013389706612,0.16240558028221],[-0.095121398568153,0.017822483554482,0.038073502480984],[0.086078315973282,0.11418190598488,0.03474323824048]],[[0.049421217292547,0.011388112790883,-0.031218165531754],[-0.14653132855892,-0.10353557765484,0.20500104129314],[-0.10098285973072,0.044171456247568,-0.061071220785379]],[[0.04146246612072,0.0037553245201707,-0.067578814923763],[-0.0041244267486036,-0.058716230094433,-0.085127651691437],[-0.0066060642711818,0.032806318253279,-0.0007037243922241]],[[0.026753285899758,0.010729621164501,-0.17158555984497],[0.34984022378922,-0.06449880450964,0.005034243222326],[0.066769987344742,0.046729661524296,0.07882434129715]],[[-0.03209176287055,-0.022888438776135,0.027122016996145],[0.059590253978968,0.043956395238638,0.060337603092194],[-0.14651501178741,-0.043531686067581,0.1052778288722]],[[-0.11979845166206,-0.0018075334373862,0.0087174605578184],[0.15558536350727,-0.10941781848669,0.0088895540684462],[-0.055665761232376,-0.021211344748735,-0.0029314889106899]],[[0.015236726030707,0.0026620600838214,0.027605628594756],[-0.036059740930796,0.043025512248278,0.23475132882595],[0.12913620471954,0.11866203695536,0.020709423348308]],[[-0.012760100886226,-0.10727042704821,0.018773647025228],[-0.020137973129749,0.11613208055496,-0.038150317966938],[-0.014087106101215,0.027838964015245,-0.035493988543749]],[[-0.022284077480435,0.017483454197645,0.013367997482419],[-0.069531239569187,0.039723318070173,0.030808482319117],[0.0018190041882917,-0.040941592305899,-0.049328256398439]],[[-0.081712618470192,0.0013506329851225,-0.23470579087734],[0.081209301948547,-0.10380105674267,0.035656403750181],[0.033432316035032,-0.043917812407017,0.0051594171673059]],[[0.010166890919209,-0.048714987933636,0.027926487848163],[-0.016651039943099,0.044040977954865,0.077774733304977],[-0.056111577898264,0.004765379242599,0.01507736556232]],[[0.10757488757372,-0.081093139946461,-0.0041315122507513],[-0.079196579754353,0.087227270007133,-0.082537263631821],[0.021477403119206,-0.027432419359684,-0.06219781562686]],[[0.065546579658985,-0.012390563264489,-0.071549892425537],[-0.057364784181118,0.029484426602721,0.12765607237816],[-0.08772362023592,-0.012655196711421,-0.04047379642725]],[[0.002120929537341,-0.075552269816399,-0.0062363953329623],[-0.054136026650667,0.011489152908325,-0.16414603590965],[0.020378652960062,-0.12340916693211,-0.013652101159096]],[[-0.041530095040798,0.0055707925930619,-0.039549052715302],[-0.016916463151574,-0.038280177861452,0.023242922499776],[-0.033716470003128,-0.050721675157547,-0.058667074888945]],[[0.03565976023674,0.072377689182758,0.093451023101807],[-0.03263470903039,-0.0399249792099,0.044718146324158],[-0.05644466727972,0.018250152468681,-0.0098351882770658]],[[0.16995534300804,0.27164068818092,0.31273022294044],[0.083090528845787,-0.12616363167763,-0.023518526926637],[-0.035302091389894,0.06545452773571,0.17210359871387]],[[-0.076106809079647,0.022832570597529,0.071036674082279],[-0.090150728821754,-0.067340150475502,0.090112037956715],[0.10641296952963,0.028492406010628,-0.084574423730373]],[[0.083269238471985,-0.053417876362801,-0.090349517762661],[-0.074525229632854,0.14735712110996,-0.054932691156864],[-0.0049578133039176,0.17207615077496,-0.042678080499172]],[[0.02299877256155,-0.018855299800634,-0.11737833172083],[-0.063545010983944,-0.002651073038578,-0.043327253311872],[-0.0060338950715959,0.016411192715168,-0.00070768973091617]],[[0.14809373021126,0.097474865615368,0.030301235616207],[-0.0093524558469653,0.067835055291653,-0.014400217682123],[-0.1711635440588,0.024422472342849,-0.010373036377132]],[[-0.0015012070070952,-0.033680468797684,-0.096376515924931],[0.049235306680202,0.10204889625311,0.076417826116085],[-0.01170184276998,-0.1093301102519,-0.054219707846642]],[[0.046688500791788,0.060153987258673,0.12454717606306],[-0.0010692559881136,-0.1312400251627,-0.034771040081978],[0.017528243362904,0.043206557631493,-0.01916210912168]],[[0.020499618723989,0.081908576190472,-0.040465913712978],[-0.098768837749958,-0.13007122278214,-0.033513110131025],[0.042283430695534,-0.040993873029947,0.092619225382805]],[[-0.026644486933947,-0.085041522979736,-0.066650159657001],[-0.045558106154203,-0.062539875507355,0.10429282486439],[0.047163777053356,0.067956820130348,-0.017524650320411]],[[0.10029311478138,-0.064441740512848,-0.024339886382222],[0.086769364774227,-0.12991631031036,0.049436986446381],[-0.024050889536738,-0.068024136126041,-0.011316733434796]],[[0.067019879817963,-0.11979100108147,0.012064339593053],[0.002565951552242,-0.046668585389853,0.0086555918678641],[0.02674606628716,0.0087694060057402,0.058821968734264]],[[0.020687630400062,0.12416311353445,-0.15651096403599],[0.065147913992405,0.0075395815074444,0.17148149013519],[-0.12371701002121,0.020400457084179,0.13724198937416]],[[-0.040712706744671,-0.025842659175396,0.0062432596459985],[0.035848949104548,-0.073526084423065,-0.04217941313982],[0.064811229705811,0.14938648045063,0.019374618306756]],[[-0.047834925353527,-0.11233253031969,-0.077142111957073],[0.072902321815491,-0.036097522825003,-0.027724979445338],[0.060784291476011,0.060451291501522,0.036115378141403]],[[0.14268082380295,0.070096179842949,0.052853461354971],[0.060566104948521,0.058200117200613,-0.052742023020983],[-0.035111874341965,0.024200627580285,-0.05756725743413]],[[-0.098195724189281,-0.086929365992546,-0.10081322491169],[-0.0040777106769383,-0.17352749407291,0.069942444562912],[0.12512877583504,-0.10920926183462,0.18120974302292]],[[0.021319037303329,-0.023552699014544,-0.022855754941702],[-0.043027151376009,0.060435075312853,-0.056808058172464],[-0.096469856798649,-0.0035631009377539,0.08177162706852]],[[0.014359108172357,0.034319501370192,0.065121501684189],[-0.0082626426592469,0.0065875449217856,0.052117235958576],[-0.013395549729466,-0.055778011679649,0.11002641916275]],[[0.030381759628654,0.032641269266605,-0.13526719808578],[-0.020707020536065,-0.22110606729984,-0.096534550189972],[-0.16074272990227,-0.0019820439629257,-0.018416296690702]],[[0.10184344649315,0.13720156252384,0.14355197548866],[0.085565991699696,-0.092114336788654,0.041726656258106],[0.031555712223053,-0.030635977163911,-0.019617261365056]],[[0.062316957861185,0.018244726583362,0.00088422041153535],[0.079640358686447,-0.0047733783721924,0.038458213210106],[-0.020996859297156,0.020343896001577,0.037176609039307]],[[-0.068998657166958,-0.033643417060375,0.042814198881388],[0.11891417950392,0.058044575154781,-0.081041283905506],[0.059978809207678,-0.14562802016735,0.0043925046920776]],[[-0.057379353791475,0.017635243013501,0.10959845036268],[-0.017491532489657,-0.048584420233965,0.19691576063633],[-0.007803094573319,-0.03584761172533,-0.024724060669541]],[[-0.032623525708914,-0.047153610736132,0.00022430729586631],[0.05733285099268,0.22212041914463,0.15124550461769],[-0.17152278125286,-0.082797817885876,-0.043307520449162]],[[-0.0041947928257287,-0.11223189532757,-0.24551898241043],[0.10005227476358,0.073791429400444,0.213966101408],[-0.43962776660919,-0.027867754921317,0.073498271405697]],[[-0.080822475254536,-0.056586876511574,-0.026699943467975],[-0.0046334145590663,-0.079266726970673,-0.038638863712549],[-0.026039419695735,0.05698299780488,0.015766225755215]],[[-0.087156012654305,-0.17584259808064,0.051601432263851],[0.087068066000938,-0.019026555120945,-0.047215070575476],[0.15939810872078,0.015962347388268,-0.07125435769558]],[[-0.051264312118292,0.010975639335811,0.01341912522912],[-0.047789081931114,0.021505046635866,-0.074246563017368],[0.0011164144380018,0.046589035540819,-0.0035448658745736]],[[-0.10659705102444,0.052692741155624,0.08529756963253],[-0.015315872617066,-0.016857799142599,-0.0085116177797318],[-0.063838243484497,-0.059342034161091,0.17786592245102]],[[0.034160900861025,0.068686559796333,-0.20889723300934],[0.023750806227326,-0.013764549046755,0.055179808288813],[-0.010024638846517,0.017158566042781,0.00093804491916671]],[[0.015210662037134,0.088931545615196,-0.15979917347431],[0.029795745387673,-0.074731029570103,0.088381305336952],[0.10167708992958,-0.038575023412704,0.058955200016499]],[[-0.049506209790707,0.13237741589546,0.039410099387169],[-0.098110161721706,-0.053084954619408,-0.045992195606232],[0.010521850548685,-0.074454911053181,-0.0068283542059362]],[[0.078568644821644,-0.0011410199804232,-0.018479781225324],[0.0018391872290522,0.067276127636433,0.050960447639227],[0.065373577177525,0.054450694471598,-0.0041807875968516]],[[-0.063529327511787,0.062978304922581,-0.13141848146915],[-0.0025228299200535,0.066849701106548,-0.075715340673923],[0.051886785775423,0.043305695056915,-0.028081076219678]],[[0.00016560751828365,-0.060979127883911,-0.015947833657265],[0.088754162192345,-0.062996976077557,0.13824334740639],[-0.097788989543915,0.020495692268014,-0.018310816958547]],[[-0.0016913852887228,-0.0016310598002747,0.046252343803644],[0.044158343225718,-0.025926496833563,0.019984014332294],[-0.089750595390797,-0.12692905962467,-0.0065399333834648]],[[-0.013810625299811,0.055215589702129,0.025982819497585],[0.07279571890831,-0.054130770266056,-0.1032428368926],[-0.041123747825623,-0.065328672528267,-0.003000212367624]],[[0.070775300264359,-0.11487583070993,0.21190895140171],[-0.12275256216526,0.037559922784567,0.13172277808189],[0.005529054440558,-0.02586299367249,0.15196451544762]],[[-0.00020540259720292,-0.03214243799448,0.0066717439331114],[0.029338631778955,-0.0059339953586459,-0.079684197902679],[0.032930061221123,0.087910547852516,0.010275613516569]],[[-0.13083961606026,-0.009491833858192,-0.088115580379963],[-0.038165021687746,-0.021076817065477,-0.18890047073364],[-0.10679209977388,-0.102305598557,-0.080762021243572]],[[-0.10607566684484,0.051919355988503,0.17765818536282],[0.095899127423763,-0.17116956412792,-0.12186865508556],[0.13193130493164,-0.10139644145966,-0.01514845341444]],[[-0.0873968526721,-0.10558661818504,0.026896955445409],[0.030645031481981,0.067147277295589,0.080867625772953],[0.05121086165309,-0.052914060652256,0.118542060256]],[[-0.00093767896760255,-0.13762898743153,0.029830429702997],[-0.062276795506477,0.09022694081068,-0.055590990930796],[0.11048135906458,0.032920561730862,-0.032092958688736]],[[0.02546246163547,0.027372131124139,0.0051932311616838],[-0.13732178509235,-0.015128779225051,0.12273215502501],[-0.050135981291533,-0.090209931135178,0.037594139575958]],[[0.054662100970745,0.15023165941238,-0.10409308969975],[-0.025188788771629,-0.080015607178211,0.014085525646806],[0.27809450030327,-0.14926213026047,-0.11519907414913]],[[-0.1843004822731,-0.077944211661816,-0.055568132549524],[-0.044900067150593,0.0072862235829234,-0.0056847808882594],[0.017792200669646,0.11586332321167,-0.058482922613621]],[[-0.0027408797759563,0.022176124155521,0.015282709151506],[0.01339597068727,-0.0003221693332307,-0.025454534217715],[0.21314139664173,0.047468192875385,0.043713372200727]],[[0.029138762503862,0.096781983971596,0.097882978618145],[-0.029737299308181,-0.042082827538252,-0.078914396464825],[0.03013750910759,0.1027615442872,-0.010950578376651]],[[0.025175083428621,-0.080913953483105,-0.0045877606607974],[0.044911935925484,0.022186368703842,-0.093390263617039],[-0.031427580863237,0.071213163435459,-0.036883015185595]],[[-0.047164995223284,0.043138168752193,0.0029397399630398],[-0.014283153228462,0.093190610408783,0.048648748546839],[0.021111056208611,0.084870986640453,0.025792948901653]],[[0.1183195412159,-0.010429235175252,0.022703843191266],[-0.020437804982066,0.043873898684978,-0.02725413441658],[-0.031575597822666,-0.089404672384262,-0.14727644622326]],[[-0.05119938775897,0.015376371331513,-0.077428303658962],[-0.11483712494373,-0.011845237575471,-0.080425120890141],[0.013774486258626,-0.048561505973339,0.025311073288321]],[[-0.064543165266514,-0.16244733333588,-0.23875930905342],[0.15887816250324,-0.032418224960566,-0.023615641519427],[0.06867565959692,0.067832827568054,-0.04838851839304]],[[-0.0025647184811532,-0.12397331744432,-0.15572902560234],[0.0054220790043473,0.068996943533421,-0.076245203614235],[-0.12021019309759,-0.026224827393889,-0.058649424463511]],[[0.031700123101473,0.031217413023114,0.058066628873348],[-0.023531187325716,-0.019567184150219,-0.13710778951645],[-0.0036300842184573,-0.0029939019586891,0.1113608777523]],[[-0.14051267504692,-0.070772960782051,-0.23149482905865],[-0.024411603808403,0.059768006205559,-0.10232296586037],[-0.20935790240765,-0.010514013469219,-0.0061192126013339]],[[0.050132572650909,-0.045928407460451,-0.16588349640369],[0.063779219985008,-0.0079914014786482,0.015836985781789],[0.037595178931952,-0.0053003071807325,-0.0082127675414085]],[[0.033303331583738,0.0043170945718884,0.071668766438961],[-0.019092634320259,-0.0045089502818882,-0.056005302816629],[-0.061279218643904,0.043906070291996,-0.0069831763394177]],[[-0.023358453065157,-0.035232655704021,0.001373790553771],[0.015576890669763,-0.0043866923078895,0.017809232696891],[0.026912620291114,-0.023550800979137,0.0045789103023708]],[[0.080871567130089,-0.049899965524673,0.059372425079346],[-0.1590823829174,-0.15036597847939,-0.12593621015549],[-0.012788190506399,-0.0039021987468004,0.040318243205547]],[[-0.015296646393836,0.053982481360435,-0.050077028572559],[0.029303779825568,-0.02060317620635,-0.16589027643204],[-0.035997122526169,0.0040212394669652,0.017239190638065]],[[-0.010796592570841,0.016100540757179,0.0052539245225489],[-0.0034862488973886,-0.026766002178192,-0.04464840516448],[-0.020027492195368,-0.0058939843438566,0.033006642013788]],[[0.0044875368475914,0.14500516653061,-0.0035069005098194],[0.035149853676558,0.1733066290617,-0.081006847321987],[-0.020079381763935,0.076077617704868,-0.054110758006573]],[[-0.10201895982027,-0.019775623455644,-0.013879734091461],[-0.012945882044733,-0.010688940994442,-0.083733752369881],[0.059258628636599,-0.13538394868374,-0.048467930406332]],[[-0.022495836019516,0.15376137197018,0.13841092586517],[-0.25544357299805,0.011049406602979,0.029680915176868],[-0.072260513901711,0.05105908960104,0.077557533979416]],[[0.048363845795393,-0.044721700251102,-0.081534847617149],[0.0097294868901372,-0.061157487332821,0.10402081161737],[0.0012471413938329,0.072006776928902,-0.12754347920418]],[[0.029406163841486,-0.039364885538816,-0.044685363769531],[0.0098530454561114,0.038444492965937,0.018724562600255],[0.098099455237389,-0.029057489708066,0.07891259342432]],[[-0.041651844978333,-0.12378772348166,0.038863211870193],[-0.097496628761292,-0.032204676419497,-0.061964619904757],[-0.030331464484334,0.04044184461236,-0.058893773704767]],[[0.0072398665361106,0.15227437019348,0.029998868703842],[0.10640345513821,0.083593219518661,0.042618155479431],[0.13326096534729,0.04888129234314,-0.083386078476906]],[[-0.012208276428282,0.050049483776093,0.05882403999567],[-0.041961714625359,-0.11605300754309,-0.088824674487114],[0.062098521739244,-0.099500954151154,-0.084584183990955]],[[-0.10958809405565,-0.063201859593391,-0.17384764552116],[-0.023520771414042,0.0088332807645202,-0.1185464411974],[0.061875641345978,-0.014205822721124,0.048673156648874]],[[0.082098744809628,0.050008703023195,-0.011424378491938],[-0.082953490316868,-0.03887277841568,-0.044558480381966],[0.011041946709156,0.052198953926563,0.018912736326456]],[[-0.022219561040401,0.017554791644216,-0.08659802377224],[-0.016617845743895,0.11340768635273,-0.053608108311892],[-0.011292971670628,-0.03418106213212,-0.016930606216192]],[[0.13582901656628,-0.04901222884655,0.087157666683197],[0.04021118953824,0.11764090508223,0.046056553721428],[-0.028985243290663,0.027982100844383,0.053415425121784]],[[0.078156001865864,-0.042908880859613,0.027920225635171],[0.14092072844505,0.051206693053246,0.12543205916882],[0.044467654079199,-0.043040685355663,-0.06277784705162]],[[0.068173684179783,-0.062726922333241,-0.016579268500209],[-0.0026063621044159,-0.0090772258117795,0.03366856649518],[-0.083210133016109,-0.066308058798313,-0.13266508281231]]],[[[-0.021581387147307,-0.096280239522457,0.037393745034933],[0.031113240867853,-0.093301594257355,-0.056118331849575],[-0.016781745478511,-0.072528563439846,-0.036025293171406]],[[-0.003694495651871,0.0063552907668054,-0.018152022734284],[-0.036953620612621,-0.060681950300932,0.015859715640545],[-0.048305511474609,0.047739535570145,-0.13540165126324]],[[0.10728965699673,-0.061163235455751,0.063463933765888],[-0.087548039853573,0.019506210461259,-0.11061751097441],[-0.027666058391333,0.024243550375104,-0.041393779218197]],[[0.03677275031805,-0.01183757930994,-0.054222475737333],[0.059795256704092,-0.048067558556795,0.03500148281455],[-0.02858935110271,0.033227581530809,-0.039836633950472]],[[0.045449674129486,-0.0062662377022207,0.13984145224094],[-0.062599465250969,0.045569781213999,0.041802078485489],[-0.0022871317341924,0.034973826259375,0.0014315138105303]],[[0.0087705655023456,0.10165932029486,0.037615772336721],[0.0092725697904825,0.0080340504646301,0.11698696017265],[0.03094806522131,0.068972386419773,0.021037390455604]],[[0.051227461546659,-0.077450625598431,-0.089338041841984],[-0.022042937576771,0.06716301292181,-0.040012154728174],[-0.083741530776024,0.046105366200209,-0.0293631516397]],[[-0.040275700390339,0.039366971701384,0.0050713615491986],[-0.0077767549082637,0.050357386469841,-0.078234434127808],[-0.043693535029888,-0.068828292191029,0.026217037811875]],[[0.04621247574687,0.073664732277393,0.028284452855587],[-0.0876719430089,-0.037605833262205,-0.097231268882751],[-0.0096272304654121,-0.0043129925616086,-0.016428086906672]],[[-0.01697894744575,0.17248979210854,0.090182967483997],[0.12716610729694,0.16602185368538,0.14887262880802],[0.028349434956908,0.058735866099596,-0.091228380799294]],[[-0.070221327245235,0.041776668280363,-0.0095415292307734],[0.094790801405907,0.094976648688316,0.064199291169643],[0.081790298223495,0.013490845449269,-0.094084054231644]],[[-0.0073469816707075,-0.066965095698833,0.038473285734653],[0.012704127468169,0.012642911635339,0.02290596626699],[0.043505050241947,-0.062979497015476,-0.071048304438591]],[[0.048892609775066,-0.016496863216162,0.063226595520973],[0.040019650012255,0.089148752391338,0.033114392310381],[0.004738959018141,0.008302791044116,0.023000368848443]],[[-0.024160873144865,-0.024795766919851,-0.02939386293292],[0.036359488964081,0.017499804496765,0.05471808090806],[0.05280551686883,-0.039799071848392,-0.068534977734089]],[[0.057074323296547,0.063186764717102,0.088090799748898],[-0.0027233017608523,0.15416963398457,-0.082631073892117],[0.053995821624994,0.043874427676201,0.11964795738459]],[[0.030456379055977,0.029154401272535,-0.0039738523773849],[-0.027002077549696,0.0041924337856472,0.010588033124804],[-0.088463455438614,0.01893856562674,0.029161028563976]],[[-0.022005401551723,0.063485287129879,0.032683335244656],[0.074285581707954,-0.0013914585579187,-0.022006331011653],[0.012466476298869,-0.026930391788483,0.037701312452555]],[[-0.094789244234562,0.018999906256795,0.0097545366734266],[-0.036828402429819,0.11672507971525,-0.02214627340436],[-0.087873339653015,-0.023730149492621,-0.023196240887046]],[[0.049840103834867,0.076196625828743,-0.0039233611896634],[-0.016299160197377,-0.0018047528574243,0.051670279353857],[0.068763099610806,-0.016244700178504,-0.069532327353954]],[[0.029109019786119,-0.054025631397963,-0.034534603357315],[0.0091800959780812,0.03243987634778,0.091106228530407],[0.09561001509428,-0.030298398807645,-0.041773919016123]],[[-0.031357705593109,-0.070675723254681,-0.0611214004457],[0.0035701643209904,0.03700140863657,0.0046249693259597],[0.030099162831903,-0.0042355130426586,0.030742032453418]],[[0.021894261240959,0.02540192566812,0.052789527922869],[0.0728819668293,0.032148696482182,0.075397484004498],[0.066002652049065,0.029564058408141,0.0055900816805661]],[[-0.0049057840369642,-0.038789059966803,-0.029446106404066],[0.038123950362206,0.010690862312913,-0.017010832205415],[0.01478885486722,-0.015018926002085,-0.0065804398618639]],[[0.04604722186923,-0.056548461318016,0.034168545156717],[0.11174319684505,0.036718897521496,0.11036488413811],[-0.055172879248857,0.027502782642841,-0.051341764628887]],[[-0.10039032995701,0.051357306540012,0.026798795908689],[0.046807654201984,0.030039023607969,0.067181691527367],[-0.038602259010077,-0.093746475875378,-0.0089070992544293]],[[0.042300153523684,0.030553476884961,0.042378295212984],[-0.068202808499336,-0.0033993881661445,-0.0030355495400727],[0.030972203239799,0.015343501232564,-0.063249215483665]],[[0.0062145008705556,0.035544943064451,0.087418369948864],[-0.035279061645269,0.074438646435738,0.086656868457794],[0.11508578062057,-0.001198326353915,-0.035977475345135]],[[-0.048807933926582,0.054132789373398,0.06556136906147],[0.045332886278629,-0.055772017687559,-0.026494337245822],[-0.0031112709548324,-0.016585184261203,-0.052812311798334]],[[-0.0078549766913056,-0.024854553863406,0.010709569789469],[0.028559975326061,0.10385971516371,-0.0017061929684132],[0.046140503138304,0.075882792472839,0.045004561543465]],[[0.067617014050484,-0.004877938888967,0.073579706251621],[0.042467299848795,0.021530300378799,-0.04694351926446],[-0.049690656363964,-0.13232144713402,0.047706328332424]],[[0.002171749714762,0.048500031232834,-0.042287472635508],[0.10699821263552,0.020235491916537,-0.027808178216219],[0.11982871592045,-0.033519137650728,-0.04837703704834]],[[0.00073985976632684,-0.011446564458311,-0.021884497255087],[-0.012957091443241,-0.028350794687867,0.028696862980723],[0.060866959393024,-0.021509205922484,0.0037725521251559]],[[0.16151168942451,0.012187417596579,0.027924120426178],[0.12021621316671,-0.020311750471592,0.054940164089203],[0.030015608295798,0.028173066675663,0.064090117812157]],[[0.0077909543178976,-0.034275062382221,-0.01555754058063],[0.022837368771434,0.018242245540023,0.060864191502333],[0.038835309445858,0.1306975632906,0.05390190333128]],[[0.036362461745739,0.032279171049595,0.086622580885887],[0.039043493568897,-0.026801334694028,-0.030676696449518],[0.039453461766243,0.065354630351067,-0.0071401679888368]],[[-0.052326936274767,0.038605719804764,-0.013160847127438],[-0.056409183889627,0.038095902651548,0.057709686458111],[-0.020024953410029,-0.034510891884565,0.016105536371469]],[[0.048159137368202,-0.079954095184803,-0.0046360963024199],[-0.089152097702026,-0.050558846443892,-0.080005757510662],[-0.20763570070267,-0.049356743693352,-0.1483641564846]],[[0.054340288043022,0.067773103713989,0.0084033431485295],[-0.0044122426770627,0.090671211481094,0.06076393276453],[0.042198501527309,0.07309751957655,0.11541962623596]],[[0.027431361377239,0.010464116930962,-0.0098607987165451],[0.028203953057528,0.031093711033463,-0.064134195446968],[-0.023693723604083,0.0021337694488466,-0.040908567607403]],[[-0.014841764234006,0.0083697848021984,-0.018188700079918],[0.07755172252655,0.010993420146406,0.024782216176391],[0.0073745511472225,0.021392952650785,-0.011061578057706]],[[0.073193147778511,-0.012890124693513,0.00075415807077661],[0.014941639266908,-0.054779384285212,0.035889524966478],[-0.062183484435081,0.074502825737,0.061511944979429]],[[-0.055755279958248,0.054035544395447,0.00074007839430124],[-0.088178835809231,0.035818215459585,-0.0028363328892738],[0.043198890984058,-0.038157016038895,0.0038923672400415]],[[0.015163389034569,0.022449905052781,0.050371043384075],[0.00098666967824101,-0.012365087866783,0.028196014463902],[0.017631189897656,0.17544074356556,-0.0116470111534]],[[0.023819081485271,0.034430120140314,0.019473033025861],[-0.0173299908638,-0.010340193286538,0.016326138749719],[0.031436715275049,0.0032475520856678,-0.045710720121861]],[[-0.00029857718618587,0.12074895203114,-0.067715503275394],[-0.033737618476152,0.030946295708418,0.021493896842003],[0.027878846973181,0.0012645688839257,0.064889915287495]],[[0.0012416682438925,-0.011534169316292,0.038688432425261],[-0.0023053248878568,-0.04609502106905,0.072059445083141],[0.11245579272509,0.093184396624565,0.055534746497869]],[[-0.0086225559934974,0.034032925963402,-0.042654123157263],[-0.042295463383198,-0.072820134460926,0.0069564427249134],[-0.0020070418249816,0.01620889082551,-0.016840139403939]],[[0.014583187177777,0.063822224736214,0.060033068060875],[-0.022997723892331,0.024959035217762,-0.03004821203649],[0.046982746571302,-0.090945698320866,0.064790569245815]],[[-0.080366678535938,-0.025438820943236,-0.07706206291914],[-0.12260925024748,-0.10965845733881,0.012260400690138],[0.073900200426579,-0.04603898152709,-0.002424965146929]],[[0.073442414402962,0.023578664287925,-0.10160858929157],[-0.050398461520672,-0.022463612258434,-0.033349048346281],[-0.074235178530216,0.035152390599251,-0.10090344399214]],[[0.098919086158276,-0.00013401654723566,-0.0036787663120776],[-0.0072245388291776,0.068384796380997,-0.050800729542971],[0.010076217353344,-0.0002414946211502,0.022526428103447]],[[0.0067262118682265,-0.096502766013145,0.018605636432767],[-0.010350844822824,0.15980026125908,-0.062611222267151],[0.0016383659094572,0.090707078576088,-0.045772325247526]],[[-0.072397299110889,-0.039715107530355,0.0022648978047073],[-0.066457882523537,0.014090036973357,0.029802672564983],[-0.010356683284044,0.041150264441967,0.0066861067898571]],[[0.0055126687511802,-0.08947342634201,0.022640159353614],[0.006720457226038,0.031426794826984,0.0087704844772816],[-0.094909742474556,-0.0092285433784127,0.0089232819154859]],[[-0.052574779838324,-0.0091239521279931,-0.047524727880955],[0.018745193257928,0.0030031392816454,-0.032814860343933],[0.019522819668055,-0.03296259790659,0.079919815063477]],[[-0.025031371042132,-0.011317476630211,0.041139740496874],[0.011245578527451,-0.054600834846497,-0.027488442137837],[0.11941228061914,0.0014791096327826,0.041985187679529]],[[-0.060044944286346,0.010993990115821,0.027354193851352],[-0.038628336042166,0.077576830983162,0.033134888857603],[0.00037660528323613,0.019856816157699,-0.057788249105215]],[[-0.013421548530459,0.0082395626232028,-0.0043345801532269],[-0.005444691516459,-0.026918414980173,-0.014871682971716],[-0.0055895242840052,-0.04414939135313,0.029861975461245]],[[0.087307222187519,0.05566318333149,0.010843858122826],[0.0088968724012375,0.043993052095175,-0.02126213349402],[0.018325485289097,-0.015490791760385,0.06550233066082]],[[-0.0082678096368909,0.0022685155272484,0.014172102324665],[0.017805349081755,-0.009691534563899,0.070889748632908],[0.031203987076879,0.026372795924544,-0.016513200476766]],[[0.087133429944515,0.04798012599349,-0.0034133875742555],[0.021353077143431,0.018553489819169,0.065983802080154],[-0.051667898893356,-0.02293829806149,0.079432718455791]],[[-0.079024650156498,0.010071013122797,-0.065384320914745],[-0.0017459066584706,0.037160079926252,-0.057888071984053],[0.024605950340629,-0.016675939783454,0.027654072269797]],[[-0.0095488438382745,-0.0056997230276465,0.0057575488463044],[-0.019383955746889,0.052779875695705,0.018432259559631],[-0.035945426672697,0.022702431306243,-0.02118600718677]],[[-0.037309102714062,0.01058504730463,-0.031550586223602],[0.025203751400113,-0.059275951236486,-0.060533512383699],[-0.04814663156867,0.019256271421909,0.03132514283061]],[[-0.034813653677702,-0.0058182682842016,0.031131824478507],[-0.016460528597236,-0.056130304932594,-0.084510900080204],[-0.033535037189722,-0.051401928067207,0.026820814236999]],[[0.020199904218316,0.098653562366962,0.020417662337422],[0.018312774598598,0.0017937800148502,0.036728274077177],[0.052635829895735,0.037060879170895,-0.032746110111475]],[[-0.014958299696445,0.054642986506224,0.0096873100847006],[0.048081573098898,0.0085360016673803,0.057422481477261],[0.045634992420673,0.00042058125836775,-0.039996907114983]],[[0.051636800169945,-0.014546706341207,0.091761916875839],[-0.025737402960658,-0.0094020068645477,-0.085893705487251],[0.066781707108021,-0.060643617063761,-0.032605577260256]],[[-0.054856445640326,0.040553107857704,-0.067901030182838],[-0.05699809640646,0.0018097796710208,-0.01961680687964],[0.014827873557806,-0.019868722185493,-0.0051585412584245]],[[0.037166152149439,0.028095033019781,0.082296535372734],[-0.04975563287735,0.090201929211617,0.0099213300272822],[0.041529480367899,-0.023123370483518,0.066925562918186]],[[0.0033767148852348,-0.084846720099449,0.081328935921192],[-0.030311772599816,-0.0059862653724849,-0.0073320968076587],[0.018983770161867,0.031884200870991,-0.055614922195673]],[[-0.0089040566235781,0.023544296622276,0.078670278191566],[0.035094417631626,0.079492256045341,0.082704484462738],[0.0071420245803893,0.040741123259068,-0.055907268077135]],[[0.034575790166855,0.027194894850254,-0.013665426522493],[0.14682483673096,0.02402700856328,-0.0056591629981995],[-0.033949974924326,0.06477003544569,0.015574086457491]],[[-0.025680705904961,0.013635198585689,0.08191329985857],[0.026900188997388,0.085546232759953,-0.019115637987852],[0.062376454472542,0.043286710977554,0.045830506831408]],[[0.019606988877058,-0.038966678082943,0.079139575362206],[-0.03838961943984,0.042610675096512,-0.040156550705433],[-0.039463832974434,-0.029879059642553,-0.0019461552146822]],[[0.091998510062695,0.0036791693419218,0.066389992833138],[-0.018755586817861,-0.0099519044160843,-0.032902728766203],[0.023236954584718,0.040314953774214,0.058486353605986]],[[0.034928254783154,0.0055625452660024,-0.096246175467968],[-0.097184337675571,-0.031588349491358,0.038164038211107],[-0.036068249493837,-0.043062966316938,0.085766166448593]],[[0.028628980740905,-0.043189786374569,-0.036983326077461],[0.025073440745473,0.082903608679771,0.016289964318275],[0.161894723773,-0.051876664161682,0.074623167514801]],[[-0.007374454755336,-0.0012829850893468,-0.0026635949034244],[0.01903435587883,-0.018669337034225,0.096806064248085],[-0.090352967381477,0.10727293044329,0.13434942066669]],[[0.027072042226791,-0.091273926198483,-0.090554818511009],[-0.015048632398248,0.0076014338992536,0.016984783113003],[0.0035841683857143,-0.09058728069067,-0.025638829916716]],[[-0.070506796240807,0.032136149704456,-0.031265657395124],[0.02401396073401,0.0047366498038173,0.012993403710425],[0.0055391816422343,0.083530910313129,0.11412401497364]],[[-0.030766759067774,-0.0068363007158041,0.0459870621562],[0.051423020660877,-0.0026268993970007,0.10092704743147],[0.021537849679589,0.04850335046649,0.041819237172604]],[[0.067433901131153,-0.021790282800794,0.035822477191687],[0.052612245082855,0.028813406825066,-0.027319988235831],[0.017580881714821,0.023618565872312,0.0033276849426329]],[[-0.0027614179998636,0.042890563607216,0.03001351095736],[0.001757264486514,0.040116928517818,0.045134250074625],[0.0013784634647891,-0.02547107078135,0.058866407722235]],[[-0.014439830556512,0.051381383091211,-0.0071456455625594],[0.082480907440186,0.009609691798687,0.029342504218221],[0.083107426762581,0.047270320355892,0.074531875550747]],[[-0.080755941569805,-0.01775317825377,-0.0193060208112],[0.040837783366442,0.016936404630542,0.074418127536774],[0.026966301724315,-0.06051317974925,-0.0015271693700925]],[[0.025533381849527,0.080903314054012,0.089531198143959],[-0.030965669080615,0.00075892312452197,-0.033203084021807],[0.059432178735733,0.11073509603739,0.012064295820892]],[[0.10542324185371,0.0048861070536077,-0.038218025118113],[0.066738873720169,0.038307379931211,0.14558535814285],[-0.0037842441815883,0.032205186784267,0.013028060086071]],[[0.010045064613223,-0.0029867803677917,0.051441866904497],[-0.01968913897872,0.036626663058996,0.028903054073453],[-0.054180543869734,0.046942628920078,0.054379228502512]],[[0.024043630808592,-0.054981648921967,-0.039519239217043],[-0.065640866756439,-0.0076636835001409,-0.014909466728568],[0.013590270653367,0.053645990788937,0.09216733276844]],[[-0.030032340437174,-0.054843064397573,0.047549448907375],[0.11762701719999,0.13780610263348,0.099289514124393],[0.012168475426733,-0.00027406541630626,-0.026164032518864]],[[-0.016927344724536,-0.030681451782584,0.083971865475178],[-0.0091526685282588,-0.0070678270421922,-0.15861645340919],[-0.0069058467634022,-0.022538248449564,0.06736733019352]],[[-0.021195482462645,0.014356013387442,-0.060536574572325],[0.01496909186244,-0.0041388417594135,-0.014892294071615],[0.00779819348827,-0.0036451043561101,-0.064695872366428]],[[0.074767217040062,0.10020642727613,0.11276169121265],[-0.092879466712475,-0.038218580186367,0.0028146288823336],[0.02204411663115,0.12671700119972,-0.010174113325775]],[[0.037578288465738,0.024114403873682,0.017829846590757],[-0.025892382487655,-0.02901260368526,0.081754080951214],[0.08900960534811,-0.02086640894413,0.11240417510271]],[[0.021764392033219,0.061920378357172,0.095494337379932],[-0.015257113613188,0.063628442585468,-0.099705740809441],[-0.0081367148086429,-0.002357340650633,-0.035575438290834]],[[-0.035912580788136,0.086865201592445,0.018572380766273],[0.037348829209805,0.012802413664758,-0.026658441871405],[0.11426805704832,0.052012290805578,0.0047644251026213]],[[-0.01878210157156,-0.032270215451717,0.05478360503912],[-0.0086062466725707,0.0094845974817872,0.08699955791235],[0.042465105652809,0.058734573423862,-0.021854355931282]],[[0.006354889832437,-0.075474746525288,0.039487756788731],[-0.017172127962112,-0.041391089558601,0.018153246492147],[0.029700001701713,-0.026011127978563,-0.081371277570724]],[[0.016649229452014,0.0085065644234419,0.063760936260223],[-0.042039252817631,-0.035260621458292,0.050795521587133],[0.016128091141582,0.031313039362431,0.044109828770161]],[[-0.10665448009968,-0.058613922446966,0.051973536610603],[0.00027120669255964,-0.043892689049244,0.045577134937048],[-0.017862148582935,-0.035964574664831,0.01189583633095]],[[-0.0079196654260159,0.1132920384407,-0.017633451148868],[0.061616573482752,0.081207886338234,0.13323935866356],[0.038705348968506,0.0073424661532044,0.090778641402721]],[[-0.033857271075249,-0.038055136799812,0.12856939435005],[0.059863895177841,0.048077486455441,-0.0073617566376925],[0.089046403765678,0.051266152411699,-0.084027700126171]],[[0.0067785093560815,0.040253803133965,0.0056596123613417],[-0.0030216290615499,0.050344105809927,-0.029122224077582],[-0.0024157422594726,0.032527014613152,-0.017973082140088]],[[0.054476086050272,0.010899091139436,-0.0038585448637605],[-0.037160027772188,-0.065420791506767,0.049575258046389],[-0.060216911137104,-0.0047271721996367,0.0080293631181121]],[[-0.04056990519166,-0.053043946623802,0.052659451961517],[-0.046818178147078,-0.062890499830246,-0.033894635736942],[0.026372760534286,0.058313343673944,-0.03686423972249]],[[0.040395241230726,0.077169694006443,0.052612133324146],[-0.0092912195250392,-0.052229855209589,0.076619803905487],[0.019642945379019,0.0090209441259503,0.1633717417717]],[[-0.052908711135387,-0.042211271822453,0.059895556420088],[-0.033525519073009,0.044646274298429,0.065353184938431],[0.068127006292343,0.037011254578829,-0.024768752977252]],[[0.047162756323814,0.095973737537861,-0.054880734533072],[-0.0092188008129597,-0.039498090744019,-0.035550862550735],[-0.015675725415349,-0.069888330996037,-0.059888705611229]],[[0.06354233622551,0.012035398744047,0.076985739171505],[0.06883367151022,-0.026243237778544,8.7116262875497e-05],[-0.12578968703747,-0.018119022250175,-0.066216535866261]],[[-0.067901886999607,0.019881952553988,-0.037100475281477],[0.038009557873011,0.0076782428659499,-0.015467190183699],[0.054688386619091,-0.0068913288414478,0.019208244979382]],[[0.041171822696924,-0.010292830877006,0.013082757592201],[-0.033462319523096,-0.061389267444611,0.062577649950981],[0.11288526654243,0.024345558136702,0.028060270473361]],[[0.010432530194521,0.028968119993806,0.021849203854799],[-0.018672287464142,-0.06826788187027,0.016102772206068],[-0.023842880502343,-0.043349150568247,-0.020680747926235]],[[0.07346972823143,-0.012631587684155,0.0069323973730206],[0.043175790458918,-0.01761619374156,-0.075026370584965],[-0.062010735273361,0.075266428291798,-0.014387880451977]],[[0.099188111722469,0.038861367851496,-0.021907590329647],[-0.084067836403847,0.00081761350156739,-0.062329806387424],[-0.034984588623047,-0.013449130579829,-0.082651764154434]],[[-0.013771893456578,0.011348132044077,-0.029352203011513],[0.038834381848574,0.0024504966568202,0.17533011734486],[0.050160001963377,0.02664084173739,-0.044296611100435]],[[-0.075522296130657,-0.03519894182682,0.10069876164198],[-0.025886261835694,0.044437147676945,0.046494744718075],[0.051272910088301,0.042290899902582,0.073768496513367]],[[0.068424537777901,-0.0087943049147725,0.056582819670439],[-0.029994526877999,0.026628833264112,0.030605498701334],[-0.036253061145544,-0.028129683807492,0.029191259294748]],[[-0.017129462212324,0.028801795095205,0.0078431637957692],[0.028294006362557,0.010034211911261,0.01208882406354],[-0.059777893126011,0.057520605623722,0.056492086499929]],[[-0.092122070491314,0.012283805757761,-0.054822113364935],[-0.10485302656889,-0.041799310594797,0.00035472816671245],[-0.065701045095921,-0.0070180161856115,-0.078296057879925]],[[0.035401314496994,0.020900106057525,0.05096722021699],[0.013712810352445,-0.018767973408103,-0.034542758017778],[-0.026381500065327,0.031403087079525,0.041465096175671]],[[-0.030230024829507,0.026980590075254,0.091198585927486],[0.065443627536297,0.019542077556252,-0.01596319489181],[0.034902837127447,0.021512437611818,-0.052462793886662]],[[0.032653320580721,-0.018164670094848,0.034172154963017],[0.013935869559646,-0.0086893467232585,0.054740853607655],[-0.0028734277002513,0.023181719705462,-0.060656506568193]],[[0.026965258643031,-0.037113886326551,-0.0198212582618],[-0.056008245795965,-0.16634711623192,-0.017070412635803],[-0.14098328351974,-0.016807056963444,-0.011533756740391]],[[0.058226387947798,0.025889061391354,0.032084964215755],[0.031760226935148,-0.01365381013602,0.055879581719637],[0.10550671070814,0.0063213156536222,0.060259532183409]],[[-0.030649907886982,-0.010407124646008,-0.021902896463871],[0.029860036447644,-0.016627183184028,-0.0044710854999721],[0.015716951340437,0.013168768025935,0.016290057450533]],[[-0.066131219267845,0.056823544204235,0.00095066428184509],[0.080267958343029,0.036951016634703,0.069071829319],[-0.015557011589408,-0.047052621841431,0.17049038410187]],[[-0.016812019050121,0.054817765951157,-0.098237358033657],[0.084825254976749,-0.027476305142045,0.10132230818272],[-0.036935672163963,-0.038820020854473,0.0048173316754401]]],[[[0.04053757339716,-0.074876487255096,-0.092747949063778],[-0.20559325814247,-0.0043224534019828,-0.04988332092762],[-0.1480168402195,-0.049252901226282,0.004592000041157]],[[-0.025881443172693,-0.0054094609804451,-0.13760873675346],[-0.10655851662159,0.20695795118809,-0.04682819917798],[-0.052079278975725,-0.139250472188,-0.065913766622543]],[[-0.080024041235447,-0.0049026687629521,0.061220422387123],[-0.075232930481434,0.037164881825447,0.027975125238299],[-0.032551631331444,0.054055627435446,-0.10880859196186]],[[0.051774561405182,0.058069154620171,0.062309898436069],[0.025389457121491,-0.0016706872265786,0.032845668494701],[-0.026860184967518,0.0062946630641818,0.028120901435614]],[[0.03775604441762,-0.10088851302862,0.058311030268669],[-0.04657469689846,-0.042655296623707,-0.011837410740554],[-0.0078947590664029,0.058335851877928,-0.026888616383076]],[[0.049535665661097,-0.059529710561037,0.049828864634037],[0.068935699760914,0.038730967789888,-0.13416947424412],[0.019466539844871,0.075377985835075,-0.059244953095913]],[[-0.014612674713135,-0.10953048616648,-0.0069953454658389],[-0.014992943033576,-0.075788170099258,0.10447074472904],[0.049751501530409,0.053835291415453,-0.042825970798731]],[[0.11247269809246,-0.048627141863108,0.062520049512386],[-0.030412020161748,-0.099762767553329,0.12920971214771],[-0.088549964129925,-0.064658090472221,-0.11421700567007]],[[-0.12241725623608,0.04525837674737,-0.06086603179574],[0.012629860080779,0.13942265510559,-0.11238905787468],[-0.12147659063339,-0.065858833491802,-0.10694051533937]],[[-0.057046458125114,0.21359813213348,0.10967037826777],[-0.045716341584921,0.0041234875097871,-0.006608696654439],[0.044930469244719,0.072690412402153,-0.017013393342495]],[[0.075969159603119,-0.064879849553108,-0.0018625525990501],[-0.076805219054222,-0.071265019476414,0.033449657261372],[-0.020766893401742,0.039078716188669,-0.0013482368085533]],[[0.020461088046432,-0.12839497625828,-0.066746726632118],[0.027714973315597,-0.061458945274353,0.016858618706465],[-0.031314801424742,0.045136839151382,-0.01057689730078]],[[-0.16562910377979,-0.094273954629898,-0.12482786923647],[-0.032873544842005,0.036606457084417,0.034497775137424],[-0.034005921334028,0.035299826413393,0.04584151878953]],[[0.0020643430761993,0.092834189534187,-0.17715492844582],[0.017909996211529,0.099184654653072,-0.032527200877666],[-0.062078129500151,0.021877516061068,-0.062862947583199]],[[0.26059910655022,0.098393432796001,-0.13015133142471],[0.040379043668509,0.053173627704382,-0.042545937001705],[-0.12838399410248,-0.069187045097351,-0.032487083226442]],[[-0.047996535897255,-0.05127551779151,-0.041754085570574],[-0.017280986532569,0.17080770432949,-0.022637847810984],[-0.01525117829442,-0.058828745037317,-0.0067776376381516]],[[-0.024282271042466,0.019555684179068,0.035050336271524],[0.019993644207716,-0.046144850552082,-0.067807547748089],[0.00026617798721418,0.018751909956336,0.058094158768654]],[[-0.022900145500898,-0.068921394646168,0.0084585295990109],[0.014754239469767,0.047867685556412,-0.047527324408293],[0.041666891425848,-0.033464826643467,0.052010133862495]],[[-0.051099389791489,-0.062763273715973,0.12432873994112],[-0.026888810098171,0.023703265935183,-0.11865875124931],[0.035065304487944,0.029509071260691,-0.041983727365732]],[[-0.1553507745266,-0.094354011118412,0.073998287320137],[-0.094492197036743,-0.078676797449589,-0.057831879705191],[0.078174583613873,0.031056540086865,-0.034241523593664]],[[-0.13309964537621,-0.15918186306953,-0.077266171574593],[0.044323030859232,-0.065336264669895,-0.059106022119522],[0.018377054482698,0.014434205368161,-0.051726087927818]],[[0.051321536302567,-0.0081374859437346,0.12178907543421],[-0.010867793112993,0.08406613022089,0.12941454350948],[0.027422288432717,-0.047161299735308,0.079384915530682]],[[0.027120910584927,-0.093287147581577,-0.062277585268021],[0.010055462829769,-0.0079945093020797,0.053733680397272],[0.07678409665823,0.025842137634754,-0.044366769492626]],[[0.0098844803869724,0.17973329126835,0.046216148883104],[0.069721788167953,0.035075027495623,-0.028195731341839],[0.072540834546089,-0.0068012112751603,-0.037419382482767]],[[-0.047213584184647,-0.045793086290359,-0.0054903062991798],[0.035040192306042,0.09620339423418,0.0075490237213671],[-0.036962524056435,-0.056514021009207,-0.030051007866859]],[[0.066859260201454,-0.074922919273376,0.055060118436813],[0.035620428621769,0.10509884357452,0.035383801907301],[0.029336262494326,-0.014572851359844,-0.032912779599428]],[[-0.078218057751656,-0.058516800403595,0.00014794604794588],[0.069430261850357,-0.028041256591678,0.017158763483167],[-0.078982062637806,-0.072976924479008,0.13172221183777]],[[-0.011898937635124,-0.050233483314514,0.19259905815125],[-0.075240939855576,0.033272784203291,-0.19179397821426],[0.045747328549623,-0.017592942342162,0.045817218720913]],[[0.069568298757076,0.14440216124058,-0.018708633258939],[0.039784926921129,-0.082572385668755,-0.19236680865288],[0.094405360519886,0.089851856231689,0.00042491563363001]],[[-0.089756421744823,0.091182686388493,0.014971277676523],[-0.13194862008095,0.05229239910841,-0.096455700695515],[0.08723034709692,0.054417759180069,0.034199293702841]],[[-0.10604666918516,-0.041573029011488,0.0049170278944075],[0.11847169697285,0.041896902024746,0.060583539307117],[-0.037895876914263,0.099295876920223,-0.0354576818645]],[[-0.013218932785094,-0.15149784088135,-0.016996456310153],[-0.05148858949542,-0.058963783085346,9.342264092993e-06],[-0.090783983469009,-0.0049437955021858,-0.0078220432624221]],[[0.085552796721458,-0.086708106100559,-0.10002271085978],[-0.032433174550533,0.058210499584675,0.098675236105919],[0.057404089719057,0.081855185329914,-0.0052128066308796]],[[-0.019673159345984,-0.03950484842062,-0.13885600864887],[0.060769710689783,0.011689504608512,0.08390548825264],[0.032939206808805,-0.12358506023884,-0.11669190227985]],[[-0.21047528088093,-0.029551444575191,-0.022024508565664],[-0.011174735613167,0.12922629714012,0.017639219760895],[0.001201452803798,0.0048544928431511,0.0093437656760216]],[[0.0018015309469774,-0.16570927202702,-0.11931011080742],[0.042158983647823,-0.011836017481983,-0.10193918645382],[-0.057793848216534,-0.01773564144969,0.0100366352126]],[[0.065717548131943,0.0072300774045289,-0.0082422075793147],[-0.12936656177044,-0.069048099219799,-0.015572481788695],[0.058780189603567,-0.0179681815207,-0.0074627809226513]],[[0.065997317433357,-0.11894381046295,-0.14439086616039],[0.031086651608348,0.083207294344902,0.077656932175159],[0.031179113313556,-0.071104161441326,-0.093772888183594]],[[0.039011970162392,0.13521179556847,0.040292728692293],[0.030627138912678,0.019759675487876,-0.072868838906288],[0.09650731086731,-0.029811345040798,0.1537718474865]],[[0.078822948038578,-0.072945304214954,-0.023038364946842],[-0.0494529530406,-0.015168574638665,-0.029622839763761],[0.020479263737798,-0.092358268797398,-0.0048906747251749]],[[0.16103899478912,-0.011405039578676,-0.022815754637122],[-0.001403626636602,-0.035177461802959,0.066205017268658],[-0.0069407192058861,0.017887935042381,0.013257367536426]],[[0.050607409328222,-0.036299236118793,-0.077108293771744],[-0.0048743123188615,0.022848427295685,-0.020540459081531],[-0.064112313091755,-0.014098518528044,0.04873388633132]],[[-0.10450039803982,-0.18318705260754,-0.026879185810685],[0.017949508503079,-0.084029264748096,0.033646583557129],[0.056741990149021,-0.067961543798447,0.027983240783215]],[[0.084204703569412,-0.019610293209553,-0.031439136713743],[0.018026042729616,0.016296872869134,0.013311667367816],[-0.095133282244205,0.017249887809157,0.023612331598997]],[[0.05570126324892,-0.15014824271202,0.063581682741642],[-0.10276408493519,0.10675920546055,0.075897410511971],[-0.08131692558527,-0.036635220050812,0.046747319400311]],[[0.023918131366372,-0.033596828579903,-0.051876675337553],[0.14326721429825,-0.042070887982845,0.024539437144995],[0.055789489299059,-0.070164360105991,-0.010257661342621]],[[-0.076099410653114,0.12393685430288,-0.012147966772318],[0.088117085397243,-0.010364742018282,-0.045306462794542],[0.083955019712448,0.030157368630171,-0.012507502920926]],[[0.014199964702129,-0.16745625436306,-0.048338051885366],[-0.1715117841959,0.0250831451267,-0.012385954149067],[-0.024029273539782,-0.023600643500686,0.023707747459412]],[[0.02020975202322,-0.028585206717253,-0.17741818726063],[0.062915541231632,0.11038108170033,-0.025908898562193],[0.064084462821484,-0.072579547762871,-0.023280195891857]],[[0.0032018115743995,-0.10211370885372,0.00065224117133766],[0.030400559306145,0.042136613279581,0.046296171844006],[-0.02384596504271,-0.10344649851322,-0.025035068392754]],[[-0.051635198295116,-0.068008713424206,0.082177355885506],[0.070055991411209,0.031761631369591,-0.043367121368647],[-0.021984059363604,-0.040823835879564,-0.023136921226978]],[[0.018170557916164,-0.043504770845175,-0.18347591161728],[-0.035804972052574,0.085799381136894,0.069253541529179],[0.0043280543759465,-0.041539300233126,0.012845183722675]],[[0.014544452540576,0.039078567177057,-0.017124189063907],[-0.13232731819153,-0.039591018110514,-0.034096721559763],[-0.074208751320839,0.006766798440367,0.0088431686162949]],[[-0.22555604577065,0.095465011894703,0.048135444521904],[-0.11242187023163,-0.0030521163716912,0.019203074276447],[0.0062989983707666,-0.042654942721128,-0.078729130327702]],[[0.0020634955726564,-0.14694936573505,-0.022854302078485],[0.0058727916330099,0.030648227781057,0.00078753265552223],[0.050765536725521,0.04269678145647,0.057870339602232]],[[-0.044194996356964,0.028499627485871,-0.099739797413349],[0.067231543362141,-0.031920436769724,-0.0026520492974669],[-0.022328276187181,0.024781653657556,-0.0415502153337]],[[0.029278447851539,0.13887105882168,0.0044924155808985],[-0.067958474159241,-0.018503298982978,0.0098997447639704],[-0.10363989323378,-0.054882135242224,0.074129514396191]],[[-0.066240981221199,-0.057243067771196,0.083386540412903],[-0.029398990795016,-0.020027546212077,0.013118862174451],[-0.04853443056345,0.10067198425531,0.084269896149635]],[[-0.08112595230341,-0.10762689262629,0.031036579981446],[-0.013689048588276,-0.075882792472839,0.034091543406248],[-0.042756624519825,-0.11055362969637,0.020162053406239]],[[0.033716402947903,-0.069331347942352,0.11142285168171],[-0.047778911888599,-0.0071239131502807,0.078482910990715],[0.005353485699743,-0.06362010538578,0.0087889349088073]],[[-0.14293575286865,-0.0090827895328403,-0.034807145595551],[0.023219421505928,-0.090737625956535,-0.046227976679802],[0.028754772618413,0.052321873605251,0.015272285789251]],[[-0.10684341937304,-0.03552171215415,0.0044550192542374],[0.12015467882156,0.15393052995205,0.03143372386694],[-0.0030403409618884,0.059615731239319,0.0044053052552044]],[[-0.17404378950596,-0.13136483728886,-0.010701507329941],[-0.091201156377792,-0.095194064080715,-0.095276303589344],[-0.043994776904583,0.070062853395939,-0.10274673998356]],[[0.1589077860117,0.070836812257767,-0.092049792408943],[-0.13880544900894,-0.1271878182888,0.009103137999773],[0.03640778362751,0.10974416136742,-0.020993603393435]],[[-0.0093043241649866,-0.065776824951172,-0.070913106203079],[0.083128161728382,-0.024658605456352,-0.070892333984375],[-0.044878177344799,0.048600774258375,0.10880807042122]],[[-0.077877447009087,-0.19064043462276,-0.23623192310333],[0.060642689466476,-0.016022101044655,-0.063892662525177],[-0.019034860655665,0.044607508927584,0.081210948526859]],[[-0.076746806502342,0.037904884666204,-0.017046254128218],[0.0099611515179276,0.051398865878582,0.03931824862957],[-0.10693580657244,0.0063329176045954,-0.069474525749683]],[[0.0083016902208328,0.00023248238721862,-0.078785985708237],[-0.036282781511545,0.02421092055738,0.037416573613882],[-0.076412588357925,0.079049482941628,0.010878180153668]],[[-0.095420688390732,-0.056788004934788,-0.033885978162289],[0.031215716153383,-0.075569435954094,-0.062992967665195],[-0.068081751465797,-0.027496479451656,0.064236715435982]],[[0.028811482712626,0.0049708765000105,-0.052863422781229],[-0.08333745598793,0.0072740716859698,-0.11478520929813],[0.029190393164754,-0.15348201990128,0.049246530979872]],[[0.021765841171145,-0.019871033728123,-0.060701828449965],[-0.033398263156414,-0.026795079931617,-0.0079324198886752],[-0.061912253499031,0.004881442990154,0.027756771072745]],[[0.13657522201538,-0.027179695665836,0.20812432467937],[-0.015187007375062,-0.06143394857645,0.011980388313532],[-0.10307571291924,-0.029487211257219,-0.014043034054339]],[[-0.112040810287,-0.092341385781765,-0.0017296334262937],[0.0128129189834,-0.02721369639039,-0.003123824717477],[-0.081341087818146,-0.02239608950913,-0.047503512352705]],[[-0.070361211895943,-0.087626196444035,0.11366907507181],[-0.040765572339296,0.064953573048115,0.091323636472225],[-0.0074617192149162,-0.11882234364748,0.08171258866787]],[[-0.0269840862602,-0.090646207332611,0.06058631837368],[-0.023637915030122,0.0073368987068534,-0.1062635704875],[0.016483709216118,0.035452973097563,0.08610001206398]],[[0.011580874212086,-0.12020242214203,0.076185546815395],[-0.058259297162294,-0.059823650866747,0.088231176137924],[0.019623396918178,-0.011848640628159,0.0061371591873467]],[[0.017892861738801,0.076021865010262,0.032687913626432],[-0.035390555858612,-0.14533448219299,-0.0018180841580033],[-0.063072495162487,0.00952132884413,-0.0168751552701]],[[-0.13265126943588,-0.078984051942825,-0.048037085682154],[-0.12596343457699,-0.11456413567066,-0.004400497302413],[0.11033812910318,-0.035131853073835,-0.1358028948307]],[[-0.029766926541924,-0.23272426426411,-0.023314503952861],[0.01105133164674,0.039580702781677,0.07247705757618],[-0.042696669697762,0.0012063464382663,-0.056522354483604]],[[0.0048015071079135,-0.15041430294514,0.0027333344332874],[-0.077690564095974,-0.023968636989594,0.015677006915212],[0.013642033562064,-0.04022528231144,0.0085495188832283]],[[0.010473976843059,-0.11057106405497,0.019706230610609],[0.10138098150492,-0.050386287271976,-0.071689821779728],[0.021284550428391,-0.036124214529991,0.034651413559914]],[[0.26909148693085,-0.0026480834931135,-0.025691665709019],[-0.2037750184536,-0.25724920630455,-0.024820985272527],[0.14115503430367,0.0015326656866819,0.048770990222692]],[[-0.052784100174904,-0.075469747185707,0.044515393674374],[-0.042510807514191,-0.057836107909679,-0.027016507461667],[0.032020699232817,-0.0095768980681896,0.019745027646422]],[[-0.062136519700289,-0.081505291163921,0.051783051341772],[-0.060769077390432,-0.032001439481974,0.12085641175508],[0.036444652825594,0.0033579529263079,0.026431182399392]],[[0.062282975763083,-0.099201120436192,-0.078490726649761],[0.11895728111267,-0.07793977111578,-0.059988100081682],[0.010801510885358,-0.045193005353212,0.040161106735468]],[[-0.0829758644104,0.068912327289581,0.11042392998934],[-0.16351772844791,0.059091504663229,0.069347254931927],[-0.034953512251377,0.058386355638504,-0.020057912915945]],[[-0.032992299646139,-0.11795741319656,-0.21366773545742],[0.11841264367104,0.13460147380829,0.018697133287787],[0.020906567573547,0.050289265811443,-0.026695685461164]],[[-0.11707484722137,0.052717566490173,-0.044614538550377],[0.068322904407978,0.068938732147217,0.0038680981379002],[0.064363338053226,-0.040468975901604,0.00943947955966]],[[-0.081491470336914,-0.0022813461255282,-0.077845223248005],[-0.032496992498636,0.046694152057171,-0.057753637433052],[0.092193648219109,-0.0050219143740833,-0.12608915567398]],[[-0.21413326263428,-0.11734896153212,0.019567407667637],[0.032753929495811,-0.030204316601157,-0.012541667558253],[-0.046675518155098,0.034046743065119,0.037596587091684]],[[0.010343156754971,0.012242691591382,0.050233401358128],[0.034232195466757,-0.01970511674881,0.063094645738602],[0.053405184298754,-0.03209313005209,0.067328229546547]],[[0.055635169148445,-0.12110235542059,-0.095028899610043],[0.045447807759047,-0.031124031171203,0.02635613642633],[0.058789931237698,-0.0079822316765785,0.0054296287707984]],[[-0.1714346408844,-0.039119869470596,-0.10213342308998],[0.022609738633037,0.01586982421577,-0.016652146354318],[-0.015647472813725,0.037380885332823,0.024500023573637]],[[-0.00068940239725634,-0.077157095074654,0.017239522188902],[-0.097449734807014,-0.037025231868029,-0.054203134030104],[-0.076872944831848,-0.055454395711422,0.068695351481438]],[[-0.18611221015453,-0.056709539145231,0.11149962246418],[-0.053892530500889,0.18511784076691,0.10323718190193],[0.013225179165602,-0.11683266609907,-0.031061893329024]],[[-0.00067055044928566,0.0031426651403308,-0.075120180845261],[-0.013132715597749,-0.16071437299252,0.16628442704678],[0.048216093331575,-0.015570511110127,0.037220567464828]],[[0.061599936336279,-0.064806945621967,-0.011535038240254],[0.10935615003109,0.0073936805129051,-0.045901317149401],[-0.002662492915988,0.00524468626827,0.0094759054481983]],[[-0.058227326720953,-0.0051190429367125,-0.0577760823071],[-0.071870014071465,-0.11712918430567,-0.05690361186862],[0.05475640296936,-0.028330750763416,-0.040443498641253]],[[-0.13087067008018,-0.10035023838282,-0.0085756052285433],[-0.042592030018568,-0.11254615336657,0.030540795996785],[0.022068569436669,0.008706197142601,0.025144718587399]],[[0.10640727728605,-0.042811002582312,-0.079729564487934],[-0.078136958181858,-0.085734233260155,0.049266919493675],[0.067716844379902,-0.035477329045534,0.12509386241436]],[[-0.17032104730606,0.08288910984993,-0.091301217675209],[-0.054557148367167,0.020653521642089,0.053875226527452],[-0.059346608817577,0.049345172941685,0.028139963746071]],[[0.010122968815267,0.015002354979515,-0.023806441575289],[-0.0288514085114,0.00092254567425698,0.042050700634718],[-0.012369186617434,-0.058106038719416,0.07403202354908]],[[-0.12909299135208,-0.077844388782978,0.17345662415028],[0.039703659713268,-0.031302705407143,0.085751116275787],[-0.0089291539043188,0.023420272395015,0.013472449965775]],[[-0.092946194112301,-0.079254865646362,-0.047895882278681],[0.063626922667027,-0.045670323073864,0.034889664500952],[0.093180507421494,0.045646823942661,-0.037262246012688]],[[-0.040106676518917,-0.056558143347502,0.0055374503135681],[-0.015856120735407,0.1753291785717,-0.10870087891817],[-0.017462231218815,0.075372822582722,0.00042176587157883]],[[-0.13851055502892,0.03839997202158,-0.1008071526885],[0.074042111635208,0.076988458633423,-0.045816078782082],[0.045472837984562,-0.083746559917927,-0.040197726339102]],[[0.018932918086648,0.12042888253927,-0.16778233647346],[0.10162477195263,-0.14969457685947,0.32546806335449],[-0.07204233109951,-0.021966541185975,0.063178956508636]],[[-0.055085998028517,-0.041411858052015,-0.033259514719248],[-0.033829770982265,0.036716941744089,-0.039945092052221],[0.036058321595192,0.018838351592422,-0.025211375206709]],[[0.020079234614968,-0.06902951002121,0.01085452362895],[-0.012836932204664,0.13677003979683,-0.1053569316864],[0.0080764135345817,-0.049915492534637,0.12154304981232]],[[-0.10545775294304,0.10342440009117,0.047021504491568],[0.001731832511723,0.010048050433397,-0.032132856547832],[-0.0030109554063529,0.017960093915462,0.031769901514053]],[[-0.082254096865654,0.42167532444,0.036428231745958],[0.074201062321663,0.094958677887917,-0.061353679746389],[-0.032946567982435,0.0028108742553741,-0.0094535537064075]],[[0.041360128670931,-0.098890550434589,0.01186500210315],[-0.047413047403097,0.026504503563046,-0.12825334072113],[0.081303223967552,0.031364861875772,-0.099396251142025]],[[-0.0067333513870835,-0.12285921722651,-0.055842455476522],[-0.063268110156059,0.0019474017899483,-0.033550187945366],[0.043591268360615,-0.020509539172053,-0.014248358085752]],[[0.04816485196352,0.10620921850204,0.063079245388508],[-0.014343470335007,-0.0608398206532,0.027127495035529],[0.065728694200516,0.040735434740782,-0.018030341714621]],[[-0.12745481729507,-0.065546661615372,-0.012729265727103],[0.027923127636313,0.082337908446789,0.092910245060921],[-0.13921840488911,0.080396682024002,0.030277792364359]],[[0.011551880277693,0.036798842251301,-0.047404948621988],[0.079282410442829,-0.019069984555244,-0.029854530468583],[-0.087132558226585,-0.059860978275537,-0.031834665685892]],[[0.0011233604745939,-0.05242009088397,-0.039124142378569],[-0.01333091314882,0.024035293608904,-0.079841926693916],[-0.050650019198656,-0.013174165040255,-0.02779745683074]],[[-0.12557455897331,-0.07579480856657,-0.013007840141654],[0.0042688599787652,-0.088981628417969,-0.066834092140198],[-0.12810063362122,-0.0088650062680244,0.017781248316169]],[[-0.003194878809154,-0.08283394575119,0.064649365842342],[-0.049610141664743,-0.026998568326235,-0.13478189706802],[0.059068270027637,-0.015103885903955,-0.042781293392181]],[[-0.15145348012447,0.055726617574692,0.17101956903934],[0.055279489606619,0.088772267103195,0.044731888920069],[-0.025647347792983,0.005462393630296,0.039788313210011]],[[-0.12014802545309,-0.012463080696762,0.11936270445585],[0.016959141939878,0.18846409022808,0.083096288144588],[0.021424112841487,-0.058819830417633,0.00032051131711341]],[[-0.081395626068115,0.039412476122379,-0.045212645083666],[-0.086037650704384,0.0014352920698002,0.12336327135563],[-0.075135283172131,0.026546221226454,0.046191573143005]],[[-0.042901657521725,-0.00075252493843436,0.070950001478195],[-0.017511950805783,-0.077265843749046,-0.014565787278116],[-0.092832662165165,-0.073355071246624,-0.0013112085871398]],[[-0.027219759300351,0.03288259357214,0.0037448795046657],[-0.0054955589585006,-0.16272136569023,-0.020977426320314],[-0.017237052321434,-0.015085191465914,-0.0013921423815191]],[[0.079063139855862,-0.0047326018102467,0.021426919847727],[-0.10612167418003,-0.056677013635635,0.076880782842636],[0.048164922744036,-0.035606045275927,0.039610918611288]],[[-0.11863221228123,0.18284206092358,0.11084674298763],[-0.078333891928196,-0.095055490732193,-0.11802659183741],[0.022819377481937,0.01613412797451,-0.096944987773895]],[[0.031115029007196,0.040793742984533,-0.14082817733288],[-0.058302775025368,-0.0061136311851442,0.079227656126022],[-0.031357064843178,-0.053081754595041,0.072761110961437]],[[-0.078353188931942,0.052629139274359,-0.09448779374361],[0.084398657083511,0.014522263780236,-0.02616760134697],[0.073560655117035,-0.058416824787855,-0.0008512717904523]]],[[[-0.039286278188229,0.06399492174387,0.0014072526246309],[-0.047679495066404,-0.017185058444738,0.028611402958632],[0.032421879470348,0.081716455519199,-0.0094272438436747]],[[-0.0094123855233192,0.037373322993517,-0.00017775486048777],[0.04984775185585,0.023258557543159,-0.025378171354532],[-0.082696557044983,-0.011226668953896,0.00092481047613546]],[[0.020960042253137,-0.019232032820582,0.017239313572645],[-0.00071391015080735,0.02052466198802,-0.007722572889179],[-0.019442772492766,-0.01260712556541,0.082946076989174]],[[-0.022073272615671,0.038086365908384,0.08095246553421],[-0.067903757095337,-0.017292801290751,0.0091695906594396],[0.0044502951204777,-0.020410493016243,0.089828580617905]],[[-0.0330452285707,-0.045591343194246,-0.03559796884656],[-0.012323538772762,0.044421937316656,0.098562151193619],[-0.0051908232271671,0.037636570632458,-0.015279815532267]],[[0.047630067914724,0.030917786061764,-0.014539941214025],[0.012284933589399,0.07648828625679,0.0026099930983037],[-0.042748093605042,0.0075554633513093,-0.0033267745748162]],[[0.084799684584141,0.026803284883499,0.050146289169788],[-0.057379696518183,-0.083135828375816,-0.080324396491051],[0.017339231446385,0.010697354562581,-0.053212344646454]],[[0.084188528358936,0.098646812140942,0.054219879209995],[0.10350538045168,0.031779129058123,0.023223472759128],[-0.00040441847522743,-0.082876861095428,-0.016345648095012]],[[0.02760579623282,0.024920338764787,-0.049481358379126],[0.049649819731712,-0.024146122857928,0.012684876099229],[-0.04248807951808,0.016842579469085,0.004797593690455]],[[-0.057767737656832,0.021436516195536,0.0061640203930438],[0.036915302276611,-0.086126297712326,0.037121407687664],[-0.016980990767479,-0.019310491159558,-0.0099907256662846]],[[-0.00065044010989368,0.039840333163738,0.027794186025858],[0.03014612942934,0.028198532760143,0.10782603174448],[-0.011060611344874,0.0023763161152601,0.029573850333691]],[[0.015255964361131,0.064884468913078,-0.036527410149574],[-0.073599986732006,-0.0087927868589759,0.052242897450924],[0.0097077628597617,0.029182555153966,0.040801107883453]],[[0.050802480429411,0.039998538792133,-0.0037252327892929],[-0.018511751666665,0.0089727705344558,0.07613680511713],[0.033900085836649,-0.17110387980938,-0.020254258066416]],[[0.05874241143465,0.048503749072552,-0.021191522479057],[0.046929404139519,0.10314460843801,0.0016639090608805],[-0.079143136739731,-0.043027050793171,0.030720664188266]],[[0.023137122392654,0.0038045577239245,0.052634660154581],[-0.011905654333532,-0.022039096802473,2.030745963566e-05],[-0.068741276860237,-0.078379593789577,0.02533888630569]],[[0.0087676011025906,0.0055729490704834,0.0051745707169175],[-0.005111247766763,0.037797190248966,0.02157162129879],[0.0045833210460842,-0.05591544136405,0.045307360589504]],[[-0.029904140159488,-0.026422707363963,0.04203262552619],[0.022314500063658,0.04093411564827,-0.043959725648165],[0.12393738329411,0.023000026121736,-0.084932237863541]],[[0.05494974181056,0.036496270447969,0.065783597528934],[0.023724347352982,0.047140803188086,0.018406599760056],[0.034677263349295,0.081368431448936,0.030601056292653]],[[0.027581941336393,0.016437260434031,0.051948342472315],[0.033332701772451,0.079473651945591,0.067092001438141],[0.029632752761245,-0.0069551514461637,-0.012783480808139]],[[0.040125124156475,0.0042610615491867,-0.013883035629988],[0.01615734398365,-0.013216727413237,-0.028369251638651],[0.030541352927685,-0.044685453176498,-0.016785068437457]],[[-0.009632489643991,0.00056447321549058,-0.016831047832966],[-0.092930614948273,-0.0068564028479159,0.0054062786512077],[0.0053481673821807,0.034454569220543,-0.047446977347136]],[[-4.9583031795919e-05,0.015545401722193,-0.04421541467309],[0.02829379029572,0.073387585580349,0.10843832790852],[0.0091142933815718,0.0026393875014037,0.031916845589876]],[[-0.081010036170483,-0.0023935402277857,-0.0034858039580286],[0.016946446150541,-0.065276123583317,-0.023943556472659],[-0.034372445195913,0.027162190526724,0.017050508409739]],[[-0.025408936664462,0.013156277127564,0.080565020442009],[0.020058456808329,0.043292857706547,0.055405978113413],[-0.13158544898033,0.02070969901979,0.016025569289923]],[[-0.078106038272381,-0.06813545525074,0.010998768731952],[0.024613618850708,0.019662233069539,0.0035264927428216],[0.046202398836613,-0.00031849584775046,0.049403220415115]],[[0.048452295362949,0.014084439724684,-0.015958385542035],[-0.023838823661208,0.015373229980469,0.063907884061337],[0.027775857597589,0.028945159167051,-0.017994010820985]],[[-0.001443573157303,-0.040603443980217,0.035199657082558],[-0.059398710727692,0.013247033581138,-0.016317332163453],[-0.017256973311305,0.086436383426189,0.031635258346796]],[[0.066573560237885,0.05027773603797,0.0080067152157426],[-0.0025423613842577,-0.041858602315187,-0.024812821298838],[-0.026345115154982,0.017461022362113,-0.077030368149281]],[[0.075155392289162,0.036629501730204,0.0666478946805],[0.056252241134644,0.076107278466225,-0.0053000245243311],[-0.029103448614478,-0.028970507904887,0.021937042474747]],[[0.060653146356344,0.039082229137421,-0.0056969430297613],[0.0066472045145929,0.017158132046461,-0.056319821625948],[-0.024865185841918,-0.022919183596969,-0.0072263916954398]],[[-0.044201172888279,-0.010422811843455,0.029612101614475],[0.0098495874553919,0.034877993166447,0.011725188232958],[0.048884071409702,-0.006213394459337,0.019892385229468]],[[-0.0083915768191218,-0.0023833331651986,-0.019215378910303],[0.03548276796937,0.031540539115667,0.014506543055177],[-0.05198809504509,-0.011453588493168,0.014502560719848]],[[0.01158204022795,0.03633550927043,-0.081827782094479],[0.077797658741474,0.12320445477962,-0.042287360876799],[0.041388958692551,0.13491730391979,-0.070330947637558]],[[-0.026016484946012,-0.015796884894371,0.086225904524326],[-0.010166363790631,0.070016495883465,-0.0072348029352725],[0.029276635497808,0.065829381346703,0.064279027283192]],[[0.0035441902000457,0.064878933131695,0.060837876051664],[-0.0096430340781808,0.0093071218580008,-0.079601086676121],[-0.0014893633779138,-0.089688926935196,0.075987823307514]],[[-0.059356447309256,-0.0089440746232867,0.0062563857063651],[-0.012157946825027,-0.023231361061335,-0.034744910895824],[-0.015733091160655,-0.037948451936245,0.0056817480362952]],[[-0.012676374986768,-0.017450237646699,0.0057555758394301],[0.024886339902878,0.0047117713838816,0.021665472537279],[-0.10430186241865,-0.028450660407543,0.019241323694587]],[[0.031398307532072,0.01942284218967,0.0051722507923841],[-0.013048237189651,0.062518678605556,0.047655034810305],[-0.0031142793595791,0.0011625422630459,-0.0013949095737189]],[[-0.00021196763555054,-0.013203070499003,0.017089404165745],[0.01275085285306,0.040700066834688,0.053628098219633],[-0.0050220238044858,-0.051393669098616,-0.009045984596014]],[[0.023438423871994,0.073779597878456,-0.048901058733463],[0.071461588144302,0.0031340699642897,0.0068148290738463],[0.02955013141036,-0.0056240865960717,-0.016280692070723]],[[0.0067605725489557,0.013136008754373,-0.024324590340257],[0.073244124650955,0.028682179749012,0.011673362925649],[0.053623538464308,0.034295450896025,0.028770910575986]],[[-0.0074388012290001,0.032864436507225,0.017115091904998],[0.001594158471562,0.0210399646312,0.012235509231687],[0.016812054440379,0.05481294170022,0.061730735003948]],[[-0.0073608011007309,-0.071556009352207,-0.0070151244290173],[0.01005822326988,-0.0062706111930311,-0.011882519349456],[0.037328161299229,-0.015825649723411,0.0076286443509161]],[[0.025330912321806,-0.026789179071784,0.0006637264159508],[-0.013084742240608,0.012375678867102,0.029613669961691],[-0.04514529556036,-0.019071742892265,0.010218207724392]],[[0.066181048750877,0.024017050862312,-0.0054853744804859],[-0.0017265239730477,-0.045270439237356,0.013521888293326],[0.0090829720720649,0.1035552918911,0.064592361450195]],[[0.027614334598184,0.016240125522017,-0.062805101275444],[-0.037094060331583,-0.027279609814286,0.0079096164554358],[-0.041704013943672,0.11793277412653,0.015655446797609]],[[0.020918047055602,-0.012903328053653,-0.021183742210269],[-0.042109355330467,0.014234589412808,0.01849814131856],[-0.023945493623614,0.023655997589231,0.045587554574013]],[[0.059194173663855,0.023412145674229,-0.041132535785437],[-0.0070836022496223,-0.041050128638744,0.055408671498299],[-0.015499097295105,-0.013902861624956,-0.043664328753948]],[[0.018019121140242,0.034791491925716,-0.01060242857784],[-0.011225056834519,0.046176433563232,0.032691936939955],[0.058114469051361,0.013881065882742,0.010195255279541]],[[0.0068074022419751,-0.010042271576822,-0.061048585921526],[-0.070986732840538,-0.07635260373354,0.0054822028614581],[0.014895662665367,0.054481957107782,0.010372397489846]],[[0.013648757711053,0.017574733123183,0.011846884153783],[0.0096418866887689,0.047117933630943,0.058728147298098],[0.076259844005108,0.0060591725632548,-0.020151346921921]],[[0.14204071462154,-0.078694142401218,0.1059847548604],[0.075119331479073,0.062842674553394,0.0025532022118568],[0.051205229014158,-0.052253779023886,-0.050311777740717]],[[-0.023960331454873,0.021036166697741,0.011945858597755],[0.0090464856475592,-0.018304198980331,0.038991302251816],[0.052392117679119,0.009376073256135,-0.024220690131187]],[[0.020882304757833,-0.070526592433453,0.0018660174682736],[0.064000405371189,0.038654681295156,0.0082436734810472],[0.041389547288418,0.072043403983116,0.043532181531191]],[[0.029124161228538,-0.021278509870172,0.0042611672542989],[0.036554675549269,-0.018152371048927,-0.033548999577761],[-0.023054350167513,0.075379349291325,0.018979886546731]],[[0.035509824752808,-0.036051101982594,0.014782759360969],[-0.009275808930397,0.038221821188927,0.0062120645307004],[-0.046427145600319,-0.059164650738239,0.05732437223196]],[[-0.055066466331482,-0.072813600301743,-0.036549422889948],[0.056471165269613,0.073857270181179,-0.016362927854061],[0.015424353070557,0.03733703866601,0.066103987395763]],[[0.031352747231722,-0.0078504271805286,0.044812805950642],[-0.019086027517915,-0.028251169249415,0.029160665348172],[0.022169597446918,0.032627612352371,0.015028627589345]],[[0.0094680767506361,0.011038933880627,-0.0027662890497595],[0.0070856777019799,0.0060618002898991,0.00075122766429558],[0.020089831203222,0.033045377582312,0.023317005485296]],[[-0.022486999630928,0.057943537831306,0.035860132426023],[0.056013453751802,0.032695896923542,0.010058860294521],[0.030541744083166,-3.8010628486518e-05,-0.027912547811866]],[[0.027527960017323,0.044989809393883,-0.0026914170011878],[0.0052478010766208,0.012457234784961,0.023569425567985],[0.026912327855825,-0.029312985017896,0.0078433379530907]],[[0.04127661511302,0.015458378009498,-0.016735648736358],[0.013799510896206,0.054686110466719,0.0089768636971712],[0.034060426056385,0.003069806843996,-0.025780867785215]],[[0.0057852333411574,0.036409247666597,0.028839619830251],[-0.056225545704365,-0.0022704878356308,0.00096586742438376],[0.01324668712914,0.050742875784636,0.046349540352821]],[[-0.0081778727471828,0.03726651519537,-0.076546721160412],[0.028455954045057,-0.065373726189137,0.04668140783906],[0.061306457966566,0.11141527444124,-0.041098728775978]],[[0.025513436645269,0.0024071156512946,-0.057956136763096],[-0.017728397622705,-0.04163596406579,0.0086724925786257],[-0.0037354102823883,0.0048665087670088,0.036482583731413]],[[0.040899261832237,-0.017533527687192,0.02811879850924],[-0.028466278687119,-0.014632406644523,-0.041959591209888],[0.050485171377659,-0.036294542253017,0.01655925437808]],[[-0.051408879458904,0.023198608309031,-0.017701724544168],[-0.0043118572793901,0.023254249244928,0.014222038909793],[0.06270569562912,0.0012005371972919,0.019494654610753]],[[0.032217383384705,0.027436861768365,0.055214144289494],[0.0081788180395961,-0.0011783614754677,-0.012926077470183],[0.039858561009169,0.046395033597946,0.058859117329121]],[[0.022331161424518,-0.0135741783306,-0.033056683838367],[-0.053991977125406,-0.033158157020807,0.0049065803177655],[0.0050331624224782,0.081776157021523,0.049340955913067]],[[-0.0042615737766027,-0.035375278443098,0.019593976438046],[0.018405394628644,-0.0085321124643087,0.021085334941745],[-0.015293938107789,-0.054172299802303,-0.052559562027454]],[[0.0054064989089966,-0.031539421528578,0.0343605466187],[0.0058118244633079,0.0038794153369963,-0.046835739165545],[0.0010769648943096,-0.038297783583403,0.024767655879259]],[[-0.02112945728004,0.022755835205317,0.049723960459232],[0.015985505655408,0.052549194544554,0.010394972749054],[0.019706750288606,-0.061487957835197,0.0010259172413498]],[[0.044487953186035,0.054365508258343,0.045704632997513],[0.01405671145767,0.0034609951544553,-0.0087648294866085],[-0.0092467088252306,-0.041414834558964,-0.0050972974859178]],[[-0.040253344923258,0.015791650861502,0.013250036165118],[0.0062429518438876,0.00051965593593195,0.058270491659641],[0.049108527600765,0.028009371832013,0.084131762385368]],[[-0.0058188326656818,-0.0096810311079025,0.032005112618208],[-0.040930151939392,-0.054617054760456,-0.005182926543057],[0.019560754299164,0.044016323983669,0.020996976643801]],[[0.063818082213402,-0.018466053530574,-0.0027142481412739],[0.003176715457812,-0.043050192296505,-0.077362023293972],[0.096567720174789,0.047345347702503,0.019207255914807]],[[0.050920583307743,0.029726047068834,0.02278065122664],[0.037505637854338,-0.017346644774079,0.048400908708572],[-0.023478452116251,-0.021222829818726,-0.037341747432947]],[[-0.075822733342648,-0.031541470438242,-0.044204622507095],[0.037487648427486,0.029105583205819,0.061493530869484],[0.018562758341432,0.046391934156418,0.083367429673672]],[[0.13926184177399,0.05250483378768,0.044426668435335],[0.047345269471407,-0.031059216707945,-0.0096121691167355],[0.051967479288578,0.020736739039421,-0.0011069228639826]],[[-0.010114219971001,0.034043550491333,0.0094664981588721],[-0.068474881350994,0.017350804060698,-0.024796839803457],[0.0071606044657528,0.033393949270248,0.06244158372283]],[[-0.0076730651780963,0.007348258048296,0.029751501977444],[0.032372176647186,-0.027582468464971,0.029622433707118],[-0.00077447283547372,0.021040380001068,0.013226610608399]],[[-0.0017417386407033,0.012475149706006,0.016814481467009],[0.024891054257751,0.072307057678699,0.033338282257318],[0.057542033493519,-0.00084371189586818,0.018494894728065]],[[0.10696952790022,-0.011566900648177,-0.0075696557760239],[-0.03043020144105,0.028847612440586,-0.0068889050744474],[-0.054469402879477,-0.0045303883962333,0.025815417990088]],[[-0.046689305454493,0.040439028292894,0.0076484610326588],[0.067265942692757,0.074492387473583,-0.026328245177865],[0.043639529496431,0.027113711461425,-0.0209283772856]],[[0.11602830886841,-0.010203441604972,0.067667700350285],[0.0640634521842,-0.044873401522636,0.00091455108486116],[0.0015738630900159,-0.024015437811613,0.044485244899988]],[[0.062544576823711,-0.04408248141408,-0.042182173579931],[0.0024748858995736,0.019206881523132,0.023915275931358],[-0.011974049732089,0.0095483716577291,0.014999997802079]],[[-0.046586725860834,0.028395192697644,0.078163683414459],[0.027881272137165,-0.041047532111406,-0.11497031152248],[0.011671433225274,-0.030078211799264,0.10577335953712]],[[0.022820388898253,0.023890970274806,-0.030698321759701],[-0.039572779089212,0.023229360580444,-0.067625291645527],[0.046955026686192,0.013070573098958,0.017558803781867]],[[0.014835799112916,0.0012115137651563,0.037361342459917],[-0.02652583271265,0.030756611377001,0.073666900396347],[0.029337828978896,-0.047582224011421,-0.080211691558361]],[[0.0030643988866359,0.00040948350215331,0.010309853591025],[-0.023629810661077,-0.0055476324632764,0.097582936286926],[0.064841710031033,-0.089393630623817,-0.093418300151825]],[[0.008556037209928,-0.036142710596323,0.018726693466306],[0.034277059137821,-0.039198774844408,0.079444415867329],[-0.069707460701466,-0.053920026868582,0.088982492685318]],[[-0.0042917048558593,0.04929906129837,0.01172009203583],[0.054045353084803,-0.030398413538933,-0.044208042323589],[-0.0067223641090095,0.041535884141922,-0.015125694684684]],[[0.0083947042003274,0.025674268603325,0.04611699283123],[0.00016823882469907,0.039590798318386,0.0091348923742771],[0.043129272758961,-0.069161027669907,-0.013301651924849]],[[0.0037529007531703,0.031751703470945,0.011015221476555],[0.0071506169624627,0.013070559129119,0.046145863831043],[-0.041623413562775,0.037285167723894,-0.0059810103848577]],[[0.048155080527067,0.030102012678981,0.017867062240839],[-0.0068790246732533,0.010509504005313,-0.012026067823172],[-0.030015718191862,-0.03275628015399,0.027573162689805]],[[-0.052469212561846,-0.03260912001133,-0.06397508084774],[-0.016540026292205,0.017260156571865,0.013494892045856],[0.078079462051392,0.091484554111958,-0.022886058315635]],[[0.009355466812849,0.0049623348750174,-0.014305481687188],[0.053547952324152,-0.076574623584747,-0.019428566098213],[0.025642968714237,-0.022514440119267,-0.030940851196647]],[[0.015913868322968,-0.023624490946531,-0.008347156457603],[-0.065120413899422,0.0097819222137332,-0.041565652936697],[-0.0039742798544466,0.052472181618214,0.016499636694789]],[[0.057002048939466,0.0030086315236986,-0.036949504166842],[0.024958008900285,0.092558108270168,0.045435640960932],[0.047498904168606,-0.021394286304712,0.011772148311138]],[[0.069321371614933,-0.021689442917705,0.068288460373878],[-0.011421374045312,-0.0061484458856285,-0.032859202474356],[-0.072600305080414,0.085194922983646,0.051047593355179]],[[0.010571893304586,0.023982360959053,-0.0039615887217224],[-0.053709954023361,0.02202320843935,0.0018487786874175],[-0.10841883718967,-0.036060404032469,-0.016385655850172]],[[0.014777745120227,-0.043309032917023,0.0016114464960992],[-0.061599530279636,0.072077348828316,0.014638791792095],[-0.059251859784126,0.087896212935448,0.017065722495317]],[[-0.026169681921601,0.099750675261021,-0.011173511855304],[0.058565206825733,0.00062458880711347,0.064834579825401],[-0.062392976135015,-0.008838040754199,0.049699448049068]],[[0.016085553914309,-0.067993126809597,0.030920820310712],[0.0359226167202,-0.064737886190414,0.017431588843465],[0.014670196920633,0.075061157345772,0.0067435037344694]],[[0.0091156484559178,-0.022806296125054,0.019931906834245],[-0.052621059119701,-0.089011982083321,0.0016247007297352],[-0.010220783762634,0.018047472462058,0.038989320397377]],[[0.029372934252024,-0.0055611357092857,-0.024875730276108],[0.016438977792859,-0.050013191998005,0.018963465467095],[0.061644244939089,0.011488074436784,0.091319605708122]],[[0.010185103863478,0.01322971098125,0.1078760176897],[0.025321554392576,-0.06143943965435,-0.038952488452196],[-0.050479184836149,-0.022454582154751,-0.16199301183224]],[[0.026424199342728,-0.034265749156475,0.030963892117143],[-0.042700588703156,-0.055922612547874,0.068189233541489],[-0.030880060046911,0.016123689711094,0.1064422801137]],[[-0.025875750929117,0.00030125686316751,0.030413795262575],[-0.016897112131119,-0.037790309637785,0.00446124561131],[-0.012566084042192,-0.025626264512539,0.01888082921505]],[[-0.0064965444616973,0.039234712719917,-0.028418989852071],[-0.039439518004656,-0.0022969394922256,0.033832438290119],[0.03859993442893,0.013736451044679,-0.01542838383466]],[[-0.020055696368217,0.031686156988144,0.0085387155413628],[0.013931428082287,-0.013428687117994,0.01324662938714],[-0.026526533067226,-0.081332758069038,-0.0031586911063641]],[[0.01261459197849,-0.088501751422882,-0.046513512730598],[-0.050254017114639,-0.005896074231714,0.10236345976591],[-0.056533060967922,-0.015589855611324,-0.012468478642404]],[[-0.029449546709657,0.046712823212147,0.054298892617226],[-0.1257299631834,0.0069403517991304,0.047407072037458],[0.014335684478283,0.013408130034804,0.060937229543924]],[[-0.0068510263226926,0.0020512875635177,-0.0027568743098527],[0.0086014326661825,-0.0055636516772211,-0.030469376593828],[-0.050345331430435,-0.060793347656727,-0.040722962468863]],[[0.0024674327578396,0.0052357148379087,0.018736770376563],[-0.020816694945097,-0.01864524371922,-0.0025880108587444],[0.0048602363094687,-0.00010323100286769,-0.019497400149703]],[[0.056731328368187,-0.019342828541994,-0.0019889965187758],[-0.034352075308561,-0.0057848626747727,0.038842063397169],[0.024670464918017,-0.0060256286524236,0.013416537083685]],[[-0.061627149581909,-0.015975970774889,-0.0050836405716836],[0.05935862287879,0.028044391423464,-0.033465124666691],[0.016020363196731,0.03443543612957,0.036819983273745]],[[-0.024529118090868,-0.10081083327532,0.011364581994712],[0.0061070444062352,0.0098960660398006,-0.016375914216042],[0.024125693365932,0.024931473657489,0.073191337287426]],[[0.040907453745604,0.059349827468395,0.038112476468086],[0.0094570396468043,0.052941609174013,0.051732853055],[-0.019294328987598,0.001109428354539,0.019375128671527]],[[-0.015825817361474,0.03673767670989,0.019869161769748],[0.011594506911933,-0.094554089009762,0.0029582707211375],[-0.0082898456603289,0.069455735385418,-0.0070738815702498]],[[0.01361674349755,0.092281445860863,0.061467602849007],[0.0058279898948967,-0.007916240952909,0.03572303801775],[-0.0645991563797,-0.023900838568807,0.003611555788666]],[[-0.0094133624807,0.028918223455548,-0.0072067240253091],[0.035771422088146,-0.0096733709797263,-0.018961954861879],[0.0077521521598101,-0.027024209499359,-0.020234473049641]],[[-0.02131836488843,0.049063052982092,-0.018574427813292],[-0.046957708895206,-0.035792853683233,0.01025455724448],[0.040216606110334,-0.017396952956915,0.01241809502244]],[[-0.027671812102199,0.076831430196762,0.0057090912014246],[0.023832302540541,-0.029678964987397,-0.0067133828997612],[-0.010263986885548,0.018062759190798,0.02962832339108]],[[-0.015704741701484,0.032335203140974,0.018724812194705],[0.019772455096245,0.008125314489007,0.010588454082608],[0.010552135296166,0.017010541632771,0.018637858331203]],[[0.11273343116045,0.1022167429328,0.07359354943037],[0.0041815200820565,-0.019259681925178,-0.006876943167299],[-0.060056746006012,-0.083460472524166,0.043457590043545]],[[0.035894848406315,-0.040455278009176,0.019268371164799],[0.096611350774765,-0.065130673348904,0.01008856203407],[-0.052673183381557,0.0063107809983194,-0.054176889359951]],[[-0.0080113196745515,-0.03332494571805,0.065882384777069],[-0.054309628903866,0.047930918633938,0.016172027215362],[0.0074553638696671,-0.021808248013258,0.028061978518963]]],[[[-0.15670122206211,0.030900150537491,-0.040337152779102],[0.2441094070673,-0.048549059778452,0.0076766032725573],[0.044894058257341,-0.028132883831859,0.03414536267519]],[[-0.019145160913467,-0.031499560922384,-0.013712678104639],[-0.0054576154798269,0.0026910435408354,0.030222432687879],[-0.0065915384329855,0.098198689520359,0.066454872488976]],[[0.020856672897935,0.063238456845284,0.057829778641462],[-0.015139286406338,-0.033796515315771,0.039235003292561],[-0.0022473714780062,-0.054864335805178,0.074300155043602]],[[-0.05498206987977,-0.016899732872844,0.085465803742409],[0.0002675311116036,0.04061446338892,0.07129131257534],[0.10748674720526,0.011656359769404,-0.051866345107555]],[[0.014199246652424,0.030235858634114,-0.0025198983494192],[-0.050845213234425,0.016726525500417,-0.017158607020974],[-0.0026631425134838,-0.0095113012939692,-0.0029606493189931]],[[0.081204630434513,0.054048966616392,-0.015228981152177],[0.033135179430246,0.076504811644554,-0.02034823782742],[0.03210249915719,0.08504793047905,0.09332612156868]],[[-0.029607467353344,-0.017887575551867,-0.083277672529221],[-0.018944362178445,0.0072304722853005,0.14741645753384],[0.0087314806878567,0.0099991578608751,0.040064681321383]],[[0.0022160215303302,-0.021132487803698,0.040962606668472],[-0.02823487855494,0.080419078469276,0.037750512361526],[0.039511043578386,-0.041656233370304,0.0061231134459376]],[[0.018260899931192,-0.10301608592272,-0.023560181260109],[-0.078421249985695,0.017001707106829,0.071624472737312],[-0.041013792157173,0.022848406806588,-0.039389986544847]],[[0.12612390518188,0.014756040647626,-0.068379200994968],[-0.018607186153531,0.013292054645717,0.16123706102371],[-0.024058934301138,0.15928703546524,-0.017841504886746]],[[-0.017487701028585,0.0630062520504,0.096373900771141],[0.064918391406536,-0.046687878668308,0.10321944952011],[0.11985825747252,0.038362752646208,0.041358269751072]],[[0.071199640631676,0.017844140529633,0.036361217498779],[-0.093260675668716,0.0071940869092941,0.055536206811666],[-0.098117403686047,0.14945732057095,0.062230508774519]],[[0.020900251343846,-0.023098785430193,0.026894913986325],[-0.0068991673178971,-0.0098383380100131,-0.061241321265697],[-0.012912602163851,-0.019485037773848,-0.0041615078225732]],[[0.027254987508059,0.043620951473713,0.050590414553881],[-0.040247399359941,-0.05017389729619,0.057961784303188],[0.056783657521009,-0.06212405115366,0.025235049426556]],[[0.10671991109848,0.022562203928828,0.12939301133156],[0.081973724067211,-0.04471181333065,0.014123455621302],[0.15584455430508,0.01396937482059,0.07207678258419]],[[0.01673417724669,-0.043245736509562,-0.047093905508518],[0.10089013725519,0.040748510509729,-0.030486989766359],[-0.031218782067299,-0.047421846538782,-0.073985122144222]],[[0.010958498343825,0.065961606800556,0.020180765539408],[0.028326142579317,0.0062078167684376,0.046636771410704],[0.11058285087347,0.040134705603123,-0.062582522630692]],[[0.037869825959206,-0.042929239571095,0.042091093957424],[0.051337461918592,0.020160162821412,-0.04200454428792],[-0.015668177977204,-5.3483963711187e-05,0.12580332159996]],[[0.033780355006456,0.025631034746766,0.00046102370833978],[-0.022190015763044,-0.041515957564116,0.089987590909004],[0.076286725699902,-0.018701693043113,-0.039366833865643]],[[-0.10857792198658,-0.13375899195671,-0.082549937069416],[-0.037585459649563,-0.03742902353406,0.064296685159206],[0.028449013829231,-0.081413969397545,0.014887610450387]],[[-0.011258265934885,0.0361642614007,0.0029893084429204],[-0.039149880409241,-0.1249166727066,-0.011286754161119],[-0.0075024468824267,0.12394178658724,-0.097146973013878]],[[-0.033958472311497,0.062800399959087,-0.051134470850229],[0.062971368432045,0.010852894745767,-0.0043211877346039],[0.12956246733665,0.032991636544466,0.0015233568847179]],[[0.0029650225769728,0.025877503678203,0.054210476577282],[0.025381222367287,-0.017562502995133,0.082612290978432],[0.020046457648277,0.17224285006523,-0.085671916604042]],[[0.028966140002012,0.057481650263071,0.13569484651089],[-0.07697706669569,0.060595773160458,0.071534067392349],[-0.014806448481977,0.093051917850971,-0.033124461770058]],[[0.0053486949764192,-0.039249684661627,0.029579374939203],[0.021874090656638,-0.081948220729828,-0.039630863815546],[-0.014990071766078,0.045734774321318,0.11238681524992]],[[0.0094099389389157,-0.047201309353113,-0.010726731270552],[-0.0042614014819264,-0.038040049374104,-0.0033408869057894],[0.015273675322533,0.067030541598797,-0.086670748889446]],[[0.017220882698894,0.095288783311844,-0.057831656187773],[0.057628933340311,0.022265896201134,-0.032397285103798],[0.011246290057898,-0.027851287275553,-0.052473641932011]],[[-0.054702524095774,-0.003785943146795,-0.031746692955494],[0.0088699227198958,0.068934768438339,0.081782586872578],[0.038023121654987,0.053349237889051,-0.059111472219229]],[[0.035895437002182,-0.091710403561592,0.0079995542764664],[0.043632481247187,-0.063069052994251,0.10507044196129],[0.08989092707634,0.013096396811306,0.085438840091228]],[[0.012166623026133,-0.061929002404213,-0.043248623609543],[0.05865416675806,0.027156138792634,-0.056429106742144],[0.048145990818739,-0.015777049586177,-0.0038220346905291]],[[-0.0052257599309087,0.0067399106919765,-0.025196287781],[-0.0083038071170449,-0.079549543559551,0.061430189758539],[-0.058848336338997,0.02429960668087,-0.03531090170145]],[[-0.096974521875381,-0.027642322704196,-0.082416117191315],[-0.095204427838326,-0.15975618362427,0.0014309185789898],[0.029798986390233,-0.013530502095819,-0.015870712697506]],[[0.14316914975643,-0.050972998142242,-0.036945220082998],[-0.037275783717632,0.020021511241794,0.069848977029324],[0.092320770025253,0.026395753026009,-0.0104860374704]],[[-0.049622900784016,0.023817837238312,-0.0065015968866646],[-0.025363467633724,0.033810313791037,-0.09166032075882],[-0.041136592626572,-0.02741333283484,-0.017056671902537]],[[0.01511687412858,-0.075112998485565,0.05557169392705],[-0.06681140512228,-0.013601461425424,-0.015555965714157],[0.087488584220409,-0.080965772271156,0.099360428750515]],[[0.060275457799435,-0.015119900926948,-0.079446688294411],[-0.02366591989994,0.035396583378315,-0.017395187169313],[-0.043998699635267,0.023498363792896,0.0070986300706863]],[[0.0075938515365124,0.072670690715313,0.026065073907375],[0.067831754684448,-0.064620420336723,-0.01386580709368],[-0.076275520026684,-0.022321572527289,-0.022497808560729]],[[0.022764666005969,-0.038480944931507,0.03797435760498],[-0.051605280488729,-0.0038848316762596,0.0046854084357619],[-0.026518039405346,0.067155472934246,0.0011531955096871]],[[0.0033447644673288,-0.021461095660925,0.022248422726989],[0.032931886613369,0.026191869750619,-0.061999130994081],[0.032917212694883,-0.013613002374768,-0.020725326612592]],[[-0.037906523793936,0.025843542069197,-0.048705734312534],[-0.066044844686985,-0.017566904425621,0.0036504250019789],[0.09812655299902,-0.030373157933354,-0.016656715422869]],[[0.039112303406,-0.00020997795218136,-0.046688448637724],[-0.026335410773754,-0.053363714367151,0.039132926613092],[0.018607623875141,0.025192610919476,0.016288466751575]],[[0.030132681131363,-0.015357963740826,0.060811717063189],[-0.00082081754226238,0.013233495876193,0.0074024223722517],[-0.020739488303661,-0.040171716362238,-0.045739341527224]],[[0.017935872077942,0.10821849107742,0.061822444200516],[0.037654131650925,0.12110725045204,-0.096151128411293],[0.0014027467695996,0.01800468377769,0.1477120667696]],[[0.016714690253139,-0.036250688135624,-0.027442030608654],[-0.094959668815136,0.036753106862307,-0.022955946624279],[0.086500309407711,0.054277043789625,0.035577923059464]],[[0.18376345932484,-0.0031087207607925,0.014855920337141],[0.067369595170021,0.070137165486813,0.013303061015904],[-0.013767003081739,0.049921948462725,-0.04975538700819]],[[-0.098019503057003,0.014523860067129,-0.06625721603632],[0.070838272571564,-0.011280212551355,0.0014809449203312],[0.11657439917326,0.099792703986168,0.018602058291435]],[[-0.045553762465715,0.092021681368351,0.071384392678738],[0.04725294187665,0.039995580911636,0.017485108226538],[0.091642044484615,-0.03237172961235,-0.0018677066545933]],[[0.074715435504913,-0.0185103751719,-0.0744499117136],[0.022259237244725,0.014145421795547,0.053878575563431],[-0.034773696213961,0.023895202204585,-0.089185878634453]],[[-0.09563722461462,0.024886678904295,0.0098921293392777],[-0.047402009367943,0.023075250908732,-0.035114899277687],[-0.05136639252305,0.036056559532881,0.023287773132324]],[[-0.020470380783081,0.080754183232784,-0.054049398750067],[0.083388015627861,-0.038425765931606,0.078470334410667],[0.027754195034504,0.036933954805136,0.035205844789743]],[[0.014870300889015,-0.0025508292019367,-0.015637751668692],[0.041466146707535,0.075171679258347,0.077523663640022],[0.058452654629946,0.054622564464808,0.094281293451786]],[[0.01172265317291,-0.0019043681677431,0.030052913352847],[-0.050912819802761,0.096474416553974,0.12759664654732],[-0.061851676553488,-0.086469009518623,-0.012304077856243]],[[-0.044414184987545,0.012354227714241,-0.026400480419397],[-0.04146346077323,-0.090071775019169,-0.046862527728081],[0.046819757670164,0.023049419745803,-0.021593427285552]],[[0.0047937063500285,-0.013556856662035,-0.0029400223866105],[0.067760549485683,-0.013324841856956,-0.016086295247078],[-0.055626586079597,-0.01917508803308,0.062656007707119]],[[0.097903288900852,0.077029854059219,-0.076202429831028],[-0.032835397869349,0.011404440738261,-0.0026083658449352],[0.023966658860445,0.024737568572164,0.017143957316875]],[[-0.064274877309799,0.020023442804813,-0.022552955895662],[0.018843868747354,-0.011115199886262,-0.010699733160436],[-0.014964397065341,0.018127638846636,-0.031373292207718]],[[-0.086401380598545,-0.080321185290813,6.8667330197059e-05],[0.0037351627834141,0.068193219602108,-0.0089009162038565],[0.037854790687561,0.035114634782076,0.10196436941624]],[[0.0009395987726748,-0.022040735930204,0.011247732676566],[0.035508789122105,-0.11552010476589,-0.006285591982305],[0.074518874287605,-0.024185737594962,-0.038730643689632]],[[0.023923074826598,-0.019190784543753,0.003658051835373],[0.021468982100487,0.028373198583722,-0.053934745490551],[0.049110744148493,0.0086125489324331,0.025478383526206]],[[-0.040602222084999,-0.0031653309706599,0.012388065457344],[-0.018655421212316,-0.027377299964428,0.0025897265877575],[-0.012860557064414,0.0085282810032368,-0.049539133906364]],[[-0.021348290145397,0.0024049156345427,0.073744095861912],[0.091172955930233,-0.0018020776333287,0.059198249131441],[-0.0034689302556217,0.034658178687096,-0.03366082906723]],[[-0.0077366032637656,-0.041856557130814,0.103146918118],[0.003521678969264,-0.025733176618814,-0.017193773761392],[0.003199613885954,-0.10771146416664,0.011502075009048]],[[0.039735741913319,-0.010270729660988,0.034659177064896],[0.02800091356039,0.01127156894654,0.00327511690557],[-0.05129086971283,-0.0078070661984384,-0.081358887255192]],[[0.15933620929718,-0.18277804553509,0.071483582258224],[0.025737587362528,0.017374824732542,-0.045860964804888],[0.020219977945089,0.22254271805286,-0.017118902876973]],[[0.0131577514112,-0.0056936494074762,-0.029530238360167],[0.090151742100716,0.10979673266411,0.063142076134682],[0.063316695392132,-0.044762574136257,0.085841335356236]],[[0.013742760755122,0.075196601450443,-0.014798986725509],[-0.010707300156355,-0.03403889760375,-0.013659975491464],[0.0014786346582696,0.019154595211148,0.0062684090808034]],[[-0.018648225814104,-0.035321097820997,0.027929456904531],[0.039397213608027,0.021683435887098,-0.0091548711061478],[0.034430410712957,0.052949596196413,0.057140462100506]],[[0.074333712458611,-0.0050271977670491,-0.045135293155909],[0.010843861848116,-0.10297072678804,0.024669343605638],[0.060265928506851,0.085649944841862,0.0050543136894703]],[[0.076668873429298,0.024518065154552,-0.12229866534472],[0.022396793588996,0.037491302937269,0.013879280537367],[0.027294700965285,-0.040850467979908,0.051000311970711]],[[0.051373332738876,0.028934791684151,-0.054516084492207],[-0.0073045608587563,-0.039515670388937,-0.02110999263823],[-0.047401025891304,0.057118773460388,-0.029504798352718]],[[-0.015475302934647,0.022257560864091,-0.06479999423027],[0.09562236815691,0.02489759773016,-0.044308342039585],[0.050683286041021,-0.012828559614718,0.063989326357841]],[[-0.04297785833478,0.076970085501671,0.11313956230879],[0.016718879342079,-0.053214590996504,0.048284482210875],[0.13252872228622,0.097065217792988,-0.094839796423912]],[[-0.0085264109075069,0.025251155719161,-0.0048625217750669],[0.093038015067577,0.030594209209085,-0.049375265836716],[0.0032208589836955,0.11717005819082,0.040601186454296]],[[0.03039313107729,0.00034222978865728,-0.034549739211798],[-0.085865698754787,-0.011761922389269,-0.009622860699892],[0.088186018168926,-0.015655968338251,-0.0057919304817915]],[[-0.003539405297488,0.0013880335027352,0.0048970049247146],[0.072081357240677,-0.0065105576068163,-0.017128869891167],[-0.021345453336835,-0.027757817879319,-0.11575552821159]],[[0.04905304312706,0.037289526313543,0.084232039749622],[-0.032398723065853,-0.03204383701086,-0.016682475805283],[0.035400547087193,0.079804725944996,-0.0074955867603421]],[[-0.050311800092459,-0.070773892104626,0.10324354469776],[0.014673097990453,-0.029916051775217,-0.037061017006636],[0.12222448736429,-0.0089458264410496,-0.029136894270778]],[[-0.01876942999661,-0.052174903452396,-0.015989007428288],[-0.00084723747568205,-0.058983374387026,-0.087966024875641],[0.052270941436291,0.015355656854808,-0.040920194238424]],[[-0.023825529962778,0.010470485314727,0.014588422141969],[0.099003903567791,0.0645497366786,0.0015699330251664],[0.0081030931323767,-0.0048297098837793,0.008356612175703]],[[0.028475724160671,0.076295897364616,-0.062575735151768],[-1.7254111298826e-05,-0.0043239509686828,0.052099481225014],[-0.063316561281681,0.015568928793073,-0.026863755658269]],[[-0.019124491140246,0.057296562939882,-0.037805996835232],[0.050243001431227,0.0023293578997254,-0.0046618483029306],[0.057984221726656,-0.00082358455983922,-0.051107484847307]],[[-0.10726244002581,0.030640378594398,0.0016026885714382],[0.0082862367853522,0.024906514212489,-0.019153302535415],[-0.038708359003067,-0.045007318258286,0.057741541415453]],[[0.033159300684929,-0.11469749361277,-0.041866570711136],[-0.060387261211872,0.044536832720041,0.043314479291439],[-0.0082117523998022,-0.11785808205605,-0.019744476303458]],[[-0.02846959605813,0.046481244266033,0.016877936199307],[-0.081485614180565,0.021380890160799,0.0074771479703486],[0.012140138074756,-0.057829666882753,-0.094640672206879]],[[0.075739167630672,0.075510777533054,0.034746468067169],[-0.0074845869094133,-0.027277382090688,0.020285148173571],[-0.016869256272912,0.02292238175869,-0.051966942846775]],[[-0.10064206272364,-0.062082719057798,-0.073863446712494],[-0.042654670774937,-0.043548848479986,-0.016447735950351],[-0.067470699548721,-0.030321694910526,-0.00955771189183]],[[-0.096127942204475,-0.013119761832058,-0.069074340164661],[-4.2779000068549e-05,-0.065301053225994,-0.070182748138905],[-0.00075630709761754,0.009889543056488,-0.045183274894953]],[[0.0054857726208866,0.047085482627153,0.040439888834953],[-0.053210224956274,-0.01635118573904,-0.024706980213523],[0.050195448100567,0.0053193685598671,-0.057300187647343]],[[-0.045778065919876,-0.041047133505344,0.011894439347088],[0.1172261312604,-0.020438808947802,0.022013586014509],[-0.067055456340313,0.057488810271025,0.049514759331942]],[[0.01758786290884,-0.099873594939709,0.0061649163253605],[0.0021542839240283,-0.013533997349441,0.12823466956615],[0.031120229512453,-0.0030433761421591,-0.0338493026793]],[[0.088840886950493,0.049197442829609,0.071888297796249],[0.003360593225807,-0.042119618505239,0.11274366080761],[-0.099658288061619,0.10614682734013,-0.010581352747977]],[[-0.089962251484394,0.021870318800211,-0.01133028883487],[-0.023637840524316,0.1472677141428,0.072739735245705],[-0.042520321905613,0.055899403989315,-0.067071713507175]],[[0.039729993790388,-0.043753523379564,-0.048230558633804],[-0.0042704748921096,-0.015636790543795,0.036671776324511],[0.10682582855225,-0.060807958245277,0.050535403192043]],[[0.052317481487989,0.049910828471184,0.042643394321203],[0.023025592789054,0.0066765937954187,0.10925459116697],[0.045611634850502,-0.04396853223443,0.0040765195153654]],[[0.028709651902318,0.094163045287132,0.022493958473206],[-0.040895044803619,-0.017822971567512,0.024474298581481],[0.011372819542885,-0.053063590079546,-0.059171959757805]],[[0.051372103393078,0.016601195558906,-0.064192906022072],[0.01078743301332,0.031888086348772,0.05877248570323],[0.056155171245337,0.086858607828617,-0.08934973180294]],[[0.034341730177402,0.22283612191677,0.062107812613249],[-0.0051131802611053,0.065294206142426,-0.048839412629604],[-0.098662100732327,0.089435823261738,0.046297993510962]],[[-0.010103880427778,-0.020835509523749,0.071737006306648],[0.03938377276063,0.0057634292170405,0.0036405886057764],[0.082476437091827,0.04324784129858,-0.02952378988266]],[[-0.020623246207833,-0.0015043605817482,-0.025259546935558],[0.048465773463249,0.00065767753403634,0.098352164030075],[0.044816054403782,-0.065819330513477,0.050342723727226]],[[0.0037227878347039,0.045179665088654,-0.048994854092598],[0.016270285472274,-0.00155950919725,0.053718402981758],[0.038028348237276,-0.056142397224903,-0.0034858672879636]],[[0.075400166213512,0.040345571935177,0.084039054811001],[0.049495350569487,-0.099587269127369,-0.011685943230987],[-0.030507002025843,-0.030863806605339,0.10956632345915]],[[-0.031585611402988,0.017813466489315,-0.013552037999034],[-0.083750218153,0.10422721505165,-0.10107319056988],[0.0013509913114831,0.073454290628433,-0.064836949110031]],[[0.063263781368732,-0.029647989198565,-0.044041518121958],[0.036040060222149,0.03828240185976,0.061684880405664],[0.021027905866504,0.0023024897091091,0.057291701436043]],[[0.11338762938976,-0.07740656286478,0.0024986693169922],[-0.046964589506388,-0.07401467114687,-0.022502914071083],[-0.0068460893817246,0.076645269989967,-0.051495783030987]],[[0.057382851839066,0.04646398127079,-0.033968351781368],[0.072172060608864,-0.088724330067635,-0.011111847124994],[0.048719521611929,-0.036061588674784,0.019250735640526]],[[0.0014934111386538,0.053807023912668,0.091483741998672],[0.020796034485102,0.095763951539993,-0.038782250136137],[0.032664928585291,0.13119134306908,0.063952699303627]],[[-0.051533654332161,0.020024420693517,-0.031587287783623],[0.064849026501179,-0.015423014760017,0.011613426730037],[0.078063562512398,0.0095290588214993,0.084435500204563]],[[0.10679729282856,-0.053622670471668,0.04829853028059],[0.034423377364874,0.030437430366874,-0.01746428757906],[0.018203534185886,0.049575868993998,-0.093296773731709]],[[0.074756748974323,0.10095182061195,-0.073559425771236],[-0.010142005980015,-0.053474061191082,0.088677100837231],[0.060540456324816,-0.051709350198507,0.016464129090309]],[[-0.012321350164711,0.0090735321864486,0.036853201687336],[-0.05230125784874,0.011503492482007,0.063932113349438],[0.032180711627007,-0.060363989323378,0.038763020187616]],[[-0.071275256574154,-0.11731514334679,0.016787227243185],[0.0033921613357961,0.036322217434645,0.0099216559901834],[0.027099125087261,0.0062230681069195,0.017000770196319]],[[-0.082298293709755,-0.11261891573668,-0.016958741471171],[-0.066671408712864,-0.060516331344843,-0.037084814161062],[0.012010123580694,0.0018810880137607,-0.014738152734935]],[[0.015227388590574,-0.062049187719822,-0.096420027315617],[-0.012563774362206,0.0011573983356357,0.081170037388802],[0.10308668762445,0.025934882462025,-0.063288800418377]],[[-0.0062350872904062,0.0029804897494614,-0.045387834310532],[0.025349348783493,-0.0033155872952193,0.016138462349772],[-0.07209425419569,-0.074512399733067,-0.035063471645117]],[[-0.088254161179066,0.08235315233469,0.10202302783728],[0.086119785904884,0.008710409514606,-0.052560307085514],[0.033279918134212,0.081988461315632,0.033587455749512]],[[-0.061500869691372,0.14128719270229,-0.042353615164757],[0.065659642219543,0.0091605102643371,-0.0089770834892988],[0.030190883204341,-0.048201009631157,0.037198271602392]],[[-0.093016602098942,-0.049893956631422,-0.031650077551603],[0.07612968981266,0.0048087118193507,-0.059112887829542],[0.027084849774837,-0.030931640416384,-0.025603966787457]],[[0.028238642960787,-0.038451757282019,-0.064316131174564],[-0.091127544641495,0.09242207556963,-0.0027321416418999],[0.071577668190002,-0.023904319852591,-0.016340604051948]],[[-0.036358825862408,-0.024882996454835,0.10386341810226],[0.015803918242455,-0.031619716435671,0.053385648876429],[0.061090495437384,-0.087943971157074,0.0424824655056]],[[-0.030826093629003,-0.05309797078371,-0.028304262086749],[-0.0010361655149609,-0.1136077567935,0.0078092385083437],[-0.018681446090341,-0.039650943130255,0.053558468818665]],[[0.068700313568115,-0.054033447057009,-0.10110557079315],[-0.023303115740418,-0.069813601672649,-0.0045131808146834],[0.01438628602773,0.071756131947041,0.027274923399091]],[[-0.026529535651207,0.045646987855434,0.0067899939604104],[0.014542933553457,0.048792455345392,-0.073889948427677],[0.020475603640079,0.034342933446169,-0.012930106371641]],[[-0.013935239054263,0.021171486005187,-0.049404092133045],[-0.033875335007906,-0.053017482161522,-0.00036221172194928],[-0.000739541137591,-0.0074933469295502,0.064726941287518]],[[0.15533256530762,-0.039491914212704,-0.063414923846722],[0.0069342097267509,0.028797218576074,-0.066104710102081],[0.095252469182014,-0.028494972735643,0.02557579614222]],[[-0.031289543956518,0.095313869416714,-0.044826056808233],[0.091975957155228,-0.024249378591776,0.016240870580077],[0.02221992239356,0.074016138911247,-0.022005498409271]],[[0.084597259759903,-0.067145049571991,0.024924144148827],[0.035327404737473,-0.050859153270721,-0.037704847753048],[0.041178122162819,-0.012832257896662,0.066675059497356]],[[-0.0035265565384179,0.038386482745409,0.027230773121119],[-0.045566659420729,-0.029700698330998,0.054253857582808],[-0.0033246893435717,0.045175988227129,-0.14810630679131]],[[-0.015313455834985,0.015016719698906,-0.041152141988277],[0.08811666816473,-0.00011838844511658,-0.017458517104387],[-0.0027407680172473,-0.065598301589489,0.016906656324863]]],[[[0.0015435731038451,-0.059398617595434,0.00059618928935379],[-0.06894875317812,0.0090990383177996,0.054797112941742],[0.039796587079763,-0.0088471882045269,0.021186353638768]],[[-0.033087059855461,-0.085669964551926,0.080463476479053],[0.026037398725748,-0.0040475963614881,-0.00449059298262],[-0.060137551277876,-0.061676520854235,0.0070179095491767]],[[-0.025899831205606,-0.058112323284149,-0.011845467612147],[-0.035861730575562,-0.0082377260550857,-0.017220944166183],[0.0510498508811,-0.058848645538092,0.06063649430871]],[[0.15103100240231,-0.047414157539606,0.047022968530655],[0.056061491370201,0.073527343571186,0.08870530128479],[0.052313063293695,0.026642683893442,-0.1032555103302]],[[-0.0090812081471086,-0.00032814082805999,-0.081846080720425],[0.042041629552841,0.020595390349627,0.11088410764933],[0.058647207915783,0.038021165877581,-0.038097381591797]],[[0.0033185735810548,0.047981917858124,0.050663214176893],[-0.041991848498583,-0.034017331898212,-0.00051462347619236],[0.076335661113262,-0.076140038669109,-0.0071329916827381]],[[-0.01185461692512,-0.012928598560393,-0.0059281857684255],[-0.078757755458355,-0.06473545730114,-0.012383668683469],[0.0017825770191848,-0.013217932544649,-0.049126841127872]],[[0.015332226641476,0.023650055751204,-0.034377843141556],[-0.042841024696827,-0.088832244277,0.067744493484497],[0.051813039928675,0.058508340269327,0.11323451250792]],[[-0.027067488059402,0.087334260344505,0.065999656915665],[0.089062087237835,-0.058289535343647,-0.034962512552738],[0.081806905567646,0.095704972743988,-0.042939379811287]],[[0.011805660091341,0.084066592156887,0.10006127506495],[0.15630081295967,0.18512113392353,0.083675235509872],[0.030275898054242,0.024673890322447,-0.067043490707874]],[[0.027462549507618,0.012769411318004,0.00069189089117572],[0.022964352741838,0.09577152878046,0.082020848989487],[-0.029327511787415,-0.045233409851789,0.0023491634055972]],[[0.032202273607254,0.0082371355965734,-0.017472557723522],[0.014718080870807,-0.038489263504744,0.0754733979702],[0.061634659767151,0.012175383046269,-0.057401057332754]],[[0.043379817157984,0.017392171546817,-0.01061721239239],[0.0032612045761198,-0.020558182150126,-0.0018942471360788],[-0.026763955131173,0.027141816914082,-0.043034009635448]],[[0.019173024222255,0.096994213759899,-0.001320147071965],[0.018472133204341,0.075928822159767,-0.0096902642399073],[-0.081527873873711,0.044619996100664,0.025090524926782]],[[0.016320839524269,0.042058922350407,-0.055772069841623],[0.068371333181858,0.073300406336784,0.080021739006042],[0.067924559116364,0.097472563385963,0.052780915051699]],[[-0.072529844939709,0.0022137982305139,0.055817760527134],[-0.10925275087357,-0.095806911587715,-0.069178715348244],[-0.055431790649891,-0.059778612107038,-0.083483628928661]],[[0.061462193727493,0.09934863448143,0.0061957682482898],[-0.02736509218812,-0.039868637919426,0.14077280461788],[0.032012373209,0.037667896598577,0.0032318744342774]],[[0.0092709688469768,0.022021261975169,0.017937624827027],[-0.0082487054169178,-0.038434211164713,0.078513599932194],[0.019916882738471,-0.021991260349751,0.082234792411327]],[[0.067849479615688,-0.074941739439964,0.012131819501519],[0.0073729502037168,0.018560297787189,-0.046282254159451],[0.014390480704606,0.048886608332396,0.024712001904845]],[[-0.011138549074531,0.097710534930229,0.10932984948158],[0.030594177544117,-0.013750057667494,0.022860553115606],[0.10094965994358,0.078580766916275,0.0037332933861762]],[[-0.022209050133824,-0.0812973305583,0.099281035363674],[-0.0078016459010541,0.023889107629657,-0.0309176184237],[0.030593222007155,-0.10460351407528,0.0165472086519]],[[0.075471766293049,0.038399621844292,0.083302669227123],[0.052843410521746,0.078901097178459,0.071830213069916],[0.064658366143703,-0.020829416811466,-0.026918986812234]],[[0.022963020950556,-0.046527288854122,-0.066749915480614],[-0.046726178377867,-0.01430357247591,0.060365591198206],[0.0080081643536687,-0.017871638759971,0.031054774299264]],[[0.01666853018105,0.049663528800011,-0.0090247401967645],[-0.0053486633114517,0.083785966038704,0.050345975905657],[-0.1293950676918,-0.037400797009468,-0.082993879914284]],[[0.09714625030756,0.038970693945885,-0.079696953296661],[0.048842255026102,0.11581814289093,0.053966872394085],[-0.0058153248392045,0.052237831056118,0.084080725908279]],[[0.0048172725364566,-0.016454257071018,0.10861726850271],[0.0047773667611182,-0.051054537296295,-0.0070923124440014],[-0.057769205421209,0.00079881760757416,0.10281848162413]],[[0.0001227323373314,-0.021372247487307,0.058807909488678],[0.075000531971455,-0.068091556429863,0.051227547228336],[0.0059965015389025,-0.002526645315811,0.042702626436949]],[[0.087960697710514,-0.085161961615086,0.069238230586052],[-0.069528259336948,-0.036073353141546,-0.0061580343171954],[-0.063365578651428,-0.089435249567032,-0.012259493581951]],[[0.0093618808314204,0.036523651331663,0.036378335207701],[0.031603500247002,0.053905453532934,-0.031650859862566],[0.055521231144667,0.08571433275938,-0.026545103639364]],[[0.025980766862631,-0.040069002658129,0.083199121057987],[-0.008613171055913,0.045108892023563,0.012191860936582],[0.052837427705526,-0.20546342432499,0.058928918093443]],[[-0.0068672155030072,0.041485991328955,-0.037967167794704],[-0.036705881357193,0.041166123002768,0.029336361214519],[0.12144772708416,0.0069250594824553,-0.062654659152031]],[[0.0023780174087733,-0.020748192444444,0.02448758482933],[-0.037373043596745,0.026181302964687,0.0085036186501384],[0.074364557862282,0.070010907948017,-0.015385089442134]],[[-0.010596884414554,0.016814775764942,0.09427648037672],[-0.019266465678811,0.027688520029187,0.039079938083887],[0.035638473927975,0.066157765686512,0.028552452102304]],[[-0.039764311164618,0.11170116066933,-0.0076059498824179],[0.066948220133781,-0.044502906501293,0.02801745198667],[0.034697443246841,-0.024058703333139,-0.029287623241544]],[[-0.052523590624332,0.010988496243954,-0.0091160722076893],[0.013638272881508,-0.02772375755012,0.028538823127747],[-0.043482754379511,0.053585018962622,0.023007264360785]],[[-0.067219741642475,-0.004105341155082,0.024831129238009],[-0.077243976294994,-0.023560190573335,0.035354714840651],[0.0088916337117553,-0.037654172629118,-0.026189995929599]],[[-0.011603179387748,-0.043161548674107,-0.017033711075783],[-0.019887525588274,0.010203615762293,-0.0015591942938045],[-0.037727735936642,-0.019264586269855,0.016468081623316]],[[0.010142886079848,-0.068988166749477,-0.011088970117271],[-0.012763595208526,0.051517616957426,0.024662129580975],[0.0092840613797307,-0.021869646385312,-0.055196139961481]],[[0.11257693916559,-0.041254840791225,-0.10462202131748],[0.088104344904423,0.040947262197733,0.013598985038698],[-0.01176782976836,-0.0041500278748572,-0.047021899372339]],[[-0.051671054214239,0.026069527491927,0.047434892505407],[0.025046076625586,-0.026373978704214,-0.011411914601922],[0.0047614886425436,0.10321958363056,-0.025951767340302]],[[0.015109070576727,0.0099154934287071,0.00078728049993515],[-0.025513168424368,0.0022994871251285,0.088568732142448],[0.03279610350728,0.047535434365273,-0.10244611650705]],[[-0.0071418392471969,0.093532904982567,0.033370111137629],[-0.011851979419589,-0.009206005372107,0.028781149536371],[0.0029764757491648,0.037049815058708,-0.039926838129759]],[[-0.010474594309926,0.010039025917649,0.0020187466870993],[0.018166311085224,0.10000392049551,0.058111287653446],[0.067408107221127,-0.034287191927433,-0.047740578651428]],[[0.044399991631508,0.045342184603214,0.050390884280205],[0.038122233003378,0.07257879525423,-0.019241100177169],[-0.0041407658718526,-0.027692418545485,-0.0083969896659255]],[[0.076564490795135,-0.030626155436039,0.094047449529171],[-0.046819493174553,0.039536826312542,-0.006443998310715],[0.015649177134037,-0.017223559319973,0.041520360857248]],[[0.012415641918778,0.068331681191921,0.0397744551301],[0.021974010393023,-0.056309759616852,0.050078850239515],[0.066084824502468,0.02791814878583,0.083907671272755]],[[-0.014722124673426,-0.032707922160625,0.063888199627399],[0.054344598203897,-0.022113481536508,-0.12462382018566],[0.0033645967487246,-0.047133713960648,-0.008841366507113]],[[0.084475368261337,-0.01647512614727,-0.0098323598504066],[0.021867206320167,0.0062965624965727,-0.010401856154203],[-0.0051548634655774,0.018121927976608,-0.068281553685665]],[[0.15567269921303,-0.041139233857393,0.062050394713879],[-0.13342972099781,0.13001801073551,-0.021952390670776],[0.093122079968452,-0.043090183287859,0.070539973676205]],[[0.032009303569794,-0.025205209851265,-0.0079739764332771],[-0.074143327772617,0.080786176025867,-0.0082115223631263],[-0.052236769348383,-0.015503543429077,-0.055292151868343]],[[-0.027154752984643,-0.021973030641675,-0.087862640619278],[-0.0057233017869294,0.037323269993067,-0.024022616446018],[-0.055939376354218,-0.0053166095167398,-0.031982023268938]],[[0.024400871247053,0.11606077104807,0.095977619290352],[0.0076122540049255,0.074051089584827,-0.0085325771942735],[0.020785484462976,-0.0097997514531016,0.0052856248803437]],[[-0.011246197856963,0.0051416354253888,-0.059776846319437],[-0.023517338559031,0.10601001232862,0.058864329010248],[0.016193171963096,0.032036546617746,-0.041706521064043]],[[-0.07174426317215,0.078446887433529,-0.026015747338533],[0.095914445817471,-0.010773025453091,-0.03871102258563],[1.8030659703072e-05,-0.035376343876123,-0.016295218840241]],[[0.071166276931763,0.0033855768851936,0.077805079519749],[0.05578563734889,-0.095821596682072,0.039678126573563],[0.048411354422569,0.053738787770271,-0.025858853012323]],[[-0.064711533486843,0.059567458927631,-0.031267151236534],[0.094112902879715,-0.01739165186882,-0.011872636154294],[0.027498204261065,0.03598640859127,0.042744964361191]],[[0.0840053409338,0.024733647704124,-0.044284380972385],[-0.030843423679471,0.063668876886368,0.026617389172316],[0.0045334747992456,-0.014768624678254,-0.015634408220649]],[[-0.020590133965015,0.01171719096601,-0.029706923291087],[0.085098549723625,0.068339437246323,-0.0017598874401301],[0.0045823841355741,-0.05534989759326,-0.020679356530309]],[[0.0020194137468934,0.015886578708887,0.0056619653478265],[0.031401868909597,-0.037037469446659,0.073936462402344],[0.14102406799793,0.051052745431662,0.048892915248871]],[[-0.005799500271678,-0.032402008771896,0.033438075333834],[-0.11758301407099,0.075636088848114,-0.054541625082493],[-0.023684227839112,0.051355198025703,0.047923751175404]],[[0.014004291035235,0.028783436864614,0.083827279508114],[-0.095642350614071,0.034381609410048,-0.074157983064651],[-0.091638438403606,0.019195139408112,0.06685845553875]],[[-0.046768266707659,-0.077463082969189,-0.01329283323139],[0.0085145551711321,0.071473799645901,0.035784192383289],[-0.081019081175327,-0.018369885161519,-0.0609135851264]],[[0.02129927650094,-0.011521426029503,0.0041806902736425],[0.017957028001547,-0.014953018166125,-0.014818517491221],[0.014147691428661,-0.0020794768352062,-0.0066702105104923]],[[-0.035214863717556,0.046308491379023,-0.046518173068762],[0.027355954051018,-0.051143873482943,0.053766261786222],[0.014905705116689,0.067507706582546,-0.10279864817858]],[[-0.018625738099217,0.056157153099775,-0.051178425550461],[-0.080101132392883,-0.027253102511168,-0.065012760460377],[-0.070290960371494,-0.0065833842381835,0.02988432534039]],[[0.068910665810108,-0.038115460425615,-0.11743997782469],[-0.084219843149185,0.062790669500828,0.0072545525617898],[0.017853675410151,0.04243279248476,-0.12150377780199]],[[-0.017534151673317,0.1765360981226,0.042074952274561],[0.078029528260231,0.09825786948204,0.00047691832878627],[0.046678807586432,-0.015915269032121,-0.056902293115854]],[[-0.031113618984818,0.013255476951599,-0.046519499272108],[0.1366263628006,0.012501547113061,0.098055422306061],[-0.028630578890443,0.12666983902454,-0.065700612962246]],[[-0.0185232963413,-0.015744630247355,-0.035427451133728],[-0.021517058834434,0.014072308316827,0.0060572284273803],[-0.0077714407816529,0.029628053307533,-0.047546606510878]],[[-0.0120949735865,0.055124830454588,0.021183382719755],[-0.037211272865534,-0.0010335296392441,0.04914116114378],[0.055154547095299,0.0024356609210372,0.001492447918281]],[[-0.046991627663374,0.010379222221673,-0.0099124582484365],[0.0078736776486039,0.011634968221188,0.032897610217333],[0.043459955602884,0.005315697286278,-0.00011156848631799]],[[-0.047094244509935,0.052816353738308,0.052901890128851],[0.026655774563551,-0.031836301088333,0.024450408294797],[0.067776933312416,0.059298917651176,0.048371866345406]],[[0.013857963494956,-0.037870947271585,0.048871457576752],[-0.060304265469313,-0.057099658995867,-0.024660181254148],[0.073535926640034,-0.032719664275646,-0.023952541872859]],[[0.016574833542109,-0.051828872412443,0.057660527527332],[0.092122919857502,0.0093033984303474,-0.031539879739285],[-0.018598012626171,0.03400994092226,0.0051201730966568]],[[0.0049221953377128,-0.04392958804965,0.0093343947082758],[0.031823202967644,-0.02925992757082,-0.0049494481645525],[0.1203394010663,0.026722071692348,-0.03406448662281]],[[0.011414790526032,0.066912360489368,0.014709162525833],[-0.027611497789621,-0.029524615034461,0.03022276610136],[-0.1099813580513,0.038640443235636,0.038422375917435]],[[0.063852675259113,0.040319096297026,0.019752753898501],[-0.021532762795687,0.079789236187935,0.00948032643646],[0.035101842135191,0.093663789331913,-0.063867591321468]],[[0.071371860802174,0.043878771364689,0.07082561403513],[0.09797615557909,-0.05861958861351,-0.047834970057011],[0.077676147222519,-0.012902985326946,0.014873431995511]],[[0.047823932021856,-0.012283904477954,0.10637982934713],[-0.017936620861292,0.02250799909234,-0.018215237185359],[-0.046320859342813,0.068860538303852,0.092209346592426]],[[0.0060154786333442,-0.017509819939733,0.028860351070762],[0.0067334799095988,-0.034122638404369,-0.11699309200048],[0.049949366599321,-0.0056272624060512,-0.018308792263269]],[[0.027140073478222,0.031036188825965,-0.0030326505657285],[-0.026049755513668,0.057057932019234,0.0095318993553519],[0.027002299204469,0.084681823849678,0.087805636227131]],[[-0.017998835071921,0.0092642633244395,0.035107795149088],[0.058336518704891,-0.029010683298111,0.039113767445087],[-0.093289159238338,0.032499726861715,0.00308434269391]],[[0.033385265618563,-0.034435275942087,-0.047143649309874],[0.062399975955486,-0.042345944792032,0.098563343286514],[0.029625296592712,0.008192746900022,-0.054364867508411]],[[-0.021860687062144,0.030836507678032,0.046924713999033],[0.019108101725578,0.025183135643601,0.014088431373239],[0.053775202482939,0.043421655893326,0.0066584963351488]],[[0.070779576897621,-0.050807438790798,-0.0016654861392453],[-0.016419028863311,0.079583287239075,0.014938208274543],[-0.028250196948647,-0.019834168255329,-0.020250260829926]],[[0.089653491973877,-0.011909882538021,0.019638219848275],[0.0053176288492978,0.030827613547444,-0.055607203394175],[0.14089697599411,-0.037334464490414,-0.014531908556819]],[[0.036313138902187,0.017066854983568,-0.028452020138502],[-0.028666457161307,0.0022915212903172,0.027845973148942],[0.071442469954491,0.054587926715612,0.062609933316708]],[[-0.020465714856982,-0.0096042202785611,0.025127172470093],[0.089051358401775,-0.010766636580229,-0.0099739590659738],[0.060692146420479,-0.070692971348763,0.079021297395229]],[[0.1137875020504,-0.008045170456171,-0.083678811788559],[0.03946914896369,-0.047969549894333,0.045921854674816],[0.054603990167379,0.026840439066291,-0.010794250294566]],[[-0.11610989272594,0.033053368330002,-0.13345377147198],[-0.018704188987613,0.061459116637707,0.080146387219429],[-0.0078460583463311,0.021464152261615,0.079019345343113]],[[-0.029685340821743,0.0050953715108335,0.03013688698411],[-0.076095312833786,0.1455786973238,0.11623760312796],[0.026815706863999,0.032726369798183,-0.028601540252566]],[[0.087662123143673,0.042445279657841,-0.010851149447262],[-0.028685806319118,0.01733261346817,0.057728473097086],[-0.063689067959785,0.049007747322321,-0.0038197024259716]],[[-0.051153741776943,0.035547453910112,-0.064839698374271],[0.067236170172691,-0.028252897784114,-0.041896231472492],[-0.023034477606416,0.090597093105316,-0.0019421399338171]],[[0.017518563196063,-0.013105861842632,0.025301763787866],[0.11937727034092,0.038714822381735,0.076327756047249],[0.010031785815954,0.0035583765711635,0.022944508120418]],[[0.0057367696426809,-0.031718362122774,0.017421612516046],[-0.029942562803626,0.051283068954945,0.0069749550893903],[0.070601001381874,-0.0022711914498359,0.030585791915655]],[[0.038869939744473,0.0790651217103,-0.077190987765789],[-0.0074929436668754,-0.011767510324717,-0.0090774660930037],[-0.031456306576729,-0.011463955044746,-0.034127227962017]],[[-0.012199081480503,0.071875274181366,0.051292788237333],[0.052460629492998,0.037357497960329,0.10267198830843],[-0.054931070655584,-0.0033429858740419,-0.042881220579147]],[[0.012237712740898,0.022724943235517,-0.04981691390276],[-0.0012440927093849,0.014758692122996,0.10892013460398],[0.1218414157629,0.067061007022858,0.059374932199717]],[[0.0047109262086451,-0.030897978693247,0.094006694853306],[0.012642167508602,-0.0055154231376946,0.10024052858353],[-0.035939529538155,-0.01524977106601,0.015631003305316]],[[-0.017818560823798,0.0092437947168946,-0.051096759736538],[0.058357354253531,0.077075116336346,0.0082472842186689],[0.061147820204496,0.01539964415133,0.0092152636498213]],[[0.0018452138174325,-0.091951914131641,-0.064400896430016],[0.019723834469914,0.0087831160053611,0.058164685964584],[0.026724833995104,-0.075477927923203,0.039011787623167]],[[0.085733190178871,0.073980040848255,0.0055710352025926],[-0.017535526305437,0.049631934612989,0.0029500077944249],[0.093765497207642,-0.0083819767460227,0.0092397127300501]],[[-0.096180655062199,0.061804980039597,-0.0052479207515717],[0.025701524689794,-0.089443735778332,0.028344066813588],[-0.013617003336549,0.026174504309893,-0.079925276339054]],[[-0.012105927802622,0.048830412328243,0.0071508274413645],[-0.013007364235818,0.0099248951300979,-0.026475897058845],[-0.029427755624056,0.0045245853252709,-0.077955737709999]],[[-0.046446226537228,0.038692601025105,-0.048474740236998],[0.038603853434324,0.02509942278266,0.064083524048328],[0.018876241520047,0.077723354101181,0.046662088483572]],[[0.061751786619425,0.050253994762897,-0.034791383892298],[-0.056823827326298,0.009724791161716,0.053468272089958],[0.019435934722424,0.076284773647785,0.0025305123999715]],[[0.017135920003057,0.076954789459705,-0.00068267394090071],[-0.0013255454832688,0.057151410728693,0.045049548149109],[0.12928895652294,-0.031580992043018,0.015808869153261]],[[0.01399155613035,0.023135716095567,0.023281736299396],[-0.017274199053645,0.042130883783102,0.0008205235353671],[-0.0090382266789675,0.043422434478998,-0.054177407175303]],[[0.078704059123993,-0.16649577021599,-0.001838107011281],[-0.09797640889883,0.027445131912827,-0.040178317576647],[0.026610717177391,-0.037713728845119,0.054479897022247]],[[0.063121303915977,-0.037234142422676,0.14064559340477],[-0.024163680151105,-0.11546051502228,-0.099447309970856],[0.10158316791058,-0.030127482488751,0.058739323168993]],[[0.060167126357555,-0.015266990289092,0.00110700330697],[-0.0017482406692579,0.014285616576672,-0.062641888856888],[0.028365716338158,-0.016948780044913,-0.034462984651327]],[[-0.020151240751147,0.07294300198555,0.015849061310291],[0.048527352511883,0.078670158982277,0.073340572416782],[-0.031998991966248,0.088977642357349,-0.035866271704435]],[[-0.0079489722847939,-0.0048575452528894,-0.11214293539524],[0.033588025718927,-0.075608968734741,-0.066437773406506],[0.035500530153513,-0.004064894746989,-0.11137716472149]],[[0.075097821652889,-0.078056216239929,0.041386567056179],[-0.066246628761292,-0.044324267655611,-0.10785321891308],[0.093932248651981,-0.062359265983105,0.078380592167377]],[[-0.0094438269734383,-0.026138007640839,-0.09387219697237],[-0.018327709287405,0.045419100672007,0.05775523558259],[-0.030928462743759,-0.041498061269522,-0.085397027432919]],[[0.00078451388981193,0.11952083557844,0.064220033586025],[-0.019650150090456,0.0097401440143585,0.013909644447267],[1.1125664059364e-05,0.036091540008783,-0.021536741405725]],[[0.024787874892354,0.020940998569131,-0.01300277095288],[-0.04816573113203,0.099442780017853,-0.03818029537797],[0.10032214224339,0.098126113414764,0.060763366520405]],[[-0.023840874433517,0.0024513753596693,0.047193516045809],[0.082278952002525,0.036405809223652,0.072114683687687],[0.025432765483856,0.025286080315709,0.0064128604717553]],[[0.0019691453780979,-0.048834480345249,-0.04061821475625],[-0.0023058622609824,0.081584095954895,0.044254843145609],[-0.053054191172123,0.0011630074586719,-0.022177716717124]],[[-0.063800148665905,-0.082148618996143,-0.041493359953165],[0.051569472998381,0.013159221969545,-0.039630394428968],[0.01437141187489,0.0036564969923347,0.022497314959764]],[[-0.073104076087475,0.033937457948923,-0.051650352776051],[-0.027619926258922,0.033791478723288,-0.060909323394299],[-0.092630580067635,-0.034580539911985,-0.071448028087616]],[[0.061237685382366,0.064952023327351,0.054221265017986],[0.094186596572399,-0.010076910257339,0.015267457813025],[0.064471445977688,0.060857735574245,0.043449614197016]],[[0.01612701267004,0.010769128799438,0.057970918715],[-0.017757480964065,0.046506498008966,-0.056560657918453],[0.0098090656101704,0.019080029800534,0.037093434482813]],[[-0.025254603475332,-0.038352616131306,0.019759660586715],[0.043563056737185,-0.027158629149199,0.11723099648952],[0.039577312767506,0.036364015191793,-0.077569060027599]],[[-0.041412219405174,0.0027944578323513,0.0073917806148529],[0.02515959367156,0.067136503756046,0.031622841954231],[0.034255672246218,0.10129474103451,-0.051296275109053]],[[-0.050862871110439,-0.02021499723196,0.017466120421886],[0.018670175224543,-0.012710619717836,-0.011172940023243],[-0.024611465632915,0.018975993618369,0.046992167830467]],[[-0.00272375671193,0.085635378956795,-0.0028171669691801],[0.11183398216963,0.036527372896671,0.0099456859752536],[0.011965529993176,0.06594579666853,0.10743437707424]],[[0.051756270229816,0.022721130400896,0.078757777810097],[0.032734353095293,0.034016322344542,-0.003421587869525],[-0.0089939003810287,-0.061109911650419,-0.056413449347019]]],[[[-0.0028293051291257,-0.016467802226543,0.040265575051308],[0.038243506103754,0.067708283662796,0.067253969609737],[-0.048303410410881,-0.03238195925951,-0.07051494717598]],[[-0.041928987950087,-0.024037435650826,0.024382209405303],[0.026325354352593,0.016458382830024,0.0058297645300627],[0.026182994246483,0.039817322045565,-0.037061009556055]],[[0.034174978733063,-0.048966448754072,0.023597517982125],[-0.014920664951205,-0.022209547460079,-0.063274972140789],[-0.022817492485046,-0.040963184088469,0.029221035540104]],[[-0.074095956981182,0.02606575191021,-0.048726290464401],[-0.078213669359684,-0.090958990156651,-0.0025254434440285],[0.003515456803143,-0.04657219350338,0.07242888212204]],[[-0.00012474265531637,-0.090617217123508,0.018411511555314],[-0.0176474545151,-0.060103792697191,-0.018692370504141],[0.030577078461647,0.018611986190081,0.03915936127305]],[[0.00719951139763,-0.022023923695087,-0.041373234242201],[0.089940510690212,-0.071032457053661,0.0025185307022184],[-0.024145886301994,-0.062644742429256,0.055390603840351]],[[0.006306835450232,0.015205846168101,-0.005024494137615],[0.023231692612171,-0.0025795213878155,-0.0026797244790941],[0.022981017827988,0.022999400272965,0.020476412028074]],[[-0.067249186336994,-0.015374002046883,-0.050464253872633],[0.095960065722466,0.039211802184582,-0.012606754899025],[-0.030440635979176,0.0038822842761874,-0.063442178070545]],[[-0.017613869160414,-0.050854485481977,-0.029047377407551],[0.0017688246443868,-0.019658587872982,0.035445343703032],[0.0069004190154374,0.031429655849934,-0.098485343158245]],[[-0.072403483092785,-0.0034459426533431,-0.051857944577932],[0.063110888004303,0.030305335298181,-0.022549122571945],[-0.0060267602093518,-0.0052229156717658,0.050056841224432]],[[0.002341783605516,-0.0059901070781052,0.049931984394789],[-0.049500804394484,0.028799520805478,0.014853190630674],[-0.014938766136765,0.04501985013485,-0.070622079074383]],[[-0.0092035848647356,0.0010636924998835,-0.049161810427904],[0.015340372920036,0.024321138858795,0.056780088692904],[-0.0082948338240385,-0.079107470810413,-0.017271963879466]],[[-0.05015205219388,-0.038717545568943,0.13908231258392],[0.066906027495861,-0.045143183320761,0.050129298120737],[-0.042748551815748,-0.029961561784148,-0.0260005351156]],[[0.046159498393536,-0.051363188773394,-0.028874974697828],[0.042442176491022,-0.025022905319929,0.01019106246531],[-0.057543989270926,0.0056668608449399,0.025488598272204]],[[-0.021262668073177,0.0060636014677584,0.027205154299736],[0.024123687297106,-0.0054751695133746,-0.0013217412633821],[0.0085184592753649,0.005114228464663,0.0089579811319709]],[[-0.069400496780872,0.067387066781521,0.013913929462433],[0.0064876088872552,-0.043518263846636,0.034242369234562],[-0.01810671761632,-0.055569957941771,0.062375474721193]],[[-0.052893545478582,0.070764951407909,-0.0060218055732548],[0.021197689697146,-0.052205260843039,0.019520265981555],[-0.063803821802139,0.012924585491419,0.035872638225555]],[[-0.045475386083126,0.10188493877649,-0.036917064338923],[-0.022437673062086,0.039754204452038,0.012561712414026],[0.046376205980778,0.092053063213825,-0.046621818095446]],[[-0.020213818177581,0.056809727102518,0.0019786404445767],[0.098249025642872,0.073566325008869,-0.021374195814133],[-0.051321376115084,-0.020895456895232,-0.042634196579456]],[[0.033809259533882,-0.0036909244954586,-0.016869014129043],[-0.077484354376793,0.085409767925739,0.03327664360404],[-0.052524905651808,0.013024921528995,-0.013365073129535]],[[-0.016164053231478,0.015651719644666,-0.06446447968483],[0.016108151525259,0.02923546358943,0.050738055258989],[0.026522614061832,-0.042561933398247,-0.060704600065947]],[[0.012893469072878,-0.0022032444830984,0.054129358381033],[0.062196578830481,0.071658529341221,0.048564817756414],[0.035025354474783,-0.046857386827469,-0.025247190147638]],[[0.024209735915065,0.0445845015347,-0.0086937770247459],[-0.011089198291302,0.07206068187952,0.037997435778379],[-0.0082966350018978,-0.016789386048913,0.0085815899074078]],[[-0.007506703492254,-0.014489029534161,-0.01646638289094],[-0.011375442147255,-0.081157386302948,-0.050444830209017],[0.11855170875788,-0.071437738835812,-0.085240080952644]],[[-0.0050757694989443,-0.073664426803589,-0.025419527664781],[-0.012263990007341,-0.025506895035505,-0.0018120444146916],[0.063394822180271,0.047657679766417,-0.086119703948498]],[[-0.0058798831887543,0.026576751843095,-0.019880972802639],[-0.027615701779723,0.044822741299868,0.037930231541395],[-0.076793789863586,0.042181894183159,0.041996374726295]],[[0.037190172821283,-0.0098292091861367,-0.013330871239305],[0.028475740924478,0.055199224501848,-0.0010168357985094],[-0.0091643473133445,-0.01588542945683,0.013291251845658]],[[0.025618012994528,0.037940848618746,0.076871104538441],[0.034120716154575,-0.043562415987253,-0.05921258404851],[-0.050765663385391,0.032562602311373,0.032497551292181]],[[-0.038521256297827,-0.04713873192668,0.012644804082811],[-0.062551662325859,-0.064348585903645,0.024461714550853],[-0.0077632390893996,-0.041047520935535,0.12221977114677]],[[0.072402492165565,0.056455217301846,0.011294295080006],[-0.0053606419824064,0.0087072374299169,-0.064665392041206],[0.098896704614162,-0.065198123455048,0.028400253504515]],[[0.0032656935509294,0.078924968838692,0.06799091398716],[-0.018757652491331,0.0052436841651797,-0.019226506352425],[-0.0013391249813139,0.090059317648411,0.0023493887856603]],[[0.010269286110997,0.020629808306694,0.035607300698757],[0.088334023952484,-0.02524091117084,-0.032436423003674],[-0.034319512546062,-0.0026951804757118,-0.0045454404316843]],[[0.00054215284762904,-0.036332324147224,-0.015191491693258],[0.00059891206910834,-0.065333463251591,-0.015979755669832],[0.030472822487354,-0.066096715629101,0.031294632703066]],[[-0.027093589305878,-0.0090428162366152,-0.013986099511385],[-0.011914717033505,-0.06069353595376,0.023224584758282],[0.0062573770992458,-0.010280531831086,-0.0077193104662001]],[[-0.06435988843441,-0.035262994468212,0.043104320764542],[0.010624280199409,0.067533925175667,-0.027108883485198],[-0.013114316388965,0.030427873134613,0.0050095361657441]],[[-0.052311196923256,-0.013793110847473,0.023485958576202],[0.0024847832974046,0.01188812404871,0.0058319163508713],[0.086544662714005,0.0095153097063303,-0.014526304788888]],[[0.0090032406151295,-0.011187300086021,0.015938455238938],[-0.00091976142721251,0.06597100943327,0.01860237121582],[0.027873396873474,-0.019058944657445,0.045504488050938]],[[0.043347988277674,0.049801241606474,0.015250504016876],[0.0044573219493032,-0.0021091825328767,-0.06139349937439],[0.011995707638562,-0.030949642881751,0.02238243073225]],[[0.052694696933031,0.008296781219542,-0.013153545558453],[-0.021440122276545,0.078147232532501,0.032575562596321],[0.031612429767847,-0.030357789248228,-0.049013793468475]],[[-0.063332043588161,-0.02168888784945,-0.047274056822062],[0.0027491734363139,0.019447911530733,0.027596084401011],[-0.08093336224556,-0.0014685516944155,-0.02181288599968]],[[-0.082368791103363,0.0085804210975766,0.0083121247589588],[0.036136232316494,0.036351408809423,0.038197863847017],[0.016147395595908,-0.034898597747087,-0.039760269224644]],[[0.03055153042078,-0.077808521687984,0.022677859291434],[-0.05167642608285,-0.049176700413227,0.065897069871426],[0.02884779125452,-0.042481485754251,0.010170234367251]],[[0.050411120057106,-0.033889185637236,0.08437392115593],[-0.016061825677752,0.037726398557425,0.060208562761545],[0.07171968370676,-0.025376301258802,-0.026831828057766]],[[0.014456689357758,-0.069430314004421,0.027048634365201],[0.00083976343739778,-0.001583781093359,0.019632952287793],[0.01017917227,-0.040251307189465,-0.0018689935095608]],[[-0.0073284832760692,-0.035088136792183,0.032526552677155],[-0.029128044843674,0.10485802590847,-0.01973688788712],[0.015802351757884,0.068071149289608,-0.063482493162155]],[[-0.031492438167334,-0.039000514894724,0.0011715132277459],[-0.0026370440609753,0.019487150013447,0.0091177318245173],[0.02668740041554,0.03433682769537,0.068809255957603]],[[-0.073894284665585,-0.070052601397038,0.040398068726063],[-0.036270156502724,0.044870909303427,0.011399447917938],[0.041199926286936,-0.014586388133466,0.025333985686302]],[[0.011463309638202,-0.043564058840275,-0.053963407874107],[0.016184739768505,0.013170445337892,-0.056614384055138],[-0.04170474037528,0.0088933585211635,0.021280616521835]],[[0.038899526000023,-0.018822623416781,-0.010168138891459],[0.037453666329384,0.036252088844776,-0.037780608981848],[0.02768312394619,0.010749346576631,-0.030524870380759]],[[0.0058207903057337,-0.05634281039238,0.035874135792255],[0.030296102166176,0.002386869629845,-0.017309809103608],[-0.10508336871862,-0.044179126620293,-0.023454254493117]],[[0.017283337190747,-0.016160884872079,0.042485266923904],[0.028403490781784,-0.014086088165641,-0.0015174355357885],[-0.0082600060850382,0.023183174431324,-0.014134651981294]],[[-0.030956227332354,-0.020240277051926,0.015650564804673],[0.022704781964421,-0.0086632808670402,-0.043797951191664],[0.0017908628797159,0.034740407019854,0.030587205663323]],[[-0.052554152905941,-0.01995643042028,-0.05695653706789],[0.0074680913239717,-0.023868380114436,5.2737210353371e-05],[-0.045855931937695,0.0094203054904938,-0.019332753494382]],[[0.0061926040798426,-0.036072663962841,0.019946396350861],[0.018693752586842,-0.074287794530392,0.036942455917597],[0.053746726363897,0.040337458252907,0.016549974679947]],[[0.021534355357289,-0.051921300590038,0.02558652125299],[-0.043959118425846,0.024152686819434,0.04997381195426],[-0.016577012836933,-0.038187727332115,-0.013605574145913]],[[0.039205450564623,0.054652575403452,-0.003217785153538],[-0.028733359649777,-0.0044834055006504,0.02225012332201],[0.081377074122429,-0.094141691923141,0.038019217550755]],[[-0.0077507849782705,-0.017355922609568,-0.015551647171378],[0.064960770308971,0.042668469250202,0.015409824438393],[-0.019518041983247,0.033946398645639,-0.041344083845615]],[[0.032413169741631,0.0126559343189,-0.081856697797775],[0.034619923681021,-0.022734770551324,-0.026829989627004],[-0.078317083418369,-0.0070482697337866,-0.021781442686915]],[[-0.028595751151443,-0.0055480040609837,-0.020098173990846],[-0.018127206712961,0.014672743156552,0.087160207331181],[-0.0039590145461261,0.06056959554553,0.084211647510529]],[[0.034535463899374,0.068787626922131,0.067925550043583],[-0.020431682467461,0.053056173026562,0.073820918798447],[-0.077214971184731,-0.030920024961233,0.019997237250209]],[[0.047595009207726,-0.016907995566726,-0.032870247960091],[0.028840294107795,-0.027176765725017,0.03329411894083],[-0.0036114815156907,0.017985992133617,0.027317313477397]],[[0.022200409322977,-0.033695012331009,-0.068464763462543],[-0.0089070545509458,0.041287176311016,-0.021899992600083],[0.0024985007476062,0.015952864661813,-0.070332616567612]],[[0.060008760541677,0.038788247853518,-0.033793721348047],[-0.053359754383564,-0.0098868291825056,0.057567186653614],[0.010212781839073,0.05599332973361,-0.052487038075924]],[[-0.032952632755041,-0.012595281936228,0.039009731262922],[0.03737623244524,-0.051925722509623,0.018908306956291],[-0.013762977905571,0.040055558085442,-0.066601380705833]],[[-0.0174292139709,-0.075105756521225,0.03554193302989],[0.012512560933828,-0.050863411277533,-0.0010852447012439],[-0.010575471445918,0.026407845318317,0.060604114085436]],[[0.044932633638382,0.0013616640353575,-0.046569094061852],[0.061475481837988,0.020256675779819,0.012351267971098],[0.020362202078104,0.0027060604188591,-0.070723369717598]],[[0.0013034306466579,0.063142977654934,0.074760876595974],[0.013778932392597,0.018654748797417,-0.027597898617387],[0.056725606322289,-0.0094983773306012,0.10337415337563]],[[0.035711832344532,-0.039038859307766,0.013327590189874],[0.10156030207872,-0.038375467061996,0.0029364596121013],[-0.034915838390589,-0.015494419261813,-0.022850405424833]],[[-0.043083351105452,0.033422961831093,0.04052147269249],[0.045468911528587,0.010542491450906,0.014426842331886],[0.0292695350945,0.040567692369223,0.036786217242479]],[[0.029015740379691,-0.035825829952955,0.031115612015128],[0.010646023787558,0.033366832882166,-0.0021502666641027],[-0.013137464411557,0.080183111131191,0.013297077268362]],[[0.063410095870495,0.030950853601098,-0.075876034796238],[-0.045206543058157,-0.035367406904697,-0.051735412329435],[0.023063527420163,0.010705260559916,0.0086518209427595]],[[0.018709501251578,0.037836886942387,0.02898264490068],[0.077286772429943,-0.0085048386827111,-0.052674386650324],[-0.035081893205643,0.012002881616354,0.018665937706828]],[[-0.054548732936382,0.010828129015863,-0.021591763943434],[-0.053671196103096,-0.047467537224293,0.047345906496048],[0.027715094387531,-0.01804593205452,-0.023556228727102]],[[0.057269271463156,0.025513930246234,-0.016816385090351],[-0.023359341546893,-0.027757234871387,-0.048841144889593],[-0.020435120910406,-0.048265688121319,-0.010894405655563]],[[0.019277079030871,-0.045407686382532,-0.036263432353735],[-0.012849957682192,0.0085662137717009,0.035003807395697],[0.0042036352679133,-0.031769573688507,-0.022022662684321]],[[0.04899488016963,0.018412655219436,-0.053212810307741],[-0.0047375741414726,-0.052335824817419,-0.053271435201168],[-0.039351630955935,0.036905758082867,0.023937107995152]],[[0.058234583586454,-0.033881265670061,0.0053159231320024],[-0.087060980498791,0.04804926738143,0.033105690032244],[0.024804674088955,0.015591924078763,-0.055645488202572]],[[0.0045710620470345,0.0077332998625934,-0.020801348611712],[-0.0051335752941668,0.012668427079916,0.055174477398396],[-0.071671769022942,-0.029070066288114,0.0054474859498441]],[[0.051984656602144,0.01138262078166,-0.024766569957137],[-0.018330140039325,-0.1017956957221,0.016143105924129],[-0.048165071755648,0.033044572919607,-0.011963977478445]],[[0.023458957672119,0.032808478921652,0.036105632781982],[0.012639488093555,0.021422158926725,0.038511782884598],[-0.027543609961867,0.012821887619793,-0.0080905146896839]],[[0.09435810893774,-0.054307609796524,-0.0046763946302235],[0.055566117167473,-0.024733083322644,-0.0099827451631427],[0.07448972016573,0.020559474825859,0.03415596857667]],[[-0.033054929226637,0.015418838709593,0.051305960863829],[-0.0082524204626679,0.041009265929461,-0.02366098947823],[0.12071969360113,0.097593322396278,-0.074491068720818]],[[0.085518471896648,0.057580456137657,0.037624727934599],[0.02895556949079,-0.0023941432591528,-0.04345840588212],[0.037256926298141,-0.026348136365414,-0.014460482634604]],[[-0.047943487763405,-0.032708998769522,-0.003393788356334],[0.030833002179861,-0.04795366153121,0.015390857122838],[0.0045813517645001,0.025971725583076,-0.020911043509841]],[[-0.026069385930896,0.016765497624874,0.037539690732956],[-0.016628297045827,-0.016316410154104,-0.070772029459476],[0.0087467217817903,-0.041362285614014,0.024909809231758]],[[-0.0029938595835119,0.092191964387894,-0.055133897811174],[0.0090052681043744,-6.799295078963e-05,-0.043378673493862],[-0.031768027693033,-0.081052005290985,-0.05585965514183]],[[0.044024109840393,-0.029526023194194,-0.04334556683898],[0.017729723826051,0.014158199541271,-0.056522894650698],[-0.0020190658979118,0.016830330714583,0.03550211712718]],[[-0.030699275434017,-0.048009965568781,0.031220432370901],[0.084339156746864,0.010548982769251,-0.042189057916403],[-0.0068076611496508,-0.0059309396892786,0.033865079283714]],[[-0.027806673198938,-0.035860698670149,0.01553650572896],[0.057501226663589,0.023127194494009,0.025686644017696],[0.027904147282243,-0.020682068541646,-0.0041112708859146]],[[-0.01511207036674,0.035788007080555,-0.045057263225317],[-0.020125051960349,0.081492140889168,0.11585836112499],[0.066450580954552,-0.057104557752609,-0.096970058977604]],[[-0.045555207878351,0.018834574148059,0.0184729937464],[-0.020453302189708,0.058953430503607,-0.050058051943779],[-0.011983185075223,0.060557570308447,-0.0053233886137605]],[[0.0083299791440368,0.030117783695459,0.016266383230686],[-0.034107930958271,-0.051640767604113,-0.040910698473454],[0.03180168941617,-0.04700393602252,-0.0031464213971049]],[[-0.037309948354959,-0.0027665786910802,0.043193984776735],[0.018917011097074,-0.00036326984991319,0.027231130748987],[0.082609921693802,0.0035220596473664,0.083546675741673]],[[0.064160399138927,-0.051201682537794,-0.022984916344285],[-0.056513793766499,-0.051396533846855,0.00025439518503845],[0.096680596470833,-0.0083202514797449,-0.027349676936865]],[[-0.052651517093182,0.01514788530767,0.039029445499182],[0.046658180654049,-0.052134245634079,0.043786603957415],[-0.058889947831631,0.028091376647353,0.051715664565563]],[[-0.037839937955141,-0.027614813297987,8.0967285612132e-05],[0.055247876793146,-0.002251282799989,-0.036370046436787],[0.0075394669547677,0.035234600305557,-0.026587741449475]],[[-0.075279794633389,-0.0087374364957213,-0.039652366191149],[-0.033642962574959,-0.0291514005512,0.071529917418957],[-0.068937256932259,0.03323507681489,-0.020313384011388]],[[0.012615320272744,-0.026001561433077,-0.01961556635797],[-0.062030963599682,0.10109575092793,0.010464984923601],[-0.075589880347252,0.085770152509212,-0.03025858104229]],[[0.0089927222579718,0.03866283223033,-0.063671045005322],[0.037098594009876,-0.11090215295553,-0.034516144543886],[-0.034188695251942,0.023211611434817,-0.026866374537349]],[[0.096791237592697,0.03963129222393,0.069460354745388],[-0.075009129941463,-0.021124180406332,0.0018373110797256],[-0.010022099129856,0.023052463307977,-0.016910402104259]],[[-0.0037877035792917,0.00023079074162524,-0.048116762191057],[-0.029282668605447,0.050832577049732,0.057045806199312],[-0.050471607595682,-0.009811851195991,0.044852696359158]],[[-0.0094136418774724,-0.015323041006923,-0.01137978117913],[-0.00087643694132566,-0.0069759460166097,-0.0047017652541399],[-0.00045933414367028,-0.05185255035758,-0.027461361140013]],[[0.02730212919414,-0.033706057816744,-0.017341276630759],[0.021933704614639,0.026764292269945,-0.0097269024699926],[0.0084759276360273,-0.01922207698226,-0.031102361157537]],[[0.054100662469864,-0.0074015469290316,-0.085137635469437],[-0.014144009910524,0.09066092222929,0.045481834560633],[-0.021168382838368,0.047537751495838,0.016119739040732]],[[0.048949621617794,0.0099548827856779,-0.048821572214365],[0.045581184327602,-0.0033842409029603,0.018397184088826],[0.021420838311315,-0.052848841995001,-0.016949359327555]],[[0.013326155021787,0.04401983320713,0.036020323634148],[0.020298367366195,0.060481313616037,0.033500704914331],[0.071000792086124,-0.0053880452178419,0.07150012254715]],[[-0.0083779133856297,0.087038397789001,-0.078376598656178],[0.015690855681896,0.10065641999245,0.002652358263731],[-0.030696516856551,-0.032916735857725,-0.018069580197334]],[[0.0095951743423939,-0.024026716127992,-0.031600873917341],[-0.050988577306271,0.040472462773323,-0.074074178934097],[-0.012318765744567,-0.024035414680839,-0.070060774683952]],[[-0.035065215080976,-0.075482733547688,0.098990812897682],[0.028636883944273,0.0073454738594592,0.0017082140548155],[0.058240097016096,0.0013948685955256,0.051009438931942]],[[-0.043024480342865,-0.088562652468681,-0.01964458823204],[0.0063988780602813,-0.04704012721777,-0.059224408119917],[0.088325835764408,-0.024035308510065,0.0019002164481208]],[[0.033344320952892,-0.047748580574989,0.035771161317825],[0.017127709463239,0.059723407030106,0.048060402274132],[0.020410345867276,-0.017332943156362,0.0329430103302]],[[-0.075887024402618,-0.047330167144537,-0.023313058540225],[-0.057598564773798,0.0089418003335595,-0.015383642166853],[0.0096747167408466,-0.01490982901305,-0.012321988120675]],[[-0.016884434968233,-0.012196814641356,-0.014347619377077],[-0.02317600697279,0.041997130960226,0.035206630825996],[0.050191588699818,0.0033407304435968,0.0038320370949805]],[[-0.026133785024285,0.0034385458566248,-0.080407947301865],[-0.014032207429409,0.08515727519989,-0.033393811434507],[0.041629374027252,-0.0084201358258724,-0.0058593056164682]],[[-0.024168347939849,-0.0058302897959948,0.042849931865931],[0.034511968493462,-0.035643018782139,0.058092828840017],[0.025332599878311,0.022353485226631,-0.027908023446798]],[[0.015792416408658,0.052056450396776,0.029475670307875],[-0.0092407390475273,0.031545054167509,0.016405610367656],[0.015769589692354,0.014746381901205,-0.097369477152824]],[[0.085830740630627,0.023585157468915,0.021953497081995],[-0.036529086530209,-0.0084952916949987,-0.0025436542928219],[0.057996407151222,-0.039606519043446,-0.025265116244555]],[[-0.018071131780744,0.015276771038771,0.025722293183208],[0.019453613087535,0.060638390481472,-0.039875172078609],[-0.029377790167928,-0.06108396500349,0.027614494785666]],[[0.024498466402292,0.027194458991289,0.020179767161608],[0.025254746899009,-0.059542156755924,0.0097196931019425],[0.013740576803684,0.037444520741701,0.015105783008039]],[[0.087139256298542,-0.084190391004086,0.004611125215888],[-0.11240962147713,-0.0011721217306331,0.02938680909574],[0.0055251992307603,-0.032168053090572,-0.00056184153072536]],[[-0.014991680160165,-0.0082973223179579,0.030332231894135],[-0.0022254982031882,-0.074972055852413,-0.02248109318316],[-0.050146248191595,0.076226525008678,0.052110031247139]],[[0.051307670772076,0.10255418717861,0.014939275570214],[0.030455505475402,0.016038842499256,0.0076775294728577],[0.0016221951227635,0.029306577518582,-0.0006720571545884]],[[0.056717038154602,-0.014645170420408,-0.0028827241621912],[-0.046411827206612,-0.094093143939972,-0.080087721347809],[0.01432376075536,0.026290897279978,-0.015425987541676]],[[-0.056508392095566,0.0022327078040689,-0.0029818110633641],[-0.0049646687693894,-0.012027909979224,-0.0062630278989673],[0.065019115805626,-0.0642114803195,-0.0065996665507555]],[[0.017743121832609,0.065793268382549,-0.002383831422776],[-0.064602807164192,-0.0042405989952385,0.017420602962375],[0.011660918593407,-0.0058213919401169,-0.0082156229764223]],[[-0.047724571079016,-0.011967424303293,0.053655870258808],[0.019456258043647,-0.0093075269833207,0.0083278575912118],[0.087472945451736,0.0034372974187136,0.010552055202425]],[[-0.033932954072952,0.023860778659582,-0.051948063075542],[0.021318225190043,0.034995459020138,-0.015610661357641],[0.097451873123646,0.050799157470465,0.044598046690226]],[[0.028879255056381,0.010856868699193,0.028164738789201],[-0.0096364105120301,-0.039173301309347,0.0088561633601785],[-0.037407599389553,-0.061848413199186,-0.06230142340064]]],[[[0.025675652548671,-0.018025061115623,0.019596992060542],[0.013811184093356,-0.0020063070114702,0.022366931661963],[-0.025525527074933,-0.010667124763131,-0.027253856882453]],[[-0.11466187238693,-0.010156914591789,-0.05251944065094],[-0.085176274180412,0.0898362621665,-0.043058969080448],[0.022003084421158,-0.03912340477109,0.0095160435885191]],[[-0.015699246898293,-0.023572873324156,0.096716202795506],[-0.054007831960917,0.0027924012392759,0.035854946821928],[-0.051565811038017,0.001463265856728,0.0023539792746305]],[[-0.019867049530149,-0.0075987656600773,0.006218200083822],[0.0627626106143,-0.038941204547882,0.017653223127127],[0.010189739055932,0.013684500008821,-0.048288136720657]],[[0.0085270926356316,-0.056827168911695,-0.022942904382944],[-0.011707043275237,-0.034492984414101,0.031133189797401],[0.01531445980072,0.012007407844067,0.057530600577593]],[[-0.033359613269567,0.031795188784599,0.076043762266636],[0.0083087785169482,-0.053325645625591,-0.0075548957102001],[0.1027300581336,0.04603511467576,-0.079253397881985]],[[-0.014979097992182,0.018101587891579,0.011628122068942],[0.040803477168083,-0.022619619965553,0.027106048539281],[-0.017343303188682,-0.014514432288706,0.058741703629494]],[[-0.0032849304843694,-0.010198378935456,0.041811604052782],[-0.0057856487110257,0.0035993866622448,-0.019923461601138],[-0.051287166774273,0.028497535735369,-0.014337942004204]],[[0.0057224952615798,0.0061219818890095,-0.058098185807467],[0.060624253004789,-0.0089559452608228,-0.020790612325072],[0.035355281084776,-0.069303311407566,0.076877929270267]],[[0.03311014175415,-0.051896139979362,0.061693642288446],[-0.041694160550833,-0.02889452688396,0.04649706184864],[-0.016881128773093,-0.0082436120137572,0.059526301920414]],[[-0.031166069209576,0.055603768676519,0.0074932817369699],[-0.046098176389933,0.026263477280736,0.061384350061417],[0.023000059649348,-0.0097245639190078,0.045452728867531]],[[-0.037618786096573,-0.037088681012392,-0.025458348914981],[-0.031959623098373,0.059233170002699,0.062866561114788],[0.091617599129677,0.09126790612936,-0.044084761291742]],[[-0.0029596802778542,0.043664913624525,0.081102028489113],[-0.010498743504286,0.082154624164104,-0.030259130522609],[0.04571682959795,-0.060600820928812,0.011127480305731]],[[-0.044340692460537,-0.061726555228233,-0.041429955512285],[0.0061845043674111,-0.041490294039249,-0.0022326954640448],[-0.10130789130926,-0.017957884818316,0.0072612441144884]],[[0.0047042993828654,0.068258576095104,0.018021937459707],[0.0092674782499671,-0.072767324745655,-0.045330084860325],[-0.047837421298027,0.027475083246827,-0.057884350419044]],[[-0.048985127359629,0.088737890124321,0.014448123984039],[0.017035769298673,-0.084468886256218,-0.0053434479050338],[0.080289609730244,0.012252666987479,-0.033851392567158]],[[-0.017100889235735,-0.041576758027077,-0.03480114787817],[-0.045135527849197,0.01267874520272,0.007909276522696],[-0.0060286582447588,0.020227920264006,-0.0077991927973926]],[[-0.039389956742525,-0.026004401966929,-0.014175069518387],[0.012689192779362,-0.023636348545551,-0.0072302189655602],[0.059409406036139,0.07205706089735,0.056661751121283]],[[-0.0083543173968792,-0.061691656708717,-0.005993518512696],[0.021139854565263,-0.075336210429668,-0.028507364913821],[-0.01012769062072,0.027269853278995,-0.035016510635614]],[[-0.053888186812401,0.025401905179024,0.015457364730537],[-0.055113423615694,-0.035152144730091,0.02043960057199],[-0.059322476387024,-0.051099583506584,0.00075470429146662]],[[0.00093658914556727,-0.058248739689589,-0.019817799329758],[0.0345803424716,0.0095496792346239,-0.0071179368533194],[0.068346567451954,0.0098379729315639,-0.025119118392467]],[[0.024546265602112,-0.039714600890875,0.051029648631811],[-0.05567042529583,0.052996933460236,-0.053232200443745],[-0.044764816761017,-0.038868650794029,0.0092584118247032]],[[-0.11558113247156,0.018437635153532,0.061720822006464],[0.0068364362232387,-0.017956715077162,-0.023793742060661],[0.017470011487603,0.0065003978088498,-0.011443383991718]],[[-0.011636287905276,-0.0033534872345626,-0.071583807468414],[0.01657448336482,-0.010541711933911,-0.029682599008083],[-0.040870621800423,0.010753476060927,-0.019942536950111]],[[-0.012152737937868,-0.056271523237228,0.096808806061745],[0.032083496451378,0.040650445967913,-0.028078468516469],[-0.028769578784704,-0.010920817032456,-0.0017283174674958]],[[-0.053540706634521,-0.036449950188398,-0.0038748080842197],[0.14713509380817,0.048506841063499,0.059443704783916],[0.035771980881691,-0.014525001868606,0.079191766679287]],[[0.095182336866856,0.028939191251993,-0.036064077168703],[0.0053874161094427,0.0016636460786685,0.055436030030251],[0.028146592900157,-0.031776003539562,0.040766254067421]],[[0.03474335372448,-0.017775865271688,0.084332622587681],[0.067706070840359,-0.0092139467597008,0.0099776415154338],[-0.032422430813313,-0.025015378370881,-0.0073949689976871]],[[-0.0086272461339831,-0.027476444840431,0.029589427635074],[-0.052996296435595,0.076135940849781,-0.00032395715243183],[0.063592076301575,0.017229186370969,0.033942326903343]],[[0.0021828694734722,-0.010998170822859,0.068175114691257],[-0.1096918284893,-0.010561159811914,-0.029288118705153],[0.044603191316128,0.021186668425798,0.058665618300438]],[[-0.051463857293129,0.074559353291988,-0.050025068223476],[-0.024636985734105,-0.02948010712862,-0.027408899739385],[0.051215667277575,-0.006921399384737,0.062767423689365]],[[-0.046015612781048,-0.0091404411941767,0.027217131108046],[-0.035824377089739,-0.020979167893529,0.036034755408764],[-0.023581456393003,0.0040963739156723,-0.051332578063011]],[[0.050427187234163,-0.020344553515315,-0.031898707151413],[0.009333997964859,-0.07393429428339,0.0075824288651347],[0.082708366215229,-0.0033789980225265,-0.047468382865191]],[[-0.030607409775257,-0.061796855181456,0.08871391415596],[0.052613630890846,0.045556455850601,0.061564605683088],[-0.037164684385061,-0.023026902228594,-0.020790297538042]],[[-0.01137868873775,-0.011175418272614,-0.0155318826437],[0.049673855304718,0.0098514631390572,0.014829409308732],[0.042975056916475,-0.097699768841267,0.051741790026426]],[[0.010810408741236,0.036311056464911,-0.01444221008569],[0.054955463856459,0.013855460099876,-0.047339476644993],[0.055015340447426,0.014216607436538,-0.035137508064508]],[[0.039789538830519,0.0022114021703601,0.032794155180454],[0.050716985017061,-0.0030194327700883,0.011249105446041],[-0.013552501797676,-0.037311267107725,0.046233635395765]],[[-0.024834120646119,-0.029596939682961,0.03948924317956],[-0.01982219517231,-0.027455793693662,-0.012462141923606],[0.0040538525208831,0.0076233767904341,0.084565721452236]],[[-0.027233380824327,-0.067467235028744,0.0084922052919865],[-0.0049574160948396,-0.031024269759655,0.055535387247801],[0.021290728822351,0.018013045191765,-0.0097861643880606]],[[-0.02488336712122,0.067033365368843,0.029565017670393],[0.011277917772532,-0.010736029595137,-0.038601789623499],[0.0056512490846217,0.0049951262772083,-0.032854110002518]],[[0.016444079577923,0.01318100001663,0.055879805237055],[0.014078355394304,0.01357978861779,-0.045952998101711],[-0.029919110238552,0.042951364070177,-0.0349599160254]],[[0.042403813451529,-0.017886590212584,-0.0051067741587758],[-0.01936804689467,-0.051718067377806,0.024048324674368],[-0.02039816044271,-0.06904586404562,-0.026606446132064]],[[0.020853688940406,0.010378907434642,0.020986618474126],[-0.01409998908639,0.048192761838436,-0.032970704138279],[-0.050758425146341,-0.011252581141889,-0.015300448983908]],[[0.070125758647919,0.051509216427803,0.049642603844404],[-0.0039375177584589,-0.04568051174283,-0.095246963202953],[-0.021029191091657,0.022115498781204,0.018374847248197]],[[0.011880831792951,0.052704140543938,-0.024371499195695],[0.091303147375584,-0.016802661120892,0.0075653726235032],[-0.018768625333905,-0.027412429451942,-0.01869229786098]],[[-0.0066660642623901,0.014529405161738,-0.075165033340454],[0.072335943579674,0.038612950593233,-0.035964615643024],[-0.049941211938858,0.04351195320487,-0.011277008801699]],[[-0.02254750020802,0.023881781846285,0.02032857388258],[-0.038298178464174,0.002844033529982,0.062187306582928],[0.019268695265055,1.2605682059075e-05,0.037038870155811]],[[0.02270283177495,0.032024938613176,0.028702156618237],[-0.02235116250813,0.073014758527279,-0.027269521728158],[0.025789111852646,-0.02958357334137,-0.015146315097809]],[[0.017835015431046,-0.016329793259501,-0.013890973292291],[-0.024994626641273,0.048641949892044,-0.0036337389610708],[-0.020287284627557,0.071764558553696,0.0033787984866649]],[[-0.035892404615879,0.013255292549729,-0.011190447025001],[-0.018605299293995,0.052766904234886,0.032291181385517],[-0.033250153064728,0.01223882380873,0.0049992855638266]],[[-0.01666865684092,-0.056775119155645,-0.03021358884871],[-0.034385062754154,0.020041750743985,0.033367931842804],[0.035571947693825,0.027146574109793,0.045646611601114]],[[0.029062114655972,0.047344151884317,-0.024635517969728],[-0.063163496553898,0.052603233605623,0.055809106677771],[-0.039330832660198,-0.025654520839453,-0.024879144504666]],[[0.0061193290166557,0.038519769906998,-0.033551130443811],[0.14999105036259,-0.00094254472060129,-0.00563540821895],[0.037796162068844,-0.10540044307709,-0.078102007508278]],[[0.05656224489212,0.023230092599988,0.023040775209665],[0.035914245992899,-0.058013278990984,0.05343184620142],[-0.021081754937768,-0.0022449570242316,-0.050707865506411]],[[-0.015307178720832,0.023476717993617,-0.0010062268702313],[0.044462025165558,0.0082212258130312,-0.067085310816765],[0.010572434403002,0.020894037559628,-0.037758577615023]],[[-0.0037633508909494,0.019820626825094,0.037877049297094],[0.041145827621222,0.015664782375097,-0.030173743143678],[0.020792635157704,-0.05792497843504,0.021482825279236]],[[-0.012074487283826,0.013229708187282,0.015274103730917],[-0.019849427044392,0.047576904296875,0.0046361372806132],[-0.012576621957123,0.025681411847472,-0.0025861740577966]],[[0.0080162025988102,0.0031777992844582,0.030122451484203],[0.019445287063718,-0.04212499409914,0.0086694993078709],[-0.00076037418330088,-0.012248134240508,-0.0012369803152978]],[[-0.0077961962670088,0.021337395533919,-0.021823331713676],[-0.093616485595703,-0.03963290527463,-0.0083607053384185],[-0.048905421048403,0.043530963361263,0.065684638917446]],[[0.011007061228156,-0.014582433737814,0.035487540066242],[-0.029139798134565,-0.010632787831128,0.034226384013891],[0.026820847764611,0.003006876911968,-0.029112687334418]],[[0.0065120924264193,0.032566051930189,0.036890391260386],[-0.0074171307496727,-0.0580546669662,0.0014720066683367],[0.055539004504681,0.05613699182868,0.01820127479732]],[[-0.024548435583711,-0.01612694747746,0.026657292619348],[-0.011127090081573,-0.0057826987467706,-0.014030309394002],[-0.025709718465805,-0.015005804598331,0.015334751456976]],[[0.054615300148726,0.01353189535439,0.069714397192001],[0.032294381409883,-0.011586453765631,0.011181071400642],[-0.011769912205637,-0.0035627859178931,0.048638112843037]],[[-0.012312087230384,-0.025690261274576,-0.025910425931215],[-0.0625009983778,-0.039606790989637,0.019906338304281],[-0.021796632558107,0.032665316015482,0.016473095864058]],[[-0.038633078336716,0.01542329788208,0.065479122102261],[0.032777797430754,-0.06048995628953,-0.021592559292912],[0.02738544344902,0.051782328635454,-0.017563324421644]],[[-0.0017174906097353,-0.015177486464381,0.0484091155231],[-0.0024959021247923,-0.0078741833567619,0.017917186021805],[-0.0018402240239084,-0.053915418684483,-0.02731297723949]],[[-0.068343341350555,0.11356719583273,-0.045522086322308],[-0.064437195658684,0.04144348949194,-0.024012763053179],[0.032652091234922,0.018233561888337,-0.036969851702452]],[[-0.013467274606228,-0.0096935573965311,-0.00026165565941483],[-0.021046949550509,-0.049623247236013,-0.03602696955204],[0.014261414296925,0.12293386459351,-0.0011526833986863]],[[-0.0087539553642273,0.012887434102595,0.0080262618139386],[0.024967432022095,0.0051964628510177,0.016659695655107],[0.026172244921327,-0.013045805506408,0.034166414290667]],[[0.013863109983504,-0.00057688431115821,-0.059915721416473],[-0.1027228012681,-0.030659953132272,0.011192634701729],[0.043403133749962,0.0069731073454022,-0.010449833236635]],[[0.039288785308599,0.02077348344028,0.059441797435284],[0.030093193054199,-0.027394047006965,-0.0016693895449862],[0.02263081818819,-0.070219047367573,-0.031495913863182]],[[0.065739192068577,0.018148878589272,0.012911659665406],[-0.010650843381882,-0.07952768355608,0.071936435997486],[0.074929028749466,-0.082938276231289,-0.020395141094923]],[[0.021360693499446,0.064451523125172,-0.015151568688452],[0.0038132227491587,-0.012771406210959,0.0023913700133562],[-0.11498906463385,0.022072291001678,-0.030194640159607]],[[-0.054008208215237,-0.0067191836424172,0.053921200335026],[-0.0004240776761435,0.0021771572064608,0.061754241585732],[0.036197025328875,-0.024880073964596,0.050542514771223]],[[-2.3020344087854e-05,-0.016617676243186,-0.020227583125234],[0.036786288022995,0.054488334804773,0.0087467525154352],[0.00066945288563147,-0.041858676820993,0.025752484798431]],[[0.080488182604313,0.051197428256273,-0.022699689492583],[0.010483399033546,-0.040225565433502,0.085132867097855],[0.0030971376691014,-0.023070350289345,0.032936535775661]],[[0.099210165441036,-0.010638752952218,0.067812070250511],[-0.0092765809968114,-0.014998029917479,0.06273428350687],[-0.029001142829657,0.036887276917696,-0.014506669715047]],[[0.032437194138765,0.075244337320328,0.048096086829901],[0.033110540360212,0.02867205068469,-0.052308913320303],[0.076290145516396,-0.050195634365082,0.0085302982479334]],[[-0.012980106286705,-0.0014875568449497,-0.011166086420417],[0.019994612783194,0.030249807983637,0.024703424423933],[0.054426316171885,0.029393099248409,-0.024267641827464]],[[-0.025926720350981,0.065868802368641,-0.031353373080492],[0.0011127290781587,0.0076917973347008,0.0077341008000076],[0.070266462862492,-0.0088014462962747,-0.042844630777836]],[[0.011814657598734,-0.022533975541592,0.070845246315002],[-0.032026238739491,0.024734115228057,-0.011405001394451],[-0.0067585781216621,0.048336584120989,-0.064288206398487]],[[0.011587666347623,0.022255811840296,-0.020901378244162],[0.022047100588679,-0.0046669291332364,0.0015777737135068],[-0.017584362998605,0.00097238924354315,-0.0038867630064487]],[[0.036326110363007,-0.064783796668053,0.006174182984978],[-0.049344442784786,0.021788431331515,-0.023430548608303],[-0.040059473365545,0.090821959078312,0.020987534895539]],[[0.054307948797941,0.031761109828949,0.050648648291826],[0.022556319832802,-0.056177634745836,-0.093329273164272],[-0.047051575034857,-0.0063949320465326,0.044473581016064]],[[-0.029021902009845,0.011628211475909,0.028461802750826],[0.0080152461305261,0.13329745829105,-0.024516858160496],[-0.0028393405955285,-0.031831208616495,0.015619122423232]],[[0.0053008734248579,0.0074951006099582,-0.017257226631045],[0.0017039621016011,0.023771330714226,0.06339156627655],[0.016899641603231,0.012102652341127,0.010226734913886]],[[-0.042217127978802,0.089497424662113,-0.019362716004252],[-0.0034598219208419,0.11012468487024,-0.042179513722658],[-0.012813762761652,0.035744126886129,0.028065998107195]],[[0.08003356307745,-0.01454047113657,0.10876280069351],[-0.047713592648506,0.03607701510191,0.036679167300463],[-0.013436853885651,0.047842957079411,-0.026924194768071]],[[0.079908855259418,0.053386658430099,-0.03350281342864],[0.019967621192336,-0.064939722418785,-0.01206436008215],[0.037592802196741,-0.01915630698204,-0.056738205254078]],[[0.088597759604454,0.040195595473051,-0.081518642604351],[-0.052196022123098,0.055593632161617,-0.040640827268362],[-0.062054596841335,0.01958442106843,0.051734711974859]],[[0.057415131479502,-0.047005772590637,0.028356578201056],[-0.054306730628014,0.051655992865562,0.030433747917414],[0.044393818825483,0.010160684585571,-0.021400133147836]],[[-0.017973024398088,-0.010079212486744,0.049858447164297],[0.018425835296512,0.019228341057897,0.059104934334755],[0.033865045756102,0.023119742050767,-0.024367116391659]],[[0.0067914496175945,0.045607317239046,-0.0045549143105745],[-0.041114911437035,0.010960548184812,0.017956761643291],[0.060312543064356,0.018199902027845,0.0083989463746548]],[[0.006430427543819,0.019394492730498,0.0026042410172522],[-0.036763072013855,0.016830090433359,-0.0079498076811433],[0.00016161326493602,0.048350211232901,-0.00025876349536702]],[[0.0060701565816998,0.063070580363274,-0.026390738785267],[-0.00053546775598079,-0.0080531444400549,0.030087048187852],[0.05027537420392,0.049398269504309,-0.037966813892126]],[[-0.033485125750303,0.0033575145062059,0.020429765805602],[0.051430907100439,0.040951106697321,0.024769386276603],[0.017221305519342,-0.014560564421117,0.079955868422985]],[[0.030261676758528,-0.03508235886693,0.01571611315012],[-0.0056208707392216,-0.005634035449475,-0.014054533094168],[-0.043322645127773,-0.018184645101428,-0.023737149313092]],[[0.053969100117683,-0.076772823929787,0.017391964793205],[0.048776742070913,-0.020723719149828,0.051454395055771],[-0.068377241492271,-0.04242630302906,0.022393714636564]],[[-0.061593353748322,-0.012772678397596,0.032807912677526],[0.084693737328053,-0.027906145900488,0.050977006554604],[-0.0081868851557374,0.018316350877285,-0.06793524324894]],[[-0.041038785129786,0.0013990413863212,0.030153296887875],[0.0071711102500558,-0.011832426302135,0.034851770848036],[0.090945199131966,-0.081754438579082,-0.039819028228521]],[[0.074413292109966,-0.0018663905793801,0.045615620911121],[0.048569917678833,-0.062270551919937,0.025446247309446],[-0.035753518342972,0.006925041321665,0.060944613069296]],[[0.017762409523129,0.014054307714105,0.039638340473175],[-0.055229976773262,0.0048497822135687,0.056484434753656],[-0.025727242231369,-0.09230774641037,-0.014846722595394]],[[-0.024856189265847,-0.077146597206593,0.029782421886921],[-0.031355038285255,0.019861133769155,-0.078592427074909],[-0.10328007489443,0.068421892821789,-0.043880254030228]],[[0.03560746461153,0.039067890495062,-0.044047154486179],[-0.0015579811297357,-0.053066622465849,-0.034065645188093],[-0.012996034696698,-0.013429094105959,-0.023558342829347]],[[0.0081830341368914,0.042539831250906,-0.024164546281099],[-0.039728980511427,0.033639512956142,-0.014741064980626],[0.0080724824219942,0.045704253017902,0.0036972663365304]],[[0.058310333639383,-0.027165530249476,-0.057038947939873],[-0.016225326806307,0.013726241886616,0.025524294003844],[0.034488875418901,-0.0067849205806851,0.030545556917787]],[[0.028999933972955,-0.010004599578679,-0.049730569124222],[-0.035818908363581,0.0099715897813439,0.027387281879783],[-0.077460467815399,0.036114364862442,-0.024484420195222]],[[0.079852864146233,0.037165772169828,0.021453727036715],[-0.049566730856895,0.0064508910290897,0.0082750394940376],[6.81197270751e-05,0.033603828400373,0.071090213954449]],[[-0.015906693413854,-0.046510457992554,0.047605514526367],[0.039497695863247,0.051529433578253,0.0059004002250731],[0.011438534595072,-0.10646062344313,-0.01070265006274]],[[-0.10202863812447,-0.094682551920414,-0.0012508982326835],[-0.064783461391926,-0.071591652929783,-0.074310414493084],[-0.044623553752899,0.020469987764955,-0.089833915233612]],[[-0.0064769755117595,0.093583881855011,0.027348252013326],[0.031535260379314,0.017465729266405,-0.001497300574556],[0.0094709843397141,0.0013070072745904,0.017307294532657]],[[0.048710219562054,0.028635649010539,-0.0097899790853262],[0.008252240717411,-0.0062726489268243,-0.03474660217762],[0.016934683546424,0.0077117206528783,0.099079675972462]],[[-0.027396304532886,0.010400748811662,0.069980017840862],[0.027276610955596,0.068946599960327,-0.014932711608708],[-0.017384942620993,-0.018006360158324,-0.038138132542372]],[[-0.085753954946995,0.056511085480452,-0.017759749665856],[-0.019345004111528,0.005383565556258,-0.04603011906147],[-0.066729247570038,-0.054061140865088,-0.046302691102028]],[[0.04253638535738,-0.047227963805199,0.0084930555894971],[-0.052358545362949,-0.084717638790607,0.078188307583332],[-0.03387239202857,0.073314636945724,0.073542430996895]],[[0.0038611048366874,-0.029191328212619,-0.059353210031986],[0.025847876444459,0.018031725659966,-0.010519850999117],[0.015432826243341,-0.025720417499542,-0.059629652649164]],[[0.08517824113369,-0.02131980471313,-0.0049929670058191],[-0.00035818148171529,-0.02995633892715,-0.037162467837334],[-0.040624398738146,-0.018297864124179,-0.0029788825195283]],[[-0.059530738741159,-0.019730731844902,0.028336504474282],[-0.020925672724843,-0.043913461267948,0.037745051085949],[-0.017078576609492,0.055045824497938,-0.046385645866394]],[[0.042594023048878,0.03515262901783,-0.073110207915306],[-0.023717802017927,0.053421746939421,-0.0091659687459469],[0.020105915144086,-0.061986692249775,-0.024384163320065]],[[0.051059707999229,0.0088525181636214,-0.018035724759102],[-0.0086069824174047,0.028950661420822,0.058496408164501],[0.02918179705739,0.052836664021015,0.026588207110763]],[[-0.0046141049824655,-0.025363568216562,0.026154734194279],[0.0087588960304856,-0.0030317357741296,0.035027626901865],[-0.046990640461445,-0.0011027292348444,-0.00032817298779264]],[[-0.068321622908115,0.04405228048563,0.015209145843983],[-0.027546033263206,-0.051926385611296,-0.0030061081051826],[0.019040256738663,-0.013011227361858,-0.071873657405376]],[[0.014134583994746,0.0768151730299,-0.09020671993494],[-0.007936860434711,0.030454257503152,-0.066040061414242],[0.031876154243946,0.0040970733389258,0.021285666152835]],[[-0.010466556996107,-0.050210036337376,-0.044048368930817],[0.021011762320995,0.047833371907473,0.021629955619574],[-0.067091807723045,-0.054526958614588,0.011832841672003]],[[0.0024275986943394,-0.042404778301716,0.044714171439409],[-0.047814015299082,-0.031173691153526,-0.022585837170482],[-0.017329355701804,-0.032255757600069,0.057087976485491]],[[0.0022802038583905,0.033824305981398,-0.030451495200396],[-0.025103379040956,0.0179387871176,0.034047052264214],[-0.047870948910713,-0.022382197901607,0.0042410721071064]],[[0.013698525726795,0.0038203950971365,0.0047511770389974],[0.022994875907898,0.065254800021648,0.0097526973113418],[-0.052073135972023,-0.055471576750278,0.019366815686226]],[[-0.056401569396257,-0.055441647768021,0.029721714556217],[-0.033022630959749,0.065609842538834,0.030824527144432],[-0.0066610872745514,-0.0082532679662108,0.0076545285992324]]],[[[0.021325308829546,-0.0035272701643407,0.010446207597852],[-0.014766236767173,0.075119510293007,-0.03509708121419],[0.075144082307816,-0.00054909090977162,-0.0059802196919918]],[[-0.055906236171722,0.067925907671452,-0.0036759180948138],[-0.06264740973711,0.07289332151413,0.01513010635972],[0.0018929642392322,-0.022401317954063,-0.093741521239281]],[[-0.031384278088808,-0.0020831325091422,0.0059699742123485],[0.011615303345025,0.0024780572857708,-0.023036507889628],[0.055341716855764,-0.0070269876159728,-0.065455384552479]],[[0.024589158594608,-0.066650070250034,-0.036206636577845],[-0.049005929380655,0.0013466652017087,0.0097628310322762],[-0.0097420355305076,-0.013854827731848,-0.057995963841677]],[[-0.079156577587128,-0.034603375941515,-0.017612246796489],[0.034165687859058,0.005191792268306,0.085669457912445],[0.0098755182698369,0.019741332158446,-6.5963293309323e-05]],[[0.051532592624426,0.00079747952986509,-0.025660119950771],[-0.043764989823103,0.017016209661961,0.0082182511687279],[0.043425042182207,0.030744658783078,0.028753163293004]],[[0.075102858245373,-0.0033780366647989,0.02088463678956],[-0.0064733596518636,0.0011702242773026,-0.026182247325778],[0.023379588499665,-0.039549760520458,-0.050318237394094]],[[0.055322766304016,-0.068009249866009,9.1400266683195e-05],[-0.045547585934401,-0.00039823332917877,0.023908188566566],[0.052306436002254,0.020612202584743,0.041460383683443]],[[-0.0022831202950329,-0.0010641084518284,-0.0480080768466],[0.0030394131317735,-0.065239578485489,-0.0083887735381722],[0.02639208547771,-0.019843762740493,-0.092928484082222]],[[0.089642591774464,0.068572200834751,0.078947953879833],[-0.14308197796345,0.0096624745056033,-0.014273878186941],[0.01874434016645,0.050404030829668,0.15448099374771]],[[-0.021279232576489,0.020431887358427,-0.016109788790345],[-0.062275860458612,-0.12031888216734,0.067547991871834],[0.02825128287077,0.033296354115009,-0.01203705649823]],[[0.034535642713308,-0.023036826401949,0.052751921117306],[0.03023705072701,0.020960321649909,0.049340017139912],[-0.095196105539799,-0.032947760075331,0.03396562859416]],[[0.016400804743171,0.048933111131191,0.067538306117058],[-0.075243510305882,-0.049180652946234,-0.017668394371867],[0.028996916487813,0.038683228194714,0.029255658388138]],[[0.018204484134912,-0.0091443406417966,-0.042134989053011],[0.017712386325002,-0.03863824531436,0.0014691099058837],[-0.024332065135241,0.023785822093487,0.052800610661507]],[[0.12464793026447,0.13723403215408,0.022652411833405],[0.012527388520539,0.064162202179432,0.078002721071243],[0.05689550563693,-0.027882216498256,0.058414075523615]],[[-0.051257275044918,-0.023818079382181,-0.035831294953823],[-0.03516348451376,-0.025957811623812,0.0026159253902733],[-0.077746361494064,-0.0095194354653358,-0.072360999882221]],[[0.025300418958068,-0.028934735804796,0.019905347377062],[0.046358846127987,0.0201161429286,-0.00041803074418567],[0.0047299885191023,-0.033606365323067,-0.038486640900373]],[[-0.013822041451931,-0.056685902178288,-0.025593308731914],[0.021200004965067,0.0086408033967018,-0.0043679992668331],[-0.0056168003939092,-0.0034287360031158,0.032484114170074]],[[0.079085744917393,0.027213571593165,0.0014079019892961],[-0.04786691069603,0.012561703100801,0.0060034608468413],[-0.004451013635844,-0.062429938465357,-0.0035737501457334]],[[0.015940664336085,0.031359106302261,0.028627578169107],[0.011341759935021,-0.020592141896486,-0.097860485315323],[-0.088521063327789,0.025260496884584,0.011221111752093]],[[-0.083432637155056,-0.066430814564228,-0.0069081517867744],[0.041771192103624,-0.035090066492558,0.043837752193213],[0.068759858608246,-0.0091536538675427,0.034550741314888]],[[0.059620536863804,0.068637333810329,0.084812216460705],[-0.0025038300082088,0.086652971804142,-0.015803115442395],[0.05531869456172,0.052590891718864,0.11027068644762]],[[0.001179029699415,0.045389201492071,0.12780882418156],[-0.064448222517967,-0.0071973139420152,-0.0013111900771037],[0.028214486315846,0.014798820950091,0.066842511296272]],[[0.052797883749008,-0.033333085477352,-0.004250496160239],[-0.0091171925887465,0.07903878390789,-0.014151867479086],[0.035219721496105,-0.023971287533641,0.015492802485824]],[[0.042910873889923,0.021857472136617,-0.048941664397717],[-0.070191718637943,0.0091637130826712,-0.0011517493985593],[0.023203019052744,0.048897825181484,0.026321386918426]],[[0.077386982738972,-0.0085624381899834,0.063555903732777],[0.022644147276878,-0.021093051880598,-0.011147948913276],[0.054564852267504,-0.044291507452726,0.040858253836632]],[[-0.025703461840749,-0.01059150416404,-0.0026741628535092],[0.065718203783035,0.050716951489449,0.020539795979857],[-0.0035558908712119,-0.02182581461966,-0.017582135275006]],[[0.035508491098881,-0.055952537804842,0.0020499411039054],[-0.044564258307219,-0.01914494857192,0.038556143641472],[-0.018041567876935,0.043188109993935,0.028436655178666]],[[-0.026748748496175,-0.011353044770658,-0.017797600477934],[0.0065509811975062,-0.042103655636311,0.010872174054384],[0.0745949447155,-0.018830915912986,0.031347181648016]],[[0.015009762719274,-0.061956509947777,0.044033020734787],[-0.048405677080154,-0.014670652337372,0.07231929153204],[0.073813326656818,0.040296051651239,0.079702287912369]],[[0.044862095266581,-0.018918054178357,-0.05748251453042],[0.020037304610014,-0.003111224854365,-0.0039866254664958],[-0.022525010630488,0.0069683496840298,-0.02640575170517]],[[-0.019399542361498,0.011172614060342,0.050677429884672],[-0.0033503426238894,0.01275660097599,0.039776917546988],[-0.026601383462548,-0.057895865291357,0.031601041555405]],[[0.035610072314739,0.017095442861319,-0.0071579678915441],[-0.068299278616905,0.046981610357761,0.023992611095309],[0.011973071843386,0.054397620260715,0.018829967826605]],[[0.035595402121544,0.0030167796649039,-0.058427978307009],[0.047769527882338,-0.056211452931166,0.0081157861277461],[0.029484327882528,-0.032247185707092,0.0053225103765726]],[[0.014989730902016,-0.00057500251568854,-0.042348951101303],[-0.0021143555641174,0.04490989819169,0.030568294227123],[-0.0070884888991714,0.001542245503515,-0.026407979428768]],[[-0.028226839378476,0.0031618769280612,-0.030387654900551],[0.030529594048858,0.0075473845936358,-0.069353193044662],[-0.036652091890574,-0.035086132586002,0.013673076406121]],[[-0.039544783532619,-0.022874632850289,-0.036136422306299],[0.017702490091324,-0.0059052729047835,0.045294191688299],[0.040885299444199,0.05582581833005,-0.087081059813499]],[[-0.053140059113503,0.034735102206469,-0.046801514923573],[-0.024997701868415,0.027959458529949,-0.00090033950982615],[-0.0060675404965878,-0.055516708642244,0.0057875490747392]],[[0.024792855605483,0.043301813304424,0.0059143397957087],[0.032938659191132,0.028184434399009,-0.045672379434109],[-0.030849443748593,0.0027193264104426,0.020893204957247]],[[-0.042239122092724,0.069507174193859,-0.014339977875352],[-0.015243827365339,0.026693381369114,-0.0061032236553729],[-0.022372126579285,0.036365337669849,-0.035313908010721]],[[0.0050885495729744,0.0063409442082047,0.019479218870401],[0.0050454190932214,0.057410750538111,-0.01698325201869],[-0.010357785969973,0.005856963340193,-0.035336326807737]],[[0.021729458123446,0.019624680280685,0.0040877521969378],[-0.014346241950989,-0.036370988935232,0.0052709146402776],[0.03119077719748,-0.0046567167155445,-0.019298300147057]],[[-0.038724139332771,0.021022757515311,0.092928260564804],[-0.064131297171116,0.010077059268951,0.040635701268911],[0.053962592035532,0.058978263288736,-0.017840500921011]],[[-0.059383176267147,-0.00030647899257019,-0.079532451927662],[-0.0042882757261395,0.08820591121912,-0.0076508852653205],[-0.056175619363785,-0.036041080951691,-0.051078248769045]],[[-0.074541307985783,0.03334628418088,-0.019311051815748],[-0.12370249629021,0.067892700433731,0.027607515454292],[-0.014755081385374,0.035456586629152,0.03191214799881]],[[0.093474544584751,0.061537276953459,0.034511867910624],[0.0047431555576622,0.032288987189531,0.041285492479801],[0.027712121605873,-0.014685380272567,0.019604500383139]],[[0.055454328656197,-0.084144301712513,-0.048283569514751],[-0.0019055511802435,0.039062429219484,-0.012325371615589],[0.041993539780378,0.036513827741146,0.027871726080775]],[[0.14825843274593,-0.0015166349476203,0.039901901036501],[-0.045185029506683,-0.0062480634078383,-0.031740888953209],[0.025089643895626,-0.015640866011381,0.081404879689217]],[[-0.062735952436924,-0.050571918487549,0.079916849732399],[-0.065327644348145,-0.021845856681466,0.0036429741885513],[0.056318793445826,-0.037761110812426,0.025227934122086]],[[0.0086186584085226,0.046478025615215,-0.0096900556236506],[0.025738481432199,-0.020942736417055,0.031981740146875],[-0.059267021715641,0.0033750410657376,-0.01589073985815]],[[-0.030800877138972,0.033758245408535,-0.028841340914369],[0.025380924344063,-0.072375118732452,-0.028692673891783],[-0.12751890718937,0.050471987575293,-0.060952994972467]],[[-0.1069189235568,-0.051135774701834,0.003186030080542],[-0.037572868168354,0.047233149409294,-0.019790843129158],[-0.0041276053525507,0.016901658847928,0.022805469110608]],[[-0.058572296053171,0.043778412044048,-0.047558661550283],[-0.083240531384945,0.010430167429149,-0.003696751082316],[-0.033253144472837,-0.017422020435333,-0.046392727643251]],[[0.088846102356911,0.036413639783859,-0.034579426050186],[-0.041526690125465,0.01017152890563,0.051443677395582],[0.013647258281708,-0.0017637022538111,0.020387213677168]],[[0.077964432537556,0.061832036823034,0.044881694018841],[-0.012795057147741,-0.0022428149823099,-0.029079904779792],[0.0053597562946379,-0.027846908196807,-0.013735153712332]],[[0.0096841342747211,-0.029940726235509,-0.01030030939728],[0.015337197110057,0.056341949850321,-0.0057754782028496],[0.066114239394665,-0.04169550538063,0.03547577559948]],[[0.00010960940562654,-0.050611820071936,-0.053861174732447],[-0.057354815304279,0.042077321559191,-0.016698164865375],[-0.017909133806825,-0.045885872095823,0.040299780666828]],[[0.11498960852623,0.002517752815038,-0.010035420767963],[0.0026660629082471,0.020597102120519,-0.021662715822458],[-0.0073507684282959,-0.031628090888262,-0.0039910762570798]],[[-0.010177487507463,0.063577800989151,0.060233201831579],[-0.00022717392130289,0.047516725957394,0.047136038541794],[-0.000490109086968,0.0089777549728751,0.024687035009265]],[[-0.029645457863808,0.0046884948387742,0.038358710706234],[0.093058831989765,0.027189621701837,0.041762296110392],[0.02974009886384,-0.035431336611509,0.020955165848136]],[[-0.055477678775787,0.066196739673615,0.032334625720978],[0.010883999057114,-0.0029604609590024,-0.029863033443689],[-0.024084923788905,-0.043799877166748,0.033755950629711]],[[-0.038786511868238,-0.070244379341602,-0.00068743439624086],[-0.094596773386002,-0.058979295194149,-0.037123076617718],[0.023443160578609,0.047462869435549,0.061528742313385]],[[0.01559398882091,0.018192503601313,0.058822914958],[0.010280041955411,-0.014212299138308,-0.032094068825245],[-0.044819336384535,-0.080394685268402,0.0085146464407444]],[[0.018770676106215,-0.016930339857936,0.046417135745287],[-0.0095345424488187,0.047019261866808,0.035333439707756],[-0.0011440032394603,-0.0054536899551749,-0.03651126101613]],[[-0.062916986644268,0.034489400684834,-0.019728066399693],[-0.033395513892174,0.054776556789875,0.060112338513136],[-0.083684213459492,0.075840026140213,-0.056087221950293]],[[-0.070442222058773,-0.0084437420591712,-0.018447609618306],[-0.040024466812611,-0.12193014472723,-0.013673434965312],[-0.057970531284809,-0.012832719832659,-0.063535943627357]],[[0.070272162556648,0.09455481171608,0.019454371184111],[-0.050013657659292,-0.12765315175056,0.067472085356712],[0.036965951323509,-0.0050749406218529,0.026473481208086]],[[0.013473759405315,0.036719892174006,0.0044700158759952],[0.076373226940632,0.045392125844955,-0.039918705821037],[0.02058576233685,0.035948429256678,-0.010772639885545]],[[-0.016631348058581,0.059123642742634,-0.057420123368502],[0.013343313708901,0.023089792579412,0.062098063528538],[-0.015812464058399,-0.087785229086876,-0.047096069902182]],[[0.017086058855057,-0.049426145851612,0.03761637583375],[-0.064536362886429,-0.0083570824936032,0.068955011665821],[-0.0036059957928956,-0.035197801887989,-0.018032340332866]],[[-0.043114587664604,0.091719597578049,-0.0067004607990384],[0.010287463665009,-0.059371221810579,-0.025947460904717],[-0.022081930190325,0.0030923248268664,0.013182266615331]],[[0.078978359699249,-0.0050059724599123,0.021292483434081],[0.01038035005331,0.033762086182833,0.0019126618281007],[0.045278295874596,-0.014615779742599,0.012616939842701]],[[-0.001333064516075,0.060944329947233,-0.002752075670287],[-0.0077332803048193,-0.023204766213894,-0.019115868955851],[0.030467754229903,0.0040939771570265,0.11538200825453]],[[-0.016295026987791,0.0046160859055817,0.023150408640504],[-0.043387461453676,0.0044101383537054,-0.022298956289887],[-0.0027168025262654,0.11453226208687,0.0095233209431171]],[[-0.0059065287932754,-0.037618070840836,0.03334242478013],[0.027627173811197,0.00065453216666356,-0.021252492442727],[0.021897988393903,-0.016956513747573,0.00097939337138087]],[[-0.031846731901169,0.00046414890675806,-0.028866481035948],[-0.05755528062582,0.0070217745378613,0.058016560971737],[-0.0022747237235308,0.045935075730085,-0.02239310182631]],[[0.0016413467237726,-0.0031181136146188,0.089434646070004],[0.086406126618385,0.024123365059495,-0.068792805075645],[0.078304372727871,0.0074573326855898,0.0021305654663593]],[[0.07306569814682,-0.029888624325395,0.033787906169891],[0.027298200875521,0.013665950857103,0.049145139753819],[-0.061033524572849,0.061968460679054,0.028195956721902]],[[0.0047054262831807,-0.0025791148655117,0.015259060077369],[0.035267602652311,0.033513348549604,0.014476736076176],[-0.063438601791859,0.10033087432384,0.0086261797696352]],[[-0.0009605911327526,-0.02567557618022,-0.0074818395078182],[-0.097001820802689,0.015345141291618,0.044303718954325],[-0.020353367552161,0.01114003546536,-0.013615006580949]],[[0.016902314499021,0.022695563733578,-0.033788487315178],[-0.078371614217758,-0.035726346075535,-0.0035302489995956],[0.018367411568761,-0.030120268464088,-0.033032905310392]],[[-0.033697422593832,0.066644467413425,-0.0050093666650355],[-0.067130371928215,-0.062505498528481,-0.001278133597225],[0.011864187195897,-0.0062266220338643,-0.0060876337811351]],[[-0.05356964841485,0.084304638206959,0.0042549013160169],[0.02356437407434,-0.032274805009365,0.056856203824282],[0.047483090311289,-0.011271328665316,0.049878530204296]],[[-0.045411694794893,-0.00880734808743,0.064978301525116],[0.029695419594646,-0.042606435716152,-0.043466735631227],[0.00044408265966922,-0.00587457139045,-0.044010698795319]],[[-0.013838400132954,-0.01053711026907,-0.053633101284504],[0.0064990664832294,-0.01171063259244,0.0077075408771634],[-0.076609253883362,0.03567511215806,-0.0090941842645407]],[[-0.044396832585335,0.091922007501125,0.015779964625835],[-0.036969691514969,-0.015321832150221,0.018769767135382],[0.065338864922523,-0.0296037402004,0.044792547821999]],[[-0.079303868114948,0.010904247872531,0.048836048692465],[0.1041100397706,-0.016399558633566,-0.01984554156661],[0.020458552986383,-0.039154246449471,-0.01815639808774]],[[0.011232261545956,0.074762426316738,0.017826391384006],[0.013505796901882,0.078412108123302,-0.0072411000728607],[0.014246339909732,-0.012429005466402,0.083266548812389]],[[0.04330250248313,-0.095845088362694,-0.039495542645454],[0.0046441308222711,-0.015531505458057,0.055200602859259],[-0.070995107293129,-0.075956679880619,0.016373736783862]],[[0.061715878546238,0.046229131519794,-0.044707059860229],[-0.019728878512979,-0.00096673483494669,-0.03029396943748],[0.060527924448252,-0.010992118157446,0.0032010183203965]],[[-0.029053242877126,-0.061111569404602,-0.029918355867267],[0.081907629966736,-0.036051586270332,0.052242550998926],[-0.042135693132877,-0.070153027772903,0.076161794364452]],[[0.02708781324327,0.0064856382086873,-0.031341273337603],[-0.021139547228813,0.090268932282925,0.14382423460484],[0.0053890869021416,-0.043851681053638,0.0087387124076486]],[[0.035679075866938,-0.024756444618106,-0.023730916902423],[-0.024437922984362,-0.10642771422863,0.09472730755806],[0.01466550398618,-0.001630726037547,-0.027461480349302]],[[0.022107148543,0.034599989652634,-0.014860571362078],[-0.015265395864844,-0.03248555958271,0.011726326309144],[0.090617336332798,0.052433744072914,-0.0069254767149687]],[[-0.020267264917493,-0.030110729858279,0.03201450034976],[0.0063834660686553,0.0037576998583972,0.0097090005874634],[-0.020133759826422,0.072742320597172,0.039512798190117]],[[0.068994916975498,0.039886690676212,0.041530966758728],[0.05911323800683,-0.018048044294119,-0.0034335157833993],[0.024925880134106,0.082786247134209,-0.038391228765249]],[[0.11165915429592,0.056631419807673,-0.028982188552618],[0.015606919303536,-0.048925668001175,0.050178445875645],[-0.06672228127718,0.012742903083563,0.065794393420219]],[[-0.032500386238098,0.0021234408486634,0.1048496067524],[-0.012221745215356,-0.028317216783762,0.012680752202868],[-0.0024908406194299,0.0066896686330438,0.020281197503209]],[[0.015646681189537,-0.095101349055767,0.069890819489956],[-0.028300290927291,-0.045996457338333,0.044044483453035],[0.026062753051519,-0.0074266698211432,0.014615635387599]],[[-0.088728487491608,-0.019689671695232,-0.0057614292018116],[0.053615044802427,-0.045757308602333,0.069967120885849],[-0.0028990507125854,0.09067290276289,-0.074868753552437]],[[-0.04892847314477,-0.019092222675681,-0.0027415286749601],[0.0060173994861543,-0.011985663324594,0.039069935679436],[-0.053708493709564,0.057292938232422,0.019179373979568]],[[0.030373508110642,0.05656061694026,0.063176967203617],[0.026441249996424,-0.018641941249371,0.023856144398451],[0.08248744904995,0.086669132113457,0.041789434850216]],[[-0.093605063855648,0.008034810423851,-0.0096606211736798],[-0.003517453558743,-0.017068447545171,0.088313437998295],[0.0036238941829652,0.081279374659061,0.013887081295252]],[[0.061233550310135,-0.024857128039002,-0.029191602021456],[0.001587190432474,0.015021450817585,0.046217184513807],[0.06804421544075,-0.070698492228985,0.058483827859163]],[[0.055502917617559,0.098245657980442,-0.00071276852395386],[0.0081803044304252,-0.016886774450541,-0.044949240982533],[-0.023814568296075,0.066834218800068,0.048014927655458]],[[0.072302348911762,0.019920390099287,0.022513756528497],[-0.052909187972546,-0.037353508174419,-0.043413776904345],[-0.020593235269189,0.00028197950450704,-0.0065958662889898]],[[-0.017892170697451,0.015333346091211,0.07667414098978],[0.085518196225166,-0.018576955422759,0.049544055014849],[-0.066760331392288,-0.04856539145112,0.030524458736181]],[[0.010758721269667,0.040911894291639,-0.050010167062283],[-0.05588099732995,-0.037618417292833,-0.041638895869255],[0.011665076948702,-0.02018347196281,-0.036964852362871]],[[-0.010602763853967,-0.022840762510896,0.05115820094943],[-0.0119035737589,0.052479408681393,-0.029700081795454],[0.03716479241848,0.036725286394358,-0.019731136038899]],[[0.032938610762358,-0.04773661121726,-0.02167410030961],[-0.013791549019516,-0.029316479340196,0.037155441939831],[0.037785686552525,-0.0089121367782354,0.027667514979839]],[[0.025856485590339,-0.020979521796107,0.071348577737808],[-0.033189509063959,-0.050908155739307,-0.035237316042185],[0.030112471431494,-0.0011936835944653,-0.013897582888603]],[[-0.039440371096134,0.065162070095539,0.042749881744385],[-0.041104268282652,9.2658650828525e-05,-0.10679456591606],[0.031582441180944,0.0177883207798,-0.0089126331731677]],[[0.006275097373873,0.03208589553833,0.030482519418001],[-0.07147092372179,-0.025725275278091,0.11121786385775],[-0.060293044894934,0.0085162417963147,-0.039109118282795]],[[-0.023929877206683,-0.008672459051013,0.00057343154912814],[0.0070307278074324,-0.01400151476264,0.064652398228645],[-0.045293003320694,-0.045280016958714,0.01583650149405]],[[-0.01947365142405,-0.0090160053223372,-0.016997795552015],[0.020350836217403,-0.06954338401556,-0.0027144711930305],[-0.072251342236996,0.045283995568752,0.02751200273633]],[[0.0015264166286215,0.064583942294121,0.0020888624712825],[-0.039773486554623,0.038872107863426,-0.05222687125206],[0.0046124774962664,0.043968930840492,-0.01796492561698]],[[-0.023885402828455,0.013001769781113,-0.038226038217545],[0.055771581828594,-0.024821965023875,-0.0068261558189988],[0.048120159655809,0.040880914777517,0.018005330115557]],[[-0.037683758884668,0.034786723554134,0.0023179370909929],[-0.037515353411436,0.016501881182194,-0.083020471036434],[-0.0052983947098255,0.0068914219737053,-0.029120499268174]],[[0.03154169023037,0.055725656449795,0.046068288385868],[-0.038077961653471,0.074404887855053,-0.047385845333338],[-0.034318998456001,-0.033722292631865,-0.0064207008108497]],[[-0.023064289242029,-0.037946507334709,-0.039665356278419],[-0.0036539987195283,-0.024911055341363,0.04896255210042],[-0.032228201627731,-0.032489132136106,-0.042252663522959]],[[0.021266415715218,0.014765365049243,-0.014364004135132],[-0.024721143767238,0.082303449511528,-0.030131176114082],[0.054595071822405,0.045559167861938,0.032585136592388]],[[0.05371068790555,0.032515536993742,-0.0082207713276148],[0.0003272688772995,-0.010254802182317,0.009920765645802],[-0.004693987313658,0.020240887999535,-0.037305820733309]],[[-0.026275778189301,-0.0096089271828532,0.003040786832571],[-0.022528016939759,-0.031027602031827,0.032490499317646],[-0.016382023692131,0.015853030607104,0.062220510095358]],[[-0.032496657222509,-0.0082682380452752,-0.054075349122286],[0.053238991647959,0.017449419945478,0.055073413997889],[0.011652562767267,-0.010374960489571,-0.090821832418442]],[[-0.00095141521887854,0.04190731793642,0.02570291608572],[0.04074265435338,0.0012738517252728,-0.059976276010275],[-0.013608082197607,0.019369054585695,0.013742620125413]],[[-0.0080228457227349,0.040056068450212,0.024345893412828],[-0.014593767933547,-0.0067473943345249,-0.0071947919204831],[0.071719855070114,0.068406261503696,-0.052702981978655]],[[-0.014510697685182,-0.027204234153032,0.019472967833281],[0.039660397917032,0.014208525419235,-0.011836904101074],[0.002872487064451,0.03297171369195,-0.016148081049323]],[[0.045486029237509,-0.030556451529264,-0.031662233173847],[-0.073610194027424,-0.074016809463501,0.08201440423727],[0.043876722455025,-0.058095786720514,0.020955951884389]]],[[[-0.0097699472680688,-0.0092074051499367,-0.023044604808092],[0.12243758141994,-0.035317394882441,0.018513850867748],[-0.010946994647384,-0.033184427767992,-0.0006856310646981]],[[0.012563231401145,-0.031452443450689,0.081861853599548],[0.032237108796835,-0.033383648842573,-0.047681726515293],[-0.10892190784216,0.021747805178165,0.0067246402613819]],[[0.10623306035995,0.083547040820122,0.029244573786855],[-0.01074009668082,-0.051916461437941,-0.051806528121233],[0.014756642282009,0.054696261882782,0.060811635106802]],[[0.015641929581761,0.019873347133398,0.069556079804897],[0.058682102710009,0.10917634516954,0.035943847149611],[-0.027167372405529,0.056424267590046,-0.030586138367653]],[[-0.021553710103035,0.0048436881043017,-0.15283207595348],[-0.01606703363359,0.055603936314583,0.021864280104637],[-0.047519095242023,-0.072461128234863,0.030836556106806]],[[0.082003764808178,0.084408365190029,0.057920597493649],[0.016281994059682,0.10812971740961,0.044576451182365],[0.050796866416931,-0.014832951128483,0.034998897463083]],[[0.063813760876656,0.040584936738014,0.067847020924091],[0.034005288034678,0.0026040689554065,0.011170617304742],[-0.068468160927296,0.046250034123659,0.027605267241597]],[[-0.032612275332212,0.024645214900374,0.076592214405537],[0.068021111190319,0.012014996260405,0.058723632246256],[-0.010868517681956,-0.032644156366587,0.11747210472822]],[[-0.046268783509731,-0.010289620608091,0.051884777843952],[0.049648631364107,0.042193848639727,0.00094811047893018],[-0.015951935201883,-0.021177381277084,0.025268567726016]],[[0.056509327143431,0.037575483322144,0.0079406332224607],[0.13644061982632,0.17827753722668,0.12216778099537],[-0.022631920874119,-0.20258645713329,-0.0025650400202721]],[[-0.04218465834856,0.0096861822530627,0.04390686750412],[0.02142777480185,0.011963818222284,0.083205953240395],[-0.050553560256958,0.042840108275414,-0.061928685754538]],[[0.076637238264084,0.0111468071118,0.074374906718731],[0.020611414685845,0.1124120131135,0.04795940220356],[0.074496395885944,0.027525521814823,-0.0021696684416384]],[[-0.042555637657642,-0.034349761903286,-0.048331648111343],[-0.050116930156946,0.0034823683090508,0.051280125975609],[-0.049629975110292,-0.019481463357806,-0.055387232452631]],[[0.043063141405582,-0.0076076560653746,-0.083209730684757],[0.036898355931044,-0.011595603078604,-0.085771657526493],[0.026975154876709,-0.01155433896929,0.025132685899734]],[[0.083572685718536,-0.033200949430466,0.11700680851936],[0.19239588081837,0.075350232422352,-0.021301070228219],[0.043470930308104,0.15607006847858,0.09900189936161]],[[-0.04272635653615,0.0529570505023,0.002594941528514],[0.012061165645719,0.030399827286601,0.034959316253662],[-0.015349486842752,0.012697626836598,-0.056818813085556]],[[0.039952486753464,-0.085499636828899,-0.0014669151278213],[-0.055168572813272,0.034119695425034,0.052764661610126],[-0.048583324998617,-0.027426259592175,0.062492914497852]],[[0.093140132725239,0.11397229135036,0.041499760001898],[-0.0098015302792192,-0.055183541029692,-0.051905062049627],[-0.015710916370153,-0.034177158027887,-0.1162992566824]],[[0.018233237788081,0.074070908129215,-0.002258074702695],[-0.1025964319706,0.0039596371352673,-0.02713936008513],[0.037750624120235,-0.062392447143793,-0.032904520630836]],[[0.041836645454168,-0.052363608032465,-0.053671821951866],[0.0040437839925289,0.0081782164052129,0.048100851476192],[-0.034127719700336,0.041345309466124,0.092345826327801]],[[0.061478450894356,-0.018742691725492,-0.004944653250277],[-0.00046515214489773,-0.015041563659906,0.053694874048233],[0.037132497876883,0.070428386330605,-0.019600560888648]],[[0.055354923009872,0.034674491733313,0.022732624784112],[0.092492461204529,0.053740970790386,0.098499789834023],[0.063213005661964,-0.024261724203825,0.00033159591839649]],[[-0.052298784255981,-0.016888074576855,0.013418830931187],[-0.023663150146604,0.014395759440958,-0.013292512856424],[0.040834859013557,-0.04137497395277,-0.082746811211109]],[[0.017226748168468,-0.03600425645709,-0.026120649650693],[0.11217392235994,0.037943419069052,0.016650455072522],[-0.14366744458675,0.006828386336565,-0.12125483900309]],[[0.01412492711097,-0.0071337232366204,-0.097709774971008],[0.035247944295406,0.035604331642389,0.032795403152704],[-0.042416382580996,0.15354500710964,-0.024303369224072]],[[-0.031515996903181,-0.073335193097591,0.011225884780288],[0.026886211708188,0.043363496661186,0.030061071738601],[-0.040165387094021,-0.014057088643312,-0.04340161755681]],[[0.051131002604961,0.015575840137899,0.027986051514745],[0.0211844407022,0.082767598330975,0.047845438122749],[0.10487396270037,-0.0083204694092274,0.034697920084]],[[-6.9816145696677e-05,0.056090004742146,0.053170520812273],[0.014110776595771,-0.010219973511994,-0.023155845701694],[0.015220724977553,-0.056554492563009,-0.037396807223558]],[[0.056888479739428,0.0011127876350656,0.075501188635826],[0.062427591532469,0.044179432094097,0.027349557727575],[0.058374457061291,0.0093191247433424,-0.069539174437523]],[[0.046554490923882,0.057167284190655,0.089021660387516],[-0.028335267677903,0.077206119894981,-0.043346088379622],[-0.0047838478349149,0.0098593095317483,-0.056371338665485]],[[0.0012668746057898,0.044415231794119,0.09893050044775],[0.0013994716573507,0.017926251515746,-0.067738063633442],[0.083381094038486,0.01945742405951,0.049445271492004]],[[-0.0093256961554289,-0.030198598280549,0.047788057476282],[-0.044725853949785,-0.075679235160351,-0.023063264787197],[0.071126736700535,0.04383909329772,0.071001939475536]],[[0.035639751702547,0.058972060680389,0.1401234716177],[0.076799310743809,0.024400683119893,0.0067392759956419],[-0.048015311360359,-0.098223939538002,-0.057075172662735]],[[0.092971108853817,0.025496896356344,-0.0044291196390986],[0.0099509507417679,0.031059006229043,0.083301156759262],[0.031455416232347,-0.014921020716429,0.052470408380032]],[[-0.020351072773337,0.011071055196226,0.030383430421352],[0.029903585091233,-0.060607198625803,-0.004439331125468],[0.0079379389062524,0.02360463514924,0.068482495844364]],[[-0.031947877258062,0.092508137226105,-0.0077335275709629],[-0.090670339763165,-0.062079947441816,-0.038085259497166],[0.059044934809208,0.0026343583595008,-0.069049179553986]],[[0.00032223260495812,-0.027586596086621,-0.0097754495218396],[-0.03669635206461,-0.05866850912571,-0.031919401139021],[0.03579318150878,-0.066261485219002,-0.081503078341484]],[[0.066996730864048,0.046660333871841,0.077823854982853],[0.031586710363626,0.073505647480488,0.021617088466883],[0.050504382699728,-0.00056171440519392,-0.019185815006495]],[[-0.015642195940018,0.070169232785702,0.053554136306047],[0.038786854594946,0.10515066236258,0.033794172108173],[0.026244727894664,-0.054861716926098,0.021985625848174]],[[0.033534120768309,-0.034934632480145,-0.037394005805254],[0.047187983989716,-0.042692877352238,0.019702207297087],[0.030931312590837,-0.036558702588081,-0.032074343413115]],[[0.025468271225691,-0.01194731798023,0.040798056870699],[-0.045176140964031,-0.041415330022573,0.01446180883795],[-0.012793770991266,0.038354407995939,-0.060034289956093]],[[-0.023338921368122,-0.012260516174138,0.0066264136694372],[-0.042107477784157,-0.021584512665868,-0.022141145542264],[0.024462709203362,0.074506759643555,0.046335585415363]],[[0.014056688174605,0.076232112944126,-0.017397040501237],[0.026657532900572,0.0012054381659254,0.052854254841805],[0.015930201858282,0.0080388421192765,0.098042085766792]],[[0.080106295645237,0.025382934138179,-0.028418252244592],[-0.035382304340601,0.080388210713863,0.0013192559126765],[0.12848921120167,0.013013725169003,-0.0600426197052]],[[0.088499583303928,0.024774771183729,0.098836019635201],[0.028036432340741,0.061876703053713,0.01619353890419],[0.084405533969402,-0.025604419410229,0.056855939328671]],[[0.019391052424908,0.03090195544064,-0.0022367117926478],[-0.03320337086916,0.015938570722938,-0.046403281390667],[-0.020551130175591,0.10593830049038,0.020376436412334]],[[0.02826833166182,0.0065411240793765,0.076620750129223],[-0.0042809494771063,-0.02017449401319,-0.094094529747963],[0.1250302195549,-0.081648752093315,0.012481240555644]],[[0.10512764751911,-0.0092694517225027,0.037419807165861],[-0.0091954628005624,0.020958481356502,-0.0088529186323285],[-0.088605962693691,-0.047948215156794,0.041648268699646]],[[0.040302764624357,-0.016443340107799,-0.048651918768883],[0.040402341634035,0.09875975549221,0.057266231626272],[-0.059344239532948,0.017890650779009,-0.021494392305613]],[[-0.00078912725439295,-0.0078080263920128,0.028544850647449],[0.040862698107958,-0.044188022613525,0.050347600132227],[0.028498735278845,0.059787251055241,0.0022493081633002]],[[-0.027015510946512,0.060615569353104,0.0047581004910171],[0.0023042794782668,-0.0955670773983,-0.030492015182972],[0.0057156030088663,0.017541132867336,0.056655220687389]],[[0.066587530076504,-0.092910833656788,0.12432460486889],[0.012122232466936,0.10338445007801,-0.019969437271357],[-0.05551315844059,-0.093348555266857,0.053870551288128]],[[-0.06595553457737,-0.080350339412689,-0.074993871152401],[-0.029515499249101,-0.0078551741316915,-0.011133178137243],[-0.016247009858489,0.0065304562449455,-0.041855219751596]],[[0.0040965238586068,0.024950355291367,-0.033254887908697],[0.06757740676403,0.041264336556196,0.11504866927862],[-0.12294639647007,-0.068474858999252,-0.057171788066626]],[[0.0038338874001056,0.044400423765182,-0.068750217556953],[0.00035265844780952,0.021183751523495,0.053575433790684],[0.055193655192852,-0.0081403916701674,0.062045376747847]],[[0.018683787435293,-0.027327517047524,-0.043375976383686],[0.032344195991755,-0.0870630890131,0.0059214979410172],[0.01384793408215,-0.036614660173655,-0.00079968350473791]],[[0.028559351339936,0.003445208305493,-0.057201966643333],[-0.012642838992178,0.02162853628397,-0.05560090765357],[0.040161114186049,-0.0063946438021958,0.041096318513155]],[[0.00081935647176579,0.013218631967902,-0.018055573105812],[0.041557896882296,0.051939014345407,0.0066007971763611],[-0.031838182359934,-0.099852934479713,-0.01679996214807]],[[-0.041910134255886,0.052429020404816,0.026083279401064],[0.046961475163698,0.064077481627464,0.011582247912884],[0.055385272949934,0.087915614247322,0.050926957279444]],[[0.038655068725348,-0.074639089405537,0.024615280330181],[-0.047981061041355,0.061811562627554,0.011483838781714],[0.0043932292610407,-0.0053614592179656,-0.025697875767946]],[[0.044270224869251,0.10110934078693,-0.026013541966677],[0.046434748917818,0.014780952595174,0.047943413257599],[-0.047511879354715,0.006714629009366,0.028446024283767]],[[-0.052509840577841,-0.013553908094764,-0.028874738141894],[0.020894560962915,0.01497383788228,0.13575723767281],[-0.02326057292521,-0.070778451859951,-0.13673247396946]],[[-0.050705321133137,-0.0041177207604051,0.097780831158161],[-0.025088449940085,-0.065967626869678,0.012870714999735],[-0.027934478595853,0.050614386796951,-0.0053840982727706]],[[0.00057838996872306,-0.0021757597569376,0.015766790136695],[0.0091889537870884,0.060578528791666,-0.044723443686962],[0.057706937193871,-0.097553409636021,0.024331238120794]],[[0.035449087619781,-0.011450281366706,0.073678940534592],[0.016606595367193,-0.085582591593266,0.023432549089193],[0.016411304473877,0.077223211526871,0.038850340992212]],[[0.067819073796272,-0.037270553410053,-0.087174735963345],[-0.028737638145685,0.0057426742278039,0.091869078576565],[0.074017710983753,-0.043941255658865,-0.057141475379467]],[[0.14290755987167,-0.027146108448505,0.076281651854515],[0.11907387524843,0.070199579000473,0.071620538830757],[-0.056718613952398,-0.037975311279297,-0.0055760084651411]],[[0.01467030774802,0.037872601300478,0.0020130921620876],[-0.030425190925598,0.039629850536585,0.012049471959472],[0.002504057250917,0.017393354326487,0.02526437304914]],[[0.021747460588813,-0.049355514347553,0.018118195235729],[0.064114324748516,-0.004962120205164,0.0019082464277744],[0.052584212273359,-0.018916016444564,0.040652491152287]],[[0.057250902056694,0.097748897969723,0.035941109061241],[-0.089582733809948,0.089225918054581,0.044635802507401],[-0.013591650873423,-0.032398097217083,-0.01278253365308]],[[0.071142219007015,-0.047142636030912,-0.0074288444593549],[0.035975314676762,0.0062785809859633,0.12065955996513],[0.011949482373893,0.024310998618603,-0.017002930864692]],[[-0.093076445162296,-0.025943664833903,0.10773149877787],[0.024193163961172,0.00022089826234151,0.032608386129141],[0.096764273941517,-0.057402200996876,0.0080940779298544]],[[0.025112446397543,-0.027072576805949,0.011394721455872],[0.070546761155128,0.047484617680311,0.03533985465765],[-0.0042761443182826,0.031940650194883,-0.079551227390766]],[[-0.089784689247608,0.015053236857057,0.048726696521044],[-0.046484991908073,0.030744316056371,0.010130955837667],[0.068823903799057,0.0036316160112619,0.071370162069798]],[[-0.036148473620415,0.043456990271807,-0.065233930945396],[-0.062776662409306,-0.018944138661027,-0.039559416472912],[-0.0092013971880078,-0.044450897723436,-0.082139775156975]],[[-0.017750365659595,0.057398714125156,0.14524431526661],[-0.0014746217057109,0.067086488008499,-0.063549689948559],[0.0048441123217344,0.082505084574223,-0.041964933276176]],[[0.10021214187145,0.083485640585423,0.10202657431364],[0.070713438093662,-0.079669378697872,0.063400730490685],[0.035745654255152,-0.065677776932716,0.021436594426632]],[[0.010315590538085,-0.00056298356503248,0.073742859065533],[0.034981720149517,0.075406789779663,0.086295582354069],[-0.037138178944588,0.0081291757524014,0.062802657485008]],[[-0.032857216894627,0.038677826523781,0.066207960247993],[0.012023376300931,-0.0002139185089618,0.017748590558767],[-0.039670810103416,0.042378086596727,0.11782260239124]],[[-0.041892863810062,-0.034200664609671,-0.057899333536625],[-0.08957626670599,-0.04405028000474,0.072927050292492],[-0.041346520185471,-0.06925306469202,-0.0033720575738698]],[[-0.0028696784283966,-0.0087340353056788,-0.050209544599056],[0.054035969078541,0.034993316978216,0.085101746022701],[-0.021949423477054,0.044515393674374,0.0064197303727269]],[[0.015306561253965,0.18689627945423,0.079111151397228],[0.049049522727728,-0.029060784727335,0.044386867433786],[-0.10084433108568,-0.037956658750772,0.051443196833134]],[[0.045013539493084,0.00020953496277798,0.059849888086319],[0.060748264193535,-0.071671299636364,0.012643787078559],[-0.062079019844532,-0.036377068608999,-0.050017856061459]],[[0.032703928649426,-0.014726442284882,-0.010094631463289],[-0.015041639097035,0.010118315927684,0.035775825381279],[-0.049049805849791,-0.098922498524189,0.096673555672169]],[[0.074984520673752,-0.07185186445713,-0.033319875597954],[-0.057654172182083,0.068296492099762,0.013051641173661],[0.025342881679535,0.057343818247318,-0.00092554197181016]],[[-0.00056490942370147,-0.039462644606829,-0.030394705012441],[-0.072591617703438,-0.014340875670314,0.025992717593908],[-0.087947882711887,0.029297698289156,0.0098174074664712]],[[0.022317837923765,-0.019105188548565,0.021304193884134],[0.045140687376261,0.076914690434933,0.015857251361012],[0.025658937171102,-0.030390283092856,0.006985945161432]],[[-0.046795908361673,-0.038767408579588,-0.019695609807968],[0.0245804451406,0.088742069900036,0.027604239061475],[-0.034143857657909,0.0602040104568,-0.062445092946291]],[[0.0054733790457249,0.043821603059769,0.048423655331135],[-0.039462815970182,-0.0030514702666551,-0.012842085212469],[-0.017193784937263,0.03351978957653,-0.029842387884855]],[[0.024325190111995,0.032636377960443,0.13956472277641],[0.063368201255798,-0.025533109903336,0.056912656873465],[0.0015003201551735,0.007916072383523,0.067309089004993]],[[-0.032857850193977,0.037094011902809,0.091860607266426],[0.046817474067211,-0.050940584391356,0.11348167806864],[0.0044592954218388,0.027407851070166,-0.032494716346264]],[[-0.0055850385688245,0.047507617622614,-0.0025843882467598],[-0.036847736686468,0.028494041413069,-0.061605233699083],[0.019683273509145,0.044244725257158,0.017702685669065]],[[-0.03793054074049,0.032599359750748,-0.10805136710405],[-0.019063210114837,-0.098274327814579,0.018711004406214],[0.0050875567831099,0.036267336457968,-0.059459116309881]],[[-0.02860607765615,-0.04494459554553,-0.01801960542798],[0.065162502229214,-0.026764379814267,0.05160515755415],[0.013262314721942,0.096818417310715,0.067487992346287]],[[0.013332329690456,-0.0010302525479347,0.054551143199205],[0.0021656656172127,0.013733295723796,-0.036805644631386],[-0.00034722208511084,0.079064406454563,-0.0025566399563104]],[[-0.082465223968029,0.056960392743349,-0.011540214531124],[-0.011601306498051,0.0041083535179496,-0.061353113502264],[0.040662553161383,0.026756033301353,0.019621407613158]],[[0.039193671196699,0.0071331234648824,-0.07746134698391],[-0.05027711391449,-0.02877464145422,0.071680493652821],[-0.092636965215206,-0.038753319531679,0.0064899367280304]],[[0.016608882695436,-0.019005266949534,-0.061082776635885],[0.11446197330952,0.10362789779902,0.034385796636343],[0.043907310813665,0.0083894925191998,0.010274001397192]],[[-0.071396097540855,0.046369656920433,0.0052930722013116],[0.13384173810482,0.070396244525909,-0.0095777725800872],[-0.07121966779232,-0.049034938216209,-0.059748068451881]],[[0.012884445488453,0.045328821986914,0.0023043085820973],[0.0049893315881491,-0.0014979565748945,0.023153010755777],[-0.038107663393021,0.042955365031958,-0.065471395850182]],[[-0.032508086413145,0.04290633648634,-0.0043155658058822],[0.0055190795101225,0.017859352752566,0.070422865450382],[0.011383982375264,-0.027021842077374,0.012952473945916]],[[-0.035764250904322,0.00027895951643586,0.10074972361326],[0.059111475944519,0.029597107321024,0.065405748784542],[0.082765899598598,0.013362097553909,0.092072419822216]],[[0.062727138400078,0.044162951409817,-0.043018531054258],[0.086912721395493,-0.022145973518491,0.057059444487095],[-0.019964473322034,0.035992205142975,-0.0045107426121831]],[[-0.028840590268373,-0.030636012554169,0.055881854146719],[-0.012437026016414,0.00059600040549412,-0.021591687574983],[-0.03006387129426,0.060730151832104,0.026135995984077]],[[-0.051770266145468,-0.034082967787981,0.019790709018707],[-0.0058443541638553,0.008739959448576,0.038852736353874],[0.068874053657055,0.021827546879649,-0.035668049007654]],[[-0.06739829480648,0.0015972753753886,-0.010370125994086],[0.0570711158216,0.06089137122035,-0.0097004882991314],[0.030779959633946,0.069069489836693,0.13014706969261]],[[-0.060584407299757,0.040838681161404,-0.031187992542982],[0.0018312280299142,-0.022862147539854,0.0079486928880215],[0.099284313619137,0.0372549071908,0.0031999663915485]],[[0.054773043841124,-0.065350860357285,0.041844706982374],[0.03509833291173,-0.043360121548176,-0.031197838485241],[0.010540259070694,-0.022358074784279,0.044065900146961]],[[0.030303673818707,-0.0089403307065368,-0.0039990618824959],[-0.0028184810653329,-0.078673616051674,0.0043214308097959],[0.090213268995285,0.00092500459868461,-0.054183758795261]],[[-0.0062131443992257,0.1311943680048,0.082541540265083],[-0.078389458358288,-0.053255740553141,0.0069479532539845],[-0.0048851021565497,-0.03735001757741,-0.060509033501148]],[[-0.12390443682671,-0.040119636803865,-0.009516098536551],[0.075778134167194,-0.018717208877206,-0.010034635663033],[0.019222220405936,-0.0057400921359658,-0.021799417212605]],[[-0.092264480888844,-0.015893405303359,-0.0093044592067599],[0.046640984714031,-0.083079144358635,0.1036176905036],[-0.020746521651745,0.014172176830471,-0.01888551749289]],[[0.08144074678421,0.00017360295169055,0.080641135573387],[0.0056126900017262,0.027069810777903,0.029652250930667],[-0.088527426123619,-0.035120017826557,0.063713103532791]],[[0.0073268073610961,0.017045376822352,-0.0018208977999166],[-0.049159590154886,-0.068373814225197,0.010780302807689],[0.076202243566513,0.04067862033844,-0.049211520701647]],[[-0.063177160918713,-0.052180700004101,-0.12442773580551],[0.032846260815859,0.015889143571258,0.014865793287754],[-0.091537110507488,-0.055116824805737,-0.05711779743433]],[[0.0044470471329987,0.0064375679939985,0.015994573011994],[0.012753888964653,0.092062450945377,0.096151307225227],[0.040605876594782,-0.079933345317841,-0.0047992700710893]],[[0.038721386343241,0.08462580293417,-0.023122368380427],[-0.025848556309938,0.024162827059627,-0.010834815911949],[0.070244759321213,0.0016857569571584,0.066324017941952]],[[0.022568419575691,0.023668043315411,0.051997780799866],[0.019410260021687,0.066216640174389,0.015071214176714],[0.035048101097345,0.030071415007114,-0.13915434479713]],[[0.093993864953518,0.00092184788081795,-0.071544900536537],[-0.11949875205755,0.057095848023891,0.012926190160215],[0.028601605445147,0.012852910906076,-0.012425466440618]],[[-0.090558521449566,-0.085324935615063,-0.043101914227009],[-0.040335141122341,-0.010794288478792,-0.057221736758947],[0.018862564116716,0.016016418114305,-0.055105157196522]],[[-0.051935162395239,-0.061645582318306,0.086628533899784],[0.029806649312377,0.078429363667965,0.053250573575497],[-0.037256501615047,-0.06999746710062,-0.01817706041038]],[[-0.052620530128479,-0.030455840751529,-0.036122292280197],[-0.019455462694168,0.058672178536654,-0.063868083059788],[-0.0013989906292409,0.033600505441427,0.0076758763752878]],[[-0.035755477845669,0.011011038906872,0.00058565632207319],[0.0093235485255718,-0.026647033169866,0.079197019338608],[0.028943946585059,-0.03973538056016,0.041584987193346]],[[-0.031684298068285,-0.034351494163275,-0.011060348711908],[-0.029324723407626,-0.041181296110153,-0.070287510752678],[-0.016257207840681,0.074043907225132,-0.0054305498488247]],[[0.026467489078641,-0.018281972035766,0.0081624928861856],[0.011482466012239,-0.022666132077575,-0.012285266071558],[0.00063707528170198,-0.013816162012517,-0.089869625866413]],[[-0.0017264985945076,0.055164538323879,0.052791528403759],[0.092676974833012,0.081078708171844,0.01014456152916],[-0.032205726951361,-0.019349403679371,0.073719993233681]],[[0.035633362829685,-0.0064120166935027,0.088139660656452],[-0.018130507320166,0.025800954550505,0.074274696409702],[0.0025510666891932,-0.086695462465286,0.12087946385145]],[[-0.0030139535665512,0.06740490347147,0.024435512721539],[-0.0066831200383604,0.076482139527798,0.0063225426711142],[-0.020815024152398,-0.049881912767887,0.0022496921010315]]],[[[0.036699689924717,0.054532360285521,-0.034286189824343],[-0.041086740791798,-0.0054544261656702,0.041316099464893],[-0.018135346472263,-0.0036098265554756,0.047652263194323]],[[-0.002373315859586,0.031883548945189,0.011782980524004],[0.022760111838579,0.031893938779831,7.8790668339934e-05],[-0.063215680420399,0.0033904374577105,0.0041323816403747]],[[0.0083702886477113,-0.012307562865317,0.065615713596344],[-0.037056677043438,0.095724433660507,0.077402174472809],[0.043582897633314,0.0053402525372803,0.025894125923514]],[[0.021252851933241,-0.0055860225111246,0.018655333667994],[-0.02101144567132,-0.030608860775828,-0.0031932021956891],[0.025368601083755,0.014194855466485,0.02828860655427]],[[-0.10940577089787,-0.030458644032478,0.029382638633251],[0.045614581555128,-0.0066744219511747,-0.080626793205738],[0.0081326616927981,0.042639743536711,0.046035580337048]],[[0.014111805707216,-0.076653033494949,0.0041086263954639],[0.034893330186605,0.072589583694935,0.0090466290712357],[-0.0056771445088089,0.060321066528559,0.0058900746516883]],[[0.019251087680459,-0.046274431049824,0.014353486709297],[-0.026657612994313,0.036630786955357,0.023517083376646],[-0.0020108902826905,0.043905220925808,-0.035925447940826]],[[0.019076861441135,-0.023773169144988,0.028035838156939],[-0.043233834207058,-0.028714107349515,0.0088085411116481],[-0.032901883125305,-0.028119567781687,-0.031216468662024]],[[0.012713599950075,0.014147479087114,0.067157253623009],[0.0024217928294092,0.086590237915516,-0.042601846158504],[0.05051938816905,0.04029593616724,0.044601865112782]],[[0.0802361369133,-0.049530260264874,0.065084509551525],[0.083264455199242,0.081011675298214,0.05450089648366],[0.061563387513161,0.10148152709007,0.10658967494965]],[[0.052466128021479,0.010555384680629,-0.0026278835721314],[-0.0069299140013754,-0.012526890262961,0.057493928819895],[0.076780915260315,-0.025205593556166,0.019166324287653]],[[0.091650381684303,-0.024000780656934,0.056632068008184],[0.021652333438396,-0.044424206018448,-0.018722476437688],[-0.011014427058399,-0.022529255598783,0.035122249275446]],[[-0.025525886565447,-0.085528045892715,-0.038606148213148],[0.016409227624536,0.061913754791021,0.070013873279095],[0.035505905747414,-0.026742586866021,0.050083354115486]],[[0.087686076760292,0.031298663467169,0.036745518445969],[0.014395802281797,0.0047284588217735,0.050836857408285],[0.029016576707363,-0.0061502107419074,0.034547701478004]],[[-0.018421461805701,-0.029520086944103,0.18087008595467],[0.12323515117168,-0.060576569288969,0.032685671001673],[-0.054919324815273,0.18198923766613,0.013351750560105]],[[-0.016933903098106,0.00069739570608363,0.0037137826438993],[-0.047734644263983,0.011191723868251,0.0023340578190982],[-0.079528965055943,0.025107057765126,-0.1066352725029]],[[0.023230124264956,0.013760722242296,0.026022247970104],[0.020254209637642,0.009785539470613,0.054800797253847],[0.00065155728952959,0.084462657570839,0.05507779493928]],[[-0.035800997167826,0.058776002377272,0.0044403076171875],[0.057904381304979,-0.021645493805408,0.023687239736319],[0.033107370138168,-0.026863303035498,0.049507200717926]],[[0.058397013694048,-0.04814238473773,-0.019014690071344],[-0.0056760311126709,0.058226089924574,0.05625668913126],[0.033617477864027,-0.030248329043388,0.080781139433384]],[[-0.018237136304379,-0.039083499461412,0.061302021145821],[0.042761031538248,0.05236804485321,0.038032192736864],[-0.011320658028126,0.057268545031548,0.12094563990831]],[[0.010442312806845,-0.021466301754117,-0.080459110438824],[-0.068039014935493,-0.042360279709101,0.072432771325111],[-0.042359758168459,-0.00048520730342716,-0.062946446239948]],[[0.024314977228642,0.11864513903856,0.031517945230007],[-0.0052696326747537,0.008414788171649,0.076641917228699],[0.014707600697875,0.066205941140652,0.020279133692384]],[[-0.0034564840607345,0.029738271608949,0.081957325339317],[0.013468072749674,0.016264772042632,0.051543578505516],[0.026636118069291,0.018101964145899,-0.0050343791954219]],[[-0.029185336083174,-0.076440259814262,-0.015324861742556],[-0.042975109070539,0.0063479891978204,-0.0038556426297873],[-0.015437606722116,-0.0035893472377211,0.065173171460629]],[[0.077133007347584,0.047046352177858,0.029148105531931],[0.033425491303205,0.059101935476065,0.02969510294497],[0.0065049203112721,0.038368552923203,0.024141808971763]],[[0.0040516429580748,-0.024070354178548,-0.050024509429932],[-0.028552502393723,0.00014803383965045,0.016032030805945],[0.019139159470797,-0.082214251160622,-0.014529171399772]],[[0.053113009780645,-0.071212984621525,-0.037688925862312],[0.04604721814394,0.044051110744476,-0.045354131609201],[-0.022894756868482,0.065794639289379,0.019178224727511]],[[0.011741520836949,-0.003271444234997,-0.062990814447403],[-0.0034140455536544,-0.018414460122585,0.0030312424059957],[-0.02646966651082,0.075051948428154,0.044281907379627]],[[0.0042574731633067,0.072038196027279,0.075931765139103],[0.0065490277484059,0.034993246197701,-0.0063320114277303],[0.087648905813694,0.03374757245183,0.03821025043726]],[[0.064693495631218,0.030065294355154,0.025374032557011],[0.094864897429943,-0.049886450171471,-0.046360474079847],[0.087512694299221,-0.084395930171013,0.0029240320436656]],[[0.011573252268136,-0.031175760552287,0.03378414735198],[0.02748080343008,-0.02962270565331,-0.039725791662931],[0.072201371192932,-0.0011824328685179,0.037736881524324]],[[0.046884138137102,0.012086809612811,-0.029755244031549],[-0.054649166762829,-0.015621837228537,0.02529651671648],[0.11499629169703,0.063898757100105,-0.0078865233808756]],[[0.0466503277421,-0.031642481684685,0.080809563398361],[-0.033081442117691,0.026041718199849,0.0182173717767],[0.043748468160629,0.00727115618065,0.070685043931007]],[[0.071251407265663,-0.073519580066204,0.10186465084553],[-0.026013402268291,0.066885069012642,0.035436980426311],[0.039137002080679,-0.039204332977533,0.1055865213275]],[[-9.256589692086e-05,0.073989823460579,0.047350022941828],[0.0013038652250543,0.014437914825976,0.017113354057074],[-0.041922427713871,-0.11414088308811,0.028967082500458]],[[-0.0083320448175073,-0.020859364420176,0.039239346981049],[-0.0040336884558201,0.0092585999518633,-0.00013727718032897],[-0.061721757054329,-0.031828906387091,-0.032893218100071]],[[-0.016488928347826,0.0022479300387204,0.01925428584218],[-0.011908790096641,-0.021998638287187,0.050246272236109],[0.055623520165682,-0.018639763817191,-0.046526342630386]],[[0.0087379449978471,0.076512150466442,0.018098721280694],[0.047274328768253,0.026279218494892,-0.015180022455752],[0.060126151889563,0.07325503975153,-0.0020822689402848]],[[0.078583285212517,0.030961994081736,0.038723051548004],[-0.0094461357221007,0.018739923834801,-0.082778863608837],[0.054821375757456,-0.035021051764488,0.025589935481548]],[[0.026704665273428,0.067249096930027,0.030040388926864],[-0.029603578150272,0.0079411789774895,0.062185000628233],[0.058180525898933,-0.10521356761456,-0.020576303824782]],[[-0.063254602253437,-0.024619970470667,0.031604085117579],[-0.034934043884277,-0.032096844166517,-0.0081225698813796],[0.062175668776035,0.011355173774064,0.035058990120888]],[[0.037939332425594,0.015346269123256,0.015695782378316],[0.025634603574872,0.009139203466475,0.055444117635489],[-0.042265515774488,-0.030588151887059,-0.0038860726635903]],[[-0.0089428331702948,0.0095976358279586,-0.021835550665855],[0.057706084102392,-0.029403923079371,0.029747720807791],[0.041709590703249,-0.002386165317148,0.020333940163255]],[[0.07601135969162,-0.0029967706650496,-0.017293287441134],[0.026252007111907,-0.066753566265106,0.0048861731775105],[0.016740778461099,0.05492564663291,-0.029660318046808]],[[0.033141952008009,0.050950028002262,0.03869017213583],[0.069402083754539,-0.033744230866432,0.0045494246296585],[-0.024341007694602,0.055139053612947,-0.010824902914464]],[[0.10230573266745,0.071887068450451,-0.014613325707614],[0.082105912268162,-0.06366066634655,-0.042776398360729],[-0.024396058171988,0.029199361801147,-0.030922196805477]],[[0.011914320290089,-0.0054141143336892,-0.019812779501081],[-0.0027418315876275,0.0052002500742674,-0.012886467389762],[-0.031746935099363,0.034485325217247,0.017169253900647]],[[0.012589608319104,-0.053451359272003,0.12161356955767],[-0.035024408251047,0.1362929046154,-0.036491293460131],[-0.070149943232536,0.073461621999741,-0.045456454157829]],[[0.018439432606101,-0.047660924494267,0.034157294780016],[0.054587170481682,0.0040020458400249,-0.068676844239235],[0.019380392506719,0.09549717605114,0.014209993183613]],[[-0.042278058826923,-0.12213759869337,-0.062079634517431],[-0.042884569615126,0.042862832546234,0.024941189214587],[0.016914885491133,0.00063288636738434,-0.053235732018948]],[[-0.077305592596531,0.040446862578392,-0.015678549185395],[0.019395584240556,-0.044784247875214,0.046877343207598],[-0.025675812736154,0.020498733967543,0.041110884398222]],[[0.028331918641925,-0.057053454220295,0.036485057324171],[0.038378346711397,-0.032558355480433,0.037972275167704],[-0.073723688721657,0.028042133897543,0.035817693918943]],[[0.09877186268568,0.029152017086744,0.099183544516563],[-0.0092677054926753,0.0032682823948562,-0.049993708729744],[0.020893946290016,0.0037050305400044,-0.0040259924717247]],[[-0.0021952511742711,0.03311762586236,-0.04255024343729],[0.033062793314457,0.029644111171365,0.065517976880074],[-0.020792096853256,0.049313485622406,-0.0087897880002856]],[[0.014766797423363,0.022041229531169,-0.025446239858866],[0.022931085899472,0.0080325026065111,0.045550689101219],[0.025857642292976,0.032320350408554,0.039038367569447]],[[-0.0040664928965271,0.044011197984219,0.050916682928801],[-0.066425278782845,-0.0091525334864855,-0.037717796862125],[0.068253770470619,0.014275554567575,0.031642135232687]],[[0.033801805227995,-0.071356423199177,0.019821567460895],[-0.011604224331677,-0.024344369769096,-0.088610164821148],[-0.010413065552711,0.077255308628082,0.0082497820258141]],[[0.032684978097677,0.068713515996933,0.043927200138569],[0.14540766179562,0.013356234878302,-0.042261872440577],[0.023746199905872,0.0076853116042912,-0.097992964088917]],[[0.028565863147378,0.024536196142435,0.061091888695955],[0.0026162120047957,-0.030703760683537,0.058049958199263],[0.058133576065302,0.047747518867254,-0.0052714995108545]],[[0.08076473325491,0.012222800403833,-0.010929146781564],[-0.034054737538099,-0.0085616940632463,0.04088731855154],[-0.004363692831248,-0.012389312498271,-0.002670127665624]],[[-0.00095633149612695,0.0044074221514165,-0.026133548468351],[0.050884392112494,0.095469906926155,0.037931747734547],[-0.026444083079696,0.031083129346371,0.036449130624533]],[[0.059730734676123,-0.015529711730778,0.023200433701277],[0.035971749573946,-0.030607903376222,-0.015796810388565],[-0.0072037940844893,0.018530765548348,-0.010444579645991]],[[0.1055863648653,-0.029778080061078,-0.0036021783016622],[-0.0019392399117351,-0.019050888717175,0.011403072625399],[-0.0094171920791268,-0.075019113719463,0.0088629657402635]],[[-0.001589082297869,0.12466506659985,0.007092131767422],[0.095961332321167,-0.008282870054245,0.09815090149641],[-0.017065575346351,0.01889730617404,0.039971135556698]],[[0.058799121528864,-0.04197770357132,0.046206682920456],[0.064503207802773,0.022901069372892,0.00092039362061769],[0.0064885402098298,-0.031282361596823,0.032279055565596]],[[0.0032529961317778,0.073387913405895,-0.0012795428046957],[0.051355581730604,0.022311192005873,0.027420775964856],[0.033068574965,0.053398296236992,-0.052068181335926]],[[0.057956799864769,-0.034525100141764,-0.034411191940308],[0.13374483585358,0.10701586306095,0.023741321638227],[0.031371921300888,0.10579562932253,0.070256367325783]],[[0.10511521995068,0.064792022109032,-0.020261971279979],[0.045792475342751,0.056060370057821,0.037707939743996],[0.004534546751529,0.0064850905910134,0.053435929119587]],[[-0.01629738137126,0.0045600826852024,0.0090578198432922],[0.042082369327545,0.0026916554197669,0.07408856600523],[0.0029953413177282,0.086576148867607,-0.076628655195236]],[[0.040097065269947,0.082661621272564,-0.019947091117501],[-0.040325742214918,0.022808358073235,-0.012370022013783],[0.039463207125664,0.10765878111124,0.0068618790246546]],[[-0.059878669679165,-0.027325632050633,-0.055235631763935],[0.02991046756506,-0.047040343284607,0.091410860419273],[-0.0084899226203561,0.036815796047449,-0.074332810938358]],[[0.03171231597662,0.015899304300547,-0.041171755641699],[0.091022491455078,-0.015124505385756,0.02456060051918],[0.05143728479743,0.015232772566378,0.0067208711989224]],[[-0.030396586284041,-0.030672118067741,0.025963548570871],[0.056116685271263,-0.025292720645666,-0.015034484677017],[0.01824283786118,-0.0092894593253732,0.051774840801954]],[[-0.04056853055954,0.055498085916042,-0.010698488913476],[0.036906186491251,-0.0018378021195531,0.094502449035645],[0.053701817989349,-0.037653055042028,0.077807262539864]],[[0.093547992408276,0.0078784795477986,-0.047828085720539],[0.013986852951348,-0.02715458534658,-0.0017472873441875],[0.062437772750854,-0.0099144037812948,0.017423722893]],[[-0.0033164494670928,-0.02629291638732,-0.015711814165115],[-0.020980121567845,0.025169191882014,-0.044335957616568],[0.099592037498951,-0.022117210552096,-0.070795230567455]],[[-0.007426988799125,0.0095802061259747,-0.01322621665895],[-0.040123507380486,-0.011634044349194,-0.049661792814732],[-0.0018002968281507,0.0039668921381235,0.078806638717651]],[[0.050817601382732,0.0086677446961403,0.066263549029827],[0.052296593785286,-0.009515231475234,-0.078825257718563],[0.026436012238264,-0.012730830349028,-0.069593496620655]],[[0.0015969059895724,0.017248632386327,0.071883521974087],[-0.018607437610626,-0.0726528018713,0.0061068260110915],[-0.060268215835094,0.06377238035202,-0.032655101269484]],[[0.079166650772095,-0.044480539858341,-0.0035883355885744],[0.096189469099045,-0.022797036916018,-0.031162925064564],[0.023749250918627,0.029290681704879,0.017320320010185]],[[0.0051967967301607,-0.028217626735568,0.00043346954043955],[0.027726816013455,0.091593950986862,0.027407562360168],[0.07260300219059,0.0032851411961019,-0.031967293471098]],[[-0.095930330455303,-0.052941933274269,-0.042452719062567],[-0.035537976771593,-0.018338391557336,-0.011928882449865],[0.022205686196685,-0.050771038979292,0.061355762183666]],[[0.023021068423986,-0.011904472485185,-0.016884444281459],[0.021132400259376,-0.0015092430403456,0.10911373794079],[0.0187012180686,-0.063948705792427,0.028296548873186]],[[-0.044052865356207,0.13331723213196,0.057588640600443],[0.027104137465358,0.026116332039237,-0.019852442666888],[-0.025968274101615,0.024565659463406,-0.04179185256362]],[[0.045831751078367,0.040190540254116,-0.04139119386673],[-0.033191084861755,0.010301289148629,0.026764024049044],[0.011961619369686,-0.086298272013664,-0.0010172934271395]],[[0.065964460372925,0.045827604830265,0.0028679582756013],[0.048238966614008,0.069287553429604,0.011019043624401],[0.0058958209119737,-0.0095009859651327,-0.061535991728306]],[[0.019389839842916,-0.089785300195217,-0.018049186095595],[-0.059220228344202,-0.071398325264454,0.034399297088385],[-0.062757939100266,0.042716220021248,-0.018978597596288]],[[0.055533587932587,0.041980765759945,0.087831348180771],[0.010148932226002,-0.0033997213467956,-0.015038479119539],[-0.10480634123087,-0.033163785934448,-0.0073982737958431]],[[-0.0082122562453151,0.021320957690477,-0.015555038116872],[-0.022673472762108,0.0080006020143628,0.063186921179295],[-0.047532252967358,-0.0058149807155132,0.092473961412907]],[[-0.00046284293057397,0.07026481628418,0.05119789019227],[-0.047913912683725,0.034870997071266,0.0048665888607502],[0.045914456248283,0.00011952404020121,-0.032439645379782]],[[0.017062526196241,-0.0059887249954045,0.050001606345177],[-0.0050162076950073,0.060590405017138,-0.005954525899142],[0.071187071502209,0.0069296532310545,0.0082368217408657]],[[-0.033871933817863,-0.0013775716070086,0.0071329083293676],[0.011317227035761,0.012855688109994,-0.023044127970934],[0.028189154341817,-0.042465724050999,-0.053254373371601]],[[-0.021101368591189,0.036926325410604,-0.016078986227512],[0.075907222926617,-0.019572950899601,-0.01713184453547],[-0.031672824174166,0.021534631028771,0.02503059618175]],[[0.026003086939454,-0.011759824119508,0.0055119725875556],[-0.0054131122305989,-0.026760280132294,0.014114493504167],[0.067743606865406,0.034263368695974,0.049537513405085]],[[-0.01378951407969,0.025887977331877,0.01635393127799],[0.01280730497092,0.018041409552097,0.053408436477184],[0.033771298825741,0.0091171739622951,-0.058097936213017]],[[0.029534550383687,-0.023534003645182,-0.0012064826441929],[-0.06584570556879,-0.017679300159216,0.059863518923521],[-0.085793651640415,-0.0087025761604309,0.034334044903517]],[[0.0029700694140047,-0.0024828023742884,0.020855199545622],[-0.015089249238372,0.01088504306972,0.029032709077001],[-0.0016552763991058,0.0387480892241,-0.03351641818881]],[[0.057842440903187,-0.023862482979894,0.039598114788532],[0.055567305535078,-0.071404404938221,0.010872233659029],[-0.02158347517252,0.077057473361492,0.04279638454318]],[[-0.023227026686072,0.0079227536916733,0.041095107793808],[0.0073203393258154,-0.056471649557352,-0.019532738253474],[0.068491756916046,-0.056197166442871,-0.0084202736616135]],[[-0.051965303719044,0.023516952991486,-0.027749601751566],[-0.0081797568127513,0.074984773993492,0.049735020846128],[-0.026341110467911,-0.0043333377689123,-0.0035031738225371]],[[-0.031399112194777,-0.030829455703497,-0.005046964623034],[0.0041639250703156,0.029758235439658,0.036775834858418],[-0.022415271028876,0.093029074370861,0.027662508189678]],[[0.062898136675358,0.048824969679117,0.093636527657509],[0.11950202286243,0.010328130796552,0.028337981551886],[0.033639051020145,0.016401819884777,-0.058090753853321]],[[0.02390469238162,0.0010800722520798,0.0068912785500288],[0.053021613508463,-0.027277022600174,-0.0046602315269411],[0.055225353688002,0.0016516002360731,-0.020280960947275]],[[0.0049775005318224,-0.030834205448627,-0.050261564552784],[-0.045003298670053,-0.0009587193490006,0.067055560648441],[-0.05985789373517,0.055791903287172,-0.0075704641640186]],[[-0.0029385455418378,0.0029597899410874,0.039032474160194],[-0.0078411726281047,-3.1254388886737e-05,-0.05801123008132],[0.041731625795364,-0.024930518120527,0.084078393876553]],[[-0.014718502759933,-0.069114685058594,-0.047632064670324],[0.040450382977724,0.017519595101476,0.025922434404492],[-0.017236752435565,-0.030124163255095,0.05521098151803]],[[0.080245487391949,0.017632368952036,0.049471564590931],[0.02111822925508,-0.020523576065898,-0.052056182175875],[0.081701539456844,-0.0059446785598993,-0.070596151053905]],[[0.092645891010761,0.047615963965654,0.040435988456011],[0.024599861353636,0.035877972841263,0.015100456774235],[0.0084381178021431,-0.023562358692288,0.055405467748642]],[[0.049001611769199,-0.0094080837443471,-0.011019136756659],[-0.044585455209017,-0.016621667891741,-0.042473152279854],[-0.00079938513226807,0.0124437129125,-0.029601996764541]],[[-0.029143178835511,0.024762984365225,-0.06903875619173],[-0.048978239297867,-0.015036223456264,0.075682163238525],[0.045025650411844,0.033902693539858,-0.073814019560814]],[[0.046860378235579,-0.042736064642668,0.0027990064118057],[0.0089451624080539,0.077880762517452,-0.033279970288277],[-0.058188930153847,-0.045498043298721,0.049193318933249]],[[0.030891194939613,0.0065360241569579,0.043479770421982],[0.004517437890172,-0.016913359984756,0.0057566519826651],[0.045175027102232,0.017135197296739,0.06254355609417]],[[-0.02103628963232,-0.021899485960603,-0.015803828835487],[-0.036902189254761,0.044549200683832,0.016835344955325],[0.041391968727112,-0.018145611509681,-0.045686189085245]],[[-0.036510452628136,0.027221631258726,0.079364530742168],[-0.0050999191589653,-0.056443579494953,0.028374580666423],[0.060068413615227,-0.022797659039497,-0.029009096324444]],[[-0.013277631253004,0.074172735214233,0.034940466284752],[0.046910796314478,0.036302052438259,-0.0055891750380397],[-0.046654958277941,-0.0045642368495464,0.0046944655478001]],[[-0.0051318304613233,-0.0024367396254092,0.061958331614733],[0.026556264609098,0.0089652566239238,0.076054066419601],[0.072172179818153,0.0027893022634089,0.037402488291264]],[[0.078173361718655,0.039506286382675,0.039236631244421],[-0.0390087030828,0.0085280844941735,0.077261582016945],[0.035107836127281,0.0011534988880157,0.055831968784332]],[[-0.020246310159564,-0.071372136473656,0.077044539153576],[-0.036829516291618,0.0028102623764426,-0.04683430865407],[0.0086949001997709,-0.024851243942976,-0.038135681301355]],[[0.025881931185722,-0.072287745773792,0.10648524016142],[-0.030539019033313,-0.0014454441843554,0.029882699251175],[0.092560313642025,-0.010304472409189,0.066754594445229]],[[-0.04569847881794,-0.020897341892123,-0.015780914574862],[0.040950737893581,0.055380322039127,-0.029657546430826],[0.02442342042923,-0.0090249478816986,-0.018973883241415]],[[0.06240813434124,-0.013161981478333,0.036186583340168],[-0.034909516572952,-0.042160015553236,-0.087389044463634],[0.028239903971553,-0.002558100502938,0.056054022163153]],[[0.064651533961296,-0.011913993395865,-0.021187547594309],[0.053868945688009,0.05771266669035,0.05592267587781],[0.042132534086704,0.012003858573735,0.05743807181716]],[[0.037342712283134,-0.020022738724947,-0.020064394921064],[0.042635820806026,-0.054607726633549,-0.010407759808004],[0.0060449047014117,-0.059483651071787,0.052667137235403]],[[-0.056325167417526,0.01870815269649,0.049784034490585],[0.0047141825780272,0.08162347972393,0.036958664655685],[-0.021115086972713,0.0063894055783749,0.018458507955074]],[[0.025876613333821,-0.072761677205563,-0.030737878754735],[-0.0075545469298959,-0.030122108757496,0.0030762378592044],[0.026132639497519,0.025098832324147,0.10056401789188]],[[0.043998185545206,0.012339035049081,0.028515886515379],[0.010042384266853,0.0036836084909737,-0.051695108413696],[0.085927896201611,-0.012753464281559,-0.020739575847983]],[[0.016652828082442,-0.02722704410553,0.030846409499645],[0.031924325972795,-0.048351973295212,-0.0011617789277807],[-0.019328707829118,0.001276028691791,0.012891051359475]],[[-0.019019063562155,0.01088419277221,-0.046131275594234],[-0.0027661421336234,-0.058695286512375,0.034320574253798],[0.046252839267254,0.045609954744577,-0.021195445209742]]],[[[0.1142855361104,0.028701491653919,-0.00061288743745536],[0.022605683654547,0.0018306010169908,0.10215523093939],[0.030008979141712,-0.018429597839713,-0.031587142497301]],[[0.046760406345129,-0.0016155545599759,0.02959113009274],[-0.0048614949919283,-0.0050055179744959,-0.059866227209568],[0.040785163640976,-0.0055627934634686,-0.087818704545498]],[[-0.048962701112032,-0.011232210323215,0.062468964606524],[0.051232319325209,0.061881650239229,0.04435919970274],[0.016965944319963,-0.089979253709316,0.012457237578928]],[[0.030269831418991,0.0013587648281828,-0.050674505531788],[0.073268085718155,-0.059532430022955,-0.011508456431329],[0.074517197906971,0.046993847936392,-0.02523242123425]],[[-0.070231787860394,-0.0061242072843015,-0.091094262897968],[-0.035835258662701,-0.0048892460763454,0.013998947106302],[0.011430250480771,0.0013110345462337,0.069050006568432]],[[-0.014343633316457,-0.0030236535239965,-0.0096966288983822],[-0.00017368180851918,0.00095819093985483,-0.041727833449841],[-0.050606530159712,-0.062787748873234,0.042426988482475]],[[-0.010578967630863,0.03655955940485,-0.030022485181689],[0.011318502016366,-0.014344855211675,-0.00064975395798683],[-4.2140203731833e-05,-0.049798011779785,-0.018543800339103]],[[0.035542473196983,0.04339724034071,-0.010545677505434],[0.01554974168539,0.059231556952,0.030686032027006],[-0.0042248489335179,0.013630609959364,0.052043415606022]],[[0.0057027051225305,-0.010603923350573,-0.087468303740025],[-0.005116555839777,-0.023358944803476,0.018431484699249],[-0.046179156750441,0.067706905305386,0.030048133805394]],[[0.048418924212456,-0.02010440826416,0.0036401108372957],[0.0021811889018863,-0.099492095410824,-0.080307595431805],[0.044469118118286,0.0024535113479942,0.019526779651642]],[[-0.00019786818302236,-0.033627931028605,-0.028573928400874],[0.071376606822014,0.059687327593565,-0.06474880874157],[0.030526893213391,0.0090412963181734,-0.026324898004532]],[[-0.019436784088612,0.050214298069477,-0.043583493679762],[0.02402675524354,0.0017331080744043,-0.053060423582792],[-0.0034607802517712,-0.052468713372946,0.089372150599957]],[[-0.077844806015491,-0.1070212572813,-0.044389884918928],[-0.034338176250458,0.094675324857235,-0.034629926085472],[0.0085251154378057,0.080895274877548,0.01584605500102]],[[-0.027928423136473,-0.035645626485348,-0.046763461083174],[-0.032772794365883,-0.10083946585655,0.057197719812393],[0.075468458235264,0.02301218919456,0.0026114727370441]],[[0.0080592101439834,-0.033656638115644,-0.0019357103155926],[0.003921558149159,0.0065448028035462,0.017139533534646],[0.0075995549559593,-0.011516290716827,-0.0033876970410347]],[[0.046914231032133,0.042544234544039,-0.033366858959198],[0.015102683566511,0.03453241288662,0.029498238116503],[-0.0030806271824986,0.039918843656778,0.027457257732749]],[[0.0092778839170933,0.089716896414757,-0.029105449095368],[-0.019829230383039,-0.039798431098461,0.0090058380737901],[-0.039223864674568,-0.018025094643235,-0.02603155374527]],[[0.022448858246207,0.013281070627272,-0.081765383481979],[0.016795111820102,-0.0092721879482269,-0.067769072949886],[0.022191237658262,0.078849695622921,-0.060765270143747]],[[0.16744069755077,0.0066020376980305,0.010052210651338],[0.00057264405768365,-0.089296624064445,0.023652782663703],[0.016447087749839,-0.041901163756847,0.01048038713634]],[[-0.015101104974747,-0.048968676477671,-0.069465883076191],[0.0025210455060005,0.031227899715304,0.023313600569963],[0.011181364767253,0.021858531981707,0.0516765601933]],[[0.049204956740141,-0.019222658127546,0.054715689271688],[0.0022850832901895,-0.0026067290455103,0.10607746243477],[-0.00069408892886713,-0.0011542630381882,0.012851246632636]],[[-0.049393739551306,-0.013241364620626,0.03631491586566],[-0.039128385484219,-0.050950884819031,0.031909495592117],[0.0022719879634678,0.00070700672222301,0.017462780699134]],[[-0.049694072455168,-0.016081314533949,-0.025771588087082],[-0.022688532248139,0.01807302609086,0.044715356081724],[0.046505004167557,0.061973199248314,-0.024204134941101]],[[0.017019042745233,-0.064536347985268,0.034313380718231],[0.012560011819005,-0.034139957278967,-0.043469406664371],[0.02444377169013,-0.03627435863018,0.05864180997014]],[[0.032014653086662,-0.0068273143842816,-0.020365795120597],[0.017379200085998,0.00098885491024703,-0.0043205213733017],[0.10188090056181,0.042462635785341,-0.031007489189506]],[[-0.092779293656349,0.020638449117541,0.029890904203057],[-0.051771719008684,-0.037055585533381,0.13972035050392],[0.0040042623877525,0.074306346476078,-0.023451130837202]],[[-0.02530955709517,0.069456852972507,-0.088510408997536],[-0.032819904386997,-0.041505549103022,0.076071761548519],[-0.0300756637007,-0.015037446282804,0.010624998249114]],[[0.068573236465454,-0.032774813473225,0.040940329432487],[0.048601824790239,-0.052656900137663,-0.017317829653621],[-0.033013299107552,-0.031479366123676,0.061219457536936]],[[0.026606833562255,0.01271836925298,-0.019103366881609],[0.035189840942621,-0.022038942202926,0.064848527312279],[0.0087949419394135,-0.0097730737179518,0.0026034200564027]],[[0.054581079632044,-0.0141392191872,0.018753539770842],[0.048224031925201,0.018926132470369,0.0070237377658486],[-0.036815073341131,0.051065649837255,0.012482677586377]],[[-0.035439737141132,-0.013807444833219,-0.061264924705029],[-0.0010116491466761,-0.042417954653502,-0.032310917973518],[-0.0073252865113318,0.013037997297943,-0.071835599839687]],[[0.058991365134716,-0.052422638982534,-0.067350491881371],[0.046553064137697,-0.085859909653664,0.064466886222363],[-0.060753043740988,0.031156715005636,-0.03032248467207]],[[-0.032909631729126,0.048539571464062,-0.067213028669357],[-0.0061222044751048,-0.0032933969050646,0.092195697128773],[0.0050443094223738,0.046779744327068,0.088090568780899]],[[0.0014943772694096,-0.054219592362642,-0.043533068150282],[0.021844925358891,-0.01751253567636,-0.047107391059399],[0.11275099217892,0.026670770719647,-0.029946692287922]],[[0.017040876671672,-0.055379912257195,-0.05796030163765],[-0.030503749847412,0.021790666505694,0.015554792247713],[0.043430626392365,-0.031303964555264,-0.047343593090773]],[[-0.049664154648781,-0.094985336065292,0.0038618941325694],[0.12027584761381,-0.098456203937531,0.0748435780406],[0.038153558969498,-0.040485516190529,0.073562525212765]],[[-0.07876367866993,0.050658084452152,0.00062262336723506],[0.0023233769461513,-0.0014754994772375,-0.0019131205044687],[0.021975183859468,-0.044034224003553,-0.088094554841518]],[[-0.021701755002141,0.04617277905345,0.036670122295618],[0.0017089571338147,-0.13790912926197,0.023905569687486],[0.08348985761404,-0.052754011005163,0.006173406727612]],[[0.033565782010555,0.027308760210872,-0.018220316618681],[0.0079518090933561,-0.062037631869316,0.027454309165478],[0.012699943035841,0.045436821877956,-0.09058840572834]],[[0.07120094448328,-0.031862791627645,-0.031422235071659],[-0.03349394723773,0.016834642738104,-0.028271779417992],[0.013367720879614,-0.077633060514927,0.098894156515598]],[[0.025137431919575,0.035966336727142,0.051306378096342],[-0.0014456058852375,0.010517980903387,0.010755022056401],[-0.020940694957972,-0.075194157660007,-0.044734235852957]],[[0.028963314369321,-0.03324980288744,0.0054668923839927],[0.05094762891531,-0.073615454137325,-0.059987332671881],[-0.067618742585182,-0.087569333612919,-0.046433627605438]],[[-0.026508521288633,0.028644660487771,0.004470104817301],[0.037432886660099,0.037036769092083,0.00069820194039494],[0.024933373555541,-0.088158346712589,0.034685142338276]],[[-0.047214411199093,-0.017147397622466,-0.021303681656718],[-0.050915528088808,-0.011753611266613,0.04741145670414],[-0.053051024675369,0.0059440503828228,-0.021579802036285]],[[0.016776904463768,0.048819050192833,0.0049501801840961],[-0.072350904345512,-0.052717257291079,0.013698272407055],[-0.0071235755458474,0.011578681878746,-0.016891587525606]],[[-0.016527712345123,-0.012757386080921,-0.031628631055355],[-0.060163035988808,0.077342972159386,-0.039668165147305],[0.0082309385761619,0.020386615768075,-0.038746237754822]],[[0.043592933565378,-0.039357334375381,-0.0044745444320142],[0.044268306344748,-0.046133600175381,-0.1157401651144],[0.0001824510836741,0.013603025116026,-0.0038979712408036]],[[-0.0013164621777833,0.055131852626801,0.020503811538219],[0.028044879436493,-0.10982492566109,0.050457045435905],[0.056698609143496,0.040819521993399,-0.00295539945364]],[[-0.084277592599392,0.049064934253693,-0.062260303646326],[0.0071658915840089,-0.035539526492357,-0.012129532173276],[0.07302287966013,0.027593059465289,-0.021281873807311]],[[0.0069824489764869,-0.022052401676774,-0.036600638180971],[0.0020534463692456,0.0032742011826485,-0.0080339210107923],[0.1002651900053,0.030794888734818,0.015261646360159]],[[0.0084367441013455,-0.024402162060142,-0.0091270254924893],[-0.0051032858900726,0.10825584828854,0.010152991861105],[-0.0098703121766448,0.027276415377855,0.051048655062914]],[[-0.095289796590805,0.029989184811711,0.063431024551392],[-0.081718795001507,-0.016047190874815,0.0085666831582785],[-4.0862549212761e-05,-0.05481793358922,0.001945017836988]],[[-0.068165794014931,0.029917949810624,-0.010071113705635],[0.11622644215822,-0.05550979077816,0.037501659244299],[0.047979209572077,0.023786582052708,0.057831805199385]],[[-0.019011221826077,0.0071706585586071,0.019183691591024],[-0.014112528413534,-0.011094931513071,0.0071788653731346],[0.028017757460475,0.089005500078201,-0.051879964768887]],[[-0.027967685833573,0.033464279025793,0.012035371735692],[0.0062297587282956,0.00096164079150185,0.098773382604122],[-0.016987221315503,-0.02418290451169,-0.010963750071824]],[[-0.026590064167976,0.01078059989959,0.025917226448655],[0.021658139303327,0.066015027463436,-0.032418213784695],[-0.053892005234957,0.0032023859675974,-0.032087009400129]],[[-0.0013697114773095,-0.041484989225864,0.0079065356403589],[0.028766142204404,-0.091252081096172,0.017505217343569],[-0.014387977309525,-0.022415181621909,-0.055503539741039]],[[-0.1368352919817,0.034492984414101,-0.045936640352011],[-0.065662182867527,-0.079312779009342,0.02514423802495],[0.039988953620195,-0.015180218964815,-0.015527401119471]],[[0.03674278780818,-0.00087987532606348,0.058147516101599],[0.016201198101044,0.00088091968791559,0.007163168862462],[-0.030575381591916,-0.0049568372778594,0.06264041364193]],[[-0.057859595865011,0.0029870723374188,0.069008126854897],[-0.0133854476735,-0.053222727030516,-0.015233105048537],[0.024566266685724,0.019496334716678,0.091727770864964]],[[0.033452849835157,-0.082591399550438,0.035909812897444],[-0.085218027234077,0.016188237816095,-0.04351307079196],[0.019412940368056,-0.095843516290188,0.094730406999588]],[[-0.076299428939819,0.017159210518003,-0.083813913166523],[-0.026709703728557,-0.050329122692347,-0.047245211899281],[-0.0081399902701378,0.056204061955214,-0.14250002801418]],[[0.060961943119764,0.021273234859109,-0.007825524546206],[-0.06957695633173,-0.017503185197711,-0.032345928251743],[-0.02081417478621,-0.013252434320748,-0.037393756210804]],[[0.0429149530828,0.023708339780569,-0.038136053830385],[-0.0056033520959318,0.063402019441128,0.032857432961464],[-0.010499618947506,-0.028270347043872,0.063413023948669]],[[0.0059808460064232,-0.0091561805456877,-0.068499974906445],[-0.040486108511686,0.013754206709564,0.036071687936783],[0.008907750248909,-0.026721389964223,-0.050314474850893]],[[0.048945505172014,-0.034082256257534,-0.02846797183156],[0.010217225179076,-0.0035638448316604,0.020426699891686],[0.021220158785582,0.039550922811031,0.046493951231241]],[[0.032536193728447,-0.051471583545208,-0.0032025999389589],[-0.016546186059713,-0.077357575297356,-0.013044877909124],[-0.0070313424803317,-0.036090094596148,-0.068254828453064]],[[-0.013215372338891,-0.049611143767834,0.016741307452321],[-0.026841159909964,-0.00056107807904482,-0.0289307218045],[-0.044247549027205,-0.015891849994659,0.057147067040205]],[[0.058748796582222,0.03935445100069,0.078953266143799],[0.10059320926666,0.032499801367521,0.042045932263136],[-0.0043171416036785,0.0038138488307595,-0.0059170261956751]],[[0.012007649987936,-0.042782168835402,0.0013820048188791],[0.050547741353512,-0.051699712872505,-0.013766935095191],[0.017420675605536,0.022520713508129,0.0080789988860488]],[[0.019186515361071,0.041279781609774,0.020430976524949],[-0.059596367180347,0.058063998818398,-0.00061251182341948],[0.0036423089914024,0.042511329054832,-0.016610259190202]],[[0.020457366481423,0.002057405654341,-0.061104029417038],[-0.018532505258918,0.07249141484499,-0.012862187810242],[-0.012106684036553,-0.024053307250142,0.0096146557480097]],[[-0.018372621387243,0.064604289829731,0.034012842923403],[-0.004559681750834,-0.056099578738213,-0.032215315848589],[0.021908190101385,0.032347079366446,-0.021176842972636]],[[0.01429227553308,0.094826057553291,-0.062599346041679],[0.016260815784335,-0.053079396486282,0.028685748577118],[-0.050926081836224,-0.074753649532795,0.019903648644686]],[[0.031754363328218,0.074094623327255,0.0082364333793521],[0.017592400312424,-0.077973663806915,0.039312832057476],[0.028339818120003,0.00021753071632702,-0.0441924482584]],[[-0.0079381233081222,-0.01548467669636,-0.012486143037677],[-0.0043389271013439,0.00024930349900387,-0.028649384155869],[0.035138294100761,0.042126018553972,-0.019846100360155]],[[-0.038561463356018,-0.057033762335777,0.004772609565407],[-0.0031451648101211,-0.032225370407104,-0.036879677325487],[0.027094811201096,-0.049897473305464,-0.070741795003414]],[[-0.001048136735335,-0.0072230827063322,-0.013609661720693],[0.0077320728451014,-0.081526376307011,-0.019376456737518],[-0.012430299073458,0.044843006879091,0.046099614351988]],[[0.001541146542877,0.032027348875999,0.034979309886694],[-0.075169056653976,0.022298276424408,0.028037186712027],[0.098979473114014,0.040997304022312,0.0055060624144971]],[[0.029997790232301,-0.045782994478941,-0.025931973010302],[0.020103089511395,0.1446967124939,-0.035157423466444],[-0.027613552287221,-0.014925817959011,0.057481314986944]],[[-0.10174432396889,-0.034224852919579,-0.022314134985209],[-0.013527050614357,-0.16276599466801,0.033898394554853],[-0.031391821801662,-0.059351913630962,0.050096586346626]],[[0.046576093882322,-0.0085035199299455,-0.042498007416725],[0.0046615405008197,-0.012982920743525,0.024998700246215],[0.010301078669727,-0.05405181646347,0.027001112699509]],[[0.061956483870745,-0.077898874878883,-0.088332280516624],[0.017499022185802,0.033567436039448,0.047797806560993],[0.039802744984627,-0.13077685236931,0.035378616303205]],[[0.031185448169708,0.10716123878956,-0.029421268031001],[0.047792311757803,-0.078385107219219,0.027591414749622],[-0.0069598192349076,-0.048675931990147,-0.084969148039818]],[[0.010003007017076,0.037866394966841,-0.010740312747657],[0.043023109436035,-0.04235702753067,0.032224174588919],[-0.031702648848295,-0.024888956919312,0.014844159595668]],[[0.014839171431959,-0.024061053991318,0.025783846154809],[-0.056091442704201,0.023007750511169,0.06677184253931],[-0.050178244709969,0.056477844715118,0.050039280205965]],[[-0.01396254170686,0.042529053986073,-0.0049945446662605],[0.040286462754011,-0.0093788504600525,0.01036187633872],[-0.098009437322617,-0.00095355836674571,0.026846894994378]],[[-0.059679571539164,0.020642010495067,0.015711547806859],[-0.055200081318617,0.078792922198772,-0.012269599363208],[0.0012134823482484,0.062420353293419,-0.055327948182821]],[[0.061753563582897,-0.052181638777256,0.09432353079319],[-0.02710984274745,0.068215392529964,0.0013983981916681],[0.03815234452486,0.006953845731914,-0.026558671146631]],[[0.01227858196944,0.038921352475882,0.06259048730135],[-0.0022136350162327,0.017636252567172,0.077465891838074],[0.0028413119725883,0.061127845197916,-0.015687024220824]],[[0.020904300734401,-0.037599958479404,-0.045911893248558],[-0.031492542475462,0.080695912241936,-0.0053860233165324],[0.035041872411966,0.0015572435222566,0.039262976497412]],[[-0.015267635695636,0.007162157446146,-0.079641066491604],[0.015075916424394,0.060919865965843,-0.12647970020771],[0.035386528819799,-0.0026264572516084,0.00015583887579851]],[[0.014789217151701,-0.029286263510585,0.095930501818657],[-0.040448032319546,0.083359614014626,-0.051527004688978],[-0.031500399112701,-0.0034921222832054,-0.032814666628838]],[[0.040569562464952,-0.046063363552094,-0.053367380052805],[0.0032564206048846,-0.065146565437317,-0.041615337133408],[2.5093091608142e-05,-0.065090350806713,-0.030395651236176]],[[0.039678484201431,-0.073820546269417,-0.025415135547519],[0.0097313029691577,-0.0072046164423227,0.0052466248162091],[0.034627079963684,0.0097238160669804,-0.025352388620377]],[[-0.026453826576471,-0.057734444737434,0.066549606621265],[-0.029563805088401,0.025526637211442,-0.0068712709471583],[0.022499293088913,0.011653123423457,-0.023498008027673]],[[-0.051716238260269,-0.044508080929518,0.02273141220212],[0.051075212657452,0.05155573412776,0.022868106141686],[-0.016144897788763,0.084511443972588,-0.057992786169052]],[[0.069024324417114,0.0021386032458395,0.05790613219142],[-0.029903002083302,0.0055176713503897,0.04855377599597],[-0.056109193712473,-0.034303672611713,0.034862976521254]],[[-0.00076256808824837,0.056000903248787,-0.072835892438889],[-0.0082860393449664,0.051663000136614,-0.049697726964951],[0.042603254318237,0.020870212465525,-0.022087570279837]],[[-0.031040178611875,-0.017319334670901,-0.0066655310802162],[-0.034686982631683,-0.038552213460207,0.048273049294949],[0.012868052348495,-0.013381115160882,-0.037140507251024]],[[-0.0032313535921276,0.034970823675394,0.034768953919411],[-0.011350585147738,0.038823679089546,-0.057349305599928],[-0.012526297941804,0.037361606955528,0.017261523753405]],[[0.019799748435616,-0.084935858845711,0.026348227635026],[0.0073310369625688,-0.11716337502003,-0.017104988917708],[0.017775852233171,-0.067962624132633,-0.047283742576838]],[[0.04336441680789,0.015527771785855,0.028579048812389],[0.026695121079683,0.060284145176411,-0.046506930142641],[-0.087860345840454,-0.015240238048136,0.044021584093571]],[[0.023301605135202,0.013278407976031,0.094073191285133],[-0.028267504647374,0.033906027674675,-0.082542590796947],[-0.067455507814884,0.0098101478070021,0.023444876074791]],[[-0.029194377362728,-0.0067496215924621,-0.0016641578404233],[-0.079650074243546,0.01004889421165,0.030570013448596],[0.02602138184011,-0.00056879472685978,-0.043167091906071]],[[-0.018170204013586,0.039891440421343,-0.099145092070103],[-0.052739176899195,-0.010174474678934,0.027898726984859],[0.016873186454177,0.056564070284367,0.0084930341690779]],[[-0.063308753073215,-0.084271781146526,-0.019853422418237],[-0.019615126773715,0.021845007315278,0.057742718607187],[-0.0021366181317717,-0.054350432008505,-0.018553195521235]],[[0.029319396242499,0.026504969224334,0.00043636668124236],[0.02980649471283,-0.051076710224152,0.02239328250289],[-0.046290699392557,0.013814916834235,0.033149298280478]],[[0.025775030255318,0.055561549961567,-0.0010398150188848],[0.033761102706194,-0.072783336043358,0.095858477056026],[0.014907408505678,-0.0076673221774399,-0.064642138779163]],[[-0.032738331705332,0.022979829460382,-0.024818725883961],[0.023258963599801,-0.026083886623383,0.040184065699577],[-0.075761772692204,-0.0076803485862911,-0.020404659211636]],[[-0.033304061740637,0.043738599866629,0.068649485707283],[0.024208351969719,0.035645470023155,-0.029879292473197],[-0.002707751467824,0.0145915877074,0.024237232282758]],[[0.063278779387474,0.045381780713797,0.011585624888539],[0.044060830026865,-0.028659280389547,0.012367169372737],[-0.015375383198261,0.01367971021682,-0.024819258600473]],[[0.038128100335598,0.013564989902079,0.0028799183201045],[0.010275333188474,-0.028021700680256,0.0051934262737632],[-0.045985288918018,-0.020572487264872,0.041453987360001]],[[-0.029558379203081,0.021154625341296,-0.022507566958666],[-0.046781729906797,-0.081560663878918,0.062744460999966],[0.091497763991356,-0.053623303771019,-0.015237642452121]],[[0.041765861213207,0.061277471482754,-0.019865090027452],[-0.044778153300285,0.020797200500965,-0.005746603012085],[-0.040151283144951,-0.090035542845726,0.010604926384985]],[[0.037754505872726,0.013746101409197,0.011252532713115],[0.032041970640421,0.065442197024822,0.033757649362087],[0.023653717711568,-0.039076447486877,0.027202688157558]],[[0.0035996497608721,-0.021351780742407,-0.031063210219145],[0.043344557285309,-0.031394638121128,-0.051257275044918],[-0.034115217626095,-0.025411298498511,-0.053112253546715]],[[-0.035531532019377,-0.013289269059896,0.101866774261],[-0.089166507124901,-0.047409731894732,-0.0039089168421924],[0.0044640395790339,-0.069553054869175,0.033169336616993]],[[0.062871485948563,0.044879775494337,0.021069785580039],[-0.049205452203751,-0.0510821826756,0.051602836698294],[-0.033008094877005,0.031772293150425,-0.074576713144779]],[[-0.10626370459795,0.22080127894878,0.05706188082695],[0.015907187014818,0.016895167529583,0.085478186607361],[-0.015487616881728,0.076721906661987,-0.0080422861501575]],[[-0.018150467425585,0.067953765392303,-0.022930141538382],[-0.032837897539139,-0.081842988729477,0.089997611939907],[0.013840345665812,0.010815257206559,-0.01924804225564]],[[-0.030779680237174,-0.024525566026568,0.067933097481728],[-0.05883152782917,0.0011306293308735,-0.099969327449799],[-0.063454709947109,-0.047838471829891,-0.024024954065681]],[[-0.053624287247658,0.092202477157116,0.041968233883381],[0.01688714325428,0.031883060932159,-0.11692644655704],[0.030850732699037,-0.038200452923775,0.0039386190474033]],[[-0.013146935962141,-0.035185646265745,-0.027773747220635],[-0.043809626251459,0.0053423568606377,-0.021569484844804],[-0.026534520089626,0.0052142501808703,-0.039933271706104]],[[-0.016733884811401,0.057736236602068,0.0086793312802911],[0.020981026813388,-0.067644789814949,0.039731666445732],[0.012442802079022,-0.00027711552684195,0.088088817894459]],[[0.065388731658459,0.027854401618242,-0.09457989782095],[0.01989034563303,0.044916808605194,-0.00086567382095382],[0.017300438135862,-0.0012731539318338,0.056783873587847]],[[-0.030317012220621,-0.017758181318641,0.052496816962957],[-0.026047250255942,0.011901739984751,-0.037571780383587],[-0.058519784361124,-0.021462548524141,-0.0013113898457959]],[[-0.00052457326091826,0.035157795995474,0.083307363092899],[-0.036204937845469,-0.078114107251167,0.033514279872179],[0.059292312711477,0.015447304584086,0.014744460582733]]],[[[-0.071937210857868,0.034346330910921,0.096587032079697],[0.0061580752953887,0.0289535112679,-0.0081189032644033],[-0.017297804355621,-0.033433746546507,-0.0061709559522569]],[[0.041468389332294,0.0023044866975397,0.030699323862791],[-0.043663207441568,-0.039853125810623,0.01213809568435],[-0.055045999586582,-0.0077340332791209,0.053274530917406]],[[-0.037607870995998,0.066193334758282,0.0029961890541017],[-0.039205707609653,-0.024255817756057,-0.0092900423333049],[0.0083477692678571,0.058002103120089,0.0015646724496037]],[[-0.035990476608276,0.016821516677737,0.016349209472537],[-0.020205350592732,0.032456077635288,-0.044421501457691],[0.032142773270607,-0.064702376723289,0.01812226139009]],[[0.0046797259710729,-0.026559730991721,0.0049816826358438],[0.010889394208789,-0.023900428786874,0.0023489643353969],[0.019404578953981,0.031173694878817,0.01051083765924]],[[-0.071557357907295,0.0033264358062297,0.022559594362974],[-0.016792831942439,-0.10445860028267,-0.059298608452082],[-0.032438419759274,0.096657939255238,0.032405238598585]],[[-0.052089858800173,0.016422715038061,0.028336932882667],[0.025402992963791,0.0068849241361022,0.034823056310415],[0.0037255727220327,0.095213755965233,-0.06440906971693]],[[-0.0056768166832626,0.043930009007454,0.016215603798628],[0.013283902779222,-0.014573627151549,-0.01395782828331],[0.010428892448545,0.044097319245338,-0.011769714765251]],[[0.020802728831768,0.071419984102249,0.010606114752591],[-0.0066814944148064,-0.0013331476366147,-0.031600717455149],[-0.058266662061214,0.0085868202149868,0.051576629281044]],[[0.020465554669499,0.054787665605545,-0.029315749183297],[-0.00024479560670443,-0.041565552353859,-0.030429556965828],[0.029142022132874,-0.017546385526657,-0.019435178488493]],[[0.087368749082088,-0.023218624293804,-0.0028146898839623],[-0.089661210775375,0.01960252225399,0.016208615154028],[-0.004753818269819,-0.066307730972767,-0.023254364728928]],[[-0.024751357734203,0.0084036765620112,-0.0020672020036727],[-0.0062650009058416,0.028625939041376,-0.066928595304489],[0.044489674270153,-0.046431828290224,0.0037919990718365]],[[-0.0034707612358034,0.020440323278308,0.0086541958153248],[-0.0089053260162473,0.086841106414795,-0.035549309104681],[-0.099639348685741,1.6937821783358e-05,-0.032199438661337]],[[0.060678448528051,-0.03037741407752,-0.0079403575509787],[-0.044537030160427,-0.056254550814629,0.032150752842426],[-0.014338151551783,-0.0083040045574307,0.012889284640551]],[[0.083338491618633,0.026999047026038,-0.00023946259170771],[-0.027605714276433,0.019092304632068,0.027397161349654],[-0.072182603180408,-0.0080148540437222,-0.023313745856285]],[[0.0031966469250619,-0.034697409719229,0.025091970339417],[0.044754523783922,0.10293912887573,-0.016960445791483],[0.0025444475468248,0.034426439553499,-0.020804597064853]],[[0.004701335914433,-0.079886600375175,-0.036971069872379],[0.033016014844179,0.013344083912671,-0.0029894961044192],[0.010863203555346,0.060008730739355,0.065291702747345]],[[0.037047136574984,0.047210078686476,-0.062968835234642],[-0.013413079082966,0.021640637889504,0.032453279942274],[-0.029024580493569,0.019135618582368,0.015280431136489]],[[-0.017992291599512,0.0099818063899875,0.050330046564341],[0.0082685649394989,-0.026727553457022,-0.049255330115557],[0.029680863022804,-0.074995249509811,0.050927270203829]],[[-0.014079501852393,0.024999372661114,0.041889734566212],[-0.017226614058018,-0.061501372605562,0.020900744944811],[0.020569149404764,-0.014814348891377,-0.032269984483719]],[[0.029466316103935,0.058100435882807,-0.055000804364681],[-0.061067447066307,0.056669298559427,-0.022933294996619],[0.034125305712223,-0.091800406575203,0.017253004014492]],[[-0.051331136375666,0.011120705865324,0.038011945784092],[-0.048825960606337,-0.042495116591454,-0.038934912532568],[0.079752914607525,-0.019379835575819,-0.01618617400527]],[[-0.0025212168693542,-0.041393898427486,0.062807872891426],[0.0087818149477243,0.047151070088148,-0.021267747506499],[-0.04867697134614,-0.026150982826948,0.050885170698166]],[[0.0099053429439664,0.065868377685547,0.0033153498079628],[0.06151931360364,0.085909567773342,-0.04961745813489],[0.0081820199266076,0.04466525092721,-0.089173875749111]],[[0.012227294035256,-0.019669717177749,0.028144109994173],[0.019501650705934,-0.032819285988808,-0.076849482953548],[-0.027364056557417,-0.032650224864483,0.067792199552059]],[[0.026148380711675,-0.037139896303415,-0.031365875154734],[0.0054041175171733,0.01539381314069,0.048730436712503],[-0.015308622270823,-0.036867883056402,0.053106777369976]],[[-0.0030432366766036,-0.043229192495346,0.049257919192314],[-0.018532462418079,0.037355620414019,-0.016344930976629],[-0.041210770606995,-0.023441882804036,0.028413489460945]],[[0.047935657203197,0.024639984592795,0.026450827717781],[-0.050965763628483,-0.013429696671665,0.025380114093423],[0.021942349150777,-0.027395645156503,-0.0018675900064409]],[[0.029260020703077,-0.038849167525768,-0.013134875334799],[-0.014775281772017,-0.031276304274797,-0.015431021340191],[0.012790274806321,0.046334881335497,0.056542333215475]],[[-0.045297410339117,0.028245383873582,0.038214422762394],[0.033516146242619,-0.068712577223778,-0.027364948764443],[0.028407609090209,-0.061444897204638,0.011855158023536]],[[-0.0024843642022461,-0.003729481017217,-0.093045465648174],[-0.032214254140854,0.0394237190485,0.019079986959696],[-0.010651472955942,-0.00079626135993749,-0.038563702255487]],[[0.03788734972477,-0.084076233208179,-0.030569782480597],[0.054513949900866,0.013721195980906,-0.078956693410873],[0.01856323890388,-0.033229853957891,0.034876961261034]],[[0.011369998566806,0.039433244615793,0.076092295348644],[-0.019230868667364,-0.010030193254352,-0.075177364051342],[0.0040960642509162,-0.011963993310928,-0.10040512681007]],[[0.03746797144413,0.021380245685577,0.044883955270052],[0.025566374883056,-0.045580215752125,-0.016375185921788],[-0.069688595831394,0.018270259723067,0.03197130933404]],[[0.0083837360143661,-0.019320236518979,0.013424541801214],[-0.0081771546974778,0.10559156537056,-0.025263410061598],[-0.024223821237683,-0.0019034672295675,-0.034475952386856]],[[0.029116233810782,-0.070125870406628,0.077639140188694],[0.008028544485569,0.067021399736404,-0.022027149796486],[0.027094442397356,0.014169021509588,-0.015458202920854]],[[-0.054398536682129,-0.056911539286375,-0.088927745819092],[-0.024514485150576,-0.023443913087249,-0.012158953584731],[0.020165078341961,0.083940915763378,0.031070154160261]],[[-0.0069628939963877,-0.013590758666396,0.057049371302128],[0.050292402505875,-0.041145391762257,-0.052979853004217],[0.0634800568223,-0.033417366445065,0.01640235632658]],[[-0.029551653191447,0.069321364164352,-0.020489923655987],[0.0072411415167153,-0.0030375211499631,0.011598600074649],[-0.014140817336738,-0.047052450478077,0.0083384932950139]],[[0.038674090057611,-0.0070085753686726,0.063981540501118],[0.030122485011816,0.0082861194387078,-0.039532154798508],[0.0016167474677786,-0.044133648276329,0.053687803447247]],[[0.0097649842500687,0.01813106611371,0.02432619035244],[0.042034700512886,-0.04564892500639,0.0071214404888451],[0.015368645079434,0.029012164101005,-0.062414839863777]],[[0.01200274284929,0.042616166174412,-0.011416668072343],[0.024246895685792,-0.018557881936431,0.016974268481135],[0.01690992154181,-0.050090685486794,0.0043951435945928]],[[0.024221763014793,0.024208430200815,-0.033268664032221],[0.04655396938324,-0.0031681964173913,0.0048821684904397],[-0.014326492324471,0.021443149074912,0.019384937360883]],[[0.062451373785734,0.015548660419881,-0.040716182440519],[0.098049119114876,-0.046453718096018,0.065906725823879],[-0.029201298952103,-0.010778780095279,-0.05854781717062]],[[0.055743467062712,0.046469185501337,0.023404395207763],[-0.013609727844596,-0.0033574306871742,0.060566041618586],[-0.10208719968796,-0.0035426439717412,-0.053763117641211]],[[-0.088361628353596,0.020681794732809,0.028523264452815],[-0.046721715480089,0.022818759083748,0.0055116503499448],[-0.005134854465723,0.10008893162012,-0.022103313356638]],[[0.025412397459149,0.057278994470835,-0.0042545557953417],[-0.041474521160126,0.024806471541524,0.022147659212351],[-0.050650015473366,0.0079532265663147,-0.0057106562890112]],[[0.048587433993816,0.0060876710340381,-0.02678456902504],[-0.00082076754188165,0.042386345565319,-0.0091995606198907],[-0.026073306798935,0.0012535038404167,-0.044217731803656]],[[-0.045258086174726,0.0013244986766949,2.9690516385017e-05],[0.051576744765043,-0.017777808010578,0.077660612761974],[-0.05973419547081,-0.016942968592048,-0.022401897236705]],[[0.024287972599268,-0.03367954492569,0.0084813209250569],[-0.0046606464311481,0.054474886506796,-0.060378380119801],[0.068151921033859,0.048008415848017,0.01427857670933]],[[-0.017450286075473,0.0088504021987319,0.034056562930346],[-0.0023896968923509,-0.10086154937744,0.049167018383741],[0.12692421674728,-0.027854772284627,-0.01336111407727]],[[-0.001314302906394,0.015771947801113,-0.0018105488270521],[-0.05353769287467,0.048278369009495,-0.029534008353949],[-0.032830387353897,0.058591227978468,0.045325879007578]],[[-0.073446966707706,-0.015698118135333,-0.031056106090546],[-0.0074802474118769,0.064410053193569,-0.025835823267698],[0.016454145312309,0.017284072935581,0.022695276886225]],[[-0.030226528644562,0.082194946706295,-0.021180795505643],[-0.0083366883918643,0.0197758898139,0.020028265193105],[-0.014280204661191,0.080621182918549,0.028805932030082]],[[0.040183965116739,0.069973744452,0.0060446006245911],[-0.014561343938112,0.041190758347511,-0.044566795229912],[-0.0083498582243919,-0.029965057969093,-0.066316395998001]],[[-0.015152554027736,0.014167372137308,0.0062296842224896],[0.022325618192554,0.031446114182472,-0.034277684986591],[-0.02125983312726,0.053199086338282,-0.022925917059183]],[[-0.020317928865552,-0.019958948716521,0.042041752487421],[-0.032633721828461,-0.052154801785946,0.068931512534618],[0.036615435034037,0.056069388985634,-0.0337781496346]],[[0.0025579605717212,-0.055841151624918,0.02997519262135],[0.03057861700654,-0.026690874248743,0.053376466035843],[-0.0095590092241764,-0.045021057128906,-0.028611151501536]],[[-0.042204387485981,-0.053195014595985,-0.058137722313404],[-0.047297958284616,0.037193458527327,0.0071949912235141],[0.095094226300716,-0.052871894091368,0.058845013380051]],[[0.0039802440442145,0.042686775326729,-0.0076391720212996],[-0.020654989406466,-0.057454630732536,0.054022520780563],[0.012075452134013,-0.0084429467096925,0.030928710475564]],[[-0.044563014060259,-0.062827043235302,0.015662824735045],[0.035030610859394,-0.00030919356504455,-0.0060318992473185],[0.040449976921082,-0.0093992883339524,0.0048471163026989]],[[0.011801538988948,0.049521535634995,0.039807606488466],[-0.0011609306093305,0.082666508853436,0.052015341818333],[0.023961117491126,-0.10674628615379,-0.020492089912295]],[[-0.027313787490129,-0.010660262778401,-0.0067683449015021],[0.022767193615437,0.047299332916737,-0.032580003142357],[0.016879413276911,-0.057573929429054,0.016443790867925]],[[-0.013046259991825,-0.058390479534864,-0.0036107080522925],[-0.0037868230137974,-0.027197044342756,0.023253871127963],[-0.0096150850877166,0.038319110870361,-0.028088580816984]],[[0.014802248217165,-0.080165557563305,0.014536446891725],[-0.053480315953493,0.036028109490871,0.015711748972535],[-0.02467093616724,0.076989710330963,-0.030977388843894]],[[0.03996941447258,-0.037030957639217,-0.019967099651694],[-0.0056789615191519,0.016979498788714,-0.014909151941538],[0.025595381855965,0.025266394019127,-0.0052987416274846]],[[0.008329595439136,-0.035895325243473,0.088632576167583],[0.037736680358648,-0.0031592126470059,-0.0077571305446327],[-0.0038948238361627,-0.035594403743744,0.047883596271276]],[[0.043133497238159,-0.021049221977592,-0.034387089312077],[0.023816237226129,-0.073141932487488,0.038122329860926],[0.0024017510004342,0.017642937600613,0.0047524035908282]],[[0.0043973647989333,-0.0044383308850229,0.028430225327611],[0.073070533573627,0.0061312802135944,-0.059447597712278],[-0.013327518478036,-0.04450785368681,-0.00035563713754527]],[[0.025924123823643,-0.044174443930387,0.016081437468529],[-0.055876843631268,0.087573237717152,0.046164106577635],[-0.015041065402329,0.015178580768406,-0.02292999625206]],[[0.036321293562651,0.0010719004785642,-0.076676733791828],[-0.0061664679087698,0.0066511328332126,0.062017675489187],[-0.042396977543831,0.024192595854402,0.062080144882202]],[[-0.00038636240060441,0.014504768885672,0.0039836498908699],[0.025856913998723,0.062929809093475,-0.032442819327116],[-0.019726237282157,-0.024286346510053,0.044232841581106]],[[-0.0093180136755109,-0.048558104783297,-0.022242935374379],[-0.013843852095306,-0.054836682975292,0.0038890081923455],[-0.0038126278668642,0.025422915816307,-0.010294769890606]],[[0.037931013852358,0.023229420185089,-0.083382308483124],[-0.06955736130476,0.058326862752438,0.030124930664897],[0.012405027635396,-0.074113294482231,0.056095942854881]],[[0.0057770693674684,-0.046872977167368,0.025916768237948],[-0.042628351598978,0.03259751200676,0.043342515826225],[-0.018693406134844,0.034084308892488,0.04429379850626]],[[0.044116280972958,-0.0019698443356901,0.0078830206766725],[-0.057833597064018,0.045614264905453,0.028266428038478],[-0.04079170525074,-0.035346407443285,0.0014620076399297]],[[0.035386554896832,-0.0091826813295484,-0.0016695002559572],[-0.0052548903040588,-0.012948175892234,-0.021753160282969],[0.039450086653233,-0.027079824358225,-0.074194110929966]],[[0.032929982990026,0.019843695685267,-0.049976781010628],[0.027596320956945,0.023678729310632,0.039991978555918],[-0.10977201908827,0.022407164797187,-0.048597812652588]],[[0.10933516174555,0.028576593846083,0.027593303471804],[-0.059426259249449,0.13403476774693,-0.043050784617662],[-0.036965128034353,0.028547611087561,-0.062797196209431]],[[-0.0094497734680772,-0.020383257418871,0.067301675677299],[0.02602638117969,-0.0072456491179764,-0.018604397773743],[-0.043943114578724,0.048468306660652,0.017901740968227]],[[0.041165497153997,0.0024600187316537,0.081460818648338],[0.0050286743789911,0.025689575821161,0.032544232904911],[-0.012483513914049,0.051128745079041,-0.094983719289303]],[[-0.0023195233661681,0.065518163144588,0.040145121514797],[-0.080403745174408,-0.0087417429313064,0.027074055746198],[0.013049268163741,-0.016533974558115,-0.015131233260036]],[[-0.030294019728899,-0.041539236903191,-0.020722255110741],[-0.07652223110199,0.056255929172039,0.042149722576141],[-0.0020086274016649,-0.00044707220513374,-0.013531133532524]],[[0.075543940067291,-0.096420854330063,-0.0075914291664958],[-0.013187970034778,-0.0099665587767959,0.030638691037893],[-0.020709587261081,0.01469181291759,0.033147376030684]],[[0.030468340963125,-0.020256089046597,0.0071945022791624],[-0.038105290383101,-0.0040857112035155,0.028928892686963],[0.053130637854338,0.018260324373841,-0.061336480081081]],[[-0.057296846061945,0.018355865031481,-0.043592389672995],[0.011393439024687,-0.017564492300153,0.077380038797855],[0.060993108898401,-0.02350377291441,0.010896625928581]],[[0.033228952437639,0.025758353993297,-0.018210764974356],[-0.0059656002558768,-0.0065110232681036,-0.05076066032052],[-0.018714964389801,0.016903068870306,0.018820080906153]],[[0.044865742325783,0.011359123513103,-0.02473883703351],[0.068426266312599,-0.0039563244208694,0.0042348308488727],[0.00047372234985232,-0.015583570115268,-0.01317617110908]],[[0.00060429325094447,0.056352112442255,-0.024338629096746],[-0.051737613976002,0.037902776151896,0.057591311633587],[0.0892643481493,-0.0085075302049518,-0.12820853292942]],[[-0.022689988836646,0.01149417553097,0.01959153264761],[0.0077130966819823,0.081623390316963,0.017562188208103],[-0.014628912322223,-0.0017017258796841,-0.0078898118808866]],[[-0.063247099518776,0.0011780764907598,0.0079694939777255],[-0.016925554722548,-0.011408706195652,0.049930073320866],[-0.029040545225143,-0.015070982277393,-0.0088919140398502]],[[-0.019040795043111,-0.0058318399824202,-0.032065939158201],[-0.027246743440628,0.014794554561377,0.0096755521371961],[-0.034833561629057,-0.049667872488499,0.02646161057055]],[[0.11650759726763,-0.084312506020069,-0.013430645689368],[-0.014921656809747,0.05479957908392,-0.04135550558567],[-0.029981384053826,-0.0086568128317595,0.0040902132168412]],[[-0.050921943038702,0.073000982403755,-0.0034877785947174],[-0.023463869467378,-0.0037233985494822,0.031816557049751],[-0.002007920993492,0.0096557904034853,-0.030635388568044]],[[0.080456994473934,0.037124991416931,-0.012265835888684],[0.018866159021854,0.054735481739044,-0.050715412944555],[-0.018485838547349,-0.062814339995384,-0.013416671194136]],[[-0.030667150393128,0.0012634379090741,0.044794641435146],[-0.032431628555059,-0.015512513928115,0.077118061482906],[-0.080615125596523,0.028298562392592,0.052502743899822]],[[0.043595060706139,-0.0064425924792886,-0.01426502969116],[0.0013763278257102,0.03149951249361,-0.076330631971359],[-0.025354456156492,0.016830669716001,0.055516757071018]],[[0.01382964104414,-0.064787313342094,-0.03186123073101],[-0.039491400122643,0.035075668245554,-0.0028158067725599],[0.0054675717838109,-0.0020633358508348,0.049144003540277]],[[0.021828897297382,0.049807421863079,-0.016958344727755],[0.02686926163733,0.039066310971975,0.037327900528908],[0.00082068232586607,-0.035088639706373,-0.065724954009056]],[[0.0032451199367642,0.0050348481163383,-0.061666838824749],[-0.0042003570124507,-0.056269180029631,0.033871065825224],[0.049900788813829,0.035518478602171,0.032037310302258]],[[-0.015519741922617,-0.079030059278011,0.00961097702384],[-0.018736161291599,0.048043087124825,-0.018890842795372],[0.0062023005448282,0.058378100395203,-0.040762305259705]],[[0.010913883335888,-0.068235605955124,0.0085469568148255],[-0.018574848771095,-0.0048952791839838,-0.013615014031529],[0.023011727258563,-0.0088334670290351,0.07130915671587]],[[-0.082855083048344,0.0030037385877222,0.023755140602589],[0.019222188740969,-0.013786539435387,0.025148913264275],[-0.005413266364485,0.089254289865494,-0.066068969666958]],[[-0.077137924730778,-0.0298753362149,0.062189158052206],[0.0063846949487925,-0.0014886527787894,0.022848377004266],[-0.00083879195153713,-0.020625304430723,0.021082667633891]],[[-0.01570412889123,0.002482183277607,-0.0024095391854644],[0.069720260798931,-0.084090299904346,0.070081874728203],[0.0038714257534593,-0.020502347499132,0.064144939184189]],[[0.016052713617682,-0.050087243318558,0.039153557270765],[0.032468359917402,0.014382842928171,-0.049183283001184],[-0.068116024136543,0.025239028036594,0.032849133014679]],[[0.069644220173359,-0.013186394236982,-0.011256237514317],[-0.011732683517039,-0.0078375842422247,0.0048724971711636],[0.012943449430168,-0.062493469566107,-0.023358557373285]],[[0.020798180252314,-0.007678085938096,0.038258820772171],[0.073564648628235,0.078048124909401,-0.064538396894932],[-0.032497018575668,-0.042913340032101,-0.030193405225873]],[[0.047174487262964,-0.054737683385611,9.6808420494199e-05],[-0.054322276264429,0.044416170567274,-0.00018131540855393],[0.031332176178694,0.0086068753153086,-0.025621715933084]],[[0.073429211974144,0.071979738771915,0.053149435669184],[0.062829568982124,0.0031070737168193,0.079656310379505],[0.049378532916307,0.13183291256428,0.012667156755924]],[[-0.056238695979118,-0.12679928541183,-0.039523489773273],[-0.027434229850769,-0.013809486292303,0.027267212048173],[-0.068684585392475,-0.02844868786633,-0.073642887175083]],[[0.0025194245390594,0.0023275779094547,-0.024528170004487],[-0.018163407221437,0.015486981719732,-0.045476172119379],[0.027840392664075,0.059927918016911,-0.04232594743371]],[[0.012602034024894,-0.0051723928190768,0.032983034849167],[-0.11134818196297,0.038504883646965,-0.019283706322312],[0.054477602243423,-0.0030994284898043,-0.00069306208752096]],[[-0.019427012652159,0.05293146148324,0.040132537484169],[0.053759444504976,0.015707535669208,0.023441530764103],[-0.027895253151655,0.055200178176165,0.033261142671108]],[[-0.0014036521315575,0.015583739615977,0.030915152281523],[-0.015075645409524,0.022649515420198,-0.093034528195858],[-0.029464850202203,-0.032611027359962,0.041189383715391]],[[0.024276541545987,-0.02383491769433,-0.0014676959253848],[-0.034970883280039,-0.0025170044973493,0.014783605933189],[-0.050689939409494,0.047620266675949,0.020627351477742]],[[0.014025125652552,0.021219968795776,0.031157221645117],[-0.0087004033848643,0.0531468950212,0.05664911866188],[-0.027671489864588,-0.023095255717635,0.05614461004734]],[[0.10279330611229,0.040745679289103,-0.00063868972938508],[0.072490572929382,-0.076761610805988,0.090966910123825],[-0.074318736791611,-0.0025918679311872,-0.038888368755579]],[[-0.094093635678291,0.016087299212813,0.0013268054462969],[-0.061552692204714,0.069827906787395,0.075831934809685],[-0.018090566620231,0.0655238032341,-0.011530932970345]],[[0.027628658339381,0.0072781043127179,-0.055435951799154],[0.016764597967267,0.023052537813783,-0.045518971979618],[0.0456796400249,-0.027774970978498,-0.028011634945869]],[[-0.0285117123276,0.032094072550535,0.036953222006559],[0.010488064028323,-0.06849031150341,0.062566131353378],[-0.027805082499981,0.054171673953533,0.021612051874399]],[[-0.011957099661231,0.00019956030882895,-0.048592373728752],[0.093808531761169,0.010788249783218,0.038471639156342],[-0.02854722365737,-0.071911551058292,0.018566202372313]],[[-0.013292128220201,-0.089951664209366,0.015561711043119],[-0.064777173101902,0.04181432723999,0.052322816103697],[0.042380824685097,-0.016944451257586,0.04970770329237]],[[-0.026425333693624,-0.0034948787651956,-0.0040493416599929],[0.031611807644367,-0.0048629832454026,-0.029228994622827],[0.044122532010078,0.037775386124849,-0.08369866758585]],[[-0.025748418644071,0.057645719498396,-0.010316222906113],[-0.064494445919991,-0.013964549638331,-0.011379666626453],[-0.021665520966053,0.060000766068697,0.028895771130919]],[[-0.035787504166365,0.063128881156445,0.014124906621873],[-0.016533901914954,0.035474345088005,0.011130160652101],[-0.011875128373504,-0.062794879078865,0.010924187488854]],[[0.044433828443289,-0.033752050250769,0.0011005650740117],[0.027979172766209,-0.014579894952476,-0.0051161707378924],[0.013505591079593,0.070472933351994,-0.0069481837563217]],[[0.031957305967808,0.02829178608954,-0.034604404121637],[-0.020308740437031,-0.029683258384466,-0.057819992303848],[-0.027295023202896,-0.049460738897324,-0.0045066946186125]]],[[[-0.0072801169008017,-0.076321244239807,-0.036809358745813],[-0.026213949546218,0.048138074576855,0.039523165673018],[0.0043324008584023,0.035917446017265,0.045861952006817]],[[0.0048789074644446,-0.048957053571939,0.05341637507081],[0.047009501606226,-0.045721307396889,0.021035304293036],[0.012873681262136,-0.0019309188937768,-0.033360544592142]],[[-0.04479618370533,0.079062886536121,0.034855268895626],[-0.0094000585377216,-0.039611779153347,-0.075989194214344],[-0.025467958301306,0.10088157653809,-0.00032354582799599]],[[0.054445631802082,0.097497634589672,0.039723210036755],[0.0050796954892576,0.029798248782754,0.0064996373839676],[0.068920813500881,-0.029285997152328,0.0041730366647243]],[[0.035182505846024,-0.064849525690079,0.033930506557226],[0.054155949503183,-0.017246080562472,0.067672036588192],[0.0019029278773814,0.050108000636101,-0.060441687703133]],[[0.043727729469538,-0.025103384628892,-0.012719185091555],[-0.0028590040747076,0.0072983242571354,0.0084638381376863],[0.031335305422544,0.015622395090759,0.0053861336782575]],[[0.051416270434856,-0.0176792871207,0.017695471644402],[0.054225407540798,0.069059692323208,-0.059156849980354],[-0.029458608478308,-0.019462272524834,-0.03480676189065]],[[0.094295039772987,0.029732828959823,0.00055104168131948],[0.086109653115273,0.0047430102713406,-0.0063762543722987],[-0.021904584020376,-0.011965196579695,-0.016520015895367]],[[-0.078849218785763,-0.00015000498387963,0.062627516686916],[0.005770624615252,0.080004550516605,0.011168486438692],[0.057406771928072,0.006231308914721,0.024065148085356]],[[0.013110917061567,-0.032085888087749,-0.034038949757814],[-0.022698555141687,-0.0076846899464726,0.10914066433907],[0.11887574195862,-0.019273519515991,0.085646077990532]],[[0.090197019279003,0.016107091680169,0.067098528146744],[0.016355844214559,-0.016221037134528,0.019919047132134],[-0.079121433198452,0.023520119488239,0.040690049529076]],[[0.043375123292208,-0.0034490525722504,0.011077217757702],[0.014282532967627,0.056653331965208,-0.030854104086757],[0.041477784514427,0.002389423083514,0.046064432710409]],[[0.02482021227479,-0.064456924796104,0.043328057974577],[0.073847927153111,-0.00042908106115647,-0.051540050655603],[-0.057755101472139,0.046346396207809,0.084677025675774]],[[0.048872973769903,-0.0087523404508829,-0.041624005883932],[-0.088347807526588,0.046034757047892,-0.0069772065617144],[-0.035460706800222,-0.0089123845100403,-0.0044034756720066]],[[0.049532104283571,0.091999500989914,0.0056429095566273],[0.061861164867878,0.068108633160591,-0.074575275182724],[-0.014418291859329,0.13413038849831,-0.0046627572737634]],[[0.03829487785697,-0.024789232760668,0.025144031271338],[-0.03821923956275,-0.0046316082589328,0.0078510995954275],[-0.053282260894775,0.047920420765877,-0.026427062228322]],[[0.013150780461729,-0.058738447725773,0.020550630986691],[0.0438500829041,-0.060990553349257,0.028459385037422],[0.040005624294281,-0.011554152704775,0.047633368521929]],[[0.023757740855217,0.036858323961496,0.017480995506048],[0.004746769554913,-0.0074407709762454,0.0038324368651956],[-0.080360472202301,0.034668061882257,0.046154502779245]],[[-0.057084660977125,0.013558872044086,0.028718316927552],[-0.047343067824841,0.020553832873702,0.033475272357464],[-0.053985357284546,0.030655546113849,-0.0062717739492655]],[[0.0095712123438716,-0.018556192517281,0.019391322508454],[-0.01816769503057,-0.03567111864686,-0.078773140907288],[-0.032793633639812,0.013588221743703,0.029040809720755]],[[-0.036229867488146,0.01922120526433,-0.006353504024446],[-0.03912765160203,-0.056272719055414,0.016522468999028],[0.026751780882478,-0.0098262475803494,0.02362172305584]],[[-0.0055016409605742,-0.01181120891124,0.014483612962067],[-0.0027884407900274,0.016668170690536,-0.047769613564014],[0.075887270271778,0.11265514791012,0.079006589949131]],[[0.027289004996419,0.038790762424469,-0.032933160662651],[-0.0029568851459771,-0.001147115486674,-0.0078784031793475],[-0.051402386277914,-0.044999327510595,-0.012048571370542]],[[-0.084911569952965,-7.3980787419714e-05,-0.059000510722399],[-0.026457777246833,-0.027781965211034,-0.016176123172045],[-0.025030547752976,-0.00716971186921,-0.012584029696882]],[[-0.024229440838099,0.039304483681917,0.020497949793935],[0.076261594891548,0.032088447362185,0.038085173815489],[-0.0078141186386347,-0.088559105992317,0.0074870879761875]],[[0.027763668447733,0.024114809930325,0.029097136110067],[0.013744878582656,-0.015624513849616,0.074582479894161],[0.022462200373411,-0.029396908357739,0.071000024676323]],[[0.016160313040018,0.040912579745054,0.0091875875368714],[0.077283158898354,0.040755927562714,-0.002849898301065],[0.0015261461958289,0.035663139075041,-0.0037143342196941]],[[-0.090061895549297,-0.0054732332937419,0.035750400274992],[0.068239219486713,-0.028320364654064,-0.023678032681346],[0.068818591535091,-0.01052921358496,0.071392416954041]],[[0.018281515687704,-0.076303087174892,0.035980895161629],[0.017353694885969,0.031099498271942,-0.013224381022155],[-0.009934545494616,0.02653513289988,0.06557834148407]],[[0.0070035322569311,-0.0010961496736854,0.035069454461336],[-0.064528785645962,-0.0096347099170089,0.039146021008492],[-0.018172413110733,0.027584262192249,0.028646469116211]],[[-0.037059862166643,0.036694128066301,-0.0059440936893225],[0.021340485662222,0.02545859105885,0.081654943525791],[0.015189741738141,0.0025399646256119,0.030200932174921]],[[0.076559729874134,0.013033520430326,-0.017396360635757],[-0.016698367893696,-0.0073135080747306,-0.033657841384411],[-0.044429268687963,-0.049620267003775,0.023518478497863]],[[0.048620723187923,-0.035713046789169,0.073340907692909],[0.048462931066751,-0.022700127214193,-0.015498653054237],[-0.0017278015147895,0.0092759020626545,-0.10805341601372]],[[-0.064298696815968,0.012501103803515,0.069172240793705],[0.013137856498361,-0.024274975061417,0.0070204385556281],[0.05754366889596,-0.00032414495944977,0.016136402264237]],[[0.0041562272235751,-0.12691590189934,0.014019063673913],[0.058819357305765,-0.010416430421174,0.071356445550919],[-0.04705036431551,-0.036818787455559,0.026554886251688]],[[0.045145854353905,-0.0080705611035228,0.090940721333027],[-0.023026928305626,0.071602053940296,-0.028151491656899],[-0.094701603055,0.020637240260839,-0.011181022040546]],[[-0.022967083379626,0.016017751768231,0.031801171600819],[0.066824018955231,0.066519699990749,0.017360582947731],[0.040579285472631,0.0058611733838916,-0.010243840515614]],[[0.085662826895714,0.054446127265692,-0.052145719528198],[-0.049150459468365,0.054314706474543,0.039330925792456],[0.086495645344257,-0.064091682434082,-0.007640462834388]],[[-0.015956981107593,0.035158980637789,-0.0096083069220185],[0.035013407468796,0.088342055678368,0.054720848798752],[0.10070346295834,0.061300400644541,-0.024346474558115]],[[-0.086047604680061,-0.020255729556084,0.02246999181807],[-0.0039254743605852,-0.0536969602108,0.050726871937513],[0.012215185910463,0.048347063362598,-0.055008750408888]],[[-0.0021188899409026,-0.0053185899741948,0.037493582814932],[0.025585282593966,-0.029615320265293,0.0087793618440628],[-0.0080382926389575,-0.0048957732506096,0.075308054685593]],[[-0.0085727320984006,-0.044011943042278,0.044309515506029],[0.040779490023851,0.042452242225409,-0.022605355829],[-0.035206709057093,-0.0098084127530456,-0.01654384098947]],[[0.028330435976386,-0.042683683335781,0.028377721086144],[-0.06454386562109,0.012339512817562,0.010929346084595],[-0.051430534571409,0.0068147373385727,-0.033781513571739]],[[0.028080876916647,0.027110645547509,-0.021790506318212],[-0.013445883989334,0.02673115581274,-0.050142619758844],[0.03607864305377,0.0063864239491522,0.020935630425811]],[[-0.027723209932446,0.066209234297276,-0.047201331704855],[-0.047390002757311,-0.049956135451794,-0.0022109975107014],[-0.0092483647167683,0.0048027648590505,0.052447326481342]],[[-0.0071382415480912,0.034511029720306,-0.0067266640253365],[-0.0040078228339553,0.0057093231007457,0.11013753712177],[0.019864562898874,0.079160645604134,0.092351831495762]],[[-0.068812601268291,0.044740453362465,0.013392105698586],[0.045556802302599,0.04107041656971,-0.011808592826128],[0.087216652929783,0.0068889427930117,-0.0069947610609233]],[[0.014474181458354,0.011634051799774,0.0079815657809377],[0.017735546454787,0.029657965525985,0.0038518507499248],[0.035309936851263,-0.033589962869883,0.086361430585384]],[[0.0046124313957989,0.01426381058991,0.10832019895315],[-0.027878841385245,0.048306416720152,0.028117133304477],[0.050470232963562,-0.089034117758274,-0.049089621752501]],[[0.041294027119875,0.0075178844854236,-0.034830175340176],[-0.025580437853932,0.014390639029443,-0.0064333812333643],[0.0035792572889477,0.028956716880202,-0.0016424738569185]],[[-0.0086246225982904,-0.057139810174704,0.031514454632998],[0.05806203559041,0.039697725325823,0.015575806610286],[-0.047421351075172,0.088403955101967,-0.051547214388847]],[[0.16988652944565,0.095420233905315,0.010195838287473],[0.039688803255558,0.058918789029121,0.031053921207786],[-0.015166318044066,-0.050207778811455,-0.0094626620411873]],[[0.073064297437668,0.037836659699678,0.047906149178743],[0.021287836134434,0.053939238190651,0.0049118408933282],[-0.04210638999939,0.0037817459087819,0.003857170464471]],[[0.038544129580259,-0.048744723200798,0.046954672783613],[0.045162577182055,-0.027252314612269,-0.016187030822039],[0.027050754055381,0.019875781610608,0.020151762291789]],[[0.041528213769197,0.028594851493835,-0.039774909615517],[0.0051538357511163,0.083170585334301,-0.037444166839123],[0.0012995741562918,0.054257910698652,0.019276697188616]],[[0.042085010558367,-0.019842222332954,0.015995608642697],[-0.036997567862272,0.02095777541399,0.018405385315418],[-0.008690427057445,-0.0017340279882774,-0.05410435423255]],[[0.012422914616764,-0.05824701115489,-0.015441396273673],[-0.044736366719007,0.009087854065001,0.020587557926774],[0.012459499761462,0.082507736980915,-0.11539675295353]],[[-0.057404104620218,0.0079722627997398,0.0132005661726],[0.038258146494627,0.030271710827947,-0.030339641496539],[0.057405535131693,0.065830007195473,0.067186258733273]],[[0.0018591169500723,0.069313675165176,-0.049301721155643],[0.020580548793077,0.031729705631733,0.083504818379879],[0.0032623817678541,0.10188364982605,-0.048864588141441]],[[-0.02414383739233,0.0096886297687888,-0.018498891964555],[-0.0099022770300508,0.013601643033326,0.033470671623945],[0.018326487392187,-0.06799279153347,0.061279036104679]],[[0.031752292066813,0.063002981245518,0.0028228340670466],[0.022938689216971,0.077127918601036,0.0051969420164824],[-0.023736350238323,0.015464646741748,-0.00083917210577056]],[[-0.041040148586035,-0.037215918302536,-0.061844240874052],[0.0083539113402367,-0.0092325992882252,0.074051715433598],[0.047883749008179,-0.046714551746845,0.058429162949324]],[[0.020289966836572,-0.033583134412766,-0.039581898599863],[-0.01277367118746,0.053470581769943,-0.010772445239127],[0.011348563246429,-0.076286979019642,0.036541361361742]],[[0.0035704497713596,0.099103517830372,-0.0034068403765559],[0.012158456258476,0.021792886778712,0.023904440924525],[-0.0080314269289374,0.063480697572231,0.083934739232063]],[[-0.0089780250564218,-0.047943685203791,0.00069299625465646],[-0.03778538107872,-0.043395739048719,0.018671007826924],[0.010726748034358,-0.0061865081079304,-0.089567564427853]],[[-0.035858269780874,-0.021026752889156,0.010066103190184],[0.0018899919232354,0.066387459635735,0.012895658612251],[-0.010370370931923,0.0029138745740056,-0.050723742693663]],[[0.0098834149539471,-0.0066873067989945,0.032002996653318],[0.010009580291808,0.031411569565535,0.0070969122461975],[0.010652403347194,0.055852320045233,0.0063528064638376]],[[0.02068000100553,0.075942203402519,0.082787357270718],[0.023580767214298,0.040353447198868,0.017153581604362],[0.0089155687019229,0.03955714777112,-0.043745398521423]],[[0.020456442609429,0.0082569848746061,0.070327408611774],[0.037432625889778,0.058121327310801,0.0056748636998236],[-0.020900849252939,-0.04210364818573,0.033909104764462]],[[0.086744897067547,0.013138998299837,-0.0042476137168705],[-0.049826789647341,0.080920159816742,-0.0046090553514659],[-0.014753062278032,-0.015093458816409,-0.00078272906830534]],[[0.075272671878338,0.0087597798556089,0.019928470253944],[-0.025550864636898,0.048746962100267,0.0034283499699086],[0.036055341362953,0.014461426995695,0.071198105812073]],[[0.023074992001057,-0.0025129192508757,-0.0088084135204554],[0.024928415194154,0.011397461406887,-0.0098859099671245],[0.0040580960921943,0.075980603694916,0.045065373182297]],[[0.0099598616361618,0.038982696831226,0.0058335522189736],[0.02410351857543,0.041527073830366,0.031885284930468],[-0.021985990926623,-0.0098623922094703,-0.022184805944562]],[[0.050507001578808,-0.004337492864579,0.034569576382637],[-0.030425205826759,-0.049524553120136,0.04133902862668],[0.043057702481747,0.030172949656844,0.01392840128392]],[[0.041512116789818,-0.0088552292436361,0.036440763622522],[0.020013997331262,0.0032627887558192,0.037985377013683],[0.014403538778424,0.023887379094958,0.067768804728985]],[[0.054598111659288,0.014811045490205,0.023815020918846],[-0.025871306657791,-0.014054211787879,0.039339408278465],[-0.0058779651299119,0.0098806815221906,-0.06350602209568]],[[0.024801604449749,-0.024258024990559,0.021418577060103],[0.0028422751929611,0.014617830514908,0.068435408174992],[-0.027020435780287,-0.013087986968458,-0.0073766163550317]],[[-0.025455769151449,0.020191479474306,-0.030749209225178],[-0.0092321205884218,-0.034395646303892,-0.034714464098215],[0.056149497628212,-0.059711012989283,0.065623074769974]],[[0.026850111782551,0.0055944309569895,0.0060184332542121],[-0.020027663558722,0.050584435462952,0.030432440340519],[0.088299207389355,0.023754173889756,-0.033539917320013]],[[-0.01773476973176,0.012637891806662,-0.012089816853404],[-0.03804000467062,0.0084612313657999,0.0084816925227642],[-0.018480719998479,-0.0042059733532369,0.0074606989510357]],[[-0.009207989089191,-0.046624969691038,0.025728279724717],[0.06246892362833,-0.064659386873245,0.012311015278101],[-0.014055743813515,0.047202721238136,0.058979541063309]],[[0.0063392426818609,-0.0095665110275149,-0.017005676403642],[-0.062292959541082,-0.046631958335638,-0.027932051569223],[-0.021401701495051,0.045544505119324,0.00081859744386747]],[[-0.041530720889568,-0.035510323941708,-0.030603557825089],[0.066330604255199,-0.10321614891291,-0.01931706815958],[0.005807819776237,0.094834238290787,0.071203008294106]],[[0.028535893186927,-0.013271111994982,0.030872335657477],[0.015042017214,-0.021673118695617,0.036475244909525],[0.020739801228046,0.020409954711795,-0.052400313317776]],[[-0.038139745593071,-0.025809777900577,0.034144755452871],[-0.018734518438578,0.039533779025078,0.078802064061165],[0.079751528799534,0.059981144964695,-0.067457772791386]],[[0.025359448045492,0.024462340399623,-0.048812426626682],[0.014521258883178,0.010420220904052,-0.011319874785841],[0.042483873665333,0.01754760555923,-0.025651479139924]],[[0.0072468924336135,-0.053091157227755,0.0010089074494317],[0.044540278613567,0.0010989478323609,0.056627258658409],[-0.013246666640043,0.011044326238334,0.015134719200432]],[[0.016633635386825,-0.014812178909779,-0.024499304592609],[-0.0097703086212277,-0.01152334548533,-0.0010236168745905],[-0.061473578214645,0.066175974905491,-0.013518618419766]],[[-0.022033913061023,0.056993573904037,-0.041732855141163],[-0.047947593033314,0.034774694591761,0.088643431663513],[-0.013458852656186,0.050649993121624,0.055484995245934]],[[0.02866923995316,-0.040174245834351,-0.0253990534693],[-0.00066640396835282,0.0054910946637392,0.0050630597397685],[-0.019628062844276,0.014646400697529,0.082581996917725]],[[0.030400216579437,-0.010864121839404,0.013947491534054],[0.11210091412067,0.034817703068256,0.049939136952162],[-0.04061821475625,0.078793846070766,0.044359110295773]],[[-0.031242255121469,0.013569119386375,0.064527936279774],[-0.071116849780083,0.0098401103168726,-0.012976800091565],[-0.015447152778506,0.051583047956228,-0.0096091460436583]],[[-0.00090796872973442,0.01554668135941,0.032415602356195],[0.03243338316679,0.035139590501785,-0.010664799250662],[-0.021144729107618,0.015449524857104,-0.0036562830209732]],[[-0.066997215151787,-0.048681251704693,0.020519364625216],[0.048985164612532,0.11613408476114,-0.0062299547716975],[-0.001010357751511,0.044689361006021,0.027888687327504]],[[-0.0075043262913823,0.021535307168961,-0.025678444653749],[-0.02299683727324,-0.041659567505121,0.039152041077614],[-0.032099518924952,0.024281211197376,-0.0085797095671296]],[[-0.0053481543436646,0.035415001213551,0.060258641839027],[-0.071151845157146,0.032534256577492,0.066755793988705],[-0.024054560810328,-0.024639992043376,-0.12923865020275]],[[-0.075600571930408,0.026884252205491,0.0065657193772495],[-0.011719792149961,-0.042108297348022,0.041518554091454],[-0.022478869184852,0.017533672973514,0.031070422381163]],[[-0.0020937244407833,0.13092838227749,-0.03409668058157],[0.077725820243359,-0.046444538980722,-0.02031222358346],[-0.067469894886017,0.016728917136788,0.01016719546169]],[[-0.034948237240314,-0.02502229437232,0.0029888574499637],[-0.011946414597332,0.027760323137045,-0.022597266361117],[0.053470183163881,0.059089291840792,0.050815179944038]],[[0.045826800167561,0.028665026649833,-0.0095101268962026],[-0.0063773267902434,-0.020919444039464,-0.034533258527517],[-0.046696495264769,-0.029869636520743,0.0094929002225399]],[[-0.045085910707712,0.028707977384329,0.020687578245997],[-0.00085274345474318,-0.0047154161147773,-0.0063713830895722],[0.023089004680514,0.027919257059693,-0.0042982716113329]],[[0.03738721087575,0.049550637602806,0.05448592454195],[0.045092117041349,-0.025181312114,-0.013207267038524],[0.071995042264462,-0.0079379249364138,0.061185210943222]],[[-0.036570623517036,-0.02012257091701,-0.017310963943601],[0.0566644705832,0.0064366958104074,0.061919789761305],[-0.0046017309650779,0.1058290079236,0.0029124885331839]],[[0.065751478075981,0.026517288759351,-0.02180665358901],[0.0086769927293062,-0.034349221736193,-0.01328288950026],[0.017762823030353,0.074005208909512,0.014053210616112]],[[0.056319665163755,-0.039212554693222,-0.050620470196009],[-0.042548187077045,-0.012913541868329,0.055675718933344],[0.005923860706389,0.086073189973831,-0.012583957053721]],[[-0.013480726629496,0.029420031234622,0.011183776892722],[-0.028657395392656,-0.032358925789595,0.025126380845904],[0.0091023091226816,0.0066368640400469,0.047808639705181]],[[0.0035985987633467,0.0018472025403753,-0.015393428504467],[0.0042152940295637,-0.0028107916004956,0.018049873411655],[0.010624187067151,0.0075386092066765,-0.068950563669205]],[[0.0033257843460888,0.029947502538562,-0.033781256526709],[-0.082322530448437,0.041252434253693,0.018165176734328],[-0.027494309470057,0.029203588142991,-0.004502210766077]],[[0.033153131604195,0.058820009231567,0.080667205154896],[0.05665934830904,-0.047005198895931,-0.082716837525368],[0.052436772733927,-0.03733079880476,0.029926683753729]],[[-0.021407064050436,0.020888155326247,-0.0094821788370609],[0.014497560448945,-0.046140391379595,-0.031550191342831],[0.023241333663464,0.052308052778244,-0.055223438888788]],[[0.026513634249568,0.053847260773182,-0.071344159543514],[-0.038853246718645,0.038404352962971,-0.050413366407156],[-0.0081017082557082,0.019829964265227,0.024827964603901]],[[0.025749132037163,-0.049819082021713,0.028591498732567],[0.060033287853003,0.0063468208536506,-0.0017083543352783],[-0.10363007336855,0.055939361453056,-0.022440128028393]],[[0.017036547884345,-0.045045386999846,-0.0073001687414944],[-0.023794233798981,-0.048438929021358,0.018112480640411],[0.069118216633797,-0.035417474806309,0.015056150965393]],[[-0.036357536911964,0.011861691251397,0.034792128950357],[-0.001014526351355,-0.02798873744905,0.070063889026642],[0.036316998302937,0.015524698421359,-0.015604632906616]],[[0.044459454715252,0.027561893686652,-0.026677830144763],[0.022206980735064,-0.0093446038663387,-0.037464238703251],[-0.019945211708546,0.016790423542261,-0.016615988686681]],[[0.054819822311401,-0.020175540819764,-0.020501613616943],[0.036136206239462,0.039055906236172,0.018284315243363],[0.0021635612938553,0.028877031058073,0.062519051134586]],[[-0.028485281392932,0.055583849549294,-0.025641417130828],[0.0039230459369719,0.065327979624271,0.041089594364166],[0.027241693809628,0.086760558187962,-0.012119838036597]],[[0.0608971118927,0.057209357619286,-0.0025890939868987],[0.038478743284941,0.075194038450718,-0.040884029120207],[-0.0071501592174172,-0.020903458818793,-0.056844711303711]],[[-0.056510373950005,0.040499974042177,0.0044533079490066],[-0.024958785623312,0.033040698617697,-0.03341818600893],[0.024572249501944,-0.0052448292262852,0.022108837962151]],[[0.021743059158325,-0.027457663789392,-0.016587490215898],[0.052905809134245,-0.087322294712067,-0.050347339361906],[-0.079278774559498,-0.073752574622631,-0.034191194921732]],[[0.0081298798322678,-0.024281101301312,-0.016101622954011],[-0.080865234136581,-0.0035918389912695,0.011134741827846],[-0.097906157374382,-0.034900184720755,-0.04714135453105]],[[-0.038262344896793,0.0081609841436148,-0.012706654146314],[0.090945981442928,-0.0064516202546656,0.050968747586012],[0.046789091080427,0.010753910057247,-0.076388083398342]],[[-0.0065280217677355,-0.1138511300087,0.028321035206318],[-0.010845813900232,0.024967227131128,-0.01185748912394],[0.020990753546357,0.085621289908886,-0.006973635405302]],[[-0.03074511513114,0.069369569420815,0.035730451345444],[0.023855602368712,-0.022609120234847,-0.0038104741834104],[0.014776601456106,0.018497284501791,-0.019938519224524]],[[0.019817249849439,-0.03340981900692,0.067414954304695],[0.010795392096043,-0.0055975397117436,0.052264872938395],[-0.058070968836546,0.046983048319817,0.085224829614162]],[[-0.017138730734587,0.013700191862881,-0.034745741635561],[-0.028804011642933,-0.047727968543768,0.01722926646471],[0.076076716184616,0.068553067743778,0.007775875274092]],[[0.062505699694157,-0.074965998530388,-0.0083359591662884],[0.040510836988688,-0.03074206598103,0.028954355046153],[0.13290129601955,0.040880192071199,0.044926695525646]],[[0.0097636729478836,0.0035132803022861,0.03324156627059],[-0.0046597076579928,0.031736861914396,-0.021930212154984],[0.0056739184074104,0.011925550177693,0.062661997973919]]],[[[0.017236586660147,-0.050664469599724,-0.0037881031166762],[0.028263369575143,-0.042011894285679,0.012008067220449],[-0.023759972304106,0.0099809747189283,-0.059657368808985]],[[0.027655785903335,0.035801704972982,-0.016859479248524],[0.054237429052591,0.027907000854611,-0.061401203274727],[-0.061975888907909,0.040357660502195,0.019472805783153]],[[-0.068352751433849,0.078103683888912,0.037712801247835],[0.061350762844086,-0.10014076530933,0.028884986415505],[0.0514259301126,0.046460747718811,-0.025798499584198]],[[-0.010679359547794,0.05480994284153,-0.093926839530468],[0.0082266069948673,0.00083815836114809,0.024703379720449],[-0.032709952443838,0.02797613106668,0.049582749605179]],[[-0.070465765893459,-0.058400738984346,-0.013904860243201],[-0.00048075398080982,-0.029403574764729,0.054436553269625],[0.058717630803585,-0.015982592478395,-0.0098227029666305]],[[0.019754508510232,-0.066495843231678,0.033643756061792],[-0.01823390647769,0.045166283845901,0.0027601947076619],[0.045344609767199,0.039345975965261,0.028436271473765]],[[0.0022693399805576,0.015759024769068,0.075204990804195],[0.03619271889329,-0.0025663119740784,0.00013474235311151],[0.10058061033487,-0.11613611131907,-0.066744208335876]],[[0.0030382801778615,0.01915299333632,-0.019770048558712],[-0.083247825503349,0.0060368520207703,0.0039751850999892],[0.016452301293612,-0.0081820860505104,0.045291006565094]],[[-0.050057679414749,-0.0045399935916066,0.015040015801787],[-0.0079489825293422,-0.031846344470978,0.043129701167345],[-0.046428039669991,0.032932598143816,-0.025691138580441]],[[-0.048120111227036,-0.024895768612623,-0.069899991154671],[-0.093806654214859,-0.014486122876406,0.049702629446983],[-0.041933573782444,0.0042366553097963,-0.011772893369198]],[[-0.078559957444668,0.035067953169346,0.0051497318781912],[0.068777874112129,0.024667091667652,-0.032407276332378],[0.021110855042934,-0.037978019565344,-0.092100791633129]],[[-0.020017912611365,0.037021979689598,-0.1161173209548],[0.037001457065344,0.0071267429739237,0.029373571276665],[-0.00010239967377856,0.030042462050915,-0.012810023501515]],[[-0.0836216583848,0.078686505556107,0.018599547445774],[-0.0018309052102268,0.013336174190044,-0.047246441245079],[0.015491454862058,0.041892554610968,0.0018671804573387]],[[-0.010743961669505,-0.00511071132496,0.017188081517816],[0.062152434140444,0.0049037402495742,0.036246929317713],[-0.090563222765923,-0.017811328172684,-0.0063637639395893]],[[0.066182903945446,0.1258252710104,-0.061184905469418],[-0.0055460082367063,0.05315599963069,-0.073797293007374],[0.079131491482258,0.077924512326717,-0.098740383982658]],[[-0.0051165753975511,-0.0091187730431557,0.038405194878578],[0.048264123499393,0.010960564948618,0.027458690106869],[-0.042027302086353,0.020183278247714,-0.001076094689779]],[[0.016215542331338,0.038445476442575,-0.025824317708611],[-0.044966466724873,-0.087033554911613,0.0534284748137],[0.047172386199236,-0.11249341070652,0.045580673962831]],[[0.035899572074413,-0.051068600267172,0.050757899880409],[-0.030272474512458,0.073660477995872,0.017102858051658],[0.025016538798809,-0.036948263645172,0.050151102244854]],[[0.045724987983704,-0.058720543980598,0.048118140548468],[0.010587476193905,-0.07392880320549,-0.018242510035634],[-0.0054631247185171,-0.0036166941281408,0.036431901156902]],[[-0.054653991013765,0.072401590645313,0.030261499807239],[0.023177776485682,-0.069992549717426,-0.042443178594112],[-0.025172311812639,0.009670028463006,0.030031593516469]],[[0.069217376410961,0.0029665967449546,-0.011441650800407],[0.10040342062712,-0.080632857978344,-0.050224520266056],[0.052651304751635,-0.1090789064765,-0.028673343360424]],[[0.031302109360695,-0.017353920266032,-0.039536226540804],[0.001390821300447,-0.039739388972521,0.015525522641838],[0.065272219479084,-0.034614909440279,0.0073511456139386]],[[-0.041634645313025,-0.031743574887514,0.031505137681961],[-0.024246141314507,0.071416549384594,0.026912976056337],[-0.045518588274717,0.060620706528425,-0.0024798596277833]],[[-0.011721367947757,-0.0093774143606424,0.03024916164577],[0.11450351774693,0.031436238437891,0.063101910054684],[-0.035723358392715,-0.081802502274513,0.050218008458614]],[[-0.21084502339363,-0.08507988601923,0.033051867038012],[0.15109235048294,-0.073958322405815,-0.016392927616835],[0.052817888557911,0.10458998382092,-0.088701546192169]],[[0.03666115924716,0.032231602817774,0.026250097900629],[0.11611444503069,-0.052130024880171,-0.10015428811312],[-0.045658946037292,-0.047077227383852,-0.02499470859766]],[[0.0086627183482051,0.02655222825706,0.020611835643649],[-0.079974576830864,-0.037501249462366,-0.015225485898554],[-0.063546225428581,0.01014194265008,-0.047118287533522]],[[0.085846103727818,0.00031471901456825,-0.018863780423999],[0.096894763410091,-0.075262844562531,-0.045228492468596],[0.0049285213463008,-0.033164020627737,0.06853686273098]],[[0.053733646869659,0.068932063877583,-0.026464998722076],[-0.066409237682819,-0.014473496004939,0.097183994948864],[-0.10859774053097,0.08005503565073,0.0060832854360342]],[[0.044132310897112,0.019237525761127,0.024978518486023],[-0.0057352785952389,-0.090843692421913,0.0069580879062414],[-0.023989703506231,-0.0041161049157381,-0.002360659185797]],[[0.041335832327604,0.063554897904396,-0.026779348030686],[-0.0040221777744591,0.0072762905620039,-0.00095577986212447],[-0.073108367621899,-0.033910363912582,-0.03318627923727]],[[-0.031361967325211,-0.030703354626894,0.041254818439484],[-0.036407932639122,-0.032020099461079,0.047798190265894],[0.0017763607902452,0.0010761101730168,0.05091804265976]],[[-0.031579073518515,0.029553137719631,0.049107547849417],[0.054776441305876,-0.0088172666728497,0.0024642706848681],[-0.034961231052876,0.032287564128637,0.028203561902046]],[[-0.066706798970699,-0.11794406175613,-0.046863470226526],[-0.028363926336169,0.03636123239994,-0.024151159450412],[-0.098863698542118,0.0062672719359398,0.0098748626187444]],[[-0.054943658411503,-0.066825650632381,-0.015456832014024],[-0.049075461924076,-0.013471339829266,-0.020766673609614],[0.0059951776638627,0.077420145273209,0.037765443325043]],[[-0.012980850413442,-0.014439838938415,-0.0038808197714388],[0.022815521806479,-0.044647868722677,-0.011127063073218],[0.017766986042261,0.01907098479569,0.0047562401741743]],[[-0.013138264417648,-0.0019177919020876,-0.024307927116752],[0.025370750576258,0.0044230776838958,-0.01581228338182],[0.0013536521000788,0.041557196527719,-0.069363012909889]],[[-0.086174055933952,-0.024282027035952,0.057610623538494],[-0.075446277856827,-0.01024604216218,-0.017843559384346],[0.013466652482748,-0.06732801347971,0.10093325376511]],[[0.0028261707630008,0.011885520070791,0.033159710466862],[-0.0020726262591779,0.075439743697643,0.036558635532856],[-0.11935333907604,0.053008407354355,-0.052926976233721]],[[-0.014955170452595,0.064624793827534,0.0068008797243237],[0.0024479632265866,0.040126256644726,-0.0014270307729021],[0.0081346202641726,-0.025940895080566,0.01324057765305]],[[0.045117311179638,0.035000059753656,0.043316155672073],[0.02019239962101,0.02339736558497,-0.032575998455286],[0.091718234121799,-0.058374058455229,0.0059464019723237]],[[-0.020917328074574,0.031950931996107,0.0066706640645862],[-0.057992346584797,-0.0079079382121563,-0.040297355502844],[-0.054118737578392,-0.033302180469036,0.024039819836617]],[[-0.0072672585956752,-0.037117056548595,0.010150128975511],[0.035312905907631,-0.0043639312498271,-0.019219441339374],[-0.054656080901623,0.05433527007699,-0.032564371824265]],[[0.065658457577229,0.020663131028414,-0.07941485196352],[0.043047454208136,0.0043158577755094,0.042149804532528],[-0.062018748372793,-0.032232284545898,-0.012770218774676]],[[-0.021966451779008,0.030040519312024,0.073264345526695],[-0.07052893191576,0.045855335891247,0.044305842369795],[0.033299174159765,-0.026773445308208,-0.040583707392216]],[[0.024759588763118,-0.082402065396309,-0.044010829180479],[0.012472930364311,0.0034344538580626,-0.074675604701042],[-0.029339950531721,0.0072695231065154,0.012240418232977]],[[-0.011592078953981,-0.041729532182217,-0.035840835422277],[-0.024482170119882,0.099909350275993,0.053965322673321],[0.0027680643834174,0.0085670407861471,-0.02711808308959]],[[-0.10788123309612,0.10894943773746,-0.038540955632925],[0.038380011916161,-0.062967821955681,0.062136255204678],[-0.050442978739738,0.10397385060787,0.019709823653102]],[[0.060140788555145,-0.040963839739561,-0.02670937217772],[-0.0010227174498141,0.048101097345352,0.060342203825712],[-0.062570661306381,-0.087174125015736,0.043267324566841]],[[0.016685843467712,-0.011386281810701,-0.050953261554241],[-0.035340987145901,-0.015992389991879,-0.015605123713613],[-0.03319650515914,0.022615853697062,0.040583282709122]],[[0.0019498647889122,0.002033245516941,0.042340353131294],[-0.056384112685919,0.1277157664299,-0.015359358862042],[-0.049100376665592,-0.045858539640903,0.023116113618016]],[[0.017127178609371,-0.002967563457787,-0.01561425998807],[0.029232740402222,0.026822369545698,-0.035226836800575],[-0.026800015941262,0.01008712220937,-0.054720118641853]],[[-0.034773584455252,-0.016167039051652,-0.014507630839944],[0.039821181446314,0.002242561429739,0.040416583418846],[-0.013118235394359,-0.035108096897602,0.0026439507491887]],[[-0.029442623257637,0.013543010689318,-0.024873580783606],[-0.0089486986398697,0.022761946544051,0.061925493180752],[-0.043593864887953,-0.012596245855093,0.0028493029531091]],[[-0.027419436722994,0.026973681524396,-0.0093197710812092],[0.083339750766754,0.01340863481164,0.032095719128847],[-0.13010221719742,-0.013637194409966,0.027246432378888]],[[-0.067791439592838,-0.043079696595669,-0.049051620066166],[-0.01880569010973,0.020904667675495,0.026210799813271],[-0.03231293708086,0.015500769950449,-0.02946175262332]],[[0.043735690414906,0.019902482628822,-0.060144327580929],[0.06364306807518,-0.051943831145763,0.011422348208725],[-0.049272775650024,0.027342425659299,0.048240732401609]],[[-0.0054899486713111,0.019281370565295,-0.017825620248914],[-0.024538857862353,-0.0016384669579566,-0.058753207325935],[0.03423173725605,2.9575201551779e-05,-0.048494379967451]],[[0.004866742528975,0.045883931219578,-0.049176186323166],[-0.034716296941042,-0.097642920911312,0.015794314444065],[0.05122135579586,-0.078383602201939,0.060729820281267]],[[0.0035330217797309,0.047635160386562,0.050819456577301],[-0.055614367127419,0.007071697153151,-0.016849046573043],[0.073715284466743,-0.071766719222069,0.0031503692734987]],[[-0.066611424088478,-0.01298850402236,0.043425336480141],[0.013291190378368,0.069048501551151,0.032163146883249],[0.099869512021542,-0.044204887002707,0.035796578973532]],[[0.0084555838257074,-0.001187464222312,0.011215090751648],[-0.037934742867947,-0.062728531658649,0.063764192163944],[-0.07551583647728,0.01514688692987,-0.040283977985382]],[[-0.027327440679073,0.0087253209203482,0.0047513209283352],[-0.021245732903481,-0.047898601740599,-0.0097931008785963],[0.079130373895168,-0.0067437919788063,-0.010873066261411]],[[-0.031864799559116,-0.076407931745052,-0.05885262414813],[-0.022492414340377,0.023447021842003,-0.059853255748749],[0.11863862723112,0.013704978860915,-0.07226425409317]],[[-0.020857142284513,-0.014518485404551,-0.019747335463762],[-0.043866485357285,-0.066220715641975,-0.0059806713834405],[0.025344191119075,0.086540378630161,0.048271227627993]],[[-0.0034384678583592,-0.054895028471947,0.031305942684412],[0.010804399847984,0.014316012151539,-0.042935289442539],[0.018562689423561,0.034380842000246,-0.10477221757174]],[[-0.011758898384869,0.00421222159639,-0.051693987101316],[0.042062353342772,0.052146948873997,0.01407088059932],[0.0031756544485688,-0.031719893217087,0.030798010528088]],[[-0.010813661850989,0.0095739727839828,0.013629836030304],[-0.0044013583101332,-0.02653213776648,0.028004873543978],[-0.087520956993103,-0.031363759189844,0.030380997806787]],[[-0.02450936473906,-0.067889854311943,-0.012330253608525],[-0.011610805056989,0.13122268021107,-0.0039098272100091],[0.012391266413033,0.037668313831091,-0.0097115952521563]],[[-0.089370176196098,-0.032542955130339,-0.0065277409739792],[0.0015180471818894,-0.029752099886537,-0.014628562144935],[-0.034036889672279,0.06005983799696,0.029155686497688]],[[0.076102584600449,0.011120732873678,-0.0089025860652328],[-0.031106630340219,0.03847448527813,-0.06886238604784],[-0.0030669725965708,0.02961602434516,0.086122877895832]],[[-0.044565122574568,0.07773818820715,0.019370347261429],[-0.017322942614555,-0.042800843715668,-0.024404957890511],[-0.015516032464802,0.0062101967632771,0.058828126639128]],[[0.039104141294956,0.08619399368763,0.076013244688511],[-0.094439275562763,0.023106010630727,0.011653964407742],[-0.0084082316607237,0.0033735940232873,-0.056410659104586]],[[-0.091426454484463,0.059616237878799,-0.024717286229134],[-0.0034853408578783,-0.038645926862955,0.012121766805649],[-0.00127628876362,0.084293253719807,0.030808828771114]],[[-0.0185422077775,0.0011542147258297,-0.010258602909744],[0.072786681354046,-0.11779808998108,-0.060507528483868],[0.051525983959436,0.015846725553274,0.0080474568530917]],[[-0.046645376831293,0.018859894946218,0.01234192866832],[-0.013095014728606,-0.044386960566044,-0.02515640296042],[0.11892628669739,-0.044498480856419,0.05540182441473]],[[-0.0059901382774115,-0.017755381762981,-0.059302102774382],[-0.037278097122908,-0.0097190709784627,0.024955157190561],[-0.0039036220405251,-0.036325313150883,-0.010849173180759]],[[-0.054812625050545,0.019753430038691,-0.027336049824953],[0.0078030843287706,0.04852232336998,-0.10497877001762],[0.031666949391365,0.0078582670539618,-0.012356574647129]],[[-0.019480872899294,0.0012827022001147,-0.053585421293974],[-0.066281162202358,0.017680888995528,0.04373674467206],[0.0025727637112141,0.046569798141718,0.018858266994357]],[[0.0039680483750999,-0.023161688819528,-0.012053689919412],[0.07372435182333,-0.012662368826568,-0.00078752171248198],[0.024254923686385,0.022851869463921,0.028661986812949]],[[0.045594524592161,0.018634829670191,0.024561276659369],[0.040922936052084,-0.041815914213657,0.050909049808979],[-0.015301279723644,0.022974604740739,0.0041696899570525]],[[-0.066227778792381,0.02753802575171,-0.0088323373347521],[0.028759693726897,0.035463392734528,0.030461329966784],[-0.012774074450135,-0.0033820590469986,0.0081637836992741]],[[-0.007262110710144,0.065128996968269,-0.0098703457042575],[-0.025639148429036,-0.092186234891415,0.0069286990910769],[0.015664018690586,-0.11106223613024,0.026174044236541]],[[-0.017482902854681,-0.021577823907137,0.033165261149406],[0.011579303070903,0.025886544957757,-0.0091952299699187],[0.031589444726706,0.038741379976273,0.0018975363345817]],[[-0.01850152015686,-0.0068201175890863,0.036258164793253],[-0.049187552183867,-0.025325389578938,-0.057147160172462],[-0.031008800491691,-0.041999761015177,0.040882904082537]],[[-0.061372812837362,-0.081910081207752,-0.034823451191187],[0.0012088418006897,-0.019163431599736,0.0068075200542808],[0.062415227293968,-0.11463429033756,0.057126991450787]],[[-0.060259729623795,0.017316935583949,-0.067596040666103],[0.085085541009903,0.022532496601343,-0.038573667407036],[-0.048845864832401,0.0514668636024,-0.028659801930189]],[[-0.0076484084129333,0.0096747670322657,-0.028083795681596],[-0.076243698596954,0.026021892204881,-0.014026252552867],[-0.045975029468536,0.022172834724188,-0.011266378685832]],[[-0.027801856398582,-0.0017953696660697,0.021109990775585],[0.0099784163758159,0.002636295510456,0.037132430821657],[0.016604723408818,0.046302497386932,0.014646537601948]],[[0.0030590333044529,0.043095208704472,-0.0053320755250752],[0.050256330519915,-0.044050358235836,-0.1088894829154],[0.013841491192579,-0.077852658927441,0.038893476128578]],[[-0.067554816603661,-0.015295795165002,-0.023574458435178],[-0.07096654176712,0.015906695276499,0.071794144809246],[0.060378428548574,0.043622959405184,-0.039912611246109]],[[-0.009548032656312,-0.037351135164499,0.034664295613766],[-0.015406548976898,-0.0057367091067135,-0.021721467375755],[-0.051577411592007,-0.0062028826214373,-0.039376236498356]],[[0.035631380975246,-0.031260952353477,0.014870353974402],[-0.0016771337250248,0.045687183737755,-0.051201798021793],[-0.036493390798569,-0.054993066936731,0.011423503980041]],[[0.047365918755531,-0.081040605902672,-0.020699540153146],[-0.057864282280207,-0.031553201377392,-0.028080662712455],[-0.0023414550814778,0.036363545805216,-0.028521807864308]],[[-0.070066340267658,0.016246844083071,0.080989547073841],[-0.03178682923317,-0.043809324502945,0.046643823385239],[-0.061817497014999,0.018201494589448,0.0025971760042012]],[[-0.023937156423926,0.0094107026234269,-0.018717968836427],[-0.0018643712392077,0.051012739539146,-0.031386595219374],[-0.019083937630057,-0.06861823797226,0.097557418048382]],[[0.030215615406632,-0.06804583221674,0.0032163979485631],[0.10230495780706,-0.10349365323782,-0.019222332164645],[-0.080213837325573,0.030351040884852,-0.024073163047433]],[[-0.061427257955074,0.018650533631444,0.038090761750937],[0.0065754824317992,0.046978142112494,0.069518908858299],[0.031634368002415,0.025222698226571,-0.0049376087263227]],[[0.075565204024315,0.012936469167471,0.034805662930012],[-0.037119645625353,0.072480194270611,0.043436866253614],[0.085682168602943,0.047723196446896,-0.063798978924751]],[[0.010245637968183,0.07534222304821,-0.0025183497928083],[0.044476199895144,-0.0099352039396763,0.0026363218203187],[0.0071674659848213,-0.059758726507425,0.0082253077998757]],[[-0.030856179073453,0.084799274802208,0.025718754157424],[0.023899609223008,0.038157433271408,-0.022854680195451],[-0.019288904964924,-0.082159347832203,-0.072536632418633]],[[-0.011572625488043,-0.03872349485755,0.032945990562439],[-0.077442869544029,-0.041060511022806,0.0097222169861197],[0.0026272549293935,-0.02794436737895,0.047627024352551]],[[-0.01475540548563,-0.013325987383723,-0.051344428211451],[-0.04852208122611,0.017573118209839,0.030348373576999],[0.05661927908659,-0.025041749700904,0.021090583875775]],[[-0.029069872573018,0.005169206764549,-0.0081829531118274],[-0.015085084363818,-0.04999890550971,-0.0012546259677038],[-0.038398519158363,-0.0066363206133246,0.016330575570464]],[[0.034199878573418,0.021795798093081,-0.0204569529742],[-0.059448882937431,-0.021068308502436,-0.054299242794514],[0.03593485802412,-0.042082145810127,-0.0077500427141786]],[[-0.001672730431892,0.015657817944884,-0.072586059570312],[-0.10541825741529,0.04078434407711,-0.0010457448661327],[0.046904843300581,-0.010797940194607,-0.013727655634284]],[[0.017142811790109,0.004108237568289,0.013731319457293],[0.02181014791131,-0.089411146938801,0.034591499716043],[0.045243378728628,-0.059724811464548,-0.029378402978182]],[[-0.088361836969852,-0.025536525994539,-0.025916157290339],[0.038558304309845,-0.12460567802191,0.03003459982574],[0.067582607269287,0.070017725229263,-0.040611527860165]],[[-0.011958694085479,-0.08277802914381,0.016239942982793],[-0.026493178680539,0.029889160767198,0.01988779194653],[0.030601792037487,0.023022633045912,0.01871420070529]],[[-0.00829450879246,0.028769930824637,0.0093070538714528],[0.042809184640646,-0.085893355309963,0.028978496789932],[-0.0370211340487,-0.02067044377327,-0.041537649929523]],[[0.001292965374887,-0.036565601825714,0.0021692914888263],[-0.079116560518742,0.061316788196564,-0.0099081257358193],[0.01208392996341,-0.031894478946924,0.029464956372976]],[[-0.045252896845341,0.043853677809238,-0.017302334308624],[-0.050788719207048,-0.03420041128993,0.025852618739009],[-0.011271093972027,-0.078786090016365,0.021367544308305]],[[-0.052012950181961,0.017402982339263,-0.015057541429996],[-0.066098421812057,-0.03790332749486,0.0095400158315897],[-0.025538805872202,0.0033396563958377,0.029329121112823]],[[0.034716591238976,0.0536143258214,-0.014298405498266],[0.039483364671469,-0.020414005964994,0.028287248685956],[0.0093563627451658,-0.019964449107647,-0.02164245955646]],[[0.09353893995285,-0.086577564477921,0.0040242141112685],[-0.0039925058372319,-0.013053219765425,0.036751423031092],[0.067793399095535,-0.04943124204874,-0.0059194159694016]],[[-0.043508529663086,-0.039333514869213,-0.016649000346661],[0.019944287836552,0.032876532524824,0.087999403476715],[0.030604287981987,-0.086453713476658,-0.060757469385862]],[[0.04859658703208,0.0019014780409634,-0.060777489095926],[-0.049311846494675,-0.063973240554333,0.056960184127092],[-0.013729605823755,0.0011619809083641,0.025953015312552]],[[-0.018432611599565,-0.025469198822975,-0.0087248152121902],[0.016527259722352,-0.059229984879494,0.02190868370235],[-0.041729308664799,0.055650122463703,0.043851427733898]],[[-0.076938256621361,0.042175900191069,0.015231993049383],[-0.017104782164097,-0.003817624412477,0.017667431384325],[-0.064205855131149,0.076195374131203,-0.029156731441617]],[[-0.071206539869308,0.0033826760482043,0.023497298359871],[0.037681728601456,-0.014182318001986,-0.070854529738426],[0.037417437881231,0.0098059894517064,-0.0019170857267454]],[[0.010349387302995,0.06423332542181,0.082588747143745],[0.028594115749002,-0.01526540145278,-0.060858145356178],[-0.070905111730099,0.0035293153487146,0.0062774550169706]],[[-0.053387805819511,0.018989983946085,-0.022392766550183],[-0.0013461186317727,0.080707289278507,-0.091031089425087],[-0.034915365278721,0.04791683703661,-0.014475488103926]],[[-0.033872306346893,0.034206882119179,-0.02277690730989],[-0.072814129292965,-0.098754584789276,-0.032112155109644],[0.1119097545743,-0.0082616163417697,0.060257010161877]],[[0.003294030437246,0.0026722848415375,0.0095465984195471],[0.021122999489307,0.0035160800907761,0.004647824447602],[0.074882984161377,-0.034134805202484,-0.0021294075995684]],[[0.05839766934514,0.0097407177090645,-0.058606404811144],[0.077783964574337,0.04980082064867,0.062821581959724],[-0.064321249723434,0.011302131228149,-0.0077893091365695]],[[-0.029987026005983,0.013890512287617,-0.018557351082563],[-0.02918285317719,0.043335106223822,0.027750998735428],[-0.05878433957696,0.017540553584695,0.0072688646614552]],[[0.048282612115145,-0.047350764274597,0.056636292487383],[0.020410584285855,-0.060923203825951,-0.0026871031150222],[-0.022590525448322,-0.04144936054945,-0.011363733559847]],[[0.042897503823042,0.0069237682037055,0.028945881873369],[-0.088695973157883,0.063306123018265,0.0073161222971976],[0.079397618770599,0.026488216593862,-0.029501304030418]]],[[[-0.0042007719166577,0.098751455545425,-0.051750782877207],[-0.066344022750854,-0.012258687056601,0.017041189596057],[-0.022502947598696,0.019244100898504,-0.090599156916142]],[[0.0072463969700038,-0.064774811267853,0.13750745356083],[0.054741319268942,0.060710337013006,0.0075608175247908],[-0.078256994485855,-0.04036957025528,0.040591958910227]],[[0.025098852813244,0.015799567103386,0.040959633886814],[0.02791341766715,0.043220516294241,-0.0082232309505343],[-0.065707921981812,0.11222479492426,0.0085683884099126]],[[0.099059328436852,-0.075793772935867,-0.07510207593441],[0.041430033743382,-0.028186662122607,-0.015125614590943],[0.046259306371212,0.012638218700886,0.0065559041686356]],[[-0.065537385642529,0.013607541099191,-0.024963919073343],[-0.012043131515384,-0.037590149790049,0.106878682971],[0.01555735245347,0.0036891240160912,0.013358233496547]],[[0.054810591042042,-0.012057855725288,-0.0058791129849851],[0.053679205477238,-0.040975973010063,0.022288214415312],[-0.050146441906691,0.027803471311927,-0.0055955382995307]],[[-0.071615234017372,-0.030839620158076,-0.037538565695286],[0.050231397151947,-0.048486422747374,0.03577271476388],[0.05912659689784,-0.043421939015388,0.001911781495437]],[[-0.064616993069649,0.061211265623569,0.041479714214802],[-0.0085820639505982,-0.029436366632581,-0.063825167715549],[0.053080894052982,-0.026330109685659,-0.011055069044232]],[[0.013097588904202,0.073360808193684,0.016125775873661],[0.0063745817169547,-0.046911615878344,-0.00037216188502498],[0.0041295262053609,-0.0049867648631334,0.056040447205305]],[[0.051183711737394,-0.0002314161247341,0.066620245575905],[0.17686052620411,-0.017387129366398,0.1704383790493],[0.15081153810024,-0.077088467776775,0.13948130607605]],[[0.037889592349529,0.0024236161261797,-0.010923714376986],[-0.062941111624241,-0.043417245149612,-0.10527011752129],[0.033573288470507,-0.046910382807255,0.046996921300888]],[[-0.0086651034653187,0.027855908498168,-0.0055068894289434],[0.079914957284927,-0.0084552075713873,0.087233319878578],[0.033631831407547,0.029807440936565,0.084280796349049]],[[-0.056724682450294,-0.039287600666285,0.029904782772064],[-0.020315187051892,0.094494692981243,-0.14116494357586],[-0.027246296405792,0.032907661050558,0.0073527987115085]],[[0.066766910254955,0.021003529429436,-0.01667339913547],[-0.030778804793954,0.05326883494854,-0.042386241257191],[0.022559577599168,-0.035685058683157,0.011144582182169]],[[0.034041814506054,0.047507390379906,0.14748555421829],[-0.01172108668834,-0.030916873365641,0.046945258975029],[-0.025962453335524,0.13442194461823,0.056239746510983]],[[0.050154585391283,0.02566902898252,0.038736447691917],[-0.032600227743387,-0.007786727976054,0.0045920261181891],[0.00024362094700336,0.096881441771984,-0.13110460340977]],[[0.0048063490539789,0.01146771851927,-0.0079398490488529],[0.12605951726437,-0.066763788461685,0.082432307302952],[-0.035698000341654,-0.026057340204716,0.15421803295612]],[[0.0061489162035286,0.0078016156330705,-0.03307244554162],[-0.0032052309252322,-0.017437996342778,-0.06690888851881],[-0.016797710210085,0.0034838174469769,-0.027816534042358]],[[0.0018749969312921,-0.054794564843178,-0.089568309485912],[-0.068074740469456,0.029881032183766,-0.014112386852503],[0.038896717131138,0.016820009797812,-0.04121969640255]],[[0.014774953015149,0.03161845356226,-0.040422663092613],[-0.038645762950182,0.031050842255354,0.018932962790132],[-0.0037661707028747,-0.023244878277183,0.081152677536011]],[[0.12866999208927,0.063753247261047,0.00018831895431504],[-0.024777388200164,-0.058002848178148,0.045741267502308],[-0.080701164901257,0.031095465645194,-0.0090459948405623]],[[0.089807763695717,0.026684556156397,0.085531130433083],[-0.01189623773098,0.12661597132683,0.047026984393597],[0.054742451757193,0.028572065755725,0.048036877065897]],[[0.068301290273666,0.041928507387638,0.04857711493969],[-0.00061996339354664,-0.014056405052543,0.010564314201474],[-0.034558359533548,0.081735454499722,0.005062963347882]],[[-0.0052399928681552,0.050692766904831,0.028824025765061],[0.017974056303501,0.0070285177789629,0.041824512183666],[0.21766749024391,0.10476396977901,0.067384965717793]],[[-0.045758552849293,-0.026424350216985,0.030497385188937],[0.070909254252911,0.065703347325325,0.038590777665377],[0.035007633268833,0.037742495536804,0.11930214613676]],[[0.0077947331592441,-0.056134756654501,-0.027358939871192],[0.058654483407736,-0.11977753043175,0.050936881452799],[-0.13013482093811,-0.18987876176834,0.05426999181509]],[[-0.050323724746704,-0.084435656666756,0.027571249753237],[-0.01340399403125,-0.094296388328075,-0.036504160612822],[0.019572705030441,0.071051187813282,0.090849958360195]],[[0.04194863140583,0.0077670640312135,0.08356873691082],[0.028840824961662,-0.0042347311973572,-0.030032090842724],[0.010300093330443,-0.054534301161766,0.0070092319510877]],[[-0.033510189503431,-0.13190619647503,0.027448421344161],[0.0080228680744767,0.050452142953873,0.024848433211446],[0.058229696005583,0.078600071370602,0.029747264459729]],[[0.04529831558466,0.044432885944843,0.046985913068056],[0.031004261225462,-0.010970695875585,-0.0069187199696898],[0.098054848611355,0.031143460422754,-0.053687360137701]],[[-0.072844505310059,-0.035536214709282,0.029550252482295],[0.026048440486193,0.062455520033836,0.0055584870278835],[0.009326159954071,0.051805339753628,0.085502803325653]],[[-0.060752734541893,0.064784929156303,-0.005006670486182],[-0.13501092791557,-0.0021976586431265,-0.011595756746829],[-0.056834165006876,-0.029445702210069,-0.06138339266181]],[[-0.01283311471343,-0.056095268577337,0.0021740007214248],[0.0099846040830016,0.012470280751586,0.034754175692797],[0.029209710657597,0.038710344582796,0.05485375598073]],[[-0.041096832603216,-0.06466469168663,-0.0019752997905016],[0.040707726031542,0.02083795517683,0.074832938611507],[-0.053946759551764,0.078323714435101,0.023270778357983]],[[-0.0039980472065508,-0.028554279357195,-0.0068108569830656],[0.071567632257938,-0.02272248454392,-0.0093540977686644],[0.061172042042017,0.0074741858989,-0.015833100304008]],[[-0.028381725773215,-0.016832385212183,-0.0020022538956255],[-0.018532147631049,0.012884480878711,0.032033365219831],[-0.045141063630581,-0.049327455461025,0.015179618261755]],[[-0.097783677279949,0.067629635334015,-0.026562379673123],[-0.11242663115263,-0.0096784057095647,-0.082085639238358],[-0.13169428706169,0.12310896813869,-0.044062580913305]],[[-0.022437751293182,0.016705717891455,-0.01449718978256],[0.020893093198538,-0.04494796320796,-0.039560183882713],[0.084626786410809,0.12779334187508,-0.0040602888911963]],[[0.033961459994316,-0.0049564433284104,-0.076622568070889],[-0.048198692500591,-0.0037444951012731,0.017459440976381],[-0.045569878071547,0.018062300980091,-0.096792407333851]],[[0.006200997158885,0.090914316475391,-0.0059454441070557],[0.035502124577761,0.00083802081644535,-0.045692972838879],[-0.00032330278190784,-0.078898385167122,0.06149747222662]],[[0.016600659117103,0.034190785139799,0.01076630782336],[0.011805595830083,-0.075238607823849,-0.011768731288612],[-0.01805280521512,-0.10450504720211,0.093894571065903]],[[0.0058532245457172,-0.028536222875118,0.034856930375099],[0.027462976053357,0.014514082111418,0.020859535783529],[-0.0060054152272642,-0.0062826983630657,0.045196913182735]],[[0.063604697585106,-0.017665976658463,-0.033984895795584],[0.032960049808025,-0.068774908781052,0.066899053752422],[0.027354290708899,-0.045908913016319,0.0042363200336695]],[[0.080348253250122,-0.040206588804722,-0.0051900134421885],[0.035889178514481,-0.019708562642336,0.044411446899176],[0.090515322983265,-0.040198065340519,-0.086975991725922]],[[0.071258001029491,-0.022042641416192,-0.025840071961284],[-0.072166532278061,-0.020609263330698,0.016314640641212],[0.034712877124548,0.021361239254475,0.01234055031091]],[[0.043884675949812,0.071170821785927,0.0022267072927207],[0.080815933644772,0.043907288461924,-0.09024603664875],[0.040203463286161,-0.0081457868218422,-0.028918750584126]],[[-0.11356524378061,-0.01192370429635,0.0026567904278636],[-0.027308678254485,-0.03678909316659,-0.0021032630465925],[-0.0025549207348377,-0.031146973371506,0.029887463897467]],[[0.0032785949297249,-0.021650245413184,0.079211123287678],[-0.00541922589764,0.09902711212635,-0.010657478123903],[-0.018227990716696,0.022333165630698,0.0048931566998363]],[[0.014941984787583,0.05809748545289,-4.0276037907461e-05],[0.12436221539974,0.04715371876955,0.085465937852859],[0.04120571538806,-0.064082585275173,0.081883177161217]],[[0.044608246535063,0.039996139705181,-0.0060896212235093],[0.019807117059827,-0.026785871013999,-0.049513593316078],[-0.034943748265505,0.006851838901639,0.059348821640015]],[[0.023905133828521,0.014210597611964,0.04649967327714],[-0.02148194424808,-0.064746335148811,0.0068179173395038],[-0.064247317612171,-0.0036325277760625,0.0084764556959271]],[[0.043976034969091,-0.015423609875143,-0.055551134049892],[0.071366772055626,-0.006038561463356,0.081685416400433],[-0.024109851568937,0.030966000631452,0.085818514227867]],[[0.11334794014692,0.0059966114349663,0.010717099532485],[0.056938011199236,-0.046670645475388,0.015014724805951],[0.070918641984463,-0.027235252782702,-0.0035132789053023]],[[-0.040507774800062,-0.023689912632108,-0.057756848633289],[-0.029489016160369,-0.026551144197583,0.069478586316109],[-0.053268652409315,0.0036386076826602,-0.053945507854223]],[[0.016935389488935,-0.097972214221954,0.069327734410763],[0.056811239570379,-0.010275361128151,-0.034773170948029],[0.025277120992541,0.087547227740288,-0.072682924568653]],[[0.030103834345937,0.029520895332098,-0.019326236099005],[-0.079041749238968,0.06008106097579,-0.034343119710684],[0.016798984259367,0.017224416136742,0.0096171414479613]],[[-0.022917702794075,0.015951437875628,-0.048680819571018],[-0.027625778689981,-0.1527978181839,0.0085758091881871],[-0.04519522562623,-0.037385940551758,0.031939499080181]],[[0.098867408931255,-0.043749570846558,0.0917744114995],[-0.013585194014013,-0.069932073354721,0.038918223232031],[-0.0059776874259114,-0.061850097030401,-0.0462343133986]],[[-0.036257807165384,-0.041644807904959,-0.066490083932877],[0.032971058040857,0.0047635394148529,0.024796245619655],[-0.014190062880516,0.0078187622129917,0.026847410947084]],[[0.039937730878592,0.0065610948950052,-0.016819648444653],[-0.053493604063988,-0.05733485892415,0.0067604039795697],[0.0042041335254908,0.02567988820374,-0.027024554088712]],[[-0.10293104499578,0.033874273300171,0.0027110087685287],[0.077049724757671,-0.0077696610242128,0.024674298241735],[0.099735386669636,0.0046651880256832,0.0023314915597439]],[[-0.0108642578125,-0.093827575445175,-0.018012203276157],[0.025536259636283,-0.042011022567749,0.05000539124012],[0.048520900309086,0.086872927844524,-0.038134913891554]],[[0.019916793331504,-0.065641351044178,-0.034524820744991],[0.12520425021648,-0.045383788645267,0.046787612140179],[-0.079819202423096,-0.045089427381754,0.045930210500956]],[[0.074901379644871,0.10552310943604,0.055343855172396],[-0.033101581037045,-0.097206689417362,-0.0050670127384365],[-0.019326603040099,0.061114728450775,-0.026373567059636]],[[-0.085029795765877,-0.050668820738792,0.13050866127014],[0.19613417983055,-0.046355456113815,-0.029714437201619],[-0.01825575158,0.009913582354784,0.11039517819881]],[[-0.026811616495252,0.0080044949427247,-0.040181014686823],[0.0045505119487643,0.054558526724577,-0.03290593251586],[0.12725672125816,-0.034656789153814,-0.080245718359947]],[[0.024689942598343,0.022871473804116,0.057341977953911],[0.086746074259281,0.036736216396093,0.12174557894468],[0.032724246382713,0.075284905731678,0.069974891841412]],[[0.020489789545536,-0.063813574612141,0.0016168366419151],[0.0019070091657341,-0.029224207624793,-0.042061567306519],[0.058293264359236,-0.030369022861123,0.044012114405632]],[[0.0040647713467479,-0.061935737729073,0.031536411494017],[0.036275338381529,-0.061762139201164,0.0022199973464012],[-0.041812364012003,-0.0062141469679773,-0.02739486657083]],[[0.083817087113857,0.024634763598442,-3.0297091143439e-05],[0.0046723964624107,0.0010807231301442,-0.016528686508536],[0.087431401014328,-0.02940141223371,-0.026805886998773]],[[0.0071679903194308,-0.11538201570511,0.00078428705455735],[-0.091760143637657,0.012143968604505,0.039646357297897],[-0.017543442547321,-0.020007152110338,-0.011524122208357]],[[-0.025642285123467,0.024023409932852,0.086396850645542],[0.085632093250751,-0.020590787753463,-0.039261750876904],[0.084664165973663,0.0026177195832133,0.07828263938427]],[[0.012170470319688,-0.051354631781578,-0.039806913584471],[0.029495738446712,0.080988377332687,0.030699595808983],[-0.038672804832458,0.10581137239933,0.015798162668943]],[[-0.050186429172754,-0.068431027233601,-0.0022071632556617],[0.054616693407297,-0.072333492338657,0.053093433380127],[0.031461775302887,-0.056779984384775,0.059857927262783]],[[-0.076882481575012,-0.048888012766838,-0.11213967204094],[-0.053370229899883,0.012762912549078,0.037991922348738],[0.043040875345469,-0.01219667494297,-0.035330768674612]],[[0.013133126311004,0.046919781714678,-0.074680410325527],[-0.019857697188854,-0.067112505435944,-0.003423742717132],[0.16040904819965,0.0093601336702704,0.065398618578911]],[[0.064338549971581,0.045875422656536,-0.0017896101344377],[0.042101189494133,-0.022063951939344,0.055703587830067],[0.052099671214819,-0.10562705993652,0.027311593294144]],[[-0.0087801469489932,0.046461194753647,-0.0017969278851524],[-0.026689156889915,-0.06703445315361,0.037708710879087],[0.069210402667522,-0.030195444822311,-0.0025723422877491]],[[-0.003359179245308,0.01270987931639,0.10440032184124],[-0.008347611874342,-0.038518495857716,-0.022915590554476],[-0.040739357471466,-0.027444979175925,0.0040078950114548]],[[-0.085067570209503,0.073854103684425,-0.054314568638802],[0.027487279847264,0.0096524711698294,0.011903397738934],[0.039732448756695,-0.088722601532936,-0.0076955440454185]],[[0.010653100907803,0.054616048932076,-0.015549435280263],[-0.0027695207390934,-0.0027435885276645,0.040872234851122],[0.0080717913806438,0.018177619203925,0.021149991080165]],[[-0.014112683013082,-0.012726854532957,-0.0067549427039921],[-0.081810116767883,-0.042474463582039,0.07243837416172],[-0.028218837454915,0.019301379099488,0.046373333781958]],[[-0.031049529090524,-0.034934438765049,-0.011938078328967],[-0.037707593291998,-0.036411192268133,0.056517690420151],[-0.0082673765718937,-0.039214324206114,0.043861355632544]],[[-0.08440700173378,-0.005656820256263,0.03233378008008],[0.031820174306631,0.034666422754526,-0.08383996039629],[0.1511657088995,0.076916165649891,0.10769862681627]],[[0.090909607708454,-0.023207169026136,0.10722485929728],[0.071087673306465,0.034286376088858,-0.012539024464786],[0.024431947618723,-0.080172531306744,-0.015340886078775]],[[0.0044427113607526,0.0037244914565235,0.013256976380944],[-0.085098586976528,0.033271424472332,-0.097641132771969],[0.11704199761152,-0.011395527981222,0.037364598363638]],[[-0.087748609483242,-0.03379400074482,0.025302996858954],[0.017749832943082,0.03681692481041,0.018051594495773],[0.04777279868722,-0.048755884170532,-0.0073480131104589]],[[-0.016818979755044,0.030449211597443,0.038979839533567],[0.01638912782073,0.073166333138943,0.029288221150637],[-0.0022028444800526,-0.0049243723042309,-0.05828720703721]],[[-0.024768797680736,0.021283432841301,0.020397357642651],[0.021708138287067,0.040541592985392,-0.068933382630348],[-0.011337926611304,-0.0043057901784778,0.02778341434896]],[[0.11965814232826,-0.02283826097846,0.098179794847965],[-0.027931399643421,-0.043252535164356,-0.043585244566202],[0.023242343217134,0.012741341255605,-0.0053432118147612]],[[-0.050528567284346,-0.017552433535457,-0.0066732079721987],[-0.023364501073956,-0.098870366811752,0.042942903935909],[-0.073292978107929,0.081196017563343,0.026182921603322]],[[0.068927437067032,-0.021858192980289,-0.075409784913063],[-0.048273116350174,0.018311677500606,0.029652805998921],[-0.041881192475557,-0.076193362474442,0.035436004400253]],[[-0.02423826046288,-0.013103208504617,0.0517623052001],[-0.087383396923542,0.040453612804413,0.024297799915075],[0.049349274486303,0.020233104005456,-0.011487229727209]],[[0.030009746551514,-0.044275801628828,-0.036940447986126],[-0.10994067788124,0.033607576042414,0.042326923459768],[-0.078801423311234,-0.041541993618011,0.093233771622181]],[[0.0074984151870012,0.07226599752903,0.0042552729137242],[-0.014894620515406,0.039073776453733,-0.0085411407053471],[-0.0039982730522752,0.054352980107069,-0.14412231743336]],[[-0.016817511990666,-0.022615732625127,0.027807708829641],[0.0038451279979199,-0.059194188565016,-0.020955756306648],[0.1087232530117,-0.025134611874819,0.088768966495991]],[[-0.084291495382786,-0.035424239933491,-0.037803132086992],[0.081099435687065,0.075705528259277,-0.050280176103115],[0.0041155591607094,-0.036302406340837,0.0025829100050032]],[[0.030772132799029,0.075208149850368,-0.012797117233276],[0.014032401144505,0.075784176588058,0.046606600284576],[0.01786039210856,-0.022410338744521,0.084388166666031]],[[-0.010168175213039,0.11931007355452,0.0032676204573363],[-0.0082089761272073,0.035772513598204,0.0143509125337],[-0.043209087103605,0.055284608155489,-0.034632228314877]],[[0.0049395076930523,-0.054958246648312,0.016663085669279],[0.013795794919133,-0.048660598695278,-0.019453043118119],[0.032706957310438,-0.086833856999874,0.13563330471516]],[[-0.062027141451836,-0.0063990433700383,-0.003527786815539],[-0.094180524349213,-0.070026323199272,-0.01208012830466],[-0.11202709376812,0.048541154712439,-0.034267194569111]],[[0.0022896283771843,-0.061470229178667,0.055681560188532],[-0.046651154756546,0.033997744321823,0.091645814478397],[-0.061516493558884,-0.086353778839111,-0.033583171665668]],[[-0.010017152875662,-0.025731286033988,-0.034546550363302],[-0.028060788288713,-0.093971006572247,0.0066477595828474],[-0.031505521386862,0.037162035703659,0.1091173812747]],[[-0.026858845725656,-0.06822295486927,-0.027152853086591],[0.055607996881008,-0.063264362514019,0.059224687516689],[-0.012563616968691,-0.044788613915443,-0.015790602192283]],[[0.14125780761242,-0.040959928184748,0.048964854329824],[-0.0016184493433684,-0.018866954371333,0.067708216607571],[0.023758048191667,0.015607859939337,0.016353894025087]],[[0.0087977619841695,0.0060158534906805,0.02335280738771],[-0.097021691501141,5.7192344684154e-05,0.041718445718288],[-0.018000641837716,0.02568731829524,-0.018675278872252]],[[-0.099059164524078,-0.018476214259863,0.042822141200304],[0.0358951613307,-0.021741485223174,0.02597907371819],[-0.062078531831503,0.053075607866049,-0.10038335621357]],[[-0.12286040186882,-0.01421183347702,0.046964406967163],[-0.032338488847017,-0.073537647724152,0.067657351493835],[-0.073298633098602,0.0099159898236394,-0.036546558141708]],[[-0.0058424533344805,0.033961858600378,-0.036775480955839],[0.0055990321561694,0.11799604445696,0.034183297306299],[-0.079265303909779,-0.050123162567616,-0.059824552386999]],[[-0.032202862203121,0.071860201656818,-0.0056310100480914],[0.018863832578063,-0.011397909373045,-0.10625328123569],[0.026392128318548,-0.0015376097289845,-0.04485235363245]],[[-0.054143354296684,0.017471624538302,-0.052047044038773],[0.092504508793354,0.022672906517982,-0.055889341980219],[-0.0041404641233385,0.041553143411875,-0.012581628747284]],[[0.046519234776497,0.068878188729286,-0.047218538820744],[-0.0072679491713643,-0.077844463288784,0.0019808853976429],[0.018156008794904,0.0005617206916213,0.023350214585662]],[[0.015831971541047,-0.0010341942543164,0.024356408044696],[0.0020384991075844,0.017375558614731,-0.021499574184418],[0.074996881186962,-0.10475446283817,-0.015214898623526]],[[-0.0034869604278356,-0.016327757388353,0.070893011987209],[-0.032270260155201,0.044216394424438,0.013377362862229],[0.023632150143385,-0.046723466366529,0.038913935422897]],[[-0.027287520468235,0.010597578249872,-0.0040497775189579],[-0.019731333479285,0.023233560845256,0.024627488106489],[-0.030831590294838,0.10517361015081,-0.022193377837539]],[[0.066824279725552,-0.033736191689968,-0.00085374357877299],[-0.021169282495975,-0.042949132621288,-0.034064389765263],[-0.029291532933712,0.023590827360749,0.064440503716469]],[[0.02752080745995,0.0091725271195173,-0.01190516538918],[0.011483118869364,0.057616997510195,0.023140212520957],[-0.00017870843294077,0.049864865839481,0.032997358590364]],[[0.13764229416847,0.076620794832706,-0.030550977215171],[-0.025988342240453,0.052571803331375,0.083246193826199],[0.038582991808653,0.012760985642672,-0.015359507873654]],[[-0.016250342130661,0.0010275036329404,-0.030568841844797],[-0.0039863553829491,-0.0011298552853987,0.017735658213496],[-0.0018518106080592,-0.06708750128746,0.049495700746775]],[[0.020366292446852,-0.15300439298153,0.032119154930115],[0.11062397807837,-0.017546044662595,-0.03344314917922],[-0.0051982845179737,-0.056437395513058,-0.010968873277307]],[[0.066021651029587,-0.0057690166868269,0.031129514798522],[0.076505213975906,0.048311069607735,0.11958959698677],[-0.021959528326988,-0.037858333438635,0.039466887712479]],[[-0.007552289403975,0.061174761503935,0.10138726979494],[0.044679753482342,0.042582843452692,-0.018855137750506],[0.070015430450439,0.02538719214499,-0.0069175749085844]],[[0.035928834229708,-0.0028779173735529,-0.017040058970451],[-0.057620577514172,0.020324803888798,0.071491457521915],[-0.046740118414164,-0.077942356467247,0.10696962475777]],[[-0.023977663367987,0.024381266906857,0.0098014418035746],[-0.098699003458023,-0.06367389112711,-0.12825599312782],[-0.12772341072559,0.011907055974007,-0.048185937106609]],[[-0.043881766498089,-0.012788363732398,-0.05250546336174],[0.0076327277347445,0.010085821151733,0.031549159437418],[-0.020249396562576,0.013572631403804,0.059100579470396]],[[0.028976624831557,0.085428699851036,0.042178709059954],[-0.016450004652143,0.012365995906293,-0.062523670494556],[-0.031027097254992,-0.10342475771904,-0.074922010302544]],[[0.087890394032001,-0.01520340424031,-0.012953844852746],[-0.043080624192953,0.055574793368578,0.080652639269829],[0.067279919981956,0.054234128445387,0.027347054332495]],[[-0.013494207523763,0.034913256764412,-0.070463962852955],[-0.063269302248955,-0.0082045206800103,-0.094717673957348],[-0.067316815257072,0.03360503911972,-0.032790191471577]]],[[[0.010028187185526,0.079746589064598,-0.054126854985952],[-0.032270140945911,-0.091583840548992,0.070979103446007],[0.011273561045527,-0.036386720836163,-0.026900073513389]],[[0.024276116862893,-0.067928731441498,0.058309312909842],[-0.05691359937191,-0.022571410983801,-0.021286267787218],[0.011271815747023,0.043964806944132,-0.028506750240922]],[[-0.069249153137207,0.050052005797625,0.036001484841108],[0.021861962974072,0.060378223657608,-0.11045566946268],[-0.010397034697235,0.018230928108096,0.0019397502765059]],[[0.0025020530447364,-0.012079730629921,0.080918878316879],[0.097848951816559,0.095400966703892,0.044178172945976],[-0.0032266152556986,0.027277586981654,0.056866899132729]],[[-0.013321650214493,-0.032001290470362,-0.014463397674263],[0.13482956588268,-0.077358581125736,0.088445104658604],[0.095214910805225,-0.053678404539824,-0.02826052904129]],[[-0.019728019833565,0.00063284760108218,0.095411457121372],[0.057653732597828,-0.0061968513764441,-0.047231625765562],[-0.0051311529241502,0.070533320307732,-0.02612067386508]],[[-0.066354066133499,-0.022600837051868,-0.0019409158267081],[0.01387139968574,-0.096935413777828,0.0018364392453805],[0.040190495550632,-0.05295380577445,0.0077691348269582]],[[-0.026145614683628,0.017024982720613,-0.048735521733761],[0.070951133966446,0.061591491103172,0.0041967863216996],[-0.067171782255173,0.044825721532106,0.044340580701828]],[[-0.035882275551558,0.022933792322874,-0.15448074042797],[0.016902804374695,-0.034873243421316,-0.0061755897477269],[-0.07428764551878,0.077073775231838,-0.049417588859797]],[[0.12620145082474,-0.083148673176765,0.10927765071392],[0.2549761235714,0.077426001429558,-0.00016928803233895],[-0.060084234923124,0.052769169211388,0.11845502257347]],[[-0.032440766692162,-0.0043996176682413,0.091931536793709],[-0.0012583198258653,-0.030577542260289,0.05972620472312],[0.025090338662267,-0.012434250675142,0.024407606571913]],[[0.032575305551291,0.051698323339224,-0.041363541036844],[0.010460303165019,-0.068897858262062,0.0073231812566519],[0.029710976406932,0.065104439854622,0.06507982313633]],[[0.11785251647234,0.045456692576408,-0.025530131533742],[0.045264258980751,-0.055263038724661,0.15311811864376],[0.0031202374957502,0.030778413638473,-0.03450296446681]],[[0.021013576537371,0.0065918825566769,0.021859232336283],[0.01642582565546,0.02330120652914,-0.015969986096025],[-0.11765857040882,0.03696109354496,0.10418062657118]],[[-0.039931774139404,0.15107588469982,0.12734423577785],[0.22971206903458,-0.021682977676392,0.18893563747406],[0.19758419692516,0.094479352235794,0.0071635874919593]],[[0.0099256560206413,0.023819031193852,0.034048099070787],[0.0053870202973485,-0.068090535700321,-0.015101249329746],[0.07963302731514,0.01174518559128,-0.089776441454887]],[[0.0063166599720716,-0.0046253819018602,0.052109003067017],[-0.022412544116378,0.03161558508873,0.070470854640007],[-0.074920743703842,0.13325060904026,0.10279111564159]],[[0.1139727756381,0.036175325512886,-0.098283089697361],[0.006187045481056,-0.032589554786682,0.045420844107866],[-0.00771010434255,-0.075696744024754,-0.034387763589621]],[[0.073767349123955,0.0011071944609284,0.026526488363743],[-0.14318765699863,-0.016097389161587,0.055041894316673],[0.043605145066977,0.011923772282898,0.079803176224232]],[[-0.010004528798163,0.047425664961338,0.067801408469677],[0.086869187653065,0.0063217054121196,-0.046466428786516],[0.00097896275110543,0.031105786561966,0.0015125130303204]],[[-0.042820811271667,-0.060946382582188,0.057049360126257],[0.024812256917357,-0.009251487441361,-0.053627297282219],[-0.016027616336942,0.038634121417999,0.035946656018496]],[[0.090412020683289,0.058097336441278,0.063810750842094],[0.059750694781542,-0.022320380434394,0.0663782954216],[0.0469058342278,0.024911887943745,0.12616428732872]],[[0.015091736800969,-0.064079329371452,-0.0006133031565696],[0.0052396920509636,-0.11256646364927,0.046097792685032],[-0.052622884511948,0.088942959904671,-0.1000589877367]],[[0.0088086407631636,-0.0041071455925703,-0.0017290764953941],[0.097404792904854,0.0018344817217439,0.075781792402267],[0.052747055888176,-0.00513058854267,0.06716188788414]],[[0.10308374464512,0.075775183737278,-0.097304917871952],[-0.02250119112432,0.045348584651947,0.015873411670327],[-0.001491402159445,-0.04561684653163,0.053669933229685]],[[-0.022086828947067,0.046081718057394,0.016617130488157],[-0.092801563441753,0.0085469093173742,0.021793782711029],[-0.052671413868666,-0.011183543130755,0.092122264206409]],[[-0.061700914055109,-0.034426145255566,-0.034569673240185],[-0.037763264030218,0.02769985422492,0.030111402273178],[0.054964009672403,0.089586056768894,0.011582555249333]],[[0.096551895141602,0.058513529598713,0.013373637571931],[-0.066763110458851,-0.060449101030827,0.060904372483492],[-0.07560658454895,-0.044462282210588,0.023597991093993]],[[0.012269051745534,0.058733217418194,-0.0013316181721166],[0.041988652199507,0.036109894514084,0.0091466438025236],[0.076432429254055,-0.1166894286871,-0.0025605105329305]],[[-0.048049066215754,-0.059368528425694,0.061369106173515],[-0.0013424190692604,0.096312239766121,-0.022302804514766],[-0.029899729415774,0.080193102359772,-0.02930766902864]],[[-0.022105813026428,-0.032591331750154,0.046760126948357],[-0.066942445933819,0.079436928033829,0.041490726172924],[-0.028718341141939,-0.018007837235928,0.059079334139824]],[[0.008060771971941,-0.067956134676933,0.03674241527915],[0.0067248377017677,-0.012751615606248,-0.045368786901236],[-0.027135385200381,0.095279678702354,0.10062870383263]],[[-0.0090261213481426,-0.029070667922497,0.081165432929993],[0.063789777457714,0.0085642673075199,0.0304971113801],[-0.063113406300545,-0.018873376771808,-0.046771109104156]],[[-0.058518040925264,-0.039020147174597,0.096366554498672],[0.033556692302227,-0.0097707817330956,0.083488665521145],[-0.010055578313768,0.052550055086613,0.11363982409239]],[[-0.040233418345451,-0.057663656771183,0.026760317385197],[0.0061401906423271,-0.058132022619247,0.084497503936291],[0.060692451894283,0.069356508553028,0.16429421305656]],[[0.12780478596687,0.022424023598433,0.068617336452007],[0.010547826066613,-0.001945374533534,-0.030098225921392],[0.050638344138861,-0.025862440466881,0.034789822995663]],[[0.038233146071434,0.024418979883194,-0.014383281581104],[-0.076143182814121,-0.0059202001430094,-0.074954196810722],[-0.030929220840335,-0.050208292901516,-0.033966094255447]],[[0.058374494314194,-0.037960696965456,0.069762699306011],[-0.04736764729023,0.038275718688965,-0.012342777103186],[0.039048723876476,0.032062519341707,0.082596451044083]],[[0.067165270447731,0.064719140529633,-0.0053360951133072],[0.038496762514114,0.019724963232875,0.09719717502594],[0.00092539796605706,-0.021523423492908,-0.0078165959566832]],[[0.0044764219783247,-0.044989813119173,0.086546763777733],[0.053533524274826,-0.02121439576149,0.031186170876026],[0.072016268968582,0.0021841272246093,0.02126949839294]],[[0.012008417397738,0.080732509493828,0.056599598377943],[0.042462598532438,-0.06309512257576,0.059919957071543],[-0.092955127358437,0.089507453143597,0.034627553075552]],[[0.0023879285436124,-0.078162513673306,0.019192442297935],[0.0380834415555,-0.052500709891319,0.052830744534731],[-0.1145266443491,0.022134641185403,-0.075329817831516]],[[0.0052486285567284,-0.055363081395626,-0.0053516034968197],[0.01458853110671,-0.047120418399572,-0.013838577084243],[-0.089051820337772,-0.0069248876534402,-0.0023266344796866]],[[-0.042929254472256,-0.0051284735091031,0.014565019868314],[0.042109437286854,0.014732329174876,0.05585853010416],[0.030132237821817,-0.033140759915113,0.083415046334267]],[[0.018851207569242,-0.13909895718098,0.014027847908437],[0.1028283983469,0.041945993900299,0.035234596580267],[-0.042447410523891,0.063375532627106,0.027114292606711]],[[0.020656883716583,0.0091121885925531,0.05650170892477],[0.082181632518768,0.11758071929216,-0.057906437665224],[0.01034804712981,0.05377583578229,0.039255362004042]],[[0.0048277825117111,-0.067122757434845,0.076676771044731],[0.0079692043364048,-0.031318292021751,-0.085751332342625],[0.052349470555782,0.054878521710634,0.040651001036167]],[[0.066840380430222,0.078411146998405,0.013734159059823],[0.0053847623057663,-0.022880110889673,0.054726678878069],[0.018401840701699,0.019836638122797,0.020154042169452]],[[0.03388698771596,-0.047094296664,0.012584410607815],[-0.027832927182317,0.086662858724594,0.0080541288480163],[0.0079955495893955,0.0081479158252478,-0.053547997027636]],[[0.040750864893198,-0.051680609583855,-0.010130426846445],[0.040813941508532,0.0054752682335675,-0.0061644562520087],[-0.047871649265289,-0.028817214071751,-0.028760047629476]],[[0.094071745872498,0.03246271237731,-0.066808573901653],[-0.059684660285711,0.045258149504662,0.06562565267086],[0.0039209644310176,-0.12043784558773,0.019198372960091]],[[-0.080284170806408,-0.0043513383716345,0.078188449144363],[0.076730288565159,-0.012246358208358,0.057714283466339],[-0.024517087265849,0.055972151458263,0.093934327363968]],[[0.070285826921463,0.079443916678429,-0.071656785905361],[-0.02498577721417,-0.0085751358419657,0.028755024075508],[0.063975617289543,-0.071141541004181,-0.017778707668185]],[[-0.0509241707623,-0.0094384914264083,0.048537734895945],[-0.0042559672147036,-0.070192903280258,0.029410788789392],[0.0058160987682641,0.026719614863396,0.027266971766949]],[[0.041783321648836,-0.042356200516224,0.072360426187515],[-0.053826998919249,0.045520100742579,-0.012632864527404],[0.060479514300823,-0.026243440806866,0.052937217056751]],[[0.027045665308833,0.043079469352961,-0.020803729072213],[0.065127305686474,-0.088916257023811,-0.019870428368449],[0.0016419052844867,0.0045514698140323,0.025749869644642]],[[0.0037445847410709,-0.05330191925168,-0.18786789476871],[-0.036588929593563,0.064126998186111,0.063460186123848],[-0.1240651383996,-0.02213136292994,-0.024304395541549]],[[-0.023307699710131,-0.030539143830538,0.03549487143755],[-0.019955959171057,-0.0017378374468535,0.020869169384241],[0.043826788663864,0.04091164842248,0.027858186513186]],[[0.094542890787125,-0.01783381216228,-0.018439035862684],[-0.013100530952215,0.058405127376318,0.038380302488804],[0.0045219655148685,0.063806243240833,0.064295291900635]],[[0.019512813538313,-0.015318332239985,-0.059055671095848],[-0.013207408599555,0.0065249311737716,-0.059543814510107],[0.018511053174734,-0.085637919604778,-0.078320644795895]],[[0.11130797863007,0.013203546404839,0.09992902725935],[0.06182548776269,0.083052180707455,0.013236680068076],[0.032308574765921,0.023921802639961,0.06203968077898]],[[-0.029247246682644,-0.014746701344848,0.067373670637608],[0.042000744491816,-0.063146844506264,0.02466089092195],[-0.025665275752544,-0.10698651522398,0.027459086850286]],[[0.039869662374258,-0.062387116253376,0.0042670373804867],[-0.040536478161812,-0.0040553542785347,-0.088005259633064],[-0.087103635072708,0.023151598870754,-0.086547784507275]],[[0.048011563718319,-0.035461071878672,0.087292164564133],[0.020830035209656,-0.04944908618927,-0.072191961109638],[0.12877242267132,0.025227382779121,-0.040344223380089]],[[-0.013233010657132,0.031197318807244,0.0095628798007965],[0.048492096364498,-0.097378209233284,0.023045899346471],[-0.03257629275322,0.0081033874303102,-0.053634937852621]],[[0.039961505681276,-0.028994861990213,0.096450790762901],[-0.0020931472536176,0.050544146448374,0.017291890457273],[0.066278845071793,-0.01717896014452,0.024428710341454]],[[0.0091401245445013,0.017524221912026,-0.034309551119804],[0.064782835543156,0.044610321521759,1.536897252663e-05],[0.018758825957775,0.077188029885292,0.020652275532484]],[[-0.040759198367596,-0.0097655029967427,-0.054239954799414],[0.049030713737011,-0.012641225010157,-0.03035644069314],[-0.027941716834903,0.10461975634098,0.0033764559775591]],[[0.010024079121649,0.059679102152586,0.055531822144985],[0.056000348180532,0.053870800882578,0.0076584685593843],[0.058642670512199,0.095608361065388,0.054049130529165]],[[0.051924109458923,0.06643832474947,-0.00069101143162698],[-0.0017891202587634,0.0030988019425422,0.10381953418255],[0.031084606423974,0.057070460170507,0.039640106260777]],[[-0.030131120234728,0.050452798604965,-0.022243296727538],[0.074996404349804,0.0066765933297575,0.044225230813026],[0.055369473993778,0.022885030135512,0.032194886356592]],[[0.013960465788841,0.10024008899927,-0.0063091423362494],[-0.05741498991847,0.056128207594156,0.067773096263409],[0.076850593090057,0.0098074981942773,-0.028819274157286]],[[0.0083912126719952,0.01376714091748,0.009843691252172],[0.055100243538618,0.031573932617903,-0.0037957360036671],[-0.0093302149325609,0.029567588120699,-0.047710694372654]],[[-0.049466654658318,0.011220449581742,0.040645372122526],[0.01462585106492,0.041874878108501,0.016295066103339],[-0.035790581256151,0.054906230419874,0.13244783878326]],[[-0.10258171707392,-0.0056363213807344,0.0079536642879248],[-0.036364164203405,-0.05813404917717,-0.012377473525703],[-0.031739294528961,-0.018328635022044,0.049564760178328]],[[0.013447589240968,0.084970593452454,-0.018103091046214],[0.040018998086452,-0.0048514986410737,-0.021840523928404],[-0.080619998276234,-0.084184587001801,0.0037931257393211]],[[0.04885733500123,-0.059024509042501,0.015642069280148],[0.016150815412402,0.0024969363585114,-0.060328029096127],[0.014673427678645,-0.041098948568106,-0.02707789465785]],[[0.10172326117754,0.00088710931595415,0.12207280099392],[0.035096820443869,0.059923503547907,0.11920431256294],[-0.013111852109432,-0.0098160821944475,0.061601553112268]],[[-0.071491606533527,-0.00028745629242621,0.0077316225506365],[-0.01191604975611,-0.05994900688529,-0.041903145611286],[0.088658303022385,0.021486489102244,0.032091233879328]],[[-0.09166544675827,-0.025973316282034,0.043755225837231],[0.014432807452977,-0.0039503141306341,-0.0092943347990513],[0.035500720143318,-0.038167506456375,0.015632849186659]],[[0.022568618878722,-0.00021804530115332,0.011089754290879],[-0.00081837084144354,0.074569500982761,0.012085795402527],[0.11675125360489,0.088195145130157,0.020688874647021]],[[-0.043638959527016,-0.085704997181892,-0.018713930621743],[0.011478531174362,-0.049190264195204,0.092105738818645],[0.070085018873215,-0.036006018519402,-0.030547792091966]],[[-0.014690770767629,0.050726540386677,-0.077889733016491],[-0.040936291217804,-0.07369839400053,0.029866760596633],[0.061591871082783,0.005982069298625,0.0062806257046759]],[[0.077886119484901,-0.039429519325495,0.050089687108994],[0.083584018051624,0.01702881231904,-0.0048670065589249],[-0.060828190296888,0.03365383297205,0.040347829461098]],[[0.018948536366224,-0.056924406439066,0.012258712202311],[0.044845961034298,0.028885213658214,-0.096013516187668],[0.015953257679939,-0.010847604833543,-0.048140943050385]],[[0.015614015050232,0.055015679448843,-0.0051706018857658],[-0.001056375564076,0.081354662775993,-0.087922833859921],[0.063961580395699,-0.054772358387709,0.044481601566076]],[[0.11200827360153,-0.017957011237741,0.011435762047768],[0.053891219198704,0.14883872866631,-0.0460459664464],[0.097908176481724,0.030360599979758,-0.0038479783106595]],[[0.078893795609474,-0.07137680798769,0.12236421555281],[0.085645340383053,0.087777063250542,-0.02055680565536],[0.0067798122763634,0.050880968570709,0.025253960862756]],[[0.057573452591896,0.091713294386864,-0.080841325223446],[0.0085467407479882,-0.082170747220516,0.11120448261499],[0.062866427004337,0.054559987038374,0.0058367322199047]],[[0.0016353155951947,0.1078807413578,-0.033381994813681],[0.017880043014884,-0.0079685263335705,0.056214120239019],[0.017857741564512,0.039474569261074,-0.040642116218805]],[[-0.013861147686839,0.047159276902676,-0.00044458548654802],[0.030152030289173,-0.074272096157074,0.12015602737665],[-0.017708625644445,-0.021397214382887,0.069699786603451]],[[0.010815171524882,0.042522206902504,-0.00087931699818],[0.079688042402267,-0.0045720492489636,-0.0068233422935009],[0.0012041268637404,0.010454608127475,-0.073880448937416]],[[0.031244680285454,-0.031417958438396,-0.06895574182272],[0.034874964505434,-0.0049566137604415,-0.028221694752574],[-0.034662712365389,-0.040453989058733,0.095352970063686]],[[0.12111361324787,-0.097863361239433,-0.010807142592967],[0.010322417132556,-0.0062947943806648,0.078761428594589],[0.042790103703737,0.037835117429495,0.069334760308266]],[[0.019563423469663,0.11304653435946,0.031747799366713],[-0.044383216649294,-0.025252433493733,0.11282778531313],[0.01622610911727,0.095877833664417,-0.090892046689987]],[[0.030631626024842,-0.023754408583045,-0.13457077741623],[-0.0042366250418127,0.021784655749798,0.12254805862904],[0.03276751190424,-0.045869711786509,0.017722116783261]],[[-0.015158585272729,0.054435316473246,0.040117263793945],[0.086002014577389,0.10830225050449,0.031037839129567],[-0.026233391836286,-0.023374170064926,-0.014502270147204]],[[0.050474114716053,-0.055550336837769,-0.041886731982231],[0.0091747464612126,0.10364577919245,0.084745638072491],[0.02538282610476,0.012989467941225,-0.021584739908576]],[[-0.0029447127599269,-0.031011287122965,-0.054346367716789],[-9.2990710982122e-05,-0.057341124862432,0.052774723619223],[0.035921644419432,-0.092019878327847,0.036725021898746]],[[0.049346141517162,-0.061476349830627,-0.077949620783329],[0.0037840830627829,0.024641823023558,-0.014125074259937],[-0.080944553017616,-0.028960183262825,-0.015158154070377]],[[0.050243675708771,0.024877581745386,-0.046760383993387],[0.058485429733992,0.05104910954833,-0.0080117555335164],[-0.031385783106089,-0.026298088952899,-0.018196880817413]],[[0.0067677213810384,0.11011116951704,0.15020644664764],[0.059622257947922,0.038662657141685,0.0092782406136394],[0.065972790122032,0.052235014736652,-0.015628473833203]],[[-0.039069417864084,-0.073211662471294,-0.030402524396777],[0.051530413329601,-0.012218764983118,0.003705769777298],[0.029299676418304,0.059523519128561,0.10190618783236]],[[0.012930542230606,-0.030450008809566,-0.0085933115333319],[0.016872780397534,-0.051632571965456,0.0555619597435],[0.003738020779565,-0.11645625531673,-0.018164608627558]],[[-0.12041103094816,0.050816860049963,-0.064851015806198],[0.082275666296482,-0.0053487988188863,0.059653259813786],[0.04394817724824,0.0068027670495212,-0.030873233452439]],[[-0.0048899287357926,0.0083601530641317,-0.085939787328243],[-0.119694262743,0.047239221632481,0.012090926989913],[0.026359589770436,0.04359919950366,0.093537360429764]],[[0.043215245008469,-0.016152992844582,-0.093857392668724],[0.024859674274921,0.050295770168304,0.079988911747932],[0.1248984336853,-0.020526761189103,0.0020863707177341]],[[-0.0028853348921984,-0.050564374774694,0.0058164307847619],[-0.094110354781151,-0.12578974664211,-0.059484604746103],[0.011478776112199,0.088769234716892,-0.039260141551495]],[[0.0078671807423234,-0.079201817512512,0.077341601252556],[-0.050405107438564,0.0090663693845272,-0.22226956486702],[0.045951589941978,0.041794124990702,-0.060134042054415]],[[0.095481805503368,0.11632756888866,-0.00016337992565241],[-0.095320798456669,0.00037492028786801,0.06560592353344],[0.050350192934275,-0.036265179514885,-0.084783315658569]],[[0.070501334965229,-0.0026646775659174,-0.11987338960171],[0.012848310172558,-0.0037528758402914,-0.023451041430235],[-0.023829495534301,0.12199251353741,0.0079421633854508]],[[0.00059291702928022,0.01442135963589,-0.08547942340374],[0.014615680091083,-0.03766555711627,-0.06104663386941],[0.048606265336275,0.0025308034382761,-0.070258885622025]],[[-0.054646030068398,0.0093037905171514,-0.035199832171202],[-0.019291156902909,-0.01181349158287,0.0046746386215091],[-0.070347286760807,0.0011783668305725,-0.0085618942975998]],[[-0.039968609809875,0.066427312791348,0.014179907739162],[-0.062393620610237,0.0108891017735,0.0028643326368183],[0.036695498973131,-0.049801126122475,-0.10305099189281]],[[-0.040358994156122,-0.063841722905636,-0.048811841756105],[-0.042430602014065,-0.0063349781557918,0.11588940769434],[0.010289746336639,-0.031245552003384,0.039725106209517]],[[-0.0086124669760466,0.012537924572825,0.082967810332775],[-0.0098788691684604,0.044047631323338,0.15976329147816],[0.047149103134871,-0.051199715584517,0.051015261560678]],[[-0.065026052296162,0.035735931247473,-0.0075380392372608],[-0.016222367063165,0.10305450856686,0.06780032813549],[0.067429453134537,0.02449344471097,0.057463221251965]],[[0.0093310410156846,-0.029016107320786,-0.048854969441891],[0.12364746630192,0.043152824044228,0.0085972445085645],[0.023942202329636,0.038833755999804,-0.0025578723289073]],[[-0.0024633195716888,0.031952288001776,-0.053944025188684],[-0.065926186740398,-0.034025263041258,0.0027024149894714],[-0.035642616450787,-0.035808861255646,-0.034905731678009]],[[-0.067142739892006,-0.040514126420021,-0.07967933267355],[-0.025953583419323,-0.028758471831679,-0.14657063782215],[-0.014989480376244,-0.092918291687965,-0.0010393514530733]],[[-0.015964401885867,0.090359307825565,0.056318372488022],[-0.1309050321579,0.053874041885138,-0.026731576770544],[-0.049349971115589,-0.036687787622213,-0.0073824990540743]],[[0.012051602825522,0.0010270869825035,-0.086269117891788],[-0.00060544582083821,-0.034386482089758,0.052666768431664],[0.13594552874565,0.10724127292633,-0.0040867906063795]],[[-0.0081463567912579,-0.038855291903019,-0.028487205505371],[0.0071671423502266,-0.03278049454093,-0.038962066173553],[-0.052711848169565,-0.091506093740463,0.024977069348097]],[[0.036329686641693,-0.0052050855010748,-0.030309548601508],[-0.028431491926312,-0.029704999178648,-0.094459906220436],[0.0068761552684009,-0.025264590978622,-0.08767444640398]],[[0.10193013399839,-0.01530824881047,-0.0047390488907695],[0.0077605317346752,-0.0072878524661064,0.042681336402893],[0.05179613083601,-0.080557361245155,0.001167205395177]],[[-0.07182852178812,-0.0021598539315164,0.025488004088402],[-0.00255689304322,0.080852769315243,-0.02325345762074],[0.022100578993559,0.022340139374137,0.022521395236254]],[[0.013941525481641,0.02228326536715,0.041068706661463],[0.0016820140881464,0.064217045903206,0.037810016423464],[0.022477563470602,0.081991821527481,0.032095223665237]],[[0.031399752944708,-0.018902091309428,0.067846931517124],[-0.0071128965355456,-0.054776128381491,-0.10159848630428],[-0.00067265267716721,0.075164474546909,-0.0017139716073871]]],[[[-0.049830585718155,-0.0055772508494556,-0.051913823932409],[-0.016718789935112,-0.015969255939126,0.0046027461066842],[-0.060296777635813,0.0052702873945236,0.016473550349474]],[[0.018365312367678,0.038600977510214,0.015441638417542],[0.03369938954711,-0.024058436974883,-0.035967480391264],[0.0082101318985224,0.020592968910933,0.024851910769939]],[[-0.013603909872472,0.054415695369244,0.014313201420009],[0.052671883255243,-0.022162256762385,-0.032213699072599],[-0.065263576805592,0.038555279374123,0.034885216504335]],[[-0.038508962839842,0.026817945763469,-0.049836501479149],[-0.040487729012966,0.050170838832855,0.026964066550136],[-0.0023518127854913,0.043678782880306,0.039025455713272]],[[0.027198772877455,-0.051602024585009,-0.013019520789385],[0.05188375711441,-0.018113067373633,-0.022121101617813],[0.041184153407812,0.027652896940708,-0.012358383275568]],[[0.01813075132668,-0.0054531353525817,-0.022202229127288],[0.035114161670208,-0.042354118078947,-0.090358085930347],[0.040610834956169,0.031396169215441,0.019123738631606]],[[0.0015438804402947,-0.055803932249546,0.0024786298163235],[-0.048764269798994,-0.0068486761301756,0.0033032759092748],[0.09829193353653,0.053215641528368,0.040563888847828]],[[0.052489496767521,-0.035635981708765,0.014738763682544],[-0.003669070545584,0.012877888046205,-0.0031086853705347],[-0.058686625212431,0.0038928193971515,0.076725386083126]],[[0.018116312101483,0.037467729300261,0.10375865548849],[0.019056370481849,-0.053369745612144,0.0041397749446332],[0.0533716827631,0.0041094343177974,0.077248461544514]],[[-0.027031337842345,-0.074914991855621,0.078097335994244],[0.0015571339754388,0.030606865882874,0.0047364751808345],[0.019359095022082,0.0079666096717119,0.088518522679806]],[[-0.0045903003774583,0.068454667925835,-0.010137987323105],[0.029037361964583,-0.028274398297071,-0.031365115195513],[-0.0047770347446203,-0.066780395805836,0.035093165934086]],[[-0.044281497597694,-0.0070621487684548,0.09999331086874],[0.022987142205238,0.0092126335948706,-0.0091416472569108],[-0.045803550630808,-0.028037201613188,0.0077666263096035]],[[-0.064438164234161,-0.017938535660505,-0.0045593804679811],[-0.057525917887688,0.0094913868233562,0.016639521345496],[0.050639137625694,0.10903024673462,-0.078304827213287]],[[-0.017913479357958,-0.0086128003895283,0.04570721834898],[-0.076540850102901,0.052804477512836,-0.070507243275642],[0.089016199111938,0.057088810950518,0.031078504398465]],[[-0.053565215319395,0.014821206219494,-0.0038968201261014],[0.077422671020031,0.016253458335996,-0.018139097839594],[-0.070920117199421,-0.053016573190689,0.0077610816806555]],[[-0.029448328539729,0.012411433272064,0.0029116496443748],[-0.043638303875923,-0.039487145841122,0.038713403046131],[-0.040245577692986,0.065855406224728,0.080753326416016]],[[0.0051155164837837,0.0037698994856328,-0.0052139135077596],[0.0093495929613709,-0.015389882959425,-0.054436609148979],[0.029139950871468,-0.02792595885694,0.021695915609598]],[[-0.0088119301944971,0.045130375772715,-0.030933683738112],[-0.008094934746623,0.030149839818478,-0.04849436506629],[-0.039664480835199,0.091160580515862,0.052163686603308]],[[0.10480499267578,0.011428757570684,0.0063604135066271],[0.10583482682705,-0.042980246245861,-0.035235546529293],[0.036669809371233,0.034090492874384,0.0067320824600756]],[[-0.025565719231963,0.060653679072857,0.013299155049026],[0.019044037908316,0.067628219723701,-0.036825384944677],[-0.0084872310981154,0.023573404178023,-0.039214804768562]],[[0.022063832730055,-0.039195097982883,-0.040243066847324],[0.043137606233358,0.040874741971493,0.0144546283409],[-0.0026722885668278,-0.040469892323017,-0.051256883889437]],[[0.0056095607578754,-0.033556893467903,0.0062910369597375],[0.029965925961733,-0.030646182596684,-0.064506255090237],[0.013509445823729,0.038399633020163,0.0019476655870676]],[[-0.039016518741846,0.043434362858534,0.025564348325133],[0.0041785473003983,-0.025712767615914,-0.01375628542155],[0.091578885912895,-0.0091194296255708,-0.06265364587307]],[[-0.022576753050089,-0.011569887399673,0.077481269836426],[-0.002828870434314,0.009393279440701,0.017406633123755],[0.014023497700691,-0.035743668675423,0.018883755430579]],[[0.044726736843586,-0.0076413205824792,-0.019914299249649],[-0.017115710303187,0.018059024587274,-0.015708750113845],[0.062487978488207,-0.014008999802172,0.027289947494864]],[[-0.024315776303411,0.02157536521554,0.0014811570290476],[-0.023387715220451,0.054509580135345,-0.030101429671049],[0.033480707556009,-0.025352701544762,-0.055069249123335]],[[-0.029232500120997,-0.07249242067337,-0.019543355330825],[0.058553367853165,-0.035585924983025,-0.036239244043827],[0.054835882037878,-0.05390901491046,0.059502512216568]],[[-0.046528108417988,-0.025194512680173,0.02181944809854],[0.030331322923303,-0.044683434069157,0.025225374847651],[-0.089815765619278,0.015627268701792,-0.0010452301939949]],[[0.036771845072508,0.0058793998323381,-0.0012558569433168],[-0.1082571670413,-0.020271962508559,0.031444393098354],[-0.048840366303921,-0.021054858341813,-0.040038708597422]],[[0.017643904313445,0.029038608074188,0.0092472676187754],[0.046334572136402,-0.091761998832226,-0.024747801944613],[-0.023609971627593,-0.024899415671825,0.072601869702339]],[[0.040052857249975,0.039340183138847,0.0067103481851518],[-0.012421830557287,-0.042676243931055,-0.018498763442039],[-0.026690447703004,0.035965409129858,-0.040345918387175]],[[-0.017358055338264,0.0051490217447281,-0.010649798437953],[0.045939415693283,0.039559043943882,0.075713001191616],[0.032243650406599,-0.072273425757885,-0.042538337409496]],[[0.021938171237707,-0.056806165724993,0.0087479148060083],[0.0032941084355116,-0.021259509027004,-0.039598140865564],[-0.023813443258405,0.01370973046869,0.021173184737563]],[[0.075668707489967,0.022626928985119,-0.020646685734391],[0.029727518558502,0.020546387881041,0.013782560825348],[0.029420517385006,-0.0009341100230813,0.003452023724094]],[[0.0067106643691659,-0.032161589711905,0.034900732338428],[-0.014991208910942,-0.050572339445353,-0.016593081876636],[0.01861497014761,0.02264166623354,0.055881820619106]],[[-0.020832953974605,-0.063484832644463,0.0016338336281478],[0.032230161130428,0.0018538191216066,0.046183705329895],[-0.05058316513896,-0.023742102086544,0.017220983281732]],[[-0.054600592702627,-0.025425955653191,0.027087902650237],[-0.079778261482716,0.0088592451065779,-0.036575980484486],[0.029052389785647,-0.047408971935511,-0.041879262775183]],[[0.0091273738071322,0.037771347910166,-0.032574750483036],[0.026037819683552,-0.054845213890076,-0.085330739617348],[-0.014282790012658,0.0075632804073393,0.037521801888943]],[[-0.0099138738587499,0.061323348432779,0.03511930629611],[-0.034690022468567,-0.02015445753932,0.060450725257397],[0.0038535678759217,0.015015472657979,0.0099193509668112]],[[-0.020430147647858,-0.0073005435988307,-0.065486125648022],[-0.014840927906334,0.029866904020309,-0.012506152503192],[0.037086520344019,-0.029439466074109,-0.013177633285522]],[[0.044348895549774,-0.084764592349529,0.020352901890874],[0.056844647973776,0.071580938994884,0.011767384596169],[0.043863918632269,-0.055904597043991,0.066675491631031]],[[0.011753164231777,0.02583085373044,-0.04888391494751],[-0.017793921753764,0.017904518172145,0.051694341003895],[-0.05163948610425,0.0069384546950459,-0.016832515597343]],[[0.0052350126206875,0.097977489233017,-0.077703349292278],[0.019363829866052,0.021174371242523,0.042653251439333],[-0.020602822303772,0.05563110858202,-0.013449138961732]],[[0.091265432536602,-0.018243322148919,0.030317516997457],[0.066343486309052,-0.056913871318102,-0.01042312849313],[-0.046068776398897,-0.020837819203734,0.030999107286334]],[[-0.052092846482992,0.043250810354948,-0.049486614763737],[-0.02163945324719,-0.065421484410763,0.011302691884339],[-0.1040715649724,0.0093808444216847,-0.019428785890341]],[[0.023208443075418,-0.0007368655060418,0.0086928531527519],[-0.0095355724915862,0.020805446431041,0.030629592016339],[0.028779974207282,0.065740935504436,0.040948051959276]],[[-0.0059563433751464,-0.01057655736804,0.017009494826198],[-0.029484618455172,0.040876779705286,-0.0036031864583492],[-0.002740734256804,-0.001363029005006,0.028188707306981]],[[0.097012758255005,0.034348089247942,0.036806240677834],[0.026208670809865,0.013744234107435,-0.041589993983507],[-0.038646686822176,0.0071536297909915,-0.0031814293470234]],[[-0.0011866160202771,-0.020167602226138,-0.068874254822731],[-0.061457727104425,-0.0049634133465588,-0.054922297596931],[0.04255086556077,-0.00021495959663298,0.01727220416069]],[[0.019313352182508,-0.040238194167614,0.0096388822421432],[0.0047192466445267,0.0083222016692162,0.022181387990713],[0.033692196011543,-0.017509128898382,-0.072616539895535]],[[-0.013449793681502,-0.055557411164045,0.043723959475756],[-0.021776165813208,0.0091457795351744,-0.044302556663752],[0.033882014453411,0.007728866301477,0.059707742184401]],[[-0.053103882819414,-0.047594644129276,0.001301946118474],[0.084374271333218,-0.045381132513285,-0.036114685237408],[-0.023151315748692,-0.0034903967753053,-0.075223170220852]],[[0.09313940256834,0.0095151998102665,-0.018792128190398],[-0.012388426810503,0.0098978830501437,0.039092734456062],[0.035090517252684,-0.013964978046715,0.04875810444355]],[[-0.010329811833799,-0.046681471168995,-0.010569715872407],[0.021829647943377,0.090572133660316,0.014866484329104],[-0.031892016530037,-0.032920807600021,0.048888314515352]],[[0.013236196711659,0.087731085717678,0.045341912657022],[0.052349474281073,0.016086349263787,0.018724601715803],[-0.023206040263176,0.058962401002645,-0.0018401067936793]],[[0.079277358949184,-0.03643960878253,0.0012086186325178],[-0.046202052384615,-0.015467590652406,0.009700276888907],[0.023363681510091,-0.035262703895569,-0.014665259048343]],[[0.0063620740547776,-0.0073087066411972,0.050414592027664],[-0.04165692999959,0.043168634176254,-0.019871501252055],[0.066876232624054,-0.038955133408308,-0.010021396912634]],[[0.045858331024647,0.06697578728199,-0.040842209011316],[0.053056359291077,-0.075388498604298,-0.084852062165737],[-0.024814764037728,-0.026824647560716,0.072740145027637]],[[-0.0098019931465387,0.029679635539651,0.037350680679083],[0.0047172228805721,-0.047630559653044,0.061075273901224],[0.025172492489219,0.059572726488113,0.00058757048100233]],[[-0.015132676810026,-0.032781776040792,-0.013598024845123],[0.042705241590738,-0.010102554224432,0.037648193538189],[-0.0031791883520782,0.052825793623924,-0.0020081053953618]],[[0.083744570612907,-0.097613930702209,-0.027710247784853],[-0.0087049612775445,-0.028342192992568,-0.044457301497459],[0.017204781994224,-0.049024805426598,0.086492471396923]],[[0.07229820638895,-0.039045386016369,0.0051636397838593],[0.062121480703354,-0.038514148443937,0.020750423893332],[0.0082248440012336,-0.0089543098583817,-0.021827846765518]],[[-0.044924572110176,-0.048431668430567,0.041366651654243],[0.034294005483389,-0.016607761383057,-0.063693016767502],[-0.12618464231491,0.019391046836972,-0.031247584149241]],[[0.083386972546577,0.0021789497695863,0.020597731694579],[0.007962953299284,0.05769282579422,-0.027451913803816],[-0.035090796649456,0.043354529887438,-0.033049963414669]],[[0.012737201526761,-0.034807991236448,0.032519854605198],[-0.013531382195652,-0.018809402361512,0.018455367535353],[-0.00114125397522,-0.011405841447413,-0.078861191868782]],[[-0.034341786056757,0.046183198690414,0.038287751376629],[0.016603847965598,0.017560431733727,-0.012265818193555],[-0.0071907453238964,-0.039524786174297,0.0065829530358315]],[[-0.015684241428971,-0.02688773907721,0.02297137863934],[0.057629685848951,0.027105694636703,-0.048014309257269],[-0.020655836910009,0.06591372191906,-0.016454255208373]],[[-0.0012358574895188,0.043669883161783,0.0058165891095996],[0.0025869249366224,0.10122922062874,0.025466810911894],[-0.023769838735461,-0.062911421060562,-0.033565375953913]],[[-0.014111100696027,0.010350224561989,0.047929015010595],[-0.071650177240372,0.0039438442327082,-0.0084670782089233],[0.032980524003506,0.02131094224751,-0.0028107189573348]],[[0.064183063805103,-0.021142959594727,-0.046147674322128],[-0.0517199896276,-0.026678824797273,0.089016780257225],[0.068761944770813,0.0073047652840614,-0.050144322216511]],[[-0.055331781506538,-0.01157202757895,0.018322996795177],[0.019611204043031,0.015723060816526,-0.030461523681879],[-0.0049221166409552,0.038478258997202,-0.0046402737498283]],[[0.0795713737607,0.034415286034346,0.0026919145602733],[0.0039182850159705,-0.045796304941177,-0.044530112296343],[-0.029608206823468,-0.014647481031716,0.015685079619288]],[[0.065146960318089,-0.026540292426944,0.018811332061887],[-0.0048801158554852,-0.027255883440375,-0.026206729933619],[-0.013034191913903,-0.08599878847599,-0.040463116019964]],[[0.049525044858456,0.022587414830923,-0.025900941342115],[-0.05815551429987,0.028883341699839,-0.062024313956499],[-0.060727868229151,0.013496593572199,0.037619117647409]],[[0.014890766702592,0.082139864563942,-0.028351062908769],[0.011009403504431,0.0025906483642757,0.026356503367424],[0.061722561717033,0.066258527338505,-0.056113611906767]],[[0.025676980614662,0.018107431009412,0.016173109412193],[-0.016231762245297,0.10420198738575,0.036077290773392],[0.028049314394593,0.023874998092651,-0.032665569335222]],[[-0.023387836292386,-0.044362604618073,-0.053823333233595],[-0.013261070474982,0.012848764657974,-0.044008817523718],[-0.0030573655385524,-0.095891557633877,-0.011585076339543]],[[0.059698559343815,-0.02105338871479,0.10026862472296],[0.0093830246478319,0.041007276624441,-0.028773749247193],[-0.019177157431841,-0.028389347717166,0.020339578390121]],[[0.018974041566253,0.011045928113163,0.0092472769320011],[0.042082704603672,0.031863611191511,0.063803359866142],[0.027947911992669,-0.054422367364168,-0.011358298361301]],[[0.066973313689232,0.017037911340594,0.0079137496650219],[-0.0044151246547699,-0.071182452142239,0.062979944050312],[0.068757817149162,-0.074919663369656,-0.017710693180561]],[[-0.056391324847937,-0.037417773157358,0.0024550419766456],[0.062565959990025,0.027492703869939,-0.022064743563533],[-0.049552533775568,0.03864910453558,-0.025891562923789]],[[-0.031699374318123,0.07844191044569,-0.0476233959198],[-0.0013211935292929,0.040333371609449,-0.030734706670046],[-0.042901273816824,-0.035229381173849,0.053703680634499]],[[-0.083384715020657,-0.0067167757079005,0.023792957887053],[-0.01888807117939,0.013098695315421,0.016459973528981],[0.0079508349299431,-0.0013911207206547,-0.021651167422533]],[[-0.019851725548506,0.0040624714456499,-0.023697165772319],[0.03047563880682,-0.041476532816887,0.019931484013796],[0.03851506114006,-0.03896364942193,0.098938703536987]],[[-0.062560223042965,-0.038488261401653,0.057783205062151],[-0.030670460313559,-0.018097786232829,-0.070414371788502],[0.054436810314655,-0.020452074706554,0.021801522001624]],[[-0.048589564859867,-0.035148974508047,-0.023197496309876],[0.0038220342248678,-0.022629143670201,-0.012998000718653],[0.033047735691071,-0.015052455477417,0.036748182028532]],[[0.0041062389500439,-0.020136853680015,0.034922026097775],[0.026423310860991,-0.0068372990936041,0.0402229167521],[0.053596761077642,0.031051240861416,0.0055453558452427]],[[-0.030575841665268,-0.076278515160084,-0.050855860114098],[-0.036693308502436,0.069777585566044,0.01403078995645],[-0.028123511001468,0.024884583428502,-0.011863744817674]],[[-0.01534833945334,-0.02009355276823,-0.0093681681901217],[0.10177507996559,0.021588038653135,-0.033097703009844],[-0.02583809569478,0.063165687024593,-0.010575709864497]],[[-0.016813466325402,-0.012630353681743,-0.044032908976078],[0.017432434484363,-0.0078722732141614,-0.013051178306341],[-0.040543925017118,0.0036512285005301,-0.035252742469311]],[[-0.029888961464167,-0.026413867250085,-0.022636074572802],[0.03050853125751,-0.0047871205024421,-0.051971446722746],[0.015185142867267,-0.024705912917852,0.0070588118396699]],[[-0.002202077768743,0.066106930375099,-0.025747736915946],[-0.061598584055901,-0.037327118217945,-0.018461540341377],[0.019225629046559,0.015617742203176,-0.0062788408249617]],[[-0.059479627758265,0.0067575089633465,0.042536146938801],[0.0011852415045723,-0.051229577511549,0.044907737523317],[0.0037945618387312,0.033624261617661,-0.057960465550423]],[[0.024802232161164,0.054704796522856,-0.0083886003121734],[-0.097025722265244,0.047322060912848,0.00020111181947868],[-0.043728087097406,0.076597988605499,-0.030174927785993]],[[-0.0034156802576035,-0.0004357524740044,0.054247580468655],[-0.051007691770792,0.0050896280445158,0.080717511475086],[0.047534249722958,-0.059665665030479,0.03089414909482]],[[0.0011412862222642,0.0073807234875858,0.052042596042156],[0.063375294208527,-0.051431115716696,0.037204951047897],[-0.029747728258371,-0.0055147483944893,0.035691440105438]],[[-0.0092101851478219,-0.0039833351038396,0.019562197849154],[0.034149769693613,0.0032504743430763,-0.048591539263725],[-0.019352177157998,-0.036031287163496,0.0078378329053521]],[[0.0029326383955777,-0.035269398242235,0.095643281936646],[0.0073165982030332,0.054531123489141,0.020864825695753],[-0.0024969163350761,-0.027326881885529,0.032601356506348]],[[0.012098556384444,0.076412945985794,0.0095022981986403],[0.046018958091736,0.041616432368755,-0.02027421630919],[-0.054051011800766,0.13221870362759,0.030676083639264]],[[-0.044227883219719,0.0041825487278402,0.0033082393929362],[0.10097546130419,-0.0090587781742215,0.0039084013551474],[0.020595924928784,0.028308067470789,-0.032781761139631]],[[-0.0056804060004652,-0.013835788704455,0.092063248157501],[-0.032449539750814,0.011091128922999,-0.0010030919220299],[0.040700510144234,-0.070791184902191,-0.078447885811329]],[[-0.083332099020481,0.029452191665769,0.041709933429956],[-0.025856632739305,0.041949387639761,0.038752999156713],[-0.064452543854713,-0.043045341968536,-0.023545501753688]],[[-0.052298244088888,-0.045392893254757,0.0048067667521536],[-0.013614114373922,0.013722465373576,0.010795794427395],[0.063990585505962,-0.075328931212425,0.011885618790984]],[[-0.022029638290405,-0.018158135935664,0.0024373349733651],[0.021569412201643,0.044402651488781,-0.018354833126068],[-0.016815857961774,-0.021656759083271,0.0077423946931958]],[[0.031842615455389,-0.0076630152761936,0.015602354891598],[0.018078757449985,0.001463717664592,-0.007304148748517],[0.056742813438177,0.0057441801764071,-0.054980728775263]],[[0.046610083431005,0.019316555932164,0.016984645277262],[-0.01931113563478,0.0043981135822833,-0.022919248789549],[0.002318030456081,-0.094170443713665,-0.070024773478508]],[[-0.04665482416749,-0.04106268659234,-0.011011368595064],[-0.009710505604744,0.010743831284344,0.067588709294796],[0.027694344520569,-0.1035600528121,0.00022026468650438]],[[-0.03782968968153,-0.0078641222789884,-0.065880969166756],[-0.019131556153297,0.008903288282454,0.045305743813515],[0.032115627080202,0.085530020296574,-0.0073173665441573]],[[-0.033482141792774,0.015475532971323,-0.013480280525982],[0.012460705824196,0.021223839372396,-0.073975548148155],[-0.02886950597167,0.013064358383417,-0.072982534766197]],[[-0.056792099028826,-0.0065689450129867,-0.0099833998829126],[-0.073169268667698,0.0029273289255798,-0.010886329226196],[-0.00083116791211069,0.017673261463642,-0.087352491915226]],[[-0.050149448215961,-0.035053223371506,0.029905490577221],[0.050530329346657,0.048991739749908,0.024174906313419],[0.01420643273741,0.03436428681016,0.045260049402714]],[[-0.0099822096526623,-0.058482475578785,0.025050278753042],[-0.016021355986595,0.017556576058269,0.033687371760607],[0.020114218816161,0.0092120869085193,-0.092733569443226]],[[-0.0014584439340979,0.040279407054186,0.0082647195085883],[0.0094268983229995,0.0086701773107052,-0.0014663038309664],[-0.0028743664734066,0.0037849899381399,0.059934422373772]],[[0.01221717800945,-0.0015534545527771,-0.033867795020342],[0.01235886849463,0.054872650653124,0.0022198441438377],[-0.03016690351069,0.015799494460225,-0.018981739878654]],[[0.10857282578945,0.0092848893254995,0.025101587176323],[-0.036615930497646,-0.053275465965271,-0.049413293600082],[-0.013928364962339,-0.039760045707226,-0.049001343548298]],[[-0.017504436895251,-0.017070453613997,-0.010212568566203],[0.0058071748353541,-0.0019147439161316,0.027274806052446],[0.048037860542536,-0.0049873278476298,-0.030988009646535]],[[0.056144677102566,-0.013262435793877,-0.10496678203344],[-0.011615416035056,-0.015974694862962,-0.014207855798304],[0.075862869620323,0.028804844245315,0.055565040558577]],[[0.0022221710532904,-0.12207214534283,0.027087232097983],[0.018635338172317,-0.023953540250659,-0.094348579645157],[-0.021073035895824,-0.039601478725672,-0.0069974926300347]],[[0.0060236309655011,-0.047321978956461,0.011597379110754],[-0.026650944724679,-0.028087066486478,-0.044331442564726],[0.024987054988742,0.042187612503767,-0.003834345843643]],[[0.062501892447472,0.037899110466242,0.025266699492931],[-0.031201124191284,-0.038855880498886,-0.0066883559338748],[-0.00075291376560926,0.030620222911239,-0.050081558525562]],[[-0.017383622005582,-0.050093498080969,-0.068507216870785],[-0.070181101560593,0.011907495558262,-0.051854502409697],[0.029676700010896,0.020645331591368,0.05893712490797]],[[-0.011887109838426,0.036838788539171,0.034520298242569],[0.037209987640381,0.062652193009853,0.028979375958443],[-0.021223751828074,-0.055931620299816,0.027109054848552]],[[0.022875655442476,0.0096616139635444,0.0063517289236188],[-0.059200525283813,-0.0097098127007484,0.0055009298957884],[-0.010272931307554,0.015912104398012,-0.046269755810499]],[[-0.0017428566934541,0.00034798408159986,-0.042648505419493],[-0.015131778083742,-0.071784995496273,0.00061294704210013],[-0.026546867564321,-0.0024583030026406,-0.02901266515255]],[[0.10430680215359,-0.046413969248533,-0.11719932407141],[0.022459331899881,0.051913194358349,0.09145325422287],[-0.0049000573344529,0.052681643515825,-0.036698471754789]],[[0.021342817693949,-0.042328611016273,0.050363093614578],[-0.063632145524025,0.045027881860733,0.054673846811056],[0.0049233818426728,0.00059742305893451,0.062769457697868]],[[-0.0084591750055552,0.0030120564624667,0.059434831142426],[-0.035834103822708,0.045873209834099,-0.072610557079315],[0.03684600815177,-0.0086799943819642,-0.00066031567985192]],[[0.073003247380257,-0.011473516002297,0.051543597131968],[0.061624839901924,0.010195051319897,-0.017465673387051],[0.050461463630199,0.023901533335447,-0.049028586596251]]],[[[0.036448765546083,0.089706838130951,0.10326347500086],[-0.034747313708067,0.05812956020236,0.055355351418257],[0.032339725643396,-0.10134171694517,0.10731466859579]],[[-0.01910500600934,-0.081390775740147,-0.05912484228611],[-0.056996997445822,-0.016832821071148,-0.01269244402647],[0.086093716323376,0.043367315083742,0.033045213669538]],[[-0.054956886917353,-0.0062316283583641,-0.093928501009941],[-0.044643420726061,0.072620861232281,-0.014968074858189],[0.021475987508893,0.067351259291172,-0.021114895120263]],[[-0.017467057332397,0.0016291292849928,0.018988233059645],[-0.0067528979852796,-0.010049753822386,-0.036974113434553],[0.0045298039913177,0.0050809527747333,-0.084310345351696]],[[0.14158509671688,-0.045790757983923,-0.029232604429126],[0.082492224872112,-0.050839055329561,0.029802540317178],[0.032296810299158,0.01113008800894,0.054276704788208]],[[0.11311466246843,0.014574927277863,-0.024315664544702],[-0.058636527508497,-0.039156287908554,-0.0014289307873696],[0.019199665635824,-0.053833648562431,0.027619875967503]],[[-0.06778322905302,-0.023753900080919,0.054016143083572],[-0.015862990170717,-0.010015791282058,0.069292791187763],[0.053448602557182,0.066369511187077,0.090072065591812]],[[-0.065702751278877,-0.092625953257084,-0.0092215333133936],[0.060190930962563,-0.06744472682476,-0.023502910509706],[-0.11370654404163,-0.016184683889151,0.038255888968706]],[[0.004640756174922,0.028428906574845,-0.0093791345134377],[0.0062986551783979,-0.035781845450401,-0.020630380138755],[-0.020889945328236,0.10723078250885,0.072049133479595]],[[0.072244167327881,-0.14182199537754,0.12634335458279],[0.20392516255379,0.0084858480840921,0.10371799767017],[0.028793023899198,-0.041493289172649,0.081687361001968]],[[0.0320875197649,-0.016611507162452,-0.020910015329719],[-0.048022221773863,-0.08011881262064,-0.026342397555709],[0.11516135185957,-0.0093142837285995,-0.056796822696924]],[[0.07474908977747,-0.034837260842323,-0.02380745857954],[0.0056920265778899,0.017980819568038,0.072550900280476],[0.10280518978834,0.017556073144078,0.027646204456687]],[[-0.064304746687412,-0.06661581993103,-0.059910986572504],[-0.038277246057987,0.0040845335461199,0.087731145322323],[0.034701451659203,0.015758765861392,0.040605757385492]],[[-0.02026366814971,0.032305926084518,0.10156539827585],[-0.0042450535111129,0.0095668593421578,0.028311287984252],[-0.021144796162844,-0.053919184952974,0.028252279385924]],[[-0.036461126059294,0.085369668900967,-0.031594134867191],[0.13864091038704,0.18769079446793,0.23496536910534],[0.12365387380123,-1.9195467757527e-06,0.13641571998596]],[[0.0092591363936663,-0.073244154453278,-0.041230939328671],[-0.074502654373646,-0.11272979527712,-0.092621378600597],[-0.030394671484828,-0.052864529192448,-0.10308729112148]],[[-0.0034493829589337,-0.0043545546941459,0.054994311183691],[0.12917022407055,-0.0055761788971722,-0.020914820954204],[-0.04110224545002,-0.029520666226745,-0.059102132916451]],[[-0.001458203420043,-0.048358857631683,-0.018457047641277],[0.023780489340425,-0.02000000141561,-0.046109542250633],[0.013368533924222,-0.092986091971397,0.046058382838964]],[[-0.057216513901949,-0.026515262201428,-0.0054577337577939],[-0.0043206717818975,0.16490119695663,-0.012397528626025],[-0.028710564598441,-0.017324367538095,0.0082411076873541]],[[0.042908538132906,-0.018720548599958,0.16183550655842],[-0.063170872628689,-0.0022855941206217,0.017511051148176],[-0.007359363604337,-0.026598431169987,-0.083746813237667]],[[0.029289461672306,-0.066407881677151,-0.059172473847866],[-0.011908220127225,0.065778106451035,0.022752974182367],[0.022192306816578,-0.039957925677299,0.024906488135457]],[[-0.029330492019653,0.14977213740349,-0.013724849559367],[0.029295088723302,0.016704220324755,0.063528269529343],[0.041778363287449,0.13298434019089,0.046757910400629]],[[-0.021233178675175,0.053973793983459,-0.072710856795311],[-0.01276434212923,-0.043695200234652,-0.10374619811773],[0.0010639536194503,0.029908543452621,0.041309826076031]],[[0.042829837650061,-0.0670086145401,-0.040846064686775],[-0.076164327561855,0.0079979673027992,-0.067288942635059],[0.13991896808147,0.055936019867659,0.027181340381503]],[[0.097549103200436,0.028655113652349,0.060381762683392],[0.0054073096252978,0.05963134393096,0.11134142428637],[0.10109701007605,-0.0025862993206829,0.043024685233831]],[[0.0093392394483089,-0.0075831077992916,-0.031871967017651],[0.025260899215937,-0.017921600490808,-0.070460557937622],[0.0069827204570174,0.028091069310904,-0.013110538944602]],[[0.057659849524498,0.0429324246943,-0.038265965878963],[0.084887616336346,-0.066021166741848,-0.050810385495424],[0.085636921226978,0.064909517765045,0.052819699048996]],[[-0.077977865934372,0.055819541215897,-0.12240801751614],[0.028975343331695,0.060493178665638,-0.034474350512028],[0.053766839206219,0.023770013824105,0.037105161696672]],[[0.060459122061729,0.091432213783264,-0.017717681825161],[0.057810090482235,0.010405171662569,0.063735648989677],[0.019047617912292,-0.041626494377851,0.066161438822746]],[[-0.056698940694332,0.056557714939117,0.0138925537467],[0.0016740951687098,-0.048406329005957,-0.019789403304458],[0.082668036222458,0.095150411128998,0.091838277876377]],[[-0.010263728909194,0.077780924737453,0.058957494795322],[-0.014841469936073,0.12500889599323,0.045879028737545],[-0.14527072012424,0.020216463133693,-0.011040948331356]],[[-0.026920039206743,0.00024827910237946,0.011374910362065],[-0.012266236357391,-0.045175455510616,-0.038066923618317],[0.034406892955303,-0.00046304860734381,0.022156300023198]],[[-0.050386801362038,0.03144483268261,-0.063434667885303],[0.11619850993156,0.014270740561187,-0.022827817127109],[-0.026433480903506,-0.015457903966308,0.057682033628225]],[[0.06592221558094,0.05507529899478,-0.010760201141238],[0.036246605217457,0.0070302705280483,0.01152160204947],[-0.016722658649087,0.034687481820583,0.083081379532814]],[[0.092137165367603,0.051413338631392,-0.037388049066067],[-0.0099041741341352,0.023882219567895,0.041912384331226],[-0.019456194713712,0.04511134326458,0.053583983331919]],[[-0.067078419029713,-0.036182079464197,-0.030428308993578],[0.019528010860085,-0.046384777873755,-0.092678345739841],[0.15052042901516,-0.013067271560431,0.039507891982794]],[[-0.038613107055426,-0.04735179618001,-0.026121946051717],[-0.0098553309217095,0.052797473967075,0.0071969265118241],[-0.0073922444134951,-0.0033867130987346,-0.03075492195785]],[[0.01167176105082,0.011266423389316,0.025689547881484],[0.079597741365433,0.014552432112396,-0.010825312696397],[-0.064295686781406,0.056586690247059,-0.042315579950809]],[[-0.053095154464245,0.085950843989849,-0.0010200833203271],[0.070141173899174,0.063672684133053,0.094792619347572],[0.076834380626678,0.028731063008308,0.084321692585945]],[[0.08180195838213,-0.05673861131072,-0.14312954246998],[0.071872435510159,0.050951365381479,0.036544535309076],[0.052406124770641,0.087259232997894,0.033090978860855]],[[0.014581771567464,0.034348845481873,-0.014601177535951],[0.022298267111182,0.046197932213545,0.02157324180007],[0.048774443566799,-0.015104115009308,0.011156656779349]],[[0.020890133455396,0.021908275783062,-0.038362342864275],[0.010969458147883,-0.015169464983046,0.056580729782581],[0.06076118350029,0.042827602475882,-0.086311027407646]],[[0.031845927238464,-0.077723599970341,0.028521241620183],[0.12278699874878,0.084433391690254,0.058930307626724],[0.053601052612066,-0.057438794523478,-0.041767708957195]],[[-0.10894437134266,-0.0097590303048491,-0.016152400523424],[-0.037314180284739,-0.021665841341019,0.037619352340698],[0.030219161882997,-0.051033563911915,0.036579925566912]],[[-0.0086669707670808,-0.051597200334072,-0.015287547372282],[0.0093984324485064,-0.042940024286509,0.010396764613688],[0.081239067018032,-0.02997107245028,-0.044190388172865]],[[0.039301440119743,0.033539187163115,0.047706563025713],[0.04987259209156,0.089120380580425,-0.0422951169312],[0.049233503639698,0.096453286707401,-0.077276781201363]],[[0.087394490838051,-0.080940127372742,-0.057087458670139],[0.0082078706473112,-0.0050033475272357,0.02586373500526],[-0.052654135972261,0.11813236027956,-0.00024995993589982]],[[-0.007489949464798,-0.010138131678104,0.052098605781794],[0.044124718755484,0.033867437392473,0.081488937139511],[0.0077410107478499,0.12316304445267,-0.064813651144505]],[[0.046898681670427,0.022722512483597,-0.031586609780788],[0.0021001026034355,0.066467069089413,-0.049415227025747],[0.069851525127888,-0.038889076560736,-0.017090629786253]],[[-0.036748677492142,0.026521233841777,0.032701585441828],[-0.059682969003916,-0.029297638684511,0.025077126920223],[0.029723742976785,-0.0096988864243031,-0.0026868293061852]],[[-0.049687899649143,0.031457576900721,-0.045723620802164],[-0.035188369452953,0.0030095488764346,-0.043455746024847],[-0.062764599919319,-0.071723625063896,-0.079202100634575]],[[0.051805846393108,0.041290186345577,-0.016308683902025],[-0.0055591608397663,-0.015380547381938,0.035904861986637],[0.080896615982056,0.01691821962595,0.081409111618996]],[[-0.036799322813749,-0.034893363714218,0.023759437724948],[0.0004484053933993,0.079226598143578,0.027827169746161],[-0.03184986114502,-0.094663940370083,-0.0031838067807257]],[[0.032360386103392,0.093851342797279,0.058815740048885],[0.0077219819650054,-0.025216154754162,0.060924589633942],[0.065863654017448,0.021523114293814,0.13251949846745]],[[0.031259339302778,0.05890129879117,0.080652050673962],[0.073760107159615,0.063054665923119,-0.0039317607879639],[-0.04018085077405,-0.0053595877252519,-0.038780961185694]],[[0.038765966892242,-0.056437343358994,0.031756997108459],[0.04427657276392,0.075677499175072,-0.017713371664286],[-0.066188409924507,0.076429910957813,0.018172781914473]],[[0.027804864570498,0.036699149757624,-0.011295570060611],[0.070621348917484,-0.059268813580275,0.037474296987057],[0.027973169460893,-0.01824557594955,-0.081818349659443]],[[0.085319794714451,-0.047193393111229,0.010005068033934],[0.068632900714874,0.0059597645886242,-0.046165000647306],[-0.045704487711191,-0.062516279518604,0.0028779164422303]],[[0.055185824632645,-0.00054871989414096,0.042644180357456],[-0.005047807469964,0.097099967300892,0.040450263768435],[0.0052043967880309,0.048179470002651,0.11812052130699]],[[0.023994566872716,-0.0016551107401028,0.10030011087656],[0.0028791797813028,0.083147652447224,-0.051156684756279],[-0.002991515211761,0.080207213759422,0.049814004451036]],[[-0.080935068428516,0.016492284834385,-0.011382359080017],[-0.05152940377593,-0.045187126845121,0.028166761621833],[0.064026117324829,-0.078888386487961,-0.026054376736283]],[[0.0086829215288162,-0.028723297640681,-0.052101403474808],[0.030162958428264,-0.070250675082207,-0.091233752667904],[-0.032461490482092,-0.0968848913908,0.043064549565315]],[[0.034659449011087,-0.0095362467691302,0.021489487960935],[0.082586504518986,0.02083944901824,-0.0098187979310751],[0.01851611956954,0.033553272485733,0.020383026450872]],[[-0.016187530010939,-0.02330295369029,0.011218846775591],[-0.016495732590556,0.057695247232914,-0.03089777380228],[0.022895565256476,0.018560644239187,-0.024785570800304]],[[-0.10445503145456,-0.047432508319616,0.020942470058799],[-0.029515266418457,0.0029056156054139,0.065756194293499],[-0.010469201020896,0.029376028105617,0.029150549322367]],[[0.010557746514678,-0.022750839591026,0.015265484340489],[-0.021755756810308,0.0080095147714019,-0.021937960758805],[0.001315335277468,-0.083647362887859,-0.014604425057769]],[[0.043363060802221,0.067419968545437,0.12077823281288],[-0.062373708933592,0.044902056455612,0.076521515846252],[0.055333767086267,0.028699167072773,0.051139589399099]],[[0.011982520110905,0.00074522953946143,0.099730513989925],[0.066410265862942,-0.0095728682354093,0.060509242117405],[0.010580257512629,0.0072231255471706,-0.096718832850456]],[[-0.0085097998380661,-0.064648389816284,-0.010146525688469],[-0.074904412031174,0.0021838555112481,0.086833260953426],[-0.026786429807544,0.030493294820189,0.040028538554907]],[[0.0072587030008435,0.077097572386265,0.016714032739401],[0.12959478795528,0.00017388247943018,-0.014272782020271],[0.081270232796669,0.013058205135167,-0.011817095801234]],[[0.014712942764163,0.027806341648102,-0.0032267596106976],[0.02339974232018,0.099290534853935,0.020305011421442],[0.066316813230515,0.031318705528975,0.066811457276344]],[[0.078446507453918,0.10198450833559,0.0760817527771],[0.11835721135139,0.065229430794716,-0.045069463551044],[-0.074316114187241,-0.018751474097371,0.074148841202259]],[[-0.016444867476821,0.067365013062954,0.021842435002327],[-0.022091418504715,0.026915393769741,0.018447836861014],[0.021211422979832,0.010479966178536,0.073939628899097]],[[0.13676328957081,0.05715623870492,0.0095076598227024],[-0.0072675733827055,0.11836722493172,0.043334443122149],[-0.055499266833067,0.087025925517082,0.03522714227438]],[[0.010748976841569,-0.0074864798225462,0.016367692500353],[-0.045751571655273,-0.030873822048306,0.013103496283293],[-0.049106374382973,-0.0029033699538559,0.013795658946037]],[[-0.044416032731533,0.061648350208998,-0.023352835327387],[-0.062322143465281,-0.022863605991006,-0.036215674132109],[-0.098781645298004,0.027070233598351,0.06547138094902]],[[-0.071668155491352,-0.016469597816467,-0.028121415525675],[-0.022039067000151,-0.014207026921213,-0.009335464797914],[-0.050806600600481,0.0024900019634515,0.076068364083767]],[[-0.06318761408329,-0.069446109235287,0.036493603140116],[0.17221869528294,0.040676359087229,0.029917092993855],[-0.091313347220421,0.021813962608576,0.065259464085102]],[[0.079090245068073,-0.044188566505909,-0.014307107776403],[0.022509882226586,-0.10101803392172,0.086206510663033],[-0.050229959189892,0.037620060145855,0.029993982985616]],[[0.051818784326315,-0.017066847532988,0.0086737964302301],[0.016835145652294,-0.014084885828197,0.054238568991423],[-0.026090601459146,-0.070637904107571,-0.048193141818047]],[[0.10548493266106,-0.019680511206388,0.027121858671308],[-0.025523627176881,-0.032519493252039,-0.061021126806736],[0.018767684698105,0.025398945435882,-0.080603681504726]],[[0.082214176654816,-0.048915922641754,-0.034923851490021],[-0.058361448347569,0.037200465798378,0.087851285934448],[0.039288360625505,-0.028803151100874,-0.014176715165377]],[[0.040930908173323,0.050116609781981,0.029975032433867],[-0.017730120569468,-0.001284753670916,0.0086152404546738],[0.01813162304461,0.080859519541264,-0.0082370927557349]],[[-0.021772621199489,-0.028067840263247,-0.052324134856462],[0.060394920408726,-0.022680407389998,-0.0023068364243954],[-0.034568671137094,0.042054940015078,0.068467862904072]],[[-0.0010875157313421,-0.0038363533094525,0.0035961756948382],[0.056504532694817,-0.086769305169582,-0.075521752238274],[0.047291342169046,-0.018956942483783,-0.063921608030796]],[[0.0019771901424974,0.090991303324699,-0.014824405312538],[0.059642631560564,0.07213119417429,0.028104856610298],[0.057900108397007,0.028221480548382,0.037886213511229]],[[0.032047376036644,-0.023190557956696,-0.028560286387801],[0.097417026758194,-0.016246046870947,0.024985453113914],[0.0054792412556708,-0.092032603919506,0.018992677330971]],[[0.069749638438225,0.11189987510443,0.043966513127089],[0.058080434799194,0.089649580419064,0.061386790126562],[-0.013244582340121,0.01989434286952,-0.019017824903131]],[[0.068305514752865,-0.055264960974455,-0.022063363343477],[-0.016773929819465,-0.056978095322847,-0.059121988713741],[0.048710282891989,-0.064918264746666,0.035329032689333]],[[0.082826413214207,-0.025499578565359,0.061990555375814],[0.0049315402284265,0.0073029831983149,0.096680030226707],[0.10578476637602,0.036546740680933,0.0085926009342074]],[[0.048340275883675,0.069832138717175,0.05190497636795],[0.12254539132118,0.050082705914974,0.045268684625626],[0.059844549745321,-0.011667774058878,0.061002649366856]],[[0.012041022069752,0.0067874542437494,0.0079120052978396],[-0.017110696062446,-0.089546449482441,-0.013914681039751],[0.0091421185061336,-0.010912666097283,0.066968180239201]],[[-0.051707092672586,0.0049580372869968,-0.014322686940432],[-0.11805280297995,-0.068829961121082,0.010850569233298],[-0.1005587130785,-0.037121497094631,0.12489949166775]],[[0.039765294641256,0.012591367587447,-0.029382638633251],[0.062719598412514,0.072832383215427,0.047456651926041],[-0.085036583244801,0.074230037629604,-0.030036691576242]],[[-0.011969280429184,0.070185855031013,0.03688483312726],[0.0088318046182394,-0.00092245719861239,0.04593700915575],[-0.059503339231014,0.01990651525557,-0.053246010094881]],[[-0.084057703614235,-0.032279435545206,-0.013544041663408],[-0.010503323748708,0.0038907134439796,-0.083234816789627],[0.12555828690529,-0.054483823478222,0.039832193404436]],[[0.0056124040856957,-0.032538205385208,-0.045546654611826],[-0.0039822543039918,-0.070576503872871,0.15448591113091],[0.044722013175488,-0.02596589922905,-0.0057566906325519]],[[0.11504433304071,0.034437082707882,-0.0051572006195784],[-0.016923313960433,0.0029726936481893,0.13564024865627],[-0.025772113353014,-0.025684440508485,0.11908216029406]],[[-0.017694918438792,-0.020042086020112,-0.036099471151829],[0.014813127927482,-0.005852519068867,-0.050260979682207],[0.01117202732712,0.036283530294895,0.091366060078144]],[[-0.052354730665684,0.055469650775194,0.014423244632781],[-0.015396257862449,0.032313290983438,-0.046284474432468],[0.12051858752966,0.017099671065807,-0.010909006930888]],[[0.015192339196801,-0.081100836396217,-0.017721930518746],[-0.024523476138711,-0.0013925196835771,0.033177234232426],[0.05085775628686,0.040321100503206,-0.037408988922834]],[[0.095152445137501,0.072166241705418,0.03084366209805],[0.1072063818574,0.10173324495554,0.067467980086803],[0.05752195417881,0.072641894221306,0.0073404549621046]],[[0.12913276255131,-0.043331317603588,0.097095005214214],[-0.020782373845577,0.0030457458924502,-0.11047147214413],[0.023392755538225,0.049643620848656,-0.0093675469979644]],[[0.034535612910986,-0.099107198417187,-0.017777137458324],[0.035179872065783,0.0066242967732251,0.018278071656823],[0.074553444981575,0.069250613451004,0.0068390863016248]],[[0.011800241656601,0.027054361999035,-0.015270077623427],[0.13521924614906,0.079613603651524,0.046089634299278],[-0.0009402270661667,0.0037388510536402,0.089843854308128]],[[0.088189318776131,0.04402494803071,0.025182973593473],[-0.045895531773567,0.057267062366009,-0.0024711370933801],[-0.071468785405159,0.062231954187155,0.038272745907307]],[[-0.017512556165457,0.050585690885782,0.0021349620074034],[-0.032379489392042,-0.068838313221931,0.014998435042799],[-0.092693895101547,-0.0011526419548318,0.0062160496599972]],[[0.0071124453097582,-0.05819408223033,0.036722645163536],[-0.0051787053234875,-0.093196205794811,-0.0033078622072935],[0.077591024339199,-0.092943586409092,-0.08235627412796]],[[-0.037074215710163,0.042440671473742,-0.059877038002014],[-0.0094422809779644,0.069991640746593,0.033755764365196],[-0.0051527596078813,0.019434040412307,0.00013577709614765]],[[0.015992075204849,-0.07098001986742,-0.073271200060844],[0.040808666497469,0.068279780447483,-0.073311723768711],[0.036969922482967,0.057772655040026,0.1777351051569]],[[-0.023300541564822,0.014844180084765,0.091723814606667],[-0.024924783036113,0.086014084517956,0.018575912341475],[0.0075063118711114,-0.079643733799458,-0.11896778643131]],[[0.039574723690748,0.032818350940943,0.082648262381554],[0.055911891162395,-0.02862585708499,0.064667530357838],[-0.0078427968546748,0.0044423155486584,-0.065929584205151]],[[0.049752321094275,-0.017259351909161,0.038952719420195],[0.057016503065825,0.052545003592968,0.096381954848766],[-0.0084531717002392,0.051204819232225,-0.037707023322582]],[[-0.056031502783298,-0.038762386888266,-0.12613427639008],[-0.03777526691556,0.015752641484141,-0.061966728419065],[0.013504247181118,-0.046944912523031,0.084700770676136]],[[0.022523207589984,-0.064533673226833,-0.0033149409573525],[-0.032450780272484,-0.082632251083851,-0.067344725131989],[-0.010604783892632,-0.01396063528955,0.0058397236280143]],[[0.052827782928944,0.041963260620832,0.046544898301363],[0.10747837275267,0.033070258796215,-0.047150459140539],[0.046505343168974,0.030116312205791,0.14196920394897]],[[0.078860990703106,0.00027340502128936,0.016977462917566],[0.10940836369991,0.027060195803642,0.00061903765890747],[-9.0535562776495e-05,0.091920956969261,0.12357487529516]],[[-0.027131969109178,-0.0050663040019572,-0.0069953841157258],[-0.040603037923574,-0.034585740417242,-0.07512854039669],[-0.080263368785381,-0.033088993281126,0.04754301533103]],[[-0.018328938633204,-0.0085127269849181,-0.060127038508654],[0.022701449692249,0.036464083939791,-0.021357906982303],[0.039841525256634,0.090540617704391,0.025311006233096]],[[0.039760246872902,0.02282627299428,0.01795163191855],[0.044200632721186,0.030815713107586,-0.033998165279627],[-0.061735615134239,0.080503411591053,-0.0026024223770946]],[[-0.00067890580976382,0.025868069380522,0.0023683400359005],[0.010536788962781,-0.076815582811832,-0.0059207486920059],[0.16089209914207,0.11717481166124,0.063291423022747]],[[0.025148738175631,0.028788970783353,0.060765907168388],[0.070663280785084,0.0089986445382237,0.015319886617362],[0.0039661712944508,-0.019722575321794,0.023212375119328]],[[-0.029848663136363,0.077777191996574,-0.063071832060814],[0.030007135123014,-0.023768911138177,0.027020173147321],[0.0014575199456885,0.011973293498158,0.036788370460272]],[[0.031213890761137,-0.10585106909275,-0.024551862850785],[0.068608663976192,0.051551785320044,-0.049106370657682],[0.059066880494356,0.039431549608707,-0.016436628997326]],[[-0.0038928329013288,-0.14810498058796,-0.030413776636124],[0.022587118670344,-0.018552849069238,-0.07748369127512],[-0.0010515782050788,0.007795246783644,-0.010361806489527]],[[0.048867158591747,0.094468727707863,-0.0049072848632932],[0.013747274875641,0.032405190169811,-0.034114353358746],[0.006920444779098,0.086220614612103,-0.066928721964359]],[[0.088445693254471,-0.10244293510914,-0.046449579298496],[0.1552247852087,0.029287539422512,0.026334950700402],[0.015518370084465,0.12369704991579,0.099741421639919]],[[0.03668387979269,0.010437483899295,-0.015922412276268],[0.080497890710831,-0.034799665212631,-0.031521014869213],[-0.033709514886141,0.094607725739479,0.027884930372238]]],[[[0.048248015344143,0.092079348862171,0.017540901899338],[-0.022524295374751,-0.03165228664875,-0.043305035680532],[0.11113208532333,0.021195899695158,-0.035709902644157]],[[-0.0053944145329297,0.066832929849625,0.021400090306997],[-0.016432207077742,0.0081469733268023,0.025732031092048],[-0.046651590615511,0.018160661682487,-0.054330475628376]],[[-0.019290966913104,-0.0011591396760195,0.03942596912384],[-0.010770361870527,-0.032576475292444,-0.0073138251900673],[-0.053286883980036,-0.033441860228777,0.0019230985781178]],[[0.015654694288969,0.0024614541325718,0.066688872873783],[3.0369012165465e-05,0.028906442224979,-0.0035760053433478],[0.019350543618202,0.011070718057454,0.0079108709469438]],[[-0.046903166919947,-0.056337062269449,-0.1535982042551],[-0.00016661940026097,-0.025202115997672,0.072517715394497],[-0.043227393180132,-0.067310087382793,-0.052076518535614]],[[0.060038231313229,0.024357223883271,0.067055702209473],[0.0063361059874296,0.049584407359362,0.051678702235222],[0.026490671560168,0.03610010445118,0.0069826445542276]],[[0.089566834270954,0.020622907206416,0.011803719215095],[0.029043681919575,-0.0094039840623736,-0.0034506907686591],[-0.042189322412014,-0.025059195235372,0.020510910078883]],[[0.039832592010498,-0.057762071490288,-0.0431890450418],[-0.014552221633494,0.023725306615233,-0.029429774731398],[0.013570056296885,0.0053184665739536,0.088887631893158]],[[-0.037939179688692,0.033058881759644,0.046049751341343],[0.016131332144141,0.12997029721737,0.018767466768622],[-0.0069560846313834,0.0033886830788106,0.0055763465352356]],[[0.16076768934727,0.052525818347931,0.049256920814514],[0.077834941446781,0.00094337982591242,0.18396082520485],[0.074582204222679,-0.0064819687977433,0.10559441149235]],[[-0.0027185885701329,0.012142590247095,0.033049002289772],[-0.066185556352139,0.038384154438972,-0.015771457925439],[-6.6875785705633e-05,0.025863176211715,0.014747358858585]],[[0.013364273123443,0.027894644066691,0.023283127695322],[-0.0065043396316469,0.10099302232265,0.0026259562000632],[0.0084768701344728,0.062385700643063,0.044019650667906]],[[0.031981039792299,0.083138562738895,0.049677535891533],[0.015638895332813,-0.012451727874577,0.037602808326483],[-0.023379970341921,-0.018086398020387,-0.012933845631778]],[[-0.011962962336838,-0.11837188154459,0.0099222743883729],[0.061901398003101,0.014969238080084,-0.029685616493225],[0.025431865826249,0.05059901252389,0.13358570635319]],[[0.032831780612469,-0.0049050478264689,0.14192292094231],[0.087898172438145,-0.041824147105217,0.073126003146172],[0.023658880963922,0.12839952111244,0.013370004482567]],[[-0.021853288635612,0.045738220214844,0.040197104215622],[0.033270701766014,-0.0053571360185742,0.056836735457182],[-0.064459621906281,-0.061277698725462,-0.069751746952534]],[[-0.010037522763014,0.066362634301186,-0.047323223203421],[0.028042389079928,-0.042315799742937,0.02490465156734],[-0.057356514036655,0.091902405023575,0.0031378255225718]],[[0.061574041843414,0.063294447958469,-0.077073685824871],[0.036659497767687,-0.0039154589176178,-0.0229547675699],[-0.053490966558456,-0.085955783724785,-0.073524132370949]],[[-0.027828196063638,-0.023965165019035,0.017732931300998],[-0.014857212081552,-0.00099306518677622,0.039816178381443],[0.028218222782016,-0.099817402660847,0.089052692055702]],[[0.053790509700775,-0.022551590576768,0.019076893106103],[0.067689642310143,-0.0090353572741151,-0.090468935668468],[0.068446420133114,0.0052109966054559,0.14937601983547]],[[-0.072288639843464,-0.11741308867931,0.00084003229858354],[0.10268431901932,0.040418803691864,0.037998046725988],[0.0070796580985188,0.021690838038921,0.026495426893234]],[[0.075703807175159,-0.028632238507271,0.11827897280455],[0.12806722521782,0.084888800978661,-0.046819016337395],[-0.0010718458797783,0.056886915117502,0.10796989500523]],[[-0.02548936009407,0.041101843118668,-0.059580825269222],[0.059256922453642,-0.023934176191688,0.012118808925152],[0.01775137335062,0.05664911866188,-0.074339494109154]],[[0.075731515884399,0.056501049548388,0.1084393709898],[-0.0073734340257943,-0.014466790482402,-0.039168201386929],[-0.040244989097118,0.023260653018951,0.021491477265954]],[[0.096673771739006,0.057437539100647,0.00879583414644],[0.029202597215772,-0.036813125014305,0.02090878225863],[-0.011989730410278,0.024600530043244,0.072320565581322]],[[-0.05392887070775,0.02753771468997,-0.017638700082898],[0.011036803014576,-0.027782130986452,0.021483771502972],[-0.017541563138366,-0.035738684237003,0.025233576074243]],[[0.036084439605474,-0.0670360699296,0.055203814059496],[-0.040333885699511,0.067890129983425,0.045763362199068],[0.020623279735446,-0.042915150523186,0.10299418866634]],[[0.032208867371082,0.027168210595846,-0.0062731970101595],[0.015835251659155,0.016685554757714,0.12061973661184],[0.035436224192381,0.047860030084848,0.06400965154171]],[[-0.028775220736861,-0.052712082862854,0.013655337505043],[-0.071446269750595,0.068171039223671,-0.075764589011669],[0.074230365455151,0.06076318770647,0.0057770786806941]],[[-0.0023356983438134,0.025781845673919,0.010663241147995],[0.017313171178102,0.022646993398666,-0.056809224188328],[-0.043957579880953,-0.004937537945807,-0.033848840743303]],[[0.020896809175611,-0.045030821114779,0.030896652489901],[0.022815046831965,0.038719762116671,0.020246285945177],[0.053408320993185,0.009650600142777,0.052051022648811]],[[0.0020522910635918,-0.042218942195177,-0.045298282057047],[-0.051298514008522,-0.061604596674442,0.083704940974712],[0.041683446615934,-0.039796363562346,0.026667974889278]],[[0.0060149300843477,0.055783785879612,0.11251258850098],[-0.026729153469205,-0.085448212921619,0.02722492814064],[-0.0189208984375,0.035301759839058,0.073224544525146]],[[-0.071097381412983,0.0050457194447517,0.032512553036213],[-0.03501807525754,0.027074109762907,-0.0095440624281764],[0.063217401504517,0.086749039590359,0.027239950373769]],[[-0.10220979899168,-0.021313359960914,-0.021001143381],[0.063552752137184,-0.012989768758416,-0.017590988427401],[0.0012031972873956,-0.048072770237923,0.094802193343639]],[[0.018271816894412,-0.031938254833221,0.014388735406101],[0.0099580828100443,0.052572503685951,0.038574058562517],[0.0086573557928205,-0.014009366743267,0.021643372252584]],[[-0.023427495732903,-0.016104051843286,-0.022004256024957],[0.062151167541742,-0.061335600912571,-0.038171857595444],[-0.033787481486797,-0.045732170343399,-0.068125560879707]],[[0.036728713661432,-0.027291633188725,0.02797987870872],[-0.0094672041013837,0.0024735953193158,-0.010162523947656],[0.079680413007736,-0.0089016780257225,-0.053960680961609]],[[0.039902839809656,0.011618821881711,-0.0061856866814196],[-0.047017719596624,-0.023082939907908,-0.063891634345055],[0.029392015188932,-0.022798942402005,0.016179777681828]],[[0.11036434024572,-0.07202186435461,-0.0063066519796848],[0.012434018775821,0.045898646116257,0.033883523195982],[0.01883714646101,0.035237196832895,0.014844471588731]],[[-0.053293667733669,0.035336088389158,0.040683887898922],[-0.015446891076863,-0.015547391958535,-0.078115239739418],[-0.05279303714633,0.042955983430147,0.053141165524721]],[[0.020818827673793,0.02645174600184,-0.083511687815189],[-0.011544583365321,-0.075211450457573,0.053339589387178],[0.03152121976018,-0.030433597043157,-0.010129771195352]],[[0.06315441429615,-0.053021088242531,0.067097894847393],[0.0090138716623187,0.099322006106377,0.038486529141665],[0.021232238039374,-0.037235278636217,0.093759328126907]],[[0.031777944415808,0.069974094629288,0.06938897818327],[-0.07612070441246,0.044695530086756,-0.021932329982519],[0.0059056794270873,-0.013656651601195,0.041228108108044]],[[0.10433930158615,-0.0555713288486,0.01733087003231],[0.057938847690821,-0.036108899861574,-0.060350954532623],[0.0024138770531863,0.056686084717512,0.093801736831665]],[[0.055041335523129,0.084532208740711,-0.03337524458766],[0.037867367267609,0.065219841897488,0.067179746925831],[0.095165930688381,0.042561534792185,0.025734286755323]],[[0.04832299426198,0.020153468474746,0.075024351477623],[-0.069422200322151,0.041046544909477,0.0018862589495257],[0.070626959204674,-0.024750459939241,0.059555675834417]],[[0.053936187177896,-0.048765100538731,0.045681443065405],[-0.018521202728152,0.067731633782387,-0.049897003918886],[0.033448521047831,0.05971347540617,-0.081803977489471]],[[-0.070238538086414,-0.014055445790291,0.024873077869415],[-0.056639760732651,0.076076872646809,-0.063624449074268],[0.00072721327887848,0.054706621915102,-0.059049140661955]],[[-0.024860577657819,0.057966243475676,0.048066403716803],[0.08965140581131,0.026696309447289,0.076705478131771],[0.047101270407438,-0.080436825752258,0.035850413143635]],[[-0.086416780948639,-0.00747952144593,-0.086774460971355],[-0.025719972327352,-0.01607433333993,0.091626785695553],[0.012824825011194,-0.029548175632954,-0.03769064694643]],[[-0.0534448325634,-0.013336380943656,0.038711350411177],[0.062426097691059,0.075547933578491,0.037045329809189],[-0.023512465879321,0.0070393471978605,0.06645592302084]],[[0.03343503177166,0.0048183584585786,-0.02414240501821],[-0.023216651752591,0.00010461494093761,0.046115752309561],[0.007854008115828,-0.014722074382007,0.023044802248478]],[[-0.038558878004551,-0.0010872127022594,-0.010915425606072],[-0.02976524271071,0.017383668571711,0.014223080128431],[-0.11432407796383,0.0030178707093,-0.054100431501865]],[[-0.004677533172071,0.01767841540277,0.053959555923939],[0.069852650165558,0.012478052638471,-0.0065041589550674],[0.055841468274593,-0.036360397934914,-0.022469954565167]],[[0.047412995249033,0.060488678514957,0.04539668187499],[-0.016533212736249,0.0242212228477,-0.021916702389717],[0.016450269147754,0.013109359890223,-0.009821998886764]],[[0.016323735937476,0.11581158638,0.066165007650852],[0.041326582431793,-0.082426965236664,-0.061673976480961],[0.0025392903480679,-0.065911285579205,0.030817890539765]],[[-0.013064756989479,-0.0084615144878626,0.029897149652243],[0.01648185774684,-0.073206715285778,-0.010623062029481],[-0.085074104368687,-0.036638546735048,0.018459387123585]],[[0.019157541915774,0.032955948263407,0.10550359636545],[0.035784166306257,0.044012732803822,0.030264146625996],[0.079044736921787,0.022238643839955,0.098322011530399]],[[0.016977706924081,-0.020066725090146,0.081983834505081],[-0.026724066585302,-0.012944427318871,0.014486158266664],[0.092605724930763,0.0062257451936603,-0.0093924980610609]],[[-0.039386607706547,0.11099912971258,0.016947757452726],[0.095688156783581,0.14414711296558,-0.0055504124611616],[-0.014640708453953,-0.044700775295496,0.027440601959825]],[[-0.01793267019093,0.0052549876272678,-0.035538025200367],[-0.023005405440927,-0.062516018748283,0.072022087872028],[0.013831819407642,0.012436759658158,0.032397590577602]],[[0.019312810152769,0.070928104221821,0.1053131967783],[-0.023418398573995,-0.018155187368393,-0.053727872669697],[-0.0010545183904469,0.031227262690663,0.040954899042845]],[[0.041002683341503,0.034441348165274,0.019483363255858],[0.078135438263416,0.028349241241813,0.048564743250608],[0.10531199723482,0.022855462506413,0.066046342253685]],[[0.025895467028022,0.026403179392219,0.030146192759275],[-0.023532578721642,-0.033253684639931,-0.0029910153243691],[-0.034786000847816,0.053326297551394,0.034461073577404]],[[0.045740388333797,0.0017582981381565,0.057281818240881],[-0.045708812773228,0.0064903041347861,0.039735719561577],[0.050624445080757,0.045498847961426,0.088855601847172]],[[0.053543977439404,-0.066706590354443,0.037493988871574],[0.020013999193907,0.025182902812958,0.046434354037046],[0.032808966934681,0.04162085428834,0.038226861506701]],[[0.048594910651445,-0.010991560295224,0.026410557329655],[0.043862801045179,0.012553255073726,0.057899162173271],[0.029644709080458,-0.015807416290045,-0.01489950157702]],[[-0.041018553078175,0.011484808288515,0.055328708142042],[0.074342146515846,0.063200421631336,-0.039137650281191],[-0.001955496147275,0.06444151699543,-0.026692278683186]],[[0.068974323570728,0.071255445480347,-0.011918290518224],[0.032749474048615,0.043166905641556,-0.010896865278482],[0.075320161879063,0.065650038421154,0.012473773211241]],[[0.061932783573866,-0.018350785598159,0.0006335427169688],[0.027111042290926,-0.040267027914524,0.023158019408584],[-0.04509935900569,0.11787378042936,0.058655895292759]],[[0.03531351685524,-0.016993552446365,0.031987965106964],[-0.082104101777077,-0.010958555154502,0.083640806376934],[0.012068163603544,0.040367059409618,-0.0031492887064815]],[[0.051540330052376,0.0029526902362704,0.036294333636761],[0.09306176751852,-0.028443375602365,0.002217315370217],[0.00069784326478839,0.076232425868511,0.04661613330245]],[[0.018336292356253,-0.040474649518728,0.030406249687076],[0.042440813034773,-0.0035748402588069,-0.00066554202931002],[0.10005030035973,-0.043925624340773,0.043222032487392]],[[-0.016135588288307,-0.010614724829793,0.015247170813382],[-0.041630174964666,-0.015447302721441,-0.021733349189162],[-0.025584414601326,0.076150111854076,-0.038974277675152]],[[0.079732902348042,0.034604266285896,-0.0028925538063049],[-0.050085373222828,-0.0059921485371888,-0.054491240531206],[0.061639253050089,-0.02627370133996,0.03478679805994]],[[0.16010236740112,0.0070854434743524,0.056907750666142],[0.0024856305681169,0.012430896982551,-0.019142188131809],[0.051970273256302,-0.050556212663651,-0.022015165537596]],[[0.1434830725193,0.058985915035009,0.010669440962374],[0.031185336410999,0.047444578260183,0.00012356764636934],[0.0058204955421388,0.083728991448879,0.12935453653336]],[[-0.051093120127916,0.039977576583624,-0.0052455994300544],[-0.022910285741091,0.0081571470946074,-0.023675167933106],[-0.0021416980307549,-0.056493584066629,0.0048637385480106]],[[-0.021827111020684,-0.082316823303699,0.070474550127983],[0.013208333402872,-0.03166414052248,-0.026700707152486],[-0.038200069218874,0.0096501233056188,-0.028974279761314]],[[-0.040943160653114,0.10837870836258,0.0053944997489452],[0.076641336083412,-0.0020639065187424,0.092358075082302],[0.010091802105308,0.017446408048272,-0.060798387974501]],[[0.010712937451899,-0.0046050339005888,0.027943775057793],[0.092797726392746,0.030332360416651,-0.013235879130661],[-0.019279457628727,-0.062860123813152,0.10526560992002]],[[0.021489076316357,-0.0453971773386,-0.034614305943251],[0.055790159851313,-0.03372036665678,0.053769115358591],[0.030162343755364,-0.02183285728097,0.0046095405705273]],[[-0.057313937693834,-0.015062777325511,0.075491063296795],[0.030925843864679,0.046608209609985,-0.010502415709198],[-0.038814228028059,-0.023058626800776,0.04324197396636]],[[0.060999806970358,0.019926644861698,0.068277977406979],[0.025164898484945,0.041757982224226,0.074458211660385],[0.049991767853498,-0.020001133903861,0.065967410802841]],[[-0.0385372787714,0.046843104064465,0.016775622963905],[0.008980555459857,0.035728871822357,-0.034497000277042],[0.1326285302639,0.11119953542948,-0.0027234849985689]],[[0.080195493996143,-0.00826680008322,0.038767378777266],[0.014924969524145,0.10911945253611,-0.00089085299987346],[0.039825238287449,0.07827340066433,0.047707423567772]],[[-0.026617653667927,0.068464629352093,0.063579767942429],[-0.0087258080020547,0.046825218945742,0.098297514021397],[0.02100333198905,0.07383768260479,0.054245516657829]],[[-0.040118236094713,0.032445773482323,-0.061886124312878],[-0.0035717349965125,0.036625742912292,-0.034073144197464],[0.010461936704814,0.05722351744771,0.085043095052242]],[[0.029926635324955,-0.002554670907557,0.00069571915082633],[0.0062299235723913,-0.024766575545073,-0.016717109829187],[-0.034977674484253,-0.049303006380796,-0.071885898709297]],[[0.052084386348724,0.03602622076869,0.033588372170925],[0.011583362706006,-0.042934022843838,-0.013467255048454],[0.038349486887455,0.00031646151910536,0.016034096479416]],[[0.070372223854065,0.049480400979519,-0.020664507523179],[-0.029326705262065,-0.017349738627672,-0.032157849520445],[0.035960339009762,-0.058207370340824,-0.010143931955099]],[[0.0078427800908685,-0.013908305205405,-0.0071943663060665],[-0.0056063765659928,-0.014682425186038,0.019373714923859],[-0.098239742219448,0.051447153091431,-0.021458109840751]],[[0.046591185033321,-0.0047782547771931,0.0047849901020527],[0.04310005530715,0.030338672921062,0.012987315654755],[0.016639485955238,-0.089272350072861,0.08519421517849]],[[-0.0074688345193863,-0.047193322330713,-0.037596516311169],[0.027150316163898,-0.035311706364155,0.056720614433289],[-0.045980703085661,0.09985126554966,0.0017139562405646]],[[0.095608651638031,0.013527798466384,0.042967166751623],[-0.07756894826889,-0.0335793197155,0.016044119372964],[-0.020950654521585,-0.03998139500618,-0.024897394701838]],[[0.043078262358904,0.051506131887436,0.043714068830013],[-0.025671470910311,0.10983470082283,0.10084358602762],[0.14218428730965,0.043269295245409,0.0049573169089854]],[[0.019135987386107,0.02820666320622,0.0010293569648638],[0.06998798251152,-0.046426605433226,0.080579780042171],[0.041839919984341,0.019206276163459,0.030400531366467]],[[0.017673943191767,-0.0014129092451185,-0.012326765805483],[-0.069217145442963,-0.020181030035019,-0.028349177911878],[-0.011886538937688,-0.0058244056999683,0.033307056874037]],[[0.057847324758768,0.036850903183222,-0.075790144503117],[0.012251419015229,0.019639421254396,0.062310203909874],[0.010561062023044,0.027855139225721,0.065659955143929]],[[-0.017985656857491,0.029871312901378,-0.0076016522943974],[0.044706359505653,0.051168333739042,0.0046040299348533],[-0.034641731530428,0.01079682726413,0.045735917985439]],[[-0.0073919766582549,-0.077149718999863,0.074651658535004],[-0.089929647743702,-0.010289528407156,0.065415307879448],[0.048860397189856,0.040434401482344,0.07771160453558]],[[-0.023040726780891,-0.026365960016847,-0.022090850397944],[0.048634603619576,0.0025208406150341,0.019013844430447],[-0.049243971705437,0.033417396247387,-0.021592015400529]],[[0.013970552012324,-0.053576864302158,0.060336742550135],[-0.0382383428514,-0.020274646580219,-0.016226008534431],[0.0051651252433658,0.073885321617126,-0.0025263475254178]],[[-0.020387552678585,0.01768490858376,0.014589454047382],[-0.04634703323245,-0.016422541812062,0.0015791177283973],[0.024441698566079,0.021819241344929,-0.048617735505104]],[[0.021201476454735,0.037882961332798,0.057941760867834],[-0.053187668323517,0.034662421792746,0.091529347002506],[0.015452981926501,0.0041595529764891,0.064050279557705]],[[-0.011534607969224,0.028838001191616,0.0043834554962814],[0.021701438352466,0.013618650846183,0.062749654054642],[-0.0031122299842536,0.03173953294754,-0.026698336005211]],[[0.025118056684732,-0.087108597159386,-0.064665377140045],[-0.021281940862536,-0.014801376499236,-0.0013810723321512],[-0.057284835726023,-0.056718457490206,0.024619830772281]],[[0.0255654361099,0.053692582994699,0.0034920696634799],[0.0091341966763139,-0.00013692866195925,-0.019026162102818],[-0.035353254526854,-0.041308429092169,-0.019742392003536]],[[0.015266636386514,0.12503108382225,0.06367289274931],[-0.080573618412018,0.027263155207038,0.045258197933435],[0.026030769571662,-0.024395709857345,-0.12005518376827]],[[0.026267483830452,-0.027126085013151,-0.0082072662189603],[0.036298107355833,-0.016788929700851,-0.016632793471217],[-0.056920021772385,0.058121394366026,-0.011481576599181]],[[-0.04387316852808,-0.027913616970181,-0.05965031683445],[0.013300153426826,0.015166949480772,-0.01928124204278],[-0.0066869165748358,0.044616479426622,0.02537932805717]],[[-0.0067121321335435,0.010504845529795,-0.04993724822998],[0.0021468829363585,0.05781128257513,-0.039602857083082],[-0.0054353098385036,0.10109735280275,-0.037081018090248]],[[-0.08031465113163,0.048419617116451,-0.010371802374721],[-0.016604559496045,-0.073724813759327,0.045401386916637],[0.028095558285713,0.053225442767143,-0.11066429316998]],[[-0.014668005518615,-0.012129590846598,-0.00029335069120862],[0.0044786254875362,-0.085432730615139,0.028623040765524],[0.054299291223288,-0.036648876965046,-0.055864125490189]],[[0.052502259612083,-0.044265300035477,-0.0012844357406721],[0.013876020908356,-0.014039541594684,0.10208436101675],[-0.023190388455987,0.015389709733427,0.016727091744542]],[[-0.031296517699957,-0.0080256946384907,-0.019218327477574],[-0.046985205262899,0.02138121984899,0.036632779985666],[-0.012456696480513,0.095200285315514,0.010302549228072]],[[0.02109631896019,-0.03014955483377,-0.046299900859594],[0.027332488447428,-0.052884016185999,0.0025518767070025],[0.012546215206385,0.0093758637085557,0.046023465692997]],[[-0.042831312865019,-0.087141081690788,-0.028287172317505],[-0.094688929617405,0.01383669860661,-0.042223673313856],[-0.039652414619923,0.013144204393029,-0.027245905250311]],[[-0.065323702991009,-0.049939248710871,-0.016680588945746],[-0.0041130413301289,-0.08245774358511,-0.06374105066061],[0.010248511098325,-0.019885949790478,-0.091092579066753]],[[-0.023912524804473,-0.099229887127876,-0.00028138738707639],[0.0028010145761073,-0.094163902103901,-0.014866759069264],[-0.0094321519136429,-0.007283884100616,0.022847410291433]],[[-0.047072779387236,0.020598594099283,-0.0059950514696538],[-0.0036910448689014,0.016442039981484,0.022261654958129],[0.028827276080847,-0.024382285773754,0.021797521039844]],[[0.079846814274788,-0.041129268705845,-0.032599460333586],[-0.0014361805515364,-0.0060109421610832,0.036107368767262],[-0.0040586451068521,-0.0082165962085128,0.04398026689887]],[[-0.083461552858353,0.083469845354557,0.056600097566843],[0.019815677776933,0.034716039896011,0.063768818974495],[0.022642744705081,-0.018424578011036,-0.097552843391895]],[[0.051755376160145,0.023219918832183,0.0059102843515575],[0.096766032278538,0.0035170638002455,0.092986710369587],[-0.057782415300608,0.049849715083838,-0.0066029471345246]],[[-0.04155120626092,-0.07037491351366,0.042042702436447],[0.067432515323162,-0.037501808255911,-0.024606255814433],[0.038651145994663,-0.0098994327709079,-0.02159783616662]],[[-0.059093300253153,0.010571908205748,0.055441603064537],[0.020834516733885,0.0048676584847271,0.10231713950634],[-0.058271683752537,0.019799783825874,-0.064716055989265]],[[0.007163395639509,0.018024327233434,0.029442088678479],[-0.04484499245882,-0.051459532231092,0.063135005533695],[-0.023751402273774,-0.048683859407902,-0.022721169516444]]],[[[-0.05645328015089,0.036783467978239,0.047580026090145],[0.011348119936883,0.041359525173903,-0.01153864338994],[-0.052894786000252,-0.022409811615944,-0.025594133883715]],[[-0.04305524379015,0.052610673010349,-0.022087076678872],[-0.085732512176037,0.0015763734700158,-5.2063733164687e-05],[0.0085275564342737,0.0096339834854007,-0.017352178692818]],[[-0.0033803952392191,0.0040131430141628,-0.038732871413231],[0.021554462611675,0.01768540777266,-0.02023958414793],[0.057190772145987,-0.0030902484431863,0.015528874471784]],[[0.12880590558052,0.0037162038497627,0.026695307344198],[0.02522068284452,0.074191674590111,0.014148111455142],[0.012897613458335,0.052443955093622,0.089924998581409]],[[-0.060402378439903,0.015885177999735,-0.025545122101903],[0.0075133121572435,0.046203680336475,0.015168328769505],[-0.086166255176067,-0.035807173699141,-0.059012800455093]],[[0.088146731257439,0.013716119341552,0.031430929899216],[0.033861197531223,0.019756060093641,0.038412801921368],[0.00078417762415484,0.0019823887851089,-0.058879010379314]],[[0.0039983801543713,-0.037254091352224,0.0095259454101324],[-0.03419041633606,-0.058788564056158,-0.082887172698975],[-0.025024427101016,-0.034122504293919,-0.024425514042377]],[[0.033435076475143,0.0097211850807071,0.01740132458508],[-0.0026585559826344,-0.013831994496286,-0.020883733406663],[0.014493132941425,-0.0082378629595041,0.078031189739704]],[[0.011504582129419,0.082385718822479,-0.025893108919263],[-0.001777138793841,-0.08596296608448,-0.072410307824612],[0.041071094572544,0.013429553247988,-0.00054071960039437]],[[0.018697533756495,0.051453869789839,0.074712283909321],[0.074817419052124,0.032557636499405,0.068977825343609],[0.0027294135652483,-0.042102307081223,0.14822219312191]],[[-0.054694566875696,0.0083578517660499,-0.023297030478716],[0.02290909551084,0.061982408165932,0.0060742655768991],[-0.0061630569398403,0.0058093215338886,0.030386604368687]],[[-0.014279881492257,0.095477089285851,0.0090283323079348],[-0.021393705159426,0.055563621222973,0.06538899242878],[0.049290616065264,0.12932224571705,-0.034205254167318]],[[0.010627209208906,-0.008233311586082,-0.018218947574496],[-0.017284162342548,-0.02634634822607,-0.055304996669292],[0.01540853548795,0.0166015625,-0.093941450119019]],[[0.1086677312851,-0.059965092688799,-0.04004804417491],[0.014290068298578,0.013689848594368,0.063358418643475],[-0.01762567460537,-0.050378203392029,0.038798470050097]],[[-0.051002319902182,0.091227933764458,0.050340164452791],[0.18035209178925,-0.0028924841899425,-0.035404924303293],[0.046406246721745,0.11485679447651,-0.0084233321249485]],[[0.013450546190143,0.020372305065393,0.035177323967218],[0.020574072375894,0.020261563360691,-0.011489969678223],[0.080823831260204,-0.0071421675384045,0.031525313854218]],[[-0.062991783022881,0.026343956589699,0.019082807004452],[-0.017888175323606,0.047676656395197,0.0010466944659129],[0.0090421214699745,-0.056423757225275,0.022784732282162]],[[-0.049696713685989,-0.006044888868928,-0.015808843076229],[-0.030180359259248,0.085004352033138,0.093948349356651],[-0.010325881652534,-0.062682621181011,-0.028899108991027]],[[-0.021579073742032,-0.01680013909936,-0.0166693367064],[0.042189676314592,-0.01229371316731,-0.05750959739089],[-0.040146343410015,0.049514509737492,0.020647708326578]],[[0.086574502289295,0.050822176039219,0.030308835208416],[0.051082275807858,0.00054903997806832,-0.037020709365606],[0.005758136510849,-0.0064230496063828,0.045549493283033]],[[0.080044776201248,0.036522176116705,-0.05038857460022],[0.0037330482155085,0.10396310687065,0.0047110365703702],[-0.054523527622223,-0.018328880891204,0.0066955219954252]],[[0.00088044791482389,0.12916466593742,0.05060113966465],[0.032646223902702,0.043670400977135,0.06081035733223],[0.016856258735061,-0.051455110311508,0.060713406652212]],[[0.065437436103821,0.012506025843322,-0.035458989441395],[0.03464762493968,-0.013384738005698,0.05567754432559],[-0.058563854545355,0.0085743889212608,-0.052987471222878]],[[-0.074411422014236,-0.059999037533998,-0.054246224462986],[0.024956941604614,-0.038633845746517,-0.056618858128786],[-0.039434261620045,0.020754231140018,-0.048418246209621]],[[0.082432001829147,0.033294700086117,-0.073219411075115],[-0.026805708184838,0.01797965914011,0.11195877194405],[0.061220612376928,-0.014397920109332,-0.018493019044399]],[[0.029337493702769,0.072631195187569,0.0071818730793893],[-0.042901322245598,-0.0085008516907692,0.12884849309921],[0.020983567461371,-0.046681273728609,0.010316243395209]],[[-0.068070217967033,0.047932606190443,-0.039984125643969],[0.033014111220837,0.026323286816478,-0.01825357042253],[0.080684438347816,0.001407467876561,0.044779844582081]],[[-0.015169975347817,0.036786675453186,0.089182510972023],[0.046876288950443,0.010098132304847,0.063162125647068],[0.0082131922245026,0.043204121291637,-0.00021796322835144]],[[-0.031990356743336,-0.060303669422865,0.01281138882041],[-0.029508244246244,-0.10228640586138,-0.012737629003823],[-0.00093226745957509,0.060352187603712,0.0014619412831962]],[[-0.019463807344437,0.0054482836276293,-0.004737317096442],[-0.039879664778709,0.024779923260212,0.075992412865162],[0.0065924590453506,0.034900356084108,-0.001903276424855]],[[0.00069174158852547,-0.00070592411793768,0.0053077219054103],[0.033427059650421,0.036226622760296,0.020654570311308],[-0.044676188379526,0.082596331834793,-0.026784690096974]],[[0.076923087239265,0.039899799972773,0.052365437150002],[0.024414200335741,0.071888580918312,-0.00079397240187973],[0.078315019607544,0.074432887136936,-0.040067635476589]],[[-0.010164435952902,0.018544169142842,-0.020794095471501],[0.0032983056735247,-0.039419788867235,-0.055320974439383],[-0.016182834282517,-0.016524326056242,0.042400136590004]],[[0.0094046015292406,-0.039409078657627,-0.026632562279701],[0.04118687659502,0.11218889802694,-0.013234473764896],[0.025094129145145,0.021262610331178,-0.017052546143532]],[[-0.05051252618432,-0.061431150883436,0.055643260478973],[0.055845953524113,0.052120421081781,-0.0032132500782609],[0.0072685047052801,0.10783184319735,-0.069491848349571]],[[-0.097498148679733,-0.057778052985668,0.0044016758911312],[0.040752977132797,0.042079448699951,0.088264420628548],[-0.012707490473986,-0.016817543655634,0.00090778688900173]],[[-0.096364416182041,0.02636287920177,0.017769120633602],[0.028171826153994,0.063955426216125,-0.02649843133986],[-0.023441381752491,-0.038957733660936,-0.039336152374744]],[[0.015113002620637,-0.049508936703205,0.01502556540072],[0.015921300277114,0.00034289556788281,-0.02536522783339],[-0.021492118015885,0.050906356424093,0.049456488341093]],[[0.083625860512257,-0.011781334877014,0.0098536815494299],[-0.011644615791738,0.11980701237917,0.028302609920502],[-0.088380955159664,0.033219289034605,-0.10057407617569]],[[0.086632803082466,0.066847681999207,-0.0030847659800202],[0.10155882686377,0.014205185696483,0.0495625436306],[0.058665707707405,-0.0011616046540439,0.026017319411039]],[[0.014026686549187,0.0038193196523935,0.045257776975632],[0.074145890772343,-0.044528305530548,0.0044372407719493],[-0.04226066544652,0.058277636766434,0.012698406353593]],[[-0.024651357904077,-0.014293221756816,-0.049971472471952],[-0.015161351300776,-0.030993724241853,-0.0038128751330078],[-0.019463874399662,0.0011588494526222,0.0098275812342763]],[[0.066483676433563,0.014137914404273,-0.023250536993146],[-0.036245699971914,0.082871086895466,0.072294965386391],[-0.029250169172883,-0.077708162367344,0.035625703632832]],[[0.012897434644401,0.018036752939224,-0.047506600618362],[-0.032296668738127,-0.04155521094799,-0.022174749523401],[-0.00016508925182279,-0.053892690688372,0.076430052518845]],[[-0.042084664106369,0.052614618092775,0.023285126313567],[0.071063548326492,0.074063658714294,0.019451474770904],[-0.048560079187155,0.038106720894575,0.035411331802607]],[[-0.020729532465339,-0.033636648207903,0.0057573108933866],[0.022870194166899,0.0023880735971034,0.017209928482771],[0.021527329459786,0.10698830336332,0.028889711946249]],[[0.016094414517283,-0.017085436731577,0.056940045207739],[0.035602048039436,0.065444655716419,-0.031207541003823],[0.023821178823709,0.070379830896854,-0.020692406222224]],[[-0.055812180042267,-0.013398411683738,0.059564240276814],[0.13636569678783,0.020481511950493,-0.075194805860519],[0.032532956451178,-0.072043254971504,0.079032614827156]],[[0.0092234667390585,0.0098192254081368,-0.02025674469769],[0.041796397417784,0.041991878300905,0.050919894129038],[-0.019207151606679,0.030352583155036,-0.0074487524107099]],[[0.026102198287845,0.027219964191318,0.052122682332993],[-0.013872654177248,-0.06626258045435,0.054173566401005],[-0.030761387199163,-0.027812035754323,0.015788856893778]],[[0.0093808127567172,0.026823900640011,-0.031320098787546],[-0.0020761298947036,0.021198960021138,-0.0029366870876402],[0.050998318940401,-0.039923392236233,-0.080075025558472]],[[0.070924296975136,0.020536433905363,-0.067194744944572],[0.049421645700932,-0.028867769986391,0.074195846915245],[0.056009333580732,-0.0068312571384013,-0.04414052888751]],[[0.056373629719019,0.11912631988525,0.013367716223001],[0.028674203902483,0.044883169233799,0.064848273992538],[0.010275361128151,0.030952269211411,-0.035365957766771]],[[-0.006916104350239,0.050576128065586,-0.01366179343313],[0.041440829634666,0.030759220942855,0.042990144342184],[-0.039970111101866,0.070653699338436,0.026758482679725]],[[-0.045322846621275,0.02069135941565,0.066344261169434],[-0.078687086701393,0.042665332555771,0.020707121118903],[0.051093365997076,0.050007332116365,-0.045944388955832]],[[0.084728673100471,0.050543051213026,-0.060781799256802],[0.061987087130547,0.057724792510271,0.0034800125285983],[0.057535871863365,0.11296870559454,-0.0060057872906327]],[[-0.06837984919548,-0.0066115497611463,-0.064163602888584],[-0.021388132125139,-0.043818145990372,-0.02202045544982],[-0.021280655637383,-0.014310299418867,-0.023922933265567]],[[-0.025916548445821,-0.044752802699804,-0.036162190139294],[0.012871860526502,0.05783111974597,-0.02479213476181],[0.097971357405186,0.074959419667721,0.091792389750481]],[[0.001296122209169,0.040217038244009,0.0036831814795732],[-0.060570452362299,-0.0062195151112974,0.0046543725766242],[0.033794436603785,-0.018725097179413,0.10008075088263]],[[-0.03982737660408,0.03511480614543,0.051589407026768],[0.038026165217161,-0.036504164338112,-0.02436182461679],[-0.010191354900599,-0.032749626785517,0.041613228619099]],[[0.079212464392185,-0.034587223082781,0.03816244378686],[-0.012893714942038,-0.025964595377445,-0.031038032844663],[-0.033618602901697,-0.047734644263983,0.063145644962788]],[[0.010706526227295,-0.012210371904075,-0.038149069994688],[-0.018699500709772,4.3485102651175e-05,0.016318295150995],[-0.083697125315666,-0.059270042926073,-0.039203703403473]],[[0.01886398345232,0.027857467532158,-0.0019111076835543],[-0.027093410491943,0.062500886619091,0.05610366538167],[0.0025617338251323,-0.003975594881922,0.014221392571926]],[[-0.048750128597021,0.087553434073925,-0.022037031129003],[-0.040184985846281,-0.056498527526855,-0.033802032470703],[0.0031633097678423,-0.045787692070007,0.064745888113976]],[[0.034721348434687,0.020930461585522,-0.0020179182756692],[-0.025012787431479,-0.059235569089651,0.15915471315384],[0.0037476096767932,0.075112149119377,0.013402229174972]],[[0.061577767133713,0.0098857618868351,0.10811726748943],[-0.015209166333079,0.063759498298168,0.048429295420647],[-0.019770067185163,-0.0071978522464633,0.085595339536667]],[[0.030864274129272,-0.0078117754310369,0.020802894607186],[0.0083806477487087,0.018320424482226,-0.0097680445760489],[0.083391346037388,0.056126844137907,0.063099391758442]],[[-0.013754587620497,0.10193019360304,0.046312924474478],[0.034452844411135,0.06680478900671,-0.021567249670625],[-0.016408078372478,0.067940346896648,0.081751123070717]],[[-0.10347225517035,-0.0035722206812352,-0.010165114887059],[-0.010807627812028,-0.054091352969408,0.044575303792953],[-0.0032938276417553,-0.051496602594852,0.026339748874307]],[[0.0073065105825663,0.10341367125511,0.020141921937466],[0.056431725621223,0.070356108248234,0.044047895818949],[0.038860034197569,0.064213454723358,0.020216489210725]],[[0.043265357613564,0.016507035121322,0.0064523825421929],[-0.059412244707346,-0.025112513452768,0.044895503669977],[-0.084120228886604,0.077181741595268,0.0055823787115514]],[[0.014520019292831,0.098091498017311,-0.076429307460785],[-0.065068081021309,-0.02748809568584,0.01822548545897],[0.041502568870783,-0.00094156560953707,0.065921798348427]],[[-0.021742969751358,-0.0086895823478699,0.082953602075577],[-0.0051996042020619,-0.065751060843468,0.004225954413414],[-0.019293235614896,0.06115360185504,-0.038454614579678]],[[0.038851447403431,0.090980365872383,-0.073065750300884],[0.05808474496007,0.012568558566272,0.026565410196781],[0.053378246724606,0.074190959334373,-0.05273536965251]],[[0.027054898440838,0.02130214497447,0.00055204011732712],[0.076992131769657,0.041437432169914,0.020693432539701],[-0.0069645410403609,-0.018728112801909,0.023443397134542]],[[0.0117092365399,0.045675329864025,0.056691534817219],[0.080748550593853,0.063954561948776,-0.033342443406582],[-0.020589485764503,0.027699086815119,0.071623630821705]],[[0.048339627683163,0.038297869265079,-0.0043027275241911],[-0.090382225811481,-0.084478601813316,-0.028873912990093],[-0.038658507168293,0.014222172088921,-0.015017113648355]],[[-0.010527051053941,0.0293950997293,-0.026680205017328],[-0.015857275575399,0.13311450183392,0.07527032494545],[0.013498700223863,-0.046614270657301,-0.013340469449759]],[[0.036837108433247,-0.013892248272896,-0.0076992586255074],[0.053543489426374,0.063956633210182,0.046823062002659],[0.015988683328032,0.0099786585196853,0.084226980805397]],[[-0.037645135074854,-0.041196592152119,0.033626426011324],[0.0037033632397652,0.0094405859708786,-0.014356604777277],[-0.001407963805832,-0.028490297496319,-0.013510005548596]],[[0.043757788836956,-0.066043183207512,0.060414478182793],[0.012170626781881,0.046994883567095,0.12604646384716],[0.032246530056,-0.083167545497417,0.048064734786749]],[[0.091291397809982,-0.059290204197168,0.01177807431668],[0.01662864163518,-0.07441096752882,0.035779446363449],[-0.080258846282959,-0.093528747558594,0.0039165006019175]],[[-0.039213195443153,-0.0099970120936632,-0.0020474335178733],[0.009566618129611,0.021084927022457,0.11511191725731],[-0.060063797980547,0.10145608335733,-0.036169581115246]],[[0.0446587651968,0.0082133179530501,0.07278710603714],[-0.0015998090384528,0.013678256422281,0.055172927677631],[-0.041130881756544,0.030612828209996,0.01208530087024]],[[-0.0078999483957887,-0.012999286875129,0.035982895642519],[-0.021633729338646,0.084189862012863,0.11200404167175],[0.059429112821817,0.041680455207825,0.03309703618288]],[[0.14657413959503,-0.01086562871933,0.019143871963024],[-0.033481292426586,0.022819697856903,-0.0034632061142474],[0.037297297269106,-0.063630111515522,-0.069583892822266]],[[-0.012872664257884,-0.042025849223137,0.072711862623692],[-0.0073662181384861,0.0718744546175,0.025118054822087],[-0.016333803534508,-0.029284127056599,0.034697405993938]],[[0.022588672116399,0.041802611202002,0.070826813578606],[0.0072254464030266,0.08097056299448,0.075450964272022],[-0.025582689791918,-0.012888013385236,0.032643757760525]],[[-0.0032105033751577,0.12517453730106,-0.052956182509661],[-0.038721486926079,0.041981518268585,-0.001430848846212],[0.063499219715595,-0.029219700023532,0.088264912366867]],[[-0.015462687239051,-0.021514466032386,-0.09444671869278],[-0.032638866454363,0.029191665351391,-0.034894771873951],[-0.021619478240609,0.018861660733819,0.053704362362623]],[[0.001199091784656,0.064647004008293,0.016611265018582],[-0.018681783229113,0.025309016928077,0.069474041461945],[0.039618197828531,-0.006896466948092,0.031491007655859]],[[-0.015663584694266,0.019982937723398,-0.020725797861814],[0.094262130558491,0.065598152577877,0.044873751699924],[0.054488908499479,0.033137533813715,0.094113171100616]],[[-0.018133098259568,-0.019603250548244,0.059085950255394],[0.028200613334775,0.026191914454103,0.077575549483299],[-0.042155981063843,-0.00027670926647261,0.028679527342319]],[[0.0095044327899814,0.019278226420283,0.019446831196547],[0.060248866677284,0.11497462540865,0.032938107848167],[0.022156974300742,-0.0031321588903666,0.040860053151846]],[[0.067718788981438,0.005886628292501,-0.0097686555236578],[0.068506434559822,-0.01655431650579,0.021569076925516],[0.045429885387421,0.037522166967392,0.067343309521675]],[[-0.008325606584549,0.062867529690266,-0.0055939708836377],[0.0068574608303607,0.043214298784733,0.017726007848978],[0.042218200862408,0.062849201261997,-0.042802669107914]],[[0.04178499430418,0.030217992141843,0.042083472013474],[-0.0068156775087118,0.014786336570978,0.068347185850143],[0.037861444056034,0.012054588645697,0.056662805378437]],[[0.11454223841429,-0.038603115826845,0.033897452056408],[-0.016933463513851,-0.040203802287579,0.042919792234898],[0.026403602212667,0.10442665964365,0.025602981448174]],[[0.031729605048895,-0.010258932597935,-0.023966366425157],[0.054297566413879,-0.0062614404596388,0.03748431801796],[0.00081547437002882,0.041950967162848,0.053324177861214]],[[0.053260881453753,-0.013036259450018,-0.026465069502592],[-0.075408019125462,0.064313009381294,-0.019637586548924],[-0.036214306950569,-0.02930636331439,0.038021009415388]],[[-0.077236674726009,0.065524727106094,-0.050599884241819],[0.054929755628109,-0.015330445021391,0.058045636862516],[0.0047473637387156,-0.010167414322495,0.089345052838326]],[[0.031492792069912,-0.0024402658455074,-0.03910780325532],[0.025413427501917,0.034784581512213,0.030162956565619],[-0.056398928165436,0.093031212687492,-0.018087476491928]],[[-0.036951366811991,-0.0097347917035222,-0.078513234853745],[-0.015371356159449,-0.022397447377443,0.016567835584283],[0.06546475738287,0.040589336305857,0.0015531306853518]],[[-0.006604291498661,0.066795937716961,0.078085921704769],[-0.00028472606209107,0.012432895600796,-0.01060644723475],[0.03548426181078,-0.023851316422224,0.011778671294451]],[[-0.010617597959936,-0.06017728894949,-0.027002932503819],[0.037393298000097,0.1130229011178,0.061967898160219],[-0.020397143438458,0.0081688761711121,0.065150953829288]],[[-0.017613910138607,0.11527488380671,-0.027925580739975],[0.022139558568597,0.023202184587717,-0.012012626975775],[0.041742105036974,0.10635115206242,0.027862591668963]],[[0.08725518733263,0.0079983696341515,-0.020988827571273],[-0.016358902677894,-0.021203650161624,0.034593593329191],[0.086036257445812,0.00071196688804775,0.039177063852549]],[[-0.0023875467013568,0.073823764920235,0.074871718883514],[0.019321931526065,0.043401122093201,0.013792023062706],[0.022122481837869,0.07819489389658,0.022922117263079]],[[-0.043467596173286,0.074693582952023,0.016419446095824],[0.041041746735573,-0.10050527006388,0.041824121028185],[-0.005995377432555,-0.076730154454708,-0.027634356170893]],[[-0.0041847857646644,0.048423487693071,-0.070596121251583],[0.058160841464996,0.01783718727529,0.0035772318951786],[0.03177623078227,-0.028650008141994,-0.10179954767227]],[[0.048427078872919,0.016828207299113,-0.0026821428909898],[0.0083116963505745,0.003524508792907,-0.058367002755404],[-0.0076545863412321,-0.029925517737865,0.045737460255623]],[[-0.04799722880125,-0.0044273710809648,-0.076962791383266],[-0.029753791168332,0.012974197976291,0.04325882717967],[0.023041320964694,-0.0034811922814697,0.017194958403707]],[[0.031280051916838,0.044390182942152,0.056806400418282],[0.04848550260067,-0.0057529513724148,-0.05728130787611],[0.029723763465881,0.0027955344412476,-0.014301476068795]],[[0.044554557651281,0.077942930161953,-0.025385806336999],[0.025363704189658,-0.038943003863096,-0.031811900436878],[0.012773473747075,0.068321466445923,-0.018696341663599]],[[-0.038528684526682,-0.040598757565022,0.040337909013033],[-0.071422733366489,0.0037737356033176,0.024373326450586],[0.044977378100157,-0.034286487847567,0.039045579731464]],[[0.033460550010204,-0.055391624569893,0.024802885949612],[0.0066093723289669,0.020078139379621,0.023835904896259],[-0.056467585265636,-0.016536487266421,-0.093449704349041]],[[-0.065456204116344,0.077618263661861,0.012376384809613],[0.054922938346863,0.0054505714215338,0.038715749979019],[-0.010776657611132,0.059860844165087,0.0099968342110515]],[[-0.031542267650366,0.057093311101198,0.00093312014359981],[0.026489218696952,-0.029236733913422,0.0093695390969515],[-0.015334444120526,-0.014505423605442,0.051344312727451]],[[-0.052735920995474,0.029311779886484,0.011107563041151],[-0.027898028492928,-0.053809713572264,0.023136980831623],[-0.0061943088658154,0.13524122536182,0.05563897639513]],[[0.037115093320608,-0.0060848570428789,0.047354850918055],[0.013665987178683,-0.078346863389015,0.020587664097548],[0.001097219530493,-0.069066621363163,0.0068352585658431]],[[-0.079620242118835,0.063635304570198,0.014908116310835],[-0.0069970064796507,0.021947022527456,-0.064981713891029],[-0.041317619383335,-0.036163907498121,0.014673305675387]],[[-0.022129015997052,0.028267454355955,0.03194122761488],[0.035143367946148,0.033447440713644,0.033960592001677],[0.080364294350147,0.11214654147625,-0.038169786334038]],[[-0.027315996587276,-0.04507839679718,-0.00229054200463],[0.076496653258801,-0.0055500348098576,0.0011483702110127],[-0.018627999350429,-0.091807894408703,-0.0049813482910395]],[[-0.0005425593117252,0.0025140698999166,0.067658565938473],[-0.11700060963631,0.062397077679634,0.020178131759167],[0.075567007064819,0.018676390871406,-0.010912667959929]],[[-0.02873845025897,0.0074556483887136,0.034589491784573],[0.037338148802519,-0.03808332234621,0.042501077055931],[0.026504896581173,0.03708178550005,0.046016398817301]],[[-0.033078622072935,0.013637034222484,0.029568366706371],[0.11356677114964,0.01086668856442,0.034591104835272],[0.095804244279861,-0.051097061485052,-0.042950801551342]],[[0.087989538908005,-0.05433564633131,0.088644616305828],[0.035423513501883,-0.046136718243361,-0.055218670517206],[0.022532353177667,0.091567970812321,0.083378374576569]],[[-0.013420267030597,-0.059623580425978,0.00034462567418814],[-0.00022459552565124,0.10620556026697,-0.01005229074508],[-0.014574916101992,0.0070106475614011,0.025004142895341]]],[[[0.015860507264733,-0.039423860609531,0.027412744238973],[0.033588249236345,0.029234128072858,-0.0027371232863516],[-0.0031314338557422,-0.0029231433290988,-0.00082366884453222]],[[-0.018892120569944,0.028643812984228,-0.06353621929884],[-0.053983345627785,-0.017124716192484,-0.057631649076939],[-0.020202839747071,-0.0011826910777017,0.052680492401123]],[[0.017376977950335,0.0080624958500266,-0.044260382652283],[0.022845007479191,0.040030773729086,-0.03690193593502],[0.057162560522556,0.034891817718744,-0.04421953856945]],[[-0.014318741858006,0.0082467803731561,-0.036497067660093],[-0.018361713737249,0.045314844697714,-0.017884524539113],[0.078831151127815,0.026625627651811,0.065590180456638]],[[0.012245030142367,-0.036718975752592,0.026083644479513],[-0.037903480231762,0.0017782355425879,-0.11764853447676],[0.0070525612682104,0.019734811037779,-0.012516946531832]],[[0.035137724131346,0.045887071639299,-0.027450732886791],[0.039155181497335,-0.028419909998775,0.069040574133396],[0.095936931669712,0.019298205152154,0.042276348918676]],[[-0.073285661637783,-0.055940184742212,-0.016127366572618],[0.05970349162817,0.014557866379619,-0.050886794924736],[-0.024150423705578,0.042842384427786,0.011839686892927]],[[-0.02748236246407,0.067092828452587,0.011228336952627],[-0.013132687658072,0.058871757239103,-0.019349049776793],[0.091886378824711,-0.031194688752294,0.026146091520786]],[[-0.044913105666637,0.013970868662,0.01308451872319],[-0.096106149256229,0.0059405178762972,-0.0081148147583008],[-0.0050342585891485,0.12293366342783,0.020842898637056]],[[-0.026132732629776,0.055080771446228,-0.02060223557055],[0.080769717693329,-0.050506751984358,-0.0031626566778868],[0.13830949366093,-0.02286839671433,-0.0030817363876849]],[[-0.014554800465703,0.042313396930695,-0.055187955498695],[0.028224987909198,-0.055959854274988,0.016961278393865],[0.096498288214207,0.011260333471,-0.0048167435452342]],[[-0.021579409018159,0.019906675443053,0.044061217457056],[0.033784825354815,0.019775876775384,0.053313955664635],[0.0089935073629022,0.022945959120989,0.035248845815659]],[[-0.03278000280261,-0.020300885662436,0.077818356454372],[0.057822767645121,-0.039516795426607,0.022037651389837],[0.002996027469635,-0.06457107514143,-0.12804460525513]],[[0.02165642939508,0.047665070742369,0.070866011083126],[-0.004923352971673,0.087269864976406,-0.0055530103854835],[0.045702591538429,-0.083269529044628,0.046055525541306]],[[0.090248338878155,0.055467486381531,-0.059064731001854],[0.016266211867332,0.16364608705044,0.00048747050459497],[-0.07943095266819,0.013921516947448,0.061040855944157]],[[-0.035839579999447,-4.5096436224412e-05,-0.071003317832947],[-0.00098320574034005,-0.048946890980005,0.0098898960277438],[0.015904175117612,-0.067080318927765,-0.0098650334402919]],[[0.034771140664816,0.00027328112628311,-0.029804583638906],[0.0056494697928429,-0.059320818632841,-0.032507322728634],[0.0051438366062939,-0.0067906538024545,0.059306036680937]],[[-0.033498615026474,0.03330997005105,-0.0062206434085965],[0.024135069921613,-0.030431309714913,0.039587307721376],[-0.070003464818001,0.019296318292618,0.010354110971093]],[[-0.05517216771841,-0.022321062162519,0.044193305075169],[0.025701740756631,-0.051814690232277,0.062461461871862],[-0.037583347409964,0.025533048436046,-0.033838085830212]],[[0.081973575055599,-0.089810654520988,-0.00023609658819623],[-0.010310086421669,0.021483037620783,-0.03180754929781],[0.05183095857501,-0.059119127690792,0.067021176218987]],[[-0.039722513407469,-0.036454848945141,0.061872243881226],[0.12561486661434,-0.011286653578281,-0.021026907488704],[-0.028665971010923,0.06301811337471,-0.035456590354443]],[[0.13708010315895,-0.012939875014126,0.052305210381746],[0.092309206724167,0.017808964475989,0.044521819800138],[0.056718729436398,-0.018262557685375,0.023404998704791]],[[-0.037682179361582,-0.006645442917943,-0.086901225149632],[-0.0090533075854182,0.026092406362295,-0.024442860856652],[-0.050239220261574,-0.0094620482996106,-0.009851329959929]],[[-0.067596554756165,0.02724950760603,-0.031674992293119],[0.012216101400554,0.063041634857655,-0.074295945465565],[0.019152447581291,-0.011686085723341,-0.036079883575439]],[[-0.020042756572366,0.0018150471150875,-0.098559662699699],[0.0067976322025061,0.013594536110759,-0.0093336021527648],[-0.022112561389804,0.012937420979142,0.0024870466440916]],[[-0.059595432132483,-0.066231802105904,0.034077677875757],[-0.012398775666952,-0.011720993556082,-0.018290186300874],[-0.016088329255581,0.014558578841388,0.0014223611215129]],[[0.029648927971721,0.020397935062647,0.050688605755568],[0.042713709175587,0.076749056577682,-0.045625109225512],[0.015433599241078,0.003502031089738,0.008613558486104]],[[0.00019642876577564,-0.0094561083242297,0.035795267671347],[-0.0053168507292867,-0.016728695482016,0.046915888786316],[-0.0097980629652739,0.041790679097176,-0.058427821844816]],[[0.045944567769766,0.021716311573982,7.5803443905897e-05],[-0.023868905380368,0.01759922504425,0.023885577917099],[-0.057850867509842,-0.084026396274567,0.072353154420853]],[[0.01667589135468,-0.020203841850162,0.027341103181243],[0.041836999356747,-0.01771661452949,-0.06033043935895],[0.04663023352623,0.055850591510534,0.0034663891419768]],[[-0.011702492833138,0.0032998956739902,-0.029038285836577],[0.0077942656353116,0.051063928753138,0.050005652010441],[0.0072448435239494,0.058018691837788,0.05669928714633]],[[-0.011747102253139,0.022004587575793,-0.038610972464085],[0.003818255616352,0.012552283704281,0.034496653825045],[0.021373232826591,-0.081440269947052,0.036950886249542]],[[-0.0067305671982467,0.002835699589923,-0.019764674827456],[0.016098156571388,-0.053819950670004,0.033809527754784],[0.0013884655199945,0.062241572886705,0.025909502059221]],[[-0.017221005633473,-0.028524296358228,0.042919881641865],[0.061071146279573,0.061877693980932,0.076437242329121],[0.00095443351892754,0.065764881670475,-0.084968641400337]],[[0.098913125693798,0.027568187564611,-0.078755222260952],[0.0064527527429163,0.038558054715395,0.0014947854215279],[-0.0040790075436234,0.010185617953539,0.035724833607674]],[[0.049919530749321,-0.020187104120851,-0.022707674652338],[-0.018892135471106,-0.025602906942368,-0.040276981890202],[0.01294678915292,-0.048072263598442,0.061814654618502]],[[-0.0084554925560951,0.025148818269372,-0.03781782835722],[0.023482887074351,0.031346570700407,-0.049682632088661],[-0.025972483679652,0.04806774482131,-0.045462168753147]],[[0.042588718235493,0.050844915211201,-0.02169768512249],[-0.010051222518086,0.098537236452103,-0.029409345239401],[0.0016365892952308,0.018372293561697,0.01682923361659]],[[-0.0174331497401,0.086903020739555,-0.022120939567685],[0.043822143226862,-0.03197256103158,0.034769657999277],[-0.02412685751915,0.099313586950302,-0.039387878030539]],[[0.1335142403841,-0.037653621286154,-0.076034225523472],[0.042311001569033,0.0081298165023327,0.017082035541534],[0.066847443580627,0.104815736413,0.030721245333552]],[[0.018028235062957,0.014335911720991,-0.0038947002030909],[-0.07281332463026,0.0091711478307843,-0.04077360033989],[-0.032337967306376,0.0061766891740263,-0.018057925626636]],[[0.035671252757311,-0.031773649156094,-0.036708701401949],[-0.031888537108898,-0.035016436129808,-0.014771428890526],[0.073193028569221,-0.0038142495322973,-0.027913101017475]],[[-0.088621489703655,0.087318815290928,0.0016764220781624],[0.02237019687891,0.065251342952251,0.026220418512821],[0.0089717209339142,0.068442396819592,0.020463993772864]],[[0.024925302714109,-0.011616026982665,-0.001225926913321],[0.06184845417738,-0.012656115926802,-0.059690296649933],[0.037658471614122,-0.064724460244179,0.079208701848984]],[[0.065452016890049,0.063935048878193,-0.0058273230679333],[-0.014118870720267,0.0084992758929729,0.014913222752512],[-0.068954952061176,-0.027407944202423,-0.036085933446884]],[[-0.044168889522552,-0.056787583976984,0.10835219919682],[0.039014734327793,0.019410887733102,0.065966852009296],[-0.011777555570006,0.035384215414524,-0.01365212816745]],[[0.036583501845598,0.023094814270735,0.042515963315964],[0.037618327885866,-0.026921985670924,0.014451476745307],[0.034465543925762,0.078771077096462,0.040220085531473]],[[0.035286106169224,0.078505732119083,-0.042987626045942],[0.020505918189883,0.001774167874828,0.062672920525074],[0.072270065546036,0.01578463986516,0.0087405750527978]],[[0.017139546573162,0.022343778982759,0.0091120703145862],[0.062098059803247,-0.01661741361022,0.054242096841335],[0.021736517548561,-0.094043716788292,-0.051558557897806]],[[-0.060060672461987,-0.040366820991039,-0.011832240968943],[-0.0056997165083885,0.029846722260118,-0.022340958938003],[0.078486949205399,0.0048683630302548,-0.0048124506138265]],[[-0.0039386819116771,0.00010716042743297,-0.059895385056734],[-0.034085281193256,0.017674567177892,0.0062391711398959],[-0.011619563214481,-0.018906122073531,0.023541159927845]],[[0.013728593476117,0.00917789619416,0.0038213143125176],[0.073494762182236,-0.029779391363263,-0.022042904049158],[0.084838218986988,-0.027434922754765,-0.067958705127239]],[[0.013040122576058,0.10030364245176,0.021909989416599],[0.052984036505222,-0.020036285743117,0.028876030817628],[0.013166573829949,0.064603075385094,0.01199870929122]],[[-0.0092994142323732,-0.020461725071073,0.032878767699003],[0.032907370477915,0.0028579037170857,-0.0010493856389076],[-0.010071540251374,0.0068245031870902,0.044051665812731]],[[0.009605685248971,0.018458245322108,-0.03646769374609],[0.00061699165962636,-0.0045098778791726,-0.022724831476808],[0.010567197576165,0.031866211444139,0.031884860247374]],[[-0.01954722777009,0.006642029620707,0.037322532385588],[0.02211063914001,0.03156628459692,-0.0026771898847073],[0.02222497574985,0.12463065981865,0.015713086351752]],[[0.012539966031909,-0.026795938611031,-0.028831209987402],[0.003955957479775,0.058695830404758,-0.016496608033776],[0.022513153031468,-0.025696629658341,0.049886908382177]],[[-0.060785789042711,-0.051084861159325,0.047608483582735],[0.020560117438436,0.10930794477463,-0.010899823158979],[0.037571802735329,0.015942102298141,-0.019436722621322]],[[-0.022864298895001,0.0099409809336066,0.011317975819111],[0.0010871477425098,0.035238422453403,-0.045038901269436],[0.054442334920168,-0.02531698718667,0.075403720140457]],[[-0.0072870221920311,0.06671354919672,0.012454124167562],[0.043642956763506,0.0092777712270617,-0.0065828752703965],[0.035345699638128,0.019253741949797,-0.055014558136463]],[[0.0079316198825836,0.037428416311741,0.062767043709755],[-0.03224166482687,0.046614374965429,-0.0085074314847589],[-0.088062942028046,-0.019934700801969,0.045335162431002]],[[-0.027908090502024,-0.015813397243619,0.037021216005087],[0.028494294732809,-0.021865725517273,-0.070211179554462],[-0.00061304034898058,-0.0052731079049408,0.030945902690291]],[[-0.051537498831749,0.04749870672822,-0.0031525432132185],[0.016785874962807,-0.014929505065084,0.032697077840567],[0.029248462989926,0.042008187621832,0.08918471634388]],[[0.062181740999222,0.012395023368299,0.017152948305011],[0.023486841470003,0.028086952865124,-0.087252929806709],[0.008753864094615,0.018345629796386,-0.011788916774094]],[[-0.045283760875463,0.019322907552123,0.0055294809862971],[0.067195080220699,-0.015002024360001,0.053917687386274],[-0.044819358736277,-0.034936420619488,-0.043688133358955]],[[0.026097921654582,0.045086685568094,-0.0064237485639751],[-0.046108402311802,0.062097385525703,0.068519234657288],[-0.056436844170094,0.01403630245477,-0.011261699721217]],[[0.0881133005023,0.0047688982449472,0.10081523656845],[-0.002234571846202,-0.0340406447649,0.011219109408557],[0.037370342761278,0.014228009618819,0.08366372436285]],[[0.029105443507433,0.081127546727657,0.018275005742908],[0.03688208386302,0.021102989092469,0.048136133700609],[0.031470164656639,0.022082205861807,0.0038353283889592]],[[0.010714676231146,-0.029159067198634,-0.0066856266930699],[0.013501877896488,-0.0070370761677623,0.028111021965742],[0.025224247947335,-0.020278204232454,-0.01093521527946]],[[-0.022562617436051,0.025838378816843,0.048966821283102],[0.011691727675498,-0.047603454440832,0.020039610564709],[0.042150005698204,-0.019458496943116,0.094791412353516]],[[-0.04241094738245,0.032897468656301,0.035477098077536],[-0.0056596454232931,0.068471223115921,-0.026873854920268],[-0.017031194642186,0.011133381165564,0.0034192763268948]],[[0.029567779973149,-0.029641874134541,-0.019092708826065],[0.040080368518829,-0.0110027147457,0.024256374686956],[0.041400965303183,-0.002879994455725,0.054002445191145]],[[0.022073835134506,-0.034280221909285,-0.028444210067391],[0.003412971040234,0.033769395202398,0.061527028679848],[0.049960907548666,-0.085605822503567,0.06061901897192]],[[0.049183733761311,0.057043056935072,-0.057797729969025],[0.076712787151337,0.098471164703369,0.00024730220320635],[-0.020316982641816,0.00051356246694922,-0.0030307888519019]],[[-0.10430929064751,0.061497215181589,-0.023139074444771],[0.029681311920285,0.048573270440102,-0.082138635218143],[-0.052741065621376,0.028686655685306,0.00052037567365915]],[[0.00032117392402142,0.0097821764647961,-0.062733799219131],[-0.0059339739382267,0.054402105510235,-0.024353602901101],[-0.01153118815273,0.048143595457077,-0.014824251644313]],[[-0.012505256570876,-0.071290656924248,0.031772777438164],[-0.037571363151073,0.043738290667534,0.040836330503225],[-0.032873056828976,-0.046583879739046,-0.035442966967821]],[[-0.03132776543498,0.0082547701895237,-0.031205769628286],[0.032148882746696,-0.0032656420953572,0.048945531249046],[0.019845142960548,0.04643976315856,-0.0022348817437887]],[[-0.036036092787981,0.053301431238651,0.052425723522902],[0.026807120069861,0.0059930416755378,-0.019992403686047],[0.016459662467241,0.040915478020906,-0.0027855930384248]],[[-0.084238193929195,-0.035458672791719,-0.026451744139194],[0.042536295950413,0.036366380751133,0.0013955306494609],[-0.027238631621003,0.053284786641598,-0.059927232563496]],[[-0.0062752333469689,0.044844560325146,-0.0074362186715007],[0.044649820774794,0.015473387204111,0.014165258035064],[-0.059885919094086,0.0094046257436275,0.0085347006097436]],[[0.017167521640658,0.044173542410135,-0.016493275761604],[-0.0029768815729767,-0.0019339992431924,0.030604643747211],[-0.020071793347597,-0.044519927352667,0.041872631758451]],[[0.020136293023825,-0.055619176477194,0.020477069541812],[0.064551308751106,0.052242387086153,0.0067145344801247],[-0.043119620531797,0.057236559689045,0.062439206987619]],[[-0.051569901406765,0.03104261495173,-0.007927967235446],[0.0071155121549964,0.055940419435501,0.0216068867594],[0.038295298814774,0.041234090924263,0.031320132315159]],[[0.046138104051352,-0.012301134876907,0.083457343280315],[0.021832119673491,0.0054990872740746,-0.0035566822625697],[0.1164208650589,-0.064633935689926,-0.01354802865535]],[[0.038692086935043,-0.050187334418297,0.056241527199745],[0.038000602275133,-0.014480118639767,0.011940471827984],[-0.021176386624575,0.011857817880809,0.037253249436617]],[[-0.030865980312228,-0.023932907730341,0.014448581263423],[0.0067900982685387,-0.040671236813068,0.00023436824267264],[0.052591614425182,-0.049821894615889,0.0050766030326486]],[[0.046809539198875,-0.030326975509524,0.035101238638163],[-0.0018711901502684,-0.0051837139762938,0.058933559805155],[0.1286558508873,0.092470534145832,0.065023124217987]],[[0.085657618939877,0.034973099827766,0.097606763243675],[-0.0043180692009628,0.045679800212383,0.016652256250381],[0.018949331715703,-0.086579173803329,0.081869401037693]],[[-0.0027706264518201,0.040416933596134,-0.089692071080208],[0.082459427416325,-0.034414812922478,0.059057421982288],[-0.023534594103694,-0.01224237959832,0.011011753231287]],[[0.1096657961607,-0.011440224014223,0.035446189343929],[-0.067751131951809,0.010910489596426,-0.048520926386118],[-0.032013647258282,0.015553373843431,0.17122839391232]],[[0.01303406059742,0.044436521828175,0.028321227058768],[-0.0062459115870297,-0.034546848386526,0.073793575167656],[0.066126130521297,-0.0094514125958085,0.017436949536204]],[[-0.052442219108343,-0.0089691691100597,-0.005902249366045],[0.022159762680531,0.084718838334084,0.031298898160458],[-0.039700318127871,-0.010046915151179,-0.023954560980201]],[[0.044766221195459,0.047718103975058,-0.00053603306878358],[0.011440469883382,0.02585818618536,0.016856579110026],[0.016295729205012,0.027867970988154,0.031947340816259]],[[-0.033442407846451,0.019178923219442,0.0031359891872853],[0.035735458135605,0.018681436777115,-0.030654830858111],[0.065976195037365,0.024230061098933,0.045710064470768]],[[-0.0075011695735157,-0.068674400448799,0.0042908741161227],[0.0077339648269117,0.020038058981299,-0.099639423191547],[0.034683745354414,0.035448882728815,-0.0537627376616]],[[0.021719697862864,0.013718781992793,0.061056654900312],[-0.0027145645581186,0.037380497902632,-0.0021419050171971],[-0.011134549975395,0.044318679720163,-0.0025183737743646]],[[0.017503097653389,0.043984066694975,-0.018377697095275],[-0.031762924045324,0.070021316409111,-0.0035813075955957],[0.029267355799675,-0.058710284531116,0.0039436472579837]],[[-0.018744874745607,-0.00036305529647507,0.0023076164070517],[-0.0066905682906508,-0.0056101088412106,-0.0060530672781169],[-0.038071472197771,0.010031532496214,-0.013529634103179]],[[0.057974521070719,-0.050985250622034,-0.007069674320519],[0.060539428144693,-0.10022432357073,0.058578033000231],[-0.033769261091948,0.0015740509843454,0.087930500507355]],[[0.090622663497925,0.044819112867117,-0.035811044275761],[0.013112630695105,6.7292152380105e-05,0.014416318386793],[0.08485358953476,0.022006491199136,0.020411260426044]],[[0.00026857980992645,-0.055060800164938,-0.068830400705338],[0.046218503266573,0.047126121819019,-0.039060711860657],[0.072650745511055,-0.006835441570729,0.042014807462692]],[[0.026662968099117,-0.041035834699869,0.050669841468334],[-0.031160498037934,0.032390844076872,-0.021165629848838],[0.031350295990705,0.037764213979244,-0.030840134248137]],[[0.01720124669373,-0.033176314085722,0.021462209522724],[0.026201317086816,0.056052539497614,-0.030094167217612],[0.017967300489545,-0.0080244429409504,-0.04421941190958]],[[0.048556871712208,0.073634415864944,0.03469805046916],[-0.04599516838789,0.028627686202526,-0.029413940384984],[0.078848779201508,0.0015999296447262,0.039284586906433]],[[-0.04482401534915,-0.016588946804404,-0.010465195402503],[0.046914331614971,0.056849654763937,-0.028608988970518],[0.055349104106426,-0.049504514783621,-0.022013004869223]],[[-0.04204310849309,-0.0036631510592997,-0.040624782443047],[0.0044700806029141,0.060855686664581,-0.0025584870018065],[0.0059076366014779,0.0030895252712071,0.0063394661992788]],[[0.00025541815557517,0.022526169195771,-0.020642364397645],[-0.10921666026115,0.074134044349194,0.012736623175442],[-0.052442513406277,-0.022143123671412,0.033463265746832]],[[-0.010802674107254,0.044231329113245,0.065105721354485],[0.0036132759414613,-0.030984062701464,-0.026197096332908],[0.017935484647751,0.010610181838274,0.048950169235468]],[[-0.012894075363874,0.037063263356686,-0.038888812065125],[0.079749338328838,-0.058157969266176,-0.0024769695010036],[0.012248259969056,0.041708759963512,-0.0098890783265233]],[[-0.064475670456886,-0.024307308718562,0.008753027766943],[-0.088917225599289,0.051597163081169,0.051709089428186],[0.061055265367031,-0.044136695563793,-0.028987467288971]],[[-0.0063787493854761,0.021815301850438,0.061061754822731],[-0.034593597054482,-0.064042463898659,-0.001845390885137],[0.019411932677031,-0.027073817327619,-0.12883928418159]],[[0.058432430028915,0.057139161974192,-0.019087050110102],[-0.018291410058737,0.10646986961365,0.019494818523526],[0.0034804525785148,-0.032803289592266,0.039736524224281]],[[-0.0084338160231709,-0.091974228620529,0.044605262577534],[0.045181673020124,0.040534727275372,-0.070663541555405],[-0.035180509090424,0.016170222312212,-0.0026154508814216]],[[-0.050498481839895,-0.029736490920186,0.048807550221682],[-0.0012029986828566,-0.0073328972794116,0.041462000459433],[0.0075856251642108,0.021838821470737,0.017130589112639]],[[0.027198283001781,-0.0068433727137744,-0.031892854720354],[-0.034083932638168,0.0031420458108187,0.0033044756855816],[0.024046439677477,0.064227968454361,-0.032911002635956]],[[-0.012044753879309,0.092449083924294,-0.032207671552896],[0.05441178381443,-0.034670989960432,0.054720807820559],[0.025384698063135,0.013141606934369,0.02905747294426]],[[-0.027995111420751,0.057316653430462,0.0057513518258929],[0.032381318509579,0.028566913679242,0.0022620146628469],[0.003944500349462,0.024097755551338,0.0061165606603026]],[[0.01021155808121,0.0039178701117635,0.040614243596792],[0.038602408021688,0.052758041769266,0.035611867904663],[0.0026647290214896,0.033773589879274,-0.069493070244789]],[[-0.016039308160543,-0.078411348164082,-0.012408721260726],[3.7993231671862e-06,-0.046425256878138,-0.034583296626806],[0.024234475567937,-0.069843821227551,-0.0023626836482435]],[[-0.023117670789361,-0.0098773064091802,0.0050156260840595],[-0.035947039723396,-0.018118254840374,0.069383785128593],[0.025123251602054,0.072433568537235,-0.035317048430443]],[[0.016494192183018,0.019799817353487,0.059822119772434],[0.030441971495748,0.10146207362413,-0.031966902315617],[0.0041198581457138,-0.0025985897518694,0.0010585527634248]],[[-0.017158694565296,0.015524571761489,-0.030964454635978],[-0.013811512850225,0.052290592342615,0.094963163137436],[-0.069462478160858,0.036352656781673,0.019291169941425]],[[-0.038405902683735,-0.0095764808356762,-0.0045677027665079],[-0.0033613459672779,0.0086743701249361,0.027498878538609],[0.064147263765335,-0.067923851311207,-0.05520960688591]],[[-0.02642273157835,0.040723312646151,0.072387360036373],[0.028656356036663,0.011863447725773,0.040397088974714],[0.015255477279425,0.031965188682079,-0.016503304243088]],[[0.053542926907539,-0.071969337761402,-0.080750845372677],[0.030195545405149,-0.041921112686396,-0.0052974494174123],[-0.049820430576801,0.083629690110683,0.0089484099298716]],[[0.057488236576319,-0.017856189981103,0.051447033882141],[-0.0029381501954049,0.016549890860915,0.11345044523478],[0.084975466132164,0.0080831991508603,0.017829837277532]],[[0.033010367304087,0.046635221689939,-0.041545122861862],[0.088435150682926,-0.044329836964607,-0.033926580101252],[-0.041402447968721,0.074438333511353,-0.023640299215913]]],[[[0.05446120351553,0.017431506887078,-0.020808974280953],[-0.070833005011082,0.041494309902191,0.093900755047798],[0.061510130763054,0.056728266179562,-0.002362770261243]],[[0.038075190037489,-0.0048575177788734,0.018663488328457],[-0.063861891627312,0.0024514477699995,-0.00045377772767097],[-0.042650207877159,-0.0012617052998394,-0.055169060826302]],[[0.038472183048725,0.044880744069815,0.084883570671082],[0.0042750653810799,-0.016838828101754,0.070366725325584],[0.040709026157856,0.0027955314144492,-0.055313728749752]],[[0.0051371240988374,0.03937977924943,0.077879324555397],[0.012104885652661,0.064506240189075,0.12953533232212],[0.007358506321907,-0.0015446888282895,-0.019592666998506]],[[-0.012647510506213,-0.0046400325372815,-0.032027665525675],[0.010307406075299,0.014959899708629,0.018602916970849],[0.006505882833153,0.061338160187006,0.0070756222121418]],[[0.08557365834713,0.081039845943451,0.070738717913628],[0.11492288857698,0.026265202090144,0.073634810745716],[0.02572931163013,0.015875242650509,0.048983041197062]],[[0.063614569604397,0.030056666582823,0.058620765805244],[-0.063705146312714,-0.03432659059763,-0.026460032910109],[0.046720966696739,0.018857570365071,-0.012039275839925]],[[0.062372863292694,0.011845330707729,0.037693280726671],[0.011835535056889,-0.026211710646749,0.059284817427397],[0.0024155506398529,0.02404504828155,-0.002661423292011]],[[0.0073776273056865,-0.029295632615685,-0.010019634850323],[0.075692355632782,-0.003609916428104,0.043744519352913],[-0.041695918887854,0.00038450630381703,0.062218397855759]],[[0.085700266063213,0.030093856155872,0.06716950237751],[0.033104874193668,0.19283767044544,0.062116734683514],[-0.053709600120783,0.11644736677408,0.093162283301353]],[[0.025295959785581,0.0031657791696489,-0.021292790770531],[-0.0024160509929061,0.053229704499245,0.054010301828384],[0.014584682881832,-0.096447460353374,-0.05075291544199]],[[-0.020090166479349,0.034722734242678,-0.014794484712183],[-0.031346287578344,0.042067237198353,0.060084119439125],[-0.027312425896525,0.040168799459934,-0.026070639491081]],[[0.025210417807102,0.067332953214645,-0.024614771828055],[-0.012652487494051,-0.021407591179013,0.027213292196393],[-0.088473476469517,-0.021259421482682,0.043571457266808]],[[0.0081093553453684,0.058138359338045,0.020250732079148],[0.007072533480823,0.0096446722745895,-0.091106899082661],[-0.006687733810395,-0.0027253467123955,-0.01345743611455]],[[-0.019751060754061,0.15857814252377,0.078840747475624],[0.026877980679274,-0.050825677812099,0.043271407485008],[0.18146039545536,0.068721927702427,-0.081368483603001]],[[0.0056834304705262,0.015775725245476,-0.0025298085529357],[-0.0059668566100299,-0.10370619595051,0.04297437146306],[-0.012414476834238,-0.07153706997633,-0.035783011466265]],[[0.089181274175644,-0.0025061236228794,0.026157628744841],[0.0081910947337747,0.057673864066601,-0.011222334578633],[-0.026203399524093,0.069120183587074,0.052944973111153]],[[0.02338975854218,-0.065941594541073,0.084763318300247],[0.075935482978821,0.062086805701256,0.056974142789841],[-0.1069164276123,0.028404975309968,-0.014806999824941]],[[0.063105367124081,0.036396078765392,-0.0087952818721533],[0.093015819787979,0.034178666770458,-0.0061403964646161],[0.02494790777564,-0.025208661332726,0.06717012822628]],[[-0.012003368698061,0.040226723998785,0.028851056471467],[-0.052343972027302,-0.0044348444789648,-0.075542293488979],[0.033376324921846,0.10096449404955,0.021753203123808]],[[-0.082416400313377,0.026874791830778,0.039534740149975],[-0.021197743713856,-0.015127708204091,-0.030865928158164],[0.0066716521978378,0.0029927841387689,0.10222383588552]],[[0.025459583848715,0.0034047577064484,0.052444763481617],[0.090979643166065,0.062419861555099,0.037976551800966],[-0.0047183488495648,0.11303487420082,0.021874791011214]],[[-0.017037764191628,0.029528273269534,0.022156208753586],[0.097594767808914,-0.092902317643166,-0.0058916457928717],[0.033949136734009,-0.013439652509987,0.11546161770821]],[[0.024892836809158,-0.0053599211387336,0.054637674242258],[-0.041574627161026,0.027578772976995,0.041204269975424],[-0.036549732089043,0.071725957095623,0.068258613348007]],[[0.016525780782104,-0.06575920432806,-0.049618251621723],[-0.024389328435063,0.025411972776055,-0.020906122401357],[-0.01611259020865,-0.025121044367552,-0.040876053273678]],[[-0.031272113323212,-0.064375653862953,-0.037008013576269],[-0.017235044389963,0.017786281183362,-0.036054544150829],[0.085109524428844,-0.014673450961709,-0.0053303213790059]],[[-0.013430465012789,-0.04695937782526,-0.014123814180493],[0.056322984397411,0.021510541439056,-0.0066357920877635],[0.049683500081301,-0.017269207164645,-0.057045560330153]],[[0.045506563037634,0.075548931956291,-0.073018662631512],[0.013322989456356,0.084968447685242,0.033877193927765],[-0.029665360227227,0.06975531578064,-0.091343685984612]],[[-0.016534021124244,0.017882646992803,-0.0046945791691542],[0.020429767668247,0.047460619360209,0.12316483259201],[-0.0004659078840632,-0.031169563531876,-0.037093739956617]],[[-0.01426563039422,0.036673184484243,-0.055699296295643],[0.017471242696047,0.0073003908619285,0.086498290300369],[-0.025228768587112,-0.024079859256744,-0.084285564720631]],[[0.020749930292368,0.085975296795368,0.16793304681778],[0.01728905364871,-0.0028357463888824,0.030555211007595],[-0.02443534322083,0.091616488993168,0.047811090946198]],[[-0.042659059166908,-0.041376397013664,0.069783709943295],[-0.015814846381545,0.050805762410164,-0.11139080673456],[0.039628721773624,0.0020593714434654,-0.022229962050915]],[[0.10615699738264,0.085079848766327,0.11202307790518],[0.084490239620209,0.0963464230299,0.089010201394558],[0.00056368741206825,0.13184423744678,-0.10894278436899]],[[0.048705734312534,0.019778788089752,0.059655960649252],[0.0020441601518542,0.023008415475488,0.0045950557105243],[0.10796678811312,0.031013380736113,0.0072493553161621]],[[-0.054770398885012,0.11476212739944,0.061245996505022],[0.016452230513096,-0.050118062645197,0.019026113674045],[-0.00885353051126,0.016841728240252,-0.12662601470947]],[[0.040427897125483,0.040250554680824,0.065649509429932],[-0.013856863602996,-0.010682457126677,-0.013318504206836],[0.051398929208517,0.036298379302025,-0.013835403136909]],[[0.072921209037304,-0.021731149405241,-0.056828584522009],[-0.06423332542181,0.078553177416325,-0.021681549027562],[-0.10684686154127,-0.014966965653002,-0.046151887625456]],[[0.011100450530648,0.015607154928148,-0.0037714496720582],[0.085233151912689,-0.037351701408625,0.10000295937061],[-0.0200589094311,0.022754419595003,-0.0024978066794574]],[[0.059623416513205,-0.048106148838997,-0.0059033115394413],[0.13982531428337,0.0087697543203831,-0.016827832907438],[0.027275012806058,-0.009650113992393,-0.038676310330629]],[[-0.076135143637657,-0.020888760685921,0.040047239512205],[-0.043163429945707,0.077035151422024,0.099380597472191],[-0.070075020194054,-0.011363785713911,0.050775408744812]],[[-0.026953414082527,0.01579281128943,0.0070231826975942],[0.0019532619044185,-0.026825921609998,0.02010990306735],[-0.0011943409917876,0.068159572780132,-0.024623729288578]],[[-0.068091593682766,0.00049148919060826,0.024387268349528],[-0.028432453051209,-0.0038482525851578,-0.035162545740604],[0.049370188266039,-0.0020298906601965,-0.028819547966123]],[[0.052097521722317,0.087737634778023,0.066313907504082],[0.023252736777067,0.034781482070684,-0.0074460813775659],[0.046388130635023,0.066132314503193,0.094045780599117]],[[0.13749913871288,-0.039138324558735,0.017903763800859],[0.018852345645428,0.1130473613739,0.09949554502964],[0.012565670534968,0.038194801658392,0.030190074816346]],[[-0.025853887200356,0.032710541039705,0.015100504271686],[0.016155872493982,0.078897103667259,0.027908092364669],[0.025383085012436,0.0096914684399962,0.10742868483067]],[[-0.057476829737425,0.055216174572706,0.034363649785519],[0.09762204438448,0.010830998420715,-0.0015005370369181],[0.096693612635136,0.058278542011976,0.061294410377741]],[[-0.074687875807285,0.01956856995821,0.061946451663971],[0.029199814423919,0.024737035855651,-0.078022301197052],[0.011369535699487,-0.047313403338194,0.017655421048403]],[[0.13783675432205,-0.041616134345531,0.042909156531096],[0.095312386751175,0.026632321998477,0.064598232507706],[-0.063923701643944,0.02372402139008,0.0057406234554946]],[[-0.084316924214363,-0.028360806405544,-0.0050859181210399],[0.056061439216137,0.063567563891411,0.053619377315044],[0.022005338221788,0.034327726811171,0.0017425050027668]],[[0.0046831276267767,-0.010045227594674,-0.0050275507383049],[-0.070987842977047,0.015400785021484,0.059093896299601],[-0.02988619543612,-0.050869505852461,-0.13535250723362]],[[0.063474424183369,0.046585608273745,-0.04060310870409],[-0.028280975297093,0.06001303344965,0.086144685745239],[0.052220292389393,0.026116522029042,0.0261465087533]],[[0.0080166617408395,0.0085353869944811,0.08453668653965],[0.017528403550386,0.023795790970325,0.045103091746569],[-0.05242357775569,0.099860124289989,0.09165608137846]],[[0.0020026843994856,0.031010208651423,-0.044705618172884],[0.012115813791752,-0.022149501368403,-0.026253765448928],[0.02541783452034,-0.099136054515839,-0.08704024553299]],[[0.028756162151694,-0.016653798520565,-0.043345112353563],[0.024318484589458,0.065569452941418,0.037393022328615],[0.0058341068215668,0.038023598492146,-0.0069684907793999]],[[0.015878766775131,-0.038272030651569,0.027890846133232],[0.073927223682404,-0.014205884188414,0.054412253201008],[-0.030647812411189,-0.027864884585142,0.021417850628495]],[[0.0208425745368,0.084840402007103,0.010713628493249],[-0.04516338929534,0.030249305069447,0.039271518588066],[-0.019667446613312,0.039898931980133,-0.018444988876581]],[[0.013716227374971,0.0045272577553988,-0.0094858314841986],[-0.026901233941317,0.078797645866871,-0.043978467583656],[-0.023932341486216,-0.0187334921211,-0.015155266970396]],[[0.025013260543346,0.013255591504276,0.04300619289279],[-0.050726097077131,-0.097993396222591,-0.016735810786486],[0.019809590652585,0.011232673190534,0.052158776670694]],[[0.0098430942744017,0.16150751709938,0.11055153608322],[0.079902082681656,0.0056625911965966,0.06573311239481],[0.056654080748558,0.036829635500908,0.014839687384665]],[[0.0025350770447403,0.049321923404932,-0.044111806899309],[-0.040131997317076,0.052842315286398,0.01196981780231],[-0.045372221618891,-0.056134317070246,-0.018779687583447]],[[-0.017142117023468,-0.052716672420502,0.058844484388828],[-0.016459491103888,0.10734599083662,0.079038128256798],[-0.011664788238704,0.043808035552502,-0.018196482211351]],[[0.0035770495887846,-0.079478301107883,-0.024321241304278],[-0.048648755997419,0.0235605686903,0.0184012260288],[-0.024610944092274,-0.08532240986824,-0.018322790041566]],[[0.031523417681456,-0.016294004395604,0.041126303374767],[0.023723486810923,0.016455134376884,-0.078993298113346],[-0.031769640743732,-0.018862323835492,-0.03212470933795]],[[-0.018767509609461,0.035642873495817,0.01113850902766],[-0.0025251302868128,-0.0098058246076107,0.083240874111652],[0.058727588504553,-0.051761996001005,0.018252328038216]],[[-0.017587477341294,-0.0093162311241031,0.027377216145396],[-0.049091812223196,-0.0058842222206295,0.091579154133797],[0.025982988998294,-0.011945053935051,-0.055082179605961]],[[-0.0019015221623704,-0.015628991648555,0.080126605927944],[0.062035575509071,0.048305355012417,-0.051031682640314],[-0.050641469657421,0.094183959066868,0.041461326181889]],[[0.087624698877335,-0.0044828155077994,0.087632834911346],[0.096865229308605,0.024827117100358,-0.0052972720004618],[0.13766498863697,0.038082100450993,0.039455819875002]],[[0.030259098857641,0.066970020532608,0.047177866101265],[0.011981415562332,-0.041965555399656,0.03288683667779],[-0.057811137288809,-0.047197557985783,0.059970527887344]],[[0.030562633648515,-0.029948441311717,-0.022790189832449],[0.049093421548605,-0.063716419041157,0.062052190303802],[0.088613666594028,0.06343337148428,-0.0059347869828343]],[[-0.020764660090208,0.05291922390461,-0.034142550081015],[0.047585554420948,0.088227853178978,0.11511137336493],[0.011323429644108,0.013905346393585,-0.023136828094721]],[[0.051821313798428,0.029059315100312,-0.052311334758997],[0.09941328316927,0.026326581835747,-0.02869501709938],[0.059440992772579,0.051868628710508,0.022752407938242]],[[-0.0015295865014195,0.036205772310495,0.1071700155735],[0.012742058373988,0.074821144342422,0.15628279745579],[0.031359296292067,-0.014054199680686,-0.013751784339547]],[[-0.037507269531488,0.0034696885850281,0.11247742176056],[0.06602368503809,0.042461331933737,-0.02047579549253],[0.012291514314711,0.069480367004871,-0.035009101033211]],[[-0.029386082664132,0.067836441099644,0.11150205880404],[0.0010820415336639,-0.00084630079800263,0.033506795763969],[0.064251273870468,0.027901874855161,0.020533507689834]],[[0.0055630798451602,-0.032628990709782,-0.094542928040028],[-0.0050779888406396,-0.030354980379343,-0.012600563466549],[-0.025647005066276,0.033057197928429,-0.092847213149071]],[[0.1269873380661,-0.038282494992018,0.0065189744345844],[0.080810040235519,0.034727104008198,0.022018766030669],[0.044621147215366,0.048383466899395,0.0087879011407495]],[[0.044526427984238,0.045987118035555,-0.072997123003006],[0.03715193644166,0.0089495470747352,-0.026342839002609],[0.021093502640724,0.013392300345004,0.0089126583188772]],[[-0.040247358381748,0.014271270483732,-0.049916114658117],[0.04527385532856,0.06622501462698,-0.018628822639585],[0.1909806728363,-0.032930061221123,0.035502701997757]],[[0.028275137767196,-0.0011032684706151,0.078484892845154],[-0.046684984117746,0.049758683890104,0.091096751391888],[-0.020099468529224,0.032845795154572,-0.019595745950937]],[[-0.011952348984778,-0.046523585915565,0.037328749895096],[0.0088524036109447,0.0051982128061354,-0.027047863230109],[0.05012034252286,0.015273680910468,-0.03479951992631]],[[0.034604553133249,0.016367321833968,-0.02972955442965],[0.11797628551722,0.087267152965069,0.013168927282095],[0.079686567187309,0.069837786257267,-0.045693013817072]],[[-0.024941902607679,-0.014144789427519,0.01425881870091],[-0.04600815474987,0.015861440449953,-0.033870801329613],[0.074602074921131,0.0038316822610795,-0.045106910169125]],[[-0.048410668969154,0.030326331034303,0.010155762545764],[0.032733984291553,0.025369517505169,0.0090165510773659],[0.022745952010155,-0.034366775304079,0.0020815567113459]],[[0.032689247280359,0.089988254010677,0.072910338640213],[0.041011113673449,-0.017177108675241,0.051043517887592],[-0.12890502810478,-0.066333040595055,-0.0046727149747312]],[[-0.064883723855019,0.016230111941695,0.01927275210619],[0.0074501694180071,0.021529573947191,0.0035927947610617],[0.031186329200864,0.062363352626562,0.0062172999605536]],[[0.097139470279217,0.014010383747518,-0.033040288835764],[-0.087294593453407,0.047888021916151,0.039998639374971],[0.021800722926855,0.0097164725884795,0.03650688752532]],[[-0.045585494488478,-0.017862789332867,-0.045920953154564],[0.046113181859255,-0.029148636385798,-0.076290838420391],[0.030456490814686,-0.008568437770009,-0.064576037228107]],[[-0.034949228167534,0.021247278898954,0.082661978900433],[0.031804524362087,0.026238158345222,0.015690423548222],[-0.01052295230329,-0.012665372341871,0.039600543677807]],[[0.12013678252697,-0.015695219859481,-0.0788369551301],[0.032762326300144,0.064610339701176,0.054652743041515],[0.023032722994685,0.023093646392226,-0.094543561339378]],[[-0.0011812340235338,0.0020276270806789,-0.054806049913168],[-0.013699673116207,-0.020046023651958,0.023681692779064],[-0.031435705721378,-0.0024902555160224,-0.026606624945998]],[[-0.03965326026082,0.042390916496515,0.061433531343937],[-0.028537882491946,-0.023613544180989,0.038865849375725],[-0.034944046288729,-0.037310417741537,-0.016318306326866]],[[-0.030607951804996,-0.069904930889606,-0.037552956491709],[0.0074709756299853,-0.052655689418316,0.052260383963585],[0.027251673862338,0.024746412411332,0.080741673707962]],[[-0.01666315458715,-0.019327335059643,-0.022896964102983],[-0.057172570377588,0.062809303402901,0.042567893862724],[-0.064700111746788,-0.01465832721442,-0.0035942336544394]],[[0.027904130518436,-0.059923846274614,0.053303115069866],[0.065678000450134,0.014581982046366,-0.037509307265282],[0.11759228259325,0.078228771686554,0.031246954575181]],[[-0.003006920684129,0.046406500041485,0.013907201588154],[0.045822843909264,0.072868913412094,0.043561313301325],[0.022823967039585,-0.059126287698746,-0.015812898054719]],[[0.14619119465351,-0.034092500805855,-0.031055821105838],[0.040945094078779,0.11611552536488,0.059776805341244],[-0.021649176254869,-0.048928085714579,0.10156943649054]],[[0.10725185275078,-0.029708102345467,0.016970070078969],[0.036295734345913,0.0092803323641419,0.037004619836807],[0.061386983841658,0.052363608032465,0.027841066941619]],[[0.0042641987092793,0.003505903063342,0.03464587405324],[-0.011558069847524,0.05281025916338,0.045381639152765],[0.042888641357422,-0.0021045131143183,0.07429139316082]],[[-0.12447905540466,-0.066897086799145,0.026895558461547],[0.0012840233976021,-0.026422226801515,-0.0045904377475381],[0.039169449359179,0.010355971753597,-0.040915917605162]],[[0.0065153022296727,0.015730815008283,-0.001140899839811],[0.060573730617762,-0.043593920767307,0.077335350215435],[-0.040529698133469,0.03144795447588,0.02797806635499]],[[0.025026794523001,0.045899417251348,0.052568182349205],[-0.0033620153553784,-0.012299566529691,0.072536818683147],[0.02259592153132,-0.00040711348992772,0.046204417943954]],[[-0.077548779547215,0.054209161549807,0.11248358339071],[-0.094583764672279,0.0072848680429161,0.01836135238409],[0.019388046115637,0.059797652065754,0.12106873095036]],[[-0.027250116690993,0.047626208513975,0.012587175704539],[-0.064036726951599,0.039623580873013,-0.011007315479219],[-0.0068136085756123,-0.055475927889347,-0.064110934734344]],[[0.070922158658504,0.13002419471741,0.084292329847813],[0.011308084242046,0.031403321772814,-0.0044953688047826],[0.041706643998623,0.03929590806365,0.077507227659225]],[[0.054770275950432,0.037275712937117,0.059754885733128],[0.063213691115379,0.040793024003506,-0.055432830005884],[0.049309026449919,-0.064107738435268,0.04723871871829]],[[0.025083309039474,0.093331433832645,-0.0044369981624186],[-0.012040854431689,-0.012806409969926,0.072093337774277],[0.0028875567950308,0.14372816681862,0.096031673252583]],[[0.012913212180138,0.056234769523144,0.027128752321005],[0.071153044700623,0.13377487659454,0.10883451253176],[0.079725027084351,0.038170702755451,0.11225322633982]],[[-6.5511230786797e-05,0.0010525197722018,-0.016425535082817],[0.030129989609122,-0.020987233147025,-0.023435836657882],[0.0056032994762063,-0.13696596026421,0.018296668305993]],[[-0.015915460884571,-0.017924109473825,0.056386586278677],[-0.079825848340988,-0.03063078224659,-0.0091636646538973],[-0.053638279438019,-0.010940352454782,-0.034465122967958]],[[0.11287005245686,0.01618087477982,4.9564700930205e-06],[-0.0042286580428481,0.0040452727116644,0.072930321097374],[-0.0069517660886049,-0.056320585310459,-0.042396079748869]],[[-0.12683725357056,-0.099936999380589,-0.081703595817089],[0.050369489938021,-0.05752345174551,-0.084067218005657],[0.0018192384159192,0.09722726047039,-0.072404354810715]],[[0.010281730443239,-0.045781347900629,-0.11463621258736],[-0.01316789817065,0.0066475323401392,-0.049392577260733],[0.031516365706921,-0.0092350486665964,0.032122936099768]],[[-0.022488029673696,0.018501127138734,0.0050546326674521],[0.014244988560677,-0.03392007574439,0.009402128867805],[0.05647087097168,-0.0040161572396755,-0.071594759821892]],[[0.033741984516382,-0.017431249842048,-0.065672464668751],[-0.0099454373121262,0.036760997027159,0.016564341261983],[-0.063490070402622,-0.16386415064335,-0.013125223107636]],[[-0.0070512997917831,-0.022183276712894,0.052423320710659],[-0.049845743924379,0.074334494769573,-0.065287828445435],[-0.004482998047024,0.035342138260603,0.032833248376846]],[[-0.087936043739319,-0.009901219047606,0.05913932621479],[-0.011637496761978,0.092530891299248,-0.012922818772495],[0.0023259171284735,-0.083010032773018,-0.020030988380313]],[[-0.016428263857961,-0.093708105385303,0.019834706559777],[-0.024713218212128,-0.0059544770047069,-0.013471785001457],[-0.006544235162437,0.0057144099846482,0.034667402505875]],[[-0.045952558517456,-0.059015039354563,0.10067904740572],[0.0155776636675,-0.072056882083416,0.026028176769614],[0.083098940551281,-0.010172422043979,-0.017447983846068]],[[0.01507811807096,-0.019893243908882,-0.0099731516093016],[-0.03440422937274,-0.030188551172614,-0.077819518744946],[0.02137435041368,0.019138624891639,0.012703968212008]],[[0.050056964159012,-0.013092156499624,-0.081943050026894],[-0.11047227680683,-0.050268169492483,-0.066332459449768],[-0.030901627615094,-0.026418885216117,-0.015332128852606]],[[0.018253365531564,-0.0034909918904305,0.032418858259916],[0.043881744146347,-0.055746167898178,0.10191994905472],[0.027465688064694,-0.024409420788288,0.02902802452445]],[[0.020080305635929,0.042665366083384,0.0030721686780453],[0.059776708483696,-0.0042644264176488,0.020916124805808],[0.092515386641026,-0.054787240922451,-0.010807222686708]],[[-0.10391628742218,0.021761721000075,0.10323267430067],[0.05145400390029,0.020369296893477,-0.075904384255409],[-0.031075906008482,-0.02299383841455,-0.086787164211273]],[[0.084587626159191,-0.019883459433913,-0.063345327973366],[-0.059508249163628,-0.10329390317202,0.049018297344446],[-0.054652292281389,-0.028699982911348,0.030446289107203]],[[-0.013150635175407,0.0067447330802679,0.084158077836037],[0.023194618523121,0.019021043553948,0.026980632916093],[-0.014069846831262,0.01473106443882,-0.036273125559092]],[[-0.064420595765114,0.010591927915812,0.011097497306764],[0.11578096449375,0.11346956342459,-0.012776956893504],[0.032327860593796,-0.035624355077744,0.020113736391068]],[[-0.061992686241865,0.028661260381341,-0.0024061689618975],[0.050870884209871,0.051913660019636,0.031365368515253],[0.023543303832412,0.088527485728264,0.037333071231842]],[[0.069201178848743,-0.090469352900982,0.048242207616568],[-0.073839165270329,0.024273347109556,0.031646568328142],[0.099879890680313,-0.086847990751266,-0.023964434862137]]],[[[0.0081518925726414,-0.035138908773661,-0.053652439266443],[-0.013445024378598,0.10574360191822,0.030397387221456],[-0.013049977831542,0.0034820951987058,-0.056249499320984]],[[0.073655381798744,0.037980642169714,-0.04094897583127],[-0.024713074788451,-0.044395573437214,-0.017809748649597],[-0.084706507623196,0.0083421180024743,0.015533791854978]],[[-0.030394729226828,0.015940375626087,-0.031971707940102],[-0.010007021017373,-0.034122094511986,0.0391626060009],[-0.013296735472977,-0.027702895924449,0.018124885857105]],[[0.024572251364589,0.033264130353928,-0.049631338566542],[-0.025831514969468,0.018467161804438,-0.025405548512936],[0.017757721245289,-0.022142676636577,0.025914762169123]],[[0.010492898523808,-0.010097246617079,0.036816347390413],[0.045740135014057,-0.091167941689491,-0.010615274310112],[0.048967536538839,-0.029321871697903,-0.011709813028574]],[[0.0071503329090774,-0.011651775799692,-0.034397464245558],[0.044719215482473,-0.01358007825911,-0.0030726736877114],[0.078047782182693,0.032005205750465,0.025372736155987]],[[-0.0099662644788623,0.016484217718244,-0.00092892738757655],[0.089441709220409,-0.042041808366776,0.089291043579578],[-0.0066804317757487,0.026413518935442,-0.011872606351972]],[[-0.070518150925636,0.0084672719240189,0.071057043969631],[-0.07743326574564,-0.070255234837532,0.027923071756959],[-0.014258291572332,-0.011583256535232,-0.0014347238466144]],[[0.0022459076717496,0.017807079479098,0.011845113709569],[0.074792519211769,-0.017849158495665,-0.0495630428195],[0.027633275836706,0.03646432608366,-0.055803872644901]],[[0.017445573583245,-0.0043776305392385,0.082976266741753],[-0.0053125768899918,-0.026038385927677,-0.083688803017139],[0.041565611958504,-0.062407828867435,-0.035887457430363]],[[0.035223722457886,0.0017545120790601,-0.004333027638495],[-0.0083094704896212,0.035100117325783,0.040888257324696],[0.021422823891044,0.033214934170246,0.023335846140981]],[[0.104939840734,0.080333635210991,0.027200488373637],[-0.043513938784599,0.01004125084728,-0.045728161931038],[0.050043161958456,-0.037684593349695,-0.0057746204547584]],[[-0.0034057081211358,-0.013370716944337,-0.03871313855052],[-0.027473628520966,-0.074747890233994,-0.043530400842428],[-0.019461819902062,-0.075220033526421,0.030722603201866]],[[0.031353671103716,0.057625859975815,-0.0034572340082377],[0.0080277025699615,0.034991342574358,-0.021378614008427],[0.0051527363248169,-0.033417802304029,-0.0032796920277178]],[[-0.045366253703833,0.020789632573724,-0.0025613813195378],[0.032716333866119,0.063283376395702,-0.048086583614349],[0.03491984680295,-0.0096347061917186,-0.013117053546011]],[[-0.0097298854961991,-0.0063399104401469,0.026594063267112],[0.036944944411516,0.0089156217873096,-0.012419782578945],[0.0042230095714331,0.014352989383042,0.020384108647704]],[[0.023062627762556,-0.065792769193649,-0.004095483571291],[-0.051389779895544,-0.00047520824591629,-0.00047924957470968],[0.020266970619559,0.0037709518801421,0.0014006540877745]],[[-0.033810816705227,0.021508611738682,0.0521639585495],[0.033632267266512,-0.016288517042994,-0.038574665784836],[-0.023069936782122,-0.010864990763366,-0.0022070573177189]],[[0.043872389942408,-0.0011879320954904,-0.04799759760499],[0.025267917662859,0.04907638207078,-0.060584031045437],[-0.073935881257057,-0.0088659944012761,0.015739899128675]],[[-0.0086626028642058,0.0093973688781261,0.028659926727414],[-0.02236014418304,0.059296220541,-0.023002179339528],[0.068933412432671,-0.00042292635771446,-0.050416260957718]],[[-0.007806139998138,0.071377374231815,0.021431842818856],[-0.010666537098587,-0.019214581698179,0.057066142559052],[-0.024419959634542,-0.042372018098831,-0.00029581427224912]],[[-0.0087795024737716,-0.023011131212115,-0.034120935946703],[0.00010434974683449,0.021181214600801,-0.0080388151109219],[0.030666278675199,-0.035785298794508,0.04233068972826]],[[0.0067535289563239,-0.02486296184361,-0.0032583819702268],[-0.044349506497383,0.011300913058221,-0.027150366455317],[0.054498467594385,-0.015143099240959,-0.026900053024292]],[[0.0064307935535908,-0.011776517145336,-0.017126167193055],[0.031076710671186,0.026381343603134,-0.024390209466219],[-0.0053527695126832,0.0036161080934107,0.053872600197792]],[[-0.014245034195483,-0.10395155102015,-0.013497031293809],[0.069516465067863,0.034793373197317,-0.048441637307405],[0.027642074972391,-0.0035800491459668,-0.014222177676857]],[[-0.038534853607416,0.065931893885136,0.021480198949575],[-0.0046699643135071,0.033794965595007,-0.035400364547968],[-0.045649282634258,0.04443908110261,-0.014047257602215]],[[0.0081779286265373,-0.052463695406914,0.024822600185871],[-0.012771460227668,-0.050173934549093,-0.053344000130892],[-0.0279730707407,-0.088966064155102,-0.007435763720423]],[[0.021161377429962,-0.023766856640577,0.031768180429935],[0.070298932492733,-0.024052027612925,0.074520915746689],[0.039907742291689,0.011756459251046,0.025528909638524]],[[0.022198349237442,-0.037496980279684,0.028059864416718],[0.020588453859091,0.0032465958502144,-0.033047664910555],[-0.049979213625193,0.04016400501132,-0.024567412212491]],[[0.040574181824923,0.054163228720427,-0.035614006221294],[-0.020939882844687,0.058023359626532,0.040077317506075],[-0.021821122616529,-0.00028342628502287,0.02452078089118]],[[-0.056426703929901,-0.0019213005434722,0.037865046411753],[-0.017768090590835,-0.014255030080676,0.019014066085219],[-0.010651089251041,-0.0075836372561753,0.033456385135651]],[[-0.0025146927218884,-0.08045644313097,0.040278099477291],[0.041362162679434,-0.029076643288136,-0.022045640274882],[0.024605069309473,0.0024858803953975,0.005487744230777]],[[-0.10543793439865,-0.010008561424911,0.055174969136715],[-0.027645315974951,-0.0022864649072289,0.0032733890693635],[0.074541710317135,0.083152092993259,0.022749282419682]],[[0.033526547253132,0.011671281419694,-0.027659533545375],[0.022169470787048,0.014014847576618,0.0027458155527711],[-0.0037677146028727,-0.046051505953074,0.015746243298054]],[[0.040008589625359,0.066191382706165,-0.040195759385824],[-0.0066639594733715,-0.049067858606577,0.015255148522556],[-0.015343617647886,-0.014991578646004,0.0028386795893312]],[[0.061934448778629,0.050692364573479,0.04034973308444],[0.054359015077353,0.0002633661206346,-0.023514863103628],[-0.016944982111454,-0.03443755954504,-0.006907750852406]],[[0.068159975111485,-0.016329050064087,-0.0050317016430199],[0.010186473838985,0.017451258376241,0.041739709675312],[0.084915697574615,0.0033154296688735,-0.03251950070262]],[[0.0041879313066602,-0.064664021134377,-0.037656389176846],[-0.0027298347558826,0.014431439340115,0.026313256472349],[-0.013489640317857,0.0083858761936426,0.020438006147742]],[[0.066153988242149,0.025257574394345,-0.064204178750515],[-0.0016397734871134,-0.045684769749641,-0.05328530818224],[-0.076026275753975,-0.018880441784859,0.013776362873614]],[[0.01211363170296,0.026517476886511,0.027978694066405],[0.016733068972826,-0.065726034343243,-0.027012655511498],[-0.010036519728601,0.082845740020275,0.043355114758015]],[[-0.0026179798878729,0.036892686039209,0.022953955456614],[0.032363500446081,0.012271537445486,-0.0045064352452755],[-0.00049307942390442,-0.053274065256119,-0.060621872544289]],[[0.01745012961328,-0.017150992527604,0.040873717516661],[0.082797281444073,-0.0049121617339551,0.046640481799841],[-0.063494056463242,-0.017945896834135,0.02435258589685]],[[-0.019078535959125,-0.042023349553347,0.060196559876204],[-0.036760110408068,0.010618173517287,0.007673273794353],[-0.02046512439847,0.01152226049453,-0.0087593402713537]],[[0.01096579246223,0.035926520824432,0.012964249588549],[0.0086713694036007,-0.10112565755844,-0.045994363725185],[-0.030801609158516,0.062477845698595,-0.063474729657173]],[[0.066240690648556,-0.021537883207202,0.02209010347724],[0.038384042680264,-0.015185810625553,-0.017913289368153],[0.052749708294868,-0.060024172067642,0.022120270878077]],[[0.029504070058465,0.069392874836922,-0.07694797962904],[0.0081482147797942,0.020810451358557,-0.036281436681747],[0.014830131083727,0.0073189190588892,0.0046197059564292]],[[0.065711922943592,0.024108791723847,-0.019328502938151],[-0.059851065278053,-0.035565972328186,0.031920585781336],[0.076791472733021,-0.0092401895672083,0.027439337223768]],[[0.012491965666413,-0.035824779421091,-0.01598160341382],[-0.022407617419958,-0.048183519393206,-0.019934933632612],[-0.0086796432733536,0.093853853642941,0.047560062259436]],[[-0.0048439824022353,0.07672318816185,-0.021537594497204],[-0.035786155611277,-0.075031362473965,-0.058691047132015],[-0.010796775110066,0.00056282087462023,0.01765950769186]],[[0.038446687161922,-0.011640331707895,0.04145384952426],[0.036455325782299,-0.004330413416028,0.013127035461366],[-0.012221056036651,0.007014958653599,-0.058582227677107]],[[0.072382777929306,-0.085521072149277,-0.037868689745665],[-0.050142284482718,-0.021156910806894,-0.0051773656159639],[0.068754814565182,-0.060190238058567,0.034284390509129]],[[0.002792188199237,0.022458214312792,-0.050918430089951],[-0.06728532910347,0.026954762637615,0.056238248944283],[-0.0072101252153516,-0.026713021099567,0.021296015009284]],[[0.071615606546402,-0.060693304985762,0.0032905226107687],[-0.037366785109043,-0.039264723658562,0.034426707774401],[-0.02267843298614,-0.018662169575691,0.059750903397799]],[[-0.017268270254135,0.077572837471962,0.054453562945127],[-0.011358140967786,-0.0082416003569961,0.13517159223557],[-0.03322497010231,-0.040673937648535,0.026056775823236]],[[-0.06583072245121,-0.045743126422167,-0.00727892620489],[0.0058896224945784,0.0096424389630556,0.053547270596027],[-0.035770989954472,0.010510503314435,-0.072827234864235]],[[0.021323138847947,0.015256209298968,0.034055985510349],[0.0022606286220253,-0.020842339843512,0.048545930534601],[-0.10699716210365,-0.028257975354791,-0.064046926796436]],[[0.032903481274843,-0.054815240204334,0.0083301831036806],[-0.025163497775793,0.06159508228302,-0.014069073833525],[0.056200314313173,0.0037044784985483,-0.042794737964869]],[[-0.049468129873276,0.11142019182444,0.090766787528992],[0.00056331319501624,0.018956171348691,0.026403617113829],[-0.062002550810575,-0.013741823844612,-0.061148878186941]],[[0.04941763356328,0.036292046308517,0.0025055401492864],[0.038221102207899,-0.035209141671658,-0.042570184916258],[0.070000566542149,-0.0018293316243216,0.013606301508844]],[[0.041281130164862,0.049762696027756,-0.024167157709599],[0.034321159124374,-0.020830420777202,0.058433655649424],[0.031219817698002,-0.052461188286543,-0.042155802249908]],[[0.053795274347067,0.054101888090372,0.030182277783751],[-0.068574301898479,0.04129696264863,0.015406716614962],[0.094672113656998,-0.086704067885876,-0.10049464553595]],[[-0.016801049932837,0.031731929630041,0.041964773088694],[-0.040534306317568,-0.0096766194328666,-0.069044582545757],[0.020835494622588,0.059089962393045,-0.11259470134974]],[[-0.029064362868667,-0.087995544075966,0.02125708386302],[0.032590534538031,-0.029642639681697,0.063141077756882],[-0.039920881390572,0.025603462010622,-0.018958602100611]],[[0.016602491959929,0.01483479142189,0.0091141369193792],[-0.0035955195780843,0.054474465548992,-0.012984610162675],[-0.074958369135857,0.040287457406521,0.06331554800272]],[[-0.0041815657168627,0.085576459765434,0.022376012057066],[0.037821676582098,0.008592251688242,0.029277643188834],[0.005154172424227,-0.031186256557703,-0.0063304244540632]],[[0.02624954469502,-0.0021925764158368,0.033494926989079],[-0.033885288983583,0.013684860430658,-0.021005900576711],[0.047506704926491,-0.058258254081011,0.051349669694901]],[[0.016443556174636,0.046442173421383,-0.047173365950584],[0.017009889706969,-0.071696490049362,0.059284407645464],[0.045079376548529,-0.032776620239019,-0.0056085847318172]],[[0.035945415496826,-0.039520163089037,0.030766628682613],[0.011757990345359,0.010293236933649,-0.053998313844204],[-0.0037442767061293,0.00081795733422041,-0.026889450848103]],[[-0.014723849482834,-0.009800729341805,-0.0084983520209789],[0.049231979995966,0.074039742350578,0.048680432140827],[0.0036619489546865,0.020516125485301,-0.084426946938038]],[[-0.023288756608963,0.029441984370351,-0.0072126761078835],[0.064489647746086,0.048269558697939,0.016733074560761],[0.0037226600106806,-0.01053384039551,0.022675402462482]],[[0.0046430979855359,0.0022148326970637,0.024993376806378],[0.022990820929408,0.03772721067071,-0.044086009263992],[-0.029892977327108,0.1020937487483,-0.093375697731972]],[[-0.059286929666996,0.0092922002077103,-0.071567244827747],[-0.065381497144699,0.037728954106569,0.021924125030637],[-0.0002954580122605,-0.0032839775085449,0.033118739724159]],[[0.053261786699295,0.0035450009163469,0.042666759341955],[0.011997359804809,-0.031454186886549,0.030779449269176],[-0.025685543194413,0.044951565563679,0.028292214497924]],[[0.0009295228519477,-0.01290809828788,0.0025977292098105],[-0.03539302572608,0.027370104566216,-0.015612508170307],[0.012060563080013,0.0088851507753134,-0.02740978077054]],[[-0.011323495768011,0.0039595477283001,-0.006639625877142],[0.064786583185196,-0.0092967562377453,-0.040448822081089],[0.029804477468133,0.044039096683264,-0.057974878698587]],[[-0.0067656817846,0.01649622246623,-0.024823011830449],[0.011552103795111,0.015403782948852,-0.025023410096765],[-0.025216195732355,0.023043056949973,0.025106117129326]],[[-0.020923271775246,0.0038594654761255,0.025889467447996],[0.027372477576137,-0.016288911923766,-0.022000199183822],[0.015406034886837,-0.021880215033889,0.033166233450174]],[[0.026603253558278,0.017142623662949,0.05297389253974],[-0.084513403475285,-0.0075934715569019,-0.071056865155697],[0.047825686633587,0.013060818426311,0.013552812859416]],[[-0.057053919881582,0.024128578603268,0.052462100982666],[-0.07441234588623,0.010163838975132,-0.01497795060277],[0.020780198276043,0.066286221146584,-0.01756439357996]],[[-0.048947896808386,0.008232525549829,0.06679181009531],[0.0036737769842148,-0.0074792467057705,-0.025570387020707],[0.017136728391051,0.045042295008898,0.018679901957512]],[[-0.015741288661957,0.021789368242025,0.067524991929531],[-0.061331104487181,0.041155770421028,0.051208209246397],[-0.010767524130642,-0.084546469151974,0.04110100492835]],[[0.0084769772365689,0.028903510421515,0.025009429082274],[0.011495807208121,-0.10171814262867,0.020551254972816],[0.080152809619904,0.046058606356382,-0.054924745112658]],[[-0.01712791249156,0.039430987089872,-0.020799521356821],[0.03255457431078,-0.014910806901753,-0.030633524060249],[-0.0086577795445919,-0.019760707393289,0.089812465012074]],[[-0.016773406416178,-0.00026075553614646,0.031871654093266],[-0.011028030887246,0.0083368271589279,0.042597699910402],[-0.046839363873005,-0.03448660671711,0.065259329974651]],[[-0.054496940225363,-0.015824636444449,0.06740540266037],[0.0058089215308428,0.0074013550765812,-0.042013816535473],[-0.056183714419603,0.044369511306286,0.0022872546687722]],[[-0.0071608102880418,0.034423097968102,0.061240743845701],[0.0075849834829569,0.0051804129034281,-0.055898316204548],[-0.0003745807625819,0.073200955986977,0.021711133420467]],[[0.091940432786942,-0.0089951241388917,-0.00410629902035],[-0.03800943121314,-0.0087032672017813,0.030825695022941],[0.006136919837445,-0.032545883208513,0.083494149148464]],[[-0.016501722857356,-0.010710502043366,0.024938626214862],[-0.038030613213778,0.010945498943329,-0.019568752497435],[0.0047063557431102,0.039671842008829,-0.0082042366266251]],[[0.014643047936261,-0.12138765305281,-0.032428342849016],[0.045944780111313,-0.0056237257085741,0.0020760402549058],[0.020617369562387,0.038179725408554,-0.051060851663351]],[[0.019708769395947,0.038840159773827,-0.0082172080874443],[-0.075687177479267,0.028137851506472,0.076093673706055],[-0.017473669722676,0.061698585748672,-0.048696219921112]],[[0.0014502841513604,0.026078693568707,0.027797348797321],[0.047667223960161,0.030378922820091,-0.013752534985542],[0.038573324680328,-0.040348500013351,-0.050210051238537]],[[0.0018382688285783,0.0021985615603626,0.0065269656479359],[0.017513846978545,-0.0081443265080452,-0.040372096002102],[-0.077530533075333,-0.025308726355433,-0.032824233174324]],[[0.0089616943150759,-0.012481383047998,0.042651705443859],[-0.06589063256979,0.061093408614397,-0.039419129490852],[-0.057089790701866,0.042518150061369,-0.02815623767674]],[[-0.023593915626407,-0.010216491296887,-0.036740176379681],[-0.040167804807425,0.067171223461628,-0.040052533149719],[0.020088704302907,-0.044277545064688,-0.0096143307164311]],[[0.0047411266714334,-0.043377194553614,0.045388087630272],[0.026095194742084,-0.0013456813758239,-0.0066413255408406],[-0.030007278546691,0.051619723439217,-0.024355467408895]],[[0.064847342669964,0.010809469036758,0.0013365829363465],[-0.0091717662289739,-0.061015870422125,-0.018967933952808],[-0.03907909989357,0.058606069535017,-0.021643994376063]],[[0.010585880838335,-0.022337345406413,-0.028125775977969],[0.039746392518282,-0.01025927811861,0.080100044608116],[0.032953768968582,-0.0068125580437481,-0.011246295645833]],[[-0.036214884370565,0.00017167464829981,0.00062528322450817],[-0.032363455742598,0.00094047066522762,0.037754848599434],[0.093892313539982,-0.022198755294085,-0.00027502374723554]],[[0.028216153383255,-0.035791255533695,0.052030500024557],[0.0019179701339453,-0.080055668950081,-0.027712473645806],[0.017708357423544,0.022728914394975,0.0082798274233937]],[[-0.021015763282776,0.073199540376663,-0.051538232713938],[-0.084321767091751,-0.0017264703055844,-0.017828686162829],[0.038437899202108,0.049265645444393,-0.0040452280081809]],[[-0.053660333156586,0.060172688215971,-0.021455047652125],[0.018692441284657,0.049742832779884,0.025729620829225],[0.0014177998527884,0.0023951949551702,0.007590931840241]],[[-0.0023150378838181,0.031365673989058,-0.033034466207027],[0.039438374340534,-0.046200003474951,0.014089894481003],[0.0033293012529612,-0.0086966380476952,-0.04846590384841]],[[-0.0034681481774896,0.016256297007203,0.021364230662584],[0.038653407245874,0.038991566747427,-0.064042799174786],[-0.026805479079485,0.050654534250498,0.03629582002759]],[[0.045420926064253,0.0175292622298,0.034762136638165],[-0.035826727747917,0.013295951299369,-0.047267161309719],[0.0046872650273144,-0.033065933734179,0.0010509417625144]],[[-0.052644722163677,0.03106945566833,0.016940258443356],[0.021289639174938,0.060365840792656,0.0026394848246127],[-0.049905076622963,0.036583017557859,0.04519984126091]],[[-0.028406595811248,-0.0039184493944049,-0.017771566286683],[0.025891227647662,-0.0065641477704048,-0.0027079645078629],[0.051518496125937,-0.016136782243848,0.027311554178596]],[[0.046890180557966,0.028342187404633,-0.012259009294212],[-0.075203731656075,0.059986591339111,-0.022078108042479],[-0.013854601420462,0.021545452997088,-0.013187602162361]],[[0.00091369409346953,0.029761241748929,0.020828986540437],[0.033390317112207,0.049191769212484,-0.010017693974078],[-0.091222897171974,-0.024429338052869,-0.023201797157526]],[[0.015489933080971,-0.027273308485746,-0.0027184335049242],[-0.013328103348613,0.0067292079329491,0.049831237643957],[0.043219726532698,-0.0077858129516244,0.018532382324338]],[[-0.068895444273949,-0.029993645846844,-0.028927719220519],[-0.068389438092709,-0.083987042307854,0.0074985772371292],[-0.049109179526567,-0.014901774935424,-0.05650894343853]],[[0.022701494395733,-0.025902941823006,0.072742104530334],[-0.0061691775918007,0.078724265098572,0.047666996717453],[0.013755369000137,0.043776705861092,0.012895650230348]],[[-0.041784659028053,0.0089703453704715,0.043893303722143],[0.032902657985687,-0.031446438282728,0.046418152749538],[-0.024711785838008,0.0099514788016677,0.081993080675602]],[[0.030663887038827,-0.024836180731654,0.047494776546955],[0.095675922930241,0.00097799161449075,-0.063211649656296],[-0.014357946813107,-0.007681627292186,0.014310707338154]],[[-0.028574721887708,-0.098502673208714,-0.096465721726418],[-0.13074973225594,-0.024669012054801,-0.027255268767476],[-0.042992234230042,-0.056219194084406,0.0013271158095449]],[[-0.048449635505676,0.028248660266399,-0.068318702280521],[-0.0086948974058032,0.085023336112499,-0.025271888822317],[-0.01422035228461,0.042445089668036,0.023943366482854]],[[0.034856684505939,-0.0010843619238585,0.0049285884015262],[0.00018268813437317,-0.014846062287688,0.036150213330984],[-0.03897425532341,-0.032694637775421,0.002604668494314]],[[0.047265361994505,0.057656858116388,-0.048838637769222],[-0.014115868136287,-0.05051301792264,-0.017840912565589],[-0.038753688335419,-0.024272710084915,-0.010936675593257]],[[-0.026347406208515,-0.020657606422901,0.013995601795614],[0.00014342975919135,-0.014743643812835,-0.023304061964154],[-0.033733453601599,0.031723599880934,-0.050162978470325]],[[0.018926482647657,-0.040688123553991,0.031470309942961],[0.04099502786994,0.021667467430234,0.12417198717594],[0.055299010127783,-0.03320450335741,0.017318807542324]],[[-0.042959731072187,0.0070819794200361,0.038446545600891],[-0.047989629209042,0.0020093182101846,0.033297725021839],[0.013831266202033,-0.016325630247593,-0.051714953035116]],[[0.053263366222382,-0.035636588931084,-0.061322424560785],[0.0044841524213552,-0.0024618576280773,-0.049440193921328],[-0.072397984564304,-0.012232335284352,-0.067306585609913]],[[-0.012320338748395,-0.040169537067413,-0.092610463500023],[0.0073006339371204,0.027321729809046,0.033942639827728],[-0.023839710280299,0.084871254861355,0.055833108723164]],[[-0.014294741675258,-0.03462890163064,0.0026866206899285],[-0.0071310503408313,0.0026868528220803,0.016052175313234],[-0.0023584773298353,0.071357108652592,0.027152288705111]],[[-0.017767835408449,0.0019708655308932,0.061876405030489],[-0.0059264227747917,-0.019098097458482,0.01491882558912],[0.013125726021826,0.014449863694608,-0.0035857588518411]],[[-0.0064943335019052,0.025592748075724,-0.01344721019268],[-0.034119952470064,-0.017917258664966,-0.053748987615108],[0.11331880837679,-0.052146017551422,0.071161597967148]],[[-0.030290272086859,-0.054729457944632,-0.02039329893887],[-0.0073423478752375,-0.11018231511116,-0.048414390534163],[0.039024721831083,-0.072216615080833,0.017176089808345]],[[-0.041503414511681,0.014645965769887,0.007325226906687],[0.022246833890676,-0.083188317716122,0.045177049934864],[0.012912939302623,0.0014429796719924,0.023615745827556]],[[-0.066421315073967,-0.052280388772488,0.047056633979082],[-0.077459305524826,0.068368256092072,0.044409487396479],[0.029965225607157,-0.029333580285311,-0.099995627999306]]],[[[-0.10468257963657,0.033986125141382,-0.059455513954163],[-0.058072436600924,-0.08511059731245,0.0046227280981839],[-0.028216578066349,0.018782226368785,-0.014242773875594]],[[-0.011686293408275,-0.030795929953456,-0.030807191506028],[-0.036715462803841,0.015431435778737,0.0084689948707819],[-0.092254117131233,0.0060475040227175,-0.044446215033531]],[[0.010356570594013,0.021096533164382,-0.025912340730429],[0.051284603774548,0.033087570220232,-0.0022227244917303],[-0.027931520715356,-0.0042406069114804,-0.037656527012587]],[[-0.041486248373985,0.027051044628024,0.01026913151145],[0.083749875426292,0.0050272829830647,-0.04945507645607],[0.020146498456597,0.080429531633854,-0.001903131371364]],[[-0.0062055354937911,-0.066665656864643,0.022530624642968],[0.00032686145277694,0.0045975269749761,0.031915731728077],[-0.00035801494959742,0.029652900993824,-0.018356997519732]],[[0.029824070632458,-0.0099241314455867,-0.04428917914629],[-0.039830982685089,-0.02324528619647,0.022548783570528],[-0.024235242977738,0.0030186104122549,0.025809541344643]],[[0.046876009553671,0.075899161398411,-0.055421829223633],[0.070377267897129,-0.0031645612325519,-0.05218019336462],[-0.00068421853939071,-0.012655814178288,-0.013457380235195]],[[0.013310760259628,0.012735723517835,0.10443749278784],[-0.049559470266104,-0.046298034489155,0.10480640828609],[0.041729748249054,0.044050965458155,0.065262295305729]],[[-0.10423947870731,-0.049676485359669,-0.098363347351551],[0.057552229613066,0.091539181768894,0.096383512020111],[0.0065767602063715,0.0013963249512017,-0.010555158369243]],[[0.044090792536736,0.19801990687847,-0.0041520083323121],[-0.010475311428308,0.13048532605171,0.12042858451605],[0.060781419277191,0.28113403916359,0.082927674055099]],[[-0.079665407538414,0.075073100626469,0.028935985639691],[-0.041552752256393,0.043292559683323,0.095187351107597],[-0.077656857669353,0.047566529363394,0.1036621555686]],[[0.10432624816895,0.0092680212110281,0.041468273848295],[-0.0042384206317365,-0.034868486225605,0.026259031146765],[0.041291795670986,0.018787646666169,0.036497160792351]],[[0.018005959689617,0.035881765186787,0.036370683461428],[-0.079302631318569,0.025146532803774,0.089849285781384],[0.083227045834064,0.11058493703604,0.055542077869177]],[[0.040554080158472,0.03627322986722,0.012775511480868],[0.00037146045360714,0.025910099968314,-0.025925299152732],[-0.0033158410806209,0.046216040849686,0.043676380068064]],[[0.036344010382891,0.11162413656712,0.12838788330555],[0.04284055903554,0.020746812224388,0.012917779386044],[0.083548866212368,0.088643662631512,-0.08412267267704]],[[-0.02281691879034,-0.0019403116311878,-0.052494566887617],[-0.024034475907683,4.309717041906e-06,0.042364154011011],[0.060664359480143,-0.019528536126018,-0.034809798002243]],[[0.048340030014515,-0.074577987194061,0.04487206786871],[0.028128247708082,0.058586064726114,0.033819049596786],[-0.096213929355145,-0.0048218285664916,0.054748419672251]],[[0.02010185085237,-0.0055264523252845,-0.058725092560053],[-0.041662782430649,0.012317952699959,-0.040872246026993],[-0.012369607575238,0.029569018632174,0.026152610778809]],[[0.02963512763381,-0.011924492195249,-0.016789885237813],[0.046972740441561,0.060746986418962,-0.012201925739646],[0.068303987383842,0.011605151928961,0.019146082922816]],[[-0.037437926977873,-0.043299365788698,8.5657469753642e-05],[0.094758071005344,-0.018330259248614,0.011013554409146],[-0.012425941415131,0.082142218947411,-0.057950496673584]],[[-0.039593677967787,-0.070469684898853,-0.050954587757587],[0.02566304244101,0.0020176491234452,-0.021156610921025],[0.043359745293856,-0.081863649189472,-0.049834836274385]],[[0.1409100741148,0.090757556259632,0.090709820389748],[0.06348805129528,0.0025427741929889,0.028445415198803],[0.080354623496532,0.018641792237759,0.16603714227676]],[[0.012263873592019,-0.041040305048227,-0.035682015120983],[-0.056340351700783,-0.023541057482362,-0.012869496829808],[0.086518183350563,-0.0015242823865265,-0.040827099233866]],[[-0.016622599214315,0.052978746592999,0.14661774039268],[0.11450290679932,0.078662939369678,0.062975905835629],[0.12997509539127,0.10783898085356,0.041437022387981]],[[0.029168518260121,-0.0095138931646943,-0.098854638636112],[-0.047089822590351,-0.016707845032215,0.0023756737355143],[0.02003675326705,0.073458023369312,-0.10328271239996]],[[-0.03979430347681,0.036700751632452,0.0086600817739964],[-0.045472908765078,-0.033451162278652,-0.0020714832935482],[0.13446946442127,-0.0082398587837815,-0.0075982525013387]],[[-0.047815598547459,-0.056305322796106,0.03984984010458],[0.024338448420167,0.026070037856698,0.082003369927406],[-0.0025870825629681,0.016604039818048,0.096451997756958]],[[-0.057752475142479,-0.051660530269146,-0.037023637443781],[0.0013146953424439,-0.011662755161524,0.086930900812149],[-0.027376959100366,0.040802169591188,-0.029112929478288]],[[-0.047755923122168,-0.04264122620225,0.047487139701843],[-0.051481328904629,0.049383770674467,0.067919686436653],[-0.013010648079216,0.086119599640369,-0.02935796789825]],[[-0.023790366947651,0.004176348913461,0.055425878614187],[-0.022579468786716,-0.013311116956174,0.047067791223526],[0.025300377979875,0.045958038419485,0.0095007754862309]],[[-0.030656114220619,0.026124021038413,-0.047823846340179],[0.044488105922937,0.02333957888186,0.016535053029656],[0.1290924847126,0.06137428805232,5.1651451940415e-05]],[[0.01015679910779,0.023877996951342,-0.022341102361679],[0.040428135544062,-0.032131768763065,-0.0060368208214641],[0.013085321523249,0.021298313513398,0.030974492430687]],[[0.027883475646377,-0.003173244651407,0.0085526024922729],[-0.014014658518136,-0.035605706274509,0.10671608895063],[0.04220799356699,-0.022387903183699,-0.026046134531498]],[[0.0075429542921484,-0.0088228844106197,0.05754667147994],[-0.011991001665592,0.028512658551335,-0.001788321766071],[0.076965346932411,0.066609732806683,-0.017643904313445]],[[-0.0076612406410277,-0.0063583268783987,0.074575588107109],[0.019076898694038,0.038462243974209,0.090424709022045],[0.003472562180832,-0.0032880445942283,0.10587575286627]],[[-0.0027000578120351,-0.0052465898916125,-0.077777080237865],[-0.068893492221832,-0.0038411761634052,0.019607635214925],[-0.040435418486595,-0.0073274220339954,-0.047208797186613]],[[0.002013002987951,-0.035632785409689,-0.051926355808973],[-0.043203566223383,-0.12119653820992,-0.061339288949966],[0.016441244632006,-0.10172299295664,-0.1558201611042]],[[0.045864041894674,-0.049678653478622,-0.010392990894616],[-0.019003657624125,0.037025161087513,0.054369576275349],[0.0012338357046247,-0.044156100600958,0.084026657044888]],[[0.038785185664892,0.0025055033620447,0.041411481797695],[-0.010072105564177,0.023985274136066,0.0019967074040323],[0.09486473351717,-0.053267564624548,0.0040328111499548]],[[0.013823035173118,-0.083629436790943,-0.0038497822824866],[0.040339916944504,-0.010866092517972,-0.0004803697229363],[-0.023110076785088,0.0996258482337,0.047025471925735]],[[-0.031209427863359,-0.012719270773232,0.084260791540146],[0.033881682902575,-0.013634485192597,0.052889995276928],[0.011837265454233,0.0087475012987852,-0.036143563687801]],[[0.035889085382223,-0.053880386054516,-0.002161136129871],[-0.022061666473746,0.00019050762057304,0.049344461411238],[-0.11322686076164,0.043910373002291,0.016419509425759]],[[-0.0076230461709201,-0.0063466993160546,-0.063776411116123],[-0.044120028614998,0.034831821918488,-0.010716123506427],[-0.022412383928895,0.014344406314194,0.10396199673414]],[[0.054525058716536,-0.0036660309415311,0.0066065667197108],[-0.058302212506533,0.032513935118914,0.0087135517969728],[-0.0099813723936677,0.038902539759874,-0.023247284814715]],[[0.0063965041190386,-0.054102841764688,0.040334213525057],[0.021402908489108,0.0427261069417,-0.010581645183265],[0.006919655483216,0.051086522638798,-0.10547965764999]],[[0.037639647722244,0.10207547992468,0.025044612586498],[0.038431145250797,-0.043613031506538,0.088777877390385],[0.040372233837843,0.044937375932932,0.027166500687599]],[[-0.042575929313898,-0.02115642093122,0.030313964933157],[-0.03363811224699,-0.0038803271017969,0.098452337086201],[0.0040596993640065,-0.041520036756992,0.046969402581453]],[[0.014837308786809,0.028678918257356,0.036676868796349],[-0.0084881447255611,0.0054185148328543,-0.12708123028278],[0.031769800931215,-0.018337778747082,-0.009589004330337]],[[-0.040662985295057,-0.033545382320881,0.043389193713665],[-0.013475784100592,0.051425214856863,-0.099474593997002],[-0.01230585668236,-0.0062171369791031,-0.034157618880272]],[[0.030874121934175,-0.053619530051947,-0.010734405368567],[-0.0065862713381648,0.0036730745341629,-0.08219039440155],[0.071419790387154,-0.052525144070387,-0.10328325629234]],[[-0.01709714718163,0.013944941572845,-0.075433440506458],[-0.054128430783749,-0.037322364747524,0.11916606128216],[-0.02280724234879,0.034550417214632,0.063857056200504]],[[0.01074003148824,0.052068557590246,0.09799936413765],[0.017266660928726,0.0015673813177273,0.012250892817974],[0.017877286300063,0.11150722205639,0.028202019631863]],[[0.16092544794083,0.036616295576096,-0.002056305995211],[-0.010463546961546,0.061473414301872,-0.024375412613153],[-0.016032190993428,0.032135520130396,0.0080733960494399]],[[-0.00052832718938589,0.029084835201502,-0.071529097855091],[0.069470226764679,-0.028634414076805,0.065567560493946],[-0.0027732152957469,0.014552070759237,-0.059064205735922]],[[0.064528957009315,-0.018807666376233,0.02188060991466],[0.058771591633558,0.025643384084105,-0.082343630492687],[-0.0072024976834655,0.099683798849583,0.033053074032068]],[[0.054359450936317,0.047841183841228,0.021727195009589],[-0.046196933835745,-0.063891865313053,0.043153006583452],[0.02671323530376,-0.0099129965528846,-0.0070864581502974]],[[-0.073649786412716,0.025846214964986,-0.11191609501839],[0.016590656712651,-0.0098132798448205,0.041569259017706],[-0.020496929064393,0.035639513283968,0.060263335704803]],[[-0.075234025716782,-0.048418875783682,-0.054979536682367],[-0.048120450228453,0.018273865804076,-0.035316780209541],[0.0055149407126009,0.0061290003359318,-0.0080548888072371]],[[-0.025136848911643,0.056231059134007,0.088751927018166],[0.023023528978229,0.014485139399767,0.019898544996977],[-0.043682835996151,0.038136024028063,0.059575811028481]],[[0.010694467462599,0.00056858622701839,0.023066554218531],[0.0070874313823879,0.054599892348051,0.0062071830034256],[0.081920124590397,0.017908032983541,-0.0123868919909]],[[-0.049891270697117,-0.055505011230707,-0.00095767161110416],[0.096326150000095,-0.027281828224659,0.069888114929199],[-0.055236835032701,0.054106667637825,-0.041820332407951]],[[0.0084476247429848,-0.048360910266638,0.0026569615583867],[-0.024192988872528,-0.076628737151623,-0.010433689691126],[0.0024187506642193,0.01970268599689,-0.13904395699501]],[[-0.037928868085146,-0.0048256753943861,0.072843298316002],[0.050632819533348,0.01526667829603,0.038257889449596],[0.0030562763568014,0.010272776708007,-0.07128319144249]],[[-0.025738159194589,0.047643464058638,0.035353608429432],[0.046757813543081,0.018668126314878,-0.025289108976722],[-0.012957330793142,0.10770767182112,-0.0908048376441]],[[0.032277598977089,-0.012808430939913,0.020955216139555],[-0.029559874907136,0.028002366423607,-0.013129274360836],[0.0049482043832541,0.019173264503479,-0.11750574409962]],[[-0.040625784546137,-0.021175170317292,0.11032076925039],[0.013041832484305,0.03818416595459,-0.050908148288727],[0.046368397772312,-0.048779215663671,0.024432500824332]],[[-0.061147250235081,0.10172521322966,0.053747951984406],[0.043627426028252,0.062866792082787,0.1846989095211],[0.048446789383888,0.13773711025715,-0.037742078304291]],[[0.043033167719841,-0.083566784858704,0.01868068985641],[-0.063451416790485,0.00034950338886119,-0.050492607057095],[0.029295302927494,0.011975448578596,0.0074289361946285]],[[-0.033100787550211,0.053672701120377,0.047498095780611],[0.029596138745546,0.015885876491666,-0.01236145477742],[0.085862271487713,0.071645639836788,-0.029145861044526]],[[0.0050669461488724,-0.038789324462414,-0.021655425429344],[-0.06234297901392,0.0096608186140656,0.031351413577795],[-0.067217439413071,0.032960660755634,0.031764056533575]],[[-0.012958968058228,-0.074027948081493,-0.027878131717443],[0.041524041444063,-0.00052496342686936,0.031351931393147],[-0.074328735470772,0.050364006310701,0.058620244264603]],[[-0.045709826052189,0.047055128961802,0.034919761121273],[0.015099233016372,0.058901976794004,0.087833255529404],[0.13227111101151,0.099163427948952,-0.0053276517428458]],[[0.0054843914695084,-0.025276312604547,0.0057465266436338],[0.046900287270546,-0.030680943280458,-0.068752430379391],[-0.065096192061901,0.023535776883364,0.10467155277729]],[[0.0044053508900106,0.010147793218493,0.03563292697072],[0.029948435723782,0.0056248242035508,-0.0087313987314701],[0.074437566101551,0.069692276418209,-0.005510444752872]],[[0.0052028577774763,-0.014668044634163,0.090357378125191],[-0.066907398402691,-0.08616154640913,-0.058729410171509],[-0.00030110537772998,-0.01256468705833,0.063733391463757]],[[0.023558482527733,-0.0023114348296076,-0.039431374520063],[0.1017127558589,-0.013041485100985,-0.047144263982773],[0.0090579334646463,-0.023611161857843,-0.015702614560723]],[[-0.017305256798863,0.013444364070892,-0.068326726555824],[0.022145828232169,0.054592095315456,-0.068965971469879],[-0.0909363925457,-0.03010224737227,0.010169842280447]],[[0.036425139755011,0.023780150339007,0.021635111421347],[0.060002598911524,-0.027870086953044,-0.03766630217433],[0.035832345485687,0.022046746686101,-0.0018143790075555]],[[-0.078443676233292,0.0042830775491893,-0.02483431994915],[0.0069936783984303,0.01865360699594,0.068947322666645],[0.061351910233498,0.025743164122105,-0.0057595283724368]],[[-0.086002066731453,0.026746088638902,-0.084545522928238],[0.024735702201724,0.033879011869431,-0.02973317168653],[-0.089463867247105,-0.026677185669541,0.065358616411686]],[[0.031295657157898,0.016236325725913,-0.066229328513145],[0.0058996235020459,-0.0090060923248529,-0.0036673531867564],[-0.0092160599306226,0.048561453819275,-0.029295541346073]],[[-0.051555261015892,0.016934726387262,-0.037119798362255],[-0.022116826847196,-0.042274665087461,0.087846301496029],[-0.041342038661242,-0.04684466868639,0.012648295611143]],[[-0.10169048607349,-0.034894272685051,-0.016645532101393],[-0.047835260629654,-0.057198394089937,-0.018755055963993],[-0.04750494286418,0.042277812957764,0.013161350041628]],[[0.0050511611625552,-0.059673193842173,0.019553162157536],[0.07283129543066,0.028055181726813,0.027205796912313],[-0.013053120113909,-8.0512960266788e-05,0.039150945842266]],[[-0.067258916795254,0.047158200293779,-0.028537755832076],[0.063619315624237,0.046419441699982,0.05757425352931],[0.039000507444143,-0.016333427280188,-0.020680990070105]],[[-0.051328338682652,0.034228179603815,0.0089109512045979],[-0.035380329936743,-0.021060602739453,0.059610236436129],[0.03604106977582,0.096763625741005,-0.0051244213245809]],[[0.058694928884506,0.13772013783455,0.051180068403482],[-0.059429403394461,0.04751618206501,-0.003004053607583],[-0.028082370758057,0.024083532392979,0.088473588228226]],[[0.041388034820557,-0.11363130807877,0.068393208086491],[0.056031920015812,0.060231752693653,0.071889288723469],[0.091702863574028,0.13099844753742,0.063890650868416]],[[0.030240386724472,0.043434053659439,0.034431200474501],[0.038257751613855,0.054598860442638,0.027411509305239],[0.011535874567926,0.032359428703785,0.037421066313982]],[[0.010613241232932,0.047126930207014,-0.13290137052536],[-0.053606297820807,-0.020450703799725,-0.066805943846703],[-0.0058522853069007,0.042129769921303,0.028858629986644]],[[-0.0092592742294073,0.0044913217425346,0.025670303031802],[0.016929244622588,0.0078475913032889,0.099892020225525],[-0.04665158316493,0.15578906238079,0.10479668527842]],[[0.026843667030334,-0.020564440637827,-0.0081944093108177],[-0.046980317682028,0.024184858426452,-0.061654735356569],[-0.044576413929462,-0.071521043777466,-0.032000441104174]],[[0.0063245273195207,-0.089977905154228,-0.028793444857001],[0.044512581080198,-0.069447629153728,-0.032137725502253],[-0.093902565538883,-0.031533099710941,-0.019851822406054]],[[0.033198017627001,0.019977878779173,0.084618575870991],[0.0084343301132321,0.0082633718848228,0.033698558807373],[0.05111513286829,-0.033459510654211,0.017770104110241]],[[-0.0056580030359328,-0.02472660690546,0.031308136880398],[0.085918255150318,-0.023866949602962,0.041377451270819],[-0.00081879226490855,0.012279031798244,-0.048728223890066]],[[-0.040378578007221,0.09992091357708,-0.040226325392723],[-0.034365452826023,0.02759819291532,0.051455080509186],[-0.017016740515828,-0.03826379776001,0.060008496046066]],[[0.018344730138779,0.0057365102693439,0.14197312295437],[-0.014776760712266,0.0030317429918796,-0.015894783660769],[0.01682279445231,0.02321326546371,0.11141622811556]],[[-0.070893950760365,-0.012109734117985,-0.056344699114561],[0.030829118564725,0.057671412825584,-0.042484499514103],[0.015707511454821,0.090291224420071,0.12328563630581]],[[0.010569054633379,-0.027947701513767,0.088532350957394],[-0.11087228357792,-0.014891374856234,0.038423288613558],[0.0065810135565698,-0.10297553241253,-0.039028633385897]],[[-0.075393348932266,-0.00019011783297174,0.018190987408161],[-0.050819106400013,0.048695616424084,0.0095496186986566],[0.02000480890274,-0.001104551833123,0.027553243562579]],[[0.034511931240559,0.058663632720709,-0.032084390521049],[0.01571886613965,-0.039385426789522,0.033812366425991],[0.010700315237045,-0.06205715611577,0.059686947613955]],[[0.013385305181146,0.0041657099500299,0.057759914547205],[0.012465544044971,0.040030878037214,-0.030974579975009],[0.11409085988998,0.12517921626568,0.078636944293976]],[[-0.033118735998869,0.020590730011463,-0.0094599230214953],[-0.041652001440525,0.037288226187229,0.031026430428028],[0.035925950855017,0.0071573709137738,0.10470237582922]],[[-0.01241507474333,-0.0099415872246027,0.092798933386803],[-0.040927894413471,0.025020027533174,0.047235284000635],[0.03697208315134,0.074016541242599,0.043940048664808]],[[-0.026977034285665,0.076228462159634,-0.044278994202614],[0.020640276372433,0.061065059155226,-0.0050496640615165],[-0.030073571950197,0.060442589223385,-0.015562530606985]],[[-0.037307284772396,0.068152353167534,-0.072957165539265],[-0.010770442895591,-0.0097523657605052,-0.056729767471552],[0.049611002206802,-0.044122658669949,-0.010241474956274]],[[0.049400340765715,-0.0013700736453757,0.07887726277113],[0.052111592143774,0.020695276558399,0.061382461339235],[-0.10801677405834,-0.034896943718195,0.04634578153491]],[[-0.018477696925402,0.027504928410053,0.021909175440669],[0.040322206914425,0.021407613530755,-0.022221254184842],[-0.011349314823747,-0.020424470305443,0.024374336004257]],[[0.041855350136757,0.0055094547569752,0.085798777639866],[0.027529250830412,0.0043497649021447,-0.011560748331249],[-0.01628489792347,-0.038268323987722,0.025408145040274]],[[0.042124390602112,0.0088191423565149,0.058426704257727],[-0.014918990433216,0.064824759960175,0.094818487763405],[0.047607611864805,-0.090584337711334,-0.042966615408659]],[[-0.031607329845428,0.00068917212774977,-0.10431548207998],[0.039117675274611,0.038525424897671,0.065147437155247],[0.070154026150703,-0.074940271675587,0.032036166638136]],[[0.077309332787991,0.016929637640715,-0.022389888763428],[-0.02753970772028,0.041746079921722,-0.013545314781368],[0.033820807933807,-0.0090044159442186,-0.030162401497364]],[[-0.025613335892558,-0.015465660020709,0.0059728277847171],[-0.02163215726614,-0.054502472281456,0.031174579635262],[0.064820513129234,-0.041028279811144,-0.044579900801182]],[[-0.061867743730545,0.033914592117071,-0.038458473980427],[0.041441321372986,-0.078632593154907,0.023702971637249],[0.0049205995164812,-0.043211426585913,-0.11380776762962]],[[-0.055809747427702,-0.07619621604681,0.028941668570042],[0.064880944788456,-0.066145151853561,-0.049603324383497],[-0.016402959823608,-0.026772847399116,-0.0054047065787017]],[[-0.083283707499504,-0.053064599633217,0.062839441001415],[-0.020773099735379,-0.051350880414248,-0.024618225172162],[0.054573092609644,0.010970734991133,0.0769347473979]],[[0.0044955722987652,0.01492288056761,-0.03151910752058],[-0.045501228421926,-0.066249556839466,0.032586727291346],[0.0635070130229,-0.010041061788797,0.031264171004295]],[[0.0064149796962738,-0.049901373684406,0.00098231015726924],[-0.027585968375206,0.072734490036964,-0.0071432604454458],[0.087151631712914,0.041705634444952,0.11783171445131]],[[0.017774630337954,-0.082827217876911,0.0689891949296],[-0.028592890128493,-0.032573960721493,0.025607181712985],[-0.11557020246983,0.045914888381958,0.065599553287029]],[[-0.06377674639225,-0.057063218206167,-0.20887303352356],[-0.084045246243477,-0.050114590674639,-0.07090774923563],[-0.00057408615248278,-0.056376233696938,-0.092390507459641]],[[-0.048982862383127,0.002807050710544,-0.017294028773904],[0.0025448196101934,-0.09062647074461,-0.074961699545383],[0.029269367456436,-0.073567815124989,-0.027051528915763]],[[0.018636038526893,0.0077841891907156,0.063776083290577],[-0.026711232960224,-0.054154943674803,-0.01173039060086],[-0.038840685039759,0.0020823802333325,0.0019317122641951]],[[-0.0050945556722581,-0.094564110040665,0.0056754411198199],[0.020969733595848,0.012283183634281,0.09241683781147],[0.035009756684303,-0.012179810553789,0.023467611521482]],[[0.064979933202267,0.011008081026375,-0.041965741664171],[0.048817653208971,-0.020725313574076,-0.11333325505257],[-0.021761799231172,-0.078765198588371,-0.051408857107162]],[[0.0047456319443882,-0.002019613282755,0.037092935293913],[0.027512283995748,0.060619216412306,-0.045737896114588],[-0.049300152808428,0.036589670926332,0.066577255725861]],[[-0.035961527377367,-0.010435370728374,0.046106528490782],[0.038969196379185,-0.015302178449929,0.013335551135242],[0.071667179465294,0.042388338595629,0.022317154332995]],[[0.005273699760437,0.02162160910666,0.090271890163422],[0.022117160260677,0.0032612062059343,-0.017231374979019],[0.022548807784915,0.079240530729294,0.05054434761405]],[[0.045363213866949,-0.051629297435284,0.0057995184324682],[-0.11426953226328,0.038827419281006,-0.022836178541183],[0.07861266285181,0.054080136120319,-0.074573032557964]]],[[[0.06450566649437,0.051115721464157,0.070799671113491],[0.067266128957272,-0.019054131582379,-0.0026962638366967],[0.07650551199913,-0.044665992259979,0.052098471671343]],[[-0.015133257955313,0.066028110682964,-0.0025021261535585],[0.023657374083996,-0.025744533166289,0.0042285500094295],[0.0091919032856822,0.020659670233727,-0.019920403137803]],[[0.088687293231487,-0.083182588219643,-0.027118632569909],[-0.033125746995211,0.0026471656747162,-0.0091241747140884],[-0.0061884820461273,0.013073926791549,-0.026837501674891]],[[-0.0024168596137315,0.032017413526773,0.034464951604605],[-0.05656448751688,0.038968469947577,0.037090096622705],[0.00075194716919214,-0.0068177515640855,0.08272123336792]],[[0.02370429597795,-0.060880444943905,-0.026598742231727],[0.045453276485205,-0.047290224581957,-0.0027490635402501],[0.10171278566122,-0.035839688032866,-0.050947610288858]],[[0.030774028971791,0.0076143266633153,-0.007400413043797],[0.049915812909603,0.10080842673779,0.036602668464184],[-0.016716727986932,-0.043717235326767,-0.0028651219327003]],[[-0.053141802549362,-0.063061289489269,-0.012411765754223],[-0.013304263353348,-0.019501673057675,0.081928811967373],[-0.087343655526638,-0.0077181328088045,0.010475712828338]],[[0.037339635193348,-0.049355108290911,0.04015301540494],[0.074067391455173,-0.035339955240488,0.041493557393551],[-0.03442894667387,0.042946919798851,-0.054554168134928]],[[0.030696352943778,0.037259567528963,0.1266975402832],[-0.015021193772554,0.049343757331371,0.053945753723383],[0.04758108407259,-0.011457502841949,0.012590290047228]],[[-0.033375464379787,0.033863425254822,0.00085694040171802],[0.011920273303986,0.21760469675064,0.11007709801197],[-0.00014761812053621,0.019719174131751,-0.10041616111994]],[[-0.015824656933546,0.0079950150102377,0.07954603433609],[0.096617080271244,0.031628552824259,0.0064905215986073],[-0.056920725852251,0.065516203641891,0.037802372127771]],[[0.044442947953939,-0.00010246729652863,0.041163709014654],[0.0071297092363238,0.064193993806839,0.019203748553991],[-0.03504803031683,0.073074363172054,0.034304745495319]],[[0.030044432729483,0.017057588323951,0.038890708237886],[0.045300934463739,0.063262395560741,0.0066032009199262],[0.074348598718643,-0.052502784878016,-0.0037044030614197]],[[0.017991054803133,0.025588342919946,-0.03652086481452],[0.02987458743155,0.019835440441966,0.045394010841846],[0.0095618860796094,0.018971212208271,-0.015801364555955]],[[0.047650031745434,0.00047368483501486,0.074722446501255],[0.17469425499439,0.15286837518215,0.0005746753886342],[0.036061462014914,0.045257035642862,0.14763182401657]],[[-0.045709993690252,-0.071291424334049,0.03754098713398],[-0.049648143351078,0.015254053287208,-0.033835679292679],[-0.070208489894867,-0.053428076207638,-0.047868303954601]],[[0.061141617596149,0.023445628583431,0.018002038821578],[-0.0073778741061687,0.098288498818874,-0.048200212419033],[0.035777702927589,-0.044949326664209,0.079235851764679]],[[0.02198070473969,-0.001719867461361,0.085088647902012],[-0.046706896275282,-0.025846231728792,-0.010858992114663],[0.03073862940073,0.014592190273106,0.098209008574486]],[[0.021958786994219,-0.018931427970529,-0.015574402175844],[-0.025455391034484,-0.055797331035137,-0.010068568401039],[0.071965381503105,0.073957271873951,-0.055537551641464]],[[0.070410862565041,0.0028234582860023,0.027596050873399],[-0.039841048419476,0.083520255982876,0.073153294622898],[0.063967652618885,0.0070473928935826,0.070154681801796]],[[-0.036625988781452,-0.15550906956196,0.010664866305888],[0.035778257995844,0.041622538119555,0.096014425158501],[-0.018267646431923,0.066039495170116,-0.046152599155903]],[[-0.025751207023859,0.0097202621400356,0.051881775259972],[0.051816876977682,0.13714209198952,0.098253786563873],[0.0073287053965032,-0.011009651236236,0.028950797393918]],[[0.063781075179577,-0.026958890259266,0.035612542182207],[-0.022053489461541,0.032133486121893,0.028326222673059],[-0.052929654717445,0.011037353426218,-0.0098534813150764]],[[0.011341686360538,-0.032472964376211,0.010591587983072],[0.04507726803422,-0.045025814324617,0.011698072776198],[-0.067578472197056,-0.04352618008852,-0.048545248806477]],[[0.058289878070354,0.039967358112335,0.0037499058526009],[0.036631774157286,0.045681182295084,0.047457601875067],[0.033610105514526,0.029441092163324,-0.076805531978607]],[[-0.050436429679394,-0.070512786507607,0.042797766625881],[0.029824452474713,0.0057745520025492,0.020123204216361],[0.089634694159031,-0.14770233631134,-0.0050606592558324]],[[0.022480331361294,0.017146129161119,0.035959079861641],[0.01510469801724,0.00090288068167865,-0.049084287136793],[0.054037969559431,0.036572229117155,0.06966544687748]],[[0.085735246539116,-0.057516787201166,0.08981816470623],[0.040860742330551,-0.00055039807921275,0.013467214070261],[0.058185886591673,-0.042566999793053,-0.038698978722095]],[[-0.038990944623947,0.12614291906357,0.036861959844828],[0.10275084525347,0.024152914062142,0.053415145725012],[-0.049548495560884,0.094024978578091,-0.0018911715596914]],[[0.0039099706336856,0.032902907580137,0.071252480149269],[0.010240423493087,0.040751613676548,-0.065055891871452],[-0.0086924470961094,-0.031287603080273,-0.032588310539722]],[[-0.077803879976273,0.028032310307026,-0.020628675818443],[-0.0043111881241202,-0.02293068356812,0.058692757040262],[0.10381530970335,0.027893051505089,0.02923702262342]],[[0.037564136087894,-0.048779312521219,-0.075907476246357],[0.069417051970959,-0.01472195237875,-0.045166231691837],[0.017986435443163,0.040009438991547,0.00056339026195928]],[[-0.060983438044786,0.0022916060406715,-0.093764208257198],[0.048870783299208,0.09541192650795,-0.042563334107399],[0.041225969791412,0.017489025369287,-0.039467670023441]],[[0.065438203513622,0.01480305287987,0.0026832709554583],[0.012952635064721,0.0028361501172185,-0.0076221488416195],[0.043270211666822,-0.042173076421022,-0.059474296867847]],[[0.054776087403297,0.020871117711067,-0.0015003868611529],[0.071554131805897,0.021322976797819,-0.038871221244335],[-0.042717207223177,0.022848336026073,-0.034045804291964]],[[0.055702902376652,-0.01813449524343,-0.0049189850687981],[-0.039183285087347,0.0097376322373748,-0.0050069596618414],[0.0083535546436906,-0.046535477042198,0.056825842708349]],[[-0.038503564894199,-0.020508568733931,0.028060223907232],[0.03068065084517,0.027651289477944,-0.015565103851259],[0.03279821947217,0.044529318809509,0.051556054502726]],[[-0.0097687533125281,0.043275654315948,0.019725995138288],[-0.0037920505274087,-0.069276563823223,0.0055166790261865],[0.025395046919584,0.04358696937561,-0.030219975858927]],[[0.046052217483521,-0.0096503049135208,0.020633282139897],[0.048115491867065,0.011516359634697,0.0024572624824941],[0.08818955719471,-0.033795647323132,0.047594085335732]],[[-0.034829381853342,0.10060226917267,-0.093664817512035],[0.022325500845909,-0.03442008420825,-0.01817281730473],[0.024246832355857,0.072770193219185,-0.013694763183594]],[[0.032671876251698,-0.027556288987398,0.030099336057901],[-0.08276455104351,0.034696787595749,-0.027405405417085],[-0.0005133684608154,0.080730676651001,0.0024164416827261]],[[0.038103200495243,0.0047649736516178,0.032981287688017],[0.018894463777542,-0.023991459980607,0.055333144962788],[0.016749350354075,0.047220353037119,-0.075825810432434]],[[0.020849755033851,0.031387571245432,-0.0006031293887645],[0.079899750649929,0.023798989132047,0.037497788667679],[0.013002805411816,-0.0013472525170073,-0.0053286966867745]],[[-0.004565664101392,0.046820163726807,0.0073236837051809],[0.029497120529413,0.10449931770563,0.033898763358593],[0.0040292330086231,0.071035802364349,-0.019020423293114]],[[0.061939556151628,0.051629077643156,0.019165659323335],[-0.089651606976986,0.067687474191189,0.044938877224922],[0.031503386795521,0.068171158432961,0.015171849168837]],[[0.075849056243896,0.022551899775863,0.032162871211767],[0.058452740311623,0.027428895235062,-0.034148976206779],[0.034880846738815,0.017874082550406,0.065004460513592]],[[0.020466590300202,0.049892418086529,0.051337733864784],[0.036675948649645,-0.051075898110867,-0.0075329118408263],[0.020302765071392,0.044000133872032,0.017432602122426]],[[0.026304166764021,0.016726944595575,0.0054293372668326],[0.059806659817696,0.019010599702597,-0.012934708036482],[0.098391644656658,-0.019427880644798,0.062749780714512]],[[0.069534435868263,0.0074266544543207,0.054706618189812],[-0.0084122344851494,-0.078550323843956,-0.0041359849274158],[0.09481143206358,0.033995475620031,0.078666210174561]],[[0.011588747613132,0.030104329809546,0.018355675041676],[-0.033782090991735,0.035471994429827,-0.042278420180082],[0.0071918605826795,-0.14148736000061,-0.094448633491993]],[[-0.042847100645304,0.024991650134325,-0.046292871236801],[-0.024414800107479,-0.020927095785737,0.10099915415049],[-0.068767689168453,-0.0092290313914418,-0.019063334912062]],[[0.06111953034997,-0.10043762624264,0.03120730817318],[0.026879088953137,-0.024527668952942,0.044890351593494],[-0.063566938042641,-0.056614771485329,0.001703899120912]],[[-0.022498996928334,-0.0072030066512525,0.021481862291694],[0.029451977461576,0.0077481982298195,0.033303163945675],[-0.039649527519941,0.018099084496498,-0.053320720791817]],[[0.034593515098095,0.039457812905312,0.0099558215588331],[0.010442196391523,0.024232551455498,0.022661907598376],[-0.031628523021936,-0.016853949055076,-0.060319375246763]],[[0.055779922753572,0.039073418825865,-0.037001367658377],[0.045044839382172,0.029536433517933,-0.025799920782447],[-0.050482489168644,-0.047339703887701,-0.084854312241077]],[[-0.045524261891842,-0.034486126154661,0.033993132412434],[0.0098977852612734,-0.065869741141796,0.070128902792931],[0.011694278568029,-0.037059336900711,0.011579894460738]],[[-0.096550807356834,0.047266401350498,-0.036795262247324],[0.03500734642148,0.037815399467945,0.047533132135868],[-0.062554366886616,0.08590853959322,0.067742235958576]],[[0.041038196533918,0.0015806807205081,-0.022576028481126],[0.036294989287853,0.017131237313151,-0.030190905556083],[0.0019297710387036,0.011724375188351,-0.026845885440707]],[[0.025556704029441,0.039706096053123,0.059655800461769],[0.027890482917428,-0.0083539485931396,-0.021134402602911],[0.07230968773365,0.031503569334745,0.091294802725315]],[[0.076592661440372,0.01886441372335,-0.069688305258751],[-0.052117373794317,0.023603035137057,-0.0056145978160203],[0.021730199456215,0.022172324359417,0.023374022915959]],[[0.1077039539814,0.013226365670562,-0.10304586589336],[-0.0014700278406963,-0.039972983300686,0.05927687510848],[-0.12013585865498,-0.072274908423424,-0.026675486937165]],[[-0.048501312732697,0.0050988839939237,-0.0070292269811034],[0.013160259462893,0.031135130673647,-0.011881425045431],[0.014734832569957,0.033366806805134,0.042034272104502]],[[-0.042840912938118,-0.05333149060607,-0.017615413293242],[-0.025272682309151,0.10424185544252,-0.048342779278755],[0.064901396632195,-0.041544198989868,-0.0098032522946596]],[[-0.020510142669082,-0.027217619121075,0.0060774036683142],[0.06078302115202,-0.00646066153422,0.028856566175818],[-0.034203767776489,0.026168916374445,0.025536112487316]],[[0.0052226097323,-0.05830342322588,0.028848726302385],[-0.029608560726047,-0.030954729765654,-0.044821947813034],[0.012092671357095,0.035600390285254,-0.010083330795169]],[[-0.014050212688744,-0.009991847909987,-0.11173521727324],[0.045028850436211,-0.033175144344568,0.022717570886016],[0.027888145297766,-0.0016995123587549,-0.0077628418803215]],[[-0.016693523153663,0.084309011697769,-0.077531687915325],[0.064993277192116,0.046667423099279,0.026627380400896],[0.017299391329288,0.047832824289799,0.028719833120704]],[[0.042127531021833,0.0099471639841795,0.010168904438615],[0.031572561711073,0.030193027108908,0.021659508347511],[0.088615708053112,-0.016088483855128,0.06127131357789]],[[0.12562842667103,0.0072711743414402,-0.0079017886891961],[-0.015932869166136,0.024871358647943,0.024317914620042],[-0.035562884062529,-0.014574572443962,0.073906168341637]],[[0.077403910458088,0.056501518934965,0.045449186116457],[-0.068798787891865,-0.058896746486425,-0.04233468323946],[0.0162921436131,-0.0077874176204205,0.11656486988068]],[[0.038411147892475,-0.04389563575387,-0.059121627360582],[0.026212165132165,0.087117113173008,0.0088175851851702],[0.04638496786356,0.0030453894287348,0.039257775992155]],[[-0.0003719714586623,-0.027565343305469,0.035171989351511],[0.062394451349974,0.010026209056377,-0.022892637178302],[0.12578921020031,0.086104601621628,0.076255276799202]],[[-0.089798040688038,-0.026717515662313,-0.017950434237719],[0.11604253947735,0.0096756378188729,0.045125663280487],[-0.010440832003951,0.041173357516527,-0.014149849303067]],[[0.068901024758816,0.03422649949789,-0.066239468753338],[-0.040473867207766,-0.048016056418419,0.02752379886806],[-0.062243595719337,0.053832020610571,0.0027785177808255]],[[0.036652039736509,0.026122320443392,-0.022473769262433],[0.026941508054733,-0.036055780947208,0.059362407773733],[0.026266358792782,0.017929608002305,0.028710626065731]],[[0.017687603831291,0.0024739797227085,0.05438619852066],[-0.020671010017395,-0.018830176442862,0.099200986325741],[-0.028418380767107,-0.083910271525383,-0.080647304654121]],[[0.020343156531453,0.031444020569324,0.0804413408041],[0.062976665794849,0.0037580234929919,-0.035556193441153],[0.029459126293659,0.045702572911978,0.001186449197121]],[[0.0033974894322455,0.0043526715599,0.013422195799649],[-0.047364361584187,-0.043325632810593,0.084699191153049],[0.04737027361989,0.045032013207674,0.06464672088623]],[[-0.041109204292297,0.055357467383146,0.024139080196619],[0.07378127425909,0.011492081917822,0.027292063459754],[-0.074387542903423,0.017836317420006,0.029664039611816]],[[0.034943278878927,0.035668730735779,0.0090784812346101],[-0.026323787868023,-0.052299089729786,-0.014845875091851],[-0.090766750276089,-0.0099258162081242,0.0057535595260561]],[[0.045419178903103,0.0071223857812583,0.0054066358134151],[0.050536666065454,0.093724943697453,0.053332053124905],[0.073404788970947,-0.055556830018759,-0.010640441440046]],[[0.070608913898468,0.02469782717526,0.017569299787283],[-0.036980200558901,-0.025811705738306,-0.0043885949999094],[-0.075363710522652,-0.031629394739866,0.0085629867389798]],[[0.031046686694026,-0.0060764402151108,0.026207888498902],[0.066538773477077,0.0023265078198165,-0.041589226573706],[0.099094964563847,-0.045567266643047,-0.061843324452639]],[[0.015030290000141,0.031902711838484,-0.0066582532599568],[-0.040437057614326,0.018140727654099,0.034472916275263],[0.01897332444787,-0.028166227042675,-0.071858070790768]],[[0.036994338035583,-0.070457085967064,-0.032698336988688],[-0.0497728548944,0.053357347846031,-0.033842086791992],[0.045376904308796,0.0280558206141,-0.078271634876728]],[[-0.023704696446657,-0.020277291536331,0.01757581345737],[0.063500054180622,-0.047596506774426,0.044157356023788],[0.028629664331675,0.055261868983507,-0.022212598472834]],[[-0.061984408646822,0.025840090587735,-0.10289380699396],[0.02423794567585,0.03928679227829,0.042580880224705],[0.067471101880074,0.035960860550404,0.0095522040501237]],[[0.0083232382312417,0.01473081484437,0.030424699187279],[0.063400015234947,-0.013031641021371,0.036263059824705],[0.09253441542387,-0.011910198256373,0.021406639367342]],[[-0.0054179695434868,-0.0426160171628,0.022804399952292],[-0.035833306610584,-0.049120292067528,0.0049637942574918],[-0.044592123478651,0.019944736734033,0.0074527626857162]],[[0.039257198572159,0.026760410517454,0.040136609226465],[0.00048575983964838,0.077648781239986,-0.027288781479001],[-0.041373752057552,0.042451065033674,0.050680298358202]],[[-0.067064225673676,0.066539973020554,0.09829031676054],[0.053624249994755,-0.0044309976510704,0.032302271574736],[0.073557198047638,0.00028402803582139,-0.078011371195316]],[[0.019679283723235,0.043724343180656,0.047949776053429],[-0.027060387656093,-0.027248226106167,0.0035725748166442],[0.028596030548215,0.052218500524759,0.081783570349216]],[[0.03967459499836,-0.038646947592497,0.029578246176243],[0.052707996219397,0.028459707275033,0.075353860855103],[0.012489541433752,0.0060472502373159,-0.03795312717557]],[[0.074990890920162,-0.0032645484898239,-0.03888650611043],[0.026118148118258,0.044489569962025,-0.0012876858236268],[-0.061892256140709,-0.046820182353258,0.0074102925136685]],[[-0.005349104758352,0.058186329901218,0.043238956481218],[-0.045851431787014,0.010915283113718,-0.10540096461773],[-0.026780026033521,0.029539635404944,-0.00090412056306377]],[[-0.0051388987340033,0.0031479860190302,0.056985639035702],[-0.014132886193693,-0.059112284332514,0.0060102799907327],[-0.023064602166414,0.065572798252106,-0.064447104930878]],[[0.05971709266305,0.035839952528477,-0.014901496469975],[0.0057820598594844,-0.031822100281715,0.089378327131271],[-0.012981217354536,0.012899617664516,-0.08880739659071]],[[0.088776804506779,-0.027549179270864,0.029755743220448],[-0.0012507061474025,0.088550299406052,-0.00084296142449602],[0.040919356048107,-0.004050325602293,-0.079828985035419]],[[-0.02129259891808,0.076883122324944,0.033545784652233],[0.049912132322788,0.0037057739682496,0.052228335291147],[0.021054819226265,-0.0049027432687581,0.0019317292608321]],[[0.022338572889566,0.023214232176542,0.068261608481407],[-0.089236825704575,-0.0070790182799101,0.024474145844579],[-0.0096517959609628,-0.045781135559082,0.026459958404303]],[[-0.058004543185234,0.029759056866169,-0.092330016195774],[-0.024243369698524,-0.10499268770218,-0.024921473115683],[-0.025989625602961,0.012545146979392,0.015115554444492]],[[0.12300755083561,0.089379772543907,0.06431683152914],[0.09161401540041,0.035039827227592,0.044549848884344],[0.0095963086932898,0.061659038066864,-0.037229835987091]],[[0.005952755920589,0.08308557420969,-0.027197394520044],[-0.0041500949300826,-0.0029361853376031,0.019056022167206],[0.0075427149422467,-0.0092079620808363,0.039770949631929]],[[-0.027561379596591,-0.022258345037699,0.028658181428909],[-0.021064147353172,0.019774243235588,-0.10512055456638],[-0.052685055881739,0.040248680859804,-0.014975274913013]],[[0.099747732281685,0.087398320436478,-0.11122410744429],[0.030887767672539,-0.0022844807244837,-0.0039044937584549],[0.05903996527195,0.047497969120741,-0.079389952123165]],[[-0.058546233922243,0.039498295634985,0.02225592546165],[0.016235316172242,-0.055525720119476,-0.010298661887646],[0.044167548418045,-0.017164228484035,0.0053802584297955]],[[-0.032052051275969,-0.026894927024841,-0.0024298240896314],[-0.055542662739754,-0.019374340772629,0.0066622025333345],[0.088464818894863,0.063847988843918,-0.073203757405281]],[[0.020079653710127,-0.054035652428865,-0.06267948448658],[-0.0092732049524784,-0.0085368948057294,-0.008630495518446],[0.022767541930079,0.038516495376825,0.0091743376106024]],[[0.006238667294383,0.036662995815277,-0.018503582105041],[0.09467351436615,0.022111697122455,-0.040154568850994],[0.036528289318085,0.012273857370019,-0.0022047206293792]],[[-0.092591404914856,0.048887744545937,0.076105013489723],[0.057551208883524,-0.13937762379646,-0.096518658101559],[0.026711059734225,0.1178537234664,0.033898953348398]],[[0.0071738273836672,-0.040434911847115,0.025110805407166],[0.0056182760745287,0.00071265996666625,-0.015892032533884],[0.0040592476725578,0.0072356127202511,-0.04493460059166]],[[-0.037985518574715,0.07370638102293,-0.036738593131304],[0.13799127936363,0.037090830504894,-0.013905073516071],[0.030780097469687,-0.028519270941615,-0.045902106910944]],[[0.039269793778658,-0.0092733846977353,-0.032663241028786],[0.038570951670408,-0.040910758078098,-0.035730101168156],[0.010513334535062,0.025131091475487,-0.029619762673974]],[[-0.064811944961548,-0.0056572793982923,0.088841378688812],[0.021833067759871,-0.084204353392124,-0.011483335867524],[-0.062115367501974,0.075991317629814,-0.01614486426115]],[[0.018496116623282,0.047579534351826,-0.072993643581867],[0.038847349584103,-0.024932025000453,0.013078031130135],[-0.074281275272369,0.092464342713356,-0.037935879081488]],[[0.0067031248472631,0.026121282950044,-0.038055505603552],[0.015018554404378,-0.010531973093748,0.010580088943243],[0.015690436586738,-0.029423929750919,-0.047397743910551]],[[0.030636828392744,0.037262156605721,-0.04888229072094],[-0.033621564507484,0.0078479293733835,0.010634070262313],[0.074385531246662,-0.023478703573346,0.012194068171084]],[[0.033424973487854,0.010489059612155,0.015647558495402],[0.053602792322636,0.014814985916018,0.0014132433570921],[0.029360897839069,-0.059966959059238,-0.092184133827686]],[[-0.0152294524014,-0.05328980460763,-0.10169955343008],[0.049499556422234,-0.084657892584801,0.054029133170843],[0.032159436494112,0.016204141080379,-0.057474747300148]],[[-0.11663223057985,-0.024628128856421,-0.0682058557868],[-0.018265692517161,-0.0091783860698342,-0.052443981170654],[0.02888054586947,0.031149694696069,-0.0042232600972056]],[[-0.0074376608245075,-0.018430462107062,-0.061401695013046],[0.018447736278176,0.037118408828974,0.002202587435022],[0.026747839525342,-0.01872817799449,0.034197855740786]],[[0.0095324162393808,0.0010851613478735,-0.018320254981518],[0.00047556779463775,0.0054853647015989,0.0079774744808674],[0.02915539033711,0.019399289041758,0.012629023753107]],[[0.023352818563581,0.034328907728195,-0.092623889446259],[-0.011166223324835,-0.017152110114694,-0.022323293611407],[-0.047132924199104,-0.087214834988117,-0.050762992352247]],[[0.029526498168707,0.10181505233049,-0.042645886540413],[0.033574383705854,-0.036374643445015,-0.12814077734947],[0.051598034799099,0.05762891471386,0.065000116825104]],[[0.0078962091356516,-0.0073578068986535,0.045277129858732],[-0.090394362807274,0.0328927077353,-0.0026785468216985],[0.0083129266276956,0.065175607800484,0.0093460967764258]],[[0.098208747804165,0.11357647180557,0.081609912216663],[0.084031231701374,-0.043494839221239,0.031720981001854],[0.047009274363518,-0.035540159791708,0.069964237511158]],[[-0.091306753456593,0.01396521832794,0.068526268005371],[0.010264346376061,0.0011793315643445,0.016003569588065],[0.030022151768208,0.048688244074583,-0.0082964664325118]],[[-0.012797513045371,0.030182031914592,-0.0059170150198042],[-0.021348241716623,-0.047936342656612,0.010965653695166],[0.023035377264023,-0.015499891713262,-0.004256643820554]]],[[[-0.051703605800867,-0.045219849795103,-0.094814106822014],[0.030582444742322,0.039573766291142,0.014252029359341],[0.013041785918176,-0.016108402982354,0.017309786751866]],[[-0.058720298111439,-0.00051512545906007,0.010602700524032],[0.026012253016233,-0.0045130751095712,-0.084019847214222],[-0.02076481282711,0.034180529415607,0.0065752794034779]],[[-0.030485572293401,0.02566159516573,0.014780991710722],[0.053570400923491,-0.030138965696096,0.018785953521729],[0.029744278639555,0.089870400726795,-0.062278527766466]],[[-0.033367875963449,0.011624169535935,-0.12841849029064],[0.012504167854786,-0.025773426517844,-0.0070717548951507],[0.087637007236481,0.041906014084816,0.056962762027979]],[[0.091961190104485,0.06330768018961,-0.020473236218095],[0.00022654636995867,0.098773330450058,0.069702066481113],[-0.056286569684744,-0.070471428334713,0.049204386770725]],[[-0.080802820622921,-0.0025266280863434,0.048443797975779],[-0.0061767520383,-0.032644275575876,-0.014476593583822],[0.037331078201532,-0.071258239448071,-0.02889147400856]],[[-0.024168038740754,0.061962779611349,-0.0492820776999],[0.054314929991961,-0.012588870711625,0.045153893530369],[-0.084091171622276,-0.014147409237921,0.02150410041213]],[[-0.058119714260101,-0.024800952523947,0.025633836165071],[-0.016650089994073,0.039665419608355,-0.038261041045189],[-0.050133101642132,0.00942596886307,-0.077359899878502]],[[-0.005967041477561,0.035086277872324,-0.056209973990917],[-0.011697771959007,0.037909023463726,-0.0080111734569073],[0.078824490308762,-0.021769249811769,-0.056483808904886]],[[-0.0038811864797026,-0.090664736926556,0.041307225823402],[0.012956543825567,0.033281072974205,0.073584236204624],[0.038843769580126,0.0099836494773626,-0.02764106541872]],[[0.013114540837705,-0.011219915002584,-0.043480735272169],[-0.012133811600506,0.018458094447851,0.038183972239494],[0.058446645736694,-0.027238244190812,-0.0055613447912037]],[[0.014022571034729,0.017259906977415,0.013236304745078],[0.063684388995171,0.07600013166666,0.029753623530269],[0.053232546895742,0.091144554316998,-0.024187924340367]],[[0.083992451429367,0.03347160294652,0.0056111984886229],[-0.051034830510616,-0.0094156814739108,-0.038699638098478],[0.054239187389612,0.088348172605038,0.036117196083069]],[[0.010457006283104,-0.052183959633112,-0.018028121441603],[-0.018964473158121,-0.0033138657454401,-0.0408975481987],[-0.057008724659681,0.015320332720876,-0.020291434600949]],[[-0.013710452243686,0.055498465895653,0.069423571228981],[0.075992420315742,0.050058398395777,0.01770325191319],[0.12037831544876,0.15242670476437,0.070832893252373]],[[-0.049076892435551,0.043669495731592,-0.020809926092625],[-0.034879226237535,-0.0077625140547752,-0.017253883183002],[-0.015336737968028,0.030710771679878,-0.011612589471042]],[[0.073208048939705,0.0036177486181259,-0.062097888439894],[-0.0094568617641926,0.0093287015333772,-0.053403303027153],[-0.035746544599533,-0.020812977105379,-0.055265430361032]],[[0.043161440640688,0.0051275878213346,-0.025247078388929],[0.023494336754084,-0.0048655332066119,-0.010668219998479],[-0.015257766470313,0.052127420902252,0.028568029403687]],[[0.0089924810454249,-0.0068769757635891,0.027688380330801],[-0.028630502521992,-0.017159953713417,0.036462608724833],[0.044276241213083,-0.075895227491856,-0.037776425480843]],[[0.01683128811419,0.0039634299464524,0.079336650669575],[0.059401880949736,0.051860049366951,0.046156600117683],[0.068723939359188,0.021390212699771,0.043171998113394]],[[0.042906805872917,0.07861714810133,-0.12161211669445],[-0.021874219179153,0.0044780666939914,0.026136349886656],[-0.035832867026329,-0.083427555859089,0.014596421271563]],[[-0.015661967918277,-0.022567113861442,-0.0071557736955583],[0.071883223950863,0.095014065504074,0.0059677469544113],[0.02144979685545,0.052302997559309,-0.077934823930264]],[[-0.002255531726405,0.0068882890045643,0.030779985710979],[0.010609364137053,0.055480372160673,-0.0084942141547799],[0.047900639474392,0.036517236381769,-0.029217775911093]],[[0.029160130769014,-0.036142710596323,0.050555068999529],[0.0055592455901206,-0.024498580023646,-0.0087235243991017],[0.0043516089208424,0.033215004950762,0.06976118683815]],[[-0.037720654159784,0.017000816762447,0.070611797273159],[0.027309520170093,0.025332255288959,-0.021924365311861],[0.013145761564374,-0.020679719746113,-0.032311804592609]],[[0.057070109993219,-0.0080826515331864,-0.082671314477921],[0.011138824746013,-0.0045960764400661,-0.004642894025892],[0.10555930435658,0.0044247000478208,-0.012162074446678]],[[0.030618054792285,0.027793517336249,0.049742367118597],[0.0057666380889714,0.023787807673216,0.0050348560325801],[0.074313603341579,0.107361741364,0.034901846200228]],[[-0.06280904263258,0.045489337295294,0.0023576815146953],[0.025123035535216,0.024810586124659,0.0095146922394633],[0.045650608837605,-0.055133130401373,0.053610630333424]],[[-0.00034563755616546,0.010020677931607,-0.01988622546196],[-0.0086717493832111,-0.03592374920845,-0.0098378071561456],[-0.004965343978256,0.054032232612371,-0.03614330291748]],[[0.03557325899601,-0.026254775002599,-0.023912953212857],[0.050870094448328,-0.051871612668037,-0.0075109703466296],[-0.072978861629963,-0.10456270724535,-0.0954799503088]],[[0.0032583582215011,-0.028254520148039,0.0066949259489775],[0.039623036980629,-0.047610737383366,0.0086505562067032],[0.029444953426719,0.02081753872335,0.028102470561862]],[[-0.011525229550898,0.071030139923096,0.075269982218742],[-0.035598628222942,-0.0176498927176,-0.050433848053217],[0.054433710873127,0.023524085059762,0.0094264326617122]],[[0.022187458351254,0.010456154122949,0.0056267227046192],[0.10299698263407,0.041218739002943,-0.034739911556244],[0.12541118264198,0.026544392108917,0.019903359934688]],[[-0.047614861279726,-0.10742747783661,0.020105298608541],[-0.014213299378753,0.010772223584354,0.011575492098927],[0.032167822122574,0.0087487054988742,0.068031288683414]],[[-0.020889304578304,-0.029178824275732,0.023624056950212],[0.042314641177654,-0.008717299439013,-0.02084593474865],[0.018031667917967,0.04890812933445,0.04106854647398]],[[0.014409259893,0.044969376176596,0.036119442433119],[-0.011905933730304,-0.0094345854595304,-0.017855975776911],[-0.012510006316006,0.04312913492322,-0.010723371990025]],[[0.022479765117168,-0.038298435509205,-0.092305645346642],[0.0080169336870313,-0.027873774990439,-0.020726855844259],[0.07499623298645,0.030959591269493,-0.057667199522257]],[[-0.012855316512287,0.0098710935562849,0.014215894043446],[0.080023244023323,0.011884337291121,0.061726294457912],[0.081447720527649,-0.025819050148129,-0.0061145247891545]],[[-0.032887406647205,-0.077979072928429,0.014949448406696],[-0.035294536501169,0.042693957686424,-0.033124160021544],[-0.013811720535159,-0.042845129966736,0.050943836569786]],[[0.0037358461413532,0.045730225741863,0.022851061075926],[-0.0043734982609749,0.030395360663533,0.067402981221676],[-0.045412685722113,0.024971568956971,0.00013390215463005]],[[0.031632345169783,0.017827967181802,0.064931802451611],[-0.0057445480488241,0.010191712528467,-0.0033860406838357],[0.05330328643322,0.022676914930344,-0.017485128715634]],[[-0.0083777457475662,0.039777163416147,-0.034115731716156],[-0.057505816221237,-0.013608779758215,-7.3596238507889e-06],[-0.026646746322513,-0.02915452606976,-0.014784988947213]],[[0.0087178144603968,-0.037889994680882,0.013885616324842],[-0.028947237879038,0.059824008494616,0.074792832136154],[0.0075179487466812,0.013677353039384,0.065401785075665]],[[0.038938947021961,-0.048375826328993,-0.021686531603336],[-0.0059258425608277,-0.05866189673543,0.068852156400681],[0.10791467875242,-0.059714287519455,0.029632639139891]],[[0.11595057696104,-0.016016228124499,0.025667492300272],[0.0071073584258556,0.059646606445312,-0.012924244627357],[-0.046699810773134,0.057186089456081,-0.073008224368095]],[[0.0086356624960899,0.066508583724499,0.015001157298684],[-0.0047825905494392,-0.068782262504101,-0.086174808442593],[0.016328472644091,0.0032252790406346,0.043411821126938]],[[-0.021841691806912,-0.0043054223060608,0.068883463740349],[0.0075712040998042,0.0076779606752098,0.012016511522233],[0.016232723370194,0.016184732317924,0.012364905327559]],[[0.091410033404827,-0.0048409500159323,0.069880664348602],[-0.013832240365446,0.07416494935751,0.012548280879855],[0.022716237232089,0.025426376610994,-0.018466522917151]],[[0.024087874218822,0.001792712835595,0.064729057252407],[0.027140008285642,0.0064871069043875,0.090297140181065],[-0.055185876786709,-0.025404362007976,-0.026441380381584]],[[0.00036391286994331,-0.028770377859473,0.038221068680286],[0.055930826812983,-0.015756083652377,-0.090388908982277],[-0.016260523349047,-0.013626271858811,0.036856286227703]],[[0.067003197968006,0.0061430986970663,-0.025093166157603],[-0.031247835606337,0.0093773677945137,-0.037289123982191],[0.060967978090048,-0.014338377863169,0.004811474122107]],[[0.035506445914507,-0.025349341332912,0.06175435334444],[0.024219306185842,0.060740452259779,-0.0014783988008276],[-0.11590632051229,0.015247093513608,0.010606158524752]],[[0.027769120410085,0.023426784202456,0.021967649459839],[-0.015500416979194,-0.067076481878757,-0.027382805943489],[-0.060724269598722,0.023634133860469,0.0081872195005417]],[[-0.0013067672261968,0.030413633212447,-0.010937783867121],[0.036667197942734,0.024558985605836,0.061675652861595],[0.036251131445169,0.082924671471119,0.0072394968010485]],[[-0.0014453649055213,-0.03502618521452,-0.021822782233357],[-0.017510903999209,-0.014320748858154,0.013842730782926],[0.055101934820414,0.082374446094036,-0.0066174422390759]],[[-0.018308898434043,0.064939223229885,0.032747492194176],[-0.027103304862976,-0.0056748664937913,-0.028602065518498],[0.036155920475721,-0.10078792273998,-0.010664002038538]],[[8.1961807154585e-05,-0.015104467049241,-0.009141274727881],[0.094575941562653,0.0017549536423758,0.12931883335114],[0.0077310688793659,-0.04668016731739,0.02115068025887]],[[0.0010240597184747,-0.045371636748314,0.0048273066058755],[0.026951661333442,0.030399158596992,-0.073775187134743],[-0.024167757481337,0.01111460197717,-0.052977208048105]],[[0.027840655297041,0.050829969346523,0.06125945225358],[0.024167643859982,-0.09529073536396,0.000661700963974],[0.067670717835426,-0.00085908576147631,-0.041762623935938]],[[-0.035683859139681,0.026162575930357,-0.039287872612476],[0.0070306714624166,0.03170071542263,0.037743449211121],[0.069760091602802,-0.035173177719116,-0.042315751314163]],[[0.00052399781998247,0.016648599877954,0.061030559241772],[-0.015506049618125,0.051566787064075,0.076489619910717],[-0.046660494059324,0.0271479729563,-0.018926486372948]],[[-0.090113289654255,-0.043288670480251,0.0041707083582878],[-0.0089825252071023,-0.039288926869631,-0.0010687905596569],[-0.0009921359596774,0.012728284113109,-0.1016042008996]],[[-0.027346312999725,0.0081750191748142,0.016939111053944],[0.014672030694783,0.043115671724081,0.024751307442784],[-0.04760343208909,0.042983442544937,0.006592352874577]],[[-0.011379103176296,0.0068619586527348,-0.036982219666243],[0.055015824735165,-0.017060447484255,0.032814253121614],[-0.030070118606091,-0.019104700535536,-0.0066282725892961]],[[-0.018437575548887,-0.0034922969061881,0.041571371257305],[-0.050619587302208,-0.020767772570252,-0.031476754695177],[0.082017533481121,0.044921055436134,-0.0079615106806159]],[[-0.01830929517746,0.034859009087086,0.030872542411089],[-0.049515414983034,-0.0095276702195406,0.074442729353905],[-0.0081054950132966,0.010021020658314,0.0098354071378708]],[[0.098426200449467,-0.051135987043381,-0.035534627735615],[0.12770572304726,0.068481668829918,-0.078721612691879],[0.047985583543777,0.0025236553046852,0.06045038998127]],[[0.035224139690399,0.027377026155591,-0.01140452362597],[0.10017088800669,-0.023852702230215,0.0022856956347823],[0.061975937336683,0.06402413547039,-0.0027156136929989]],[[0.0040886281058192,-0.0023984860163182,-0.001759021426551],[-0.076660089194775,0.067198552191257,0.029393514618278],[0.058941628783941,0.039442516863346,0.014428515918553]],[[0.025872591882944,0.018037647008896,-0.019060906022787],[-0.00847187358886,0.044766522943974,-0.017950525507331],[0.0497787296772,-0.014323079958558,0.020692674443126]],[[-0.055597648024559,0.063769727945328,-0.045106090605259],[0.044491522014141,0.018430693075061,0.041023574769497],[0.048035860061646,0.014197404496372,-0.013057671487331]],[[0.059487838298082,0.051753804087639,0.023114467039704],[0.099472522735596,-0.0023032636381686,-0.010144968517125],[0.0017657289281487,-0.0033194699790329,0.066637441515923]],[[0.033325050026178,-0.01380327437073,0.027657579630613],[0.044119492173195,0.051819119602442,0.032969769090414],[0.018910666927695,0.053251910954714,-0.016880130395293]],[[0.03985333815217,-0.0074743591248989,0.073876589536667],[-0.011849106289446,0.039311327040195,0.018684366717935],[0.0072019239887595,-0.075857326388359,-0.054745625704527]],[[-0.056209467351437,0.08464452624321,0.020261719822884],[0.035047825425863,0.0050123799592257,0.076078824698925],[0.040163323283195,0.030806915834546,0.060814846307039]],[[0.07789458334446,0.024899303913116,-0.022707434371114],[0.031689114868641,-0.027158023789525,-0.070637971162796],[0.035105053335428,0.00034247591975145,0.01753400452435]],[[-0.071631357073784,0.057295523583889,-0.013047923333943],[-0.024492762982845,0.0094629805535078,0.019933350384235],[0.08526761084795,-0.054561670869589,-0.041392151266336]],[[-0.063441999256611,0.070606514811516,-0.038448452949524],[-0.027830958366394,0.055721271783113,0.03921215608716],[-0.012727428227663,0.0063256681896746,0.043646540492773]],[[-0.027851179242134,0.058879822492599,0.024407740682364],[0.037800442427397,-0.014059991575778,0.031020952388644],[-0.085387095808983,-0.089716382324696,-0.090456917881966]],[[0.019680527970195,-0.041853792965412,0.020243210718036],[-0.019869215786457,0.057125736027956,-0.014721725136042],[0.042190078645945,0.027706546708941,-0.030390514060855]],[[0.065810896456242,-0.046192359179258,-0.016916567459702],[0.025497131049633,0.013267288915813,0.0076604704372585],[0.045302238315344,0.03826716914773,0.0010844086064026]],[[-0.013252101838589,-0.074488759040833,0.040816389024258],[0.05176081135869,0.051372416317463,-0.026022644713521],[-0.081266716122627,-0.07862750440836,-0.06117082759738]],[[-0.049411702901125,-0.04927770793438,0.079888731241226],[0.040479950606823,0.022967260330915,-0.016563838347793],[0.012747946195304,-0.0078231953084469,-0.033538740128279]],[[-0.023020856082439,-0.0089049786329269,0.074670366942883],[0.0077280513942242,-0.022047841921449,-0.039504308253527],[-0.057755168527365,0.035568758845329,-0.011982386931777]],[[0.011953448876739,-0.035367831587791,-0.025466255843639],[0.0038491236045957,-0.020884655416012,0.040961939841509],[0.014503976330161,-0.029105706140399,0.046340677887201]],[[0.031852930784225,0.043446004390717,0.016278609633446],[0.05629151314497,-0.022660288959742,0.072837375104427],[-0.044394731521606,0.070971764624119,0.0066268923692405]],[[-0.056042816489935,-0.010375861078501,-0.048416931182146],[-0.058040253818035,-0.030523758381605,-0.026245525106788],[0.0019109591376036,-0.023734780028462,-0.055243965238333]],[[0.041225451976061,0.036654282361269,-0.035462379455566],[-0.023661110550165,-0.014105300419033,0.012856278568506],[0.026641633361578,0.026820035651326,-0.039146237075329]],[[0.015445328317583,-0.0045604156330228,0.031629007309675],[-0.011277483776212,-0.051131378859282,-0.046062637120485],[-0.034720990806818,0.0071725524030626,0.08719315379858]],[[0.063828058540821,0.021424174308777,0.026098260655999],[0.038219846785069,0.05488308146596,0.023689584806561],[-0.08586622774601,0.059920966625214,0.0079469792544842]],[[0.0048755090683699,0.085541620850563,0.047462332993746],[0.057894378900528,0.0018602672498673,0.00021546892821789],[0.0091304173693061,-0.080937065184116,0.032434862107038]],[[0.010523208416998,-0.018174076452851,0.055252533406019],[-0.10208661109209,-0.0018684584647417,0.025274507701397],[-0.01373983360827,-0.012444120831788,0.016873262822628]],[[0.018168963491917,0.030667776241899,0.024991549551487],[0.05911036580801,0.03291903808713,0.017946301028132],[0.013301026076078,-0.045039389282465,0.002516723703593]],[[0.024311916902661,-0.014568804763258,0.031730893999338],[-0.0081598265096545,-0.0050387997180223,0.014604433439672],[0.058178182691336,-0.0046895197592676,-0.051056463271379]],[[0.0011662890901789,0.10434298962355,0.042574811726809],[-0.0038163380231708,-0.029610583558679,0.041773106902838],[0.030444396659732,0.0073144109919667,-0.0153400702402]],[[0.0070106280036271,-0.010845903307199,0.00038614543154836],[0.01215501036495,0.059717606753111,0.016152096912265],[-0.092320144176483,-0.03479777276516,-0.021358624100685]],[[-0.020748969167471,-0.054746482521296,0.029055688530207],[-0.08590842038393,-0.0018783083651215,-0.074945084750652],[0.0540511906147,-0.010033940896392,0.019034640863538]],[[-0.025666343048215,-0.0085365688428283,-0.0097995437681675],[0.064419969916344,-0.025185694918036,0.014779441058636],[0.040406484156847,-0.0018661402864382,0.010715262033045]],[[-0.033965889364481,0.002347192261368,-0.017773885279894],[-0.013709832914174,-0.0025221405085176,0.012983621098101],[0.0054060802794993,-0.047951430082321,-0.022888723760843]],[[0.10505900532007,0.010571194812655,0.06061153113842],[-0.065082408487797,0.042421877384186,0.034394323825836],[0.061033196747303,-0.01428996399045,-0.022603401914239]],[[-0.013252689503133,0.023903112858534,-0.026089251041412],[-0.07153395563364,0.085228309035301,0.020109672099352],[0.027319420129061,0.051931746304035,-0.024354072287679]],[[-0.03706032037735,0.065970078110695,0.025872813537717],[0.050509747117758,0.029514631256461,0.024241024628282],[-0.050997626036406,0.0024487837217748,-0.019127186387777]],[[0.034595750272274,0.024464527145028,-0.0043057384900749],[-0.032309763133526,0.023132558912039,0.035377368330956],[0.014617419801652,0.058728486299515,0.017230950295925]],[[-0.019447639584541,0.031633894890547,0.01805717498064],[0.029303260147572,-0.065180122852325,-0.097613573074341],[0.034483063966036,0.022923609241843,0.035762805491686]],[[0.056931409984827,-0.053458712995052,-0.01489815954119],[-0.026629591360688,-0.0019575718324631,0.046848833560944],[0.017288729548454,-0.0063348161056638,0.082767903804779]],[[0.023123916238546,0.026347607374191,-0.009768127463758],[-0.02544585429132,0.040153224021196,-0.0008795668836683],[0.024820243939757,0.053783722221851,0.027706209570169]],[[-0.027382738888264,0.094742529094219,0.052610293030739],[0.046732541173697,0.057896088808775,0.031397089362144],[0.075849339365959,0.066815108060837,0.02923297137022]],[[0.010570853948593,-0.079619944095612,-0.056455411016941],[-0.02058962546289,-0.051541030406952,-0.016365218907595],[-0.053577870130539,-0.003560078330338,0.011392486281693]],[[0.015451136045158,-0.022097490727901,0.04234579205513],[-0.007143069524318,-0.0057944166474044,-0.043527863919735],[-0.024686299264431,-0.025307916104794,0.015023251995444]],[[-0.047354627400637,0.079463519155979,0.055415078997612],[-0.038958415389061,-0.012301463633776,0.07034970074892],[-0.047992572188377,-0.011185389012098,0.03726789727807]],[[-0.050660453736782,-0.030365537852049,-0.031861808151007],[0.054701346904039,0.033668529242277,0.062937490642071],[-0.038570791482925,0.011698151938617,-0.023787250742316]],[[-0.0017973537323996,-0.06276860833168,0.069251142442226],[-0.039435349404812,0.0037232574541122,0.028408296406269],[0.015265950933099,-0.043271332979202,0.026609305292368]],[[0.062692329287529,0.019560031592846,-0.030835846439004],[-0.0054674656130373,0.0049623646773398,-0.02677015773952],[0.010356413200498,0.053326442837715,0.12064342945814]],[[-0.036902762949467,-0.044449515640736,-0.04824248701334],[0.073748558759689,-0.052687045186758,-0.025694632902741],[0.039812587201595,-0.010598491877317,-0.086113139986992]],[[0.056781280785799,0.073685400187969,-0.049085944890976],[-0.013779596425593,0.03726664185524,-0.014844173565507],[0.020640507340431,-0.047881659120321,0.026289392262697]],[[-0.064218491315842,-0.055104143917561,0.017060650512576],[0.04683380946517,-0.064113661646843,-0.0033424787689],[0.042282320559025,0.0012589521938935,0.032994445413351]],[[0.023604158312082,0.075551241636276,-0.0051932581700385],[-0.10030849277973,0.01694212667644,-0.025187712162733],[0.015809213742614,0.057041089981794,0.052821703255177]],[[0.00012243006494828,-0.043470468372107,-0.019533390179276],[0.05426311865449,-0.0086357500404119,0.009414529427886],[0.048992782831192,0.069664478302002,-0.041025433689356]],[[0.0034346897155046,-0.044282428920269,-0.021153178066015],[0.11926476657391,0.050073008984327,-0.023530330508947],[0.035935182124376,-0.035922709852457,-0.01084631960839]],[[-0.017733262851834,0.073200903832912,-0.07077544182539],[0.013150129467249,-0.062197476625443,-0.025681778788567],[0.031433697789907,-0.028141379356384,-0.020468233153224]],[[0.050250012427568,0.034676808863878,-0.072882980108261],[-0.033638089895248,0.012380897067487,0.037869285792112],[0.023878298699856,-0.00095931621035561,-0.010353159159422]],[[0.024429270997643,-0.02928956784308,-0.01061961427331],[0.031106108799577,0.098350957036018,-0.082691989839077],[0.00076378649100661,-0.017479641363025,0.01884389296174]],[[-0.011514264158905,-0.0050119138322771,0.031430389732122],[0.061730209738016,0.093387015163898,0.024383470416069],[-0.030307875946164,-0.020143395289779,-0.010744405910373]],[[0.033201180398464,-0.018275642767549,-0.052647292613983],[0.038708731532097,-0.014957386069,5.146336479811e-05],[-0.044100288301706,-0.065910533070564,0.11104051023722]],[[0.070750840008259,-0.058065302670002,-0.021197613328695],[0.020447647199035,0.015454748645425,0.073547542095184],[0.010132562369108,0.044134993106127,-0.012506542727351]],[[-0.065774165093899,0.041627403348684,-0.0075572682544589],[0.022400766611099,0.021686526015401,-0.064642705023289],[0.099939472973347,0.022197967395186,0.018924593925476]],[[0.074201703071594,-0.015355507843196,-0.02104146592319],[-0.049391694366932,0.012623941525817,0.039670117199421],[-0.0392478518188,0.0071052853018045,-0.022758552804589]],[[-0.025699909776449,0.063866473734379,-0.0088099865242839],[-0.008136929012835,-0.059757269918919,-0.018633060157299],[-0.032539952546358,0.020308293402195,-0.0083263777196407]]],[[[0.024210667237639,-0.070022217929363,-0.031860176473856],[0.011895778588951,-0.10008545219898,-0.014225081540644],[0.003494014730677,-0.028867390006781,-0.04413141682744]],[[0.012476735748351,0.04390399903059,0.030520789325237],[0.036392778158188,-0.029753539711237,-0.021383380517364],[0.020446352660656,-0.0085576586425304,-0.015959283336997]],[[0.0048046344891191,-0.026085937395692,-0.025383191183209],[0.0041891094297171,0.053194597363472,-0.0073502571322024],[-0.050732489675283,0.01389451790601,-0.018832750618458]],[[0.084583550691605,-0.020395630970597,0.022189432755113],[-0.0016672476194799,0.032993756234646,-0.041460666805506],[-0.037795834243298,0.036086689680815,-0.025237312540412]],[[-0.011900984682143,-0.11109762638807,0.031928423792124],[-0.034537363797426,-0.061468496918678,0.036089904606342],[-0.0057009714655578,0.009903946891427,-0.016571685671806]],[[0.0018169881077483,0.016160352155566,-0.061118636280298],[0.043796371668577,-0.09765612334013,-0.0052469950169325],[-0.049021571874619,-0.0049035656265914,-0.016586611047387]],[[-0.049275025725365,-0.033117797225714,0.031671050935984],[-0.032754860818386,-0.033188175410032,-0.04278701171279],[0.0048034763894975,-0.015855092555285,-0.023834051564336]],[[-0.00540782045573,-0.011593578383327,-0.037997078150511],[-0.057425770908594,-0.054386120289564,-0.020569643005729],[0.014988492242992,0.0023629653733224,0.05384198948741]],[[-0.029984140768647,-0.065387777984142,-0.017752597108483],[-0.030255606397986,-0.0016569690778852,-0.031540714204311],[-0.075248464941978,-0.047397147864103,-0.0031563595402986]],[[-0.050272542983294,0.0062835002318025,-0.10762549936771],[-0.095536775887012,0.02885409258306,-0.19557772576809],[-0.059177502989769,0.013220515102148,-0.098249882459641]],[[0.013789415359497,0.044247191399336,-0.056037489324808],[-0.032117046415806,-0.0052086412906647,-0.016533568501472],[-0.0037112801801413,-0.034322801977396,0.046963911503553]],[[0.010501180775464,0.026746524497867,-0.026870271191001],[-0.024120194837451,-0.0089995032176375,0.046116147190332],[0.018326669931412,0.027734197676182,-0.0069082714617252]],[[0.021811809390783,0.0077078528702259,-0.011139109730721],[-0.085131518542767,-0.041822053492069,0.050485823303461],[-0.0860346108675,0.071861788630486,0.067579098045826]],[[-0.027085782960057,0.066601447761059,0.011944661848247],[-0.0015744388801977,0.025016354396939,-0.13159115612507],[-0.043365012854338,-0.047334417700768,-0.064502641558647]],[[0.033427935093641,0.029024664312601,-0.062150627374649],[0.088658720254898,-0.12390252947807,-0.11720714718103],[-0.025048160925508,0.036102704703808,-0.086322233080864]],[[-0.01029069442302,-0.084517404437065,-0.0093558169901371],[-0.023223653435707,0.051515560597181,0.046211499720812],[-0.0075276610441506,-0.020227711647749,0.030601751059294]],[[-0.009230843745172,0.035791106522083,-0.016679167747498],[0.034506998956203,0.054342396557331,0.038939770311117],[-0.039933316409588,-0.021746069192886,0.094507843255997]],[[-0.029121482744813,0.0078852027654648,0.011439177207649],[-0.012688570655882,-0.017241481691599,0.055752746760845],[-0.034737005829811,0.0088917296379805,0.021143171936274]],[[0.077635265886784,-0.036967944353819,0.11569338291883],[-0.03424920514226,0.020748941227794,-0.028528146445751],[-0.0013721869327128,0.0092643350362778,-0.011959380470216]],[[-0.040977098047733,-0.023411056026816,-0.098006375133991],[-0.02926030009985,-0.01141612790525,-0.06222527474165],[0.034865148365498,-0.0085150161758065,0.022318689152598]],[[-0.018164457753301,0.0088308649137616,0.032419107854366],[-0.0020968157332391,-0.044981230050325,0.034831900149584],[-0.0044034048914909,-0.097488656640053,-0.076539047062397]],[[0.0091009894385934,-0.0045016137883067,-0.042773872613907],[0.0025497847236693,-0.051962055265903,0.010633180849254],[-0.0092180175706744,-0.066949933767319,-0.0025714540388435]],[[0.033669650554657,-0.072432845830917,-0.0047107031568885],[0.037120528519154,-0.0014819978969172,-0.087829530239105],[-0.031395465135574,-0.054767891764641,-0.040224734693766]],[[-0.0043939389288425,0.029409194365144,0.040592510253191],[0.020374376326799,-0.0020126681774855,-0.053609397262335],[0.0262615326792,-0.042782451957464,-0.048085059970617]],[[0.0013253645738587,-0.043564643710852,-0.016085466369987],[-0.0061461171135306,0.0084569351747632,0.037431132048368],[-0.0035857427865267,-0.061473518610001,0.029437478631735]],[[0.029686834663153,-0.083417952060699,0.0053549101576209],[0.048551365733147,-0.04167690128088,-0.060056306421757],[0.018704542890191,-0.024778574705124,0.019526647403836]],[[-0.064315773546696,-0.0023543157149106,0.087582983076572],[-0.020058445632458,-0.035507872700691,0.0032541970722377],[-0.056861020624638,-0.06731778383255,-0.01622106321156]],[[-0.022478742524981,-0.045147374272346,-0.013693325221539],[0.02203082665801,-0.0044547575525939,0.005494371522218],[0.098191373050213,-0.020351162180305,-0.003789963433519]],[[-0.016034604981542,-0.0025994430761784,-0.023300010710955],[-0.04695937037468,-0.045051623135805,-0.10109407454729],[-0.050693340599537,0.028783440589905,-0.019350586459041]],[[-0.021809162572026,0.0033730347640812,0.087397642433643],[-0.097775034606457,0.0072082136757672,0.0027103954926133],[-0.022507201880217,-0.021932179108262,-0.02832037769258]],[[-0.069784305989742,-0.011333211325109,0.02850354462862],[-0.089649856090546,-0.080582275986671,0.026775877922773],[0.014880674891174,0.0034293807111681,0.020889921113849]],[[0.018611932173371,-0.064663268625736,-0.039989523589611],[-0.022452255710959,-0.019214939326048,0.052004367113113],[0.04330476000905,0.087910287082195,0.062527745962143]],[[0.0089114243164659,-0.0054588024504483,0.014140975661576],[-0.022844856604934,0.064762338995934,0.075588829815388],[0.048480935394764,-0.016256222501397,0.02990778721869]],[[-0.064980246126652,-0.087068118155003,-0.052939236164093],[0.066268973052502,0.11422628164291,-0.0085882525891066],[0.068305388092995,0.016714995726943,-0.00011962011194555]],[[0.036635376513004,-0.025621427223086,0.014086433686316],[-0.057695377618074,-0.042530883103609,-0.026601612567902],[-0.041135735809803,-0.068183764815331,0.025720097124577]],[[0.034982796758413,0.00074224453419447,0.013692935928702],[-0.012728613801301,0.055788815021515,-0.0086771147325635],[0.00045086990576237,0.012347850948572,0.01600836776197]],[[-0.0046233413740993,0.018299149349332,0.01427192799747],[0.030591867864132,-0.054500345140696,0.006271265912801],[0.022169165313244,-0.011044931598008,-0.0031776346731931]],[[0.0028187688440084,-0.10826289653778,-0.06374691426754],[-0.074914768338203,-0.022461516782641,-0.019243959337473],[0.046324368566275,0.006318710744381,-0.059121452271938]],[[0.036645203828812,0.018650664016604,-0.0090598845854402],[-0.017955295741558,-0.081078581511974,0.059804372489452],[-0.049058575183153,0.046875707805157,0.061256170272827]],[[-0.0035221162252128,0.020778631791472,0.039987951517105],[-0.0041774590499699,0.018619500100613,-0.0056204083375633],[-0.052674762904644,-0.013553234748542,-0.015790486708283]],[[-0.0034152574371547,0.071001075208187,0.014821195043623],[0.040518246591091,-0.029148539528251,-0.043757494539022],[0.03620732948184,0.046347443014383,-0.046571768820286]],[[0.027325555682182,0.02773036248982,0.06060554459691],[0.010193568654358,-0.028823891654611,-0.07934645563364],[-0.00027181880432181,-0.013003433123231,0.045090351253748]],[[-0.049809597432613,0.03585284948349,-0.038294587284327],[-0.099444545805454,0.055825021117926,-0.046782568097115],[-0.058101177215576,-0.052946388721466,0.035754479467869]],[[0.04568887501955,0.021392399445176,-0.017052620649338],[0.012127852998674,-0.071009032428265,-0.0059162592515349],[-0.04658554494381,0.032384384423494,-0.06722329556942]],[[0.02629966661334,0.03500022739172,-0.016368543729186],[-0.028096284717321,-0.12220469862223,0.045104805380106],[-0.043796122074127,-0.060508407652378,0.038752295076847]],[[-0.069248467683792,0.0066663613542914,-0.059622328728437],[0.058250565081835,0.048413526266813,-0.074476793408394],[0.039304126054049,-0.025503372773528,-0.030617391690612]],[[-0.0071941362693906,-0.050489295274019,-0.057831645011902],[0.045444294810295,0.0052400310523808,-0.052075188606977],[-0.0067174336872995,0.0075490060262382,0.022212790325284]],[[0.046811819076538,-0.09295766800642,0.038920182734728],[-0.044925812631845,0.021723847836256,-0.061164665967226],[0.0067081935703754,-0.035907004028559,0.083255842328072]],[[0.082209855318069,0.0077581508085132,-0.023188462480903],[-0.0043814405798912,0.009714706800878,-0.0080075589939952],[-0.044580090790987,0.035029631108046,-0.051211584359407]],[[-0.023912658914924,-0.0092007517814636,-0.066456183791161],[-0.024930067360401,0.015662036836147,0.043005019426346],[0.015487751923501,-0.047915332019329,-0.059384502470493]],[[-0.032107122242451,-0.076743714511395,0.087747804820538],[0.025217203423381,0.016072485595942,0.064160406589508],[-0.061573825776577,-0.049995359033346,-0.049069210886955]],[[-0.020098648965359,0.048015214502811,0.01562284771353],[-0.047435265034437,-0.023067077621818,-0.0012408284237608],[-0.0099176513031125,-0.083864003419876,0.036546245217323]],[[-0.025296460837126,0.038757260888815,-0.008015020750463],[-0.018766276538372,-0.039058286696672,-0.0045917946845293],[0.026753224432468,0.036680147051811,0.038957253098488]],[[-0.0058511956594884,-0.018013317137957,-0.0082961190491915],[0.028808150440454,-0.027708379551768,-0.037655808031559],[-0.023765662685037,0.014532674103975,-0.044107213616371]],[[-0.010223599150777,-0.028615364804864,0.020632207393646],[-0.0077263494022191,0.083967424929142,0.05868436768651],[-0.0023209985811263,-0.042378284037113,0.0068913968279958]],[[-0.044039901345968,0.058735590428114,-0.034938465803862],[0.023923633620143,0.036891974508762,-0.0091287065297365],[-0.01607097312808,0.035241704434156,-0.055351585149765]],[[-0.0044707437045872,0.010659472085536,-0.0094789573922753],[0.016557959839702,-0.054514050483704,-0.017929002642632],[-0.02487107925117,-0.046650376170874,0.044470526278019]],[[-0.00106108316686,0.016505284234881,-0.014472748152912],[-0.071821369230747,0.020589884370565,-0.0062522916123271],[-0.0069216596893966,-0.00021854758961126,0.010843095369637]],[[0.09533815830946,0.010074051097035,-0.018964717164636],[0.06160894036293,0.013588534668088,0.044069949537516],[0.06211207062006,-0.038915023207664,0.042934481054544]],[[-0.014509028755128,0.016053762286901,0.014308037236333],[0.036573566496372,-0.061340250074863,0.042467322200537],[0.065935030579567,-0.065091833472252,-0.056656893342733]],[[-0.044976122677326,-0.0056183049455285,-0.065034210681915],[-0.043402913957834,-0.0065716281533241,0.015005334280431],[0.014540750533342,0.046724479645491,-0.041997451335192]],[[-0.014501729048789,-0.018206976354122,0.029311252757907],[-0.019879195839167,-0.0075173699297011,-0.040808297693729],[0.048431061208248,-0.056535001844168,-0.034582406282425]],[[-0.033737692981958,0.0065459706820548,0.013855435885489],[-0.0030258724000305,-0.0068602534011006,-0.025355361402035],[0.0012822997523472,0.0037393269594759,0.038765709847212]],[[-0.018772181123495,-0.070131585001945,-0.063218280673027],[-0.072222180664539,-0.027986936271191,-0.054052956402302],[0.024178793653846,0.056425329297781,0.022646442055702]],[[0.041520059108734,-0.028292760252953,-0.0007285475730896],[-0.03100723773241,0.0047348388470709,0.064204886555672],[-0.005316455848515,0.018263379111886,0.026362983509898]],[[-0.01931993663311,0.014865551143885,-0.024950351566076],[0.05975004658103,-0.077910333871841,0.07721135020256],[-0.0029405050445348,0.024070264771581,0.03741991892457]],[[-0.065796606242657,-0.0034397165291011,-0.0054154680110514],[0.0079603297635913,-0.08477658778429,-0.045345846563578],[0.011721970513463,-0.025712011381984,-0.072692476212978]],[[0.0087412316352129,-0.0600196570158,-0.0057773040607572],[0.0042634764686227,-0.0057680220343173,0.048495832830667],[0.0063176644034684,-0.025791883468628,0.032396491616964]],[[-0.045120157301426,0.030353404581547,-0.041440088301897],[0.013998604379594,-0.075076304376125,0.081645287573338],[-0.0089867692440748,-0.013384553603828,-0.0020004652906209]],[[-0.010544681921601,-0.0097196362912655,-0.046354092657566],[-0.00028915039729327,0.042834646999836,-0.019027836620808],[0.033652473241091,-0.11126863956451,0.0091943768784404]],[[-0.099587976932526,0.0023516877554357,0.023406876251101],[0.033554092049599,0.052348796278238,0.0092944847419858],[-0.01791244931519,-0.051412887871265,-0.049973886460066]],[[-0.044266175478697,-0.00024874706286937,0.052060376852751],[0.028561277315021,-0.085978873074055,0.013764389790595],[0.019693916663527,0.05475702136755,-0.0051372451707721]],[[-0.011141555383801,0.030313394963741,-0.00029976014047861],[0.018848149105906,0.018338264897466,-0.012469263747334],[0.0089849960058928,-0.026394259184599,0.056892391294241]],[[-0.037643078714609,0.0066122822463512,0.028003640472889],[-0.01918108202517,0.00027806969592348,0.0036613892298192],[-0.052905328571796,-0.043852385133505,0.072171844542027]],[[0.03682055324316,0.067394874989986,-0.0098764039576054],[-0.047182995826006,0.050702769309282,-0.051339063793421],[0.025906397029757,-0.045269578695297,0.03022038936615]],[[-0.05611677467823,-0.06424967944622,-0.032619711011648],[-0.015283301472664,0.070095591247082,-0.026361560449004],[0.011459077708423,-0.027109708636999,-0.078186608850956]],[[0.0048212371766567,-0.028650848194957,-0.0074039045721292],[0.054442103952169,-0.012299933470786,-0.048179626464844],[0.011203365400434,-0.0070740031078458,0.036869131028652]],[[0.021550785750151,-0.0094713270664215,-0.030221112072468],[-0.033944670110941,-0.014907221309841,-0.071891538798809],[0.00021831830963492,-0.032395850867033,0.022944875061512]],[[-0.12451320141554,0.05602103099227,0.02909461595118],[-0.020956816151738,-0.018684674054384,-0.0093092434108257],[-0.020909249782562,-0.065324433147907,-0.06308301538229]],[[0.016245774924755,0.0043402691371739,-0.021011436358094],[-0.018039224669337,0.049069449305534,-0.0029271349776536],[0.046363767236471,-0.019296996295452,-0.016400061547756]],[[0.0062242015264928,0.010977815836668,0.014505648985505],[0.0011661193566397,-0.057705406099558,-0.013631721958518],[-0.0091103231534362,-0.020324859768152,0.0035816784948111]],[[-0.017091181129217,-0.023190764710307,0.069445535540581],[-0.12964680790901,-0.03812138363719,-0.071026332676411],[-0.063063271343708,-0.021848438307643,0.010655528865755]],[[-0.0067878901027143,-0.062356241047382,-0.0069526769220829],[-0.044297117739916,0.0180898681283,0.046791903674603],[0.018775334581733,-0.052642043679953,-0.075264677405357]],[[-0.066506907343864,-0.085989564657211,0.01861685141921],[0.0036570183001459,0.0028561791405082,0.049400474876165],[-0.049789659678936,-0.061308041214943,-0.033103931695223]],[[-0.036555401980877,-0.026150286197662,-0.019502969458699],[-0.0061064725741744,-0.068834774196148,0.032983087003231],[-0.017310695722699,-0.0028569467831403,0.012319249100983]],[[0.034290410578251,-0.02814869210124,-0.0047999653033912],[-0.037027377635241,0.018532743677497,0.021042995154858],[0.036775842308998,0.0046957270242274,-0.012963351793587]],[[-0.029432110488415,-0.056654185056686,0.002460679737851],[-0.05539033934474,0.070078112185001,-0.025861226022243],[0.052389170974493,0.064798794686794,0.016814820468426]],[[0.0050458637997508,0.0013392437249422,-0.050250418484211],[-0.056819070130587,-0.00097102124709636,-0.024128371849656],[0.0032596632372588,0.039938967674971,-0.012941164895892]],[[-0.025209313258529,-0.0092810960486531,0.025535872206092],[0.051224187016487,0.062771081924438,-0.018486849963665],[0.011104639619589,-0.058997455984354,-0.0032009906135499]],[[-0.050424881279469,0.022442325949669,-0.039794564247131],[-0.055312316864729,-0.036303859204054,-0.0070190629921854],[-0.023438217118382,-0.043482061475515,-0.010933950543404]],[[-0.061952691525221,-0.008224313147366,-0.042336411774158],[-0.054412115365267,-0.015423180535436,0.011628518812358],[-0.0185153670609,-0.066298499703407,-0.017681866884232]],[[0.059165775775909,0.020949454978108,-0.0059801894240081],[-0.044984340667725,-0.038125071674585,-0.016274871304631],[0.055578216910362,-0.091470874845982,-0.045954506844282]],[[-0.031840704381466,0.0030181447509676,0.029219496995211],[-0.0044402349740267,0.03160497173667,-0.014777923002839],[0.001952211256139,0.019138801842928,-0.052618525922298]],[[0.0099028963595629,-0.014302191324532,-0.0081005170941353],[0.0039251642301679,0.018256489187479,-0.053790871053934],[-0.040341600775719,-0.03741741925478,0.012104550376534]],[[-0.0055272178724408,-0.014396646991372,-0.047472223639488],[0.0068478030152619,-0.041244845837355,-0.089164905250072],[-0.024435605853796,-0.066810794174671,-0.038224030286074]],[[-0.0020911716856062,0.086049288511276,0.0039117326959968],[-0.055800627917051,-0.062842935323715,0.066671006381512],[-0.030520455911756,-0.038657322525978,0.056754238903522]],[[-0.002568929689005,-0.01985196210444,-0.084088921546936],[0.09574231505394,0.014478071592748,-0.06993854790926],[-0.0088449735194445,-0.0051832809112966,0.021795677021146]],[[0.037204284220934,-0.028474554419518,-0.070660904049873],[-0.067472979426384,-0.057079803198576,-0.10241028666496],[0.00092840084107593,-0.052224431186914,0.017493942752481]],[[-0.0077264783903956,0.0057921395637095,-0.037450812757015],[-0.010153688490391,0.0075791566632688,0.020989403128624],[-0.015537829138339,0.011473825201392,-0.044075328856707]],[[-0.030708860605955,-0.052571266889572,0.0046057817526162],[0.02135998941958,-0.0013331231893972,-0.085565149784088],[0.063226833939552,-0.00055737094953656,0.10273482650518]],[[-0.051660556346178,0.074421927332878,0.0068328538909554],[-0.063319146633148,-0.018874427303672,-0.066586345434189],[0.057127926498652,-0.0036287715192884,-0.058808464556932]],[[-0.0027415179647505,-0.00079982954775915,0.011859193444252],[-0.045346315950155,-0.010157464072108,0.043241836130619],[-0.05288790166378,-0.0078663928434253,0.03486217930913]],[[-0.0039493725635111,-0.0093239517882466,0.065136030316353],[-0.026396874338388,0.011487700976431,0.10947261750698],[0.029670985415578,-0.019302360713482,-0.034123975783587]],[[0.0037619781214744,-0.039514865726233,-0.021876804530621],[-0.056244190782309,0.020191721618176,-0.0066602104343474],[0.021285628899932,0.0014581080758944,0.04533052816987]],[[-0.054169736802578,-0.042403910309076,0.040501952171326],[-0.087172314524651,0.011634490452707,0.04039004817605],[-0.055939141660929,-0.044415418058634,0.057044412940741]],[[0.0025012060068548,0.046282075345516,0.0097712725400925],[-0.018420988693833,-0.069676019251347,0.021157080307603],[0.029755152761936,0.0078737325966358,0.021072149276733]],[[-0.034921050071716,0.044176049530506,-0.082023337483406],[0.013730278238654,-0.026865009218454,0.035306975245476],[-0.027998687699437,-0.072640597820282,-0.045731037855148]],[[0.091234497725964,-0.015982888638973,0.0087760630995035],[-0.060800865292549,-0.037830445915461,-0.0025633084587753],[-0.0011107588652521,0.029636954888701,-0.021486604586244]],[[-0.034830566495657,-0.052045438438654,-0.0075654755346477],[-0.087434962391853,0.09080957621336,-0.080877915024757],[0.027552053332329,0.01914195343852,-0.02324123121798]],[[-0.020993063226342,-0.075386442244053,-0.0099527146667242],[-0.035736873745918,-0.045924488455057,0.071470677852631],[0.037775158882141,-0.01704054325819,0.011367678642273]],[[-0.026225408539176,0.10993164777756,0.031403124332428],[-0.024615418165922,-0.017425352707505,-0.041119042783976],[-0.0011250225361437,-0.049127269536257,0.011558565311134]],[[-0.012128467671573,0.047525674104691,-0.017819507047534],[0.050384648144245,0.053613800555468,-0.072258129715919],[-0.062959931790829,0.014062927104533,-0.046622548252344]],[[0.066803067922592,-0.10953259468079,-0.037006113678217],[0.042393788695335,-0.033657271414995,0.025164129212499],[-0.0013147494755685,-0.026217272505164,-0.016806257888675]],[[0.027325937524438,-0.061703510582447,0.0047146994620562],[-0.012248550541699,-0.0034310598857701,0.045194692909718],[0.053135443478823,0.014764806255698,0.0047450298443437]],[[0.011294449679554,-0.044116139411926,-0.042921539396048],[0.041038177907467,0.0048507018946111,0.040198359638453],[0.003727616276592,0.018758151680231,-0.011033407412469]],[[0.070707492530346,-0.0086146742105484,-0.023410584777594],[-0.029424341395497,-0.04940128698945,0.076568394899368],[-0.058579724282026,0.0016861319309101,-0.0005531165516004]],[[-0.036063704639673,0.028248189017177,-0.020127963274717],[0.032981142401695,-0.063215985894203,-0.048777911812067],[-0.0050270352512598,0.018758129328489,-0.021379642188549]],[[0.00048223810154013,-0.019483728334308,-0.067931190133095],[0.028063595294952,-0.065152190625668,0.0016790659865364],[-0.03429352492094,-0.0022301310673356,-0.042018461972475]],[[0.041650518774986,-0.0082284435629845,0.055028758943081],[-0.014028520323336,-0.00064146955264732,-0.016059415414929],[-0.028413593769073,0.015666905790567,0.078801319003105]],[[-0.045272901654243,0.079323641955853,0.019251216202974],[-0.020305557176471,0.07589241117239,0.050363630056381],[0.035744469612837,0.0075563653372228,0.022911829873919]],[[-0.056870743632317,-0.045212537050247,0.060553465038538],[0.068012252449989,-0.04895207285881,0.0063045169226825],[-0.017568802461028,0.0084588788449764,0.051920734345913]],[[0.022533014416695,-0.015490029007196,-0.013792016543448],[-0.034950882196426,-0.012267177924514,0.0032408027909696],[-0.054427828639746,0.012569719925523,0.057257145643234]],[[0.051178053021431,-0.047448247671127,-0.043944399803877],[-0.062423136085272,0.12490792572498,-0.017900565639138],[-0.019679898396134,0.062711916863918,0.019257241860032]],[[-0.023596445098519,0.024590553715825,0.052767459303141],[0.039994966238737,-0.0058784815482795,-0.032817129045725],[-0.038197748363018,0.012746131047606,-0.021342791616917]],[[0.014444557018578,0.075563222169876,-0.015832867473364],[0.037113655358553,-0.013265061192214,-0.0019602444954216],[0.022303065285087,-0.0091112162917852,-0.0039897346869111]],[[0.012236513197422,-0.07065586745739,-0.074518844485283],[0.046608924865723,-0.03180818259716,0.031533405184746],[-0.032447785139084,0.0086174961179495,-0.060837958008051]],[[0.090698733925819,0.0044470941647887,-0.020483754575253],[-0.010836214758456,-0.044786401093006,-0.018649280071259],[0.0041482797823846,-0.026636932045221,-0.074988678097725]],[[-0.080092832446098,-0.044349011033773,-0.087082780897617],[0.01988809928298,0.058700907975435,0.016793418675661],[0.053448896855116,-0.021479833871126,0.016037182882428]]],[[[-0.063337199389935,0.047685872763395,-0.010980398394167],[-0.027672389522195,0.037328615784645,0.0037975513841957],[0.02348099462688,0.10125939548016,-0.042730201035738]],[[0.0050241593271494,0.022199084982276,-0.042708281427622],[-0.014588733203709,-0.022968707606196,-0.050412863492966],[0.009712977334857,0.017659965902567,0.029616599902511]],[[0.027894860133529,-0.0085423355922103,-0.0042083137668669],[-0.018184537068009,0.014625994488597,-0.025710424408317],[-0.020577745512128,0.058703187853098,-0.025851016864181]],[[0.018155181780457,0.015207270160317,0.010873535647988],[0.024655686691403,0.0054512233473361,-0.034266602247953],[0.041250385344028,-0.0036526652984321,0.015466353856027]],[[0.035827618092299,-0.034489437937737,-0.041055992245674],[-0.024639802053571,-0.022243352606893,0.012113858014345],[0.032266791909933,-0.00056290067732334,-0.003299409057945]],[[0.028337739408016,0.061122700572014,0.033576045185328],[-0.049979452043772,-0.02817546389997,-0.018297815695405],[-0.026264104992151,0.0063389833085239,0.024039689451456]],[[-0.013060175813735,0.0012560898903757,-0.033826220780611],[-0.062961086630821,-0.0059529235586524,0.049782998859882],[0.037961971014738,0.072488635778427,-0.043581459671259]],[[0.025598987936974,-0.072797976434231,0.01639068312943],[0.0040039750747383,-0.01997746899724,0.039611354470253],[-0.022645926102996,0.03333168849349,0.0038948021829128]],[[-0.049489382654428,0.013165581040084,0.069501288235188],[0.012427616864443,0.067280866205692,-0.027210675179958],[-0.0070578674785793,-0.0026729311794043,-0.063882619142532]],[[0.008943147957325,-0.0081186927855015,0.010034792125225],[0.025757603347301,-0.053482659161091,0.055663093924522],[-0.031501017510891,-0.0064666024409235,-0.020245529711246]],[[0.0042625293135643,0.016914173960686,0.072881698608398],[-0.0082239033654332,-0.031999092549086,-0.012068014591932],[0.00019211547623854,0.020646248012781,0.028061807155609]],[[0.013854430057108,-0.0056263539008796,0.0052445949986577],[0.025506157428026,-0.01758923754096,0.058356579393148],[-0.014120844192803,-0.07360353320837,-0.0078356759622693]],[[0.020789906382561,0.0083513613790274,-0.025670809671283],[0.044367641210556,0.036463014781475,0.0060619381256402],[-0.014650943689048,-0.022082690149546,-0.072460003197193]],[[-0.016160203143954,0.019023258239031,-0.06888896971941],[-0.019318310543895,0.016444586217403,0.014573398977518],[0.032623011618853,-0.041632279753685,0.009407714009285]],[[0.03654595091939,-0.027862748131156,-0.0044005191884935],[0.039572037756443,-0.018884070217609,-0.026932947337627],[0.055548645555973,0.017846452072263,-0.033450052142143]],[[-0.037754260003567,0.038675300776958,-0.014420055784285],[0.0065807262435555,0.012713719159365,0.012081304565072],[-0.020741941407323,0.047066643834114,0.048828680068254]],[[0.11749906092882,-0.016561068594456,0.043718192726374],[0.029171701520681,0.033992040902376,0.03095549158752],[0.035257667303085,-0.029688216745853,-0.0067027197219431]],[[-0.022551042959094,-0.010821764357388,0.020363267511129],[0.015039859339595,0.097848705947399,0.031256474554539],[0.0067888721823692,-0.052778918296099,0.014035292901099]],[[0.016603615134954,-0.01755372621119,-0.015275817364454],[-0.085384912788868,0.014432691968977,0.063515096902847],[0.0027629791293293,0.029057040810585,0.030922755599022]],[[-0.0060192476958036,0.02521201223135,-0.052759028971195],[0.032380390912294,0.027783619239926,0.017731662839651],[0.042294003069401,0.02418109588325,-0.010471614077687]],[[0.0001861820492195,-0.0041920701041818,-0.011423663236201],[0.014943491667509,0.043936930596828,-0.038236919790506],[-0.073413342237473,-0.01651069894433,0.050326395779848]],[[-0.023042624816298,0.017552005127072,-0.0013919634511694],[0.04142664372921,0.078795060515404,0.063871219754219],[-0.02631825953722,-0.001802712562494,-0.049347039312124]],[[0.053598936647177,0.12526385486126,-0.023185081779957],[0.083512216806412,0.053188901394606,0.019729867577553],[-0.034889858216047,0.019367782399058,-0.00577871222049]],[[-0.0097185950726271,-0.065709799528122,-0.064047083258629],[0.044132303446531,-0.024387722834945,-0.036560881882906],[0.027415238320827,0.10620194673538,0.033724743872881]],[[0.0183628462255,0.0068178027868271,0.024893015623093],[0.04016249999404,0.01812100969255,-0.073812924325466],[-0.01642638258636,0.032304540276527,-0.0076608243398368]],[[-0.019891051575541,0.028080821037292,0.033314369618893],[0.0071534039452672,-0.088153973221779,-0.059277191758156],[0.03121854737401,0.017345577478409,0.018114134669304]],[[0.016944976523519,0.013388820923865,-0.026083063334227],[0.025658998638391,-0.015315955504775,-0.022981464862823],[-0.015824100002646,-0.050917360931635,-0.044917199760675]],[[0.058562375605106,-0.090671293437481,-0.054184809327126],[0.057458117604256,0.058049570769072,0.0014207663480192],[0.031465243548155,0.0071527450345457,-0.066167570650578]],[[-0.0067429929040372,-0.015619427897036,-0.034139294177294],[0.01729135401547,-0.018202988430858,-0.011140644550323],[0.017987105995417,0.11329279839993,-0.017312394455075]],[[0.068530522286892,-0.017137913033366,-0.068931937217712],[0.0019778001587838,-0.0047094346955419,-0.026204574853182],[-0.09016777575016,0.035892110317945,-0.0031405419576913]],[[0.058812685310841,-0.083070158958435,-0.042097400873899],[0.042604688555002,-0.0030825063586235,0.047509618103504],[-0.062501423060894,-0.023603180423379,-0.017624571919441]],[[0.061860658228397,-0.027742112055421,-0.049781579524279],[-0.048891305923462,-0.011518877930939,-0.0043755676597357],[0.10465085506439,0.0015983139164746,-0.031792320311069]],[[0.083688080310822,0.022881718352437,-0.075352415442467],[-0.014366323128343,0.081397578120232,-0.036387417465448],[-0.012025557458401,-0.008923253044486,-0.0022536623291671]],[[0.026847055181861,0.015138261020184,0.026423696428537],[0.049082811921835,-0.021870946511626,-0.09399189054966],[0.020218789577484,0.035233672708273,0.082371905446053]],[[-0.012931935489178,-0.037248142063618,-0.065575055778027],[-0.051143549382687,0.04806786775589,-0.016230147331953],[0.026406720280647,-0.01733823120594,0.011900714598596]],[[0.0029018763452768,0.06631538271904,-0.083783276379108],[-0.048715583980083,0.036272883415222,0.025964394211769],[0.057743664830923,-0.025110548362136,-0.032832216471434]],[[0.093089424073696,-0.0087397117167711,-0.033785920590162],[-0.07397548109293,0.028917234390974,0.075408689677715],[0.037230964750051,-0.023663725703955,-0.060407295823097]],[[-0.025736659765244,0.022311372682452,0.034383930265903],[-0.029830429702997,0.028937002643943,0.074523635208607],[0.019556825980544,0.023331437259912,0.036842089146376]],[[-0.06598274409771,-0.0043609673157334,-0.03434931859374],[-0.055653169751167,0.010159744881094,-0.01425748039037],[0.077323131263256,0.04296201094985,-0.01219592615962]],[[0.066693514585495,-0.0031015009153634,0.011735199019313],[0.09663387387991,0.023914877325296,0.00042501749703661],[-0.048867397010326,-0.0021046283654869,0.041950281709433]],[[0.097734518349171,0.09074079990387,-0.067606091499329],[0.0077961185015738,-0.0039156745187938,-0.072315782308578],[0.050348062068224,-0.050282631069422,-0.024503292515874]],[[0.022352714091539,0.055628668516874,-0.0052787321619689],[-0.00080419040750712,-0.06425005197525,-0.053966823965311],[0.033196184784174,-0.089791730046272,0.094668731093407]],[[-0.026034526526928,-0.027437208220363,0.055960610508919],[0.031385745853186,-0.011276031844318,0.018476905301213],[0.043874826282263,0.036732662469149,0.038893382996321]],[[0.033261995762587,0.0022973732557148,0.0014209458604455],[0.043724119663239,-0.013459227047861,-0.019321637228131],[0.03250028192997,0.030004722997546,0.012859213165939]],[[-0.034555990248919,0.0051423120312393,-0.003576209070161],[0.018235130235553,0.033744819462299,0.0063192513771355],[0.064526230096817,-0.07097364962101,-0.0053845336660743]],[[0.034800264984369,0.015139875933528,0.021649368107319],[-0.046173922717571,0.047321557998657,-0.050135459750891],[-0.038654662668705,0.025672415271401,0.005139566026628]],[[0.055967252701521,-0.051491137593985,-0.003204180393368],[-0.0055827014148235,-0.024857766926289,0.06548985093832],[0.036046791821718,0.0044653872027993,-0.039204992353916]],[[-0.014174239709973,0.0040471572428942,0.012409817427397],[0.045454308390617,0.063428469002247,0.0052188425324857],[-0.086095727980137,-0.044721718877554,0.063371106982231]],[[-0.018773786723614,0.005430328194052,0.025307090952992],[0.027751771733165,0.02111622877419,-0.049616374075413],[0.035943441092968,-0.027283290401101,0.036458935588598]],[[0.047289665788412,0.091991387307644,-0.098453596234322],[0.019094191491604,-0.02135743573308,0.037090543657541],[0.055992670357227,-0.06117856502533,-0.095090121030807]],[[0.052327115088701,-0.05815514922142,-0.0086813988164067],[-0.060379263013601,0.055369853973389,-0.018237564712763],[0.043834991753101,0.024498332291842,0.066681198775768]],[[-0.035418264567852,0.074256971478462,-0.04545683786273],[0.019832961261272,-0.0074693276546896,-0.027613816782832],[0.0076513555832207,-0.023813880980015,0.057209365069866]],[[0.029831321910024,-0.020596576854587,-0.021134862676263],[-0.031616326421499,0.047713212668896,-0.0082963733002543],[0.026845194399357,0.034344907850027,-0.014569039456546]],[[-0.022685589268804,-0.025508537888527,-0.019023323431611],[0.027374280616641,-0.0053152651526034,-0.040647514164448],[-0.034570511430502,-0.018093150109053,0.070408523082733]],[[0.066613428294659,-0.050073515623808,0.036558035761118],[0.038019724190235,-0.046557225286961,-0.00049354153452441],[-0.061225261539221,0.076993919909,-0.049831096082926]],[[0.0098963035270572,-0.027158312499523,0.054973267018795],[-0.013498486019671,0.018256656825542,-0.10977701842785],[0.15662524104118,-0.048037886619568,0.033315479755402]],[[0.026028515771031,0.031366858631372,-0.0028270157054067],[0.014158483594656,0.032903589308262,-0.017808170989156],[0.016108918935061,0.055390302091837,-0.046153720468283]],[[0.037526171654463,-0.0014582365984097,-0.024922726675868],[0.035475496202707,0.01428468991071,0.016142820939422],[0.042400367558002,-0.0096124820411205,-0.021706864237785]],[[-0.071241229772568,0.043446131050587,0.05284757912159],[-0.069032914936543,0.03176175057888,0.052718833088875],[0.02468472905457,0.015868367627263,-0.059501592069864]],[[-0.027045089751482,0.031250230967999,-0.013604101724923],[0.1202404499054,0.053938705474138,0.024928290396929],[0.057261269539595,-0.083380207419395,-0.042340289801359]],[[-0.064885333180428,0.051046501845121,0.025110768154263],[-0.016927165910602,0.025903014466166,0.010522427968681],[-0.0070469076745212,0.02578648366034,-0.036987628787756]],[[0.020410813391209,-0.025785719975829,-0.020460529252887],[-0.054608158767223,-0.05578837916255,-0.069804042577744],[-0.050006538629532,0.0092206606641412,-0.020664123818278]],[[0.02812098711729,0.032472785562277,0.083149522542953],[0.0059146056883037,0.012856776826084,-0.002292521065101],[-0.018553029745817,0.016809370368719,0.051030203700066]],[[-0.024142935872078,0.0071090674027801,0.056238085031509],[0.012262286618352,-0.0023350024130195,-0.016003176569939],[0.038057807832956,0.013392373919487,0.028379337862134]],[[-0.010736372321844,-0.024282639846206,-0.020179770886898],[0.10512988269329,0.068830914795399,0.017144795507193],[0.005350308958441,0.01462137978524,-0.032126646488905]],[[0.025541838258505,0.069098435342312,-0.023268632590771],[-0.091626174747944,0.076774045825005,0.010840914212167],[0.040561683475971,0.021083751693368,0.11298489570618]],[[-0.033804010599852,0.0045442525297403,0.039160329848528],[-0.036020249128342,-0.034443978220224,-0.068428426980972],[0.0017556935781613,0.020939772948623,0.042571179568768]],[[0.035883154720068,-0.014814639464021,-0.015073975548148],[-0.018079023808241,-0.0060044364072382,-0.0011761867208406],[0.033940859138966,0.047483399510384,-0.017323266714811]],[[0.0034574321471155,0.015288161113858,0.040035761892796],[-0.02079308591783,-0.028669893741608,0.028949799016118],[-0.0074895336292684,-0.027302959933877,0.037920612841845]],[[-0.010448582470417,0.0045332959853113,0.01295761205256],[-0.048465833067894,0.0019354044925421,0.021224008873105],[0.024911275133491,0.0005523370928131,-0.026885943487287]],[[0.0057228249497712,-0.041889034211636,0.019413977861404],[-0.016042683273554,-0.033321812748909,0.028762873262167],[-0.022031106054783,-0.025101240724325,-0.057848855853081]],[[-0.0040167197585106,-0.034921318292618,0.019911278039217],[0.023778496310115,0.02521158196032,0.014827557839453],[-0.074793435633183,0.054081726819277,-0.052192911505699]],[[-0.0054578990675509,0.028344025835395,0.04243553429842],[-0.0083882380276918,-0.074756763875484,0.066322162747383],[-0.037004265934229,-0.0040104575455189,-0.01411097496748]],[[-0.036849867552519,-0.059623342007399,-0.069722302258015],[-0.017243837937713,0.012823976576328,-0.046376585960388],[-0.049129955470562,0.062225334346294,0.018304094672203]],[[0.018117049708962,0.0011283596977592,0.093934662640095],[0.05439155548811,-0.015457040630281,-0.020249649882317],[-0.05085763335228,-0.03097914531827,-0.025661610066891]],[[-0.011256451718509,0.016072208061814,-0.024767227470875],[-0.010824018158019,0.012579394504428,-0.036659762263298],[-0.026382895186543,-0.0082406615838408,0.025181306526065]],[[0.016920853406191,-0.026495769619942,-0.017222266644239],[-0.031814571470022,0.014285054057837,-0.043915268033743],[-0.024802163243294,0.047225754708052,-0.012466125190258]],[[-0.0089473845437169,0.061423745006323,0.029087347909808],[-0.00035394821316004,0.0072112991474569,-0.024376634508371],[0.025245767086744,-0.023013575002551,0.05272213742137]],[[0.016906863078475,-0.034968566149473,0.012519429437816],[-0.028577825054526,0.0012411051429808,-0.035088416188955],[0.014799485914409,-0.0015307980356738,-0.01476523000747]],[[0.035083506256342,0.043603163212538,-0.0065765511244535],[0.0051825921982527,0.026131542399526,-0.029794534668326],[0.028389345854521,-0.0469144359231,0.023378595709801]],[[-0.034937180578709,-0.027185158804059,0.072795882821083],[0.046755168586969,0.0030278023332357,0.016939125955105],[0.024503557011485,0.019242720678449,0.010469378903508]],[[0.056716162711382,0.018012624233961,0.082414954900742],[-0.0082098431885242,-0.064844980835915,0.01434491854161],[-0.11619890481234,-0.032622333616018,0.034464538097382]],[[0.013461350463331,-0.0020727401133627,0.031125197187066],[-0.029658451676369,-0.055531863123178,0.023582831025124],[-0.0053229322656989,0.0095983855426311,0.025611953809857]],[[0.060384288430214,0.051946263760328,-0.02741608582437],[0.005619945935905,-0.047956325113773,0.014789242297411],[-0.0050836787559092,-0.071612678468227,0.031573090702295]],[[-0.014203937724233,-0.032253462821245,-0.052915040403605],[0.015369131229818,-0.12287357449532,0.073779121041298],[-0.010174418799579,0.012128198519349,0.033218532800674]],[[-0.068181283771992,0.010597038082778,0.042358051985502],[0.0026844111271203,0.0222078692168,-0.055897258222103],[0.019750641658902,0.043275196105242,0.034980043768883]],[[-0.02299852669239,0.023206431418657,-0.034027222543955],[-0.035755779594183,-0.031483110040426,0.034309063106775],[-0.019477065652609,0.077475257217884,-0.0025791672524065]],[[0.023085514083505,0.02789787016809,-0.088436834514141],[-0.032903671264648,0.030129704624414,-0.014665892347693],[0.034200429916382,0.033615048974752,0.027528900653124]],[[0.093164414167404,-0.01422054041177,-0.073670618236065],[-0.021729907020926,0.0026974251959473,0.025510115548968],[0.039243083447218,-0.059152752161026,0.029382104054093]],[[-0.016760786995292,0.025116706266999,-0.068068288266659],[0.061485100537539,0.012983315624297,-0.016884936019778],[0.040158145129681,0.020190173760056,0.020226810127497]],[[-0.015537746250629,-0.023849487304688,-0.023585010319948],[-0.010370532050729,0.0811737626791,0.033574476838112],[0.033511310815811,-0.014613559469581,0.023937413468957]],[[0.019964270293713,0.03312711417675,-0.04344005510211],[-0.018134657293558,0.02589894272387,-0.018286161124706],[-0.061492417007685,0.028788261115551,0.071902841329575]],[[-0.022433144971728,0.0024621533229947,-0.0089274626225233],[-0.048898201435804,0.012823042459786,0.0015696873888373],[-0.02388540096581,-0.066878348588943,0.018897350877523]],[[-0.052172813564539,0.0431142821908,-0.0013792183017358],[0.033809885382652,-0.034806989133358,-0.050307434052229],[0.03143410012126,-0.06030286476016,-0.0072256997227669]],[[0.014388255774975,0.0069123129360378,-0.025868389755487],[-0.047250404953957,0.056477449834347,-0.089767813682556],[-0.0044071711599827,0.073046214878559,-0.046885821968317]],[[0.017850091680884,0.0038908643182367,-0.00049112760461867],[0.063455328345299,0.015237425453961,0.026101322844625],[0.026425676420331,0.097393587231636,0.01169450301677]],[[0.005747580435127,-0.00083140737842768,-0.049034025520086],[0.050767738372087,-0.013237657025456,-0.030322227627039],[0.075446747243404,0.019375268369913,-0.011921928264201]],[[0.033538889139891,-0.077072441577911,0.061917383223772],[-0.067869424819946,-0.032682683318853,-0.017619229853153],[0.11113929748535,-0.0059311822988093,-0.026692217215896]],[[-0.033927898854017,-0.054908260703087,0.012458402663469],[0.019311849027872,0.051157388836145,-0.020151322707534],[0.00047611145419069,0.015810802578926,-0.013715215027332]],[[-0.033794421702623,-0.034627985209227,0.047844916582108],[-0.0032431448344141,-0.0016960430657491,-0.010924011468887],[-0.018445188179612,0.0012502011377364,0.0082893893122673]],[[0.012637329287827,0.040293302386999,0.068133123219013],[-0.083443142473698,-0.035556685179472,0.023075245320797],[0.053516380488873,0.077534280717373,0.022148877382278]],[[-0.011141537688673,-0.044560648500919,0.032534189522266],[0.018254129216075,-0.059824794530869,0.006093205884099],[-0.027716401964426,-0.014041653834283,0.032663125544786]],[[-0.020683649927378,-0.0072895274497569,0.046711005270481],[-0.037158582359552,-0.0022189223673195,-0.01855849660933],[-0.053175639361143,-0.072024188935757,-0.0081369429826736]],[[-0.013752032071352,-0.017277160659432,-0.057539504021406],[0.013260601088405,0.011340602301061,-0.028707640245557],[-0.047342162579298,-0.10203373432159,0.011651743203402]],[[0.014055769890547,0.0636220946908,-0.033712528645992],[-0.0099684521555901,0.069709308445454,-0.021517645567656],[-0.049077831208706,0.01960851252079,-0.010527717880905]],[[-0.0056487787514925,-0.0033546765334904,0.0021025952883065],[-0.036367084830999,-0.045063473284245,-0.058506313711405],[0.025559293106198,-0.026817766949534,-0.0021697673946619]],[[-0.040020853281021,0.021441729739308,0.067136101424694],[0.0058080251328647,-0.019352538511157,0.0069407895207405],[-0.040115624666214,0.073734790086746,-0.0020421114750206]],[[-0.0044467253610492,-0.069892935454845,0.056361377239227],[0.052643362432718,-0.023447062820196,0.026033781468868],[0.018157629296184,-0.051009833812714,0.02435015514493]],[[-0.0079677263274789,-0.0085481917485595,-0.0084963319823146],[0.016569411382079,0.041748385876417,-0.012435355223715],[-0.073237642645836,0.050957895815372,-0.079116933047771]],[[-0.093235321342945,-0.039002925157547,-0.056578643620014],[-0.034851673990488,-0.03598727285862,-0.0044371322728693],[-0.027773067355156,-0.020825941115618,-0.064954712986946]],[[0.040672685950994,0.022741161286831,0.083750210702419],[0.01055171713233,-0.027322355657816,0.032349869608879],[0.0094477888196707,0.06378286331892,0.024560632184148]],[[-0.054992284625769,-0.024187356233597,-0.025632819160819],[-0.066844947636127,0.053566813468933,-0.047916144132614],[-0.041767813265324,-0.02954144962132,-0.061077158898115]],[[0.021982673555613,0.059137307107449,-0.050396591424942],[0.023051438853145,0.0045776651240885,-0.040383156388998],[0.073584727942944,-0.028808059170842,-0.029152439907193]],[[0.016038624569774,-0.055866599082947,-0.01736007630825],[0.017474690452218,-0.034858867526054,-0.010632208548486],[0.043156560510397,-0.039195884019136,0.019727017730474]],[[0.0037824406754225,0.035438790917397,-0.014372036792338],[0.012436101213098,0.035306125879288,-0.038963943719864],[0.016237325966358,-0.0088629825040698,-0.018237425014377]],[[-0.052347436547279,-0.059100352227688,-0.058919228613377],[0.059733334928751,-0.0019506458193064,-0.026399021968246],[-0.13958412408829,-0.10187647491693,0.032129719853401]],[[0.03653009980917,0.015751861035824,-0.0032057918142527],[0.0079336045309901,-0.042484920471907,0.046630177646875],[0.024804383516312,0.065920159220695,-0.0004121158272028]],[[0.057133536785841,0.0087493630126119,-0.013356560841203],[0.040117219090462,-0.050356298685074,0.032086815685034],[0.00017862842651084,0.014473191462457,0.012712644413114]],[[0.008007843978703,-0.016394821926951,-0.009756850078702],[-0.061403304338455,-0.0150589896366,0.017880776897073],[-0.052780278027058,0.01007392257452,-0.038859508931637]],[[0.027477713301778,-0.058800481259823,-0.00062744820024818],[-0.027076004073024,0.027284819632769,0.059654727578163],[-0.0062332847155631,-0.036968629807234,-0.0080858860164881]],[[0.022585531696677,-0.029177324846387,-0.018359687179327],[0.052077814936638,0.061221946030855,0.036480918526649],[-0.021771965548396,-0.028956990689039,-0.079122073948383]],[[-0.081647776067257,0.025221602991223,0.07589465379715],[0.066618487238884,0.016077376902103,0.057680245488882],[-0.018194530159235,-0.042888067662716,0.010769007727504]],[[-0.024763790890574,0.032829198986292,0.024945382028818],[-0.07871949672699,-0.0055537335574627,-0.055055491626263],[-0.062474813312292,0.03971154987812,-0.01548083126545]],[[0.060699712485075,-0.029264204204082,-0.086580544710159],[-0.081634290516376,-0.053186342120171,-0.018153194338083],[0.011904716491699,-0.00748683931306,-0.061674937605858]],[[0.025236027315259,0.030857425183058,0.01136838644743],[0.00031714455690235,-0.016271166503429,-0.068807080388069],[0.015088433399796,-0.0064127575606108,0.036993116140366]],[[-0.011491696350276,-0.031172079965472,0.061251677572727],[-0.055976219475269,0.010641075670719,0.026034088805318],[-0.0061568589881063,0.047220639884472,0.00068329687928781]],[[-0.039267830550671,0.0030633858405054,0.01570282317698],[0.024757251143456,0.041245277971029,-0.11461697518826],[0.028181014582515,-0.023090155795217,0.022036097943783]],[[0.025612086057663,-0.036403011530638,-0.0086993593722582],[0.066969729959965,-0.034848034381866,-0.036452703177929],[0.000701351207681,-0.023911390453577,-0.091385751962662]]],[[[0.0009808698669076,0.051248382776976,0.009571404196322],[0.03333081677556,-0.050069395452738,-0.082311198115349],[0.0088501013815403,0.016842385753989,-0.015939069911838]],[[0.03113061375916,-0.0594652146101,0.092256337404251],[0.016344428062439,0.09825374931097,-0.0021928548812866],[-0.013913906179368,0.060210302472115,0.037095919251442]],[[0.065776415169239,0.0099939927458763,-0.037931598722935],[-0.0032525104470551,-0.0071465130895376,-0.13321028649807],[-0.0075169457122684,-0.028621602803469,-0.024533143267035]],[[0.034371886402369,0.0024273390881717,-0.075036831200123],[0.025699459016323,-0.0014619500143453,-0.12769982218742],[-0.0072123012505472,0.050897609442472,0.034484948962927]],[[0.04234653711319,-0.0088064316660166,-0.13413545489311],[-0.023613676428795,-0.017429079860449,-0.023835198953748],[0.020096158608794,-0.055613752454519,-0.065214551985264]],[[-0.03966760635376,0.042652059346437,0.060526296496391],[-0.017836337909102,0.050686709582806,0.11195462197065],[0.10819315165281,0.056454114615917,-0.011878114193678]],[[0.068816237151623,-0.071441739797592,0.086834885179996],[-0.028829254209995,0.013416651636362,-0.07703472673893],[-0.013800304383039,-0.0028872827533633,-0.031951483339071]],[[0.052274029701948,0.012516816146672,-0.080952741205692],[-0.012844019569457,-0.05322140827775,0.030678890645504],[0.019934995099902,-0.033211704343557,-0.0093533452600241]],[[-0.039741743355989,-0.00082816352369264,-0.050894614309072],[0.021515153348446,-0.0024370341561735,0.05757911875844],[0.060527022927999,0.064428463578224,0.044272243976593]],[[0.097737587988377,0.17331747710705,0.085441865026951],[0.14960508048534,-0.0071981232613325,0.047329179942608],[0.16506837308407,0.018928406760097,0.21103085577488]],[[-0.048751123249531,-0.0085511719807982,0.069625049829483],[-0.062390055507421,0.036919198930264,-0.054869901388884],[0.0088796010240912,-0.0042096800170839,0.013097173534334]],[[0.016338173300028,0.049955498427153,0.031154295429587],[0.027706135064363,-0.063051261007786,0.022675665095448],[0.06113450974226,0.046907439827919,0.035583041608334]],[[0.006771526299417,0.028294546529651,-0.013543813489377],[0.0746725872159,0.014664866961539,0.05517153441906],[-0.066380821168423,0.046914216130972,0.0142907705158]],[[0.0172438044101,-0.0056041670031846,0.072487629950047],[-0.079850822687149,0.048018980771303,-0.022679006680846],[-0.029729658737779,0.0025241943076253,-0.047369204461575]],[[0.038575623184443,0.11210789531469,0.17646864056587],[0.12002884596586,-0.038118731230497,0.092287003993988],[0.017059721052647,0.12643291056156,0.17109528183937]],[[-0.062134142965078,-0.042900998145342,0.035622604191303],[-0.043416380882263,-0.048908110707998,-0.063795261085033],[-0.024175442755222,-0.0033338277135044,-0.052905216813087]],[[0.023872874677181,0.024919847026467,0.057436808943748],[-0.0084665473550558,0.017961487174034,0.028607258573174],[-0.018559772521257,-0.037437703460455,0.023384310305119]],[[-0.058829732239246,0.038483150303364,-0.021494906395674],[-0.064078375697136,0.04656421020627,-0.082502655684948],[-0.045580983161926,-0.094573616981506,-0.0069785644300282]],[[-0.077270500361919,-0.010821588337421,0.054924320429564],[-0.0091440686956048,0.032221905887127,-0.014614779502153],[-0.0092082396149635,-0.056862991303205,-0.0080681061372161]],[[0.035061523318291,0.022019427269697,0.081083200871944],[-0.012612465769053,0.053299870342016,0.038934078067541],[-0.069009855389595,-0.015057675540447,0.075131610035896]],[[0.042388491332531,0.02485011331737,-0.015161372721195],[0.050705086439848,0.036244340240955,-0.013130893930793],[0.11650779098272,0.092738673090935,0.041768260300159]],[[0.070657216012478,0.10210004448891,-0.029690621420741],[0.054490681737661,0.0052885548211634,0.014809381216764],[0.056442804634571,0.14961291849613,0.06743647903204]],[[-0.062387954443693,0.015820296481252,-0.111262768507],[-0.044324439018965,0.03148140385747,0.024967046454549],[0.15046201646328,0.022054048255086,-0.096709728240967]],[[-0.064107596874237,-0.013708280399442,-0.055055990815163],[-0.010936009697616,0.026267671957612,-0.052061457186937],[0.038580760359764,0.00029941654065624,0.0017876395722851]],[[-0.021702621132135,-0.018118280917406,0.03423423692584],[0.023562356829643,0.045203655958176,0.022176081314683],[0.066484294831753,0.016278753057122,-0.040514040738344]],[[0.023568589240313,0.064141966402531,-0.020435156300664],[-0.071570247411728,0.043034784495831,0.011643062345684],[0.083721689879894,0.042706280946732,0.0099068256095052]],[[-0.027920762076974,0.06835924834013,-0.0088787544518709],[-0.063059523701668,-0.019909676164389,0.046694815158844],[0.024744961410761,0.045486375689507,0.08543399721384]],[[0.10385778546333,0.094850830733776,0.017900880426168],[-0.039672397077084,-0.058718930929899,0.13761010766029],[0.042025305330753,0.02206176891923,0.091751277446747]],[[-0.0098679317161441,-0.0045448769815266,-0.016860201954842],[0.078049048781395,-0.033392678946257,0.023904988542199],[0.10448691993952,0.048171859234571,0.016894798725843]],[[0.12506411969662,0.04060210287571,0.030408345162868],[0.023417137563229,0.0060581397265196,-0.049902219325304],[-0.019010942429304,-0.041494455188513,-0.034513834863901]],[[0.028587257489562,-0.064520686864853,-0.012344286777079],[-0.077962167561054,-0.0026539405807853,-0.04138295724988],[0.051131006330252,-0.022040452808142,0.034388817846775]],[[-0.052169863134623,-0.014214024879038,0.026250395923853],[-0.046103686094284,-0.023564809933305,-0.071139700710773],[0.0031285267323256,-0.032430160790682,0.023329969495535]],[[0.021002320572734,0.03171045333147,0.1334375590086],[0.016734594479203,-0.035769563168287,0.051921520382166],[0.06611754745245,0.03256656229496,-0.0038243103772402]],[[-0.017217431217432,-0.009625568985939,0.049988381564617],[0.0071019697934389,-0.054650958627462,0.077642120420933],[0.096725195646286,-0.0096017541363835,0.10743570327759]],[[0.044969670474529,-0.099706925451756,-0.00427320972085],[0.0058734877966344,-0.024088174104691,0.013412890955806],[0.09391950070858,0.014747276902199,-0.038793820887804]],[[0.036396615207195,0.015996262431145,-0.015158217400312],[-0.082129783928394,0.0497767329216,0.059609606862068],[0.054504737257957,0.0071338950656354,-0.052127528935671]],[[-0.078500375151634,0.020556412637234,0.032118387520313],[-0.0070456517860293,0.023680264130235,0.027164390310645],[-0.048154927790165,-0.039658445864916,-0.032195076346397]],[[0.082116544246674,0.040302518755198,0.060328759253025],[-0.045502252876759,0.053218223154545,-0.073685094714165],[0.0010974236065522,-0.067152597010136,0.021278854459524]],[[0.026074385270476,-0.00083974952576682,-0.0090231755748391],[0.063081376254559,-0.0082385428249836,-0.031456403434277],[0.015289255417883,0.046150714159012,-0.017168834805489]],[[-0.023210678249598,-0.12229047715664,-0.025625741109252],[-0.0025738927070051,0.053046230226755,0.029728382825851],[0.0065366523340344,-0.02571882866323,0.051259387284517]],[[-0.11782521754503,0.016505643725395,0.05332612618804],[0.036446418613195,-0.084282986819744,0.040359620004892],[-0.03701550886035,-0.0095739848911762,0.032160114496946]],[[0.021931447088718,-0.051781553775072,0.028808137401938],[-0.063731759786606,-0.015761053189635,-0.039266087114811],[0.0049512824043632,0.047039799392223,-0.044636726379395]],[[0.048224911093712,-0.030210435390472,0.028708349913359],[-0.0021922164596617,-0.025735108181834,0.0098859425634146],[0.04242393001914,-0.074879102408886,0.034341905266047]],[[-0.0071899397298694,-0.053091660141945,0.027705665677786],[0.028703490272164,0.012375310994685,0.026063958182931],[0.030646797269583,0.057462871074677,-0.037804491817951]],[[0.089179188013077,0.04584401473403,0.0035010515712202],[0.10335357487202,-0.049792289733887,-0.058522094041109],[-0.045802515000105,-0.015492369420826,0.042348995804787]],[[0.048758942633867,-0.047677233815193,-0.067264080047607],[0.058526381850243,0.011843129061162,0.031000165268779],[-0.020925756543875,0.10689701139927,0.0046202004887164]],[[-0.00055887427879497,0.014997665770352,0.021674809977412],[0.040796544402838,0.04962981492281,0.05064644664526],[0.059521794319153,0.011146002449095,0.048636399209499]],[[-0.1096508204937,0.069344662129879,0.049954988062382],[0.046101037412882,0.10483498126268,-0.022152151912451],[0.069045260548592,-0.029558772221208,-0.0064047006890178]],[[-0.07203359156847,0.0029901922680438,-0.098020441830158],[-0.026795113459229,0.054340668022633,0.053051803261042],[-0.013091239146888,0.094630286097527,-0.054208673536777]],[[-0.0095239272341132,-0.1026646643877,0.030151002109051],[-0.048427671194077,-0.023868838325143,-0.013648449443281],[-0.020652061328292,0.034848056733608,0.01534322462976]],[[-0.041564509272575,0.021323889493942,0.061319574713707],[0.021428452804685,0.03984534367919,-0.047171957790852],[0.0078224008902907,0.044071733951569,0.019334891811013]],[[0.076987236738205,0.1130483970046,-0.067457094788551],[-0.08107703179121,0.0028403552714735,-0.021699639037251],[-0.012335228733718,0.057767860591412,0.12618371844292]],[[0.085553228855133,0.057339187711477,0.00039070696220733],[-0.042922720313072,-0.022055447101593,0.022598225623369],[0.006361797451973,-0.0043166866526008,0.019493073225021]],[[0.022730154916644,0.052923355251551,0.058425821363926],[-0.027745174244046,-0.049867678433657,-0.028011647984385],[-0.067203119397163,0.014717643149197,-0.0067634866572917]],[[0.020052311941981,0.079420857131481,0.017267230898142],[0.07639666646719,0.0026268081273884,0.033903487026691],[-0.059349026530981,0.0072207078337669,0.11028449237347]],[[-0.020842419937253,0.026860089972615,0.019148979336023],[0.0077641448006034,0.041143529117107,0.031352411955595],[0.073560401797295,0.045961737632751,-0.096514299511909]],[[-0.037364654242992,0.10191197693348,0.026470450684428],[0.038720767945051,-0.023456864058971,0.038833729922771],[0.071104042232037,-0.053249467164278,-0.023219861090183]],[[-0.00032355851726606,-0.072515875101089,-0.016486732289195],[0.023867638781667,-0.075794816017151,-0.02137092128396],[-0.018371822312474,0.019512265920639,0.021212175488472]],[[0.053911320865154,0.066747643053532,0.012173453345895],[0.053830552846193,0.077382206916809,-0.05789365246892],[0.071010954678059,0.13454005122185,0.011718267574906]],[[0.0060139265842736,0.053272549062967,0.0531738512218],[0.0054106842726469,0.029905062168837,-0.01173472777009],[0.10520075261593,0.05304791405797,0.034360185265541]],[[-0.043176263570786,0.036690931767225,0.014833207242191],[0.019218100234866,0.13665407896042,0.067623935639858],[0.0098864547908306,0.018595030531287,0.056182023137808]],[[-0.091485433280468,0.05711954087019,-0.15855364501476],[0.05622536316514,-0.019953900948167,-0.028623938560486],[0.03296172618866,0.0033917857799679,-0.0069912988692522]],[[0.050169125199318,0.07054691016674,0.025868115946651],[-0.023836594074965,0.045578099787235,-0.051265981048346],[0.062821790575981,0.074818439781666,-0.052382670342922]],[[0.093620114028454,-0.029645701870322,-0.04661076143384],[0.016467664390802,0.011039226315916,0.034799933433533],[0.00062884739600122,0.020685026422143,-0.066390313208103]],[[0.07130391150713,0.053629599511623,-0.028179612010717],[0.015394506044686,-0.047357313334942,0.072926826775074],[0.049172904342413,-0.072025701403618,0.076804131269455]],[[-0.0067791217006743,-0.035192079842091,0.072537794709206],[-0.065642297267914,-0.011252866126597,-0.031953476369381],[0.057435996830463,0.027680957689881,0.024343671277165]],[[0.034874834120274,0.027688715606928,0.070523545145988],[-0.023770088329911,0.050916872918606,0.018326997756958],[0.00022828695364296,0.044049046933651,0.077908582985401]],[[0.096188716590405,-0.011226611211896,0.13672098517418],[0.022304456681013,-0.02932939492166,-0.010163559578359],[0.085614636540413,-0.088931143283844,-0.014799913391471]],[[0.018426682800055,0.072554759681225,0.064792774617672],[0.033559903502464,0.014415421523154,0.077519588172436],[0.041221179068089,0.020093604922295,0.035296697169542]],[[0.041545774787664,0.088222585618496,-0.055102124810219],[0.062933869659901,0.030049048364162,0.061828080564737],[0.082035176455975,-0.038071062415838,-0.010145434178412]],[[0.014567059464753,0.0051082498393953,-0.054815046489239],[-0.01428709179163,-0.016374165192246,0.020889971405268],[-0.012044254690409,0.032197646796703,0.012500423938036]],[[0.056653864681721,-0.01968789100647,0.0012476136907935],[-0.14523650705814,0.037171609699726,-0.026762798428535],[0.036052856594324,0.07351691275835,0.0028217684011906]],[[0.040753908455372,0.075037106871605,0.062442675232887],[0.039853747934103,0.012590326368809,-0.0049511436372995],[0.010108545422554,0.10365738719702,0.032912865281105]],[[-0.015745274722576,0.032297700643539,-0.049257520586252],[0.030097134411335,-0.026576846837997,0.048857767134905],[0.034694224596024,-0.0036227060481906,0.06572237610817]],[[0.049942366778851,0.028497848659754,0.010911817662418],[0.0070204841904342,0.11326574534178,0.019161319360137],[0.066564500331879,-0.035514015704393,-0.027893071994185]],[[0.059387244284153,0.096867419779301,0.011823518201709],[-0.028286626562476,0.041083600372076,-0.097255706787109],[0.061595521867275,0.0024300706572831,-0.013969992287457]],[[0.089097030460835,0.066237196326256,-0.0025812287349254],[0.07288172096014,-0.0090535851195455,0.049887720495462],[-0.046861134469509,-0.038447786122561,-0.005985667463392]],[[0.014412215910852,0.04137671738863,-0.014835867099464],[0.029727758839726,0.049383416771889,0.012078207917511],[0.024356676265597,0.004465701058507,0.12327744811773]],[[0.060259886085987,0.075025133788586,0.040382731705904],[0.0094779646024108,-0.030792616307735,0.018646761775017],[0.082423910498619,-0.026177685707808,-0.010139358229935]],[[0.032201819121838,-0.015457432717085,0.020470099523664],[-0.039473254233599,0.006888153962791,0.055760432034731],[0.065590441226959,0.040781661868095,0.089387655258179]],[[-0.0015903636813164,0.035352393984795,-0.0055668819695711],[0.0098312832415104,-0.043527450412512,0.012294639833272],[0.027579113841057,0.074112102389336,-0.036619879305363]],[[-0.028271993622184,0.0020450144074857,0.036321058869362],[0.020789001137018,0.023716477677226,0.03499972447753],[0.031647510826588,-0.088845930993557,0.089522399008274]],[[-0.0074996748007834,0.072920434176922,-0.049624051898718],[0.03002811037004,-0.037110317498446,-0.05720091983676],[0.046129554510117,-0.024248912930489,-0.016382658854127]],[[0.038458541035652,0.048663455992937,0.0037959390319884],[-0.087544977664948,0.13713201880455,-0.060883332043886],[0.043157272040844,-0.028497911989689,-0.051406018435955]],[[0.043332494795322,0.053427744656801,0.036634538322687],[0.0098600657656789,-0.012858032248914,-0.040845084935427],[0.039500877261162,0.033985089510679,0.066021472215652]],[[-0.051717139780521,-0.055027615278959,0.068232871592045],[0.02623206935823,0.017151433974504,0.061903771013021],[0.030319195240736,-0.041697151958942,-0.00072251621168107]],[[0.044395223259926,-0.1138100028038,0.024046208709478],[-0.029122196137905,-0.053969703614712,-0.016606146469712],[0.015007130801678,0.01427336037159,0.055944193154573]],[[0.0020880659576505,0.0085388030856848,0.046589363366365],[0.034880593419075,0.10707543045282,0.062079876661301],[-0.031652312725782,0.12930552661419,-0.0047614658251405]],[[-0.073945961892605,0.020588709041476,-0.036038991063833],[-0.0390067063272,-0.017505664378405,0.060221791267395],[-0.00027381940162741,-0.0011444363044575,0.0095929633826017]],[[0.018946330994368,0.040129866451025,0.033804345875978],[-0.0008222195901908,-0.030591202899814,-0.006407022010535],[0.020910812541842,0.0044871447607875,0.012454191222787]],[[0.099617473781109,-0.0054455772042274,0.042438086122274],[0.060889940708876,-0.0057640466839075,-0.0075632864609361],[0.0001538473443361,-0.064869835972786,-0.0002545406750869]],[[-0.053031507879496,0.051350820809603,-0.06019826605916],[0.032510716468096,-0.016438193619251,-0.063921391963959],[-0.023153165355325,0.09017588943243,-0.014352097176015]],[[-0.014362949877977,0.00087420758791268,0.054954137653112],[0.0060842796228826,0.015584132634103,0.020132679492235],[0.0091353794559836,-0.069073803722858,0.055068049579859]],[[0.026906296610832,0.045604076236486,-0.03523226827383],[0.044325839728117,0.046210631728172,0.039361286908388],[0.01337951887399,-0.022229136899114,0.012227292172611]],[[0.006425105035305,0.048962347209454,-0.054601542651653],[-0.001123427413404,-0.015698017552495,0.035540591925383],[0.043385174125433,0.014450730755925,0.052492942661047]],[[0.098782360553741,0.036743324249983,0.011085773818195],[0.072710484266281,-0.041622679680586,0.055640742182732],[0.017601326107979,-0.03968359157443,0.019501246511936]],[[0.01615097373724,0.031209532171488,-0.014553013257682],[0.028571259230375,0.098562777042389,-0.026182889938354],[0.045485064387321,0.053906582295895,0.018819097429514]],[[0.043589234352112,0.07985658198595,-0.039325024932623],[0.069419033825397,0.018521266058087,-0.065201364457607],[0.011495571583509,0.0031294103246182,0.0068971239961684]],[[-0.038050316274166,0.034814693033695,-0.068757109344006],[-0.04607767611742,-0.011777933686972,0.022693557664752],[0.081349797546864,-0.014358970336616,-0.0086689786985517]],[[0.080309897661209,0.11175770312548,-0.053666800260544],[0.092838987708092,0.013248636387289,-0.073034316301346],[-0.010574860498309,0.016829455271363,-0.014762829057872]],[[0.017704229801893,0.0083565358072519,0.027869593352079],[0.015599257312715,-0.00723712798208,-0.031930856406689],[-0.017307221889496,0.047356031835079,-0.051001440733671]],[[0.046984314918518,-0.025539856404066,0.031496033072472],[0.015954250469804,-0.080317594110966,0.046761427074671],[0.013537260703743,-0.0060369991697371,0.030624475330114]],[[0.010440074838698,0.016391258686781,-0.057877130806446],[0.0071897888556123,0.058511286973953,0.080138549208641],[-0.027660328894854,0.00026491036987863,-0.026312511414289]],[[0.010529086925089,-0.0084265302866697,0.073167361319065],[0.058488819748163,0.034123715013266,-0.025346783921123],[0.017808761447668,0.016838824376464,0.0496541634202]],[[-0.0534353479743,0.0043783644214272,0.093087784945965],[0.027985390275717,0.020272377878428,-0.040265578776598],[-0.033303048461676,0.0253198556602,0.0025429481174797]],[[-0.0020507981535047,-0.037699837237597,0.050918456166983],[-0.0054544755257666,0.0031747941393405,0.055950999259949],[-0.04213796928525,0.010877480730414,-0.043457608669996]],[[-0.049546677619219,0.0086875110864639,0.048332314938307],[-0.025515958666801,0.043166507035494,0.0011850913288072],[0.094799421727657,0.033490881323814,-0.057824805378914]],[[-0.065982572734356,0.086231879889965,0.0091839106753469],[0.031192196533084,0.0026135402731597,-0.011770691722631],[-0.10144474357367,-0.033996161073446,0.053090117871761]],[[0.072938874363899,-0.023367438465357,0.092756323516369],[-0.01091097202152,0.070589438080788,-0.013764372095466],[0.0088526047766209,-0.045485809445381,0.0085718203336]],[[-0.090177401900291,0.10798484832048,-0.01389563921839],[-0.0063910847529769,0.056620836257935,-0.036119520664215],[0.059908699244261,0.045035354793072,-0.10308068245649]],[[0.017350994050503,0.053823493421078,-0.030815890058875],[0.014367030002177,-0.040995698422194,-0.09577415138483],[0.028844468295574,0.021107714623213,0.065004907548428]],[[0.0086342608556151,-0.036383487284184,-0.043280690908432],[0.01787893101573,-0.0090557783842087,-0.019191069528461],[0.061751883476973,0.016321050003171,0.024408785626292]],[[0.012101657688618,0.031301256269217,-0.055369582027197],[0.053414050489664,-0.026379877701402,-0.047880835831165],[0.034498903900385,0.037850305438042,0.027252178639174]],[[-0.069003500044346,-0.068982310593128,0.073787681758404],[-0.10505864024162,0.046366646885872,0.11699898540974],[0.034605205059052,-0.0046850936487317,-0.077743537724018]],[[0.0096886651590466,0.023424519225955,-0.027564452961087],[-0.038142822682858,0.011064406484365,-0.0057050017639995],[0.038659367710352,0.019927989691496,0.032228961586952]],[[-0.013578395359218,-0.028265861794353,0.083892680704594],[0.014555376023054,-0.063398197293282,0.05300722271204],[0.037582963705063,0.062472894787788,-0.024437963962555]],[[-0.029166834428906,0.012790613807738,0.073469765484333],[0.049288541078568,-0.020483506843448,0.001360320369713],[0.027871202677488,0.092229343950748,0.017745027318597]],[[0.007199683226645,0.073227621614933,-0.055920850485563],[0.08222958445549,-0.026108233258128,-0.069905750453472],[-0.040723595768213,0.10139591991901,0.022739375010133]],[[0.0011778849875554,0.090077221393585,-0.050883468240499],[-0.019300237298012,-0.083347521722317,-0.069810524582863],[-0.044799860566854,-0.0036135483533144,0.013483833521605]],[[-0.079512819647789,-0.093959875404835,3.5982389817946e-05],[-0.052953511476517,-0.039934169501066,-0.0097819566726685],[0.018552523106337,-0.012100083753467,0.020407404750586]],[[-0.035420838743448,-0.10906288772821,0.072679929435253],[-0.023261528462172,-0.043164577335119,-0.0073613720014691],[-0.081537172198296,-0.012862365692854,-0.055466789752245]],[[-0.011310998350382,0.036487072706223,-0.073397122323513],[0.037070080637932,-0.0435238070786,0.052627395838499],[0.042824991047382,0.030332371592522,-0.061239428818226]],[[0.079190589487553,0.028383819386363,0.03462378680706],[-0.033174756914377,0.013620723038912,-0.047711689025164],[-0.020060596987605,0.016939330846071,-0.045666143298149]],[[0.041016854345798,-0.0211585983634,-0.058426149189472],[-0.032692596316338,-0.051209345459938,0.045726038515568],[0.01114787068218,-0.013925214298069,-0.031394105404615]],[[0.0031902047339827,-0.01159000210464,0.0090985549613833],[-0.048614643514156,-0.0030184814240783,0.073170021176338],[0.055466309189796,-0.0088806124404073,0.024552648887038]],[[-0.041789978742599,-0.065990775823593,-0.020628772675991],[0.021941902115941,-0.06014334782958,0.055101256817579],[0.036905627697706,-0.0034529594704509,-0.0077388384379447]],[[0.029628524556756,-0.018744697794318,0.078487768769264],[-0.024449652060866,0.042756237089634,0.1116226837039],[-0.031190490350127,0.037586841732264,0.086550176143646]],[[-0.010952013544738,-0.087044410407543,-0.0082916403189301],[-0.095060206949711,-0.018609099090099,-0.014810355380177],[0.056530419737101,0.047702983021736,-0.011658960953355]]],[[[-0.033859301358461,0.036661013960838,0.084299698472023],[-0.021586950868368,0.042700957506895,-0.092624872922897],[0.017282597720623,-0.030532473698258,-0.03094320371747]],[[-0.010478870943189,-0.011363322846591,-0.0095458161085844],[0.071434758603573,-0.057937383651733,0.020486986264586],[-0.037645787000656,-0.03234713897109,0.039952870458364]],[[0.011451651342213,-0.054863195866346,-0.017863752320409],[-0.011199651286006,0.023699332028627,0.060115694999695],[-0.066846236586571,0.017826449126005,-0.0058150789700449]],[[0.019770205020905,-0.013034361414611,-0.026719374582171],[0.037760563194752,-0.019152844324708,-0.064307518303394],[0.027011232450604,0.024081246927381,-0.025905823335052]],[[0.02701766602695,-0.0099445022642612,-0.032392811030149],[0.0079490644857287,-0.050577156245708,0.076959721744061],[0.0068525113165379,0.0060151042416692,-0.048468884080648]],[[0.019808925688267,-0.062096551060677,-0.081529870629311],[-0.031828440725803,0.071957804262638,0.044779896736145],[0.0079255122691393,0.024149749428034,-0.036393392831087]],[[-0.00033295789035037,0.0068346438929439,0.0063710282556713],[0.0069918585941195,-0.055105771869421,0.02199263125658],[-0.048236172646284,0.08185688406229,-0.10113145411015]],[[-0.043827056884766,0.04960860311985,-0.027591869235039],[-0.04009622335434,-0.027503816410899,0.059849102050066],[-0.079169854521751,0.011856047436595,0.026876751333475]],[[-0.01823571883142,0.023155612871051,-0.029345648363233],[-0.05509002879262,-0.044933412224054,-0.032616402953863],[-0.063157603144646,-0.048608999699354,0.097309432923794]],[[-0.033201906830072,-0.15882234275341,0.010206514969468],[-0.037681370973587,-0.093061089515686,0.11897554248571],[0.04143238440156,0.071859173476696,-0.086812481284142]],[[-0.040510199964046,0.011390994302928,0.066598981618881],[-0.068217657506466,-0.064248263835907,0.17957045137882],[-0.066537268459797,0.038355104625225,-0.13461595773697]],[[0.0079031502828002,-0.024740004912019,0.045608907938004],[0.020704172551632,0.0034568873234093,0.016924353316426],[-0.069934174418449,0.085679270327091,-0.02054644562304]],[[-0.068585895001888,0.012677590362728,0.0073795751668513],[-0.065189592540264,-0.019366540014744,-0.030460141599178],[-0.024082202464342,0.068737879395485,0.14316715300083]],[[-0.0082496646791697,-0.034981943666935,0.0054802768863738],[0.01380748488009,0.0028993468731642,-0.011605656705797],[-0.051358863711357,0.0035574801731855,0.031836424022913]],[[0.0503143183887,-0.017726311460137,-0.15592251718044],[-0.0095816105604172,0.15271474421024,0.028970645740628],[0.041579823940992,0.034151885658503,0.093518562614918]],[[-0.0094888508319855,-0.067417323589325,0.017793172970414],[-0.08150452375412,0.031851854175329,-0.045344538986683],[-0.0083078490570188,-0.03232492133975,0.035719294101]],[[-0.086232982575893,-0.063699536025524,0.021998327225447],[-0.032593127340078,0.046706855297089,-0.04147644713521],[-0.0040688286535442,-0.046889543533325,0.10809486359358]],[[0.013611674308777,-0.032518368214369,-0.0080594252794981],[-0.085516162216663,0.19896714389324,0.093549728393555],[-0.035448983311653,-0.020700352266431,0.013325454667211]],[[-0.0098610958084464,-0.044393628835678,0.063632994890213],[0.035744123160839,-0.11852230876684,0.046388700604439],[0.03320762142539,-0.094406969845295,0.033731650561094]],[[-0.017570560798049,-0.049422446638346,0.012051069177687],[-0.089250758290291,0.024376586079597,0.048146110028028],[-0.015625268220901,0.0098126986995339,0.010608744807541]],[[-0.085832290351391,0.011826115660369,0.037413999438286],[-0.0068437308073044,-0.044816717505455,-0.094181001186371],[0.058658313006163,-0.074302315711975,-0.067641511559486]],[[-0.1159128472209,-0.024155035614967,-0.10500288754702],[0.0065546706318855,-0.06180827319622,-0.025421716272831],[0.030414737761021,-0.0007338909781538,0.052468046545982]],[[0.027996068820357,0.042241547256708,-0.019981704652309],[-0.070931047201157,-0.036442261189222,-0.10190238058567],[-0.0020293751731515,-0.0081238877028227,-0.01927138864994]],[[-0.039325501769781,-0.04414664208889,-0.030347863212228],[0.02127986587584,-0.045469857752323,-0.0068632471375167],[0.016751920804381,0.059312827885151,-0.065985977649689]],[[-0.0014457746874541,-0.11109599471092,-0.09651854634285],[-0.13383738696575,-0.10173060745001,-0.20296177268028],[-0.1806698590517,-0.071867778897285,-0.067010022699833]],[[-0.020740488544106,0.090311087667942,0.053435105830431],[0.018727298825979,0.042669769376516,-0.037436198443174],[0.03025403432548,-0.004953982308507,0.04148980602622]],[[0.057688027620316,-0.04826345294714,-0.081003271043301],[0.0072753424756229,-0.0025563379749656,0.066667973995209],[0.12339430302382,-0.011144105345011,0.040296718478203]],[[0.026424264535308,0.0020707768853754,0.0054675973951817],[-0.035588175058365,-0.042400974780321,-0.021529017016292],[0.032919280230999,0.028801726177335,0.024054890498519]],[[0.01927911862731,-0.021274954080582,0.0039825798012316],[-0.016338353976607,-0.056298684328794,-0.015447245910764],[-0.0033804641570896,0.054194953292608,-0.07193510979414]],[[0.03854987770319,0.091851226985455,0.041804105043411],[-0.062305312603712,-0.013660804368556,0.06927166134119],[-0.08382485806942,-0.064690247178078,-0.010514272376895]],[[-0.083526469767094,0.010930391959846,0.0060516032390296],[-0.0080620683729649,-0.10141909867525,0.04775569960475],[0.13321700692177,0.011673004366457,-0.029241295531392]],[[-0.013389155268669,0.078423842787743,-0.057884655892849],[0.020228391513228,0.056793075054884,-0.091328114271164],[0.032761443406343,0.011721616610885,0.038441248238087]],[[0.05696153268218,-0.08185838162899,-0.038825616240501],[-0.049696825444698,-0.046197928488255,-0.025908617302775],[0.060805760324001,-0.020513229072094,0.03555266559124]],[[0.036369923502207,-0.034832645207644,-0.076237305998802],[0.087904423475266,-0.0010574950138107,-0.069855369627476],[-0.076456479728222,0.038061734288931,-0.06137078255415]],[[-0.059939362108707,0.0073487590998411,-0.048419259488583],[-0.065545499324799,-0.062278043478727,-0.018813813105226],[-0.066063597798347,0.049635335803032,0.011506690643728]],[[0.016161335632205,0.0080386167392135,0.011842083185911],[-0.078246355056763,0.064785912632942,-0.052330996841192],[-0.045067526400089,0.070642225444317,-0.021023321896791]],[[0.0029241908341646,-0.0045827394351363,0.050152026116848],[0.0040694889612496,0.020973173901439,0.11168751865625],[0.049089659005404,-0.092430591583252,-0.12832859158516]],[[0.0023032801691443,-0.021368598565459,-0.019998662173748],[0.062981933355331,0.036208160221577,-0.12871140241623],[0.0085999453440309,-0.087733693420887,0.037182681262493]],[[0.036721352487803,0.018438439816236,-0.0224827863276],[0.011578840203583,0.060955606400967,0.042469706386328],[0.0015183032955974,0.045801542699337,-0.0019311954965815]],[[-0.027665786445141,0.074258923530579,-0.089218750596046],[0.026456568390131,-0.017874365672469,0.043521296232939],[0.047763545066118,0.017779542133212,-0.071711704134941]],[[-0.034678116440773,0.045750468969345,-0.061251509934664],[0.023156363517046,0.02121371217072,0.12079627811909],[0.028611585497856,-0.052714098244905,-0.03173104673624]],[[0.0065058493055403,-0.019831778481603,0.0074671865440905],[0.013981859199703,0.01190546900034,-0.03508347645402],[0.018656158819795,0.059516556560993,0.024957917630672]],[[0.060885906219482,-0.046999409794807,-0.050692245364189],[0.025838313624263,-0.025992158800364,-0.088813602924347],[-0.0018812986090779,0.033917330205441,-0.0064451131038368]],[[0.030884884297848,0.0035131247714162,0.042959079146385],[0.024182165041566,0.067065075039864,-0.10127431899309],[-0.0076921638101339,0.086356088519096,0.025955969467759]],[[0.04583877697587,0.05065606534481,-0.001568402745761],[0.12888161838055,0.030178807675838,-0.040766261518002],[-0.11670494824648,-0.081686921417713,0.088516630232334]],[[0.05192731693387,-0.08240719139576,-0.090980917215347],[0.045858785510063,0.0087651237845421,0.10810565203428],[0.0077322190627456,0.074192702770233,0.0093859834596515]],[[0.091414712369442,0.092859953641891,0.032816249877214],[0.025903912261128,-0.053333584219217,0.042883101850748],[0.042753245681524,-0.053302455693483,0.0049830307252705]],[[0.083821438252926,-0.16357620060444,0.023151095956564],[-0.16941244900227,0.019863244146109,-0.16340273618698],[0.013276423327625,-0.035437069833279,0.079938843846321]],[[-0.036407481878996,-0.051708452403545,0.11543021351099],[-0.099992737174034,0.11802320927382,-0.076208844780922],[-0.080358877778053,-0.050091911107302,-0.059331197291613]],[[0.010822325013578,0.021903917193413,-0.068075388669968],[0.044122874736786,-0.037163261324167,0.0036738405469805],[0.041185412555933,-0.038599424064159,-0.10432403534651]],[[-0.011478303931653,0.0073256865143776,-0.056287635117769],[-0.013050730340183,-0.0090168081223965,0.021611304953694],[0.034008830785751,-0.016666878014803,0.065151192247868]],[[0.023206362500787,-0.05716921761632,0.030974874272943],[0.051652081310749,-0.013407662510872,-0.047673847526312],[0.026933507993817,0.010199385695159,0.021218586713076]],[[-0.018357796594501,0.033082481473684,0.071707889437675],[0.021671114489436,0.057150222361088,-0.037599168717861],[-0.0096598286181688,0.055961575359106,0.019931079819798]],[[-0.0018812108319253,0.014952803961933,0.067539259791374],[0.050260312855244,-0.12228744477034,-0.070446595549583],[-0.047873884439468,-0.016905011609197,-0.014786256477237]],[[-0.088432818651199,-0.04735491424799,-0.030082812532783],[-0.016827085986733,0.016512816771865,-0.057392116636038],[-0.014588023535907,-0.013362274505198,0.011191995814443]],[[0.023593200370669,0.044494796544313,-0.084024101495743],[0.0015797772211954,0.039064571261406,0.064172402024269],[-0.031370688229799,0.05471433699131,-0.035931028425694]],[[-0.029500670731068,-0.099183186888695,0.067380137741566],[0.0074729574844241,-0.029574751853943,-0.053491648286581],[-0.093294568359852,0.0081032998859882,-0.013103984296322]],[[-0.028457492589951,0.030898904427886,0.10019431263208],[0.029433693736792,-0.062781490385532,-0.039127122610807],[0.0037065274082124,-0.017908904701471,-0.00091633817646652]],[[0.038818199187517,-0.0036052863579243,-0.03529979288578],[0.070941090583801,-0.027275666594505,0.11375501006842],[0.057179767638445,0.028144551441073,-0.14274248480797]],[[-0.070610463619232,0.084589779376984,-0.032345172017813],[-0.024881780147552,0.015693804249167,-0.071022979915142],[0.0077778068371117,-0.03013838082552,0.086254917085171]],[[0.010484642349184,0.038962036371231,-0.03014225512743],[-0.0049139996990561,-0.013110339641571,0.15413641929626],[-0.0065480680204928,0.14469191431999,-0.068083681166172]],[[0.030041085556149,-0.040719099342823,0.040913805365562],[-0.024785852059722,0.061894215643406,-0.0093380808830261],[0.0046605886891484,-0.025289313867688,-0.062163274735212]],[[-0.0072239995934069,-0.019501442089677,0.00038474897155538],[0.019577672705054,-0.12163942307234,0.034509126096964],[0.042721588164568,0.036731466650963,-0.15791024267673]],[[-0.059469066560268,-0.021280866116285,-0.15436960756779],[0.033259470015764,-0.015792557969689,-0.062424652278423],[0.040558651089668,-0.064193293452263,0.051813818514347]],[[0.057049844413996,-0.0083328848704696,-0.051151130348444],[0.04905566945672,0.0054797362536192,-0.090132713317871],[0.056645590811968,0.0043853176757693,-0.056943591684103]],[[-0.048211801797152,0.0049925511702895,0.079847052693367],[0.066934749484062,0.018636897206306,-0.034528002142906],[0.0098184086382389,0.024125769734383,0.050670802593231]],[[0.016242302954197,-0.053201999515295,-0.0027288780547678],[0.080290980637074,-0.033732399344444,-0.014993448741734],[-0.043262392282486,-0.0096848104149103,0.019466729834676]],[[0.037934999912977,0.057131942361593,0.061996337026358],[0.026163075119257,0.077400632202625,-0.089242994785309],[-0.045976914465427,0.055105414241552,0.12956790626049]],[[-0.039452716708183,0.087969519197941,0.0033206876832992],[0.066842779517174,-0.028674703091383,-0.021978927776217],[0.1199968084693,0.0083413468673825,-0.066201187670231]],[[-0.008147613145411,-0.028815409168601,-0.033234816044569],[-0.02671230956912,0.023197334259748,-0.052938092499971],[-0.0054278858006001,0.064021892845631,-0.034517072141171]],[[0.042148970067501,-0.037810269743204,-0.062827557325363],[-0.020863305777311,-0.043959453701973,-0.045682150870562],[-0.014068500138819,-0.034244637936354,-0.028564747422934]],[[-0.025638855993748,0.067947752773762,0.020766049623489],[0.030399167910218,-0.11578803509474,0.16376386582851],[-0.045616090297699,0.019803604111075,-0.034918773919344]],[[-0.046519551426172,-0.041752133518457,-0.030035704374313],[-0.012978211976588,-0.053438607603312,0.069926753640175],[0.035428371280432,-0.12332326173782,-0.00057021726388484]],[[-0.033018000423908,-0.037951182574034,-0.0055129583925009],[0.0076518505811691,-0.027864759787917,-0.037919763475657],[0.025267466902733,0.028560265898705,-0.013688686303794]],[[0.050379496067762,-0.0014145390596241,0.020432053133845],[-0.029736258089542,0.06038661301136,-0.09526052325964],[0.0040439958684146,0.030616700649261,-0.017055718228221]],[[0.014429627917707,0.036849144846201,0.0086744492873549],[-0.018864661455154,0.00052191352006048,0.042254410684109],[0.038836102932692,-0.1200150474906,-0.023050770163536]],[[0.027852479368448,0.0094027547165751,-0.034710817039013],[0.048755459487438,0.02888423576951,0.00092979235341772],[0.092575222253799,0.084171667695045,0.013111037202179]],[[0.014706423506141,-0.054632697254419,-0.0011575620155782],[-0.083325751125813,-0.037928875535727,-0.032172217965126],[-0.045737203210592,-0.020102720707655,0.086288645863533]],[[-0.094562560319901,0.022452926263213,0.059726014733315],[0.038261797279119,-0.038764089345932,0.097701698541641],[-0.033963430672884,0.023578664287925,-0.045041900128126]],[[9.906459308695e-05,-0.0058938036672771,-0.034375578165054],[-0.044587608426809,-0.075461804866791,0.052492048591375],[0.033071536570787,-0.024125818163157,-0.013594322837889]],[[0.039684176445007,0.0043364600278437,0.019231844693422],[0.041620809584856,0.060729574412107,-0.019829113036394],[0.025624865666032,0.07007547467947,0.0035398611798882]],[[-0.06457294523716,0.019623221829534,-0.010920115746558],[0.020447384566069,-0.034749247133732,-0.028780037537217],[0.029025642201304,0.03589928150177,-0.03658377751708]],[[-0.083972617983818,0.070787370204926,-0.10127804428339],[0.063082464039326,-0.10112342983484,-0.039244469255209],[-0.052896473556757,-0.023338530212641,-0.10304626822472]],[[-0.047875318676233,-0.010211680084467,0.090376868844032],[0.023688919842243,0.051581420004368,0.095187731087208],[-0.024008356034756,-0.034902762621641,-0.0082426173612475]],[[0.03081901371479,0.032016988843679,0.068363696336746],[0.047936733812094,0.060565274208784,0.016087505966425],[-0.1126958206296,-0.018929412588477,0.038838695734739]],[[0.00650579854846,0.010625249706209,-0.097447052598],[0.00070351629983634,-0.013811097480357,0.053683716803789],[0.055659472942352,-0.065892994403839,-0.0050200154073536]],[[0.013459710404277,-0.031733702868223,-0.11536132544279],[0.017116514965892,0.088115341961384,0.021433904767036],[-0.060623396188021,0.11446776241064,-0.033668287098408]],[[-0.068811431527138,-0.002766064601019,0.036976139992476],[0.010614164173603,-0.05319356918335,0.06996164470911],[-0.054541800171137,0.094314947724342,0.024196095764637]],[[0.0072749936953187,0.00099731748923659,-0.063520155847073],[-0.023358447477221,0.015846638008952,0.1517158895731],[-0.071302525699139,0.029397409409285,0.072915829718113]],[[-0.017991367727518,-0.019528031349182,0.034525509923697],[-0.066513292491436,0.11244102567434,-0.015882454812527],[-0.099936991930008,-0.030917201191187,0.069799587130547]],[[-0.012140076607466,0.068934500217438,-0.068157516419888],[0.083329752087593,-0.1027871593833,-0.025306893512607],[0.045764345675707,-0.01281161326915,0.085163570940495]],[[0.014447669498622,0.0050033279694617,0.029046041890979],[-0.005835032556206,0.01098602078855,0.082295425236225],[-0.053046278655529,0.063852421939373,0.026083858683705]],[[0.041113961488008,0.0066557480022311,-0.0052111367695034],[0.018537851050496,-0.055821537971497,-0.016645943745971],[0.090986497700214,0.027955943718553,-0.036879759281874]],[[0.0034162930678576,-0.030659085139632,0.025478171184659],[0.033046748489141,-0.022031584754586,-0.068415507674217],[0.058568421751261,-0.034586068242788,-0.032630536705256]],[[-0.015131120570004,-0.059534005820751,-0.11764866113663],[-0.046991318464279,0.0055624339729548,-0.076541088521481],[0.0096818497404456,-0.033399742096663,0.122946575284]],[[-0.06938948482275,0.019243784248829,-0.063446171581745],[-0.069439500570297,0.025347918272018,0.0045689628459513],[-0.056581731885672,0.050614900887012,-0.033240087330341]],[[-0.036496721208096,0.016614953055978,0.015220804139972],[-0.084767758846283,0.052465457469225,0.11440594494343],[-0.080701269209385,-0.012327319011092,-0.077269315719604]],[[-0.040264546871185,-0.019935257732868,-0.03347722068429],[0.019762611016631,-0.086966641247272,0.020190201699734],[-0.0060028024017811,0.013722779229283,-0.048145461827517]],[[-0.083625860512257,0.024121688678861,0.087897688150406],[0.02610869705677,-0.099990494549274,-0.059409119188786],[0.094287931919098,0.028895948082209,-0.045651745051146]],[[-0.11911629885435,-0.034222573041916,-0.00521454308182],[0.076433278620243,0.029172712936997,-0.077734664082527],[0.068262159824371,-0.038733333349228,-0.012062145397067]],[[-0.028109448030591,-0.027658101171255,-0.0021550732199103],[-0.077655516564846,-0.036244038492441,0.077604472637177],[-0.012356746010482,-0.064253188669682,-0.017774721607566]],[[-0.085556596517563,-0.046183384954929,0.025355983525515],[0.014021405018866,-0.031229954212904,-0.067052833735943],[-0.025235453620553,0.038450181484222,0.063237600028515]],[[0.032029066234827,-0.016157284379005,-0.0037577929906547],[-0.005897899158299,-0.009221869520843,0.0085878176614642],[0.062097109854221,-0.020557953044772,-0.10358454287052]],[[0.023395832628012,0.051018178462982,-0.020895812660456],[0.060736529529095,0.03809878975153,-0.018950846046209],[0.091177016496658,-0.044128946959972,0.029528638347983]],[[-0.02670638076961,-0.1637227088213,-0.038685478270054],[-0.0087736453860998,0.13476428389549,-0.019462218508124],[-0.011649527586997,0.037555828690529,0.010637318715453]],[[-0.052751075476408,-0.011519635096192,-0.0017540858825669],[-0.019469005987048,0.0035894270986319,-0.029482590034604],[0.008886213414371,0.068143486976624,0.061792049556971]],[[-0.027352053672075,0.076193690299988,0.0035608059260994],[-0.028561716899276,-0.045143693685532,0.20992384850979],[0.07313884049654,0.057664211839437,-0.084918826818466]],[[-0.028198348358274,0.027514837682247,0.01842974498868],[-0.010938977822661,-0.03915923833847,-0.0066683101467788],[-0.002537352964282,-0.053998611867428,-0.024026731029153]],[[-0.014896439388394,-0.042169101536274,0.0028235698118806],[-0.060004539787769,-0.086839631199837,-0.098238252103329],[-0.022911550477147,-0.091298066079617,-0.029564041644335]],[[0.0094808964058757,-0.043407294899225,0.023984901607037],[0.018237827345729,-0.021181022748351,-0.040734589099884],[0.040389344096184,0.0028806226328015,-0.0013980846852064]],[[-0.011309202760458,-0.014449606649578,-0.021254414692521],[-0.043474555015564,-0.011107956059277,0.007108477409929],[0.0033752117305994,0.012935223989189,-0.036579210311174]],[[0.0035526899155229,-0.062372088432312,-0.0927629545331],[-0.045736838132143,-0.020033905282617,0.030019553378224],[0.025186961516738,0.014852047897875,0.0061375615186989]],[[0.043514188379049,-0.014804049395025,-0.098218619823456],[-0.026281736791134,0.050650075078011,-0.075047455728054],[0.069352060556412,-0.032567027956247,0.016591621562839]],[[0.0018844505539164,0.024830309674144,0.015432587824762],[0.040578421205282,-0.025797786191106,-0.075579255819321],[-0.015832874923944,-0.0018422983121127,0.016668548807502]],[[-0.0045612496323884,-0.032207369804382,0.054921541363001],[-0.070188216865063,-0.084451459348202,-0.029486311599612],[-0.025132980197668,-0.066424906253815,-0.0091793276369572]],[[0.041361879557371,0.074023224413395,-0.012814899906516],[0.065923683345318,-0.052811354398727,0.051973473280668],[0.0018216654425487,0.011424275115132,-0.049298357218504]],[[-0.052748844027519,-0.05420296639204,0.02335362508893],[-0.1302404999733,0.02067138813436,-0.042556498199701],[-0.045671287924051,-0.05461635440588,-0.057519633322954]],[[0.0097746290266514,-0.11006835103035,0.071985453367233],[0.022932918742299,-0.18126380443573,-0.079860404133797],[0.0020176728721708,0.030179230496287,-0.029332214966416]],[[-0.0011510823387653,0.020584339275956,-0.016451703384519],[0.0077310781925917,-0.045399643480778,-0.00058623461518437],[-0.047228567302227,-0.036543074995279,0.037209093570709]],[[0.083588436245918,0.0072085703723133,0.063025012612343],[0.04988757148385,-0.11121365427971,0.1403774023056],[0.030272180214524,-0.0052555538713932,-0.010904964059591]],[[-0.026893144473433,0.050298880785704,0.056697256863117],[-0.020520204678178,0.0011221856111661,0.014077057130635],[-0.072897389531136,-0.036271814256907,0.026330335065722]],[[-0.04675791785121,-0.018261946737766,-0.096083447337151],[-0.037400972098112,-0.044452164322138,-0.085711240768433],[-0.012823458760977,0.0037261638790369,-0.016066696494818]],[[0.017133248969913,-0.057920757681131,-0.068381331861019],[-0.024568194523454,-0.035001989454031,-0.13330416381359],[0.059673570096493,0.048826266080141,0.025014074519277]],[[-0.022799571976066,0.015386868268251,0.019340706989169],[-0.01214150711894,-0.0082689179107547,0.081658147275448],[-0.0027248549740762,-0.0035827562678605,-0.038720816373825]],[[0.10802606493235,0.028070215135813,0.030940609052777],[0.004803420510143,0.02238492667675,-0.087791241705418],[-0.057255420833826,-0.003275471739471,0.046573080122471]],[[-0.045193903148174,-0.011009738780558,-0.011923484504223],[-0.019972190260887,-0.042611103504896,0.024852141737938],[0.021376179531217,0.032801151275635,0.040584482252598]],[[-0.011997713707387,-0.025522435083985,-0.031087018549442],[-0.029749855399132,0.01796649582684,0.083155199885368],[-0.03089202195406,-0.042701933532953,0.071428284049034]],[[-0.035317543894053,-0.06008343026042,0.0065879169851542],[-0.02648076787591,0.0076553830876946,-0.0016718079568818],[-0.056363381445408,0.053773690015078,-0.023293783888221]]],[[[-0.039891015738249,-0.017263293266296,0.076491415500641],[-0.014841720461845,-0.0026519841048867,0.018619054928422],[0.046160645782948,0.032172650098801,-0.049776758998632]],[[-0.020050736144185,-0.021160529926419,-0.037804558873177],[-0.02887555398047,0.093693427741528,-0.075896605849266],[-0.034791480749846,0.040996920317411,-0.018654629588127]],[[-0.13719756901264,0.040549967437983,0.31142130494118],[-0.062507964670658,-0.11024752259254,-0.065347567200661],[0.011295939795673,-0.1285365074873,-0.13907527923584]],[[0.015463178046048,-0.032942712306976,0.016855826601386],[0.00020777188183274,-0.094965413212776,0.03997340798378],[0.036824479699135,-0.033371157944202,-0.019843529909849]],[[-0.0012943090405315,0.022936161607504,-0.053741287440062],[0.024580603465438,-0.017522785812616,0.071980476379395],[0.017437333241105,0.041659075766802,0.015355854295194]],[[0.0062223155982792,0.029566332697868,0.08275793492794],[0.082341827452183,0.011866971850395,0.019611390307546],[0.024238627403975,0.062809191644192,0.055467583239079]],[[-0.039251375943422,-0.084131389856339,0.11922088265419],[-0.052323676645756,-0.085152693092823,-0.033284086734056],[-0.060259763151407,0.02099365927279,-0.06867391616106]],[[-0.022095058113337,0.0095873391255736,-0.048038564622402],[-0.022111667320132,-0.039352707564831,0.043141175061464],[0.025802100077271,0.058107513934374,0.056317929178476]],[[-0.029577732086182,0.037579640746117,0.024043325334787],[-0.0072365310043097,-0.032803516834974,0.040682703256607],[0.025482453405857,-0.073970377445221,0.0050798440352082]],[[0.11778146773577,0.02297998778522,0.047797046601772],[0.049534793943167,-0.016876585781574,-0.053052172064781],[-0.090075708925724,0.0070899841375649,-0.0031979556661099]],[[0.031597148627043,-0.005831724498421,0.074709691107273],[0.07836639881134,0.091712161898613,0.10139443725348],[0.018796930089593,0.054602358490229,-0.0039816447533667]],[[-0.020270550623536,0.023727271705866,0.078116878867149],[0.04553497582674,-0.021846229210496,0.04932214319706],[-0.014055959880352,0.03491560742259,-0.019613767042756]],[[0.010528767481446,0.028587702661753,0.029742879793048],[0.053488403558731,0.077032960951328,-0.027405504137278],[0.03078019618988,0.036451235413551,0.047786522656679]],[[-0.056841433048248,0.079736590385437,0.097206391394138],[0.041411440819502,-0.079559706151485,0.09521484375],[-0.01030638627708,-0.036899302154779,0.015632817521691]],[[0.057518839836121,-0.014273770153522,-0.033143367618322],[0.041342832148075,-0.031986009329557,0.12126912176609],[0.063761591911316,-0.016224915161729,-0.069985821843147]],[[-0.07220197468996,-0.05397105962038,0.021712569519877],[0.1160671338439,-0.073593251407146,0.008089492097497],[-0.0041778874583542,0.011306576430798,-0.073605731129646]],[[0.040998183190823,-0.11725956946611,-0.16237980127335],[0.12558761239052,0.037635874003172,0.026913847774267],[0.030826417729259,0.05559303611517,-0.0030266279354692]],[[-0.027096668258309,-0.085514239966869,-0.054904751479626],[-0.053553882986307,-0.045743402093649,-0.033176507800817],[0.016952320933342,0.10398649424314,0.0043265339918435]],[[-0.038477148860693,-0.03328549861908,-0.13519835472107],[0.018162725493312,-0.040557455271482,-0.074614740908146],[0.19554594159126,0.061380289494991,-0.019738499075174]],[[-0.052100650966167,0.024221289902925,-0.021232752129436],[-0.012246570549905,-0.060151036828756,-0.034674655646086],[-0.015068406239152,0.083794496953487,0.061617091298103]],[[-0.027596583589911,0.018179327249527,0.13857583701611],[0.066740199923515,-0.015199011191726,0.036772951483727],[0.009268943220377,0.018666600808501,-0.055639822036028]],[[0.082970201969147,0.037540212273598,0.085768990218639],[-0.0045952661894262,0.11581087112427,0.11088920384645],[0.050463832914829,-0.026825146749616,0.061126682907343]],[[0.0099132647737861,-0.088997647166252,-0.13452945649624],[-0.012901600450277,-0.087617017328739,0.040435776114464],[-0.077354095876217,0.00014255418500397,-0.018563034012914]],[[0.0070442967116833,0.032154124230146,-0.098489373922348],[0.071274936199188,0.029572485014796,0.071420803666115],[-0.02004493586719,-0.014797776006162,-0.040179014205933]],[[-0.0051636304706335,-0.08200640976429,-0.037402521818876],[-0.023820212110877,-0.0059815961867571,-0.0067986552603543],[-0.021862555295229,0.022509079426527,-0.047370806336403]],[[0.1916619092226,0.099536553025246,0.038706988096237],[0.062888421118259,0.079404287040234,0.053551990538836],[-0.11395705491304,0.016381440684199,0.07795200496912]],[[0.012659178115427,-0.056559421122074,0.12913437187672],[-0.0021208899561316,-0.084731258451939,-0.066395625472069],[-0.015122591517866,0.046543437987566,-0.091739572584629]],[[0.042674653232098,-0.072459042072296,-0.055980529636145],[-0.0042013567872345,0.036892183125019,-0.0016214131610468],[0.027076561003923,-0.11623461544514,0.0039658616296947]],[[-0.01401287689805,-0.043590907007456,0.018786689266562],[-0.069940894842148,0.045219965279102,-0.035218995064497],[0.0846958309412,0.01878735050559,0.1196007207036]],[[0.030708791688085,-0.058609567582607,0.029933968558908],[0.09160140901804,-0.063494168221951,0.015256288461387],[0.069739155471325,0.0070036137476563,0.0428696423769]],[[-0.013291074894369,0.042614378035069,0.01396656781435],[0.046518474817276,-0.0097462376579642,-0.016731245443225],[-0.25713402032852,0.0057838391512632,-0.0072977868840098]],[[-0.071552589535713,0.041058525443077,0.0091739017516375],[0.12297331541777,-0.023169420659542,0.0010362057946622],[-0.058072172105312,0.1597948372364,-0.098615176975727]],[[-0.0069678211584687,0.037288095802069,0.03701451420784],[-0.0011044880375266,0.027245238423347,-0.028454717248678],[-0.099796466529369,-0.003580673597753,-0.015662545338273]],[[0.019132990390062,0.073110602796078,-0.11692886054516],[-0.065110921859741,0.068809747695923,0.015609089285135],[-0.061723824590445,0.0069225337356329,0.044839508831501]],[[-0.023137288168073,0.076310746371746,-0.048423383384943],[-0.022519676014781,-0.051509004086256,0.0089663462713361],[0.012154206633568,0.01872237958014,-0.11588445305824]],[[0.080417118966579,-0.047641012817621,0.022924216464162],[0.06994403898716,0.034439507871866,-0.027015751227736],[-0.079846955835819,-0.1121187582612,0.04819443449378]],[[-0.037129398435354,-0.13223458826542,-0.044961716979742],[0.0031433145049959,0.0075839571654797,-0.02075326628983],[0.015712291002274,0.018215576186776,-0.065241418778896]],[[-0.047221057116985,0.067601799964905,0.0055421181023121],[0.010186155326664,0.023938918486238,-0.08496530354023],[-0.096602648496628,0.035736635327339,-0.034567635506392]],[[-0.13121983408928,-0.13189916312695,-0.044277042150497],[0.087512344121933,0.052024252712727,-0.032584942877293],[0.066095814108849,0.056090675294399,0.028713960200548]],[[-0.033231437206268,0.15341863036156,-0.10669829696417],[-0.098350629210472,-0.042835146188736,0.11604182422161],[-0.089256227016449,-0.095980748534203,-0.0038666564505547]],[[0.14356544613838,0.1440632045269,0.17011371254921],[0.1274308860302,0.078864216804504,0.20448078215122],[-0.0013644394930452,0.1080139875412,-0.083631977438927]],[[0.11803782731295,0.16453030705452,0.17256450653076],[0.013841076754034,0.1124707236886,0.14755968749523],[0.011849493719637,-0.16449044644833,0.022806232795119]],[[0.07423473149538,0.033086929470301,-0.037531472742558],[-0.028959197923541,-0.010898966342211,0.042864549905062],[-0.044545657932758,-0.008644818328321,0.078060284256935]],[[0.10000346601009,0.028909971937537,0.010295357555151],[0.10448636114597,0.0600949190557,0.04006177932024],[-0.029655598104,-0.048260379582644,0.20252066850662]],[[0.064876049757004,-0.10887644439936,0.031595662236214],[-0.057130206376314,-0.0077455323189497,0.017271917313337],[0.2294520586729,-0.091602258384228,-0.062594883143902]],[[0.018926085904241,-0.0051210820674896,0.054373670369387],[-0.11689714342356,-0.03697707131505,0.0087633980438113],[0.089673295617104,-0.058310240507126,-0.020387975499034]],[[-0.0074946819804609,0.14288608729839,0.065904140472412],[-0.069380551576614,-0.070122763514519,0.20813223719597],[-0.062844812870026,-0.06854236125946,-0.17613607645035]],[[-0.116838991642,0.10665362328291,0.028992375358939],[0.024747628718615,0.021506970748305,-0.059594105929136],[-0.067878291010857,0.0630804002285,-0.012268007732928]],[[0.069055423140526,-0.066074937582016,0.074785463511944],[0.034246936440468,-0.01821087859571,-0.059845950454473],[-0.012071672827005,0.0077001876197755,-0.0036910769995302]],[[-0.035899009555578,-0.10935133695602,-0.076637864112854],[-0.00066098436946049,0.02911869622767,0.0093109952285886],[0.05443723872304,-0.091835767030716,0.021382663398981]],[[0.14603547751904,0.071186125278473,-0.07265780121088],[0.068647906184196,0.17337177693844,-0.023310331627727],[-0.079935036599636,-0.083908222615719,-0.053167037665844]],[[0.0076791420578957,0.10337565094233,0.052891090512276],[-0.0074978289194405,-0.029517574235797,0.035199154168367],[0.018189951777458,-0.0021448160987347,0.0067845284938812]],[[-0.075121030211449,-0.11975955218077,-0.056347317993641],[-0.011467695236206,-0.092578776180744,-0.02485772781074],[-0.068058080971241,-0.069635838270187,-0.002748767612502]],[[0.03380448743701,0.10889170318842,-0.047853849828243],[0.024558082222939,0.038934163749218,0.027190558612347],[0.052669633179903,-0.09574955701828,-0.012385975569487]],[[-0.016466965898871,-0.024349143728614,-0.061654169112444],[0.043669436126947,0.043046332895756,0.019559528678656],[0.047033526003361,0.020245894789696,-0.021443700417876]],[[-0.0080829877406359,0.1203630194068,0.31460720300674],[0.2343660145998,-0.031625926494598,0.25607714056969],[0.13718523085117,0.10831231623888,0.083799593150616]],[[0.037817720323801,-0.034460712224245,0.059682685881853],[-0.010802939534187,0.0087122023105621,0.034833174198866],[0.038119360804558,0.053358312696218,-0.067338682711124]],[[-0.15450820326805,-0.088063083589077,0.242939427495],[-0.06460103392601,-0.3228397667408,-0.2868744134903],[0.025152198970318,-0.011419251561165,-0.046895325183868]],[[-0.44590100646019,0.0038395079318434,-0.0048213973641396],[0.15116485953331,-0.17898048460484,0.0031187967397273],[-0.020010910928249,0.42762413620949,-0.30180016160011]],[[0.10250184684992,-0.010576658882201,0.0049961474724114],[-0.042640928179026,0.13415324687958,-0.022756287828088],[-0.072818741202354,0.0092065064236522,0.050540454685688]],[[-0.17753832042217,-0.039510983973742,0.051017202436924],[-0.048786487430334,-0.054232768714428,0.042589839547873],[0.12348607182503,0.083724834024906,-0.011993474327028]],[[0.10456398874521,-0.0018760091625154,-0.020706655457616],[0.043195873498917,0.016541358083487,0.13859716057777],[-0.0019346749177203,-0.089521504938602,0.10915169119835]],[[0.038247331976891,0.05642931163311,0.29537543654442],[0.034485120326281,-0.16691467165947,-0.017304675653577],[-0.17468971014023,0.13418261706829,-0.041213318705559]],[[-0.005595984403044,0.023772947490215,-0.009752307087183],[0.0044110924936831,0.058633569628,-0.051505133509636],[0.042308069765568,0.10714392364025,0.023267697542906]],[[0.0005945474258624,0.057876165956259,0.085638470947742],[0.12032728642225,-0.15063571929932,-0.077657535672188],[-0.13186091184616,0.20455612242222,-0.040956348180771]],[[-0.080766208469868,-0.0088192662224174,0.13193370401859],[-0.03697494789958,-0.0066343247890472,-0.039897263050079],[0.054156847298145,-0.11764704436064,0.0091056115925312]],[[0.016799386590719,0.01387345045805,-0.087875828146935],[0.082614578306675,0.038838416337967,-0.019451957195997],[0.021806459873915,0.020783046260476,0.073540389537811]],[[-0.10735829174519,-0.033659163862467,-0.071365930140018],[0.032032366842031,0.093187846243382,-0.0023063377011567],[0.0093770353123546,0.10593304783106,0.023088967427611]],[[0.025391126051545,-0.065631575882435,0.056995078921318],[0.0087084537371993,0.028180265799165,-0.089281633496284],[0.0072662835009396,-0.019249401986599,0.039067134261131]],[[0.066730879247189,-0.031444303691387,-0.076922379434109],[0.039268590509892,0.057176645845175,0.0071124122478068],[-0.021196370944381,0.047710064798594,0.019857183098793]],[[-0.096593990921974,-0.16844765841961,-0.12514658272266],[-0.053514577448368,-0.066022105515003,-0.21995936334133],[-0.063142813742161,-0.036051411181688,-0.063744455575943]],[[0.018515938892961,0.01944193802774,0.089420072734356],[-0.072061538696289,-0.029259815812111,0.0098652243614197],[-0.01711343601346,-0.0043185437098145,-0.038656506687403]],[[0.16577500104904,0.17951321601868,0.055295318365097],[0.047014366835356,0.19304789602757,0.24656638503075],[0.073472879827023,0.093965768814087,0.14332170784473]],[[0.084503181278706,-0.037210538983345,-0.030914509668946],[0.020829221233726,0.10400757938623,0.03265742957592],[-0.067361287772655,-0.056881088763475,-0.095773696899414]],[[-0.11366635560989,-0.13642747700214,-0.018376784399152],[0.028498547151685,-0.019961338490248,-0.10989420861006],[-0.0086981458589435,0.13861554861069,0.057550393044949]],[[0.061073318123817,-0.1021735817194,-0.11382768303156],[0.074123777449131,0.074307590723038,-0.038964886218309],[-0.056989215314388,0.025373270735145,0.0070840390399098]],[[-0.071817092597485,0.010493617504835,0.057494770735502],[-0.021970922127366,0.03003161214292,0.052860986441374],[-0.049844160676003,0.070993639528751,0.015317664481699]],[[0.0036739660426974,0.032488949596882,0.029696026816964],[0.078708596527576,0.077959485352039,-0.0075868731364608],[0.013027758337557,0.02714004740119,0.075274392962456]],[[-0.04451297596097,0.039321683347225,-0.041369836777449],[-0.059903487563133,0.0045828321017325,-0.037001021206379],[-0.043365482240915,0.052741382271051,-0.0034192625898868]],[[-0.036041136831045,0.047111328691244,-0.0253840778023],[-0.0024651971179992,-0.029169492423534,-0.0042335856705904],[-0.060218967497349,-0.019157722592354,-0.057732801884413]],[[0.17534416913986,-0.060091305524111,0.11865876615047],[-0.10694024711847,0.12427006661892,0.14963449537754],[-0.12219235301018,-0.028524620458484,0.046735789626837]],[[-0.06560979783535,-0.01810217089951,0.0019496432505548],[-0.020823506638408,0.071703307330608,-0.067210145294666],[-0.049774281680584,0.016145566478372,0.17341282963753]],[[0.093596212565899,0.09303617477417,-0.045042499899864],[0.0040320567786694,0.13254937529564,0.083885796368122],[0.04003294184804,-0.048043482005596,0.10087725520134]],[[-0.020401289686561,-0.027780376374722,0.093036733567715],[-0.012356796301901,0.051144644618034,-0.039765685796738],[0.11476142704487,0.019098093733191,-0.0056849201209843]],[[-0.068904384970665,-0.031216878443956,-0.11876012384892],[0.026374310255051,-0.0073271011933684,0.060526639223099],[-0.006730433087796,-0.060989499092102,0.016663987189531]],[[0.057428732514381,0.11641180515289,-0.034143939614296],[0.014600179158151,-0.028524344787002,0.054567039012909],[0.0064965724013746,-0.097460269927979,0.016718151047826]],[[0.073013544082642,-0.12220255285501,-0.035960286855698],[0.028723990544677,0.013831175863743,-0.062566570937634],[0.046578854322433,-0.018712371587753,0.045455500483513]],[[-8.0537727626506e-05,0.035674802958965,0.0068058473989367],[0.03857633844018,0.057991433888674,-0.047751903533936],[0.050700563937426,0.040803603827953,0.079252570867538]],[[0.041991539299488,-0.086738340556622,-0.046143524348736],[-0.012017626315355,-0.0036728011909872,-0.070511497557163],[-0.012686608359218,0.083961449563503,0.077089533209801]],[[-0.0813824608922,-0.080436162650585,-0.055855244398117],[0.14138959348202,-0.032541546970606,0.0028535486198962],[0.032831735908985,0.089133195579052,0.004063842818141]],[[0.086150482296944,0.019448174163699,-0.018486224114895],[-0.12592181563377,-0.019319120794535,0.040760416537523],[-0.10538069903851,-0.043088655918837,-0.0088192177936435]],[[-0.0056168725714087,0.066718205809593,0.12582528591156],[-0.030134152621031,0.0070255505852401,0.11425644159317],[-0.015302301384509,-0.070611216127872,-0.0036235558800399]],[[-0.10930556058884,-0.023199316114187,-0.00013309140922502],[-0.19550177454948,-0.14874698221684,-0.014695256017148],[-0.014951194636524,-0.15208043158054,-0.16300091147423]],[[-0.076938331127167,0.036484196782112,-0.14765390753746],[-0.11026144772768,0.019001552835107,-0.01982668787241],[0.027264295145869,-0.054041404277086,-0.042121410369873]],[[0.004878219217062,-0.066775642335415,0.02010577917099],[0.048618130385876,-0.0021771593019366,0.030119962990284],[-0.019828017801046,-0.0068194549530745,0.14409480988979]],[[0.044041432440281,-0.020764417946339,-0.10051264613867],[-0.048555109649897,0.061583507806063,-0.038050726056099],[-0.002096222480759,0.018626738339663,-0.018032791092992]],[[-0.029861811548471,-0.050662901252508,0.022939708083868],[0.055597521364689,-0.12974488735199,0.072789117693901],[0.032985486090183,-0.05696788802743,0.013560890220106]],[[-0.17197024822235,0.080565638840199,-0.097837515175343],[0.13423511385918,0.020037079229951,0.026138568297029],[-0.094019345939159,-0.13189066946507,0.29243421554565]],[[0.042516820132732,0.18332590162754,0.12115932255983],[0.071202613413334,-0.0044338265433908,0.13388177752495],[0.10436353087425,-0.068841867148876,0.016717843711376]],[[-0.0044047315604985,0.041583966463804,0.10850441455841],[0.06041930988431,-0.048566497862339,0.11097978800535],[-0.0051540825515985,0.029220316559076,-0.015929019078612]],[[0.099997505545616,0.055746473371983,0.03306420892477],[-0.12967927753925,0.050819590687752,0.069669365882874],[-0.061193075031042,-0.01418289821595,0.031275145709515]],[[0.034844528883696,0.0050126947462559,0.11337838321924],[0.098502665758133,0.041036602109671,0.10918442904949],[0.00086612824816257,0.080257706344128,0.049781195819378]],[[0.044140983372927,-0.026182536035776,-0.013630971312523],[0.12532858550549,-0.042350459843874,-0.081051543354988],[-0.055423874408007,-0.0027690518181771,-0.054569497704506]],[[0.082438915967941,0.057105556130409,-0.089277386665344],[-0.0033726471010596,0.099236935377121,0.046880859881639],[0.013124009594321,-0.057259514927864,-0.029190303757787]],[[-0.043487753719091,0.028019012883306,-0.0821243673563],[0.098640151321888,-0.11335758119822,0.013096380978823],[0.083465032279491,-0.0019148176070303,0.03279983997345]],[[0.020897777751088,0.0010815683053806,0.022930527105927],[-0.03444866463542,-0.027448851615191,-0.10620809346437],[-0.0061918459832668,-0.071688868105412,-0.0087544489651918]],[[0.057364903390408,0.10506355762482,-0.058369152247906],[-0.034506298601627,0.027525920420885,0.036979459226131],[0.10246137529612,-0.043299917131662,0.049549084156752]],[[0.01144343521446,-0.059716902673244,-0.062609285116196],[-0.0024897765833884,0.0045194481499493,-0.014499256387353],[-0.066819414496422,-0.0043891365639865,-0.074819587171078]],[[-0.078880108892918,-0.019072001799941,0.017880994826555],[-0.056633088737726,-0.088734097778797,-0.033143758773804],[-0.033469278365374,-0.016413345932961,-0.055347688496113]],[[0.012172278948128,-0.031458456069231,-0.020362054929137],[0.013963347300887,-0.00095055834390223,0.035873033106327],[0.027261005714536,0.076314352452755,0.03509870916605]],[[0.0023144013248384,-0.0082912966609001,0.058043759316206],[-0.0020411503501236,-0.043034180998802,-0.019693356007338],[0.04754238948226,0.00071216636570171,-0.054952319711447]],[[-0.032761741429567,-0.03917695581913,0.12445772439241],[-0.097270093858242,0.02199617959559,0.011135171167552],[-0.0042487685568631,-0.063455209136009,0.071230955421925]],[[-0.0031097615137696,0.029795177280903,-0.043422590941191],[-0.091176100075245,-0.029522472992539,0.02881439961493],[0.012531430460513,-0.062512934207916,-0.074994795024395]],[[0.0093403533101082,0.038148909807205,-0.013092915527523],[-0.012260599061847,-0.034589253365993,-0.0068272911012173],[-0.054792448878288,-0.1223676726222,-0.011179632507265]],[[-0.042087368667126,-0.0063441945239902,-0.042796351015568],[0.019290501251817,0.057050921022892,0.040044482797384],[-0.0050610494799912,-0.093463040888309,-0.04170960187912]],[[-0.018254548311234,-0.053335517644882,-0.056675862520933],[-0.015351047739387,-0.029229117557406,0.085435040295124],[-0.082311026751995,-0.030897689983249,0.035469487309456]],[[0.074326820671558,-0.019851898774505,-0.09981819242239],[0.045116670429707,-0.081511162221432,-0.024883549660444],[-0.1370460242033,-0.011221648193896,0.0066219726577401]],[[0.035065952688456,0.048771288245916,-0.0044427895918489],[-0.068298861384392,-0.084645316004753,-0.011651349253953],[-0.047618672251701,-0.058649353682995,-0.091766521334648]],[[-0.079541675746441,0.023505507037044,-0.033715426921844],[-0.02657712996006,-0.01988897100091,0.067246489226818],[0.014629199169576,-0.0033000975381583,-0.04920806735754]],[[-0.057724677026272,0.033914119005203,0.10516664385796],[0.034572139382362,-0.016105173155665,-0.0055442187003791],[-0.062419410794973,-0.0070271254517138,-0.023338332772255]],[[0.0290732011199,0.046847585588694,-0.054521329700947],[0.10331193357706,0.043739300221205,0.040643867105246],[0.091892436146736,-0.090144984424114,-0.031746909022331]],[[-0.031104441732168,-0.15587939321995,-0.061523638665676],[-0.16988098621368,0.040398266166449,0.079546585679054],[-0.018156554549932,-0.18163387477398,0.0059207458980381]],[[-0.018364356830716,-0.024503098800778,0.071086347103119],[0.014427070505917,0.04574291780591,-0.081781886518002],[-0.035264980047941,0.040360312908888,0.058169823139906]],[[-0.091918781399727,0.11089842021465,-0.034644789993763],[-0.086303159594536,0.061985645443201,-0.03428116813302],[0.057194102555513,0.035552151501179,0.0164854247123]],[[-0.045801993459463,0.07230419665575,0.049150377511978],[0.018966842442751,0.17973785102367,-0.0051519884727895],[-0.05793222039938,-0.1329056173563,0.061393223702908]],[[-0.0063530523329973,-0.060474388301373,-0.074285537004471],[-0.021500419825315,0.012102585285902,0.053161516785622],[0.033780358731747,0.012144742533565,0.01468279119581]],[[0.0028424565680325,0.095421612262726,0.10915421694517],[-0.067144818603992,0.02284412458539,0.13881081342697],[-0.017326943576336,0.010368243791163,-0.0034044852945954]],[[0.0022352989763021,-0.0023015982005745,0.0026149577461183],[-0.065096974372864,0.046547576785088,0.031977646052837],[-0.069938413798809,-0.062467612326145,0.026246216148138]]],[[[-0.11554457992315,-0.02822550944984,-0.022109244018793],[-0.025139903649688,-0.0056089130230248,0.086915321648121],[0.036757778376341,0.0076642199419439,0.073934748768806]],[[-0.046598147600889,0.024773426353931,0.09120050817728],[0.067068561911583,-0.01998601667583,0.03327602148056],[-0.022291706874967,0.030180167406797,0.054138291627169]],[[0.017047071829438,0.12141032516956,-0.02992712892592],[-0.10460335761309,0.030446214601398,-0.075591839849949],[-0.14707879722118,0.025105606764555,-0.053148686885834]],[[0.050938494503498,0.015611309558153,-0.048712652176619],[-0.00017116224626079,0.037817277014256,0.023323483765125],[0.019254880025983,0.0057630902156234,0.031343333423138]],[[-0.01129721943289,-0.00010587465658318,-0.053887490183115],[0.0087906867265701,0.0022754995152354,-0.12459269165993],[-0.051573861390352,-0.086843676865101,0.087041944265366]],[[-0.066032469272614,0.050716813653708,-0.037696953862906],[0.015044308267534,-0.075536631047726,0.018458718433976],[-0.0044639157131314,0.057356644421816,0.035096608102322]],[[-0.041703220456839,0.074283577501774,-0.021506885066628],[0.00043317838571966,0.0072251847013831,0.027688296511769],[0.012450554408133,-0.054704371839762,0.012067743577063]],[[0.054015181958675,0.0066042826510966,0.040572993457317],[-0.013747270219028,0.017027389258146,-0.028844969347119],[0.039795253425837,-0.020605141296983,0.014000406488776]],[[-0.029321677982807,-0.075332306325436,-0.026259783655405],[0.0076437941752374,-0.029753234237432,0.024661401286721],[0.080500960350037,-0.0082724392414093,-0.036405008286238]],[[-0.097139477729797,-0.085896819829941,0.024778984487057],[0.078588962554932,0.038715180009604,0.077902756631374],[-0.0006083992193453,-0.091966181993484,0.006492470856756]],[[-0.065135397017002,0.0081198066473007,-0.062565162777901],[0.054523639380932,0.054063376039267,0.016821948811412],[-0.02741895057261,0.0090328948572278,-0.039697576314211]],[[0.18294697999954,-0.0041926596313715,-0.058652434498072],[-0.047209747135639,0.21820805966854,0.11274652183056],[0.19520330429077,0.044284876435995,-0.0085771642625332]],[[-0.040380414575338,-0.013030651956797,-0.025122463703156],[-0.12136637419462,-0.024618830531836,-0.022209838032722],[-0.013263190165162,-0.034826055169106,-0.029176587238908]],[[0.0423179641366,0.0094780344516039,0.039618954062462],[0.016959361732006,-0.027453197166324,0.047902088612318],[-0.00086583365919068,-0.02112422324717,0.076251164078712]],[[0.042149111628532,0.062024779617786,-0.053053092211485],[0.028256457298994,0.052611567080021,-0.024892067536712],[-0.015888096764684,-0.016361521556973,-0.055759284645319]],[[0.030257161706686,-0.0218157581985,-0.01598934456706],[0.045743305236101,-0.047378968447447,0.063299849629402],[0.065141178667545,-0.056285466998816,0.036904841661453]],[[0.013308019377291,0.012020732276142,0.12446325272322],[0.045315902680159,-0.016841676086187,0.066256009042263],[0.14631228148937,-0.027779795229435,0.074047781527042]],[[0.062641076743603,-0.0024659275077283,-0.15006305277348],[0.1035243049264,-0.15486769378185,-0.15264515578747],[-0.011114495806396,-0.02456140331924,-0.090709134936333]],[[-0.048455689102411,-0.021407034248114,-0.039164006710052],[-0.013992749154568,-0.047263782471418,-0.013224929571152],[-0.033897310495377,0.048392172902822,0.018862156197429]],[[-0.057407688349485,-0.014821298420429,0.068162523210049],[0.056721072643995,0.13531890511513,-0.036390911787748],[0.1249003559351,0.021982282400131,0.098102256655693]],[[0.018333323299885,0.035419594496489,0.009598383679986],[0.072117947041988,0.18215824663639,0.092488013207912],[0.03302925825119,-0.0054949470795691,0.0040004546754062]],[[0.0079527115449309,0.020022086799145,0.054657209664583],[0.060591787099838,-0.01184600405395,0.065816231071949],[-0.092962451279163,-0.10590169578791,0.019338700920343]],[[0.11032718420029,0.0070122443139553,0.0075315972790122],[0.075087487697601,-0.0016919164918363,0.020421685650945],[0.058288000524044,0.047097660601139,0.0193613730371]],[[0.080468125641346,-0.016096130013466,-0.052934393286705],[-0.081600092351437,0.0087008848786354,-0.039718940854073],[0.049065008759499,-0.010300694964826,-0.029540924355388]],[[0.020861500874162,0.0026209696661681,-0.026226634159684],[0.075981944799423,0.050854332745075,0.029575126245618],[0.045185651630163,-0.037557851523161,0.077242501080036]],[[-0.039016257971525,-0.11722438782454,-0.12547296285629],[-0.080133080482483,-0.0028947298415005,0.10539662092924],[-0.038694843649864,0.010092432610691,0.0051804101094604]],[[-0.057937137782574,0.0020536596421152,0.059739783406258],[0.14539758861065,-0.010396961122751,-0.027013504877687],[0.020286686718464,-0.037376910448074,0.0053470935672522]],[[-0.035481069236994,-0.032692119479179,0.13590787351131],[-0.042270679026842,0.096538625657558,0.028174627572298],[-0.0010983807733282,-0.047125265002251,0.019151730462909]],[[-0.018764581531286,0.028731571510434,-0.073929585516453],[-0.096255250275135,-0.045453082770109,-0.053721398115158],[0.057399541139603,-0.0070229317061603,0.017716575413942]],[[0.050618644803762,-0.07300777733326,0.00013030426634941],[0.16618487238884,0.067690394818783,-0.0060914480127394],[0.091629564762115,-0.018095439299941,0.049226596951485]],[[0.035362530499697,0.0014322476927191,-0.013396091759205],[-4.135544077144e-05,0.06556248664856,-0.015418966300786],[-0.12905059754848,0.087834015488625,-0.052245229482651]],[[-0.0051070563495159,-0.025586605072021,0.068090185523033],[-0.11359525471926,0.10164552927017,0.027592157945037],[0.079798176884651,-0.091761447489262,-0.0069970209151506]],[[-0.0079920394346118,-0.046723004430532,0.028794312849641],[0.098675951361656,0.10651209950447,0.037953700870275],[-0.085636548697948,0.024778001010418,0.05446495115757]],[[0.084484741091728,0.061356902122498,0.12979857623577],[0.18863606452942,0.021854843944311,0.029829729348421],[0.025040658190846,0.048632889986038,-0.020311374217272]],[[-0.00082914478844032,0.038344655185938,-0.0014542348217219],[0.0086400900036097,-0.028520775958896,0.14688347280025],[-0.021995451301336,0.037796396762133,0.082050271332264]],[[0.026023982092738,0.017211444675922,0.053530987352133],[0.02052503451705,0.038782175630331,-0.074092254042625],[-0.0029684889595956,0.013705505058169,0.039660684764385]],[[0.090446494519711,0.18018804490566,-0.0065083024092019],[0.075979560613632,-0.037397172302008,0.061481673270464],[-0.0096397027373314,0.13883119821548,-0.043274253606796]],[[0.083613954484463,-0.019294952973723,-0.051802914589643],[0.078186593949795,0.16505761444569,0.18959179520607],[-0.013355171307921,-0.10384473949671,0.0096865631639957]],[[-0.036959648132324,-0.013629909604788,-0.0097824214026332],[0.074505247175694,0.014857914298773,-0.010574360378087],[-0.03291754424572,0.12005598843098,0.17698472738266]],[[-0.016513025388122,0.018209081143141,0.13751189410686],[-0.03523763641715,-0.037647239863873,0.0082790022715926],[-0.030390212312341,-0.0089210793375969,-0.040381975471973]],[[0.017620496451855,-0.0058927526697516,0.039577517658472],[-0.053642936050892,-0.023815330117941,-0.041425328701735],[-0.066535905003548,0.0057424106635153,0.027006290853024]],[[-0.0076411995105445,-0.049326617270708,-0.0089665781706572],[-0.0071047088131309,0.014599233865738,-0.030213309451938],[-0.0032219383865595,-0.086868800222874,-0.069393508136272]],[[-0.073644012212753,-0.026398003101349,0.068734437227249],[0.098979622125626,-0.0036981219891459,0.018786408007145],[-0.019733859226108,0.026979962363839,0.060478053987026]],[[0.0080716433003545,-0.033619295805693,-0.0053425813093781],[-0.084649227559566,0.10139781981707,-0.058247596025467],[-0.066636353731155,0.017850115895271,-0.045613087713718]],[[-0.048268895596266,-0.11440116167068,-0.030950240790844],[-0.0034954138100147,0.097314424812794,-0.0022954968735576],[0.012703710235655,0.05677767470479,0.019893921911716]],[[0.075697042047977,0.10545956343412,-0.0018679003696889],[-0.05941017717123,0.023966312408447,0.015896756201982],[-0.011431001126766,0.067989632487297,-0.013998381793499]],[[-0.0018029637867585,-0.095128118991852,-0.014217386953533],[0.025582218542695,-0.070966936647892,0.001670689554885],[0.0059099970385432,0.10990280658007,-0.025160470977426]],[[-0.13033667206764,0.064553998410702,0.026391297578812],[0.061328776180744,-0.063617631793022,0.052961725741625],[0.11856551468372,-0.034742653369904,-0.032873407006264]],[[0.017653804272413,0.16579793393612,0.016716906800866],[0.01097087841481,0.0079065430909395,0.0039230175316334],[-0.043017137795687,-0.097142018377781,0.16327972710133]],[[0.017109874635935,0.015509148128331,0.05729852616787],[-0.041936811059713,0.072638034820557,-0.06109357252717],[-0.01274542696774,-0.028920354321599,0.11469405144453]],[[0.0065631037577987,0.047395169734955,-0.071031779050827],[-0.024105044081807,-0.1383581161499,-0.14062114059925],[0.00019385121413507,-0.0030000344850123,-0.072560131549835]],[[-0.0052461284212768,0.089719265699387,-0.0043489243835211],[0.03216789662838,0.034180227667093,0.024483490735292],[0.0095676705241203,-0.0082508381456137,0.05731188133359]],[[0.17760817706585,0.043782979249954,0.079999372363091],[-0.012056674808264,0.14498998224735,0.20666921138763],[0.048833921551704,-0.082200594246387,-0.1700088083744]],[[-0.018852466717362,-0.036912191659212,0.053277879953384],[0.033786941319704,0.024722164496779,0.046250347048044],[0.07529840618372,-0.030486756935716,0.048384610563517]],[[-0.050711017102003,0.079847872257233,-0.033842500299215],[0.07609535753727,0.021267034113407,0.010152800008655],[0.083043374121189,-0.067095130681992,0.059028640389442]],[[0.059137336909771,-0.032604817301035,0.010126812383533],[-0.068912662565708,-0.0016124885296449,0.04063755273819],[-0.016392659395933,0.049375984817743,-0.059611920267344]],[[-0.15579022467136,0.044266700744629,-0.08658704161644],[-0.012783541344106,-0.061352394521236,-0.025977097451687],[-0.018740577623248,0.040269404649734,-0.067261874675751]],[[0.018299490213394,0.026646096259356,-0.058653563261032],[0.072573490440845,0.058348029851913,0.05833861976862],[-0.040431667119265,-0.056865867227316,0.047696068882942]],[[-0.027756998315454,0.033665489405394,0.01493017282337],[0.049527548253536,-0.040792983025312,0.040459755808115],[0.0034801450092345,0.0073913377709687,0.13469880819321]],[[-0.0022409178782254,-0.014427320100367,-0.017137175425887],[-0.047266650944948,-0.063053652644157,0.0010486003011465],[0.0033931350335479,0.17320336401463,0.016907474026084]],[[-0.018486810848117,-0.080832362174988,0.042616549879313],[0.0065907230600715,0.05010598897934,-0.051357224583626],[-0.043534051626921,0.0045732967555523,-0.035865489393473]],[[0.034973904490471,0.082846611738205,0.073374353349209],[0.11090114712715,-0.069226212799549,-0.087864063680172],[-0.071860581636429,-0.034744001924992,-0.014398676343262]],[[0.011162370443344,-0.055557768791914,0.032582081854343],[0.050984773784876,-0.0050805355422199,0.03457073867321],[-0.089148007333279,0.077680587768555,0.12185268104076]],[[0.017960671335459,-0.012565545737743,0.030744297429919],[0.038357317447662,-0.039324659854174,0.018218409270048],[0.016439598053694,0.078584022819996,-0.050878446549177]],[[-0.016398375853896,-0.047825641930103,0.10179918259382],[0.06279493868351,0.10224175453186,-0.026649825274944],[-0.072187907993793,0.064095892012119,0.15248937904835]],[[0.042886141687632,0.050513304769993,-0.038758087903261],[0.0079013584181666,0.0049106050282717,-0.0024741173256189],[-0.062542930245399,-0.034578118473291,-4.0506933146389e-05]],[[-0.0279296413064,0.077261470258236,0.093778669834137],[-0.017289882525802,0.018452217802405,0.058214742690325],[0.015763347968459,0.021548967808485,0.024288762360811]],[[0.018051436170936,0.091553822159767,-0.017246179282665],[-0.0057376795448363,-0.0051323994994164,0.041140250861645],[0.076639145612717,0.0044245827011764,0.060099918395281]],[[-0.071826979517937,-0.097936511039734,-0.1241787225008],[0.0056112222373486,-0.060770735144615,-0.06361386179924],[0.038636162877083,-0.022474654018879,-0.12108450382948]],[[-0.044950433075428,-0.058796141296625,0.090665444731712],[0.011016661301255,0.070215292274952,0.084413059055805],[0.099165804684162,0.057576883584261,-0.028308236971498]],[[-0.033563308417797,-0.046748884022236,-0.0065597235225141],[-0.058798883110285,-0.10040432214737,-0.024270806461573],[-0.076299510896206,0.014244937337935,0.0067189508117735]],[[-0.04902220889926,0.10132864117622,0.10552018880844],[0.082283370196819,0.01569121517241,-0.028603460639715],[0.070443488657475,0.067609168589115,0.042078755795956]],[[0.049483470618725,0.0068038394674659,0.017797386273742],[-0.030190795660019,0.08350133895874,-0.014146376401186],[-0.035064950585365,-0.06176270544529,-0.012644967064261]],[[-0.025475386530161,-0.0084426430985332,0.0099717741832137],[0.071365602314472,-0.010190308094025,-0.095162622630596],[-0.074163720011711,-0.021123681217432,0.12289333343506]],[[-0.056579988449812,-0.0040850131772459,0.026700131595135],[-0.013444383628666,-0.039359778165817,0.077988915145397],[0.045951306819916,-0.056896477937698,0.064705811440945]],[[-0.031619377434254,0.0352454893291,-0.092086642980576],[0.035623330622911,-0.088457718491554,0.09710505604744],[-0.027611345052719,0.045020155608654,0.020260870456696]],[[-0.048555742949247,0.10963912308216,0.019585413858294],[0.070226341485977,-0.022973326966166,-0.054627627134323],[0.092371232807636,-0.031451378017664,-0.021267961710691]],[[-0.050751965492964,0.0060715302824974,0.021080620586872],[0.0006968445959501,0.1334583312273,0.088265292346478],[0.037641454488039,0.094951204955578,0.059988230466843]],[[0.074302949011326,0.065562628209591,-0.055193640291691],[-0.05368834733963,-0.12371327728033,-0.065599136054516],[-0.032313674688339,-0.0022499857004732,-0.015291116200387]],[[-0.01904085278511,0.039328567683697,-0.1186940819025],[-0.041281726211309,-0.082205481827259,0.061440829187632],[-0.0066650337539613,-0.1084071919322,-0.076419211924076]],[[0.053183726966381,0.12736754119396,-0.032865785062313],[-0.030142745003104,0.059906974434853,0.098882459104061],[0.055785749107599,0.015287925489247,0.0095349932089448]],[[-0.01673518307507,0.009501994587481,0.066273257136345],[-0.085884287953377,0.01925191655755,-0.019131481647491],[-0.049174621701241,-0.0019253458594903,0.021444626152515]],[[-0.0067347441799939,-0.033123519271612,0.12039814144373],[0.0055914488621056,0.04980256780982,-0.042465109378099],[-0.070024743676186,-0.026251940056682,0.04098866134882]],[[-0.0010971974115819,-0.027777954936028,-0.0082011660560966],[0.0085915680974722,0.10763150453568,0.018358433619142],[0.0070526390336454,-0.029541464522481,-0.0066454424522817]],[[0.078477539122105,0.083445772528648,0.063405640423298],[-0.024018255993724,-0.079134173691273,0.11520610749722],[-0.022618172690272,0.064289651811123,-0.015126447193325]],[[0.0050803637132049,-0.049095869064331,-0.011913065798581],[0.093612246215343,0.064425237476826,0.01667576096952],[-0.0015520517481491,0.010828917846084,0.035293579101562]],[[-0.00052804255392402,0.0070652165450156,0.032095354050398],[-0.013483695685863,0.086492396891117,-0.032333377748728],[-0.065444648265839,-0.05242645740509,0.032990165054798]],[[-0.052619028836489,-0.1081797555089,0.03779549151659],[-0.0047652218490839,0.13195464015007,-0.042161270976067],[0.1056145876646,-0.059828832745552,0.0057641291059554]],[[-0.018589830026031,-0.074031166732311,0.073116227984428],[-0.0049083270132542,0.091162107884884,-0.055014174431562],[0.0077225123532116,-0.080113962292671,-0.02042743191123]],[[-0.074302099645138,-0.059701267629862,0.03095069155097],[0.01780547760427,-0.036193206906319,0.10622829198837],[-0.054363362491131,0.0054421969689429,0.044043745845556]],[[0.083306565880775,0.081904254853725,0.075653158128262],[-0.08135075122118,0.094922862946987,-0.066090397536755],[-0.028292298316956,-0.019399952143431,0.082006722688675]],[[-0.014469204470515,-0.0096657499670982,0.05003334581852],[-0.048581276088953,0.035135462880135,-0.053113892674446],[-0.036721955984831,-0.01394622027874,0.059855069965124]],[[0.0023730390239507,-0.081702694296837,-0.0060135219246149],[0.027816042304039,0.030128855258226,-0.077214293181896],[0.030164683237672,-0.016240375116467,-0.08134138584137]],[[0.056819632649422,-0.021822458133101,0.036593042314053],[-0.089179620146751,0.00051677966257557,0.040837526321411],[-0.093181729316711,0.057020019739866,-0.0012718323851004]],[[-0.013323880732059,0.0031969228293747,0.022715205326676],[-0.036721024662256,0.12134443968534,0.047756537795067],[0.022966295480728,-0.06515246629715,0.070392727851868]],[[0.11194576323032,0.091203242540359,-0.073330588638783],[-0.016918700188398,0.02507034316659,-0.0066776536405087],[0.054057251662016,0.17010693252087,-0.059530068188906]],[[0.041167762130499,0.15654250979424,0.095580108463764],[0.17244786024094,-0.011474837549031,-0.010405112057924],[-0.01070564892143,-0.014992813579738,0.11894573271275]],[[-0.0135403778404,-0.045442216098309,0.057576395571232],[-0.01294303778559,0.045172140002251,-0.01351230032742],[0.061421781778336,0.063859023153782,0.054279822856188]],[[0.057402446866035,-0.040295120328665,-0.092379324138165],[-0.028602914884686,0.074900537729263,-0.040211334824562],[-0.091339573264122,-0.042860858142376,-0.019914988428354]],[[0.080499894917011,0.04406426474452,-0.050190430134535],[0.0026169379707426,-0.041840884834528,-0.0017284239875153],[0.0022765232715756,0.03873698413372,-0.043671760708094]],[[-0.03244961053133,0.051942318677902,0.037477716803551],[-0.077848426997662,-0.096916489303112,-0.047834061086178],[-0.0072740926407278,0.034052722156048,-0.039167553186417]],[[0.081868790090084,-0.0088181979954243,0.017354855313897],[0.02893534116447,0.074401549994946,0.098314791917801],[0.09540344029665,0.031985655426979,0.18669363856316]],[[0.0057269888930023,0.0028389398939908,0.00032110823667608],[0.011073121801019,0.03960756957531,-0.013852164149284],[-0.030519839376211,0.05799575150013,0.064109563827515]],[[0.039051402360201,-0.0027533120010048,-0.019662834703922],[0.00021356677461881,-0.081264726817608,0.048631768673658],[-0.036982800811529,-0.074331887066364,-0.029258972033858]],[[0.032392252236605,-0.041194148361683,0.027097066864371],[0.0012616282328963,0.056261863559484,0.050148971378803],[0.15247836709023,0.035372946411371,0.021967388689518]],[[0.027124939486384,-0.087316825985909,0.099822506308556],[0.017855504527688,-0.041544459760189,0.036232691258192],[0.06649362295866,0.024601252749562,0.0044975015334785]],[[-0.097894407808781,-0.0048936409875751,0.0080934204161167],[-0.018931331112981,-0.033358599990606,0.024745492264628],[-0.019615441560745,0.048050027340651,0.030138939619064]],[[0.077899575233459,0.036008793860674,0.027682835236192],[-0.10516303777695,0.076090388000011,0.056279119104147],[-0.00015637242177036,0.08514729142189,0.032123550772667]],[[0.041415974497795,0.062636159360409,0.062120821326971],[0.064890496432781,-0.016104934737086,0.11953562498093],[0.023699022829533,0.052789516746998,0.098861962556839]],[[0.024870559573174,-0.0031925872899592,-0.010753049515188],[-0.018225455656648,0.057470723986626,-0.022263193503022],[-0.053312994539738,0.027163928374648,0.034028641879559]],[[-0.007495941594243,-0.025942215695977,0.012031210586429],[0.019203279167414,-0.018843699246645,0.029566856101155],[0.019739223644137,-0.012610672973096,0.0061401166021824]],[[-0.024274069815874,-0.080002419650555,0.01333536952734],[-0.0048314612358809,0.065476275980473,-0.076631277799606],[0.07298681885004,-0.037529535591602,0.10053220391273]],[[-0.092794857919216,0.074041962623596,0.072733961045742],[-0.018762433901429,-0.027602665126324,0.099337987601757],[-0.044625759124756,-0.055786903947592,-0.082716107368469]],[[0.026152620092034,-0.014392986893654,-0.025469876825809],[0.015961565077305,0.0062078647315502,0.0096390396356583],[0.007975684478879,-0.026288107037544,-0.021760424599051]],[[-0.041839692741632,0.21433125436306,0.0032730426173657],[-0.090076223015785,-0.071923933923244,-0.028351057320833],[0.0020537725649774,0.16693535447121,0.0086800567805767]],[[-0.032135602086782,0.042662054300308,0.014377935789526],[-0.15109123289585,-0.018431473523378,0.079784452915192],[0.017300652340055,0.034764405339956,0.0040427092462778]],[[-0.0048821405507624,0.04059336706996,0.016681488603354],[-0.01734422519803,-0.013056720606983,-0.069712743163109],[0.0087993685156107,0.0099274972453713,0.054286811500788]],[[-0.025452805683017,0.010663802735507,0.06509055942297],[-0.0053738816641271,0.013977334834635,-0.018394973129034],[-0.075535252690315,-0.03336800634861,0.078129723668098]],[[-0.045361943542957,-0.038880463689566,-0.02834277972579],[0.073816522955894,0.013988547027111,-0.03097166493535],[0.026692485436797,-0.031426209956408,-0.026929223909974]],[[-0.03544719144702,0.0054484885185957,0.0058828918263316],[-0.072817906737328,0.068644843995571,-0.01687927544117],[-0.048108477145433,0.01178589835763,-0.035742286592722]],[[-0.021104963496327,-0.091735757887363,-0.010780698619783],[-0.058797545731068,0.063262067735195,0.17487654089928],[0.036491636186838,-0.047280613332987,-0.046331826597452]],[[0.015273039229214,-0.0024934546090662,0.11466882377863],[-0.036839492619038,0.018293354660273,0.02529758028686],[0.16058239340782,0.23920622467995,-0.018299570307136]],[[-0.012734701856971,0.074451610445976,0.052179589867592],[-0.038162223994732,-0.042115937918425,0.033822126686573],[-0.016793290153146,-0.032660495489836,-0.11879612505436]],[[-0.042660299688578,-0.04952771961689,-0.071229182183743],[0.029908845201135,0.022106377407908,-0.069790221750736],[0.073379181325436,0.067156083881855,-0.044982545077801]],[[0.0006284232949838,-0.034546080976725,0.016106728464365],[-0.029070587828755,-0.037322495132685,0.055074792355299],[0.037122137844563,-0.030974132940173,-0.082971803843975]],[[-0.030677346512675,0.040934201329947,0.10336402058601],[0.032891698181629,0.065532073378563,0.025054717436433],[0.017885627225041,0.03456487134099,0.017925817519426]],[[-0.068611524999142,-0.00046867024502717,0.1248002499342],[0.1605588644743,-0.0089836800470948,-0.011345325037837],[-0.0040155882015824,0.028834735974669,0.083612993359566]],[[-0.084543235599995,0.037775214761496,0.020163180306554],[0.023769097402692,0.078883640468121,-0.068758204579353],[-0.081748425960541,0.022649601101875,-0.0052187866531312]]],[[[0.09584816545248,-0.019270278513432,0.058349024504423],[-0.013971209526062,-0.0010465632658452,0.023389793932438],[-0.07035493850708,0.040577922016382,-0.031108193099499]],[[-0.06624212116003,-0.032375916838646,-0.021819163113832],[-0.020375283434987,-0.055139902979136,0.022391917183995],[0.059006202965975,0.041811596602201,0.076709128916264]],[[-0.043643366545439,0.042869858443737,0.033344317227602],[0.061074394732714,0.0064497073180974,-0.063503764569759],[0.025725344195962,-0.063052251935005,0.0070407693274319]],[[0.057527452707291,-0.041176605969667,-0.015740923583508],[-0.058302972465754,0.013451546430588,0.011125401593745],[0.03328225389123,0.023887932300568,-0.031208449974656]],[[-0.057625956833363,-0.01924255117774,0.07268363237381],[0.10218385607004,-0.029026683419943,0.015747740864754],[0.03792217373848,0.0088518401607871,0.020435243844986]],[[-0.0023417344782501,0.057219658046961,-0.030753806233406],[0.056207466870546,-0.036420810967684,0.026693720370531],[0.033085752278566,0.029780382290483,0.074667416512966]],[[-0.01948169246316,0.060312129557133,-0.0049194921739399],[0.0051537500694394,0.003488132962957,-0.0036446780432016],[-0.0026306752115488,0.0077497405000031,-0.0084360809996724]],[[-0.06300750374794,-0.023458853363991,-0.0009006557520479],[-0.015327804721892,0.080029539763927,-0.00065796833951026],[-0.0049760574474931,0.017717558890581,0.020179064944386]],[[0.078851096332073,-0.045530673116446,0.063734278082848],[0.019200729206204,0.060081299394369,-0.0015334903728217],[0.029306801036,-0.044893890619278,0.039078213274479]],[[-0.042489089071751,-0.013015920296311,0.036727663129568],[-0.051753003150225,0.047150772064924,0.026044949889183],[0.020672924816608,0.03729959204793,0.053718347102404]],[[0.017375839874148,-0.0001523106766399,0.043308351188898],[-0.030787231400609,-0.046768222004175,0.059005923569202],[0.0012514508562163,-0.009074991568923,-0.019063392654061]],[[-0.019129134714603,0.06493816524744,-0.063355170190334],[0.026524988934398,0.041526593267918,0.017810944467783],[0.04228575900197,-0.0083134714514017,0.020049510523677]],[[0.0088462010025978,0.036532733589411,-0.0036401064135134],[-0.073147006332874,0.002857725135982,-0.029025675728917],[-0.015719579532743,0.028642281889915,0.006240988150239]],[[-0.043943099677563,0.037899304181337,0.036782968789339],[-0.0019698403775692,-0.01119499001652,0.031964775174856],[0.024423724040389,0.03954179957509,-0.053249578922987]],[[0.06808290630579,0.014587294310331,-0.018816808238626],[-0.04179161041975,0.095744706690311,-0.01481067109853],[-0.043216805905104,0.066189542412758,-0.0058467728085816]],[[-0.050263293087482,-0.011722200550139,0.057363148778677],[-0.0015749523881823,0.028589189052582,0.037708029150963],[0.0053979367949069,0.0088360384106636,-0.033285815268755]],[[-0.002371430164203,-0.0084550948813558,-0.070985175669193],[0.050311587750912,-0.012952611781657,-0.054459996521473],[-0.01754754036665,-0.0054239551536739,0.060677781701088]],[[0.0055177076719701,0.001149270683527,0.020029805600643],[0.0043845633044839,-0.0039906171150506,-0.021527463570237],[-0.045193333178759,-0.012840246781707,-0.048096515238285]],[[0.025092791765928,-0.04412928968668,0.02560543641448],[0.0078547028824687,0.045220471918583,-0.022555837407708],[0.0075712036341429,0.016271501779556,0.0034681919496506]],[[0.0027240673080087,0.0038505028933287,0.0040322253480554],[0.037620641291142,0.014056650921702,-0.03002942353487],[0.026612123474479,0.061958603560925,0.013389113359153]],[[-0.030429782345891,-0.024336978793144,0.020027779042721],[-0.05363954603672,-0.0061292606405914,-0.034349624067545],[0.0232362318784,-0.046514995396137,0.061387896537781]],[[0.074553243815899,0.092238828539848,-0.014799489639699],[-0.076579436659813,0.028110580518842,-0.053200531750917],[-0.011685699224472,-0.060966499149799,0.027859818190336]],[[-0.06955797970295,0.11467018723488,-0.048206117004156],[0.049067046493292,0.048039250075817,0.027256064116955],[-0.068709842860699,0.042396709322929,0.01420312654227]],[[-0.0077485111542046,-0.05245478078723,0.022948201745749],[0.025465561076999,-0.033357750624418,-0.057816233485937],[0.065105684101582,0.016240023076534,0.019239496439695]],[[0.01192884426564,-0.043507926166058,0.04584102705121],[-0.00082463549915701,0.027052221819758,0.022260807454586],[-0.033865451812744,-0.0026089989114553,0.0488455966115]],[[0.026891561225057,0.0088661415502429,0.10708899796009],[0.010793146677315,-0.053617853671312,0.041403148323298],[0.0055166049860418,-0.038215685635805,0.063332051038742]],[[0.097226209938526,0.0316909737885,-0.080748848617077],[-0.059255827218294,0.020033841952682,-0.0052160108461976],[0.0076269139535725,0.021044563502073,-0.08281385153532]],[[-0.014304520562291,-0.074317067861557,-0.0027673246804625],[0.0057345302775502,0.039180893450975,-0.043600346893072],[0.072721354663372,0.066405616700649,-0.032211910933256]],[[-0.017339911311865,-0.030259853228927,0.029410498216748],[-0.034186262637377,0.043017506599426,-0.00241828430444],[0.10488233715296,0.02025018632412,0.0066767083480954]],[[-0.015101380646229,-0.063563011586666,0.0043971408158541],[-0.029743304476142,0.032053746283054,-0.022576939314604],[0.0046945447102189,0.049351293593645,-0.046585753560066]],[[0.043148428201675,0.018180264160037,0.0053175739012659],[0.033175501972437,-0.042859401553869,-0.043780438601971],[-0.031795017421246,0.032912988215685,-0.01031354162842]],[[-0.029365999624133,0.025448711588979,-0.077467158436775],[0.048008143901825,-0.0028798878192902,-0.025416236370802],[-0.0039080204442143,0.0035429548006505,-0.0033367895521224]],[[-0.019119577482343,0.002734707435593,-0.0044678584672511],[-0.0055922199971974,0.033262580633163,-0.050133492797613],[0.016878871247172,0.025221226736903,-0.031585060060024]],[[0.044875584542751,0.0005782179068774,-0.0025052973069251],[0.033284842967987,-0.064076021313667,0.013949838466942],[0.0079513322561979,-0.0081859091296792,-0.036307711154222]],[[-0.021195521578193,-0.030999217182398,0.01463358104229],[0.030433394014835,0.028976334258914,0.013600241392851],[0.01739688962698,-0.035251598805189,-0.091401189565659]],[[0.0037951108533889,0.010407897643745,-0.0039185821078718],[0.0026880374643952,-0.02441499568522,0.033108912408352],[0.037910211831331,-0.023831767961383,-0.036374174058437]],[[-0.011527166701853,-0.034650485962629,0.025796031579375],[-0.033513832837343,0.010622984729707,0.041356850415468],[0.027432002127171,-0.039936419576406,-0.05414717271924]],[[0.071075551211834,0.028056049719453,0.010094432160258],[0.042583450675011,-0.058231499046087,0.018019987270236],[0.007132101804018,0.0065078367479146,0.0017007532296702]],[[-0.036573775112629,-0.036794494837523,-0.02661595121026],[0.063111297786236,-0.023746429011226,0.032543200999498],[0.0015970052918419,0.010276198387146,0.07915710657835]],[[-0.015282064676285,-0.024661127477884,0.0088979983702302],[-0.019791496917605,0.046698305755854,-0.023003581911325],[-0.026829171925783,-0.027304485440254,-0.035439785569906]],[[0.027367470785975,0.021208567544818,0.038518399000168],[0.0018380015389994,-0.015104761347175,0.069804541766644],[0.011202780529857,-0.0052242400124669,-0.011493388563395]],[[-0.003906917758286,0.052746836096048,-0.073630675673485],[-0.029301326721907,-0.05011411011219,0.061800684779882],[-0.036039743572474,-0.029981020838022,-0.02885395847261]],[[0.078708209097385,-0.024151621386409,0.00021218249457888],[0.0068885502405465,0.0043787509202957,-0.087216384708881],[-0.0089514954015613,-0.11374611407518,0.081416100263596]],[[-0.011511697433889,-0.0059085935354233,0.046477142721415],[-0.071615815162659,-0.058241322636604,-0.039387777447701],[0.033496294170618,-0.044369008392096,0.0033851666375995]],[[0.002078898716718,0.014046613126993,-0.0065730074420571],[0.021862229332328,-0.056106273084879,0.054955348372459],[0.035476177930832,0.022003525868058,0.0010869773104787]],[[0.033486913889647,0.0035534249618649,0.032341662794352],[-0.078393347561359,-0.022189140319824,-0.073870860040188],[0.041768293827772,0.023800373077393,0.0081444652751088]],[[0.038746703416109,-0.0029636505059898,-0.036759860813618],[0.032455272972584,0.041426334530115,-0.013232341967523],[-0.0063892183825374,0.00063517462695017,0.019996048882604]],[[0.008611798286438,-0.037753202021122,-0.0032105185091496],[0.067524887621403,0.036214996129274,0.011431084945798],[0.042628806084394,0.0235729906708,-0.00056056131143123]],[[0.043953202664852,0.011601495556533,0.05863643437624],[-0.075837694108486,-0.06117707490921,0.013077110052109],[-0.021749302744865,0.050463307648897,0.0047782533802092]],[[0.011675274930894,0.030565373599529,-0.040193144232035],[-0.0032174391672015,-0.0099391108378768,0.076918080449104],[0.050720728933811,0.020683091133833,0.014190792106092]],[[-0.0052574421279132,0.012516146525741,0.017908340319991],[0.0017435785848647,0.050682533532381,0.039769876748323],[0.038303226232529,-0.030188167467713,0.0015896173426881]],[[-0.073621973395348,0.030525267124176,0.016405722126365],[-0.021047485992312,0.04542875662446,0.037733878940344],[0.046256102621555,-0.014170641079545,0.031668577343225]],[[0.066638045012951,-0.032313369214535,0.043136984109879],[0.027263816446066,0.048138614743948,-0.035479068756104],[-0.049122478812933,-0.0076590799726546,-0.029055984690785]],[[-0.010230817832053,-0.0046034995466471,0.02868789061904],[0.0035169909242541,0.017581446096301,0.02362815104425],[0.016023673117161,-0.0082327630370855,-0.054694566875696]],[[0.12521277368069,-0.02419657446444,-0.050461001694202],[0.026911066845059,0.075575076043606,-0.042985767126083],[0.079251833260059,-0.018112050369382,-0.01065241638571]],[[-0.02202133834362,0.059041813015938,-0.0082573173567653],[-0.035421781241894,-0.044955991208553,-0.03939051181078],[-0.028642617166042,0.010257386602461,0.057793758809566]],[[0.016833296045661,0.06192410364747,0.033861815929413],[-0.037521034479141,0.0029248024802655,-0.052824925631285],[0.0048638149164617,-0.0080776968970895,0.022244581952691]],[[0.025202656164765,0.059764251112938,0.057181380689144],[0.043626070022583,0.011949342675507,-0.035959232598543],[-0.026522064581513,-0.06203930824995,0.038813006132841]],[[0.095593251287937,0.024452824145555,-0.081302672624588],[-0.012458347715437,-0.012172879651189,0.0044871373102069],[0.031304337084293,-0.038420662283897,-0.0092816986143589]],[[-0.0097549250349402,-0.032901044934988,-0.05120787024498],[-0.030853807926178,-0.001184402150102,-0.052215192466974],[-0.023464303463697,0.0082115326076746,0.093042507767677]],[[0.042797990143299,0.0094321426004171,0.0044122696854174],[-0.0051757730543613,-0.0010591528844088,0.0047634947113693],[-0.019363008439541,-0.1064278408885,0.024785308167338]],[[0.022436952218413,0.055882982909679,-0.022590696811676],[-0.094458945095539,0.03088958747685,-0.015136661008],[0.025148417800665,-0.017985431477427,0.00096546782879159]],[[0.039228335022926,0.013486008159816,0.022587385028601],[0.014981089159846,0.014346106909215,0.0080473376438022],[0.021001288667321,-0.0062855938449502,-0.010507861152291]],[[-0.10202329605818,-0.035444963723421,0.019841536879539],[0.061469282954931,0.015642510727048,-0.061584614217281],[0.040138676762581,0.0077625932171941,-0.00075761583866552]],[[-0.087312936782837,-0.056349903345108,0.057123735547066],[-0.018256397917867,0.05311243981123,0.031144179403782],[0.0092203812673688,-0.067524209618568,0.058129861950874]],[[-0.054741628468037,-0.012022401206195,0.10930635780096],[0.018346257507801,-0.0085814837366343,0.0084903929382563],[0.070800676941872,0.064246580004692,-0.0025183516554534]],[[-0.0032693627290428,-0.033395182341337,0.01827359944582],[0.0097199054434896,-0.016183659434319,-0.0062512322328985],[0.034058097749949,-0.054529841989279,0.06080774217844]],[[0.0057288226671517,0.029020866379142,-0.092707045376301],[-0.011175881139934,-0.060735505074263,-0.023342514410615],[0.041988600045443,0.027152227237821,0.0056720809079707]],[[0.025544291362166,-0.035637672990561,0.04430216550827],[0.046533729881048,0.015845600515604,-0.01120360288769],[0.010143743827939,0.034318864345551,0.062006082385778]],[[0.010370483621955,-0.037447713315487,-0.028867615386844],[-0.015733754262328,0.041492879390717,-0.10253741592169],[-0.030302418395877,-0.12620298564434,0.038314383476973]],[[0.064554035663605,-0.017534431070089,0.0042031202465296],[0.05247799679637,0.014029021374881,0.022048285230994],[-0.0064818649552763,0.085357084870338,-0.024498580023646]],[[0.0020751589909196,0.011386728845537,-0.054707437753677],[0.050612058490515,0.052536178380251,-0.084192357957363],[-0.019694281741977,0.015498643741012,0.019912831485271]],[[0.035349208861589,0.063985161483288,0.018577430397272],[-0.05351373180747,0.034040912985802,-0.047395512461662],[0.013614368624985,0.0473238453269,0.051155082881451]],[[-0.01931125856936,0.019867839291692,0.021922312676907],[-0.019950261339545,0.0063679642044008,0.0038031639996916],[0.015153218992054,0.022848812863231,-0.045798800885677]],[[0.073363088071346,-0.036866948008537,0.053927455097437],[-0.068224623799324,-0.041038691997528,0.011216031387448],[-0.016435509547591,-0.046655524522066,0.018837567418814]],[[-0.0020750334952027,0.012640761211514,-0.033198334276676],[-0.027345983311534,-0.026054985821247,-0.024612927809358],[-0.10272517800331,0.00082409934839234,-0.039765652269125]],[[-0.073082350194454,-0.018955767154694,0.007674434222281],[0.046519622206688,0.044245928525925,0.01746410690248],[0.045087844133377,-0.010263163596392,-0.0075765997171402]],[[-0.0024409187026322,-0.017687272280455,0.050658039748669],[0.017417851835489,-0.055378347635269,-0.06353971362114],[0.041671868413687,0.045556876808405,-0.028783382847905]],[[0.0633914321661,-0.013651384972036,0.036284204572439],[0.062357969582081,0.011283847503364,-0.034431092441082],[-0.0096391178667545,0.048659298568964,-0.012180835939944]],[[0.029149200767279,-0.032562002539635,0.019468696787953],[-0.0096005294471979,0.01182740740478,-0.0082266451790929],[-0.013092434033751,0.0044595380313694,-0.052395757287741]],[[-0.0071690687909722,0.037628810852766,0.038698375225067],[-0.039666950702667,-0.0095016481354833,-0.010356596671045],[0.049087788909674,-0.017846101894975,0.026907732710242]],[[0.072497241199017,0.078158766031265,0.067425422370434],[-0.0021595654543489,0.017219558358192,-0.093978717923164],[-0.014485663734376,-0.07740556448698,0.044680193066597]],[[-0.09048818051815,0.020758191123605,-0.042002089321613],[0.035022873431444,0.019590727984905,-0.051012735813856],[-0.004525737836957,0.0021022299770266,0.0087833423167467]],[[0.026386747136712,-0.0081537207588553,-0.017111547291279],[0.029596097767353,-0.020352341234684,0.013602619059384],[-0.014725822024047,0.035286545753479,-0.0016424638452008]],[[-0.061599757522345,0.0012700479710475,0.033219840377569],[0.068532451987267,-0.027817262336612,-0.063212141394615],[0.00049388513434678,0.0013655601069331,-0.028328344225883]],[[0.0055626281537116,0.0068912492133677,-0.071230500936508],[-0.053300030529499,0.056756399571896,-0.02125839330256],[0.007601173594594,0.098684690892696,-0.023904792964458]],[[-0.030640767887235,-0.017666079103947,-0.043072041124105],[-0.025675317272544,-0.07937291264534,0.036926202476025],[0.039587441831827,0.12152912467718,0.014934353530407]],[[-0.040396079421043,-0.012291983701289,0.08845179527998],[0.039470225572586,0.020685289055109,-0.067972771823406],[-0.0063027669675648,0.0062795770354569,0.0058142975904047]],[[0.024517530575395,-0.010360908694565,0.072581708431244],[-0.017544895410538,-0.035097181797028,0.0087398141622543],[-0.0040565677918494,-0.032433688640594,0.019694227725267]],[[-0.0088951960206032,-0.04445743560791,-0.023463448509574],[-0.059320762753487,-0.027430323883891,-0.0092162908986211],[0.059561356902122,0.012594028376043,-0.034907266497612]],[[-0.049709476530552,-0.0038084795232862,-0.045503087341785],[0.062488414347172,-0.023668302223086,3.2099269446917e-06],[0.024381913244724,0.017154186964035,0.027023162692785]],[[-0.021207395941019,0.041034277528524,-0.019866041839123],[0.04397502169013,-0.029153894633055,-0.055130425840616],[-0.038389340043068,-0.015095699578524,0.029507387429476]],[[-0.0067214909940958,0.017338031902909,0.0096114166080952],[0.098537191748619,-0.00012147478992119,-0.04466737434268],[0.01842886954546,-0.053966786712408,-0.015939138829708]],[[-0.026510851457715,0.0022477228194475,-0.015651861205697],[0.059525243937969,-0.014132468961179,0.018982138484716],[-0.0064132711850107,0.050116948783398,-0.074039541184902]],[[0.0068998285569251,0.031140644103289,-0.070988073945045],[-0.065246038138866,-0.013020385988057,0.036466848105192],[0.087798677384853,0.033393457531929,-0.0094328531995416]],[[-0.035410199314356,0.007576213683933,0.044651549309492],[0.021027266979218,-0.015773633494973,0.044695984572172],[-0.041869550943375,-0.036057397723198,0.022090474143624]],[[-0.04848824813962,0.034079689532518,0.015686731785536],[-0.10806655883789,-0.021914672106504,0.020510014146566],[-0.019530482590199,-0.0079954471439123,0.02899806573987]],[[0.099284216761589,0.036418125033379,-0.027751097455621],[0.02591840736568,0.037276666611433,0.035457883030176],[0.05920223519206,0.034656472504139,-0.16263008117676]],[[-0.016683358699083,-0.019716087728739,0.034930791705847],[-0.00077050272375345,-0.016669884324074,-0.030367560684681],[0.015071171335876,-0.016696125268936,-0.0080281971022487]],[[0.090438641607761,-0.034469712525606,-0.013959445059299],[0.055903125554323,0.039491217583418,-0.018283409997821],[-0.02380833402276,-0.0083106020465493,-0.050996344536543]],[[0.016233706846833,-0.081155069172382,-0.022423071786761],[0.013303001411259,-0.040653791278601,-0.012732965871692],[0.03302787989378,-0.051280427724123,-0.0052046743221581]],[[0.033494152128696,0.041783660650253,0.0050753741525114],[0.031443543732166,0.10143776983023,-0.021861907094717],[-0.014590863138437,0.012781149707735,0.0016744496533647]],[[0.026382494717836,0.035298436880112,-0.020490009337664],[0.038142565637827,-0.070207975804806,0.044160503894091],[-0.063729301095009,0.012116598896682,-0.058841783553362]],[[0.045862577855587,-0.059622388333082,-0.018168710172176],[0.043676294386387,0.00040744294528849,0.031563259661198],[0.06548035889864,-0.01938652805984,-0.05742210149765]],[[0.034904133528471,-0.038741029798985,0.060457084327936],[-0.047697186470032,-0.063849046826363,0.0097218500450253],[0.016577994450927,0.086174733936787,0.01916891336441]],[[0.014366946183145,0.0039166365750134,0.038697842508554],[0.026763336732984,-0.03093427978456,0.019541209563613],[-0.031026350334287,0.013590478338301,-0.017296539619565]],[[0.035560198128223,0.054640758782625,0.014378242194653],[0.0094452407211065,0.051478769630194,-0.035460148006678],[-0.018242690712214,0.0075091817416251,0.011581835336983]],[[-0.034588009119034,-0.00134543760214,-0.009858843870461],[0.022256381809711,-0.036317467689514,0.060605350881815],[-0.016277592629194,0.024259202182293,0.083664208650589]],[[0.037085775285959,-0.034813549369574,0.094572879374027],[-0.02117914147675,-0.02031166665256,-0.014713786542416],[-0.024832533672452,0.053694508969784,-0.036745876073837]],[[-0.12261678278446,-0.084132388234138,-0.076010659337044],[-0.07172404974699,-0.06812722235918,-0.0041990289464593],[-0.070468425750732,-0.036793179810047,-0.031027898192406]],[[0.061433427035809,0.060962747782469,0.022997969761491],[0.02044365182519,0.073860712349415,0.02880054153502],[0.032441560178995,0.0038103358820081,0.0068509210832417]],[[-0.0041792690753937,-0.061358999460936,-0.02720120921731],[-0.00030856786179356,0.0029941766988486,-0.029593439772725],[-0.009982374496758,0.0012505908962339,0.032814919948578]],[[-0.096526861190796,-0.010869150981307,0.0049245376139879],[-0.033567816019058,-0.038793228566647,-0.040149185806513],[-0.056509140878916,0.0018843669677153,0.0031616834457964]],[[-0.030343046411872,-0.081039421260357,-0.062096226960421],[0.041480675339699,-0.029129512608051,0.006053056102246],[-0.037148635834455,-0.092048063874245,-0.063854075968266]],[[0.044028040021658,-0.016218574717641,-0.018830629065633],[0.015176076442003,-0.014959515072405,0.0088044032454491],[0.067744836211205,-0.022263081744313,-0.014543426223099]],[[0.045767724514008,0.025653891265392,-0.055230252444744],[-0.042721550911665,-0.023626757785678,0.083892531692982],[0.057630818337202,0.059854838997126,0.035589218139648]],[[-0.03316842392087,-0.00097842875402421,0.028766982257366],[-0.07065499573946,0.047525178641081,-0.028882758691907],[0.0048205908387899,0.0014992710202932,-0.0087930355221033]],[[0.075476974248886,0.042976524680853,0.014745918102562],[-0.052234139293432,0.097452990710735,-0.062656849622726],[-0.048246454447508,-0.083700150251389,0.022662699222565]],[[0.0053325518965721,0.034832902252674,0.051479123532772],[-0.0078167645260692,0.047868438065052,-0.030895857140422],[-0.013298996724188,0.027262907475233,0.05328430980444]],[[-0.010964614339173,-0.056265786290169,-0.020555568858981],[0.037145979702473,-0.04665233194828,0.019397053867579],[-0.10395221412182,-0.015253256075084,0.047951757907867]],[[-0.036406397819519,-0.028345702216029,0.00030782949761488],[-0.036180749535561,-0.04358771070838,0.032270304858685],[-0.032523699104786,-0.023556970059872,0.030112778767943]],[[-0.035900369286537,0.00019176365458407,-0.051588509231806],[0.0047985319979489,-0.0097486916929483,-0.049079019576311],[0.046973001211882,0.11324198544025,-0.011201714165509]],[[0.022218249738216,-0.059860374778509,0.056963048875332],[0.017541641369462,-0.0074456972070038,-0.10926280170679],[0.052928049117327,-0.0015616660239175,0.014935125596821]],[[0.0017942627891898,0.023274771869183,0.047705810517073],[0.030960980802774,-0.031657267361879,0.012315004132688],[0.0011315209558234,0.038458693772554,0.063041903078556]],[[0.035716328769922,-0.087763167917728,0.037192039191723],[-0.042015835642815,-0.0060144728049636,-0.05309971794486],[0.044278215616941,0.09479796141386,-0.024434056133032]],[[-0.034408517181873,-0.078933238983154,-0.012882867828012],[0.031416457146406,-0.030463978648186,-0.002972963033244],[0.081640772521496,-0.0093021271750331,-0.021074594929814]],[[-0.026709586381912,0.0080822994932532,0.061714429408312],[0.0034367688931525,0.036487206816673,0.01740176230669],[-0.026306470856071,-0.0020206733606756,-0.0013965023681521]],[[-0.031207282096148,0.040567498654127,-0.012783851474524],[0.04929256811738,0.058113288134336,0.00061941624153405],[0.019059067592025,-0.020735546946526,-0.0079642534255981]]],[[[-0.053103059530258,0.048953451216221,0.033803276717663],[-0.053701415657997,0.038071688264608,0.022431595250964],[0.033093813806772,-0.0029609394259751,-0.0026404818054289]],[[-0.07932985574007,0.030833149328828,0.0046344306319952],[-0.048658777028322,-0.028958650305867,0.041754543781281],[-0.0096868500113487,-0.075985491275787,-0.05286118388176]],[[0.012941380962729,-0.027951350435615,0.0029557489324361],[-0.032784897834063,-0.019331343472004,0.043158479034901],[0.054700825363398,0.0036544096656144,-0.011221922934055]],[[0.0070952866226435,-0.096749603748322,0.030821500346065],[-0.026046615093946,0.024892885237932,-0.035300925374031],[-0.021290203556418,-0.03581640124321,0.039020899683237]],[[-0.0023894722107798,-0.063047498464584,0.0053023062646389],[0.056785851716995,0.020530367270112,0.085938066244125],[-0.00064089684747159,0.001457306323573,0.07061292976141]],[[0.016613936051726,0.0080206068232656,0.0034123233053833],[0.087643653154373,0.019357921555638,-0.0078120795078576],[-0.018546437844634,-0.013972793705761,0.0032482696697116]],[[0.035328805446625,-0.026038408279419,-0.053012251853943],[-0.04169549420476,-0.044724997133017,-0.058281231671572],[-0.01111757196486,-0.018854111433029,0.036007534712553]],[[0.063400082290173,-0.060931246727705,0.045755036175251],[0.040737170726061,-0.066112920641899,0.046426266431808],[0.015775172039866,-0.026952872052789,-0.07705444842577]],[[-0.022117335349321,-0.058502554893494,-0.082372188568115],[0.10039493441582,0.060801673680544,0.071409687399864],[0.083252809941769,0.058021180331707,0.043324779719114]],[[0.063267260789871,0.056180998682976,-0.02264072932303],[-0.055053073912859,-0.00041837000753731,0.030594551935792],[0.037556115537882,0.14606690406799,0.017352549359202]],[[0.0046408348716795,-0.05223997309804,-0.0066094947978854],[-0.047283068299294,-0.072453886270523,-0.084534287452698],[-0.069591380655766,-0.021169804036617,0.063951440155506]],[[0.078644186258316,-0.049054924398661,0.015664529055357],[-0.041233398020267,-0.023859094828367,-0.061256516724825],[0.00088288536062464,-0.015371843241155,0.061819650232792]],[[0.073092930018902,-0.064888067543507,0.038856830447912],[0.012445048429072,-0.020988650619984,0.024930857121944],[-0.037897277623415,-0.014991221949458,0.068545326590538]],[[0.025734988972545,0.02021773532033,0.049545187503099],[0.010666820220649,-0.0012269644066691,-0.020601630210876],[-0.031199580058455,0.081056699156761,-0.027933157980442]],[[0.2060893625021,-0.014402194879949,-0.012783917598426],[0.14396159350872,0.080034181475639,0.053708847612143],[0.19681191444397,0.18378041684628,-0.069026827812195]],[[0.0038130395114422,-0.057983431965113,-0.009958409704268],[-0.03093227930367,-0.01976471953094,-0.03975846990943],[-0.05857202783227,0.012282574549317,-0.056565511971712]],[[-0.0012842897558585,-0.051115747541189,0.099315941333771],[0.0056944964453578,0.041956473141909,-0.087161511182785],[-0.036991599947214,-0.021060636267066,0.039808299392462]],[[0.079366274178028,-0.028830286115408,0.019775342196226],[-0.042935851961374,-0.035482868552208,0.011807599104941],[0.050654664635658,0.0094078695401549,-0.02199624478817]],[[-0.020373625680804,-0.042318992316723,-0.045138020068407],[0.015639510005713,-0.096873827278614,0.1413514316082],[-0.02483862452209,-0.036921963095665,0.0023734651040286]],[[-0.016595017164946,0.012603240087628,-0.10759401321411],[0.080715261399746,0.037129856646061,0.012503404170275],[0.028691943734884,0.067642576992512,-0.038856390863657]],[[-0.015608312562108,-0.031235290691257,0.053605653345585],[0.017938312143087,-0.11416254192591,0.093326523900032],[0.032717984169722,-0.015156535431743,-0.018433934077621]],[[0.042232312262058,0.035149436444044,0.047091100364923],[0.0068118958733976,0.11165929585695,0.074178382754326],[0.044021841138601,0.10017520934343,0.026641013100743]],[[-0.021210934966803,-0.031587813049555,-0.01935519091785],[0.0024538540747017,0.037779543548822,0.031888365745544],[-0.073373273015022,0.00033826063736342,0.020653871819377]],[[-0.082950845360756,0.004270413890481,-0.028587747365236],[-0.024705180898309,-0.033213660120964,0.064638569951057],[-0.038927230983973,-0.0064657689072192,0.0024507204070687]],[[0.12760998308659,-0.015929879620671,-0.021354949101806],[0.071701727807522,0.019584750756621,0.0096429092809558],[0.00048843305557966,0.036062005907297,0.034041754901409]],[[-0.042533107101917,0.0090434700250626,-0.011808815412223],[0.01346489880234,-0.038501001894474,0.0049553038552403],[0.038392536342144,-0.074461348354816,-0.021327709779143]],[[-0.078612513840199,0.005906832870096,-0.022420313209295],[0.042483400553465,0.0013647936284542,0.049334425479174],[0.0081284651532769,-0.027331832796335,0.08403117954731]],[[-0.016935450956225,0.062098067253828,-0.015261380933225],[-0.099548690021038,0.056606207042933,0.0435930788517],[0.043931465595961,-0.0079095037654042,0.021566113457084]],[[-0.016625683754683,0.0047543789260089,-0.017111517488956],[0.017341224476695,-0.071513578295708,0.050017237663269],[0.011386686004698,0.1461575627327,0.01579743809998]],[[-0.017282899469137,-0.0038593681529164,0.02168776281178],[-0.050228223204613,0.006951701361686,0.036461513489485],[-0.0055411998182535,-0.10482208430767,0.0028440130408853]],[[0.022911828011274,0.043450508266687,-0.049587104469538],[-0.070217870175838,0.031421709805727,-0.010502456687391],[0.070356085896492,0.010890107601881,0.0040105152875185]],[[-0.0011167500633746,-0.11063215136528,-0.0065652173943818],[0.03598690032959,0.032101988792419,-0.039737176150084],[-0.047138176858425,-0.017184233292937,-0.034817174077034]],[[-0.013585150241852,-0.042982809245586,0.049380030483007],[-0.013814486563206,0.039269708096981,0.015014114789665],[0.018149003386497,0.10201425105333,0.062226675450802]],[[-0.090939223766327,0.035583805292845,-0.011440013535321],[-0.0059717986732721,0.01443668268621,0.051964525133371],[0.034108802676201,0.034386537969112,-0.052431251853704]],[[0.0072845532558858,-0.038800995796919,0.0056091989390552],[0.0067896596156061,0.048399981111288,0.032259151339531],[-0.0013037702301517,-0.021210240200162,0.061359621584415]],[[-0.047138959169388,0.010048786178231,-0.025706427171826],[0.0021400640252978,0.020199198275805,-0.0045837629586458],[-0.042970441281796,0.068937160074711,0.0039019850082695]],[[-0.0067085698246956,0.0077331438660622,0.033843651413918],[-0.06064298003912,0.061440695077181,-0.02682245709002],[-0.04688972234726,-0.019134715199471,-0.044484347105026]],[[-0.011392222717404,-0.066130138933659,0.03961480781436],[0.086168192327023,0.0026886910200119,-0.039802007377148],[0.061709515750408,-0.016762970015407,-0.0057886340655386]],[[0.017378877848387,0.063471861183643,-0.035122465342283],[0.035741917788982,-0.075739860534668,-0.016720183193684],[-0.012212188914418,0.085753656923771,0.056873295456171]],[[-0.037272535264492,0.0037685609422624,0.076298631727695],[0.028876708820462,0.0002334671880817,-0.059123259037733],[0.031336329877377,0.00059767760103568,0.073389463126659]],[[0.037176053971052,-0.025161100551486,0.047428097575903],[0.041761662811041,0.029035694897175,-0.041286319494247],[-0.016832744702697,-0.048279721289873,0.039509557187557]],[[-0.016971668228507,0.029106896370649,0.043281484395266],[-0.021994108334184,0.00182507163845,-0.0071395062841475],[-0.11639044433832,0.039624180644751,0.083979740738869]],[[-0.02531861141324,0.14055663347244,0.0083432914689183],[0.078496605157852,-0.012817978858948,-0.066425673663616],[0.024529650807381,-0.047540511935949,0.025667380541563]],[[0.014088153839111,0.042310159653425,0.073529146611691],[-0.017416877672076,-0.020260421559215,-0.016044847667217],[-0.0634406208992,0.10089913010597,-0.0077025210484862]],[[-0.046997040510178,-0.073089525103569,0.071677133440971],[0.0031322620343417,0.07245222479105,-0.038597706705332],[-0.064818255603313,0.032013524323702,-0.015364371240139]],[[0.031139373779297,-0.022650985047221,-0.0072993906214833],[-0.017116596922278,-0.014925230294466,0.010184140875936],[0.10752283781767,0.097160249948502,0.041763044893742]],[[0.008753465488553,0.053308840841055,0.018256828188896],[0.045901782810688,0.041848313063383,0.035921137779951],[0.0023867376148701,0.025731885805726,0.024544714018703]],[[0.041491404175758,0.022980432957411,-0.043166037648916],[0.012835555709898,-0.02833803743124,0.021084874868393],[0.018415872007608,0.093939088284969,-0.079381331801414]],[[-9.8049837106373e-05,-0.0232870914042,0.081444643437862],[0.0089871156960726,0.042003840208054,-0.0043901489116251],[-0.089341826736927,0.10524615645409,-0.070231564342976]],[[-0.028096040710807,-0.02933207526803,0.0046718292869627],[-0.013313698582351,-0.0845827460289,-0.038935888558626],[-0.049478098750114,-0.10149672627449,-0.066362418234348]],[[0.024093249812722,0.047456450760365,0.036378726363182],[-0.069568023085594,-0.050144337117672,0.097483299672604],[0.012771287932992,-0.028617171570659,0.04987658187747]],[[-0.036282874643803,-0.056361600756645,0.057684227824211],[-0.053332332521677,-0.00089451362146065,-0.048087388277054],[0.0036615517456084,0.1139328405261,0.019581960514188]],[[0.053109880536795,0.07134210318327,-0.059889063239098],[-0.0098810661584139,0.055591870099306,0.099707379937172],[0.0066438922658563,-0.018497224897146,-0.061238322407007]],[[-0.0031451247632504,0.036066196858883,-0.097179114818573],[-0.019463863223791,-0.0012341486290097,0.037537045776844],[0.044445056468248,0.026692716404796,0.056480541825294]],[[0.0085896477103233,-0.0020391677971929,0.031285151839256],[0.039351787418127,-0.058212276548147,0.013236735016108],[0.026102105155587,0.0053428988903761,0.035632479935884]],[[-0.036186017096043,0.023175410926342,-0.031357668340206],[0.083679474890232,0.016605950891972,0.011825179681182],[0.020010732114315,-0.044415194541216,0.02750008739531]],[[0.048744916915894,0.016715539619327,-0.015468768775463],[-0.051718428730965,-0.031595949083567,-0.046515706926584],[-0.032961409538984,0.030365919694304,0.084692537784576]],[[0.039596006274223,0.0050999140366912,0.055033147335052],[0.026532987132668,0.013374249450862,0.016586277633905],[0.033176809549332,0.016262322664261,0.012833294458687]],[[0.033801313489676,-0.08917772769928,0.038283292204142],[-0.0063837175257504,-0.043537341058254,0.088248461484909],[0.1179598197341,0.03564714640379,-0.024592923000455]],[[0.011636726558208,0.076971545815468,-0.15060722827911],[0.052267476916313,-0.094907820224762,0.061293922364712],[-0.050197288393974,0.068265818059444,0.048208262771368]],[[0.092951156198978,-0.068436495959759,0.0065566902048886],[0.056588038802147,0.045900501310825,0.050892844796181],[-0.073463551700115,0.054135847836733,0.029327338561416]],[[0.025431349873543,0.010215847752988,0.046933941543102],[-0.01136767026037,0.04124116897583,0.050648085772991],[0.007652014028281,0.014213795773685,-0.027230365201831]],[[0.0027817499358207,0.018517106771469,0.0037403602618724],[-0.015705890953541,-0.010719077661633,0.023675763979554],[0.050402458757162,-0.025056170299649,0.035817448049784]],[[0.035777386277914,-0.0096126021817327,-0.049425255507231],[0.08780325204134,-0.044133972376585,-0.028973797336221],[0.053048558533192,-0.035578042268753,0.053324267268181]],[[0.032403439283371,0.041338451206684,-0.026003519073129],[0.013453954830766,0.023284351453185,-0.0080645177513361],[0.022596351802349,-0.047636371105909,-0.095701962709427]],[[-0.031085718423128,-0.013023898005486,-0.027623824775219],[0.017970995977521,-0.015640418976545,-0.048055894672871],[0.0038731684908271,0.053944248706102,-0.02497486770153]],[[0.019436832517385,0.038187172263861,0.044395189732313],[0.03366107493639,0.039034694433212,-0.0615518912673],[0.10126408189535,0.03885018453002,0.04641030356288]],[[0.046875894069672,-0.017201786860824,-0.020487267524004],[0.060841802507639,0.062942206859589,-0.040961015969515],[-0.01582907140255,0.058146372437477,0.0059728384949267]],[[-0.023218227550387,0.06715402007103,0.021606612950563],[-0.024660494178534,-0.014812025241554,-0.0097900843247771],[-0.06016343459487,-0.019031452015042,-0.017356099560857]],[[0.024160970002413,0.00092805037274957,0.013556307181716],[0.027028309181333,0.052357736974955,0.042028333991766],[-0.035701412707567,0.018583260476589,0.029860923066735]],[[-0.035186126828194,0.039600934833288,-0.058682270348072],[0.028010562062263,-0.0019979840144515,0.056279644370079],[-0.029734712094069,-0.029330778867006,0.030389338731766]],[[-0.0015733948675916,-0.033063013106585,-0.038938380777836],[-0.019213870167732,-0.08445118367672,0.032021671533585],[0.023206643760204,0.091503150761127,0.012221002019942]],[[0.018607195466757,-0.052353914827108,0.068361610174179],[0.014469106681645,0.043251235038042,-0.031269188970327],[-0.075410708785057,-0.025986883789301,0.11988085508347]],[[0.064562648534775,0.037213742733002,0.0066441111266613],[-0.019818190485239,-0.032745935022831,-0.0816500633955],[0.045417368412018,0.020554594695568,-0.028227487578988]],[[0.023795777931809,-0.076646767556667,0.027340237051249],[0.052131205797195,-0.045605786144733,0.036714423447847],[-0.026658521965146,0.052469067275524,0.024487351998687]],[[-0.049396757036448,0.001434798585251,0.018748603761196],[0.059883341193199,-0.04522367566824,0.067693926393986],[0.030061222612858,-0.071675084531307,-0.010462760925293]],[[-0.00043484717025422,0.082137987017632,0.01934920810163],[0.0090037118643522,0.046778056770563,-0.038720097392797],[-0.028638487681746,0.024068484082818,0.026791268959641]],[[0.12308728694916,-0.0069416291080415,0.063337124884129],[-0.012434284202754,-0.023166278377175,0.018725259229541],[0.0065223467536271,-0.059869691729546,0.012169335968792]],[[0.0093081574887037,-0.018567431718111,-0.069063887000084],[-0.0031297549139708,0.051477324217558,-0.0017574278172106],[0.07429575920105,-0.019015258178115,0.022830659523606]],[[-0.013231705874205,-0.042293161153793,0.016494134441018],[0.077662117779255,-0.032210823148489,0.046080429106951],[-0.0094303907826543,-0.048432372510433,0.014313187450171]],[[0.051078036427498,0.02704450674355,0.00072464445838705],[0.0054188277572393,0.039441529661417,-0.016028348356485],[-0.08000922203064,0.0086152367293835,-0.0053105046972632]],[[-0.027648204937577,-0.013996778987348,0.030243938788772],[0.0089465659111738,-0.078521020710468,-0.02379185706377],[-0.0049834195524454,0.010638338513672,0.032671753317118]],[[0.02943748421967,-0.025418423116207,-0.014771445654333],[0.024804007261992,-0.076428614556789,0.020194882526994],[0.013003513216972,-0.12031662464142,-0.015853721648455]],[[-0.030056687071919,-0.079140685498714,-0.04465851187706],[0.040863536298275,0.030353846028447,0.03418916836381],[0.065076269209385,-0.0022727285977453,-0.033901534974575]],[[-0.045355930924416,0.033908266574144,0.024572605267167],[-0.031888585537672,0.0027909767813981,0.015830898657441],[-0.047115135937929,-0.027581039816141,-0.037569984793663]],[[0.030328268185258,0.089021146297455,0.083887852728367],[-0.09019223600626,-0.082442231476307,-0.046651072800159],[0.031838670372963,-0.010829242877662,-0.012083154171705]],[[-0.061798062175512,0.042720187455416,-0.034152332693338],[-0.092332176864147,-0.0083409184589982,0.012392053380609],[-0.027026653289795,9.3534239567816e-05,0.042262203991413]],[[0.0097421258687973,-0.033637300133705,0.037819091230631],[0.00037894549313933,-0.032840747386217,0.07324592769146],[0.11277753859758,0.05075366422534,0.020982563495636]],[[0.031919404864311,0.0040008719079196,0.00027145340573043],[0.0062152305617929,0.054952304810286,0.067522898316383],[0.062954887747765,0.078303687274456,0.059302732348442]],[[0.027927462011576,0.055820751935244,-0.045370798557997],[0.044264070689678,0.0012313598999754,0.10875670611858],[-0.10685868561268,0.036312077194452,0.033920306712389]],[[-0.044303860515356,0.059514295309782,0.017438629642129],[-0.0060022114776075,-0.020074998959899,0.029065325856209],[0.046232845634222,0.061092376708984,0.09999630600214]],[[0.0096646649762988,0.1076539978385,0.059837207198143],[-0.02989523857832,0.066956378519535,0.025943836197257],[-0.021228486672044,-0.0062720659188926,-0.016702860593796]],[[-0.0087558440864086,-0.060530561953783,0.014061030000448],[-0.0088906874880195,0.10767647624016,-0.0017666830681264],[-0.034755747765303,0.030330713838339,0.040545884519815]],[[-0.01462727971375,-0.041132099926472,0.058180842548609],[0.014451205730438,0.006993165705353,0.021039709448814],[0.038742821663618,0.010251796804368,0.02583903260529]],[[-0.025319522246718,0.033701416105032,0.017177993431687],[0.0056113484315574,0.076127856969833,0.046674188226461],[-0.049407418817282,0.062374532222748,-0.03084502927959]],[[0.033014737069607,0.060881108045578,-0.060535795986652],[-0.040121421217918,0.00076202611671761,0.029456958174706],[-0.030911315232515,-0.019029865041375,-0.060906130820513]],[[-0.015569609589875,0.026592597365379,0.066687315702438],[0.023831808939576,0.040882218629122,-0.0085722915828228],[-0.032844617962837,0.10983108729124,0.091691836714745]],[[0.00056887982646003,-0.045673087239265,0.029688913375139],[0.048218749463558,0.041745070368052,0.0052102054469287],[0.061838455498219,-0.020167769864202,-0.026845913380384]],[[-0.080228090286255,0.0014805842656642,0.0063822120428085],[-0.10321328043938,-0.080135099589825,-0.00037418183637783],[0.0054252268746495,0.062468733638525,0.091288991272449]],[[-0.00079660135088488,0.020645083859563,0.00093396275769919],[0.0033892898354679,-0.046438686549664,0.02223895303905],[0.01036131568253,-0.042082902044058,-0.021051647141576]],[[-0.01572641916573,0.048056446015835,-0.067025072872639],[0.061091970652342,-0.058713011443615,-0.0079752532765269],[0.028737101703882,-0.063490800559521,0.02003207243979]],[[0.0057285716757178,0.016304682940245,-0.017151491716504],[0.04658279940486,0.030509863048792,-0.011582594364882],[0.074998185038567,0.062546730041504,-0.069936946034431]],[[-0.033516656607389,-0.069389931857586,0.0078577511012554],[0.023818103596568,0.0028237695805728,0.048950303345919],[0.015471654012799,0.036386389285326,-0.009423041716218]],[[0.024382973089814,-0.049813196063042,0.03741542622447],[-0.0094831231981516,-0.00020627689082175,0.030668282881379],[-0.011470981873572,-0.0035242757294327,-0.039549667388201]],[[-0.020803036168218,0.0061508626677096,-0.038953874260187],[-0.0058471146039665,0.010732864029706,0.013916971161962],[0.036767303943634,0.065534122288227,-0.037774112075567]],[[-0.033075526356697,0.018031820654869,-0.017565047368407],[-0.0028744149021804,0.037997782230377,-0.028370421379805],[-0.013433234766126,0.052464377135038,0.033017434179783]],[[0.018801990896463,0.050344735383987,-0.021458951756358],[0.010191737674177,-0.0419055595994,0.00055436353432015],[0.027651991695166,-0.031503025442362,-0.048623219132423]],[[-0.076255209743977,-0.031434886157513,0.009846462868154],[0.065599642693996,-0.0089893788099289,-0.048129316419363],[0.028853816911578,-0.043558053672314,0.042659357190132]],[[0.035777635872364,-0.01423210836947,0.014013504609466],[0.073408730328083,-0.10776236653328,-0.071110814809799],[-0.031012758612633,0.049896325916052,0.062644377350807]],[[-0.063399285078049,-0.012688809074461,0.043086960911751],[0.1002140045166,-0.047048315405846,0.062320057302713],[-0.009529541246593,-0.052539151161909,-0.01842524856329]],[[0.10320469737053,-0.0063949874602258,-0.057709418237209],[-0.025916982442141,-0.016070820391178,0.018973551690578],[-0.057600192725658,0.032208550721407,0.018580766394734]],[[-0.0082019818946719,-0.058577433228493,-0.072307229042053],[0.0058279018849134,0.026548681780696,-0.078163601458073],[-0.087553411722183,-0.020442578941584,0.062849491834641]],[[-0.029531840234995,-0.010694836266339,-0.026165399700403],[-0.061340872198343,-0.032171495258808,-0.033792227506638],[0.060065697878599,-0.018330642953515,0.0081842066720128]],[[-0.0144810853526,-0.0030723107047379,0.052021604031324],[-0.032685145735741,-0.0094446130096912,0.0057222447358072],[0.10245973616838,-0.066054910421371,-0.042745020240545]],[[0.047942157834768,-0.0046672448515892,0.015439701266587],[0.0040210243314505,0.0049058850854635,0.085474461317062],[0.058914139866829,-0.048484601080418,0.015780489891768]],[[-0.04934423789382,0.016753783449531,0.075562261044979],[0.0044119479134679,-0.026120042428374,0.012869388796389],[-0.017630077898502,0.033662360161543,-0.018353939056396]],[[0.045567654073238,-0.0052169440314174,0.082348838448524],[-0.057182975113392,0.041323740035295,0.055454719811678],[0.077765479683876,-0.0066608120687306,0.056047853082418]],[[0.088865108788013,-0.063619740307331,0.054368119686842],[0.048103775829077,0.007925177924335,-0.0281987413764],[0.019346598535776,0.06313269585371,-0.011101606301963]],[[-0.025395521894097,-0.021984046325088,0.040248949080706],[0.006691203918308,-0.037199068814516,0.00026020564837381],[-0.076219901442528,-0.011568878777325,0.025221027433872]],[[-0.022861439734697,-0.042754985392094,-0.08310628682375],[-0.019584883004427,-0.0023131917696446,-0.071076549589634],[0.035241987556219,-0.064557358622551,-0.077425189316273]],[[-0.030424071475863,0.069378152489662,-0.044171430170536],[0.024370472878218,-0.041710939258337,0.021170757710934],[0.031475320458412,0.0045691821724176,-0.027220509946346]],[[0.0087170787155628,0.0031090588308871,0.0015887048793957],[0.016324061900377,-0.015778155997396,0.0026062368415296],[0.046067103743553,0.059670515358448,0.029029479250312]],[[-0.089347399771214,-0.025984467938542,-0.030604712665081],[-0.058240547776222,-0.027141626924276,0.011990977451205],[0.030878569930792,-0.047489747405052,0.023337867110968]],[[0.05400001630187,0.072801485657692,-0.011803789995611],[0.0671606361866,-0.055287875235081,-0.049219720065594],[-0.0083600962534547,-0.038483951240778,-0.047002747654915]],[[-0.076451063156128,0.024354074150324,0.045575693249702],[0.04302679374814,-0.0084479143843055,-0.012240375392139],[-0.030047351494431,0.076748870313168,-0.0027514200191945]],[[0.023448320105672,0.076590478420258,0.039335619658232],[-0.022098269313574,-0.032136492431164,0.030427983030677],[0.14007724821568,0.021597081795335,-0.047273065894842]],[[0.04085236042738,0.059662904590368,0.025782180950046],[-0.046628132462502,0.012898619286716,0.070159219205379],[0.048376586288214,0.091731227934361,-0.024527419358492]],[[-0.028058158233762,-0.01300906483084,0.010261441580951],[0.024200089275837,-0.056018151342869,-0.026703648269176],[-0.034903828054667,0.047373805195093,0.040600184351206]]],[[[-0.037626851350069,0.017017226666212,-0.040434967726469],[0.03244524076581,-0.053626038134098,0.03023068420589],[0.013135516084731,0.0083479229360819,0.077827744185925]],[[-0.092514261603355,0.066424697637558,-0.026225419715047],[-0.024245845153928,-0.029914986342192,0.0037480092141777],[-0.0341911688447,-0.024688262492418,0.03636697307229]],[[0.024100180715322,-0.003277818672359,-0.024223210290074],[-0.053348280489445,-0.0056404541246593,0.004307609051466],[-0.031450163573027,-0.027370693162084,-0.030979914590716]],[[-0.016830515116453,-0.013307150453329,0.018713101744652],[-0.037243243306875,-0.027666395530105,-0.0065417420119047],[-0.012266621924937,-0.023074757307768,0.017941758036613]],[[0.031091766431928,-0.015027009882033,-0.019308369606733],[0.036981746554375,-0.031246760860085,-0.033527739346027],[-0.021187582984567,0.024286461994052,-0.038537472486496]],[[-0.03710800036788,0.0072649950161576,-0.08024226129055],[-0.00096593127818778,-0.043558474630117,-0.035187743604183],[-0.031812842935324,-0.077524371445179,0.0094605814665556]],[[0.0066734571009874,0.013745717704296,0.054039523005486],[0.062292132526636,0.0021809062454849,-0.0039099608547986],[-0.051238693296909,0.067268647253513,0.015648629516363]],[[0.0087322453036904,-0.026697164401412,-0.0031972622964531],[-0.039125997573137,-0.0095919268205762,-0.031096974387765],[-0.01673242636025,0.014505415223539,-0.041097771376371]],[[-0.059871412813663,-0.036098722368479,-0.029783060774207],[0.047001179307699,0.026588754728436,-0.063726492226124],[-0.10537005960941,-0.035934533923864,0.0539955124259]],[[0.019160965457559,-0.026196215301752,0.036359343677759],[-0.053316719830036,-0.078740142285824,0.025713434442878],[-0.027937574312091,-0.059794515371323,-0.057926125824451]],[[-0.10112205147743,-0.019358115270734,0.0097100781276822],[-0.011207043193281,-0.018793471157551,0.0077162692323327],[0.0021244050003588,0.071070685982704,-0.016690138727427]],[[0.041040387004614,-0.011392000131309,0.016209289431572],[0.016166161745787,-0.018880983814597,0.018643779680133],[0.033688977360725,0.041952330619097,0.022376891225576]],[[-0.0031912610866129,0.096147462725639,0.0057877418585122],[0.013247952796519,-0.012439675629139,-0.012728744186461],[0.039622269570827,-0.035502009093761,-0.013209524564445]],[[0.030573660507798,-0.078004144132137,-0.023639671504498],[-0.01103681512177,-0.010027414187789,-0.0581577681005],[-0.013035787269473,-0.0057873926125467,-0.042049132287502]],[[0.064390167593956,-0.011940628290176,0.023279985412955],[0.085538774728775,-0.038201618939638,0.051032077521086],[0.037879299372435,0.058821532875299,0.019634431228042]],[[-0.032853174954653,0.055891297757626,0.053561124950647],[0.041510857641697,0.084856688976288,-0.018840126693249],[0.015768386423588,0.042789995670319,0.02630696259439]],[[0.10445113480091,-0.0044195931404829,-0.0093208150938153],[-0.036385338753462,-0.0062874937430024,-0.037744726985693],[0.082260869443417,-0.014443447813392,-0.020222507417202]],[[-0.06096163764596,0.018385166302323,0.05393099412322],[0.020311122760177,0.0016048868419603,-0.028002804145217],[-0.057093963027,-0.014852438122034,0.091350808739662]],[[-0.0086801573634148,-0.016622949391603,-0.04257446154952],[-0.014333908446133,-0.030796661973,0.065242059528828],[0.010783503763378,-0.032891154289246,0.0093647390604019]],[[0.019362764433026,-0.018733544275165,-0.026678666472435],[-0.087010718882084,-0.046539258211851,0.0058937021531165],[0.0016794403782114,-0.0063382587395608,-0.01302395388484]],[[0.027440525591373,-0.03597467020154,-0.017812831327319],[-0.01048200391233,-0.010524176992476,-0.0079310238361359],[0.024522490799427,0.015409158542752,-0.020352279767394]],[[0.067471645772457,0.016173247247934,0.026495369151235],[0.019682455807924,0.0046252100728452,-0.068377621471882],[0.020562417805195,0.05325248464942,0.0037029921077192]],[[0.046022608876228,-0.11207177489996,0.01973288692534],[-0.044377628713846,-0.078135684132576,-0.01787431538105],[0.011866419576108,0.017283705994487,0.041235871613026]],[[-0.039564281702042,0.011405633762479,0.032591357827187],[-0.014533766545355,-0.018310496583581,0.07169634103775],[0.02049226872623,0.021998647600412,-0.0095082493498921]],[[-0.027175046503544,-0.010924283415079,0.026828782632947],[0.047059308737516,-0.011456762440503,0.055202834308147],[-0.027031792327762,0.032662287354469,-0.01040555536747]],[[0.057307746261358,-0.025527020916343,0.045471340417862],[-0.014498917385936,0.0030243813525885,-0.025020260363817],[-0.033807497471571,-0.06525219976902,0.0088702216744423]],[[0.0068448875099421,0.076350927352905,-0.021334970369935],[0.034930624067783,-0.017628943547606,0.022918561473489],[0.0012114770943299,0.034933231770992,-0.063884735107422]],[[-0.038979351520538,-0.076913431286812,-0.025456264615059],[-0.031440444290638,-0.037864208221436,0.0092577897012234],[-0.10551285743713,-0.06409964710474,0.024420358240604]],[[0.0059201181866229,-0.10695722699165,-0.064097091555595],[-0.0010053170844913,0.034651271998882,-0.027206873521209],[-0.013306520879269,0.0094205737113953,0.062611311674118]],[[-0.11611984670162,-0.04266470298171,0.026029840111732],[-0.072833932936192,-0.0017844657413661,0.018126232549548],[0.033083993941545,-0.066491708159447,-0.00249472563155]],[[-0.056579396128654,0.025701040402055,-0.026512676849961],[0.059066604822874,0.041102271527052,0.031426645815372],[-0.015854045748711,-0.0054712472483516,-0.02838165871799]],[[0.010767537169158,-0.0026994878426194,-0.0033033906947821],[0.012635961174965,0.012067123316228,0.032309200614691],[0.0027122828178108,0.0096950121223927,-0.090819329023361]],[[0.10885988920927,0.032001826912165,0.0086995027959347],[-0.026687910780311,-0.01125149987638,0.053372200578451],[0.0043582799844444,-0.022743267938495,-0.042446654289961]],[[0.035628657788038,0.023550787940621,-0.036024414002895],[0.0022389367222786,0.020789822563529,-0.023009475320578],[-0.0011687765363604,0.030496582388878,-0.049273863434792]],[[-0.023038886487484,0.019457263872027,0.00095712044276297],[0.089834228157997,-0.05293994769454,-0.0233553647995],[-0.030179541558027,0.0050224787555635,-0.025335749611259]],[[-0.057219672948122,-0.019698414951563,-0.0084383217617869],[-0.053524155169725,0.007642472628504,-0.0025993003509939],[0.043453015387058,-0.034361504018307,0.049846589565277]],[[0.0045248605310917,0.0088658165186644,0.090911485254765],[-0.039782483130693,-0.010677292943001,0.028602296486497],[-0.0055536977015436,-0.1196913048625,0.0013004050124437]],[[-0.0059759644791484,0.047402914613485,-0.0082590160891414],[-0.026347775012255,0.03288472443819,-0.063298411667347],[0.062289703637362,-0.041720069944859,0.040002420544624]],[[-0.02050293982029,0.0040051136165857,0.035854898393154],[0.029738057404757,0.014221452176571,-0.066129319369793],[0.091506861150265,-0.08216417580843,0.02472660318017]],[[-0.1118229329586,-0.014118946157396,0.030323112383485],[-0.046544600278139,0.0012328382581472,0.0032619063276798],[-0.019946211948991,0.06071862578392,-0.0056469487026334]],[[-0.066626906394958,0.081414364278316,-0.022051239386201],[0.021625965833664,0.058644380420446,-0.016094628721476],[-0.052954994142056,0.028733221814036,-0.034937083721161]],[[0.042477376759052,-0.081716299057007,-0.044736947864294],[0.040374338626862,0.0063406648114324,-0.014052994549274],[-0.051360059529543,-0.080834172666073,0.015105913393199]],[[-0.0055729267187417,0.023083062842488,-0.031693533062935],[-0.040209777653217,0.039935790002346,0.07264406979084],[0.059872094541788,-0.042070984840393,0.049609158188105]],[[-0.049179907888174,-0.018571671098471,0.024520771577954],[0.022856073454022,0.019113883376122,0.023966347798705],[0.012745236977935,-0.0050224843434989,-0.036245930939913]],[[0.055738173425198,0.0034878749866039,-0.036012589931488],[-0.016213607043028,0.036641873419285,-0.01605923101306],[-0.04368232190609,0.003837660420686,-0.056013308465481]],[[-0.055364452302456,0.020881524309516,-0.037714134901762],[-0.036740109324455,0.0013383846962824,0.051419112831354],[0.018254943192005,-0.0207573864609,0.034547902643681]],[[0.067153841257095,-0.025343801826239,-0.041263606399298],[0.050723895430565,0.019264727830887,-0.028439741581678],[-0.015457884408534,0.033876307308674,-0.020815316587687]],[[0.032742585986853,-0.067111782729626,0.021547621116042],[-0.014196667820215,-0.024921391159296,-0.036490920931101],[-0.0048493281938136,-0.0097205815836787,-0.062119718641043]],[[0.055175479501486,0.05726333707571,0.011350059881806],[-0.023291647434235,-0.027167525142431,-0.047759339213371],[0.011191874742508,-0.0053570396266878,-0.0038008478004485]],[[0.010139595717192,0.013418613933027,-0.012191453948617],[-0.02424662001431,0.03141338378191,-0.06542082130909],[-0.019309591501951,-0.014714800752699,-0.078176200389862]],[[-0.028049459680915,0.022297678515315,-0.059931918978691],[0.01619135029614,-0.047644779086113,-0.034375954419374],[-0.021232778206468,-0.0073278797790408,0.032315794378519]],[[-0.029722191393375,0.0040431781671941,-0.03064956702292],[-0.058801356703043,-0.017934402450919,-0.045211866497993],[0.063629239797592,-0.0017365217208862,0.05702331289649]],[[-0.012539490126073,-0.055246610194445,0.028038147836924],[-0.024505810812116,-0.001673084218055,-0.02191411703825],[-0.041235342621803,-7.5970237958245e-06,-0.016989890486002]],[[0.020312059670687,0.023075399920344,-0.039639130234718],[0.0076704253442585,0.018395703285933,-0.026094926521182],[-0.02707520313561,0.043828550726175,0.036284618079662]],[[0.031292729079723,-0.00014011908206157,-0.0036482196301222],[-0.03680595010519,0.012597467750311,0.042902681976557],[-0.087369225919247,0.034675307571888,-0.052729345858097]],[[0.010401987470686,0.054658625274897,0.011291351169348],[0.039494011551142,-0.024987144395709,0.010707488283515],[0.029366798698902,0.029612956568599,-0.063886396586895]],[[0.055930450558662,0.08564767986536,-0.0065625505521894],[0.024150026962161,-0.057587169110775,0.023112390190363],[-0.017484053969383,-0.033257480710745,-0.0012252008309588]],[[0.044543944299221,0.018021853640676,-0.046210683882236],[-0.06953752040863,0.017696464434266,-0.0082325674593449],[-0.047702729701996,-0.037880871444941,-0.027449835091829]],[[-0.041297722607851,0.0071807098574936,0.069502905011177],[-0.034472763538361,-0.071684159338474,-0.027299659326673],[-0.10530448704958,-0.093385621905327,0.037167776376009]],[[0.032723907381296,0.013886950910091,-0.097560897469521],[0.049136973917484,-0.031150177121162,-5.4060728871264e-05],[0.020408062264323,-0.046599768102169,0.013308282010257]],[[0.027357835322618,0.034104976803064,-0.052864417433739],[0.030334811657667,0.027361804619431,0.0049555343575776],[0.015645856037736,-0.0045330533757806,-0.021051473915577]],[[0.00071759364800528,0.05738203972578,-0.013241303153336],[-0.00035637291148305,-0.065047882497311,-0.0088133681565523],[0.02280811034143,0.046982705593109,0.054019823670387]],[[0.067172393202782,-0.014004210010171,-0.025625355541706],[0.062993317842484,-0.033027291297913,0.0027468174230307],[-0.037621766328812,-0.083666540682316,-0.0240194555372]],[[0.013610145077109,0.026775579899549,-0.054336149245501],[0.035586930811405,0.015889447182417,-0.088540650904179],[-0.027284178882837,-0.023476883769035,-0.0027358594816178]],[[-0.049292165786028,0.056334137916565,0.0080399811267853],[-0.035194467753172,0.039301514625549,0.022323569282889],[0.029324630275369,-0.0024403769057244,-0.012661386281252]],[[0.0024104572366923,-0.018567398190498,-0.035211961716413],[0.050063230097294,0.032180231064558,-0.025682294741273],[-0.0074597410857677,-0.0092858206480742,-0.037285037338734]],[[0.00080246391007677,-0.049739941954613,0.032936986535788],[0.072987742722034,0.0034168448764831,0.027238950133324],[-0.098735801875591,-0.005905631929636,-0.023359794169664]],[[0.029116598889232,-0.083855517208576,-0.045901287347078],[0.096810728311539,-0.0047006323002279,0.054961875081062],[-0.029013726860285,-0.030081421136856,-0.014094362035394]],[[5.9363352193031e-05,-0.04895118996501,-0.021937439218163],[-0.0083560170605779,-0.038226950913668,0.082860097289085],[-0.090846881270409,-0.045819915831089,-0.080450490117073]],[[-0.014186835847795,0.0067116389982402,0.068102359771729],[-0.027292378246784,0.031218940392137,0.0053974133916199],[-0.050169460475445,-0.10591166466475,0.0085960626602173]],[[0.010250213555992,-0.040946524590254,-0.078140832483768],[-0.033022623509169,-0.012538628652692,0.0065280427224934],[-0.040296345949173,-0.051098879426718,-0.00030148000223562]],[[0.082199282944202,0.073804914951324,0.048306249082088],[-0.029257593676448,-0.0042020557448268,0.041036386042833],[-0.025121280923486,0.0020869136787951,8.2297767221462e-05]],[[0.041623551398516,-0.039869729429483,-0.062550984323025],[-0.033798977732658,0.047304004430771,-0.12443029880524],[0.02619044855237,0.040680967271328,0.03433145955205]],[[0.03589715436101,-0.030480306595564,-0.049245852977037],[0.0165253020823,0.01181351672858,-0.046906318515539],[-0.053321972489357,0.03790033236146,0.019481539726257]],[[-0.028248531743884,-0.055150371044874,0.039996482431889],[-0.025234147906303,0.040887054055929,0.0037905098870397],[-0.046154376119375,0.036414325237274,0.039479415863752]],[[0.019567109644413,0.020030289888382,0.016980070620775],[-0.0088289128616452,-0.034612439572811,-0.063045799732208],[0.10034219175577,0.010664277710021,0.0070115244016051]],[[0.05604537948966,-0.0081524318084121,-0.011309335008264],[-0.018258215859532,0.011321262456477,0.058553650975227],[-0.032136008143425,0.060473058372736,-0.042185932397842]],[[0.0055700493976474,0.038685094565153,-0.023144142702222],[0.076061010360718,0.0019716823007911,0.025108601897955],[0.019813265651464,0.018032742664218,0.052479717880487]],[[-0.026462774723768,-0.054683666676283,0.031129745766521],[-0.017173275351524,-0.061045281589031,-0.052269134670496],[-0.0053257304243743,0.016348456963897,0.00062184402486309]],[[-0.0085833799093962,-0.0054343403317034,-0.054754484444857],[0.035778108984232,0.024222984910011,0.010333546437323],[0.0063101053237915,-0.010528927668929,0.025117751210928]],[[0.0038116849027574,-0.078907653689384,-0.045559231191874],[-0.051353260874748,-0.021068980917335,-0.022640764713287],[-0.026711381971836,-0.040882337838411,-0.03502432256937]],[[0.022916322574019,0.0060348836705089,0.012678832747042],[-0.0017746454104781,0.019839901477098,0.026736158877611],[0.018897196277976,0.066870734095573,0.015917250886559]],[[0.021281322464347,0.010741968639195,0.00038837504689582],[-0.076021984219551,0.00047808585804887,0.034123238176107],[-0.024075709283352,0.062639117240906,-0.001241548336111]],[[-0.0047698044218123,0.0070827873423696,-0.025900339707732],[-0.045831385999918,-0.042371891438961,0.032442260533571],[0.0073430300690234,0.0025798273272812,-0.0066006695851684]],[[0.037166371941566,-0.056522540748119,0.081087782979012],[-0.035638172179461,-0.014894668012857,-0.0026042032986879],[0.052040100097656,-0.013661042787135,0.01692602597177]],[[0.092053048312664,-0.052141234278679,-0.033017665147781],[-0.0049586836248636,0.012770016677678,-0.027954995632172],[-0.069127969443798,0.044804807752371,0.001014748821035]],[[-0.058203186839819,-0.0074233789928257,-0.016523839905858],[0.10847748070955,0.030738247558475,0.029676577076316],[0.034590635448694,0.020846055820584,-0.027029981836677]],[[-0.022149374708533,-0.043720539659262,0.046076443046331],[-0.017478154972196,-0.010967652313411,-0.036385841667652],[-0.0064771962352097,-0.0037515296135098,0.034622684121132]],[[-0.0054331282153726,-0.047460984438658,-0.01021274458617],[-0.012961734086275,0.055289156734943,0.068675175309181],[-0.080085135996342,0.039586011320353,0.016193768009543]],[[-0.024990050122142,0.08314710855484,0.022673701867461],[0.016608893871307,0.027685977518559,-0.042008802294731],[0.049141369760036,0.059982027858496,0.017160097137094]],[[-0.026806192472577,-0.011039730161428,-0.087771251797676],[0.064601220190525,0.055990662425756,-0.064675353467464],[0.010160545818508,-0.0069838273338974,-0.10343249887228]],[[0.021771483123302,0.014554161578417,-0.011067538522184],[0.030907588079572,0.05174532532692,0.015210785903037],[0.029690956696868,0.054703246802092,0.025216218084097]],[[-0.060102038085461,0.10656523704529,-0.024744056165218],[-0.042687680572271,0.033103253692389,-0.03064151480794],[-0.074823074042797,-0.039029248058796,0.021519964560866]],[[-0.0019025728106499,0.0059710335917771,0.035406917333603],[0.034011892974377,-0.016959249973297,0.016435626894236],[-0.017759686335921,8.065046131378e-06,0.047529969364405]],[[-0.079721421003342,0.033536672592163,0.012939563952386],[-0.02065272629261,0.02899501286447,0.089223697781563],[-0.0014338161563501,-0.00056041654897854,-0.018282512202859]],[[-0.029052844271064,-0.033140037208796,0.033168245106936],[-0.042482893913984,0.013213992118835,0.059685584157705],[0.049749650061131,0.030399532988667,-0.015121422708035]],[[-0.018280757591128,0.013853656128049,-0.041934568434954],[0.06882718205452,0.045804228633642,0.056565742939711],[-0.0018906920449808,0.050334557890892,-0.081366822123528]],[[-0.074825778603554,0.019369553774595,0.087453417479992],[0.016675647348166,0.057203650474548,0.024295821785927],[-0.0423026047647,-0.0013997162459418,-0.03775929659605]],[[0.025530347600579,-0.011928622610867,-0.0084429243579507],[-0.032908175140619,0.018558159470558,-0.0098222531378269],[-0.04666580632329,0.0087835965678096,0.052861087024212]],[[-0.0080898832529783,-0.0033163577318192,-0.043811917304993],[0.014892570674419,-0.0047182543203235,-0.080728225409985],[-0.012263781391084,-0.066986747086048,-0.017602765932679]],[[0.024716567248106,-0.031278248876333,0.050104781985283],[0.10280633717775,-0.0044236369431019,-0.0011447966098785],[0.096380613744259,0.038307998329401,-0.011431644670665]],[[0.0098007889464498,-0.0041323988698423,0.066024988889694],[0.021531255915761,0.082725003361702,0.0043243914842606],[0.023197866976261,-0.00026784781948663,0.068100288510323]],[[-0.035488706082106,0.036170765757561,0.011106973513961],[0.061294235289097,0.10067705065012,-0.053054455667734],[-0.0098733399063349,-0.064997680485249,-0.025220099836588]],[[0.058427475392818,-0.003531763330102,0.0023825061507523],[0.0073972088284791,-0.076668545603752,0.029588868841529],[0.020781835541129,0.020699145272374,-0.022654715925455]],[[-0.032844394445419,0.067032873630524,-0.021968208253384],[0.017472580075264,-0.044709738343954,0.088835500180721],[-0.01105388905853,-0.023886231705546,-0.045838069170713]],[[0.036199625581503,-0.041233405470848,0.044160511344671],[-0.0032829414121807,-0.021384362131357,-0.063703164458275],[0.022691080346704,-0.095634639263153,-0.020232520997524]],[[-0.018961321562529,0.0099201239645481,0.052292801439762],[0.0076602133922279,-0.025491338223219,-0.022270189598203],[-0.061759185045958,-0.035149455070496,0.010334898717701]],[[-0.014877145178616,-0.0081673674285412,0.067805908620358],[-0.03549699485302,-0.010732882656157,0.0011145112803206],[-0.036800563335419,-0.025899657979608,0.034095950424671]],[[-0.0073628318496048,0.026387086138129,0.048022910952568],[-0.10509386658669,-0.039558526128531,0.040078692138195],[0.00013862593914382,0.017720693722367,0.013864057138562]],[[-0.0062551028095186,-0.031265247613192,-0.028117815032601],[-0.034029074013233,0.077533721923828,-0.069649241864681],[-0.016483152285218,-0.042688332498074,0.031519178301096]],[[-0.024777146056294,0.044106349349022,0.07087404280901],[-0.011291595175862,0.0533212646842,-0.0052670272998512],[-0.0028597160708159,0.0054470030590892,0.084932394325733]],[[-0.014204643666744,0.0084964977577329,0.025189118459821],[0.022192286327481,0.033915545791388,0.021246336400509],[-0.0050809211097658,-0.036428835242987,0.041042819619179]],[[-0.048173069953918,0.0043899961747229,-0.032715566456318],[0.0016254095826298,-0.0038134229835123,0.0015227345284075],[0.031428318470716,-0.018052652478218,-0.042325474321842]],[[-0.05211016535759,-0.082240760326385,-0.044908750802279],[-0.011133266612887,-0.017248459160328,0.030881576240063],[-0.0040539419278502,0.02552155777812,0.0033848653547466]],[[0.00085349311120808,0.010914826765656,0.031413890421391],[-0.02450998686254,0.013777899555862,-0.023801404982805],[0.020811274647713,0.052068922668695,0.0018558539450169]],[[-0.038690637797117,-0.0035971230827272,0.029794724658132],[0.048476595431566,0.072561524808407,0.050263781100512],[0.035188663750887,-0.10489685088396,-0.084197849035263]],[[0.061337310820818,0.016921076923609,-0.024727860465646],[-0.0076545015908778,0.031850647181273,0.053733702749014],[-0.062594689428806,-0.15113174915314,0.068149395287037]],[[-0.0086004482582211,0.028650976717472,0.049201488494873],[-0.022581096738577,0.044273842126131,-0.031905245035887],[-0.0015538884326816,0.00011984904267592,-0.027806809172034]],[[-0.066099040210247,-0.0025395359843969,-0.0091047026216984],[-0.046716026961803,-0.048980657011271,0.017008487135172],[0.0053882678039372,-0.047445226460695,0.10635507851839]],[[0.051502253860235,-0.058142255991697,-0.041259694844484],[-0.0196244828403,0.0059014465659857,-0.02065622061491],[-0.035991225391626,0.070346914231777,-0.078158736228943]],[[0.014606481418014,0.064617343246937,0.00058334821369499],[-0.0086301164701581,0.0015546854119748,0.073050923645496],[0.026336712762713,0.0012351435143501,0.021698445081711]],[[0.037257350981236,0.026078967377543,-0.033641163259745],[0.01937192119658,0.04097830504179,-0.0095112966373563],[0.018310645595193,-0.045397311449051,-0.061047412455082]],[[0.062963508069515,-0.011222724802792,-0.014385063201189],[0.0021205609664321,0.020578429102898,-0.085470087826252],[0.025849603116512,-0.0074887815862894,0.059531826525927]],[[-0.04399186745286,0.010295076295733,0.02094260416925],[0.041489623486996,0.0013366644270718,-0.0042923847213387],[-0.068913370370865,-0.020962793380022,0.044548857957125]],[[0.028588997200131,0.020423952490091,-0.044806260615587],[-0.015486254356802,0.038863208144903,0.066137507557869],[0.0093508698046207,-0.014896630309522,0.017012001946568]],[[0.025776879861951,0.098200902342796,-0.013514197431505],[0.038706686347723,-0.0069999233819544,0.011638227850199],[-0.039111413061619,0.019603747874498,0.069850645959377]],[[-0.087013907730579,0.035987976938486,-0.018068371340632],[0.026488455012441,-0.096187010407448,-0.0014834343455732],[0.018475335091352,0.038106817752123,-0.011662531644106]],[[0.034590803086758,-0.028825279325247,-0.061230938881636],[-0.017364988103509,0.036594707518816,0.043948035687208],[0.07250452786684,-0.016122125089169,0.014646273106337]]],[[[0.010558092966676,0.025184171274304,-0.019212242215872],[9.4281094789039e-05,-0.026640366762877,0.081230640411377],[0.065468855202198,-0.024178050458431,0.0094652352854609]],[[0.035894032567739,0.024574015289545,-0.0096877031028271],[0.043476339429617,-0.022372120991349,-0.047037113457918],[0.028746513649821,-0.052913773804903,0.011225450783968]],[[0.095568098127842,0.012679536826909,0.01682005636394],[0.072635002434254,-0.002958697732538,-0.026205306872725],[0.0050848936662078,-0.011094642803073,-0.11726205796003]],[[0.0097022270783782,0.037852089852095,0.0010592314647511],[0.035542041063309,0.13105426728725,0.087052799761295],[0.084287032485008,-0.025395944714546,0.028835400938988]],[[-0.04290945827961,0.049370650202036,0.0044889613054693],[-0.034786712378263,-0.063201330602169,0.038152579218149],[-0.016183672472835,-0.030788568779826,-0.067502841353416]],[[0.0023633160162717,0.026972129940987,0.062795370817184],[0.0080872429534793,-0.074048183858395,0.012970670126379],[0.0078114327043295,-0.0062998910434544,0.055291447788477]],[[0.024171223863959,0.017604256048799,0.052698574960232],[-0.066209718585014,0.0019157943315804,0.031506735831499],[-0.08721961826086,0.040524382144213,0.015618234872818]],[[0.018130714073777,-0.084989309310913,-0.065127246081829],[0.079461127519608,0.1107355132699,0.010656083002687],[0.0098180677741766,0.043587896972895,-0.016927806660533]],[[-0.040824349969625,0.017556481063366,-0.032434061169624],[-0.0018311067251489,-0.0017798724584281,0.0026605997700244],[-0.024793706834316,0.019725145772099,0.042816504836082]],[[0.0097948014736176,0.034623548388481,0.019538385793567],[-0.014949693344533,0.068279065191746,-0.019984792917967],[0.061532579362392,-0.048623628914356,0.093443535268307]],[[-0.049670677632093,0.05655375868082,0.058646965771914],[-0.0080104321241379,0.010385161265731,0.058067087084055],[0.038678105920553,-0.028849268332124,0.014761091209948]],[[0.015271878801286,0.038256943225861,0.052984423935413],[-0.0042266384698451,-0.037439171224833,-0.056920740753412],[-0.015095070004463,-0.013108091428876,-0.0029148443136364]],[[0.033164598047733,-0.0080635948106647,0.01659550331533],[0.015532159246504,0.023968925699592,0.0021725576370955],[0.024271884933114,0.12997286021709,0.014658053405583]],[[0.039879243820906,0.077240012586117,-0.042074576020241],[0.021575033664703,-0.018041240051389,0.029148643836379],[0.065901808440685,0.03614517301321,0.023785974830389]],[[0.013628390617669,0.047913264483213,0.024233749136329],[0.085471086204052,0.021759875118732,-0.017264112830162],[0.01688171736896,0.15430684387684,-0.006369021255523]],[[0.032694566994905,-0.027576928958297,-0.0058024502359331],[-0.050138726830482,-0.052517861127853,0.032504390925169],[-0.011400756426156,-0.010973496362567,0.033883661031723]],[[0.022646497935057,-0.041010145097971,-0.023633955046535],[0.075342357158661,-0.063425704836845,-0.021802790462971],[-0.028624802827835,-0.031536851078272,0.0051374225877225]],[[0.065057903528214,0.075133785605431,-0.012907771393657],[-0.019521340727806,0.056841775774956,-0.017976524308324],[0.061383184045553,-0.064219266176224,-0.021055813878775]],[[-0.020349729806185,0.018658390268683,0.0091652749106288],[-0.014189884066582,0.014425526373088,0.022756509482861],[-0.051360137760639,0.019081080332398,0.098483525216579]],[[0.070361450314522,0.11034762859344,0.062446542084217],[-0.060163252055645,0.054663460701704,-0.071733482182026],[0.032479833811522,0.026441996917129,-0.02698633633554]],[[-0.02394176274538,-0.034707944840193,-0.031266309320927],[0.037399858236313,-0.0038259634748101,0.066262364387512],[-0.0064361556433141,-0.069861613214016,-0.023287149146199]],[[0.010626967996359,0.020959734916687,0.066055431962013],[-0.0059254029765725,-0.023193014785647,0.01449997164309],[0.033064533025026,0.029466910287738,-0.0038727428764105]],[[0.053956001996994,-0.037580046802759,-0.037005200982094],[-0.00095994159346446,-0.10742598026991,0.052412241697311],[-0.062886454164982,0.0072016124613583,-0.040823254734278]],[[0.00080850668018684,-0.0050581651739776,0.013328244909644],[-0.052018105983734,0.026088835671544,0.023712633177638],[0.013118383474648,-0.0032271142117679,0.0091144060716033]],[[-0.0094341207295656,0.045860685408115,-0.046567052602768],[-0.045586515218019,-0.040057808160782,0.0070761949755251],[0.028250003233552,-0.05046172067523,0.057653591036797]],[[-0.064109541475773,0.039459399878979,0.057219553738832],[0.011984931305051,0.011668735183775,-0.0075802877545357],[0.00828917324543,-0.053034462034702,0.0012490017106757]],[[0.0466128885746,0.010720794089139,0.051377557218075],[0.014392302371562,0.015675839036703,0.0098397405818105],[0.028907997533679,-0.064106866717339,0.0080871339887381]],[[0.063908465206623,0.057253506034613,0.055010627955198],[-0.018461378291249,0.0054183434695005,0.0059064286760986],[0.04233030974865,-0.086728572845459,0.049067948013544]],[[0.027703074738383,0.061730939894915,-0.020103316754103],[0.042578332126141,0.019519774243236,-0.061719171702862],[0.055180579423904,0.096901759505272,-0.032127909362316]],[[-0.016282921656966,0.039627406746149,0.044359717518091],[-0.041003968566656,0.013082839548588,-0.025302067399025],[0.037145636975765,0.068339213728905,-0.05492715165019]],[[-0.0026626999024302,0.011584874242544,0.095221571624279],[0.069220811128616,-0.0085665425285697,0.028085758909583],[0.026211556047201,-0.011263078078628,0.037787083536386]],[[0.046749111264944,-0.0013458105968311,0.0068816966377199],[-0.023368615657091,0.046073343604803,-0.085799604654312],[0.037697602063417,0.0077209607698023,0.0088562071323395]],[[0.013509667478502,-0.007811572868377,0.032152537256479],[0.075808569788933,-0.0096875932067633,-0.045933950692415],[-0.0042222780175507,0.010137691162527,-0.017951458692551]],[[0.018691621720791,-0.039782967418432,-0.076559320092201],[0.038046844303608,0.049707911908627,0.00880759768188],[0.07673729211092,-0.0037910649552941,-0.02766253426671]],[[0.043294835835695,0.035021930932999,-0.0099568217992783],[-0.0050296620465815,0.012410473078489,-0.039466470479965],[-0.0063083032146096,-0.022888014093041,-0.0015234558377415]],[[-0.075286641716957,-0.025890367105603,0.029858471825719],[-0.042987998574972,0.017777789384127,0.07313909381628],[-0.069330155849457,-0.0053106946870685,-0.077634230256081]],[[-0.025961531326175,0.025415549054742,-0.019471289590001],[-0.086804270744324,0.067766293883324,0.11527836322784],[0.023886835202575,-0.11004466563463,0.050847195088863]],[[-0.018818728625774,0.035022459924221,0.041318811476231],[-0.076435461640358,-0.028664650395513,-0.050529845058918],[0.038508791476488,-0.039633855223656,0.019613837823272]],[[0.024689964950085,0.042782962322235,0.050758540630341],[-0.081369176506996,0.05327246338129,0.10358632355928],[-0.028383154422045,0.07316555082798,0.019869785755873]],[[0.02643384411931,0.023071754723787,-0.0026554875075817],[-0.082883916795254,-0.016256716102362,0.04328678175807],[0.022696800529957,0.028355769813061,0.034861735999584]],[[-0.0044797011651099,0.035129018127918,-0.0093490807339549],[-0.0053221313282847,0.05927823856473,0.063155613839626],[0.018922092393041,-0.0023122469428927,-0.046518664807081]],[[0.073412515223026,0.059156283736229,-0.01097821071744],[0.025990726426244,-0.013145153410733,-0.0070007327012718],[-0.036752864718437,0.041266560554504,0.024747358635068]],[[0.005871397908777,0.054104916751385,-0.062620043754578],[0.053087789565325,0.11471430212259,-0.035866595804691],[0.031727019697428,0.038012240082026,0.059634387493134]],[[-0.038247633725405,-0.075007997453213,-0.033445358276367],[0.02361592464149,-0.031125005334616,0.06460702419281],[-0.018283825367689,0.0046632750891149,0.022454276680946]],[[-0.0086000859737396,0.014266992919147,-0.041553486138582],[0.072194583714008,0.042755633592606,-0.095637649297714],[-0.046335153281689,0.030528115108609,7.3153416451532e-05]],[[0.055697228759527,-0.007529582362622,0.068735234439373],[-0.064108192920685,0.001280014635995,0.04955580458045],[0.00071090762503445,0.033252339810133,0.017078522592783]],[[0.065645806491375,0.030298741534352,0.04172133281827],[-0.0094562843441963,-0.0010516924085096,0.022127978503704],[-0.03904764354229,0.029654834419489,0.030598022043705]],[[0.039325248450041,0.0065885484218597,-0.0049262498505414],[-0.036123659461737,0.052361276000738,0.0020941474940628],[0.055351071059704,0.036330278962851,-0.087149314582348]],[[0.00075885665137321,-0.022827701643109,-0.032644480466843],[-0.01763017475605,0.060704197734594,0.02116683870554],[0.046290077269077,0.021242460235953,-0.047702051699162]],[[0.0037320328410715,0.069923624396324,-0.040044482797384],[0.043508790433407,0.0066893100738525,0.001280038850382],[-0.019986018538475,-0.0064387200400233,0.038584742695093]],[[0.037058509886265,-0.019211526960135,0.017378155142069],[0.0022768697235733,-0.021958667784929,-0.03602297976613],[-0.026290852576494,-0.018661828711629,-0.033022128045559]],[[0.042965140193701,-0.058816712349653,-0.072883412241936],[0.049864530563354,0.039324268698692,-0.061062641441822],[-0.017203073948622,0.025963071733713,0.052573774009943]],[[-0.0078081167303026,0.069452092051506,0.011358550749719],[0.037227593362331,0.008381056599319,0.05469298735261],[-0.017709577456117,-0.074175305664539,-0.0033878311514854]],[[0.012426140718162,-0.047337625175714,-0.036681715399027],[0.06212155148387,0.01660044491291,0.025363286957145],[-0.061172399669886,0.078025795519352,0.031460165977478]],[[-0.031850509345531,0.0059106801636517,0.0038100625388324],[-0.050474513322115,0.020435834303498,-0.019676063209772],[0.013420228846371,-0.017525378614664,0.035398423671722]],[[0.04017236456275,0.12500222027302,-0.031298000365496],[0.0019847862422466,-0.00048113538650796,-0.029681300744414],[-0.003676735330373,-0.008269683457911,0.011263201013207]],[[0.0075611718930304,-0.038920655846596,-0.019409695640206],[-0.024510541930795,0.013922953046858,-0.035286363214254],[-0.014751678332686,0.073771491646767,-0.036837164312601]],[[0.043065637350082,-0.057914908975363,-0.030487608164549],[0.033499673008919,-0.042311996221542,-0.0017893791664392],[-0.070519208908081,0.083303287625313,-0.056929491460323]],[[-0.076737701892853,0.0098572792485356,-0.056196495890617],[-0.048395115882158,-0.039288893342018,0.083215527236462],[-0.0070339189842343,0.083465255796909,0.041121669113636]],[[-0.07526446133852,0.0043880823068321,0.0013883461942896],[-0.037584755569696,-0.02676066569984,0.038507629185915],[-0.031991336494684,0.071084529161453,-0.018317809328437]],[[-0.019474003463984,0.010726992040873,0.0023402646183968],[0.062194652855396,0.088580615818501,0.045575872063637],[-0.006166793871671,0.032205622643232,-0.028940670192242]],[[0.014149911701679,-0.029226563870907,0.001077221124433],[-0.04911495000124,-0.035011097788811,0.017689917236567],[-0.0058764587156475,0.062715277075768,-0.00072749174432829]],[[0.028003940358758,0.019094144925475,-0.015342436730862],[-0.040717869997025,-0.0019048976246268,-0.052838031202555],[-0.024588210508227,-0.032839622348547,0.065704450011253]],[[0.008920663036406,-0.036215677857399,0.062059618532658],[0.0069710635580122,0.0013095242902637,-0.023960433900356],[-0.056304164230824,0.038182724267244,0.05861796066165]],[[0.010597594082355,-0.015543587505817,0.083952888846397],[-0.048013534396887,-0.035996034741402,0.0035646543838084],[0.0020169240888208,0.0034637975040823,-0.02104184217751]],[[0.0075400732457638,0.021508570760489,-0.01292167045176],[0.057699874043465,-0.042869754135609,0.026681220158935],[0.012753058224916,-0.010784443467855,-0.034959860146046]],[[0.10274784266949,0.049409825354815,0.022533424198627],[0.052276212722063,0.045761272311211,-0.010678530670702],[0.026669956743717,-0.0046049398370087,0.068546503782272]],[[0.0089026102796197,-0.0072845076210797,0.06640238314867],[0.044526517391205,0.032045166939497,-0.042611047625542],[0.021436855196953,-0.055492755025625,0.01745174638927]],[[0.022690638899803,0.083260908722878,0.016056302934885],[0.056689973920584,0.024213325232267,-0.0051079634577036],[-0.013111561536789,0.019319493323565,0.019048282876611]],[[0.0067267860285938,0.0028216803912073,-0.011004245840013],[0.026605926454067,0.058083917945623,-0.041903629899025],[0.030272021889687,0.019031958654523,-0.027511646971107]],[[-0.050856478512287,-0.017167175188661,0.017385464161634],[0.036845084279776,0.059856668114662,0.060736246407032],[-0.049804281443357,0.072179786860943,-0.095815755426884]],[[0.063727714121342,0.038957089185715,-0.040547300130129],[0.0048929094336927,-0.0044595622457564,-0.024023747071624],[-0.020212411880493,0.10327913612127,-0.015739249065518]],[[0.048649746924639,-0.0064521771855652,0.026935271918774],[-0.018972016870975,-0.015546982176602,0.048413060605526],[-0.028727611526847,-0.07598702609539,-0.028919849544764]],[[-0.085540421307087,-0.013191197067499,-0.011536992155015],[0.0078155416995287,0.045068841427565,0.049541734158993],[-0.017829824239016,-0.031909085810184,-0.0023611411452293]],[[0.055865634232759,0.019133703783154,0.019215511158109],[-0.12085420638323,0.053697943687439,0.048408485949039],[0.034812033176422,-0.01789665594697,-0.034596167504787]],[[-0.0013894614530727,0.058978646993637,-0.0075762388296425],[0.066908590495586,-0.036501061171293,0.00086248846491799],[-0.043253164738417,0.021441232413054,-0.013248728588223]],[[0.042768619954586,-0.076094590127468,0.0080235535278916],[-0.061961729079485,-0.0045846221037209,0.060662098228931],[-0.04672147333622,-0.022905293852091,-0.01027830503881]],[[0.049906600266695,-0.052319873124361,0.0084982626140118],[0.018122656270862,0.055864974856377,0.04389525949955],[-0.0076877032406628,0.034208349883556,-0.0042500603012741]],[[-0.090223751962185,0.026707950979471,-0.055759515613317],[0.057905048131943,-0.095006160438061,0.027375055477023],[0.029391031712294,0.009817854501307,-0.0032859279308468]],[[-0.016141250729561,0.028441207483411,0.052735764533281],[0.00097097177058458,-0.0081154545769095,-0.010524703189731],[0.066614851355553,0.048624366521835,0.013477085158229]],[[-0.034816406667233,0.0083173448219895,0.011817707680166],[0.0033251054119319,0.036532606929541,-0.034975916147232],[0.011250270530581,0.057313956320286,0.019774561747909]],[[0.040721002966166,0.0065559418871999,-0.05066304281354],[-0.079380318522453,0.013058538548648,0.022339405491948],[-0.046099811792374,-0.0022228283341974,-0.039796855300665]],[[-0.012005642987788,0.0012438339181244,-0.079453431069851],[0.1036731377244,0.042055279016495,0.06653019040823],[-0.064903795719147,0.043170284479856,0.0069441609084606]],[[-0.023633675649762,0.088543549180031,0.035171184688807],[0.03919405862689,-0.036366622895002,0.019688693806529],[-0.075608767569065,0.0031369584612548,0.029703259468079]],[[0.057425770908594,-0.055078413337469,0.023045787587762],[-0.0097166048362851,-0.00627101957798,-0.037429895251989],[-0.045948062092066,-0.061008382588625,0.026620216667652]],[[-0.06295720487833,0.011622126214206,-0.024958148598671],[-0.013183746486902,0.079487547278404,0.010449196211994],[0.0037386328913271,-0.065750516951084,-0.022490475326777]],[[0.022162886336446,-0.057871170341969,-0.087666399776936],[-0.066809475421906,0.090408854186535,0.042728614062071],[-0.073894031345844,-0.019723258912563,-0.016141142696142]],[[0.027043705806136,-0.037548918277025,0.034818913787603],[0.088410258293152,-0.061043869704008,0.01527330186218],[-0.039459034800529,-0.0011828917777166,-0.048155967146158]],[[0.0069808582775295,0.045963175594807,0.099386528134346],[-0.048291698098183,0.034175213426352,0.068188264966011],[-0.0083385743200779,0.088620461523533,0.027701020240784]],[[0.05241447687149,0.032977398484945,0.051590640097857],[0.016269342973828,-0.074873670935631,0.027305997908115],[-0.013537775725126,-0.054749768227339,0.061803288757801]],[[0.041511513292789,0.019626915454865,0.023712987080216],[0.075728490948677,0.012754701077938,-0.0090258326381445],[0.0027370979078114,0.0242461822927,0.018632486462593]],[[0.022691942751408,0.016483413055539,-0.023969799280167],[-0.037530284374952,0.024595819413662,0.01146553363651],[0.057226184755564,0.0085483454167843,0.0023037409409881]],[[-0.018805241212249,0.014320685528219,0.064068228006363],[0.010912203229964,-0.038497880101204,0.089351579546928],[-0.05484701320529,-0.042697545140982,-0.027521228417754]],[[-0.010251143015921,0.038610268384218,0.054388422518969],[0.057249210774899,0.020961936563253,0.035219423472881],[0.11135932803154,-0.02745164744556,0.036852091550827]],[[-0.014313250780106,-0.058603204786777,0.023190025240183],[0.029190100729465,-0.014626141637564,-0.014503626152873],[0.014896470122039,0.034696657210588,-0.034090451896191]],[[-0.010962562635541,-0.020440695807338,0.015973461791873],[0.032254122197628,-0.0003918326983694,-0.01742429099977],[-0.0030549773946404,-0.035995874553919,-0.047470230609179]],[[0.0562286041677,-0.0032306625507772,-0.019101422280073],[0.069647297263145,-0.020348781719804,-0.00037926970981061],[0.078725703060627,0.030501114204526,-0.00028676318470389]],[[0.063471883535385,-0.03906287252903,-0.037470873445272],[0.012563050724566,0.015293889679015,0.03471190854907],[-0.025808252394199,0.10506157577038,0.08753465116024]],[[-0.013806394301355,-0.01229456346482,0.037827339023352],[-0.035890523344278,-0.049300670623779,-0.068805307149887],[-0.052394285798073,0.052361991256475,0.025339584797621]],[[0.046207387000322,0.0097403237596154,-0.016430614516139],[-0.010481630451977,-0.027925577014685,-0.055824957787991],[-0.063988760113716,0.046851441264153,0.02396466769278]],[[-0.020255723968148,0.040329404175282,-0.0082565853372216],[-0.035356145352125,0.0031714970245957,0.032064270228148],[0.022964397445321,-0.0086797038093209,0.050604991614819]],[[0.054468486458063,0.018990948796272,-0.01049530133605],[0.034771531820297,-0.029279250651598,0.022741777822375],[0.052994009107351,0.070142231881618,-0.0022376880515367]],[[0.060993488878012,-0.061146073043346,0.0034945574589074],[0.022466287016869,-0.06169655919075,-0.049990389496088],[-0.007804071996361,-0.036036491394043,0.0033031564671546]],[[0.043560322374105,0.018510928377509,-0.0077225877903402],[0.011079298332334,-0.034395787864923,0.0413135625422],[0.028588432818651,0.049827441573143,-0.0083948196843266]],[[-0.085163839161396,0.058136012405157,-0.01001291628927],[0.009269175119698,-0.0035331840626895,-0.072901122272015],[0.041927400976419,0.021276473999023,0.015100483782589]],[[0.034544669091702,0.072866447269917,0.013364867307246],[0.019075116142631,0.041073366999626,-0.06213865429163],[0.023163484409451,-0.019217554479837,0.029681496322155]],[[0.03233302757144,-0.020081732422113,-0.0055169854313135],[-0.025259366258979,-0.026368319988251,0.03577496483922],[0.0060306116938591,0.048737812787294,-0.038156233727932]],[[0.013035054318607,-0.051043458282948,0.066476695239544],[0.005683658644557,-0.069108247756958,0.0019290423952043],[0.037736728787422,0.0065414598211646,-0.0029640572611243]],[[0.029857486486435,0.024388514459133,-0.054449308663607],[0.031987246125937,0.01808568648994,-0.00014768983237445],[0.01939188875258,-0.005602743010968,0.0092971175909042]],[[0.021167159080505,-0.004694745875895,0.045013006776571],[-0.048194747418165,-0.051162090152502,0.035443115979433],[0.01130888145417,-0.018840994685888,0.030987976118922]],[[-0.031530402600765,-0.03724979609251,0.055524699389935],[-0.0026284058112651,0.0073165721260011,-0.038847204297781],[-0.031506922096014,0.015775982290506,0.080275148153305]],[[-0.046942856162786,0.040278673171997,-0.087700143456459],[-0.0312290918082,-0.066820278763771,0.010268334299326],[0.029462000355124,0.029764231294394,0.010283286683261]],[[0.069789096713066,-0.042708836495876,0.017016585916281],[-0.034086801111698,0.017730737105012,0.045487925410271],[-0.043747004121542,0.024863217025995,0.0011391572188586]],[[-0.075638525187969,-0.026694357395172,0.0078206155449152],[0.011308465152979,-0.012768260203302,0.016462793573737],[0.074436888098717,0.021216167137027,-0.02369112148881]],[[0.0010204641148448,0.038099598139524,-0.056372828781605],[-0.015625528991222,0.028980895876884,0.037967249751091],[-0.059915997087955,0.067798182368279,0.00064398848917335]],[[0.031477801501751,0.073348723351955,0.023793270811439],[0.088689155876637,-0.016789775341749,0.13560523092747],[0.036632478237152,-0.023474652320147,0.029319914057851]],[[-0.042257566004992,-0.010740236379206,0.021423256024718],[-0.0062481784261763,0.075053006410599,0.021383080631495],[-0.017362348735332,0.053814936429262,-0.039794635027647]],[[0.12393000721931,-0.0011104758596048,0.044948343187571],[0.0081676701083779,0.0082130124792457,-0.018753595650196],[0.034599684178829,0.086729645729065,0.042207419872284]],[[0.004377462901175,-0.044500753283501,0.011084559373558],[-0.050894729793072,-0.023560620844364,0.0099870711565018],[0.016849547624588,-0.060980040580034,-0.034193269908428]],[[0.046097133308649,-0.073094077408314,-0.0040422137826681],[-0.049394614994526,0.014660357497633,-0.030627043917775],[0.028988920152187,-0.049383107572794,-0.01491972245276]],[[0.036755196750164,-0.061663243919611,0.031060041859746],[-0.062536828219891,-0.072876811027527,0.044777799397707],[-0.04074626788497,-0.013397268950939,0.005251657217741]],[[-0.019362706691027,0.0078764632344246,-0.016782380640507],[0.043512009084225,-0.025008574128151,-0.075490608811378],[0.012145410291851,-0.043957810848951,-0.010687743313611]],[[0.019019119441509,-0.032655261456966,-0.013092421926558],[-0.063224755227566,-0.037934836000204,0.033113360404968],[-0.020411482080817,0.019556578248739,-0.032653871923685]],[[-0.046775408089161,0.045785043388605,-0.012021234259009],[0.017660582438111,-0.021756619215012,0.067136600613594],[0.0072305323556066,0.035573795437813,-0.026309655979276]],[[0.056667283177376,0.00062419351888821,0.013121720403433],[0.07880824059248,0.014603991992772,0.013342603109777],[-0.012441060505807,0.021758252754807,0.044698294252157]],[[0.039156422019005,0.058658178895712,-0.017795525491238],[-0.10740678757429,-0.020276643335819,0.026814704760909],[-0.018934965133667,0.0053167049773037,0.06395860016346]],[[0.0041358112357557,-0.075702965259552,-0.037944812327623],[-0.046948336064816,0.02436064556241,-0.049236580729485],[0.035244159400463,0.054568234831095,0.018494129180908]],[[0.069199956953526,0.031953394412994,0.015726946294308],[-0.029681460931897,0.05924429744482,0.081037618219852],[-0.00051899254322052,0.069604203104973,0.037318259477615]]],[[[0.0046688024885952,0.054338429123163,0.059540454298258],[-0.049405306577682,0.020165462046862,0.018576569855213],[0.030422473326325,-0.021300027146935,0.065511204302311]],[[0.0013038625475019,0.0018075918778777,-0.022259855642915],[-0.0079255299642682,-0.020250201225281,-0.004146930295974],[0.067269042134285,0.014823057688773,-0.0067855096422136]],[[0.010262921452522,-0.018788671121001,-0.027714129537344],[0.03612145036459,-0.0098683452233672,-0.053187228739262],[0.070787310600281,-0.064620085060596,-0.029730472713709]],[[-0.013349242508411,0.061671204864979,0.0531414039433],[0.047364011406898,-0.044305112212896,0.034551057964563],[0.066533118486404,-0.070879608392715,0.0173772983253]],[[-0.024239299818873,-0.0044449847191572,0.040075909346342],[0.068900771439075,-0.020569086074829,0.031329613178968],[-0.022605542093515,0.024102428928018,0.033505700528622]],[[0.023332392796874,0.051171965897083,0.067429982125759],[-0.038960788398981,0.071350045502186,-0.07448685914278],[-0.029960563406348,0.10022807121277,-0.020628627389669]],[[-0.0036820073146373,0.039671406149864,-0.086833342909813],[-0.075454756617546,0.052160773426294,0.08385457098484],[-0.0029590872582048,0.061177033931017,0.074969954788685]],[[0.03964825719595,0.010620678775012,-0.063889667391777],[0.10684751719236,0.039326354861259,0.029247455298901],[0.038725692778826,0.071093171834946,-0.0058876476250589]],[[0.065852083265781,-0.065667070448399,-0.052566897124052],[0.036734249442816,-0.018282348290086,0.021825931966305],[-0.0042714420706034,0.016929717734456,0.027235316112638]],[[-0.017130188643932,0.080132991075516,-0.041347604244947],[-0.0097527792677283,0.00099754391703755,-0.043938763439655],[0.047557681798935,-0.0073137553408742,0.13214761018753]],[[0.057234644889832,-0.067204512655735,-0.050419639796019],[0.074252583086491,-0.05742696300149,-0.12435200810432],[-0.015643717721105,0.0091636516153812,0.025835525244474]],[[0.23937593400478,0.075619101524353,0.0959118232131],[0.15458539128304,0.040140472352505,0.12149216234684],[-0.041147712618113,0.099982239305973,0.030692465603352]],[[-0.023866035044193,0.018307745456696,-0.10223953425884],[0.011003691703081,0.03013021312654,0.020156959071755],[-0.016384869813919,0.044632144272327,-0.021609487012029]],[[-0.030195446684957,-0.034572839736938,0.024669380858541],[-0.057195201516151,-0.028224617242813,-0.015572302974761],[-0.020869944244623,-0.09336369484663,0.10962972044945]],[[-0.031104456633329,-0.015199224464595,0.039078772068024],[0.16067589819431,0.042395211756229,-0.047955594956875],[0.017299417406321,0.022190095856786,0.075344443321228]],[[-0.0053818537853658,-0.057215392589569,0.020199961960316],[-0.10103999078274,-0.038406223058701,-0.019596764817834],[0.007863461971283,0.037698596715927,-0.043689746409655]],[[-0.044457819312811,0.10036670416594,-0.050165560096502],[0.09631535410881,0.013616585172713,0.040458265691996],[0.036886863410473,-0.011835334822536,-0.056003339588642]],[[0.061813272535801,0.0067773154005408,-0.033156115561724],[-0.12133432924747,-0.017037216573954,0.0045115379616618],[0.026078080758452,0.0068231630139053,-0.011696819216013]],[[-0.042113747447729,-0.021397287026048,-0.034485321491957],[-0.059723228216171,-0.0057349386624992,-0.025443429127336],[0.063340060412884,-0.081732034683228,-0.073130026459694]],[[0.091659992933273,0.075965262949467,0.079713016748428],[0.044441256672144,0.012673120945692,0.10286719352007],[0.050786960870028,-0.017154252156615,0.070417895913124]],[[0.09942314773798,-0.042751137167215,0.20067024230957],[0.015564006753266,0.065625667572021,-0.035489927977324],[0.028906788676977,0.031873740255833,-0.1032272875309]],[[0.051408383995295,0.023263830691576,0.054281074553728],[-0.00091062451247126,0.028800826519728,0.010885432362556],[-0.0086131291463971,0.045579891651869,0.079566493630409]],[[0.011597844772041,0.13746011257172,0.0048093455843627],[0.021022222936153,-0.029970107600093,0.059602476656437],[0.082140766084194,-0.012804018333554,0.086813189089298]],[[-0.047967385500669,0.012493588030338,-0.038466244935989],[-0.040577568113804,-0.050427418202162,-0.0018987011862919],[0.054845552891493,0.019945861771703,0.019333686679602]],[[-0.01348739489913,0.017126053571701,0.025664772838354],[0.017114052549005,0.032772656530142,-0.013499063439667],[-0.016979927197099,0.018712425604463,0.069507271051407]],[[-0.11328848451376,-0.028127778321505,0.04200404509902],[-0.063738726079464,0.022824378684163,0.022759256884456],[0.020657151937485,-0.1207682415843,-0.043749906122684]],[[-0.090445034205914,-0.0043640867806971,-0.071919582784176],[-0.052229065448046,0.013029357418418,-0.042381849139929],[0.0048343995586038,-0.016634276136756,0.044935520738363]],[[-0.0011194997932762,0.0065607572905719,-0.041540767997503],[0.028603360056877,-0.0083629302680492,-0.00070326321292669],[-0.057228729128838,0.048043306916952,0.14737538993359]],[[-0.046430107206106,-0.044919155538082,-0.075733304023743],[0.0015084414044395,0.052438616752625,0.0072555281221867],[0.02849524654448,0.041898377239704,-0.0042942268773913]],[[0.083210922777653,0.09097258746624,-0.022921197116375],[-0.016332311555743,-0.0084616458043456,-0.010076167061925],[0.055045455694199,-0.0099052265286446,0.018407890573144]],[[-0.016603671014309,0.013163886964321,-0.018378490582108],[-0.0064229597337544,-0.024750236421824,0.026779236271977],[-0.013064989820123,0.022753657773137,0.056153524667025]],[[0.00096382369520143,0.017484720796347,0.02642198652029],[0.069438897073269,0.070715799927711,-0.05245777964592],[-0.023872680962086,-0.014531626366079,0.077959664165974]],[[-0.029174029827118,-0.0040320944972336,-0.042389333248138],[-0.0072259418666363,-0.13174217939377,-0.0091740963980556],[-0.0025851703248918,0.072616092860699,0.019272040575743]],[[0.060489073395729,0.12352622300386,0.061075303703547],[0.025843990966678,0.028240744024515,0.027179574593902],[0.026617240160704,0.042850710451603,0.057682488113642]],[[0.038576409220695,-0.099879518151283,-0.045410048216581],[0.033924430608749,0.031570371240377,0.054003968834877],[0.018897483125329,0.029516102746129,-0.031127424910665]],[[0.054910819977522,-0.095323495566845,0.043890614062548],[-0.0049795634113252,0.052345104515553,-0.0062719085253775],[-0.054054409265518,0.027753751724958,0.041423209011555]],[[0.052277579903603,-0.048887703567743,0.021978404372931],[-0.11129193753004,-0.041855342686176,0.027642574161291],[0.062969505786896,0.0003620146017056,-0.016675082966685]],[[0.077597483992577,-0.030367292463779,0.07398709654808],[0.066441223025322,-0.0056082312949002,-0.047389954328537],[-0.010323511436582,0.02134470269084,0.055798642337322]],[[0.024177951738238,-0.018370153382421,-0.0020042802207172],[-0.00011826018453576,-0.050240695476532,0.034325379878283],[0.041770599782467,0.0021556662395597,0.051821559667587]],[[-0.092904046177864,-0.090392902493477,0.030026169493794],[0.027564618736506,-0.069050021469593,0.0051806652918458],[0.067540109157562,0.051031898707151,-0.020061219111085]],[[0.014111777767539,0.014406808651984,-0.026770148426294],[-0.0038543322589248,0.020997907966375,-0.087159119546413],[-0.0083604846149683,0.012291706167161,-0.077836528420448]],[[-0.025065165013075,-0.0039145555347204,0.078358381986618],[-0.028277453035116,0.012674514204264,-0.0099935522302985],[0.03640877828002,-0.080048583447933,-0.071090869605541]],[[0.049091063439846,-0.055769138038158,0.051240440458059],[-0.065569348633289,0.050343729555607,0.0053862989880145],[-0.0053081405349076,-0.085295878350735,0.00063272117404267]],[[-0.029659435153008,0.0096000880002975,0.036391720175743],[0.032285828143358,0.071303278207779,-0.013539589010179],[-0.061741106212139,0.041898436844349,0.032808624207973]],[[0.0042193136177957,0.046271894127131,-0.020147955045104],[0.07675451785326,0.0702123939991,-0.040563423186541],[-0.05419734492898,0.036160513758659,-0.024048650637269]],[[0.069701716303825,0.061725284904242,0.02478895150125],[0.054958708584309,0.063119150698185,0.089253969490528],[0.017410280182958,0.051987878978252,-0.04440027102828]],[[-0.029536122456193,-0.0059188916347921,-0.018544429913163],[-0.03341905772686,-0.030488649383187,-0.031145989894867],[0.0094827460125089,-0.043512672185898,0.087361685931683]],[[0.051985170692205,-0.019679514691234,0.0040765660814941],[0.0089540770277381,-0.036136690527201,0.017253287136555],[0.028524480760098,0.049253091216087,0.022974586114287]],[[0.077966459095478,-0.032776635140181,-0.018304970115423],[-0.032338194549084,-0.0006821570568718,-0.047804307192564],[0.0050165420398116,0.10673571377993,-0.055244892835617]],[[0.018059032037854,-0.099757485091686,-0.030944336205721],[0.027096981182694,-0.032156568020582,-0.036612045019865],[-0.1741532087326,0.045209862291813,-0.055782295763493]],[[-0.072309643030167,0.085320070385933,-0.0033817319199443],[0.040783770382404,-0.0073335496708751,-0.022298539057374],[0.0029108969029039,0.0070064822211862,-0.03264357894659]],[[0.043639078736305,-0.099667273461819,0.023992527276278],[-0.0066116992384195,0.031796898692846,0.038364551961422],[-0.049329899251461,0.080247618257999,0.00085771863814443]],[[0.086630694568157,0.0053779575973749,0.078673042356968],[0.024857407435775,0.017552837729454,-0.045415867120028],[0.021688373759389,0.062743037939072,-0.008326007053256]],[[0.009687271900475,0.066440165042877,0.017656581476331],[0.095106244087219,-0.012420036830008,0.093698471784592],[-0.023896023631096,0.09098295122385,-0.011936976574361]],[[0.060279663652182,-0.067827843129635,0.045582227408886],[0.044661104679108,-0.059424579143524,0.0014134627999738],[0.014858081005514,-0.021053925156593,-0.0068830470554531]],[[0.07204695045948,-0.0067856209352612,-0.063566602766514],[-0.073645673692226,0.0064467121846974,-0.013723068870604],[-0.0065736621618271,0.007888657040894,-0.0056932349689305]],[[-0.076914891600609,0.038899663835764,-0.041611317545176],[0.037101987749338,0.036343820393085,0.0011030043242499],[-0.05155398696661,0.044797901064157,0.015428939834237]],[[0.087709486484528,-0.029558202251792,0.038133926689625],[0.055019218474627,0.021724704653025,0.0091392248868942],[-0.10100718587637,0.15156216919422,-0.031132198870182]],[[0.054003488272429,0.01073294878006,-0.052793797105551],[0.020032314583659,0.03625538572669,0.043623302131891],[-0.017468614503741,-0.0078616980463266,-0.0023679262958467]],[[-0.079075008630753,0.0069609060883522,-0.0097768222913146],[-0.019610753282905,-0.044396039098501,0.11077085882425],[0.10321027040482,0.023335572332144,0.054137703031301]],[[0.014672449789941,-0.040613684803247,-0.027917481958866],[0.084823973476887,-0.027748616412282,0.034941282123327],[0.013455156236887,-0.010915802791715,-0.076091729104519]],[[-0.032465800642967,-0.040417272597551,0.01701271161437],[-0.07603669911623,-0.0065585202537477,-0.01924573816359],[-0.066821955144405,0.055139284580946,-0.037382647395134]],[[-0.038862787187099,-0.022006032988429,0.12047720700502],[0.031793992966413,0.016809169203043,0.00658203009516],[0.016564225777984,0.066099025309086,0.013828508555889]],[[-0.062492102384567,0.026101039722562,0.045827262103558],[0.015990005806088,-0.030187154188752,0.045191861689091],[-0.018935173749924,0.075693659484386,-0.025031063705683]],[[-0.077357605099678,0.031238062307239,0.042547456920147],[-0.059531092643738,-0.047147389501333,0.034668557345867],[0.0041526076383889,-0.012648995965719,0.0098084351047873]],[[-0.062635466456413,0.059197083115578,-0.081149101257324],[-0.067062392830849,0.011976305395365,-0.00092529866378754],[0.064676314592361,0.021416587755084,0.01563305594027]],[[0.054147634655237,0.047630287706852,-0.050391882658005],[-0.030526865273714,0.086437962949276,-0.0071733663789928],[0.086277008056641,0.066983282566071,0.010020490735769]],[[0.055783458054066,-0.02926929295063,0.10379898548126],[-0.12340766936541,0.018978182226419,0.01013639755547],[-0.0019024088978767,-0.031337272375822,0.015400779433548]],[[-0.064566396176815,-0.015638500452042,-0.04962220415473],[-0.069147415459156,0.015561208128929,0.075317583978176],[-0.027321249246597,-0.056051947176456,-0.11901649087667]],[[-0.0042983451858163,0.026035126298666,0.056156169623137],[-0.051197804510593,-0.018838616088033,0.075510561466217],[0.014683520421386,0.012096844613552,0.085397936403751]],[[0.019968472421169,0.043988734483719,-0.02041501738131],[-0.0029932491015643,0.0085350209847093,0.0211743991822],[-0.014574026688933,-0.021270154044032,0.10010740906]],[[0.054808255285025,0.066049993038177,0.050011496990919],[0.14682574570179,0.012007029727101,0.085201896727085],[0.04263823851943,0.080427341163158,0.085618153214455]],[[0.018803521990776,-0.0018732320750132,0.019746966660023],[-0.051105044782162,0.027923554182053,0.061609964817762],[-0.011059280484915,0.1073629334569,0.036095146089792]],[[0.00058347202138975,0.098411098122597,0.019423289224505],[0.054919954389334,0.039888825267553,0.038163404911757],[0.05206873267889,-0.066851228475571,-0.033879827708006]],[[0.043394297361374,-0.0015968405641615,0.072080790996552],[-0.033697102218866,0.076017990708351,-0.07056150585413],[-0.084905922412872,-0.085940465331078,0.032609362155199]],[[-0.026656072586775,0.10319066047668,-0.032296780496836],[-0.017052141949534,0.028104772791266,0.015493215993047],[0.036962632089853,-0.041106879711151,0.019765667617321]],[[-0.012028253637254,-0.080542579293251,0.014884639531374],[-0.087125986814499,0.037984814494848,-0.093014240264893],[-0.049896221607924,-0.065819337964058,-0.027389846742153]],[[-0.03074362501502,0.028287140652537,-0.026919566094875],[0.019051607698202,-0.032326236367226,0.028358895331621],[0.0039257206954062,0.10611601173878,0.063596025109291]],[[-0.0038171850610524,0.0093149915337563,-0.0022349020000547],[-0.0077480794861913,-0.069379709661007,-0.063406676054001],[-0.084119543433189,0.0072905928827822,0.018482247367501]],[[0.068572096526623,-0.033702023327351,0.066919684410095],[-0.037870567291975,0.062672078609467,0.05296128988266],[-0.0039240103214979,0.0037188939750195,-0.045970670878887]],[[0.17030440270901,0.0584412291646,0.10088569670916],[0.066652148962021,0.11309505999088,0.096472881734371],[-0.024745762348175,0.12722037732601,0.0017121403943747]],[[0.02103365957737,0.018237046897411,0.091679766774178],[-0.031407959759235,-0.071696631610394,0.015443195588887],[0.11756061762571,-0.00090243923477829,-0.047457616776228]],[[0.0052904118783772,0.09308136254549,0.04376882687211],[0.064840227365494,-0.011192673817277,-0.031462151557207],[-0.0050212685018778,0.038502752780914,0.034511111676693]],[[-0.029224881902337,-0.03075523301959,0.019553225487471],[0.075351320207119,0.0093809273093939,0.0065202889963984],[0.0075452853925526,0.0023678042925894,0.053699351847172]],[[0.005045703612268,0.05731800198555,-0.0034055928699672],[0.047348026186228,0.055512178689241,-0.036361787468195],[0.034207224845886,-0.043198369443417,-0.0013978435890749]],[[0.090820498764515,0.066179156303406,-0.039943605661392],[-0.0041358885355294,-0.061706844717264,-0.024469846859574],[0.078710339963436,0.073090732097626,-0.056564509868622]],[[0.0013947688275948,-0.020220408216119,-0.016252011060715],[-0.012094762176275,0.012236013077199,-0.027824675664306],[-0.050578903406858,-0.054696097970009,-0.038130335509777]],[[0.093100570142269,0.023518579080701,0.057088512927294],[0.041394554078579,0.027985095977783,-0.0060067321173847],[0.007871369831264,0.068202689290047,0.025027258321643]],[[0.0027605779469013,0.019459739327431,0.030961098149419],[0.017154524102807,0.011986309662461,0.058114416897297],[-0.0073680216446519,-0.016579648479819,0.045918148010969]],[[-0.056807149201632,0.076622903347015,0.043629016727209],[-0.024447955191135,-0.063127651810646,-0.0074677080847323],[-0.027230389416218,0.0084157334640622,-0.037240799516439]],[[0.0130984634161,-0.039087746292353,0.0034710720647126],[0.058416850864887,0.034587882459164,0.07201736420393],[0.034361831843853,0.023667752742767,0.062074109911919]],[[0.052461851388216,0.052359599620104,-0.011217403225601],[-0.037317983806133,0.02509948797524,-0.0065415757708251],[0.0061224638484418,-0.057886436581612,0.0046924334019423]],[[-0.039573457092047,-0.024869618937373,-0.010953322052956],[-0.029286796227098,-0.064709790050983,0.0348338522017],[-0.085265569388866,0.059961251914501,-0.017338613048196]],[[-0.025319812819362,0.082035891711712,-0.023373456671834],[0.049240980297327,0.030076405033469,-0.050765700638294],[0.038556523621082,0.036323558539152,0.062991231679916]],[[0.029322579503059,0.071417167782784,-0.073527857661247],[-0.046032559126616,0.098548218607903,0.052081357687712],[-0.0088519090786576,-0.03951396048069,0.051657415926456]],[[0.097806304693222,0.053569812327623,0.03460531681776],[-0.0041386187076569,0.050492469221354,0.00088601431343704],[-0.01444495934993,-0.019667560234666,0.043220542371273]],[[0.093892127275467,-0.047829985618591,0.012982815504074],[-0.0045084003359079,0.053698662668467,0.11071443557739],[0.005167864728719,0.019639227539301,0.043490033596754]],[[-0.030100122094154,-0.047692939639091,0.059847570955753],[0.061199527233839,-0.0020832261070609,0.053454454988241],[-0.0081410938873887,-0.010877856053412,0.0071840290911496]],[[0.049211233854294,0.064367510378361,-0.043135888874531],[-0.015129460953176,-0.030199198052287,-0.040120556950569],[-0.031562577933073,0.10449959337711,0.013030136935413]],[[-0.039224114269018,-0.1259344369173,0.0042106853798032],[-0.070756897330284,-0.030262673273683,-0.016553672030568],[0.028556613251567,-0.0028756561223418,-0.055120285600424]],[[-0.031822767108679,-0.017813390120864,-0.063647411763668],[-0.022395644336939,-0.072792626917362,0.038036778569221],[0.0033062237780541,0.031197596341372,-0.019244043156505]],[[0.11753027141094,0.051252149045467,-0.021462766453624],[0.087447017431259,0.060131128877401,0.011991707608104],[0.046000361442566,0.063951052725315,0.038218133151531]],[[-0.01765207387507,0.024929638952017,-0.016452189534903],[0.092552319169044,0.018722116947174,0.058608412742615],[-0.054204422980547,0.039857804775238,-0.050948545336723]],[[0.050822932273149,-0.066004700958729,-0.034926660358906],[0.016721466556191,-0.014451315626502,-0.031897224485874],[-0.03155816718936,-0.054497826844454,-0.076165124773979]],[[0.096637666225433,-0.033419258892536,0.033987656235695],[-0.078892059624195,0.1757205426693,0.050707258284092],[-0.048581816256046,-0.054638154804707,-0.064525127410889]],[[0.03789135441184,0.031896363943815,0.048573393374681],[0.0095652444288135,-0.015867406502366,-0.0036868965253234],[-0.004787742625922,0.014822055585682,0.021495895460248]],[[-0.063377648591995,0.0064202779904008,0.013698295690119],[0.0020918771624565,-0.072116695344448,-0.046334277838469],[-0.044997680932283,-0.0067333695478737,0.027224229648709]],[[0.070803970098495,-0.018717966973782,0.069788843393326],[0.080711342394352,0.0039345161058009,-0.030657613649964],[-0.051218997687101,-0.011660831980407,0.071022048592567]],[[-0.037226479500532,0.053883988410234,0.086576782166958],[0.073212191462517,0.054238397628069,0.080681942403316],[0.061717160046101,0.075537443161011,0.01600893959403]],[[-0.017494466155767,-0.096961930394173,0.012695838697255],[0.1307040899992,-0.056419104337692,0.023413609713316],[0.078068718314171,0.04354502633214,0.00058899843133986]],[[0.0015571764670312,-0.0087536759674549,0.0027156076394022],[0.015107075683773,-0.010172677226365,0.03987118974328],[-0.098972804844379,0.0057911793701351,0.0041986159048975]],[[0.039323151111603,0.083726711571217,-0.0090542621910572],[0.043919015675783,-0.074656642973423,0.0033524122554809],[-0.083192616701126,-0.0158920455724,0.031150531023741]],[[0.029493413865566,0.034559719264507,0.084989972412586],[0.04346390068531,-0.065287955105305,-0.0093376096338034],[-0.031705837696791,0.023086233064532,-0.0010999152436852]],[[-0.10772879421711,0.045872397720814,-0.027424789965153],[-0.027068192139268,-0.0077906809747219,-0.0073867407627404],[-0.054106798022985,0.034074939787388,0.0007002690108493]],[[0.18979544937611,0.038573645055294,-0.059233620762825],[-0.0031810901127756,0.069480128586292,-0.036680374294519],[0.10930164158344,-0.01277568936348,-0.017666604369879]],[[0.011869243346155,-0.0082201873883605,-0.047398518770933],[0.065644808113575,0.021972937509418,-0.015380252152681],[0.021046079695225,0.0038206127937883,0.053051099181175]],[[0.041464895009995,0.019039668142796,0.074170924723148],[0.027493538334966,-0.034348484128714,0.071113087236881],[0.049880504608154,0.026966849341989,-0.045098703354597]],[[0.016849398612976,0.026466771960258,0.0081419395282865],[0.0016431057592854,0.041002657264471,0.0052466061897576],[0.042210444808006,0.031459659337997,-0.010787754319608]],[[0.1172066628933,-0.018025567755103,-6.218421185622e-05],[0.10927536338568,0.023791119456291,0.051631011068821],[0.053486578166485,-0.047448039054871,-0.017281446605921]],[[0.078499376773834,-0.054850071668625,0.020557822659612],[0.10091255605221,-0.039614755660295,-0.0081785945221782],[0.012310391291976,0.030721267685294,0.0040883412584662]],[[0.025133494287729,-0.023232070729136,0.076816968619823],[-0.019692156463861,0.021979903802276,-0.049103759229183],[0.040472518652678,-0.067863412201405,0.053652327507734]],[[-0.030944395810366,0.055257432162762,0.0041471333242953],[0.0028363217134029,0.086842253804207,0.0036122782621533],[-0.030544355511665,-0.03137144818902,0.099747285246849]],[[0.045429464429617,-0.0064572361297905,0.0036051624920219],[0.007452430203557,0.1110741943121,0.029079558327794],[-0.061180137097836,-0.040984753519297,0.036271546036005]],[[-0.044932477176189,-0.0040664132684469,0.036303166300058],[0.013461473397911,0.011122922413051,0.0041437637992203],[0.098373718559742,0.075460225343704,-0.027900397777557]],[[0.039357800036669,0.037783179432154,0.0022543065715581],[0.046309471130371,0.11599764972925,-0.013734341599047],[-0.092143550515175,0.054874334484339,0.13038395345211]],[[0.02054032124579,-0.072530321776867,0.012570914812386],[0.034003958106041,-0.080658122897148,-0.10818616300821],[0.10158886015415,0.099420771002769,-0.0023786523379385]],[[0.0035215988755226,0.035203527659178,0.047139171510935],[0.037712585180998,-0.014039892703295,0.037038039416075],[0.13050790131092,0.10254089534283,0.027495635673404]],[[0.013960615731776,-0.028239581733942,-0.029628224670887],[-0.0168851390481,0.014536828733981,0.021982988342643],[-0.019621131941676,-0.0504370033741,0.044037021696568]]],[[[-0.016834853217006,0.019443174824119,0.013751013204455],[0.037929520010948,0.038894310593605,0.0030323318205774],[-0.051665041595697,0.0028289700858295,-0.066443122923374]],[[0.020579691976309,0.051853217184544,0.057547502219677],[0.020001139491796,-0.0079059209674597,0.054154843091965],[-0.028675286099315,-0.019649133086205,-0.027097571641207]],[[-0.0035687545314431,0.0047310516238213,0.13126391172409],[-0.018101131543517,-0.072842314839363,-0.046129692345858],[-0.035004410892725,-0.029391327872872,0.046179573982954]],[[-0.0049529746174812,0.014877916313708,0.0062864483334124],[-0.010031961835921,-0.0047833765856922,0.036204699426889],[0.0307851806283,-0.022652408108115,-0.067951835691929]],[[-0.018616719171405,-0.045042708516121,0.040301229804754],[-0.039184626191854,-0.048556908965111,0.023065313696861],[0.017636040225625,0.04721774533391,-0.026703543961048]],[[0.033486690372229,0.028830310329795,0.00487572979182],[-0.024613428860903,0.0036816496867687,0.038316786289215],[-0.053345788270235,0.014093953184783,0.004390805028379]],[[0.011378203518689,-0.042239438742399,-0.03858207911253],[0.0055973222479224,0.006623163819313,0.038945507258177],[-0.063166856765747,0.031949508935213,0.047498252242804]],[[0.023977313190699,0.0059770974330604,0.00073364702984691],[0.0041475789621472,0.045261606574059,0.036591865122318],[-0.054900068789721,0.013989678584039,-0.012898150831461]],[[-0.05076614767313,-0.055752288550138,0.052847888320684],[0.02797525934875,0.007220181170851,-0.0035613877698779],[0.026274597272277,0.042045701295137,-0.077259711921215]],[[0.00099374214187264,0.01471777074039,-0.041379489004612],[0.0034855203703046,0.0032397161703557,0.0030588782392442],[-0.0073850555345416,0.0068729519844055,0.0048120194114745]],[[0.022038100287318,0.08976273983717,-0.0076980539597571],[0.0029199167620391,-0.014815513975918,0.0097239390015602],[-0.016632772982121,-0.10436636209488,-0.0068127228878438]],[[0.044533167034388,0.017225420102477,0.017598675563931],[0.030514642596245,-0.064796462655067,-0.037294562906027],[-0.031774539500475,0.022895481437445,0.044569987803698]],[[-0.013194153085351,-0.037101503461599,-0.0071021737530828],[0.02667005173862,-0.050540737807751,0.014610959216952],[-0.00091928674373776,0.046609934419394,-0.01561834756285]],[[-0.012696613557637,0.068275481462479,-0.023675689473748],[0.04140729829669,-0.034587562084198,-0.011915666982532],[0.019745651632547,-0.0042193131521344,0.019129393622279]],[[0.048014402389526,-0.029226494953036,-0.024913975968957],[-0.034215196967125,0.071124002337456,-0.046456407755613],[0.068168751895428,0.037543591111898,-0.010055294260383]],[[-0.010337044484913,0.0083663370460272,-0.0077590476721525],[0.042173307389021,0.047240570187569,0.030442632734776],[-0.022289033979177,0.050118196755648,0.057947255671024]],[[0.0030258207116276,0.040964361280203,0.022393759340048],[0.068370521068573,-0.037694171071053,-0.034176230430603],[0.024900820106268,0.0012219068594277,-0.043404586613178]],[[0.036399245262146,0.028955612331629,-0.019400456920266],[0.016635892912745,-0.045108016580343,-0.048928320407867],[0.013249807991087,0.054058812558651,0.010848491452634]],[[0.076510906219482,0.010457206517458,-0.00091008056188002],[-0.0074476692825556,-0.011496811173856,0.014172052033246],[0.016679063439369,-0.023656347766519,0.034202255308628]],[[-0.01471905503422,-0.0032913531176746,0.013154182583094],[0.087062075734138,0.044164415448904,-0.0022917941678315],[0.0079387743026018,-0.025313176214695,-0.03145495429635]],[[-0.0030201396439224,0.018349399790168,-0.043494462966919],[0.015532358549535,0.018041083589196,-0.066681489348412],[0.0594895593822,0.020443212240934,0.022975616157055]],[[0.055404640734196,-0.029763340950012,0.013055829331279],[-0.011227006092668,0.021409094333649,0.044907931238413],[-0.019593989476562,0.028515473008156,0.012365290895104]],[[-0.051265358924866,-0.033509824424982,0.017178332433105],[-0.0073158568702638,0.022517742589116,0.037910062819719],[0.030189907178283,-0.017003901302814,-0.0019625066779554]],[[-0.010184658691287,0.053199101239443,0.1165042668581],[-0.034508276730776,-0.00077496934682131,0.043402779847383],[-0.084453672170639,0.016527308151126,-0.057185813784599]],[[0.036403190344572,-0.010519186966121,0.081097863614559],[-0.022693574428558,-0.058617226779461,0.022925199940801],[0.049497075378895,-0.04287975654006,0.043744448572397]],[[0.067844338715076,-0.0082362927496433,0.044160082936287],[-0.019874524325132,0.02504694648087,0.077708207070827],[0.013358425348997,0.011713685467839,-0.064555279910564]],[[-0.018632214516401,-0.023106029257178,-0.03212670609355],[-0.013103665784001,0.076343588531017,0.034361336380243],[-0.015169237740338,0.073685333132744,0.024320153519511]],[[-0.0047389045357704,-0.029421992599964,0.14311900734901],[-0.011705541983247,0.0080937733873725,-0.011924305930734],[-0.021232785657048,-0.039674874395132,0.0051583773456514]],[[0.024330891668797,-0.052329767495394,0.0228052418679],[-0.05355941131711,0.027471218258142,0.010376211255789],[-0.051201652735472,-0.085481755435467,0.11514675617218]],[[0.074524268507957,-0.027361281216145,-0.018922025337815],[0.013499799184501,-0.061428099870682,-0.075428135693073],[0.00080120732309297,0.06336072832346,-0.012133219279349]],[[0.0011797986226156,-0.024452026933432,0.093301460146904],[0.0033212376292795,0.002724023303017,0.059955276548862],[-0.020038181915879,0.0095506059005857,-0.029574856162071]],[[0.052709918469191,0.0092645501717925,-0.037775825709105],[-0.032196741551161,0.031876742839813,0.066983833909035],[-0.026892222464085,0.044322207570076,0.055970203131437]],[[-0.019751185551286,-0.021811572834849,0.052790768444538],[0.010547838173807,-0.0049097775481641,-0.016732836142182],[0.0092082368209958,0.03053692728281,-0.078739918768406]],[[0.051536291837692,-0.050661716610193,0.030349718406796],[0.0067273937165737,-0.0079725841060281,-0.044769175350666],[0.05986800417304,0.0091815199702978,-0.029729777947068]],[[-0.032681282609701,-0.044559765607119,0.0035021328367293],[0.014542745426297,0.037692606449127,0.010911709628999],[0.031396478414536,-0.028763614594936,0.049931101500988]],[[0.025427531450987,-0.0019375893753022,0.013510808348656],[-0.091229073703289,-0.035432953387499,-0.013674918562174],[0.039584636688232,0.0039471285417676,0.074027262628078]],[[0.0035094604827464,0.069196805357933,-0.010886770673096],[0.029567943885922,-0.021588139235973,0.0020388250704855],[-0.025647934526205,-0.045535024255514,0.047450821846724]],[[0.029862156137824,-0.068188406527042,0.024111956357956],[0.0052539343014359,-0.0046611921861768,0.01500575710088],[0.01386412512511,-0.04094872623682,0.031620308756828]],[[-0.030956944450736,0.043505571782589,-0.017993861809373],[0.08503170311451,-0.058403015136719,0.018678080290556],[-0.020517783239484,-0.073569156229496,0.013791390694678]],[[-0.021220853552222,0.088165491819382,-0.0026482092216611],[0.049165811389685,0.059200398623943,-0.038576848804951],[0.026193244382739,0.092528559267521,-0.013177801854908]],[[0.0046791937202215,-0.0076655247248709,-0.0085905529558659],[-0.016455229371786,0.021216450259089,0.066899962723255],[0.016415128484368,0.023970367386937,-0.015020918101072]],[[-0.039832420647144,0.11375357955694,-0.0032855414319783],[0.013386021368206,0.0616061873734,-0.01039254013449],[-0.02293231151998,-0.037139013409615,-0.047261718660593]],[[0.034324657171965,0.029518337920308,-0.011733083054423],[0.015104996040463,-0.076096877455711,0.027586679905653],[0.060093682259321,0.015845129266381,-0.017169998958707]],[[0.061637409031391,0.010354249738157,-0.053018338978291],[-0.033683784306049,0.046150181442499,-0.0074086794629693],[-0.0047838212922215,0.013707228936255,-0.038302794098854]],[[0.021009303629398,-0.040585931390524,0.026896640658379],[0.0097893960773945,0.0039690742269158,0.024588741362095],[-0.0051556783728302,-0.078497990965843,-0.0021027997136116]],[[-0.062917329370975,-0.033620733767748,0.079211160540581],[0.01452258694917,0.013062125071883,-0.023129677399993],[-0.027844730764627,-0.0090218000113964,0.040447991341352]],[[-0.0051631894893944,-0.042419124394655,-0.029228774830699],[0.016744535416365,0.014023620635271,0.025227911770344],[-0.027534218505025,-0.026973972097039,0.051814544945955]],[[0.059915773570538,-0.031115537509322,0.0049973437562585],[-0.050051596015692,-0.015062446705997,-0.011006386950612],[0.02207063138485,-0.010861675255001,0.0046069887466729]],[[0.019169377163053,-0.063844569027424,-0.027832623571157],[0.011434556916356,-0.037858594208956,-0.078178383409977],[-0.081630818545818,-0.0047068586573005,-0.014762783423066]],[[-0.013846195302904,0.018193647265434,0.0071208239533007],[0.034867662936449,0.05270641297102,0.073429599404335],[-0.0037099663168192,0.0017573612276465,-0.046222217381001]],[[0.042203973978758,-0.045090395957232,0.0057095144875348],[0.043606352061033,0.010494406335056,-0.10062229633331],[-0.033878862857819,0.013646569103003,0.048534978181124]],[[0.020155195146799,-0.038779251277447,-0.0013921743957326],[0.06012050062418,0.013072817586362,0.032343465834856],[0.040204204618931,0.0056570693850517,0.012053941376507]],[[0.064368180930614,-0.001759763690643,0.023861292749643],[0.045151945203543,0.058319505304098,-0.06480661034584],[0.041413806378841,-0.051436573266983,-0.038748886436224]],[[-0.019470997154713,0.022818660363555,0.071128480136395],[-0.10698832571507,0.089060299098492,0.032411269843578],[-0.047601945698261,0.073494218289852,-0.069526195526123]],[[0.0061246622353792,-0.0013956893235445,0.057177610695362],[0.04430166631937,-0.038443893194199,0.024141313508153],[0.0033214145805687,0.07069169729948,0.021017350256443]],[[-0.033885821700096,0.0056635877117515,0.0043596173636615],[-0.0065262159332633,0.023221202194691,0.032311528921127],[0.038699693977833,0.012919785454869,-0.0094570852816105]],[[0.014055827632546,0.033317089080811,-0.03367381170392],[-0.015419406816363,0.0081108566373587,0.038365844637156],[0.038399182260036,-0.018036998808384,-0.026984121650457]],[[0.055862732231617,0.0055880635045469,-0.024742696434259],[0.014895132742822,-0.044250413775444,0.01139912661165],[0.014585298486054,-0.040319286286831,-0.011751209385693]],[[-0.03955926373601,0.01691566221416,0.027432842180133],[-0.016382964327931,-0.020116915926337,0.037096608430147],[0.066874377429485,0.0070662396028638,-0.050114162266254]],[[0.0079046925529838,0.10685691982508,0.0029823810327798],[0.0010564067633823,0.075740307569504,-0.058691024780273],[-0.024324802681804,0.049198858439922,0.0015622797654942]],[[0.054355911910534,0.05163349211216,-0.038143020123243],[0.028340730816126,0.057058803737164,0.0046393289230764],[-0.0079825995489955,0.0094339177012444,-0.046390868723392]],[[0.0094391601160169,-0.036596275866032,-0.031784556806087],[0.033822424709797,-0.04216767847538,0.0071752090007067],[-0.017701655626297,-0.0093962028622627,0.034121036529541]],[[-0.056557476520538,0.03000782802701,-0.054397858679295],[0.015407090075314,-0.039521880447865,-0.026469184085727],[0.0092568108811975,-0.017776992172003,-0.016947358846664]],[[-0.0089434310793877,0.026047140359879,0.027601327747107],[0.014590975828469,0.074208341538906,-0.056807395070791],[0.018210710957646,-0.00014291099796537,-0.031133512035012]],[[-0.0096263280138373,0.0025224923156202,-0.0045126560144126],[0.047709736973047,0.012146113440394,0.027045641094446],[0.021813472732902,0.078981406986713,-0.03992872685194]],[[-0.023862145841122,-0.0071233976632357,0.071055948734283],[-0.068577989935875,0.014941977337003,-0.08129271119833],[0.048486806452274,0.044616144150496,-0.044607106596231]],[[0.016442429274321,-0.0028971673455089,0.074761435389519],[0.072776086628437,-0.054554898291826,0.018709944561124],[0.056331150233746,0.023062804713845,0.0034558144398034]],[[0.065802283585072,0.050227474421263,0.015924634411931],[0.059440318495035,0.045193698257208,0.003048297483474],[0.045995857566595,-0.049269195646048,-0.027666792273521]],[[0.0054895272478461,0.028409237042069,-0.07619546353817],[-0.022826729342341,0.044965393841267,-0.036177381873131],[-0.063952833414078,-0.003514138283208,-0.023754073306918]],[[0.10452658683062,0.014316729269922,0.010097517631948],[-0.0089453775435686,-0.028812726959586,0.026323460042477],[0.11600124835968,-0.053874149918556,0.022593976929784]],[[0.025249691680074,0.0074596181511879,-0.0017476063221693],[0.0028758912812918,0.075834274291992,0.019964380189776],[-0.01967716217041,0.012301100417972,-0.010070341639221]],[[0.036480642855167,-0.057038627564907,0.055608958005905],[-0.018182033672929,0.015570922754705,0.048290181905031],[-0.03386988863349,0.04217304289341,-0.074710376560688]],[[0.066806569695473,-0.02875055372715,0.048675734549761],[0.077365912497044,-0.053908180445433,0.0089898547157645],[-0.0052310554310679,0.017637867480516,0.0026137717068195]],[[0.051461353898048,-0.059717025607824,0.027048729360104],[-0.01415894459933,0.033602811396122,0.064684957265854],[-0.016446808353066,-0.038336042314768,-0.064054518938065]],[[0.046055290848017,0.028280152007937,-0.010938011109829],[-0.019409786909819,0.020293645560741,-0.0011778631014749],[0.0079361395910382,0.03791930153966,0.054619733244181]],[[0.10378844290972,-0.020515091717243,-0.023099232465029],[0.061797507107258,0.011097953654826,-0.013983611017466],[0.034043218940496,0.059392862021923,-0.020510068163276]],[[0.0044236988760531,-0.0014120145933703,0.029401050880551],[0.057269562035799,-0.036125771701336,-0.099133871495724],[-0.00043286313302815,0.043262932449579,0.00847502425313]],[[0.04047093167901,0.090806998312473,0.062459569424391],[0.050673924386501,-0.064909413456917,0.035190001130104],[-0.060126394033432,0.0086035300046206,-0.032657828181982]],[[-0.0076516079716384,0.049589674919844,-0.030166363343596],[-0.023827781900764,-0.013798750936985,0.075242683291435],[0.014776647090912,0.0047992956824601,-0.017280608415604]],[[-0.031753174960613,-0.021929802373052,-0.070636413991451],[-0.017513755708933,-0.075375638902187,-0.045737523585558],[0.032613314688206,0.10396657884121,-0.05374514311552]],[[0.073708936572075,-0.05785308778286,-0.047507744282484],[0.050774324685335,0.01637939363718,0.033165816217661],[-0.047295499593019,0.095407456159592,0.061710242182016]],[[-0.0098844887688756,-0.010051713325083,-0.021376516669989],[0.0013108341954648,0.0037549016997218,-0.05281838029623],[0.024119174107909,-0.011448020115495,0.038529254496098]],[[0.039561912417412,0.0029023056849837,-0.05564834177494],[0.015475475229323,-0.058339219540358,-0.047518383711576],[-0.037148363888264,0.025529334321618,0.0038755398709327]],[[0.013243118301034,-0.069212421774864,0.00052701239474118],[0.043207578361034,-0.022955575957894,0.072886094450951],[0.095941416919231,0.023543840274215,-0.026346005499363]],[[-0.0062593198381364,0.06041057035327,0.045744556933641],[-0.045144356787205,0.020641587674618,0.030454197898507],[0.033178307116032,0.017519133165479,-0.038493368774652]],[[-0.014687172137201,-0.10553527623415,-0.045994225889444],[0.039945062249899,-0.055051986128092,-0.018562575802207],[0.022656664252281,0.074518777430058,0.076402232050896]],[[0.023824887350202,-0.037442613393068,-0.042587108910084],[0.050785299390554,0.026136610656977,-0.078925520181656],[0.0021903978195041,-0.0029263983014971,-0.010166808962822]],[[0.05655936524272,-0.041747596114874,0.069730691611767],[-0.0034706180449575,0.0030763209797442,-0.043028082698584],[0.0031632108148187,0.059584498405457,-0.0022685257717967]],[[0.091861844062805,-0.035044614225626,0.018272442743182],[0.071942955255508,-0.011908660642803,-0.017262171953917],[-0.051700625568628,0.028439601883292,-0.00012734222400468]],[[-0.041023556143045,-0.010575700551271,-0.046036571264267],[-0.033380836248398,0.064676888287067,0.0088634388521314],[0.075505144894123,-0.02361873164773,0.046837255358696]],[[-0.0087809385731816,0.01349975168705,-0.037065722048283],[0.04357735440135,-0.021449603140354,0.021037088707089],[0.010618667118251,0.033547639846802,0.050727363675833]],[[-0.059731367975473,-0.0040307599119842,0.01557919755578],[-0.086704447865486,-0.021053999662399,0.044186767190695],[-0.033031810075045,0.014736587181687,0.024025714024901]],[[0.060304056853056,0.071360275149345,-0.00025261781411245],[0.010140326805413,0.010468975640833,0.031425390392542],[0.060080420225859,-0.023785427212715,-0.0037991013377905]],[[-0.033115025609732,0.0080936094745994,0.03946428000927],[0.083857722580433,0.031577866524458,-0.029829204082489],[-0.047874711453915,0.079500861465931,-0.0047550508752465]],[[0.060862690210342,-0.050434093922377,-0.038043506443501],[-0.05685630813241,-0.0017388617852703,-0.010393901728094],[0.037582580000162,0.066855765879154,0.0082481084391475]],[[-0.010299555957317,0.040483415126801,0.031298574060202],[-0.034474726766348,-0.032353464514017,0.036918327212334],[-0.068480126559734,-0.06388782709837,-0.0051063704304397]],[[0.023871153593063,0.0055588260293007,-0.075452342629433],[-0.095741763710976,0.01866190880537,0.018911609426141],[0.062152251601219,0.059133626520634,-0.029784938320518]],[[-0.039177887141705,0.087323859333992,-0.044246982783079],[-0.019534749910235,-0.016693266108632,0.014644163660705],[-0.015195510350168,-0.024292143061757,-0.070409022271633]],[[0.038665633648634,-0.018488073721528,0.03324706107378],[-0.040174040943384,0.022801322862506,-0.0068769729696214],[0.054399214684963,0.011500402353704,-0.021001491695642]],[[0.017835406586528,0.017327049747109,-0.064677596092224],[-0.044879648834467,-0.0099753867834806,0.017809337005019],[-0.0099959559738636,-0.029775330796838,-0.0085372943431139]],[[-0.050200905650854,-0.037835162132978,0.026531150564551],[0.068048425018787,0.046151544898748,0.014714377000928],[-0.042610444128513,-0.013925003819168,0.018340557813644]],[[0.024085909128189,-0.014388364739716,0.043489947915077],[-0.010712902992964,-0.03078848682344,0.00085465417942032],[-0.020075805485249,0.0037710356991738,0.026374984532595]],[[-0.014104773290455,-0.00072126334998757,0.019805241376162],[-0.012353640981019,-0.05945361033082,0.033694215118885],[0.0020331339910626,-0.045108020305634,0.029149023815989]],[[0.045206390321255,-0.027325268834829,0.041727993637323],[-0.00466318288818,0.043876547366381,0.034583006054163],[0.0067330901511014,-0.043516922742128,-0.013387336395681]],[[0.079776965081692,0.083990216255188,-0.04153498634696],[0.012183592654765,-0.028285969048738,0.031836777925491],[0.025353740900755,-0.00052307010628283,-0.076957665383816]],[[0.068901970982552,0.061117850244045,0.027393447235227],[0.024433471262455,0.0064433705992997,0.011231688782573],[-0.0073000793345273,0.0034534092992544,0.099079772830009]],[[-0.014784888364375,-0.0018772250041366,0.020954921841621],[0.015790041536093,-0.0061652581207454,-0.043990816920996],[0.040839493274689,0.012933250516653,0.04157854989171]],[[0.019020456820726,-0.0061112917028368,0.009080589748919],[-0.047235175967216,-0.047835420817137,-0.00025461535551585],[0.083571821451187,0.024865804240108,-0.024194575846195]],[[-0.07051595300436,0.00070941518060863,-0.054084490984678],[0.035618174821138,-0.024541137740016,-0.0040078954771161],[0.048560250550508,0.015714999288321,-0.013946327380836]],[[0.0085739251226187,-0.077846378087997,-0.054303649812937],[-0.057445783168077,-0.10125323385,-0.018828948959708],[-0.1049290522933,-0.02677252329886,-0.0049195722676814]],[[0.0085746552795172,0.038926221430302,-0.012859283015132],[0.0081946272403002,0.079258844256401,0.015147227793932],[0.030885165557265,0.1059058830142,-0.03586994856596]],[[-0.044485606253147,-0.013043683953583,0.00662832101807],[-0.00063621992012486,0.01380056142807,0.043799500912428],[0.00072025379631668,-0.0030532754026353,0.04765697568655]],[[0.022515675053,-0.058183945715427,-0.004537629429251],[0.071727439761162,0.078335404396057,0.040864393115044],[-0.025201495736837,0.032909270375967,-0.034833200275898]],[[0.023607464507222,-0.0099736638367176,0.033141475170851],[0.070648618042469,-0.025048537179828,-0.047504767775536],[0.0223921649158,0.015769217163324,-0.058608077466488]],[[0.07154555618763,0.037249870598316,0.017080659046769],[-0.025181485339999,0.0677550137043,-0.076335161924362],[-0.042814813554287,-0.057853668928146,0.0073416866362095]],[[0.012989047914743,0.020061533898115,-0.00315345171839],[-0.083604492247105,0.02256777882576,0.021753285080194],[0.050541721284389,-0.054495193064213,0.028400290757418]],[[-0.048962961882353,0.055677823722363,-0.086259722709656],[0.040511522442102,0.036255583167076,0.023140139877796],[0.02319348976016,-0.01541228685528,0.012029625475407]],[[0.014882537536323,-0.024365367367864,0.041385173797607],[-0.02388097718358,0.0363415107131,0.0033068803604692],[-0.039019592106342,0.054889928549528,0.022322475910187]],[[0.071659222245216,0.021530915051699,-0.024028673768044],[0.11525039374828,0.036848224699497,-0.06676346808672],[-0.010772510431707,-0.0082633076235652,-0.0085317101329565]],[[-0.10902503877878,0.026373555883765,-0.021898685023189],[-0.012098670005798,-0.12243574112654,0.046773392707109],[-0.091747649013996,0.0071695172227919,0.036398220807314]],[[0.087235294282436,0.0023625208996236,0.010122485458851],[-0.012015517801046,0.00099337741266936,-0.0029625971801579],[-0.0061322492547333,-0.0081054475158453,0.012147982604802]],[[-0.025618592277169,0.050601579248905,0.0038077232893556],[-0.014819899573922,-0.00080932839773595,0.048438489437103],[0.014680730178952,-0.018128039315343,0.0033380822278559]],[[0.075087897479534,-0.027870673686266,0.0066079874522984],[0.034486602991819,-0.0047939508222044,-0.071013063192368],[-0.022415861487389,-0.0076913852244616,0.03941748291254]],[[0.0018779750680551,-0.07737060636282,0.043165922164917],[0.042118784040213,0.0029005240648985,-0.040788505226374],[-0.0076324078254402,-0.055370733141899,0.019065961241722]],[[-0.042848255485296,-0.0016056536696851,0.013443818315864],[-0.042584698647261,-0.006912840064615,-0.074695147573948],[-0.010976262390614,0.029736749827862,-0.048599667847157]],[[0.043846603482962,0.035401966422796,0.034103415906429],[0.057081334292889,0.035102386027575,-0.049412611871958],[-0.011552097275853,-0.016577325761318,-0.020611448213458]],[[0.010447644628584,0.014720131643116,0.0007615492795594],[0.0024958930443972,-0.0065438007004559,-0.019617674872279],[-0.024587040767074,0.040119539946318,0.031494341790676]],[[0.053445588797331,0.019175978377461,-0.062713578343391],[0.0055414023809135,-0.0011659353040159,0.044068980962038],[0.084677323698997,0.034754924476147,-0.070986546576023]]],[[[0.44487643241882,-0.030555183067918,-0.064993992447853],[0.18047267198563,-0.21180108189583,-0.075902193784714],[-0.087735824286938,-0.09682235121727,-0.2347460091114]],[[0.14604948461056,-0.097931660711765,0.1566503494978],[-0.11117800325155,-0.080843314528465,-0.014616474509239],[-0.0035792503040284,0.28151142597198,-0.061645448207855]],[[-0.05399214848876,0.021108957007527,0.013359255157411],[-0.080257952213287,0.048485547304153,-0.016710737720132],[-0.096176080405712,-0.027789181098342,0.12824165821075]],[[0.060949500650167,-0.079198502004147,0.07470490783453],[0.021655566990376,-0.053513292223215,0.14560809731483],[0.079036682844162,0.0082726255059242,-0.041680071502924]],[[0.0022204900160432,0.12381722778082,-0.06406058371067],[-0.035439535975456,-0.059172488749027,0.15190188586712],[0.049485340714455,-0.10957716405392,-0.039775229990482]],[[0.062857411801815,-0.068352304399014,0.014573174528778],[-0.045440386980772,-0.078461676836014,0.045885749161243],[-0.002181407995522,-0.019697681069374,-0.11544243991375]],[[-0.069960877299309,0.089881919324398,-0.047363009303808],[-0.013932415284216,-0.026378080248833,0.050093226134777],[0.0086134234443307,-0.04842734336853,-0.015654772520065]],[[-0.11137511581182,0.024332275614142,0.058333691209555],[0.026223797351122,0.0027370397001505,0.045450881123543],[-0.056023523211479,-0.085567466914654,0.07210698723793]],[[-0.15091469883919,0.20897161960602,-0.16099762916565],[0.079920373857021,0.12887085974216,0.045282896608114],[-0.055701225996017,-0.0041382969357073,-0.16783326864243]],[[-0.11200777441263,-0.075781099498272,-0.043128203600645],[-0.033494606614113,0.122643917799,0.10720944404602],[0.0099327117204666,-0.048192787915468,-0.042216178029776]],[[-0.0259257722646,-0.088610038161278,-0.11703822761774],[0.017102671787143,-0.062337413430214,-0.090024940669537],[0.0081895524635911,-0.015682237222791,0.1447848379612]],[[-0.054277218878269,0.27936866879463,-0.0182562507689],[0.024985894560814,0.022097820416093,0.061685971915722],[0.22652991116047,-0.097825445234776,0.10183218866587]],[[-0.21297390758991,0.014223424717784,-0.065100952982903],[-0.14528828859329,0.21468634903431,-0.13528154790401],[-0.095563501119614,-0.016736268997192,0.020414074882865]],[[-0.043255373835564,0.0062816836871207,0.10083471983671],[-0.0077337166294456,-0.090172715485096,-0.13030324876308],[0.043435879051685,0.29798078536987,-0.16540494561195]],[[-0.029214756563306,-0.05045099183917,-0.033917419612408],[0.19212445616722,-0.012572448700666,-0.023050762712955],[0.018025601282716,0.083871230483055,-0.075209528207779]],[[-0.11865144222975,-0.049558062106371,-0.0085637997835875],[0.08078471571207,-0.11906690895557,-0.078735761344433],[-0.040349207818508,0.1645593047142,-0.041827291250229]],[[0.032705027610064,-0.12617518007755,-0.11487306654453],[0.037776589393616,-0.046576958149672,0.043752286583185],[0.082166507840157,-0.078519254922867,-0.030217360705137]],[[0.069199532270432,-0.03926545381546,0.13310560584068],[0.3269644677639,-0.15867665410042,-0.078055873513222],[-0.035863075405359,0.089319966733456,-0.090794518589973]],[[-0.039159256964922,-0.016662528738379,0.10943657159805],[0.034566398710012,-0.20725578069687,0.18548355996609],[-0.12419337779284,0.088145732879639,-0.12164691835642]],[[-0.14166663587093,0.034895021468401,-0.027301233261824],[-0.017013760283589,-0.0099251521751285,0.15719924867153],[-0.15945808589458,0.031606554985046,0.088015995919704]],[[-0.099353656172752,0.007672259118408,-0.0077449264936149],[-0.061394967138767,-0.089102283120155,0.17563040554523],[0.040093943476677,-0.016038276255131,-0.042301960289478]],[[-0.015282429754734,-0.12527358531952,0.050058118999004],[0.034467939287424,-0.028484804555774,0.11754933744669],[0.056461963802576,0.014127161353827,0.0086477752774954]],[[0.12197785824537,0.00098555418662727,0.036913651973009],[0.1681846678257,0.10439663380384,-0.10521862655878],[-0.12472346425056,0.058476068079472,-0.039318718016148]],[[0.09708920866251,-0.24638624489307,0.021663254126906],[0.1881852298975,0.10574070364237,0.02104701474309],[0.041310042142868,0.056603208184242,0.086059764027596]],[[-0.088079817593098,0.12171576172113,0.081042028963566],[0.080169163644314,-0.041849218308926,-0.047958310693502],[0.096377365291119,-0.088909767568111,-0.08165019005537]],[[0.0074999630451202,0.12957759201527,0.0073113148100674],[0.14965865015984,-0.15939621627331,0.0045548309572041],[-0.039774689823389,-0.0028872180264443,-0.04380277171731]],[[0.0030392576009035,-0.20826703310013,0.029790008440614],[-0.013518613763154,-0.017599172890186,0.050911404192448],[-0.037105221301317,-0.062607802450657,0.010964803397655]],[[0.11458487808704,-0.011470725759864,0.019719803705812],[-0.042161002755165,-0.1678529381752,0.089648261666298],[-0.056909523904324,-0.042785637080669,0.17811983823776]],[[-0.1557187885046,-0.058765724301338,-0.058595303446054],[0.19331362843513,0.11165664345026,0.0083774635568261],[-0.12099592387676,0.30524948239326,-0.21539314091206]],[[0.034430723637342,-0.045221403241158,0.073354095220566],[-0.13905382156372,0.03339647129178,0.15359653532505],[-0.032186277210712,0.042532183229923,0.051011595875025]],[[-0.060260370373726,-0.054603181779385,-0.03405587375164],[-0.13967651128769,0.03286599740386,0.0094461068511009],[-0.12752515077591,0.084617279469967,0.058247331529856]],[[0.057073958218098,0.0096502136439085,-0.084827080368996],[0.015221402049065,-0.22051776945591,-0.11772492527962],[-0.0034163617528975,0.0011620856821537,0.063305571675301]],[[-0.056908085942268,0.033863797783852,-0.017365721985698],[-0.051866114139557,-0.11371848732233,0.078437328338623],[0.035846795886755,-0.020247053354979,-0.022261431440711]],[[-0.045663051307201,0.012677224352956,0.085482202470303],[-0.031503189355135,0.015447122044861,-0.10001616925001],[0.17338034510612,0.014396632090211,-0.045317515730858]],[[-0.038732290267944,-0.086494363844395,0.0039281458593905],[-0.19707487523556,0.094681851565838,-0.1244143769145],[-0.030184090137482,-0.11187771707773,-0.036938313394785]],[[-0.1152133718133,-0.029946455731988,0.034233681857586],[-0.010774455964565,-0.15408632159233,0.038403153419495],[0.16683708131313,-0.054611850529909,-0.073753006756306]],[[-0.12946912646294,0.084083192050457,-0.01974262855947],[0.13387086987495,0.063401222229004,-0.036144558340311],[-0.12836821377277,-0.16360571980476,-0.016500098630786]],[[-0.048043128103018,0.10944796353579,-0.050232511013746],[-0.079049728810787,-0.10210225731134,-0.046496223658323],[0.10455016046762,0.14986404776573,0.1184080094099]],[[-0.056933756917715,-0.055185999721289,-0.072928741574287],[-0.051274839788675,-0.08573030680418,-0.016034279018641],[-0.046993549913168,-0.094514176249504,-0.2680656015873]],[[-0.018142506480217,-0.13082407414913,-0.2191152125597],[0.086535841226578,0.061447396874428,-0.040843047201633],[-0.0027543001342565,-0.056056931614876,0.12701639533043]],[[-0.014563218690455,-0.073013730347157,-0.021328162401915],[0.073613688349724,0.03928891941905,-0.081769913434982],[-0.14471824467182,-0.10222177952528,-0.039211835712194]],[[-0.027452183887362,-0.086834259331226,0.1061729863286],[0.03768926858902,0.035752937197685,-0.087146736681461],[0.11083226650953,0.026864141225815,-0.060644287616014]],[[0.13815438747406,-0.1394954174757,0.26553538441658],[-0.034711562097073,0.00163883715868,-0.00083834351971745],[-0.017937360331416,0.01158032938838,-0.12910367548466]],[[0.031360480934381,0.096097201108932,-0.10880418121815],[0.1606587767601,-0.05394696444273,-0.021507384255528],[-0.046385105699301,-0.059312451630831,-0.14354492723942]],[[-0.1082775965333,-0.17100262641907,0.1143164485693],[-0.07326490432024,-0.14757078886032,-0.12659621238708],[0.084037624299526,-0.028081053867936,0.024011569097638]],[[0.004284200258553,-0.014179093763232,0.086999267339706],[-0.001412388519384,0.086009673774242,-0.15320217609406],[0.034103754907846,0.034850742667913,-0.020415367558599]],[[0.040501452982426,-0.10682397335768,0.046753313392401],[-0.13065813481808,0.17799241840839,-0.13595741987228],[-0.13378649950027,0.079086668789387,0.015049539506435]],[[-0.13470926880836,0.022093964740634,-0.12403441220522],[-0.041861228644848,-0.11081769317389,0.091546677052975],[-0.15279701352119,0.019307361915708,-0.11677630245686]],[[-0.13534718751907,0.17511335015297,0.048984263092279],[-0.01879801414907,-0.021586999297142,-0.1006598174572],[0.20100571215153,-0.043446190655231,-0.10687524080276]],[[-0.010870664380491,-0.092645764350891,-0.00061727175489068],[-0.092465989291668,-0.054690178483725,-0.04120247811079],[0.14059230685234,-0.20794703066349,-0.089748844504356]],[[-0.084166444838047,-0.0088646067306399,0.051238529384136],[-0.10067188739777,-0.10823086649179,0.0035322727635503],[-0.030880652368069,-0.022713467478752,0.11050551384687]],[[-0.039828505367041,0.0055239661596715,0.0075000734068453],[-0.019030071794987,0.19562055170536,-0.19680406153202],[0.074946753680706,0.057069391012192,0.010297825559974]],[[0.068902045488358,0.14736178517342,-0.03048556111753],[0.082450419664383,-0.24444687366486,-0.055028233677149],[-0.088172741234303,-0.011289107613266,0.034294866025448]],[[0.087933227419853,0.07231979817152,-0.12481022626162],[-0.031165786087513,0.12083990871906,0.0011486995499581],[0.046493820846081,-0.056707117706537,0.049952778965235]],[[0.065522894263268,0.13591141998768,0.21055851876736],[-0.040540885180235,-0.19565579295158,0.055033221840858],[-0.067758493125439,0.029581677168608,0.090998083353043]],[[-0.037878826260567,-0.029235588386655,0.04723547399044],[-0.023902714252472,-0.0022538444027305,-0.0019826411735266],[-0.12715335190296,-0.075250819325447,-0.0038411465939134]],[[0.14889600872993,0.0050448104739189,0.038770917803049],[0.077943131327629,-0.051821868866682,-0.034329663962126],[-0.10130961239338,-0.057703509926796,0.07970666885376]],[[0.022768208757043,0.0043674679473042,-0.15227262675762],[-0.16280245780945,0.014531440101564,-0.019092001020908],[-0.066519103944302,0.097062759101391,-0.11673532426357]],[[0.02801177278161,-0.021580815315247,-0.066082134842873],[-0.04921293258667,-0.020786710083485,-0.10595381259918],[-0.053353846073151,-0.18424092233181,-0.0632039681077]],[[-0.15370741486549,-0.061730720102787,-0.047710951417685],[0.10896790772676,-0.058268580585718,0.14826583862305],[0.012882855720818,-0.056137971580029,0.032107517123222]],[[-0.084508962929249,0.034687712788582,-0.028342867270112],[-0.20012924075127,-0.0082623437047005,-0.0016717031830922],[0.18293955922127,-0.10867696255445,-0.070107653737068]],[[-0.22587542235851,-0.062379129230976,0.045969862490892],[-0.19252844154835,-0.018516510725021,0.062357541173697],[0.15809771418571,0.2835196852684,0.047861523926258]],[[0.041555434465408,-0.094270445406437,-0.12080597877502],[-0.20607569813728,0.028204586356878,-0.039478395134211],[0.0066148741170764,-0.12728270888329,-0.024796117097139]],[[0.047208547592163,0.22848480939865,0.19211272895336],[-0.028733432292938,0.01448337174952,-0.022318098694086],[-0.053652830421925,-0.096582464873791,0.17781035602093]],[[0.12130972743034,0.00019140185031574,-0.083228103816509],[0.049510322511196,0.0285818669945,-0.031039249151945],[-0.08125277608633,-0.017565678805113,-0.153390660882]],[[-0.02220250107348,-0.070709347724915,0.14059814810753],[-0.1388398706913,-0.1811064183712,-0.10787718743086],[-0.046457976102829,-0.059876259416342,-0.040090706199408]],[[-0.04492349922657,0.02805183827877,0.06914684176445],[-0.096421137452126,0.074259839951992,-0.062864221632481],[0.002010612282902,0.11519300192595,0.046825062483549]],[[-0.026908321306109,-0.099222883582115,0.080903999507427],[-0.067179523408413,-0.065640613436699,-0.080891758203506],[-0.067615330219269,-0.069243140518665,0.014454387128353]],[[0.11388835310936,-0.092632219195366,-0.079970642924309],[-0.066366471350193,-0.12780007719994,-0.015095195733011],[-0.19655545055866,-0.15782137215137,-0.048617605119944]],[[-0.061503026634455,-0.099338561296463,0.011840471066535],[0.12819008529186,-0.12499529868364,0.019150633364916],[-0.041472401469946,-0.042882461100817,-0.1874697804451]],[[-0.06052628532052,-0.1622958034277,0.082630671560764],[-0.04165755212307,-0.05509302392602,-0.060869421809912],[-0.070895299315453,-0.00084283947944641,-0.025174951180816]],[[0.076161213219166,-0.19245973229408,0.018991457298398],[-0.024713886901736,0.09351558983326,0.012925032526255],[0.14512468874454,-0.013356338255107,0.11586906015873]],[[-0.093182943761349,-0.14314031600952,0.040997818112373],[0.11184061318636,-0.013028427027166,-0.10887854546309],[-0.058730680495501,-0.092979595065117,0.13871270418167]],[[0.15307419002056,-0.12826330959797,0.055081136524677],[0.0065433890558779,-0.035246904939413,0.023982023820281],[-0.081816099584103,-0.10180949419737,0.11561521142721]],[[0.0040397145785391,0.16270691156387,-0.050919603556395],[0.031977690756321,-0.05926726013422,0.13923472166061],[-0.080488480627537,-0.14578552544117,-0.0713275000453]],[[0.048905048519373,0.16806897521019,0.13072782754898],[-0.084393285214901,-0.027072243392467,-0.098272167146206],[-0.10350050777197,0.088944911956787,0.19447007775307]],[[0.047645594924688,0.04760530591011,0.030623584985733],[0.097799085080624,0.033930007368326,-0.02787128649652],[-0.033984217792749,-0.04214671626687,0.018924543634057]],[[-0.048496246337891,-0.069430485367775,0.02255548723042],[-0.021478470414877,-0.041607648134232,0.049277264624834],[-0.017210438847542,-0.011307250708342,0.19391749799252]],[[-0.081158712506294,-0.080334737896919,-0.13253398239613],[-0.1578286588192,-0.0084826080128551,0.011187235824764],[-0.0048408890143037,-0.058567855507135,-0.098578035831451]],[[-0.11666424572468,0.025014778599143,-0.022376077249646],[0.035016912966967,-0.051331967115402,0.10483790189028],[-0.028180219233036,-0.16092093288898,0.11457081884146]],[[-0.055124327540398,0.026623021811247,-0.099451184272766],[0.077760301530361,-0.054761946201324,0.021183328703046],[0.0078968303278089,0.013892804272473,0.023957317695022]],[[0.19838178157806,-0.073496572673321,-0.016508959233761],[0.07753050327301,-0.0032159972470254,-0.10785185545683],[0.15932807326317,-0.25820374488831,0.028598444536328]],[[0.19156818091869,-0.15071022510529,-0.027682930231094],[-0.1296711564064,0.14550982415676,0.0050882762297988],[-0.02401321940124,0.076094955205917,0.0063187931664288]],[[-0.028124487027526,0.031049491837621,-0.098101206123829],[-0.046379182487726,-0.027113514021039,0.072736531496048],[0.11296074837446,-0.035059906542301,0.039130337536335]],[[-0.069732628762722,0.030684191733599,0.073461264371872],[-0.056530565023422,-0.1163937151432,-0.10455298423767],[-0.013095039874315,0.098875761032104,-0.012267940677702]],[[-0.14012284576893,0.014275026507676,0.10529258102179],[-0.026833431795239,0.061925452202559,-0.059012893587351],[-0.071495525538921,0.0031682648696005,0.031844522804022]],[[0.021864507347345,0.010604565963149,0.016352655366063],[-0.047937959432602,-0.025290375575423,0.0062126568518579],[0.1608754247427,-0.083945520222187,-0.0090466747060418]],[[0.080973416566849,0.23274867236614,0.0026838399935514],[-0.15437391400337,-0.02076586894691,0.049726989120245],[0.14375260472298,-0.042281091213226,-0.026219896972179]],[[0.058101143687963,-0.10547591000795,-0.08200515806675],[-0.022274630144238,-0.0025657445657998,-0.076246328651905],[0.042338311672211,0.092179141938686,-0.049485821276903]],[[0.060727007687092,0.13541515171528,-0.060425516217947],[-0.0037335944361985,-0.10239814966917,-0.06231165677309],[0.0095942178741097,0.071009956300259,-0.12847118079662]],[[-0.040417101234198,0.084985412657261,-0.11752563714981],[-0.040094614028931,0.14537708461285,-0.040854196995497],[0.016123499721289,-0.06946961581707,0.032061479985714]],[[0.065244153141975,0.079412862658501,-0.088532194495201],[0.19274446368217,0.043084647506475,-0.13273747265339],[0.1722270399332,-0.14591892063618,-0.051051754504442]],[[0.16488656401634,-0.05308734998107,0.064438492059708],[-0.32700479030609,-0.053618185222149,-0.093689225614071],[0.10854464024305,-0.064582325518131,-0.027598857879639]],[[-0.037714265286922,0.022031463682652,-0.020207189023495],[-0.081546820700169,0.024119267240167,0.095966152846813],[-0.11607411503792,-0.015655864030123,-0.019002299755812]],[[0.022940216585994,-0.0080578941851854,-0.017883781343699],[-0.075265072286129,-0.16921345889568,0.076082102954388],[-0.0078973658382893,0.21103087067604,-0.10783316195011]],[[-0.1342945098877,0.0092443255707622,0.0094481464475393],[-0.074689790606499,-0.12557825446129,-0.12187474220991],[-0.041876710951328,-0.029301010072231,0.19171884655952]],[[-0.0075640860013664,-0.093267396092415,-0.048902083188295],[-0.0044611995108426,0.045058786869049,0.041712217032909],[0.15443463623524,-0.081929229199886,-0.045757714658976]],[[0.037179708480835,-1.5611694834661e-06,-0.055005215108395],[-0.044424518942833,-0.062011353671551,-0.010934367775917],[0.034288857132196,-0.11578141152859,-0.088725350797176]],[[-0.00062006968073547,-0.09804505109787,-0.19354191422462],[-0.13419845700264,-0.021516861394048,-0.018832787871361],[-0.087312936782837,-0.062751673161983,-0.010248591192067]],[[-0.078799799084663,-0.10378858447075,0.084803976118565],[0.016998143866658,-0.1389806419611,0.017613455653191],[0.12634599208832,-0.1281728297472,0.014078926295042]],[[-0.073329918086529,0.029626417905092,0.095770351588726],[-0.065276585519314,-0.06933556497097,0.071642003953457],[-0.08073166757822,0.09113921970129,0.006680456455797]],[[0.27749294042587,-0.058109380304813,0.17056265473366],[0.064982250332832,-0.032396368682384,0.034918751567602],[-0.051345620304346,0.016388731077313,0.041952535510063]],[[-0.056898314505816,-0.022583002224565,0.025559110566974],[-0.15004177391529,-0.018229573965073,0.021868182346225],[-0.017105609178543,-0.030796017497778,0.16505415737629]],[[0.080800391733646,0.087088920176029,-0.14943820238113],[-0.076753132045269,0.038084235042334,-0.082580551505089],[-0.060172140598297,-0.025110749527812,-0.013362895697355]],[[0.089646749198437,0.088341593742371,-0.01141544431448],[0.056205254048109,-0.012005798518658,-0.097510926425457],[-0.046819929033518,0.073473080992699,-0.056101240217686]],[[0.075232960283756,-0.06842827051878,-0.012586147524416],[-0.026822209358215,0.079904787242413,-0.1187708824873],[-0.029154494404793,-0.13127398490906,-0.0022311545908451]],[[0.024636719375849,-0.021783445030451,0.13165095448494],[0.0025644220877439,0.018752066418529,0.43451595306396],[-0.052317168563604,-0.16735465824604,-0.22883819043636]],[[0.026938796043396,0.018521605059505,-0.071884781122208],[-0.014774195849895,-0.033865615725517,0.029668770730495],[-0.0028891789261252,-0.0605793222785,-0.11122113466263]],[[-0.024883925914764,0.11858810484409,-0.020080657675862],[0.0339285582304,-0.25333720445633,0.11126268655062],[0.1162920370698,0.20792666077614,-0.058238044381142]],[[-0.041643273085356,-0.028835678473115,0.01269714999944],[-0.026845457032323,0.22386357188225,-0.0097575020045042],[0.044659234583378,0.055938512086868,0.023035848513246]],[[-0.014477388933301,0.048740975558758,0.04959873482585],[0.022583480924368,0.46070206165314,-0.083169408142567],[0.028883945196867,0.043205086141825,-0.0025706270243973]],[[-0.012492330744863,0.10689816623926,-0.15956281125546],[-0.0084365485236049,-0.050161618739367,-0.002924378728494],[-0.022798765450716,0.00092940992908552,0.0021375168580562]],[[0.081785656511784,0.012265962548554,0.068359777331352],[0.039826158434153,-0.0082068750634789,0.028784492984414],[0.090455360710621,0.025404104962945,-0.026112582534552]],[[-0.020585171878338,-0.004231174942106,-0.027117235586047],[-0.11568205058575,0.22148181498051,-0.0073091313242912],[-0.020704030990601,-0.06711807847023,0.037103086709976]],[[0.034520402550697,-0.044864688068628,0.027129432186484],[0.088390730321407,-0.052483517676592,-0.057368256151676],[0.0057544345036149,0.063225448131561,0.099238611757755]],[[0.10873744636774,-0.13784685730934,0.03900545835495],[0.044120702892542,-0.070424534380436,-0.027514062821865],[-0.076118633151054,0.11854480952024,-0.027729468420148]],[[-0.15774022042751,-0.084319934248924,0.055848363786936],[0.038508821278811,-0.054516516625881,-0.090296246111393],[-0.091201357543468,-0.016361739486456,-0.11388984322548]],[[-0.15459389984608,0.087928459048271,0.17626301944256],[-0.12359886616468,-0.078664846718311,-0.08063743263483],[-0.044511545449495,-0.040383294224739,0.00047432395513169]],[[0.022532761096954,0.0007218872779049,0.017901588231325],[0.077864304184914,0.0081685036420822,-0.060338199138641],[-0.11488721519709,-0.059216257184744,0.020423172041774]],[[-0.040707875043154,0.25883540511131,0.08364150673151],[-0.092842541635036,0.045473527163267,0.06513936817646],[-0.10659858584404,-0.0094870207831264,0.036773409694433]],[[0.12127708643675,-0.081548653542995,-0.11434914171696],[-0.034275364130735,0.048679977655411,-0.18557126820087],[-0.089464217424393,0.11751870065928,0.27223062515259]],[[-0.018077136948705,-0.120052523911,-0.021708905696869],[-0.050387807190418,-0.053701292723417,-0.20668759942055],[-0.12822343409061,-0.07264968752861,0.058456029742956]],[[-0.097844555974007,-0.023024816066027,-0.0056008473038673],[-0.07793752104044,0.074229776859283,-0.10275826603174],[-0.0040131360292435,-0.13472640514374,-0.035460315644741]],[[-0.10559256374836,-0.054262313991785,0.039501529186964],[0.06771844625473,0.039359107613564,-0.01460918597877],[-0.025844048708677,-0.043331928551197,-0.0050300364382565]],[[-0.10551784187555,0.077203154563904,0.084357149899006],[-0.12560094892979,-0.17301112413406,0.14659178256989],[0.073482371866703,-0.091878905892372,0.009264575317502]],[[-0.19068750739098,0.046587556600571,-0.11557260900736],[0.0038978464435786,0.080751836299896,-0.079549804329872],[-0.09492926299572,-0.08046505600214,-0.12382599711418]],[[0.094120793044567,-0.31672519445419,-0.0064481301233172],[-0.010289586149156,0.052583914250135,0.24343878030777],[-0.031466960906982,-0.054383482784033,0.14926491677761]],[[-0.10732091963291,-0.041110176593065,0.036756996065378],[0.016045168042183,0.31499162316322,-0.0922616943717],[0.089651353657246,-0.12444853037596,0.0384676232934]]],[[[-0.03635036200285,0.025605998933315,-0.034675091505051],[-0.02184552885592,-0.016160724684596,0.037657529115677],[-0.028313424438238,-0.018991721794009,0.039229441434145]],[[0.010663548484445,-0.022446816787124,-0.088130466639996],[-0.068907260894775,-0.019581628963351,0.0074683078564703],[0.091828033328056,0.014926664531231,0.055606659501791]],[[-0.051719531416893,-0.063541650772095,-0.0061606131494045],[-0.049391213804483,-0.0031770777422935,0.0093299448490143],[-0.0076143494807184,0.0055417697876692,0.0015569599345326]],[[0.021100632846355,-0.10656919330359,0.0057087717577815],[-0.068355165421963,0.036325205117464,-0.058314990252256],[0.048986006528139,0.012628898024559,0.025361409410834]],[[-0.047880463302135,-0.07491572201252,0.084207840263844],[-0.0011912336340174,-0.073287792503834,-0.04031353071332],[-0.024982418864965,-0.063083663582802,-0.032422501593828]],[[-0.038793876767159,-0.015629015862942,-0.028909245505929],[-0.055387515574694,0.015117971226573,-0.061388481408358],[0.068820491433144,0.0065205493010581,0.099616549909115]],[[0.014873292297125,0.013565964065492,0.043296098709106],[0.050442587584257,-0.052818741649389,-0.010214342735708],[0.099796332418919,-0.054584342986345,-0.039951875805855]],[[-0.017945433035493,-0.093646101653576,0.056744307279587],[0.071534551680088,0.053726490586996,0.063298016786575],[-0.0028569202404469,-0.0025146980769932,-0.14334113895893]],[[-0.06429760158062,-0.12071039527655,-0.14868466556072],[0.016989735886455,0.015412139706314,0.063900910317898],[0.023508323356509,0.03851481154561,0.0585369579494]],[[0.22314289212227,0.052912298589945,0.015282444655895],[-0.07102407515049,-0.09854169934988,-0.026498565450311],[0.032421361654997,0.21798475086689,0.22605983912945]],[[0.018523780629039,0.023593770340085,0.0060325497761369],[-0.1114711984992,-0.099998861551285,0.036760989576578],[0.029572257772088,0.016766170039773,0.13659021258354]],[[0.014001328498125,-0.091381438076496,0.029651813209057],[0.036297369748354,0.0244773440063,-0.011006295681],[0.0059108026325703,-0.029755158349872,0.14884930849075]],[[-0.03991212323308,0.0036082973238081,-0.045607723295689],[0.0069567365571856,0.031092567369342,-0.0038078892976046],[0.0014107109745964,0.01840978115797,0.07547190785408]],[[0.01997053809464,0.056274335831404,0.025352977216244],[0.06111378967762,0.043767232447863,-0.018878486007452],[0.12498421221972,0.031984016299248,0.0027942080050707]],[[0.22428756952286,0.080423004925251,0.086018599569798],[0.16781289875507,0.069994188845158,0.07983123511076],[0.11046277731657,0.10801118612289,0.019386192783713]],[[-0.026879318058491,-0.041566152125597,-0.043757010251284],[-0.11549276858568,-0.11714427173138,-0.039322588592768],[0.0020782728679478,-0.043023440986872,-0.049383673816919]],[[0.042596761137247,0.04115342721343,0.053169179707766],[-0.012208379805088,-0.037975426763296,0.014741328544915],[-0.043060299009085,-0.038462515920401,-0.018921237438917]],[[0.0061437729746103,-0.069401323795319,-0.08061645925045],[0.019164709374309,-0.010369109921157,0.00053749134531245],[0.010361647233367,0.045749578624964,0.056594256311655]],[[0.084320068359375,-0.029611680656672,-0.021005053073168],[-0.014500289224088,-0.033089488744736,-0.012537638656795],[0.00305583816953,-0.017165282741189,-0.020105665549636]],[[0.01366763561964,-0.056228742003441,0.037845801562071],[0.025552768260241,-0.0072120414115489,0.012637394480407],[-0.06845548003912,-0.0097456919029355,-0.028750814497471]],[[-0.004851303063333,0.05845757201314,0.081537589430809],[0.038567151874304,-0.0025100151542574,0.011979015544057],[-0.046856351196766,0.069318398833275,-0.061021484434605]],[[0.039629593491554,0.025864163413644,0.13651552796364],[0.032181143760681,0.025391591712832,0.027401983737946],[0.089699998497963,0.086987644433975,0.066884115338326]],[[-0.017823405563831,-0.019930874928832,0.0062879878096282],[0.050346784293652,-0.032147713005543,-0.023013213649392],[-0.044132236391306,-0.0026315671857446,-0.061052426695824]],[[0.0092275394126773,-0.0310627091676,-0.012157767079771],[0.078809186816216,-0.066578902304173,0.017162906005979],[0.074459806084633,0.047029957175255,0.03567473217845]],[[0.056566137820482,0.046094998717308,0.013416088186204],[0.0089223608374596,-0.003282533492893,-0.0043059070594609],[0.073014132678509,0.091613285243511,0.020301291719079]],[[0.04341547191143,0.029026959091425,-0.031857460737228],[-0.088831074535847,-0.0096037592738867,-0.031850218772888],[0.096634440124035,0.018431585282087,0.04287039488554]],[[-0.082598499953747,0.026377720758319,-0.00023973897623364],[-0.0072829076088965,0.089449569582939,0.0073936656117439],[0.017351593822241,-0.0089240847155452,0.073097467422485]],[[0.0812733694911,0.026455864310265,-0.010840622708201],[-0.0045055174268782,0.094462417066097,0.01716229878366],[0.14132535457611,0.0030129845254123,0.089179590344429]],[[0.11186485737562,0.02533108741045,-0.00091075804084539],[0.027316829189658,0.080941319465637,0.010689848102629],[-0.04638671875,0.081036865711212,-0.025887712836266]],[[0.026276625692844,-0.019622124731541,0.038556188344955],[0.0009523689514026,-0.01520124450326,-0.064401231706142],[0.054853372275829,0.032701961696148,0.053536169230938]],[[0.079940550029278,0.010126378387213,0.058332107961178],[0.018662372604012,0.011352642439306,0.021279895678163],[0.020324742421508,-0.059729240834713,0.024759678170085]],[[0.073306985199451,-0.015147660858929,0.08101200312376],[0.052986957132816,0.087868764996529,0.0395746268332],[-0.024526938796043,0.078088909387589,-0.031598567962646]],[[0.0008828000864014,-0.016245014965534,0.0088416654616594],[0.0059814383275807,0.037486754357815,8.1280079029966e-05],[0.072288550436497,0.032920997589827,-0.046347618103027]],[[0.0017587613547221,0.01565589569509,0.086747720837593],[-0.05679640173912,0.028551934286952,0.049357462674379],[0.077019341289997,0.089830920100212,0.028092969208956]],[[0.075653642416,-0.019683133810759,0.049963854253292],[0.056164879351854,-0.0071382103487849,0.010831912048161],[0.059747137129307,-0.11727494001389,-0.055842824280262]],[[-0.014973819255829,-0.06481446325779,0.051097884774208],[-0.07504104077816,-0.064156360924244,-0.041985001415014],[-0.046810507774353,0.048833835870028,0.01638893596828]],[[-0.02820329554379,0.05135453119874,-0.054811727255583],[0.0469606295228,-0.0023610456846654,-0.14505998790264],[0.030638894066215,0.061777491122484,-0.019458452239633]],[[0.020740933716297,-0.022158853709698,0.0057452255859971],[-0.0035496896598488,-0.018389808014035,-0.063445270061493],[-0.019368782639503,-0.061062540858984,-0.029700988903642]],[[0.058062806725502,-0.025924269109964,-0.0060538030229509],[0.0028832645621151,0.075375691056252,-0.027596002444625],[0.079632431268692,-0.011338231153786,0.056510925292969]],[[-0.022449776530266,-0.015222793444991,-0.018783150240779],[0.04419556632638,-0.014786757528782,0.079937100410461],[0.022978711873293,0.020785979926586,0.063937693834305]],[[-0.034896865487099,-0.0058153942227364,-0.011862484738231],[0.083089217543602,-0.036747310310602,0.02767525985837],[-0.044388208538294,-0.033802136778831,0.047834847122431]],[[0.043920800089836,0.0094745792448521,0.040899407118559],[-0.0025780142750591,-0.054678466171026,-0.018757525831461],[-0.033175311982632,0.014325957745314,0.025241205468774]],[[0.10449042916298,0.053351819515228,-0.015986138954759],[0.0071632759645581,0.0021602481137961,0.076297342777252],[-0.028885515406728,0.024996126070619,0.10958158969879]],[[0.041887536644936,0.0040893154218793,0.016973340883851],[-0.036309596151114,0.037212211638689,0.013774141669273],[0.022024728357792,0.13595080375671,0.0059834769926965]],[[0.070271693170071,-0.059657640755177,0.0016396306455135],[0.034492991864681,0.00088282977230847,0.029625592753291],[-0.052846912294626,-0.011238170787692,-0.0051774531602859]],[[0.078895896673203,0.04091477021575,-0.031563378870487],[-0.0040783733129501,-0.020312020555139,0.06473870575428],[0.068816520273685,0.03194547817111,0.023182494565845]],[[0.050856113433838,-0.0183194745332,0.01146065723151],[-0.0083273081108928,0.096775338053703,-0.00054210377857089],[-0.030679067596793,-0.019474046304822,0.067248150706291]],[[0.053392753005028,-0.043064430356026,0.046129994094372],[0.020460473373532,-0.020466549322009,-0.051170516759157],[-0.013202347792685,0.05913856998086,-0.0035934725310653]],[[0.08519983291626,-0.013463348150253,0.10273159295321],[-0.022175192832947,0.051069784909487,0.03797760233283],[-0.061287727206945,0.066648922860622,-0.033591501414776]],[[-0.13553376495838,-0.0035977899096906,0.073513373732567],[-0.012798333540559,0.048699602484703,-0.062398459762335],[-0.00068824569461867,0.030095670372248,-0.070360630750656]],[[0.013896231539547,0.0052450872026384,0.080543294548988],[-0.054889649152756,-0.069260038435459,-0.012133072130382],[-0.05278692394495,-0.041445452719927,0.014552894979715]],[[-0.0084912441670895,0.04140729829669,0.015039685182273],[-0.022248281165957,-0.07827389985323,0.032346867024899],[0.11670856922865,-0.00051879382226616,0.13187159597874]],[[0.037101179361343,-0.039453200995922,0.030580790713429],[-0.039549574255943,-0.0088941976428032,-0.089633256196976],[-0.039189018309116,0.029320811852813,0.048906154930592]],[[0.059716772288084,-0.012493967078626,-0.04108414798975],[0.071722283959389,-0.031208837404847,0.020447332412004],[0.11746728420258,0.1017582193017,0.0029601566493511]],[[0.10085773468018,-0.013501931913197,0.083900474011898],[0.097420535981655,0.018276661634445,-0.018590375781059],[-0.0029757553711534,-0.021046567708254,-0.0090807965025306]],[[0.047087091952562,0.035649731755257,-0.049283865839243],[-0.056077994406223,-0.012585326097906,0.076805830001831],[-0.084300182759762,0.025986686348915,0.017022347077727]],[[-0.0041447402909398,-0.017783423885703,-0.057067669928074],[0.0077556828036904,-0.0057842982932925,0.030726511031389],[0.016675636172295,-0.019686538726091,-0.028032725676894]],[[0.11494761705399,-0.0673548579216,0.065536424517632],[0.007675202563405,-0.037239167839289,0.0011190713848919],[-0.032297674566507,-0.083690255880356,-0.0019001364707947]],[[0.066747181117535,-0.019805520772934,-0.021940445527434],[-0.016523787751794,0.0044403099454939,0.030455539003015],[0.09798040241003,0.072028800845146,0.070624597370625]],[[0.055047582834959,0.10199659317732,-0.070796124637127],[0.0099004562944174,0.089133486151695,0.0097414627671242],[0.097112134099007,-0.032247874885798,0.074516862630844]],[[0.028776288032532,-0.031721528619528,-0.026734111830592],[-0.016643051058054,-0.1420738697052,0.03132551908493],[-0.0092760566622019,0.0040518390014768,0.036365635693073]],[[-0.022048320621252,-0.031532451510429,0.020162982866168],[0.02455042488873,-0.01596979983151,0.0015411562053487],[0.017005113884807,0.051611952483654,0.037632059305906]],[[0.057800505310297,-0.019185183569789,0.04886806756258],[0.00093069404829293,-0.013598078861833,-0.0093591315671802],[-0.02201241441071,0.11048977077007,0.032800231128931]],[[-0.020957281813025,0.068585403263569,-0.021241029724479],[-0.030912481248379,-0.078116968274117,0.086446076631546],[0.0068545476533473,-0.075499258935452,-0.028250653296709]],[[0.021770486608148,-0.038530822843313,0.054140899330378],[-0.02247354388237,-0.016183186322451,0.04404728487134],[-0.004935794044286,-0.039259973913431,0.010866652242839]],[[-0.0080498475581408,-0.031239405274391,0.0063969818875194],[0.069009706377983,0.012748756445944,-0.08171459287405],[0.10304962843657,-0.052410624921322,-0.020566856488585]],[[-0.029379609972239,0.048992421478033,-0.12481509149075],[0.089895777404308,0.077381059527397,-0.0071880277246237],[0.06220368295908,0.1087316647172,0.11877007037401]],[[0.0023551299236715,0.030744675546885,-0.0066860681399703],[0.060977559536695,-0.030564490705729,0.0052243233658373],[-0.038421373814344,-0.0065599251538515,-0.0092146806418896]],[[0.11102858185768,0.022501232102513,0.042076446115971],[-0.026236459612846,0.021149838343263,0.074768304824829],[0.0038906566333026,0.001043293857947,-0.082446284592152]],[[0.079724989831448,-0.096744231879711,-0.0077706212177873],[0.095568761229515,0.07776889950037,-0.022518230602145],[-0.088942408561707,0.01396235730499,0.018873915076256]],[[0.031285148113966,0.013636508025229,-0.044284883886576],[-0.044117126613855,0.031721577048302,0.018008524551988],[0.04686389118433,0.025431057438254,0.0055031487718225]],[[0.0165682323277,0.01149960141629,0.0052692024037242],[0.10325483977795,0.02279712818563,0.0046140123158693],[0.002497521461919,0.11511623859406,0.05943501740694]],[[0.016047619283199,0.02852776274085,0.034484073519707],[-0.0091552063822746,-0.010478614829481,0.0088679809123278],[0.045878026634455,-0.012317295186222,0.11543057858944]],[[0.1440504193306,0.029156068339944,0.020909685641527],[0.0081879198551178,0.019300470128655,0.073799215257168],[0.050001714378595,-0.029713492840528,0.10734424740076]],[[0.037148956209421,-0.040214598178864,-0.010210079140961],[-0.055074665695429,-0.061925958842039,-0.10814557224512],[-0.059340167790651,0.074352167546749,-0.029756700620055]],[[0.043754927814007,-0.087204143404961,0.0054066320881248],[-0.0091588329523802,-0.067886985838413,0.079629346728325],[0.073438905179501,0.00071371998637915,0.027083575725555]],[[-0.054680317640305,-0.021895909681916,0.020800683647394],[-0.033438645303249,0.077592231333256,-0.020236767828465],[-0.036010805517435,-0.052729174494743,-0.00042877526720986]],[[0.1005816757679,0.036609340459108,0.090947076678276],[0.017044641077518,0.025928806513548,0.023500101640821],[-0.062567934393883,-0.027762468904257,-0.012210167944431]],[[0.062072902917862,0.013265250250697,-0.077644929289818],[-0.010430102236569,-0.017191398888826,-0.028161182999611],[0.011745155788958,0.03083679638803,-0.088925145566463]],[[-0.011168762110174,-0.014689500443637,-0.05773102119565],[0.015223561786115,-0.0051976530812681,-0.065324105322361],[-0.098159067332745,-0.0057065486907959,-0.024617504328489]],[[-0.018475919961929,-0.0023946333676577,0.063110344111919],[-0.030658999457955,-0.019246501848102,-0.057549208402634],[0.0093662310391665,0.009422161616385,-0.013601855374873]],[[-0.043929785490036,0.055115360766649,-0.013413113541901],[-0.052466314285994,-0.039384834468365,-0.045043434947729],[0.065069772303104,-0.077550023794174,0.038435325026512]],[[-0.043147463351488,-0.0040448666550219,-0.063421443104744],[-0.018832651898265,-0.019630856812,-0.050898134708405],[0.043284207582474,-0.0064178523607552,-0.060060225427151]],[[0.10086117684841,0.00075800099875778,-0.00943339522928],[0.11703143268824,0.041849851608276,-0.046031415462494],[0.044418096542358,0.10467696934938,0.071980021893978]],[[-0.043742619454861,-0.053220558911562,0.0059279333800077],[-0.018488805741072,0.031518239527941,-0.097046136856079],[-0.021777475252748,0.017867395654321,-0.01452300325036]],[[0.042750209569931,-0.015742531046271,0.060068514198065],[-0.0021388556342572,0.080051191151142,-0.014740715734661],[0.060899917036295,0.036387916654348,-0.025783643126488]],[[-0.019621914252639,-0.031872894614935,-0.0047323927283287],[0.030404342338443,-0.10557476431131,-0.013415439985693],[-0.052629064768553,-0.0179802197963,0.049093771725893]],[[0.11439094692469,0.013489847071469,0.084661327302456],[-0.020514938980341,-0.01025109179318,0.084768570959568],[0.025426303967834,0.08520682156086,-0.001979119842872]],[[-0.00046052914694883,-0.030443921685219,0.016896564513445],[-0.066595181822777,0.049705967307091,0.0094848889857531],[-0.039180319756269,0.017177144065499,0.066233366727829]],[[0.091937474906445,0.040770590305328,0.042908508330584],[0.020848233252764,0.045217741280794,-0.049812771379948],[-0.00089725997531787,0.0021860715933144,-0.01701264642179]],[[-0.044820372015238,0.067077770829201,-0.027252299711108],[0.042319595813751,-0.0097295762971044,0.062685370445251],[0.069811917841434,0.097092255949974,0.085045151412487]],[[0.051003284752369,-0.053936086595058,0.0010334596736357],[-0.030516315251589,0.057876095175743,0.10583082586527],[0.030492309480906,-0.067692883312702,-0.062686987221241]],[[-0.020289802923799,0.028144452720881,-0.059241931885481],[-0.011085709556937,-0.052194129675627,0.037526782602072],[-0.0063285604119301,-0.10371946543455,-0.040030226111412]],[[0.098080076277256,-0.0025013675913215,0.11343914270401],[0.056026007980108,0.033460479229689,-0.016655525192618],[0.022020604461432,-0.10842244327068,-0.073876030743122]],[[-0.0047090770676732,-0.024760279804468,0.020185574889183],[-0.0042889965698123,0.030869686976075,0.036732129752636],[0.013381669297814,0.043156199157238,-0.1064246147871]],[[-0.036206465214491,0.061544205993414,0.0098881060257554],[-0.059886552393436,-0.060845099389553,0.059931267052889],[0.070920243859291,-0.0045102788135409,-0.077741615474224]],[[-0.00016194069758058,0.072495460510254,0.084044091403484],[-0.010770987719297,-0.060810353606939,-0.060748219490051],[-0.034864950925112,0.081665270030499,0.022463317960501]],[[0.064141489565372,0.099048972129822,-0.0099747814238071],[0.10498886555433,0.06180103495717,0.037134420126677],[-0.052889414131641,-0.017015524208546,0.01011424139142]],[[-0.014640947803855,0.0092729302123189,-0.025715865194798],[-0.04554495215416,-0.023085989058018,0.084765315055847],[-0.033538676798344,-0.054638728499413,0.058770921081305]],[[0.018799731507897,-0.036602046340704,0.011678228154778],[-0.077234216034412,-0.040829267352819,0.031468957662582],[0.0039145774208009,0.011538965627551,-0.0075110029429197]],[[-0.015391804277897,0.017347451299429,0.03176324814558],[0.065593384206295,0.038259703665972,-0.020832223817706],[0.0099866017699242,-0.05964994058013,0.057121608406305]],[[0.030870834365487,0.11995529383421,0.16019213199615],[-0.034309100359678,0.01656005717814,-0.0669199898839],[0.014326973818243,0.12448278814554,0.020702879875898]],[[-0.065422005951405,-0.0082781175151467,-0.02012974023819],[0.0040330085903406,-0.022372577339411,0.079209618270397],[-0.03356434777379,-0.038547284901142,0.0093499775975943]],[[0.054124910384417,-0.016092699021101,0.10880345106125],[-0.047969914972782,-0.088273733854294,0.034798953682184],[0.0096727684140205,-0.049849737435579,-0.036984100937843]],[[0.0023607898037881,0.036930914968252,0.060803607106209],[0.070141889154911,-0.0051184194162488,-0.021573800593615],[0.015895297750831,0.043434415012598,-0.068974956870079]],[[-0.0066393972374499,0.0079600410535932,-0.016360683366656],[-0.010200926102698,0.10960225015879,0.077442325651646],[0.0059273038059473,-0.20003613829613,-0.0097884004935622]],[[-0.030836671590805,-0.01490434166044,-0.058215759694576],[0.079599753022194,-0.052746947854757,-0.020485928282142],[-0.027676725760102,0.025180140510201,-0.037599287927151]],[[0.013771401718259,0.019050581380725,-0.043877180665731],[-0.0040713464841247,0.013367082923651,-0.010149199515581],[0.035001698881388,-0.0032952853944153,0.031532749533653]],[[0.015971072018147,0.10015822201967,0.035308539867401],[0.0022993579041213,-0.024931464344263,-0.022158117964864],[0.033416226506233,-0.089225351810455,0.077644214034081]],[[-0.067676462233067,-0.054438352584839,-0.014040815643966],[0.081148572266102,0.045880813151598,-0.0014813748421147],[0.064292348921299,-0.054019503295422,-0.0063403900712729]],[[0.08514366298914,-0.05031630396843,-0.070682905614376],[0.0010920552304015,-0.020632931962609,-0.025538690388203],[-0.090509198606014,0.062025342136621,0.087717980146408]],[[-0.044672083109617,0.092040337622166,-0.016831018030643],[-0.01791875064373,0.036980528384447,-0.00015421236457769],[-0.079222954809666,-0.017774898558855,0.038070343434811]],[[0.063669390976429,-0.07760039716959,-0.036073207855225],[0.0079859932884574,-0.026215644553304,-0.031836297363043],[0.00083564664237201,0.049785617738962,0.0013668743195012]],[[-0.10383712500334,-0.023603914305568,-0.042775090783834],[0.069406263530254,0.0016164117259905,0.090604156255722],[-0.023994931951165,-0.0082583846524358,0.03283628448844]],[[-0.027760948985815,0.010676626116037,-0.078485615551472],[0.029893195256591,0.014405651018023,0.044715967029333],[-0.023387234658003,-0.041362650692463,-0.011011353693902]],[[-0.00082981860032305,0.069079451262951,-0.023031331598759],[0.035361815243959,0.017780734226108,0.018149476498365],[0.031602695584297,0.05909176170826,0.1688187867403]],[[0.080423839390278,0.046043463051319,-0.01473831012845],[0.06395298242569,0.0687325745821,-0.013447324745357],[-0.0053257970139384,0.13467560708523,0.01693207398057]],[[-0.0070348619483411,-0.051807932555676,-0.0073952162638307],[-0.023081528022885,0.020913027226925,0.0096280043944716],[0.064804218709469,0.094796128571033,0.020031981170177]],[[-0.071923077106476,0.0092065893113613,0.089423678815365],[0.016793735325336,0.055433072149754,-0.075742371380329],[0.068304888904095,-0.061311226338148,0.097389236092567]],[[-0.038671411573887,-0.053621686995029,-0.0043370947241783],[0.023099634796381,-0.040065482258797,-0.0029222774319351],[-0.028145149350166,-0.033460758626461,-0.020905993878841]],[[-0.022408790886402,-0.0077285687439144,-0.056477915495634],[-0.025511322543025,-0.04786778241396,-0.017556050792336],[0.088088884949684,0.020622383803129,-0.077000789344311]],[[0.055233415216208,0.0091673377901316,-0.015236243605614],[-0.013729406520724,0.019417271018028,0.042744383215904],[0.0021124097984284,-0.11384025961161,0.018255557864904]],[[0.050018519163132,0.0013048058608547,0.099805608391762],[-0.024514326825738,-0.030976761132479,-0.075912691652775],[0.04444545507431,0.027403339743614,0.0087516568601131]],[[-0.049171797931194,-0.028914343565702,-0.0277532748878],[0.071630001068115,0.0050449441187084,-0.067444801330566],[-0.072879448533058,-0.0066115520894527,-0.12744282186031]],[[0.067307196557522,0.079876229166985,0.0057911034673452],[0.028067098930478,0.0031189876608551,0.045756131410599],[-0.014447053894401,0.052942719310522,0.073012508451939]],[[-0.051961909979582,-0.043114487081766,-0.039791356772184],[-0.065597735345364,0.016781536862254,-0.050140388309956],[0.059833791106939,-0.010532440617681,0.017483331263065]],[[-0.005813502240926,-0.046250823885202,-0.051442611962557],[-0.031560514122248,0.040399685502052,-0.05511712282896],[0.089049153029919,0.063933305442333,0.0091244094073772]],[[-0.05802645906806,0.016468670219183,-0.1198301538825],[-0.017750127241015,-0.03827677667141,-0.015346490778029],[0.015075599774718,0.03429701924324,0.03656218573451]]],[[[0.065541952848434,-0.028490167111158,0.0071338550187647],[-0.02593463100493,-0.092500612139702,-0.062735557556152],[-0.067776784300804,-0.034422378987074,-0.03616513684392]],[[0.00058449030620977,-0.10103166103363,0.049086809158325],[-0.0016187448054552,0.043079130351543,0.069175608456135],[-0.026141412556171,0.086043901741505,0.033629324287176]],[[0.018101507797837,0.027181036770344,-0.057870656251907],[0.075476244091988,0.052048482000828,-0.032881837338209],[0.0078569799661636,-0.012782788835466,-0.0082041546702385]],[[0.035307187587023,-0.024345083162189,-0.022462075576186],[0.040788274258375,-0.13371770083904,0.015840038657188],[-0.023981377482414,0.055166468024254,0.025656847283244]],[[0.065133906900883,-0.02437655813992,-0.043922375887632],[-0.045271277427673,-0.026140483096242,-0.007033409550786],[0.058105383068323,-0.10260901600122,0.036248989403248]],[[-0.056910827755928,0.038596976548433,-0.035275641828775],[0.036106888204813,-0.10120912641287,-0.11408780515194],[0.0094608357176185,0.083489395678043,0.095733046531677]],[[0.039492964744568,-0.041297975927591,-0.088918142020702],[-0.090899012982845,-0.0074527207762003,-0.033636581152678],[0.040138930082321,-0.10210008919239,0.047393050044775]],[[-0.052478343248367,0.0011461375979707,-0.01602890342474],[-0.019096141681075,-0.027785122394562,0.099913083016872],[0.051213007420301,0.062866270542145,0.073759905993938]],[[-0.10311556607485,0.013364509679377,-0.025355264544487],[0.018072871491313,0.025482283905149,-0.050040904432535],[-0.070180244743824,0.010502230376005,-0.02467948384583]],[[-0.066828429698944,-0.086932890117168,0.030676323920488],[-0.091611631214619,-0.0094213942065835,-0.013380295597017],[-0.051274824887514,-0.072688587009907,-0.099687792360783]],[[0.014772532507777,-0.021282119676471,-0.013957994990051],[0.032758697867393,-0.04650067538023,0.034586776047945],[0.07524773478508,0.0045176665298641,0.025500174611807]],[[-0.080472618341446,0.0079155946150422,0.04837179929018],[-0.028417168185115,-0.0088660949841142,-0.033831663429737],[-0.00077326345490292,0.031147906556726,0.024893535301089]],[[0.0067866034805775,0.001329354592599,0.00077942601637915],[-0.0054146307520568,0.14452503621578,0.027094330638647],[-0.019270930439234,0.018993167206645,0.054671801626682]],[[-0.01781446300447,-0.07783655077219,0.034019976854324],[0.06476266682148,0.017183493822813,0.031701162457466],[-0.044982131570578,0.073822349309921,-0.051082499325275]],[[-0.08997854590416,-0.056629702448845,-0.0092124789953232],[0.10188801586628,0.0036502261646092,-0.024355325847864],[0.019229382276535,-0.030921444296837,-0.056525152176619]],[[0.023999132215977,-0.019624255597591,-0.030887696892023],[-0.094682738184929,0.082114659249783,-0.080543003976345],[0.037298493087292,0.06068279966712,-0.055497214198112]],[[-0.019780907779932,0.037968117743731,-0.0032208901830018],[-0.055338494479656,-0.085773214697838,0.073617607355118],[-0.051984544843435,0.034092612564564,0.047875665128231]],[[0.0085447635501623,-0.015896536409855,0.019872648641467],[0.0085864746943116,-0.042417146265507,-0.075704142451286],[0.039081774652004,-0.02876060642302,-0.050621476024389]],[[0.0048584090545774,0.029367286711931,0.089779607951641],[-0.012166849337518,-0.089451804757118,0.077336564660072],[-0.035233397036791,-0.0052338521927595,-0.050265960395336]],[[-0.0073059187270701,0.049050122499466,-0.019630325958133],[-0.10446711629629,-0.0036458852700889,-0.010903121903539],[-0.038893014192581,-0.040101103484631,0.051170229911804]],[[-0.039221696555614,-0.0096784289926291,0.025173826143146],[0.028230043128133,-0.041782308369875,-0.010739432647824],[-0.026029951870441,-0.0075283069163561,0.074295245110989]],[[-0.077156856656075,-0.068324126303196,-0.04821003600955],[-0.015300882980227,-0.035545289516449,-0.058439578860998],[0.029388844966888,0.066514827311039,0.097056917846203]],[[0.025439959019423,0.039089478552341,-0.11870267987251],[-0.054457876831293,0.047737449407578,0.022797886282206],[-0.079580932855606,-0.049321163445711,-0.090206056833267]],[[0.077695980668068,-0.041290793567896,-0.016224928200245],[-0.053139876574278,-0.0085939923301339,-0.064123243093491],[-0.051348827779293,-0.13709469139576,0.00017801686772145]],[[-0.042015846818686,-0.021516716107726,-0.0082547720521688],[-0.065382912755013,-0.010283431969583,-0.039573151618242],[-0.0017999873962253,-0.0082517936825752,-0.076511777937412]],[[-0.013219663873315,0.11567974835634,0.010146512649953],[0.094549402594566,0.00050578650552779,0.084574617445469],[0.025556974112988,0.037292972207069,0.074977673590183]],[[0.086866743862629,-0.047471806406975,0.052237059921026],[-0.035358466207981,-0.1542913466692,0.045794371515512],[-0.015699353069067,-0.012168286368251,0.015726817771792]],[[0.014564060606062,-0.05421594902873,0.018948815762997],[0.012444366700947,-0.14953181147575,-0.05929297208786],[0.019045803695917,-0.06988750398159,-0.029350869357586]],[[-0.052264407277107,-0.010796122252941,-0.055124145001173],[0.0065166517160833,0.040277790278196,-0.041494984179735],[0.010667025111616,0.11255368590355,-0.12851369380951]],[[0.052624799311161,-0.077574029564857,0.021624773740768],[-0.08702514320612,-0.074913188815117,-0.0025176734197885],[-0.046467795968056,-0.006519690155983,-0.074915885925293]],[[0.0097404355183244,0.0050136432982981,0.02699282951653],[-0.099863313138485,-0.0085797589272261,-0.025617659091949],[0.041313041001558,-0.054356720298529,0.084706157445908]],[[-0.025424443185329,0.08242155611515,-0.046007506549358],[0.0033167528454214,-0.028328090906143,-0.0032444456592202],[-0.0063541550189257,0.035512000322342,0.067445777356625]],[[-0.020377431064844,-0.030249930918217,0.0069461902603507],[-0.012564601376653,-0.01335259154439,-0.021980207413435],[0.06591272354126,-0.006034342572093,-0.062103074043989]],[[-0.041976280510426,-0.078760214149952,-0.03117641992867],[0.11057567596436,0.035858552902937,-0.019588638097048],[-0.021198771893978,-0.043531265109777,0.046829145401716]],[[0.00064179883338511,0.015973525121808,-0.013330915011466],[-0.038480587303638,0.083802364766598,-0.036207649856806],[-0.0030377618968487,0.084445014595985,0.028616523370147]],[[-0.022182919085026,-0.020851340144873,-0.074720531702042],[-0.15183535218239,-0.021650621667504,-0.021216610446572],[0.053751543164253,-0.076579183340073,0.0090794721618295]],[[-0.027828447520733,0.0077695236541331,-0.001005393685773],[0.04218889400363,0.073775500059128,-0.0033754114992917],[-0.12266343832016,0.052689582109451,-0.020956924185157]],[[-0.060635887086391,-0.047322750091553,-0.0042771850712597],[-0.036094941198826,-0.10778609663248,0.048415835946798],[-0.048551458865404,-0.14171023666859,0.014034149236977]],[[0.073998957872391,0.042302176356316,0.059586729854345],[0.0522241294384,0.095070190727711,0.0040630102157593],[0.071062594652176,0.05732399597764,-0.030538912862539]],[[-0.01076508872211,0.024552091956139,-0.011999097652733],[-0.053119596093893,-0.038208149373531,-0.0040265433490276],[-0.031674906611443,-0.068308308720589,-0.001770467730239]],[[-0.01273840200156,0.061818119138479,-0.031201153993607],[0.0081905722618103,0.059970214962959,0.050160724669695],[0.05583743751049,-0.038754507899284,0.052233643829823]],[[0.05714375525713,0.028492335230112,0.08903294801712],[0.027796627953649,-0.012117494828999,0.019292194396257],[0.034772243350744,-0.040658861398697,-0.067450955510139]],[[-0.0052244835533202,-0.056854013353586,0.057797741144896],[-0.075305707752705,-0.055427581071854,-0.036581590771675],[-0.027899054810405,0.0071479757316411,-0.071146942675114]],[[0.055437542498112,0.0080174766480923,-0.0027479212731123],[0.0021688004489988,0.02555244602263,-0.024357384070754],[0.04855040460825,0.019139306619763,0.018974917009473]],[[0.022381417453289,0.043070022016764,0.012880318798125],[0.054173059761524,-0.0015359311364591,0.01807464659214],[-0.040771275758743,0.046786315739155,-0.013841119594872]],[[-0.037806313484907,-0.064238391816616,-0.0070688463747501],[0.043175138533115,0.019007848575711,-0.071500949561596],[-0.00014071827172302,-0.064532749354839,0.011354338377714]],[[0.02973772585392,-0.022744599729776,0.0079333037137985],[0.0092359576374292,-0.042178492993116,-0.049686353653669],[-0.070896312594414,-0.049660909920931,-0.042461860924959]],[[-0.0019069202244282,0.0057037388905883,0.10344696044922],[0.058039367198944,-0.023098366335034,-0.023445062339306],[0.071533150970936,0.011929158121347,-0.031380448490381]],[[-0.1332832723856,-0.045507539063692,-0.019177919253707],[-0.0084857642650604,-0.030990583822131,-0.076337046921253],[0.038580872118473,-0.054100297391415,-0.036146961152554]],[[0.0096390042454004,0.009199577383697,0.0012923672329634],[-0.063984088599682,-0.024434469640255,-0.027101406827569],[0.10624326020479,-0.016291052103043,0.084007441997528]],[[-0.049918349832296,0.006990369874984,-0.00042755494359881],[-0.025338811799884,-0.03084871917963,0.018931007012725],[-0.022084088996053,0.006544956471771,-0.010672487318516]],[[-0.031747281551361,-0.045669890940189,-0.029310911893845],[-0.056231990456581,-0.0046944413334131,0.075907565653324],[0.037829000502825,0.077212430536747,0.03037584386766]],[[-0.041938461363316,-0.022699672728777,0.0035214999224991],[-0.049944695085287,-0.027414305135608,-0.024370562285185],[-0.013040193356574,-0.0079750679433346,0.05097022280097]],[[-0.076402574777603,-0.017222257331014,-0.032359179109335],[-0.025326393544674,-0.038681589066982,0.0095089832320809],[-0.12404544651508,-0.059617627412081,0.070216223597527]],[[-0.049350127577782,0.082634337246418,-0.010680080391467],[0.072223737835884,-0.19001454114914,-0.0037650649901479],[-0.057769317179918,0.0422078743577,-0.051522526890039]],[[-0.054258227348328,-0.038050927221775,-0.048796739429235],[-0.033439643681049,0.045615147799253,0.022748684510589],[0.057333968579769,0.0039294227026403,-9.0126588474959e-05]],[[0.068757101893425,-0.020076399669051,0.045394577085972],[-0.047957353293896,-0.11702592670918,0.038621857762337],[-0.031731132417917,-0.03533623740077,0.030535655096173]],[[0.015372195281088,-0.018156351521611,-0.025542983785272],[-0.075915046036243,-0.016107635572553,-0.006707944907248],[-0.010449322871864,0.0080132521688938,0.078970424830914]],[[0.022386340424418,-0.08118661493063,-0.05683197453618],[-0.0032996933441609,0.026469156146049,0.022015277296305],[0.088766932487488,-0.045722533017397,0.057729948312044]],[[-0.050703652203083,-0.004538634326309,0.026149118319154],[-0.060762479901314,0.0040935566648841,0.032065201550722],[-0.054227158427238,-0.036451674997807,0.037008382380009]],[[0.0058579798787832,0.038920059800148,0.036976203322411],[-0.096626199781895,0.040842648595572,0.0031902063637972],[0.073210142552853,0.011174088343978,0.038870807737112]],[[0.084024615585804,-0.0065226177684963,0.045459680259228],[0.035937204957008,-0.018566491082311,0.028164707124233],[-0.10499657690525,-0.071422167122364,-0.083520084619522]],[[0.049793034791946,0.03531876206398,-0.017926977947354],[-0.005762305110693,0.092944912612438,0.011995007283986],[-0.053512815386057,-0.046198036521673,0.037858001887798]],[[-0.052951596677303,0.067817240953445,-0.012272167019546],[0.057790454477072,-0.096463732421398,0.023294724524021],[0.012783587910235,0.030994703993201,-0.0024223926011473]],[[0.058392189443111,0.029885711148381,0.0028427909128368],[-0.01081619784236,-0.055680833756924,-0.028574282303452],[0.047846172004938,-0.031891316175461,0.0045261578634381]],[[0.037794556468725,0.02600334957242,0.026127852499485],[-0.051680400967598,0.0025514725130051,0.037938747555017],[-0.015451246872544,-0.060159150511026,-0.03367904946208]],[[-0.02641493268311,-0.063901789486408,-0.01599776186049],[-0.035567555576563,-0.044543609023094,-0.079358480870724],[-0.038258355110884,0.016048138961196,-0.0010520257055759]],[[-0.066435657441616,-0.0045957192778587,0.025015261024237],[0.080949977040291,-0.0028542017098516,-0.049852132797241],[0.022131664678454,0.033683087676764,0.013205790892243]],[[-0.028262889012694,-0.052942980080843,-0.036737442016602],[0.033807218074799,0.0099760321900249,-0.01225212495774],[-0.043550286442041,-0.026089895516634,-0.034401319921017]],[[0.032238028943539,-0.051334407180548,0.025986673310399],[-0.0068047316744924,-0.045965243130922,-0.030689690262079],[-0.01939301379025,0.046433042734861,0.028041677549481]],[[0.043950915336609,0.036291401833296,-0.010373220779002],[-0.03895727917552,0.015869488939643,-0.022624777629972],[0.0065400651656091,0.050586182624102,0.017839949578047]],[[-0.036431580781937,-0.047736439853907,-0.028379388153553],[0.0024930275976658,-0.017701122909784,0.0095869265496731],[0.074390135705471,-0.1590588837862,0.034970920532942]],[[0.0016894497675821,0.032072648406029,0.065173961222172],[0.025999611243606,0.011320427060127,0.0068743922747672],[-0.034207116812468,-0.0070094289258122,0.034897714853287]],[[-0.005065490026027,-0.063176460564137,-0.059666596353054],[-0.022388491779566,-0.078329391777515,0.019101826474071],[-0.043369196355343,-0.071631096303463,0.013648404739797]],[[-0.013095343485475,0.068003445863724,-0.0040340921841562],[0.038057148456573,-0.094282880425453,0.042567055672407],[-0.086179785430431,0.026547472923994,-0.021585263311863]],[[-0.012396953999996,-0.016967622563243,-0.012575127184391],[-0.018212774768472,-0.097201555967331,-0.0538823120296],[-0.033010058104992,-0.12335520237684,-0.099671125411987]],[[-0.0068882475607097,0.024396872147918,-0.085045009851456],[0.066344082355499,0.01987380720675,0.044004689902067],[0.0079577136784792,0.045189131051302,-0.010643623769283]],[[-0.014759437181056,0.10867286473513,0.048976320773363],[0.0025341694708914,-0.034850541502237,0.022235551849008],[0.029214533045888,0.014598520472646,0.074557438492775]],[[-0.0067915478721261,-0.029347771778703,-0.023324355483055],[-0.019935805350542,-0.026649149134755,0.019426370039582],[-0.031218603253365,0.10562712699175,-0.029375014826655]],[[-0.055902261286974,0.093998126685619,0.026482444256544],[-0.039129510521889,0.027775140479207,-0.0013750717043877],[-0.053887259215117,0.053825125098228,-0.035051319748163]],[[-0.03938515111804,-0.0091744950041175,-0.075859114527702],[0.016613917425275,0.0018394233193249,-0.054808709770441],[-0.0012882468290627,-0.023653130978346,-0.0021012567449361]],[[-0.00038258524728008,0.035109609365463,0.01240848749876],[-0.012018942274153,-0.068105638027191,-0.040359281003475],[0.022082613781095,-0.0033749721478671,-0.053059663623571]],[[-0.036252047866583,0.015797052532434,-0.021928604692221],[0.050683822482824,-0.063335441052914,-0.046335324645042],[0.039761260151863,0.080365128815174,0.0071981381624937]],[[-0.083109445869923,-0.0092170182615519,-0.044683448970318],[-0.01849228516221,0.035401601344347,0.046235699206591],[0.00042044656584039,-0.10403111577034,0.074870459735394]],[[-0.047843903303146,-0.0080795073881745,0.0039207236841321],[0.055979423224926,-0.035845961421728,-0.043486785143614],[-0.010150791145861,0.038899123668671,0.002129026921466]],[[0.014942203648388,-0.079455107450485,0.035035952925682],[-0.080131247639656,-0.11356677114964,-0.0068421545438468],[0.016640853136778,-0.0091202361509204,-0.027250438928604]],[[0.035797696560621,0.079999975860119,-0.058312427252531],[-0.061081014573574,0.029767321422696,-0.01126619707793],[0.024248838424683,-0.024295657873154,-0.057887617498636]],[[-0.024957461282611,-0.014037203043699,-0.017996029928327],[-0.058178883045912,-0.046780630946159,-0.0079595968127251],[0.052438989281654,-0.031155629083514,0.0083666415885091]],[[0.0075498134829104,-0.034226663410664,-0.046298258006573],[-0.06915957480669,0.073969759047031,-0.007590863853693],[0.023280320689082,0.1161447763443,0.054462213069201]],[[-0.12075860053301,0.0019416097784415,-0.010642881505191],[-0.032049138098955,0.027246015146375,0.012962989509106],[-0.047637436538935,0.019346473738551,-0.020100908353925]],[[-0.014992409385741,0.0042493385262787,0.056500058621168],[0.054748088121414,0.039499498903751,-0.086565278470516],[0.0083953347057104,-0.032709408551455,-0.05241047218442]],[[-0.033582206815481,0.039526883512735,0.029683651402593],[0.068845450878143,0.0031815816182643,0.089334279298782],[0.069592863321304,-0.0029071003664285,0.017201060429215]],[[-0.017401689663529,-0.021996302530169,0.036719277501106],[-0.13087558746338,0.090602122247219,-0.022455068305135],[-0.056883942335844,-0.00040804166928865,0.017686992883682]],[[-0.012591789476573,0.03531077131629,-0.00067655934253708],[0.046708211302757,0.015133550390601,-0.017606502398849],[-0.067800961434841,-0.007651137188077,-0.046965897083282]],[[-0.00085448886966333,-0.003429775359109,-0.034278590232134],[-0.10921628773212,-0.098438672721386,-0.08778104186058],[-0.068117447197437,-0.027159785851836,0.056064676493406]],[[-0.012807106599212,0.026588119566441,0.027333514764905],[-0.062788844108582,-0.064211122691631,0.023627487942576],[-0.025940367951989,-0.0011969794286415,0.0092228706926107]],[[0.0029508699662983,0.025233076885343,0.021174820140004],[-0.077689692378044,0.028025766834617,-0.023556862026453],[0.014308114536107,0.0016146656125784,0.0076046311296523]],[[0.0057634627446532,-0.011617068201303,-0.058850318193436],[-0.0199269130826,-0.10206889361143,-0.051538798958063],[0.075049810111523,0.057161204516888,-0.0087934201583266]],[[0.061813414096832,-0.014105993323028,0.02930436655879],[-0.020501185208559,-0.07656841725111,0.014809778891504],[-0.12620739638805,0.022424377501011,0.012434417381883]],[[-0.02783022634685,-0.076814755797386,-0.051380559802055],[-0.01263662148267,-0.0088157653808594,-0.025680735707283],[0.039906680583954,0.073932938277721,-0.041287861764431]],[[0.041343353688717,-0.025264460593462,0.045592278242111],[0.021785732358694,0.014764610677958,-0.042886007577181],[-0.05699323490262,-0.038790829479694,0.050165642052889]],[[-0.067383259534836,-0.17400659620762,-0.059169553220272],[0.083761818706989,-0.00054704881040379,-0.060161124914885],[-0.042339757084846,0.036639265716076,0.01891341432929]],[[-0.06924769282341,-0.018096981570125,-0.045063734054565],[-0.0096735237166286,0.038480747491121,0.023496335372329],[0.046406883746386,0.02239004150033,0.01340941991657]],[[0.0062538809143007,0.064286597073078,0.032264657318592],[-0.0030341593082994,0.067575417459011,-0.019807193428278],[-0.012832739390433,0.0087048662826419,0.10817034542561]],[[-0.026652628555894,-0.089785911142826,-0.044395841658115],[-0.11076331138611,0.0021213735453784,-0.01057758834213],[-0.0086315320804715,0.0031699067912996,0.0016652420163155]],[[-0.012794456444681,0.046918820589781,-0.018460806459188],[-0.024167308583856,-0.0037493836134672,0.056065060198307],[0.054228406399488,0.063428446650505,-0.10596894472837]],[[0.061630517244339,-0.056481409817934,0.018416875973344],[0.0091685727238655,-0.027850046753883,0.13896791636944],[0.037492621690035,-0.068224519491196,0.026705730706453]],[[0.014168432913721,0.0087423855438828,-0.001053805812262],[0.0077926833182573,0.094337567687035,-0.059669222682714],[-0.012300807051361,-0.04236887767911,-0.038616713136435]],[[-0.065021201968193,-0.017173936590552,-0.057532295584679],[-0.0024599230382591,-0.057062115520239,0.043202854692936],[-0.038643959909678,0.042755164206028,-0.0088381348177791]],[[-0.026219271123409,-0.023386867716908,-0.038202658295631],[0.040700253099203,-0.026770032942295,-0.041779115796089],[-0.081223614513874,-0.039824698120356,-0.0028513353317976]],[[0.010261011309922,0.013713371008635,0.0378806181252],[0.030386349186301,0.057496059685946,0.031258180737495],[0.031995996832848,-0.00073380436515436,0.035968575626612]],[[0.043101754039526,0.014053172431886,0.012320979498327],[-0.02946125715971,0.046911980956793,0.095541439950466],[0.12666240334511,-0.0034123074728996,-0.0046890745870769]],[[0.033279683440924,-0.014496698975563,0.028934257104993],[-0.019068617373705,-0.07208251953125,0.026697669178247],[-0.045313436537981,-0.0059265941381454,0.011325010098517]],[[0.0087153185158968,-0.037464898079634,-0.0045084995217621],[-0.029570378363132,0.031171539798379,-0.046305276453495],[0.020279774442315,-0.028123626485467,-0.035771746188402]],[[0.035337679088116,-0.027394047006965,0.022566832602024],[-0.041138708591461,0.047867227345705,-0.085111938416958],[0.054043602198362,0.049892071634531,-0.0046161198988557]],[[-0.0093441754579544,0.053319729864597,0.079036578536034],[0.0023194735404104,0.010730119422078,0.00062981463270262],[-0.014498731121421,0.078777223825455,0.0066104629077017]],[[-0.0632229372859,0.0043316963128746,0.0038438620977104],[0.013888056389987,0.092554897069931,-0.017900343984365],[0.032560087740421,0.077542319893837,-0.077482834458351]],[[-0.025797344744205,-0.016225036233664,0.023207308724523],[-0.052377533167601,-0.012324327602983,0.012508110143244],[-0.053017165511847,0.051941901445389,-0.017942938953638]],[[-0.015174350701272,0.076129831373692,-0.05136339366436],[0.0049095209687948,0.01710882037878,-0.041994255036116],[-0.05875975638628,-0.062320489436388,-0.025029452517629]],[[-0.099518574774265,0.099966138601303,0.017005488276482],[0.04126151278615,0.019670734182,0.013486666604877],[-0.051748786121607,-0.046016164124012,0.03250827267766]],[[-0.044667262583971,-0.01391973439604,0.048139773309231],[-0.016734538599849,-0.054185904562473,0.023341020569205],[-0.025653399527073,0.065211206674576,0.037046443670988]],[[-0.0030144695192575,-0.062052622437477,0.080657914280891],[0.043662410229445,0.012704716064036,-0.074867531657219],[0.026517197489738,-0.033704780042171,0.12029629945755]],[[-0.040152534842491,0.022231429815292,-0.031633816659451],[-0.031519077718258,0.03105135075748,-0.0049686888232827],[0.06989948451519,0.053957641124725,0.065767884254456]],[[-0.045462027192116,0.023044664412737,0.049197696149349],[-0.025759376585484,0.013622115366161,0.013799211941659],[0.030015543103218,0.028632644563913,-0.012990947812796]],[[-0.01876743324101,-0.0010651395423338,-0.0067333495244384],[0.038964807987213,-0.050242617726326,0.041912999004126],[0.013827032409608,-0.0075051728636026,0.003978444263339]],[[0.049421858042479,0.049213882535696,0.012825455516577],[-0.044095639139414,0.020596707239747,0.067233726382256],[0.026511535048485,0.089775487780571,0.069530740380287]],[[-0.027986396104097,-0.071676999330521,-0.033096991479397],[-0.0044237249530852,-0.063545107841492,0.12229762971401],[-0.028194803744555,-0.025260515511036,-0.0084821293130517]],[[-0.0069398474879563,0.051979649811983,-0.025449389591813],[0.017912764102221,0.057548146694899,0.076151490211487],[0.0081679616123438,0.032770838588476,0.11564268916845]]],[[[0.042427223175764,0.054726988077164,0.010330703109503],[0.052650358527899,0.00032936752540991,-0.030968969687819],[-0.007814759388566,0.04209204390645,0.0016492580762133]],[[-0.042921498417854,-0.065094634890556,0.028363412246108],[0.042951237410307,-0.025912387296557,0.0054003936238587],[0.0809455960989,0.06565223634243,-0.032668251544237]],[[-0.019144477322698,-0.0041530630551279,0.0049671758897603],[0.015758769586682,-0.028181849047542,-0.071324825286865],[-0.013814131729305,-0.050691340118647,0.039066411554813]],[[0.005288069602102,-0.044647917151451,-0.030545804649591],[-0.085410676896572,0.040674179792404,0.013045475818217],[0.04094784706831,0.047101590782404,-0.052961613982916]],[[-0.040943000465631,-0.022853400558233,-0.01439162902534],[-0.032046694308519,0.003162331180647,0.016302919015288],[0.032974533736706,-0.047242216765881,-0.030087368562818]],[[0.016586296260357,-0.013571485877037,0.067427724599838],[0.024481749162078,0.029885862022638,-0.067522376775742],[0.079088769853115,-0.010848827660084,0.057429384440184]],[[-0.0024413473438472,0.0061501613818109,-0.038794748485088],[-0.029399544000626,-0.027460720390081,-0.043810307979584],[-0.0040901857428253,-0.13151986896992,0.065733417868614]],[[0.00023243823670782,-0.026788691058755,-0.016787439584732],[-0.023939011618495,-0.065321728587151,-0.010518472641706],[-0.03735201433301,0.016665076836944,-0.0044248295016587]],[[0.033024948090315,0.021741481497884,-0.089931756258011],[0.049730531871319,0.08929630368948,0.037065379321575],[-0.00032265417394228,0.032383225858212,0.029874114319682]],[[0.07873447239399,-0.045251935720444,0.049070850014687],[0.059415727853775,-0.11016035079956,0.067896880209446],[0.12025332450867,0.14675687253475,0.080217503011227]],[[0.0025432186666876,-0.015086026862264,-0.0070627531968057],[0.0015562494518235,-0.055629767477512,-0.048672042787075],[0.045569844543934,-0.031310491263866,0.0078084794804454]],[[0.025112127885222,0.042545780539513,0.009833044372499],[0.012891383841634,0.028959395363927,0.0004099529760424],[0.04844143986702,-0.0021412454079837,0.057084456086159]],[[-0.02819268591702,-0.025635907426476,0.03333655372262],[0.080367058515549,-0.010696626268327,-0.074812427163124],[0.05029734224081,0.039213664829731,0.031177539378405]],[[-0.039993643760681,0.048860367387533,0.075355492532253],[-0.013514909893274,0.0063140699639916,-0.056143272668123],[0.0014755734009668,-0.036194082349539,0.030445255339146]],[[0.13452668488026,0.11091186106205,0.050805680453777],[-0.041690345853567,0.10079329460859,0.17188832163811],[0.088147290050983,-0.031552068889141,0.1223244741559]],[[-0.01764421351254,-0.039411410689354,-0.023773986846209],[-0.084859021008015,-0.015980480238795,-0.018524454906583],[-0.04639020934701,-0.032533571124077,-0.018323292955756]],[[-0.034577697515488,0.013422733172774,-0.0051850196905434],[0.012113717384636,-0.023383419960737,-0.015408578328788],[0.068428918719292,-0.054440174251795,0.05690174549818]],[[-0.048897743225098,-0.01019867323339,-0.038479525595903],[0.027210012078285,0.025207340717316,-0.0054526352323592],[-0.030793262645602,0.017621818929911,0.025401700288057]],[[-0.015782456845045,-0.028876589611173,0.024412997066975],[0.031906384974718,0.01272424031049,0.020134147256613],[-0.0060443743132055,-0.06268484890461,0.083068452775478]],[[-0.03644448146224,0.067610174417496,0.044437263160944],[0.033538110554218,-0.0034435179550201,0.041032344102859],[0.093633234500885,-0.0071059404872358,-0.0073636770248413]],[[-0.050224438309669,-0.028136420994997,-0.032684218138456],[-0.094597987830639,-0.026167849078774,0.02241531945765],[0.02593701146543,-0.010077107697725,-0.045784056186676]],[[0.085269667208195,-0.0059608658775687,0.039933603256941],[0.040598403662443,-0.0063834171742201,0.038313586264849],[0.068789690732956,0.12546299397945,0.025938944891095]],[[-0.03330610319972,-0.0024436910171062,0.041312966495752],[-0.06779783219099,-0.012255080975592,-0.034497834742069],[0.048463709652424,0.053186353296041,-0.034424025565386]],[[-0.028656186535954,-0.01587918587029,-0.051916502416134],[0.027737410739064,-0.02698053047061,0.030719228088856],[-0.040490441024303,-0.0014334815787151,-0.0094637535512447]],[[-0.011051347479224,0.012190835550427,0.045157622545958],[0.025594707578421,-0.023476392030716,0.051660191267729],[0.031878679990768,0.02987209148705,0.02281316369772]],[[0.032679833471775,0.026304069906473,-0.006076630204916],[-0.045720174908638,0.019452556967735,0.015034793876112],[-0.009085001423955,0.0064401444979012,-0.061662822961807]],[[-0.024300402030349,-0.018378637731075,-0.027615310624242],[0.017454942688346,-0.043329514563084,0.015169535763562],[-0.085933081805706,-0.018876302987337,0.035653047263622]],[[-0.030170561745763,-0.020901415497065,-0.0011504312278703],[-0.062913365662098,-0.014737133868039,0.0027113789692521],[-0.025646144524217,-0.028995899483562,0.075248070061207]],[[-0.035132367163897,0.021978050470352,-0.037907164543867],[0.053200162947178,-0.063894465565681,-0.0044467565603554],[-0.04917861148715,0.057425860315561,0.070752993226051]],[[-0.00097759545315057,0.032267387956381,0.0040569836273789],[0.0015583490021527,-0.0014838296920061,0.00058025179896504],[0.083578288555145,-0.012739116325974,-0.030416974797845]],[[0.01590920239687,0.025607910007238,0.014835861511528],[-0.05412682518363,0.037558637559414,0.034753128886223],[-0.0090878084301949,-0.018352588638663,-0.026204161345959]],[[0.044252444058657,0.0050862836651504,0.04894945025444],[3.9987637137529e-05,0.00092209520516917,-0.037703011184931],[0.05985439196229,-0.044736374169588,-0.041916225105524]],[[-0.031494580209255,0.033223483711481,-0.0038725966587663],[-0.050282042473555,0.045189216732979,-0.0074385572224855],[0.054784201085567,-0.031550370156765,0.040243048220873]],[[-0.030111497268081,0.035209115594625,0.024390323087573],[0.086031623184681,-0.032405525445938,0.083710834383965],[-0.0035769895184785,-0.0066452324390411,0.07142485678196]],[[-0.013296568766236,0.015735231339931,-0.022421587258577],[-0.053139936178923,0.086087711155415,0.034813448786736],[-0.006133243907243,-0.025012040510774,-0.0072967414744198]],[[-0.0092712081968784,0.049681808799505,0.010648064315319],[-0.03561395034194,-0.0078017814084888,-0.018856717273593],[0.058752398937941,0.037775337696075,0.071535244584084]],[[-0.040439296513796,-0.033782497048378,-0.036388751119375],[-0.062164064496756,-0.038082771003246,-0.021589824929833],[-0.037366472184658,-0.04271774739027,-0.024392718449235]],[[-0.040720447897911,-0.0053690946660936,-0.096289798617363],[0.033100068569183,-0.062740780413151,0.0099244769662619],[-0.012530928477645,-0.00089158531045541,0.059973314404488]],[[-0.065869942307472,-0.0095775136724114,0.03439550101757],[0.061209738254547,-0.038810785859823,0.010076066479087],[0.013749602250755,0.10675232857466,0.0021604634821415]],[[0.010653629899025,0.054770916700363,0.063276633620262],[0.018028581514955,0.055718835443258,0.022057147696614],[0.039364077150822,-0.0078387865796685,0.077154457569122]],[[0.025931736454368,-0.035376619547606,-0.00022440814063884],[0.004375564865768,-0.024542234838009,-0.0092422813177109],[-0.03819789737463,-0.077302657067776,0.054719552397728]],[[0.047492228448391,0.020952818915248,0.019894519820809],[-0.0098590888082981,-0.10648359358311,0.058936506509781],[-0.019188934937119,0.03715093806386,-0.027449678629637]],[[0.027512678876519,-0.013822434470057,0.028786674141884],[-0.0069242850877345,0.029788844287395,-0.014762351289392],[0.00731733860448,-0.032843846827745,0.020641971379519]],[[0.0039859372191131,0.038608435541391,0.066553048789501],[0.060077417641878,-0.076464720070362,0.02977498061955],[-0.021868696436286,0.045778959989548,-0.0075766062363982]],[[0.0071027409285307,0.09488981962204,-0.010649565607309],[0.058425910770893,-0.03435106575489,-0.030188845470548],[0.04520296305418,-0.045821692794561,-0.011337471194565]],[[0.031329900026321,0.02703276835382,0.019859921187162],[0.012112484313548,0.041311834007502,-0.022158000618219],[0.040846236050129,0.040751699358225,-0.021869389340281]],[[-0.034481652081013,-0.071839153766632,-0.051841206848621],[0.085452772676945,-0.0052373446524143,0.11998012661934],[0.032132774591446,-0.0050561926327646,-0.033758252859116]],[[-0.050209183245897,0.013050930574536,0.078730426728725],[-0.015315363183618,0.027742030099034,0.054157871752977],[-0.020559124648571,0.066764548420906,0.048121392726898]],[[0.050868585705757,0.015103700570762,0.1258901655674],[0.071831524372101,0.0013271268690005,-0.012573930434883],[0.050707001239061,-0.00040424260077998,0.062035989016294]],[[-0.013782490044832,-0.017278611660004,0.051954571157694],[-0.0075947246514261,-0.062350582331419,0.035767134279013],[0.0022482925560325,-0.048183705657721,0.028965352103114]],[[-0.038741677999496,-0.033750474452972,0.0079776113852859],[0.012873062863946,0.02629267424345,-0.047315951436758],[0.0094046099111438,-0.014143953099847,0.061324153095484]],[[0.0091379508376122,-0.04168101772666,-0.010149535723031],[-0.020010134205222,0.019687876105309,0.014442658051848],[0.0057591199874878,0.019336737692356,0.055376768112183]],[[-0.040086973458529,0.077890262007713,0.027849093079567],[0.0096073877066374,-0.001000058487989,0.022701196372509],[-0.036358810961246,0.0069668581709266,-0.046007201075554]],[[0.0097220409661531,0.0043700765818357,-0.033205695450306],[-0.0046429033391178,-0.029728231951594,-0.0080522214993834],[0.0191570520401,0.02528409846127,-0.019853206351399]],[[0.0066883475519717,0.049961924552917,-0.0046608746051788],[-0.0028884627390653,-0.008426015265286,-0.021140847355127],[0.062904991209507,0.075347766280174,0.017776262015104]],[[0.042718004435301,-0.0085013546049595,0.0084947887808084],[0.019695239141583,0.024647260084748,-0.033070020377636],[-0.025495572015643,0.012097530066967,-0.0015230400022119]],[[0.036959894001484,0.0020352581050247,-0.0073527917265892],[0.023038914427161,0.0005181948072277,0.061647955328226],[0.015817701816559,-0.061684720218182,0.069351695477962]],[[0.036049094051123,0.045056615024805,0.0048578456044197],[-0.051122594624758,0.021748658269644,0.0058388882316649],[0.025134991854429,-0.0093168159946799,0.023533036932349]],[[0.054837424308062,0.025653142482042,-0.062681198120117],[0.00074623740511015,0.087331011891365,-0.0065199588425457],[0.029111888259649,0.025430403649807,0.013352160342038]],[[0.041753295809031,0.0090851113200188,0.07140451669693],[-0.018149638548493,-0.017251869663596,-0.074057690799236],[-0.031339090317488,0.0067436131648719,0.073956191539764]],[[0.01273378636688,0.03570606186986,0.027285357937217],[-0.033757247030735,-0.0075143575668335,-0.059618096798658],[-0.02560617774725,-0.029910488054156,0.080677941441536]],[[-0.012276678346097,-0.0094297947362065,-0.01586552336812],[-0.056357461959124,-0.052394598722458,-0.046590089797974],[0.053590770810843,-0.0094236861914396,0.0056488001719117]],[[0.02763737551868,-0.02385863289237,-0.0045956228859723],[0.02279644459486,0.052255738526583,0.033642828464508],[0.0024885931052268,0.060873944312334,-0.040219131857157]],[[0.069684036076069,0.07890010625124,-0.084816560149193],[0.021387964487076,-0.057421460747719,-0.045169226825237],[-0.041994724422693,-0.054071594029665,0.0038852246943861]],[[0.014589057303965,0.01072486769408,-0.074101492762566],[-0.0050477203913033,0.0057152938097715,-0.032884921878576],[-0.041304491460323,0.023311588913202,0.0072981715202332]],[[-0.012057074345648,-0.020931292325258,0.0068264650180936],[0.013186925090849,0.030743898823857,-0.059378422796726],[-0.0032530301250517,-0.06070313975215,-0.014456215314567]],[[-0.025297276675701,0.10912853479385,-0.004613749217242],[0.022774923592806,0.033337257802486,-0.010488694533706],[0.0038464930839837,-0.049586158245802,-0.036859534680843]],[[-0.0036434538196772,0.052168037742376,0.009157850407064],[0.0089218830689788,0.033563461154699,0.049416538327932],[0.014179334975779,-0.017626075074077,0.036461852490902]],[[0.040009319782257,0.012371385470033,-0.0053980178199708],[-0.018768170848489,-0.0064067281782627,0.050214450806379],[0.0039080446586013,-0.026947036385536,0.019383750855923]],[[-0.020397368818521,0.00088399718515575,-0.028389284387231],[0.054372027516365,0.033898934721947,0.03421600908041],[0.038951747119427,0.00067956297425553,0.061228644102812]],[[-0.004118945915252,0.063987880945206,0.0015084118349478],[-0.043498132377863,-0.06879611313343,0.0054177702404559],[-0.016416804865003,-0.014164381660521,0.0293896086514]],[[0.023741303011775,0.0013925385428593,-0.055645100772381],[-0.012698855251074,0.099985726177692,0.037036634981632],[0.034029439091682,-0.067938268184662,0.069129653275013]],[[0.067345418035984,-0.024628778919578,0.017226343974471],[0.0054332255385816,-0.019948676228523,0.045669876039028],[0.032342195510864,0.020029082894325,0.099537938833237]],[[0.042004685848951,0.025176165625453,0.038474932312965],[0.021673219278455,0.020903317257762,0.030724281445146],[-0.08897715061903,0.023185176774859,0.064942494034767]],[[-0.065825283527374,-0.0057576606050134,0.018502114340663],[0.01063288282603,-0.037643536925316,-0.0016252740751952],[0.046107463538647,-0.0016041218768805,0.067375980317593]],[[-0.032207891345024,-0.011233177036047,-0.0051206760108471],[0.034097675234079,-0.13701257109642,-0.01258903183043],[0.063465587794781,0.034925296902657,0.024991292506456]],[[0.039135862141848,0.016411766409874,-0.017179047688842],[-0.06932444870472,0.019796598702669,0.014996459707618],[-0.0025262518320233,-0.0078107472509146,-0.030144680291414]],[[0.018208384513855,0.10090487450361,0.049595098942518],[0.018055971711874,0.051740515977144,-0.018145680427551],[0.0036703390069306,0.0057561555877328,0.01329414639622]],[[0.049586579203606,-0.023246590048075,0.060724634677172],[0.018793633207679,-0.0057183895260096,0.041463866829872],[0.052820365875959,0.0064492472447455,-0.032389525324106]],[[-0.047708753496408,0.042131964117289,-0.03703835606575],[-0.055938526988029,0.0085183912888169,-0.034147832542658],[-0.0051798517815769,-0.032497987151146,0.041892942041159]],[[0.017266260460019,-0.021017383784056,0.091816529631615],[0.00012699112994596,0.0035878894850612,0.027757061645389],[-0.021806849166751,0.050186689943075,0.0034295078366995]],[[-0.021152069792151,-0.018933232873678,-0.018846752122045],[0.012242322787642,0.038489229977131,0.051737554371357],[-0.05623972043395,-0.023145562037826,-0.0099882893264294]],[[-0.035564325749874,-0.0058987443335354,0.01695447973907],[-0.034189254045486,0.066938228905201,-0.02623437717557],[-0.042741950601339,0.0099021065980196,0.017798082903028]],[[0.05012783780694,0.093214720487595,-0.017714697867632],[0.057336237281561,-0.047232463955879,-0.038274470716715],[0.06774664670229,-0.033085126429796,-0.0200603492558]],[[-0.032218761742115,-0.00057475105859339,-0.020353069528937],[0.047082215547562,-0.018536668270826,0.039463110268116],[-0.0012041929876432,0.061693705618382,0.0079509941861033]],[[-0.010264611802995,0.055942546576262,0.067134886980057],[-0.038605120033026,0.077063381671906,-0.071105562150478],[-0.013789129443467,-0.0068491259589791,0.00016294064698741]],[[-0.013852649368346,-0.040476869791746,0.0091317547485232],[-0.033334285020828,-0.024632230401039,0.021190691739321],[0.075617752969265,0.031342357397079,0.040700122714043]],[[0.028357518836856,0.064433336257935,0.017189621925354],[0.014822515659034,-0.0020112211350352,-0.013862214051187],[0.06187841668725,0.044159281998873,0.023876082152128]],[[0.0037770895287395,-0.02131861820817,0.0053560580126941],[0.010059997439384,0.00052093045087531,-0.022581353783607],[-0.040196981281042,0.01329608168453,0.096860103309155]],[[-0.01835160702467,0.013934662565589,-0.058295279741287],[0.013197002932429,-0.063390210270882,0.028996115550399],[-0.0094319973140955,0.036017660051584,0.0087918667122722]],[[-0.034807607531548,0.072838805615902,-0.038789186626673],[-0.04513019323349,-0.037454601377249,0.0066147153265774],[0.039288397878408,-0.051710933446884,0.0060659605078399]],[[-0.036272823810577,0.025471000000834,0.031605735421181],[0.044751927256584,0.026656448841095,0.053818985819817],[0.025382470339537,-0.01672987639904,-0.0094399712979794]],[[0.018979446962476,0.013681898824871,-0.021350769326091],[0.003640609793365,-0.060808129608631,0.018623661249876],[0.019905840978026,-0.0034662378020585,0.024456508457661]],[[0.031318955123425,-0.007806234061718,0.04935596883297],[0.039569579064846,0.02189003303647,0.0041775912977755],[-0.031003957614303,0.011527821421623,-0.021319473162293]],[[-0.0016107516130432,-0.092881485819817,-0.02189009450376],[-0.025312080979347,-0.00093255954561755,-0.039363157004118],[-0.017750583589077,0.0031989584676921,-0.0085671534761786]],[[-0.053779289126396,-0.028569884598255,-0.053253009915352],[0.059226956218481,0.033113207668066,0.028472702950239],[-0.0027513483073562,-0.0046465755440295,-0.028218895196915]],[[-0.050867032259703,0.022561633959413,-0.031994182616472],[0.062465388327837,-0.0068994825705886,-0.0061220149509609],[-0.0022263007704169,0.042021263390779,0.007842043414712]],[[0.011926559731364,-0.01865235902369,-0.00040853413520381],[-0.004831759724766,0.04866998270154,-0.0010488971602172],[0.022054916247725,0.020302897319198,-0.031136456876993]],[[0.005912683904171,0.041450086981058,0.0016357242129743],[-0.004636412486434,-0.039927206933498,-0.018535638228059],[0.036619774997234,0.05704066157341,-0.0071004615165293]],[[-0.033658064901829,-0.062515266239643,-0.071873240172863],[-0.095992915332317,-0.021978570148349,-0.077009916305542],[0.041161578148603,0.0025249707978219,-0.021212913095951]],[[0.00059516413602978,-0.035422746092081,-0.0068244454450905],[-0.0013450122205541,-0.052688982337713,-0.042825721204281],[-0.012305980548263,0.032044790685177,-0.0083827171474695]],[[0.0057325926609337,0.027972957119346,0.019372781738639],[0.021375976502895,-0.014421876519918,0.063681393861771],[0.05860424041748,-0.015853054821491,0.057499211281538]],[[-0.018739707767963,-0.019304683431983,-0.018142368644476],[0.056171093136072,0.086209639906883,-0.017137037590146],[-0.0085312984883785,0.045678112655878,0.017429079860449]],[[0.017368715256453,0.011096334084868,0.042007498443127],[0.041401717811823,0.057777881622314,-0.0020943740382791],[0.012863265350461,0.015032831579447,-0.011113029904664]],[[-0.063719168305397,0.013138702139258,0.026900365948677],[-0.052507936954498,0.001326899509877,0.00081830675480887],[0.01621562615037,-0.049011778086424,0.036675877869129]],[[-0.041168041527271,0.051949456334114,0.025319604203105],[-0.013183444738388,0.064010575413704,0.01506716106087],[-0.040579050779343,-0.0074606677517295,-0.0012184178922325]],[[0.041724026203156,0.081474103033543,0.057063572108746],[0.053346339613199,0.024958522990346,-0.0046552293933928],[0.027738047763705,0.036993600428104,-0.058829680085182]],[[0.010974918492138,0.026753153651953,0.053221207112074],[0.027219701558352,-0.10531838238239,-0.018859030678868],[-0.020520845428109,0.033103283494711,0.048670306801796]],[[0.035211343318224,-0.017742656171322,0.034004479646683],[-0.0006635460886173,0.034308966249228,-0.028717186301947],[0.015817103907466,-0.016757816076279,0.03296946361661]],[[0.011382430791855,-0.032132685184479,-0.030467335134745],[0.019805051386356,0.02710647508502,-0.050788760185242],[0.018989853560925,0.028833020478487,0.029040077701211]],[[0.030412765219808,0.0042585534974933,-0.071955896914005],[-0.0073369340971112,-0.022487850859761,0.022109653800726],[-0.034670818597078,0.046221423894167,0.025160742923617]],[[-0.013245885260403,0.026832090690732,0.079500071704388],[-0.037253752350807,0.00075351865962148,-0.019633257761598],[-0.012440768070519,-0.020885506644845,-0.027707166969776]],[[-0.057827491313219,-0.059029329568148,0.01172648370266],[-0.033681459724903,0.099591322243214,0.012684895657003],[-0.074109971523285,0.025909557938576,-0.041450187563896]],[[-0.047444112598896,-0.053811471909285,0.058236364275217],[0.035384386777878,0.017704447731376,0.036952428519726],[-0.028358979150653,-0.071974419057369,-0.001537267351523]],[[-0.037179157137871,-0.0053682429715991,-0.049372132867575],[-0.010665613226593,0.041096597909927,-0.043627928942442],[0.013639194890857,0.028129622340202,-0.019314620643854]],[[0.00084345013601705,0.005350733641535,0.053679510951042],[-0.0256079249084,-0.004879314918071,-0.0052781933918595],[0.014845127239823,0.037017349153757,0.0087107568979263]],[[0.0079100849106908,0.025496423244476,0.023113546893001],[-0.012570675462484,-0.00069395219907165,0.051540568470955],[-0.0063111293129623,0.088399223983288,-0.011872903443873]],[[0.0085918279364705,0.039903786033392,0.0027959025464952],[-0.040176462382078,0.041287783533335,0.0014225254999474],[-0.021700652316213,0.023784341290593,0.071658909320831]],[[0.049062933772802,0.0033882390707731,-0.049199752509594],[-0.025502298027277,0.019109334796667,-0.031995251774788],[-0.052408944815397,-0.034837562590837,0.031631004065275]],[[0.025131614878774,0.0056485934183002,0.020721588283777],[0.021606016904116,-0.016622127965093,-0.037301998585463],[-0.068150967359543,0.0063487170264125,-0.011229619383812]],[[0.0043238927610219,-0.0079184742644429,-0.03904726728797],[0.024291893467307,-0.0016641832189634,-0.032786980271339],[-0.024174157530069,0.026650471612811,-0.056250482797623]],[[0.027878871187568,0.026446223258972,0.0030389805324376],[-0.0090763038024306,0.060543607920408,0.019482847303152],[-0.019058736041188,0.028061389923096,-0.017369845882058]],[[0.0015192670980468,0.053259335458279,0.028431268408895],[0.0092298798263073,-0.0019255942897871,-0.046120293438435],[0.035497836768627,0.0084681715816259,0.088903822004795]],[[0.036232452839613,-0.021137220785022,-0.050997532904148],[0.0038495361804962,-0.01424599904567,-0.0013231060001999],[0.011958464980125,0.019594760611653,-0.019751572981477]],[[0.019492166116834,0.00013760340516455,-0.0059132627211511],[0.0021289747674018,-0.0017597666010261,-0.054857600480318],[-0.0070179370231926,0.057936549186707,0.030842855572701]],[[0.012565353885293,0.0079034538939595,-0.031053053215146],[-0.034569647163153,-0.051806099712849,0.0045127379707992],[0.00031575973844156,-0.0073171518743038,-0.076096162199974]],[[0.033473994582891,0.021629940718412,0.047809116542339],[0.020464720204473,-0.023301724344492,0.0072125964798033],[0.045614872127771,0.022667391225696,-0.079024665057659]],[[-0.029994117096066,0.0021656460594386,-0.071078419685364],[-0.03128170594573,0.022519636899233,-0.062740698456764],[0.0023532740306109,0.00053369416855276,0.034080591052771]]],[[[0.048157501965761,0.013241618871689,-0.039161808788776],[0.073683694005013,0.094327375292778,0.051208171993494],[0.055373165756464,0.05417562276125,-0.0036316085606813]],[[0.034984566271305,-0.034728188067675,-0.026120025664568],[0.036551501601934,0.0066726561635733,0.038207750767469],[0.035397924482822,0.050757274031639,-0.047470439225435]],[[-0.039782039821148,0.081402882933617,0.050263822078705],[-0.0001958936045412,-0.053895052522421,0.022966980934143],[0.02232464030385,0.062222477048635,-0.026636229828]],[[-0.009791161864996,0.029171377420425,-0.039173595607281],[0.0029248776845634,0.013830120675266,0.024304900318384],[0.0084892399609089,-0.012928359210491,0.096042297780514]],[[-0.0018780532991514,-0.01389567553997,-0.022993257269263],[-0.013512163423002,0.043025113642216,0.15343667566776],[0.02442973293364,0.064425393939018,-0.050299540162086]],[[0.096357151865959,0.039335258305073,-0.028080206364393],[0.024956613779068,-0.026946997269988,0.030866183340549],[0.010854732245207,0.058271799236536,0.0055139400064945]],[[0.04339886829257,-0.01953493617475,0.0051689855754375],[-0.0081793470308185,0.01064458116889,0.08062806725502],[-0.07855961471796,0.033940672874451,0.06100856885314]],[[0.026092952117324,0.030287256464362,-0.044912032783031],[-0.055737361311913,0.027497500181198,0.020858263596892],[-0.040943689644337,0.060056120157242,0.018537405878305]],[[0.014383340254426,-0.055771581828594,0.043875526636839],[0.036329951137304,0.055089354515076,-0.013919191434979],[0.034237802028656,0.026203226298094,0.080224402248859]],[[0.092301189899445,-0.00450847344473,0.035730350762606],[0.068926021456718,0.062006514519453,-0.031508978456259],[-0.032613798975945,-0.0039309305138886,-0.11133700609207]],[[0.035197000950575,-0.058576665818691,0.033822003751993],[0.028932377696037,0.011891902424395,0.0033740513026714],[0.062726609408855,0.028173934668303,0.038615137338638]],[[0.087017267942429,0.0020300857722759,0.067706562578678],[0.038422144949436,-0.011734585277736,0.14515028893948],[0.047684472054243,0.045968115329742,-0.0036001317203045]],[[0.062850147485733,-0.056447766721249,0.017861312255263],[-0.041570506989956,0.0065360032021999,0.014670321717858],[-0.025369185954332,0.021026097238064,-0.022900573909283]],[[-0.029201045632362,-0.0094484593719244,0.041864942759275],[0.16795261204243,-0.0096676116809249,0.041298992931843],[0.075619712471962,0.030794765800238,-0.030053606256843]],[[0.049618922173977,0.13987427949905,0.069793224334717],[0.034394927322865,0.092739291489124,0.13440480828285],[0.08193614333868,-0.039263837039471,0.0038496535271406]],[[-0.0085328267887235,-0.0092664733529091,-0.049891579896212],[0.002727473154664,0.017811950296164,-0.072441034018993],[0.043440796434879,-0.082646578550339,0.0030186991207302]],[[-0.025640999898314,-0.0071062175557017,-0.026998637244105],[0.1042520776391,-0.046612072736025,0.033204361796379],[0.087275795638561,0.0029690223746002,0.025001030415297]],[[-0.0062129213474691,-0.029392812401056,0.074216909706593],[-0.044993706047535,0.0045827659778297,-0.084377758204937],[0.047703057527542,-0.006007922347635,0.023792028427124]],[[0.066116645932198,-0.048579823225737,0.086118094623089],[0.042763274163008,0.094176135957241,0.035396214574575],[-0.031996853649616,0.079284764826298,-0.02511477842927]],[[-0.00094286701641977,0.058261401951313,-0.029928466305137],[-0.038616705685854,0.034379076212645,-0.0060540423728526],[0.072398208081722,0.052922483533621,0.037443101406097]],[[0.037982039153576,0.019524548202753,0.06073285639286],[-0.029335329309106,0.013489210046828,0.0074060498736799],[-0.063260324299335,-0.018646769225597,0.04785655811429]],[[0.0091718714684248,-0.017388204112649,0.044808659702539],[-0.020803723484278,0.033178761601448,0.042225670069456],[0.0097508076578379,0.020377764478326,-0.020332965999842]],[[0.08744877576828,0.029297152534127,0.052661016583443],[0.0089696906507015,-0.033462218940258,-0.0089308610185981],[-0.011072950437665,0.078616127371788,0.093158230185509]],[[0.083966933190823,0.030769152566791,-0.0052589904516935],[0.040262918919325,-0.091334842145443,0.0032685624901205],[0.059355866163969,-0.042000766843557,-0.0021288401912898]],[[0.0086218025535345,-0.043380927294493,0.11190740019083],[-0.03609612211585,-0.053199633955956,0.032821342349052],[0.10823688656092,-0.12566283345222,0.037297528237104]],[[-0.041158959269524,0.036155838519335,0.013626371510327],[0.0079435603693128,-0.034233964979649,-0.021369488909841],[0.022617697715759,-0.012520182877779,0.022397499531507]],[[0.019092766568065,-0.022768296301365,-0.050234083086252],[0.095267295837402,-0.01565096154809,0.0052400678396225],[-0.086388923227787,-0.031102919951081,-0.022484822198749]],[[-0.059935364872217,-0.009386295452714,0.0046374932862818],[-0.037594810128212,0.045843780040741,-0.017366837710142],[0.023652374744415,-0.038062363862991,0.047149147838354]],[[0.032016605138779,-0.011682477779686,0.0059069436974823],[0.089411593973637,-0.053386148065329,0.044644024223089],[0.016183882951736,0.003396978136152,0.025612249970436]],[[-0.098937682807446,0.076382771134377,-0.0040793777443469],[0.0427276045084,-0.073030650615692,0.0034801329020411],[0.083886176347733,0.045273281633854,0.0064125899225473]],[[0.040044777095318,0.030850056558847,-0.047388073056936],[0.013454403728247,-0.041732229292393,0.041425257921219],[-0.0049760029651225,0.052189163863659,0.025885241106153]],[[-0.046945471316576,0.03430412709713,0.0095125865191221],[-0.0085008405148983,0.040951441973448,0.033022500574589],[0.022830402478576,-0.097978286445141,-0.065957449376583]],[[0.01400685403496,-0.045254811644554,-0.060548078268766],[0.020595286041498,0.050140965729952,0.052964925765991],[0.029440812766552,0.060216039419174,0.057655349373817]],[[-0.014666523784399,-0.02721287496388,0.086759708821774],[0.00010288846533513,-0.059764251112938,0.027215432375669],[0.0014306934317574,0.010902214795351,-0.018439600244164]],[[0.0079401088878512,0.042561668902636,-0.025851847603917],[0.0081018470227718,0.038398794829845,0.045738495886326],[-0.027600871399045,-0.0068194083869457,-0.02280306071043]],[[0.034199189394712,-0.032766524702311,0.068231366574764],[0.031378865242004,-0.010147002525628,0.033108096569777],[-0.0073745572008193,0.0025381306186318,-0.0048965029418468]],[[-0.016722779721022,-0.0096474615857005,0.0089427381753922],[0.052870787680149,0.001116689061746,-0.037652380764484],[-0.027615817263722,-0.013281815685332,0.048849020153284]],[[0.041142258793116,-0.0011067022569478,0.0057990592904389],[-0.0086051840335131,0.033411916345358,0.072700992226601],[0.034098125994205,0.045058593153954,0.036923781037331]],[[0.051254205405712,0.012804311700165,0.00085016060620546],[-0.015284283086658,0.035799328237772,-0.025109943002462],[0.042702309787273,-0.043341759592295,0.034904833883047]],[[0.029485451057553,-0.0051186955533922,-0.0094684641808271],[0.046345312148333,0.039572793990374,-0.014499751850963],[0.026739992201328,0.011510440148413,0.0080572599545121]],[[0.047879301011562,-0.031070645898581,-0.029884422197938],[0.00038736866554245,0.043156247586012,0.048361860215664],[-0.056303177028894,-0.028448591008782,-0.028142957016826]],[[0.0022952470462769,0.025771396234632,0.052808120846748],[0.0039803748950362,0.00061002536676824,0.048729091882706],[0.016586817800999,0.075702734291553,-0.016428573057055]],[[0.028449084609747,0.017546089366078,0.0533014126122],[0.092717230319977,-0.025960391387343,0.0043426980264485],[0.012993721291423,0.059809047728777,-0.018659494817257]],[[-0.043948128819466,0.11673999577761,0.056141998618841],[-0.02060704678297,-0.0085413297638297,0.038593057543039],[0.031431771814823,-0.009857676923275,0.010602838359773]],[[0.039943523705006,-0.035612672567368,0.0071535753086209],[-0.020540911704302,-0.048298556357622,0.041416328400373],[0.025326335802674,0.043352637439966,0.005261043086648]],[[0.021411975845695,0.12018050253391,-0.029498869553208],[0.090956881642342,0.049271699041128,-0.032865472137928],[0.10812968015671,-0.052258793264627,0.056674782186747]],[[-0.0090055409818888,0.0058420398272574,0.027000393718481],[0.065901972353458,0.013623856008053,0.012644427828491],[0.047992363572121,-0.003675437765196,-0.0055247968994081]],[[0.027005104348063,-0.018160350620747,-0.01219786144793],[0.13562925159931,-0.032689098268747,0.15774205327034],[-0.010743524879217,0.062118586152792,-0.041641272604465]],[[0.004408361390233,0.066134408116341,-0.031819589436054],[0.047456759959459,-0.041410222649574,0.050921130925417],[-0.014599452726543,-0.017755903303623,0.052292946726084]],[[0.0093125132843852,-0.0073458962142467,-0.037857994437218],[0.0037390883080661,0.0028488754760474,-0.026886330917478],[-0.066076852381229,0.037577539682388,-0.027721980586648]],[[0.02462169714272,-0.058072175830603,-0.11318930238485],[-0.0063649136573076,-0.014428962022066,-0.030829295516014],[0.013376395218074,-0.025323435664177,-0.012901473790407]],[[0.058878142386675,0.0093733109533787,0.01251866389066],[0.025398373603821,0.028771940618753,0.0075313108973205],[0.051449149847031,0.049984030425549,-0.020524444058537]],[[-0.005562954582274,0.0078703751787543,-0.04555930942297],[0.055489752441645,-0.0056351567618549,0.057876836508512],[0.059277556836605,0.043266288936138,-0.048951350152493]],[[-0.00048308627447113,0.018959164619446,-0.035070441663265],[0.088555566966534,0.026317790150642,0.010382493026555],[0.039098642766476,0.035220172256231,-0.039384629577398]],[[0.022518750280142,-0.01010824367404,-0.018776468932629],[-0.03006910905242,0.076151341199875,-0.036065801978111],[0.0077234990894794,0.0039795963093638,-0.0029247833881527]],[[0.009646219201386,0.046133100986481,0.011053363792598],[-0.032509792596102,0.056580722332001,-0.018638154491782],[-0.091152518987656,0.04864251986146,-0.061718493700027]],[[0.081677846610546,-0.00027525069890544,0.0086795557290316],[-0.038861434906721,0.028140055015683,0.010795430280268],[-0.026007173582911,-0.033641207963228,0.049422632902861]],[[-0.011445007286966,0.031935602426529,0.044268254190683],[-0.018875606358051,-0.0022682156413794,0.04730112478137],[0.04005254432559,0.012852722778916,0.028224505484104]],[[0.032572101801634,0.015289712697268,0.013426621444523],[-0.0093450890854001,0.010616415180266,0.052665814757347],[-0.028155380859971,0.0011547459289432,0.11298768222332]],[[0.031223326921463,0.018518915399909,0.017882896587253],[-0.034989822655916,0.05573108792305,0.05147935077548],[0.010287689045072,0.020281149074435,-0.065281055867672]],[[-0.02786330319941,-0.10620103031397,-0.017586976289749],[-0.065433979034424,-0.0085900127887726,0.021824324503541],[0.077119052410126,0.0010975210461766,-0.032788958400488]],[[-0.044667959213257,0.012830870226026,0.022234486415982],[-0.007428471930325,-0.0032749995589256,-0.069698147475719],[-0.012010906822979,0.027091486379504,0.012770012021065]],[[0.018943602219224,0.0245764516294,0.0010486348764971],[0.076429851353168,0.041323337703943,-0.014319838955998],[0.010712035000324,0.0071095004677773,-0.055399488657713]],[[0.0064745103009045,0.022463534027338,0.0084660649299622],[0.045142564922571,0.053661677986383,0.0074761686846614],[0.12231935560703,-0.024072388187051,-0.045137140899897]],[[0.025511641055346,-0.014822779223323,0.074837692081928],[0.011524508707225,0.05467276647687,0.056658364832401],[0.021432092413306,-0.057740263640881,0.053290158510208]],[[0.021083738654852,0.071766957640648,0.050965912640095],[0.0045763305388391,0.028071483597159,-0.046703781932592],[-0.032522905617952,-0.014864455908537,-0.019493505358696]],[[-0.058964986354113,-0.036014564335346,0.048417378216982],[-0.0090161357074976,0.0464085675776,0.051901195198298],[-0.052692662924528,0.061179902404547,0.073277465999126]],[[0.080110140144825,-0.014274746179581,-0.0089275743812323],[0.033256910741329,0.014010967686772,0.057286117225885],[0.061520799994469,0.045795671641827,-0.015781255438924]],[[0.052474826574326,-0.022587243467569,-0.0087983310222626],[-0.056078653782606,-0.040018554776907,-0.01156715862453],[0.035964034497738,-0.045910354703665,0.030625406652689]],[[0.004249470308423,0.015691433101892,0.034443281590939],[-0.021101282909513,0.015268919058144,0.050869461148977],[-0.0034438730217516,0.043663404881954,0.038120713084936]],[[-0.025236565619707,-0.028445046395063,0.0038534319028258],[0.014461959712207,-0.015609471127391,0.02262575738132],[0.071832656860352,-0.020303105935454,-0.0066836243495345]],[[0.0086566526442766,-0.039763547480106,0.039454251527786],[0.068090081214905,0.077623479068279,0.015411478467286],[-0.020841771736741,-0.037537466734648,0.050565116107464]],[[-0.017868895083666,0.033146515488625,0.043450586497784],[-0.017122521996498,0.087591625750065,-0.054979048669338],[0.086231432855129,0.013294911012053,-0.018185617402196]],[[0.038945384323597,-0.041190262883902,0.029286660254002],[-0.012726915068924,0.0073775346390903,0.025857381522655],[-0.055636525154114,0.048391755670309,-0.00096803135238588]],[[0.019402263686061,0.037535861134529,-0.013629299588501],[-0.028892487287521,-0.053107488900423,0.060966167598963],[0.0092997243627906,0.048197757452726,-0.046381752938032]],[[-0.099496617913246,-0.052276156842709,-0.010984478518367],[-0.011908026412129,-0.011738295666873,0.017303815111518],[-0.035153668373823,0.0010831776307896,0.016594627872109]],[[0.03930926695466,-0.0079532228410244,0.0077881007455289],[-0.059856235980988,0.048772528767586,-0.029318125918508],[-0.029818911105394,0.099253632128239,0.051547683775425]],[[-0.021021861582994,0.03232054412365,-0.067195571959019],[0.050014860928059,-0.094825714826584,-0.009346891194582],[0.0052522760815918,0.0023041772656143,0.047393638640642]],[[-0.0012991168769076,-0.018637595698237,0.063850797712803],[0.0064106658101082,-0.033842969685793,0.031439032405615],[-0.00010742554877652,-0.075522616505623,0.04572881013155]],[[-0.036878392100334,-0.096829295158386,-0.014018785208464],[0.026050761342049,-0.034521885216236,-0.03755509853363],[-0.013879453763366,-0.00817253254354,-0.015262151136994]],[[-0.045306269079447,-0.015480655245483,0.001512084971182],[0.0043936343863606,-0.031968060880899,0.02906820550561],[-0.00043558175093494,0.063626021146774,-0.013393944129348]],[[0.092611260712147,0.013112850487232,-0.095702238380909],[-0.0015582444611937,0.032864730805159,0.0083585334941745],[-0.079457938671112,0.001431095181033,-0.0044349832460284]],[[-0.021081233397126,0.10869704931974,-0.00019997534400318],[-0.029918327927589,0.04148904979229,0.021961273625493],[0.067422024905682,-0.018996626138687,0.034634683281183]],[[0.1286063939333,0.00050488353008404,0.0024175974540412],[-0.0018542414763942,0.022476555779576,-0.05001188442111],[-0.068382553756237,0.098924227058887,0.042220994830132]],[[-0.019847832620144,0.0093235140666366,0.039739914238453],[-0.035786557942629,-0.015216616913676,-0.03435917571187],[0.031361360102892,0.05638438090682,0.029634522274137]],[[0.021244352683425,-0.0063498257659376,-0.057794541120529],[0.0060149976052344,0.075990818440914,-0.083471417427063],[0.039124462753534,-0.014594736509025,-0.011912686750293]],[[0.02729700319469,0.04102049767971,-0.027576424181461],[0.020673908293247,0.0016948590055108,-0.017523359507322],[0.087038703262806,-0.0068880263715982,0.039159398525953]],[[-0.010747543536127,0.051260564476252,0.067857995629311],[0.088694788515568,0.044446732848883,0.056896656751633],[0.046979937702417,-0.0026420361828059,0.0058513726107776]],[[0.081594526767731,-0.03043107688427,-0.0082426881417632],[0.06245468556881,-0.028547715395689,-0.039663508534431],[0.037827417254448,0.044485948979855,-0.088133983314037]],[[-0.028600919991732,-0.0147710070014,0.038881160318851],[0.049372676759958,0.039696764200926,-0.024706672877073],[0.073201783001423,0.086366534233093,0.052945926785469]],[[0.020855585113168,0.058778118342161,-0.03664918243885],[0.002397753065452,0.010123328305781,0.10782690346241],[0.028861051425338,-0.0058770324103534,-0.0062587661668658]],[[0.062862709164619,0.049275506287813,0.0028222624678165],[-0.016847202554345,-0.0039261523634195,-0.038544725626707],[-0.014109274372458,-0.0053756753914058,0.034076277166605]],[[0.02210739441216,-0.091891936957836,0.079294629395008],[0.017445188015699,-0.022519273683429,0.036575306206942],[0.025744721293449,-0.015876704826951,0.070346601307392]],[[-0.061914138495922,0.0070089004002512,0.060763590037823],[-0.015217322856188,0.042590759694576,0.045099154114723],[0.022730108350515,0.051356729120016,-0.0073526776395738]],[[0.011842239648104,0.07801266014576,-0.034748502075672],[0.075190134346485,0.011361827142537,0.014788726344705],[0.0034633697941899,-0.089940331876278,-0.018928233534098]],[[-0.052573457360268,0.033645521849394,0.11508291214705],[0.029914347454906,0.0064778430387378,0.071230687201023],[0.059394121170044,0.12742221355438,0.089616604149342]],[[0.036630161106586,0.043584655970335,0.093479134142399],[0.1335134357214,-0.066872857511044,0.035199873149395],[-0.044561825692654,-0.074878767132759,0.028077445924282]],[[-0.045619897544384,-0.12927098572254,0.03907685726881],[-0.031226433813572,0.046886689960957,0.099149711430073],[-0.01243906840682,0.0094169192016125,-0.013909429311752]],[[-0.0019460219191387,0.011058490723372,0.018678473308682],[0.0089647704735398,-0.0097288154065609,-0.032302591949701],[0.040246464312077,-0.021732907742262,0.042468257248402]],[[-0.066789180040359,-0.067551977932453,-0.029158111661673],[-0.10962089151144,0.030647035688162,0.080895848572254],[-0.0037480108439922,-0.013708668760955,0.043037079274654]],[[-0.076972015202045,0.036037895828485,0.025678595528007],[0.016184125095606,0.087682314217091,0.040441188961267],[-0.011933879926801,0.05706724897027,0.050627876073122]],[[-0.013663088902831,0.099816754460335,0.076551429927349],[-0.03174714744091,0.037205342203379,-0.0042483322322369],[0.060253225266933,0.0076255211606622,0.047713343054056]],[[-0.011718194931746,-0.0073546916246414,0.056468598544598],[-0.024551268666983,-0.0019987158011645,0.020745310932398],[-0.027840221300721,0.0095723150297999,-0.036214862018824]],[[-0.039718899875879,-0.037224732339382,4.8583326133667e-05],[-0.025268152356148,0.054550509899855,-0.022390834987164],[-0.053541887551546,0.096240751445293,0.067152984440327]],[[-0.01387476362288,0.088108524680138,0.1134035140276],[0.048217114061117,-0.0661331564188,0.0071810651570559],[0.027700386941433,-0.011178805492818,0.07884856313467]],[[-0.032657496631145,0.0073934220708907,0.021110754460096],[0.077255040407181,-0.0030852390918881,0.019979605451226],[0.0018554532434791,-0.065722793340683,0.009104928933084]],[[-0.031402986496687,0.022006651386619,-0.04818994551897],[0.032411299645901,0.054513238370419,0.031822502613068],[-0.077935442328453,-0.027065744623542,0.022999793291092]],[[-0.052764613181353,-0.024325858801603,-0.048599507659674],[-0.020395088940859,-0.056209683418274,0.052769504487514],[-0.00028631734312512,0.08158552646637,-0.0041690017096698]],[[0.02845099568367,0.020811706781387,-0.026168145239353],[0.029049584642053,0.090345717966557,0.066192574799061],[-0.020270485430956,0.08450348675251,-0.00096399686299264]],[[0.029899556189775,-0.017403811216354,-0.054201368242502],[0.020635157823563,0.064690388739109,0.059274964034557],[0.0013304532039911,-0.076595805585384,-0.042721439152956]],[[-0.005296029150486,-0.020477641373873,0.059498880058527],[0.033450473099947,0.02891812287271,-0.01195197366178],[0.060012616217136,-0.044406395405531,-0.076813377439976]],[[-0.023621939122677,-0.033539537340403,-0.016731955111027],[0.026466960087419,0.051819104701281,0.040284182876348],[0.03480825945735,0.058852471411228,-0.065929971635342]],[[-0.0071124969981611,0.034819971770048,-0.0434824898839],[-0.049579288810492,-0.022462444379926,0.055038206279278],[0.048754975199699,-0.058251775801182,-0.045174613595009]],[[-0.02898414991796,0.0097627267241478,-0.07813261449337],[-0.014921013265848,-0.03009938262403,0.01349769718945],[-0.032133057713509,-0.051783539354801,0.11286985129118]],[[-0.02034460939467,-0.094656810164452,0.023670125752687],[0.0525723695755,-0.058830007910728,0.038410063832998],[0.010603294707835,0.043396547436714,-0.016750939190388]],[[0.063067503273487,0.024726275354624,-0.010977336205542],[0.0019358098506927,0.0026184299495071,0.034936871379614],[0.023824011906981,0.080513089895248,0.032598208636045]],[[-0.032093621790409,0.034316878765821,0.021477928385139],[0.064499743282795,0.022367553785443,-0.030859611928463],[-0.021265821531415,0.031048599630594,0.011896938085556]],[[-0.0025101727806032,0.0080326767638326,0.014749109745026],[0.0027514970861375,0.023918712511659,0.063268251717091],[0.0074519142508507,-0.072806753218174,0.057820178568363]],[[-0.018061842769384,0.088293291628361,0.014526199549437],[0.033822312951088,-0.036290690302849,0.019977068528533],[-0.0055961487814784,-0.040487237274647,-0.033038403838873]],[[-0.042374394834042,-0.039094753563404,-0.022607024759054],[0.00072702480247244,-0.021767633035779,0.013823474757373],[-0.038166642189026,-0.036501783877611,-0.0014785152161494]],[[0.069633223116398,0.025728061795235,0.055517327040434],[0.10624977201223,0.0097586829215288,0.020527875050902],[0.051320791244507,0.066136829555035,0.021146561950445]],[[-0.00047625674051233,0.062683992087841,0.06921524554491],[0.031645532697439,-0.017178950831294,0.0045557306148112],[-0.11273376643658,0.084100037813187,0.0096485391259193]],[[-0.041473366320133,0.024280488491058,-5.9419580793474e-05],[0.060077149420977,-0.018272563815117,0.0045016547665],[-0.013431699946523,0.022953161969781,0.082372188568115]],[[0.026679223403335,0.044507209211588,-0.061167262494564],[0.004757110029459,0.043471269309521,4.1175408114213e-05],[0.040558997541666,-0.048969388008118,0.022751946002245]],[[-0.042803291231394,-0.012728442437947,0.0082461182028055],[0.0043945498764515,-0.065664432942867,0.0039426535367966],[0.073769636452198,0.083767287433147,-0.066174149513245]],[[0.08943585306406,0.0055273049511015,0.051734689623117],[-0.00090039474889636,0.053922273218632,0.011158026754856],[0.026568230241537,0.051319364458323,0.1042540743947]],[[-0.028724849224091,0.037032213062048,-0.026797622442245],[0.064715966582298,-0.0082452669739723,-0.017315972596407],[0.083015643060207,0.078740283846855,0.035189628601074]],[[0.017114324495196,0.0065512917935848,0.0024790677707642],[0.080631732940674,-0.003002613550052,-0.022832751274109],[-0.037441164255142,-0.035203505307436,-0.021409878507257]]],[[[0.034743025898933,-0.024333907291293,-0.069538041949272],[0.035429324954748,0.064118817448616,-0.046480808407068],[-0.026853134855628,0.0080139031633735,0.030252262949944]],[[0.01440941914916,-0.080557651817799,-0.012417434714735],[0.012098487466574,-0.022367553785443,-0.074291743338108],[0.014452552422881,-0.031663540750742,-0.023669956251979]],[[0.0016913026338443,-0.026033747941256,0.087380111217499],[0.053418569266796,-0.035081807523966,-0.016633262857795],[-0.013863502070308,0.019846996292472,0.015214117243886]],[[0.017422787845135,0.048446502536535,-0.012157199904323],[-0.037349686026573,-0.025604952126741,0.0063923080451787],[-0.01787506788969,0.0060452804900706,-0.028640069067478]],[[0.0068657607771456,0.0086387768387794,-0.015891442075372],[-0.027887109667063,-0.045754548162222,0.034651968628168],[0.043035984039307,0.014075981453061,0.0098718469962478]],[[0.069829739630222,0.046191919595003,0.061650767922401],[-0.026027271524072,0.074190080165863,0.022925760596991],[0.03684664145112,0.03112131357193,0.075520910322666]],[[0.037334818392992,0.040831256657839,-0.010824990458786],[-0.00034441263414919,-0.054733570665121,-0.050876047462225],[-0.00016703191795386,0.039906747639179,0.063663110136986]],[[-0.027608264237642,0.013078795745969,-0.0043190876021981],[-0.04629460722208,-0.02156319282949,0.043947540223598],[0.013579337857664,0.012446592561901,-0.033150546252728]],[[0.084555901587009,-0.05818172544241,0.074592962861061],[0.065425239503384,0.015633512288332,0.087451189756393],[0.10290127247572,-0.014039463363588,0.0065859192982316]],[[0.02744254283607,0.10126924514771,0.12155628204346],[0.02320565842092,-0.020090214908123,0.061755027621984],[0.051283463835716,0.164361089468,0.083438098430634]],[[0.040492404252291,0.035706758499146,0.044145457446575],[0.0034129221457988,-0.018618175759912,0.070960119366646],[-0.078702569007874,-0.025313602760434,0.013744359835982]],[[0.032072938978672,0.051482629030943,0.06928314268589],[-0.01450689136982,-0.046602077782154,0.033313259482384],[0.075964920222759,-0.052500579506159,0.036440495401621]],[[-0.035305131226778,-0.01604600250721,-0.032886981964111],[-0.010405411943793,-0.053998257964849,0.041501894593239],[0.014319585636258,0.050383273512125,0.031950742006302]],[[-0.048920426517725,-0.06366129219532,-0.009212645702064],[-0.032091084867716,-0.0193074606359,-0.049449302256107],[0.03644336014986,0.052140489220619,-0.061393812298775]],[[0.15257214009762,0.08575128018856,-0.027807995676994],[-0.080239973962307,0.026385286822915,0.038536634296179],[0.018352130427957,-0.007190422154963,0.057797782123089]],[[0.015766315162182,0.019772559404373,0.02988856844604],[-0.012879940681159,0.10525447875261,-0.0054989368654788],[-0.03556440025568,-0.0316366776824,0.011474003084004]],[[-0.037452518939972,-0.086385950446129,0.04077211394906],[0.075251497328281,0.027686325833201,-0.053217586129904],[-0.0042686588130891,0.034691147506237,0.037369217723608]],[[-0.031463213264942,0.018858732655644,0.008765515871346],[0.11476417630911,-0.059520471841097,-0.033817853778601],[-0.0061889099888504,-0.0075963139533997,0.075202614068985]],[[-0.028097502887249,-0.031150374561548,0.048590376973152],[0.046806655824184,-0.05286368355155,0.037339765578508],[-0.076600551605225,0.076905772089958,0.063312441110611]],[[0.067630656063557,0.014185667037964,-0.055827297270298],[-0.066408321261406,-0.000916613265872,0.018421424552798],[0.055214151740074,-0.056461472064257,-0.043240673840046]],[[-0.029577761888504,0.010616864077747,-0.031417973339558],[-0.019230490550399,0.043265089392662,-0.045902345329523],[0.037968333810568,0.060291271656752,-0.024664785712957]],[[0.050761796534061,0.044486235827208,0.063471168279648],[0.036557406187057,-0.0066760582849383,-0.0037122152280062],[-0.0068085305392742,0.092153429985046,0.033698547631502]],[[0.0056823524646461,-0.018893796950579,-0.03851181268692],[-0.028937542811036,-0.013146573677659,-0.015864465385675],[-0.002980632474646,0.0012755705974996,-0.024181991815567]],[[0.1073475331068,0.031567454338074,-0.088823519647121],[-0.0041473219171166,-0.010830266401172,0.067459754645824],[-0.031596045941114,-0.014984221197665,-0.028783161193132]],[[0.014338847249746,-0.0084048891440034,0.052937220782042],[-0.070536449551582,-0.049351498484612,-0.043611481785774],[0.029188627377152,0.011434552259743,0.019480332732201]],[[-0.027980184182525,-0.0071761799044907,0.016446318477392],[-0.056985203176737,0.0038754984270781,-0.092712186276913],[0.096272267401218,-0.047608334571123,-0.042911771684885]],[[0.08545196056366,-0.041566364467144,-0.01503215637058],[0.017458559945226,0.02674319036305,-0.0087332902476192],[0.01768596470356,0.010771035216749,0.063437908887863]],[[0.029017044231296,0.043946381658316,0.0042267609387636],[-0.00018404162256047,0.052026271820068,0.021635847166181],[-0.032987389713526,-0.028939925134182,0.053747083991766]],[[0.063662558794022,0.042602796107531,-0.011280799284577],[0.03869317471981,0.0044130650348961,0.049157746136189],[0.013839744962752,0.0063425237312913,0.061943091452122]],[[0.056675858795643,-0.024718686938286,-0.032509852200747],[-0.0061913295648992,0.037027657032013,-0.015738725662231],[-0.011733089573681,-0.11628400534391,0.05755728110671]],[[-0.014647865667939,-0.0023704096674919,0.025198679417372],[0.071082085371017,0.061339404433966,0.025996848940849],[0.025065330788493,-0.0012416045647115,-0.0095817409455776]],[[-0.038704767823219,-0.0020608860068023,0.01124963350594],[-0.035475872457027,-0.030215233564377,-0.0065162987448275],[0.023121915757656,-0.040799986571074,-0.00044810326653533]],[[0.0053984532132745,0.010119120590389,-0.028871389105916],[0.0051370658911765,-0.026517454534769,0.024222491309047],[0.042873181402683,0.033301144838333,-0.033140528947115]],[[0.042274713516235,0.063675940036774,-0.012111438438296],[0.026808233931661,0.0056044170632958,0.071326017379761],[-0.052477214485407,-0.075014740228653,-0.017769772559404]],[[-0.011039257049561,0.027549292892218,-0.077300123870373],[0.047956932336092,0.02961684204638,-0.015286725945771],[0.063412718474865,-0.0057626576162875,0.026457691565156]],[[0.052027773112059,0.017978677526116,-0.068384148180485],[0.042534682899714,-0.072345107793808,0.079091295599937],[0.014701848849654,-0.013850164599717,0.076503276824951]],[[-0.011036716401577,-0.039043515920639,0.005680195055902],[-0.063451126217842,-0.015689605847001,0.0007693016086705],[0.021595364436507,-0.088305212557316,0.049743421375751]],[[-0.030116133391857,-0.031507860869169,-0.11462776362896],[0.021458182483912,-0.047759398818016,-0.14196215569973],[0.082753993570805,-0.016752578318119,0.053836327046156]],[[-0.061188563704491,0.024426702409983,0.05662190541625],[0.021097801625729,0.0066168950870633,-0.068953737616539],[-0.016372065991163,0.038566391915083,0.062629915773869]],[[-0.016385558992624,-0.044614389538765,0.013431173749268],[0.022293344140053,0.10162391513586,0.04720064625144],[0.006491981446743,0.059600837528706,0.035163469612598]],[[-0.0013023330830038,-0.0097934836521745,-0.093343131244183],[-0.044320907443762,0.020760901272297,-0.0056921788491309],[-0.0024824272841215,0.037421960383654,0.018174756318331]],[[0.036386381834745,-0.0034686324652284,0.11099854111671],[-0.004694311413914,0.016369031742215,-0.042500592768192],[0.038383908569813,-0.066726259887218,0.047650266438723]],[[-0.03065313026309,0.0032363510690629,0.053589906543493],[0.12090811878443,0.013458077795804,-0.027767015621066],[0.090656571090221,0.022250663489103,-0.028098883107305]],[[-0.0068024951033294,0.12598462402821,-0.022339712828398],[0.07360778003931,0.010430488735437,0.015683868899941],[-0.019470054656267,0.018457408994436,0.0036007682792842]],[[0.0030266323592514,-0.014543862082064,0.074860155582428],[-0.01632646471262,-0.049815326929092,-0.0096654184162617],[0.048257503658533,0.073110595345497,-0.049540933221579]],[[0.1365027576685,0.037891712039709,0.039555996656418],[0.040721841156483,-0.044589292258024,0.0052249985747039],[0.0053916252218187,0.024442097172141,-0.045029647648335]],[[0.08129295706749,0.018489034846425,-0.0058350572362542],[-0.0025436684954911,-0.010823156684637,0.041897971183062],[-0.029804451391101,0.03136932849884,-0.0084606390446424]],[[0.042137876152992,0.038070008158684,0.042100325226784],[0.0085617154836655,0.017345290631056,0.023776836693287],[-0.0017520857509226,0.043908961117268,0.016818281263113]],[[0.044997498393059,0.046569015830755,0.073640860617161],[0.066212892532349,-0.019925307482481,0.0072659514844418],[-0.023918898776174,0.049740768969059,0.044016230851412]],[[0.0097141182050109,0.034125976264477,-0.019522918388247],[0.011049770750105,-0.023963006213307,-0.0014820394571871],[0.0033831114415079,0.06330306828022,0.045837704092264]],[[0.011176133528352,-0.017490534111857,0.0016480395570397],[0.018165277317166,-0.073363393545151,-0.015033538453281],[-0.049395192414522,-0.011619139462709,-0.018962115049362]],[[-0.029160808771849,0.027873488143086,-0.02215351164341],[0.072437174618244,0.027899095788598,-0.054563838988543],[-0.014357272535563,-0.00026964861899614,-0.0054134619422257]],[[-0.016362268477678,0.10879267752171,0.015240925364196],[-0.048277892172337,-0.06303171813488,0.0069176708348095],[0.089555338025093,-0.029092019423842,0.024482870474458]],[[0.026776237413287,-0.058222755789757,-0.0031413736287504],[-0.026523858308792,0.073740154504776,0.028346361592412],[0.052480150014162,0.0062199174426496,0.026403747498989]],[[0.081328049302101,0.026906626299024,-0.013265890069306],[-0.0096900276839733,-0.027563475072384,0.0068808537907898],[0.023666765540838,-0.040998216718435,0.0059427795931697]],[[-0.051859598606825,0.0030542155727744,0.044164247810841],[0.035234156996012,0.041739724576473,-0.0073709241114557],[0.0098489448428154,0.049850758165121,0.028472378849983]],[[0.045025553554296,-0.015152204781771,0.020114539191127],[0.075319893658161,0.038470461964607,-0.045111566781998],[-0.0054888860322535,0.016000187024474,0.004680909216404]],[[0.072020635008812,0.017894791439176,-0.00010531893349253],[-0.041284739971161,0.083280697464943,0.048233643174171],[-0.0016074620652944,0.010438197292387,0.045519296079874]],[[-0.03712359815836,-0.049008019268513,0.037566933780909],[0.039436254650354,0.054678373038769,0.027387171983719],[0.014302331022918,0.096327424049377,0.027959704399109]],[[-0.063246823847294,-0.041318271309137,0.014822220429778],[0.027202246710658,0.052121691405773,0.064205922186375],[0.06294447183609,0.019454317167401,0.0035630748607218]],[[0.05046983063221,0.026588041335344,0.0093901138752699],[-0.022037617862225,0.0094589591026306,0.095280341804028],[0.011268805712461,0.022537425160408,-0.026376629248261]],[[0.022028410807252,-0.026300026103854,-0.017327200621367],[0.0083652287721634,-0.039737861603498,-0.019925938919187],[-0.01803645119071,-0.06096912920475,0.062155596911907]],[[-0.0030580924358219,-0.018188759684563,0.00097185833146796],[0.036864090710878,0.016031945124269,0.034846637398005],[-0.061924383044243,0.021674171090126,0.026453567668796]],[[0.0040173004381359,-0.02072637155652,-0.03367717191577],[-0.0033647965174168,0.017404856160283,-0.11216906458139],[-0.044727340340614,-0.016487471759319,-0.047593861818314]],[[-0.038547642529011,-0.051086854189634,0.012111015617847],[0.025309974327683,-0.021767571568489,-0.060154359787703],[0.033614058047533,-0.074789561331272,-0.030321354046464]],[[-0.03643075376749,0.026110328733921,-0.0089076133444905],[0.030222337692976,0.040605671703815,-0.052694872021675],[-0.075536794960499,0.038324452936649,-0.016313148662448]],[[-0.020460842177272,0.0090282373130322,0.060280349105597],[-0.027055995538831,-0.011121616698802,0.13497216999531],[-0.00019575368787628,-0.012818409129977,0.068598233163357]],[[-0.060745339840651,0.017440298572183,-0.072542086243629],[-0.018492644652724,-0.031020689755678,0.023894220590591],[-0.001449869479984,0.042648117989302,-0.11293206363916]],[[0.061795517802238,0.0013532992452383,-0.035023462027311],[0.05839654430747,-0.022552408277988,0.037016943097115],[0.01448268070817,-0.019239157438278,0.026593321934342]],[[-0.039531629532576,0.0063463049009442,-0.00091323530068621],[0.029265768826008,0.034961111843586,0.025028951466084],[0.024662606418133,0.017607156187296,-0.056780517101288]],[[0.0044007184915245,-0.010875541716814,-0.066489174962044],[0.0086223557591438,-0.0082692373543978,-0.013039238750935],[-0.048251379281282,0.027362383902073,0.0038472085725516]],[[0.067526288330555,-0.030780654400587,-0.066877901554108],[0.0068584498949349,-0.029670333489776,0.034553233534098],[-0.061072032898664,-0.083320751786232,0.0056807608343661]],[[0.096682816743851,0.039913021028042,-0.029880482703447],[-0.008585955016315,0.032737646251917,0.025868644937873],[0.0038585013244301,0.066144473850727,0.12315610796213]],[[0.045328605920076,0.061153806746006,-0.019532402977347],[0.0063720564357936,0.018320666626096,0.035227499902248],[-0.047097720205784,-0.01503637060523,0.043602846562862]],[[-0.072192624211311,0.0018862644210458,0.022033868357539],[-0.035152364522219,0.017284838482738,0.040398199111223],[0.032234661281109,-0.0032246643677354,-0.02862991578877]],[[0.0053534619510174,0.046951591968536,-0.043842524290085],[0.1483069807291,-0.010515619069338,0.091107279062271],[-0.01666235178709,0.065771229565144,-0.015394470654428]],[[0.0080745378509164,-0.028058405965567,0.010646312497556],[0.030225308611989,-0.051162969321012,-0.092118978500366],[-0.041822478175163,0.0010033544385806,0.0047220508567989]],[[-0.024866811931133,0.019632427021861,0.0043259640224278],[0.066664405167103,0.028627790510654,-0.044625263661146],[0.044409953057766,-0.074974834918976,-0.064709179103374]],[[0.005460299551487,0.094958588480949,0.038537092506886],[0.019368726760149,0.056188505142927,0.057912915945053],[-0.014921597205102,0.040486708283424,-0.0032902981620282]],[[0.012104088440537,0.016366750001907,-0.044122334569693],[-0.018932554870844,-0.056578174233437,0.081175394356251],[-0.026030180975795,-0.0030084063764662,0.010526631958783]],[[-0.014988743700087,-0.0024988269433379,-0.042220909148455],[-0.0097759710624814,-0.020340450108051,0.07465399056673],[-0.11455143988132,-0.0071415477432311,-0.024927582591772]],[[-0.023820741102099,-0.023595606908202,-0.03413762897253],[-0.0040862797759473,-0.019336199387908,0.0065107410773635],[0.024231310933828,0.04206807911396,0.0051090652123094]],[[-0.020661406219006,-0.058329783380032,0.10560143738985],[0.009000794030726,-0.08038479834795,-0.010332953184843],[-0.032055072486401,-0.064247570931911,-0.035001661628485]],[[0.019633861258626,0.028337370604277,-0.031487211585045],[0.016095662489533,0.061105482280254,0.01345772575587],[0.044550485908985,-0.036352932453156,0.021225390955806]],[[-0.0095535693690181,0.093147985637188,-0.04716494306922],[-0.010535467416048,0.055967897176743,0.00040634805918671],[0.056524801999331,0.060135256499052,0.0070192134007812]],[[-0.038047719746828,0.039520986378193,0.047637641429901],[0.062717959284782,-0.010255671106279,0.038146767765284],[-0.042265828698874,0.0429079644382,-0.034505266696215]],[[-0.062899008393288,0.0022818152792752,-0.022614642977715],[-0.0042081195861101,0.035686824470758,-0.036800008267164],[0.041062619537115,0.062781438231468,0.060931652784348]],[[0.029939776286483,0.086594603955746,-0.016662530601025],[-0.0059567405842245,-0.068379901349545,-0.0022349138744175],[-0.041653227061033,0.067736081779003,-0.0078705018386245]],[[0.081891983747482,-0.022244175896049,0.046202640980482],[0.017891462892294,0.020142739638686,0.018780473619699],[-0.02616036683321,-0.041318215429783,-0.016697458922863]],[[-0.02154179289937,-0.046283509582281,0.02983128093183],[0.02052310667932,-0.073305450379848,0.079954102635384],[0.03619783744216,0.064987733960152,0.027507023885846]],[[-0.041827905923128,0.024774419143796,0.054706513881683],[0.035426929593086,0.035463016480207,0.008387116715312],[-0.0071836477145553,0.11329121887684,0.052303582429886]],[[-0.027755254879594,0.010098396800458,-0.018957175314426],[0.063626676797867,-0.014211311005056,-0.0338817499578],[0.045602146536112,0.017345504835248,-0.028038265183568]],[[0.025915790349245,-0.046936176717281,0.047727767378092],[-0.014519675634801,-0.010977374389768,0.082758106291294],[-0.0034734988585114,0.047007236629725,-0.045128468424082]],[[-0.029755149036646,0.1087963283062,0.013605699874461],[-0.1006358936429,-0.040584545582533,0.017373252660036],[0.06935378909111,-0.011817941442132,0.12230890244246]],[[-0.089153304696083,0.029142398387194,0.0073168631643057],[0.023360410705209,0.024860866367817,0.080839991569519],[-0.032993152737617,-0.0051970561034977,0.021070461720228]],[[-0.057188801467419,-0.0086299031972885,0.017427193000913],[0.0040836217813194,0.0073876515962183,0.015794953331351],[0.052299588918686,0.0091424332931638,0.025131836533546]],[[-0.051680732518435,0.042306002229452,-0.052311167120934],[-0.03061300329864,0.035356633365154,0.023472592234612],[-0.0055472226813436,0.0069804936647415,0.0091672595590353]],[[0.010289185680449,0.045891024172306,0.053469952195883],[-0.035721998661757,-0.0030733016319573,0.0040511903353035],[0.062307685613632,0.071145035326481,-0.042183298617601]],[[0.050069965422153,-0.0002606546622701,-0.017480801790953],[-0.054353639483452,-0.036654252558947,-0.037601839751005],[0.028416518121958,-0.037834327667952,0.0046970136463642]],[[0.011528071016073,-0.0022511491551995,0.0057936683297157],[-0.082484297454357,-0.072469502687454,0.062809213995934],[0.00022965417883825,-0.048941005021334,0.065415747463703]],[[0.067682757973671,-0.050599228590727,0.0066108023747802],[0.0075183943845332,0.064746394753456,0.008000542409718],[-0.018684141337872,0.0051585803739727,0.056653250008821]],[[0.042659409344196,0.06641311198473,-0.026954440400004],[-0.010656395927072,-0.0067628370597959,0.1112437620759],[0.066453993320465,-0.038727551698685,0.074420399963856]],[[-0.021388711407781,-0.01039038784802,0.058262810111046],[-0.0068844957277179,-0.073709927499294,-0.0010824570199475],[0.0024026241153479,-0.025707697495818,0.047284726053476]],[[-0.091397754848003,0.050689071416855,-0.048264030367136],[0.067379556596279,-0.050544638186693,-0.010394346900284],[-0.035327699035406,-0.053612001240253,0.026065088808537]],[[-0.02234080247581,0.038144834339619,0.074702635407448],[0.033999383449554,0.034446235746145,-0.0018240737263113],[0.010374794714153,0.082458086311817,-0.029879217967391]],[[0.074267618358135,0.04781100153923,0.075135461986065],[0.039468340575695,0.029248733073473,-0.0098104290664196],[-0.018878879025578,0.032870311290026,-0.085043422877789]],[[0.084347441792488,0.0064913649111986,0.10037326067686],[-0.069803632795811,0.017245532944798,-0.056338638067245],[0.023790756240487,-0.012487265281379,0.021255785599351]],[[0.021913690492511,-0.013926174491644,-0.095918200910091],[-0.022195406258106,-0.022947154939175,0.096507735550404],[-8.5663734353147e-05,-0.035480782389641,0.03523775935173]],[[0.043783687055111,0.011380831710994,-0.047465045005083],[0.018887717276812,0.0067274821922183,0.040100865066051],[-0.045049615204334,-0.0063423840329051,-0.012583333067596]],[[0.023051898926497,0.029054509475827,-0.058136329054832],[-0.013626107946038,-0.019936069846153,-0.025843428447843],[-0.044520523399115,0.0509566180408,-0.010997088626027]],[[-0.0019437363371253,0.032194204628468,-0.098081171512604],[0.03046234510839,-0.05541330948472,0.0065788691863418],[0.034752056002617,-0.019509548321366,-0.0026877708733082]],[[-0.020894045010209,0.0031181236263365,0.051392436027527],[0.10297183692455,0.040978655219078,-0.074961334466934],[0.036013722419739,-0.014607716351748,-0.022769311442971]],[[0.073926404118538,0.0083748903125525,-0.035588249564171],[0.026177834719419,-0.035932913422585,0.051656357944012],[0.044678766280413,-0.019561352208257,-0.00079905992606655]],[[-0.03773595020175,-0.017901321873069,0.01623952947557],[0.02005310729146,-0.012823233380914,0.0023081025574356],[-0.036507684737444,0.014888681471348,0.076546803116798]],[[-0.011740496382117,0.058495622128248,-0.00021282630041242],[0.0035329763777554,0.053961627185345,-0.044782247394323],[0.017215207219124,-0.035792913287878,-0.040986891835928]],[[0.060820117592812,0.10829480737448,-0.073800638318062],[-0.047138527035713,0.046960890293121,-0.014799706637859],[0.015828980132937,-0.04076799377799,0.069715030491352]],[[0.0081443898379803,-0.046923823654652,0.030167600139976],[-0.064296253025532,0.053228538483381,0.049346845597029],[-0.034010261297226,0.011675616726279,0.067468605935574]],[[-0.014674306847155,0.016329461708665,-0.023401392623782],[-0.012031607329845,0.020647719502449,0.080073691904545],[0.035469058901072,-0.029352055862546,0.098161265254021]],[[0.10170861333609,0.045440554618835,-0.019695203751326],[-0.060556430369616,0.0037253492046148,-0.0012296247296035],[-0.059782132506371,-0.059020388871431,0.029465787112713]],[[0.028695913031697,0.03406572714448,-0.020132156088948],[0.072188779711723,-0.044404949992895,0.04048229008913],[-0.052256938070059,0.021944902837276,-0.053179405629635]],[[-0.023907450959086,0.084519684314728,0.014422707259655],[-0.048503663390875,0.025689899921417,0.0080632204189897],[0.089634098112583,0.057385951280594,0.064938478171825]],[[-0.017831441015005,0.0089339399710298,0.0062154713086784],[0.035055078566074,0.03641002997756,-0.015922525897622],[0.041287031024694,-0.08500000089407,0.022340206429362]],[[0.050714295357466,0.065863534808159,0.029538843780756],[-0.01865091919899,-0.050703506916761,-0.0035917167551816],[0.012127542868257,-0.0064045712351799,-0.0068277548998594]],[[0.027307813987136,-0.069909781217575,-0.00056072819279507],[0.0083041787147522,0.018566835671663,-0.055060546845198],[-0.048669088631868,-0.011990658007562,-0.094903714954853]],[[-0.0065162456594408,0.0030761919915676,0.031899768859148],[0.022740732878447,0.022718794643879,-0.032038137316704],[-0.026546003296971,0.071208223700523,-0.037399280816317]],[[-0.049091968685389,0.077348694205284,0.012396804057062],[0.009901724755764,0.012712908908725,-0.017572142183781],[0.017924442887306,0.021129688248038,0.026487337425351]],[[0.013610473833978,-0.010540786199272,0.03635136038065],[0.011582318693399,0.076715186238289,0.054144397377968],[0.017738414928317,-0.012241974473,-0.027794606983662]],[[0.033143289387226,0.0060898186638951,-0.063639752566814],[0.047210447490215,0.0526855699718,0.112170599401],[-0.062014807015657,-0.025292035192251,0.032035935670137]]],[[[0.039845164865255,-0.069314762949944,0.014737024903297],[-0.064379766583443,-0.025825038552284,0.078594669699669],[-0.025092465803027,-0.020162366330624,0.038225226104259]],[[-0.062426809221506,-0.021109558641911,-0.02039541862905],[0.062199577689171,-0.032588206231594,-0.049798034131527],[0.018082588911057,-0.049605932086706,-0.052339740097523]],[[-0.026287550106645,0.0058479066938162,0.071086153388023],[-0.012205051258206,0.081741623580456,0.022581214085221],[-0.038629021495581,0.014754747971892,0.045362241566181]],[[0.0022609911393374,0.033589947968721,-0.033039592206478],[-0.001304336823523,0.0046037184074521,0.0061270585283637],[-0.062951602041721,-0.020950801670551,0.046685233712196]],[[-0.061900496482849,0.032363265752792,-0.099194310605526],[0.00099682633299381,0.026164967566729,-0.041821487247944],[0.028443904593587,-0.12493265420198,-0.012276242487133]],[[-0.040705177932978,0.044590875506401,-0.015161341056228],[-0.0193792860955,0.013342888094485,-0.018221713602543],[0.0706722214818,-0.048164609819651,-0.056710612028837]],[[0.0089467857033014,-0.0080381296575069,-0.11183556169271],[-0.061489757150412,0.099459171295166,0.046527288854122],[0.016103908419609,0.033866941928864,0.024905491620302]],[[-0.068201638758183,0.025021696463227,-0.036722652614117],[0.042445186525583,-0.10073912888765,-0.071643576025963],[-0.11253825575113,0.028658600524068,-0.017934020608664]],[[-0.013803546316922,0.07821387052536,0.021908959373832],[-0.083977967500687,0.075286671519279,-0.13126486539841],[0.0066905175335705,-0.05357975512743,-0.010802823118865]],[[-0.01549684535712,0.0033751826267689,0.079871155321598],[0.20005871355534,0.12266484647989,0.064095608890057],[0.10260304808617,-0.026113145053387,0.096500739455223]],[[0.02879892103374,-0.019419476389885,4.1562430851627e-05],[0.010921713896096,0.022621612995863,0.0021906855981797],[0.031730189919472,0.067218460142612,-0.010097648017108]],[[-0.017449723556638,0.047195952385664,0.049815457314253],[0.013140155002475,0.009575366973877,-0.00058480614097789],[-0.019232086837292,-0.04326955229044,-0.03467857465148]],[[0.040171932429075,-0.027959823608398,-0.029103433713317],[-0.0030509291682392,-0.07601822912693,-0.024199191480875],[-0.032370373606682,-0.026198590174317,0.086998030543327]],[[0.038985431194305,0.014045748859644,-0.05297813937068],[0.038166020065546,-0.00022097933106124,0.064243257045746],[-0.045710328966379,-0.080050028860569,-0.037582445889711]],[[0.0098520871251822,0.073372915387154,0.075320191681385],[-0.014622997492552,0.077718764543533,0.026371970772743],[0.10043881088495,0.013565894216299,0.059026550501585]],[[-0.048173312097788,-0.0066312332637608,-0.034906316548586],[-0.004546158015728,-0.026624470949173,-0.006162344943732],[0.017333136871457,-0.094843678176403,0.01384278293699]],[[-0.06849716603756,-0.034969732165337,-0.0098817618563771],[0.013210934586823,0.0070346896536648,0.01578813046217],[0.049513306468725,0.011539737693965,-0.01560693513602]],[[-0.00056329631479457,0.023613911122084,0.0012396918609738],[-0.024100279435515,-0.042714666575193,-0.016558099538088],[0.049824047833681,0.00098108826205134,0.028373077511787]],[[-0.018853422254324,-0.033501032739878,-0.014792522415519],[0.021077146753669,0.039026938378811,0.071090497076511],[0.038644034415483,-0.079676933586597,-3.9242469938472e-05]],[[0.048721466213465,0.020572958514094,-0.026503395289183],[0.034065410494804,0.039714615792036,0.0029034574981779],[0.0040047238580883,0.12068498879671,0.073465451598167]],[[-0.10793723911047,0.034458771348,0.084278747439384],[0.033361293375492,0.020980227738619,-0.065156899392605],[-0.059089582413435,-0.032841339707375,0.0010922808432952]],[[0.082742393016815,0.011661267839372,0.024944078177214],[0.04026647284627,0.092131353914738,-0.011906730011106],[-0.033472832292318,0.043869562447071,0.086971499025822]],[[0.014781442470849,0.00046479125740007,-0.087070174515247],[0.016159230843186,0.062724754214287,-0.022552525624633],[0.0079117184504867,0.053176399320364,0.024500412866473]],[[-0.060125935822725,-0.10067480802536,-0.059626325964928],[0.026063928380609,0.02723784185946,0.066858030855656],[0.075000427663326,0.026860499754548,0.0054575493559241]],[[-0.0074628200381994,0.055349450558424,0.0056267376057804],[-0.025463752448559,-0.025286804884672,0.079390741884708],[-0.031270775943995,-0.032712865620852,-0.014247318729758]],[[-0.033394232392311,-0.028914520516992,0.054779857397079],[0.021022057160735,0.045618783682585,-0.044816594570875],[-0.013153967447579,0.0018420215928927,0.051947947591543]],[[0.06947323679924,0.04195773974061,0.00040073980926536],[-0.045819722115993,-0.045533820986748,-0.027385924011469],[0.029550714418292,0.028782229870558,-0.051594145596027]],[[-0.038540009409189,0.06824216991663,0.080516993999481],[-0.050613157451153,0.023089528083801,-0.07891122251749],[0.013088687323034,0.051348328590393,-0.058060992509127]],[[0.001955994637683,0.012234403751791,0.03526346385479],[0.063401974737644,0.035901788622141,0.020043516531587],[0.038256596773863,-0.036807116121054,0.058952748775482]],[[-0.043347921222448,0.019180908799171,0.14059013128281],[0.012240692973137,0.1023922637105,0.050558142364025],[0.040989276021719,0.052922699600458,-0.071951419115067]],[[-0.016612531617284,0.031090563163161,0.0058591426350176],[0.022424655035138,0.059518788009882,0.018946101889014],[-0.0025900404434651,0.13453789055347,0.066856630146503]],[[-0.035436142235994,0.050195638090372,-0.0033345301635563],[-0.023027716204524,-0.0010588066652417,0.059710040688515],[0.069528646767139,-0.0050155413337052,0.066246122121811]],[[0.010795995593071,-0.0075881909579039,-0.010462818667293],[-0.0068780328147113,0.069324843585491,0.0045551848597825],[-0.10053078085184,-0.004240594804287,0.03574650362134]],[[0.0050852196291089,0.0302769895643,-0.015759659931064],[-0.017556367442012,0.024952214211226,-0.024095855653286],[0.026069106534123,0.032201074063778,0.11091986298561]],[[-0.014483214356005,-0.030680034309626,-0.010268171317875],[0.023521531373262,-0.033751767128706,-0.1857436299324],[-0.13252452015877,-0.0049324673600495,-0.026983229443431]],[[-0.077685639262199,-0.014495816081762,0.068200439214706],[-0.043291423469782,-0.0019669390749186,0.013804573565722],[0.065398827195168,-0.099457405507565,-0.042754482477903]],[[0.03404189273715,0.045204300433397,0.020375972613692],[0.066924996674061,0.033206984400749,0.038574811071157],[0.047325693070889,0.033107306808233,0.080482669174671]],[[0.038751598447561,0.05226432159543,-0.00022047902166378],[-0.020493384450674,0.061989065259695,0.046936869621277],[0.064387671649456,0.087616197764874,0.0028308520559222]],[[-0.047581233084202,0.13341493904591,-0.099841348826885],[-0.035069271922112,0.050227284431458,-0.083779968321323],[-0.044752519577742,-0.025612693279982,0.054858334362507]],[[-0.0028636467177421,0.016835816204548,-0.054592676460743],[0.032631326466799,0.037617012858391,-0.028583446517587],[0.0099310101941228,0.011843726038933,0.022624662145972]],[[0.065119750797749,-0.026584694162011,-0.047990549355745],[-0.0069991042837501,-0.022339507937431,0.066629834473133],[-0.0045547401532531,-0.030237669125199,0.00023051556490827]],[[0.0017841297667474,-0.074177972972393,-0.13780207931995],[0.060307014733553,-0.0070236562751234,0.01090354565531],[0.010728226043284,-0.12963366508484,0.018840836361051]],[[0.021575849503279,-0.033266134560108,-0.013071488589048],[-0.014927137643099,0.029445311054587,0.11768814176321],[0.027112321928144,0.10339494049549,0.048721700906754]],[[0.055504716932774,-0.0037025425117463,0.068923644721508],[0.021118767559528,0.0012621924979612,0.070354096591473],[0.04255099222064,-0.036538813263178,0.035951714962721]],[[-0.012016689404845,0.032497651875019,-0.053021248430014],[0.059552412480116,-0.0098552899435163,0.019522111862898],[0.016214612871408,0.013590910471976,-0.088949158787727]],[[0.03293963521719,-0.081153765320778,0.075596630573273],[-0.019722443073988,-0.0051698978058994,-0.024573797360063],[0.035222087055445,-0.0047200536355376,0.0077144340611994]],[[-0.013664534315467,0.039515007287264,-0.0074239070527256],[0.0422468110919,0.0087584313005209,0.008114306256175],[-0.050217546522617,-0.00019940898346249,0.048734162002802]],[[0.077930830419064,-0.036888942122459,0.16295884549618],[-0.0099465232342482,0.076623819768429,-0.043426811695099],[0.030216718092561,0.027201084420085,0.043401647359133]],[[0.04016936570406,0.0802386328578,-0.012629744596779],[-0.13622260093689,0.10251767188311,0.014837158843875],[0.067800968885422,-0.051859177649021,-0.02454131655395]],[[0.01510270126164,-0.020881740376353,-0.067227996885777],[-0.013931958936155,-0.0035427261609584,0.066192217171192],[-0.055769648402929,-0.055389646440744,-0.019537458196282]],[[0.015781918540597,0.024314073845744,-0.029571417719126],[0.0033235831651837,0.042789805680513,0.0077440300956368],[0.073138058185577,-0.094486854970455,-0.10621803253889]],[[0.02466357126832,-0.0090425908565521,0.067266061902046],[0.053315576165915,-0.054277133196592,-0.029240824282169],[0.025051318109035,0.011469609104097,-0.031942591071129]],[[-0.03263358771801,-0.05227941647172,-0.024103151634336],[-0.04887356236577,0.019354872405529,0.035475950688124],[-0.036111410707235,-0.0092247668653727,-0.02335012331605]],[[-0.031803477555513,0.055594343692064,0.084391087293625],[0.041759118437767,0.056429266929626,0.00034682999830693],[0.0028357794508338,0.059772737324238,0.069281928241253]],[[-0.11740326881409,0.0056300624273717,0.027732491493225],[0.071939527988434,0.13900664448738,0.0067947660572827],[0.041979022324085,0.00086922361515462,-0.027863016352057]],[[-0.056528758257627,0.050175633281469,0.012279766611755],[0.059998359531164,-0.039295721799135,0.013804757036269],[-0.018194960430264,0.065946184098721,0.0092271482571959]],[[-0.12456410378218,-0.038312375545502,-0.0071210679598153],[-0.093492582440376,-0.066925957798958,0.09977214038372],[-0.051337402313948,0.041947692632675,0.00038899501669221]],[[-0.045983601361513,-0.0077690370380878,0.022865235805511],[0.0048181624151766,-0.0027710550930351,0.046645689755678],[0.0075365002267063,0.054576318711042,0.049509380012751]],[[0.017672704532743,0.0079615646973252,-0.027951957657933],[-0.0097848419100046,0.026256581768394,0.015561764128506],[-0.0060411687009037,0.037977278232574,-0.050201136618853]],[[-0.066163904964924,0.055419538170099,0.097987167537212],[0.011575461365283,0.0055100717581809,0.11010424792767],[0.02245706319809,0.038406930863857,0.020983710885048]],[[0.0034450537059456,-0.023444063961506,0.0056850044056773],[-0.049207646399736,0.015223090536892,0.028869124129415],[-0.045967370271683,-0.11902882903814,-0.018783884122968]],[[0.011771530844271,0.03427492082119,0.042082589119673],[0.023474993184209,-0.039638493210077,0.048126373440027],[-0.10246720165014,0.064824976027012,0.047970838844776]],[[-0.0057658711448312,0.025351256132126,0.042761582881212],[0.072522759437561,0.014130063354969,0.065169453620911],[-0.011826260015368,-0.036960028111935,0.050849042832851]],[[-0.05573321133852,0.083782255649567,-0.0038144530262798],[-0.0047948975116014,0.042923528701067,-0.018409384414554],[0.014706771820784,0.17977906763554,0.07648891210556]],[[-0.0068639707751572,0.050734702497721,0.005275160074234],[0.059607330709696,-0.041120238602161,-0.035216387361288],[0.058127030730247,0.012768032960594,0.17559820413589]],[[0.014592820778489,0.093632578849792,-0.029356731101871],[0.017897086217999,0.027846934273839,0.11682898551226],[0.029812337830663,0.0083373794332147,0.031625617295504]],[[-0.12231850624084,0.049270570278168,-0.039335381239653],[-0.005402666516602,0.052447531372309,0.060401372611523],[-0.013749262318015,0.077362954616547,-0.014427956193686]],[[0.047334805130959,-0.025161111727357,0.014964868314564],[-0.042130272835493,0.095917336642742,0.053957652300596],[0.062027011066675,-0.079262353479862,0.11350157856941]],[[0.031070871278644,-0.033634547144175,0.0027129631489515],[-0.022750400006771,0.041679605841637,0.043948970735073],[-0.010825253091753,-0.0067411898635328,0.071283906698227]],[[0.04862204939127,-0.038706500083208,0.083852395415306],[-0.086277768015862,0.15215420722961,0.0075780409388244],[0.12242361903191,-0.015068859793246,-0.0090857781469822]],[[-0.077745623886585,-0.043443933129311,0.031017182394862],[-0.069453224539757,0.038501854985952,0.033244255930185],[-0.02029006741941,0.002330890391022,-0.052849050611258]],[[0.082344114780426,0.079086244106293,0.03963565453887],[0.052432622760534,-0.083997920155525,-0.036708269268274],[-0.072992756962776,0.062257997691631,-0.018974244594574]],[[0.029754573479295,-0.0070851966738701,0.07058909535408],[0.046959795057774,0.034385222941637,0.092746965587139],[0.02282858081162,-0.028704037889838,-0.15029317140579]],[[-0.030563861131668,-0.020157068967819,0.02460684068501],[0.01809149235487,0.013948354870081,0.057562850415707],[0.017869971692562,0.090182431042194,0.048490900546312]],[[0.071694679558277,-0.0031705021392554,0.056665364652872],[-0.031430408358574,-0.00028672357439063,-0.039546824991703],[0.098018124699593,0.0076219732873142,0.018376316875219]],[[-0.049384821206331,0.05364853143692,0.12754939496517],[0.051442284137011,0.076532423496246,-0.044715989381075],[-0.00091217469889671,0.037322737276554,0.068139523267746]],[[0.10335417836905,0.11111713945866,0.030042191967368],[-0.046223934739828,-0.014271249063313,0.023561665788293],[0.0046057831496,-0.00010906682291534,0.14134831726551]],[[0.0084764389321208,-0.014885001815856,0.014398871921003],[-0.11511863768101,-0.059189610183239,0.065327391028404],[0.049926664680243,0.022274406626821,0.035117596387863]],[[0.063531838357449,-0.0063326340168715,-0.027867877855897],[0.065366357564926,-0.018997628241777,0.053452309221029],[0.0084068011492491,0.0040006604976952,0.02157873660326]],[[-0.027809750288725,-0.03210062533617,0.019674422219396],[-0.095359154045582,0.13443860411644,0.0465645827353],[-0.00066297070588917,0.059578165411949,0.032351776957512]],[[0.029171200469136,-0.026779025793076,0.037385389208794],[0.10464857518673,-0.015875896438956,-0.0017507382435724],[0.0073762354440987,-0.038716435432434,0.040114898234606]],[[0.057694103568792,0.018493628129363,-0.047452241182327],[-0.0045772362500429,0.0088018449023366,-0.077215872704983],[-0.085374467074871,0.0054542957805097,-0.015655053779483]],[[0.015326206572354,0.022258536890149,0.028864743188024],[0.07705008238554,0.10789889842272,0.028592500835657],[-0.022284273058176,-0.049160365015268,-0.03433919698]],[[0.0012198145268485,0.032327488064766,-0.052378118038177],[0.0087720425799489,0.013722030445933,-0.048272926360369],[-0.032604057341814,-0.0033342908136547,0.015753414481878]],[[0.0014614019310102,-0.013347282074392,-0.011412591673434],[0.046017605811357,0.042050838470459,0.044361334294081],[-0.0075326729565859,0.048070389777422,-0.046772569417953]],[[0.12101431936026,0.071564830839634,-0.044402129948139],[-0.033837649971247,0.068497970700264,-0.03934621065855],[0.018692385405302,0.070155896246433,-0.048147827386856]],[[0.057999312877655,-0.070321321487427,-0.019085295498371],[-0.015921765938401,-0.0656967908144,-0.047689169645309],[0.04174517467618,-0.060952052474022,0.034558285027742]],[[-0.0096203768625855,0.089445509016514,0.00275425799191],[0.011233592405915,0.12988233566284,0.054115738719702],[-0.020673470571637,0.12356743216515,-0.0035287914797664]],[[-0.0063019716180861,0.031837128102779,-0.015469276346266],[-0.01110633648932,-0.012269048020244,-0.023698220029473],[0.014493792317808,0.074113391339779,-0.0080710304901004]],[[-0.015437590889633,-0.02058888040483,-0.020811215043068],[-0.074068389832973,0.047515939921141,0.048102222383022],[-0.00488451262936,0.0093963453546166,0.017075458541512]],[[-0.00593854021281,-0.11919197440147,0.018283605575562],[0.027780732139945,-0.016772728413343,0.067583940923214],[-0.050915509462357,0.059794470667839,0.041335072368383]],[[0.018286349251866,0.011518176645041,0.072185054421425],[-0.039955705404282,-0.03364210948348,0.0020436190534383],[0.074465289711952,-0.043406188488007,0.00062701525166631]],[[-0.070135749876499,-0.029787248000503,0.036192674189806],[-0.04029506072402,0.0049370187334716,0.0037566202227026],[-0.10030380636454,-0.038791887462139,0.054200801998377]],[[0.010325888171792,0.031377404928207,-0.079123750329018],[-0.033237058669329,0.04012306407094,-0.018583433702588],[-0.040140327066183,0.022593967616558,0.096168152987957]],[[0.046520311385393,-0.0223871730268,0.11344357579947],[0.014179258607328,0.0069489143788815,-0.069245785474777],[-0.0035649922210723,0.017643453553319,0.036026943475008]],[[0.024037256836891,-0.031094405800104,0.14136078953743],[0.069646470248699,-0.074196070432663,-0.021736489608884],[-0.043615706264973,0.096542999148369,0.036044467240572]],[[0.018294487148523,-0.049749586731195,0.00037184401298873],[0.080108240246773,0.034402046352625,0.10969934612513],[0.0047076554037631,0.019579086452723,0.034315306693316]],[[0.0018839023541659,0.062240995466709,0.031470388174057],[0.026523619890213,0.037594985216856,0.06845423579216],[-0.01903716661036,0.016634687781334,0.025614766404033]],[[-0.0051807602867484,-0.029953714460135,-0.013366861268878],[-0.0042152386158705,0.081982664763927,-0.010440277867019],[-0.032054211944342,-0.0014408027054742,-0.048634227365255]],[[-0.083506897091866,-0.060558117926121,0.068147607147694],[-0.052121117711067,0.12361400574446,0.017291745170951],[0.0024943379685283,-0.03126959875226,-0.025436354801059]],[[-0.017736477777362,-0.074095696210861,-0.019913142547011],[-0.058890357613564,-0.066732853651047,0.065451078116894],[0.019824927672744,0.045626282691956,-0.032680451869965]],[[-0.004686625674367,-0.047110434621572,0.012530266307294],[0.099527858197689,0.17664724588394,0.10448477417231],[0.01238976046443,0.057893075048923,0.083437144756317]],[[0.10060938447714,0.037210162729025,0.02712301723659],[-0.002896930789575,0.08452744781971,-0.0055600507184863],[0.025057757273316,0.10315569490194,0.036633871495724]],[[-0.019342118874192,-0.09045048803091,0.0030909453053027],[0.0067012342624366,-0.033613827079535,0.021763443946838],[-0.049053475260735,0.048081245273352,0.043677877634764]],[[0.065493501722813,-0.071872271597385,-0.01805710606277],[0.047425244003534,-0.039178162813187,0.0099984863772988],[0.059733912348747,-0.027070930227637,0.067029476165771]],[[-0.051810894161463,-0.0052050584927201,0.061843130737543],[-0.036160554736853,-0.018056722357869,-0.052108004689217],[0.034932870417833,-0.06391841173172,-0.032586831599474]],[[0.086093477904797,0.074527896940708,-0.087288960814476],[-0.013594397343695,-0.080391079187393,0.014127090573311],[-0.019569197669625,-0.019008303061128,0.029197344556451]],[[0.017917672172189,-0.14034278690815,-0.046590324491262],[-0.043207418173552,-0.013525245711207,0.034094881266356],[-0.046010326594114,-0.028193177655339,-0.032124947756529]],[[-0.041229501366615,-0.0095067722722888,0.070674985647202],[0.0049894894473255,-0.0055426969192922,0.059760980308056],[0.0081839514896274,0.023462429642677,0.036154419183731]],[[-0.057192325592041,0.014873131178319,-0.0029971059411764],[0.048181358724833,0.016784133389592,0.03604943305254],[-0.050955038517714,0.052189234644175,-0.016403898596764]],[[-0.045656111091375,0.0087543940171599,0.032322488725185],[-0.009207340888679,-0.0071896491572261,0.025056226179004],[0.04308320954442,-0.068768478929996,0.0029430675785989]],[[0.018154628574848,-0.033452115952969,0.040179893374443],[0.014252665452659,-0.0047989790327847,0.030467830598354],[-0.011799742467701,-0.0140380281955,-0.025478409603238]],[[0.050490077584982,0.07513190805912,0.029170423746109],[-0.01018107123673,-0.015250540338457,-0.092263728380203],[-0.034571930766106,0.083268903195858,0.048463370651007]],[[0.052286624908447,0.025260709226131,-0.082259513437748],[-0.0069214254617691,-0.0086217438802123,-0.067750357091427],[0.022707581520081,0.047816421836615,-0.073320433497429]],[[-0.010267602279782,0.0063064834102988,-0.0028194924816489],[-0.0019118164200336,-0.02181226760149,0.077190227806568],[0.0013563196407631,0.020877689123154,0.048236902803183]],[[0.012600660324097,-0.055130317807198,-0.069117665290833],[-0.02900199405849,-0.025632593780756,-0.05083716288209],[0.024183543398976,-0.06282926350832,0.058579031378031]],[[0.050971947610378,0.10850519686937,0.073413029313087],[0.014623905532062,-0.015594734810293,0.12287903577089],[0.052843153476715,0.051475081592798,0.031207587569952]],[[0.069962672889233,0.16996414959431,0.027229068800807],[-0.034586627036333,-0.025653025135398,0.0057902289554477],[-0.0020662487950176,-0.0049813142977655,0.12908405065536]],[[0.0059232213534415,-0.11783728003502,0.019628839567304],[-0.044205065816641,-0.0070078521966934,-0.058577686548233],[0.10937562584877,-0.082147791981697,-0.037694867700338]],[[0.024527272209525,-0.060307040810585,0.00082810182357207],[-0.037066835910082,-0.06057620421052,-0.021706158295274],[-0.066470548510551,0.070717200636864,0.012693714350462]],[[-0.0083330776542425,0.030634008347988,-0.01568403840065],[0.045181158930063,0.045339979231358,-0.095398366451263],[0.12818390130997,0.079830452799797,0.092920728027821]],[[0.023248217999935,-0.0094775790348649,0.0098705403506756],[-0.022626740857959,-0.025740483775735,-0.014502918347716],[0.047926805913448,0.052231635898352,0.037991020828485]],[[0.0092549724504352,-0.08560998737812,-0.013574540615082],[0.075639471411705,0.041131660342216,0.017022490501404],[-0.034653820097446,-0.074711568653584,0.016547894105315]],[[0.0091902874410152,0.014332122169435,-0.0034508595708758],[0.056993249803782,-0.0092393374070525,0.062077466398478],[0.0072060469537973,0.090686999261379,-0.020473210141063]],[[-0.048998575657606,-0.014269848354161,0.053660601377487],[0.0086545301601291,0.054470207542181,0.073669381439686],[0.01233917940408,-0.064863570034504,-0.013879044912755]],[[0.013937671668828,-0.067527398467064,-0.01915873400867],[-0.043216422200203,0.079236321151257,-0.063949413597584],[-0.015711748972535,0.013376586139202,-0.03944081440568]],[[0.0805848762393,0.028827667236328,0.02739885263145],[0.030356410890818,0.048847485333681,-0.092774584889412],[-0.015482514165342,0.084149219095707,0.063941091299057]],[[0.063398033380508,0.0017878323560581,0.019761893898249],[-0.0569963529706,-0.024710908532143,0.013444106094539],[-0.054585490375757,0.026590591296554,-0.072780355811119]]],[[[0.046952724456787,-0.065253525972366,0.0055258683860302],[0.024475893005729,-0.076627567410469,0.072756268084049],[0.020182343199849,0.010099928826094,-0.0090640410780907]],[[-0.054444242268801,-0.065014488995075,-0.05891851708293],[0.057170789688826,-0.0051961792632937,-0.018165916204453],[0.032107744365931,0.029537321999669,-0.11322569847107]],[[0.03827503696084,0.037962958216667,0.007187114097178],[0.041291657835245,0.033941995352507,-0.040446512401104],[0.029186448082328,0.0079616783186793,0.019575154408813]],[[-0.00046852917876095,-0.0013819285668433,0.027490429580212],[0.046211924403906,0.013176786713302,0.074007049202919],[0.032646097242832,-0.053578540682793,-0.019101765006781]],[[-0.020537104457617,0.048955403268337,0.028149884194136],[-0.045886557549238,0.040315177291632,0.013407492078841],[-0.048056952655315,-0.03380611538887,0.10872193425894]],[[-0.044025529175997,-0.073234371840954,-0.00088166876230389],[0.085146307945251,-0.0022438496816903,0.012819123454392],[0.0031640531960875,-0.052614137530327,-0.027534157037735]],[[0.053742419928312,-0.06547673791647,0.035468772053719],[0.041548244655132,-0.025262454524636,-0.049741927534342],[0.050650659948587,0.01026208512485,0.077540256083012]],[[0.048881262540817,-0.033750530332327,0.0076983072794974],[-0.010179269127548,0.043152786791325,0.074286498129368],[0.021466910839081,0.0035292743705213,-0.031436633318663]],[[-0.074278935790062,0.0068149575963616,-0.010315360501409],[0.047909639775753,0.020429091528058,-0.013882788829505],[-0.010645192116499,0.044140428304672,0.0013378285802901]],[[-0.059788312762976,0.031043505296111,0.0025263605639338],[-0.02323304861784,0.043119262903929,-0.045030832290649],[0.082351997494698,0.029585095122457,0.057874083518982]],[[0.015022097155452,0.022944044321775,0.0420185290277],[0.040894098579884,-0.029261577874422,-0.032768677920103],[-0.051109123975039,-0.0056886025704443,0.091893717646599]],[[-0.042577512562275,-0.0073119113221765,-0.084314160048962],[0.022893907502294,0.034044213593006,0.021640572696924],[0.041168604046106,-0.039107915014029,-0.014468413777649]],[[0.023051250725985,0.012038417160511,-0.023309269919991],[0.027726029977202,-0.015333279967308,-0.025743290781975],[0.066379807889462,0.11697635054588,-0.02394131757319]],[[0.024907246232033,0.017132731154561,0.0090448493137956],[0.031865641474724,0.010707863606513,-0.028992157429457],[0.021218856796622,-0.025434577837586,-0.026718689128757]],[[-0.087872728705406,0.096599839627743,0.084033079445362],[-0.07255981862545,-0.024297965690494,0.045555934309959],[0.00027747818967327,-0.0047118836082518,0.052727978676558]],[[-0.042135093361139,0.018777629360557,0.059256192296743],[-0.0081822061911225,-0.060284428298473,0.054763168096542],[-0.057283110916615,-0.02341016381979,-0.014691134914756]],[[-0.0062680407427251,-0.050666268914938,0.047223042696714],[0.046531163156033,0.062598161399364,-0.032537307590246],[0.074978075921535,0.039034124463797,0.050848394632339]],[[-0.0042003290727735,-0.0012883163290098,0.031962655484676],[-0.011677105911076,-0.0082935811951756,-0.037834390997887],[0.027167784050107,0.013188580982387,0.034400805830956]],[[0.058248177170753,0.00016903114737943,-0.03802852705121],[0.04005191475153,0.04152562096715,-0.016482589766383],[0.017302725464106,0.057216580957174,0.040159955620766]],[[-0.028425253927708,0.0085528120398521,-0.00082627707161009],[0.092465065419674,0.040336575359106,0.010193322785199],[0.019509246572852,0.11045514047146,-0.059919565916061]],[[-0.061726428568363,0.030540971085429,-0.050655722618103],[-0.082040190696716,0.075108915567398,0.0048301545903087],[-0.078926466405392,0.023357896134257,0.0095726083964109]],[[0.047378931194544,0.010931494645774,0.0093304924666882],[-0.061724882572889,0.017475670203567,0.033201340585947],[-0.058755483478308,-0.037409406155348,0.061754748225212]],[[-0.083544887602329,-0.014136580750346,-0.019452061504126],[0.053551521152258,0.076699711382389,-0.0029540471732616],[-0.054413694888353,0.025628665462136,0.017697466537356]],[[-0.006682166364044,-0.041384428739548,-0.059701580554247],[0.020277122035623,-0.07942172139883,-0.12078703939915],[0.045414000749588,-0.05950939655304,-0.099524840712547]],[[0.021624639630318,-0.064440302550793,-0.0059404191561043],[-0.036788213998079,0.022127959877253,0.058595940470695],[0.023502558469772,0.021936930716038,-0.0084094032645226]],[[0.019501889124513,-0.022073861211538,0.028677452355623],[-0.0059800092130899,0.043606653809547,0.020080205053091],[0.0014263370539993,0.024672234430909,0.0422631688416]],[[-0.056405417621136,-0.0046028411015868,0.021874871104956],[0.026387449353933,0.028677973896265,0.057006627321243],[0.018058544024825,-0.036637175828218,-0.032679814845324]],[[0.064241856336594,0.073490709066391,0.048962570726871],[-0.0239566732198,-0.051703322678804,0.032855179160833],[-0.0029788818210363,0.02778753452003,-0.0052775260992348]],[[-0.033435516059399,0.0035629461053759,0.02827730961144],[-0.049805890768766,-0.070291429758072,-0.0026980761904269],[0.043417621403933,-0.059753559529781,-0.035450633615255]],[[-0.016158213838935,0.073525197803974,0.0027411782648414],[0.011933952569962,-0.024380018934608,0.018341867253184],[-0.040707211941481,0.0055547491647303,0.041071526706219]],[[0.019609458744526,0.070971570909023,0.024143556132913],[-0.03610922768712,0.051334522664547,0.01437424775213],[-0.064331509172916,0.045782368630171,-0.034605246037245]],[[0.01786613278091,0.045008271932602,0.071635775268078],[-0.052330020815134,-0.015800910070539,0.071213252842426],[-0.040345329791307,-0.012892363592982,0.032832391560078]],[[-0.0033120336011052,0.12445987761021,0.059968162328005],[-0.031998202204704,-0.035965137183666,0.053977645933628],[-0.021109268069267,0.063795678317547,0.042648613452911]],[[0.022705657407641,0.012297303415835,-0.023468839004636],[-0.0062881084159017,0.088944964110851,0.10308210551739],[0.016358520835638,0.004440841730684,0.0032374854199588]],[[0.070049546658993,0.03320200368762,-0.019441079348326],[-0.040490724146366,0.047642055898905,0.019031755626202],[-0.015031206421554,-0.046805735677481,-0.066536203026772]],[[-0.031503587961197,-0.022447427734733,-0.010118550620973],[0.021383050829172,-0.0042945602908731,0.069735370576382],[0.054800074547529,-0.065824054181576,0.018140651285648]],[[-0.0040630204603076,-0.017256449908018,-0.03447699919343],[0.022660955786705,-0.04229386523366,0.013493468984962],[-0.0038424495141953,-0.0040508355014026,0.03393991291523]],[[0.032889667898417,-0.0039971875958145,0.0232012886554],[0.028282821178436,-0.010394375771284,0.087039232254028],[0.082461044192314,0.022626338526607,-0.0040877237915993]],[[0.019556717947125,0.015121038071811,0.027543967589736],[0.035855252295732,0.0080627184361219,0.04120970889926],[-0.0076242052018642,-0.018149210140109,0.036359488964081]],[[0.066536463797092,0.044967498630285,0.0056458953768015],[0.03250715509057,0.044239152222872,0.041072160005569],[-0.049783196300268,0.004951152484864,0.069646716117859]],[[-0.010953164659441,0.05153176560998,-0.044519495218992],[-0.0065078306943178,0.019337229430676,-0.048184458166361],[0.032283585518599,0.027218388393521,-0.058295287191868]],[[-0.0083361966535449,0.02292669378221,-0.001641197828576],[0.079909555613995,-0.0069504459388554,-0.018369097262621],[0.043927099555731,0.0028008427470922,0.034837070852518]],[[0.064452193677425,-0.0099084684625268,0.039434976875782],[-0.042222902178764,-0.043437425047159,-0.022688111290336],[0.042625319212675,0.12131936848164,-0.011229835450649]],[[-0.021068193018436,-0.039334125816822,0.002108610002324],[0.090055525302887,0.047268141061068,-0.00039553709211759],[-0.079151384532452,0.016305819153786,0.08590792119503]],[[-0.078354872763157,0.0010713500669226,0.035583090037107],[0.033766321837902,-0.017026657238603,0.053110096603632],[0.10496290028095,-0.047098249197006,0.010484679602087]],[[0.0067582628689706,0.033272359520197,-0.034586429595947],[0.071587383747101,-0.0052326139993966,0.025178963318467],[0.031451411545277,-0.0088438708335161,-0.092384763062]],[[0.01068212185055,-0.053608249872923,0.076623447239399],[-0.025707434862852,0.073877647519112,-0.0060767084360123],[-0.047245290130377,0.077954448759556,0.014642121270299]],[[-0.012798963114619,0.053549714386463,-0.014729918912053],[0.022826347500086,0.0063636051490903,0.02457957342267],[0.023932075127959,0.0046399608254433,0.027877392247319]],[[0.043170861899853,0.026540728285909,-0.0057756882160902],[-0.018354285508394,0.033061239868402,0.053776726126671],[0.021135300397873,-0.022062107920647,0.0016882891068235]],[[0.01067659445107,-0.011475569568574,0.035092677921057],[0.0015442166477442,-0.093337744474411,0.032379291951656],[-0.01831179112196,0.01444560661912,-0.11558915674686]],[[0.065587259829044,-0.068069793283939,-0.05772477760911],[-0.01234857738018,0.067762330174446,0.022713556885719],[0.0088395774364471,0.0088583314791322,0.075107917189598]],[[-0.078030712902546,-0.029795674607158,0.072441399097443],[0.019052924588323,-0.021893596276641,0.0088703334331512],[0.022083230316639,0.0075661023147404,0.0032724884804338]],[[0.037248782813549,0.083834029734135,-0.0089079914614558],[0.1036484092474,0.015257618390024,0.007921420969069],[0.0535555370152,-0.030165754258633,-0.026354653760791]],[[-0.040505733340979,-0.00046776063391007,0.065414533019066],[0.021575983613729,-0.084182634949684,-0.038368374109268],[0.040221653878689,0.085472002625465,0.084326729178429]],[[0.018725425004959,0.029950316995382,0.041913092136383],[0.027746088802814,0.0062216185033321,0.015946686267853],[0.033706322312355,-0.061879049986601,-0.062758959829807]],[[0.017318055033684,0.069832265377045,0.0071569681167603],[-0.027093399316072,-0.015931401401758,-0.025673821568489],[0.013891090638936,0.0015675332397223,0.051771190017462]],[[0.028403539210558,-0.0049684043042362,-0.049554370343685],[0.011587211862206,-0.043048284947872,0.04938755184412],[0.023354085162282,-0.0090870494022965,0.018051400780678]],[[0.0055672870948911,0.021612323820591,0.020145181566477],[-0.062940143048763,0.041323035955429,-0.018098315224051],[0.033359479159117,-0.0087849916890264,0.054376564919949]],[[0.00020286027574912,0.037444204092026,0.04057452455163],[-0.053668111562729,-0.038241475820541,-0.011768126860261],[-0.03151722624898,0.078113257884979,0.064491406083107]],[[-0.032330468297005,-0.034624416381121,-0.0010846151271835],[-0.0071240849792957,-0.015599066391587,-0.055110834538937],[-0.063246533274651,0.017726758494973,0.022028421983123]],[[-0.035202357918024,-0.0051876036450267,0.0061847399920225],[-0.036041848361492,0.01321691647172,-0.039066508412361],[0.049670577049255,0.035602781921625,0.029277916997671]],[[0.10574566572905,0.041057284921408,-0.0031861555762589],[0.019052773714066,0.052753318101168,-0.076075196266174],[0.02715359069407,-0.057147435843945,-0.03231867402792]],[[0.034896869212389,0.002560100518167,0.0016043841606006],[-0.038512475788593,0.068233825266361,-0.0208436883986],[0.006773620378226,0.036851193755865,0.0015117307193577]],[[-0.064190626144409,0.065971449017525,0.052547805011272],[0.051384501159191,0.016380654647946,-0.066785633563995],[-0.015477412380278,-0.026733813807368,-0.013311914168298]],[[-0.055905170738697,-0.013254786841571,-0.0046019689179957],[-0.029548736289144,0.027196425944567,0.023919213563204],[-0.0098737869411707,0.0044306679628789,0.10015947371721]],[[-0.024538978934288,-0.014838563278317,0.019502533599734],[0.029211014509201,0.017470037564635,0.05620900541544],[-0.021740335971117,-0.029828695580363,-0.0054526096209884]],[[0.035260982811451,0.047711543738842,-0.10122707486153],[0.086715921759605,-0.0007092782179825,0.09078560769558],[-0.039612736552954,0.0015741579700261,-0.05548357591033]],[[-0.0064694629982114,0.0075391340069473,-0.0041905678808689],[0.025015966966748,0.0086870901286602,0.04710927605629],[0.025074621662498,-0.016365898773074,0.028307208791375]],[[0.012361879460514,-0.017875231802464,-0.0259192828089],[0.0093436650931835,-0.0061943959444761,0.033172573894262],[0.00035214534727857,0.039559088647366,0.011832996271551]],[[0.0027068452909589,-0.0016111155273393,0.039186730980873],[0.023124601691961,0.041830241680145,0.027784774079919],[0.013305012136698,0.0059980237856507,-0.010159245692194]],[[-0.0099440282210708,0.0081337569281459,0.059983018785715],[0.0059100571088493,0.00060445861890912,-0.060742117464542],[0.020465712994337,-0.0037391912192106,-0.011133630760014]],[[0.037266366183758,0.036138709634542,0.026927780359983],[0.034901421517134,-0.026846813037992,0.03734078258276],[-0.065819218754768,-0.0027113815303892,0.020086193457246]],[[0.044233728200197,-0.011342532001436,-0.017659343779087],[0.0011531340423971,0.0012822551652789,0.060608483850956],[-0.00092959869652987,0.079561926424503,-0.033386413007975]],[[-0.025088207796216,0.095534212887287,-0.02532703615725],[0.01786214672029,0.018573628738523,0.034850392490625],[0.010096371173859,0.0080158561468124,0.064708039164543]],[[-0.023272870108485,-0.028335073962808,-0.056633017957211],[0.028803655877709,0.040129486471415,0.0023890177253634],[0.055498614907265,-0.017360184341669,0.0075253914110363]],[[0.072683416306973,-0.02106031216681,-0.088330037891865],[0.047340959310532,-0.01632815413177,-0.018615460023284],[0.043154556304216,-0.016445923596621,-0.027229411527514]],[[0.0091710491105914,0.044030964374542,0.041196033358574],[0.058972660452127,-0.0072081158868968,0.046983785927296],[0.0041297529824078,0.011498638428748,-0.0054930462501943]],[[0.047815833240747,0.041446756571531,0.046779304742813],[0.014433902688324,0.004347862675786,-0.0090697044506669],[0.067641660571098,0.0054855481721461,0.029867863282561]],[[0.042041704058647,0.029796054586768,-0.020122325047851],[0.038047675043344,0.0041273212991655,0.039848014712334],[-0.062058046460152,0.017103660851717,0.072362706065178]],[[0.069579251110554,0.044976782053709,-0.030229175463319],[0.0112658245489,-0.1041759327054,0.093733370304108],[0.032557047903538,-0.0023942866828293,0.018589509651065]],[[-0.024909203872085,0.012218462303281,0.010746140964329],[0.012228493578732,-0.044374939054251,0.066221602261066],[0.025176890194416,-0.016892049461603,0.012367601506412]],[[-0.021236754953861,-0.016561323776841,0.030676789581776],[-0.014186440967023,0.075212001800537,-0.028385493904352],[-0.032945577055216,0.014338125474751,0.03964227437973]],[[0.020040871575475,-0.1099451482296,0.043935295194387],[-0.011299316771328,0.02533782273531,0.024215491488576],[-0.013867490924895,0.054331533610821,0.026086524128914]],[[-0.0085634207352996,0.0032500820234418,-0.032985381782055],[0.072061017155647,0.023354049772024,0.011232960037887],[-0.024230210110545,-0.035190686583519,-0.022240472957492]],[[-0.045213095843792,0.027322415262461,0.055074460804462],[0.067810326814651,0.049577433615923,-0.010849259793758],[0.049876812845469,0.021254720166326,-0.028658932074904]],[[0.064775712788105,-0.010637652128935,0.043153401464224],[-0.03401967138052,0.014410752803087,-0.059301480650902],[0.021490713581443,0.0091139283031225,-0.021126236766577]],[[-0.048125054687262,-0.075518243014812,0.0092111472040415],[0.1001297980547,-0.023683946579695,0.02463087439537],[0.12139722704887,-0.077263049781322,0.042222518473864]],[[0.069231197237968,-0.047163274139166,-0.052496574819088],[-0.037665702402592,0.023809814825654,-0.055965326726437],[-0.014947080053389,-0.052232213318348,0.065124802291393]],[[0.014975320547819,0.10882934182882,0.050362326204777],[-0.053969271481037,-0.00088808196596801,0.022582760080695],[0.084568202495575,0.055069785565138,-0.091901905834675]],[[0.052634257823229,-0.036341290920973,0.0029091502074152],[-0.021797215566039,0.030126169323921,0.018908876925707],[0.053812678903341,-0.020089821889997,-0.082790844142437]],[[-0.041803106665611,0.038350988179445,0.013199941255152],[0.0057894913479686,0.070353344082832,0.032125514000654],[0.078068345785141,-0.028565576300025,-0.03710601106286]],[[0.021112011745572,0.010805334895849,-0.050417479127645],[0.061181586235762,-0.011455051600933,-0.033490050584078],[0.043683454394341,0.018468091264367,-0.041267104446888]],[[-0.0027463608421385,0.01067253574729,0.0005295078153722],[-0.016541784629226,0.018502339720726,-0.0069045312702656],[-0.081523612141609,0.072838306427002,-0.037445779889822]],[[-0.034410268068314,0.06965959072113,0.050150372087955],[0.011063740588725,0.011852282099426,0.042627591639757],[0.063173063099384,0.066077813506126,0.078817993402481]],[[-0.011528175324202,0.017904562875628,-0.021264124661684],[-0.01078028883785,-0.0515440069139,-0.0071168867871165],[-0.005675433203578,0.057162143290043,0.0066693569533527]],[[0.065171286463737,-8.6711130279582e-05,-0.036046821624041],[-0.004772711545229,0.013921735808253,-0.0057651815004647],[-0.0063412366434932,-0.03799394890666,-0.0071308291517198]],[[-0.010967131704092,0.060860067605972,0.066477872431278],[0.051453556865454,0.0020588333718479,0.0079501047730446],[0.019632501527667,-0.0086681386455894,-0.019926214590669]],[[-0.03354075923562,0.0016174254706129,0.04173855856061],[-0.00053191080223769,0.05139684304595,0.032109867781401],[0.019127255305648,0.048300210386515,0.040516875684261]],[[0.048852656036615,0.018777940422297,-0.068299762904644],[-0.0013411401305348,0.016539441421628,0.0046210391446948],[-0.06635469943285,-0.032153982669115,0.018858913332224]],[[-0.049416910856962,0.045661266893148,0.097345411777496],[0.012636640109122,0.049201976507902,0.055362481623888],[0.018724964931607,0.069990299642086,0.038551978766918]],[[-0.012037119828165,-0.042948976159096,0.031999722123146],[0.0073357089422643,-0.0001495756150689,0.034132435917854],[-0.0074756611138582,0.027282815426588,-0.03544033691287]],[[-0.043199554085732,0.036873914301395,0.075392827391624],[-0.027424670755863,0.0029199891723692,0.004289903678],[0.03735639154911,0.020313328132033,0.022344820201397]],[[0.0054720318876207,-0.014465181156993,-0.003221069695428],[0.033998873084784,-0.004952774848789,-0.012801884673536],[-0.00069962319685146,0.013896028511226,0.032883808016777]],[[0.048102997243404,0.0086898822337389,-0.009754803031683],[-0.086029537022114,0.048876605927944,0.010313801467419],[-0.029860701411963,-0.011370706371963,0.0028206189163029]],[[-0.035317536443472,-0.011578385718167,-0.00032068576547317],[-0.044937003403902,-0.029738448560238,-0.0088361399248242],[0.050471417605877,0.027140690013766,-0.018126184120774]],[[0.0070869885385036,-0.029466081410646,-0.021623319014907],[0.019984394311905,0.0019986550323665,-0.0064190654084086],[0.031613610684872,-0.035168681293726,-0.034749552607536]],[[0.017100870609283,0.030644966289401,-0.092696987092495],[0.016457483172417,-0.0060674580745399,0.070247329771519],[0.0035481788218021,0.01131936814636,-0.0029253428801894]],[[0.037400908768177,0.029015488922596,-0.0077625173144042],[0.015665832906961,-0.068270690739155,0.0095441844314337],[-0.010035881772637,0.012769065797329,4.273316153558e-05]],[[0.023967860266566,-0.092101968824863,-0.046879570931196],[-0.041332561522722,0.010465344414115,0.013680251315236],[-0.022199776023626,-0.0065139280632138,-0.020225701853633]],[[0.10436450690031,0.029992742463946,0.014364323578775],[-0.037124920636415,-0.011412709951401,-0.059661451727152],[0.035732835531235,-0.011107945814729,-0.016548689454794]],[[0.0043431771919131,0.025914466008544,0.007443833630532],[0.031994387507439,-0.03051783144474,-0.074181489646435],[-0.034026354551315,0.010500321164727,-0.010061368346214]],[[-0.03729198500514,0.078084766864777,-3.760730396607e-05],[0.033920414745808,0.006554005201906,-0.0096287345513701],[-0.015888974070549,0.014595004729927,0.023841850459576]],[[0.026248794049025,-0.075911611318588,0.0026700245216489],[-0.051417622715235,0.056437861174345,-0.0080429324880242],[0.072659701108932,-0.0046038380824029,-0.012697477824986]],[[-0.12493401765823,-0.030063144862652,0.015234745107591],[-0.0024404253344983,0.065685875713825,-0.0042114621028304],[0.055547829717398,-0.030139844864607,0.010878961533308]],[[-0.010100747458637,0.0090377470478415,-0.0060226358473301],[-0.019618790596724,0.024078451097012,0.040746178478003],[-0.033332228660583,0.023436784744263,0.058796357363462]],[[0.060506094247103,-0.025509852916002,0.0743657797575],[-0.018645796924829,-0.027220390737057,0.062934547662735],[-0.032235618680716,0.018643438816071,0.030075741931796]],[[0.024118082597852,0.014897438697517,0.027764180675149],[-0.036773163825274,0.016366029158235,-0.035309318453074],[0.0047527980059385,0.045774187892675,0.044647570699453]],[[-0.041238579899073,0.020472520962358,-0.013316557742655],[0.034748896956444,0.018508186563849,0.020625287666917],[0.027361590415239,0.080817483365536,-0.0072082160040736]],[[-0.014444197528064,0.030876288190484,-0.03655806183815],[-0.076908282935619,0.012129568494856,0.048765834420919],[-0.0073710726574063,-0.040630374103785,0.020675973966718]],[[0.02136355638504,-0.028362065553665,-0.043190322816372],[-0.016554357483983,0.022642670199275,-0.0051654670387506],[0.070722013711929,0.017281252890825,-0.021467544138432]],[[0.013376148417592,0.017148436978459,0.040959391742945],[0.015784695744514,0.019961992278695,-0.069352142512798],[0.0033774222247303,0.083264999091625,0.012449922971427]],[[0.012227899394929,-0.010804802179337,0.044630188494921],[-0.032160099595785,-0.035862069576979,-0.036019578576088],[0.0059240362606943,0.011805387213826,0.010639005340636]],[[0.042719960212708,0.034760598093271,-0.067690193653107],[-0.068981789052486,-0.045253489166498,-0.049235679209232],[0.029030172154307,0.020812086760998,-0.017463365569711]],[[-0.065185338258743,0.062089405953884,0.081835933029652],[0.047001156955957,0.0089899748563766,0.033107683062553],[-0.00075554224895313,0.067060649394989,0.0058524431660771]],[[-0.0187275018543,-0.026592094451189,0.027542186900973],[0.04464178532362,0.012653573416173,-0.07695896178484],[-0.022002037614584,-0.0065065324306488,-0.012488364242017]],[[0.11695247888565,0.075918294489384,-0.076782919466496],[0.020399652421474,0.090708009898663,0.0064035910181701],[0.013437015935779,0.077914446592331,0.033510193228722]],[[-0.021533938124776,-0.040379963815212,0.15139579772949],[0.0068997773341835,0.019254330545664,-0.030154818668962],[-0.050210148096085,0.072829313576221,0.061169315129519]],[[0.0012499961303547,0.0038408304098994,0.062096256762743],[0.013472028076649,0.048025798052549,-0.036304593086243],[0.025608265772462,0.069379813969135,0.017187483608723]]],[[[0.025551160797477,-0.028509782627225,-0.016684120520949],[0.098539851605892,0.0932597219944,-0.02677652798593],[-0.031311295926571,0.12409836798906,0.025936841964722]],[[0.0076856436207891,0.049573890864849,-0.008470568805933],[0.036302883177996,-0.040389202535152,-0.039595354348421],[-0.035251118242741,0.040456186980009,-0.012011219747365]],[[0.077612206339836,-0.0030393579509109,0.059384886175394],[0.080706752836704,0.0035721573513001,0.058906700462103],[0.036609221249819,-0.062735006213188,0.034696698188782]],[[-0.025123065337539,0.084944330155849,0.021326296031475],[-0.006178988609463,-0.010221261531115,0.057460587471724],[-0.0086719356477261,-0.0097556943073869,0.044710580259562]],[[-0.021972674876451,-0.046292886137962,0.068013146519661],[-0.013392884284258,-0.029805138707161,-0.027528490871191],[-0.0019391478272155,0.080604203045368,-0.014058295637369]],[[-0.02114736661315,0.047288447618484,-0.019707815721631],[0.087483786046505,0.049624614417553,0.052358873188496],[0.034323647618294,0.038123320788145,-0.0727269500494]],[[0.068750880658627,-0.034922689199448,0.088133089244366],[0.034679088741541,0.040630154311657,-0.0083680711686611],[0.046032104641199,-0.023942489176989,0.038736719638109]],[[0.035178143531084,0.10759299248457,-0.027571445330977],[0.033117178827524,-0.038215577602386,0.11657348275185],[0.017795899882913,0.067626163363457,0.0048922370187938]],[[0.037983279675245,-0.048709951341152,0.062558516860008],[0.064490124583244,-0.0090306382626295,0.069573767483234],[0.12098005414009,0.043761897832155,0.065426722168922]],[[0.081689111888409,0.19948282837868,0.10380211472511],[-0.042319353669882,0.098924241960049,0.040490821003914],[0.085504226386547,0.17901185154915,0.12626454234123]],[[0.077811911702156,0.021968971937895,-0.077907100319862],[-0.026318173855543,-0.0019417802104726,-0.010599207133055],[-0.0026971360202879,0.019094670191407,0.10490822046995]],[[-0.0087389871478081,0.0028437913861126,0.070037856698036],[0.064090251922607,0.074289225041866,0.0034521180205047],[0.0042890491895378,-0.034281972795725,0.094501309096813]],[[0.044350255280733,-0.00058323499979451,0.064218461513519],[0.0043315785005689,0.032536968588829,-0.067052811384201],[-0.035880520939827,-0.0048016998916864,0.049898590892553]],[[0.012693739496171,-0.0075967176817358,-0.010565666481853],[0.024972228333354,-0.02273391187191,0.069287300109863],[-0.034476388245821,-0.0023053216282278,0.026697788387537]],[[0.055154550820589,0.031155928969383,0.24517591297626],[-0.0086495876312256,-0.025799132883549,0.021209470927715],[0.047246009111404,0.079553470015526,0.092514216899872]],[[-0.028829917311668,0.06712794303894,-0.15144275128841],[-0.015453436411917,0.015583048574626,-0.00035844626836479],[-0.070645734667778,0.019282029941678,-0.0022126568946987]],[[-0.021307984367013,-0.045015096664429,-0.090573601424694],[-0.044914674013853,-0.073045656085014,-0.029550621286035],[-0.041083943098783,-0.013836288824677,0.054598186165094]],[[0.11290959268808,-0.050510849803686,-0.012360522523522],[-0.0068069691769779,0.03421363979578,-0.022841207683086],[-0.007646543905139,0.086658127605915,-0.023041633889079]],[[0.07359667122364,-0.077265009284019,-0.017170641571283],[-0.039747379720211,0.083770185709,0.026834938675165],[-0.043165005743504,-0.045612562447786,0.0049806674942374]],[[0.039373409003019,0.042527910321951,0.0078153796494007],[-0.007512966170907,-0.0048967278562486,0.050332009792328],[-0.0089401099830866,0.014332209713757,0.093813665211201]],[[-0.0024678737390786,0.034930985420942,-0.030913034453988],[0.032311674207449,-0.0072637987323105,0.11594665050507],[-0.047351814806461,0.098949894309044,0.026324743404984]],[[0.037188977003098,0.022633956745267,0.023410135880113],[0.074964001774788,0.12273877859116,-0.022968588396907],[0.076267823576927,0.10451313108206,-0.003020687494427]],[[-0.041514471173286,-0.028200289234519,0.086861796677113],[-0.03184675052762,-0.013257022947073,0.0090121058747172],[-0.045874610543251,-0.030349003151059,0.057199634611607]],[[-0.013768199831247,-0.029147151857615,0.086894161999226],[-0.053865920752287,-0.052022431045771,-0.034537687897682],[-0.063442900776863,-0.047764755785465,0.026520932093263]],[[0.089586585760117,0.0026259915903211,0.080184981226921],[0.029406975954771,-0.00035556210787036,-0.03657728433609],[0.13080036640167,0.12155672907829,0.11005821079016]],[[0.0067487000487745,0.023485116660595,0.0036618805024773],[0.033374600112438,-0.022933311760426,-0.012010633945465],[0.013104312121868,0.0063947774469852,-0.062844559550285]],[[0.076896272599697,0.0037886158097535,0.045274496078491],[-0.0001656345120864,0.032195456326008,-0.047619629651308],[0.026209121569991,-0.050922241061926,0.016515329480171]],[[-0.04086085781455,-0.014773216098547,-0.02879367955029],[-0.025034746155143,0.067503847181797,-0.033947169780731],[0.038726072758436,0.026492120698094,0.063431449234486]],[[0.020311342552304,-0.019717564806342,0.14019265770912],[-0.06951168179512,0.034787375479937,0.05332974717021],[-0.01217239163816,0.037187952548265,0.0089614884927869]],[[0.10596477240324,-0.0022667506709695,-0.049800045788288],[0.0070945834740996,0.06782802939415,0.13918805122375],[-0.019096054136753,0.094478063285351,0.045678794384003]],[[0.071625202894211,0.047752279788256,0.023891642689705],[-0.009185129776597,-0.076130658388138,-0.00097691733390093],[0.10663355141878,-0.049538299441338,0.068535335361958]],[[-0.085620753467083,0.02403960749507,0.022663194686174],[0.070727542042732,-0.014391515403986,0.091053687036037],[0.017134534195065,-0.020222775638103,-0.0012648798292503]],[[0.022152623161674,0.1051747277379,0.01762400008738],[-0.0079792225733399,0.024894261732697,0.065071724355221],[0.095271445810795,0.035827029496431,-0.0026248006615788]],[[0.091270513832569,-0.0036501509603113,0.089440047740936],[-0.0027012645732611,0.022109331563115,-0.0043866154737771],[0.062063317745924,0.054571628570557,0.058571733534336]],[[0.0031936662271619,0.081965930759907,-0.037039216607809],[0.032716829329729,0.071489244699478,0.033985026180744],[0.066817939281464,0.018330061808228,-0.025927107781172]],[[0.05644866079092,0.0047201570123434,-8.1809266703203e-05],[-0.011710531078279,-0.01320032030344,-0.049811445176601],[-0.015523863956332,-0.020797139033675,0.040710683912039]],[[0.014788592234254,0.001291177701205,-0.040044024586678],[-0.0073293298482895,-0.020153935998678,0.018475398421288],[-0.014549891464412,0.035283323377371,-0.025638751685619]],[[0.057518761605024,0.054568149149418,-0.0078687407076359],[0.02811536565423,-0.04589119553566,0.097152672708035],[0.065322078764439,-0.027627538889647,0.031093586236238]],[[-0.0073076928965747,-0.047413807362318,-0.026363553479314],[-0.075707845389843,0.0064814337529242,-0.15756577253342],[-0.02438891492784,-0.0210155043751,0.027627792209387]],[[0.01034370996058,0.057004868984222,0.067118175327778],[0.03843567147851,-0.0087717976421118,0.021904937922955],[-0.010346461087465,0.071474507451057,-0.0098589351400733]],[[-0.058378774672747,-0.049006476998329,-0.073770381510258],[-0.097330957651138,0.026565438136458,0.025432964786887],[-0.11920972168446,-0.00025740900309756,-0.032327804714441]],[[0.018564969301224,0.0082870721817017,-0.017276937142015],[-0.097227059304714,-0.017722439020872,0.087997406721115],[-0.067054100334644,0.01191574614495,-0.017382986843586]],[[-0.0031515636947006,0.045489657670259,0.14974151551723],[0.022258054465055,0.023833844810724,0.056977540254593],[0.037480585277081,-0.045442424714565,0.068768985569477]],[[0.0045753661543131,-0.012145824730396,-0.046543393284082],[0.029395679011941,-0.048234429210424,-0.069395169615746],[-0.0069048418663442,0.046469181776047,-0.0081929229199886]],[[-0.042543072253466,-0.0027076213154942,-0.053539954125881],[0.0030336445197463,0.031492099165916,0.017619313672185],[0.040299832820892,0.1808355897665,0.033633504062891]],[[0.0065624229609966,0.05177479237318,-0.0028308229520917],[0.04539417475462,0.025405464693904,0.098925530910492],[0.061305671930313,0.049318999052048,0.027942759916186]],[[0.083513386547565,0.016247829422355,0.048355467617512],[0.054553810507059,0.066501796245575,0.067419528961182],[-0.0033660947810858,0.021876759827137,-0.050810735672712]],[[0.015026681125164,-0.020235011354089,0.033919464796782],[-0.048451866954565,0.063411578536034,-0.0087925558909774],[0.04571421071887,0.025966772809625,0.037694912403822]],[[-0.017248228192329,0.096462354063988,-0.045762557536364],[-0.021052051335573,0.0058468668721616,0.031052859500051],[-0.037088729441166,0.019934136420488,0.077532753348351]],[[-0.0036291182041168,0.037409838289022,0.03366382047534],[0.00440518790856,0.0090305646881461,-0.0079123182222247],[0.051562372595072,0.048742119222879,0.013815914280713]],[[-0.065100751817226,0.0062090661376715,-0.034862708300352],[-0.00024493437376805,0.002778987865895,0.014611265622079],[-0.081306956708431,-0.049513459205627,-0.012765358202159]],[[8.5851686890237e-05,0.038384061306715,0.020271128043532],[-0.037569779902697,0.068349197506905,0.045834694057703],[-0.017695052549243,-0.058203767985106,-0.030117711052299]],[[-0.014202245511115,-0.044676080346107,-0.0094911744818091],[-0.031874991953373,-0.077918827533722,0.033625312149525],[0.019758416339755,0.027026947587729,0.056116443127394]],[[-0.037697780877352,-0.020094024017453,-0.02009604871273],[0.019981373101473,0.077758215367794,0.06836973130703],[-0.036649759858847,0.0059531452134252,0.0066001061350107]],[[0.041395649313927,0.031909350305796,0.034308150410652],[-0.095489904284477,-0.02732670865953,-0.019850324839354],[-0.0084528746083379,0.0017899498343468,0.013923234306276]],[[-0.050594035536051,-0.0052294083870947,0.086107887327671],[0.0088255694136024,0.043482165783644,0.012114455923438],[0.02623001486063,0.030161740258336,0.08790297806263]],[[0.10311895608902,0.065377101302147,0.054005738347769],[0.026225930079818,0.01374850794673,-0.069869004189968],[0.055779211223125,0.018161593005061,0.10918378829956]],[[0.022975582629442,0.015311609953642,0.023244809359312],[-0.012912889011204,0.047656688839197,0.050434961915016],[-0.017568474635482,0.047326114028692,-0.078860580921173]],[[-0.098348945379257,0.007055688649416,0.064305260777473],[0.01872705668211,-0.0087854508310556,-0.027156729251146],[0.022202188149095,-0.039148487150669,0.036199051886797]],[[0.0092546744272113,-0.0014369989512488,0.043631564825773],[0.026622446253896,0.0029684791807085,0.0094525367021561],[-0.018343240022659,-0.018387915566564,0.030462151393294]],[[0.00066539837280288,0.065909415483475,0.040065754204988],[0.0395736284554,0.051985878497362,0.057508405297995],[-0.03306969255209,0.018819874152541,0.026613086462021]],[[-0.035482950508595,0.096452474594116,-0.046351056545973],[-0.0046238945797086,-0.066551551222801,-0.023359963670373],[0.01974043995142,-0.050078064203262,0.061373442411423]],[[-0.053357526659966,0.011659526266158,0.040143333375454],[-0.029503295198083,0.031151747331023,0.010245095938444],[-0.010255021974444,-0.0041122990660369,0.054060768336058]],[[0.027012478560209,-0.0254124738276,-0.042095601558685],[-0.055854070931673,0.030354347079992,-0.020878871902823],[0.015106687322259,-0.028367424383759,0.027593465521932]],[[0.018740171566606,-0.054119236767292,-0.00052623014198616],[-0.017727434635162,-0.079831995069981,-0.074032515287399],[0.059474151581526,-0.033159039914608,-0.051070615649223]],[[-0.00091253075515851,0.094804026186466,0.018469918519258],[0.0007747354102321,-0.033745843917131,0.017074504867196],[-0.10453806817532,0.086857244372368,-0.010163132101297]],[[-0.044343825429678,-0.0082785291597247,-0.032864551991224],[0.071819715201855,-0.00065530173014849,-0.0076240468770266],[0.052540943026543,0.071658551692963,0.020970925688744]],[[-0.015293918550014,-0.0048299483023584,-0.009055133908987],[0.082918025553226,-0.00096238742116839,0.033165112137794],[0.12015590816736,-0.0090686902403831,-0.082020148634911]],[[0.015848137438297,0.028773093596101,-0.071114540100098],[-0.056333217769861,0.014490460976958,0.083378523588181],[-0.050786703824997,0.035886310040951,-0.025456698611379]],[[0.020906925201416,-0.05200932174921,0.078172087669373],[0.016235342249274,0.12206276506186,-0.031774040311575],[-0.02883637137711,-0.010378769598901,-0.025221800431609]],[[-0.0086474316194654,-0.01937491632998,-0.09018087387085],[-0.042331755161285,-0.036374967545271,0.02913798764348],[0.034744653850794,-0.060689747333527,-0.034678526222706]],[[0.055530235171318,-0.001076525892131,-0.050639554858208],[0.026303803548217,0.081808403134346,-0.034922622144222],[-0.0013097453629598,0.046964541077614,0.0756845921278]],[[-0.0025068081449717,-0.030460925772786,-0.025047702714801],[-0.0095964539796114,0.047010567039251,0.02198108099401],[0.011641670018435,0.015923315659165,0.11375952512026]],[[0.0050763958133757,0.015208886004984,-0.0026110303588212],[-0.026264492422342,0.015756089240313,0.070584908127785],[0.1036089733243,0.0030560612212867,-0.0062796678394079]],[[0.025790369138122,0.030177913606167,-0.0066166445612907],[-0.019780322909355,-0.010411910712719,-0.037275228649378],[-0.028645174577832,-0.036150150001049,-0.0070743914693594]],[[0.029261749237776,0.0019423132762313,0.036318857222795],[0.011569751426578,0.051290761679411,0.039993844926357],[0.016150437295437,-0.075453974306583,-0.083925850689411]],[[-0.05159904435277,0.03851081430912,0.018595695495605],[0.072111211717129,-0.029552828520536,0.012229595333338],[0.046674937009811,-0.018217923119664,0.036415938287973]],[[0.023485202342272,0.11256667226553,-0.059091571718454],[0.030829887837172,0.071498945355415,0.033046212047338],[0.10281256586313,0.033062115311623,0.01940587349236]],[[-0.014983612112701,0.026352312415838,0.054766923189163],[0.050767537206411,0.00041215415694751,0.076393969357014],[0.083248883485794,0.029921943321824,-0.0070962808094919]],[[0.032625094056129,0.0049998057074845,-0.055801659822464],[0.0045578135177493,-0.024611195549369,0.10560894012451],[-0.079871334135532,0.047840945422649,0.017451787367463]],[[0.010404199361801,0.03509183973074,-0.015421012416482],[0.052381750196218,-0.022525718435645,-0.043915536254644],[0.029732475057244,-0.045688845217228,0.019797585904598]],[[0.050177607685328,0.029766637831926,-0.057541828602552],[0.018109129741788,-0.069094128906727,0.029771247878671],[0.012958912178874,0.00037261290708557,-0.037097550928593]],[[-0.027346672490239,-0.038893148303032,-0.0070751300081611],[0.00024571813992225,-0.064260207116604,-0.061581213027239],[0.0970663651824,0.0092235971242189,-0.0057462304830551]],[[-0.054029792547226,-0.0063049891032279,-0.0028330013155937],[-0.0059698661789298,0.016706224530935,0.069776073098183],[0.050981678068638,0.084924392402172,-0.039352923631668]],[[-0.012230828404427,0.11053483188152,0.041631333529949],[-0.0044600372202694,0.092108145356178,-0.0048394021578133],[0.026513155549765,0.031613308936357,0.074725821614265]],[[-0.11041049659252,-0.016811951994896,0.058109555393457],[-0.061783470213413,-0.095921777188778,-0.041595790535212],[-0.025166561827064,-0.048175252974033,-0.04942811653018]],[[0.040104269981384,0.029769217595458,0.13739286363125],[-0.029430344700813,-0.029049562290311,-0.050388529896736],[0.0030163964256644,0.064072839915752,-0.0134735153988]],[[0.037774048745632,0.024679433554411,0.020055990666151],[0.0022389143705368,-0.025942452251911,0.02629572711885],[-0.046723201870918,0.04943323135376,0.048053838312626]],[[-0.020267318934202,-0.081754103302956,0.040281217545271],[-0.020643020048738,0.0083488440141082,0.029660293832421],[-0.0085544120520353,-0.0072837830521166,0.002314668148756]],[[0.047552816569805,-0.055993527173996,0.038370713591576],[-0.0090632727369666,0.020580714568496,-0.063540562987328],[-0.047495625913143,0.040244869887829,-0.022515207529068]],[[0.073889508843422,0.053422845900059,0.023304488509893],[0.00053221039706841,0.023946434259415,-0.0053815273568034],[0.010968467220664,-0.0051303817890584,-0.034473590552807]],[[-0.0072123394347727,0.019010907039046,0.019642805680633],[0.041330981999636,-0.027333155274391,-0.022251224145293],[0.01971310377121,0.010231323540211,-6.4638748881407e-05]],[[-0.039025079458952,-0.028504593297839,0.054168939590454],[-0.027407804504037,0.012022250331938,0.062776178121567],[0.051068607717752,-0.051850311458111,0.047558967024088]],[[-0.010182270780206,0.10410559922457,0.076000966131687],[-0.058347620069981,-0.09215484559536,0.0028986542019993],[0.10059022158384,0.0077183982357383,-0.046109318733215]],[[-0.010773551650345,0.0047927089035511,0.001675363862887],[0.088175907731056,0.050584878772497,-0.0013583773979917],[-0.033146716654301,0.0028148340061307,0.10609544813633]],[[0.065932668745518,0.097321584820747,0.090784266591072],[0.0091570047661662,0.051624089479446,-0.028054213151336],[0.083129286766052,0.12095404416323,-0.0067201759666204]],[[-0.025841373950243,0.0041198856197298,-0.011962742544711],[0.026391671970487,-0.029357396066189,-0.09749811142683],[-0.031313724815845,0.091172270476818,-0.018383115530014]],[[-0.094037987291813,0.06920026242733,0.097693271934986],[-0.070214562118053,0.054126884788275,-0.059317752718925],[0.058661486953497,0.047193679958582,-0.056705817580223]],[[0.069008581340313,-0.052569422870874,0.01755596883595],[-0.055084075778723,-0.006172985304147,0.092423535883427],[0.028097901493311,0.021344682201743,0.0066596283577383]],[[0.034649338573217,0.014149713329971,0.083029188215733],[-0.02588502690196,0.01612514257431,0.038392409682274],[-0.083981864154339,-0.014772437512875,0.045823615044355]],[[0.084500625729561,-0.022295784205198,0.026364414021373],[0.045283131301403,-0.065633796155453,0.084549896419048],[-0.0083194524049759,-0.063942492008209,-0.012925465591252]],[[0.042032934725285,0.10611760616302,0.12190102040768],[0.065777778625488,0.10984795540571,0.042529311031103],[0.03874185308814,0.036944780498743,0.050867326557636]],[[-0.068167962133884,0.075055688619614,0.028276974335313],[-0.030491461977363,-0.012119057588279,0.058895897120237],[0.078390933573246,0.00096540432423353,-0.014979337342083]],[[0.033529303967953,0.074281968176365,0.05914968624711],[-0.02647839486599,0.0034413498360664,-0.091879487037659],[0.069249875843525,-0.02749964222312,0.054375249892473]],[[-0.068824119865894,0.028367543593049,0.012259459123015],[0.016849189996719,-0.067949458956718,0.086418367922306],[-0.025976836681366,-0.032935779541731,-0.058073736727238]],[[0.092222683131695,0.010635077953339,0.046481974422932],[0.11385475844145,-0.00046337221283466,0.051129683852196],[0.01410455442965,-0.036783091723919,0.010132976807654]],[[-0.018683582544327,0.038170162588358,0.07379525154829],[0.039541728794575,0.047565650194883,0.075416065752506],[-0.051434177905321,0.023449910804629,0.057324230670929]],[[-0.0023160597775131,0.034322641789913,0.035719159990549],[-0.060575988143682,0.010462570935488,-0.015984378755093],[0.019273962825537,0.073761314153671,0.10161289572716]],[[0.066223062574863,0.10390815883875,0.013792153447866],[0.034998197108507,0.0043189343996346,-0.0017785283271223],[-0.031079243868589,0.063105344772339,-0.00085950986249372]],[[-0.0032618981786072,-0.017270432785153,-0.04265957698226],[-0.0078731216490269,0.061445169150829,0.014577279798687],[-0.075148321688175,-0.027011351659894,0.042648781090975]],[[-0.054506413638592,-0.041287049651146,-0.015543666668236],[0.070767767727375,0.1020872220397,-0.072307236492634],[-0.014032031409442,0.046644102782011,-0.10277196019888]],[[0.060755465179682,-0.011480946093798,0.0023537890519947],[-0.039338711649179,-0.021151853725314,0.022679580375552],[0.017743403092027,-0.064255483448505,0.034031040966511]],[[-0.011603064835072,-0.037616688758135,0.11690527945757],[-0.038371257483959,0.027943201363087,-0.054308846592903],[-0.018732726573944,-0.022906899452209,0.018123619258404]],[[-0.087696604430676,0.016540123149753,0.010469325818121],[-0.00069936260115355,0.049903701990843,0.093499414622784],[-0.10115536302328,-0.0074642174877226,0.01388787291944]],[[-0.064002864062786,0.013212105259299,-0.060218770056963],[0.05556383356452,0.003393815131858,0.019431257620454],[-0.025261530652642,-0.0087749008089304,0.017361374571919]],[[-0.021801514551044,-0.0081443218514323,-0.064567029476166],[-0.09389889985323,-0.047271214425564,-0.017569767311215],[0.03220608830452,-0.045827552676201,-0.060615751892328]],[[-0.088839985430241,-0.084837712347507,0.010117272846401],[0.037393927574158,0.042765650898218,-0.015363147482276],[0.015147288329899,0.059020429849625,0.014300451613963]],[[-0.038448601961136,0.021441537886858,0.00433429190889],[-0.033563673496246,0.041960459202528,0.010717369616032],[0.13745704293251,0.035278741270304,0.038302801549435]],[[0.063095428049564,-0.013451178558171,0.018858673051],[0.009839897044003,0.0075405659154058,-0.081513293087482],[-0.043688230216503,-0.044335935264826,0.13967943191528]],[[-0.069166272878647,-0.031587034463882,0.017122991383076],[-0.10490019619465,-0.068589679896832,0.048392690718174],[-0.07051183283329,0.0099405637010932,-0.010742826387286]],[[0.087831914424896,-0.027976147830486,0.099502891302109],[-0.018432382494211,-0.0012751546455547,-0.0072828573174775],[-0.084797248244286,-0.020116616040468,-0.085365384817123]],[[0.018400492146611,-0.01285021007061,0.017762804403901],[-0.015676964074373,0.013744447380304,0.019955307245255],[0.034822341054678,0.044869966804981,0.021275209262967]],[[-0.077487878501415,0.11283046752214,0.07838598638773],[-0.065884135663509,0.00066610268549994,-0.013724634423852],[0.083280965685844,-0.036089822649956,-0.049265783280134]],[[0.010591237805784,-0.084395758807659,0.0090497005730867],[0.051608975976706,0.023525599390268,-0.00053602637490258],[-0.088556654751301,0.053818248212337,0.019815655425191]],[[-0.016578869894147,0.035249155014753,0.050312589854002],[-0.067108429968357,0.018289063125849,-0.0010822095209733],[-0.10115891695023,-0.00051221088506281,0.078645057976246]],[[-0.035711072385311,-0.047742139548063,0.047738451510668],[0.016215829178691,0.012300453148782,0.065259255468845],[-0.028147015720606,-0.01100296061486,0.085651136934757]],[[0.0080726752057672,0.10524585098028,0.10766088962555],[-0.077032305300236,0.037690911442041,0.005759431514889],[0.011696414090693,0.054358679801226,-0.0050140582025051]],[[0.0039377952925861,-0.030896004289389,-0.02037388086319],[0.014884326606989,-0.082524076104164,-0.0084943752735853],[-0.049145914614201,-0.057559445500374,0.010139224119484]]],[[[-0.020769899711013,0.02128397859633,0.049158036708832],[0.0094744814559817,-0.017185030505061,0.019643636420369],[-0.01134212128818,0.029430883005261,0.061552226543427]],[[0.025698039680719,0.014630204997957,0.0069799306802452],[-0.048574090003967,0.032761823385954,0.04731186106801],[0.02785087749362,0.068218715488911,0.04566951841116]],[[-0.046634428203106,0.046228643506765,0.0039882445707917],[0.041838880628347,-0.014392575249076,0.0072280489839613],[-0.020387955009937,0.017229663208127,0.037044368684292]],[[-0.0042571951635182,0.019308334216475,-0.0087131541222334],[-0.074414640665054,-0.053174521774054,-0.017189309000969],[-0.01259315572679,-0.12838079035282,0.018357129767537]],[[-0.01877729780972,0.07839085906744,-0.012306250631809],[0.024239571765065,0.010897876694798,0.073507249355316],[-0.0070984452031553,0.059224102646112,0.021814411506057]],[[-0.012179453857243,0.0083203725516796,0.0219158064574],[0.039133053272963,0.0022387716453522,0.05552277341485],[0.014146878384054,-0.063591755926609,0.018621686846018]],[[0.010784815996885,-0.00018850494234357,0.033226426690817],[0.076302662491798,-0.056049421429634,-0.047184471040964],[0.026712961494923,0.00095601414795965,-0.0038609260227531]],[[-0.031255412846804,-0.030265336856246,0.00068162695970386],[0.13876493275166,0.062397837638855,0.013905406929553],[-0.064342997968197,0.071832552552223,-0.013150402344763]],[[0.0091422870755196,-0.062695644795895,0.035171836614609],[0.061940610408783,-0.037912581115961,-0.07083498686552],[0.068049512803555,0.066856265068054,0.10702796280384]],[[-0.035928960889578,0.014956766739488,0.12026299536228],[0.1164318472147,0.11289699375629,0.08254923671484],[0.082250021398067,-0.033445592969656,-0.033622551709414]],[[-0.013944900594652,-0.048479564487934,0.0052385181188583],[-0.045124895870686,0.054625567048788,0.016319591552019],[-0.014846419915557,0.056926697492599,0.019767643883824]],[[0.056416716426611,-0.019868597388268,0.065954506397247],[-0.051028102636337,-0.032179195433855,-0.010628477670252],[0.062902219593525,0.028519734740257,0.13633136451244]],[[0.10024503618479,-0.024994432926178,0.014228977262974],[-0.0090816235169768,0.02212842181325,-0.01704997010529],[-0.017376031726599,0.012844464741647,0.0020309679675847]],[[0.1299057751894,0.070970945060253,-0.094605460762978],[-0.056659560650587,-0.0063438504002988,-0.036375131458044],[0.017234826460481,-0.010501964949071,0.00022232336050365]],[[0.044072762131691,0.0038331926334649,0.060293424874544],[0.091164082288742,0.043525997549295,0.040245749056339],[0.078964032232761,0.10409694910049,0.054385684430599]],[[0.0021241642534733,0.0025102291256189,-0.031992733478546],[-0.047333519905806,-0.010116575285792,-0.11332856118679],[-0.01449909619987,-0.075829744338989,-0.091464854776859]],[[-0.018850108608603,-0.065749675035477,0.065065830945969],[0.11935900896788,-0.029304966330528,0.061264686286449],[-0.09260132163763,-0.040019240230322,-0.089543186128139]],[[0.018955621868372,0.0056166625581682,-0.038382891565561],[-0.011255589313805,-0.087497025728226,-0.078024789690971],[0.031549513339996,0.050611451268196,-0.078716307878494]],[[0.013616406358778,-0.078154429793358,0.047063991427422],[0.068229921162128,-0.10438884049654,0.063161104917526],[-0.014727826230228,-0.038577791303396,0.013568761758506]],[[0.0049944859929383,0.035384360700846,0.05112374201417],[-0.0085841817781329,0.017088258638978,0.077565871179104],[0.063261412084103,-0.010456698946655,0.030362209305167]],[[0.072640806436539,-0.00072639092104509,0.077930197119713],[-0.024719100445509,0.095663890242577,-0.032098900526762],[0.10281022638083,0.023522648960352,-0.018915528431535]],[[0.094784334301949,-0.0015059921424836,-0.044784609228373],[0.091236919164658,0.073664411902428,0.11182548850775],[0.014804453589022,0.075882814824581,0.0070526641793549]],[[0.076918244361877,-0.0071747852489352,0.017230207100511],[0.00055972678819671,0.037266917526722,-0.06742350012064],[-0.032110199332237,-0.031264755874872,0.044790934771299]],[[-0.028467597439885,-0.027417752891779,-0.090850822627544],[-0.061730999499559,0.049450241029263,0.001776734367013],[0.071421705186367,-0.048939824104309,0.019589828327298]],[[0.083950079977512,0.047452956438065,0.054033417254686],[0.075219035148621,-0.025894094258547,0.054202120751143],[0.030751056969166,0.014581831172109,0.022515807300806]],[[-0.10452075302601,0.040973421186209,0.035880658775568],[0.029558317735791,0.12147265672684,-0.01847567781806],[-0.042567800730467,-0.10731898248196,-0.038495149463415]],[[0.022306868806481,-0.038045819848776,-0.034264612942934],[0.0073560611344874,-0.037828326225281,0.0015899310819805],[-0.047753926366568,0.076940774917603,-0.0044822576455772]],[[-0.037116650491953,0.060818899422884,-0.040598839521408],[0.087937489151955,-0.0063083600252867,-0.027734966948628],[0.037378765642643,0.025371037423611,-0.054134700447321]],[[-0.067075774073601,0.039482317864895,0.00039707278483547],[0.038226678967476,-0.041956797242165,0.1201388835907],[0.048148643225431,0.09466627240181,-0.0014461911050603]],[[-0.036717303097248,-0.0023351996205747,-0.034792296588421],[0.0088601019233465,0.02238736115396,0.064300626516342],[0.029605092480779,0.10364559292793,0.0047451737336814]],[[-0.023503987118602,0.035602398216724,-0.043756902217865],[0.057015020400286,0.048093494027853,-0.022502234205604],[-0.014946334064007,0.029671262949705,-0.026311181485653]],[[0.043179605156183,0.044898129999638,-0.015183033421636],[-0.028742603957653,0.062735661864281,-0.04832423850894],[0.081021174788475,-0.0098814656957984,-0.025077568367124]],[[0.026194972917438,-0.028439026325941,0.0070815528742969],[0.055804871022701,-0.014693676494062,-0.0040036384016275],[0.0028662122786045,0.075477831065655,-0.027784464880824]],[[0.010043303482234,0.063652008771896,0.024603558704257],[0.005327021703124,-0.045967329293489,-0.013175055384636],[0.05947844684124,-0.006513639818877,0.0021882280707359]],[[0.010876159183681,-0.035376653075218,0.03408058360219],[-0.018664354458451,0.077856361865997,-0.039646837860346],[-0.047611963003874,-0.058257270604372,0.076895162463188]],[[0.010436719283462,0.0649019703269,-0.013723775744438],[-0.020917357876897,-0.030773399397731,-0.035126842558384],[0.024176796898246,-0.0035758481826633,-0.034725323319435]],[[-0.01888987980783,-0.045690730214119,-0.024037025868893],[0.019747933372855,-0.025314269587398,0.018314903602004],[-0.020554227754474,-0.013918139971793,-0.038188777863979]],[[0.056964825838804,0.0031389745417982,0.084656372666359],[0.021642213687301,-0.02161643281579,-0.023244174197316],[0.043812844902277,-0.011403790675104,-0.03159910812974]],[[-0.013484519906342,-0.012752289883792,-0.012114077806473],[0.048501450568438,0.03582413867116,-0.0079135550186038],[0.085941419005394,0.052522469311953,-0.018245903775096]],[[0.04058812558651,-0.015294286422431,0.029453698545694],[-0.10913523286581,0.025858139619231,0.01743495836854],[0.0071200001984835,0.031660512089729,0.015300770290196]],[[-0.041517518460751,0.046455606818199,0.042099338024855],[0.011131684295833,-0.0064780418761075,-0.0085772508755326],[0.067218534648418,-0.052835576236248,-0.014594731852412]],[[-0.023875759914517,-0.034904547035694,0.012214073911309],[-0.0061456998810172,0.072212338447571,-0.028834380209446],[-0.018635014072061,-0.032942973077297,0.0079899178817868]],[[-0.023245012387633,0.013825666159391,0.0060281418263912],[0.022058976814151,0.033621471375227,0.077463671565056],[-0.011186194606125,-0.014767345041037,0.039447586983442]],[[0.012036306783557,0.080112494528294,0.019995883107185],[0.021244248375297,0.01663438975811,-0.018291659653187],[0.031562928110361,0.0087152374908328,0.012093427591026]],[[-0.0068914978764951,0.040718510746956,0.024022726342082],[-0.039170004427433,-0.015768595039845,-0.0034266654402018],[0.084096372127533,0.032942980527878,0.10843808948994]],[[0.046209421008825,0.045914340764284,0.022926511242986],[0.034679364413023,0.0084127942100167,-0.0092117674648762],[0.066740766167641,-0.065783448517323,0.011594212614]],[[0.078072749078274,0.053169749677181,0.027482196688652],[0.095962777733803,-0.069214552640915,-0.0062425518408418],[0.024174593389034,0.067302294075489,0.027940755710006]],[[-0.029943872243166,-0.085814237594604,-0.047982599586248],[0.089474640786648,0.14870901405811,-0.028179241344333],[0.0089234784245491,0.053916454315186,0.035091497004032]],[[0.06111166998744,0.00033438988612033,0.04744965583086],[0.10533554852009,-0.086233213543892,-0.0050306543707848],[0.078624926507473,0.008875492028892,0.013929973356426]],[[-0.068635672330856,-0.0027046604081988,-0.01299870479852],[0.017550487071276,0.053561974316835,0.050042517483234],[0.0042407750152051,0.029338588938117,-0.0072651854716241]],[[0.036963112652302,0.022871877998114,-0.02575477026403],[-0.011166836135089,-0.04404503852129,-0.0019659476820379],[0.01579612493515,-0.0085442569106817,-0.046912472695112]],[[-0.0098292166367173,0.021801516413689,-0.023736618459225],[0.051266688853502,-0.073333121836185,0.060258165001869],[0.099227696657181,0.0049017993733287,-0.047884620726109]],[[0.031626049429178,-0.0081348400563002,-0.011755001731217],[-0.028162565082312,0.045151498168707,-0.04065091535449],[0.0071887485682964,-0.06354246288538,-0.0078595476225019]],[[0.034373499453068,0.0055533275008202,-0.039498955011368],[0.030261335894465,-0.019270753487945,0.0019747179467231],[0.068518258631229,-0.013612886890769,-0.028252393007278]],[[0.03081925958395,0.13389229774475,-0.01877268217504],[0.096363730728626,-0.024795161560178,-0.031985186040401],[-0.020521435886621,0.011835128068924,0.090746119618416]],[[-0.02369792945683,-0.019319094717503,0.059705391526222],[0.039545755833387,-0.035184983164072,0.0018856298411265],[0.0230568125844,0.033527217805386,0.038555052131414]],[[0.046175517141819,-0.03040080703795,0.054463461041451],[0.021169908344746,0.029000014066696,0.031189456582069],[-0.060539327561855,-0.0098178358748555,-0.050706222653389]],[[-0.0016108679119498,-0.06089872866869,0.067275613546371],[0.020287146791816,-0.035219237208366,-0.013879058882594],[-0.0092871189117432,-0.09894060343504,-0.022133287042379]],[[0.011279420927167,0.070573784410954,0.027205185964704],[0.033122051507235,-0.06202931329608,-0.023453531786799],[0.061321455985308,-0.036667123436928,0.038740403950214]],[[0.040662486106157,-0.037736546248198,-0.024886500090361],[0.038046523928642,-0.015808187425137,0.0096896458417177],[0.0030812339391559,-0.063380748033524,0.02982303313911]],[[-0.025127859786153,-0.033305551856756,-0.005378648173064],[0.017524907365441,0.061519671231508,-0.0033814175985754],[-0.048901583999395,-0.00056927773403004,0.015164622105658]],[[0.028396220877767,-0.040811151266098,-0.1284768730402],[-0.099204786121845,0.0088842660188675,0.010269476100802],[-0.017639612779021,0.031829122453928,-0.086073890328407]],[[0.061786528676748,-0.050910517573357,0.0083893854171038],[-0.01840647123754,0.027772981673479,-0.018092205747962],[0.039977394044399,-0.039393465965986,-0.068377025425434]],[[-0.016353152692318,0.012434183619916,0.011687776073813],[0.056441221386194,0.041937924921513,-0.0064318319782615],[0.048088062554598,0.016555193811655,0.028285775333643]],[[-0.063644528388977,-0.034286879003048,0.017990319058299],[-0.057567209005356,-0.075224429368973,0.083749167621136],[0.051854331046343,0.020831555128098,-0.014830100350082]],[[-0.037479028105736,0.044405948370695,-0.056248638778925],[0.019803015515208,0.018973091617227,-0.026035767048597],[0.10698699206114,-0.029874049127102,0.0021690626163036]],[[-0.026311725378036,-0.029885686933994,0.0038947300054133],[-0.006682709325105,-0.062987670302391,-0.032639939337969],[0.048681620508432,0.081008158624172,-0.013796123676002]],[[-0.053483240306377,-0.018231069669127,0.045373260974884],[0.12292551994324,0.010280014947057,-0.028708735480905],[-0.050348315387964,0.042399935424328,0.029935013502836]],[[0.0072872214950621,-0.0074334195815027,0.057170428335667],[-0.044296585023403,0.013946454972029,0.021426633000374],[-0.0078427884727716,0.033990006893873,0.035818353295326]],[[0.085329666733742,-0.0094817047938704,0.0099710905924439],[-0.0034226104617119,-0.022937016561627,0.024563979357481],[0.053251314908266,0.074727207422256,0.020749067887664]],[[-0.04642740264535,-0.01760526932776,-0.07173203676939],[0.017399856820703,0.026972653344274,-0.013368467800319],[-0.041800200939178,-0.0033582637552172,-0.033626019954681]],[[0.071194119751453,0.10385923832655,0.047893833369017],[-0.10387627035379,0.0044567193835974,-0.001244725426659],[-0.02369605191052,-0.014428534545004,-0.025438321754336]],[[0.037879981100559,-0.00087282876484096,0.017437502741814],[0.070734806358814,0.092288807034492,0.022244434803724],[-0.015265286900103,0.018650704994798,-0.014985607936978]],[[-0.049875218421221,-0.056746728718281,0.059639923274517],[0.041492458432913,0.050047632306814,0.05079597607255],[-0.018755124881864,0.018916225060821,-0.0087481364607811]],[[-0.038547199219465,0.11931025236845,-0.062451425939798],[-0.014312925748527,-0.0050581633113325,0.0082769254222512],[0.021083476021886,-0.034834612160921,-0.00014473234477919]],[[0.010604428127408,-0.042412407696247,0.042661432176828],[0.040124792605639,-0.026990223675966,-0.019015680998564],[-0.05531644448638,0.071215860545635,0.033241130411625]],[[-0.045862805098295,-0.099402442574501,0.050111092627048],[-0.018609987571836,0.0030873310752213,0.025289772078395],[0.030865792185068,-0.0073108882643282,-0.065836310386658]],[[0.019694333896041,-0.072902798652649,0.05243955552578],[0.020334720611572,0.015545209869742,-0.062267120927572],[-0.073715105652809,-0.0016084540402517,-0.00029684047331102]],[[-0.079026110470295,0.0085332756862044,0.046998668462038],[-0.019790204241872,0.015091332606971,-0.089823476970196],[-0.0022288986947387,0.0038157324306667,0.033292502164841]],[[-0.024540076032281,0.0060187573544681,0.028317565098405],[-0.00045474665239453,-0.029027447104454,-0.065667726099491],[-0.0043743522837758,-0.038392160087824,0.0088538136333227]],[[-0.048841882497072,0.029598094522953,-0.00040450220694765],[0.0011703540803865,-0.041575379669666,-0.068931415677071],[0.019736392423511,-0.044481080025434,0.017923902720213]],[[-0.044658716768026,0.065039582550526,0.062697350978851],[-0.046739418059587,-0.066546984016895,-0.042168781161308],[0.0012887546326965,0.0046443156898022,-0.073817864060402]],[[-0.058350648730993,-0.040250018239021,0.098324373364449],[0.01595968939364,0.058214761316776,-0.050231575965881],[-0.0077393408864737,-0.072855062782764,-0.020953495055437]],[[-0.01713065803051,0.013688606210053,-0.013528319075704],[-0.014637379907072,0.021140165627003,0.00033656688174233],[-0.084823943674564,-0.00172509776894,0.071758411824703]],[[-0.060386214405298,-0.038964401930571,0.010414435528219],[0.020784068852663,0.024927457794547,0.017772382125258],[-0.01989645883441,-0.058712232857943,0.0033888663165271]],[[0.054513014853001,0.010255485773087,-0.0014662232715636],[0.024136137217283,-0.014104823581874,-0.0030312777962536],[-0.037833206355572,-0.015359384007752,0.09116131067276]],[[-0.0067530022934079,0.013684061355889,-0.011590062640607],[-0.017079351469874,0.027578053995967,-0.0099259978160262],[-0.02046943642199,-0.022621816024184,-0.027166625484824]],[[-0.023825498297811,0.046718444675207,0.059761386364698],[0.033941369503736,0.058404952287674,0.024253075942397],[-0.069940537214279,-0.051727745682001,-0.041711408644915]],[[0.00079305429244414,-0.026258397847414,0.024120055139065],[0.015516713261604,0.0029990540351719,-0.0061206636019051],[-0.037453424185514,0.03115901350975,0.002091403119266]],[[-0.0086185792461038,0.0058234622702003,0.023103281855583],[0.074182212352753,-0.014794674701989,0.081091120839119],[0.069943137466908,0.01538292504847,-0.057550653815269]],[[0.021879008039832,0.014809180982411,-0.061716839671135],[-0.046272538602352,0.056716233491898,0.033801697194576],[0.058006953448057,-0.0094294650480151,0.12205804139376]],[[-0.051161549985409,0.036405950784683,0.0052543533965945],[0.010014468804002,0.018950890749693,0.026762848719954],[0.06701834499836,0.081228084862232,-0.0095133623108268]],[[-0.061847854405642,-0.086016349494457,-0.029248988255858],[-0.020186431705952,-0.072859182953835,0.02050020173192],[0.0042209471575916,-0.02999741025269,-0.056046456098557]],[[0.025858910754323,-0.021976802498102,0.0081640621647239],[-0.01289751008153,-0.0010210372274742,0.040292106568813],[0.012979761697352,0.0060890293680131,0.13582131266594]],[[-0.042013339698315,0.054895512759686,0.046663969755173],[-0.0085895098745823,-0.01589328981936,-0.05005594342947],[0.0035941642709076,0.079270489513874,0.01105154119432]],[[-0.0045274612493813,-0.058328632265329,0.076066829264164],[0.021302429959178,0.066183440387249,0.046539682894945],[-0.00027966126799583,-0.0030097023118287,0.028998313471675]],[[-0.095716878771782,-0.074986159801483,-0.024821577593684],[-0.018012685701251,0.020714813843369,-0.00024395230866503],[0.096588507294655,-0.096443146467209,-0.083900302648544]],[[-0.038032963871956,-0.0094419820234179,-0.050532445311546],[0.096099033951759,0.027311958372593,0.027851354330778],[0.070490770041943,0.038884446024895,0.022150602191687]],[[-0.044383257627487,0.087106212973595,-0.0053952438756824],[0.041996028274298,0.04620311036706,0.037234868854284],[-0.0034950387198478,0.063349813222885,-0.047221962362528]],[[0.017191411927342,0.082524843513966,0.044125281274319],[-0.067618742585182,-0.062609367072582,-0.043226484209299],[0.012303790077567,0.13818322122097,-0.039553176611662]],[[-0.044081229716539,0.076820090413094,0.055327601730824],[-0.035137925297022,-0.0083452379330993,0.058971855789423],[0.038633957505226,-0.11503128707409,0.056089121848345]],[[-0.040524307638407,0.021045943722129,0.013801386579871],[0.13836000859737,0.092056542634964,-0.020947311073542],[0.024197338148952,0.017302008345723,-0.022179977968335]],[[0.061222769320011,-0.021956335753202,-0.0058833374641836],[0.036858066916466,-0.036687087267637,0.0496038608253],[0.0021041776053607,-0.023433562368155,-0.050362274050713]],[[0.092453002929688,0.035746909677982,0.0092160338535905],[0.026721961796284,-0.038768820464611,0.016194324940443],[0.021401174366474,0.07053516805172,0.029680073261261]],[[0.036813132464886,-0.015087065286934,0.021584756672382],[0.039481975138187,0.0099511770531535,0.070555239915848],[0.043981708586216,0.037334203720093,0.022396620362997]],[[0.011203892529011,-0.018379911780357,-0.014209407381713],[0.14255557954311,0.079578027129173,-0.036585763096809],[0.05196863040328,0.0075014792382717,0.057478148490191]],[[-0.044359426945448,0.060953870415688,-0.0043607028201222],[-0.068276338279247,0.030827620998025,-0.012084495276213],[0.054386366158724,0.088130958378315,0.0045421407558024]],[[0.020233057439327,-0.060045056045055,-0.022062689065933],[-0.005412626080215,0.13268618285656,-0.10529011487961],[0.037082962691784,-0.013256802223623,0.0310381911695]],[[-0.021999834105372,0.090912029147148,-0.045609556138515],[0.033405542373657,-0.067595243453979,0.097844108939171],[-0.01473324559629,-0.040742360055447,-0.018878115341067]],[[0.023187888786197,0.024900063872337,-0.041521981358528],[-0.077605575323105,-0.10452184081078,-0.065166756510735],[-0.012914340943098,0.11888051778078,0.03005107305944]],[[-0.0030504071619362,0.021732252091169,0.0062092454172671],[0.025275193154812,-0.016246562823653,-0.056765954941511],[-0.0010933574521914,0.037399280816317,-0.037621226161718]],[[0.033840965479612,0.015076419338584,-0.015297813341022],[-0.010272219777107,-0.031444638967514,-0.0046069640666246],[0.0059920535422862,0.07510320097208,-0.020942727103829]],[[-4.1468578274362e-05,-0.02984187938273,-0.037672068923712],[-0.071182332932949,0.10226672887802,0.13634923100471],[-0.022700183093548,-0.032444920390844,0.08016748726368]],[[-0.082327291369438,0.050132524222136,-0.010017427615821],[-0.016072010621428,0.04896953701973,0.042278371751308],[0.054382644593716,-0.017005551606417,0.054566171020269]],[[-0.015918059274554,0.068456403911114,-0.039299614727497],[0.017063181847334,0.087411634624004,0.010346154682338],[0.061059113591909,-0.0050901602953672,0.026851426810026]],[[-0.0086285611614585,0.047474805265665,-0.070719622075558],[0.031797725707293,0.028835678473115,0.088206849992275],[-0.0071843825280666,0.029682969674468,0.058251701295376]],[[-0.014779995195568,0.041369151324034,-0.022205026820302],[0.033361196517944,0.056106258183718,0.031896617263556],[0.017060231417418,0.02233643271029,0.034752108156681]],[[-0.039191488176584,0.059535287320614,-0.088646098971367],[0.0079240519553423,-0.011984894052148,-0.039086788892746],[-0.031081294640899,0.0095681408420205,-0.01676288805902]],[[-0.027696970850229,0.013284768909216,-0.10285428911448],[-0.014699037186801,-0.050040364265442,0.013621521182358],[0.0052558379247785,-0.079856023192406,-0.028990043327212]],[[-0.00054336327593774,0.041073065251112,0.0219546854496],[-0.050741359591484,0.0038300885353237,-0.064552627503872],[-0.036993470042944,0.052936270833015,0.051387779414654]],[[-0.0095376949757338,-0.0073675005696714,0.085597723722458],[0.041763499379158,0.07818079739809,-0.033357482403517],[0.12680733203888,0.059251978993416,0.030279973521829]],[[-0.047330498695374,0.029283504933119,-0.03415072709322],[0.017987614497542,0.041783433407545,0.082982011139393],[0.0062402421608567,0.0064897858537734,-0.062324471771717]],[[0.0054187593050301,-0.009870046749711,-0.01245953887701],[0.13085553050041,0.042526245117188,0.032800074666739],[-0.030232196673751,-0.02094697766006,-0.056210346519947]],[[0.017044074833393,-0.025663390755653,-0.026130750775337],[-0.032664623111486,0.012609251774848,0.069142058491707],[0.10827272385359,0.062692329287529,-0.00065568351419643]],[[0.021486325189471,-0.015380994416773,0.008023776113987],[0.015654481947422,0.035395260900259,0.031979639083147],[-0.016585778445005,-0.025214130058885,0.07582250982523]],[[0.0095882909372449,0.020884564146399,-0.053686667233706],[0.034024614840746,0.013224630616605,0.0034357677213848],[0.00041900758515112,0.070506677031517,0.05673186853528]],[[0.027309173718095,0.13211907446384,0.010205892845988],[0.043725475668907,-0.017544083297253,0.057582724839449],[0.084069922566414,0.0033464189618826,0.082921639084816]],[[-0.00077654951019213,0.031654465943575,0.02494871430099],[0.07606665790081,-0.042521938681602,-0.0060714203864336],[-0.0098413359373808,0.053302522748709,-0.024485932663083]]],[[[-0.019147681072354,0.0073910765349865,-0.046153109520674],[0.008191304281354,0.080369830131531,-0.027873232960701],[0.068398512899876,-0.0071888552047312,-0.038494940847158]],[[0.058346811681986,-0.0011310525005683,0.0078685376793146],[0.010516642592847,0.023166859522462,-0.027212837710977],[0.088396027684212,-0.032038770616055,0.068303257226944]],[[-0.0082093002274632,-0.023012744262815,0.044389095157385],[-0.068698197603226,0.010290814563632,-0.034290697425604],[-0.06103702262044,-0.006096251308918,0.0508943349123]],[[0.011507590301335,0.050567787140608,-0.0036875358782709],[-0.037775456905365,0.050331972539425,0.028538847342134],[0.065439656376839,0.11707666516304,0.064143925905228]],[[-0.018952252343297,0.033506613224745,-0.0676474198699],[0.11810124665499,-0.008476996794343,-0.021071400493383],[-0.047953903675079,-0.0004703238082584,-0.048133637756109]],[[0.048980217427015,0.027828682214022,-0.037857063114643],[-0.016489464789629,-0.035917684435844,0.056666024029255],[0.091586723923683,0.056912910193205,0.051010612398386]],[[-0.019195832312107,-0.055686023086309,-0.060824584215879],[-0.0071019437164068,-0.012698063626885,0.011347256600857],[0.0041774180717766,-0.033351227641106,0.066620327532291]],[[-0.009176155552268,0.033832628279924,0.053760699927807],[0.0061816782690585,0.014211246743798,0.0028784438036382],[-0.017506998032331,0.060571517795324,0.064984776079655]],[[-0.039533063769341,-0.060677282512188,0.0046960469335318],[0.030558910220861,-0.019255405291915,0.0011730779660866],[0.06143319606781,0.0091568985953927,0.043046843260527]],[[0.077401921153069,0.0074302712455392,0.11659645289183],[0.010825645178556,0.01393000036478,0.11267814040184],[0.10966853052378,0.10947524756193,0.060460936278105]],[[-0.041041564196348,0.020459700375795,-0.039669331163168],[-0.047888167202473,-0.0072053433395922,0.020820826292038],[0.023288160562515,-0.011527743190527,0.080124698579311]],[[-0.042534820735455,-0.037636667490005,0.016336388885975],[0.046097084879875,-0.0046572838909924,-0.075409591197968],[0.017835929989815,0.081634849309921,0.017277531325817]],[[-0.013242333196104,0.022976692765951,0.015481797046959],[-0.003676084568724,-0.0084653114899993,-0.00082506856415421],[-0.010206612758338,0.12134626507759,0.030068643391132]],[[0.035774346441031,-0.043806336820126,0.08417633920908],[-0.026732921600342,-0.032085698097944,0.039805799722672],[0.0164974052459,0.052479345351458,0.12088920176029]],[[0.13113370537758,0.067833855748177,0.16484785079956],[0.03270947933197,0.12795999646187,0.105429507792],[0.12616258859634,0.077008299529552,0.12012211233377]],[[-0.070214740931988,-0.019256982952356,-0.036154236644506],[-0.11737728863955,-0.05484926700592,-0.078691110014915],[0.027979698032141,-0.021766558289528,-0.037641048431396]],[[0.00091174693079665,-0.022562596946955,0.090803951025009],[0.012231887318194,-0.047075636684895,-0.036729980260134],[0.0028804130852222,-0.019933633506298,0.022377386689186]],[[0.05627803131938,-0.14740437269211,-0.04925088211894],[-0.0035349742975086,-0.15056920051575,-0.081134058535099],[-0.077300503849983,0.025425584986806,0.035412665456533]],[[0.016743656247854,-0.041809394955635,-0.020676977932453],[0.057883147150278,-0.058701418340206,0.019479190930724],[-0.004995625000447,-0.026005320250988,-0.04825908318162]],[[-0.0052827331237495,0.040411703288555,0.041542056947947],[0.08696973323822,0.06174087151885,0.02334263548255],[-0.013842854648829,-0.051667414605618,-0.057914916425943]],[[0.0081805912777781,-0.0054206936620176,-0.056892968714237],[-0.021932998672128,0.017878115177155,-0.0043250783346593],[0.044918522238731,0.033877443522215,-0.013235490769148]],[[0.033696636557579,0.029607150703669,-0.0049686511047184],[0.049167465418577,0.0044163204729557,-0.024865332990885],[0.051201093941927,0.02258856780827,0.031019754707813]],[[0.023827988654375,0.084811687469482,-0.058029375970364],[-0.027892395853996,0.053019817918539,-0.010829232633114],[0.026030337437987,0.0023173741064966,0.054675191640854]],[[0.063827514648438,-0.044833172112703,0.029401941224933],[0.015592339448631,0.047058563679457,0.048499956727028],[0.066909708082676,-0.07709114253521,0.063151009380817]],[[0.020164350047708,-0.00072139012627304,0.053555756807327],[0.024896170943975,0.023327484726906,-0.077206283807755],[0.078406356275082,0.011153183877468,-0.045006554573774]],[[0.047546926885843,-0.081400901079178,0.023076880723238],[-0.022955879569054,0.089964970946312,0.013026238419116],[0.032990377396345,0.025180861353874,0.021521668881178]],[[0.033028662204742,0.072027593851089,0.063091821968555],[0.10089534521103,0.047329805791378,-0.059179849922657],[-0.010682929307222,0.073162026703358,0.0056411949917674]],[[-0.012880680151284,0.0010556599590927,0.023878687992692],[-0.02908350713551,-0.024197487160563,0.02301237359643],[0.051484506577253,-0.078549355268478,0.015545272268355]],[[0.074985213577747,0.096061542630196,-0.012868208810687],[0.019009303301573,0.053562730550766,-0.028463480994105],[0.063657648861408,0.078236818313599,0.04259780049324]],[[0.06463535130024,0.0069440822117031,-0.0019891122356057],[0.024757329374552,0.023283721879125,-0.016294276341796],[-0.019517397508025,-0.014981403015554,0.014952289871871]],[[0.016846833750606,-0.011783474124968,0.025631094351411],[0.052891682833433,-0.055501841008663,-0.0028768773190677],[0.071419015526772,0.028191410005093,0.040427900850773]],[[0.01659632474184,-0.029056815430522,-0.014903540723026],[-0.046233780682087,-0.001041520270519,-0.017098300158978],[-0.012843084521592,-0.026288731023669,-0.019158869981766]],[[-0.05429046228528,-0.048428490757942,-0.0079733310267329],[0.052816327661276,0.010578131303191,-0.064453229308128],[0.044281959533691,-0.070797108113766,-0.011579103767872]],[[0.019204456359148,-0.0026001760270447,0.038268469274044],[-0.0449393466115,-0.082061290740967,0.0022307788021863],[0.046710580587387,-0.034167036414146,0.012657007202506]],[[0.053656235337257,0.048512913286686,-0.011477373540401],[0.083710350096226,-0.034767054021358,0.040473435074091],[0.082087606191635,0.0030352440662682,0.042023245245218]],[[-0.062595888972282,0.030578901991248,-0.051346085965633],[0.038748666644096,-0.052100356668234,-0.055345203727484],[0.060156375169754,0.043055526912212,0.054531577974558]],[[-0.01915080845356,0.00089276273502037,-0.0048162541352212],[0.04284431412816,-0.034472171217203,-0.025147510692477],[0.019965372979641,0.020086120814085,0.035653702914715]],[[0.027572611346841,-0.036300964653492,0.058036379516125],[0.042022902518511,-0.042627297341824,-0.020122578367591],[-0.024997455999255,-0.030573653057218,0.090338535606861]],[[0.018907777965069,0.021044159308076,0.07248904556036],[-0.049948144704103,-0.0042320266366005,-0.055904977023602],[0.041545730084181,-0.024424202740192,0.041249465197325]],[[-0.040659692138433,-0.020665047690272,-0.049654718488455],[-0.017819315195084,0.047582764178514,-0.0036636528093368],[-0.010001278482378,0.055942911654711,-0.0029714542906731]],[[-0.028468796983361,-0.11272466927767,-0.058922220021486],[0.011234389618039,-0.035360757261515,0.055071268230677],[-0.032039392739534,-0.032570507377386,0.023377625271678]],[[0.045613031834364,0.044974338263273,-0.011780122295022],[-0.026241274550557,0.062605775892735,-0.093931593000889],[0.014738372527063,-0.06166011095047,-0.038957621902227]],[[0.00010172871407121,-0.020652854815125,-0.0066180001012981],[0.04940689727664,0.01849103718996,-0.035383578389883],[0.085339784622192,0.042145766317844,-0.057478003203869]],[[-0.0065680583938956,0.0058178943581879,-0.029736271128058],[0.048394974321127,-0.010335085913539,0.023352677002549],[0.036905352026224,-0.0037126434035599,0.025741342455149]],[[-0.044171873480082,-0.017036069184542,0.058256562799215],[0.027010573074222,0.11169875413179,0.038632117211819],[0.039859566837549,0.014811303466558,-0.091444060206413]],[[0.040394548326731,0.060814745724201,-0.063233777880669],[0.07283279299736,0.068313889205456,-0.0046949875541031],[-0.047578383237123,-0.052560281008482,0.034885346889496]],[[0.006191800814122,0.034676656126976,0.019070245325565],[0.0075350981205702,-0.0030196805018932,-0.0331020206213],[0.033704973757267,0.056454628705978,0.053771965205669]],[[0.022833770141006,-0.057200323790312,-0.0413375236094],[-0.015857661142945,0.077585391700268,0.026154536753893],[0.051021467894316,0.078385479748249,0.026381874457002]],[[0.014408804476261,-0.027446649968624,0.023323375731707],[0.026207413524389,-0.0092320069670677,0.039060853421688],[-0.0059816455468535,0.10788887739182,0.02919964492321]],[[0.018724074587226,0.0035082064568996,-0.0013977473136038],[-0.0098142838105559,-0.019965499639511,0.06614638119936],[-0.031430408358574,-0.012718349695206,-0.016160452738404]],[[-0.0040414757095277,0.00030304200481623,-0.064225472509861],[0.018553785979748,-0.040092557668686,-0.0080029824748635],[-0.02183436229825,-0.056892037391663,0.02398164011538]],[[-0.042140707373619,-0.055193156003952,-0.018911754712462],[-0.0026410433929414,0.055181562900543,-0.066182270646095],[0.042759548872709,-0.043741352856159,0.064897947013378]],[[0.070890173316002,-0.059040874242783,-0.0054897274821997],[-0.022647282108665,0.028591586276889,0.029174715280533],[0.1054579615593,0.027646407485008,-0.046299144625664]],[[-0.016906810924411,-0.040553759783506,0.045859903097153],[0.03171032294631,0.035384736955166,-0.017630675807595],[0.054276045411825,-0.075042083859444,0.016739521175623]],[[0.033760275691748,0.033187661319971,0.050828978419304],[-0.045602142810822,0.03771885856986,0.030051479116082],[-0.0060196961276233,0.03506663441658,-0.015072647482157]],[[-6.9841589720454e-05,-0.019760547205806,0.020473511889577],[0.0007499466300942,0.035562839359045,0.010599522851408],[0.031949527561665,0.10488683730364,0.044604104012251]],[[-0.0025925959926099,-0.022994663566351,-0.0093094808980823],[-0.001798449200578,0.059555612504482,0.013258224353194],[-0.0038673500530422,0.057225465774536,0.06350090354681]],[[0.033853992819786,0.071146287024021,0.024267863482237],[0.031901314854622,-0.047532249242067,-0.0028720386326313],[-0.011472973041236,-0.083162985742092,0.0093588484451175]],[[0.0082294549793005,0.053833015263081,0.014236139133573],[0.055685333907604,0.016661304980516,0.038879845291376],[0.0034616605844349,0.061523679643869,0.039166875183582]],[[-0.017219476401806,-0.094006977975368,0.026545220986009],[-0.028202706947923,-0.032111063599586,-0.02007563970983],[0.066399797797203,-0.039987929165363,-0.091713160276413]],[[0.0021538594737649,0.0094952648505569,0.018478263169527],[0.028483010828495,-0.0044770631939173,0.063676245510578],[0.026840642094612,0.049299485981464,-0.004044224973768]],[[0.029096992686391,0.0020445338450372,-0.00024345911515411],[0.001156720565632,-0.073583394289017,-0.039483323693275],[-0.01827853731811,0.027123738080263,0.042032718658447]],[[-0.0066223246976733,-0.049612753093243,-0.0021113900002092],[0.061820890754461,-0.041282918304205,0.059490106999874],[0.029206352308393,-0.039098128676414,0.071874968707561]],[[-0.016740160062909,-0.0083746192976832,-0.031857453286648],[0.092136159539223,-0.076616317033768,0.040256608277559],[-0.079743050038815,0.027526473626494,-0.06681726872921]],[[-0.0086866607889533,-0.0037909867241979,-0.017663661390543],[0.059422187507153,0.044483818113804,0.055943612009287],[-0.0078130466863513,-0.034907963126898,-0.002442377852276]],[[-0.044877525418997,0.0024421997368336,-0.029781691730022],[-0.022738996893167,-0.058801747858524,-0.021147094666958],[-0.046331644058228,0.045598521828651,-0.038603737950325]],[[0.00099776801653206,0.053768280893564,0.053655453026295],[0.11974674463272,-0.01021905336529,0.080090947449207],[0.075802564620972,0.090604744851589,0.0093423100188375]],[[0.039433393627405,0.0095253633335233,0.0087928669527173],[0.053850207477808,0.067931853234768,0.0034859932493418],[0.094831936061382,-0.02524128742516,-0.013077429495752]],[[-0.055775187909603,-0.021538833156228,-0.042061179876328],[-0.075113371014595,0.023327136412263,0.043468941003084],[-0.079624928534031,0.0086809210479259,-0.02143183350563]],[[0.028581785038114,0.027946777641773,0.032685328274965],[0.037738751620054,0.052104126662016,-0.02685547247529],[0.052515018731356,-0.029285497963428,0.0094234747812152]],[[0.001845215796493,0.010718321427703,0.053892016410828],[0.032014593482018,-0.086046688258648,-0.013299181126058],[0.0054347352124751,-0.010682177729905,0.018299587070942]],[[0.0037674221675843,0.10049963742495,0.034301359206438],[0.11135967820883,0.078698448836803,0.023657333105803],[0.061334501951933,0.017264679074287,0.12909479439259]],[[0.017663368955255,0.044228408485651,-0.037600837647915],[0.054656781256199,0.03314995765686,-0.011951783671975],[0.033701278269291,0.057979933917522,0.049040984362364]],[[0.022593051195145,0.015485555864871,0.035751793533564],[0.0070847095921636,-0.015588958747685,0.093133039772511],[-0.014637465588748,0.086290039122105,0.061516031622887]],[[-0.011624679900706,-0.021611470729113,0.014438929967582],[-0.059023518115282,0.0046902257017791,0.0061222841031849],[0.016736621037126,0.0044045117683709,-0.0006391640054062]],[[0.067148238420486,-0.030135164037347,-0.035499073565006],[0.028480630367994,-0.047437377274036,-0.00065990991424769],[0.031933076679707,-0.04657419025898,-0.0042125880718231]],[[0.037239633500576,-0.089904941618443,0.046362601220608],[0.0039165155030787,0.0058044265024364,0.04451484978199],[0.0083322757855058,0.01076936442405,0.0063298782333732]],[[-0.013390308246017,-0.049768388271332,-0.046710144728422],[-0.045824959874153,0.0034532106947154,0.019153438508511],[-0.024112790822983,0.097031824290752,0.012868314981461]],[[0.014538230374455,-0.025233944877982,0.021674187853932],[-0.053601797670126,-0.019239615648985,0.073313303291798],[0.020239926874638,0.039137076586485,-0.089034654200077]],[[-0.011615221388638,-0.0044704359024763,-0.08789537101984],[0.0063551883213222,0.018510267138481,0.021289747208357],[-0.010528842918575,0.042400676757097,0.054952651262283]],[[-0.0027942794840783,-0.0036623182240874,-0.050232298672199],[0.02683375030756,0.021695682778955,0.06306429952383],[0.079153180122375,0.019688973203301,0.011075831018388]],[[0.067581661045551,-0.04948253184557,0.0030871937051415],[-0.013158123008907,-0.0067685437388718,-0.012187726795673],[0.040395196527243,0.035972073674202,-0.0060451906174421]],[[0.023527033627033,0.063597358763218,0.048571668565273],[0.039739523082972,0.10070732235909,0.048086147755384],[0.057007547467947,0.015881543979049,0.013510143384337]],[[0.051716607064009,-0.0035205245949328,-0.054815627634525],[-0.023644952103496,-0.0073499819263816,0.078552454710007],[0.013811287470162,-0.028875198215246,0.033667422831059]],[[-0.046135935932398,0.052548408508301,0.0078571243211627],[-0.051027957350016,-0.014955055899918,-0.055867210030556],[0.033940687775612,-0.038570921868086,-0.0054631652310491]],[[0.064948849380016,0.042264871299267,-0.016219137236476],[0.0021212913561612,-0.037178460508585,0.052067451179028],[-0.025678090751171,-0.071654513478279,-0.037529360502958]],[[-0.0024030315689743,-0.026383066549897,-0.040423221886158],[0.0071574533358216,-0.047789629548788,-0.026747971773148],[0.0086973030120134,-0.012777667492628,-0.034657165408134]],[[0.042530372738838,0.11330679059029,0.079572632908821],[-0.049703475087881,0.036180332303047,-0.023158950731158],[-0.031922791153193,0.016491904854774,0.043088849633932]],[[-0.060937989503145,-0.055091559886932,-0.042216509580612],[-0.017317255958915,0.015385946258903,-0.043802212923765],[-0.066658511757851,-0.050746150314808,-0.047538638114929]],[[-0.066267542541027,-0.073044382035732,0.092823542654514],[0.083672672510147,0.087627574801445,-0.050471059978008],[-0.025063302367926,-0.029927037656307,0.02484243735671]],[[0.029840616509318,-0.00018197800091002,0.0297397878021],[0.042427349835634,0.031637988984585,-0.087045595049858],[-0.0039091524668038,-0.0055970028042793,0.033271480351686]],[[-0.032203126698732,0.015881100669503,0.05332401022315],[0.019559781998396,0.030667008832097,-0.059453744441271],[-0.011242242529988,0.06823044270277,0.044716604053974]],[[-0.016668282449245,-0.030892748385668,0.025505509227514],[-0.019776571542025,0.0701634734869,0.02419014275074],[-0.026128608733416,0.0077984184026718,0.0093153435736895]],[[-0.07561132311821,-0.031324658542871,0.063979849219322],[0.069546967744827,0.024681350216269,-0.015180177986622],[-0.035277049988508,-0.09375161677599,0.053903713822365]],[[0.044055346399546,-0.0349146053195,-0.03340870141983],[0.045285206288099,-0.016964880749583,0.0045371516607702],[-0.026013310998678,-0.00081136962398887,-0.0050169103778899]],[[-0.016493331640959,0.029746500775218,-0.0075879646465182],[0.074526578187943,0.030667459592223,-0.0017086488660425],[0.037515364587307,-0.039228811860085,-0.049855966120958]],[[0.060972981154919,0.022390408441424,-0.020302023738623],[0.049753349274397,0.0057247835211456,0.030850386247039],[0.052704475820065,0.048811841756105,0.0089052421972156]],[[-0.039329815655947,0.021643092855811,0.12945322692394],[-0.011781275272369,0.10051049292088,0.0046421303413808],[0.057375714182854,-0.00091581698507071,-0.088787607848644]],[[0.077608495950699,0.046281442046165,0.018065862357616],[0.019520664587617,-0.052854754030704,-0.027622863650322],[0.062999971210957,0.012819547206163,-0.025694074109197]],[[0.047981854528189,0.018928235396743,-0.033065680414438],[-0.017231440171599,0.057628590613604,-0.040335815399885],[0.095690324902534,0.0031765748281032,-0.00015693469322287]],[[-0.030070399865508,-0.1367621421814,0.028271187096834],[0.032293371856213,0.0020711277611554,-0.076664604246616],[0.010848545469344,0.0081644505262375,0.035515453666449]],[[0.12883932888508,0.0092815458774567,0.025170622393489],[0.078846327960491,0.030868448317051,-0.035889629274607],[0.094689257442951,-0.030017260462046,0.0028130933642387]],[[-0.019681174308062,0.088666185736656,-0.027550291270018],[-0.048863787204027,0.0089828614145517,0.007317163515836],[-0.078791774809361,0.055681794881821,0.033816408365965]],[[0.035486586391926,0.039661541581154,0.015403461642563],[-0.021216493099928,-0.038216032087803,-0.050767283886671],[-0.045485652983189,-0.079254955053329,0.062944546341896]],[[0.072499513626099,0.099328249692917,0.079352825880051],[0.039144910871983,0.038341552019119,-0.075510390102863],[-0.011851049028337,0.081960067152977,-0.050307862460613]],[[0.0307432487607,0.042440615594387,0.059115193784237],[0.035875111818314,-0.046077243983746,0.045935116708279],[0.04248795285821,0.027112890034914,0.086177073419094]],[[-0.025204911828041,-0.029512960463762,0.036638040095568],[0.018543101847172,0.062887504696846,0.093832522630692],[-0.10539611428976,0.035048466175795,-0.049159526824951]],[[0.031154323369265,-0.044169995933771,-0.023242704570293],[-0.022869488224387,-0.030511736869812,0.019630789756775],[-0.047770194709301,-0.075262196362019,0.047639437019825]],[[0.086283266544342,0.10038074105978,-0.0046240380033851],[0.089107654988766,0.011864421889186,0.026955684646964],[-0.012821025215089,0.021105224266648,-0.053463906049728]],[[-0.05870058760047,-0.034678086638451,-0.039308656007051],[-0.039387799799442,0.062638990581036,0.04953820630908],[-0.04823512583971,0.039758995175362,0.022278144955635]],[[0.011126373894513,-0.028052251785994,0.030607799068093],[-0.028660617768764,0.073936089873314,-0.029708569869399],[0.030042294412851,-0.058326575905085,-0.076562687754631]],[[0.0058912490494549,-0.028247445821762,-0.015482542105019],[0.021300606429577,-0.011043019592762,-0.056706167757511],[0.0010580633534119,0.0055862450972199,-0.0011067835148424]],[[-0.022428799420595,0.037659782916307,-0.016134656965733],[-0.0098964823409915,0.0043936059810221,0.016136212274432],[-0.067742437124252,0.0019481962081045,-0.0040476256981492]],[[-0.051241230219603,-0.021466836333275,-0.041736524552107],[0.060011859983206,-0.022972423583269,0.078333586454391],[-0.056468836963177,0.039834968745708,0.028284776955843]],[[0.0442806892097,-0.010450921952724,0.011373177170753],[0.021164091303945,0.037597000598907,0.025358503684402],[0.062568038702011,-0.0098776277154684,0.025897847488523]],[[0.058971647173166,0.083848111331463,0.03081321157515],[-0.022144183516502,-0.047942280769348,-0.012169017456472],[-0.09974929690361,-0.044699810445309,0.04307396709919]],[[0.0020092048216611,-0.025914650410414,0.0097869047895074],[-0.022649446502328,0.024497387930751,0.031137153506279],[0.051173616200686,0.09822753071785,0.073263503611088]],[[0.024106731638312,-0.021459423005581,0.005859075114131],[0.036276835948229,-0.037694215774536,-0.0086237564682961],[0.051941324025393,-0.053485114127398,-0.015557292848825]],[[0.028528535738587,-0.037334259599447,0.0059325406327844],[-0.0011352058500051,0.058342859148979,-0.094295606017113],[0.037461437284946,-0.048434905707836,-0.018879350274801]],[[-0.11045153439045,-0.019600121304393,0.020593900233507],[0.045126397162676,-0.060184080153704,-0.036407254636288],[-0.10994929820299,0.0037269208114594,0.022860186174512]],[[0.087438091635704,-0.015363584272563,-0.013073945418],[-0.019322354346514,-0.029580805450678,0.024062080308795],[0.029994772747159,-0.077224060893059,0.032110165804625]],[[-0.0047999601811171,0.013071185909212,0.028308281674981],[0.098536223173141,0.011829920113087,0.031492225825787],[0.035697892308235,-0.0080947624519467,-0.025839813053608]],[[-0.022279884666204,0.0063948039896786,0.056280057877302],[0.11861395835876,-0.0826221331954,-0.0048887631855905],[0.039767324924469,-0.021838599815965,0.052873112261295]],[[-0.0089424606412649,-0.0076848231256008,0.019179403781891],[0.020569376647472,0.048522938042879,0.015273462049663],[-0.01801797747612,-0.0024391822516918,-0.016724454239011]],[[-0.0057487050071359,0.071954309940338,0.04608054459095],[0.044447924941778,-0.069249369204044,-0.059078495949507],[0.10352016985416,0.044468939304352,0.097965143620968]],[[0.011926670558751,0.0051035461947322,0.040910951793194],[0.046965006738901,0.021794252097607,0.023710636422038],[0.090512953698635,0.054075915366411,0.035215388983488]],[[-0.069189369678497,0.040168177336454,-0.042914658784866],[-0.049863781780005,0.031776782125235,0.071475669741631],[0.10929914563894,-0.047420900315046,0.013087008148432]],[[-0.065367922186852,0.0015909483190626,-0.042063184082508],[0.054525472223759,-0.062643311917782,0.053300347179174],[-0.047173872590065,-0.029817182570696,0.056981902569532]]],[[[-0.0049487887881696,0.014203753322363,0.001067690202035],[0.030121169984341,-0.010589660145342,0.010233918204904],[-0.050929516553879,0.041664488613605,-0.031729590147734]],[[0.058946505188942,-0.013469003140926,0.027989242225885],[0.011000181548297,0.017359003424644,-0.0045720296911895],[0.029341999441385,-0.043258167803288,0.0073764272965491]],[[-0.011791464872658,0.022436931729317,-0.031327918171883],[-0.036958999931812,0.021629696711898,-0.047504231333733],[-0.0091416239738464,0.079195365309715,0.045757006853819]],[[-0.016609128564596,0.014836424961686,0.041276458650827],[0.039389289915562,0.018677912652493,-0.011205097660422],[0.00079357216600329,0.018751073628664,0.067121796309948]],[[0.0301429387182,-0.020456720143557,0.033025525510311],[0.0036577589344233,0.0065264822915196,0.0016997170168906],[-0.0061204247176647,-0.011440454050899,-0.057001203298569]],[[0.071809530258179,0.0059360936284065,-0.015188636258245],[0.02871229313314,-0.0099834492430091,0.062217988073826],[-0.050351329147816,-0.032774399966002,-0.04670163244009]],[[0.039503894746304,-0.010606861673295,0.0039905603043735],[-0.021878225728869,-0.031335666775703,-0.12420728802681],[-0.038376208394766,-0.0068890103138983,0.054828435182571]],[[0.029091354459524,0.028504585847259,-0.041446447372437],[-0.029573477804661,0.0038063784595579,0.092648409307003],[0.041729848831892,-0.020984921604395,0.01711499504745]],[[-0.066754721105099,0.0390949472785,-0.01388699002564],[-0.00080099806655198,-0.017607910558581,-0.024185560643673],[0.0089976619929075,0.060937449336052,-0.03564165532589]],[[-0.0051830634474754,-0.0061816503293812,0.0041141822002828],[0.10490653663874,-0.055911723524332,0.033610142767429],[0.10600686818361,-0.12025660276413,0.037994690239429]],[[-0.0021857593674213,-0.056459285318851,0.016328755766153],[0.032079502940178,-0.086434490978718,0.074687883257866],[0.049611136317253,0.056226942688227,-0.002120062476024]],[[-0.082691766321659,0.04673670604825,0.037670336663723],[-0.0097831897437572,-0.070588871836662,0.057248882949352],[-0.042459852993488,0.039111584424973,-0.0023382513318211]],[[0.010773756541312,0.01794196292758,-0.0087309805676341],[0.0028771113138646,0.030660687014461,-0.0085006849840283],[-0.020579271018505,-0.025304742157459,-0.12217934429646]],[[0.038115285336971,0.02302061393857,-0.053887370973825],[-0.045946519821882,-0.0044650570489466,-0.040487114340067],[0.080872148275375,0.029143055900931,0.04122656211257]],[[0.034541949629784,0.047303952276707,0.01430462859571],[-0.044348008930683,0.010279454290867,0.010879620909691],[-0.038857214152813,0.04594636708498,0.045752249658108]],[[-0.043870773166418,0.032019130885601,-0.037935826927423],[0.036445625126362,0.015330792404711,-0.041218213737011],[0.008073290809989,-0.0034629236906767,0.018871745094657]],[[-0.044885668903589,0.0015520316082984,0.013487230055034],[0.036866202950478,-0.058895338326693,-0.081490777432919],[0.024298364296556,-0.04239172115922,0.042696230113506]],[[-0.013580424711108,0.037990938872099,0.050863329321146],[0.02690252661705,0.061414908617735,-0.045420855283737],[-0.010321422480047,-0.039626535028219,0.0081679318100214]],[[0.010570405982435,-0.023955278098583,0.0025271053891629],[0.092566646635532,-0.041708461940289,0.0094573032110929],[0.025721844285727,0.0015565195353702,-0.040887873619795]],[[0.048553120344877,0.045050296932459,-0.024961134418845],[-0.057577203959227,0.072728917002678,0.034502610564232],[0.05918026342988,0.010715243406594,-0.056971985846758]],[[0.015389611944556,-0.018417980521917,-0.0035108129959553],[0.0071983244270086,-0.018258202821016,0.0027590657118708],[-0.092874750494957,0.010520556941628,-0.055362895131111]],[[0.077554173767567,-0.023481097072363,0.046858105808496],[0.11393322050571,-0.0045444709248841,-0.048180233687162],[-0.030837126076221,0.027927109971642,0.055739358067513]],[[-0.066370844841003,0.03539377078414,-0.03446152061224],[0.0085893841460347,0.08859408646822,0.032623097300529],[0.04928395152092,-0.063242584466934,-0.014899148605764]],[[5.9176516515436e-05,-0.037321798503399,0.043621737509966],[-0.0287298373878,0.044078134000301,-0.044760558754206],[0.097979702055454,0.040489692240953,-0.015654193237424]],[[-0.023141846060753,0.014932330697775,0.031410951167345],[-0.010508216917515,-0.0020424434915185,-0.0089049600064754],[0.048159215599298,0.036670781672001,0.018937654793262]],[[0.014220009557903,-0.032101605087519,0.0088690165430307],[-0.022212587296963,-0.0077970568090677,0.065955646336079],[-0.0054695750586689,0.024483377113938,-0.011618572287261]],[[-0.052697822451591,0.039976269006729,0.070595949888229],[-0.00192890339531,0.041956592351198,0.082587212324142],[-0.041841041296721,0.033066306263208,-0.0069009005092084]],[[0.031179310753942,0.010722678154707,-0.049381658434868],[-0.020553257316351,-0.0095459120348096,-0.006161087192595],[-0.0090376464650035,0.018858714029193,0.076006226241589]],[[-0.038530565798283,0.0176957603544,-0.0043422724120319],[-0.032937753945589,-0.0017306980444118,-0.041744451969862],[0.046118319034576,0.018327051773667,-0.041889727115631]],[[-0.043390013277531,0.049431227147579,0.037431269884109],[0.054186180233955,0.025923848152161,-0.035407572984695],[0.024914160370827,-0.024494806304574,0.011776500381529]],[[0.03604856133461,0.010005593299866,0.058103669434786],[0.0054546929895878,0.028947031125426,0.009885118342936],[-0.032924607396126,0.015430133789778,-0.048771321773529]],[[0.026682451367378,-0.018183689564466,0.011745562776923],[0.019544618204236,0.04760804772377,0.014941511675715],[0.0095016025006771,0.041351202875376,0.0062285820022225]],[[-0.011668855324388,0.0028438505250961,-0.048205245286226],[-0.027183748781681,-0.0072778495959938,0.0029880893416703],[-0.016783514991403,0.025557992979884,0.029279729351401]],[[-0.022576130926609,0.0094167552888393,0.023324534296989],[0.022901697084308,0.048339087516069,-0.029100643470883],[-0.034081913530827,0.065361179411411,-0.0087622096762061]],[[-0.046360224485397,-0.0022519796621054,0.0049112848937511],[-0.011207362636924,0.03835504129529,-0.077272824943066],[0.0014287665253505,-0.019654555246234,-0.021748393774033]],[[-0.059191796928644,-0.0076486207544804,0.029171304777265],[0.016163490712643,0.013755620457232,0.027346186339855],[0.014238573610783,0.034366227686405,-0.02551799453795]],[[0.024124206975102,-0.024416489526629,0.0069692488759756],[-0.027697462588549,-0.051533974707127,0.035472486168146],[-0.0037388382479548,0.049325365573168,-0.017130309715867]],[[-0.01089246571064,0.10501722246408,-0.00085294403834268],[0.042647749185562,0.024800287559628,0.00066686974605545],[0.063598319888115,0.0026594237424433,0.0046882918104529]],[[0.029839990660548,0.0074606528505683,0.002781828166917],[-0.065667487680912,0.027069896459579,-0.010726547800004],[0.047919280827045,0.0012142325285822,-0.014379003085196]],[[0.037200037389994,-0.043645676225424,0.01090466696769],[0.023273970931768,-0.037405431270599,-0.016435073688626],[0.0075080203823745,0.054241091012955,0.040077310055494]],[[-0.029422983527184,-0.0057345735840499,0.024595364928246],[0.025962729007006,0.01646164804697,-0.017862774431705],[-0.040519598871469,-0.021048767492175,0.030768686905503]],[[0.033213220536709,-0.053712863475084,-0.030338341370225],[-0.0023157384712249,-0.02840518578887,0.038959570229053],[0.0081860376521945,0.051202025264502,0.045597352087498]],[[0.038522474467754,-0.028827069327235,-0.0095775239169598],[0.010102714411914,-0.021741397678852,0.058536965399981],[-0.0026554625947028,0.0189756359905,0.081212125718594]],[[-0.010002184659243,-0.062139969319105,-0.025782603770494],[-0.031344778835773,0.0793387144804,0.059470020234585],[0.030229864642024,0.010935863479972,0.018511608242989]],[[0.0042596277780831,-0.028193147853017,-0.0075276466086507],[0.07239905744791,0.011018657125533,-0.030632575973868],[0.08825596421957,-3.3463860745542e-05,0.07094232738018]],[[0.0051627666689456,-0.00071333604864776,0.036985941231251],[-0.014623454771936,0.076097741723061,0.024499775841832],[-0.0066374405287206,0.030726071447134,-0.0032132745254785]],[[-0.016004638746381,0.0093966852873564,-0.10605563223362],[-0.012767706997693,0.041585471481085,0.02663610316813],[0.0064232349395752,0.079189479351044,-0.02470456622541]],[[-0.081725046038628,0.062995657324791,-0.072283886373043],[0.10964960604906,0.043568897992373,0.0090264063328505],[0.058059740811586,0.0031252140179276,-0.052619311958551]],[[0.024074129760265,-0.025575149804354,-0.02205403894186],[-0.01385841332376,0.012117736972868,0.025355326011777],[0.03244860842824,0.0025756217073649,0.019398571923375]],[[-0.041404075920582,-0.0095041627064347,0.037842754274607],[-0.011471331119537,-0.0522076562047,0.027694681659341],[-0.056734263896942,-0.048102669417858,0.015507069416344]],[[-0.0011532853823155,-0.02240863442421,-0.024069849401712],[0.030365398153663,-0.0046465420164168,-0.019923634827137],[0.0041041537187994,0.00097092654323205,0.015137092210352]],[[-0.079410210251808,0.013813965953887,0.01523628551513],[-0.044528365135193,0.0158775690943,0.00083307479508221],[0.029148602858186,-0.0016214651986957,-0.037508253008127]],[[0.03035020455718,0.0018415425438434,-0.048484347760677],[0.037961803376675,0.030125711113214,-0.02136168256402],[-0.033821411430836,-0.020492490381002,0.0043427441269159]],[[0.0056797550059855,0.034745529294014,0.018805511295795],[-0.020250996574759,0.03491185605526,0.029298478737473],[-0.029357638210058,0.01612195558846,0.073620781302452]],[[0.075812265276909,0.072263643145561,-0.031740415841341],[0.067790105938911,0.019345050677657,0.029042953625321],[0.01508923061192,0.022138511762023,0.088335506618023]],[[0.044612567871809,0.055838298052549,-0.0093288645148277],[0.0619249753654,-0.020027937367558,0.0034092480782419],[-0.0077037950977683,0.0074115972965956,-0.0066847247071564]],[[-0.054241787642241,0.069099329411983,0.046026729047298],[0.071148738265038,0.052832644432783,0.079055562615395],[-0.055877584964037,0.011578077450395,-0.036281246691942]],[[-0.015649491921067,-0.030577000230551,-0.026973817497492],[0.047844558954239,0.06581050157547,0.038223695009947],[-0.06589463353157,-0.044553380459547,-0.042607132345438]],[[-0.029168585315347,0.0060404487885535,0.0039768163114786],[-0.020239412784576,0.043674502521753,-0.0091014141216874],[-0.075949937105179,-0.020818529650569,0.017154760658741]],[[0.045921392738819,0.019303688779473,-0.058038003742695],[0.057033527642488,0.046221725642681,0.026785483583808],[-0.053054768592119,0.023334691300988,0.0042216507717967]],[[0.0037281636614352,0.069137401878834,0.010985240340233],[-0.034171707928181,0.015354393981397,-0.019337885081768],[-0.0057595483958721,0.016781384125352,-0.014932327903807]],[[0.048580888658762,0.026794536039233,-0.011117410846055],[0.013278324157,0.031957399100065,0.059187561273575],[0.045583199709654,0.039475128054619,0.078360803425312]],[[-0.012196475639939,0.028140779584646,-0.036371257156134],[0.054689776152372,-0.0025928316172212,0.037494394928217],[0.038194190710783,-0.013196214102209,0.014490161091089]],[[-0.02610071003437,-0.016470598056912,0.067472197115421],[0.0089441798627377,0.031301468610764,-0.018767999485135],[0.017529360949993,0.0037825466133654,0.038469102233648]],[[-0.01095122192055,0.040893901139498,0.02547056414187],[0.0028923240024596,-0.079199850559235,0.0067737773060799],[0.024571780115366,-0.036410052329302,0.053274840116501]],[[0.00014316468150355,0.012547790072858,-0.0074207400903106],[-0.021122643724084,-0.0064493962563574,0.056254453957081],[0.018206179141998,-0.022848634049296,0.029215175658464]],[[0.010697605088353,0.046357333660126,-0.028278915211558],[0.00045821504318155,-0.016653526574373,-0.039886876940727],[-0.020372649654746,-0.014999764040112,0.067777305841446]],[[0.055916018784046,0.061462707817554,0.049647055566311],[-0.037888709455729,0.0091546094045043,0.087680019438267],[0.018446754664183,0.027626244351268,-0.010347065515816]],[[-0.010766298510134,0.0055205398239195,-0.012835755012929],[0.051098357886076,-0.028926318511367,0.021457375958562],[0.016926927492023,-0.0072863567620516,-0.027382118627429]],[[0.027982596307993,-0.058671955019236,0.014326081611216],[0.027011087164283,0.0020252449903637,-0.010609698481858],[0.015142597258091,-0.030424455180764,0.0086410939693451]],[[-0.04479518532753,0.030996484681964,0.021869901567698],[-0.031504075974226,-0.011660225689411,-0.0014290697872639],[0.03489725664258,-0.043909132480621,-0.024434261023998]],[[0.035254344344139,-0.055682577192783,-0.0077631925232708],[0.038621135056019,-0.010713393799961,0.03514764085412],[-0.02578611113131,-0.0013562797103077,0.06746780872345]],[[0.03313159942627,-0.028713589534163,0.018396059051156],[0.021997587755322,-0.019122242927551,-0.0020020937081426],[0.046121966093779,0.00059351744130254,-0.042129594832659]],[[-0.00050976040074602,-0.037419464439154,-0.02506372705102],[-0.010686962865293,0.07042770087719,0.041755042970181],[-0.051243122667074,0.030363349243999,0.028496626764536]],[[-0.0153818000108,-0.021361658349633,0.0073020635172725],[0.039067808538675,0.046059746295214,0.038231335580349],[-0.013930178247392,-0.021400637924671,-0.023658884689212]],[[-0.03910206258297,-0.066819295287132,-0.01876918412745],[-0.0055321771651506,-0.001937965513207,0.021169189363718],[-0.013051876798272,-0.0052635283209383,0.056817691773176]],[[0.048862401396036,0.035209465771914,0.0026885475963354],[-0.012871464714408,-0.081611260771751,0.018778625875711],[-0.034904897212982,0.0031473864801228,0.039258435368538]],[[0.0086937062442303,0.066958673298359,-0.021051837131381],[-0.028227290138602,0.13007202744484,0.051816713064909],[-0.043401293456554,0.047754358500242,0.0001674514496699]],[[0.065551117062569,-0.01263612229377,0.054130990058184],[0.035524230450392,-0.02582979388535,-0.06185233220458],[0.067004293203354,-0.057249583303928,0.02458774112165]],[[-0.0041320719756186,-0.020061179995537,0.045776214450598],[-0.084075063467026,0.091920837759972,-0.038737140595913],[0.034875977784395,0.012977821752429,0.016978288069367]],[[-0.0075088534504175,0.01326378621161,-0.0030453184153885],[0.015189897269011,0.060817290097475,0.065791375935078],[-0.016052972525358,-0.01052023191005,-0.024682067334652]],[[-0.010385745204985,-0.01978275552392,0.0040525859221816],[0.022331666201353,-0.014101094566286,-0.01985271833837],[0.034667246043682,-0.04595935344696,0.037721406668425]],[[0.0763029307127,0.039723500609398,-0.017292087897658],[-0.039593115448952,0.12213147431612,0.0034390152432024],[-0.010803026147187,0.066382497549057,-0.032133873552084]],[[0.066098652780056,-0.017682619392872,0.015676019713283],[0.0024768305011094,-0.01316144503653,0.015788465738297],[-0.048858016729355,0.045271433889866,-0.031014433130622]],[[0.018404917791486,-0.00069659197470173,0.06395947933197],[-0.023879220709205,0.045242503285408,0.0048573911190033],[0.0086310356855392,0.021204588934779,-0.026766983792186]],[[-0.00087440881179646,0.046460118144751,0.019838823005557],[0.014498945325613,-0.029122870415449,-0.063997380435467],[-0.0055368547327816,0.051634319126606,0.015517184510827]],[[-0.052680715918541,0.013836877420545,-0.01417261082679],[-0.052388120442629,0.011143281124532,0.0070051704533398],[-0.01902506314218,0.020030174404383,-0.064295887947083]],[[-0.0025026013609022,-0.052974544465542,-0.051075030118227],[-0.016052970662713,-0.056464843451977,-0.045103307813406],[0.045990288257599,0.029530767351389,-0.01240059453994]],[[-0.01844760030508,0.027908364310861,0.097474843263626],[0.031453624367714,0.068001858890057,0.042872726917267],[-0.032987985759974,-0.0087027307599783,-0.029010277241468]],[[-0.0070937979035079,-0.022285964339972,-0.023379009217024],[-0.010578412562609,-0.048684399574995,0.060763966292143],[0.054019194096327,0.027674803510308,0.033585738390684]],[[0.047414597123861,0.0074012284167111,-0.085273005068302],[-0.082318313419819,0.13814325630665,0.016273017972708],[-0.045539144426584,0.10445126891136,0.00062522327061743]],[[0.033551082015038,0.0082712294533849,-0.03672307357192],[-0.0021446095779538,-0.055097758769989,-0.0064208721742034],[-0.020082343369722,-0.0035027074627578,0.014476316049695]],[[0.023400507867336,0.0085065942257643,0.0031846966594458],[-0.031724952161312,0.039464872330427,-0.01960613578558],[0.00071162119274959,-0.025254659354687,0.035554017871618]],[[0.04039653018117,0.056504771113396,-0.020735248923302],[-0.0069245775230229,0.0566186606884,-0.03967772051692],[-0.0059503591619432,-0.0061776228249073,0.054429966956377]],[[0.02974590472877,0.013653624802828,0.032569702714682],[-0.052502896636724,0.058165200054646,0.059521943330765],[0.02837653644383,-0.04240046069026,-0.006653530523181]],[[-0.012140233069658,-0.0023986243177205,-0.042210143059492],[-0.0040761041454971,0.032565850764513,-0.023440083488822],[0.044980112463236,0.022786512970924,-0.02310337126255]],[[0.01072664745152,0.040100485086441,0.020687682554126],[-0.050812404602766,0.024510379880667,-0.020364284515381],[0.009447175078094,-0.011258192360401,-0.021821487694979]],[[0.043568890541792,0.021165253594518,-0.035266913473606],[0.017652962356806,-0.010293051600456,0.074806600809097],[0.022494826465845,0.0018655747408047,-0.039431612938643]],[[-0.029055630788207,0.0076036183163524,0.00091359665384516],[0.029185608029366,0.059576686471701,-0.02016344293952],[-0.0055853854864836,0.00051048578461632,0.025780798867345]],[[0.039646651595831,0.061488628387451,0.038201823830605],[0.017101479694247,0.040905334055424,-0.065986551344395],[-0.019651919603348,-0.06339330971241,-0.022877471521497]],[[-0.00891880877316,0.037200804799795,-0.0042990325018764],[-0.025693023577332,-0.043997280299664,-0.015490269288421],[0.069658607244492,0.027205735445023,0.012860638089478]],[[0.051593363285065,0.070611357688904,-0.041788510978222],[-0.0040946435183287,0.047928366810083,0.041156444698572],[-0.043034747242928,-0.015189943835139,0.04180471599102]],[[0.0053276531398296,0.007313116453588,0.067984662950039],[0.014184290543199,0.062556356191635,0.069498129189014],[0.02541002817452,0.087508544325829,-0.024727832525969]],[[-0.075868636369705,0.018911110237241,-0.005818868521601],[0.034417845308781,0.032011169940233,-0.018455721437931],[-0.020647762343287,-0.019499896094203,0.00027731803129427]],[[0.022423436865211,-0.067872874438763,0.041216652840376],[0.009434387087822,0.078131213784218,-0.0093560228124261],[0.09130822122097,-0.048052497208118,-0.0013026935048401]],[[-0.020426023751497,0.018178576603532,0.055372435599566],[0.072125837206841,-0.051740977913141,0.030365906655788],[0.033608935773373,0.0020544468425214,-0.0019284919835627]],[[-0.02357479184866,0.014924156479537,-0.048496786504984],[-0.00030799224623479,-0.058951888233423,0.018972244113684],[-0.015602312982082,0.012423945590854,0.018619431182742]],[[0.018524752929807,0.043213374912739,0.026395790278912],[0.02234809845686,-0.0084489472210407,0.033055476844311],[-0.013472539372742,-0.0078941974788904,0.016548318788409]],[[-0.069090329110622,0.033412829041481,0.031529426574707],[-0.008668732829392,0.0097026862204075,0.079471439123154],[-0.0092710107564926,0.054333418607712,0.0028676120564342]],[[-0.017096273601055,-0.036139693111181,-0.00061580445617437],[0.071196705102921,0.012996738776565,-0.0077571463771164],[0.0046584578230977,-0.022054933011532,-0.030100837349892]],[[-0.011928870342672,-0.013613557443023,0.0042882631532848],[-0.030761107802391,-0.022223513573408,-0.03239556774497],[-0.0022743809968233,0.051939703524113,-0.043798509985209]],[[-0.015395160764456,-0.044544450938702,0.022260958328843],[-0.029909258708358,-0.025248635560274,0.030117748305202],[-0.015606047585607,0.031149571761489,0.039213173091412]],[[-0.04026848077774,0.035605609416962,0.032623879611492],[0.0011203101603314,-0.010997504927218,-0.030193673446774],[0.10818162560463,0.08671223372221,-0.011287324130535]],[[0.0474668815732,0.010172382928431,-0.01321049593389],[-0.039010751992464,0.011894900351763,-0.0066925254650414],[-0.012334262020886,0.0055069737136364,0.051666557788849]],[[0.010604585520923,-0.0062179449014366,0.036006197333336],[0.0018219738267362,-0.025215204805136,-0.042345441877842],[0.04581043869257,-0.082022316753864,0.080902725458145]],[[-0.014145788736641,0.0017059316160157,-0.039227124303579],[0.02158054895699,-0.028745282441378,0.070119701325893],[0.050041999667883,-0.010332447476685,-0.059504583477974]],[[-0.018726216629148,-0.0074346479959786,0.035094618797302],[0.046522915363312,-0.0019124521641061,-0.0060109044425189],[-0.035979017615318,-0.039327993988991,-0.025236498564482]],[[0.0080849751830101,0.045500986278057,0.018422892317176],[0.055522296577692,-0.017856661230326,0.024041930213571],[-0.023594446480274,0.027328921481967,0.055378101766109]],[[0.025137692689896,0.047027409076691,0.057897102087736],[-0.03222792968154,0.0029033634345978,0.019997028633952],[0.05637276545167,0.059401270002127,-0.069223426282406]],[[0.034037005156279,-0.052427496761084,0.03314046934247],[0.013392762281001,0.053839914500713,4.9677910283208e-05],[0.022203005850315,0.016691694036126,-0.017159942537546]],[[-0.025191353634,-0.018852451816201,-0.010668118484318],[0.0028385801706463,-0.018101146444678,-0.048185609281063],[0.039072167128325,0.0047666477039456,0.041089478880167]],[[0.051895849406719,0.039129965007305,0.020297072827816],[0.0075880759395659,-0.0099463984370232,-0.085041888058186],[0.0011698517482728,0.0019489807309583,0.029047882184386]],[[0.0041278470307589,0.02644301764667,-0.039603069424629],[-0.034891631454229,-0.066626854240894,0.029987514019012],[-0.065939247608185,-0.037134636193514,0.026662226766348]],[[0.00022260984405875,0.065678603947163,0.044809699058533],[-0.028341069817543,0.005509851500392,-0.0068377479910851],[-0.0072559919208288,0.015230257995427,0.015940561890602]],[[-0.0034957467578351,-0.016140025109053,0.0075758011080325],[-0.057614333927631,0.051545757800341,0.02705399133265],[0.024025205522776,-0.023764556273818,0.01782906241715]],[[0.015152575448155,-0.03831883892417,-0.056571461260319],[0.044304013252258,0.036629404872656,0.054462809115648],[-0.049321532249451,0.020863393321633,-0.036763232201338]],[[-0.018245870247483,0.013062692247331,-0.061167776584625],[0.038810160011053,0.0041614705696702,0.031835950911045],[0.10168439894915,-0.0786027982831,-0.035618592053652]],[[0.0077049192041159,0.0066392617300153,-0.017426693812013],[0.013047876767814,0.010626446455717,-0.022788407281041],[0.011169444769621,0.033541038632393,-0.052445832639933]]],[[[-0.017256002873182,0.096309833228588,-0.048048857599497],[0.091499492526054,-0.064622841775417,0.017963940277696],[0.066876322031021,0.0054135778918862,0.029770197346807]],[[0.015553934499621,-0.031609710305929,-0.019958371296525],[-0.040024477988482,-0.059462487697601,0.094478391110897],[-0.11156925559044,-0.040633235126734,-0.012267803773284]],[[0.072419494390488,-0.024093532934785,-0.036895472556353],[0.0036449253093451,0.0066091371700168,0.065210856497288],[0.045912064611912,0.062228441238403,-0.057446364313364]],[[-0.0097027197480202,0.07479003816843,-0.076900713145733],[0.060481004416943,-0.023305194452405,-0.0074016079306602],[-0.0020281525794417,0.11385057121515,0.049749381840229]],[[0.070896543562412,-0.045549623668194,-0.0092933652922511],[0.009906142950058,-0.049761213362217,0.018532194197178],[0.030995737761259,0.045472182333469,-0.019731212407351]],[[0.035858761519194,0.011780927889049,0.040007714182138],[0.018644411116838,0.02088819257915,0.038118984550238],[0.06105962023139,0.076323226094246,0.11423084139824]],[[0.05100667104125,0.037635035812855,0.047896862030029],[0.0074248355813324,0.053971324115992,0.018396077677608],[0.041077069938183,0.0054044323042035,-0.068449810147285]],[[0.022342311218381,0.1510755866766,0.032059218734503],[-0.048054698854685,0.045277290046215,-0.016703950241208],[-0.021451655775309,-0.049050252884626,0.04787640273571]],[[-0.0093093141913414,-0.081243224442005,0.041946969926357],[-0.01370270550251,0.077229350805283,0.03163094446063],[0.030969494953752,-0.0065531199797988,0.086258836090565]],[[0.011815431527793,0.13385328650475,0.015367824584246],[0.024475274607539,0.12430562078953,0.056818526238203],[0.14881259202957,-0.057627171278,0.079968273639679]],[[-0.029678178951144,-0.0058201365172863,-0.0043971785344183],[0.031962629407644,0.04189370572567,0.05048543587327],[-0.062117204070091,-0.028964696452022,0.025555111467838]],[[0.033173054456711,0.052154712378979,0.054952371865511],[-0.015581922605634,0.081108823418617,-0.085425227880478],[0.023577634245157,0.02363395690918,0.036658573895693]],[[-0.061199542135,0.0012867052573711,0.10804200172424],[0.026643881574273,0.017024572938681,0.058248210698366],[0.0034032142721117,0.037063825875521,0.035168249160051]],[[-0.0021143089979887,0.073988705873489,-0.099973432719707],[0.0057922517880797,-0.0099605713039637,-0.0039425198920071],[0.0030988322105259,0.091816440224648,-0.077606476843357]],[[0.1642939299345,0.034356772899628,0.19508674740791],[0.1742871850729,0.025725902989507,0.0030163859482855],[0.12335488945246,0.074371933937073,0.15669931471348]],[[-0.055023893713951,0.029754349961877,-0.070005014538765],[-0.071010418236256,0.0012213917216286,0.0315644107759],[0.0024851944763213,-0.049847953021526,0.028932785615325]],[[0.015878070145845,-0.083333902060986,-0.023499103263021],[-0.01766555942595,-0.073852434754372,-0.060347966849804],[0.061078019440174,0.0028145676478744,-0.03812650591135]],[[0.040857959538698,0.026980388909578,-0.0027496367692947],[0.048290275037289,-0.044105965644121,-0.040987182408571],[-0.030134435743093,0.053486671298742,0.014039809815586]],[[-0.047754358500242,0.031724832952023,0.011530266143382],[-0.0026026694104075,-0.038468349725008,0.017973959445953],[0.017394265159965,0.011503344401717,-0.044980335980654]],[[0.02007875405252,0.071399413049221,0.0026065914425999],[0.0096216397359967,0.024532185867429,0.060429185628891],[0.020554061979055,-0.0061014662496746,0.089978724718094]],[[-0.041255120187998,0.091334514319897,-0.0093554789200425],[0.1123149767518,0.018077798187733,-0.046455021947622],[-0.071465514600277,-0.00033211742993444,0.018705768510699]],[[0.0048379027284682,0.078319899737835,0.015742976218462],[0.07479639351368,-0.021237766370177,-0.0093668922781944],[0.055505074560642,0.091033905744553,0.091807723045349]],[[-0.073979713022709,0.048417128622532,-0.059078492224216],[0.033279929310083,-0.015276689082384,0.028255851939321],[-0.021108981221914,-0.07154293358326,-0.017184570431709]],[[0.10333745926619,-0.0044712843373418,0.033926960080862],[-0.0022218350786716,-0.027744211256504,0.0069445082917809],[-0.0058734016492963,-0.021724939346313,-0.025274079293013]],[[-0.07972551882267,-0.0067265462130308,0.030108150094748],[-0.009904557839036,0.010212235152721,0.014888636767864],[0.034283295273781,0.048159092664719,0.032234642654657]],[[0.017620047554374,-0.014765351079404,-0.056231312453747],[-0.0067428844049573,-0.011457012034953,-0.037206277251244],[-0.012362913228571,-0.010658350773156,-0.078967742621899]],[[0.056172013282776,-0.05669030547142,0.043299455195665],[0.026707435026765,0.015766579657793,0.013065008446574],[0.016793990507722,0.069158524274826,0.045818012207747]],[[-0.05246389657259,0.048057787120342,-0.085058033466339],[0.018922856077552,-0.0039632050320506,-0.030863041058183],[-0.037606339901686,-0.024819731712341,-0.015576367266476]],[[0.00017489086894784,0.053768668323755,0.037780307233334],[0.031590696424246,-0.0093819098547101,0.059816665947437],[0.076615191996098,0.06660071760416,0.002969607245177]],[[0.011033112183213,-0.037992667406797,0.038938324898481],[-0.08757971227169,0.038627672940493,0.031781997531652],[-0.048321463167667,0.0071128532290459,0.046692326664925]],[[0.0036960295401514,-0.063727609813213,0.022880187258124],[0.078667961061001,-0.037273366004229,0.0055149612016976],[0.028747482225299,0.047616500407457,-0.0027149466332048]],[[-0.040486857295036,-0.038639679551125,-0.0617152787745],[-0.0087942611426115,-0.024936851114035,0.00054412015015259],[0.032428156584501,-0.12213408946991,0.037022262811661]],[[0.11124360561371,-0.028379609808326,-0.0088078202679753],[0.067691221833229,0.092606216669083,0.011660786345601],[-0.032615333795547,-0.014577670022845,0.051976688206196]],[[0.022046534344554,-0.080491222441196,-0.0049637551419437],[-0.0023830628488213,-0.02966739423573,-0.075617030262947],[0.056511417031288,0.030586935579777,0.052716806530952]],[[-0.0001375183055643,0.015397934243083,0.026866195723414],[0.0068298154510558,-0.0010039553744718,-0.071048378944397],[-0.043626744300127,0.035962793976068,0.034232720732689]],[[0.027036176994443,0.051435105502605,-0.0011765918461606],[-0.019442234188318,0.010877521708608,0.003163504647091],[0.028724975883961,0.040769841521978,0.014536281116307]],[[-0.028217615559697,0.061236593872309,-0.052160117775202],[-0.04312951117754,-0.036952394992113,-0.036440320312977],[-0.072033703327179,-0.078496180474758,-0.03333018347621]],[[0.017448101192713,0.06363969296217,-0.045157603919506],[0.049079336225986,0.077469155192375,0.013193412683904],[-0.022602282464504,-0.009478023275733,0.029224993661046]],[[0.026248881593347,0.052935983985662,0.032766919583082],[0.0070617976598442,-0.027982177212834,-0.0067231156863272],[0.027924114838243,-0.069236159324646,-0.03173903003335]],[[-0.0085790427401662,-0.037847448140383,0.012299470603466],[-0.047006316483021,0.015233689919114,0.018032643944025],[0.0011087612947449,-0.014292717911303,-0.020198680460453]],[[-0.10591938346624,-0.025331737473607,-0.022629072889686],[0.0074660400860012,-0.0073320455849171,-0.011005951091647],[0.002875093370676,0.004570537712425,-0.021798651665449]],[[0.0081426650285721,0.013164310716093,-0.026668140664697],[0.010411625728011,0.039931517094374,0.0079838568344712],[-0.066733919084072,0.024068165570498,0.020639285445213]],[[-0.0088939080014825,0.029966808855534,0.035867307335138],[-0.022605380043387,0.0012261786032468,0.038202900439501],[-0.019603118300438,0.016924662515521,-0.014485792256892]],[[-0.078969046473503,0.015300891362131,0.0034205631818622],[-0.072663880884647,0.091655783355236,0.033393613994122],[0.028962409123778,0.029193677008152,-0.011354402638972]],[[0.014147733338177,0.065358430147171,0.02569342404604],[-0.012030747719109,0.049115918576717,-0.014460485428572],[0.0062266644090414,-0.034218370914459,0.081235624849796]],[[-0.096447639167309,0.061185717582703,-0.023937501013279],[0.10735433548689,0.060963321477175,-0.011211855337024],[-0.0067004943266511,0.084270037710667,0.063274718821049]],[[0.077196769416332,-0.014316794462502,-0.054381106048822],[-0.032727908343077,0.036468274891376,-0.07686659693718],[0.064487352967262,-0.023403629660606,0.11070209741592]],[[0.027769409120083,-0.036350298672915,0.021038431674242],[-0.059521529823542,0.05292534455657,0.018859375268221],[0.058380484580994,0.019944604486227,-0.051537092775106]],[[-0.042039152234793,-0.025340709835291,-0.021067939698696],[-0.063726112246513,-0.065903857350349,-0.014135894365609],[0.0031715375371277,0.071556709706783,0.043402444571257]],[[-0.084991127252579,0.059500504285097,-0.016821656376123],[-0.0026680978480726,-0.050999160856009,0.014202267862856],[-0.074580304324627,0.058125358074903,-0.05386495962739]],[[-0.084752269089222,0.082256123423576,-0.081877291202545],[-0.0063777612522244,-0.060630645602942,0.063813239336014],[-0.0031765880994499,0.029976481571794,0.024717526510358]],[[-0.029732959344983,-0.035899683833122,-0.037426762282848],[-0.047293856739998,-0.022431746125221,-0.023346312344074],[0.057020213454962,0.018833046779037,0.067592352628708]],[[0.017133725807071,0.012149688787758,0.032264303416014],[-0.0053881495259702,0.076465889811516,-0.028759704902768],[0.0045121484436095,-0.059809487313032,0.026879148557782]],[[0.015843769535422,-0.10803236067295,0.042699243873358],[0.010077006183565,0.03304972499609,0.0050404090434313],[-0.016533810645342,0.052114374935627,-0.047750137746334]],[[0.038887280970812,0.11836834251881,0.031669277697802],[0.014716603793204,0.001380582805723,0.034428238868713],[0.074563734233379,0.035943560302258,0.040145676583052]],[[-0.071499928832054,0.075731888413429,0.020998438820243],[-0.027801116928458,0.021250115707517,-0.03716317564249],[0.060632355511189,-0.01100261695683,0.0068368259817362]],[[-0.037447687238455,0.077134720981121,0.068848915398121],[0.003123571863398,0.013047534972429,-0.014274011366069],[0.00024600993492641,0.0075479946099222,0.056910201907158]],[[-0.019280573353171,0.021152663975954,-0.040623564273119],[-0.019002651795745,0.026295119896531,-0.0070020044222474],[-0.0038769361563027,-0.031351678073406,-0.034464199095964]],[[0.031236791983247,0.018273714929819,0.059329181909561],[0.038960695266724,0.097338855266571,0.036672405898571],[0.019288571551442,0.003651846665889,0.0078743491321802]],[[-0.035030752420425,-0.065237067639828,-0.084905974566936],[-0.051305435597897,-0.033911805599928,0.030838320031762],[0.049049772322178,-0.046601515263319,-0.018671942874789]],[[0.0036101290024817,0.053091306239367,0.067951276898384],[-0.032971318811178,-0.022369710728526,0.045942138880491],[-0.01020628772676,0.12510196864605,-0.032329726964235]],[[-0.0065184659324586,-0.01781490445137,-0.047632321715355],[-0.097917556762695,0.0014040831010789,-0.044130850583315],[-0.014083645306528,-0.058258693665266,0.05847354978323]],[[0.010096591897309,0.037535700947046,-0.0019020563922822],[-0.018695848062634,-0.03321398422122,-0.0016482641221955],[0.012706554494798,-0.0021466936450452,0.012458181940019]],[[-0.0089269494637847,-0.021732708439231,0.018835186958313],[-0.031452070921659,-0.0049017616547644,-0.017834678292274],[0.028642328456044,0.074217945337296,0.052975971251726]],[[0.10058142244816,0.017559302970767,0.03284577652812],[0.029644776135683,0.018640922382474,-0.027228001505136],[0.074618436396122,0.0092107877135277,0.031777329742908]],[[-0.055065236985683,0.0037008451763541,0.0081814518198371],[0.039754264056683,0.0094235353171825,0.034867826849222],[0.028545562177896,0.082879036664963,-0.018307542428374]],[[-0.045574046671391,-0.017333898693323,0.059527643024921],[-0.0084499884396791,-0.034943319857121,0.010797363705933],[-0.041263695806265,0.07166188955307,0.040812864899635]],[[0.020825723186135,0.0083654718473554,-0.031580727547407],[-0.014839298091829,0.068403959274292,0.010638711974025],[0.016667375341058,-0.012880342081189,0.004995396360755]],[[-0.0049422848969698,0.0040513351559639,-0.013254778459668],[-0.04105693474412,-0.0022149905562401,-0.043176926672459],[-0.041044607758522,0.019341805949807,0.049633830785751]],[[-0.0041732215322554,0.040423028171062,0.066496394574642],[0.026090638712049,0.054877869784832,-0.054827056825161],[0.071780331432819,0.055859040468931,-0.036014791578054]],[[-0.05114308744669,0.0019080867059529,-0.0027928533963859],[0.033774949610233,-0.060860693454742,0.01399908028543],[-0.050929933786392,-0.016246495768428,-0.04266456887126]],[[0.089309878647327,-0.015283382497728,-0.01089228503406],[-0.0023063104599714,-0.02636219188571,0.070522658526897],[0.014562097378075,0.033952198922634,-0.027701562270522]],[[-0.029409600421786,0.017427429556847,0.067450158298016],[0.072989739477634,0.040983851999044,-0.0012448210036382],[0.11318935453892,0.026188204064965,-0.05615246668458]],[[-0.023944526910782,0.10226061940193,-0.009905070066452],[0.010417967103422,-0.0061758253723383,-0.015505625866354],[0.16223001480103,-0.030422771349549,-0.0070624486543238]],[[0.043857596814632,0.018746417015791,-0.024704985320568],[0.04189046099782,-0.041793059557676,-0.052921481430531],[-0.029588971287012,0.038478437811136,-0.15747009217739]],[[0.049455132335424,0.057431161403656,0.062764838337898],[0.044148255139589,0.045099101960659,0.087435446679592],[-0.011056963354349,0.027927376329899,-0.062637515366077]],[[0.081798143684864,-0.069777019321918,0.029512444511056],[0.040291864424944,0.052491657435894,0.024332692846656],[0.0293541662395,0.061261065304279,-0.036102142184973]],[[-0.0074139256030321,0.0071283425204456,0.015703976154327],[-0.054057445377111,0.037151861935854,-0.015658149495721],[0.15391078591347,-0.016643315553665,0.028125433251262]],[[0.02494677528739,-0.0083692111074924,-0.029920114204288],[-0.028932984918356,-0.050908792763948,0.047446429729462],[0.00020641385344788,0.029699774459004,0.071667440235615]],[[0.046567942947149,-0.028143413364887,-0.029322538524866],[-0.10226771980524,-0.024671236053109,-0.028696289286017],[-0.032604988664389,-0.09657047688961,0.01106902398169]],[[-0.038364112377167,0.075507700443268,-0.010254902765155],[0.053950384259224,-0.0040703974664211,-0.017536520957947],[0.062273193150759,0.065058320760727,-0.0038955784402788]],[[0.02591192163527,0.058788124471903,0.02418477460742],[0.0084849940612912,-0.011826561763883,-0.010118859820068],[-0.055603712797165,-0.01905800588429,-0.028191907331347]],[[0.043782077729702,-0.086651317775249,-0.019055243581533],[0.03062548674643,0.024487983435392,0.067299321293831],[0.053381867706776,0.020857082679868,0.039082027971745]],[[0.010670428164303,0.063146978616714,-0.0067739370279014],[-0.067665964365005,0.022578464820981,0.077034682035446],[-0.072995401918888,-0.019187590107322,0.0051358067430556]],[[-0.02611867710948,-0.04004804417491,0.028636142611504],[-0.0051462049596012,-0.038236439228058,0.056773733347654],[-0.077851697802544,-0.06941482424736,-0.029899269342422]],[[-0.019953859969974,-0.030911970883608,-0.03686212003231],[-0.010958570986986,-0.083936929702759,-0.029846984893084],[-0.013582736253738,-0.0064234300516546,-0.043504036962986]],[[-0.014991020783782,-0.020007088780403,0.040443170815706],[0.018734183162451,0.03302688151598,0.080180324614048],[-0.020818958058953,0.0031320373527706,0.05074966698885]],[[-0.012250103987753,0.070223413407803,0.051655415445566],[0.03286574780941,0.038587279617786,0.051988806575537],[0.0013535373145714,0.011025622487068,-0.015269178897142]],[[-0.083672516047955,0.0097362538799644,-0.0071592023596168],[0.061333190649748,0.049074094742537,-0.0037850893568248],[-0.083562426269054,0.072407998144627,-0.023724200204015]],[[0.018819637596607,-0.029799442738295,0.064372293651104],[-0.026726985350251,0.030726831406355,0.0070326332934201],[-0.06218733265996,-0.060256730765104,0.081432424485683]],[[0.011881081387401,0.048569671809673,0.14378109574318],[0.046374708414078,-0.022494629025459,0.0055882791057229],[-0.051352839916945,0.003681777510792,-0.011158530600369]],[[0.070266090333462,-0.029349828138947,-0.0044934493489563],[-0.011657825671136,0.10688319057226,0.0013178270310163],[-0.00063633266836405,0.034893196076155,0.0061828731559217]],[[0.051531214267015,-0.002630363451317,0.030749417841434],[0.072901152074337,-0.0021611666306853,-0.024943893775344],[-0.043737750500441,0.012418416328728,-0.027085199952126]],[[0.034495733678341,0.051965270191431,0.029609423130751],[0.039451111108065,0.022994089871645,0.024270365014672],[0.054252989590168,0.01661641150713,-0.066461376845837]],[[0.012379797175527,0.0078398631885648,0.0082754110917449],[-0.0041742357425392,0.043141826987267,0.058043796569109],[-0.046931080520153,0.015594203956425,0.05053860321641]],[[-0.012774417176843,-0.045285873115063,0.13877803087234],[-0.029121547937393,-0.10243701189756,-0.043606001883745],[0.049692332744598,-0.0088015710934997,0.0026096033398062]],[[0.08771625161171,0.073017224669456,0.016629911959171],[-0.053740344941616,-0.0207623783499,-0.008138514123857],[-0.034907683730125,0.047012358903885,0.07637295126915]],[[-0.035385053604841,0.05838156491518,-0.020369442179799],[-0.043285440653563,0.034661322832108,-0.017453107982874],[0.1224337220192,0.032683685421944,-0.0019955327734351]],[[0.0016089091077447,0.010862512513995,-0.068739794194698],[-0.0010947202099487,-0.008088992908597,0.052828885614872],[0.024463821202517,-0.047160483896732,0.0021997992880642]],[[-0.08355288207531,0.046233974397182,-0.0095380702987313],[-0.022804526612163,-0.038483019918203,-0.026598500087857],[-0.066272161900997,-0.021608013659716,-0.043632924556732]],[[0.0071352287195623,0.070101737976074,0.069499768316746],[0.019462265074253,-0.092964984476566,0.037616390734911],[-0.082897841930389,0.0074410513043404,-0.028890704736114]],[[-0.007889986038208,0.010863242670894,0.062967002391815],[0.0010411441326141,0.0027144784107804,0.017367796972394],[0.052030697464943,0.070965602993965,-0.014961950480938]],[[0.027550395578146,0.020532328635454,0.0015543268527836],[0.059966545552015,0.058329995721579,-0.0025263703428209],[-0.01590927504003,-0.056534606963396,-0.048350464552641]],[[0.045840099453926,-0.022047039121389,0.041860621422529],[0.001934633939527,0.0083275828510523,0.012517485767603],[-0.030728651210666,0.038618911057711,0.012963546440005]],[[0.065610729157925,-0.051186963915825,0.023982500657439],[-0.060726340860128,-0.074790470302105,-0.012952827848494],[-0.0082914959639311,-0.0091428374871612,0.0068539162166417]],[[0.022842027246952,0.050828438252211,-0.025542756542563],[-0.0053410097025335,0.039245832711458,0.00076225568773225],[0.10002643615007,0.057605519890785,0.08639819175005]],[[0.030449824407697,-0.040042899549007,0.082089446485043],[-0.040595732629299,-0.048083953559399,-0.048773422837257],[0.049266181886196,-0.028302241116762,0.057905368506908]],[[0.052237585186958,0.0038996564690024,-0.058644093573093],[0.010161880403757,0.0071573667228222,-0.038072511553764],[0.003256217809394,-0.026817517355084,0.010548240505159]],[[-0.017914174124599,0.088153921067715,-0.13362976908684],[-0.068780846893787,0.021423643454909,0.03048418648541],[0.0070321764796972,0.088476486504078,0.033625733107328]],[[-0.0044397851452231,0.084832012653351,0.007267246954143],[-0.043231025338173,-0.0059673441573977,0.020764267072082],[-0.083834134042263,-0.020533677190542,-0.022085918113589]],[[-0.00024028394545894,0.078531555831432,-0.052144277840853],[-0.060388263314962,0.002326536225155,-0.073469586670399],[0.013734631240368,0.032776858657598,0.014356263913214]],[[0.032446801662445,-0.091785758733749,0.016004847362638],[-0.036288131028414,-0.076328590512276,-0.032650638371706],[-0.029269417747855,-0.034828443080187,0.046227887272835]],[[-0.014300727285445,-0.053065180778503,0.051250070333481],[-0.010496458038688,-0.044065818190575,0.038041125983],[0.032876152545214,0.00016503698134329,0.012183860875666]],[[-0.032355178147554,0.035967048257589,0.013269455172122],[-0.0079581690952182,0.024009171873331,0.031119855120778],[-0.057751342654228,0.08400834351778,-0.098636984825134]],[[0.026203334331512,-0.015886090695858,0.051229223608971],[0.05793446674943,-0.062912181019783,0.0058524329215288],[0.017369866371155,0.030727548524737,0.011641731485724]],[[-0.026043441146612,0.013935265131295,-0.035520389676094],[-0.016790676862001,-0.051828637719154,-0.01621444709599],[0.048727300018072,-0.03632915392518,0.016472032293677]],[[0.015438697300851,0.026765711605549,-0.01304417103529],[0.02847746014595,-0.0021192010026425,-0.025285812094808],[0.0041360598988831,0.03826018422842,0.032332308590412]],[[0.046202123165131,0.0077067026868463,0.00082781491801143],[0.11284492909908,0.060477629303932,0.049173090606928],[-0.045238737016916,-0.014305321499705,-0.0055279810912907]],[[0.049820326268673,0.029727347195148,-0.036105874925852],[0.030020864680409,-0.026693243533373,0.029043894261122],[-0.022860275581479,0.0045188004150987,-0.0016914885491133]],[[-0.076794847846031,-0.0059954975731671,-0.028953017666936],[-0.0595827922225,-0.081290729343891,-0.0085510611534119],[-0.029823731631041,-0.022532099857926,-0.01283620391041]],[[0.015184609219432,-0.014777890406549,0.037176366895437],[0.022003270685673,-0.087907530367374,0.018173348158598],[-0.05829594284296,0.0020987563766539,0.0054672625847161]],[[0.028119720518589,-0.0078231254592538,0.007237340323627],[-0.02956142835319,-0.018470473587513,-0.051690351217985],[0.0020778919570148,0.053073804825544,0.015246512368321]],[[-0.036363750696182,0.052179209887981,0.034225851297379],[-0.057520661503077,-0.031840093433857,0.026397541165352],[-0.047920260578394,-0.0043308353051543,-0.08148243278265]],[[0.047929540276527,0.022144628688693,0.010651181451976],[0.017111191526055,-0.019010774791241,0.016653101891279],[-0.035943098366261,0.03658564388752,-0.0101069342345]],[[0.039872318506241,0.080054461956024,-0.045403644442558],[-0.057389263063669,0.040572211146355,0.069491513073444],[-0.024665225297213,-0.053089946508408,0.050783205777407]],[[0.0053562493994832,0.034268498420715,0.021216141059995],[0.021719040349126,0.052872333675623,0.025763601064682],[0.058060627430677,-0.0083226645365357,0.065049529075623]],[[-0.023145407438278,0.00089920498430729,-0.036440964788198],[0.064409032464027,0.051521141082048,0.094134092330933],[-0.031207526102662,0.014078874140978,0.046061262488365]],[[-0.019077191129327,0.014137219637632,-0.020334370434284],[-0.051521982997656,-0.019686754792929,0.043794214725494],[0.027520848438144,-0.025832502171397,0.10467766970396]]],[[[-0.054385010153055,0.043335266411304,0.0049684164114296],[0.025582309812307,-0.021471556276083,-0.028043845668435],[0.040000218898058,-0.0095106977969408,0.054361097514629]],[[-0.042435206472874,0.018847147002816,0.052557498216629],[-0.016557902097702,0.038000468164682,-0.033681221306324],[0.041648026555777,-0.017513630911708,-0.038852572441101]],[[0.03456811234355,0.038637854158878,-0.030026311054826],[-0.018222786486149,0.015509194694459,0.018728710711002],[-0.034711442887783,0.038336455821991,0.0065313316881657]],[[-0.005031774751842,-0.032242480665445,-0.038460567593575],[-0.022221881896257,-0.0038439747877419,-0.043816577643156],[-0.057460345327854,0.11550936102867,-0.088165581226349]],[[-0.095461420714855,-0.038936126977205,8.7772728875279e-05],[-0.011538428254426,0.027863748371601,-0.039765536785126],[-0.042041152715683,0.027378814294934,0.048912733793259]],[[0.009022400714457,0.033214502036572,0.060724969953299],[0.0015981405740604,-0.049211721867323,0.062468118965626],[-0.052723653614521,-0.032197035849094,-0.0097331497818232]],[[0.019170321524143,0.027779979631305,-0.019211946055293],[-0.0074404240585864,0.026060603559017,-0.014091401360929],[-0.018701214343309,-0.075936406850815,0.023199135437608]],[[0.01199827156961,-0.002188459970057,0.0050465962849557],[0.061377588659525,0.019397180527449,0.0059396484866738],[0.02579458989203,0.0056749396026134,-0.061842527240515]],[[0.04481715336442,-0.056237455457449,-0.0095072109252214],[0.029466472566128,-0.0099221616983414,0.01062461361289],[0.0040167369879782,-0.026483619585633,0.058593895286322]],[[0.097216248512268,-0.027491860091686,-0.016935450956225],[0.060178086161613,-0.0062126368284225,-0.081107720732689],[-0.0077319839037955,-0.030568255111575,0.076424330472946]],[[-0.0347621999681,0.057964257895947,-0.086994200944901],[-0.015792071819305,0.0054101594723761,-0.090614847838879],[0.07367068529129,-0.0098675321787596,0.021246906369925]],[[-0.011934502981603,-0.019360283389688,0.011499349959195],[0.050266038626432,-0.038973953574896,-0.011967204511166],[0.010912994854152,-0.072092115879059,-0.033391367644072]],[[-0.061671182513237,-0.0096933031454682,0.033287193626165],[0.0022371206432581,-0.004174099303782,0.03650439530611],[-0.067312829196453,0.084570474922657,-0.044714950025082]],[[0.031159525737166,0.031526308506727,0.021599659696221],[0.0224425252527,0.044112373143435,0.041941907256842],[-0.031830217689276,-0.065326906740665,-0.012930251657963]],[[-0.031113332137465,0.021703770384192,0.0058604367077351],[0.10935506224632,0.016361143440008,0.026140226051211],[0.026149783283472,-0.026683377102017,0.037390150129795]],[[-0.018860395997763,-0.048744425177574,0.058861456811428],[0.035345736891031,0.04083114489913,0.015806192532182],[0.036941688507795,0.033614974468946,-0.0066791502758861]],[[0.086199752986431,0.018221013247967,-0.014716100879014],[-0.054056838154793,-0.047913778573275,-0.077623136341572],[0.086405634880066,-0.018094884231687,-0.017400156706572]],[[-0.019993664696813,-0.00043727553565986,-0.057972561568022],[-0.07759615778923,0.0034606058616191,0.0057421433739364],[0.0064630080014467,-0.011242318898439,-0.085194043815136]],[[-0.094884745776653,-0.065133519470692,0.0029910523444414],[0.043475240468979,0.10786557197571,0.058781694620848],[0.077097401022911,0.056664172559977,-0.0024844880681485]],[[-0.037556242197752,-0.088014461100101,-0.058965977281332],[0.058040488511324,0.0097879823297262,-0.014102835208178],[-0.032345738261938,0.025232844054699,-0.0060507408343256]],[[0.057385958731174,-0.092438258230686,0.032936774194241],[-0.0027204067446291,-0.023794632405043,0.0085514429956675],[-0.027666984125972,0.051710281521082,0.0022999884095043]],[[-0.023227943107486,0.02388603053987,-0.016690064221621],[0.059758812189102,0.020544888451695,-0.031433913856745],[-0.033575490117073,-0.019634794443846,0.03988803550601]],[[-0.0058938460424542,0.026419060304761,0.0048591806553304],[-0.051789734512568,0.018542721867561,-0.0084283379837871],[0.011312237940729,-0.008426571264863,0.085759915411472]],[[0.029462825506926,-0.02015782520175,-0.039361428469419],[-0.07104753702879,0.027285745367408,-0.068312235176563],[0.012200192548335,-0.031672112643719,0.0072280219756067]],[[0.05426999181509,-0.0011789242271334,-0.0076483795419335],[0.033187478780746,-0.0077071120031178,-0.0057699764147401],[-0.031644143164158,0.0062880483455956,0.058873817324638]],[[-0.049307219684124,0.013226497918367,-0.0097165517508984],[0.080840080976486,0.011643735691905,-0.025037739425898],[0.052379596978426,0.12860827147961,0.080035746097565]],[[-0.039584547281265,-0.046673879027367,0.016993569210172],[0.019950227811933,0.026599679142237,-0.0034609511494637],[0.0088185220956802,-0.050086792558432,7.9566227213945e-05]],[[0.037174411118031,-0.00051305536180735,-0.014535763300955],[0.063897132873535,-0.00021481365547515,-0.029236387461424],[0.0064270393922925,-0.0019216220825911,-0.024262085556984]],[[-0.064448438584805,0.080021135509014,-0.011202670633793],[0.017148585990071,0.014926022849977,-0.041894439607859],[-0.0050512501038611,0.03967547789216,0.012937400490046]],[[-0.047172360122204,-0.017601935192943,0.0017659029690549],[-0.02314175106585,0.0034276563674212,-0.024696502834558],[-0.027989121153951,0.0078484574332833,0.044453639537096]],[[-0.015645185485482,-0.031547956168652,-0.018831299617887],[-0.026082152500749,0.081643760204315,0.088223792612553],[0.017123512923717,0.032188422977924,-0.0014918724773452]],[[0.071661338210106,-0.11205784976482,-0.020682375878096],[0.0069075240753591,0.081653207540512,-0.059782166033983],[-0.0052475552074611,0.041351441293955,-0.035971812903881]],[[0.010066637769341,-0.071237243711948,0.0066872201859951],[-0.063438266515732,0.0014125014422461,0.011741440743208],[-0.10226384550333,-0.061238311231136,0.045059219002724]],[[0.0090378625318408,0.061737023293972,0.022522753104568],[0.021887291222811,-0.030640371143818,0.0055969888344407],[-0.041143011301756,-0.015928829088807,-0.0088221319019794]],[[0.036172777414322,-0.026529079303145,-0.031262781471014],[6.00533458055e-05,-0.0087429154664278,-0.038513168692589],[-0.029435846954584,0.03860342502594,-0.017045652493834]],[[-0.011266474612057,0.026074409484863,-0.02804490737617],[0.051865484565496,-0.062520399689674,0.0072238151915371],[0.056090552359819,0.064933441579342,0.028793254867196]],[[0.051214694976807,-0.068908594548702,-0.060834944248199],[-0.01563891209662,-0.02528689801693,0.031327940523624],[0.015353510156274,-0.044204719364643,0.036615040153265]],[[-0.011067785322666,-0.04699832201004,-0.0023463282268494],[-0.046396981924772,-0.03405137732625,-0.031207274645567],[0.034261994063854,-0.081330358982086,0.03189929202199]],[[0.0084725078195333,-0.027194809168577,-0.0099663473665714],[0.025639858096838,-0.0080968486145139,0.012783722952008],[0.0041274847462773,0.047116212546825,-0.0091905277222395]],[[-0.011403112672269,-0.030076058581471,0.0020423040259629],[-0.035712365061045,0.015116234309971,-0.014893467538059],[0.014018878340721,-0.063579097390175,0.040968082845211]],[[0.05651631206274,0.031438022851944,0.034061305224895],[0.061416763812304,0.053664617240429,-0.045001331716776],[-0.034383594989777,-0.040497861802578,-0.037150003015995]],[[0.024496948346496,0.091163873672485,-0.057032469660044],[0.017238074913621,0.035857282578945,-0.0770233720541],[0.07864885777235,0.001216788077727,0.036111228168011]],[[-0.0071332682855427,-0.14328156411648,0.079026393592358],[0.062845394015312,0.053964976221323,0.0077754980884492],[-0.011176820844412,-0.018451565876603,-0.04620198905468]],[[-0.0082992976531386,0.055458575487137,-0.0085493242368102],[0.015259454026818,0.042794216424227,0.07367318123579],[-0.013697493821383,-0.12116947770119,0.016435474157333]],[[0.0011019926751032,-0.022387959063053,-0.03722995147109],[0.069854691624641,-0.00038623515865766,0.01819296553731],[0.044031523168087,-0.045612465590239,0.028828844428062]],[[0.0041765309870243,0.021572077646852,0.0074471118859947],[0.021122600883245,-0.031434446573257,-0.017713151872158],[0.044615015387535,0.015922833234072,-0.010316338390112]],[[0.066824555397034,0.057566929608583,-0.034551423043013],[-0.0071302019059658,-0.047333687543869,0.051096823066473],[0.023924147710204,-0.00948566198349,-0.1081750690937]],[[0.01687647216022,0.0045838025398552,0.045989342033863],[-0.012771962210536,-0.040910661220551,0.06981635838747],[-0.061721164733171,0.04887692630291,0.015767036005855]],[[0.0027060857973993,0.058974556624889,-0.078752614557743],[0.056445520371199,-0.047421261668205,0.036728013306856],[-0.088292792439461,0.068242378532887,0.0010684229200706]],[[-0.10354441404343,0.018522685393691,-0.061271362006664],[0.030218003317714,0.010276027955115,-0.0060352017171681],[0.045365355908871,-0.013606443069875,0.03004751726985]],[[0.0082242833450437,-0.042403291910887,0.021023917943239],[0.054266173392534,-0.026673886924982,-0.048606146126986],[-0.051372110843658,0.0056819031015038,0.035175304859877]],[[-0.032607886940241,0.0018987741786987,-0.0039783036336303],[0.018670570105314,-0.062054771929979,0.053569972515106],[-0.034165296703577,-0.043086405843496,0.038398060947657]],[[-0.055882435292006,0.0061682555824518,-0.00064265338005498],[0.067932493984699,0.062035236507654,0.077782019972801],[-0.063395850360394,-0.035202112048864,-0.076199091970921]],[[-0.043436948210001,0.04664633795619,0.071603246033192],[-0.029717713594437,-0.015021274797618,-0.0025395650882274],[-0.0066194660030305,0.040653888136148,0.031858809292316]],[[0.0026050098240376,0.025476064532995,0.039377935230732],[-0.056568656116724,0.057849131524563,0.0076241092756391],[-0.043770235031843,-0.061484411358833,0.070241563022137]],[[0.041320376098156,0.068295374512672,-0.023267645388842],[0.081353105604649,0.050961285829544,0.0070124790072441],[-0.028267113491893,-0.018754681572318,-0.0065485071390867]],[[-0.019112180918455,0.017469197511673,-0.067768543958664],[-0.00044840353075415,-0.051405400037766,-0.014325626194477],[0.014413145370781,-0.040760111063719,-0.011712228879333]],[[0.044905375689268,0.061384178698063,0.0052099460735917],[-0.042711887508631,-0.038355085998774,0.042748030275106],[0.013456532731652,-0.033533822745085,-0.00062519637867808]],[[-0.036864593625069,-0.032953403890133,0.054848250001669],[-0.084763824939728,-0.0666548833251,-0.055309977382421],[-0.036338642239571,0.039485316723585,-0.01573446020484]],[[0.010457098484039,-0.0484051220119,0.0022827421780676],[-0.0022199221421033,0.026776731014252,0.037518560886383],[-0.014991544187069,-0.10998102277517,0.073021367192268]],[[1.6368150681956e-05,-0.022426191717386,-0.018655242398381],[-0.016813334077597,0.028375944122672,0.034008521586657],[0.040090978145599,-0.086489379405975,0.026332035660744]],[[-0.074644610285759,0.012165226042271,-0.064305648207664],[0.016024231910706,-0.00089242937974632,0.035383284091949],[0.026917433366179,-0.028762485831976,0.073032259941101]],[[0.052945129573345,-0.012606566771865,0.029419587925076],[-0.036610942333937,-0.0439736507833,0.018898451700807],[-0.0049660038203001,0.01172792725265,0.067936405539513]],[[0.091763354837894,-0.049894962459803,-0.0085744401440024],[-0.0011178887216374,0.018585877493024,-0.014903160743415],[0.072358973324299,-0.017143463715911,0.0086493063718081]],[[0.0053922673687339,0.052256394177675,0.038113497197628],[0.030408045276999,-0.031282257288694,0.023876110091805],[-0.027066728100181,-0.025996565818787,-0.032743863761425]],[[-0.003254069481045,0.039458453655243,0.076581455767155],[0.039375532418489,0.0024471646174788,-0.0021304006222636],[-0.0097616827115417,-0.012203260324895,-0.013531238771975]],[[0.029761765152216,0.0063935900107026,0.052784841507673],[0.053613036870956,-0.025064419955015,-0.014360771514475],[-0.015794968232512,0.016246356070042,-0.013600572012365]],[[-0.0089341150596738,0.028803046792746,0.024278139695525],[-0.0337591804564,0.034394856542349,-0.0054151951335371],[-0.0042439033277333,-0.055886849761009,0.025825751945376]],[[0.089494809508324,0.046646103262901,0.0030025171581656],[0.098945841193199,-0.0016264810692519,-0.023077920079231],[-0.036408185958862,-0.0058464561589062,0.032827138900757]],[[0.049781069159508,0.0010388566879556,-0.053033407777548],[0.073813512921333,-0.032150309532881,0.05476588010788],[-0.042495355010033,0.063508257269859,-0.056537061929703]],[[-0.045508179813623,-0.014938432723284,-0.045252475887537],[0.023325297981501,-0.024369662627578,0.018184408545494],[0.06256639957428,0.042746186256409,-0.014309838414192]],[[-0.082318738102913,0.022194655612111,0.020667254924774],[-0.037216801196337,0.030694359913468,-0.0048026307485998],[0.037104275077581,0.0019545413088053,-0.0048487884923816]],[[0.1029018163681,-0.053474240005016,0.029901418834925],[0.050534781068563,0.089875914156437,0.0062105124816298],[0.05663762614131,0.032744128257036,0.068420976400375]],[[-0.025874296203256,0.039973352104425,-0.054322503507137],[0.091948673129082,-0.0082612112164497,0.075008034706116],[-0.046927783638239,0.032255511730909,-0.044828783720732]],[[0.046008426696062,0.020178848877549,-0.011003932915628],[0.0049930452369153,-0.088495142757893,0.0091212773695588],[-0.037932004779577,-0.021404376253486,-0.044405713677406]],[[-0.0043044993653893,0.048476930707693,0.030781267210841],[0.048622708767653,0.045833256095648,-0.08622332662344],[-0.014126690104604,0.028527189046144,0.0040572541765869]],[[-0.098480701446533,0.048334013670683,0.0096551245078444],[0.058070994913578,0.01268757879734,0.04518648982048],[-0.087487123906612,0.016835261136293,-0.030079241842031]],[[-0.022132752463222,0.022965749725699,-0.069476015865803],[-0.010379884392023,0.006213225889951,-0.022989297285676],[0.045460768043995,-0.015533136203885,-0.090226471424103]],[[0.09648310393095,0.034682001918554,0.043042112141848],[-0.059957910329103,-0.057244498282671,0.011555616743863],[0.019393293187022,0.043484017252922,-0.020151849836111]],[[0.012065295130014,-0.035029694437981,-0.043459597975016],[0.041181679815054,-0.0089093893766403,0.017382523044944],[-0.051139421761036,-0.046159211546183,0.0044020102359354]],[[-0.00049903802573681,-0.027049286291003,0.056015130132437],[0.034206222742796,0.040121920406818,-0.0072991051711142],[-0.035089943557978,-0.065073870122433,0.052308063954115]],[[-0.051957875490189,0.062601752579212,-0.035670306533575],[-0.011589447036386,-0.049203302711248,0.026810560375452],[-0.012760152108967,-0.0070843365974724,-0.022563820704818]],[[0.11076310276985,-0.0026832781732082,0.02332866191864],[-0.054105769842863,0.040371187031269,-0.0097462451085448],[0.095935150980949,0.026673052459955,-0.0086906673386693]],[[0.014218519441783,0.071974292397499,0.032485444098711],[-0.1030143275857,-0.072859257459641,0.0068078655749559],[0.015328942798078,0.0066513591445982,-0.08829802274704]],[[0.034158784896135,-0.090133532881737,-0.0013688276521862],[0.017849145457149,-0.045840628445148,0.019139343872666],[0.020918946713209,0.01146908570081,0.021462146192789]],[[0.0095941601321101,0.018869558349252,0.028851060196757],[-0.0028535088058561,-0.014256400056183,0.0034339264966547],[-0.031636666506529,0.039913196116686,0.026833375915885]],[[-0.040244780480862,-0.075653709471226,-0.036994010210037],[-0.034539055079222,-0.008302254602313,-0.0096117351204157],[0.0091961668804288,0.055447995662689,-0.07031511515379]],[[0.032314609736204,-0.074044570326805,-0.032362207770348],[-0.078442960977554,0.070999957621098,0.018599020317197],[0.064717121422291,0.080191977322102,-0.029669500887394]],[[-0.00093144318088889,0.0097618205472827,-0.010183210484684],[-0.022909706458449,0.014551179483533,0.0029636807739735],[0.016763161867857,0.06010602042079,-0.019649906083941]],[[-0.0022644633427262,0.0049868407659233,0.032451223582029],[-0.0086011374369264,0.0097454013302922,-0.028475692495704],[-0.014476278796792,0.016578339040279,-0.034368805587292]],[[-0.0087160700932145,-0.084928043186665,-0.034274529665709],[-0.023452475667,-0.093775935471058,-0.00052331812912598],[-0.0094922380521894,0.033399015665054,-0.0010213830973953]],[[0.042237710207701,-0.039881762117147,-0.0031541539356112],[0.039621356874704,2.1778032532893e-06,-0.058935850858688],[0.0087281502783298,0.010846943594515,-0.041086833924055]],[[0.0057981964200735,0.0094750337302685,0.062663495540619],[-0.023342652246356,0.019521355628967,-0.016602395102382],[-0.030920408666134,-0.02465265057981,-0.04051049426198]],[[0.046749018132687,0.0013598458608612,0.018246758729219],[-0.0013634806964546,-0.036420725286007,-0.1078389659524],[-0.044961713254452,0.01197346393019,-0.034692723304033]],[[0.0027232558932155,-0.021689184010029,-0.0082811415195465],[0.032675020396709,0.086109288036823,-0.025883851572871],[0.020763717591763,-0.0313640832901,0.0807034522295]],[[-0.014370846562088,-0.010312659665942,0.060874901711941],[0.035328648984432,-0.015590762719512,0.10159666091204],[-0.093315362930298,0.016552839428186,-0.010683497413993]],[[0.016419818624854,0.015905637294054,-0.052343096584082],[0.049204424023628,0.060020074248314,-0.050981178879738],[0.039685804396868,-0.014635117724538,0.010923479683697]],[[0.072262272238731,-0.062806665897369,0.02193214930594],[-0.030355079099536,0.012440172955394,-0.028153846040368],[0.016294302418828,-0.038440980017185,0.10212639719248]],[[0.013515036553144,0.074225649237633,0.0057610007934272],[0.013923803344369,0.067532807588577,0.021304294466972],[0.0032631759531796,0.081298336386681,0.084516644477844]],[[0.10191881656647,0.0057977428659797,-0.064060427248478],[-0.0007844265201129,0.0071052773855627,-0.0078280894085765],[0.0066159749403596,-0.068183556199074,-0.022772101685405]],[[0.080670803785324,0.0017110394546762,0.017043888568878],[-0.037231378257275,0.016957893967628,-0.034193344414234],[0.054242569953203,0.013432009145617,-0.035732727497816]],[[0.029014425352216,0.0044119539670646,0.02662848867476],[0.030526041984558,0.04176539182663,0.037584081292152],[0.0054159760475159,-0.01175609882921,0.010597638785839]],[[-0.0012951532844454,-0.020486351102591,0.060040533542633],[-0.0067767384462059,-0.019221503287554,-0.056522358208895],[-0.0041526341810822,0.0071546291001141,-0.038223717361689]],[[-0.015095925889909,0.032174944877625,-0.040389586240053],[0.034728683531284,0.041859574615955,0.0087406421080232],[0.0073920707218349,-0.027852464467287,0.025837861001492]],[[0.063721545040607,-0.01838232204318,0.039019957184792],[-0.049982439726591,0.00677449721843,-0.00044184824218974],[0.018169531598687,0.016999263316393,-0.0018933396786451]],[[0.024870919063687,0.015406173653901,0.0088794641196728],[0.053995948284864,0.059614654630423,0.059449601918459],[0.04505604878068,0.021267151460052,-0.048796016722918]],[[0.020920103415847,-0.018753297626972,-0.065355263650417],[0.0088556567206979,0.013973793946207,0.04576488956809],[-0.0012663275701925,0.016002347692847,0.053684778511524]],[[-0.0098151974380016,-0.045051123946905,-0.030921233817935],[-0.015145222656429,-0.012848247773945,0.092818215489388],[0.013884503394365,-0.041946593672037,0.034755740314722]],[[-0.062200967222452,0.045503865927458,-0.090045884251595],[0.089827261865139,-0.045277956873178,0.017552323639393],[-0.057046372443438,0.031008575111628,0.0024377522058785]],[[-0.037742897868156,-0.039214849472046,-0.013244778849185],[0.0061737368814647,-0.022406788542867,-0.00161531730555],[-0.036576692014933,-0.080679677426815,0.0081618493422866]],[[-0.010422086343169,0.062343500554562,0.050600435584784],[0.02398008108139,-0.013222486712039,0.05188288167119],[0.028643682599068,0.031944509595633,-0.016202522441745]],[[0.0064629288390279,-0.0067854761146009,0.011933263391256],[-0.046450257301331,0.073536738753319,-0.059367842972279],[0.013172548264265,0.037867788225412,-0.025392403826118]],[[0.036210354417562,0.030123868957162,-0.061502758413553],[-0.0710174664855,0.018400307744741,0.048162009567022],[-0.0062259789556265,0.0021883624140173,0.020198347046971]],[[0.039596680551767,-0.01507998816669,0.025236617773771],[-0.056976497173309,-0.047647692263126,-0.024977639317513],[-0.016621842980385,-0.017866468057036,-0.019156141206622]],[[0.0030013113282621,0.056199315935373,0.068081803619862],[0.014758827164769,-0.0084983697161078,-0.031086167320609],[-0.0033073660451919,-0.089679256081581,-0.0001251321809832]],[[0.021359086036682,-0.026071401312947,0.0699078515172],[0.050818979740143,-0.012150352820754,0.0078108413144946],[0.010899625718594,0.0023814646992832,-0.015315669588745]],[[0.034562937915325,0.018820175901055,-0.0058823022991419],[0.050338704138994,0.089307963848114,-0.0049544773064554],[-0.03616077452898,-0.0010280814021826,3.9015791116981e-05]],[[0.0039476337842643,0.017062796279788,0.024917466565967],[0.029908441007137,-0.029686598107219,0.014461420476437],[-0.065545655786991,-0.058801393955946,-0.013197219930589]],[[-0.063146859407425,0.010254899971187,0.023880332708359],[0.071473002433777,0.014863630756736,0.052563518285751],[-0.10366830229759,0.0085004912689328,0.0045883115381002]],[[-0.035442903637886,0.032278951257467,0.034746047109365],[-0.00067263032542542,-0.042524341493845,-0.013745222240686],[0.0045414012856781,-0.073503814637661,-0.00032685336191207]],[[-0.018562700599432,-0.016053577885032,0.021692277863622],[-0.026274295523763,-0.12373038381338,-0.020508335903287],[0.050298098474741,0.028748851269484,0.0036187595687807]],[[0.098544679582119,-0.10656801611185,0.011318258941174],[-0.026063796132803,-0.025978401303291,-0.03102876804769],[-0.0072678080759943,-0.016447480767965,0.035374343395233]],[[0.071968421339989,-0.0012855289969593,-0.011787766590714],[0.0061041391454637,0.039447784423828,-0.019773626700044],[-0.02819636836648,-0.020173070952296,-0.020827064290643]],[[0.013518362306058,-0.010591836646199,0.023933783173561],[-0.074627168476582,-0.027571899816394,-0.024695113301277],[-0.027151513844728,0.080763585865498,0.021361827850342]],[[-0.015809908509254,1.7969752661884e-05,-0.048724673688412],[0.036674689501524,0.027524448931217,-0.0019455133005977],[0.12207003682852,-0.022380029782653,0.0078973639756441]],[[0.063883982598782,-0.044880405068398,0.040329452604055],[0.0097671858966351,-0.0088308630511165,0.034487847238779],[0.027159910649061,-0.048987191170454,0.058368414640427]],[[-0.04337290674448,-0.012701597996056,-0.041823532432318],[0.072929985821247,0.0073301969096065,0.029806103557348],[0.072215102612972,0.034593310207129,-0.039146602153778]],[[-0.0056425803340971,-0.01023921277374,-0.064494274556637],[-0.083262167870998,0.0206961017102,0.011318258009851],[-0.0033378954976797,-0.0066530229523778,-0.023118840530515]]],[[[0.019999608397484,-0.0020893774926662,0.036705654114485],[0.035906810313463,-0.023368500173092,-0.052349857985973],[-0.041028220206499,-0.059496749192476,0.038436092436314]],[[0.017447164282203,-0.0012877543922514,0.012036450207233],[-0.077078603208065,-0.080419734120369,-0.021753100678325],[0.03250128030777,0.022541914135218,0.019052870571613]],[[0.0062448712997139,0.054686721414328,-0.012635191902518],[0.022741809487343,-0.060051221400499,-0.020830972120166],[0.025437530130148,-0.0062308046035469,0.025173112750053]],[[0.024074586108327,0.059990230947733,0.032017856836319],[0.014516090042889,-0.0096605280414224,-0.0074291336350143],[0.0094109261408448,0.0067291697487235,0.0027432045899332]],[[0.012255136854947,0.0046994732692838,0.022304221987724],[0.033813774585724,-0.04049738496542,0.022846836596727],[-0.022131223231554,-0.030583428218961,-0.020633006468415]],[[-0.012187853455544,0.01035431586206,0.10118325054646],[-0.018183805048466,0.0070865782909095,0.028641007840633],[0.0026094294153154,0.042613878846169,0.076515451073647]],[[0.0279501657933,-0.0027032038196921,0.0061992350965738],[-0.022545019164681,-0.01552302017808,-0.015311654657125],[0.016858723014593,-0.0056453831493855,-0.063737764954567]],[[-0.057065829634666,-0.026235496625304,0.076924785971642],[0.016727512702346,0.060591001063585,0.11522053927183],[-0.053336098790169,-0.06430771201849,0.044854816049337]],[[0.0372633934021,-0.04511784017086,0.058374933898449],[0.086583442986012,0.031909942626953,0.026608740910888],[-0.11449538916349,-0.033181626349688,-0.072042733430862]],[[0.10825686901808,-0.078802995383739,0.12955012917519],[0.047570556402206,0.15218937397003,-0.052936587482691],[-0.05024716258049,0.06364718824625,0.060587082058191]],[[0.050474300980568,-0.027071917429566,0.02368913218379],[-0.001138097490184,0.062004122883081,0.022970113903284],[-0.013221560046077,-0.084495931863785,0.0035035484470427]],[[0.0035369542893022,-0.0067006922326982,-0.040331117808819],[0.026902025565505,0.078448630869389,0.045632112771273],[0.042704947292805,0.0021506664343178,-0.038382042199373]],[[0.079218305647373,-0.012716567143798,0.035610411316156],[-0.089928150177002,0.085172034800053,0.0035484305117279],[-0.026678355410695,-0.032544944435358,-0.086558826267719]],[[-0.017667263746262,-0.065416678786278,0.0088516334071755],[0.047662947326899,0.088243313133717,-0.023441947996616],[0.045208625495434,0.042131695896387,-0.013320936821401]],[[-0.034041330218315,0.13423708081245,0.12476834654808],[0.16979099810123,-0.10290077328682,0.1082184240222],[0.11891354620457,0.12859424948692,-0.091425716876984]],[[-0.020215254276991,0.013827470131218,-0.025825023651123],[0.005588511005044,-0.097010545432568,-0.018149426206946],[-0.04836093261838,-0.0063637653365731,-0.062314007431269]],[[0.017015656456351,0.00032850404386409,0.071043960750103],[-0.043711241334677,0.10022647678852,0.034200843423605],[-0.02860595099628,0.079680852591991,0.026243893429637]],[[0.061816599220037,-0.06299515068531,-0.0014211247907951],[0.018904265016317,-0.025960708037019,0.038578104227781],[-0.014659429900348,0.047940991818905,-0.050488516688347]],[[0.042647518217564,-0.00095926347421482,0.011462925001979],[-0.043140880763531,0.043156053870916,0.015304365195334],[-0.0030394664499909,-0.0029722673352808,0.027303744107485]],[[-0.045043163001537,0.013291712850332,0.02623426169157],[0.06452302634716,0.066129766404629,-0.01722820289433],[0.016932452097535,-0.011525500565767,0.064267359673977]],[[0.065659686923027,0.01824077218771,0.037122208625078],[-0.1245754212141,0.033106427639723,-0.0089489994570613],[0.083338864147663,-0.051358990371227,-0.041924551129341]],[[0.060402873903513,0.13926108181477,0.062388900667429],[0.049066826701164,-0.017533203586936,0.11936627328396],[0.077145919203758,0.058254163712263,0.077692307531834]],[[-0.057036861777306,-0.0092771174386144,0.0076170768588781],[-0.029721820726991,0.051899272948503,0.024146016687155],[-0.025364089757204,0.013146911747754,0.016428342089057]],[[-0.004867859184742,-0.043765120208263,0.01096012070775],[-0.020497629418969,0.036018069833517,0.036269523203373],[0.014379158616066,0.0042579947039485,-0.024839637801051]],[[0.018930958583951,-0.019185770303011,-0.0136583968997],[0.057882618159056,0.0070149935781956,0.063337258994579],[-0.050571981817484,0.040451537817717,0.0031740006525069]],[[0.0084839146584272,0.031284797936678,0.038465738296509],[-0.023371297866106,0.0040451404638588,-0.013030610047281],[-0.0078153358772397,0.043797578662634,-0.040234304964542]],[[0.0033405246213078,0.012619903311133,-0.040538512170315],[0.0035160556435585,0.076676018536091,0.027816850692034],[0.017507687211037,0.012565727345645,0.020282480865717]],[[0.062972202897072,0.095606610178947,-0.0033147563226521],[-0.049512472003698,-0.0045939586125314,0.0084829358384013],[-0.02664234675467,0.03457909822464,-0.049066763371229]],[[-0.11599759757519,-0.018156547099352,0.024733765050769],[0.0283292401582,0.061224151402712,0.035468738526106],[0.057348277419806,-0.044009335339069,0.086691185832024]],[[-0.047674130648375,-0.02219120413065,-0.020007954910398],[-0.016508581116796,-0.05595962330699,0.073143981397152],[0.0069594820961356,0.042845219373703,-0.030087172985077]],[[0.080430328845978,0.040738217532635,0.044649954885244],[-0.035897742956877,-0.011522421613336,0.027158107608557],[-0.030608667060733,0.063102751970291,0.014857133850455]],[[-0.020277012139559,-0.010239140130579,0.040313381701708],[0.0079939868301153,-0.0098064728081226,0.014820857904851],[0.032758694142103,-0.075376071035862,-0.0021082686726004]],[[0.024459963664412,-0.060585293918848,0.066722698509693],[-0.10033185780048,0.030511854216456,0.034894239157438],[-0.0132772969082,0.054042667150497,0.013264116831124]],[[-0.045655019581318,0.010820341296494,0.015124276280403],[0.070003882050514,0.12593433260918,0.028058243915439],[0.0095916977152228,0.040662154555321,-0.039421178400517]],[[-0.013941747136414,0.096539191901684,0.035340189933777],[-0.012667442671955,0.022796578705311,0.0087722949683666],[0.022362722083926,0.064877219498158,-0.029164936393499]],[[-0.020099893212318,-0.0096423448994756,0.0025944802910089],[0.0031490605324507,-0.013853708282113,0.048743352293968],[-0.035177975893021,-0.0073624281212687,0.027628317475319]],[[-0.040061175823212,-0.015335214324296,0.049481071531773],[0.022362761199474,0.038477253168821,-0.017654536291957],[-0.039421774446964,-0.013834500685334,0.085101805627346]],[[0.0024329610168934,0.047866750508547,-0.0083569381386042],[-0.0049690413288772,-0.019138468429446,0.068214908242226],[-0.040127318352461,-0.040009554475546,0.048679392784834]],[[-0.057691834867001,0.036251932382584,0.0086536817252636],[0.1010344773531,0.043987050652504,0.049784138798714],[0.066359624266624,-0.015781147405505,0.068889819085598]],[[0.033633898943663,-0.038300968706608,0.013606721535325],[-0.0088385082781315,0.110870487988,0.031196545809507],[-0.0039717331528664,-0.012765442021191,0.033278800547123]],[[-0.014126469381154,-0.0097342878580093,0.072851821780205],[-0.044839091598988,0.049276523292065,0.038216650485992],[-0.0025423609185964,0.0050254273228347,-0.11255551874638]],[[-0.046554587781429,-0.027926556766033,0.030076503753662],[-0.010360774584115,0.0032648777123541,-0.010461148805916],[0.016463177278638,-0.022585909813643,0.058806616812944]],[[0.0033626621589065,0.022181639447808,0.035665910691023],[-0.026700131595135,-0.046517334878445,0.038122002035379],[0.084201566874981,0.034552238881588,-0.0054947272874415]],[[-0.0089652827009559,0.039317052811384,0.067943021655083],[0.10964367538691,-0.0014467157889158,-0.0018315318739042],[-0.0014856554334983,0.050793036818504,0.0085013611242175]],[[0.065073773264885,-0.018093768507242,0.0016696923412383],[-0.012583289295435,-0.028847355395555,0.033272925764322],[0.00036136459675618,-0.047904185950756,0.034351404756308]],[[0.020217999815941,0.013444723561406,-0.0092021115124226],[-0.0011227041250095,0.080871172249317,0.10357150435448],[0.044354766607285,0.040530662983656,-0.075744703412056]],[[0.074457176029682,0.0089787822216749,0.045849874615669],[0.048700731247663,0.036315474659204,-0.0020186144392937],[0.0012313890038058,-0.045447040349245,0.078964836895466]],[[0.050249826163054,0.072246499359608,0.079478204250336],[-0.010836573317647,-0.024360610172153,-0.03866807743907],[-0.034518092870712,0.045456651598215,-0.008951012045145]],[[0.046282775700092,0.0016659937100485,0.0031849252991378],[-0.044835969805717,-0.063360467553139,0.013623623177409],[0.037772178649902,0.08903743326664,0.020373057574034]],[[0.05765014141798,-0.051000833511353,-0.0052868532948196],[0.018772499635816,-0.12424347549677,0.043248295783997],[-0.034014642238617,-0.10159096866846,-0.0034519096370786]],[[0.053238991647959,-0.032917119562626,-0.024206649512053],[-0.0055810548365116,0.021429423242807,0.0053014447912574],[0.0039137760177255,0.030684476718307,0.0081512480974197]],[[-0.038198564201593,-0.013889851979911,-0.066197291016579],[0.011507115326822,-0.0039810435846448,0.032819256186485],[-0.0014093837235123,0.011466837488115,0.038852620869875]],[[-0.014865127392113,-0.041181713342667,0.010704801417887],[-0.0493851788342,-0.016036279499531,0.057955864816904],[0.046299960464239,0.0008305199444294,-0.063113257288933]],[[-0.00091333448654041,0.062889203429222,-0.019282791763544],[0.049490980803967,-0.039809472858906,0.0057883304543793],[-0.018445186316967,-0.0013415450230241,0.0063712405972183]],[[0.016627641394734,-0.013935469090939,0.048838745802641],[0.04825459048152,-0.021176701411605,0.0070705022662878],[-0.036373991519213,-0.015211914665997,-0.029700430110097]],[[0.028620604425669,-0.0009863271843642,-0.030648410320282],[-0.075550302863121,0.0074962307699025,-0.061174087226391],[-0.038198217749596,0.037569783627987,-0.0084926504641771]],[[0.083053685724735,0.028397960588336,0.02230772189796],[-0.087255902588367,-0.050847936421633,0.043081752955914],[0.0058298287913203,-0.10972634702921,-0.0084186838939786]],[[0.027969237416983,0.019186729565263,-0.043840453028679],[0.010559005662799,0.050447888672352,-0.035763096064329],[0.019435536116362,-0.0085721081122756,-0.0046742237173021]],[[-0.00036589923547581,0.069489516317844,0.048749253153801],[-0.0035228761844337,-0.010512508451939,0.071925386786461],[0.049874901771545,0.064286559820175,0.029249239712954]],[[-0.078164868056774,-0.024918366223574,-0.028758257627487],[0.0099567621946335,0.10467537492514,0.031127890571952],[-0.034073870629072,-0.036762807518244,0.051395073533058]],[[0.010762223042548,0.0060450728051364,0.025368833914399],[0.045167803764343,-0.069940574467182,0.046532437205315],[-0.010838314890862,-0.0036253626458347,0.018193900585175]],[[0.012196516618133,0.011316256597638,0.049408387392759],[0.0012109811650589,-0.037259642034769,0.039673637598753],[-0.035912852734327,-0.10601877421141,-0.087757714092731]],[[-0.053702671080828,0.0047139315865934,-0.024396810680628],[-0.014102916233242,-0.050228800624609,0.03359679505229],[-0.029249582439661,0.021418562158942,0.014017039909959]],[[-0.0082314545288682,-0.0011044192360714,-0.016852969303727],[0.073016129434109,0.07382732629776,-0.050142519176006],[0.086722299456596,0.021493567153811,-0.038471151143312]],[[-0.030334154143929,0.081957437098026,0.083441697061062],[0.010105261579156,-0.028756519779563,-0.011544548906386],[0.018733913078904,0.033875919878483,-0.012718250975013]],[[0.022451726719737,-0.018814224749804,0.013526665978134],[0.017772229388356,-0.036746621131897,0.0063940598629415],[-0.018853122368455,-0.055598068982363,0.057551246136427]],[[0.062070608139038,-0.050202406942844,0.021846741437912],[0.011453914456069,-0.024967884644866,-0.043291434645653],[-0.028378194198012,0.049913488328457,0.023246483877301]],[[0.011311234906316,0.031371790915728,0.011689274571836],[0.053031507879496,0.080962799489498,0.0086051858961582],[0.019698468968272,-0.026330737397075,0.026170300319791]],[[-0.0286362208426,0.030289581045508,-0.032313995063305],[0.020945526659489,-0.01041972823441,0.032688435167074],[0.056400194764137,-0.044272631406784,-0.04006264731288]],[[0.06133371964097,0.051435276865959,-0.010738110169768],[0.018144723027945,-0.056976553052664,0.11557245999575],[-0.052303094416857,0.010069054551423,-0.0042184991762042]],[[-0.03423373401165,0.042741488665342,0.026710035279393],[0.0087370555847883,0.0060459091328084,0.019258147105575],[0.12678228318691,-0.030329260975122,-0.042174950242043]],[[-0.063731759786606,0.060719963163137,0.022206733003259],[-0.031682047992945,0.055430997163057,0.040914755314589],[0.068806603550911,0.092011168599129,0.0062046572566032]],[[-0.035351671278477,0.026049973443151,-0.0048150117509067],[-0.055131632834673,0.044801861047745,0.035952765494585],[-0.013534168712795,0.042688138782978,-0.021619917824864]],[[-0.031230958178639,-0.043438892811537,-0.00098420958966017],[-0.0005214627017267,0.031120097264647,-0.0032739255111665],[-0.043812274932861,-0.035519286990166,0.00099766091443598]],[[-0.029427377507091,-0.010920820757747,-0.015541950240731],[0.050221759825945,0.022506237030029,0.096209861338139],[0.058192074298859,0.11034279316664,0.11302129179239]],[[0.09270766377449,0.032853219658136,-0.0020002347882837],[-0.039682310074568,0.022395309060812,-0.01533489767462],[0.068975545465946,0.0017691546818241,0.01637002453208]],[[0.035301595926285,-0.011845205910504,0.03365083783865],[0.026186738163233,-0.013378775678575,-0.072773709893227],[0.035118028521538,0.046725142747164,0.05237789824605]],[[0.050889108330011,-0.046836625784636,-0.023708900436759],[0.031141677871346,-0.0061605549417436,0.0068475175648928],[0.022130453959107,-0.027098869904876,0.049759909510612]],[[-0.015906166285276,-0.040879338979721,-0.0273776371032],[-0.063447549939156,-0.0033428925089538,0.087936200201511],[-0.019228281453252,-0.038643483072519,0.059063907712698]],[[-0.011970272287726,-0.11837937682867,0.055179599672556],[0.031185416504741,-0.043835032731295,0.025837594643235],[0.012522773817182,-0.08496031165123,0.039439003914595]],[[0.035762291401625,0.0017422056989744,-0.053024414926767],[0.076302230358124,0.032154865562916,-0.046716894954443],[0.035260852426291,-0.087326541543007,-0.054468080401421]],[[0.010442855767906,0.016227517277002,0.056172892451286],[0.0012902024900541,-0.025739669799805,-0.014478697441518],[0.0042066583409905,0.031047476455569,-0.043652456253767]],[[-0.089107058942318,0.069636978209019,0.094704031944275],[-0.018015177920461,-0.082487717270851,0.043392367660999],[0.029062774032354,2.8748163458658e-05,0.0306680444628]],[[0.047450520098209,-0.063659973442554,0.054244928061962],[-0.0042281686328351,-0.0074881063774228,0.084643147885799],[-0.083117239177227,0.073531940579414,0.0094831101596355]],[[0.068750470876694,0.059896692633629,0.026408147066832],[-0.021325847133994,0.035408768802881,-0.058718491345644],[0.034894429147243,0.07146405428648,-0.014928235672414]],[[0.017204636707902,0.0032926599960774,-0.090042792260647],[0.022172542288899,-0.013636669144034,0.018348209559917],[0.029174540191889,-0.054349824786186,-0.0112758083269]],[[-0.00060439109802246,-0.0016751966904849,0.0067859757691622],[-0.0038211008068174,0.028095228597522,-0.015556864440441],[-0.0069749634712934,-0.012806721962988,-0.022767534479499]],[[0.071089215576649,0.021355194970965,0.050537940114737],[-0.023939156904817,0.087733879685402,-0.0042351339943707],[0.023220378905535,-0.03205731138587,0.078408867120743]],[[0.03290344029665,-0.02350215241313,-0.062145490199327],[-0.00037764839362353,0.0045493110083044,0.01995275914669],[-0.0076777506619692,0.046264261007309,-0.051837157458067]],[[0.048480376601219,0.073733411729336,0.033567789942026],[0.042546954005957,-0.026015587151051,0.012248986400664],[-0.023704402148724,-0.022140784189105,0.012406435795128]],[[-0.055750161409378,-0.01137965079397,-0.055280111730099],[-0.014403825625777,0.045503959059715,0.031210212036967],[0.021766550838947,-0.035947259515524,-0.0077718468382955]],[[0.0091416072100401,-0.0041190171614289,-0.0086511382833123],[0.010296767577529,0.0057048001326621,0.019858432933688],[0.045472245663404,0.07417705655098,-0.012079781852663]],[[-0.023580487817526,-0.044000837951899,0.061497248709202],[0.0017903594998643,0.027144202962518,-0.026194583624601],[0.041478376835585,-0.020354690030217,0.027443800121546]],[[-0.053219333291054,-0.038250461220741,0.049076590687037],[0.050116825848818,-0.0014730462571606,0.12527500092983],[0.10508895665407,0.012458387762308,0.012383251450956]],[[-0.044314708560705,-0.009827652014792,-0.03228797018528],[-0.053220007568598,0.040314119309187,0.070538461208344],[-0.046113722026348,-0.018038898706436,-0.0035169848706573]],[[0.049581002444029,-0.002161267446354,0.035978838801384],[0.027268562465906,-0.062050778418779,-0.025230502709746],[-0.0010857013985515,0.0060288957320154,0.018596576526761]],[[0.016112513840199,-0.034798711538315,0.092066712677479],[0.018122686073184,0.085940204560757,0.062472354620695],[0.077963627874851,0.019773080945015,0.021884569898248]],[[0.037807870656252,-0.052369616925716,0.012382708489895],[0.028304319828749,0.026617269963026,-0.054961528629065],[0.027197021991014,0.048319447785616,0.045511778444052]],[[0.040467578917742,-0.007360955234617,-0.0083182342350483],[0.040110051631927,-0.019974302500486,0.079203993082047],[-0.05291298404336,0.046735014766455,-0.0061324741691351]],[[0.0066929156892002,0.026910815387964,0.018815385177732],[0.039637736976147,0.028750516474247,0.014850656501949],[0.019815808162093,-0.0001063539966708,0.025653989985585]],[[0.0039413082413375,0.0031783494632691,-0.025884045287967],[-0.047244794666767,0.1383949816227,0.069739386439323],[-0.021141288802028,-0.059108503162861,0.056974202394485]],[[-0.016226556152105,0.0028068132232875,0.12296622246504],[-0.014906411059201,0.010687464848161,0.026782501488924],[-0.054732259362936,0.033153135329485,0.083945214748383]],[[-0.038796536624432,-0.05328706279397,0.0052492530085146],[0.017114104703069,-0.044733498245478,0.011722065508366],[0.020850224420428,-0.051946848630905,-0.013207672163844]],[[0.03857584670186,-0.021161245182157,0.0082967961207032],[-0.0015155354049057,-0.027384230867028,0.029712012037635],[0.020517986267805,-0.0066368854604661,0.030872222036123]],[[-0.034956019371748,-0.03304636105895,0.0033142068423331],[-0.079226993024349,-0.04638160020113,-0.0072762267664075],[-0.01948201097548,-0.024610657244921,0.017491461709142]],[[-0.029757983982563,0.033106289803982,0.048346698284149],[0.0202955044806,0.036720842123032,0.048675041645765],[0.0075477249920368,0.048007402569056,0.01223483402282]],[[0.053193878382444,0.03279522806406,-0.072459183633327],[-0.029482698068023,0.070105269551277,0.053398791700602],[0.11117662489414,-0.0081247240304947,0.041585132479668]],[[0.012046255171299,0.024277033284307,0.015179663896561],[0.010977129451931,0.0063170744106174,0.054691713303328],[-0.0083565916866064,0.056883368641138,-0.057769734412432]],[[-0.0050695603713393,0.050816353410482,0.0040814261883497],[-0.061852302402258,-0.031304437667131,-0.019528204575181],[-0.035323813557625,-0.009105684235692,-0.045389786362648]],[[0.064383111894131,-0.0014166873879731,-0.013842360116541],[-0.057221829891205,0.094790168106556,0.0066977455280721],[0.019961204379797,-0.084515325725079,0.047366186976433]],[[0.03451731428504,-0.00011893296323251,-0.018860209733248],[0.058728206902742,-0.045167606323957,-0.053960788995028],[-0.018492147326469,0.022225122898817,0.020634261891246]],[[-0.042834911495447,0.0047863950021565,-0.068799450993538],[0.0074352310039103,-0.0074804229661822,-0.018250579014421],[-0.016434671357274,-0.066020406782627,0.031678035855293]],[[-0.069753959774971,-0.0056777698919177,-0.0095541141927242],[0.027494559064507,0.0037093942519277,0.043380066752434],[-0.044135570526123,-0.055023975670338,-0.053307015448809]],[[0.053494311869144,0.01495583448559,-0.041264574974775],[-0.099715553224087,-0.00018089258810505,-0.0086353002116084],[0.065192982554436,-0.048875410109758,-0.016268074512482]],[[-0.041954021900892,-0.027540801092982,0.056675795465708],[-0.016941426321864,0.023225059732795,-0.067598596215248],[0.030739858746529,-0.030921321362257,0.035810802131891]],[[0.012644357047975,-0.072077050805092,0.037083778530359],[0.051279287785292,0.063098080456257,0.0018403073772788],[0.018137270584702,0.024598998948932,0.015510863624513]],[[-0.00070792791666463,-0.033394180238247,-0.0064955516718328],[0.050996944308281,0.070421330630779,0.065850175917149],[-0.021576078608632,0.035755638033152,0.010980016551912]],[[-0.025661204010248,-0.055219948291779,0.028835577890277],[0.04227402061224,0.0020406586118042,0.034971989691257],[-0.0035108253359795,0.029943943023682,-0.028504885733128]],[[-0.075588226318359,-0.0042886873707175,-0.023608401417732],[0.029531583189964,-0.0051499274559319,-0.021208675578237],[-0.019030064344406,0.043292447924614,-0.090340457856655]],[[0.014016992412508,0.023453839123249,0.043981552124023],[-0.026451589539647,-0.062760338187218,-0.012301508337259],[-0.024962596595287,0.0062728528864682,0.0083398530259728]],[[-0.0075516006909311,0.060679376125336,0.080985121428967],[-0.056024622172117,0.00011326356616337,0.043575324118137],[-0.034054335206747,-0.024243239313364,0.027603821828961]],[[-0.0072834426537156,-0.0064107403159142,-0.091676086187363],[-0.0073458198457956,0.046790439635515,-0.032921873033047],[0.041600707918406,-0.05749798566103,-0.020854497328401]],[[0.0020193012896925,0.0040140389464796,0.095998033881187],[-0.020663056522608,-0.014627761207521,-0.027481095865369],[0.004911171272397,0.035800110548735,0.039430044591427]],[[-0.072057016193867,-0.0037853044923395,-0.017711199820042],[0.052109993994236,-0.043487653136253,-0.010186006315053],[0.012522088363767,-0.032986413687468,0.047047268599272]],[[-0.025349238887429,0.046513982117176,-0.000100411773019],[0.054840933531523,0.04666880890727,0.054077211767435],[0.0012757475487888,-0.015602624043822,-0.038818787783384]],[[-0.022096002474427,0.085591405630112,0.017075093463063],[-0.0196478869766,0.0070797810330987,-0.03419465944171],[0.029563147574663,-0.051217414438725,-0.0015841610729694]],[[0.043705195188522,0.021358022466302,0.04731535166502],[0.034706957638264,0.051912277936935,0.0033626181539148],[-0.058329544961452,0.035090126097202,-0.01922444999218]],[[0.067129477858543,0.0286845266819,-0.039911441504955],[0.03126398473978,0.040263000875711,-0.012543509714305],[-0.012640316039324,0.014984267763793,-0.0035137084778398]]],[[[-0.083686180412769,-0.081306479871273,-0.018296847119927],[-0.028957856819034,0.073954343795776,0.056166063994169],[-0.10514181107283,-0.0042373389005661,0.059655353426933]],[[-0.016087079420686,-0.0083573320880532,0.033302441239357],[-0.10677080601454,0.044383373111486,-0.090153500437737],[-0.054316412657499,0.073649823665619,-0.045038908720016]],[[-0.034131720662117,-0.0070977052673697,-0.080931454896927],[-0.017934493720531,-0.011868276633322,0.084408305585384],[-0.0087806265801191,-0.03120756149292,-0.0067658969201148]],[[-0.0005326644750312,-0.053141184151173,0.077799566090107],[-0.019848007708788,-0.0064843101426959,-0.054431810975075],[-0.00040728834574111,-0.059527277946472,0.024602219462395]],[[0.059682093560696,-0.023996727541089,0.029876720160246],[0.0075385281816125,0.029463097453117,0.079447411000729],[0.023615602403879,0.053541328758001,-0.062382761389017]],[[0.047310549765825,0.070143587887287,-0.028826139867306],[0.094263426959515,-0.011166810058057,0.06776524335146],[0.018461702391505,0.12136508524418,-0.01050543691963]],[[-0.026918964460492,0.076525643467903,0.023607689887285],[-0.045809339731932,-0.025747291743755,-0.053959637880325],[0.015186454169452,0.0068233390338719,-0.062623120844364]],[[-0.039750661700964,-0.032272797077894,0.090448595583439],[0.025784652680159,-0.030683483928442,0.05534029379487],[-0.018337560817599,0.043627008795738,-0.023091834038496]],[[-0.0076970900408924,0.10106365382671,0.11837403476238],[0.020769063383341,-0.045750021934509,0.017278915271163],[-0.083662092685699,0.063583143055439,-0.026734134182334]],[[0.10488045215607,0.05888768658042,-0.03474035859108],[-0.051689997315407,0.13827680051327,0.073211558163166],[-0.041382651776075,0.082992993295193,-0.059256237000227]],[[-0.0130456071347,0.014993144199252,0.10212904214859],[-0.028924722224474,0.038580771535635,-0.044804785400629],[0.095094688236713,0.0019312767544761,-0.022593965753913]],[[-0.053396735340357,-0.0749292075634,0.13257502019405],[-0.028529455885291,0.010092730633914,0.04764848947525],[0.012358943931758,-0.040289841592312,0.027164543047547]],[[0.0055030616931617,-0.001295912428759,-0.11370910704136],[0.0047839838080108,0.0033765251282603,0.023840006440878],[0.07433508336544,-0.014247549697757,0.0039130495861173]],[[-0.010359324514866,0.081277973949909,0.034232873469591],[0.0014431407907978,-0.05040480941534,-0.0025870609097183],[0.012172714807093,0.02850148640573,-0.00820208247751]],[[0.0041990038007498,-0.039637073874474,0.14247980713844],[0.1614431142807,-0.075573161244392,-0.021039804443717],[0.088020913302898,0.13418404757977,0.01106365211308]],[[0.014331748709083,0.0081622675061226,0.0037129253614694],[-0.057298492640257,-0.079424768686295,-0.022188078612089],[0.041098244488239,-0.036669932305813,-0.10149553418159]],[[0.01638968475163,0.011008324101567,-0.060930557549],[0.076910071074963,0.13321180641651,0.015848396345973],[-0.072972469031811,-0.03230507671833,0.048866596072912]],[[0.012561243958771,0.047571152448654,0.010980900377035],[-0.11996617168188,0.0074035641737282,-0.060243964195251],[-0.12506356835365,0.0012669068528339,0.082348071038723]],[[-0.011609782464802,0.015586278401315,-0.040734525769949],[-0.063224270939827,-0.022854525595903,0.13280156254768],[-0.0036530874203891,-0.0070166951045394,-0.045553274452686]],[[0.074735939502716,-0.0039563369937241,0.077617704868317],[0.053774558007717,-0.023021724075079,0.046306096017361],[0.11138948053122,0.043231543153524,0.099666580557823]],[[0.042663741856813,0.038039345294237,-0.018818665295839],[-0.066696353256702,0.040939394384623,0.058584194630384],[0.038648743182421,0.01474086008966,-0.030784912407398]],[[-0.098362050950527,0.032769531011581,-0.014340133406222],[0.083424836397171,0.070233575999737,0.07293339818716],[0.039120141416788,-0.01755359582603,0.04643177241087]],[[-0.14474511146545,0.069094464182854,0.0058205714449286],[-0.083619602024555,-0.010694283992052,-0.0090348180383444],[-0.011717049404979,-0.01737691834569,-0.0062004686333239]],[[0.027165547013283,0.050580866634846,0.087970606982708],[0.027217904105783,0.071132160723209,0.063768975436687],[-0.077915273606777,0.050890035927296,-0.038473077118397]],[[0.049292977899313,0.020929357036948,0.059171363711357],[-0.023523973301053,-0.011974591761827,-0.0057284231297672],[-0.066128186881542,0.027569767087698,0.10939485579729]],[[-0.027886766940355,0.01005553919822,-0.095507517457008],[-0.017241729423404,0.0024887495674193,-0.014780346304178],[-0.02833860181272,0.065614931285381,-0.0057260626927018]],[[-0.085007905960083,0.074138976633549,0.1340748667717],[-0.018023194745183,0.023375736549497,-0.013809212483466],[-0.022692315280437,-0.0010909641860053,0.047428216785192]],[[0.1087114289403,-0.078798413276672,0.01519997511059],[0.00065138802165166,0.021685056388378,-0.074081927537918],[0.068935729563236,-0.0035630515776575,-0.067472048103809]],[[0.06806518137455,-0.061356365680695,0.033575695008039],[0.045066513121128,0.09313540905714,0.00072018447099254],[0.0046220659278333,0.029261698946357,0.079475678503513]],[[0.032730348408222,0.060663171112537,0.083741717040539],[0.010623048990965,0.12365693598986,-0.025909511372447],[0.062811218202114,0.0082771088927984,0.10125626623631]],[[0.10089057683945,0.080236621201038,-0.019223960116506],[-0.068397402763367,0.00024046085309237,0.020764572545886],[0.026048064231873,-0.0048171659000218,0.0260080229491]],[[0.033238593488932,0.074940584599972,0.056272987276316],[0.013732842169702,0.085931055247784,-0.014246816746891],[0.0032861272338778,-0.01444039400667,-0.068314336240292]],[[0.020818788558245,0.0096894539892673,0.084477908909321],[0.090356178581715,0.08573542535305,-0.071260422468185],[-0.033340353518724,0.064297243952751,0.0047353808768094]],[[-0.094794504344463,0.043108597397804,-0.053605895489454],[0.041084669530392,-0.022417291998863,0.099204383790493],[0.075339548289776,-0.0086907921358943,-0.062193866819143]],[[-0.066721826791763,0.045015059411526,0.10493964701891],[-0.046688165515661,-0.058456014841795,-0.0315807685256],[-0.010136228986084,0.01491657551378,0.034152630716562]],[[0.0055191502906382,-0.041780635714531,-0.023822084069252],[-0.12785430252552,-0.051793679594994,-0.023571230471134],[-0.00012877080007456,-0.0098462393507361,0.0092827556654811]],[[0.019656497985125,0.025836564600468,-0.011347421444952],[-0.028614228591323,-0.069003760814667,0.058058325201273],[-0.032071929425001,-0.019235327839851,-0.075487390160561]],[[0.027219090610743,-0.028383087366819,0.0082238428294659],[0.057652365416288,-0.033890783786774,0.1365087479353],[0.032576404511929,-0.0027188493404537,0.017214551568031]],[[0.0079680429771543,-0.036570221185684,0.044215951114893],[0.025448048487306,-0.014256966300309,-0.10299448668957],[0.05218168348074,-0.0078751919791102,0.18240670859814]],[[0.031007949262857,0.10418961942196,-0.0014306200901046],[0.017578409984708,-0.022418659180403,0.018149632960558],[0.042521599680185,-0.013993996195495,0.035175237804651]],[[-0.035960398614407,0.047898694872856,0.023253571242094],[-0.062585078179836,-0.047759737819433,0.035040952265263],[0.080196000635624,0.054399412125349,-0.046610850840807]],[[-0.034841742366552,0.045890692621469,0.015842489898205],[0.0063758576288819,0.014476086013019,0.052529439330101],[0.016563216224313,0.10136180371046,0.018692156299949]],[[-0.0017449330771342,0.06401215493679,-0.022260894998908],[0.071218274533749,-0.040231589227915,-0.029487794265151],[-0.024876082316041,0.087703250348568,0.027815464884043]],[[-0.007354433182627,0.044332280755043,-0.0028194095939398],[-0.086774557828903,0.10846588760614,0.04644837602973],[0.049452971667051,0.050817478448153,-0.0015900990692899]],[[-0.019687704741955,0.020760539919138,0.060411479324102],[-0.032869599759579,0.11396907269955,-0.11109111458063],[0.073280975222588,-0.029174782335758,-0.03799032792449]],[[-0.0017794916639104,-0.018151115626097,0.038222048431635],[0.026947665959597,0.040688812732697,0.054105818271637],[0.038323953747749,0.033143807202578,-0.09256037324667]],[[0.030339436605573,0.025234578177333,0.046396169811487],[0.012347923591733,0.013600734062493,0.066159524023533],[0.031084476038814,0.091822490096092,-0.0070592043921351]],[[0.054764829576015,-0.042967393994331,-0.038584504276514],[0.014751548878849,0.05790189281106,0.065827585756779],[0.034667391330004,0.027884317561984,0.036645885556936]],[[0.044545620679855,-0.10585606843233,0.10116873681545],[-0.098184570670128,-0.0075609460473061,0.10184474289417],[0.011038329452276,0.11229132860899,0.033571541309357]],[[0.010759395547211,0.024069380015135,-0.034922566264868],[-0.073278039693832,0.017152672633529,0.017293332144618],[-0.013293380849063,0.042684122920036,-0.052765585482121]],[[0.029064910486341,0.067370861768723,-0.10726086050272],[0.063961580395699,-0.016996834427118,0.084785327315331],[-0.028809417039156,-0.027190234512091,-0.010077936574817]],[[-0.068034157156944,0.081212870776653,0.11475961655378],[0.046324074268341,-0.031851828098297,0.068622216582298],[-0.053469695150852,0.067732326686382,0.012943685986102]],[[-0.029330253601074,-0.034400701522827,-0.049055352807045],[0.073392868041992,0.065260879695415,-0.030444631353021],[0.053511817008257,0.070785984396935,-0.015150804072618]],[[0.05696377530694,0.06764855235815,0.010472474619746],[0.018411543220282,-0.031969428062439,0.10115782916546],[-0.054432652890682,-0.0020341887138784,-0.010496173985302]],[[0.045077491551638,0.0061062024906278,0.038181319832802],[0.031997717916965,-0.1013188585639,-0.050197176635265],[0.16727282106876,0.15672759711742,0.034556806087494]],[[0.031272888183594,-0.0064396685920656,0.018764892593026],[0.020114600658417,-0.018141100183129,0.051284722983837],[-0.0072836992330849,-0.0037057141307741,0.035233169794083]],[[-0.010640910826623,0.11592620611191,0.0039597367867827],[-0.026387272402644,0.055396683514118,0.013684687204659],[0.0070194504223764,-0.0068545467220247,0.0049344501458108]],[[0.1360502243042,-0.019574562087655,0.043664708733559],[-0.039904031902552,-0.056599009782076,-0.097028642892838],[0.059753224253654,-0.072410546243191,0.14529749751091]],[[-0.032920569181442,0.049021784216166,0.053801763802767],[0.085997074842453,0.014540485106409,0.051241986453533],[0.022188100963831,0.041378404945135,-0.062898419797421]],[[0.073519200086594,0.05940043926239,-0.012600394897163],[-0.039205711334944,0.10913770645857,0.079060472548008],[0.082322411239147,0.022799009457231,-0.058316048234701]],[[0.075726307928562,0.035595435649157,0.068305969238281],[0.067874766886234,-0.00667509669438,0.016365326941013],[-0.035212062299252,0.085575766861439,0.10869704186916]],[[-0.067941799759865,-0.024953901767731,0.034585434943438],[0.0048277694731951,-0.015328497625887,0.054007068276405],[-0.068928897380829,0.032075043767691,0.015751268714666]],[[0.047789126634598,-0.024713544175029,-0.0072157513350248],[-0.076227620244026,0.13684356212616,0.025281358510256],[-0.075579352676868,-0.03954528644681,-0.018619947135448]],[[0.052856378257275,-0.047029390931129,0.057243656367064],[-0.055777408182621,0.046894118189812,0.045425493270159],[0.096265278756618,-0.028513947501779,0.025258008390665]],[[-0.044669523835182,0.041640348732471,-0.0052191554568708],[0.035914972424507,-0.037057369947433,0.0013111135922372],[0.082138374447823,0.0070170015096664,0.0821413397789]],[[-0.15236154198647,0.067858673632145,-0.076469123363495],[-0.043350581079721,-0.031999636441469,-0.021805766969919],[-0.0052156061865389,-0.069520562887192,0.077868968248367]],[[-0.0400026217103,-0.0046785348095,-0.1085269972682],[0.05284395813942,0.045935194939375,0.023548249155283],[0.010602343827486,-0.016568990424275,0.028070073574781]],[[-0.0037753907963634,0.013879205100238,0.014855019748211],[0.050876028835773,0.072898328304291,0.014889372512698],[0.036461248993874,0.059644367545843,0.015560234896839]],[[-0.0090085715055466,0.020418932661414,-0.034166354686022],[-0.088185980916023,0.028271814808249,0.024474093690515],[0.06837509572506,0.028997333720326,0.046437881886959]],[[0.039935383945704,0.051939446479082,0.056323863565922],[0.063008464872837,0.038495544344187,-0.014948649331927],[-0.034606225788593,-0.040351141244173,-0.023813296109438]],[[-0.017052283510566,0.05556558072567,-0.10694350302219],[0.063153982162476,0.044194620102644,-0.02811337262392],[0.039908230304718,-0.029933461919427,-0.051501646637917]],[[-0.0055250660516322,0.043061576783657,0.026229409500957],[-0.037798400968313,-0.039727602154016,0.081820748746395],[0.074746049940586,0.047222174704075,0.021105874329805]],[[-0.024001114070415,0.052056454122066,0.060916967689991],[0.11202162504196,0.10214821994305,-0.0079011972993612],[0.0031858759466559,0.0050841909833252,0.038454491645098]],[[-0.035926207900047,0.054629366844893,0.049598015844822],[-0.067742869257927,-0.020054306834936,0.045588880777359],[-0.062285777181387,-0.037090245634317,-0.042477056384087]],[[0.05186104029417,0.029996484518051,0.0089969960972667],[0.06834352016449,0.024337412789464,-0.039924576878548],[-0.028550654649734,-0.037327688187361,0.024555975571275]],[[0.071225479245186,-0.0026376300957054,0.015578113496304],[0.021383017301559,-0.021758992224932,-0.024400366470218],[0.020865917205811,0.00035042376839556,-0.0059417467564344]],[[0.039249207824469,0.027323653921485,-0.017337890341878],[0.068262219429016,0.12439980357885,0.021725943312049],[0.036580938845873,0.075559839606285,-0.074537798762321]],[[0.016615357249975,-0.081767961382866,0.041098535060883],[0.037025589495897,0.018768416717649,0.047353226691484],[0.0055343955755234,0.021230818703771,0.052836280316114]],[[-0.033187869936228,0.041722971946001,-0.0047658467665315],[0.080420471727848,0.12981995940208,0.003716082777828],[-0.090881980955601,-0.061967898160219,0.096337288618088]],[[0.016316270455718,0.064206011593342,-0.042032763361931],[0.018627779558301,0.045221403241158,0.13088923692703],[-0.053900890052319,-0.037023909389973,-0.036014597862959]],[[-0.0043361806310713,-0.022043721750379,-0.025788296014071],[0.022300001233816,-0.008727596141398,-0.038588516414165],[-0.019198656082153,-0.023296745494008,-0.0078901089727879]],[[-0.14484275877476,0.028566004708409,0.0124122928828],[-0.034745860844851,0.07158836722374,0.068886861205101],[0.0032525055576116,-0.010415487922728,0.042213171720505]],[[-0.071241162717342,-0.0090280212461948,0.011756243184209],[0.061827354133129,0.016162246465683,0.047226253896952],[-0.046762350946665,-0.0049481745809317,0.034354027360678]],[[0.078025422990322,0.019344946369529,0.063033930957317],[0.070785172283649,-0.0053147356957197,0.054680969566107],[-0.014051894657314,-0.064921915531158,0.075503215193748]],[[0.10105779021978,-0.0015668321866542,-0.057731937617064],[-0.019883746281266,0.062923312187195,0.025655886158347],[0.059699237346649,0.04493735358119,0.020367102697492]],[[0.028048891574144,0.070471920073032,-0.058152835816145],[0.089696019887924,-0.010113873519003,0.079917252063751],[-0.058225899934769,0.038112472742796,0.0057181562297046]],[[-0.039119645953178,0.015722861513495,0.02672465518117],[0.033482160419226,-0.026306945830584,-0.096706598997116],[0.014961996115744,-0.0236184168607,0.074341595172882]],[[0.05681225284934,-0.028781618922949,-0.083542704582214],[0.065756984055042,0.045940678566694,-0.018885826691985],[-0.0061934539116919,-0.047974839806557,0.023748684674501]],[[0.10253388434649,0.0095498189330101,-0.0098764859139919],[0.1077688485384,-0.074418656527996,0.085244044661522],[0.024949489161372,0.070150159299374,0.032160855829716]],[[0.12234603613615,0.023284744471312,0.034277282655239],[0.019539834931493,-0.013864286243916,-0.0053011481650174],[0.0035918243229389,0.09047457575798,0.0090211257338524]],[[0.0081985769793391,0.094495706260204,-0.021762130782008],[0.03398822247982,0.070557855069637,0.0928710475564],[-0.045198686420918,-0.084231689572334,-0.029777308925986]],[[0.073741652071476,0.025562396273017,0.016200235113502],[-0.15224835276604,0.020740579813719,0.022112770006061],[-0.066674493253231,0.10892672836781,-0.01215164642781]],[[-0.17050315439701,-0.0073447404429317,0.033750716596842],[0.025012727826834,-0.073843717575073,0.040630377829075],[0.059742543846369,-0.034478489309549,0.042571648955345]],[[-0.019887916743755,-0.085256159305573,0.063206769526005],[0.026706581935287,-0.018669877201319,0.095036424696445],[0.061745759099722,0.084001921117306,0.010506584309042]],[[-0.066829994320869,-0.0021879919804633,0.11101020872593],[-0.046705055981874,0.027191516011953,-0.023077365010977],[0.047962605953217,0.023698905482888,-0.010426060296595]],[[0.0040284926071763,0.0082855261862278,0.032045386731625],[0.14329047501087,-0.017126031219959,-0.014472872950137],[0.038590528070927,0.018273871392012,-0.062462214380503]],[[-5.3572963224724e-05,0.029532469809055,-0.058510702103376],[-0.0039173630066216,-0.11323139071465,-0.017191538587213],[-0.024412812665105,0.023547565564513,0.039171252399683]],[[0.0022485954686999,0.014846406877041,0.024443367496133],[-0.014037292450666,0.047681488096714,0.05424852669239],[-0.00089859456056729,0.06738469004631,0.037982743233442]],[[-0.009802183136344,-0.12746047973633,0.13792861998081],[0.077721364796162,0.021055728197098,0.075921759009361],[0.0041913520544767,0.046444434672594,-0.020594945177436]],[[-0.0036996218841523,0.088491789996624,-0.062920711934566],[-0.021449118852615,-0.017232345417142,-0.056147173047066],[0.011498387902975,0.0062843733467162,-0.013628823682666]],[[0.064479440450668,0.022497871890664,0.019760342314839],[0.043854378163815,-0.020099449902773,0.010955294594169],[0.053510509431362,-0.096281692385674,-0.030842818319798]],[[0.018069105222821,-0.043454892933369,0.073610506951809],[0.0063156890682876,0.08225479722023,0.026705712080002],[-0.0049897199496627,0.01530241034925,-0.0955915376544]],[[-0.038545280694962,0.057625662535429,0.04862654581666],[-0.088061690330505,0.038548067212105,-0.04375509172678],[-0.026565099135041,0.029518073424697,0.0019952617585659]],[[0.026733538135886,-0.051517605781555,-0.046490833163261],[-0.0022115251049399,0.048273365944624,-0.011611285619438],[0.0077106095850468,0.10687529295683,0.030496025457978]],[[0.061544865369797,-0.0047635999508202,0.061092186719179],[0.039894949644804,0.0090658748522401,0.10585881024599],[0.018592802807689,0.010129993781447,0.059659272432327]],[[-0.045615658164024,0.041596222668886,-0.10934992879629],[0.035101048648357,0.0057241986505687,0.060934834182262],[0.048178803175688,-0.13240949809551,0.071877412497997]],[[0.067835412919521,-0.0034459158778191,0.04469446465373],[0.020969744771719,0.078817464411259,0.10189236700535],[-0.032720759510994,0.068985305726528,0.060630843043327]],[[0.048917081207037,-0.054054565727711,0.048698354512453],[0.005612778943032,0.07222992181778,-0.010685129091144],[0.022744966670871,0.10515961050987,0.063200175762177]],[[0.0071114031597972,-0.089419662952423,-0.063628457486629],[-0.034299790859222,-0.0509980507195,0.072423040866852],[0.0017223214963451,-0.055353440344334,-0.073787175118923]],[[-0.0011635585688055,0.032415740191936,-0.0095985047519207],[0.037481620907784,-0.049905814230442,0.0099093057215214],[-0.090882904827595,-0.012033100239933,-0.007049195934087]],[[0.071373902261257,-0.10546875745058,0.045561872422695],[-0.0399972461164,0.013159153982997,-0.10321029275656],[2.7327592761139e-05,0.059758454561234,0.020784145221114]],[[0.037736807018518,0.14351154863834,-0.0046209506690502],[0.021788096055388,-0.039814945310354,-0.032980088144541],[-0.014131767675281,0.066118516027927,0.023003097623587]],[[0.024981634691358,-0.0021130335517228,-0.0032284874469042],[-0.030295612290502,-0.074711531400681,0.059764258563519],[-0.02762090973556,-0.020457919687033,-0.036296613514423]],[[-0.029597353190184,0.04473352432251,0.02948384359479],[0.036295551806688,-0.13394320011139,0.084886446595192],[-0.0066855256445706,-0.024397045373917,0.0407669916749]],[[-0.12868593633175,0.054628916084766,0.003780770348385],[-0.032475620508194,0.13600102066994,0.0053565977141261],[0.0024569449014962,0.013370181433856,-0.011244856752455]],[[-0.049872003495693,0.015875354409218,-0.0084640756249428],[0.094987913966179,0.070633508265018,-0.080819092690945],[0.02427820302546,0.019072325900197,0.018983604386449]],[[0.02371215261519,0.057750806212425,0.027591483667493],[-0.0082083875313401,0.11112206429243,0.051512237638235],[0.026159822940826,0.023779843002558,0.021576967090368]],[[-0.0029971613548696,-0.021479703485966,0.012069575488567],[0.1202537342906,-0.0096090622246265,0.071639157831669],[-0.00089636939810589,0.030565800145268,-0.042024221271276]],[[0.041752062737942,0.016741709783673,-0.08288685977459],[-0.034528430551291,-0.01476966124028,0.024180268868804],[0.0049777529202402,0.028366886079311,-0.010251333937049]],[[0.0070539256557822,-0.075540997087955,-0.017414931207895],[-0.045390762388706,-0.072857372462749,-0.019162125885487],[-0.012090019881725,0.065427906811237,-0.029426921159029]],[[0.034527529031038,-0.033936642110348,0.055521257221699],[0.046638213098049,-0.0077926074154675,0.028542382642627],[-0.048124682158232,-0.02920906804502,0.025221632793546]],[[0.013686551712453,0.049807000905275,-0.014093107543886],[0.047654204070568,-0.021658051759005,0.035592403262854],[0.11946666240692,0.016005571931601,-0.00022897114104126]],[[0.023127293214202,0.033876843750477,0.033770587295294],[-0.0017032517353073,0.015866728499532,-0.019990555942059],[-0.047547146677971,0.0090026399120688,-0.012132177129388]],[[0.058353241533041,-0.079152591526508,-0.075946643948555],[-0.074358493089676,-0.10514537990093,-0.011504783295095],[-0.083372265100479,0.081031300127506,0.026302913203835]],[[0.098057642579079,-0.078794397413731,0.073850132524967],[0.060740046203136,-0.046555582433939,-0.015340940095484],[-0.083713240921497,0.0087286019697785,0.017761487513781]],[[0.041398894041777,-0.0052869827486575,0.046005051583052],[0.05920148268342,-0.0087799625471234,0.049800302833319],[0.042322494089603,-0.092753082513809,-0.010998252779245]],[[-0.065904304385185,0.13540966808796,0.0066156312823296],[0.0082308957353234,0.012841303832829,0.05962198600173],[-0.023812646046281,0.01861728541553,0.0045806746929884]],[[-0.011250818148255,-0.035504542291164,-0.012771078385413],[0.076330251991749,-0.075775012373924,-0.026786031201482],[-0.017435124143958,-0.031610105186701,0.024309208616614]]],[[[0.022048123180866,0.012402643449605,-0.030009606853127],[0.039130672812462,0.0086447317153215,0.060161158442497],[-0.020174983888865,0.019993742927909,-0.041859060525894]],[[-0.027266271412373,-0.077047616243362,-0.067742265760899],[0.019558964297175,0.0014189325738698,0.026508666574955],[0.011947992257774,0.015093678608537,-0.016808120533824]],[[0.020045390352607,-0.02438198402524,0.013028969988227],[0.0092582078650594,-0.032704833894968,0.003188218222931],[0.015863507986069,0.013858865015209,0.019041687250137]],[[0.044356256723404,-0.029697228223085,-0.047577895224094],[-0.014486775733531,0.015535796992481,0.02310842461884],[-0.0056176604703069,0.061069749295712,0.0023226537741721]],[[0.070222459733486,-0.019794659689069,-0.0075913462787867],[-0.023409148678184,0.034082889556885,0.0033916167449206],[-0.0063342098146677,0.015354353003204,-0.0029399984050542]],[[-0.090344451367855,-0.0084284953773022,-0.072584614157677],[-0.020001420751214,0.030313435941935,0.0046369414776564],[-0.072254806756973,0.069413423538208,-0.022573191672564]],[[0.011174858547747,-0.075646720826626,0.07371386885643],[-0.07799120247364,0.045367497950792,-0.035576596856117],[0.037692319601774,-0.01769046112895,-0.019965056329966]],[[-0.062107682228088,-0.087736420333385,0.046170331537724],[0.090325534343719,0.0059623448178172,0.0012439179699868],[-0.042931750416756,-0.0057768630795181,-0.0023259045556188]],[[-0.023733975365758,-0.05488309264183,-0.030086431652308],[0.013661759905517,0.026884263381362,-0.0060888542793691],[-0.025482850149274,-0.051348399370909,-0.031534638255835]],[[-0.052858334034681,-0.010829301550984,-0.021596811711788],[0.033470515161753,-0.015829799696803,0.00095734902424738],[-0.05066853761673,0.020275954157114,0.032169204205275]],[[-0.023077663034201,-0.051577687263489,0.030271431431174],[-0.027565132826567,-0.063131541013718,-0.024087499827147],[0.0077777374535799,-0.062709413468838,0.06070463731885]],[[0.080918729305267,0.046315498650074,0.028206529095769],[0.028400298207998,-0.056211706250906,-0.0029965825378895],[-0.056973900645971,-0.017491122707725,0.067754283547401]],[[0.05310732126236,0.02235116623342,0.015567498281598],[-0.00075740838656202,-0.068457365036011,-0.047526936978102],[-0.022799886763096,-0.068693615496159,-0.068249322474003]],[[-0.09795480966568,0.037743277847767,-0.021884966641665],[0.057099688798189,-0.041885804384947,-0.035562720149755],[-0.074390932917595,-0.008061514236033,-0.0078937504440546]],[[0.020231653004885,0.0097756832838058,-0.10850342363119],[-0.043440997600555,-0.018983697518706,0.049027089029551],[0.02493754774332,0.081912912428379,-0.01918407343328]],[[0.062592215836048,0.0041371216066182,0.016471633687615],[0.043760281056166,0.0071056112647057,-0.046118017286062],[-0.032707735896111,0.021149061620235,-0.05974142998457]],[[-0.0098284166306257,-0.018851006403565,-0.027958622202277],[0.017157008871436,-0.035779047757387,-0.039430759847164],[0.023590605705976,-0.010340905748308,0.027158118784428]],[[-0.021699933335185,-0.031388159841299,-0.015037306584418],[0.034977860748768,-0.046138823032379,0.026796577498317],[-0.015608510002494,-0.0033220492769033,-0.047348216176033]],[[-0.05354381352663,0.0052796611562371,0.01347119640559],[0.044673707336187,-0.038319528102875,-0.0028783341404051],[0.05816537886858,0.039318386465311,0.013480159454048]],[[-0.0057092988863587,-0.071372710168362,0.0067727626301348],[0.014711201190948,-0.040149256587029,0.080377213656902],[0.081555254757404,-0.010014312341809,0.017896097153425]],[[-0.046874914318323,0.0013710695784539,0.11102847754955],[-0.0038091873284429,-0.027985502034426,-0.011535609140992],[0.066055089235306,0.031411603093147,0.017035709694028]],[[-0.0057446244172752,0.013852012343705,0.070299588143826],[0.065720550715923,-0.016056636348367,0.014661455526948],[-0.012445690110326,-0.019405012950301,0.0070911394432187]],[[-0.026756301522255,0.071322128176689,0.040322408080101],[0.035886134952307,-0.0073722461238503,-3.5644738090923e-05],[-0.020760329440236,-0.052013393491507,-0.010256703011692]],[[0.064324371516705,0.013053598813713,0.048949580639601],[0.056771356612444,-0.0032358423341066,0.038351017981768],[-0.034422978758812,-0.069629848003387,-0.019968988373876]],[[-0.029553974047303,0.070503659546375,0.010249191895127],[0.03153408691287,0.057384874671698,-0.014048394747078],[0.0010529503924772,0.085711762309074,-0.063825264573097]],[[0.098865658044815,-0.0346908159554,-0.012843053787947],[-0.040078170597553,-0.017300240695477,-0.05996822938323],[-0.079204723238945,-0.050559122115374,0.050529323518276]],[[0.0099989511072636,-0.073637776076794,-0.018238024786115],[0.0064529897645116,-0.03691603243351,0.0172033701092],[-0.065732084214687,0.066423237323761,0.054601036012173]],[[-0.13619419932365,-0.047326806932688,0.03973114490509],[0.056386776268482,-0.055634807795286,-0.046946547925472],[-0.03034009039402,0.0074331639334559,-0.049245607107878]],[[0.00084152998169884,0.023583643138409,-0.058229252696037],[-0.0069775879383087,-0.0069871242158115,0.068409867584705],[0.0032715201377869,0.024094738066196,-0.035769183188677]],[[-0.048425581306219,0.066554076969624,0.031917508691549],[-0.046849798411131,-0.0011704469798133,0.044701125472784],[0.013519518077374,-0.023282587528229,0.0098458491265774]],[[0.033971961587667,0.06187778711319,0.021184213459492],[-0.039909802377224,0.046376831829548,0.032721154391766],[-0.087401404976845,-0.047088287770748,0.034111704677343]],[[0.038369733840227,0.068912699818611,0.0060606985352933],[0.011212411336601,-0.033988352864981,-0.07592111825943],[-0.023841362446547,0.035378895699978,-0.11172032356262]],[[-0.00078302231850103,-0.031092377379537,0.033576004207134],[0.075741477310658,0.027740817517042,-0.061633635312319],[-0.031220085918903,-0.06067056953907,-0.0043197381310165]],[[-0.097283855080605,0.009407670237124,0.046926412731409],[-0.042116101831198,0.0014734852593392,-0.037838630378246],[-0.044526226818562,-0.015346748754382,0.0016534369206056]],[[0.020576365292072,0.028833206743002,0.017713095992804],[0.035050060600042,0.021957932040095,-0.084922514855862],[0.067730456590652,0.02281985245645,-0.014711356721818]],[[-0.00057431776076555,-0.005017080809921,0.064760431647301],[0.012428968213499,-0.0090867346152663,-0.011790751479566],[-0.048323042690754,-0.032076217234135,0.092526458203793]],[[-0.011725882068276,0.037493042647839,0.034768600016832],[0.046934090554714,-0.036990597844124,0.006395760923624],[-0.05403334274888,-0.042604979127645,0.010468822903931]],[[0.031034084036946,-0.01943083293736,0.062619082629681],[0.075245469808578,-0.033628240227699,0.0088203493505716],[0.012825642712414,-0.049994602799416,-0.080511376261711]],[[-0.013524443842471,-0.012447902001441,-0.11119735240936],[-0.0062102731317282,0.0057286978699267,0.019075445830822],[-0.019308736547828,-0.071522548794746,0.021725811064243]],[[0.027902344241738,-0.020093748345971,0.037765081971884],[-0.062509424984455,-0.022779062390327,0.012621913105249],[-0.011465650983155,0.031137127429247,0.05775098875165]],[[-0.063604190945625,-0.043110556900501,-0.0027750993613154],[-0.012636058963835,-0.03862700983882,0.050772648304701],[0.031593300402164,0.05647524818778,0.016413843259215]],[[0.01162276044488,0.019675387069583,0.0034143701195717],[-0.0077364589087665,-0.030585834756494,-0.0094756055623293],[-0.008249007165432,0.019690584391356,-0.038021396845579]],[[0.042489182204008,-0.053297780454159,0.0049330610781908],[0.026367858052254,0.001366108073853,-0.014792085625231],[0.019583271816373,0.055400669574738,0.082604974508286]],[[0.090865947306156,0.026542315259576,-0.046692971140146],[-0.021880952641368,-0.029303923249245,0.0039126668125391],[-0.017859933897853,0.05317847058177,-0.0038035591132939]],[[0.046935487538576,-0.08494509011507,0.018970934674144],[-0.047400288283825,-0.024672271683812,0.066519893705845],[0.043879266828299,0.016612431034446,-0.015030576847494]],[[0.05146811529994,0.13758543133736,0.048282381147146],[-0.01933840662241,0.013298392295837,-0.0025719180703163],[-0.052363235503435,-0.068953543901443,-0.026734175160527]],[[-0.0045996503904462,-0.055650930851698,0.045018546283245],[0.088209472596645,-0.0037561792414635,-0.015434862114489],[0.042828254401684,0.12678201496601,-0.016302360221744]],[[-0.097637578845024,0.043233625590801,-0.11042521893978],[-0.069582134485245,-0.043266154825687,0.041060037910938],[-0.031504198908806,0.023421069607139,-0.00077712873462588]],[[-0.061962649226189,0.045742370188236,0.035690315067768],[-0.010372783988714,0.016022779047489,0.0029728952795267],[0.031967576593161,0.0031126050744206,-0.065936714410782]],[[0.024068119004369,0.024561477825046,0.060474678874016],[0.081004813313484,-0.030159177258611,0.022675151005387],[-0.042302839457989,0.013881251215935,-0.043199054896832]],[[-0.029024662449956,-0.06141946092248,-0.049613934010267],[-0.012161664664745,0.026244804263115,0.037172354757786],[0.025829592719674,0.080200396478176,0.023847430944443]],[[-0.081039980053902,0.040928207337856,-0.050649162381887],[-0.0042793285101652,-0.061048079282045,-0.011852600611746],[0.063277751207352,0.00086768373148516,0.064660802483559]],[[-0.035991478711367,0.013119262643158,-0.011025986634195],[0.033087827265263,0.033485095947981,-0.05015491694212],[0.028266225010157,-0.0087769543752074,-0.050907034426928]],[[-0.018677342683077,-0.052782353013754,0.009123744443059],[-0.0038315856363624,-0.018211351707578,-0.062255747616291],[-0.014158632606268,-0.0028389974031597,0.025078626349568]],[[0.04234592244029,-0.014569696038961,-0.008496817201376],[-0.0047361589968204,0.045903455466032,0.061223212629557],[0.0042042233981192,-0.015775801613927,-0.036653362214565]],[[0.066481813788414,-0.028909411281347,-0.0099543975666165],[0.031417716294527,-0.0081094168126583,0.057706192135811],[0.030721008777618,-0.032497011125088,0.088943630456924]],[[-0.013042672537267,0.027073806151748,0.0015866111498326],[-0.042803790420294,-0.087977916002274,-0.00056959094945341],[0.011990875005722,-0.039287310093641,0.042997948825359]],[[-0.012479025870562,0.050420682877302,-0.023012284189463],[-0.052685502916574,0.017747864127159,-0.029836213216186],[0.061571165919304,-0.0042162393219769,0.072955951094627]],[[0.049758698791265,0.019755819812417,0.032793767750263],[-0.045647334307432,-0.030478917062283,-0.020949425175786],[0.026618044823408,-0.093435823917389,0.024940572679043]],[[0.047505501657724,0.056773643940687,-0.023900810629129],[-0.032496251165867,-0.037822287529707,0.058007307350636],[-0.0054997587576509,0.09045933932066,-0.09386170655489]],[[0.0098214307799935,-0.060345090925694,0.035754133015871],[0.014053885824978,0.010191817767918,-0.058412116020918],[0.035111900418997,0.044457573443651,0.031194632872939]],[[-0.0034271071199328,-0.019675293937325,0.023458059877157],[0.042711541056633,0.021054977551103,0.0043839230202138],[0.023577570915222,-0.046121101826429,-0.0021653883159161]],[[-0.016365930438042,0.056597638875246,-0.14266809821129],[-0.028357483446598,0.03781920298934,0.0077267275191844],[-0.037573825567961,-0.11224173754454,-0.012792016379535]],[[0.029114169999957,-0.058266114443541,0.089215241372585],[0.009645382873714,-0.011666486039758,-0.027788195759058],[-0.088624455034733,0.051956851035357,-0.070588067173958]],[[0.07583986967802,0.034913130104542,-0.019931230694056],[-0.040639825165272,-0.052895482629538,0.1152778044343],[-0.048134878277779,0.021472603082657,-0.025240493938327]],[[0.04278764128685,0.0075475946068764,0.011250503361225],[-0.020905131474137,0.02136586792767,0.0022743558511138],[0.10295521467924,-0.033313143998384,-9.2027439677622e-06]],[[-0.06884378939867,0.042289827018976,-0.0097071044147015],[0.080355867743492,0.054854661226273,0.035377152264118],[-0.0032095981296152,0.001411983044818,0.02814014442265]],[[0.03916172683239,-0.053683791309595,0.014039448462427],[0.010131597518921,0.019586062058806,0.0019471104023978],[-0.025448404252529,0.025552209466696,-0.057191263884306]],[[-0.015070845372975,-0.032956704497337,-0.0060813552699983],[0.099007539451122,0.058116804808378,0.02678938023746],[0.044997930526733,-0.021622525528073,0.013434102758765]],[[0.014827060513198,0.005927340593189,0.029015243053436],[-0.020920725539327,0.0077245854772627,0.015843005850911],[0.059406388550997,0.049840606749058,-0.037451680749655]],[[-0.031948208808899,0.017358753830194,-0.067898720502853],[0.022001013159752,-0.033494990319014,-0.011051363311708],[-0.069452151656151,-0.024695621803403,-0.01688289642334]],[[-0.043645475059748,-0.05239774659276,0.032753493636847],[-0.030680468305945,-0.03256531059742,-0.017814172431827],[0.018655367195606,-0.026270469650626,0.010387886315584]],[[0.04067051410675,-0.070128321647644,0.043659508228302],[0.011122207157314,-0.068444095551968,0.039406482130289],[0.021011615172029,0.0060506695881486,-0.030320160090923]],[[0.057950045913458,-0.0087281037122011,-0.0094260964542627],[-0.055160205811262,0.0051068565808237,0.061786457896233],[-0.0077160140499473,-0.055223286151886,-0.022405281662941]],[[-0.047042097896338,-0.013469804078341,0.01477772090584],[0.049347639083862,0.043226357549429,0.0057368064299226],[-0.075606286525726,0.0045141791924834,-0.0018449997296557]],[[0.019701750949025,-0.061054695397615,0.0030261173378676],[-0.01525117456913,-0.03098938241601,-0.019806072115898],[8.342441287823e-05,0.017701648175716,-0.010659324005246]],[[0.013246458023787,-0.063361503183842,-0.082900181412697],[0.058800674974918,0.028185183182359,0.014190408401191],[-0.044213108718395,0.0089916195720434,-0.048527758568525]],[[0.010179770179093,-0.01406332384795,-0.031583070755005],[-0.011393903754652,-0.020233914256096,-0.0013911840505898],[-0.0030680485069752,-0.014316221699119,-0.025448147207499]],[[0.0543143004179,-0.023831531405449,-0.053284008055925],[-0.00062941655050963,0.042206417769194,-0.008463584817946],[-0.030570765957236,0.022469459101558,-0.011476316489279]],[[0.075758084654808,-0.073286414146423,0.021604929119349],[-0.017585385590792,-0.0092539116740227,0.046822350472212],[0.055771376937628,-0.0051335352472961,-0.06177893280983]],[[-0.0038992972113192,-0.0060620554722846,-0.010841816663742],[-0.068613365292549,0.062958061695099,0.010898528620601],[-0.056326292455196,-0.017078151926398,-0.032948598265648]],[[-0.016746215522289,0.013944095000625,0.011030188761652],[0.036511592566967,0.014885920099914,-0.036761347204447],[0.048484414815903,0.017944863066077,0.02475112490356]],[[0.04834920540452,0.0480434037745,0.030710814520717],[0.048726689070463,0.03100829012692,0.027720332145691],[0.11226773262024,-0.019806858152151,-0.025207502767444]],[[0.033893056213856,-0.041496858000755,0.065659575164318],[-0.035582665354013,0.0030161200556904,-0.011546432971954],[-0.05637850612402,-0.014012282714248,-0.015934212133288]],[[0.043336134403944,-0.00049063737969846,0.0029170094057918],[0.044356182217598,-0.041212394833565,0.00579529767856],[0.018793234601617,0.012679817155004,-0.06900692731142]],[[-0.0039282385259867,-0.03434506803751,-0.017175266519189],[-0.0048807114362717,0.042542673647404,-0.021485691890121],[0.0042864456772804,0.038979038596153,0.029996851459146]],[[-0.056692749261856,-0.0077790855430067,0.055277355015278],[-0.011843981221318,0.0034778022672981,-0.032323405146599],[-0.01398794259876,0.053923118859529,-0.08028382062912]],[[0.015731476247311,-0.047043267637491,-0.05219104513526],[0.0036549204960465,0.04965602606535,-0.074733577668667],[0.11020865291357,-0.022837240248919,-0.010674986056983]],[[-0.0038089316803962,-0.069792248308659,0.039564114063978],[0.033351179212332,0.00080688891466707,-0.040877904742956],[-0.012172975577414,-0.051784694194794,-0.002178787952289]],[[-0.13351100683212,0.0020746944937855,0.020197279751301],[-0.028632901608944,-0.0035163862630725,0.087085634469986],[0.056155413389206,-0.010983596555889,0.10758055746555]],[[0.0090750055387616,0.022463215515018,-0.013001747429371],[0.0081250881776214,-0.02049452252686,0.056278198957443],[0.0073239812627435,-0.03763721883297,0.017627622932196]],[[0.018504606559873,0.016899982467294,0.057695504277945],[0.0142877176404,0.019278571009636,0.025639982894063],[0.001520273508504,-0.029492536559701,0.018546283245087]],[[-0.0074497982859612,0.03832359239459,-0.084914341568947],[0.039539493620396,-0.029948452487588,0.043895982205868],[0.021352365612984,0.034186583012342,-0.049090385437012]],[[0.026942484080791,0.025783171877265,-0.064880713820457],[-0.0099305836483836,-0.030560476705432,0.058627258986235],[0.053204152733088,0.068537473678589,-0.011934479698539]],[[0.04403830319643,-0.041255529969931,-0.034019820392132],[0.0010041039204225,0.013132885098457,-0.027267163619399],[0.089935846626759,0.027537712827325,0.019005777314305]],[[-0.012301190756261,-0.050514448434114,0.040236618369818],[0.040436819195747,-0.029778363183141,-0.058333732187748],[0.044048547744751,0.02602488361299,-0.021844629198313]],[[0.056225907057524,-0.0094074793159962,0.00096220761770383],[-0.037131786346436,-0.075198709964752,0.023096803575754],[-0.0079502016305923,-0.0035246075130999,0.021073918789625]],[[0.051177721470594,0.043497789651155,-0.060128662735224],[-0.024768250063062,0.003136036451906,-0.020298805087805],[0.022129798308015,0.033274441957474,0.0038517820648849]],[[0.0060270419344306,-0.03043220564723,0.014391515403986],[0.025886109098792,-0.056792549788952,-0.0051365620456636],[0.062280341982841,-0.013938762247562,0.043182484805584]],[[-0.0530686378479,-0.0060858465731144,0.018572971224785],[0.04115928336978,0.020594010129571,0.038061480969191],[0.030877381563187,0.037931200116873,-0.054992061108351]],[[-0.0087735643610358,0.034940205514431,-0.032598681747913],[-0.04252216219902,0.061619475483894,0.010867414996028],[-0.013153342530131,0.010351108387113,-0.050777286291122]],[[0.0027963870670646,0.043066296726465,-0.012739739380777],[0.051596034318209,0.078211240470409,0.020084926858544],[-0.026016836985946,-0.03765207529068,-0.070147529244423]],[[-0.018106220290065,-0.072928592562675,0.075688160955906],[0.021279402077198,0.01535951346159,-0.025549486279488],[-0.07887452095747,0.054293878376484,0.040412355214357]],[[0.020805738866329,0.022169040516019,0.0031492118723691],[0.032263442873955,0.0002873983758036,0.051105622202158],[-0.013915438205004,-0.023656234145164,-0.0083534345030785]],[[-0.0013486108509824,-0.10592892020941,-0.012729017063975],[-0.050754562020302,0.051872614771128,-0.021448029205203],[0.098660580813885,0.028976213186979,0.017855161800981]],[[0.0074753616936505,0.025912398472428,0.010527661070228],[-0.033687308430672,-0.036881342530251,0.035108048468828],[-0.016050027683377,0.065765388309956,-0.06071312725544]],[[0.015617529861629,-0.075719952583313,-0.038746669888496],[-0.085449025034904,0.036713600158691,0.0024364164564759],[-0.0048812297172844,-0.029922686517239,0.012491648085415]],[[-0.02595110796392,0.001457066857256,0.04987333714962],[0.11319553107023,-0.031249547377229,0.010790704749525],[0.036469846963882,-0.07505851238966,-0.04675555601716]],[[0.042669709771872,0.0008560522692278,-0.042723201215267],[0.051072668284178,-0.014517073519528,-0.025674354285002],[-0.0086040934547782,0.037219304591417,-0.063341364264488]],[[-0.077965594828129,-0.0026908256113529,-0.040898572653532],[-0.081040240824223,-0.030202452093363,-0.079201072454453],[-0.024701450020075,-0.024505030363798,-0.020648257806897]],[[0.085228733718395,0.033613860607147,-0.06008218601346],[0.018578223884106,0.0525460280478,0.020085122436285],[0.036757256835699,0.12551133334637,-0.0083686402067542]],[[0.0015537904109806,0.038803394883871,-0.093132607638836],[-0.0083779841661453,0.0015353100607172,-0.0032837311737239],[0.013124187476933,0.069583177566528,0.0016739012207836]],[[0.010199524462223,-0.025306656956673,0.0285839214921],[0.023688225075603,-0.010395760647953,-0.0077412938699126],[-0.044991694390774,-0.024296587333083,0.026846075430512]],[[-0.072120077908039,0.039252139627934,-0.029186753556132],[-0.017460893839598,-0.038899965584278,-0.029246056452394],[-0.06282452493906,-0.080702424049377,-0.079307742416859]],[[0.028283024206758,-0.05408713594079,-0.031794652342796],[0.016137743368745,0.038746293634176,-0.060055483132601],[-0.058534637093544,0.014882645569742,0.047905404120684]],[[0.0009585966472514,-0.017288852483034,0.0013440010370687],[-0.0083217192441225,-0.01297437492758,0.010682153515518],[-0.010449143126607,-0.037538848817348,0.041825175285339]],[[0.036334291100502,-0.0095656728371978,-0.012539279647171],[-0.026992494240403,0.05415478348732,0.05193355306983],[-0.03412701562047,-0.029329063370824,0.031446930021048]],[[0.073906749486923,-0.093651935458183,0.0097621334716678],[0.026049856096506,-0.084682703018188,0.046656172722578],[0.069059535861015,0.04012468084693,0.051608223468065]],[[-0.022148985415697,0.001290988526307,-0.046957708895206],[-0.039444282650948,0.005299277137965,0.0098599642515182],[-0.015428851358593,0.010652526281774,-0.064455576241016]],[[0.0017435667105019,-0.029059452936053,0.017965229228139],[-0.0045703914947808,0.021297937259078,0.016708629205823],[-0.062456991523504,0.045058529824018,-0.016569271683693]],[[0.010063920170069,0.010901048779488,-0.0024115820415318],[-0.017511187121272,0.053198300302029,-0.00069889018777758],[-0.018607137724757,-0.007462062407285,0.02554901689291]],[[0.041040297597647,0.034466236829758,-0.058510791510344],[0.045208476483822,-0.017304630950093,0.043245978653431],[-0.025447262451053,-0.054802503436804,-0.060061063617468]],[[-0.094849430024624,0.045909695327282,-0.030417162925005],[-0.077022440731525,0.054982587695122,0.015271977521479],[-0.0002526284661144,-0.015004159882665,0.02038592658937]],[[0.092590026557446,-0.010383098386228,-0.023305788636208],[-0.028815060853958,0.044001314789057,-0.092018991708755],[0.005743894726038,0.0013172724284232,-0.016902003437281]],[[0.072902388870716,0.031264219433069,-0.012858444824815],[0.035359036177397,0.059973239898682,-0.059950936585665],[0.073686398565769,-0.021474497392774,0.039175733923912]],[[0.0099815251305699,-0.0018488942878321,0.03963490948081],[-0.0011673308908939,-0.018929619342089,-0.0028541588690132],[0.005691175814718,-0.10132157802582,0.0054811518639326]],[[0.055833145976067,-0.025358963757753,0.043332871049643],[-0.015430707484484,-0.013063529506326,0.013858613558114],[0.016759498044848,-0.062728106975555,-0.027546616271138]],[[0.0021040407009423,-0.01417700573802,0.0054054949432611],[-0.085657328367233,0.03222981095314,0.0090220626443624],[-0.0018862066790462,0.018588449805975,0.049728527665138]]],[[[0.069540113210678,-0.042398732155561,-0.037401124835014],[-0.12716697156429,0.041280396282673,0.032163523137569],[-0.084965154528618,0.096684873104095,-0.12751999497414]],[[0.049308765679598,0.18783049285412,-0.11417511105537],[-0.126220241189,0.031170804053545,-0.10670600831509],[-0.11971233785152,0.093375451862812,-0.12195946276188]],[[-0.091890200972557,0.14492954313755,0.065649643540382],[-0.065677233040333,-0.036190390586853,0.1272851973772],[0.10443391650915,-0.12288016080856,0.048313025385141]],[[0.045052729547024,-0.16971398890018,0.069870799779892],[-0.076812967658043,0.045116316527128,-0.016750354319811],[0.024455722421408,-0.047273725271225,-0.021822767332196]],[[-0.018920386210084,0.00055863993475214,-0.14093750715256],[0.011720351874828,0.027736533433199,0.0035248347558081],[-0.042500387877226,-0.024791684001684,0.013591136783361]],[[0.10597661882639,0.06535217165947,-0.023111404851079],[0.14631301164627,-0.024560309946537,-0.07328449934721],[-0.049257125705481,-0.10627222061157,-0.15016171336174]],[[-0.075374275445938,-0.0092696370556951,0.017720453441143],[-0.039022970944643,0.06100907176733,0.052075881510973],[0.095113396644592,0.043046168982983,-0.053539574146271]],[[0.024863827973604,0.14930705726147,0.026646437123418],[0.098097585141659,-0.020131338387728,0.063733614981174],[0.018060125410557,0.066504813730717,0.0084222005680203]],[[0.13676105439663,0.12661902606487,-0.011383716017008],[-0.11443087458611,0.016622461378574,-0.033862102776766],[0.10346156358719,0.069617196917534,0.030004002153873]],[[-0.008642696775496,-0.011145871132612,-0.014302601106465],[-0.0063484697602689,0.0073373871855438,-0.037939216941595],[-0.01088032592088,-0.0017399485222995,-0.054935462772846]],[[-0.054418817162514,0.11986887454987,0.073193244636059],[0.054987099021673,0.042180918157101,0.10141719132662],[-0.073032759130001,0.065578483045101,-0.042037788778543]],[[-0.0026651043444872,0.10553505271673,-0.096215806901455],[-0.0068720299750566,0.12432710826397,0.021228374913335],[0.090072639286518,-0.16197161376476,0.048778284341097]],[[0.024515816941857,-0.18120862543583,-0.089662991464138],[-0.0065001863986254,0.014494316652417,-0.026868753135204],[0.0012955918209627,-0.11273651570082,0.056443087756634]],[[-0.019928364083171,-0.018445225432515,0.13815312087536],[-0.080343097448349,-0.075653590261936,-0.042070414870977],[0.049146559089422,0.050127845257521,-0.028790609911084]],[[-0.013819740153849,-0.037329901009798,-0.081360690295696],[0.054588869214058,-0.018987098708749,-0.072458356618881],[-0.051300838589668,0.032859090715647,-0.015529020689428]],[[0.092036455869675,-0.024672724306583,-0.0057311351411045],[-0.067616030573845,0.019929137080908,0.00075700029265136],[0.0053992778994143,-0.013239242136478,0.074285916984081]],[[0.024169441312551,-0.046938423067331,0.032577332109213],[0.12558896839619,-0.10369198769331,-0.053821589797735],[-0.068270139396191,0.10461882501841,0.027535658329725]],[[0.017101941630244,-0.018140127882361,-0.014048954471946],[0.04273784533143,0.019175190478563,-0.10056456178427],[0.090641461312771,-0.0080219460651278,0.027764176949859]],[[0.065167136490345,-0.025908367708325,-0.045193698257208],[-0.05568914860487,-0.10599203407764,0.062056325376034],[-0.032757330685854,0.053276807069778,-0.33419761061668]],[[0.0067038112320006,-0.053708989173174,-0.012632461264729],[-0.012422796338797,-0.083842121064663,-0.0059415749274194],[-0.00071315281093121,0.0043635154142976,-0.078898809850216]],[[-0.1405450552702,0.04738387465477,0.018423603847623],[0.21768766641617,-0.091027863323689,-0.0072355414740741],[0.017630212008953,-0.086138933897018,-0.027268441393971]],[[0.070070751011372,0.013146950863302,-0.20663803815842],[0.066754043102264,-0.15704883635044,-0.094021916389465],[-0.002669986570254,-0.091296970844269,-0.083727598190308]],[[0.10603682696819,0.038257423788309,0.065941631793976],[0.0095657492056489,-0.031211219727993,0.19327671825886],[-0.12735618650913,0.11320750415325,0.033091630786657]],[[-0.092429839074612,0.024223361164331,0.0330542139709],[-0.024096217006445,0.073296748101711,0.075833946466446],[-0.099874816834927,0.0087250052019954,0.07846787571907]],[[-0.068233482539654,-0.057054359465837,0.063496768474579],[0.1605050265789,0.053054247051477,-0.0079126926138997],[0.097137607634068,0.074730306863785,-0.089682929217815]],[[-0.070569172501564,-0.0066464259289205,-0.0056018307805061],[0.0094066942110658,0.054605949670076,-0.05961837247014],[-0.072841994464397,0.074485391378403,-0.046132139861584]],[[0.0073785353451967,-0.039611861109734,-0.0062266448512673],[0.10916619002819,0.099394604563713,0.048255238682032],[0.023198338225484,0.049270417541265,0.020392699167132]],[[0.071557641029358,-0.10722897946835,-0.065465301275253],[0.15404681861401,0.0051026907749474,-0.15955533087254],[-0.014465028420091,0.036127474159002,-0.039994962513447]],[[-0.019282124936581,-0.01792231015861,0.050145145505667],[0.03444055467844,-0.044553216546774,-0.030799798667431],[-0.0061624054796994,-0.17948970198631,-0.062958478927612]],[[0.069161221385002,0.051172383129597,0.12916657328606],[0.1102400124073,0.0064739403314888,-0.015787918120623],[0.071536593139172,-0.033282205462456,0.11691129207611]],[[0.037456277757883,-0.053469821810722,-0.063435971736908],[-0.047317385673523,-0.0013333478709683,0.12643425166607],[0.0063627287745476,-0.060109883546829,0.092921391129494]],[[0.034548010677099,-0.014747242443264,0.12123058736324],[0.026814270764589,0.10153508931398,-0.027621332556009],[-0.0087248478084803,0.071808986365795,-0.045098718255758]],[[-0.034021276980639,0.031361751258373,-0.12255535274744],[0.15754702687263,0.032238084822893,-0.031012216582894],[0.033997301012278,0.035692658275366,-0.14475704729557]],[[-0.0053600147366524,0.043929234147072,-0.038042362779379],[-0.0582868270576,0.042449183762074,-0.061286959797144],[0.059650283306837,0.072105519473553,0.070604503154755]],[[-0.011271792463958,0.06990385055542,0.085749268531799],[-0.093581348657608,0.15455071628094,-0.032347489148378],[-0.097905725240707,-0.15563942492008,0.013763359747827]],[[0.026082124561071,0.032002627849579,-0.06084781140089],[-0.0092260269448161,-0.050876833498478,0.10611885040998],[0.040050771087408,-0.059901881963015,0.02706803008914]],[[-0.0081239072605968,-0.0043307170271873,-0.024640129879117],[0.084487333893776,0.086943827569485,0.064681246876717],[-0.10594303160906,-0.038300301879644,-0.03849471360445]],[[-0.045971501618624,0.039271451532841,-0.00031753891380504],[0.076851017773151,-0.048217553645372,-0.08213509619236],[0.041490707546473,-0.10134753584862,0.27749028801918]],[[0.079155303537846,-0.076014593243599,0.04898614436388],[-0.022271538153291,0.0099369920790195,-0.00041000393684953],[0.024216346442699,0.1527297347784,-0.013007854111493]],[[0.031681928783655,0.10839693248272,-0.013689487241209],[-0.032205611467361,-0.12725654244423,0.060226563364267],[0.076462291181087,0.034183584153652,0.05379405990243]],[[0.063502863049507,-0.0009139651665464,-0.062053970992565],[0.10108010470867,0.085289269685745,0.015316559001803],[0.0027045647148043,-0.0061808209866285,0.014057490043342]],[[-0.04082802310586,-0.043112326413393,0.044064156711102],[-0.14490114152431,-0.0063720312900841,-0.071052558720112],[-0.081629395484924,-0.0034010903909802,-0.010296267457306]],[[-0.047911815345287,-0.12464345246553,0.0878791436553],[0.013889614492655,0.073849752545357,-0.094552710652351],[0.01320253033191,-0.12370322644711,0.064140550792217]],[[0.076867006719112,-0.010544929653406,-0.03856685757637],[0.12864604592323,-0.14655548334122,0.034089330583811],[0.11487564444542,0.14174938201904,-0.074756905436516]],[[0.066950231790543,0.0048055313527584,0.031388565897942],[0.11679840087891,0.13504363596439,-0.026970056816936],[-0.11895577609539,0.025070304051042,0.075232729315758]],[[0.22758102416992,-0.13783524930477,0.044457700103521],[-0.08003856241703,0.18857568502426,-0.076234817504883],[0.031239142641425,0.1295600682497,0.060582712292671]],[[0.061773851513863,-0.06461101770401,-0.042623247951269],[-0.00185837817844,0.10170961916447,0.0078097847290337],[0.11110212653875,-0.053909689188004,0.026449551805854]],[[0.066148795187473,0.034103561192751,-0.062088709324598],[0.095900163054466,0.0093326177448034,-0.10265575349331],[0.065634503960609,0.0083551146090031,-0.051562014967203]],[[0.055761873722076,0.031999509781599,0.06644444167614],[0.046880036592484,-0.095269776880741,0.013698382303119],[-0.01734614931047,-0.040061242878437,-0.020879372954369]],[[-0.031072713434696,0.0046809744089842,-0.066070534288883],[0.11204258352518,-0.032137710601091,-0.070696376264095],[0.095085114240646,-0.090490415692329,0.027420898899436]],[[0.019085610285401,-0.027778016403317,-0.051385048776865],[0.038944013416767,-0.068322144448757,0.02199456654489],[0.030742848291993,-0.0097998715937138,0.070657722651958]],[[-0.15497310459614,-0.034661773592234,0.047516018152237],[-0.05917850881815,-0.12864911556244,-0.064188346266747],[-0.16099229454994,-0.089550241827965,-0.1535404920578]],[[-0.03117354400456,0.072639629244804,0.043708328157663],[0.067148059606552,0.068629153072834,0.039893165230751],[0.11242660135031,-0.015761993825436,-0.044388387352228]],[[-0.060075029730797,-0.042966820299625,0.12985220551491],[0.045741677284241,0.0036281158681959,0.082629539072514],[-0.079297378659248,0.1181341484189,0.25146862864494]],[[-0.051863517612219,0.046622071415186,-0.011577439494431],[0.19085717201233,-0.018172049894929,0.15408271551132],[-0.042572721838951,-0.050438288599253,0.084400162100792]],[[0.046719126403332,0.022971116006374,0.023652961477637],[0.089715369045734,-0.049562584608793,0.058637350797653],[0.062628738582134,-0.22297820448875,-0.08910133689642]],[[0.00092377659166232,0.038374483585358,-0.11195217072964],[-0.010692112147808,-0.044474747031927,-0.093694724142551],[-0.058465301990509,-0.016334190964699,-0.012812309898436]],[[0.0052297166548669,0.058979514986277,0.0023422981612384],[0.0344921015203,-0.013583146966994,-0.044017542153597],[0.21421647071838,-0.018842993304133,-0.093780092895031]],[[0.024157024919987,0.094965063035488,-0.17560149729252],[-0.066683731973171,0.078853040933609,0.035360775887966],[0.084346890449524,-0.018635842949152,0.010316669940948]],[[0.1062256321311,-0.050760116428137,0.0024343479890376],[0.0748151242733,-0.033589582890272,0.050601132214069],[-0.082377322018147,0.10383121669292,-0.049227844923735]],[[0.04306210950017,-0.042215060442686,-0.0040568588301539],[-0.066925078630447,-0.0041516204364598,0.078368119895458],[-0.018739057704806,-0.13416823744774,0.029854882508516]],[[-0.059547007083893,-0.067734129726887,0.025275327265263],[-0.010651499032974,0.10390690714121,-0.069120571017265],[-0.01366666611284,-0.085520669817924,-0.045368127524853]],[[0.15051978826523,0.10069915652275,-0.025707542896271],[-0.0061964457854629,0.10464090108871,0.12692548334599],[-0.015229804441333,-0.034808702766895,0.039601299911737]],[[0.016230007633567,0.024843562394381,0.074978068470955],[-0.014650099910796,-0.0093832276761532,-0.054158821702003],[-0.06639152765274,-0.08878268301487,0.00027753436006606]],[[0.18668080866337,0.017885452136397,-0.052309341728687],[-0.039038635790348,0.084619410336018,0.11302997916937],[-0.039162557572126,-0.078872494399548,-0.072613894939423]],[[-0.058669310063124,0.012142310850322,0.084291778504848],[0.094092346727848,-0.047059170901775,0.069157391786575],[0.094267450273037,0.042624447494745,-0.023136992007494]],[[-0.087782144546509,0.17078596353531,-0.014230785891414],[-0.01271578297019,-0.088597804307938,-0.089005261659622],[0.00041037090704776,-0.0018294418696314,-0.19395899772644]],[[0.092490956187248,-0.0071277101524174,-0.0034461615141481],[0.12964197993279,0.053034823387861,-0.067429751157761],[-0.014099571853876,0.17146913707256,-0.0078929746523499]],[[0.071067005395889,-0.0027553404215723,0.031642906367779],[-0.090628050267696,-0.038562208414078,0.0045310147106647],[0.032696198672056,0.039427943527699,-0.031844180077314]],[[0.032121997326612,-0.020726135000587,0.037579476833344],[-0.10483849048615,-0.061620734632015,0.096134014427662],[-0.17472839355469,0.11914925277233,-0.099094666540623]],[[-0.011346165090799,-0.078232765197754,0.11282663792372],[0.0072872857563198,0.08584202080965,-0.10290607064962],[0.053120393306017,0.019231211394072,-0.015485873445868]],[[0.085155412554741,-0.085115917026997,0.082442104816437],[0.0041139218956232,-0.0041919960640371,0.020054943859577],[0.072689361870289,-0.041338421404362,-0.024084025993943]],[[0.18316951394081,0.084268547594547,-0.079530201852322],[-0.035232163965702,0.064215295016766,-0.03835005313158],[-0.02094741165638,-0.067594803869724,0.039328176528215]],[[-0.045321904122829,0.065728269517422,-0.039508491754532],[0.028935309499502,0.034931533038616,-0.032844197005033],[-0.13006108999252,-0.15657091140747,0.067690573632717]],[[0.019477732479572,0.018186762928963,0.064359195530415],[-0.060911498963833,-0.0071779093705118,0.051739852875471],[-0.050913609564304,0.075392559170723,-0.0042405962012708]],[[-0.21963718533516,0.0088835889473557,0.078873164951801],[0.13102515041828,0.013765173964202,-0.077850878238678],[-0.095047757029533,0.021022016182542,0.068449385464191]],[[0.065753594040871,-0.15719214081764,0.019733609631658],[0.014929589815438,-0.099048539996147,-0.0015623604413122],[0.063273094594479,-0.034617234021425,-0.098922044038773]],[[-0.087612293660641,-0.01928592287004,0.13460929691792],[-0.014129167422652,-0.042390491813421,0.06984630972147],[0.044751383364201,-0.087522573769093,0.042664654552937]],[[0.017662487924099,-0.05657222121954,-0.13835544884205],[0.1086044460535,0.01329258363694,0.0095281982794404],[0.026415657252073,-0.079140953719616,-0.047809269279242]],[[-0.085269495844841,-0.011861697770655,0.020893851295114],[0.12226525694132,-0.047894787043333,-0.090851381421089],[0.026459580287337,0.02865756675601,0.043090857565403]],[[0.057381961494684,0.0010566890705377,0.15785297751427],[-0.051470812410116,-0.098379626870155,0.048445198684931],[0.080427594482899,0.022672342136502,0.0017968997126445]],[[0.091316819190979,0.099265031516552,0.044993434101343],[-0.021731803193688,0.037675883620977,0.18870867788792],[0.046696279197931,-0.01414451841265,0.021777413785458]],[[0.13157910108566,0.022468227893114,0.04118075966835],[0.1531013995409,-0.11275658756495,0.20407319068909],[-0.016050543636084,0.088550463318825,-0.081143200397491]],[[0.010722002014518,-0.0090412106364965,0.044406712055206],[0.068700596690178,0.1579155921936,0.095118790864944],[0.01991268992424,0.084202565252781,0.10398225486279]],[[0.0026314028073102,-0.14941205084324,-0.040401220321655],[-0.04403905570507,0.067096523940563,-0.069212727248669],[0.16164845228195,-0.18539847433567,0.18802307546139]],[[0.043354146182537,-0.0070274821482599,0.058555763214827],[0.00076632405398414,-0.011027169413865,0.025313263759017],[-0.11596318334341,-0.027838215231895,-0.062415983527899]],[[-0.082504875957966,0.018973093479872,-0.10747332125902],[0.039125170558691,-0.021367045119405,-0.096763916313648],[0.13332936167717,0.13008616864681,-0.19839629530907]],[[0.0062210424803197,0.11921516805887,0.0077651990577579],[0.037626814097166,-0.036837231367826,-0.032067708671093],[0.081366308033466,-0.10826475173235,-0.070763036608696]],[[0.065208300948143,-0.10742867738008,-0.11021207273006],[0.083605408668518,0.02323424257338,0.0025330642238259],[0.10293961316347,-0.043999455869198,0.019772270694375]],[[0.050583880394697,0.16616405546665,-0.1078297495842],[-0.082360453903675,-0.10449966788292,-0.033387646079063],[0.049784533679485,-0.040922980755568,-0.089554376900196]],[[-0.0061014583334327,-0.013591608032584,-0.11357622593641],[-0.018478460609913,0.16494020819664,-0.060542143881321],[-0.053998619318008,0.025189006701112,0.063609205186367]],[[0.022806543856859,-0.0036815239582211,-0.003167214570567],[-0.18886886537075,-0.094459027051926,-0.025377221405506],[0.018763601779938,0.12218487262726,-0.094010964035988]],[[0.062943935394287,0.016147635877132,-0.023174457252026],[0.013473127968609,0.0063645648770034,0.06366765499115],[0.1765343695879,-0.058696016669273,-0.024216087535024]],[[0.029896738007665,-0.046682465821505,0.047300349920988],[0.028935555368662,-0.077309332787991,0.082717634737492],[-0.0092746270820498,-0.022878602147102,0.022650089114904]],[[-0.019974024966359,0.08530093729496,-0.043747901916504],[-0.058132071048021,-0.1353502869606,0.072562396526337],[-0.052493363618851,0.11245610564947,-0.12296427041292]],[[-0.049193058162928,-0.00871058460325,-0.042222805321217],[0.0086982687935233,-0.097791500389576,0.069438822567463],[0.092556804418564,0.11410439014435,-0.024119060486555]],[[-0.037303902208805,-0.11111400276423,-0.037132907658815],[-0.013581149280071,0.09343933314085,0.092361688613892],[-0.065309882164001,-0.027675220742822,-0.042549081146717]],[[-0.026481637731194,0.14484871923923,-0.032909773290157],[0.032259672880173,0.15162807703018,0.0545957647264],[0.056901827454567,0.060140997171402,-0.029165675863624]],[[0.085078284144402,0.05825263261795,0.059265207499266],[-0.17800863087177,0.07984758913517,0.10803765803576],[0.26982086896896,0.0080496035516262,0.024287352338433]],[[-0.074000336229801,0.027387311682105,0.0082106702029705],[0.02211632207036,-0.020860904827714,-0.013552647083998],[0.025748763233423,-0.11642441153526,0.012497696094215]],[[0.098957419395447,0.046166248619556,-0.083837911486626],[0.074659235775471,0.13785715401173,-0.12887474894524],[0.07097601890564,-0.010663474909961,0.023657411336899]],[[-0.049757950007915,0.064101561903954,-0.0091621289029717],[-0.096238531172276,0.063732944428921,0.057601690292358],[0.060085147619247,-0.04534849151969,-0.065449722111225]],[[-0.03725453093648,0.055984936654568,0.030681122094393],[0.026622861623764,0.011901854537427,0.041596371680498],[0.10410298407078,-0.10503944009542,0.01799338683486]],[[-0.036767229437828,-0.11281299591064,0.050220649689436],[0.023196659982204,-0.059680625796318,0.044758465141058],[0.011718710884452,-0.046949412673712,-0.072486251592636]],[[-0.020904308184981,0.13079881668091,0.1127747297287],[-0.117017544806,-0.049472209066153,0.013540646061301],[-0.23084689676762,-0.082831434905529,-0.067607276141644]],[[0.087571732699871,0.09859935939312,-0.063863702118397],[0.0025131371803582,-0.060157749801874,0.0071176318451762],[-0.039577431976795,0.062689691781998,-0.041148379445076]],[[0.074991174042225,-0.053277857601643,-0.040312122553587],[0.011633570306003,0.10150589048862,-0.043096106499434],[-0.027521183714271,-0.051577132195234,-0.13224470615387]],[[-0.08578035235405,-0.04124354198575,-0.035496313124895],[-0.10653612017632,-0.0085746608674526,-0.08250105381012],[-0.023866284638643,0.144387409091,-0.014621958136559]],[[0.0038626729510725,-0.020165396854281,-0.048010118305683],[0.023683847859502,-0.015010601840913,0.19626741111279],[-0.027309402823448,0.032552756369114,-0.14537696540356]],[[0.023760765790939,0.030765570700169,-0.061683841049671],[-0.06289941817522,0.059259667992592,0.036346107721329],[0.0052330829203129,0.06282564252615,-0.022688126191497]],[[0.029364729300141,-0.020221361890435,0.052620258182287],[0.039192236959934,0.1642374843359,-0.043307065963745],[-0.057852879166603,-0.0058329645544291,-0.017379453405738]],[[0.092268578708172,-0.061425149440765,-0.022967215627432],[0.092739030718803,-0.062294699251652,0.068303219974041],[0.074140183627605,0.062407419085503,-0.099648177623749]],[[-0.049980994313955,0.17765484750271,0.17821592092514],[-0.023315943777561,-0.16140355169773,0.16487097740173],[-0.056016448885202,0.10630950331688,0.04892960190773]],[[-0.0020745978690684,-0.020155258476734,0.0058146771043539],[-0.079405546188354,0.09628688544035,-0.025503462180495],[-0.033550746738911,-0.060577493160963,0.013527319766581]],[[-0.036437656730413,0.008713292889297,0.065577320754528],[-0.11094776540995,-0.058542486280203,0.057818572968245],[0.029359711334109,-0.039374656975269,0.09717869758606]],[[-0.072292625904083,0.014487673528492,-0.067081071436405],[0.099334731698036,-0.012027165852487,-0.043376427143812],[-0.0030284218955785,-0.053084954619408,0.028694001957774]],[[0.031702749431133,0.059735674411058,0.05817786231637],[0.062840782105923,-0.013984865508974,-0.043305426836014],[-0.012981628067791,0.036358263343573,0.0076949940994382]],[[0.052827045321465,0.055902041494846,0.058835487812757],[-0.02107129432261,0.028281601145864,0.13103283941746],[-0.064520291984081,-0.09307637065649,-0.005900755058974]],[[-0.00014527021266986,-0.10097125172615,0.054552350193262],[-0.10233234614134,0.030165065079927,0.14333179593086],[0.11403354257345,0.01954709738493,0.091225132346153]],[[-0.047014258801937,0.086732394993305,0.08986634016037],[-0.11068736761808,-0.022118888795376,0.019262036308646],[-0.12371974438429,0.042267382144928,-0.057566910982132]],[[0.023344483226538,0.060942221432924,-0.014901397749782],[-0.010220501571894,-0.10037245601416,-0.15504248440266],[-0.049321658909321,-0.061550863087177,0.014949964359403]],[[-0.10511948168278,-0.076985001564026,0.051987264305353],[0.029995320364833,0.12676644325256,0.032050091773272],[-0.028478832915425,-0.12199231237173,0.043876972049475]],[[0.019168738275766,0.0033066812902689,0.053560953587294],[0.060246113687754,0.14041928946972,-0.043155714869499],[-0.077656522393227,-0.055559113621712,0.030521061271429]],[[0.050455991178751,-0.0085323806852102,0.016180656850338],[-0.020178861916065,0.053293220698833,-0.086674839258194],[-0.0021169655956328,-0.043100919574499,-0.0048908479511738]],[[0.08943223208189,-0.0012796017108485,0.072541795670986],[0.075943470001221,-0.0055315271019936,0.053427871316671],[-0.081587314605713,0.10686665028334,0.015396786853671]],[[-0.0038178013637662,-0.036540858447552,0.14271420240402],[-0.1285215318203,-0.12407467514277,0.061161551624537],[0.089538834989071,-0.0019737931434065,0.02402750402689]],[[0.076257012784481,0.059222240000963,-0.051975354552269],[0.0899942740798,0.051066059619188,-0.13266333937645],[-0.011374820955098,-0.0577089227736,-0.073753118515015]],[[-0.033795963972807,0.022532721981406,0.063770741224289],[-0.0094694644212723,0.0513323135674,-0.028121588751674],[0.0091972900554538,0.010787042789161,-0.022907927632332]]],[[[0.071214474737644,-0.033876698464155,-0.0018880848074332],[-0.0024374464992434,0.0012867304030806,-0.026323650032282],[0.03657903522253,-0.048864375799894,-0.046497959643602]],[[0.01824845187366,0.05730128288269,-0.043501615524292],[-0.046301260590553,-0.028390759602189,0.013738908804953],[0.014160996302962,-0.0081217857077718,0.089265696704388]],[[0.030363092198968,-0.045247085392475,-0.033699616789818],[0.04496781155467,-0.064711302518845,-0.074893765151501],[0.0058538056910038,-0.030527366325259,-0.043977875262499]],[[-0.008835450746119,-0.049482636153698,0.015142451971769],[0.11099319159985,0.030873415991664,-0.09246651083231],[-0.017029382288456,0.08929032087326,-0.011697590351105]],[[0.0042221443727612,-0.028967909514904,0.045728459954262],[0.03864699229598,0.074691720306873,-0.14891098439693],[-0.050681602209806,-0.085479080677032,-0.076337359845638]],[[0.002358446130529,0.0030894142109901,0.0076655964367092],[-0.0071836006827652,0.10382305085659,0.039032723754644],[0.028245957568288,-0.060279347002506,0.068505920469761]],[[-0.0053958636708558,-0.050508804619312,-0.070177733898163],[-0.011583245359361,0.031896445900202,-0.10406906157732],[0.14809677004814,0.1151096150279,0.0024362492840737]],[[0.058742366731167,0.0006667654379271,0.078015834093094],[-0.021037876605988,-0.0053673689253628,-0.023431915789843],[-0.073036439716816,-0.093897521495819,-0.072239369153976]],[[-0.011614453978837,0.078118592500687,0.073993593454361],[-0.065879695117474,-0.020407715812325,0.061958488076925],[-0.077956646680832,-0.023331198841333,-0.10022220015526]],[[0.0068025668151677,-0.030647419393063,0.031831908971071],[0.053889840841293,0.0082137323915958,0.018247161060572],[0.064507223665714,0.04072368517518,0.021212797611952]],[[0.011199507862329,0.0055910493247211,0.0040933736599982],[0.04473639279604,0.0052764127030969,-0.077728815376759],[0.034397352486849,0.014708631671965,0.052749007940292]],[[-0.021710937842727,0.0069097117520869,0.035595327615738],[-0.056603811681271,-0.0083734486252069,-0.021807227283716],[0.077082701027393,0.0023234901018441,-0.014636127278209]],[[-0.049816977232695,-0.08516688644886,0.097530692815781],[-0.095311187207699,0.044573154300451,-0.043325677514076],[-0.07094956189394,0.12418955564499,0.070304326713085]],[[0.11415863782167,0.021962080150843,0.029276799410582],[-0.046786267310381,0.0044786301441491,-0.014975153841078],[-0.027302604168653,-0.096852488815784,-0.08168687671423]],[[0.0081972265616059,0.11004135012627,-0.0023094501812011],[-0.016987014561892,0.0091792941093445,0.12492645531893],[-0.017114955931902,0.017285903915763,-0.074951112270355]],[[-0.010070446878672,-0.0056330324150622,-0.008097942918539],[-0.016073662787676,-0.048318292945623,-0.0089821005240083],[-0.024909442290664,-0.045859221369028,-0.10951597988605]],[[-0.092863760888577,0.054002810269594,0.12165034562349],[0.057728953659534,0.04740422591567,0.1432046443224],[0.0081745255738497,-0.086774505674839,-0.076109327375889]],[[-0.014466172084212,0.23324659466743,0.04232444241643],[-0.2154900431633,0.12733970582485,0.035793300718069],[-0.023888705298305,-0.013625429943204,0.027754481881857]],[[-0.049097210168839,0.0014350637793541,0.023413496091962],[-0.021649057045579,-0.054778210818768,0.12194617837667],[0.0815799087286,-0.018508497625589,0.0040650009177625]],[[0.025084793567657,-0.025908527895808,-0.08683954924345],[0.0854257568717,-0.038981601595879,0.010536466725171],[0.031762100756168,0.12039613723755,-0.048815172165632]],[[-0.02581749483943,0.0079050250351429,-0.10373090952635],[0.048604566603899,-0.05465280637145,-0.0035437382757664],[0.09655374288559,0.020814480260015,-0.059238158166409]],[[-0.048606891185045,-0.027677392587066,0.1160651743412],[0.12369804829359,0.020816281437874,0.075676880776882],[0.041050605475903,-0.011984400451183,-0.075205974280834]],[[-0.0017671177629381,-0.055355776101351,-0.0021950879599899],[0.0054416116327047,0.018783159554005,0.0057182111777365],[0.04112645611167,0.0045497603714466,-0.0064176940359175]],[[-0.034845542162657,0.016420520842075,0.00277193589136],[-0.034731969237328,-0.0023378271143883,0.020762205123901],[0.0568623021245,0.10909666121006,0.060001280158758]],[[-0.02428206987679,-0.10315998643637,-0.029495161026716],[-0.23795744776726,0.025144848972559,-0.0091119827702641],[-0.010465148836374,-0.14060242474079,-0.094215050339699]],[[0.038184314966202,-0.024176742881536,-0.010363424196839],[-0.068485669791698,-0.011927873827517,0.040353942662477],[-0.026466591283679,0.062378812581301,-0.028662156313658]],[[-0.03833419084549,-0.01680195517838,-0.0022187018766999],[-0.072060577571392,-0.011892904527485,-0.046701956540346],[0.11665253341198,-0.040653608739376,-0.013844716362655]],[[0.034628149122,-0.11389025300741,0.015207369811833],[0.024230858311057,-0.011275168508291,-0.072972670197487],[0.11325799673796,0.039652206003666,0.044841162860394]],[[0.0064948620274663,0.072547823190689,0.03874758630991],[0.016076754778624,0.098513387143612,-0.064577624201775],[-0.095363967120647,0.071527674794197,0.086060896515846]],[[0.022010177373886,0.02749658934772,0.10193753987551],[0.087974652647972,-0.035919737070799,0.032488115131855],[-0.086584590375423,-0.093376360833645,0.0054712248966098]],[[0.033130828291178,0.033174153417349,0.0038569828029722],[0.1869056224823,-0.096324391663074,-0.053317174315453],[0.069915384054184,0.12180027365685,-0.033540222793818]],[[0.025454014539719,-0.1179711446166,-0.011262904852629],[-0.041462149471045,-0.12529717385769,-0.016716463491321],[0.059529591351748,0.014873563311994,0.054545152932405]],[[-0.022553626447916,-0.082511782646179,0.12899538874626],[0.020330419763923,-0.062383625656366,-0.031176725402474],[0.04164894297719,0.073523819446564,-0.065347984433174]],[[-0.035613313317299,-0.12170924991369,-0.1114883646369],[0.064583458006382,0.096231944859028,-0.12959264218807],[0.22069251537323,0.083053193986416,-0.033517524600029]],[[0.0043300464749336,-0.056784611195326,-0.0076998281292617],[-0.016536209732294,0.045977033674717,0.03210362419486],[0.1168991997838,0.043380007147789,0.027133638039231]],[[-0.080477930605412,-0.071069441735744,-0.026324912905693],[-0.14898227155209,-0.012708190828562,0.019701153039932],[-0.18253120779991,-0.068897068500519,0.019877132028341]],[[0.02729700319469,-0.016237825155258,-0.077836744487286],[0.020263306796551,-0.070303589105606,-0.070585802197456],[-0.022633001208305,-0.064830675721169,0.050246313214302]],[[-0.050897352397442,0.076946817338467,0.012777445837855],[0.054036967456341,0.01692907512188,-0.035976950079203],[-0.053205318748951,0.020836124196649,-0.020353022962809]],[[0.16762536764145,-0.020772429183125,0.049842208623886],[0.0074605699628592,-0.10477660596371,0.019280571490526],[-0.0023975337389857,0.089015662670135,-0.06275349855423]],[[-0.0090893404558301,0.065058879554272,0.07527732104063],[0.0043288161978126,-0.11977057158947,-0.068790584802628],[0.058714993298054,0.047099571675062,-0.071974687278271]],[[-0.08299095928669,-0.072353437542915,0.0312285926193],[0.008089111186564,-0.1684871762991,-0.061669748276472],[-0.05033091455698,-0.027233680710196,-0.041116401553154]],[[-0.01867432333529,0.037750355899334,-0.022518986836076],[-0.031430266797543,0.056979764252901,-0.034208949655294],[-0.1538088619709,-0.088887356221676,0.011013112962246]],[[0.058290507644415,-0.055494628846645,-0.15797020494938],[0.065236873924732,0.19552610814571,-0.0070211384445429],[0.13599425554276,0.044919196516275,0.016734765842557]],[[0.065639689564705,-0.054313957691193,-0.069174081087112],[0.02724277600646,0.090492591261864,-0.24186466634274],[-0.032323766499758,0.035596441477537,0.11244361102581]],[[0.1049807369709,0.013196242973208,0.089965529739857],[-0.065238825976849,0.064643487334251,0.012530547566712],[-0.094940304756165,0.0046209469437599,0.089889213442802]],[[0.018254483118653,-0.091205798089504,-0.072350211441517],[0.023515146225691,0.0096019115298986,0.011968531645834],[0.073573805391788,0.14357267320156,-0.032204575836658]],[[-0.024462653324008,0.12719719111919,-0.071577705442905],[0.038790505379438,0.012654421851039,-0.051870692521334],[0.097387194633484,0.039498411118984,-0.17585830390453]],[[0.067909501492977,-0.031167997047305,0.075952060520649],[0.00090126763097942,0.061519078910351,0.016370296478271],[0.0012022942537442,-0.033555030822754,0.016588846221566]],[[0.0068741156719625,-0.13011659681797,-0.018623946234584],[0.016874354332685,0.076163522899151,-0.041319284588099],[-0.0083782970905304,-0.027010098099709,0.044055353850126]],[[-0.064089380204678,-0.067006677389145,0.11079148948193],[-0.087621837854385,0.1080409064889,0.047219280153513],[0.0076891835778952,0.018692230805755,-0.020813809707761]],[[0.020819414407015,0.06393027305603,-0.098398670554161],[-0.0038114893250167,-0.035314537584782,-0.092721611261368],[0.0087744519114494,-0.0033160212915391,0.083537548780441]],[[0.033308662474155,0.023879704996943,0.037477899342775],[-0.0096976887434721,-0.074588268995285,0.055468086153269],[-0.021508127450943,-0.1183929219842,0.11586707830429]],[[-0.046459704637527,-0.0021671438589692,-0.10156350582838],[0.10883510857821,0.090289749205112,0.047913499176502],[0.035820484161377,-0.007163786329329,0.10286783427]],[[-0.050207551568747,-0.045610558241606,0.012640755623579],[-0.026100262999535,0.0088375462219119,0.028111824765801],[-0.013054093346,0.04268491640687,-0.088956944644451]],[[-0.084101274609566,0.0079995011910796,-0.0036360905505717],[-0.11221811175346,-0.063686393201351,-0.0099248960614204],[-0.082932628691196,-0.048681180924177,-0.012024819850922]],[[-0.014336788095534,0.039742965251207,0.018998434767127],[0.034439042210579,-0.018783727660775,-0.046002805233002],[0.01116260048002,-0.067418284714222,-0.02506734803319]],[[-0.062177445739508,0.062589153647423,-0.0034112504217774],[0.048116154968739,-0.057742115110159,0.034234400838614],[0.12123394757509,-0.072295561432838,0.092127725481987]],[[-0.021709401160479,-0.038462225347757,0.0068607805296779],[0.0044926083646715,0.0026918561197817,-0.10682930797338],[0.0057370467111468,0.07864585518837,0.10391849279404]],[[-0.00076865282608196,0.0023435254115611,0.036651000380516],[0.010520956479013,-0.059973407536745,0.076229274272919],[0.12399106472731,0.021984124556184,-0.20237788558006]],[[-0.023851785808802,-0.0044324304908514,-0.082662425935268],[-0.093455567955971,0.0040461127646267,0.013705126941204],[0.063820414245129,0.13518561422825,0.0094852764159441]],[[0.10859999805689,-0.038612812757492,0.13414956629276],[0.031375296413898,0.17678968608379,-0.037060789763927],[-0.11442704498768,0.069341085851192,0.042002733796835]],[[0.00079395750071853,-0.016787456348538,0.035892438143492],[-0.018271988257766,0.038192573934793,0.0078117162920535],[0.0084939273074269,-0.048532344400883,-0.001393121201545]],[[-0.027194665744901,-0.091067440807819,-0.010829458013177],[-0.073666304349899,-0.11207050830126,-0.14656981825829],[-0.0049601001664996,-0.012687995098531,0.05924130231142]],[[0.012436961755157,0.13604597747326,0.11295588314533],[-0.030375596135855,-0.068008132278919,0.033631581813097],[-0.033495079725981,-0.081687644124031,-0.063147634267807]],[[-0.035633474588394,-0.030365107581019,0.0071124909445643],[0.12948229908943,0.016217531636357,-0.2413113117218],[-0.059574812650681,0.12661796808243,-0.016957357525826]],[[0.10846747457981,0.064637295901775,-0.053958918899298],[-0.070082239806652,-0.12063961476088,0.032136008143425],[0.10837441682816,0.0022125171963125,-0.14727589488029]],[[0.15476754307747,0.040534090250731,-0.038419187068939],[0.0067449859343469,0.066941037774086,-0.0034789890050888],[-0.040086358785629,0.024206982925534,-0.040772970765829]],[[-0.0084450077265501,0.13757050037384,0.0070975287817419],[0.035241011530161,0.058149829506874,0.037029102444649],[0.050198920071125,-0.0020824717357755,0.03460206836462]],[[-0.025610579177737,0.0065715862438083,0.014442558400333],[-0.091113984584808,-0.0097583997994661,-0.022037457674742],[0.043163418769836,0.031866736710072,0.058998614549637]],[[0.08988943696022,0.15115627646446,0.17402078211308],[0.0013913215370849,-0.033966474235058,0.035786148160696],[-0.036850169301033,-0.030312554910779,-0.067728504538536]],[[0.035509191453457,-0.026250028982759,-0.026027025654912],[-0.049854908138514,0.060773994773626,0.066219076514244],[0.079007811844349,0.039075516164303,0.007155173458159]],[[-0.032333709299564,-0.044839210808277,0.018667224794626],[0.047437231987715,0.053306013345718,0.042279440909624],[-0.13359275460243,0.12315107882023,-0.0081218266859651]],[[-0.20651224255562,-0.047111231833696,-0.0066980374976993],[-0.15202808380127,-0.19863802194595,-0.043814055621624],[0.077356532216072,-0.055794045329094,-0.15280641615391]],[[-0.039671201258898,-0.0086706280708313,-0.025207966566086],[0.062954977154732,-0.078024335205555,-0.027589607983828],[0.11698362231255,-0.009237383492291,-0.095550961792469]],[[0.12289720028639,0.13979467749596,-0.072619408369064],[-0.057769972831011,0.20481190085411,0.018589589744806],[-0.037299443036318,-0.05593865737319,-0.029222773388028]],[[0.011495075188577,0.0038659465499222,0.040125459432602],[0.039015702903271,0.046224404126406,-0.060968913137913],[0.061596553772688,-0.027495447546244,-0.0014240599703044]],[[-0.055490743368864,-0.0494314879179,0.044760659337044],[-0.037135671824217,0.10322688519955,-0.021034983918071],[0.13363265991211,0.023035580292344,-0.0093539608642459]],[[0.067623637616634,0.15630801022053,0.046913683414459],[-0.066103622317314,-0.089291140437126,0.0061748004518449],[0.036725450307131,-0.054055631160736,-0.10098936408758]],[[-0.074221715331078,-0.090550377964973,0.079659819602966],[-0.061591029167175,-0.017737576738,0.027099875733256],[-0.015996988862753,0.007157479878515,0.023280838504434]],[[0.048264019191265,-0.024479968473315,0.080485977232456],[-0.023975858464837,-0.015530040487647,-0.15161882340908],[0.031617313623428,-0.028431728482246,-0.017241390421987]],[[0.028633709996939,-0.058974333107471,-0.081093601882458],[-0.002226873068139,0.084810450673103,-0.10520876199007],[0.00072828726842999,-0.032808229327202,-0.059734050184488]],[[-0.06206526979804,-0.022524317726493,0.054510410875082],[0.1033021658659,0.025910142809153,-0.0089547680690885],[-0.080539241433144,0.07262559980154,-0.036857392638922]],[[0.0041539487428963,-0.11638033390045,-0.023250326514244],[0.079329758882523,-0.024401601403952,0.055784806609154],[-0.050314445048571,0.045342959463596,-0.085097931325436]],[[-0.048465508967638,0.0075216181576252,0.051243044435978],[-0.019688051193953,0.019109815359116,-0.040115989744663],[0.024366000667214,-0.028136927634478,-0.12864822149277]],[[0.012228353880346,0.12297426909208,-0.0650549903512],[0.0086132474243641,0.02559812925756,0.023660767823458],[-0.010982383973897,-0.060990087687969,-0.082336708903313]],[[0.02147526293993,-0.11948361992836,0.048773888498545],[0.037891004234552,-0.030473677441478,0.077431164681911],[-0.051337983459234,-0.069696351885796,0.034462355077267]],[[0.090485014021397,-0.061843283474445,-0.10761716961861],[0.024374132975936,0.066334970295429,0.020369408652186],[0.021616443991661,0.039542503654957,-0.036743506789207]],[[0.022922279313207,-0.040191687643528,0.11634088307619],[-0.058516338467598,0.089104868471622,0.014498963020742],[-0.022038221359253,-0.064743027091026,0.010682373307645]],[[0.0068956008180976,0.070613346993923,-0.013350101187825],[-0.11309845000505,0.076256237924099,0.14152617752552],[-0.050878155976534,-0.032543808221817,-0.046310499310493]],[[0.088860988616943,0.010628988966346,-0.024155505001545],[-0.046129755675793,-0.016108270734549,0.074254721403122],[0.060107920318842,0.061119716614485,-0.0089469663798809]],[[-0.070634573698044,0.031571049243212,-0.1101016625762],[0.037364613264799,-0.052443608641624,-0.054776385426521],[0.15802130103111,0.1693652421236,-0.059154164046049]],[[0.024609124287963,0.037277687340975,0.0025794489774853],[-0.035986173897982,0.013450681231916,-0.082778058946133],[9.0307679784019e-05,0.11405884474516,0.0078432215377688]],[[-0.022313322871923,0.0026368096005172,0.053895097225904],[-0.032319627702236,-0.12103933095932,-0.017576694488525],[0.022052232176065,0.051609065383673,-0.0013516793260351]],[[0.068734481930733,-0.12683013081551,-0.12649041414261],[0.16948662698269,-0.0014544236473739,-0.14260511100292],[0.31518313288689,0.16046153008938,0.076638467609882]],[[-0.025097474455833,0.00034885466448031,0.0051215318962932],[-0.046320650726557,-0.058541350066662,0.066081203520298],[0.066273108124733,0.030519831925631,0.068797200918198]],[[0.027175694704056,-0.023187637329102,0.086112678050995],[0.0065058334730566,-0.0076920241117477,0.060656815767288],[0.073565654456615,-0.0050868806429207,-0.015700370073318]],[[0.055739816278219,-0.039987321943045,-0.04218528419733],[0.025574309751391,0.10373884439468,0.071393355727196],[-0.12645623087883,-0.01251027174294,0.01291636377573]],[[-0.030224401503801,-0.10510911792517,-0.076181620359421],[0.0097970049828291,0.086087256669998,-0.010593689978123],[-0.04924988374114,0.039516437798738,0.12234790623188]],[[-0.048838071525097,-0.072202026844025,0.0035081254318357],[-0.004353332798928,-0.034509461373091,0.00037265990977176],[-0.058011703193188,-0.011867474764585,0.0083210058510303]],[[0.006403548642993,0.0035162644926459,0.036094680428505],[0.023581106215715,-0.0068882559426129,-0.020918034017086],[0.052034538239241,0.070129476487637,0.063255235552788]],[[-0.015769474208355,-0.0058319144882262,-0.063685588538647],[0.026659173890948,-0.072715491056442,-0.032484814524651],[0.030323913320899,-0.00069891498424113,-0.018995827063918]],[[-0.024739395827055,-0.016437344253063,0.043227519840002],[0.042945180088282,-0.059044595807791,0.019983723759651],[0.053829055279493,0.050745248794556,0.096737541258335]],[[0.0084980484098196,0.099930219352245,0.028272097930312],[0.10255022346973,-0.12429439276457,-0.049960486590862],[0.049787405878305,-0.044714730232954,-0.030407706275582]],[[-0.10461737215519,0.027681855484843,0.021824227645993],[-0.11053673923016,0.11549346894026,0.033788025379181],[-0.12771928310394,0.050901349633932,0.16066448390484]],[[-0.12417203933001,0.060781508684158,-0.035662285983562],[-0.024490274488926,0.0034636431373656,-0.036367479711771],[0.067508354783058,0.017252586781979,0.096115715801716]],[[-0.089459523558617,-0.014837032184005,-0.042949732393026],[-0.046591762453318,0.041019842028618,0.092530362308025],[0.10045731067657,0.03182478249073,0.0051218564622104]],[[-0.028713315725327,0.06776736676693,-0.059698056429625],[-0.0253478102386,-0.079556964337826,0.012875566259027],[0.13065409660339,-0.0045089009217918,0.15916892886162]],[[0.15604230761528,-0.08334256708622,0.12215070426464],[-0.029927603900433,-0.015601449646056,-0.039198860526085],[-0.044744811952114,0.074502639472485,0.021800357848406]],[[-0.039059896022081,0.0057872785255313,-0.011318106204271],[0.015124638564885,0.025554347783327,0.026434501633048],[0.11723395437002,0.025985633954406,-0.054962676018476]],[[-0.0081351324915886,-0.043315663933754,0.034523017704487],[-0.031748544424772,0.040843978524208,-0.017782725393772],[0.031738135963678,-0.0018821246922016,-0.0068241329863667]],[[0.0070535121485591,0.033850248903036,-0.068083442747593],[-0.014932587742805,-0.0061426861211658,-0.0016223071143031],[-0.010455707088113,-0.021010847762227,0.022968931123614]],[[0.03641939535737,0.070888362824917,0.12152792513371],[-0.019125483930111,-0.043603356927633,0.00075586885213852],[-0.092783384025097,0.095539107918739,0.11693631857634]],[[-0.031901095062494,0.061023347079754,-0.13611052930355],[0.0407928340137,-0.090310946106911,-0.0037985881790519],[0.058329232037067,-0.026658350601792,0.14270389080048]],[[0.03181679174304,0.012939381413162,-0.031579684466124],[-0.0026975446380675,-0.021695900708437,-0.036072868853807],[-0.0041198125109076,0.01336226798594,0.025471482425928]],[[0.048982568085194,-0.015250468626618,-0.11732192337513],[0.13800562918186,-0.068657785654068,0.039586745202541],[0.012499401345849,0.078425817191601,0.0056334976106882]],[[-0.01669798605144,-0.067625470459461,-0.013792637735605],[0.12979905307293,-0.15052036941051,0.0058739483356476],[0.056638710200787,-0.08826257288456,-0.049932308495045]],[[0.0092264031991363,0.095912396907806,0.058151926845312],[-0.041314639151096,0.023546604439616,0.050194665789604],[-0.00045288581168279,-0.042083572596312,0.10912156105042]],[[0.065255932509899,-0.0087323803454638,-0.044716168195009],[-0.027757208794355,-0.0854452252388,-0.059306707233191],[0.024317242205143,0.045642599463463,0.0016474311705679]],[[0.060228049755096,-0.067267619073391,0.045198548585176],[-0.003135145874694,-0.0043236082419753,0.0024239954072982],[-0.0060002575628459,0.12208381295204,-0.021976439282298]],[[-0.11942287534475,-0.1723531037569,-0.081789962947369],[0.064206920564175,-0.050042055547237,-0.0127486390993],[-0.014021418988705,-0.051537677645683,0.0064033712260425]],[[0.090697154402733,-0.040450714528561,0.099134005606174],[0.021280076354742,-0.10682336986065,0.10240641236305],[-0.030867803841829,-0.010859970003366,0.015853423625231]],[[0.014051613397896,0.012734086252749,0.0026480141095817],[0.079085253179073,0.0056323329918087,0.012073040939867],[0.11090082675219,-0.037617329508066,0.045110084116459]],[[0.056787483394146,-0.099856644868851,-0.088079191744328],[-0.15240259468555,0.089560382068157,-0.11163932830095],[0.08052221685648,0.14078582823277,0.098455339670181]],[[-0.0045115584507585,-0.087420247495174,0.011891642585397],[-0.092777416110039,-0.027634767815471,-0.023067472502589],[-0.017159685492516,-0.026950228959322,0.074727959930897]],[[0.049879107624292,-0.075011469423771,-0.049763839691877],[-0.012388319708407,0.002534740138799,-0.043021991848946],[-0.046757809817791,-0.065287873148918,0.019376736134291]],[[-0.027087356895208,-0.1242313683033,0.0065302290022373],[0.042930513620377,-0.057382222265005,-0.001736473874189],[0.090684145689011,0.098202392458916,-0.0064023663289845]],[[-0.10228403657675,0.029186133295298,0.12920314073563],[0.016458559781313,-0.0062486086972058,-0.098149925470352],[-0.010840977542102,-0.10695504397154,-0.080374777317047]],[[0.01990020647645,-0.049407601356506,0.082411155104637],[0.0025558674242347,0.042256336659193,0.077705644071102],[0.032064601778984,0.088997766375542,-0.056221716105938]]],[[[-0.046635571867228,0.0094342129305005,0.062905885279179],[0.062370851635933,0.013075563125312,-0.065053157508373],[0.034488670527935,0.045602947473526,0.041170299053192]],[[0.0071045286022127,-0.018391506746411,0.030943859368563],[-0.010961919091642,0.019804190844297,-0.0053996723145247],[0.061646021902561,0.11973984539509,0.04158316925168]],[[0.022212594747543,0.010561033152044,-0.01119184307754],[0.013966410420835,0.060385145246983,-0.0025781500153244],[-0.022905414924026,0.037632841616869,0.001461632666178]],[[0.0061943386681378,0.0055219531059265,0.022403808310628],[0.04479881003499,0.0028915088623762,-0.022701025009155],[0.036105711013079,0.0328703597188,0.054919499903917]],[[-0.048405490815639,0.042034842073917,0.0080620674416423],[0.058535046875477,-0.059167373925447,-0.0010894914157689],[0.042659796774387,0.035917524248362,-0.072084948420525]],[[0.067696504294872,-0.0077398642897606,0.058302652090788],[0.0068869064562023,0.02334863692522,0.048925545066595],[0.0091030336916447,-0.006071703042835,0.0089608374983072]],[[0.057134471833706,-0.065060637891293,0.00093556224601343],[-0.075718306005001,0.037478510290384,0.0082125551998615],[-0.080150336027145,0.05905706807971,-0.03576872870326]],[[0.0011914952192456,0.00081951450556517,0.041183531284332],[-0.021191269159317,0.013047722168267,-0.080052845180035],[0.057706978172064,0.050153329968452,0.043909132480621]],[[0.012978659011424,0.084953352808952,0.023559870198369],[0.10019760578871,-0.0041028219275177,-0.0054060802794993],[0.021464647725224,0.043106440454721,0.063196487724781]],[[-0.010878124274313,0.049276411533356,0.088006854057312],[0.014682122506201,0.062319573014975,-0.0090040881186724],[0.02650229819119,-0.017353428527713,0.11398500949144]],[[0.086416840553284,0.047819882631302,0.016263797879219],[0.03280621394515,0.042241416871548,0.0014093639329076],[0.025091733783484,-0.053119018673897,-0.028236223384738]],[[-0.064323052763939,0.066411130130291,0.0031710336916149],[-0.012825452722609,-0.00097855203785002,0.029168514534831],[-0.0095718111842871,-0.025923300534487,0.056863263249397]],[[-0.06071512401104,0.028177445754409,0.012046188116074],[0.042158056050539,-0.014624526724219,-0.04272835329175],[0.037284910678864,0.048536229878664,-0.049467377364635]],[[0.055511709302664,0.0075945667922497,-0.010610428638756],[0.081144489347935,-0.014561800286174,0.092706002295017],[0.031025297939777,0.061504025012255,0.027514729648829]],[[-0.10635171085596,0.06442729383707,0.12412741035223],[-0.010596144944429,-0.0072846882976592,0.021888075396419],[0.072559170424938,0.026170341297984,0.073206827044487]],[[-0.073197640478611,0.050971869379282,-0.0015579372411594],[-0.037580460309982,-0.0037801139988005,-0.03486143797636],[0.017062751576304,-0.060098569840193,-0.0062999557703733]],[[-0.087744653224945,-0.038112070411444,0.071126036345959],[0.0058238976635039,0.025198446586728,-0.052267022430897],[0.024920428171754,0.11548996716738,0.061486560851336]],[[-0.013215325772762,0.011376809328794,-0.01421679276973],[0.00050809519598261,0.04909560084343,-0.0048374747857451],[-0.047287333756685,-0.011990780942142,-0.054209910333157]],[[-0.012976777739823,0.056890331208706,-0.0025034204591066],[0.016319762915373,-0.037664800882339,0.0092306612059474],[0.00084087770665064,-0.066938139498234,-0.039602685719728]],[[0.053532287478447,-0.0095117250457406,0.0025522145442665],[0.013613238930702,0.089275009930134,0.050044741481543],[-0.0021801555994898,0.044241357594728,0.0059648123569787]],[[-0.0023819564376026,-0.024781482294202,-0.0088468138128519],[0.036470770835876,0.020595239475369,0.029161844402552],[0.007811804767698,-0.10891642421484,-0.082723066210747]],[[-0.082800701260567,0.060111977159977,0.011757023632526],[0.014586413279176,-0.026635767892003,-0.045167602598667],[0.05847704783082,0.0030438443645835,-0.042138941586018]],[[-0.057285562157631,-0.0061493800021708,0.0032946625724435],[-0.026674825698137,0.0040778703987598,-0.035494886338711],[0.021405281499028,0.001685852301307,0.016735270619392]],[[0.085458919405937,-0.094348907470703,-0.044034145772457],[-0.035882197320461,0.015131122432649,-0.072771310806274],[-0.056972168385983,-0.03523313254118,-0.013599457219243]],[[0.055328894406557,-0.040815494954586,0.054450210183859],[-0.0066123981960118,-0.043670140206814,0.053447172045708],[-0.00086958933388814,0.026310555636883,0.10117570310831]],[[0.01383632235229,-0.014386829920113,0.03267902508378],[0.00049217185005546,0.062277402728796,-0.020309621468186],[0.087502345442772,-0.0093073016032577,0.016814632341266]],[[0.064702853560448,0.053711481392384,0.0084338206797838],[0.057203721255064,-0.038166232407093,-0.0041379164904356],[-0.0026107162702829,0.0070115737617016,0.078023970127106]],[[0.035535998642445,0.0063587338663638,0.026532664895058],[0.021596886217594,0.035382963716984,-0.040236119180918],[-0.027642758563161,0.01305013243109,0.023331079632044]],[[0.006869051605463,-0.016885004937649,0.0089899217709899],[0.087435893714428,0.0078017814084888,0.027185063809156],[0.032030198723078,-0.017431050539017,0.012841835618019]],[[-0.014465908519924,0.011723917908967,-0.035763785243034],[0.062445681542158,-0.029159957543015,0.0021267307456583],[-0.0005690956604667,-0.0065231937915087,-0.034064587205648]],[[-0.027271382510662,0.022753974422812,0.05442114546895],[0.0048561100848019,0.008429060690105,0.010989336296916],[0.059403028339148,-0.049564301967621,-0.0058121932670474]],[[-0.034526139497757,-0.018508791923523,0.01217070966959],[-0.029525460675359,-0.019961463287473,-0.024778252467513],[-0.01440233271569,-0.083849154412746,0.052957441657782]],[[-0.05391513183713,-0.023441985249519,-0.018567951396108],[0.029628889635205,0.0044409637339413,-0.01363827381283],[0.045612748712301,0.027533592656255,0.021797738969326]],[[0.019786596298218,-0.072656907141209,0.025902550667524],[0.0087479520589113,0.032874807715416,-0.024383341893554],[0.032930728048086,0.016868872568011,0.031427603214979]],[[0.084406159818172,0.060267403721809,0.10408841818571],[0.021529499441385,-0.014664920978248,0.00070127646904439],[0.047575391829014,-0.041167605668306,0.065899431705475]],[[0.056115806102753,0.003204544307664,-0.048880532383919],[0.0057690828107297,-0.046601556241512,0.012726709246635],[-0.0023514891508967,0.013849790208042,-0.0021531817037612]],[[-0.0048982575535774,0.044862344861031,-0.022205732762814],[0.013702945783734,-0.1199031919241,0.032618012279272],[-0.084108166396618,0.057975392788649,-0.078960321843624]],[[0.025601783767343,-0.0044788853265345,-0.045353978872299],[0.031780909746885,-0.023895893245935,0.0015750128077343],[-0.0018484040629119,-0.014694115146995,0.013213300146163]],[[0.016798548400402,0.053204197436571,-0.049218684434891],[0.018384516239166,-0.0043707629665732,-0.0038112171459943],[0.02574953995645,-0.048442907631397,0.046502228826284]],[[0.031933173537254,0.068285465240479,-0.013671595603228],[-0.018330741673708,0.048357538878918,0.060905329883099],[0.069494046270847,-0.0085871564224362,-0.026788201183081]],[[-0.070328965783119,-0.038506232202053,-0.0077574015595019],[0.0021275598555803,-0.049407880753279,-0.0094206994399428],[-0.047863896936178,-0.028101466596127,-0.011439076624811]],[[0.0011227923678234,-0.025191653519869,0.0047564841806889],[-0.023418894037604,0.032068334519863,0.011038654483855],[0.043976500630379,0.0062144682742655,0.012953306548297]],[[0.046159267425537,-0.0049278968945146,0.083921179175377],[0.031160825863481,0.11851926892996,-0.017850745469332],[0.10033539682627,-0.015349413268268,-0.010944804176688]],[[0.060881603509188,-0.072064399719238,0.040192402899265],[0.08420230448246,0.0036494876258075,0.024349657818675],[-0.002328073605895,0.027580711990595,-0.035612419247627]],[[-0.019619837403297,-0.049262404441833,-0.050500575453043],[0.039563626050949,0.025676127523184,-0.0064291683956981],[0.033125720918179,-0.0052418103441596,-0.0070260860957205]],[[0.044543500989676,0.14211221039295,0.0081034582108259],[0.022769086062908,0.047757193446159,0.041573047637939],[0.019331825897098,0.003641921794042,-0.018405629321933]],[[0.0040513067506254,-0.018340587615967,-0.013466413132846],[0.048535749316216,-0.013022712431848,0.078068673610687],[0.063178233802319,0.0632553845644,0.0853675827384]],[[0.044096451252699,0.01329243555665,-0.031256701797247],[-0.016494629904628,0.037152070552111,-0.027948807924986],[-0.056965928524733,0.0166348926723,-0.068246155977249]],[[-0.043715603649616,0.079281598329544,0.0041808891110122],[0.0073787402361631,-0.068325497210026,-0.00053363491315395],[0.026083169505,-0.028595155104995,-0.042641170322895]],[[0.078774310648441,0.071191027760506,-0.065174981951714],[0.097463198006153,-0.031763587146997,0.056302681565285],[-0.055165719240904,0.021502124145627,-0.045853465795517]],[[0.00015873400843702,-0.069397069513798,0.010660672560334],[0.047559883445501,0.024775329977274,0.051256407052279],[-0.016875816509128,0.046655550599098,-0.087981157004833]],[[0.10220903903246,-0.0029649001080543,0.021047445014119],[0.021921426057816,-0.040742468088865,-0.07377764582634],[-0.041157886385918,-0.0013640613760799,0.025802094489336]],[[0.024721249938011,0.0020007460843772,0.014075440354645],[-0.024881767109036,-0.023620622232556,-0.028492337092757],[0.088161885738373,-0.066998496651649,-0.019914228469133]],[[0.015326827764511,-0.081360451877117,0.014243648387492],[0.043203376233578,-0.016430908814073,-0.010708261281252],[-0.047806598246098,0.0047571077011526,-0.09771066904068]],[[-0.054843377321959,-0.00094413658371195,-0.032912246882915],[0.049452845007181,-0.012202343903482,-0.036573816090822],[0.075947441160679,-0.018149333074689,0.037123896181583]],[[-0.0059242290444672,-0.047494143247604,-0.03905626386404],[0.0087074302136898,0.02294416539371,0.0053859758190811],[0.015801899135113,0.0070599690079689,-0.0024844685103744]],[[0.052190326154232,-0.057778667658567,0.038464542478323],[-0.00046000449219719,0.086077392101288,-0.025581328198314],[-0.023684035986662,0.0023418467026204,0.048041354864836]],[[-0.033169832080603,-0.020067378878593,0.0080624194815755],[0.0062891794368625,0.072963982820511,0.046774111688137],[0.021463591605425,-0.052776835858822,-0.0090121179819107]],[[-0.026091352105141,0.049449723213911,-0.016294060274959],[0.034465711563826,-0.025309570133686,0.061309073120356],[-0.00019579693616834,0.10167819261551,0.054898664355278]],[[-0.054971843957901,-0.010097865946591,-0.075570479035378],[-0.10481446236372,-0.032584097236395,0.044317495077848],[0.02871285378933,-0.063549295067787,-0.053064599633217]],[[0.0058035668917,0.025527466088533,-0.0057587251067162],[0.0093852505087852,-0.0038138905074447,-0.049590729176998],[-0.001025722711347,0.0160804502666,0.04906153306365]],[[0.043040357530117,0.0082412669435143,-0.090582959353924],[-0.024684049189091,-0.014305260032415,-0.069589592516422],[0.0030120508745313,0.017363192513585,-0.016620708629489]],[[0.01209672447294,0.022622711956501,-0.037370942533016],[0.058376379311085,0.0041088699363172,-0.0041712885722518],[0.010912486352026,-0.021873995661736,-0.03839448839426]],[[0.034265957772732,0.0255809109658,0.05102052539587],[0.049586340785027,-0.048256270587444,0.026481883600354],[0.01440894138068,-0.027982046827674,-0.0024815865326673]],[[-0.081933885812759,-0.0096799973398447,0.032217182219028],[-0.052114270627499,0.03200026601553,0.035204991698265],[-0.051577426493168,0.14418503642082,0.075414508581161]],[[0.031299091875553,0.023718958720565,-0.06951355189085],[0.024781310930848,0.014812834560871,-0.0095959827303886],[0.067080907523632,0.02249900996685,-0.0094791483134031]],[[0.072952724993229,0.021464247256517,0.047999031841755],[0.082739248871803,-0.032572366297245,0.032258410006762],[0.011495712213218,-0.001800735713914,-0.017920549958944]],[[0.060375485569239,0.023573093116283,0.081759750843048],[0.058182146400213,0.055337201803923,0.032359007745981],[0.058084387332201,0.030381988734007,-0.020077496767044]],[[0.027626430615783,-0.045880824327469,0.0044967466965318],[0.030885586515069,0.011358133517206,0.046601571142673],[0.037810303270817,0.014873336069286,0.087168119847775]],[[0.020279053598642,-0.015625819563866,-0.021040871739388],[0.11538594961166,0.12729868292809,-0.1120019108057],[-3.3814201742643e-05,-0.047219961881638,-0.044414360076189]],[[-0.018333064392209,0.10849376767874,-0.056687477976084],[0.020506577566266,0.0022949201520532,-0.02719296887517],[0.022745463997126,-0.0067166513763368,-0.014593287371099]],[[-0.032630141824484,0.055363226681948,0.038662064820528],[0.011393152177334,0.022049488499761,-0.054608628153801],[0.04844493791461,0.023860843852162,-0.0033089085482061]],[[0.028552679345012,0.039401169866323,-0.062494065612555],[-0.01651912741363,0.0051158205606043,-0.00067491229856387],[0.021891156211495,0.10526303201914,0.054573483765125]],[[0.006331195589155,-0.015652092173696,-0.0076107983477414],[0.032134976238012,0.053310360759497,0.0044337115250528],[0.0041820504702628,-0.02001959644258,0.061513833701611]],[[0.012919461354613,0.0093971230089664,0.032782737165689],[-0.0062181572429836,-0.0019806921482086,-0.1364610940218],[0.054531410336494,0.0030056345276535,0.056849252432585]],[[-0.041151288896799,-0.023919016122818,0.055256817489862],[0.031989742070436,0.032126560807228,-0.090413093566895],[-0.006682067643851,-0.1277666836977,0.010923382826149]],[[-0.0062918760813773,-0.054776057600975,0.032830026000738],[0.022422028705478,-0.031424190849066,-0.043554663658142],[0.053615048527718,0.042739037424326,-0.11127328127623]],[[0.085492603480816,0.061832331120968,0.045725375413895],[0.014035243541002,-0.056979823857546,0.084333635866642],[0.043889798223972,0.034354984760284,0.026949996128678]],[[0.075790569186211,0.018732713535428,-0.03798658773303],[-0.018990954384208,-0.037867799401283,-0.014977139420807],[-0.008686893619597,0.086008980870247,-0.0088361017405987]],[[-0.098334982991219,-0.072771869599819,-0.049858409911394],[0.0075963423587382,0.016480224207044,0.014567416161299],[-0.02584320306778,0.000706463935785,-0.034164413809776]],[[0.031795267015696,-0.046064611524343,-0.04615668207407],[0.040484495460987,-0.04145161062479,0.041736047714949],[0.0078569576144218,0.063170433044434,0.027010671794415]],[[0.0361682549119,-0.03498151153326,-0.027096113190055],[0.053550031036139,-0.077901259064674,0.06905797123909],[-0.016067143529654,0.029570590704679,-0.099847450852394]],[[-0.047027330845594,0.057114467024803,0.12371238321066],[0.02681839466095,0.020585609599948,-0.026895379647613],[0.021958228200674,0.043920457363129,0.041872873902321]],[[0.01537433732301,-0.0048969495110214,0.068624086678028],[-0.0066518671810627,0.022802511230111,-0.0060147121548653],[-0.0016809047665447,-0.00056249316548929,0.060119677335024]],[[-0.018136192113161,-0.060375992208719,0.05887895077467],[-0.01875969208777,0.075715027749538,0.00061382888816297],[0.0040525360964239,-0.0090001719072461,-0.04844842851162]],[[-0.1041052043438,-0.037891585379839,-0.06483332067728],[0.027417000383139,-0.037160150706768,0.039563316851854],[0.042229622602463,-0.051615890115499,0.065170764923096]],[[0.044773034751415,0.01410660892725,0.059481680393219],[0.006942882668227,-0.011821635998785,0.043828897178173],[0.084754854440689,-0.00097854377236217,-0.0091200694441795]],[[-0.01608176715672,0.011163512244821,-0.014664556831121],[0.06961727142334,-0.0097067942842841,0.050820160657167],[0.045207019895315,-0.030541392043233,-0.0064558032900095]],[[0.048272721469402,0.00920320302248,-0.0062560741789639],[0.071705311536789,-0.023504380136728,0.024046054109931],[0.031368743628263,0.036547858268023,-0.093747198581696]],[[-0.022190101444721,0.076319187879562,-0.0071273748762906],[-0.02362883836031,0.012785131111741,-0.049233566969633],[0.030283724889159,0.023171408101916,-0.010743024758995]],[[-0.012993133626878,0.12076865881681,0.080335043370724],[0.0015595930162817,0.045876055955887,-0.033231385052204],[-0.042251605540514,0.0038753317203373,-0.0081420494243503]],[[0.099455058574677,0.028534140437841,0.028834898024797],[-0.03483858704567,0.017971405759454,0.014093308709562],[0.031604375690222,-0.029708668589592,0.030637802556157]],[[0.013064266182482,-0.008612971752882,0.044068086892366],[0.022698583081365,-0.0056236907839775,0.0084485895931721],[0.021422110497952,-0.026627281680703,-0.032175734639168]],[[-0.069340422749519,0.031532358378172,-0.0074085663072765],[0.033666923642159,-0.03320125117898,0.077270224690437],[0.071199141442776,-0.0080295382067561,0.031717281788588]],[[-0.0057438155636191,0.046891126781702,-0.031982090324163],[0.02513981051743,0.088110685348511,-0.018302448093891],[-0.013219362124801,-0.0026472075842321,-0.023079728707671]],[[0.03753249719739,0.048553999513388,-0.028820240870118],[0.099419198930264,0.043411336839199,-0.017232893034816],[-0.0037895718123764,0.058176402002573,0.085335820913315]],[[0.086075618863106,-0.051026165485382,0.046262834221125],[-0.0092211812734604,-0.05533454567194,-0.071837455034256],[0.06640500575304,0.036084040999413,0.038214199244976]],[[0.03697981312871,-0.012975125573575,-0.0010071033611894],[-0.0037855189293623,-0.013602846302092,0.0074865818023682],[-0.0029325648210943,-0.015573016367853,-0.022012438625097]],[[0.081031367182732,-0.05703105032444,-0.0065703182481229],[-0.040697824209929,-0.0084703024476767,-0.0050229490734637],[-0.051135163754225,0.030088342726231,-0.050115931779146]],[[-0.07429413497448,0.043277326971292,-0.002279739594087],[0.02943853661418,-0.035512953996658,-0.012298907153308],[-0.018938334658742,-0.010536295361817,0.0091986423358321]],[[0.087733708322048,0.1019182652235,-0.0060457405634224],[-0.030140476301312,-0.012857394292951,0.03197268024087],[-0.064111150801182,0.084405139088631,-0.0029058000072837]],[[0.014346012845635,-0.0017462247051299,0.025486933067441],[0.064159110188484,0.036414686590433,0.043735723942518],[0.038493830710649,0.065431624650955,0.069326214492321]],[[-0.0083100702613592,-0.0037981404457241,-0.014721189625561],[0.01158086489886,0.075500547885895,0.00038258158019744],[-0.015785936266184,0.025697078555822,-0.10436319559813]],[[-0.0015776447253302,0.049441903829575,-0.013609451241791],[0.039862100034952,0.059932935982943,-0.006405130494386],[0.025186575949192,0.0075505576096475,0.0013219594256952]],[[0.078527621924877,-0.035166211426258,0.012153243646026],[0.053844261914492,-0.06111716106534,0.049975141882896],[0.0044200397096574,0.042004611343145,0.035798132419586]],[[0.026151860132813,-0.024604808539152,-0.034036189317703],[0.14453095197678,-0.0077049164101481,-0.018346861004829],[-0.027549328282475,0.0079599674791098,0.031968548893929]],[[0.028502179309726,-0.0020648026838899,0.052738007158041],[0.071059033274651,0.019777273759246,0.043786380439997],[-0.02330144867301,0.021497007459402,0.01255380641669]],[[-0.03666615113616,-0.0075284754857421,-0.032218519598246],[-0.082114897668362,0.064178831875324,0.028699439018965],[-0.065176941454411,-0.016602927818894,-0.00034452779800631]],[[0.040641661733389,0.030935451388359,-0.06589862704277],[0.053195357322693,0.017820347100496,0.039999715983868],[0.015296476893127,0.024092176929116,-0.0023081270046532]],[[-0.028460208326578,0.084214881062508,0.0019552772864699],[0.023388711735606,-0.029687779024243,0.046193141490221],[0.026680840179324,0.026114765554667,-0.033142946660519]],[[0.017770746722817,0.037110432982445,0.057076476514339],[-0.010219623334706,-0.067483082413673,-0.050546709448099],[0.042317774146795,-0.023710438981652,-0.0006740806857124]],[[0.10541065782309,-0.019259802997112,-0.037697352468967],[0.05767160654068,0.032903764396906,0.040618091821671],[0.010234052315354,-0.013079768046737,-0.0037853876128793]],[[0.055204145610332,-0.001484825508669,-0.0097197312861681],[0.034238003194332,-0.036274485290051,0.10208751261234],[-0.014092759229243,0.02898077853024,0.072318069636822]],[[-0.029813403263688,0.041196491569281,-0.055148050189018],[-0.00560546759516,-0.012686554342508,-0.010337164625525],[-0.09827795624733,-0.0092496471479535,0.017981566488743]],[[-0.0174779612571,0.014301686547697,-0.07574350386858],[0.0003547172236722,0.014889293350279,0.014921775087714],[-0.019426666200161,-0.050657168030739,-0.033374227583408]],[[-0.047209404408932,0.0047123730182648,-0.0073790005408227],[0.045794278383255,0.011084370315075,0.022640757262707],[-0.022071966901422,-0.077667683362961,0.039763607084751]],[[0.055479526519775,0.02045969851315,-0.047333341091871],[-0.03419641405344,0.034003738313913,0.055566597729921],[-0.013723626732826,-0.011151446029544,0.061006009578705]],[[0.00066447118297219,-0.013401463627815,0.094470724463463],[0.006226375233382,0.013361212797463,-0.007594077847898],[0.0088211195543408,-0.0195556525141,-0.017600324004889]],[[0.030004777014256,-0.01042795740068,0.038716848939657],[0.014355031773448,0.034370519220829,-0.051040884107351],[0.085030741989613,-0.010964860208333,0.027535427361727]],[[0.0076116705313325,-0.029436938464642,0.025217236950994],[-0.10580766946077,-0.012221658602357,-0.00031170528382063],[0.0010455679148436,0.0227081310004,-0.088363021612167]],[[-0.033179126679897,0.0032143390271813,0.018242450430989],[0.051717214286327,-0.0053370166569948,-0.0087338946759701],[-0.032972071319818,0.065802060067654,-0.012347680516541]],[[0.037712272256613,-0.035706739872694,0.0014971292112023],[-0.017612734809518,0.044863365590572,-0.05585889518261],[-0.030484855175018,-0.031173713505268,0.043543588370085]],[[0.11070168018341,0.026423126459122,0.026667214930058],[-0.022668791934848,-0.042369935661554,-0.12348337471485],[0.00032197858672589,0.028471153229475,0.034395430237055]],[[0.057607807219028,0.01555557269603,-0.00025815240223892],[0.049532346427441,-0.053563293069601,0.012847520411015],[-0.06204279884696,0.021600589156151,-0.065154783427715]],[[0.038892276585102,0.046236954629421,-0.048199839890003],[0.01233493629843,-0.014743767678738,0.056567657738924],[-0.0090231280773878,-0.012815977446735,-0.025972172617912]],[[0.025145808234811,0.012798546813428,-0.077649168670177],[0.027583207935095,0.024910647422075,-0.020297599956393],[0.012750581838191,0.014976544305682,0.12306371331215]],[[0.047081552445889,0.038962390273809,0.014586846344173],[0.027711410075426,-0.035261567682028,-0.0060472167097032],[0.091538786888123,0.024462129920721,0.057705208659172]],[[-0.019476447254419,-0.025882758200169,0.015457582660019],[0.072898477315903,-0.0044711227528751,-0.039897043257952],[0.049084577709436,0.021358776837587,-0.025569729506969]]],[[[-0.079789146780968,-0.068834744393826,-0.015735622495413],[-0.077996790409088,0.047688014805317,-0.038334757089615],[0.030627189204097,-0.0011948809260502,0.0024345794226974]],[[-0.038534414023161,0.034555427730083,-0.013329333625734],[0.081520549952984,-0.027546167373657,-0.0059833186678588],[0.039626598358154,-0.021384052932262,0.045732412487268]],[[-0.0026791316922754,0.017713416367769,0.056139640510082],[0.029723860323429,-0.0067355087958276,-0.00065547175472602],[0.033639170229435,0.018024982884526,0.04389213770628]],[[-0.0011554767843336,0.021415578201413,0.014111549593508],[-0.035945639014244,0.046872530132532,-0.059434294700623],[0.024284735321999,0.0022776443511248,0.024137167260051]],[[0.05727319046855,0.039286077022552,-0.076574802398682],[-0.078461214900017,-0.011450166814029,0.051815908402205],[0.029132457450032,-0.036458503454924,0.039560917764902]],[[0.10271424800158,0.0097012501209974,0.062400359660387],[0.066154561936855,0.023791342973709,0.034433040767908],[0.045194759964943,-0.0065631940960884,0.019276756793261]],[[0.052330575883389,-0.054111238569021,0.015462043695152],[0.047588191926479,-0.0057635195553303,0.049688961356878],[0.060677140951157,0.031092824414372,-0.039626616984606]],[[0.016993658617139,0.097904063761234,0.018631661310792],[-0.0075162756256759,-0.054276514798403,0.055977914482355],[0.036144454032183,-0.0045218653976917,0.0010968251153827]],[[-0.048073947429657,0.031110908836126,-0.015142537653446],[-0.0050371740944684,0.0056356214918196,0.052334945648909],[-0.025490533560514,0.060178861021996,0.077201195061207]],[[-0.0062859049066901,0.034075558185577,-0.018775967881083],[0.072254121303558,-0.02960080653429,0.042464073747396],[0.12056674808264,0.097115568816662,-0.01143242418766]],[[0.0054978653788567,0.002492290455848,-0.034377131611109],[0.027354832738638,-0.0071361945010722,-0.0029488459695131],[0.023342806845903,0.027938703075051,0.070053398609161]],[[-0.031642381101847,0.0040593445301056,0.067359007894993],[-0.0048156725242734,-0.011918026022613,-0.0018970771925524],[0.004564197268337,-0.030697325244546,0.044329740107059]],[[-0.073156207799911,0.1027557477355,0.071832433342934],[0.015794118866324,-0.0053439666517079,-0.017515512183309],[-0.06163739785552,-0.057954102754593,0.087921738624573]],[[-0.018367638811469,0.11694657802582,0.0040227919816971],[0.02613046951592,-0.024504398927093,-0.0041422392241657],[0.0067624701187015,-0.034501582384109,0.020620856434107]],[[0.058887545019388,-0.0050246738828719,0.051352195441723],[-0.042474038898945,0.092462107539177,0.06138564646244],[0.006944720633328,-0.013606064021587,0.00035969523014501]],[[0.022988369688392,-0.0065379058942199,-0.00082757807103917],[-0.068175688385963,0.051194906234741,-0.05406916514039],[-0.025488534942269,0.059710994362831,-0.055518947541714]],[[-0.0070613850839436,-0.013001720421016,0.0071699591353536],[-0.076175391674042,0.017179636284709,-0.020591087639332],[0.060895331203938,0.0023781233467162,0.06246741861105]],[[0.010866035707295,-0.068903408944607,0.0047381133772433],[0.031565722078085,0.012126559391618,0.02899356558919],[-0.010415837168694,0.015051078982651,-0.027969753369689]],[[0.011714154854417,0.080035850405693,0.034383330494165],[0.013004975393414,0.013266418129206,0.061889220029116],[1.3603659681394e-05,-0.034999009221792,-0.029208291321993]],[[-0.035317968577147,-0.082361876964569,0.006868174765259],[0.021978370845318,-0.0018315310589969,0.035299960523844],[-0.057515505701303,0.049798794090748,0.0081999897956848]],[[-0.054638393223286,0.015731558203697,-0.023290036246181],[-0.0016448000678793,-0.045637350529432,0.034294944256544],[0.02806824631989,-0.04796975851059,0.043204385787249]],[[-0.04492512345314,-0.066577196121216,-0.067628264427185],[0.034576714038849,0.069230534136295,0.056448869407177],[0.030725149437785,-0.024241151288152,0.052804365754128]],[[-0.048665732145309,0.010081307031214,-0.0067643113434315],[-0.011208552867174,0.10580015927553,-0.007239100523293],[0.088177934288979,-0.050285413861275,-0.090886056423187]],[[0.036761630326509,0.014610687270761,-0.038092125207186],[0.008928612805903,-0.046386636793613,-0.032747779041529],[-0.0023645309265703,-0.0048734969459474,-0.037660870701075]],[[0.074504137039185,0.050574898719788,0.027349097654223],[-0.042185887694359,-0.0029311135876924,-0.06799304485321],[0.010498125106096,0.078370928764343,-0.0017206912161782]],[[0.012047468684614,-0.072079263627529,-0.021766144782305],[0.035839255899191,0.015331005677581,0.045307230204344],[0.048081543296576,-0.019536321982741,-0.0081627862527966]],[[-0.016003504395485,-0.027406252920628,0.026170898228884],[0.040818601846695,-0.0097203617915511,0.032010469585657],[0.022433239966631,0.0090139461681247,-0.021224699914455]],[[0.012662775814533,0.033742025494576,-0.0019568374846131],[-0.1160516217351,0.050070263445377,0.042870905250311],[0.029644085094333,0.055056214332581,0.013070345856249]],[[0.03977369889617,-0.070020973682404,0.033632639795542],[-0.031272161751986,0.013260468840599,-0.0010450389236212],[0.10406053066254,0.088380366563797,0.050834722816944]],[[0.042456340044737,0.012979118153453,-0.015984050929546],[-0.065271183848381,-0.021049864590168,0.0052291471511126],[-0.067369945347309,-0.047767542302608,0.058857765048742]],[[-0.023817099630833,0.016057251021266,0.055675935000181],[-0.018648626282811,-0.0083887903019786,0.11383999884129],[0.044103521853685,-0.022504569962621,-0.0091303512454033]],[[0.027811562642455,-0.014034409075975,0.0040504075586796],[0.025615461170673,-0.043844122439623,0.025217637419701],[-0.031803619116545,0.062924414873123,-0.034487169235945]],[[-0.0015122247859836,-0.027876410633326,-0.040697421878576],[-0.032668881118298,0.06113563105464,-0.0043980590999126],[0.011206689290702,0.017083121463656,0.0036161979660392]],[[0.040359895676374,0.010363162495196,-0.01279691234231],[0.022869199514389,-0.0077008055523038,0.043045844882727],[-0.033004034310579,0.028708571568131,-0.058826301246881]],[[-0.0189104154706,-0.012675086036325,-0.002149160252884],[-0.06031708419323,0.0067775803618133,-0.021018007770181],[0.023246221244335,-0.031747851520777,-0.029519924893975]],[[-0.0056315986439586,0.04517975077033,-0.012258536182344],[-0.060003209859133,-0.035340897738934,-0.10275782644749],[0.085815757513046,-0.037714499980211,0.039012130349874]],[[-0.012999603524804,-0.010779719799757,0.02036252245307],[-0.0041174595244229,-0.0070128352381289,0.0051545123569667],[-0.073161959648132,0.040114875882864,0.025749342516065]],[[0.032033156603575,0.02391105890274,-0.043744325637817],[0.030704509466887,-0.044256761670113,-0.017356896772981],[0.040782626718283,-0.031414281576872,-0.04855152592063]],[[-0.030151212587953,0.039863288402557,-0.030190149322152],[0.024129539728165,0.042834270745516,0.027888534590602],[0.033698983490467,0.010405838489532,0.013413401320577]],[[0.038657959550619,-0.053652510046959,-0.0046302084811032],[-0.033318303525448,0.034806754440069,0.010311717167497],[0.0092045664787292,-0.069680757820606,0.043555613607168]],[[0.022282749414444,0.086877889931202,-0.072191007435322],[0.037688970565796,-0.044717717915773,0.0081557286903262],[0.041300728917122,0.013339099474251,0.0091554569080472]],[[-0.034993905574083,0.022148806601763,0.037190958857536],[0.016197552904487,0.044723730534315,0.04016649723053],[-0.022849274799228,0.021356903016567,0.026989551261067]],[[0.0085080405697227,-0.02208037301898,-0.021725006401539],[0.013805600814521,-0.068589895963669,-0.0034676324576139],[0.0096596525982022,0.003454799996689,-0.0071692611090839]],[[0.02488892711699,0.042597349733114,-0.020100183784962],[-0.032476544380188,0.13965971767902,0.10690575093031],[0.051746852695942,0.054944079369307,-0.023155864328146]],[[0.010269472375512,0.072249449789524,0.021743480116129],[-0.062494296580553,-0.0033954593818635,-0.042528759688139],[0.04190532118082,-0.038028985261917,-0.036761295050383]],[[0.030915148556232,-0.0068683694116771,0.03267389908433],[0.0052505424246192,-0.028688868507743,-0.011512530036271],[0.022374080494046,-0.021044200286269,-0.0086825666949153]],[[0.11138684302568,-0.03946029022336,-0.035788826644421],[-0.034059107303619,0.0078016547486186,0.028622722253203],[0.0062020570039749,-0.012292773462832,-0.019124295562506]],[[0.090649873018265,0.072147414088249,0.044169697910547],[0.014331398531795,0.08409221470356,0.0098867770284414],[-0.03314246982336,-0.03568958491087,-0.0039631677791476]],[[0.086347818374634,0.024384854361415,0.10680168122053],[0.01522868219763,0.0060268552042544,0.0072115091606975],[0.0084844008088112,-0.001140872715041,-0.010983845219016]],[[0.034297935664654,-0.041568133980036,0.002841696375981],[0.025559645146132,-0.054533526301384,0.0073721534572542],[-0.023862099274993,-0.056399241089821,-0.0064526149071753]],[[0.017050186172128,-0.029481541365385,-0.072711743414402],[-0.0047908397391438,-0.044754222035408,-0.056615062057972],[-0.01326088886708,0.042785231024027,0.072506658732891]],[[0.012036646716297,-0.018710052594543,-0.020355932414532],[0.032925620675087,0.022472631186247,0.022388752549887],[0.007390751503408,0.082806400954723,0.035848286002874]],[[0.042944487184286,0.023070018738508,0.051937345415354],[0.014053747989237,0.036620616912842,-0.068046346306801],[0.023433176800609,0.035556435585022,-0.00080417736899108]],[[0.0075278929434717,0.0016198767116293,0.01329786144197],[0.014940883032978,0.010152211412787,0.015509207732975],[0.01484680455178,-0.044362735003233,0.03864524513483]],[[-0.025886364281178,0.014540862292051,-0.037819780409336],[0.00032422575168312,0.013775584287941,-0.015600165352225],[-0.065432623028755,-0.0012790269684047,-0.0087328115478158]],[[-0.093945391476154,-0.004218443762511,0.098769202828407],[0.061781138181686,0.0022528993431479,0.0031694513745606],[0.033961329609156,-0.016239084303379,0.062295891344547]],[[-0.036417528986931,0.033341716974974,0.047387514263391],[0.054440464824438,-0.023804763332009,0.016474595293403],[-0.064855001866817,0.019272973760962,0.037627704441547]],[[-0.032960820943117,0.013357249088585,0.013362581841648],[-0.038321517407894,-0.021662535145879,0.0683958157897],[0.073910892009735,0.033927094191313,0.016250448301435]],[[-0.034790273755789,0.016501838341355,-0.053668860346079],[-0.014287064783275,-0.010475570335984,0.022186379879713],[0.045600481331348,0.049006808549166,0.0069374754093587]],[[0.036846842616796,-0.01741910725832,-0.071764007210732],[-0.036136027425528,0.070849679410458,-0.021106304600835],[-0.0044751432724297,-0.051955260336399,-0.021371621638536]],[[-0.018314426764846,0.0036052600480616,0.002578318817541],[0.0632593780756,0.034255530685186,0.020344162359834],[-0.053971730172634,0.044177588075399,0.040394656360149]],[[-0.020321968942881,0.11332474648952,0.018034372478724],[0.089517638087273,0.011046227999032,-0.065265841782093],[0.026340246200562,-0.031449265778065,0.00080197642091662]],[[-0.061980966478586,-0.0014794151065871,-0.0047165919095278],[0.049743015319109,-0.095919832587242,-0.0037244965787977],[0.0026357970200479,0.042787082493305,-0.015290229581296]],[[0.013672640547156,-0.048776049166918,-0.018361631780863],[0.0017968902830034,-0.073565073311329,0.10821777582169],[-0.027928151190281,0.021303810179234,-0.018981223925948]],[[0.059117060154676,-0.027461428195238,0.072683081030846],[-0.039202857762575,-0.065235920250416,-0.011111846193671],[-0.017724689096212,-0.04333807528019,-0.0048643532209098]],[[0.042075768113136,0.0071987933479249,0.036418315023184],[0.0061324695125222,0.029112376272678,0.097262986004353],[-0.019683694466949,0.072949968278408,0.024685030803084]],[[0.0073748654685915,0.01796711795032,0.089302249252796],[-0.079230129718781,0.074255563318729,0.0020557772368193],[0.090346477925777,0.012590598315001,0.017729165032506]],[[-0.022631911560893,0.072057507932186,-0.016024073585868],[0.028614893555641,0.028765998780727,0.0080687087029219],[0.070975042879581,0.05578363314271,0.010567677207291]],[[0.024350443854928,0.019221866503358,0.025220714509487],[-0.026321530342102,0.048191614449024,-0.017522778362036],[-0.034874081611633,0.0066536902450025,-0.059943970292807]],[[0.050186280161142,0.011699190363288,0.00029563033604063],[0.01920460537076,0.05312567949295,-0.070061631500721],[0.03138866648078,-0.021491210907698,0.042630638927221]],[[-0.04623968526721,-0.012515303678811,0.0048835943453014],[0.002017940627411,0.031495042145252,-0.050010539591312],[0.044694859534502,0.025393599644303,0.017099421471357]],[[0.054298501461744,0.022546153515577,0.020379671826959],[0.0089553147554398,0.029971005395055,0.098034344613552],[-0.038336478173733,0.025411082431674,0.024450335651636]],[[0.024138303473592,0.040506143122911,-0.059879053384066],[0.021273214370012,-0.0016391230747104,-0.061729460954666],[0.0048410347662866,-0.029082158580422,0.045290071517229]],[[-0.0080436300486326,0.02235453017056,-0.018929116427898],[0.0096953548491001,-0.030949296429753,-0.017803331837058],[-0.027051199227571,0.043311182409525,0.020723294466734]],[[-0.0087633682414889,-0.094156600534916,-0.0082693276926875],[-0.032872710376978,-0.05437047034502,0.039682738482952],[0.065154477953911,-0.045241851359606,0.026836374774575]],[[-0.01059281360358,-0.039839141070843,-0.061825919896364],[-0.046796500682831,-0.048590801656246,-0.018784463405609],[0.023295572027564,0.029124481603503,-0.066242352128029]],[[0.0038917839992791,0.044544480741024,0.030391735956073],[0.040024001151323,-0.0098596513271332,0.016647530719638],[0.015018991194665,0.031608425080776,-0.013007147237659]],[[-0.022413214668632,-0.021687220782042,-0.072153568267822],[0.10686513036489,-0.029322691261768,0.042703777551651],[-0.012493040412664,0.046223118901253,-0.021832903847098]],[[0.044718869030476,0.012385661713779,0.051253937184811],[0.020500445738435,-0.0071788015775383,-0.0070262718945742],[-0.064456135034561,0.073191270232201,0.0059606917202473]],[[-0.093013018369675,0.037852972745895,0.034218668937683],[-0.055933993309736,-0.0099742719903588,-0.058063756674528],[0.042571701109409,0.0083558904007077,0.0074710627086461]],[[0.0074110277928412,0.04335805028677,0.0077611478045583],[-0.0001885540841613,-0.00020263410988264,0.045514471828938],[0.01233363058418,-0.038720361888409,0.039209585636854]],[[0.017598757520318,-0.010320419445634,0.03206828981638],[-0.01142938900739,0.05404856801033,-0.056202437728643],[-0.049647141247988,0.033799193799496,0.022836031392217]],[[-0.0016978427302092,-0.020893841981888,0.036454614251852],[0.049764577299356,0.023105522617698,0.021891118958592],[-0.033427037298679,0.03184961900115,-0.016839442774653]],[[-0.027813632041216,0.05585977435112,-0.020664531737566],[-0.063859879970551,-0.020518740639091,0.0066228955984116],[0.039126709103584,-0.016757894307375,-0.019805794581771]],[[0.017907528206706,-0.011495357379317,0.069134011864662],[0.019977228716016,-0.032502319663763,0.047065209597349],[0.063392356038094,-0.061686273664236,-0.031389579176903]],[[0.025238078087568,0.023930970579386,-0.028996530920267],[0.043275367468596,0.016348728910089,0.047640576958656],[0.00069477368379012,0.0041350359097123,0.013848099857569]],[[0.038921520113945,0.089464664459229,0.067638054490089],[0.052620898932219,-0.014943620190024,-0.034771747887135],[0.010011731646955,0.074936419725418,-0.0097207333892584]],[[-0.069371074438095,0.15013167262077,-0.010177243500948],[0.059955224394798,0.06490096449852,-0.027148207649589],[0.013306772336364,-0.026692552492023,-0.061358381062746]],[[0.038369406014681,0.014109455049038,-0.047667264938354],[-0.0010792283574119,-0.0053275995887816,-0.024430871009827],[0.079012908041477,0.025454381480813,0.025994893163443]],[[0.019878719002008,0.049730531871319,0.058168780058622],[0.031715538352728,0.030310882255435,0.0010540450457484],[0.042161785066128,0.018736332654953,0.047221824526787]],[[0.08482438325882,0.020251236855984,-0.021046672016382],[0.047337640076876,-0.020352005958557,-0.017923723906279],[0.011651441454887,-0.015342908911407,0.0068665375001729]],[[-0.01472990680486,-0.0017039531376213,-0.047574959695339],[0.015844747424126,-0.049331340938807,0.044268772006035],[0.057043083012104,0.0019183667609468,0.013573672622442]],[[-0.0035916196648031,0.073701798915863,-0.066901795566082],[-0.040515404194593,0.010979535989463,0.0027515180408955],[-0.019167304039001,-0.012736291624606,0.048081737011671]],[[0.022968309000134,0.023711053654552,0.0057050888426602],[0.036142662167549,0.064324177801609,-0.043671004474163],[0.05182146281004,0.029159713536501,0.061863481998444]],[[-0.027774754911661,-0.0070133088156581,0.028582692146301],[-0.0079856812953949,0.026087956503034,0.011221333406866],[-0.0060584703460336,-0.037370778620243,-0.046914517879486]],[[0.057013671845198,0.023520931601524,-0.0070039355196059],[0.032202634960413,-0.098105154931545,-0.036761164665222],[-0.048609297722578,-0.015639994293451,-0.043714374303818]],[[-0.0069981329143047,-0.024568086490035,-0.012672633863986],[0.023606082424521,0.033874198794365,-0.036577135324478],[-0.055716253817081,0.081816345453262,-0.063915275037289]],[[0.044194351881742,-0.039508350193501,0.025559827685356],[0.005621715914458,0.004636004101485,0.077959202229977],[0.011282037012279,0.032861534506083,-0.013147069141269]],[[0.017737301066518,-0.019033242017031,-0.093853898346424],[0.032074764370918,-0.041886445134878,0.032498493790627],[0.013724319636822,0.043692719191313,0.022817311808467]],[[-0.0040754927322268,-0.056141369044781,-0.017004540190101],[-0.02824597992003,0.0099526960402727,0.017703516408801],[0.001425864174962,-0.0019758970011026,0.023123851045966]],[[-0.014351793564856,-0.051666032522917,0.026706198230386],[-0.034116446971893,0.0097707277163863,-0.05436821654439],[0.02342601493001,0.023785872384906,0.038697652518749]],[[-0.031667854636908,0.040038548409939,0.11933515220881],[-0.034991022199392,0.039404228329659,0.01264010835439],[0.042012985795736,-0.027732597663999,0.0028822261374444]],[[0.0059569012373686,-0.023815987631679,0.049008771777153],[-0.071801520884037,0.046168308705091,0.03434082493186],[-0.030856711789966,-0.058854080736637,0.071219138801098]],[[0.021664736792445,0.074994303286076,0.072241671383381],[-0.016059210523963,-0.015991125255823,0.098188042640686],[-0.058884877711535,0.0055077862925828,-0.0074232714250684]],[[0.056633740663528,0.032222889363766,0.021754609420896],[-0.0050439303740859,-0.018117159605026,-0.032271161675453],[0.034140076488256,0.067603804171085,0.0017177152913064]],[[0.043332166969776,0.076329208910465,0.03489076718688],[-0.028039077296853,0.046960301697254,-0.047364056110382],[-0.054706811904907,0.013766673393548,0.044600661844015]],[[-0.029486291110516,0.090817034244537,0.098834462463856],[-0.042478203773499,-0.026886478066444,0.0020199376158416],[0.05482267215848,-0.0092542767524719,-0.055832888931036]],[[-0.0054574706591666,0.065160632133484,-0.027957672253251],[-0.035654213279486,-0.025898704305291,-0.0037041027098894],[0.029718184843659,-0.032871048897505,0.023483961820602]],[[0.025107599794865,-0.029648983851075,0.006427951157093],[-0.062786251306534,-0.0099657885730267,0.052604284137487],[0.055638302117586,0.024510238319635,-0.0056669395416975]],[[0.0052376044914126,0.051856610924006,-0.019284345209599],[0.063956871628761,-0.066269114613533,0.017477029934525],[0.0070749069564044,0.031133029609919,-0.047330178320408]],[[-0.019012631848454,-0.029929811134934,0.0053155147470534],[-0.0045528551563621,-0.03268076479435,0.069256126880646],[0.039186183363199,0.0071260132826865,-0.068166851997375]],[[0.011418175883591,-0.011283138766885,0.077567718923092],[-0.0054197795689106,0.069367408752441,0.045716028660536],[-0.036396991461515,-0.029786322265863,0.070107743144035]],[[0.01835111528635,-0.0040388312190771,0.02628243342042],[-0.0091973971575499,0.030070358887315,-0.03236448019743],[-0.0042502358555794,-0.053146410733461,0.0092171132564545]],[[0.019290966913104,0.0083927102386951,-0.066087126731873],[-0.028208814561367,0.019657814875245,0.029168153181672],[-0.074289619922638,0.012768334709108,0.022674351930618]],[[-0.015979578718543,-0.006591931451112,0.029439015313983],[0.029414460062981,-0.029685275629163,0.0732696428895],[0.065411753952503,0.014428932219744,-0.0078155444934964]],[[0.013130916282535,0.0078549440950155,0.047322887927294],[0.019024698063731,0.027275394648314,0.02423052303493],[0.026358788833022,-0.031365588307381,0.016965495422482]],[[-0.05493475869298,0.024754932150245,0.067165710031986],[0.047941513359547,0.018458649516106,0.033558577299118],[0.087785124778748,-0.042234871536493,0.0020705088973045]],[[0.00063066312577575,0.010755373165011,-0.016478281468153],[-0.072217337787151,0.087591230869293,0.020180121064186],[-0.0013802677858621,-0.030253177508712,0.085776761174202]],[[0.042716026306152,-0.016525041311979,-0.010753081180155],[-0.0055429870262742,-0.0020590259227902,-0.010023792274296],[0.050956442952156,-0.021335508674383,-0.0080094961449504]],[[-0.059196282178164,-0.012184374965727,-0.050103168934584],[0.027606481686234,-0.0084471683949232,0.05306988582015],[-0.0027786199934781,-0.0020223231986165,0.026309991255403]],[[-0.011509115807712,-0.029206803068519,-0.0091529972851276],[0.030711626634002,0.04294016957283,-0.012191656976938],[0.026728855445981,0.016057400032878,-0.013212515041232]],[[0.091801188886166,0.038436315953732,0.019762540236115],[-0.057460147887468,0.031401418149471,-0.057597544044256],[-0.016048368066549,0.026249885559082,-0.0400245860219]],[[-0.048870343714952,-0.028982585296035,0.017055343836546],[-0.021516904234886,0.04031889513135,-0.025511920452118],[0.046602312475443,0.024650599807501,0.022696033120155]],[[0.0032145588193089,-0.058183543384075,0.001283144345507],[-0.034290432929993,0.030403729528189,0.0087184654548764],[-0.032594829797745,-0.093636356294155,0.03057005815208]],[[0.037256423383951,-0.010788679122925,0.052274808287621],[-0.036079425364733,-0.059039935469627,0.0060243532061577],[0.06280355155468,-0.05678466334939,0.015285453759134]],[[0.037108328193426,0.010875159874558,-0.0044840718619525],[0.0072771920822561,-0.019259260967374,0.020974304527044],[-0.0041816947050393,0.02817009948194,-0.069970443844795]],[[-0.017224702984095,-0.0088662998750806,-0.00064153294079006],[0.063774667680264,0.042332943528891,-0.0066359518095851],[-0.023432184010744,0.018505852669477,-0.0094340359792113]],[[-0.0047728610225022,0.064206570386887,0.0026519002858549],[-0.052004847675562,-0.016600454226136,-0.051139965653419],[-0.067665256559849,0.014730979688466,-0.050325769931078]]],[[[0.054198380559683,0.0027226875536144,-0.054856222122908],[-0.058691538870335,0.085835464298725,0.042656634002924],[-0.016533493995667,0.086963228881359,-0.010481244884431]],[[-0.031411565840244,-0.025615133345127,0.05445272102952],[0.010353752411902,-0.0074317585676908,-0.056326005607843],[-0.045656640082598,0.026273015886545,-0.059683058410883]],[[0.092676997184753,-0.027137404307723,-0.054220125079155],[0.017777981236577,-0.011697207577527,0.0052288486622274],[0.0265230871737,0.0099850567057729,-0.0099886422976851]],[[0.051821459084749,0.019589690491557,0.10990153253078],[-0.011909743770957,0.011480531655252,0.086779825389385],[0.069194629788399,0.082443498075008,-0.023151153698564]],[[0.016750559210777,0.0098458491265774,0.010709195397794],[-0.025564419105649,-0.0099570797756314,-0.0014113649958745],[0.0067983823828399,-0.015471720136702,-0.081577382981777]],[[0.091244123876095,0.050093896687031,0.032897066324949],[0.081482402980328,0.029636025428772,0.026144383475184],[0.069255903363228,-0.017680613324046,0.13497702777386]],[[-0.02041370049119,0.057951014488935,-0.088951840996742],[0.03932486474514,-0.038271803408861,0.034852456301451],[-0.053506929427385,0.053367268294096,-0.035073574632406]],[[-0.098170831799507,-0.014781291596591,-0.010790601372719],[0.031935222446918,-0.020255893468857,0.1019859239459],[-0.07463650405407,-0.006764646153897,0.010671499185264]],[[0.066579088568687,0.031184922903776,-0.032931040972471],[0.037714529782534,0.0032603584695607,0.00058563560014591],[0.046050284057856,0.027983672916889,0.0022817417047918]],[[0.013845395296812,0.013410773128271,-0.033564522862434],[-0.054786391556263,0.052018336951733,0.087061516940594],[-0.058325316756964,0.028566714376211,-0.052664663642645]],[[0.022721445187926,-0.07815770804882,0.055402003228664],[0.051604766398668,0.061293214559555,0.03560721129179],[-0.060002326965332,0.10795547068119,0.0023389770649374]],[[0.038082279264927,-0.084698095917702,0.049881741404533],[0.032595951110125,0.0015601454069838,0.041902374476194],[0.06086552888155,0.026867156848311,0.041613686829805]],[[0.017246788367629,-0.086146108806133,0.048536445945501],[-0.0096335029229522,0.022968776524067,-0.061743143945932],[-0.016286415979266,0.009705176576972,0.022901616990566]],[[-0.036769550293684,0.070626959204674,0.081611536443233],[0.010307805612683,0.052067577838898,-0.065287791192532],[-0.058887273073196,-0.016063021495938,0.05192669481039]],[[0.045178223401308,-0.021348869428039,0.078885994851589],[-0.071805894374847,0.012269504368305,0.062856905162334],[0.13660858571529,0.0040709930472076,-0.027252795174718]],[[-0.0055296667851508,0.010904924944043,0.013668538071215],[0.030334614217281,-0.0046155890449882,-0.033063415437937],[-0.091046661138535,-0.066335931420326,0.039206378161907]],[[0.0066448138095438,0.061997339129448,-0.047126241028309],[0.094181805849075,-0.022286640480161,0.051384307444096],[0.016200359910727,0.038167968392372,0.052705302834511]],[[0.09222649782896,-0.010184878483415,0.060654986649752],[-0.04341908171773,0.011277914047241,0.09863093495369],[-0.088692083954811,-0.032768923789263,-0.004648907110095]],[[0.169527977705,-0.074237793684006,0.021156268194318],[-0.038822375237942,-0.038877904415131,-0.046618863940239],[0.047058306634426,0.0058467332273722,0.051318895071745]],[[-0.040082138031721,0.090462066233158,-0.048300877213478],[-0.052119340747595,-0.063340499997139,0.029442999511957],[0.04848800227046,0.069915324449539,-0.033523473888636]],[[0.0024684981908649,0.01136364415288,-0.018342697992921],[0.062859058380127,-0.0040350505150855,0.031253524124622],[0.0031279202084988,0.043168228119612,-0.042067684233189]],[[-0.067797414958477,0.049454748630524,0.044160094112158],[0.06276448816061,0.051032029092312,0.0082978066056967],[0.02067718282342,-0.013947119005024,0.033262964338064]],[[0.06085330247879,-0.035484235733747,-0.036581732332706],[-0.057498723268509,0.059528984129429,-0.019659934565425],[0.044848307967186,0.012416562996805,0.0087093245238066]],[[0.058462515473366,0.10994122177362,0.024702535942197],[-0.0083770966157317,-0.056028090417385,0.058898102492094],[-0.061541967093945,-0.039346262812614,-0.057073894888163]],[[0.078394800424576,-0.070909306406975,-0.06337832659483],[0.083394385874271,-0.012040466070175,-0.059837482869625],[-0.057730566710234,0.0075561827979982,-0.071743316948414]],[[-0.037125404924154,-0.06165774166584,0.020531242713332],[0.086812533438206,-0.01654333434999,-0.071043647825718],[-0.00059743237216026,-0.014723218046129,0.017159992828965]],[[0.076875202357769,0.064811378717422,0.049818512052298],[-0.032918438315392,0.053535331040621,-0.039073206484318],[0.080974072217941,0.044362857937813,0.016405716538429]],[[0.073456034064293,-0.043302789330482,0.042591281235218],[-0.0038299961015582,0.073515929281712,0.03322022035718],[0.061834052205086,0.0043039913289249,0.032246362417936]],[[-0.0040030074305832,0.058222178369761,0.063114397227764],[0.011335191316903,0.094019964337349,-0.031956914812326],[-0.071043245494366,0.051777482032776,0.062185868620872]],[[0.015945769846439,0.007149220444262,0.15296685695648],[-0.014711138792336,0.078377656638622,-0.039824802428484],[-0.036409847438335,-0.10187637805939,-0.070400908589363]],[[-0.0011481976835057,0.12132683396339,-0.018956113606691],[-0.030831083655357,-0.026973932981491,0.054383531212807],[0.0096646472811699,-0.06088962033391,-0.01894611120224]],[[0.0037506902590394,0.012371329590678,0.0087938383221626],[-0.050701100379229,-0.0033106997143477,-0.049860052764416],[-0.0042901393026114,0.015134764835238,0.089741542935371]],[[0.083325773477554,-0.0632708594203,0.010895914398134],[0.0017515060026199,-0.012346629984677,0.044688977301121],[-0.01652529463172,0.062981359660625,-0.0355394333601]],[[-0.095272898674011,-0.033780731260777,0.0083533460274339],[0.061616122722626,0.016036376357079,-0.033171217888594],[0.02678026817739,0.044585075229406,0.060212995857]],[[-0.00099130172748119,0.096625201404095,-0.020443946123123],[0.076166734099388,0.075230434536934,-0.038660749793053],[0.024472616612911,-0.065170116722584,0.020598312839866]],[[0.048660859465599,-0.0025521037168801,0.030066540464759],[0.028814746066928,0.024998351931572,0.051300473511219],[0.026903804391623,0.042113248258829,0.02173663303256]],[[-0.069336771965027,0.0024111436214298,0.041338823735714],[-0.09914880245924,0.0062678568065166,0.058031424880028],[-0.045856926590204,0.026213565841317,0.035666082054377]],[[-0.0021955291740596,0.026436785236001,-0.0056927716359496],[0.039802521467209,0.0095120258629322,-0.06563550978899],[0.01329152379185,-0.030692836269736,-0.010774353519082]],[[0.00037038495065644,0.039708014577627,0.056663364171982],[0.057042010128498,0.05384698137641,-0.063338778913021],[0.021720526739955,-0.014337136410177,-0.015063221566379]],[[-0.084281012415886,0.117436401546,0.089901246130466],[0.048846919089556,0.041478365659714,0.047117073088884],[0.087516501545906,-0.024890413507819,-0.033197939395905]],[[0.064386427402496,0.089679025113583,-0.0056144595146179],[-0.041161745786667,0.0242356993258,-0.0066594704985619],[0.078679859638214,0.0074521605856717,0.069987699389458]],[[0.020161509513855,0.0058007291518152,0.0089971590787172],[0.02344181202352,-0.024127079173923,0.021337438374758],[0.040325570851564,0.0093261059373617,0.0027091393712908]],[[-0.022581517696381,0.061937116086483,0.0023958988022059],[0.023220343515277,0.071107774972916,-0.051898296922445],[0.12257475405931,0.029269333928823,0.014903350733221]],[[-0.012302624993026,0.027868900448084,0.10836596041918],[-0.004004190210253,-0.027010453864932,-0.010270559228957],[0.011344616301358,0.091128833591938,0.0067755500786006]],[[0.057482331991196,0.01939819380641,0.094343714416027],[0.01993122883141,0.03310289233923,-0.009056992828846],[-0.023909928277135,0.018511470407248,0.023795984685421]],[[-0.032697606831789,-0.027704572305083,0.060819528996944],[-0.037352856248617,0.024278100579977,0.087925642728806],[0.17256273329258,0.019689148291945,0.090920083224773]],[[0.062581785023212,0.070986993610859,0.042362481355667],[0.012513278983533,-0.037086240947247,-0.025931023061275],[-0.07153682410717,0.069985784590244,0.047727834433317]],[[0.052869286388159,-0.086168400943279,0.029734449461102],[-0.00051502569112927,-0.014199759811163,-0.090693265199661],[-0.025493539869785,-0.022754658013582,-0.0026999779511243]],[[-0.017782783135772,-0.035344641655684,0.12191607058048],[0.025787692517042,0.088745839893818,-0.064610362052917],[0.06520190089941,0.037655606865883,0.065935641527176]],[[0.042173072695732,0.044932082295418,0.040961887687445],[0.040529396384954,0.05799113586545,0.034218013286591],[0.054343465715647,-0.13901157677174,0.0070770899765193]],[[-0.079765625298023,-0.039165880531073,-0.021209696307778],[-0.049159355461597,0.039147611707449,0.025447584688663],[0.027512956410646,0.036697998642921,-0.013207255862653]],[[0.056553155183792,0.041823077946901,0.00018893284141086],[0.017090573906898,0.029078474268317,0.06140661239624],[-0.091809466481209,0.017292166128755,0.07327064871788]],[[-0.052779942750931,-0.068495117127895,-0.0031343677546829],[0.038221940398216,-0.016948696225882,0.032156586647034],[-0.07271134108305,-0.055757127702236,0.062528446316719]],[[0.01746890693903,0.10757619142532,-0.035716276615858],[0.027273619547486,0.0018347972072661,0.060088980942965],[-0.025624547153711,-0.058821454644203,-0.084777630865574]],[[0.033878114074469,-0.078138180077076,0.10414578765631],[0.0051409597508609,0.032655861228704,0.013618065044284],[0.011724538169801,0.10543198138475,-0.0017221478046849]],[[-0.075295940041542,-0.0025974656455219,-0.024326808750629],[0.0039856848306954,0.0087192514911294,0.10125572234392],[-0.025365974754095,0.021605804562569,-0.00039954687235877]],[[0.045829955488443,-0.0014536216622218,0.060246858745813],[0.0048171263188124,-0.038619145750999,-0.0226980894804],[-0.0019161456730217,-0.0033316004555672,-0.00067158957244828]],[[0.011991423554718,0.040310427546501,0.098380528390408],[0.035653155297041,0.011538729071617,-0.0014503430575132],[0.033658053725958,0.062052614986897,-0.085098221898079]],[[0.045201648026705,-0.026616772636771,0.062354177236557],[0.10877301543951,-0.021056873723865,0.02418446354568],[0.044076140969992,0.073477990925312,-0.017321491613984]],[[0.071420170366764,0.049708135426044,-0.009680749848485],[0.043760031461716,0.011132937856019,0.074596576392651],[0.067639477550983,0.067614175379276,0.063185229897499]],[[-0.031008409336209,0.083990208804607,0.044696714729071],[0.044052165001631,-0.041671954095364,0.10350327938795],[-0.022313004359603,0.0053346119821072,-0.067186519503593]],[[-0.048856522887945,-0.022982785478234,0.036004554480314],[0.0098750963807106,-0.040739011019468,0.10001868009567],[-0.00066948280436918,-0.012680211104453,-0.012835311703384]],[[0.021080866456032,0.02495489642024,0.10813532024622],[-0.016836434602737,-0.019560873508453,0.080676056444645],[0.090935677289963,0.031258698552847,-0.056398760527372]],[[0.06366253644228,0.016945136711001,-0.015530344098806],[0.12129244953394,0.045292273163795,0.070353753864765],[0.072182953357697,-0.010084670037031,0.025906521826982]],[[0.055111646652222,0.016624109819531,-0.068408891558647],[0.051488436758518,-0.048445574939251,-0.060414426028728],[0.0147501565516,0.040462624281645,0.031251050531864]],[[-0.00019382644677535,-0.058863781392574,-0.039895974099636],[0.036902140825987,0.013774215243757,0.0093385959044099],[0.11411356180906,-0.043617408722639,-0.11582816392183]],[[-0.042595878243446,-0.054198704659939,0.0025944742374122],[0.037255104631186,0.041695013642311,0.040940247476101],[0.12393413484097,0.092824347317219,0.0088475504890084]],[[0.033526107668877,0.027857691049576,0.0077731120400131],[0.067371964454651,0.022024432197213,0.067837089300156],[0.084872663021088,-0.00084321451140568,0.046468961983919]],[[0.083244912326336,0.031919792294502,0.016667230054736],[0.030103025957942,0.041761007159948,0.024157518520951],[0.036748442798853,0.037375703454018,0.081122562289238]],[[0.082232959568501,0.0049849241040647,0.080384194850922],[-1.0452336027811e-05,0.060534931719303,-0.061009913682938],[0.11034998297691,0.025806425139308,-0.057407706975937]],[[0.058913256973028,0.013632217422128,-0.069835267961025],[-0.03575412556529,-0.018393758684397,0.10537406802177],[0.032899759709835,0.034752108156681,-0.089430809020996]],[[0.038947179913521,0.091381296515465,-0.01805566623807],[0.053869679570198,0.022985016927123,0.05783661454916],[0.048632152378559,0.11175645142794,-0.01212667580694]],[[0.026285348460078,0.045028537511826,0.023557981476188],[-0.0061317505314946,0.053385660052299,0.062119919806719],[0.0089090643450618,0.011589474976063,0.066863723099232]],[[-0.03824558109045,-0.0059497440233827,0.036656673997641],[0.00090934516629204,-0.062293794006109,-0.084554985165596],[0.031517121940851,-0.081747196614742,0.035916067659855]],[[0.020818011835217,0.07162918150425,0.031949751079082],[0.016458371654153,-0.022961700335145,-0.039226308465004],[-0.0045884782448411,-0.0067185387015343,-0.029532691463828]],[[-0.010312485508621,0.014251213520765,0.052866712212563],[0.067989453673363,-0.030055984854698,0.020569061860442],[-0.045424427837133,-0.059868544340134,0.019308811053634]],[[0.066371753811836,0.0077868672087789,-0.0079806800931692],[0.068040087819099,0.015584781765938,0.041446845978498],[0.013845809735358,0.07915335893631,0.064634412527084]],[[0.045977242290974,-0.016664544120431,0.018000448122621],[-0.0099820261821151,-0.024215560406446,-0.026381971314549],[0.053527686744928,0.085619941353798,0.05956694111228]],[[0.010496584698558,-0.013625125400722,0.079948365688324],[-0.024240352213383,0.039398830384016,0.020524084568024],[0.039506118744612,-0.020940154790878,-0.030403096228838]],[[-0.042462516576052,1.3679894436791e-05,0.0001400375913363],[0.023091647773981,0.013222282752395,0.013621558435261],[-0.029165528714657,0.0046975631266832,-0.022677863016725]],[[-0.021491250023246,0.043290033936501,0.068161964416504],[0.012790049426258,0.057255160063505,0.030709244310856],[0.037023469805717,0.017783768475056,0.030802758410573]],[[0.050823580473661,0.087519511580467,0.08714983612299],[0.023374078795314,0.0015690908767283,0.07736910879612],[-0.047350011765957,-0.028779778629541,0.05191533267498]],[[0.0018238226184621,-0.0055251209996641,-0.036371275782585],[0.066006734967232,0.0060982396826148,0.12473449110985],[0.052124440670013,0.032885428518057,0.030283013358712]],[[0.077431902289391,0.033288192003965,0.026817115023732],[-0.025511864572763,0.045848656445742,0.0027851895429194],[0.029146816581488,-0.024674743413925,-0.074327677488327]],[[0.053868871182203,-0.04811479523778,0.1115156263113],[0.01951683498919,0.077449858188629,-0.027071150019765],[-0.073971197009087,-0.024597087875009,0.097718261182308]],[[-0.048574592918158,-0.01711711101234,-0.0039508058689535],[-0.013138120993972,-0.0042004459537566,-0.0037409104406834],[-0.03930851817131,0.018029071390629,0.03148403018713]],[[0.025486472994089,0.046409491449594,0.010637156665325],[-0.043328527361155,0.022870207205415,0.035898227244616],[0.074084669351578,0.076448366045952,-0.047617714852095]],[[-0.0085378447547555,-0.06156363338232,0.0091695757582784],[-0.034090403467417,0.035406202077866,0.022876756265759],[0.014151321724057,0.061211071908474,-0.032858300954103]],[[0.026007262989879,-0.11867320537567,-0.020671188831329],[0.046167384833097,0.047404482960701,0.04168826341629],[-0.025227159261703,0.0073640923947096,0.053874474018812]],[[0.066283352673054,-0.02976948954165,0.028170347213745],[0.092244528234005,0.079232916235924,0.063595861196518],[-0.047054339200258,0.10956602543592,0.011637241579592]],[[0.0021261943038553,0.070636533200741,0.019333908334374],[0.031259819865227,-0.039533752948046,-0.044659484177828],[-0.076985873281956,-0.087268345057964,-0.00054221937898546]],[[0.051260516047478,-0.020329158753157,0.0071146902628243],[0.020483028143644,0.064505510032177,0.069876775145531],[-0.0095155546441674,0.089600034058094,0.050185766071081]],[[0.026894174516201,0.019915988668799,0.0074690394103527],[0.0078706322237849,0.055973067879677,0.091029182076454],[0.050577215850353,-0.038231216371059,0.0089431703090668]],[[-0.031590793281794,-0.12197861075401,0.11305987089872],[0.030401324853301,0.044135693460703,0.038549803197384],[0.11054620146751,0.0043681589886546,-0.011202399618924]],[[0.0035330094397068,-0.019095912575722,-0.037258233875036],[0.0048774112947285,-0.0059461602941155,-0.035729337483644],[0.065963670611382,-0.062766648828983,-0.01866452023387]],[[0.03380174934864,0.039597667753696,-0.054265096783638],[0.045566167682409,0.035971641540527,0.034234296530485],[-0.020224837586284,-0.0009391576750204,0.025334719568491]],[[0.035561602562666,-0.026932695880532,-0.020758971571922],[-0.033159952610731,0.030151372775435,-0.011493385769427],[0.025154387578368,0.0035538920201361,-0.096399948000908]],[[-0.036975521594286,-0.013670871034265,0.071815766394138],[0.01518574450165,-0.020007696002722,0.059236474335194],[0.028151925653219,0.13743507862091,-0.041865091770887]],[[0.046784996986389,-0.030210798606277,0.090737245976925],[-0.0061796545051038,0.032718427479267,0.057579342275858],[0.018684543669224,-0.022511042654514,0.038680650293827]],[[-0.035796105861664,-0.041189126670361,0.040071118623018],[0.051368799060583,0.078070759773254,-0.017106831073761],[0.065125361084938,0.036402761936188,0.031348884105682]],[[-0.047444451600313,0.010059929452837,-0.04528059437871],[0.0081820897758007,-0.0098255006596446,0.027505643665791],[-0.056585155427456,0.037745829671621,0.044960077852011]],[[0.050865925848484,0.07876905053854,0.033588986843824],[0.06161605194211,-0.020810535177588,0.028239266946912],[0.068588145077229,0.017279073596001,-0.034301996231079]],[[-0.04857536777854,0.031133225187659,0.03515524789691],[-0.07482048869133,-0.027050176635385,-0.072496332228184],[-0.017986383289099,-0.053080223500729,0.048651214689016]],[[-0.01137597952038,0.026947194710374,0.042588137090206],[-0.054504491388798,0.067832544445992,0.03069063834846],[0.03619847074151,-0.0089594917371869,-0.036977022886276]],[[-0.045695837587118,0.0062609626911581,0.049053702503443],[0.021698823198676,-0.011750807985663,0.0010806375648826],[-0.019060607999563,0.0080978767946362,-0.052179340273142]],[[0.029379073530436,0.046340942382812,-0.026818977668881],[-0.059165813028812,0.029709197580814,-0.046662706881762],[-0.0075829271227121,-0.047972921282053,0.078967206180096]],[[-0.01195774320513,0.053104791790247,-0.0027395049110055],[-0.012928298674524,-0.010052437894046,0.063070833683014],[0.02620417997241,-0.0027339630760252,-0.030703887343407]],[[0.064654141664505,0.025194237008691,-0.007134654559195],[0.018282305449247,-0.10666483640671,0.0040889964438975],[0.035001166164875,0.020251965150237,0.061539094895124]],[[0.060204990208149,-0.10820106416941,0.015385454520583],[-0.045782003551722,-0.097923047840595,-0.080020524561405],[0.022812297567725,-0.061440274119377,0.037990275770426]],[[0.031383220106363,-0.062912084162235,0.031685542315245],[0.004208697937429,0.031003125011921,0.046325176954269],[-0.0024032248184085,-0.039492320269346,0.024709917604923]],[[0.045072823762894,-0.11484593153,0.0075376490131021],[-0.022748481482267,0.050514686852694,-0.0071708862669766],[0.014928604476154,0.024455089122057,-0.064713582396507]],[[0.054996002465487,0.048185057938099,0.087230011820793],[0.038627061992884,0.07466945797205,0.015538052655756],[0.10981073230505,-0.0047586928121746,0.084887221455574]],[[0.053253691643476,-0.024293037131429,0.077137857675552],[-0.0039772549644113,-0.00012989981041756,0.013419611379504],[-0.021133780479431,0.0025656644720584,0.12751853466034]],[[0.01612563431263,0.046690497547388,0.035238239914179],[-0.12603314220905,-0.036720253527164,-0.080052271485329],[0.027597552165389,-0.034192565828562,0.050110448151827]],[[0.052172124385834,0.10988559573889,-0.051821433007717],[-0.053066950291395,0.019810885190964,0.086096048355103],[-0.024443877860904,0.07881486415863,-0.02849061973393]],[[0.040893241763115,0.039134867489338,0.10287323594093],[0.012350684963167,-0.026379806920886,0.040491953492165],[0.0017002319218591,0.0087904883548617,-0.016471527516842]],[[0.02904749289155,-0.041834384202957,0.08316196501255],[-0.047448143362999,0.051715977489948,0.04524864256382],[0.055407807230949,0.011183558031917,0.016812354326248]],[[-0.060590546578169,-0.024313915520906,0.082547731697559],[0.097830027341843,-0.022527178749442,-0.037381835281849],[0.022519785910845,-0.06003250554204,-0.035942673683167]],[[0.013961768709123,0.0024279232602566,0.018869845196605],[-0.014081742614508,0.052601918578148,-0.089010052382946],[-0.027423141524196,-0.03620433434844,0.0086300941184163]],[[-0.028199285268784,-0.019595818594098,0.016715472564101],[0.011242381297052,0.007072486449033,-0.010170666500926],[-0.039197027683258,-0.047069117426872,0.047440763562918]],[[-0.031598825007677,0.022994641214609,-0.0076378937810659],[-0.0037060480099171,0.043912835419178,-0.0061922906897962],[-0.045389767736197,-0.069048829376698,-0.011736506596208]],[[0.014569271355867,-0.046352922916412,0.048709318041801],[-0.011367618106306,-0.0040048528462648,0.064286537468433],[0.093973100185394,-0.059358939528465,-0.041402973234653]],[[-0.050912048667669,0.10052590817213,-0.016638528555632],[-0.0028638213407248,-0.038908090442419,-0.029898351058364],[-0.014097615145147,-0.037677068263292,-0.0026696994900703]],[[-0.075637072324753,0.022881330922246,0.030102286487818],[-0.020626226440072,-0.045291241258383,0.015874482691288],[0.060188800096512,0.064451441168785,0.024161310866475]],[[0.096231907606125,0.040844064205885,0.044069018214941],[0.0027193839196116,0.022937189787626,0.031917039304972],[0.0019896849989891,0.097112059593201,-0.041438139975071]],[[-7.2633854870219e-05,0.082681760191917,-0.012617978267372],[-0.014738539233804,0.027556339278817,0.0032573698554188],[-0.015005686320364,-0.0061905109323561,0.0032095620408654]],[[-0.014668651856482,0.025785798206925,-0.017613919451833],[-0.081336475908756,0.050980664789677,0.048722628504038],[-0.020562764257193,0.053552538156509,0.027339611202478]],[[-0.0051893391646445,-0.0080761481076479,0.047698363661766],[0.056481476873159,-0.00862882938236,-0.019729157909751],[-0.057712770998478,-0.040125627070665,-0.045852266252041]]],[[[0.043622337281704,-0.016605379059911,0.044899333268404],[-0.044124860316515,0.029729368165135,-0.0010737158590928],[0.016005923971534,-0.024063467979431,0.055158875882626]],[[0.020865667611361,0.026988182216883,-0.032602325081825],[-0.063958711922169,-0.11160229146481,0.051072776317596],[0.034699063748121,-0.045746318995953,0.012287539429963]],[[0.078840039670467,0.023765757679939,-0.012996698729694],[-0.015883287414908,-0.0021833274513483,0.0036979315336794],[0.041560169309378,-0.012083433568478,-0.1030183583498]],[[-0.010344055481255,0.071644634008408,0.059183362871408],[0.008375084027648,-0.012852978892624,-0.0359254963696],[-0.011469333432615,-0.0050328779034317,0.042733762413263]],[[0.052018314599991,0.054508790373802,-0.021141700446606],[0.0051122196018696,-0.012160023674369,-0.042222544550896],[-0.0029292050749063,0.075152724981308,0.040677640587091]],[[-0.019322033971548,-0.0056031327694654,0.017814354971051],[-0.0078941294923425,0.078419908881187,0.050711024552584],[0.054836191236973,0.090451642870903,0.037777539342642]],[[0.083660207688808,-0.012470384128392,-0.069476954638958],[-0.015043468214571,0.021411292254925,-0.010724629275501],[-0.021010207012296,0.031988244503736,-0.015505599789321]],[[-0.078245528042316,-0.0034704338759184,0.010246640071273],[0.039855018258095,-0.057585056871176,-0.022432932630181],[0.010331327095628,0.029184909537435,0.031134562566876]],[[0.005525978282094,0.033029038459063,0.024257121607661],[-0.036922339349985,-0.028621843084693,0.016484124585986],[0.039530329406261,-0.015104554593563,0.0087767550721765]],[[0.029466675594449,0.060860097408295,0.041168320924044],[0.070370800793171,-0.0071398485451937,-0.010874880477786],[0.074734099209309,0.11709739267826,0.0062001231126487]],[[-0.030399911105633,-0.016795519739389,0.046530928462744],[0.050242878496647,-0.12649545073509,0.034520547837019],[0.094568215310574,-0.074070498347282,0.00073899404378608]],[[0.044540293514729,-0.02633317001164,0.070675656199455],[-0.071843154728413,0.017448160797358,0.027854666113853],[0.070266179740429,-0.0099086314439774,0.07042970508337]],[[-0.041903372853994,0.056664265692234,0.062796801328659],[0.010356434620917,-0.071841716766357,0.026720831170678],[-0.072489470243454,0.024524979293346,-0.03086900152266]],[[-0.033130154013634,0.0096575394272804,0.023193217813969],[0.027164060622454,0.046266589313745,-0.056440338492393],[-0.067852407693863,-0.00089228583965451,0.08871603757143]],[[0.070137374103069,0.0057930611073971,-0.082477658987045],[0.0093417139723897,0.1498039662838,0.028580937534571],[0.0544029250741,0.051277529448271,0.053170081228018]],[[0.0052817049436271,-0.067857287824154,-0.0022831228561699],[-0.0019581883680075,-0.016504338011146,-0.051355894654989],[0.037732478231192,-0.057894308120012,-0.033422436565161]],[[-0.041563604027033,0.016434228047729,0.070036962628365],[0.0095969848334789,-0.039375711232424,-0.0039281281642616],[-0.017134850844741,0.025724213570356,-0.016725229099393]],[[-0.11944147199392,0.026100523769855,-0.01532790157944],[0.016171611845493,-0.09195614606142,0.030240586027503],[0.025332866236567,0.029514614492655,0.040385037660599]],[[0.020461101084948,0.024464352056384,0.039656236767769],[0.0194599814713,-0.052477400749922,0.061444528400898],[-0.0021588036324829,0.095170348882675,0.04186911508441]],[[-0.062270481139421,0.066513791680336,0.034376602619886],[0.0064404523000121,0.015345839783549,0.015466338954866],[0.052618991583586,0.037257570773363,-0.045079506933689]],[[-0.044400699436665,-0.059811379760504,0.031621899455786],[0.0340715944767,0.04369442909956,-0.012287532910705],[0.01557981222868,6.9608904595952e-05,-0.03677386790514]],[[0.078439451754093,0.022280223667622,0.073384135961533],[0.092481523752213,-0.038049347698689,0.027985332533717],[-0.021732764318585,0.066909305751324,0.12048126757145]],[[-0.053164977580309,-0.004560511559248,0.066958978772163],[0.0076506738550961,-0.013976694084704,0.021350495517254],[0.014884940348566,0.016299389302731,0.099208436906338]],[[0.0069521903060377,-0.036445282399654,-0.025084836408496],[0.026452524587512,-0.024317711591721,-0.0726078748703],[0.028364364057779,0.037051416933537,-0.011428428813815]],[[0.02099528722465,1.1984320735792e-05,-0.016395227983594],[-0.034003812819719,0.029933527112007,-0.033355951309204],[0.019034767523408,0.057098671793938,0.057632964104414]],[[0.0045259026810527,0.011211939156055,0.034268353134394],[-0.091298028826714,-0.069145143032074,-0.0097125601023436],[0.032613486051559,0.087663307785988,-0.026020558550954]],[[0.026654416695237,0.0016161067178473,-0.052830867469311],[-0.011701927520335,0.054681640118361,0.026822201907635],[0.07702112197876,-0.014650659635663,-0.035504434257746]],[[-0.0063765924423933,0.082536481320858,0.05723612010479],[0.033246949315071,-0.020259097218513,0.0030859373509884],[0.034180406481028,0.10684132575989,-0.067604750394821]],[[0.015948586165905,-0.0033227931708097,0.0012901488225907],[-0.027659758925438,-0.0024373845662922,0.02762645483017],[0.022233350202441,0.068546339869499,0.015252611599863]],[[0.02960616350174,0.057563878595829,0.020299592986703],[-0.098149813711643,0.017042906954885,0.07773482054472],[-0.002774253487587,-0.027554454281926,0.0078666741028428]],[[0.022181522101164,0.059681978076696,-0.03030202537775],[0.011020065285265,-0.023917648941278,-0.085802435874939],[-0.073507502675056,0.062321811914444,0.010874659754336]],[[0.022613061591983,0.031417280435562,0.039495643228292],[0.053078524768353,-0.014107236638665,0.048077780753374],[0.018283933401108,-0.034482397139072,-0.02117389626801]],[[-0.0037332088686526,-0.06480947136879,-0.1088884100318],[0.046619359403849,-0.010476195253432,0.061286848038435],[0.046831384301186,0.11556933820248,-0.0098448200151324]],[[-0.018217198550701,0.012703811749816,-0.033601824194193],[0.013646013103426,0.029299510642886,-0.074968062341213],[0.054138533771038,0.09301220625639,0.024860244244337]],[[0.027773415669799,0.019622204825282,0.019889835268259],[-0.096272081136703,-0.057557344436646,0.026203699409962],[0.025427803397179,0.050706848502159,0.019899357110262]],[[-0.094372615218163,-0.088030025362968,-0.029021382331848],[0.10226003825665,-0.0039034534711391,-0.0023603974841535],[-0.057465877383947,-0.06093467772007,0.020332170650363]],[[-0.048199962824583,0.046860869973898,0.0053243199363351],[0.021178150549531,-0.067742437124252,-0.045205321162939],[0.032807700335979,0.038006048649549,-0.036259971559048]],[[-0.024075381457806,-0.038809891790152,0.0045857210643589],[-0.023897202685475,0.01467367541045,0.037707347422838],[-0.073557429015636,-0.057717230170965,0.019200230017304]],[[-0.020918423309922,0.024657312780619,-0.0038056364282966],[0.028320994228125,-0.02878431789577,0.035708945244551],[0.034979060292244,0.052600435912609,-0.0040472717955709]],[[-0.014202281832695,0.008540190756321,0.0076176319271326],[-0.025219922885299,-0.0051116556860507,0.033600311726332],[0.030646169558167,0.024498926475644,0.051711313426495]],[[-0.0043538776226342,-0.032425358891487,0.077860057353973],[0.051419746130705,0.013344914652407,0.05102539435029],[0.013598075136542,0.03792766481638,-0.023517861962318]],[[-0.026333538815379,0.034009832888842,-0.048990949988365],[-0.04884796962142,-0.056233357638121,0.0068062366917729],[0.0056016426533461,0.018219828605652,0.055202938616276]],[[0.061098366975784,-0.041118290275335,0.0043101604096591],[-0.099057622253895,0.02646435238421,0.088768847286701],[0.035598658025265,-0.027929728850722,-0.026856794953346]],[[-0.058468829840422,-0.019637681543827,0.09357363730669],[-0.097187347710133,-0.020169224590063,0.012259130366147],[-0.023161552846432,0.016682356595993,-0.026631349697709]],[[-0.0052531640976667,-0.052047662436962,0.0085534267127514],[-0.079372115433216,0.015687078237534,0.03224753588438],[-0.030214609578252,0.0093900943174958,0.042285699397326]],[[0.027498032897711,0.01527953427285,0.10760107636452],[-0.034006260335445,0.036138072609901,0.081408008933067],[0.0075339139439166,-0.0033682123757899,0.021329129114747]],[[0.0088930390775204,-0.014108133502305,-0.021432979032397],[0.017779622226954,-0.019199615344405,-0.05629450827837],[0.053334310650826,0.082307673990726,-0.0067630424164236]],[[0.0025593102909625,0.13777965307236,0.011362384073436],[0.10072018951178,-0.0013263183645904,0.020910151302814],[0.10068830102682,-0.011096478439867,0.12398462742567]],[[0.020861454308033,-0.029194923117757,0.019019136205316],[0.024374069646001,-0.085006676614285,-0.023980418220162],[0.084085404872894,0.0065118251368403,0.022317042574286]],[[-0.031528946012259,0.035836011171341,-0.033740136772394],[-0.025722661986947,0.062433287501335,-0.054397840052843],[0.045933045446873,0.00038803470670246,0.052557580173016]],[[-0.049155224114656,0.097120925784111,0.013109531253576],[-0.017223184928298,-0.032439909875393,0.045549470931292],[0.012247471138835,-0.015708295628428,-0.05751371383667]],[[0.016117321327329,-0.070439890027046,-0.052745748311281],[-0.0074798590503633,-0.057149682193995,-0.076140373945236],[0.12285377085209,0.019447213038802,0.039823528379202]],[[0.043253984302282,0.063972927629948,0.0012077613500878],[-0.019235076382756,-0.033186461776495,-0.012797364033759],[0.023508535698056,0.0034987670369446,0.052766181528568]],[[0.031001111492515,0.02397994697094,-0.0011656043352559],[-0.0059569915756583,0.056338291615248,-0.019275266677141],[0.071775667369366,-0.0036568841896951,0.040459845215082]],[[0.038420252501965,0.054376926273108,0.0063252537511289],[0.023122418671846,0.018036002293229,0.028618112206459],[0.0085925040766597,-0.014327260665596,0.055583503097296]],[[0.062800280749798,-0.017958050593734,0.0070711844600737],[0.081080369651318,0.01904989592731,0.015699036419392],[-0.049488913267851,0.028377709910274,-0.078571155667305]],[[-0.018626799806952,0.0099943252280354,-0.027287231758237],[-0.073069877922535,0.014489491470158,-0.0075498078949749],[-0.02885520644486,0.079905822873116,-0.070855684578419]],[[-0.0056123253889382,0.0081758610904217,-0.028210813179612],[-0.057223472744226,0.055611029267311,0.006350192707032],[0.017388189211488,-0.01156916283071,0.05583168938756]],[[0.022472960874438,-0.012041173875332,0.070749819278717],[-0.011958738788962,-0.0045600016601384,-0.025930808857083],[-0.069120742380619,0.049224123358727,0.071681380271912]],[[-0.046805620193481,0.022299675270915,-0.020299132913351],[-0.018154166638851,0.0092094875872135,0.12734419107437],[0.050311297178268,0.0059177908115089,0.069644436240196]],[[-0.0053333546966314,-0.048990361392498,0.0082647195085883],[-0.048191033303738,0.061779595911503,-0.014750801026821],[-0.018879370763898,0.030273323878646,-0.031538095325232]],[[-0.0061465967446566,0.0055201277136803,-0.0067555080167949],[0.010638426057994,0.053270787000656,-0.041457697749138],[0.0056440122425556,0.068783961236477,0.014013528823853]],[[0.016859598457813,-0.00022046243248042,-0.10655618458986],[0.021151581779122,0.0018619054462761,0.085484139621258],[0.083001531660557,-0.041468154639006,0.0092211272567511]],[[0.083482034504414,-0.0053112087771297,0.072427190840244],[0.020365048199892,0.097745716571808,-0.033784348517656],[-0.033388111740351,0.019418342038989,0.019279483705759]],[[0.0040242960676551,-0.060065716505051,0.067509591579437],[0.011007134802639,0.0070221205241978,-0.045992136001587],[-0.11658629029989,-0.015902297571301,-0.06562528014183]],[[-0.010983189567924,-0.020908189937472,0.0050265351310372],[0.039341852068901,0.06189725920558,-0.041669465601444],[0.0071914019063115,0.056301523000002,6.3720952311996e-05]],[[-0.043532028794289,0.010439415462315,-0.037440836429596],[0.060594614595175,0.014512700028718,0.034116197377443],[0.048590324819088,0.032382108271122,0.035673908889294]],[[-0.035142980515957,0.04437355697155,-0.015448742546141],[0.009775148704648,0.035453770309687,0.0078840777277946],[0.05147597938776,0.035011246800423,0.060113377869129]],[[-0.00068108644336462,0.041064199060202,0.092777848243713],[0.010212034918368,0.10042666643858,0.017028547823429],[-0.049276255071163,-0.00055771198822185,-0.070534102618694]],[[0.00091742858057842,-0.021269848570228,0.03619721159339],[-0.01670997031033,0.054635293781757,-0.021565465256572],[-0.052727226167917,0.002075542928651,0.017106065526605]],[[-0.0033447828609496,-0.055437613278627,-0.0051336665637791],[0.029607433825731,0.020194778218865,0.058612365275621],[-0.0009403494768776,-0.031433541327715,-0.028131097555161]],[[0.062432106584311,0.019657228142023,0.016673378646374],[0.031883556395769,0.088052995502949,0.0279621463269],[-0.070817574858665,0.01105320174247,0.10182604938745]],[[0.043385468423367,-0.13793766498566,0.013483276590705],[-0.025321347638965,-0.039808131754398,0.049200899899006],[0.017442824319005,0.028790401294827,-0.047861546278]],[[0.031386516988277,0.089240476489067,0.035230241715908],[0.066088497638702,-0.010994158685207,-0.047777101397514],[0.018645929172635,0.086427241563797,0.022742221131921]],[[-0.035518180578947,-0.049213737249374,0.043492864817381],[0.072212502360344,0.06556448340416,0.025636255741119],[0.019508607685566,0.11975802481174,-0.023878287523985]],[[-0.053576271981001,-0.049977526068687,0.050946872681379],[0.0027262831572443,-0.00020729913376272,0.051878247410059],[-0.014428614638746,0.044456377625465,-0.0041605997830629]],[[0.013332867063582,0.011948090046644,-0.046181332319975],[0.019366532564163,0.014651939272881,-0.0035665174946189],[-0.053458031266928,-0.068524055182934,0.028982246294618]],[[0.053855266422033,0.00012161147606093,-0.037449557334185],[0.043832272291183,0.0041127107106149,0.05451175570488],[-0.031855039298534,-0.01589597761631,0.0032447776757181]],[[0.037965249270201,0.035093110054731,0.0059954528696835],[-0.065863117575645,0.036462418735027,0.038250368088484],[0.10211434960365,-0.0096629811450839,0.072166107594967]],[[0.014243158511817,0.014627819880843,-0.01683852635324],[-0.012929876334965,0.047371096909046,-0.059806022793055],[0.053059905767441,-0.080725736916065,0.020335661247373]],[[-0.045464493334293,0.066479094326496,0.029288897290826],[-0.034055795520544,0.01740238815546,0.017160939052701],[-0.034699652343988,0.057871405035257,0.018209468573332]],[[-0.018613720312715,-0.010846449993551,0.0064724856056273],[-0.036959864199162,-0.041741799563169,0.038784984499216],[-0.027975356206298,0.014110176824033,-0.052386872470379]],[[0.061291642487049,0.033732831478119,-0.068947799503803],[0.047296106815338,0.029065195471048,0.0077359126880765],[0.10082320868969,0.067413948476315,0.040517032146454]],[[0.083687528967857,0.024953404441476,0.002883676905185],[0.074518859386444,-0.027320574969053,0.058713190257549],[0.029801186174154,0.058468107134104,0.047402158379555]],[[0.027706598863006,-0.033673007041216,-0.03604869171977],[0.02940209954977,0.042539801448584,-0.019196815788746],[0.066294729709625,-0.0062792482785881,-0.058137495070696]],[[-0.0051119485870004,-0.026730600744486,0.0056742485612631],[0.045346613973379,-0.040279418230057,0.064106568694115],[0.040754921734333,0.11663177609444,-0.034917954355478]],[[-0.044461760669947,0.073926173150539,0.028423838317394],[0.0050577875226736,-0.067784667015076,0.0062559200450778],[0.0019185330020264,-0.010283288545907,-0.022503666579723]],[[0.086238883435726,0.046233013272285,-0.0038447410333902],[-0.0051175435073674,0.050936419516802,0.017211610451341],[0.057222336530685,0.042678710073233,0.11563414335251]],[[-0.049925126135349,-0.044831741601229,0.064290151000023],[-0.008167021907866,-0.055315680801868,0.098661869764328],[0.038128864020109,-0.031024003401399,-0.017536068335176]],[[0.060252629220486,0.037047807127237,-0.0016094734892249],[-0.013908447697759,0.015847865492105,-0.041408251971006],[0.074753023684025,0.0063747651875019,-0.018050810322165]],[[-0.015044775791466,0.017301833257079,-8.230798994191e-05],[0.070458874106407,0.044877275824547,0.046349659562111],[-0.007925346493721,0.014768710359931,0.038382526487112]],[[0.0090640252456069,0.10205580294132,-0.0073532555252314],[0.0051292711868882,0.011425727047026,0.070525251328945],[0.033110581338406,-0.035709861665964,-0.013329279609025]],[[0.050760872662067,-0.013845556415617,0.029251329600811],[-0.017049385234714,0.083676733076572,0.029470453038812],[-0.022239089012146,0.0016155343037099,-0.016633037477732]],[[0.03866670280695,-0.0048307133838534,0.013553529977798],[0.041990719735622,0.0004773206601385,-0.059141583740711],[-0.050785679370165,0.028785025700927,0.014935397543013]],[[-0.0074910740368068,-0.0036257703322917,-0.081348516047001],[0.042559918016195,-0.084493912756443,-0.051464702934027],[0.00036820120294578,-0.059721227735281,0.022378062829375]],[[0.00043712282786146,-0.0052380971610546,0.069583244621754],[0.079164013266563,-0.0095286881551147,-0.04963257163763],[0.022834371775389,0.078414559364319,0.027442056685686]],[[0.0037310218904167,0.032260626554489,0.04156843945384],[-0.019238209351897,0.027666108682752,-0.038128670305014],[-0.0092974230647087,-0.0053524747490883,0.15438663959503]],[[0.072041735053062,0.038294117897749,-0.036334726959467],[0.051768377423286,-0.0083228247240186,0.044724740087986],[-0.066206939518452,-0.019196337088943,-0.016640039160848]],[[-0.028385827317834,-0.029895482584834,-0.018223475664854],[-0.0057965600863099,-0.011243168264627,0.018586810678244],[0.011686697602272,0.0442795753479,0.0054040369577706]],[[0.035804487764835,0.020777864381671,-0.11640854924917],[0.0098664378747344,0.018343087285757,-0.065728612244129],[-0.012787399813533,0.077864050865173,-0.014049402438104]],[[0.022094560787082,-0.096121333539486,0.024253396317363],[-0.060245327651501,0.033489808440208,-0.015363571234047],[0.096182063221931,0.099003970623016,-0.017760027199984]],[[0.025465933606029,0.019859287887812,-0.041336990892887],[0.045661047101021,-0.0076842689886689,0.032153386622667],[-0.010024545714259,0.016272023320198,0.090314358472824]],[[-0.061287041753531,0.011832911521196,0.044260822236538],[-0.023741213604808,-0.034667514264584,0.025325547903776],[-0.023090610280633,0.018092971295118,-0.0031172442249954]],[[-0.026444772258401,-0.00076234742300585,-0.0054386993870139],[0.094308242201805,-0.11811989545822,0.0053799608722329],[-0.030242633074522,-0.028142469003797,0.0036056460812688]],[[0.085469476878643,0.01696708984673,0.012007834389806],[0.021624540910125,-0.017991608008742,0.00064176693558693],[0.053615037351847,-0.026939509436488,-0.044711280614138]],[[0.011295644566417,0.01349319703877,0.023747159168124],[0.0010492405854166,0.00054171920055524,0.09742010384798],[-0.016813945025206,-0.083508670330048,-0.048971891403198]],[[0.0088449167087674,-0.022701814770699,-0.027475772425532],[-0.022237425670028,0.057195764034986,0.030919961631298],[-0.026247553527355,0.0026102219708264,0.010162169113755]],[[0.00017499446403235,0.07469779253006,-0.019277947023511],[-0.055184621363878,-0.0046348599717021,-0.019075378775597],[0.055186934769154,0.063246093690395,0.029012259095907]],[[0.025311609730124,-0.02699482999742,-0.024754429236054],[0.011543372645974,-0.041206087917089,0.010119243524969],[-0.028564194217324,0.030446788296103,-0.02448751591146]],[[0.035607673227787,-0.046576719731092,0.001622848212719],[0.030848667025566,0.020000852644444,-0.0030416385270655],[0.018097553402185,-0.0047349189408123,-0.0038517746143043]],[[-0.022264329716563,0.062626153230667,-0.0074897049926221],[-0.05713303014636,0.015326719731092,0.042257059365511],[-0.011971969157457,0.00092482555191964,-0.048148177564144]],[[-0.0027378643862903,0.022290110588074,-0.026281256228685],[-0.024146975949407,-0.011546516790986,-0.032171532511711],[-0.046900417655706,0.022194318473339,-0.010303507559001]],[[0.066289193928242,0.021692143753171,-0.073281846940517],[0.0097838873043656,0.055973771959543,-0.0086357807740569],[0.015981392934918,-0.09874852001667,-0.052900955080986]],[[-0.0063809775747359,-0.048796843737364,-0.06657699495554],[0.035341493785381,0.042431257665157,0.016179069876671],[-0.022393669933081,0.0070521584711969,0.0016528585692868]],[[-0.010606597177684,0.011477641761303,-0.049518477171659],[0.05035300552845,0.08917497843504,-0.028840057551861],[-0.055101852864027,-0.061917454004288,0.067770473659039]],[[0.03408095240593,-0.07419491559267,-0.01880780979991],[-0.037304453551769,0.019294807687402,0.04563295096159],[-0.0026317583397031,0.010691636241972,0.052247270941734]],[[0.0015419541159645,-0.0075927875004709,0.026378901675344],[0.015393750742078,-0.042335156351328,0.056072358042002],[0.0211660284549,0.040301609784365,0.046118568629026]],[[0.029278382658958,0.077934607863426,-0.097964733839035],[0.041845627129078,0.030944244936109,0.01757668890059],[0.0017314350698143,0.11175815761089,0.0643160790205]],[[-0.069941319525242,0.068429484963417,-0.042539518326521],[0.016374504193664,-0.060444943606853,-0.026680789887905],[-0.021126631647348,0.067543812096119,0.090540394186974]],[[0.05473068356514,-0.038017153739929,-0.056156441569328],[0.031579211354256,-0.046002425253391,-0.036531627178192],[-0.034916486591101,-0.033007983118296,-0.036454502493143]],[[0.046803425997496,-0.057027656584978,0.043024774640799],[-0.038137633353472,-0.036239691078663,-0.044684331864119],[0.049849860370159,0.076379902660847,0.033655643463135]],[[0.056919999420643,-0.01755435205996,-0.0011736385058612],[0.018685266375542,0.019135493785143,0.064546637237072],[0.0056532695889473,0.002433932852,0.0084682535380125]],[[-0.058770913630724,0.00046340815606527,-0.061924036592245],[-0.055821068584919,-0.022349502891302,0.022039929404855],[0.023472141474485,-0.015370452776551,0.049310300499201]],[[-0.071451634168625,0.0096993772312999,0.038487166166306],[-0.0012247783597559,0.096273325383663,-0.037371717393398],[0.024727961048484,0.049619328230619,-0.0034365621395409]],[[-0.0028537539765239,0.043677553534508,-0.0032678446732461],[-0.045171067118645,-0.011266664601862,0.029613714665174],[0.032781485468149,-0.008292643353343,0.0012885967735201]],[[-0.0094516528770328,0.017673186957836,0.013948490843177],[-0.035204961895943,-0.031900174915791,-0.058468502014875],[-0.053812801837921,0.084593594074249,0.025752617046237]],[[0.075249247252941,0.020028052851558,0.057928092777729],[0.051676288247108,0.040693864226341,-0.0089598624035716],[0.076297506690025,-0.0049857031553984,0.010360613465309]],[[0.048797506839037,-0.01669254899025,-0.0021824087016284],[-0.060883581638336,-0.027290774509311,0.0082312105223536],[0.035916864871979,0.04159015789628,0.028626468032598]]],[[[-0.065765850245953,0.054865717887878,0.030541120097041],[0.026145802810788,-0.026574412360787,-0.080737896263599],[-0.021224204450846,-0.040574967861176,-0.073443382978439]],[[0.024449085816741,0.043055217713118,0.070810869336128],[0.033410504460335,-0.015136565081775,-0.048813354223967],[-0.079870373010635,-0.063398912549019,0.038516476750374]],[[-0.0096526890993118,0.074909724295139,-0.049906004220247],[0.015571274794638,0.025280991569161,0.049064584076405],[-0.024545691907406,-0.012762876227498,-0.004467929713428]],[[0.0052436171099544,0.0049756797961891,-0.0032023130916059],[0.036955170333385,0.068533957004547,0.035358887165785],[-0.0017494839848951,-0.030334215611219,-0.01300245244056]],[[0.0251160915941,-0.00060651585226879,-0.041789840906858],[-0.022258672863245,-0.006157950963825,0.078045271337032],[-0.045872177928686,-0.062727339565754,-0.074562475085258]],[[0.049290996044874,-0.038187045603991,0.045694891363382],[-0.05386008694768,-0.018128724768758,-0.059895128011703],[0.007293900474906,0.031190805137157,-0.039196636527777]],[[-0.033099245280027,-0.019758502021432,0.034441992640495],[0.046843439340591,0.10201642662287,-0.020459409803152],[0.013437078334391,-0.080268993973732,-0.02181931771338]],[[0.021949946880341,0.043640237301588,0.036821562796831],[-0.071655414998531,0.047315422445536,0.042912721633911],[0.086012482643127,-0.026714103296399,-0.011508464813232]],[[0.039745662361383,-0.0065382593311369,0.085709400475025],[-0.094574294984341,0.024439981207252,-0.077439107000828],[0.043164350092411,-0.025244338437915,0.00023533076455351]],[[-0.040208484977484,0.12883925437927,0.027279069647193],[0.16188684105873,0.018954459577799,0.24067537486553],[0.13665653765202,-0.11851770430803,0.062548607587814]],[[-0.047973081469536,0.063701435923576,-0.06131399050355],[-0.0068234852515161,0.044583026319742,-0.058142874389887],[-0.098893240094185,-0.037868019193411,0.022090138867497]],[[0.027627469971776,0.037512559443712,-0.031930644065142],[0.021105699241161,0.0053562852554023,0.022953936830163],[0.033910356462002,0.021157475188375,0.0063185095787048]],[[-0.022589875385165,-0.0067070857621729,0.02406538464129],[0.0076233786530793,0.026689713820815,0.0089636435732245],[-0.0042772660963237,0.018261214718223,-0.031208680942655]],[[0.035618528723717,0.016136460006237,-0.00030822248663753],[-0.013315129093826,0.0066686449572444,0.089885681867599],[0.013568172231317,0.015595452859998,0.062261786311865]],[[0.12402012199163,0.06193133443594,-0.019045609980822],[0.14294850826263,0.1234926879406,0.0043867300264537],[-0.016964036971331,0.14048610627651,0.097266368567944]],[[0.0011109728366137,-0.022224955260754,0.0067796185612679],[-0.028831817209721,0.0097448593005538,-0.0010499132331461],[-0.15017388761044,0.039908394217491,-0.016734128817916]],[[0.049886390566826,-0.051387630403042,0.026734827086329],[-0.080235369503498,0.037198022007942,0.013511410914361],[0.033692445605993,-0.011488954536617,0.10141116380692]],[[0.00021872454090044,0.0061409692279994,-0.053876757621765],[0.0076161157339811,0.019063774496317,-0.041768807917833],[-0.039524257183075,0.02496624737978,-0.041880536824465]],[[-0.062878653407097,-0.043248176574707,0.028545245528221],[-0.015182580798864,-0.075396165251732,0.022718869149685],[-0.0020686048083007,-0.027692742645741,0.038296278566122]],[[0.15133981406689,0.0023013860918581,0.041617717593908],[0.038812063634396,0.049908604472876,-0.027640325948596],[0.12568125128746,-0.061197675764561,0.15440280735493]],[[0.043797418475151,0.077815890312195,0.019907932728529],[0.017875226214528,-0.0090288352221251,0.057050857692957],[0.012672498822212,0.047687936574221,0.026887966319919]],[[0.14209482073784,-0.039795130491257,0.03623041883111],[0.043914202600718,0.050913333892822,0.076229929924011],[0.060668800026178,0.0089288856834173,0.038294162601233]],[[-0.015875544399023,0.016300147399306,-0.020922290161252],[0.028810050338507,-0.0042633260600269,0.0079227862879634],[0.070309013128281,0.038144201040268,0.03723980858922]],[[-0.017142185941339,0.012607268057764,-0.0097772534936666],[-0.018161486834288,0.034885630011559,0.0091135622933507],[-0.081277072429657,-0.024479100480676,-0.010332722216845]],[[0.021898780018091,-0.022890402004123,0.013978942297399],[0.015586168505251,0.013448755256832,0.053502656519413],[-0.067773766815662,0.012601786293089,0.064121372997761]],[[-0.019740948453546,-0.0085383476689458,-0.11781807243824],[0.046592615544796,0.037768255919218,0.015328332781792],[-0.024352828040719,-0.047822222113609,-0.039308190345764]],[[0.0031554780434817,0.014558209106326,-0.00040026882197708],[-0.029193272814155,0.04597419500351,0.05808499455452],[0.0091162547469139,0.060370981693268,0.042753402143717]],[[-0.054836098104715,-0.040816955268383,-0.017114594578743],[-0.012774378992617,-0.038754735141993,0.053791161626577],[-0.052736166864634,-0.051768314093351,0.047249246388674]],[[-0.077661633491516,-0.01111008040607,0.020878812298179],[0.11319328099489,-0.0028602906968445,-0.0090561304241419],[0.00013688544277102,0.098742730915546,-0.041235122829676]],[[-0.059903524816036,0.021562159061432,-0.08494883030653],[0.083131454885006,0.054436832666397,-0.0058336369693279],[-0.11085661500692,0.0024183015339077,-0.030263839289546]],[[-0.08635751157999,-0.054289974272251,-0.0016405275091529],[0.037260744720697,0.010258123278618,0.022184059023857],[0.05777545273304,0.077147930860519,-0.038655895739794]],[[0.035681452602148,-0.045831419527531,-0.052869208157063],[-0.052138179540634,-0.0016584488330409,0.054679203778505],[0.027571998536587,0.066269621253014,0.1231215596199]],[[-0.018507093191147,-0.033111657947302,0.0028384518809617],[0.014687485992908,0.034696418792009,0.082615330815315],[-0.00089886563364416,0.019940020516515,0.013010581955314]],[[-0.039174154400826,0.0064695323817432,0.052510567009449],[-0.041427824646235,-0.0063820462673903,-0.02619300596416],[0.094632692635059,0.0020157874096185,0.05102090165019]],[[-0.02515428327024,-0.06172177568078,0.053023193031549],[0.066394008696079,0.041442789137363,-0.042522870004177],[-0.048324156552553,-0.038445953279734,0.014153600670397]],[[0.078195385634899,-0.03387288749218,-0.041587002575397],[1.3211121768109e-05,-0.0030265594832599,0.0034019420854747],[-0.032478462904692,-0.049977499991655,-0.054782032966614]],[[-0.011769075877964,-0.039863541722298,0.013955445960164],[0.018070952966809,-0.063023380935192,-0.0073631522245705],[-0.031866069883108,-0.047199454158545,-0.041598279029131]],[[0.010126288048923,0.052692547440529,-0.032491363584995],[0.059512764215469,-0.0088263982906938,-0.037687238305807],[0.06026478484273,0.038604650646448,0.063113331794739]],[[0.0064641409553587,0.053038660436869,-0.039218161255121],[0.051753494888544,-0.00047814514255151,0.12671907246113],[-0.020313184708357,-0.016218706965446,-0.02050874941051]],[[0.025703642517328,-0.025191303342581,0.021474048495293],[-0.02438853867352,-0.048229955136776,0.030748954042792],[0.046386282891035,-0.017993254587054,0.017980236560106]],[[0.10578816384077,0.015972796827555,0.041846878826618],[0.0078179016709328,0.034629978239536,-0.068854577839375],[-0.030606113374233,0.083865292370319,-0.06279806047678]],[[-0.042201060801744,0.086252078413963,0.0087338611483574],[-0.051786821335554,0.043940719217062,-0.067728571593761],[-0.01948787085712,-0.022743469104171,-0.030625399202108]],[[0.088621228933334,0.11705689132214,0.0085541000589728],[0.076372288167477,0.080193758010864,0.034807756543159],[0.02719334885478,0.063273295760155,0.044706646353006]],[[-0.018536426126957,0.016621641814709,0.025015162304044],[0.027233427390456,-0.062649436295033,0.035882640630007],[0.066626094281673,0.10558331012726,0.011843299493194]],[[-0.042546048760414,0.045502081513405,0.0094807622954249],[0.12715911865234,-0.084043011069298,0.023911425843835],[-0.015548847615719,-0.030087314546108,0.00072804733645171]],[[0.071680590510368,0.012616055086255,0.024285959079862],[-0.018184615299106,0.0078200791031122,0.025290705263615],[0.043577130883932,0.078490868210793,-0.025744900107384]],[[-0.0074856365099549,0.074847377836704,-0.040471564978361],[0.0065270978957415,-0.016618188470602,-0.041514113545418],[0.023138012737036,-0.0095306346192956,0.041003983467817]],[[-0.012079656124115,0.030003190040588,-0.037461649626493],[0.036205653101206,0.0080588469281793,0.0071298307739198],[0.086030222475529,0.013334427028894,-0.020533751696348]],[[-0.046484101563692,0.013395421206951,0.034115098416805],[-0.045052144676447,0.050248950719833,-0.056807592511177],[0.029504545032978,0.034929506480694,-0.031157834455371]],[[-0.0094853332266212,0.0027653854340315,-0.010832699015737],[-0.029700690880418,0.031212655827403,-0.0062528378330171],[-0.062819853425026,-0.13950276374817,-0.021744545549154]],[[0.052493527531624,-0.021172551438212,0.021304393187165],[-0.040755480527878,-0.094836793839931,0.0085609406232834],[0.010725261643529,0.014418059960008,0.041916992515326]],[[-0.009629562497139,0.023896170780063,0.044889781624079],[-0.011308247223496,0.054445024579763,0.05188812687993],[-0.066158175468445,-0.11882722377777,-0.038826189935207]],[[0.030076902359724,0.010207329876721,-0.0021813497878611],[0.04803467169404,0.023719001561403,-0.016299372538924],[0.014415870420635,-0.024130145087838,0.025244196876884]],[[-0.028040502220392,0.062558196485043,0.019208105280995],[-0.040292728692293,0.069558560848236,-0.066050469875336],[-0.027730947360396,-0.0068289721384645,-0.0080811567604542]],[[-0.012590626254678,-0.022264724597335,0.018461534753442],[0.023975336924195,0.054700814187527,-0.013891525566578],[0.013420127332211,0.025038160383701,-0.039564568549395]],[[-0.011904517188668,0.071694642305374,0.031104238703847],[0.03289520740509,0.042022608220577,-0.018750976771116],[0.11734567582607,-0.046012457460165,-0.00489955348894]],[[-0.010697465389967,0.087367631494999,-0.016424249857664],[0.027425130829215,-0.086435213685036,0.10362772643566],[0.0049931793473661,0.0029729285743088,0.023500649258494]],[[-0.032914888113737,0.070384137332439,0.026247229427099],[-0.031428586691618,-0.025866413488984,0.035652074962854],[-0.024090729653835,-0.001086255419068,0.01876406930387]],[[-0.030980614945292,0.041241899132729,0.031360968947411],[0.061475779861212,0.029648922383785,-0.040178168565035],[-0.036871038377285,0.07478854060173,-0.013370428234339]],[[0.029034186154604,-0.019889013841748,0.01166249345988],[-0.0050022983923554,-0.054215617477894,0.026441400870681],[-0.041647516191006,0.038477405905724,-0.072219252586365]],[[0.024821935221553,0.030254380777478,0.0059993234463036],[0.022985586896539,0.087257623672485,0.042175281792879],[-0.033735491335392,-0.009161782450974,0.063303157687187]],[[-0.081063516438007,-0.0023759137839079,0.0043058018200099],[-0.023960823193192,0.031290423125029,0.034189186990261],[-0.017365776002407,-0.0037118832115084,-0.074822105467319]],[[-0.025322504341602,0.022773012518883,-0.026837868615985],[0.027979647740722,0.013375823386014,-0.0041301157325506],[0.097316384315491,0.0033431418705732,0.028161108493805]],[[0.10338692367077,0.024133358150721,0.053262025117874],[0.069199316203594,-0.04028394818306,-0.022353388369083],[0.058527018874884,0.058223899453878,-0.0030154802370816]],[[-0.017770970240235,-0.0027522891759872,0.054650358855724],[-0.060571551322937,-0.058206643909216,0.017830034717917],[0.056597985327244,0.042217738926411,0.041752055287361]],[[-0.030253482982516,0.011319908313453,-0.0047676935791969],[-0.0092397443950176,-0.025480315089226,-0.0036137483548373],[0.095098659396172,0.05375861749053,-0.027440203353763]],[[0.01666521653533,0.032288730144501,0.047984324395657],[0.077165246009827,0.12245475500822,0.022036839276552],[0.013731234706938,0.037582825869322,0.04195449873805]],[[-0.023789770901203,0.022199204191566,-0.0073458142578602],[-0.039929494261742,0.053128000348806,-0.044463358819485],[0.034299176186323,0.044823098927736,0.081887617707253]],[[-0.054649617522955,-0.0072430027648807,0.028800133615732],[-0.044643484055996,0.034414738416672,-0.020291227847338],[0.056099183857441,0.010489519685507,0.049581315368414]],[[0.032864473760128,0.066420614719391,0.0021368893794715],[-0.028104592114687,-0.097276203334332,-0.044067297130823],[0.01012668479234,0.042250037193298,0.032030530273914]],[[0.026063375174999,0.0046372055076063,-0.044419169425964],[0.0035901353694499,0.018956068903208,0.034765023738146],[-0.03363699093461,-0.023438585922122,-0.053038857877254]],[[-0.00063162704464048,-0.036901291459799,0.071198433637619],[-0.049837917089462,0.022719230502844,-0.051795724779367],[0.15023140609264,0.077075429260731,-0.088539093732834]],[[0.073035605251789,-0.064785353839397,-0.034467112272978],[-0.037114091217518,-0.0031314559746534,0.068530559539795],[-0.015190619975328,-0.048418439924717,0.031966909766197]],[[0.087106786668301,-0.0456647798419,-0.018505461513996],[0.041856311261654,-0.031448047608137,-0.016663389280438],[0.0267094373703,-0.071795895695686,-0.062215071171522]],[[-0.052270840853453,0.01861365698278,0.0054051796905696],[0.040109235793352,-0.027789166197181,0.064848437905312],[0.017823493108153,-0.0090927286073565,0.038787476718426]],[[-0.068615205585957,-0.021554926410317,-0.092679768800735],[-0.0058582886122167,-0.037710975855589,-0.05851698294282],[-0.064294949173927,-0.010102291591465,-0.037066642194986]],[[0.0065467143431306,0.083563767373562,0.061854686588049],[0.00049474398838356,0.016330368816853,-0.036299765110016],[0.064885027706623,0.013092101551592,0.012909450568259]],[[-0.036220315843821,0.029219854623079,0.027206398546696],[-0.067013435065746,0.012624779716134,0.094604425132275],[0.079228103160858,-0.016222471371293,0.034255880862474]],[[-0.026590587571263,0.023854510858655,0.046682994812727],[0.042088352143764,-0.048078317195177,0.043278016149998],[0.013561394996941,-0.043275516480207,0.0098982006311417]],[[-0.064912587404251,-0.076050989329815,-0.028359079733491],[-0.05231112241745,0.044493794441223,-0.036822482943535],[-0.042936258018017,-0.13634850084782,-0.030491929501295]],[[0.065247736871243,0.015803636983037,0.036868382245302],[0.071098737418652,0.055303446948528,-0.031171469017863],[0.0721575319767,-0.042636726051569,0.03004152700305]],[[0.032104451209307,0.002987900050357,-0.012810016982257],[-0.034527540206909,-0.050095193088055,-0.05721665173769],[-0.08177775144577,-0.022632624953985,0.009522583335638]],[[-0.022762777283788,0.002332026604563,-0.034226331859827],[0.047337654978037,0.0061859390698373,-0.036099649965763],[-0.068243876099586,-0.016223099082708,-0.0086048617959023]],[[-0.00011731364065781,0.056446246802807,0.031414683908224],[-0.08243815600872,-0.051950372755527,0.028312446549535],[0.042474672198296,-0.10041426867247,-0.12878535687923]],[[-0.059612799435854,0.010082745924592,0.065620630979538],[0.030566830188036,-0.0036177183501422,0.017189040780067],[-0.042154062539339,-0.06804621219635,0.0060686455108225]],[[-0.053612358868122,-0.085105545818806,0.046917919069529],[-0.039419829845428,-0.077947914600372,0.062523029744625],[-0.022655369713902,-0.012287880294025,-0.1264912635088]],[[0.037228740751743,0.061628367751837,0.045220378786325],[-0.072333768010139,-0.00037432371755131,0.079106606543064],[0.077925398945808,0.006256059743464,0.043436247855425]],[[-0.01902518607676,0.090544201433659,0.013094740919769],[0.0077592236921191,0.039550364017487,0.022096188738942],[0.0040158932097256,0.036052744835615,-0.029090095311403]],[[-0.0057367468252778,0.025034265592694,-0.018823809921741],[-0.014907139353454,-0.051586955785751,0.081409431993961],[-0.0059267533943057,0.068722397089005,0.018810883164406]],[[0.026703013107181,-0.068542033433914,0.020143091678619],[-0.043148949742317,0.059797458350658,0.012787098996341],[-0.010893383063376,0.030875336378813,0.01709377579391]],[[-0.018309555947781,0.013451364822686,0.0062463907524943],[-0.079227291047573,-0.024993760511279,-0.13751448690891],[0.11260331422091,-0.024966048076749,0.043854080140591]],[[0.00081666989717633,-0.047324310988188,0.06374803185463],[-0.079928889870644,0.0074875359423459,-0.056353341788054],[0.0047732256352901,-0.05224709585309,0.065278239548206]],[[-0.056383471935987,0.006790088955313,0.070658273994923],[-0.035512305796146,0.036082901060581,-0.0060645998455584],[-0.0041175037622452,0.0039761350490153,-0.036314237862825]],[[-0.0045596258714795,0.01852972432971,-0.016621621325612],[0.068520732223988,-0.023712430149317,-0.0090730199590325],[0.03699017316103,0.0047080987133086,0.00011351184366504]],[[0.039302114397287,0.044284045696259,0.029957471415401],[-0.0061162388883531,0.0053237644024193,-0.046784199774265],[0.051093988120556,-0.051584824919701,-0.0086868377402425]],[[0.023622812703252,0.046925511211157,0.073208786547184],[-0.059529077261686,0.044442370533943,-0.061673317104578],[-0.033488102257252,-0.11414945870638,0.042153220623732]],[[-0.018297448754311,-0.0031146465335041,-0.061915561556816],[-0.071467012166977,-0.00054743327200413,0.052597515285015],[0.084629274904728,0.036833927035332,0.060682937502861]],[[0.060420975089073,0.02345840074122,-0.035979799926281],[-0.021810978651047,0.05579549074173,0.021101927384734],[0.03823883458972,0.044417176395655,0.0058094370178878]],[[-0.07659537345171,0.056034993380308,0.053706042468548],[-0.01305352896452,0.064140431582928,-0.024261789396405],[-0.025749797001481,0.014985146000981,-0.012572148814797]],[[0.019403260201216,-0.017023112624884,-0.01148717943579],[-0.086607649922371,-0.062241967767477,0.10552028566599],[0.043842736631632,-0.00056320067960769,-0.016646355390549]],[[-0.055358435958624,-0.015792164951563,0.04053270816803],[-0.045382551848888,-0.058527741581202,-0.023855920881033],[-0.0071043586358428,0.056454084813595,-0.098606169223785]],[[0.12138540297747,0.023161727935076,0.04077447578311],[0.0085676265880466,0.022982001304626,0.030661184340715],[0.12065067887306,0.12655101716518,0.051960945129395]],[[0.076242476701736,0.020076971501112,0.0046239895746112],[0.007802112493664,-0.01596318744123,-0.01913414336741],[-0.044925674796104,0.011634144000709,0.024640807881951]],[[-0.0096515668556094,-0.078229494392872,-0.038827084004879],[-0.064792849123478,-0.018143942579627,-0.048067454248667],[-0.074443332850933,-0.016738759353757,-0.03322359919548]],[[0.071322612464428,-0.056794509291649,0.037454076111317],[0.0027744483668357,0.015923477709293,0.010606433264911],[0.084388144314289,-0.061670891940594,0.099761717021465]],[[-0.027188934385777,-0.067661017179489,0.037861965596676],[-0.032746665179729,-0.017614806070924,0.026320300996304],[0.041802853345871,0.065416514873505,-0.0090118851512671]],[[-0.026677103713155,0.041155900806189,0.0072188912890851],[-0.021431906148791,0.017931122332811,0.0014428196009248],[0.075356468558311,0.025510352104902,0.041174087673426]],[[0.008871303871274,-0.018484344705939,-0.0034487384837121],[-0.10077518224716,0.00977264624089,0.0074677346274257],[-0.018513917922974,-0.017566841095686,0.0094858892261982]],[[-0.038244057446718,-0.074915058910847,-0.044754654169083],[0.012001771479845,-0.027634110301733,0.031642470508814],[0.12429021298885,0.0021940022706985,-0.011159253306687]],[[-0.05232111364603,0.032350942492485,-0.0062403911724687],[-0.10969264805317,0.001271431799978,-0.0050957091152668],[0.0087490333244205,0.044152326881886,-0.055925354361534]],[[0.013448148965836,-0.0024843432474881,-0.046593930572271],[0.033159077167511,-0.0030923362355679,0.049848351627588],[-0.032954692840576,-0.00020408787531778,0.0066566127352417]],[[0.036411065608263,-0.062345694750547,0.049399606883526],[-0.03572941198945,-0.0017470811726525,-0.066930778324604],[0.028991233557463,-0.025202738121152,-0.023223593831062]],[[0.065398260951042,0.060680534690619,0.071507401764393],[0.0040931603871286,-0.0083711631596088,0.090758286416531],[-0.01121202390641,0.022433081641793,0.060913268476725]],[[-0.022643124684691,0.040280438959599,0.063084177672863],[0.025735128670931,-0.016921123489738,-0.029180886223912],[0.10570402443409,0.0020709340460598,-0.024814341217279]],[[-0.045107986778021,-0.0017589315539226,-0.044659540057182],[0.0074329245835543,0.010439594276249,0.092474170029163],[0.010614139959216,0.021493932232261,0.025604983791709]],[[-0.016708645969629,-0.00274348561652,-0.079273238778114],[0.01094978954643,0.055911768227816,-0.04109251126647],[-0.011852038092911,0.08148629963398,0.00023742690973449]],[[-0.06311721354723,0.011429724283516,0.044050093740225],[-0.078651763498783,0.020696708932519,0.02063699439168],[0.039901942014694,0.089426524937153,-0.00040742452256382]],[[0.053800836205482,0.051128871738911,0.015363806858659],[-0.025873817503452,0.066759221255779,-0.0031139780767262],[0.016963278874755,-0.057221207767725,-0.033966887742281]],[[-0.077773965895176,-0.038886792957783,-0.034136939793825],[-0.011256139725447,0.0029386263340712,-0.028051132336259],[0.0072017023339868,0.014367366209626,0.019776171073318]],[[-3.1994517485145e-05,-0.0099594108760357,-0.033123049885035],[0.027866819873452,0.0044767968356609,-0.037190586328506],[0.002332811942324,0.040348950773478,-0.025898721069098]],[[-0.013001563958824,-0.0025380461011082,0.012332731857896],[-0.05147847533226,0.00018637214088812,0.0080106491222978],[0.032378192991018,0.018405329436064,-0.060923606157303]],[[0.022408682852983,0.027176108211279,-0.0080312667414546],[-0.016738338395953,-0.030302874743938,0.0089801028370857],[0.062444768846035,0.02818619646132,0.033217448741198]],[[-0.011069783940911,-0.009647904895246,0.0074910819530487],[-0.03568073362112,-0.046620290726423,0.0041072489693761],[0.0091666262596846,-0.016549138352275,0.023012090474367]],[[-0.018225954845548,-0.012184147723019,0.04754863679409],[0.031373422592878,-0.050549637526274,-0.020965576171875],[0.019821422174573,0.011175631545484,-0.065588533878326]],[[0.0049090785905719,0.019338881596923,-0.11800356954336],[0.047613386064768,0.081952765583992,-0.070536702871323],[-0.014829024672508,-0.015104321762919,-0.018295867368579]],[[-0.037647560238838,0.0086475228890777,0.073808141052723],[0.033787723630667,-0.027447454631329,-0.020509639754891],[0.032937962561846,0.036066919565201,-0.012504636310041]],[[0.062750712037086,0.014445989392698,0.080070495605469],[0.00018699474458117,0.0069319079630077,0.083631001412868],[-0.06531947851181,-0.030275488272309,-0.064044900238514]],[[-0.054668847471476,-0.0021758184302598,0.077935338020325],[0.027448669075966,-0.014888198114932,-0.034335914999247],[-0.019241949543357,0.019996011629701,-0.027408752590418]]],[[[-0.21067917346954,-0.045900262892246,0.047499872744083],[0.021961186081171,0.032583862543106,0.035178322345018],[-0.0012890594080091,0.099987216293812,0.063208624720573]],[[0.051283553242683,-0.025403367355466,-0.021753238514066],[-0.033456552773714,-0.0038185263983905,0.052001759409904],[0.0071862326003611,-0.12498852610588,0.020789552479982]],[[-0.043079867959023,0.041210893541574,-0.028178738430142],[0.019546886906028,0.038888923823833,0.0067573115229607],[0.04896143078804,-0.042965844273567,0.019667165353894]],[[0.0015839138068259,0.076566390693188,-0.090586550533772],[0.047048799693584,0.085343696177006,-0.035039871931076],[0.0082587692886591,-0.0050770714879036,-0.017195079475641]],[[-0.044635146856308,-0.053920868784189,-0.0050332993268967],[-0.026461709290743,0.076757505536079,0.027566786855459],[0.034652154892683,-0.012678760103881,0.033661097288132]],[[0.0013467416865751,0.018213801085949,-0.031414683908224],[0.0033413418568671,0.057685632258654,-0.085447184741497],[-0.0076187970116735,0.032378114759922,0.070275701582432]],[[-0.00036842012195848,0.0040732584893703,-0.01278293132782],[0.029297057539225,-0.003301250282675,0.020408106967807],[-0.020209215581417,0.062415350228548,-0.045860558748245]],[[0.012310818769038,-0.059278395026922,-0.00070860848063603],[-0.056007452309132,0.070597507059574,-0.025501890107989],[-0.00018201471539214,-0.05340613052249,-0.026142001152039]],[[-0.053215581923723,-0.044897343963385,0.065112844109535],[0.051834776997566,0.077406153082848,-0.032700955867767],[-0.05419410020113,0.0072535243816674,-0.02111485786736]],[[0.0519301854074,0.0037988584954292,-0.024450346827507],[0.10829945653677,-0.047737874090672,-0.050340238958597],[-0.011913997121155,-0.0015079753939062,0.014819929376245]],[[0.03130341693759,0.015534922480583,-0.0087708337232471],[-0.019564447924495,0.013697193935513,0.020764879882336],[0.079278416931629,-0.032691400498152,-0.011324874125421]],[[0.008639220148325,0.033271722495556,-0.0069692949764431],[0.066952653229237,-0.026908732950687,-0.0034367693588138],[0.062170471996069,-0.022957364097238,0.030741510912776]],[[0.00099341850727797,0.037437349557877,0.0059087374247611],[0.07734888792038,-0.057918772101402,-0.068529114127159],[-0.020879965275526,0.13255326449871,0.07860029488802]],[[0.035166725516319,0.098220936954021,0.019505964592099],[-0.013214127160609,-0.015019910410047,0.035512305796146],[0.022334307432175,-0.011842236854136,0.058589454740286]],[[0.017485350370407,0.02505555190146,-0.038095351308584],[0.018625177443027,0.017641138285398,0.018290026113391],[-0.033102490007877,-0.016293108463287,0.0068413163535297]],[[0.013277652673423,0.044227853417397,0.022805422544479],[0.0129609182477,0.032581374049187,0.058813452720642],[-0.057412497699261,-0.10742880403996,-0.048542257398367]],[[0.0041367374360561,-0.042214509099722,0.053970903158188],[0.083204366266727,0.026878254488111,0.023257382214069],[-0.0079186577349901,-0.00228834990412,0.00072277901927009]],[[0.00046570069389418,-0.017058942466974,-0.0097212838009],[0.071577928960323,-0.021906822919846,-0.041235264390707],[0.007261274382472,0.0069817621260881,-0.00025584985269234]],[[-0.047196883708239,0.04656333476305,-0.026463385671377],[-0.030274156481028,0.093011401593685,-0.022963874042034],[0.030633384361863,-0.022531410679221,0.022302702069283]],[[0.11933736503124,-0.05358225107193,-0.039283018559217],[0.094642028212547,-0.035915907472372,-0.025801068171859],[0.038111135363579,0.072438895702362,-0.0024825336877257]],[[-0.016460612416267,-0.0013627201551571,0.0017194850370288],[-0.054573848843575,0.029407909139991,0.11503887176514],[0.038008473813534,0.041622243821621,0.014901061542332]],[[0.065407641232014,0.040934361517429,-0.011763914488256],[-0.078778132796288,-0.028092628344893,0.0040253917686641],[-0.06609208136797,0.012262185104191,-0.010752589441836]],[[-0.022827574983239,0.043122678995132,0.047978207468987],[0.057129207998514,0.019995769485831,0.11368314176798],[-0.023490665480494,0.037022475153208,0.02369019575417]],[[-0.073436729609966,-0.015000419691205,-0.013197698630393],[-0.037515081465244,0.078466556966305,0.0012813466601074],[-0.088919393718243,-0.01235201023519,-0.00097536901012063]],[[0.026430726051331,-0.016408426687121,0.00076790881576017],[-0.0098477508872747,0.046822637319565,0.073513686656952],[-0.049898721277714,-0.037674184888601,0.012853930704296]],[[-0.011794129386544,-0.0010284687159583,0.021087786182761],[-0.0052006761543453,0.015899894759059,0.079274989664555],[-0.010495448485017,0.015420304611325,0.037000816315413]],[[-0.037301268428564,0.00035465203109197,0.0023513070773333],[0.047321114689112,0.041184317320585,0.054274965077639],[-0.037280756980181,0.080083139240742,0.042814418673515]],[[-0.047179143875837,0.11737529188395,-0.02390705794096],[-0.0093446634709835,-0.025242373347282,0.029558209702373],[0.038075562566519,-0.0050462167710066,-0.037236917763948]],[[0.010201203636825,0.06198101863265,0.001246124622412],[-0.075429201126099,-0.080106198787689,0.075292594730854],[-0.0010311362566426,-0.028907429426908,-0.030262123793364]],[[0.029320728033781,-2.1925701730652e-05,-0.0090714991092682],[0.022199029102921,-0.059346616268158,0.05041291192174],[-0.023311741650105,-0.0030595869757235,0.039105579257011]],[[0.031069407239556,-0.018815679475665,0.037541594356298],[0.041827894747257,0.0049015074037015,-0.059752237051725],[0.015369067899883,-0.030589956790209,0.029422521591187]],[[-0.04301967844367,0.058015409857035,0.043774902820587],[0.066351629793644,0.028963839635253,0.0023440141230822],[0.093885704874992,0.038708429783583,0.0074045173823833]],[[-0.052475973963737,-0.012674276717007,-0.07182502001524],[-0.020429683849216,0.050161704421043,-0.010447443462908],[-0.012542543001473,0.041484620422125,0.086475305259228]],[[0.0072578103281558,0.0042353835888207,0.0098288133740425],[-0.050319649279118,0.010968187823892,0.0058799469843507],[0.01941617205739,0.017135180532932,0.0066161663271487]],[[0.060391090810299,0.026825727894902,-0.031948745250702],[0.071842327713966,0.0011061173863709,-0.0068931705318391],[-0.10616487264633,-0.078321650624275,0.081421218812466]],[[-0.011251089163125,0.039767157286406,-0.0084786014631391],[-0.025971507653594,0.092240877449512,-0.016549041494727],[-0.078814402222633,0.1178812906146,0.047472804784775]],[[-0.010900987312198,-0.024074014276266,-0.044034145772457],[-0.1135384067893,-0.00522899068892,0.054341685026884],[0.056964576244354,0.12964531779289,0.080127827823162]],[[-0.048123210668564,-0.01678866147995,-0.026556501165032],[-0.037180304527283,0.026064660400152,-0.054705392569304],[0.039262544363737,0.033222235739231,-0.012581542134285]],[[-0.018738215789199,0.036261893808842,-0.053374886512756],[-0.014872581698,0.010623143054545,0.019959377124906],[-0.022599909454584,0.028062120079994,-0.037341181188822]],[[0.043935339897871,0.022186366841197,0.017114384099841],[0.018272528424859,-0.033138141036034,0.0090261427685618],[0.0042988178320229,0.028481716290116,-0.032976090908051]],[[0.066356912255287,0.017632642760873,0.026953397318721],[0.0092041110619903,-0.045704148709774,-0.061467073857784],[-0.037502016872168,0.01843473315239,0.040429495275021]],[[0.010025090537965,-0.06364231556654,0.066351793706417],[0.013624203391373,0.0084700686857104,-0.005113132763654],[0.0086151724681258,-0.075767613947392,0.010852450504899]],[[-0.021503394469619,-0.05011185631156,-0.025569664314389],[-0.053189728409052,0.0036143192555755,-0.0013428669190034],[0.022226978093386,0.026576863601804,0.010372313670814]],[[-0.030455840751529,-0.0032221218571067,-0.063107848167419],[0.050169065594673,0.043484535068274,-0.085798546671867],[0.02212561480701,-0.0068636243231595,0.055055879056454]],[[-0.076125003397465,0.031703654676676,-0.012391738593578],[-0.0733522772789,0.051589071750641,-0.027353746816516],[-0.043786209076643,0.0091950111091137,0.027742994949222]],[[0.035151246935129,-0.030850652605295,-0.023310158401728],[0.0097340578213334,0.021517870947719,0.022076597437263],[-0.007925970479846,0.0061707999557257,0.042478304356337]],[[0.010924932546914,0.021628558635712,0.018869590014219],[0.033803295344114,-0.01122557092458,0.00067295844200999],[-0.035216614603996,0.036651130765676,-0.037859249860048]],[[0.016499256715178,0.020027384161949,-0.084841653704643],[-0.038960758596659,0.020697129890323,0.066457234323025],[-0.015877153724432,-0.10430685430765,-0.031648185104132]],[[-0.043173342943192,0.023074209690094,0.014499394223094],[0.0072842701338232,0.098319612443447,0.019260603934526],[0.0041022151708603,0.069551877677441,0.025408677756786]],[[-0.013773354701698,0.05229439586401,-0.034246668219566],[0.013492790982127,0.10092066973448,-0.065715081989765],[-0.092453770339489,-0.0013888739049435,-0.022862834855914]],[[-0.011055230163038,0.027230577543378,0.0063748639076948],[-0.0091589828953147,0.020826771855354,-0.016554035246372],[0.057634718716145,0.066415496170521,0.038425613194704]],[[0.017483612522483,-0.037796135991812,0.026114696636796],[-0.015241242013872,0.030757319182158,-0.03789871931076],[-0.02275769226253,-0.02203705906868,0.029239824041724]],[[-0.010044163092971,-0.034297451376915,0.026018645614386],[0.052396383136511,-0.028762316331267,0.11203830689192],[-0.037397433072329,0.0083771087229252,0.04492000862956]],[[0.0052739749662578,0.013327610678971,-0.075544431805611],[0.05303318798542,0.051899880170822,-0.0061516351997852],[0.064784921705723,-0.026218691840768,0.060565158724785]],[[-0.031446892768145,-0.011116803623736,0.03167188167572],[-0.016810212284327,0.057419564574957,0.040904216468334],[-0.020009059458971,-0.020551400259137,0.00068153033498675]],[[-0.085417903959751,0.022294905036688,0.047545567154884],[-0.011677392758429,0.12204378843307,0.035934936255217],[0.081048794090748,0.06491993367672,0.0039109326899052]],[[-0.0080344062298536,0.084767207503319,0.039469368755817],[0.011522217653692,-0.021115189418197,-0.009679364040494],[0.0060674212872982,-0.039274718612432,-0.031326625496149]],[[-0.041279539465904,0.0077299517579377,0.002387608634308],[0.032464854419231,0.04198232665658,0.027997290715575],[0.078982174396515,0.0089439051225781,0.037278808653355]],[[0.054493580013514,0.022011818364263,0.014439738355577],[-0.023655930534005,-0.024756716564298,0.0078566139563918],[0.066179774701595,-0.0099145993590355,-0.029791167005897]],[[0.033145356923342,0.038911614567041,0.053297787904739],[-0.0052772276103497,-0.065255515277386,-0.078660100698471],[-0.081389769911766,0.055171351879835,0.049056056886911]],[[0.023977570235729,-0.026456277817488,0.033362150192261],[0.040563441812992,0.071020044386387,0.015147123485804],[-0.12153332680464,0.033028475940228,0.049843087792397]],[[0.040509652346373,-0.017259953543544,0.013892687857151],[-0.018944922834635,-0.025846166536212,0.025242077186704],[-0.04258555918932,-0.037603545933962,-0.036548413336277]],[[-0.048310916870832,0.043355099856853,0.0039955438114703],[-0.016534771770239,0.025749614462256,-0.046642851084471],[0.031798548996449,0.014543687924743,0.053752407431602]],[[0.0088983215391636,0.0069829039275646,-0.018900752067566],[-0.03644872456789,0.030858788639307,0.020692493766546],[0.020973959937692,0.037320926785469,-0.040423352271318]],[[0.01790245808661,-0.0035732795950025,0.002169051906094],[-0.0064050983637571,0.0049398234114051,0.0031165978871286],[-0.040011938661337,0.04856026917696,0.07486654818058]],[[0.064378872513771,0.036317177116871,0.042053636163473],[-0.064067140221596,-0.018574636429548,-0.014387604780495],[0.052597213536501,-0.056459505110979,0.036154221743345]],[[-0.047494456171989,-0.010204697027802,-0.028897069394588],[0.041600178927183,-0.044079270213842,0.035279836505651],[0.0073893093504012,0.018282866105437,0.081886999309063]],[[0.027464281767607,-0.018944948911667,-0.026338163763285],[0.044990431517363,0.0060761175118387,0.031232142820954],[0.059785056859255,-0.026256630197167,-0.0018117432482541]],[[0.0049611735157669,-0.002045568311587,-0.010410916991532],[0.023801498115063,-0.013383595272899,0.036777395755053],[-0.038240544497967,0.060710180550814,0.023303987458348]],[[0.0087004359811544,-0.050592321902514,-0.024736613035202],[0.10325503349304,0.036965392529964,-0.0095984311774373],[-0.026781899854541,-0.0097014168277383,-0.012382116168737]],[[0.0068324389867485,-0.022389786317945,-0.0051841763779521],[0.0094464384019375,0.030258771032095,0.0073241563513875],[-0.059094272553921,-0.01729397661984,0.021403022110462]],[[0.013829372823238,0.027634562924504,0.038604509085417],[-0.018483735620975,-0.077747389674187,0.021962145343423],[0.015620303340256,0.096701413393021,0.018289811909199]],[[-0.0076630255207419,0.06435489654541,0.010372800752521],[0.032527681440115,-0.057760316878557,-0.017526760697365],[0.028345094993711,0.087838135659695,-0.0014131374191493]],[[-0.073658101260662,0.082411050796509,-0.037938959896564],[-0.032578986138105,0.041339408606291,0.027420273050666],[0.0077724009752274,-0.012175208888948,0.0059666442684829]],[[-0.077848568558693,-0.089612938463688,0.077815480530262],[-0.030841274186969,0.13402856886387,-0.038187634199858],[-0.064090333878994,0.076108291745186,0.073040142655373]],[[0.0094952704384923,-0.010925743728876,-0.023815114051104],[0.022339196875691,0.067783869802952,0.010971317999065],[0.06205041706562,0.016945047304034,-0.035866983234882]],[[0.073928885161877,-0.037780474871397,0.012362099252641],[0.016262406483293,-0.017307350412011,-0.012653280980885],[0.035488642752171,-0.0058808568865061,0.011825404129922]],[[-0.015405721962452,0.14540795981884,0.053639482706785],[0.063999205827713,0.047450970858335,-0.044625878334045],[0.0076584718190134,-0.089665465056896,-0.1277838498354]],[[0.0036758959759027,0.012948770076036,0.054730512201786],[-0.025190798565745,0.0031746029853821,-0.012254315428436],[-0.019152790307999,-0.001145260524936,-0.003951798658818]],[[0.031621962785721,-0.10385110974312,0.015440036542714],[0.033085398375988,-0.008406687527895,-0.054011046886444],[-0.037110690027475,0.048844985663891,0.018534049391747]],[[0.088893502950668,0.05011784657836,0.05408389121294],[0.038463085889816,0.012859182432294,-0.023675281554461],[-0.023832054808736,0.054232716560364,-0.052736282348633]],[[0.010555947199464,-0.0038191752973944,0.023369628936052],[-0.046596724539995,-0.0028605021070689,0.033756237477064],[-0.037557661533356,-0.0316032320261,0.020781898871064]],[[-0.05019798129797,0.064493544399738,0.094658121466637],[0.043538887053728,0.020619856193662,0.052493721246719],[0.031216433271766,0.023380288854241,0.011899348348379]],[[0.019389072433114,0.024214351549745,0.037428181618452],[0.020951934158802,0.012806067243218,-0.04807872325182],[0.060067139565945,-0.022262178361416,0.00081302097532898]],[[0.025677600875497,0.059773534536362,-0.0026292658876628],[-0.071587264537811,0.053190607577562,-0.066881328821182],[0.0045747440308332,-0.065970733761787,-0.035032283514738]],[[0.0019341418519616,0.059118378907442,0.011182786896825],[0.079614706337452,0.020543599501252,-0.082138322293758],[0.076677344739437,0.067192859947681,-0.022744726389647]],[[0.0047705797478557,0.048199594020844,0.041685998439789],[0.00048017074004747,0.0035931547172368,0.027905834838748],[-0.018280221149325,0.05066966637969,-0.013816083781421]],[[-0.032979100942612,0.021931177005172,0.015994280576706],[-0.021098202094436,-0.026732042431831,-0.039569661021233],[0.038753673434258,-0.0028859488666058,-0.00059309502830729]],[[-0.013245010748506,0.028046192601323,0.04799384996295],[0.02006078697741,-0.090316817164421,-0.018593247979879],[0.05320767685771,-0.054912257939577,0.073788687586784]],[[-0.01708634570241,0.04188821464777,-0.014862017706037],[0.0054919645190239,0.025213019922376,-0.0016575511544943],[-0.042875315994024,0.061203323304653,-0.030800467357039]],[[0.033740930259228,0.03304298222065,0.057974305003881],[0.013598328456283,0.008998523466289,-0.040122378617525],[-0.059004884213209,0.028986735269427,0.065521396696568]],[[-0.01932623423636,-0.024545483291149,0.049899008125067],[-0.060563985258341,0.065209068357944,0.040795259177685],[-0.072297640144825,0.067274384200573,0.050107218325138]],[[0.015567029826343,0.015108593739569,0.010932065546513],[0.07129929959774,-0.02032888494432,0.044618308544159],[-0.013714413158596,0.051656909286976,0.083679623901844]],[[-0.0080481311306357,0.027154270559549,-0.015892907977104],[-0.064981490373611,0.027785606682301,-0.058246601372957],[-0.013886674307287,-0.010634571313858,0.032475784420967]],[[0.005353239364922,0.045288279652596,-0.014123131521046],[0.064039893448353,-0.027321325615048,0.0007569087902084],[-0.053953502327204,-0.033190108835697,-0.017833972349763]],[[0.023747734725475,0.037223976105452,0.024841004982591],[-0.050396785140038,0.017285920679569,-0.0059647997841239],[-0.031175963580608,0.019551603123546,-0.035518649965525]],[[0.080422580242157,0.0080715455114841,0.0032736340072006],[0.0067880656570196,-0.039419386535883,-0.0093910545110703],[-0.030770480632782,-0.0079478891566396,0.032996598631144]],[[-0.01242227293551,-0.026700340211391,0.010295919142663],[0.05263015627861,0.011131357401609,0.035084422677755],[0.068704389035702,-0.0073601533658803,0.069915384054184]],[[-0.016162920743227,0.077590629458427,0.048191759735346],[-0.024685645475984,-0.012790629640222,-0.040172066539526],[-0.039434671401978,-0.025995828211308,0.0079940082505345]],[[-0.024679021909833,0.041449122130871,-0.0068010403774679],[-0.018746258690953,-0.0085986508056521,0.084105744957924],[-0.015408867038786,-0.0093270093202591,-0.014210670255125]],[[0.0012980459723622,0.0036940483842045,-0.03014787659049],[-0.028124574571848,-0.041886381804943,-0.093865379691124],[0.048054154962301,-0.014179167337716,-0.0082785459235311]],[[-0.039665751159191,0.030408913269639,0.02445319481194],[0.023411128669977,-0.031198291108012,0.012616471387446],[0.01771717146039,-0.045515120029449,0.00079947046469897]],[[0.05998370051384,-0.057278670370579,0.012087351642549],[0.096442617475986,-0.022753436118364,0.0076110600493848],[-0.070487320423126,-0.027074232697487,0.060794085264206]],[[-0.036870490759611,-0.093097664415836,0.0047170901671052],[0.024858424440026,0.057827744632959,-0.069826729595661],[0.010262535884976,-0.03796598315239,0.085771851241589]],[[-0.070645079016685,-0.075081489980221,0.014699883759022],[-0.043765615671873,-0.0075322729535401,0.0052774716168642],[0.032346069812775,0.036049883812666,0.097722411155701]],[[-0.0072208559140563,0.028842365369201,-0.059912327677011],[-0.0010226389858872,-0.030464679002762,0.052552085369825],[-0.0062342677265406,-0.092886298894882,-0.01096389722079]],[[0.023730596527457,-0.016855001449585,-0.042469222098589],[-0.072437956929207,0.053498685359955,-0.095552667975426],[0.010822053998709,0.047835864126682,-0.032805684953928]],[[-0.024122677743435,0.012172390706837,-0.055384695529938],[0.039842620491982,0.025796623900533,0.069327622652054],[0.057963024824858,0.015648426488042,-0.018234550952911]],[[0.023967456072569,0.012499346397817,-0.028900006785989],[0.038634363561869,0.057104371488094,-0.02326101064682],[0.0073194466531277,0.014237526804209,-0.015909729525447]],[[0.038921557366848,0.018310589715838,0.0079884100705385],[0.013685436919332,0.0053125154227018,0.080958619713783],[0.049763228744268,-0.027393819764256,0.11082498729229]],[[-0.027563998475671,-0.0053598643280566,-0.041626773774624],[-0.046655155718327,-0.081545442342758,0.025879738852382],[-0.083306364715099,-0.016574738547206,0.00045910940389149]],[[-0.016785506159067,-0.0040560672059655,-0.00073741551022977],[0.005993377417326,0.0093373320996761,0.057156648486853],[0.029254687950015,0.027738656848669,0.037730753421783]],[[-0.013794532977045,0.080290839076042,0.039947308599949],[0.046094868332148,0.011561373248696,0.029679438099265],[0.093267448246479,-0.054434631019831,0.029467944055796]],[[-0.0080550750717521,0.058021973818541,0.010748443193734],[-0.0398258715868,0.014374600723386,0.0010596435749903],[0.013616714626551,-0.0028794128447771,-0.037447649985552]],[[-0.015219169668853,-0.054520841687918,-0.013373427093029],[0.035542711615562,0.080066911876202,0.034740578383207],[0.023785509169102,0.011095327325165,-0.020716037601233]],[[-0.031623546034098,0.013902357779443,-0.0055397069081664],[-0.018448062241077,0.068298518657684,-0.050326623022556],[0.043131295591593,-0.025782149285078,0.060418456792831]],[[-0.004207662306726,0.0015962553443387,0.017529787495732],[-0.059590104967356,0.0024242997169495,-0.035441644489765],[-0.00087273749522865,0.084825970232487,-0.058058749884367]],[[0.077408514916897,0.020412497222424,-0.068067342042923],[0.022367695346475,0.041665554046631,-0.038608551025391],[0.012492335401475,0.10758108645678,0.016330152750015]],[[-0.014054448343813,0.0035402630455792,-0.01883733831346],[0.008448832668364,-0.060079913586378,-0.029113868251443],[-0.0095374528318644,0.090133339166641,0.0028950923588127]],[[0.03827965259552,-0.12790855765343,-0.002098178723827],[0.097989231348038,-0.11044079065323,-0.037125743925571],[0.049017868936062,-0.073154769837856,0.015363411977887]],[[-0.0035576487425715,0.045069489628077,0.010010818950832],[0.016944291070104,0.019104946404696,-0.061993043869734],[0.063442878425121,0.054109923541546,-0.092536777257919]],[[0.011811019852757,-0.009955370798707,0.048782248049974],[-0.034993268549442,-0.061756558716297,0.0059092487208545],[0.079487644135952,0.0094018410891294,-0.038930419832468]],[[0.0079891514033079,-0.040327779948711,-0.014615728519857],[-0.053723931312561,0.019660165533423,0.019167887046933],[0.049739271402359,0.03000838495791,0.032421160489321]],[[0.054409366101027,-0.051668353378773,0.041199006140232],[0.036673735827208,0.089065827429295,0.038686331361532],[0.04484586045146,0.0141940722242,0.029699685052037]],[[-0.059068240225315,-0.016282077878714,0.0014843126991764],[-0.03233078867197,0.017480814829469,0.0090967733412981],[-0.07045567035675,0.017803786322474,0.021998014301062]],[[-0.046558149158955,-0.058031927794218,0.068228654563427],[0.04283644631505,-0.035826794803143,0.07436615228653],[-0.01564459502697,0.05621886998415,-0.0096505489200354]],[[0.040402326732874,-0.010977777652442,0.025108009576797],[0.046698741614819,0.046496756374836,-0.0099796103313565],[-0.02418177947402,-0.0018850791966543,-0.079831071197987]],[[0.057462625205517,0.051693044602871,-0.023243121802807],[-0.016253439709544,-0.066099882125854,-0.014808624051511],[-0.088001012802124,0.036503367125988,0.082522705197334]]],[[[0.010223864577711,0.01809967122972,-0.075128771364689],[0.067240029573441,0.00061045156326145,0.018128508701921],[0.0025037131272256,-0.016910910606384,-0.066297076642513]],[[0.0072375545278192,0.057487197220325,-0.029896670952439],[0.0028142957016826,0.038240291178226,-0.006351653020829],[0.0042358725331724,0.060973558574915,-0.019061056897044]],[[-0.017839273437858,-0.026744063943624,-0.033475738018751],[0.056195911020041,-0.014816860668361,-0.0038086017593741],[-0.016851048916578,-0.02181982062757,-0.026602681726217]],[[-0.018492370843887,0.0095182433724403,0.085065491497517],[0.0051199644804001,0.016033954918385,-0.01009626686573],[-0.043365698307753,-0.058681074529886,-0.047106314450502]],[[0.029060505330563,-0.0036161076277494,0.031530424952507],[0.0096554895862937,0.092256158590317,-0.037860501557589],[0.037625275552273,-0.02601432800293,0.026291588321328]],[[-0.011628086678684,0.10801939666271,-0.068245559930801],[-0.037652093917131,0.028988663107157,-0.045977156609297],[0.0068882014602423,0.041111703962088,-0.035112552344799]],[[-0.022699348628521,0.010302487760782,0.06161055341363],[0.033721938729286,0.029311856254935,0.038298811763525],[0.026039971038699,-0.02864421531558,0.015369202941656]],[[0.042751800268888,0.02765585295856,-0.030352208763361],[0.048147320747375,0.060120265930891,-0.076544098556042],[-0.026356460526586,-0.035362020134926,-0.080843068659306]],[[0.0088794762268662,0.0064987745136023,0.041268523782492],[0.0042533967643976,-0.10471469908953,0.023220615461469],[-0.08040689677,0.0016648357268423,0.053716856986284]],[[0.01438694447279,-0.011585417203605,0.026128448545933],[-0.0063065467402339,0.046449720859528,-0.066699028015137],[-0.012044491246343,-0.0017672096146271,0.031637538224459]],[[-0.052820321172476,0.027221698313951,-0.035882700234652],[0.0016476397868246,0.0012646488612518,-0.017474504187703],[0.031879417598248,-0.01448193192482,-0.036304615437984]],[[-0.029633866623044,0.021311685442924,0.0034343705046922],[-0.021893359720707,-0.027622690424323,-0.0073089706711471],[-0.03203346580267,-0.037394598126411,0.11138271540403]],[[0.020222287625074,0.024186123162508,-0.020705951377749],[0.018575416877866,0.030186971649528,0.0015956804854795],[0.054038930684328,-0.051759537309408,-0.08967799693346]],[[0.034996554255486,-0.012856234796345,0.020662540569901],[0.044813092797995,-0.069661259651184,-0.0040294341742992],[0.040759149938822,-0.023855227977037,-0.013550847768784]],[[-0.00096930621657521,0.055529709905386,-0.035337820649147],[0.031508881598711,-0.0020597521215677,0.06079201027751],[0.027952531352639,-0.012289081700146,-0.042926579713821]],[[-0.032955802977085,-0.041149586439133,-0.0052960813045502],[0.026624804362655,-0.034182474017143,0.028952140361071],[0.019224517047405,0.045695450156927,-0.0098237777128816]],[[-0.046965517103672,-0.034191388636827,-0.069082908332348],[0.02904593385756,0.023561058565974,-0.03779911249876],[-0.00084314617561176,-0.054103005677462,0.035326674580574]],[[0.050127521157265,-0.011962887831032,-0.029020842164755],[-0.041285250335932,0.11639618128538,-0.035642839968204],[-0.022597897797823,0.02601283416152,0.044785019010305]],[[-0.024678947404027,0.050343155860901,0.0068029281683266],[-0.0066139381378889,-0.020108470693231,-0.072689197957516],[-0.033657729625702,-0.055262189358473,0.037865474820137]],[[0.030858060345054,-0.085641130805016,0.00044131872709841],[0.080216281116009,0.0068185478448868,-0.067431204020977],[-0.040825501084328,-0.020841412246227,0.016624365001917]],[[0.040686160326004,-0.0015308115398511,0.0026107302401215],[-0.0054273060522974,-0.039304997771978,0.059420924633741],[-0.043074656277895,0.0069994651712477,-0.0096717467531562]],[[0.023437444120646,-0.016896920278668,0.032289419323206],[-0.061520457267761,0.0021404577419162,-0.023842150345445],[0.070872887969017,-3.3338808862027e-05,-0.0042781722731888]],[[-0.043173920363188,0.012509769760072,-0.10002084821463],[-0.086080610752106,0.059545043855906,0.058718379586935],[-0.078636303544044,-0.040043316781521,-0.0086256312206388]],[[0.021194344386458,-0.031505048274994,-0.050944328308105],[0.021119395270944,0.08697722107172,0.032818861305714],[0.087446719408035,-0.1141205355525,-0.0052067101933062]],[[0.027693478390574,0.016647698357701,0.043349459767342],[-0.030322084203362,-0.047985289245844,-0.034438770264387],[0.032771829515696,-0.015060810372233,-0.009424950927496]],[[-0.025362093001604,0.060666866600513,-0.017936902120709],[0.0078522562980652,-0.0054302266798913,-0.038483608514071],[0.012090815231204,-0.10183629393578,-0.041730985045433]],[[0.02640607394278,-0.0031862994655967,0.051349729299545],[0.11042363941669,-0.033490993082523,-0.017751840874553],[-0.012015824206173,-0.033730242401361,0.0078473221510649]],[[0.0023613190278411,-0.0091755921021104,-0.10884623229504],[-0.061095263808966,-0.019429657608271,0.014695862308145],[0.037719760090113,0.01684227399528,-0.014627926051617]],[[0.029262138530612,0.081024706363678,-0.035532228648663],[0.065727517008781,0.043483305722475,0.03060869127512],[-0.039334744215012,-0.036606222391129,-0.0014156847028062]],[[0.04470606893301,0.016269093379378,0.00081854540621862],[-0.0093316994607449,0.050260540097952,0.043201610445976],[-0.056471962481737,-0.021190075203776,0.056977391242981]],[[0.030402775853872,0.041118886321783,0.02547125890851],[-0.034783154726028,0.003122387919575,-0.024514872580767],[0.022955680266023,0.025770420208573,0.011226180009544]],[[0.014015081338584,-0.041168197989464,-0.011704036034644],[0.037859942764044,0.021167479455471,0.028242066502571],[-0.02444913238287,0.036361318081617,0.015000376850367]],[[-0.038538865745068,0.023546328768134,0.007566552143544],[0.01130152028054,-0.04450823739171,0.024662114679813],[-0.0045635499991477,0.10764847695827,0.013925223611295]],[[-0.037923987954855,0.0066488310694695,0.046434819698334],[0.060710620135069,0.047235127538443,-0.0037052256520838],[0.045543793588877,-0.052999053150415,-0.062848135828972]],[[-0.010115026496351,-0.023829208686948,-0.06165998056531],[0.023571845144033,-0.0091155357658863,-0.028428139165044],[-0.0018403641879559,-0.025354254990816,0.046803172677755]],[[0.023421131074429,-0.0057069384492934,0.0059813805855811],[0.019683538004756,-0.018232051283121,0.033202458173037],[0.049833945930004,-0.00028266513254493,0.016925651580095]],[[-0.037009675055742,0.0051885265856981,-0.010956763289869],[0.0020264890044928,0.022726263850927,0.01885780133307],[0.014792589470744,0.021539609879255,0.061504196375608]],[[0.012055862694979,-0.092903204262257,-0.073665365576744],[0.0060951225459576,0.036838352680206,0.021418130025268],[0.02537608705461,-0.015449614264071,-0.047771960496902]],[[0.070578791201115,0.02681240811944,0.036771282553673],[0.062527284026146,0.096772387623787,0.041391380131245],[0.025647081434727,0.040876165032387,0.014836546033621]],[[0.034177739173174,0.061711855232716,0.024183247238398],[-0.026896940544248,0.039188705384731,0.047167211771011],[0.034706216305494,0.015746364369988,0.039755161851645]],[[0.00099058193154633,0.076020039618015,-0.012348277494311],[0.032424047589302,0.047579232603312,0.039337117224932],[0.008640892803669,-0.038341425359249,0.054467715322971]],[[0.0027796945068985,0.031269948929548,-0.032497465610504],[-0.016860065981746,-0.018439445644617,-0.035104185342789],[0.0045550498180091,-0.051577854901552,0.017695248126984]],[[0.01118025649339,0.053529240190983,-0.11129865795374],[-0.032665748149157,0.025621576234698,0.017578553408384],[0.04318755120039,-0.043087784200907,-0.030342269688845]],[[0.062792666256428,0.027041578665376,-0.067712314426899],[-0.012255975045264,0.038293119519949,-0.001988765783608],[-0.10166233032942,-0.038388609886169,-0.010225616395473]],[[0.033169206231833,0.071039862930775,0.0021432102657855],[0.025533318519592,-0.083229631185532,-0.060312114655972],[0.063176371157169,0.0034572388976812,-0.044284787029028]],[[-0.026023104786873,-0.067133150994778,-0.019535828381777],[0.061651397496462,-0.076841786503792,-0.018787188455462],[-0.063592426478863,-0.019664639607072,0.036935094743967]],[[0.070569977164268,0.081226967275143,0.014105481095612],[0.067285321652889,-0.075603753328323,0.048771150410175],[0.043024022132158,-0.03368566185236,-0.02685210108757]],[[-0.010866801254451,0.020576383918524,0.034380964934826],[0.010964381508529,-0.095171198248863,0.0075153545476496],[-0.089298978447914,0.035085335373878,-0.06474456936121]],[[0.079014703631401,0.021535748615861,-0.068238526582718],[-0.018360493704677,-0.0075102518312633,-0.068447664380074],[0.031746715307236,0.024070739746094,0.040957164019346]],[[-0.041699774563313,-0.012735759839416,0.0025588637217879],[0.0024982753675431,0.012823922559619,0.023077238351107],[-0.070249974727631,0.020751312375069,0.063972063362598]],[[-0.10272414982319,0.032956816256046,-0.037472128868103],[0.070897199213505,0.027047019451857,-0.045826230198145],[0.027537863701582,-0.023067075759172,-0.01202158536762]],[[-0.052988391369581,0.053947433829308,-0.020669251680374],[-0.056758899241686,-0.04546844959259,-0.040470387786627],[0.012793895788491,-0.026362676173449,-0.003714031772688]],[[0.0035595460794866,-0.014692638069391,0.0030509275384247],[0.037225499749184,0.0033414722420275,-0.040577147156],[0.025432448834181,-0.0049463100731373,0.0012826544698328]],[[-0.016455871984363,0.052227322012186,-0.0050333854742348],[0.0050238883122802,0.061499923467636,0.023259958252311],[0.040538277477026,0.10455176234245,-0.010804909281433]],[[-0.0054505998268723,-0.023576909676194,-0.048538122326136],[0.0088644502684474,-0.058804348111153,-0.01067175436765],[-0.10037904977798,-0.037470646202564,0.045968644320965]],[[-0.04621522501111,-0.065072901546955,0.077173158526421],[0.0084255253896117,-0.025315403938293,-0.013066069222987],[0.01335624884814,0.057497840374708,0.080203719437122]],[[-0.0074500516057014,-0.018157914280891,0.035615306347609],[-0.023696450516582,-0.0014120065607131,0.0077337599359453],[-0.056070446968079,0.07595856487751,0.017199374735355]],[[0.008908549323678,0.071420662105083,0.0066610225476325],[0.017857925966382,-0.064004234969616,0.0044397059828043],[-0.057752449065447,0.0050548063591123,-0.026316722854972]],[[0.044803503900766,-0.0060576610267162,-0.01424377784133],[0.088182471692562,-0.0086561366915703,0.017223374918103],[3.1015952117741e-07,0.033258028328419,0.030254356563091]],[[0.016749311238527,-0.0024845628067851,-0.085680171847343],[-0.013341456651688,0.036837048828602,0.012877244502306],[0.040191106498241,0.038753252476454,0.0039304210804403]],[[-0.034161940217018,-0.028027458116412,-0.020016342401505],[0.031448639929295,0.015473006293178,-0.054472260177135],[0.068294890224934,0.0033656805753708,-0.014080587774515]],[[0.010249603539705,0.096159189939499,-0.064384192228317],[0.0013037385651842,0.028571425005794,-0.031155979260802],[-0.013644008897245,-0.044419907033443,0.010651073418558]],[[0.037613496184349,0.047612119466066,0.039711154997349],[-0.040621299296618,0.036376506090164,-0.0010265189921483],[0.010861991904676,0.03167087584734,-0.030452478677034]],[[0.01134617626667,0.030959885567427,0.068091914057732],[-0.01128866057843,-0.014684092253447,-0.015882262960076],[-0.030388832092285,0.01979286968708,-0.026178281754255]],[[-0.039375748485327,-0.014524093829095,-0.036843508481979],[0.047362234443426,0.024506829679012,0.038251508027315],[-0.072333760559559,0.0048770839348435,0.03332532569766]],[[0.040336485952139,0.0019579294603318,0.0082526002079248],[0.020876262336969,-0.012871247716248,0.013458060100675],[-0.003191978437826,0.031026802957058,-0.025997063145041]],[[-0.0059221554547548,-0.058139193803072,0.025231208652258],[-0.032525390386581,0.0072516486980021,-0.015053475275636],[0.03407246991992,-0.090859189629555,-0.058183148503304]],[[0.060214057564735,0.0081047574058175,-0.023439118638635],[0.022218005731702,-0.0036677240859717,-0.048272956162691],[-0.054670393466949,0.036680985242128,0.039907671511173]],[[0.044968631118536,0.013951039873064,-0.069203250110149],[-0.050488796085119,-0.01452621165663,-0.014884193427861],[-0.07127783447504,0.010099312290549,0.041175711899996]],[[-0.044373206794262,-0.059235163033009,-0.050850570201874],[-0.015003815293312,0.081806518137455,-0.090035274624825],[-0.0042681833729148,0.12271928042173,0.084377460181713]],[[0.028007993474603,-0.044621221721172,-0.030609097331762],[0.015748407691717,-0.0025333960074931,-0.0023455701302737],[-0.025127548724413,0.027556661516428,-0.063637740910053]],[[0.001552902860567,0.12559361755848,0.01581204123795],[-0.0752317532897,-0.014519227668643,0.0015460094437003],[0.057249162346125,-0.018795857205987,-0.012652330100536]],[[0.014541061595082,-0.042165391147137,-0.058653358370066],[-0.046226400882006,0.077499479055405,0.072226785123348],[-0.013780433684587,-0.024863401427865,0.063950225710869]],[[-0.061258655041456,0.020736932754517,0.0517035163939],[-0.014254773966968,-0.026840714737773,-0.0011037528747693],[0.0032250769436359,-0.0063470155000687,-0.018620127812028]],[[0.0078028184361756,0.024105507880449,-0.0022460967302322],[0.064029686152935,-0.019333576783538,-0.042384061962366],[0.013045254163444,0.018314968794584,-0.04960111528635]],[[0.04172845184803,0.036097478121519,-0.021825173869729],[-0.038753472268581,-0.021334994584322,0.033189512789249],[-0.013257219456136,-0.0033010162878782,0.0061769057065248]],[[0.033805441111326,0.051637511700392,-0.01774687319994],[-0.03107488527894,-0.011931412853301,-0.0046546515077353],[-0.037937235087156,0.065689012408257,0.041774358600378]],[[-0.019698968157172,-0.0047026691026986,0.037286158651114],[-0.057140719145536,0.076438248157501,-0.04540353640914],[0.046464383602142,0.025542130693793,-0.050903916358948]],[[0.028828844428062,0.044502958655357,0.037391506135464],[0.053331486880779,-0.017659265547991,0.010792015120387],[0.00901148468256,-0.019125703722239,-0.0097400797531009]],[[0.029701640829444,-0.028547266498208,0.032772853970528],[0.02963169105351,-0.038906212896109,0.027217043563724],[0.038414500653744,-0.025564465671778,0.037946470081806]],[[0.043513100594282,0.040164243429899,0.016650592908263],[-0.022804399952292,-0.030024727806449,-0.036570828408003],[0.01040387712419,-0.039320793002844,-0.018661109730601]],[[0.060068104416132,0.1261116117239,-0.032984092831612],[-0.048177856951952,-0.026214361190796,0.078581169247627],[-0.027014153078198,-0.041679054498672,0.082384333014488]],[[-0.016061563044786,0.063765242695808,0.079933986067772],[-0.022690504789352,0.038886949419975,0.017279591411352],[0.016027996316552,0.016320398077369,0.069385387003422]],[[-0.008546925149858,-0.04392858967185,0.019235257059336],[-0.00012946830247529,0.024535201489925,0.0030036657117307],[-0.021221753209829,-0.085356794297695,-0.001344513730146]],[[-0.035274863243103,-0.0043895482085645,0.014653534628451],[-0.020026670768857,0.012096140533686,-0.019565245136619],[0.048180665820837,0.028219265863299,0.089197434484959]],[[-0.013519602827728,0.068633928894997,0.0090805366635323],[-0.0074465526267886,-0.0076720211654902,-0.00095802848227322],[-0.024391086772084,-0.032032575458288,0.028336588293314]],[[0.014258900657296,-0.061729911714792,-0.0025301354471594],[0.0047965166158974,0.001365605276078,-0.053427793085575],[0.030857607722282,-0.010187584906816,-0.033655568957329]],[[0.018658585846424,0.043065618723631,0.019088113680482],[-0.033156618475914,-0.046326570212841,0.01359935849905],[0.055990755558014,0.048469185829163,0.036410972476006]],[[0.049250148236752,0.012968167662621,-0.025511890649796],[-0.021005047485232,-0.0035133205819875,-0.0070173316635191],[0.03600799664855,0.090760305523872,-0.0096854753792286]],[[-0.025023845955729,0.013049750588834,-0.011500597000122],[0.0044116047210991,-0.025867365300655,0.042423941195011],[-0.0080000692978501,-0.013744557276368,0.051860280334949]],[[0.006179774645716,-0.004982671700418,-0.064959697425365],[0.011487020179629,-0.016683919355273,0.036015097051859],[-0.04435071349144,-0.042532734572887,0.020095657557249]],[[-0.0028445024508983,-0.049557570368052,-0.035395864397287],[-0.046705972403288,0.035072714090347,-0.072198465466499],[-0.018485568463802,0.0036527581978589,-0.048023052513599]],[[-0.030013857409358,0.084005005657673,0.039253443479538],[0.017519559711218,0.030581535771489,0.0097817732021213],[0.083640843629837,-0.062489658594131,0.028337325900793]],[[0.026052039116621,0.029253877699375,-0.022582229226828],[0.058914497494698,-0.036966938525438,0.016749626025558],[0.0095107927918434,0.0034378604032099,-0.034967593848705]],[[-0.035910595208406,-0.028609851375222,-0.01093231420964],[-0.031820762902498,-0.037500452250242,-0.030170472338796],[-0.0042408360168338,-0.017748123034835,-0.051877312362194]],[[0.045112226158381,-0.040591236203909,0.028922021389008],[0.042729627341032,0.032423447817564,0.038550104945898],[0.020221961662173,-0.053281966596842,0.049937181174755]],[[-0.013629920780659,-0.033159647136927,0.0042898994870484],[0.050440642982721,0.067927949130535,0.054331865161657],[-0.011179938912392,0.023819003254175,0.079723291099072]],[[0.010348578915,-0.010287594981492,0.017411617562175],[0.073676683008671,0.057339049875736,0.080076739192009],[0.030677538365126,-0.044831987470388,-0.05493637919426]],[[0.026898186653852,0.02839738316834,-0.05638875067234],[0.0054890871979296,-0.035012371838093,-0.062146909534931],[0.035111207515001,-0.02300563827157,-0.024768967181444]],[[-0.013409592211246,-0.011569598689675,0.052771985530853],[-0.078215926885605,-0.052611939609051,0.015617796219885],[-0.0037648784928024,-0.034222055226564,0.0065536750480533]],[[0.019646476954222,-0.048481810837984,0.0013503081863746],[0.017092185094953,-0.0061306795105338,-0.020709400996566],[0.030407376587391,0.04170161485672,0.021764799952507]],[[-0.021680977195501,-0.096591494977474,0.08299870043993],[0.024537615478039,0.032385196536779,-0.038276221603155],[-0.051447335630655,0.029421854764223,0.084098540246487]],[[0.009127396158874,0.034099858254194,-0.00051017774967477],[0.017034742981195,0.0076958076097071,-0.02579152956605],[-0.0012596292654052,0.06862723082304,-0.038606218993664]],[[0.055723812431097,-0.023304328322411,0.042803440243006],[-0.016116356477141,-0.02638760022819,0.036993820220232],[-0.048260495066643,0.060589365661144,-0.088274285197258]],[[-0.014609892852604,0.0090036559849977,0.058220494538546],[-0.022762469947338,0.05068214610219,-0.050587721168995],[0.060587506741285,0.043947350233793,-0.031166082248092]],[[-0.044731695204973,0.021505730226636,-0.022899258881807],[-0.038014099001884,-0.084414839744568,-0.047104522585869],[-0.063291631639004,0.033398170024157,-0.04832562059164]],[[0.021668672561646,-0.083171136677265,0.016531387344003],[0.020445490255952,-0.048612039536238,0.016214266419411],[0.051656503230333,-0.014277995564044,0.085937686264515]],[[-0.0077621443197131,0.016134597361088,0.030847981572151],[-0.085686914622784,-0.0051978644914925,0.010231290943921],[0.031467586755753,0.026886714622378,0.0019540227949619]],[[-0.030010581016541,0.01103884074837,-0.094203069806099],[-0.037296500056982,-0.077932238578796,-0.064870022237301],[-0.048576544970274,-0.078002639114857,-0.037008225917816]],[[-0.085057340562344,0.030233286321163,0.020174887031317],[-0.025543946772814,0.010426740162075,0.047239392995834],[-0.026668041944504,-0.00090779119636863,0.030338067561388]],[[0.04296425357461,0.029725605621934,-0.001149628427811],[-0.012375926598907,-0.032551277428865,0.083756558597088],[0.048403106629848,-0.046245079487562,0.022171009331942]],[[0.034532755613327,-0.090510189533234,-0.08460084348917],[0.011584846302867,0.019487276673317,-0.04678799957037],[-0.033542852848768,-0.032918006181717,-0.046719048172235]],[[-0.043481778353453,-0.031166970729828,0.056018307805061],[0.045263677835464,-0.06696604937315,0.11083345860243],[-0.060060322284698,0.023569077253342,0.05132557824254]],[[-0.051632039248943,0.038821276277304,0.025518203154206],[0.023583829402924,-0.048363473266363,-0.019231356680393],[0.00063062767731026,-0.038876131176949,0.048865761607885]],[[0.037533991038799,0.011453321203589,-0.024031165987253],[0.032733745872974,-0.020588623359799,0.023784337565303],[-0.0091427685692906,-0.042005188763142,-0.017697911709547]],[[-0.0065678060054779,-0.032130137085915,-0.044035173952579],[0.010783107019961,-0.0372747592628,-0.025550708174706],[-0.012227437458932,0.063681311905384,0.069725640118122]],[[-0.030478468164802,-0.03050808608532,-0.07900807261467],[-0.0074414922855794,0.075561746954918,0.067394807934761],[-0.029469979926944,-0.035441607236862,0.031315516680479]],[[0.051997903734446,-0.01383279915899,0.026746204122901],[-0.034378111362457,-0.020557042211294,-0.0088556669652462],[0.06703183054924,0.013284127227962,0.094409942626953]],[[-0.002311134012416,0.023523794487119,-0.010866489261389],[-0.020110612735152,-0.011639479547739,-0.027752235531807],[-0.020431494340301,0.029807051643729,0.0028327777981758]],[[0.077203638851643,-0.054237619042397,0.053850248456001],[0.015901610255241,0.019446033984423,0.03089214861393],[-0.016055116429925,0.007533744443208,0.012839888222516]],[[-0.0036384502891451,-0.013220397755504,-0.014169345609844],[-0.012930542230606,-0.055863104760647,-0.0091363666579127],[-0.019286355003715,-0.082305707037449,-0.044244032353163]],[[-0.0085777239874005,0.013247544877231,-0.056996028870344],[0.020029988139868,-0.0036607887595892,0.037225563079119],[0.0068826512433589,0.038036711513996,-0.0032745483331382]],[[-0.03549886494875,-0.036844234913588,0.058704756200314],[-0.12146209925413,0.047108847647905,0.0073156105354428],[0.061105757951736,-0.048119019716978,-0.017666012048721]],[[0.087835304439068,-0.055342711508274,-0.054956916719675],[0.0015148884849623,-0.014179157093167,-0.0086208619177341],[0.014488575980067,-0.035834416747093,-0.036021444946527]],[[0.05762942135334,0.072349935770035,0.044204171746969],[0.023827062919736,-0.10499506443739,-0.011827540583909],[-0.044971510767937,-0.01674029417336,0.030156357213855]],[[0.054580669850111,-0.0039937463589013,0.022605622187257],[-0.024096567183733,-0.0022075455635786,-0.011544045060873],[0.01409359369427,-0.0083973444998264,0.073268376290798]],[[-0.01910544000566,-0.012496157549322,-0.040498837828636],[-0.006313344463706,0.011332844384015,0.0086181312799454],[-0.014044341631234,-0.063903301954269,0.045283254235983]],[[-0.0022094920277596,-0.059408608824015,-0.0047724107280374],[-0.017494728788733,-0.032921943813562,-0.043343998491764],[-0.045972596853971,-0.035836450755596,0.036252669990063]]],[[[-0.11031186580658,0.033690184354782,-0.13034461438656],[-0.0023582335561514,-0.039405860006809,0.016061134636402],[-0.0040251323953271,0.057712767273188,0.018332799896598]],[[0.029959278181195,-0.024715770035982,0.015256891027093],[0.052798941731453,-0.0011882712133229,-0.0042105787433684],[0.015260062180459,-0.030779970809817,-0.00247295293957]],[[-0.025039022788405,-0.019882278516889,0.020964674651623],[-0.034561950713396,-0.038065180182457,0.022593641653657],[0.016068525612354,0.020374735817313,-0.031579736620188]],[[0.0020849795546383,0.0053734602406621,-0.025965550914407],[0.030880460515618,-0.028489515185356,0.077285043895245],[0.0081435451284051,-0.0097177196294069,0.067911252379417]],[[-0.091457426548004,0.030936622992158,0.0033691837452352],[0.031469374895096,0.0076702795922756,-0.026495188474655],[-0.1106446608901,-0.074920244514942,0.069383271038532]],[[0.075755938887596,-0.015288696624339,0.011242193169892],[-0.032566864043474,0.020181877538562,-0.024721221998334],[0.038918804377317,0.016135139390826,-0.023266984149814]],[[-0.035024147480726,-0.0027740190271288,-0.048118893057108],[-0.016548972576857,0.019281692802906,0.00079272146103904],[0.030787592753768,-0.036391038447618,-0.0092628709971905]],[[0.03072515130043,-0.0017624162137508,-0.01348352432251],[0.03530665487051,0.0031432134564966,0.06549084931612],[-0.004554342944175,0.025054901838303,-0.010660116560757]],[[-0.021202214062214,-0.017874825745821,0.027320915833116],[-0.024989247322083,0.036142785102129,-0.01676918938756],[-0.049155298620462,-0.055772420018911,0.0035350846592337]],[[0.045350324362516,0.11413627117872,0.088904239237309],[0.056387230753899,0.029489206150174,0.042554289102554],[-0.056738797575235,-0.076211914420128,-0.058512400835752]],[[0.041950117796659,0.0097265113145113,0.055408850312233],[-0.042501900345087,-0.021207498386502,0.13015052676201],[0.024681529030204,0.049334265291691,0.072476990520954]],[[0.034254271537066,0.072240799665451,-0.018279682844877],[-0.038189005106688,-0.053783733397722,-0.010419907048345],[0.062693446874619,0.075816415250301,0.058439578860998]],[[-0.12804999947548,-0.013398232869804,-0.010272743180394],[0.024369861930609,0.015075541101396,0.0022509032860398],[0.011410553939641,0.014237692579627,-0.053474739193916]],[[0.024266602471471,0.0046023847535253,-0.018905878067017],[-0.02199799567461,0.017078841105103,0.063339151442051],[0.047926407307386,0.065321482717991,-0.0029941361863166]],[[-0.062868200242519,0.0027647581882775,0.011277726851404],[-0.012505480088294,-0.0049927611835301,-0.032550435513258],[0.060761786997318,-0.01012744102627,0.024525543674827]],[[-0.05518165230751,-0.025897771120071,0.061576552689075],[0.029669409617782,0.028334544971585,-0.063197232782841],[-0.038955837488174,-0.0084339119493961,0.021689666435122]],[[0.02321607246995,0.049672201275826,-0.032692227512598],[0.016028558835387,-0.057393558323383,0.050585459917784],[0.032218784093857,0.066922046244144,0.053404301404953]],[[-0.073842599987984,-0.044475506991148,-0.01520327385515],[-0.027271108701825,0.0027337167412043,-0.031874734908342],[0.010240161791444,-0.013223849236965,-0.026964873075485]],[[-0.037403233349323,0.060689184814692,-0.0197783857584],[0.011159460991621,0.0035418949555606,-0.050156023353338],[0.006914580706507,0.0031134521123022,-0.064962603151798]],[[0.072449438273907,0.0086522167548537,0.029009748250246],[0.10796888172626,0.021951470524073,-0.051017835736275],[-0.005472045391798,0.0058705736882985,0.033238895237446]],[[-0.032175373286009,0.0073865787126124,0.048638943582773],[-0.0053509273566306,-0.015327388420701,-0.035039182752371],[-0.039956491440535,0.01271315664053,-0.034817073494196]],[[0.041365783661604,0.030041363090277,0.031162671744823],[0.040831550955772,-0.059292402118444,0.039295919239521],[-0.016552375629544,0.073886401951313,0.045349717140198]],[[0.050419308245182,-0.10038889199495,-0.029247336089611],[-0.029815640300512,-0.04201976954937,-0.066480927169323],[0.010162900201976,-0.0077566187828779,0.034198462963104]],[[0.021720211952925,0.049187038093805,-0.044857036322355],[-0.020888993516564,-0.024366587400436,-0.036045618355274],[-0.017261996865273,-0.013669364154339,0.096790120005608]],[[-0.010763168334961,0.044333036988974,-0.08307945728302],[-0.045284532010555,0.0045527163892984,0.11652249842882],[-0.045024000108242,-0.042632337659597,-0.021942427381873]],[[-0.043902765959501,-0.051959544420242,0.030587011948228],[0.01638176292181,-0.030142370611429,-0.0083578377962112],[-0.065467983484268,-0.026183865964413,0.00014142411237117]],[[0.022731134667993,0.0055518657900393,0.025403490290046],[-0.078392542898655,0.017126925289631,0.015155917964876],[0.0015181828057393,0.0085421064868569,0.012743259780109]],[[-0.022446900606155,0.062134988605976,-0.030319487676024],[0.11020497232676,0.015744470059872,0.01583711989224],[-0.0057964371517301,0.046307113021612,-0.082368329167366]],[[-0.02183261141181,0.068752534687519,-0.049272771924734],[-0.021035052835941,0.022195257246494,-0.031742669641972],[0.11288591474295,0.024180063977838,-0.03722108155489]],[[-0.0082668252289295,0.10601983219385,-0.040660981088877],[0.11242832243443,-0.023335626348853,-0.0070860297419131],[-0.08000036329031,-0.012781633064151,-0.0085281301289797]],[[0.039284959435463,0.0046378206461668,-0.022891376167536],[0.03735875338316,0.075685001909733,0.065086781978607],[-0.003949211910367,0.06500931084156,-0.020583551377058]],[[0.044470053166151,-0.025754235684872,0.010167797096074],[-0.012052036821842,0.068544872105122,-0.095866799354553],[0.064128078520298,0.0035783504135907,0.053203303366899]],[[0.02313119545579,0.031081585213542,0.0049602724611759],[0.019488792866468,-0.014761790633202,0.010753929615021],[-0.077273793518543,0.025545777752995,-0.045325756072998]],[[0.015562803484499,-0.034513205289841,0.089276693761349],[0.011118118651211,0.0077911927364767,-0.013263653963804],[-0.0016209988389164,0.01299412548542,-0.014182032085955]],[[0.083017192780972,0.056795734912157,-0.021983336657286],[-0.022062918171287,-0.0074346549808979,-0.036814242601395],[0.032334499061108,-0.036920133978128,-0.044475194066763]],[[-0.054964259266853,0.03408220410347,0.012390608899295],[0.032351739704609,0.044101431965828,0.0047116577625275],[0.027073681354523,0.0030446769669652,0.014244811609387]],[[-0.033478327095509,0.028185935690999,-0.035349644720554],[-0.062612153589725,0.084855571389198,0.065284490585327],[-0.0078691672533751,-0.042999040335417,0.0077076777815819]],[[-0.015767822042108,-0.046965535730124,-0.023048019036651],[-0.029586549848318,-0.070892736315727,0.1123913154006],[-0.023553021252155,0.01947707682848,-0.010676429606974]],[[-0.0011209122603759,-0.0086555425077677,0.10607049614191],[0.036623049527407,0.022954354062676,0.011619941331446],[0.054317612200975,-0.01198192872107,0.024017989635468]],[[-0.069237910211086,0.11681707948446,0.0064281094819307],[0.010489413514733,0.040755171328783,0.052145998924971],[-0.020067352801561,0.018466413021088,0.029956474900246]],[[0.013820424675941,0.015592339448631,-0.064060233533382],[0.0034963549114764,0.00046377358376049,0.02701966650784],[0.054498381912708,-0.024857934564352,0.02824467420578]],[[-0.01683085039258,-0.04388714581728,0.030164612457156],[0.0021872485522181,0.029044425114989,-0.011483741924167],[0.016024924814701,0.010299972258508,-0.020065708085895]],[[-0.07176299393177,-0.060419321060181,0.048717185854912],[-0.071430765092373,0.056866601109505,-0.038557417690754],[0.012783881276846,-0.0045708594843745,0.032078754156828]],[[0.064970664680004,-0.041308276355267,-0.0048871394246817],[0.010578019544482,0.0077507183887064,0.051266621798277],[0.036412365734577,-0.0057534091174603,0.024475200101733]],[[-0.016241043806076,0.031143601983786,-0.069270633161068],[0.030047599226236,0.058560401201248,-0.023989520967007],[-0.033382683992386,0.061355534940958,0.094507686793804]],[[-0.013854380697012,0.035899065434933,-0.088872008025646],[0.024042375385761,0.002548398450017,0.013217257335782],[0.035988815128803,-0.021422503516078,-0.050849452614784]],[[-0.053514324128628,-0.012497096322477,-0.030110506340861],[0.0084191653877497,-0.086458712816238,0.086480468511581],[0.0016295835375786,0.019225139170885,0.067368812859058]],[[-0.003570357337594,0.012642565183342,-0.030241159722209],[0.063157089054585,-0.0020460800733417,0.017259350046515],[0.024689208716154,-0.060450613498688,-0.082849264144897]],[[-0.12679603695869,0.0098113464191556,-0.046445902436972],[0.012400756590068,0.0041376547887921,0.021113052964211],[-0.0056683202274144,-0.0003814421070274,0.013241165317595]],[[0.036317341029644,-0.0028415941633284,0.075078018009663],[-0.070735573768616,-0.060524459928274,0.015020529739559],[-0.076958186924458,-0.058942172676325,0.011441524140537]],[[-0.010265627875924,-0.056004039943218,0.048780437558889],[-0.08142826706171,0.014870636165142,0.014494683593512],[0.02063224837184,-0.0032081946264952,-0.07036679983139]],[[0.023682488128543,-0.03938365727663,0.016676859930158],[-0.028904341161251,-0.030581742525101,-0.017744993790984],[-0.021541479974985,-0.035380657762289,-0.023586453869939]],[[0.079012826085091,0.01925758831203,0.072330646216869],[-0.039533913135529,0.053174752742052,0.066126056015491],[-0.033551711589098,0.035781506448984,-0.061426047235727]],[[-0.016215540468693,0.1134519726038,-0.0035623561125249],[-0.018412435427308,0.11261183768511,0.014148427173495],[0.01079024374485,0.015088596381247,-0.032864615321159]],[[-0.025149371474981,-0.060377437621355,0.041953511536121],[0.022759228944778,-0.045295313000679,0.05460737273097],[0.021152522414923,0.0077102612704039,-0.016792751848698]],[[0.015921758487821,-0.0069703930057585,0.01926869340241],[0.018188122659922,-0.0065477648749948,-0.059544336050749],[0.039642576128244,-0.005545487627387,0.013931921683252]],[[-0.076166607439518,-0.0021637375466526,-0.019493587315083],[-0.048559565097094,-0.0027923136949539,0.051155637949705],[0.02711658552289,-0.089076444506645,0.028900381177664]],[[-0.032864034175873,0.049048911780119,-0.025527153164148],[-0.041732855141163,0.019727932289243,0.0039748605340719],[-0.063997708261013,0.022242879495025,0.0095182582736015]],[[-0.038341872394085,-0.01597979478538,-0.023421492427588],[-0.050484251230955,-0.043493565171957,-0.054077550768852],[0.026403054594994,-0.041458263993263,0.060706902295351]],[[0.013732966966927,0.048470191657543,0.04019558429718],[-0.040004629641771,0.064495906233788,0.065520279109478],[-0.057236906141043,0.0089255599305034,-0.080629169940948]],[[0.00085845653666183,0.097455203533173,-0.07075434923172],[0.017493311315775,0.043433587998152,-0.016962004825473],[-0.043079219758511,0.0011424609692767,-0.0097886389121413]],[[-0.035311486572027,-0.050484247505665,0.040138345211744],[0.02907394990325,-0.026592005044222,0.049368035048246],[-0.0088311731815338,-0.028969937935472,-0.059185683727264]],[[0.06794597953558,-0.0099987806752324,0.038852490484715],[0.074081644415855,-0.014531038701534,-0.029228618368506],[0.01570394448936,-0.043603230267763,0.011808600276709]],[[0.072019495069981,-0.028243405744433,-0.031565222889185],[0.022098865360022,-0.033170118927956,-0.0010695251403376],[0.0038931809831411,0.013192464597523,0.046831279993057]],[[0.019601717591286,-0.045325331389904,0.023512015119195],[-0.051492262631655,-0.11698744446039,-0.095731303095818],[-0.0085873380303383,0.076232552528381,-0.028958672657609]],[[0.064717561006546,0.033684752881527,0.044002834707499],[0.023561976850033,0.012792229652405,0.048651177436113],[0.0073413252830505,-0.077404715120792,0.060934126377106]],[[-0.0267488732934,0.044758919626474,0.04479518160224],[-0.0068891956470907,-0.06551044434309,-0.013848768547177],[0.0042192717082798,-0.13833203911781,-0.063409931957722]],[[-0.0079893590882421,0.043991968035698,-0.020574994385242],[0.051497906446457,0.092066526412964,0.003885910147801],[-0.0057272328995168,-0.058842692524195,-0.039750371128321]],[[0.043757047504187,-0.053103469312191,-0.0051843235269189],[0.055398046970367,-0.072644867002964,-0.097384847700596],[-0.018593298271298,-0.065645948052406,-0.011892959475517]],[[-0.065181903541088,0.0041027264669538,0.023322012275457],[-0.029842799529433,0.016890441998839,-0.02825278416276],[-0.0065892096608877,-0.023192660883069,0.013032414019108]],[[-0.083795599639416,0.026790672913194,-0.0062419851310551],[0.0061019873246551,0.042010903358459,0.017930125817657],[-0.014263826422393,-0.001917117042467,-0.034016568213701]],[[0.013186182826757,-0.11882066726685,0.05004284158349],[0.0045270398259163,0.080939911305904,-0.080806642770767],[-0.096099548041821,-0.061029825359583,-0.010802756994963]],[[-0.031877875328064,-0.044435035437346,0.041796762496233],[0.025052964687347,-0.10217520594597,0.026189399883151],[0.071993373334408,-0.042773995548487,-0.035294387489557]],[[-0.031359136104584,-0.014890031889081,-0.022013865411282],[-0.024284457787871,-0.024665914475918,0.033026024699211],[-0.042811766266823,0.013189568184316,-0.026539795100689]],[[0.032645482569933,0.058136124163866,0.072019651532173],[0.0035011321306229,-0.0099745532497764,-0.055108342319727],[-0.091005817055702,0.049082614481449,-0.008836523629725]],[[0.02062495239079,0.11628855764866,0.060396645218134],[0.085258640348911,0.013541109859943,-0.065056413412094],[0.00048840692033991,-0.0017182250740007,0.018995789811015]],[[-0.020125981420279,-0.080361157655716,-0.064969375729561],[0.0052033304236829,0.055662646889687,0.048533052206039],[0.05637588351965,0.089607574045658,-0.004210349638015]],[[-0.0069646253250539,0.0023194986861199,-0.067693911492825],[-0.084576651453972,-0.040259975939989,-0.10993906855583],[0.043446786701679,-0.031717751175165,-0.024864172562957]],[[-0.0016984314424917,-0.031473077833652,-0.039400298148394],[0.09865266084671,-0.00094229227397591,0.073583610355854],[-0.015467303805053,-0.042246226221323,-0.036711137741804]],[[0.017002446576953,0.039653919637203,-0.010775624774396],[-0.011448536999524,0.05885611847043,0.0095089999958873],[-0.027022508904338,0.071834616363049,0.011209242045879]],[[-0.02139194868505,0.013556893914938,-0.047423172742128],[-0.0030012335628271,0.041670404374599,-0.0059246215969324],[0.025471659377217,0.05807588621974,0.038908004760742]],[[0.0056088175624609,0.053781289607286,0.085277281701565],[0.029921086505055,-0.024763913825154,-0.061280764639378],[-0.07444030046463,0.052935600280762,-0.032852232456207]],[[0.0032569384202361,0.025921978056431,-0.011483062058687],[-0.046708583831787,-0.00044624076690525,-0.059854745864868],[0.10949775576591,0.025035485625267,0.038942098617554]],[[0.019395973533392,-0.01214561611414,-0.04751131311059],[0.067591451108456,0.066404923796654,-0.033309496939182],[0.017184695228934,0.0025794683024287,0.03781146928668]],[[0.0017453996697441,0.014013377949595,0.028355207294226],[0.011398596689105,-0.022404313087463,-0.036201503127813],[0.034038215875626,0.044094044715166,0.019816625863314]],[[0.007576335221529,0.015429018065333,0.017574448138475],[-0.014310864731669,-0.070233955979347,-0.065517798066139],[0.069399334490299,0.001560575212352,0.049068715423346]],[[-0.028049876913428,0.017558025196195,-0.027197852730751],[0.0097210230305791,0.046731043606997,-0.054104372859001],[0.033920627087355,-0.0095626525580883,0.032428879290819]],[[0.010471993125975,-0.084910973906517,-0.054234612733126],[-0.012563642114401,0.0032685603946447,-0.015301584266126],[0.053806513547897,0.017201729118824,-0.051767658442259]],[[-0.0029133623465896,-0.057870209217072,0.010220110416412],[-0.079475194215775,0.044952668249607,-0.076065316796303],[-0.018859120085835,0.020282903686166,0.045890141278505]],[[0.0083267986774445,-0.067631386220455,-0.014464507810771],[-0.030038956552744,-0.0016890286933631,-0.0042595895938575],[0.074306912720203,-0.016048502177,-0.076073780655861]],[[-0.013458812609315,-0.024231774732471,0.0026332861743867],[-0.017733683809638,0.026575388386846,0.013351767323911],[-0.061892777681351,0.020675782114267,-0.063212253153324]],[[-0.049618225544691,0.013017138466239,-0.022592784836888],[-0.060951944440603,0.043021738529205,0.043261654675007],[-0.011894788593054,0.00088409218005836,0.0046932776458561]],[[0.049258451908827,-0.010702787898481,-0.024615049362183],[0.049982242286205,0.053999144583941,-0.045233175158501],[0.041540786623955,-0.00049102923367172,0.011790089309216]],[[0.0098176142200828,0.037253119051456,0.032671198248863],[0.047693371772766,-0.038256857544184,-0.053150359541178],[-0.070827007293701,0.042281061410904,-0.060199424624443]],[[-0.027990981936455,-0.03335052728653,-0.016661178320646],[0.059182953089476,-0.0018392559140921,0.018801709637046],[-0.073673352599144,-0.038603249937296,0.019447343423963]],[[-0.022020503878593,-0.0058720693923533,0.061222761869431],[0.010404954664409,0.012603827752173,0.062411546707153],[0.0098292576149106,-0.11503390222788,-0.0083969933912158]],[[-0.052233185619116,-0.024662677198648,0.0050370492972434],[0.052070748060942,0.040028758347034,-0.12627889215946],[0.024995807558298,0.04115791991353,0.034038748592138]],[[0.039430737495422,-0.073748327791691,-0.066346153616905],[0.016614159569144,-0.036293815821409,-0.07102558016777],[0.00055532826809213,0.019553013145924,0.011445282027125]],[[-0.019498379901052,0.06025019288063,0.0067443703301251],[0.074649803340435,-0.0080469641834497,-0.016040349379182],[0.01323798019439,-0.085398800671101,0.0019385654013604]],[[0.04871928319335,0.058062262833118,0.043550752103329],[0.00030059766140766,0.086043395102024,-0.02885671518743],[-0.03079916909337,-0.033054828643799,0.019923981279135]],[[0.036352325230837,-0.065527461469173,-0.045795775949955],[0.0007546188426204,0.047054316848516,0.11377435922623],[0.082277372479439,-0.043922025710344,0.065677501261234]],[[0.027514509856701,0.046328112483025,0.035528235137463],[0.02043497748673,0.023029970005155,0.061195030808449],[0.029874132946134,-0.048369482159615,0.0056932806037366]],[[0.016596985980868,-0.026557572185993,-0.079370237886906],[-0.016621805727482,-0.0092720380052924,0.005127124954015],[0.03616963326931,0.013895947486162,-0.025810269638896]],[[-0.022632736712694,-0.02144612185657,-0.048842441290617],[-0.02753527648747,0.024224933236837,0.076675340533257],[-0.043931677937508,-0.072012379765511,-6.8459608883131e-05]],[[-0.014899560250342,-0.050079200416803,-0.011690793558955],[-0.029814256355166,0.044093661010265,0.0086974734440446],[0.059522736817598,-0.0015225284732878,-0.017452269792557]],[[-0.0092341080307961,-0.061088774353266,-0.04240657389164],[0.042337968945503,0.023656720295548,0.026966998353601],[-0.017418893054128,-0.0047962181270123,-0.00033193247509189]],[[0.046620208770037,-0.010573735460639,0.0063782958313823],[0.08643513917923,-0.0017780110938475,0.036635585129261],[0.053605671972036,-0.077585004270077,-0.013495814055204]],[[0.024701869115233,0.057530853897333,-0.047148060053587],[0.068166926503181,0.057899050414562,-0.04863390699029],[-0.055824726819992,-0.034829929471016,-0.02257820405066]],[[-0.030101509764791,0.043291114270687,-0.086836718022823],[0.085861675441265,-0.025454916059971,0.11525808274746],[0.011369136162102,-0.025143943727016,-0.053461521863937]],[[-0.10371938347816,0.0052548074163496,-0.016035849228501],[-0.10216907411814,0.041912250220776,0.03469255939126],[0.049117092043161,-0.022380055859685,-0.012904369272292]],[[0.054018996655941,0.013022305443883,0.06374453753233],[0.057246148586273,-0.0010664319852367,0.018271919339895],[-0.049081463366747,0.023681655526161,0.022066727280617]],[[0.054371744394302,-0.020063607022166,-0.11294470727444],[-0.00095885957125574,0.020293476060033,-0.026142705231905],[0.070645608007908,-0.005050677806139,0.017548216506839]],[[-0.014378288760781,0.052246678620577,-0.022707890719175],[0.019627790898085,-0.028276829048991,-0.038162387907505],[-0.035732243210077,0.015679756179452,0.037393052130938]],[[0.011376801878214,-0.020048059523106,-0.013377049006522],[-0.072351366281509,-0.021995078772306,-0.051934346556664],[-0.026359140872955,0.027760684490204,-0.0097457356750965]],[[-0.016519885510206,-0.049773056060076,-0.0090253446251154],[0.0039865276776254,-0.012462084181607,-0.0054241288453341],[-0.067666612565517,-0.016957059502602,0.047374732792377]],[[0.031964205205441,0.0043875370174646,-0.054132614284754],[-0.032805792987347,-0.05706574395299,-0.047590836882591],[-0.058289028704166,-0.066715218126774,-0.051986306905746]],[[0.027627686038613,-0.072939425706863,-0.022035915404558],[0.018280375748873,0.018491636961699,-0.0031753592193127],[0.024227852001786,0.055076695978642,0.0053705242462456]],[[-0.038704544305801,0.082907557487488,0.025324609130621],[-0.093492522835732,-0.0060494816862047,0.0085694119334221],[0.0091199586167932,-0.02439590357244,-0.030940640717745]],[[-0.017984695732594,-0.010374220088124,0.067751280963421],[0.065730281174183,-0.016335537657142,-0.067144751548767],[0.020615248009562,-0.020478561520576,0.020935455337167]],[[-0.07268100976944,0.0090097403153777,0.07651874423027],[0.033297672867775,-0.031830739229918,-0.019706185907125],[-0.018456120043993,-0.0033455437514931,-0.0076951421797276]],[[-0.0028735313098878,-0.050347533077002,-0.059178106486797],[-0.064104348421097,0.051551125943661,0.013253043405712],[0.038179844617844,-0.092444084584713,-0.02080368436873]],[[0.0054101943969727,-0.020273026078939,0.070671029388905],[-0.072536140680313,0.0093816164880991,-0.10116747021675],[0.013176780194044,0.040276985615492,0.029215514659882]],[[0.011428060010076,0.037011254578829,-0.028816482052207],[0.041109099984169,-0.0050111985765398,-0.0245750695467],[-0.014354908838868,-0.015559585765004,-0.013273517601192]],[[0.018398018553853,-0.029436489567161,-0.064632222056389],[-0.028953317552805,-0.065120115876198,0.0077204876579344],[-0.020524229854345,-0.026277463883162,-0.017732918262482]],[[-0.073405854403973,0.026399549096823,0.043272353708744],[-0.015831012278795,0.025886287912726,0.025453323498368],[-0.044185917824507,-0.029745867475867,0.093882769346237]],[[-0.017059890553355,-0.080795310437679,-0.030359696596861],[0.0016069033881649,-0.00089667073916644,0.032474670559168],[0.0049506085924804,0.026092061772943,-0.024240979924798]],[[0.015854442492127,0.011609323322773,0.085199616849422],[-0.030887158587575,-0.070342257618904,0.061222326010466],[0.031125573441386,-0.016092255711555,0.070396572351456]],[[-0.0077559817582369,0.017793349921703,0.028298800811172],[-0.01027131266892,0.059087537229061,-0.031952992081642],[-0.0072487043216825,-0.049358807504177,-0.048769883811474]]],[[[0.02987072058022,0.010345553979278,-0.0664247199893],[0.0096600260585546,0.0095965061336756,0.005597485229373],[-0.057780750095844,-0.014722724445164,-0.035903047770262]],[[-0.10669206827879,-0.0093493685126305,0.065818831324577],[0.028952397406101,-0.025210371240973,-0.015089767053723],[-0.0036938854027539,-0.01435140799731,-0.062401153147221]],[[-0.013434169813991,-0.040901754051447,-0.019510447978973],[0.013190476223826,0.038285698741674,0.02810226380825],[0.0135498335585,0.02422764711082,0.043498825281858]],[[-0.044699631631374,0.044463545084,0.015224430710077],[0.009484033100307,0.060622423887253,0.051641743630171],[0.018116481602192,0.038384668529034,0.10459729284048]],[[-0.085397839546204,0.049567025154829,-0.081190645694733],[-0.018761280924082,0.056237112730742,-0.046185858547688],[-0.017652694135904,0.061634976416826,-0.016629606485367]],[[-0.055479202419519,-0.053189408034086,0.056254092603922],[0.012218618765473,-0.0012480572331697,-0.042681954801083],[0.066116496920586,0.07971429079771,0.012564278207719]],[[-0.045401431620121,-0.040842033922672,0.016480453312397],[0.013717040419579,0.029405750334263,-0.1097539588809],[2.4726858100621e-05,0.071345522999763,0.02736097201705]],[[0.010001931339502,0.013581947423518,0.0026739514432847],[0.0069519551470876,0.025675809010863,0.073609866201878],[-0.035750523209572,-0.018286075443029,0.093596257269382]],[[-0.066367127001286,-0.014411523006856,0.042052939534187],[0.0016369812656194,-0.0054219621233642,0.035545647144318],[-0.0025621016975492,-0.014826496131718,-0.043753582984209]],[[-0.1279304176569,0.0081736380234361,0.035684276372194],[0.058496925979853,-0.060533475130796,-0.012478981167078],[0.17766110599041,-0.018179947510362,0.019406918436289]],[[0.062100060284138,0.048328246921301,0.048768762499094],[0.012241952121258,0.0051865507848561,-0.015019259415567],[0.026874091476202,-0.045901976525784,-0.032138030976057]],[[-0.020336588844657,0.0074650752358139,0.00051257200539112],[0.035201389342546,0.051358282566071,0.039590559899807],[-0.023019231855869,-0.00068235263461247,-0.027625069022179]],[[0.025642165914178,0.059647392481565,-0.020776750519872],[-0.06408778578043,0.026430927217007,0.0074163028039038],[0.045707281678915,0.077788822352886,-0.086251758038998]],[[0.023249821737409,0.0099854860454798,-0.036546159535646],[0.034408796578646,0.042942982167006,0.046482618898153],[0.056004006415606,0.074606634676456,0.040652170777321]],[[0.097118519246578,0.12189563363791,0.0086681423708797],[-0.0527976565063,0.061272848397493,0.080393366515636],[-0.0092848194763064,0.054054122418165,0.082638144493103]],[[0.0022538923658431,0.016980785876513,-0.024754645302892],[0.046462293714285,0.055804401636124,0.012947289273143],[0.0068290219642222,-0.053042586892843,0.061330534517765]],[[-0.076815269887447,-0.011206368915737,0.0086159417405725],[0.084508217871189,0.024549320340157,0.032101359218359],[0.091231845319271,-0.064968258142471,0.053457245230675]],[[0.0013440070906654,-0.032258275896311,0.0041455263271928],[-0.012581213377416,-0.0021480172872543,-0.036060813814402],[-0.015023128129542,-0.035495653748512,-0.003207485191524]],[[0.028429314494133,-0.0072132595814764,0.0082587273791432],[0.036059956997633,-0.017270904034376,0.0051919789984822],[-0.011212943121791,0.021309657022357,0.016222486272454]],[[0.10826174169779,0.002224215073511,-0.00943498685956],[0.062436681240797,0.038020182400942,-0.057988177984953],[0.017331285402179,-0.022483583539724,-0.039179909974337]],[[0.041214544326067,-0.06636530905962,0.0065864641219378],[0.053970571607351,0.01023493334651,-0.053983818739653],[-0.02762484177947,0.033525224775076,-0.016108393669128]],[[-0.017634011805058,-0.016785446554422,-0.018717465922236],[-0.0061019686982036,0.035639118403196,0.058407254517078],[-0.010935532860458,-0.011707519181073,0.0033146208152175]],[[0.0048646531067789,0.034453526139259,-0.082381807267666],[-0.081614978611469,-0.037717070430517,0.010750822722912],[0.027706872671843,-0.089455462992191,0.03213319554925]],[[-0.042896542698145,0.025657054036856,-0.0013927571708336],[0.0030086608603597,0.028233777731657,0.0030909553170204],[0.016504591330886,-0.091034427285194,-0.024033639580011]],[[0.04620723053813,-0.04325495660305,0.00071287754690275],[0.031312756240368,0.025500919669867,-0.040340337902308],[-0.10020519047976,-0.013287452049553,0.006663148291409]],[[-0.033796608448029,0.01099931076169,0.052728969603777],[0.0044399886392057,-0.015785047784448,0.03286375105381],[-0.068472295999527,-0.025533912703395,-0.025220297276974]],[[0.042833503335714,0.011008081957698,0.028273710981011],[-0.026401599869132,-0.01060164347291,0.025106437504292],[-0.043387018144131,-0.022037867456675,-0.059170741587877]],[[0.085045777261257,0.039128694683313,0.038891565054655],[-0.045299604535103,0.024294065311551,0.039013247936964],[0.0068554235622287,0.048692841082811,0.01307868398726]],[[0.020592506974936,0.023188741877675,0.0062553863972425],[0.0050071449950337,0.011704667471349,-0.014322706498206],[0.048805739730597,-0.031608190387487,0.040056377649307]],[[0.068144373595715,-0.0050875791348517,-0.038930147886276],[0.0076883407309651,-0.022991746664047,0.0042654420249164],[-0.016353830695152,-0.012107859365642,0.034484140574932]],[[0.037999890744686,0.029660627245903,0.013478972017765],[0.013955122791231,0.0082373907789588,0.04379716143012],[0.0045598293654621,0.083676666021347,-0.076195903122425]],[[-0.011607406660914,0.052235711365938,0.0052296328358352],[0.073062017560005,0.02514374256134,-0.045303031802177],[-0.068661496043205,-0.010755762457848,0.054429702460766]],[[-0.085397951304913,0.010634794831276,-0.1081981882453],[-0.050854213535786,0.0096958912909031,-0.046386819332838],[-0.052445963025093,0.0033974514808506,0.095417708158493]],[[0.051331654191017,0.055953152477741,-0.050764124840498],[0.046785272657871,0.019445957615972,0.042690649628639],[0.038635063916445,0.059305526316166,-0.060306049883366]],[[-0.02773966267705,-0.030236499384046,-0.02385500445962],[-0.020172411575913,0.06887674331665,0.042202066630125],[0.030469881370664,0.0448326356709,-0.019593922421336]],[[-0.069482900202274,0.043475084006786,-0.011626192368567],[0.017514277249575,-0.033957302570343,0.012655978091061],[0.027255769819021,0.013500385917723,0.046778149902821]],[[-0.0013711345382035,0.010968101210892,0.023877019062638],[-0.0047601447440684,0.020508050918579,-0.010913045145571],[-0.074070803821087,0.064153656363487,-0.016824224963784]],[[0.051038656383753,0.059356037527323,-0.059533018618822],[0.014855760149658,0.023480951786041,-0.038778983056545],[-0.036100696772337,-0.0060322969220579,-0.091967687010765]],[[0.011690588667989,0.079624213278294,0.04237487539649],[-0.020393427461386,0.0088467607274652,0.0097232554107904],[-0.093480058014393,0.04904130846262,0.016959497705102]],[[-0.024660848081112,-0.046212617307901,0.012846389785409],[0.051695078611374,-0.015707587823272,0.017027836292982],[0.034934390336275,0.020179489627481,0.0011311516864225]],[[0.0097715770825744,-0.016537418588996,-0.013747040182352],[0.029727891087532,-0.0067288549616933,-0.010631861165166],[-0.026393905282021,0.0053160665556788,0.048628948628902]],[[-0.019764261320233,-0.048612803220749,-0.0070630959235132],[0.04129472002387,-0.056772362440825,6.9831694418099e-05],[0.022471260279417,-0.055870991200209,0.076233685016632]],[[0.094089351594448,0.031095495447516,0.062548987567425],[-0.057234119623899,0.048493932932615,0.03684589266777],[0.058815464377403,-0.014481849968433,0.0080000963062048]],[[-0.054636631160975,-0.016237767413259,0.089991338551044],[-0.02193264849484,-0.0089437058195472,0.014610539190471],[-0.069806501269341,-0.02070870064199,0.067992657423019]],[[-0.021446641534567,-0.006728520616889,0.03568397462368],[0.055420439690351,-0.03363399207592,0.037910297513008],[0.003859095973894,0.010621489025652,0.076873771846294]],[[0.09517752379179,-0.038140211254358,-0.030621457844973],[-0.02597894705832,-0.0028470268007368,0.045854341238737],[-0.048812061548233,0.0023976888041943,0.017038138583302]],[[0.049220237880945,-0.036620166152716,-0.033421032130718],[0.0228361915797,0.064725995063782,0.025089660659432],[-0.024152580648661,0.019549511373043,-0.03764533624053]],[[-0.098372630774975,0.041511736810207,0.012748515233397],[-0.13359892368317,0.0081456694751978,0.10294541716576],[0.018499596044421,-0.071605205535889,0.041469007730484]],[[0.013646202161908,0.068278923630714,-0.050923764705658],[-0.025336902588606,-0.052637297660112,0.0032117534428835],[0.03329885751009,0.015806641429663,0.0024925637990236]],[[0.0011670156382024,-3.9092833503673e-06,0.040665440261364],[-0.046118590980768,-0.001440889085643,0.041876193135977],[0.062374275177717,0.011668636463583,0.026245711371303]],[[-0.039538770914078,-0.019754083827138,0.010107104666531],[-0.065857991576195,-0.014113048091531,-0.073344580829144],[-0.024445677176118,-0.011332293972373,-0.034139886498451]],[[-0.017296131700277,-0.033789567649364,-9.4787435955368e-05],[-0.047552555799484,-0.023026479408145,-0.02510822750628],[-0.018131347373128,-0.00014771039423067,-0.074143595993519]],[[0.034851171076298,0.034123864024878,-0.015782473608851],[0.062716387212276,-0.013180797919631,0.049888446927071],[0.027588628232479,-0.0042600017040968,0.057996712625027]],[[-0.022359479218721,-0.0085491165518761,0.038396261632442],[0.059114009141922,-0.045585874468088,-0.00099101557862014],[-0.016327807679772,-0.11527591198683,0.0081399567425251]],[[0.044749718159437,-0.018099391832948,-0.036685489118099],[-0.091883108019829,0.031427633017302,-0.010554623790085],[0.033235460519791,-0.0063416073098779,0.053321771323681]],[[0.078341849148273,0.041008498519659,0.034388180822134],[0.018369104713202,-0.0266108289361,-0.046538677066565],[0.023528696969151,0.033514890819788,-0.028405239805579]],[[5.1163406169508e-05,0.039873320609331,0.020921701565385],[0.021955274045467,0.014077217318118,-0.017875300720334],[-0.037737723439932,0.054662894457579,-0.0027690646238625]],[[-0.08212685585022,0.003146446775645,-0.03596492856741],[0.013833899982274,-0.0022895140573382,-0.033324662595987],[0.058813624083996,0.0082332985475659,0.10237550735474]],[[0.02796071767807,-0.054317109286785,0.0056041195057333],[0.025765074416995,-0.028179161250591,-0.011929114349186],[-0.049497779458761,0.014236441813409,0.032388538122177]],[[0.01804686896503,0.0017870343290269,-0.038059752434492],[0.025128656998277,-0.019205341115594,-0.044497966766357],[-0.0090687973424792,0.035298455506563,0.014729003421962]],[[-0.0028473669663072,0.0011685377685353,0.026955481618643],[-0.021078711375594,0.062492337077856,0.019822232425213],[-0.051067315042019,-0.029810354113579,-0.012964433990419]],[[-0.0083616673946381,0.042675133794546,0.034522596746683],[0.00071467371890321,-0.016018552705646,-0.015081185847521],[-0.015719136223197,0.035866294056177,0.050319705158472]],[[-0.0074073327705264,0.019945967942476,0.0038488486316055],[0.02276099845767,0.040120169520378,0.020703196525574],[0.032166287302971,-0.031360618770123,0.0026682461611927]],[[-0.021949900314212,-0.051302220672369,0.022324100136757],[0.0078741302713752,0.0096517400816083,0.019564243033528],[-0.01407725084573,0.0066553456708789,0.0042004808783531]],[[-0.024260653182864,0.027868840843439,1.3330442016013e-05],[-0.0045581813901663,-0.012978861108422,-0.040079064667225],[-0.07969968020916,0.036125715821981,-0.003337029600516]],[[0.037657707929611,-0.042329799383879,-0.056637860834599],[-0.025828486308455,0.048147816210985,-0.0074194553308189],[-0.01474345754832,-0.010494790039957,0.0073050600476563]],[[-0.040910739451647,-0.065723448991776,0.043057251721621],[-0.025508861988783,-0.061748292297125,0.0015889976639301],[0.15154610574245,0.039214711636305,0.0049258377403021]],[[-0.037693306803703,0.00082678889157251,0.025596814230084],[-0.035660896450281,0.045074611902237,0.064967542886734],[-0.027773359790444,-0.0089018857106566,0.039396066218615]],[[0.077150106430054,-0.03070162422955,0.030058803036809],[-0.0090860351920128,-0.025487124919891,-0.0098371291533113],[0.031117698177695,0.053356327116489,-0.02764904499054]],[[0.0051118931733072,0.0016795650590211,-0.0016863273922354],[0.065414376556873,-0.0388253480196,0.05559554323554],[-0.020333593711257,-0.091595739126205,0.015734031796455]],[[-0.015359785407782,0.010389703325927,0.039499051868916],[-0.052371256053448,0.069699697196484,-0.05119888111949],[-0.0025438617449254,-0.051909957081079,0.022086145356297]],[[0.064323611557484,-0.02115561440587,0.011505332775414],[0.0064439787529409,-0.029037004336715,0.0021978598088026],[-0.067937567830086,0.0036081904545426,0.1213691085577]],[[0.094170421361923,1.1549042028491e-05,0.024467885494232],[-0.034096263349056,0.047538585960865,0.057030286639929],[0.021356485784054,-0.016920121386647,-0.022309735417366]],[[0.044563747942448,0.10210457444191,-0.010098680853844],[-1.4687506336486e-05,0.04253488779068,-0.036857757717371],[0.032108094543219,-0.0025107993278652,-0.016026351600885]],[[-0.051015604287386,0.019070204347372,-0.055742260068655],[0.048746954649687,0.088184647262096,0.019795769825578],[-0.016302365809679,-0.043181020766497,-0.0092732487246394]],[[0.010061297565699,-0.016998771578074,-0.068765431642532],[-0.055902190506458,0.078967116773129,-0.0025971389841288],[0.011861868202686,0.056233678013086,-0.0056999786756933]],[[0.0041241180151701,0.060322672128677,-0.039295237511396],[0.00099550560116768,0.020570181310177,-0.00034753984073177],[-0.03772259503603,-0.066132120788097,0.016368340700865]],[[0.0089973853901029,0.063516199588776,0.0062613426707685],[-0.031237715855241,0.013347068801522,0.026827190071344],[-0.0039249411784112,-0.034379366785288,0.079372651875019]],[[0.013676665723324,-0.035950422286987,0.0078905439004302],[0.012887340970337,-0.063978105783463,-0.031982433050871],[0.030358545482159,-0.029078593477607,0.019753457978368]],[[-0.0010488871484995,-0.022296873852611,-0.0011513462522998],[-0.025475731119514,-0.014652354642749,-0.048873078078032],[-0.06655965000391,-0.070490039885044,-0.0024456498213112]],[[0.096596084535122,0.048604488372803,-0.022963531315327],[0.067701689898968,-0.0061698006466031,0.040332168340683],[-0.0032831588760018,-0.031480599194765,-0.007907503284514]],[[0.020224323496222,0.039995241910219,-0.041504930704832],[0.050900511443615,0.038420252501965,-0.003523986088112],[0.078533604741096,0.060004137456417,0.0099629936739802]],[[0.080000884830952,0.01396472658962,-0.036637302488089],[0.04158453270793,0.0060289115644991,-0.082100920379162],[-0.0041760825552046,0.046800173819065,0.081192940473557]],[[-0.015537964180112,-0.062898904085159,-0.029686622321606],[0.071179166436195,-0.0012927170610055,-0.014295063912868],[0.02424355968833,0.046195831149817,-0.11702104657888]],[[0.029149046167731,-0.043061193078756,-0.023119278252125],[0.069076977670193,-0.020109493285418,0.087427817285061],[0.060196001082659,0.068886063992977,-0.04546345770359]],[[-0.026896201074123,-0.0051929336041212,-0.01660593226552],[0.046293571591377,0.020380163565278,0.026312038302422],[-0.016252314671874,0.041795432567596,-0.057503968477249]],[[-0.073803700506687,-0.0085942782461643,-0.018221272155643],[-0.034231938421726,-0.0049611856229603,-0.050170514732599],[-0.013481278903782,-0.021885255351663,0.077944859862328]],[[-0.071265339851379,-0.0015600241022184,-0.017022680491209],[-0.007169290445745,0.061308447271585,-0.026900324970484],[-0.027573470026255,0.042199570685625,0.028692388907075]],[[0.021069031208754,-0.020915526896715,0.090672507882118],[0.013934925198555,-0.0066828727722168,0.070746622979641],[0.018224164843559,-0.027155872434378,-0.058855894953012]],[[0.019664205610752,-0.050005998462439,0.028315186500549],[-0.005529357586056,0.005840954836458,0.040429886430502],[0.070981986820698,0.016419056802988,0.065812587738037]],[[0.011314976029098,-0.031402815133333,-0.037286553531885],[0.11572787165642,-0.060055240988731,0.071504399180412],[-0.021079177036881,0.047309380024672,-0.021269682794809]],[[0.024935230612755,0.025665260851383,0.036995466798544],[0.029574928805232,-0.0393947660923,0.041638009250164],[0.014017695561051,0.027731427922845,0.008198095485568]],[[0.015738099813461,-0.00070181058254093,0.015965525060892],[0.043431773781776,0.054112337529659,0.06008854880929],[-0.058055315166712,-0.059647105634212,0.035425700247288]],[[-0.0080733988434076,0.045446276664734,-0.044897623360157],[-0.0055149593390524,0.065818481147289,-0.0055488380603492],[-0.063543021678925,0.11300074309111,0.047401126474142]],[[0.023958651348948,0.033490184694529,-0.021582283079624],[0.066269241273403,-0.056606501340866,-0.079297780990601],[0.032106805592775,-0.052450258284807,0.11176221072674]],[[-0.047463919967413,-0.0049320547841489,-0.0016123350942507],[0.049122750759125,0.037324640899897,-0.019638491794467],[0.04195923358202,-0.038707185536623,0.024016695097089]],[[0.0069624045863748,-0.022116806358099,0.040865961462259],[-0.070554822683334,0.024955498054624,0.10922452807426],[-0.04700081050396,-0.028937252238393,-0.016330590471625]],[[0.048392254859209,0.055767379701138,-0.0053392858244479],[-0.018559779971838,-0.063855960965157,0.00074521632632241],[0.055402375757694,0.0050486433319747,0.015444270335138]],[[0.015202529728413,-0.039525039494038,-0.037397220730782],[0.015320107340813,0.049809172749519,0.016649343073368],[0.017189724370837,-0.0006370588671416,-0.037022046744823]],[[0.023069974035025,0.048081997781992,-0.0125627592206],[0.032650027424097,0.059289380908012,0.037851516157389],[-0.035049255937338,0.0083315558731556,0.0046968441456556]],[[0.022072527557611,0.043666772544384,-0.076911062002182],[-0.013107381761074,-0.07537891715765,0.012694136239588],[0.022903731092811,-0.022235436365008,-0.0010422689374536]],[[0.040087018162012,0.09032541513443,-0.028685973957181],[0.03396388143301,0.047846760600805,0.038957472890615],[0.011318878270686,0.0075698778964579,0.060816738754511]],[[0.051681037992239,0.012936585582793,-0.0068528363481164],[0.029569368809462,0.064348191022873,-0.06546875834465],[-0.038238495588303,0.046016406267881,0.036036413162947]],[[-0.015978304669261,0.006187301594764,0.014118948020041],[-0.032401274889708,-0.023949217051268,0.010509964078665],[0.0086193764582276,-0.028089758008718,-0.045829065144062]],[[0.064800299704075,0.027087369933724,0.016688214614987],[-0.038242544978857,-0.041826386004686,-0.026936929672956],[0.032706126570702,-0.041479483246803,-0.010071404278278]],[[0.013908513821661,0.060992605984211,0.064498960971832],[0.037655021995306,-0.05035762116313,0.046319626271725],[-0.057398535311222,0.051666289567947,-0.045558486133814]],[[0.037743840366602,-0.0047900443896651,-0.032413359731436],[0.037312287837267,0.035664301365614,0.04160488024354],[0.0047982283867896,-0.10859763622284,-0.039743687957525]],[[0.026836026459932,0.070666253566742,-0.018679428845644],[0.091704338788986,0.04552599042654,-0.017982086166739],[0.064539641141891,-0.13061162829399,0.018142845481634]],[[0.033752750605345,0.049966525286436,0.053041025996208],[0.015946596860886,-0.010142482817173,0.0050776395946741],[-0.019292008131742,-0.012840753421187,-0.025750685483217]],[[0.045032847672701,-0.035694763064384,-0.01180973649025],[0.0165427736938,-0.039874102920294,0.01048758905381],[0.03885804861784,-0.022975647822022,-0.037337560206652]],[[0.0058837905526161,0.016052534803748,-0.0014136395184323],[0.016116177663207,0.046423815190792,0.026838630437851],[-0.008553390391171,-0.04591541737318,-0.047376964241266]],[[0.025941414758563,0.0024230892304331,0.060930904000998],[0.047242671251297,-0.011312070302665,-0.060614120215178],[0.040574040263891,0.038717173039913,0.036532193422318]],[[-0.0070337816141546,0.01981408521533,-0.012643848545849],[-0.021892407909036,0.011084862053394,-0.041892789304256],[0.083169274032116,-0.019690940156579,0.002017950406298]],[[-0.024656403809786,0.042712934315205,-0.012259961105883],[0.042189724743366,0.022801192477345,0.019324209541082],[-0.030984098091722,0.013739881105721,-0.023267533630133]],[[-0.022333458065987,-0.02477614954114,-0.023519828915596],[-0.03733704611659,0.055418144911528,-0.0042641451582313],[-0.048918191343546,-0.016124738380313,-0.0165138784796]],[[0.004160841461271,-0.0036659082397819,-0.017899325117469],[0.04279026016593,0.014106506481767,-0.014593584463],[0.029982442036271,0.02883636765182,0.014700958505273]],[[-0.036641575396061,0.012613258324564,-0.019909689202905],[0.033475782722235,-0.014619783498347,-0.028792206197977],[0.0067916619591415,0.087347261607647,0.055575236678123]],[[-0.0099236555397511,0.087956182658672,-0.021833665668964],[0.025669502094388,0.087040841579437,0.042123146355152],[0.069142445921898,0.046879187226295,0.034534994512796]],[[0.03195122256875,-0.013285575434566,-0.029112769290805],[0.048549629747868,-0.060632027685642,-0.010612679645419],[0.015821659937501,0.07398410141468,0.05057168751955]],[[0.032357484102249,0.0073455283418298,0.018416674807668],[0.039131630212069,-0.020960435271263,-0.0035593097563833],[0.038367234170437,-0.0036673790309578,0.0059913462027907]],[[-0.03029902279377,0.012553663924336,-0.010991654358804],[0.041032589972019,0.0018862207653001,-0.0084920339286327],[0.024134248495102,0.031657189130783,0.052082747220993]],[[0.050018228590488,-0.0045697786845267,-0.015998389571905],[-0.0040105595253408,0.016332453116775,-0.028238104656339],[-0.0013615138595924,0.028004754334688,0.0047324472106993]],[[-0.0013855593279004,0.014855426736176,-0.0081729032099247],[0.012125397101045,-0.058378908783197,0.0062710675410926],[0.011948792263865,0.075000517070293,0.059755384922028]],[[-0.0063603669404984,0.040183309465647,-0.020360212773085],[-0.013542185537517,0.023230336606503,0.0066406228579581],[0.017035825178027,-0.015260482206941,0.028269039466977]],[[-0.076936639845371,0.086376845836639,0.026346931234002],[-0.0276695266366,-0.058305531740189,-0.030423808842897],[0.015720803290606,-0.014684431254864,-0.0054822908714414]],[[0.067040733993053,-0.0029089043382555,-0.015053897164762],[-0.027861284092069,0.052832890301943,0.058160696178675],[0.050361141562462,0.027021657675505,0.038842275738716]],[[0.020215770229697,0.08742269128561,-0.012899111956358],[0.025570625439286,-0.064535990357399,-0.032384961843491],[0.061185635626316,0.019804980605841,0.025227852165699]],[[0.0017364929663017,0.050332974642515,0.039119325578213],[0.015148965641856,-0.017865240573883,0.014367152936757],[-0.004054999910295,0.048013806343079,-0.062297698110342]]],[[[0.047701217234135,-0.048511873930693,-0.013371400535107],[-0.033878274261951,-0.062989376485348,-0.029686944559216],[-0.023763258010149,-0.035425025969744,0.021889228373766]],[[0.12485056370497,-0.051753580570221,0.039150644093752],[0.022173712030053,-0.017002955079079,0.050405126065016],[0.047151181846857,0.050338853150606,0.0071263671852648]],[[0.026742761954665,-0.08844992518425,0.00089580233907327],[-0.019770471379161,0.04791422560811,0.0047373389825225],[0.048940986394882,-0.033728182315826,-0.0090842004865408]],[[-0.019469866529107,-0.0095270993188024,0.033156644552946],[-0.010955181904137,-0.025730399414897,0.010942252352834],[-0.02304788120091,0.017043251544237,-0.0029302535112947]],[[-0.029532080516219,-0.041218113154173,-0.026518469676375],[0.033656153827906,-0.0026181316934526,0.018605399876833],[-0.039633516222239,-0.042564921081066,-0.022288028150797]],[[-0.043882861733437,-0.024052044376731,-0.0067569916136563],[-0.0035547164734453,-0.026420645415783,-0.031402368098497],[-0.061254393309355,0.055717073380947,-0.070516631007195]],[[0.0067334421910346,-0.06940621137619,-0.032651495188475],[-0.036140684038401,-0.048990115523338,0.0029963254928589],[0.039423137903214,-0.043837901204824,-0.030512223020196]],[[0.0044580758549273,-0.01135777682066,0.016234058886766],[-0.025760266929865,-0.0046213092282414,-0.016422312706709],[-0.036210767924786,0.0038847774267197,0.01068261358887]],[[0.031213061884046,0.015689883381128,-0.0036262315697968],[-0.0094940355047584,-0.093073137104511,0.026572177186608],[0.015824416652322,0.075662709772587,0.026480814442039]],[[-0.058288991451263,0.12731997668743,-0.029846807941794],[-0.057953104376793,-0.023093428462744,0.028155788779259],[-0.017838465049863,0.020592665299773,0.016392977908254]],[[-0.006941513158381,0.037796720862389,-0.012530743144453],[0.03302825242281,-0.046505760401487,-0.053904108703136],[-0.035952221602201,0.027388093993068,0.012059452943504]],[[-0.0052524260245264,0.062035381793976,0.033660374581814],[0.034484934061766,0.057678941637278,0.026534305885434],[0.0055373958311975,0.047834113240242,-0.0042384727858007]],[[-0.0054905833676457,-0.073951780796051,0.0051220688037574],[0.033072527498007,0.048939898610115,-0.023377439007163],[-0.023665005341172,-0.040859438478947,-0.011208430863917]],[[0.027414731681347,0.01166427321732,0.030917255207896],[0.03415571898222,0.019339652732015,0.0076891151256859],[-0.070875532925129,0.0083323735743761,0.001656768261455]],[[0.07507848739624,-0.0070530166849494,0.0018652548315004],[0.076402865350246,-0.0064922128804028,-0.054594554007053],[0.048249945044518,0.096257224678993,-0.017931023612618]],[[0.02759107016027,0.00040414731483907,-0.021271014586091],[-0.012081020511687,-0.027179211378098,-0.056225523352623],[-0.034821048378944,0.07839635014534,0.016518155112863]],[[0.06223863735795,0.00022035295842215,-0.0068832873366773],[-0.047512635588646,-0.0030713633168489,-0.041206035763025],[-0.080104023218155,0.061194762587547,-0.0369120426476]],[[0.018688907846808,0.052229899913073,0.019359743222594],[-0.043769899755716,0.067458413541317,0.022893374785781],[-0.0071074003353715,-0.033630400896072,0.0012801242992282]],[[-0.045271243900061,-0.010994421318173,0.00093191681662574],[-0.038464307785034,-0.087665267288685,0.0022956279572099],[-0.01915137656033,-0.014329944737256,0.043779138475657]],[[0.011438154615462,0.075170129537582,-0.033123977482319],[-0.026750616729259,0.049666624516249,0.0040227025747299],[0.039794586598873,-0.0015187803655863,-0.068165183067322]],[[-0.071512006223202,0.051141452044249,0.036223340779543],[-0.01076899189502,-0.031912975013256,0.0091581223532557],[0.080852709710598,-0.040842942893505,-0.081805191934109]],[[0.013102603144944,-0.073855049908161,-0.0047149206511676],[-0.014030198566616,-0.0032403075601906,-0.036397691816092],[0.061140656471252,-0.0095530012622476,-0.03464063629508]],[[-0.021170319989324,-0.064942046999931,-0.020212549716234],[0.0066336747258902,-0.013350420631468,-0.04860196262598],[-0.028966721147299,0.028743727132678,-0.016101924702525]],[[-0.050219010561705,-0.0095910280942917,-0.04735766723752],[-0.095859460532665,0.043357692658901,-0.020129714161158],[-0.080965980887413,0.0026377516333014,-0.013029626570642]],[[0.0072186887264252,-0.028598360717297,0.038048077374697],[-0.05284683033824,0.027576558291912,-0.00055323849665001],[0.0076071997173131,0.016427675262094,0.061916776001453]],[[-0.007181775290519,0.064066030085087,-0.039705436676741],[-0.047553718090057,0.00028456750442274,0.015763500705361],[0.036903500556946,0.002959328237921,-0.037252090871334]],[[-0.027279138565063,0.041304118931293,-0.037364903837442],[0.0050262282602489,0.017604438588023,-0.046138893812895],[0.050531554967165,-0.083497226238251,-0.0042912294156849]],[[-0.032525688409805,-0.069689348340034,0.010693517513573],[0.0088837528601289,0.061200562864542,-0.055007040500641],[-0.0036622104234993,-0.047199081629515,0.022613735869527]],[[0.0099231777712703,0.0074976831674576,-0.067284062504768],[0.097760587930679,-0.015215331688523,-0.049052160233259],[-0.03337137401104,-0.0048337075859308,-0.010401760227978]],[[-0.092676676809788,0.073177240788937,0.0087742656469345],[0.038553833961487,-0.041098896414042,0.0026737002190202],[-0.037117227911949,0.077475048601627,-0.033369451761246]],[[-0.031831126660109,-0.090301841497421,-0.02127411775291],[-0.057087663561106,-0.052925750613213,-0.038347452878952],[-0.054741643369198,0.030114199966192,-0.027200467884541]],[[-0.039024073630571,0.021127123385668,0.034737776964903],[0.039337433874607,-0.029597353190184,-0.081139966845512],[0.030333848670125,-0.10961573570967,-0.0065108207054436]],[[0.019276592880487,-0.0069764093495905,0.049428958445787],[-0.042091425508261,-0.012047227472067,0.03211523219943],[0.0356112010777,-0.035766258835793,-0.035709492862225]],[[-0.052338846027851,0.046255964785814,0.026375496760011],[0.010387781076133,-0.012485215440392,0.039944041520357],[-0.04504307359457,0.017598524689674,-0.076973177492619]],[[0.01013427041471,0.015684351325035,0.02009398303926],[0.013526753522456,0.020216230303049,-0.035117823630571],[-0.071893267333508,0.0032645580358803,0.01205534208566]],[[0.0082790739834309,-0.039647277444601,-0.056274589151144],[-0.0090272752568126,0.013873752206564,-0.027240097522736],[-0.081407345831394,0.043885692954063,-0.030904836952686]],[[-0.060801558196545,0.04084650054574,-0.029311107471585],[0.014511507935822,-0.11220493167639,0.01347108092159],[-0.03999887034297,0.060270953923464,-0.0085116857662797]],[[-0.089062109589577,-0.029208358377218,0.024897923693061],[0.0085470965132117,0.051920592784882,0.06874968111515],[0.041175950318575,0.019963344559073,-0.0045283688232303]],[[-0.019869586452842,0.0075927278958261,-0.030321110039949],[0.024644248187542,-0.0034215422347188,0.0015121499309316],[0.024247890338302,-0.0035456740297377,0.035124123096466]],[[-0.061339419335127,-0.068728342652321,0.024269977584481],[-0.061263799667358,-0.0070171635597944,0.016164062544703],[0.0023146497551352,0.039690569043159,0.014970565214753]],[[-0.045419070869684,-0.016968481242657,-0.064008474349976],[-0.0081678563728929,0.046092566102743,0.030755998566747],[-0.017418285831809,0.055102322250605,-0.10584710538387]],[[0.019110830500722,-0.020548660308123,-0.010850803926587],[0.014985974878073,-0.051607593894005,-0.074723742902279],[0.0055744266137481,-0.016363438218832,0.025452760979533]],[[-0.044165786355734,0.089451037347317,-0.019333351403475],[0.029092907905579,-0.0056602736003697,0.020330173894763],[0.019149165600538,-0.016596673056483,-0.073806501924992]],[[0.0091857574880123,-0.024923626333475,-0.00050351186655462],[0.026447959244251,0.066902451217175,-0.074215367436409],[-0.0031916340813041,0.10635302960873,-0.0074150483123958]],[[-0.0033477523829788,0.083093725144863,-0.024540536105633],[-0.034459721297026,0.03714345395565,-0.10023333132267],[-0.030177883803844,0.012872599065304,0.057535201311111]],[[-0.010893442668021,-0.07099474221468,-0.0058217141777277],[-0.046027809381485,-0.095444969832897,0.009713688865304],[0.059522341936827,-0.025357676669955,0.033713113516569]],[[0.071526877582073,-0.031604245305061,0.0067976247519255],[-0.051481883972883,0.00073240039637312,0.034847527742386],[-0.0044752694666386,0.0044536283239722,0.045718241482973]],[[0.016804868355393,0.024989623576403,0.0032951910980046],[0.0071890936233103,0.07660199701786,-0.077377252280712],[-0.053256776183844,0.025335695594549,0.039153717458248]],[[-0.042111974209547,0.049231197685003,0.032692179083824],[0.039247192442417,-0.074797622859478,0.016560385003686],[-0.027019660919905,-0.066371105611324,0.0048711886629462]],[[-0.028035113587976,0.023801231756806,0.029735241085291],[-0.050106734037399,0.027426868677139,-0.0094417380169034],[-0.030128175392747,-0.024334017187357,-0.039210140705109]],[[-0.0011520878178999,0.062499042600393,0.050969745963812],[0.027228157967329,0.014773013070226,0.009382120333612],[-0.012208759784698,0.072066336870193,-0.057476062327623]],[[-0.070935547351837,0.056916385889053,0.055718120187521],[-0.05046933144331,-0.014289642684162,0.030546298250556],[0.059084817767143,-0.071858234703541,-0.080111630260944]],[[-0.034258041530848,-0.045779649168253,-0.022098030894995],[0.0060066636651754,0.013566182926297,-0.032555054873228],[-0.043070375919342,0.03270773217082,0.022574121132493]],[[0.044901870191097,0.01775036752224,-0.065403982996941],[0.082135759294033,-0.12113255262375,0.035302329808474],[-0.027614988386631,0.015444223769009,-0.025104438886046]],[[0.013833799399436,-0.048185426741838,-0.018841011449695],[-0.027261001989245,-0.0045327385887504,0.045707538723946],[-0.001784248277545,-0.029656700789928,-0.040873069316149]],[[-0.088934801518917,-0.0042497562244534,0.0064745396375656],[-0.0088949389755726,0.042856391519308,0.058995094150305],[0.016494346782565,0.03702886775136,0.013506862334907]],[[0.071574211120605,-0.018538685515523,-0.033917170017958],[0.030947871506214,-0.076146364212036,-0.053508628159761],[-0.0034979495685548,0.026560263708234,0.061886679381132]],[[0.026367641985416,-0.010823572054505,-0.0048787603154778],[-0.044459573924541,0.023212671279907,-0.005738069768995],[-0.05084827914834,-0.0092044975608587,-0.002217119326815]],[[-0.024317352101207,0.052766356617212,-0.0073720486834645],[-0.021503813564777,0.013079255819321,-0.03503343462944],[-0.0068792253732681,0.013784621842206,0.052256811410189]],[[-0.034952435642481,0.013768201693892,0.0034892153926194],[-0.021979209035635,0.023621927946806,0.058745812624693],[0.032449055463076,-0.037704281508923,-0.020940415561199]],[[-0.046903941780329,0.0032568068709224,0.040876753628254],[0.044703800231218,-0.011100021190941,0.072755612432957],[-0.043590772897005,0.034611526876688,-0.015079740434885]],[[-0.065504357218742,0.047050505876541,-0.0054677245207131],[-0.036272618919611,0.01693551056087,0.016073876991868],[0.0040852068923414,-0.048674315214157,0.026730349287391]],[[0.0019054388394579,0.015318932943046,0.010551587678492],[-0.038814999163151,-0.037878718227148,-0.011133288033307],[0.012412966229022,0.10734708607197,0.023741198703647]],[[-0.035326462239027,0.023957321420312,-0.012705912813544],[0.030667133629322,0.094376042485237,0.02843695692718],[0.020234072580934,0.039285231381655,0.014422535896301]],[[0.044335037469864,-0.0051958472467959,-0.050667930394411],[0.016394400969148,0.0073833679780364,-0.0027035139501095],[-0.10186015814543,0.0039921016432345,0.016707453876734]],[[-0.10441771894693,-0.010382460430264,0.11718642711639],[-0.063701905310154,0.069290027022362,0.014135112054646],[-0.070733532309532,0.026863317936659,0.021988993510604]],[[0.049552083015442,0.055879194289446,-0.067335270345211],[0.074178673326969,-0.02683363109827,0.065055646002293],[-0.035553447902203,-0.033919595181942,0.073688417673111]],[[0.0046410239301622,-0.00087053305469453,0.082715593278408],[0.0094488151371479,-0.013251531869173,0.0048825475387275],[0.005351590923965,-0.0029583624564111,-0.02847658470273]],[[0.028797114267945,-0.018638690933585,-0.004780653398484],[-0.060953695327044,0.0055033536627889,-0.025486644357443],[-0.0054531265050173,0.046483069658279,0.036113630980253]],[[0.041330676525831,0.05119064450264,0.032399445772171],[-0.014790562912822,-0.065902322530746,-0.031751777976751],[-0.043145660310984,0.015984151512384,-0.098870597779751]],[[0.013187210075557,-0.016681186854839,-0.0012832339853048],[-0.060331232845783,0.049541268497705,-0.033909577876329],[0.078048661351204,-0.014473898336291,0.013637902215123]],[[-0.030131533741951,-0.059481643140316,-0.019821038469672],[0.034195277839899,0.076349519193172,0.051994785666466],[-0.018714440986514,0.0034696254879236,-0.020174272358418]],[[-0.077289775013924,0.048613734543324,0.04018322750926],[-0.0077806618064642,0.0064000566489995,0.0183967910707],[0.021647589281201,0.021524230018258,0.041273642331362]],[[0.052506849169731,-0.085831061005592,0.018247617408633],[0.035530500113964,0.010601215995848,-0.015266785398126],[0.079705573618412,-0.0067940950393677,0.047619853168726]],[[0.051886405795813,0.010770820081234,-0.072350889444351],[-0.054495353251696,-0.044652111828327,0.029685560613871],[0.01611171849072,-0.00027534720720723,0.012690565548837]],[[-0.046302016824484,0.010767871513963,0.054334510117769],[-0.022693557664752,0.094169199466705,-0.050178837031126],[0.00061941769672558,-0.0034007201902568,0.039260946214199]],[[0.011458171531558,0.0086415065452456,0.0084976525977254],[0.0015628827968612,-0.043098144233227,-0.039643738418818],[0.066187597811222,0.1254309117794,0.013747469522059]],[[-0.03196182847023,0.011843085289001,-0.091110371053219],[-0.066410452127457,-0.025505254045129,-0.030199555680156],[-0.059611953794956,0.0087583819404244,0.05685057118535]],[[-0.063958823680878,0.046610575169325,-0.014997391961515],[0.056749422103167,-0.018630219623446,-0.029016260057688],[0.11367531120777,0.019403483718634,0.050651893019676]],[[-0.016305804252625,0.029145058244467,0.029952017590404],[-0.051511883735657,0.028750143945217,0.088367715477943],[0.027241440489888,-0.11927220225334,0.070485681295395]],[[-0.033619377762079,0.020220506936312,-0.037138115614653],[-0.0157201718539,-0.013595184311271,0.013371475972235],[-0.01821505650878,-0.064419321715832,0.0123495971784]],[[-0.022512516006827,0.010823588818312,-0.019083734601736],[-0.045158874243498,-0.10600235313177,0.033255163580179],[-0.031574625521898,0.00047382031334564,0.0098475506529212]],[[0.028807528316975,-0.034653011709452,0.019580004736781],[0.0082363449037075,-0.048688020557165,-0.039250142872334],[-0.044726468622684,0.046691212803125,0.029341233894229]],[[0.014123474247754,0.038317508995533,0.054291997104883],[0.00051841605454683,-0.078173451125622,-0.044719565659761],[-0.059768605977297,0.030672952532768,0.016419706866145]],[[-0.06694183498621,-0.042688831686974,-0.019843703135848],[0.0096574630588293,-0.11354263871908,0.010870933532715],[0.033375900238752,0.018146812915802,-0.051019076257944]],[[0.09258858859539,5.7023309636861e-05,0.0057159448042512],[0.027756819501519,-0.042068105190992,-0.053857658058405],[-0.051247358322144,0.074218116700649,0.078914076089859]],[[-0.052040122449398,-0.053141180425882,0.043111186474562],[-0.013307601213455,0.041847702115774,-0.00080625817645341],[-0.0028139478527009,-0.055924247950315,-0.020398808643222]],[[0.0091224955394864,0.068237282335758,-0.060716673731804],[-0.054934810847044,0.0074582323431969,-0.03337113186717],[0.0096549652516842,0.022255964577198,0.0081493463367224]],[[-0.0067242668010294,0.00075404578819871,0.029227590188384],[-0.057548489421606,-0.014849902130663,-0.0060598384588957],[-0.032283443957567,-0.010866018012166,0.011807909235358]],[[0.039130553603172,-0.03132189065218,0.028970891609788],[-0.011128634214401,-0.065616831183434,0.050904925912619],[-0.024679373949766,0.02488986775279,-0.026828812435269]],[[-0.0097704855725169,-0.00054933590581641,-0.087971828877926],[0.0062199356034398,0.015437194146216,0.004355444572866],[0.056048087775707,0.020127978175879,-0.0077000483870506]],[[-0.02089405991137,-0.031078012660146,0.011493825353682],[-0.014062933623791,-0.020632738247514,0.010268925689161],[0.032152809202671,-0.015956157818437,-0.008201633580029]],[[0.018995370715857,-0.034522090107203,0.026581173762679],[0.031608171761036,0.044204093515873,-0.018842654302716],[-0.065275110304356,0.0054414351470768,0.022511340677738]],[[0.05773837864399,0.0072453985922039,0.066098377108574],[-0.045366365462542,0.041755776852369,-0.024290649220347],[0.0030216083396226,-0.0027599565219134,-0.018198551610112]],[[0.017940066754818,-0.040618732571602,0.025427792221308],[0.001458246842958,0.013485851697624,0.026440666988492],[-0.010417179204524,-0.018236443400383,-0.0073674954473972]],[[-0.044127900153399,0.00122055481188,0.0066002928651869],[-0.08142065256834,-0.036642279475927,-0.063802182674408],[-0.016047663986683,-0.014154908247292,0.0064282147213817]],[[0.032061100006104,0.0065379263833165,0.023170420899987],[0.0086783273145556,0.021744146943092,-0.010784265585244],[0.053013473749161,-0.008657262660563,0.037355568259954]],[[0.013201967813075,0.010020484216511,-0.037554793059826],[-0.040784504264593,0.0036487116012722,0.0073355343192816],[-0.0077223973348737,0.010253832675517,0.023509606719017]],[[0.031974345445633,-0.018006796017289,-0.046601846814156],[-0.033839583396912,0.019255688413978,-0.041304904967546],[0.066475830972195,0.010790975764394,-0.055202327668667]],[[0.0077303042635322,-0.0065057286992669,-0.024062911048532],[-0.019074803218246,0.0059225079603493,-0.035959661006927],[0.0047197542153299,-0.038592990487814,-0.029357923194766]],[[0.027613636106253,0.053285624831915,0.014518359676003],[0.0069172899238765,-0.070325314998627,-0.041531305760145],[0.04037619382143,0.0037970480043441,0.029204549267888]],[[-0.091269791126251,-0.066318482160568,-0.038434505462646],[0.058398548513651,0.0016676373779774,-0.0035548198502511],[-0.013909078203142,-0.024465177208185,-0.033797655254602]],[[0.01277294754982,-0.053611375391483,-0.0020888219587505],[-0.044558633118868,-0.026206903159618,0.052772127091885],[-0.10382790118456,-0.002490954939276,-0.026110986247659]],[[-0.053735215216875,0.018581682816148,0.013019353151321],[0.0086759375408292,-0.010788057930768,0.027928410097957],[-0.012441072613001,0.063600018620491,-0.075824469327927]],[[-0.014999353326857,0.049516655504704,-0.011935803107917],[-0.031998980790377,-0.0012237871997058,-0.055931750684977],[0.045062024146318,-0.063065335154533,-0.021086787804961]],[[0.0038283094763756,-0.014866040088236,0.063441038131714],[0.026475312188268,0.043458513915539,-0.078912608325481],[-0.061078544706106,-0.034082729369402,-0.035524733364582]],[[0.040852256119251,-0.0018711228622124,-0.078741438686848],[-0.026457287371159,0.045323774218559,0.0013801789609715],[0.023123132064939,0.0075053968466818,0.031781908124685]],[[-0.0079448260366917,0.056818228214979,-0.068489886820316],[0.017538720741868,-0.015751373022795,-0.025394912809134],[-0.0096386540681124,-0.023056777194142,-0.0077545079402626]],[[0.012375159189105,0.030074950307608,-0.013607314787805],[0.04683842509985,-0.02921424433589,-0.024054294452071],[-0.042449086904526,-0.0049018273130059,-0.067524716258049]],[[-0.022904515266418,-0.049310076981783,0.0084177888929844],[-0.082394734025002,0.014771884307265,-0.10856900364161],[0.08531729131937,-0.036079529672861,-0.093023024499416]],[[-0.030313650146127,-0.0061040371656418,0.045028880238533],[0.066592864692211,0.015301394276321,0.0079397205263376],[0.096839234232903,0.0052077998407185,0.0040160985663533]],[[-0.048347011208534,0.037953693419695,0.0093462485820055],[-0.0072651002556086,0.0041470658034086,-0.063369229435921],[-0.0068496889434755,-0.014558356255293,0.074161790311337]],[[-0.049953918904066,-0.06235059723258,0.033450495451689],[-0.017774956300855,-0.038358964025974,0.034412018954754],[0.035025049000978,0.054851498454809,-0.021840700879693]],[[-0.092347525060177,0.034993719309568,-0.014844380319118],[-0.038540467619896,-0.050668105483055,-0.026738760992885],[0.011240197345614,-0.041134007275105,0.012115432880819]],[[-0.068380422890186,0.0087220519781113,-0.014161468483508],[0.029586927965283,-0.02364713139832,-0.03859256953001],[-0.00108099472709,-0.053376570343971,-0.011864030733705]],[[-0.03794090077281,0.031682606786489,0.016724778339267],[-0.04844081401825,-0.027213901281357,0.020824598148465],[0.013342469930649,0.062354482710361,0.016847686842084]],[[-0.010942944325507,-0.0079131834208965,-0.029805228114128],[0.03013313934207,0.0062663150019944,-0.02519391104579],[0.016124939545989,0.011120110750198,-0.034223835915327]],[[0.067081809043884,-0.015007022768259,0.044314339756966],[-0.062603630125523,0.026214607059956,-0.02070490270853],[-0.00023452563618775,-0.017327649518847,0.0047002518549562]],[[-0.028392881155014,0.10106938332319,-0.062448021024466],[0.03851180896163,-0.0040661552920938,-0.0093553438782692],[0.037973452359438,-0.039504569023848,-0.020091636106372]],[[-0.030270520597696,0.012457970529795,0.028145240619779],[0.0092544993385673,0.064252220094204,0.05571972951293],[-0.0017339892219752,0.032288178801537,0.0033976470585912]],[[-0.076985664665699,-0.035218141973019,0.037497747689486],[0.040033124387264,0.00400335714221,0.0077418629080057],[0.012157180346549,-0.0091727394610643,0.024277931079268]],[[0.009263327345252,0.066550485789776,-0.0107261845842],[0.013069409877062,-0.021681295707822,0.054236572235823],[0.02027122862637,-0.0033752114977688,0.020992456004024]],[[-0.01120322663337,0.0082281325012445,0.0034692392218858],[0.016535481438041,0.027237106114626,-0.025928493589163],[0.036410093307495,-0.038900665938854,-0.026576241478324]],[[-0.018015226349235,-0.019086413085461,0.013028683140874],[-0.043896164745092,0.06712332367897,-0.018042324110866],[0.058023113757372,0.053084425628185,0.039187479764223]],[[-0.046774134039879,-0.03013832308352,0.017115496098995],[-0.039826057851315,-0.017615230754018,0.071667388081551],[-0.018684443086386,-0.021107291802764,0.093423441052437]],[[0.028099816292524,0.047185622155666,-0.019986618310213],[-0.0097179133445024,-0.018654033541679,0.030087469145656],[-0.063951902091503,-0.03661959990859,0.034689966589212]],[[0.019043728709221,0.0014552214415744,0.01708759739995],[0.099765449762344,-0.011388583108783,0.056466221809387],[-0.0056133442558348,-0.038331415504217,-0.031822890043259]],[[0.064733885228634,0.041710339486599,-0.0038508777506649],[0.057704716920853,-0.0048877522349358,-0.0023725405335426],[-0.026090746745467,-0.0064452337101102,-0.027345325797796]]],[[[-0.041626203805208,0.044670566916466,-0.074272662401199],[-0.0095100002363324,0.0054789949208498,0.090719684958458],[-0.0025240373797715,0.017921894788742,-0.028576390817761]],[[-0.05935226008296,0.073770135641098,0.016333542764187],[0.0056850290857255,-0.041823241859674,0.0064530977979302],[-0.02013804204762,0.001373570645228,0.024956148117781]],[[-0.022529380396008,0.0066719651222229,-0.032107971608639],[0.0024786817375571,0.044078126549721,-0.0022927636746317],[-0.023281769827008,-0.0063610728830099,-0.019037624821067]],[[-0.0071446457877755,0.026234112679958,0.014670791104436],[0.0093315243721008,-0.00095588894328102,0.059158563613892],[0.027068223804235,-0.026546472683549,-0.085872650146484]],[[-0.031922735273838,0.019102843478322,-0.014750770293176],[-0.031357407569885,-0.006427904125303,0.0090337097644806],[-0.0073774661868811,0.033148519694805,-0.0024422837886959]],[[0.011970770545304,-0.012916335836053,0.018465528264642],[-0.00042067578760907,-0.023975415155292,0.058188129216433],[-0.037870682775974,0.017842059955001,-0.034035857766867]],[[0.032702822238207,-0.046372443437576,0.016677211970091],[0.015991637483239,0.058542683720589,0.0071720532141626],[-0.062559515237808,-0.014388185925782,-0.024986546486616]],[[-0.0025208573788404,0.0010612870100886,0.0018727720016614],[-0.015019664540887,0.064961060881615,-0.026185471564531],[-0.01544784847647,0.020114464685321,0.039392251521349]],[[-0.020474053919315,-0.030718309804797,0.048005562275648],[0.049213979393244,0.033157605677843,-0.018555924296379],[-0.035381231456995,-0.011685902252793,-0.041927676647902]],[[0.056426160037518,0.018823105841875,-0.027898695319891],[0.013904315419495,0.045493863523006,0.027639744803309],[-0.049849949777126,-0.026100572198629,0.022273164242506]],[[0.021867357194424,0.048054549843073,-0.0064035556279123],[-0.01942577585578,-0.0088799903169274,0.0022046798840165],[-0.043379750102758,0.018771836534142,-0.042046505957842]],[[0.033712401986122,-0.024636425077915,0.032676357775927],[-0.014296100474894,-0.080975323915482,-0.010867732577026],[-0.036860521882772,0.033896215260029,0.034746170043945]],[[0.046235281974077,0.02491183578968,-0.011014516465366],[0.028625337406993,0.030271353200078,-0.057732198387384],[0.011890668421984,0.0020058616064489,-0.057998824864626]],[[-0.010840041562915,-0.036542259156704,-0.051151260733604],[-0.009438899345696,-0.025147438049316,-0.013036045245826],[0.01029809564352,0.048111889511347,-0.011879575438797]],[[-0.019194664433599,-0.028616454452276,-0.022181134670973],[0.0083220154047012,0.036914717406034,0.073466494679451],[0.036895703524351,-0.021405797451735,0.039921842515469]],[[0.015085395425558,-0.020115483552217,0.040382198989391],[0.060921311378479,0.10218296200037,0.01373400259763],[-0.038634557276964,-0.028401492163539,-0.096522837877274]],[[0.0082564167678356,0.033173359930515,0.025324011221528],[-0.047821927815676,0.0082442173734307,-0.038818944245577],[-0.01660486496985,0.045085746794939,-0.026783682405949]],[[0.039148464798927,0.016143534332514,-0.012349400669336],[-0.031119100749493,0.089717969298363,-0.018059965223074],[0.01369815133512,0.0063911094330251,-0.056306824088097]],[[0.011682044714689,0.040608882904053,-0.019082114100456],[-0.1289137750864,0.023591572418809,0.014894767664373],[0.011397137306631,-0.023644773289561,0.028132265433669]],[[0.023649780079722,0.0024808272719383,-0.0052551277913153],[-0.027962287887931,-0.024264404550195,-0.01199425663799],[-0.013433141633868,-0.017430393025279,0.0079185422509909]],[[0.0025701734703034,0.094897799193859,-0.022015806287527],[0.05385597422719,-0.024350883439183,-0.010412828996778],[0.010746536776423,0.042886398732662,-0.030974546447396]],[[0.0045670559629798,-0.06488149613142,-0.031721346080303],[-0.02238549105823,0.083706595003605,0.064821161329746],[-0.0081891687586904,0.046959184110165,0.011131498962641]],[[-0.041834179311991,0.0071803312748671,0.026079624891281],[0.033608205616474,0.0088338274508715,-0.011013003066182],[-0.051460545510054,-0.084011994302273,0.023559814319015]],[[0.023279950022697,0.11870461702347,-0.0021216107998043],[-0.031192678958178,0.026717413216829,0.022469127550721],[-0.043032843619585,-0.03295536339283,-0.036000143736601]],[[-0.015924420207739,-0.073479689657688,-0.0066977427341044],[0.00013205848517828,-0.0014631319791079,-0.043711174279451],[0.061464931815863,0.048985611647367,0.036096479743719]],[[0.011054488830268,-0.015041313134134,-0.050029307603836],[-0.065546415746212,-0.019316976889968,0.022265259176493],[-0.018112557008862,0.044781405478716,-0.036226361989975]],[[0.00068803667090833,0.01499214489013,-0.00042804938857444],[-0.09795867651701,0.0085237435996532,-0.027665220201015],[0.010867346078157,0.026907030493021,0.018624506890774]],[[0.028231870383024,0.002432179171592,0.0058207917027175],[0.01333113014698,-0.017856894060969,0.0095707764849067],[-0.063714690506458,0.0089457090944052,-0.036159671843052]],[[0.017005678266287,0.011287334375083,0.047654554247856],[-0.051001507788897,-0.044159073382616,0.0093251680955291],[0.019810544326901,0.017491195350885,-0.0097399326041341]],[[0.055981859564781,0.0060573555529118,-0.032075956463814],[0.016175519675016,0.0025076153688133,-0.0014759612968192],[0.012562345713377,0.019393956288695,-0.049955382943153]],[[0.048737358301878,-0.012020847760141,-0.023279903456569],[0.045457907021046,0.048684883862734,-0.039889562875032],[-0.078530535101891,-0.0030783291440457,0.052489474415779]],[[-0.046054858714342,-0.017488507553935,0.022341130301356],[0.045367661863565,-0.022969704121351,0.0015388185856864],[-0.034503862261772,0.049595054239035,-0.0061633177101612]],[[-0.033733230084181,0.029731228947639,0.043983269482851],[-0.029417300596833,0.067634999752045,0.018635304644704],[0.0086992988362908,-0.040529746562243,-0.015483900904655]],[[-0.010088328272104,-0.015937015414238,0.014348046854138],[0.00039973552338779,-0.013064707629383,0.056475829333067],[-0.04810744151473,-0.023633494973183,0.069734908640385]],[[-0.0066281100735068,0.005335287656635,0.0091773718595505],[-0.0060733300633729,-0.0083363894373178,-0.042119525372982],[-0.038137648254633,0.036245010793209,-0.010482728481293]],[[0.065185405313969,-0.0024718276690692,-0.011128298006952],[0.0034753601066768,-0.0087420651689172,0.00085029640467837],[0.0058326027356088,-0.022163173183799,-0.045330852270126]],[[-0.0060241241008043,-0.044562965631485,-0.028200140222907],[-0.017078008502722,0.0096498923376203,0.043924257159233],[0.056336008012295,0.013609102927148,0.064030662178993]],[[0.017476670444012,-0.016005290672183,0.083101205527782],[0.043271910399199,0.011338461190462,-0.047340743243694],[-0.023867424577475,-0.069077283143997,0.0096466261893511]],[[0.016435379162431,-0.089599385857582,-0.060192532837391],[0.022622870281339,0.057458382099867,0.0021624609362334],[-0.031600382179022,-0.036464605480433,0.067296296358109]],[[0.076083175837994,0.0032334420830011,0.0067774089984596],[0.03691303730011,-0.02746913395822,-0.083202727138996],[-0.029903765767813,0.0012517905561253,-0.048703793436289]],[[0.023220812901855,-0.059041868895292,0.046621784567833],[0.0099960472434759,-0.079969927668571,-0.051054295152426],[0.039175659418106,0.015139527618885,0.0046751345507801]],[[0.010203035548329,-0.011513091623783,-0.01511043868959],[-0.005414439830929,0.018978040665388,0.076320886611938],[0.0070234998129308,-0.015497693791986,-0.03245934471488]],[[0.043918743729591,0.043988082557917,0.028959544375539],[-0.021143531426787,-0.063849195837975,0.047617491334677],[0.012599126435816,-0.067083165049553,-0.023046413436532]],[[0.013056146912277,0.027109628543258,0.021216621622443],[-0.003715145168826,-0.07867656648159,0.013591826893389],[-0.0084445467218757,0.00022889327374287,-0.01644990593195]],[[0.10491520166397,0.035215340554714,-0.078369989991188],[0.037107940763235,-0.082429431378841,-0.033469598740339],[0.027747934684157,0.001854705507867,-0.028484698385]],[[-0.042799189686775,-0.0081146750599146,-0.06748054921627],[-0.024085974320769,0.051921423524618,0.040560200810432],[0.01028532255441,0.010201192460954,0.033738486468792]],[[0.01495479606092,0.020531473681331,-0.033720817416906],[-0.0065023396164179,0.0055764033459127,-0.016654297709465],[0.0026789212133735,-0.010744771920145,-0.039837311953306]],[[-0.011286083608866,0.070809848606586,0.068169996142387],[-0.0020756488665938,-0.048158917576075,-0.020956752821803],[-0.046179443597794,-0.01491073332727,-0.037218656390905]],[[-0.058319356292486,0.042156983166933,0.0083613004535437],[-0.068816810846329,-0.070752188563347,0.044682294130325],[0.046298515051603,0.021788878366351,0.0053358478471637]],[[-0.013330240733922,0.021217415109277,-0.013592350296676],[0.0042386478744447,0.051311295479536,0.055407032370567],[-0.087817907333374,-0.072582758963108,0.048251677304506]],[[0.0225500613451,-0.0047062104567885,0.027065772563219],[-0.025794938206673,-0.0072200428694487,0.01998882740736],[0.013155402615666,-0.022685375064611,-0.05778319388628]],[[-0.054560083895922,-0.019873172044754,-0.043746832758188],[0.018743986263871,0.023697916418314,0.049901388585567],[-0.0073251891881227,-0.036340586841106,0.044842600822449]],[[-0.04829216375947,0.058398731052876,0.0075458218343556],[0.011962386779487,-0.0093840416520834,-0.051386047154665],[0.053764589130878,-0.01591550372541,-0.019757686182857]],[[0.018320359289646,0.035812426358461,0.030363144353032],[-0.03110682964325,-0.037872388958931,0.011491966433823],[-0.10715456306934,0.0061358297243714,-0.024064861238003]],[[-0.021863853558898,0.031556405127048,-0.031204411759973],[0.027222057804465,-0.043274790048599,0.058306977152824],[0.044984612613916,0.0028836133424193,-0.080624647438526]],[[-0.020458240061998,-0.020573128014803,-0.036423530429602],[-0.01987674459815,0.0041626491583884,-0.0049467864446342],[-0.022475706413388,0.051723793148994,0.018872043117881]],[[-0.035865839570761,0.015728613361716,0.030711177736521],[0.084094934165478,0.034486189484596,-0.044183321297169],[-0.047441188246012,-0.036579858511686,0.028772555291653]],[[-0.011555672623217,-0.04999803006649,0.069433242082596],[-0.012204627506435,0.091460049152374,-0.0033911848440766],[0.0069112717173994,-0.046277768909931,-0.049397371709347]],[[-0.0087642539292574,-0.065259881317616,0.0045927888713777],[-0.069947525858879,-0.0014425503322855,0.045878022909164],[-0.032471299171448,0.064387306571007,-0.024332953616977]],[[0.0082672946155071,0.032384239137173,-0.06645780056715],[-0.01731600612402,0.013805255293846,0.0078192492946982],[-0.02764311991632,0.019826175644994,0.014209658838809]],[[0.0099681597203016,0.011644542217255,0.048185896128416],[-0.040577597916126,-0.057478595525026,-0.020300652831793],[0.020862724632025,-0.038275603204966,0.12702210247517]],[[0.026784468442202,0.036350753158331,-0.008214951492846],[0.032786048948765,-0.0041807834059,-0.048634726554155],[0.047502461820841,-0.059653867036104,-0.025866460055113]],[[-0.028640728443861,-0.0065602017566562,0.016538970172405],[0.024824559688568,-0.00064704578835517,-0.023671040311456],[0.05548744276166,-0.03870002925396,-0.029838232323527]],[[0.010487612336874,-0.03557625412941,0.0043894601985812],[0.0036887242458761,-0.021344274282455,-0.0085184127092361],[0.010459625162184,0.0098156407475471,-0.0022127670235932]],[[-0.078709743916988,0.013681157492101,0.01063421741128],[-0.073323979973793,0.0062141572125256,0.05168092250824],[0.0094421813264489,0.063923351466656,-0.03878640383482]],[[-0.091206625103951,-0.016493663191795,0.057196144014597],[0.068746715784073,-0.028782311826944,0.0092239547520876],[0.069921970367432,0.0092278560623527,-0.084488108754158]],[[-0.031188506633043,-0.038693591952324,-0.0025738971307874],[0.024703582748771,0.013331458903849,-0.047432858496904],[0.053905878216028,-0.0028483583591878,-0.040491007268429]],[[0.043724466115236,-0.084927812218666,0.006752944085747],[-0.0720484405756,0.0079169236123562,-0.035212330520153],[-0.0082826865836978,-0.0004704142047558,0.064071290194988]],[[0.022212661802769,-0.018649784848094,-0.014047998934984],[0.047049015760422,0.065688513219357,-0.066967114806175],[0.063657395541668,-0.013692617416382,-0.0080209150910378]],[[-0.0010044670198113,0.001390302204527,0.0072354055009782],[-0.063030712306499,-0.024959221482277,0.034621447324753],[0.080022379755974,-0.0033882101997733,-0.06274888664484]],[[0.050917252898216,-0.11650417000055,0.077226936817169],[-0.055526718497276,0.0043254303745925,-0.041156880557537],[0.023132162168622,-0.022092804312706,-0.028354376554489]],[[-0.0066889934241772,0.002988662570715,0.029918419197202],[-0.08911120146513,0.052499677985907,-0.080547332763672],[0.018660875037313,0.03108443506062,-0.01255660597235]],[[-0.048228215426207,0.039315227419138,-0.011471011675894],[0.049351643770933,0.01167693734169,-0.010490984655917],[-0.039384666830301,0.033125497400761,0.0062748128548265]],[[-0.084474802017212,0.0054451348260045,-0.06496237963438],[-0.0034572661388665,0.038665018975735,-0.0073533868417144],[0.021557580679655,0.059708692133427,0.05579860880971]],[[-0.0087799560278654,-0.056180883198977,0.00058920244919136],[-0.060427822172642,0.02258119545877,0.014120818115771],[-0.060859940946102,0.015897469595075,0.029441092163324]],[[0.037273999303579,0.014813447371125,-0.040943820029497],[-0.0059866281226277,-0.033274848014116,0.010494180954993],[-0.017001176252961,-0.017533622682095,-0.011778566055]],[[0.0052427891641855,-0.028759153559804,-0.015783257782459],[-0.02651553414762,-0.072957441210747,-0.015827808529139],[-0.024260787293315,0.044057369232178,0.072477459907532]],[[-0.021093495190144,0.036319825798273,-0.057992406189442],[-0.004202043171972,-0.026922227814794,0.031508021056652],[0.037658348679543,-0.054900173097849,-0.00058543065097183]],[[0.020067192614079,-0.027935512363911,0.044278416782618],[-0.021802313625813,0.007571576628834,0.036222949624062],[0.0050599901005626,-0.018420295789838,-0.024860609322786]],[[0.020708868280053,-0.0012708398280665,-0.017745785415173],[0.002130625769496,0.074387602508068,0.033180795609951],[-0.020350670441985,0.00080299598630518,-0.05094438418746]],[[-0.034198544919491,0.026674995198846,0.028623037040234],[0.039290264248848,-0.0082778846845031,0.023346623405814],[-0.062113258987665,-0.033340483903885,-0.041435044258833]],[[-0.0011218846775591,0.052091542631388,0.0042433477938175],[-0.06218259036541,0.00014905919670127,-0.044616613537073],[-0.045639988034964,0.030861394479871,0.033983267843723]],[[0.022069036960602,-0.015984209254384,0.048257984220982],[-0.029318146407604,0.00086789252236485,0.025452639907598],[-0.055404327809811,0.031441941857338,-0.05797466635704]],[[0.026531916111708,0.042441334575415,-0.0086952764540911],[-0.03561982139945,0.083855703473091,-0.010960885323584],[0.02734212577343,-0.040954440832138,-0.077342547476292]],[[-0.024998934939504,0.03230232000351,0.054952792823315],[-0.004349157679826,-0.014672716148198,-0.038211423903704],[0.035517998039722,0.026248849928379,-0.0063815731555223]],[[0.014086267910898,-0.03872587531805,0.048794697970152],[-0.0030546761117876,0.03571468219161,-0.047093611210585],[-0.028335755690932,0.019763192161918,-0.064539335668087]],[[-0.067135967314243,0.016326643526554,0.055145107209682],[0.042627036571503,-0.039674516767263,0.016535280272365],[-0.03875995054841,0.028987478464842,-0.056299325078726]],[[-0.011152138002217,0.0035418428014964,0.0017662275349721],[0.0304024964571,0.04620062187314,0.015614573843777],[0.0063563068397343,-0.084009371697903,-0.039468616247177]],[[-0.081529997289181,0.014888552948833,0.034979108721018],[0.046199180185795,-0.001489075133577,-0.11261091381311],[0.00031863429467194,-0.032829884439707,-0.0051999227143824]],[[-0.0090647442266345,-0.061901621520519,-0.061054788529873],[0.077253304421902,-0.049815692007542,-0.0087166102603078],[0.011812280863523,0.043951138854027,-0.0045851627364755]],[[-0.0050032394938171,-0.016527395695448,0.053403235971928],[0.019539689645171,-0.094402804970741,-0.02835476398468],[0.051337003707886,0.02174517326057,-0.046357322484255]],[[-0.031614687293768,-0.02183761075139,0.025963578373194],[-0.016470395028591,0.092658549547195,0.035016611218452],[-0.059211194515228,0.014023791998625,0.016920007765293]],[[0.023002183064818,0.046910721808672,0.0026723588816822],[-0.011469782330096,-0.012122351676226,-0.0013784230686724],[0.040492195636034,-0.12227340787649,0.028432013466954]],[[-0.023346282541752,0.016161182895303,-0.02653868496418],[-0.031033081933856,-0.059222001582384,0.059331987053156],[0.029128801077604,-0.033903062343597,0.081423088908195]],[[-0.031270314007998,0.026548063382506,0.014795697294176],[0.0067508132196963,-0.045637041330338,0.05710607022047],[-0.027861215174198,0.016969790682197,-0.021917914971709]],[[0.0048818551003933,-0.015307034365833,0.0010696910321712],[-0.032042294740677,-0.069047451019287,0.14140892028809],[0.085728421807289,-0.07427965849638,0.027586134150624]],[[0.033570256084204,-0.073585972189903,0.0030961877200752],[-0.05272575840354,-0.031718220561743,-0.072290174663067],[0.082587018609047,0.063744507730007,0.033622708171606]],[[-0.02978871576488,-0.011611080728471,-0.021772177889943],[-0.0014110147021711,-0.040666870772839,-0.017051106318831],[0.11158798635006,-0.02407050319016,0.0111158574]],[[-0.0029522671829909,0.069742925465107,-0.021269261837006],[-0.019580634310842,0.005652513820678,-0.022515006363392],[-0.00063419813523069,-0.020313888788223,0.044736541807652]],[[0.054765027016401,0.021039646118879,-0.076490543782711],[-0.064881011843681,0.028002491220832,0.071450792253017],[0.0039895977824926,0.033529412001371,-0.064783707261086]],[[0.073728561401367,0.0049785110168159,0.065587103366852],[-0.004950366448611,0.042536325752735,-0.020184099674225],[-0.063136503100395,-0.039814841002226,-0.035653810948133]],[[-0.10470303148031,-0.080791048705578,0.01191046461463],[0.025116860866547,0.048970676958561,0.045755505561829],[0.051278010010719,0.011637662537396,0.0038361528422683]],[[5.3665644372813e-07,-0.011150938458741,-0.033823113888502],[0.041097700595856,-0.0001259358250536,0.0080561703070998],[0.036230124533176,-0.047344658523798,0.019430760294199]],[[-0.069995723664761,0.074045151472092,0.0010897119063884],[-0.011858643963933,-0.068098641932011,0.11251194775105],[0.039087299257517,-0.052877955138683,0.062607750296593]],[[0.013049617409706,-0.08285566419363,-0.00045348194544204],[0.041564781218767,-0.072612568736076,0.004339998587966],[-0.0045170933008194,0.089779011905193,-0.025572091341019]],[[-0.060722962021828,-0.00038154251524247,0.078594565391541],[-0.039615362882614,-0.0095305684953928,-0.0049116844311357],[0.0076543963514268,0.011884352192283,-0.0035517786163837]],[[0.064611203968525,-0.0096747232601047,-0.03761824592948],[-0.062693201005459,0.012101330794394,0.005710281431675],[-0.028545385226607,0.0023021243978292,0.11535815894604]],[[0.025288978591561,-0.078780524432659,-0.012514148838818],[-0.028981760144234,0.0068389070220292,0.041208993643522],[0.045799411833286,-0.059546764940023,0.022870518267155]],[[0.064177148044109,-0.01519912853837,0.017194829881191],[0.041480667889118,-0.03954016789794,-0.023361744359136],[-0.05098557844758,0.012195822782815,-0.012578497640789]],[[0.017895631492138,0.070604711771011,-0.0035721666645259],[-0.0038280428852886,0.0025511581916362,0.055339053273201],[0.039050366729498,0.065778501331806,0.053528655320406]],[[-0.11293764412403,-0.042912069708109,-0.01462959125638],[0.042576193809509,-0.032097514718771,-0.11143513023853],[-0.087604612112045,-0.0025155500043184,-0.088729918003082]],[[-0.062921606004238,-0.082972444593906,0.065187178552151],[0.029228050261736,-0.078642144799232,0.036163724958897],[0.044159512966871,0.038668628782034,-0.024921022355556]],[[-0.059324972331524,-0.037929121404886,-0.0092122834175825],[-0.020238442346454,-0.012812745757401,-0.019480785354972],[0.072818078100681,0.0073139127343893,0.032101843506098]],[[0.041689462959766,0.053404584527016,-0.04636999592185],[0.052580196410418,0.028138620778918,0.027142092585564],[0.031237158924341,0.028176531195641,0.013421223498881]],[[0.039303492754698,-0.077914595603943,0.0087606562301517],[-0.020273681730032,0.058556210249662,-0.043720971792936],[0.023520164191723,-0.025150366127491,0.039711985737085]],[[-0.0242073033005,0.032316096127033,0.023564539849758],[-0.02468891069293,0.0070106186904013,-0.020447207614779],[0.046166632324457,-0.017011009156704,-0.048332955688238]],[[-0.0061940914019942,-0.0028730970807374,0.048870217055082],[-0.013560912571847,-0.018294336274266,-0.027662908658385],[0.0079401563853025,-0.04071257263422,-0.019082523882389]],[[0.014480287209153,-0.009713432751596,-0.019480397924781],[-0.0087845576927066,0.028260638937354,-0.014619131572545],[-0.064243592321873,-0.032875388860703,-0.019333031028509]],[[-0.014005733653903,-0.0058774654753506,-0.01163581199944],[-0.046393174678087,0.012561765499413,0.050575572997332],[0.025779662653804,-0.02459423057735,-0.062530890107155]],[[0.077773302793503,0.020859943702817,-0.037452835589647],[0.096522264182568,-0.038731694221497,-0.075548887252808],[0.059732738882303,0.00033937647822313,-0.038032166659832]],[[0.023363633081317,-0.013877691701055,-0.068706206977367],[0.022082965821028,-0.027584299445152,0.058432310819626],[-0.037323340773582,0.0038922601379454,0.0070531400851905]],[[-0.036577679216862,0.054015338420868,-0.0077917128801346],[-0.058600820600986,-0.0047932690940797,-0.018199404701591],[0.025068955495954,0.047219187021255,-0.0042056040838361]],[[-0.0052208891138434,0.0055833836086094,-0.016884565353394],[-0.026009351015091,-0.012202559970319,0.021887548267841],[-0.010412942618132,-0.028805483132601,0.026013819500804]],[[-0.030124494805932,0.038296591490507,-0.040590919554234],[0.0085396217182279,-0.05099081993103,-0.013511087745428],[-0.011472889222205,0.036390211433172,0.033669997006655]],[[-0.01609018817544,0.0061128078959882,-0.053604513406754],[0.12045562267303,-0.014281686395407,0.012124952860177],[0.026747066527605,-0.021851370111108,-0.057662054896355]],[[0.0021353056654334,-0.037897083908319,-0.011846255511045],[-0.0073788119480014,-0.063349567353725,0.022843392565846],[0.074510306119919,0.011926233768463,-0.0085195461288095]],[[-0.026452736929059,0.012417564168572,-0.0079657388851047],[-0.0064646862447262,0.00039171893149614,-0.02658242918551],[0.039423059672117,0.007790909614414,-0.074235394597054]],[[0.00094639736926183,-0.043288815766573,-0.011022693477571],[0.035807259380817,0.025200566276908,0.015225095674396],[-0.012173730880022,0.037861436605453,-0.018216624855995]]],[[[-0.017713656648993,0.011240758933127,-0.050999119877815],[-0.0068001691251993,-0.0082111395895481,0.075681105256081],[0.057716906070709,0.00029212021036074,0.044251065701246]],[[-0.072317995131016,0.052981983870268,0.045941855758429],[0.0026839389465749,0.033572971820831,-0.029325326904655],[0.0078085446730256,0.02080774307251,-0.0046744705177844]],[[0.019094161689281,0.0050005526281893,-0.008638777770102],[0.031216319650412,0.028849519789219,-0.058594025671482],[0.040371101349592,0.0030943392775953,-0.01523772906512]],[[-0.052307482808828,0.035088241100311,0.0042979014106095],[0.014420486986637,-0.0094117047265172,0.010193389840424],[-0.0098936008289456,0.013345872052014,-0.027303686365485]],[[-0.060560680925846,-0.023061221465468,0.067126393318176],[0.057329662144184,0.12263076752424,-0.034120451658964],[0.0059392051771283,0.0092994514852762,-0.031946144998074]],[[-0.049282480031252,0.013738193549216,-0.015508452430367],[-0.033505022525787,-0.018104931339622,0.047267101705074],[0.044639855623245,0.045449983328581,0.022857025265694]],[[-0.036743249744177,0.051253449171782,0.017378246411681],[0.031055079773068,-0.031542256474495,-0.0076216165907681],[-0.062261965125799,0.078075855970383,0.028965769335628]],[[0.040996760129929,0.024039519950747,0.046295944601297],[-0.031087519600987,0.01069369725883,-0.005181887652725],[0.046457283198833,-0.11258787661791,-0.02018291130662]],[[-0.049343347549438,-0.00032517482759431,-0.020674550905824],[0.038042306900024,-0.007222339976579,0.11179356276989],[0.025984287261963,-0.051246415823698,0.038614720106125]],[[0.050884954631329,-0.084054492413998,-0.0038730532396585],[0.01539197191596,-0.0161939766258,0.0066447490826249],[0.0017495655920357,0.0022680961992592,0.0025862632319331]],[[-0.0054172459058464,-0.025793788954616,-0.027871860191226],[-0.012276802212,0.049391839653254,0.032906964421272],[0.0068346010521054,-0.013869664631784,0.10032384097576]],[[-0.065572641789913,-0.026015602052212,0.049384169280529],[-0.0042957817204297,-0.056785382330418,0.028052061796188],[0.04127661883831,0.090710051357746,0.0025257896631956]],[[-0.0028138179332018,-0.077336817979813,-0.015955563634634],[-0.027176419273019,0.033768888562918,0.074962913990021],[0.028347335755825,-0.011328953318298,-0.033688575029373]],[[-0.0056029600091279,-0.026001648977399,-0.080480359494686],[0.02588471584022,0.030613344162703,0.038050848990679],[0.0035829974804074,-0.027457863092422,0.017947675660253]],[[0.047001138329506,0.11497640609741,0.055634126067162],[0.043920312076807,-0.041355676949024,0.044837664812803],[-0.084667652845383,0.03838512673974,0.016503941267729]],[[0.042511180043221,0.01642943918705,0.0029947096481919],[-0.024014696478844,-0.0020813620649278,0.088920831680298],[-0.058110345155001,0.0075398632325232,-0.049476526677608]],[[0.053443647921085,0.014253075234592,-0.031809814274311],[-0.020656786859035,-0.016703635454178,-0.037884786725044],[0.046795383095741,0.0024918438866735,0.076489135622978]],[[0.042322620749474,0.016760433092713,0.016613384708762],[0.018995402380824,0.038700789213181,-0.01157162245363],[0.021162878721952,0.041185677051544,-0.0086171980947256]],[[0.04707994684577,-0.067990474402905,0.032666891813278],[-0.024483056738973,0.032383788377047,-0.012820559553802],[0.024601416662335,0.00053820660104975,-0.042071335017681]],[[-0.02623226121068,-0.030146099627018,-0.022528758272529],[0.037803661078215,-0.011662316508591,0.010786228813231],[0.013918223790824,0.025837562978268,0.016327643766999]],[[0.058506488800049,-0.024852607399225,-0.0042968690395355],[0.012724056839943,0.061762917786837,-0.0051423450931907],[-0.014526899904013,0.043304640799761,-0.040860861539841]],[[-0.00056288245832548,-0.004511418286711,-0.00053505558753386],[0.028836265206337,0.10389626771212,0.044164229184389],[0.053945641964674,-0.033467151224613,-0.11716110259295]],[[0.036383289843798,-0.042843502014875,0.0052515147253871],[0.0035651759244502,0.0090899951756001,-0.00231843162328],[-0.022818515077233,0.036638557910919,-0.013356558047235]],[[0.027417205274105,0.053255755454302,-0.029753554612398],[-0.086050428450108,0.02998130954802,0.04796614125371],[-0.089109435677528,-0.10486674308777,0.020054830238223]],[[0.068137317895889,-0.048242930322886,-0.024316105991602],[0.02418757788837,-0.0086428709328175,0.032845731824636],[0.021286876872182,0.025107240304351,0.053573735058308]],[[0.042585507035255,-0.018964134156704,-0.034922163933516],[0.034010238945484,0.056763667613268,0.06561990827322],[0.060672610998154,-0.021449936553836,-0.063900239765644]],[[-0.048708237707615,0.02817514911294,-0.057738918811083],[-0.019299365580082,0.043902192264795,-0.048251427710056],[-0.015235723927617,0.033991992473602,-0.010358930565417]],[[0.030495872721076,-0.040278788655996,-0.043201979249716],[0.022103918716311,0.092071630060673,-0.085019543766975],[-0.026500193402171,0.0052233315072954,0.024054734036326]],[[-0.02933506667614,-0.033607270568609,-0.028393717482686],[0.011712077073753,0.044750042259693,0.00043578259646893],[-0.010621759109199,0.027252323925495,0.017161460593343]],[[0.040343578904867,0.016575889661908,-0.014661304652691],[-0.050640743225813,0.066590510308743,-0.017978440970182],[0.0050922147929668,-0.049933731555939,0.0043241358362138]],[[-0.024704875424504,0.0096890823915601,0.023573724552989],[-0.047572884708643,0.038060672581196,0.031070042401552],[-0.024390429258347,0.081627577543259,-0.05988160893321]],[[-0.01542550791055,0.0052912151440978,0.049770083278418],[0.0064446898177266,0.048262529075146,0.020472623407841],[0.029884336516261,-0.009256481193006,0.0098804580047727]],[[0.014049030840397,0.04302466288209,0.0089414501562715],[0.0055098626762629,-0.00089565780945122,-0.046144831925631],[0.018189383670688,-0.055509462952614,-0.054091610014439]],[[-0.11231011897326,0.063351042568684,-0.032073121517897],[-0.039331868290901,-0.055844664573669,0.13265408575535],[-0.020224126055837,0.077946625649929,0.0015227663097903]],[[-0.092276453971863,0.035044804215431,-0.027244988828897],[0.077266126871109,0.004795772023499,0.10864916443825],[-0.011659906245768,-0.023077178746462,-0.087542332708836]],[[0.020143223926425,0.051807451993227,0.059685494750738],[0.00037417956627905,-0.032870482653379,0.035933695733547],[-0.016506506130099,-0.050883427262306,0.017511049285531]],[[0.0066403266973794,0.025562610477209,-0.018216609954834],[0.0027627206873149,-0.048679985105991,0.0048852418549359],[-0.054541610181332,-0.059968199580908,0.031559433788061]],[[-0.033356286585331,0.01517058070749,-0.070561297237873],[0.040588822215796,0.03701663389802,0.053279183804989],[-0.027708126232028,-0.047853600233793,-0.010757822543383]],[[0.029782520607114,-0.026489455252886,0.052458204329014],[0.027580147609115,-0.024279240518808,0.062548317015171],[0.034483220428228,0.053728129714727,0.0031554910819978]],[[-0.045861966907978,0.037024829536676,-0.051453489810228],[-0.022313350811601,0.017652090638876,-0.012993266806006],[0.0080648064613342,0.074680827558041,0.069513164460659]],[[0.054821986705065,-0.03909819200635,-0.020423982292414],[0.022157328203321,0.0026214725803584,0.019996980205178],[0.051081854850054,0.0095490459352732,0.041633848100901]],[[0.017330875620246,0.0027424953877926,0.038470704108477],[0.015110111795366,-0.031836945563555,-0.037388358265162],[-0.052493996918201,-0.018222203478217,0.053877100348473]],[[0.033977244049311,0.014087677933276,0.037647169083357],[0.019855450838804,0.0076926280744374,-0.047092672437429],[0.0048865242861211,-0.016250086948276,-0.0018544271588326]],[[-0.015415298752487,0.01324223075062,-0.021712942048907],[-0.016290171071887,-0.006039752624929,0.037547554820776],[-0.023336051031947,0.034458685666323,0.029680399224162]],[[0.017957525327802,0.035562198609114,0.028584042564034],[0.023753421381116,-0.021434901282191,-0.032337840646505],[0.044899221509695,0.0047997543588281,-0.0025546418037266]],[[0.031784679740667,0.0062626507133245,0.031985696405172],[-0.052467510104179,-0.040458377450705,0.014061870053411],[-0.0057660103775561,0.010625793598592,0.068231947720051]],[[-0.011765920557082,0.047142181545496,0.037555724382401],[-0.05715811625123,0.0080807814374566,0.069153822958469],[-0.036774564534426,0.025139428675175,-0.026731772348285]],[[-0.013838348910213,0.015962718054652,-0.060778323560953],[0.095905721187592,-0.05862819775939,0.025729006156325],[0.013253872282803,0.062581062316895,0.031762845814228]],[[0.0055875335820019,-0.016776999458671,-0.018863782286644],[-0.00151396705769,-0.0055730314925313,0.043416809290648],[-0.00061817251844332,0.014352472499013,0.040630679577589]],[[-0.0029189814813435,-0.016684858128428,-0.019953800365329],[0.056342799216509,0.072501175105572,-0.039877098053694],[0.056706592440605,-0.058304443955421,-0.02736728079617]],[[0.012464210391045,-0.0094582485035062,-0.0072639966383576],[-0.051892891526222,0.057389814406633,-0.0417122207582],[0.0030309946741909,0.10935662686825,-0.030857188627124]],[[-0.075679324567318,0.023301754146814,-0.050600238144398],[0.047373000532389,-0.021894870325923,0.0620037317276],[-0.089673608541489,-0.023040309548378,0.048221025615931]],[[-0.035644173622131,-0.022892370820045,-0.01712366566062],[0.065285816788673,0.050587698817253,0.035473562777042],[-0.035579226911068,-0.0069594327360392,0.0029289482627064]],[[0.0080536352470517,0.0048771337606013,0.052778445184231],[-0.036574263125658,-0.030672263354063,0.048755306750536],[0.046608865261078,-0.017826169729233,-0.042839203029871]],[[0.046980187296867,0.0064367195591331,-0.023320805281401],[-0.033934619277716,-0.057176634669304,-0.047360591590405],[-0.027174768969417,0.042997185140848,0.065374098718166]],[[0.04042362421751,0.0055603794753551,-0.024058111011982],[0.0056674620136619,-0.051336009055376,0.046049360185862],[0.052950199693441,-0.007076954934746,0.050758194178343]],[[-0.078097268939018,-0.0063455086201429,0.062986701726913],[-0.009007653221488,0.039830096065998,-0.061401005834341],[-0.0095870075747371,0.0249004047364,0.033854849636555]],[[-0.018591672182083,0.046229284256697,-0.016668632626534],[-0.046726182103157,0.044195435941219,0.017727967351675],[0.064126014709473,0.037770051509142,0.032809257507324]],[[-0.035048726946115,0.045744847506285,0.00074503710493445],[0.044237297028303,0.040300186723471,0.011760559864342],[0.072993472218513,0.049303226172924,-0.047838244587183]],[[0.028719160705805,0.0039215534925461,0.035882785916328],[0.011328414082527,-0.065175205469131,0.019104454666376],[-0.0514553822577,0.0073042367585003,-0.0015017049154267]],[[-0.0087874159216881,0.095619954168797,0.010666898451746],[0.08403043448925,-0.028552766889334,-0.010777655988932],[-0.013034703209996,-0.0083762556314468,0.0070823593996465]],[[0.0016276463866234,0.024266453459859,-0.0016551447333768],[-0.017916660755873,-0.015730822458863,-0.019270541146398],[0.035613536834717,-0.09570799022913,-0.04329452291131]],[[0.0028242359403521,7.3703748057596e-05,0.065870508551598],[0.0097804851830006,0.028533419594169,-0.007239667698741],[0.05151005834341,0.034177619963884,0.011992014944553]],[[0.0086272852495313,-0.016894979402423,0.0028534221928567],[-0.080192245543003,-0.025585008785129,-0.020014185458422],[0.082137890160084,-0.013254729099572,0.044410392642021]],[[-0.0042300000786781,0.047119960188866,0.065790377557278],[-0.016166606917977,-0.027717757970095,-0.043756857514381],[0.011805731803179,-0.00014809051936027,0.026419753208756]],[[-0.0051399278454483,-0.063486613333225,0.010683231055737],[0.043041467666626,-0.0056088767014444,-0.00073272344889119],[0.025691008195281,0.038535427302122,0.05404956638813]],[[-0.059525329619646,-0.027447124943137,-0.024381518363953],[0.078260414302349,0.0070332852192223,0.01419591717422],[-0.038879990577698,0.0048942314460874,0.072982922196388]],[[-0.035142846405506,-0.028113083913922,0.0059959958307445],[0.075745411217213,0.048862721771002,-0.031899847090244],[0.041487541049719,-0.017290633171797,0.019020488485694]],[[0.040301505476236,-0.019043158739805,-0.037546839565039],[-0.029285598546267,0.01230205129832,0.026504436507821],[0.072417750954628,0.036389496177435,0.047747880220413]],[[0.019984893500805,-0.0078883366659284,-0.009812930598855],[-0.011586199514568,0.092933781445026,-0.02902065590024],[-0.00093297229614109,0.04801357164979,-0.033609971404076]],[[0.031196715310216,-0.015808822587132,0.041581064462662],[-0.011484165675938,-0.021349666640162,-0.016695700585842],[0.053750198334455,0.04837004840374,-0.031448666006327]],[[-0.043567568063736,0.028947088867426,0.075013041496277],[0.020334923639894,0.03836328536272,0.019905155524611],[-0.036494411528111,-0.026015244424343,-0.032057270407677]],[[0.062386211007833,0.044316150248051,-0.037340972572565],[-0.001860631396994,0.0054458663798869,0.0026051281020045],[0.017063096165657,0.044683691114187,-0.010964128188789]],[[-0.058241944760084,0.033621773123741,-0.020436719059944],[0.062429469078779,-0.010681656189263,-0.016308983787894],[0.014682475477457,-0.010853156447411,0.023291209712625]],[[-0.049867693334818,-0.010507869534194,0.038669843226671],[0.027816090732813,-0.03067734092474,0.029277170076966],[-0.015722919255495,0.047336392104626,0.0026548511814326]],[[0.048389784991741,-0.01732187718153,-0.02153561078012],[-0.031606424599886,0.017897825688124,-0.069616809487343],[0.015196580439806,0.065281853079796,0.00046903206384741]],[[-0.023790758103132,0.009318970143795,-0.012792107649148],[-0.011994454078376,0.03732667863369,0.008315802551806],[0.037982415407896,-0.018551912158728,-0.070356100797653]],[[0.0055548278614879,-0.00059836858417839,-0.027570180594921],[0.056956071406603,0.0088803377002478,-0.031019447371364],[0.050111550837755,-0.014055668376386,0.0059666479937732]],[[0.043128471821547,-0.00018405792070553,-0.017007790505886],[0.0029983446002007,0.047221839427948,0.0074887471273541],[-0.034244950860739,0.010017770342529,-0.038798499852419]],[[0.080234289169312,-0.10131247341633,-0.024959772825241],[0.039259184151888,0.015306668356061,0.017516501247883],[0.044066864997149,-0.018674859777093,0.0058258902281523]],[[0.033274494111538,-0.0017584587913007,-0.03223730251193],[0.009236847050488,0.008656594902277,-0.018040804192424],[0.025644099339843,0.0072201769798994,0.051547408103943]],[[-0.071068853139877,0.038778454065323,0.0034689160529524],[-0.05839866027236,-0.033212821930647,0.032215315848589],[0.027389973402023,-0.019583821296692,0.059230819344521]],[[-0.0035773429553956,-0.032281812280416,-0.0296795014292],[0.064201802015305,-0.021162642166018,0.071936875581741],[-0.039952415972948,0.071069374680519,0.0077792992815375]],[[0.087818183004856,0.0029394887387753,-0.037874538451433],[-0.031444765627384,0.027217974886298,0.017361875623465],[-0.00064526818459854,-0.004468331579119,0.0053806845098734]],[[-0.02155370824039,0.012310641817749,0.09270254522562],[-0.067017324268818,-0.046245984733105,0.010366738773882],[0.021505249664187,-0.072978273034096,0.10197484493256]],[[-0.023185018450022,-0.051725294440985,0.007005738094449],[0.022412037476897,0.047112252563238,-0.065479353070259],[-0.023893494158983,0.036851171404123,0.031511817127466]],[[-0.0041835773736238,-0.028028337284923,-0.051605504006147],[-0.040742430835962,-0.087227657437325,-0.0092740785330534],[0.044764786958694,0.11528407037258,0.007271274458617]],[[-0.0062115313485265,-0.0072471974417567,-0.019552238285542],[-0.054431285709143,-0.063223443925381,0.025016920641065],[0.070940524339676,0.058339606970549,-0.0068172509782016]],[[-0.018801802769303,-0.075107753276825,0.0059705786406994],[0.075886011123657,0.007418432738632,0.026787519454956],[0.020219558849931,-0.021124085411429,-0.028127504512668]],[[-0.029221331700683,0.013281692750752,-0.015228525735438],[-0.053369782865047,0.019290836527944,-0.0052428371272981],[-0.077438324689865,0.079685941338539,0.062377531081438]],[[0.046091269701719,-0.024062732234597,0.024623623117805],[-0.020622335374355,-0.031621772795916,0.030948292464018],[0.0049351644702256,0.035008139908314,-0.01609762199223]],[[-0.0048655937425792,0.073545105755329,-0.013206264935434],[-0.042637765407562,0.038383804261684,0.066199541091919],[0.0025510578416288,0.069145068526268,0.028378415852785]],[[0.094269320368767,-0.023472076281905,0.040779512375593],[-0.0050254901871085,-0.014844560064375,-0.022090895101428],[0.018816102296114,0.022311814129353,0.034810923039913]],[[-0.0056480648927391,0.0088855158537626,0.053114589303732],[0.0010828592348844,0.022110793739557,-0.068723641335964],[0.085817947983742,0.02112322486937,0.012131885625422]],[[0.020045125856996,0.048554658889771,-0.038092363625765],[-0.044935882091522,0.016208149492741,0.078464344143867],[0.026508925482631,-0.0006190039566718,-0.014240015298128]],[[0.05093751475215,-0.017345406115055,0.016054213047028],[-0.040311098098755,0.0087761925533414,0.053574740886688],[-0.010733270086348,0.047376498579979,-0.0025733734946698]],[[0.025051364675164,0.094427928328514,-0.053409159183502],[0.056958012282848,-0.03489950671792,0.020453995093703],[0.033951431512833,-0.040439821779728,-0.012627725489438]],[[0.022064233198762,0.014249920845032,-0.028934022411704],[0.0290188472718,0.00927709415555,-0.03309329226613],[0.068499907851219,0.048880752176046,-0.018206834793091]],[[0.02455467171967,0.0036928690969944,0.0018469122005627],[0.047999538481236,-0.018738701939583,0.082531906664371],[0.049410194158554,0.021240411326289,-0.075026959180832]],[[-0.017176922410727,-0.025586158037186,0.036296702921391],[-0.0037856851704419,0.046298816800117,0.023548787459731],[0.089021064341068,-0.072544924914837,-0.0097810821607709]],[[0.048153661191463,-0.062936574220657,-0.050226427614689],[0.052051987498999,0.020783320069313,-0.021989177912474],[0.025935588404536,-0.025809800252318,0.034553356468678]],[[0.013836083002388,-0.033065412193537,-0.013554114848375],[-0.033012360334396,-0.036481201648712,-0.02154078707099],[0.014368190430105,0.072426989674568,0.033917803317308]],[[0.0079361125826836,0.022988777607679,0.043030302971601],[0.029440296813846,-0.083248347043991,0.070282027125359],[-0.019665487110615,-0.016949880868196,-0.024253400042653]],[[-0.043966595083475,-0.037939183413982,0.067437447607517],[-0.042421668767929,0.060079872608185,-0.03832283616066],[0.030947860330343,-0.088375486433506,0.052095364779234]],[[0.031599096953869,-0.01333627011627,-0.031087506562471],[-0.030451592057943,0.013164697214961,0.094206288456917],[-0.048500917851925,0.031319838017225,-0.063053093850613]],[[-0.0046375272795558,-0.057399615645409,0.0020014992915094],[0.045350801199675,-0.0027181757614017,0.071092143654823],[-0.075081944465637,0.011432983912528,0.034459754824638]],[[-0.067517168819904,0.063207998871803,-0.0759107619524],[-0.041248273104429,-0.034470081329346,-0.017479382455349],[0.0037272768095136,0.054857343435287,0.0071924687363207]],[[-0.013254983350635,0.014103492721915,-0.017287878319621],[-0.0023870246950537,0.064602598547935,-0.013955521397293],[0.0034037062432617,-0.033862765878439,0.063728965818882]],[[0.073913000524044,-0.014831784181297,0.016644936054945],[-0.081672549247742,0.021118948236108,-0.070043317973614],[-0.016490304842591,0.02434641495347,0.07426156103611]],[[0.063161365687847,0.038088135421276,-0.015558796003461],[0.018158653751016,0.016320284456015,0.06112452968955],[-0.0064072040840983,0.10476816445589,0.032878093421459]],[[0.06345134973526,-0.050529930740595,-0.033812064677477],[-0.069201871752739,-0.076003737747669,0.029823886230588],[-0.004226051736623,-0.030315717682242,-0.013906340114772]],[[0.084500581026077,-0.014275891706347,-0.032655004411936],[-0.00024164792557713,-0.067235447466373,0.016792522743344],[0.036036495119333,-0.019924422726035,0.022340072318912]],[[-0.064425744116306,-0.00076254730811343,0.071608856320381],[-0.067800305783749,0.067256301641464,-0.008094017393887],[0.0057337409816682,-0.037228904664516,0.022776979953051]],[[0.058084923774004,0.020985597744584,-0.028141221031547],[0.046716038137674,0.01860729791224,-0.11109442263842],[0.04568687453866,0.068229183554649,0.0155612770468]],[[-0.030646620318294,-0.045160748064518,-0.042327728122473],[0.010126281529665,-0.035756390541792,0.079999849200249],[-0.0085778031498194,0.067221455276012,0.041956547647715]],[[0.026148607954383,0.031834032386541,-0.024284478276968],[-0.015355584211648,0.01576067134738,-0.029839774593711],[0.01513909175992,0.080307289958,-0.043364908546209]],[[0.04662149772048,-0.0083685964345932,-0.036406472325325],[-0.0035563523415476,-0.009613037109375,0.0087546622380614],[0.093283295631409,0.0050914944149554,0.080586217343807]],[[0.073522686958313,-0.0067552621476352,-0.018547715619206],[-0.025821650400758,0.035641353577375,0.013278660364449],[0.019719511270523,0.010157915763557,-0.045874364674091]],[[-0.045564748346806,0.026888182386756,0.024496451020241],[0.0062626134604216,-0.036501530557871,-0.023380849510431],[0.069813966751099,-0.0232815425843,0.018202390521765]],[[-0.028974426910281,-0.0058499705046415,-0.023948356509209],[-0.046377591788769,-0.15242375433445,0.026120491325855],[0.037888668477535,-0.067706398665905,-0.032757844775915]],[[-0.037138201296329,0.013437769375741,0.063824616372585],[-0.0961047783494,-0.020110877230763,-0.034209027886391],[-0.0071367206983268,-0.0066956607624888,0.024458549916744]],[[0.016825249418616,0.0063567464239895,-0.078160531818867],[0.039699848741293,0.025537945330143,-0.062615059316158],[0.0055515323765576,0.01145027577877,-0.042650159448385]],[[-0.037924617528915,-0.015502465888858,0.014548135921359],[-0.019455412402749,0.04260316863656,-0.0054654330015182],[0.048176642507315,-0.014169882051647,-0.025012684985995]],[[0.066700294613838,-0.015648383647203,0.083167195320129],[-0.025956429541111,0.0024575358256698,-0.060256782919168],[0.0047091129235923,0.050267241895199,-0.030529908835888]],[[0.035797100514174,0.023076191544533,0.016798598691821],[0.082725815474987,-0.081136412918568,-0.043150261044502],[0.094468668103218,0.0078309066593647,-0.0076203565113246]],[[0.0075695966370404,0.01064554322511,0.059947814792395],[-0.05003635212779,-0.01048778090626,0.059958942234516],[0.040950801223516,-0.08778889477253,-0.0081391436979175]],[[-0.0036403983831406,-0.024941427633166,-0.027408704161644],[0.038876410573721,-0.039023742079735,0.031594306230545],[0.045218870043755,-0.019371371716261,0.032663602381945]],[[-0.016173169016838,0.0016854641726241,0.076188586652279],[-0.026278095319867,-0.0082843024283648,0.034737434238195],[0.077691614627838,-0.096505150198936,0.0072979484684765]]],[[[-0.035088289529085,-0.013018161058426,0.019106702879071],[-0.03117585554719,-0.011172661557794,-0.014213765971363],[0.032366596162319,-0.028222443535924,-0.056317713111639]],[[0.045241974294186,0.027736196294427,-0.027062647044659],[0.0737399533391,-0.024834116920829,-0.034085523337126],[-0.041359815746546,0.029793746769428,-0.040615107864141]],[[-0.054514165967703,0.049403589218855,-0.039204578846693],[-0.050468575209379,0.06788644194603,-0.014962873421609],[-0.01666939817369,-0.030958099290729,-0.022066179662943]],[[0.009985470212996,0.018785091117024,-0.012572600506246],[0.0023453878238797,-0.057314161211252,-0.0034761985298246],[0.050116486847401,-0.0177255962044,-0.072259247303009]],[[-0.035532753914595,0.023828040808439,-0.028340285643935],[-0.016636623069644,-0.048218350857496,0.070408962666988],[-0.0077461232431233,-0.036294523626566,-0.0048569194041193]],[[-0.045200910419226,-0.051234625279903,-0.01805772818625],[-0.037275541573763,-0.033381432294846,0.034175284206867],[-0.14986452460289,-0.055638641119003,-0.056754384189844]],[[0.013730773702264,-0.034397963434458,0.0038756085559726],[-0.00067509867949411,0.027748815715313,0.008314985781908],[0.021963618695736,0.041194099932909,-0.034165151417255]],[[0.007848103530705,-0.019504936411977,0.019708812236786],[-0.025936072692275,0.16498664021492,-0.047640290111303],[-0.023122474551201,-0.01216443348676,0.003723873058334]],[[0.032562877982855,-8.6066123913042e-05,0.090709574520588],[-0.042683463543653,0.0098258517682552,-0.011791897937655],[-0.050196681171656,-0.0023321120534092,0.042078264057636]],[[-0.014895186759531,-0.11527704447508,0.053981602191925],[-0.097973398864269,-0.10427701473236,0.075582355260849],[0.011907139793038,0.01740743406117,-0.11000139266253]],[[-0.033040151000023,0.029017895460129,0.018292048946023],[0.015314012765884,-0.0074039418250322,-0.039639391005039],[0.0036122426390648,-0.014138382859528,-0.010633491910994]],[[-0.049988895654678,0.015055321156979,0.082667887210846],[-0.045707114040852,0.017953496426344,-0.10995941609144],[0.012677993625402,0.04359333217144,0.039873477071524]],[[-0.018548807129264,-0.01112282089889,-0.04430515691638],[-0.035221822559834,0.0094461366534233,-0.012961056083441],[0.055299989879131,0.054432436823845,0.052848268300295]],[[0.010366055183113,0.075948022305965,-0.025243537500501],[0.052064698189497,-0.016628880053759,-0.071904063224792],[0.048915714025497,-0.041141290217638,0.014175717718899]],[[-0.11962357163429,0.0011537437094375,-0.06070314347744],[0.016622910276055,0.066817283630371,-0.073493495583534],[-0.094775542616844,-0.010375333949924,0.0058708759024739]],[[0.0011370130814612,-0.0097166104242206,-0.047007601708174],[-0.0027309071738273,-0.0067247501574457,-0.055116534233093],[-0.0085174730047584,0.030817292630672,-0.029252102598548]],[[-0.019809067249298,-0.013683533295989,0.024177830666304],[-0.013274242170155,-0.021761532872915,0.021269140765071],[0.022999273613095,-0.01508445199579,-0.032983146607876]],[[-0.022529957816005,0.05927887186408,0.0091141005977988],[0.031019985675812,0.016820002347231,-0.0012831945205107],[0.035503029823303,-0.02493355050683,-0.014223537407815]],[[-0.017248371616006,-0.031373277306557,0.028082625940442],[-0.070092990994453,-0.010534188710153,-0.038438271731138],[-0.051433328539133,-0.015643259510398,-0.062683336436749]],[[0.0045757470652461,-0.00096396252047271,-0.024728652089834],[0.02602163515985,0.073394469916821,0.036685872823],[-0.054883405566216,0.014822866767645,-0.038457412272692]],[[0.0428586602211,-0.002915043849498,-0.072662480175495],[-0.018521156162024,-0.017361139878631,-0.010118798352778],[-0.014696161262691,-0.059820763766766,0.03914811834693]],[[0.015742741525173,-0.053233984857798,-0.095084682106972],[-0.012271848507226,-0.0061817518435419,-0.015690702944994],[-0.012281225062907,-0.016589846462011,0.042122427374125]],[[-0.053545143455267,-0.068702921271324,-0.047847501933575],[0.018609458580613,-0.077644839882851,-0.0008675692952238],[-0.011603904888034,-0.087819918990135,0.028386045247316]],[[-0.001515319221653,-0.012984806671739,-0.0049880556762218],[-0.021519176661968,-0.021998861804605,-0.025248909369111],[0.014985148794949,-0.041240368038416,0.034092526882887]],[[0.075942672789097,-0.041121859103441,-0.045272503048182],[-0.084633909165859,0.03190840035677,0.07431598752737],[0.0046169920824468,-0.028685200959444,0.029950853437185]],[[-0.029799949377775,0.042182862758636,0.0023966000881046],[0.025083875283599,0.039737768471241,0.034557070583105],[0.013424916192889,-0.064474813640118,0.025855729356408]],[[0.052025724202394,-0.044261939823627,-0.0046379999257624],[0.021954691037536,-0.0076769376173615,-0.13251325488091],[-0.019647408276796,-0.016245450824499,0.046155616641045]],[[0.0056028966791928,-0.020388571545482,0.040649320930243],[0.022473454475403,-0.048019748181105,0.017864057794213],[0.0079911733046174,-0.03612993657589,-0.084670498967171]],[[-0.071858391165733,0.047268353402615,-0.027930270880461],[0.02746769785881,-0.061618205159903,0.030561910942197],[-0.00034714682260528,0.011384571902454,-0.038513768464327]],[[-0.046460412442684,0.032091081142426,-0.045014157891273],[-0.017329484224319,-0.074303790926933,-0.024430198594928],[0.028196347877383,0.021510845050216,0.050189778208733]],[[-0.016565404832363,-0.023573758080602,0.027800228446722],[-0.060760840773582,-0.021144242957234,-0.054034296423197],[-0.08632855117321,-0.024289902299643,0.10113523900509]],[[-0.050821658223867,-0.040372341871262,-0.026317927986383],[0.0054162484593689,-0.07250103354454,-0.014726949855685],[-0.039469491690397,-0.0026042587123811,0.022611962631345]],[[-0.10111951082945,0.010431334376335,0.0044984212145209],[0.033173236995935,-0.00066793576115742,-0.050369136035442],[-0.011591079644859,0.061530161648989,0.0060275662690401]],[[-7.2511575126555e-05,0.03848035261035,-0.032119266688824],[0.03818840906024,0.031273044645786,-0.078650943934917],[-0.048959095031023,-0.0062532303854823,0.020173197612166]],[[0.028437770903111,-0.014899921603501,-0.021230982616544],[-0.090516425669193,0.060041036456823,0.030164102092385],[0.011997615918517,0.057526551187038,0.09002199023962]],[[0.082336880266666,0.036167751997709,-0.073076106607914],[-0.031865641474724,-0.025100994855165,-0.02434248290956],[0.027606820687652,0.030057970434427,-0.029410405084491]],[[-0.034578014165163,0.030277766287327,0.024159323424101],[0.011247825808823,0.0041417335160077,-0.011757689528167],[-0.022031113505363,0.005491494666785,0.044987414032221]],[[0.0027096760459244,0.013659321703017,-0.045521602034569],[-0.053754117339849,-0.035444252192974,-0.030787019059062],[0.027923982590437,-0.015909481793642,0.084047764539719]],[[-0.020783895626664,-0.059362977743149,0.010717837139964],[0.016263101249933,-0.010354136116803,0.041889354586601],[0.015666913241148,0.068630434572697,-0.016991954296827]],[[0.022413363680243,-0.034750696271658,0.036426305770874],[-0.057714141905308,-0.030978254973888,-0.055685341358185],[0.026544101536274,0.010295037180185,-0.019249258562922]],[[0.00036009072209708,0.013195740990341,-0.0061514815315604],[-0.0093453833833337,-0.0010387586662546,-0.0021781728137285],[-0.018033400177956,0.0041406047530472,0.014106318354607]],[[0.037829715758562,-0.0096659399569035,-0.0015223470982164],[-0.019330479204655,0.0095886252820492,-0.05121586099267],[0.0038532193284482,0.028549892827868,0.015092761255801]],[[-0.04616317898035,0.072276525199413,-0.056255828589201],[0.0017226571217179,-0.055486124008894,0.043342176824808],[0.0073470328934491,-0.039604019373655,0.024210769683123]],[[0.021828502416611,0.04975376650691,-0.04032976180315],[-0.064979560673237,0.0012209400301799,-0.058814872056246],[0.023690598085523,-0.0047149113379419,-0.0082752350717783]],[[0.049555741250515,-0.0078887669369578,-0.025456229224801],[-0.0014490236062557,-0.076832793653011,0.045223645865917],[-0.031290531158447,-0.036545865237713,0.024403549730778]],[[-0.10081604868174,-0.0046055251732469,-0.042773440480232],[0.0036010362673551,-0.05305864289403,0.059902928769588],[-0.053000804036856,0.012949379161,0.035608373582363]],[[-0.0022624437697232,-0.061649821698666,0.0062954719178379],[0.0094056706875563,0.024725303053856,-0.041304614394903],[-0.015444567427039,0.026285158470273,-0.017387997359037]],[[-0.0256636608392,-0.056306153535843,0.012394078075886],[0.053027607500553,0.020371194928885,0.068356327712536],[-0.0015504172770306,0.0058913649991155,-0.022291598841548]],[[0.013340213336051,-0.072855785489082,0.046422462910414],[-0.02622383274138,-0.069420523941517,0.052919372916222],[0.0847257822752,-0.081773690879345,-0.061710305511951]],[[0.0030364072881639,0.016822556033731,-0.038915496319532],[0.080712035298347,-0.074083514511585,0.036455899477005],[0.006654882337898,0.025110522285104,0.031256698071957]],[[-0.0089890975505114,-0.030555309727788,-0.058010693639517],[0.054059095680714,0.030648484826088,0.012412055395544],[0.010706780478358,-0.095751568675041,-0.072762288153172]],[[0.057575110346079,0.042810842394829,-0.054726276546717],[-0.019441610202193,0.0072164814919233,-0.086789444088936],[0.021992707625031,-0.017370095476508,0.011371388100088]],[[-0.0098583344370127,0.010231271386147,0.022381644695997],[-0.043981481343508,-0.0077869049273431,-0.036530070006847],[-0.027300577610731,0.0099439863115549,-0.020564014092088]],[[0.012859615497291,-0.066455274820328,-0.0072253891266882],[0.0022824646439403,-0.057363621890545,0.012382969260216],[-0.012183845974505,-0.030587384477258,0.005479690618813]],[[-0.082915164530277,0.026842311024666,0.014467800036073],[-0.04259705170989,0.020313061773777,0.018090445548296],[0.078117340803146,0.026673043146729,-0.043215569108725]],[[-0.013195391744375,-0.043343003839254,0.030969569459558],[-0.073694549500942,-0.011238482780755,0.058432955294847],[-0.028848906978965,0.0054214466363192,-0.050611428916454]],[[-0.0014924539718777,-0.01455812714994,-0.0013828023802489],[0.12193283438683,-0.022597558796406,-0.018944151699543],[0.032696928828955,-0.036709111183882,-0.014954592101276]],[[0.021443599835038,0.014836646616459,-0.017413578927517],[-0.064999811351299,-0.039010051637888,-0.021754620596766],[-0.047789365053177,0.010944278910756,0.007947419770062]],[[0.033147942274809,0.037441160529852,-0.081701934337616],[0.029603375121951,-0.010020839050412,0.0274369828403],[0.022356759756804,0.01675920933485,0.032795995473862]],[[0.024160111322999,-0.03308767452836,-0.042143784463406],[0.0049827434122562,-0.039321616292,0.062228441238403],[-0.01682167686522,-0.026200512424111,-0.12802688777447]],[[-0.0058393883518875,-0.062109664082527,-0.049135450273752],[-0.076460532844067,-0.020770590752363,-0.027528019621968],[0.044025395065546,-0.011987132951617,-0.07641912996769]],[[0.11993800848722,0.0051287715323269,-0.056394960731268],[0.0058591836132109,-0.019976668059826,0.014746399596334],[-0.0082762008532882,-0.073709353804588,0.03792617842555]],[[0.041110228747129,0.06682388484478,0.0091666653752327],[-0.0046009249053895,-0.064695715904236,-0.090317785739899],[-8.4421233623289e-05,-0.006748360581696,0.019155502319336]],[[-0.057339768856764,0.016990812495351,0.0076059112325311],[-0.0078347269445658,0.04385893791914,0.0087055061012506],[0.032286088913679,-0.0038166525773704,-0.042986121028662]],[[-0.067972205579281,-0.033081710338593,-0.070164829492569],[-0.064918883144855,0.019707227125764,0.017969543114305],[0.059917639940977,-0.022550851106644,-0.016378987580538]],[[0.077628500759602,-0.040925223380327,0.048724543303251],[0.045118063688278,-0.01744151301682,-0.029277944937348],[0.013657461851835,0.039634149521589,-0.0038048478309065]],[[0.017370939254761,-0.073660522699356,0.010024706833065],[-0.085064128041267,0.012553856708109,0.0062423101626337],[0.014525749720633,-0.054390873759985,-0.0067230393178761]],[[-0.038412529975176,-0.05175942927599,0.0021148903761059],[-0.015525485388935,0.032864782959223,-0.02304282784462],[-0.034678649157286,0.035502344369888,-0.035946052521467]],[[-0.070460483431816,0.041044108569622,-0.061401773244143],[0.045102849602699,-0.025351518765092,-0.021866209805012],[0.073368579149246,-0.06872271746397,-0.03129155933857]],[[-0.038235329091549,0.023586390540004,0.012660096399486],[-0.016236905008554,-0.006998754106462,-0.0020473087206483],[0.03854301944375,-0.039689972996712,0.0096959434449673]],[[0.024432860314846,0.01488720625639,0.019295388832688],[0.045357711613178,-0.061135061085224,0.036138091236353],[-0.048637997359037,0.028004035353661,-0.0098329996690154]],[[-0.018200907856226,-0.023951530456543,-0.096009932458401],[-0.048901159316301,0.067322038114071,-0.032995957881212],[-0.079391591250896,0.048415590077639,-0.081840097904205]],[[-0.031360451132059,0.065937668085098,-0.0046095540747046],[-0.043344404548407,0.065070286393166,-0.0077997171320021],[0.059050779789686,-0.0035011803265661,0.0043409750796854]],[[-0.057274449616671,0.0054024490527809,-0.040131740272045],[-0.001756334444508,-0.024003624916077,-0.019471015781164],[-0.056417357176542,-0.024975433945656,-0.00065497460309416]],[[-0.092385463416576,-0.031693533062935,-0.035155061632395],[-0.011081618256867,-0.033947996795177,-0.029162794351578],[0.029960513114929,-0.057918068021536,-0.0079291006550193]],[[-0.04578273370862,0.035180650651455,0.0059485631063581],[0.01411931309849,-0.044369265437126,-0.013867674395442],[-0.013248479925096,-0.067914061248302,-0.040923725813627]],[[-0.014748285524547,0.028651254251599,0.026470834389329],[-0.026200009509921,-0.02099577896297,-0.0057247583754361],[0.066067285835743,0.01448308583349,0.0126490322873]],[[0.022394724190235,0.017628338187933,0.038019649684429],[-0.036999020725489,-0.062811225652695,0.058842025697231],[-0.056502494961023,-0.057462401688099,-0.0063694105483592]],[[-0.034973103553057,0.028458258137107,0.0017305561341345],[0.035682834684849,-0.015570712275803,-0.0081247026100755],[-0.046203199774027,-0.0010049741249532,-0.02759669534862]],[[0.052189953625202,-0.033366344869137,0.00068667827872559],[0.021449269726872,0.02008511684835,-0.06801100820303],[0.032186660915613,-0.020117357373238,-0.030600644648075]],[[-0.068372637033463,0.011133842170238,-0.029870968312025],[-0.01010234747082,-0.018532587215304,0.027514277026057],[-0.056177232414484,-0.008019357919693,0.00096196646336466]],[[-0.0049047684296966,0.043400172144175,-0.049398396164179],[0.01372286863625,0.062417678534985,-0.012784525752068],[0.014347728341818,0.003425148781389,-0.0091538857668638]],[[-0.013614513911307,-0.061944600194693,-0.059762571007013],[-0.022981956601143,-0.011412463150918,0.02758982218802],[-0.016823627054691,-0.061057418584824,-0.0029143560677767]],[[-0.051758326590061,0.061687335371971,-0.055223546922207],[-0.035686030983925,0.0031325165182352,0.0064102620817721],[0.0056486004032195,-0.077966287732124,-0.12188985943794]],[[-0.016482906416059,-0.0023344215005636,-0.016063898801804],[0.029295044019818,0.042002730071545,0.0024026955943555],[0.01789110340178,0.036725103855133,-0.0087990220636129]],[[-0.028895162045956,-0.07659012824297,0.11044203490019],[-0.033536836504936,-0.0078444732353091,-0.0054391720332205],[-0.042739115655422,0.0075030545704067,0.0096397465094924]],[[-0.0035274783149362,0.0037008819635957,0.010026983916759],[-0.016810093075037,0.024705439805984,0.030065286904573],[0.0073608355596662,-0.068783104419708,-0.012587998993695]],[[-0.036953255534172,-0.028948657214642,0.0054459027014673],[-0.0059987735003233,0.0052711339667439,0.034086443483829],[-0.055051017552614,-0.02784463763237,-0.079673819243908]],[[-0.010976229794323,0.028217103332281,0.045467600226402],[-0.029950989410281,-0.046497788280249,-0.013549133203924],[0.03196794167161,-0.0099545251578093,0.035277251154184]],[[0.036320801824331,-0.035138320177794,0.010388457216322],[0.030425429344177,-0.054407000541687,0.0278598703444],[0.071613572537899,0.032779932022095,-0.0026288656517863]],[[-0.011445296928287,-0.082603566348553,-0.062712080776691],[0.018118849024177,0.047472175210714,-0.0041354899294674],[-0.049308300018311,0.029015572741628,0.016201263293624]],[[-0.083942554891109,-0.011099115945399,-0.078270077705383],[-0.064516566693783,0.011891010217369,0.0045778304338455],[0.025092313066125,-0.039077993482351,-0.080941624939442]],[[0.023202028125525,-0.0051062870770693,-0.09237851947546],[0.041030183434486,-0.070248492062092,-0.027137788012624],[0.015965715050697,0.016781421378255,-0.063448943197727]],[[0.029353130608797,-0.04729463160038,0.0071598840877414],[-0.0065728640183806,-0.03962891921401,0.0016047175740823],[-0.020293487235904,-0.012224382720888,0.038276273757219]],[[-0.054089456796646,0.027471978217363,0.010077838785946],[-0.0073369075544178,-0.076222218573093,-0.038425836712122],[-0.0086685167625546,0.015037796460092,0.075068168342113]],[[0.023160800337791,-0.094514340162277,-0.024402059614658],[-0.015171301551163,0.016550309956074,-0.021303117275238],[-0.018985483795404,-0.05762554705143,0.021402193233371]],[[-0.012047183699906,0.0041111521422863,-0.066088296473026],[-0.015638308599591,-0.010735590942204,-0.030854685232043],[0.015785336494446,0.0028758435510099,-0.049504842609167]],[[0.0084020672366023,-0.018340980634093,-0.0097812889143825],[0.018751980736852,0.0070406929589808,0.0065478715114295],[-0.0081987911835313,-0.03642624989152,-0.010563635267317]],[[0.018965294584632,-0.010925076901913,0.0039588049985468],[-0.06346482783556,-0.014161734841764,-0.097532317042351],[-0.0051126251928508,-0.0049887453205884,-0.011233134195209]],[[0.041116435080767,-0.019747775048018,-0.035808578133583],[0.062099248170853,-0.0071572083979845,-0.017537435516715],[-0.014737415127456,0.020948508754373,0.040082450956106]],[[-0.028043309226632,0.0042784614488482,-0.013162079267204],[0.08414389193058,0.02803741954267,-0.064346738159657],[-0.041035462170839,-0.016166133806109,0.016380988061428]],[[-0.06564312428236,-0.028905652463436,-0.023148143664002],[0.01918420009315,-0.0079582463949919,-0.010932862758636],[-0.05793846026063,-0.082628048956394,-0.0042069042101502]],[[0.033663176000118,-0.055601075291634,-0.027087684720755],[0.017117461189628,-0.015725463628769,-0.014451975934207],[0.036098632961512,-0.0041492753662169,0.0053835962899029]],[[-0.087864704430103,-0.055400528013706,-0.018139772117138],[-0.042953133583069,0.017244318500161,0.022197326645255],[0.031203489750624,-0.038716953247786,0.0021857626270503]],[[-0.010762432590127,-0.082550026476383,-0.074767731130123],[-0.024139495566487,-0.038322277367115,0.030684312805533],[0.005178521387279,0.0015531345270574,-0.02796334400773]],[[-0.026702901348472,-0.13190951943398,-0.050038132816553],[0.032800029963255,-0.045740250498056,0.026874827221036],[0.03167887404561,0.0174341481179,0.021516999229789]],[[0.0037621934898198,0.0588792078197,-0.005363336764276],[0.049450792372227,0.0015489734942093,-0.046305179595947],[-0.053801368921995,0.088809236884117,-0.052066594362259]],[[0.019373867660761,-0.02161356434226,0.02673520706594],[-0.0012114627752453,0.023527484387159,-0.047344762831926],[0.016619678586721,-0.073169998824596,0.023675158619881]],[[-0.095171734690666,-0.055240169167519,0.021856371313334],[-0.02752473577857,-0.017759939655662,0.058461282402277],[0.024044273421168,0.010267352685332,-0.044323742389679]],[[-0.010141817852855,0.022673573344946,-0.065686360001564],[0.054665330797434,-0.032584685832262,-0.0034394273534417],[0.012769867666066,-0.032551940530539,0.010883821174502]],[[-0.0078528737649322,0.008478513918817,0.04726604372263],[-0.035699915140867,-0.011851533316076,-0.0022659709211439],[0.0053412592969835,0.0031279125250876,-0.014220573939383]],[[-0.036904353648424,0.013177036307752,0.0056480919010937],[-0.035349365323782,-0.028518004342914,-0.014696592465043],[0.0031357121188194,-0.01410477142781,0.0015496007399634]],[[-0.07699666172266,-0.029995629563928,-0.029305312782526],[-0.018890472128987,-0.04309293627739,-0.015832332894206],[-0.025698591023684,0.018986599519849,-0.0067554847337306]],[[0.031433306634426,0.056000851094723,-0.063415452837944],[0.086119003593922,0.020229924470186,-0.061073403805494],[-0.029319651424885,0.038639333099127,0.021227452903986]],[[-0.037260856479406,0.058538157492876,0.010535279288888],[-0.047831270843744,0.056193243712187,-0.065730184316635],[-0.0120091708377,-0.079701714217663,0.064929887652397]],[[0.017392478883266,-0.010446401312947,-0.016248136758804],[0.036482576280832,0.014959707856178,0.0090250205248594],[0.027058526873589,-0.0044272290542722,0.055157028138638]],[[-0.015833154320717,-0.059183102101088,-0.0596614331007],[-0.013334025628865,-0.0090724118053913,0.040074449032545],[0.0084625715389848,-0.057715401053429,-0.011721225455403]],[[-0.052837729454041,-0.040894635021687,-0.0059026386588812],[0.012193945236504,-0.00052531540859491,0.015923865139484],[-0.029404511675239,-0.043444905430079,-0.02623269893229]],[[-0.0099430456757545,0.0082733985036612,-0.0093248328194022],[-0.077017322182655,-0.042684976011515,0.014829426072538],[-0.037110712379217,0.034580416977406,-0.0040111662819982]],[[0.0072321980260313,0.027028670534492,0.024071173742414],[0.0047584138810635,0.037182956933975,0.0066557354293764],[0.038133919239044,0.016338475048542,0.011561270803213]],[[-0.02433087863028,-0.029716175049543,0.0066113462671638],[-0.0052220020443201,0.032783772796392,-0.0048320381902158],[0.0039769560098648,0.022142296656966,-0.00058847456239164]],[[-0.069603212177753,-0.015469121746719,0.054021064192057],[-0.046161413192749,-0.011602724902332,-0.046043645590544],[-0.092885851860046,-0.022116808220744,-0.0048016994260252]],[[-0.04600453004241,-0.066187344491482,-0.015872353687882],[-0.075859375298023,0.010150787420571,0.050698202103376],[0.0014045649440959,0.014705804176629,0.037764277309179]],[[-0.041008308529854,-0.050929002463818,0.090315394103527],[-0.016635561361909,-0.031791217625141,0.0042767650447786],[-0.0054391585290432,-0.0057615418918431,0.0084795961156487]],[[0.00039220423786901,-0.058215353637934,-0.11874383687973],[0.056912183761597,-0.068444304168224,-0.05794195830822],[-0.014557383023202,-0.0090861897915602,-0.096731759607792]],[[-0.0059179584495723,-0.027045140042901,0.042598556727171],[-0.093123450875282,-0.056900504976511,0.087592601776123],[0.047634437680244,0.007038532756269,0.017822517082095]],[[0.073814131319523,0.029892884194851,-0.02839676477015],[0.0062539926730096,0.072063580155373,0.019286692142487],[-0.053768705576658,-0.027460049837828,-0.025705819949508]],[[0.073414705693722,-0.013067250140011,0.017253367230296],[0.022725319489837,-0.0095553854480386,-0.020224362611771],[-0.028805853798985,0.041274856775999,-0.054125692695379]]],[[[-0.10012127459049,0.01427735388279,0.026162270456553],[-0.031011277809739,0.04580244794488,0.0043504182249308],[0.063432984054089,0.008058987557888,0.018560035154223]],[[0.016765519976616,-0.013033461757004,-0.042825046926737],[0.0035486423876137,0.01699205301702,0.0093160700052977],[0.035470347851515,-0.025287361815572,-0.01735208556056]],[[-0.044603046029806,-0.010116375982761,-0.0070265475660563],[-0.038892690092325,0.047482240945101,0.045253209769726],[0.0041892062872648,0.012018982321024,-0.077021710574627]],[[0.052864819765091,-0.015519832260907,0.015836911275983],[-0.024683551862836,-0.01550420653075,-0.038099713623524],[-0.0047729727812111,-0.050593759864569,-0.0051572504453361]],[[0.0036972528323531,0.030426507815719,-0.040758203715086],[-0.014576138928533,0.038370452821255,0.050567146390676],[-0.075668156147003,-0.026164771988988,0.081982247531414]],[[0.013545777648687,0.025144347921014,0.0044804494827986],[0.0907137170434,-0.054722815752029,0.043420508503914],[0.035622112452984,0.053055960685015,0.039526101201773]],[[-0.028597109019756,0.12268202751875,0.010451523587108],[0.021840075030923,0.046849627047777,0.23979812860489],[-0.01820894703269,0.003669100580737,0.078726172447205]],[[0.017440691590309,-0.059225797653198,0.00066215934930369],[-0.036613248288631,-0.058864057064056,0.058699999004602],[0.022151250392199,-0.04357773438096,0.0957166031003]],[[-0.035125203430653,0.11642979830503,0.010040128603578],[-0.0037467307411134,-0.03205244615674,-0.015732580795884],[-0.040920659899712,0.040691956877708,0.017317248508334]],[[0.091191068291664,-0.034038744866848,0.12926234304905],[0.12048664689064,0.033092007040977,0.014464587904513],[-0.0055910237133503,0.10571722686291,0.14988276362419]],[[-0.022647986188531,-0.10713821649551,0.024138273671269],[0.064047187566757,-0.039513688534498,-0.004458527546376],[-0.057118099182844,-0.026763809844851,-0.028817906975746]],[[0.043023962527514,0.10050578415394,-0.016479546204209],[0.016601564362645,-0.048188958317041,0.0093425996601582],[-0.037934064865112,-0.016107197850943,0.016570303589106]],[[-0.027633560821414,0.092395834624767,-0.020990630611777],[0.044732920825481,0.053805362433195,0.030955664813519],[-0.037937503308058,-0.041048847138882,-0.099153228104115]],[[0.01898954436183,-0.0038726781494915,-0.096652090549469],[0.021873766556382,0.049199234694242,-0.067808151245117],[0.038600109517574,0.069332651793957,0.002434863941744]],[[-0.016994021832943,0.093622818589211,0.020727824419737],[0.11597531288862,0.041940305382013,0.086107164621353],[0.12134521454573,-0.01508922316134,0.092612750828266]],[[-0.00046151698916219,-0.0048838797956705,-0.04618563503027],[-0.032208699733019,-0.079557672142982,-0.033217411488295],[-0.028401825577021,-0.018039552494884,-0.01631454564631]],[[0.033476181328297,-0.046122077852488,-0.039740670472383],[0.027629725635052,-0.010416701436043,0.022567454725504],[0.055262118577957,0.026877254247665,-0.00043713633203879]],[[-0.064363159239292,0.029062895104289,0.084144875407219],[-0.095496416091919,0.0055094351992011,-0.12305790185928],[-0.098690934479237,-0.041435446590185,-0.078950025141239]],[[0.036646127700806,0.025981914252043,-0.00031176148331724],[-0.035432156175375,0.029103586450219,-0.14357206225395],[-0.040600400418043,-0.075350940227509,-0.048444166779518]],[[0.011787692084908,0.084916219115257,0.13577982783318],[0.056083709001541,0.025658473372459,0.10078783333302],[-0.043594442307949,0.04967700317502,-0.061107132583857]],[[-0.036998927593231,0.03667251765728,0.068719826638699],[-0.027870269492269,0.035536359995604,-0.042793370783329],[-0.068709939718246,-0.050549246370792,-0.033319178968668]],[[0.069537296891212,0.06378348171711,0.070115678012371],[0.049989696592093,0.0066255540587008,-0.037418853491545],[-0.0035947992000729,-0.021358823403716,0.11084489524364]],[[-0.046987075358629,0.050114780664444,-0.096942067146301],[0.040226466953754,-0.017530467361212,-0.088204003870487],[-0.04227339476347,-0.029530141502619,-0.038152419030666]],[[-0.014821114018559,-0.047554668039083,-0.0056625530123711],[-0.059751641005278,-0.062456343322992,-0.033479265868664],[0.11205665022135,-0.034298438578844,-0.0035242999438196]],[[0.074755072593689,0.0081976875662804,0.040166907012463],[0.070742629468441,-0.012172585353255,0.030401822179556],[0.037484019994736,0.088835701346397,-0.0093114618211985]],[[-0.010031273588538,-0.0023380278144032,-0.021232528612018],[-0.046729877591133,0.03091055713594,-0.026018336415291],[-0.0081102605909109,-0.062947675585747,0.053596764802933]],[[0.060189213603735,-0.0033316661138088,0.042095832526684],[-0.11756636202335,-0.011432137340307,-0.024741865694523],[0.0044053560122848,-0.01891491189599,0.0027180518954992]],[[-0.045796871185303,-0.0084869740530849,-0.061799809336662],[0.040953412652016,-0.11563371866941,-0.079040959477425],[0.028537973761559,-0.021128557622433,0.060089945793152]],[[-0.0066317496821284,-0.056967578828335,-0.019608629867435],[0.0082259690389037,-0.07059770822525,0.045185964554548],[0.0081432517617941,0.018207835033536,0.035132139921188]],[[-0.057778026908636,-0.025473980233073,0.0041156713850796],[0.014127247035503,-0.017154278233647,0.023940443992615],[0.022117739543319,0.017378833144903,0.015415681526065]],[[0.084313198924065,0.0057381326332688,-0.030753487721086],[-0.042184215039015,-0.042283818125725,-0.01146228890866],[-0.032239694148302,-0.065999366343021,0.049558341503143]],[[-0.058539509773254,-0.043249927461147,0.045704662799835],[-0.04432824999094,0.071202293038368,-0.060274343937635],[-0.05803420394659,-0.024356121197343,0.069695055484772]],[[0.065300449728966,-0.026808025315404,-0.01784922927618],[-0.038398310542107,-0.042833685874939,-0.042031057178974],[-0.098150297999382,-0.09634817391634,0.075100861489773]],[[0.049160577356815,0.022666696459055,-0.073142610490322],[-0.005562492646277,-0.023831671103835,0.062741935253143],[-0.058713093400002,-0.048158556222916,0.08170073479414]],[[-0.0029669979121536,0.090334326028824,-0.056780401617289],[0.079692862927914,-0.039057806134224,0.0014441715320572],[-0.0070898062549531,0.016068650409579,0.036767527461052]],[[-0.0084939068183303,0.0023706753272563,-0.01364203915],[-0.0085918568074703,-0.024583468213677,-0.075299367308617],[-0.0058246282860637,-0.092219673097134,-0.028621649369597]],[[-0.063664667308331,-0.040495399385691,-0.00014872633619234],[0.054323498159647,-0.031671062111855,-0.005741092376411],[-0.019812155514956,2.9022790840827e-05,0.0074886274524033]],[[0.05441815033555,-0.017519710585475,-0.02672434784472],[0.045614767819643,0.024025799706578,-0.035449545830488],[0.0073359664529562,-0.093468211591244,-0.079489141702652]],[[0.070660479366779,-0.021616345271468,-0.061844304203987],[0.023468773812056,-0.015340364538133,-0.020849075168371],[0.10493697226048,-0.016073010861874,0.024631982669234]],[[0.10704324394464,-0.016726905480027,-0.051259398460388],[0.038976177573204,-0.039934206753969,0.0079278880730271],[-0.0048469719476998,0.0075097745284438,0.0096968403086066]],[[0.027557728812099,0.018417876213789,0.012704702094197],[-0.092007994651794,-0.035138297826052,-0.062459331005812],[-0.084361843764782,-0.068308219313622,0.11688493192196]],[[0.036477789282799,-0.0052457051351666,0.094026789069176],[-0.010938303545117,0.011222617700696,-0.0021808953024447],[-0.0027770102024078,-0.028051279485226,0.065307140350342]],[[-6.525080971187e-05,-0.028965143486857,0.0036468552425504],[0.053353790193796,0.078468017280102,0.023765869438648],[0.058623626828194,0.052356839179993,0.00030434405198321]],[[0.016651818528771,0.038536224514246,0.070560716092587],[-0.079756535589695,-0.0062377597205341,0.030586432665586],[0.065891176462173,-0.015614548698068,-0.020005211234093]],[[0.049725376069546,-0.05111151188612,0.07288384437561],[0.16414570808411,-0.015494899824262,0.0081857610493898],[0.08497803658247,-0.061347804963589,-0.0045107956975698]],[[0.055182725191116,-0.04271912202239,0.076416164636612],[-0.018306653946638,0.021314786747098,0.070247232913971],[-0.071902453899384,0.0070327478460968,0.011239358223975]],[[0.018804276362062,0.07228346914053,0.065904870629311],[-0.030266370624304,0.047492042183876,-0.039218232035637],[-0.038472805172205,0.043274529278278,0.076782681047916]],[[-0.012520776130259,0.076895445585251,0.036524370312691],[0.053323701024055,0.034275185316801,-0.0062223263084888],[0.028811423107982,0.026688482612371,-0.039155762642622]],[[0.037338152527809,-0.032569169998169,0.013445807620883],[0.03979354351759,0.051962282508612,-0.007871394045651],[0.058614823967218,0.047701392322779,-0.043918825685978]],[[0.059556599706411,-0.0009752189507708,-0.071463026106358],[0.057530958205462,-0.021113419905305,-0.023762261494994],[0.034263703972101,0.039478912949562,0.10723246634007]],[[0.023639664053917,-0.025828706100583,-0.071330942213535],[0.0064410362392664,0.00024558784207329,0.0036827232688665],[-0.023316562175751,-0.064091131091118,-0.077126920223236]],[[0.077626064419746,0.065320707857609,-0.024032836779952],[-0.0064727901481092,-0.11137975007296,-0.048384122550488],[-0.025825431570411,0.084645368158817,0.0043022553436458]],[[0.041544821113348,-0.011618285439909,0.032822944223881],[0.036915488541126,-0.019697170704603,-0.053499441593885],[-0.049545638263226,0.039067815989256,-0.0088142985478044]],[[0.01402707118541,0.031504862010479,-0.014424383640289],[0.080868005752563,0.022962838411331,0.0059043164364994],[0.052570782601833,-0.043656896799803,-0.021962907165289]],[[0.050572589039803,-0.056769479066133,-0.05106408521533],[0.15611034631729,0.065697714686394,0.11023253202438],[-0.06018054485321,0.013261230662465,-0.014016539789736]],[[0.028946051374078,0.0032574550714344,-0.06455983966589],[0.050210010260344,-0.029336722567677,-0.015969621017575],[-0.067052491009235,-0.019960625097156,-0.042031645774841]],[[-0.031822398304939,-0.054917898029089,-0.02705573104322],[0.027027186006308,0.021748734638095,0.083769008517265],[0.067652672529221,-0.051879476755857,0.0319550819695]],[[0.035014312714338,0.0277717448771,-0.046439722180367],[0.057092476636171,0.014608142897487,-0.06779420375824],[0.00033497918047942,0.020968189463019,0.018155310302973]],[[-0.046670943498611,0.038890346884727,0.060519944876432],[0.061409506946802,0.056288175284863,0.021317232400179],[-0.016284292563796,0.027156991884112,0.03250839561224]],[[0.066820241510868,-0.048093926161528,0.052389614284039],[-0.023894023150206,-0.045649830251932,0.020272146910429],[0.10846104472876,-0.06090996414423,0.0042033647187054]],[[-0.034723676741123,0.043301891535521,0.014628944918513],[0.016858797520399,-0.093474343419075,0.068454086780548],[0.063299678266048,0.036807764321566,-0.023021513596177]],[[0.02130214124918,-0.014997615478933,-0.053621239960194],[-0.061362065374851,0.0021303333342075,-0.067483320832253],[-0.0034665334969759,-0.051474038511515,-0.028945043683052]],[[0.018455862998962,-0.0099458852782845,0.074252240359783],[0.051117420196533,0.020629569888115,-0.019673593342304],[-0.035196866840124,0.015056001953781,-0.019021509215236]],[[0.044296700507402,0.021115237846971,0.027496509253979],[0.033606003969908,0.099904075264931,0.13011141121387],[0.018624871969223,-0.059213269501925,-0.055649556219578]],[[0.0099803879857063,-0.028381731361151,-0.011860962957144],[0.00015439104754478,-0.086118571460247,0.0090048629790545],[0.13739009201527,0.052615772932768,0.0063092531636357]],[[0.027169205248356,0.057491958141327,0.0010004637297243],[-0.034840948879719,-0.031993634998798,-0.015459528192878],[-0.042510140687227,-0.052468452602625,-0.012722866609693]],[[0.078923478722572,0.034583788365126,-0.018255427479744],[0.022202620282769,-0.018391728401184,0.05389891564846],[-0.013801754452288,0.050688106566668,0.098692856729031]],[[0.042094826698303,-0.076747953891754,0.086811356246471],[0.13299569487572,-0.021049704402685,0.015483686700463],[0.026374066248536,-0.02983015216887,-0.0068095992319286]],[[0.058079916983843,0.05035400018096,-0.080652602016926],[0.065709114074707,-0.051171660423279,0.059972986578941],[-0.02933000959456,-0.02489529363811,-0.070214189589024]],[[0.10517241805792,-0.035917732864618,0.062332894653082],[-0.055219050496817,0.038670245558023,-0.066383510828018],[0.016123754903674,-0.0048106582835317,-0.017699969932437]],[[0.038002956658602,-0.034812297672033,0.011372877284884],[0.08419132232666,-0.024584695696831,0.09776421636343],[-0.028289178386331,-0.059281598776579,0.01474252063781]],[[-0.047232434153557,0.059462405741215,0.0022127071861178],[0.14550665020943,0.071021646261215,0.021150063723326],[-0.021381232887506,0.0033499619457871,0.012635866180062]],[[0.026638807728887,-0.045902796089649,0.04559126496315],[-0.034683804959059,-0.041258849203587,0.075941823422909],[-0.042322602123022,0.031083837151527,-0.11618681997061]],[[0.029299773275852,-0.025091364979744,-0.064287289977074],[-0.086621023714542,-0.0025621869135648,-0.03904228284955],[-0.01799562945962,-0.056454662233591,0.059579070657492]],[[-0.051571365445852,-0.03070236928761,-0.00024618170573376],[-0.059750910848379,-0.046933516860008,0.0090765049681067],[-0.049918659031391,-0.022087216377258,0.069650463759899]],[[0.030385587364435,0.033299937844276,0.041876405477524],[0.045371882617474,0.11405012011528,0.00064860150450841],[0.057713747024536,0.023968478664756,0.015888718888164]],[[0.0048092249780893,-0.063668839633465,-0.044864967465401],[0.041772421449423,0.0088429264724255,0.060480125248432],[-0.023213678970933,-0.01043969206512,-0.0056256637908518]],[[-0.026676569133997,0.039382196962833,0.065933600068092],[-0.0070318346843123,0.065018728375435,0.021328862756491],[-0.040638953447342,-0.047573503106833,0.032231792807579]],[[-0.01872094720602,0.033535771071911,-0.0072573786601424],[0.026759117841721,0.022313591092825,0.054633159190416],[0.0053933318704367,0.022896584123373,-0.027987482026219]],[[-0.012881308794022,-0.063481375575066,-0.031852304935455],[0.074666015803814,0.011569679714739,-0.035708844661713],[0.012529826723039,0.026683194562793,0.0070741181261837]],[[0.014484360814095,0.099147282540798,-0.030300470069051],[-0.016584256663918,0.050085976719856,0.078584559261799],[0.069539360702038,-0.011698760092258,-0.046072099357843]],[[0.058375060558319,-0.02772394567728,-0.060546774417162],[-0.029906380921602,-0.048357482999563,-0.027721824124455],[0.037289015948772,0.0057259323075414,-0.053632870316505]],[[-0.018730258569121,-0.004114291165024,-0.040642749518156],[0.046986728906631,0.076700769364834,0.070289216935635],[-0.10988948494196,-0.035046938806772,0.034674175083637]],[[-0.012749241665006,-0.095821604132652,-0.063145846128464],[0.067404605448246,0.078442580997944,0.088100396096706],[-0.015210723504424,0.0040762778371572,0.084144458174706]],[[0.011224781163037,-0.039527729153633,-0.022995440289378],[-0.053851075470448,-0.027869451791048,0.036662448197603],[0.031320925801992,0.088141776621342,-0.073730200529099]],[[0.059833902865648,0.025565419346094,-0.04686988145113],[-0.021659545600414,0.024594014510512,0.012527026236057],[0.049910582602024,0.08931752294302,0.076835706830025]],[[0.040542051196098,-0.019450152292848,0.045894756913185],[0.018820144236088,-0.076451435685158,-0.075922697782516],[0.0039406763389707,0.002863232512027,-0.023744689300656]],[[0.0039708558470011,0.095881506800652,-0.015585179440677],[0.088949419558048,0.057334631681442,-0.094754874706268],[-0.063468918204308,0.058738578110933,0.10450455546379]],[[-0.057099256664515,0.054924696683884,-0.05403258278966],[0.037219654768705,0.0017677776049823,-0.079330429434776],[0.065981522202492,0.036835290491581,0.034778971225023]],[[0.11045288294554,0.065569400787354,0.018202090635896],[0.021142866462469,0.004543692804873,-0.06192372366786],[0.072025619447231,0.059553980827332,0.076069220900536]],[[0.021485550329089,0.092086657881737,-0.033592890948057],[-0.0318335108459,0.11642891913652,0.029277555644512],[-0.055496584624052,0.052859988063574,-0.029880164191127]],[[-0.00026507157599553,0.030570756644011,0.00068805547198281],[-0.10630511492491,-0.00078439281787723,-0.013877657242119],[0.035740479826927,-0.019296398386359,-0.050060275942087]],[[-0.03111963532865,-0.0038325616624206,0.018566716462374],[-0.017257748171687,-0.055146425962448,-0.012385474517941],[-0.087614051997662,-0.002800258807838,-0.049293626099825]],[[-0.00038078674697317,-0.03036248870194,0.042413834482431],[-0.014269654639065,-0.028779525309801,0.0067833345383406],[0.037142619490623,-0.066710993647575,0.029786223545671]],[[-0.010999950580299,0.0097130062058568,0.002908615861088],[0.077090241014957,-0.028017731383443,-0.084283709526062],[-0.045261431485415,-0.040178149938583,0.0042430930770934]],[[-0.031367652118206,-0.03184026107192,-0.070593871176243],[0.076872542500496,-0.023402245715261,-0.047019019722939],[-0.0061037731356919,-0.054722439497709,0.0036929794587195]],[[-0.0085352938622236,-0.040061790496111,0.043848481029272],[0.077091559767723,-0.03777289763093,0.028839729726315],[0.044956285506487,0.027325440198183,-0.058221016079187]],[[0.0035169695038348,0.049224611371756,0.03551421687007],[0.039033029228449,-0.06677270680666,0.088067278265953],[0.021246334537864,-0.026086496189237,-0.053194910287857]],[[0.02590493299067,-0.018167039379478,0.031519934535027],[-0.047564599663019,0.030141673982143,-0.049392804503441],[-0.037755724042654,-0.031373076140881,0.011858776211739]],[[-0.0089974347501993,-0.03030158020556,-0.018136966973543],[-0.0051645347848535,-0.06818463653326,-0.053246662020683],[0.049727499485016,0.021824715659022,0.010490733198822]],[[-0.0062697930261493,0.0088987592607737,-0.11498200893402],[-0.0624297298491,0.045511722564697,0.080391481518745],[-0.060690201818943,-0.014079372398555,0.027363611385226]],[[0.059736389666796,0.0023310165852308,0.03929827734828],[0.0794388204813,-0.1267893910408,0.043306324630976],[0.032071370631456,0.01164392195642,0.1233622059226]],[[-0.00010094758181367,0.061634931713343,-0.15686826407909],[0.024639530107379,-0.015390087850392,0.030476745218039],[0.020160226151347,0.0068228328600526,0.032942619174719]],[[-0.01844260469079,0.021515259519219,-0.061978865414858],[-0.032061960548162,0.033530816435814,-0.045507378876209],[0.030751556158066,0.099317260086536,-0.058824796229601]],[[0.043071202933788,-0.099875696003437,-0.0076369931921363],[0.060776557773352,0.01143968757242,0.00018768405425362],[0.032767310738564,-0.015427196398377,-0.026206953451037]],[[0.10118128359318,-0.0015376000665128,-0.036283601075411],[0.027184806764126,-0.035001996904612,-0.053816832602024],[-0.014466479420662,0.017401272431016,-0.042199514806271]],[[0.0039415778592229,-0.055839221924543,-0.052780397236347],[0.02308145724237,0.13738441467285,0.103111512959],[-0.056144520640373,0.038745727390051,-0.066928580403328]],[[0.024938052520156,-0.041382163763046,-0.035472363233566],[0.16989003121853,0.059353530406952,-0.022597260773182],[0.094864390790462,0.0049333358183503,-0.017801448702812]],[[-0.049517638981342,-0.020549012348056,0.028811560943723],[0.059214759618044,0.0031249895691872,0.10940454155207],[-0.055414661765099,-0.00019067036919296,-0.023226670920849]],[[0.041863840073347,-0.0092521691694856,-0.092836454510689],[0.01263159699738,0.0698022544384,0.029931865632534],[0.011487580835819,0.03517659008503,0.043051052838564]],[[-0.043063972145319,0.068575851619244,0.04848749935627],[0.00098018499556929,0.018744325265288,-0.018245007842779],[-0.061709612607956,0.051885858178139,-0.083356805145741]],[[-0.054736968129873,0.062606461346149,0.059327848255634],[0.051891639828682,0.01933229342103,0.052144195884466],[-0.065045297145844,-0.039783954620361,-0.015206336975098]],[[0.045288477092981,0.014761808328331,0.045337349176407],[-0.0014044754207134,-0.060667395591736,-0.026451969519258],[0.048875596374273,0.039868663996458,0.024530058726668]],[[-0.034479334950447,-0.057436097413301,-0.054392911493778],[-0.059637308120728,-0.0065515669994056,0.013456480577588],[0.0073566907085478,0.0087806349620223,-0.059749498963356]],[[0.018301200121641,-0.034085649996996,0.033322248607874],[-0.023486226797104,0.10779083520174,0.0087906150147319],[0.0086863804608583,-0.049633327871561,0.020206317305565]],[[0.050552494823933,0.025383958593011,0.10340359061956],[-0.049729503691196,0.0015484030591324,0.045383341610432],[0.064031474292278,-0.10809999704361,0.019760206341743]],[[0.069893315434456,0.001355005777441,-0.045658309012651],[0.01585585065186,0.091489493846893,-0.016989121213555],[0.026818869635463,0.04293205961585,0.049476575106382]],[[0.013369633816183,0.043342396616936,0.052715092897415],[0.036978211253881,-0.012163286097348,-0.0092963920906186],[-0.10277207195759,0.011565320193768,0.12290753424168]],[[0.00017018475045916,-0.037866052240133,0.038817901164293],[0.020534679293633,0.036050073802471,0.016560547053814],[-0.057395774871111,-0.005907395388931,0.071688465774059]],[[0.0045243902131915,-0.10371894389391,-0.023494049906731],[-0.054627172648907,0.11824225634336,-0.016919450834394],[-0.10226494073868,0.088185109198093,-0.037495497614145]],[[-0.0063992384821177,-0.0252641197294,0.0028090726118535],[0.025176536291838,0.02003082819283,-0.040304906666279],[0.04480118304491,-0.035073440521955,0.033924553543329]],[[0.040275514125824,0.070625476539135,0.039631206542253],[0.0034577487967908,0.012251739390194,0.052146766334772],[-0.048801578581333,0.051804516464472,0.041124124079943]],[[-0.0094329342246056,-0.042525064200163,0.01724866963923],[0.10668624192476,0.064881652593613,-0.012559658847749],[0.043863736093044,0.11973401904106,0.076175689697266]],[[-0.067256562411785,0.0041882498189807,-0.068204715847969],[0.019569916650653,0.036304045468569,-0.033671852201223],[-0.014019083231688,0.0086291907355189,0.023985976353288]],[[-0.075909025967121,0.031548116356134,-0.035452753305435],[0.00033021613489836,0.0078458301723003,0.045767534524202],[0.02893852815032,-0.10395939648151,0.0055000502616167]],[[0.10259404033422,0.081011392176151,0.02797613106668],[-0.027438838034868,0.026188151910901,0.025306554511189],[-0.045094314962626,0.061540868133307,0.081944726407528]],[[-0.041222538799047,-0.0090392967686057,-0.028117101639509],[0.042980428785086,-0.016349002718925,-0.086057141423225],[0.11013171821833,0.12360157817602,-0.026221107691526]],[[0.037017624825239,-0.024711878970265,-0.010539777576923],[0.02558933570981,0.0001839504839154,0.0062236278317869],[0.10276176780462,0.059559725224972,0.068884879350662]]],[[[-0.022243363782763,-0.079293690621853,-0.022733751684427],[-0.0376111343503,-0.10751002281904,0.057054046541452],[-0.054287772625685,-0.071092545986176,0.03422749787569]],[[-0.04309669137001,-0.041020650416613,0.060250580310822],[0.00033780484227464,-0.022569702938199,0.051483541727066],[-0.046156469732523,-0.022553365677595,0.027493642643094]],[[-0.024884091690183,0.070855863392353,-0.085411801934242],[0.035259492695332,-0.039872944355011,-0.019297098740935],[-0.010725158266723,-0.058440785855055,-0.015414537861943]],[[0.048175442963839,-0.05648573115468,0.018048498779535],[0.096236139535904,-0.024157049134374,0.052880845963955],[0.037517435848713,0.10669089853764,0.0038281308952719]],[[0.00040328808245249,-0.044271111488342,-0.0087453238666058],[0.047256585210562,-0.024829691275954,0.072619311511517],[0.04250019416213,-0.026429809629917,0.0060500502586365]],[[-0.02230160869658,0.016204688698053,0.020504420623183],[0.10321471840143,0.019540689885616,0.044509384781122],[0.054071594029665,0.10798804461956,0.041740410029888]],[[-0.065681576728821,-0.0031806917395443,-0.048116665333509],[0.11271982640028,0.013582491315901,-0.020976854488254],[0.045556768774986,-0.07844777405262,-0.064052000641823]],[[0.0084251286461949,-0.015788100659847,0.025681100785732],[-0.019500805065036,-0.010290873236954,-0.014759609475732],[-0.069196872413158,0.069636754691601,0.028442187234759]],[[0.014641016721725,0.038951605558395,0.03469455987215],[-0.02662686444819,0.0064288573339581,0.056620731949806],[-0.0377994813025,-0.0085571901872754,-0.0092356223613024]],[[0.15959331393242,0.077393785119057,-0.039759073406458],[0.053588010370731,0.088198602199554,0.17317688465118],[0.044951379299164,0.044110778719187,0.089364528656006]],[[0.012194759212434,0.018670530989766,0.010467999614775],[0.10283260792494,0.019737590104342,0.10871972888708],[-0.039674818515778,-0.0037796492688358,0.07220608741045]],[[0.098933719098568,0.11820326000452,0.032939791679382],[0.024710062891245,0.02894351631403,0.028909150511026],[0.097390100359917,0.046728126704693,0.012979555875063]],[[-0.034039087593555,0.11271881312132,-0.023425038903952],[0.049667675048113,0.025437070056796,0.06933531910181],[-0.011894141323864,-0.017977211624384,-0.077425569295883]],[[-0.0097398366779089,-0.041044559329748,0.028955643996596],[-0.026284961029887,0.039021607488394,-0.049073543399572],[0.0077111190184951,0.048552013933659,0.038511756807566]],[[0.088142991065979,-0.071022488176823,0.076327614486217],[0.11364650726318,-0.071411572396755,-0.024724552407861],[0.089422106742859,0.14092978835106,-0.060871675610542]],[[-0.045669190585613,0.021592766046524,-0.0069357617758214],[-0.040233135223389,0.054646983742714,0.00085794157348573],[-0.044771552085876,-0.056093536317348,-0.085759542882442]],[[0.00063153478549793,-0.032511617988348,0.030116014182568],[0.019866853952408,0.063251748681068,0.045648217201233],[0.0027947470080107,0.085282243788242,0.0085176695138216]],[[0.047396656125784,-0.024540496990085,-0.024829246103764],[-0.075428426265717,-0.071481056511402,0.011645960621536],[0.0025417571887374,-0.061014167964458,0.0083426339551806]],[[-0.030243758112192,0.035703826695681,-0.0060934317298234],[0.009331738576293,-0.007524473592639,-0.016245357692242],[0.035512842237949,-0.10745442658663,0.032187696546316]],[[-0.02951212413609,-0.08737850189209,-0.023544253781438],[0.030900238081813,0.10481464862823,-0.02663036249578],[-0.0075613777153194,0.023868875578046,0.061844557523727]],[[-0.0055531365796924,-0.010581858456135,0.091007515788078],[0.076143048703671,-0.0022431784309447,0.031890090554953],[0.010366812348366,0.020812271162868,-0.065678507089615]],[[0.060083013027906,0.026061872020364,0.085041433572769],[0.079713948071003,0.072027571499348,0.13221569359303],[0.029332369565964,0.10936165601015,0.1746461391449]],[[-0.023367298766971,-0.021860223263502,0.00099378195591271],[0.020845903083682,-0.005705083720386,-0.058610342442989],[-0.066053330898285,-0.085400186479092,-0.036682866513729]],[[-0.024437569081783,0.029230250045657,-0.00019998202333227],[0.059237401932478,0.01208799239248,0.037675086408854],[-0.038400456309319,0.0062218168750405,-0.0054519260302186]],[[0.075720950961113,-0.010219657793641,-0.011023645289242],[0.068333551287651,0.024375714361668,0.06943403929472],[0.054844211786985,0.012111035175622,0.063474796712399]],[[-0.0049414993263781,0.011616991832852,-0.033161323517561],[-0.031088152900338,-0.093754418194294,-0.0034527138341218],[-0.080332249403,-0.091297298669815,-0.0022273189388216]],[[-0.013224781490862,0.032372117042542,0.061191938817501],[-0.083970412611961,0.025488406419754,0.053875800222158],[0.015786690637469,0.080007091164589,0.099375814199448]],[[0.0063724447973073,0.03697331994772,0.052302237600088],[0.0063324635848403,0.029096312820911,0.079800546169281],[0.021096095442772,0.00052347971359268,0.067588120698929]],[[-0.023329732939601,0.02909261547029,0.070533245801926],[0.010088997893035,0.091435879468918,3.9630060200579e-05],[0.10530444979668,0.0096836173906922,0.019682839512825]],[[0.059196926653385,-0.0060847136192024,0.054953783750534],[0.049690503627062,0.01390035264194,0.0033944074530154],[-0.01779717952013,0.085973724722862,0.010544935241342]],[[-0.007421079557389,0.039561297744513,-0.015320470556617],[0.0011422212701291,0.05053111538291,-0.035951882600784],[0.048005316406488,0.030842689797282,0.030807547271252]],[[-0.010649526491761,0.032314341515303,-0.015078364871442],[0.015352319926023,-0.05939494818449,-0.0046011507511139],[0.062376711517572,0.049371231347322,0.010542930103838]],[[0.0052877455018461,-0.027120349928737,0.078366905450821],[-0.017591301351786,0.073056578636169,0.12466329336166],[0.056619361042976,-0.0065911957062781,-0.014594353735447]],[[-0.030584041029215,0.056665040552616,0.059400830417871],[0.11507213115692,0.094043411314487,-0.0036533176898956],[0.13280758261681,0.037684347480536,0.14879527688026]],[[-0.046527501195669,-0.027420982718468,0.12285985052586],[0.066828593611717,-0.058710008859634,-0.0067488644272089],[0.0099737923592329,-0.036618493497372,0.073951885104179]],[[0.064577899873257,0.033488109707832,-0.016317034140229],[0.027643790468574,-0.033996716141701,0.071510083973408],[-0.09551889449358,0.015191534534097,-0.036538429558277]],[[-0.010041745379567,-0.059552174061537,0.0084990281611681],[-0.04658168181777,-0.091710530221462,-0.10151211172342],[-0.059809129685163,-0.071213074028492,-0.10745957493782]],[[0.083728350698948,-0.065317094326019,0.047022245824337],[-0.033247642219067,0.054569326341152,0.084469012916088],[-0.0097221275791526,0.011489150114357,0.0099548855796456]],[[0.018640542402864,0.029045827686787,-0.036568678915501],[0.050072800368071,0.058324825018644,-0.018416687846184],[0.034740600734949,0.048709008842707,-0.03804013133049]],[[-0.047235753387213,-0.032233614474535,-0.0025865230709314],[0.080326564610004,0.029904954135418,0.0014350113924593],[0.010528597980738,0.027717672288418,0.0079856207594275]],[[0.0068449769169092,0.086542576551437,0.075019352138042],[0.10692959278822,-0.083033412694931,-0.056884173303843],[-0.028776129707694,0.045888356864452,0.064414098858833]],[[-0.032680585980415,-0.0093953106552362,-0.0034948354586959],[0.0080905640497804,0.034055277705193,-0.10222825407982],[-0.02733795158565,0.060111191123724,-0.010306842625141]],[[-0.011165647767484,-0.017756424844265,-0.023282000795007],[-0.024558167904615,-0.0067506665363908,0.10215057432652],[-0.011307531967759,0.042184669524431,0.11461084336042]],[[-0.054819293320179,0.043220438063145,0.02665051817894],[-0.032973896712065,-0.079093895852566,0.034531120210886],[0.01628664880991,0.0022528758272529,0.0091144032776356]],[[0.026333071291447,-0.066024295985699,0.0053543937392533],[-0.073697932064533,0.061134710907936,0.036402489989996],[-0.052541915327311,0.069289989769459,0.054989159107208]],[[0.011329186148942,0.0030151028186083,-0.056342277675867],[0.02614438533783,0.021384147927165,-0.092053808271885],[-0.010559298098087,-0.054825033992529,0.084433853626251]],[[-0.021036818623543,-0.054175708442926,0.026401776820421],[0.022798905149102,0.097962275147438,-0.047248549759388],[0.02705080807209,0.028856016695499,0.0081119742244482]],[[0.098547428846359,-0.042308311909437,0.024443151429296],[0.069823257625103,0.12996761500835,-0.059681005775928],[-0.051398526877165,0.054883603006601,0.014372883364558]],[[-0.046350914984941,-0.02292687818408,0.11572149395943],[-0.021933538839221,0.054359048604965,-0.0126679148525],[0.018949721008539,-0.0014521138509735,-0.035627193748951]],[[-0.043593037873507,0.016774544492364,-0.025989586487412],[-0.056558337062597,-0.064590275287628,-0.0076654935255647],[-0.047893952578306,-0.019122445955873,-0.016381541267037]],[[0.043257564306259,0.03457897901535,0.013028022833169],[-0.050977863371372,0.023041965439916,0.072766616940498],[0.062908351421356,-0.020908482372761,-0.076309025287628]],[[0.025949891656637,-0.013346811756492,0.12808258831501],[-0.030530128628016,0.050436608493328,0.10799865424633],[-0.060813400894403,0.079877473413944,0.063242673873901]],[[0.059532694518566,0.024377109482884,0.015087403357029],[0.020430518314242,0.035136975347996,-0.0078383022919297],[-0.049336619675159,-0.056938730180264,-0.0012359292013571]],[[-0.024738602340221,0.03880675509572,0.023445375263691],[0.0070364894345403,0.035678438842297,0.033209886401892],[0.006989065092057,0.034381289035082,0.013996318913996]],[[0.1048724129796,-0.0078225350007415,0.05071359500289],[-0.0029778149910271,0.048502393066883,0.069007143378258],[0.063871920108795,-0.047385051846504,0.082911483943462]],[[0.023732852190733,-0.014942420646548,0.051685355603695],[0.029668595641851,0.071911707520485,0.036060728132725],[-0.014837427064776,-0.014775428920984,0.042540360242128]],[[-0.037906896322966,-0.091210469603539,-0.14600101113319],[0.057793974876404,-0.061942275613546,0.029787616804242],[-0.0026569999754429,-0.010448070243001,0.0046367249451578]],[[-0.055329952389002,0.01325046736747,0.028236053884029],[-0.00033321505179629,0.025957485660911,0.073552571237087],[0.014783095568419,0.0041288221254945,-0.010140794329345]],[[0.032752931118011,0.064585775136948,0.019822489470243],[0.10833287239075,0.018855258822441,0.016121570020914],[0.025798851624131,0.050125230103731,0.10187178105116]],[[-0.051577620208263,0.047836218029261,0.063625760376453],[0.040505759418011,-0.075878947973251,0.021242432296276],[0.040341552346945,-0.0058357450179756,-0.026884745806456]],[[0.078896500170231,-0.001188391703181,0.10320292413235],[0.034631051123142,0.095299035310745,-0.018149692565203],[-0.043457023799419,0.044003859162331,0.057409714907408]],[[0.07304885238409,0.010623320005834,-0.012957675382495],[-0.025340123102069,0.025528591126204,0.029761761426926],[-0.10540167987347,-0.012911255471408,0.00030878570396453]],[[0.021699819713831,-0.035106152296066,0.010986816138029],[-0.048877436667681,0.0076014092192054,-0.0502691231668],[0.0403221398592,-0.091438055038452,-0.028873011469841]],[[0.019134186208248,0.03530614823103,0.022469339892268],[0.005213753785938,-0.047648906707764,0.021802917122841],[0.042415082454681,-0.0044806329533458,-0.056856535375118]],[[-0.049745704978704,-0.015175170265138,0.0044747083447874],[-0.065446570515633,-0.042393259704113,-0.029992543160915],[-0.022187266498804,0.058326084166765,-0.016818482428789]],[[0.0057636043056846,0.012598543427885,-0.10273896157742],[-0.11606059223413,0.011490494012833,0.0074285985901952],[0.091880835592747,-0.018947366625071,0.014077539555728]],[[0.039196074008942,0.085552044212818,-0.038663361221552],[0.0078941881656647,0.088181652128696,0.03098476305604],[0.088810510933399,0.11565207690001,0.11176320910454]],[[0.057699911296368,0.043869618326426,-0.022789523005486],[0.042013321071863,0.04226553067565,0.011256836354733],[-0.13077722489834,0.016793683171272,0.012348811142147]],[[-0.025094734504819,0.08437018096447,0.080533988773823],[0.023856282234192,0.027413841336966,-0.083835728466511],[0.014314497821033,0.06563900411129,-0.00020621021394618]],[[0.055176641792059,0.024004217237234,0.033604383468628],[-0.028239926323295,0.09334097802639,0.097785852849483],[0.055598329752684,0.04523079842329,-0.00097064627334476]],[[0.032639399170876,-0.0052161058411002,-0.04997343942523],[-0.041310090571642,0.051429100334644,0.12907594442368],[-0.0034063530620188,0.090607292950153,0.0070304847322404]],[[0.006757655646652,-0.010907467454672,0.0095552299171686],[-0.010050038807094,-0.012396277859807,0.068751625716686],[0.093279406428337,0.042699355632067,-0.020033717155457]],[[0.066059358417988,-0.018724342808127,-0.00045192573452368],[0.043212790042162,-0.020899895578623,0.00077796669211239],[0.024175951257348,-0.015964210033417,-0.014610989950597]],[[0.033281587064266,0.020632924512029,-0.029392562806606],[0.016683630645275,-0.036776129156351,0.068190969526768],[0.081378899514675,-0.0088857924565673,0.059893853962421]],[[-0.07512404769659,-0.025029733777046,0.043544556945562],[-0.0095655769109726,-0.095406472682953,-0.027680048719049],[0.077510431408882,-0.041777040809393,0.036519523710012]],[[0.057217445224524,0.051758132874966,0.0225820094347],[-0.014192561618984,-0.08310803771019,-0.049745459109545],[0.071524150669575,-0.081175096333027,0.044965069741011]],[[0.029942350462079,0.04557653144002,0.024246836081147],[0.040037222206593,0.034702889621258,-0.0064974646084011],[-0.0018997561419383,-0.10713994503021,-0.060299891978502]],[[-0.015036556869745,0.039814542979002,-0.0060224458575249],[0.02822338975966,0.016083065420389,0.065898098051548],[0.014067350886762,0.028693530708551,0.0038691547233611]],[[0.054871581494808,0.12818053364754,-0.03716354817152],[-0.0058781234547496,-0.076835282146931,-0.0016443044878542],[0.034935802221298,0.0048696999438107,0.05905420333147]],[[-0.095180831849575,-0.039433691650629,0.067158080637455],[0.030179852619767,0.015811068937182,0.0036769311409444],[0.0037144345697016,0.024126036092639,-0.022511543706059]],[[-0.045570813119411,-0.024842934682965,0.0095269978046417],[-0.023278839886189,0.09521759301424,0.066264010965824],[0.062594100832939,-0.012792902067304,0.02643339894712]],[[-0.01210808288306,-0.085226275026798,-0.0349091142416],[0.042835142463446,-0.0033992291428149,0.11838416755199],[-0.068211622536182,-0.02137004584074,0.15601573884487]],[[-0.012183014303446,-0.11595077812672,0.032348521053791],[-0.050190635025501,-0.010240967385471,0.010758948512375],[-0.063059695065022,-0.040597200393677,-0.022133765742183]],[[0.019714897498488,0.076085194945335,0.056262794882059],[-0.03053517267108,0.095463149249554,-0.048101346939802],[-0.069342292845249,-0.077167689800262,0.010403657332063]],[[-0.020250711590052,0.0026292123366147,0.00082589132944122],[0.03082062676549,0.055386807769537,-0.039128549396992],[0.0036547775380313,0.014608973637223,0.038230732083321]],[[0.021276887506247,0.038981791585684,0.031748540699482],[-0.027637902647257,-0.0044794073328376,0.080208219587803],[0.061030000448227,-0.015537328086793,-0.050739884376526]],[[0.018146529793739,-0.0014878287911415,-0.0016217211959884],[0.0077966651879251,0.0022191936150193,0.055079482495785],[0.093973524868488,0.048690278083086,0.042554393410683]],[[-0.017714293673635,0.056468430906534,0.070694029331207],[0.14683474600315,0.064832672476768,0.095590099692345],[0.16963405907154,0.103096999228,0.080264121294022]],[[-0.059114035218954,0.15464609861374,0.013352024368942],[0.054420195519924,0.031704813241959,0.0025528776459396],[0.00020026808488183,0.06233599409461,-0.053596276789904]],[[0.020632836967707,0.036774486303329,0.0032143711578101],[-0.061052676290274,0.041288007050753,-0.0092602670192719],[0.014573724009097,0.084458738565445,0.084373660385609]],[[0.0050020371563733,-0.022494167089462,0.017177354544401],[0.042610995471478,0.014758495613933,0.088234961032867],[0.071351543068886,0.088127329945564,-0.037140544503927]],[[-0.058199856430292,-0.085936740040779,-0.013894986361265],[-0.034477759152651,-0.039499063044786,-0.032607328146696],[-0.050938133150339,-0.013671768829226,-0.065126180648804]],[[-0.02565716393292,-0.043841388076544,0.016246730461717],[-0.028857093304396,0.01885755173862,-0.04448315128684],[-0.0081064216792583,-0.029261810705066,0.024566922336817]],[[0.13365818560123,-0.076235793530941,-0.05620738863945],[-0.052384547889233,0.090569972991943,0.0085362056270242],[0.064137428998947,0.05504172295332,-0.0054234592244029]],[[0.016515223309398,0.036518979817629,0.041527893394232],[0.04066863283515,-0.050166878849268,0.062638022005558],[-0.0193473380059,0.097066946327686,0.033364623785019]],[[-0.032233543694019,-0.00687864003703,0.019366407766938],[-0.045388139784336,0.010162707418203,0.05602253973484],[-0.072523385286331,0.014169504866004,-0.16186328232288]],[[0.13882578909397,0.11478880792856,0.10372939705849],[-0.008650372736156,0.074544847011566,0.080879621207714],[0.021997390314937,-0.00080223183613271,-0.023925099521875]],[[0.016939513385296,-0.045955788344145,-0.070535577833652],[0.10771036893129,0.003738934872672,0.074594870209694],[0.036482810974121,0.10559342056513,0.13177084922791]],[[0.035428460687399,-0.026831606402993,0.0020215730182827],[0.012337285093963,-0.061207707971334,-0.03952868655324],[0.037496380507946,0.0081828534603119,-0.016627017408609]],[[0.027219133451581,0.06223725900054,0.065465621650219],[0.096636421978474,0.043936785310507,-0.044164407998323],[0.041391920298338,-0.088235259056091,-0.024538096040487]],[[0.0006409237976186,-0.032675076276064,-0.031410958617926],[0.0032109767198563,0.013626774773002,0.067016646265984],[-0.034749120473862,-0.031702071428299,-0.025622477754951]],[[-0.073965728282928,0.0092241065576673,-0.040951050817966],[0.080421075224876,0.046131245791912,0.054875884205103],[0.011418953537941,0.095520198345184,0.05042564868927]],[[0.011568441055715,-0.088777676224709,0.034208104014397],[-0.029032262042165,0.020876562222838,0.0075566126033664],[0.087856963276863,-6.3521845731884e-05,-0.012503376230597]],[[-0.020738556981087,-0.013740233145654,0.1164493560791],[-0.0017167006153613,0.017175283282995,0.031613484025002],[-0.029532309621572,0.035809103399515,0.02378716878593]],[[0.03277537599206,-0.029390448704362,0.020482804626226],[0.069130852818489,0.034143228083849,-0.018016958609223],[0.072950944304466,0.078777201473713,0.054142355918884]],[[-0.032971285283566,0.0051686908118427,0.016365941613913],[-0.044602788984776,0.011730049736798,0.058030750602484],[0.0091893440112472,0.033441569656134,0.0061875083483756]],[[0.026973174884915,0.077694050967693,-0.036751851439476],[-0.0014180715661496,0.10633258521557,0.034211505204439],[0.13567547500134,0.048952408134937,-0.034885928034782]],[[-0.03295661509037,-0.037606868892908,0.028031207621098],[0.04138321429491,0.059141665697098,0.029439998790622],[0.042438678443432,-0.02900580316782,0.052691198885441]],[[-0.047282919287682,-0.00076706189429387,0.06514698266983],[-0.080694958567619,-0.011284960433841,-0.029376061633229],[0.11612875014544,-0.11681632697582,-0.011320114135742]],[[0.011727043427527,0.09523319453001,0.040877424180508],[-0.014470212161541,-0.00050027371617034,0.078041441738605],[0.049813166260719,-0.14144313335419,-0.062816873192787]],[[0.0061498237773776,-0.047847509384155,-0.12331004440784],[-0.0094894943758845,0.060775212943554,-0.054936952888966],[-0.060543175786734,0.039238598197699,0.03649378195405]],[[-0.038293980062008,0.0077753933146596,-0.085956126451492],[0.032649420201778,0.038957420736551,0.027676457539201],[0.023375688120723,0.010131746530533,-0.044562511146069]],[[-0.10437218844891,-0.032713431864977,-0.074562512338161],[-0.022025296464562,-0.071100741624832,-0.01374152302742],[-0.040497310459614,0.058796063065529,0.051974948495626]],[[-0.0091234883293509,0.11652439087629,0.033867433667183],[-0.056810718029737,-0.069144286215305,-0.0033819982782006],[0.1171014085412,-0.046900566667318,-0.15837746858597]],[[-0.10768567025661,0.03618997707963,0.027445396408439],[-0.0081762708723545,0.0067742108367383,0.041029680520296],[-0.022751834243536,-0.038093216717243,0.0034554109442979]],[[0.022622669115663,-0.040674511343241,0.10744336247444],[0.031510062515736,0.09537398070097,0.060588750988245],[0.057762496173382,-0.031369015574455,0.072450935840607]],[[-0.059871677309275,-0.10358851402998,-0.058334019035101],[0.030359579250216,0.099076502025127,0.036744751036167],[0.10268341004848,0.08513106405735,0.012178661301732]],[[0.059212643653154,-0.022838391363621,-0.0028412844985723],[-0.0026773766148835,0.13101677596569,0.0041326461359859],[0.030561795458198,0.056391395628452,0.011087610386312]],[[0.012341019697487,-0.13786523044109,-0.088086344301701],[-0.034220766276121,0.029593072831631,0.0018207791727036],[0.038606010377407,0.016979563981295,-0.025330040603876]],[[-0.066069394350052,-0.053332824259996,-0.099371932446957],[-0.066316395998001,-0.1452594101429,-0.058545064181089],[0.081084869801998,0.0074087707325816,-0.080710269510746]],[[-0.048323504626751,0.001069066231139,-0.033582333475351],[-0.035713460296392,0.075632512569427,-0.071304567158222],[-0.057542469352484,-0.10462243109941,-0.07719475030899]],[[-0.030343120917678,0.006881408393383,0.0058867405168712],[0.0016016252338886,-0.013427122496068,0.025978982448578],[0.21143926680088,0.058404520153999,0.032180495560169]],[[0.023096054792404,0.038095355033875,0.025073405355215],[0.034184895455837,0.076259791851044,0.05999930202961],[0.0067038275301456,-0.045855075120926,0.028385946527123]],[[0.013015110045671,0.057533606886864,-0.093783527612686],[-0.004167472012341,-0.044629484415054,-0.12883800268173],[0.027082517743111,-0.092838302254677,-0.058085445314646]],[[0.055915430188179,-0.036704756319523,0.017576716840267],[0.056186269968748,0.033386904746294,-0.079035505652428],[0.063245460391045,0.01752545684576,0.053842972964048]],[[0.023001031950116,0.00095877418061718,0.046199522912502],[0.059176884591579,0.02347806841135,0.041440472006798],[0.050750836730003,0.001136030536145,-0.011564635671675]],[[-0.0082213776186109,0.024816267192364,0.089279346168041],[-0.059753026813269,0.066594704985619,0.014401046559215],[-0.012906382791698,-0.037795227020979,-0.0043293605558574]],[[-0.0057754847221076,-0.055412732064724,-0.0090350843966007],[-0.0989595875144,-0.015308509580791,0.0011566289467737],[-0.05377734079957,0.0033868390601128,0.013542864471674]]],[[[0.035395350307226,0.28529059886932,-0.10468468815088],[-0.06162266433239,-0.057728193700314,-0.028605649247766],[0.0288644451648,-0.12825144827366,0.08844268321991]],[[0.13905361294746,-0.028213301673532,-0.051999907940626],[-0.050873257219791,-0.19584508240223,-0.05247363075614],[0.06041244417429,0.0013487248215824,0.047993343323469]],[[-0.032645646482706,-0.091190233826637,0.20218016207218],[0.10976385325193,-0.11638113111258,0.13581769168377],[-0.0094158407300711,0.1174453496933,-0.074728518724442]],[[0.062930092215538,-0.028642222285271,0.14694193005562],[0.026410445570946,0.0137600004673,-0.019453985616565],[-0.014522281475365,-0.053207881748676,-0.032231006771326]],[[0.093548983335495,-0.11185196787119,0.045471232384443],[0.034615699201822,-0.026074282824993,0.021959245204926],[-0.0039771837182343,-0.1024996265769,0.080824509263039]],[[-0.027389509603381,-0.019376439973712,-0.0023626694455743],[0.092761553823948,0.11931241303682,0.052307970821857],[-0.0089949686080217,-0.0063444306142628,0.055185098201036]],[[-0.073869310319424,0.15124553442001,0.22264647483826],[-0.036841414868832,-0.031680017709732,0.12005648761988],[-0.013478321954608,-0.0053239041008055,-0.19555252790451]],[[-0.054671563208103,-0.051440212875605,-0.10629447549582],[0.062997095286846,-0.041919842362404,0.069284722208977],[-0.16346588730812,0.050326477736235,0.12297805398703]],[[0.14792917668819,0.023388024419546,0.080456934869289],[0.072185434401035,-0.035809598863125,-0.20468360185623],[-0.023098455742002,0.063038423657417,0.071260012686253]],[[-0.019447233527899,0.074526444077492,0.17152933776379],[-0.19555895030499,-0.18626715242863,-0.17443534731865],[0.0085527561604977,0.081835642457008,0.20663592219353]],[[-0.2110690921545,-0.10432153195143,-0.13429513573647],[-0.0085348207503557,-0.035261005163193,-0.05663388222456],[0.062074527144432,-0.074473574757576,0.13945931196213]],[[-0.13937573134899,-0.030013356357813,-0.039301011711359],[0.058855656534433,-0.034993939101696,-0.062901198863983],[0.07926157861948,-0.024093240499496,-0.033925864845514]],[[-0.096901439130306,-0.085046134889126,-0.072997808456421],[-0.093024842441082,-0.16994695365429,-0.098568513989449],[0.02360875159502,-0.03401242941618,0.1715923845768]],[[0.022275887429714,0.093383759260178,0.067426986992359],[-0.097466833889484,-0.0028206889983267,-0.05388581007719],[0.05547383800149,0.068333812057972,-0.1233961507678]],[[0.070400133728981,0.051065154373646,0.12586219608784],[0.059887934476137,0.014103718101978,0.087137721478939],[-0.11296217143536,-0.18676237761974,-0.20708374679089]],[[0.034294482320547,-0.050762858241796,-0.040293484926224],[-0.017629684880376,0.095742926001549,0.046809919178486],[0.0074064210057259,-0.00862976629287,-0.021679082885385]],[[-0.04089343547821,-0.020715247839689,-0.12225664407015],[0.094490617513657,0.093726605176926,-0.021591631695628],[0.090517230331898,-0.026037776842713,0.0097769862040877]],[[-0.15856456756592,0.058682851493359,-0.04489067569375],[-0.20737674832344,-0.052765648812056,-0.01085983030498],[-0.0073392488993704,0.012774096801877,-0.010198920965195]],[[-0.0029802387580276,-0.21633456647396,0.025863859802485],[0.024056151509285,-0.03685737401247,-0.031897559762001],[0.027651622891426,0.17237348854542,-0.21080996096134]],[[-0.12684807181358,-0.17116340994835,-0.099168568849564],[-0.071238622069359,-0.050664804875851,-0.11952748894691],[0.039015136659145,-0.010772868990898,0.11879502981901]],[[-0.14457152783871,-0.089559309184551,0.16962923109531],[-0.017163997516036,-0.015198143199086,0.051552146673203],[0.087017223238945,0.12288676202297,0.0017049383604899]],[[-0.029550170525908,0.2434259802103,0.095647409558296],[0.029535399749875,-0.11409446597099,0.10337550938129],[-0.10027530044317,-0.12609884142876,-0.11984552443027]],[[-0.036227289587259,0.20021314918995,-0.13456758856773],[-0.046372439712286,0.073684215545654,-0.24621018767357],[0.046432588249445,-0.16562387347221,0.06686893850565]],[[-0.039534598588943,-0.15575280785561,-0.0053484183736145],[-0.010276418179274,-0.016039436683059,-0.12571968138218],[0.024327490478754,-0.045469149947166,0.1119246929884]],[[-0.024835977703333,-0.026366936042905,0.13391953706741],[0.083385206758976,-0.13733646273613,-0.041053541004658],[-0.056487649679184,0.099321894347668,-0.011257525533438]],[[-0.079202853143215,-0.0078558372333646,-0.19898077845573],[0.018469352275133,0.065274968743324,0.15435463190079],[0.0020765759982169,-0.032089632004499,-0.18512231111526]],[[-0.12922069430351,-0.12650230526924,0.22466877102852],[-0.058118931949139,0.054927743971348,0.086681716144085],[-0.045796167105436,0.064346805214882,0.076186001300812]],[[0.036431580781937,-0.13873572647572,-0.16098818182945],[-0.041668750345707,0.032130036503077,0.07883283495903],[0.15678200125694,-0.052753150463104,0.026434324681759]],[[-0.085546985268593,-0.14944851398468,-0.077934198081493],[-0.15292510390282,0.010959728620946,0.030483346432447],[0.0025809947401285,0.017842391505837,-0.0028934094589204]],[[0.024824868887663,-0.27016878128052,-0.0027830675244331],[-0.09170063585043,-0.15789397060871,-0.0062997858040035],[-0.12229695171118,0.10541420429945,0.19853438436985]],[[0.030752038583159,-0.065380997955799,-0.013130320236087],[0.14191508293152,0.034059640020132,-0.14998792111874],[-0.099674746394157,-0.10044591128826,0.058341279625893]],[[0.001034289249219,0.097766295075417,-0.037399712949991],[0.013210968114436,-0.010438191704452,-0.012076261453331],[0.054184753447771,0.17031064629555,-0.13911391794682]],[[0.030264340341091,-0.065917938947678,0.024616360664368],[-0.051000408828259,0.0065859402529895,0.25443354249001],[-0.085953965783119,0.012530580163002,-0.045453805476427]],[[0.23150819540024,0.27538907527924,0.085818707942963],[-0.030241001397371,-0.061662420630455,0.15140596032143],[-0.078296169638634,-0.071329899132252,-0.24480319023132]],[[-0.023402269929647,-0.021811412647367,0.0085138194262981],[-0.050130039453506,-0.060789305716753,-0.058770760893822],[0.18654081225395,0.062382690608501,0.11431112140417]],[[0.042700599879026,0.063790440559387,-0.097162783145905],[-0.069768212735653,0.019835956394672,-0.097718961536884],[-0.081672593951225,0.058833155781031,-0.058409430086613]],[[0.054786369204521,0.077066160738468,0.15574963390827],[0.21740582585335,0.29501816630363,0.22887842357159],[0.086383506655693,0.060121919959784,0.080557353794575]],[[-0.022586608305573,-0.14482368528843,0.02781337313354],[-0.0092986943200231,0.11455512791872,0.13267041742802],[0.094746015965939,0.074182093143463,0.023446574807167]],[[0.012884945608675,-0.10275889933109,-0.095160566270351],[0.095602229237556,0.025717733427882,-0.1529128998518],[0.023659097030759,0.012636612169445,0.27824887633324]],[[0.057274028658867,-0.014483278617263,0.044752277433872],[0.10296770185232,-0.083793446421623,-0.019991865381598],[0.057850420475006,0.011797942221165,-0.067160457372665]],[[-0.0023527671582997,0.02569760940969,0.0033017776440829],[0.037771571427584,0.036520503461361,-0.010607422329485],[-0.089560382068157,0.26288485527039,0.14372366666794]],[[0.021374030038714,-0.0031080048065633,0.094036735594273],[9.392638457939e-05,0.14707696437836,0.071056038141251],[0.092675641179085,-0.083206363022327,-0.0063404440879822]],[[-0.046794377267361,0.066650927066803,-0.13680236041546],[-0.015413743443787,0.010114858858287,-0.1351470053196],[-0.020199814811349,0.12623719871044,0.090853914618492]],[[-0.046804610639811,0.080047957599163,0.22407634556293],[0.040176663547754,0.015727873891592,-0.19411358237267],[-0.073870852589607,0.13753429055214,-0.26884338259697]],[[0.13585563004017,-0.023204391822219,-0.14270375669003],[0.13006728887558,-0.17100757360458,-0.02886831946671],[-0.041950538754463,0.025547802448273,-0.16411045193672]],[[-0.042250357568264,-0.21869529783726,0.096087962388992],[0.063484065234661,-0.05815226957202,-0.084118694067001],[0.0089369900524616,0.037321146577597,0.022402321919799]],[[-0.11106627434492,-0.059633869677782,0.31428194046021],[-0.017123321071267,-0.17243999242783,0.059717107564211],[0.027568824589252,0.012636280618608,-0.0016915613086894]],[[0.062530510127544,-0.011498461477458,-0.11951833963394],[-0.046853844076395,-0.060772255063057,-0.065886527299881],[0.016206137835979,-0.11538138240576,-0.12034447491169]],[[0.19018533825874,0.2235352396965,0.16015757620335],[-0.0063988449983299,0.012349670752883,0.00092543999198824],[-0.059474520385265,-0.13657929003239,0.054703135043383]],[[-0.046263873577118,-0.060450010001659,-0.19426335394382],[0.073793232440948,0.089205220341682,-0.060995530337095],[-0.00020123818831053,-0.054760977625847,0.039633769541979]],[[0.086686909198761,0.11213050037622,-0.0080232620239258],[-0.03301315009594,0.10433861613274,0.1516527235508],[-0.035184793174267,0.056073118001223,0.0028726893942803]],[[0.01261149905622,0.20376627147198,0.19224266707897],[-0.045567814260721,-0.10728893429041,-0.010386674664915],[0.048804327845573,-0.04414127767086,-0.03944992646575]],[[0.094450064003468,-0.019380023702979,-0.19454053044319],[0.19304749369621,-0.028440948575735,0.079208850860596],[0.034983113408089,0.11559278517962,-0.093181483447552]],[[0.027592830359936,0.13738204538822,0.074594348669052],[0.075863502919674,-0.065690770745277,0.067845828831196],[-0.0031681568361819,-0.02897858992219,-0.057809196412563]],[[-0.093936435878277,-0.11066529154778,-0.11208053678274],[0.017536429688334,0.10536521673203,0.094770647585392],[0.10728484392166,0.01098061259836,0.09463682025671]],[[-0.0081434762105346,0.022077310830355,0.088590160012245],[0.13883781433105,-0.032074727118015,-0.21412813663483],[-0.061156831681728,0.14999157190323,0.095470264554024]],[[-0.13275584578514,-0.1222101226449,0.1048132404685],[0.053288020193577,0.02048565261066,-0.18828345835209],[-0.040521245449781,0.089809335768223,-0.074630416929722]],[[0.0011444279225543,0.013890056870878,0.2672019302845],[-0.061587106436491,0.062537327408791,0.052520889788866],[-0.071638405323029,-0.054250098764896,0.19934125244617]],[[-0.05219453945756,-0.14601726830006,-0.19981604814529],[0.052735384553671,0.001366380834952,0.041347548365593],[-0.061285972595215,0.034849613904953,0.013618461787701]],[[-0.099795036017895,0.073391638696194,-0.15292418003082],[-0.069852523505688,0.10645162314177,0.29393485188484],[-0.12431778758764,0.11866112053394,0.044157549738884]],[[0.063855066895485,-0.1080624461174,-0.24323265254498],[0.050307713449001,0.16724787652493,-0.0041736834682524],[0.024660088121891,-0.095829628407955,0.18640150129795]],[[-0.05941966176033,0.054035808891058,0.19757923483849],[-0.04789574444294,0.13407042622566,-0.07785277813673],[-0.010709870606661,-0.085932396352291,-0.057234216481447]],[[0.095509700477123,0.089057900011539,0.12287007272243],[0.047706492245197,0.10893055796623,0.12086265534163],[-0.034034799784422,0.036013823002577,0.13331116735935]],[[-0.12253171205521,-0.086104236543179,-0.055049777030945],[-0.11322622001171,-0.075396545231342,0.052840817719698],[0.026067044585943,0.028113100677729,0.1248574629426]],[[-0.026165142655373,-0.11384467035532,0.36081102490425],[0.030786860734224,-0.065593913197517,-0.060310944914818],[0.018950054422021,0.0043951920233667,-0.066951483488083]],[[0.024432308971882,-0.14363026618958,0.14385256171227],[0.061841662973166,-0.035635225474834,-0.085842296481133],[0.10592730343342,0.035264667123556,-0.077452965080738]],[[0.16855478286743,0.037150386720896,0.020875649526715],[0.056681998074055,-0.13873995840549,0.20639863610268],[-0.070209346711636,-0.13027749955654,-0.0027816989459097]],[[0.15007649362087,-0.05969362705946,-0.092298656702042],[-0.0051607973873615,0.027240928262472,0.20889569818974],[0.05951226875186,0.092793934047222,0.059385318309069]],[[0.002604252891615,0.046462908387184,-0.11210268735886],[0.044793497771025,-0.11971163004637,-0.17850545048714],[-0.11974816769361,0.065962679684162,0.27237439155579]],[[-0.073744915425777,-0.18555162847042,-0.078580468893051],[-0.09526564180851,-0.15419952571392,-0.18292514979839],[0.12473583966494,-0.11371982097626,-0.13111527264118]],[[-0.15447114408016,-0.031285397708416,-0.32815897464752],[-0.16632874310017,-0.23878805339336,-0.23322588205338],[-0.063661746680737,0.012733363546431,-0.072380900382996]],[[0.053085561841726,-0.15671096742153,0.019746299833059],[0.009793552570045,-0.033341102302074,0.15523533523083],[0.042733956128359,0.022113228216767,5.4079791880213e-06]],[[-0.032700166106224,-0.045346491038799,0.0051345438696444],[-0.018151953816414,0.090268082916737,0.060842681676149],[-0.06141608953476,-0.064754299819469,0.16539578139782]],[[-0.080242626368999,-0.026850700378418,0.055325992405415],[0.071837641298771,0.040874172002077,-0.072736240923405],[-0.00042429051245563,-0.086708933115005,0.02488930337131]],[[-0.027834855020046,-0.052871700376272,0.074246510863304],[-0.04370903596282,-0.14107736945152,-0.026017013937235],[-0.0082197636365891,0.11253128200769,0.032638888806105]],[[0.048362698405981,0.036766540259123,0.11832071840763],[-0.017803950235248,0.18122853338718,0.079129405319691],[-0.014268037863076,-0.14527994394302,-0.048684477806091]],[[-0.11279607564211,0.0072507406584918,0.22760029137135],[-0.04938305914402,-0.039315488189459,0.058629989624023],[-0.081871472299099,0.15332344174385,0.15457464754581]],[[-0.074353814125061,-0.26097705960274,-0.10012750327587],[-0.041764359921217,-0.048518277704716,0.035856693983078],[0.010293686762452,0.083730816841125,0.054711900651455]],[[0.013939443044364,0.25485363602638,0.17998532950878],[-0.00087962142424658,0.080972529947758,-0.040991753339767],[-0.10670489817858,-0.012166289612651,-0.096857815980911]],[[0.1361992508173,-0.0096927862614393,-0.25779411196709],[0.11611075699329,-0.03984272107482,0.083724193274975],[0.099713422358036,0.12133303284645,-0.058967687189579]],[[0.021351095288992,0.017198588699102,0.040905192494392],[0.019498215988278,0.040384899824858,0.01270360685885],[0.03866208344698,-0.034752763807774,0.027884090319276]],[[0.19388148188591,0.13470293581486,-0.40146115422249],[0.098229393362999,-0.14700721204281,-0.041240017861128],[0.16447471082211,-0.022491507232189,-0.078648962080479]],[[0.06521899998188,0.097992561757565,-0.23975946009159],[0.0057435659691691,-0.10490427166224,-0.082894340157509],[0.046656563878059,-0.16951790452003,-0.094143517315388]],[[-0.070997722446918,-0.095289513468742,-0.080015383660793],[0.19850915670395,0.017739318311214,0.029005337506533],[-0.028452526777983,0.10468073934317,-0.015877084806561]],[[0.17724324762821,0.018981689587235,-0.084922477602959],[0.060153499245644,0.098370231688023,-0.02689428254962],[-0.039980795234442,0.012220157310367,0.028373416513205]],[[-0.036214247345924,0.062240239232779,0.17132836580276],[-0.075097471475601,0.026201531291008,-0.16558046638966],[0.032693836838007,-0.019929893314838,-0.14212231338024]],[[0.10718869417906,-0.10444618016481,-0.11503843963146],[0.017678501084447,-0.010204206220806,0.0512485653162],[-0.07548413425684,0.022029511630535,-0.065492078661919]],[[-0.1105554997921,-0.28414988517761,-0.23394714295864],[-0.11425102502108,0.054237939417362,0.054454475641251],[0.013091490603983,-0.24553970992565,-0.085606716573238]],[[-0.099966935813427,-0.17974902689457,-0.33383786678314],[-0.11276943981647,-0.067257955670357,0.08302316069603],[0.075932450592518,0.15210744738579,0.15224358439445]],[[0.099484577775002,0.098714604973793,-0.15465733408928],[0.009263688698411,-0.015721090137959,-0.00036427599843591],[-0.049958564341068,0.043503817170858,0.069440566003323]],[[0.057022530585527,0.21635140478611,-0.06353884935379],[0.082892797887325,-0.20765413343906,-0.020715309306979],[-0.024155851453543,0.14729535579681,-0.00257364124991]],[[0.060615476220846,0.097999036312103,0.039629112929106],[0.077785037457943,0.047873210161924,0.095939792692661],[-0.0227365270257,0.06172164157033,0.10499302297831]],[[-0.0033427819143981,0.015078691765666,-0.013371348381042],[0.23566691577435,-0.078383930027485,-0.12889420986176],[-0.076794326305389,0.068424537777901,0.04675279930234]],[[-0.012665127404034,0.02676098421216,0.12446674704552],[-0.11878392845392,0.030756955966353,0.034993294626474],[-0.1325356066227,-0.045981176197529,-0.032275635749102]],[[-0.016957778483629,-0.021008476614952,0.078646190464497],[0.017680931836367,0.089120015501976,0.010937168262899],[-0.0020545097067952,0.012336964718997,-0.08999414741993]],[[0.01843205653131,-0.1387342363596,-0.16096799075603],[-0.070005103945732,-0.089004270732403,0.061073902994394],[-0.022025488317013,0.055572424083948,0.089460045099258]],[[-0.14168965816498,-0.082186326384544,-0.2916721701622],[0.11117192357779,0.089607365429401,-0.063356854021549],[-0.00074750499334186,0.079263664782047,-0.16692082583904]],[[-0.066817067563534,-0.036237996071577,0.097949899733067],[0.14080755412579,-0.051393877714872,0.12617623806],[-0.10218941420317,0.0065675070509315,0.14128606021404]],[[-0.153484582901,-0.17157223820686,0.15586353838444],[0.068540699779987,-0.13702183961868,-0.19335649907589],[-0.036620955914259,-0.018612599000335,-0.20475555956364]],[[0.021204521879554,0.061673108488321,0.058687169104815],[-0.067537233233452,0.067109972238541,0.18320567905903],[-0.012754806317389,-0.028433287516236,-0.16069428622723]],[[-0.1036049425602,0.034087970852852,0.17091052234173],[-0.087661892175674,0.040727682411671,-0.20935401320457],[-0.11213500052691,-0.10570131242275,0.2785253226757]],[[-0.045606020838022,-0.067142136394978,-0.16618821024895],[-0.087371200323105,-0.015119067393243,0.0046968841925263],[0.048242144286633,-0.01571480371058,-0.0028461317997426]],[[-0.0094140581786633,-0.16427326202393,0.0059434482827783],[0.0083471667021513,0.28669050335884,0.031861033290625],[0.064503982663155,-0.06352049857378,-0.016131134703755]],[[-0.1174708083272,0.04669962823391,-0.02781848795712],[-0.10690147429705,0.048783153295517,0.058865454047918],[0.048300206661224,0.017534924671054,-0.020816372707486]],[[-0.1636285930872,-0.14093154668808,-0.29642528295517],[0.014244453050196,0.065713062882423,0.098229520022869],[0.053143609315157,0.058466587215662,0.027740422636271]],[[-0.12013579159975,-0.085779629647732,-0.20572984218597],[-0.10176406055689,-0.0076376930810511,-0.0094760302454233],[0.078785762190819,0.12191028147936,0.12044373899698]],[[-0.06265340000391,-0.15677851438522,0.19118244946003],[-0.0090140085667372,0.03164654225111,-0.17551355063915],[0.042502243071795,-0.00049487146316096,0.13712318241596]],[[0.11637628823519,0.053938671946526,-0.087907314300537],[-0.019584497436881,-0.044515203684568,-0.011134604923427],[0.12533608078957,-0.16433437168598,-0.032714530825615]],[[-0.070728085935116,0.048484832048416,-0.023867106065154],[-0.035403415560722,-0.15448075532913,-0.0037827889900655],[-0.069111131131649,-0.0072429003193974,-0.064208723604679]],[[0.0139001281932,-0.095970332622528,-0.16457743942738],[-0.062881082296371,0.035918414592743,0.094474375247955],[0.038424216210842,0.030896233394742,0.055824518203735]],[[0.021371733397245,0.069437637925148,0.073532320559025],[-0.0076427273452282,-0.087728023529053,-0.087414368987083],[-0.013442819938064,-0.0096574947237968,-0.0074239233508706]],[[-0.027239268645644,-0.11456000804901,-0.046217873692513],[-0.07159348577261,0.054191812872887,-0.0052588460966945],[0.0055505912750959,0.084911108016968,-0.044211205095053]],[[-0.054544039070606,-0.076725624501705,-0.013178558088839],[0.053538519889116,-0.10395283997059,-0.029337372630835],[0.042417142540216,0.16206340491772,0.026573371142149]],[[0.0080177970230579,-0.048294104635715,-0.093757122755051],[0.055698923766613,0.052721444517374,0.080912448465824],[0.007839085534215,-0.024409281089902,-0.025919672101736]],[[0.018290577456355,0.12337429821491,-0.064602181315422],[-0.092395089566708,-0.12300457805395,-0.024051243439317],[-0.099969111382961,-0.026699408888817,0.11569301784039]],[[0.074882484972477,0.0588618516922,0.020054791122675],[0.037313289940357,-0.02516364492476,-0.25773775577545],[-0.14945858716965,-0.11926385760307,-0.082843765616417]],[[-0.014896952547133,0.23212081193924,0.0073062940500677],[-0.10553696006536,0.11358092725277,-0.17076924443245],[0.018792264163494,-0.10948183387518,0.0053752833046019]],[[0.032801374793053,0.047890171408653,0.2909454703331],[0.038968879729509,-0.031686794012785,-0.11930222809315],[0.054696552455425,0.014304112643003,0.015580202452838]],[[0.10451644659042,-0.080828800797462,-0.041197907179594],[-0.016097839921713,-0.17365422844887,-0.066505692899227],[0.052211806178093,-0.03131603077054,0.11245813965797]],[[0.11539335548878,0.17939332127571,0.022437825798988],[0.06887423992157,-0.051052127033472,0.095207385718822],[-0.026191195473075,-0.012054438702762,-0.013683577999473]],[[0.029714547097683,0.026367804035544,0.067101567983627],[-0.036313682794571,-0.029028099030256,0.19079819321632],[0.020643664523959,0.015871176496148,-0.24707944691181]],[[-0.0097059831023216,-0.11330863088369,-0.063737101852894],[0.065379723906517,-0.085852272808552,-0.10266577452421],[0.044605799019337,-0.0068106888793409,-0.053340010344982]],[[-0.094361260533333,-0.1955935806036,-0.1221896559],[-0.054263666272163,0.059922214597464,0.14886726438999],[0.046099901199341,-0.034386094659567,0.0028033268172294]],[[-0.097976088523865,-0.13412021100521,-0.043500419706106],[-0.08186512440443,0.0080418903380632,0.062374178320169],[0.013368682004511,0.080092661082745,0.16569758951664]],[[0.078104130923748,0.11158653348684,-0.15087769925594],[0.015403348021209,0.059782419353724,0.18323646485806],[0.018022926524282,-0.11020734161139,-0.012940734624863]],[[-0.032990913838148,0.10209579020739,0.23381496965885],[-0.028500035405159,-0.0033606130164117,-0.11387734115124],[-0.16541804373264,-0.14563462138176,0.12041437625885]],[[-0.035051818937063,-0.091653317213058,0.37819162011147],[-0.001214460702613,0.013790495693684,0.11381903290749],[-0.0054598031565547,-0.1422358751297,-0.0084968451410532]],[[-0.20529714226723,-0.101513274014,-0.014537368901074],[-0.0086977547034621,-0.12205958366394,-0.055215734988451],[-0.16483934223652,-0.046999104321003,-0.068303033709526]]],[[[-0.022877288982272,-0.086465664207935,-0.05757013335824],[-0.015968263149261,-0.060768399387598,0.044760160148144],[0.0036583687178791,0.00054325832752511,0.0038635046221316]],[[-0.044921945780516,-0.044252533465624,0.014756235294044],[-0.02805363945663,0.0045819710940123,0.0083221141248941],[0.045955192297697,-0.031407579779625,-0.039389751851559]],[[-0.035312365740538,0.0031111731659621,0.035289846360683],[0.025990905240178,-0.072717688977718,-0.035310503095388],[0.025754561647773,0.028845785185695,-0.023093344643712]],[[-0.031638380140066,0.018072575330734,0.062374237924814],[-0.018907474353909,0.0078262938186526,0.019377566874027],[0.0027068825438619,0.0456019975245,-0.027450630441308]],[[-0.00059417070588097,-0.0062314509414136,0.040685039013624],[-0.040233552455902,-0.015458217822015,-0.065865747630596],[-0.012800282798707,-0.022689756006002,-0.013480883091688]],[[-0.019563233479857,-0.063705362379551,0.060431990772486],[-0.023101828992367,0.029083346948028,-0.045152772217989],[-0.0028752072248608,-0.024770196527243,-0.025788195431232]],[[0.010579161345959,0.057843934744596,0.003320730291307],[-0.0002826284035109,0.032923083752394,-0.015352967195213],[-0.050250880420208,0.029899289831519,-0.086355738341808]],[[-0.036820262670517,0.023514965549111,0.0041730203665793],[0.021404450759292,0.026722038164735,-0.013836185447872],[0.057591639459133,0.090919218957424,-0.011137566529214]],[[0.061298210173845,0.035196594893932,0.024471407756209],[-0.059904966503382,0.041765078902245,-0.01819571107626],[-0.0069160647690296,-0.046430565416813,-0.011734419502318]],[[-0.042578056454659,0.013084476813674,0.0051437104120851],[0.030804662033916,-0.058514345437288,-0.020678270608187],[0.0079555045813322,0.080771908164024,-0.0021575470454991]],[[-0.015191305428743,-0.0057822493836284,-0.010189425200224],[-0.055957783013582,0.0074647995643318,0.008809975348413],[0.0037720710970461,-0.0034750606864691,0.031043270602822]],[[-0.044698644429445,0.074108310043812,-0.047628216445446],[0.029328083619475,-0.069759123027325,0.036663115024567],[0.03398298099637,-0.015288753435016,0.079626455903053]],[[-0.090585738420486,0.015364047139883,0.044223677366972],[0.041470646858215,-0.11528986692429,-0.033194188028574],[-0.0062256478704512,-0.013427461497486,0.011454125866294]],[[0.027952177450061,0.0074814683757722,-0.07136033475399],[0.011551664210856,-0.022708471864462,-0.011929349973798],[-0.075672693550587,-0.037891194224358,-0.036434382200241]],[[0.041539970785379,0.037522047758102,0.054844215512276],[0.05336843803525,0.050245895981789,-0.051056381314993],[0.0071558663621545,0.069041788578033,0.031663652509451]],[[-0.035341586917639,0.0014964194269851,-0.0082251681014895],[-0.023160863667727,-0.024069510400295,-0.033158212900162],[-0.04326282069087,0.095895908772945,-0.0044225039891899]],[[-0.014276632107794,0.050526764243841,0.055535886436701],[-0.019883321598172,0.073458015918732,-0.015222051180899],[-0.020206039771438,-0.06155776232481,0.051174405962229]],[[-0.006437152158469,0.053883463144302,-0.036069836467505],[0.073613092303276,-0.023366052657366,0.0095210988074541],[-0.052379451692104,0.057476721704006,-0.032933622598648]],[[-0.019855789840221,-0.017803957685828,-0.055661275982857],[-0.042767275124788,-0.021633068099618,0.02428257279098],[-0.08781561255455,0.0067699067294598,0.041540700942278]],[[-0.037441954016685,0.019861007109284,-0.096923805773258],[0.043359979987144,0.027059987187386,0.036001477390528],[0.037501271814108,-0.00071311823558062,0.056055121123791]],[[0.046793356537819,0.059760957956314,-0.032119534909725],[0.03279510140419,-0.0019292132928967,-0.029816383495927],[0.074835941195488,-0.03936393558979,0.03089052811265]],[[0.042371958494186,-0.079822033643723,-0.027806172147393],[-0.086820483207703,-0.086302317678928,-0.033068206161261],[0.079232506453991,0.064682967960835,-0.034618899226189]],[[-0.0098844561725855,0.041905231773853,-0.0033232606947422],[-0.093282215297222,-0.044488396495581,-0.0089180832728744],[-0.030550703406334,-0.0243183914572,0.019063485786319]],[[-0.0088601419702172,-0.011954750865698,-0.0085682002827525],[0.0020441724918783,-0.045327678322792,-0.0042852354235947],[-0.032897744327784,0.029324242845178,-0.023551143705845]],[[-0.024658987298608,-0.061087787151337,-0.02380314655602],[0.027662778273225,0.0046124733053148,0.062996238470078],[0.061959609389305,-0.011013749986887,0.032788630574942]],[[-0.05507992580533,0.0084275119006634,-0.028473237529397],[0.0070480653084815,0.034525457769632,-0.0022817684803158],[-0.03918881341815,0.020558912307024,0.033279784023762]],[[0.025921128690243,-0.036302700638771,-0.035330086946487],[0.016734981909394,0.045744322240353,0.084690064191818],[-0.024123324081302,-0.019709173589945,0.014101386070251]],[[0.052487302571535,-0.011041284538805,-0.047117259353399],[0.002149895997718,-0.041066508740187,-0.022009192034602],[0.081837698817253,0.039854899048805,0.10192326456308]],[[-0.020026385784149,-0.009016951546073,-0.019269302487373],[-0.01623972132802,0.059766046702862,0.10482379794121],[-0.11737719923258,-0.044284153729677,-0.0045658010058105]],[[0.0026976915542036,-0.041647396981716,0.022009767591953],[-0.03220697119832,-0.046487625688314,-0.021481208503246],[-0.035700682550669,0.026223465800285,0.018757151439786]],[[0.0057439636439085,-0.044022966176271,-0.020701358094811],[0.007142570335418,0.0049042077735066,-0.039177756756544],[0.04696199670434,0.02339868247509,0.040501292794943]],[[-0.016093496233225,-0.11208589375019,0.024849355220795],[0.010883396491408,-0.05577715113759,0.081647120416164],[-0.044135041534901,-0.0018179884646088,-0.076446436345577]],[[0.0075357523746789,-0.0074540455825627,-0.00053223693976179],[0.054137736558914,-0.025031609460711,-0.023963252082467],[-0.053153306245804,-0.022970775142312,0.018879493698478]],[[0.071118704974651,-0.032195150852203,-0.033753789961338],[-0.0088681755587459,0.060305695980787,0.049394991248846],[-0.035968899726868,0.0018533525289968,-0.050178978592157]],[[-0.056610953062773,-0.02651553414762,-0.088589429855347],[0.039828423410654,0.0032927703578025,-0.08893895894289],[-0.05332612618804,0.015805207192898,0.026389561593533]],[[0.050669126212597,0.074719801545143,0.010003089904785],[-0.050074122846127,0.0071884416975081,-0.060188353061676],[-0.03038421459496,0.003404036629945,0.0032192184589803]],[[0.015567075461149,0.014377028681338,0.00042378820944577],[-0.057785674929619,-0.086515717208385,9.3001122877467e-05],[-0.07874434441328,0.044722940772772,-0.019059531390667]],[[0.024867959320545,0.010788629762828,-0.011139678768814],[-0.072673879563808,0.041267041116953,0.066513620316982],[0.04976138100028,0.043280392885208,0.044288456439972]],[[-0.027197144925594,-0.05939270183444,0.043558970093727],[0.069407753646374,-0.01316474750638,-0.079254314303398],[0.0098129380494356,-0.010929089970887,0.042786110192537]],[[-0.018925651907921,-0.013513730838895,0.036301404237747],[0.022739671170712,0.015446834266186,-0.086891353130341],[-0.0024922390002757,0.018878707662225,0.061989463865757]],[[0.012001207098365,0.024326708167791,-0.040265519171953],[0.031207984313369,-0.022155934944749,0.036464270204306],[-0.00787612516433,-0.026325259357691,0.063066251575947]],[[-0.019442932680249,-0.053585827350616,-0.095164351165295],[0.0051264665089548,0.009146498516202,-0.0088390214368701],[0.03408008813858,0.011978236958385,0.033916313201189]],[[-0.0067872107028961,-0.012860900722444,0.024933790788054],[-0.01776354573667,-0.041334420442581,-0.031363558024168],[0.00036823286791332,0.023960886523128,-0.040413022041321]],[[0.0053779445588589,-0.0088110817596316,-0.039899624884129],[0.0026844928506762,-0.011220498010516,0.087951965630054],[-0.11024789512157,-0.018186999484897,0.022400803864002]],[[0.036032684147358,-0.080668203532696,0.012662660330534],[-0.042201448231936,0.019362777471542,-0.017229337245226],[0.037414811551571,-0.056857749819756,-0.028274031355977]],[[0.02188160829246,-0.01296581979841,0.04531105607748],[0.075456582009792,-0.028192281723022,0.00036813842598349],[0.0098007656633854,0.050963267683983,-0.055192388594151]],[[0.034615118056536,-0.0034233033657074,-0.028436938300729],[0.020581293851137,0.040455125272274,-0.055114772170782],[0.0038473638705909,0.027978839352727,-0.010351383127272]],[[0.0053029102273285,-0.032931506633759,0.034230809658766],[-0.074777625501156,-0.010430814698339,0.059037160128355],[-0.019819401204586,-0.064236164093018,-0.051358658820391]],[[0.054011572152376,-0.060285601764917,0.02100589685142],[-0.086947366595268,0.055576980113983,0.046987239271402],[-0.0025906329974532,0.0010631147306412,-0.012812823988497]],[[0.0067644352093339,0.035615961998701,0.0017361266072839],[0.028614005073905,0.012657498009503,-0.02366260252893],[0.030797505751252,0.010414376854897,0.011138093657792]],[[-0.024993741884828,0.014194633811712,0.020645258948207],[0.050080068409443,-0.062399420887232,0.099675111472607],[0.015120203606784,-0.030486984178424,0.013524038717151]],[[0.10147252678871,0.047292891889811,-0.025328643620014],[0.0072533707134426,0.053549963980913,0.067500218749046],[0.022346410900354,-0.0099952183663845,-0.089529119431973]],[[0.00031322534778155,-0.029573136940598,-0.012389921583235],[-0.021659810096025,0.026481604203582,0.038254983723164],[-0.0071783270686865,0.021287374198437,0.058196499943733]],[[-0.012498241849244,-0.056635089218616,0.051042210310698],[-0.074551358819008,-0.063592590391636,0.00042067680624314],[-0.01371839735657,0.034523528069258,-0.044246226549149]],[[0.00081516423961148,-0.010368123650551,-0.041879810392857],[0.041931182146072,0.02438890747726,0.005759862717241],[0.0042956899851561,-0.013144912198186,0.095868468284607]],[[0.00084061449160799,-0.0070158313028514,0.044554933905602],[-0.010951465927064,0.011243258602917,0.039613377302885],[-0.015660513192415,0.065663434565067,-0.023739753291011]],[[-0.010717343539,-0.03468443825841,0.050772916525602],[-0.030648779124022,-0.065076507627964,-0.038028206676245],[0.013613296672702,-0.020912144333124,0.025940245017409]],[[-0.05034701153636,0.026409199461341,-0.036882396787405],[0.11695562303066,-0.034287113696337,0.0023648785427213],[0.012690924108028,0.018825436010957,0.017353009432554]],[[-0.040668234229088,0.035522773861885,0.0021127017680556],[0.0058382586576045,-0.0044682966545224,-0.03780822083354],[0.01950853317976,-0.017199203372002,0.019185921177268]],[[-0.018131153658032,0.068072363734245,-0.031441476196051],[-0.040173187851906,0.030293729156256,0.0044967695139349],[0.01774419285357,-0.0018899205606431,0.0418766066432]],[[0.035418126732111,-0.030613638460636,-0.072293736040592],[0.050335917621851,-0.012167152948678,-0.018344055861235],[-0.048628050833941,-0.014939793385565,-0.00114980712533]],[[0.042033165693283,-0.021457271650434,-0.0016877958551049],[0.01501233689487,-0.031983181834221,-0.031215660274029],[0.027789492160082,-0.05306776240468,-0.0037230614107102]],[[0.052136488258839,-0.047004643827677,-0.0062980530783534],[0.073777541518211,0.047988086938858,0.045833643525839],[0.0024806966539472,0.0038241350557655,0.0117132877931]],[[0.042625769972801,-0.012627908959985,0.049286417663097],[0.060544844716787,-0.063545003533363,0.085687644779682],[-0.035542324185371,-0.017120804637671,0.034440688788891]],[[-0.032886356115341,-0.05063896253705,0.0111328586936],[0.039683524519205,-0.035721488296986,0.032596677541733],[-0.026577733457088,-0.019008724018931,-0.056165304034948]],[[0.011307569220662,0.056600857526064,-0.11500814557076],[0.014113934710622,-0.063648246228695,0.0029235589317977],[0.048968698829412,-0.02385239303112,0.10391719639301]],[[0.014199988916516,-0.030036075040698,-0.043883323669434],[-0.012322946451604,0.057323735207319,0.02376995421946],[-0.019485360011458,-0.001679957495071,0.018355831503868]],[[-0.052154377102852,-0.099660202860832,-0.017325054854155],[0.025554433465004,-0.018131408840418,0.022910114377737],[0.032386869192123,0.090938366949558,-0.017424035817385]],[[0.056523106992245,0.044632390141487,0.0010246915044263],[-0.073524497449398,-0.0018583422061056,0.061183411628008],[-0.089532785117626,0.050282433629036,-0.0059711462818086]],[[-0.016445484012365,0.040514335036278,0.075008906424046],[0.070474654436111,0.049348708242178,-0.041709240525961],[-0.03773582354188,0.051467910408974,0.0010202267440036]],[[-0.025785364210606,-0.10490676015615,-0.039669722318649],[-0.016588300466537,-0.00093155237846076,0.058974079787731],[-0.020405175164342,0.019373789429665,0.071166828274727]],[[-0.10412762314081,0.059711493551731,-0.0031406655907631],[0.053083956241608,0.02223034016788,-0.0094307186082006],[-0.061350155621767,0.0061751934699714,0.022543489933014]],[[0.0069976518861949,0.025453424081206,0.0051481858827174],[-0.015408026054502,-0.0064105708152056,-0.033879332244396],[-0.0019608868751675,-0.059661243110895,-0.11162469536066]],[[-0.011362426914275,-0.017945723608136,0.047517828643322],[-0.01805698312819,0.011441343463957,0.047174867242575],[0.040314693003893,-0.038620825856924,-0.049169030040503]],[[-0.0027712304145098,-0.02358734421432,0.025827474892139],[0.065656833350658,-0.035144370049238,0.049498561769724],[-0.020108534023166,-0.011066867038608,0.016111584380269]],[[0.01706600561738,0.014873113483191,-0.010634242556989],[0.044557891786098,-0.05625282227993,0.092267714440823],[0.085595794022083,0.042888399213552,-0.055911134928465]],[[0.014035882428288,0.0084749488160014,0.048449460417032],[0.02245044708252,0.017814246937633,0.026986313983798],[-0.049828164279461,0.02515422180295,-0.016560219228268]],[[-0.00027429009787738,0.020020890980959,0.012446597218513],[0.024229997768998,-0.0098680472001433,-0.053577210754156],[-0.002364790532738,-0.05750622972846,0.07158900052309]],[[0.028235593810678,0.10452546924353,0.021565582603216],[-0.019886648282409,0.057070963084698,0.031709294766188],[-0.011698413640261,-0.02876552939415,-0.058643009513617]],[[-0.01908859424293,-0.039175976067781,0.038414239883423],[0.026957297697663,-0.070710308849812,0.029735468327999],[0.027882751077414,0.096018262207508,0.0023915297351778]],[[0.081836268305779,0.026125870645046,-0.031772587448359],[0.057243283838034,0.044412739574909,-0.012149094603956],[0.0029887838754803,0.047434598207474,-0.00045375432819128]],[[-0.012829815037549,-0.054191168397665,0.046444244682789],[0.039189144968987,0.026027012616396,-0.0077478745952249],[-0.033267240971327,0.0097413333132863,0.016820954158902]],[[-0.021582372486591,-0.074309960007668,0.042480487376451],[0.030031150206923,-0.011680052615702,-0.028466476127505],[0.062907792627811,0.014588398858905,0.039385847747326]],[[-0.0094353603199124,0.07279446721077,0.11197540163994],[-0.071354947984219,0.022961657494307,-0.030550191178918],[0.018082452937961,0.058310899883509,0.055925574153662]],[[-0.054517976939678,-0.025409800931811,0.044979818165302],[-0.028594540432096,-0.016874816268682,-0.03122147358954],[-0.012838447466493,-0.00046241722884588,-0.0093544200062752]],[[0.019517403095961,0.025378877297044,0.043739754706621],[-0.0066572893410921,0.10003436356783,-0.014307253994048],[0.063354223966599,-0.008313394151628,-0.024573149159551]],[[-0.050046041607857,-0.039387349039316,-0.029915416613221],[0.0030226798262447,0.049195662140846,0.011142291128635],[-0.04909623414278,0.0013055501040071,0.031171210110188]],[[0.039763629436493,-0.090882353484631,0.019018495455384],[-0.017071064561605,-0.057776339352131,-0.015081495977938],[0.025151737034321,-0.042532835155725,-0.02188198082149]],[[-0.021601097658277,0.05671663209796,0.062889978289604],[-0.040764700621367,0.016571309417486,-0.011610724963248],[-0.0092172063887119,-0.002879437059164,-0.017440531402826]],[[-0.035849548876286,-0.0055493996478617,-0.069664597511292],[0.032662663608789,-0.044954963028431,-0.022499686107039],[-0.0014440957456827,-0.042031664401293,0.035026073455811]],[[0.015665827319026,0.016483591869473,0.03363623470068],[-0.0010212331544608,0.021976415067911,0.0068030250258744],[-0.026646994054317,-0.062767647206783,0.024207951501012]],[[0.07484508305788,0.038140919059515,-0.034758910536766],[-0.019499244168401,-0.018004044890404,-0.072341203689575],[9.5633629825898e-05,0.027675528079271,0.012429661117494]],[[0.015267686918378,-0.031519833952188,-0.0039265803061426],[-0.063944190740585,-0.038343146443367,-0.0077616414055228],[-0.0096795316785574,-0.090872623026371,0.016147021204233]],[[0.049524206668139,-0.0062139853835106,0.00082021852722391],[0.0059314859099686,0.081469289958477,0.040643244981766],[0.015326173044741,0.024443374946713,-0.12062150239944]],[[-0.034972388297319,-0.023275002837181,0.058456238359213],[0.0544598326087,-0.047328192740679,-0.072391904890537],[0.02837772667408,0.072247095406055,0.010102286934853]],[[-0.039704531431198,-0.044045768678188,-0.013497671112418],[0.0020621828734875,-0.0022292241919786,0.078426212072372],[0.064435496926308,-0.074601456522942,-0.043593712151051]],[[-0.056541424244642,0.041537705808878,-0.0027597802691162],[0.036321803927422,0.038156520575285,-0.079990960657597],[-0.025020455941558,-0.0077058700844646,0.0027819185052067]],[[0.051362328231335,-0.024032417684793,-0.011676865629852],[0.0091949477791786,0.051549416035414,0.041613105684519],[-0.055041197687387,0.10135285556316,0.038398839533329]],[[-0.024736201390624,-0.012042948044837,-0.0081545915454626],[-0.034335494041443,0.0034343039151281,0.024430643767118],[0.029571456834674,0.011824691668153,0.038486111909151]],[[-0.0016623920528218,0.010378535836935,0.073187075555325],[-0.018191182985902,0.006487887352705,-0.072167724370956],[0.023988692089915,-0.035541988909245,0.047663196921349]],[[-0.025281632319093,0.0088966637849808,0.0081026321277022],[0.043025337159634,-0.01833151653409,-0.033828761428595],[0.016342392191291,0.005484008230269,0.02628287486732]],[[0.059409096837044,0.076427891850471,0.058417808264494],[0.037058722227812,0.011124430224299,-0.044451829046011],[0.04506379365921,0.04700106754899,-0.02574348077178]],[[0.0039657750166953,-0.016491925343871,-0.0043826191686094],[0.09634243696928,0.0082753887400031,-0.044936135411263],[-0.022300567477942,0.019229726865888,0.011845358647406]],[[0.0012153895804659,0.061278726905584,-0.01603670977056],[-0.040661547333002,-0.049624565988779,0.034687642008066],[-0.00062924798112363,0.031413231045008,-0.047409810125828]],[[0.052092101424932,0.11269139498472,-0.035837225615978],[0.038542833179235,0.008364868350327,-0.030898282304406],[-0.0065412274561822,-0.056042782962322,-0.014089765027165]],[[0.047893360257149,-0.052968770265579,0.007660148665309],[-0.050722289830446,-0.0053949039429426,-0.0018420128617436],[-0.014343785122037,0.0081801861524582,-0.045085459947586]],[[-0.01406461559236,-0.097153753042221,0.026334304362535],[0.0014894163468853,0.11463288217783,0.049772556871176],[0.020856231451035,-0.049511667340994,0.056153111159801]],[[-0.035059966146946,0.0093078995123506,-0.11371762305498],[-0.010968336835504,-0.044362034648657,-0.013631942681968],[-0.053327508270741,0.019184352830052,-0.051699221134186]],[[0.071847468614578,0.024032516404986,0.0092024765908718],[-0.014084419235587,0.029180362820625,-0.003037764923647],[-0.0077604339458048,-0.014047614298761,0.088831342756748]],[[-0.061081651598215,-0.093320108950138,-0.0611785762012],[0.015281744301319,-0.04664870351553,-0.033846464008093],[0.047751780599356,-0.028839541599154,0.018736749887466]],[[0.064868122339249,0.017663035541773,0.039373345673084],[0.02558571845293,0.028071843087673,-0.016462242230773],[0.0070042326115072,0.061256319284439,0.054901652038097]],[[0.016679182648659,-0.084897793829441,-0.051099959760904],[-0.052251238375902,-0.024612832814455,0.032104838639498],[-0.045182719826698,0.025298962369561,-0.0089498488232493]],[[0.047005519270897,-0.046651672571898,0.011338845826685],[0.015084492973983,0.058415971696377,-0.018258949741721],[0.012167606502771,-0.055767510086298,-0.026164023205638]],[[-0.017017494887114,0.050785087049007,-0.0070571093820035],[0.024328213185072,-0.073291659355164,0.030290763825178],[0.010604019276798,-0.005981014110148,-0.084985285997391]],[[0.059995416551828,0.030371405184269,-0.057625904679298],[-0.049306433647871,-0.015928652137518,-0.0087803639471531],[-0.058693200349808,0.026606088504195,-0.0061359205283225]],[[0.039138667285442,0.092174969613552,0.031527396291494],[-0.051554962992668,0.0005816732882522,0.022313181310892],[0.024707924574614,-0.001231579342857,0.021945646032691]],[[-0.023807428777218,0.018717167899013,-0.051858801394701],[-0.022115644067526,0.068890497088432,0.044115766882896],[0.0086676543578506,-0.016010571271181,0.031314965337515]],[[-0.024926381185651,-0.0674067735672,-0.019899468868971],[0.060630310326815,-0.0046548042446375,-0.010182218626142],[0.055275980383158,-0.042104128748178,0.022926425561309]],[[0.02098767273128,0.052488870918751,0.054262313991785],[-0.01661679521203,0.0049517038278282,-0.017748070880771],[0.087693527340889,0.031235463917255,0.0051103243604302]],[[0.014458172023296,-0.00939866527915,-0.025521012023091],[-0.03900620341301,0.076720796525478,0.056736432015896],[-0.036886665970087,0.036527879536152,0.015792252495885]],[[-0.047202844172716,-0.086778782308102,0.026973260566592],[0.0038259872235358,-0.026175621896982,0.02131424471736],[-0.0050464225932956,0.045627150684595,0.0058544012717903]],[[0.08131954818964,0.0601588152349,-0.010333285667002],[0.02868789061904,-0.013966808095574,-0.058849323540926],[0.059611905366182,-0.087701059877872,-0.029425891116261]],[[-0.055999271571636,-0.018480349332094,0.0074593545868993],[-0.028748979791999,0.031007058918476,0.015095951966941],[0.024028539657593,-0.015363888815045,0.090605176985264]],[[-0.0013807317009196,-0.0083873057737947,0.0066292867995799],[0.019483048468828,-0.022071408107877,0.048795025795698],[-0.023152941837907,-0.086545139551163,-0.050766080617905]],[[-0.011654551140964,-0.0081242946907878,-0.02159752510488],[0.02339611761272,0.07210748642683,0.076376549899578],[0.023831924423575,0.084604315459728,0.030297541990876]],[[0.00034125294769183,-0.041531901806593,-0.035855360329151],[0.019356731325388,-0.081866666674614,0.026557484641671],[0.061056766659021,-0.039386287331581,-0.024793544784188]],[[-0.0037459176965058,0.010423978790641,0.0660699903965],[-0.019802927970886,0.067680068314075,-0.06239876896143],[-0.0086310291662812,-0.093377582728863,-0.031794901937246]],[[-0.010800128802657,-0.0093148425221443,-0.0028891726396978],[0.060022301971912,-0.062989056110382,0.054516896605492],[-0.054697439074516,0.012319587171078,-0.052497755736113]]],[[[-0.059772565960884,0.031914599239826,0.072841942310333],[-0.01504741795361,-0.060593549162149,-0.063779249787331],[-0.011987489648163,-0.0061238245107234,0.072616025805473]],[[-0.024819714948535,0.0075539541430771,-0.10572113096714],[-0.065857745707035,-0.043615650385618,-0.042404666543007],[0.054722767323256,0.073055170476437,-0.070295035839081]],[[0.05465167760849,-0.021088866516948,-0.0062233163043857],[-0.04846203327179,0.03658264875412,-0.018312865868211],[0.05490418151021,0.0045124203898013,0.0091917375102639]],[[0.030437855049968,-0.045589547604322,0.039777062833309],[0.003078673966229,0.017453169450164,0.031517636030912],[0.036036349833012,-0.012108043767512,0.02705342322588]],[[0.021521225571632,-0.018072880804539,0.011507079936564],[-0.0064545446075499,-0.032521672546864,-0.073411710560322],[-0.084406405687332,-0.038521498441696,-0.046057652682066]],[[0.086251772940159,0.039540428668261,0.052256587892771],[-0.077999196946621,0.051504552364349,-0.0022699069231749],[0.0043390705250204,-0.068619295954704,0.035614658147097]],[[-0.0051786862313747,-0.032884661108255,0.048542216420174],[-0.030236488208175,0.0018776609795168,-0.051831871271133],[-0.067113198339939,0.033346094191074,0.091755613684654]],[[0.058752786368132,0.031997632235289,-0.048765704035759],[0.0032301864121109,0.0016515891766176,0.079124838113785],[0.040471609681845,-0.047940984368324,0.025143822655082]],[[-0.1123191267252,0.042976900935173,-0.0066434638574719],[-0.032691612839699,0.040677219629288,-0.025056989863515],[-0.015041369944811,-0.010982160456479,-0.052735853940248]],[[0.070578157901764,0.08575613796711,0.091791465878487],[0.02928351983428,0.066006906330585,0.12552006542683],[0.19769029319286,-0.016192900016904,0.064455658197403]],[[-0.11520890146494,-0.072160750627518,-0.032779343426228],[0.052305072546005,-0.11377381533384,0.0093059660866857],[-0.045770090073347,0.032837558537722,0.0027192246634513]],[[-0.049549747258425,0.089085184037685,0.022704994305968],[-0.051353976130486,0.079825684428215,0.062846526503563],[0.0071406112983823,0.13390111923218,0.052734348922968]],[[0.03290268778801,-0.028889261186123,0.034789849072695],[0.052185200154781,-0.070652768015862,-0.089012831449509],[0.04808321595192,-0.027761083096266,0.035393975675106]],[[0.0085226213559508,0.030062034726143,0.035091619938612],[0.030342461541295,0.029766090214252,0.067185558378696],[0.025202495977283,0.03003228828311,0.043920826166868]],[[0.011415273882449,0.050415199249983,-0.0068875453434885],[0.057354390621185,0.070826426148415,0.019399417564273],[-0.028649251908064,0.13433831930161,0.043825436383486]],[[-0.021803021430969,0.030857771635056,-0.026378110051155],[-0.047871954739094,-0.10503409802914,-0.041396804153919],[0.0170136410743,-0.0083645703271031,-0.016867652535439]],[[-0.013605517335236,-0.066407807171345,-0.063213102519512],[0.028649907559156,0.033143941313028,0.094214536249638],[0.043383799493313,0.080063030123711,0.064225904643536]],[[0.0050231665372849,-0.077029369771481,0.018971726298332],[-0.066115096211433,0.015729788690805,-0.0020630350336432],[0.068861983716488,-0.12525519728661,-0.019287627190351]],[[-0.036576833575964,-0.10010827332735,-0.021448126062751],[0.011750714853406,0.0089921690523624,0.027437491342425],[0.033809389919043,0.017065390944481,-0.038156244903803]],[[0.11847122013569,0.015285214409232,-0.023906579241157],[0.016230538487434,0.047719061374664,-0.026271883398294],[0.086689747869968,0.069738671183586,0.059888005256653]],[[0.024913413450122,-0.016164731234312,0.025339664891362],[-0.032651040703058,0.063146829605103,0.0098413368687034],[-0.0082548456266522,-0.01742522418499,-0.022803289815784]],[[0.058920077979565,-0.0029063459951431,-0.015764253214002],[0.02156700566411,-0.011105592362583,0.027308192104101],[0.0023136888630688,-0.0030415842775255,0.050018060952425]],[[0.0030537925194949,0.0057155485264957,-0.076951287686825],[0.024369023740292,-0.10851905494928,-0.013829040341079],[-0.0096982689574361,-0.094264857470989,-0.00096137268701568]],[[0.0067592156119645,-0.034259509295225,-0.029881298542023],[0.06641536206007,-0.12334524095058,-0.11651480197906],[-0.045082505792379,0.038701672106981,-0.072753481566906]],[[-0.049532655626535,-0.057626415044069,0.060087028890848],[0.013853542506695,0.021646147593856,-0.015349881723523],[-0.024953024461865,-0.0096008647233248,0.031127853319049]],[[-0.031880177557468,-0.082555085420609,0.010132262483239],[-0.063617378473282,0.021362110972404,0.031473640352488],[-0.062566615641117,-0.12964935600758,-0.03915474191308]],[[0.029547700658441,-0.033754106611013,0.030207483097911],[0.020710175856948,-0.078148677945137,-0.029641890898347],[0.086787521839142,-0.014360819011927,-0.043384343385696]],[[-0.054574083536863,-0.063670508563519,0.062634155154228],[0.018190693110228,0.024846458807588,-0.043732188642025],[-0.02423857524991,-0.039517875760794,-0.031698130071163]],[[0.021868763491511,-0.13742816448212,0.0091478433459997],[-0.022745165973902,0.042475756257772,0.04304800927639],[0.03863363340497,0.011650741100311,0.044075645506382]],[[0.0099327936768532,0.014315229840577,0.071588315069675],[-0.061333194375038,0.0017363355727866,0.0052422042936087],[-0.033830761909485,0.037662498652935,0.031968627125025]],[[-0.012434024363756,0.062606498599052,0.0034917516168207],[-0.0099580707028508,-0.025070242583752,-0.030452633276582],[-0.016276735812426,0.089934334158897,0.02015389315784]],[[0.10772412270308,0.019368398934603,0.0015956584829837],[0.029442925006151,-0.058567099273205,-0.068002708256245],[-0.0208261590451,0.0043065780773759,-0.058815769851208]],[[-0.046529371291399,-0.040541216731071,0.023347314447165],[0.061510939151049,0.058845546096563,0.014524187892675],[-0.01796330884099,0.033329460769892,0.024075536057353]],[[0.013375330716372,0.0074894959107041,0.0040389765053988],[0.058374680578709,0.096359059214592,0.050762727856636],[0.060004025697708,-0.011836593970656,0.051710560917854]],[[0.013297870755196,-0.0061620729975402,-0.084500662982464],[0.057550724595785,-0.026457563042641,-0.086650438606739],[-0.046432249248028,0.0098843201994896,0.058338321745396]],[[0.0056280381977558,0.014596650376916,-0.010957442224026],[-0.02675549313426,-0.041757110506296,-0.050651304423809],[0.0072962236590683,-0.034478079527617,-0.05012546852231]],[[-0.00093215657398105,0.045179218053818,-0.049372646957636],[0.035218216478825,-0.0057316371239722,0.06214701756835],[0.012909180484712,-0.028326544910669,-0.053483940660954]],[[0.019632548093796,-0.046871066093445,-0.0050874897278845],[0.030363507568836,0.0048949695192277,0.051137648522854],[0.005369589664042,0.02160901017487,0.0071456618607044]],[[-0.050612639635801,0.058775786310434,-0.057443466037512],[0.035166513174772,0.052235774695873,-0.014461345039308],[0.11693514883518,0.022567188367248,0.07997577637434]],[[-0.011606489308178,-0.0096790883690119,-0.10624699294567],[0.059175118803978,-0.0070385574363172,0.019160576164722],[0.024718875065446,0.032517541199923,0.026666391640902]],[[-0.0029157300014049,-0.035625949501991,-0.02074671164155],[0.034269690513611,-0.1014616638422,0.00077873503323644],[-0.0087744351476431,0.04054843261838,-0.0056645264849067]],[[0.013515776023269,-0.0044976267963648,0.081892363727093],[-0.020176427438855,-0.017415603622794,0.039906360208988],[-0.027517264708877,-0.029252678155899,-0.019818179309368]],[[-0.0066888104192913,-0.032860465347767,0.0057781767100096],[-5.4385825933423e-05,0.0011311956914142,0.086518682539463],[-0.017440469935536,0.0057914480566978,-0.015849327668548]],[[-0.023164261132479,-0.067243196070194,-0.035125087946653],[-0.059009976685047,0.018369797617197,0.042625900357962],[-0.02029132284224,-0.0692538022995,0.060687527060509]],[[0.045162010937929,-0.002428017091006,-0.0468540340662],[-0.074182264506817,0.012615348212421,-0.0084524843841791],[-0.068921588361263,0.030820734798908,0.015565847046673]],[[0.033491246402264,0.040839206427336,0.0018044475000352],[-0.0047026909887791,-0.016255350783467,0.061525199562311],[0.061183899641037,0.057945165783167,0.052358504384756]],[[0.017851762473583,-0.033217806369066,0.03849345818162],[0.040780685842037,-0.065480843186378,-0.022388502955437],[0.020650221034884,0.061228256672621,0.025670086964965]],[[0.00026639952557161,-0.026709504425526,0.10786807537079],[-0.026806872338057,-0.065616726875305,0.084682308137417],[-0.019580138847232,0.011090638116002,0.018802147358656]],[[0.069017298519611,-0.005154034588486,0.056312069296837],[-0.013192203827202,0.044783528894186,0.020704004913568],[0.10858059674501,-0.01957606524229,0.055536292493343]],[[0.055829029530287,-0.0051866145804524,0.081894151866436],[0.017712697386742,0.025326306000352,-0.014373422600329],[-0.024520918726921,-0.008328516036272,0.045014549046755]],[[-0.04599292948842,-0.015500489622355,-0.049468666315079],[-0.056250054389238,0.015933059155941,-0.088695243000984],[0.088465459644794,-0.06062875688076,-0.020385127514601]],[[0.014420803636312,-0.04396440461278,0.033888466656208],[0.0052520683966577,0.0083426618948579,-0.07807819545269],[0.062540106475353,0.10462192445993,-0.090626768767834]],[[0.034665461629629,-0.05895359814167,-0.019530676305294],[0.082750082015991,0.026322722434998,0.033832486718893],[0.069848410785198,0.033264990895987,0.0023627963382751]],[[0.012930867262185,0.02799098007381,-0.074061639606953],[0.02051991596818,0.030556157231331,0.043478772044182],[-0.035685982555151,0.059310156852007,0.012482536956668]],[[-0.032486826181412,-0.066182121634483,0.0043257386423647],[-0.008997063152492,0.083196759223938,-0.033215120434761],[0.053445748984814,0.029508385807276,0.050298061221838]],[[0.059232722967863,0.093659497797489,0.040308341383934],[0.064303934574127,-0.067274980247021,0.0039586196653545],[0.10140713304281,-0.015493669547141,0.0027357717044652]],[[0.017914155498147,-0.0094880107790232,-0.0292216129601],[0.01250087749213,0.015688084065914,0.04219925776124],[-0.041262488812208,-0.00082126021152362,-0.0082993675023317]],[[-0.00012247759150341,0.038868501782417,-0.021428791806102],[-0.012606624513865,0.062615230679512,-0.02332491055131],[-0.010294241830707,-0.02346882969141,0.02122669480741]],[[-0.0075391978025436,-0.038703095167875,-0.0099307680502534],[0.023278037086129,0.062494497746229,-0.00090399658074602],[0.0068364725448191,0.073829218745232,0.011888799257576]],[[-0.0040578893385828,0.026759704574943,0.044461198151112],[0.0056937248446047,-0.06070576235652,0.099653750658035],[-0.01251330319792,0.024907272309065,0.086916372179985]],[[-0.036387510597706,0.042889755219221,-0.026525735855103],[-0.013313980773091,0.018248530104756,0.072872504591942],[-0.09058291465044,-0.02591566555202,-0.050964996218681]],[[-0.016057142987847,-0.066670477390289,-0.017395719885826],[-0.019252711907029,-0.028493661433458,-0.026863051578403],[-0.032045904546976,-0.068096555769444,0.019162969663739]],[[-0.039768807590008,0.020079057663679,0.046950682997704],[0.026713509112597,-0.0098964078351855,0.033830884844065],[0.033884458243847,-0.024125587195158,-0.023829253390431]],[[-0.0015271948650479,0.0046189082786441,-0.078982003033161],[0.10253139585257,-0.035836387425661,0.028561798855662],[-0.044486720114946,0.013198336586356,-0.026548417285085]],[[-0.042663931846619,0.028982982039452,0.011244950816035],[-0.052389901131392,-0.092325456440449,0.020150776952505],[0.016764851287007,0.041036158800125,-0.022674292325974]],[[-0.051850918680429,-0.0021327533759177,-0.019362479448318],[0.0096709541976452,0.055928159505129,-0.0077691343612969],[0.041557166725397,0.0030066233593971,0.034188896417618]],[[0.08674468845129,0.0536243095994,-0.067312344908714],[0.014859179034829,0.063022688031197,0.050604689866304],[0.01453825738281,0.029959769919515,0.017583023756742]],[[0.03473762050271,0.052613399922848,-0.0013961548684165],[-0.01344345882535,0.11980406939983,0.0042721433565021],[0.03836378455162,0.044340591877699,0.042807821184397]],[[0.046659976243973,-0.043996218591928,0.073253430426121],[0.001217931159772,0.030241280794144,-0.058060389012098],[0.060528617352247,0.044235866516829,-0.05409087985754]],[[0.0062812156975269,-0.044200014322996,-0.015181560069323],[-0.020576128736138,0.047321639955044,0.0089898118749261],[0.056608960032463,-0.029353089630604,0.064574114978313]],[[-0.085405685007572,-0.030436577275395,0.028502594679594],[-0.0018836376257241,0.075736969709396,0.03258740529418],[-0.029125595465302,0.062917359173298,-0.073871098458767]],[[0.037921711802483,0.06972137093544,0.020082924515009],[-0.041818473488092,0.021513903513551,-0.054842837154865],[0.019329821690917,0.014541413635015,0.01783736795187]],[[-0.04999903216958,0.04298559948802,0.034659069031477],[-0.074709847569466,0.019080827012658,-0.030276894569397],[0.034963298588991,0.001442851847969,-0.05054223164916]],[[0.048050884157419,0.017120633274317,-0.092048697173595],[0.0070528122596443,0.058315135538578,-0.0072495522908866],[-0.0027886177413166,0.045221213251352,0.0077730934135616]],[[0.10407869517803,0.06495326757431,-0.011599984951317],[-0.053924437612295,0.020545901730657,0.053788527846336],[0.080031029880047,-0.0024107603821903,0.00022407303913496]],[[0.050972133874893,-0.00097698241006583,-0.13309943675995],[0.10428535193205,0.014814121648669,-0.066118702292442],[-0.016813581809402,0.035819083452225,-0.0051385168917477]],[[0.040858756750822,0.021257322281599,0.04923902079463],[-0.045348480343819,0.0069888378493488,-0.055715702474117],[-0.095452651381493,0.037305194884539,0.015006304718554]],[[-0.0033943967428058,0.061806738376617,0.05399102345109],[0.012540061026812,-0.061808321624994,0.0074537117034197],[-0.029717165976763,-0.025064235553145,0.044523786753416]],[[0.073961526155472,0.0026787284296006,0.069065891206264],[-0.024007001891732,-0.015450041741133,-0.020289465785027],[-0.066758662462234,-0.081380121409893,0.0016338566783816]],[[-0.0098262671381235,0.018594911321998,0.028567316010594],[-0.041388783603907,-0.0095459530130029,-0.049680970609188],[-0.048719570040703,0.031591959297657,-0.0074189309962094]],[[0.031896438449621,-0.026189785450697,0.031219284981489],[0.098326876759529,0.014599731191993,0.017617991194129],[0.00064783700508997,0.010644634254277,0.034525234252214]],[[0.003800441743806,-0.027067733928561,-0.074508301913738],[0.022994142025709,-0.047679431736469,-0.043618317693472],[0.0011114680673927,-0.051287550479174,-0.035945314913988]],[[0.034787137061357,0.013156980276108,-0.033515278249979],[0.094030648469925,0.07307281345129,-0.033251632004976],[-0.024924084544182,0.11763441562653,0.055045157670975]],[[0.079732999205589,0.073207668960094,0.044564958661795],[0.029434695839882,0.044308375567198,0.022659158334136],[0.059675630182028,-0.027460973709822,-0.0025059641338885]],[[0.018797282129526,-0.022645842283964,-0.014662148430943],[-0.009392230771482,-0.060645293444395,0.012143084779382],[-0.001547914929688,0.015262678265572,-0.051744494587183]],[[0.035275250673294,0.031712848693132,-0.020286047831178],[0.070579499006271,0.032896064221859,-0.017467327415943],[0.0045307790860534,-0.076001636683941,-0.021099667996168]],[[-0.054416816681623,0.016129603609443,-0.073371641337872],[0.083994090557098,-0.037880785763264,0.060916066169739],[0.015384048223495,-0.080908924341202,-0.02651303447783]],[[-0.015746699646115,-0.0045986562035978,-0.010808282531798],[0.0093600573018193,0.066672429442406,-0.060510657727718],[-0.011467099189758,0.11688733845949,-0.039323784410954]],[[-0.063850581645966,0.083257384598255,0.031544800847769],[0.022724544629455,-0.072408750653267,-0.0098668914288282],[-0.0078319422900677,-0.035056404769421,-0.0091637251898646]],[[-0.082773342728615,-0.023790664970875,0.090156078338623],[-0.051570992916822,0.011793926358223,0.024447293952107],[-0.038660738617182,-0.0013204887509346,0.10191175341606]],[[0.048859421163797,0.05263202264905,-0.030693747103214],[-0.043071966618299,-0.0045060641132295,-0.02947417087853],[0.056895051151514,0.031731598079205,0.049220554530621]],[[0.05117642134428,0.053898073732853,0.034985519945621],[0.018186768516898,0.032749067991972,-0.046525537967682],[0.05715361982584,-0.028348473832011,0.087046273052692]],[[0.032111786305904,0.054901078343391,-0.024822823703289],[-0.0098946699872613,-0.030285386368632,-0.024508818984032],[-0.021470632404089,-0.0023581155110151,-0.0097049819305539]],[[0.011353432200849,0.064603507518768,-0.020852502435446],[0.049281388521194,0.083099067211151,0.028287243098021],[-0.045627564191818,0.010800316929817,0.079851023852825]],[[-0.025668086484075,0.049998834729195,0.012390974909067],[-0.039375349879265,0.030823783949018,0.042290739715099],[0.013416055589914,0.0031733615323901,0.050434049218893]],[[-0.094028130173683,-0.059968437999487,-0.0092245917767286],[-0.045545592904091,0.017513452097774,0.019562525674701],[-0.013308887369931,0.0043585374951363,-0.03731556609273]],[[-0.013861845247447,0.016649710014462,-0.043227978050709],[-0.066038936376572,0.0035876985639334,0.1073709577322],[-0.034586351364851,-0.045714009553194,0.099371835589409]],[[0.047225013375282,0.053887002170086,0.043303925544024],[0.024847323074937,0.0029615534003824,0.027476882562041],[0.0089931096881628,0.017342265695333,0.054243914783001]],[[-0.037638999521732,0.0075430502183735,-0.034476917237043],[-0.029427330940962,0.02770821005106,0.009521315805614],[0.018587056547403,-0.010141376405954,-0.028650790452957]],[[0.039966743439436,0.028063455596566,-0.035014946013689],[-0.024138266220689,0.020299550145864,0.04455067589879],[-0.026198061183095,-0.01095122564584,-0.017492964863777]],[[0.039133485406637,0.024060292169452,-0.10623367130756],[-0.031466022133827,-0.0066515547223389,-0.02298935316503],[-0.059300854802132,-0.034312076866627,-0.050297770649195]],[[0.0094971153885126,-0.079997360706329,-0.044543739408255],[-0.039977915585041,0.0066347583197057,-0.0091488352045417],[0.0051472098566592,0.10162914544344,0.016429601237178]],[[-0.084565997123718,0.082773268222809,0.0099700102582574],[-0.021191591396928,-0.047331839799881,-0.034072414040565],[-0.00093455740716308,0.031326353549957,-0.021641187369823]],[[-0.029465494677424,0.045360956341028,-0.022984890267253],[0.054922141134739,-0.027758859097958,0.066841036081314],[0.027734884992242,-0.036099936813116,0.035454016178846]],[[-0.050273831933737,0.046902932226658,0.011497624218464],[0.061249345541,-0.036787770688534,0.045038565993309],[0.043952308595181,0.09692095965147,-0.0072859604842961]],[[-0.017404837533832,-0.085056766867638,0.066579237580299],[0.061605177819729,-0.041060782968998,0.015186406672001],[0.0039895591326058,0.015996782109141,-0.013233936391771]],[[0.015493420884013,-0.0094092171639204,-0.11638125032187],[0.070683859288692,0.039592918008566,-0.013448637910187],[-0.024850277230144,0.017503593116999,0.087003916501999]],[[0.034281242638826,-0.018703494220972,0.021171253174543],[-0.04104471206665,0.028386134654284,0.020427033305168],[0.039933871477842,-0.052236422896385,-0.039197765290737]],[[-0.052146770060062,0.11040212213993,-0.033878024667501],[0.031782831996679,-0.032427132129669,0.0062194913625717],[0.022582786157727,-0.0033202120102942,0.1170356720686]],[[-0.046840280294418,-0.022713361307979,-0.01041934452951],[0.066369995474815,-0.047280736267567,-0.05545599013567],[-0.036532465368509,0.065018549561501,0.0047719273716211]],[[-0.06623836606741,0.040591910481453,0.01127206068486],[0.053570427000523,-0.026529099792242,0.012931717559695],[0.051296908408403,-0.025171002373099,-0.033017966896296]],[[-0.014955055899918,-0.057830661535263,0.022530779242516],[-0.11917145550251,0.010507312603295,0.10389129817486],[0.0014553511282429,0.010146935470402,-0.017650811001658]],[[0.0053788512013853,0.011944955214858,-0.030021905899048],[0.00054996350081638,0.05156160145998,-0.068799160420895],[0.053024873137474,-0.032043721526861,0.087611488997936]],[[0.030521536245942,0.022803327068686,-0.0056613935157657],[0.057695418596268,-0.0061695999465883,-0.010870156809688],[0.041440632194281,0.021796682849526,-0.06523858755827]],[[0.011946320533752,-0.059049990028143,-0.082994773983955],[-0.010870502330363,-0.059298284351826,0.0050446195527911],[0.012163790874183,-0.05009987577796,0.0072841462679207]],[[0.0045892731286585,-0.019317923113704,-0.06615636497736],[0.023270472884178,0.037926401942968,0.026646267622709],[-0.043826971203089,-0.024369375780225,-0.04913204908371]],[[0.052761394530535,0.032954156398773,0.040104523301125],[-0.043354522436857,-0.0085429223254323,0.06035665050149],[0.11849150061607,0.090475156903267,0.0025080966297537]],[[0.045421175658703,-0.047988165169954,0.064348571002483],[-0.018202373757958,0.030286341905594,-0.0032142642885447],[-0.051477126777172,0.018805982545018,0.064792051911354]],[[0.053988620638847,0.0073241665959358,-0.039967972785234],[0.059389494359493,0.022739259526134,-0.016272131353617],[0.060511976480484,0.036904390901327,-0.023366214707494]],[[0.034259710460901,-0.07954316586256,-0.03364272788167],[0.01664268411696,-0.064759440720081,-0.0062507232651114],[0.00065087142866105,-0.022644236683846,-0.040063690394163]],[[-0.019563298672438,-0.0042880396358669,0.060705605894327],[0.070225641131401,0.022589068859816,-0.048936955630779],[0.031886678189039,0.0056002493947744,-0.033526930958033]],[[0.042655721306801,-0.028805883601308,0.00080171768786386],[0.080062061548233,0.054321110248566,-0.012942410074174],[0.031098274514079,0.0066953618079424,0.049791138619184]],[[-0.0068261222913861,0.031475905328989,-4.6130335249472e-05],[-0.040106225758791,0.014837893657386,0.038987118750811],[0.028722278773785,-0.071706965565681,0.063476070761681]],[[-0.082099288702011,-0.016326272860169,0.020744917914271],[-0.043227605521679,0.011596336960793,0.041734378784895],[0.022056698799133,0.063916072249413,-0.035381115972996]],[[-0.01827491633594,0.083296373486519,0.0020414979662746],[0.09995823353529,-0.04060460999608,-0.03143285214901],[0.077541448175907,-0.044615797698498,-0.074607372283936]],[[0.037640582770109,-0.062592022120953,-0.037678871303797],[0.0096064833924174,0.032668583095074,-0.04827793315053],[-0.012443700805306,-0.059212513267994,0.018656488507986]],[[-0.012620491907001,-0.020499238744378,0.027488607913256],[0.00013879031757824,-0.092137008905411,-0.021941674873233],[0.097572974860668,-0.0021168161183596,0.021856753155589]],[[0.065260477364063,0.024632921442389,-0.033489011228085],[0.00087224115850404,0.053191535174847,0.01371094584465],[-0.0040889498777688,0.046965129673481,-0.014568195678294]]],[[[-0.019751511514187,0.029096776619554,0.028997547924519],[0.02360418625176,0.011771762743592,0.054586786776781],[0.045973408967257,0.0261020809412,-0.021442284807563]],[[-0.038881719112396,0.054128371179104,-0.012245803140104],[0.047852091491222,-0.012004976160824,-0.07402827590704],[0.030826106667519,-0.0038469100836664,-0.085174955427647]],[[0.011637212708592,0.013184139505029,-0.037323292344809],[0.0078732706606388,0.015362562611699,0.023421490564942],[0.021514639258385,-0.038607127964497,0.05702205747366]],[[0.015721233561635,-0.017334297299385,-0.016444146633148],[-0.0056619714014232,0.011260543949902,0.0530218295753],[-0.028524084016681,-0.042155429720879,0.081388391554356]],[[-0.0037819719873369,0.00047097710194066,0.016309114173055],[0.0018981342436746,-0.055751126259565,0.048169557005167],[-0.039159744977951,-0.019128801301122,0.0042300899513066]],[[0.027754805982113,0.051581960171461,0.033916532993317],[-0.01412055362016,0.074275881052017,-0.0061704684048891],[-0.018732059746981,0.076957195997238,0.011341292411089]],[[0.026880783960223,-0.0068839779123664,0.072123542428017],[0.034548062831163,0.011542647145689,0.017701845616102],[-0.10452819615602,-0.0012858815025538,4.013060242869e-05]],[[-0.010551705025136,0.020433163270354,0.057741235941648],[-0.01330885104835,0.0012568735983223,-0.00013388130173553],[-0.043505758047104,0.0078250449150801,-0.053178075700998]],[[0.040199790149927,-0.080372184514999,0.072644479572773],[0.043046906590462,0.020938685163856,0.072657503187656],[-0.030465772375464,-0.0019782464951277,0.010373307392001]],[[-0.012653946876526,0.0045759510248899,-0.067082494497299],[-0.023144485428929,0.024469850584865,-0.052191309630871],[-0.045773562043905,-0.051679197698832,0.055078059434891]],[[0.022610347718,0.012631939724088,-0.026777114719152],[0.032995201647282,-0.01473942771554,0.084643967449665],[0.027026740834117,0.0062347897328436,0.0057784980162978]],[[-0.0077185537666082,0.029273426160216,0.039401076734066],[-0.03639529645443,-0.063949838280678,-0.028658723458648],[0.025401895865798,-0.067228212952614,-0.031192814931273]],[[0.047472208738327,-0.071646839380264,-0.023125626146793],[0.0082350466400385,-0.0078000416979194,-0.015871366485953],[-0.03912291675806,0.035252992063761,0.050181977450848]],[[-0.022980598732829,0.038777947425842,0.0031598364003003],[0.046441782265902,0.083936005830765,0.017188966274261],[0.0052589811384678,0.029118616133928,-0.02354040928185]],[[-0.021894438192248,0.02686764113605,0.032869014889002],[0.098976261913776,0.0012994983699173,0.0055342558771372],[-0.089440993964672,0.029853418469429,-0.076214738190174]],[[-0.024232149124146,-0.026234839111567,-0.016329603269696],[0.10707393288612,-0.016506599262357,-0.0072786998935044],[0.028267737478018,0.067710138857365,0.0070546721108258]],[[0.062553785741329,-0.051885172724724,-0.045632228255272],[0.028200782835484,0.055435948073864,-0.077733293175697],[0.029242191463709,0.082889176905155,-0.054192885756493]],[[-0.010316430591047,0.0073390253819525,-0.025833256542683],[0.0069558573886752,0.022205790504813,0.0070676691830158],[0.042845785617828,-0.065054662525654,-0.0012296815402806]],[[-0.018087873235345,0.026783414185047,-0.02760093472898],[0.0031160928774625,0.011123916134238,0.092564970254898],[0.0080234706401825,-0.050747096538544,0.022178376093507]],[[-0.0088340789079666,-0.058122280985117,0.00083567266119644],[0.027560796588659,0.0058036646805704,-0.024208728224039],[0.070328965783119,-0.020828057080507,-0.0085508078336716]],[[-0.0057382308878005,0.0028600553050637,0.033727522939444],[-0.031461521983147,-0.054428204894066,0.0084990551695228],[-0.065384209156036,0.012242801487446,-0.023106705397367]],[[-0.033519152551889,0.1065789014101,-0.062510423362255],[0.066682428121567,-0.027835762128234,0.035782143473625],[-0.01291714143008,0.0082914158701897,-0.029288899153471]],[[-0.017528997734189,0.023470975458622,0.018065050244331],[0.053373094648123,-0.011727568693459,0.075756497681141],[0.047239251434803,0.010012344457209,0.011935606598854]],[[0.045056067407131,0.034166112542152,-0.0035374853760004],[0.043024681508541,-0.019918257370591,0.012964904308319],[-0.049200933426619,0.010254127904773,-0.052372775971889]],[[0.031503088772297,0.081726737320423,-0.021931938827038],[-0.013944081030786,0.032594595104456,-0.0010824912460521],[0.022740045562387,-0.042278006672859,0.007718144915998]],[[0.037455834448338,-0.035507895052433,0.01007582899183],[0.02225298807025,-0.029104571789503,-0.043869692832232],[-0.049275875091553,0.0064276019111276,-0.011942989192903]],[[0.022693201899529,0.016526855528355,-0.00072702625766397],[-0.011504133231938,-0.091322690248489,0.096854716539383],[0.0095548899844289,0.033808335661888,0.0057563227601349]],[[-0.055511478334665,0.0011158873094246,0.039279859513044],[0.084659151732922,0.01946372166276,0.074123285710812],[0.08868145942688,0.088094733655453,0.017230717465281]],[[0.024690803140402,0.018708731979132,-0.06153492629528],[-0.05065805464983,0.018234444782138,0.0083930436521769],[0.062294814735651,0.023208143189549,-0.047278385609388]],[[0.0025619622319937,0.08008798211813,0.044327590614557],[0.075869478285313,0.033030159771442,-0.021400153636932],[0.022603621706367,-0.027942441403866,-0.028257140889764]],[[0.049701392650604,0.042304512113333,-0.015691921114922],[-0.007723456248641,0.0048529822379351,-0.029572069644928],[0.024162862449884,-0.018677869811654,0.0030007739551365]],[[0.0079008499160409,0.054767180234194,-0.022051667794585],[0.026702612638474,0.071962907910347,0.047079164534807],[-0.057286772876978,0.032863065600395,-0.015663769096136]],[[-0.026617605239153,0.051686495542526,-0.017050091177225],[0.057003248482943,0.011596463620663,0.0092320805415511],[0.01757232286036,-0.034202732145786,0.01897313632071]],[[0.014417316764593,0.025321049615741,0.010329852811992],[-0.059100922197104,-0.014029329642653,-0.039401143789291],[0.0090227080509067,0.030964151024818,0.027937948703766]],[[-0.047431282699108,0.027194291353226,0.031191427260637],[0.0066145146265626,-0.0098665365949273,-0.016399677842855],[0.011071915738285,0.011625863611698,0.0096291825175285]],[[0.043075796216726,-0.078728429973125,0.15660700201988],[-0.010674481280148,-0.050305582582951,0.019569566473365],[0.00098691461607814,-0.026586253196001,0.0076537490822375]],[[0.0075009628199041,-0.029568454250693,-0.0020269399974495],[-0.044427372515202,0.025949358940125,0.0046628462150693],[0.017757615074515,-0.036436654627323,-0.039424940943718]],[[0.030972482636571,-0.031163251027465,0.037308614701033],[0.038037184625864,0.0097274407744408,-0.029041409492493],[-0.026365544646978,-0.044178489595652,0.012877899222076]],[[0.001315588131547,-0.045288551598787,0.014879113063216],[0.01061196718365,-0.063552096486092,-0.059331130236387],[0.037334822118282,0.04133103042841,0.0060680932365358]],[[-0.021236553788185,-0.023726193234324,0.072367712855339],[0.024767007678747,-0.078595586121082,0.0070129986852407],[-0.003073035273701,-0.010444931685925,-0.0013085785321891]],[[-0.018409168347716,0.0045264945365489,-0.0086823450401425],[-0.032543424516916,-0.064935006201267,0.019406022503972],[-0.058685090392828,0.0023544714786112,-0.022864956408739]],[[-0.018442360684276,-0.0034840430598706,0.015581448562443],[-0.0051942453719676,0.052956771105528,-0.046443272382021],[-0.036888767033815,0.09445509314537,0.059509679675102]],[[-0.042882923036814,-0.0028115543536842,0.049039416015148],[0.0035354471765459,0.014856558293104,0.044649597257376],[-0.0025074146687984,0.014076831750572,-0.029695257544518]],[[0.089252211153507,0.12017450481653,0.036359984427691],[-0.055789235979319,0.059102229773998,-0.034569542855024],[0.050387889146805,-0.03704795986414,-0.024255987256765]],[[0.0022150294389576,0.036570955067873,-0.045827090740204],[0.078211307525635,0.022588113322854,0.058703944087029],[0.00035345173091628,-0.018743097782135,-0.012437549419701]],[[0.042432889342308,0.0076249549165368,0.053615480661392],[-0.062023833394051,0.0020406141411513,-0.037377770990133],[0.038175970315933,0.043726220726967,0.10634543001652]],[[0.024953901767731,-0.0039060488343239,0.069953098893166],[0.045749351382256,0.054099000990391,-0.056108243763447],[-0.018395900726318,0.047146622091532,-0.01442557387054]],[[0.023242739960551,-0.056965075433254,-0.021864630281925],[-0.021217949688435,0.031211843714118,-0.031184425577521],[0.025016440078616,-0.018032735213637,0.03572678565979]],[[0.010095556266606,0.054288063198328,-0.042367517948151],[0.031878463923931,0.014596472494304,-0.039786871522665],[0.071681745350361,0.040083564817905,0.032249394804239]],[[0.0021989310625941,-0.013299581594765,0.024460908025503],[-0.02295570448041,-0.019827909767628,-0.085927344858646],[0.032105907797813,0.037191439419985,-0.010629306547344]],[[-0.076270937919617,-0.0021857835818082,-0.061380747705698],[0.017241423949599,-0.010772333480418,0.035564869642258],[0.047953180968761,-0.037263572216034,0.004023882560432]],[[-0.027471069246531,0.03194672241807,-0.073059901595116],[-0.022960236296058,-0.0062814350239933,0.041851013898849],[0.0048499251715839,0.013143305666745,0.07630529999733]],[[0.013168881647289,0.0081838946789503,-0.00027187241357751],[-0.031177997589111,0.029236992821097,-0.050361968576908],[0.00018030058708973,0.043175619095564,-0.059799443930387]],[[-0.029565926641226,0.043141771107912,0.024926600977778],[0.087774142622948,-0.058496233075857,-0.003791227703914],[-0.060108840465546,0.11533564329147,0.0087693324312568]],[[0.023799451068044,-0.012459167279303,0.024478301405907],[-0.017165886238217,0.047699972987175,-0.0036306448746473],[0.0065652076154947,-0.030059233307838,-0.0091389566659927]],[[0.015906814485788,0.037428587675095,-0.029743516817689],[0.041978389024734,0.0023466357961297,-0.0016101088840514],[0.0034940717741847,0.044880576431751,-0.042304653674364]],[[0.014952081255615,0.052546918392181,0.033576741814613],[0.0032762438058853,-0.02182587236166,0.03293465077877],[0.068051680922508,0.069523341953754,-0.018987691029906]],[[-0.021999007090926,-0.057495001703501,-0.025294175371528],[0.10652455687523,0.042453680187464,-0.018259650096297],[0.055763926357031,0.00049723801203072,0.072758004069328]],[[0.024979215115309,0.018861787393689,0.032316952943802],[-0.012151076458395,0.0056683449074626,0.052626956254244],[-0.028577540069818,-0.048703391104937,-0.049773659557104]],[[0.05943227186799,-0.0117465890944,-0.020076371729374],[0.066807605326176,0.059387501329184,0.013582262210548],[0.032402101904154,0.012243582867086,-0.040921080857515]],[[0.025366876274347,-0.0057444176636636,0.006537988781929],[0.05317086353898,-0.062110494822264,0.034682273864746],[0.0093623846769333,0.01894536241889,-0.0095940865576267]],[[0.0084492610767484,0.057074211537838,0.11743655800819],[0.021371500566602,-0.04120160266757,0.06190587952733],[-0.0034728930331767,0.030577763915062,-0.021190715953708]],[[-0.066755458712578,0.0062449770048261,-0.0087348958477378],[-0.019021661952138,0.07085458189249,-0.019210880622268],[0.037776805460453,0.13728910684586,-0.057149205356836]],[[-0.051288943737745,0.012959013693035,0.063883736729622],[0.0074582537636161,0.048382584005594,-0.020485982298851],[-0.0031941465567797,0.031317044049501,-0.087027683854103]],[[0.032704252749681,0.023181958124042,0.012739241123199],[-0.0076910490170121,-0.031633079051971,0.029323576018214],[0.015055015683174,-0.0023952454794198,-0.058577332645655]],[[-0.032609824091196,-0.07774742692709,-0.022818431258202],[0.0047624432481825,0.086356893181801,0.018000515177846],[-0.049830928444862,0.056972693651915,0.0061040795408189]],[[-0.042496018111706,0.0025807865895331,-0.033247277140617],[-0.01422259490937,0.010057986713946,-9.0327130237711e-06],[-0.017904391512275,0.062245678156614,-0.0038908873684704]],[[0.0084971208125353,0.036077171564102,0.074973106384277],[0.0054241879843175,0.04811218380928,-0.057752251625061],[-0.021146930754185,0.052076172083616,-0.015666807070374]],[[-0.020511645823717,0.051812142133713,0.003668338060379],[6.8659483076772e-06,-0.066614367067814,0.019657805562019],[0.048373132944107,0.0099248895421624,-0.018414594233036]],[[0.018756255507469,-0.038350716233253,0.043700475245714],[0.023851059377193,0.011299280449748,0.11007705330849],[-0.017391795292497,-0.0052755381911993,-0.12908424437046]],[[0.023446548730135,-0.017879212275147,0.016870766878128],[0.057840071618557,-0.0095389503985643,0.00083189166616648],[-0.018290949985385,-0.077696718275547,0.012401594780385]],[[0.0204335488379,-0.020832067355514,-0.005169692914933],[0.053894601762295,0.020202551037073,0.014358628541231],[-0.00067591946572065,-0.064118966460228,0.036569595336914]],[[-0.0005407051066868,0.040303342044353,-0.073110170662403],[0.0085957236588001,0.015390186570585,0.076835334300995],[-0.0084085455164313,0.024457776919007,0.036962058395147]],[[0.013516451232135,-0.018100248649716,0.034918058663607],[-0.052848543971777,0.016664087772369,0.085286758840084],[-0.069859929382801,0.10954120755196,0.017809771001339]],[[-0.044567316770554,-0.04632929712534,0.040285620838404],[-0.034267764538527,0.01546585559845,-0.071233682334423],[-0.025646090507507,-0.11978989839554,0.075082629919052]],[[0.023616272956133,-0.026785999536514,-0.0085207913070917],[-0.035223543643951,0.026090750470757,0.014328299090266],[-0.0097102792933583,-0.032865878194571,-0.015666147693992]],[[0.021525181829929,0.020484123378992,0.061691280454397],[0.01708584651351,0.030594266951084,0.052255179733038],[0.055822964757681,0.0086191007867455,0.0064745144918561]],[[-0.030473306775093,0.0051794028840959,-0.011425340548158],[-0.046656869351864,-0.083112880587578,0.073555931448936],[0.019337749108672,-0.022340305149555,0.019287122413516]],[[-0.020567554980516,-0.032672353088856,-0.018557569012046],[-0.013745476491749,0.027585100382566,0.031394854187965],[-0.068055093288422,-0.025396067649126,-0.056313425302505]],[[-0.030651325359941,-0.064239881932735,-0.018172033131123],[0.04699257388711,-0.017186813056469,0.0046869581565261],[0.023022722452879,0.038858484476805,-0.0079327402636409]],[[0.047730319201946,0.018028646707535,-0.02720857039094],[-0.046576246619225,-0.016003482043743,-0.0044602029956877],[0.054305076599121,0.043303154408932,-0.017560604959726]],[[0.095931723713875,-0.043212313205004,0.016056459397078],[-0.023880554363132,-0.015837650746107,0.073269404470921],[-0.019805999472737,-0.066287323832512,0.018556946888566]],[[0.040611352771521,0.00033682290813886,-0.048274304717779],[0.053121700882912,0.011850502341986,0.067901454865932],[-0.1269958615303,0.024452801793814,-0.012711746618152]],[[-0.0045565962791443,-0.020134886726737,0.0063326321542263],[0.010612840764225,0.067138195037842,-0.039933528751135],[-0.05707848444581,0.041880425065756,0.0034293523058295]],[[-0.01392834354192,-0.057511508464813,-0.015778891742229],[-0.037915639579296,-0.021448096260428,-0.025140449404716],[0.013563372194767,-0.026593709364533,0.046255104243755]],[[-0.031157694756985,-0.060824375599623,0.03068677149713],[0.024682072922587,-0.081558860838413,0.011478239670396],[-0.0722286850214,0.047309923917055,-0.0031556321773678]],[[-0.01664075255394,0.034380592405796,0.029998390004039],[9.1719150077552e-05,-0.022080237045884,-0.039611775428057],[0.057486392557621,-0.0174400806427,0.0051326327957213]],[[0.08831524848938,0.010102268308401,0.046771015971899],[-0.016278417780995,-0.014912738464773,0.0061642839573324],[0.015550401061773,0.014905664138496,-0.044072601944208]],[[0.0086987856775522,-0.042660966515541,-0.036335278302431],[-0.010855183005333,0.064872309565544,0.022466909140348],[-0.0037042130716145,0.053341828286648,-0.024038700386882]],[[0.075309745967388,-0.066435664892197,0.029330877587199],[0.014876691624522,-0.030587431043386,0.04881289601326],[-0.02316128462553,-0.01291386038065,0.03693937882781]],[[0.063928216695786,0.082575298845768,-0.056278634816408],[0.062828987836838,-0.012146746739745,-0.03694248944521],[-0.044330798089504,-0.0047433567233384,-0.0039878142997622]],[[-0.0026410357095301,0.018164835870266,0.077492587268353],[-0.0051780799403787,-0.0071386485360563,0.04966139793396],[-0.042440056800842,-0.018169689923525,-0.0086277313530445]],[[0.0048743709921837,0.035382710397243,0.037079092115164],[0.027634175494313,-0.032869979739189,0.032032236456871],[0.0063804057426751,0.062414385378361,-0.056975182145834]],[[0.0016110681463033,-0.035519108176231,0.0042832926847041],[0.061822395771742,0.036542285233736,-0.082249984145164],[-0.016956930980086,-0.06160818785429,-0.024006653577089]],[[-0.021585816517472,0.021404953673482,0.0069070057943463],[0.048131097108126,-0.025384338572621,-0.029372874647379],[-0.028060888871551,-0.0036648388486356,0.055795796215534]],[[-0.02591828070581,0.018073117360473,-0.080866895616055],[0.006288721691817,0.021954888477921,-0.024151561781764],[-0.002537606516853,0.072006411850452,0.0001190492985188]],[[0.009453933686018,-0.0036161388270557,0.0053517436608672],[0.0010350852971897,-0.06651958078146,0.0008398134377785],[-0.01482514757663,0.041972056031227,-0.0043615885078907]],[[-0.021547373384237,-0.0054977866820991,-0.025143587961793],[0.059460014104843,-0.049538303166628,-0.019392339512706],[0.034999679774046,0.022670088335872,-0.013657340779901]],[[-0.012302509509027,0.015022245235741,0.018007837235928],[0.081759884953499,0.011346681043506,-0.064730361104012],[0.01227055862546,0.023995634168386,0.0098166707903147]],[[-0.020819643512368,0.0028029514942318,-0.023033019155264],[0.087773695588112,0.010472233407199,-0.0047628078609705],[-0.01848210953176,0.012089360505342,0.0015748697333038]],[[0.03946029394865,0.021443773061037,-0.035344611853361],[-0.0077913152053952,-0.031134625896811,-0.044272728264332],[0.099239364266396,-0.027940979227424,0.069138303399086]],[[0.00078223942546174,0.0059385695494711,0.06220281496644],[0.039826743304729,0.10343482345343,-0.000655053765513],[-0.0011909485328943,-0.0065058977343142,-0.022925473749638]],[[0.043472472578287,0.084989614784718,-0.021395597606897],[0.042717311531305,-0.022844009101391,-0.017929514870048],[0.027737775817513,0.042612966150045,0.012758268043399]],[[0.015315448865294,0.068620756268501,-0.039460960775614],[-0.018968803808093,0.022210666909814,-0.082383394241333],[-0.033439096063375,-0.004275621380657,0.0033529808279127]],[[0.0149254957214,0.018410434946418,0.0015770819736645],[0.070109099149704,-0.0056578381918371,-0.037769112735987],[0.012482206337154,0.01622923091054,-0.055059175938368]],[[-0.037653431296349,0.012860496528447,0.011524613015354],[-0.0466611944139,0.062228366732597,0.071313604712486],[0.0091808084398508,-0.023394482210279,0.013031871058047]],[[0.033987578004599,0.063694894313812,0.004314539488405],[-0.0094812577590346,-0.015308286063373,-0.083017103374004],[0.040215287357569,0.010764728300273,-0.027261370792985]],[[0.049504902213812,0.0025012367404997,0.014871367253363],[-0.045809056609869,0.011808983981609,0.041468694806099],[-0.060764465481043,0.0035337372682989,-0.058336663991213]],[[0.0090048778802156,-0.041789092123508,0.02272323332727],[0.039249457418919,0.0070225428789854,-0.018283748999238],[0.014480722136796,0.025104885920882,0.09249959141016]],[[0.042484492063522,-0.10352467745543,-0.055115204304457],[-0.0016540833748877,-0.066166214644909,-0.043906535953283],[-0.06640537828207,0.014609233476222,-0.045488186180592]],[[0.026031542569399,0.067083679139614,0.036358788609505],[0.015101808123291,-0.10765443742275,0.070143505930901],[0.041337534785271,0.085147611796856,0.04631907120347]],[[0.017503565177321,0.0071514812298119,0.012025040574372],[0.026278231292963,0.040377706289291,0.012142147868872],[-0.037051312625408,-0.015351713635027,-0.012191864661872]],[[-0.040654357522726,0.071012422442436,-0.031435996294022],[0.018064549192786,0.025417057797313,0.036287683993578],[-0.035227946937084,-0.005798437166959,-0.052534382790327]],[[-0.078014098107815,0.024339497089386,-0.063435137271881],[-0.034390673041344,-0.039196040481329,-0.13921655714512],[-0.014160244725645,-0.025079280138016,-0.079095415771008]],[[-0.021929431706667,0.071035489439964,0.052244804799557],[-0.053905200213194,-0.019932296127081,0.037969388067722],[-0.02838516049087,0.02595061250031,-0.0098488880321383]],[[0.096021756529808,-0.036074053496122,-0.03412739187479],[-0.019718555733562,0.043233703821898,0.014757423661649],[0.035937156528234,0.039374031126499,0.038438729941845]],[[-0.0077792820520699,0.027819557115436,0.0029799488838762],[-0.0015130065148696,-0.051707278937101,-0.054884385317564],[0.033588618040085,-0.0025451979599893,0.030900048092008]],[[0.099978372454643,-0.031079748645425,0.009193055331707],[-0.012210565619171,-0.006590886041522,0.13331389427185],[-0.044031228870153,0.058104664087296,-0.03704422339797]],[[-0.060255613178015,-0.019612967967987,-0.012282562442124],[-0.017935300245881,0.009755402803421,0.031678754836321],[-0.021027397364378,0.012925047427416,0.08280648291111]],[[0.010110736824572,-0.040953289717436,0.0060326629318297],[-0.038557220250368,-0.056892275810242,0.042146470397711],[0.049257256090641,-0.004188000690192,0.037190336734056]],[[0.076942406594753,0.0056172050535679,0.062557019293308],[-0.013718191534281,-0.053098831325769,0.034939710050821],[-0.082204505801201,-0.030731815844774,-0.014022732153535]],[[0.11578723043203,-0.047487359493971,-0.030902430415154],[0.038297157734632,-0.039189584553242,-0.0067378543317318],[0.042992979288101,0.020613564178348,0.010120339691639]],[[0.041106782853603,0.035261664539576,-0.057267863303423],[0.03788772970438,-0.07229857891798,0.048522766679525],[0.053021293133497,0.036135096102953,0.015984211117029]],[[0.068313762545586,-0.0084267761558294,-0.0098454253748059],[-0.046996831893921,-0.0029272045940161,0.071384243667126],[-0.021093435585499,0.032565820962191,-0.011065686121583]],[[0.00026641646400094,0.022402198985219,-0.053607735782862],[0.0042585940100253,-0.055924005806446,0.064157418906689],[-0.07314795255661,-0.0024278853088617,-0.0053117084316909]],[[-0.023783696815372,-0.0058596609160304,-0.069577030837536],[-0.0058911815285683,0.018211724236608,-0.07483222335577],[0.035031966865063,0.044684413820505,-0.0076703284867108]],[[-0.073559664189816,-0.006840018555522,-0.016356036067009],[0.054993540048599,-0.07399196177721,-0.025532739236951],[0.017114223912358,0.018344147130847,-0.07313483953476]],[[0.031673863530159,-0.033495493233204,0.0031166195403785],[0.085128001868725,0.025813855230808,-0.0022781016305089],[-0.027692278847098,-0.012161849066615,0.051755800843239]]],[[[0.031707439571619,0.00011118514521513,0.086445204913616],[0.0054386691190302,-0.032471463084221,0.03654633462429],[-0.035692494362593,0.004812843631953,-0.0069152880460024]],[[0.026699882000685,0.052376363426447,0.12488637119532],[-0.0042579034343362,0.075082823634148,-0.029739625751972],[0.11578749120235,0.052134193480015,-0.025578491389751]],[[-0.01841676607728,-0.0021778629161417,0.021963600069284],[0.077620178461075,0.012674885801971,0.014168962836266],[0.0030438366811723,0.070851981639862,-0.0069468398578465]],[[0.043285071849823,0.065515913069248,0.12137527763844],[0.0060654929839075,0.07197380810976,-0.066720679402351],[-0.023529117926955,0.021681746467948,0.012971703894436]],[[0.0045410306192935,-0.0046906918287277,-0.004262313246727],[0.0985207259655,0.10917104035616,0.016112709417939],[-0.00092416437109932,-0.02091197296977,0.062813088297844]],[[-0.021753357723355,-0.01139507535845,-0.030257362872362],[0.031255163252354,0.011437880806625,-0.029714554548264],[0.0047522578388453,0.097655735909939,0.050880637019873]],[[0.088279478251934,0.0046962196938694,-0.027651770040393],[0.014967082999647,-0.028059454634786,0.0056004347279668],[-0.010486314073205,-0.069108061492443,0.037012595683336]],[[-0.0099082048982382,0.042024791240692,0.022435247898102],[-0.0076172081753612,0.028957780450583,0.071983747184277],[-0.013233889825642,-0.037878919392824,-0.032305411994457]],[[-0.018890457227826,-0.014814996160567,0.0073205139487982],[0.029648456722498,0.0047603445127606,0.015749406069517],[0.051749419420958,0.059104271233082,-0.042854178696871]],[[-0.077371142804623,0.0057873716577888,0.12157660722733],[0.1728231459856,0.056757248938084,0.027485258877277],[-0.027564585208893,0.094321325421333,-0.093178987503052]],[[0.048671547323465,0.084897212684155,0.035752255469561],[-0.0065992544405162,-0.030402256175876,-0.062942422926426],[-0.035520788282156,0.01927182264626,0.0080278310924768]],[[0.10071907937527,-0.011781931854784,0.0020399035420269],[0.029192660003901,0.047208871692419,0.044758450239897],[0.043365206569433,-0.0034140890929848,-0.034224446862936]],[[0.037554640322924,-0.0024100730661303,0.016396289691329],[0.035301636904478,0.0056206053122878,0.040945645421743],[-0.0082616442814469,0.050888814032078,-0.039104327559471]],[[0.079698421061039,6.0758648032788e-05,0.015383520163596],[0.081413149833679,0.038015130907297,-0.0049198437482119],[0.072344928979874,-0.012225630693138,0.07042882591486]],[[-0.048829261213541,0.063374690711498,0.028433302417397],[0.068000338971615,-0.0086420821025968,0.16272819042206],[0.099653899669647,-0.084309071302414,0.017255526036024]],[[-0.057261075824499,0.0081698438152671,-0.013373239897192],[-0.028412327170372,-0.0019912491552532,-0.030562104657292],[-0.035193908959627,-0.00075263262260705,-0.0011506584705785]],[[-0.034573294222355,0.015140706673265,-0.016524640843272],[0.067856356501579,0.03521440923214,-0.052542109042406],[0.0098597398027778,0.097776606678963,0.0080774864181876]],[[-0.048676140606403,-0.10571745038033,0.0066998871043324],[0.099883802235126,0.0016307096229866,-0.064718961715698],[-0.035425797104836,-0.0022882763296366,-0.0099858622997999]],[[0.0080249616876245,0.035007860511541,0.039276953786612],[-0.0017921210965142,0.056959751993418,-0.11708645522594],[-0.012777770869434,0.0087906178086996,0.044024087488651]],[[-0.010702115483582,0.097396120429039,0.038992818444967],[-0.00086293555796146,-0.026382099837065,0.076107665896416],[0.048208419233561,0.095749564468861,0.066964194178581]],[[0.07813835889101,-0.0096783917397261,0.089890085160732],[-0.014170416630805,-0.036813654005527,-0.015678681433201],[0.0062152077443898,-0.059467047452927,-0.016002038493752]],[[-0.037288926541805,-0.0031563516240567,0.062561139464378],[-0.0040479237213731,0.071882583200932,0.040368020534515],[-0.0095373308286071,0.0025034232530743,0.019599098712206]],[[0.029010387137532,0.036466542631388,-0.011277375742793],[0.029080783948302,0.019584624096751,0.080793358385563],[0.099721014499664,-0.0018951736856252,0.035404402762651]],[[0.022781420499086,0.071925103664398,0.0035268187057227],[0.012446586973965,-0.0076134162954986,0.072607055306435],[0.031120896339417,-0.083421878516674,-0.013947930186987]],[[0.01918488740921,0.018118632957339,0.062430266290903],[0.055023495107889,0.032631848007441,-0.0047103716060519],[-0.0063377427868545,0.023238534107804,-0.030276147648692]],[[0.023837434127927,-0.044254541397095,0.029721414670348],[0.015721386298537,0.059550799429417,0.0064446902833879],[-0.039319168776274,-0.018991611897945,0.013598666526377]],[[0.091612979769707,-0.0093454271554947,-0.045373883098364],[-0.063793830573559,0.080469131469727,-0.022096822038293],[-0.078133605420589,0.060064807534218,0.039416622370481]],[[0.10768032819033,0.036988295614719,0.11812213808298],[-0.0050349552184343,0.067224681377411,-0.043291341513395],[0.067932516336441,0.068966217339039,-0.030746581032872]],[[-0.056692209094763,0.084112033247948,0.042221061885357],[0.10625147074461,-0.038646701723337,0.028757061809301],[0.036066714674234,-0.039667043834925,-0.022218028083444]],[[0.019774599000812,0.03732480853796,-0.018115729093552],[-0.047130800783634,-0.090480089187622,0.052003908902407],[-0.0034448790829629,0.056172847747803,-0.03555129095912]],[[0.062137924134731,-0.027805639430881,0.033431299030781],[-0.014817993156612,-0.026654146611691,0.077027685940266],[0.027172094210982,0.064948320388794,0.0034891201648861]],[[-0.0068116649053991,-0.0046064467169344,0.030688136816025],[0.066043570637703,-0.015284752473235,0.099333517253399],[0.016083043068647,-0.043240629136562,0.0369758233428]],[[0.016049211844802,-0.0058181202039123,-0.0060858833603561],[-0.010778899304569,0.083838656544685,-0.068263694643974],[0.021905982866883,-0.11266487836838,-0.020783415064216]],[[-0.02113151550293,0.043187666684389,-0.0044500478543341],[0.062265288084745,-0.027277151122689,0.052447330206633],[-0.041335076093674,-0.039370246231556,0.037498496472836]],[[-0.032778017222881,0.088295727968216,0.042001593858004],[0.061478041112423,-0.017287390306592,0.067786857485771],[0.0018674596212804,-0.024994565173984,-0.071184307336807]],[[0.022911945357919,0.0059501021169126,-0.055975452065468],[0.020093029364944,0.014537026174366,0.00018480188737158],[-0.0040337783284485,0.012856660410762,-0.0095949005335569]],[[0.022080697119236,0.028005171567202,0.019217798486352],[0.061163149774075,0.027635062113404,0.0091387452557683],[0.0033100566361099,-0.016005210578442,0.033638663589954]],[[-0.0061391643248498,0.056626800447702,0.048215419054031],[0.061523422598839,0.014269800856709,0.031153038144112],[0.022064246237278,-0.014434454962611,0.0092119546607137]],[[0.040840219706297,-0.023242732509971,-0.00040957471355796],[0.065947361290455,-0.0069646118208766,0.01515883859247],[-0.038611385971308,-0.0098155457526445,-0.045537482947111]],[[0.029508696869016,-0.0044086370617151,0.0046957531012595],[-0.0018016793765128,0.049088969826698,-0.03131441026926],[0.034032955765724,0.024493936449289,0.024917662143707]],[[-0.0046625239774585,0.0072467010468245,-0.0088902059942484],[-0.047956649214029,-0.050872564315796,-0.013339108787477],[-0.013309083878994,-0.025100288912654,-0.014358222484589]],[[0.056502304971218,-0.034613072872162,0.0018084669718519],[-0.034777268767357,-0.017633259296417,0.012712642550468],[-0.01829594373703,0.025525353848934,-0.022120945155621]],[[0.068972028791904,0.012182313017547,-0.065260484814644],[0.037142626941204,-0.010302159935236,0.012275524437428],[-0.053000178188086,0.083478860557079,-0.0552615262568]],[[-0.0027760367374867,0.04398151487112,-0.033059667795897],[0.033079531043768,0.043711174279451,0.011599471792579],[0.0068231378681958,-0.010018275119364,0.033780675381422]],[[-0.016692467033863,0.02032819762826,0.051863085478544],[0.018913982436061,0.0074501512572169,-0.014508182182908],[0.022624313831329,0.073942176997662,-0.028293315321207]],[[0.00021555268904194,-0.012038489803672,0.036655679345131],[0.057025071233511,0.016786146908998,-0.038618296384811],[0.016411835327744,0.099261693656445,-0.032845351845026]],[[0.0038189026527107,0.066248349845409,0.012694407254457],[-0.031780552119017,-0.018570341169834,0.0010574824409559],[-0.0064391572959721,0.045810762792826,0.046911064535379]],[[0.023100798949599,-0.060406032949686,0.0023248780053109],[0.1090664640069,0.040271058678627,-0.00059567054267973],[-0.055354032665491,0.014173746109009,-0.020917886868119]],[[0.024133780971169,-0.027562733739614,-0.007233118172735],[-0.060010265558958,-0.018140910193324,0.026378439739347],[0.051310554146767,-0.023291569203138,0.069785907864571]],[[0.010724593885243,0.00095608702395111,0.0022631734609604],[-0.030477024614811,-0.013075948692858,0.0842519775033],[-0.070589601993561,0.040990199893713,-0.0064267632551491]],[[0.069439128041267,0.0044459886848927,-0.071916073560715],[0.0033600202295929,0.036265831440687,-0.074504882097244],[0.02434378489852,-0.082223393023014,-0.014411366544664]],[[0.085944086313248,0.046548347920179,-0.039360154420137],[0.0048579070717096,0.09086050093174,0.051741361618042],[-0.0053011141717434,0.035704381763935,-0.04638247936964]],[[0.014171811752021,0.046685878187418,-0.046447686851025],[0.025021540001035,-0.031452465802431,0.076964303851128],[0.057549133896828,-0.0096504669636488,-0.0080527635291219]],[[0.088272675871849,-0.035770133137703,0.030983405187726],[0.00072483153780922,0.010538458824158,0.01742353476584],[0.13319379091263,0.0050202482379973,0.00067193422000855]],[[0.0023067879956216,0.015274076722562,0.01662939414382],[0.025957088917494,0.016671309247613,0.021789900958538],[-0.080738849937916,-0.0014458898222074,-0.028058268129826]],[[-0.016943287104368,0.037990543991327,0.027313636615872],[-0.006521834526211,-0.00080619717482477,0.0058704558759928],[0.051878411322832,0.04452908039093,0.038589373230934]],[[-0.05990032479167,0.021169291809201,-0.04001285508275],[-0.021900588646531,0.10327874869108,0.064511254429817],[0.012023380026221,0.006022765301168,-0.014457087032497]],[[0.11537747830153,0.034737072885036,0.0043808296322823],[0.03320799022913,0.0069915531203151,0.017639439553022],[0.094056241214275,-0.068470507860184,-0.041231893002987]],[[0.046807032078505,-0.0078480644151568,0.066888280212879],[0.047349389642477,0.042680237442255,0.020663740113378],[0.049048371613026,0.016779888421297,0.010652132332325]],[[-0.01442739367485,-0.014546412974596,0.024346055462956],[-0.047201171517372,-0.028046894818544,-0.03126073628664],[-0.032171718776226,-0.010634836740792,0.030946543440223]],[[0.03861940652132,0.015469036065042,0.053997758775949],[-0.0052140625193715,0.015087012201548,-0.013111906126142],[0.016438599675894,0.035416893661022,0.035644434392452]],[[0.0078321322798729,0.037048369646072,0.030603354796767],[0.049768064171076,0.049407839775085,-0.0032026944682002],[-0.03003903105855,-0.065800972282887,-0.07757768034935]],[[0.03526845946908,0.0087390039116144,-0.021225633099675],[0.039186708629131,-0.04504831880331,0.015223219059408],[0.0015217270702124,-0.0047844713553786,-0.0022409784141928]],[[0.037698470056057,-0.0038552470505238,0.034858733415604],[0.042056832462549,0.035119589418173,-0.043503072112799],[-0.050597656518221,-0.0093170925974846,0.058476433157921]],[[0.017515989020467,0.0061291526071727,0.003542443504557],[-0.0023488102015108,0.034445967525244,-0.0085398089140654],[0.0049105933867395,0.060018673539162,-0.099438235163689]],[[-0.061177805066109,-0.053611531853676,-0.01687285117805],[-0.018180316314101,0.00056191824842244,0.065754607319832],[0.011642531491816,0.083089105784893,-0.054172068834305]],[[-0.021702835336328,0.045016892254353,-0.023339262232184],[0.081987820565701,-0.032425176352262,0.025243597105145],[0.038755524903536,-0.026265550404787,0.00063235766720027]],[[0.029526935890317,0.069750182330608,-0.024734880775213],[0.098192200064659,0.064597330987453,0.10166994482279],[-0.023664018139243,0.0013445524964482,-0.037583529949188]],[[0.069207608699799,-0.00065436994191259,-0.029304197058082],[-0.031894754618406,-0.034260384738445,0.030426952987909],[-0.067206628620625,0.033568739891052,0.057611327618361]],[[-0.016359880566597,-0.0010048318654299,0.0086017148569226],[0.019703190773726,0.01952101290226,0.072308875620365],[0.072171159088612,0.059778247028589,-0.035090915858746]],[[0.023182446137071,-0.004160086158663,-0.056493151932955],[-0.028702849522233,0.023651994764805,0.02858611382544],[-0.028737893328071,-0.034014102071524,-0.0096909664571285]],[[0.016551045700908,-0.033142428845167,0.017015466466546],[0.062773764133453,-0.0064240437932312,-0.0005785304820165],[0.042437199503183,-0.049848116934299,0.022318558767438]],[[-0.022267954424024,-0.031547732651234,0.017907531931996],[0.012063230387866,0.05200107768178,0.10215480625629],[0.075937762856483,0.0020937530789524,-0.010514314286411]],[[-0.025734048336744,-0.039422046393156,0.0028049950487912],[0.075612097978592,0.0054790717549622,0.070098988711834],[-0.0013509477721527,0.12518009543419,0.018034221604466]],[[0.032772075384855,0.020838357508183,-0.072030015289783],[0.0438785366714,-0.053246259689331,-0.087221637368202],[0.012515486218035,0.010357927531004,0.027675483375788]],[[0.030560242012143,0.01638425886631,0.096854649484158],[0.046161163598299,-0.0048277280293405,-0.054538942873478],[0.050296228379011,0.0099687557667494,0.012051580473781]],[[-0.0595946572721,-0.034650310873985,0.027423389256001],[0.0024594645947218,-0.026817055419087,0.026023156940937],[0.044257421046495,-0.01131081674248,0.0050008203834295]],[[-0.031247807666659,-0.046997152268887,0.014679652638733],[0.07632077485323,0.026478683575988,-0.012271501123905],[-0.049539584666491,-0.028319010511041,0.017859175801277]],[[-0.024182934314013,0.012953212484717,0.053397841751575],[-0.0063025150448084,-0.087215185165405,0.018591934815049],[0.010554648004472,-0.0051837558858097,-0.05926039814949]],[[-0.030410872772336,-0.079234510660172,-0.094829209148884],[0.0065839444287121,-0.0080945864319801,-0.017436739057302],[0.074461959302425,-0.0201470926404,0.0084349829703569]],[[-0.018358735367656,-0.029362745583057,0.024873450398445],[-0.034699618816376,0.020352525636554,-0.033979464322329],[-0.072085864841938,0.023211063817143,-0.0024160554166883]],[[0.039103079587221,0.066455662250519,-0.0022967336699367],[-0.09397504478693,0.021469540894032,0.11267950385809],[0.0019769847858697,-0.042485620826483,0.013657243922353]],[[0.036979801952839,0.054177023470402,0.011757801286876],[-0.028664983808994,0.0051111397333443,-0.025026239454746],[0.021140951663256,-0.013177635148168,0.092164941132069]],[[0.057738531380892,0.0036393424961716,0.023719733580947],[-0.018275434151292,-0.00047218226245604,0.063862517476082],[0.071060501039028,0.018092107027769,0.0013694408116862]],[[-0.06605464220047,0.04047767072916,-0.080914132297039],[0.038381326943636,0.0099263256415725,0.056870236992836],[0.025239825248718,-0.080496579408646,-0.019782496616244]],[[-0.0030058894772083,-0.073308013379574,-0.070999793708324],[-0.097323931753635,0.038050189614296,0.025937533006072],[-0.037463001906872,-0.054276864975691,0.050961218774319]],[[-0.042140707373619,0.01777084171772,0.0037544963415712],[-0.055006828159094,0.080330856144428,-0.053520482033491],[-0.088994473218918,-0.057127941399813,-0.044334497302771]],[[0.014603104442358,0.039565473794937,0.044319342821836],[-0.031543515622616,-0.0081205116584897,0.033802319318056],[-0.030290450900793,0.048825938254595,0.10441688448191]],[[0.0090255877003074,-0.017922108992934,-0.0089547345414758],[0.058375634253025,0.0078443493694067,-0.028027711436152],[0.036331340670586,-0.074265897274017,-0.083108827471733]],[[-0.0066643212921917,0.062618799507618,0.024987144395709],[-0.0014041436370462,-0.00058500381419435,0.087611645460129],[-0.01909695379436,-0.002184899058193,0.052089370787144]],[[-0.01275397837162,0.051892954856157,0.034394606947899],[0.026904122903943,-0.022401118651032,0.057801514863968],[0.024877516552806,0.053430028259754,-0.012317636981606]],[[-0.023335583508015,0.076213382184505,0.064219824969769],[0.0060694026760757,-0.037079710513353,-0.0057953204959631],[0.036498550325632,0.063058510422707,0.071060225367546]],[[0.0039623444899917,-0.067351303994656,-0.021202027797699],[-0.059188179671764,0.014873076230288,0.046169608831406],[-0.010530989617109,-0.012072771787643,0.040358651429415]],[[-0.014485851861537,0.034554250538349,-0.0075338953174651],[-0.0081010675057769,0.026100922375917,0.021864607930183],[-0.014757003635168,0.043677128851414,-0.055842485278845]],[[-0.038749434053898,0.020037250593305,-0.034249432384968],[-0.064414143562317,0.0022947813849896,0.036970786750317],[-0.022423233836889,-0.019356673583388,0.044046442955732]],[[0.090316452085972,-0.04967575147748,-0.06316414475441],[0.10929801315069,0.075466684997082,0.065084166824818],[0.010403735563159,0.037300065159798,0.022689696401358]],[[0.0023600154090673,-0.03088915348053,0.012826915830374],[0.028664043173194,0.0011954628862441,0.099675320088863],[-0.035757906734943,0.044187191873789,-0.06340453773737]],[[-0.031306836754084,-0.015588362701237,0.082573682069778],[0.02952179685235,0.021868897601962,0.0046260543167591],[0.07946801930666,-0.014691419899464,0.016760475933552]],[[-0.015166979283094,-0.010404855012894,0.083894200623035],[0.055694423615932,0.021708827465773,0.023853043094277],[0.00070377514930442,-0.0054888753220439,0.0064836428500712]],[[0.058906745165586,-0.038152139633894,-0.014286394231021],[-0.041916687041521,0.084753893315792,-0.065810114145279],[-0.01845894753933,0.029776996001601,0.074009649455547]],[[0.06116584315896,-0.01808724552393,-0.015530639328063],[0.0090593546628952,0.031070407480001,0.012684463523328],[-0.032867342233658,0.012833557091653,-0.020709099248052]],[[0.076836422085762,0.043655831366777,0.019143160432577],[0.029340386390686,-0.018114676699042,0.078923039138317],[0.04923527315259,-0.053698282688856,0.012582416646183]],[[0.056412626057863,-0.053816135972738,-0.05172910168767],[0.057940937578678,-0.010225056670606,0.025790117681026],[-0.015891008079052,0.030174024403095,-0.04302840679884]],[[-0.0089639974758029,-0.071763031184673,-0.048180565237999],[-0.035716887563467,-0.01653135754168,-0.018280349671841],[0.051484305411577,0.050938252359629,-0.059037789702415]],[[-0.040128938853741,-0.0024602396879345,-0.027950463816524],[0.033405736088753,-0.024491216987371,0.030714156106114],[-0.024413403123617,0.026975683867931,0.029256626963615]],[[0.060555562376976,-0.027504164725542,-0.034680414944887],[0.0096026882529259,0.035844184458256,-0.021523464471102],[-0.054026622325182,0.080245137214661,0.011215638369322]],[[-0.030014196410775,-0.01152902469039,0.0042710565030575],[-0.062672652304173,0.023291356861591,-0.020301947370172],[-0.0091155441477895,0.0011733560822904,-0.031521629542112]],[[-0.062188755720854,-0.008208273909986,0.0087520098313689],[0.056394454091787,-0.018230414018035,-0.021895941346884],[-0.03759552910924,-0.066766038537025,0.0063398648053408]],[[0.056695774197578,-0.036215338855982,0.057554982602596],[0.067845694720745,0.051995303481817,-0.062313970178366],[0.0090992003679276,0.022126737982035,-0.011076037772]],[[-0.050940029323101,-0.040248908102512,-0.0082248998805881],[0.046437624841928,0.0062711066566408,0.062505267560482],[-0.06205302849412,0.031707525253296,0.049964260309935]],[[-0.030585035681725,-0.027218103408813,0.02347594127059],[-0.00075660092988983,0.024946266785264,-0.017923396080732],[-0.034199185669422,0.061509657651186,-0.08321725577116]],[[-0.037408508360386,-0.024005997925997,0.013667217455804],[0.0605623498559,0.018737178295851,0.048875913023949],[0.008602986112237,-0.043042629957199,-0.035811699926853]],[[-0.03018699772656,-0.0035017242189497,0.034440562129021],[0.035838078707457,-0.054172549396753,-0.0072552035562694],[0.030003076419234,0.023924684152007,-0.04142751917243]],[[0.019183492287993,-0.029667479917407,0.01069531403482],[-0.076646871864796,-0.0044753537513316,-0.0075051155872643],[0.010850887745619,-0.014972937293351,0.027743063867092]],[[0.045458596199751,0.044755481183529,0.043375097215176],[0.038560576736927,0.038341261446476,-0.051083128899336],[0.0702049061656,0.087462395429611,0.010643871501088]],[[-0.044453401118517,-0.0021756032947451,-0.035678997635841],[-0.0093928258866072,-0.046541456133127,0.022314496338367],[-0.072297744452953,-0.048639267683029,-0.034550860524178]],[[0.025516772642732,-0.022226901724935,0.017053999006748],[0.041984297335148,-0.0029888874851167,0.049922943115234],[-0.0011814485769719,-0.0051475018262863,0.032409235835075]],[[-0.0098597435280681,0.060578256845474,-0.012438416481018],[0.098263755440712,-0.014888750389218,-0.050574719905853],[-0.0060462574474514,2.9832550353603e-05,0.016558995470405]],[[-0.03163943067193,-0.037454005330801,0.030771300196648],[-0.058510027825832,0.024032175540924,-0.017586570233107],[-0.010267844423652,0.11159794777632,-0.0090729556977749]],[[-0.040139466524124,-0.041164889931679,-0.0016893267165869],[-0.023039570078254,0.028280220925808,-0.061171647161245],[-0.064121447503567,-0.082770355045795,0.033671002835035]],[[0.028624080121517,0.069744817912579,-0.018170474097133],[0.0022506534587592,-0.033570609986782,0.003850962035358],[-0.063844628632069,-0.0037432021927088,-0.018595609813929]],[[0.065310001373291,0.05302008241415,-0.0013249891344458],[-0.022704700008035,0.0069683822803199,0.069122694432735],[0.047069795429707,-0.0041971770115197,-0.018317678943276]],[[-0.031476568430662,0.0042630918323994,0.021412434056401],[0.053754664957523,-0.0078114629723132,0.010318486019969],[0.027311462908983,-0.032118301838636,0.013396020978689]],[[0.010471057146788,0.071430414915085,-0.003628458827734],[0.037802066653967,0.050107222050428,-0.012718259356916],[0.036322455853224,-0.039190221577883,0.044982012361288]],[[0.046407628804445,-0.013117033988237,-0.0024473718367517],[0.084706880152225,0.060211434960365,-0.022529566660523],[0.074081853032112,-0.021837219595909,0.024322865530849]],[[-0.013803535141051,0.058048442006111,0.095926590263844],[0.0030509524513036,0.056402616202831,0.13316218554974],[-0.02114774659276,0.075831197202206,0.0013406074140221]],[[-0.0137999933213,0.0094421096146107,0.047448113560677],[-0.011224890127778,0.0088809635490179,0.015877367928624],[-0.016438446938992,0.041135665029287,-0.00046332780038938]],[[-0.0042133876122534,-0.019447684288025,0.010407170280814],[0.0048729092814028,0.0043933815322816,-0.064355798065662],[0.038683976978064,-0.042094599455595,0.014920583926141]]],[[[-0.009581015445292,0.028975296765566,0.022197561338544],[-0.022922001779079,-0.00089555070735514,0.089895069599152],[-0.0047755995765328,0.088018253445625,-0.016494169831276]],[[0.011969549581409,0.1165210083127,-0.053787268698215],[-0.0086366636678576,-0.014591170474887,0.023128654807806],[-0.0046764290891588,-0.0010955157922581,0.021051939576864]],[[-0.010644751600921,-0.034500759094954,0.035741314291954],[0.013716349378228,0.027220295742154,-0.019055061042309],[-0.013863754458725,-0.013427696190774,0.057648211717606]],[[0.04569985345006,0.0034966764505953,0.083088740706444],[0.010424067266285,-0.035899557173252,0.017973091453314],[-0.011788036674261,-0.0029148007743061,-0.0072798025794327]],[[-0.042508766055107,0.0065007796511054,0.02944921888411],[-0.11681167036295,0.0086824223399162,-0.021830677986145],[0.052108805626631,0.057987671345472,0.040036074817181]],[[0.018537331372499,0.045883473008871,0.087135672569275],[0.039047807455063,0.052616640925407,-0.0048037846572697],[-0.037530191242695,0.042440678924322,0.074096657335758]],[[-0.014737572520971,0.0084350435063243,0.058547370135784],[0.02275924384594,0.078374765813351,0.04247834533453],[0.14832165837288,-0.035121783614159,-0.059834230691195]],[[0.033703822642565,-0.021065002307296,-9.1503439762164e-05],[0.059812478721142,-0.033772245049477,0.067928783595562],[-0.003422130830586,-0.034793481230736,-0.020804014056921]],[[-0.051918532699347,0.080242842435837,0.024864863604307],[-0.063397325575352,0.04131979867816,0.029971463605762],[0.070982806384563,0.0010847959201783,0.091575287282467]],[[-0.019198335707188,0.1599172949791,-0.0051541225984693],[-0.017499219626188,0.059441853314638,0.043387275189161],[-0.0050329943187535,0.035584025084972,0.07311575114727]],[[0.066769428551197,0.042213290929794,0.013498778454959],[0.0076402551494539,-0.029111856594682,0.030096188187599],[-0.0017096191877499,0.03767254948616,0.09755253046751]],[[0.014716675505042,-0.024241810664535,-0.0082667507231236],[0.054575309157372,0.060121390968561,-0.0096713406965137],[-0.048535507172346,0.026237541809678,0.050445757806301]],[[0.050966683775187,0.031864523887634,-0.05240348353982],[0.021729430183768,0.019341606646776,-0.035113360732794],[0.061972446739674,0.017742400988936,0.010577859356999]],[[0.02329065836966,-0.040697153657675,0.06158959493041],[-0.077333375811577,0.03979305550456,-0.007626713719219],[0.063285782933235,0.016868114471436,-0.065093211829662]],[[0.09342797100544,-0.00080988416448236,-0.011311802081764],[0.085723839700222,0.13288977742195,0.046567648649216],[0.021779637783766,0.098974741995335,0.15081487596035]],[[-0.010262121446431,-0.074214614927769,0.0099668651819229],[-0.073561578989029,0.016052944585681,0.021268120035529],[-0.048066452145576,-0.0025726340245456,-0.079775966703892]],[[0.0025750750210136,-0.014957658946514,0.040680751204491],[0.033393517136574,0.04269515350461,0.064201518893242],[-0.035201203078032,0.0022723856382072,-0.0033174743875861]],[[-0.0062943687662482,0.021666299551725,-0.04397989064455],[-0.051115658134222,0.089915007352829,0.028235096484423],[-0.028999287635088,-0.040510401129723,-0.041019979864359]],[[-0.079010188579559,-0.020738303661346,0.070376247167587],[-0.020404832437634,-0.09609741717577,-0.013262304477394],[-0.0068119312636554,-0.018089221790433,0.024502541869879]],[[0.071341194212437,0.036625705659389,0.016325464472175],[0.0029239845462143,-0.076862283051014,-0.064124524593353],[0.10858000814915,-0.041308119893074,0.05608269199729]],[[0.027080783620477,0.050457868725061,-0.017304109409451],[0.091620936989784,0.038010057061911,-0.023642774671316],[-0.017038999125361,0.0016547847772017,0.078952372074127]],[[0.0090963253751397,-0.0073656062595546,0.047097455710173],[0.019051058217883,-0.026519667357206,0.030608724802732],[0.072626292705536,-0.11382516473532,-0.0013667026069015]],[[0.049742322415113,-0.064999729394913,0.050114419311285],[-0.13506111502647,-0.059861768037081,0.024052305147052],[-0.028698526322842,0.041321747004986,-0.058446954935789]],[[0.00064774765633047,-0.037843625992537,-0.00058611109852791],[-0.0030586863867939,0.0027929169591516,0.067824855446815],[-0.073969304561615,-0.013216413557529,-0.0095778284594417]],[[0.0066452189348638,0.034212756901979,0.035341303795576],[0.0080291051417589,-0.009990450926125,-0.025606321170926],[0.044021915644407,0.025291752070189,0.028270699083805]],[[0.036895047873259,0.01448714826256,0.0088091855868697],[0.017614444717765,-0.00054623029427603,-0.037423223257065],[0.031301181763411,0.032632388174534,-0.022496899589896]],[[0.065765835344791,0.054251033812761,-0.051509656012058],[0.021595580503345,0.0075143678113818,0.061884917318821],[0.019993191584945,0.016246154904366,0.033405013382435]],[[0.046806085854769,0.051850039511919,-0.003407992888242],[0.028875790536404,-0.08695112913847,0.004827078897506],[0.019506178796291,-0.0018103044712916,-0.0064176223240793]],[[0.0017966626910493,0.035152520984411,-0.016986457630992],[0.059904083609581,-0.037437494844198,0.041588362306356],[-0.063464589416981,0.0070618437603116,0.083126343786716]],[[0.011756723746657,0.016422213986516,0.0017701191827655],[-0.037897922098637,-0.03318240866065,0.06097324192524],[-0.029662514105439,0.028350535780191,0.0064701004885137]],[[0.01133802998811,-0.063947983086109,0.0291942730546],[0.049501266330481,-0.010512614622712,0.042529419064522],[0.10369270294905,-0.024832371622324,0.0018762740073726]],[[-0.027799554169178,-0.061704706400633,-0.010369511321187],[0.016314070671797,-0.061015550047159,0.00050064903916791],[0.014229349792004,0.060073256492615,-0.0052133528515697]],[[0.015024149790406,-0.03006536513567,0.02948871254921],[0.013626743108034,-0.051502645015717,-0.024284681305289],[0.08760441839695,0.052345830947161,-0.02949870750308]],[[-0.010861087590456,0.090657830238342,-0.0089483074843884],[0.053336601704359,0.0072734686546028,-0.012204920873046],[0.013970527797937,0.059496644884348,-0.027242684736848]],[[0.037222653627396,-0.069244749844074,0.043593797832727],[0.0014515992952511,0.11066525429487,0.055147811770439],[0.02877464145422,-0.020456833764911,0.021042125299573]],[[-0.028396304696798,-0.0015713889151812,-0.056117121130228],[0.01630499958992,-0.037719871848822,0.073496617376804],[-0.06231801584363,-0.001270490931347,-0.031766880303621]],[[-0.03938115760684,-0.055460318922997,0.0055914600379765],[-0.039062350988388,0.02463654242456,-0.048618085682392],[-0.022747842594981,0.023148505017161,-0.043959468603134]],[[0.016907386481762,0.013268073089421,0.023843070492148],[0.041651301085949,-0.0065235742367804,0.062284138053656],[-0.012650200165808,0.0047437655739486,0.029518688097596]],[[-0.001346506876871,0.00094213132979348,0.030323036015034],[0.049277819693089,-0.029020272195339,0.028824577108026],[0.019953472539783,0.076335735619068,-0.13566416501999]],[[-0.077643468976021,0.077948205173016,0.016032902523875],[0.0054869009181857,-0.00089723413111642,-0.073497861623764],[0.026643063873053,0.040278218686581,-0.020220533013344]],[[-0.0057236216962337,-0.023551912978292,0.01729629188776],[0.048386432230473,0.016215709969401,-0.023874690756202],[-0.045577678829432,0.0088451690971851,0.0392348729074]],[[-0.010748128406703,0.050498858094215,0.049194440245628],[0.043066121637821,0.040795180946589,-0.001213600859046],[-0.09172922372818,-0.0068922629579902,0.050310268998146]],[[-0.013070550747216,0.076352030038834,-0.00016532880545128],[0.011826591566205,0.060846406966448,0.031661938875914],[-0.045971542596817,0.0024500740692019,0.092419937252998]],[[0.0030622961930931,0.073692008852959,0.035198882222176],[-0.029314374551177,-0.04372438788414,-0.019250445067883],[-0.0023283956106752,0.049466617405415,0.030847381800413]],[[0.0760118663311,-0.026372602209449,0.063114628195763],[-0.049432385712862,0.054116893559694,-0.0063170231878757],[-0.063775762915611,0.029878601431847,0.01316133979708]],[[0.0097650578245521,-0.031048679724336,0.043275836855173],[0.018676551058888,-0.015407583676279,0.039371747523546],[0.030811542645097,0.072685703635216,0.026754159480333]],[[-0.03632140904665,0.03769551590085,-0.01332622487098],[0.011126972734928,0.0021634679287672,0.11455009877682],[0.022181708365679,-0.00038286179187708,0.041097018867731]],[[0.10040119290352,0.023054266348481,-0.016956921666861],[-0.04895805940032,0.020436516031623,0.054292466491461],[0.047264445573092,0.012635726481676,-0.018871502950788]],[[0.0092664510011673,0.030420692637563,-0.014323009178042],[-0.015077222138643,0.079646952450275,-0.0089531550183892],[-0.0095459073781967,0.01197549700737,0.077839940786362]],[[0.059329885989428,0.043653607368469,0.065198749303818],[-0.020935574546456,0.087480470538139,-0.013659435324371],[0.083236925303936,-0.028243647888303,0.025474628433585]],[[0.045611940324306,-0.017035119235516,-0.024704901501536],[-0.028169235214591,0.011087839491665,-0.11424250155687],[-0.012586171738803,0.091583512723446,0.081459388136864]],[[-0.010387796908617,0.023577205836773,-0.062966175377369],[0.011257329955697,0.056518875062466,0.01645533926785],[-0.012164080515504,-0.090803757309914,-0.039478320628405]],[[-0.036294389516115,0.045171983540058,0.0072182244621217],[-0.0018774901982397,-0.014294317923486,-0.026253892108798],[-0.013212610036135,0.028092639520764,0.035805016756058]],[[0.040845640003681,0.025916246697307,0.0018519178265706],[-0.04666568338871,0.02198670245707,0.042754095047712],[0.091835856437683,-0.028569463640451,0.071520201861858]],[[0.048434399068356,0.07055189460516,0.077361568808556],[-0.024117177352309,0.018457936123013,0.06157773733139],[-0.047720722854137,0.01806527748704,0.034106578677893]],[[-0.048942659050226,-0.08764224499464,-0.018975714221597],[0.01874765753746,-0.0072359060868621,0.061889681965113],[0.034229412674904,0.0029260842129588,-0.014325632713735]],[[-0.050456065684557,0.017366150394082,0.010500261560082],[-0.0084730489179492,0.042952943593264,-0.0014428813010454],[0.019334824755788,0.0085992030799389,0.019327664747834]],[[0.0494937710464,-0.017135290428996,0.10315561294556],[0.03099144808948,-0.0053982976824045,0.01759385317564],[0.075476266443729,0.087992079555988,-0.080170184373856]],[[-0.022482311353087,-0.0058873137459159,-0.00037726879236288],[0.10668006539345,-0.037553705275059,0.015390222892165],[0.063003018498421,-0.064438223838806,0.06943741440773]],[[0.031023927032948,0.0015249572461471,-0.0019641974940896],[0.054883748292923,-0.030530173331499,0.019542304798961],[-0.08087695389986,0.039032511413097,0.0050320401787758]],[[-0.014641265384853,-0.013672630302608,-0.014911143109202],[-0.0072678560391068,0.017633866518736,0.024283418431878],[-0.097141623497009,0.020357750356197,-0.031494405120611]],[[-0.019750380888581,-0.012075841426849,-0.026024952530861],[-0.057123780250549,0.0032651787623763,0.0051153972744942],[-0.068176463246346,-0.076024658977985,-0.033204056322575]],[[0.036012396216393,-0.027159404009581,0.09003870934248],[-0.050077516585588,0.015305403620005,-0.0045675430446863],[-0.0098142409697175,-0.017884653061628,0.018704768270254]],[[0.0037770613562316,-0.00039618939626962,0.064441204071045],[-0.023840568959713,-0.062439743429422,-0.0050212270580232],[0.023909831419587,-0.034589771181345,0.038842715322971]],[[-0.037578675895929,0.0052368575707078,-0.02719659730792],[0.002202681498602,-0.014464654028416,-0.0085099367424846],[0.012896671891212,0.0060623101890087,0.0022420815657824]],[[-0.034106757491827,-0.0038206591270864,0.016100663691759],[0.070594534277916,-0.033201657235622,-0.019563890993595],[-0.031735941767693,0.052071608603001,0.013304467312992]],[[0.069504827260971,-0.068848259747028,-0.01970505155623],[-0.032334819436073,-0.0049877148121595,-0.046707939356565],[0.034589342772961,0.025303529575467,0.0090922946110368]],[[0.029040783643723,0.024205390363932,-0.0025796678382903],[0.083387225866318,-6.8520232161973e-05,-0.015151926316321],[-0.0089468276128173,0.028925051912665,0.038695365190506]],[[-0.0017239924054593,-0.029417892917991,0.062184378504753],[-0.0024736400227994,0.094010747969151,0.013047693297267],[0.024675598368049,-0.022998359054327,-0.075172878801823]],[[-0.043399192392826,0.026613404974341,0.00093488249694929],[0.0083862505853176,0.0071590440347791,0.024171048775315],[0.0017262974288315,-0.013900341466069,0.066777601838112]],[[0.031695879995823,-0.010270869359374,0.032182987779379],[-0.026197049766779,-0.027394564822316,0.0037455493584275],[-0.011317325755954,0.028660139068961,-0.062161151319742]],[[0.045545294880867,-0.050369895994663,-0.078459680080414],[-0.026239603757858,0.0016686846502125,0.0114956041798],[0.060472663491964,0.041148819029331,0.023798644542694]],[[-0.0094595486298203,-0.031633526086807,0.079451322555542],[-0.076770655810833,0.034307528287172,0.04883337020874],[-0.069383129477501,0.0094869611784816,0.043055482208729]],[[-0.074882857501507,0.0057493853382766,-0.026823844760656],[0.044913787394762,-0.031260084360838,0.047404125332832],[0.031406711786985,0.024576498195529,-0.055225882679224]],[[-0.045766692608595,0.030808161944151,-0.022297728806734],[0.068284429609776,-0.03514151647687,-0.026467766612768],[-0.016965474933386,-0.019655298441648,0.086528338491917]],[[-0.10033601522446,0.024521220475435,0.022615795955062],[0.1075349599123,-0.082406289875507,-0.016190992668271],[0.014846890233457,0.0070416922681034,-0.064142882823944]],[[0.0066631752997637,-0.026438692584634,0.0037360892165452],[0.033513400703669,0.029913065955043,0.0096974289044738],[-0.045011334121227,0.075602896511555,0.016134304925799]],[[-0.024776555597782,0.019711215049028,0.020623967051506],[0.034762091934681,-0.013109724037349,-0.010376102291048],[0.045646835118532,0.045326165854931,-0.016447361558676]],[[0.0056265243329108,0.018975241109729,-0.012874192558229],[0.0187255628407,-0.021202247589827,0.053305391222239],[0.026757538318634,-0.04428144544363,-0.0076905796304345]],[[0.078101500868797,0.022103505209088,0.031179210171103],[0.018756359815598,0.079112961888313,0.02809988707304],[0.018482679501176,0.011926721781492,-0.01498759072274]],[[-0.0068651344627142,0.037876091897488,0.089476868510246],[-0.0070256739854813,0.052676614373922,-0.035230871289968],[0.095978088676929,0.0096726948395371,-0.034376427531242]],[[-0.036119606345892,0.011807000264525,0.028352919965982],[0.074390269815922,-0.090175591409206,0.053429495543242],[-0.0444480702281,0.015840051695704,-0.050447266548872]],[[-0.017858773469925,-0.075092755258083,-0.074449963867664],[0.028624163940549,-0.017113279551268,0.073936462402344],[-0.0099889673292637,-0.0082811694592237,0.018751529976726]],[[-0.0057719424366951,-0.0047112773172557,-0.075449854135513],[-0.069389492273331,0.00077520491322502,-0.032177958637476],[0.062646932899952,-0.00037585257086903,-0.020204829052091]],[[0.019525906071067,-0.034719619899988,0.073191314935684],[0.019251486286521,-0.026161024346948,0.046638291329145],[0.041844692081213,0.025244910269976,-0.022250175476074]],[[-0.022514875978231,-0.05887384340167,0.013387436047196],[-0.081649892032146,-0.11698151379824,-0.029010444879532],[-0.022029060870409,-0.041443280875683,0.026739906519651]],[[-0.010288185440004,0.1021229699254,0.023293137550354],[-0.077955685555935,0.026350414380431,-0.013267017900944],[-0.036879096180201,0.057226490229368,-0.023168319836259]],[[0.051169518381357,-0.053016506135464,0.089764781296253],[-0.0098361736163497,-0.009834036231041,-0.0085511785000563],[0.086539715528488,0.03294188156724,-0.050670336931944]],[[0.077672407031059,-0.066141285002232,0.059308290481567],[0.038157887756824,0.024306017905474,0.033911529928446],[-0.081748150289059,-0.012123253196478,0.094644896686077]],[[0.015699567273259,0.03420527279377,0.024288950487971],[0.00035770196700469,0.016338031738997,-0.0084460871294141],[-0.028927909210324,0.025324685499072,-0.0073010544292629]],[[0.05422580242157,0.10389414429665,0.055428639054298],[0.014578505419195,-0.0033762450329959,0.020705638453364],[0.041841078549623,-0.029654731974006,0.011190029792488]],[[0.038742747157812,0.085350558161736,0.01636097766459],[0.046173628419638,0.009048480540514,0.03741604462266],[-0.029667744413018,-0.015258017927408,0.084964215755463]],[[0.018388682976365,-0.08430439978838,0.049859780818224],[0.0051400195807219,0.063944637775421,-0.035538714379072],[0.021017970517278,0.0013633681228384,-0.10464022308588]],[[0.05410510674119,-0.016463357955217,0.0045890780165792],[-0.016962418332696,-0.020865054801106,0.024879952892661],[0.072272278368473,0.045849971473217,-0.056311685591936]],[[-0.034957084804773,-0.0012276879278943,-0.025705248117447],[0.055679176002741,0.083818264305592,-0.06328160315752],[0.0024395049549639,-0.015242434106767,0.065229304134846]],[[-0.085581555962563,-0.089781396090984,-0.04530305787921],[0.093359425663948,-0.012368974275887,0.04581218585372],[0.014261741191149,0.046930227428675,-0.010591777041554]],[[0.043356895446777,0.052303779870272,0.0010482216021046],[0.11404260993004,-0.012658877298236,0.059171229600906],[-0.047262713313103,-0.0030713258311152,-0.071209624409676]],[[0.0097203077748418,-0.0081974333152175,-0.023874772712588],[-0.023162772879004,0.011884461157024,-0.0023590079508722],[0.01134090218693,0.022389831021428,0.052346237003803]],[[0.0043412800878286,0.012075274251401,0.041184317320585],[-0.043711081147194,0.018210364505649,-0.022113224491477],[0.043061312288046,0.0056059639900923,0.018404822796583]],[[0.083594046533108,0.10344534367323,-0.0058612274006009],[0.009028940461576,-0.013869417831302,0.011424667201936],[0.047480802983046,-0.010901410132647,0.037411399185658]],[[-0.06778921186924,0.011438247747719,0.053331393748522],[-0.061297282576561,0.022807473316789,0.089237421751022],[0.059353448450565,-0.02683424577117,-0.020432461053133]],[[0.058010444045067,0.049185708165169,0.044880408793688],[0.067464388906956,-0.0027537394780666,0.09787617623806],[0.052488818764687,0.062536925077438,0.04180695861578]],[[-0.016509544104338,0.04040227457881,0.071825921535492],[0.056135486811399,0.030733251944184,0.041581556200981],[0.13281714916229,0.02685428597033,0.0039655310101807]],[[-0.0058075953274965,0.012593697756529,0.011612328700721],[-0.0097252121195197,-0.088324368000031,-0.026016725227237],[-0.049681454896927,0.017834678292274,-0.0070319664664567]],[[-0.058344703167677,0.060994192957878,0.02542170509696],[-0.0035846158862114,0.080534905195236,-0.050505150109529],[-0.0033620805479586,-0.041628580540419,0.0074633723124862]],[[0.0096122641116381,-0.031436391174793,0.069673106074333],[0.0057310927659273,0.00035960419336334,-0.0063203256577253],[-0.07957049459219,0.059676557779312,0.064485736191273]],[[0.04858448728919,0.084489107131958,-0.043955892324448],[-0.035221289843321,0.024837547913194,-0.047821078449488],[0.078727290034294,0.057933632284403,0.026544898748398]],[[0.019247462972999,-0.014076377265155,0.061267074197531],[0.0089286146685481,-0.029377540573478,0.063429020345211],[-0.040175266563892,-0.068313404917717,-0.0088035194203258]],[[0.092832371592522,-0.062187727540731,-0.043108906596899],[0.024530908092856,0.12874935567379,-0.040211733430624],[0.024195775389671,-0.018694086000323,0.07094819098711]],[[-0.075942657887936,-0.011879423633218,0.0060454392805696],[-0.040238045156002,0.027928223833442,0.0042485911399126],[-0.030756924301386,-0.062686257064342,0.020764062181115]],[[0.043348755687475,-0.040242683142424,-0.027427306398749],[0.034791421145201,-0.030027249827981,-0.042692523449659],[-0.04419406875968,0.071753084659576,0.016559036448598]],[[-0.032794028520584,-0.039147667586803,-0.13651297986507],[0.0046706884168088,0.0077300644479692,-0.0025466324295849],[-0.0048951026983559,0.061188410967588,-0.070479363203049]],[[-0.091857634484768,0.037419386208057,0.027526175603271],[0.0085226492956281,0.013904731720686,0.0085628433153033],[-0.052190270274878,-0.030419658869505,0.028222355991602]],[[0.023067669942975,-0.018859446048737,0.056645452976227],[0.03463014960289,-0.020517725497484,-0.039770383387804],[0.065694861114025,0.031765904277563,0.042046446353197]],[[-0.0097192181274295,-0.0020908962469548,-0.061035100370646],[0.0097156651318073,-0.088408634066582,-0.030375840142369],[0.022629015147686,-0.015716481953859,0.0048182238824666]],[[0.044290404766798,-0.083166211843491,-0.0044104689732194],[0.038567610085011,0.031544886529446,-0.07776453346014],[-0.079501032829285,-0.0063063013367355,-0.017575198784471]],[[0.0098354453220963,0.028101325035095,0.041805863380432],[-0.0021470568608493,0.00072826881660149,0.10339926183224],[0.0056252162903547,0.039945535361767,0.025210538879037]],[[-0.019938772544265,0.0094667132943869,-0.025731828063726],[-0.048414640128613,-0.0024755955673754,0.0058647799305618],[0.00021627843671013,-0.02221411652863,0.029220631346107]],[[-0.05094775930047,-0.025188634172082,0.022174816578627],[-0.023716874420643,-0.053786795586348,-0.010245920158923],[-0.043600499629974,-0.01692364551127,-0.022263007238507]],[[-0.029229868203402,-0.0049725901335478,-0.033601768314838],[-0.023274086415768,-0.029929224401712,0.00466817477718],[-0.0057743866927922,0.013437452726066,-0.052978627383709]],[[0.055619426071644,0.02820854075253,0.022911820560694],[0.0048707593232393,0.091542571783066,-0.0058498256839812],[-0.096406206488609,0.0032341801561415,0.01420409604907]],[[-0.0090552615001798,-0.014023952186108,0.015797276049852],[0.025730414316058,0.0098432619124651,-0.013795698061585],[0.002687665168196,-0.026293965056539,0.035899762064219]],[[0.012466882355511,-0.040189698338509,-0.0023823778610677],[-0.031788095831871,-0.026711050421,0.039090622216463],[-0.0018638119800016,0.056388806551695,-0.078871421515942]],[[-0.045327719300985,-0.035322945564985,0.015359977260232],[0.021356292068958,-0.046351172029972,0.027326205745339],[0.0063181887380779,0.020832037553191,-0.037336125969887]],[[0.031528748571873,0.041027378290892,0.023997856304049],[-0.016411542892456,-0.0091076400130987,0.00065945897949859],[-0.022824589163065,-0.058416701853275,0.022825932130218]],[[0.019531676545739,-0.0028625128325075,0.027661696076393],[-0.047674302011728,0.037415757775307,-0.019949287176132],[-0.057380050420761,-0.0089429831132293,0.025074919685721]],[[0.027470540255308,0.021140109747648,0.066340819001198],[-0.034072052687407,-0.017294092103839,0.033789128065109],[0.040345095098019,0.014476308599114,-0.04985248669982]],[[-0.028119072318077,0.0078348545357585,-0.0076825232245028],[-0.00701649999246,0.017008380964398,0.023923708125949],[-0.0027627381496131,-0.07151921838522,0.0010390465613455]]],[[[-0.14823178946972,-0.041257180273533,0.051509093493223],[0.068513706326485,0.0026249247603118,0.027510970830917],[0.071720004081726,-0.0068613430485129,0.088096141815186]],[[-0.061299595981836,-0.037508394569159,-0.012011002749205],[-0.059340588748455,0.045431405305862,0.024768732488155],[-0.10114167630672,0.011617818847299,-0.041760463267565]],[[0.041127264499664,0.024705046787858,-0.039731562137604],[0.089413776993752,-0.061016265302896,-0.055475804954767],[0.0054633906111121,0.087122924625874,0.0099282767623663]],[[0.034771271049976,-0.12276794016361,0.10743425786495],[0.0082210898399353,0.040241777896881,-0.069142878055573],[-0.0017640192527324,-0.0068196919746697,0.0024194803554565]],[[0.030916703864932,-0.066569522023201,0.11732315272093],[0.053813651204109,0.024406187236309,0.060425743460655],[-0.030079638585448,-0.069017961621284,-0.014594743959606]],[[0.039973266422749,-0.020059870555997,-0.096694566309452],[-0.0063565596938133,0.11707580834627,-0.018195981159806],[-0.024742046371102,0.050561591982841,-0.025074947625399]],[[0.045767243951559,0.0074973166920245,0.060075633227825],[-0.087292276322842,0.050734929740429,0.032421942800283],[-0.10203290730715,0.084721423685551,-0.058189585804939]],[[-0.00028476759325713,0.014294399879873,0.096750572323799],[0.015479553490877,0.069947861135006,-0.0078282123431563],[1.928536221385e-06,-0.013391667976975,-0.060049410909414]],[[0.0088835163041949,0.020471015945077,0.15954498946667],[-0.048702448606491,0.021223712712526,-0.017963413149118],[0.02785692922771,-0.12975753843784,0.052926648408175]],[[0.16580545902252,-0.033285852521658,0.047452971339226],[0.18548195064068,-0.13382560014725,-0.13535808026791],[0.055953491479158,-0.099527984857559,0.04094110429287]],[[0.054832573980093,0.068772047758102,0.16817171871662],[0.07557874917984,0.021878659725189,0.020339388400316],[-0.078031092882156,-0.10402402281761,-0.12592878937721]],[[0.099528104066849,-0.17331020534039,0.019373789429665],[-0.036561116576195,0.081186413764954,0.054215658456087],[0.018379434943199,0.020693771541119,-0.046078126877546]],[[-0.061317846179008,-0.038517504930496,-0.13779650628567],[-0.076583817601204,0.0019819696899503,0.054494436830282],[-0.026236055418849,0.02620810456574,0.061299312859774]],[[-0.0034993859007955,0.11724152415991,-0.036459535360336],[0.040793962776661,-0.01267849188298,0.0034377130214125],[-0.023703880608082,-0.079829394817352,-0.043194081634283]],[[-0.033041466027498,0.12159214168787,0.08949302136898],[-0.10561868548393,0.02483749575913,-0.015403511933982],[-0.1008510068059,-0.012363095767796,0.11107338219881]],[[-0.0047535374760628,-0.055942106992006,-0.0023836991749704],[-0.12191211432219,0.039815444499254,-0.09544275701046],[0.03313184902072,-0.34755611419678,-0.0080545842647552]],[[-0.13924124836922,-0.024287866428494,0.059900861233473],[-0.01211510039866,0.15321636199951,-0.086812101304531],[0.12657730281353,0.049469396471977,-0.0087015815079212]],[[0.014473441056907,0.1252454072237,0.12185905873775],[-0.1061597764492,-0.0040559796616435,0.052261855453253],[-0.2626366019249,-0.076241679489613,-0.057878792285919]],[[0.085005097091198,-0.016315823420882,-0.053144112229347],[-0.028317315503955,0.016442546620965,0.10209117084742],[-0.049580942839384,-0.026793455705047,-0.11136498302221]],[[-0.02811205945909,-0.058071549981833,-0.019555585458875],[0.033981174230576,0.075709462165833,0.00060141005087644],[0.13412255048752,0.11065129190683,-0.0040083723142743]],[[0.038087159395218,-0.12807609140873,-0.013507568277419],[-0.16133347153664,-0.084774665534496,0.12254803627729],[0.048012502491474,0.023388806730509,0.022507030516863]],[[0.00071222498081625,0.043434981256723,0.0025787570048124],[0.02414295822382,0.1510007828474,0.0029090717434883],[0.013175628148019,-0.087946675717831,-0.10653890669346]],[[-0.024925770238042,-0.0042164386250079,0.11451497673988],[0.099059849977493,-0.0024945437908173,0.042587898671627],[0.048357561230659,-0.090360701084137,-0.00077490857802331]],[[-0.036125857383013,0.021171055734158,0.025767676532269],[-0.011166641488671,0.096609279513359,0.068977311253548],[0.044089622795582,-0.1058040112257,-0.042393926531076]],[[-0.029010031372309,-0.11576912552118,-0.36846035718918],[0.036576814949512,-0.030215427279472,-0.29318523406982],[-0.32579219341278,-0.19211181998253,0.053797788918018]],[[-0.054930340498686,-0.0040601342916489,0.0011557334801182],[0.017775721848011,0.074421726167202,0.01222475245595],[0.035707272589207,-0.095163151621819,-0.16065362095833]],[[0.062696851789951,0.042590029537678,0.04407063126564],[-0.046525161713362,-0.03594084829092,0.067796885967255],[-0.12852440774441,-0.074566915631294,0.063014134764671]],[[0.031043788418174,0.053238190710545,0.018202140927315],[-0.0029831002466381,0.11334435641766,-0.078348010778427],[0.0077004828490317,-0.043033577501774,-0.080011025071144]],[[0.082477502524853,0.093499258160591,0.11255265027285],[0.077892497181892,-0.013523202389479,0.018363023176789],[-0.10812698304653,-0.058216482400894,0.014194623567164]],[[0.021934550255537,0.013424724340439,0.040907643735409],[-0.02629154920578,-0.05629774928093,0.089648626744747],[-0.14246314764023,0.030637886375189,0.14315770566463]],[[-0.075831018388271,0.065181098878384,0.069426760077477],[0.029487947002053,-0.051052868366241,-0.042848456650972],[-0.0061291954480112,-0.0041493894532323,-0.04011233523488]],[[-0.08300755918026,-0.076467975974083,-0.060794524848461],[0.0035628054756671,0.11154063045979,-0.16539171338081],[0.086402297019958,0.008772605098784,-0.1118024289608]],[[-0.021663824096322,0.01847156509757,0.017887432128191],[0.019287874922156,-0.010650955140591,-0.03022457100451],[-0.12341725081205,-0.060038391500711,0.063214644789696]],[[-0.12983159720898,-0.028681684285402,0.013967339880764],[0.090236529707909,-0.10952490568161,0.014593786559999],[0.0086744446307421,0.01281763240695,0.11905516684055]],[[-0.053609628230333,0.0023888535797596,0.0497264303267],[0.10404346138239,-0.013490565121174,-0.10093755275011],[0.097020447254181,0.10907215625048,-0.15907314419746]],[[0.024282736703753,-0.048632264137268,-0.093453541398048],[0.021544490009546,0.0072587751783431,-0.02270501293242],[-0.15510945022106,0.013333703391254,0.026435242965817]],[[0.019476318731904,0.0353126488626,-0.067444078624249],[-0.13952255249023,-0.15004029870033,0.021987244486809],[0.094106622040272,0.10541269183159,0.023363891988993]],[[0.086049064993858,-0.0097015872597694,0.069743908941746],[-0.047690462321043,-0.09090381115675,0.017116574570537],[0.044207353144884,-0.061579536646605,-0.033942721784115]],[[0.074856244027615,0.078307509422302,0.011567913927138],[0.017792243510485,-0.0092548998072743,-0.049638766795397],[-0.097220949828625,-0.22267653048038,0.11126279085875]],[[-0.0087709501385689,-0.070705994963646,0.0086065959185362],[-0.070726275444031,0.11213168501854,-0.033605370670557],[-0.019492786377668,0.072114177048206,-0.02428855933249]],[[-0.10282707214355,-0.019148716703057,-0.059794593602419],[0.085778616368771,-0.043606251478195,-0.088858067989349],[0.11264309287071,0.13063327968121,-0.18562713265419]],[[0.0014583998126909,-0.0062532718293369,0.040036167949438],[0.10163922607899,0.0051293089054525,-0.052366342395544],[-0.03437427431345,-0.025960614904761,0.037195306271315]],[[0.062954746186733,0.13116851449013,0.020407618954778],[-0.12021812051535,0.13141484558582,0.0089651830494404],[-0.13897705078125,0.013838144950569,-0.028081141412258]],[[-0.087284490466118,0.02021661773324,0.010899706743658],[-0.10834744572639,0.065406620502472,0.068471968173981],[-0.0093231238424778,-0.01287698559463,0.050735130906105]],[[-0.18283566832542,0.047309331595898,0.077379874885082],[-0.075096942484379,0.12554045021534,0.071927458047867],[-0.08601838350296,0.052614606916904,0.046203959733248]],[[-0.08529245108366,0.014106533490121,-0.079946957528591],[0.028347192332149,0.0086614890024066,-0.018674591556191],[0.21921546757221,0.078867420554161,-0.058696079999208]],[[0.015361010096967,-0.098294980823994,0.049177497625351],[0.094202183187008,-0.0064588012173772,-0.1352451890707],[0.063366420567036,-0.037475105375051,0.09237227588892]],[[0.11439220607281,-0.158551171422,0.096993520855904],[-0.13964022696018,0.10917020589113,-0.055778205394745],[0.02444775775075,0.0079462947323918,0.010422209277749]],[[0.00756895262748,0.05228266865015,0.093570992350578],[0.073151163756847,-0.065517470240593,0.0092770922929049],[-0.0012682589003816,-0.021573290228844,0.04745664075017]],[[-0.054386131465435,0.04720052704215,0.047445062547922],[0.038584098219872,-0.094716593623161,0.077570155262947],[0.091127797961235,-0.019084449857473,-0.0033504611346871]],[[-0.010648011229932,-0.097401551902294,-0.11367796361446],[0.015983520075679,0.045241430401802,0.015360076911747],[-0.0085868956521153,-0.10271363705397,-0.012730982154608]],[[-0.089068002998829,0.049428451806307,0.21033962070942],[0.022900095209479,0.16288538277149,-0.011523556895554],[-0.13930889964104,-0.13626980781555,-0.080586388707161]],[[-0.055380176752806,-0.026295365765691,-0.15425273776054],[-0.099609896540642,0.039825212210417,-0.026361281052232],[0.015871582552791,0.060230772942305,-0.045514367520809]],[[0.097485788166523,0.14017049968243,0.15064199268818],[0.0436607375741,-0.067055888473988,-0.050822231918573],[-0.087240651249886,-0.01814747788012,0.068906269967556]],[[0.034499265253544,0.030261427164078,0.035792905837297],[-0.04072330519557,0.074192322790623,-0.015705976635218],[-0.083955556154251,-0.063343398272991,0.071598634123802]],[[-0.062200672924519,-0.054628103971481,0.080588109791279],[-0.075635939836502,-0.034160986542702,-0.060932084918022],[-0.037903018295765,-0.017011769115925,-0.013672968372703]],[[-0.034792829304934,-0.015804449096322,0.073096662759781],[-0.079630695283413,0.018077766522765,-0.018349714577198],[-0.085568435490131,-0.0097305979579687,-0.0047970432788134]],[[0.022250700742006,-0.019305849447846,-0.019892746582627],[-0.052259527146816,0.075213387608528,-0.029715236276388],[-0.056383073329926,0.098954387009144,0.017597816884518]],[[-0.061363946646452,-0.22223776578903,-0.0050334469415247],[0.040428839623928,0.021966654807329,-2.7402897103457e-05],[0.0033606579527259,0.064129821956158,-0.023511247709394]],[[-0.005197437480092,0.12638510763645,-0.030976260080934],[-0.076986774802208,0.0029348633252084,-0.0065163159742951],[0.018950719386339,-0.065426133573055,0.15905517339706]],[[-0.040936727076769,0.080544129014015,-0.00096803647466004],[-0.13064582645893,-0.12577390670776,0.037616763263941],[-0.044777013361454,0.066009066998959,0.024779319763184]],[[-0.028578655794263,0.02286789752543,0.036435171961784],[0.076122164726257,-0.010415297932923,-0.050389997661114],[0.0056016454473138,-0.10501916706562,-0.074043832719326]],[[-0.045239582657814,-0.063691169023514,-0.06379334628582],[-0.041373543441296,-0.071568205952644,-0.076930172741413],[-0.011704008094966,0.06721319258213,0.020722867920995]],[[0.063586756587029,-0.081874929368496,-0.045704614371061],[0.067471258342266,0.057813487946987,0.031416408717632],[0.22583658993244,0.02464373037219,0.024320058524609]],[[-0.096206516027451,0.016513340175152,-0.12845243513584],[-0.019747899845243,-0.009438319131732,0.049750849604607],[0.021658496931195,0.093813188374043,0.12075562775135]],[[-0.019000396132469,0.032046459615231,-0.0056914230808616],[-0.037123195827007,-0.10770857334137,0.093059286475182],[-0.036278069019318,-0.097050577402115,0.054664716124535]],[[0.11550194770098,0.021917568519711,0.00091750989668071],[0.1077237278223,-0.028795797377825,0.018468532711267],[0.030461320653558,-0.039288830012083,-0.0588931851089]],[[-0.000264427770162,0.031774137169123,-0.057891480624676],[-0.10348239541054,0.15381240844727,-0.061186660081148],[0.082387112081051,-0.034459512680769,-0.14609840512276]],[[0.12272591888905,-0.0032629109919071,-0.012150624766946],[0.0068218726664782,-0.073144122958183,-0.082234002649784],[-0.14276140928268,-0.018084213137627,0.0081554492935538]],[[0.096505209803581,0.025940263643861,0.12116223573685],[-0.0149443782866,0.07303224503994,0.011144676245749],[0.054749377071857,-0.13533668220043,0.11989776790142]],[[-0.088884502649307,0.037951525300741,-0.10153921693563],[0.091718971729279,-0.011581200174987,-0.028126642107964],[0.1500590890646,0.084528870880604,0.00090243149315938]],[[-0.012420690618455,0.081727407872677,0.12276954203844],[0.033592153340578,0.0061320839449763,-0.023761926218867],[0.040290001779795,0.014239481650293,0.030862826853991]],[[0.035505570471287,-0.056393980979919,-0.012333530932665],[0.0078767649829388,-0.23468114435673,-0.020310072228312],[-0.021682100370526,-0.037297435104847,-0.001741174608469]],[[-0.039612825959921,-0.04999753087759,0.029970983043313],[-0.01843979395926,0.066418722271919,0.058721147477627],[-0.035738930106163,0.073816619813442,-0.15494959056377]],[[-0.031149458140135,0.0098809562623501,-0.11788721382618],[0.066098138689995,0.066234104335308,0.076257951557636],[0.1011201813817,0.0031088865362108,0.066052883863449]],[[0.05801972001791,-0.056013185530901,-0.058193542063236],[0.12446470558643,0.058457508683205,-0.095885798335075],[0.20583741366863,0.11003618687391,-0.078686460852623]],[[0.062194909900427,-0.0059562441892922,-0.15591199696064],[0.038512643426657,-0.0076373624615371,-0.099214807152748],[0.11309497058392,0.066388130187988,0.050180479884148]],[[0.10187789052725,0.021901180967689,0.036785699427128],[0.040985677391291,-0.037839464843273,0.043148126453161],[0.028628885746002,0.08479705452919,-0.11212068796158]],[[-0.10699435323477,-0.051754131913185,0.065328098833561],[0.049863673746586,-0.071016013622284,0.045167900621891],[-0.098601207137108,0.067619696259499,0.0010276178363711]],[[0.090174973011017,0.064862988889217,-0.0014568131882697],[-0.040673911571503,-0.039497751742601,-0.018319848924875],[0.010497451759875,0.01427811011672,-0.12665915489197]],[[-0.053246553987265,-0.015232861042023,-0.033597439527512],[0.010526038706303,-0.026539370417595,-0.058754317462444],[0.024445667862892,0.080750606954098,-0.094329655170441]],[[-0.004212205298245,0.1864557415247,0.088618226349354],[-0.015586988069117,-0.01131787057966,-0.0021259321365505],[-0.086281687021255,-0.003192390082404,-0.05723250284791]],[[-0.20640486478806,0.085096932947636,-0.001374228973873],[0.0600147806108,0.010455618612468,-0.091241590678692],[0.030523609369993,0.11489887535572,-0.14954209327698]],[[0.015241329558194,-0.00929204095155,0.065839782357216],[0.021695615723729,0.053472548723221,-0.036223016679287],[-0.084393858909607,0.061725616455078,0.045453280210495]],[[0.072172425687313,-0.01121969986707,-0.063484355807304],[0.056253984570503,-0.068665407598019,0.023935776203871],[0.022091846913099,-0.034257829189301,0.0033461819402874]],[[0.0086600994691253,-0.065544553101063,-0.151362657547],[0.053313553333282,0.026019120588899,0.14092412590981],[-0.069371119141579,0.034424334764481,0.082593619823456]],[[-0.076488986611366,0.051189012825489,-0.0783756300807],[0.055703613907099,-0.022608682513237,-0.0045889867469668],[-0.005896080750972,0.045384552329779,0.037914410233498]],[[0.0044078454375267,-0.038139130920172,-0.0156758017838],[0.15175928175449,-0.051518380641937,0.032221879810095],[-0.061792079359293,0.019244642928243,-0.072264976799488]],[[-0.0043146652169526,0.014077244326472,-0.17954039573669],[0.0042506661266088,0.022977419197559,-0.0017883379478008],[0.12524862587452,-0.12373001128435,-0.03257704153657]],[[0.034677807241678,0.016673980280757,0.011973664164543],[0.065950408577919,0.0071826693601906,-0.017705224454403],[-0.063525281846523,-0.067850992083549,0.014503100886941]],[[0.030942602083087,0.061797823756933,0.086530074477196],[0.016465228050947,0.01441946811974,0.042464330792427],[0.041609320789576,-0.036608222872019,-0.071320883929729]],[[-0.0072233923710883,-0.051796995103359,0.087130084633827],[-0.049313101917505,-0.0072590708732605,0.020493222400546],[-0.093903847038746,0.018456760793924,0.10109977424145]],[[0.042985040694475,0.065985567867756,-0.0320193618536],[-0.11844943463802,-0.13790979981422,0.062426298856735],[-0.10999833792448,0.034776091575623,0.067333951592445]],[[-0.077867470681667,-0.22215795516968,-0.0803282558918],[0.02530549839139,-0.017662378028035,0.02125614322722],[0.040572866797447,0.021805360913277,-0.039652485400438]],[[0.0067709488794208,0.050454054027796,0.064159251749516],[-0.067460738122463,0.045484878122807,-0.0096144462004304],[-0.11993871629238,0.18891082704067,-0.016522550955415]],[[-0.093551345169544,0.046446356922388,0.12387148290873],[0.0054465141147375,-0.026503328233957,-0.016938151791692],[-0.096286714076996,0.037858471274376,0.052161309868097]],[[0.068384870886803,0.03930352628231,-0.03725566342473],[0.10834774374962,-0.070111848413944,0.036235231906176],[0.06837721914053,0.078245006501675,-0.064553871750832]],[[-0.12402825802565,-0.037937480956316,0.060464184731245],[-0.069655165076256,0.090803846716881,0.062266133725643],[0.043449819087982,0.15301148593426,0.095769621431828]],[[0.067091755568981,0.066355004906654,0.0010331076337025],[0.0047348327934742,-0.010274325497448,-0.053502663969994],[-0.10098417103291,-0.10881899297237,-0.072093836963177]],[[0.079789072275162,0.058395501226187,-0.041731230914593],[0.013067110441625,-0.021221309900284,-0.082872197031975],[-0.028763247653842,-0.058624994009733,0.085219271481037]],[[-0.040546655654907,0.019510935992002,0.04033786803484],[-0.0043563526123762,-0.0015937248244882,0.067543253302574],[-0.044519070535898,0.035836886614561,-0.065989166498184]],[[0.063633687794209,0.025073386728764,-0.044045507907867],[0.042146850377321,0.12244818359613,-0.034508168697357],[0.076347097754478,0.054661642760038,0.03496565297246]],[[0.042070962488651,-0.052981503307819,0.075672283768654],[-0.028650548309088,-0.086969986557961,0.14510910212994],[0.084801241755486,-0.055898692458868,-0.045600265264511]],[[-0.10361765325069,-0.037694104015827,-0.050974927842617],[0.027225233614445,0.0052190069109201,0.11224072426558],[0.062599077820778,0.052218969911337,0.077027358114719]],[[-0.11063221096992,-0.078618422150612,0.002101186895743],[0.0091641489416361,-0.090107068419456,0.20071782171726],[-0.05064183473587,0.14354483783245,0.060105539858341]],[[-0.096126243472099,-0.063265420496464,0.013128341175616],[-0.021843897178769,-0.053416702896357,-0.088312543928623],[0.057046890258789,0.089128464460373,0.17224103212357]],[[0.030603820458055,0.043584898114204,0.023581713438034],[0.031704094260931,-0.027608646079898,0.031180277466774],[0.042417217046022,-0.0136339366436,0.020374555140734]],[[-0.049272857606411,-0.065800808370113,-0.091125272214413],[-0.03329112008214,0.095835596323013,-0.025908973067999],[0.12868294119835,0.061513222754002,0.0044492701999843]],[[-0.026492390781641,-0.080194607377052,-0.0069746375083923],[-0.073545731604099,0.094891011714935,0.14205455780029],[0.0051616257987916,0.023471148684621,0.084842875599861]],[[-0.022655338048935,0.0030747861601412,-0.027556059882045],[-0.015309018082917,0.062078487128019,-0.017855742946267],[0.01302766893059,0.041109036654234,-0.010897984728217]],[[0.045163210481405,0.012256242334843,-0.035221662372351],[-0.035286404192448,-0.15461042523384,0.040216781198978],[0.023731810972095,-0.010748715139925,0.005168229341507]],[[-0.047244686633348,-0.010102517902851,0.0025508489925414],[0.021297410130501,-0.073926448822021,-0.024837344884872],[0.064795359969139,0.057822324335575,0.065730229020119]],[[0.036378186196089,-0.090371452271938,0.09769257158041],[0.10529500246048,0.018767749890685,0.0088654831051826],[-0.0034476011060178,-0.010850640945137,-0.028005879372358]],[[-0.00066045939456671,0.0056888191029429,0.061069089919329],[-0.010901302099228,0.05719855800271,-0.067659862339497],[-0.011795923113823,-0.070158161222935,0.0077217859216034]],[[-0.03786489367485,0.0083087058737874,-0.088475190103054],[0.094211474061012,-0.0073903468437493,-0.051869098097086],[-0.0052754525095224,0.098433248698711,0.08828067779541]],[[0.050588361918926,0.10573527961969,-0.095290534198284],[-0.054395645856857,0.070578992366791,-0.018992884084582],[0.12370390444994,-0.089191488921642,-0.073759563267231]],[[0.067755401134491,-0.044523704797029,0.044476751238108],[-0.10313455760479,-0.013361567631364,0.095568537712097],[-0.0726632848382,0.058408968150616,0.11250138282776]],[[-0.047364227473736,0.0016804039478302,0.11309564858675],[-0.034018088132143,-0.092390298843384,-0.00090854213340208],[0.083867266774178,-0.0088849300518632,0.026062585413456]],[[-0.0067691025324166,-0.026551941409707,0.034854166209698],[-0.060098752379417,-0.0056261657737195,-0.078053317964077],[-0.09361644089222,0.11257707327604,0.091491810977459]],[[0.096609085798264,-0.17781065404415,-0.042158976197243],[-0.012947504408658,-0.052498996257782,-0.009845620021224],[0.057474318891764,0.022370951250196,-0.053733661770821]],[[0.094819091260433,-0.009663856588304,0.092109151184559],[-0.028094822540879,0.1039436981082,0.036019761115313],[-0.028206245973706,-0.049252387136221,-0.10383222252131]],[[0.026854507625103,0.050548683851957,0.039750307798386],[0.11365120857954,-0.041688669472933,0.092604741454124],[0.018757889047265,0.012374171987176,-0.09600942581892]],[[-0.10855569690466,0.030994204804301,-0.16187331080437],[-0.039465576410294,-0.18361876904964,0.020871672779322],[0.1631076335907,-0.015808036550879,0.064773865044117]],[[-0.1226242929697,0.069902487099171,-0.047995489090681],[-0.072424069046974,-0.15042820572853,0.21237124502659],[-0.14202542603016,-0.019355459138751,-0.010241966694593]],[[-0.046105075627565,0.067892841994762,-0.08031589537859],[0.0079923328012228,0.051086280494928,-0.041428554803133],[0.017403742298484,-0.10593765974045,0.040740098804235]],[[0.03835367411375,0.010857262648642,0.14241616427898],[-0.036476694047451,0.021395092830062,-0.030645160004497],[-0.050456311553717,0.035998534411192,-0.04265783727169]],[[-0.00022690033074468,0.18036133050919,-0.05756875872612],[0.019101923331618,-0.002334583317861,0.016285419464111],[-0.0086825471371412,-0.12572705745697,0.054280441254377]],[[0.033708453178406,0.019440613687038,-0.09446494281292],[0.11215826869011,-0.23182415962219,-0.034015469253063],[0.0087249102070928,-0.10034392029047,-0.053671553730965]]],[[[0.026183918118477,-0.071552872657776,-0.047853093594313],[0.087378166615963,0.04563869163394,-0.024311510846019],[-0.042430315166712,-0.0096910456195474,-0.04319516196847]],[[0.014337009750307,0.042406547814608,-0.009662127122283],[-0.024731351062655,-0.014291527681053,0.040800988674164],[0.038897328078747,-0.039831798523664,0.054626554250717]],[[0.042720749974251,-0.013214248232543,-0.018077675253153],[0.066690020263195,0.011844393797219,-0.053347337990999],[0.032695628702641,-0.02854784950614,-0.074187561869621]],[[0.016193171963096,0.05231861025095,0.0087078511714935],[0.026385746896267,-0.040973640978336,0.12554307281971],[-0.063363693654537,-0.03675114735961,0.045873675495386]],[[0.039783518761396,-0.020301902666688,0.018360095098615],[-0.010044460184872,0.019646150991321,-0.16501502692699],[0.01289942394942,0.042261373251677,-0.02614039927721]],[[-0.019509207457304,0.024937374517322,0.0068876105360687],[0.025908203795552,-0.012323059141636,0.088116742670536],[0.035018879920244,0.029474925249815,0.019715406000614]],[[0.067015260457993,0.030593443661928,0.04427694529295],[-0.12368180602789,0.01786645501852,0.010591180063784],[0.0012879131827503,0.059351768344641,0.078184403479099]],[[-0.010129068978131,0.076810218393803,-0.0078833494335413],[0.0024662318173796,0.010393220931292,0.034212317317724],[0.014148379676044,-0.041160255670547,0.046586655080318]],[[-0.033168181777,-0.088026039302349,0.036640338599682],[0.054685171693563,0.026793016120791,0.059160552918911],[-0.029438944533467,0.042586419731379,-0.063063308596611]],[[-0.015861246734858,0.21308454871178,0.052557166665792],[-0.049534674733877,0.060356914997101,-0.10771571844816],[0.11249855905771,0.069414235651493,0.080985762178898]],[[-0.034934692084789,-0.054071567952633,-0.034756820648909],[0.043043319135904,0.036918491125107,-0.016433274373412],[0.0048527759499848,-0.014698051847517,-0.059111800044775]],[[0.05265311524272,0.046888366341591,0.041481636464596],[-0.011468529701233,0.076243802905083,0.048175740987062],[0.018736843019724,-0.067903362214565,0.011199787259102]],[[0.051685750484467,-0.055129643529654,0.053923565894365],[0.035817872732878,-0.027289822697639,-0.0068716835230589],[0.057818863540888,-0.026071701198816,0.023665677756071]],[[0.056645255535841,0.08156893402338,0.024381613358855],[-0.0017803673399612,-0.036704033613205,-0.011503016576171],[0.069796800613403,0.09993676841259,-0.034198179841042]],[[0.18218752741814,0.16845637559891,0.12202285975218],[0.050862241536379,0.10973451286554,0.049445081502199],[-0.027453640475869,0.019074888899922,0.021037891507149]],[[0.0079365093261003,0.036759436130524,-0.035621047019958],[0.074831597507,0.063175849616528,0.062331676483154],[0.027521969750524,-0.066868722438812,0.013922804966569]],[[-0.0082476334646344,0.015147773548961,-0.05118390917778],[-0.086486920714378,-0.014632574282587,0.012446921318769],[0.011007378809154,-0.025030499324203,0.0054186074994504]],[[-0.097955144941807,-0.0130062000826,-0.045896798372269],[-0.037985671311617,0.075651161372662,-0.027201630175114],[-0.056361306458712,-0.0037098783068359,0.016340147703886]],[[-0.002196358749643,-0.0034788979683071,0.04124616459012],[-0.012385622598231,-0.013885768130422,0.015994230285287],[-0.13993212580681,-0.0033654554281384,-0.021126754581928]],[[0.049803674221039,-0.065021149814129,-0.015197589062154],[0.019091386348009,0.03579243272543,0.038601975888014],[0.065399564802647,-0.0086493352428079,-0.014078762382269]],[[0.0058183344081044,0.055475566536188,-0.03681056201458],[0.088009066879749,-0.040264736860991,-0.065177321434021],[-0.0044914032332599,-0.039747036993504,0.094749867916107]],[[0.052759382873774,0.074370145797729,0.086785197257996],[0.0018457148689777,0.074290052056313,0.054832756519318],[-0.035287603735924,-0.077652707695961,0.16839095950127]],[[-0.025435650721192,-0.010575033724308,0.02021006681025],[-0.015291877090931,0.0023658131249249,0.010284567251801],[-0.044656492769718,-0.086353242397308,0.097676359117031]],[[0.0013159364461899,-0.016971666365862,0.066985957324505],[0.062566585838795,0.023114895448089,0.019582888111472],[0.08926934748888,0.10309465229511,0.015186879783869]],[[-0.063365422189236,0.0033586332574487,0.041519615799189],[-0.086232498288155,0.00060334469890222,-0.047748181968927],[-0.014162407256663,0.072421319782734,0.057830471545458]],[[0.013778328895569,-0.017448492348194,0.030777789652348],[0.016318248584867,-0.039165932685137,0.054907761514187],[0.030597023665905,0.035357434302568,-0.049244400113821]],[[-0.036710627377033,-0.10861368477345,0.0051627084612846],[0.042850065976381,-0.0077778678387403,-0.011991464532912],[-0.019141038879752,0.040508158504963,-0.0156239438802]],[[0.064184218645096,0.0092639429494739,0.014001723378897],[0.039532389491796,0.052449088543653,-0.10477448254824],[0.0088855633512139,-0.05115781724453,-0.056113321334124]],[[0.040027976036072,0.051340121775866,0.05715411901474],[-0.057776737958193,0.098476015031338,0.16063657402992],[0.017994023859501,-0.063209153711796,0.037507325410843]],[[0.054513078182936,0.044943127781153,-0.038355212658644],[-0.04837941378355,-0.021614983677864,0.048556815832853],[0.017510360106826,-0.044376742094755,0.050199817866087]],[[0.01810809969902,0.053695321083069,0.037747863680124],[-0.0090540125966072,-0.073324024677277,-0.044641606509686],[0.023481337353587,0.024447282776237,-0.090114288032055]],[[-0.037119008600712,0.076192013919353,-0.05888519436121],[-0.0052887108176947,-0.033568929880857,-0.026276497170329],[-0.051475685089827,-0.018151104450226,-0.019619384780526]],[[0.044935546815395,0.058079969137907,-0.0073767309077084],[0.065646968781948,-0.0055513130500913,-0.046193100512028],[0.059689790010452,-0.047749556601048,0.074703969061375]],[[-0.088456101715565,0.076410561800003,0.050003558397293],[0.062877759337425,0.028838546946645,-0.074829757213593],[-0.035101290792227,-0.0086757643148303,-0.090760216116905]],[[0.0082725435495377,0.030599635094404,-0.039589263498783],[0.032812532037497,-0.027407487854362,0.044793959707022],[0.05678703635931,0.017520876601338,0.0029558970127255]],[[-0.023438472300768,0.022014165297151,0.018596032634377],[-0.025322852656245,0.032309751957655,-0.091753609478474],[0.0034949593245983,-0.084902666509151,0.035563472658396]],[[-0.017473729327321,-0.040804762393236,-0.014697180129588],[-0.064331755042076,-0.044615469872952,-0.053177192807198],[-0.070577226579189,-0.035731505602598,-0.019813323393464]],[[0.084867879748344,0.04362641274929,-0.099365197122097],[0.06211968138814,0.14568138122559,0.003123032161966],[0.066686250269413,0.0060929469764233,-0.010764704085886]],[[0.041925046592951,0.032116390764713,0.052081219851971],[0.054328043013811,0.02555757202208,-0.021415084600449],[-0.022326679900289,0.12359540909529,-0.040086086839437]],[[-0.057278715074062,-0.0063778460025787,-0.015243072062731],[-0.032902549952269,0.0030907364562154,0.070723429322243],[0.020550614222884,0.031467039138079,-0.053839933127165]],[[0.11154242604971,0.001810108544305,-0.060566954314709],[-0.0058892439119518,0.073079198598862,-0.021597763523459],[-0.1220711171627,0.00073733215685934,-0.047284260392189]],[[-0.027521941810846,-0.0048112547956407,-0.031346268951893],[-0.039532743394375,0.0052221058867872,0.00045929630869068],[-0.018867144361138,0.043584227561951,-0.027376959100366]],[[-0.03420938923955,-0.012800563126802,0.042902763932943],[-0.018814641982317,0.10087329894304,0.10719227045774],[0.054310128092766,0.038438078016043,-0.011693785898387]],[[0.024282483384013,0.049748308956623,0.049658965319395],[0.10887173563242,0.017586458474398,-0.044724576175213],[-0.0459377579391,-0.028819311410189,0.032946050167084]],[[-0.073672786355019,0.072113238275051,0.017810383811593],[-0.027881111949682,0.032223880290985,0.073777467012405],[0.045236010104418,-0.024252565577626,0.034774906933308]],[[-0.007790569216013,0.0090870074927807,0.051182359457016],[0.014051894657314,-0.04644738137722,-0.0061298585496843],[-0.033171221613884,-0.018195370212197,0.067073717713356]],[[-0.0013287748442963,0.049561746418476,-0.0053842435590923],[-0.03084752894938,0.0098365228623152,0.071029499173164],[0.043442379683256,0.0021024306770414,0.026941949501634]],[[-0.044280935078859,-0.013673719018698,0.00015287098358385],[0.042621184140444,0.040246676653624,0.0081350319087505],[0.020107097923756,0.054197385907173,0.057021751999855]],[[-0.022109495475888,-0.050732634961605,-0.042189639061689],[-0.044990934431553,-0.031387865543365,0.0080096693709493],[0.012456415221095,0.031180255115032,0.029695780947804]],[[-0.043817404657602,0.046237252652645,-0.023663511499763],[-0.033557418733835,-0.033611420542002,-0.044976703822613],[-0.030067667365074,0.073459379374981,-0.047712009400129]],[[0.04123093560338,-0.002295529935509,-0.048525806516409],[0.016568569466472,0.011451535858214,-0.086077697575092],[0.0052030556835234,0.0088612716645002,-0.029754184186459]],[[-0.0082614384591579,0.019915733486414,-0.030528705567122],[-0.028573324903846,0.051848996430635,-0.065768331289291],[0.0079307937994599,0.039852827787399,0.021384175866842]],[[-0.012286913581192,0.10087675601244,0.032837010920048],[0.0093523394316435,-0.0098687298595905,-0.052955769002438],[-0.073946565389633,-0.036851190030575,0.052539501339197]],[[-0.0002067349414574,-0.023774379864335,0.028258187696338],[-0.086626544594765,-0.0084068598225713,0.099575959146023],[0.067646883428097,0.014458208344877,0.040512643754482]],[[0.041841056197882,0.04027433693409,-0.0021954670082778],[-0.00076689466368407,0.022077305242419,-0.0093138879165053],[0.061443276703358,-0.045201744884253,0.030873324722052]],[[-0.074052192270756,0.03028678894043,0.0012630908749998],[-0.0061283176764846,-0.012057258747518,-0.046803496778011],[0.020252969115973,-0.040709938853979,0.016125075519085]],[[-0.081383056938648,-0.070553340017796,-0.0073273307643831],[-0.078093938529491,0.070116147398949,-0.0049168565310538],[-0.018675595521927,-0.062813758850098,0.020453367382288]],[[-0.036509640514851,0.024513045325875,-0.024318737909198],[0.03276053071022,-0.034701485186815,-0.02340922318399],[-0.02142002992332,-0.016539584845304,0.07751078158617]],[[0.0071441545151174,0.049923155456781,0.066018588840961],[-0.00010246395686409,-0.0056648934260011,-0.0023759915493429],[0.035741318017244,0.059285782277584,0.0272535700351]],[[-0.0016030661063269,-0.043439324945211,0.042222026735544],[0.037686970084906,0.010420046746731,0.008445231243968],[-0.092196360230446,0.051865294575691,-0.08533001691103]],[[0.042382378131151,0.10881023854017,0.0092055406421423],[0.028036758303642,0.030330389738083,-0.015180561691523],[-0.010625732131302,0.087347932159901,0.004099736455828]],[[0.048041913658381,0.01048256456852,-0.019434966146946],[0.0012188506079838,-0.05214760825038,-0.060658004134893],[-0.0077091478742659,0.042409051209688,0.00035380810732022]],[[-0.035345338284969,0.018730688840151,0.080309242010117],[-0.010886807925999,-0.04338888078928,0.016772342845798],[-0.060331702232361,0.036716476082802,-0.038059718906879]],[[-0.024432819336653,0.054292891174555,0.020107243210077],[0.03465747833252,0.040668576955795,-0.0030567143112421],[-0.11884674429893,-0.030349064618349,-0.093031331896782]],[[0.098393835127354,0.01247725263238,-0.017548514530063],[-0.019552025943995,0.052273392677307,-0.022483058273792],[0.054051853716373,-0.084406234323978,-0.013056536205113]],[[0.0007236527162604,-0.022441249340773,0.0082562696188688],[0.020331287756562,-0.051501292735338,0.039003632962704],[-0.04189208894968,0.042486388236284,0.035855740308762]],[[0.058615781366825,-0.083817712962627,0.02211089618504],[-0.0063517861999571,0.067253641784191,0.033986210823059],[-0.010095079429448,0.035630855709314,-0.0033994417171925]],[[-0.028017707169056,0.030435755848885,-0.045891687273979],[0.018774785101414,0.025155290961266,0.058404471725225],[-0.020733339712024,-0.051135957241058,-0.013166008517146]],[[-0.0095241470262408,0.12699663639069,-0.039588455110788],[-0.031979978084564,-0.035572811961174,0.010020906105638],[-0.022773003205657,-0.03971778228879,-0.069789700210094]],[[0.016421336680651,-0.046075757592916,-0.037440028041601],[-0.038517076522112,0.092444591224194,0.0012472014641389],[0.11056552827358,-0.025010790675879,-0.018596924841404]],[[-0.0073385369032621,-0.059266287833452,-0.0097207510843873],[0.045083798468113,0.025300549343228,-0.023211603984237],[0.038311026990414,-0.044538479298353,-0.078275322914124]],[[0.16429442167282,0.056813236325979,-0.01104857865721],[-0.025491323322058,0.070514351129532,-0.012020043097436],[-0.084098510444164,-0.018000999465585,-0.016304567456245]],[[0.072540961205959,0.023674055933952,0.049055516719818],[0.040611822158098,-0.032636005431414,-0.053764656186104],[0.060567867010832,0.020652033388615,0.021055486053228]],[[-0.063609451055527,0.033267829567194,-0.10379894822836],[-0.034846320748329,0.03785115852952,-0.031404931098223],[0.055976800620556,0.018875570967793,-0.031207742169499]],[[0.073681801557541,-0.00043006183113903,0.031747482717037],[-0.030452966690063,0.047534469515085,-0.054384924471378],[-0.0030866982415318,-0.036629434674978,0.0088136568665504]],[[-0.030657880008221,0.027700744569302,0.016514638438821],[-0.016643179580569,-0.05555446818471,-0.012448103167117],[0.052450779825449,0.040970992296934,0.068879790604115]],[[-0.05557644739747,-0.043745551258326,-0.061489727348089],[0.033151756972075,0.0030375148635358,0.088908448815346],[0.024526348337531,0.098766952753067,0.051052592694759]],[[-0.060317952185869,0.090809509158134,-0.020732263103127],[0.070499375462532,0.067016988992691,-0.036470927298069],[-0.0041276928968728,0.011427126824856,0.041434485465288]],[[-0.0077389171347022,0.0082008587196469,0.055459711700678],[0.046038556843996,-0.037590615451336,0.055145088583231],[0.036320105195045,0.013397394679487,0.020402519032359]],[[-0.014963777735829,-0.058346085250378,-0.013308466412127],[-0.024549765512347,0.013277044519782,-0.042952597141266],[0.057346846908331,-0.034612443298101,-0.014327252283692]],[[-0.024655815213919,-0.014422188512981,-0.039246927946806],[-0.036021620035172,0.024657970294356,0.050865110009909],[0.05422942340374,0.046402934938669,0.016453754156828]],[[0.021636627614498,0.048154138028622,0.047001082450151],[0.0054551777429879,0.00059496483299881,0.045223891735077],[0.0076040322892368,0.056502513587475,0.068266063928604]],[[-0.016387889161706,-0.010317617096007,0.0084535302594304],[0.043613161891699,-0.036593109369278,-0.054694771766663],[-0.018817864358425,-0.035207841545343,0.02046163380146]],[[0.017444062978029,0.009591968730092,0.013261471875012],[-0.033595155924559,0.020313110202551,0.018912607803941],[-0.031294774264097,-0.013156805187464,-0.069751277565956]],[[-0.079191215336323,0.099011242389679,0.0051625855267048],[0.071620970964432,-0.033241525292397,0.038930844515562],[-0.029136370867491,-0.012234153226018,0.042169399559498]],[[0.066334918141365,-0.0080248899757862,0.025513103231788],[0.023457575589418,-0.071451306343079,-0.035245534032583],[-0.014554697088897,0.022145323455334,-0.06704843044281]],[[0.041427131742239,0.065974660217762,0.012187171727419],[0.041577875614166,-0.042008858174086,-0.05134092271328],[-0.059700146317482,0.014701785519719,0.033030312508345]],[[0.07021264731884,0.024673199281096,0.034526955336332],[-0.0051499782130122,0.0052170623093843,0.025713546201587],[0.10478973388672,0.0053862589411438,0.092124126851559]],[[0.021747760474682,0.0023659642320126,-0.0092464834451675],[-0.022304579615593,0.049659606069326,0.032260343432426],[0.032163847237825,0.018620064482093,-0.020546942949295]],[[0.067741729319096,0.039630271494389,-0.019162654876709],[0.025372911244631,-0.037136800587177,-0.016444751992822],[0.013186678290367,-0.010529235005379,-0.019112983718514]],[[0.055050317198038,-0.011858338490129,0.024844914674759],[0.034346584230661,0.06971338391304,0.045774076133966],[-0.031178696081042,-0.020008089020848,-0.024456541985273]],[[-0.04749046638608,-0.10026580840349,0.017181430011988],[0.0039554764516652,0.0091724693775177,-0.070846378803253],[-0.035111788660288,-0.0034800071734935,0.037253748625517]],[[-0.021451061591506,0.0017679737647995,-0.013729310594499],[0.070548996329308,-0.0049907402135432,-0.051161199808121],[-0.049844637513161,0.034222327172756,-0.038929469883442]],[[0.070320889353752,0.069445051252842,-0.014244876801968],[-0.074561320245266,0.020796347409487,0.0075552971102297],[-0.033784285187721,0.094828359782696,0.0075265499763191]],[[-0.082166507840157,-0.086598075926304,0.01269187964499],[0.072214394807816,-0.050264373421669,0.10198275744915],[0.059209704399109,-0.12738683819771,0.048460595309734]],[[-0.035904310643673,-0.013727184385061,0.05826723203063],[0.05990020558238,0.083452269434929,0.012215973809361],[-0.061890173703432,0.006637308280915,-0.11888570338488]],[[-0.03411253541708,0.080584667623043,0.0016200984828174],[0.027588952332735,0.041715778410435,-0.01178764924407],[-0.00032464429386891,-0.043347518891096,0.019470786675811]],[[-0.048218879848719,0.084444962441921,-0.017989361658692],[0.063376717269421,0.033914029598236,-0.0085069993510842],[0.035765193402767,0.018004393205047,0.0048326719552279]],[[0.016142496839166,-0.011424257420003,-0.030938735231757],[-0.017615675926208,0.056290496140718,-0.078859217464924],[-0.01399570889771,0.06202756613493,-0.024010421708226]],[[-0.015662971884012,-0.057495392858982,-0.0064547476358712],[0.042560700327158,0.047711059451103,0.062336917966604],[0.012233949266374,-0.0085956519469619,-0.013057361356914]],[[0.025467593222857,0.0092342142015696,0.055245827883482],[0.028155926615,0.0084486091509461,0.10565455257893],[0.027833910658956,-0.008619662374258,-0.070674151182175]],[[-0.070897340774536,0.049639720469713,-0.062755778431892],[-0.028910672292113,0.068114534020424,0.053962055593729],[0.006988953333348,-0.012824080884457,0.10094857960939]],[[-0.0038398783653975,-0.0072381012141705,0.075059227645397],[0.085450977087021,-0.048422481864691,0.036955535411835],[0.080198012292385,0.030965650454164,-0.088138036429882]],[[0.029953548684716,0.027250980958343,-0.076081648468971],[0.10492871701717,-0.01584835536778,-0.00018840626580641],[0.053591471165419,0.069129511713982,0.034929480403662]],[[-0.002912453841418,-0.06099646538496,0.053892824798822],[-0.010423056781292,0.022613070905209,-0.051151182502508],[-0.078619278967381,-0.0023696019779891,0.0022396314889193]],[[0.014237682335079,-0.019431237131357,0.016747074201703],[0.020584629848599,0.05694518238306,0.037680402398109],[-0.0059791365638375,-0.011219730600715,-0.014051790349185]],[[0.013874351046979,-0.035963792353868,0.020116593688726],[0.011349494569004,0.012766861356795,0.11123817414045],[-0.071820646524429,0.15138919651508,0.038481999188662]],[[-0.085708558559418,-0.019025597721338,0.018080215901136],[0.065295577049255,0.0083912201225758,0.029847960919142],[-0.0025950153358281,-0.037994347512722,0.0011508448515087]],[[0.012373480014503,-0.035885918885469,-0.011460625566542],[-0.016748109832406,-0.058056443929672,0.014700883068144],[-0.077026836574078,-0.045975435525179,-0.041081812232733]],[[0.10235080122948,0.013622616417706,0.021733595058322],[0.020351681858301,0.055870316922665,-0.0032802233472466],[-0.11258835345507,0.060214497148991,0.019531337544322]],[[-0.045595739036798,0.0059488480910659,0.0016568987630308],[0.046833518892527,-0.014269256964326,-0.0022297364193946],[-0.0095576141029596,-0.039721995592117,0.034734327346087]],[[-0.0036217912565917,-0.053361602127552,-0.0068376129493117],[0.0028428882360458,-0.031308185309172,-0.025259107351303],[-0.019718676805496,-0.053423192352057,-0.097131878137589]],[[-0.033541515469551,0.0069207944907248,-0.0038760721217841],[0.042251374572515,-0.034596126526594,0.034665316343307],[-0.01956426911056,-0.021915690973401,-0.00010629194002831]],[[0.028036285191774,-0.072608046233654,-0.034996725618839],[0.0034638829529285,-0.001688469434157,-0.043518148362637],[-0.054598461836576,-0.012942027300596,-0.052275903522968]],[[-0.051998071372509,0.0038276365958154,0.054466839879751],[0.030011277645826,-0.015471273101866,-0.056486040353775],[0.052136812359095,0.026748947799206,0.046252507716417]],[[0.014741485007107,-0.06136305257678,-0.053334288299084],[-0.074664689600468,-0.068994387984276,0.026971703395247],[-0.033192459493876,0.028612613677979,0.10483650863171]],[[-0.075238466262817,0.081832759082317,0.037220697849989],[-0.015355620533228,-0.01998938433826,0.00011001327948179],[0.0030432338826358,0.03388961032033,0.085865303874016]],[[-0.05427610501647,0.077410079538822,0.062188778072596],[0.0073070186190307,0.027239473536611,-0.017049096524715],[0.016512887552381,0.025721194222569,0.066609174013138]],[[0.044872134923935,-0.019448170438409,0.070815689861774],[-0.053418509662151,0.0095061250030994,-0.063060589134693],[-0.025910777971148,0.046142052859068,-0.079049952328205]],[[0.04774833843112,0.054742656648159,0.00090713449753821],[-0.073371887207031,0.039862010627985,0.0044084526598454],[-0.057465966790915,-0.042296942323446,-0.040386766195297]],[[0.040404453873634,-0.053080391138792,0.049012713134289],[0.042371153831482,-0.060194101184607,0.028540078550577],[-0.011800900101662,0.054709315299988,-0.070317424833775]],[[-0.037687845528126,0.058724634349346,-0.00257467944175],[0.00037407464697026,0.0024987733922899,-0.056084852665663],[-0.0036699809134007,0.013944557867944,-0.094758361577988]],[[0.076614893972874,0.032123945653439,0.043642919510603],[0.0073665170930326,-0.005392390768975,-0.001198674319312],[0.025556409731507,0.061355877667665,-0.020385948941112]],[[0.093692898750305,-0.037092678248882,-0.0048068026080728],[-0.15440702438354,-0.047542873769999,0.040051519870758],[-0.028797930106521,-0.083902232348919,-0.0091729117557406]],[[-0.050560168921947,0.034628611057997,-0.0027313684113324],[0.032681718468666,-0.06372045725584,-0.041145984083414],[0.01277578715235,0.044327702373266,0.015756238251925]],[[0.048730503767729,-0.020701998844743,-0.031402323395014],[0.062856957316399,0.068442732095718,-0.032327514141798],[-0.029336683452129,0.064762994647026,0.09802220761776]],[[-0.017224263399839,-0.026282513514161,0.020611230283976],[-0.034271415323019,0.041731879115105,0.0202148091048],[0.016434248536825,0.076495110988617,-0.041553989052773]],[[0.057558003813028,-0.0030019911937416,-0.043121781200171],[0.034565974026918,0.02861662954092,0.0072030988521874],[0.071747206151485,-0.045884344726801,0.028328454121947]]],[[[-0.0082739796489477,-0.011542051099241,0.050255473703146],[0.074302405118942,-0.048043455928564,-0.028097515925765],[-0.025621676817536,-0.046017162501812,0.025256378576159]],[[-0.023780789226294,-0.0048665800131857,-0.024133261293173],[-0.049673724919558,-0.040833100676537,-0.044916741549969],[0.094925202429295,-0.083480842411518,-0.057758469134569]],[[0.083954028785229,0.030804947018623,0.06432031840086],[0.082422628998756,0.022255942225456,0.22981463372707],[0.055402617901564,0.013686869293451,0.19402420520782]],[[0.013341226615012,0.11909077316523,0.067492924630642],[-0.052413735538721,0.07011004537344,0.11167632043362],[-0.01284602843225,0.029230192303658,0.030136497691274]],[[0.066289089620113,0.048966940492392,0.0094902673736215],[-0.02464815042913,0.081828899681568,-0.061169691383839],[0.026194922626019,-0.024701956659555,0.017993727698922]],[[0.016756523400545,0.098859436810017,0.012779008597136],[0.045921120792627,0.013019788078964,0.082643270492554],[-0.026947377249599,0.081107057631016,0.061352275311947]],[[0.050555530935526,-0.011943906545639,-0.032314714044333],[-0.023983361199498,0.015735000371933,0.028305064886808],[-0.052556987851858,-0.046400282531977,0.012220050208271]],[[0.049665126949549,-0.012024296447635,0.066223882138729],[-0.081178657710552,-0.060911595821381,0.016345096752048],[-0.022414283826947,0.06049507856369,0.039075672626495]],[[0.025537023320794,0.10860009491444,0.07778437435627],[0.049651704728603,-0.011966561898589,-0.01068512070924],[0.014706317335367,-0.056589800864458,0.030310394242406]],[[0.019432919099927,0.072311602532864,-0.037907395511866],[0.013041720725596,-0.010470787063241,0.014428913593292],[0.16342413425446,0.053388677537441,0.04088382422924]],[[0.013105438090861,-0.04022928699851,-0.036115705966949],[0.11605831235647,-0.050377558916807,-0.0025892169214785],[0.045847807079554,-0.071140199899673,0.06859565526247]],[[0.037936598062515,0.03390234708786,-0.0049193757586181],[-0.010513032786548,-0.022862549871206,-0.03026263602078],[-0.002967881038785,0.04967874288559,0.049837458878756]],[[0.05177316069603,0.02692773938179,-0.072377972304821],[0.025753557682037,-0.06190212443471,-0.045112799853086],[-0.06218745559454,-0.074590362608433,0.041154492646456]],[[-0.046221468597651,-0.066874213516712,-0.029076859354973],[-0.14076547324657,0.064457155764103,0.0092017268761992],[0.025644965469837,0.079378947615623,0.036156840622425]],[[0.11036137491465,-0.031628601253033,0.12086101621389],[0.084387309849262,0.017628271132708,-0.0025169688742608],[0.042550656944513,0.029491623863578,0.18958775699139]],[[0.11204604059458,-0.06294833868742,0.010292165912688],[-0.08692292869091,0.064134955406189,0.064704187214375],[-0.00041312343091704,-0.073178082704544,-0.050470098853111]],[[0.012112271040678,0.048110261559486,0.14570181071758],[-0.045397400856018,0.018253548070788,-0.041395410895348],[-0.040185961872339,-0.079604923725128,-0.056060671806335]],[[0.081264808773994,-0.043723702430725,0.11715308576822],[-0.045028772205114,0.080472804605961,-0.052722591906786],[0.073953099548817,-0.029515927657485,0.049615133553743]],[[-0.018710866570473,0.063572354614735,0.020756227895617],[0.054243832826614,0.14855907857418,0.26832711696625],[0.018230898305774,0.18544968962669,0.21509182453156]],[[0.098378002643585,-0.012551511637866,0.094686761498451],[-0.058789063245058,0.073059059679508,0.13871459662914],[0.003241176251322,-0.0053936294279993,0.08696087449789]],[[-0.042590036988258,0.016861945390701,-0.070651493966579],[0.085480451583862,0.031784769147635,-0.0043794540688396],[0.050969552248716,-0.029839921742678,-0.062393225729465]],[[0.071988366544247,-0.010746740736067,0.032123662531376],[0.0028409897349775,0.067471362650394,0.047639813274145],[-0.0011835312470794,0.0097664287313819,0.037150096148252]],[[0.10295514762402,0.11475387960672,0.071497395634651],[0.086531966924667,0.092858143150806,-0.070701435208321],[0.034168194979429,-0.0055770357139409,-0.018904786556959]],[[-0.035366661846638,-0.081319317221642,0.039566900581121],[-0.039911486208439,-0.055301319807768,0.048684537410736],[-0.025269655510783,0.14618298411369,0.056569840759039]],[[0.050316926091909,-0.0044980673119426,0.0012043080059811],[0.016956808045506,0.051334291696548,0.049124285578728],[-0.051795314997435,0.038618311285973,-0.018128724768758]],[[-0.051556117832661,-0.023086303845048,-0.16146564483643],[-0.11562931537628,0.056076224893332,-0.054851312190294],[-0.048108637332916,-0.086463578045368,-0.03355523198843]],[[0.071927957236767,-0.07174127548933,-0.031809166073799],[-0.072562247514725,-0.046961065381765,0.035234346985817],[0.062668763101101,0.025148684158921,0.16887058317661]],[[-0.044677045196295,0.011531604453921,0.11269906163216],[-0.028381682932377,0.017122926190495,-0.025369346141815],[0.019092867150903,-0.018727570772171,-0.037074606865644]],[[-0.031781066209078,0.017376020550728,0.15979211032391],[0.029178274795413,0.039469763636589,-0.025880225002766],[0.077325902879238,0.13327947258949,0.017989287152886]],[[-0.050302803516388,0.017129942774773,0.069916971027851],[-0.094182014465332,-0.026987675577402,-0.063701152801514],[0.020842647179961,0.016419535502791,-0.02825053408742]],[[-0.018543515354395,-0.049944505095482,0.027128804475069],[-0.081198416650295,-0.046255230903625,-0.023734167218208],[0.040907721966505,-0.037119790911674,0.15011045336723]],[[0.19513280689716,-0.051605101674795,-0.033043250441551],[0.088517881929874,-0.0090929623693228,-0.066232949495316],[0.058519523590803,0.020941579714417,0.083655431866646]],[[-0.037200585007668,0.057122774422169,0.084245249629021],[-0.044050686061382,0.01557913608849,0.015684090554714],[0.034363158047199,0.063598237931728,0.013199822045863]],[[0.027176110073924,-0.088360190391541,-0.028933312743902],[-0.0021568853408098,-0.050022415816784,0.050898995250463],[0.056361634284258,-0.039254982024431,0.122712880373]],[[0.068427763879299,-0.090880125761032,0.10210210084915],[-0.023626992478967,0.11558113247156,-0.012581054121256],[-0.0061055738478899,-0.058931995183229,0.093705147504807]],[[-0.030498636886477,-0.015215000137687,-0.013795904815197],[-0.046085700392723,0.042105693370104,-0.017516225576401],[-0.12460831552744,-0.0076764244586229,0.028007989749312]],[[-0.056913569569588,-0.0053559178486466,-0.054777644574642],[0.22262901067734,-0.095882683992386,-0.016438949853182],[0.02526544034481,0.03706581145525,-0.022653635591269]],[[0.050364702939987,0.0064079943113029,-0.0035192056093365],[-0.01477789785713,-0.066270396113396,-0.013452973216772],[-0.0038201587740332,-0.051973707973957,0.030116094276309]],[[-0.089979529380798,-0.11556438356638,-0.039742849767208],[-0.17996613681316,0.028209699317813,0.035417649894953],[0.037692219018936,-0.060092430561781,0.0033509412314743]],[[0.092612467706203,0.13490135967731,-0.019026268273592],[-0.069892026484013,-0.0032841074280441,0.020710462704301],[0.0026657753624022,0.10164275765419,0.051702290773392]],[[-0.11859405040741,0.045077368617058,0.078657276928425],[0.18604044616222,-0.14597228169441,0.053279262036085],[0.01496833562851,0.033019281923771,0.062196910381317]],[[0.035863619297743,-0.012101834639907,0.092990800738335],[0.042816840112209,0.049982871860266,0.062396366149187],[0.11049881577492,-0.083460219204426,-0.069993324577808]],[[0.087115399539471,-0.12599246203899,0.051948517560959],[-0.03859880939126,0.01180122140795,0.049570221453905],[0.035113982856274,-0.019602349027991,-0.0089628919959068]],[[0.0017625537002459,-0.015406355261803,0.11315149068832],[-0.017021510750055,-0.027199055999517,-0.049999970942736],[-0.033975806087255,-0.0054004681296647,-0.017273981124163]],[[-0.083826139569283,0.0078260768204927,-0.04394468665123],[-0.044783931225538,-0.026707565411925,0.045073885470629],[-0.037027508020401,0.032665897160769,0.14516419172287]],[[0.002137390896678,0.099065214395523,0.060243226587772],[-0.034037105739117,-0.010701793245971,0.10376618057489],[0.00070237956242636,0.0498904325068,0.09838230907917]],[[0.022106878459454,0.028086896985769,-0.014069612137973],[0.018789598718286,-0.058718096464872,-0.0091506000608206],[0.086547531187534,0.021353924646974,-0.10515021532774]],[[-0.030185071751475,-0.082171641290188,0.10862802714109],[-0.060367088764906,0.18494513630867,-0.051328867673874],[0.047315526753664,-0.084858201444149,0.037926141172647]],[[0.031842201948166,0.030527621507645,0.087791562080383],[0.080981321632862,0.049744755029678,-0.070293381810188],[0.037327360361814,0.062850013375282,-0.0096822688356042]],[[0.041594080626965,-0.05343746393919,0.036200243979692],[0.0019541245419532,-0.026391183957458,0.049678076058626],[0.0058252061717212,-0.031610034406185,-0.037018187344074]],[[0.13507576286793,0.094762854278088,0.10897170752287],[0.048731815069914,-0.033209528774023,0.01575823687017],[-0.059621971100569,-0.041090477257967,-0.042654622346163]],[[0.095892481505871,-0.07482922822237,0.045372523367405],[0.027190862223506,0.11722578108311,0.0081637464463711],[-0.014663875102997,-0.020504457876086,-0.014674745500088]],[[-0.073737747967243,0.084834940731525,-0.046380940824747],[-0.065301716327667,-0.11468643695116,-0.018884321674705],[-0.0020516782533377,-0.0022573687601835,0.029127437621355]],[[0.15073718130589,0.11690871417522,0.057150740176439],[0.16955874860287,-0.076147012412548,-0.0095074726268649],[-0.013775632716715,0.10791057348251,-0.039710685610771]],[[0.1139682084322,0.029382457956672,-0.02494253590703],[-0.0062822597101331,0.025270935148001,-0.0094029074534774],[-0.013116588816047,-0.084414288401604,-0.057765610516071]],[[-0.18519511818886,0.03365096077323,0.045138832181692],[-0.023301508277655,0.037929352372885,0.073092833161354],[-8.2641330664046e-05,-0.055604681372643,-0.10627448558807]],[[0.05220390483737,-0.046824295073748,0.11081556230783],[0.042283266782761,-0.023387873545289,-0.0066255764104426],[0.054269719868898,-0.01291187107563,0.042106736451387]],[[-0.006375992204994,-0.030964380130172,-0.063960708677769],[0.054873678833246,-0.063202649354935,0.013598434627056],[-0.027580825611949,-0.023265933617949,-0.016663011163473]],[[-0.14714194834232,-0.066457852721214,0.017295645549893],[0.038634095340967,-0.069894455373287,0.016849007457495],[-0.0339585095644,-0.08453518897295,-0.13095608353615]],[[-0.15868696570396,0.099092103540897,-0.020592324435711],[0.070239707827568,-0.010290856473148,0.015031375922263],[-0.049998357892036,0.018402393907309,-0.072343610227108]],[[-0.08610488474369,0.017773954197764,0.011587277054787],[0.045790396630764,0.057095292955637,0.0056483140215278],[-0.045507423579693,0.055076837539673,-0.028840154409409]],[[0.096515722572803,0.031567014753819,-0.023657022044063],[0.0082849869504571,0.13137662410736,0.061989214271307],[0.023805618286133,0.074530825018883,-0.03767916560173]],[[-0.0055631380528212,-0.033997852355242,0.030461950227618],[0.077749885618687,-0.13591630756855,-0.079093404114246],[-0.026936894282699,-0.053342062979937,0.070275820791721]],[[-0.028235670179129,0.10036373883486,-0.023994565010071],[0.095112197101116,-0.096740171313286,0.0096791451796889],[-0.057294726371765,0.098246842622757,0.063075073063374]],[[0.12898005545139,-0.061098523437977,0.03085626102984],[0.062226317822933,-0.017558036372066,-0.030921451747417],[-0.041767299175262,0.0028928599786013,0.024143133312464]],[[0.044488165527582,0.055397626012564,-0.036222267895937],[0.092393554747105,0.018802030012012,0.018883224576712],[0.051299802958965,0.090961411595345,-0.08608703315258]],[[0.082501113414764,-0.01247214525938,0.051276389509439],[0.047519199550152,0.078884787857533,0.10397161543369],[-0.006924856454134,0.0065504410304129,0.040374837815762]],[[0.12020974606276,0.036875989288092,-0.040283184498549],[-0.081822670996189,-0.043733417987823,-0.022405249997973],[-0.066387206315994,-0.18500404059887,0.029530163854361]],[[0.023724326863885,-0.031995099037886,0.027937022969127],[-0.0057021002285182,-0.021387791261077,-0.055200207978487],[0.0016368285287172,-0.1539963632822,0.0037015138659626]],[[-0.02589020691812,0.016276834532619,-0.020936410874128],[-0.12587341666222,-0.063215650618076,0.0092927580699325],[-0.06187704578042,0.026910403743386,0.017658865079284]],[[0.042660094797611,-0.04556430876255,-0.069177336990833],[-0.13018560409546,-0.053010527044535,0.047211855649948],[-0.070227742195129,-0.016539612784982,0.054494023323059]],[[0.033726491034031,0.044797193259001,0.0084382081404328],[0.02943385578692,0.079733796417713,0.12090685963631],[-0.0080518405884504,0.11788392812014,-0.075413964688778]],[[-0.01551413256675,0.037166159600019,0.12609247863293],[0.026950119063258,-0.090392574667931,-0.017479194328189],[-0.026288034394383,0.097148142755032,0.035194411873817]],[[0.00029324681963772,-0.072987332940102,-0.0071907588280737],[-0.1006281748414,0.0013136147754267,0.0045740688219666],[0.077832862734795,-0.10247135162354,-0.021818865090609]],[[-0.009093246422708,0.044712122529745,0.091237269341946],[-0.0099252024665475,-0.020517852157354,-0.093285538256168],[0.015982830896974,-0.031478572636843,0.019503077492118]],[[0.12883226573467,-0.0019638743251562,0.01339184679091],[0.078980289399624,0.016761496663094,-0.063148751854897],[0.048693638294935,0.022370094433427,-0.057023592293262]],[[0.0061071310192347,-0.016025871038437,-0.028896452859044],[-0.093100517988205,0.058425724506378,-0.035199586302042],[0.11018177866936,0.0308529548347,0.031219946220517]],[[0.022671611979604,0.079288259148598,0.10434531420469],[0.097771570086479,0.0079561294987798,0.034827373921871],[0.041211400181055,0.027668435126543,0.024166414514184]],[[0.083856694400311,0.0096327047795057,0.038474123924971],[0.052840925753117,0.090811975300312,-0.040891010314226],[0.043219428509474,-0.0059926970861852,-0.1334506124258]],[[-0.042636226862669,-0.052961956709623,0.049750670790672],[-0.062792636454105,0.050055149942636,0.011156503111124],[-0.10225060582161,-0.0026705120690167,0.068402223289013]],[[0.101188570261,-0.019500821828842,0.065611623227596],[0.072755932807922,0.020980896428227,-0.008075064048171],[-0.03999213129282,0.1002726778388,0.073027998209]],[[0.015043244697154,0.034007396548986,0.07053954154253],[-0.0098572261631489,0.091141477227211,-0.036548938602209],[-0.077028058469296,-0.026541648432612,-0.060940023511648]],[[0.14247779548168,-0.085375249385834,0.077989034354687],[0.013669562526047,0.026548638939857,-0.014040648005903],[-0.03385628759861,0.095389775931835,0.055945128202438]],[[0.046194273978472,-0.012696056626737,0.1205735206604],[0.02033812366426,0.021626655012369,-0.022384312003851],[0.012570924125612,-0.033363319933414,0.061556372791529]],[[0.030247122049332,0.0063582346774638,0.0041020810604095],[0.023342240601778,-0.011098965071142,0.0540976151824],[-0.03953942283988,0.012180243618786,-0.030371453613043]],[[-0.012994582764804,0.11595436185598,-0.040667746216059],[-0.056853506714106,-0.069105103611946,-0.029631488025188],[-0.077241018414497,0.033152367919683,-0.062355317175388]],[[-0.020053155720234,0.095675088465214,-0.011951555497944],[-0.052787020802498,-0.055257126688957,0.13122954964638],[0.011554274708033,0.04006876796484,0.087933748960495]],[[-0.033865369856358,0.063532963395119,0.0043953657150269],[-0.0098376339301467,0.0076308296993375,0.18197277188301],[0.10064583271742,0.070478476583958,-0.066395878791809]],[[-0.10311509668827,0.030511721968651,0.024276938289404],[-0.0056116431951523,0.0082863988354802,-0.020872874185443],[0.052728611975908,0.035747040063143,-0.020781265571713]],[[0.059946589171886,0.029710261151195,-0.031081499531865],[-0.018199492245913,0.035998553037643,0.027126649394631],[0.061946146190166,-0.11579404771328,0.031418696045876]],[[-0.021963201463223,0.092281743884087,0.0035137005615979],[-0.02058982104063,-0.058547161519527,0.029811751097441],[-0.0054496433585882,0.029241556301713,0.1117132678628]],[[-0.0078285923227668,0.038000266999006,0.01971771940589],[0.0091509558260441,0.034636456519365,0.016945185139775],[-0.0012005273019895,-0.043949484825134,0.02723466604948]],[[-0.072695575654507,-0.02476110868156,0.044478364288807],[-0.059483505785465,0.10050758719444,-0.048340540379286],[-0.039615839719772,0.061521843075752,-0.19570772349834]],[[0.059753343462944,0.007873747497797,-0.043901693075895],[0.051772382110357,-0.14322006702423,-0.033936198800802],[-0.04068249091506,-0.12410441040993,-0.070908397436142]],[[0.062050249427557,0.028983039781451,-0.060383211821318],[-0.0065026227384806,0.0053103733807802,-0.052884660661221],[-0.048026766628027,0.023651923984289,-0.089752346277237]],[[0.049570761620998,0.091716766357422,0.01793154142797],[0.009099131450057,0.0041148597374558,0.055236421525478],[0.11939407140017,-0.041263461112976,0.043593287467957]],[[-0.061785232275724,-0.054142501205206,0.0097772153094411],[-0.032684106379747,0.23797816038132,-0.010354252532125],[-0.12484150379896,0.058723088353872,-0.00092835677787662]],[[0.024519817903638,0.10169868916273,0.061741817742586],[-0.0074620717205107,-0.0080132400617003,-0.10422249883413],[-0.032416366040707,-0.0725202485919,-0.099382542073727]],[[0.050336681306362,0.085980780422688,-0.016962951049209],[0.035508051514626,0.037824731320143,0.031378008425236],[0.055130049586296,0.034476853907108,0.094122029840946]],[[0.044788777828217,0.018614323809743,0.013957099989057],[-0.019873775541782,0.049905508756638,0.029748389497399],[-0.013040320947766,0.055374082177877,0.017211956903338]],[[-0.086810141801834,-0.03254335001111,-0.046928215771914],[-0.0012980872998014,-0.13385057449341,0.012941286899149],[0.12577812373638,0.019863344728947,0.00053600664250553]],[[-0.11888995021582,-0.047771543264389,0.037397991865873],[-0.017072005197406,0.0011936664814129,0.069535046815872],[-0.11968049407005,-0.069435372948647,-0.026093602180481]],[[0.033076588064432,0.032501325011253,0.0010442591737956],[0.052444510161877,-0.043693974614143,0.009599594399333],[0.043550178408623,-0.14118976891041,0.039192471653223]],[[-0.051537677645683,0.017903193831444,0.051718570291996],[0.045899629592896,0.023539535701275,-0.0098983952775598],[-0.10124941915274,-0.011090806685388,-0.037034999579191]],[[-0.025074305012822,0.038361914455891,0.049646239727736],[-0.011711411178112,-0.018212161958218,-0.0053850444965065],[-0.085211865603924,0.059566587209702,-0.040686748921871]],[[-0.099868409335613,0.087099775671959,0.035405732691288],[-0.077425427734852,0.029215879738331,0.010125648230314],[0.0081453202292323,-0.11522341519594,0.01338130235672]],[[-0.16726587712765,0.12726965546608,0.053505785763264],[-0.031511425971985,0.040360055863857,0.0015476733678952],[0.012576096691191,-0.00065809494117275,-0.13751305639744]],[[0.041766464710236,-0.066009417176247,-0.021263560280204],[-0.033212751150131,0.061641354113817,-0.055862750858068],[-0.03136507794261,-0.028911212459207,-0.051543567329645]],[[0.19867005944252,-0.063188135623932,-0.040124539285898],[-0.025936776772141,0.054585002362728,0.10214603692293],[-0.05105771869421,-0.036932915449142,-0.07158736884594]],[[-0.08230859786272,0.078338660299778,0.03303462266922],[0.017741741612554,-0.10904085636139,0.022035680711269],[0.033841982483864,0.026768002659082,-0.042494438588619]],[[0.018292479217052,0.030938597396016,0.00364163890481],[-0.053860239684582,-0.053122878074646,0.0012760687386617],[-0.067366547882557,0.015185819938779,0.070260480046272]],[[-0.061682112514973,-0.048049114644527,0.056478355079889],[0.14495991170406,-0.043718617409468,0.03515612706542],[-0.047659203410149,0.016217229887843,-0.053698197007179]],[[0.045425180345774,-0.029591994360089,-0.012850309722126],[-0.027129957452416,0.014458270743489,-0.047304831445217],[-0.017790731042624,0.023911254480481,0.096752643585205]],[[-0.028610063716769,0.061186760663986,0.031638041138649],[0.0099659888073802,-0.033742357045412,-0.018260572105646],[-0.018815267831087,-0.020711429417133,0.026623016223311]],[[-0.012861258350313,0.051974307745695,0.017883280292153],[-0.042207654565573,-0.032288670539856,0.041690554469824],[-0.035264678299427,0.090277060866356,-0.028389435261488]],[[-0.1327006816864,-0.12360209971666,-0.11422535032034],[0.004495922010392,-0.090857818722725,-0.080294869840145],[-0.12430231273174,-0.051918614655733,0.013003365136683]],[[-0.034508645534515,0.027442304417491,-0.012584679760039],[0.023894257843494,0.028924852609634,0.015948818996549],[-0.089486017823219,-0.17338153719902,-0.11205983161926]],[[-0.058796994388103,0.00549252377823,-0.10543911904097],[-0.02186163701117,0.074179403483868,-0.11602689325809],[0.023565171286464,0.037576820701361,0.0026056263595819]],[[0.085336685180664,-0.034597665071487,-0.052601236850023],[0.070870779454708,-0.004114193841815,-0.02654498629272],[-0.0091739445924759,-0.067394338548183,-0.0073551232926548]],[[0.034170728176832,0.049986783415079,-0.025585357099771],[0.0074332063086331,0.0729965493083,-0.0022756780963391],[-0.061562206596136,-0.0090137058869004,0.043208610266447]],[[0.019452705979347,-0.026467952877283,0.0098071880638599],[-0.070119850337505,-0.11670497059822,-0.10512110590935],[-0.046988535672426,-0.1048705726862,-0.079887181520462]],[[0.095887154340744,-0.027657674625516,-0.053081844002008],[0.01839642599225,0.014110659249127,-0.022955980151892],[0.050729598850012,0.0067209722474217,0.075491316616535]],[[0.076241798698902,0.062813729047775,0.11298959702253],[-0.061290342360735,-0.03462490811944,-0.14988125860691],[-0.02669370919466,-0.073582842946053,-0.050266306847334]],[[0.0053477701731026,0.10152534395456,0.024461766704917],[0.1709116101265,-0.07991161942482,0.028260082006454],[0.051991619169712,0.12368274480104,0.0066112075001001]],[[0.035648662596941,0.086653888225555,-0.066330552101135],[0.042282540351152,-0.038026794791222,0.0048565124161541],[0.058017943054438,0.08566952496767,0.089018374681473]],[[0.068362556397915,-0.040787693113089,0.005847763735801],[-0.0069321757182479,-0.080976270139217,-0.026127250865102],[0.074848651885986,-0.012718556448817,0.051840864121914]],[[-0.049659091979265,-0.0083973333239555,-0.00053582264808938],[-0.072016432881355,0.010920139029622,-0.0043314644135535],[0.10792374610901,-0.024076890200377,-0.036800660192966]],[[-0.042316321283579,-0.022298775613308,0.0020769448019564],[-0.029846183955669,0.16443803906441,-0.00057756167370826],[0.032458808273077,0.021665677428246,0.056560289114714]]],[[[-0.013573979027569,-0.012447374872863,-0.072468899190426],[0.0074253594502807,0.0077361171133816,-0.021727172657847],[-0.041926838457584,0.0015720912488177,0.00079994177212939]],[[0.025020828470588,-0.0029444107785821,-0.038225036114454],[-0.020892824977636,-0.06268072873354,-0.055958066135645],[0.013085673563182,0.02446229942143,0.019347686320543]],[[-0.01754973269999,0.0074668941088021,0.02349098585546],[-0.03761151432991,-0.087356604635715,0.016989143565297],[0.0020927623845637,0.025376116856933,-0.044011801481247]],[[0.0020359205082059,0.0049034208059311,0.036518782377243],[0.029214965179563,-0.039504677057266,0.019822841510177],[-0.037458676844835,-0.018282460048795,0.045369066298008]],[[0.040633328258991,-0.081940434873104,-0.037269081920385],[-0.016626380383968,0.070379994809628,0.0060944124124944],[0.037945494055748,0.043618150055408,0.043805938214064]],[[0.058936525136232,0.0087489392608404,0.012182614766061],[0.037667747586966,0.047955013811588,-0.0066293645650148],[-0.040708754211664,-0.059201542288065,0.0080555994063616]],[[0.090996228158474,0.044077429920435,-0.051389493048191],[-0.07452117651701,0.081358700990677,-0.033857706934214],[-0.06112752482295,0.0087138963863254,-0.042074173688889]],[[0.06556198745966,0.078775815665722,-0.094572566449642],[-0.016306649893522,0.0059569617733359,0.0010456477757543],[0.068880274891853,-0.030727418139577,0.0061060935258865]],[[0.034033816307783,0.0019058942561969,0.045048758387566],[0.053726844489574,0.066436842083931,-0.011653233319521],[-0.027290059253573,-0.067688189446926,-0.044815454632044]],[[-0.050323244184256,0.0044411378912628,0.016328385099769],[0.001428670831956,-0.015316192992032,0.045692473649979],[-0.064944617450237,0.057776119560003,-0.010249188169837]],[[0.047150932252407,-0.026320254430175,0.026061562821269],[-0.052292376756668,-0.028766555711627,0.0026588756591082],[0.040534298866987,-0.041737653315067,-0.019009228795767]],[[0.0099729113280773,0.031495645642281,0.028383061289787],[0.046965762972832,0.029364541172981,0.015784868970513],[-0.035583905875683,0.011657170951366,-0.050699692219496]],[[0.014923864044249,0.081374831497669,0.0033257845789194],[0.038449540734291,0.021558173000813,-0.021731838583946],[-0.01827485486865,0.067386150360107,-0.077596232295036]],[[-0.00045916246017441,0.029185386374593,-0.019633932039142],[-0.009488201700151,-0.055698338896036,0.023637156933546],[0.025302609428763,0.030608039349318,0.022394377738237]],[[0.050961375236511,0.0095820156857371,-0.05049529671669],[-0.00083945167716593,0.011795863509178,-0.020809255540371],[-0.027533549815416,-0.0096512334421277,0.02078939974308]],[[-0.0020501108374447,-0.042835161089897,-0.024389896541834],[-0.059043321758509,-0.06999172270298,0.058792285621166],[-0.038262695074081,0.02969584427774,0.054585486650467]],[[-0.031402036547661,-0.052025146782398,-0.013669447973371],[0.0080033661797643,0.014939340762794,-0.059210881590843],[-0.034497108310461,-0.0031715931836516,0.040942993015051]],[[-0.08325382322073,0.056902047246695,0.015979524701834],[-0.0037064750213176,-0.02315797097981,0.021236954256892],[0.0071175605989993,0.060199286788702,-0.041267152875662]],[[-0.0031410113442689,-0.033205378800631,-0.01529829017818],[0.042730163782835,-0.094408869743347,-0.011353401467204],[-0.05679764226079,0.0092624984681606,0.0066070426255465]],[[0.02857393398881,0.016445638611913,0.076326921582222],[-0.07161720842123,0.0054159262217581,0.010802009142935],[-0.028507079929113,-0.0090718669816852,0.10439509153366]],[[0.024410637095571,0.0008211939712055,0.036028817296028],[0.031464315950871,-0.005725288297981,-0.016432836651802],[0.017425367608666,-0.007880755700171,0.042653255164623]],[[-0.0012390738120303,0.056971024721861,-0.06545090675354],[-0.00093033845769241,-0.058708932250738,0.025028740987182],[0.031315173953772,0.0098618930205703,0.040971256792545]],[[0.0076147178187966,-0.079953700304031,-0.073277652263641],[-0.043149773031473,-0.018499575555325,-0.069288060069084],[0.038564957678318,0.0052269613370299,-0.011182620190084]],[[0.0021151013206691,-0.004182361997664,0.011322846636176],[-0.045799523591995,-0.078703194856644,0.013210731558502],[-0.0094083240255713,0.031548045575619,-0.01714089512825]],[[-0.0055114454589784,0.070225298404694,0.02859491109848],[0.030624099075794,0.054482582956553,0.014602417126298],[-0.067509293556213,-0.058372914791107,0.0082461778074503]],[[0.0028869139496237,-0.036008954048157,-0.058297444134951],[-0.015378802083433,-0.019876729696989,0.050095457583666],[0.017950618639588,0.027016788721085,0.069037102162838]],[[0.021676000207663,0.036208733916283,0.045263983309269],[0.038663148880005,0.014449024572968,-0.0014221359742805],[-0.037965554744005,-0.031244030222297,-0.041645400226116]],[[-0.039381023496389,-0.048563033342361,-0.01826480217278],[-0.0023893299512565,-0.030215207487345,0.049493443220854],[-0.030732875689864,0.022078290581703,0.060192935168743]],[[-0.0059254681691527,-0.00017300504259765,-0.020387636497617],[0.0076719080097973,-0.013704681769013,0.15663695335388],[-0.08233043551445,0.075543515384197,0.010911735706031]],[[0.0048188734799623,0.012061360292137,0.032184761017561],[-0.0013270067283884,-0.018363725394011,-0.049455318599939],[-0.045227963477373,-0.00038238224806264,0.047668717801571]],[[0.064762234687805,-0.016292968764901,-0.033928442746401],[0.0028805043548346,0.034281030297279,0.034247301518917],[0.0043476084247231,0.038894191384315,-0.093532875180244]],[[-0.0073104710318148,-0.045004151761532,-0.016341265290976],[0.025098793208599,-0.044761136174202,-0.015577700920403],[-0.02709523960948,-0.0067254994064569,-0.026654286310077]],[[0.041528131812811,0.021224498748779,-0.053374234586954],[0.016468599438667,0.014298962429166,0.012397623620927],[0.010355135425925,0.073163099586964,-0.10651429742575]],[[-0.0027205385267735,0.0045998855493963,0.0082954345270991],[-0.041003182530403,0.039110854268074,-0.005803728941828],[-0.0021276385523379,0.0033835517242551,0.014273632317781]],[[0.0073974542319775,-0.016969598829746,0.0112772481516],[0.014219826087356,0.04350471496582,0.027596453204751],[-0.0551917552948,0.06730242818594,-0.030483990907669]],[[0.038878343999386,0.060667306184769,-0.012288105674088],[0.020130440592766,-0.099729239940643,0.028218677267432],[-0.050091873854399,-0.00091189448721707,0.087293572723866]],[[0.019983593374491,0.028881477192044,-0.010308007709682],[-0.072966739535332,-0.012926639989018,-0.027606369927526],[0.047144424170256,0.0014030658639967,0.0020634445827454]],[[0.049471095204353,-0.010224708355963,-0.027476489543915],[-0.029947184026241,-0.030595498159528,0.055943466722965],[-0.084179989993572,-0.011815635487437,0.009206379763782]],[[-0.018027547746897,0.068461857736111,-0.034351479262114],[0.065112352371216,-0.031360741704702,-0.0061383168213069],[-0.0096947383135557,0.0979193598032,-0.069506637752056]],[[-0.0026595985982567,-0.038360480219126,0.013102163560688],[0.018219599500299,-0.031424663960934,0.069592580199242],[0.013024197891355,0.0076782642863691,0.016234466806054]],[[0.0008537860121578,-0.019765144214034,-0.034282058477402],[-0.031827308237553,-0.053659647703171,-0.059664268046618],[-0.021301284432411,0.038065541535616,-0.037038169801235]],[[0.026569740846753,-0.051927510648966,-0.0062003321945667],[-0.0096446741372347,-0.023016590625048,0.029615577310324],[-0.013610396534204,0.064625918865204,-0.0045100441202521]],[[0.048198778182268,-0.026926569640636,-0.029223915189505],[0.020000699907541,0.053570795804262,-0.041491117328405],[-0.0092927468940616,0.053631659597158,0.0032868543639779]],[[0.0065855178982019,0.069137312471867,0.044509578496218],[-0.012890480458736,-0.10679058730602,-0.0083727901801467],[0.045820992439985,-0.041444092988968,-0.011251982301474]],[[-0.03460755944252,0.0012851502979174,-0.0066745369695127],[0.022161366418004,0.056844934821129,0.05385497957468],[0.03581765666604,-0.039267782121897,-0.030258508399129]],[[-0.0048125283792615,-0.031108755618334,-0.0053297961130738],[0.095726564526558,-0.037977881729603,-0.019087512046099],[-0.012103298678994,-0.038492545485497,-0.017009804025292]],[[0.054636608809233,-0.043474428355694,0.013339112512767],[0.011321284808218,-0.0080140689387918,-0.039332468062639],[0.04195099323988,-0.052645925432444,0.044368170201778]],[[-0.033037882298231,0.022785723209381,0.0070670442655683],[0.00069613684900105,-0.056570276618004,-0.025488300248981],[0.0041320072486997,0.043189413845539,-0.048692706972361]],[[-0.0072533506900072,0.011772406287491,-0.042092580348253],[-0.038015630096197,-0.051391504704952,0.043665982782841],[0.0019692468922585,-0.077274486422539,-0.04858461022377]],[[-0.027406198903918,-0.029345599934459,0.0011942432029173],[-0.044906828552485,0.033920992165804,-0.0077823861502111],[0.017816826701164,0.059379205107689,-0.046908915042877]],[[-0.011281160637736,0.055681813508272,-0.038122184574604],[0.044508934020996,0.039974298328161,-0.039984717965126],[-0.017416879534721,0.030738823115826,0.039314772933722]],[[-0.027203369885683,-0.040315140038729,0.050906516611576],[-0.0094530144706368,0.041010618209839,0.062940001487732],[-0.034365642815828,-1.8899532733485e-05,0.052181005477905]],[[-0.017995718866587,-0.064849458634853,-0.0032978209201247],[0.020939216017723,0.033618044108152,-0.034023489803076],[-0.022780112922192,0.10644380748272,0.032776616513729]],[[-0.020076105371118,-0.013073140755296,0.038727756589651],[0.0007235380471684,-0.02942606434226,-0.024554841220379],[0.065737374126911,-0.0055448301136494,-0.00093967525754124]],[[-0.027799837291241,0.062810003757477,0.0070464452728629],[-0.033781949430704,-0.050221275538206,0.08429117500782],[-0.075827896595001,-0.03107376396656,-0.020114688202739]],[[0.012327937409282,-0.008694346062839,0.030240420252085],[0.010097397491336,-0.01488951779902,0.0065087950788438],[0.031642597168684,-0.026174683123827,0.10358510166407]],[[-0.01306629460305,0.015400846488774,0.017827108502388],[0.028520880267024,0.036619395017624,-0.093387067317963],[0.030529245734215,0.034549307078123,-0.04069022461772]],[[-0.041941188275814,0.090333223342896,-0.052787519991398],[0.043075803667307,-0.0076279886998236,0.066863380372524],[-0.016581637784839,0.01441678404808,-0.0081316856667399]],[[0.062662482261658,0.027662303298712,0.016410388052464],[-0.0040965313091874,-0.010591996833682,0.016944879665971],[0.046601045876741,-0.025490876287222,-0.11503351479769]],[[0.039175018668175,-0.014003617689013,-0.016362546011806],[-0.0018881981959566,-0.041728768497705,-0.039201971143484],[0.030102023854852,0.012201055884361,0.0099020414054394]],[[-0.068046890199184,-0.026933638378978,-0.038605455309153],[0.0026345655787736,-0.025390788912773,-0.049745060503483],[0.029683846980333,0.058974970132113,0.021829511970282]],[[-0.091034263372421,0.019847422838211,0.010894030332565],[0.0013805051567033,-0.061460677534342,0.037234142422676],[-0.01204673666507,0.070800840854645,-0.028471624478698]],[[0.0087032681331038,-0.0083212908357382,0.039327669888735],[0.076094336807728,0.03092460334301,-0.0073221661150455],[-0.03901894018054,0.023118741810322,-0.013629811815917]],[[0.073211394250393,0.026376061141491,0.0099949426949024],[0.005902954377234,-0.05622835084796,0.057780563831329],[-0.0070859221741557,-0.08943085372448,0.047606948763132]],[[-0.0043563204817474,-0.033597130328417,-0.024888016283512],[0.079604759812355,0.047204300761223,-0.050022523850203],[-0.083921305835247,0.0007616359507665,0.0088839288800955]],[[-0.083949364721775,-0.020967353135347,-0.0016447552479804],[-0.00067710544681177,0.020410234108567,-0.05182183906436],[-0.057280138134956,-0.010863876901567,-0.0042984778992832]],[[-0.022362990304828,0.053195960819721,-0.013235294260085],[-0.012164184823632,-0.015061616897583,0.033230040222406],[0.00022963217634242,0.026201784610748,-0.027526684105396]],[[0.0018579585012048,0.013031395152211,0.015010443516076],[0.01473421882838,-0.028133558109403,0.076841481029987],[-0.024258151650429,0.023677805438638,-0.044007051736116]],[[-0.015874698758125,-0.019676674157381,0.054310835897923],[-0.04557192325592,0.062158290296793,0.027733689174056],[-0.14481276273727,-0.010586451739073,0.015030156821012]],[[-0.040286891162395,0.075296364724636,0.059490442276001],[-0.0020381063222885,-0.0071086524985731,0.089800626039505],[0.012705314904451,-0.018645850941539,0.044367466121912]],[[0.023842765018344,0.03943982347846,0.059471633285284],[-0.026965998113155,-0.00298643251881,-0.025863608345389],[0.023228390142322,0.10870084166527,0.017061479389668]],[[0.080451816320419,0.03316280990839,0.023046214133501],[-0.013679805211723,0.036670587956905,-0.01139032561332],[-0.0055642756633461,0.042671330273151,0.046609163284302]],[[-0.011654605157673,-0.077059000730515,-0.0055346353910863],[-0.032666895538568,0.077063791453838,0.015313274227083],[-0.01765607111156,-0.025111891329288,0.00043589947745204]],[[0.052535690367222,-0.0042518195696175,0.041934691369534],[-0.053030405193567,0.038842588663101,0.094045422971249],[0.042874529957771,0.079452335834503,-0.064861230552197]],[[0.12520737946033,0.0018740118248388,-0.035765413194895],[0.015918923541903,-0.028698459267616,0.04636412858963],[-0.013254162855446,-0.059866547584534,0.02792888879776]],[[-0.0097514493390918,-0.024566505104303,0.038419894874096],[0.063087485730648,-0.043276641517878,0.026924848556519],[0.027177741751075,-0.035886656492949,-0.029134709388018]],[[-0.025586826726794,0.0040517630986869,-0.036819167435169],[0.0093090236186981,0.04323210939765,-0.034638755023479],[-0.020118603482842,0.017387084662914,-0.037394337356091]],[[0.023865958675742,0.013181514106691,0.053836096078157],[-0.022329876199365,0.024345276877284,-0.025208922103047],[0.042174037545919,-0.050510872155428,0.0011997659457847]],[[-0.0073575195856392,-0.020633857697248,0.0048207705840468],[-0.010702774859965,-0.019698210060596,0.021615022793412],[0.041773416101933,-0.0058896937407553,0.0033357329666615]],[[0.020522836595774,0.013613743707538,-0.010857179760933],[-0.017665401101112,-0.024482946842909,-0.029158288612962],[0.0012001428985968,-0.0062011205591261,0.018120961263776]],[[-0.038227640092373,0.01609599404037,-0.046881098300219],[-0.017967615276575,-0.020959228277206,0.021122952923179],[0.010642377659678,0.0038756644353271,0.069777235388756]],[[0.00080722162965685,0.073157154023647,0.024435725063086],[-0.047634769231081,0.014513115398586,0.096670940518379],[0.052492834627628,-0.013892355374992,0.039993546903133]],[[0.025880374014378,0.014539630152285,0.042001612484455],[-0.010037152096629,0.10141181200743,-0.028241511434317],[0.022346569225192,0.055461052805185,-0.010684528388083]],[[0.058309901505709,0.019484955817461,-0.019101494923234],[-0.029191449284554,-0.034534584730864,0.0029814038425684],[0.050038579851389,-0.0094914054498076,0.034278370440006]],[[-0.0089279441162944,-0.0084991902112961,-0.0879977196455],[0.035343606024981,-0.049318347126245,0.029573477804661],[-0.0013367336941883,-0.04814550280571,0.096253648400307]],[[-0.075086377561092,-0.020734880119562,0.0086274752393365],[0.0068206689320505,-0.0052269608713686,-0.014817855320871],[-0.034231752157211,-0.0086365882307291,0.062542736530304]],[[-0.092282108962536,0.0032751595135778,0.016805030405521],[-0.10294410586357,-0.038882002234459,0.053249873220921],[-0.026732405647635,-0.0060928757302463,0.068032920360565]],[[0.051014184951782,-0.0092080300673842,0.059516772627831],[-0.011489608325064,0.019748575985432,-0.0035418376792222],[-0.045753862708807,0.043473228812218,0.031990725547075]],[[-0.051685191690922,-0.042370423674583,0.010528972372413],[0.074911065399647,0.0191290974617,0.023974260315299],[0.027688158676028,0.03926669806242,0.011427067220211]],[[0.044117007404566,-0.0039024611469358,-0.025054272264242],[0.085886113345623,0.022122656926513,0.028572652488947],[0.01383039355278,0.0045427861623466,-0.015234048478305]],[[0.0072893761098385,-0.029400415718555,0.087338969111443],[-0.026317475363612,-0.011230370029807,-0.055238831788301],[0.071537420153618,0.044405836611986,-0.021201020106673]],[[-0.021479798480868,-0.031250528991222,0.0659459233284],[0.023930853232741,-0.061975758522749,0.054439540952444],[-0.023876762017608,0.0093911718577147,0.061276722699404]],[[0.046878963708878,-0.054029397666454,-0.0020246473141015],[-0.042772781103849,0.10404039174318,-0.022742051631212],[-0.023965893313289,0.034766677767038,-0.017478436231613]],[[-0.018193118274212,-0.050812732428312,0.016542334109545],[0.10132651776075,-0.043218024075031,-0.074551232159138],[0.0032481751404703,0.0081060277298093,0.0060633327811956]],[[0.061976253986359,-0.042929921299219,-0.029986467212439],[-0.020750485360622,0.0010920352069661,-0.043211229145527],[0.032934010028839,-0.02260572835803,-0.015930419787765]],[[-0.036609709262848,-0.027662701904774,-0.0023439098149538],[0.055353447794914,0.0011865264968947,-0.052924305200577],[-0.0035356129519641,-0.0049018040299416,-0.055307190865278]],[[0.018669065088034,0.047257766127586,0.041826844215393],[-0.035166386514902,0.040691509842873,0.046106219291687],[-0.048263128846884,0.049169667065144,-0.00011039838864235]],[[0.041775938123465,0.028283882886171,-0.024176891893148],[-0.023985182866454,0.001076411572285,-0.046507682651281],[-0.022422799840569,0.10477675497532,0.016842817887664]],[[0.016149528324604,0.062422905117273,-0.012724143452942],[0.063376672565937,-0.0075078988447785,0.01216752640903],[0.0010102686937898,0.023792898282409,0.036727782338858]],[[0.015357870608568,-0.026587888598442,0.029087455943227],[0.0075490535236895,0.072754621505737,-0.038682788610458],[-0.017373371869326,-0.010043041780591,0.047294553369284]],[[0.041711423546076,0.043486207723618,-0.092736415565014],[0.036987494677305,0.065660521388054,0.053968850523233],[-0.070903018116951,0.022918701171875,0.061256799846888]],[[-0.0046460679732263,0.039494775235653,0.028382614254951],[0.017583105713129,-0.057364549487829,0.056303489953279],[0.06508881598711,-0.036496501415968,0.017341027036309]],[[-0.037470906972885,-0.10521218925714,0.059000987559557],[0.0050994139164686,-0.013360518962145,-0.079574540257454],[-0.031242527067661,-0.02350239828229,0.03008347004652]],[[-0.0098116574808955,0.0082722688093781,0.064522907137871],[0.018801536411047,-0.023738110437989,-0.036903530359268],[-0.046732418239117,-0.028433784842491,-0.07249228656292]],[[0.030453754588962,0.056057769805193,0.027728220447898],[0.032724365592003,0.08935272693634,-0.044169757515192],[-0.044392440468073,0.061348304152489,0.027762550860643]],[[0.025858579203486,-0.021356146782637,-0.0074512539431453],[-0.027365712448955,0.010186115279794,0.025059744715691],[0.039366029202938,0.075405679643154,-0.025957614183426]],[[0.019272513687611,-0.033204641193151,0.051791660487652],[0.0021901899017394,0.058876499533653,0.022236902266741],[-0.022008653730154,-0.003173389704898,-0.041245851665735]],[[-0.026544082909822,0.014602766372263,-0.091325111687183],[-0.019279839470983,0.062440324574709,0.041849210858345],[0.0097093787044287,-0.0039924858137965,0.044439759105444]],[[-0.027655432000756,0.043208744376898,0.025998687371612],[0.0014003581600264,-0.017125511541963,0.0080641871318221],[-0.057734370231628,0.057366859167814,0.0013669187901542]],[[-0.075204879045486,-0.11307472735643,0.039000425487757],[0.068498075008392,-0.072519451379776,-0.028760764747858],[-0.016420666128397,0.0047199674881995,-0.026464249938726]],[[0.060937382280827,-0.041563872247934,0.020095018669963],[-0.0083045875653625,0.020026255398989,0.093173362314701],[0.003753588302061,0.043448802083731,0.0099896471947432]],[[-0.10761708021164,0.0058814170770347,-0.010157535783947],[0.019903874024749,-0.039494000375271,0.016040569171309],[-0.039498947560787,0.0053416946902871,-0.0020719761960208]],[[-0.014697888866067,0.01944893784821,-0.07225775718689],[0.0048415251076221,-0.0074263536371291,0.010661096312106],[0.039397045969963,-0.00075402780203149,-0.0095604518428445]],[[0.022019600495696,-0.015489049255848,0.015088384971023],[-0.014618351124227,-7.8513956395909e-05,-0.015002756379545],[-0.052705068141222,0.0090178297832608,0.019190602004528]],[[0.001784390071407,0.019231013953686,-0.020154023543],[-0.037838026881218,-0.02610301785171,0.031823858618736],[-0.01007129624486,-0.03653733804822,-0.01988197863102]],[[0.0049919122830033,0.0098794708028436,0.019003879278898],[0.0028956558089703,-0.036806039512157,-0.030308725312352],[0.041340060532093,0.0070030000060797,-0.0087676141411066]],[[-0.001072866958566,0.0043592723086476,-0.006590997800231],[-0.021273955702782,-0.025044510141015,-0.041820500046015],[-0.012754284776747,0.078878663480282,-0.042077820748091]],[[-0.009871824644506,0.058008972555399,-0.036509521305561],[0.073587253689766,-0.078829139471054,0.022624084725976],[0.023738211020827,0.0033268847037107,0.0090342266485095]],[[-0.013503034599125,-0.027558043599129,-0.072574339807034],[0.013035210780799,0.00073738332139328,0.044080600142479],[-0.020601820200682,0.034184712916613,-0.025446835905313]],[[0.0029169491026551,-0.056661054491997,0.036014843732119],[0.062869489192963,-0.04606956243515,-0.0022040845360607],[-0.085034884512424,-0.030768560245633,0.012046835385263]],[[-0.0015128151280805,-0.058050863444805,0.0014172183582559],[0.032876506447792,-0.039974316954613,0.0082163633778691],[0.027626425027847,-0.070792853832245,0.016047455370426]],[[0.048850577324629,0.017707670107484,-0.032955132424831],[-0.01640796661377,0.095196776092052,-0.0042118704877794],[0.018968937918544,-0.015116606839001,-0.020924923941493]],[[0.040553342550993,-0.046460948884487,-0.0027663342189044],[0.060254216194153,-0.034241888672113,0.035239327698946],[0.041505109518766,0.11550786346197,0.00019774114480242]],[[0.066167779266834,-0.047892320901155,0.053069327026606],[0.021715192124248,0.093377508223057,-0.10222782194614],[-0.03331222012639,-0.01434556953609,0.065290257334709]],[[0.013188730925322,0.0010124215623364,0.029578441753983],[-0.070638433098793,-0.033604510128498,-0.038228794932365],[-0.026095913723111,0.0067460155114532,-0.026292769238353]],[[-0.058472208678722,0.021197298541665,0.065524734556675],[-0.0092809638008475,0.049187403172255,0.037989422678947],[0.045274883508682,-0.0011309165274724,-0.082026749849319]],[[0.0016723317094147,0.028568718582392,-0.019212448969483],[-0.0024353410117328,-0.0084998458623886,-0.044688921421766],[0.12142565101385,0.0016455276636407,0.039839304983616]],[[-0.023521641269326,-0.00059529155259952,-0.014454324729741],[-0.031046912074089,0.046766873449087,0.039102774113417],[0.036018066108227,0.051435243338346,0.019236896187067]]],[[[-0.1582894474268,-0.17445307970047,0.027646349743009],[-0.023400742560625,-0.15348349511623,0.14587228000164],[0.12574678659439,0.086487084627151,0.19041322171688]],[[0.080867141485214,0.048592649400234,-0.21731387078762],[0.031706999987364,0.0027871232014149,-0.21587724983692],[0.019380986690521,-0.086357600986958,-0.070964895188808]],[[0.05335795879364,0.014908431097865,0.10836304724216],[-0.071045763790607,0.060286592692137,0.14256425201893],[-0.076507233083248,-0.1366755515337,-0.10226064920425]],[[0.0755969658494,0.016537014394999,-0.023193040862679],[-0.0082647828385234,-0.071128450334072,-0.06622452288866],[0.022126946598291,0.018929295241833,0.019359270110726]],[[-0.011241640895605,0.025702625513077,0.011892921291292],[-0.023728679865599,0.085847161710262,0.087569534778595],[0.13073447346687,0.14152510464191,0.11378607153893]],[[0.16585013270378,-0.14068800210953,0.11724687367678],[-0.084770388901234,-0.066316120326519,0.0035546012222767],[0.042835079133511,0.0031347211916,0.0042221294716001]],[[-0.023755485191941,0.013582919724286,-0.0052646542899311],[-0.1038206666708,-0.027569267898798,0.13515289127827],[0.1080934330821,-0.03974986448884,0.020469408482313]],[[-0.019144162535667,0.12481164187193,0.019823273643851],[0.075820177793503,0.013716660439968,-0.021628852933645],[0.06351426243782,0.010934050194919,0.014943922869861]],[[0.051838126033545,0.053368967026472,-0.089815124869347],[0.068470671772957,-0.052715115249157,-0.097673237323761],[0.033485636115074,0.05305889621377,-0.0075725787319243]],[[0.092828452587128,0.0034748218022287,0.064589247107506],[0.0012828927719966,-0.10248481482267,0.0043894732370973],[-0.053377103060484,0.0079588778316975,0.035912033170462]],[[0.10821778327227,-0.10213398188353,-0.014766670763493],[-0.032268598675728,-0.025377124547958,0.053560227155685],[0.1350481659174,-0.011080768890679,-0.071073964238167]],[[0.084701433777809,0.085736021399498,0.23393043875694],[-0.12516659498215,0.35661438107491,-0.38216865062714],[0.0012801598059013,-0.021407576277852,0.012875131331384]],[[0.1022566780448,-0.025064863264561,0.09337056428194],[0.019872985780239,-0.01776722446084,-0.056484386324883],[0.018804771825671,-0.074469193816185,-0.13633082807064]],[[0.034330308437347,-0.10894252359867,-0.034140471369028],[-0.014013252221048,-0.17266631126404,-0.092286862432957],[-0.011625912971795,-0.090165704488754,0.10882321000099]],[[-0.015739066526294,-0.12986582517624,-0.01309363078326],[-0.0049712159670889,-0.16905565559864,0.0064763464033604],[0.01464902702719,0.052788719534874,0.060129269957542]],[[0.01129321847111,0.082091964781284,-0.12156003713608],[0.15281477570534,0.0020807969849557,0.10252311825752],[-0.055424053221941,0.03113866597414,0.041943501681089]],[[-0.075840942561626,0.058785483241081,-0.14291816949844],[0.13690440356731,-0.011722058989108,-0.1823928207159],[-0.050105825066566,0.086859285831451,-0.075457200407982]],[[-0.028290646150708,-0.11477052420378,-0.1165461614728],[0.043159287422895,0.063500866293907,0.076177984476089],[0.20899507403374,0.071772672235966,-0.095686621963978]],[[-0.068672493100166,0.1298840790987,0.062854029238224],[-0.0028657738585025,-0.085963472723961,-0.041936028748751],[-0.018451016396284,0.016938703134656,-0.034409418702126]],[[0.096790447831154,0.068639352917671,0.052964046597481],[0.033371482044458,-0.0033798390068114,-0.049549110233784],[-0.10466788709164,0.011518912389874,0.036138813942671]],[[0.22877106070518,0.17053915560246,0.0061482507735491],[-0.060723271220922,0.072974972426891,-0.015734642744064],[-0.13653951883316,-0.12869435548782,-0.11510520428419]],[[-0.018952315673232,0.10391762852669,0.033855583518744],[0.19096474349499,-0.026156285777688,-0.17296688258648],[0.033234462141991,-0.07326116412878,-0.075217828154564]],[[0.13038669526577,-0.084258243441582,-0.07150612026453],[0.035711754113436,-0.094575323164463,-0.041079089045525],[0.14254094660282,0.068058915436268,-0.039893750101328]],[[-0.0022037888411433,-0.074811913073063,-0.11375959217548],[-0.054749418050051,0.094366393983364,-0.070404998958111],[-0.030362941324711,-0.17099992930889,0.069274365901947]],[[0.41096496582031,0.10179726779461,0.11310469359159],[-0.047791533172131,-0.10186596214771,0.41989058256149],[0.080430082976818,0.42386791110039,-0.14325594902039]],[[-0.089378356933594,0.02832992747426,-0.14299896359444],[-0.030373517423868,-0.12974768877029,-0.27077856659889],[-0.046912934631109,-0.065295435488224,-0.030662465840578]],[[-0.10051953047514,-0.10469628870487,-0.067347355186939],[0.082771174609661,-0.024542482569814,-0.018072048202157],[0.13510173559189,0.1679712086916,0.024009423330426]],[[0.12293831259012,0.036302428692579,0.0050494540482759],[0.01111825928092,-0.039925243705511,-0.10839699208736],[-0.13370452821255,-0.067392349243164,0.079062588512897]],[[-0.024762002751231,-0.026451176032424,-0.060023698955774],[0.025511704385281,-0.06044615060091,0.074552349746227],[0.066344775259495,0.11413443088531,0.14159244298935]],[[0.11881804466248,0.028891718015075,0.059803944081068],[0.036534391343594,-0.053868040442467,-0.097745515406132],[0.015229274518788,-0.051094107329845,0.017515957355499]],[[0.00049657886847854,-0.15772837400436,-0.12353990972042],[-0.13691584765911,-0.15243853628635,-0.21820579469204],[-0.16854649782181,-0.25786066055298,-0.15983812510967]],[[-0.24991077184677,0.064853452146053,0.015968712046742],[-0.13957314193249,-0.087818555533886,-0.033716175705194],[-0.0088769132271409,-0.098196916282177,-0.029271757230163]],[[0.11513517796993,0.072339795529842,-0.021287843585014],[0.030031729489565,-0.016843782737851,-0.097642056643963],[-0.031204737722874,-0.089190930128098,-0.018502468243241]],[[0.11182689666748,0.14591185748577,-0.054265096783638],[0.0018727323040366,-0.10274660587311,0.19689258933067],[-0.11570862680674,-0.10472253710032,0.010211231186986]],[[-0.01757650449872,-0.045030929148197,-0.054129015654325],[-0.065192997455597,-0.060523796826601,0.072260417044163],[-0.086531944572926,-0.043589383363724,0.19035741686821]],[[-0.11633615940809,0.11011266708374,-0.097721733152866],[0.026129623875022,0.094118349254131,0.12527292966843],[0.046184260398149,0.059896904975176,-0.18186868727207]],[[0.029116319492459,-0.10678651928902,0.18425169587135],[-0.19896532595158,0.29928070306778,0.025552786886692],[0.18383021652699,-0.047870885580778,-0.074852637946606]],[[-0.15672279894352,0.077773049473763,0.1499263048172],[0.016168298199773,-0.11807384341955,-0.1808096319437],[-0.092801235616207,-0.058428045362234,0.16402544081211]],[[-0.14145724475384,-0.021002404391766,-0.078234322369099],[-0.11687009036541,-0.25957506895065,0.2694034576416],[-0.29593628644943,0.16654333472252,0.16457799077034]],[[-0.05104972422123,0.033168286085129,0.14640213549137],[-0.13288821280003,-0.055649027228355,-0.091438218951225],[0.049413412809372,-0.18544714152813,-0.026892887428403]],[[0.045993741601706,-0.0017100182594731,-0.063111983239651],[-0.13094438612461,0.15585471689701,-0.14927841722965],[-0.015703838318586,-0.15200194716454,0.0015109032392502]],[[-0.068388447165489,-0.028323769569397,-0.039247013628483],[-0.064031131565571,0.030452102422714,-0.032675232738256],[0.15947970747948,-0.029021600261331,0.0071947621181607]],[[0.054569337517023,-0.14622877538204,0.065529495477676],[-0.0038291588425636,0.184300750494,0.01845209300518],[-0.0093206744641066,-0.027088837698102,-0.21065990626812]],[[-0.10468941926956,0.099660158157349,-0.090670429170132],[0.042654447257519,0.015607194043696,-0.10003273934126],[0.18711593747139,-0.036163467913866,-0.066896431148052]],[[0.052768997848034,0.059803012758493,-0.16165791451931],[0.14205116033554,-0.065474689006805,-0.1987379938364],[-0.056816227734089,-0.04694315418601,-0.097889952361584]],[[0.044334299862385,-0.075167454779148,-0.032235588878393],[-0.065367616713047,-0.010883217677474,-0.080749660730362],[-0.021772241219878,-0.083147868514061,0.060525521636009]],[[-0.047258511185646,-0.026164198294282,-0.11025387793779],[-0.063783258199692,-0.14511340856552,0.12975338101387],[-0.11925321817398,0.086542129516602,-0.054438881576061]],[[-0.1544982790947,0.10767491906881,0.13990294933319],[0.12020348012447,0.12737490236759,-0.050527662038803],[0.072834827005863,-0.10725473612547,-0.11560069024563]],[[0.11184467375278,0.063726603984833,0.022496372461319],[0.074943892657757,-0.022022571414709,0.12751513719559],[0.10159756988287,0.15901263058186,-0.082373805344105]],[[0.070787824690342,0.069117277860641,0.016433702781796],[-0.094865947961807,0.059447251260281,-0.09491752833128],[-0.07976221293211,-0.065210521221161,-0.010079566389322]],[[0.089797034859657,-0.037199918180704,0.0032822405919433],[0.12798352539539,-0.12994277477264,-0.048375766724348],[-0.07938626408577,-0.13526606559753,0.040502231568098]],[[-0.032147485762835,-0.10220941901207,-0.050272673368454],[-0.087059862911701,0.052017707377672,-0.13056594133377],[0.20401771366596,0.091168746352196,-0.12560914456844]],[[-0.19591854512691,0.000854185258504,0.095614023506641],[0.030140215530992,0.13976135849953,-0.0140286590904],[0.089850150048733,-0.070863537490368,-0.014047863893211]],[[0.11442814022303,0.016816759482026,-0.031096471473575],[0.0035735843703151,0.022054662927985,0.097125671803951],[0.17715512216091,0.013590490445495,-0.0323282815516]],[[-0.0047918395139277,0.13194119930267,0.097220972180367],[-0.076553381979465,-0.075108148157597,0.023894138634205],[-0.081333734095097,-0.012170451693237,-0.095264986157417]],[[0.10062939673662,-0.31449565291405,-0.0462288223207],[-0.065632246434689,-0.17659060657024,0.16619847714901],[-0.11365260928869,-0.1055346429348,-0.011567638255656]],[[-0.096445880830288,-0.14184795320034,-0.10318605601788],[-0.077257804572582,0.011635302565992,-0.058969233185053],[0.096453942358494,0.0052767675369978,-0.087948203086853]],[[-0.03229009360075,0.011233101598918,0.058968521654606],[-0.01147708017379,-0.097443021833897,-0.082568973302841],[0.02710535377264,-0.061752337962389,-0.21998102962971]],[[-0.070720002055168,0.084164448082447,-0.030318334698677],[-0.10656502097845,0.1329128742218,-0.12483455985785],[-0.033274546265602,0.09353756159544,-0.029766926541924]],[[0.063735075294971,0.076272539794445,-0.0083052618429065],[0.18808610737324,-0.0087554985657334,0.049804538488388],[-0.069257989525795,0.014299020171165,-0.081332333385944]],[[0.10971738398075,0.044139545410872,0.053527377545834],[-0.088546641170979,-0.0043839714489877,-0.00078966346336529],[-0.105000436306,-0.12430230528116,-0.19098369777203]],[[-0.10692977160215,-0.011070128530264,-0.0020618150010705],[0.059445913881063,-0.10131154209375,-0.076895609498024],[-0.16698735952377,-0.18236048519611,0.053160469979048]],[[-0.17627103626728,-0.12780460715294,-0.045305397361517],[-0.11974932998419,0.045321062207222,-0.037254851311445],[0.038298785686493,-0.052516020834446,-0.044707391411066]],[[-0.020117811858654,0.067256562411785,-0.10609375685453],[-0.061429906636477,0.092645175755024,-0.18958851695061],[0.17433173954487,-0.065580368041992,-0.058211043477058]],[[0.10617631673813,0.028613202273846,-0.045507483184338],[-0.14254257082939,-0.096680387854576,0.10011848062277],[0.1598336994648,-0.095211632549763,0.099297650158405]],[[0.0020997554529458,-0.16421969234943,0.16699704527855],[0.0049834786914289,0.097659178078175,0.1326446980238],[-0.050316125154495,-0.098173059523106,-0.14082179963589]],[[0.0852275416255,-0.074997298419476,0.027420526370406],[-0.036707419902086,-0.02067843079567,-0.037674680352211],[0.10333318263292,0.0004826896765735,-0.032734349370003]],[[-0.16887310147285,-0.10580863058567,-0.11597690731287],[0.05229764059186,-0.10736358910799,-0.31539642810822],[0.023771146312356,-0.15513496100903,-0.0051192478276789]],[[-0.11590226739645,-0.012720660306513,0.043857548385859],[-0.13408187031746,0.11880202591419,0.11175250262022],[0.20055155456066,0.019536046311259,0.031689643859863]],[[-0.10562275350094,-0.091046296060085,-0.12066270411015],[0.041865609586239,-0.19891476631165,0.041089162230492],[-0.19270159304142,-0.091764472424984,0.11075139045715]],[[-0.0048231012187898,-0.17605900764465,0.051199819892645],[0.12873809039593,-0.10422817617655,-0.12934944033623],[-0.21470257639885,-0.17250888049603,0.040185872465372]],[[0.24646928906441,0.21489037573338,-0.0081706177443266],[0.0074763661250472,0.086459368467331,0.039942439645529],[0.0082533396780491,0.014158508740366,0.021144725382328]],[[0.017001323401928,-0.37029081583023,0.14691753685474],[-0.2466771453619,0.019416691735387,0.094666361808777],[0.075772106647491,0.14616541564465,0.21898673474789]],[[0.011670770123601,0.027069810777903,0.03886578604579],[0.027089569717646,0.071192190051079,0.0097350860014558],[0.032219555228949,-0.11816295981407,0.015820171684027]],[[-0.22026105225086,-0.036148764193058,-0.16849310696125],[-0.087543286383152,-0.052944175899029,0.0017171422950923],[0.0041881669312716,0.05123283714056,-0.096273988485336]],[[-0.12276419997215,0.086531966924667,-0.090562075376511],[0.092595547437668,-0.1742780059576,0.015230284072459],[0.095426574349403,0.052124947309494,-0.078156352043152]],[[-0.16015923023224,0.077809497714043,-0.020379571244121],[-0.19597616791725,0.0077751758508384,-0.0083904275670648],[0.047978453338146,0.10139308124781,0.069939538836479]],[[-0.14453215897083,-0.096345439553261,0.02600116468966],[0.013913137838244,0.1123044937849,0.021375056356192],[0.025652214884758,0.10827904939651,0.020600771531463]],[[0.073422662913799,0.13833793997765,0.10954532027245],[0.069478213787079,0.056942190974951,0.038773469626904],[0.2286840826273,-0.043442830443382,-0.044971462339163]],[[-0.074411697685719,0.072874702513218,0.087930470705032],[0.043592289090157,-0.015652535483241,0.00044475562754087],[0.044578764587641,-0.14569182693958,0.046720415353775]],[[-0.16163021326065,0.060187373310328,-0.12655068933964],[-0.20207659900188,0.21307504177094,-0.093094080686569],[-0.072980061173439,-0.11447105556726,-0.061553750187159]],[[0.083489567041397,0.03115450963378,0.049503326416016],[0.09496646374464,0.0003171791031491,-0.050800494849682],[0.071402989327908,-0.042744196951389,0.0038795766886324]],[[0.24458822607994,0.27907535433769,-0.071616247296333],[0.30690962076187,0.082133330404758,0.017294684424996],[-0.042408477514982,-0.034565627574921,0.15581113100052]],[[-0.036525137722492,0.14450292289257,-0.07448847591877],[-0.13377812504768,-0.027987955138087,0.10235256701708],[0.09301446378231,0.068648055195808,-0.059756495058537]],[[-0.075894445180893,0.066851079463959,0.038007572293282],[0.11016065627337,-0.11561927199364,0.16235268115997],[-0.050190638750792,-0.0013009550748393,0.11638464778662]],[[0.13463272154331,-0.17079405486584,0.10387209802866],[-0.080995425581932,0.03037916123867,0.060236785560846],[0.012808759696782,0.099837593734264,0.0069540129043162]],[[0.0092642363160849,-0.043740998953581,-0.00509985210374],[0.11541604250669,-0.094674155116081,-0.027792647480965],[-0.13758826255798,0.087710991501808,-0.050058182328939]],[[0.021133005619049,0.044768616557121,-0.064791426062584],[-0.057302825152874,-0.015236355364323,0.11653736233711],[0.074641652405262,0.01721578836441,0.18083889782429]],[[-0.0025782864540815,0.092536047101021,-0.11793480813503],[0.046097204089165,-0.07864835858345,0.072370268404484],[-0.053847212344408,0.11568062007427,0.23461480438709]],[[0.048183292150497,-0.0083786845207214,-0.10851957648993],[0.17869699001312,-0.071100771427155,0.030651114881039],[0.098458550870419,-0.016624126583338,-0.029667384922504]],[[0.096949324011803,-0.041171666234732,-0.0063045551069081],[0.039102703332901,0.062816925346851,-0.22352631390095],[0.039357244968414,-0.1851642280817,0.0070103188045323]],[[-0.062618099153042,0.052613470703363,0.25941640138626],[-0.072921924293041,0.40544337034225,0.29265531897545],[0.0023705698549747,0.26765787601471,0.11960162967443]],[[0.07349656522274,-0.080746546387672,-0.086603209376335],[0.25108230113983,-0.029264461249113,-0.090651907026768],[-0.022471500560641,0.022065747529268,-0.18320186436176]],[[0.089070163667202,-0.036654006689787,0.027188682928681],[-0.16636447608471,0.00014703963825013,-0.14019969105721],[-0.054800000041723,0.033697191625834,-0.056426133960485]],[[0.05068052560091,0.050469353795052,-0.015963776037097],[0.048881053924561,-0.076608672738075,-0.063827805221081],[0.028367465361953,-0.034553315490484,0.022389201447368]],[[0.0048099639825523,-0.055126521736383,-0.18871121108532],[-0.015574274584651,0.069329395890236,-0.033499617129564],[-0.095482669770718,-0.030623013153672,-0.057344887405634]],[[-0.0039430479519069,0.036439672112465,0.035453956574202],[0.033009186387062,0.056580051779747,-0.035429455339909],[0.084080249071121,0.0066205835901201,-0.10208485275507]],[[-0.087905891239643,0.056246478110552,0.1330591738224],[-0.19323736429214,-0.21032822132111,-0.11850350350142],[0.035375293344259,-0.040344383567572,0.022524781525135]],[[-0.079544268548489,-0.13238427042961,-0.046873480081558],[-0.19802917540073,-0.079373478889465,0.0022902304772288],[-0.089655093848705,0.17936941981316,0.13185812532902]],[[-0.10469525307417,0.039780810475349,-0.049358163028955],[0.090813115239143,-0.080199979245663,0.065601468086243],[-0.021816095337272,0.013002019375563,-0.13924807310104]],[[0.036871038377285,-0.12820926308632,-0.0074936454184353],[-0.010689659044147,0.064305871725082,0.0027288103010505],[0.13973546028137,-0.096894204616547,0.066920347511768]],[[-0.13125610351562,0.12656764686108,-0.063725091516972],[-0.026851216331124,-0.080759152770042,-0.0046140803024173],[0.10877168178558,-0.098288178443909,0.0061155436560512]],[[0.099548757076263,0.0083360578864813,-0.011545723304152],[0.083595812320709,0.074063986539841,-0.08053195476532],[0.021153073757887,0.0057241604663432,-0.053497921675444]],[[0.13620449602604,-0.0058200350031257,0.14749179780483],[0.051752533763647,0.092065766453743,0.10220517218113],[-0.073545873165131,0.036019954830408,-0.15837758779526]],[[0.13626980781555,-0.062306310981512,0.023826230317354],[0.049626521766186,-0.077271498739719,0.10177020728588],[-0.15073291957378,-0.058438610285521,-0.059020269662142]],[[0.11513870209455,-0.066061295568943,-0.0026478036306798],[0.11311694979668,-0.087838999927044,-0.087397530674934],[-0.14208355545998,-0.080775506794453,-0.1097778826952]],[[0.11071994155645,-0.045027703046799,0.024642398580909],[-0.039093568921089,-0.025666603818536,-0.040975011885166],[-0.078132003545761,0.0070927003398538,0.0095653459429741]],[[0.030446901917458,0.11843115091324,0.0490044914186],[0.070761948823929,-0.0017464620759711,-0.11581843346357],[0.05123533308506,-0.14709195494652,-0.069415912032127]],[[-0.031057991087437,-0.10388493537903,-0.016180278733373],[-0.046286467462778,-0.16029374301434,0.018399553373456],[-0.10413385182619,-0.0020503257401288,-0.0055820746347308]],[[0.07724441587925,0.031598545610905,0.011312277056277],[0.029798146337271,-0.0026254917029291,-0.016944151371717],[-0.023715753108263,0.0098680723458529,-0.067504897713661]],[[0.10990799963474,0.014209835790098,-0.075603350996971],[0.0082713318988681,-0.20118115842342,-0.0052242698147893],[-0.083162300288677,-0.11394129693508,0.020107274875045]],[[0.02424380928278,0.11847496032715,-0.023264510557055],[0.010791818611324,-0.10630103200674,0.088585510849953],[-0.01951576769352,-0.0012333907652646,-3.7640467780875e-05]],[[-0.057592831552029,-0.15946757793427,0.061631698161364],[-0.097094349563122,0.020314697176218,0.0069882497191429],[0.078846588730812,-0.030716272071004,0.056029725819826]],[[-0.039294701069593,0.04217641428113,-0.0030226206872612],[0.022050201892853,-0.0072999196127057,0.0021256424952298],[-0.0039227670058608,-0.034911628812551,0.0019601311068982]],[[0.11788167059422,-0.10441987961531,0.004317260812968],[-0.12513728439808,0.083035476505756,-0.16641296446323],[0.1301608979702,0.01356534846127,-0.025235552340746]],[[0.08572293817997,0.21604208648205,0.11373890936375],[0.28975322842598,0.19190706312656,0.067944161593914],[0.11306166648865,0.046815298497677,0.11610939353704]],[[0.14149810373783,-0.017055971547961,0.088693179190159],[0.077409781515598,0.042935892939568,-0.13156563043594],[-0.063816040754318,-0.039892304688692,-0.067586086690426]],[[-0.031027561053634,-0.049298044294119,0.078364051878452],[-0.038977712392807,-0.089856505393982,-0.0073731085285544],[0.046463824808598,-0.038266062736511,0.08300993591547]],[[0.047352880239487,0.073701679706573,0.060166824609041],[-0.16025695204735,0.0055299429222941,0.032799869775772],[-0.1026996076107,-0.084089055657387,0.048471048474312]],[[0.15454308688641,-0.027394328266382,0.0094440970569849],[-0.1218890324235,-0.071290731430054,0.0032844175584614],[0.073285795748234,-0.063551291823387,0.026296066120267]],[[-0.068411596119404,0.0031892792321742,0.022571666166186],[-0.0016981430817395,-0.029041573405266,-0.067445203661919],[0.023422315716743,0.040770467370749,0.00080114573938772]],[[-0.12069058418274,-0.28749287128448,0.02678058296442],[-0.21213330328465,-0.10793600976467,0.015944894403219],[-0.26613366603851,-0.097245998680592,-0.16568453609943]],[[-0.065774783492088,-0.0088616432622075,0.0087575437501073],[-0.056149043142796,-0.11523018032312,0.040318123996258],[-0.085704505443573,-0.014997415244579,-0.037635546177626]],[[0.096447609364986,-0.29994109272957,-0.0062988521531224],[-0.22644558548927,0.034405265003443,0.023566946387291],[0.14893968403339,0.099587813019753,-0.017324093729258]],[[0.010528019629419,-0.023794071748853,0.13710080087185],[-0.1136529520154,-0.046741843223572,0.10241274535656],[-0.16996859014034,0.04544785246253,0.087913408875465]],[[0.012892797589302,0.10385344177485,0.042680233716965],[0.052279129624367,-0.075904577970505,-0.093068137764931],[-0.00080121273640543,0.029192557558417,-0.0034423733595759]],[[0.09510151296854,0.0057454002089798,-0.013897933997214],[-0.041976440697908,0.0053376168943942,0.060301795601845],[0.020297011360526,0.13146536052227,0.0019701728597283]],[[0.091669850051403,-0.10085322707891,0.20886912941933],[-0.11113733798265,0.085652515292168,0.33228522539139],[0.081110589206219,0.37055486440659,0.19718132913113]]],[[[-0.015248892828822,-0.016581004485488,-0.014720235951245],[-0.0015503915492445,-0.0073573016561568,0.029472012072802],[0.0095236906781793,-0.029398212209344,-0.025998355820775]],[[0.034245107322931,0.0086042089387774,0.010412351228297],[0.021148255094886,-0.016559541225433,0.009508615359664],[-0.086132451891899,0.033264633268118,0.034848179668188]],[[0.030139192938805,-0.022192247211933,0.012964216992259],[0.093830898404121,0.0080218371003866,0.030242530629039],[0.057352006435394,-0.021896306425333,0.096122577786446]],[[-0.022435108199716,-0.034528769552708,-0.024414097890258],[0.059723749756813,-0.011458562687039,0.036284767091274],[0.051559697836637,0.00076121027814224,-0.02342838421464]],[[0.024677040055394,0.017025802284479,-0.036411114037037],[-0.0063970498740673,-0.071232706308365,0.0097234910354018],[0.011760026216507,-0.068277657032013,-0.097316525876522]],[[-0.0048398142680526,0.091608062386513,0.03803438693285],[0.073303014039993,0.04860857501626,0.012058070860803],[0.0011569086927921,-0.016767943277955,0.057482946664095]],[[-0.020832849666476,0.046089090406895,0.013501174747944],[-0.011459415778518,-0.028372017666698,0.018500836566091],[-0.071173638105392,-0.013806545175612,-0.0076537309214473]],[[0.046994376927614,0.011763382703066,-0.015712337568402],[-0.023931281641126,0.0058795958757401,0.030349854379892],[-0.017662368714809,-0.051523890346289,-0.041697230190039]],[[-0.023844806477427,0.0043835085816681,0.0144919520244],[-0.0095318695530295,0.021479224786162,-0.038894318044186],[8.0208541476168e-05,0.012659476138651,-0.013188557699323]],[[0.059924483299255,0.13043794035912,-0.024422589689493],[0.048095967620611,0.020038720220327,0.19653460383415],[0.054925665259361,-0.0090480484068394,0.00065551395528018]],[[-0.053643956780434,-0.012147945351899,0.085067361593246],[-0.0092413676902652,0.065783903002739,0.019731378182769],[0.085032418370247,-0.035930700600147,0.032039541751146]],[[0.016681954264641,0.035960178822279,0.0090538961812854],[0.031385269016027,-0.085681192576885,0.045029729604721],[0.051981452852488,0.027206227183342,0.01155480183661]],[[0.042530834674835,0.0090377405285835,0.055110044777393],[-0.0028047708328813,-0.034740518778563,0.040168195962906],[0.059739295393229,-0.061696480959654,-0.027883231639862]],[[0.05669878423214,-0.033423744142056,0.089210525155067],[0.052399154752493,0.068197302520275,-0.049941252917051],[0.0040486054494977,-0.0087122200056911,0.021166697144508]],[[0.06305792927742,-0.0060260579921305,0.075874514877796],[0.083180569112301,-0.0090774418786168,0.035122346132994],[0.030942460522056,0.19756998121738,0.13449846208096]],[[-0.04829777777195,-0.016979120671749,-0.023693898692727],[-0.0077926996164024,-0.03783181682229,-0.036825943738222],[-0.075528167188168,0.04461457207799,-0.056052602827549]],[[0.026267264038324,-0.0020810181740671,0.026950482279062],[0.010406767949462,0.035851497203112,0.051186788827181],[-0.016775384545326,0.010915015824139,-0.011293566785753]],[[0.029396647587419,0.062633164227009,-0.029840651899576],[-0.04004493355751,0.04444782808423,0.081075146794319],[-0.093390427529812,-0.10506766289473,0.001553957699798]],[[-0.071100130677223,0.077503100037575,-0.047461688518524],[-0.063311755657196,-0.039518427103758,0.065866991877556],[0.00032737874425948,0.032792877405882,-0.054650813341141]],[[0.025867339223623,-0.040327899158001,-0.010394035838544],[0.065728306770325,-0.0014753715367988,0.13399662077427],[0.061239659786224,0.0419677272439,-0.0090764937922359]],[[0.0040789814665914,0.041694235056639,0.093081802129745],[-0.0035885372199118,-0.08725979924202,-0.033392559736967],[-0.042127911001444,0.040745198726654,0.017461150884628]],[[0.068961568176746,0.063040755689144,-0.033902622759342],[0.010190343484282,0.082169398665428,0.059937778860331],[0.10766010731459,0.057149600237608,-0.018051091581583]],[[0.034170761704445,0.052164673805237,0.003255620598793],[-0.031959969550371,-0.02711764164269,-0.029814060777426],[0.065924651920795,-0.044796299189329,0.014303393661976]],[[0.011644614860415,-0.066043980419636,0.091433860361576],[0.0040103374049067,-0.051106285303831,0.020931167528033],[-0.081020772457123,-0.024921879172325,0.046913184225559]],[[0.036628425121307,0.0611976608634,0.082153759896755],[0.0023451803717762,0.045901969075203,0.0074731889180839],[-0.063090942800045,0.012080122716725,0.031303849071264]],[[0.023797880858183,-0.083918318152428,0.0074031609110534],[0.071777112782001,0.038955844938755,0.031144872307777],[-0.027934120967984,-0.019251830875874,-0.04621073231101]],[[-0.040944620966911,-0.014711195603013,0.0046458449214697],[-0.02151651866734,0.011776391416788,0.047870703041553],[0.11002287268639,0.053324718028307,0.11893446743488]],[[-0.085145175457001,-0.037427704781294,-0.0039417580701411],[-0.024668546393514,-0.091658562421799,0.080875054001808],[0.033584598451853,0.058604806661606,-0.075943566858768]],[[-0.10195522010326,-0.038606483489275,0.029454376548529],[0.0015590816037729,0.031424392014742,0.075010672211647],[-0.035718116909266,0.018548851832747,0.0070216287858784]],[[0.010800140909851,0.031816188246012,0.042753744870424],[0.0004192347987555,0.076264597475529,-0.0069926818832755],[0.070859931409359,0.010064320638776,-0.011304098181427]],[[0.0023808286059648,-0.068117693066597,0.028757657855749],[0.057978600263596,0.080513492226601,0.066717252135277],[0.016655899584293,5.6572214816697e-05,0.039758909493685]],[[-0.0039140884764493,-0.062831118702888,0.036490444093943],[-0.077351070940495,-0.051131810992956,0.017918298020959],[-0.01757007278502,-0.026243658736348,0.020646534860134]],[[0.015333190560341,0.010818212293088,0.072704918682575],[0.016173666343093,-0.043303836137056,0.083727583289146],[-0.0051857749931514,0.071769401431084,-0.0043334350921214]],[[0.045395974069834,-0.022534601390362,-0.015379752963781],[-0.022993417456746,0.029688386246562,0.038192041218281],[0.068914361298084,0.0017302479827777,-0.023091537877917]],[[0.01494643650949,0.0057904627174139,0.0035313826519996],[-0.018515979871154,0.0067103705368936,-0.020772140473127],[0.009466708637774,-0.022480763494968,-0.034424211829901]],[[-0.011624297127128,0.034561943262815,-0.0061740488745272],[-0.023856787011027,-0.07483184337616,-0.0079077454283834],[-0.015983678400517,-0.03984073549509,-0.075068973004818]],[[0.069311037659645,-0.046470608562231,0.018441369757056],[-0.010008569806814,-0.020537266507745,-0.081138111650944],[-0.088526539504528,-0.021763106808066,-0.036766711622477]],[[0.052750688046217,-0.0085269771516323,0.0092566953971982],[-0.041500899940729,0.073317140340805,-0.046707548201084],[-0.0091103995218873,0.11883749067783,0.025403397157788]],[[0.03217176347971,0.031603656709194,0.026421805843711],[0.019023535773158,0.035948373377323,0.0094150751829147],[0.017367845401168,0.05182821303606,-0.13217444717884]],[[-0.024685183539987,0.034374736249447,0.066056452691555],[-0.041427474468946,0.0090187909081578,0.0089547168463469],[0.043198831379414,0.034685246646404,-0.10854081064463]],[[0.01444492302835,-0.0077521833591163,0.013410740531981],[0.0038378543686122,0.018117625266314,-0.033264853060246],[0.00083401933079585,0.0058667762205005,0.067001886665821]],[[-0.047795500606298,0.028580939397216,-0.015185687690973],[0.0043294448405504,0.036788634955883,0.015734631568193],[-0.033352289348841,0.037585567682981,0.015651738271117]],[[0.04675717651844,0.0041834926232696,-0.0087621556594968],[0.034915808588266,0.024708418175578,0.032956246286631],[0.038139186799526,0.032137334346771,-0.012403035536408]],[[0.037108216434717,0.012714182958007,0.049047093838453],[0.065259404480457,0.0041888752020895,0.049687597900629],[0.066112875938416,0.039317090064287,-0.049653399735689]],[[0.038773730397224,0.025170620530844,0.031636532396078],[0.037823174148798,0.076659359037876,0.0040697511285543],[-0.048312250524759,-0.015622072853148,-0.0049474169500172]],[[0.025655152276158,0.081739619374275,0.031578462570906],[-0.0539376065135,0.015683835372329,0.023617926985025],[0.096252799034119,-0.0046940287575126,-0.032478921115398]],[[0.043837260454893,0.037998404353857,0.053407277911901],[-0.031183529645205,-0.0065956949256361,0.015551837161183],[0.081219904124737,0.045583087950945,-0.013047835789621]],[[-0.015809224918485,0.024969942867756,0.046213466674089],[-0.01760127581656,0.01682741753757,0.031892657279968],[0.090567842125893,-0.0022650940809399,-0.043121490627527]],[[0.022457683458924,0.067970655858517,-0.023650234565139],[0.02864164672792,0.0079362327232957,-0.078273624181747],[0.12950499355793,0.095806926488876,-0.036419074982405]],[[0.034804061055183,0.031949438154697,0.0078201089054346],[-0.019734047353268,-0.0050717131234705,0.021099921315908],[0.050384774804115,-0.088312387466431,0.023815453052521]],[[0.0037182818632573,0.057444971054792,-0.010497520677745],[-0.032653633505106,0.072187371551991,0.0061554205603898],[0.0080618634819984,-0.020177504047751,-0.038370013237]],[[0.015560768544674,-0.042768660932779,0.0077774059027433],[0.054368443787098,-0.027666434645653,0.024079078808427],[-0.10427262634039,-0.046654332429171,-0.01222731359303]],[[0.011002507060766,0.057582147419453,-0.11269553750753],[0.062464784830809,-0.055603731423616,-0.065104767680168],[-0.05076827481389,0.019722830504179,-0.02069578319788]],[[0.050788301974535,0.049402594566345,0.031156454235315],[-0.04507065936923,0.086587458848953,0.087446480989456],[0.0034070829860866,-0.056328065693378,-0.041868571192026]],[[0.019983612000942,0.02904205955565,0.016455717384815],[-0.027817217633128,0.00028257639496587,-0.024978311732411],[0.010679959319532,-0.011258239857852,0.041118487715721]],[[0.040724042803049,-0.037109788507223,0.018739838153124],[-0.048236906528473,0.048547185957432,-0.038984745740891],[0.043192092329264,-0.028117353096604,-0.040601335465908]],[[-0.010224132798612,0.022825902327895,-0.040712624788284],[0.063759543001652,0.005588389467448,0.0084931561723351],[-0.030875599011779,-0.046220973134041,-0.035500969737768]],[[-0.056356381624937,-0.025492697954178,-0.0070332316681743],[0.0091824000701308,0.022406103089452,0.0040022484026849],[0.040007926523685,-0.054415136575699,0.059250980615616]],[[0.04942848533392,-0.0052822330035269,0.060899585485458],[0.086303219199181,-0.0076337857171893,-0.033810142427683],[0.038899950683117,-0.061278328299522,0.057880770415068]],[[-0.025731174275279,0.018961943686008,-0.055124592036009],[-0.034231342375278,-0.0096524516120553,-0.00055587862152606],[0.003063315525651,-0.011475381441414,-0.049868766218424]],[[0.054024029523134,-0.0049152984283864,0.0096496846526861],[-0.025609098374844,0.098652139306068,0.01738703623414],[-0.018887422978878,-0.038936860859394,-0.033701382577419]],[[-0.011851930059493,-0.046892657876015,0.033528309315443],[0.033616829663515,0.0059049734845757,0.026173312216997],[0.058423988521099,-0.02738787792623,-0.0066040861420333]],[[-0.053094711154699,0.0032678786665201,-0.067969523370266],[0.044725216925144,0.013272238895297,-0.038092661648989],[-0.063880808651447,-0.020234029740095,0.0063084932044148]],[[-0.03212109580636,0.095453135669231,0.016717199236155],[0.022459235042334,0.023525677621365,-0.0069440342485905],[0.045935600996017,0.0044645369052887,0.025918221101165]],[[0.012586576864123,0.078283779323101,0.007770165335387],[0.042282056063414,-0.015774948522449,-0.040197595953941],[0.065605320036411,-0.0061721717938781,0.061421275138855]],[[-0.022841081023216,-0.035519763827324,-0.092257969081402],[0.041970230638981,-0.0095055587589741,-0.016268409788609],[0.025209583342075,-0.043589197099209,-0.024164900183678]],[[0.055525500327349,0.0046278308145702,0.028887012973428],[0.024130020290613,0.020099781453609,0.076985985040665],[0.02971214056015,-0.048253640532494,0.014736372977495]],[[0.0022954989690334,0.0086456164717674,-0.038479417562485],[0.00064460927387699,-0.033689796924591,0.051541648805141],[0.052812974900007,0.037387225776911,-0.002847105730325]],[[0.0084323259070516,-0.03044475056231,0.038394287228584],[-0.012993043288589,0.047616817057133,0.014691676944494],[0.058926373720169,-0.058055218309164,0.00060251308605075]],[[0.044782750308514,0.08264197409153,-0.052039697766304],[0.048433508723974,0.018315700814128,0.10878521203995],[-0.035356681793928,0.0469502620399,0.011676502414048]],[[-0.009514351375401,0.036563340574503,-0.055746383965015],[-0.064035594463348,0.02739042788744,-0.022059518843889],[-0.023672265931964,-0.019066279754043,0.015524799004197]],[[-0.0015636110911146,-0.019621970131993,0.046903997659683],[-0.013068525120616,0.04946057498455,-0.011140206828713],[0.015960587188601,0.13575913012028,-0.10959117859602]],[[0.0030704294331372,0.07830748707056,0.022736482322216],[-0.010822250507772,0.035317908972502,0.059640266001225],[-0.071788117289543,-0.013502392917871,0.058232545852661]],[[-0.002163635334,-0.0079792523756623,-0.006492983084172],[0.09375074505806,0.035196039825678,0.069840483367443],[0.055468738079071,-0.0080544715747237,-0.048695728182793]],[[-0.0058429893106222,-0.021015735343099,0.088514231145382],[0.0094446344301105,0.021312974393368,-0.039567109197378],[-0.045296713709831,-0.010669889859855,-0.00059360067825764]],[[0.013984908349812,0.0064839031547308,0.010967295616865],[-0.0022340205032378,-0.033536557108164,-0.025356311351061],[0.010965905152261,-0.019442476332188,-0.01495401468128]],[[0.0099227549508214,0.10285665094852,-0.006307911593467],[-0.0098359091207385,0.002740002470091,0.012869431637228],[-0.012614331208169,0.0073551200330257,0.02147351205349]],[[0.039425317198038,-0.021472409367561,0.010009192861617],[-0.046229984611273,-0.027909860014915,-0.017920129001141],[0.062506228685379,0.040485143661499,0.032064814120531]],[[0.01485122833401,0.0085767488926649,0.050002217292786],[0.018119363114238,-0.035759933292866,0.072844937443733],[0.028327139094472,-0.069950334727764,0.063232228159904]],[[0.010330123826861,-0.034315902739763,0.04111248627305],[-0.049933284521103,0.043848905712366,0.037016727030277],[-0.066315941512585,-0.066806994378567,-0.047493349760771]],[[-0.0053018922917545,0.0053498460911214,0.02894388884306],[0.036587558686733,0.025673938915133,0.07816219329834],[-0.021986538544297,0.034683231264353,-0.0096091739833355]],[[-0.067306011915207,-0.035924587398767,0.024205170571804],[-0.10531831532717,-0.01588668115437,-0.02530231140554],[-0.059888232499361,-0.028096167370677,0.045459795743227]],[[-0.020439464598894,-0.034942086786032,-0.014585991390049],[-0.060423564165831,-0.13932326436043,0.016973646357656],[-0.033017355948687,0.013028125278652,-0.027538653463125]],[[-0.019652765244246,-0.011549231596291,-0.035626038908958],[-0.079004384577274,0.040783073753119,0.029217774048448],[-0.071865305304527,-0.04429454356432,-0.064971290528774]],[[0.013989527709782,-0.0029205933678895,0.052230600267649],[0.0066137178801,0.010681961663067,0.030727436766028],[-0.017569869756699,0.04883037507534,-0.005838121753186]],[[-0.023008521646261,-0.046857886016369,-0.021335747092962],[-0.032796669751406,0.050795022398233,-0.0035001302603632],[-0.078198425471783,-0.0069252089597285,-0.09101552516222]],[[0.082743160426617,-0.023110944777727,0.021934632211924],[-0.072155125439167,-0.017783815041184,0.00034537629107945],[-0.026153925806284,0.061314709484577,0.039736669510603]],[[0.024512097239494,-0.020410481840372,0.052314125001431],[-0.06071313098073,-0.00082798930816352,0.059932731091976],[0.087651804089546,-0.019950641319156,0.0061352872289717]],[[0.074799530208111,0.016087274998426,-0.042977269738913],[0.003259422024712,-0.0063806008547544,0.041497897356749],[-0.033793218433857,0.056907687336206,0.076682008802891]],[[0.014842464588583,-0.014840063638985,-0.045109059661627],[-0.0035694041289389,0.033247012645006,-0.0087268818169832],[-0.025489760562778,0.024408401921391,0.03629332408309]],[[0.037804123014212,-0.012996687553823,0.056345228105783],[-0.021314308047295,-0.025145461782813,-0.053951412439346],[-0.025000119581819,0.00023464972036891,-0.038960222154856]],[[0.046060815453529,-0.011654475703835,-0.066133618354797],[-0.013426839374006,0.02894520573318,-0.04391149058938],[-0.0093800257891417,0.028360398486257,-0.0063384789973497]],[[-0.038507491350174,0.026225589215755,0.016593892127275],[-0.008201302960515,0.042135830968618,-0.029243167489767],[0.037972342222929,0.055018275976181,0.0013758740387857]],[[0.036869712173939,-0.037940159440041,0.021877944469452],[0.041963089257479,-0.0040012486279011,-0.0062495302408934],[-0.040792025625706,-0.034899223595858,0.06818114221096]],[[-0.044606436043978,0.043926224112511,-0.086148537695408],[-0.01063297688961,-0.054470516741276,0.039308525621891],[-0.026364544406533,0.12826097011566,-0.056315265595913]],[[-0.038096163421869,-0.079048559069633,0.019650176167488],[-0.064399242401123,0.021910931915045,-0.021466448903084],[-0.070500150322914,-0.11131194233894,-0.036176178604364]],[[-0.04029830172658,0.054088346660137,0.039595805108547],[0.034169845283031,-0.0025039361789823,-0.040227714926004],[0.020483860746026,0.0035578669048846,0.0021044400054961]],[[0.033817291259766,0.0069295922294259,0.014535043388605],[-0.024137491360307,0.0023995994124562,-0.0083715450018644],[0.042248405516148,0.11669734865427,0.028111482039094]],[[0.049252398312092,-0.0025295671075583,0.040509905666113],[0.092640615999699,-0.022700412198901,-0.012729013338685],[0.012093658559024,0.047408763319254,-0.014062270522118]],[[-0.048583302646875,-0.010685527697206,0.058357931673527],[0.035640180110931,-0.085308089852333,-0.021638294681907],[-0.011098480783403,-0.07638643682003,0.02441187761724]],[[0.015818100422621,0.045549165457487,-0.020126648247242],[-0.034848146140575,-0.071287281811237,-0.036356963217258],[-0.013256065547466,-0.042428057640791,0.023067608475685]],[[0.0032141534611583,0.098198257386684,0.048337530344725],[0.083615012466908,-0.046746402978897,0.10539496690035],[-0.0064509259536862,0.091258220374584,0.13136138021946]],[[0.042672354727983,-0.020286045968533,0.096381634473801],[0.0015178943285719,-0.026861596852541,0.023958038538694],[0.037824351340532,-0.039928194135427,0.030569138005376]],[[-0.031919151544571,-0.024700924754143,0.0040942365303636],[0.03836889192462,-0.011444130912423,-0.070619277656078],[-0.010831046849489,0.092972569167614,-0.060312137007713]],[[0.011075804941356,-0.015380619093776,0.015823308378458],[-0.057030607014894,-0.011229684576392,-0.015819735825062],[-0.0061231683939695,0.085159651935101,0.016496673226357]],[[-0.061778396368027,0.0490409322083,-0.0062589053995907],[-0.055776864290237,0.035320673137903,-0.031194679439068],[-0.020272549241781,0.036654826253653,0.035613145679235]],[[0.04526386782527,-0.024083806201816,0.11417967826128],[-0.0052219103090465,-0.018790949136019,-0.068554759025574],[0.10322638601065,-0.052906036376953,-0.010046537965536]],[[-0.07077669352293,0.012016454711556,-0.093908570706844],[-0.00951355881989,0.0010064101079479,-0.019751887768507],[0.019456282258034,0.019678052514791,-0.017593428492546]],[[0.026709208264947,0.072396524250507,0.010419726371765],[-0.060278408229351,0.012626891024411,0.019740756601095],[0.10764896869659,0.041392229497433,0.092650376260281]],[[-0.01923805102706,0.077542960643768,-0.0080444263294339],[0.01292537804693,0.074586249887943,-0.012292618863285],[0.035682927817106,-0.019091762602329,-0.041295632719994]],[[0.097282752394676,-0.029045056551695,-0.12948167324066],[-0.067923478782177,-0.0080256862565875,-0.014262914657593],[-0.02097650244832,0.074717335402966,0.0096580479294062]],[[-0.029514396563172,-0.022041257470846,-0.019011929631233],[-0.043183021247387,-0.040618769824505,0.010938292369246],[-0.035602021962404,0.02875542268157,-0.068182431161404]],[[0.053228579461575,-0.040649123489857,-0.059914987534285],[-0.057192254811525,0.0043342779390514,0.0098778875544667],[-0.0094055766239762,0.043876845389605,0.043646581470966]],[[-0.084451153874397,0.0043905908241868,0.10221569985151],[-0.035488799214363,-0.0080788861960173,-0.012677618302405],[-0.0090065617114305,-0.068663835525513,-0.06441430747509]],[[-0.031849656254053,-0.013823146931827,-0.037418682128191],[0.0019166062120348,-0.0029666682239622,0.028336346149445],[0.020090103149414,0.01842207275331,-0.060381390154362]],[[-0.02096232585609,0.019928283989429,-0.0077993008308113],[-0.027852805331349,-0.022818451747298,0.067591339349747],[-0.00077178853098303,0.046417292207479,0.030465928837657]],[[-0.025176901370287,0.040998425334692,-0.044231716543436],[-0.0096284030005336,0.023695960640907,0.048192817717791],[0.012109075672925,0.1248886808753,-0.00026576372329146]],[[0.09143777936697,0.036860808730125,-0.019305290654302],[0.037944972515106,-0.0079655600711703,-0.013210901990533],[-0.018835773691535,0.0023943446576595,0.0082274051383138]],[[0.045467302203178,0.00035588716855273,0.034269236028194],[-0.081511996686459,-0.0077590188011527,2.7075242542196e-05],[1.192244781123e-05,0.041041675955057,0.08449874818325]],[[-0.047796286642551,0.024640554562211,-0.0073589151725173],[-0.0041596754454076,-0.062712624669075,-0.078913748264313],[0.034275934100151,0.037104543298483,-0.012444129213691]],[[0.022142520174384,0.065540730953217,0.064640633761883],[-0.052273310720921,0.025559028610587,0.074332736432552],[-0.080116681754589,-0.038600347936153,-0.062829412519932]],[[0.013376425020397,0.039444200694561,-0.016231283545494],[-0.012194322422147,-0.028835104778409,0.02461046166718],[0.013354275375605,0.061691947281361,-0.012486414052546]],[[-0.027715776115656,-0.0078289899975061,0.034382171928883],[-0.039191834628582,0.0010551229352131,-0.0036290951538831],[0.017205702140927,-0.015775544568896,0.0089767593890429]],[[0.085504911839962,-0.0040146489627659,0.055352184921503],[0.093694150447845,-0.062666662037373,-0.025719285011292],[0.031104892492294,-0.063097149133682,-0.062843918800354]],[[-0.038876634091139,-0.0075678508728743,0.012764094397426],[-0.051581911742687,0.087813839316368,-0.049295987933874],[0.042451173067093,0.01633875630796,0.0022939119953662]],[[-0.053162150084972,0.050337515771389,0.057271216064692],[0.022812934592366,0.059529006481171,0.041466943919659],[0.06681689620018,0.056305158883333,-0.05554560944438]],[[-0.020413203164935,0.010497354902327,0.10133871436119],[-0.0018844886217266,0.038267288357019,0.064075447618961],[-0.087870456278324,0.025899820029736,0.00012320726818871]],[[0.0082019735127687,0.051731962710619,0.015179881826043],[-0.0049918359145522,0.034789193421602,0.031100505962968],[0.017180364578962,0.043299585580826,-0.00082032551290467]]],[[[0.019976206123829,0.11166687309742,-0.015633152797818],[-0.035941991955042,0.041328310966492,0.048716031014919],[0.010391594842076,0.033176060765982,0.017470698803663]],[[-0.12389813363552,-0.061078108847141,0.034729387611151],[0.024077890440822,0.026982240378857,-0.0089123444631696],[-0.010293047875166,0.092108659446239,-0.0072081461548805]],[[0.069096282124519,0.011273163370788,0.13859789073467],[-0.020789200440049,0.049283292144537,0.017554214224219],[0.012181519530714,0.043716467916965,0.014430861920118]],[[-0.029798720031977,0.080865107476711,0.047595851123333],[0.10546727478504,-0.021956400945783,-0.011071732267737],[-0.019394790753722,-0.041083250194788,0.025540882721543]],[[0.037131085991859,0.034924473613501,0.09833101183176],[-0.005974417552352,-0.042050089687109,0.033913690596819],[-0.044793400913477,0.065052889287472,-0.0056034484878182]],[[0.037730924785137,0.11311231553555,-0.022370720282197],[0.050983589142561,0.038893032819033,-0.010307867079973],[0.035657186061144,0.066814534366131,0.040142089128494]],[[0.077084884047508,0.038927718997002,0.042519580572844],[-0.0013158875517547,-0.017766695469618,0.051612269133329],[0.099196650087833,0.056829802691936,-0.036335878074169]],[[-0.019565105438232,0.0047708679921925,0.028419787064195],[0.0022736813407391,0.057724017649889,-0.05762005969882],[0.045869201421738,0.037310227751732,-0.029151314869523]],[[0.018458496779203,-0.011554727330804,-0.025421900674701],[0.10505417734385,0.13886818289757,0.034008525311947],[-0.015329371206462,-0.024012677371502,-0.01814323477447]],[[0.08285491168499,-0.017500407993793,0.063363328576088],[-0.10261581838131,0.034635972231627,-0.013449349440634],[-0.081650152802467,-0.0120290806517,0.0028478244785219]],[[-0.044372119009495,0.052936919033527,0.063199408352375],[0.042812470346689,0.074389562010765,0.035699732601643],[-0.019199309870601,0.02994124405086,0.056004554033279]],[[0.049990188330412,0.012181954458356,0.082286305725574],[-0.0067422860302031,0.018086992204189,0.067088775336742],[0.12543614208698,0.093600459396839,-0.069042861461639]],[[-0.048613350838423,0.1144033074379,-0.033251877874136],[0.0017980674747378,-0.071303993463516,0.054437547922134],[0.056186016649008,0.0045643299818039,-0.044467825442553]],[[-0.090595699846745,0.10091277956963,0.053616832941771],[-0.030093556270003,-0.075662299990654,0.038096196949482],[0.013959714211524,0.022130588069558,-0.033942367881536]],[[0.052639450877905,-0.011759853921831,0.14617764949799],[0.10498276352882,0.047734431922436,0.065812833607197],[0.11752227693796,0.027306314557791,-0.015995098277926]],[[-0.015184969641268,0.029978681355715,0.016688212752342],[-0.0036694922018796,-0.048732418566942,0.017707448452711],[-0.045968860387802,-0.079004541039467,-0.0079460013657808]],[[-0.04037456586957,0.024490892887115,-0.017405545338988],[0.076361149549484,0.029387643560767,0.025646535679698],[-0.052371595054865,0.025175930932164,0.021112946793437]],[[0.095415003597736,0.0034237990621477,-0.01911816559732],[-0.00032795305014588,0.033969841897488,-0.061123598366976],[-0.092429794371128,-0.025592131540179,-0.059152022004128]],[[0.034722395241261,-0.059110779315233,0.0015308404108509],[-0.024635763838887,-0.011066297069192,-0.0027528186328709],[-0.018572783097625,-0.038192369043827,-0.015688823536038]],[[0.026137141510844,-0.0042397323995829,0.051741112023592],[-0.019456287845969,0.036555804312229,0.015756135806441],[0.073919519782066,0.051682971417904,0.13433542847633]],[[-0.051640208810568,0.08192278444767,0.0066031850874424],[0.064147621393204,0.11818769574165,0.031234765425324],[0.015290290117264,-0.013036209158599,-0.067299276590347]],[[-0.07060668617487,0.0026498890947551,0.017540751025081],[-0.021814115345478,0.06974121928215,0.062378030270338],[0.015385585837066,-0.006889384239912,0.011095252819359]],[[0.06537003070116,0.068278439342976,0.092516787350178],[0.056801650673151,0.063489958643913,-0.045460227876902],[-0.049422584474087,-0.042607940733433,0.0092664510011673]],[[-0.054545290768147,-0.013597312383354,0.028584305197001],[0.044345207512379,-0.014917699620128,-0.022581910714507],[-0.06476879119873,-0.058725170791149,-0.009653358720243]],[[0.022612597793341,0.0014177324483171,0.051287356764078],[-0.0001732340460876,0.028160836547613,0.075909614562988],[-0.015391263179481,0.041303969919682,-0.0064246249385178]],[[0.019553093239665,-0.059400252997875,-0.045636039227247],[0.027198417112231,0.0035910750739276,0.050033438950777],[-0.033992830663919,-0.026488203555346,-0.039625104516745]],[[0.018603233620524,-0.0010677070822567,0.055846560746431],[0.022327795624733,0.068952783942223,0.017132442444563],[0.042320154607296,-0.0096204746514559,0.080347873270512]],[[-0.025341702625155,-0.062560297548771,0.042650319635868],[-0.011848935857415,-0.05417700111866,-0.018173152580857],[-0.0018410433549434,-0.0057182935997844,-0.020636238157749]],[[0.040744490921497,0.0037253019399941,0.15421159565449],[0.038089971989393,0.058341193944216,-0.024435264989734],[0.077958285808563,0.026567814871669,-0.014540795236826]],[[0.025310738012195,0.034613523632288,0.034788321703672],[-0.051209919154644,-0.064134657382965,0.020135778933764],[-0.023404818028212,0.029740713536739,-0.031294468790293]],[[-0.037691760808229,0.042201545089483,0.013644555583596],[0.0036831949837506,0.00019521870126482,0.00026525097200647],[0.048612922430038,0.084314353764057,-0.067067503929138]],[[0.025459282100201,-0.00030199220054783,0.0099210338667035],[0.052194360643625,0.024239644408226,-0.017784098163247],[0.052072681486607,-0.00438844691962,0.043563660234213]],[[0.022787842899561,0.072824887931347,0.067058004438877],[0.0055250716395676,0.019156346097589,-0.012552537955344],[0.11680361628532,0.011744743213058,-0.0018252519657835]],[[0.021027697250247,-0.044839765876532,0.031540457159281],[-0.040532987564802,0.00046160141937435,0.079524338245392],[0.0096474615857005,0.010025214403868,0.043607797473669]],[[0.065934427082539,0.032242845743895,0.04993836209178],[-0.028029248118401,-0.10115756094456,-0.0011214058613405],[0.089872404932976,0.11844626814127,0.015392656438053]],[[0.0095283892005682,0.041312947869301,-0.013554917648435],[0.038924690335989,-0.0092326607555151,0.043329659849405],[-0.016677044332027,0.0098005374893546,-0.045528285205364]],[[0.035356942564249,-0.013061844743788,-0.06245032697916],[-0.017897918820381,0.013701336458325,0.028726123273373],[0.0040241722017527,-0.076566383242607,-0.0054975836537778]],[[0.011353510431945,0.027606310322881,0.02489117346704],[0.087459050118923,0.094534054398537,-0.025418376550078],[0.017192957922816,0.043065864592791,-0.010493332520127]],[[0.05198485031724,0.0067357239313424,-0.023956924676895],[-0.015290923416615,0.075147829949856,-0.014054340310395],[0.0081150699406862,-0.037987872958183,0.022409414872527]],[[-0.011551034636796,0.082983091473579,-0.0053991489112377],[0.082637868821621,-0.003434834536165,-0.0075494782067835],[0.010637752711773,0.062909238040447,-0.022836459800601]],[[-0.0064105475321412,0.044139072299004,0.070031113922596],[0.0094729596748948,-0.074039719998837,-0.0053250654600561],[0.03612969815731,0.031163403764367,-0.0024735450278968]],[[-0.024280058220029,0.039266411215067,0.049338955432177],[0.0074144108220935,-0.015808444470167,-0.07239942252636],[-0.091025665402412,0.043668609112501,0.020731458440423]],[[0.066671654582024,0.011159829795361,0.062613762915134],[0.073353938758373,0.015154174529016,0.06391903012991],[0.071367830038071,0.032321475446224,0.053394105285406]],[[0.021589495241642,0.0086389072239399,0.055026683956385],[-0.054257892072201,-0.03609549626708,-0.028184976428747],[-0.023824580013752,0.071143783628941,0.040762063115835]],[[-0.0012974232668057,-0.011227743700147,-0.042065769433975],[0.041567072272301,0.019114648923278,0.026180585846305],[-0.018142012879252,0.00080480158794671,0.060392864048481]],[[0.049540609121323,0.042793054133654,0.036956612020731],[0.0473388209939,0.098677299916744,0.010514199733734],[0.034032702445984,0.081014469265938,0.084954649209976]],[[-0.017573932185769,0.016664927825332,0.045544236898422],[0.01942340657115,0.078225187957287,-0.10109904408455],[0.045067228376865,0.0049909083172679,0.045222915709019]],[[0.059368070214987,-0.02965166606009,0.058163564652205],[0.046333901584148,0.060706030577421,-0.027917444705963],[0.013569599948823,0.0029600751586258,-0.0016138972714543]],[[0.051141571253538,0.051599863916636,0.012878579087555],[-0.0051807831041515,-0.014846915379167,0.005606294143945],[0.0030586353968829,-0.066750697791576,0.024580517783761]],[[0.038297526538372,0.033040475100279,-0.045844774693251],[0.048696581274271,0.030321527272463,-0.01456409227103],[0.029201192781329,-0.017426611855626,0.00013661613047589]],[[-0.02403243817389,0.061429567635059,-0.0016571467276663],[0.02769386395812,0.038508370518684,-0.020530570298433],[0.029010506346822,0.043797250837088,-0.031929798424244]],[[0.025083487853408,-0.015874998643994,0.015261994674802],[0.013001210056245,0.093962654471397,0.030862085521221],[-0.084159344434738,-0.089068874716759,0.0086185038089752]],[[0.047244939953089,-0.068243749439716,-0.017594780772924],[-0.00057705747894943,0.0086858132854104,-0.042880024760962],[0.029284818097949,-0.01492303609848,0.037493489682674]],[[0.04570509493351,-0.024445034563541,0.014913842082024],[0.037287291139364,0.026095312088728,0.021932920441031],[-0.058492094278336,0.023769984021783,0.020880715921521]],[[0.017539629712701,0.040510285645723,-0.066819041967392],[-0.038048949092627,0.049879737198353,0.023179596289992],[0.028487915173173,0.077218443155289,-0.034589551389217]],[[-0.031825296580791,-0.0079990094527602,0.00069375662133098],[-0.047398269176483,-0.00039624597411603,0.014475245960057],[0.026331311091781,-0.025629533454776,-0.02906234562397]],[[0.059668820351362,0.017428644001484,0.04055817052722],[-0.037593934684992,0.00036461430136114,0.066979579627514],[-0.022897841408849,-0.028592977672815,0.069122262299061]],[[0.072419576346874,0.043984346091747,-0.00091815053019673],[0.029121320694685,-0.0017136059468612,-0.02214720658958],[0.036383219063282,-0.0017557158134878,-0.043871331959963]],[[0.0031376362312585,-0.013444656506181,0.025736384093761],[-0.025001024827361,0.00076504849130288,-0.029954755678773],[0.073945142328739,-0.013097397051752,0.013780334033072]],[[-0.0009319621603936,0.0033104147296399,-0.00048645591596141],[-0.0058430228382349,0.021076634526253,-0.011545952409506],[0.0063788983970881,0.001110847457312,0.051175124943256]],[[-0.04026960209012,-0.060477338731289,-0.015372202731669],[0.0077202785760164,-0.0091421855613589,0.03042253293097],[0.011738360859454,0.030917190015316,0.042062096297741]],[[0.064479172229767,-0.0056463670916855,-0.11401437222958],[-0.090367347002029,-0.044086061418056,0.02034224383533],[0.013920833356678,0.0060980743728578,0.02253826521337]],[[-0.0061996332369745,-0.088985659182072,-0.0075101074762642],[-0.019967705011368,0.028872162103653,-0.052499111741781],[0.038793820887804,-0.0072074471972883,-0.024087378755212]],[[0.096704721450806,0.055681560188532,0.034009464085102],[0.072654128074646,0.045527558773756,-0.015336115844548],[0.0044090007431805,0.057829543948174,-0.008687543682754]],[[-0.022572265937924,-0.00034540865453891,-0.034088399261236],[-0.02408873103559,0.012161585502326,0.035286992788315],[0.045527275651693,-0.067606814205647,0.05335009843111]],[[0.00044193299254403,-0.022650526836514,-0.0064856335520744],[0.042710535228252,-0.018629025667906,0.058245651423931],[-0.005024763289839,-0.028936231508851,0.051382474601269]],[[-0.06852201372385,0.036527693271637,-0.044534724205732],[0.086371243000031,0.078372582793236,0.0055647087283432],[0.02022322639823,0.019698502495885,-0.032362468540668]],[[-0.0051016137003899,0.030564155429602,0.0040344255976379],[-0.015517175197601,0.078162871301174,0.022375470027328],[0.03131366148591,-0.005426527466625,0.01427286490798]],[[8.0813391832635e-05,0.013100474141538,0.040358301252127],[-0.054724376648664,-0.027984237298369,-0.013122707605362],[-0.029006058350205,0.043093491345644,0.019777536392212]],[[0.035022724419832,0.044882465153933,0.0035570662003011],[-0.012011249549687,0.032114207744598,0.029114073142409],[-0.016511114314198,0.054583307355642,0.024659937247634]],[[-0.027002057060599,0.0064358557574451,-0.028337884694338],[0.010625225491822,-0.036659896373749,-0.10243704169989],[0.0077266632579267,-0.016646262258291,-0.022539967671037]],[[0.053108565509319,0.042266838252544,0.023359829559922],[0.063633225858212,-0.02983470633626,0.0098377838730812],[0.096146449446678,0.042486853897572,0.045819345861673]],[[-0.029666982591152,0.13996057212353,0.089595481753349],[-0.024140840396285,-0.023216428235173,0.014918513596058],[0.020509215071797,0.0093031600117683,-0.066849678754807]],[[-0.04859060049057,-0.0051329215057194,0.038645304739475],[-0.028750447556376,0.047891493886709,-0.027851026505232],[0.00039552809903398,-0.019017467275262,-0.024141384288669]],[[0.047165561467409,0.061145938932896,0.050286345183849],[0.032338365912437,0.048722352832556,0.03319776058197],[0.050791870802641,0.071350015699863,-0.028828795999289]],[[0.030529176816344,0.040091998875141,-0.044925905764103],[0.0051816469058394,0.0031826635822654,-0.0093259820714593],[0.028884053230286,-0.015996800735593,0.031073844060302]],[[0.0086848391219974,-0.0010456688469276,0.058566935360432],[-0.028348742052913,0.011934914626181,0.004596003331244],[0.020634891465306,-0.0088746473193169,0.031766783446074]],[[-0.0069851232692599,0.010222447104752,0.044500663876534],[-0.021427243947983,-0.025121999904513,0.028070520609617],[0.034474246203899,0.003056404646486,0.017093481495976]],[[-0.039993040263653,-0.0082620475441217,-0.0065347384661436],[0.081672303378582,-0.021848831325769,0.047379374504089],[-0.013114949688315,-0.01716616936028,-0.016852455213666]],[[0.062002070248127,-0.047843839973211,0.065402001142502],[0.056308731436729,-0.045398853719234,0.057588145136833],[-0.028938489034772,-0.050700735300779,-0.066741712391376]],[[0.025239275768399,-0.016709661111236,0.043110582977533],[-0.0011743792565539,0.0253592338413,-0.0017102065030485],[0.016339134424925,0.014959206804633,0.0086070373654366]],[[-0.017333671450615,-0.038996025919914,-0.017544656991959],[-0.015431798063219,0.023435989394784,0.041703023016453],[-0.10346655547619,0.052171550691128,0.028278598561883]],[[-0.014996998012066,0.054841633886099,0.027954211458564],[-0.020511595532298,0.052809864282608,0.10033968091011],[-0.030687497928739,-0.045918013900518,-0.048033762723207]],[[-0.013751433230937,0.012620722874999,0.093238465487957],[-0.02202463708818,0.042257584631443,0.016276421025395],[-0.011855834163725,0.0016135371988639,0.013543245382607]],[[0.0049407929182053,-0.010164746083319,0.063425324857235],[0.057804226875305,0.01738073118031,0.059138417243958],[0.013629088178277,-0.017256509512663,0.0040927743539214]],[[0.086896233260632,-0.022436177358031,-0.043535873293877],[-0.045346982777119,-0.083812214434147,0.050974056124687],[-0.0069736833684146,-0.1130406036973,0.099375694990158]],[[-0.020245628431439,-0.0047909361310303,-0.084062546491623],[-0.01068717520684,-0.0031711251940578,0.070513643324375],[0.051683492958546,-0.067626141011715,0.028625592589378]],[[0.00046917333384044,0.0016460989136249,0.036684263497591],[0.041860859841108,0.0097994050011039,0.064686007797718],[-0.022942306473851,-0.04317519441247,-0.012923249043524]],[[0.056007444858551,0.058719992637634,-0.042614422738552],[0.019556146115065,-0.076958492398262,-0.031534016132355],[-0.076222509145737,0.033690385520458,-0.0026405113749206]],[[0.042749308049679,-0.023093167692423,0.034874349832535],[0.075683616101742,0.00056866742670536,0.06474407017231],[-0.019815290346742,0.030138099566102,0.020591134205461]],[[0.11593719571829,-0.030597606673837,-0.01684470847249],[0.027672462165356,-0.0061942129395902,0.030330702662468],[0.081253409385681,0.039079498499632,0.061629801988602]],[[0.016397653147578,0.035947944968939,0.018153795972466],[-0.0034728131722659,-0.0040442016907036,0.031955536454916],[-0.033410243690014,-0.016614865511656,0.01307822111994]],[[-0.029171654954553,-0.06474893540144,0.029133673757315],[0.017262848094106,-0.050573464483023,0.035534795373678],[-0.028846213594079,0.042339190840721,0.044295240193605]],[[-0.046748097985983,0.042794059962034,0.051080659031868],[-0.011721603572369,0.0049846507608891,-0.0018524419283494],[0.0056309099309146,-0.036325197666883,0.083755850791931]],[[-0.039190612733364,-0.019854221493006,0.053957279771566],[0.029115274548531,0.0067042759619653,-0.0025457721203566],[0.059502478688955,-0.024665858596563,0.051413998007774]],[[-0.0094612874090672,0.11644826829433,0.041779894381762],[0.069582872092724,0.047378271818161,-0.011035267263651],[-0.0091503076255322,0.046808868646622,0.050563920289278]],[[-0.051187735050917,0.039872668683529,-0.0043404111638665],[-0.055685110390186,0.072490930557251,0.098567418754101],[0.053291156888008,0.014721347019076,-0.015094959177077]],[[0.013891632668674,-0.017935967072845,0.042993012815714],[0.045360468327999,-0.00060999195557088,0.063213028013706],[-0.031320616602898,0.076662488281727,-0.016618706285954]],[[0.055886652320623,0.01362868770957,0.026014866307378],[0.034872516989708,0.00095234136097133,-0.0082673579454422],[0.0048660039901733,-0.067539237439632,-0.025271909311414]],[[0.0082995155826211,0.049699019640684,0.053940117359161],[-0.036601919680834,-0.040686819702387,0.021035386249423],[-0.0044988351874053,-0.068653225898743,0.047736462205648]],[[-0.0079217152670026,-0.011628163047135,-0.030428135767579],[0.079678505659103,0.046633277088404,-0.014785451814532],[0.010915199294686,0.061142899096012,0.028733065351844]],[[0.010615846142173,0.082801714539528,0.11534774303436],[0.058063123375177,0.095477268099785,0.022408673539758],[0.055311270058155,0.071187242865562,-0.010349791496992]],[[0.0067212516441941,0.069586180150509,0.0089795086532831],[-0.010661102831364,-0.021603610366583,0.09872280806303],[0.013175070285797,0.023645477369428,-0.0064728744328022]],[[0.024725688621402,-0.029596958309412,0.063822083175182],[-0.059751495718956,0.033846162259579,-0.042964145541191],[0.046968393027782,0.024055043235421,0.063847355544567]],[[0.025029910728335,0.013133464381099,0.017267508432269],[-0.058260213583708,0.0069331121630967,0.033885348588228],[0.032541461288929,-0.011493312194943,0.040733180940151]],[[-0.007610946893692,-0.062093909829855,0.013363212347031],[0.036233056336641,0.046848971396685,-0.16955655813217],[-0.00018012637156062,-0.0062937801703811,0.063900724053383]],[[0.039161525666714,-0.052046157419682,0.012104810215533],[0.029997268691659,0.045233391225338,0.0036296774633229],[-0.029763128608465,0.031115364283323,0.037820406258106]],[[-0.0002900303225033,0.036359399557114,-0.013029328547418],[0.049888089299202,0.0023780218325555,-0.043853234499693],[0.023777911439538,0.064101345837116,-0.0011770470300689]],[[-0.0074652186594903,-0.00030151728424244,-0.013886084780097],[-0.0020850396249443,-0.0090520232915878,-0.019891323521733],[0.059472937136889,0.038483500480652,0.059993296861649]],[[-0.023525655269623,0.09912832826376,-0.017352789640427],[-0.10004210472107,-0.07679995149374,0.0350726172328],[0.014442589133978,-0.054225128144026,0.082295909523964]],[[-0.006623113527894,0.035090833902359,-0.056340046226978],[0.035374630242586,-0.008119416423142,-0.049554146826267],[-0.024865437299013,0.047200080007315,0.035359270870686]],[[0.0036983308382332,-0.070898413658142,0.082833610475063],[0.097507148981094,0.090679496526718,0.00045198696898296],[0.061386067420244,0.017685279250145,0.04944983497262]],[[-0.044517450034618,0.032477598637342,-0.011525878682733],[0.05624632909894,0.010606166906655,-0.058997113257647],[0.047884028404951,-0.035933934152126,0.07300466299057]],[[0.056924771517515,0.032930500805378,-0.0076695694588125],[-0.029710341244936,-0.048078574240208,0.013506906107068],[0.031036278232932,-0.024227796122432,0.029740419238806]],[[0.047395747154951,0.054010387510061,0.029219724237919],[0.048116069287062,0.03703773394227,0.020847162231803],[0.063598982989788,0.077238507568836,0.017561309039593]],[[-0.031632788479328,0.030755758285522,0.051856275647879],[0.012586520984769,0.024470316246152,0.0033011781051755],[-0.0074646193534136,-0.11059749126434,-0.039617735892534]],[[0.023307556286454,0.0054554217495024,0.01735988073051],[0.073970712721348,0.0090420711785555,0.060581266880035],[-0.050457745790482,0.007719072047621,0.036519102752209]],[[0.010473307222128,-0.0036861582193524,0.047882299870253],[0.017600256949663,0.0076194889843464,0.026743503287435],[0.011931674554944,0.0048374878242612,0.033085159957409]],[[0.052431095391512,0.016409305855632,-0.0076795928180218],[0.017617607489228,0.0073932590894401,-0.036496851593256],[0.043593760579824,0.0052136946469545,-0.032227035611868]],[[-0.066629476845264,-0.046438470482826,-0.087051995098591],[-0.051928132772446,-0.062621355056763,0.016288390383124],[0.051574256271124,-0.023342791944742,-0.032698810100555]],[[-0.056715279817581,0.043204188346863,0.023778287693858],[-0.026200827211142,-0.012250507250428,0.013259001076221],[-0.036377396434546,-0.0051813321188092,-0.076449021697044]],[[0.045780993998051,0.02956585586071,-0.0011302682105452],[0.017718177288771,0.047056414186954,-0.028474576771259],[-0.01517818775028,-0.0084293382242322,0.027034837752581]],[[-0.053314730525017,-0.0014662246685475,0.019297312945127],[-0.059007856994867,-0.012609053403139,0.062385533004999],[-0.050965216010809,-0.012560759671032,-0.020441126078367]],[[-0.034928523004055,0.027211954817176,0.011860393919051],[-0.072894111275673,-0.020729780197144,-0.01103023160249],[0.014111655764282,-0.032773185521364,0.013419274240732]],[[-0.0092882178723812,-0.034095045179129,-0.0049292747862637],[0.0043923612684011,-0.0093730902299285,0.063005283474922],[0.074206627905369,0.037764273583889,-0.087904267013073]],[[0.028481157496572,0.012109731324017,0.04571183770895],[0.058026365935802,-0.035404074937105,0.021482182666659],[-0.033254764974117,-0.023733554407954,0.0064464886672795]],[[0.1248444840312,0.012547772377729,0.040641363710165],[-0.024687856435776,0.066543996334076,-0.050012614578009],[0.065939374268055,0.019047046080232,0.028826631605625]],[[0.025658873841166,-0.00982865691185,-0.021823808550835],[0.064697287976742,-0.07139790803194,0.086656592786312],[0.092294633388519,-0.02807548828423,0.018347086384892]]],[[[0.2278865724802,-0.027383910492063,-0.0059943958185613],[-0.037392105907202,-0.059263158589602,-0.030447542667389],[-0.16597674787045,-0.010702292434871,-0.012710993178189]],[[-0.0092521104961634,-0.050375491380692,-0.14810189604759],[0.028660861775279,-0.095113962888718,-0.031052751466632],[-0.0041048033162951,0.044752221554518,0.13538753986359]],[[0.04928994178772,0.014656182378531,0.082887776196003],[0.14619889855385,0.037060227245092,0.041372392326593],[0.013929183594882,0.017256313934922,-0.021993104368448]],[[-0.11812745034695,-0.060829516500235,0.036061577498913],[-0.057965122163296,0.025198502466083,-0.0087411301210523],[-0.10729692876339,-0.027056904509664,-0.055325910449028]],[[0.13382150232792,0.11930564045906,-0.11014652997255],[0.13252714276314,0.033093746751547,0.0034628172870725],[-0.018733877688646,0.03464026004076,-0.099315285682678]],[[0.0038383486680686,0.094329707324505,0.083077386021614],[0.084535583853722,0.061440236866474,-0.033657860010862],[-0.087518960237503,-0.034441523253918,-0.095608934760094]],[[-0.037323340773582,0.085457369685173,0.096911415457726],[-0.084353655576706,0.067477434873581,-0.067082710564137],[-0.034835178405046,0.055449299514294,-0.11072111874819]],[[0.11068826913834,0.0081938831135631,0.087186053395271],[-0.010540463030338,-0.031289253383875,0.0038900200743228],[0.0058841034770012,0.015288795344532,-0.015657320618629]],[[0.12953017652035,-0.019469803199172,-0.031949602067471],[-0.12479246407747,-0.098026491701603,0.056075688451529],[0.017132274806499,0.099387936294079,0.13855297863483]],[[0.020972169935703,-0.0099278427660465,-0.0038582046981901],[-0.04558676853776,0.026377769187093,0.0047337999567389],[-0.043552204966545,-0.087738811969757,-0.090449944138527]],[[-0.065011776983738,0.014193318784237,0.033661168068647],[0.13875417411327,0.16252237558365,-0.020611200481653],[0.040170632302761,0.014778362587094,-0.01143957208842]],[[0.1477607935667,0.20501184463501,-0.018677420914173],[-0.0089774988591671,-0.030697152018547,-0.01157905254513],[0.022981060668826,0.045290924608707,0.058072943240404]],[[-0.043838046491146,-0.12002634257078,0.18202096223831],[0.021912252530456,0.10834369808435,0.01033328473568],[0.086147420108318,0.0086233327165246,-0.10006988048553]],[[0.0065504116937518,0.055447921156883,0.14299157261848],[-0.072516456246376,-0.028275212273002,0.13036412000656],[0.14702081680298,0.016510888934135,-0.084682308137417]],[[0.075594641268253,-0.0089213363826275,0.0099968612194061],[-0.065820455551147,0.21278546750546,-0.013307670131326],[0.069139204919338,-0.073991097509861,-0.025630362331867]],[[0.10061814635992,-0.13943536579609,0.079969242215157],[0.018784029409289,0.042350511997938,-0.029517743736506],[-0.036043312400579,-0.086562618613243,-0.024523703381419]],[[0.15702131390572,0.024133874103427,-0.083437517285347],[-0.021407784894109,0.047677394002676,0.020011911168694],[0.065201967954636,-0.0078371595591307,0.081235960125923]],[[0.014740417711437,0.047345995903015,-0.004548029974103],[-0.028268296271563,-0.0045127687044442,0.064040325582027],[-0.058825977146626,-0.0037261531688273,-0.18345895409584]],[[0.036150004714727,-0.021737534552813,-0.10603241622448],[0.094896525144577,-0.043536555022001,-0.0058492589741945],[-0.13716016709805,-0.07047712802887,-0.0071121123619378]],[[0.18777456879616,-0.027774125337601,-0.020414905622602],[-0.051865920424461,0.090057373046875,-0.031147243455052],[-0.032231573015451,-0.050513692200184,-0.094862043857574]],[[0.059779211878777,-0.0088435495272279,0.081971928477287],[-0.010137191973627,-0.023995032534003,0.011795397847891],[-0.098690547049046,-0.081850931048393,0.12068185210228]],[[0.16312748193741,0.0088862171396613,-0.021511720493436],[-0.044756315648556,-0.020823026075959,0.011154409497976],[-0.035197358578444,-0.06008992344141,0.10194829851389]],[[-0.075641371309757,-0.0061114286072552,0.04401857405901],[-0.028606647625566,0.053873129189014,0.072092078626156],[0.01880457252264,0.030379181727767,0.039123151451349]],[[0.023093877360225,-0.12704615294933,-0.033131033182144],[0.0089772772043943,-0.016924833878875,-0.053980320692062],[-0.098503261804581,0.054581064730883,0.030040642246604]],[[0.060498841106892,0.042654179036617,0.014711302705109],[-0.083871133625507,0.039663139730692,0.12979012727737],[0.16470436751842,0.058658763766289,-0.077032998204231]],[[-0.060415416955948,-0.03283704072237,0.06807054579258],[-0.045344609767199,-0.011763857677579,0.046875614672899],[-0.043920315802097,-0.079035311937332,-0.13410648703575]],[[0.036376133561134,0.11365330964327,-0.0064673563465476],[0.064111560583115,0.017959443852305,-0.013201250694692],[0.0029124785214663,0.021528406068683,0.010602627880871]],[[0.10590002685785,0.05734746530652,-0.029292602092028],[0.071469858288765,-0.047342114150524,0.036578431725502],[0.0089781088754535,0.057208921760321,0.0082471584901214]],[[0.057186465710402,-0.057440780103207,-0.037343397736549],[0.0023608265910298,0.048188377171755,-0.032890632748604],[-0.12310695648193,-0.16186186671257,0.012735482305288]],[[-0.081245422363281,-0.1177160218358,-0.027364939451218],[0.17295695841312,0.19036892056465,0.033634703606367],[-0.067859262228012,-0.023891754448414,0.047789290547371]],[[0.1069825142622,-0.02219208702445,-0.075105078518391],[0.1236522346735,0.042778797447681,-0.063796654343605],[-0.069448903203011,-0.029179504141212,0.099364101886749]],[[0.080156058073044,0.0029300234746188,0.0052085565403104],[0.045342795550823,0.020743047818542,-0.075143203139305],[-0.064741387963295,-0.0005569759523496,0.049489051103592]],[[-0.0043187770061195,0.096501260995865,-0.02639021538198],[-0.10113356262445,-0.040759399533272,-0.022473517805338],[-0.045140463858843,-0.089888222515583,-0.03552145883441]],[[0.1187556758523,-0.062943622469902,0.034083358943462],[0.057797994464636,-0.042498629540205,-0.028255386278033],[0.05791686847806,0.026097696274519,-0.028907377272844]],[[0.12563399970531,-0.18441878259182,0.059139482676983],[-0.031290058046579,-0.039474081248045,0.0056176548823714],[0.046925824135542,0.14184898138046,0.032595973461866]],[[0.0087015023455024,-0.17528547346592,-0.075273647904396],[-0.1050980836153,0.026776656508446,0.036200817674398],[0.02198065072298,0.0888342410326,-0.06845398247242]],[[-0.034239765256643,-0.021213501691818,-0.032264307141304],[0.084398858249187,0.025474432855844,-0.031055064871907],[-0.12530237436295,0.01743945479393,-0.058413948863745]],[[0.024102604016662,0.054299078881741,-0.0046831001527607],[-0.02234067954123,-0.030184717848897,0.02735978551209],[-0.060381826013327,0.043960083276033,0.05252081900835]],[[-0.017123190686107,-0.072661772370338,0.060575194656849],[0.047408748418093,-0.11490330845118,0.16039946675301],[-0.011514184996486,-0.04008836299181,-0.023359065875411]],[[-0.09890541434288,-0.039828456938267,0.012705123983324],[-0.021906275302172,0.037289947271347,-0.019378140568733],[0.080574944615364,0.056775081902742,-0.005467792507261]],[[0.050029274076223,-0.010646238923073,0.071390397846699],[0.083683334290981,0.082460597157478,-0.14676782488823],[0.067621611058712,0.014010318554938,-0.04510598257184]],[[0.024003308266401,-0.023099508136511,-0.075662285089493],[0.059311576187611,-0.024134241044521,-0.029231270775199],[0.039059348404408,-0.14511905610561,0.070708326995373]],[[0.11820278316736,0.094496689736843,0.0040775467641652],[0.11163450032473,0.056650713086128,0.066761717200279],[0.05981295183301,-0.042270366102457,-0.068351365625858]],[[-0.037910334765911,0.03257654234767,0.10588570684195],[0.040840052068233,-0.018908811733127,0.098739862442017],[-0.061304036527872,-0.007642091717571,0.10218317061663]],[[0.047884725034237,0.17092056572437,0.020247852429748],[-0.11138258874416,-0.060140687972307,0.032955579459667],[0.075682133436203,-0.056647256016731,-0.024588430300355]],[[-0.0076100276783109,0.01193871255964,0.13133074343204],[0.09024378657341,0.11513148248196,0.14871096611023],[0.17979092895985,0.21628776192665,0.00125655264128]],[[-0.016544442623854,-0.08061370998621,0.078578002750874],[0.083642713725567,0.069659702479839,-0.055202458053827],[0.13714747130871,0.027441581711173,0.049103956669569]],[[0.10351536422968,0.017121359705925,0.08843107521534],[-0.084176279604435,0.041250355541706,-0.069591470062733],[0.13145704567432,-0.065566472709179,0.024013325572014]],[[0.032176833599806,0.027981735765934,-0.0011851004092023],[-0.025627724826336,-0.060034073889256,0.068868033587933],[0.0093552190810442,-0.14498807489872,-0.066586472094059]],[[0.091988243162632,-3.4989614505321e-05,0.097543567419052],[-0.099667638540268,0.035160109400749,-0.035367608070374],[0.087130941450596,0.015468342229724,0.055040370672941]],[[0.12280370295048,0.057669654488564,-0.073323503136635],[-0.063846595585346,-0.063407070934772,0.020089838653803],[-0.026553988456726,-0.10916084051132,0.10951551795006]],[[-0.044363982975483,0.053948778659105,-0.0099708857014775],[0.040318924933672,-0.15853615105152,-0.0067813256755471],[0.024315001443028,-0.0018267788691446,-0.011378369294107]],[[0.081951104104519,-0.00011921042460017,0.011034716852009],[0.081506378948689,0.09279141575098,0.024671372026205],[-0.0031845446210355,-0.08091439306736,-0.061814829707146]],[[-0.079148583114147,0.011186776682734,0.047760009765625],[0.065296337008476,0.054046384990215,0.072548814117908],[0.037079010158777,-0.058722369372845,-0.053044207394123]],[[0.040668591856956,-0.020544465631247,0.070539884269238],[-0.040104959160089,0.0087586594745517,0.13013197481632],[-0.057502668350935,-0.073175475001335,0.10314218699932]],[[0.10805829614401,-0.025779752060771,0.12712235748768],[-0.022463260218501,-0.063350506126881,0.021149251610041],[-0.066365830600262,0.038110643625259,-0.020729083567858]],[[-0.01854950375855,0.071658372879028,0.0053982860408723],[-0.0039563663303852,-0.020815949887037,0.071556396782398],[-0.11288610845804,-0.052476562559605,-0.032567903399467]],[[0.15163081884384,0.051356349140406,-0.04343805462122],[0.067341007292271,-0.08174753934145,-0.037433844059706],[0.079644180834293,-0.095555953681469,0.13015274703503]],[[0.070352457463741,0.039953008294106,0.11443318426609],[0.020889552310109,0.045589879155159,0.046211544424295],[-0.029968487098813,0.045572254806757,-0.054346553981304]],[[0.048494011163712,0.058295845985413,-0.027741735801101],[-0.0087959570810199,-0.0065095415338874,-0.039722602814436],[-0.095483638346195,0.01323785353452,-0.092041090130806]],[[-0.01790764555335,-0.025781581178308,0.094772361218929],[-0.038199998438358,0.015858577564359,0.15713308751583],[-0.041973866522312,-0.069599866867065,0.020691907033324]],[[-0.082664504647255,-0.0032065787818283,0.0050178044475615],[0.059784531593323,0.089909516274929,0.026635613292456],[0.097940877079964,0.057632520794868,-0.010485951788723]],[[-0.036176420748234,-0.026297148317099,0.0092105595394969],[0.022912146523595,0.065278768539429,-0.070313811302185],[0.044167313724756,0.06784912198782,0.010933419689536]],[[0.024110898375511,-0.033844456076622,-0.014469132758677],[-0.084425568580627,-0.033815581351519,0.06000966951251],[0.073101289570332,-0.011709744110703,0.18373915553093]],[[0.03168648853898,0.1479526758194,0.071531154215336],[-0.014789695851505,0.091719634830952,0.02607835829258],[0.069814428687096,-0.041058726608753,0.056446965783834]],[[-0.013351055793464,0.061589676886797,-0.056880936026573],[0.091901034116745,0.11591950803995,0.0022190038580447],[0.0064270091243088,-0.026672691106796,0.049950778484344]],[[0.12487821280956,0.13433235883713,0.048618242144585],[0.065826371312141,-0.045309979468584,0.14986385405064],[0.067278750240803,-0.10692992061377,0.01347163785249]],[[-0.00023641053121537,0.059876244515181,0.048533692955971],[0.038383986800909,0.06020624935627,-0.011186272837222],[0.01437558606267,-0.07178495824337,-0.084400609135628]],[[0.0010739081772044,-0.0026103782001883,-0.062240939587355],[-0.044437032192945,-0.013677178882062,-0.0039253141731024],[-0.02717075124383,0.0026755153667182,0.099478743970394]],[[0.082817524671555,0.088708765804768,0.015177422203124],[0.059363927692175,-0.084363885223866,0.036569755524397],[0.0028345929458737,0.089588560163975,-0.071507476270199]],[[0.054055567830801,0.030795276165009,-0.042264208197594],[-0.012846230529249,0.061953168362379,-0.0086011001840234],[-0.068854756653309,-0.036007586866617,-0.018441863358021]],[[-0.10430178791285,0.00054600753355771,0.1194162517786],[0.1839599609375,0.027253517881036,0.041237704455853],[0.0025345073081553,-0.01949398778379,-0.1168172955513]],[[0.0263457801193,-0.017236055806279,0.1018113642931],[0.024900520220399,0.02087939530611,0.045115128159523],[-0.011707962490618,0.087352395057678,0.015106783248484]],[[-0.03251276537776,-0.0091759916394949,0.0043831150978804],[0.094299457967281,-0.026809735223651,0.074658706784248],[-0.023234887048602,-0.076469324529171,0.013190596364439]],[[-0.12138307094574,0.015944682061672,0.025827309116721],[-0.020494509488344,-0.0074357455596328,0.025251418352127],[-0.042068727314472,-0.026801791042089,-0.024949256330729]],[[0.019284214824438,0.026164190843701,0.075400643050671],[0.062667019665241,0.012415756471455,0.060606993734837],[-0.03572615608573,-0.018117347732186,0.021183282136917]],[[0.034946084022522,-0.043891824781895,-0.053132079541683],[-0.010859437286854,0.055500827729702,0.015154213644564],[-0.0045646415092051,0.10261701047421,0.10353772342205]],[[0.038002692162991,0.01589398086071,0.091318346560001],[-0.01683815009892,0.054442331194878,0.11021716147661],[0.11046206206083,-0.0024053978268057,-0.010009104385972]],[[0.15526880323887,0.11500220000744,0.044808808714151],[-0.076853558421135,-0.035512521862984,-0.020477956160903],[-0.019625687971711,-0.14660762250423,-0.052336264401674]],[[-0.011921856552362,0.034840811043978,0.090832091867924],[-0.024069810286164,0.034205786883831,0.098714239895344],[0.012220146134496,-0.0439686588943,0.09291885048151]],[[0.16504117846489,-0.14016449451447,-0.031875807791948],[0.0049541373737156,0.024127388373017,0.058054085820913],[0.017515787854791,0.078336447477341,0.061425354331732]],[[-0.10851287841797,-0.058264277875423,0.098330445587635],[-0.013468652963638,0.19358626008034,-0.026004588231444],[-0.10733495652676,-0.0086453780531883,-0.019655471667647]],[[0.050481088459492,-0.10040632635355,0.012832937762141],[0.0065613803453743,0.042529966682196,0.14504390954971],[-0.0090474113821983,0.040392432361841,-0.015977028757334]],[[0.058880437165499,-0.012991110794246,-0.065044462680817],[0.082865580916405,0.093703992664814,-0.027399757876992],[-0.02786567248404,0.11882588267326,-0.11178884655237]],[[-0.0094120623543859,0.035027284175158,-0.0020576983224601],[0.049583479762077,0.062602944672108,0.043542973697186],[0.10558710247278,-0.10550268739462,0.075957141816616]],[[-0.10322871804237,-0.063531890511513,0.12422094494104],[0.034754488617182,-0.0030522802844644,0.1291079223156],[0.022243600338697,-0.010175654664636,0.077040173113346]],[[-0.038328524678946,0.10865384340286,-0.0048290761187673],[0.003756498452276,0.022939201444387,0.15540792047977],[-0.026088679209352,0.11152847111225,0.043945282697678]],[[0.12646888196468,0.069031909108162,-0.11971165984869],[0.094798624515533,0.13907116651535,0.076006934046745],[0.013772234320641,-0.1284456551075,0.034215804189444]],[[-0.027700433507562,-0.018646320328116,0.050247296690941],[0.078848868608475,-0.096755675971508,0.039907671511173],[0.1707329005003,-0.023809859529138,-0.067154124379158]],[[0.0087597314268351,0.10964155942202,-0.026043904945254],[-0.093135349452496,0.012868173420429,-0.045569092035294],[0.10878510028124,-0.052275519818068,-0.010127699933946]],[[0.019080828875303,-0.010963871143758,0.0093047134578228],[0.003700721077621,-0.028729630634189,-0.056031633168459],[0.06105500459671,0.14551939070225,0.0067109949886799]],[[-0.013519614003599,-0.0085588302463293,-0.079305276274681],[-0.14070230722427,0.0049248598515987,-0.11188396066427],[0.04819280654192,0.049374971538782,0.045522708445787]],[[-0.072763130068779,-0.14867326617241,0.013327568769455],[0.099456012248993,-0.0067441198043525,-0.064256966114044],[-0.086122669279575,0.052733454853296,-0.1161238104105]],[[0.10082750767469,-0.015160089358687,-0.072984002530575],[0.028965853154659,0.014490102417767,0.051708247512579],[-0.023899121209979,-0.11937348544598,-0.064227625727654]],[[0.089509226381779,0.065940171480179,-0.0012840457493439],[-0.081179767847061,-0.045239891856909,0.14545181393623],[0.12260199338198,0.030341427773237,-0.13425447046757]],[[0.018582984805107,-0.013559335842729,-0.13078708946705],[0.15221694111824,0.073069624602795,-0.043915700167418],[-0.029633963480592,0.11879625171423,-0.050454590469599]],[[-0.10440790653229,-0.01442214101553,0.092205315828323],[0.094678498804569,-0.01214277651161,-0.0079216146841645],[-0.074789188802242,-0.00735656125471,-0.0033531347289681]],[[-0.046342134475708,0.11366002261639,0.14613711833954],[0.11292515695095,0.021573023870587,0.043812725692987],[0.12416230142117,0.053438697010279,-0.074562199413776]],[[0.060394011437893,0.04561622813344,0.069024905562401],[-0.03857272490859,-0.016988566145301,0.0096234325319529],[-0.024065451696515,-0.016939910128713,0.059692811220884]],[[0.079251579940319,-0.038411021232605,0.059975735843182],[-0.10559865087271,0.081725649535656,0.022390354424715],[0.019882757216692,-0.021526876837015,-0.10878327488899]],[[0.07991885393858,-0.025305923074484,-0.10369542241096],[0.0099025052040815,-0.028721172362566,0.035460617393255],[0.12148547917604,-0.028053088113666,-0.011616080068052]],[[0.022533299401402,0.042619496583939,-0.053599491715431],[0.069725282490253,0.041966814547777,0.057183541357517],[0.061021901667118,0.056218769401312,-0.072574950754642]],[[0.1769185513258,0.053971949964762,0.050608325749636],[0.077546611428261,-0.035887759178877,-0.0045470222830772],[0.067866295576096,0.039752457290888,-0.010644109919667]],[[0.020658358931541,-0.0473871268332,-0.023870764300227],[0.10562715679407,0.0064543853513896,-0.093160897493362],[0.026324035599828,0.082676894962788,0.039776045829058]],[[-0.015164605341852,0.029946617782116,-0.00067500647855923],[-0.062423154711723,0.097574785351753,-0.032500319182873],[0.071672432124615,0.17348754405975,0.14060458540916]],[[0.035883642733097,0.061368394643068,0.054877433925867],[-0.11698304861784,0.04744840785861,0.012038758024573],[0.088720917701721,0.0417126044631,0.026922460645437]],[[0.044754005968571,0.019990906119347,-0.06713879853487],[-0.021819451823831,0.010023796930909,0.068009100854397],[-0.0034428960643709,0.068553566932678,-0.12290192395449]],[[0.015259860083461,0.084471009671688,0.018327491357923],[-0.003218068741262,0.0036551929078996,0.069662809371948],[0.05877985432744,0.1067222058773,0.030094604939222]],[[0.035554405301809,0.022574508562684,-0.049320634454489],[-0.079657465219498,-0.015075786039233,0.13142910599709],[0.013573084026575,0.029565986245871,0.12837214767933]],[[-0.032677084207535,-0.02261571586132,-0.026048058643937],[0.079322911798954,0.028011118993163,0.028291074559093],[0.013047602027655,0.10301364958286,0.021384071558714]],[[-1.4387883311429e-05,-0.042116954922676,0.0082287648692727],[0.002263791160658,0.020947586745024,-0.0049762399867177],[-0.048229724168777,0.0018242496298626,0.018692366778851]],[[0.053975991904736,-0.019996223971248,0.024951757863164],[-0.056700333952904,0.045877788215876,0.069831199944019],[0.054734196513891,-0.0024580368772149,-0.065683089196682]],[[-0.045644294470549,0.0016598255606368,0.052754383534193],[-0.12028770148754,-0.10514906793833,-0.065240070223808],[-0.036262948065996,0.07580279558897,0.19977813959122]],[[-0.0095044327899814,-0.062773026525974,0.006956284865737],[-0.029568281024694,-0.042823411524296,-0.029908129945397],[-0.032585967332125,-0.025035791099072,-0.029242627322674]],[[0.059656169265509,0.052920114248991,0.12826889753342],[0.014766117557883,-0.0064381589181721,0.019241098314524],[9.424114250578e-05,0.047904923558235,0.024243876338005]],[[-0.09287166595459,-0.048356153070927,-0.0046976590529084],[0.067279070615768,0.048053584992886,-0.065626852214336],[0.00050721201114357,0.055079903453588,0.035588640719652]],[[0.0032034241594374,0.03299355879426,0.053479488939047],[0.10659567266703,0.043087217956781,0.065686844289303],[0.049366772174835,0.019553363323212,0.030123187229037]],[[0.13476803898811,-0.01869136095047,0.076461426913738],[-0.016631262376904,0.0097209420055151,0.092041432857513],[-0.036145128309727,0.053515840321779,0.038738250732422]],[[0.094926476478577,-0.030574625357985,0.039087183773518],[0.010025064460933,0.0048822122626007,0.02874987013638],[-0.011227614246309,-0.013131915591657,0.046730026602745]],[[-0.13296942412853,0.081382662057877,-0.0068059293553233],[-0.14668244123459,0.056710235774517,0.049217272549868],[-0.061475228518248,-0.08576962351799,-0.048624042421579]],[[0.05648785084486,0.043012972921133,0.07358679920435],[0.071424938738346,0.0090752188116312,-0.12761534750462],[0.066209360957146,0.14466108381748,0.074977286159992]],[[0.16363595426083,-0.055807244032621,0.064394563436508],[-0.032609809190035,0.054740380495787,-0.021128823980689],[0.017068035900593,0.00046740140533075,-0.061532322317362]],[[-0.037037011235952,-0.031740665435791,-0.010335190221667],[0.06897059828043,0.056944873183966,0.013305090367794],[-0.016976691782475,0.016369232907891,0.070105522871017]],[[-0.080342829227448,-0.059469889849424,0.03219174221158],[-0.079451628029346,0.024277735501528,-0.062553554773331],[0.036520149558783,-0.072667665779591,-0.0097369654104114]],[[0.12725287675858,-0.086533211171627,0.0098703289404511],[-0.0070843528956175,-0.094861157238483,0.10721123963594],[-0.032029878348112,0.023100150749087,0.062288366258144]],[[0.01715525239706,-0.066700004041195,0.0015454165404662],[-0.037789050489664,0.088791556656361,0.041841831058264],[-0.12160281091928,-0.015563649125397,-0.023066440597177]],[[0.034870315343142,0.11697053909302,0.092559151351452],[0.15323121845722,0.040199752897024,-0.22688876092434],[-0.07951832562685,-0.014710553921759,-0.0356673784554]],[[0.061029348522425,-0.042337950319052,0.020367447286844],[0.053261775523424,0.090077258646488,0.00087006791727617],[0.052328754216433,0.12510885298252,0.0093610668554902]]],[[[-0.016862526535988,-0.012375409714878,0.015766942873597],[0.056546989828348,0.014406363479793,-0.04616230353713],[-0.0066133760847151,-0.032258357852697,0.022143026813865]],[[-0.038905821740627,-0.061680052429438,0.0032873328309506],[0.01884843967855,-0.037417363375425,0.0058864215388894],[-0.076591655611992,-0.028003783896565,0.020625682547688]],[[-0.055801741778851,0.017694424837828,0.069885045289993],[0.063655197620392,-0.0040671895258129,0.00043066538637504],[-0.027719413861632,0.057357735931873,0.020736984908581]],[[-0.016977405175567,-0.0088033517822623,-0.030992874875665],[-0.084400154650211,-0.090339921414852,0.07972340285778],[-0.03376692533493,0.049962185323238,0.035269070416689]],[[0.041732784360647,0.040834672749043,0.051482405513525],[-0.07770187407732,0.011114589869976,0.005879292730242],[-0.062301639467478,0.056975193321705,-0.0062315654940903]],[[0.040843818336725,-0.023609565570951,0.024530772119761],[-0.0062467665411532,0.052395686507225,0.016814006492496],[-0.072845987975597,0.022323548793793,-0.014841036871076]],[[-0.031283780932426,-0.010345572605729,0.023133020848036],[-0.010063498280942,-0.029714569449425,0.023976970463991],[-0.027586499229074,-0.015655484050512,0.04327642545104]],[[-0.045285828411579,-0.04888815805316,-0.025873696431518],[0.0090366508811712,-0.034361131489277,-0.047656625509262],[0.0088021559640765,-0.0076747117564082,-0.049020886421204]],[[0.020197981968522,-0.0231445543468,-0.012619888409972],[-0.036454699933529,-0.0033543799072504,-0.045903429389],[0.073227301239967,0.0096279634162784,-0.021340923383832]],[[0.03007347881794,-0.018406704068184,0.047895196825266],[-0.079477876424789,-0.03312349691987,-0.10248316824436],[-0.022791612893343,-0.0071752537041903,-0.034970682114363]],[[0.033229801803827,0.036641702055931,-0.10016895085573],[0.056839391589165,-0.00051287922542542,-0.0059871352277696],[0.071206480264664,-0.017558066174388,-0.018118020147085]],[[0.024730561301112,-0.034793756902218,0.047915007919073],[0.014165932312608,-0.042302452027798,-0.070559747517109],[0.035034224390984,0.010390328243375,-0.018298882991076]],[[-0.062539577484131,0.0072908638976514,-0.03093496337533],[0.00098074285779148,-0.0017558946274221,0.041822399944067],[-0.063524715602398,-0.028576027601957,0.0051662395708263]],[[0.025851668789983,-0.04034511372447,0.047186136245728],[-0.082880057394505,0.027350245043635,-0.00087535270722583],[-0.067311599850655,0.0026150764897466,0.0039792750030756]],[[-0.077045135200024,0.09175281971693,-0.04686226695776],[-0.052626095712185,-0.056787122040987,0.0060940058901906],[-0.0033942575100809,0.029011677950621,-0.08134413510561]],[[0.0094757676124573,-0.025353090837598,0.014079536311328],[0.04227377474308,0.052401673048735,0.066834412515163],[-0.015966296195984,-0.0071582598611712,-0.043851755559444]],[[-0.045266527682543,0.048871520906687,-0.067999131977558],[0.022219080477953,-0.011676979251206,-0.034834317862988],[-0.046551194041967,0.058907698839903,-0.013915133662522]],[[-0.015038262121379,0.031686522066593,0.028814062476158],[0.036351524293423,-0.035994485020638,-0.067034639418125],[0.011573887430131,0.033954665064812,0.055594101548195]],[[-0.052859101444483,0.019620848819613,-0.035224255174398],[0.045240420848131,0.010052134282887,0.041238378733397],[-0.0046799257397652,0.01233665086329,0.056795962154865]],[[0.055820945650339,-0.042194906622171,-0.023771442472935],[0.057963285595179,-0.020932201296091,-0.055664587765932],[0.025801178067923,-0.037374883890152,-0.0079609183594584]],[[0.022902285680175,0.024307595565915,-0.064147017896175],[-0.024923495948315,-0.029572932049632,-0.017277456820011],[-0.058024890720844,-0.017066176980734,0.04050387442112]],[[-0.074873253703117,-0.044818226248026,-0.033853728324175],[-0.056965664029121,0.047031249850988,-0.085651986300945],[-0.012669023126364,0.060010947287083,-0.065673388540745]],[[0.023789735510945,0.020759144797921,-0.01737205311656],[-0.037091325968504,-0.028638957068324,-0.0024183094501495],[0.048170898109674,0.063438318669796,0.021063048392534]],[[-0.0027404876891524,-0.019211441278458,-0.0022504564840347],[0.034092552959919,-0.015845207497478,0.023274771869183],[0.01886772364378,0.082509055733681,-0.069682277739048]],[[-0.02195280790329,0.050947956740856,-0.0057241814211011],[0.051808673888445,0.052650310099125,0.044686745852232],[0.03358006477356,-0.024374317377806,-0.016036672517657]],[[-0.0060050790198147,-0.040488041937351,0.010319056920707],[0.015900025144219,0.011914409697056,-0.0038858577609062],[-0.036930438131094,-0.011831848882139,0.026044311001897]],[[0.042936492711306,-0.00071744783781469,-0.038182910531759],[-0.027196248993278,-0.0056561050005257,0.035331804305315],[0.041468217968941,-0.044390544295311,0.039507269859314]],[[0.0051192473620176,0.036697268486023,-0.025697726756334],[-0.0022775623947382,-0.014028773643076,-0.057337895035744],[0.048542693257332,-0.031855411827564,0.0098670357838273]],[[-0.0052831498906016,-0.014536642469466,-0.0049959118478],[-0.0080316560342908,0.062034390866756,0.0070566078647971],[0.043127443641424,0.0027735605835915,0.061393011361361]],[[-0.010802765376866,0.023671282455325,-0.061136905103922],[-0.0085653522983193,0.077093258500099,0.014968873932958],[-0.079017400741577,-0.093223713338375,0.051144972443581]],[[-0.048600517213345,-0.030796943232417,-0.0018940167501569],[-0.05185978487134,-0.031891610473394,0.014454612508416],[0.048833817243576,-0.012617079541087,-0.059573519974947]],[[-0.017755640670657,0.0052290474995971,-0.030116874724627],[-0.020262949168682,0.021563459187746,-0.039590619504452],[-0.0019200545502827,-0.09772826731205,0.0019372522365302]],[[0.017582522705197,-0.079893387854099,-0.0014310126425698],[0.035634431988001,0.0033449765760452,0.033798865973949],[-0.046759463846684,0.033884573727846,0.029114980250597]],[[-0.0037059809546918,-0.049322228878736,-0.0094130467623472],[-0.027960777282715,0.0087480694055557,0.012300150468946],[-0.11018463969231,0.022578546777368,0.059526711702347]],[[0.054877817630768,-0.011192291043699,0.031971592456102],[-0.0008624533074908,0.0064841131679714,0.01919430308044],[0.021868526935577,-0.038990624248981,-0.043448474258184]],[[0.024513194337487,-0.0097124166786671,-0.025708217173815],[0.021871319040656,-0.024292314425111,-0.00010542436211836],[-0.026088869199157,-0.027144249528646,0.018459966406226]],[[0.033394698053598,-0.027380993589759,0.0060246237553656],[0.015417581424117,-0.059032630175352,-0.0041255364194512],[0.0038272677920759,0.0039848778396845,0.027458101511002]],[[0.039522293955088,0.046968415379524,0.0010868414537981],[-0.036951623857021,0.04174417257309,0.077444955706596],[-0.067682646214962,0.0015321779064834,0.012585826218128]],[[-0.02155071683228,-0.02880559489131,0.021468771621585],[-0.0181615203619,-0.041624523699284,-0.030263507738709],[-0.031074477359653,-0.021933909505606,0.0038163547869772]],[[0.02604485116899,-0.020185694098473,-0.021098591387272],[-0.0058652553707361,0.00047171488404274,0.012816583737731],[-0.0080079305917025,-0.029372675344348,-0.030019842088223]],[[-0.0069237262941897,-0.026376066729426,0.0054441755637527],[-0.057117611169815,0.048700906336308,-0.048669036477804],[-0.045295521616936,-0.03780060634017,-0.058889556676149]],[[-0.036619536578655,-0.061060115695,-0.057379353791475],[0.016910143196583,-0.025024501606822,0.024247378110886],[-0.017132041975856,0.010202011093497,-0.022364119067788]],[[-0.036437645554543,-0.014517008326948,-0.048287890851498],[-0.052223153412342,-0.0022223882842809,0.011845773085952],[0.039349805563688,0.012434463016689,0.040756326168776]],[[-0.0069118719547987,0.0067506968043745,-0.028721252456307],[-0.0073328423313797,0.02701585739851,-0.051464214920998],[0.0013338893186301,0.022964600473642,0.045587833970785]],[[0.014187584631145,-0.021847458556294,0.03074730373919],[0.046783570200205,0.021745627745986,-0.0099078789353371],[0.044940464198589,-0.0072820354253054,-0.010795737616718]],[[-0.029822718352079,0.028424115851521,-0.0032159418333322],[-0.035705853253603,-0.0054213469848037,0.037367258220911],[-0.02768762409687,-0.057857617735863,0.068652413785458]],[[0.012433271855116,-0.044922050088644,-0.061467178165913],[0.043005548417568,-0.024496281519532,-0.009624682366848],[0.015107330866158,-0.015438937582076,0.026197303086519]],[[0.025826195254922,-0.12781476974487,0.038086205720901],[0.018392991274595,-0.0054538259282708,0.00029915064806119],[0.017481591552496,0.078786924481392,-0.11848096549511]],[[-0.029853735119104,-0.0098588634282351,-0.095390193164349],[-0.052679106593132,-0.023875501006842,-0.00014764237857889],[-0.049758866429329,0.030016137287021,0.0027016813401133]],[[-0.024568522349,-0.076596200466156,0.0030637648887932],[-0.056774150580168,-0.033444967120886,0.03301552310586],[-0.0037374733947217,-0.035152167081833,0.016648840159178]],[[-0.0093527613207698,0.045571252703667,0.016503436490893],[-0.037137102335691,0.045307282358408,-0.018427141010761],[-0.018217606469989,0.065797001123428,0.020281156525016]],[[-0.096907332539558,-0.0035839478950948,0.045409243553877],[0.020465949550271,-0.044516436755657,0.045587565749884],[-0.043145030736923,-0.035595647990704,0.064329855144024]],[[-0.052770163863897,-0.033838998526335,0.069420628249645],[0.0213273614645,-0.014182846993208,-0.007155379280448],[-0.015940340235829,0.02698684297502,-0.037503555417061]],[[-0.071170337498188,-0.0023645374458283,-0.021004227921367],[-0.0095473425462842,0.069793991744518,0.027809623628855],[-0.048776067793369,0.029309930279851,-0.024721307680011]],[[0.015753986313939,-0.0019768623169512,-0.025568781420588],[0.018209995701909,-0.025718124583364,0.0051627471111715],[-0.037150632590055,0.022584559395909,0.0061380667611957]],[[-0.046769328415394,-0.01936305873096,0.0047480589710176],[-9.156035957858e-06,0.0071245566941798,-0.0021449602209032],[-0.022394344210625,-0.0058362754061818,-0.021373180672526]],[[-0.03035295009613,-0.017531428486109,-0.011242538690567],[-0.021323317661881,0.032696597278118,0.067345187067986],[0.077737800776958,-0.022711299359798,-0.035612970590591]],[[-0.041211798787117,0.057446554303169,-0.022246904671192],[0.029856525361538,-0.069688223302364,0.016831060871482],[-0.026430623605847,0.00060307566309348,-0.075740925967693]],[[-0.017675491049886,-0.060460645705462,-0.027000842615962],[0.02972717769444,-0.028059968724847,0.01948719471693],[-0.038787510246038,-0.039990365505219,-0.01856591925025]],[[-0.06847608089447,-0.059975408017635,-0.057656459510326],[-4.7256682591978e-05,-0.0049988562241197,-0.066946446895599],[-0.032539770007133,0.021856738254428,-0.0004546360578388]],[[-0.014980454929173,-0.004821680020541,-0.0045340699143708],[-0.029342452064157,0.035223107784986,-0.0099456012248993],[0.016973795369267,-0.059610530734062,0.053661689162254]],[[-0.056521952152252,0.028874257579446,0.016130030155182],[0.040326964110136,0.0017163034062833,0.0011919804383069],[0.02559026889503,0.018748743459582,-0.068137466907501]],[[0.019164558500051,-0.0039675617590547,-0.026215065270662],[0.0046681533567607,-0.061763737350702,0.015527659095824],[0.020722137764096,-0.010332511737943,-0.042860988527536]],[[-0.018128784373403,-0.042408369481564,0.049254599958658],[0.052489440888166,-0.13391536474228,0.036434929817915],[-0.10866519063711,-0.0073108323849738,0.021002264693379]],[[0.034103468060493,-0.043642744421959,0.0061017754487693],[0.1000569909811,0.031127724796534,-0.035918444395065],[-0.081198468804359,-0.022506868466735,0.097333818674088]],[[0.0068874591961503,0.0059515330940485,0.0014492920599878],[0.0053272596560419,0.018690552562475,0.011373998597264],[-0.10121363401413,-0.032895267009735,0.035384230315685]],[[-0.064056985080242,0.05406254902482,0.017064027488232],[-0.018112817779183,-0.0039226743392646,-0.017482036724687],[0.015208195894957,-0.0072959801182151,-0.0049298508092761]],[[0.018698675557971,0.03963490203023,-0.026636764407158],[0.010554912500083,0.016645461320877,-0.040082190185785],[-0.0627067014575,0.01538956258446,0.010766704566777]],[[0.04016724601388,-0.06404123455286,0.013266525231302],[-0.020403226837516,0.033879142254591,-0.040773943066597],[0.039801705628633,-0.082833714783192,0.0039664651267231]],[[0.024995222687721,-0.054695315659046,0.024469271302223],[-0.016266109421849,0.0045250961557031,0.06582798063755],[-0.017540847882628,0.046048749238253,0.004926968831569]],[[0.0084442207589746,0.055233411490917,-0.021039115265012],[0.068878136575222,-0.089014172554016,0.010476163588464],[-0.031617093831301,0.05550729110837,-0.022488502785563]],[[-0.030828222632408,0.0062682293355465,-0.015241117216647],[0.031090471893549,-0.039761107414961,0.023508228361607],[-0.037181451916695,0.0640664473176,-0.038461044430733]],[[0.022009957581758,-0.0035562056582421,-0.056517705321312],[-0.023561058565974,-0.093214564025402,-0.037198603153229],[-0.031016537919641,0.067735187709332,0.025898901745677]],[[0.0056913937442005,-0.025227889418602,-0.030328147113323],[0.02768137305975,0.0077895391732454,0.071913406252861],[-0.017322858795524,-0.025422787293792,0.00017258555453736]],[[-0.041763879358768,-0.00032218953128904,-0.0033785300329328],[0.029404664412141,-0.026016956195235,0.07055925577879],[0.0140828974545,0.042985625565052,-0.04463479667902]],[[-0.051051892340183,-0.018269222229719,-0.022451609373093],[-0.026434615254402,0.0074832737445831,0.070724360644817],[-0.027945797890425,-0.019076243042946,0.021707244217396]],[[0.020447488874197,0.038473349064589,-0.0061186803504825],[-0.004142071120441,0.0016497458564118,0.024600375443697],[-0.050100918859243,-0.01723750308156,-0.051809914410114]],[[0.0149269066751,0.0084300059825182,0.034124054014683],[0.066371463239193,0.0020015835762024,0.020092973485589],[0.072827011346817,-0.059925384819508,0.018602473661304]],[[-0.054114568978548,0.010690715163946,0.057140454649925],[-0.0095344968140125,0.0088517693802714,0.082608476281166],[0.058814689517021,-0.0087268128991127,0.033525202423334]],[[0.015308272093534,0.065063126385212,0.025444496423006],[-0.036906938999891,-0.016899352893233,0.026596551761031],[-0.038248993456364,0.025468496605754,0.073343761265278]],[[0.028173919767141,0.013646630570292,-0.049716845154762],[0.021195711567998,0.050462160259485,-0.06988188624382],[0.015877390280366,0.03791306912899,-0.0092989839613438]],[[-0.025841113179922,0.061945464462042,0.039167299866676],[-0.039589688181877,0.01499000005424,0.089227311313152],[-0.021108780056238,0.0095834610983729,-0.021825632080436]],[[-0.055716302245855,0.011279218830168,0.014486524276435],[0.076492287218571,-0.01334177237004,-0.027782872319221],[0.016053192317486,-0.0016120249638334,0.016519071534276]],[[-0.020866813138127,-0.051324978470802,-0.0012595183216035],[0.015632532536983,-0.00054521352285519,0.033102434128523],[-0.042429272085428,0.016986910253763,0.048194978386164]],[[0.017821732908487,-0.017232816666365,0.0091211749240756],[0.054988149553537,-0.042209658771753,0.024868780747056],[-0.0041815605945885,-0.050542961806059,-0.09360509365797]],[[-0.0014955651713535,0.011401614174247,-0.013690740801394],[-0.03099755756557,-0.013467913493514,-0.00045512255746871],[-0.022401308640838,-0.017830649390817,0.027331028133631]],[[-0.049883548170328,0.026179205626249,-0.029529908671975],[0.071741931140423,0.0092562474310398,-0.016162287443876],[0.014116401784122,-0.03719150274992,0.023892061784863]],[[-0.039326086640358,0.011915123090148,0.0064150793477893],[-0.0093177827075124,-0.046541400253773,0.015094308182597],[-0.0091360760852695,-0.0011841469677165,0.073669791221619]],[[-0.0056941392831504,0.059503428637981,0.0058274655602872],[0.019091513007879,0.012072541750968,-0.030460631474853],[-0.066091917455196,0.021453831344843,0.029291635379195]],[[-0.025269243866205,-0.057166483253241,0.0041176918894053],[0.010413001291454,0.018998011946678,-0.013546978123486],[-0.065237298607826,-0.051944505423307,-0.039211794734001]],[[-0.0623894110322,0.010152599774301,-0.03128420561552],[-0.061756238341331,-0.043312594294548,-0.019848780706525],[-0.059815034270287,0.039381068199873,-0.019820839166641]],[[-0.020657826215029,0.016856191679835,0.06534531712532],[-0.04594661295414,-0.049292888492346,-0.029014136642218],[-0.057114128023386,-0.065093442797661,0.038349498063326]],[[0.0049135419540107,0.0056356843560934,-0.020259412005544],[0.054654460400343,-0.010625709779561,0.0082163959741592],[-0.045563075691462,-0.018416808918118,0.0072690611705184]],[[-0.0019849501550198,-0.050396360456944,-0.052612021565437],[-0.035976622253656,-0.0063287252560258,-0.013997843489051],[-0.02289279922843,-0.019671626389027,0.012872613035142]],[[-0.016750428825617,-0.031476553529501,-0.054847780615091],[0.044914878904819,0.10473223030567,-0.094161473214626],[-0.0079084169119596,-0.069544948637486,-0.015311001800001]],[[-0.012064270675182,-0.038724683225155,-0.024554761126637],[0.015930194407701,-0.020230874419212,-0.016460325568914],[0.036689303815365,-0.039005756378174,0.019859986379743]],[[0.017137795686722,-0.0030862824060023,0.0059437397867441],[-0.01296800840646,0.048488520085812,-0.042800668627024],[0.06719446927309,-0.059182547032833,0.02966664545238]],[[-0.056744191795588,0.024847963824868,0.0040530203841627],[-0.065067477524281,-0.001753848977387,-0.063018716871738],[-0.011770746670663,-0.018916249275208,-0.03531064465642]],[[0.014514862559736,0.022933069616556,0.037357326596975],[0.033115394413471,-0.040560677647591,-0.037681996822357],[0.041803393512964,0.065892487764359,0.0091434838250279]],[[-0.0060336436145008,-0.026383420452476,-0.018982602283359],[-0.040413647890091,0.0052678124047816,0.060663904994726],[-0.019659992307425,-0.034809406846762,-0.021499855443835]],[[-0.025764709338546,-0.042211756110191,0.013401205651462],[-0.016365667805076,-0.002099882112816,0.040815964341164],[-0.036252856254578,0.076287873089314,-0.028427973389626]],[[-0.059285242110491,-0.011855395510793,-0.085887178778648],[-0.0075208563357592,0.074780382215977,-0.010185832157731],[-0.019125297665596,0.0031488144304603,0.051754329353571]],[[-0.084538489580154,0.0068114418536425,-0.010337751358747],[0.038047149777412,-0.031769938766956,-0.01998645812273],[-0.025055902078748,0.052125241607428,-0.0060873064212501]],[[-0.033204142004251,-0.027361648157239,0.010540687479079],[-0.080473065376282,0.026904799044132,-0.0013598704244941],[-0.061002388596535,0.057484287768602,0.026897275820374]],[[-0.02170274220407,-0.038729254156351,-0.029524859040976],[-0.021967705339193,-0.034746117889881,0.025781726464629],[-0.0015447523910552,0.025875631719828,0.037914454936981]],[[0.0044873347505927,-0.043417043983936,0.012953171506524],[0.045595165342093,0.090765304863453,0.020853752270341],[-0.085916914045811,-0.049140889197588,-0.020974164828658]],[[0.030868796631694,0.008116559125483,0.04270488768816],[-0.0078496355563402,0.01771217957139,-0.032477665692568],[0.014088658615947,0.0041773593984544,0.024953342974186]],[[0.020513214170933,-0.019903104752302,0.10638221353292],[-0.016167003661394,-0.016358191147447,0.0040099928155541],[0.019386526197195,-0.015874303877354,-0.058874901384115]],[[-0.057072460651398,-0.020010394975543,-0.026809992268682],[-0.0046792426146567,-0.0036926954053342,-0.020553721114993],[-0.044947687536478,-0.042272705584764,0.0090674227103591]],[[-0.069979585707188,0.020551448687911,0.052414752542973],[-0.020504456013441,-0.030595999211073,-0.056994508951902],[0.077729500830173,-0.015427808277309,-0.027311692014337]],[[-0.01704622246325,0.038202941417694,0.0096742007881403],[-0.028052443638444,0.01894124224782,0.0077639259397984],[-0.043351285159588,0.039911087602377,0.00018484544125386]],[[-0.035457041114569,0.034970831125975,-0.051278851926327],[-0.069426782429218,0.020719960331917,0.042702674865723],[0.067945033311844,0.023441936820745,0.014780153520405]],[[0.039367169141769,0.010822616517544,0.045870866626501],[-0.053445570170879,-0.05575018376112,0.055228672921658],[-0.044964086264372,0.034129377454519,-0.032986260950565]],[[0.00046273783664219,0.034615773707628,-0.044653818011284],[0.056868478655815,-0.013173308223486,0.083798997104168],[0.014873332343996,-0.080473989248276,0.041479658335447]],[[-0.013099512085319,0.018148623406887,-0.0093417810276151],[-0.0077079320326447,0.062204536050558,-0.026367435231805],[-0.028268551453948,-0.017925150692463,-0.018102448433638]],[[-0.021850312128663,-0.02929126098752,-0.002920045517385],[-0.02622159011662,0.003910846542567,-0.033748123794794],[0.012661357410252,0.015383156016469,-0.053440075367689]],[[-0.015375337563455,-0.056870777159929,0.066928140819073],[0.068979434669018,-0.070510305464268,-0.020823873579502],[-0.00073539605364203,-0.030057683587074,-0.038410250097513]],[[0.040633279830217,0.034865833818913,-0.020209027454257],[-0.031296297907829,0.028773672878742,0.0088684605434537],[-0.037259735167027,0.032381068915129,0.019120058044791]],[[-0.012990301474929,-0.0018060021102428,-0.0069336579181254],[0.039082013070583,0.044563509523869,-0.0026606284081936],[-0.052857425063848,-0.047866743057966,-0.026102313771844]],[[-0.038414590060711,-0.015762085095048,-0.022138774394989],[0.0021862017456442,0.085425198078156,-0.020787915214896],[0.046565659344196,0.026501059532166,-0.0088787861168385]],[[0.021853905171156,0.00010429031681269,0.037543494254351],[0.029930785298347,-0.07643349468708,-0.046834889799356],[-0.085219152271748,0.037801813334227,0.029704257845879]],[[-0.043567210435867,0.043921407312155,0.01025197468698],[-0.02712307497859,-0.062075477093458,0.037683587521315],[-0.088899776339531,0.017750326544046,-0.0074197938665748]],[[-0.018391044810414,0.068701170384884,-0.026660459116101],[0.0012388174654916,0.048320177942514,0.0080047864466906],[0.00085473980288953,0.016743207350373,-0.065096624195576]],[[-0.0014083272544667,0.029961420223117,0.0073296474292874],[-0.0052474923431873,-0.10253026336432,-0.031847182661295],[0.011546356603503,-0.0072296904399991,0.044126637279987]],[[0.0020281744655222,0.011428623460233,0.042731810361147],[-0.049649175256491,-0.0018186379456893,0.0047720363363624],[-0.025719227269292,-0.03159162029624,0.030773917213082]],[[0.025616161525249,-0.023794816806912,-0.042281337082386],[0.067723989486694,0.012665694579482,-0.043539207428694],[-0.0081609888002276,-0.030374655500054,-0.022230993956327]],[[-0.019879791885614,0.039585154503584,-0.036545924842358],[0.0242063626647,-0.08232270181179,-0.076753474771976],[0.011660701595247,0.053130716085434,-0.010011375881732]],[[-0.0019372384995222,0.0092487698420882,-0.012293943203986],[-0.0022344083990902,-0.085638545453548,0.0027888938784599],[0.0085318433120847,-0.0023065635468811,0.021671941503882]]],[[[-0.057671315968037,-0.019419092684984,0.047465912997723],[0.057132802903652,0.02981524169445,-0.030401481315494],[0.016598384827375,-0.0032282448373735,0.034885596483946]],[[0.01554367877543,-0.057934749871492,0.087068028748035],[-0.019128389656544,0.021397383883595,-0.022773927077651],[0.049311295151711,0.034126207232475,0.14701373875141]],[[0.052632674574852,0.036663085222244,-0.048027493059635],[0.025793492794037,0.0060927984304726,0.020136211067438],[0.069667406380177,0.019254399463534,-0.038300935178995]],[[-0.046714905649424,0.00092827872140333,0.025391101837158],[-0.096798829734325,0.02471299842,-0.022652773186564],[-0.010194661095738,0.062419362366199,-0.010507692582905]],[[-0.013224958442152,0.037416025996208,-0.024752933532],[-0.028652563691139,0.020416308194399,0.060988646000624],[0.0024485380854458,-0.071341648697853,-0.019451124593616]],[[-0.029946126043797,0.079647421836853,0.0058837058022618],[-0.02477128058672,0.071699060499668,-0.046166457235813],[-0.055832788348198,0.0039864536374807,0.011957728303969]],[[0.046022217720747,0.080240339040756,0.024705626070499],[-0.0049138218164444,-0.013281251303852,0.0044051478616893],[0.11946735531092,-0.0037298332899809,-0.057779237627983]],[[-0.0054523516446352,0.079923413693905,0.030882148072124],[0.041848253458738,-0.031817279756069,0.046119526028633],[0.069643393158913,0.047255348414183,0.055347502231598]],[[0.033320385962725,-0.0019252253696322,-0.11177431792021],[-0.028126858174801,0.04381525143981,0.054105155169964],[0.075605750083923,-0.044157058000565,0.09017588943243]],[[-0.0062365592457354,0.095401860773563,0.064005300402641],[-0.027751790359616,0.090097941458225,0.020255429670215],[-0.10299461334944,0.047490213066339,0.076160155236721]],[[0.051989685744047,-0.091751947999001,0.075287640094757],[0.022538639605045,0.074657745659351,0.030925652012229],[0.046813253313303,0.034395284950733,0.036388467997313]],[[-0.01019577588886,0.02643253467977,0.019929934293032],[-0.045428920537233,-0.050511695444584,-0.0052936035208404],[0.044925726950169,0.032871194183826,0.058310445398092]],[[0.032337915152311,-0.046077769249678,0.084252581000328],[-0.0045009753666818,-0.0045983116142452,0.0050273849628866],[0.015093171969056,0.048461440950632,0.020235080271959]],[[-0.02983089722693,-0.016140220686793,0.02351213619113],[0.014446447603405,0.026278836652637,0.041731659322977],[0.0068279835395515,0.05722364410758,-0.0048348088748753]],[[0.043474275618792,-0.024659037590027,-0.069047175347805],[0.22217455506325,0.17157438397408,0.046608380973339],[0.12446577847004,0.11514799296856,0.074024856090546]],[[-0.037889432162046,-0.081735767424107,-0.052248328924179],[-0.0018482182640582,-0.026485826820135,-0.066333472728729],[-0.039745382964611,-0.055403176695108,-0.048864733427763]],[[0.020508531481028,0.0083904797211289,-0.050695046782494],[0.052079916000366,0.087990991771221,-0.0072061130777001],[0.014344409108162,-0.012490268796682,-0.062879242002964]],[[-0.013432520441711,-0.041557263582945,-0.019098814576864],[-0.047103352844715,-0.070991538465023,-0.0028119953349233],[-0.060037441551685,-0.038330364972353,-0.019347567111254]],[[0.11887063086033,-0.03259950876236,-0.092603266239166],[0.044712033122778,-0.054328661412001,-0.017457952722907],[0.0022914076689631,0.021564656868577,0.020150875672698]],[[-0.030460262671113,0.060656055808067,0.14135311543941],[0.015976097434759,0.030385419726372,-0.017229456454515],[-0.011947994120419,-0.07045841217041,-0.017033157870173]],[[0.027463998645544,-0.032980088144541,0.012163539417088],[0.011915137059987,0.012214082293212,0.039533864706755],[0.052319843322039,0.0088519202545285,0.041534807533026]],[[0.011546623893082,-0.020579801872373,-0.047349318861961],[-0.0012198679614812,0.016420921310782,0.073181509971619],[0.03559947013855,0.010532412678003,0.13353238999844]],[[-0.022383397445083,-0.044410809874535,0.04445768892765],[0.021703265607357,0.057546284049749,0.049186881631613],[0.01213002204895,-0.020203057676554,-0.028503645211458]],[[-0.014950651675463,-0.036882005631924,0.0062512676231563],[0.039295930415392,0.0038242461159825,0.044162154197693],[0.046703465282917,0.03337836265564,-0.084994770586491]],[[0.093552134931087,0.022079003974795,-0.11289422214031],[-0.025323344394565,0.027667805552483,0.081194311380386],[0.0419537499547,-0.0019874211866409,-0.02707345597446]],[[-0.040194317698479,0.055527221411467,0.015148360282183],[0.0053414241410792,0.018492402508855,0.03896401450038],[0.062437798827887,0.041348539292812,0.047045968472958]],[[0.078234128654003,0.098398745059967,-0.011357557028532],[0.040114626288414,0.10467993468046,0.071091555058956],[-0.00039752191514708,0.035528343170881,0.018137441948056]],[[-0.011307328008115,-0.0036871596239507,0.087726056575775],[0.038260474801064,-0.0051593147218227,-0.015644390136003],[0.046057008206844,-0.043321456760168,0.055739428848028]],[[0.030785387381911,0.001806759275496,-0.042219139635563],[0.023632474243641,0.089864976704121,0.020117705687881],[-0.011737821623683,0.010755479335785,0.072985507547855]],[[0.081592224538326,0.012520461343229,0.027651412412524],[0.074086233973503,-0.042730856686831,1.4221159290173e-05],[0.14241282641888,0.051003120839596,0.11376161128283]],[[-0.010597645305097,0.029978353530169,0.05133318156004],[-0.028637988492846,-0.032246444374323,0.014439163729548],[0.10210797190666,-0.026006586849689,0.0038638089317828]],[[0.054995108395815,0.092220328748226,0.067297741770744],[-0.065463103353977,0.0081661501899362,0.035857528448105],[0.069078117609024,-0.0058359378017485,-0.027940114960074]],[[0.047687564045191,0.01052011270076,-0.051613125950098],[0.02986716479063,0.0015638110926375,0.0434888638556],[0.094412378966808,-0.028428666293621,0.037502005696297]],[[0.047638602554798,0.082399278879166,0.01947033777833],[0.052740424871445,-0.086549304425716,0.01756402105093],[0.00055580079788342,-0.069654032588005,-0.090589419007301]],[[0.047904919832945,-0.030871612951159,-0.01560596190393],[0.077590450644493,-0.0083317859098315,0.023600682616234],[0.011234239675105,-0.025424053892493,-0.00027348418370821]],[[-0.068398050963879,-0.0001654856314417,-0.0078705912455916],[0.011724239215255,0.056100867688656,-0.013238533399999],[0.025436457246542,0.08619100600481,-0.012410162016749]],[[-0.054126568138599,-0.034484412521124,-0.013786679133773],[-0.027917355298996,-0.030164396390319,0.0015318512450904],[-0.022949563339353,-0.034383755177259,-0.065152019262314]],[[0.082549884915352,0.0026675034314394,0.070399709045887],[-0.024678707122803,0.001762546482496,-0.011242406442761],[-0.097003899514675,-0.035029374063015,0.0047953887842596]],[[0.046047195792198,0.050860751420259,-0.066353932023048],[0.0564457885921,0.019453894346952,0.10126855969429],[0.025563111528754,0.079573556780815,0.009290280751884]],[[-0.030481560155749,-0.05899865180254,0.021149652078748],[-0.026415975764394,0.049317616969347,-0.038175780326128],[0.010246118530631,0.010651931166649,0.12588958442211]],[[0.11334381997585,-0.051617790013552,-0.027323378250003],[-0.048842586576939,0.012592430226505,0.016345210373402],[-0.011797697283328,-0.048736680299044,-0.028177246451378]],[[0.059229593724012,-0.0018261312507093,0.002744700293988],[0.052056666463614,0.034186206758022,0.022875305265188],[-0.0049204346723855,-0.027838075533509,0.067531518638134]],[[0.044960420578718,0.03983112424612,-0.026500564068556],[0.0073326234705746,0.065219379961491,-0.057777859270573],[-0.0092333722859621,-0.044877305626869,-0.018687279894948]],[[0.041319809854031,-0.017530350014567,-0.01718189753592],[-0.035638704895973,-0.014718047343194,0.020075269043446],[-0.036047950387001,0.0218136459589,0.0057106856256723]],[[-0.015973582863808,-0.044517762959003,0.04936408996582],[-0.0638727247715,0.022459549829364,0.078051514923573],[-0.023279793560505,-0.0015955908456817,0.010579423047602]],[[0.019819153472781,0.047274634242058,0.070453561842442],[0.16778609156609,0.076662413775921,-0.019103435799479],[0.08410157263279,-0.010806822218001,0.063636682927608]],[[0.008692404255271,-0.069725029170513,-0.0021547605283558],[-0.0042568235658109,-0.021127719432116,0.020606618374586],[0.023322692140937,0.018928015604615,0.064321979880333]],[[-0.042814861983061,0.00011186507617822,-0.00039766050758772],[0.032735593616962,0.055312976241112,-0.017123885452747],[-0.084817506372929,0.046864192932844,0.035791702568531]],[[0.051731865853071,-0.0021098023280501,0.1063539609313],[-0.0233119353652,-0.029389226809144,0.062367424368858],[-0.0018573770066723,-0.013832462951541,0.052297204732895]],[[0.032101295888424,-0.019233463332057,0.044434383511543],[0.015484810806811,0.058147061616182,-0.019775586202741],[-0.01280524674803,0.13907590508461,-0.017572851851583]],[[-0.046044867485762,0.0048325629904866,0.10652134567499],[-0.062591426074505,-0.03852304071188,-0.0014818414347246],[-0.11434515565634,-0.019021425396204,0.029235024005175]],[[-0.0091117024421692,0.048479598015547,0.049491487443447],[-0.05103825032711,-0.079447850584984,-0.056190330535173],[0.15183658897877,0.03734190762043,-0.022541334852576]],[[-0.050268616527319,0.031401835381985,-0.032600063830614],[-0.005668458994478,0.039707116782665,0.033399969339371],[0.033303912729025,0.0038494339678437,-0.11247628927231]],[[0.10918806493282,0.034359205514193,0.096701897680759],[0.010450948961079,0.012250838801265,-0.024255771189928],[0.045525319874287,0.0020413508173078,-0.031636793166399]],[[-0.027434641495347,0.021048942580819,0.093621961772442],[0.047731731086969,-0.058727666735649,0.018946835771203],[-0.050827138125896,-0.033190604299307,-0.0299809332937]],[[0.02479718439281,-0.065460681915283,0.015821598470211],[-0.026189133524895,-0.055844251066446,0.02405546233058],[0.080112874507904,-0.026358481496572,0.10809528082609]],[[-0.01579393260181,-0.019304128363729,-0.10800790786743],[-0.015660459175706,-0.013390440493822,0.051672626286745],[-0.053334664553404,0.018424088135362,-0.059304628521204]],[[0.08533226698637,-0.027404149994254,-0.04854378849268],[-0.029301926493645,0.01769357919693,-0.074178084731102],[-0.032210558652878,-0.038567066192627,-0.018909640610218]],[[0.084751762449741,0.042611390352249,0.033311754465103],[0.023194156587124,0.0010359425796196,0.085078582167625],[0.048515368252993,-0.0018582759657875,0.070150725543499]],[[-0.031062325462699,-0.025480845943093,0.013706029392779],[-0.011701440438628,0.01987093128264,-0.11731392890215],[-0.031402371823788,0.052994411438704,-0.0035171140916646]],[[0.062616169452667,-0.040067002177238,0.024983089417219],[0.021830441430211,0.074773393571377,0.041111502796412],[-0.05228166282177,0.060518346726894,-0.052792739123106]],[[-0.021496899425983,0.023116089403629,-0.011222696863115],[-0.055006071925163,-0.038604509085417,0.033852841705084],[-0.05476962774992,0.020551305264235,-0.023306101560593]],[[-0.038405459374189,-0.059131637215614,-0.0033471297938377],[0.025315642356873,-0.035252138972282,-0.024302253499627],[0.0033047036267817,-0.017251685261726,-0.029947957023978]],[[0.021974366158247,0.0090242149308324,0.018977005034685],[0.014403029344976,0.031180491670966,0.08871153742075],[0.069139264523983,-0.040393590927124,-0.047590468078852]],[[0.061759833246469,0.023957513272762,-0.036913968622684],[0.06574922055006,0.045990254729986,0.024916127324104],[0.049169637262821,-0.01477284822613,0.016062123700976]],[[0.040153864771128,0.019503742456436,-0.01977613568306],[-0.088233344256878,0.060381107032299,-0.049830731004477],[-0.034578386694193,-0.016729505732656,0.038252003490925]],[[0.080269984900951,-0.017321914434433,-0.01998008415103],[0.049269508570433,0.03787362575531,0.066543623805046],[0.12674504518509,0.097451493144035,0.064589470624924]],[[0.041133150458336,0.029566982761025,-0.014069049619138],[0.032280091196299,0.024134427309036,0.012103145010769],[-0.0068383957259357,0.075791478157043,0.065194144845009]],[[0.013864275999367,-0.019987909123302,0.060172840952873],[-0.062906913459301,-0.019381530582905,0.0011431159218773],[0.074780307710171,0.014125250279903,0.03656791895628]],[[0.064375847578049,0.046828404068947,0.080006875097752],[0.048422992229462,-0.044527865946293,0.091513313353062],[0.094435192644596,0.1147450953722,0.047279842197895]],[[-0.034443914890289,0.085215531289577,-0.00082531536463648],[0.03940661996603,0.020742893218994,-0.084925659000874],[0.0055137416347861,0.027227304875851,-0.0062405760399997]],[[0.1237271502614,0.089678302407265,0.024800008162856],[-0.013755199499428,0.026149773970246,0.011935289017856],[0.025030376389623,0.016172675415874,0.058346632868052]],[[0.049694802612066,-0.067304201424122,-0.045918673276901],[-0.025250909850001,-0.04947841539979,0.028163861483335],[0.019643208011985,-0.031224085018039,0.048560928553343]],[[0.074388526380062,-0.013071455061436,0.0014208714710549],[0.090486824512482,0.096673235297203,0.029042659327388],[0.044047635048628,0.065817885100842,-0.073567628860474]],[[-0.013913770206273,-0.016279608011246,0.032912787050009],[-0.01621576026082,-0.031913246959448,0.043708801269531],[0.00055620318744332,-0.055469267070293,0.0032684821635485]],[[-0.036417704075575,-0.024719793349504,0.035709153860807],[0.085979782044888,-0.14020060002804,0.0058421571739018],[0.024025740101933,-0.0072354506701231,-0.0048825247213244]],[[-0.016962325200438,0.038587562739849,0.0094177694991231],[0.034476574510336,7.7368371421471e-05,-0.026188204064965],[-0.043397858738899,0.060675978660583,-0.043018221855164]],[[0.080251820385456,0.024620098993182,0.052873533219099],[0.087826706469059,-0.021875074133277,0.012626525945961],[0.041183024644852,-0.062824532389641,0.077428326010704]],[[0.0048230341635644,-0.034587159752846,-0.019785143435001],[-0.024054227396846,0.05966355279088,-0.029608080163598],[0.047208566218615,0.027948813512921,-0.012435344047844]],[[-0.012031033635139,-0.06733775883913,0.026763504371047],[-0.076110929250717,-0.06821283698082,-0.016043910756707],[-0.021179230883718,0.01040174625814,0.0875079408288]],[[-0.018005877733231,0.048886496573687,-0.067831330001354],[-0.027393210679293,0.13048031926155,0.032473128288984],[0.045397080481052,0.010406908579171,0.055460531264544]],[[0.057733945548534,-0.01928505115211,0.020200908184052],[0.028258185833693,0.047618757933378,0.039576068520546],[0.075690731406212,0.00043800671119243,-0.038290649652481]],[[-0.035290982574224,0.016359508037567,-0.036597084254026],[0.069587424397469,-0.013631301932037,-0.014094462618232],[0.0015922439051792,0.030079007148743,0.034710392355919]],[[0.050679702311754,-0.026490565389395,0.040116094052792],[-0.038245793431997,0.0028820068109781,-0.030396865680814],[0.061744507402182,-0.0048430310562253,0.11351239681244]],[[-0.021745715290308,-0.0080228289589286,-0.020935580134392],[0.0022419639863074,-0.010473118163645,0.044470358639956],[-0.065170876681805,0.0042672073468566,-0.059806179255247]],[[-0.067784957587719,-0.044922389090061,0.03046709112823],[0.016528088599443,0.045220881700516,0.025949725881219],[0.010565990582108,-0.026897946372628,-0.015153971500695]],[[0.01645802333951,0.057984385639429,0.036597084254026],[0.065189994871616,0.044753164052963,0.035346612334251],[-0.081106320023537,0.028649814426899,-0.025011505931616]],[[0.15240493416786,-0.01189405657351,0.051492460072041],[0.14800083637238,-0.016508216038346,0.035264857113361],[0.087806776165962,0.00061666476540267,0.058183871209621]],[[-0.025788558647037,-0.025369891896844,0.036249838769436],[-0.023043500259519,-0.03810391575098,0.15366818010807],[-0.0083908494561911,-0.015795117244124,0.045599456876516]],[[-0.034484017640352,0.058273706585169,-0.064829088747501],[0.090234957635403,0.057506743818521,0.084583051502705],[0.058325883001089,0.011047477833927,-0.022532891482115]],[[-0.028975347056985,0.031298756599426,0.0096779186278582],[0.080203451216221,-0.074733793735504,0.022097539156675],[0.073112316429615,0.0060446667484939,0.018488319590688]],[[0.031321462243795,-0.038654912263155,0.058922991156578],[0.006439627148211,0.040740933269262,0.044964801520109],[-0.075606793165207,0.017225258052349,0.056380219757557]],[[-0.05814353749156,-0.066668689250946,-0.0072799460031092],[-0.043458644300699,-0.020714648067951,0.047207802534103],[-0.089839279651642,-0.067486390471458,-0.013179592788219]],[[0.045438036322594,-0.096395388245583,-0.018415359780192],[0.024141829460859,0.10737452656031,-0.020020367577672],[0.031434152275324,0.069919764995575,-0.074410438537598]],[[0.021855365484953,0.069635540246964,0.012819747440517],[0.033046558499336,-0.035681907087564,0.052923392504454],[-0.0086061218753457,-0.00059661868726835,0.030733868479729]],[[0.014697541482747,0.15070109069347,-0.0046623721718788],[0.033217623829842,-0.012371095828712,-0.013076750561595],[0.06720244884491,-0.030498700216413,0.015672521665692]],[[0.040645495057106,-0.01874877139926,0.081050731241703],[0.041775055229664,0.049507617950439,-0.006685156840831],[-0.040369909256697,0.044858403503895,-0.0056290337815881]],[[0.084943346679211,-0.013210953213274,0.0030546160414815],[0.034856792539358,0.039655402302742,-0.042731806635857],[0.0010160234523937,0.010420879349113,0.070511557161808]],[[-0.067564830183983,-0.10655358433723,0.012115315534174],[0.034557648003101,-0.069422155618668,-0.019994692876935],[0.056675154715776,0.020251160487533,-0.023632235825062]],[[0.0059189302846789,-0.0024558801669627,0.008299476467073],[-0.020780120044947,0.005640690214932,0.027592517435551],[-0.03694299980998,0.0065671931952238,0.011986626312137]],[[0.031160091981292,-0.016480164602399,-0.032434966415167],[0.0044170464389026,-0.082713104784489,-0.01671114936471],[0.11989137530327,-0.093816310167313,0.031872097402811]],[[0.076731696724892,0.05164710059762,-0.054319437593222],[0.083334267139435,0.078495278954506,-0.010467260144651],[0.030858557671309,0.03134460747242,-0.024399941787124]],[[0.016526985913515,0.041346177458763,0.04797550663352],[-0.0029235119000077,0.051049664616585,-0.029460154473782],[-0.00045165963820182,-0.0092299887910485,0.002820425434038]],[[0.011933218687773,-0.049605276435614,-0.056302115321159],[0.042596701532602,-0.024917559698224,0.10742850601673],[-0.017073405906558,-0.0059278174303472,-0.068982221186161]],[[0.023935621604323,0.11682736873627,0.040604200214148],[-0.028472511097789,0.07105553150177,0.093662440776825],[0.032194636762142,0.028433809056878,0.035796470940113]],[[0.017837705090642,-0.049662157893181,0.0047456496395171],[0.033428553491831,-0.019903350621462,0.12199261039495],[0.02668903209269,-0.027849474921823,-0.053818982094526]],[[-0.010591120459139,-0.039914831519127,-0.0054181646555662],[0.0034396960400045,0.053808938711882,0.1175709143281],[0.010371795855463,0.066141068935394,0.027783500030637]],[[0.0094342110678554,0.11363414674997,-0.082588136196136],[0.088284641504288,0.00098329875618219,-0.02623287960887],[-0.0034184823743999,0.022050518542528,-0.0018182973144576]],[[0.086209930479527,-0.070321395993233,0.061172846704721],[0.037647113204002,0.0420245192945,-0.0013832168187946],[0.056900948286057,0.029918018728495,0.036099210381508]],[[-0.062621548771858,-0.090630620718002,-0.023195596411824],[-0.032144159078598,0.037213649600744,-0.01568103954196],[0.00020537618547678,0.027277644723654,0.058012455701828]],[[-0.0045577338896692,-0.011664877645671,0.008226977661252],[0.052913215011358,0.065862096846104,0.0044497190974653],[-0.063902884721756,-0.09729541093111,0.014854564331472]],[[0.014683363959193,-0.018167845904827,-0.0085487077012658],[0.044957283884287,0.051757648587227,-0.012857334688306],[-0.053460918366909,-0.045035403221846,-0.0080135213211179]],[[0.065905712544918,-0.0078124296851456,-0.012074579484761],[0.02601109072566,-0.019439060240984,-0.031760361045599],[0.005413313396275,0.05138386040926,-0.072847925126553]],[[0.033553335815668,-0.10270515829325,0.046578332781792],[-0.060094449669123,-0.022503100335598,0.044180996716022],[0.041462615132332,0.014487247914076,0.073801554739475]],[[-0.0032417690381408,-0.054835364222527,-0.074517026543617],[0.0074580386281013,0.024592721834779,-0.017909128218889],[0.062139458954334,0.09157121181488,-0.096763953566551]],[[-0.057737678289413,0.025469347834587,-0.075560420751572],[-0.012612366117537,0.0022675485815853,-0.096404939889908],[-0.026901185512543,0.012134083546698,0.081462539732456]],[[0.027848903089762,0.013469867408276,0.052916817367077],[-0.00043398840352893,0.0032290015369654,0.1204022243619],[0.032685745507479,0.093618035316467,0.14332228899002]],[[0.045123059302568,-0.03599601238966,-0.0216742772609],[0.037388831377029,0.029168521985412,0.034947045147419],[0.018087770789862,0.012028873898089,-0.0043711694888771]],[[-0.021398831158876,-0.021462617442012,0.059437077492476],[0.039488051086664,0.0076148249208927,0.024340759962797],[-0.051692694425583,0.032732900232077,0.0074871247634292]],[[0.028076788410544,-0.074825420975685,0.042996026575565],[-0.036521546542645,-0.072140336036682,0.014075462706387],[0.015761563554406,-0.02033550105989,-0.032018803060055]],[[0.075254693627357,0.071395963430405,-0.0054066274315119],[0.019467709586024,-0.045885466039181,0.036916367709637],[0.079966358840466,0.047387395054102,-0.046572715044022]],[[0.032962869852781,0.026720317080617,0.0021898427512497],[0.11499091237783,-0.039126567542553,0.0095333596691489],[-0.013606716878712,-0.056684207171202,-0.042265150696039]],[[0.013812832534313,-0.032887347042561,0.026554387062788],[0.049787282943726,-0.031183732673526,-0.10485067218542],[-0.036586120724678,-0.023640995845199,-0.00087858166079968]],[[-0.01388634275645,0.073692210018635,0.004203419201076],[-0.046396158635616,0.092281125485897,0.0097982296720147],[-0.003317438531667,-0.047894962131977,0.035121332854033]],[[-0.01380966603756,-0.020668806508183,0.038402039557695],[0.00508793303743,0.031114445999265,0.12162155658007],[0.019261861220002,0.027652319520712,-0.025245254859328]],[[0.072532065212727,-0.046632789075375,-0.023358039557934],[0.062846072018147,0.08342008292675,0.019967790693045],[0.053228955715895,-0.0083664022386074,0.032613538205624]],[[0.029991462826729,0.055694453418255,0.00097503897268325],[0.055515870451927,0.018371172249317,0.0086381947621703],[0.022956212982535,0.12415095418692,0.014257816597819]],[[0.046739153563976,0.011720631271601,-0.012306132353842],[0.01868549361825,-0.060695499181747,0.016869831830263],[0.070742249488831,-0.0011135145323351,0.089758820831776]]],[[[0.048825681209564,0.055745031684637,0.057727627456188],[0.12270176410675,0.0081319278106093,0.027107099071145],[-0.048497568815947,0.054236955940723,-0.01453295443207]],[[0.0046182502992451,0.021366467699409,-0.013828535564244],[-0.066203281283379,0.086265549063683,-0.088004902005196],[-0.050312072038651,0.012798958458006,0.0044317021965981]],[[0.026875879615545,-0.077136404812336,-0.13664403557777],[0.011118982918561,0.062948279082775,-0.080959878861904],[0.097806520760059,0.010117925703526,0.0070255976170301]],[[0.047910820692778,0.019704824313521,-0.026411032304168],[-0.061514157801867,0.090665973722935,-0.02501704543829],[0.0078971926122904,-0.06248090043664,0.033710725605488]],[[-0.022435175254941,-0.0038182358257473,-0.012316304259002],[-0.073946751654148,0.018565863370895,0.079153291881084],[-0.036341361701488,0.033701870590448,0.0070827784948051]],[[0.016976358368993,0.089073844254017,0.053270507603884],[0.06561254709959,-0.055793106555939,0.10588501393795],[-0.023935955017805,0.076277375221252,0.16701643168926]],[[-0.1233536824584,-0.032968979328871,-0.035068221390247],[0.040900606662035,0.073365487158298,0.023021848872304],[0.038297411054373,-0.064827091991901,0.027168989181519]],[[-0.07443243265152,0.024288892745972,0.018126970157027],[0.087630107998848,0.047993525862694,-0.033346217125654],[0.07227548956871,0.021177349612117,-0.046656265854836]],[[-0.054613526910543,0.082335829734802,0.1217644661665],[0.046249471604824,0.02183323353529,-0.086725845932961],[-0.022216659039259,-0.068244718015194,0.022794334217906]],[[0.078116104006767,-0.11657623946667,0.040474023669958],[0.066697329282761,-0.035584453493357,0.035893075168133],[0.020513975992799,-0.028985485434532,0.038010586053133]],[[0.015173979103565,0.044265616685152,0.088375374674797],[0.098885096609592,0.021530974656343,-0.077185995876789],[-0.084324903786182,0.054174404591322,-0.023300673812628]],[[0.034147281199694,-0.080570057034492,-0.046185456216335],[-0.0097398879006505,0.01031315792352,-0.023092940449715],[0.015643250197172,0.010818180628121,-0.0010046376846731]],[[0.021080071106553,-0.12470075488091,-0.041115611791611],[-0.011735859327018,-0.067943185567856,0.099854409694672],[-0.027276596054435,0.027481773868203,0.050885546952486]],[[-0.023711279034615,0.023416224867105,0.0091789290308952],[0.067641079425812,-0.02182562276721,0.052603416144848],[-0.030537445098162,-0.088285483419895,0.021111713722348]],[[-0.047789290547371,-0.088097251951694,0.072301864624023],[0.059038758277893,0.0085552064701915,0.085659809410572],[-0.031723100692034,0.085945665836334,0.16655485332012]],[[0.0016477488679811,0.0090209525078535,0.0082003939896822],[0.026438167318702,0.0046510454267263,0.0016007658559829],[-0.017164636403322,-0.057836331427097,-0.021662382408977]],[[0.054290238767862,-0.0095328073948622,0.01447741407901],[-0.06069403514266,0.069531552493572,0.027614736929536],[0.085236579179764,0.023437939584255,-0.022820083424449]],[[-0.051362030208111,0.1351472735405,-0.03473724797368],[0.010769127868116,0.014898027293384,-0.034141298383474],[-0.083762660622597,0.033009886741638,-0.016683638095856]],[[0.031134145334363,0.026971224695444,-0.02609227783978],[0.0079313805326819,0.10564897209406,-0.0017429437721148],[0.0075926976278424,-0.078641705214977,-0.052175797522068]],[[0.016961792483926,-0.046676605939865,0.056629590690136],[0.10098100453615,0.040549650788307,0.0074214460328221],[-0.0085441078990698,0.062548615038395,0.038854755461216]],[[0.062110476195812,0.010663704015315,-0.029533643275499],[0.02259074151516,-0.025118689984083,-0.046837732195854],[-0.039634596556425,0.082975439727306,0.05315824970603]],[[0.086089164018631,0.073977313935757,-0.035954087972641],[0.07518420368433,0.016280330717564,-0.090117916464806],[-0.023913143202662,0.073117434978485,0.021185589954257]],[[0.035552341490984,-0.030353110283613,0.049233868718147],[0.048849623650312,0.045032545924187,0.045381747186184],[-0.035272844135761,-0.0043108258396387,-0.010616228915751]],[[-0.011389827355742,0.077534012496471,-0.033556826412678],[-0.042734362185001,-0.032926447689533,-0.042823109775782],[-0.077699191868305,-0.0032899528741837,0.018938828259706]],[[0.05916415527463,0.066524147987366,-0.081980668008327],[0.05805255100131,-0.016257205978036,0.047779697924852],[-0.052108533680439,0.034705001860857,-0.0078924726694822]],[[-0.028298303484917,-0.028946295380592,-0.02963406406343],[-0.075109511613846,0.098824627697468,0.010367181152105],[0.048419494181871,0.054247919470072,-0.0063614854589105]],[[0.001437027240172,0.090545699000359,0.058531932532787],[-0.089698918163776,0.080648720264435,-0.02082983776927],[0.065882883965969,0.044966448098421,-0.041857101023197]],[[-0.030987473204732,0.046252351254225,-0.033883430063725],[0.030863789841533,0.059830486774445,-0.030843557789922],[0.075196497142315,0.024258941411972,0.023872893303633]],[[0.10183674842119,0.078759625554085,0.063920214772224],[-0.068854451179504,-0.055195946246386,0.020080905407667],[0.064869575202465,-0.020179003477097,0.055513776838779]],[[0.025761747732759,0.067834056913853,0.064708039164543],[-0.010682214982808,-0.02974901907146,0.038005795329809],[-0.060003709048033,0.080588564276695,0.027800666168332]],[[-0.034336626529694,0.030431143939495,-0.025634160265326],[0.023155776783824,0.028703549876809,0.033753044903278],[-0.021236278116703,0.032386869192123,-0.025924488902092]],[[-0.031888779252768,0.011277053505182,0.051239542663097],[-0.06322755664587,0.075469985604286,0.00061629514675587],[0.026085602119565,0.09002273529768,-0.027733363211155]],[[0.01301244366914,-0.0016903602518141,0.06096787750721],[0.0085805971175432,0.0030855315271765,0.042223293334246],[-0.0069235716946423,0.051659259945154,0.01261071767658]],[[-0.043125204741955,-0.029442118480802,0.078920401632786],[0.073349602520466,0.015031898394227,0.052042797207832],[-0.01217199396342,-0.027151117101312,0.11866005510092]],[[-0.015016539953649,-0.0012926430208609,-0.065520741045475],[0.070550292730331,-0.014169073663652,0.023743456229568],[0.03707954660058,0.11552868783474,-0.043503701686859]],[[0.058139130473137,0.052798844873905,-0.0031015258282423],[0.10547267645597,0.027753032743931,-0.046336036175489],[0.02245320379734,-0.0033834190107882,0.02033425681293]],[[-0.0088347960263491,0.006864211987704,-0.0010890658013523],[-0.0032064518891275,-0.013920851051807,0.0016473745927215],[0.049137677997351,0.038513574749231,0.025547748431563]],[[-0.0069164116866887,-0.00040597136830911,-0.0012407071189955],[-0.048061344772577,0.0039198445156217,-0.018758928403258],[0.005530851893127,-0.028610218316317,0.018610248342156]],[[-0.035510525107384,0.043008666485548,-0.052386216819286],[0.013041453436017,-0.059837821871042,0.042767971754074],[-0.048583727329969,-0.10893350839615,0.056557320058346]],[[0.046500042080879,-0.084765575826168,-0.014268198981881],[-0.074767269194126,0.010813313536346,0.056819844990969],[-0.0017824349924922,-0.058422688394785,-0.010676443576813]],[[-0.073129832744598,-0.013904192484915,0.025573723018169],[-0.0032801942434162,0.00034522076020949,-0.060594890266657],[0.022890198975801,0.086139857769012,-0.024315487593412]],[[0.0027789568994194,0.014364524744451,-0.0051326844841242],[-0.041730213910341,0.064620986580849,0.033620692789555],[0.032429721206427,-0.076523467898369,0.019131634384394]],[[0.082082107663155,0.11371806263924,-0.0014423846732825],[0.034304160624743,-0.067284047603607,0.097605250775814],[0.081206329166889,0.03269736841321,-0.039686497300863]],[[-0.00053674436639994,0.060426227748394,0.0303869638592],[0.0021726344712079,0.01887889392674,0.053473010659218],[0.025549946352839,0.029711041599512,0.047125477343798]],[[0.020592536777258,0.032417844980955,0.046863634139299],[0.034568205475807,-0.010002246126533,0.026629710569978],[0.019404828548431,0.025700053200126,-0.034974779933691]],[[-0.03235686570406,0.02716544829309,0.038533862680197],[0.0010826459620148,-0.009219010360539,0.034909177571535],[0.086225114762783,-0.002704466227442,0.015362116508186]],[[-0.019183104857802,0.10032290965319,0.070112802088261],[-0.0098648183047771,-0.078978843986988,-0.019371883943677],[0.006748906802386,0.036658056080341,0.026561725884676]],[[0.0075939656235278,-0.058940306305885,0.034740895032883],[-0.014943433925509,0.067906156182289,-0.018453629687428],[0.082470312714577,0.065258666872978,-0.0027954317629337]],[[0.027796383947134,-0.055052611976862,0.014774115756154],[0.001137648941949,0.031669564545155,-0.0037446783389896],[-0.035436399281025,0.050586506724358,-0.020530823618174]],[[0.05457004904747,0.0078166360035539,0.00373102305457],[0.022631086409092,-0.010781543329358,0.024125279858708],[-0.011177338659763,0.045968800783157,0.014279044233263]],[[0.010541708208621,0.063620857894421,-0.033732570707798],[-0.00036013123462908,-0.019063465297222,0.054281167685986],[-0.015344214625657,-0.063683621585369,0.034686967730522]],[[0.089123293757439,0.10438624024391,0.05200644955039],[0.099303647875786,0.074510626494884,0.015849390998483],[-0.085773080587387,-0.021429711952806,-0.020255863666534]],[[0.048721753060818,0.0095247989520431,-0.015257718972862],[-0.061848971992731,-0.011215168982744,0.024289660155773],[0.013517225161195,0.0627526268363,-0.030110444873571]],[[-0.004497698508203,0.061387162655592,0.082603476941586],[-0.17898301780224,0.016520978882909,0.022286519408226],[0.070079557597637,0.044800948351622,0.0028714300133288]],[[0.088932782411575,0.04103160277009,-0.0033725309185684],[-0.066040560603142,-0.0079840794205666,-0.047104742377996],[0.045464094728231,-0.058413080871105,0.02069684676826]],[[0.031240034848452,0.014878956601024,-0.037812057882547],[0.063025534152985,-0.053411155939102,0.017998095601797],[-0.011730442754924,-0.10683877766132,0.054127365350723]],[[0.023326799273491,0.0088823456317186,-0.044266857206821],[0.090087153017521,0.026449525728822,0.1314764469862],[-0.026598969474435,-0.061029728502035,0.017379874363542]],[[0.035482801496983,-0.062755279242992,-0.034080628305674],[0.016186928376555,0.032388873398304,0.038237493485212],[0.056510489434004,0.031946707516909,-0.0045783245004714]],[[-0.04590268433094,0.056178729981184,0.017799755558372],[-0.034604921936989,0.039047829806805,0.036628272384405],[-0.0018168012611568,0.15159167349339,-0.030523728579283]],[[-0.003818477736786,0.098028883337975,0.076124511659145],[-0.034451603889465,0.0094861751422286,0.031698815524578],[0.063999988138676,-0.012335286475718,0.15946760773659]],[[-0.026174392551184,-0.044626478105783,0.0076969834044576],[0.016231684014201,0.043931216001511,0.016168413683772],[0.016374971717596,0.024738322943449,0.078031189739704]],[[0.037380047142506,0.010204197838902,-0.00077173032332212],[0.089482225477695,-0.047448024153709,0.020570557564497],[-0.064431771636009,-0.018315203487873,-0.047927275300026]],[[0.05296428129077,0.032641381025314,-0.0012726180721074],[0.0075333821587265,0.070458009839058,-0.026820119470358],[0.05063695833087,0.058676201850176,0.032775674015284]],[[-0.030141774564981,0.033243246376514,-0.020401382818818],[0.087010152637959,0.058220446109772,0.0016722474247217],[0.02219046652317,0.0092452941462398,0.070065625011921]],[[-0.027456706389785,-0.0082901660352945,0.021982001140714],[0.04673932492733,0.016670703887939,-0.032777477055788],[0.0027088620699942,0.0074782236479223,0.062668092548847]],[[-0.031786933541298,-0.015011938288808,-0.022696617990732],[0.032400622963905,-0.017128333449364,0.035940282046795],[-0.040092013776302,-0.059731088578701,0.055594291538]],[[0.037721086293459,0.02439665608108,0.068202637135983],[-0.041748948395252,0.17542065680027,0.047230746597052],[0.05691983550787,0.0052541652694345,0.083688989281654]],[[0.044880464673042,0.030286209657788,0.00716737145558],[-0.0102165248245,0.030112866312265,0.041598178446293],[0.053090531378984,0.037990279495716,0.0007633258937858]],[[-0.04306622594595,-0.021518405526876,0.04800933226943],[-0.029849195852876,-0.022266075015068,-0.0028277332894504],[-0.0024434942752123,-0.01483750436455,0.12080501765013]],[[0.064146928489208,0.035444010049105,0.028000025078654],[0.037503689527512,0.02244252152741,0.011660228483379],[0.014542742632329,0.027989394962788,0.0025377990677953]],[[-0.052815247327089,0.12212563306093,-0.066049985587597],[0.039439678192139,-0.027012184262276,0.033545758575201],[-0.0088798869401217,-0.023905910551548,-0.0022567368578166]],[[-0.02482651732862,0.046740870922804,0.0039786212146282],[-0.077392123639584,0.024447411298752,-0.071040488779545],[0.02538632415235,-0.011236041784286,0.080378070473671]],[[0.029269585385919,0.050398271530867,0.023606846109033],[0.088905468583107,0.074668779969215,-0.011657355353236],[0.055343125015497,0.065814793109894,0.03023879788816]],[[-0.1155416443944,0.041380140930414,-0.047044400125742],[-0.026208369061351,-0.051791962236166,0.094425342977047],[0.05729615688324,0.038433887064457,0.071505583822727]],[[-0.00067391007905826,0.031403657048941,-0.0099510606378317],[-0.0064662955701351,0.04830876365304,0.012043838389218],[0.046644315123558,0.028164708986878,0.020661789923906]],[[-0.056311015039682,0.078390054404736,0.089012965559959],[0.033926196396351,0.022548094391823,0.0024775685742497],[-0.0060448283329606,0.05314389243722,-0.0181929692626]],[[-0.017319783568382,-0.025812052190304,0.025934344157577],[0.029208738356829,-0.033169351518154,0.0021747217979282],[-0.03287934884429,-0.00058713048929349,0.0083555374294519]],[[0.036652948707342,0.043349765241146,0.058191530406475],[0.0028620040975511,0.0010811034590006,0.0077638197690248],[0.0062678386457264,-0.084797658026218,-0.0057535120286047]],[[0.024123480543494,-0.015516391955316,0.073993295431137],[0.069175697863102,-0.06711632758379,0.10459986329079],[0.025651302188635,0.051140982657671,0.036815755069256]],[[0.051421374082565,0.0059838332235813,0.13724574446678],[-0.033032141625881,0.021028216928244,0.026152843609452],[0.030406426638365,0.0063244136981666,0.027799595147371]],[[0.024471854791045,0.024170586839318,0.033648889511824],[0.099391356110573,0.062822453677654,-0.026349494233727],[0.01594172604382,0.037310250103474,0.014155081473291]],[[-0.0024772451724857,0.047272980213165,-0.023125451058149],[-0.033082030713558,-0.022148638963699,0.057318456470966],[-0.028637373819947,0.062043845653534,-0.018148431554437]],[[-0.031937349587679,-0.057877913117409,-0.012168098241091],[0.10138162225485,-0.016059622168541,-0.013436738401651],[-0.074942044913769,-0.024303540587425,-0.026150783523917]],[[0.007368397898972,0.039174985140562,0.0059503060765564],[0.020663937553763,0.022031648084521,0.033423107117414],[0.012955001555383,0.062715262174606,0.002235536230728]],[[0.076444201171398,-0.05034913122654,-0.01847293227911],[0.055516611784697,0.045849531888962,-0.016049744561315],[0.04187673702836,-0.057484194636345,0.056125178933144]],[[0.033318605273962,-0.023498490452766,-0.0097198681905866],[-0.069935455918312,0.046801742166281,0.028682988137007],[0.022568551823497,-0.017360618337989,-0.048189245164394]],[[0.031147485598922,-0.040906339883804,-0.031082753092051],[-0.00079486146569252,-0.047060959041119,0.024384420365095],[0.062774740159512,-0.029052022844553,-0.020055416971445]],[[-0.012766723521054,0.013668841682374,0.050443012267351],[0.044114857912064,0.011228214949369,-0.017334869131446],[-0.026545139029622,0.039555929601192,0.042894434183836]],[[-0.054381269961596,0.045752212405205,0.0040144431404769],[-0.027033550664783,0.067550867795944,0.00025105159147643],[-0.046458680182695,-0.030273472890258,0.027769146487117]],[[0.050026457756758,-0.018115187063813,0.10933577269316],[0.024077158421278,-0.020245647057891,-0.017824031412601],[-0.031494420021772,0.0061841835267842,0.07169684022665]],[[0.065669976174831,-0.031471822410822,0.1046455129981],[-0.013264724984765,-0.015260787680745,0.042762506753206],[-0.00069069431629032,-0.001902267569676,-0.066976182162762]],[[0.024381743744016,0.037140142172575,0.01511372346431],[-0.054580230265856,0.022163150832057,0.027581254020333],[-0.039127096533775,-0.06404672563076,0.015229420736432]],[[0.0091135520488024,0.0413010828197,-0.0005715690786019],[-0.041982937604189,-0.069879166781902,-0.020682351663709],[-0.02745333686471,-0.011852935887873,0.00077291805064306]],[[-0.029780732467771,-0.00018777536752168,-0.097243934869766],[0.0086440742015839,0.038276586681604,0.010691627860069],[-0.019440144300461,0.044164426624775,0.051339097321033]],[[-0.0023198220878839,0.0045074461959302,-0.029627036303282],[0.065506257116795,0.034133642911911,0.0052905469201505],[-0.084659226238728,0.083516575396061,-0.082589171826839]],[[0.089452281594276,0.026074541732669,0.038912106305361],[-0.057698022574186,0.077449917793274,0.029987731948495],[-0.005931053776294,0.035253290086985,-0.031066592782736]],[[-0.0023299565073103,-0.092040553689003,-0.028296237811446],[0.053894478827715,-0.05353207141161,-0.02093456313014],[0.088150002062321,-0.013739447109401,-0.040217146277428]],[[0.0046401433646679,0.069365590810776,0.0035116693470627],[-0.016435746103525,-0.0085989534854889,0.042144645005465],[0.086236506700516,-0.013560432009399,0.092564962804317]],[[0.031336646527052,-0.033650230616331,0.042086627334356],[-0.045436516404152,-0.01483500842005,0.053849991410971],[0.042911883443594,0.0090460050851107,0.075084879994392]],[[0.061084277927876,0.039425287395716,0.032422672957182],[0.078148476779461,0.079322598874569,0.05179375782609],[0.0043721697293222,0.034983091056347,-0.070900715887547]],[[0.016074756160378,0.054099198430777,-0.027602894231677],[-0.0147675704211,0.04796689376235,-0.088182903826237],[0.053205791860819,-0.043260142207146,-0.020755138248205]],[[-0.01463629398495,0.041756100952625,0.10148659348488],[0.032991528511047,0.061714664101601,0.0064952825196087],[0.093557618558407,0.010985580272973,-0.049784943461418]],[[0.094130121171474,-0.026996398344636,-0.053378310054541],[0.011595191434026,0.11400216072798,-0.035976223647594],[-0.023124769330025,-0.012416251003742,0.039790321141481]],[[0.012283025309443,-0.061609674245119,0.019625797867775],[0.11397622525692,0.056855872273445,0.050186447799206],[-0.035278279334307,0.068978101015091,0.042168166488409]],[[0.083315998315811,-0.010445467196405,0.0034750963095576],[-0.049841161817312,0.043530568480492,-0.0062257475219667],[0.02896630205214,0.051599163562059,0.044383846223354]],[[0.0080306315794587,0.061379212886095,0.0065479003824294],[0.042817588895559,-0.025813246145844,0.04919384047389],[-0.047566507011652,0.11886756122112,0.084852404892445]],[[0.02072973921895,0.087260268628597,-0.06148637086153],[-0.0063283490017056,0.13424524664879,-0.048586010932922],[0.015522074885666,0.033767215907574,-0.077959045767784]],[[-0.03729197755456,-0.027361802756786,0.039427790790796],[0.097011610865593,0.15850673615932,-0.0081667685881257],[0.065127596259117,-0.0073964623734355,-0.022741060703993]],[[-0.0025382547173649,0.032802756875753,0.025795951485634],[0.05638300254941,0.03340757638216,-0.044845785945654],[0.018314084038138,0.037249345332384,0.0056396513246]],[[0.042013898491859,0.079890482127666,-0.014546717517078],[-0.0596878901124,-0.018544923514128,-0.028483742848039],[0.0093202143907547,0.034718997776508,-0.0059633245691657]],[[-0.013740200549364,0.025578062981367,0.020239267498255],[0.014348177239299,-0.07021963596344,-0.011631404049695],[0.023451220244169,-0.030372025445104,0.024448527023196]],[[0.099366329610348,0.072978891432285,0.051486916840076],[0.058626063168049,0.091490723192692,0.031954810023308],[-0.0037000842858106,-0.0029200282879174,0.014297535642982]],[[-0.02743811160326,-0.015921061858535,0.027178756892681],[-0.033075131475925,-0.019664069637656,0.017827374860644],[-0.039243198931217,0.042060185223818,-0.034144595265388]],[[-0.041550602763891,-0.033712618052959,0.039983615279198],[-0.052274197340012,-0.056480020284653,-0.0063562556169927],[0.030237590894103,0.033942706882954,0.016549106687307]],[[-0.022855224087834,0.086207836866379,0.0087367258965969],[-0.032941058278084,-0.038863323628902,-0.025179162621498],[0.0048022521659732,-0.017538456246257,0.037139978259802]],[[-0.034488148987293,0.047709509730339,0.020846927538514],[-0.020927499979734,0.01102870516479,-0.031130198389292],[0.073927976191044,-0.037680987268686,-0.010082076303661]],[[0.031912229955196,0.031432677060366,0.038041844964027],[0.080343641340733,-0.017237333580852,0.043911766260862],[0.027996812015772,0.062007185071707,-0.025705056264997]],[[3.0152856197674e-05,0.019388824701309,0.027824755758047],[0.076088182628155,-0.042671475559473,0.11368547379971],[-0.011053588241339,-0.0082235215231776,0.0361935980618]],[[0.064827784895897,-0.029284758493304,-0.061139021068811],[0.034825563430786,-0.025703378021717,-0.032601583749056],[0.013191603124142,0.0882763043046,0.03212833404541]],[[-0.079108029603958,-0.028870889917016,0.012067859061062],[0.037670627236366,0.042675346136093,-0.016809102147818],[-0.040503434836864,-0.0020253406837583,0.019615644589067]],[[-0.047289442270994,-0.0042394162155688,0.027257638052106],[0.029360182583332,0.0038615476805717,0.019508408382535],[0.041107252240181,0.027559876441956,-0.0043896995484829]],[[-0.021703038364649,0.0098268100991845,0.01493573281914],[-0.0078393993899226,-0.065000616014004,0.065328508615494],[-0.027889229357243,0.050075203180313,0.046046916395426]],[[-0.0043384390883148,-0.030878724530339,-0.00058105634525418],[-0.059604790061712,0.0063115442171693,0.07263271510601],[0.09032529592514,-0.011249538511038,0.059623848646879]],[[0.056043408811092,0.021345211192966,-0.052328582853079],[-0.061142839491367,-0.015931079164147,0.039495915174484],[-0.010052193887532,-0.016927894204855,0.019995152950287]],[[0.075034230947495,0.024458153173327,0.044073261320591],[0.043787680566311,0.06713879108429,0.039512220770121],[-0.031898453831673,0.03585085645318,0.037107586860657]],[[-0.044820100069046,-0.094264976680279,0.044118620455265],[0.096479468047619,0.021804479882121,-0.044608999043703],[0.063841491937637,0.063917443156242,0.043637920171022]],[[0.11316311359406,-0.053565997630358,0.02086073346436],[-0.035106677561998,0.061361469328403,-0.026288919150829],[-0.020350052043796,0.069380596280098,-0.035100903362036]],[[-0.0019268479663879,-0.050957404077053,-0.0050935004837811],[-0.063913986086845,-0.083741813898087,-0.028108043596148],[-0.061167057603598,-0.017038151621819,0.019215434789658]]],[[[-0.030975038185716,0.050188798457384,0.02234579063952],[0.0035012217704207,0.022040339186788,-0.071177080273628],[-0.10074524581432,0.021309038624167,-0.031471010297537]],[[-0.035283777862787,-0.031633760780096,0.043625358492136],[-0.048566397279501,-0.039862267673016,0.013673838227987],[0.085583202540874,-0.0288329962641,-0.058613050729036]],[[-0.039065051823854,0.0012447495246306,0.034305483102798],[0.044330582022667,0.068911485373974,0.015323438681662],[-0.025135055184364,0.042284470051527,-0.042682688683271]],[[-0.014532929286361,0.030146656557918,-0.073006674647331],[-0.019076472148299,-0.060757722705603,-0.0036862634588033],[-0.017216686159372,-0.003112563630566,0.0069163260050118]],[[-0.078147858381271,0.047726113349199,0.0018312109168619],[0.0068810568191111,0.026857782155275,-0.0058736950159073],[0.033501025289297,-0.04095770791173,0.069768480956554]],[[0.0046611130237579,0.064198262989521,0.085443928837776],[0.054616261273623,-0.021541463211179,0.062702000141144],[0.029977735131979,-0.033813804388046,-0.013212746940553]],[[-0.017070066183805,-0.031148383393884,-0.061592534184456],[0.0033235736191273,0.042421493679285,0.0060958964750171],[-0.0068151131272316,-0.016113786026835,-0.056531246751547]],[[-0.038020189851522,-0.017893878743052,0.071970619261265],[-0.063833728432655,-0.01150431483984,-0.035802252590656],[0.00038758950540796,0.041912510991096,0.055750776082277]],[[0.023984113708138,0.053518556058407,0.028375487774611],[0.020972099155188,-0.069623179733753,0.058762241154909],[0.025224139913917,0.080832816660404,0.022651376202703]],[[-0.012144289910793,-0.0088278194889426,0.049906581640244],[0.11526470631361,0.08335567265749,0.053317628800869],[0.0087351119145751,-0.016764253377914,-0.065973430871964]],[[0.0026141942944378,-0.019191209226847,0.0023219641298056],[-0.0012901847949252,0.013075604103506,0.037355035543442],[0.024730019271374,0.0014440660597757,0.04638521745801]],[[0.015665095299482,0.060086186975241,0.068562366068363],[-0.01157374959439,-0.039609681814909,0.048945508897305],[0.033394787460566,0.035051740705967,0.014820051379502]],[[0.010227688588202,-0.051951996982098,0.026029791682959],[-0.013687518425286,0.01872418448329,0.0053499205969274],[0.027419246733189,-0.048245374113321,0.011288866400719]],[[0.033328529447317,0.04118387773633,0.050366122275591],[0.020995736122131,0.013827409595251,-0.02757234685123],[0.0076955859549344,0.07080315053463,0.036956150084734]],[[-0.036507740616798,0.024697029963136,-0.052243996411562],[0.067702114582062,0.1268879622221,0.048325661569834],[0.036521136760712,-0.044772747904062,0.090243801474571]],[[-0.004409602843225,-0.026698581874371,0.06441804766655],[-0.0052852854132652,-0.066853538155556,0.010365988127887],[-0.0072518433444202,-0.012297223322093,0.00029952498152852]],[[-0.017109733074903,-0.009373851120472,0.03766418620944],[0.027176199480891,-0.074398815631866,-0.01627679541707],[-0.0047686193138361,0.0664127394557,-0.0065295370295644]],[[0.035713281482458,0.05291585251689,0.01554951723665],[-0.020049514248967,-0.082420907914639,-0.0098017361015081],[-0.032185036689043,0.061900027096272,0.0054453886114061]],[[-0.027482969686389,0.021598674356937,0.0097955036908388],[-0.028583731502295,0.070961736142635,-0.0083246864378452],[-0.0050459410995245,0.036150779575109,0.03230594098568]],[[0.02092744410038,-0.01523245871067,-0.026928497478366],[0.047480821609497,0.063640363514423,0.046359952539206],[0.06463161110878,0.008550482802093,0.030886106193066]],[[0.0039618606679142,0.014672202989459,0.060381133109331],[0.034958735108376,0.024664431810379,-0.024509597569704],[-0.028209593147039,-0.01823291182518,0.082107536494732]],[[0.040970608592033,0.095952525734901,-0.080299451947212],[0.086686119437218,0.046754755079746,0.02354121953249],[-0.00053611671319231,0.057763110846281,0.11913712322712]],[[0.022792467847466,-0.005643923766911,0.022305645048618],[-0.016436595469713,-0.040983192622662,-0.015067944303155],[0.023734042420983,0.029950927942991,0.054028797894716]],[[0.0013458550674841,-0.043245952576399,0.07422111928463],[0.025829197838902,-0.026247242465615,-0.076627224683762],[0.12097952514887,0.0053322529420257,-0.026051381602883]],[[0.044230986386538,-0.012480248697102,-0.014522418379784],[0.04495944082737,0.0046324776485562,0.011079963296652],[0.020615266636014,-0.024567529559135,0.012011343613267]],[[-0.030798858031631,0.021646263077855,-0.050051104277372],[0.03577658906579,-0.029579821974039,0.021843310445547],[0.034322321414948,0.013797585852444,-0.024057472124696]],[[0.075754575431347,-0.033507969230413,-0.010866723954678],[0.040044527500868,-0.017789592966437,0.10495388507843],[-0.00024155394930858,0.029459454119205,-0.019384052604437]],[[-0.054402332752943,0.04317045211792,-0.035715825855732],[0.013852110132575,0.0034052194096148,-0.047866240143776],[-0.030785689130425,0.024489276111126,-0.03224490582943]],[[0.0018541204044595,0.02260534837842,0.0046746828593314],[0.058084074407816,0.019211629405618,0.031346078962088],[0.04149929061532,0.051955319941044,0.00056640256661922]],[[0.04531867057085,0.020190669223666,-0.043743684887886],[0.021688042208552,-0.042335461825132,0.043785035610199],[0.0082148928195238,0.098553396761417,0.069814711809158]],[[0.054938409477472,-0.011943397112191,-0.0478843934834],[0.082164436578751,0.012656291946769,0.0043739280663431],[-0.071553215384483,-0.027424059808254,0.0081509239971638]],[[0.044662032276392,-0.00050378876039758,0.039618771523237],[-0.0099861416965723,0.064601257443428,-0.040972962975502],[0.022587522864342,-0.08245000243187,0.07301027327776]],[[-0.052548360079527,-0.06946012377739,0.0086214262992144],[0.0063463593833148,-0.0083288392052054,-0.042464446276426],[-0.057694867253304,0.049048513174057,0.083839371800423]],[[0.064641326665878,0.002290913136676,0.045203987509012],[-0.092429056763649,0.051009301096201,-0.035416975617409],[0.0033879573456943,-0.11231314390898,0.027870792895555]],[[0.092043988406658,0.049802046269178,-0.0092081874608994],[-0.019813220947981,-0.022684892639518,0.030001511797309],[0.011008120141923,-0.0082235895097256,0.060251396149397]],[[-0.0062222010456026,-0.023372773081064,0.0417708940804],[-0.0050575132481754,0.041616979986429,-0.04199243709445],[-0.062090832740068,-0.010806445963681,0.057862259447575]],[[0.023874780163169,-0.012694472447038,-0.039231553673744],[0.044946324080229,-0.045136421918869,-0.029134152457118],[0.072362780570984,-0.075633622705936,0.0092698056250811]],[[0.018047438934445,-0.02281815931201,0.021797869354486],[0.08674781024456,-0.0040141488425434,-0.010305372066796],[-0.02772375382483,0.014764000661671,-0.045139618217945]],[[-0.027751334011555,0.050816424190998,-0.013682485558093],[0.070947900414467,0.042681477963924,0.053372640162706],[0.011754057370126,-0.02557523176074,0.013100034557283]],[[0.049175977706909,-0.046096041798592,0.00077861029421911],[0.053191538900137,-0.018248401582241,0.0017038086662069],[-0.0046178256161511,-0.012276428751647,0.044531267136335]],[[0.0083236088976264,0.017445601522923,0.099875651299953],[0.018519267439842,0.0082196090370417,0.044739987701178],[0.0067445207387209,-0.039882518351078,-0.010450655594468]],[[-0.039556410163641,0.0093726590275764,-0.028672881424427],[-0.02112247608602,-0.012839770875871,-0.010601732879877],[0.060361981391907,0.037276994436979,0.03624889627099]],[[0.0089006936177611,0.030079413205385,0.015741126611829],[0.064461097121239,0.045728594064713,0.094240464270115],[0.04733445122838,-0.058444138616323,0.0047703273594379]],[[0.010374481789768,0.054106023162603,-0.019497029483318],[-0.0094535546377301,-0.047809895128012,-0.020040094852448],[-0.015932377427816,0.021744590252638,0.020179880782962]],[[-0.034020453691483,0.067380778491497,0.011298291385174],[-0.0035911782179028,0.063990905880928,-0.014340695925057],[-0.034572169184685,0.051011625677347,0.0090259034186602]],[[0.035269387066364,0.028599062934518,0.0046769133768976],[0.033203907310963,0.036782957613468,-0.020936712622643],[0.01775174587965,0.012891160324216,0.019892601296306]],[[0.056252766400576,-0.007407546043396,-0.0078429970890284],[0.063456691801548,-0.025652773678303,-0.022697666659951],[0.011257958598435,0.015672292560339,0.057970702648163]],[[0.096116662025452,-0.032137252390385,0.054185643792152],[0.11299538612366,-0.005759424995631,0.074317574501038],[0.094601847231388,0.011844212189317,0.0039856540970504]],[[0.03965986892581,0.011858647689223,-0.010509578511119],[0.034941125661135,-0.011780182830989,0.059276506304741],[0.029742175713181,-0.018388200551271,-0.018462276086211]],[[-0.0091995587572455,0.047218639403582,-0.00026148508186452],[0.046869691461325,0.0041880235075951,0.055468130856752],[0.011005902662873,-0.038090724498034,0.019816290587187]],[[0.018924599513412,0.050705898553133,-0.014585251919925],[0.031569797545671,0.02307472191751,0.082127340137959],[-0.059334240853786,-0.0021850746124983,-0.078990422189236]],[[-0.0071271238848567,0.13632659614086,-0.036092471331358],[-0.068831585347652,-0.020992456004024,-0.01792836561799],[0.032546244561672,-0.011001403443515,-0.096035912632942]],[[0.023230722174048,-0.072958722710609,-0.02520539984107],[0.078645430505276,0.019034096971154,0.02503328025341],[0.01481468975544,0.013369534164667,0.033462092280388]],[[0.079967692494392,0.051301091909409,-0.066060028970242],[0.0081856576725841,-0.03167275339365,-0.0054922238923609],[0.066804490983486,0.057536456733942,0.095095105469227]],[[0.012341008521616,-0.04889814555645,0.01556814275682],[0.079922661185265,-0.021581800654531,-0.062322061508894],[-0.055426992475986,0.023291692137718,-0.053169257938862]],[[-0.00070603302447125,0.021424589678645,0.0026035339105874],[0.021281650289893,0.0029844006057829,-0.024840001016855],[-0.0058538233861327,-0.028308555483818,0.0024408216122538]],[[-0.01035270281136,0.0047218170948327,-0.017380913719535],[0.060959301888943,0.031003072857857,0.032280579209328],[-0.027855096384883,0.065010294318199,-0.039158094674349]],[[0.018152806907892,0.075228422880173,-0.042301651090384],[-0.015409357845783,-0.036922499537468,-0.014628593809903],[-0.012865345925093,0.035887751728296,-0.0086222942918539]],[[-0.064819619059563,0.040869921445847,-0.0085674785077572],[0.018851887434721,0.061360646039248,0.036701682955027],[-0.021979661658406,0.027849955484271,0.062592662870884]],[[0.053596816956997,0.022673923522234,0.055438492447138],[0.048038013279438,0.01754936017096,-0.020229153335094],[-0.073926135897636,0.02839863486588,-0.076984107494354]],[[-0.028922969475389,-0.027868142351508,-0.053046960383654],[-0.04761753231287,0.034218613058329,0.0098455520346761],[-0.064929090440273,-0.058367129415274,0.062288582324982]],[[0.040190037339926,0.037090267986059,-0.059183791279793],[-0.00027616860461421,-0.031367179006338,0.021157972514629],[0.0021870688069612,-0.010282102040946,0.026459181681275]],[[0.067076146602631,0.00079515122342855,-0.029587833210826],[0.0096422173082829,0.0017175627872348,0.0054250657558441],[0.043110348284245,-0.058940999209881,0.0049547613598406]],[[0.086049154400826,-0.025781873613596,-0.03023286908865],[0.049235064536333,0.045820701867342,0.027255183085799],[0.080008760094643,0.032017137855291,0.035455167293549]],[[-0.023028910160065,0.040299046784639,0.0059904921799898],[-0.037451066076756,0.060044758021832,0.0032563423737884],[-0.0049065286293626,0.043683908879757,-0.054893091320992]],[[0.056599844247103,-0.031509883701801,0.0099000791087747],[0.0088246380910277,0.044745735824108,0.023246951401234],[0.051421314477921,0.0037061169277877,-0.022568507120013]],[[0.091130457818508,0.030902964994311,-0.01432410441339],[-0.011010793969035,0.033737733960152,0.10110750049353],[0.088135629892349,0.018021954223514,0.035665512084961]],[[-0.019726363942027,0.0042690890841186,0.071361005306244],[0.022696716710925,3.3627926313784e-05,-0.0083737447857857],[0.012338644824922,-0.0013388170627877,0.0076621454209089]],[[-0.01043826341629,-0.014705818146467,-0.012612185440958],[0.010740593075752,0.027202090248466,0.033005688339472],[0.048623267561197,0.052072260528803,0.11282675713301]],[[-0.0089102685451508,0.064835853874683,-0.045208990573883],[0.020341826602817,0.00025843124603853,0.021951591596007],[0.09925352036953,-0.009323469363153,-0.0091589512303472]],[[-0.031686179339886,0.031694386154413,-0.052554987370968],[0.046979393810034,0.0049948026426136,0.02160843834281],[0.027764016762376,0.064927905797958,0.026464393362403]],[[0.092854455113411,-0.0069905403070152,-0.023959945887327],[0.018264722079039,-0.022748725488782,0.071250781416893],[0.026060353964567,-0.066130444407463,0.0077193668112159]],[[-0.11930327117443,-0.00076079345308244,-0.010914008133113],[0.013852368108928,0.046585522592068,-0.0043688737787306],[-0.03189929202199,-0.018821300938725,-0.062038626521826]],[[0.021899277344346,-0.0039011989720166,0.062830679118633],[-0.019564894959331,-0.022369401529431,0.030039897188544],[-0.057203706353903,-0.0058741280809045,0.017718805000186]],[[0.023137904703617,0.0057247611694038,0.0064748143777251],[0.025244541466236,0.060043804347515,0.045174587517977],[-0.023606635630131,-0.050735108554363,-0.068047635257244]],[[0.03214605525136,0.0029973697382957,0.011489330790937],[0.078266233205795,-0.016873341053724,0.030904533341527],[-0.01781745813787,0.089438304305077,0.018025619909167]],[[-0.056805521249771,-0.021900814026594,-0.013156056404114],[-0.043783832341433,-0.077612563967705,0.001144275534898],[-0.037014216184616,0.016415135934949,-0.0028359568677843]],[[-0.0034359444398433,0.034415900707245,0.041960299015045],[0.026042863726616,0.010165426880121,-0.020647592842579],[0.02859877422452,0.021451698616147,0.041153728961945]],[[-0.024930208921432,0.099217809736729,0.028016701340675],[-0.10169412940741,-0.036623507738113,-0.020612427964807],[-0.02754970267415,0.035931188613176,0.03588929027319]],[[-0.056255407631397,-0.01420540176332,-0.036935035139322],[-0.0045483936555684,0.011046922765672,-0.073395743966103],[-0.087151139974594,-0.056655067950487,-0.0026145116426051]],[[0.015810525044799,-0.011747967451811,0.014107310213149],[0.0088578443974257,0.032819427549839,0.015668397769332],[-0.018843440338969,0.052196696400642,0.033417381346226]],[[-0.0018294010078534,-0.0023155934177339,0.0091067692264915],[-0.0048625371418893,-0.02240732498467,0.010792266577482],[0.0097399316728115,0.015311942435801,-0.053513199090958]],[[0.010980478487909,-0.00079875404480845,-0.069187693297863],[-0.025487378239632,-0.047748684883118,0.012489732354879],[0.018844231963158,0.081205144524574,-0.04155246168375]],[[-0.013065552338958,0.051822658628225,0.022689070552588],[0.080545201897621,0.0020384625531733,0.059085130691528],[-0.013780049048364,0.022434199228883,0.051444951444864]],[[-0.044249162077904,-0.058201033622026,0.051353540271521],[-0.0045496728271246,-0.052397284656763,0.039205938577652],[-0.020831286907196,0.0013315276009962,-0.10554678738117]],[[0.053682763129473,-0.058110129088163,0.010550916194916],[-0.00015361845726147,-0.029960595071316,-0.02467256039381],[0.036478899419308,0.042120706290007,0.036171484738588]],[[-0.028980799019337,0.056608684360981,0.014313908293843],[-0.070511691272259,-0.01472763903439,-0.031271059066057],[0.017972914502025,-0.027476334944367,0.054132018238306]],[[-0.053029119968414,-0.019485458731651,0.091785073280334],[0.11750145256519,0.10374564677477,0.071405231952667],[-0.025501122698188,0.047336954623461,-0.072435609996319]],[[-0.0049211350269616,0.0048683122731745,0.02540036290884],[0.05315387994051,-0.0095423720777035,0.042010091245174],[0.019943153485656,-0.014910890720785,-0.025662411004305]],[[0.038296457380056,-0.026837877929211,0.022456670179963],[0.10072746872902,0.077942453324795,0.057452064007521],[0.038120895624161,0.018320739269257,0.0079707391560078]],[[0.0033894304651767,-0.0052987290546298,-0.038532420992851],[0.0030068596825004,0.033225543797016,0.0099860057234764],[0.012927643023431,0.045274671167135,-0.0060538724064827]],[[0.036820728331804,-0.025703605264425,-0.013145206496119],[-0.032423760741949,-0.021183213219047,0.0014268573140725],[0.067338272929192,0.02134719863534,0.04108927026391]],[[0.020478904247284,0.026647605001926,-0.047118853777647],[0.020991498604417,0.0078118382953107,0.045211616903543],[-0.068446479737759,-0.062237281352282,0.023086251690984]],[[-0.0076950150541961,0.023456072434783,-0.0063653974793851],[0.027530489489436,0.19690135121346,0.031464647501707],[-0.025130329653621,-0.078271761536598,0.023993711918592]],[[-0.0049374317750335,0.011893059127033,0.0042812023311853],[0.019563119858503,-0.042629912495613,-0.082898750901222],[-0.049968268722296,0.04774185270071,0.0058757429942489]],[[-0.059129483997822,-0.024753477424383,0.034326627850533],[-0.034202948212624,-0.062331307679415,0.051987063139677],[0.014203064143658,-0.0010557628702372,0.060970529913902]],[[-0.030062904581428,-0.033227600157261,0.039081614464521],[0.075840026140213,-0.045890528708696,0.019587580114603],[-0.073991157114506,-0.056849870830774,-0.044957563281059]],[[-0.063002802431583,0.05728842318058,0.012419207021594],[0.0020442714449018,0.01852279342711,0.096949264407158],[-0.0010522685479373,-0.0015478018904105,0.070182234048843]],[[0.020593946799636,0.0073064942844212,-0.037879012525082],[0.013914440758526,0.0017591966316104,-0.01646925508976],[-0.05660230666399,-0.019071644172072,-0.013744380325079]],[[0.0049450187943876,-0.04093711823225,0.0081749921664596],[-0.020326526835561,0.011501964181662,0.0067947879433632],[-0.0041031683795154,0.049895491451025,-0.081774897873402]],[[0.05616782233119,-0.055953331291676,-0.019006500020623],[0.041036255657673,-0.055139765143394,0.035234462469816],[0.071366250514984,-0.042845990508795,0.031868010759354]],[[0.063729979097843,0.057692311704159,-0.030915785580873],[0.047939263284206,0.051762130111456,-0.0019466551020741],[-0.047565419226885,0.07615789026022,-0.0053738504648209]],[[-0.043762840330601,0.019428562372923,0.0072235600091517],[0.046004451811314,0.041836902499199,-0.020224720239639],[0.045160569250584,-0.025673279538751,-0.014495529234409]],[[-0.0025056742597371,-0.10544798523188,0.056318465620279],[0.008769097737968,0.012362779118121,0.056895982474089],[0.037470817565918,0.02280786447227,-0.033441219478846]],[[-0.020764801651239,-0.03790632262826,0.063738249242306],[0.10036428272724,0.012590339407325,0.089805573225021],[-0.017399601638317,0.018312038853765,0.027655422687531]],[[0.03346798568964,0.053693886846304,0.0718939229846],[0.079233594238758,0.032033357769251,0.080705896019936],[0.049743007868528,0.093177288770676,0.0023914477787912]],[[0.034108720719814,0.010103337466717,-0.0049406341277063],[0.057541910558939,-0.067684575915337,0.046782616525888],[0.022836942225695,-0.0077814902178943,-0.074788354337215]],[[0.00036662086495198,0.029597660526633,-0.0068425256758928],[-0.0075835753232241,-0.033635322004557,-0.049523908644915],[0.00068113795714453,0.016396924853325,0.040790271013975]],[[-0.00055757677182555,-0.0021524045150727,-0.0012103354092687],[0.014569159597158,0.091547779738903,0.10618519037962],[0.067567072808743,0.026323832571507,-0.063070222735405]],[[0.00015255197649822,0.01962131075561,0.00067885528551415],[0.018502341583371,-0.097965858876705,-0.017263749614358],[-0.039198778569698,0.031816612929106,0.072437345981598]],[[0.0016940737841651,0.012685667723417,0.014419994316995],[0.015608225017786,-0.013464442454278,-0.0066057546064258],[-0.027119606733322,-0.0061097419820726,0.0022864402271807]],[[-0.051197413355112,0.015242733992636,-0.057233303785324],[0.026385985314846,-0.020479282364249,0.050144892185926],[-0.028178263455629,0.041473843157291,0.023223515599966]],[[-0.021115666255355,-0.055566471070051,-0.043276328593493],[0.079960063099861,-0.046207912266254,0.04483937472105],[-0.03679059073329,0.020745012909174,0.0034194951876998]],[[-0.017402371391654,-0.0027266950346529,-0.014493909664452],[0.041053369641304,-0.035784006118774,-0.096461929380894],[0.046995185315609,0.089184693992138,-0.063609093427658]],[[-0.0066713131964207,-0.013104359619319,0.021170886233449],[-0.044070180505514,0.029961625114083,-0.00041862452053465],[-0.035242300480604,0.038502782583237,0.017799152061343]],[[0.073855951428413,-0.070405133068562,0.02558421716094],[0.12227351218462,0.04588595405221,-0.048870053142309],[0.056453265249729,0.033438947051764,0.046629659831524]],[[0.054047916084528,0.09889954328537,-0.062527060508728],[-0.011614084243774,-0.010428165085614,-0.0049545648507774],[0.012442569248378,0.056038614362478,0.052918467670679]],[[0.025058180093765,0.048281706869602,0.043415784835815],[0.046096120029688,-0.030699206516147,-0.04522142931819],[0.036435127258301,0.033765695989132,-0.005229517351836]],[[-0.045370575040579,0.031096631661057,0.080569721758366],[0.069244295358658,0.055605784058571,0.040997974574566],[-0.017985291779041,0.052090927958488,0.037339970469475]],[[0.017738038673997,-0.12253708392382,0.018032858148217],[0.047844968736172,-0.02132385596633,-0.041106909513474],[-0.071988694369793,-0.027523817494512,-0.019334936514497]],[[0.024827215820551,0.013114628382027,0.031856838613749],[-0.0014567758189514,0.071154907345772,0.040449477732182],[0.076819136738777,0.019436040893197,-0.0040295948274434]],[[-0.054820030927658,0.023129638284445,-0.039975441992283],[-0.0073446887545288,0.052628666162491,0.032872300595045],[0.010998006910086,0.027448922395706,-0.028687365353107]],[[-0.013412706553936,0.047898918390274,-0.024945881217718],[0.036539666354656,0.01166227273643,-0.020208606496453],[-0.038600474596024,0.025428140535951,0.035455547273159]],[[0.006862792186439,0.024204112589359,-3.6762547097169e-05],[-0.030196998268366,-0.020066987723112,-0.03855038061738],[0.036066185683012,0.0034871380776167,0.015779577195644]],[[0.059580374509096,0.085859552025795,-0.059917792677879],[0.025105519220233,-0.060976609587669,0.010170912370086],[0.027153346687555,-0.050309345126152,0.025316754356027]],[[0.084974117577076,0.060716401785612,0.010477853938937],[0.083328828215599,-0.017828775569797,-0.022780802100897],[0.07365882396698,0.051356438547373,-0.032385688275099]],[[0.0077111101709306,0.098260276019573,-0.00965765863657],[0.033525884151459,-0.023808361962438,-0.087209217250347],[0.0037955995649099,-0.043563958257437,-0.016803970560431]],[[-0.021954737603664,0.064013659954071,0.044635437428951],[0.016885010525584,0.0029397490434349,0.042556531727314],[0.062380775809288,0.0054339524358511,0.028900207951665]]],[[[-0.068759523332119,0.00052884366596118,0.024371402338147],[0.064969874918461,-0.023752665147185,0.039703238755465],[0.057655360549688,0.026734033599496,-0.088559709489346]],[[-0.012402225285769,-0.035225044935942,-0.033080853521824],[0.019368460401893,0.055518254637718,-0.023197641596198],[-0.0061546312645078,-0.13630689680576,-0.015008500777185]],[[0.03750629350543,0.057035606354475,-0.037614114582539],[0.069913268089294,-0.075006119906902,0.080652646720409],[0.034877020865679,0.056796856224537,0.002213500905782]],[[-0.00041990194586106,0.085498861968517,0.031495545059443],[0.018598616123199,0.022393669933081,-0.031958773732185],[-0.051640931516886,-0.042521730065346,0.083683930337429]],[[-0.036817017942667,-0.058777846395969,-0.020256629213691],[0.032060611993074,-0.065560065209866,-0.066743791103363],[-0.015847321599722,-0.076207369565964,0.024384969845414]],[[-0.039339147508144,0.035268452018499,0.024433199316263],[0.025909930467606,0.078703969717026,0.052987162023783],[0.065455421805382,0.035570368170738,-0.063161469995975]],[[0.018036894500256,0.01967366412282,-0.056803870946169],[-0.007098610047251,0.0037703320849687,-0.067652106285095],[-0.0081690615043044,0.010196465067565,0.01842980645597]],[[-0.059707451611757,0.014004525728524,-0.013719478622079],[0.024608151987195,-0.062708385288715,0.067147970199585],[0.054671667516232,-0.045658744871616,-0.008675585500896]],[[0.0024537241552025,0.0077094989828765,-0.025225421413779],[0.010163222439587,0.0052878819406033,-0.033038344234228],[0.061051290482283,-0.038799047470093,-0.027242662385106]],[[0.14526697993279,-0.040386319160461,0.027360374107957],[0.078566938638687,0.0067629609256983,0.095173068344593],[-0.0029618709813803,0.022604670375586,0.050014000386]],[[0.054998178035021,-0.092050999403,0.019199535250664],[0.024881899356842,-0.014791457913816,-0.042982462793589],[-0.026479698717594,-0.011746081523597,0.019944906234741]],[[0.012688995338976,-0.079300053417683,-0.022643577307463],[0.084261059761047,0.063383333384991,-0.024648936465383],[-0.014201458543539,0.045801755040884,0.0015283832326531]],[[0.090594425797462,-0.089502118527889,-0.011417190544307],[0.029914008453488,-0.032699923962355,0.028293224051595],[0.029525563120842,-0.10816100984812,-0.059446539729834]],[[0.023592693731189,-0.00747025385499,0.034158915281296],[0.00016596860950813,0.069886058568954,0.061494071036577],[0.069699712097645,-0.08829353004694,0.021299757063389]],[[0.01802652888,0.065942317247391,0.044926375150681],[-0.018228238448501,0.10643597692251,0.10185123980045],[0.084430307149887,-0.015549179166555,0.035959050059319]],[[-0.0074898963794112,-0.038724206387997,-0.047691326588392],[-0.01331374514848,-0.04751018434763,-0.0862135887146],[0.016052324324846,-0.097162820398808,0.024549512192607]],[[0.025102097541094,-0.060941748321056,0.030959816649556],[-0.0060188192874193,-0.035623487085104,-0.0062303198501468],[-0.05198984593153,-0.045569151639938,0.025518521666527]],[[-0.01144430693239,-0.00020756601588801,0.038143243640661],[0.022728819400072,-0.075684636831284,-0.013526815921068],[0.031466349959373,-0.02250169031322,-0.0099734906107187]],[[0.051335040479898,0.0018061028094962,-0.031784277409315],[-0.014753117226064,-0.0096786832436919,-0.067280530929565],[0.0066073276102543,-0.064011827111244,0.056165661662817]],[[0.035777352750301,0.066456131637096,0.066432118415833],[0.028067670762539,-0.042554277926683,0.016059558838606],[0.067395515739918,0.025597391650081,-0.012238744646311]],[[-0.072268307209015,0.0272027682513,0.010523770004511],[0.00090056174667552,0.010345406830311,-0.019320255145431],[-0.12034117430449,-0.015276317484677,-0.05604724958539]],[[0.06122051179409,0.011715441942215,-0.025235051289201],[0.03914213553071,0.054617162793875,0.07076196372509],[0.052294913679361,-0.0067234453745186,0.059912897646427]],[[0.014673572033644,-0.0530607663095,0.0409763045609],[0.041484903544188,0.020542671903968,0.018087280914187],[0.060149028897285,0.0082262977957726,-0.020635729655623]],[[-0.0187380425632,-0.047711733728647,-0.031345650553703],[-0.0018823860445991,-0.028465431183577,0.016817217692733],[0.011577868834138,-0.0089097414165735,-0.10587010532618]],[[-0.014553396962583,0.0067260432988405,0.031180124729872],[0.024230195209384,0.036582518368959,0.032897219061852],[0.051753625273705,0.089253261685371,0.053594410419464]],[[0.0078620398417115,-0.071501769125462,0.015127188526094],[-0.03412688523531,0.017828362062573,-0.075702771544456],[-0.035912647843361,0.02319910377264,-0.049163654446602]],[[-0.042329415678978,0.075130388140678,-0.029994245618582],[-0.0029008819255978,0.011987975798547,-0.034073859453201],[0.021664323285222,-0.0022778681013733,-0.046942386776209]],[[0.065728470683098,0.030956771224737,0.040894892066717],[0.04079831391573,0.076450414955616,0.011871015653014],[-0.045851737260818,-0.0027800216339529,-0.022045375779271]],[[-0.0098978541791439,0.057845991104841,-0.014342760667205],[-0.088814608752728,-0.024993462488055,-0.027350218966603],[-0.016905337572098,0.0096035795286298,-0.076186850667]],[[0.006702374201268,-0.011660523712635,-0.093946516513824],[0.083817899227142,-0.015563203953207,0.01433583535254],[-0.041049376130104,-0.020381007343531,0.058276150375605]],[[0.029580367729068,0.024580283090472,-0.019328640773892],[-0.023317547515035,0.053594797849655,0.0062784058973193],[0.021068951115012,0.046491123735905,0.0013963304227218]],[[0.097800374031067,0.14151372015476,0.00028135676984675],[-0.038321197032928,-0.012454310432076,0.0003119355533272],[0.025445805862546,0.012107381597161,-0.01896958053112]],[[0.015557570382953,-0.0010784777114168,-0.041510477662086],[0.03581603243947,0.094894878566265,-0.12306804209948],[-0.022796293720603,0.034378953278065,0.074758343398571]],[[-0.054726377129555,-0.007117681670934,0.067784860730171],[0.036287818104029,-0.023109531030059,0.010693788528442],[-0.010311618447304,0.045171070843935,-0.075186513364315]],[[-0.047029931098223,-0.047207053750753,-0.020523121580482],[0.024564759805799,-0.00016663594578858,0.019980309531093],[-0.043041948229074,-0.021412964910269,0.0012314217165112]],[[-0.04674456268549,-0.062504179775715,0.01584642380476],[-0.046891652047634,-0.030538000166416,0.018465904518962],[-0.04050686955452,-0.027622351422906,-0.041644293814898]],[[0.0022377709392458,-0.039459265768528,0.0078293709084392],[0.013692818582058,0.072986923158169,0.048984710127115],[0.034600611776114,0.029304821044207,0.043360743671656]],[[0.083594880998135,0.0010198780801147,0.0054707727394998],[-0.049283761531115,-0.016550783067942,0.0084021156653762],[0.12907347083092,0.0019843787886202,-0.015882607549429]],[[0.028371101245284,0.0040547088719904,-0.0040548709221184],[0.063574902713299,0.018978927284479,0.037289422005415],[-0.02643558382988,0.086253292858601,-0.0037263140548021]],[[0.031479451805353,-0.021003345027566,-0.040827222168446],[0.055034432560205,-0.011546971276402,-0.020498292520642],[0.029035976156592,0.0029225361067802,-0.0037736329250038]],[[-0.009939894080162,0.0044297650456429,-0.012935158796608],[-0.018667684867978,0.026303185150027,0.029541026800871],[-0.019465867429972,0.051728021353483,0.01156516186893]],[[-0.043990682810545,0.012416488490999,0.012263126671314],[-0.0052491840906441,-0.0087250396609306,0.018916705623269],[0.012203255668283,-0.054818667471409,-0.038978569209576]],[[-0.053709596395493,0.096496872603893,-0.036105036735535],[0.014879052527249,-0.030745752155781,-0.065502375364304],[-0.0051634260453284,-0.052277222275734,-0.02021412551403]],[[-0.013110810890794,0.0092126168310642,0.0080190459266305],[-0.061220068484545,0.017089538276196,0.028343906626105],[0.0035594475921243,-0.0091806305572391,0.049916762858629]],[[0.018862456083298,-0.052930139005184,0.0029032381717116],[-0.048943728208542,0.022416960448027,0.076621741056442],[0.054428964853287,0.040408253669739,-0.045177649706602]],[[0.014622853137553,0.064958490431309,0.0064057931303978],[-0.036284990608692,0.058101486414671,0.008729818277061],[0.012787911109626,-0.056034728884697,-0.0092914346605539]],[[0.053008589893579,-0.020389098674059,-0.01447966042906],[-0.0075400788336992,0.001249521272257,0.040727637708187],[0.011784018017352,0.080588445067406,0.0038630608469248]],[[-0.074558511376381,0.0084161665290594,-0.0020874503534287],[0.052867788821459,0.029788425192237,0.047347750514746],[0.02633510529995,0.053620181977749,-0.0040252525359392]],[[-0.011202583089471,-0.022519458085299,-0.0094140684232116],[0.0010191889014095,-0.0045750536955893,0.059419568628073],[0.086770698428154,-0.01936025545001,-0.012627937830985]],[[-0.015147583559155,0.0028774086385965,0.034616935998201],[-0.09285830706358,0.023952275514603,-0.009537186473608],[0.013385605998337,0.033362686634064,0.019664417952299]],[[-0.010451948270202,-0.0783965960145,-0.0087309284135699],[-0.027658646926284,-0.032573759555817,-0.0015496755950153],[-0.025250351056457,-0.057416867464781,-0.062486555427313]],[[-0.034601788967848,0.02323698811233,0.072150945663452],[0.066909156739712,-0.042518079280853,-0.064942918717861],[0.0030819273088127,-0.020189862698317,-0.023240093141794]],[[0.021578336134553,0.035451851785183,0.0046983612701297],[0.069890685379505,0.073579169809818,-0.021910285577178],[0.015671176835895,0.048282619565725,-0.031782265752554]],[[0.0012417341349646,-0.031329154968262,0.087018728256226],[0.067626319825649,0.030707420781255,0.0049975086003542],[0.025659643113613,0.063286751508713,-0.017698371782899]],[[0.034690532833338,0.010566049255431,0.021265706047416],[-0.007231505587697,0.059889022260904,0.012008872814476],[0.049486208707094,0.016453316435218,0.020626084879041]],[[-0.034191969782114,-0.028114141896367,0.045757122337818],[0.040779884904623,0.0051385811530054,-0.033800926059484],[-0.0059651131741703,-0.041485246270895,-0.080324992537498]],[[-0.0063945935107768,-0.055164236575365,-0.074158050119877],[-0.045261558145285,0.0089964177459478,0.039170935750008],[-0.010994139127433,0.036456860601902,-0.055918533354998]],[[0.016043592244387,0.047384113073349,0.0923822671175],[-0.012695854529738,-0.030245896428823,-0.096757054328918],[-0.032096747308969,0.0080461585894227,-0.081392824649811]],[[0.01460187509656,-0.017672218382359,-0.0037702047266066],[-0.076225988566875,0.076637886464596,0.0095301447436213],[-0.0016341689042747,0.065041229128838,0.12572421133518]],[[0.023641478270292,0.0080565707758069,0.040359418839216],[-0.014747496694326,-0.032773688435555,-0.050207272171974],[-0.01985171250999,0.037116337567568,-0.0041774525307119]],[[0.0030906409956515,0.0019127883715555,-0.039009898900986],[-0.029495207592845,-0.04941863194108,-0.041357085108757],[-0.038762800395489,-0.036124922335148,0.066564440727234]],[[0.046574998646975,0.0042673079296947,-0.035021413117647],[0.038413256406784,-0.042337581515312,0.037890903651714],[0.036881539970636,-0.073130816221237,0.0050136889331043]],[[0.10487914830446,0.014313826337457,-0.013088207691908],[0.11038444191217,-0.025663970038295,-0.010278118774295],[0.034870751202106,-0.027942080050707,0.046865873038769]],[[0.0034354620147496,0.018331851810217,0.017508044838905],[-0.021294945850968,0.063384011387825,-0.051442708820105],[0.041963245719671,0.075802929699421,0.034358363598585]],[[-0.014557352289557,-0.067375861108303,-0.022775338962674],[-0.044141110032797,0.04175728186965,0.030731752514839],[0.0066482406109571,0.014202971942723,0.0023562647402287]],[[-0.078811399638653,0.021252265200019,-0.047488514333963],[-0.00015560266911052,0.061763420701027,0.016465155407786],[-0.01299383956939,0.030862495303154,0.043163370341063]],[[0.043194063007832,-0.00758903240785,0.021926943212748],[-0.0020141727291048,0.0098235169425607,0.0057565793395042],[-0.1028203740716,0.041003450751305,0.052412442862988]],[[0.0011013483162969,0.1025777682662,0.089934170246124],[-0.010771878063679,0.017492579296231,-0.056205451488495],[0.060425285249949,0.063670046627522,0.010792022570968]],[[0.016691679134965,0.018466670066118,0.032671190798283],[-0.031185664236546,-0.025961503386497,-0.015832781791687],[0.026739912107587,-0.024491770192981,0.013781300745904]],[[-0.00028068316169083,0.056210525333881,0.033767763525248],[0.044986631721258,0.070903547108173,0.065812438726425],[-0.027069402858615,0.013145765289664,0.0054739257320762]],[[0.022106872871518,-0.042914852499962,-0.021238956600428],[-0.0096886456012726,0.061544951051474,0.072347849607468],[0.047600354999304,-0.046568870544434,0.016403172165155]],[[0.015321373939514,0.028140379115939,-0.00010726151958806],[-0.011076134629548,-0.0073254597373307,0.02086092159152],[-0.026998145505786,-0.017329256981611,0.044957380741835]],[[-0.039008785039186,-0.062319129705429,0.049043282866478],[0.01522081438452,0.012464143335819,0.051737256348133],[-0.00014608142373618,-0.015434522181749,0.018977159634233]],[[0.043640196323395,-0.04302716627717,0.056584719568491],[0.088082812726498,-0.071390047669411,0.075126700103283],[0.020027911290526,0.087773412466049,0.040421109646559]],[[-0.028109420090914,0.047246642410755,-0.037845134735107],[0.01298885513097,-0.053185112774372,-0.071513876318932],[0.011401662603021,-0.037560924887657,0.062371641397476]],[[0.02621828764677,0.02970721013844,-0.0098521560430527],[0.047643013298512,0.05939956754446,0.04857761412859],[0.00746089220047,0.0019787030760199,-0.0037610300350934]],[[-0.062851749360561,0.021383421495557,0.069722875952721],[-0.020967971533537,0.046943355351686,0.055769935250282],[-0.033558946102858,-0.0073136752471328,0.044155087321997]],[[0.039965309202671,0.086189612746239,-0.0062597147189081],[-0.027329681441188,-0.043916624039412,0.04505180940032],[0.0050776186399162,-0.023722521960735,0.015620243735611]],[[0.069192871451378,-0.0059745758771896,0.0090330056846142],[0.078055493533611,-0.080470703542233,-0.055067740380764],[0.0017092803027481,-0.025605024769902,-0.014028074219823]],[[0.031705804169178,0.040303595364094,-0.00083083927165717],[-0.0032744677737355,-0.024921931326389,0.014947196468711],[-0.022859435528517,-0.073024168610573,0.0058450102806091]],[[0.036014441400766,-0.0044976323843002,0.033494129776955],[0.03627797961235,-0.021255163475871,-0.012027067132294],[-0.0011318165343255,-0.060405109077692,-0.0021697471383959]],[[0.023656871169806,-0.030227808281779,-0.074987262487411],[0.045730732381344,-0.045980855822563,-0.12248133867979],[0.00050340953748673,0.013008581474423,-0.0093409921973944]],[[0.015666838735342,-0.028063785284758,0.024462206289172],[-0.047177072614431,0.11937798559666,0.08034909516573],[-0.016113383695483,0.048396576195955,0.095536552369595]],[[0.070144027471542,-0.030156850814819,0.019433278590441],[0.055914346128702,0.019532542675734,-0.022251397371292],[0.042836099863052,-0.010410455986857,0.083869628608227]],[[-0.020514911040664,-0.0084892297163606,0.027239512652159],[-0.017827877774835,-0.030859177932143,0.065915189683437],[0.067602321505547,0.02369194291532,-0.013029897585511]],[[0.054183445870876,-0.016245791688561,0.023360645398498],[0.032745648175478,-0.0057758530601859,-0.0026672396343201],[-0.034801118075848,-0.0067252828739583,-0.031490389257669]],[[0.0014713073614985,-0.053202155977488,0.023737033829093],[0.060108449310064,0.021683890372515,0.045305423438549],[0.057555235922337,-0.021307397633791,-0.019367631524801]],[[-0.021049872040749,-0.0028530517593026,0.00083544297376648],[0.04623119905591,-0.02377443574369,0.013170286081731],[0.019365277141333,0.023550162091851,0.015293234027922]],[[-0.10237822681665,0.068643681704998,0.13292054831982],[-0.020128136500716,0.0028349992353469,-0.00016058285837062],[0.044556066393852,-0.013627723790705,-0.0055820420384407]],[[-0.0094181904569268,0.012468099594116,0.074494257569313],[0.0594582259655,-0.09380104392767,0.0095456661656499],[0.043730076402426,0.020965168252587,0.0174446310848]],[[-0.018625715747476,-0.095907382667065,0.037326965481043],[-0.018820522353053,0.10016949474812,-0.076169490814209],[0.047750871628523,-0.0062194555066526,0.063702568411827]],[[-0.0054326900281012,0.019434973597527,-0.010305748321116],[-0.049421574920416,0.062634073197842,0.021735260263085],[-0.0431789457798,0.11141812056303,9.6024277809192e-06]],[[0.019081085920334,-0.036336727440357,-0.0064451638609171],[-0.0078071989119053,0.023686699569225,0.089151538908482],[0.015782471746206,-0.03878915682435,-0.0093539655208588]],[[0.033589765429497,0.017803527414799,-0.058545753359795],[-0.052155330777168,0.058024052530527,0.010668808594346],[0.0077373213134706,-0.017332527786493,0.053911041468382]],[[-0.0087374513968825,0.090736456215382,-0.0078319674357772],[-0.011162051931024,-0.051127221435308,0.0029905452392995],[0.01977401599288,-0.059388872236013,0.0090247327461839]],[[-0.0075177424587309,-0.03752176463604,0.055002477020025],[0.024396497756243,0.095745772123337,0.015400871634483],[0.059929676353931,-0.018514018505812,0.020123790949583]],[[-0.0088396240025759,0.031631056219339,-0.014090289361775],[0.06868402659893,0.046190395951271,-0.041942428797483],[0.024265009909868,0.024582801386714,0.10293418169022]],[[0.046222399920225,0.025913728401065,0.015728382393718],[-0.060441367328167,0.047126580029726,0.0034794562961906],[-0.0050373231060803,0.019620729610324,-0.052753172814846]],[[-0.0060947192832828,0.029916319996119,-0.054120287299156],[0.0027577658183873,-0.052023150026798,-0.0038397777825594],[0.077580161392689,0.028436325490475,-0.023218609392643]],[[-0.043675992637873,0.01904408633709,-0.084102779626846],[-0.080982521176338,0.033525839447975,-0.01714844070375],[0.02253071218729,0.018753722310066,0.023363238200545]],[[-0.0050871283747256,0.020295478403568,0.027816673740745],[0.027889113873243,0.033260192722082,-0.038787759840488],[-0.049192011356354,0.026108933612704,-0.086187861859798]],[[0.045775149017572,0.025410477072001,0.049070883542299],[0.0073707830160856,0.086355417966843,0.035350829362869],[0.057792350649834,0.051277510821819,-0.02112789824605]],[[-0.00083543156506494,-0.039578773081303,-0.055420514196157],[0.07245559990406,-0.048691231757402,-0.026765152812004],[-0.060016471892595,0.034930992871523,0.00036549405194819]],[[-0.013315762393177,-0.12740461528301,-0.032436694949865],[0.0078325849026442,-0.014255543239415,-0.059760767966509],[-0.0068993652239442,0.061169791966677,0.044459845870733]],[[-0.001853788853623,-0.017544256523252,0.038248289376497],[0.0295798946172,0.087464042007923,0.033592790365219],[0.022482821717858,0.038896571844816,-0.022690126672387]],[[-0.035327956080437,-0.027792427688837,0.014184860512614],[0.0037041937466711,0.056632250547409,0.054726291447878],[0.039685152471066,-0.087883450090885,-0.070548959076405]],[[0.077728010714054,-0.010313833132386,0.01359633449465],[-0.0027248959522694,0.013230328448117,-0.0727703794837],[-0.051221329718828,0.043313577771187,0.021715499460697]],[[-0.017412412911654,0.073272585868835,-0.068120576441288],[0.055547278374434,-0.046012956649065,0.048461299389601],[-0.018357533961535,0.0042851320467889,0.066852502524853]],[[-0.038125298917294,-0.037578213959932,0.024560637772083],[-0.010615992359817,0.038670025765896,-0.020964169874787],[-0.048370346426964,-0.0029016358312219,-0.014264705590904]],[[-0.0047420291230083,-0.053432464599609,-0.021659307181835],[0.074761971831322,0.068971529603004,-0.041359569877386],[-0.04291508346796,0.020465508103371,-0.0039402893744409]],[[0.042225860059261,0.047105241566896,0.0056646997109056],[-0.0040579214692116,-0.02224955894053,0.037345375865698],[-0.00049510301323608,-0.095982857048512,-0.011014584451914]],[[-0.032811429351568,0.049012951552868,0.044772926717997],[0.006493806373328,-0.075425267219543,0.01221330743283],[-0.011247704736888,-0.053207647055387,-0.014640150591731]],[[-0.012187271378934,0.05896383523941,-0.03255133703351],[0.12088191509247,-0.0018385322764516,0.039434753358364],[0.0051833428442478,-0.046222496777773,-0.026452301070094]],[[-0.027968801558018,-0.053517203778028,-0.032650727778673],[0.020315397530794,0.014880598522723,0.015926515683532],[-0.0060247085057199,0.077994294464588,-0.00088448612950742]],[[-0.040717963129282,-0.039058923721313,-0.087805449962616],[0.0075608007609844,0.011294800788164,-0.086801879107952],[-0.034664466977119,-0.02330682054162,0.038426008075476]],[[-0.054600313305855,-0.040832936763763,0.030635746195912],[0.0860565751791,0.0087545141577721,0.0072633656673133],[0.035320691764355,0.047174315899611,0.017076959833503]],[[0.019444588571787,0.074444077908993,0.12120821326971],[-0.02244358882308,0.024075869470835,0.021897597238421],[0.069285698235035,-0.0067284754477441,0.019647045060992]],[[0.0030111782252789,0.036626435816288,-0.058787655085325],[0.0034724960569292,-0.026319919154048,0.048790607601404],[0.027412381023169,0.092871092259884,0.068633541464806]],[[0.0095892092213035,0.086972266435623,0.013433557003736],[0.016348775476217,-0.020489221438766,-0.013754290528595],[0.035219382494688,0.055078864097595,0.039163071662188]],[[0.022052055224776,-0.059648830443621,0.0062833866104484],[0.042402565479279,0.028802800923586,-0.0026428156998008],[-0.051277328282595,0.071788765490055,-0.010301845148206]],[[-0.12793658673763,-0.076352134346962,0.050599347800016],[0.077470935881138,-0.019297167658806,-0.010212912224233],[0.021223751828074,0.022496266290545,0.012711116112769]],[[-0.0041540414094925,0.054721113294363,-0.048632930964231],[0.027240766212344,0.051452990621328,0.10197605192661],[-0.052523016929626,-0.009787930175662,0.01040945481509]],[[-0.049611777067184,-0.035601079463959,-0.084049135446548],[0.070986464619637,0.0026753419078887,-0.048096798360348],[-0.011103364638984,-0.00050921190995723,-0.038893815129995]],[[0.04405664280057,-0.013119635172188,-0.047474857419729],[0.021733397617936,0.039298169314861,-0.020951682701707],[0.058526247739792,0.022511459887028,-0.0314623080194]],[[-0.11123894900084,0.036880973726511,-0.041303057223558],[-0.018653562292457,0.02374430373311,0.049761280417442],[0.081862956285477,0.0092640509828925,-0.0030991090461612]],[[0.016366055235267,0.024748904630542,-0.0011201282031834],[-0.030643803998828,0.041781064122915,0.017015039920807],[0.0087599046528339,0.047774389386177,0.051024489104748]],[[0.080309256911278,0.020927153527737,0.048560831695795],[0.055701393634081,-0.080143354833126,0.018816689029336],[0.019884441047907,0.02651247382164,-0.020779021084309]],[[-0.033155679702759,0.032258778810501,0.033875212073326],[0.032806377857924,-0.032755181193352,0.057321399450302],[0.031923733651638,0.069702669978142,-0.019541773945093]]],[[[-0.063253432512283,-0.030032450333238,0.013498117215931],[0.021176336333156,-0.09876411408186,0.010347422212362],[-0.027467723935843,0.023152567446232,0.020207012072206]],[[-0.032546348869801,-0.050272911787033,0.037140104919672],[0.006112671457231,-0.0011312050046399,-0.03143884241581],[-0.013730782084167,-0.069325774908066,-0.045323323458433]],[[-0.036966573446989,-0.0072794677689672,-0.06065484136343],[-0.0096014142036438,0.050431925803423,-0.035209413617849],[0.069190047681332,-0.074841566383839,-0.0024660236667842]],[[-0.024087570607662,-0.066492862999439,0.028369341045618],[-0.070918798446655,-0.10997688025236,-0.0082672303542495],[0.010592638514936,0.014601899310946,-0.05484639108181]],[[-0.022597074508667,-0.039112992584705,0.034262541681528],[0.0030210050754249,0.0054539972916245,0.0016475789016113],[-0.032166447490454,-0.014289012178779,-0.01978375762701]],[[-0.01272292342037,0.026942921802402,-0.12869669497013],[-0.024313012138009,0.019047051668167,-0.076041840016842],[0.044956311583519,0.003743625478819,0.070771366357803]],[[-0.10365334153175,-0.16876566410065,0.027640076354146],[-0.012608065269887,-0.048910461366177,-0.054278384894133],[0.045898199081421,0.033524174243212,-0.01521369535476]],[[0.064646743237972,0.040265940129757,-0.11878384649754],[0.019971625879407,-0.039877448230982,-0.0093126567080617],[-0.088449284434319,-0.01640098169446,0.042530078440905]],[[0.039436932653189,-0.034429110586643,0.0065988907590508],[0.011887645348907,0.054282233119011,-0.038221877068281],[-0.090701662003994,-0.018495954573154,-0.032059814780951]],[[0.037343692034483,-0.10249502211809,-0.037870053201914],[0.055561624467373,-0.032248586416245,-0.045187134295702],[0.038566753268242,0.05963297188282,0.057065296918154]],[[0.055621080100536,-0.069189876317978,0.07619846612215],[0.020657870918512,-0.036140717566013,0.021835660561919],[-0.055548373609781,-0.031931169331074,-0.062292326241732]],[[0.028603369370103,0.16559079289436,0.0029868427664042],[-0.034427456557751,0.084349289536476,-0.041378255933523],[-0.0036613733973354,-0.079126425087452,-0.0025783213786781]],[[-0.0045360783115029,-0.083672404289246,-0.0046272058971226],[0.031479198485613,-0.044176302850246,-0.016814989969134],[0.0015418657567352,0.038698673248291,-0.0036165784113109]],[[0.00010184635902988,0.0011324489023536,-0.0057697645388544],[-0.021148823201656,0.010009081102908,0.065274737775326],[-0.049256257712841,-0.056911654770374,-0.012338799424469]],[[0.016238942742348,0.069285824894905,0.16231481730938],[0.051672015339136,-0.10463114082813,0.0057876450009644],[-0.088526859879494,-0.0019350093789399,-0.098320007324219]],[[-0.052639629691839,-0.014539428986609,-0.055623967200518],[-0.0090125603601336,-0.18598155677319,0.0091927479952574],[-0.016373958438635,-0.02847745269537,-0.028811298310757]],[[-0.1198404058814,0.006810138002038,0.0035207746550441],[-0.10931199789047,-0.072720669209957,0.097986333072186],[-0.057643860578537,0.041901540011168,-0.072067558765411]],[[-0.06030559912324,0.021243235096335,0.0096044382080436],[-0.033612005412579,-0.08171059936285,0.04552735760808],[-0.034272205084562,-0.027120213955641,-0.078092537820339]],[[-0.13100364804268,0.065218113362789,-0.050213262438774],[0.051682084798813,0.0012011200888082,-0.087392650544643],[0.041775960475206,0.015796193853021,-0.031658064574003]],[[-0.082004740834236,0.021697463467717,-0.019505543634295],[-0.0015919590368867,-0.06138414144516,-0.034811440855265],[0.073779083788395,0.0024329607840627,-0.018552148714662]],[[-0.02186519280076,-0.066579893231392,0.028172362595797],[0.036561653017998,-0.00050524831749499,-0.064436450600624],[-0.0020360790658742,0.016254659742117,0.025665307417512]],[[-0.036686647683382,-0.036540813744068,-0.079819075763226],[-0.029604645445943,0.020730493590236,0.038156360387802],[-0.0001175057477667,0.0023487261496484,-0.021273907274008]],[[0.0080876378342509,-0.076202198863029,0.040919963270426],[-0.123615257442,-0.059629168361425,0.002330060582608],[-0.10007524490356,-0.065923810005188,-0.089418552815914]],[[-0.067867174744606,-0.086379088461399,-0.0049878302961588],[-0.067389629781246,-0.018960103392601,-0.00026503129629418],[-0.076459228992462,-0.030117563903332,-0.016788253560662]],[[4.6774807742622e-06,-0.014186869375408,-0.067181408405304],[-0.095175080001354,-0.046164650470018,0.013045924715698],[0.10760992765427,-0.12423317879438,-0.27499860525131]],[[0.0056445887312293,0.0041853780858219,-0.078991629183292],[-0.0039482610300183,0.01377294305712,-0.06899631768465],[-0.010916846804321,-0.028986480087042,-0.10007233172655]],[[-0.043535679578781,-0.025604514405131,-0.027045238763094],[0.020845804363489,-0.0609933398664,-0.018627157434821],[-0.034261185675859,0.11164665222168,-0.044596072286367]],[[0.0037099381443113,0.058884169906378,-0.071867421269417],[-0.020618878304958,-0.093131802976131,0.012245438992977],[-0.066551722586155,0.014668966643512,-0.042987775057554]],[[-0.013713443651795,-0.0027716576587409,-0.020407933741808],[-0.013397527858615,-0.0202208571136,-0.04721487313509],[-0.056823410093784,-0.083368994295597,-0.079083904623985]],[[-0.090098604559898,-0.0032302041072398,0.060003895312548],[-0.034721214324236,-0.020731339231133,0.0023941968102008],[-0.041063375771046,0.085257180035114,-0.0028183017857373]],[[-0.015776075422764,-0.029138488695025,-0.0024454791564494],[0.073573470115662,0.067384980618954,0.0011044392595068],[-0.10382664948702,0.065668649971485,0.018745636567473]],[[0.045183848589659,0.061681393533945,0.0093905227258801],[-0.089809603989124,-0.1272120475769,0.11233609169722],[0.020190404728055,-0.014104273170233,-0.024775141850114]],[[0.035153608769178,-0.028671422973275,0.055755946785212],[0.005193670745939,-0.032478354871273,-0.0874288007617],[0.010808516293764,0.013599053956568,-0.0090734753757715]],[[-0.035462651401758,-0.082570530474186,-0.0048312996514142],[0.019503364339471,0.029501250013709,-0.046721238642931],[0.021843887865543,0.029246812686324,0.012349803932011]],[[-0.016562974080443,-0.028682611882687,-0.032682079821825],[0.011681531555951,0.11305532604456,0.054849911481142],[-0.02164570055902,0.067957364022732,0.039261668920517]],[[-0.013501273468137,0.040818475186825,-0.005588096100837],[-0.023341048508883,0.11799664795399,-0.00086520693730563],[0.0043080812320113,-0.038162611424923,-0.0023014422040433]],[[0.015389549545944,-0.037187736481428,0.011504054069519],[-0.0046034781262279,-0.021146792918444,-0.0090629467740655],[-0.014708073809743,0.068568348884583,-0.023570558056235]],[[-0.074229300022125,0.030183713883162,0.020248286426067],[0.012819937430322,-0.0036187628284097,0.017888138070703],[0.082627005875111,0.0024012033827603,-0.035104118287563]],[[-0.0082442490383983,0.02033600397408,-0.013646122999489],[0.0067274910397828,-0.096031747758389,0.19415792822838],[0.086003758013248,0.060630980879068,-0.11962598562241]],[[0.0023871222510934,0.0078561687842011,-0.032397031784058],[0.0074963620863855,-0.016972109675407,-0.053381334990263],[-0.057726852595806,0.024865839630365,0.029372736811638]],[[-0.014303470030427,-0.037431236356497,0.038550827652216],[0.030869545415044,-0.0083230454474688,-0.0047853826545179],[-0.028481082990766,-0.0023366855457425,0.020676413550973]],[[0.0042386129498482,0.089662678539753,-0.0096949944272637],[0.034120060503483,-0.036619160324335,0.012355310842395],[0.016806904226542,-0.031774863600731,0.050855048000813]],[[-0.0032833644654602,-0.084976270794868,0.080415010452271],[-0.020639471709728,-0.010840015485883,-0.035549242049456],[0.016867559403181,0.076912447810173,-0.14433510601521]],[[0.011230023577809,0.045861229300499,-0.014658823609352],[-0.017333468422294,-0.081531725823879,0.031289413571358],[0.082174755632877,0.045488152652979,-0.064238838851452]],[[0.060545016080141,0.076042510569096,-0.014298355206847],[-0.090792015194893,-0.051249865442514,0.046159934252501],[-0.035583086311817,-0.016761193051934,0.0061008804477751]],[[0.058334205299616,-0.039648603647947,0.024796051904559],[0.10857926309109,-0.025184722617269,-0.10470174998045],[-0.0047130044549704,-0.018533697351813,-0.049808882176876]],[[0.0061119571328163,0.030114350840449,-0.0057982858270407],[-0.034705989062786,0.019052052870393,-0.058893736451864],[-0.026566006243229,-0.057725429534912,-0.057092260569334]],[[-0.082539275288582,-0.0019515262683854,-0.055074349045753],[0.020901456475258,0.010593930259347,-0.024913255125284],[0.0095263030380011,-0.084246046841145,0.013170772232115]],[[-0.066855244338512,0.044565446674824,-0.032424468547106],[0.012190887704492,-0.017453841865063,0.060777869075537],[-0.13273169100285,-0.033996727317572,-0.061322961002588]],[[-0.039727970957756,-0.016143074259162,-0.093894839286804],[-0.10718563199043,0.042638409882784,-0.074336834251881],[0.062116213142872,0.0097162919119,0.014094978570938]],[[0.022323569282889,0.039973694831133,-0.07043419033289],[0.034262400120497,0.0552750043571,-0.056451592594385],[0.012519866228104,0.006501957308501,0.0066857170313597]],[[1.3190970094001e-05,-0.039614535868168,-0.013002496212721],[-0.093030549585819,0.053183414041996,0.078777357935905],[-0.029592033475637,-0.051789812743664,-0.040449541062117]],[[-0.13960675895214,-0.020481243729591,-0.03513241186738],[0.054708186537027,-0.020326606929302,0.040151633322239],[0.016350872814655,-0.036499068140984,-0.012863731943071]],[[-0.050109799951315,-0.018354367464781,-0.023357803002],[-0.17375096678734,-0.018522946164012,-0.035339884459972],[0.011251798830926,-0.040152847766876,0.0014645452611148]],[[-0.082113899290562,0.065965577960014,0.018728218972683],[-0.011127101257443,0.0068269544281065,0.002632615622133],[-0.050354462116957,-0.038827251642942,-0.0015666420804337]],[[-0.044143576174974,0.024762826040387,0.022719517350197],[-0.053470201790333,-0.02838883548975,-0.010927653871477],[0.043371882289648,0.041345827281475,-0.025349605828524]],[[-0.014854724518955,0.026518277823925,-0.03418156504631],[-0.11886203289032,-0.024951446801424,0.03980577737093],[-0.016992151737213,0.09592442959547,0.063243336975574]],[[-0.087380334734917,-0.019882548600435,-0.04018484801054],[-0.10657184571028,0.029782366007566,-0.047847393900156],[0.072267234325409,-0.055331192910671,-0.030945172533393]],[[0.028514431789517,-0.083282090723515,0.10042441636324],[0.0077860541641712,0.023187717422843,-0.064745895564556],[-0.012627089396119,0.080558568239212,-0.028706219047308]],[[-0.0082655735313892,0.056089580059052,0.028991824015975],[0.015259894542396,-0.11995449662209,-0.128319054842],[-0.047648243606091,-0.067876577377319,0.01726146414876]],[[0.010591738857329,-0.003909241873771,0.060793984681368],[-0.030157264322042,0.04895456507802,-0.033188179135323],[-0.068402729928493,-0.072147883474827,-0.032530829310417]],[[-0.0025929347611964,-0.052668198943138,-0.016430519521236],[0.041537083685398,0.093972750008106,0.045815899968147],[-0.023031251505017,-0.057485613971949,0.028304986655712]],[[-0.063843615353107,-0.027253335341811,0.012262693606317],[-0.035308454185724,0.037783864885569,-0.053957339376211],[-0.056466888636351,-0.076096579432487,0.049584984779358]],[[0.027416028082371,-0.0077304923906922,0.027968658134341],[-0.0093432972207665,0.031245850026608,-0.099692150950432],[-0.0099664684385061,-0.038654550909996,-0.0014906785218045]],[[-0.071153275668621,0.00055289303418249,-0.022812072187662],[-0.033027831465006,0.0097821392118931,0.0024808901362121],[-0.029575562104583,0.02084831520915,-0.015285141766071]],[[-0.04720064625144,0.065380334854126,-0.064957864582539],[0.032604973763227,-0.017214462161064,-0.03542798012495],[-0.013121902011335,0.068640224635601,-0.074372008442879]],[[0.049027651548386,-0.008582946844399,-0.016478795558214],[-0.019627060741186,-0.079026341438293,0.0031412702519447],[-0.0086010890081525,-0.070473112165928,-0.053645484149456]],[[-0.029327400028706,-0.046784341335297,0.035300929099321],[0.03085477091372,-0.0081617441028357,0.030010260641575],[0.0747115239501,-0.071469590067863,0.074326820671558]],[[0.043023061007261,-0.089072585105896,0.003570105182007],[-0.047916289418936,-0.1303725540638,0.089042715728283],[-0.038390681147575,0.028033250942826,-0.023964136838913]],[[-0.038003776222467,0.061040818691254,-0.10844051837921],[0.068493880331516,-0.11297420412302,0.035157803446054],[0.016162438318133,0.0011118850670755,0.033864077180624]],[[-0.017617456614971,-0.025935154408216,-0.045579209923744],[-0.0020751305855811,0.05833126232028,-0.021827131509781],[0.011791311204433,-0.12031330168247,-0.090677782893181]],[[-0.03709127753973,-0.045826748013496,0.056042019277811],[-0.034592937678099,0.014097203500569,-0.0046347249299288],[-0.0034212709870189,0.0034565904643387,-0.010652549564838]],[[0.075272724032402,-0.081617161631584,-0.015201990492642],[0.082692578434944,-0.097512431442738,-0.052342399954796],[-0.0092280739918351,-0.095523454248905,-0.03110196813941]],[[-0.0050774975679815,0.037856642156839,-0.10652812570333],[-0.02200417779386,0.083715721964836,-0.023540962487459],[0.021557915955782,0.040701597929001,0.029495116323233]],[[-0.053455613553524,0.048816807568073,-0.061119344085455],[-0.0095670707523823,-0.13907666504383,-0.0016670576296747],[-0.0081042433157563,-0.013458644039929,0.033077351748943]],[[-0.0069944183342159,-0.002403125166893,-0.036871027201414],[0.045202448964119,-0.14983268082142,-0.11599616706371],[0.0009573552524671,0.046866349875927,-0.090099088847637]],[[0.0071386606432498,0.10242874920368,-0.10629573464394],[-0.060684602707624,-0.07076022028923,0.073185876011848],[-0.038037050515413,-0.044577028602362,-0.015360333025455]],[[0.0175318159163,0.002448434010148,-0.05214811116457],[-0.039225332438946,-0.032309662550688,-0.087304696440697],[-0.068275138735771,-0.023099655285478,0.031847313046455]],[[-0.012508084066212,-0.09026326239109,0.041283968836069],[0.023005101829767,0.0066709946841002,-0.041214238852262],[0.032387468963861,0.022328607738018,-0.020293973386288]],[[-0.038013953715563,0.023203294724226,-0.10395193099976],[0.05676668509841,-0.019315393641591,-0.078899696469307],[0.0026998140383512,0.02789962477982,-0.03255382925272]],[[0.029661845415831,-0.027249932289124,-0.038259156048298],[0.025386901572347,0.071144588291645,0.00032099051168188],[0.026468677446246,0.061695247888565,0.050952650606632]],[[-0.0018829901237041,-0.083263263106346,0.095767363905907],[-0.065415501594543,0.013606358319521,-0.026951065286994],[-0.11344296485186,0.042162299156189,-0.0072762463241816]],[[-0.0098511781543493,-0.085732214152813,0.00056647742167115],[-0.042079962790012,0.030568283051252,-0.0098618119955063],[-0.000620037317276,0.068158388137817,0.055054098367691]],[[0.074060022830963,0.0015911981463432,-0.0842095464468],[-0.045688834041357,0.0062558059580624,-0.031738545745611],[0.031340103596449,-0.0080660432577133,-0.013368457555771]],[[-0.044311925768852,0.048485945910215,-0.10156819224358],[0.060073722153902,-0.0067027662880719,-0.04525788500905],[-0.068195372819901,-0.0039429347962141,0.029444778338075]],[[-0.046097841113806,-0.081372104585171,-0.01057712174952],[0.095381192862988,-0.091923631727695,-0.010439752601087],[0.062829293310642,0.033214516937733,-0.045953366905451]],[[-0.012684673070908,0.062940143048763,-0.026752496138215],[-0.10036353766918,0.0094247106462717,-0.047636236995459],[0.023998955264688,0.03564415127039,-0.061305362731218]],[[-0.023474557325244,-0.039816979318857,-0.066241398453712],[-0.10785402357578,0.017646819353104,-0.054269250482321],[0.022236838936806,0.010669429786503,-0.05109991133213]],[[0.041622750461102,-0.00065952359000221,0.066163331270218],[-0.085142031311989,-0.057531740516424,-0.028502045199275],[-0.010031376034021,0.038828283548355,0.0073857330717146]],[[0.021015472710133,0.019479176029563,-0.099726229906082],[0.031205780804157,0.014161560684443,-0.057729437947273],[0.023257292807102,-0.046367548406124,0.039278589189053]],[[-0.051363233476877,0.0119244819507,0.082021676003933],[-0.010287020355463,0.024436606094241,-0.087603718042374],[0.024910302832723,-0.1259902715683,-0.053982742130756]],[[0.0015258155763149,-0.038238726556301,0.061304334551096],[0.063087329268456,0.077764831483364,-0.032075017690659],[-0.0078308144584298,0.018119351938367,0.0080045657232404]],[[-0.026287849992514,-0.12687817215919,0.079473815858364],[-0.016180045902729,0.057015396654606,-0.0042261648923159],[0.02261071279645,-0.014761941507459,0.017282545566559]],[[-0.01093902438879,0.0038118381053209,0.039786625653505],[0.0045259892940521,-0.014180578291416,-0.014449319802225],[-0.041410058736801,0.0078122988343239,0.091168530285358]],[[-0.012248603627086,0.00064122903859243,-0.043315023183823],[-0.054367609322071,-0.10482872277498,0.080449268221855],[-0.036017417907715,-0.012959292158484,0.0024407925084233]],[[-0.030124440789223,-0.083661943674088,0.085084952414036],[0.00051846011774614,-0.12234587967396,0.0050278482958674],[-0.074651025235653,-0.0041433614678681,-0.019328897818923]],[[0.09800935536623,-0.1158300191164,-0.011855388060212],[-0.013094365596771,0.0020577756222337,-0.027508135885],[-0.032157801091671,-0.0070722019299865,0.014746378175914]],[[-0.026467263698578,-0.016859756782651,0.061616379767656],[-0.09802632778883,0.0010688334004954,0.030258111655712],[-0.097122378647327,-0.041764691472054,0.053822234272957]],[[0.084017932415009,0.028403487056494,-0.054835423827171],[0.087009914219379,-0.011213658377528,-0.02261121943593],[-0.044553492218256,-0.10765767097473,-0.072845309972763]],[[0.0017225473420694,0.038902509957552,-0.0068396376445889],[-0.023016961291432,-0.0030366869177669,-0.054477993398905],[-0.027058443054557,-0.029856856912374,-0.0079457955434918]],[[-0.099892131984234,-0.072054736316204,-0.028624083846807],[-0.011607677675784,0.0075682224705815,-0.057024620473385],[0.057478968054056,-0.012675136327744,0.02181962877512]],[[-0.022141505032778,0.068101234734058,-0.053986821323633],[-0.078239969909191,-0.10577913373709,0.020000593736768],[0.04493361338973,0.0080990232527256,-0.071818582713604]],[[-0.012680780142546,-0.068510562181473,0.0046043172478676],[-0.0066326088272035,-0.066269487142563,-0.053317572921515],[0.025937214493752,-0.0012059697182849,-0.058208111673594]],[[-0.086716704070568,-0.040214236825705,0.019174601882696],[0.10261873155832,-0.063580513000488,-0.0083499252796173],[-0.049930479377508,0.033788505941629,0.0088332304731011]],[[-0.053948406130075,0.0017788138939068,-0.094710819423199],[0.0044682049192488,-0.012860951013863,0.085116662085056],[0.016976749524474,-0.037217207252979,0.036206245422363]],[[-0.080233693122864,0.010019670240581,-0.023467715829611],[-0.011782160028815,0.022337306290865,0.0057452684268355],[0.014943704009056,0.035651136189699,-0.028830947354436]],[[0.044702477753162,-0.080083854496479,-0.0020092241466045],[0.010437205433846,0.0009390467312187,-0.15602359175682],[-0.012334288097918,-0.013575287535787,0.092389859259129]],[[-0.1005873978138,0.020392261445522,0.068760104477406],[0.0074863000772893,-0.025710083544254,0.0036136524286121],[0.043730422854424,-0.030632253736258,0.027222529053688]],[[-0.10901467502117,0.085409075021744,-0.026762949302793],[0.036128368228674,-0.097799360752106,-0.036183457821608],[0.02574085816741,-0.043783091008663,-0.052735280245543]],[[-0.015236997045577,-0.017535891383886,-0.067253328859806],[0.0060329497791827,0.020157197490335,-0.0029656088445336],[-0.0058444105088711,-0.076736785471439,-0.0011600110447034]],[[0.020267695188522,-0.063211612403393,-0.021812628954649],[-0.019870806485415,-0.029487473890185,-0.037928000092506],[-0.0082272691652179,0.017689039930701,0.02089055813849]],[[-0.039211317896843,-0.091234609484673,0.023613344877958],[-0.046845555305481,-0.019964991137385,0.011643911711872],[-0.040045171976089,0.0027533972170204,-0.032535552978516]],[[-0.028384901583195,-0.015842664986849,-0.042546100914478],[-0.08791445940733,0.022167446091771,0.038464996963739],[-0.016784524545074,-0.025531316176057,0.0063273846171796]],[[-0.027471864596009,0.057349309325218,0.05967353656888],[0.070258595049381,0.086913019418716,0.072089351713657],[0.026894457638264,-0.028779368847609,-0.031052062287927]],[[-0.089673459529877,-0.14165687561035,0.044634871184826],[-0.01456424407661,-0.069628953933716,0.040055010467768],[-0.061793997883797,0.020951369777322,0.044735621660948]],[[-0.016704354435205,-0.0047128372825682,0.0005079492693767],[-0.042562671005726,0.0063944817520678,-0.035733494907618],[-0.031520634889603,0.014392572455108,-0.0046332743950188]],[[-0.069217674434185,0.0098975729197264,0.0016827173531055],[-0.055102363228798,-0.075485043227673,-0.04751468449831],[0.027765428647399,0.050745002925396,-0.035413678735495]],[[0.010944979265332,-0.017744747921824,-0.038954179733992],[0.015143248252571,0.080959536135197,-0.018708564341068],[0.054484061896801,-0.041218306869268,-0.054483387619257]],[[-0.051224883645773,0.009481206536293,-0.026312010362744],[-0.036915309727192,-0.061635319143534,0.0066380179487169],[0.048703618347645,0.019680565223098,-0.029859248548746]],[[0.00085334671894088,0.0447335280478,-0.025575466454029],[0.046948347240686,-0.0057689258828759,0.021439965814352],[-0.014159200713038,-0.018835185095668,0.021124335005879]],[[-0.029643956571817,0.050731766968966,0.066624104976654],[-0.096197962760925,-0.065562427043915,-0.062053423374891],[-0.011206501163542,-0.089102923870087,-0.063661575317383]],[[0.031549226492643,-0.062384821474552,0.027553556486964],[-0.040230702608824,0.12515266239643,-0.056648936122656],[0.045917741954327,0.030811131000519,-0.04908673837781]],[[-0.062801279127598,-0.034300532191992,-0.027187395840883],[0.057850249111652,-0.13784421980381,0.032594125717878],[0.003273289417848,0.024632101878524,-0.0077451705001295]],[[0.025902483612299,0.031526163220406,0.010702045634389],[0.011903677135706,-0.022170554846525,-0.064980030059814],[-0.049716472625732,-0.11881132423878,-0.1093612164259]],[[0.043251506984234,0.06688117235899,0.085936583578587],[-0.14377827942371,0.016131499782205,-0.04792769625783],[0.0077054835855961,-0.087720394134521,-0.089276254177094]],[[-0.099785156548023,0.10643750429153,-0.015613471157849],[-0.07359591126442,-0.037895701825619,0.024408662691712],[0.0091801732778549,0.01859431527555,-0.064443722367287]],[[-0.037943873554468,0.0062062493525445,0.026913562789559],[0.022274907678366,-0.021550072357059,-0.094374373555183],[0.00035041698720306,-0.024794792756438,-0.075499132275581]],[[0.091308951377869,0.072573453187943,-0.00099858397152275],[0.029921021312475,-0.012685941532254,-0.055057410150766],[-0.015871064737439,-0.018358509987593,0.0084313936531544]]],[[[0.099421128630638,0.029545821249485,-0.0055463528260589],[-0.082588113844395,-0.088857740163803,0.11534085869789],[0.00020787888206542,0.06116982921958,-0.048236917704344]],[[0.020087705925107,-0.029378181323409,-0.096550531685352],[0.014729076065123,0.015947092324495,0.076433502137661],[0.072276197373867,0.013943770900369,-0.037085641175508]],[[-0.0045890277251601,0.025244755670428,0.093280106782913],[-0.051403477787971,-0.067214451730251,0.049559365957975],[0.045071940869093,-0.069474950432777,0.038029748946428]],[[-0.039787661284208,0.0069989520125091,0.047444138675928],[-0.0083173559978604,0.0089435251429677,0.019882783293724],[-0.027833996340632,-0.075692348182201,0.043419539928436]],[[0.0056975306943059,0.0082560051232576,0.12230936437845],[-0.052222020924091,-0.0071277786046267,-0.074929878115654],[-0.011138911359012,-0.065986283123493,0.049217950552702]],[[0.15048104524612,-0.029027698561549,-0.02010247297585],[0.081162989139557,0.009350442327559,0.062268055975437],[0.15522952377796,0.15954899787903,0.17615124583244]],[[0.061750829219818,0.063588298857212,-0.030749723315239],[-0.041680779308081,-0.057647418230772,0.01213179435581],[-0.080186009407043,0.062471836805344,0.0052160588093102]],[[0.041043978184462,0.059166256338358,-0.022548923268914],[-0.040581278502941,-0.083696164190769,0.07758567482233],[0.013641433790326,0.026942485943437,-0.092943832278252]],[[-0.0052209259010851,0.033871803432703,-0.1027809008956],[-0.012585305608809,-0.089205399155617,0.00036465714219958],[0.006821206305176,0.037089727818966,0.024772513657808]],[[0.12272517383099,-0.0043943743221462,-0.01502991002053],[0.11790437251329,0.13473792374134,0.12904118001461],[0.074623994529247,0.062334675341845,0.043670199811459]],[[-0.13102608919144,0.078555807471275,0.022161869332194],[-0.18143354356289,-0.0054889349266887,0.049334932118654],[-0.022577375173569,0.10396185517311,0.0093080205842853]],[[0.20976243913174,-0.074189633131027,0.015087686479092],[0.069258354604244,-0.026311254128814,0.087907396256924],[0.14560170471668,-0.01209875382483,0.075711078941822]],[[-0.045355886220932,-0.02734374627471,0.049695517867804],[-0.073125913739204,0.034697860479355,0.054830867797136],[-0.022651053965092,0.013767934404314,0.11702032387257]],[[-0.038819462060928,0.016574153676629,-0.05695041641593],[0.012446100823581,0.01051411125809,0.045247804373503],[-0.0054732975549996,0.11902453005314,0.043885920196772]],[[0.079764068126678,0.039775297045708,0.083752505481243],[0.038361504673958,0.064279362559319,0.11043860763311],[-0.014182726852596,0.023148253560066,0.10341287404299]],[[0.023551303893328,-0.071170508861542,-0.0034736329689622],[-0.12535218894482,0.059168975800276,-0.0050787543877959],[0.0352478697896,-0.020435867831111,-0.15968002378941]],[[0.10780940204859,0.055539518594742,0.019661853089929],[-0.015060914680362,0.025686968117952,-0.029354203492403],[-0.014986965805292,-0.077622279524803,-0.052881751209497]],[[0.027502730488777,-0.17769408226013,-0.027112647891045],[-0.02620173804462,0.005194722674787,-0.20016026496887],[-0.059489611536264,-0.06750063598156,-0.031804155558348]],[[-0.027575058862567,-0.06379858404398,-0.062106356024742],[0.12847070395947,0.050454910844564,-0.11380819231272],[-0.0076259085908532,0.050474382936954,-0.18184727430344]],[[-0.044679116457701,0.026138776913285,0.01241460442543],[0.047716457396746,0.020426513627172,-0.048911686986685],[0.015942320227623,0.021388757973909,-0.075962543487549]],[[-0.047266688197851,-0.11095604300499,-0.0020697554573417],[0.01106808707118,-0.021430995315313,0.062294311821461],[-0.035059839487076,0.056328393518925,-0.10623452067375]],[[0.066554397344589,0.08535873144865,0.16559074819088],[0.10431352257729,0.064252711832523,0.027824956923723],[0.025189477950335,0.024289827793837,0.016602093353868]],[[0.065385483205318,-0.075918726623058,0.018766608089209],[0.036521386355162,0.020174680277705,0.021828642114997],[-0.020622052252293,-0.011294832453132,-0.060540214180946]],[[0.020342707633972,0.04411318898201,-0.03863575309515],[-0.088719308376312,0.056986380368471,-0.011756153777242],[-0.040245238691568,-0.041953399777412,0.13215532898903]],[[-0.0017257205909118,-0.054425664246082,-0.045691188424826],[0.024331837892532,-0.0098395850509405,-0.066951513290405],[0.0084647927433252,-0.045136403292418,-0.031744085252285]],[[-0.054198887199163,0.058308083564043,-0.04804714769125],[0.082525826990604,-0.067649818956852,0.048833064734936],[0.014441641047597,0.066454268991947,0.15512531995773]],[[-0.14044833183289,0.036503303796053,-0.019258622080088],[0.017127566039562,0.044512785971165,0.0059423693455756],[-0.064112365245819,-0.00081090023741126,0.027349025011063]],[[-0.0011872152099386,-0.088246285915375,0.10376137495041],[-0.059259310364723,-0.076583787798882,0.055781483650208],[-0.032942239195108,-0.065191008150578,0.070196434855461]],[[0.036936860531569,0.015151829458773,0.025647534057498],[-0.016990898177028,-0.044457651674747,0.074404813349247],[-0.020044224336743,0.00045865966239944,-0.0065528671257198]],[[0.027471199631691,-0.054393246769905,0.08106092363596],[0.045721706002951,0.14050260186195,0.030924649909139],[0.01180007122457,-0.11363656818867,-0.02757777646184]],[[0.016588805243373,-0.035059500485659,0.01826773583889],[0.11217559129,0.10602202266455,-0.024459762498736],[-0.13005575537682,-0.045734938234091,-0.14016079902649]],[[-0.026123696938157,-0.091794103384018,0.034043282270432],[-0.075075507164001,-0.029376519843936,-0.0027513743843883],[0.018991304561496,0.047955755144358,-0.068971455097198]],[[-0.048477254807949,-0.030766757205129,0.089148730039597],[0.13798035681248,0.012156097218394,-0.0077505763620138],[-0.026136146858335,-0.068692408502102,0.037339754402637]],[[-0.017224157229066,0.080746077001095,-0.052715845406055],[-0.036108464002609,-0.061092082411051,0.068262331187725],[-0.010485172271729,0.055863693356514,-0.1020397618413]],[[-0.0093278754502535,0.099301189184189,-0.019032748416066],[-0.013092984445393,0.063961751759052,0.044305864721537],[-0.041729744523764,-0.05655837059021,0.16726216673851]],[[0.0039616208523512,0.0014426182024181,-0.070950038731098],[-0.047688607126474,0.055193956941366,0.042720206081867],[0.05296790227294,-0.018080329522491,-0.074193343520164]],[[0.042580313980579,0.018527843058109,-0.033703599125147],[-0.072332501411438,-0.078989274799824,-0.038092158734798],[-0.036872152239084,-0.16369643807411,-0.12382365018129]],[[-0.0064041023142636,0.049542188644409,-0.066628821194172],[-0.02969023399055,-0.067557722330093,0.097177319228649],[-0.076528742909431,0.034929469227791,-0.20193801820278]],[[-0.0096744308248162,0.024930352345109,-0.17657229304314],[-0.018496122211218,-0.00085314642637968,-0.034527186304331],[-0.023057501763105,-0.17180433869362,0.016377525404096]],[[-0.07005537301302,-0.033240355551243,0.059609338641167],[-0.10614638775587,0.046929631382227,0.042779065668583],[-0.12183850258589,0.023819474503398,-0.013260638341308]],[[0.045942634344101,-0.044786676764488,0.054355327039957],[0.065476506948471,-4.7553949116264e-05,-0.058034870773554],[0.040023393929005,0.10475251078606,0.23223921656609]],[[-0.0067131286486983,0.081283457577229,0.080076582729816],[-0.12023189663887,0.076523005962372,0.029802549630404],[0.019418688490987,0.048029072582722,0.023509567603469]],[[0.003337214468047,0.073755487799644,0.0496486723423],[-0.018428033217788,0.054265551269054,-0.056180153042078],[0.040512051433325,0.083984203636646,0.16307954490185]],[[0.069338329136372,-0.033900659531355,0.053915590047836],[0.00052999862236902,-0.046711418777704,-0.086937882006168],[0.034446347504854,0.1233035326004,-0.049494095146656]],[[-0.022803705185652,-0.012767866253853,0.035096075385809],[-0.040804784744978,0.066002555191517,0.019246228039265],[0.051825020462275,0.15138411521912,-0.055661607533693]],[[0.015796052291989,0.041655231267214,0.046795662492514],[-0.02436476573348,0.062759235501289,0.046966746449471],[0.035145193338394,0.058007206767797,0.0096118384972215]],[[-0.24634866416454,-0.16545507311821,-0.13040962815285],[0.069818653166294,-0.032792180776596,-0.11187161505222],[0.055618654936552,0.10978587716818,0.058009311556816]],[[-0.048318393528461,0.015260210260749,-0.01354431733489],[0.056268844753504,0.024176485836506,0.079664878547192],[0.024626918137074,0.10712521523237,-0.06562814861536]],[[-0.090850330889225,-7.1221293183044e-06,0.074678868055344],[-0.0075088441371918,-0.050534248352051,-0.092716164886951],[-0.02814276330173,-0.088576450943947,0.050447300076485]],[[0.001065100543201,0.027212643995881,0.049868460744619],[-0.053465358912945,-0.014596085995436,-0.019025772809982],[-0.027206970378757,-0.039843495935202,-0.03291105479002]],[[-0.028094431385398,-0.073219552636147,-0.10632137954235],[0.013923571445048,-0.075644962489605,-0.016224380582571],[0.081526830792427,0.06753883510828,0.039234176278114]],[[0.03126621991396,0.044424671679735,0.058798391371965],[0.0044457786716521,0.032556779682636,-0.0053590899333358],[0.093151107430458,0.0056640543043613,0.072153329849243]],[[-0.0086559066548944,0.027854464948177,-0.017701681703329],[-0.017120720818639,-0.033549681305885,-0.011321040801704],[0.017551893368363,0.014813330955803,-0.16379624605179]],[[0.06658848375082,-0.048728954046965,0.096875362098217],[-0.056678883731365,-0.10686981678009,0.14026965200901],[-0.018326982855797,0.00072172615909949,0.037213500589132]],[[0.022256400436163,-0.072174832224846,-0.042861495167017],[-0.0061185536906123,-0.071827180683613,-0.047539103776217],[-0.098978348076344,0.023621549829841,-0.098872482776642]],[[0.26192101836205,0.13657134771347,0.045158591121435],[0.039347417652607,0.15389873087406,0.097794763743877],[0.034303121268749,0.1561379134655,-0.18765309453011]],[[-0.0014582241419703,0.068042606115341,0.11480853706598],[0.054781854152679,0.027949353680015,-0.0031816724222153],[-0.02893128991127,-0.010437875986099,0.0070929769426584]],[[-0.077074825763702,-0.089572794735432,-0.11815205216408],[0.0060575171373785,0.20120504498482,0.066555857658386],[-0.09599607437849,-0.13735491037369,-0.15466882288456]],[[-0.15086741745472,0.12234934419394,0.082443438470364],[-0.010477545671165,-0.17861877381802,0.0036730214487761],[-0.05318259447813,-0.16977380216122,0.051089063286781]],[[0.093973480165005,0.040690783411264,0.079647615551949],[-0.068376623094082,0.055910486727953,0.0067153470590711],[-0.076067835092545,0.01895372569561,-0.01142018660903]],[[0.0010835392167792,0.030796114355326,0.0081327967345715],[0.064199090003967,0.089778982102871,0.037679117172956],[0.0035305649507791,-0.041423227638006,-0.0038974948693067]],[[-0.15131314098835,0.016853172332048,0.0072450344450772],[-0.070139609277248,-0.012901687994599,-0.060052338987589],[0.07150936126709,-0.072032779455185,0.069335862994194]],[[-0.20780538022518,0.041942417621613,-0.0075328378006816],[0.05881105735898,0.016046056523919,-0.023624842986465],[0.051729969680309,-0.037148021161556,-0.014037722721696]],[[0.053536988794804,0.061834968626499,-0.066662386059761],[0.0815419703722,0.10092796385288,0.043016962707043],[-0.054896201938391,0.099452845752239,0.048200190067291]],[[0.085718005895615,7.0631700509693e-05,0.063565701246262],[0.10280759632587,0.014457201585174,-0.072688922286034],[0.010057489387691,0.064303793013096,0.02660096809268]],[[0.049361884593964,-0.028855023905635,-0.010050718672574],[-0.070726975798607,-0.13729596138,0.14848484098911],[0.021291932091117,0.052482329308987,-0.1231337711215]],[[0.023009298369288,-0.011207980103791,0.12345696985722],[0.023383120074868,-0.037551082670689,0.088535442948341],[0.1101248934865,-0.045255146920681,0.078327648341656]],[[0.093388833105564,0.015171431936324,-0.0073831495828927],[0.045437447726727,0.13531322777271,-0.02080300077796],[0.037947665899992,0.01672106795013,-0.17897810041904]],[[0.02095029130578,-0.030862979590893,0.018379179760814],[-0.035950310528278,-0.097895495593548,0.010391661897302],[-0.0012866643955931,0.0070153335109353,-0.0040796189568937]],[[0.025748772546649,0.048368245363235,-0.033956479281187],[0.033689204603434,0.018836556002498,-0.066967867314816],[0.13692738115788,-0.0082087805494666,-0.026355266571045]],[[-0.05864654108882,0.1616772711277,-0.10905427485704],[-0.014966458082199,0.040952801704407,-0.028864359483123],[0.012522109784186,-0.011928373016417,-0.033468455076218]],[[-0.061989787966013,-0.03109011426568,0.066880226135254],[0.071382522583008,0.052741557359695,-0.034071329981089],[0.078499481081963,0.054321199655533,0.012547770515084]],[[0.12550137937069,0.14874103665352,0.042743638157845],[0.13599932193756,-0.036636285483837,-0.038773380219936],[0.020907800644636,0.050117734819651,0.11104885488749]],[[0.010056194849312,-0.009656379930675,0.075144626200199],[-0.00290322676301,-0.15689633786678,-0.018640764057636],[-0.066085182130337,0.0069986102171242,-0.070383347570896]],[[-0.010575024411082,0.066824182868004,-0.052086926996708],[0.0205860119313,-0.014663039706647,0.11917937546968],[0.097452446818352,0.020598713308573,-0.047706853598356]],[[0.0031215446069837,0.030620040372014,-0.023279124870896],[0.044745605438948,-0.077869273722172,0.046635005623102],[0.0074784299358726,0.041922334581614,-0.038862749934196]],[[-0.05991917103529,0.097698569297791,0.0094098933041096],[-0.016881978139281,0.043261505663395,-0.013668584637344],[-0.011430840939283,-0.0056944796815515,0.0010390809038654]],[[-0.030121963471174,-0.053793791681528,-0.0020090918987989],[-0.052553050220013,0.011621381156147,0.064676620066166],[0.029732732102275,0.019512278959155,-0.10011269152164]],[[-0.11755015701056,-0.10065996646881,0.020560640841722],[0.046555008739233,-0.094725668430328,-0.069890178740025],[0.0038485652767122,0.015700899064541,-0.015422960743308]],[[-0.060321915894747,-0.050443865358829,-0.083821147680283],[-0.023532873019576,-0.046497728675604,-0.035714741796255],[-0.090093925595284,0.0012057174462825,0.026088127866387]],[[0.13870091736317,-0.064825445413589,0.021854402497411],[-0.089114643633366,0.019343363121152,-0.03168673813343],[0.040583167225122,-0.10371997207403,0.13286942243576]],[[0.019168194383383,0.10864628851414,0.00816735252738],[0.034662514925003,-0.018878661096096,-0.037193782627583],[0.059557307511568,-0.055803369730711,0.049433533102274]],[[-0.037683837115765,0.020893750712276,0.0044156764633954],[0.026498919352889,0.032513126730919,-0.018587427213788],[0.05114871263504,-0.10671602934599,-0.048754490911961]],[[0.095957778394222,-0.039153158664703,0.067307539284229],[0.02631438523531,0.014476574026048,0.10059247165918],[0.13062873482704,-0.023960890248418,-0.025682026520371]],[[0.033876162022352,0.013362453319132,0.0081755239516497],[-0.062914840877056,-0.056293480098248,0.11858949810266],[0.0444106310606,-0.019028941169381,0.064639419317245]],[[0.059350177645683,-0.008524932898581,-0.023193027824163],[0.086661711335182,0.015064395032823,-0.0011625335318968],[0.069455660879612,0.078143887221813,0.086287744343281]],[[0.07186771184206,-0.10647858679295,0.034179233014584],[-0.091101214289665,0.070578061044216,-0.044690988957882],[-0.094280332326889,0.0079056918621063,0.081024289131165]],[[-0.03577471151948,-0.027370316907763,0.10070912539959],[0.063610441982746,-0.0044937692582607,0.06734061986208],[0.032051675021648,0.0093997707590461,-0.018406035378575]],[[0.065687537193298,-0.064913652837276,-0.041262611746788],[0.026998393237591,0.022741505876184,-0.069120511412621],[0.067367143929005,0.0134447067976,0.078422099351883]],[[0.10784168541431,0.064235351979733,-0.00634511327371],[0.010645397007465,0.038587156683207,0.053377732634544],[0.038960672914982,0.093008875846863,0.061565421521664]],[[-0.035715349018574,0.065224505960941,-0.043348129838705],[-0.060226116329432,-0.021474262699485,0.057616453617811],[-0.028664145618677,0.040098085999489,0.11386050283909]],[[0.05594477802515,-0.023484889417887,-0.026674246415496],[-0.0026570339687169,-0.037181369960308,0.031407475471497],[-0.010767799802125,-0.048024494200945,-0.010573516599834]],[[-0.19899602234364,-0.016167646273971,-0.014529479667544],[0.11606865376234,-0.18998345732689,-0.13473115861416],[-0.056759472936392,0.061455100774765,-0.07532449811697]],[[-0.13704872131348,-0.14371187984943,-0.031185707077384],[-0.059018008410931,-0.15043593943119,-0.01111710164696],[-0.086855031549931,-0.10751095414162,-0.15419787168503]],[[0.078738138079643,0.034749232232571,0.13559098541737],[0.0042375870980322,-0.04940290004015,0.029113098978996],[-0.12045913934708,0.040331680327654,-0.090553984045982]],[[0.034771613776684,0.13846807181835,0.03746822476387],[0.076625324785709,0.012468723580241,0.12202572077513],[0.022997923195362,-0.019115285947919,0.087932422757149]],[[-0.038999054580927,-0.0047916593030095,-0.0063566439785063],[0.045858658850193,0.040450319647789,0.038297329097986],[0.034864157438278,0.051898878067732,0.14710393548012]],[[-0.0051282104104757,0.044615477323532,0.20942555367947],[0.21483473479748,-0.27562189102173,0.16217708587646],[0.1830780506134,0.039053563028574,-0.052933368831873]],[[-0.16310314834118,0.085008099675179,0.15099677443504],[0.13704973459244,0.056862697005272,0.029461670666933],[0.055283728986979,0.065224386751652,0.079063683748245]],[[0.065574213862419,0.067132152616978,0.060042332857847],[0.011226192116737,-0.01806603744626,0.038138695061207],[0.091170005500317,-0.010838430374861,0.0091817211359739]],[[-0.093333937227726,0.050101157277822,-0.036767046898603],[-0.036716531962156,-0.043566171079874,-0.046049986034632],[-0.038306269794703,-0.03680545091629,0.098544925451279]],[[0.082206904888153,0.043864533305168,0.0098783550783992],[0.03318190202117,0.050707507878542,0.14835058152676],[0.043290007859468,0.020553193986416,0.00091437343508005]],[[0.014409299008548,-0.014881093986332,0.12908992171288],[-0.011415666900575,-0.13735046982765,-0.036024987697601],[0.078228317201138,-0.05322439968586,0.029714114964008]],[[0.10469295084476,0.017590951174498,0.049366436898708],[-0.071928471326828,0.069601371884346,-0.096897855401039],[0.0024748672731221,0.0010316774714738,-0.22678601741791]],[[-0.031012592837214,0.047240678220987,0.043293870985508],[0.0049393293447793,-0.067144937813282,-0.042325675487518],[0.058693796396255,0.040281232446432,-0.016221841797233]],[[0.053532589226961,0.0015039735008031,-0.0031736302189529],[0.066744774580002,-0.018410151824355,-0.10470913350582],[-0.028555911034346,-0.10633415728807,-0.0008028480806388]],[[-0.082884110510349,-0.096386447548866,0.023040268570185],[0.060848452150822,-0.07038675993681,0.029754711315036],[-0.051427617669106,0.04522555693984,0.12229693681002]],[[0.13857957720757,0.032181050628424,0.070477187633514],[-0.086703911423683,-0.092426851391792,0.047587379813194],[-0.042243395000696,0.010791064240038,0.1212433129549]],[[0.058991815894842,0.025873826816678,-0.0067614791914821],[0.028255941346288,-0.013157662935555,0.015742722898722],[0.019264798611403,0.029838694259524,0.021226357668638]],[[0.0030181859619915,-0.0093638049438596,0.037686660885811],[0.022375553846359,0.032961864024401,-0.016787936910987],[0.022576374933124,0.038259625434875,-0.0042927213944495]],[[0.0034346748143435,-0.005160472355783,0.029497478157282],[-0.003805632237345,-0.024421421810985,-0.063895344734192],[-0.0060566486790776,0.043901316821575,0.025209369137883]],[[0.046975463628769,-0.083390615880489,-0.11204671859741],[0.032285589724779,0.023601073771715,-0.052681971341372],[-0.031069207936525,-0.011506607756019,0.0079905744642019]],[[0.015148717910051,-0.092679880559444,0.068373173475266],[-0.032981604337692,-0.02381725050509,0.02448458224535],[-0.00021085634944029,-0.091813549399376,0.015308989211917]],[[-0.061236705631018,-0.045899871736765,-0.027619214728475],[-0.031400129199028,-0.041248045861721,0.078279286623001],[-0.0077910530380905,-0.0055809388868511,-0.039449639618397]],[[-0.022470835596323,-0.010714565403759,-0.086096242070198],[-0.026789931580424,-0.015682095661759,-0.036278665065765],[0.049499154090881,0.041618514806032,0.099011927843094]],[[-0.23108424246311,0.00067078578285873,-0.01582750864327],[-0.26838889718056,-0.052596651017666,-0.022707279771566],[-0.16350044310093,-0.050984393805265,-0.016882359981537]],[[0.18892282247543,0.12352722138166,0.044795095920563],[0.042141605168581,-0.015112200751901,0.015970652922988],[-0.0028177695348859,0.055117256939411,0.086564160883427]],[[0.080242909491062,-0.030376246199012,-0.036767829209566],[0.010061437264085,-0.1251315176487,0.018581263720989],[-0.014606168493629,0.011146150529385,0.094859220087528]],[[-0.076718360185623,0.033293232321739,0.072445653378963],[-0.087135583162308,0.02396528981626,-0.00026848030393012],[0.019323395565152,-0.10018610209227,0.0027985058259219]],[[-0.00064723577816039,-0.13882780075073,-0.02679144218564],[0.080466650426388,0.052571721374989,0.073837578296661],[0.0097793806344271,-0.062070429325104,0.033995646983385]],[[-0.081538416445255,-0.076604902744293,0.099130913615227],[0.0082296933978796,-0.014740252867341,0.063392966985703],[0.07813935726881,0.033969733864069,0.043961245566607]],[[0.0090977540239692,0.044559746980667,-0.064692534506321],[0.010468555614352,-0.04783509299159,-0.13277217745781],[-0.05043264105916,-0.027265580371022,-0.1013380587101]],[[0.014907225966454,0.029101300984621,-0.019386164844036],[-0.11816585808992,-0.028166076168418,0.030886996537447],[-0.00094245903892443,-0.058240972459316,-0.031214473769069]],[[0.03727313876152,0.032279793173075,-0.23313197493553],[0.057741392403841,-0.017032701522112,0.068618506193161],[0.06517793238163,0.083741277456284,0.034907527267933]],[[0.038272108882666,0.055053178220987,-0.031390476971865],[-0.02677577920258,0.00010564857075224,-0.064794413745403],[0.078976109623909,-0.085018336772919,-0.027053406462073]],[[-0.024035381153226,-0.030143259093165,0.054632294923067],[-0.013107324950397,-0.07917682826519,0.06186068803072],[-0.051422420889139,-0.057992234826088,0.02899981290102]],[[0.025612348690629,0.068639859557152,0.095382176339626],[-0.042621750384569,0.032439414411783,0.061664082109928],[0.05411933735013,-0.033610261976719,0.040568348020315]],[[-0.14531303942204,0.12491199374199,-0.048586465418339],[0.056673888117075,0.03535158187151,-0.015300270169973],[0.054998643696308,-0.022641662508249,0.071480609476566]]],[[[0.018762089312077,0.048804495483637,-0.031271506100893],[0.032633882015944,0.0086367437615991,0.044639527797699],[-0.04816435649991,0.030338229611516,0.036106809973717]],[[0.059980101883411,-0.01863376237452,0.0009313698974438],[0.078654952347279,-0.04679411649704,0.029262810945511],[-0.019366648048162,0.065467514097691,-0.0626170784235]],[[-0.0223617143929,-0.035095002502203,0.0071712825447321],[0.017572252079844,0.088579170405865,-0.012162305414677],[0.077465705573559,0.01762636564672,-0.0046505802311003]],[[-0.021301034837961,0.015767524018884,0.025241866707802],[-0.068671107292175,0.015594546683133,-0.02346109598875],[0.07810215651989,-0.076577737927437,-0.066422969102859]],[[-0.020217746496201,0.02140080742538,-0.043702084571123],[0.024755675345659,-0.020297467708588,0.017189240083098],[-0.053346216678619,-0.015646290034056,0.013525488786399]],[[0.053019303828478,-0.010970743373036,-0.044106107205153],[-0.0063232905231416,-0.031088789924979,0.066612303256989],[0.041887957602739,-0.034621920436621,-0.047265831381083]],[[0.033577155321836,0.0036158442962915,0.026863796636462],[-0.043112196028233,0.038326323032379,-0.050458233803511],[-0.013309992849827,0.0034229997545481,-0.011606604792178]],[[-0.021679742261767,-0.0025900190230459,0.059300735592842],[0.012919488362968,-0.011465116403997,0.0046694590710104],[0.069066107273102,-0.081286542117596,-0.017114104703069]],[[-0.02531143464148,0.016414755955338,-0.011536953039467],[0.024159096181393,-0.0036255095619708,0.029086478054523],[-0.035133816301823,0.002539454260841,-0.0053404327481985]],[[0.062262132763863,-0.090927369892597,0.053157892078161],[0.0070579187013209,0.033026542514563,0.095950648188591],[0.10467129945755,-0.012459895573556,0.086332485079765]],[[-0.057515639811754,0.069161549210548,0.031994186341763],[-0.033404488116503,0.098254390060902,0.0097186248749495],[0.058564554899931,-0.0014587851474062,0.089597776532173]],[[-0.015280646272004,0.0029581461567432,0.010425598360598],[0.040233947336674,0.043504420667887,0.017758483067155],[0.049894966185093,0.10252204537392,0.01981863565743]],[[-0.051201958209276,0.038519058376551,-0.013986121863127],[0.024250749498606,-0.0056066648103297,0.018052980303764],[0.013455955311656,0.060104288160801,-0.027066700160503]],[[-0.042211148887873,0.022554682567716,0.025820715352893],[-0.014194756746292,-0.045448113232851,0.086094819009304],[0.077359773218632,-0.046559534966946,-0.017588082700968]],[[0.04743828997016,0.11288979649544,0.14824348688126],[-0.010444541461766,0.0790054500103,0.04821452870965],[-0.022345351055264,0.062367711216211,0.064197957515717]],[[-0.07491285353899,-0.019385313615203,0.040821712464094],[0.026002302765846,-0.0031018028967083,0.0042464737780392],[0.011930793523788,-0.021330192685127,-0.042741034179926]],[[0.013772507198155,-0.032737374305725,-0.03359080478549],[0.0025444310158491,0.0055433008819818,0.036578338593245],[-0.0053496304899454,0.063940770924091,0.04194176569581]],[[0.063168749213219,-0.0560099221766,0.043112337589264],[-0.07427579164505,0.06260173022747,-0.033395107835531],[0.0084536895155907,-0.021539619192481,0.019232032820582]],[[0.0069881682284176,-0.041630014777184,-0.029835814610124],[0.039663217961788,0.014461158774793,0.027719728648663],[0.01131915487349,0.028054460883141,0.017697619274259]],[[0.038516405969858,-0.03172155842185,-0.0016050762496889],[0.05339852720499,0.07375967502594,0.069104291498661],[-0.041521638631821,0.11964010447264,-0.020989997312427]],[[-0.06491893529892,0.038355391472578,0.015138282440603],[0.047774456441402,-0.065269835293293,0.086783178150654],[-0.027001202106476,-0.017562460154295,0.013212095946074]],[[-0.038129810243845,0.091070063412189,0.002697289455682],[0.032027650624514,-0.034818828105927,0.039292331784964],[0.012663363479078,0.1229111328721,-0.02927147783339]],[[-0.035624958574772,0.048389781266451,0.042114078998566],[0.10215740650892,-0.02914628572762,0.017618356272578],[-0.021634032949805,-0.0032634008675814,-0.031156716868281]],[[0.043649256229401,0.041703101247549,0.020496424287558],[-0.047670636326075,-0.078047312796116,-0.046611707657576],[0.011500732973218,-0.0098256273195148,-0.014497194439173]],[[-0.029657607898116,-0.027853891253471,0.054411754012108],[-0.022745041176677,-0.0025702014099807,-0.047139924019575],[0.019162349402905,0.026608085259795,-0.030207425355911]],[[0.0013219863176346,-0.037655971944332,0.036437969654799],[-0.047524385154247,-0.019308423623443,-0.018204934895039],[0.048553213477135,0.033608417958021,0.04573668166995]],[[0.0066628446802497,0.019069904461503,-0.0041434466838837],[0.040014155209064,0.046727053821087,-0.034871444106102],[0.065141133964062,-0.032782562077045,0.012871775776148]],[[-0.040025435388088,0.042582876980305,-0.037585958838463],[0.045413866639137,0.0029447413980961,0.085049539804459],[-0.044283896684647,0.050567273050547,-0.045915435999632]],[[0.071683898568153,-0.023527998477221,-0.01067041233182],[0.070812188088894,-0.01155156083405,0.042742792516947],[0.0069948127493262,-0.035979643464088,-0.024978062137961]],[[0.086570076644421,0.072747938334942,-0.035311978310347],[-0.032192341983318,0.0072964276187122,0.0014926725998521],[-0.0038007006514817,0.020265147089958,-0.027406744658947]],[[0.042601376771927,0.064148515462875,0.031907625496387],[-0.0063181268051267,0.037946701049805,-0.0034045742359012],[-0.024121459573507,0.021669283509254,-0.007387020625174]],[[-0.021433155983686,0.033030357211828,0.060274019837379],[-0.001796112046577,-0.029678197577596,-0.00026975088985637],[0.053736563771963,0.015681907534599,0.015251103788614]],[[0.023225853219628,0.074308499693871,-0.014470563270152],[0.012270090170205,-0.0052671688608825,0.092113494873047],[-0.008291145786643,-0.03085714392364,0.0094622997567058]],[[-0.016397411003709,0.0058924299664795,0.049555607140064],[-0.015023860149086,0.027253605425358,0.0054083252325654],[-0.013482601381838,-0.042203523218632,0.061905354261398]],[[0.036877427250147,-0.024106038734317,0.0027218086179346],[-0.089339464902878,-0.082381092011929,-0.0039920574054122],[0.042985439300537,-0.011540883220732,0.058474283665419]],[[0.014911665581167,0.054938063025475,0.029169622808695],[-0.018381077796221,0.019084017723799,-0.010400803759694],[0.027708856388927,-0.020565550774336,-0.046189691871405]],[[0.022294793277979,0.00098263006657362,0.035087786614895],[0.016599033027887,0.017103012651205,0.034299314022064],[0.0028742314316332,-0.01238000113517,0.017021927982569]],[[0.013551210984588,0.062243789434433,-0.026972204446793],[-0.017937429249287,-0.042885426431894,0.016919441521168],[0.10662208497524,0.0048111551441252,-0.017994346097112]],[[0.032677922397852,0.039010111242533,0.0275002066046],[0.01709059253335,0.06988837569952,0.02753690071404],[0.026752369478345,0.034328497946262,0.015865415334702]],[[0.0064073842950165,0.0090109994634986,0.020600695163012],[-0.014064131304622,0.069085985422134,-0.03750366717577],[0.037680268287659,0.035215087234974,0.046003956347704]],[[-0.048730902373791,0.049282971769571,-0.009343427605927],[-0.0080964667722583,0.042660437524319,0.023758573457599],[0.02720888145268,-0.045559566468,-0.034100092947483]],[[0.0040318742394447,0.022560169920325,0.052187882363796],[0.026710581034422,0.031692821532488,-0.0081160767003894],[-0.023563083261251,0.046895083039999,0.0092142624780536]],[[0.082527339458466,-0.045233655720949,0.063124373555183],[-0.04884161055088,0.039028823375702,0.047680031508207],[-0.003730527125299,0.0058514750562608,-0.015333981253207]],[[0.02546140179038,0.068452551960945,0.014851661399007],[0.0028545644599944,0.01214565243572,0.051869988441467],[0.050973795354366,-0.023431599140167,0.030621940270066]],[[-0.025618569925427,0.010542983189225,-0.0074972854927182],[-0.022687433287501,0.022523755207658,0.049886588007212],[0.083532139658928,0.027388790622354,0.0035188663750887]],[[0.033068124204874,0.077906578779221,-0.067737571895123],[-0.0020909602753818,0.0062640481628478,0.00059108907589689],[-0.042036306113005,-0.0040175500325859,-0.014871758408844]],[[0.020478447899222,-0.018827484920621,-0.057955414056778],[-0.0089308219030499,0.00096418964676559,0.074684135615826],[-0.0054044155403972,-0.064974881708622,0.022001408040524]],[[0.031506273895502,0.028411839157343,-0.051885608583689],[0.0069014388136566,-0.046812497079372,-0.077078856527805],[0.062499310821295,0.0031990199349821,-0.008242710493505]],[[-0.014007636345923,0.042371727526188,-0.029075419530272],[-0.095662049949169,-0.025244144722819,-0.00019224570132792],[-0.0038961260579526,0.033470872789621,0.044116385281086]],[[0.0076993177644908,0.041149813681841,0.040255557745695],[0.036184966564178,-0.034827306866646,0.014458758756518],[-0.075545430183411,0.0017167477635667,-0.016792291775346]],[[-0.032889645546675,-0.0086688864976168,-0.0067816372029483],[-0.02337221801281,0.032357163727283,0.027520714327693],[-0.0071720727719367,0.041549805551767,-0.070239283144474]],[[-0.019878903403878,-0.065202124416828,0.041559960693121],[-0.015045677311718,0.036533679813147,-0.0075610135681927],[-0.030529299750924,0.020321302115917,0.016633516177535]],[[0.0049097617156804,0.031140498816967,-0.038532737642527],[-0.074811331927776,-0.010861805640161,-0.0043680868111551],[0.068821810185909,-0.026864796876907,-0.016376091167331]],[[0.0194734595716,-0.0078283380717039,0.062147982418537],[-0.012201555073261,0.036816716194153,0.024024456739426],[0.016075097024441,0.0086205871775746,0.0032769360113889]],[[0.013682938180864,0.086361952126026,-0.011463104747236],[0.068774476647377,0.069928817451,-0.040632948279381],[-0.023923888802528,-0.0059201582334936,-0.00596261350438]],[[0.015228750184178,0.044257450848818,0.04022741317749],[-0.033496428281069,-0.001482691266574,0.0381885394454],[-0.011051255278289,0.0015463270246983,0.00087526015704498]],[[-0.066862925887108,0.014583100564778,0.029644776135683],[0.048048060387373,-0.0047747087664902,0.039450217038393],[-0.0073264669626951,-0.020297339186072,0.038145937025547]],[[0.0032955310307443,-0.012535336427391,0.031268090009689],[-0.025391824543476,0.081621862947941,0.031555324792862],[0.044505685567856,-0.094103515148163,0.044239550828934]],[[-0.027960384264588,0.081497088074684,-0.012328268028796],[0.051763612776995,-0.0071953982114792,0.0061573018319905],[-0.0026110543403774,0.032967653125525,0.012914491817355]],[[0.092068545520306,0.049612261354923,-0.12664957344532],[-0.0043279267847538,-0.047636691480875,0.057571198791265],[0.029251428321004,0.029518108814955,0.11764399707317]],[[0.11907013505697,0.038659889250994,0.076315142214298],[0.0097326673567295,0.006231477484107,-0.040691614151001],[-0.00045974570093676,0.027093168348074,-0.054330345243216]],[[0.041785005480051,-0.028863843530416,0.0086202034726739],[-0.025362221524119,-0.041780550032854,0.038315922021866],[0.036255519837141,-0.048644755035639,0.024434393271804]],[[0.040652550756931,0.073587380349636,0.040438137948513],[-0.017791489139199,0.014708401635289,-0.036325234919786],[0.0063273324631155,0.03808232024312,0.016728732734919]],[[-0.020570443943143,-0.030253410339355,0.044109728187323],[0.017870265990496,0.072692468762398,0.0016688191099092],[0.028857953846455,0.0087750107049942,0.020706737414002]],[[0.054804868996143,0.065518289804459,-1.3909775589127e-06],[0.045646864920855,-0.027846591547132,-0.0024033167865127],[-0.00169944728259,-0.0068121030926704,0.0071506486274302]],[[0.00053819653112441,0.0051622125320137,-0.013938523828983],[-0.026326900348067,0.031473264098167,-0.0060680340975523],[-0.015858074650168,0.015212891623378,0.016653889790177]],[[0.067807905375957,0.017125716432929,0.030109453946352],[0.014460874721408,-0.024918580427766,0.032824769616127],[0.01789003610611,-0.1119681969285,-0.0020884603727609]],[[0.0020960567053407,-0.01867295242846,0.022851118817925],[0.0048053432255983,0.023568296805024,0.029122449457645],[-0.00034990566200577,-0.0072133927606046,0.059664752334356]],[[0.059205431491137,0.024099055677652,-0.0061721499077976],[0.022248109802604,0.050935346633196,-0.047546185553074],[-0.021448636427522,0.044349800795317,-0.0505036637187]],[[0.027048600837588,0.012008896097541,0.020372806116939],[-0.019083535298705,0.010761921294034,-0.011344607919455],[0.016519660130143,0.0056781135499477,0.01441396586597]],[[-0.053667563945055,-0.032821651548147,0.11685851216316],[0.069887943565845,-0.075603522360325,-0.020965417847037],[0.0049401400610805,0.05378183349967,-0.010667072609067]],[[-0.018583683297038,0.012256565503776,0.028220489621162],[0.0021179046016186,-0.00093993375776336,0.065859958529472],[0.051739078015089,0.014245035126805,0.0018051232909784]],[[0.024862866848707,0.046857908368111,0.0042326501570642],[0.051528554409742,0.0054169888608158,-0.045806631445885],[-0.0047372314147651,-0.016220677644014,0.019919205456972]],[[-0.071061685681343,0.027243539690971,0.024922136217356],[-0.049246966838837,0.0096087362617254,0.04087321460247],[0.017599834129214,0.020822999998927,0.057864513248205]],[[0.020889777690172,0.020052019506693,-0.01294810231775],[2.3686501663178e-05,0.020958928391337,-0.04020594805479],[-0.011212632060051,-0.017167683690786,0.050875965505838]],[[0.045203622430563,-0.0012321538524702,-0.087586596608162],[-0.002549055730924,0.013971610926092,0.022474797442555],[0.038483045995235,0.028877420350909,0.041810587048531]],[[0.063655816018581,0.041643593460321,0.0054769958369434],[-0.0019775398541242,0.045228268951178,-0.0050603505223989],[-0.0028236994985491,-0.032789394259453,-0.013130355626345]],[[-0.016147779300809,0.052514929324389,0.061381198465824],[0.034960582852364,0.00023791719286237,0.052416775375605],[0.049503277987242,-0.017577612772584,0.046867366880178]],[[0.022426780313253,-0.021346827968955,0.0094815092161298],[0.044917657971382,-0.0011660340242088,0.0033574209082872],[-0.040606074035168,0.0099946344271302,-0.044931847602129]],[[0.035203237086535,-0.045377977192402,-0.058801304548979],[0.035889025777578,0.032631915062666,-0.013135649263859],[-0.012020518071949,0.012886445969343,-0.00083990173880011]],[[0.037545308470726,0.098343275487423,-0.016664875671268],[-0.034782215952873,-0.05859025940299,0.047372825443745],[-0.050230544060469,0.049473881721497,0.0040768766775727]],[[-0.017596812918782,-0.0088962055742741,-0.029953239485621],[-0.0042627970688045,0.094103425741196,0.017937943339348],[-0.084735848009586,0.068968489766121,0.049490537494421]],[[0.084880210459232,0.047692138701677,0.067886851727962],[0.055657792836428,0.038034595549107,0.045602265745401],[-0.038374498486519,0.0087940981611609,0.051503542810678]],[[0.05053411051631,0.014065099880099,-0.0011485922150314],[0.00058859016280621,0.035413920879364,-0.025927713140845],[-0.02406389452517,0.049614440649748,-0.051015447825193]],[[0.060254566371441,0.061720307916403,0.03022575750947],[0.024579392746091,0.021527327597141,0.047899667173624],[0.040621098130941,0.00093353918055072,0.0030417498201132]],[[-0.037802573293447,-0.034783259034157,-0.033052138984203],[0.095550864934921,0.0064335931092501,0.015499300323427],[0.028060749173164,0.057310909032822,0.0098467236384749]],[[-0.0064553297124803,0.029394578188658,0.053311742842197],[-0.080365300178528,-0.030934223905206,0.013502382673323],[0.081349454820156,-0.041756100952625,-0.0085861282423139]],[[0.049540128558874,0.038937397301197,-0.030406011268497],[-0.00071636028587818,0.0359374769032,0.0044208373874426],[-0.031108342111111,-0.040300194174051,-0.020757691934705]],[[0.052800964564085,-0.024573426693678,-0.04887842014432],[-0.059839859604836,-0.0080663254484534,0.0050175338983536],[0.016488328576088,0.054227251559496,-0.0078215142711997]],[[0.040177617222071,0.014797805808485,-0.039681497961283],[0.016276674345136,0.052683550864458,-0.0057339491322637],[0.02949839644134,0.021027045324445,-0.030959166586399]],[[-0.031402189284563,-0.050112809985876,-0.029144110158086],[0.0097344471141696,0.030957758426666,0.034679796546698],[0.09946109354496,-0.009628327563405,-0.026064563542604]],[[-0.03009900264442,0.051448982208967,0.027319708839059],[-0.036726024001837,0.021857790648937,0.012238514609635],[0.033764623105526,0.026336098089814,0.069346353411674]],[[0.016468344256282,0.077396273612976,0.035016797482967],[0.018071360886097,-0.041137032210827,0.0033104096073657],[0.0058745997957885,0.03300429880619,0.049366600811481]],[[0.014948088675737,0.10052827745676,0.0008813277236186],[-0.036463811993599,0.056073766201735,0.016033969819546],[-0.0055307485163212,-0.048244461417198,0.039165649563074]],[[0.020772624760866,0.053842835128307,-0.0085410261526704],[-0.032356824725866,-0.029159564524889,0.051552835851908],[0.0017555041704327,0.0026663418393582,0.035618115216494]],[[0.025076804682612,0.076671674847603,0.0084541933611035],[-0.018744939938188,0.0022200429812074,0.065343342721462],[0.0055618053302169,0.09001412242651,-0.016707137227058]],[[0.032396383583546,-0.060302384197712,0.026055090129375],[-0.017150545492768,0.0084500024095178,0.035091739147902],[0.0072119673714042,-0.020694943144917,-0.052386801689863]],[[0.023295033723116,0.026655742898583,-0.046458691358566],[0.015204290859401,0.070857860147953,-0.051824994385242],[0.0024331687018275,0.074215896427631,0.0074597457423806]],[[-0.043339613825083,0.0059819393791258,-0.039833929389715],[0.052713390439749,0.035978134721518,-0.050607424229383],[0.00035737294820137,0.07417106628418,0.032160099595785]],[[0.066537961363792,0.028279237449169,-0.067821763455868],[0.11382488161325,0.032914727926254,-0.029737785458565],[-0.041958089917898,-0.0085789887234569,0.0062752165831625]],[[-0.017657227814198,-0.033101554960012,-0.0091827418655157],[-0.060949772596359,0.052523713558912,0.017056485638022],[-0.054192963987589,0.023333858698606,-0.045467972755432]],[[0.0060708490200341,0.020406382158399,0.092228524386883],[0.05860547721386,0.12195421755314,-0.010202514007688],[0.01227902341634,-0.030052043497562,0.057966437190771]],[[-0.049391072243452,-0.022266134619713,0.034281007945538],[-0.0027447235770524,-0.00039794881013222,-0.064951658248901],[-0.01364194881171,0.037538573145866,0.094496637582779]],[[-0.024233782663941,-0.03619223088026,-0.048386476933956],[-0.018538530915976,-0.039510048925877,0.048548277467489],[0.02540036290884,0.051855653524399,-0.00062297395197675]],[[0.020259324461222,-0.079826839268208,0.096352502703667],[-0.044739935547113,-0.031724482774734,0.019161909818649],[0.033388871699572,0.05391214042902,0.075463660061359]],[[-0.060448531061411,-0.022353095933795,0.013774736784399],[0.0072512147016823,-0.026164153590798,-0.029107641428709],[0.026791859418154,-0.029168479144573,0.025090103968978]],[[-0.022637277841568,0.011120217852294,-0.016966987401247],[0.072588197886944,0.073058009147644,-0.004657156765461],[-0.066788926720619,0.018939893692732,-0.11954897642136]],[[0.037249304354191,-0.015812432393432,0.059057902544737],[0.088693127036095,-0.028021711856127,0.11631119251251],[0.063175119459629,-0.0053014969453216,0.012485789135098]],[[-0.049269255250692,-0.015193845145404,-0.034075226634741],[-0.01040584500879,0.010773427784443,0.02528509311378],[-0.023988898843527,0.042092997580767,-0.010241388343275]],[[-0.018165785819292,0.013540555723011,-0.0089934626594186],[0.11714173108339,-0.047973342239857,-0.026297954842448],[-0.043842133134604,0.010315063409507,-0.063776463270187]],[[0.0020989610347897,-0.056214328855276,0.023602176457644],[-0.023575708270073,-0.0051036258228123,-0.01726065762341],[0.027343299239874,0.010252927429974,-0.037166010588408]],[[0.036482080817223,0.033017735928297,-0.013102050870657],[0.0014748583780602,-0.017580397427082,0.037023108452559],[-0.045125536620617,0.062690429389477,0.0045684142969549]],[[0.0088403839617968,0.029384292662144,0.053814854472876],[-0.01660879701376,-0.033885691314936,-0.063946157693863],[-0.0032326804939657,0.039717115461826,-0.040046010166407]],[[0.04728726297617,0.0076769231818616,-0.011578984558582],[-0.064986445009708,-0.0062721194699407,0.029897397384048],[-0.0030038710683584,0.048180136829615,0.032121602445841]],[[-0.0033695646561682,-0.033222012221813,0.014645333401859],[0.040536373853683,-0.027271259576082,-0.020521948114038],[0.093506552278996,0.0087257828563452,-0.010329158045352]],[[0.015833634883165,0.016954652965069,0.083716720342636],[0.05993364751339,-0.027330426499248,-0.052016355097294],[0.06040546298027,0.067618198692799,-0.0065593370236456]],[[-0.001908821053803,-0.024000937119126,0.0086145354434848],[0.039849955588579,0.092817611992359,0.061413679271936],[0.056055389344692,-0.019485929980874,0.031400673091412]],[[0.012426672503352,0.0056875320151448,0.099654570221901],[-0.013387401588261,0.1047845184803,0.0020432488527149],[0.062725998461246,-0.06977628916502,0.047422625124454]],[[0.026148300617933,0.023926747962832,-0.009027037769556],[-0.015844793990254,-0.0002648405788932,-0.028969200327992],[0.044879298657179,-0.027412945404649,-0.053570579737425]],[[0.13262791931629,0.032775193452835,0.00063471088651568],[0.050953064113855,0.025445986539125,-0.0204115845263],[0.016679225489497,0.0056061460636556,-0.0089157866314054]],[[-0.0066896569915116,0.073832660913467,0.048217456787825],[-0.040117464959621,0.00035358982859179,-0.020813735201955],[0.019213823601604,-0.056538071483374,0.064603172242641]],[[0.02326444350183,-0.055062212049961,-0.019429322332144],[0.04542076587677,0.040084283798933,0.015408599749207],[0.028961874544621,0.0068904086947441,-0.019479233771563]],[[0.11456160247326,0.0071585508994758,-0.043309960514307],[-0.091720804572105,-0.042138963937759,-0.032616805285215],[-0.033758450299501,-0.050522398203611,0.011562084779143]],[[-0.01452159602195,-0.02014329098165,-0.0079424837604165],[0.0207932703197,-0.071005091071129,0.076200060546398],[-0.066467747092247,0.043361883610487,0.080926693975925]],[[-0.0054645230993629,0.026306342333555,-0.065995514392853],[0.0047769378870726,0.0055279843509197,0.037566591054201],[0.018004352226853,0.088784545660019,-0.035263679921627]],[[0.11142728477716,0.030377320945263,-0.032834872603416],[-0.017306664958596,0.029577860608697,-0.033322393894196],[-0.046933222562075,-0.013967540115118,-0.016214400529861]],[[-0.011342682875693,0.014597254805267,0.0057687601074576],[0.054610580205917,-0.035467397421598,-0.011464630253613],[0.028322966769338,-0.002040762687102,-0.074233904480934]],[[0.092332541942596,-0.021561117842793,-0.0028028606902808],[-0.0096046281978488,0.036689728498459,0.017411801964045],[-0.044702261686325,-0.010314792394638,-0.0094688516110182]]],[[[-0.041391354054213,-0.066228024661541,0.019602110609412],[0.0055509130470455,0.0012508935760707,-0.0066819121129811],[0.035909257829189,-0.079522341489792,0.088452354073524]],[[-0.067355379462242,-0.050240360200405,0.067114412784576],[0.02318762242794,0.086092747747898,0.043628256767988],[0.043277688324451,0.095364369452,0.0065211001783609]],[[0.026584168896079,-0.012562106363475,-0.039764449000359],[-0.044380873441696,-0.046315599232912,-0.022473128512502],[-0.10627941042185,0.058007445186377,-0.042083915323019]],[[0.01925952360034,-0.020350310951471,0.016585549339652],[0.038694970309734,0.010193510912359,-0.058006770908833],[-0.048315145075321,0.011225409805775,0.023991772904992]],[[-0.0035744393244386,-0.013834428973496,0.049764901399612],[0.02836231328547,0.051243420690298,0.055020969361067],[0.036460503935814,-0.068842716515064,-0.022208416834474]],[[0.023349782451987,0.068848289549351,0.1333197504282],[0.01028345618397,-0.023641038686037,0.071867629885674],[0.037045739591122,-0.011132432147861,0.045946054160595]],[[-0.018990274518728,-0.0034407377243042,-0.098931588232517],[0.071027286350727,-0.01844741217792,-0.08076648414135],[-0.088035352528095,-0.10392615944147,0.030815903097391]],[[0.0044408394023776,-0.055690005421638,0.049147818237543],[-0.0056408252567053,0.068972215056419,0.0030205762013793],[-0.018150953575969,0.024712642654777,-0.02968960814178]],[[-0.017228186130524,0.033869944512844,-0.070266909897327],[0.0086514018476009,0.0023972638882697,-0.023696508258581],[-0.020085282623768,-0.057297080755234,-0.04714147746563]],[[0.086827985942364,-0.0048754592426121,0.088123805820942],[-0.036498967558146,0.02203393727541,0.12612192332745],[0.047636479139328,0.012138906866312,-0.020316556096077]],[[0.0060501853004098,0.043228436261415,-0.015755983069539],[0.025075886398554,0.01107832044363,0.011854332871735],[-0.013661904260516,-0.0055992705747485,-0.02483862452209]],[[0.040378637611866,0.04347138851881,0.060558520257473],[-0.0018378614913672,0.12172140181065,-0.0023978026583791],[0.053764462471008,-0.010456018149853,0.042359076440334]],[[0.11191341280937,-0.036054968833923,0.024995731189847],[0.019337451085448,-0.00070251035504043,0.057752449065447],[0.060734890401363,-0.04416773840785,0.047805689275265]],[[-0.032911371439695,0.049116130918264,0.025978749617934],[-0.010783782228827,0.039162378758192,0.12207962572575],[0.042632237076759,-0.0087481485679746,0.019304234534502]],[[0.089398041367531,0.060305722057819,-0.012615835294127],[-0.011170330457389,0.11458294838667,-0.0010282762814313],[0.058424361050129,0.032390113919973,-0.027670312672853]],[[0.036466758698225,-0.064596094191074,0.014364547096193],[0.0024429068434983,-0.031655993312597,-0.007921046577394],[-0.012182195670903,0.021286204457283,-0.054383866488934]],[[-0.01748226583004,-0.035258390009403,0.014887295663357],[0.014219296164811,-0.048979736864567,-0.059421256184578],[-0.017970269545913,-0.01395903993398,0.0716787353158]],[[0.037314631044865,0.014011677354574,0.035580959171057],[-0.020426535978913,-0.011540447361767,-0.030779181048274],[0.013366487808526,-0.088757865130901,-0.028210002928972]],[[0.041497707366943,-0.017227189615369,0.030033182352781],[0.053797759115696,0.036980140954256,0.0012534609995782],[-0.050271108746529,0.0062225610017776,0.026698650792241]],[[-0.049567867070436,-0.083848759531975,0.0073481355793774],[0.035586189478636,-0.0047230133786798,-0.027510832995176],[0.054518755525351,-0.022184006869793,0.03738858923316]],[[0.026459608227015,-0.062202949076891,-0.054512456059456],[-0.036439877003431,0.036144889891148,0.030043933540583],[-0.066959343850613,0.013910899870098,-0.04103534296155]],[[0.03115570358932,-0.059425711631775,0.05356515571475],[0.06852825731039,0.0070949164219201,0.053497057408094],[0.087097026407719,-0.015887875109911,0.15041844546795]],[[-0.040808074176311,0.047424614429474,0.06199686974287],[0.070894278585911,0.047117091715336,-0.03254047781229],[0.050653588026762,-0.024021064862609,-0.024151315912604]],[[0.0063156331889331,0.0065545896068215,-0.09657396376133],[-0.040167912840843,-0.047834504395723,-0.037300541996956],[-0.0013470100238919,0.053395435214043,0.04051860049367]],[[0.033461503684521,0.041612055152655,-0.024470545351505],[0.039585936814547,0.055698402225971,-0.013553400523961],[0.025569338351488,-0.036183916032314,0.024960463866591]],[[-0.016291525214911,0.02117420360446,-0.011237032711506],[-0.026872087270021,0.02891162969172,0.040330301970243],[-0.013581284321845,-0.073806710541248,-0.035799659788609]],[[0.10147780925035,-0.0016557270428166,0.0065869181416929],[0.049049124121666,0.027991345152259,0.038086380809546],[0.013332123868167,0.023196196183562,0.055564917623997]],[[-0.070803746581078,-0.044054355472326,0.03245509788394],[-0.019311238080263,0.036301486194134,0.070427380502224],[0.0081608965992928,-0.012301149778068,-0.060535550117493]],[[0.019801674410701,-0.052683185786009,0.030183395370841],[-0.016624605283141,-0.023505456745625,-0.025617361068726],[0.10104186087847,-0.089048504829407,-0.05942877009511]],[[0.026310740038753,0.0024438083637506,-0.052335221320391],[0.011043344624341,-0.0070423744618893,-0.034459456801414],[0.051385745406151,0.02711995691061,-0.038867492228746]],[[-0.026838107034564,-0.0010345610789955,-0.00028442230541259],[0.020340478047729,0.04561198502779,0.00067522382596508],[-0.02256827428937,0.089261919260025,-0.004264079965651]],[[-0.032955344766378,0.050445716828108,-0.072621554136276],[-0.022608926519752,0.064125515520573,0.074282944202423],[0.028602752834558,-0.043989799916744,0.071617297828197]],[[-0.0643105879426,0.040144104510546,0.040930051356554],[-0.011146439239383,0.042189471423626,0.043341413140297],[-0.069072969257832,0.038971971720457,0.026806404814124]],[[-0.065442815423012,0.061590682715178,0.023117249831557],[0.0088176857680082,0.025329729542136,0.034409582614899],[-0.011935191228986,0.028071269392967,0.088076926767826]],[[0.032360006123781,0.0076279547065496,0.033681094646454],[-0.021277450025082,0.028895853087306,-0.054934944957495],[-0.093038648366928,-0.0012980175670236,0.011107455007732]],[[0.069712407886982,-0.022849764674902,-0.0051687983796],[0.018083278089762,0.04694988951087,-0.039330083876848],[0.056132905185223,-0.012831930071115,0.001341424882412]],[[-0.0457480289042,0.092934623360634,0.066528864204884],[-0.0089141298085451,0.005833144299686,-0.026008602231741],[-0.022274663671851,0.006644930690527,-0.097785241901875]],[[0.062433656305075,-0.051186975091696,-0.057504069060087],[0.024731835350394,-0.076872363686562,-0.017815398052335],[0.0091528855264187,0.021167309954762,0.011693813838065]],[[-0.046722959727049,0.023637942969799,0.038623370230198],[0.030085204169154,-0.015054821968079,-0.026907509192824],[0.041337952017784,-0.082659550011158,0.007069222163409]],[[-0.0042004962451756,0.010666751302779,0.050370961427689],[0.11418251693249,-0.046658918261528,0.04109562933445],[-0.045031972229481,-0.0010862238705158,0.03264107182622]],[[-0.01797890663147,-0.015778874978423,0.0023513601627201],[0.0037459523882717,0.047289200127125,-0.023449327796698],[0.017539259046316,0.004451219458133,-0.028446707874537]],[[-0.070216633379459,0.02328940294683,-0.042222704738379],[0.015221944078803,-0.039306778460741,-0.044965889304876],[0.0061697629280388,-0.055295847356319,-0.032687827944756]],[[0.021631253883243,-0.0026750522665679,-0.024625774472952],[0.0092718601226807,0.073628708720207,0.048576701432467],[0.02108558639884,-0.017463766038418,0.13114878535271]],[[0.027144497260451,-0.070621885359287,-0.0040958276949823],[-0.020793702453375,-0.0077521656639874,-0.018103525042534],[-0.032496966421604,-0.015945557504892,-0.0314030200243]],[[0.023703752085567,0.03359379991889,-0.086310155689716],[-0.093341946601868,0.036825869232416,-0.018028441816568],[-0.0073835463263094,0.020470289513469,-0.021274050697684]],[[0.045415226370096,0.008351475931704,-0.031992170959711],[0.0060895965434611,0.031548798084259,0.0024323158431798],[0.0024075056426227,0.055954147130251,-0.027279525995255]],[[0.061156149953604,0.020703639835119,0.0058720111846924],[0.0019602277316153,0.00015954137779772,0.027264265343547],[-0.010834399610758,0.019949119538069,-0.031474336981773]],[[-0.043442886322737,0.087033919990063,-0.039697960019112],[-0.025481319054961,0.020434662699699,-0.024289008229971],[0.05356464907527,0.0023201587609947,0.0095628146082163]],[[-0.041230920702219,0.026832325384021,0.075934030115604],[-0.085012927651405,0.085226081311703,-0.050045125186443],[0.074363350868225,0.044034536927938,0.09391662478447]],[[0.022901922464371,-0.050352245569229,-0.0037715022917837],[-0.028830381110311,-0.063489511609077,0.014310621656477],[0.043734148144722,-0.026456819847226,-0.00014811661094427]],[[0.015019038692117,0.0081815076991916,0.013578860089183],[-0.041203062981367,0.0083103040233254,-0.020716685801744],[0.12953600287437,-0.00081945385318249,0.062404468655586]],[[0.00067754881456494,0.031717866659164,0.022171536460519],[-0.070644691586494,-0.005718017462641,0.061323128640652],[-0.0073868161998689,0.030985422432423,0.0037308430764824]],[[-0.024088077247143,-0.020133040845394,-0.047602042555809],[0.015263229608536,-0.011449779383838,0.00073786848224699],[-0.0080063138157129,-0.031359694898129,0.018682854250073]],[[0.037832204252481,0.019532477483153,0.0074025643989444],[0.085018552839756,0.011500904336572,0.010638477280736],[-0.020534705370665,0.081194631755352,-0.0017718505114317]],[[-0.0098016140982509,-0.0018602038035169,0.028421593829989],[0.0091578783467412,0.019851179793477,-0.012333622202277],[0.11238645017147,0.029502814635634,0.0068198754452169]],[[0.043389827013016,0.01399218570441,0.065366990864277],[-0.0057641784660518,0.022023376077414,-0.016221389174461],[0.091423727571964,0.018364569172263,-0.055207546800375]],[[-0.023211352527142,-0.050687231123447,0.044377621263266],[-0.059389222413301,-0.0018569853855297,0.018879070878029],[-0.0091458102688193,0.051826722919941,-0.069060951471329]],[[0.050233788788319,-0.024508103728294,0.086677059531212],[-0.018516052514315,-0.0038964757695794,-0.054014191031456],[0.020160654559731,0.0216676723212,-0.024901889264584]],[[0.015238028019667,0.014892398379743,-0.013735779561102],[0.011408204212785,-0.071616902947426,-0.085524752736092],[-0.096374243497849,0.021072831004858,0.048304993659258]],[[0.029845679178834,0.044641647487879,0.031223548576236],[0.026291027665138,0.049075625836849,0.059082381427288],[-0.0013043453218415,-0.0015709376893938,0.052813455462456]],[[-0.048449158668518,0.0040791048668325,-0.040329050272703],[0.0052022477611899,0.043949455022812,0.05424427613616],[0.10598314553499,0.0026717178989202,0.014495052397251]],[[-0.098000481724739,-0.038265906274319,0.048652045428753],[-0.052184268832207,-0.0041598649695516,0.004400045145303],[-0.021801481023431,-0.008828854188323,-0.014355833642185]],[[0.039997261017561,0.055225770920515,0.087180316448212],[0.069834999740124,0.020443934947252,0.03249729424715],[0.0023617821279913,-0.0040257880464196,-0.044638238847256]],[[-0.0091639198362827,0.029819659888744,0.01521466113627],[-0.0018710199510679,-0.078852072358131,0.061795607209206],[0.039872411638498,-0.0041803433559835,0.053013768047094]],[[-0.026138344779611,0.1006542891264,0.06511102616787],[0.023194128647447,0.0063574956730008,-0.088961519300938],[0.015181782655418,0.02068792283535,0.055132828652859]],[[0.046615552157164,-0.028959451243281,-0.033638514578342],[0.005930463783443,-0.058527022600174,-0.10475327819586],[0.077902369201183,0.00069913442712277,0.01732038334012]],[[-0.019426940008998,0.097474373877048,-0.030332464724779],[0.05864342302084,0.14007359743118,0.052822027355433],[-0.052175719290972,0.080066561698914,0.059204079210758]],[[0.056220550090075,0.072117671370506,-0.01199490018189],[-0.034446138888597,0.096820622682571,-0.016918137669563],[0.077232986688614,0.024532031267881,0.014238769188523]],[[0.01151820179075,-0.038545355200768,-0.036768164485693],[-0.026385912671685,0.038755651563406,-0.085302144289017],[0.014192187227309,0.036674279719591,0.073309622704983]],[[-0.0036301291547716,0.038034863770008,0.030003445222974],[0.05593067035079,0.034411005675793,0.036498446017504],[0.018357325345278,-0.01597885042429,-0.025854015722871]],[[-0.0030816013459116,-0.0096418084576726,0.0084066679701209],[0.011299418285489,0.0033149998635054,0.0065075308084488],[0.00020036088244524,0.014922454021871,-0.0017168677877635]],[[-0.069290012121201,-0.06103103980422,0.07026993483305],[0.0064234910532832,0.046555146574974,-0.05001624673605],[0.059554249048233,-0.013082956895232,0.064880795776844]],[[0.062008757144213,-0.026368098333478,0.021557586267591],[0.066434398293495,0.041920956224203,0.061175465583801],[-0.045442249625921,0.074421018362045,0.060903359204531]],[[0.10093791037798,0.025470802560449,0.062042601406574],[-0.054838396608829,0.032116267830133,0.080706059932709],[-0.031486302614212,0.0053257355466485,0.079051025211811]],[[-0.047585241496563,0.01378570497036,-0.011820154264569],[0.0088374242186546,-0.0007638712413609,-0.029664557427168],[0.11459436267614,-0.013758879154921,0.0072124907746911]],[[0.030820231884718,0.055315114557743,0.042307414114475],[-0.017529604956508,0.015649259090424,0.056976560503244],[0.01470634713769,0.018747353926301,-0.051458869129419]],[[0.062734954059124,0.0066907424479723,0.036331929266453],[-0.063200682401657,-0.020761795341969,-0.00017014177865349],[0.10951688885689,-0.012694917619228,0.028099836781621]],[[-0.066120214760303,-0.0022700782865286,0.017730770632625],[0.038969505578279,0.032425541430712,0.082715041935444],[0.012248650193214,0.040965858846903,0.026221496984363]],[[0.028709171339869,-0.040982130914927,-0.031117722392082],[0.0055140489712358,-0.01193499751389,-0.045252237468958],[-0.0084139127284288,-0.036929316818714,0.029148506000638]],[[-0.067571252584457,0.020065056160092,-0.088795177638531],[0.010949598625302,0.037263721227646,0.023405358195305],[-0.045373026281595,0.060232106596231,-0.045543983578682]],[[0.085754863917828,0.065538607537746,0.065146431326866],[0.013872896321118,0.045745063573122,-0.021163567900658],[-0.00099872204009444,0.063117727637291,0.0095622036606073]],[[-0.001158008701168,-0.019006820395589,-0.0010247221216559],[0.012276324443519,-0.047565080225468,-0.034064669162035],[-0.035267390310764,-0.024024702608585,-0.0071733263321221]],[[-0.041741605848074,-0.024712134152651,0.03262697905302],[-0.0086916564032435,-0.022966599091887,-0.038272399455309],[-0.036193590611219,0.017532477155328,-0.012800528667867]],[[0.073953375220299,-0.018019588664174,0.034920807927847],[0.02817946113646,0.070642560720444,-0.026178536936641],[0.0048674885183573,0.0094388388097286,-0.011317679658532]],[[-0.0077882292680442,-0.028017792850733,0.043714769184589],[-0.017728319391608,0.030620228499174,0.049401596188545],[-0.042784117162228,-0.0069954246282578,0.12344283610582]],[[0.033426880836487,0.051216658204794,0.0063271834515035],[0.0028911519329995,-0.01181323081255,0.023012420162559],[-0.018505733460188,0.079659134149551,-0.0020513844210654]],[[0.022800410166383,-0.092258781194687,0.041263274848461],[-0.029967240989208,-0.025774508714676,0.053466804325581],[0.043224208056927,0.060814127326012,0.026843789964914]],[[-0.030020320788026,0.04935647174716,-0.004158983938396],[0.08422476798296,0.063705712556839,-0.030061479657888],[0.014420732855797,0.053902842104435,0.015833806246519]],[[-0.030254572629929,-0.014279239811003,-0.020017875358462],[-0.032210141420364,-0.035119708627462,-0.02570803835988],[0.015496224164963,-0.045604381710291,-0.061424110084772]],[[-0.04883936047554,-0.041377566754818,-0.054279051721096],[-0.0082050813362002,0.016727417707443,0.085523672401905],[0.058361496776342,0.031828675419092,0.0038009770214558]],[[0.010643226094544,0.019397201016545,0.071738302707672],[-0.020824648439884,0.034538153558969,0.021891249343753],[-0.021560514345765,0.061418082565069,0.060926176607609]],[[0.0013177556684241,0.053390994668007,0.018988212570548],[0.026515131816268,0.087306410074234,0.0060290382243693],[0.093328319489956,0.017941122874618,-0.01519095338881]],[[-0.0337207429111,-0.006094919051975,0.033497214317322],[-0.028882993385196,-0.031459014862776,-0.02991428412497],[0.016933221369982,-0.015439616516232,0.0065339687280357]],[[0.040916204452515,0.055022694170475,-0.061533689498901],[-0.011574381031096,-0.024573497474194,0.059790443629026],[-0.12738020718098,0.037109185010195,0.076614625751972]],[[-0.027730192989111,0.042633812874556,0.0045192413963377],[-0.058281876146793,0.026139391586185,0.026261670514941],[0.027961168438196,0.088351599872112,0.023731857538223]],[[-0.088229104876518,-0.059817120432854,0.042263995856047],[-0.035364516079426,-0.028738694265485,0.024738270789385],[0.064196266233921,0.026670342311263,0.01448957528919]],[[-0.074471563100815,0.08246411383152,0.0084073897451162],[0.082710295915604,-0.028719326481223,0.073240704834461],[0.024969611316919,-0.005450279917568,-0.014742953702807]],[[-0.005422449670732,-0.009227579459548,0.041526425629854],[0.035599134862423,0.056804034858942,0.02458069473505],[0.12215176969767,0.036282196640968,0.038483031094074]],[[0.022025741636753,-0.026832973584533,0.024656130000949],[0.013956884853542,0.017577802762389,0.068513214588165],[-0.018501738086343,-0.01075017824769,0.013136570341885]],[[-0.01863388158381,0.035321667790413,0.05315250903368],[-0.026666352525353,0.04710890352726,-0.0026927294675261],[-0.045388657599688,-0.05254115536809,0.0023695563431829]],[[-0.050388932228088,0.047397546470165,-0.040782533586025],[0.048857368528843,-0.023045348003507,0.021355634555221],[-0.030677864328027,0.086787529289722,-0.013150232844055]],[[0.0061861593276262,-0.014171618968248,0.036541182547808],[0.0040938588790596,0.085142597556114,-0.015844168141484],[0.051099680364132,-0.0031960427295417,-0.0034530069679022]],[[0.045792397111654,0.0056635797955096,0.0026654296088964],[0.094551399350166,0.053112719208002,0.010037961415946],[-0.050272736698389,0.04617565497756,0.0017614522948861]],[[0.049650352448225,0.026893619447947,0.026429459452629],[0.033868674188852,0.0060885897837579,0.0092134280130267],[0.0028742658905685,-0.019222944974899,0.016849720850587]],[[0.0056948233395815,0.02496499940753,0.0026235268451273],[0.031924143433571,0.064273849129677,0.020002812147141],[0.014904052950442,0.065130583941936,0.0281175468117]],[[-0.051327746361494,0.025640077888966,-0.056187313050032],[-0.038739521056414,0.063181586563587,0.02681146748364],[0.033517349511385,0.099794127047062,0.054299283772707]],[[0.037675321102142,0.080766715109348,-0.026952385902405],[0.0074708014726639,0.040099613368511,0.0083891311660409],[0.078223630785942,0.062214892357588,0.039616815745831]],[[0.030199216678739,0.06585006415844,-0.00082360371015966],[0.026867035776377,-0.021129488945007,0.018844062462449],[-0.017535474151373,-0.012121033854783,0.0055937371216714]],[[0.062126703560352,0.041902486234903,-0.015926701948047],[0.0019152330933139,-0.0041763805784285,0.095188662409782],[0.070851750671864,0.060708653181791,0.054675310850143]],[[0.016004610806704,0.0085391905158758,0.038649532943964],[-0.012224545702338,0.046129018068314,0.032288860529661],[-0.010296911001205,0.031747158616781,-0.057381831109524]],[[0.010184249840677,-0.041615422815084,-0.0089109661057591],[-0.06465395539999,0.0050227851606905,0.034219264984131],[-0.021401958540082,0.038987785577774,0.0092228502035141]],[[0.017650214955211,-0.0001985372218769,0.085512593388557],[0.0087123028934002,0.0050750938244164,0.04110200330615],[0.031697105616331,0.021953541785479,-0.041327629238367]],[[-0.074218034744263,-0.022966301068664,0.0075970557518303],[-0.02453457005322,0.12320701032877,-0.046614520251751],[0.063887841999531,0.066788591444492,-0.10939039289951]],[[0.00056409044191241,-0.034295096993446,-0.039339579641819],[0.012948214076459,0.078839063644409,-0.053271424025297],[0.0094484528526664,-0.035663064569235,-0.10337787866592]],[[0.07110521197319,-9.8416159744374e-05,-0.0052952072583139],[-0.045837726444006,-0.072978042066097,0.085002392530441],[-0.061710130423307,0.0047235367819667,-0.029976604506373]],[[0.025962401181459,0.0068362071178854,-0.018643468618393],[0.0062708309851587,0.010163242928684,-0.04581456631422],[-0.028058720752597,0.0037386200856417,0.020656058564782]],[[0.012792251072824,-0.062999740242958,0.062845565378666],[0.035998627543449,0.01611851900816,0.025607397779822],[0.058692343533039,0.05440429225564,-0.0084177013486624]],[[0.013524839654565,0.031971503049135,0.06391267478466],[-0.063964106142521,0.06176270917058,0.019005278125405],[0.014473620802164,-0.064460530877113,0.028039949014783]],[[-0.039928928017616,-0.0067493603564799,-0.035386174917221],[-0.0078559294342995,0.0029890816658735,-0.019163087010384],[0.07122541218996,0.0077854245901108,0.024133358150721]],[[-0.0378822311759,0.020662249997258,-0.083802938461304],[0.0013745480682701,-0.027146674692631,-0.0091767767444253],[-0.038330186158419,-0.018660921603441,-0.036112859845161]],[[-0.047728206962347,-0.096555829048157,-0.047315653413534],[0.023406326770782,0.046404469758272,-0.013283188454807],[0.042300999164581,0.060798097401857,-0.051613431423903]],[[0.049740824848413,-0.025939157232642,0.070367522537708],[0.044372368603945,-0.026828110218048,0.022880371659994],[0.067018710076809,0.07482885569334,0.0072278077714145]],[[-0.097013168036938,-0.038939204066992,0.054553750902414],[0.038199491798878,0.044648215174675,0.0029101537074894],[0.069081075489521,-0.002962086815387,-0.008365897461772]],[[-0.043207913637161,0.048130042850971,0.00038994732312858],[0.033912990242243,-0.034017775207758,0.029786165803671],[-0.032809067517519,0.066237211227417,0.0092482501640916]],[[0.0097993984818459,0.04593700543046,0.054881937801838],[-0.033296510577202,0.051069337874651,0.082628473639488],[0.0074645127169788,0.071109049022198,-0.0064876982942224]],[[-0.031057570129633,-0.0065001421608031,0.030101543292403],[0.013675822876394,0.049306783825159,-0.008151875808835],[-0.11972366273403,0.030134974047542,0.054868776351213]],[[0.0062008677050471,0.0037239100784063,-0.047606535255909],[0.083430044353008,0.074252367019653,0.054878707975149],[-0.020758146420121,0.063250698149204,0.032536722719669]],[[-0.059564806520939,-0.015273327939212,-0.0012330134632066],[-0.10748001933098,-0.030996242538095,0.019234623759985],[-0.027276329696178,0.048780702054501,0.0048195822164416]]],[[[-0.0045965532772243,0.10057773441076,0.043021697551012],[-0.0072145005688071,-0.0451087243855,0.027030225843191],[0.020855400711298,0.035707093775272,0.029869029298425]],[[-0.10875793546438,0.031605437397957,-0.073904782533646],[0.014412592165172,0.0064787259325385,-0.04550939053297],[0.07361002266407,-0.0073875207453966,0.011261488310993]],[[8.3649192674784e-06,-0.066561847925186,0.021339079365134],[-0.020715104416013,0.0098876236006618,0.011284652166069],[0.012067476287484,0.0270015001297,-0.031510461121798]],[[-0.0013091336004436,0.011325737461448,0.0085985353216529],[-0.00077627570135519,0.075546413660049,0.082434438169003],[-0.021419364959002,0.015830256044865,0.026872999966145]],[[0.023495243862271,0.034543197602034,-0.12992051243782],[0.030222969129682,-0.10035359114408,-0.060576915740967],[-0.041813667863607,0.0505007840693,0.026953220367432]],[[-0.034639988094568,0.11163537949324,0.01595525816083],[0.0068866107612848,-0.042147934436798,0.049721550196409],[0.018995756283402,0.024287648499012,0.015286254696548]],[[0.055381715297699,-0.019995838403702,-0.040538679808378],[0.023889156058431,0.016217835247517,-0.027340099215508],[-0.011716493405402,-0.049226496368647,-0.065422683954239]],[[-0.033952139317989,0.01251953933388,0.044064588844776],[0.023398499935865,-0.012061131186783,0.02165612205863],[0.031296096742153,-0.063295297324657,-0.026395762339234]],[[0.0022787149064243,0.014736630022526,0.01780641078949],[-0.052793100476265,-0.0015896274708211,-0.01931469142437],[0.022573627531528,-0.024158155545592,0.075716480612755]],[[-0.025144830346107,0.053357020020485,0.08388114720583],[0.034337349236012,0.13394366204739,-0.026076007634401],[0.074710972607136,0.019107634201646,0.040080513805151]],[[-0.028207443654537,-0.0057239849120378,0.015846805647016],[0.079682737588882,0.012554386630654,0.062280025333166],[-0.010174653492868,-0.07371324300766,-0.010803654789925]],[[0.034372039139271,0.06240663304925,0.010319923050702],[-0.030413864180446,-0.018632620573044,0.037164807319641],[0.070896834135056,0.022065494209528,0.0039210091345012]],[[0.058487020432949,-0.011055258102715,-0.068809658288956],[0.024878341704607,-0.041112460196018,0.075590312480927],[-0.072315484285355,0.0027355721686035,-0.017428543418646]],[[0.0075303888879716,0.055891990661621,-0.0035097151994705],[0.069849863648415,-0.029293140396476,0.02543668076396],[0.082592286169529,0.03376941382885,0.09907828271389]],[[0.018901811912656,0.13679544627666,0.077196918427944],[0.033505104482174,0.10573832690716,0.0091436943039298],[0.11114060878754,0.016534488648176,0.10747543722391]],[[-0.048939477652311,0.012386314570904,-0.070991314947605],[-0.080777503550053,-0.048095993697643,0.031410351395607],[0.033920232206583,-0.063991047441959,-0.047983154654503]],[[0.040909547358751,-0.00067965273046866,0.031259324401617],[-0.015072395093739,0.088838286697865,0.035445686429739],[-0.0085018491372466,0.0035892832092941,0.020407361909747]],[[-0.0017536694649607,0.045652229338884,0.0014951990451664],[-0.011229161173105,-0.079955190420151,0.025622876361012],[0.086054272949696,0.035343553870916,0.042429178953171]],[[-0.0048008011654019,0.02589362859726,0.0079101081937551],[0.0019903532229364,-0.016918275505304,0.083609044551849],[0.010930635966361,-0.0078603541478515,0.016146773472428]],[[0.046977300196886,-0.023079732432961,0.03729784861207],[-0.031705752015114,0.050686877220869,0.02968660928309],[0.036417186260223,0.033629428595304,0.056928802281618]],[[0.097097732126713,-0.021808994933963,-0.015280495397747],[0.0066706528887153,0.028019417077303,-0.082195848226547],[0.013291352428496,0.0058061932213604,-0.038263060152531]],[[-0.0094840582460165,-0.021447584033012,0.09064007550478],[0.053084079176188,0.010772385634482,0.060568828135729],[0.037746973335743,0.052987776696682,0.067205958068371]],[[-0.00013207050506026,0.041935101151466,-0.088182203471661],[-0.0075762895867229,0.041659463196993,-0.051552094519138],[-0.069624088704586,-0.058652117848396,0.060711294412613]],[[0.11219808459282,-0.026036193594337,-0.0004871437267866],[0.069232955574989,0.0060482937842607,0.028063816949725],[0.10988000035286,-0.044820290058851,0.014314642176032]],[[-0.0049855634570122,0.032961715012789,0.019604803994298],[-0.0084129413589835,-0.010430445894599,0.018152210861444],[0.058346476405859,-0.017035191878676,0.023761622607708]],[[-0.071895852684975,0.0035594454966486,0.036425553262234],[0.023217532783747,-0.016824200749397,-0.0092668067663908],[-0.014962148852646,-0.038087278604507,0.014714037999511]],[[0.10645112395287,0.034663815051317,-0.078458853065968],[-0.0065839462913573,0.036044422537088,0.012205495499074],[-0.00021313052275218,-0.034519698470831,0.0057671791873872]],[[-0.0064670387655497,0.0016086685936898,0.018373463302851],[0.057428132742643,-0.023305432870984,-0.008627207018435],[0.037160880863667,0.035239592194557,-0.030073782429099]],[[0.014501341618598,-0.00036574239493348,0.043453197926283],[-0.048859521746635,0.075541354715824,0.061860918998718],[0.031643863767385,-0.036488987505436,0.02825702726841]],[[-0.036919381469488,-0.027795609086752,-0.024633878841996],[0.041703086346388,0.0048608081415296,0.0121896173805],[0.01073688827455,-0.014689267612994,-0.013593989424407]],[[0.040007449686527,0.037396691739559,-0.012724844738841],[0.014520570635796,0.015612482093275,0.054872084408998],[0.040319990366697,0.066096402704716,0.0017475043423474]],[[0.037182688713074,-0.068643122911453,0.02793800458312],[-0.054499786347151,0.0072015020996332,-0.017778221517801],[0.016517248004675,-0.095111757516861,0.049913205206394]],[[-0.0067471233196557,-0.044147066771984,0.02053252980113],[-0.016706194728613,0.0088182939216495,0.040096659213305],[-0.094287469983101,0.035632565617561,0.10797627270222]],[[0.068827345967293,0.063842542469501,0.038352277129889],[-0.0032510624732822,0.061821851879358,-0.046481262892485],[0.028327260166407,-0.029423635452986,0.079473659396172]],[[0.056757971644402,0.0072034918703139,-0.0040706656873226],[0.084659688174725,0.0061485450714827,0.078370243310928],[0.058763675391674,0.0011325831292197,0.031401894986629]],[[-0.05151678621769,-0.067562833428383,-0.022317329421639],[-0.035077322274446,-0.099839180707932,-0.062695249915123],[0.024802340194583,0.02682070247829,0.031999137252569]],[[-0.048849228769541,-0.04325383156538,0.00073099200380966],[0.029356528073549,-0.0021172256674618,-0.024701548740268],[0.057759549468756,-0.0077520059421659,-0.027394261211157]],[[0.0056398250162601,0.070435613393784,-0.021420031785965],[-0.042969640344381,0.0011029141023755,-0.038885582238436],[0.019099859520793,-0.0014319294132292,-0.089180491864681]],[[0.035341549664736,0.097283102571964,-0.021405477076769],[0.018708391115069,0.11073112487793,-0.035427872091532],[0.04275057092309,-0.057413462549448,0.02056685090065]],[[0.072395443916321,-0.016987456008792,0.054574504494667],[0.0069661005400121,-0.065268635749817,0.072714649140835],[0.031574096530676,-0.02346576564014,0.053503435105085]],[[0.041035819798708,-0.0013535806210712,-0.031037531793118],[0.0052985767833889,0.037004426121712,0.037451963871717],[0.030155560001731,-0.056523650884628,-0.079241968691349]],[[0.048576217144728,0.0046478360891342,-0.0025780713185668],[0.063681967556477,-0.025561403483152,0.031443931162357],[-0.0027355102356523,-0.018101345747709,0.0018302341923118]],[[0.056445546448231,-0.0018554348498583,-0.015249725431204],[0.034582443535328,0.078104689717293,0.037915501743555],[0.091809511184692,-0.00040390575304627,-0.022416919469833]],[[-0.053564850240946,0.0036364740226418,0.016133224591613],[0.001468030968681,0.003463861066848,0.028071818873286],[0.0092523284256458,-0.039714671671391,-0.017607102170587]],[[-0.10824784636497,0.019361156970263,0.08618825674057],[-0.015771532431245,-0.0062012439593673,-0.022679213434458],[0.010541153140366,-0.044380344450474,-0.004999783821404]],[[-0.018284356221557,0.078073680400848,-0.04020419716835],[0.10164358466864,0.0047561773099005,0.076797671616077],[-0.024069767445326,0.051673050969839,0.036265417933464]],[[0.01898599602282,-0.034241899847984,0.056200385093689],[0.021911507472396,0.031878601759672,-0.049269217997789],[-0.0031703838612884,-0.050549559295177,0.055427983403206]],[[0.040134899318218,0.033285342156887,0.01091848872602],[0.090600669384003,0.094648793339729,0.018112262710929],[0.019038379192352,-0.036788415163755,0.028776593506336]],[[-0.022632870823145,-0.018557390198112,0.039681553840637],[-0.067934222519398,-0.036051962524652,0.010591825470328],[0.025694547221065,-0.044712446630001,0.044869631528854]],[[-0.017607243731618,0.040356505662203,-0.050042789429426],[0.0074572511948645,-0.0012813274515793,0.035515356808901],[-0.052143655717373,0.034544009715319,-0.034311547875404]],[[-0.025089535862207,-0.027326578274369,0.066053219139576],[0.052696112543344,-0.021558225154877,0.039034031331539],[0.042440086603165,-0.05712328851223,-0.049840182065964]],[[-0.0067572137340903,-0.00087628053734079,-0.041244525462389],[0.076305538415909,-0.0097352024167776,-0.006762454751879],[0.043609835207462,0.035882942378521,-0.018613999709487]],[[0.049055155366659,-0.0001674095983617,-0.027710821479559],[-0.0072980793192983,0.042611308395863,0.00029402843210846],[0.034039068967104,-0.024110088124871,-0.037900384515524]],[[0.11900874227285,0.026719447225332,-0.0011974646477029],[0.025114085525274,0.027224415913224,0.01873105764389],[0.10316415131092,0.014698513783514,-0.010555192828178]],[[0.06415743380785,0.01803339831531,-0.015587604604661],[0.077638201415539,0.019476974382997,0.036054413765669],[-0.041570872068405,-0.082758419215679,0.014073618687689]],[[-0.034856669604778,-0.020086508244276,0.062363658100367],[-0.013934651389718,0.0039683636277914,0.067369788885117],[0.037582591176033,-0.04475586861372,-0.022501530125737]],[[-0.065228573977947,-0.076988786458969,0.023272655904293],[0.044332638382912,-0.01747528091073,-0.024501187726855],[0.023533310741186,0.0060336804017425,0.029144715517759]],[[-0.0089525524526834,0.025829510763288,-0.027000982314348],[-0.005333062261343,0.030235949903727,0.093413963913918],[-0.054391212761402,0.088938117027283,-0.01460983697325]],[[-0.019454116001725,0.0094846040010452,0.083854183554649],[-0.022580113261938,-0.0083608338609338,-0.0066987727768719],[0.087845899164677,0.074134536087513,0.045545373111963]],[[-0.014786325395107,-0.0086741615086794,-0.014455104246736],[-0.10942488908768,0.028862856328487,0.062309883534908],[0.015878137201071,-0.017359847202897,-0.01199393812567]],[[-0.010769349522889,-0.0099493162706494,-0.03449322283268],[-0.070893459022045,-0.027832485735416,0.01224431488663],[-0.034038323909044,0.032180089503527,-0.062891058623791]],[[0.032390888780355,0.01598509401083,-0.018228465691209],[0.060599710792303,0.05077375844121,0.029101496562362],[-0.02657900378108,-0.028008697554469,0.030786158517003]],[[0.036560144275427,-0.0075678420253098,0.056107744574547],[-0.014413990080357,0.02914479188621,0.0225426889956],[-0.023739216849208,0.065190747380257,-0.015759944915771]],[[-0.033833649009466,0.034521207213402,0.05076190456748],[0.058026485145092,0.08026409894228,-0.01911311596632],[-0.0025594283360988,-0.038459144532681,-0.007285671774298]],[[0.012044180184603,0.0027510668151081,-0.00057265459327027],[0.054821502417326,-0.033269427716732,-0.0045256931334734],[0.095855996012688,0.0018853716319427,-0.00045103373122402]],[[-0.012677052989602,0.020093001425266,0.021428413689137],[-0.015609410591424,0.03976571187377,0.076599635183811],[0.01136589050293,-0.047278936952353,-0.011057877913117]],[[0.069427147507668,0.066856697201729,0.022222008556128],[0.011352830566466,-0.02420886233449,0.005581779871136],[0.044450916349888,0.047834638506174,0.020218409597874]],[[0.017146799713373,0.014299226924777,0.077162742614746],[0.06421422213316,0.037871919572353,-0.076367236673832],[-0.025214781984687,-0.016163690015674,0.054798163473606]],[[0.024752432480454,-0.053853332996368,0.0028276806697249],[0.054218634963036,-0.020832531154156,-0.024902911856771],[0.0095177805051208,-0.010155350901186,0.068987816572189]],[[0.06467179954052,0.039465583860874,0.024783940985799],[0.01270461641252,0.022521736100316,0.0068397452123463],[0.011179409921169,-0.017711337655783,-0.028776498511434]],[[0.054546058177948,-0.0098252519965172,0.018906008452177],[0.05888618901372,-0.011759141460061,0.047711223363876],[-0.04587696492672,-0.015779474750161,0.019317790865898]],[[0.028493050485849,0.091751098632812,0.085268050432205],[0.0074593359604478,0.024234468117356,0.040176201611757],[0.06853211671114,-0.059020947664976,0.090064637362957]],[[-0.024640450254083,0.064290300011635,0.0025714919902384],[0.04659878462553,-0.019008664414287,0.039576485753059],[0.095198780298233,0.064644806087017,0.043934296816587]],[[0.020050294697285,0.0748390853405,-0.079636804759502],[-0.0012933729449287,0.1218413412571,0.047268062829971],[-0.047336537390947,-0.050597090274096,0.050249442458153]],[[-0.075266987085342,-0.040307480841875,0.0056156856007874],[-0.067407548427582,0.016298478469253,0.024076241999865],[0.032636601477861,0.02718261256814,0.01047355029732]],[[-0.030374670401216,0.029163816943765,0.065002575516701],[0.0013437800807878,-0.0038406734820455,0.0016468858812004],[0.0001555191265652,0.0025675846263766,0.014271953143179]],[[-0.069041535258293,-0.042096994817257,0.0034961628261954],[-0.079866267740726,0.0016651201294735,-0.00021600925538223],[0.036749623715878,-0.02260772138834,-0.034434642642736]],[[0.0062475996091962,0.045535482466221,-0.014441070146859],[0.013371084816754,0.053638786077499,0.0096625201404095],[0.053176838904619,0.013935842551291,0.023145960643888]],[[0.040862865746021,-0.054267499595881,-0.058593850582838],[0.041180778294802,0.010621541179717,0.010241489857435],[0.023257987573743,0.0099154189229012,-0.03135571628809]],[[-0.00404744874686,0.040994204580784,0.043901063501835],[-0.099737524986267,-0.021342584863305,-0.027217281982303],[-0.03379887714982,-0.012093849480152,-0.014051029458642]],[[0.041392896324396,0.0062063583172858,-0.046474106609821],[0.029336303472519,-0.0070004179142416,-0.0080487793311477],[0.019507834687829,0.071679875254631,-0.049623169004917]],[[-0.036459725350142,-0.011275505647063,0.011215696111321],[0.021851625293493,-0.062935508787632,-0.023963183164597],[0.085424423217773,0.029161443933845,0.02247573249042]],[[0.030456202104688,0.010813482105732,0.00071452977135777],[0.078643344342709,-0.051545444875956,0.0074172439053655],[0.0014526853337884,0.069381937384605,0.031773567199707]],[[0.061997052282095,0.07222606241703,-0.0065187397412956],[0.075817860662937,0.06847121566534,-0.046721652150154],[-0.063376240432262,0.060281969606876,0.018202563747764]],[[-0.042073085904121,-0.030202755704522,-0.028352443128824],[-0.043499764055014,0.04888616129756,0.051811587065458],[0.06690226495266,0.070141278207302,0.027037646621466]],[[-0.017543705180287,-0.076675787568092,-0.042175263166428],[0.075217999517918,-0.036616090685129,-0.012573166750371],[0.071293517947197,-0.061897482722998,0.059348348528147]],[[0.0080958036705852,-0.021470019593835,-0.011898048222065],[0.045601688325405,0.061824135482311,-0.070760525763035],[0.044250283390284,-0.05090357363224,0.017899656668305]],[[0.14662034809589,0.011238613165915,0.049644347280264],[0.043239828199148,0.0081740105524659,0.021720953285694],[-0.00068058219039813,0.0005133492522873,0.050880443304777]],[[0.0092152822762728,0.060331217944622,0.021157959476113],[0.027227515354753,-0.012137201614678,0.020308228209615],[0.12092214077711,-0.015304990112782,-0.053085878491402]],[[0.010261572897434,0.015900202095509,0.022086201235652],[-0.049406871199608,0.1023004502058,-0.017751589417458],[0.084403477609158,0.053551349788904,-0.034472741186619]],[[-0.011101952753961,0.022259326651692,-0.044998005032539],[0.028950715437531,-0.019013838842511,0.024697819724679],[-0.00039866351289675,0.032680105417967,-0.019517730921507]],[[-0.053143590688705,-0.047182604670525,0.043865039944649],[0.0052865282632411,0.011624915525317,0.06626420468092],[0.089266769587994,-0.010762978345156,-0.035679902881384]],[[-0.017799712717533,0.069764189422131,-0.11396176367998],[-0.025392210111022,0.041975948959589,0.065057516098022],[-0.099521420896053,-0.054654277861118,-0.065121188759804]],[[-0.088464066386223,0.037659581750631,-0.043573301285505],[-0.011658790521324,0.1080859452486,-0.030182030051947],[-0.010169522836804,0.0091409161686897,0.0585762783885]],[[0.0092367241159081,-0.0099014565348625,-0.051736149936914],[0.041919011622667,0.0080485604703426,0.014269569888711],[0.01714887842536,0.038648527115583,0.049180570989847]],[[0.039194516837597,0.03034058958292,-0.099247269332409],[0.034464050084352,-0.036821074783802,0.063528157770634],[-0.027825096622109,0.032665729522705,-0.0051119863055646]],[[0.05091892555356,3.5334465792403e-05,0.025915028527379],[0.012833276763558,-0.031694337725639,-0.012674571946263],[0.053299512714148,-0.060133520513773,0.046540401875973]],[[-0.019753124564886,0.014771098271012,0.065107814967632],[-0.011217016726732,0.05613960698247,0.066284403204918],[0.07515424489975,-0.020545899868011,0.01740138977766]],[[0.024877728894353,0.057180784642696,-0.056502249091864],[-0.016246978193521,-0.010738408192992,0.026552917435765],[0.023837523534894,-0.0066197249107063,0.034601744264364]],[[0.0048164548352361,0.00033620733302087,0.033663775771856],[0.01945129968226,0.018328396603465,-0.021731561049819],[0.030035324394703,-0.02550945058465,-0.070774674415588]],[[-0.048594798892736,0.011733096092939,-0.031687743961811],[0.078745476901531,-0.005877623334527,0.020340306684375],[0.020142294466496,0.0092939054593444,0.031418357044458]],[[0.0034228635486215,0.04948078468442,-0.0012578758178279],[0.12064076215029,0.046751141548157,0.056805357336998],[0.0034916223958135,0.037815503776073,-0.006727134808898]],[[0.042942427098751,0.097151882946491,0.013221557252109],[0.05353781208396,0.030268462374806,0.064614839851856],[-0.026464436203241,-0.076149605214596,-0.040788121521473]],[[-0.029731603339314,-0.10405948758125,0.066512025892735],[0.00438994448632,-0.03366394713521,0.037605602294207],[0.059337262064219,-0.024302285164595,-0.0066893855109811]],[[-0.009883550927043,0.090525239706039,0.023818407207727],[0.070479951798916,-0.040405184030533,0.05569938570261],[-0.031211560592055,0.0094244424253702,-0.044604647904634]],[[0.064089357852936,0.0031132148578763,0.03107899799943],[-0.065405949950218,-0.08231695741415,-0.020262036472559],[0.048962239176035,0.018411988392472,0.0022807836066931]],[[-0.039712104946375,-0.039372902363539,-0.076103277504444],[0.019782884046435,-0.032084744423628,-0.013725012540817],[-0.0095462696626782,0.012928846292198,0.046905219554901]],[[-0.052741751074791,-0.0042070234194398,0.054301463067532],[-0.026472629979253,0.043586384505033,0.024799520149827],[-0.032150197774172,-0.012985413894057,0.067396685481071]],[[0.045503992587328,0.032717827707529,0.020228171721101],[0.035719782114029,0.0079993875697255,0.071636103093624],[0.046835266053677,-0.021822586655617,-0.041467279195786]],[[-0.0010305737378076,-0.0075049754232168,-0.034960720688105],[0.021509304642677,0.013701062649488,0.03782045468688],[0.010998584330082,0.0060434066690505,0.025896111503243]],[[-0.043472677469254,0.022111179307103,0.032557778060436],[-0.007250415161252,0.061342511326075,-0.016355508938432],[0.035772744566202,-0.048551362007856,-0.017037574201822]],[[0.043767053633928,-0.055946540087461,-0.0063593569211662],[-0.016416292637587,-0.037871137261391,0.042873241007328],[0.021477924659848,0.041627172380686,-0.030948352068663]],[[-0.017383679747581,-0.030679110437632,-0.059434726834297],[-0.0094460770487785,-0.029503989964724,-0.093885712325573],[-0.0087486542761326,0.022499745711684,-0.064304232597351]],[[-0.013184894807637,-0.082743041217327,-0.047874480485916],[0.0080407010391355,-0.0047132191248238,-0.041148573160172],[-0.00038846163079143,0.013309272937477,0.00104417395778]],[[0.098768018186092,-0.065633319318295,0.0056956210173666],[0.040579989552498,0.028139965608716,-0.058693524450064],[0.009990319609642,-0.029163243249059,-0.015629850327969]],[[0.016544282436371,0.1142754778266,-0.05354556068778],[-0.024104433134198,0.026509871706367,0.021299263462424],[0.040131986141205,-0.0063463863916695,0.038849741220474]],[[-0.045553237199783,0.00030035016243346,0.11465564370155],[0.051120091229677,0.023850452154875,-0.0017752946587279],[0.035659931600094,-0.0039898715913296,0.080186173319817]],[[0.049380954355001,-0.028513547033072,-0.016101028770208],[0.0075082625262439,0.00049534696154296,-0.020373275503516],[0.018883481621742,0.00014820740034338,0.035355359315872]],[[0.0056821391917765,-0.021977948024869,-0.036177273839712],[0.04646010696888,-0.066514015197754,0.096598722040653],[0.036721304059029,-0.13898505270481,0.014531982131302]],[[0.0068305945023894,-0.027341801673174,-0.012494690716267],[-0.045787613838911,-0.031507652252913,-0.089414477348328],[0.0043871500529349,0.0038291888777167,-0.074598073959351]],[[0.030846495181322,-0.037590011954308,0.050903979688883],[-0.018362857401371,0.032275095582008,-0.016647811979055],[0.041814394295216,0.028603978455067,0.041133783757687]],[[0.0086851846426725,-0.09096385538578,0.014971315860748],[0.018535010516644,-0.015239056199789,0.0047016525641084],[-0.007684223819524,0.029816841706634,0.0016939891502261]],[[0.016930928453803,-0.039324205368757,0.036863192915916],[0.051751479506493,-0.02187598310411,0.021587138995528],[0.0083444332703948,0.078304797410965,0.030269347131252]],[[0.026713617146015,-0.028543381020427,-0.025814149528742],[-0.019701080396771,0.018835738301277,-0.012834533117712],[-0.052724368870258,0.064648941159248,-0.01832683943212]],[[-0.014063281938434,-0.021589659154415,0.0032359599135816],[0.028815936297178,0.045635674148798,-0.036865498870611],[0.099946215748787,0.029328249394894,-0.023508135229349]],[[0.049387600272894,0.025951033458114,-0.064464785158634],[0.004178267903626,-0.02076331153512,-0.037104822695255],[-0.025846289470792,0.076783806085587,0.086481831967831]],[[-0.033825360238552,0.036008555442095,0.00056619086535648],[0.033131685107946,0.057398285716772,0.00066128897015005],[0.091410979628563,0.015686936676502,0.11186440289021]],[[0.022703163325787,0.048974476754665,0.01870291121304],[0.013120578601956,-0.016939835622907,-0.0052724620327353],[-0.027649125084281,0.0069015072658658,-0.028796901926398]]],[[[-0.012723950669169,0.10201866924763,0.0027726842090487],[-0.045272521674633,-0.051603335887194,-0.031426660716534],[0.065278373658657,-0.01487079821527,-0.019097097218037]],[[0.015455489978194,-0.0045159300789237,0.031191997230053],[0.038277644664049,0.012914860621095,-0.032326959073544],[-0.081090278923512,0.015086993575096,-0.026886014267802]],[[0.091688603162766,-0.10545537620783,-0.052718833088875],[0.051498614251614,0.065882742404938,-0.046711057424545],[0.024516535922885,0.0050006350502372,0.017382591962814]],[[-0.0014475142816082,0.072783224284649,-0.0017567764734849],[0.021935656666756,-0.044486854225397,-0.037169985473156],[-0.04488331079483,-0.051345571875572,-0.013194793835282]],[[0.065492413938046,0.016409665346146,0.10147669911385],[0.00010767098137876,-0.061974849551916,0.007365582510829],[-0.061929568648338,0.015806686133146,-0.04273521527648]],[[-0.055097997188568,0.039835225790739,-0.020006515085697],[-0.0051739965565503,0.053118553012609,-0.0067703286185861],[-0.015395017340779,-0.070464566349983,0.092659518122673]],[[0.0052652307786047,-0.025264954194427,0.038220133632421],[-0.083465129137039,0.05626380071044,0.06996288895607],[-0.036319226026535,-0.019337080419064,0.028111407533288]],[[0.086501561105251,-0.023768369108438,0.018060637637973],[-0.025318602100015,0.050957649946213,-0.066386230289936],[0.043196562677622,0.0088019790127873,-0.023082491010427]],[[0.012291057035327,0.0064330389723182,0.032238647341728],[-0.10400781780481,-0.045837678015232,0.012047537602484],[0.089716285467148,-0.10775107145309,0.050348162651062]],[[-0.042898841202259,0.093189589679241,-0.043606221675873],[-0.15425509214401,0.029585922136903,-0.031197689473629],[-0.017893945798278,-0.018213322386146,-0.0063616260886192]],[[0.0052545922808349,-0.017972193658352,-0.011657836847007],[0.092514418065548,-0.040977880358696,0.041079573333263],[-0.035270791500807,0.010487847030163,-0.049662508070469]],[[0.020239591598511,-0.0097549371421337,0.088534995913506],[-0.049546178430319,0.024090234190226,-0.011822101660073],[0.06549346446991,-0.0039127389900386,-0.01580073684454]],[[-0.077426016330719,-0.028810102492571,-0.098591528832912],[-0.025536246597767,-0.087496384978294,-0.014409942552447],[0.039602983742952,0.056989729404449,0.069012448191643]],[[-0.0579540617764,-0.032835181802511,-0.074091725051403],[0.024973966181278,0.068455681204796,0.062682546675205],[-0.017705217003822,-0.096903778612614,0.10971373319626]],[[-0.09376373142004,0.02750676125288,0.0070281918160617],[0.028080834075809,-0.20320647954941,-0.076226957142353],[0.076655991375446,-0.057958424091339,-0.17581260204315]],[[0.0040898192673922,-0.035115543752909,-0.000693021225743],[-0.016617808490992,-0.0024129261728376,-0.094353832304478],[-0.04856089875102,-0.14362196624279,-0.035428024828434]],[[-0.094949826598167,-0.051226817071438,0.10631614178419],[0.035617526620626,-0.12840984761715,0.019337030127645],[0.012809045612812,0.022309063002467,-0.048171333968639]],[[-0.039037577807903,0.080442547798157,0.057933531701565],[-0.046194266527891,-0.052306909114122,0.12739706039429],[0.077515736222267,-0.042805701494217,-0.01462003774941]],[[0.041806843131781,0.052317578345537,0.07196731865406],[-0.060422588139772,0.014382265508175,0.007525943685323],[-0.047778274863958,0.012606946751475,0.020588332787156]],[[-0.11818313598633,-0.043726019561291,-0.023126304149628],[-0.024409106001258,0.066049367189407,0.011767897754908],[0.067225635051727,-0.012848371639848,-0.031729318201542]],[[0.014298506081104,-0.052472200244665,-0.037859212607145],[0.020397309213877,0.035119589418173,-0.12434074282646],[0.069925613701344,-0.033891022205353,-0.018044155091047]],[[0.062343712896109,0.12390796095133,-0.043743744492531],[-0.0055218623019755,0.066778086125851,-0.041504617780447],[-0.00030699680792168,0.030341198667884,-0.00303501682356]],[[-0.073584593832493,-0.042664833366871,-0.033842880278826],[0.053700212389231,-0.016601795330644,0.0091002201661468],[-0.032980095595121,-0.0084952805191278,0.06803172826767]],[[0.024439802393317,-0.065783485770226,0.018290871754289],[-0.06360375136137,-0.0012438154080883,0.030210031196475],[-0.057156279683113,0.039605423808098,0.022789238020778]],[[0.07083523273468,-0.0713951587677,-0.26230499148369],[-0.1368645131588,0.054388605058193,0.012020229361951],[-0.15148048102856,-0.054103165864944,0.043859284371138]],[[-0.042022757232189,0.036179549992085,0.041802451014519],[0.031924724578857,-0.011523284949362,0.042205173522234],[0.04242317378521,-0.043480969965458,-0.039123427122831]],[[0.051943995058537,0.0038062920793891,-0.020493015646935],[0.084678709506989,-0.059718400239944,0.0070941387675703],[-0.021912785246968,0.011876354925334,-0.09310020506382]],[[-0.019586347043514,-0.0017848578281701,0.031064838171005],[0.11348709464073,-0.032133396714926,-0.10722477734089],[0.066364772617817,0.06888784468174,-0.05657297000289]],[[0.050302587449551,-0.06105263531208,-0.020420854911208],[-0.073826305568218,0.027077944949269,0.11871337145567],[-0.069972097873688,-0.10561262816191,0.013008315116167]],[[0.024414978921413,-0.031681850552559,0.071522131562233],[-0.033935159444809,0.077905923128128,0.061666641384363],[-0.18048161268234,-0.075681388378143,0.001215994823724]],[[-0.067031547427177,0.021620884537697,0.02213511057198],[-0.050763387233019,0.0022731679491699,-0.043085217475891],[0.024569023400545,-0.019443668425083,0.041290815919638]],[[-0.00099753413815051,-0.024369448423386,-0.057943683117628],[-0.12474747002125,0.07134822756052,-0.02633767016232],[0.07168798148632,-0.086833812296391,0.082011163234711]],[[-0.044932182878256,-0.084941156208515,-0.075004749000072],[0.0068084872327745,-0.016808750107884,0.066985428333282],[-0.054532561451197,0.11563542485237,0.092475108802319]],[[-0.0056007006205618,-0.10940239578485,-0.031217411160469],[-0.050658583641052,0.088904030621052,0.0076752277091146],[-0.029399055987597,0.092393681406975,0.10453822463751]],[[-0.0080188736319542,-0.040277555584908,-0.0040565798990428],[-0.045812647789717,0.042040228843689,-0.061374373733997],[0.067781470716,-0.015114910900593,0.0072865933179855]],[[-0.017384897917509,0.026960767805576,-0.033839888870716],[-0.044536743313074,0.065019004046917,-0.038597907871008],[0.026843292638659,-0.12028156965971,0.067062169313431]],[[-0.0098040690645576,-0.039812903851271,-0.03311113268137],[-0.017436033114791,-0.011588595807552,0.032492708414793],[0.0012610324192792,0.054710317403078,-0.030870262533426]],[[-0.015751346945763,0.042743690311909,0.037433698773384],[0.027240883558989,-0.06962326169014,-0.052391991019249],[-0.071556009352207,-0.013272849842906,0.0049868365749717]],[[0.038648668676615,0.05428658425808,0.015133847482502],[-0.0013315114192665,0.10386877506971,0.053734268993139],[-0.0074260262772441,-0.037495274096727,0.050887025892735]],[[0.029279278591275,-0.13207396864891,0.061794187873602],[0.021559685468674,0.034947596490383,-0.11314862966537],[0.097674831748009,0.066397286951542,0.034709613770247]],[[-0.05687814950943,-0.0050202258862555,-0.069824330508709],[-0.03763210773468,-0.068194046616554,-0.0031129328999668],[-0.0021813162602484,0.10120052844286,0.007356044370681]],[[-0.063308395445347,0.016863336786628,-0.037003826349974],[0.0026587257161736,-0.10312383621931,-0.039351969957352],[0.038153376430273,0.0040588127449155,-0.020430261269212]],[[-0.017384465783834,-0.0066539752297103,-0.016774205490947],[-0.009381958283484,-0.0046920324675739,0.10530332475901],[0.017944438382983,-0.058404132723808,-0.050468485802412]],[[-0.049175322055817,0.028681293129921,0.0059654107317328],[0.0025395464617759,-0.012153847143054,0.067792035639286],[-0.037692088633776,-0.042667265981436,0.046713873744011]],[[-0.067592263221741,0.077227927744389,0.013239100575447],[0.051282647997141,0.030052164569497,0.016451265662909],[0.018634488806129,-0.082359969615936,-0.035850908607244]],[[-0.022542046383023,-0.016969824209809,-0.055847264826298],[0.011469988152385,0.011593257077038,0.024729078635573],[-0.024672228842974,0.037304021418095,0.073146469891071]],[[-0.0078363167122006,-0.046286650002003,0.0080100800842047],[0.076808720827103,-0.035577997565269,-0.13920789957047],[0.031948324292898,0.098769515752792,0.039401840418577]],[[0.1343707293272,-0.084676161408424,0.025849718600512],[-0.046501494944096,0.07489612698555,-0.028579389676452],[0.056704003363848,-0.067649617791176,0.10406075417995]],[[-0.068182609975338,-0.0074514667503536,0.13959638774395],[0.014578780159354,-0.083709262311459,-0.06842578202486],[0.031335391104221,-0.050982624292374,0.080095246434212]],[[0.004675003234297,-0.019333403557539,-0.010821058414876],[0.068417474627495,0.010641130618751,-0.12729050219059],[0.047456119209528,0.031118953600526,-0.050570577383041]],[[-0.057545233517885,-0.020569426938891,-0.043848097324371],[-0.0020061498507857,-0.025278475135565,0.037769246846437],[0.0096711525693536,-0.04462705552578,-0.13115835189819]],[[-0.0073787430301309,0.081561923027039,0.038895044475794],[0.021538080647588,0.033017054200172,-0.07618560642004],[-0.058293022215366,0.014091489836574,0.0082832053303719]],[[0.10367979854345,-0.049415588378906,-0.066750593483448],[-0.046688824892044,0.15285557508469,-0.0087450295686722],[-0.047659303992987,-0.040446195751429,0.037924353033304]],[[-0.028469016775489,-0.017633926123381,0.10196723043919],[0.02037956379354,-0.045305635780096,-0.057042077183723],[-0.013023064471781,-0.038026463240385,0.038262981921434]],[[0.0021182685159147,0.014272631146014,0.043832745403051],[-0.072719551622868,0.14898462593555,0.068786442279816],[-0.028509773313999,-0.096458226442337,-0.0074283722788095]],[[-0.040697265416384,-0.002753839129582,-0.012709338217974],[-0.034587718546391,0.08295626193285,-0.066471271216869],[0.060296591371298,0.010224984027445,0.0011301117483526]],[[-0.031666476279497,-0.00069748982787132,0.03568858653307],[0.0064944913610816,-0.046166881918907,-0.029280345886946],[0.056581225246191,-8.1256555858999e-05,-0.032952766865492]],[[0.0092225950211287,0.012935915961862,-0.025396151468158],[-0.10196748375893,0.07826092094183,0.032562054693699],[-0.11158633977175,0.0098393121734262,0.083536021411419]],[[-0.038006495684385,-0.10670647770166,-0.034721687436104],[0.071738503873348,0.069891236722469,-0.1133856549859],[0.010509558953345,0.075675845146179,0.048289455473423]],[[-0.049782514572144,0.0039193821139634,0.095563992857933],[-0.027074877172709,-0.085010074079037,0.070052906870842],[-0.025674235075712,0.086977921426296,-0.053858634084463]],[[-0.054444123059511,0.11425586789846,-0.026251750066876],[0.010513758286834,0.023626167327166,0.015338521450758],[-0.01610204204917,-0.14151848852634,-0.039108492434025]],[[0.056987419724464,-0.016325814649463,-0.028390726074576],[-0.025591548532248,-0.018743878230453,-0.016739539802074],[-0.0072156628593802,-0.050196785479784,0.012685917317867]],[[-0.025733776390553,-0.045472525060177,-0.057904712855816],[-0.0064819459803402,-0.025801269337535,-0.049852829426527],[0.02166317217052,0.022710653021932,0.018793180584908]],[[0.083271868526936,0.031404707580805,0.021936375647783],[-0.037376090884209,-0.030948139727116,-0.068008311092854],[0.10287225991488,-0.047615453600883,0.02944858931005]],[[-0.07247718423605,-0.057582687586546,-0.007751353085041],[0.058643039315939,0.084124557673931,-0.02938349545002],[-0.06809463351965,-0.030931396409869,0.072080098092556]],[[0.0611931681633,0.10680111497641,-0.028969779610634],[-0.080201148986816,-0.10971782356501,-0.042773686349392],[0.012698596343398,-0.091616630554199,0.019271839410067]],[[0.044960934668779,0.048242758959532,-0.050511725246906],[-0.011392963118851,-0.065642990171909,0.074376039206982],[-0.041872549802065,-0.023659294471145,0.06379909068346]],[[-0.0080563854426146,0.045125652104616,-0.03503842651844],[-0.084639132022858,0.074810139834881,0.080687910318375],[0.055447984486818,-0.0014048900920898,-0.028046915307641]],[[0.0024007947649807,-0.03346123918891,-0.039772517979145],[0.082290172576904,-0.11074195057154,-0.055404372513294],[0.050092715770006,-0.0070064109750092,-0.059932567179203]],[[0.042098816484213,0.04080555960536,0.10561969876289],[0.044179540127516,-0.057136125862598,-0.025979161262512],[0.032027099281549,0.0087965782731771,-0.045496489852667]],[[-0.012120926752687,0.10084544867277,-0.0011949972249568],[0.06577867269516,-0.11919837445021,0.061069540679455],[0.066110402345657,0.097720324993134,0.011631395667791]],[[-0.054635919630527,0.05631585046649,0.0031639747321606],[-0.0073504992760718,0.000712716486305,-0.018009211868048],[-0.057943299412727,0.026152795180678,0.06531447917223]],[[-0.089970290660858,-0.039757627993822,0.10871198773384],[0.055323965847492,-0.094866618514061,-0.1724296361208],[-0.009414735250175,0.080816760659218,-0.046018123626709]],[[-0.098528705537319,-0.081067457795143,0.060222782194614],[0.075228534638882,-0.013160860165954,-0.056639842689037],[0.1291791498661,-0.0048529193736613,0.027840098366141]],[[-0.031141433864832,0.0062633170746267,-0.052801247686148],[-0.041416935622692,0.025898292660713,-0.037622753530741],[0.047904074192047,-0.016481539234519,-0.0094342827796936]],[[0.078457377851009,-0.046143773943186,-0.030990518629551],[0.043627697974443,-0.07026956230402,-0.10258171707392],[0.044461380690336,-0.0075509995222092,-0.025770710781217]],[[-0.028954664245248,3.101077163592e-05,-0.025977339595556],[-0.030342468991876,0.015558942221105,-0.021989328786731],[0.032225705683231,-0.017789544537663,-0.068182535469532]],[[0.10910815000534,0.052694145590067,-0.069601446390152],[-0.034709613770247,0.010534469969571,-0.027431694790721],[-0.0030573301482946,-0.057017054408789,-0.12221160531044]],[[0.029967255890369,-0.11248593777418,0.046333856880665],[-0.1170174703002,0.01915050111711,0.056574556976557],[0.027893554419279,0.070797547698021,0.026193294674158]],[[0.041858941316605,0.0041328906081617,-0.051292806863785],[0.0067553077824414,-0.0062480294145644,-0.039050661027431],[0.018053391948342,0.080648921430111,-0.098645873367786]],[[-0.070382811129093,0.041601181030273,-0.098651394248009],[-0.012307912111282,0.078188121318817,0.028828619047999],[0.045672137290239,-0.052106991410255,0.070652991533279]],[[0.0092837335541844,0.098025038838387,0.012854525819421],[-0.0034310473129153,-0.044795297086239,-0.0094698192551732],[-0.001674993429333,0.033421628177166,-0.0071823233738542]],[[-0.022359734401107,-0.017692232504487,-0.076247505843639],[0.071776106953621,0.025311062112451,0.032931935042143],[-0.075189098715782,0.11311938613653,-0.023797135800123]],[[0.01100299693644,0.0046286266297102,0.018857849761844],[0.038539282977581,-0.013368747197092,-0.056221026927233],[-0.0025102200452238,-0.016091840341687,-0.062264654785395]],[[0.038619574159384,0.012948437593877,0.060898151248693],[0.074342988431454,0.062020633369684,-0.018682427704334],[-0.022890003398061,-0.089689709246159,-0.024190410971642]],[[-0.045313879847527,-0.056565601378679,0.011390827596188],[0.016327686607838,-0.056367702782154,0.10529223829508],[0.0055495584383607,0.00047605350846425,0.059775520116091]],[[0.10719833523035,-0.030764613300562,-0.059096392244101],[-0.068820729851723,-0.0075193378143013,0.08710078895092],[0.033472221344709,-0.054237432777882,-0.046929698437452]],[[-0.011653709225357,-0.05469162389636,0.088267378509045],[-0.070879854261875,-0.021472910419106,0.066672928631306],[-0.061238575726748,-0.0062092449516058,-0.010939713567495]],[[-0.056351836770773,-0.059935539960861,-0.03641053289175],[-0.027624733746052,-0.019864844158292,0.12393093109131],[0.034927740693092,-0.020757455378771,0.013235388323665]],[[-0.025994116440415,-0.084920957684517,0.044988188892603],[0.016820011660457,-0.093618147075176,-0.0037631979212165],[0.068472169339657,0.069314919412136,0.0070597301237285]],[[0.101144105196,0.031469862908125,-0.0065591596066952],[-0.018822148442268,0.0186567902565,-0.060036078095436],[-0.066688366234303,0.11564518511295,0.01289021782577]],[[0.0047719571739435,-0.001655955100432,0.022542215883732],[-0.016707856208086,0.018565367907286,0.016921300441027],[-0.031286165118217,-0.022180408239365,-0.0055256388150156]],[[0.033993784338236,0.020826851949096,-0.094370521605015],[-0.013427706435323,0.018071761354804,-0.081682778894901],[-0.033267095685005,0.035571206361055,0.020457331091166]],[[0.037022419273853,0.01134414318949,-0.021108074113727],[-0.021770816296339,0.11671021580696,0.036698237061501],[0.071021907031536,0.093389719724655,0.076661080121994]],[[0.021469874307513,0.042252540588379,-0.045096091926098],[-0.035201702266932,-0.016318902373314,-0.0052361129783094],[-0.073665298521519,0.066677555441856,0.059119187295437]],[[-0.085100598633289,-0.0041086506098509,-0.045761782675982],[-0.048294998705387,-0.021934570744634,0.015939837321639],[-0.014103669673204,0.05715462192893,-0.038363128900528]],[[0.024606643244624,0.044674661010504,-0.0326840095222],[0.035718683153391,-0.025513011962175,-0.025294559076428],[0.020323121920228,0.010366670787334,-0.056514274328947]],[[-0.023038441315293,-0.027779392898083,-0.0082470523193479],[-0.057750102132559,0.048718485981226,0.013592977076769],[-0.022912159562111,0.10298278182745,-0.056010849773884]],[[0.046867556869984,-0.04067500680685,-0.0093809403479099],[0.11684944480658,0.015543382614851,-0.078209102153778],[-0.025014139711857,0.014511216431856,-0.063603594899178]],[[0.056113235652447,0.017208548262715,-0.065139502286911],[-0.012772844173014,0.04524102807045,-0.082008518278599],[0.081862740218639,-0.017881562933326,0.044096369296312]],[[-0.015312789939344,0.049180541187525,0.018266536295414],[-0.017432972788811,0.0067703216336668,0.0076394188217819],[0.048744011670351,0.052562091499567,-0.038377106189728]],[[0.085159115493298,-0.020976250991225,-0.034618187695742],[0.030958335846663,0.035447187721729,-0.019916467368603],[-0.012115834280849,-0.090790390968323,0.037078205496073]],[[-0.03834305331111,-0.02587684430182,-0.087175786495209],[0.095338717103004,-0.084369257092476,-0.081605434417725],[0.041112009435892,0.0026599788106978,0.021983141079545]],[[-0.060660868883133,0.0055321427062154,0.02833266556263],[-0.0041601001285017,0.022434236481786,-0.034184459596872],[0.027832936495543,0.00076770188752562,0.043170154094696]],[[0.015356442891061,-0.03284028545022,-0.030980460345745],[-0.098097786307335,-0.0025934134609997,0.021307183429599],[0.00052706559654325,0.029805766418576,0.017588075250387]],[[-0.12356348335743,-0.035288766026497,-0.023901904001832],[-0.0073866080492735,-0.072298876941204,0.022746806964278],[0.07446327060461,-0.030962143093348,0.081194080412388]],[[0.0043844454921782,0.039604358375072,-0.096181869506836],[0.069294348359108,-0.028215428814292,0.019625227898359],[0.013725435361266,0.097126714885235,-0.089988224208355]],[[0.0034353416413069,0.043735533952713,-0.050280906260014],[-0.038599077612162,-0.061880316585302,0.064453974366188],[0.05182945355773,-0.024682600051165,-0.037940938025713]],[[-0.0084771644324064,0.0013275353703648,0.0036387757863849],[-0.047479677945375,0.04201801866293,-0.0050807897932827],[-0.019412528723478,-0.056100346148014,0.062817566096783]],[[-0.030725508928299,-0.017055349424481,0.013220384716988],[-0.013528733514249,-0.020628562197089,0.015924207866192],[-0.0021997254807502,-0.041440073400736,0.046370074152946]],[[0.041052728891373,-0.00028240837855265,-0.038696650415659],[0.018475072458386,-0.04348498955369,0.007419154047966],[0.00074287271127105,-0.010204606689513,-0.0099697876721621]],[[-0.073744639754295,-0.076453790068626,0.07089152187109],[-0.019273519515991,-0.046972628682852,0.066481031477451],[-0.023152878507972,-0.062527626752853,-0.013255333527923]],[[-0.064104802906513,0.03455613180995,0.027549996972084],[-0.065270557999611,0.011285954155028,-0.027272202074528],[0.012601444497705,0.061487264931202,-0.00089087104424834]],[[0.060932852327824,0.0078617008402944,-0.029182793572545],[-0.074995711445808,0.048826813697815,0.030626745894551],[0.023791817948222,-0.02991596981883,-0.0046375347301364]],[[-0.088783577084541,-0.035964988172054,-0.048735126852989],[-0.053670261055231,0.018837591633201,0.013758980669081],[-0.022761093452573,0.1060404703021,0.10378501564264]],[[0.16113318502903,0.058907303959131,0.027529451996088],[0.017384767532349,0.11453211307526,-0.011450896970928],[0.078147783875465,0.079746082425117,-0.079952329397202]],[[0.03917058929801,-0.0040788240730762,0.020211152732372],[-0.070935197174549,-0.059934183955193,0.006786834448576],[0.1082873493433,-0.027768239378929,0.041979279369116]],[[0.029141509905457,0.037795998156071,-0.016038315370679],[-0.096883118152618,0.028021072968841,-0.056147146970034],[0.01282527577132,-0.016768954694271,0.038976766169071]],[[0.046717960387468,0.0367964617908,-0.011354480870068],[-0.024602038785815,0.079743690788746,-0.071963973343372],[-0.020614957436919,-0.079047843813896,-0.017813380807638]],[[-0.0394102409482,-0.042732331901789,-0.083283573389053],[-0.052109397947788,0.0056579988449812,-0.036734789609909],[-0.041431229561567,-0.010573505423963,-0.00018535187700763]],[[-0.0038941043894738,-0.030479934066534,-0.037286106497049],[-0.04091851785779,0.093035086989403,-0.14963401854038],[0.0071702729910612,-0.055482596158981,0.09939119964838]],[[0.0039253602735698,-0.010541822761297,0.092925921082497],[-0.014059883542359,-0.12338645011187,-0.04148256033659],[-0.024465035647154,-0.066556185483932,-0.052259832620621]],[[0.064796112477779,-0.04652563482523,0.0054602199234068],[0.025035003200173,-0.018626814708114,-0.026463389396667],[0.040569059550762,0.085240691900253,0.020496070384979]],[[-0.048723697662354,0.031268168240786,0.020882455632091],[-0.03482423722744,-0.056885078549385,0.057925079017878],[-0.020041525363922,0.030963309109211,-0.017558675259352]],[[0.038530137389898,0.042433843016624,-0.097003445029259],[-0.076854273676872,-0.045478597283363,-0.079936139285564],[0.05404119566083,-0.0088154906406999,-0.055376205593348]],[[-0.065597638487816,-0.050541337579489,0.022970223799348],[-0.076068855822086,-0.034665897488594,0.05854395404458],[0.0060301590710878,0.007282174192369,0.040355041623116]],[[0.0013748011551797,0.072476796805859,0.038844410330057],[0.055863372981548,-0.044941436499357,-0.073176547884941],[-0.017063753679395,0.059778396040201,0.022923877462745]],[[0.0336141474545,-0.094011694192886,-0.051052741706371],[-0.0043889204971492,-0.011803586035967,0.006976468488574],[0.026622841134667,0.030171642079949,0.07236871868372]]],[[[-0.0026922635734081,-0.01225181017071,0.011151162907481],[-0.066027730703354,-0.067999504506588,0.012374726124108],[-0.059649359434843,-0.033094167709351,0.055911626666784]],[[-0.02965428121388,-0.004404662642628,0.025925740599632],[0.030143335461617,0.021443925797939,0.012802622281015],[0.074700921773911,0.03924185782671,0.0017858997453004]],[[0.063459016382694,-0.043861921876669,0.03701938688755],[-0.037461213767529,-0.029096227139235,-0.04532229155302],[0.054213836789131,0.0012544273631647,-0.018448978662491]],[[-0.019980957731605,-0.046474479138851,0.050100848078728],[0.020845927298069,0.0082722138613462,0.0049898140132427],[0.027992527931929,0.032348230481148,-0.0039476328529418]],[[0.028304545208812,0.0048191980458796,0.021396057680249],[0.02806594222784,0.03397998213768,0.060756400227547],[-0.0096309753134847,-0.060096390545368,-0.023368965834379]],[[0.086314149200916,0.017550840973854,-0.014494215138257],[0.055289305746555,0.14755295217037,0.040443651378155],[0.00033268996048719,-0.022737329825759,0.021790064871311]],[[-0.066751189529896,-0.055149517953396,0.0013354475377128],[0.010197453200817,-0.010516063310206,0.0073106279596686],[-0.10323532670736,-0.063409470021725,0.036862220615149]],[[-0.012886256910861,0.0021056365221739,-0.040006022900343],[0.00083664525300264,0.066041633486748,0.053154610097408],[-0.021328685805202,-0.0076497839763761,0.015507080592215]],[[0.033596437424421,0.062453903257847,-0.0040249698795378],[0.0092212809249759,-0.0028790466021746,-0.034922044724226],[-0.0088869389146566,-0.01684907451272,-0.00072308629751205]],[[0.072435401380062,-0.00098765082657337,0.014463596045971],[0.16458125412464,0.11844545602798,0.044594749808311],[0.043490570038557,-0.042415250092745,0.13860842585564]],[[-0.052430436015129,-0.045975890010595,0.0062237624078989],[0.0057556391693652,-0.00080420600716025,0.10205382108688],[-0.076111823320389,-0.032956711947918,-0.062815733253956]],[[0.022727575153112,0.026051055639982,0.044328492134809],[0.052491538226604,-0.027631722390652,0.10093585401773],[-0.005432462785393,-0.0060249557718635,-0.017702737823129]],[[0.0893959030509,0.05044960975647,0.067643851041794],[-0.006070900708437,0.036792021244764,0.0038658033590764],[0.076682142913342,-0.0011086461599916,0.050522703677416]],[[0.044251222163439,-0.021200366318226,0.014622207731009],[0.0063648126088083,0.0078925024718046,0.05817723274231],[0.041558425873518,0.1014438867569,0.034166783094406]],[[-0.036771759390831,0.086857207119465,0.01985895819962],[0.081980183720589,0.17215976119041,-0.039260227233171],[0.066308952867985,0.15171247720718,-0.052824020385742]],[[0.025061096996069,-0.073837339878082,-0.038678612560034],[0.046317290514708,-0.063815027475357,-0.10919500142336],[0.019275527447462,-0.11326797306538,-0.024082373827696]],[[-0.012295462191105,0.0095670018345118,0.10321360826492],[-0.061832252889872,-0.069016866385937,0.029498571529984],[-0.01190884038806,0.0043832450173795,0.045238599181175]],[[-0.0026314901188016,-0.072878286242485,-0.030653029680252],[-0.063423462212086,0.013581636361778,-0.066045753657818],[-0.035804435610771,-0.10351979732513,-0.010293362662196]],[[-0.0044588898308575,0.056182146072388,0.05391214042902],[-0.018553357571363,0.018314249813557,0.027153989300132],[0.046658329665661,0.050098229199648,0.044149070978165]],[[0.080563403666019,-0.063937485218048,-0.08313263207674],[0.018901789560914,-0.059000920504332,-0.016721764579415],[0.064983151853085,0.035008125007153,0.018731391057372]],[[0.0089247301220894,0.0029185183811933,0.093676209449768],[0.061895091086626,0.094992436468601,-0.033425346016884],[0.1160252019763,0.005193236283958,0.061797939240932]],[[0.10689664632082,0.05581521987915,0.10545795410872],[0.16886733472347,0.10020735114813,0.014178501442075],[-0.0055685630068183,0.059205081313848,0.0084226652979851]],[[0.0029591808561236,-0.040028609335423,0.0020617519039661],[-0.020325791090727,-0.0035810591652989,0.0019380106823519],[0.044165685772896,0.013569481670856,0.0058908960781991]],[[-0.0060802870430052,-0.0023131852503866,0.0010420437902212],[0.066392444074154,-0.045386519283056,0.059012446552515],[0.0038577334489673,0.037591498345137,0.032959911972284]],[[0.045553810894489,0.040296476334333,-0.040836051106453],[0.038773242384195,0.079130761325359,0.06290116161108],[-0.018726095557213,0.027699479833245,0.032167546451092]],[[0.047016844153404,0.033030740916729,0.04974153637886],[0.0024020336568356,-0.031545557081699,0.1046350300312],[-0.045044649392366,0.011603594757617,0.070534765720367]],[[-0.0091818552464247,-0.040047168731689,0.013979061506689],[0.082719303667545,-0.076117299497128,0.067370869219303],[0.032237369567156,0.020381100475788,-0.016659548506141]],[[-0.038125433027744,-0.04034635424614,0.0038776465225965],[-0.064815655350685,-0.0060334359295666,-0.051742576062679],[-0.069881848990917,0.050073474645615,6.5026717493311e-05]],[[0.040798537433147,0.011140080168843,0.054443374276161],[-0.026591021567583,-0.013949975371361,-0.018463905900717],[-0.035615861415863,0.055996030569077,-0.094273589551449]],[[0.037963159382343,-0.021902024745941,0.0076418393291533],[0.027476631104946,-0.047103233635426,-0.030565649271011],[0.029713807627559,-0.05616345256567,0.002566578797996]],[[0.025871595367789,-0.022866370156407,0.023477535694838],[0.069461971521378,0.019917132332921,-0.0028817821294069],[0.057302813977003,0.033350300043821,-0.057348534464836]],[[-0.054277438670397,0.024882795289159,0.069594092667103],[0.10003270208836,0.02299840003252,-0.075201399624348],[0.045929700136185,-0.011751451529562,-0.0066765234805644]],[[0.072154119610786,0.048266854137182,0.029868299141526],[-0.032747834920883,0.029105050489306,-0.030256468802691],[0.0032769609242678,0.010018069297075,0.0074470774270594]],[[0.0054624816402793,0.052423551678658,0.054528053849936],[0.066195458173752,0.059221368283033,0.012075872160494],[0.0073984721675515,-0.015070226043463,0.058592781424522]],[[0.030073845759034,-0.024953598156571,0.027649354189634],[0.037491429597139,0.0065751359798014,-0.059213999658823],[0.080406524240971,0.052907668054104,-0.069054275751114]],[[-0.008158759213984,-0.019457165151834,-0.041311994194984],[-0.060888785868883,0.018552066758275,0.011628380045295],[-0.01603739336133,-0.025839045643806,-0.031397692859173]],[[-0.042967431247234,-0.067827634513378,-0.033226083964109],[-0.021414868533611,-0.038736622780561,-0.053848542273045],[-0.034435607492924,-0.042847711592913,-0.045833926647902]],[[0.053967971354723,0.022505292668939,0.03054304420948],[-0.018146300688386,0.051684759557247,-0.044094916433096],[-0.023996196687222,-0.026126379147172,-0.072395108640194]],[[0.03762311860919,-0.0442084223032,0.053263451904058],[7.5061761890538e-05,0.09362580627203,-0.029180569574237],[0.019503060728312,-0.04278614744544,-0.10579308867455]],[[-0.059884008020163,0.0017018142389134,-0.11839887499809],[-0.036624483764172,0.014297331683338,-0.025788236409426],[-0.02242149040103,-0.016770947724581,0.035315424203873]],[[0.00066560175037012,0.020700961351395,-0.046020530164242],[0.013774113729596,-0.078941389918327,-0.0025060302577913],[-0.04703463613987,-0.059535890817642,-0.00086605100659654]],[[0.0041232914663851,-0.038098495453596,0.010948431678116],[0.00010454720904818,0.043958354741335,0.022161342203617],[-0.0020318035967648,0.015094787813723,-0.076535955071449]],[[-0.018763897940516,0.0091753080487251,-0.040854934602976],[-0.043647769838572,0.027432322502136,0.053138721734285],[0.038019310683012,-0.03580953925848,0.0045306757092476]],[[-0.060353793203831,-0.035937607288361,-0.027370123192668],[0.0073663061484694,-0.025415783748031,0.039587810635567],[-0.026285847648978,-0.012659530155361,-0.013339981436729]],[[0.0096604079008102,-0.0099093159660697,0.015074430033565],[0.033981755375862,-0.040879361331463,-0.022171614691615],[0.043074116110802,-0.037829473614693,0.053789775818586]],[[0.025751568377018,0.037733089178801,0.012532905675471],[0.038032911717892,0.04955942183733,0.029819458723068],[0.025350274518132,-0.033517982810736,0.0020089810714126]],[[-0.064871743321419,-0.011047110892832,-0.031340893357992],[-0.006877907551825,-0.018103994429111,-0.0088653573766351],[-0.013260904699564,0.014297731220722,-0.013928595930338]],[[-0.054220322519541,0.023404514417052,0.053595688194036],[-0.012161237187684,0.028260571882129,0.016101138666272],[-0.029729671776295,0.05759933963418,0.042250573635101]],[[-0.02698034234345,-0.042008049786091,0.053390130400658],[0.056025385856628,0.023903887718916,0.029335265979171],[0.0018366379663348,-0.068877726793289,0.025833189487457]],[[-0.071238100528717,0.0086366515606642,0.037542272359133],[-0.0083432579413056,0.0050512361340225,0.050759624689817],[-0.047442395240068,-0.034453548491001,0.018208734691143]],[[0.018590964376926,-0.0074726860038936,0.011183068156242],[0.00031208075233735,-0.0218461509794,-0.012275363318622],[0.022344598546624,0.056339260190725,0.030900867655873]],[[-0.031472217291594,-0.026864804327488,-0.035799786448479],[-0.021314557641745,0.069037854671478,0.055640544742346],[0.0076170372776687,0.025075616315007,-0.021807426586747]],[[-0.03554979339242,-0.0031086197122931,-0.0036414270289242],[0.09327021241188,0.053930852562189,-0.065041951835155],[0.064949981868267,-0.050619602203369,0.0026687437202781]],[[-0.024303240701556,-0.041428655385971,0.0322210714221],[0.072935178875923,0.061425067484379,0.056313890963793],[-0.04376570507884,-0.057256191968918,0.037181660532951]],[[0.048842065036297,0.023830708116293,0.028137130662799],[-0.032277215272188,0.043110612779856,-0.025687167420983],[0.031675767153502,-0.03027374856174,0.058838363736868]],[[0.086187735199928,0.0041057621128857,0.054569203406572],[-0.0099101616069674,-0.0096183782443404,0.013433798216283],[0.012156337499619,0.038475442677736,-0.0041060876101255]],[[-0.06914983689785,0.027386492118239,-0.048264071345329],[0.00084279506700113,-0.047777067869902,-0.022580621764064],[-0.034273900091648,-0.057302489876747,-0.017275419086218]],[[-0.067115843296051,-0.079846009612083,-0.031743217259645],[0.023966245353222,0.078414127230644,0.047275386750698],[-0.02260173112154,-0.070253945887089,-0.018490307033062]],[[0.01994669996202,0.0093489792197943,-0.011405237019062],[0.014000130817294,-0.0085638901218772,0.0064273881725967],[0.078830070793629,0.0038408413529396,0.12013676762581]],[[-0.015829717740417,0.022874519228935,-0.02463299036026],[-0.0049324850551784,-0.055924125015736,-0.02950164116919],[0.035895016044378,0.027451533824205,-0.01791569404304]],[[-0.0049049118533731,0.056366469711065,0.015742089599371],[0.084425166249275,0.065186694264412,0.063007064163685],[-0.051892466843128,0.052829135209322,-0.016408368945122]],[[0.029839126393199,0.0027981444727629,-0.076877154409885],[-0.01956002227962,-0.061550155282021,0.028957262635231],[-0.017542915418744,-0.00073201500345021,0.019818322733045]],[[0.029872991144657,-0.027238432317972,-0.026601523160934],[0.012786420062184,-0.015603105537593,-0.07464987039566],[0.050966504961252,0.054076321423054,0.05252905189991]],[[0.09478909522295,0.065423302352428,-0.081289283931255],[0.058700118213892,0.008655970916152,-0.015083296224475],[0.024960013106465,0.0026397216133773,-0.022221593186259]],[[0.099877960979939,0.060643937438726,0.055618867278099],[-0.06828098744154,-0.026054743677378,0.030933922156692],[0.028800085186958,-0.052760496735573,0.028286349028349]],[[0.0063721612095833,-0.057529509067535,0.01443104352802],[0.011580117978156,-0.0015786645235494,-0.0019729293417186],[0.060300223529339,0.054943431168795,0.010558864101768]],[[-0.034660935401917,-0.022708730772138,0.085719414055347],[0.096118494868279,0.019264809787273,-0.016344036906958],[0.028613356873393,-0.030623694881797,0.052003480494022]],[[0.071520291268826,0.033788964152336,0.058392502367496],[0.0074863038025796,0.049454562366009,-0.059772215783596],[0.046518087387085,-0.031045148149133,-0.0076394435018301]],[[-0.010114310309291,-0.0022288889158517,0.079937756061554],[-0.0069158179685473,0.027266984805465,-0.01492714881897],[0.049834851175547,-0.01478533167392,-0.015291468240321]],[[0.075263150036335,0.039295788854361,0.035721283406019],[-0.0682587698102,0.0059929117560387,0.02259374782443],[0.10699611157179,-0.041128486394882,-0.018042650073767]],[[-0.081365950405598,-0.035269912332296,-0.0020462286192924],[-0.053570829331875,0.028573388233781,0.059518083930016],[0.019009890034795,0.078722283244133,-0.021521959453821]],[[-0.032967496663332,0.06107784807682,0.050163723528385],[-0.024591129273176,-0.083947956562042,0.047203347086906],[-0.023639975115657,0.014677947387099,0.008896803483367]],[[-0.0001517710625194,0.075102344155312,0.055480469018221],[0.006805531680584,0.041946619749069,-0.032044913619757],[-0.016680365428329,0.037163984030485,-0.075502872467041]],[[0.033458318561316,0.039292629808187,0.029407989233732],[0.034857124090195,0.040189415216446,-0.011977533809841],[0.047101598232985,0.011987300589681,0.094462126493454]],[[0.046534195542336,-0.010941981337965,-0.054752897471189],[-0.018805358558893,-0.039588246494532,-0.013297483325005],[-0.013336415402591,-0.0060729486867785,0.081717409193516]],[[0.022448536008596,0.047350965440273,-0.083132594823837],[-0.064793787896633,0.036962572485209,0.016808746382594],[0.0015741313109174,0.057445872575045,0.058598101139069]],[[-0.0074653383344412,-0.023317076265812,-0.010790520347655],[0.01125440467149,0.041433166712523,-0.0096008395776153],[-0.069986119866371,-0.06025168672204,0.0063714371062815]],[[-0.033558439463377,0.0471216365695,-0.0025591023731977],[0.0099188219755888,0.027312213554978,-0.032972373068333],[0.055492118000984,0.012960211373866,-0.00027680449420586]],[[-0.0076636369340122,-0.0072302431799471,-0.031863432377577],[0.088664151728153,-0.056390259414911,-0.022788159549236],[0.005713349673897,-0.0085105979815125,-0.002279506996274]],[[0.028091287240386,0.084304481744766,-0.0074956892058253],[0.014813251793385,0.0091752680018544,0.0035577139351517],[-0.01419716142118,0.035930786281824,-0.057817667722702]],[[0.035457786172628,0.0085847731679678,0.023321509361267],[0.083067908883095,0.067965619266033,-0.018872082233429],[-0.0055194059386849,-0.029262278228998,0.022324914112687]],[[-0.063204020261765,-0.069362618029118,-0.018807917833328],[0.0020730127580464,-0.00099845486693084,0.016370078548789],[-0.019238481298089,0.020170643925667,-0.049428414553404]],[[0.036774531006813,-0.06682238727808,0.045127023011446],[0.00042757071787491,0.03105242177844,0.057181358337402],[0.038516536355019,0.028862912207842,-0.001135463709943]],[[0.0099643282592297,0.08287787437439,0.053175553679466],[0.011518358252943,-0.0064616557210684,-0.019364040344954],[-0.034909296780825,0.094339892268181,0.077707894146442]],[[0.0025578150525689,-0.0089557142928243,0.0479522831738],[0.01027272362262,0.095286317169666,-0.027637535706162],[-0.030851891264319,0.016205064952374,-0.0038305087946355]],[[-0.018858887255192,0.098432131111622,0.018162686377764],[0.029869101941586,0.088277019560337,-0.013969304040074],[0.0179114472121,0.047340769320726,0.058609187602997]],[[0.0012423868756741,-0.021168939769268,0.018471026793122],[0.052512638270855,0.032859537750483,0.068269118666649],[0.054959490895271,0.029953798279166,0.015532243996859]],[[-0.054017677903175,0.074831888079643,0.12347960472107],[0.031080001965165,0.082895174622536,0.029508791863918],[0.016195090487599,0.033659636974335,0.05516404658556]],[[0.012675479985774,0.028009902685881,0.066899292171001],[0.055527947843075,-0.05167818441987,0.059119313955307],[0.0078499196097255,0.060836721211672,0.026207573711872]],[[0.01656392775476,-0.0158929862082,0.0094462670385838],[-0.048994578421116,0.0091975321993232,-0.010765593498945],[0.054147493094206,0.032600544393063,0.034933004528284]],[[-0.012752027250826,0.045092921704054,0.039902649819851],[0.042219869792461,0.065798602998257,0.066501572728157],[-0.027482954785228,0.035719778388739,-0.039266027510166]],[[-0.0030026671011001,-0.031221721321344,0.031875882297754],[-0.041608575731516,0.036561328917742,-0.058443266898394],[-0.091236017644405,-0.019997697323561,0.0098545458167791]],[[-0.019612150266767,-0.025699896737933,0.028592269867659],[0.031621348112822,-0.033832132816315,0.0099665708839893],[0.0051081026904285,-0.064492799341679,0.0071186725981534]],[[0.021749246865511,0.012091107666492,0.054374806582928],[0.011259750463068,-0.032947592437267,0.093471966683865],[-0.00035966982250102,0.039246652275324,0.068994112312794]],[[-0.017977567389607,0.036222282797098,0.018638867884874],[0.095197699964046,0.067119956016541,0.073933057487011],[0.075842805206776,0.013476721942425,-0.052245818078518]],[[-0.016963800415397,0.042427204549313,-0.018658513203263],[-0.030203418806195,0.0078212879598141,0.022533351555467],[-0.036355711519718,0.026071187108755,-0.031064737588167]],[[-0.0081169269979,-0.0077376770786941,0.10171169787645],[-0.021925270557404,0.046423841267824,0.019923472777009],[0.067284040153027,-0.01915947906673,0.056643407791853]],[[0.022793024778366,0.051697611808777,0.082488097250462],[0.055254027247429,0.0050674588419497,0.035566657781601],[0.033304590731859,0.056781142950058,0.046216264367104]],[[0.04213560372591,0.024971127510071,-0.020584307610989],[0.039627704769373,-0.0028687252197415,0.00070359359961003],[-0.022578183561563,-0.032798901200294,0.044813022017479]],[[0.016816819086671,-0.030115393921733,-0.030737452208996],[0.0040636053308845,0.03847399353981,-0.024847533553839],[-0.04739498719573,0.025423396378756,0.040581148117781]],[[-0.070325382053852,-0.067175522446632,0.0074031995609403],[-0.12173334509134,-0.013883486390114,0.057664964348078],[0.071539685130119,0.047327555716038,-0.018999069929123]],[[-0.055031307041645,0.072909593582153,-0.0064423154108226],[0.034096300601959,0.057447034865618,0.028421713039279],[-0.0078043774701655,0.068837970495224,0.012965711764991]],[[0.031931694597006,-0.053468581289053,-0.019603742286563],[0.068034671247005,0.0091179311275482,-0.0096038831397891],[0.0031838021241128,0.061819549649954,0.017457224428654]],[[-0.008606874383986,0.042299706488848,-0.0041699758730829],[0.044926159083843,0.024375850334764,-0.015140019357204],[-0.0061892787925899,-0.028566729277372,0.060333982110023]],[[0.093399129807949,-0.025661254301667,0.098759219050407],[-0.0027465620078146,-0.066950462758541,0.025431906804442],[0.022413728758693,0.020512839779258,0.076047591865063]],[[-0.049889113754034,0.050072405487299,0.00022920410265215],[-0.052360534667969,0.0014903232222423,-0.031186074018478],[0.083639830350876,0.011306310072541,0.026983596384525]],[[-0.0089223897084594,0.09173209965229,0.055182132869959],[-0.025491245090961,-0.0222337115556,0.0099670365452766],[-0.006693001370877,0.14968234300613,-0.0033313641324639]],[[-0.034775990992785,-0.046693719923496,-0.057085603475571],[0.076522178947926,0.037373594939709,-0.056731205433607],[0.02086535282433,0.10895704478025,0.0021808785386384]],[[0.035124070942402,0.085692748427391,-0.0096485242247581],[0.034133896231651,-0.021216373890638,0.0054358062334359],[0.025043979287148,-0.024593207985163,-0.024922143667936]],[[0.0242341440171,0.042127475142479,0.074872471392155],[-0.0069523327983916,-0.033119451254606,-0.032543402165174],[-0.040887929499149,-0.081646926701069,-0.010095833800733]],[[-0.042317233979702,-0.036712925881147,-0.033561132848263],[-0.048956032842398,0.054052028805017,0.00072249019285664],[-0.040621027350426,0.0079529900103807,0.017746515572071]],[[0.0059826034121215,0.06370410323143,0.038485925644636],[-0.06547237932682,-0.016662713140249,-0.0074624228291214],[0.042392779141665,-0.0046872068196535,0.031180709600449]],[[-0.03442744165659,-0.0059534143656492,-0.027403108775616],[0.0073124025948346,0.11487518250942,0.086234875023365],[0.010870122350752,-0.018572775647044,-0.067760400474072]],[[0.067603349685669,0.015892149880528,0.024805583059788],[0.082309737801552,-0.053571399301291,-0.059568621218204],[0.036068886518478,0.018774770200253,-0.076486445963383]],[[0.0091211292892694,-0.033165261149406,0.0080129746347666],[-0.036581471562386,0.010158058255911,0.0013696121750399],[0.053345378488302,0.063188813626766,-0.010935275815427]],[[0.029215164482594,0.010870850645006,0.10640232264996],[-0.037012360990047,0.042911116033792,-0.038908366113901],[0.064857065677643,0.010972264222801,0.022518511861563]],[[-0.06060404330492,-0.0039599877782166,0.030540322884917],[-0.026698788627982,0.036528844386339,0.097802758216858],[0.097678765654564,0.017341418191791,0.0069580655544996]],[[0.038318641483784,0.032722264528275,0.035928018391132],[0.02767700329423,0.075990229845047,0.07383120059967],[-0.018496237695217,0.030010467395186,0.010183886624873]],[[-0.02808734588325,-0.010214541107416,0.036753263324499],[-0.083370566368103,0.013237002305686,-0.057377211749554],[0.091398790478706,0.012322451919317,0.010936417616904]],[[0.031896837055683,-0.079510234296322,-0.096395805478096],[-0.047570165246725,-0.050993707031012,-0.021432768553495],[0.043229632079601,-0.046178299933672,-0.072142384946346]],[[-0.021146032959223,-0.004383509978652,-0.040843408554792],[-0.079871952533722,0.037006385624409,-0.034546349197626],[0.053821157664061,-0.038449570536613,0.014106696471572]],[[0.055103980004787,0.032496564090252,0.04678688198328],[0.1339251101017,0.036356523633003,0.035172928124666],[0.075817950069904,-0.023735405877233,0.01126816123724]],[[-0.11168075352907,-0.06168420612812,0.032126754522324],[-0.046932965517044,0.090755119919777,-0.00071026495425031],[0.031358048319817,-0.02308289706707,0.0083942795172334]],[[-0.013836853206158,-0.0055564283393323,-0.042038898915052],[0.025084942579269,-0.07802976667881,-0.14401905238628],[-0.074705839157104,-0.032392781227827,0.007283478975296]],[[0.021178131923079,-0.010708310641348,0.092826709151268],[0.046154752373695,0.050902716815472,0.094534695148468],[0.011449120007455,-0.0085754618048668,0.036900408565998]],[[0.05407252535224,0.0069591216742992,0.020662441849709],[0.040741723030806,0.0058730393648148,-0.078891836106777],[0.054641306400299,0.012731602415442,-0.032229345291853]],[[-0.020740563049912,0.081088364124298,0.05999967828393],[0.043334405869246,0.0014631357043982,0.060330759733915],[0.044049710035324,0.13216552138329,0.10729184746742]],[[0.030192481353879,-0.061014942824841,-0.046343293040991],[-0.080417610704899,0.027355875819921,0.020950622856617],[0.034448198974133,-0.053938198834658,-0.016000870615244]]],[[[0.033590234816074,-0.0093532865867019,-0.00034254183992743],[-0.012807186692953,-0.0014221681049094,0.043296821415424],[-0.046271096915007,0.052587509155273,-0.11442773044109]],[[-0.018826339393854,0.0073966854251921,0.056568529456854],[0.061000492423773,-0.0077955564484,0.029142243787646],[0.01519672293216,0.073530159890652,-0.041372999548912]],[[0.040148299187422,0.035965368151665,-0.056156385689974],[-0.029746022075415,0.029323702678084,-0.005851122085005],[0.0004228035104461,0.016632461920381,0.044958900660276]],[[-0.0049793128855526,0.019740892574191,0.12064152956009],[-0.021701281890273,0.036260101944208,-0.041395839303732],[0.017275787889957,-0.03920091688633,0.025212990120053]],[[-0.0031869809608907,-0.088755339384079,-0.044894151389599],[-0.026665292680264,0.019154341891408,-0.011058747768402],[0.12068739533424,0.024821251630783,-0.050819016993046]],[[-0.069182813167572,-0.0765375867486,-0.079546704888344],[0.039081152528524,0.078864686191082,-0.025511618703604],[-0.057487096637487,0.055238366127014,0.08482600748539]],[[0.072241522371769,0.077809207141399,-0.032764498144388],[0.0065455390140414,-0.077820755541325,0.014041602611542],[-0.015638435259461,0.026082340627909,-0.0035468402784318]],[[0.017545770853758,-0.012619521468878,0.014729090034962],[0.041881553828716,0.024611283093691,-0.029850158840418],[-0.048531025648117,0.026443529874086,0.046556279063225]],[[0.0027453261427581,0.04293005540967,0.064609870314598],[-0.0198297444731,0.02969298325479,-0.00034879153827205],[0.047852374613285,0.06376913189888,0.10541935265064]],[[0.022105427458882,-0.0057114823721349,0.029578683897853],[0.070963598787785,0.13477300107479,0.038404576480389],[-0.074141353368759,0.01975298859179,0.045227106660604]],[[0.076831191778183,0.0049977549351752,0.092303559184074],[0.017750080674887,-0.0091482624411583,-0.055891513824463],[-0.0055945692583919,0.036315746605396,-0.0046399189159274]],[[0.0018865428864956,0.067849352955818,0.06880110502243],[0.090580508112907,0.023174351081252,0.044603280723095],[0.1033333465457,-0.024342341348529,-0.00057308049872518]],[[0.047299060970545,-0.031075283885002,-0.0010378110455349],[-0.035679537802935,0.017030794173479,0.1006687656045],[0.026104161515832,-0.023767720907927,-0.049724567681551]],[[0.032549228519201,-0.058099146932364,-0.0066896043717861],[0.048762734979391,0.033177319914103,0.010221652686596],[-0.010297023691237,0.027574338018894,0.094553016126156]],[[-0.025630470365286,0.065203756093979,0.021072253584862],[0.053221892565489,0.0095782307907939,0.16404883563519],[0.2162714600563,0.065819166600704,0.020188318565488]],[[0.000977732706815,0.0052211503498256,-0.025456808507442],[-0.037935346364975,-0.02249151468277,-0.084805257618427],[-0.018355578184128,-0.096380725502968,-0.046403143554926]],[[-0.047202955931425,-0.010670986957848,-0.0033447416499257],[0.0071027618832886,-0.045336585491896,0.025480633601546],[-0.13270987570286,0.0021355575881898,0.013810398057103]],[[-0.012725593522191,-0.068840116262436,-0.012894190847874],[0.030296191573143,-0.049501966685057,-0.0090090809389949],[-0.097592994570732,0.030937448143959,0.052949748933315]],[[0.014720146544278,-0.10970298945904,-0.0072220526635647],[0.011496225371957,-0.0058135981671512,0.031972005963326],[0.0281390119344,-0.095789052546024,0.0081518357619643]],[[0.016010859981179,-0.016692524775863,-0.00099389534443617],[0.014231138862669,-0.022930633276701,0.03580654039979],[0.037673436105251,-0.024335838854313,0.031237058341503]],[[-0.038833398371935,0.058299206197262,-0.0084324078634381],[-0.043054077774286,0.072192214429379,-0.081431433558464],[0.013739679940045,0.065767072141171,0.032451823353767]],[[0.066070221364498,0.028953570872545,0.017855785787106],[-0.085970804095268,0.11125976592302,-0.0032577929086983],[0.066873736679554,-0.020798517391086,-0.041521348059177]],[[-0.084440067410469,-0.037773735821247,-0.053255945444107],[-0.01088388543576,0.070867858827114,-0.030907100066543],[0.1197996661067,0.051360830664635,0.061261177062988]],[[-0.014893068000674,0.041586257517338,-0.035441901534796],[-0.009673148393631,-0.012633731588721,0.012999091297388],[0.0099147958680987,0.027387954294682,-0.063212372362614]],[[0.074632167816162,0.079662196338177,-0.0044598877429962],[-0.018494641408324,0.014884631149471,0.069422863423824],[0.051793321967125,-0.038845889270306,-0.046253696084023]],[[-0.10777135193348,0.030412198975682,0.067798666656017],[0.10702284425497,0.061631135642529,-0.015163838863373],[0.032733112573624,-0.040937952697277,0.037591695785522]],[[0.080562151968479,0.075647041201591,-0.046004164963961],[0.046972692012787,-0.082835555076599,-0.014884613454342],[-0.013313481584191,0.016203969717026,0.012563745491207]],[[0.00063331262208521,-0.056683909147978,0.012403707951307],[0.1505433768034,0.086365334689617,0.05187314376235],[-0.0469243042171,0.047191798686981,0.050502847880125]],[[-0.15782658755779,0.065436705946922,-0.0024074921384454],[-0.019899994134903,-0.0015024360036477,0.024915713816881],[0.081884481012821,0.052754282951355,0.030495032668114]],[[-0.0083596557378769,-0.009700994938612,0.019813654944301],[0.057587251067162,0.0013165150303394,0.016473134979606],[0.062994800508022,0.038570422679186,-0.013375813141465]],[[-0.030139245092869,-0.020075445994735,-0.034363329410553],[0.056131266057491,-0.00092679786030203,0.04797350615263],[0.028699984773993,-0.026919066905975,-0.014732311479747]],[[0.031674936413765,0.069352872669697,-0.02202020958066],[-0.048034437000751,-0.025019926950336,0.03260475024581],[-0.020089542493224,0.024510852992535,-0.087898351252079]],[[-0.0083638112992048,0.017257573083043,0.027998231351376],[0.049058895558119,-0.068555779755116,0.10423167794943],[-0.0037718317471445,0.033864825963974,0.02046331577003]],[[0.040093351155519,0.0064557543955743,0.058408908545971],[0.0061173951253295,-0.0074407965876162,0.031994547694921],[-0.023023249581456,0.032887067645788,0.0013348374050111]],[[-0.019732980057597,0.032977920025587,0.054539278149605],[0.039612334221601,0.034595225006342,-0.068712167441845],[-0.025406384840608,-0.037959787994623,0.039966724812984]],[[0.030084392055869,0.012882918119431,-0.077486142516136],[-0.0083152232691646,-0.025846591219306,0.019216027110815],[-0.0077174338512123,0.028202058747411,-0.059532847255468]],[[0.0053660329431295,-0.027124051004648,-0.083226099610329],[0.020614642649889,-0.026951437816024,-0.082068793475628],[-0.10281984508038,-0.018293021246791,0.033900577574968]],[[-0.036028064787388,0.05159654468298,0.019214700907469],[-0.023393435403705,0.10008675605059,0.070430494844913],[-0.056982103735209,0.012036242522299,-0.014536977745593]],[[0.035026773810387,0.025911524891853,-0.010589034296572],[0.033647041767836,-0.053963076323271,0.082509361207485],[0.016293436288834,0.011006822809577,-0.053925883024931]],[[-0.097234211862087,0.0065109226852655,0.10763493925333],[-0.086368374526501,0.0027746595442295,-0.029970677569509],[-0.016249276697636,-0.014094796031713,0.069928079843521]],[[-0.029641339555383,-0.086147367954254,0.010449688881636],[-0.0054725352674723,-0.082850731909275,0.042150337249041],[0.017062768340111,0.0029230068903416,-0.069027796387672]],[[-0.053131949156523,-0.0020528777968138,-0.017954980954528],[0.042744379490614,-0.035207632929087,0.035982325673103],[-6.8482033384498e-05,0.037878472357988,0.013245558366179]],[[0.026753401383758,0.027750488370657,0.011740130372345],[0.062531366944313,0.033122673630714,0.020000213757157],[-0.012888262048364,0.036637246608734,-0.029739905148745]],[[-0.0035792607814074,-0.015554734505713,-0.019136644899845],[-0.05237253382802,0.039624348282814,0.037280887365341],[-0.016933109611273,0.082060128450394,-0.035824120044708]],[[-0.011425094678998,0.081730395555496,0.043092776089907],[-0.013265018351376,0.085565738379955,0.003063713433221],[0.045544695109129,0.056578628718853,-0.010272674262524]],[[0.0094385128468275,0.073523581027985,0.098294384777546],[0.072769962251186,0.089901179075241,0.026408633217216],[0.012761308811605,-0.030751207843423,-0.002834846265614]],[[0.033823255449533,0.054589055478573,0.041526958346367],[0.0090447952970862,0.068570174276829,0.018323833122849],[-0.012597880326211,0.03779100254178,0.022888209670782]],[[-0.043642576783895,0.048202466219664,0.0087571190670133],[0.012639058753848,-0.02659467048943,0.041819047182798],[-0.021732335910201,0.02152855694294,0.082147173583508]],[[-0.01335162203759,0.051062036305666,-0.0034273257479072],[-0.068632408976555,0.043972741812468,0.033187314867973],[0.010024322196841,0.012026239186525,0.036772135645151]],[[0.03930402547121,0.022585537284613,0.013634859584272],[-0.034593649208546,-0.03452418372035,0.034897655248642],[0.019828330725431,-0.00036566067137755,-0.032249867916107]],[[-0.059842638671398,0.019735956564546,0.071071058511734],[0.010127088055015,-0.043384119868279,-0.044589336961508],[0.099956713616848,0.028326861560345,-0.0033773076720536]],[[0.040911629796028,0.0042395684868097,-0.067848406732082],[-0.014524941332638,-0.0016044720541686,0.079376928508282],[-0.03670359775424,0.031842954456806,-0.046472728252411]],[[-0.11708447337151,0.0018593806307763,-0.0077214012853801],[0.03471639379859,0.014854264445603,0.085291624069214],[0.0070466874167323,-0.066337533295155,-0.014796518720686]],[[0.058596961200237,0.020598275586963,0.099209226667881],[0.066719986498356,-0.021418688818812,0.043285384774208],[0.053522430360317,-0.063617847859859,-0.047215431928635]],[[0.034833010286093,0.030606180429459,0.045175898820162],[-0.098782129585743,-0.033762138336897,0.041004005819559],[0.032150097191334,0.024063549935818,-0.060363333672285]],[[-0.064212888479233,6.5576779888943e-05,0.0046656941995025],[0.0323351547122,-0.029658086597919,-0.029180699959397],[0.02729732170701,0.0037179191131145,0.028599238023162]],[[0.047225408256054,-0.090992517769337,-0.052020195871592],[0.028787972405553,-0.0069402293302119,0.049553584307432],[-0.048470519483089,0.038272880017757,-0.028489865362644]],[[-0.0076759411022067,0.00010012507846113,0.0060155438259244],[-0.0087486347183585,-0.0085614863783121,-0.055016443133354],[-0.01996248960495,-0.07178883254528,0.010713101364672]],[[0.046864986419678,-0.016433412209153,0.033286217600107],[0.031328056007624,-0.014281370677054,0.045012716203928],[0.11182583123446,0.02375678345561,0.0060029751621187]],[[0.055748965591192,0.0075512328185141,-0.091918922960758],[0.016822695732117,-0.0094059072434902,0.023889072239399],[0.0039880722761154,0.035240951925516,-0.021303575485945]],[[0.028562717139721,-0.035474248230457,0.0073358342051506],[0.002432230161503,0.023140102624893,0.072577200829983],[0.028336042538285,0.058541398495436,0.020569605752826]],[[-0.019267316907644,0.046140469610691,0.019252218306065],[-0.00029958866070956,-0.016697751358151,-0.033998440951109],[0.024687310680747,0.030179573222995,-0.00075585138984025]],[[-0.050218097865582,0.0087190875783563,-0.032582879066467],[-0.039706133306026,0.065914526581764,-0.020827353000641],[-0.004637785255909,0.034435842186213,0.019403759390116]],[[0.066519029438496,-0.0030323327519,0.0063503589481115],[0.011474753729999,0.03852828219533,-0.013582944869995],[0.038492731750011,-0.0014851490268484,0.026361992582679]],[[-0.028606127947569,0.020924996584654,-0.0712845697999],[0.0038743307814002,0.0045277746394277,0.040051080286503],[0.090047538280487,0.073782667517662,-0.034269437193871]],[[0.028308417648077,-0.0080111566931009,0.13868688046932],[-0.0060553285293281,-0.054079405963421,-0.08794678747654],[0.047072965651751,-0.028634045273066,-0.015466708689928]],[[0.069593980908394,0.076124995946884,0.004252415150404],[0.042503569275141,0.096378810703754,-0.014717932790518],[0.085615560412407,0.054196547716856,0.021186532452703]],[[0.056700583547354,0.052359335124493,0.050652217119932],[0.11564738303423,-0.020846636965871,0.035633038729429],[0.044219329953194,0.038676042109728,0.036271505057812]],[[-0.025931334123015,-0.025409188121557,0.0092482399195433],[-0.051397185772657,-0.071022547781467,-0.014364191330969],[0.015216892585158,-0.013700750656426,0.028917005285621]],[[-0.019245021045208,0.018558634445071,-0.023173782974482],[-0.029336750507355,0.11688742041588,-0.020328959450126],[-0.013012901879847,0.046097483485937,-0.034231096506119]],[[-0.0492755882442,-0.037904892116785,-0.12169671803713],[-0.019169379025698,0.049540564417839,0.047754757106304],[0.032056819647551,-0.01888258382678,-0.072050735354424]],[[-0.023323496803641,0.00681311218068,0.034683223813772],[0.045857451856136,0.027641464024782,-0.06124858930707],[-0.012170194648206,0.049299638718367,-0.041410882025957]],[[0.011525431647897,-0.013626831583679,-0.0024950543884188],[0.026254588738084,0.10729899257421,0.059356357902288],[0.018869588151574,0.047335047274828,-0.024526834487915]],[[0.02461738884449,0.011000351980329,0.01936300098896],[0.065383523702621,0.020042276009917,0.006129814311862],[-0.016198676079512,0.061750434339046,-0.069729253649712]],[[-0.018380831927061,0.048402700573206,-0.056489165872335],[0.070290423929691,0.0037094347644597,-0.075517043471336],[-0.036503288894892,-0.029824733734131,-0.042077247053385]],[[0.0030348969157785,0.062995761632919,-0.021038601174951],[0.043944884091616,0.018349383026361,-0.022798109799623],[-0.067179337143898,0.071494199335575,-0.066954202950001]],[[0.027955794706941,-0.059720449149609,0.035085368901491],[-0.018718702718616,0.029994981363416,-0.01957038603723],[-0.034333128482103,0.022389037534595,0.0043041994795203]],[[0.025589130818844,0.035320911556482,0.01544229965657],[0.0048982687294483,0.10885892808437,-0.037343200296164],[0.10358388721943,-0.022905774414539,-0.017135405912995]],[[0.086807489395142,-0.029074924066663,0.065076731145382],[-1.0973669759551e-06,-0.0062142633832991,0.019414011389017],[-0.020792363211513,-0.037128910422325,0.048986949026585]],[[-0.12013481557369,-0.017308389768004,0.044287499040365],[0.019047876819968,0.016621550545096,0.054959006607533],[-0.01355317234993,-0.049814727157354,-0.032656904309988]],[[0.032731384038925,-0.013049203902483,0.029432605952024],[-0.049647659063339,-0.049507699906826,0.087729707360268],[-0.019820846617222,-0.035515613853931,0.0074632386676967]],[[0.031905807554722,-0.046471331268549,0.075924307107925],[0.040358059108257,-0.073245227336884,0.093323975801468],[-0.045943416655064,-0.081835225224495,-0.064113460481167]],[[0.046579632908106,0.073218524456024,-0.021953521296382],[-0.055423926562071,-0.019521556794643,0.069881111383438],[0.12377584725618,0.032779321074486,-0.054913479834795]],[[0.030347961932421,0.0056390659883618,-0.00071886769728735],[-0.0017753500724211,0.032482601702213,0.029501473531127],[-0.0012131371768191,0.066533610224724,-0.030392246320844]],[[-0.066589958965778,0.045110430568457,0.018259296193719],[-0.032335840165615,-0.044428281486034,0.046509623527527],[0.026979407295585,-0.029908096417785,-0.022267695516348]],[[-0.083719275891781,-0.066916219890118,0.035757217556238],[-0.059249453246593,-0.045057974755764,-0.019928542897105],[-0.022088784724474,0.015352634713054,-0.010667391121387]],[[-0.069066852331161,0.068315900862217,-0.064269348978996],[-0.04856001585722,0.067903824150562,-0.035895712673664],[0.012577337212861,-0.028503235429525,-0.10964392870665]],[[0.054686613380909,-0.069359712302685,0.036408945918083],[0.11564312875271,0.061606138944626,0.10858246684074],[0.052031502127647,-0.015724902972579,-0.014352661557496]],[[0.054225377738476,-0.021004347130656,-0.035858817398548],[-0.018041284754872,-0.084132663905621,0.043004259467125],[-0.0018793204799294,0.016909502446651,0.0026239096187055]],[[-0.055505104362965,0.043093960732222,-0.045111503452063],[0.0074510360136628,0.00097069714684039,0.046345505863428],[-0.0032193209044635,0.012203480117023,-0.0061011356301606]],[[-0.0060252682305872,0.053447790443897,-0.00057521829148754],[-0.013503544963896,0.019669095054269,-0.027695761993527],[0.025781890377402,0.031683325767517,-0.016826849430799]],[[-0.027206264436245,-0.0062768654897809,0.030615700408816],[-0.020838519558311,0.10155506432056,0.023208132013679],[0.0028900494799018,0.042460322380066,0.0054273121058941]],[[0.0058339429087937,-0.076260536909103,-0.0080687012523413],[0.0040937848389149,-0.018559500575066,0.030900401994586],[0.0043161334469914,0.016003238037229,-0.017058944329619]],[[-0.014647417701781,-0.014008897356689,0.012881005182862],[0.043665267527103,-0.0044978060759604,0.021610833704472],[0.022790329530835,-0.0063497205264866,-0.0025662702973932]],[[0.0091688968241215,-0.0043736342340708,0.0070065069012344],[-0.083414174616337,-0.050350684672594,0.016615690663457],[-0.06933755427599,0.10449314117432,0.056192599236965]],[[0.040408574044704,-0.06420487165451,0.033959534019232],[0.034928619861603,0.032091286033392,-0.0071686208248138],[0.040848437696695,0.1338238120079,0.045707903802395]],[[-0.036725759506226,0.0092676766216755,0.0057776104658842],[0.039523407816887,0.01446086820215,-0.0093646766617894],[0.04077247902751,0.087698452174664,0.022620873525739]],[[0.014150469563901,0.037130683660507,0.025668127462268],[-0.045415915548801,0.025100227445364,0.0023999812547117],[0.14711426198483,0.014985500834882,-0.024600852280855]],[[-0.031008379533887,-0.087415918707848,0.046792216598988],[0.0091842608526349,0.084747344255447,0.0033244458027184],[0.028610602021217,-0.083391644060612,0.077196680009365]],[[-0.0015084424521774,0.021670076996088,0.10086919367313],[0.042194101959467,-0.0053860428743064,0.0081134047359228],[0.042368289083242,-0.00098303321283311,0.035162542015314]],[[0.01348321326077,-0.013948849402368,-0.073444202542305],[0.0030041991267353,-0.05611889064312,-0.042660042643547],[0.093642078340054,-0.0040880856104195,0.030234925448895]],[[0.064588956534863,0.016394935548306,0.072907857596874],[0.03180717676878,-0.015855124220252,0.023999202996492],[0.02096183039248,-0.00058724556583911,-0.053363550454378]],[[0.032772839069366,-0.067912340164185,0.018832636997104],[-0.021909954026341,0.005894539412111,0.010273584164679],[0.13379779458046,0.037183299660683,0.023092402145267]],[[0.0055806315504014,0.047952193766832,-0.045480359345675],[0.030324021354318,-0.030322302132845,-0.046185880899429],[0.023068077862263,0.14898030459881,-0.078257612884045]],[[0.034311056137085,0.061568561941385,-0.014075151644647],[-0.03654195740819,-0.052470546215773,0.045908484607935],[-0.036820895969868,-0.0059369187802076,0.056908559054136]],[[0.058571241796017,-0.018155440688133,-0.028862362727523],[-0.025626854971051,0.015507796779275,0.03874833509326],[-0.037449527531862,0.077054463326931,-0.018961656838655]],[[-0.064263947308064,-0.016183322295547,-0.053220555186272],[-0.011165503412485,-0.041254293173552,-0.020175110548735],[0.086371682584286,0.074672535061836,0.02106779627502]],[[-0.0061524324119091,0.061530835926533,0.03242864459753],[0.036227058619261,0.038235682994127,-0.11046304553747],[0.030878836289048,0.02851889282465,-0.11657635122538]],[[0.058516852557659,0.0054602269083261,0.0058800540864468],[0.031251136213541,0.0458091981709,0.033003602176905],[0.11278827488422,0.032398995012045,-0.018868286162615]],[[-0.037443645298481,0.026979541406035,-0.047964878380299],[-0.071978650987148,-0.036137886345387,-0.012437390163541],[0.024250786751509,0.080134958028793,0.073852546513081]],[[-0.017389455810189,-0.035617534071207,-0.031616296619177],[-0.021428305655718,-0.045560956001282,0.072105437517166],[0.061015050858259,0.051024150103331,-0.072815552353859]],[[0.031807221472263,-0.0038425964303315,0.021201154217124],[-0.020608665421605,0.0014821940567344,-0.042741190642118],[-0.0014758158940822,0.038454975932837,0.030814081430435]],[[0.11971135437489,0.03275865316391,-0.047506231814623],[-0.022211980074644,0.059138707816601,-0.010799610987306],[-0.023974433541298,-0.049537479877472,0.019653769209981]],[[0.018697910010815,-0.037912059575319,0.095034502446651],[-0.063115485012531,-0.078414402902126,0.02851265668869],[-0.018221080303192,0.03283004462719,0.001448726747185]],[[-0.037028338760138,0.035941753536463,0.0066190315410495],[-0.008533351123333,0.032879684120417,0.011542920954525],[0.025477815419436,-0.013538032770157,0.050123453140259]],[[-0.0094689894467592,-0.083356305956841,-0.058066755533218],[-0.024127090349793,0.035575095564127,-0.092038527131081],[-0.031936697661877,-0.055833086371422,0.012392342090607]],[[0.051093533635139,0.043307017534971,0.039397735148668],[-0.059159889817238,0.018533254042268,0.036012105643749],[-0.0027346427086741,0.068249456584454,0.023862406611443]],[[-0.056322541087866,0.047382462769747,0.041363183408976],[-0.0098815727978945,0.028804821893573,0.019963832572103],[0.066790528595448,-0.027560219168663,-0.052593719214201]],[[-0.04826145991683,-0.0051157707348466,-0.028313482180238],[-0.014025962911546,0.021706558763981,0.025037076324224],[0.067409873008728,0.0023912477772683,0.021556116640568]],[[-0.048129502683878,-0.036020133644342,0.026034383103251],[-0.099333390593529,-0.045732114464045,-0.13962805271149],[-0.012244183570147,0.037509974092245,0.020619822666049]],[[-0.03238720074296,0.095504783093929,-0.024174857884645],[-0.019522512331605,0.062949411571026,-0.014006678014994],[0.0098382299765944,-0.033915352076292,-0.0018491303781047]],[[0.036958932876587,0.037109542638063,-0.020143248140812],[0.030227947980165,-0.017691707238555,0.017831394448876],[0.09148695319891,0.029323922470212,-0.054223272949457]],[[-0.019077854231,0.00048379343934357,0.032128501683474],[0.15304338932037,0.021314846351743,-0.028137568384409],[0.00056331872474402,-0.023102832958102,0.00025472196284682]],[[0.02777274698019,0.052846804261208,-0.00083010725211352],[-0.027494210749865,0.061425689607859,-0.034186396747828],[0.062199179083109,-0.0055904467590153,-0.068200536072254]],[[-0.010675045661628,0.03385616093874,0.04619212448597],[0.034550260752439,0.056869886815548,0.028953721746802],[0.037244137376547,-0.014021228067577,0.030105952173471]],[[0.029693311080337,0.03853989765048,0.065148174762726],[0.045412044972181,-0.027025520801544,0.032386496663094],[-0.051547430455685,-0.034401502460241,0.0032894504256546]],[[0.051329642534256,0.09567516297102,0.02308945544064],[-0.03676075860858,-0.089003801345825,0.060538124293089],[0.047397371381521,0.044163342565298,0.0049100727774203]],[[-0.019098546355963,0.025967333465815,0.021155053749681],[-0.014363299123943,-0.011444230563939,0.054191924631596],[-0.016579378396273,-0.047649640589952,-0.076799400150776]]],[[[0.0086835008114576,-0.028950493782759,0.067251555621624],[-0.0043968274258077,0.030181150883436,-0.015857610851526],[0.0036188773810863,-0.020638825371861,0.041747782379389]],[[-0.045117549598217,0.06349091976881,0.0018130952958018],[0.0080174095928669,0.043980829417706,-0.013054336421192],[0.023823181167245,-0.024034896865487,0.0074023688212037]],[[-0.022625595331192,0.059402763843536,-0.064106747508049],[-0.0031501583289355,-0.020521448925138,-0.016467059031129],[0.092069320380688,0.018724996596575,-0.042722262442112]],[[0.0016371490200981,0.014262348413467,0.048484221100807],[0.051526609808207,-0.0091310935094953,0.10893392562866],[0.044277094304562,-0.012258486822248,-0.018010530620813]],[[-0.011819400824606,0.024158541113138,-0.026860449463129],[-0.0026467402931303,0.023418026044965,0.017441924661398],[0.039318460971117,0.054346408694983,0.031825192272663]],[[0.02636262960732,0.023694245144725,0.043250299990177],[0.030591955408454,-0.0068230428732932,-0.019267359748483],[0.030873442068696,-0.029673544690013,-0.063964448869228]],[[0.057819176465273,0.078996010124683,-0.069392889738083],[0.020898010581732,0.047915082424879,0.025698976591229],[-0.028059778735042,0.01702805608511,-0.05649695917964]],[[0.036766242235899,-0.02281142026186,0.024543169885874],[0.04654710367322,-0.047486674040556,-0.048768565058708],[0.077246241271496,0.040989480912685,0.096250206232071]],[[-0.010405062697828,-0.001875807880424,0.016827085986733],[-0.014281652867794,-0.023296931758523,0.012314505875111],[0.059868544340134,0.045031782239676,-0.014284076169133]],[[-0.057391580194235,0.054055169224739,-0.039744898676872],[0.037660408765078,0.0069266748614609,0.0079758372157812],[0.11746022105217,-0.034584663808346,0.037476848810911]],[[-0.038491263985634,0.0032403466757387,-0.027571408078074],[-0.020811051130295,0.047108680009842,0.043747831135988],[-0.12865284085274,-0.086961418390274,-0.050368349999189]],[[-0.019306503236294,-0.03819128125906,-0.0096521815285087],[-0.053275670856237,-0.053663514554501,-0.0058823334984481],[-0.013949001207948,-0.076740495860577,0.067074500024319]],[[0.016776455566287,0.14531625807285,0.027142180129886],[-0.017728451639414,0.025877704843879,0.028006628155708],[0.031243169680238,-0.064669735729694,-0.043926313519478]],[[0.06286858022213,0.07045091688633,0.045783631503582],[-0.02055149897933,-0.035026423633099,-0.024321915581822],[-0.049405142664909,-0.03633501380682,0.037954110652208]],[[0.039614669978619,0.011242193169892,-0.064362309873104],[-0.071772731840611,0.095090880990028,-0.014973039738834],[-0.0060175764374435,0.018116829916835,0.018402934074402]],[[-0.0051396242342889,-0.05044662207365,-0.074382431805134],[-0.021524770185351,-0.028617464005947,0.019610792398453],[0.013653467409313,0.022466538473964,0.025694552809]],[[0.0070434217341244,-0.018693657591939,0.053289413452148],[0.002878702012822,0.03641652315855,-0.054233960807323],[0.0481539927423,-0.044777095317841,0.018375238403678]],[[-0.084876984357834,0.011164121329784,-0.023532984778285],[0.013158765621483,0.037981025874615,0.043988805264235],[0.035988204181194,0.012196979485452,-0.03988229110837]],[[0.052497491240501,0.00773253897205,-0.0098238196223974],[0.0088800890371203,0.041070312261581,0.030566900968552],[0.0091864019632339,0.042569871991873,-0.033323485404253]],[[-0.030367664992809,-0.071997746825218,-0.090209171175957],[0.068873465061188,-0.015303248539567,0.034577589482069],[-0.03042840026319,0.039171375334263,-0.061509855091572]],[[0.0071293096989393,-0.017400020733476,-0.040876679122448],[-0.010635824874043,0.0037892444524914,-0.014132747426629],[0.0068637826479971,-0.020563909783959,-0.059554506093264]],[[-0.0099285151809454,0.0051158792339265,0.093409784138203],[0.017469119280577,-0.08028556406498,-0.051895249634981],[0.010163219645619,-0.082011379301548,0.060142707079649]],[[0.06531485915184,-0.032099816948175,-0.012983714230359],[-0.03028223477304,-0.035829473286867,0.014122566208243],[0.050626568496227,0.0079344706609845,-0.066503815352917]],[[-0.018008137121797,-0.078040018677711,-0.011518625542521],[0.01661778241396,-0.060534659773111,1.8493228708394e-06],[-0.019376812502742,-0.0094849513843656,-0.037047483026981]],[[0.0079074297100306,0.030258430168033,-0.0071871778927743],[-0.022946337237954,0.0085420031100512,0.057445596903563],[-0.0054223272018135,0.01198541931808,-0.0074377371929586]],[[0.029230611398816,0.0057157729752362,-0.045486994087696],[0.10042779147625,0.0045308987610042,0.02764774300158],[0.076291002333164,-0.010907188989222,0.0016324445605278]],[[0.053541973233223,0.0046718590892851,0.0074495631270111],[0.022039227187634,-0.096969224512577,-0.07519519329071],[-0.014441955834627,-0.054390348494053,-0.038443636149168]],[[0.067281730473042,0.044433433562517,0.035224657505751],[-0.057438645511866,-0.056965358555317,-0.0477105230093],[-0.013680317439139,-0.081335507333279,-0.022403502836823]],[[0.018556609749794,0.026720058172941,-0.015106940641999],[-0.053508281707764,0.055709533393383,0.016939220950007],[-0.040200680494308,0.015045117586851,0.033281490206718]],[[0.036157086491585,-0.087464347481728,0.0078263618052006],[0.021596383303404,-0.052537206560373,-0.010032840073109],[0.017850644886494,0.025323277339339,-0.021053420379758]],[[-0.068002298474312,-0.029144937172532,0.023477371782064],[-0.010394003242254,0.043822526931763,0.0057049016468227],[-0.014956688508391,-0.022710546851158,-0.022717971354723]],[[-0.047336272895336,0.074292935431004,0.032799627631903],[0.06449194252491,0.0065630180761218,0.01582096517086],[-0.01992523483932,0.016065923497081,-0.025122333317995]],[[0.026414263993502,-0.016670968383551,-0.048951186239719],[0.069897584617138,-0.019005941227078,-0.0013335840776563],[-0.011517819948494,0.025869874283671,-0.1003336161375]],[[0.073659032583237,-0.040308892726898,0.053791128098965],[0.018615322187543,-0.028331959620118,-0.050110001116991],[-0.02343924343586,-0.041649587452412,-0.050368878990412]],[[-0.07246807962656,-0.041931144893169,0.044273961335421],[0.0083698593080044,-0.0017276555299759,0.011456223204732],[0.025950703769922,-0.0098255164921284,0.011299554258585]],[[-0.044512029737234,0.0014421071391553,0.023378774523735],[0.019364770501852,0.010843003168702,0.034065544605255],[0.010806648060679,-0.0065304543823004,0.085286937654018]],[[0.001268086140044,-0.038104746490717,-0.010965650901198],[-0.054694555699825,-0.009375830180943,0.013755715452135],[-0.031908925622702,0.098260052502155,0.01840010471642]],[[0.057867456227541,-0.019968204200268,-0.041663572192192],[0.026298036798835,0.017442923039198,0.038518086075783],[0.01349338889122,0.02042680606246,-0.032020680606365]],[[0.033987656235695,-0.056588027626276,0.00518698990345],[0.019416999071836,0.04038792848587,-0.078225679695606],[0.0039492887444794,-0.054120250046253,-0.0035997391678393]],[[-0.020107882097363,-0.001174122444354,0.025586303323507],[0.051030308008194,0.002084419131279,0.047455307096243],[0.045263674110174,-0.016407115384936,-0.035475287586451]],[[0.021112659946084,0.072983473539352,0.05847355350852],[0.012191499583423,-0.051409713923931,-0.0039339736104012],[0.052754167467356,-0.051291652023792,-0.03354762122035]],[[0.061678998172283,-0.035289447754622,0.014993051066995],[0.0010250745108351,-0.0028985680546612,-0.024285515770316],[0.015958089381456,0.006682557053864,-0.025697821751237]],[[0.061460319906473,0.0109325600788,0.011635019443929],[-0.026503683999181,0.018066240474582,-0.033320520073175],[0.045956406742334,0.0027712322771549,-0.014190183021128]],[[-0.066353611648083,-0.036432441323996,-0.02871210873127],[-0.082404963672161,-0.010444609448314,-0.063143238425255],[-0.049164716154337,0.051592614501715,0.061575710773468]],[[0.062058832496405,-0.0053626834414899,0.031423598527908],[-0.036521185189486,-0.03343116492033,-0.007966018281877],[0.029003709554672,-0.064893491566181,0.0094159264117479]],[[-0.052152063697577,-0.0042166970670223,0.032839931547642],[-0.086134441196918,0.028919426724315,0.025200990960002],[-0.073656313121319,0.010173562914133,-0.024273380637169]],[[0.043467704206705,0.041531834751368,-0.0062013589777052],[-0.031524445861578,-0.13969933986664,-0.0028531206771731],[0.010499890893698,-0.018950002267957,0.0044383741915226]],[[0.0044833575375378,0.024070862680674,-0.023190204054117],[0.025000441819429,-0.050016287714243,0.091872900724411],[-0.024259988218546,0.051724877208471,0.085198722779751]],[[-0.050678759813309,-0.041537076234818,-0.050036370754242],[0.059348233044147,-0.031938303261995,0.031607817858458],[0.019924463704228,0.038130655884743,0.027119612321258]],[[0.043098617345095,-0.0082450313493609,-0.0067789563909173],[-0.021967120468616,-0.016085250303149,0.048668589442968],[0.018739178776741,0.021004566922784,-0.025511983782053]],[[-0.094295561313629,0.02532134577632,0.0012564409989864],[0.06222689896822,-0.082270905375481,-0.064197696745396],[0.0038107126019895,0.039334151893854,-0.061366595327854]],[[0.013065658509731,0.02191299572587,0.028321109712124],[-0.001782950013876,0.00020227817003615,-0.062399111688137],[0.011202122084796,0.0036731022410095,-0.023926543071866]],[[0.011971097439528,0.046491734683514,0.14189517498016],[-0.015445911325514,0.021160962060094,-0.082882210612297],[-0.020614037290215,0.031830091029406,-0.0086084641516209]],[[0.089231751859188,-0.016378525644541,0.0016497536562383],[-0.043080069124699,0.066420458257198,0.022032957524061],[-0.074793942272663,0.043790251016617,-0.00071521627251059]],[[0.027131905779243,0.021166933700442,-0.01928929798305],[-0.045836824923754,-0.038273967802525,0.10843659937382],[0.024834483861923,-0.040129747241735,-0.0047805667854846]],[[-0.047849174588919,-0.035592962056398,-0.029570775106549],[0.0087551241740584,-0.070453718304634,-0.033050820231438],[0.033059608191252,0.012000458315015,0.03479951992631]],[[0.018363744020462,0.036614239215851,-0.007751124445349],[0.032294742763042,0.037920411676168,0.058016415685415],[-0.044837325811386,0.013369323685765,0.0190515127033]],[[0.056433439254761,0.034759406000376,-0.027063684538007],[-0.017708709463477,0.011331937275827,-0.0084240399301052],[-0.0043608024716377,-0.013400873169303,-0.0047613326460123]],[[-0.014563469216228,-0.07326927781105,0.05413943529129],[-0.011929401196539,0.0049566454254091,-0.022764191031456],[0.079945310950279,0.078244745731354,-0.010472130961716]],[[-0.069700442254543,-0.024769771844149,-0.019136754795909],[0.060973718762398,-0.029337411746383,0.035375770181417],[0.018769608810544,-0.10090761631727,0.037849940359592]],[[0.024729065597057,0.010678674094379,-0.13892412185669],[-0.064582452178001,-0.030944779515266,0.016882058233023],[0.017694359645247,-0.033662721514702,-0.025420190766454]],[[0.07310850918293,0.02997437492013,-0.020981376990676],[-0.054657321423292,-0.06016868725419,-0.055624723434448],[-0.024077197536826,0.034445058554411,0.054010033607483]],[[0.004161742515862,-0.010777969844639,-0.035125806927681],[0.050741255283356,-0.023436183109879,-0.031306102871895],[0.0053933393210173,-0.013229487463832,0.058431349694729]],[[0.0024578797165304,0.054606687277555,-0.0044302567839622],[-0.0030984431505203,0.027827369049191,0.023963624611497],[-0.040340907871723,0.0068840649910271,-0.016930835321546]],[[0.052577324211597,0.017313100397587,0.045418187975883],[-0.016140917316079,-0.014645482413471,-0.034546565264463],[0.016745919361711,0.010165381245315,-0.0086637306958437]],[[-0.019170969724655,0.041214097291231,-0.098215781152248],[0.035690542310476,0.070162519812584,-0.029032174497843],[0.0065228724852204,0.01409116294235,-0.11649129539728]],[[0.022455239668489,0.050081100314856,0.014670157805085],[0.086048476397991,0.010898668318987,0.038675677031279],[0.020266501232982,-0.0082967998459935,-0.0069684740155935]],[[0.028618793934584,0.025508007034659,0.014324076473713],[0.070492058992386,-0.048751246184111,0.078950360417366],[-0.035169132053852,0.033149808645248,-0.01307684648782]],[[-0.036440070718527,-0.003627791069448,-0.036924116313457],[0.01068649161607,0.0099858175963163,-0.040788810700178],[-0.035114847123623,-0.037392657250166,-0.037707585841417]],[[-0.043519448488951,-0.053872991353273,-0.041616648435593],[-0.015474998392165,-0.029340485110879,-0.025385085493326],[0.015281368978322,0.021699907258153,0.030024575069547]],[[-0.023651903495193,-0.049812741577625,-0.081454284489155],[-0.018177045509219,0.036481540650129,-0.042162764817476],[0.035328149795532,0.02363190241158,-0.027864785864949]],[[0.022885041311383,-0.03200251609087,0.035966094583273],[0.007441938854754,0.051536854356527,0.041408501565456],[0.038726519793272,0.01342293433845,-0.017290338873863]],[[-0.086793504655361,0.013750158250332,-0.029866164550185],[-0.039125930517912,-0.026838010177016,-0.0010730805806816],[0.043263383209705,-0.0064529762603343,-0.049656938761473]],[[-0.034930054098368,-0.031451690942049,-0.058031145483255],[-0.022135078907013,-0.032445978373289,-0.0062834015116096],[0.0968406945467,0.048918135464191,0.024591669440269]],[[0.04894408211112,0.019427131861448,0.031161703169346],[0.017600402235985,-0.0432408452034,-0.04063805565238],[-0.025903217494488,0.039070975035429,-0.0063289045356214]],[[-0.057455316185951,-0.014237446710467,0.03557351231575],[-0.028817195445299,0.099404625594616,-0.035117983818054],[0.087862633168697,0.035236533731222,0.12346046417952]],[[0.033007886260748,0.0093048820272088,-0.014911267906427],[-0.023998161777854,0.014359160326421,0.012956800870597],[-0.10619705170393,0.022572873160243,-0.010652818717062]],[[0.017658548429608,0.030051078647375,0.019587961956859],[-0.045200664550066,0.015522345900536,0.0050702067092061],[-0.027857448905706,0.0020375524181873,0.013965710997581]],[[-0.0018923316383734,0.02797700278461,0.017015773802996],[-0.029134185984731,-0.01449903473258,0.027168232947588],[0.029388969764113,0.035165131092072,-0.021087540313601]],[[-0.0069350148551166,-0.034951444715261,0.023113261908293],[-0.038915902376175,0.055224176496267,-0.028368916362524],[-0.014820636250079,-0.035196654498577,0.017175996676087]],[[-0.020456817001104,0.027451245114207,0.014988123439252],[0.064768046140671,0.027000540867448,-0.059444200247526],[0.067161820828915,0.027287600561976,0.040676634758711]],[[-0.023345816880465,-0.087464720010757,-0.021037174388766],[-0.01992654427886,0.0248501021415,0.010387101210654],[-0.035781845450401,-0.05058054625988,0.027894509956241]],[[-0.018816780298948,-0.023687748238444,0.037625480443239],[-0.1183662712574,-0.044424939900637,-0.0055453651584685],[0.042224213480949,-0.014837528578937,0.017673034220934]],[[-0.02427358366549,-0.0010640614200383,0.01491872407496],[-0.039831168949604,0.059503555297852,0.028371028602123],[0.0072922646068037,-0.013437724672258,0.022159961983562]],[[-0.021921932697296,0.068310752511024,0.056550957262516],[-0.024888822808862,-0.0011603966122493,-0.068840585649014],[0.032923571765423,-0.068151876330376,-0.048380587249994]],[[-0.03381984308362,-0.0081516709178686,-0.0481869392097],[0.032511059194803,0.023399030789733,-0.029315626248717],[0.073785021901131,0.0058778948150575,0.018968969583511]],[[-0.080448001623154,0.010198354721069,-0.0026996149681509],[0.013627943582833,-0.047232750803232,0.00026801065541804],[0.0051943273283541,-0.015048001892865,-0.038046184927225]],[[-0.09620738774538,0.015651000663638,0.025601666420698],[0.024741414934397,-0.0040262504480779,-0.01295022200793],[0.002256017876789,-0.040990833193064,-0.0074710277840495]],[[-0.017675124108791,0.027850575745106,0.010922945104539],[-0.032849535346031,-0.0077757649123669,-0.059232272207737],[0.035529885441065,0.069298811256886,0.003486319212243]],[[0.012310167774558,0.013988965190947,0.081797130405903],[-0.082072459161282,0.036950923502445,0.01199331972748],[-0.066166773438454,0.025156410411,-0.063124187290668]],[[0.0046722125262022,0.043833240866661,-0.011081047356129],[0.03972415626049,0.0603680126369,0.0035055114421993],[0.032040175050497,0.0068431608378887,-0.0051857284270227]],[[-0.042750436812639,0.015513950958848,0.0048191682435572],[-0.024146361276507,-0.018915105611086,-0.041179429739714],[-0.0090197585523129,0.059341516345739,0.018412120640278]],[[0.092989012598991,-0.029266759753227,-0.0087046334519982],[-0.041971504688263,-0.011492744088173,-0.024957098066807],[-0.0062748515047133,0.012759171426296,0.0090469429269433]],[[0.048226680606604,0.05044798925519,-0.024313941597939],[0.06207000464201,-0.059059012681246,0.041798770427704],[-0.0097761303186417,0.04112808778882,-0.027988653630018]],[[-0.030785236507654,-0.015663163736463,-0.025057317689061],[0.026826715096831,0.041951395571232,-0.0052358177490532],[0.0055700382217765,0.039352666586637,0.004513144493103]],[[0.0058663981035352,0.041749618947506,-0.069200590252876],[0.03351816162467,-0.04644313454628,-0.045769456773996],[0.059166662395,-0.044111374765635,0.050047744065523]],[[-0.0097748581320047,0.039636678993702,-0.034384116530418],[0.017285330221057,-0.077250219881535,0.0080606108531356],[0.037671621888876,0.01057366002351,0.08839412778616]],[[0.05413893610239,0.039262559264898,0.0094394367188215],[-0.021003125235438,-0.02511790022254,-0.029046438634396],[0.070413358509541,0.0048860888928175,-0.046805877238512]],[[0.0062420265749097,0.038102373480797,-0.024679830297828],[-0.083860948681831,-0.016454519703984,0.0591592900455],[-0.052570059895515,0.037160389125347,0.035322181880474]],[[0.024780029430985,0.050229534506798,-0.034947711974382],[0.058445461094379,-0.023851184174418,0.074975296854973],[-0.019474288448691,-0.083028718829155,0.10363763570786]],[[0.031820770353079,0.060599308460951,-0.047418784350157],[-0.060508817434311,0.051404472440481,-0.0046084858477116],[-0.023887047544122,-0.042949814349413,-0.025456573814154]],[[-0.069584578275681,-0.0035680446308106,0.016950475051999],[0.016422189772129,0.023673748597503,-0.040861643850803],[0.013014767318964,0.0026829200796783,-0.045698579400778]],[[0.012348677963018,0.014256327413023,-0.048636145889759],[0.016010718420148,0.056029498577118,0.0080890813842416],[0.039434395730495,-0.044371426105499,0.017882246524096]],[[0.032744366675615,-0.02584988810122,-0.037606570869684],[0.018610181286931,-0.010730352252722,0.027326608076692],[0.066138364374638,-0.015755446627736,-0.017071351408958]],[[-0.022695099934936,0.078686475753784,-0.01717721298337],[1.0798874427564e-05,-0.028783090412617,-0.01333415787667],[0.073677465319633,-0.032109301537275,-0.004173984285444]],[[-0.010864485986531,-0.0032265412155539,0.041078809648752],[-0.050959773361683,0.02243953756988,0.0092377485707402],[-0.048944555222988,0.056505210697651,-0.043557621538639]],[[0.038336995989084,-0.058021448552608,0.012809161096811],[0.0078875524923205,0.015169333666563,-0.08242816478014],[-0.03898561745882,0.0059502217918634,-0.023395461961627]],[[-0.029474575072527,0.03130692243576,0.015777064487338],[0.070648863911629,0.042060539126396,0.022377384826541],[-0.01045351382345,-0.11628223210573,0.019285704940557]],[[0.012171300128102,-0.04517175629735,-0.020977335050702],[-0.0097797000780702,-0.017948839813471,-0.015172733925283],[-0.017563769593835,0.0280333571136,0.025444207713008]],[[0.0475745908916,-0.068250231444836,-0.0040715578943491],[-0.087377093732357,-0.047825153917074,-0.0096050361171365],[0.011553407646716,-0.086373418569565,-0.10683915019035]],[[-0.030830482020974,-0.02361449226737,0.022134386003017],[0.058719303458929,0.10119713097811,-0.050722122192383],[0.035177774727345,0.042219124734402,-0.0081092910841107]],[[0.053205002099276,0.022623892873526,-0.020637998357415],[-0.061880115419626,-0.028617197647691,-0.016445610672235],[-0.019084708765149,0.043186977505684,0.0088670961558819]],[[-0.060441948473454,0.059997301548719,-0.04033025726676],[0.054745461791754,0.00097191869281232,-0.063732989132404],[0.014610633254051,0.015271433629096,-0.049788292497396]],[[-0.029571913182735,-0.09673685580492,-0.031229674816132],[-0.046917710453272,0.012460343539715,-0.043689262121916],[0.0073621147312224,0.048682171851397,-0.051279850304127]],[[0.0015301286475733,0.017936293035746,0.034113924950361],[0.046220440417528,-0.040552116930485,0.012499306350946],[-0.043114777654409,0.022810621187091,-0.032519184052944]],[[0.0091894483193755,-0.027595406398177,-0.051391642540693],[-0.062083348631859,-0.023758362978697,-0.020788440480828],[-0.062188860028982,-0.033262766897678,0.10686372965574]],[[0.02092002145946,0.030295170843601,-0.00049097934970632],[-0.043380383402109,-0.017235107719898,0.01237203553319],[-0.014102985151112,0.052664320915937,0.061485726386309]],[[-0.017065869644284,-0.021092535927892,-0.005243209656328],[-0.040610164403915,0.0064137503504753,0.077227227389812],[-0.0026817726902664,-0.0051712365821004,0.076605275273323]],[[-0.055395014584064,0.018114913254976,-0.018529422581196],[-0.01145152002573,0.0031224808190018,-0.040318846702576],[-0.020661383867264,0.017384152859449,-0.040704015642405]],[[-0.043085049837828,-0.039302885532379,0.010891936719418],[0.013370434753597,-0.061886612325907,0.0044986321590841],[0.0051096864044666,-0.037858452647924,0.010674091987312]],[[-0.054922390729189,-0.019988844171166,0.011658005416393],[-0.01465418189764,-0.022516895085573,0.01711787097156],[-0.0014445690903813,-0.045761365443468,0.035413105040789]],[[-0.015012544579804,-0.043717697262764,-0.0087812105193734],[-0.084826916456223,0.047116506844759,-0.011183936148882],[-0.060173436999321,-0.042812652885914,-0.082945041358471]],[[-0.054617419838905,-0.012902718037367,-0.014485604129732],[-0.070244885981083,0.031972475349903,0.06557259708643],[0.033499173820019,0.056813735514879,0.052921958267689]],[[0.06219220906496,-0.049687620252371,0.020155983045697],[0.034243512898684,-0.0056416550651193,0.025891901925206],[-0.013554118573666,0.035378009080887,0.022462463006377]],[[0.042396832257509,-0.041630618274212,0.021992431953549],[0.064968340098858,0.04751743376255,0.010732847265899],[0.088784240186214,0.0048850602470338,0.078200228512287]],[[-0.048683784902096,-0.0086226994171739,0.07916209846735],[0.016652252525091,-0.0015422306023538,-0.042137935757637],[0.018595537170768,0.017651477828622,0.0042811059392989]],[[-0.038779843598604,-0.058956254273653,-0.065206609666348],[0.061326421797276,-0.046420224010944,-0.025576634332538],[0.012550848536193,-0.00068644183920696,-0.016125537455082]],[[-0.031061436980963,-0.031594302505255,-0.0042395400814712],[-0.036521732807159,-0.0094236433506012,0.034648403525352],[0.01304043084383,0.026868406683207,0.034135520458221]]],[[[-0.057213194668293,-0.0052333646453917,0.0084908632561564],[-0.083498358726501,-0.024705799296498,0.047952208667994],[-0.011964369565248,0.0022919836919755,0.076800771057606]],[[0.043222546577454,-0.016780121251941,-0.029248265549541],[0.0032169905025512,0.049888160079718,-0.0574716553092],[-0.035999812185764,0.036573845893145,-0.060516200959682]],[[-0.075583986938,-0.048911161720753,0.08089093118906],[0.011325974017382,-0.054559737443924,-0.046286929398775],[0.072714686393738,-0.052639052271843,-0.06379733979702]],[[-0.029980074614286,-0.017908077687025,0.080069340765476],[-0.00089338514953852,0.025843244045973,0.00037040445022285],[-0.047001861035824,-0.045495577156544,-0.01525164488703]],[[-0.034095339477062,-0.080375000834465,0.0079316664487123],[0.063901141285896,0.11208499222994,0.062083467841148],[-0.012949366122484,-0.0397834405303,-0.033786572515965]],[[0.0077603976242244,0.012668290175498,-0.021611750125885],[-0.074196368455887,-0.048065789043903,-0.062554024159908],[-0.0056861429475248,-0.0074328812770545,-0.035356100648642]],[[-0.080180704593658,0.017812464386225,0.055025674402714],[-0.045939687639475,0.010779837146401,-0.028559712693095],[0.0033874283544719,0.041803877800703,-0.0076871663331985]],[[0.015639377757907,-0.060513101518154,0.047623112797737],[-0.069245189428329,0.013658829033375,0.017210425809026],[-0.045806366950274,-0.016616946086287,0.039141230285168]],[[0.035151906311512,-0.093634106218815,0.041741419583559],[-0.11360910534859,0.13222636282444,0.033534478396177],[0.045342728495598,0.047757066786289,0.060124017298222]],[[0.044624641537666,-0.074275866150856,-0.010138601996005],[-0.085053026676178,-0.083816401660442,-0.046029202640057],[-0.066879771649837,0.04579309746623,0.020909003913403]],[[-0.045991197228432,0.02781524322927,-0.024393523111939],[0.017480617389083,-0.026069881394506,-0.055753778666258],[-0.049336489289999,-0.026160465553403,0.032725106924772]],[[0.0015341729158536,0.041143711656332,0.030356215313077],[0.066750027239323,-0.030891200527549,0.014318113215268],[-0.045065645128489,0.025677120313048,-0.0045327637344599]],[[-0.010231208987534,-0.024860909208655,-0.037977736443281],[0.037144992500544,-0.051816064864397,0.050883449614048],[0.073884360492229,-0.015959341078997,-0.027761409059167]],[[0.0089210299775004,-0.030060337856412,0.044609118252993],[-0.023269847035408,-0.0013132981257513,0.016273831948638],[-0.029862204566598,-0.023844793438911,0.034148409962654]],[[0.088068939745426,0.079970866441727,0.13474015891552],[-0.18633532524109,-0.095601126551628,0.076358288526535],[0.0080897798761725,-0.10088764876127,0.036639176309109]],[[0.0096602011471987,0.0025546881370246,-0.017510745674372],[0.049746543169022,0.072768956422806,-0.0054172175005078],[0.058913726359606,-0.0046474961563945,0.01991999335587]],[[0.048537507653236,0.093060746788979,-0.057268053293228],[0.025618130341172,-0.020579375326633,0.0005779373459518],[-0.052436057478189,0.032966315746307,0.023924503475428]],[[0.020639181137085,0.063362658023834,-0.050098858773708],[-0.10294079035521,0.045014947652817,0.034492626786232],[0.027403991669416,0.0077051166445017,-0.043660748749971]],[[-0.0017466102726758,-0.020627612248063,-0.052354410290718],[-0.047292940318584,0.014800627715886,-0.041801195591688],[0.0044165863655508,-0.0023263462353498,0.098108179867268]],[[0.052028406411409,-0.018116939812899,-0.042412038892508],[0.054861932992935,-0.026865839958191,-0.057362869381905],[-0.012850292026997,0.0031355016399175,-0.031303383409977]],[[0.10077448189259,-0.086220815777779,0.067463360726833],[-0.004108551889658,0.079327598214149,0.053511250764132],[-0.04504794254899,0.025226432830095,-0.0036799046210945]],[[0.040177796036005,0.073043897747993,0.0049368450418115],[-0.02681284211576,-0.058007966727018,-0.046882655471563],[-0.063249334692955,0.014320236630738,-0.10374882817268]],[[-0.02222285605967,0.0086405007168651,0.032607909291983],[0.036281537264585,-0.016022240743041,0.002625891007483],[0.039827708154917,-0.01186993252486,-0.037798266857862]],[[-0.037383336573839,0.043028552085161,-0.040114536881447],[-0.027207743376493,-0.038462679833174,-0.026092177256942],[-0.0092119453474879,-0.11501013487577,-0.0090113990008831]],[[0.022318175062537,-0.020477328449488,0.11124684661627],[-0.046637855470181,0.039271581918001,-0.021789826452732],[-0.038996569812298,0.066673465073109,-0.019051529467106]],[[0.0099233221262693,0.0021339280065149,-0.023835513740778],[-0.038030739873648,0.07600474357605,-0.021759320050478],[-0.0047991033643484,0.095318242907524,-0.052238028496504]],[[-0.035516902804375,0.094340533018112,-0.05004520341754],[0.029661828652024,-0.07364272326231,0.03380049020052],[-0.025696454569697,0.053361028432846,-0.0027857355307788]],[[-0.0025835072156042,0.056796431541443,-0.047860473394394],[-0.015839518979192,0.090211361646652,-0.083964750170708],[0.037844575941563,-0.093581229448318,0.092770464718342]],[[0.055684484541416,0.012900944799185,0.021971620619297],[-0.03345538303256,0.0084739290177822,-0.018319621682167],[0.040622435510159,-0.048529833555222,-0.05402397736907]],[[-0.0071739973500371,0.055137719959021,-0.0027783587574959],[0.063602685928345,0.021312979981303,-0.072620414197445],[0.0071956203319132,0.030947709456086,-0.01751447468996]],[[0.0066295601427555,-0.013907099142671,0.004112163092941],[0.040407635271549,-0.012688199058175,-0.0071245678700507],[-0.081405982375145,0.0074403057806194,-0.015672706067562]],[[-0.026517231017351,0.011940693482757,0.035657770931721],[-0.027506304904819,0.076329775154591,-0.017957504838705],[-0.0068792109377682,0.077526651322842,-0.032094568014145]],[[-0.039548475295305,-0.072097472846508,0.025495676323771],[-0.037961725145578,-0.004762040451169,0.073647059500217],[-0.022060351446271,0.026769580319524,0.049981325864792]],[[-0.072630196809769,0.10496858507395,0.01913302950561],[-0.039138119667768,0.093353003263474,0.025327250361443],[-0.005674930755049,-0.00036482058931142,0.040898203849792]],[[0.03386988863349,-0.04596134275198,0.013880869373679],[0.058254174888134,-0.0066026579588652,-0.036292850971222],[0.041635025292635,-0.012330596335232,-0.06691337376833]],[[0.013964401558042,0.0057095303200185,-0.035055447369814],[0.003226111875847,0.059217598289251,-0.046186696738005],[-0.0065702507272363,0.048720918595791,-0.021414471790195]],[[-0.010686964727938,-0.0021655550226569,0.015235844999552],[-0.049566127359867,-0.027090670540929,0.016041589900851],[0.039470393210649,-0.031878724694252,-0.026926312595606]],[[0.010631701909006,-0.00071594351902604,-0.0095151606947184],[-0.0067353807389736,0.043099660426378,-0.043530996888876],[-0.0046378830447793,-0.041829161345959,0.029189120978117]],[[-0.059232033789158,0.020508844405413,-0.003689211094752],[-0.060689896345139,-0.026280920952559,-0.029605105519295],[-0.029194237664342,-0.016718728467822,0.050498589873314]],[[-0.043259385973215,0.023862656205893,0.059253562241793],[0.026962714269757,-0.035447288304567,-0.055201593786478],[0.0066762580536306,-0.0098616275936365,0.014123881235719]],[[0.048787519335747,0.025825234130025,0.0047542750835419],[0.043742828071117,-0.029422322288156,0.010374197736382],[-0.01413582265377,0.010987753979862,-0.091229468584061]],[[-0.014991108328104,-0.0054167225025594,0.043889470398426],[0.030226303264499,0.0017051468603313,-0.0095114512369037],[0.044028032571077,-0.041816741228104,0.037723280489445]],[[-0.06702721118927,0.052357960492373,0.0095078339800239],[0.0069971834309399,-0.062695272266865,0.0049332976341248],[-0.039965592324734,-0.074301034212112,-0.035139836370945]],[[-0.047741338610649,0.01265053357929,-0.023797206580639],[0.078202351927757,0.0010036187013611,-0.032548613846302],[-0.031271357089281,-0.058209255337715,0.0073908106423914]],[[-0.021186294034123,0.013457481749356,0.012891921214759],[-0.061918366700411,0.024268351495266,-0.020242793485522],[-0.00048310990678146,-0.028244493529201,-0.0032202394213527]],[[0.02222652733326,-0.036148928105831,0.037779219448566],[-0.051872361451387,-0.011668366380036,0.0048118378035724],[-0.0083243185654283,-0.023133121430874,0.032788973301649]],[[-0.025421336293221,0.015781415626407,-0.030071230605245],[-0.001837620511651,-0.0022897724993527,0.011505088768899],[0.067216023802757,-0.022520596161485,-0.013605742715299]],[[-0.020936738699675,0.10921163111925,-0.02290297485888],[0.046083770692348,0.03021751716733,-0.036819726228714],[-0.096373908221722,0.018448760733008,0.020846355706453]],[[0.055750567466021,-0.022053807973862,0.018049985170364],[0.036203637719154,-0.0097275041043758,0.0071727512404323],[-0.087981484830379,-0.023350723087788,0.086592197418213]],[[-0.065849930047989,0.034307543188334,-0.031436610966921],[-0.067983090877533,-0.056525800377131,-0.029853722080588],[0.035981580615044,-0.029164059087634,-0.10068393498659]],[[0.0082311388105154,-0.020472886040807,0.035263981670141],[-0.0065262573771179,0.018308408558369,0.030481962487102],[0.012451993301511,-0.006060027051717,-0.053793378174305]],[[-0.058053515851498,-0.024012139067054,0.06954362988472],[-0.058240745216608,-0.06034118309617,0.037793356925249],[0.0034859920851886,-0.041107721626759,-0.01944387704134]],[[-0.042408470064402,-0.036914244294167,-0.028713351115584],[0.05543527007103,0.0029603103175759,-0.0082370126619935],[-0.037780519574881,-0.040711838752031,0.027197498828173]],[[-0.0087594920769334,0.055586222559214,0.097108788788319],[0.011880923062563,0.06085367128253,0.017054183408618],[0.06386785954237,-0.039950124919415,-0.045333780348301]],[[0.028717825189233,-0.0231225322932,-0.017711175605655],[-0.052950866520405,0.0081659751012921,-0.047719966620207],[-0.01275351177901,-0.048075586557388,-0.006178439129144]],[[0.040431056171656,-0.016497073695064,0.026615308597684],[-0.047760430723429,-0.014482138678432,0.019510077312589],[0.024889875203371,0.016955384984612,-0.021323164924979]],[[0.04918597266078,-0.017194841057062,-0.010849449783564],[0.041330970823765,0.017820542678237,0.044015493243933],[-0.012323105707765,-0.1407577842474,-0.040979437530041]],[[0.0054082721471786,0.06122237816453,0.021328702569008],[0.071934305131435,0.03876019641757,-0.092750489711761],[-0.0041377707384527,0.0037355527747422,0.062951430678368]],[[-0.0050717107951641,-0.027380954474211,0.018411386758089],[-0.045108698308468,-0.033087242394686,0.041661120951176],[0.03247494623065,0.017562264576554,0.033032860606909]],[[0.056561153382063,-0.0083206854760647,0.03617811575532],[-0.040609858930111,-0.041804272681475,-0.058781143277884],[0.07160696387291,-0.017690118402243,0.015115926973522]],[[-0.0043873768299818,-0.01007136143744,-0.029321497306228],[0.031838092952967,-0.13146509230137,0.0017853423487395],[-0.090507082641125,0.030434099957347,-0.063913650810719]],[[0.025418095290661,0.00028300890699029,-0.015759525820613],[0.012665673159063,-0.018919713795185,0.01654501631856],[0.022744363173842,-0.047325573861599,-0.033976636826992]],[[-0.0615553855896,0.016786530613899,0.04951223731041],[0.060471799224615,-0.044905722141266,0.01180562004447],[0.0049936678260565,0.046411197632551,0.037066742777824]],[[-0.0011352912988514,0.027847774326801,-0.057168010622263],[-0.07505938410759,0.025439912453294,0.063085041940212],[0.052244089543819,0.021804111078382,-0.068184673786163]],[[-0.053040310740471,0.011812313459814,0.020512631163001],[-0.056268516927958,0.021423963829875,0.034580051898956],[0.0091541614383459,0.091343827545643,0.077264904975891]],[[-0.035444036126137,0.022467482835054,-0.0013356066774577],[0.041349232196808,-0.025675907731056,0.033299028873444],[0.035396739840508,-0.023904236033559,0.020231762900949]],[[-0.038128819316626,-0.030053677037358,0.029655480757356],[-0.015220320783556,0.074731349945068,-0.036748494952917],[-0.035355430096388,-0.019157286733389,0.044581696391106]],[[0.028311405330896,-0.0035691503435373,0.011263024993241],[-0.021704869344831,0.013797518797219,-0.027171723544598],[-0.0021670423448086,0.0051126428879797,-0.080932192504406]],[[0.037153605371714,0.059935633093119,-0.017286332324147],[0.028013171628118,0.032044351100922,0.010536008514464],[0.040872804820538,0.025899251922965,-0.016012232750654]],[[0.02028314396739,-0.0018139756284654,0.017820559442043],[0.03503205254674,-0.078896947205067,0.055517435073853],[0.032645866274834,-0.038887079805136,0.030178241431713]],[[0.059681110084057,0.023286519572139,-0.075636766850948],[-0.082809999585152,0.039634212851524,-0.019140891730785],[-0.026788601651788,-0.012541752308607,-0.0077990712597966]],[[-0.026260476559401,0.066417589783669,0.10260060429573],[0.053145404905081,-0.068677976727486,0.012535996735096],[-0.026825523003936,0.044532965868711,-0.017383078113198]],[[-0.017158785834908,-0.011841840110719,0.024943565949798],[-0.044759292155504,0.052484378218651,-0.0066724787466228],[0.038948360830545,-0.088909044861794,-0.02544697932899]],[[-0.050727624446154,0.030277034267783,0.012670041061938],[-0.037876892834902,-0.000931543239858,-0.01457925979048],[-0.049897003918886,0.0091210901737213,-0.033522933721542]],[[-0.081260867416859,-0.04294852912426,0.002747303340584],[-0.02096145786345,0.064508743584156,-0.071930043399334],[-0.045597661286592,-0.047288864850998,0.043324623256922]],[[-0.044965695589781,0.0080918045714498,0.0026347055099905],[0.012015594169497,0.015629323199391,-0.036249246448278],[0.057369850575924,-0.01504467241466,-0.020703975111246]],[[0.10700718313456,-0.020562158897519,-0.10345593839884],[-0.0052856439724565,-0.047660302370787,-0.035390976816416],[0.056143745779991,-0.019080948084593,-0.041268639266491]],[[-0.010528761893511,0.027723584324121,0.027163142338395],[0.079590626060963,0.077033624053001,-0.034490443766117],[0.054683718830347,0.04398287832737,-0.010967055335641]],[[-0.0072303228080273,0.082518972456455,0.027022048830986],[-0.050385687500238,0.071017563343048,0.099699348211288],[-0.054591421037912,-0.0070019769482315,0.099997043609619]],[[0.050273213535547,0.093279890716076,0.029687333852053],[0.013308618217707,-0.048485264182091,0.022813061252236],[-0.025300031527877,0.038105692714453,0.0094258515164256]],[[0.022337621077895,0.027842437848449,0.040835309773684],[-0.0055050309747458,-0.0050571621395648,0.031822938472033],[-0.0016430914402008,-0.030644126236439,0.033801577985287]],[[0.016061596572399,0.076244369149208,0.015645744279027],[0.093194454908371,0.0063787223771214,0.01455588825047],[-0.18208311498165,0.0092340083792806,0.018321305513382]],[[-0.0016795648261905,-0.032344624400139,0.0036015280056745],[0.036411680281162,-0.025339370593429,0.010069971904159],[-0.021819965913892,-0.0093589993193746,-0.054933581501245]],[[0.071136772632599,-0.015383331105113,0.033420730382204],[0.023638533428311,0.027573803439736,-0.016452630981803],[0.015082132071257,0.018853699788451,0.028352987021208]],[[0.10887724906206,-0.028823483735323,0.012907232157886],[-0.083308771252632,-0.026170020923018,-0.0020058117806911],[0.013094678521156,-0.045140754431486,-0.038112711161375]],[[-0.036146719008684,0.00086109386757016,-0.013499669730663],[0.022312164306641,-0.04524302482605,-0.078966870903969],[0.097339786589146,0.0043178764171898,0.0020523562561721]],[[0.035551778972149,-0.045361146330833,-0.0076909614726901],[-0.02558553032577,-0.0012282885145396,-0.037307515740395],[0.057891067117453,-0.065505124628544,0.031736597418785]],[[-0.038418624550104,-0.045274671167135,-0.038142971694469],[-0.059757005423307,-0.043295454233885,-0.031295176595449],[0.040021009743214,-0.058275289833546,0.029140528291464]],[[-0.023710507899523,0.024498794227839,-0.0081620728597045],[-0.0049648387357593,0.012228048406541,0.049029286950827],[-0.05436671897769,0.082419604063034,0.016784053295851]],[[0.00054709706455469,-0.082818306982517,0.051264848560095],[-0.011304654181004,0.012051811441779,-0.06985068321228],[0.063053205609322,-0.026745835319161,-0.018906157463789]],[[0.052324891090393,-0.080545462667942,0.016117755323648],[-0.052582230418921,-0.10522989183664,0.040698017925024],[-0.031917493790388,-0.040127746760845,0.02080874145031]],[[0.033154100179672,-0.0083681931719184,0.029150361195207],[-0.021845644339919,-0.012047678232193,0.056889295578003],[0.034637834876776,-0.0021908257622272,0.042288981378078]],[[-0.015443526208401,-0.015081122517586,0.017699956893921],[0.0041547487489879,-0.05309758707881,0.027882819995284],[0.0099336383864284,0.042597554624081,-0.0096298810094595]],[[-0.074175737798214,-0.011584972031415,-0.059202525764704],[-0.068936578929424,0.028116764500737,-0.095483474433422],[-0.080030187964439,-0.012671948410571,-0.068979352712631]],[[-0.038490358740091,0.03028903529048,-0.011857694946229],[-0.069453865289688,0.017345875501633,-0.064795218408108],[0.034469723701477,0.07500983774662,-0.056807968765497]],[[0.016340713948011,-0.054534792900085,0.0098664965480566],[0.03049230389297,-0.078459769487381,0.015974866226315],[-0.015544299036264,0.053943779319525,-0.070891104638577]],[[0.013318182900548,0.084949344396591,0.013300294056535],[0.05689961463213,-0.1012762337923,-0.046833585947752],[-0.040580309927464,0.011188580654562,-0.04949801787734]],[[-0.059596963226795,-0.0028061380144209,0.013000614009798],[0.035346522927284,-0.022419853135943,-0.0092954961583018],[-0.050477340817451,0.00039347345591523,0.027824038639665]],[[-0.0069447699934244,0.073891907930374,0.051179014146328],[0.047865029424429,-0.035165149718523,0.020586658269167],[0.065823704004288,0.012924768961966,-0.0052220323123038]],[[-0.02519042044878,-0.053214751183987,0.026242123916745],[-0.038673721253872,0.0040260278619826,0.0095602599903941],[-0.013638901524246,0.037758905440569,-0.043532956391573]],[[-0.012128275819123,-0.056602708995342,-0.075851611793041],[0.013697240501642,-0.0070345434360206,0.019408065825701],[-0.033108305186033,-0.08572581410408,-0.040192998945713]],[[0.0011437577195466,-0.11024462431669,-0.031484387814999],[-0.13921783864498,-0.029643699526787,0.032885488122702],[-0.02894676104188,0.054716151207685,-0.008241412229836]],[[0.097412720322609,0.062148474156857,-0.015755252912641],[-0.017957540228963,0.018664235249162,-0.0033633608836681],[0.05193655192852,-0.023599477484822,-0.0058894478715956]],[[0.025224287062883,-0.0036710007116199,-0.058523461222649],[0.052859038114548,-0.079816393554211,-0.030928026884794],[-0.044401593506336,0.048742156475782,-0.013702089898288]],[[-0.037235908210278,0.038611944764853,-0.017291009426117],[-0.096449121832848,-0.062271147966385,0.033778991550207],[0.0012335382634774,0.079944960772991,0.010199464857578]],[[0.04127649590373,-0.020017212256789,0.054362569004297],[0.048691924661398,-0.019766626879573,-0.002487656660378],[-0.059769731014967,-0.0055520138703287,0.09605185687542]],[[0.020216107368469,-0.0054379333741963,-0.091703087091446],[-0.051193475723267,0.024870732799172,0.056480344384909],[0.033561229705811,0.06066020205617,-0.16697572171688]],[[-0.046261288225651,-0.0036238231696188,-0.014377715997398],[0.07966709882021,-0.012117204256356,0.10041311383247],[0.042581275105476,0.032693289220333,-0.035845581442118]],[[-0.020110201090574,-0.01896021515131,-0.0069684544578195],[-0.072760015726089,0.0038723261095583,-0.064214557409286],[-0.0025197940412909,-0.03801741078496,0.08590417355299]],[[0.029707169160247,0.041831448674202,-0.019155289977789],[-0.0044461404904723,0.011755879968405,-0.024861825630069],[-0.029999380931258,-0.0018245229730383,0.028291748836637]],[[0.02323330566287,-0.0082353036850691,0.015169804915786],[-0.068958811461926,-0.14606182277203,0.0071340976282954],[0.02847402729094,0.022814255207777,0.0048489100299776]],[[0.014887140132487,-0.015087148174644,-0.0025492385029793],[-0.058384977281094,-0.013512287288904,-0.010555812157691],[-0.045725788921118,0.093353107571602,0.009040180593729]],[[-0.025046730414033,-0.053024847060442,0.10439912974834],[-0.0091151762753725,-0.12200576812029,0.0039069559425116],[-0.061283223330975,0.022417962551117,0.040755357593298]],[[-0.012965152971447,0.011181664653122,0.046913046389818],[-0.058096803724766,-0.017998015508056,-0.01904752291739],[-0.023453975096345,-0.084796704351902,-0.027748161926866]],[[0.037560787051916,0.0055293231271207,-0.031998857855797],[-0.003691008547321,0.011082641780376,0.067829549312592],[0.064336761832237,-0.1240573823452,-0.036262575536966]],[[0.015511528588831,-0.0096365688368678,-0.011553045362234],[-0.0060767116956413,0.019043298438191,-0.038783110678196],[-0.010480460710824,-0.0083484202623367,-0.041424125432968]],[[0.10968659818172,-0.0029410677962005,0.0052281869575381],[-0.083359085023403,0.055641941726208,0.012093088589609],[0.021044887602329,-0.0017488442827016,0.0026858993805945]],[[0.055764634162188,0.0060222167521715,-0.025448923930526],[-0.034547336399555,0.004568902309984,-0.0029518259689212],[0.020524291321635,0.090062521398067,-0.037727419286966]],[[-0.018661318346858,0.020391480997205,-0.02359570376575],[0.013184756040573,-0.00021335011115298,0.020056700333953],[-0.082485996186733,-0.048097722232342,0.097985588014126]],[[-0.033615540713072,-0.083864629268646,-0.0003767047310248],[0.068061806261539,-0.0018462621374056,-0.019747637212276],[-0.019743055105209,-0.027355022728443,-0.029899986460805]],[[0.022243259474635,-0.00059969106223434,0.00031730701448396],[0.0052401479333639,-0.0086545376107097,-0.007525154389441],[-0.017224218696356,0.0015315264463425,-0.023388512432575]],[[-0.0065378723666072,-0.020311178639531,-0.026212498545647],[-0.055873025208712,0.020604025572538,0.046162407845259],[-0.050843134522438,0.045767735689878,-0.015095922164619]],[[-0.0054544000886381,-0.061584275215864,0.0051735322922468],[-0.072466067969799,-0.090585581958294,-0.012187917716801],[-0.01980990730226,-0.045751888304949,0.032500475645065]],[[-0.05825025588274,0.019894005730748,0.029450973495841],[-0.02665594406426,0.0043358216062188,0.029293153434992],[0.0415517129004,0.01306174416095,0.0017146820900962]],[[0.0015909263165668,-0.0067170597612858,-0.029687313362956],[0.01067163888365,0.029110005125403,-0.029023064300418],[-0.046325530856848,-0.029110183939338,-0.004891199991107]],[[0.033485140651464,-0.084643393754959,0.048333320766687],[-0.03139316663146,0.029043739661574,-0.029664691537619],[0.038210287690163,-0.11310555785894,-0.067581199109554]],[[0.031213467940688,0.067431569099426,-0.023159720003605],[0.042249754071236,0.039863865822554,-0.024798333644867],[0.0020207078196108,-0.054771456867456,-0.044229444116354]],[[-0.00085436674999073,0.012966176494956,0.0026086706202477],[-0.047209639102221,0.031735438853502,-0.067034393548965],[0.033092670142651,0.040818884968758,-0.032635312527418]]],[[[-0.00019762184820138,-0.018851384520531,-0.0059764734469354],[-0.04021230712533,-0.084117352962494,-0.0026432813610882],[-0.013226986862719,0.014175250194967,-0.012041587382555]],[[0.014447329565883,-0.069954045116901,0.037705909460783],[-0.044879332184792,0.025889692828059,0.025112574920058],[0.008737844415009,-0.058853399008512,0.000581759668421]],[[0.055127304047346,0.03954803571105,-0.022607158869505],[0.040991142392159,-0.029642568901181,-0.069194927811623],[0.013220253400505,0.036374811083078,-0.041342936456203]],[[0.0028157213237137,0.0084334760904312,0.0059783174656332],[0.033962476998568,0.0064796525985003,0.013850556686521],[0.021181613206863,0.0050138211809099,-0.019142402336001]],[[0.029003523290157,0.0087618064135313,-0.048625502735376],[-0.04026110842824,-0.00015327006985899,0.010643795132637],[-0.0040475474670529,-0.007360081654042,-0.0071528749540448]],[[-0.016155946999788,0.0059895887970924,0.014837610535324],[0.065449967980385,0.0091848922893405,0.031433805823326],[-0.0040928609669209,0.0054626925848424,0.032464325428009]],[[-0.036315381526947,0.0032739436719567,0.013914750888944],[0.11510497331619,-0.071124635636806,-0.0053096991032362],[-0.0071693975478411,-0.01273753400892,-0.049889668822289]],[[0.020276503637433,-0.015616925433278,-0.042656715959311],[-0.012581254355609,-0.024345047771931,0.041425988078117],[-0.0288155246526,0.043608531355858,0.028852159157395]],[[0.041040726006031,-0.019684737548232,-0.036966945976019],[-0.071578532457352,0.019188081845641,-0.016906317323446],[-0.041472781449556,-0.036597590893507,-0.011293768882751]],[[0.062045570462942,0.00082443456631154,0.036687806248665],[0.032655015587807,-0.0045406245626509,-0.0288957785815],[0.0028932087589055,0.045170567929745,-0.018061548471451]],[[0.016460223123431,0.016726121306419,0.0007438471657224],[-0.054611016064882,0.0036457378882915,-0.010066863149405],[-0.065244667232037,0.025459978729486,0.036788903176785]],[[0.04549278318882,0.012590323574841,0.01147651579231],[-0.094991661608219,0.025927577167749,0.055395502597094],[0.0013971471926197,0.0061332946643233,-0.024160590022802]],[[0.024142678827047,0.0056401747278869,0.032245989888906],[0.019627863541245,-0.0063896565698087,0.042492978274822],[0.007518318016082,-0.036752752959728,-0.050014358013868]],[[0.008910627104342,0.017207462340593,-0.036248236894608],[-0.0096338139846921,0.071416772902012,-0.043264959007502],[0.023479150608182,0.003838496748358,-0.024148415774107]],[[-0.047148890793324,0.02333764359355,0.0086822621524334],[0.015219547785819,-0.024602808058262,-0.002299461979419],[-0.052177827805281,0.0051627494394779,0.056847985833883]],[[0.022823046892881,-0.023003095760942,-0.010078633204103],[0.055407296866179,0.026747923344374,0.069225907325745],[-0.044990360736847,-0.048807710409164,0.064070902764797]],[[-0.071093246340752,-0.024291748180985,0.049185611307621],[-0.011806828901172,-0.066945604979992,-0.011982048861682],[0.020703950896859,0.02041051350534,0.020173665136099]],[[0.04338001832366,-0.032197497785091,0.03340620175004],[-0.017987355589867,-0.079548895359039,0.015377120114863],[-0.029452549293637,-0.046472206711769,0.035563599318266]],[[-0.010556073859334,-0.016693158075213,0.0067746196873486],[-0.014567040838301,0.00072281569009647,0.052993874996901],[-0.021301424130797,-0.0080955326557159,0.026140920817852]],[[-0.051895711570978,-0.044594097882509,-0.060572907328606],[0.073223613202572,0.012898894958198,-0.04719028249383],[0.084884859621525,0.066328771412373,-0.043395511806011]],[[-0.0062997913919389,-0.0059309788048267,-0.027427811175585],[-0.0064986133947968,-0.013546236790717,0.047120060771704],[0.067627549171448,0.049277294427156,-0.046934053301811]],[[-0.028534431010485,-0.022524362429976,0.012305710464716],[0.053876373916864,0.0059761782176793,0.038115605711937],[0.01314377784729,0.0057018934749067,0.02403449639678]],[[-0.016271375119686,-0.085221149027348,-0.018956240266562],[0.072843626141548,-0.03847698867321,0.041918199509382],[-0.012369741685688,0.053207218647003,0.0010369033552706]],[[-0.080084048211575,0.011224831454456,0.028384923934937],[0.017577460035682,0.091812215745449,0.1140588670969],[-0.073277443647385,-0.043650191277266,-0.011850552633405]],[[0.021518804132938,-0.049515265971422,-0.061386939138174],[0.051572397351265,0.03806172311306,0.0066137993708253],[0.012113511562347,0.0090862028300762,0.052255686372519]],[[0.022873478010297,0.0069235940463841,-0.020899478346109],[-0.092360131442547,-0.057399071753025,0.033561997115612],[0.023359274491668,0.013785738497972,0.01588062942028]],[[-0.014302051626146,-0.00078778952592984,0.037511639297009],[0.017154177650809,-0.017117286100984,0.031451925635338],[0.005608290899545,0.094431675970554,-0.042981557548046]],[[0.038480624556541,-0.012599139474332,0.069273516535759],[0.029713854193687,-0.0072154453955591,-0.023711794987321],[-0.0064062913879752,-0.03222132474184,-0.018176542595029]],[[0.019741248339415,0.039041198790073,0.09900140017271],[-0.026298519223928,0.038436338305473,-0.10884764790535],[0.054261527955532,-0.037196483463049,-0.014714909717441]],[[-0.00011660500604194,-0.010030630044639,0.03773582354188],[0.035157024860382,0.030394082888961,-0.021866114810109],[0.035957474261522,-0.040072362869978,0.0097351670265198]],[[0.027424905449152,0.013533691875637,0.043901953846216],[-0.064672961831093,0.095005683600903,0.008580980822444],[0.054959878325462,0.046985693275928,0.036616902798414]],[[0.049839660525322,-0.071601688861847,0.00090048398124054],[-0.025770138949156,-0.029311051592231,-0.066256582736969],[0.025465590879321,0.058808747678995,0.046692904084921]],[[0.067629650235176,0.043271712958813,0.026116371154785],[-0.0015241449000314,0.016572814434767,0.078972190618515],[-0.0041540814563632,-0.0070431083440781,0.00032479804940522]],[[-0.061107333749533,0.008319104090333,-0.0060412203893065],[-0.0097593059763312,0.072954274713993,0.0063340184278786],[0.02086666226387,0.035652309656143,-0.089668452739716]],[[-0.1132175475359,-0.033642180263996,0.014092708937824],[-0.020061390474439,-0.034474853426218,0.047965552657843],[-0.0055976617150009,-0.00032887494307943,0.010330067016184]],[[-0.036467406898737,0.066527880728245,0.040521003305912],[-0.0011784188682213,0.019503442570567,-0.038805618882179],[-0.036959063261747,-0.014029022306204,0.011516614817083]],[[-0.0029988824389875,0.024197218939662,0.028574489057064],[0.020412972196937,-0.0018231309950352,-0.02701199427247],[-0.045364610850811,-0.047065805643797,-0.05355404317379]],[[0.019171208143234,-0.04066551476717,0.014259539544582],[0.014755676500499,0.057201869785786,0.014645395800471],[0.0098162367939949,0.0009955377317965,0.024871028959751]],[[-0.04922192171216,0.00055712077300996,-0.0054168589413166],[-0.10964075475931,0.01087109092623,0.029228609055281],[-0.038775771856308,-0.071502156555653,0.060220681130886]],[[0.023185510188341,-0.0084774950519204,-0.014225444756448],[-0.052669703960419,0.032261673361063,0.0077269393950701],[0.02206557802856,-0.034606888890266,-0.069279693067074]],[[-0.045403700321913,0.042731512337923,0.0030279026832432],[0.062815450131893,0.045818146318197,-0.018617475405335],[0.013636201620102,-0.01657603867352,-0.1019751355052]],[[-0.053102433681488,-0.030213678255677,0.032758004963398],[-0.028944177553058,-0.013422109186649,0.087131857872009],[-0.026030858978629,0.03547865524888,0.0011406735284254]],[[0.020201932638884,-0.020767675712705,-0.10081496834755],[-0.048989161849022,-0.00069076125510037,-0.00042015319922939],[0.0063393278978765,0.036913827061653,0.036630220711231]],[[0.0087337205186486,-0.065746657550335,0.032781213521957],[-0.0063787857070565,0.07436790317297,-0.018566720187664],[-0.009700489230454,0.026043647900224,0.048148132860661]],[[0.012211753986776,-0.026705056428909,0.01238252222538],[-0.020712396129966,-0.062396615743637,-0.031084671616554],[0.051532868295908,0.079979777336121,0.051044151186943]],[[0.010481035336852,-0.052282318472862,0.01401216071099],[0.053726717829704,-0.011636035516858,-0.020164636895061],[-0.033292453736067,0.015836721286178,0.054903697222471]],[[-0.077989906072617,-0.028061525896192,-0.0061355391517282],[-0.0050085806287825,0.023179220035672,0.0015196851454675],[0.11034305393696,-0.001830653171055,-0.039235685020685]],[[0.06372756510973,0.018007025122643,-0.010853363201022],[-0.094141989946365,0.013001385144889,0.040316235274076],[-0.034260075539351,0.0058778203092515,-0.0030540206935257]],[[-0.011477169580758,-0.014135545119643,-0.0083330785855651],[-0.051231920719147,0.059425219893456,-0.0039350357837975],[0.063150838017464,-0.033334761857986,0.015382366254926]],[[-0.028805918991566,-0.042595390230417,-0.036192007362843],[-0.0054293894208968,0.024030119180679,-0.021821588277817],[-0.0409100279212,0.050326876342297,0.035072322934866]],[[0.047339368611574,-0.031291536986828,0.026503264904022],[-0.018404556438327,0.039966851472855,-0.010035923682153],[0.052769761532545,-0.027561221271753,-0.026597417891026]],[[0.0048683411441743,0.02316334657371,0.049955479800701],[0.08079007267952,0.021108070388436,-0.005461931694299],[-0.022788727656007,0.022534057497978,-0.069118611514568]],[[0.070197917521,-0.012771324254572,0.016723431646824],[-0.013516663573682,0.040409374982119,0.03890648111701],[-0.049690384417772,-0.020675107836723,-0.011428269557655]],[[-0.06227333843708,-0.065010115504265,-0.030959159135818],[0.043421819806099,0.0090353740379214,-0.026284329593182],[0.008703283034265,0.0068006510846317,0.023156156763434]],[[0.051817592233419,0.031508091837168,0.011996481567621],[0.025076027959585,-0.039661251008511,-0.019580531865358],[0.048712339252234,-0.018178347498178,0.072502158582211]],[[-0.046771671622992,0.0087301721796393,-0.01045967079699],[-0.044416628777981,-0.0020042585674673,-0.022420041263103],[0.044195841997862,0.012594633735716,0.093608811497688]],[[0.011746450327337,-0.0028667813166976,0.020467147231102],[-0.050152346491814,0.097114883363247,0.027116425335407],[0.082895576953888,-0.013715957291424,-0.03906736895442]],[[0.0025172790046781,-0.012180506251752,-0.039909921586514],[0.0021483772434294,0.0089146802201867,-0.0015215835301206],[-0.02804478444159,0.037217952311039,0.036699246615171]],[[-0.01704591140151,-0.0077780238352716,-0.059951148927212],[0.0012945660855621,0.035109963268042,-0.0062459032051265],[0.0017367325490341,0.10536156594753,0.023284135386348]],[[0.0031001402530819,0.01599608361721,0.022930381819606],[0.02389770373702,0.048961650580168,-0.097632586956024],[0.022095380350947,-0.0072872899472713,-0.027852434664965]],[[-0.02776787802577,0.024895764887333,-0.052611757069826],[0.028609734028578,0.06377612054348,0.0033782303798944],[0.0015409409534186,0.0078951809555292,0.049332518130541]],[[-0.039762683212757,0.029489442706108,-0.0066654905676842],[0.060529407113791,0.0052179908379912,0.031696628779173],[-0.0088511304929852,-0.0001036982430378,-0.054107047617435]],[[0.0014755751471967,0.040368817746639,-0.052359625697136],[0.031485892832279,-0.10818332433701,0.052607391029596],[0.028388407081366,0.0041564484126866,-0.057019740343094]],[[0.0019529822748154,0.043429680168629,0.0059512807056308],[0.079351373016834,-0.0043050623498857,0.01669548265636],[0.010383121669292,0.096018373966217,0.017192985862494]],[[0.022755842655897,0.099306955933571,-0.058080840855837],[0.0079775415360928,-0.055306911468506,0.042979028075933],[-0.038823883980513,0.0069880257360637,0.10375318676233]],[[0.0046731913462281,-0.0025300655979663,0.017261089757085],[-0.0098030008375645,0.0024837385863066,-0.055563308298588],[0.066332601010799,-0.031709067523479,0.071030616760254]],[[0.073169268667698,0.054356779903173,-0.068169020116329],[-0.046039935201406,-0.05684432387352,-0.06299190223217],[0.013336739502847,-8.0885140050668e-05,0.029367998242378]],[[0.016313619911671,0.052435196936131,0.0019283527508378],[-0.062105245888233,-0.021460982039571,0.035971865057945],[-0.0061935535632074,0.036680404096842,0.015587283298373]],[[0.045969717204571,-0.026481226086617,0.042960114777088],[0.018166858702898,0.01532026566565,-0.092429615557194],[-0.043989449739456,0.097880139946938,-0.035502564162016]],[[0.014299310743809,-0.041869282722473,-0.01462622359395],[-0.014796811155975,0.0072409957647324,0.035857513546944],[-0.020047562196851,-0.0050130602903664,-0.0024377582594752]],[[-0.0093015283346176,0.027071513235569,-0.086781680583954],[0.023743480443954,0.0032118898816407,-0.049995765089989],[0.0085859531536698,-0.0016575254267082,0.049919828772545]],[[-0.026942832395434,-0.044993467628956,0.042091023176908],[-0.063037618994713,0.037700686603785,-0.020673520863056],[0.033709403127432,-0.074397824704647,-0.017183186486363]],[[0.018921641632915,-0.0045961434952915,-0.041800048202276],[0.028836525976658,-0.042679391801357,-0.019311437383294],[0.013997600413859,0.065965838730335,0.0063737579621375]],[[-0.020951909944415,-0.0049844030290842,0.038704957813025],[0.0030406569130719,0.0042550982907414,-0.05261081084609],[0.070449665188789,0.030633315443993,0.0026905150152743]],[[-0.044141914695501,-0.064088463783264,-0.014073440805078],[-0.071454659104347,-0.04356000572443,-0.017240626737475],[-0.013234913349152,0.020201791077852,-0.024961898103356]],[[0.074388414621353,-0.035641089081764,0.017388381063938],[0.0036221316549927,0.0050997738726437,-0.044788368046284],[-0.032584186643362,0.011265777051449,0.054439101368189]],[[0.048159174621105,0.026798186823726,-0.0038299902807921],[0.0088555114343762,-0.0094817569479346,0.0017307717353106],[-0.0082838051021099,-0.042913589626551,0.040593728423119]],[[-0.042223874479532,0.03163843229413,-0.095964774489403],[0.046679794788361,0.090840317308903,-0.013055739924312],[0.010051914490759,0.040646344423294,0.027504362165928]],[[0.018303321674466,-0.018904278054833,-0.012589951977134],[-0.0069229803048074,0.017769329249859,-0.036665350198746],[0.00079820153769106,0.05513983219862,-0.023852216079831]],[[0.02129240334034,-0.0039163418114185,-0.0043285395950079],[-0.011789581738412,0.005433036480099,-0.04135524481535],[-0.022524431347847,-0.067752808332443,-0.048365786671638]],[[-0.02272616699338,0.015088653191924,-0.0092067774385214],[0.006965693552047,-0.020131753757596,-0.039853252470493],[0.029736418277025,-0.019559303298593,0.0022975935135037]],[[-0.049831971526146,0.022410836070776,-0.027348579838872],[-0.036894578486681,0.055753272026777,0.065243974328041],[0.024200094863772,-0.01790382899344,0.0079879416152835]],[[0.032126650214195,0.020772328600287,-0.00013715829118155],[-0.010759755037725,-0.031996078789234,0.077297009527683],[-0.053860049694777,0.040526520460844,0.012511311098933]],[[0.013468961231411,-0.0031757897231728,0.066927582025528],[-0.030646655708551,0.014352732338011,-0.011309299618006],[0.0014917793450877,0.047731518745422,0.02052834816277]],[[0.010355232283473,-0.016047604382038,-0.026399182155728],[0.029923165217042,0.03547341376543,0.069793544709682],[-0.071591258049011,-0.027009164914489,0.00728162471205]],[[0.021540904417634,0.0040362365543842,-0.060673236846924],[0.016298815608025,0.0077648293226957,0.0085266577079892],[0.04883024469018,0.06417565792799,-0.044302970170975]],[[0.025210244581103,-0.016266040503979,0.019356396049261],[0.00054706144146621,0.021856216713786,-0.033164609223604],[-0.047677077353001,-0.022390145808458,0.021564494818449]],[[0.050318352878094,-0.086086012423038,0.024217730388045],[-0.0042433235794306,-0.03045173920691,-0.013373762369156],[0.03751964494586,0.086393773555756,-0.044897612184286]],[[0.015482901595533,-0.0058037298731506,-0.042807057499886],[0.049479547888041,0.0010162994731218,0.093103237450123],[0.01919069327414,0.01885623857379,-0.030053624883294]],[[0.036830436438322,0.057125698775053,-0.090884439647198],[0.045312870293856,-0.10199353098869,-0.018395524471998],[0.051755912601948,0.0068546310067177,-0.015066638588905]],[[-0.012319878675044,-0.020916189998388,0.030589167028666],[0.0010787800420076,-0.035983681678772,0.039983309805393],[0.015151215717196,0.007347175385803,0.022813672199845]],[[-0.01949237473309,-0.049888830631971,0.013522956520319],[0.031212072819471,-0.031846415251493,-0.027634374797344],[0.012859801761806,-0.048055406659842,0.018866261467338]],[[0.00098728796001524,0.0058728721924126,-0.080561511218548],[-0.014168040826917,-0.069742076098919,0.022532567381859],[-0.0185760371387,0.059015903621912,0.010658076032996]],[[0.017070529982448,-0.060946717858315,-0.017931170761585],[0.0091414442285895,-0.030945526435971,0.065332025289536],[-0.054105576127768,0.012104087509215,-0.028304120525718]],[[-0.0059197838418186,0.028209062293172,-0.010548890568316],[-0.057055216282606,-0.04554308205843,0.015495441854],[-0.034631155431271,0.025229658931494,0.071126729249954]],[[-0.05203865468502,0.036169372498989,-0.062928445637226],[-0.037998996675014,0.042133364826441,0.033108200877905],[0.0056067262776196,-0.0042368569411337,0.059665847569704]],[[0.10558747500181,-0.031028155237436,0.00070232432335615],[-0.066521942615509,0.023248353973031,0.0063822134397924],[0.0077903945930302,0.024619864299893,-0.043679442256689]],[[-0.068845465779305,0.0095632309094071,-0.0013634588103741],[0.043469980359077,0.026182092726231,0.026441587135196],[0.00017548895266373,-0.012835611589253,0.061022613197565]],[[0.039557036012411,-0.043427053838968,0.0068695447407663],[0.017330953851342,0.07809279859066,-0.046560827642679],[-0.012837638147175,-0.028993256390095,0.011215156875551]],[[0.090490758419037,-0.013387886807323,0.012293352745473],[-0.058000236749649,-0.0027571537066251,-0.0020846407860518],[-0.030251773074269,0.0094548352062702,0.042740628123283]],[[-0.034786246716976,0.025811411440372,0.034324042499065],[0.029574878513813,0.03542422875762,0.014026908203959],[0.0040576024912298,-0.013469270430505,-0.068935319781303]],[[-0.049330167472363,-5.5173335567815e-05,0.036076623946428],[-0.040773637592793,0.022907342761755,0.072253435850143],[-0.0003635892062448,0.01609936542809,0.0053091170266271]],[[-0.011254025623202,-0.052855513989925,-0.04280161857605],[0.091162726283073,0.023513140156865,0.044854454696178],[0.031628631055355,-0.0033215859439224,0.014168913476169]],[[0.013066365383565,-0.017152730375528,0.069543197751045],[0.054615054279566,-0.0030535000842065,0.03721684589982],[-0.01399293821305,-0.0044920695945621,0.035942327231169]],[[0.052471429109573,0.028541173785925,-0.046157214790583],[-0.03966037556529,-0.01560015976429,0.003690926823765],[0.013490146026015,-0.019068565219641,0.0051975250244141]],[[-0.019899031147361,-0.037513736635447,-0.028376888483763],[-0.090167582035065,-0.0002327340625925,0.051042895764112],[0.041510004550219,-0.024866677820683,0.040931593626738]],[[0.024333640933037,0.0989133939147,0.013634980656207],[0.072725832462311,0.060063652694225,0.036037240177393],[-0.0078795300796628,0.0075146593153477,-0.076888553798199]],[[-0.065372325479984,-0.044837027788162,0.0034585250541568],[0.039330624043941,-0.046123284846544,0.042746756225824],[0.032288979738951,-0.037010177969933,0.0094446251168847]],[[0.0090600727126002,0.0052919872105122,-0.015448271296918],[-0.068559773266315,0.0077824634499848,-0.021710854023695],[0.021589957177639,0.086134031414986,0.015797069296241]],[[-0.0096546998247504,-0.0099482703953981,0.0070898267440498],[-0.019020793959498,0.033967852592468,0.040060605853796],[-0.00823356769979,0.024378333240747,0.030094003304839]],[[-0.012377928942442,0.047312553972006,-0.025010960176587],[0.036951828747988,-0.043439876288176,-0.058582924306393],[0.003152783960104,-0.11918810009956,-0.06424143910408]],[[0.0082378843799233,0.028455244377255,-0.073524102568626],[-0.016808783635497,-0.040092710405588,-0.029977887868881],[0.0069282054901123,0.033329542726278,0.005194800440222]],[[-0.056156262755394,0.0013532455777749,0.012190280482173],[0.068953044712543,0.085669234395027,-0.038102608174086],[0.057179044932127,-0.041739612817764,0.022330291569233]],[[0.02245793864131,0.0088107492774725,0.00028369115898386],[0.020743854343891,-0.048275180160999,0.020173979923129],[0.019544281065464,0.08489315956831,0.064484044909477]],[[0.00010198950621998,0.054233115166426,0.0057334685698152],[0.0066522876732051,0.013384590856731,0.0064233145676553],[0.00033411357435398,-0.01445778645575,-0.017186285927892]],[[0.015503568574786,0.012497403658926,0.018167598173022],[-0.041833840310574,-0.029060192406178,0.097033865749836],[0.018116150051355,-0.01080428622663,-0.033279776573181]],[[-0.033371523022652,-0.051263198256493,-0.072273388504982],[0.010090043768287,0.0046313577331603,-0.0068352427333593],[-0.033079199492931,0.044363807886839,-0.042712569236755]],[[-0.019497148692608,-0.034906551241875,-0.036467887461185],[-0.037876892834902,0.033482816070318,0.0061717471107841],[-0.043925687670708,-0.0089605282992125,0.027332993224263]],[[-0.026998590677977,-0.078107856214046,0.034897986799479],[-0.037199016660452,0.036155246198177,0.051496230065823],[-0.0023443705867976,-0.061490762978792,-0.039038814604282]],[[0.015653302893043,-0.016095910221338,-0.0096347369253635],[0.017918987199664,-0.11226881295443,-0.092873379588127],[0.05929309874773,0.059290774166584,-0.0050579034723341]],[[0.04645287618041,-0.036102499812841,0.0059107909910381],[0.019653739407659,-0.066926710307598,-0.048282206058502],[-0.032224245369434,-0.023514047265053,0.031192092224956]],[[-0.013974823057652,0.026004794985056,-0.041556842625141],[0.024892678484321,0.045998707413673,-0.0014188444474712],[0.075549185276031,0.051585331559181,-0.016504583880305]],[[-0.014821536839008,-0.005192119628191,-0.00073797564255074],[-0.053838845342398,0.035182174295187,0.02147488668561],[-0.058447327464819,0.045062649995089,0.026651296764612]],[[0.0017841282533482,0.051176756620407,0.0086408462375402],[-0.016209114342928,-0.01286883559078,-0.021366002038121],[0.006932825781405,0.0063647851347923,0.02936602756381]],[[0.0051796203479171,0.027155390009284,0.0064283604733646],[-0.035545200109482,-0.019450729712844,-0.0084407674148679],[-0.069204300642014,0.060477763414383,0.017326325178146]],[[0.054808963090181,-0.093436822295189,-0.00082607922377065],[0.047285012900829,-0.076300248503685,-0.054874900728464],[0.013591947034001,0.070516429841518,-0.022582851350307]],[[-0.001808054628782,0.041944216936827,-0.021985230967402],[0.056283041834831,-0.025749921798706,-0.06370635330677],[-0.05149083212018,0.051927622407675,-0.012455551885068]],[[0.08966388553381,0.042742501944304,0.0024744255933911],[-0.038105923682451,0.023554746061563,-0.025115480646491],[0.060486767441034,0.0082289511337876,-0.010942914523184]]],[[[-0.00084783451166004,-0.041286062449217,-0.022698393091559],[-0.0038897774647921,0.034420430660248,0.036262933164835],[-0.0033680014312267,-0.018230158835649,0.0017727739177644]],[[-0.026361765339971,-0.084358185529709,-0.04144537076354],[-0.018462907522917,-0.0021517616696656,0.0252800360322],[-0.020318606868386,0.0038205704186112,-0.020548040047288]],[[0.018811238929629,-0.092913337051868,0.018068993464112],[0.0052500572055578,0.04142002388835,0.021595668047667],[0.074800357222557,0.049821078777313,-0.00034233680344187]],[[-0.058676600456238,0.0071747931651771,0.011228245683014],[0.041309490799904,0.020512843504548,0.051395960152149],[0.01637808419764,0.084607496857643,-0.019073858857155]],[[-0.00054871186148375,0.018569570034742,-0.049738693982363],[0.040496785193682,0.040153864771128,-0.061944399029016],[-0.0087233521044254,0.037618912756443,0.024476036429405]],[[-0.018771857023239,0.0041732061654329,0.097231328487396],[0.024617850780487,0.023294927552342,0.02651690132916],[0.074383348226547,-0.011959010735154,-0.006980465259403]],[[0.046623699367046,0.024817394092679,0.069826059043407],[-0.002233223291114,0.058201849460602,0.015395542606711],[0.053085096180439,-0.045611210167408,-0.056082904338837]],[[0.01031184848398,-0.024941487237811,-0.017695879563689],[0.0086012119427323,-0.012909937649965,0.026805421337485],[-0.033613733947277,0.0070763658732176,-0.029102554544806]],[[0.034655939787626,-0.022485136985779,-0.032330118119717],[0.032297667115927,-0.0058881146833301,0.021305883303285],[0.039417468011379,-0.066768504679203,-0.0067337024956942]],[[0.018235996365547,-0.02816616371274,0.011895425617695],[-0.042358178645372,-0.017105106264353,-0.016559563577175],[-0.051558017730713,0.00327183958143,-0.033671390265226]],[[-0.0064065433107316,-0.023332700133324,-0.072435334324837],[0.033564928919077,0.022416679188609,0.0037811163347214],[-0.011627824045718,0.0057899202220142,0.0049393866211176]],[[0.0060263429768384,0.018497424200177,0.078934989869595],[0.048762485384941,0.032233346253633,0.014394221827388],[0.024499991908669,0.0838657990098,0.012048787437379]],[[0.064242444932461,-0.069234825670719,-0.041802439838648],[-0.034849099814892,-0.012104088440537,-0.0020141426939517],[-0.0075641362927854,0.050912164151669,-0.07709101587534]],[[-0.0066085434518754,0.017392389476299,0.026552185416222],[-0.090853944420815,-0.0041648396290839,-0.019437411800027],[0.07115089148283,-0.025367790833116,0.0071260668337345]],[[0.0082288691774011,0.030103387311101,0.087642140686512],[0.0090169366449118,0.1103393509984,0.034735053777695],[0.027040056884289,0.057254202663898,0.083660744130611]],[[-0.049749929457903,-0.063107900321484,-0.021961042657495],[-0.013928926549852,-0.014453862793744,-0.050125628709793],[-0.0038673754315823,-0.054765593260527,-0.063308455049992]],[[0.015411540865898,-0.014668645337224,-0.02032464183867],[-0.033196985721588,0.013499721884727,0.086265228688717],[0.081516206264496,-0.0065769301727414,0.028989106416702]],[[-0.0071348249912262,0.02369680441916,0.0060791471041739],[-0.00068288255715743,-0.042168520390987,0.0092867203056812],[-0.032900769263506,-0.0087556019425392,-0.0085900109261274]],[[0.056835450232029,-0.039186984300613,-0.012241930700839],[0.0079115116968751,-0.068039499223232,-0.0034108404070139],[-0.022706756368279,-0.048433434218168,0.05871868878603]],[[0.086177326738834,-0.072204686701298,0.073194064199924],[0.050651177763939,0.069386929273605,0.063932821154594],[-0.043195031583309,0.013822749257088,0.081060402095318]],[[-0.0098781455308199,-0.013823229819536,0.032572194933891],[0.0085398033261299,-0.064088679850101,0.027232129126787],[0.002058404032141,-0.021416779607534,-0.087100699543953]],[[0.0026837305631489,-0.0172926094383,-0.012245149351656],[0.04177462682128,0.012843186035752,-0.017468141391873],[0.079745560884476,-0.012384888716042,0.026091996580362]],[[0.037043895572424,0.033667638897896,0.014961617067456],[-0.046801935881376,0.037118762731552,-0.030129974707961],[0.03546741604805,0.01314434222877,0.0024993054103106]],[[-0.063244059681892,-0.020092757418752,-0.028085060417652],[0.05699996650219,0.0078892586752772,-0.045711163431406],[0.068109765648842,-0.007056281901896,0.031273677945137]],[[-0.066320590674877,0.027697430923581,-0.069457702338696],[-0.073743142187595,0.094174958765507,-0.0075585395097733],[-0.0015413092914969,0.066071756184101,0.015410653315485]],[[0.034993663430214,-0.035285577178001,-0.030568312853575],[-0.031963508576155,0.039334174245596,0.08037543296814],[0.010875661857426,0.012699429877102,0.010597353801131]],[[-0.019723804667592,-0.035002779215574,0.12571613490582],[0.023269115015864,-0.00095859821885824,0.060153860598803],[0.089914746582508,0.020973663777113,0.035265151411295]],[[0.086238324642181,0.029170194640756,0.067262001335621],[-0.024375289678574,-0.0056521254591644,0.037824537605047],[-0.053703088313341,0.067394345998764,-0.03629345446825]],[[0.0069368942640722,0.017941307276487,0.11410774290562],[0.077818609774113,0.023472756147385,0.033606547862291],[0.025404427200556,0.024129223078489,0.04603647813201]],[[-0.048003315925598,0.058105431497097,-0.064890421926975],[0.055915545672178,0.023151548579335,0.035141244530678],[0.011281365528703,-0.016099879518151,0.038322746753693]],[[-0.042019117623568,0.038024347275496,0.013575223274529],[0.046768039464951,0.089993014931679,0.019866345450282],[0.020790752023458,0.015965135768056,-0.0078821163624525]],[[0.052969455718994,0.039741974323988,-0.0020235034171492],[0.026970459148288,0.017483929172158,-0.0046691833995283],[0.012597105465829,0.028356250375509,0.060469351708889]],[[0.0081331022083759,-0.063092619180679,0.043080262839794],[0.0018660475034267,0.019178947433829,-0.04791359603405],[-0.071757458150387,-0.04274120926857,-0.0052391244098544]],[[-0.034479923546314,0.049336735159159,-0.073792524635792],[0.040584459900856,0.039792828261852,0.03964039310813],[0.087140761315823,0.092849783599377,0.036166377365589]],[[-0.0064738127402961,-0.073060162365437,0.045161545276642],[0.019015999510884,0.079007044434547,-0.071053028106689],[-0.043834459036589,0.027766799554229,-0.0014939625980332]],[[0.02428100630641,-0.049874447286129,0.036104813218117],[0.012025725096464,0.068580642342567,0.00033532408997416],[0.0043901046738029,0.048261795192957,-0.0029972854536027]],[[-0.010108673945069,0.0059684081934392,-0.0051238988526165],[0.064049877226353,0.017652980983257,0.028865568339825],[-0.05184293910861,0.069035597145557,0.028723629191518]],[[0.092919535934925,0.045660279691219,0.086551487445831],[-0.03579743206501,0.05956469103694,-0.0014778835466132],[0.090716831386089,-0.0018953576218337,-0.01450228318572]],[[0.033461451530457,0.0089309047907591,0.011848650872707],[0.017455829307437,0.063523322343826,0.043337911367416],[-0.0040830201469362,-0.040515094995499,0.028448166325688]],[[0.029876323416829,-0.040383793413639,0.030696449801326],[0.060529641807079,0.025162091478705,0.015091572888196],[0.052717164158821,-0.017727091908455,-0.0049041174352169]],[[0.050407540053129,0.025318644940853,0.052900016307831],[-0.051239803433418,-0.01971697434783,0.02150990255177],[0.016837935894728,0.017365520820022,0.016925849020481]],[[0.0095725441351533,0.070921137928963,0.072181865572929],[0.0013244199799374,-0.051321763545275,0.046011138707399],[0.059787951409817,0.042789988219738,0.036811072379351]],[[0.021729158237576,0.054018646478653,-0.063776135444641],[0.020114405080676,-0.052821889519691,-0.0072614010423422],[-0.0059328079223633,-0.015889653936028,0.016803376376629]],[[-0.026197353377938,-0.046959262341261,-0.059658173471689],[0.025255586951971,0.0082618528977036,-0.0049567241221666],[-0.070707522332668,-0.043834052979946,0.0149533636868]],[[-0.027611594647169,0.036683674901724,-0.038776833564043],[0.04242392256856,0.02187211252749,0.035852558910847],[0.07661634683609,0.0091873779892921,0.023169476538897]],[[-0.028568554669619,-0.046021673828363,0.023803811520338],[-0.023469850420952,-0.029551632702351,-0.019105656072497],[0.037019930779934,-0.0043263332918286,-0.013919843360782]],[[0.008468016050756,0.069822035729885,0.018140252679586],[0.089676648378372,0.00054850796004757,0.039028353989124],[0.035860616713762,0.01485905982554,0.065106362104416]],[[0.057197164744139,0.065789237618446,-0.0072965892031789],[0.025861391797662,0.061989277601242,0.016492562368512],[0.014658959582448,-0.05845220759511,0.0024918993003666]],[[0.077985867857933,-0.037108104676008,0.072952926158905],[-0.027448700740933,0.01689363643527,-0.035493601113558],[0.069915808737278,-0.021820735186338,0.020424200221896]],[[0.027666389942169,0.0086360713467002,0.042005330324173],[0.0044015920720994,-0.011043616570532,0.010570744052529],[0.087641552090645,-0.0039557064883411,0.10989212989807]],[[0.05338141694665,0.0030807626899332,-0.090504921972752],[0.02944490686059,-0.067485608160496,-0.00039634431595914],[-0.03551783785224,-0.017739627510309,-0.038380898535252]],[[0.042909279465675,-0.018587224185467,0.035760063678026],[-0.019501183182001,-0.0022779922001064,0.0055950810201466],[0.048015739768744,0.058809082955122,0.028412830084562]],[[-0.042378649115562,0.022115085273981,-0.019335666671395],[0.050771743059158,0.054736975580454,0.0076914657838643],[0.0017321589402854,-0.04715272039175,-0.0075179287232459]],[[0.041468448936939,-0.0091463997960091,-0.015545484609902],[0.023220118135214,0.10142292827368,0.0041094138287008],[0.068565495312214,0.018903687596321,0.096079342067242]],[[0.057216592133045,-0.046017713844776,-0.018335802480578],[0.011454383842647,0.090372107923031,0.030308563262224],[0.0018859072588384,-0.020876744762063,0.04095046594739]],[[0.013953451998532,0.0055775945074856,-0.050131566822529],[-0.022303108125925,-0.029792338609695,0.0042563322931528],[0.029651550576091,0.045010279864073,0.028708731755614]],[[-0.0067432699725032,-0.039841745048761,0.14561754465103],[0.047132849693298,0.1615092009306,0.00028188107535243],[-0.10169559717178,-0.0089657139033079,0.069912165403366]],[[-0.016644118353724,-0.00090931501472369,0.016646472737193],[0.063070699572563,-0.030046511441469,-0.030592920258641],[-0.025782644748688,-0.018502378836274,-0.045764397829771]],[[0.02944609709084,0.025608265772462,0.03224691003561],[0.015416653826833,-0.003628886770457,0.0099418945610523],[0.045946095138788,-0.00030835252255201,-0.025577766820788]],[[-0.0064032804220915,0.027491318061948,-0.052990291267633],[-0.026671389117837,0.067986808717251,0.050188757479191],[0.063099697232246,0.0016221383120865,-0.0066416906192899]],[[-0.046506322920322,-0.0014838215429336,0.012911816127598],[0.058543305844069,-0.044453673064709,-0.026322720572352],[-0.0041921162046492,0.069609582424164,-0.028688473626971]],[[-0.093667604029179,-0.053978089243174,-0.022452650591731],[-0.060094457119703,0.039043311029673,-0.010292617604136],[-0.040094539523125,-0.020711652934551,-0.039390046149492]],[[0.096262685954571,0.020492801442742,-0.023194082081318],[0.06695731729269,0.085636481642723,0.029138660058379],[0.014747273176908,0.031826794147491,-0.0047902297228575]],[[0.049517475068569,0.031603783369064,0.055227130651474],[0.0023607700131834,0.00047442124923691,0.062910430133343],[-0.041753407567739,-0.026577599346638,-0.0041962102986872]],[[-0.062385082244873,0.07195982336998,0.0054049091413617],[0.0012406811583787,0.012815626338124,0.030625948682427],[0.0066835982725024,0.033228565007448,-0.033638067543507]],[[0.067345097661018,-0.048782363533974,0.046131569892168],[0.061264883726835,-0.0011819810606539,0.014795726165175],[-0.018547160550952,-0.066887050867081,0.018540028482676]],[[-0.02027240768075,0.073263213038445,0.0065707196481526],[0.0093662673607469,-0.063502639532089,-0.001728095812723],[0.023343201726675,-0.019500453025103,0.033682700246572]],[[0.098537087440491,-0.058544006198645,-0.0085599459707737],[0.019645962864161,-0.038271326571703,0.052606917917728],[-0.034925300627947,-0.037510246038437,-0.022196978330612]],[[0.0053661824204028,0.025466220453382,0.04952647164464],[-0.02616099268198,0.05708871036768,-0.06993392854929],[0.064792208373547,-0.0039804251864552,0.036302659660578]],[[0.077911123633385,0.015971815213561,0.079335369169712],[0.028370058164001,0.062865845859051,0.019778158515692],[0.046486958861351,-0.0018596504814923,0.018661934882402]],[[0.10226411372423,-0.0049136281013489,-0.01448786444962],[0.0051612569950521,0.0041067251004279,0.13214890658855],[0.0029055911581963,-0.042673744261265,0.024996707215905]],[[-0.0021271540317684,0.045683808624744,0.029677698388696],[0.073088511824608,-0.029870793223381,0.0025860359892249],[-0.014139098115265,0.011408570222557,-0.01632690988481]],[[0.03604282438755,0.046742998063564,0.056675989180803],[0.052672903984785,0.034210011363029,0.025535358116031],[0.036075212061405,0.049978278577328,0.0045213396660984]],[[0.031240092590451,-0.0038440206553787,0.023966101929545],[0.014987513422966,-0.06602618843317,0.067339144647121],[0.00085095362737775,0.038674123585224,-0.033644322305918]],[[0.050277888774872,-0.0013915165327489,0.052552212029696],[-0.059452924877405,-0.026251534000039,0.028477568179369],[0.018461812287569,3.4616503398865e-05,0.067835800349712]],[[0.029892221093178,0.031540207564831,0.027887003496289],[0.003251044312492,0.009045279584825,0.011213441379368],[0.065084882080555,0.072039559483528,-0.028072344139218]],[[-0.046375419944525,-0.011683317832649,0.005305603146553],[-0.061756864190102,-0.05706612020731,0.024203741922975],[-0.024232026189566,-0.044228587299585,-0.016079010441899]],[[0.052065461874008,0.108642347157,0.096724770963192],[0.018921351060271,0.090853348374367,-0.0082269981503487],[0.089449398219585,0.065673634409904,0.060873359441757]],[[-0.037561193108559,0.048232600092888,0.095649793744087],[-0.013828095048666,2.0231180315022e-05,-0.00040288077434525],[0.018552934750915,0.056365840137005,0.037277404218912]],[[0.028864966705441,0.017570456489921,0.066491395235062],[0.019180664792657,-0.0191889423877,0.0025416081771255],[0.0079148644581437,-0.019805448129773,-0.025144681334496]],[[-0.018699243664742,0.017627945169806,0.046041756868362],[0.005208850838244,0.025461534038186,0.067735955119133],[-0.010566411539912,-0.017001144587994,0.044010438024998]],[[0.062741070985794,0.021991994231939,-0.027645019814372],[0.013886108994484,0.042997576296329,-0.038447108119726],[0.0096765216439962,-0.053480945527554,-0.01545562595129]],[[-0.008052428252995,0.049182131886482,0.035431437194347],[0.011413448490202,0.04714684933424,-0.016922581940889],[0.029943164438009,0.11173275113106,0.017659660428762]],[[-0.022750226780772,0.11627854406834,-0.049763649702072],[0.028563119471073,0.023144662380219,0.063833214342594],[-0.074203372001648,0.063304223120213,0.056562021374702]],[[0.060921359807253,0.063570976257324,0.032815158367157],[0.062187016010284,-0.0024823879357427,0.013713100925088],[0.017605813220143,0.025421731173992,0.044888876378536]],[[-0.013687022961676,-0.036126270890236,0.006006047129631],[0.041081864386797,-0.013785543851554,0.06016032397747],[-0.038519211113453,0.009435810148716,-0.022434566169977]],[[0.0049251387827098,0.08772511780262,-0.029175514355302],[-0.051708813756704,0.0028559039346874,0.0027304203249514],[0.046574108302593,-0.023098092526197,0.015023642219603]],[[0.0058702984824777,0.024177821353078,0.056323204189539],[0.085025541484356,0.02865962870419,0.074678920209408],[0.075939662754536,0.013915489427745,0.045980729162693]],[[-0.05174146220088,0.025231750681996,-0.0094474945217371],[-0.025103183463216,-0.035809565335512,0.043747197836637],[-0.039177253842354,0.0026835137978196,-0.1006031408906]],[[-0.071029089391232,-0.031736075878143,0.041127700358629],[-0.020161289721727,-0.018762363120914,-0.038747046142817],[-0.025145435705781,-0.033880453556776,-0.01243363879621]],[[0.039837758988142,0.015150640159845,0.013314970768988],[0.039315216243267,0.074727408587933,0.017390083521605],[0.024398609995842,0.11914671212435,0.0005012244801037]],[[0.00086063961498439,0.04804116114974,-0.028863836079836],[0.010240373201668,0.10368309915066,0.0087925521656871],[0.019427245482802,0.055723126977682,0.01073504704982]],[[0.061411708593369,-0.03135759010911,0.024969339370728],[-0.01008777320385,0.038275361061096,0.029310809448361],[-0.024097856134176,0.10943921655416,0.043504204601049]],[[0.016234375536442,0.06930822879076,0.033336862921715],[0.089113190770149,0.040430556982756,0.046092081815004],[-0.012999108992517,0.10978350043297,0.082953400909901]],[[0.025390254333615,0.020843170583248,-0.012582654133439],[0.053626667708158,0.045868571847677,0.027868065983057],[-0.038900800049305,0.029600717127323,0.047650009393692]],[[-0.079541318118572,-0.02018884010613,-0.04768780618906],[-0.007992253638804,-0.045647192746401,0.0047485292889178],[-0.015708442777395,0.0055525018833578,-0.057042676955462]],[[0.024175176396966,-0.011329566128552,0.007225894369185],[0.01734621822834,0.033537171781063,-0.030186789110303],[-0.031389523297548,0.0071695228107274,-0.0074237850494683]],[[0.038429614156485,0.029368801042438,0.019797479733825],[0.0750368013978,0.022356446832418,0.030070278793573],[0.055015753954649,0.056688077747822,-0.0091562857851386]],[[-0.019050974398851,-0.01408414170146,0.067384876310825],[0.0024278946220875,0.011223619803786,0.037479519844055],[0.015321810729802,0.11899106949568,0.042755518108606]],[[0.01291008386761,-0.019373441115022,0.047126058489084],[0.026102939620614,0.095942810177803,-0.049367755651474],[-0.013112356886268,0.02200117893517,-0.021824214607477]],[[-0.047993451356888,0.034662764519453,-0.021965812891722],[-0.018187686800957,0.0033184804487973,0.043301120400429],[0.013197208754718,0.061695698648691,-0.0026707632932812]],[[0.070171497762203,0.074676312506199,0.036044850945473],[0.051646020263433,0.093170367181301,0.0710564032197],[0.0011604534229264,-0.0081073297187686,0.068922974169254]],[[-0.014295013621449,0.053418315947056,0.00090128876036033],[0.073568649590015,-0.0080623161047697,0.086101092398167],[0.022815035656095,0.021369609981775,0.0062283575534821]],[[0.056474316865206,-0.0159324798733,0.0054179187864065],[0.056629341095686,-0.057017188519239,0.012037070468068],[0.0051358323544264,-0.016472574323416,-0.020047845318913]],[[0.035920787602663,-0.035926345735788,-0.028639484196901],[0.049427758902311,0.048736363649368,0.10449286550283],[-0.016635870561004,-0.012060588225722,-0.057929825037718]],[[-0.023798424750566,-0.0011566033354029,0.062115661799908],[0.0111891515553,-0.012554825283587,-0.020912198349833],[0.023663578554988,-0.010567596182227,0.022842044010758]],[[-0.03636896982789,0.015274735167623,0.018122781068087],[0.040260136127472,-0.01983205601573,0.075832039117813],[0.034788783639669,0.12495896965265,0.039032157510519]],[[0.015650805085897,0.0046634543687105,-0.043584182858467],[0.084303714334965,0.050927795469761,-0.019943710416555],[0.012149610556662,0.029279625043273,-0.004814418964088]],[[-0.01021874230355,-0.081688672304153,0.034414485096931],[0.041441690176725,0.036932718008757,0.036277234554291],[0.087658494710922,0.034453433007002,0.043477855622768]],[[-0.061328813433647,-0.021460950374603,-0.0054653324186802],[-0.003345150500536,0.013264927081764,0.072025015950203],[-0.0047026011161506,0.03948724642396,0.034119453281164]],[[-0.0088230120018125,-0.07984184473753,-0.044148970395327],[-0.031070137396455,0.0048769321292639,-0.10423622280359],[-0.096712671220303,-0.0066783735528588,-0.01908734254539]],[[0.064835950732231,0.03688171505928,0.051571939140558],[-0.00070624251384288,-0.053965844213963,-0.015941042453051],[0.10949998348951,-0.010008877143264,0.035549566149712]],[[-0.048093970865011,-0.04598681256175,-0.0030907278414816],[-0.052133154124022,0.04561448469758,-0.033626485615969],[-0.028285663574934,-0.04135537520051,0.037014100700617]],[[-0.045752555131912,0.010760254226625,-0.095406800508499],[-0.046117804944515,-0.019318047910929,-0.038737710565329],[0.00048792906454764,-0.014157211408019,0.069574221968651]],[[-0.046897660940886,0.0043705152347684,-0.053612548857927],[0.0041991779580712,-0.05183070898056,-0.02369812130928],[-0.075856201350689,0.011204641312361,0.0023249979130924]],[[0.09031879901886,0.032347336411476,0.011738724075258],[0.031288061290979,-0.029015282168984,-0.0094420434907079],[-0.021605243906379,-0.018057035282254,0.028184339404106]],[[0.03282817825675,0.072209000587463,-0.010850241407752],[0.046486750245094,0.010539433918893,0.021866045892239],[-0.048642009496689,0.061457499861717,-0.0075861029326916]],[[-0.089849211275578,0.044257834553719,-0.024000449106097],[-0.12723955512047,-0.06807105243206,0.056701824069023],[0.03139341622591,-0.0055893948301673,-0.038865625858307]],[[-0.024357117712498,-0.068492382764816,0.073747836053371],[-0.0041647157631814,0.059360444545746,0.075518637895584],[0.033942181617022,-0.055218532681465,0.043449673801661]],[[-0.052910469472408,-0.01923793181777,-0.021000003442168],[-0.041501626372337,-0.10733055323362,-0.00039860705146566],[0.037889271974564,0.034414239227772,-0.030803512781858]],[[0.0626021027565,-0.048468418419361,-0.12241797894239],[-0.030936270952225,-0.024662086740136,-0.070936642587185],[0.0025232324842364,0.047988910228014,0.055515583604574]],[[0.0065446030348539,0.039056662470102,0.013292387127876],[-0.0084244823083282,0.030103178694844,-0.014338401146233],[0.040002211928368,-0.032549861818552,-0.035475663840771]],[[0.099055856466293,-0.011498970910907,0.10424298048019],[-0.0051562921144068,0.051134515553713,-0.01483135484159],[-0.044233426451683,-0.001510753063485,-0.052825815975666]],[[-0.075292900204659,-0.042859461158514,0.0045771393924952],[0.055014528334141,-0.061934553086758,0.064728230237961],[0.016756625846028,-0.023891789838672,-0.07362973690033]],[[0.06054088845849,0.032578464597464,0.0073863160796463],[-0.035664360970259,0.0051884236745536,0.018604032695293],[0.012114813551307,0.068551659584045,0.03253261372447]],[[-0.062609568238258,-0.052081696689129,-0.032773192971945],[0.048944447189569,-0.037268195301294,-0.037736717611551],[0.022992657497525,-0.056507721543312,0.0058397357352078]],[[0.016424713656306,-0.013196217827499,-0.020011888816953],[0.061250474303961,0.038814432919025,-0.059959750622511],[0.036448378115892,0.0026602565776557,-0.0057709678076208]],[[0.078217968344688,-0.00085667299572378,0.044655300676823],[-0.042682554572821,-0.038212362676859,-0.03519494086504],[-0.019699124619365,0.025832643732429,0.02136947773397]]],[[[-0.024794215336442,-0.017511313781142,0.012247938662767],[-0.028615538030863,0.010135552845895,-0.0096319112926722],[0.041435431689024,0.01984603330493,-0.052208788692951]],[[0.001787748769857,-0.025249924510717,-0.010298383422196],[0.012732090428472,0.021426521241665,-0.023480869829655],[-0.061569418758154,0.006378619465977,0.051287215203047]],[[0.085148259997368,-0.021546738222241,-0.028657872229815],[-0.09068601578474,0.060975272208452,0.0082459822297096],[-0.0044144918210804,0.047922171652317,-0.052839830517769]],[[-0.034299917519093,-0.0066332477144897,-0.044619802385569],[0.02477746270597,0.11568384617567,0.04154484719038],[0.027331154793501,0.045631244778633,0.089088298380375]],[[0.012510241940618,0.041125237941742,-0.011921561323106],[0.05272776260972,0.049424283206463,-0.024490371346474],[0.027230136096478,0.008582703769207,-0.022620655596256]],[[0.051642026752234,0.034071106463671,0.038656022399664],[0.038638681173325,-0.043626468628645,-0.00080437515862286],[0.00077665073331445,0.021835768595338,0.036984954029322]],[[0.018351290374994,0.01126077119261,0.039482001215219],[-0.032687347382307,0.019777351990342,-0.043976314365864],[0.011197944171727,-0.00035848451079801,0.0027191499248147]],[[-0.020101562142372,0.015359091572464,0.022247469052672],[-0.015406779013574,-0.073664300143719,0.057300720363855],[-0.074114128947258,0.023013019934297,0.029661672189832]],[[0.043250992894173,0.030397683382034,0.018993055447936],[-0.01275678165257,0.014029112644494,0.016038237139583],[0.10410882532597,0.027918381616473,0.030322575941682]],[[-0.0042859427630901,-0.00084263895405456,0.063011802732944],[-0.05084840208292,0.018528895452619,-0.048828318715096],[0.08364774286747,-0.010870564728975,0.11915849149227]],[[-0.03105479106307,0.056373089551926,0.054363392293453],[0.0040325005538762,0.066727943718433,0.065410986542702],[0.03304535523057,0.016416670754552,0.00052615551976487]],[[0.049253486096859,0.082491479814053,-0.015761943534017],[0.12737521529198,0.0994907990098,0.10287596285343],[0.05241034924984,0.12477560341358,0.15533308684826]],[[0.040233194828033,0.0082415826618671,-0.025458911433816],[-0.0063920626416802,0.0087641105055809,-0.034436695277691],[0.019761146977544,-0.012037785723805,-0.051756870001554]],[[0.012472987174988,0.028210438787937,-0.011496846564114],[0.040095049887896,-0.0070629213005304,-0.00063266680808738],[0.007759615778923,-0.061248134821653,-0.015948563814163]],[[0.053425636142492,0.061959985643625,-0.015443718060851],[0.13888362050056,0.032746627926826,0.015552677214146],[0.091814316809177,-0.00084052141755819,0.13852167129517]],[[-0.014960722997785,0.051389932632446,0.029176007956266],[-0.022756539285183,0.050486620515585,0.05957467854023],[0.020880816504359,0.037132807075977,0.055398665368557]],[[0.088610664010048,-0.0049333199858665,0.033177062869072],[-0.021966686472297,-0.0041338591836393,-0.015830526128411],[0.0063020400702953,0.02072467841208,0.033246226608753]],[[-0.030862828716636,-0.020235970616341,0.11679469048977],[0.062402326613665,-0.0356165766716,0.074791379272938],[0.060266729444265,0.095641359686852,0.082205213606358]],[[-0.021230844780803,0.026675030589104,0.037367295473814],[0.0003279730444774,0.093862615525723,0.056890852749348],[0.027957843616605,0.035250272601843,0.0045882021076977]],[[-0.011563670821488,0.061062403023243,0.036890581250191],[0.00082808628212661,0.017322300001979,0.019943747669458],[0.010888399556279,-0.037570640444756,0.032179445028305]],[[-0.067410156130791,-0.051897298544645,-0.028523815795779],[-0.026548538357019,-0.0077363946475089,-0.12651969492435],[-0.059436418116093,-0.021582797169685,-0.10832521319389]],[[-0.0011041263351217,0.035419628024101,0.10981111228466],[0.044215559959412,0.061038196086884,0.0060744513757527],[-0.044930811971426,-0.0097514418885112,0.054814238101244]],[[0.013847671449184,0.00771066499874,-0.035868417471647],[0.027646878734231,0.077318139374256,-0.0042721717618406],[0.019674858078361,0.010694812051952,0.029587369412184]],[[0.037524469196796,0.014957841485739,0.046757355332375],[-0.030590521171689,0.049158159643412,-0.063395813107491],[0.01837514154613,-0.0023980280384421,0.008694845251739]],[[0.068359538912773,0.028325347229838,0.025545280426741],[-0.010037484578788,0.13299024105072,0.049395140260458],[0.064056895673275,0.12434078752995,0.069347694516182]],[[0.055656209588051,-0.022261125966907,-0.0063089760951698],[0.024963835254312,-0.02207238599658,0.035784590989351],[0.096872970461845,0.016967110335827,0.14679887890816]],[[0.041231639683247,0.098244778811932,0.05492939054966],[0.0087348120287061,0.066804975271225,0.11431414633989],[-0.0028526652604342,-0.032734222710133,-0.018502930179238]],[[0.042847275733948,0.036707881838083,0.095309503376484],[-0.014185513369739,0.036282360553741,0.078893609344959],[0.051190186291933,0.033419404178858,-0.0027665123343468]],[[0.0051941005513072,0.017869086936116,0.05087111517787],[-0.0082818074151874,0.015337779186666,-0.025625709444284],[0.023807011544704,-0.027722893282771,0.0046660946682096]],[[-0.1020677909255,0.074326284229755,-0.04665333032608],[0.017713075503707,0.024323372170329,-0.049956522881985],[0.018454013392329,-0.027933891862631,-0.014982325024903]],[[-0.037131726741791,-0.053112041205168,0.030685162171721],[-0.037940587848425,0.077519357204437,0.037830885499716],[0.067421972751617,-0.021784303709865,-0.06483905762434]],[[0.034730967134237,-0.0014074329519644,-0.027862751856446],[-0.036370173096657,0.00049074599519372,0.02868889644742],[-0.044009801000357,0.025458984076977,0.050646007061005]],[[-0.042068276554346,-0.076027043163776,0.02251547947526],[-0.051681477576494,0.055212393403053,-0.0058276397176087],[0.022955358028412,-0.084659866988659,0.025978410616517]],[[0.025777630507946,0.025031672790647,-0.034629382193089],[0.089281588792801,-0.076724760234356,0.038551691919565],[-0.01646925508976,0.0047759506851435,-0.0040385746397078]],[[0.0082059586420655,-0.063046142458916,-0.00096359068993479],[0.01578208617866,-0.0065228203311563,-0.058750487864017],[-0.042551923543215,0.024009507149458,0.00049668131396174]],[[0.045468859374523,0.038299530744553,0.010261395946145],[0.077799156308174,0.011270130053163,0.022431258112192],[0.054230079054832,-0.0050966115668416,-0.012793079018593]],[[0.00682119326666,0.056882925331593,-0.053361512720585],[-0.00098683754913509,0.03819315508008,0.01741205714643],[0.089524060487747,0.067821569740772,0.071834176778793]],[[-0.042558796703815,0.014931371435523,0.063396170735359],[-0.045722089707851,-0.089527957141399,0.0095542734488845],[0.013826538808644,-0.0094563420861959,0.078765675425529]],[[0.042764086276293,-0.030417727306485,0.0042125987820327],[0.0017228215001523,0.095559075474739,0.0041576800867915],[-0.0057374974712729,-0.0040862285532057,-0.047889571636915]],[[0.025082955136895,0.030837155878544,0.016380472108722],[0.028551582247019,-0.029162438586354,-0.014051110483706],[0.022568885236979,0.071571379899979,0.081517785787582]],[[0.020834531635046,0.02341060526669,0.01626399345696],[-0.04324459657073,0.012075549922884,0.055603466928005],[-0.05014156550169,0.0060521648265421,-0.073739975690842]],[[0.0087871514260769,-0.034203045070171,-0.031355004757643],[0.012318570166826,0.043158300220966,0.0028159129433334],[0.08185838162899,0.029884468764067,-0.021478252485394]],[[0.06857331097126,0.081818118691444,0.10115251690149],[0.060529995709658,0.033885952085257,-0.028751036152244],[0.15882141888142,0.0062218895182014,0.048729348927736]],[[-0.02088363468647,-0.0049441382288933,0.017821313813329],[0.026060314849019,0.018428733572364,0.070329517126083],[0.03919779509306,-0.022651188075542,0.00078131922055036]],[[-0.01376876141876,0.028767112642527,0.046316578984261],[0.035379610955715,0.079416319727898,0.0041027604602277],[0.039063163101673,-0.0054066875018179,0.0080581679940224]],[[0.02421597391367,0.0086344555020332,0.042796529829502],[-0.083455115556717,0.015517682768404,0.023629395291209],[-0.049025259912014,-0.040039770305157,-0.025272216647863]],[[0.040343873202801,-0.068414896726608,0.078492522239685],[0.067667685449123,-0.045013181865215,0.05324974656105],[0.10543853789568,-0.0014885663986206,0.066262096166611]],[[0.045590572059155,-0.059724234044552,0.0041939471848309],[0.017879175022244,0.088183090090752,0.039152286946774],[-0.0080306502059102,0.021957192569971,0.098525665700436]],[[-0.088530533015728,-0.069495260715485,-0.074650153517723],[0.017693327739835,-0.037113834172487,-0.053944449871778],[-0.030077258124948,-0.019826846197248,-0.0044543440453708]],[[0.021353853866458,0.032991349697113,-0.012501223944128],[0.021105788648129,0.0040029743686318,0.026848297566175],[-0.082188978791237,0.00047209236072376,0.0073872967623174]],[[-0.045074496418238,-0.016288239508867,-0.10123670846224],[-0.054970379918814,-0.00015378194802906,-0.046788699924946],[-0.00014389958232641,-0.027124255895615,-0.034068185836077]],[[0.019739091396332,-0.013327338732779,0.050841882824898],[0.056658212095499,0.0053947535343468,0.071092672646046],[0.086178034543991,0.010879610665143,0.10795628279448]],[[0.048918224871159,0.001895755645819,-0.010654500685632],[-0.012000560760498,0.041120126843452,-0.019936736673117],[-0.0035282196477056,0.0099584646522999,-0.019815528765321]],[[0.10210175067186,0.097539253532887,0.06232400983572],[0.073256507515907,0.017805451527238,0.09275184571743],[0.12832346558571,0.088252037763596,0.0056665255688131]],[[0.02320602349937,0.039356026798487,0.011009828187525],[-0.02266595326364,0.11491909623146,0.082375690340996],[0.029006248340011,0.13592790067196,0.046193387359381]],[[0.0060502169653773,0.04585924744606,-0.015062194317579],[0.012692363932729,0.064023979008198,0.030199220404029],[0.029992429539561,0.020201213657856,0.034272842109203]],[[0.059833697974682,0.019622452557087,0.042122852057219],[-0.018969504162669,0.0069797085598111,0.045689206570387],[0.029389062896371,0.022529315203428,0.063207045197487]],[[0.016314517706633,-0.04262625426054,0.0040332516655326],[0.011426039040089,0.071176536381245,0.021474940702319],[-0.066953793168068,-0.0068474542349577,-0.06508719176054]],[[-0.038438603281975,0.072855517268181,0.030948106199503],[0.023158932104707,-0.023648774251342,0.025981668382883],[0.016313880681992,0.078201681375504,-0.0070993308909237]],[[-0.011319314129651,0.039238885045052,0.0061019090935588],[0.011182943359017,-0.014739711768925,0.14815731346607],[0.050664722919464,0.051180440932512,-0.023523814976215]],[[0.015681564807892,-0.037373516708612,0.034430727362633],[0.12063653022051,0.011080656200647,-0.072858162224293],[-0.012651708908379,0.080843463540077,0.00028354593086988]],[[-0.032593131065369,-0.020232930779457,-0.020778656005859],[-0.081069476902485,0.012061501853168,-0.011185888200998],[-0.0066493866033852,0.019373282790184,-0.040430493652821]],[[0.10488986968994,0.0073046269826591,0.043859079480171],[0.0082279900088906,0.055499561131001,0.033890951424837],[0.028502011671662,0.078759878873825,0.1047096773982]],[[-0.016282895579934,0.05060676112771,-0.042351379990578],[0.0012716657947749,0.032199468463659,0.032484710216522],[0.07571318000555,0.025365550071001,0.0070088487118483]],[[0.064707152545452,-0.0045712850987911,0.083830505609512],[0.051932357251644,-0.0028737518005073,-0.026731284335256],[0.05648273602128,0.049723688513041,0.020497834309936]],[[-0.028863908722997,0.02504407428205,0.044998299330473],[-0.0074494266882539,0.054721299558878,0.0076042623259127],[-0.010290624573827,0.058146096765995,0.056834954768419]],[[0.022555146366358,0.0050547928549349,0.039952307939529],[0.019908817484975,0.13780896365643,0.022359054535627],[0.056264244019985,0.012279557995498,0.00098433077801019]],[[0.078646697103977,-0.021139917895198,0.028856832534075],[0.034948110580444,0.084878444671631,0.014730287715793],[0.070828050374985,0.080202013254166,0.010067951865494]],[[0.11100192368031,0.0055954987183213,0.039244677871466],[0.01770887337625,0.0001255333336303,0.049934245646],[0.068606249988079,0.060142852365971,-0.026669654995203]],[[0.013536180369556,0.030295779928565,0.059695389121771],[0.0097006307914853,0.081726253032684,0.021452277898788],[0.087808266282082,0.03203459084034,0.0092379348352551]],[[0.055733218789101,-0.03399919718504,0.084702588617802],[0.060732189565897,0.02775951102376,0.082810074090958],[0.050503060221672,0.073349252343178,0.066284582018852]],[[-0.0062910527922213,0.0018702195957303,0.050783164799213],[0.0082478644326329,0.042453166097403,-0.0055498429574072],[-0.001843276899308,-4.4648819311988e-05,0.016486879438162]],[[0.029650811105967,0.04585999622941,0.079436868429184],[0.018062917515635,0.063931912183762,0.01945672929287],[0.11576725542545,0.055957682430744,0.11119379848242]],[[-0.040324341505766,-0.040633380413055,-0.0095795318484306],[0.11692501604557,0.0070509440265596,-0.0043371636420488],[-0.04161636158824,0.074088670313358,0.029877439141273]],[[0.061620946973562,0.041055619716644,-0.069314397871494],[0.019274074584246,0.037907637655735,0.057391796261072],[0.031030682846904,0.12108450382948,0.026816105470061]],[[0.058984022587538,-0.02786997705698,0.037530019879341],[-0.025204371660948,-0.087018616497517,-0.0057180421426892],[0.13158009946346,0.032914016395807,0.027866952121258]],[[-0.082916527986526,-0.05445895716548,0.057201460003853],[-0.080243580043316,0.076451525092125,0.00042206179932691],[0.027450889348984,-0.066551491618156,0.0064591062255204]],[[0.088116265833378,0.066221505403519,0.064474269747734],[0.042778972536325,0.08295876532793,0.033076707273722],[0.04908998683095,0.056403107941151,0.028883017599583]],[[-0.025757979601622,0.0039377482607961,0.072236314415932],[-0.021879972890019,0.019525280222297,0.031113220378757],[-0.023321274667978,0.15288428962231,0.023527510464191]],[[0.022371135652065,0.047220911830664,0.0074196686036885],[0.0042221718467772,-0.0091419853270054,0.06747292727232],[0.10537189990282,0.0077445106580853,0.059393126517534]],[[0.069387145340443,-0.011014054529369,0.045530568808317],[0.047337003052235,0.031706489622593,0.053314626216888],[-0.012927952222526,0.0080709811300039,-0.0011213525431231]],[[0.070140510797501,0.058715347200632,0.068136520683765],[-0.0054373084567487,-0.0087740700691938,0.064226269721985],[0.063908889889717,-0.02979788556695,-0.047954469919205]],[[-0.027585085481405,-0.00078359275357798,-0.0081145092844963],[-0.037749402225018,0.040344227105379,-0.019462531432509],[0.002099437173456,0.051127772778273,0.10099945962429]],[[0.061001386493444,-0.0071969591081142,0.030944554135203],[0.11829341948032,0.019894625991583,0.083539597690105],[0.073907867074013,0.023995647206903,0.039976179599762]],[[0.059416331350803,0.091939553618431,0.022371027618647],[0.084374323487282,0.070550188422203,0.046486966311932],[-0.018090222030878,0.052970267832279,0.066196829080582]],[[0.018695306032896,0.040003564208746,-0.0095982169732451],[-0.0003276880888734,-0.014347873628139,0.013973031193018],[-0.010393815115094,-0.026605321094394,0.039320785552263]],[[-0.062193963676691,-0.019355004653335,0.028559332713485],[0.03453229367733,-0.022164037451148,0.049943290650845],[0.057897720485926,-0.0071882451884449,0.017475754022598]],[[0.017717204988003,0.075781993567944,-0.014172689989209],[0.025182701647282,0.018861040472984,-0.012079837732017],[0.014492238871753,-0.031382691115141,0.022102421149611]],[[-0.067134514451027,0.011698035523295,-0.017044296488166],[0.023746676743031,-0.10378544032574,-0.084132336080074],[0.036833997815847,-0.07152883708477,-0.03790245950222]],[[-0.0058745020069182,-0.08688722550869,-0.022596621885896],[0.016106421127915,0.048532575368881,-0.020628616213799],[0.040609661489725,0.0048489063046873,-0.018074022606015]],[[0.066663019359112,-0.057697273790836,-0.0068134432658553],[0.043063130229712,0.0070049776695669,0.065897315740585],[0.10910932719707,0.054572615772486,0.12445475161076]],[[-0.090185783803463,0.049606151878834,0.046132180839777],[-0.013571591116488,-0.080424807965755,-0.041356764733791],[-0.059879194945097,-0.026578437536955,-0.003418599255383]],[[-0.012350711971521,0.018507340922952,-0.030818922445178],[0.018672423437238,0.045337550342083,-0.046063873916864],[-0.076128609478474,0.070553302764893,0.065783798694611]],[[-0.020947176963091,0.040290854871273,0.13388246297836],[0.025421444326639,0.063488945364952,0.081362582743168],[-0.0084806345403194,0.011414253152907,0.059625569730997]],[[0.0081996275112033,-0.087656535208225,-0.027325827628374],[-0.055339127779007,-0.0050737923011184,-0.029921978712082],[0.044558573514223,0.051126576960087,0.04068735614419]],[[-0.0048870048485696,-0.011062032543123,0.012427104637027],[-0.079144857823849,-0.088524803519249,-0.01034446246922],[-0.083744421601295,-0.057249914854765,0.013285903260112]],[[0.057661440223455,0.02023946121335,-0.054184958338737],[0.064964026212692,0.014511069282889,0.025023015215993],[0.060185115784407,0.033111423254013,0.063684739172459]],[[0.0012610881822184,0.0146827949211,0.049582708626986],[-0.0059277005493641,0.039154540747404,-0.00011419542715885],[0.099231012165546,0.048306450247765,0.044201519340277]],[[0.02894065529108,0.034132171422243,0.050594184547663],[-0.024069817736745,0.05789140984416,0.10172481834888],[0.062262132763863,0.070869587361813,0.091433711349964]],[[0.060592908412218,0.022974638268352,0.017074542120099],[0.043329410254955,0.059990644454956,-0.014566548168659],[0.013103320263326,0.037363894283772,0.044889125972986]],[[0.037560943514109,-0.025150027126074,0.012699750252068],[0.031641650944948,0.046807039529085,-0.018843723461032],[0.024405166506767,0.042521316558123,0.036496303975582]],[[0.01406626496464,0.13886781036854,0.11963954567909],[0.053047057241201,0.034419439733028,0.016279282048345],[0.041998811066151,0.095450267195702,0.013645020313561]],[[-0.10928805917501,0.023253347724676,-0.018387468531728],[0.012201027944684,-0.035445973277092,-0.022484721615911],[0.065419420599937,-0.081481337547302,-0.032257523387671]],[[0.09207608550787,-0.10282307863235,-0.085352599620819],[0.04185226559639,-0.023315167054534,-0.040861945599318],[-0.0023109584581107,0.014734071679413,0.0058089229278266]],[[-0.052540939301252,0.022227592766285,0.067123375833035],[-0.025666674599051,0.049954362213612,-0.011985945515335],[0.049869518727064,0.063034273684025,0.015071343630552]],[[0.076770149171352,0.028567286208272,0.020040474832058],[0.013661376200616,-0.049665648490191,0.056033760309219],[-0.050754327327013,0.04934985935688,0.086192972958088]],[[0.053330283612013,-0.020236512646079,0.018801223486662],[0.010218416340649,0.073424458503723,0.090812757611275],[0.04782821983099,-0.063147842884064,0.024392714723945]],[[-0.022501239553094,0.033663012087345,-0.0011146205943078],[0.019656894728541,0.029114939272404,0.018217468634248],[0.1029349192977,0.0049898512661457,0.11521969735622]],[[0.035890471190214,-0.0048119323328137,0.030352341011167],[0.039801102131605,-0.015994222834706,-0.0014546302845702],[0.0019724783487618,-0.00070033967494965,-0.054807081818581]],[[0.0044442494399846,0.049516331404448,-0.03264357149601],[0.052423175424337,-0.028067795559764,-0.0025212415494025],[0.065954327583313,-0.033937957137823,0.014660390093923]],[[-0.11085265874863,-0.12817116081715,-0.14453655481339],[-0.15016101300716,-0.082909613847733,-0.12854643166065],[-0.13414749503136,-0.16156066954136,0.012662809342146]],[[0.0095824524760246,-0.089984826743603,-0.0069017349742353],[0.069674231112003,0.029939748346806,0.013494091108441],[5.5671876907581e-05,0.022664796561003,0.047683257609606]],[[-0.076996080577374,-0.071418434381485,-0.040991626679897],[-0.031495966017246,0.018305217847228,0.067068964242935],[-0.050302904099226,-0.074611306190491,0.030865935608745]],[[-0.043529629707336,0.021472165361047,-0.024698439985514],[0.013358872383833,-0.032255079597235,-0.023952733725309],[-0.0084533970803022,-0.02055842615664,-0.02035703882575]],[[0.0085675977170467,0.0035079151857644,0.0059955106116831],[-0.0071917404420674,-0.0069491327740252,0.013297787867486],[-0.041228029876947,0.099981650710106,-0.088988564908504]],[[-0.011527714319527,0.030797516927123,0.0012737268116325],[0.063891649246216,0.03601586446166,0.047284483909607],[0.054650887846947,-0.015443376265466,0.051625180989504]],[[-0.05382527038455,0.041745290160179,0.054489843547344],[0.035158846527338,0.066377781331539,-0.043015170842409],[-0.034924816340208,-0.044480141252279,0.039510000497103]],[[0.082283690571785,0.052491780370474,0.066520817577839],[0.041325647383928,0.058383151888847,0.029016325250268],[0.0070926961489022,-0.025024717673659,0.087385624647141]],[[0.03220983222127,-0.038469661027193,-0.0042598997242749],[0.045152772217989,0.026604562997818,-0.059753935784101],[0.08301317691803,0.10211402177811,0.059717494994402]],[[0.09833736717701,0.018937315791845,-0.036177285015583],[-0.019022826105356,0.046112228184938,-0.067546024918556],[0.08845230191946,0.082653246819973,-0.014608369208872]],[[-0.038655646145344,-0.11617606878281,-0.014219471253455],[0.01678485609591,0.014776896685362,0.027940381318331],[0.048249054700136,0.015899425372481,0.018435548990965]],[[0.0010408278321847,0.011117762885988,0.053392197936773],[0.0098657254129648,0.031207079067826,0.030596375465393],[0.042345982044935,0.076228134334087,0.080912604928017]],[[-0.015935651957989,-0.065058499574661,-0.034751664847136],[0.051164388656616,0.016458552330732,0.052495248615742],[0.042226660996675,-0.030914779752493,-0.020671620965004]],[[0.016233947128057,-0.019217226654291,-0.0038947889115661],[-0.014405634254217,-0.016573363915086,-0.041439283639193],[0.020345592871308,0.041077207773924,-0.023656342178583]],[[0.01377219054848,-0.040342103689909,0.034314263612032],[0.047445818781853,0.053689382970333,-0.0059701828286052],[0.0066810171119869,0.0053879548795521,0.057333186268806]],[[0.084320247173309,0.032117214053869,-0.0014798479387537],[0.0088135879486799,-0.035301670432091,-0.0025564515963197],[0.047311447560787,0.030490232631564,0.030882891267538]],[[0.075560793280602,0.0093809673562646,0.095479838550091],[0.053906176239252,-0.042489323765039,0.019058980047703],[0.013106954284012,-0.032731894403696,0.020021451637149]],[[0.018707774579525,-0.029977666214108,0.031668614596128],[0.065947070717812,0.065164692699909,-0.030306914821267],[-0.013233759440482,0.069337360560894,0.019043738022447]]],[[[-0.032173853367567,0.0096525214612484,0.0062021263875067],[0.013117324560881,-0.024479851126671,0.041453011333942],[0.0088238846510649,0.068820029497147,0.012452243827283]],[[-0.020491510629654,0.1068382486701,0.021416019648314],[0.071466363966465,0.03389199078083,-0.039060052484274],[-0.016753531992435,0.03099818341434,0.006845114286989]],[[-0.080098941922188,0.073071777820587,-0.012398552149534],[-0.04194051772356,0.045966703444719,0.028203684836626],[-0.047156009823084,0.026988575235009,-0.013287488371134]],[[0.019957968965173,-0.028943886980414,-0.0061836647801101],[0.018598159775138,0.016541346907616,0.006352131254971],[-0.018060345202684,0.052685745060444,-0.044457025825977]],[[0.0029632742516696,0.067418783903122,0.022476218640804],[0.023744059726596,0.034628879278898,0.06038935109973],[-0.012318911030889,-0.00088322308147326,-0.053502433001995]],[[-0.02650285884738,-0.035983555018902,0.014320649206638],[-0.059975981712341,0.10065076500177,0.01472435798496],[-0.069625057280064,0.11860056221485,-0.04505667090416]],[[-0.055428024381399,-0.081373453140259,-0.033815953880548],[-0.044084999710321,-0.0080686770379543,-0.027412811294198],[-0.019591232761741,0.069230727851391,0.0043147751130164]],[[0.0011488491436467,0.068375669419765,-0.0053332899697125],[0.04653674736619,-0.032468594610691,0.036733042448759],[-0.0099630979821086,-0.070322342216969,-0.04029617831111]],[[-0.0061665079556406,-0.033502113074064,-0.039412975311279],[0.047330182045698,0.032146416604519,0.004028988070786],[-0.070131130516529,0.015608628280461,-0.10996571928263]],[[0.06190088018775,-0.028963545337319,-0.019492605701089],[-0.042803835123777,0.045272693037987,-0.028587995097041],[-0.031563561409712,0.016060061752796,0.034357100725174]],[[0.051093496382236,0.012189220637083,0.034762345254421],[-0.0074025462381542,-0.013687679544091,0.0015468021156266],[0.028067218139768,-0.010337798856199,0.017765022814274]],[[0.039916917681694,0.034174751490355,-0.018605450168252],[0.012000638060272,0.017598571255803,0.067990705370903],[0.029459623619914,-0.022762222215533,-0.0054131792858243]],[[0.046079553663731,0.06057446077466,0.049224175512791],[-0.017119767144322,-0.01589578576386,-0.0078180162236094],[-0.049221906810999,0.045989993959665,0.041224110871553]],[[0.0078812465071678,-0.0094286678358912,-0.043123837560415],[-0.023237623274326,-0.02575620636344,0.002930885180831],[-0.011197371408343,0.050528276711702,0.0090920832008123]],[[-0.044492822140455,-0.010378406383097,0.054599333554506],[0.045765474438667,-0.098703280091286,0.0239347089082],[-0.058716040104628,0.03946340456605,-0.022201931104064]],[[-0.013996997848153,-0.035344213247299,0.050137046724558],[0.0068708439357579,-0.025648174807429,-0.017694395035505],[0.0597706399858,-0.010435624048114,-0.00062733050435781]],[[-0.01061372552067,0.055737815797329,-0.078511483967304],[-0.014342943206429,-0.04459635540843,-0.023550547659397],[0.063127256929874,-0.048995282500982,-0.024981016293168]],[[-0.02694901637733,-0.0032518815714866,-0.047481808811426],[0.053074683994055,0.017102714627981,-0.025203896686435],[0.019529853016138,0.030027445405722,0.043440006673336]],[[0.021098867058754,0.018251035362482,-0.069389753043652],[0.016418782994151,-0.016076188534498,-0.018593365326524],[0.03959883004427,-0.028398245573044,-0.05690123513341]],[[0.04846229031682,-0.071977943181992,0.042503025382757],[-0.053784348070621,-0.065007217228413,0.015799688175321],[0.004762944765389,0.015714133158326,0.095330752432346]],[[-0.014902058057487,-0.045556850731373,0.032410550862551],[0.036769408732653,-0.0081303063780069,-0.0226108469069],[-0.030995842069387,0.039880957454443,-0.007761619053781]],[[0.0073479781858623,-0.076748184859753,0.027595253661275],[0.0048061208799481,0.00086851528612897,-0.012594413943589],[-0.0052342619746923,-0.018973495811224,0.029378151521087]],[[0.023020632565022,-0.069084167480469,0.056034471839666],[0.05821480229497,-0.043418906629086,-0.030937060713768],[0.0004402477061376,0.02691668830812,0.0011019572848454]],[[-0.021668411791325,-0.026261162012815,-0.020209154114127],[0.016189619898796,-0.0011616222327575,0.046081487089396],[-0.01674278639257,-0.049654189497232,-0.062219694256783]],[[0.082671627402306,-0.074645020067692,-0.036903068423271],[0.0076869102194905,-0.079700775444508,-0.082172907888889],[0.061823800206184,-0.044092737138271,-0.017355808988214]],[[0.0021135681308806,-0.013768186792731,0.099735014140606],[0.038327891379595,-0.035995092242956,-0.10808057337999],[0.0079664466902614,0.041591580957174,0.068629279732704]],[[0.091760441660881,0.017720641568303,0.010707215406001],[0.0045026079751551,0.070499673485756,0.0013887046370655],[0.083880893886089,-0.055538058280945,-0.040899366140366]],[[-0.032743833959103,-0.012264561839402,0.042659424245358],[0.02918878570199,-0.024662606418133,-0.0030060505960137],[0.05129874125123,-0.035301297903061,0.025881063193083]],[[-0.016052125021815,0.0093110073357821,0.029442766681314],[0.023610269650817,-0.028412979096174,-0.0098442640155554],[0.046434924006462,-0.025301879271865,0.064946435391903]],[[-0.031528901308775,0.069799892604351,-0.013048294000328],[0.024298992007971,-0.083648525178432,0.061931554228067],[0.038796119391918,0.044898826628923,0.034764558076859]],[[-0.025094559416175,0.02030753903091,-0.01222516130656],[-0.060228034853935,0.047462094575167,-0.0098762726411223],[0.037343434989452,-0.039871368557215,0.014537177048624]],[[-0.087983004748821,-0.024927586317062,-0.037338580936193],[0.0011036348296329,0.046787802129984,0.012499082833529],[0.039865497499704,0.0093956859782338,-0.023884322494268]],[[0.00047961078234948,0.058426089584827,-0.054259974509478],[-0.06639464199543,-0.022301217541099,-0.036710891872644],[0.0043850913643837,-0.033700462430716,0.059834960848093]],[[0.037613976746798,-0.00085220503387973,-0.013504189439118],[0.046876423060894,-0.027850078418851,0.011532751843333],[-0.027279675006866,-0.071361385285854,-0.069896936416626]],[[-0.066686399281025,-0.012515441514552,0.00370630226098],[0.013477344997227,0.036881506443024,-0.016720149666071],[-0.016671428456903,0.022215064615011,0.038638234138489]],[[0.063637673854828,-0.020141961053014,-0.019193818792701],[-0.046279549598694,0.061254382133484,0.039179150015116],[0.020621882751584,-0.0004894636804238,0.036038737744093]],[[-0.044556990265846,0.054131764918566,0.0049148774705827],[0.025875337421894,-0.0073617515154183,0.024208161979914],[-0.071691535413265,-0.095665112137794,0.044059112668037]],[[-0.058991722762585,-0.029696462675929,-0.022696672007442],[-0.039780281484127,-0.05928909778595,-0.0500966347754],[-0.031137034296989,-0.031669784337282,-0.018645480275154]],[[0.021073343232274,-0.0008948584436439,0.030383674427867],[0.04983789473772,0.060877043753862,-0.0058144521899521],[0.018804954364896,0.0039877439849079,-0.0052867485210299]],[[-0.041342616081238,0.035613056272268,0.053154893219471],[-0.017514543607831,0.019080556929111,0.031263165175915],[0.0022916721645743,0.042437963187695,0.015332598239183]],[[-0.065870463848114,-0.037306614220142,0.081374533474445],[0.010998982004821,0.0078195054084063,0.093588136136532],[0.076769627630711,-0.019911747425795,-0.052413415163755]],[[-0.069193124771118,0.041198674589396,0.016718287020922],[0.041160523891449,0.011035068891943,-0.043428741395473],[-0.044094927608967,-0.012781390920281,0.055452954024076]],[[0.029904210940003,-0.028862379491329,0.022034056484699],[0.084022708237171,-0.01693663559854,-0.047535222023726],[-0.0075558885000646,0.045605808496475,0.095052786171436]],[[-0.036176349967718,0.0073957508429885,-0.044931545853615],[-0.019003622233868,0.058918606489897,0.039950713515282],[0.092653758823872,0.0067637888714671,0.0015681016957387]],[[-0.041156977415085,-0.03560796380043,0.033771395683289],[0.005922254640609,-0.015787113457918,-0.053386807441711],[-0.029594669118524,-0.018552886322141,-0.006170179694891]],[[-0.020803689956665,-0.0048043201677501,0.047782495617867],[-0.012125006876886,0.0022388636134565,-0.096228897571564],[-0.0041674580425024,-0.015640150755644,-0.03122971393168]],[[0.0041856924071908,-0.051519032567739,-0.015874931588769],[0.044857293367386,0.030419625341892,0.038681779056787],[-0.0035871933214366,-0.047402810305357,-0.0051196929998696]],[[-0.031762979924679,0.017564168199897,-0.075027585029602],[0.029849819839001,-0.048498347401619,-0.068852588534355],[-0.063559517264366,-0.040532048791647,0.026920648291707]],[[-0.021237106993794,-0.009664649143815,0.016146071255207],[0.045426279306412,-0.0064264107495546,0.057586640119553],[-0.061417330056429,0.014681697823107,-0.0094972085207701]],[[-0.070340566337109,0.013044594787061,0.02841735444963],[0.00057560252025723,0.0076900976710021,-0.016867928206921],[-0.084495075047016,-0.00072628975613043,-0.018401965498924]],[[-0.0036758703645319,0.0062551777809858,0.05515269562602],[0.0061171478591859,0.0031035928986967,0.07390370965004],[0.054089523851871,-0.0023259127046913,0.017505515366793]],[[-0.052805662155151,0.017131526023149,-0.059825647622347],[0.018383471295238,0.052516154944897,0.014944087713957],[-0.0015246529364958,0.012180192396045,0.030269358307123]],[[0.011600942350924,0.055264048278332,-0.025723984465003],[-0.024136727675796,-0.035985913127661,0.023030277341604],[0.053857773542404,0.0010498116025701,-0.048058841377497]],[[0.022142965346575,-0.0030869483016431,-0.014281020499766],[-0.0093743586912751,0.020032485947013,0.051132258027792],[0.034259382635355,-0.0085758743807673,-0.038673724979162]],[[0.044574577361345,0.018709430471063,0.027901681140065],[0.039103604853153,0.011932066641748,-0.05216097459197],[-0.07002229988575,-0.054626043885946,-0.030143711715937]],[[0.031795807182789,-0.049295376986265,0.023809822276235],[-0.023032067343593,-0.042305964976549,-0.044749204069376],[-0.0071209683082998,0.024668907746673,0.013520233333111]],[[0.044378608465195,-0.036465052515268,0.0057123014703393],[-0.043319582939148,-0.047082375735044,-0.038531843572855],[-0.025919726118445,0.074682027101517,-0.047114677727222]],[[0.027686778455973,-0.045703239738941,0.0028176745399833],[-0.083018004894257,0.013189324177802,0.086126439273357],[0.021795727312565,-0.060134928673506,-0.055608831346035]],[[0.05696265399456,-0.026373568922281,0.06658898293972],[0.034423217177391,-0.022392956539989,0.0751633644104],[-0.0071651195175946,-0.019961919635534,0.011746219359338]],[[-0.05065954849124,-0.036239221692085,-0.022954322397709],[0.0025097772013396,-0.040862180292606,-0.021315602585673],[-0.028338611125946,-0.0095648774877191,0.12504754960537]],[[-0.03481313586235,-0.020551811903715,0.0091893645003438],[0.0064011765643954,-0.084322817623615,0.052247602492571],[0.0067082112655044,-0.025535026565194,-0.00035673618549481]],[[0.024988682940602,0.047329634428024,0.080339707434177],[-0.001440086052753,-0.013744645752013,-0.037427920848131],[-0.048406012356281,0.012020925991237,-0.0077620977535844]],[[-0.07157089561224,0.023832704871893,0.034370671957731],[0.020262748003006,0.022072656080127,0.015092582441866],[0.011820304207504,0.073857069015503,0.0091056600213051]],[[0.075299724936485,0.022184174507856,0.056571587920189],[-0.017081540077925,-0.011952799744904,0.025569273158908],[-0.0080395871773362,0.026085209101439,0.004677384160459]],[[-0.014907876029611,0.056940123438835,-0.0077495891600847],[0.0023935402277857,-0.0039599193260074,-0.05216358602047],[0.093087300658226,-0.025578826665878,-0.040302075445652]],[[-0.0078205727040768,0.013642801903188,-0.027997607365251],[-0.025736982002854,-0.10647151619196,-0.037632074207067],[-0.0087813334539533,-0.0028034707065672,0.025677513331175]],[[0.014218338765204,0.036187183111906,-0.0076865623705089],[0.017368670552969,-0.054873697459698,-0.0050072534941137],[-0.036877486854792,-0.081927105784416,0.034153815358877]],[[0.030052293092012,0.023594137281179,0.032947733998299],[-0.0091071864590049,0.070335313677788,0.060614321380854],[0.044010002166033,-0.023442976176739,-0.015714874491096]],[[0.036261666566133,0.029978169128299,-0.017439302057028],[0.0067370301112533,-0.033997997641563,-0.032148409634829],[-0.00029331166297197,0.043547865003347,-0.00046347695752047]],[[0.064022824168205,-0.016219273209572,0.0074084717780352],[0.0054916720837355,-0.0030075807590038,-0.0087606441229582],[-0.034934166818857,0.036898445338011,-0.056213449686766]],[[0.044053874909878,-0.040998391807079,-0.022448932752013],[-0.04936733469367,-0.11476075649261,-0.0026308207307011],[0.022388925775886,-0.0095553752034903,-0.039289746433496]],[[0.049046579748392,0.03320575132966,-0.041303399950266],[-0.036294240504503,0.010607798583806,0.024069638922811],[0.033179502934217,-0.03077556937933,0.0039654420688748]],[[-0.0067137274891138,0.014944968745112,-0.030093414708972],[0.014079099521041,0.002513388870284,-0.030551424250007],[-0.074009016156197,-0.030540099367499,0.010570765472949]],[[0.021751772612333,0.0048189233057201,-0.021002857014537],[-0.017372451722622,0.10026089847088,0.092542745172977],[-0.044212494045496,-0.035616748034954,0.051534853875637]],[[-0.065278798341751,-0.059859380125999,-0.022318178787827],[0.037471499294043,0.0011001953389496,-0.023106588050723],[0.034516420215368,-0.026100151240826,-0.048026256263256]],[[-0.027464179322124,0.0096180532127619,0.016323167830706],[0.013075927272439,0.044320736080408,-0.055639341473579],[0.10674332082272,0.051443587988615,-0.0099234459921718]],[[0.040832292288542,0.025897173210979,0.041370533406734],[0.03998513892293,0.0012879910646006,-0.023969378322363],[-0.021730804815888,0.018286887556314,-0.016140194609761]],[[-0.043200839310884,0.010641324333847,-0.021743865683675],[0.024442484602332,0.013291054405272,-0.010944304987788],[0.012109346687794,0.031411457806826,-0.051704492419958]],[[0.026218011975288,0.025954112410545,-0.014223385602236],[-0.070235207676888,0.014873520471156,-0.030603911727667],[-0.0056793671101332,0.029093844816089,0.082472540438175]],[[-0.021440068259835,-0.059409871697426,-0.014133718796074],[0.027815310284495,-0.049104526638985,-0.06479811668396],[0.013794930651784,-0.047006972134113,0.0013433871790767]],[[-0.032275024801493,-0.003182225394994,-0.0076674539595842],[-0.063722796738148,-0.010190703906119,-0.005716925021261],[-0.068558618426323,0.087424099445343,0.04092488437891]],[[0.040555693209171,-0.056333478540182,-0.019887993112206],[0.016862876713276,-0.031913504004478,0.030168103054166],[-0.0044745593331754,-0.034956678748131,0.033663522452116]],[[-0.066896818578243,0.047790247946978,0.020895233377814],[0.013738169334829,-0.032666876912117,-0.03389685600996],[-0.062478799372911,-0.014020265080035,0.0094738034531474]],[[0.12552192807198,0.014186729677022,-0.058989990502596],[-0.0037123053334653,-0.046292822808027,0.015887318179011],[0.025948835536838,-0.023804973810911,-0.035870056599379]],[[0.025388721376657,-0.066636428236961,0.040334187448025],[0.060589540749788,0.023796832188964,0.06832680106163],[-0.11289006471634,-0.060695983469486,-0.01284338068217]],[[-0.040311921387911,0.031867384910583,-0.0036506217438728],[-0.035911362618208,0.052731700241566,0.013751934282482],[-0.045512776821852,0.017974529415369,0.062962889671326]],[[-0.020755648612976,0.041352018713951,0.085532777011395],[0.0028158982750028,-0.048789121210575,-0.033805567771196],[0.068235784769058,0.029562501236796,0.050584685057402]],[[0.0031245870050043,-0.024203585460782,0.034133926033974],[-0.026964705437422,0.046823527663946,0.026731876656413],[-0.015196537598968,0.019194269552827,-0.011091003194451]],[[0.064164884388447,-0.01034705620259,-0.00079437787644565],[0.074329763650894,-0.049775414168835,0.014722771011293],[-0.0059587890282273,-0.034542661160231,0.011951450258493]],[[0.004766533151269,0.0084852883592248,-0.023784564808011],[0.054387107491493,-0.0078686214983463,0.0046588559634984],[0.019292106851935,-0.039029683917761,0.089022673666477]],[[-0.059260617941618,-0.085583694279194,-0.02156294323504],[-0.059610184282064,0.043728854507208,0.02084294334054],[0.045832738280296,-0.052444238215685,0.045973777770996]],[[0.026169236749411,-0.00085666019003838,0.027641121298075],[0.022885585203767,-0.05199084430933,-0.016725031659007],[-0.031574156135321,-0.025401035323739,-0.017418835312128]],[[0.040059670805931,-0.0079606426879764,0.012824744917452],[0.084876045584679,-0.016903251409531,-0.048572827130556],[0.028984216973186,0.0027576626744121,-0.0028906376101077]],[[-0.017391476780176,-0.0047360304743052,0.026720428839326],[-0.050961062312126,0.017171531915665,0.098730623722076],[0.020800134167075,-0.016124667599797,-0.014320334419608]],[[-0.057265676558018,-0.018938664346933,-0.097534172236919],[0.031195312738419,0.022040816023946,-0.033453825861216],[-0.028577838093042,0.058128528296947,-0.037943448871374]],[[0.01884008385241,0.053687673062086,0.074081011116505],[-0.065673738718033,-0.00088740349747241,0.095866337418556],[0.045454662293196,-0.032280046492815,-0.0045496872626245]],[[-0.058813668787479,0.0088665755465627,0.0037754860240966],[0.061850875616074,-0.09671738743782,0.010789901018143],[0.011083981022239,0.063499376177788,0.0042708911933005]],[[0.080446362495422,0.0013782843016088,0.087170735001564],[0.0020169108174741,-0.02035091817379,0.080284252762794],[-0.010105224326253,-0.01273824647069,-0.066199488937855]],[[0.012197292409837,-0.066234700381756,0.021886609494686],[0.031560346484184,0.015571148134768,-0.0049557937309146],[-0.024433385580778,0.02973528765142,-0.0011049604509026]],[[-0.01211464125663,-0.040951140224934,-0.070745699107647],[-0.024724312126637,-0.0016045479569584,-0.017867529764771],[0.022764937952161,-0.094007462263107,-0.047444183379412]],[[0.097969010472298,-0.038446087390184,0.01039756834507],[-0.050567157566547,0.04366797581315,0.011796136386693],[0.013407899066806,0.012757365591824,0.027651103213429]],[[-0.01523304078728,0.072418347001076,-0.011692205443978],[-0.031884171068668,-0.035916496068239,-0.13689041137695],[-0.08793792873621,0.058284908533096,-0.01451713591814]],[[0.022105867043138,0.0056357504799962,-0.091271810233593],[-0.0044482601806521,0.025182828307152,0.018333423882723],[-0.010179666802287,-0.05735981091857,0.0048510855995119]],[[-0.025586929172277,0.052818700671196,0.0087696574628353],[0.011254258453846,-0.07207141071558,-0.056800555437803],[-0.033249959349632,0.071555055677891,-0.098079554736614]],[[0.028671413660049,-0.024897763505578,0.049613893032074],[-0.038292184472084,-0.055955972522497,-0.049986250698566],[-0.041177723556757,-0.057571060955524,0.020438672974706]],[[-0.02848557382822,0.00014292643754743,-0.0090170605108142],[0.047141786664724,0.066717244684696,0.049509737640619],[0.069218054413795,-0.059481400996447,0.030626500025392]],[[0.001539068412967,0.022681631147861,0.011232597753406],[-0.011988813057542,-0.0014073081547394,-0.037910662591457],[-0.0444046407938,-0.042686093598604,0.012659673579037]],[[-0.03504254296422,-0.001233822084032,-0.016504181548953],[0.045236375182867,-0.018347252160311,-0.0082756774500012],[0.057666834443808,0.0073455860838294,-0.028609033674002]],[[0.058907572180033,-0.057562343776226,0.011292607523501],[0.022138612344861,-0.02197952568531,0.041376087814569],[0.002717497292906,0.071951866149902,-0.0067534414120018]],[[0.015580262988806,0.04066451638937,-0.043092403560877],[0.017974881455302,-0.035234313458204,0.0018649683333933],[-0.054411023855209,-0.050134591758251,-0.017394714057446]],[[0.020084846764803,-0.016882346943021,0.046617392450571],[-0.013753410428762,0.0070697804912925,-0.023035004734993],[0.037922270596027,0.027793794870377,0.00073588010855019]],[[0.020685043185949,-0.065007507801056,0.048302780836821],[0.00039009176543914,0.021237164735794,0.076474376022816],[0.011482574045658,0.026977432891726,-0.061504952609539]],[[0.027091333642602,0.024691758677363,-0.0010907811811194],[-0.0054693426936865,-0.011518011800945,0.026456208899617],[-0.068460442125797,-0.011742303147912,-0.021203922107816]],[[-0.01111173722893,0.019226556643844,0.0031042916234583],[-0.020367618650198,0.035018589347601,0.006825890392065],[-0.062869481742382,-0.079380184412003,-0.034063514322042]],[[0.027781495824456,-0.061713576316833,0.00073362607508898],[-0.020198171958327,0.011191855184734,0.031395398080349],[-0.038653925061226,-0.036074884235859,0.011113611981273]],[[0.062085390090942,-0.054915513843298,0.0057419422082603],[0.031086070463061,0.037568747997284,0.004183629527688],[-0.047505516558886,0.016305321827531,-0.023778300732374]],[[0.0032557172235101,-0.034309647977352,0.010758933611214],[-0.0040409667417407,0.036646708846092,0.014318121597171],[0.040251810103655,-0.030219849199057,0.01398272626102]],[[0.020518785342574,0.028023542836308,-0.0091195795685053],[0.020980820059776,-0.0033459679689258,-0.04403230920434],[-0.034595016390085,-0.020591823384166,-0.044119521975517]],[[0.10385943949223,-0.037326741963625,0.046279653906822],[-0.048927381634712,-0.060787279158831,-0.012623382732272],[0.093309320509434,-0.0038292231038213,-0.013448373414576]],[[-0.035320043563843,0.030550984665751,0.026029527187347],[-0.026970036327839,0.013688571751118,0.041506685316563],[-0.01471193972975,0.043750446289778,0.030570097267628]],[[-0.025790888816118,-0.025092896074057,-0.017344832420349],[-0.044973816722631,0.032553263008595,-0.0069468659348786],[0.021794578060508,0.041839867830276,0.0091834058985114]],[[0.077741459012032,-0.036645643413067,0.0080223549157381],[0.069828614592552,-0.017553169280291,0.040682125836611],[0.015955971553922,0.0098651573061943,0.022089367732406]],[[-0.05443599075079,-0.011941658332944,0.11038346588612],[0.12329907715321,0.013626312837005,0.0015111594693735],[0.011930544860661,0.024359382688999,0.0036272350698709]],[[-0.039213590323925,0.039430774748325,-0.0017458265647292],[0.082482896745205,0.016067586839199,0.010735494084656],[-0.051719065755606,-0.031150972470641,0.06511464715004]],[[-0.058479756116867,-0.023826655000448,0.067820347845554],[0.032330311834812,-0.0081823719665408,-0.024541072547436],[0.0069829118438065,-0.039120938628912,0.047553390264511]],[[0.016371412202716,-0.005377234891057,-0.050691727548838],[0.0040016691200435,-0.013103719800711,-0.0077796233817935],[-0.014062649570405,0.0095327394083142,-0.017464803531766]],[[-0.036607310175896,-0.0027913949452341,-0.047872971743345],[-0.004304348025471,-0.043642789125443,0.074786283075809],[-0.00073562283068895,-0.06621377915144,0.033582281321287]],[[0.019374808296561,-0.019130498170853,-0.0031217101495713],[0.09568252414465,-0.036664247512817,-0.016408376395702],[0.038097381591797,-0.045712143182755,-0.023654082790017]]],[[[0.048406578600407,0.012258931063116,-0.083836406469345],[0.021893378347158,-0.01772722043097,0.019749227911234],[0.018718358129263,0.0082336841151118,-0.0028876245487481]],[[0.028826115652919,-0.024904672056437,-0.082006767392159],[0.050100322812796,0.02438903413713,-0.029443185776472],[-0.020744901150465,-0.052097260951996,-0.059993550181389]],[[0.01323171518743,0.028309373185039,-0.032744660973549],[0.031131958588958,-0.0064466404728591,-0.064503960311413],[-0.014090496115386,-0.073363624513149,0.017033094540238]],[[-0.08320552110672,0.051929660141468,0.052296441048384],[0.011994354426861,-0.049963809549809,-0.0032328837551177],[0.07708466053009,0.039526410400867,0.083893068134785]],[[0.023446066305041,-0.021427532657981,-0.082564696669579],[0.026198109611869,-0.032830107957125,-0.025304870679975],[-0.01621450483799,0.050317484885454,-0.0056256307289004]],[[0.037753820419312,-0.011135041713715,0.061126794666052],[0.029670936986804,-0.025606356561184,-0.057957358658314],[0.039438970386982,-0.044614166021347,0.021864335983992]],[[-0.009712272323668,0.098305776715279,0.029921744018793],[0.016978261992335,0.056070249527693,0.029192700982094],[0.002759957453236,-0.0062342272140086,0.037382557988167]],[[-0.037909790873528,0.039481673389673,0.024961866438389],[-0.013002529740334,-0.0041315406560898,0.013334704563022],[0.0048619732260704,-0.055629827082157,-0.01603857986629]],[[0.0087550207972527,0.015928506851196,0.051984682679176],[-0.092565581202507,0.01952088996768,0.01128514111042],[-0.013309789821506,0.098839312791824,0.053700815886259]],[[0.049962617456913,-0.010539516806602,0.12993070483208],[0.13791662454605,-0.07784016430378,0.019966248422861],[0.012457367032766,-0.031252957880497,0.10038467496634]],[[0.033040061593056,0.012328973039985,0.020174646750093],[0.049499232321978,-0.018506990745664,0.0047093154862523],[-0.0048951269127429,0.016721023246646,0.014814213849604]],[[-0.037661246955395,0.065002255141735,0.013288350775838],[0.018930112943053,-0.01529614534229,0.013349671848118],[0.088027656078339,0.03776927664876,-0.072871379554272]],[[0.024373155087233,0.018524358049035,0.0073869400657713],[-0.0053389244712889,0.00011041435209336,-0.0052556223236024],[0.03486518189311,0.024983802810311,-0.07708678394556]],[[-0.056998569518328,-0.047582309693098,0.039979357272387],[0.046145174652338,0.018357886001468,0.029687477275729],[-0.045616064220667,-0.023467794060707,-0.024420095607638]],[[-0.00088481209240854,0.09281313419342,-0.0013448303798214],[0.031131520867348,-0.052705436944962,0.088726192712784],[-0.02950663305819,0.016972921788692,-0.055639002472162]],[[0.004240436013788,-0.031917721033096,-0.038350470364094],[-0.010415188036859,0.00098188349511474,-0.010863473638892],[-0.00526885362342,0.029648775234818,0.0075719254091382]],[[0.024985756725073,0.068168841302395,-0.012320154346526],[-0.017917117103934,-0.063998967409134,-0.01399031560868],[-0.017915681004524,-0.00416847364977,-0.014430150389671]],[[0.03754585981369,0.06143032759428,0.028358846902847],[-0.017909100279212,-0.033975366503,0.0086367446929216],[0.029996603727341,-0.0212920345366,0.0045172977261245]],[[0.02090728096664,-0.02537895925343,0.051466900855303],[0.015480227768421,0.0025807425845414,-0.07451319694519],[-0.029434578493237,-0.039201181381941,0.050342455506325]],[[-0.026892589405179,0.052831690758467,0.041662734001875],[0.035045322030783,0.028413826599717,-0.012496509589255],[-0.010380116291344,0.0037561359349638,0.016041301190853]],[[0.018403246998787,-0.046672187745571,-0.029097719117999],[0.015952341258526,-0.040222324430943,-0.017675178125501],[-0.034538716077805,-0.010129935108125,-0.036647632718086]],[[0.045370977371931,0.040572054684162,0.0048265000805259],[0.079237446188927,0.045118659734726,0.0087998583912849],[0.031742844730616,0.055358726531267,0.023185240104795]],[[-0.079325333237648,-0.042617797851562,-0.079288959503174],[-0.055196739733219,-0.0036526108160615,0.027679219841957],[0.014588097110391,-0.038963202387094,0.03780123218894]],[[0.0042896755039692,0.068450294435024,-0.028198670595884],[-0.01086591463536,-0.038044326007366,0.080977819859982],[-0.014245195314288,-0.041513290256262,0.010424614883959]],[[-0.03525011241436,-0.007210401352495,0.0035464982502162],[0.027906861156225,-0.0053848256357014,-0.04254425317049],[-0.03610721975565,-0.02739629149437,0.008793001063168]],[[0.036377619951963,0.079800121486187,0.0028469797689468],[0.017824675887823,-0.034086987376213,-0.037508945912123],[-0.056662652641535,0.022173965349793,-0.017806710675359]],[[-0.015796354040504,0.034261398017406,0.013545886613429],[-0.0019254822982475,0.041552010923624,0.052804503589869],[-0.0098657878115773,-0.0097404401749372,-0.052734851837158]],[[0.033469587564468,0.0010887178359553,0.11253840476274],[0.0045710420235991,-0.040751729160547,-0.033052586019039],[0.043085958808661,-0.00063194549875334,0.018428953364491]],[[0.035769198089838,0.042040605098009,0.042317349463701],[-0.019595479592681,0.013318305835128,-0.076510518789291],[-0.0018045842880383,0.007631320040673,-0.019636247307062]],[[0.041193909943104,0.043470304459333,0.030325019732118],[0.0026206609327346,-0.024760635569692,0.04147045314312],[-0.035688102245331,-0.019944394007325,0.030923321843147]],[[0.0073854490183294,-0.025042565539479,-0.012681064195931],[-0.017382096499205,0.0052533019334078,0.04038679972291],[-0.011143090203404,0.0549081787467,0.0070008672773838]],[[-0.0080630918964744,0.00098976830486208,-0.0012378074461594],[-0.0035034043248743,0.040798038244247,0.037067554891109],[-0.060814443975687,0.061970055103302,0.021158957853913]],[[0.064505204558372,0.09504721313715,0.10432683676481],[-0.054518103599548,-0.0016059491317719,-0.029195055365562],[0.04461719840765,0.0057121161371469,0.039023611694574]],[[-0.10262192040682,0.0082259364426136,0.0026591622736305],[-0.00066821940708905,-0.037116371095181,0.070832282304764],[-0.03331384062767,0.064990751445293,0.069155357778072]],[[-0.010200646705925,-6.1814657783543e-06,0.0041795452125371],[-0.080988176167011,0.0089976172894239,0.05243619158864],[0.0436199195683,0.03741454705596,-0.037840269505978]],[[0.02445294894278,-0.096051268279552,-0.025507302954793],[-0.0038045723922551,0.029272567480803,0.0096183335408568],[0.050168111920357,-0.01520658377558,0.040812555700541]],[[-0.04790898412466,-0.044803187251091,-0.0096336575224996],[-0.036565687507391,0.019556848332286,0.0063109979964793],[-0.033638224005699,-0.00025971874129027,-0.00017057344666682]],[[0.024138957262039,0.094229735434055,-0.055218208581209],[0.010021107271314,-0.0061025395989418,0.024171708151698],[0.020943902432919,-0.039569709450006,-0.05146561563015]],[[-0.024106094613671,0.073081068694592,0.018074031919241],[-0.052068710327148,0.01385057810694,0.03358580544591],[-0.096146807074547,0.025418352335691,-0.040461681783199]],[[0.045781400054693,0.00062821077881381,-0.015330183319747],[0.02615749463439,0.02586561627686,0.021382633596659],[-0.01895354129374,0.012719817459583,0.020065931603312]],[[0.018645690754056,0.030142916366458,0.01389341801405],[0.0037149586714804,0.043108768761158,-0.024120673537254],[0.038811504840851,0.024719536304474,0.0083480020985007]],[[-0.0098503483459353,0.030579388141632,-0.00303053134121],[0.065934926271439,0.042488567531109,0.04648919403553],[-0.029390519484878,-0.014092274010181,-0.0018047445919365]],[[0.026013031601906,-0.026673559099436,0.13924644887447],[-0.0010120645165443,0.02954919449985,0.014012832194567],[0.091209657490253,0.0029382724314928,0.010508145205677]],[[-0.059089787304401,-0.015682402998209,-0.0099790440872312],[0.015999633818865,0.01054057572037,-0.059814091771841],[-0.020048473030329,0.034362461417913,0.012094928883016]],[[0.0016817805590108,0.052139759063721,0.083399541676044],[0.068342171609402,0.026553224772215,0.028123835101724],[0.056612253189087,-0.017128122970462,0.020832823589444]],[[0.082387067377567,-0.044029884040356,-0.011864953674376],[-0.05023630708456,-0.020713457837701,-0.075473859906197],[0.043338254094124,0.077641263604164,-0.019760141149163]],[[0.057542786002159,0.0064877569675446,0.0063888235017657],[0.039760868996382,-0.034690663218498,-0.020369337871671],[-0.001797029748559,0.079535193741322,0.034761469811201]],[[-0.019929802045226,0.070663332939148,0.090827293694019],[0.070194520056248,0.0063851568847895,-0.0071551534347236],[0.038518153131008,0.031348582357168,0.033905949443579]],[[-0.074771225452423,-0.036910116672516,0.029101021587849],[-0.0073623135685921,0.059454075992107,-0.0078194877132773],[0.038344882428646,0.015124538913369,-0.0096199586987495]],[[-0.048530712723732,-0.026761084794998,0.039319586008787],[-0.014416528865695,-0.0082438951358199,0.031767681241035],[0.036028038710356,0.016002856194973,0.031806971877813]],[[0.019266314804554,-0.048029467463493,-0.021803278476],[-0.0062725455500185,0.020551312714815,-0.045676935464144],[-0.040412344038486,-0.069941096007824,-0.010335949249566]],[[0.031583894044161,0.0027444327715784,0.011001374572515],[0.084101274609566,0.023281641304493,0.086016081273556],[0.1023605838418,-0.037712182849646,-0.018692472949624]],[[-0.022253947332501,0.050364933907986,-0.021127691492438],[0.079450532793999,0.0027666874229908,0.050640299916267],[-0.0082420790567994,-0.012611242942512,-0.015576895326376]],[[0.0044260676950216,0.032325193285942,0.016012035310268],[0.017399098724127,0.055208757519722,0.058852642774582],[-0.026645317673683,0.030687259510159,-0.024520030245185]],[[-0.0097803995013237,0.0038819427136332,0.0045154923573136],[0.049714773893356,-0.022372461855412,0.0019515518797562],[-0.0036906546447426,-0.045788794755936,0.025331173092127]],[[0.03913738951087,0.0092562697827816,0.003356859786436],[-0.0073089241050184,0.081547848880291,0.0131397517398],[0.026560351252556,0.014373910613358,-0.02715390175581]],[[0.030855625867844,0.034054432064295,0.037888646125793],[0.022298544645309,-0.011789512820542,-0.061246808618307],[-0.0044546481221914,0.027877733111382,0.065261326730251]],[[-0.0033209430985153,0.045116797089577,0.063465639948845],[0.014269994571805,0.063640639185905,0.01761644333601],[-0.0016011723782867,-0.0028749054763466,0.052159067243338]],[[0.052813082933426,0.016346476972103,-0.012825486250222],[0.022549465298653,0.047823425382376,-0.017287457361817],[-0.0051596546545625,0.060114521533251,0.039885375648737]],[[-0.027306418865919,0.02475855499506,0.086352728307247],[0.023877885192633,0.01268925704062,-0.02214496396482],[-0.017944112420082,0.02352200448513,0.076930552721024]],[[-0.04566402733326,0.025263143703341,0.057762339711189],[-0.033085666596889,-0.012229520827532,-0.008931040763855],[0.014619984664023,-0.0054333172738552,0.063261218369007]],[[0.021403359249234,0.0024431722704321,-0.014003011398017],[0.039929945021868,-0.047918137162924,0.017004914581776],[-0.022979265078902,-0.0095468228682876,-0.019320219755173]],[[0.02581400051713,0.032436147332191,-0.0079215997830033],[-0.092633917927742,0.034535922110081,-0.028343940153718],[-0.015998002141714,0.015582337044179,0.015818949788809]],[[-0.0013113868189976,-0.0061855404637754,0.058221604675055],[0.0015420390991494,0.013914962299168,0.0037363120354712],[0.028552101925015,-0.013339010998607,0.050705533474684]],[[-0.027009706944227,-0.06032032892108,0.0020832892041653],[0.0068683247081935,-0.042921550571918,-0.023976275697351],[-0.044858302921057,-0.011739669367671,0.043951608240604]],[[0.035369429737329,0.038718666881323,0.028689509257674],[0.0088387001305819,0.056636732071638,0.034017764031887],[-0.042336694896221,-0.014984228648245,0.018680268898606]],[[-0.0011572076473385,-0.054341670125723,0.092394664883614],[0.031982470303774,0.060851622372866,0.082379184663296],[0.0048646498471498,-0.017338989302516,0.0091367149725556]],[[-0.0086931781843305,0.048717405647039,0.046781212091446],[0.04809882491827,0.037358108907938,0.037697426974773],[-0.030108677223325,0.045957271009684,0.03689869120717]],[[-0.028709845617414,-0.048983383923769,0.057340133935213],[-0.0004244870506227,-0.050733406096697,0.032297372817993],[0.032091584056616,0.055886965245008,-0.021668070927262]],[[0.059604220092297,-0.016705334186554,-0.021769661456347],[-0.013346145860851,0.011674812994897,0.038990255445242],[0.048605382442474,0.022156320512295,-0.057603534311056]],[[-0.036809019744396,-0.028368249535561,0.016807669773698],[-0.058611307293177,0.0065280422568321,-0.015739919617772],[0.042641807347536,-0.057261016219854,0.042719189077616]],[[0.051026545464993,0.073809549212456,0.002118487842381],[-0.010890926234424,0.022373866289854,0.054175157099962],[0.057247001677752,0.0047772875986993,0.058690160512924]],[[-0.059000506997108,0.062115490436554,-0.018951136618853],[0.028438845649362,0.035270780324936,0.05181797966361],[0.029896192252636,0.047593377530575,-0.06286633014679]],[[0.055113531649113,0.061123184859753,0.04115903750062],[0.022375497967005,0.028423581272364,-0.023631434887648],[0.062211468815804,-0.014333102852106,0.077485226094723]],[[-0.080971382558346,-0.032374400645494,0.019698236137629],[-0.025301028043032,0.00057711021509022,0.023160235956311],[0.046249631792307,0.0068234712816775,2.7228939870838e-05]],[[-0.021354639902711,0.06399192661047,-0.00097995577380061],[-0.10212829709053,-0.047823913395405,-0.026887021958828],[-0.024707915261388,0.0015140171162784,0.010316214524209]],[[0.002180177019909,-0.076580986380577,0.0047104507684708],[-0.030624970793724,-0.00050597655354068,-0.010489398613572],[0.052321821451187,-0.024440636858344,0.018255550414324]],[[0.0018858929397538,-0.0041420250199735,0.051025405526161],[-0.024146823212504,0.032752275466919,-0.0076149497181177],[0.011887991800904,-0.052452597767115,0.029026187956333]],[[0.033663284033537,0.017969070002437,0.042189110070467],[0.024171149358153,-0.044918216764927,-0.051098365336657],[0.040615532547235,0.012653189711273,0.023056650534272]],[[-0.077752158045769,-0.02812697738409,-0.00088288146071136],[-0.042182952165604,0.032471284270287,0.01221432723105],[0.076560504734516,-0.014757697470486,0.018620099872351]],[[0.034929763525724,0.021889755502343,0.0054356544278562],[0.020347621291876,0.029185647144914,0.084166921675205],[-0.024155508726835,-0.057447608560324,-0.0087619312107563]],[[0.015292188152671,0.039596270769835,-6.2142862589099e-05],[0.060041684657335,0.078294180333614,0.043183539062738],[0.014824441634119,0.036503724753857,-0.026705494150519]],[[-0.0024347407743335,0.0033345704432577,0.061374191194773],[-0.03599351644516,0.0036087539047003,0.019127992913127],[0.031853023916483,-0.0068417680449784,0.057311706244946]],[[0.072429224848747,0.021569835022092,0.029020415619016],[0.037259597331285,0.029953077435493,-0.0059794341214001],[-0.022388469427824,-0.026394885033369,0.012234039604664]],[[0.027230404317379,0.055081479251385,0.054990384727716],[0.039614289999008,0.011041088961065,0.037650588899851],[0.02676959708333,0.0015277295606211,0.036319635808468]],[[-0.060481488704681,0.012225122191012,0.043647527694702],[0.019734108820558,0.011426017619669,0.029096852988005],[8.4858205809724e-05,0.012007921934128,-0.031395319849253]],[[0.011356171220541,0.0087968092411757,0.029864067211747],[0.025825729593635,0.0036121872253716,-0.053926505148411],[-0.017860654741526,-0.066941127181053,0.035003695636988]],[[-0.02562072686851,-0.015474461019039,0.0022692512720823],[-0.054910138249397,0.020562196150422,0.0077535780146718],[-0.029432646930218,0.012392382137477,0.0070097888819873]],[[-0.012124495580792,-0.0097030233591795,0.0049832370132208],[-0.024028390645981,0.0063952831551433,-0.0088905552402139],[0.1028370782733,0.025099022313952,-0.036935076117516]],[[0.010797176510096,-0.072928391396999,-0.0039936541579664],[-0.010328371077776,0.12318193912506,-0.026700586080551],[0.023214906454086,0.056430835276842,-0.040710382163525]],[[0.039031777530909,0.047083627432585,-0.039451655000448],[0.051017094403505,0.06059829890728,-0.0061182845383883],[-0.018939739093184,-0.0011330049019307,-0.032499253749847]],[[-0.0015122726326808,0.075965076684952,-0.016551302745938],[0.0027733859606087,-0.014846788719296,-0.045552868396044],[0.016292665153742,0.033970970660448,0.017041517421603]],[[-0.012083598412573,0.0066316407173872,0.023736041039228],[-0.041904214769602,-0.012874982319772,0.028561411425471],[0.03321536257863,0.012666348367929,0.052866410464048]],[[-0.0082155093550682,0.068314224481583,0.003500705352053],[-0.008017192594707,-0.041341934353113,-0.016782265156507],[-0.017033660784364,0.066707506775856,0.023509748280048]],[[0.052779000252485,0.0044994340278208,-0.036038633435965],[0.013775506056845,-0.030942916870117,0.038807097822428],[0.01012519467622,-0.051202051341534,0.043087892234325]],[[-0.041752435266972,0.00075624464079738,0.037228811532259],[0.02495869807899,0.0087925670668483,-0.066077992320061],[0.020054582506418,-0.0076554194092751,0.033649008721113]],[[0.03078948892653,-0.021529279649258,0.015388586558402],[0.027164749801159,-0.0056135156191885,-0.014271923340857],[0.0049049519002438,-0.083930589258671,-0.028734248131514]],[[-0.05025278031826,0.021866757422686,-0.037479098886251],[0.052699159830809,-0.024138016626239,0.040722649544477],[0.043616574257612,0.059537943452597,-0.046677134931087]],[[-0.005866666790098,0.072826847434044,-0.028152097016573],[0.035822790116072,-0.041991386562586,-0.026414660736918],[0.032235886901617,-0.0061262180097401,0.0078568607568741]],[[-0.05141768231988,0.0037138373591006,0.070740282535553],[0.054028790444136,0.030689790844917,0.10225561261177],[-0.042235184460878,0.03807520121336,0.057239405810833]],[[0.052185419946909,-0.0054782070219517,-0.013609794899821],[0.00069318746682256,-0.018731493502855,0.040345963090658],[0.020899690687656,0.079147338867188,-0.088602975010872]],[[0.043538175523281,0.04486058652401,0.03156254440546],[-0.026031566783786,-0.028383063152432,0.038108173757792],[-0.024286568164825,0.024563679471612,-0.023382224142551]],[[0.069534040987492,-0.026168441399932,-0.0064869434572756],[-0.018250988796353,0.066400915384293,-0.00260602356866],[0.053388144820929,0.057655919343233,0.027574613690376]],[[0.059420216828585,0.068787358701229,0.030238453298807],[0.0059620519168675,0.0046683945693076,0.041912399232388],[0.066056028008461,0.00023275567218661,0.012165391817689]],[[0.029685541987419,-0.042209170758724,-0.020310260355473],[0.043418202549219,-0.017223242670298,-0.011082839220762],[0.0017739877803251,0.018305459991097,-0.010738307610154]],[[-0.013549402356148,-0.029645400121808,0.014232806861401],[-0.06368475407362,0.017517218366265,0.013537789694965],[-0.010457069613039,0.061615932732821,0.031268015503883]],[[0.028796337544918,0.032294429838657,0.011590572074056],[0.033128891140223,-0.009496939368546,0.049457192420959],[0.021110301837325,0.045266795903444,0.016654070466757]],[[-0.060009233653545,0.029588885605335,-0.028818426653743],[-0.019249454140663,-0.065506868064404,0.075647413730621],[-0.0023398473858833,-0.025521146133542,-0.018262850120664]],[[-0.020416304469109,0.022427015006542,0.038874916732311],[-0.0087511539459229,-0.026825550943613,0.017793217673898],[0.056242991238832,-0.036812122911215,0.039604924619198]],[[0.046079400926828,0.0075192581862211,-0.042010143399239],[-0.010645743459463,0.066463999450207,0.046968266367912],[0.050530683249235,0.047396171838045,0.0043154787272215]],[[-0.066143125295639,0.051057938486338,-0.029651757329702],[0.018587112426758,-0.031541381031275,-0.0044141355901957],[0.0027514295652509,-0.022960904985666,-0.022815357893705]],[[0.042591724544764,0.0054448083974421,0.065123297274113],[-0.13398259878159,0.059755422174931,-0.047610178589821],[0.040822930634022,-0.00081313424743712,-0.031802400946617]],[[0.013953901827335,0.036886118352413,-0.023923913016915],[-0.019737662747502,0.025307543575764,-0.018051600083709],[0.00063457258511335,-0.01794414781034,0.019942855462432]],[[0.0094748316332698,0.042862687259912,-0.050646226853132],[-0.08544410020113,-0.0062022251076996,-0.020563397556543],[-0.040225893259048,-0.039143085479736,-0.049164354801178]],[[0.0029646528419107,-0.045611176639795,0.00114743236918],[-0.060132429003716,0.037349123507738,0.023848479613662],[-0.07541312277317,-0.020721361041069,-0.060172952711582]],[[-0.045909535139799,0.00075636879773811,-0.00054447335423902],[-0.018782839179039,-0.0117326406762,0.014935873448849],[-0.023357098922133,-0.0069913840852678,0.023399384692311]],[[0.039457965642214,0.053413685411215,-0.030306089669466],[0.037220429629087,0.0096117695793509,0.011628282256424],[0.018461551517248,0.0059297848492861,0.0231376234442]],[[0.004918749909848,-0.0075565367005765,0.048455141484737],[-0.055461220443249,-0.032470963895321,-0.021580923348665],[-0.025144286453724,-0.031661845743656,-0.030902771279216]],[[0.03293713927269,-0.025175640359521,-0.043992515653372],[0.00108106888365,-0.036428581923246,0.032054834067822],[-0.0028333158697933,0.037080090492964,0.034402392804623]],[[0.033466853201389,0.0096482764929533,0.009679407812655],[-0.035821847617626,0.0063057313673198,-0.01103799790144],[-0.031138112768531,-0.01918519102037,-0.0080963717773557]],[[-0.018686633557081,0.020116193220019,0.026733219623566],[-0.069091342389584,0.03243363648653,-0.028895789757371],[-0.028153501451015,0.070775002241135,0.02920301258564]],[[0.060878328979015,0.036892864853144,-0.023471064865589],[0.035482466220856,0.056357972323895,0.0084251817315817],[-0.017051896080375,0.012761574238539,0.018531268462539]],[[-0.012830232270062,0.018361650407314,-0.037519574165344],[0.012352805584669,-0.029315300285816,-0.04609090834856],[0.024765187874436,0.021658755838871,0.062148552387953]],[[-0.062374442815781,0.032148014754057,-0.032825868576765],[-0.0072033819742501,0.026706324890256,0.048815689980984],[0.032213743776083,-0.0059843985363841,-0.037088945508003]],[[-0.0097991833463311,0.0071677481755614,-0.01372978836298],[-4.4920157961315e-05,-0.011688152328134,-0.022981116548181],[-0.0066540315747261,-0.012196508236229,0.018624279648066]],[[-0.0087478132918477,0.0036846317816526,-0.015877898782492],[-0.07447512447834,0.074027478694916,-0.001256954157725],[-0.024165838956833,0.032846055924892,0.047064874321222]],[[0.034625358879566,-0.038483921438456,-0.015558169223368],[0.051702041178942,-0.0767782330513,0.091536402702332],[-0.049863986670971,0.068153217434883,0.0091617964208126]],[[0.025227142497897,0.024642176926136,0.034000772982836],[-0.092573344707489,-0.057613287121058,-0.012337887659669],[-0.019475365057588,0.0046767112798989,0.020647648721933]]]],"nOutputPlane":128,"kW":3,"kH":3,"bias":[-0.049989685416222,-0.0058896807022393,-0.042150821536779,-0.039715304970741,-0.0020870307926089,-0.0036189758684486,0.025562155991793,-0.052996814250946,0.0064072641544044,-0.0027279262430966,-0.0030347232241184,-0.027783429250121,-0.0085291611030698,0.0021395140793175,-0.0016857462469488,-0.0032400949858129,-0.0041151545010507,-0.0011830045841634,-0.0033436948433518,-0.0050854305736721,-0.042708605527878,-0.0030534211546183,-0.0014509714674205,-0.065517820417881,-0.008215619251132,-0.0076350886374712,-0.0052358377724886,-0.041940059512854,-0.046536829322577,-0.0016470425762236,-0.00045334460446611,-3.3343567338306e-05,-0.029787907376885,0.026142287999392,-0.0055381534621119,0.0074883666820824,-0.0019995702896267,-0.0050426507368684,-0.038202822208405,-0.0036299251951277,-0.00078965467400849,-0.00980269536376,-0.0040819882415235,-0.011627499014139,-0.048233106732368,-0.00073815975338221,-0.0012025177711621,-0.0070505188778043,0.0042511019855738,-0.045920882374048,-0.00039948566700332,0.013359760865569,-0.005041423253715,-0.0063480823300779,-0.052437502890825,-0.0015336395008489,-0.038326151669025,-0.0050767054781318,-0.0024829544126987,-0.046634633094072,-0.06862935423851,-0.0055293007753789,-0.02425205335021,-0.0021536680869758,-0.0074709868058562,-0.00071286375168711,-0.00445222761482,-0.0069003128446639,-0.0009152854909189,-0.0010745796607807,-0.0022684545256197,-0.0035706835333258,-0.0034023255575448,-0.043466091156006,-0.0044705993495882,-0.000676222902257,-0.052538197487593,-0.015969134867191,0.0091923046857119,-0.0023885427508503,-0.0039233462885022,-0.003443090710789,-0.0019412835827097,7.3450020863675e-05,0.020846955478191,-0.025198373943567,-0.046545777469873,-0.0037726848386228,-0.038794592022896,0.025217620655894,0.032642088830471,-0.00049301807302982,-0.0028033175040036,-0.0062647638842463,-0.0035428856499493,-0.046772502362728,-0.0023923334665596,-0.055065892636776,-0.0021244417876005,0.0017151345964521,0.012630324810743,-0.00077509018592536,-0.0043461779132485,-0.042493391782045,-0.031634092330933,-0.0057653421536088,0.0013488940894604,-0.0027415549848229,0.00097907253075391,0.00087615649681538,-7.5452619057614e-05,-0.0078951735049486,-8.9979876065627e-05,0.0050794575363398,0.00034267775481567,-0.0024306199047714,-0.0019848130177706,-0.0044264011085033,0.008171203546226,-0.0019183339318261,-0.00089046347420663,-0.036964327096939,0.01049941778183,0.026613928377628,-0.0013986575650051,-0.021621707826853,-0.031439960002899,-0.0076329102739692],"nInputPlane":128},{"weight":[[[[0.89437025785446,0.22545629739761,-0.78765517473221],[0.62326788902283,-0.033623170107603,-0.71294194459915],[-1.3218352794647,-0.0492904484272,0.075220935046673]],[[-0.23897325992584,-0.21490493416786,-0.061006017029285],[-0.032292254269123,-0.030869897454977,0.6782021522522],[-0.58127504587173,0.010687653906643,0.47184744477272]],[[-0.19665184617043,0.34278079867363,-0.51914674043655],[-0.92101377248764,-0.15593038499355,0.19476063549519],[0.33350256085396,0.37057581543922,-0.026431236416101]],[[0.48797625303268,-0.80078423023224,0.48339158296585],[-0.77878850698471,0.13661497831345,-0.0013205795548856],[0.19563591480255,0.096687242388725,-0.29605171084404]],[[-0.36852505803108,0.077818162739277,-0.057331744581461],[-0.13961121439934,0.55196040868759,-0.027229296043515],[0.072493739426136,-0.06059056147933,-0.082615561783314]],[[-0.69913399219513,-0.84959298372269,-0.64465683698654],[0.22350688278675,0.69686114788055,0.38159367442131],[0.41046297550201,0.39277201890945,0.088677912950516]],[[0.092699378728867,0.44415017962456,-0.32217821478844],[-0.094279021024704,0.090490281581879,0.093820922076702],[1.0027458667755,-0.11678821593523,-0.0048366193659604]],[[-0.14869606494904,0.14488466084003,-0.047157768160105],[0.42226454615593,-0.10288576036692,-0.39344874024391],[-0.02603311277926,-0.52331376075745,0.079876221716404]],[[0.37108463048935,0.94514411687851,-0.66222304105759],[0.11549499630928,-0.017607141286135,-0.32869043946266],[0.41192373633385,-0.36587500572205,-0.46933457255363]],[[0.11959095299244,-0.72474986314774,0.1530859619379],[-0.13205167651176,0.71202170848846,0.41259306669235],[0.68663859367371,-0.93210476636887,-0.29604530334473]],[[0.07145731151104,0.73058396577835,0.89350020885468],[-0.33477604389191,0.65877902507782,-0.16753180325031],[-0.31426200270653,-0.47060316801071,-1.0653518438339]],[[0.95125085115433,0.01354359369725,-0.062283467501402],[-1.3859899044037,0.83423066139221,0.063082240521908],[-0.19375939667225,-0.15235161781311,-0.31982293725014]],[[-0.76871091127396,-0.022651478648186,0.36679005622864],[-0.10041501373053,-0.16164895892143,0.46930915117264],[-0.041983041912317,0.13688866794109,0.1264750957489]],[[-1.2609757184982,0.27499744296074,0.48618486523628],[0.51067888736725,-0.60115563869476,-0.1794680505991],[0.40880659222603,0.1154008731246,0.24958083033562]],[[-0.61463230848312,0.33988949656487,-0.065261371433735],[-0.41836455464363,0.87421238422394,-0.26803621649742],[0.071556396782398,-0.48357960581779,0.56512439250946]],[[-0.14100153744221,0.27470588684082,0.55326616764069],[-0.32427707314491,-0.3441809117794,0.45321267843246],[0.060165088623762,0.32036104798317,-0.85210591554642]],[[-0.49243545532227,-0.89703005552292,-0.027836987748742],[-0.25792881846428,0.31889688968658,1.0222691297531],[-0.039975699037313,0.20271065831184,0.1708522439003]],[[0.84106320142746,0.44032126665115,0.24242353439331],[-0.47079017758369,-0.12393207103014,-0.45834466814995],[0.010320608504117,-0.54211568832397,0.063614144921303]],[[-0.25323548913002,1.3082090616226,-0.10253332555294],[0.20684093236923,-0.42741119861603,-0.49007666110992],[-0.17807893455029,-0.14655296504498,0.08345402777195]],[[-0.25620567798615,-0.18315617740154,0.13145583868027],[0.26538532972336,0.28125447034836,-0.87817841768265],[0.085276909172535,0.11594149470329,0.43839368224144]],[[0.28276816010475,-0.22059963643551,0.42576006054878],[0.31729450821877,-0.93656998872757,0.49440166354179],[-0.34725707769394,0.31291326880455,-0.33260977268219]],[[-0.0064000352285802,0.24553813040257,-0.27732270956039],[0.36246997117996,-0.61161011457443,-0.041822113096714],[0.2322820276022,0.096440054476261,0.015673479065299]],[[-0.31131160259247,0.19063875079155,-0.50754469633102],[0.063381560146809,-0.52501368522644,0.25652346014977],[0.33336502313614,-0.074364714324474,0.57768177986145]],[[-0.099566496908665,-0.19513913989067,-0.020963059738278],[-0.47504964470863,-0.11490505188704,0.47711265087128],[0.52113330364227,0.60812389850616,-0.674181163311]],[[-0.63356584310532,0.7991681098938,-0.60650187730789],[0.12030136585236,0.30459022521973,-0.2459412664175],[0.14802268147469,-0.19737008213997,0.31148147583008]],[[0.093717195093632,-0.51485192775726,-0.41327014565468],[0.10732893645763,0.20393224060535,0.10882180184126],[0.35884636640549,0.29332649707794,-0.24092228710651]],[[0.54789167642593,-0.37770402431488,0.72640359401703],[-0.87690788507462,-0.40256348252296,-0.61047381162643],[0.54238611459732,-0.21265609562397,0.66196542978287]],[[-0.4367695748806,0.38228988647461,0.11787142604589],[0.35668581724167,-0.29434821009636,-0.27480289340019],[-0.44265455007553,-0.31375053524971,0.40836811065674]],[[-0.91736912727356,0.13487812876701,-0.89831221103668],[0.10602900385857,0.41450121998787,-0.62167006731033],[-0.15085223317146,1.2421891689301,-0.93524765968323]],[[0.23268291354179,-0.62785166501999,-0.18125906586647],[0.70724159479141,0.084025278687477,0.77283257246017],[-0.25869765877724,-0.60242557525635,-0.13400088250637]],[[-0.29651066660881,0.27683240175247,-0.016797803342342],[-0.32304584980011,-0.64135611057281,-0.50314885377884],[0.45745214819908,0.98574513196945,0.062726140022278]],[[-0.15201081335545,-0.14444863796234,0.31041005253792],[0.33924695849419,-0.090832129120827,-0.091566547751427],[0.025507133454084,0.50476986169815,-0.70270979404449]],[[0.0035534962080419,0.39723348617554,0.042513277381659],[0.08787290006876,0.83625447750092,-0.51827639341354],[0.011002850718796,-0.67395007610321,-0.28617852926254]],[[-0.10346281528473,0.24694740772247,-0.267075330019],[0.34402626752853,0.34781336784363,0.046275295317173],[0.33970463275909,0.19528371095657,-0.036591302603483]],[[-1.0852085351944,0.20593556761742,0.49242120981216],[-0.043409455567598,0.15228345990181,0.22699998319149],[0.27182164788246,0.1905742585659,-0.4152318239212]],[[-0.66016983985901,-0.23657266795635,-0.095186367630959],[-0.022176103666425,-0.43063241243362,0.88754707574844],[-0.12889575958252,0.2511225938797,0.4374994635582]],[[-0.33240711688995,0.43305611610413,0.031887032091618],[-0.5430474281311,0.5913582444191,-0.26804903149605],[0.056864328682423,0.49859139323235,-0.46872395277023]],[[-0.32402327656746,-0.78239727020264,0.84569466114044],[0.080441884696484,0.41404536366463,-0.67895483970642],[-0.13868178427219,0.60740083456039,-0.021893806755543]],[[0.21699027717113,0.43534016609192,0.39369258284569],[-0.089745350182056,-0.32896709442139,-0.33890256285667],[-0.1012604162097,-0.45998707413673,-0.058887679129839]],[[0.71417742967606,0.6526808142662,0.27719548344612],[-0.54755699634552,0.026611626148224,-0.41884806752205],[-0.96252954006195,0.20092387497425,0.061139028519392]],[[-0.88962340354919,0.056446462869644,0.15588265657425],[0.16002789139748,0.2679229080677,-0.32422542572021],[0.31349828839302,0.5475600361824,-0.28861159086227]],[[-1.0829318761826,0.10525792092085,1.1583062410355],[-0.41298481822014,0.086566783487797,-0.12668620049953],[-0.133391097188,0.21068015694618,0.19609984755516]],[[-0.38216531276703,0.71082746982574,0.040628138929605],[-1.1381504535675,0.24150232970715,0.64835268259048],[-0.039794355630875,-0.47897711396217,0.40329322218895]],[[-0.36256912350655,-1.4963510036469,-0.40415269136429],[0.8535863161087,0.086270973086357,-0.10564375668764],[0.18968226015568,0.48009613156319,0.76479858160019]],[[-0.76117163896561,-0.13771571218967,0.20188547670841],[0.1021621748805,0.31773808598518,-0.083395935595036],[-0.77172672748566,-0.99193465709686,-0.56021505594254]],[[-0.26840895414352,-0.56891858577728,0.13150352239609],[0.33419844508171,0.032817162573338,0.46841129660606],[-0.11526449769735,0.18384262919426,-0.19856879115105]],[[0.55418688058853,0.29440578818321,0.048078719526529],[-0.46301805973053,-0.96079462766647,0.14961922168732],[0.3044730424881,0.33484292030334,-0.26177003979683]],[[-0.26253470778465,-0.0073891449719667,0.11979328095913],[-0.11374531686306,-0.11925068497658,-0.41442543268204],[0.60851317644119,0.57167166471481,-0.38496020436287]],[[0.22610494494438,0.0097186313942075,0.24882486462593],[1.2736322879791,-0.67797261476517,-0.16889886558056],[-0.20930515229702,-1.0805871486664,0.3779009282589]],[[0.34461280703545,0.39818653464317,0.21415770053864],[-0.67652243375778,-0.21612024307251,-0.43469029664993],[-0.44250786304474,-0.227539524436,-0.16398121416569]],[[-0.82205402851105,0.31292942166328,0.26342868804932],[0.30541732907295,0.67339032888412,-0.5220057964325],[0.29010233283043,-0.080733433365822,-0.42478972673416]],[[0.88399386405945,-0.20296387374401,-0.0035364942159504],[-0.93933993577957,-0.2684810757637,0.28810620307922],[0.023286379873753,0.16186919808388,0.05879619717598]],[[0.068240843713284,-0.089026562869549,0.13881734013557],[-0.10073831677437,0.047730140388012,-0.27917167544365],[-0.061600845307112,0.011475058272481,0.25933930277824]],[[0.11659341305494,-0.025486493483186,-0.20815348625183],[-0.26743659377098,-0.052588347345591,0.15266056358814],[0.10004884749651,0.036885600537062,0.15353854000568]],[[-0.032757356762886,0.19938498735428,-1.0970361232758],[-0.35116320848465,-0.0173723064363,-0.19806608557701],[-0.75360196828842,0.25943046808243,-0.36867409944534]],[[0.10454308241606,-0.87749600410461,0.6104644536972],[-0.038348700851202,-0.033082075417042,0.50281488895416],[0.22015441954136,0.068527229130268,-0.55838644504547]],[[0.23174160718918,0.53115582466125,0.089601315557957],[-0.29099357128143,-0.29045012593269,0.17846445739269],[-0.79030072689056,0.12661720812321,-0.072526521980762]],[[-0.50228971242905,0.33169534802437,0.31343632936478],[0.6344353556633,-0.33760759234428,-0.055759090930223],[-0.37763050198555,0.40486168861389,-0.40285974740982]],[[-0.24462985992432,0.55777567625046,0.41065675020218],[0.299840092659,-0.61867606639862,0.16015130281448],[-0.27379390597343,-0.14082781970501,-0.14510048925877]],[[0.033317029476166,0.59777593612671,-0.012615043669939],[-0.49799576401711,-0.70293384790421,-0.31213703751564],[0.070221468806267,-0.10380078107119,-0.10213027149439]],[[0.17127694189548,-0.13746725022793,-0.078226797282696],[-0.29881817102432,0.42617550492287,0.037972819060087],[0.1259256452322,-0.043902277946472,-0.21697378158569]],[[0.27560311555862,-0.66765666007996,0.47698417305946],[0.3664214015007,0.37796133756638,0.83000671863556],[-0.57414144277573,-0.057405460625887,-1.0279319286346]],[[-0.57611364126205,0.18185980618,0.034235365688801],[-0.12040023505688,0.97224628925323,-0.58819538354874],[-0.45083317160606,0.12227188795805,0.32930251955986]],[[0.11101542413235,-0.48701977729797,0.1839080452919],[-0.41303038597107,1.0424083471298,0.073355585336685],[0.15183717012405,-0.15751305222511,-0.51023745536804]],[[0.92429673671722,-0.49713191390038,-0.37294217944145],[0.083450548350811,-0.13100807368755,0.19799448549747],[-0.71096652746201,0.14919158816338,0.36366668343544]],[[0.72570788860321,0.16815713047981,-1.0991771221161],[0.11564772576094,0.58131712675095,0.12224393337965],[0.037449080497026,-0.34969413280487,-0.30217361450195]],[[-0.2178648263216,0.33635026216507,-0.021214807406068],[-0.32082986831665,-0.03741804510355,-0.019215393811464],[-0.27492466568947,0.25953236222267,0.29727676510811]],[[-0.38280063867569,0.14729355275631,-0.12965482473373],[0.54408138990402,0.35106384754181,-0.25153622031212],[-0.44708925485611,-0.16426634788513,0.33522769808769]],[[0.26482939720154,-0.14001730084419,-0.75069212913513],[0.70266109704971,0.024529673159122,0.040573626756668],[0.38045817613602,-0.22287881374359,-0.30014786124229]],[[0.40096306800842,0.54488277435303,0.29434812068939],[-0.14554505050182,-0.48567306995392,-0.70605272054672],[-0.034180995076895,0.086263574659824,0.045897495001554]],[[0.38126641511917,0.22100172936916,-0.53480821847916],[0.39635390043259,-0.029309982433915,0.15111264586449],[-0.078241117298603,-0.17552147805691,-0.33351546525955]],[[-0.58259892463684,0.21968345344067,-0.034816391766071],[-0.60997956991196,0.46073862910271,0.33876970410347],[-0.13603109121323,-0.0072251297533512,0.35046851634979]],[[-0.41101574897766,0.22784440219402,-0.57130026817322],[0.44173085689545,-0.15746918320656,0.07268413156271],[0.36781632900238,0.040250368416309,-0.059346076101065]],[[-0.30517715215683,0.04417671635747,0.29323649406433],[-0.19874334335327,0.78400510549545,-0.42729589343071],[-0.068788729608059,-0.63095235824585,-0.055263668298721]],[[-0.07070392370224,-0.93834853172302,0.39336311817169],[0.6863511800766,-0.0043482393957675,-0.46753698587418],[-0.41251540184021,0.60312986373901,0.1958981603384]],[[0.32591298222542,-0.59507220983505,-0.0016350847436115],[0.27224069833755,-0.81716465950012,0.17786036431789],[0.32322698831558,0.27993860840797,0.032306771725416]],[[0.30159378051758,-1.0200382471085,0.96645760536194],[-0.35982584953308,-0.47156319022179,0.056150499731302],[-0.41812199354172,-0.87361264228821,0.1283864825964]],[[0.2703375518322,-0.39846476912498,0.22020107507706],[0.1812921911478,0.0023967979941517,-0.28517809510231],[0.047733165323734,-0.061749339103699,0.021418070420623]],[[0.28200045228004,0.039125014096498,-0.32424268126488],[-0.085767775774002,0.42858555912971,0.12205591052771],[-0.56401336193085,0.48015248775482,-0.37765130400658]],[[0.02814693748951,0.091426126658916,-0.27666226029396],[0.32860380411148,-0.2197597771883,-0.027811719104648],[-0.16745620965958,0.23709803819656,0.0029240450821817]],[[-0.072420254349709,-0.061887055635452,-0.75417673587799],[-0.22142653167248,0.47114223241806,0.35954815149307],[0.32068455219269,0.13937984406948,-0.18270829319954]],[[0.71850293874741,-0.66279989480972,-0.053939968347549],[-0.53622281551361,0.051702257245779,-0.17673850059509],[0.57716423273087,0.21644686162472,-0.13820055127144]],[[-0.099081300199032,0.037600260227919,0.14612066745758],[-0.11700600385666,0.16129112243652,0.62229633331299],[-0.5049461722374,-0.6094508767128,0.36768326163292]],[[-0.33747643232346,0.51747244596481,0.019690634682775],[-0.3715018928051,0.026303313672543,-0.37114959955215],[0.57352620363235,0.051249716430902,-0.11362913250923]],[[0.31024792790413,0.085181467235088,0.14809034764767],[-0.40751728415489,0.2967936694622,-0.27433729171753],[-0.25013077259064,0.028881715610623,0.56458562612534]],[[-0.028269907459617,-0.15988312661648,0.052958648651838],[0.69423544406891,0.65278649330139,-0.53188872337341],[-0.0060928068123758,-0.10538379848003,-0.60805344581604]],[[0.045204766094685,-0.078887790441513,0.09259931743145],[-0.7230509519577,-0.21399219334126,-0.023800967261195],[0.51919424533844,-0.33565518260002,0.20584638416767]],[[-0.56906145811081,0.55308890342712,-0.24812138080597],[-0.35684984922409,0.49603554606438,0.026295119896531],[-0.049955688416958,-0.57206004858017,0.71987241506577]],[[-0.23359505832195,-0.14645302295685,-0.058068696409464],[0.068320207297802,-0.40783217549324,-0.24280886352062],[0.35158583521843,0.02194507792592,-0.19803057610989]],[[0.6029953956604,-0.19727358222008,0.24453151226044],[0.69320118427277,0.38385197520256,0.35415947437286],[0.081284895539284,-0.74658036231995,0.29247322678566]],[[0.23028652369976,0.6945121884346,0.41017863154411],[0.016235385090113,-0.12396065890789,0.038040101528168],[-0.98704469203949,0.094866722822189,0.27028906345367]],[[0.26803854107857,-0.22464108467102,0.16078470647335],[-0.82624626159668,-0.34733963012695,1.1356781721115],[-0.94559687376022,0.73271787166595,0.045150056481361]],[[0.13252760469913,0.48332440853119,0.1637470126152],[0.11904998868704,0.029644500464201,-0.17197319865227],[-0.82654416561127,0.071588218212128,0.0013262571301311]],[[-0.82580065727234,-0.48009243607521,0.73205387592316],[-0.093626841902733,-0.12374742329121,-0.040578234940767],[0.37724846601486,0.66122531890869,-0.2006948441267]],[[-0.15764433145523,-0.14155328273773,0.082757703959942],[0.53122287988663,0.24484547972679,0.020362954586744],[-0.35517340898514,-0.19772779941559,-0.034510117024183]],[[-0.28583884239197,-0.73983252048492,0.38738375902176],[0.3569660782814,-0.4890268445015,0.39637139439583],[0.12439718097448,-0.027507996186614,-0.65250420570374]],[[-0.34083095192909,0.49972042441368,-0.035597857087851],[-0.65907537937164,-0.36073023080826,0.51677578687668],[-0.3154245018959,0.23566852509975,0.45916113257408]],[[-0.34335651993752,-0.11100794374943,0.13740383088589],[-0.03456037119031,-0.74709802865982,0.28894725441933],[0.012383027002215,-0.58077698945999,-0.29432374238968]],[[0.90619283914566,-0.15270817279816,-0.0017274732235819],[0.19168409705162,-0.13087449967861,-0.94949299097061],[-0.024794625118375,-0.21565526723862,0.38071230053902]],[[0.037295151501894,-0.1509585827589,0.21572557091713],[-0.082088999450207,0.038322072476149,-0.12089124321938],[0.78158897161484,-0.5212367773056,-0.20067149400711]],[[-0.40408384799957,0.11807876080275,0.31821209192276],[-0.27698275446892,0.9082258939743,-0.19345578551292],[-0.10669042170048,-0.3038222193718,-0.052785281091928]],[[-0.33797490596771,0.049535688012838,-0.578280210495],[0.49854812026024,0.17105475068092,0.22373501956463],[0.078630365431309,-0.51538187265396,0.40960887074471]],[[-0.22811502218246,0.07226175069809,0.091191433370113],[0.036242041736841,0.10347555577755,0.029326405376196],[0.25438979268074,0.016194682568312,-0.36989960074425]],[[0.61462432146072,-0.37511658668518,0.055446118116379],[-0.65783727169037,0.77850621938705,0.36488568782806],[0.027274275198579,-1.3471932411194,0.079945839941502]],[[-0.042801003903151,-0.090182781219482,-0.06360536813736],[0.24323174357414,0.068744987249374,-0.19765329360962],[0.08509922772646,-0.22799292206764,0.26695042848587]],[[-0.46270683407784,-0.13333161175251,0.15604025125504],[-0.29044514894485,0.036222502589226,-0.29457661509514],[1.1076997518539,0.24720819294453,-0.36815559864044]],[[0.23388479650021,-0.19779133796692,-0.15588212013245],[0.30950552225113,-0.476193100214,-0.16869792342186],[0.11772218346596,0.1810937076807,0.16752617061138]],[[0.23286789655685,0.22474406659603,0.22098541259766],[0.0097692217677832,-0.17789445817471,-0.20962961018085],[0.049828488379717,-0.48383381962776,0.13550211489201]],[[0.23843424022198,-0.72529864311218,0.86908620595932],[0.085757382214069,0.21099585294724,0.48998284339905],[-0.9348549246788,0.11709181964397,-0.35225278139114]],[[0.87530583143234,-0.07686710357666,0.98149859905243],[0.13561454415321,-0.47965741157532,-0.42482557892799],[0.06534456461668,-0.98565196990967,-0.089014731347561]],[[-0.13779793679714,0.4296572804451,0.28743159770966],[-0.27408516407013,0.58352571725845,-0.86399453878403],[0.13124541938305,0.17233300209045,-0.33070659637451]],[[0.51822030544281,0.68890106678009,0.32974338531494],[-0.48961365222931,-0.38384342193604,-0.3648541867733],[-0.56388753652573,-0.1074535921216,0.35519608855247]],[[0.23875875771046,0.1455589979887,0.20837584137917],[-0.63106733560562,0.47190764546394,-0.15356273949146],[-0.28049817681313,-0.0042860824614763,0.0038709894288331]],[[-0.093633621931076,-0.50682103633881,-0.12500195205212],[0.49834990501404,0.14318445324898,0.67174476385117],[-0.64649152755737,0.80312091112137,-0.74833875894547]],[[0.75358921289444,-0.13609384000301,-0.061749968677759],[-0.12205643206835,-0.36177346110344,0.11787969619036],[-0.026464771479368,0.19029687345028,-0.32959720492363]],[[-0.39458283782005,0.098407588899136,-0.86870741844177],[0.23894780874252,0.066190794110298,0.12147293239832],[-0.10626242309809,0.53576761484146,0.30739486217499]],[[-0.10785721242428,-0.036578953266144,-0.061695758253336],[-0.86446112394333,-0.15029068291187,0.48474350571632],[-0.22571581602097,0.75967901945114,0.2058169990778]],[[0.1480213701725,0.61504745483398,-0.02792058698833],[0.41179841756821,-0.46180456876755,0.11997353285551],[-0.87701326608658,-0.23080751299858,0.30449241399765]],[[0.31027457118034,-0.73277455568314,-0.029636461287737],[0.61802059412003,0.034334078431129,-0.52178072929382],[0.72181743383408,-0.20576512813568,-0.19149926304817]],[[-0.75073474645615,-0.25422835350037,0.23287659883499],[-0.20738099515438,-0.091195091605186,0.31786039471626],[-0.10554748028517,0.56001830101013,0.3032291829586]],[[0.6463737487793,0.096357718110085,0.086309127509594],[0.037272252142429,-0.42989456653595,-0.66801100969315],[0.20846496522427,-0.072901993989944,0.09538684040308]],[[-1.0741109848022,-0.012776639312506,-0.58137935400009],[0.048367995768785,0.27045238018036,-0.19446557760239],[0.3865559399128,-0.72866469621658,0.3828698694706]],[[0.048944801092148,-0.55968844890594,-0.8596670627594],[0.25556778907776,0.58392715454102,0.53147667646408],[-0.012430850416422,0.036449458450079,-0.025054756551981]],[[0.9123717546463,0.58972632884979,-0.29437911510468],[0.021390212699771,0.065597578883171,0.20586869120598],[-0.62205177545547,0.26322156190872,-0.62198805809021]],[[-0.42147091031075,0.76032900810242,0.78638106584549],[-0.032190255820751,-0.14852707087994,-0.16073957085609],[-0.5768124461174,-0.12775629758835,-0.069860890507698]],[[0.22786566615105,-0.20605637133121,0.39192408323288],[-0.15776661038399,0.094115048646927,1.0737560987473],[0.13578520715237,0.20165875554085,-0.63828313350677]],[[0.49966889619827,-0.59904795885086,-0.20019616186619],[0.37010592222214,-0.27157786488533,0.016624744981527],[0.044813543558121,0.18087670207024,-0.21731525659561]],[[-0.68399453163147,0.40633976459503,0.03781646490097],[0.17239755392075,1.2226885557175,-1.3609079122543],[-0.1516250371933,-0.23882305622101,0.60006403923035]]]],"nOutputPlane":1,"kW":3,"kH":3,"bias":[0.019728606566787],"nInputPlane":128}] \ No newline at end of file diff --git a/waifu2x-caffe/models/noise2_model.json b/waifu2x-caffe/models/noise2_model.json new file mode 100644 index 0000000..b88cc4a --- /dev/null +++ b/waifu2x-caffe/models/noise2_model.json @@ -0,0 +1 @@ +[{"weight":[[[[-0.014335822314024,-0.1060119792819,-0.061328429728746],[-0.016285492107272,-0.056306250393391,0.0076447250321507],[0.010947619564831,0.10644806176424,0.12145271897316]]],[[[0.13256335258484,0.072237521409988,-0.031917873769999],[0.024282041937113,-0.0029096370562911,0.064031839370728],[-0.020935775712132,-0.027226837351918,0.0049589402042329]]],[[[0.06178355962038,0.045330494642258,0.00044863671064377],[0.015910668298602,-0.052424132823944,-0.10337226092815],[-0.030202453956008,-0.038151178508997,0.086624644696712]]],[[[0.00071584415854886,0.01205794326961,0.16440182924271],[-0.016719806939363,-0.14624787867069,0.0082169501110911],[0.003453372977674,-0.018065925687551,-0.012059934437275]]],[[[0.063115328550339,-0.0096052037551999,-0.0070411851629615],[0.0086213340982795,0.054461155086756,0.017052367329597],[0.20671121776104,-0.027850272133946,0.0053869127295911]]],[[[-0.093287453055382,-0.13223147392273,9.6251133072656e-06],[-0.10941642522812,-0.031965732574463,-0.014723480679095],[0.0052406927570701,-0.14249007403851,0.021221049129963]]],[[[0.11830434203148,0.048505399376154,-0.055866785347462],[-0.055073827505112,-0.032018423080444,0.062891371548176],[-0.056802906095982,-0.019781563431025,-0.005360106471926]]],[[[-0.058214657008648,-0.081497929990292,-0.0184570197016],[0.016813086345792,0.10888087749481,0.066242642700672],[0.0088301114737988,-0.0056713591329753,-0.062218859791756]]],[[[0.066449575126171,0.041699025779963,0.051225833594799],[-0.05399315059185,-0.042092446237803,-0.052780207246542],[0.026778550818563,-0.034650530666113,-0.010306371375918]]],[[[-0.049797154963017,0.04582890868187,0.091510653495789],[0.06345009803772,0.12616890668869,0.091382369399071],[-0.017253054305911,-0.0343362018466,0.15567617118359]]],[[[-0.018461756408215,-0.0213942527771,0.034300085157156],[0.063384674489498,0.0021924064494669,-0.0025131211150438],[-0.016404585912824,-0.048970751464367,0.017220940440893]]],[[[0.019115382805467,-0.0087813725695014,-0.023058703169227],[0.017130317166448,-0.020491601899266,-0.009829412214458],[0.010525261051953,0.0056746336631477,0.0019875685684383]]],[[[0.13071170449257,0.0091231996193528,-0.050196330994368],[0.032683167606592,0.10653802007437,0.0071351337246597],[-0.04678625613451,-0.016782339662313,-0.0057604131288826]]],[[[0.017563063651323,-0.057013154029846,-0.0036675750743598],[-0.058440007269382,-0.082216016948223,-0.083846621215343],[-0.0092150317505002,0.027795540168881,-0.036848627030849]]],[[[-0.073909379541874,-0.050674628466368,0.013361861929297],[-0.065012380480766,-0.094500318169594,0.074585661292076],[0.075160175561905,0.079879768192768,0.045553468167782]]],[[[0.012906705029309,0.0035044685937464,-0.050498679280281],[-0.0069088316522539,0.039850387722254,0.015695882961154],[-0.025034066289663,0.018331095576286,-0.021820129826665]]],[[[-0.18091605603695,-0.040136218070984,0.010082839056849],[0.017648581415415,-0.060185380280018,-0.052503582090139],[-0.064610153436661,0.023594848811626,0.07172679156065]]],[[[-0.089749582111835,0.024006692692637,0.12494652718306],[0.033189546316862,0.16423189640045,-0.10327005386353],[-0.0062125413678586,-0.041303083300591,0.023401357233524]]],[[[0.0026070063468069,0.0018785459687933,0.00095896032871678],[0.044277016073465,-0.028792133554816,-0.0025514303706586],[-0.31883779168129,0.029087752103806,0.0051766424439847]]],[[[0.005940577480942,-0.028256382793188,0.024417113512754],[-0.1779500991106,0.09941378235817,-0.0080643463879824],[-0.015975931659341,0.089547105133533,0.013363878242671]]],[[[-0.022858906537294,0.055986981838942,0.077431172132492],[-0.047442145645618,0.020190170034766,-0.011890863068402],[0.053598634898663,-0.035634014755487,-0.011401636525989]]],[[[-0.065576173365116,-0.0096515771001577,0.0081691425293684],[0.056624166667461,0.0047520878724754,-0.0015310798771679],[0.014395614154637,-0.060682889074087,-0.0061644082888961]]],[[[-0.031481049954891,0.037365313619375,-0.052300408482552],[0.051429409533739,-0.070420667529106,0.084884010255337],[-0.052848134189844,0.082260057330132,-0.069279916584492]]],[[[-0.097422420978546,-0.018627766519785,0.0071704206056893],[-0.015696128830314,-0.0043201874941587,0.011565051041543],[-0.0037108748219907,0.006870498880744,0.12083587050438]]],[[[0.022388219833374,-0.024889286607504,-0.016224194318056],[-0.040820755064487,0.044497668743134,0.0033192369155586],[0.031153680756688,-0.046246383339167,0.0059428405947983]]],[[[0.027570711448789,0.056647092103958,-0.091898426413536],[-0.12570856511593,-0.021896038204432,-0.028155351057649],[0.087129846215248,0.018909260630608,-0.069002613425255]]],[[[0.0046836393885314,0.0081694796681404,-0.021421683952212],[0.18059416115284,-0.16013233363628,0.00043039314914495],[0.12381572276354,-0.14029425382614,0.0057786768302321]]],[[[0.0049306484870613,-0.081541977822781,0.14013230800629],[-0.10711122304201,-0.044609051197767,0.0045328666456044],[-0.065012246370316,0.076647080481052,0.074612908065319]]],[[[-0.00065309036290273,-0.00098881113808602,0.00083327473839745],[0.00025093922158703,0.0013933030422777,-0.0037097395397723],[-0.0010057274485007,-0.0019850854296237,0.0011586897308007]]],[[[-0.0054874178022146,0.10112877190113,-0.12369873374701],[0.059072021394968,-0.025371056050062,0.0048489919863641],[0.0018317814683542,-0.0014621160225943,-0.0073154303245246]]],[[[0.0044997003860772,-0.012869786471128,-0.011679029092193],[-0.0065833502449095,-0.0011010435409844,-0.17161539196968],[0.012517916969955,0.17710009217262,0.0054664337076247]]],[[[0.11303382366896,0.034666784107685,0.0090927397832274],[-0.020189257338643,0.054036274552345,-0.056458130478859],[-0.016125885769725,-0.0051026456058025,-0.085305102169514]]]],"nOutputPlane":32,"kW":3,"kH":3,"bias":[-0.0061175893060863,-0.16210243105888,-0.0055235750041902,-0.016631282866001,-0.13830238580704,0.091502390801907,-0.012913045473397,-0.0051554855890572,-0.0093604074791074,-0.08988668769598,-0.016276279464364,-0.007946184836328,-0.18149273097515,0.049379900097847,0.011605724692345,-0.010677405633032,0.085379771888256,-0.14022855460644,0.013245881535113,-0.014949175529182,-0.086496226489544,-0.00064347259467468,-0.0054833288304508,-0.021943189203739,-0.0057466113939881,0.0060996180400252,-0.014849109575152,0.0088981930166483,-0.00035587727325037,-0.013178002089262,-0.017186559736729,-0.0378348082304],"nInputPlane":1},{"weight":[[[[0.040904276072979,0.19482024013996,0.050713866949081],[0.11304130405188,-0.15284875035286,0.036095451563597],[0.10636717826128,0.0036628232337534,0.003549737855792]],[[0.064819246530533,-0.061766844242811,-0.028158240020275],[-0.10363809764385,-0.035327080637217,0.030947204679251],[0.035005211830139,-0.036394692957401,0.096942186355591]],[[0.078707136213779,0.005263939499855,-0.067003130912781],[0.061196271330118,-0.042645014822483,0.064344897866249],[-0.023429254069924,0.022551506757736,-0.075566351413727]],[[-0.0064539746381342,-0.08665931224823,0.0014264299534261],[0.12994068861008,-0.059673752635717,0.035166949033737],[0.074041947722435,-0.0011663486948237,-0.045717813074589]],[[-0.043758779764175,-0.026117101311684,0.044507618993521],[0.028808558359742,-0.0076407687738538,-0.058175310492516],[0.042944010347128,-0.068097837269306,0.12553563714027]],[[-0.004319341853261,-0.053047075867653,-0.10276804864407],[0.047118477523327,0.19497276842594,-0.020077308639884],[0.0035610252525657,0.13022772967815,0.070222347974777]],[[-0.017360957339406,0.10863408446312,-0.10534544289112],[0.064780198037624,0.032009724527597,0.00075265666237101],[0.11942066252232,-0.0085789561271667,-0.018994586542249]],[[-0.058059096336365,-0.00095097778830677,0.069947876036167],[0.12055041640997,0.080718331038952,-0.076953686773777],[-0.051662184298038,-0.041039768606424,-0.056394979357719]],[[0.047148216515779,-0.095220983028412,0.072799921035767],[-0.0088804420083761,-0.13706734776497,-0.098431617021561],[0.045906398445368,-0.0069125392474234,-0.049599677324295]],[[0.11956649273634,0.033707041293383,0.094449542462826],[-0.15008620917797,0.09111674875021,0.078994482755661],[-0.12138278782368,-0.10074934363365,-0.031846016645432]],[[-0.086452946066856,0.017586627975106,0.095921486616135],[0.01736512966454,0.040552321821451,0.11287941783667],[-0.012359346263111,0.016468493267894,-0.10192263871431]],[[-0.10520629584789,-0.0016630972968414,0.12622074782848],[0.0031979854684323,-0.17010135948658,-0.0097279781475663],[0.021006613969803,0.0027436055243015,0.1673739105463]],[[-0.0098027708008885,-0.017963970080018,0.017183555290103],[0.038817834109068,0.059667740017176,-0.08314710855484],[-0.10676895081997,-0.061023365706205,0.093665465712547]],[[0.03858982026577,-0.022021267563105,-0.19066283106804],[0.027915755286813,-0.15789538621902,-0.18718793988228],[0.09517977386713,0.064621634781361,0.04946081712842]],[[0.042953096330166,-0.098402783274651,-0.052077732980251],[0.11954591423273,0.055919364094734,0.033551547676325],[0.073072917759418,-0.12647412717342,-0.021778212860227]],[[-0.049481712281704,0.038913078606129,0.081486947834492],[-0.058315046131611,0.041717994958162,-0.13775381445885],[-0.16463173925877,0.073543556034565,0.080881156027317]],[[-0.033585965633392,0.043574694544077,-0.07299131155014],[-0.037782464176416,0.046630341559649,-0.066638886928558],[-0.017727943137288,0.07849332690239,-0.12688831984997]],[[-0.077661968767643,-0.021519048139453,0.026045361533761],[0.096625693142414,-0.041681386530399,-0.038997910916805],[0.015435477718711,0.11210725456476,-0.04582554847002]],[[-0.0015474277315661,0.074779763817787,-0.10537847876549],[0.10426818579435,0.141860678792,0.17545120418072],[0.054253146052361,0.12950211763382,0.018826249986887]],[[0.042894449084997,0.14330740272999,-0.067173972725868],[-0.063489064574242,0.064003646373749,-0.1534825116396],[-0.0359739176929,0.03505465015769,-0.013320065103471]],[[-0.10197035968304,0.019500218331814,-0.029181804507971],[0.071137569844723,-0.13317014276981,-0.015768133103848],[0.071688838303089,0.030425272881985,0.021656466647983]],[[0.065507628023624,0.018347501754761,-0.015060498379171],[-0.0030577194411308,0.012875949963927,-0.066206984221935],[0.063944779336452,0.086667858064175,-0.13375210762024]],[[0.00034467480145395,0.070317901670933,0.031300887465477],[0.1387578099966,0.0091201467439532,0.14113266766071],[-0.058534689247608,0.089459210634232,-0.067049317061901]],[[0.040772330015898,0.041515976190567,0.015801079571247],[-0.083118714392185,-0.10857889056206,-0.012121890671551],[-0.03185536339879,-0.098037660121918,-0.014619681984186]],[[0.031319249421358,0.12786191701889,-0.040462542325258],[0.020731398835778,0.090187177062035,-0.032765425741673],[-0.020371470600367,-0.0020230261143297,0.020347308367491]],[[0.0076847858726978,-0.04047029837966,-0.018062504008412],[0.017972763627768,-0.00518246460706,-0.1775508671999],[-0.038855414837599,0.0093745375052094,0.014646927826107]],[[0.05331102386117,0.037856049835682,0.07691340893507],[0.020850125700235,0.050490606576204,0.00071610859595239],[0.011315095238388,0.099961772561073,0.031806871294975]],[[-0.050792533904314,0.017283795401454,0.0081928614526987],[0.060160428285599,-0.031930930912495,-0.051242601126432],[0.028191385790706,0.068477861583233,0.033146198838949]],[[0.057627063244581,0.078210443258286,0.056887172162533],[0.0060197645798326,0.063528299331665,-0.0070220632478595],[-0.10487031191587,-0.028088487684727,0.043538793921471]],[[0.099205382168293,0.047951497137547,0.14418725669384],[-0.029585797339678,-0.061135552823544,0.12999247014523],[-0.05246264860034,0.05471621081233,-0.045450646430254]],[[-0.060004882514477,0.12510161101818,0.08100164681673],[-0.062968127429485,-0.21632117033005,0.058743618428707],[0.063539259135723,0.099520921707153,-0.010981363244355]],[[-0.12037558853626,0.04283569380641,0.046839345246553],[0.032566480338573,-0.03137881308794,-0.059221707284451],[-0.017209261655807,-0.018832139670849,0.013910672627389]]],[[[-0.10414823889732,0.0087459534406662,-0.0044615156948566],[-0.11061332374811,-0.081422865390778,-0.052690349519253],[0.086489669978619,0.13439853489399,-0.010700661689043]],[[-0.07404013723135,0.1285388469696,0.046002425253391],[-0.030405666679144,-0.092365115880966,-0.10782922059298],[-0.11283683776855,-0.12228183448315,-0.19975709915161]],[[-0.090909384191036,0.069687493145466,0.053550664335489],[0.026074165478349,0.098985180258751,-0.00039895193185657],[0.013212940655649,-0.16877742111683,-0.16076375544071]],[[-0.070108108222485,-0.025329113006592,0.046199589967728],[-0.071938201785088,0.16101428866386,-0.10994189232588],[-0.096816703677177,-0.0084098260849714,0.058873828500509]],[[0.056031066924334,-0.14203879237175,-0.22469417750835],[-0.050836574286222,0.027140513062477,-0.10992576926947],[-0.030803291127086,-0.050582621246576,0.01562082208693]],[[0.033840730786324,0.040345333516598,0.11832596361637],[0.10129607468843,0.11475536972284,0.058769982308149],[-0.0026926333084702,0.073374070227146,0.13981769979]],[[0.048057999461889,0.097709201276302,-0.08247546851635],[-0.003733939724043,-0.13253825902939,0.016754942014813],[0.072514794766903,-0.054380524903536,-0.041099142283201]],[[0.07051295787096,-0.14092056453228,-0.14572921395302],[-0.068523928523064,0.12016616016626,-0.083758883178234],[-0.041304178535938,0.060913473367691,0.075459755957127]],[[-0.00077669275924563,0.14952658116817,0.03123165667057],[-0.06470750272274,-0.13236066699028,0.16214144229889],[0.10911424458027,-0.029596514999866,-0.08306822180748]],[[-0.21413923799992,-0.022915678098798,0.10809347033501],[-0.21861845254898,-0.12247070670128,-0.18084305524826],[-0.08240982145071,-0.11834271997213,0.16049237549305]],[[0.0057399612851441,-0.21164153516293,0.014538836665452],[0.015928870067,0.043786324560642,-0.099415585398674],[-0.074570707976818,0.18274565041065,-0.1203443929553]],[[-0.024151213467121,-0.079686835408211,0.083555050194263],[-0.089977130293846,0.0029985595028847,-0.025952307507396],[0.01106952317059,0.05907054245472,-0.015705486759543]],[[-0.12385258078575,-0.081513494253159,-0.041071213781834],[-0.076510049402714,0.13155481219292,-0.24022926390171],[0.0035486684646457,0.04089118912816,-0.041692011058331]],[[0.16091807186604,0.0077002691105008,-0.27631828188896],[-0.053421638906002,0.066737219691277,0.1044948771596],[0.020908256992698,0.13070683181286,0.025800652801991]],[[0.087988071143627,0.033610615879297,-0.0060584885068238],[-0.097094483673573,0.065192751586437,-0.062555097043514],[-0.04189657792449,0.082486234605312,-0.08921404927969]],[[0.0049487566575408,0.15548925101757,0.040028624236584],[-0.11354723572731,-0.064879156649113,0.044209726154804],[0.0060917506925762,-0.13296645879745,0.067074149847031]],[[0.057284269481897,-0.065139017999172,-0.0086081959307194],[-0.0058047762140632,0.063195414841175,-0.072746314108372],[0.050273932516575,0.067178033292294,0.018620742484927]],[[0.051019549369812,-0.031428337097168,-0.069948390126228],[-0.0041843308135867,0.012982185930014,-0.17716272175312],[-0.019636169075966,0.13672383129597,-0.017802201211452]],[[-0.029707334935665,0.17419195175171,0.17877370119095],[-0.00020763531210832,-0.05610629171133,-0.0022396347485483],[0.0034372142981738,0.051168989390135,-0.047278445214033]],[[-0.022935893386602,-0.093471571803093,-0.037723802030087],[0.14021551609039,0.087272956967354,-0.036264378577471],[-0.10566449165344,-0.056340895593166,-0.0066154557280242]],[[0.0080135026946664,-0.035760439932346,-0.14574974775314],[0.065377235412598,-0.022137189283967,-0.087231911718845],[0.05994251742959,-0.10865374654531,-0.082677647471428]],[[-0.093241214752197,-0.0077652111649513,-0.068717993795872],[-0.073378391563892,-0.033194791525602,-0.047508519142866],[-0.035630606114864,0.080990321934223,0.0075344271026552]],[[-0.013372357934713,-0.043205354362726,-0.044833742082119],[-0.12783062458038,0.14926564693451,-0.13088968396187],[-0.0039880471304059,-0.068780057132244,-0.037325099110603]],[[0.03699891269207,-0.13801530003548,-0.11365562677383],[0.0055805575102568,-0.057000614702702,-0.030245874077082],[-0.022928593680263,-0.025624183937907,0.006504129152745]],[[0.018951503559947,0.0053452807478607,-0.018439440056682],[-0.12279919534922,-0.011206898838282,0.13317497074604],[0.031417615711689,-0.038604646921158,0.00043078232556581]],[[-0.11892005056143,-0.024626372382045,0.029064048081636],[0.10742793232203,0.045077990740538,-0.040320541709661],[-0.028639448806643,-0.15650604665279,0.01746235601604]],[[0.010914525017142,0.061586506664753,0.041510265320539],[-0.067297965288162,-0.055299818515778,-0.044292502105236],[0.11470580101013,-0.070464596152306,-0.031232323497534]],[[-0.022508420050144,-0.033909313380718,-0.00086333323270082],[-0.00086453737458214,0.022240616381168,0.11032532900572],[-0.045955747365952,0.019354416057467,-0.015653530135751]],[[0.008678681217134,-0.055560421198606,-0.018440132960677],[0.0059776292182505,-0.12797799706459,-0.10097232460976],[-0.026118829846382,0.15879620611668,0.11793302744627]],[[-0.062134072184563,-0.058658577501774,0.051624208688736],[-0.013492689467967,-0.058121852576733,0.067362628877163],[0.10359729081392,-0.033878639340401,0.059022068977356]],[[0.019159497693181,-0.041372206062078,0.077287919819355],[0.034678783267736,0.068311251699924,0.0081138201057911],[0.0011450451565906,-0.052639793604612,-0.0048918747343123]],[[-0.012400567531586,-0.022920474410057,-0.038471832871437],[0.09416201710701,-0.010970848612487,0.012553219683468],[0.017217611894011,-0.021357789635658,0.13260938227177]]],[[[0.070081971585751,-0.1582822650671,0.0054250513203442],[0.1021596044302,-0.03379400447011,0.024543462321162],[0.13259465992451,0.041826318949461,0.094304822385311]],[[-0.021209662780166,-0.076701186597347,-0.021180504933],[0.021753625944257,-0.072587616741657,0.14613829553127],[-0.010307766497135,-0.017177443951368,0.010477061383426]],[[-0.17144849896431,-0.033683892339468,-0.089683294296265],[-0.093952991068363,0.080131337046623,0.031989339739084],[-0.2860871553421,-0.064712911844254,0.024932267144322]],[[-0.066137127578259,0.038351349532604,-0.11257530003786],[0.082408040761948,0.09091654419899,0.049151301383972],[-0.12707343697548,-0.17338295280933,0.14029133319855]],[[0.12994016706944,-0.045251943171024,0.082459002733231],[-0.29059624671936,0.090183280408382,-0.043727811425924],[-0.03877267241478,-0.024072919040918,0.06547000259161]],[[0.087649516761303,-0.080139368772507,0.050841752439737],[0.11078337579966,-0.046616479754448,-0.013149293139577],[-0.052793927490711,0.053095743060112,-0.14251019060612]],[[0.020508078858256,-0.045880313962698,-0.14338283240795],[-0.25529688596725,0.076904781162739,-0.014373831450939],[-0.28141507506371,-0.030233673751354,-0.2320901453495]],[[-0.23756124079227,0.073064178228378,-0.095385231077671],[-0.10492084920406,0.028672071173787,-0.062836699187756],[0.062594816088676,-0.016573159024119,-0.073244735598564]],[[-0.038261268287897,0.081676095724106,-0.081271663308144],[0.14741887152195,-0.13009062409401,0.047083020210266],[0.11065294593573,0.23017475008965,-0.018827740103006]],[[0.034478679299355,0.073913417756557,0.0099090747535229],[0.10680164396763,-0.085096277296543,-0.16187505424023],[-0.00035767001099885,0.12629386782646,0.034486591815948]],[[-0.0086043169721961,0.080458648502827,0.0021427592728287],[0.27154806256294,-0.088516615331173,-0.02955200150609],[-0.067342206835747,-0.10081645846367,-0.047628946602345]],[[-0.13047930598259,-0.071136273443699,-0.083077132701874],[0.15189126133919,-0.15310160815716,-0.11411248892546],[0.34938454627991,0.052284870296717,0.02394961938262]],[[-0.098742134869099,0.042912714183331,-0.21370252966881],[-0.096625663340092,0.0077037871815264,-0.015314654447138],[0.061457976698875,-0.29878556728363,0.060806225985289]],[[-0.093232147395611,0.12982858717442,-0.028198644518852],[-0.018128668889403,0.0742167532444,-0.15427653491497],[0.12525440752506,-0.024635419249535,0.013108720071614]],[[-0.030409740284085,-0.085463531315327,-0.04816397279501],[-0.1217774450779,0.10214277356863,0.21152809262276],[0.058612421154976,0.013771193102002,-0.12446096539497]],[[0.039887689054012,0.064243756234646,-0.003900850424543],[0.062890760600567,-0.010821791365743,-0.10780167579651],[-0.067571930587292,-0.1131513863802,0.17792446911335]],[[-0.0943653434515,0.039859879761934,-0.01742260158062],[0.28195059299469,0.057514663785696,-0.072473414242268],[-0.08271699398756,0.11353525519371,-0.0064418893307447]],[[-0.09527887403965,0.046581298112869,0.011106449179351],[-0.22527658939362,-0.1221846267581,-0.20482890307903],[-0.13338285684586,0.17326597869396,0.0082630040124059]],[[-0.10390259325504,-0.02878619171679,0.05138098821044],[-0.011345281265676,0.1544376462698,0.06157973408699],[0.022819571197033,0.048056308180094,-0.074593737721443]],[[0.065941281616688,0.07126758992672,-0.33037647604942],[-0.019413344562054,-0.053610607981682,-0.4211385846138],[0.01241806987673,-0.17598652839661,-0.31530803442001]],[[-0.015127044171095,-0.16446895897388,0.080571033060551],[-0.13894805312157,0.067489996552467,-0.059182740747929],[-0.15954667329788,0.046067263931036,-0.061813004314899]],[[0.092288866639137,-0.035834062844515,-0.16853679716587],[0.22505858540535,-0.08951161801815,-0.054693326354027],[-0.08213384449482,0.15995563566685,-0.11779233068228]],[[-0.059663411229849,0.015300493687391,-0.25361052155495],[-0.21716943383217,-0.22132690250874,-0.056889645755291],[0.018184477463365,-0.044597450643778,0.1597273349762]],[[-0.081789970397949,-0.22004273533821,0.088881753385067],[0.14392131567001,-0.2760990858078,0.0069159930571914],[-0.23765768110752,0.10641863197088,-0.34197118878365]],[[-0.11106525361538,0.0040851235389709,-0.097328811883926],[-0.12517823278904,-0.19839191436768,0.10018560290337],[-0.18860225379467,0.068864613771439,0.095983557403088]],[[0.059079010039568,-0.017145533114672,0.091955289244652],[-0.06234297901392,0.091289550065994,-0.00075097574153915],[-0.10827396810055,0.097604334354401,-0.11081129312515]],[[-0.002322101732716,-0.29110214114189,0.041346166282892],[0.26824590563774,-0.27563753724098,-0.044732917100191],[-0.36194255948067,-0.27120378613472,-0.10436496138573]],[[-0.16894483566284,0.18181440234184,-0.20266163349152],[-0.25411200523376,-0.00034989192499779,-0.10425324738026],[-0.098165206611156,-0.2074937671423,0.29223075509071]],[[0.0048841186799109,-0.11223085969687,-0.14620266854763],[-0.18762838840485,0.18290781974792,-0.097895465791225],[0.18597364425659,-0.054135549813509,0.010457127355039]],[[0.071214072406292,-0.28074753284454,0.047818798571825],[-0.019426129758358,-0.09330853074789,0.036705426871777],[-0.14161138236523,-0.21884153783321,-0.16285838186741]],[[-0.17392534017563,-0.0047064763493836,-0.15091775357723],[-0.19375050067902,0.098536461591721,-0.19041073322296],[-0.15449796617031,-0.13440500199795,-0.17272944748402]],[[0.0030899713747203,0.048526622354984,-0.1044360473752],[-0.21127496659756,0.019523330032825,-0.19955499470234],[0.19554558396339,0.017389329150319,0.11981488764286]]],[[[0.033997301012278,-0.08631943166256,-0.034123349934816],[0.10096227377653,-0.26573652029037,0.021516414359212],[-0.062066625803709,-0.12162650376558,0.12897878885269]],[[-0.10874660313129,0.080880887806416,0.14872050285339],[0.10482220351696,-0.12701368331909,0.13355824351311],[0.046182744204998,0.01292622834444,0.26103028655052]],[[0.15624083578587,-0.043503396213055,0.049674730747938],[0.062203243374825,-0.048426438122988,-0.14356191456318],[0.042987339198589,-0.048426028341055,0.13729037344456]],[[0.054870653897524,0.15213564038277,-0.051839429885149],[-0.038666795939207,-0.25849163532257,-0.10056638717651],[-0.072714917361736,-0.18208478391171,-0.14299844205379]],[[-0.055498644709587,0.012037623673677,0.067759603261948],[-0.038540255278349,-0.027683870866895,0.12419648468494],[0.0089681213721633,0.046061545610428,0.023589536547661]],[[0.067981727421284,-0.040912687778473,-0.01470229960978],[-0.14336548745632,0.026068715378642,-0.057157706469297],[0.18035294115543,-0.17003300786018,0.099613830447197]],[[0.18011085689068,-0.018515106290579,0.015526016242802],[-0.010720596648753,-0.10542896389961,-0.072097599506378],[3.1722469429951e-05,-0.11384440213442,0.012574505060911]],[[0.0042589944787323,0.064246453344822,-0.058048069477081],[-0.1589338183403,-0.11061963438988,0.0016800462035462],[-0.01252093911171,-0.14818358421326,-0.0034095267765224]],[[-0.027237707749009,-0.077919758856297,-0.0011533662909642],[-0.044361788779497,0.0061964094638824,-0.22907511889935],[-0.017668001353741,0.019927890971303,0.021142020821571]],[[0.016955012455583,-0.053002219647169,-0.059060271829367],[0.13203866779804,-0.10478800535202,0.061998046934605],[-0.068795546889305,-0.06089449301362,-0.085546933114529]],[[-0.12944485247135,-0.03635011613369,0.061814032495022],[0.10244113206863,-0.18361304700375,-0.058341715484858],[0.24613101780415,-0.081519111990929,0.056267395615578]],[[0.10456243902445,-0.042893618345261,-0.05636228993535],[-0.03339234739542,-0.22014912962914,-0.055723320692778],[0.061280746012926,0.056158471852541,-0.042024068534374]],[[0.10529676824808,-0.011807455681264,-0.23123969137669],[0.069049030542374,0.28414776921272,-0.034839909523726],[-0.18429087102413,0.047308042645454,0.33946490287781]],[[0.045990139245987,-0.067908003926277,0.030286410823464],[-0.2134752124548,0.036777354776859,-0.084424212574959],[0.057083263993263,0.04723135009408,0.11658005416393]],[[0.09562473744154,0.065078563988209,0.094992250204086],[0.017624534666538,-0.23039750754833,-0.13316012918949],[0.046442572027445,-0.019240079447627,0.097974233329296]],[[0.11984877288342,-0.0038406034000218,-0.1742902547121],[0.046059925109148,-0.033142473548651,-0.045409075915813],[0.11621104925871,0.01518792193383,0.065517939627171]],[[-0.040584251284599,0.081362880766392,0.025078909471631],[-0.040941938757896,0.084202602505684,-0.089655429124832],[-0.0041832057759166,-0.12148150801659,0.02345616184175]],[[0.15499784052372,0.038804262876511,0.028057206422091],[-0.046818319708109,0.023491468280554,0.04623743891716],[0.1385014206171,-0.11407327651978,0.018251037225127]],[[0.063204154372215,-0.053623002022505,-0.24001494050026],[-0.21128736436367,-0.089059241116047,-0.041004557162523],[0.13594289124012,-0.009075672365725,-0.023882903158665]],[[0.041336383670568,0.15797287225723,0.16565243899822],[-0.12638592720032,0.035474929958582,-0.015633685514331],[0.002430597320199,-0.085497684776783,-0.093400470912457]],[[0.038264181464911,-0.17621812224388,0.071945026516914],[0.21242380142212,-0.081485964357853,-0.080995783209801],[-0.022233918309212,0.13345463573933,0.046093210577965]],[[0.020927976816893,-0.18328996002674,-0.094984397292137],[-0.017333783209324,0.088352002203465,-0.054644305258989],[0.1401137560606,-0.051201362162828,-0.058974381536245]],[[-0.093143150210381,0.0012070392258465,-0.042663931846619],[-0.015208549797535,-0.023563541471958,0.026307655498385],[0.025717228651047,0.0076097287237644,-0.035312213003635]],[[-0.041381768882275,-0.097176447510719,-0.0042679216712713],[0.044757917523384,-0.2109629958868,0.080082982778549],[-0.10102478414774,-0.047786694020033,-0.083291888237]],[[-0.040090251713991,0.0073951096273959,0.15466286242008],[0.041831128299236,-0.07048574835062,-0.059232506901026],[-0.084561370313168,0.14984039962292,-0.075947940349579]],[[-0.013721243478358,0.026240667328238,-0.093864142894745],[-0.13573405146599,-0.080809839069843,-0.15257839858532],[-0.086527921259403,0.035880349576473,0.18533544242382]],[[-0.027354907244444,-0.17090925574303,-0.043926361948252],[0.14541463553905,-0.20798245072365,0.029242532327771],[-0.0050943037495017,0.16425542533398,0.056401249021292]],[[-0.028045041486621,0.062926694750786,-0.022014090791345],[-0.051527000963688,-0.040113020688295,-0.07455637305975],[0.18371744453907,-0.05954559892416,0.2071625739336]],[[-0.13804720342159,0.015173003077507,-0.054863229393959],[-0.14932517707348,0.0050159767270088,0.046383447945118],[0.12631697952747,0.030991656705737,-0.084681190550327]],[[0.19469551742077,-0.19296482205391,0.16788354516029],[0.085086487233639,-0.10187970846891,0.048624522984028],[-0.13633865118027,-0.074887290596962,0.10239794105291]],[[-0.029464924708009,-0.16156277060509,0.0095412982627749],[-0.08501498401165,-0.037019610404968,-0.19266276061535],[-0.096262291073799,-0.049900747835636,0.12885273993015]],[[-0.052542738616467,-0.18256685137749,-0.073996052145958],[-0.24170473217964,0.11411791294813,0.10194966197014],[-0.00037646957207471,-0.0043809497728944,0.075885474681854]]],[[[-0.044337619096041,0.018994472920895,-0.0046798102557659],[-0.10306509584188,0.15048061311245,0.085782147943974],[0.01246178150177,-0.043778456747532,0.10969770699739]],[[-0.082272216677666,0.032627463340759,-0.12410993129015],[-0.078797459602356,0.02299272082746,-0.11742373555899],[-0.089496470987797,-0.074431739747524,0.066215559840202]],[[0.07497838139534,-0.10703698545694,0.07874745875597],[0.013672131113708,0.016480812802911,0.0086680706590414],[-0.027135783806443,0.05709358304739,-0.1498845666647]],[[0.14725191891193,0.070207223296165,-0.076964415609837],[0.0090163787826896,0.02261496335268,0.019938310608268],[-0.0058338358066976,0.003227653214708,0.094515174627304]],[[0.024469997733831,-0.035117857158184,-0.089934274554253],[-0.0211619772017,-0.063204921782017,-0.15072758495808],[-0.15897665917873,-0.11820820719004,-0.033198110759258]],[[0.17973303794861,-0.058903947472572,-0.028596682474017],[0.01940737105906,0.033883158117533,0.1182466596365],[0.13047404587269,0.057384371757507,0.1508920788765]],[[-0.064293749630451,-0.1476958245039,0.071814127266407],[0.11994019895792,0.02625934034586,0.0019267755560577],[-0.09664136916399,0.0036803530529141,0.10923469811678]],[[-0.099243365228176,0.0074927797541022,0.0056061209179461],[0.12609507143497,-0.027384072542191,0.032160989940166],[-0.14994320273399,-0.019247837364674,0.18932470679283]],[[0.024186642840505,-0.018447274342179,-0.11403975635767],[-0.026261860504746,-0.061234075576067,-0.051435735076666],[0.086454294621944,0.081822611391544,-0.093690633773804]],[[-0.077343508601189,-0.015742948278785,-4.4180684199091e-05],[-0.07800355553627,0.11318121850491,-0.13125130534172],[-0.027566526085138,-0.20200058817863,-0.26557257771492]],[[0.080240458250046,0.12068930268288,-0.23424783349037],[0.060953907668591,0.099857896566391,0.085139580070972],[-0.098698601126671,0.024046450853348,-0.0028386800549924]],[[-0.0031657151412219,0.033135674893856,0.089834623038769],[0.13220880925655,0.0046379659324884,-0.16097949445248],[0.073479190468788,-0.17708237469196,0.1148130223155]],[[-0.068060085177422,-0.13427686691284,-0.13780727982521],[0.015423755161464,0.044171281158924,0.031121157109737],[-0.075023256242275,-0.074826277792454,-0.049574796110392]],[[-0.14774993062019,0.05249236151576,0.065025225281715],[0.11856161057949,0.20430034399033,0.098633579909801],[-0.076868064701557,0.019354788586497,-0.050286382436752]],[[-0.0111387912184,-0.14086186885834,0.022835798561573],[0.0055384011939168,0.14991663396358,-0.017355667427182],[-0.072811752557755,-0.028533419594169,0.12883019447327]],[[0.076710656285286,0.0025277608074248,0.059996947646141],[-0.073437124490738,-0.094494313001633,-0.071514166891575],[0.0162150003016,0.059379026293755,0.030457843095064]],[[0.030310878530145,-0.033525906503201,-0.080572180449963],[0.098204277455807,0.01335533708334,0.065886355936527],[0.050481550395489,-0.034652151167393,-0.03917583078146]],[[-0.013987961225212,0.17921993136406,-0.13769623637199],[-0.10215120017529,-0.03663907200098,0.0048050368204713],[-0.012524939142168,-0.032799486070871,0.095822401344776]],[[-0.072709143161774,0.13746564090252,0.054365579038858],[0.15380734205246,0.13006784021854,-0.17520450055599],[0.056096665561199,-0.15600328147411,0.015218750573695]],[[0.018395373597741,0.016818195581436,0.12463444471359],[-0.070795826613903,-0.043837297707796,0.10927980393171],[-0.10223545134068,-0.13024428486824,0.046047899872065]],[[-0.048779796808958,0.052458718419075,0.04833897575736],[-0.073173083364964,-0.01863226480782,-0.019525310024619],[0.083596974611282,0.081786088645458,0.088473096489906]],[[0.086080968379974,-0.018116114661098,-0.014339004643261],[0.082803450524807,0.073230519890785,0.090928770601749],[0.13720014691353,0.075377628207207,-0.04031827300787]],[[0.10625734180212,-0.03437002748251,-0.0029973809141666],[0.24076741933823,-0.1017481982708,-0.12888450920582],[0.14013656973839,0.10494574904442,-0.027269002050161]],[[-0.067377649247646,0.055846322327852,-0.016303114593029],[-0.014305491000414,-0.13536114990711,0.1547629982233],[-0.017503079026937,0.02017461322248,0.1873796582222]],[[-0.060990035533905,-0.011863727122545,-0.032261863350868],[-0.083728604018688,0.045011844485998,-0.15678179264069],[0.053141418844461,-0.0010034990264103,0.02764005959034]],[[0.064409330487251,0.0058661615476012,0.014229884371161],[0.045579295605421,0.11846920102835,0.083177104592323],[0.088331952691078,0.085577368736267,-0.11346562206745]],[[-0.032797452062368,-0.063143379986286,-0.15688791871071],[0.070750139653683,-0.079416267573833,-0.10973503440619],[0.04409534484148,0.041507553309202,-0.16874697804451]],[[-0.085404440760612,-0.083347402513027,0.16520610451698],[-0.036708492785692,-0.031342178583145,-0.087455056607723],[0.12248842418194,-0.061602834612131,0.034321870654821]],[[0.064580798149109,-0.005357360932976,0.029570588842034],[-0.045030776411295,0.047538124024868,0.042513690888882],[-0.096496358513832,-0.1132504940033,0.059413179755211]],[[0.019950980320573,0.0097277499735355,-0.089387811720371],[-0.061040483415127,0.1174950003624,-0.02297531068325],[-0.19765596091747,-0.080478675663471,-0.16081330180168]],[[-0.049004148691893,-0.11133671551943,-0.018787736073136],[0.097122631967068,0.055432010442019,-0.1444047242403],[0.027468126267195,0.051127996295691,-0.11236041039228]],[[0.090625837445259,-0.12128707766533,0.046300332993269],[-0.018658939749002,-0.030420269817114,0.0061264815740287],[0.071761757135391,-0.055611979216337,-0.11484088003635]]],[[[-0.11249060183764,-0.13383273780346,0.0062108831480145],[-0.26555088162422,-0.30394998192787,-0.23807632923126],[-0.10348482429981,-0.0082663204520941,-0.026874693110585]],[[-0.15390037000179,0.11383409798145,-0.085702545940876],[0.11993128061295,-0.070462048053741,-0.094489485025406],[-0.00017955371004064,0.073267407715321,0.14119537174702]],[[-0.14092068374157,-0.063099808990955,-0.1412218362093],[-0.069441728293896,-0.069626420736313,-0.10099266469479],[0.018291896209121,0.14858849346638,0.04507290571928]],[[0.22601690888405,-0.066725626587868,-0.2560838162899],[-0.0084854057058692,-0.15189974009991,-0.20152616500854],[0.11637634038925,-0.012677450664341,0.065940156579018]],[[-0.059008747339249,-0.001412351266481,0.0087457122281194],[0.064237698912621,0.049980599433184,-0.061891905963421],[0.042717777192593,0.22593754529953,-0.024129847064614]],[[-0.056750252842903,0.13830611109734,0.1527463644743],[-0.10961639881134,0.053479596972466,0.092656977474689],[0.00041920706280507,-0.072617076337337,0.067529417574406]],[[-0.16532984375954,-0.13839438557625,0.11031471192837],[-0.0073977606371045,-0.039401177316904,-0.074276782572269],[0.098379246890545,-0.04491775482893,-0.070562310516834]],[[0.037691738456488,-0.22939610481262,0.04316508024931],[0.0041149663738906,-0.21286378800869,-0.21063336730003],[0.18695496022701,-0.27975195646286,0.14907978475094]],[[0.11026248335838,-0.061399601399899,-0.12629017233849],[-0.11696852743626,0.12084820121527,0.096783064305782],[-0.084158346056938,-0.046746373176575,-0.060771662741899]],[[-0.089405737817287,-0.21485812962055,0.074107050895691],[-0.15946969389915,0.063173532485962,0.10396972298622],[0.10662733018398,-0.072350703179836,0.033845234662294]],[[-0.032036688178778,-0.062029514461756,-0.0045881127007306],[-0.007190094795078,-0.09355653077364,0.089139185845852],[0.0025668372400105,0.19093479216099,-0.1863758713007]],[[-0.028185533359647,-0.015855047851801,0.050691936165094],[0.047826942056417,-0.0577084235847,0.040783498436213],[0.18116992712021,-0.10896955430508,0.064130038022995]],[[0.17953664064407,-0.35760244727135,-0.072467461228371],[0.093329921364784,0.074431642889977,-0.45545998215675],[0.013707323931158,0.21743290126324,0.047617994248867]],[[0.08344154804945,0.083871804177761,0.01598728261888],[-0.045380178838968,0.13853347301483,-0.043322630226612],[-0.075413130223751,-0.097666002810001,-0.036659400910139]],[[-0.18811593949795,0.28523698449135,0.069388255476952],[-0.085888378322124,0.14839746057987,0.11388694494963],[-0.10606292635202,-0.14924816787243,-0.097081266343594]],[[0.023242089897394,-0.044456485658884,0.02946450188756],[-0.058032166212797,-0.079843364655972,0.0041106166318059],[0.0058406619355083,-0.065814159810543,0.074590556323528]],[[0.20169605314732,0.021749008446932,0.19209931790829],[-0.092576391994953,-0.10461898893118,-0.054864674806595],[-0.048056654632092,-0.20094275474548,-0.12541989982128]],[[0.016457857564092,-0.047902408987284,-0.11764346808195],[-0.15274299681187,-0.10915031284094,-0.035397261381149],[0.02374474145472,0.0042189806699753,-0.05781988427043]],[[-0.19169828295708,-0.011607343330979,-0.12181503325701],[-0.049073647707701,-0.24815559387207,-0.096408993005753],[-0.019099611788988,-0.032753467559814,-0.14129480719566]],[[0.055622320622206,-0.2360919713974,-0.15041697025299],[0.015962911769748,-0.02383797056973,-0.11878813058138],[0.11824429780245,0.10983021557331,0.036361034959555]],[[-0.041731152683496,-0.08507826179266,-0.032036788761616],[-0.20961630344391,-0.22873786091805,0.15501248836517],[0.22878311574459,-0.042148858308792,0.14677113294601]],[[-0.010336626321077,-0.048554960638285,0.15668942034245],[-0.10116709023714,-0.1172763928771,-0.12858638167381],[0.072843700647354,-0.066259488463402,-0.090275019407272]],[[0.028524285182357,-0.011888816952705,-0.15825054049492],[-0.034467034041882,-0.028994850814342,-0.083731524646282],[-0.14090390503407,-0.00067189353285357,0.015924191102386]],[[-0.0095620639622211,-0.048256304115057,-0.38260251283646],[0.15438459813595,-0.13072845339775,-0.11021409183741],[0.20222735404968,0.092808499932289,0.06388445943594]],[[0.097586177289486,0.03221769630909,-0.1434735506773],[0.058806858956814,-0.048474248498678,-0.060999035835266],[0.099634975194931,-0.020797500386834,0.10503621399403]],[[0.010284608229995,-0.074435129761696,0.053017787635326],[0.045266028493643,-0.1773551851511,0.17626810073853],[-0.066939614713192,-0.026363428682089,-0.031441871076822]],[[-0.26629915833473,0.065212041139603,-0.25345182418823],[0.012311582453549,-0.20828941464424,0.014097274281085],[-0.045121379196644,0.015855651348829,0.006674655713141]],[[0.013580985367298,0.14919453859329,0.13620887696743],[-0.25503721833229,0.16497258841991,-0.089811533689499],[-0.23809660971165,-0.15019606053829,0.038921471685171]],[[0.063050091266632,-0.044610526412725,-0.029215063899755],[0.21020436286926,-0.00098234636243433,0.060723770409822],[-0.059771932661533,0.0019530499121174,-0.055909432470798]],[[-0.019545990973711,-0.10353087633848,-0.15294016897678],[0.02855696156621,-0.079973638057709,0.054099552333355],[0.03295050188899,0.0031776237301528,0.10469122231007]],[[-0.21329601109028,-0.30943048000336,0.13192313909531],[0.019869515672326,-0.041221242398024,0.10797225683928],[-0.098173871636391,-0.038029674440622,0.005952041130513]],[[0.0084571447223425,-0.067606806755066,0.051447484642267],[-0.22759215533733,0.028121823444963,-0.20747828483582],[0.052417237311602,-0.011741913855076,0.073189966380596]]],[[[0.11668848246336,-0.052033912390471,0.045866463333368],[0.10916840285063,0.0016069296980277,-0.099036686122417],[-0.052617706358433,-0.067703001201153,-0.15637250244617]],[[-0.061544217169285,0.018581619486213,-0.049290772527456],[0.037008691579103,0.12162327766418,-0.015336973592639],[0.040410850197077,-0.045513797551394,-0.012339883483946]],[[0.096109442412853,-0.26940894126892,0.064862616360188],[-0.13842585682869,0.056185178458691,-0.043646655976772],[0.25195422768593,-0.47049367427826,0.085439205169678]],[[0.10997942090034,-0.12004330009222,-0.047538977116346],[0.0011206268100068,-0.020395806059241,-0.11091373115778],[0.05772527307272,-0.0041569694876671,-0.20665509998798]],[[0.18023061752319,-0.057865370064974,-0.059456888586283],[-0.072565719485283,0.045731235295534,0.022721070796251],[0.20553188025951,-0.01552923116833,0.11574323475361]],[[0.083127111196518,-0.075072906911373,-0.041851468384266],[-0.089722476899624,0.13598443567753,-0.080227613449097],[0.016099413856864,-0.004702543374151,0.11752317845821]],[[-0.010086374357343,-0.16535399854183,0.032527718693018],[-0.12923292815685,-0.12060071527958,-0.092276260256767],[0.045977510511875,0.2280620187521,-0.005706244148314]],[[-0.073360919952393,0.14698007702827,0.079819642007351],[-0.05160353705287,0.024585423991084,0.07072626799345],[-0.029086925089359,0.066267065703869,-0.038297303020954]],[[0.096420310437679,-0.38429015874863,-0.049683909863234],[-0.18780064582825,0.10727278143167,-0.0852015838027],[0.17186173796654,-0.24009941518307,0.025889199227095]],[[-0.057301249355078,-0.078428544104099,0.067263714969158],[-0.20841744542122,-0.047259889543056,0.063236221671104],[-0.079984880983829,0.050090253353119,0.010883070528507]],[[0.11274445056915,0.07051695138216,0.10389334708452],[-0.072792738676071,0.030827276408672,-0.24349725246429],[0.0054807798005641,-0.18373709917068,-0.013840047642589]],[[-0.072820499539375,-0.055798150599003,-0.036168910562992],[0.0076256454922259,0.06733100861311,0.038912918418646],[-0.02414520829916,-0.020252276211977,-0.011847158893943]],[[0.069682620465755,-0.1547054797411,0.060561459511518],[-0.11899781227112,0.010333654470742,-0.092646688222885],[-0.018836515024304,-0.15515546500683,0.0013404868077487]],[[-0.11494559794664,-0.064521931111813,0.063097089529037],[-0.055293049663305,-0.028434168547392,-0.078692995011806],[0.054638028144836,-0.022929115220904,-0.017711484804749]],[[-0.049171306192875,-0.06775713711977,-0.12285036593676],[0.032099466770887,-0.054105628281832,0.078780524432659],[-0.20038422942162,0.1300488114357,-0.10055717080832]],[[-0.21520055830479,-0.066784627735615,-0.17414718866348],[0.082591988146305,-0.040347017347813,0.22379717230797],[-0.04223744571209,0.19096286594868,0.058064933866262]],[[-0.13544972240925,0.024705560877919,-0.066179908812046],[0.089438080787659,-0.030206358060241,0.042187463492155],[-0.092110738158226,0.16665543615818,-0.087275996804237]],[[0.0094358697533607,-0.060972809791565,0.0048503624275327],[-0.025617083534598,-0.030169842764735,-0.15788142383099],[0.028925534337759,-0.0066421669907868,0.14581134915352]],[[0.0089032677933574,0.08463816344738,-0.043796800076962],[0.15356294810772,-0.060595851391554,0.24824918806553],[-0.0092948712408543,0.12751895189285,-0.21406687796116]],[[0.06894763559103,0.04453731700778,-0.079333931207657],[0.037707906216383,0.064280949532986,-0.21177689731121],[0.25343358516693,-0.17592784762383,-0.0016405991045758]],[[0.11242859810591,-0.18985635042191,0.12827877700329],[-0.18941961228848,-0.014979201368988,-0.070116654038429],[-0.055128652602434,-0.21532244980335,0.057836323976517]],[[0.009476282633841,0.021140493452549,-0.059801664203405],[0.037581406533718,-0.041815828531981,-0.013573303818703],[0.031696874648333,0.11160062253475,0.028633989393711]],[[-0.25006142258644,0.029597453773022,-0.027177289128304],[-0.13635112345219,-0.21390686929226,0.087501011788845],[-0.17467546463013,0.024345235899091,-0.094550713896751]],[[0.087826892733574,-0.017346125096083,-0.07359255105257],[-0.17155054211617,0.10536447167397,-0.040695160627365],[0.095645293593407,0.094352319836617,-0.089028313755989]],[[0.05315950140357,-0.17957782745361,0.10966216772795],[-0.1721758544445,-0.13537375628948,-0.27451914548874],[0.080683119595051,-0.13088363409042,-0.015965580940247]],[[0.012333376333117,-0.070912539958954,0.023671966046095],[-0.047926098108292,-0.19676285982132,-0.057702884078026],[-0.097236327826977,-0.096956759691238,-0.032617993652821]],[[0.00057960150297731,0.011616921983659,0.1267561763525],[-0.14451825618744,0.077160872519016,-0.050929039716721],[-0.13714990019798,0.062658697366714,0.060604427009821]],[[0.1207997277379,-0.15337119996548,0.08351031690836],[-0.1535539329052,-0.045680072158575,-0.03305671736598],[-0.014292400330305,-0.0076312338933349,0.20396520197392]],[[-0.051596570760012,0.13511329889297,-0.045982040464878],[-0.021093975752592,0.068920508027077,-0.056952081620693],[-0.013549879193306,0.058579962700605,-0.10905502736568]],[[-0.34508767724037,0.21920508146286,-0.10161347687244],[0.021776339039207,-0.18055704236031,0.10375555604696],[-0.25743424892426,-0.011815463192761,-0.029293047264218]],[[-0.14361180365086,-0.079681873321533,-0.05740412697196],[0.00051327707478777,0.11057858914137,0.12190145999193],[-0.0013399517629296,-0.067203216254711,0.066792950034142]],[[0.022563794627786,-0.043364185839891,0.087660320103168],[-0.12001711130142,0.084644384682178,-0.07224577665329],[0.04730661958456,-0.042509153485298,0.058759942650795]]],[[[-0.067084535956383,-0.17423029243946,0.038507349789143],[0.11596723645926,0.10025284439325,0.11766304820776],[-0.1122934371233,-0.086883895099163,0.24177084863186]],[[-0.124462492764,-0.15283799171448,0.072447195649147],[0.043260719627142,-0.025618731975555,-0.072647660970688],[-0.079307571053505,0.092874325811863,-2.2260963305598e-05]],[[-0.075578466057777,-0.014470832422376,0.0072048497386277],[0.032639019191265,0.066054247319698,0.067740686237812],[-0.015594156458974,0.03413562476635,-0.062667846679688]],[[0.036477323621511,0.095219872891903,0.054325357079506],[-0.16019298136234,0.070183850824833,0.27499082684517],[0.10030019283295,-0.20368230342865,0.0089285271242261]],[[0.060494981706142,-0.10227343440056,-0.018178202211857],[0.079375505447388,0.0031589835416526,0.10495708882809],[-0.0783376917243,0.07577733695507,0.10062678903341]],[[0.036548733711243,0.0019234762294218,0.055902354419231],[-0.080275602638721,-0.26998826861382,0.013817216269672],[0.0022883408237249,-0.10759882628918,-0.035515509545803]],[[0.041422113776207,-0.038212481886148,0.1137570887804],[0.0035844820085913,0.097985573112965,-0.26568451523781],[-0.22078327834606,0.20739094913006,0.067704945802689]],[[-0.12041657418013,-0.00080691510811448,-0.0160400737077],[-0.082253187894821,0.044802088290453,0.060577116906643],[0.029943581670523,-0.12687872350216,-0.029925234615803]],[[0.030419413000345,-0.021095855161548,-0.0061046201735735],[-0.013583042658865,-0.19094952940941,0.17331328988075],[0.057239953428507,0.014856216497719,-0.0064866482280195]],[[0.00675103161484,0.0068204989656806,-0.16970439255238],[0.16653640568256,-0.024246759712696,0.051521878689528],[0.0096654444932938,-0.11192733794451,-0.0023026682902128]],[[-0.012411492876709,0.18489062786102,0.032875649631023],[0.061905387789011,0.036389511078596,-0.030076762661338],[-0.013007329776883,-0.13016185164452,-0.21921940147877]],[[0.038743697106838,-0.17168772220612,0.19755530357361],[0.00047068748972379,0.029084971174598,-0.22325810790062],[0.03003422357142,0.11508211493492,-0.15340209007263]],[[-0.23877197504044,-0.26408937573433,-0.00032390287378803],[-0.024081403389573,0.080484427511692,-0.091703377664089],[-0.055130202323198,-0.16515102982521,-0.022014696151018]],[[0.076468154788017,0.23377305269241,0.13352303206921],[-0.17468899488449,0.089512571692467,0.14760725200176],[-0.033460929989815,0.012588439509273,0.18757265806198]],[[0.0022222951520234,0.056729283183813,0.095665752887726],[-0.065155044198036,-0.089193023741245,0.042063020169735],[0.054276864975691,0.074387922883034,-0.17962011694908]],[[0.084205344319344,-0.096278764307499,-0.13196495175362],[-0.0062919342890382,-0.053947970271111,0.13596630096436],[-0.051847692579031,0.10448639839888,-0.020212944597006]],[[-0.045951385051012,0.10228637605906,0.075211107730865],[-0.12731797993183,0.022003849968314,-0.014508967287838],[-0.022068981081247,-0.19129975140095,-0.10948192328215]],[[-0.050470367074013,0.015435691922903,-0.096246212720871],[-0.20599161088467,-0.16987502574921,-0.07956125587225],[0.12697887420654,-0.17621806263924,-0.18714000284672]],[[-0.19972781836987,0.13348591327667,0.011599455028772],[-0.001400217297487,-0.020868850871921,0.11335501074791],[0.18891008198261,0.21915924549103,-0.052957631647587]],[[-0.012118788436055,-0.052026219666004,-0.062549456954002],[0.071847632527351,-0.30320116877556,0.043528497219086],[0.068644225597382,-0.18810258805752,0.19334402680397]],[[0.071777999401093,-0.053194344043732,-0.069051675498486],[-0.074964597821236,-0.033609189093113,0.022484796121716],[0.10523387044668,-0.14465752243996,-0.15283991396427]],[[-0.092422157526016,0.22581101953983,-0.062482960522175],[-0.031538616865873,0.065254971385002,-0.083695746958256],[-0.15281373262405,-0.21087962388992,-0.19328632950783]],[[-0.11545743793249,0.071498975157738,0.12753829360008],[-0.19785808026791,0.083528473973274,0.1403234899044],[-0.11975096911192,0.0090598426759243,0.010624741204083]],[[-0.02746245637536,-0.11651095747948,-0.02391405031085],[-0.17311607301235,-0.09967278689146,0.12950205802917],[0.26348316669464,-0.15163552761078,-0.2330849468708]],[[-0.11841316521168,-0.15269441902637,0.24362081289291],[-0.059084642678499,-0.0054049557074904,-0.055750291794538],[-0.0027273602318019,-0.11389759927988,0.10524036735296]],[[-0.014256991446018,0.11717007309198,0.06896148622036],[-0.092408567667007,0.12852674722672,0.047666314989328],[-0.064694903790951,-0.10530626773834,-0.023416500538588]],[[-0.10933995246887,-0.39654779434204,-0.023631563410163],[-0.068608306348324,-0.17211717367172,-0.051502320915461],[0.042675450444221,-0.088805012404919,-0.13307033479214]],[[0.044537324458361,0.1760787665844,0.12184707820415],[-0.1708228290081,-0.16054387390614,-0.0056598554365337],[-0.12191096693277,-0.051769003272057,-0.063173323869705]],[[0.035529598593712,0.010189672000706,0.0028610615991056],[-0.076303832232952,0.0036262469366193,0.16484515368938],[-0.078155227005482,0.08915052562952,0.021655702963471]],[[-0.047406531870365,-0.10385222733021,-0.10399915277958],[0.053043972700834,0.13059134781361,-0.24872931838036],[-0.33100491762161,0.029421446844935,0.11382669955492]],[[-0.014193618670106,-0.087940976023674,-0.013363556936383],[-0.2429590523243,-0.13176661729813,0.055880837142467],[0.10830523818731,0.0072063049301505,0.12839192152023]],[[-0.026214903220534,0.0093635581433773,-0.053148921579123],[0.050435848534107,-0.051271099597216,-0.037203084677458],[0.22277665138245,-0.12712264060974,-0.130256280303]]],[[[-0.057416647672653,-0.005393376108259,-0.021224224939942],[-0.018330577760935,0.068704470992088,0.036787644028664],[0.099169194698334,0.0097835920751095,-0.012895471416414]],[[-0.035774860531092,-0.026433657854795,-0.09182620793581],[0.088085845112801,0.0038121419493109,-0.0043613030575216],[-0.022046459838748,-0.012564858421683,-0.060589168220758]],[[0.023413337767124,0.020836217328906,0.0013911918504164],[-0.08336216956377,-0.062988482415676,0.087639346718788],[0.066966824233532,-0.02499183267355,0.024966077879071]],[[-0.060163401067257,0.04871379584074,-0.0010114795295522],[0.11317063122988,0.048935398459435,-0.048925489187241],[-0.058822002261877,-0.044206809252501,0.00090880045900121]],[[-0.054186463356018,-0.031037241220474,0.043964385986328],[-0.057946257293224,-0.11555627733469,0.050226215273142],[0.072476521134377,-0.05906281247735,-0.088608495891094]],[[-0.032238699495792,0.024511335417628,-0.10230146348476],[0.053620863705873,0.17660908401012,0.17057313024998],[0.12211925536394,0.12117782980204,-0.053039841353893]],[[0.0053294971585274,0.055837139487267,0.16694912314415],[-0.034061748534441,-0.0049050720408559,-0.047914952039719],[-0.019997181370854,-0.13332860171795,-0.11168877035379]],[[0.048197824507952,-0.20467631518841,0.0041983737610281],[0.058443482965231,0.056093852967024,-0.0003191422438249],[-0.068788610398769,-0.1634836345911,-0.084338344633579]],[[0.03432659804821,-0.075885094702244,-0.10654152929783],[0.060844410210848,0.02847789786756,-0.0012466257903725],[-0.13440972566605,-0.068336561322212,0.15516796708107]],[[-0.18585604429245,-0.012526530772448,0.11250325292349],[0.00090787559747696,-0.087775148451328,-0.15646983683109],[-0.066124483942986,-0.022403374314308,0.081124670803547]],[[0.034030877053738,-0.066596060991287,-0.095365479588509],[0.07295223325491,-0.01217139326036,0.17858721315861],[-0.13477937877178,-0.0082001453265548,-0.16301937401295]],[[0.025671415030956,0.15144450962543,0.044691752642393],[-0.047016482800245,0.061542943120003,-0.05855068564415],[0.040010463446379,-0.065140530467033,0.056252930313349]],[[0.081848070025444,0.061726067215204,-0.067653656005859],[0.13856694102287,-0.042174197733402,-0.045830294489861],[-0.088345646858215,-0.00018326795543544,-0.1813855022192]],[[0.032749235630035,0.066032528877258,-0.11207723617554],[0.0018190074479207,0.033089239150286,-0.079751469194889],[0.041721686720848,-0.051801335066557,-0.10235452651978]],[[-0.065699584782124,-0.094380758702755,-0.0048095150850713],[0.018860679119825,0.14302235841751,0.057821981608868],[-0.099401548504829,0.0012369917239994,0.12606494128704]],[[-0.013433364219964,-0.0080670695751905,0.008805749937892],[0.13348984718323,0.009400594048202,0.001503421110101],[-0.06955823302269,-0.020441705361009,-0.072283983230591]],[[0.011258217506111,0.023064617067575,-0.013471156358719],[-0.060772992670536,0.065661869943142,-0.10676918178797],[-0.14382319152355,0.068096525967121,-0.12642389535904]],[[-0.087707862257957,0.1041537001729,0.074510291218758],[-0.039603751152754,-0.079253911972046,-0.0027283623348922],[0.018372414633632,-0.077150478959084,-0.0030442201532423]],[[-0.019142856821418,0.026456668972969,0.076195441186428],[0.076148808002472,0.18526586890221,0.093282610177994],[0.027695614844561,0.020948531106114,-0.12306272983551]],[[0.059772711247206,-0.0520920753479,-0.014040351845324],[0.056044433265924,0.030791537836194,0.020820243284106],[0.046094343066216,-0.012993543408811,-0.033621337264776]],[[-0.00067573634441942,-0.076061695814133,0.0072994544170797],[-0.032231226563454,-0.11228392273188,-0.0062730582430959],[-0.051400735974312,-0.14751027524471,-0.012822106480598]],[[0.15213231742382,-0.05297764390707,0.044264066964388],[-0.011589498259127,0.088809229433537,-0.039027344435453],[0.048869203776121,0.010536403395236,-0.087089702486992]],[[0.0275305416435,0.012633811682463,0.059568092226982],[-0.018047856166959,-0.010359319858253,0.040040038526058],[0.0098462365567684,0.066461756825447,0.058618046343327]],[[0.024943187832832,0.016584448516369,-0.17540913820267],[-0.022262899205089,-0.026575431227684,0.023355340585113],[-0.01335518155247,-0.08253487944603,-0.066017955541611]],[[-0.038725651800632,-0.017490843310952,0.05753106623888],[0.077557422220707,0.057572338730097,-0.075829535722733],[-0.13266958296299,0.068090453743935,-0.13593292236328]],[[0.053426530212164,-0.19871068000793,-0.076933979988098],[0.19463594257832,0.11572984606028,0.11879505962133],[-0.041067577898502,0.02478619851172,-0.01443222630769]],[[-0.033007897436619,-0.10478810220957,-0.15913496911526],[-0.058550551533699,0.10360352694988,-0.091086469590664],[0.040977846831083,-0.022372556850314,0.037068575620651]],[[-0.021507050842047,-0.076006188988686,0.034596499055624],[-0.046925321221352,-0.028243456035852,0.019853554666042],[-0.054111246019602,0.046633016318083,-0.06632249802351]],[[-0.055031210184097,-0.02604802697897,-0.011335893534124],[0.051000624895096,0.088034451007843,0.071618512272835],[-0.0037909559905529,-0.066183589398861,0.0085070291534066]],[[0.059680189937353,0.065895423293114,0.031416155397892],[-0.026550425216556,-0.0277812872082,-0.02288400195539],[0.0049222968518734,-0.12632624804974,-0.040464483201504]],[[0.05782326310873,-0.11304405331612,0.090030543506145],[-0.071340046823025,0.05565008148551,0.01426487416029],[0.051521711051464,-0.10541164875031,0.010449963621795]],[[-0.0076926173642278,0.13447465002537,0.10084442049265],[-0.021523348987103,0.033303163945675,0.032683212310076],[0.12693907320499,0.0060234284028411,-0.095169350504875]]],[[[-0.067309126257896,0.1552891433239,0.0018601686460897],[0.014317589811981,0.10785081982613,-0.0089334696531296],[-0.12547722458839,-0.043431952595711,-0.19108022749424]],[[0.12947651743889,-0.024389114230871,0.15485821664333],[0.021456865593791,-0.053915590047836,-0.16164653003216],[-0.034309331327677,-0.14247687160969,0.074967235326767]],[[-0.059266395866871,0.022319575771689,0.13491757214069],[-0.13611477613449,-0.070479311048985,0.097165398299694],[0.053622495383024,-0.14931696653366,-0.1889721006155]],[[-0.054605312645435,0.04724957048893,-0.034068580716848],[0.093023642897606,-0.0061503131873906,-0.075942546129227],[-0.25525707006454,-0.21648827195168,-0.20094153285027]],[[0.042273946106434,-0.21303790807724,-0.010421635583043],[0.015979394316673,-0.053509213030338,0.050463605672121],[0.08047541975975,-0.0066863135434687,-0.029619239270687]],[[-0.070149481296539,0.061512261629105,-0.055218502879143],[0.097166016697884,0.0068838256411254,0.030259773135185],[-0.10996622592211,0.038402538746595,-0.10482683777809]],[[-0.10080635547638,-0.037449348717928,-0.16515970230103],[0.13089920580387,0.15452140569687,-0.093464955687523],[0.18904834985733,-0.013871355913579,-0.17252664268017]],[[-0.078854590654373,0.20841367542744,-0.0046817427501082],[-0.28385674953461,0.053845033049583,0.041039291769266],[-0.024322591722012,-0.14190950989723,-0.086303159594536]],[[-0.084262937307358,0.011838371865451,-0.11247771978378],[0.013260406441987,-0.092547692358494,-0.20804512500763],[-0.048525966703892,0.049390874803066,-0.17009010910988]],[[0.067437194287777,-0.022107718512416,0.040773544460535],[-0.0029633985832334,-0.10596641153097,0.10105021297932],[-0.033780157566071,0.041809659451246,0.023238150402904]],[[-0.122663423419,0.073612555861473,0.021168597042561],[0.11125441640615,-0.0039509586058557,-0.021957030519843],[0.038865115493536,0.017374699935317,0.050470504909754]],[[0.011083178222179,0.009740917943418,0.046103790402412],[-0.18853566050529,-0.030707005411386,0.022197524085641],[-0.023292221128941,0.045482829213142,0.11862181127071]],[[-0.012692075222731,-0.073503814637661,0.076934166252613],[0.16730611026287,-0.17919404804707,-0.16139271855354],[-0.12383910268545,-0.046972803771496,-0.0097176749259233]],[[0.099742405116558,-0.1169309169054,0.0093127740547061],[0.21471320092678,-0.011472183279693,-0.048659678548574],[-0.01267072930932,0.015048921108246,-0.15835846960545]],[[-0.42363265156746,-0.13202224671841,-0.36546149849892],[0.016742460429668,0.10609943419695,0.12370154261589],[0.10981974750757,0.021055987104774,0.1709306538105]],[[0.000933553208597,0.029355732724071,0.071432948112488],[-0.14157649874687,-0.052061729133129,0.014260999858379],[-0.047237481921911,0.0017478731460869,0.17877171933651]],[[-0.06611680239439,0.0099832536652684,-0.03159386664629],[0.064952559769154,0.035657111555338,0.035705395042896],[0.092626757919788,0.037973199039698,-0.10482477396727]],[[-0.078623287379742,0.24311429262161,0.12135849893093],[0.067682504653931,-0.095371179282665,-0.074880912899971],[-0.14730495214462,-0.066799804568291,-0.14298288524151]],[[0.16189573705196,0.24290139973164,0.13262268900871],[0.023415500298142,0.092684239149094,-0.17419554293156],[0.091432675719261,-0.10939387977123,0.039074022322893]],[[0.086574532091618,-0.25801157951355,0.043631426990032],[-0.093510992825031,0.045720793306828,0.061528254300356],[0.1871857047081,-0.18787537515163,-0.1364569067955]],[[0.011851289309561,0.17426663637161,-0.019057722762227],[-0.12473893165588,-0.21764843165874,-0.17652334272861],[-0.023313403129578,-0.1003829985857,-0.023152574896812]],[[0.023864476010203,-0.014436647295952,-0.16362158954144],[-0.14732281863689,0.012382783927023,-0.046576764434576],[-0.045537855476141,0.056874375790358,-0.096874542534351]],[[0.036639221012592,0.0099200513213873,0.10610914230347],[-0.085353665053844,-0.25600501894951,0.0077036479488015],[0.089022658765316,0.06553540378809,-0.10512471199036]],[[0.14881335198879,0.079132981598377,-0.0071543087251484],[0.018235627561808,-0.11580155044794,0.059016827493906],[-0.082055233418941,0.026673367246985,-0.062823355197906]],[[-0.03487079963088,-0.096003659069538,0.050889655947685],[0.11208739131689,-0.14126352965832,-0.070655152201653],[0.085993275046349,0.16802074015141,0.090133480727673]],[[0.080677725374699,-0.052955284714699,-0.020887944847345],[0.075866423547268,0.058590039610863,0.021580001339316],[-0.12510327994823,-0.058313522487879,-0.16781017184258]],[[-0.028024848550558,-0.037179082632065,0.0036585808265954],[0.010977097786963,-0.0063302614726126,-0.13711042702198],[0.094206564128399,-0.0057884692214429,-0.088667578995228]],[[-0.056851230561733,-0.25724658370018,-0.081703722476959],[0.12718805670738,0.13031752407551,0.084894299507141],[0.023501511663198,0.0048072510398924,-0.20956756174564]],[[0.073784396052361,0.083238042891026,0.0016772353556007],[-0.22546949982643,-0.017265805974603,0.044436793774366],[0.020171079784632,0.12548668682575,-0.005258378572762]],[[-0.17778088152409,0.057623229920864,-0.064144991338253],[-0.090501792728901,0.16102105379105,0.0074670971371233],[0.095261797308922,-0.055988095700741,-0.050308614969254]],[[-0.032275553792715,0.042706813663244,0.020895330235362],[-0.047016859054565,-0.19904284179211,-0.014583627693355],[-0.13818381726742,-0.3020310997963,-0.074201203882694]],[[-0.079109407961369,-0.018080281093717,0.18380133807659],[0.0031608210410923,-0.27577403187752,-0.04970121756196],[-0.14336040616035,-0.12982451915741,0.0025678826496005]]],[[[-0.034284088760614,0.040044400840998,-0.042360726743937],[0.0037227931898087,-0.082525946199894,-0.023878486827016],[-0.14931035041809,-0.17044338583946,-0.15817232429981]],[[0.014023883268237,-0.064676322042942,0.14224794507027],[0.016621563583612,0.13089992105961,0.010331674478948],[-0.073723256587982,-0.10917353630066,-0.028781417757273]],[[0.010119603015482,-0.047986324876547,-0.044065143913031],[0.018396457657218,0.0031024448107928,-0.092690616846085],[-0.13328342139721,0.0005881522083655,-0.15493361651897]],[[0.15629601478577,-0.044888131320477,-0.0074653020128608],[0.026611359789968,-0.054143510758877,0.27060031890869],[0.13122616708279,0.037292826920748,0.053510166704655]],[[0.054609794169664,0.013628153130412,-0.10733891278505],[0.054898921400309,0.02858705073595,-0.15416631102562],[-0.024235541000962,0.022464666515589,0.14102531969547]],[[-0.15843531489372,0.057062711566687,0.10267540812492],[-0.17170925438404,0.049981791526079,0.15816712379456],[0.031398307532072,-0.03409531340003,0.061270780861378]],[[0.18323609232903,-0.050414655357599,0.071333289146423],[0.20326668024063,-0.12640702724457,-0.046528458595276],[-0.092802539467812,-0.22346426546574,-0.11637548357248]],[[0.080943666398525,-0.0025648518931121,0.10309948027134],[0.03402329608798,0.082806967198849,0.12793476879597],[-0.14787296950817,-0.28029561042786,0.059799309819937]],[[-0.011038077063859,0.14007131755352,0.056600239127874],[-0.061182554811239,-0.00062617531511933,-0.015893921256065],[-0.21435758471489,0.078776977956295,-0.053361747413874]],[[-0.0027523457538337,0.072695069015026,-0.15508563816547],[-0.075289487838745,-0.0086773484945297,-0.062248274683952],[-0.066055029630661,0.13020150363445,0.13042686879635]],[[0.035669509321451,0.042419765144587,0.090219646692276],[0.033887233585119,0.010838053189218,-0.16490072011948],[0.26046001911163,0.069747142493725,0.02195131406188]],[[0.18682731688023,-0.0054382816888392,-0.14991222321987],[0.076974540948868,-0.10607393085957,-0.11135817319155],[-0.042633306235075,-0.060858882963657,-0.041359785944223]],[[0.1847843080759,-0.10449310392141,0.031595911830664],[0.13448774814606,0.1142245605588,0.017867244780064],[-0.051633048802614,-0.08352330327034,-0.17139346897602]],[[-0.092710621654987,-0.042239096015692,-0.023566454648972],[0.13875590264797,-0.030390333384275,0.044518489390612],[-0.11818325519562,0.070191591978073,0.050483882427216]],[[-0.15913294255733,0.056645959615707,-0.10907429456711],[-0.062772072851658,-0.035452123731375,-0.006549243349582],[0.0053011472336948,0.02481891028583,0.095635034143925]],[[-0.0091691967099905,0.039755433797836,-0.061286807060242],[0.050659142434597,0.022303214296699,0.046764500439167],[0.016798680648208,0.050323780626059,0.0061199166812003]],[[-0.18622618913651,-0.0047770324163139,-0.10989707708359],[-0.011756166815758,-0.10012775659561,0.1019881144166],[0.015641536563635,0.10499081760645,0.10775541514158]],[[0.13130195438862,0.091852836310863,0.024918764829636],[0.098817400634289,-0.017374753952026,0.063732579350471],[0.030137872323394,-0.18193565309048,0.05080059170723]],[[0.17793367803097,-0.15698724985123,0.21379844844341],[-0.10060380399227,-0.161028906703,-0.035571090877056],[0.056220673024654,-0.080619819462299,-0.11669848114252]],[[0.15913443267345,0.10434287041426,-0.055403612554073],[0.051560625433922,0.0031790335197002,-0.092977322638035],[-0.074002407491207,-0.01578121073544,-0.075188852846622]],[[0.077101863920689,0.080775141716003,-0.10557848215103],[0.055883649736643,0.0032493670005351,0.031541328877211],[0.09359285235405,0.15308323502541,0.0012538494775072]],[[0.18503347039223,0.0099150650203228,0.09523506462574],[0.023794513195753,0.21685175597668,-0.022132713347673],[-0.056617815047503,-0.093847393989563,0.048175804316998]],[[0.0022535887546837,-0.11849851161242,-0.095572851598263],[0.030221309512854,0.035924043506384,0.023833693936467],[-0.0035960187669843,-0.13738124072552,-0.083769746124744]],[[0.23075652122498,0.13170456886292,-0.026249451562762],[-0.027342272922397,0.113953307271,-0.032332137227058],[-0.043101407587528,0.12770003080368,-0.2175157815218]],[[0.018142279237509,0.061455599963665,0.070688597857952],[-0.083806343376637,-0.099542826414108,-0.11775403469801],[0.02028807066381,-0.081105709075928,-0.079534374177456]],[[0.16606453061104,0.14542855322361,-0.03320075199008],[0.053961262106895,0.036660168319941,-0.049164369702339],[0.054471030831337,0.01118544396013,0.0068966583348811]],[[0.11620053648949,-0.21257089078426,-0.093885600566864],[0.090333953499794,-0.038561463356018,-0.09785720705986],[-0.042882010340691,-0.063005387783051,-0.11514447629452]],[[0.035539422184229,-0.060781665146351,0.090256780385971],[0.13501831889153,-0.051940161734819,0.081277757883072],[-0.054652415215969,-0.19777975976467,-0.013287389650941]],[[0.18719688057899,-0.01427242718637,-0.010539238341153],[0.081178203225136,0.088902398943901,0.025814153254032],[-0.084358565509319,-0.015548208728433,-0.10435818880796]],[[0.081300884485245,0.2065823674202,-0.061981394886971],[0.039205551147461,-0.0088512049987912,-0.04578660801053],[-0.053803507238626,-0.14184474945068,-0.020490085706115]],[[0.052026979625225,-0.10667761415243,-0.1655687391758],[-0.0047837565653026,-0.11058262735605,0.069221712648869],[-0.11576250195503,-0.048439919948578,0.057313412427902]],[[-0.13243183493614,5.6125441915356e-05,-0.0021196112502366],[0.027614157646894,-0.062310602515936,0.041392631828785],[0.042444944381714,0.15037842094898,-0.020845828577876]]],[[[-0.12980830669403,-0.21819032728672,-0.13383623957634],[-0.019745659083128,-0.26549771428108,0.042636051774025],[-0.050760127604008,-0.21526446938515,0.017346940934658]],[[-0.12160059809685,-0.095624476671219,0.016503313556314],[0.078578561544418,-0.08585012704134,0.04770378395915],[-0.094727165997028,-0.0049382043071091,0.021933309733868]],[[-0.034970194101334,0.0027784113772213,-0.048565216362476],[0.10707131773233,0.16230358183384,0.02112896554172],[-0.13816569745541,-0.092218071222305,0.0034172267187387]],[[-0.18378548324108,-0.047185990959406,0.027076879516244],[0.14444369077682,-0.027235759422183,-0.03760552033782],[0.050688143819571,-0.098691023886204,0.054209753870964]],[[0.12534755468369,-0.051880020648241,-0.048995904624462],[0.12540569901466,0.091351412236691,-0.02648663148284],[-0.092739820480347,-0.099281646311283,-0.04986497014761]],[[-0.041074700653553,0.16497346758842,0.10563714057207],[-0.056644763797522,-0.028871662914753,0.027932813391089],[0.034306991845369,-0.17432856559753,-0.10037340223789]],[[-0.01962423324585,0.15563322603703,0.08683418482542],[-0.018176827579737,-0.097570784389973,-0.0912916213274],[-0.020264992490411,0.015873417258263,0.079972304403782]],[[0.057221740484238,0.0029322151094675,0.019994463771582],[-0.12749429047108,-0.066113494336605,-0.014503136277199],[0.056625969707966,-0.034336909651756,0.020196136087179]],[[-0.11276376247406,-0.017441375181079,-0.03732955083251],[0.093421049416065,0.024315554648638,0.0097712315618992],[-0.025353942066431,0.12610545754433,-0.084747329354286]],[[-0.17360246181488,-0.051239464432001,0.038047160953283],[-0.0030122566968203,-0.1715974509716,0.081577442586422],[0.13271895051003,0.1087274774909,-0.033022064715624]],[[0.029244421049953,0.017043177038431,0.088059656322002],[-0.22006054222584,-0.007324802223593,-0.024694157764316],[-0.064710877835751,-0.066922277212143,-0.0071013132110238]],[[-0.077281214296818,0.18183155357838,-0.15231123566628],[-0.038699835538864,0.18520565330982,0.12068643420935],[-0.077967055141926,-0.14886192977428,-0.10669553279877]],[[-0.12997679412365,0.035242184996605,0.00030752862221561],[-0.0064742648974061,0.083097577095032,0.17680828273296],[-0.086893953382969,-0.18428857624531,0.28044167160988]],[[0.033328104764223,0.047505676746368,-0.0062435888685286],[0.065272353589535,0.033658757805824,0.20299039781094],[-0.27428212761879,-0.070711314678192,-0.0037265147548169]],[[-0.043350320309401,0.26491919159889,-0.079894930124283],[-0.16569375991821,0.054900366812944,0.071973621845245],[0.099355883896351,-0.035610478371382,0.076116949319839]],[[-0.060326274484396,0.13649746775627,0.1139200180769],[0.061926431953907,0.053206473588943,0.02274689078331],[-0.010735925287008,-0.10350877046585,-0.096103511750698]],[[-0.022159345448017,0.095996744930744,0.012664749287069],[0.0071682292036712,-0.14826589822769,0.035754688084126],[0.061561953276396,0.086875170469284,0.028437197208405]],[[0.060675781220198,-0.11289075016975,-0.1122577264905],[0.057652447372675,-0.033957034349442,-0.15589036047459],[-0.10620595514774,-0.048493720591068,0.14675557613373]],[[-0.20666980743408,-0.045690551400185,0.17972907423973],[0.025253819301724,-0.29759877920151,-0.20958140492439],[-0.11092870682478,-0.17391523718834,-0.31790322065353]],[[-0.02714728936553,-0.050056222826242,0.09390863776207],[0.13026195764542,-0.063100583851337,-0.014984917826951],[-0.03176062554121,-0.29388293623924,0.067635215818882]],[[-0.0088637545704842,-0.058411806821823,0.044540103524923],[0.043670274317265,0.16370058059692,0.0085175577551126],[0.010530242696404,0.0082238493487239,0.097444668412209]],[[0.20111131668091,0.027492525056005,0.084779627621174],[-0.18082031607628,-0.014581374824047,-0.022070905193686],[-0.030108092352748,-0.042495552450418,0.053292006254196]],[[0.059832975268364,0.11071889102459,-0.064678087830544],[0.014873333275318,-0.027386680245399,0.021024996414781],[-0.0075914217159152,-0.015864888206124,0.0082783978432417]],[[0.083932764828205,-0.09928023070097,0.049029275774956],[0.072293922305107,-0.1572368144989,-0.14431585371494],[0.0264578089118,0.051493290811777,-0.041995342820883]],[[-0.018464351072907,0.038410611450672,0.15273207426071],[-0.091430097818375,-0.28201460838318,0.093399122357368],[-0.061324037611485,0.049016200006008,-0.12658102810383]],[[0.090664125978947,0.16474397480488,-0.030422490090132],[0.0024537446442991,0.22050796449184,0.066308289766312],[-0.034208111464977,0.025277774780989,-0.081951938569546]],[[0.076704427599907,-0.040202409029007,0.14169526100159],[-0.04183379560709,0.074070937931538,-0.030270596966147],[0.018646597862244,-0.054300867021084,0.020895253866911]],[[0.027236135676503,0.096997775137424,0.048539489507675],[0.0084203742444515,0.024258298799396,-0.027133535593748],[0.10988122969866,-0.076524548232555,-0.128737449646]],[[0.020326541736722,-0.010302369482815,0.073948718607426],[-0.10171394050121,-0.058267284184694,0.076063431799412],[-0.086602859199047,-0.16787040233612,-0.0086581679061055]],[[0.024345407262444,0.10653863847256,0.10827931016684],[0.051930788904428,-0.026259947568178,0.015566697344184],[-0.026080777868629,0.051109552383423,-0.03057961165905]],[[-0.054348349571228,0.04556643217802,-0.10061031579971],[-0.091452240943909,-0.053617369383574,0.018385933712125],[-0.073117583990097,-0.11067285388708,-0.1474120169878]],[[-0.13238187134266,0.024793503805995,0.095787927508354],[-0.042842134833336,-0.058288302272558,0.17202170193195],[0.10558139532804,-0.1240905597806,0.0021553752012551]]],[[[-0.10823383927345,0.11011383682489,-0.017279155552387],[0.045812878757715,0.18418644368649,-0.0049134651198983],[-0.17427158355713,0.099179781973362,-0.087137334048748]],[[-0.10286074876785,0.0060077332891524,-0.044806841760874],[0.043379195034504,-0.06582310795784,0.037486504763365],[-0.053725618869066,-0.062619641423225,0.010069894604385]],[[-0.1965030580759,0.21501469612122,-0.071048572659492],[-0.24223999679089,0.039476931095123,0.024375002831221],[-0.04513530805707,0.081213220953941,0.10423891991377]],[[-0.08162484318018,-0.2652722299099,-0.14983285963535],[-0.15172727406025,-0.16610923409462,-0.1747151017189],[-0.056766539812088,0.0064089554361999,-0.23312182724476]],[[-0.012962280772626,0.0078318463638425,0.033193245530128],[-0.12412374466658,-0.11249827593565,0.031373795121908],[0.045896101742983,0.0078004263341427,0.077375754714012]],[[0.044539052993059,0.10575435310602,-0.11725501716137],[-0.076128900051117,0.051283165812492,-0.052747920155525],[-0.15372179448605,-0.017590243369341,0.040239572525024]],[[-0.14130674302578,0.036016248166561,0.16951510310173],[0.19868768751621,0.076607570052147,0.037402436137199],[-0.10358899831772,-0.12614369392395,-0.097258403897285]],[[-0.028296319767833,-0.033451411873102,0.059482671320438],[0.058323975652456,0.042030148208141,-0.033904034644365],[-0.077584266662598,0.12804706394672,-0.098830416798592]],[[-0.13976287841797,-0.041210990399122,-0.05305315181613],[0.12349127233028,0.054318744689226,0.022712975740433],[-0.14156313240528,-0.082822158932686,0.042899530380964]],[[-0.24222131073475,0.20839047431946,0.16130872070789],[-0.11516010761261,0.095306426286697,-0.075672470033169],[-0.013939970172942,-0.021293196827173,-0.0055554783903062]],[[-0.012251434847713,-0.097056992352009,-0.015413271263242],[-0.11738879233599,0.019327450543642,0.029994921758771],[-0.006796246394515,0.10077148675919,-0.077785484492779]],[[-0.13697472214699,-0.15560108423233,0.093140035867691],[-0.091177202761173,0.14465847611427,-0.0057572699151933],[0.083923630416393,-0.028923215344548,0.087941482663155]],[[0.027001813054085,-0.042685143649578,0.0030922971200198],[-0.028570387512445,0.11359827965498,0.0081748021766543],[-0.068837031722069,-0.01976858265698,0.20458881556988]],[[0.012762848287821,-0.082065530121326,0.0059067774564028],[0.21413169801235,-0.015309810638428,0.082798577845097],[-0.13415928184986,-0.07664942741394,0.035833984613419]],[[0.081018380820751,-0.039462491869926,-0.095061630010605],[0.0080245397984982,0.021414767950773,-0.0081272711977363],[-0.052412424236536,-0.071183241903782,-0.069332532584667]],[[0.099904142320156,-0.15939016640186,-0.1009729206562],[0.030366199091077,-0.074537143111229,-0.036252353340387],[-0.043009947985411,0.10358817130327,0.13248935341835]],[[-0.083697997033596,-0.18214511871338,-0.089684806764126],[-0.021734867244959,0.086082741618156,0.14582945406437],[0.1188081279397,0.006007082760334,0.042313616722822]],[[0.13420337438583,-0.094278708100319,-0.12383832037449],[0.058123599737883,0.095305502414703,-0.042103640735149],[0.036701839417219,0.040081229060888,0.12523743510246]],[[0.064306996762753,-0.040449228137732,0.30091419816017],[0.12977093458176,-0.14139232039452,-0.11670473963022],[0.10534451156855,0.058304909616709,0.064851507544518]],[[-0.052060514688492,-0.35610371828079,-0.066376894712448],[-0.020744539797306,-0.17280416190624,-0.10267036408186],[0.098492071032524,-0.25658771395683,0.10540284216404]],[[-0.071224957704544,-0.030188618227839,0.080827310681343],[0.24980622529984,-0.030867636203766,-0.092371046543121],[-0.10445470362902,0.051353391259909,-0.10967336595058]],[[0.17396374046803,0.16673877835274,-0.060675770044327],[-0.19751013815403,-0.042642913758755,-0.16305170953274],[-0.10866226255894,-0.16327609121799,-0.11396819353104]],[[0.22641685605049,-0.0087186694145203,0.095266237854958],[-0.050553906708956,-0.12411937117577,-0.13291259109974],[0.061945211142302,0.11481460183859,0.16935327649117]],[[0.032636217772961,-0.023078501224518,-0.17070479691029],[-0.15039169788361,0.094816252589226,-0.089882232248783],[0.034552987664938,0.041017718613148,-0.016142994165421]],[[-0.16157950460911,-0.0033759737852961,-0.021947275847197],[-0.12267796695232,-0.13121418654919,0.17370900511742],[0.10477402806282,-0.18994767963886,0.1049082800746]],[[0.18808153271675,0.094390571117401,-0.15276700258255],[0.27497723698616,0.013713931664824,-0.019799765199423],[0.096170410513878,-0.03957711905241,0.11600064486265]],[[-0.27197131514549,-0.00089764792937785,-0.022652231156826],[-0.34624123573303,0.066729165613651,-0.071534350514412],[-0.16227436065674,0.19227778911591,-0.14162983000278]],[[-0.021410971879959,0.016839385032654,-0.016023924574256],[-0.099364288151264,0.1569504737854,-0.018953343853354],[-0.075580656528473,-0.014357800595462,-0.068285949528217]],[[-0.03666465729475,0.083223350346088,0.22456441819668],[-0.031248455867171,-0.15614204108715,-0.064140245318413],[-0.051783047616482,0.12329430133104,-0.1494227796793]],[[0.075551457703114,0.14278553426266,-0.030560923740268],[0.004092653747648,0.044709227979183,0.044048972427845],[-0.13027080893517,0.034570682793856,-0.011081798002124]],[[0.066629700362682,-0.14722952246666,-0.063187062740326],[0.16212700307369,-0.12646496295929,0.095727920532227],[0.045647036284208,0.0002031963376794,0.043272770941257]],[[0.011168052442372,-0.069393396377563,0.071175135672092],[-0.042880497872829,0.011772424913943,-0.01114500593394],[0.033794831484556,-0.16483946144581,-0.1430359184742]]],[[[-0.085910625755787,-0.089505515992641,-0.024497473612428],[-0.14838337898254,-0.32120832800865,0.11376149207354],[-0.091028429567814,-0.16857224702835,0.15775361657143]],[[-0.11209522932768,-0.011377923190594,-0.032546129077673],[0.072432972490788,-0.063458733260632,0.090611778199673],[0.00082004134310409,0.038501229137182,0.11144459992647]],[[-0.052258387207985,0.080576226115227,0.068517751991749],[0.006640488281846,-0.068057388067245,-0.1109189465642],[-0.019496215507388,0.041145119816065,-0.027181008830667]],[[-0.020109619945288,0.0052124699577689,0.12331806868315],[-0.28913676738739,-0.22162050008774,-0.033956203609705],[0.021417491137981,0.079612195491791,0.069416418671608]],[[-0.058081746101379,-0.1418375223875,0.095666021108627],[-0.25463131070137,0.023168111220002,0.1033491268754],[-0.12251382321119,0.089579403400421,0.029359372332692]],[[0.14852534234524,0.13964504003525,0.050613466650248],[-0.075730696320534,0.037437371909618,-0.14563149213791],[0.11973176896572,-0.034393813461065,-0.25016868114471]],[[0.02591110393405,0.097693532705307,0.044494464993477],[-0.031228119507432,-0.071341969072819,-0.12868347764015],[-0.052765779197216,-0.1303728222847,-0.011197946034372]],[[0.086364164948463,-0.089345440268517,-0.10124003142118],[-0.03085895627737,-0.13190719485283,0.010262035764754],[0.062111865729094,-0.041257839649916,0.13785760104656]],[[-0.050490360707045,0.065807640552521,0.035140711814165],[0.0054528079926968,-0.16174420714378,-0.083541736006737],[-0.063165232539177,0.072741478681564,0.15802524983883]],[[-0.16535107791424,-0.055985700339079,-0.012447784654796],[0.079399399459362,0.10957249253988,-0.027771143242717],[0.09978885948658,0.17470487952232,-0.042477771639824]],[[-0.037920262664557,-0.10577087104321,-0.26431527733803],[0.081348143517971,0.095802873373032,0.0066823624074459],[0.047302573919296,0.16571274399757,0.15785001218319]],[[0.023820169270039,0.0060148201882839,0.053372628986835],[0.093850396573544,-0.10362888127565,-0.1533814817667],[0.12085698544979,-0.053453609347343,0.038697388023138]],[[-0.22356505692005,-0.06427139788866,-0.060793485492468],[0.026546791195869,-0.13647475838661,0.10112552344799],[-0.064700484275818,0.0096539007499814,0.27615103125572]],[[0.12489788234234,0.14974492788315,-0.028206314891577],[-0.04589120298624,-0.012914419174194,-0.09791724383831],[-0.010450280271471,-0.16458414494991,-0.15059553086758]],[[0.015271014533937,0.1832399815321,0.15952585637569],[0.05316286534071,-0.095527075231075,-0.023602455854416],[0.085785336792469,-0.1718942373991,-0.19897708296776]],[[0.078849956393242,0.075313866138458,0.082366108894348],[-0.14139381051064,-0.071401499211788,0.098449982702732],[-0.10725882649422,0.11715184897184,-0.075046703219414]],[[0.047050833702087,0.028599431738257,0.042878415435553],[0.10626987367868,0.14296022057533,0.03419404104352],[0.09004370123148,-0.0025581556838006,-0.14083018898964]],[[0.085072353482246,-0.25236836075783,-0.088190637528896],[0.059217061847448,-0.019336411729455,0.014979691244662],[-0.016833048313856,-0.03161833435297,0.12413913756609]],[[0.35483974218369,-0.023533694446087,-0.1035597845912],[0.17789472639561,0.13901001214981,-0.0035403415095061],[-0.053250391036272,0.043774176388979,-0.026388518512249]],[[-0.17861421406269,0.061288576573133,-0.082111962139606],[-0.11055491119623,-0.20066669583321,-0.11574240773916],[-0.062051564455032,-0.088473916053772,0.033525582402945]],[[-0.057997450232506,-0.20319499075413,-0.072450004518032],[-0.11124858260155,-0.1584634333849,0.039098344743252],[0.12454845011234,0.12889024615288,0.20879489183426]],[[-0.0037097944878042,-0.11482172459364,0.0082433111965656],[-0.0018831213237718,-0.021932616829872,0.10243706405163],[0.057267338037491,-0.10957028716803,-0.00095009262440726]],[[-0.054482780396938,0.081564873456955,0.009717901237309],[-0.043825928121805,-0.10969042778015,-0.046189729124308],[-0.0094425305724144,-0.12901282310486,0.12772050499916]],[[-0.10322950780392,-0.065949432551861,-0.021004788577557],[-0.10019019991159,-0.072363533079624,-0.072244748473167],[-0.092945739626884,-0.050833653658628,0.15045881271362]],[[-0.066652148962021,0.041378621011972,-0.034940332174301],[-0.032787874341011,-0.03516173735261,-0.027760650962591],[0.09615682810545,0.056253187358379,0.0023975151125342]],[[-0.083041191101074,0.12227170914412,0.10888694226742],[-0.05682585015893,-0.1878125667572,-0.080029189586639],[-0.065060302615166,-0.09697750210762,-0.0994623452425]],[[0.098184078931808,0.0054065268486738,-0.1245950460434],[0.044690500944853,-0.31589755415916,0.051121186465025],[0.072982713580132,-0.1645128428936,-0.055537410080433]],[[0.065976172685623,-0.088301852345467,0.032472178339958],[-0.17686587572098,0.20616406202316,-0.12915782630444],[0.003064937889576,-0.04052184894681,0.089784875512123]],[[0.073743246495724,-0.017755281180143,0.022247878834605],[-0.04506029933691,0.053866498172283,0.073013514280319],[0.023904178291559,-0.20307223498821,-0.0009908425854519]],[[0.052031200379133,0.089981898665428,0.009772714227438],[-0.13959170877934,0.13387979567051,-0.027182910591364],[-0.22137349843979,-0.19608226418495,0.061315648257732]],[[-0.19384828209877,-0.024267299100757,0.035316299647093],[-0.1283810287714,-0.065196864306927,-0.013265693560243],[0.12131997197866,0.052748218178749,0.11395664513111]],[[-0.07267452031374,-0.086053088307381,-0.096351213753223],[0.00097152515081689,-0.11097404360771,0.024697054177523],[6.0974118241575e-05,0.12831124663353,0.085336223244667]]],[[[-0.076420955359936,-0.10285971313715,0.063595607876778],[0.074175663292408,-0.07712596654892,-0.09415028244257],[0.08694801479578,0.080470748245716,-0.0002843159600161]],[[-0.045880533754826,-0.18142853677273,-0.020850196480751],[-0.16901485621929,-0.19930319488049,-0.22655603289604],[-0.06965197622776,-0.19469103217125,-0.063489228487015]],[[-0.12951616942883,0.0657699406147,0.032405838370323],[0.1501167267561,-0.0094405589625239,-0.032127901911736],[-0.0048411786556244,0.022774579003453,-0.020803915336728]],[[-0.027629982680082,0.052126489579678,0.068382725119591],[-0.093239270150661,-0.16236336529255,0.094666458666325],[0.045524779707193,-0.11800882965326,-0.054907031357288]],[[-0.14372509717941,-0.030860926955938,-0.064270295202732],[-0.067916817963123,-0.13113778829575,-0.15141707658768],[-0.10464512556791,-0.017821786925197,0.020759854465723]],[[0.1093825250864,-0.072772733867168,0.096024259924889],[0.094777531921864,0.14320728182793,0.038423132151365],[-0.057990219444036,0.19003686308861,0.044315874576569]],[[-0.0030502639710903,-0.0058901491574943,0.080952517688274],[0.01706026494503,-0.054961141198874,0.045664437115192],[0.11305347084999,-0.15272743999958,-0.072825223207474]],[[-0.057769231498241,0.094885990023613,0.088970936834812],[-0.0082118483260274,-0.05077100917697,-0.011593416333199],[0.019670158624649,0.073003694415092,-0.0042183576151729]],[[0.0093472301959991,0.056102823466063,-0.067088805139065],[-0.018606662750244,0.0012639245251194,-0.056986719369888],[-0.088721111416817,0.071550890803337,0.011075692251325]],[[0.0042143608443439,-0.089709773659706,-0.053152732551098],[-0.0078092301264405,0.06149024143815,-0.094510994851589],[0.027203626930714,-0.19297313690186,-0.075565986335278]],[[-0.023058749735355,0.04722048714757,0.083160512149334],[0.03566025197506,0.10254996269941,0.0089762583374977],[-0.065547160804272,0.021065406501293,-0.034770246595144]],[[0.016806995496154,-0.031716417521238,-0.038217093795538],[0.1978807747364,-0.031777057796717,-0.18527817726135],[0.064340740442276,0.0049866470508277,-0.053141538053751]],[[0.084888219833374,-0.083245500922203,-0.023910634219646],[-0.13108940422535,-0.0047810962423682,-0.35144302248955],[-0.070199571549892,0.076296553015709,-0.13242426514626]],[[-0.14435543119907,0.049536865204573,0.04885421693325],[-0.074956014752388,0.027963425964117,-0.092232346534729],[-0.096961170434952,0.12348669022322,0.10523587465286]],[[-0.01041744928807,-0.18152536451817,0.006983598228544],[-0.0422428175807,-0.03388249501586,0.012780707329512],[0.034989394247532,-0.039258200675249,0.1964673101902]],[[-0.014125143177807,-0.026915954425931,0.00018191515118815],[-0.066271148622036,0.065091706812382,-0.037161879241467],[-0.0030373991467059,-0.022048918530345,0.075374767184258]],[[0.023206144571304,0.057796973735094,0.069410160183907],[0.020556800067425,-0.1546003818512,-0.068991914391518],[0.067051514983177,0.11569485068321,-0.059367679059505]],[[-0.061455737799406,-0.040751378983259,-0.030217492952943],[0.02435364574194,-0.15128523111343,0.014003588818014],[-0.057989627122879,-0.064694806933403,-0.084497638046741]],[[0.075186967849731,0.10758892446756,0.04060123115778],[-0.011291141621768,-0.0082013048231602,-0.047592092305422],[-0.1587650924921,0.12928435206413,-0.048180192708969]],[[-0.14210565388203,0.13225200772285,0.0029013433959335],[-0.030572419986129,0.15115956962109,0.035177029669285],[-0.10763764381409,-0.0062099089846015,0.011250453069806]],[[0.016873639076948,0.024237120524049,0.090479299426079],[-0.1013630181551,-0.0072063407860696,-0.10621105134487],[0.11411265283823,0.13115227222443,0.039027117192745]],[[0.039457779377699,-0.041000444442034,-0.057758141309023],[-0.14896929264069,0.046026855707169,0.045166969299316],[-0.05324937030673,-0.073589719831944,0.16307896375656]],[[-0.057686325162649,-0.077548198401928,-0.057571746408939],[0.030060853809118,-0.070251308381557,0.13721054792404],[0.066987484693527,0.10039215534925,-0.075030788779259]],[[0.050062455236912,0.061086911708117,0.04121957719326],[-0.0031212349422276,0.13696275651455,0.019130947068334],[-0.20067483186722,0.047514982521534,0.010229392908514]],[[-0.068174369633198,0.035161934792995,-0.053428243845701],[0.012497588992119,0.078979961574078,-0.080320157110691],[0.035354699939489,0.10067847371101,0.026071455329657]],[[-0.0026435058098286,0.1265706717968,0.019836759194732],[-0.08394455909729,0.042122773826122,0.024863034486771],[0.035723067820072,-0.0019496969180182,-0.10478519648314]],[[0.15846125781536,-0.052955534309149,-0.078047759830952],[0.12537004053593,-0.10172186046839,-0.025539487600327],[0.070959821343422,0.099050879478455,0.052873119711876]],[[0.028680605813861,-0.085506595671177,-0.038382459431887],[0.02532197535038,-0.061155084520578,0.05215135216713],[-0.0043906616047025,0.03696783259511,0.097097590565681]],[[-0.029406359419227,0.024776812642813,0.11077278852463],[-0.10951894521713,-0.092852056026459,0.066128328442574],[0.070920750498772,0.022506587207317,-0.081667810678482]],[[0.037854716181755,-0.071957364678383,-0.0115907182917],[0.013790175318718,0.052241697907448,0.061114281415939],[0.096037089824677,0.034996867179871,-0.068570986390114]],[[-0.026935838162899,0.0075612533837557,-0.12952092289925],[0.096086114645004,-0.035046923905611,-0.014808744192123],[0.063451364636421,0.003852853551507,0.01403252594173]],[[0.059399239718914,0.13412326574326,-0.10452964901924],[0.1064465790987,-0.12318713963032,-0.24436287581921],[-0.034748889505863,0.023369705304503,-0.11505611240864]]],[[[-0.15709359943867,-0.16674157977104,-0.05590970441699],[-0.13543184101582,-0.29977157711983,0.0062281205318868],[0.095692537724972,0.048712328076363,-0.0073011335916817]],[[-0.114182472229,0.17117288708687,-0.16362671554089],[0.061036869883537,0.086477436125278,0.08730099350214],[-0.098054632544518,0.044709827750921,0.027806852012873]],[[-0.3351879119873,-0.077135987579823,0.16024035215378],[0.035597961395979,-0.052453733980656,-0.066443227231503],[0.0035931637976319,0.12494789808989,0.030156813561916]],[[0.067569173872471,-0.0053772404789925,-0.018583318218589],[-0.037855040282011,0.17567348480225,-0.15081702172756],[-0.11440838128328,-0.28784638643265,-0.14450035989285]],[[0.04728902131319,-0.048086076974869,-0.065657138824463],[0.074945516884327,-0.13974425196648,-0.089857883751392],[-0.053004384040833,0.1081168204546,-0.050702691078186]],[[0.01037394721061,-0.10129627585411,0.077279105782509],[0.10636422038078,0.07378151267767,-0.16296431422234],[-0.15148815512657,0.06537014991045,0.10778267681599]],[[-0.046142172068357,0.0039634383283556,-0.18323653936386],[0.11161398887634,-0.083803713321686,-0.040969345718622],[0.12252298742533,-0.10332191735506,0.12676599621773]],[[0.19945156574249,-0.0071841767057776,-0.082328654825687],[0.20958411693573,-0.15207821130753,-0.38622182607651],[0.14671021699905,0.042781483381987,-0.052868124097586]],[[-0.01880369335413,0.083610340952873,0.17255532741547],[0.015309070236981,-0.19698353111744,-0.012782000936568],[-0.093866497278214,-0.071848273277283,0.11079312115908]],[[-0.069391816854477,-0.16650187969208,0.035584080964327],[-0.0072251800447702,0.057221479713917,0.19262136518955],[-0.058767214417458,0.011673518456519,0.17476388812065]],[[-0.040498789399862,-0.02805732190609,-0.13630579411983],[0.0046270140446723,-0.054123159497976,0.20782959461212],[0.18285104632378,-0.10035209357738,0.039519611746073]],[[-0.13830982148647,0.18254537880421,-0.026519941166043],[-0.0037412832025439,-0.012418673373759,-0.10711349546909],[-0.13221994042397,-0.0053704837337136,-0.0022002791520208]],[[-0.066957406699657,-0.1436148583889,-0.1593211889267],[0.053042262792587,0.022131938487291,-0.35666337609291],[0.052739731967449,-0.0085099563002586,0.17005780339241]],[[0.11400650441647,0.021532008424401,-0.11790067702532],[-0.037068419158459,0.0097196437418461,-0.10800691694021],[0.12717519700527,-0.0037244439590722,-0.12879994511604]],[[-0.012578654102981,0.0090402355417609,-0.035270553082228],[0.0057109766639769,0.057580925524235,0.041174542158842],[0.061000816524029,-0.13644932210445,-0.22543004155159]],[[-0.034965686500072,-0.036103017628193,0.073883183300495],[0.1221474930644,0.04195274785161,0.13268405199051],[-0.12488719075918,0.047992218285799,0.028371440246701]],[[0.025877045467496,-0.11476370692253,0.12228284776211],[-0.0016448955284432,0.14592039585114,0.0092398580163717],[0.062527664005756,-0.10887399315834,-0.092474870383739]],[[-0.10936475545168,0.062705330550671,0.019600156694651],[-0.068562619388103,-0.14800301194191,-0.13194037973881],[-0.10349807143211,0.06296231597662,0.054730869829655]],[[0.16316868364811,-0.10578667372465,-0.079376675188541],[0.005443767644465,0.12182066589594,0.12316833436489],[0.31097546219826,0.10423795878887,-0.0059265582822263]],[[0.14231397211552,-0.043450210243464,-0.21450446546078],[0.02576581761241,-0.080231286585331,-0.025823263451457],[0.23297527432442,0.069322310388088,0.032094456255436]],[[0.027876118198037,-0.17063376307487,0.20695374906063],[-0.18825677037239,-0.0046198926866055,0.052373643964529],[-0.23914933204651,0.056970275938511,-0.0046458677388728]],[[0.071104824542999,-0.032653514295816,-0.022208737209439],[-0.038501761853695,0.053669486194849,0.093048043549061],[0.019463073462248,0.025370590388775,0.016504412516952]],[[-0.033003658056259,-0.2010877430439,-0.12042504549026],[-0.052696891129017,-0.065081484615803,-0.127381041646],[0.012815967202187,0.12945367395878,-0.18096159398556]],[[-0.068185389041901,-0.050056964159012,-0.030577475205064],[0.11986907571554,-0.069953590631485,-0.18384791910648],[0.036762442439795,-0.04682981222868,-0.079185023903847]],[[-0.075528405606747,-0.010418801568449,-0.056626696139574],[-0.033748805522919,0.012059120461345,-0.077937409281731],[0.26216733455658,0.021489631384611,0.042613994330168]],[[0.093240991234779,0.14787451922894,0.048438459634781],[-0.010752009227872,0.021120330318809,0.042661748826504],[0.063695304095745,0.1595898270607,-0.20225255191326]],[[-0.12685237824917,0.12122291326523,0.18395695090294],[-0.042273506522179,0.034201096743345,0.070755861699581],[0.069635696709156,0.12424702942371,0.066347070038319]],[[-0.2636236846447,-0.10199891775846,0.22934217751026],[-0.068471223115921,0.22527429461479,-0.23351235687733],[0.023570340126753,-0.062615476548672,-0.035864133387804]],[[0.062701039016247,0.031247071921825,0.078548617660999],[0.043371874839067,-0.034244980663061,0.16873994469643],[0.10176577419043,-0.19163899123669,-0.059157390147448]],[[0.062199909240007,-0.13329774141312,-0.31979137659073],[-0.1706719994545,0.060862984508276,0.091085635125637],[-0.058084309101105,0.00040325860027224,-0.02285167016089]],[[0.014566441066563,-0.00087497505592182,0.034750699996948],[0.0023270596284419,0.050810858607292,-0.20437379181385],[-0.13442023098469,-0.1437956392765,-0.032010298222303]],[[0.044864252209663,0.1497927159071,-0.0054986076429486],[-0.13108663260937,0.053637534379959,0.0014381064102054],[0.012728142552078,-0.1051382496953,-0.09223435074091]]],[[[0.1246552169323,-0.078462295234203,-0.058504920452833],[0.048333819955587,0.013409424573183,0.076247595250607],[-0.088251948356628,-0.032921154052019,-0.0031980932690203]],[[-0.050122682005167,-0.0054977689869702,0.074527323246002],[0.038355816155672,-0.076986342668533,-0.064960993826389],[0.10202609747648,0.20303778350353,-0.10385911166668]],[[-0.098643928766251,-0.033723369240761,-0.039458259940147],[0.034474585205317,-0.032914072275162,0.020506802946329],[-0.04172994568944,-0.090113393962383,0.00074998091440648]],[[-0.14482817053795,0.021257031708956,0.070427589118481],[-0.10323163866997,-0.10380060970783,0.022701997309923],[0.079652518033981,-0.00078547763405368,-0.094324246048927]],[[0.087760768830776,0.10394582897425,-0.12640459835529],[0.077225968241692,0.070949383080006,0.018536856397986],[-0.12160138785839,0.076704040169716,0.047834150493145]],[[0.0087703075259924,0.041468247771263,-0.016555577516556],[-0.12013255804777,-0.078888930380344,-0.013079181313515],[-0.18316961824894,0.00909907463938,0.18265676498413]],[[0.14583002030849,-0.10720907151699,-0.0168537478894],[0.16959455609322,-0.073518432676792,-0.087795160710812],[0.05533205345273,-0.14293441176414,-0.068566136062145]],[[0.10821285843849,0.063788995146751,-0.13244105875492],[0.16106580197811,0.03817330300808,-0.13147182762623],[-0.16995397210121,0.00024146237410605,0.060308955609798]],[[0.00044118569348939,0.15109246969223,0.13225227594376],[0.0011940556578338,-0.1935161948204,0.0050385966897011],[0.074268542230129,0.039217211306095,-0.10781889408827]],[[0.010842152871192,-0.043545011430979,-0.099281013011932],[0.017140481621027,0.080859713256359,-0.14322796463966],[0.080071441829205,-0.017646828666329,-0.01364597864449]],[[-0.036217089742422,0.0062838373705745,0.00821025762707],[-0.093887500464916,0.068349555134773,0.042631082236767],[-0.050056222826242,0.034656524658203,0.20968294143677]],[[0.002071869559586,-0.036702990531921,-0.047649178653955],[0.0014489934546873,-0.01774163544178,-0.015542668290436],[0.0071816863492131,-0.1990132778883,0.1154753267765]],[[0.02946088463068,-0.059141550213099,-0.1220838278532],[0.12870195508003,0.22930963337421,-0.23506267368793],[-0.051141139119864,0.12300376594067,-0.21068131923676]],[[-0.018381671980023,0.18796026706696,0.24404588341713],[-0.14140632748604,0.11356662213802,0.054661501199007],[-0.031664501875639,-0.079906143248081,0.051224295049906]],[[-0.13945296406746,0.014838732779026,0.0377894975245],[-0.11847583949566,-0.44156074523926,-0.0089054517447948],[-0.094879969954491,-0.029210874810815,0.074133388698101]],[[0.002814176492393,0.017589401453733,-0.010257043875754],[0.010160642676055,0.048024997115135,0.17209151387215],[-0.11856730282307,-0.010329247452319,-0.019406592473388]],[[-0.019690273329616,-0.019962592050433,0.053105980157852],[-0.010716564953327,0.010096629150212,0.098980605602264],[-0.039278779178858,-0.22771292924881,0.014516151510179]],[[0.16998040676117,-0.049151185899973,-0.053121816366911],[0.088618576526642,-0.082100979983807,-0.17439721524715],[0.068134106695652,-0.14951705932617,-0.092972226440907]],[[-0.1694126278162,-0.14357069134712,-0.078229427337646],[-0.015402848832309,-0.11946105957031,-0.062178649008274],[-0.014058899134398,-0.017284078523517,0.07234014570713]],[[0.062548227608204,0.016540221869946,-0.043343428522348],[0.27872410416603,-0.13932812213898,0.020402839407325],[0.027509922161698,0.015277788974345,-0.011231468059123]],[[0.021055852994323,0.093896441161633,-0.11011542379856],[0.15845039486885,-0.28344732522964,-0.10500648617744],[0.15428473055363,-0.19871473312378,-0.10548360645771]],[[-0.011464794166386,-0.049544118344784,0.010890337638557],[-0.087457232177258,-0.10543326288462,0.056116700172424],[-0.11071145534515,-0.055753510445356,0.05997883155942]],[[-0.059405263513327,-0.057220693677664,-0.055592335760593],[-0.089474603533745,0.075116448104382,0.071493856608868],[-0.0087395748123527,0.038927502930164,0.028211202472448]],[[0.064048156142235,0.00017028555157594,0.025246907025576],[0.15277227759361,0.0031011989340186,0.14684642851353],[0.02082372456789,-0.13987931609154,0.080132588744164]],[[-0.023146640509367,0.07063202559948,-0.016282336786389],[-0.051211383193731,-0.084132127463818,-0.0021810729522258],[-0.0049429624341428,0.15612874925137,0.0045342911034822]],[[0.011943585239351,0.043499488383532,-0.0019303850131109],[0.01858382858336,0.13469305634499,0.067421659827232],[0.021022608503699,0.0051473956555128,0.022275971248746]],[[-0.17478594183922,-0.14375498890877,-0.077112272381783],[-0.061759706586599,-0.14170184731483,-0.24858826398849],[0.10471490770578,-0.080343060195446,-0.16504976153374]],[[-0.004294375423342,-0.22871786355972,-0.084593430161476],[-0.21996358036995,-0.2793305516243,0.031578220427036],[-0.045865401625633,0.056589022278786,-0.045280121266842]],[[-0.10466071218252,-0.13511203229427,-0.096130028367043],[-0.024298509582877,0.20016583800316,-0.079859420657158],[0.090768903493881,-0.087360642850399,0.11526115983725]],[[-0.030959142372012,-0.098209410905838,0.11237041652203],[-0.092222206294537,0.027255857363343,-0.026183903217316],[-0.13705721497536,-0.09127613902092,-0.10854913294315]],[[-0.043645087629557,-0.16697686910629,-0.055323306471109],[0.091336622834206,-0.041849974542856,-0.15440139174461],[0.019183658063412,0.047376316040754,-0.13521413505077]],[[-0.11354487389326,-0.041555188596249,-0.030163958668709],[-0.066133268177509,-0.10724659264088,-0.17789503931999],[0.083045214414597,0.037306431680918,0.091774016618729]]],[[[-0.11964485049248,-0.154306396842,0.1724695712328],[-0.027503315359354,0.012758697383106,-0.01173432264477],[-0.073728293180466,-0.15361307561398,-0.16559146344662]],[[0.15770088136196,0.086405239999294,0.088198535144329],[0.059265393763781,-0.17326934635639,-0.033881533890963],[0.039827588945627,0.12849339842796,-0.0201405454427]],[[0.022006414830685,-0.045334845781326,-0.10264118015766],[-0.19292822480202,0.2054211050272,0.013575536198914],[-0.10081075876951,-0.028195533901453,0.2659093439579]],[[0.027257673442364,-0.10210111737251,0.066025085747242],[-0.0033601210452616,-0.19477044045925,-0.035822991281748],[0.24889376759529,-0.070241026580334,-0.10125834494829]],[[-0.033523630350828,0.18883763253689,-0.13322703540325],[0.081360906362534,-0.094843327999115,0.15351493656635],[0.057080775499344,0.10610069334507,0.022320838645101]],[[-0.095386892557144,-0.03073975071311,0.069411039352417],[0.023047810420394,-0.091109298169613,-0.076225712895393],[0.050643045455217,0.024229843169451,0.03896663710475]],[[-0.04329539835453,-0.090790338814259,-0.025256898254156],[0.073642358183861,0.046345949172974,0.019038297235966],[-0.067606404423714,0.06685446947813,0.2152034342289]],[[0.20101447403431,0.1576783657074,-0.058989714831114],[0.062552079558372,-0.014330947771668,0.1016218662262],[0.099385738372803,-0.23686346411705,-0.05028685182333]],[[-0.068582192063332,0.023971442133188,0.07923086732626],[-0.037665322422981,-0.049526702612638,-0.047127686440945],[0.10723243653774,-0.1702314466238,0.186728104949]],[[-0.14446510374546,-0.11047075688839,-0.019686488434672],[-0.056514915078878,0.039493449032307,0.0044264006428421],[0.1089850962162,0.069866687059402,0.0057939519174397]],[[-0.0743697732687,-0.12258392572403,0.088930562138557],[0.01241306681186,0.016585962846875,-0.1211579144001],[0.001423301640898,-0.043563485145569,0.17207293212414]],[[0.036517560482025,0.043965879827738,-0.28092616796494],[-0.04473052918911,-0.048238474875689,0.082705840468407],[-0.035251513123512,0.042535278946161,-0.0035296678543091]],[[-0.35284370183945,-0.092828623950481,0.23749695718288],[0.18795412778854,-0.56656926870346,-0.046157579869032],[0.13471744954586,0.14073783159256,0.13681487739086]],[[0.068296730518341,0.056891936808825,-0.062177535146475],[0.078660517930984,0.090425863862038,-0.081326819956303],[-0.012114599347115,-0.14496396481991,-0.1040330901742]],[[-0.041758120059967,0.015200016088784,-0.027086900547147],[-0.11241660267115,-0.037345375865698,0.19120207428932],[-0.10596759617329,0.22572280466557,-0.050627622753382]],[[-0.065807677805424,0.17902129888535,-0.00018056981207337],[0.03031824529171,-0.23029297590256,0.14406467974186],[0.083550237119198,-0.097084619104862,0.061488218605518]],[[0.14323553442955,0.013515594415367,-0.12752725183964],[0.0038526400458068,0.16205687820911,0.11595698446035],[0.021925538778305,-0.0033000798430294,0.14337357878685]],[[-0.33678063750267,-0.18988268077374,-0.083432279527187],[0.052864048629999,0.20931753516197,-0.087457865476608],[-0.1173592954874,-0.17699021100998,0.079760372638702]],[[-0.0214753318578,0.064683720469475,0.089801847934723],[-0.0031702020205557,0.15872628986835,0.14043278992176],[0.12769159674644,-0.13088728487492,-0.086457468569279]],[[0.12812301516533,0.022316200658679,-0.1221152022481],[-0.00042384973494336,0.09913694858551,-0.0091536594554782],[0.051816467195749,-0.17332778871059,-0.14174404740334]],[[-0.27838292717934,-0.037910919636488,-0.0079390862956643],[0.079501613974571,0.0044699688442051,-0.11128427833319],[0.070433348417282,-0.0064900857396424,0.024569027125835]],[[-0.032762296497822,-0.09182296693325,-0.064906261861324],[-0.11114568263292,0.036860998719931,-0.078569635748863],[-0.0098046455532312,0.017724610865116,0.13496722280979]],[[-0.068428814411163,-0.09895983338356,-0.031261883676052],[-0.0094217136502266,0.10965944081545,-0.078880362212658],[0.10123331099749,0.11775642633438,0.12084417790174]],[[0.14881230890751,-0.069389402866364,-0.15901546180248],[-0.11528360843658,0.065574966371059,-0.015968885272741],[-0.12662445008755,-0.073147289454937,0.015939306467772]],[[-0.12600499391556,0.034583490341902,-0.21653473377228],[-0.27193632721901,-0.01001351326704,0.0227240473032],[0.037525344640017,0.10185254365206,0.24635414779186]],[[-0.057574093341827,0.27663367986679,-0.043530534952879],[-0.093411765992641,-0.014836366288364,-0.07265879958868],[-0.066497884690762,0.1782568693161,-0.16071233153343]],[[-0.0055711222812533,-0.069632858037949,-0.10276233404875],[0.14559596776962,-0.060073554515839,0.11879001557827],[-0.1343844383955,0.025335485115647,0.0062540723010898]],[[-0.055899262428284,-0.15879167616367,0.05142717435956],[0.11415579169989,-0.066949523985386,0.18448370695114],[0.075952179729939,-0.012935201637447,-0.049008317291737]],[[-0.021351238712668,-0.024404054507613,0.00067761831451207],[-0.016850125044584,0.058627892285585,0.068885140120983],[0.019932042807341,0.10955625027418,0.01628146506846]],[[-0.1543410718441,-0.027374917641282,-0.024204142391682],[-0.18960343301296,-0.13798619806767,0.1154363900423],[0.055879332125187,0.0040614427998662,0.010597982443869]],[[-0.162392988801,-0.16806262731552,-0.12558889389038],[-0.10819737613201,-0.12401337176561,-0.031151553615928],[0.056536588817835,-0.026747938245535,0.11850569397211]],[[0.0067376121878624,0.17488466203213,0.014147846028209],[0.18086464703083,0.059454325586557,-0.10957910120487],[0.063865900039673,-0.09947531670332,0.10587860643864]]],[[[-0.024573938921094,-0.22669388353825,-0.14539571106434],[-0.024303236976266,0.091020226478577,-0.012349555268884],[0.055911656469107,0.092983178794384,0.044376101344824]],[[-0.032911036163568,0.061277445405722,0.097868457436562],[0.051442086696625,0.081377848982811,0.029314754530787],[0.017618240788579,-0.10753866285086,-0.20621201395988]],[[-0.037315968424082,-0.16720488667488,0.11829098314047],[-0.11487230658531,0.13116551935673,0.10031840950251],[-0.067026317119598,-0.036631755530834,-0.084957890212536]],[[0.071602545678616,-0.22900205850601,-0.036230992525816],[-0.11595164984465,-0.024663586169481,0.0065106600522995],[-0.37678772211075,-0.017717564478517,0.051469802856445]],[[0.031561858952045,0.059361681342125,-0.073445081710815],[-0.0014976419042796,-0.037511218339205,-0.084972620010376],[-0.012500080280006,-0.018583351746202,0.099169947206974]],[[-0.0061987433582544,-0.015642838552594,-0.20495679974556],[0.015354178845882,-0.10971765965223,-0.0037140611093491],[-0.041887957602739,0.20803259313107,0.14309932291508]],[[0.04406875744462,-0.057667396962643,-0.031274270266294],[-0.14852623641491,-0.079351387917995,0.068449854850769],[0.01421232521534,0.12019012123346,-0.0850989818573]],[[-0.0093102315440774,0.1827037781477,0.088768534362316],[0.0052487850189209,-0.22121788561344,-0.24664342403412],[-0.029061000794172,-0.034424174576998,0.098206497728825]],[[0.05162250623107,-0.061363529413939,0.020961325615644],[0.066130325198174,-0.080286875367165,0.15984965860844],[0.060350026935339,-0.11104260385036,-0.07752151787281]],[[0.16451582312584,0.11595205962658,-0.0064202481880784],[-0.0486661195755,-0.066113710403442,0.055970128625631],[-0.1123785302043,-0.12859429419041,0.042433697730303]],[[0.036292433738708,-0.094217151403427,-0.062277421355247],[-0.10050671547651,0.034988433122635,0.10489290207624],[-0.14246447384357,0.1280287951231,-0.025380430743098]],[[-0.024170909076929,-0.17320781946182,0.040515191853046],[-0.087114810943604,0.040284290909767,-0.024021105840802],[0.084316991269588,0.10314493626356,0.10656340420246]],[[0.068700477480888,0.019938066601753,0.037576656788588],[-0.080528482794762,0.22564950585365,0.098209783434868],[-0.051454626023769,-0.070483297109604,-0.18478202819824]],[[0.082545608282089,-0.41050133109093,-0.29715994000435],[0.19879788160324,0.20562437176704,-0.00086746033048257],[0.075273886322975,0.17156919836998,0.15411348640919]],[[0.10264000296593,-0.24994054436684,-0.31410712003708],[-0.0017849422292784,0.14615179598331,-0.11609358340502],[0.021184718236327,0.01428322866559,-0.025180656462908]],[[0.059213187545538,0.11348547041416,-0.040124528110027],[-0.10944905132055,-0.19128867983818,0.1298331618309],[-0.0047413306310773,0.12599369883537,-0.078998081386089]],[[-0.057489652186632,-0.15268509089947,-0.17252078652382],[0.015915060415864,0.0037043273914605,0.02272012270987],[0.038710340857506,0.095962285995483,0.015880949795246]],[[0.080482318997383,0.10204983502626,0.056383438408375],[-0.019332323223352,0.079396277666092,0.0044549498707056],[0.086089469492435,-0.077263928949833,-0.037691853940487]],[[-0.017857041209936,0.12971670925617,0.16232754290104],[-0.025128459557891,0.047313738614321,0.16938236355782],[0.00027491856599227,-0.0044674421660602,-0.03019411675632]],[[0.05563535541296,-0.0052826693281531,-0.09296241402626],[-0.050811383873224,-0.10754419118166,-0.012880388647318],[-0.10082064568996,0.030302973464131,-0.03930726647377]],[[-0.01720037125051,-0.056728452444077,0.11972071230412],[-0.049920439720154,0.15866486728191,0.049750175327063],[-0.11352455615997,0.026228817179799,-0.088146165013313]],[[0.035613942891359,0.010808625258505,0.15425558388233],[0.097567036747932,-0.1163007542491,-0.2954623401165],[-0.040555030107498,-0.035224616527557,0.11500230431557]],[[0.00077245314605534,0.076534286141396,-0.025390978902578],[-0.26516222953796,-0.12324373424053,-0.01138689275831],[0.0008223740151152,-0.036642618477345,0.087392747402191]],[[-0.22457472980022,0.17680586874485,0.17625072598457],[-0.011142015457153,0.05302806943655,-0.13457173109055],[0.0047286758199334,-0.027825638651848,0.032363325357437]],[[0.072937346994877,0.18771266937256,0.14489851891994],[-0.30317488312721,-0.15662574768066,0.10251875966787],[-0.095128484070301,-0.05032105743885,-0.13637380301952]],[[-0.061386838555336,-0.038086127489805,-0.27525758743286],[-0.013416803441942,0.031327091157436,0.11638380587101],[0.089872129261494,-0.035409763455391,0.086533777415752]],[[-0.050647892057896,-0.11885406076908,0.026346605271101],[0.0025323473382741,0.16292157769203,-0.23587095737457],[-0.0071973041631281,-0.11333139240742,0.032745972275734]],[[-0.1001108661294,-0.053247932344675,-0.091495797038078],[0.1364376693964,0.095914334058762,-0.069848716259003],[0.0064492137171328,0.061518561094999,-0.047507029026747]],[[0.034381214529276,0.089930683374405,-0.035523157566786],[0.00594219006598,-0.059602431952953,-0.17938256263733],[0.082610353827477,-0.11066371202469,0.017464365810156]],[[0.064926095306873,0.077124781906605,0.0089712385088205],[-0.12063058465719,-0.10096172988415,-0.026173336431384],[0.053810529410839,-0.013651741668582,-0.099516905844212]],[[-0.22424997389317,-0.19062824547291,-0.038541294634342],[0.049258284270763,0.16020730137825,0.028103951364756],[-0.022961374372244,-0.014257002621889,0.048263430595398]],[[-0.0071319150738418,0.0009735626517795,-0.007536037825048],[-0.047389935702085,0.070937223732471,0.087762877345085],[-0.0091450931504369,0.026437968015671,-0.15772527456284]]],[[[-0.074582517147064,0.10892543941736,-0.019602689892054],[0.1101394072175,0.069034285843372,-0.0073809367604554],[-0.089601211249828,0.032954040914774,0.023977277800441]],[[0.034102492034435,0.10513361543417,0.082317493855953],[0.034935332834721,0.022791961207986,0.036166727542877],[-0.19463366270065,-0.042974568903446,0.06905797123909]],[[0.17634169757366,0.12726370990276,0.0034185466356575],[-0.084032230079174,0.028490262106061,0.055609963834286],[-0.11789520084858,0.024735637009144,0.013044153340161]],[[0.074810303747654,-0.004771132953465,0.073309920728207],[-0.24721989035606,0.27291479706764,0.0071324673481286],[-0.086464248597622,0.12913686037064,0.057895328849554]],[[0.054753847420216,-0.061070576310158,0.060559909790754],[-0.087543740868568,0.12513695657253,0.10847587138414],[-0.08459760248661,0.072286561131477,-0.0016939481720328]],[[-0.014338934794068,-0.036664836108685,0.038260608911514],[-0.10028605908155,-0.069401316344738,0.1182142496109],[0.055827304720879,-0.069315508008003,0.033310804516077]],[[0.042265549302101,0.05158318951726,0.045087363570929],[-0.030465885996819,0.17489542067051,0.19468148052692],[-0.0051071331836283,0.15321142971516,0.021517710760236]],[[0.23692460358143,-0.049542900174856,0.029948823153973],[-0.044043064117432,0.048784174025059,0.056086149066687],[-0.091902174055576,-0.0694410353899,-0.039443880319595]],[[-0.053043629974127,-0.015464617870748,0.048542160540819],[0.085950754582882,0.049050934612751,0.10433714836836],[0.062566094100475,-0.11074108630419,0.053577169775963]],[[-0.068864293396473,-0.059136193245649,0.01676919683814],[-0.06742699444294,0.053136188536882,0.077942058444023],[0.065190695226192,0.01206399127841,0.012390595860779]],[[-0.020544493570924,0.1484432220459,-0.0093731908127666],[-0.093064285814762,-0.010560912080109,-0.11331939697266],[-0.08621284365654,0.086844675242901,-0.076734736561775]],[[0.081221960484982,0.098171956837177,0.13151679933071],[0.071494437754154,-0.011847857385874,-0.17689110338688],[-0.00078415661118925,-0.071886122226715,-0.018083099275827]],[[0.0075347810052335,0.075679630041122,-0.040720831602812],[0.077007986605167,-0.0017176632536575,-0.051795531064272],[0.072875313460827,-0.1298416852951,-0.096172094345093]],[[0.12740354239941,-0.037977758795023,-0.032863955944777],[0.0016440644394606,0.06664165109396,0.040801905095577],[-0.033622857183218,0.091872863471508,0.041555777192116]],[[-0.018751764670014,0.10560008883476,0.036536931991577],[-0.040509041398764,0.15725304186344,-0.01066052634269],[-0.042430851608515,-0.022417826578021,-0.079231649637222]],[[0.14794462919235,-0.039793152362108,0.099230274558067],[-0.19558861851692,0.014279511757195,0.070781908929348],[-0.12782324850559,-0.041878625750542,-0.0097860293462873]],[[0.086646437644958,0.014682377688587,-0.042856633663177],[0.044979531317949,0.18891820311546,0.13309487700462],[-0.014924550428987,0.04582216963172,0.19962276518345]],[[0.0030650112312287,-0.11344694346189,0.10685025155544],[0.058861799538136,0.18180134892464,-0.047136392444372],[-0.046456292271614,0.089235246181488,-0.081796944141388]],[[-0.0090760439634323,0.036478523164988,0.13261340558529],[-0.079041518270969,0.271419942379,-0.20819611847401],[-0.079204961657524,-0.0076464894227684,-0.12430436164141]],[[0.043860178440809,0.11452363431454,0.15474842488766],[-0.0092738252133131,-0.036792874336243,-0.097119025886059],[-0.12647598981857,0.018993783742189,-0.075366422533989]],[[-0.05428383871913,0.15612123906612,0.010162334889174],[0.17595049738884,0.080947928130627,0.01298943720758],[-0.12482240051031,-0.068270929157734,-0.11406300961971]],[[0.032492212951183,0.28240782022476,-0.12802439928055],[0.043477449566126,0.13202184438705,0.042746260762215],[-0.16042350232601,0.15193201601505,0.13054548203945]],[[0.086991712450981,0.20230424404144,0.029171435162425],[-0.11556401848793,0.066086605191231,-0.023692546412349],[0.037731193006039,0.052211787551641,0.056124497205019]],[[-0.12844589352608,-0.040203142911196,-0.012419265694916],[-0.065306417644024,0.10108955949545,-0.059619836509228],[-0.06460552662611,-0.065170131623745,0.047921508550644]],[[-0.12047842890024,0.018168453127146,0.24044761061668],[0.01219938788563,-0.18476119637489,0.055929150432348],[-0.044361382722855,-0.040573053061962,-0.024069346487522]],[[0.069758109748363,0.1192429214716,0.052378695458174],[0.014341248199344,0.063242025673389,0.089260213077068],[0.096925109624863,0.052423313260078,-0.10990829765797]],[[0.038154549896717,0.13708101212978,-0.017272967845201],[0.020338224247098,-0.06536515802145,0.041868280619383],[0.053648915141821,0.0065439380705357,-0.0074470136314631]],[[0.049133334308863,0.041230548173189,-0.0032950378954411],[0.012140012346208,0.0017777633620426,-0.062300778925419],[0.020856037735939,0.023488216102123,-0.028353521600366]],[[0.025232259184122,0.0027451438363642,0.048183035105467],[-0.048883810639381,0.083214327692986,0.025135928764939],[0.0027662692591548,0.24071943759918,0.0047008232213557]],[[0.11716847866774,0.27684363722801,-0.063397370278835],[-0.032076753675938,-0.0012032475788146,0.060581993311644],[0.074059687554836,0.045494023710489,-0.013851506635547]],[[0.016186794266105,-0.066295757889748,0.0067615061998367],[0.10651537030935,0.11106912791729,0.029004132375121],[-0.043900884687901,0.17138049006462,0.00032902680686675]],[[0.07559859007597,-0.05257485806942,0.040545906871557],[-0.014760862104595,0.023699780926108,0.056458000093699],[-0.082587063312531,0.012101422995329,0.054182559251785]]],[[[-0.16480147838593,0.0082141505554318,0.1189701706171],[-0.083344876766205,0.040730468928814,-0.13295072317123],[0.001176553661935,0.099715150892735,-0.036531429737806]],[[-0.061123415827751,0.031856182962656,0.04558414593339],[0.088551327586174,0.01849877461791,-0.10952050238848],[-0.11606226116419,-0.094604790210724,-0.0013260381529108]],[[-0.060117233544588,-0.031706601381302,0.11076571792364],[0.09630011767149,0.012525785714388,0.037364985793829],[0.016666457056999,-0.036190833896399,0.012749464251101]],[[0.10402972251177,0.05067140609026,-0.030903907492757],[0.0011898213997483,0.30140113830566,-0.035344313830137],[-0.13187083601952,0.055002868175507,-0.0040595340542495]],[[-0.12439302355051,-0.13727800548077,-0.1999923735857],[-0.023462545126677,0.0042635528370738,0.062823869287968],[0.064624778926373,-0.090242564678192,-0.10333843529224]],[[0.038880817592144,0.17337971925735,0.065285325050354],[-0.06052865087986,0.17624889314175,0.12889643013477],[0.079125814139843,0.057522397488356,-0.015898188576102]],[[-0.088996760547161,0.03974924236536,0.022279635071754],[-0.062684282660484,0.083248920738697,0.086671620607376],[0.056697439402342,0.090558253228664,0.066891744732857]],[[-0.0039289933629334,0.0099165225401521,0.059455014765263],[-0.062328077852726,-0.041802890598774,0.034170504659414],[0.04626452550292,0.0665662586689,0.098187692463398]],[[0.070972949266434,-0.099214248359203,-0.028708776459098],[0.042980838567019,0.054613474756479,0.040891908109188],[-0.080601699650288,0.0095824161544442,-0.050813227891922]],[[-0.14032702147961,-0.094266042113304,0.013465600088239],[-0.064574204385281,-0.19980680942535,-0.076356813311577],[-0.049846239387989,-0.18465834856033,-0.016355082392693]],[[-0.10741562396288,0.1550107896328,0.07429812848568],[0.14508450031281,-0.090415790677071,0.069288849830627],[-0.084274612367153,0.077971465885639,-0.063665956258774]],[[-0.017173970118165,-0.073482550680637,0.058689247816801],[-0.028319263830781,-0.02415693923831,0.11764420568943],[0.045865476131439,-0.069991387426853,-0.0068125533871353]],[[0.0054223891347647,-0.011643729172647,0.077534779906273],[0.033676225692034,-0.062839604914188,0.026378205046058],[0.15797092020512,0.0011300696060061,0.098541930317879]],[[-0.21240150928497,0.023815641179681,0.17585402727127],[-0.023230459541082,0.1752510368824,0.045849330723286],[0.074446767568588,0.066508077085018,0.23776945471764]],[[0.022756574675441,0.04728089645505,-0.21342265605927],[-0.046202544122934,0.096016861498356,-0.0037774990778416],[-0.023822497576475,0.045742589980364,0.030934264883399]],[[0.041293118149042,0.074595354497433,-0.14093235135078],[-0.077213563024998,-0.055894780904055,-0.025827063247561],[0.18128103017807,-0.043302066624165,0.081323131918907]],[[-0.028890920802951,-0.04202127084136,0.10123785585165],[0.026356067508459,0.029803907498717,0.038848854601383],[-0.021573055535555,0.027332918718457,0.12227235734463]],[[0.021421086043119,0.14640244841576,0.1458645761013],[-0.00522719649598,0.073980055749416,0.042345814406872],[-0.002541967201978,0.075167924165726,0.090974099934101]],[[0.16772769391537,0.094873711466789,0.31585013866425],[0.073843240737915,0.14489810168743,0.087719954550266],[0.025142136961222,0.024685887619853,-0.06511427462101]],[[0.042757041752338,-0.21796092391014,0.047320660203695],[-0.070355229079723,-0.049649473279715,0.22231791913509],[-0.0062426412478089,0.11584673076868,0.12225102633238]],[[0.040628626942635,0.02391672693193,0.02521406672895],[-0.024513533338904,0.14919264614582,0.13804806768894],[-0.074088677763939,0.010536012239754,0.03238781914115]],[[-0.017491824924946,-0.018374236300588,0.073496766388416],[0.02912088111043,0.20467120409012,-0.048967752605677],[0.039040148258209,0.055453773587942,0.11856788396835]],[[0.11163423955441,0.11750323325396,0.17761282622814],[0.033854115754366,0.066317923367023,-0.051260501146317],[0.046806078404188,0.028431730344892,0.22862842679024]],[[-0.0094181289896369,-0.03378102555871,0.031965225934982],[0.030857481062412,0.052384663373232,0.10822885483503],[0.015159064903855,0.09697537124157,0.050125665962696]],[[-0.022939641028643,0.11574046313763,-0.013916180469096],[0.09640084952116,0.12553684413433,0.0051429988816381],[-0.039779830724001,-0.01601330190897,0.026054432615638]],[[0.11075963824987,-0.028380084782839,0.22954820096493],[0.10978964716196,0.062118642032146,0.07105765491724],[0.089594580233097,0.047431983053684,-0.010811561718583]],[[-0.0090705025941133,0.19003988802433,0.17483738064766],[0.081674560904503,-0.028943195939064,0.024956174194813],[-0.072946965694427,0.025820307433605,0.1235538944602]],[[-0.02766490355134,0.027887670323253,0.058292411267757],[0.068854533135891,0.056493628770113,0.025707000866532],[-0.11949455738068,-0.0057051503099501,-0.085695065557957]],[[0.0075358399190009,0.071739882230759,0.032942082732916],[0.1516607105732,-0.02460321970284,-0.014809360727668],[-0.090917006134987,-0.019472511485219,-0.10324349999428]],[[-0.080451369285583,0.047098636627197,0.029804021120071],[0.031538493931293,0.067336648702621,-0.032189201563597],[0.14767690002918,-0.031924977898598,-0.089375182986259]],[[0.070034772157669,0.10427931696177,0.048134718090296],[0.095652870833874,0.093930631875992,0.022986672818661],[-0.056233298033476,0.06033768504858,-0.058756496757269]],[[0.12501133978367,0.056211709976196,-0.076359130442142],[-0.061788778752089,-0.086026534438133,-0.16170650720596],[-0.012662462890148,0.045225709676743,-0.040922284126282]]],[[[-0.12714475393295,0.042849101126194,-0.077422685921192],[0.096246369183064,0.012651119381189,-0.097578376531601],[-0.12684385478497,-0.046644877642393,-0.054055117070675]],[[0.022248841822147,-0.11150132864714,0.086884804069996],[0.054936483502388,0.091801546514034,-0.043724570423365],[-0.05162663012743,0.018355995416641,0.082760840654373]],[[-0.083016864955425,-0.15781161189079,-0.074032485485077],[0.014395906589925,-0.32658708095551,0.018820999190211],[0.16072238981724,0.0026741547044367,-0.002068551024422]],[[0.016690278425813,-0.27659001946449,-0.041964765638113],[0.049172095954418,0.02851764857769,0.14331549406052],[-0.024086846038699,-0.028437985107303,0.17004942893982]],[[0.074591651558876,-0.20785880088806,-0.062330313026905],[-0.07141774892807,-0.02311853133142,-0.010043798945844],[0.13630056381226,-0.043091546744108,-0.08082040399313]],[[0.10666033625603,0.080254435539246,-0.067591331899166],[0.017463881522417,-0.13307046890259,0.037474054843187],[0.18538641929626,0.13775281608105,-0.17889542877674]],[[0.087587557733059,-0.32648786902428,0.050929665565491],[0.069032311439514,-0.16603465378284,-0.085843168199062],[-0.1180472895503,-0.39860469102859,0.019985819235444]],[[-0.060217350721359,0.032551128417253,0.12624238431454],[-0.044846273958683,-0.056003242731094,0.027837989851832],[-0.10159755498171,-0.05228316411376,-0.26574519276619]],[[-0.077033311128616,0.0010190033353865,-0.0023487471044064],[0.027206420898438,-0.067815162241459,0.038025826215744],[-0.040896195918322,-0.0047611463814974,-0.2619477212429]],[[-0.017329661175609,0.13327275216579,-0.044128853827715],[0.043943736702204,-0.070733301341534,0.012144218198955],[-0.037997432053089,0.080170527100563,-0.01768946647644]],[[-0.0030647600069642,-0.082237929105759,0.076077178120613],[0.015948448330164,-0.064898058772087,-0.043496534228325],[-0.06465221196413,-0.054456613957882,0.10609444230795]],[[0.082767352461815,-0.10959896445274,-0.099505051970482],[-0.03562605753541,-0.091384068131447,0.16169536113739],[0.25286942720413,0.057474222034216,0.12287223339081]],[[-0.059006199240685,-0.26795494556427,0.015224037691951],[0.34371691942215,0.052824549376965,-0.099558383226395],[-0.040308173745871,-0.17696841061115,0.065956503152847]],[[0.10055073350668,-0.092856653034687,-0.16218462586403],[0.071860745549202,0.11330968141556,-0.058691903948784],[-0.074681289494038,-0.12813556194305,-0.058312140405178]],[[-0.16193780303001,-0.2956283390522,0.052874714136124],[-0.067132487893105,0.23713845014572,-0.033148735761642],[0.26380077004433,-0.1786375939846,0.02208549529314]],[[-0.17176455259323,0.16328577697277,0.00012743097613566],[0.14692334830761,-0.14923836290836,0.14242103695869],[-0.20834197103977,0.053680028766394,-0.03643599152565]],[[0.092257238924503,0.22847716510296,-0.093448475003242],[-0.077814124524593,-0.020804485306144,-0.11224351078272],[-0.080451592803001,0.18990856409073,0.010745531879365]],[[-0.0035460372455418,-0.010885355994105,-0.17337633669376],[-0.29646724462509,-0.16694681346416,0.034626707434654],[-0.10771325975657,-0.34941127896309,0.027882130816579]],[[-0.01442860160023,0.10738153010607,-0.2318090647459],[-0.038984715938568,-0.024079667404294,-0.088741570711136],[-0.039680805057287,0.081535905599594,-0.12389351427555]],[[1.7564683730598e-05,-0.1010838970542,-0.12781377136707],[-0.33518561720848,-0.04839114099741,-0.18723756074905],[-0.0043199425563216,-0.13412128388882,-0.41909241676331]],[[-0.2458321005106,0.071928732097149,-0.039582498371601],[0.15659606456757,-0.030424453318119,-0.11070064455271],[0.15090979635715,-0.066500820219517,-0.029410449787974]],[[0.074282638728619,-0.071178875863552,-0.031424924731255],[-0.079564817249775,0.0076961740851402,0.16087172925472],[0.055417355149984,-0.18356218934059,0.12174461781979]],[[0.10402791947126,0.21018931269646,-0.06240863353014],[-0.002885366557166,-0.073505811393261,-0.088686138391495],[0.016512356698513,-0.074744313955307,0.073826059699059]],[[-0.023672048002481,0.13149480521679,0.060373801738024],[0.089129403233528,-0.1753663867712,0.0088141979649663],[-0.1991328895092,-0.049101416021585,0.10863296687603]],[[-0.0043793739750981,-0.031037064269185,0.15404970943928],[0.016187245026231,-0.096622414886951,-0.037380632013083],[-0.039801441133022,-0.0025775451213121,-0.086046800017357]],[[-0.081159763038158,-0.059632025659084,0.04270488768816],[-0.19504383206367,-0.04703488573432,0.027914255857468],[-0.18752025067806,-0.11564938724041,-0.10615727305412]],[[0.085454128682613,0.11024406552315,-0.054084300994873],[0.024049770087004,-0.25227791070938,-0.14921863377094],[-0.14829815924168,-0.12134286016226,0.025456395000219]],[[0.12721690535545,0.096454083919525,-0.26178595423698],[-0.05747040733695,-0.1580304056406,0.2244321256876],[-0.096297934651375,0.055347744375467,-0.17302137613297]],[[-0.024897754192352,0.00086796254618093,0.040577631443739],[-0.0094852847978473,-0.046089299023151,-0.061375625431538],[0.033880896866322,-0.075821802020073,-0.046228114515543]],[[-0.055014088749886,0.03367679938674,0.053206011652946],[-0.038210310041904,0.079990595579147,-0.19678680598736],[-0.15933738648891,-0.16898243129253,-0.11096530407667]],[[0.015655819326639,-0.050843596458435,-0.0083003425970674],[-0.088178619742393,0.10670627653599,-0.0077669401653111],[-0.13674880564213,0.055776115506887,0.036445524543524]],[[-0.0073154382407665,-0.036390028893948,0.14884394407272],[0.0093144718557596,-1.2061540473951e-05,-0.04918946698308],[-0.0079839089885354,0.028644869104028,-0.10446199774742]]],[[[0.016308948397636,0.053056180477142,-0.026702921837568],[-0.073075912892818,-0.10150254517794,0.072754211723804],[-0.020614925771952,-0.10421931743622,0.083174809813499]],[[0.16744321584702,-0.017736427485943,0.018318865448236],[0.085274130105972,-0.031616233289242,0.085699088871479],[0.035523880273104,0.027343099936843,-0.10568775236607]],[[-0.077842630445957,-0.05022956430912,0.04098779708147],[-0.024549096822739,0.031991522759199,-0.062951967120171],[-0.10237838327885,0.13626137375832,-0.18549241125584]],[[0.055657893419266,0.099118664860725,-0.17540618777275],[-0.21457515656948,0.17296275496483,-0.31897008419037],[-0.099371060729027,0.13423727452755,0.10932808369398]],[[-0.12083528190851,0.12091332674026,-0.035832773894072],[0.083993345499039,-0.12376066297293,-0.10332444310188],[-0.025101253762841,0.044965952634811,-0.084666103124619]],[[-0.2224578410387,0.17238573729992,-0.049472089856863],[0.065960437059402,0.025414658710361,0.09157282859087],[0.043746765702963,-0.059391420334578,0.031371813267469]],[[-0.10028830915689,0.19572776556015,-0.083646379411221],[0.08179897069931,-0.0095597039908171,0.0078076403588057],[0.019837370142341,0.19999203085899,-0.13158886134624]],[[-0.035034567117691,-0.088623598217964,-0.06582323461771],[-0.01669498346746,-0.13832296431065,-0.054408818483353],[-0.062892988324165,-0.040886849164963,0.11560492962599]],[[-0.063266478478909,-0.061464589089155,0.011549468152225],[0.11800889670849,0.082511946558952,0.0039863036945462],[-0.1284848600626,0.19272221624851,-0.19809886813164]],[[-0.14023759961128,-0.06261184066534,0.12025118619204],[0.11127788573503,0.004735691472888,-0.086235664784908],[0.14929781854153,0.0043828687630594,-0.045276287943125]],[[0.018925728276372,-0.08480241894722,-0.10263422876596],[-0.1692890226841,0.1833420842886,0.030897844582796],[0.002180511597544,-0.017882401123643,-0.18852330744267]],[[-0.16545459628105,0.12908113002777,0.022370342165232],[-0.0045696049928665,-0.064259059727192,0.073378369212151],[0.058875858783722,0.1012716665864,0.13332127034664]],[[0.044004276394844,-0.1387140750885,0.050893381237984],[0.041837971657515,-0.085402816534042,-0.059009931981564],[-0.22100622951984,0.13346126675606,-0.093405537307262]],[[-0.03397561237216,-0.010800086893141,0.14476034045219],[0.018775410950184,0.057400476187468,0.032505363225937],[-0.18889681994915,0.11708413809538,0.21946752071381]],[[-0.082785293459892,-0.013725267723203,-0.086839757859707],[-0.054685551673174,-0.031161671504378,0.10476188361645],[0.05820532143116,0.10573640465736,-0.081732712686062]],[[-0.078964203596115,0.036576118320227,-0.17132261395454],[-0.26742473244667,0.055735617876053,0.10104215145111],[0.07391307502985,0.017416726797819,0.11350280046463]],[[0.10783749818802,-0.23102788627148,0.13924108445644],[-0.10861471295357,-0.02768593840301,-0.12058791518211],[0.25327080488205,-0.19925065338612,0.11353104561567]],[[-0.010644411668181,-0.027319403365254,-0.10338934510946],[-0.098900251090527,-0.2573644220829,-0.030579950660467],[0.0035296196583658,-0.016887668520212,-0.046256478875875]],[[-0.12396232783794,-0.059907790273428,-7.0644535298925e-05],[-0.1239008679986,-0.038234334439039,0.077066347002983],[0.10318222641945,-0.13518358767033,0.12684644758701]],[[-0.021905599161983,-0.1166113242507,-0.084215052425861],[0.036926325410604,-0.11728342622519,0.072597712278366],[-0.10568864643574,-0.013657482340932,-0.022524634376168]],[[-0.026450481265783,0.13444735109806,-0.038797371089458],[0.097158491611481,-0.01875345595181,-0.1819302290678],[-0.08345440775156,0.057983960956335,-0.044437553733587]],[[-0.080195151269436,-0.03897075727582,0.10303778201342],[0.020376024767756,-0.059855099767447,-0.087403900921345],[-0.13947166502476,-0.0055736633948982,-0.090085439383984]],[[-0.085708364844322,-0.21966210007668,-0.039675395935774],[0.093729592859745,-0.12038737535477,-0.067122265696526],[0.12194135785103,-0.084993198513985,-0.024243485182524]],[[0.018175842240453,0.021776990965009,0.00077936699381098],[0.037909720093012,-0.22851413488388,0.10560804605484],[-0.097292855381966,-0.058811563998461,0.014984950423241]],[[-0.02644631639123,0.015195813961327,-0.073576010763645],[0.074962615966797,-0.005281706340611,0.1328781247139],[-0.24311143159866,-0.043228901922703,-0.12514051795006]],[[-0.10879381000996,0.02833721973002,-0.0061379345133901],[-0.049082864075899,0.0020060874521732,0.073030985891819],[-0.053672224283218,-0.04818356782198,-0.071833193302155]],[[-0.10792557895184,-0.089576676487923,-0.29142567515373],[0.040014319121838,-0.1457861661911,-0.012818064540625],[0.076029174029827,0.00025008196826093,0.039020847529173]],[[0.077296882867813,-0.055026862770319,0.18024104833603],[-0.038107626140118,0.032231282442808,-0.34438925981522],[-0.051651660352945,-0.040824022144079,0.040851771831512]],[[-0.092882245779037,-0.092191003262997,0.069515138864517],[0.15257278084755,0.052096582949162,-0.1688244342804],[0.17584520578384,0.082491263747215,0.10870515555143]],[[-0.16935874521732,0.0880993232131,-0.16685536503792],[-0.16112397611141,-0.19914637506008,0.1223034709692],[0.097975246608257,-0.26137700676918,0.018237015232444]],[[0.10464704781771,-0.058876987546682,-0.075500689446926],[-0.22558549046516,0.010454422794282,-0.061475325375795],[0.04869269952178,-0.0095296194776893,0.021080549806356]],[[0.063975222408772,-0.29998442530632,0.031806416809559],[0.094558238983154,0.10412427037954,-0.025533540174365],[-0.11661874502897,0.11913171410561,-0.11885809898376]]],[[[-0.070622742176056,-0.023572085425258,-0.11093501746655],[-0.1438504755497,-0.061939902603626,0.10850301384926],[-0.074041180312634,-0.074864819645882,0.043112266808748]],[[-0.016819538548589,-0.05710506811738,-0.30948489904404],[0.079247087240219,0.0034847734495997,-0.11111706495285],[0.10734328627586,0.095494344830513,0.11810366809368]],[[-0.055690042674541,-0.066675364971161,0.062176283448935],[0.019072206690907,0.035936336964369,-0.066134981811047],[0.048463717103004,-0.062873177230358,-0.0079445913434029]],[[-0.13086570799351,0.13046327233315,0.17138159275055],[-0.19068388640881,-0.24630287289619,0.070476219058037],[0.17818504571915,-0.30456382036209,0.12750189006329]],[[-0.0026888542342931,-0.015744425356388,0.013615689240396],[-0.02715652063489,0.058757897466421,0.029197612777352],[0.012758856639266,-0.010960187762976,0.041996736079454]],[[-0.040003277361393,-0.063723348081112,0.13926526904106],[-0.058990601450205,-0.10805926471949,-0.0197136644274],[-0.012916666455567,0.023775992915034,-0.026904676109552]],[[0.024708656594157,-0.088632091879845,0.029955975711346],[0.036700777709484,-0.026239778846502,-0.22979438304901],[-0.059137031435966,0.090842299163342,-0.011446976102889]],[[-0.024460630491376,-0.052743811160326,-0.15829262137413],[-0.15498140454292,-0.029325662180781,0.053151167929173],[0.052752319723368,-0.035127971321344,-0.097026951611042]],[[-0.045945432037115,-0.054526571184397,0.052682377398014],[-0.02770821005106,0.019249374046922,-0.18410263955593],[0.048044618219137,0.16774998605251,-0.030369989573956]],[[0.061227511614561,-0.17100867629051,-0.073701985180378],[-0.062015667557716,0.047093003988266,-0.088811673223972],[0.1013991907239,0.066352881491184,0.02508626319468]],[[0.020367180928588,-0.0336719378829,-0.10225441306829],[0.075225338339806,0.061842385679483,-0.060444038361311],[0.053616471588612,-0.092221081256866,-0.019307309761643]],[[-0.058106753975153,0.1132287979126,0.076833464205265],[0.061095416545868,-0.0084169823676348,-0.085469894111156],[-0.050663694739342,-0.092170812189579,-0.0053989486768842]],[[0.099225498735905,0.025601791217923,-0.16384308040142],[0.0099787404760718,0.044598985463381,0.097048550844193],[0.11492987722158,-0.037564542144537,-0.00061422341968864]],[[0.022579373791814,0.10814902186394,0.17524649202824],[-0.098590768873692,0.045914441347122,0.058917548507452],[-0.049800984561443,0.019838431850076,-0.0069206808693707]],[[-0.029111932963133,0.078640595078468,0.19152018427849],[-0.095043942332268,-0.13614448904991,0.097553424537182],[-0.012069517746568,-0.13718296587467,-0.10221050679684]],[[0.020312376320362,-0.05493650585413,-0.028947377577424],[-0.088831096887589,0.14712375402451,0.072320327162743],[0.025003980845213,-0.13563364744186,-0.073329985141754]],[[0.0093307150527835,0.021972106769681,0.078289538621902],[-0.044886570423841,-0.016125213354826,-0.0026821861974895],[-0.0012720585800707,-0.20248961448669,-0.060100510716438]],[[-0.068231500685215,0.04779814183712,0.049635995179415],[0.037347391247749,0.093288861215115,0.017493240535259],[0.017156720161438,-0.0093354377895594,-0.084028095006943]],[[0.0030295005999506,-0.11723555624485,-0.054871670901775],[0.0031053016427904,-0.065936475992203,-0.037545502185822],[0.028329575434327,-0.082068003714085,-0.016829699277878]],[[0.081452719867229,0.15416929125786,-0.15648233890533],[0.044535331428051,0.1795951128006,0.0026088759768754],[-0.099324718117714,0.073445290327072,0.041639007627964]],[[-0.10719177871943,-0.11004707962275,0.18827363848686],[0.010687376372516,-0.16293986141682,-0.036208771169186],[-0.10250484198332,0.0093979462981224,-0.043057456612587]],[[-0.20107378065586,0.1020206362009,-0.006019642110914],[-0.12382488697767,0.025639582425356,0.12148803472519],[0.0071764881722629,-0.025664065033197,0.034873850643635]],[[-0.036265596747398,0.10216803848743,-0.098992504179478],[0.013947561383247,0.13520546257496,0.0018418873660266],[-0.080725096166134,-0.021306585520506,0.074776485562325]],[[0.13639789819717,-0.10021408647299,0.029895424842834],[0.11510794609785,-0.10218261182308,-0.040647462010384],[0.12432343512774,0.0092583252117038,-0.1816273778677]],[[-0.17418375611305,-0.040081351995468,-0.039488475769758],[0.039510007947683,0.14556367695332,0.051142226904631],[0.05456830188632,-0.14798283576965,0.091224126517773]],[[0.10532797127962,0.12595751881599,0.11849711090326],[0.015403072349727,0.041159354150295,-0.060314565896988],[0.013374703004956,0.048057463020086,-0.12365765869617]],[[-0.17171896994114,0.023052221164107,0.058725975453854],[-0.0072488593868911,0.005561769939959,0.10357358306646],[-0.020705142989755,0.055134665220976,-0.075227834284306]],[[-0.15597496926785,-0.10818541795015,-0.06924382597208],[-0.072140045464039,0.10153038799763,-0.018347347155213],[0.066387735307217,-0.14591433107853,0.051544424146414]],[[0.11752621084452,-0.10197246074677,0.028020283207297],[0.017043573781848,-0.010832132771611,-0.02712949924171],[0.00071026291698217,0.05723849684,0.049559883773327]],[[0.096222594380379,-0.034149568527937,-0.091612055897713],[0.00038813671562821,0.057369045913219,-0.068340063095093],[-0.1156399846077,-0.0012335433857515,-0.03087306022644]],[[0.13223549723625,0.093211442232132,-0.17052230238914],[-0.22819241881371,0.14300365746021,0.032961320132017],[0.2070593982935,-0.038993082940578,-0.026020655408502]],[[-0.11165416240692,-0.091210715472698,0.022353362292051],[0.085478782653809,-0.14701409637928,-0.18682043254375],[-0.023765997961164,0.0086158504709601,0.098272107541561]]],[[[-0.12132748961449,-0.061355024576187,-0.086569614708424],[0.15908096730709,0.21969100832939,-0.050025794655085],[0.10315781831741,0.028659667819738,-0.054196130484343]],[[0.090429276227951,0.092252224683762,0.0040976954624057],[-0.068903177976608,0.048747148364782,-0.23246946930885],[0.0016877400921658,-0.039109103381634,-0.02487338334322]],[[-0.12413128465414,-0.025843212381005,-0.055961336940527],[0.0021477264817804,0.021325252950191,-0.039066940546036],[-0.18227782845497,0.046180929988623,-0.060471519827843]],[[0.13390043377876,0.062016647309065,-0.035310745239258],[0.17478592693806,0.030595609918237,-0.10200279206038],[-0.13389563560486,-0.016256865113974,-0.012242129072547]],[[-0.0054775797761977,-0.025024611502886,-0.14159874618053],[0.081584833562374,0.14380988478661,-0.094149932265282],[0.065337546169758,0.055088859051466,-0.039846628904343]],[[-0.056345243006945,0.067988775670528,-0.043688841164112],[-0.02438803575933,0.075697898864746,0.022839985787868],[-0.1186696216464,0.063956424593925,0.013037445954978]],[[-0.028956390917301,-0.042719658464193,-0.064857378602028],[-0.029145261272788,-0.034017529338598,-0.08461781591177],[0.17822380363941,-0.066747352480888,0.10805131494999]],[[0.16052089631557,-0.015111259184778,0.049079287797213],[-0.090471372008324,-0.010025439783931,0.07112380862236],[0.049123011529446,0.075697086751461,0.0029509402811527]],[[0.078712821006775,-0.094770267605782,0.031660977751017],[0.050560850650072,0.064844228327274,0.043755739927292],[-0.17773649096489,0.10173124819994,0.036135826259851]],[[-0.14634115993977,0.061909109354019,-0.029534237459302],[-0.14348664879799,-0.0087367929518223,-0.0096305757761002],[0.11343326419592,0.014967703260481,0.11757656931877]],[[0.11232002079487,-0.079616896808147,-0.1114089936018],[-0.065000459551811,0.0026562244165689,0.029162874445319],[0.22320957481861,0.07780547440052,-0.10286664962769]],[[0.088146030902863,-0.04437181353569,0.0016589092556387],[0.01221149135381,-0.057334311306477,-0.12326463311911],[-0.065090492367744,-0.039285007864237,0.11170456558466]],[[-0.036492951214314,0.0047781206667423,0.032366096973419],[-0.03683839738369,-0.046032123267651,-0.058904930949211],[-0.048676323145628,0.20411927998066,-0.0010675042867661]],[[0.11028859764338,0.11901563405991,0.064889200031757],[0.048284649848938,0.13657994568348,0.070049986243248],[-0.21930137276649,-0.19017228484154,-0.11679235100746]],[[0.10142027586699,-0.12822909653187,-0.064011953771114],[0.17117856442928,0.039976593106985,0.029106117784977],[0.070922404527664,0.033981174230576,0.087661631405354]],[[-0.0082952789962292,0.061377298086882,-0.084408685564995],[-0.10314105451107,-0.10296370834112,-0.16267536580563],[0.011136774905026,0.044387333095074,0.04227939248085]],[[-0.056696075946093,0.11138504743576,0.039065312594175],[-0.022178223356605,-0.092656023800373,0.05723337456584],[-0.012064045295119,0.011911052279174,0.047273620963097]],[[0.022266874089837,-0.1564467549324,-0.12411218881607],[0.12541797757149,-0.0079792467877269,-0.024246508255601],[0.032700963318348,0.12076745182276,-0.056040778756142]],[[-0.032674130052328,-0.037974193692207,0.20468844473362],[-0.17695946991444,-0.05719492956996,-0.13337241113186],[-0.0014014912303537,-0.064999684691429,0.060134559869766]],[[-0.10111118853092,-0.13941295444965,-0.14386115968227],[-0.09227205067873,0.027039803564548,-0.0021251763682812],[0.052342861890793,0.018194779753685,-0.099035605788231]],[[0.060526911169291,0.063862033188343,0.020039472728968],[-0.075550906360149,0.074666939675808,0.14717200398445],[0.089598618447781,-0.021039076149464,0.087182432413101]],[[0.061867333948612,-0.052356205880642,-0.12511940300465],[-0.11607249826193,-0.18136233091354,0.017921959981322],[0.12808093428612,0.068927213549614,-0.040546573698521]],[[0.081424564123154,0.0060954350046813,0.10550148785114],[0.0089870598167181,0.087086223065853,-0.0683264285326],[-0.0034502709750086,-0.14973421394825,0.10627348721027]],[[-0.075898133218288,-0.061090044677258,0.0026598244439811],[0.066184349358082,-0.036739069968462,-0.025141017511487],[-0.0031325644813478,0.078223124146461,-0.12323269248009]],[[0.016995914280415,-0.12612779438496,-0.19578814506531],[-0.11898198723793,0.097761243581772,-0.0025416668504477],[0.18602284789085,-0.057201102375984,-0.03644997626543]],[[0.064878411591053,0.04575465247035,-0.038002595305443],[-0.056420341134071,0.043138008564711,0.063906140625477],[0.095277354121208,-0.023709028959274,0.062064427882433]],[[-0.030336923897266,0.099185578525066,-0.18632942438126],[-0.013468501158059,0.052932538092136,-0.081621438264847],[-0.18274915218353,0.17005464434624,0.026555819436908]],[[-0.070794530212879,-0.026818765327334,-0.004197355825454],[0.02254937030375,0.11219386011362,-0.0046908361837268],[0.049307838082314,-0.17221547663212,-0.0011453907936811]],[[0.030177194625139,-0.10555020719767,-0.022617910057306],[0.10104354470968,0.039360918104649,-0.053831592202187],[-0.07853414863348,0.072173617780209,0.035249002277851]],[[0.037114813923836,-0.041858803480864,0.041471771895885],[0.029928086325526,0.027625575661659,-0.010654389858246],[0.00022584325051866,-0.064148895442486,-0.036240756511688]],[[-0.1567310243845,-0.096446372568607,0.056195378303528],[-0.084517993032932,0.075356788933277,0.026570582762361],[-0.1017739623785,-0.016629997640848,0.022385029122233]],[[0.0076192547567189,0.11777172982693,-0.03115951269865],[-0.10189401358366,0.15856829285622,-0.0094822403043509],[0.018021007999778,-0.058747302740812,0.0803407356143]]],[[[-0.11312612146139,0.17172491550446,0.23140120506287],[-0.029756784439087,0.076494917273521,-0.026495261117816],[-0.10838440060616,0.077145397663116,-0.0087066469714046]],[[-0.096359834074974,0.013591890223324,0.086329333484173],[-0.060328781604767,-0.030854610726237,0.020072668790817],[0.015324925072491,0.018176291137934,-0.024106331169605]],[[0.15263220667839,0.0088587459176779,0.13651457428932],[-0.13403426110744,-0.0096120927482843,-0.0031737240497023],[-0.10825400054455,-0.10690664499998,-0.033578496426344]],[[-0.059239525347948,-0.017462937161326,0.16054205596447],[-0.031025819480419,0.082071140408516,-0.13356781005859],[-0.09057080745697,-0.074607998132706,-0.03928604349494]],[[0.068645231425762,0.10820520669222,0.049418602138758],[0.16184329986572,-0.03456836566329,-0.032171126455069],[-0.053067933768034,-0.044033668935299,0.015286102890968]],[[0.045767307281494,-0.022904930636287,0.0063628046773374],[-0.036249253898859,0.014544515870512,0.077829383313656],[0.0017720252508298,0.073488675057888,0.0001057608606061]],[[0.10890780389309,0.1139865219593,0.053320519626141],[0.0006294579943642,-0.11828736960888,-0.016396185383201],[0.011220837011933,0.024671645835042,-0.12703555822372]],[[-0.012167789973319,0.037184573709965,0.20301608741283],[-0.18975587189198,0.0047026369720697,0.12563835084438],[-0.15198522806168,-0.12433229386806,0.064989596605301]],[[0.064059056341648,0.064956463873386,0.013698673807085],[-0.067186281085014,-0.21749569475651,-0.024258887395263],[0.060478676110506,-0.038597837090492,-0.095066905021667]],[[-0.019811591133475,0.012651322409511,0.078830786049366],[-0.010653069242835,-0.066527187824249,-0.010115092620254],[0.097828052937984,-0.12393399327993,-0.11367005109787]],[[0.024255972355604,-0.15074872970581,-0.082774713635445],[-0.021469905972481,0.064710982143879,0.099028415977955],[-0.18008226156235,0.0156121077016,0.13368733227253]],[[0.056575480848551,0.057793904095888,0.030412754043937],[0.052871957421303,0.051325589418411,-0.0082822823897004],[-0.12458962202072,-0.14688690006733,-0.047631658613682]],[[-0.18468907475471,-0.0027909099590033,0.15747676789761],[-0.052510999143124,-0.066801890730858,-0.037930991500616],[-0.029643317684531,0.16678106784821,-0.17785719037056]],[[0.0081600276753306,0.041947845369577,-0.15044845640659],[-0.041194204241037,0.064460620284081,0.13381406664848],[0.0059208832681179,0.084390074014664,-0.050890356302261]],[[0.18461439013481,-0.07668250054121,-0.11659852415323],[-0.0025964742526412,-0.047370981425047,0.095144227147102],[0.045968640595675,-0.19251680374146,-0.08491475135088]],[[-0.20764316618443,-0.0081934835761786,0.026950867846608],[0.085540130734444,0.050157468765974,-0.032009150832891],[-0.10419624298811,0.15123485028744,0.04027197137475]],[[0.026495900005102,0.0058272327296436,-0.066354788839817],[-0.0097245629876852,0.0058815460652113,-0.088003292679787],[-0.074803397059441,-0.14005088806152,0.064415402710438]],[[0.10868578404188,-0.014777167700231,0.052008632570505],[0.00092350249178708,0.041834078729153,0.0036403599660844],[-0.08292481303215,-0.1942438185215,0.0093663325533271]],[[-0.14766968786716,-0.17073057591915,-0.14750844240189],[-0.14115336537361,-0.17701898515224,-0.067589625716209],[-0.087124094367027,-0.061344649642706,-0.073930695652962]],[[-0.086869776248932,-0.090207599103451,0.044782403856516],[0.12301401793957,-0.1354965865612,0.02050001360476],[-0.16381086409092,-0.044146832078695,-0.011169104836881]],[[-0.10765233635902,0.023760970681906,-0.062095616012812],[-0.1489147990942,-0.087288834154606,-0.096924178302288],[-0.016218263655901,0.0035512284375727,-0.10729929059744]],[[0.20326925814152,0.041836246848106,0.083238869905472],[-0.039836551994085,-0.2069483101368,0.031386896967888],[-0.073251150548458,0.090950220823288,-0.14866176247597]],[[0.019011983647943,0.016749389469624,0.063088953495026],[0.0075682899914682,-0.12275809794664,0.11205913126469],[-0.039974950253963,-0.19767528772354,0.0645482391119]],[[-0.11709340661764,-0.096219398081303,0.20629818737507],[0.040825486183167,-0.091034404933453,0.054772570729256],[0.027986437082291,-0.096160680055618,-0.00044182466808707]],[[-0.11194378882647,-0.095734253525734,0.18659922480583],[0.11920186877251,0.043720986694098,-0.00037001961027272],[-0.015490509569645,-0.30040034651756,-0.014441828243434]],[[-0.044112656265497,0.028005680069327,-0.044351898133755],[0.00092744722496718,0.12760262191296,0.023367952555418],[0.023631053045392,0.029918171465397,-0.15458309650421]],[[-0.015707606449723,0.0071152513846755,-0.11637399345636],[-0.24697814881802,0.11607574671507,-0.1365484893322],[0.060881495475769,0.089096799492836,-0.10004096478224]],[[0.16548453271389,-0.002478935290128,0.022407924756408],[-0.052453979849815,-0.025825712829828,0.11660978198051],[-0.14211644232273,-0.068757295608521,0.040412995964289]],[[0.088073708117008,-0.019948782399297,0.18047323822975],[-0.038891009986401,-0.094852834939957,0.069015637040138],[0.020647244527936,-0.089922614395618,0.10276161879301]],[[0.017706774175167,0.046920873224735,0.21789935231209],[-0.068502701818943,-0.0070860236883163,-0.035275824368],[-0.036341663450003,-0.13752597570419,-0.12196943163872]],[[-0.016477879136801,0.0071782935410738,0.039575014263391],[-0.15802645683289,-0.079011730849743,0.078949451446533],[-0.15894414484501,-0.073186330497265,0.065818876028061]],[[-0.27155512571335,-0.097756363451481,-0.015890488401055],[-0.053204715251923,-0.20104072988033,0.025105627253652],[-0.071070037782192,-0.038492761552334,-0.011188962496817]]],[[[0.048605304211378,-0.026574946939945,0.026307620108128],[0.076982490718365,0.032591219991446,-0.048293568193913],[0.0471535846591,-0.057484060525894,-0.058117967098951]],[[-0.063711956143379,-0.11929957568645,-0.023007914423943],[-0.067301847040653,0.11829021573067,-0.13936644792557],[0.10356426984072,0.064893633127213,-0.029120523482561]],[[-0.010044439695776,0.020467631518841,-0.0057780928909779],[-0.010036210529506,-0.039974298328161,0.020912462845445],[-0.0085405297577381,-0.0082620410248637,0.078571371734142]],[[-0.041631799191236,0.02186799235642,-0.016921333968639],[0.013815529644489,-0.069549202919006,-0.02876166626811],[0.0040110503323376,0.09200944006443,0.0040359818376601]],[[-0.076808750629425,0.088780984282494,-0.063069820404053],[0.12401819974184,0.034543473273516,0.034590989351273],[0.013076917268336,0.01967279240489,0.053904954344034]],[[-0.084809616208076,-0.16761314868927,-0.066172309219837],[0.079318061470985,-0.050526082515717,0.089616701006889],[0.039624210447073,-0.018194301053882,-0.00042849971214309]],[[0.021879369392991,0.029862105846405,-0.032864287495613],[0.052029367536306,-0.0085482839494944,-0.039663825184107],[0.010716671124101,-0.015243881382048,-0.0017710711108521]],[[-0.015687040984631,0.060352250933647,0.0089449156075716],[-0.070986412465572,0.071578502655029,0.0056578097864985],[-0.04658330604434,0.0065517108887434,-0.051224015653133]],[[-0.065911531448364,0.062175571918488,-0.12964852154255],[0.088351041078568,-0.040865439921618,-0.018820824101567],[0.019369168207049,0.018293388187885,0.010636016726494]],[[0.036406621336937,0.045526634901762,0.013207236304879],[0.083222903311253,0.23851235210896,0.054379105567932],[-0.034366600215435,0.03808406367898,0.089320726692677]],[[-0.053771018981934,-0.01617736928165,0.020086964592338],[0.060027200728655,-0.082408398389816,0.075734950602055],[-0.0029139451216906,0.0068234466016293,-0.027104735374451]],[[0.024860391393304,-0.055868502706289,-0.03356821462512],[-0.047670543193817,0.0036207092925906,0.072420589625835],[-0.065558731555939,-0.0064720306545496,0.14672687649727]],[[0.036997981369495,-0.016785874962807,-0.1020283550024],[-0.029550451785326,-0.043479066342115,0.033983234316111],[0.0021809486206621,-0.033281419426203,0.053866643458605]],[[0.033088471740484,0.17390567064285,-0.10172030329704],[-0.14567323029041,-0.0025659727398306,0.0056389980018139],[-0.013788253068924,-0.14341959357262,0.088498719036579]],[[-0.0012836359674111,0.063807889819145,-0.058546785265207],[-0.071993611752987,0.11945554614067,0.097800441086292],[-0.051300846040249,-0.010936269536614,-0.059119842946529]],[[0.013934633694589,-0.1146591976285,-0.063204728066921],[-0.011158891022205,0.10332364588976,-0.00090833520516753],[0.030159765854478,-0.065918110311031,0.088336668908596]],[[-0.088391751050949,-0.039694581180811,-0.015993742272258],[0.044080700725317,0.019281243905425,-0.088131949305534],[-0.089921541512012,-0.21344467997551,0.012643886730075]],[[-0.049960725009441,-0.052014268934727,-0.11832013726234],[-0.088023714721203,-0.0050444239750504,0.14173196256161],[0.067424386739731,0.038816757500172,-0.1253499686718]],[[-0.013181631453335,-0.13489221036434,0.089370377361774],[0.030067997053266,-0.040686372667551,-0.032468385994434],[0.021099604666233,-0.029847096651793,0.069290705025196]],[[0.044503286480904,-0.05139672011137,-0.055312406271696],[-0.017429180443287,0.038078017532825,-0.059988688677549],[0.086015999317169,-0.053527157753706,0.052027076482773]],[[-0.075994342565536,0.085725545883179,-0.0040210746228695],[0.054704539477825,-0.057599071413279,-0.10867235064507],[0.062071919441223,-0.073088072240353,0.099709331989288]],[[-0.10404224693775,0.082040421664715,0.21790115535259],[-0.072068370878696,0.052092429250479,-0.01262130215764],[0.0021372165065259,-0.015599811449647,0.030443992465734]],[[0.013910220935941,-0.11999404430389,0.10330574959517],[0.051373053342104,0.016411334276199,0.026216212660074],[0.069852456450462,0.014033404178917,0.0014487913576886]],[[0.07620146125555,0.070306785404682,-0.068661488592625],[-0.0094749825075269,-0.10316502302885,0.0057413973845541],[0.075625374913216,-0.064342401921749,-0.10244764387608]],[[0.086106359958649,0.055708192288876,0.028520166873932],[-0.14437210559845,-0.0037568367552012,0.17173621058464],[-0.016601076349616,-0.060504175722599,-0.12646323442459]],[[0.016151094809175,-0.039058741182089,0.070737741887569],[0.12909717857838,-0.055317137390375,0.087268739938736],[-0.043003227561712,0.028147095814347,-0.022215055301785]],[[-0.057098854333162,0.04930516704917,0.09070347994566],[-0.049601309001446,0.067876674234867,-0.014029123820364],[-0.04939467087388,-0.013930830173194,0.018291195854545]],[[0.11151723563671,0.028175899758935,0.036713033914566],[-0.083658538758755,0.08117001503706,-0.093798421323299],[-0.051606614142656,-0.018956603482366,-0.024005779996514]],[[0.011814432218671,-0.055954299867153,0.12744392454624],[-0.034746993333101,-0.053224828094244,0.049249481409788],[-0.070799089968204,0.041888725012541,-0.022857457399368]],[[-0.040456186980009,0.099769227206707,-0.024766717106104],[0.07225713133812,-0.16628240048885,0.031438380479813],[-0.10941632091999,0.13552679121494,0.019421070814133]],[[0.0017235757550225,0.029724784195423,0.095531046390533],[-0.098514959216118,-0.055350098758936,0.1191575974226],[0.0057760118506849,0.022514369338751,-0.033420462161303]],[[0.056762453168631,0.0081258481368423,0.071817070245743],[-0.022880181670189,-0.11803618073463,-0.034760173410177],[-0.049840342253447,0.023878172039986,0.045649651437998]]],[[[-0.11279521882534,0.016951045021415,-0.095599472522736],[-0.012541074305773,-0.14770758152008,-0.22322526574135],[0.002333507174626,-0.12019427120686,-0.11414747685194]],[[-0.081085987389088,0.025428235530853,0.0474610067904],[0.010788960382342,0.074235983192921,0.11720089614391],[-0.059392914175987,-0.094531834125519,-0.038075670599937]],[[-0.077341109514236,-0.080072402954102,-0.11726797372103],[0.091068886220455,-0.14397925138474,-0.12631607055664],[-0.029168086126447,-0.07148639112711,-0.07539240270853]],[[-0.034810945391655,-0.24449826776981,0.10228768736124],[-0.1950316876173,-0.15242786705494,-0.13692970573902],[-0.11131845414639,-0.14952678978443,-0.11445227265358]],[[0.065091378986835,0.0095177590847015,0.062393616884947],[0.014149424619973,-0.043780978769064,0.0091001465916634],[-0.10177573561668,-0.023879179731011,-0.098936215043068]],[[0.069623991847038,-0.11863875389099,-0.052380159497261],[-0.17966340482235,0.088533602654934,-0.025028528645635],[0.077630035579205,0.23666055500507,0.03518108278513]],[[0.040642417967319,0.088712438941002,-0.15610262751579],[0.0077637885697186,-0.19860300421715,-0.23688322305679],[0.035015396773815,-0.085160724818707,-0.21245154738426]],[[0.019018290564418,0.22612291574478,0.043206635862589],[-0.21560724079609,0.1126993149519,-0.16848744452],[-0.11931139230728,-0.035428825765848,-0.090886034071445]],[[-0.003788826521486,0.03739969432354,-0.068969741463661],[-0.079982601106167,-0.098350375890732,-0.13926203548908],[-0.095183968544006,0.017297379672527,-0.11139564961195]],[[0.078532688319683,0.055184096097946,0.10413832962513],[-0.018274335190654,0.0066104833967984,0.11604401469231],[-0.14405716955662,-0.011667118407786,-0.08833172917366]],[[-0.035931345075369,0.082917429506779,0.016034331172705],[-0.011221894063056,0.063686929643154,-0.08242130279541],[0.10465843975544,-0.19845750927925,0.081492677330971]],[[-0.087537564337254,-0.17793014645576,0.063335105776787],[0.067418046295643,-0.088729493319988,0.0044879484921694],[0.12264029681683,0.15572182834148,-0.02755418419838]],[[0.079833284020424,-0.0051994398236275,0.071096248924732],[0.058105260133743,-0.17771239578724,0.071723751723766],[-0.031214214861393,-0.22437304258347,-0.005146233830601]],[[-0.22232177853584,-0.25438261032104,-0.11584011465311],[0.15264941751957,-0.009318083524704,-0.078601725399494],[0.088677570223808,0.062192350625992,0.16668365895748]],[[0.069467209279537,-0.10395090281963,-0.26036977767944],[-0.12860184907913,0.060436259955168,-0.15916433930397],[-0.030937412753701,-0.064842574298382,-0.08991227298975]],[[0.035796117037535,-0.060266133397818,0.19208188354969],[-0.022483788430691,-0.28830224275589,0.065991438925266],[-0.02419226244092,-0.03971129283309,-0.015276581980288]],[[0.066128827631474,-0.0082143265753984,-0.07014074921608],[-0.057959854602814,0.04439627751708,0.01493700966239],[0.06344098597765,0.021259509027004,0.021266967058182]],[[0.1002087816596,-0.0090469634160399,0.053947601467371],[0.039830785244703,0.018147043883801,-0.17526669800282],[-0.14913590252399,0.02628948353231,-0.1369274109602]],[[-0.034881897270679,0.10599481314421,0.039937764406204],[-0.059978369623423,-0.055625289678574,0.14851921796799],[-0.0093405740335584,0.0018768305890262,0.070491418242455]],[[0.11087952554226,-0.063276670873165,0.10673832893372],[-0.01364513207227,-0.038930103182793,-0.16601863503456],[-0.12139029055834,-0.088838323950768,0.090875573456287]],[[0.096327491104603,-0.089437142014503,0.052879191935062],[0.084014803171158,-0.059720411896706,-0.1019304022193],[-0.08798947930336,-0.11456716805696,0.14738318324089]],[[-0.0065954970195889,-0.013759363442659,-0.10126011073589],[0.0035218307748437,0.018690336495638,0.038642141968012],[0.23832176625729,-0.033215522766113,-0.021599071100354]],[[0.021424222737551,-0.031713243573904,-0.02309394069016],[-0.06627943366766,-0.15299108624458,0.066487461328506],[-0.0037734562065452,0.053987588733435,0.096512176096439]],[[0.02405721321702,0.054309085011482,0.10584969818592],[-0.086954273283482,-0.17097516357899,0.014618565328419],[-0.0063313185237348,0.068084426224232,0.070169530808926]],[[0.0204724855721,0.07016059756279,-0.072477951645851],[-0.022685406729579,-0.12454588711262,0.12681537866592],[0.012260214425623,-0.001319776289165,0.042365152388811]],[[-0.22296069562435,0.064712345600128,-0.074698977172375],[-0.15327432751656,-0.083238132297993,-0.14449581503868],[0.18286257982254,-0.0056364149786532,0.075887188315392]],[[-0.029909752309322,-0.092932060360909,-0.19620138406754],[-0.049586463719606,0.012338768690825,0.019846361130476],[0.033267829567194,0.12063798308372,-0.092747338116169]],[[-0.07048037648201,-0.18573641777039,0.068698279559612],[0.091908536851406,0.025446074083447,0.050016015768051],[-0.033402591943741,-0.11619201302528,0.042412653565407]],[[-0.07035718858242,-0.076853729784489,-0.055969204753637],[0.073963224887848,0.078402020037174,-0.060744047164917],[0.031056826934218,0.029472388327122,0.05679040402174]],[[-0.047894570976496,0.071367785334587,0.017586866393685],[-0.026045076549053,-0.21560578048229,0.17140352725983],[0.058754324913025,-0.1492837369442,0.0081871561706066]],[[-0.046562377363443,-0.016449857503176,0.094954624772072],[0.013004753738642,-0.010340519249439,-0.11640122532845],[0.050818212330341,-0.030074363574386,-0.02903813123703]],[[-0.080243043601513,-0.12294986844063,0.19404426217079],[-0.037013813853264,-0.16282054781914,-0.021788939833641],[-0.14530819654465,-0.11416228860617,-0.054590113461018]]],[[[-0.32545280456543,-0.021911608055234,0.11366909742355],[-0.32156199216843,-0.064686134457588,-0.0096344351768494],[0.12943011522293,-0.15082468092442,-0.15236504375935]],[[-0.057836685329676,0.0474026016891,0.12055531144142],[-0.050804652273655,0.025078693404794,-0.026692597195506],[-0.066523857414722,-0.070946723222733,0.058789897710085]],[[-0.10971783101559,0.1040420383215,-0.095330856740475],[-0.012658645398915,0.018992807716131,0.03130853921175],[-0.024078041315079,-0.19886554777622,0.18537768721581]],[[0.020090052857995,-0.031235387548804,0.041770234704018],[0.050862360745668,0.048401467502117,-0.13609118759632],[-0.18423409759998,-0.030713219195604,0.0054203453473747]],[[0.097542785108089,-0.14651292562485,0.034646183252335],[-0.10894867777824,0.054925046861172,-0.054940745234489],[-0.027110757306218,-0.024828920140862,-0.051304835826159]],[[-0.0021499302238226,0.070292763411999,-0.064607404172421],[0.012024136260152,-0.0093240290880203,-0.061093643307686],[0.016173399984837,0.17604242265224,-0.12350815534592]],[[-0.057019367814064,-0.00039891808410175,-0.15547129511833],[0.0064853127114475,0.0065905228257179,-0.061241302639246],[-0.10781986266375,-0.31946867704391,0.052485316991806]],[[-0.080452054738998,-0.059631656855345,0.05524118617177],[-0.15000240504742,-0.1285403072834,0.033911556005478],[-0.017876030877233,0.10618901252747,0.017053976655006]],[[0.1276444196701,-0.051464285701513,-0.044032301753759],[0.051723096519709,0.028697058558464,-0.095013231039047],[0.0029409669805318,-0.20270128548145,0.081292368471622]],[[-0.17020666599274,0.04027996212244,0.043817892670631],[-0.15238285064697,0.21906526386738,-0.0059925764799118],[-0.015059009194374,0.09245777130127,0.12214869260788]],[[0.042712017893791,-0.029341312125325,-0.14257051050663],[-0.00019669445464388,-0.012602110393345,-0.0048721423372626],[-0.078149750828743,-0.03339284658432,0.094631046056747]],[[0.068052396178246,-0.026197802275419,0.095353968441486],[0.034272603690624,-0.20447753369808,0.0044900705106556],[-0.031845904886723,0.0072662243619561,0.11498114466667]],[[-0.032182328402996,0.087977856397629,0.06049820035696],[-0.051776390522718,-0.060450255870819,-0.083471342921257],[-0.22234289348125,-0.23325438797474,-0.028841488063335]],[[0.0073988125659525,-0.024429384618998,-0.28531736135483],[0.21761962771416,-0.23555985093117,-0.21608392894268],[0.044782366603613,-0.048482950776815,-0.095064491033554]],[[0.1429588496685,0.047483064234257,0.0021702041849494],[-0.053495436906815,0.1042954325676,-0.0077444817870855],[-0.057099681347609,-0.00065103621454909,0.066520065069199]],[[-0.058472909033298,0.068260885775089,-0.0550532117486],[-0.035679828375578,0.11791288107634,0.05303106456995],[-0.070062786340714,-0.0056986389681697,0.052939724177122]],[[0.038687508553267,0.090554654598236,-0.079520344734192],[-0.019741605967283,0.1624938249588,0.066994994878769],[0.083369709551334,0.062321159988642,0.056859001517296]],[[-0.14423963427544,-0.073796167969704,-0.033772051334381],[-0.13388019800186,0.0052984105423093,0.10792128741741],[-0.2054608464241,0.03986956551671,-0.11519499123096]],[[0.010819902643561,0.16504260897636,0.042512223124504],[0.02113739028573,0.13548927009106,-0.014563585631549],[0.066470459103584,-0.044577673077583,0.044037036597729]],[[-0.0066060665994883,-0.02842285297811,-0.13910780847073],[-0.044631153345108,-0.030193330720067,-0.044886443763971],[-0.082095041871071,0.032920882105827,-0.0046793203800917]],[[-0.10988064110279,0.0045808814466,-0.019185844808817],[-0.025359960272908,-0.026738604530692,0.089944899082184],[-0.19713182747364,0.074343547224998,0.10860583931208]],[[0.1148337200284,0.037518117576838,-0.11309970170259],[-0.022860130295157,0.0025503071956336,-0.057392857968807],[0.003063184209168,-0.020823609083891,0.14128270745277]],[[-0.14962139725685,0.044467378407717,0.03310938179493],[-0.06029087677598,0.072931453585625,-0.001420873682946],[-0.14207780361176,0.076935619115829,-0.019352300092578]],[[-0.022811664268374,-0.027959827333689,-0.12327919155359],[0.029252417385578,-0.044706080108881,-0.0055184573866427],[-0.081210367381573,0.072936043143272,-0.11406966298819]],[[-0.036620888859034,0.029529931023717,-0.0085988296195865],[0.01575399748981,-0.10484930872917,-0.055411327630281],[0.014383939094841,0.041718389838934,-0.010066376999021]],[[-0.020007058978081,-0.10378937423229,0.045656606554985],[-0.004564561881125,-0.21691992878914,-0.0573117621243],[0.03541412204504,-0.098580256104469,0.041339781135321]],[[-0.013090853579342,0.08820416778326,0.012622858397663],[0.056483764201403,-0.098236925899982,-0.01081567350775],[0.090906970202923,0.099477365612984,0.11883653700352]],[[0.025396414101124,0.11862021684647,0.045566312968731],[-0.076439142227173,0.12475145608187,-0.019021227955818],[0.081480763852596,0.14475049078465,-0.050273761153221]],[[0.072286829352379,-0.039457388222218,0.15892511606216],[-0.054749958217144,-0.12942035496235,-0.063149005174637],[0.016827890649438,-0.0043309610337019,0.038346696645021]],[[0.079517245292664,-0.11498202383518,0.012854542583227],[0.004150886554271,-0.180694013834,-0.11789128929377],[-0.031847640872002,-0.17800880968571,0.16030822694302]],[[-0.11683086305857,0.065904185175896,0.14106848835945],[0.079630918800831,-0.14394918084145,0.11724508553743],[0.039557006210089,-0.061875257641077,0.023485988378525]],[[0.088329881429672,-0.1449997574091,0.040004335343838],[0.020553162321448,-0.073672279715538,0.14693358540535],[0.053351376205683,-0.29270601272583,0.13305874168873]]],[[[0.063562333583832,-0.000689948850777,0.029569271951914],[-0.08329901099205,-0.043887048959732,-0.058450777083635],[0.027049480006099,0.016015496104956,0.0078297117725015]],[[0.0130116334185,-0.013198454864323,-0.040545258671045],[0.020330972969532,0.12185340374708,0.068382322788239],[-0.1408284008503,-0.0096067609265447,0.15056695044041]],[[0.15292648971081,-0.068882070481777,0.024784907698631],[-0.094171665608883,-0.0026363239157945,0.040151618421078],[-0.0683518871665,0.056528180837631,-0.019624231383204]],[[0.10098816454411,0.021038673818111,-0.03975472971797],[-0.029598278924823,0.011354718357325,-0.023217126727104],[0.14880369603634,0.030911900103092,-0.027083029970527]],[[0.026210319250822,-0.035502526909113,0.10285998880863],[0.12973013520241,0.0034948699176311,0.14861840009689],[0.15086930990219,-0.14021168649197,0.050652880221605]],[[-0.047722846269608,-0.14348615705967,-0.094182267785072],[-0.075941607356071,-0.073850095272064,-0.081177748739719],[-0.024449596181512,-0.016010340303183,0.020320478826761]],[[-0.0077009657397866,0.00028392058447935,-0.091144077479839],[0.079383969306946,-0.12669095396996,-0.027432084083557],[0.18195153772831,-0.035815298557281,0.087489530444145]],[[-0.10425539314747,0.068615488708019,0.0058297198265791],[0.066584624350071,-0.0022853517439216,-0.022920586168766],[-0.001158906146884,-0.033426154404879,0.082690939307213]],[[-0.057903375476599,0.052618972957134,0.010729697532952],[-0.074456639587879,-0.055299412459135,0.065516948699951],[0.024720069020987,0.063026592135429,-0.001839678036049]],[[0.082775212824345,0.010170239955187,-0.054185349494219],[0.0088055552914739,0.11516496539116,-0.026488227769732],[0.070025458931923,0.004748712759465,0.067683555185795]],[[0.046301748603582,0.074744381010532,0.089153081178665],[-0.068487510085106,-0.0310670863837,0.026160456240177],[0.0034430301748216,-0.056300260126591,-0.028528397902846]],[[0.10586751252413,0.057190224528313,-0.07685199379921],[-0.0050914459861815,-0.019933069124818,-0.033119358122349],[-0.063024573028088,0.050099354237318,-0.029938163235784]],[[0.012196928262711,-0.11348301172256,0.018609894439578],[-0.061717100441456,0.067349344491959,0.040189910680056],[-0.0048239240422845,0.11077381670475,-0.045545481145382]],[[-0.021584175527096,-0.0059052789583802,-0.14298352599144],[0.030755665153265,0.034989923238754,-0.053351946175098],[0.0038206586614251,-0.026663437485695,0.038425132632256]],[[0.018218364566565,0.018622128292918,0.085481345653534],[0.070066764950752,-0.085073098540306,-0.066133104264736],[0.0031097531318665,-0.070404469966888,-0.026112897321582]],[[0.054753020405769,0.036068368703127,-0.082551471889019],[0.0087207220494747,-0.0045443372800946,0.053293377161026],[-0.07272719591856,-0.010416996665299,0.046825651079416]],[[-0.045505672693253,0.019152443856001,-0.22721043229103],[0.12007869035006,-0.05967415496707,-0.038967300206423],[-1.3933989976067e-05,-0.070879578590393,0.04001758992672]],[[0.076796635985374,0.068385317921638,0.049344029277563],[0.10238502919674,0.10824424773455,-0.016310730949044],[-0.012606567703187,0.10443052649498,0.091963529586792]],[[0.081625394523144,-0.01040733512491,-0.041673224419355],[0.059487126767635,-0.024409029632807,0.056767750531435],[0.053494889289141,-0.046557832509279,-0.0085145542398095]],[[0.068503692746162,-0.0012443824671209,0.095798194408417],[0.010433088988066,-0.079725883901119,-0.021692249923944],[0.018155926838517,-0.049463458359241,0.10126487165689]],[[-0.027001060545444,0.030681302770972,0.1030690446496],[-0.088724829256535,-0.044663101434708,-0.062914088368416],[0.13029237091541,0.050919968634844,-0.049492124468088]],[[-0.079236708581448,-0.10908872634172,-0.005142162553966],[0.2397563457489,0.042851850390434,0.021532818675041],[-0.17385986447334,-0.13376969099045,0.092712417244911]],[[0.1226207986474,0.12999829649925,-0.01476644910872],[-0.14853627979755,0.048526383936405,-0.0677654966712],[-0.010729144327343,-0.0064818137325346,-0.056085359305143]],[[-0.042757019400597,0.0994533598423,0.11783856898546],[0.052188664674759,0.012345424853265,-0.13424454629421],[-0.042974855750799,0.06674886494875,0.030228652060032]],[[0.038527395576239,0.083041198551655,-0.13463996350765],[0.030514355748892,-0.07271571457386,0.065445400774479],[0.049801766872406,-0.14116980135441,0.11368878930807]],[[0.031902018934488,0.0035803790669888,0.073932528495789],[0.063119396567345,0.014763319864869,-0.063722282648087],[-0.044218141585588,-0.085235647857189,-0.023635553196073]],[[0.0023185210302472,0.064510971307755,-0.00062380672898144],[-0.0098722279071808,-0.0048392913304269,0.078975446522236],[-0.072373680770397,0.082428872585297,-0.071021944284439]],[[-0.018161104992032,-0.091698698699474,0.010659821331501],[0.067421108484268,0.085526682436466,-0.050469126552343],[0.098279163241386,-0.069625005125999,-0.05273313075304]],[[0.06079863011837,-0.11216712743044,-0.062950782477856],[0.18736980855465,-0.055527787655592,0.095959082245827],[-0.020185532048345,0.046490777283907,-0.14429149031639]],[[-0.033924046903849,0.0024053230881691,0.0066062496043742],[-0.030961476266384,0.059860832989216,0.026368236169219],[-0.033785700798035,-0.078229069709778,0.032961897552013]],[[-0.057411905378103,0.053961560130119,-0.041395258158445],[-0.0010981908999383,-0.052781153470278,0.066281907260418],[0.025761371478438,0.020063987001777,0.0085567692294717]],[[-0.053515963256359,0.037407428026199,-0.068488106131554],[-0.10827673226595,0.084955267608166,0.035664964467287],[-0.078280307352543,0.15098349750042,0.0056110806763172]]],[[[-0.11338436603546,0.08925524353981,-0.15146458148956],[0.18483190238476,0.02350609190762,-0.042370554059744],[0.26846832036972,-0.11817468702793,-0.042728461325169]],[[0.098636455833912,0.069123908877373,0.10669907182455],[0.082229346036911,-0.055221647024155,-0.027680456638336],[-0.006093327421695,-0.052000388503075,0.1116151958704]],[[-0.041665267199278,-0.06683199852705,-0.015142619609833],[0.0027378271333873,0.081428989768028,-0.027341861277819],[0.0086123216897249,0.085169672966003,0.034506510943174]],[[-0.1752777248621,-0.10962872952223,0.12790143489838],[-0.026712356135249,-0.051197856664658,-0.16343094408512],[-0.32638451457024,-0.1205775141716,-0.15752716362476]],[[0.074474588036537,-0.015637431293726,0.10374586284161],[0.093825027346611,0.01588911563158,0.03230281919241],[-0.015494487248361,-0.11873955279589,-0.058416184037924]],[[-0.074271969497204,-0.092288345098495,-0.12528657913208],[-0.072626709938049,-0.044905871152878,0.11671689897776],[-0.046218082308769,-0.014941395260394,-0.095380589365959]],[[-0.126897752285,-0.02094447799027,0.038453064858913],[0.0039768451824784,0.00049539317842573,-0.0803282558918],[0.061362165957689,-0.20085589587688,-0.019592141732574]],[[-0.03165153041482,-0.080755770206451,0.025134766474366],[-0.065083220601082,-0.08007900416851,-0.10658375173807],[0.17351476848125,-0.063552238047123,0.034529764205217]],[[-0.059924591332674,0.14546053111553,-0.062685400247574],[-0.14489941298962,0.0077755684033036,-0.011714971624315],[-0.16357386112213,-0.053246423602104,0.15202377736568]],[[0.10414607077837,0.041335981339216,-0.14531819522381],[-0.050286009907722,-0.11138538271189,0.12548163533211],[0.0245430637151,-0.19692429900169,0.08191754668951]],[[0.058880984783173,0.16934889554977,0.075591132044792],[0.049695190042257,-0.12051916867495,-0.20917424559593],[-0.066714234650135,-0.093062549829483,-0.21549512445927]],[[0.10840356349945,-0.028717733919621,0.017745723947883],[0.092417828738689,0.056159552186728,-0.1222772449255],[0.022341663017869,0.043798957020044,-0.12330881506205]],[[0.27650848031044,-0.041849039494991,0.0085058100521564],[0.12327658385038,-0.04098379611969,0.26391020417213],[0.12652504444122,0.0024688416160643,-0.65038526058197]],[[-0.016105221584439,0.10382571816444,0.0078341653570533],[-0.054179817438126,-0.023693831637502,0.10322800278664],[0.056209743022919,0.088677495718002,-0.058743521571159]],[[-0.15413242578506,0.20922665297985,0.078439235687256],[0.012746505439281,-0.19691394269466,-0.36874830722809],[-0.16378602385521,-0.13317663967609,0.29953366518021]],[[-0.028982520103455,0.11043445765972,0.051194045692682],[-0.036834873259068,-0.012113712728024,-0.039255861192942],[0.067145206034184,-0.065420247614384,-0.097017399966717]],[[-0.050825342535973,0.10426495224237,-0.072857119143009],[-0.083815276622772,-0.025587249547243,-0.019322337582707],[0.014648557640612,-0.029271874576807,0.12187844514847]],[[0.09479246288538,-0.10050491243601,-0.27075764536858],[-0.079913407564163,-0.33426055312157,-0.23995104432106],[0.11734729260206,-0.013516697101295,-0.18000644445419]],[[0.02564156614244,-0.10219254344702,-0.088289469480515],[-0.045438516885042,-0.060585498809814,-0.026947159320116],[0.068640999495983,0.21141661703587,0.017389602959156]],[[0.022773029282689,-0.026647010818124,0.12164735794067],[0.042087480425835,-0.062577337026596,-0.069916807115078],[0.038201604038477,-0.038453098386526,-0.045113652944565]],[[-0.025752123445272,0.005375178065151,-0.092997401952744],[0.080201834440231,0.0043787662871182,0.01095274835825],[0.13930398225784,-0.1448225826025,-0.11925906687975]],[[-0.14055642485619,-0.032825440168381,-0.0040883314795792],[-0.11146619170904,-0.07941272854805,0.040132135152817],[0.0097208535298705,-0.079757653176785,0.074352703988552]],[[-0.050901044160128,-0.13669946789742,-0.03648392111063],[-0.056351490318775,-0.17662978172302,-0.16445446014404],[0.19439116120338,-0.1276431530714,0.1378328204155]],[[0.063928410410881,0.07249553501606,-0.042185939848423],[0.10247037559748,-0.06468454003334,-0.067366622388363],[-0.11467313766479,-0.020790452137589,0.044853143393993]],[[0.030500147491693,-0.11650162935257,0.024823550134897],[0.070001848042011,-0.11672988533974,-0.10415969789028],[-0.023761864751577,0.13328176736832,0.10282279551029]],[[-0.017554868012667,-0.053715892136097,0.023695768788457],[-0.11366184800863,-0.0012433900265023,-0.044634036719799],[-0.082316994667053,-0.11536405235529,0.067345932126045]],[[-0.19774995744228,0.072762049734592,-0.42441111803055],[-0.055633351206779,-0.27121043205261,-0.074596680700779],[0.057695563882589,-0.14824253320694,0.05954697728157]],[[0.28748208284378,0.0035061619710177,-0.033140651881695],[-0.090265363454819,-0.39289343357086,-0.091858275234699],[0.0061270459555089,0.14554452896118,0.037645187228918]],[[0.20321327447891,0.036268100142479,-0.0094698704779148],[0.063992060720921,-0.22146892547607,-0.025480799376965],[0.10197491198778,0.0073371529579163,-0.010655340738595]],[[-0.034948129206896,0.013197510503232,-0.0070362063124776],[-0.16067241132259,0.0061982753686607,-0.012437383644283],[-0.094143092632294,-0.09851898252964,0.072256796061993]],[[-0.029684623703361,0.2962161898613,-0.12275361269712],[0.039513051509857,-0.19444255530834,-0.16499048471451],[0.074944190680981,-0.066968135535717,-0.10359581559896]],[[-0.055888671427965,0.043738253414631,-0.0020630022045225],[-0.07486666738987,-0.18532928824425,-0.14764262735844],[0.04962083697319,0.027360673993826,-0.085920728743076]]],[[[0.26709920167923,-0.096434719860554,0.0037050016690046],[-0.10131385922432,-0.28274363279343,0.003823549952358],[-0.17116615176201,0.18996793031693,0.052364453673363]],[[-0.064332351088524,-0.010425040498376,-0.041565448045731],[0.071851670742035,0.057805895805359,-0.019018651917577],[0.092895239591599,0.055045399814844,-0.076452225446701]],[[-0.008550594560802,-0.036920204758644,-0.021234320476651],[-0.1042827963829,0.091262273490429,-0.0051294029690325],[0.011896518059075,0.017833126708865,0.021852020174265]],[[0.032328266650438,0.015585678629577,0.0055335201323032],[-0.23100410401821,-0.11411838233471,0.045324083417654],[-0.11378168314695,-0.037440564483404,0.041718021035194]],[[0.088695511221886,0.20146039128304,0.11720494925976],[0.018345791846514,0.011945016682148,-0.14775463938713],[0.02826164290309,0.074710041284561,-0.047524593770504]],[[0.061216857284307,-0.12185180187225,0.15929684042931],[-0.15423965454102,-0.24443475902081,0.066317394375801],[0.05727269127965,-0.001516995835118,0.21610908210278]],[[0.061145167797804,-0.24041357636452,-0.0011932868510485],[0.011537862941623,0.01125514972955,0.016072971746325],[0.041285693645477,-0.056507281959057,0.026400471106172]],[[-0.0012199605116621,0.056976940482855,0.0049281520769],[-0.09210005402565,0.16732110083103,0.067219376564026],[0.054297901690006,-0.31987655162811,0.011643016710877]],[[-0.059141263365746,-0.026633622124791,0.031476076692343],[-0.03609960898757,-0.0845727622509,0.04205272719264],[-0.072684206068516,0.040260173380375,0.013369764201343]],[[0.048489812761545,-0.021877782419324,0.031497623771429],[0.10283783078194,-0.056225709617138,0.031342089176178],[-0.066436849534512,-0.23829686641693,-0.069594897329807]],[[-0.21012289822102,0.050317972898483,0.026336235925555],[-0.11773862689734,0.099680155515671,-0.017879007384181],[-0.0094865188002586,0.12395118921995,0.033228404819965]],[[0.029652437195182,-0.045496802777052,-0.10775793343782],[-0.15390717983246,0.061619628220797,0.062188323587179],[-0.044600363820791,0.063110060989857,-0.0016419043531641]],[[-0.064665429294109,0.048362355679274,0.0065530417487025],[0.047470595687628,-0.03241066262126,-0.0043272715993226],[0.045435320585966,0.0075651472434402,-0.21334628760815]],[[-0.033920686691999,-0.038229379802942,-0.082796655595303],[-0.20003196597099,-0.013808941468596,-0.011057727970183],[0.045489922165871,0.22294840216637,0.34412476420403]],[[0.049259301275015,-0.26623925566673,-0.017763627693057],[-0.11505274474621,-0.22959437966347,-0.27838778495789],[-0.012163333594799,-0.10535024106503,0.066186644136906]],[[-0.068867139518261,-0.015600254759192,-0.027755539864302],[0.031664568930864,-0.034407429397106,-6.029728683643e-05],[-0.011200090870261,0.055700082331896,0.10812659561634]],[[-0.00035431829746813,-0.16583068668842,0.039600569754839],[-0.15760488808155,-0.15665365755558,-0.026983950287104],[-0.00062837853329256,-0.1149363592267,-0.026345413178205]],[[0.021441264078021,-0.0063152625225484,-0.01630543731153],[-0.023189278319478,-0.083346769213676,0.032567240297794],[0.15128760039806,-0.044922728091478,-0.21590116620064]],[[-0.16588854789734,-0.18463030457497,-0.14243000745773],[-0.065679050981998,-0.15937431156635,0.14642906188965],[0.04506029933691,0.083673723042011,0.13561457395554]],[[0.14278617501259,0.039493393152952,-0.068718910217285],[0.11445458978415,-0.22040429711342,0.044551741331816],[0.04818731546402,-0.037114590406418,0.12223787605762]],[[-0.043763011693954,0.082657672464848,-0.056848648935556],[-0.013031750917435,-0.0199288520962,0.056491121649742],[0.017581390216947,-0.044005688279867,-0.20157918334007]],[[-0.11233430355787,-0.026689229533076,-0.063781976699829],[-0.039583258330822,0.12409161031246,0.16444005072117],[-0.036629550158978,-0.0023990655317903,-0.082344532012939]],[[0.082789815962315,0.001095627900213,-0.040094170719385],[0.070945657789707,0.090553589165211,0.016408760100603],[-0.16278949379921,-0.068647600710392,-0.025017529726028]],[[0.1808297932148,-0.015656122937799,0.030957002192736],[-0.0082614086568356,-0.16544714570045,0.043281815946102],[0.14869956672192,-0.21787068247795,0.11606243252754]],[[-0.073057755827904,-0.096510715782642,-0.081408731639385],[0.17150111496449,0.048227313905954,0.037058439105749],[-0.033680528402328,0.046783458441496,0.081049434840679]],[[-0.092696964740753,0.12922322750092,0.00068344554165378],[0.11600326746702,0.034067511558533,-0.074422836303711],[-0.015802443027496,0.088778242468834,0.086296938359737]],[[-0.17092098295689,0.049734406173229,0.087384521961212],[-0.073460482060909,0.055695872753859,0.066991910338402],[0.0092525295913219,-0.014321799390018,0.059079427272081]],[[-0.098488576710224,-0.18050456047058,-0.060707204043865],[-0.034799601882696,-0.099198624491692,0.010503428988159],[-0.065237633883953,-0.076186493039131,0.075436525046825]],[[-0.11615214496851,-0.0032061678357422,-0.094533704221249],[-0.083017148077488,0.0047515765763819,0.03300903365016],[-0.020788485184312,0.18396762013435,0.092589169740677]],[[0.050878696143627,0.0079156588762999,0.002671888563782],[0.014707700349391,0.02185020968318,0.026907864958048],[-0.076905809342861,-0.065450802445412,-0.057336773723364]],[[0.10017014294863,-0.048100091516972,-0.068060360848904],[-0.30580896139145,-0.099976286292076,-0.084757529199123],[0.028314912691712,0.0025025107897818,0.045322269201279]],[[-0.035813003778458,-0.0070349578745663,-0.021757535636425],[-0.080443173646927,0.027262458577752,-0.055362828075886],[-0.064314529299736,-0.030422508716583,-0.12689927220345]]]],"nOutputPlane":32,"kW":3,"kH":3,"bias":[-0.0026041497476399,0.077446632087231,-0.047297861427069,0.0022955257445574,0.040826551616192,0.00065080152126029,0.0062742820009589,-0.019301529973745,0.072285123169422,-0.024208294227719,0.011355210095644,-0.0094241518527269,-0.0023409076966345,-0.010293655097485,0.074343860149384,-0.025132851675153,0.025404704734683,-0.03433284163475,-0.0020207504276186,-0.050917603075504,0.013147708959877,-0.036662396043539,-0.024414304643869,-0.00050778541481122,-0.01091155782342,-0.0035636734683067,-0.10031608492136,0.0023825995158404,-0.049779001623392,-0.12880624830723,-0.0049671921879053,0.016454314813018],"nInputPlane":32},{"weight":[[[[-0.021283071488142,-0.13618849217892,-0.12190587818623],[0.0036923189181834,-0.069371558725834,-0.18179956078529],[0.010163690894842,0.085158571600914,0.023769814521074]],[[0.021638048812747,-0.039287637919188,-0.026817835867405],[-0.045664101839066,-0.083133473992348,0.17592835426331],[0.074613496661186,0.056593336164951,-0.0020271358080208]],[[-0.027045007795095,-0.019020564854145,-0.010793653316796],[-0.20083671808243,0.059710670262575,0.11149515211582],[0.036664612591267,-0.0023269583471119,-0.03476832434535]],[[-0.041916660964489,-0.039217989891768,-0.051377557218075],[-0.11767449229956,0.012675259262323,0.02986097894609],[-0.024778611958027,0.021793236956,0.11842633038759]],[[-0.034380830824375,-0.056207306683064,0.036716032773256],[-0.08913416415453,0.026955559849739,0.007702003698796],[-0.031422268599272,0.065863907337189,0.097642131149769]],[[-0.10646644979715,-0.010336666367948,-0.17887327075005],[0.034730583429337,-0.13639502227306,0.11400298774242],[-0.14617608487606,-0.095566436648369,0.045081112533808]],[[-0.054449167102575,0.085047192871571,-0.10966452211142],[-0.099478237330914,-0.16861110925674,0.0086109582334757],[0.17020075023174,0.083163753151894,0.044255528599024]],[[-0.057326789945364,-0.11052712798119,-0.02319810166955],[-0.0673748254776,-0.18533281981945,0.033290430903435],[-0.095012806355953,0.033087585121393,0.049723133444786]],[[-0.0039183697663248,-0.018529141321778,-0.066762208938599],[0.011743077076972,-0.090909898281097,-0.013390764594078],[0.10038346797228,0.0065055205486715,0.054755453020334]],[[-0.085900396108627,0.16132858395576,0.037231542170048],[0.18074049055576,0.040306061506271,0.044032257050276],[-0.14048585295677,-0.084709286689758,0.050272140651941]],[[0.025507535785437,0.058606069535017,-0.16682371497154],[0.01657422631979,0.0078937746584415,-0.07367579638958],[0.00087602419080213,0.010368858464062,0.024257715791464]],[[0.041521277278662,0.10527929663658,-0.13868774473667],[-0.035727825015783,-0.12171552330256,-0.06765753030777],[0.097829051315784,0.035799719393253,0.066665105521679]],[[-0.014738376252353,0.15022470057011,-0.085644513368607],[-0.13627453148365,0.0038476923946291,0.22085852921009],[0.11047602444887,0.13146352767944,0.095638118684292]],[[-0.055149275809526,0.12364811450243,-0.087184056639671],[0.026297818869352,0.032422445714474,-0.064721018075943],[-0.08652526140213,-0.094158925116062,-0.012622486799955]],[[0.021457348018885,-0.062195047736168,-0.095374085009098],[-0.024187905713916,0.024022022262216,0.020873967558146],[0.13414607942104,-0.0039260457269847,-0.0090105626732111]],[[0.08479268103838,0.10177457332611,-0.068137504160404],[0.016553124412894,-0.08800633251667,-0.017892515286803],[0.13379755616188,-0.026240916922688,0.026869565248489]],[[0.035617806017399,-0.096328347921371,-0.081069521605968],[0.01409016083926,0.012718117795885,-0.0018081307644024],[-0.092851467430592,-0.0610809661448,-0.033320281654596]],[[-0.065596453845501,-0.089752271771431,-0.076507814228535],[-0.052702490240335,-0.016479011625051,0.0090280026197433],[0.0023622331209481,0.034707650542259,0.043935041874647]],[[-0.10980091243982,-0.21938057243824,-0.023345738649368],[-0.14832966029644,-0.13583485782146,0.091125592589378],[-0.11887380480766,-0.028214750811458,0.063752636313438]],[[-0.025204604491591,0.043022859841585,-0.13646820187569],[-0.096031799912453,-0.001697568455711,-0.031101118773222],[-0.02017811127007,0.05691722035408,0.090336263179779]],[[-0.011991986073554,-0.05669018253684,-0.16288316249847],[0.050427846610546,-0.080153465270996,0.013229142874479],[0.07205855846405,0.063704319298267,-0.037947662174702]],[[-0.03208077326417,-0.065974682569504,0.13608281314373],[-0.15672387182713,0.18653167784214,0.13973225653172],[-0.017538335174322,0.013657605275512,0.090750940144062]],[[0.013879930600524,-0.12738810479641,0.025479396805167],[-0.1327408850193,-0.13551619648933,0.19279924035072],[-0.028965890407562,0.054112430661917,0.14789025485516]],[[-0.14111489057541,-0.079757981002331,-0.11476630717516],[-0.015041061677039,0.011381386779249,-0.064980357885361],[0.1975961625576,0.15936289727688,-0.025773977860808]],[[0.027809264138341,0.031894151121378,-0.13332653045654],[-0.02698715031147,-0.038329131901264,-0.086183078587055],[0.11727789789438,0.1895308047533,-0.06735698133707]],[[-0.15636312961578,-0.053237974643707,0.020455395802855],[0.072107307612896,0.083575189113617,-0.067877635359764],[-0.083644732832909,0.082762628793716,-0.076030686497688]],[[0.058182030916214,-0.024528531357646,0.056165628135204],[0.069655016064644,-0.11524725705385,-0.063323475420475],[-0.063432015478611,0.062299355864525,0.037523046135902]],[[0.045294497162104,0.046394389122725,0.013292667455971],[-0.022200170904398,0.19266919791698,0.057808768004179],[-0.076127603650093,0.017922818660736,-0.16077318787575]],[[0.057283706963062,-0.15890583395958,-0.25730574131012],[-0.076269797980785,-0.17534628510475,0.031500596553087],[0.064915098249912,0.0050154998898506,0.012414893135428]],[[0.070444986224174,-0.032774638384581,-0.096849292516708],[-0.031354159116745,0.034084927290678,-0.077310532331467],[0.06323828548193,-0.023610169067979,-0.011895797215402]],[[-0.17785322666168,-0.12303067743778,0.07566411793232],[0.095515713095665,0.0069462163373828,-0.13086387515068],[0.039761804044247,0.075913295149803,0.06726611405611]],[[-0.063616372644901,-0.088983647525311,-0.084868185222149],[-0.02314162440598,-0.018742235377431,-0.14334611594677],[-0.036999113857746,0.024184627458453,-0.048656608909369]]],[[[-0.057173892855644,0.044880222529173,-0.017301704734564],[0.025801666080952,-0.05491066724062,-0.075894474983215],[-0.036221172660589,-0.022175062447786,-0.021396290510893]],[[0.056045632809401,0.056418675929308,-0.01361184194684],[0.081629745662212,0.063745073974133,-0.039834000170231],[0.0040040030144155,-0.058859303593636,-0.026510216295719]],[[0.064597368240356,0.039636593312025,-0.091787092387676],[0.090575151145458,0.091435886919498,-0.11259789764881],[-0.062405161559582,0.034002512693405,-0.12871789932251]],[[-0.087982274591923,-0.1142286658287,-0.077721707522869],[0.0791075527668,0.069325387477875,-0.08080480992794],[0.055189870297909,-0.030603131279349,-0.076065443456173]],[[-0.026417100802064,-0.027370307594538,0.013504162430763],[-0.04708768799901,-0.089442625641823,0.034887380897999],[0.00069101637927815,-0.0087915454059839,-0.073803633451462]],[[0.018631272017956,0.013085550628603,-0.047212891280651],[0.048607230186462,-0.034536216408014,0.049593392759562],[0.1301421970129,0.059867456555367,-0.082818396389484]],[[0.082000233232975,0.081824488937855,-0.042077414691448],[-0.074939608573914,-0.10465477406979,-0.11662118136883],[0.1159838065505,0.21305868029594,0.047523207962513]],[[-0.025834824889898,-0.00034333544317633,0.062866017222404],[-0.0385497584939,-0.18919017910957,0.14595110714436],[-0.087256215512753,-0.13637189567089,0.11417159438133]],[[0.079356662929058,-0.075984813272953,-0.022475549951196],[0.046371217817068,0.094200633466244,-0.056401968002319],[0.06713043898344,-0.028555981814861,0.052389614284039]],[[-0.052765868604183,0.013420953415334,0.17977398633957],[-0.080246970057487,0.043806318193674,0.10251244157553],[0.082831412553787,-0.11633797734976,-0.060344319790602]],[[0.0084083722904325,0.085415944457054,0.007390464656055],[0.025940151885152,0.024373304098845,0.054127227514982],[0.12384433299303,-0.020021099597216,0.045979682356119]],[[-0.045925818383694,-0.08005940169096,0.097874872386456],[-0.02895681001246,-0.12602922320366,-0.072966575622559],[-0.013520205393434,-0.043876960873604,0.01629926264286]],[[-0.051721546798944,-0.096320629119873,-0.0090235527604818],[0.03337162733078,-0.083861850202084,0.097568474709988],[0.096005208790302,-0.056103803217411,-0.01256915088743]],[[-0.060173403471708,0.083462633192539,0.09284171462059],[-0.16393332183361,-0.01374885533005,0.037180576473475],[-0.07090400159359,0.053249228745699,0.084878645837307]],[[-0.084124185144901,-0.081673488020897,0.025527372956276],[-0.055166516453028,0.061885870993137,0.048258479684591],[-0.13962981104851,0.05487509444356,0.026626450940967]],[[0.078129798173904,0.069067262113094,-0.015939818695188],[-0.018938602879643,-0.039627447724342,-0.074058532714844],[0.011599724180996,-0.076843813061714,0.046457149088383]],[[-0.014702267944813,-0.060220092535019,0.014930218458176],[-0.029023315757513,-0.087905146181583,-0.025850696489215],[0.072339966893196,0.082343697547913,-0.042609445750713]],[[0.057046752423048,0.029951309785247,0.027810653671622],[0.095809660851955,-0.13022178411484,-0.10780929774046],[0.086050279438496,-0.040969476103783,0.014055715873837]],[[0.010579674504697,-0.13852748274803,0.083726160228252],[0.062589690089226,-0.14883613586426,0.051937088370323],[0.021428039297462,-0.27414789795876,-0.13658338785172]],[[0.085869625210762,0.13845294713974,0.063383102416992],[0.079839251935482,0.06179765611887,-0.068215042352676],[0.064892925322056,-0.084546886384487,0.040992576628923]],[[0.1190937384963,-0.1044414639473,0.056201294064522],[0.099226623773575,-0.035511683672667,0.051122657954693],[0.14731062948704,-0.22191628813744,-0.098750464618206]],[[-0.001262936508283,0.058061018586159,0.16884495317936],[-0.04421079531312,0.12141813337803,-0.013675450347364],[-0.22095669806004,-0.0017464874545112,0.064755700528622]],[[0.10619293898344,-0.031123021617532,-0.013600523583591],[-0.074159488081932,-0.086625464260578,-0.09119663387537],[0.032328944653273,0.074452012777328,-0.0080992095172405]],[[0.059542495757341,-0.029509672895074,0.012023163959384],[-0.050315890461206,0.022101689130068,-0.02847507968545],[-0.043388210237026,0.022427273914218,-0.01955047622323]],[[-0.061580911278725,0.0054938085377216,0.02055586501956],[-0.086403965950012,-0.041803255677223,0.10419029742479],[-0.074695415794849,-0.14825098216534,-0.0925387814641]],[[0.033276084810495,-0.019737556576729,0.030664166435599],[-0.079006999731064,-0.16564244031906,-0.056333657354116],[0.052964523434639,-0.0055007161572576,-0.060774948447943]],[[0.017261037603021,-0.031979236751795,0.0050315777771175],[0.08946081250906,-0.01853334903717,-0.063872173428535],[0.052172098308802,-0.063907861709595,-0.025311749428511]],[[-0.11769545823336,0.14563435316086,0.044904842972755],[0.029450286179781,0.078038923442364,0.1287043094635],[-0.049299165606499,0.094754971563816,-0.085243128240108]],[[0.034399759024382,-0.0022383579052985,-0.023401524871588],[-0.0045943860895932,0.049886278808117,-0.072362214326859],[-0.014008811675012,0.13637529313564,-0.035470310598612]],[[0.20866665244102,-0.16270911693573,-0.014458467252553],[0.13031750917435,-0.1153479218483,0.073249444365501],[0.11150746047497,-0.10085882246494,-0.17892257869244]],[[-0.18596187233925,-0.029717713594437,0.10162824392319],[0.02640132047236,-0.013248640112579,0.021827729418874],[-0.061723191291094,-0.045299787074327,0.092626661062241]],[[-0.11269153654575,0.0068689216859639,-0.027076357975602],[-0.010392917320132,-0.073220483958721,0.052436746656895],[-0.0050151022151113,-0.00080982892541215,0.0025595619808882]]],[[[-0.029235057532787,-0.021252557635307,-0.095396302640438],[-0.19409489631653,-0.13864263892174,0.077306665480137],[0.021167168393731,-0.088500417768955,0.015214434824884]],[[-0.058169506490231,0.033656045794487,-0.020689368247986],[0.098340921103954,-0.058901526033878,0.020842416211963],[-0.13816252350807,0.033464290201664,0.070169322192669]],[[0.0030170106329024,-0.16614082455635,0.26348638534546],[0.17364643514156,0.095606982707977,-0.12907680869102],[-0.10224162042141,-0.2252261787653,-0.32516035437584]],[[0.10216087847948,0.047391448169947,-0.12299270927906],[0.027924548834562,-0.032484568655491,-0.092708118259907],[-0.037870340049267,0.0038308084476739,-0.098990879952908]],[[-0.045465037226677,-0.079815067350864,0.05002548545599],[-0.0039281793870032,0.051099695265293,-0.089565701782703],[0.033038385212421,0.014592678286135,0.0068472395651042]],[[0.14928430318832,-0.054721374064684,-0.19629755616188],[-0.075919285416603,0.092226088047028,0.033495031297207],[0.069903500378132,0.10672502219677,0.099771939218044]],[[-0.13638105988503,0.032242711633444,-0.060933880507946],[0.02808459289372,0.024109531193972,0.076041370630264],[-0.086413167417049,-0.021378478035331,0.019538598135114]],[[-0.12149188667536,-0.066752232611179,-0.093995407223701],[-0.15861314535141,0.0053460798226297,-0.12933245301247],[0.044316630810499,-0.030270559713244,-0.16058538854122]],[[-0.02660701982677,0.08010395616293,0.055159013718367],[0.043765351176262,0.018642826005816,-0.092738807201385],[-0.035657353699207,-0.032961953431368,0.015932243317366]],[[-0.043046347796917,0.0023313849233091,0.16823598742485],[-0.11030343919992,-0.030480217188597,0.01449824962765],[-0.06911738216877,-0.048404544591904,-0.11931005865335]],[[-0.030274080112576,-0.043745514005423,-0.084523357450962],[0.0067017101682723,0.035723142325878,-0.018649730831385],[-0.11559613794088,-0.054782461374998,-0.043099869042635]],[[0.14263921976089,0.027482353150845,-0.0073278597556055],[0.065186575055122,-0.072407811880112,0.060572441667318],[-0.29904001951218,-0.044879708439112,-0.11848614364862]],[[0.039435885846615,0.070390783250332,-0.15241859853268],[0.0036287354305387,-0.14941568672657,-0.021152367815375],[0.050378806889057,-0.099664486944675,0.11474768817425]],[[0.075011007487774,-0.0018172716954723,-0.040491715073586],[-0.11638313531876,-0.040102906525135,0.050984062254429],[0.036811649799347,-0.08973790705204,-0.0048128445632756]],[[0.049856185913086,-0.060443088412285,0.053529758006334],[0.0095275668427348,0.05741324275732,0.048098489642143],[-0.032763604074717,-0.07399682700634,-0.0078861135989428]],[[-0.093648642301559,-0.052700381726027,0.0019837394356728],[-0.016593862324953,0.13266286253929,-0.25149691104889],[-0.15682335197926,-0.15400582551956,0.11039886623621]],[[-0.051200237125158,-0.017387494444847,-0.099244952201843],[-0.006464384496212,0.0016401610337198,-0.043966520577669],[0.036150202155113,0.10973891615868,-0.028001355007291]],[[-0.015480453148484,0.032866090536118,0.028557831421494],[0.062156289815903,-0.12032814323902,-0.1039506867528],[0.010326700285077,0.11781003326178,-0.0047231167554855]],[[-0.055083464831114,-0.086123637855053,0.015254780650139],[-0.027692016214132,-0.042555451393127,-0.078742355108261],[-0.038107879459858,-0.1042830273509,0.049052249640226]],[[0.048453703522682,-0.090994872152805,0.14694835245609],[-0.037807207554579,-0.049383018165827,0.019398309290409],[-0.010839086957276,-0.047167763113976,-0.047114495187998]],[[0.062994658946991,-0.085741020739079,-0.0019632061012089],[-0.019112788140774,0.19966439902782,-0.020296156406403],[-0.11479499191046,-0.095811605453491,-0.024918058887124]],[[0.018210157752037,-0.023809807375073,0.05936224386096],[0.032854612916708,0.10305640101433,-0.076542548835278],[-0.091513246297836,-0.14864429831505,-0.14301700890064]],[[-0.10992331057787,0.11693182587624,0.071997255086899],[-0.11861751228571,-0.11678320169449,-0.197419911623],[-0.10212036967278,-0.084121234714985,-0.011872939765453]],[[0.029690820723772,-0.10594956576824,0.014030426740646],[-0.12099204957485,-0.17153905332088,-0.17946754395962],[-0.15185004472733,-0.018469719216228,0.0073553649708629]],[[-0.0073314025066793,-0.064756624400616,0.052193578332663],[0.0075864098034799,0.017576785758138,-0.024694828316569],[0.076557539403439,-0.15754260122776,-0.13961414992809]],[[0.006232928019017,-0.20139816403389,-0.11924317479134],[-0.054216150194407,-0.17067876458168,0.035922203212976],[0.063591241836548,0.16896341741085,0.0072313160635531]],[[-0.0096728457137942,-0.0029862618539482,-0.051604930311441],[-0.08342556655407,0.093333035707474,0.018566001206636],[0.037060644477606,-0.029949398711324,-0.027915673330426]],[[0.027696259319782,-0.049196813255548,0.034387994557619],[0.065753005445004,-0.16028399765491,0.028701519593596],[-0.01791082136333,0.011501306667924,0.22460949420929]],[[-0.07319749891758,-0.023762505501509,0.0028510103002191],[-0.049824230372906,0.057428173720837,-0.018867027014494],[-0.040170069783926,-0.29655641317368,-0.089484609663486]],[[0.004988569766283,-0.11989632248878,-0.072381131350994],[0.034183219075203,0.0086636459454894,-0.022793915122747],[0.066937558352947,-0.016490049660206,0.089122124016285]],[[0.080654583871365,-0.045841876417398,-0.26173481345177],[-0.087446823716164,0.016889207065105,0.041926585137844],[0.015225529670715,0.17427724599838,-0.15549363195896]],[[0.044283702969551,0.17118769884109,0.032927181571722],[-0.079746410250664,-0.32312524318695,-0.16235753893852],[-0.085360080003738,-0.012981435284019,0.076370790600777]]],[[[-0.076170168817043,-0.061673473566771,-0.026435302570462],[-0.082511685788631,-0.18499191105366,-0.083029605448246],[0.11364244669676,0.13528300821781,0.027423175051808]],[[-0.058289729058743,0.03202373534441,0.089527383446693],[-0.065196946263313,-0.056450814008713,0.056829296052456],[-0.043990381062031,-0.01388050056994,0.089436359703541]],[[0.065574370324612,0.085806004703045,-0.16689915955067],[0.094305247068405,0.031170243397355,-0.060044832527637],[-0.020424963906407,0.16064721345901,-0.18918178975582]],[[-0.03818641602993,-0.04164694994688,-0.059395849704742],[-0.085262164473534,0.00097973155789077,0.02921668253839],[0.055294990539551,0.01955384761095,0.075051575899124]],[[0.017527315765619,-0.018486205488443,-0.040891755372286],[0.026388809084892,-0.011318706907332,-0.013230110518634],[0.073116235435009,0.068809047341347,0.0053684236481786]],[[0.065566554665565,-0.11249732226133,-0.042065225541592],[-0.048986323177814,0.02835907228291,-0.03661522269249],[-0.007817791774869,0.19964134693146,-0.036039222031832]],[[-0.019125029444695,0.065340429544449,-0.035330023616552],[0.047610148787498,0.0018976101418957,0.11969593912363],[-0.12755089998245,-0.10002519190311,0.016875363886356]],[[-0.034004908055067,0.050691656768322,0.1031808257103],[-0.026171490550041,-0.052483413368464,0.14792311191559],[0.034540113061666,0.08281896263361,0.064973808825016]],[[-0.099597588181496,-0.072909787297249,-0.017279213294387],[0.046764608472586,-0.0015009399503469,0.13366840779781],[0.012226817198098,-0.032859787344933,-0.0080182058736682]],[[0.045186076313257,-0.03668512403965,-0.1527905613184],[-0.01059359870851,0.0062027531675994,0.033566933125257],[0.069864593446255,0.011812108568847,-0.04302004352212]],[[-0.035414528101683,-0.033929251134396,0.079596102237701],[-0.0023124972358346,-0.096828125417233,-0.090355359017849],[-0.056904323399067,-0.16990901529789,-0.060109164565802]],[[0.088138021528721,0.059826124459505,0.0030460325069726],[-0.093087449669838,-0.047886051237583,-0.025892490521073],[0.065230563282967,-0.037252027541399,0.061399456113577]],[[0.053343221545219,-0.1087758243084,0.11731457710266],[-0.0032845775131136,-0.017919288948178,-0.076980069279671],[0.014928963035345,-0.0036192559637129,0.02386068366468]],[[0.024068512022495,0.10351190716028,0.10271262377501],[-0.010039242915809,-0.040715251117945,0.055396664887667],[0.086847051978111,-0.043952062726021,0.0077772131189704]],[[0.03169459477067,-0.092348344624043,0.10965528339148],[-0.1012209430337,0.036589104682207,0.0065590185113251],[0.078248962759972,-0.048223108053207,-0.048868704587221]],[[-0.062453094869852,-0.034818306565285,0.075241394340992],[-0.13359241187572,0.018217327073216,0.065124809741974],[-0.018714400008321,0.013199168257415,0.041631560772657]],[[-0.027160435914993,0.056949146091938,0.097702853381634],[-0.030543992295861,0.016266070306301,-0.034021358937025],[0.03617449849844,0.06744484603405,-0.022827964276075]],[[-0.062898136675358,-0.059195764362812,0.072259590029716],[0.051082260906696,-0.0090224053710699,0.024548692628741],[-0.074930518865585,-0.075878612697124,0.19146656990051]],[[0.030522663146257,0.0045582414604723,0.10734862834215],[-0.01474096160382,-0.11515857279301,0.061830449849367],[0.13746683299541,0.083847932517529,-0.029341889545321]],[[-0.0077313417568803,-0.078528024256229,0.05065705999732],[0.13741056621075,0.070958867669106,0.040036890655756],[0.068006619811058,-0.10252353549004,0.10198192298412]],[[-0.076077908277512,0.024793041869998,-0.048273704946041],[-0.071219108998775,-0.026049144566059,0.037827715277672],[-0.011221269145608,0.042253017425537,-0.033248156309128]],[[0.069141082465649,0.015194520354271,-0.107282102108],[-0.022094724699855,0.052551116794348,-0.074215233325958],[0.17228172719479,0.077200695872307,-0.076405212283134]],[[-0.0085358386859298,-0.0050233365036547,-0.026046520099044],[0.055837921798229,-0.01423785276711,0.030620751902461],[0.061701036989689,0.035410702228546,-0.0691824182868]],[[-0.086007036268711,-0.12249912321568,0.072097815573215],[-0.05201818421483,-0.091176226735115,0.079518899321556],[-0.050587117671967,-0.043777067214251,0.10772342979908]],[[-0.14338034391403,0.040462609380484,-0.02909198962152],[-0.19743433594704,-0.13191691040993,-0.032576404511929],[0.019912542775273,0.025046084076166,0.036204021424055]],[[0.013652984984219,0.011373263783753,0.046241752803326],[0.022534837946296,-0.065807916224003,0.056645419448614],[0.092464677989483,0.12911914288998,0.045192021876574]],[[-0.022618876770139,-0.0076202712953091,-0.075191847980022],[0.095872960984707,0.0091324718669057,-0.005236379802227],[-0.010615488514304,-0.11105071008205,0.094303376972675]],[[-0.033373594284058,0.16855923831463,-0.22450450062752],[-0.12210626900196,0.13450859487057,0.116419441998],[0.013490278273821,0.068544588983059,-0.10658896714449]],[[-0.020510379225016,0.070303484797478,0.096092067658901],[0.06278308480978,-0.0065814922563732,-0.013348130509257],[-0.039672005921602,-0.020795490592718,0.040544595569372]],[[0.061910312622786,0.0467139929533,-0.145701572299],[0.024561792612076,0.064254105091095,-0.043728996068239],[0.056656368076801,-0.043693333864212,-0.043649345636368]],[[0.15545873343945,0.040704265236855,-0.10001263767481],[-0.0095488475635648,0.067217648029327,-0.097338370978832],[0.0029087427537888,0.0083541311323643,-0.029451161623001]],[[-0.12254963815212,-0.15054459869862,-0.036292914301157],[-0.078386172652245,-0.045661844313145,-0.040416065603495],[-0.043764781206846,-0.05612750723958,0.10963337123394]]],[[[0.072647072374821,0.0018567705992609,0.031851630657911],[-0.084062933921814,-0.071967855095863,-0.05121686309576],[-0.054841972887516,-0.15748052299023,-0.052788715809584]],[[-0.081208676099777,0.024927781894803,0.061756797134876],[0.025834115222096,-0.013807914219797,0.049810457974672],[0.039666101336479,-0.023472225293517,-0.033115271478891]],[[0.12214210629463,-0.077204510569572,-0.021389415487647],[0.14083704352379,0.10117366909981,0.052527375519276],[0.042376633733511,0.0029230664949864,-0.026844531297684]],[[0.025931118056178,0.075704127550125,0.057250402867794],[-0.13211737573147,-0.0019245112780482,-0.017369443550706],[-0.10078512132168,-0.084705710411072,0.012300946749747]],[[-0.025790184736252,0.04325245320797,-0.019142827019095],[-0.041486032307148,0.082610256969929,-0.074314326047897],[0.064906723797321,-0.034265615046024,-0.009319786913693]],[[-0.094713091850281,0.097697898745537,-0.13505005836487],[-0.0066551743075252,0.070925377309322,-0.099155932664871],[0.10165530443192,0.042538437992334,0.17153123021126]],[[-0.12859830260277,-0.057956136763096,-0.049572303891182],[0.091169238090515,-0.1300635188818,0.079062812030315],[0.010542614385486,0.0023749489337206,-0.02764654904604]],[[0.018092880025506,-0.068838469684124,0.14452786743641],[-0.035432904958725,-0.16406947374344,-0.034622523933649],[-0.093122057616711,-0.17432001233101,-0.017886931076646]],[[0.034431435167789,0.0081176869571209,0.018169330433011],[-0.066568076610565,0.0079797180369496,-0.053513664752245],[-0.082717761397362,-0.068966820836067,-0.092380180954933]],[[-0.021970313042402,0.012045360170305,0.17019610106945],[-0.046729311347008,0.071174092590809,-0.027278298512101],[-0.020967993885279,0.13064150512218,0.044773254543543]],[[-0.072261586785316,0.011246494948864,0.15232042968273],[-0.10859136283398,-0.043747797608376,0.012010578066111],[0.099609732627869,-0.11179211735725,-0.068033508956432]],[[0.046599101275206,-0.010162737220526,0.0091748693957925],[-0.047973323613405,0.10808258503675,0.0092347972095013],[0.001924539799802,0.069959834218025,-0.016412297263741]],[[0.057860258966684,0.14000418782234,-0.096162885427475],[-0.072610899806023,0.0012884195894003,-0.12449752539396],[-0.10980599373579,-0.091480381786823,-0.10337482392788]],[[0.06286197155714,0.0051711103878915,0.076555281877518],[-0.075302422046661,-0.10045978426933,-0.058712791651487],[-0.143889144063,-0.22169969975948,-0.0054568229243159]],[[0.071315847337246,-0.033940903842449,0.043082270771265],[-0.0071331229992211,-0.021586704999208,0.056927885860205],[0.013960954733193,-0.045230492949486,0.057175107300282]],[[0.047212094068527,0.13336801528931,-0.17313912510872],[0.084585212171078,-0.012526114471257,-0.015582879073918],[-0.017585933208466,-0.16673435270786,-0.035331845283508]],[[-0.054270356893539,0.019442183896899,-0.052782762795687],[-0.02368214353919,-0.068269349634647,0.10530766099691],[0.10368469357491,-0.06529001891613,-0.080359421670437]],[[-0.034361708909273,0.14282901585102,-0.03886166587472],[0.055335279554129,-0.096872366964817,0.047595668584108],[-0.10074019432068,-0.009057592600584,0.0015229218406603]],[[0.11864711344242,0.064113490283489,0.10001624375582],[0.018428951501846,-0.0083973556756973,-0.042056154459715],[-0.13342426717281,-0.098200380802155,-0.098935201764107]],[[0.092093802988529,0.092616863548756,0.13309042155743],[-0.075069487094879,0.064168192446232,-0.0078774532303214],[-0.052346311509609,-0.12636455893517,-0.048269242048264]],[[0.11056654155254,0.12760849297047,0.077098533511162],[-0.068970181047916,-0.14802633225918,-0.031011650338769],[-0.099467359483242,-0.0043886946514249,-0.17092932760715]],[[-0.12339419126511,-0.090866580605507,0.080011278390884],[0.11372103542089,0.09923343360424,-0.00033860717667267],[0.059777218848467,0.036089457571507,0.065627112984657]],[[-0.073866300284863,0.02869638428092,-0.10566176474094],[0.060175117105246,-0.056392762809992,0.024422999471426],[-0.11305287480354,-0.0059537007473409,-0.023916017264128]],[[0.093118153512478,0.033984251320362,0.052469208836555],[0.029835809022188,0.084197357296944,0.012370012700558],[0.055534657090902,-0.018289787694812,-0.13555175065994]],[[-0.086889185011387,-0.049475196748972,-0.19956104457378],[-0.15943205356598,0.090848907828331,-0.11154828220606],[-0.13820877671242,-0.10041215270758,-0.2036469578743]],[[-0.028058398514986,0.0035315256100148,0.017961475998163],[0.0096135782077909,0.029181206598878,-0.031832858920097],[-0.060157664120197,-0.047180835157633,0.068315543234348]],[[-0.11309356242418,0.041334800422192,-0.097823522984982],[0.04648295417428,0.0021527549251914,0.02565704472363],[-0.06822270154953,0.10580123215914,-0.064263835549355]],[[-0.027189038693905,-0.11367616802454,-0.11969786137342],[0.095690377056599,0.031268812716007,-0.040698114782572],[0.064966693520546,0.0818927064538,0.15784175693989]],[[0.058449182659388,0.012123366817832,0.057647086679935],[-0.03456100448966,0.00021023178123869,0.062314160168171],[-0.045022960752249,-0.093551144003868,-0.047223906964064]],[[0.035404838621616,0.021407425403595,0.054604951292276],[-0.0058620735071599,-0.031552709639072,0.012135700322688],[0.093683868646622,-0.13113196194172,0.013977061025798]],[[0.0042948005720973,0.0019891255069524,0.033827289938927],[0.0043130880221725,-0.099922515451908,0.1467682570219],[-0.12406440079212,-0.018032604828477,-0.055567849427462]],[[-0.037089571356773,-0.088598638772964,0.03430076315999],[0.03236173838377,-0.033262956887484,-0.02198901027441],[-0.044544849544764,-0.041715878993273,0.029933990910649]]],[[[-0.17227528989315,-0.040470011532307,-0.25477677583694],[-0.074743784964085,0.025249108672142,-0.093508839607239],[0.019620226696134,-0.16299676895142,-0.028888443484902]],[[-0.027316596359015,0.014385753311217,0.052713554352522],[-0.062149073928595,-0.014057889580727,-0.10248844325542],[0.076563999056816,-0.022269636392593,0.053815472871065]],[[-0.19383746385574,0.1972953081131,-0.22525873780251],[0.25689914822578,-0.1647774130106,-0.020193915814161],[-0.16541723906994,-0.041035227477551,0.043114081025124]],[[-0.081401847302914,0.014734028838575,-0.059995993971825],[0.057849187403917,-0.19407895207405,-0.026758700609207],[-0.02429836243391,-0.039637170732021,-0.092941366136074]],[[0.00024647143436596,-0.012731798924506,-0.029942862689495],[0.091557241976261,-0.060188561677933,-0.094779156148434],[-0.01886129565537,-0.010266128927469,-0.032227244228125]],[[0.12505181133747,-0.20199918746948,0.028475496917963],[-0.073733828961849,0.0074430368840694,0.17730785906315],[-0.12815716862679,0.082854256033897,-0.2645959854126]],[[-0.097241975367069,-0.15645270049572,-0.04417934268713],[0.11387352645397,-0.25194779038429,0.13112027943134],[-0.018101565539837,-0.24851036071777,0.070553921163082]],[[-0.031487334519625,-0.10941793769598,-0.012468829751015],[-0.051371674984694,0.045430015772581,-0.05244405195117],[-0.019173685461283,-0.13022089004517,0.064566664397717]],[[0.075495764613152,-0.047869239002466,0.077920272946358],[-0.033668406307697,-0.02424780279398,-0.048042025417089],[0.035137392580509,0.11730233579874,0.062582761049271]],[[0.07803488522768,-0.12284023314714,0.08603597432375],[-0.060740575194359,0.016724888235331,0.005250119138509],[-0.11135906726122,0.0039945747703314,-0.15613907575607]],[[0.11206839233637,-0.27586448192596,-0.039716351777315],[-0.10057378560305,0.059439729899168,-0.0032692162785679],[-0.081620164215565,-0.1257663667202,0.12989813089371]],[[-0.08277852088213,-0.083848640322685,0.046393014490604],[0.072120204567909,-0.045498676598072,-0.0936119556427],[0.058654475957155,0.011497059836984,0.072543889284134]],[[0.09311643242836,-0.02900779992342,0.040658712387085],[-0.067677050828934,-0.1050760447979,-0.11467409878969],[0.27518942952156,-0.049863670021296,0.13677340745926]],[[0.17667573690414,-0.014617645181715,0.014319005422294],[-0.019307345151901,-0.19938053190708,0.093783430755138],[-0.12502245604992,-0.036878008395433,-0.18717004358768]],[[-0.072944723069668,0.023156512528658,-0.018217992037535],[-0.083116978406906,0.064546495676041,0.0094175152480602],[0.13613313436508,-0.076815769076347,-0.028362885117531]],[[-0.01212200243026,-0.043991088867188,-0.14238649606705],[-0.2404690682888,-0.17527686059475,0.13766711950302],[0.09843822568655,0.12149755656719,-0.2734195291996]],[[0.031083665788174,-0.0044052083976567,0.024775823578238],[-0.12412666529417,0.062344584614038,-0.028807993978262],[0.060720853507519,-0.065122038125992,-0.014253520406783]],[[-0.054861530661583,0.080571882426739,-0.18622618913651],[-0.087247662246227,-0.032907970249653,-0.28208380937576],[0.15420992672443,0.05768895149231,-0.057150300592184]],[[0.11029074341059,-0.1151729747653,0.032448135316372],[-0.077829621732235,0.011460315436125,-0.10503091663122],[-0.035351678729057,-0.022229176014662,-0.080356806516647]],[[0.010650422424078,-0.11255570501089,-0.094982840120792],[-0.059181697666645,-0.17923019826412,-0.15382233262062],[-0.0099580977112055,0.037446517497301,-0.24444261193275]],[[0.057886756956577,-0.083844199776649,0.053727760910988],[0.023269271478057,-0.082628227770329,0.048662018030882],[-0.04653662070632,0.053196378052235,0.052321989089251]],[[-0.12371218949556,-0.17712907493114,0.21595659852028],[0.080830663442612,0.024017183110118,-0.081743597984314],[-0.20167474448681,-0.021990831941366,0.13541992008686]],[[0.19848184287548,-0.22379054129124,-0.26971170306206],[-0.21646454930305,-0.20651845633984,0.16620896756649],[-0.22021816670895,0.080029226839542,-0.17059607803822]],[[-0.025178639218211,-0.12123547494411,-0.18319036066532],[0.0048828958533704,-0.098205663263798,0.036986369639635],[0.10207602381706,-0.036343328654766,-0.15404817461967]],[[-0.0077424603514373,0.029977843165398,-0.13576485216618],[0.053083349019289,-0.10074792057276,0.012337964959443],[-0.15562142431736,0.020667992532253,-0.11487796157598]],[[0.19966875016689,-0.077113389968872,-0.095161452889442],[-0.26151716709137,-0.012648787349463,-0.19366955757141],[0.054340794682503,0.053904082626104,-0.020062210038304]],[[0.097908452153206,-0.083066284656525,-0.029984217137098],[-0.066788971424103,0.072513401508331,0.010820019990206],[-0.0366783849895,0.10015599429607,-0.016546463593841]],[[-0.039483554661274,-0.036792136728764,-0.077007658779621],[-0.06588264554739,-0.15680262446404,0.22886653244495],[0.12402115017176,-0.010616206564009,-0.14601276814938]],[[-0.095968373119831,0.010778360068798,0.088037580251694],[-0.0018252730369568,-0.03405249863863,-0.23072750866413],[-0.029646182432771,0.065078906714916,-0.1272224932909]],[[0.078326992690563,-0.12254613637924,0.0025767704937607],[-0.044392522424459,0.097581543028355,-0.078875705599785],[-0.0067997938022017,-0.052025306969881,-0.082510143518448]],[[0.21648700535297,-0.19937120378017,0.28830471634865],[-0.17254832386971,0.11265418678522,-0.051937606185675],[-0.26179480552673,-0.078998237848282,-0.094155997037888]],[[-0.076594725251198,-0.06551867723465,0.028422269970179],[-0.079709507524967,5.6916163885035e-05,-0.014017102308571],[-0.036121543496847,-0.031977288424969,-0.043487355113029]]],[[[-0.12259099632502,0.034556090831757,0.0093360198661685],[0.070779293775558,0.02149872481823,0.04253501817584],[0.00020897477224935,0.080580100417137,0.075018763542175]],[[-0.031583175063133,0.045797768980265,0.089605584740639],[0.015302648767829,-0.077570736408234,0.084288336336613],[-0.072236627340317,0.01033350545913,0.022778138518333]],[[0.15543627738953,-0.033537089824677,0.18898874521255],[0.023201614618301,-0.013153753243387,-0.10271628946066],[-0.074631035327911,0.01371662504971,-0.026698410511017]],[[0.10345857590437,0.061201736330986,-0.057146023958921],[0.025335446000099,0.07543458789587,0.043674726039171],[-0.095574833452702,-0.023296786472201,0.02497623860836]],[[0.11764390021563,0.081565104424953,0.13372655212879],[0.13472011685371,-0.056137710809708,0.051339156925678],[-0.059871986508369,-0.15049064159393,-0.06463348865509]],[[-0.03148801997304,-0.051484771072865,0.0024671254213899],[-0.0071688774041831,-0.066876977682114,0.082804337143898],[0.025533095002174,0.14066901803017,-0.070981100201607]],[[-0.14587506651878,-0.14069452881813,0.075767450034618],[0.050616260617971,0.0051568648777902,-0.058092430233955],[0.014928871765733,-0.01469502877444,-0.081457920372486]],[[-0.075683064758778,0.03691228851676,-0.047179762274027],[0.010854395106435,-0.17367096245289,-0.04969235509634],[0.034315783530474,-0.028857849538326,0.10361005365849]],[[-0.046837005764246,-0.086817167699337,0.052020385861397],[0.055959809571505,0.061575595289469,0.097512051463127],[-0.051594447344542,-0.12810482084751,-0.13094405829906]],[[0.1742141097784,-0.083637811243534,0.045632589608431],[-0.07218960672617,-0.076980225741863,-0.052153948694468],[-0.036867517977953,0.023748187348247,-0.031208919361234]],[[0.00081172568025067,-0.029222851619124,0.00026101496769115],[0.072688356041908,-0.046367798000574,-0.019935643300414],[0.051949888467789,-0.097990415990353,0.029051650315523]],[[0.14338813722134,-0.069230929017067,0.030222985893488],[0.077687010169029,-0.095503978431225,-0.0037931748665869],[0.10744039714336,-0.062845595180988,-0.13842388987541]],[[0.0058716554194689,0.024474747478962,-0.079442374408245],[0.042338792234659,-0.035709224641323,-0.043060727417469],[-0.0030518418643624,0.074030801653862,0.052298914641142]],[[0.060441039502621,-0.032203432172537,-0.13957305252552],[0.14120607078075,-0.088508404791355,-0.11695856601],[0.018762117251754,0.026626538485289,-0.1263008415699]],[[-0.046149488538504,0.09575042873621,0.029236061498523],[-0.038826018571854,-0.012611237354577,-0.0067261345684528],[-0.12392175942659,0.12069895863533,-0.02521781809628]],[[-0.09693481773138,-0.1092472076416,0.089199744164944],[0.099544063210487,-0.011606313288212,-0.034039217978716],[-0.10324191302061,0.048707939684391,-0.038797851651907]],[[-0.15088713169098,0.055723454803228,0.056187521666288],[-0.072104789316654,-0.0056131510064006,0.15424004197121],[0.079838044941425,-0.11209523677826,-0.053670767694712]],[[-0.0095638148486614,-0.012929655611515,-0.057245153933764],[0.0063757998868823,-0.010734360665083,0.086763173341751],[-0.054345648735762,-0.10175673663616,-0.052844621241093]],[[0.0014315268490463,-0.01164289470762,0.024111973121762],[0.059778466820717,-0.089423924684525,0.036063328385353],[-0.040217161178589,-0.11317591369152,-0.078476533293724]],[[0.010125322267413,0.093918785452843,-0.12766608595848],[-0.15409488976002,-0.042278051376343,-0.025422561913729],[-0.11673684418201,0.0023940436076373,0.14548119902611]],[[0.047919161617756,0.091004282236099,0.18838480114937],[-0.070842742919922,-0.033642664551735,-0.025589782744646],[-0.12121857702732,-0.20667047798634,-0.046346358954906]],[[0.094148851931095,0.11475435644388,-0.05848690867424],[-0.029213275760412,0.073998346924782,-0.043535366654396],[0.048438739031553,-0.15220767259598,0.21147875487804]],[[-0.10796866565943,-0.11363365501165,0.075586512684822],[-0.10619379580021,-0.11096703261137,0.051667287945747],[-0.024646103382111,0.2772136926651,-0.045844003558159]],[[0.010426520369947,-0.075538255274296,-0.056817837059498],[-0.072758711874485,-0.017781456932425,-0.09022581577301],[-0.098121799528599,-0.11761717498302,-0.042770218104124]],[[-0.13382123410702,0.051161546260118,0.068812176585197],[0.053239211440086,-0.021668313071132,0.02332578599453],[-0.063661903142929,0.027740528807044,0.0049833608791232]],[[0.16737349331379,-0.01468013972044,0.025047911331058],[0.0079718604683876,-0.068007200956345,-0.01769002713263],[-0.062490187585354,-0.040169663727283,-0.028955852612853]],[[0.059085424989462,-0.048027686774731,-0.02277460321784],[0.022324897348881,-0.0629817917943,0.022239040583372],[0.019597446545959,-0.015250127762556,-0.025570884346962]],[[-0.018049104139209,0.043428175151348,-0.027893081307411],[0.20794746279716,0.022938622161746,0.043547455221415],[-0.16671903431416,0.090721130371094,0.083733096718788]],[[0.025133388116956,-0.061130743473768,0.11054544895887],[0.065230004489422,0.065441377460957,-0.076053112745285],[0.024577647447586,-0.052649907767773,0.031347442418337]],[[0.14568904042244,-0.044890716671944,-0.063726790249348],[0.024412451311946,-0.012062630616128,-0.019326113164425],[0.050922229886055,-0.035680640488863,-0.041944064199924]],[[0.015537082217634,-0.17140470445156,0.027469510212541],[-0.043936900794506,0.070230759680271,-0.0091764498502016],[0.040229622274637,-0.11134044080973,0.10685337334871]],[[0.032339379191399,-0.024228433147073,0.0082160327583551],[-0.06709423661232,-0.10924425721169,-0.011616335250437],[-0.033520955592394,-0.089060634374619,-0.025953877717257]]],[[[0.078220933675766,0.030629675835371,-0.037245038896799],[0.15253446996212,-0.034222725778818,-0.037354309111834],[0.02330575324595,-0.016696307808161,-0.073611319065094]],[[-0.073908269405365,0.008003382012248,0.021830769255757],[-0.035235997289419,-0.0023233976680785,-0.0093373656272888],[0.013644002377987,-0.05328469350934,0.12763145565987]],[[-0.13999666273594,-0.027162304148078,0.026986539363861],[-0.078101068735123,0.16070477664471,0.20166271924973],[0.027442855760455,0.12660467624664,0.12910284101963]],[[0.081037744879723,0.046882871538401,-0.011498028412461],[0.045851532369852,0.029427567496896,-0.10528548061848],[-0.053117763251066,-0.1414759606123,-0.16251575946808]],[[-0.024616084992886,0.070654965937138,-0.080772623419762],[-0.019836151972413,0.10010863095522,0.095676578581333],[-0.13768719136715,-0.0604880861938,0.056947857141495]],[[-0.19062548875809,-0.08098391443491,0.059537053108215],[-0.081514067947865,-0.0028494202997535,0.032144851982594],[0.011958896182477,0.097077295184135,-0.0068633784539998]],[[0.044714063405991,0.10742731392384,-0.10526479035616],[0.0085598258301616,0.08006077259779,0.0048333033919334],[0.025655841454864,-0.043130945414305,0.01722676306963]],[[0.1073871999979,0.11352454125881,0.069804660975933],[-0.02450573630631,0.032178536057472,0.059606626629829],[-0.13329264521599,0.014206228777766,0.14359380304813]],[[0.029038827866316,-0.070597320795059,0.03249953314662],[-0.060733340680599,0.0032793630380183,0.03585410118103],[-0.02139668725431,-0.12414364516735,-0.0070670456625521]],[[0.050113815814257,0.013222924433649,-0.040055200457573],[-0.11761663109064,0.046464614570141,0.052474897354841],[-0.23060487210751,-0.031014023348689,-0.063286416232586]],[[-0.015240210108459,0.087001241743565,0.015250945463777],[0.053270690143108,0.14045345783234,-0.075085207819939],[0.089807316660881,0.018927084282041,-0.029632834717631]],[[0.077006384730339,0.014716063626111,-0.23125699162483],[-0.16209119558334,0.080387726426125,0.0098493713885546],[0.064391396939754,0.029891205951571,0.14483849704266]],[[0.067528530955315,0.019027046859264,0.020431499928236],[0.080433756113052,0.062707357108593,0.031198646873236],[0.088540092110634,-0.0096462201327085,0.014901241287589]],[[0.027091592550278,-0.077839881181717,-0.11020195484161],[-0.035161066800356,-0.0046543711796403,0.03716891631484],[-0.11915580928326,0.034328021109104,0.022077538073063]],[[0.15630383789539,-0.010697605088353,0.10274441540241],[-0.013844243250787,0.0082057425752282,-0.052951373159885],[-0.065152622759342,-0.043239910155535,-0.016103312373161]],[[0.066072560846806,-0.046783164143562,-0.029896372929215],[0.0084034604951739,0.062166787683964,0.0076463022269309],[0.050860799849033,-0.033289562910795,-0.13566048443317]],[[-0.03961743414402,0.095776833593845,0.07713208347559],[0.034768428653479,-0.010459979996085,-0.054727319628],[0.017894323915243,-0.080129943788052,0.051313098520041]],[[-0.013678161427379,0.1273347735405,0.06578753888607],[-0.023332396522164,-0.033330801874399,-0.079654574394226],[-0.010851535014808,0.098209418356419,-0.018673965707421]],[[0.098911084234715,-0.041443318128586,-0.10067608952522],[-0.058075949549675,-0.14417293667793,-0.013033339753747],[-0.06520688533783,0.03268862888217,-0.062609180808067]],[[0.039878696203232,-0.068285785615444,0.057366896420717],[0.092317461967468,-0.026053979992867,-0.080565579235554],[0.099269263446331,-0.17187628149986,-0.12732328474522]],[[0.10615312308073,-0.036157123744488,-0.071458004415035],[0.1210226342082,0.037726234644651,0.053954191505909],[-0.10972226411104,-0.069609291851521,0.0077457958832383]],[[-0.28465896844864,-0.077973000705242,0.054786089807749],[-0.034503974020481,0.13909268379211,0.0087048867717385],[-0.0081406673416495,0.032946284860373,0.1891154050827]],[[0.04660127684474,-0.088244058191776,-0.0030378305818886],[-0.044000595808029,0.0060113715007901,0.096533231437206],[-0.11487454921007,0.0067763100378215,-0.0042498162947595]],[[-0.0516377389431,-0.057215459644794,-0.085581161081791],[-0.078208923339844,-0.11555539816618,-0.083383031189442],[0.068321689963341,-0.028861341997981,-0.02836162224412]],[[-0.0055597294121981,-0.056171510368586,-0.0094427149742842],[-0.083268910646439,-0.012252498418093,0.031445190310478],[-0.038106635212898,-0.07927929610014,-0.13073337078094]],[[0.084613941609859,0.10249727964401,0.0085676172748208],[0.11527116596699,-0.0039507541805506,-0.021385218948126],[0.076619319617748,-0.16758677363396,-0.1445419639349]],[[-0.01466547511518,-0.092734657227993,0.00068706116871908],[-0.003254551673308,0.018616834655404,0.0013666757149622],[0.10595612227917,-0.047889098525047,-0.058588553220034]],[[-0.24267643690109,0.021917918697,0.022947898134589],[0.050659976899624,0.16038535535336,0.087326504290104],[-0.011088297702372,0.036218080669641,-0.012989826500416]],[[0.022979900240898,0.034995343536139,-0.066681072115898],[-0.040573488920927,-0.01235687546432,-0.14087170362473],[0.074665568768978,0.058275610208511,-0.070599585771561]],[[0.034050762653351,-0.0024435915984213,-0.034239027649164],[0.083590552210808,-0.027912586927414,-0.12796133756638],[0.065215259790421,0.018607623875141,0.015034656971693]],[[-0.001905145123601,-0.029885653406382,0.11223673820496],[0.092498615384102,0.041372254490852,0.021544774994254],[-0.03216589987278,-0.047842405736446,-0.031224677339196]],[[0.11572740972042,0.033685758709908,-0.02375746704638],[-0.035221941769123,0.026645381003618,-0.058939497917891],[-0.14875465631485,-0.067087650299072,-0.05059639364481]]],[[[0.02577742561698,0.043909773230553,0.098565265536308],[-0.010346551425755,-0.0359076410532,0.019207226112485],[-0.046308360993862,-0.12400081008673,0.032303184270859]],[[0.074886195361614,0.019861783832312,0.046448398381472],[0.095153950154781,0.058298274874687,0.038692586123943],[0.10814983397722,0.042744513601065,0.094669111073017]],[[-0.0021958469878882,-0.010276448912919,0.005919128190726],[0.012772297486663,0.0046164328232408,0.058368995785713],[-0.058282524347305,-0.028184898197651,0.0037894051056355]],[[0.031786743551493,0.044286511838436,0.031863674521446],[0.064151458442211,-0.0035419205669314,-0.076450280845165],[-0.041293516755104,-0.080791838467121,0.0088785858824849]],[[0.034584108740091,0.11376690119505,0.041361194103956],[0.042277365922928,0.076126240193844,0.061135698109865],[0.022379484027624,0.038549095392227,0.097760744392872]],[[0.020363237708807,0.014235036447644,0.01805404946208],[0.003227855078876,-0.022231819108129,-0.036661315709352],[-0.029815724119544,0.044043686240911,-0.009676375426352]],[[-0.041191007941961,0.029971776530147,-0.061011422425508],[0.044786226004362,0.0040315072983503,-0.038836788386106],[0.06363819539547,-0.0041563203558326,0.02639551833272]],[[-0.029729101806879,0.053381565958261,0.016722813248634],[0.015053087845445,-0.067319609224796,-0.065557077527046],[0.080333858728409,0.020703872665763,-0.016350688412786]],[[-0.033493038266897,-0.016572009772062,0.077105075120926],[0.0042174197733402,-0.0077122868970037,-0.0083817942067981],[-0.0028779737185687,0.012415734119713,0.012485015206039]],[[-0.11449169367552,-0.019593108445406,0.026984248310328],[-0.041157137602568,0.031073873862624,0.043022762984037],[0.064616799354553,-0.0081516019999981,-0.0091212671250105]],[[-0.033569078892469,0.031496170908213,-0.015186477452517],[0.018371360376477,-0.04065765812993,-0.042947921901941],[0.022688088938594,-0.034806683659554,0.0813202932477]],[[0.031027387827635,0.0047749276272953,-0.065870925784111],[0.017177624627948,-0.031962484121323,-0.0042229327373207],[0.02835470251739,-0.0084704086184502,0.041817981749773]],[[-0.0045760632492602,0.050047565251589,-0.017743477597833],[0.01275915838778,-0.00076504936441779,-0.072285152971745],[-0.044275168329477,0.096971280872822,0.056268651038408]],[[4.4063628592994e-05,-0.0025205821730196,0.022279769182205],[0.00041288314969279,-0.01749625056982,0.020424732938409],[-0.0027236142195761,-0.023900117725134,-0.0072061833925545]],[[0.045070718973875,-0.019869923591614,0.13388888537884],[0.0078325010836124,0.073408789932728,-0.0094382911920547],[0.085194461047649,0.039223346859217,0.064725950360298]],[[-0.039242640137672,-0.027055447921157,0.050060473382473],[0.02993074990809,0.0043576085008681,-0.010414709337056],[0.059047553688288,-0.03556302189827,-0.024600513279438]],[[-0.062218021601439,-0.027059189975262,0.055525273084641],[0.033074323087931,-0.001875712769106,-0.020160542801023],[0.10779045522213,-0.040883149951696,-0.049539748579264]],[[0.044752821326256,-0.081760741770267,-0.0078144669532776],[0.015293798409402,-0.0036165125202388,0.022517453879118],[0.012786319479346,0.0030731214210391,0.022666065022349]],[[0.0057468321174383,0.0064332210458815,0.044947165995836],[0.022229610010982,0.17665827274323,0.068180419504642],[-0.092718675732613,-0.09126103669405,-0.12268293648958]],[[0.076186023652554,-0.071513444185257,-0.031058862805367],[-0.049139320850372,-0.033192850649357,0.024339416995645],[-0.042516473680735,0.11511830985546,0.016686871647835]],[[0.055254697799683,0.18748526275158,0.087041676044464],[0.048910841345787,0.092134349048138,0.10796763002872],[0.088010229170322,0.14802224934101,0.14790174365044]],[[0.084205433726311,-0.067529007792473,0.035153917968273],[-0.035133350640535,-0.087529696524143,0.087493866682053],[0.020010897889733,-0.10698635876179,0.059671461582184]],[[0.029171893373132,0.0032117171213031,0.011197678744793],[-0.064146764576435,-0.0098061878234148,0.10437417030334],[0.010811720974743,-0.042082849889994,-0.030541781336069]],[[-0.058752719312906,-0.020971935242414,-0.00042594852857292],[0.067502625286579,-0.080730982124805,-0.13167415559292],[0.13889795541763,0.12690126895905,-0.043652698397636]],[[-0.062436498701572,-0.0040750056505203,-0.12433199584484],[0.037318505346775,0.033097356557846,0.068931967020035],[0.019217947497964,0.024619998410344,0.059271819889545]],[[0.021137818694115,-0.0046330573968589,-0.040716640651226],[-0.018990654498339,0.012888464145362,-0.049255296587944],[0.024759424850345,0.056003458797932,-0.00085285352542996]],[[-0.089356362819672,-0.11757097393274,-0.041767332702875],[-0.093049295246601,-0.10172661393881,-0.10602978616953],[-0.044623412191868,-0.14826574921608,-0.031734272837639]],[[0.0077831586822867,-0.051906365901232,0.029966333881021],[-0.0039268117398024,0.025693835690618,-0.056759785860777],[-0.072050027549267,0.029085822403431,0.074354812502861]],[[-0.0486164316535,0.036818336695433,0.044069670140743],[-0.084757149219513,0.022589391097426,0.040984150022268],[-0.068296901881695,-0.028309868648648,0.079893246293068]],[[-0.030259544029832,-0.065734907984734,-0.078511774539948],[-0.038971558213234,-0.13316679000854,-0.13660292327404],[-0.092797115445137,-0.11530024558306,-0.0066589168272913]],[[0.049270045012236,-0.017086671665311,-0.046622410416603],[0.024900145828724,-0.019330086186528,0.020864108577371],[-0.018258577212691,-0.0046748593449593,-0.0065864599309862]],[[0.064798526465893,0.10929678380489,-0.036970481276512],[0.10216381400824,-0.040723912417889,-0.080578282475471],[0.086027294397354,-0.13190546631813,-0.10400462150574]]],[[[-0.14002287387848,0.10305793583393,0.023551486432552],[0.048344366252422,-0.089708767831326,-0.088597394526005],[0.014332821592689,-0.010298791341484,-0.085582569241524]],[[-0.081103071570396,-0.060797192156315,0.075404420495033],[-0.022366298362613,0.022818598896265,0.10147418826818],[-0.041806384921074,-0.0074728894978762,0.12413292378187]],[[0.026512667536736,0.12588141858578,-0.081134848296642],[-0.0082393139600754,-0.075237706303596,0.037321578711271],[-0.043243765830994,0.12595519423485,0.048647079616785]],[[0.053801961243153,0.064774423837662,-0.073736317455769],[0.1033680588007,-0.013475156389177,-0.06056185439229],[-0.013016045093536,-0.0074753356166184,-0.053836420178413]],[[-0.086249873042107,-0.023295482620597,0.023116543889046],[0.040574554353952,0.028293032199144,0.056612268090248],[0.016523852944374,-0.0064555099233985,-0.047936286777258]],[[-0.11017529666424,-0.10515327006578,-0.029480779543519],[0.016914581879973,0.091343462467194,-0.025680186226964],[0.067552618682384,-0.048573832958937,0.014392862096429]],[[-0.14602142572403,-0.082782261073589,0.0036929491907358],[0.024404088035226,0.042746908962727,0.062173373997211],[-0.044946704059839,-0.013899939134717,-0.092683300375938]],[[0.054532460868359,-0.0098418537527323,-0.029199993237853],[-0.033175256103277,-0.082026764750481,-0.075020171701908],[-0.065307088196278,-0.017802746966481,-0.085137993097305]],[[0.022969104349613,-0.041241966187954,0.04261976853013],[-0.1525930762291,0.023297039791942,0.017043689265847],[0.065928503870964,-0.051469214260578,0.039140582084656]],[[-0.068230666220188,-0.085311748087406,0.019203182309866],[-0.0014493816997856,-0.16823448240757,-0.065800197422504],[-0.038267705589533,0.060282163321972,-0.043392904102802]],[[0.061689343303442,-0.11583106219769,0.043773643672466],[-0.024328777566552,-0.0041854581795633,0.056870978325605],[-0.0026248092763126,-0.035476975142956,0.025726586580276]],[[0.01723900064826,-0.040231294929981,0.036566782742739],[-0.012770434841514,-0.034091476351023,0.092315323650837],[0.045560192316771,0.010877097025514,-0.13412699103355]],[[0.037965517491102,0.031206235289574,-0.06804159283638],[-0.020112009719014,-0.0068603381514549,-0.032907146960497],[-0.029942879453301,-0.13025709986687,-0.016041953116655]],[[0.055516008287668,-0.076770976185799,-0.11322203278542],[-0.0088012693449855,-0.071357294917107,0.046274073421955],[0.046501044183969,-0.072054997086525,0.015896834433079]],[[-0.025617849081755,0.021733891218901,0.058637846261263],[-0.079667843878269,-0.075733676552773,-0.0483218729496],[0.0060717267915606,-0.021406318992376,0.012713525444269]],[[-0.15818491578102,-0.0044353441335261,0.024876531213522],[-0.088815800845623,0.016660749912262,0.067664556205273],[-0.065883740782738,0.02993224747479,0.026869220659137]],[[0.057833358645439,-0.0011161752045155,0.03420278057456],[-0.015332110226154,0.009094818495214,0.073393359780312],[0.040957093238831,0.05523419380188,-0.050074465572834]],[[-0.05403395742178,-0.074337035417557,-0.071845822036266],[-0.0088322106748819,0.027197727933526,-0.097887948155403],[-0.12107467651367,0.023514907807112,-0.039288144558668]],[[-0.082908220589161,-0.063516095280647,-0.032639320939779],[-0.083637624979019,-0.024528376758099,-0.12277171015739],[0.10502583533525,-0.12191636115313,-0.17393320798874]],[[-0.029432581737638,-0.020453941076994,-0.04780825227499],[0.075457952916622,0.027102557942271,0.045910619199276],[-0.034476980566978,0.05729004368186,0.071401715278625]],[[-0.019546929746866,-0.024886198341846,0.053506661206484],[-0.0251141525805,0.022173965349793,-0.0097708078101277],[-0.032677624374628,0.0019063454819843,0.086361810564995]],[[0.19324368238449,-0.11731874197721,-0.073506586253643],[-0.15743246674538,-0.12087109684944,-0.061621718108654],[-0.031374353915453,-0.033236689865589,0.090413294732571]],[[-0.033877748996019,-0.060823600739241,0.0017608961788937],[0.043973367661238,0.047833729535341,-0.027931975200772],[-0.015169905498624,-0.085542760789394,0.010367653332651]],[[-0.080394990742207,-0.062249552458525,-0.07862676680088],[0.0047222198918462,0.012501092627645,-0.16173696517944],[-0.18909284472466,-0.032459191977978,-0.024435201659799]],[[0.054979499429464,-0.073674820363522,0.011895234696567],[0.001874356996268,-0.051874574273825,0.083365939557552],[-0.025522911921144,-0.0014196914853528,0.012751820497215]],[[0.041088961064816,-0.034385111182928,-0.028961904346943],[0.07492670416832,0.073271907866001,-0.0077333566732705],[0.055653963238001,-0.0069212550297379,-0.019618889316916]],[[0.079602889716625,-0.12981466948986,0.019522598013282],[0.0043424046598375,0.020279621705413,-0.067964054644108],[0.024209702387452,0.040992740541697,0.0025092104915529]],[[0.046964600682259,0.0060319514013827,-0.11679220944643],[-0.099780082702637,0.03177934885025,-0.025241432711482],[-0.035192031413317,0.048043139278889,0.11778531968594]],[[0.07559834420681,-0.13854697346687,0.00036309281131253],[0.14013911783695,-0.22384130954742,0.0048869317397475],[-0.045828402042389,0.044419717043638,0.0015896025579423]],[[0.040345698595047,0.004366937559098,-0.12635123729706],[0.095876805484295,0.02120472677052,-0.1087765917182],[0.065836153924465,0.0018559239106253,-0.12578892707825]],[[0.034928284585476,-0.059899229556322,-0.080070346593857],[-0.017475634813309,0.0015536407008767,0.11549028009176],[-0.065525680780411,0.11239423602819,0.060132455080748]],[[-0.014602988958359,0.094752825796604,0.08102173358202],[-0.026227174326777,0.11080467700958,0.018270229920745],[0.011751372367144,-0.049946252256632,0.03589504212141]]],[[[0.07769101113081,-0.20319198071957,-0.10659679025412],[-0.017458284273744,-0.16290938854218,-0.028223969042301],[-0.065223708748817,-0.019452946260571,-0.015857517719269]],[[-0.12140388786793,0.014585685916245,-0.056768964976072],[0.058005653321743,-0.070403665304184,0.066640451550484],[-0.012495155446231,0.058633834123611,0.04496306180954]],[[0.034120183438063,0.023772140964866,0.014484010636806],[0.048834580928087,0.085246413946152,0.0012419146951288],[-0.15155367553234,0.073659099638462,0.019431579858065]],[[-0.005875435192138,0.014551322907209,-0.0018644176889211],[0.15727712213993,0.018027232959867,0.032100327312946],[-0.0014318478060886,-0.18892832100391,-0.037786290049553]],[[-0.11135194450617,0.11203374713659,-0.012501959688962],[0.0093203103169799,-0.063868254423141,-0.0098329111933708],[0.086208328604698,-0.019946411252022,0.0041492450982332]],[[0.023013975471258,0.12186673283577,0.0044060894288123],[-0.032784961163998,-0.032299999147654,-0.27478370070457],[-0.1159810423851,-0.15012733638287,-0.040823455899954]],[[0.094160661101341,-0.041413761675358,-0.075056120753288],[-0.011671897955239,-0.076423868536949,-0.033903390169144],[0.039284359663725,-0.033557116985321,0.057083144783974]],[[-0.044863097369671,-0.078810557723045,-0.022730141878128],[-0.11467407643795,-0.04335880279541,0.043312646448612],[-0.18781192600727,0.11620463430882,0.073570497334003]],[[-0.1468840688467,-0.058376003056765,-0.085652887821198],[-0.0043925982899964,0.024690564721823,-0.01213201135397],[0.10044446587563,0.049851078540087,0.050862286239862]],[[-0.011995400302112,-0.059271275997162,-0.03789134323597],[0.028992930427194,0.18790639936924,-0.011418172158301],[0.11828355491161,-0.0034885131753981,-0.21962852776051]],[[0.058365643024445,-0.11417938768864,-0.035924900323153],[-0.10644631832838,-0.11045342683792,0.15990951657295],[0.021371480077505,0.059764619916677,0.013257039710879]],[[-0.23568642139435,0.021229546517134,0.11669217050076],[-0.091103836894035,-0.18749324977398,-0.12342555820942],[-0.071452155709267,0.090982563793659,0.086401335895061]],[[-0.10708577185869,-0.11926617473364,-0.1540755033493],[0.1112754419446,-0.012829074636102,-0.0071501713246107],[0.08952908217907,0.0067799491807818,0.052786290645599]],[[0.023555051535368,-0.055358834564686,0.065795816481113],[0.017540061846375,-0.26436421275139,0.0098055182024837],[-0.2382555603981,-0.10369066148996,-0.024663170799613]],[[-0.012476731091738,-0.034091394394636,-0.065215826034546],[0.10148712992668,-0.018525037914515,0.10465160757303],[-0.0069091892801225,0.00060203380417079,0.063501238822937]],[[0.011423894204199,-0.051407054066658,0.015525324270129],[-0.13741225004196,-0.18177987635136,0.019551264122128],[0.014705305919051,-0.082686938345432,-0.030269626528025]],[[0.05975553765893,-0.15740777552128,-0.011720871552825],[0.066053859889507,0.08206520229578,0.073128394782543],[-0.0041903993114829,-0.03382495418191,0.016953349113464]],[[-0.0039578122086823,-0.072518639266491,0.072370365262032],[-0.074953116476536,-0.14845398068428,-0.12146867066622],[-0.032292481511831,0.034358970820904,0.018630091100931]],[[-0.19193691015244,-0.097442239522934,-0.24191929399967],[0.088641695678234,-0.045304719358683,-0.011283971369267],[-0.0053397505544126,-0.52415961027145,-0.23671032488346]],[[0.033642642199993,0.09671325981617,0.11536595225334],[-0.042892120778561,-0.061409626156092,0.077314160764217],[0.027267601341009,-0.17743366956711,-0.15453691780567]],[[0.024190900847316,-0.030279194936156,-0.020613631233573],[-0.024649256840348,-0.04334669187665,0.06130538508296],[0.071422249078751,0.036715798079967,-0.051413353532553]],[[-0.075933061540127,0.027824275195599,0.09392848610878],[0.086441650986671,-0.12416552007198,0.017236335203052],[0.04879405349493,0.041351873427629,0.10408855974674]],[[0.018632311373949,-0.016297683119774,-0.23151689767838],[-0.085355676710606,0.040058080106974,-0.091932587325573],[-0.093231245875359,0.14561311900616,-0.005820563994348]],[[-0.057713810354471,-0.035535428673029,0.034609477967024],[-0.075725577771664,-0.010984125547111,0.046298041939735],[0.078502103686333,0.0235834736377,-0.040417373180389]],[[0.020171457901597,-0.063077576458454,0.12464654445648],[-0.11175513267517,0.018677143380046,0.0501161031425],[0.02462569437921,-0.32159331440926,0.057863295078278]],[[0.13108202815056,-0.057795692235231,0.075122386217117],[0.11586280167103,0.038784306496382,-0.18087248504162],[0.0080331480130553,-0.026980847120285,-0.02584526874125]],[[0.1226524785161,0.11725259572268,-0.03381922096014],[-0.032000228762627,-0.047382395714521,-0.044972341507673],[-0.07388086616993,-0.030639670789242,0.028534583747387]],[[0.014505240134895,0.11443158984184,0.021315256133676],[0.061796952039003,0.043482437729836,0.13328962028027],[0.022653207182884,-0.044170696288347,-0.11738891154528]],[[0.13196723163128,-0.11837567389011,-0.040443100035191],[-0.0087597677484155,0.091055803000927,0.21175502240658],[-0.065673112869263,0.023486183956265,-0.028591245412827]],[[0.096636176109314,0.012998235411942,-0.03815858066082],[0.021655142307281,0.037698615342379,-0.072131991386414],[0.004508868791163,0.011465551331639,-0.081785559654236]],[[0.039828855544329,0.009241595864296,0.06518966704607],[0.067805826663971,0.033122051507235,-0.11316166073084],[-0.075838953256607,-0.099427290260792,0.044052977114916]],[[-0.2028980255127,-0.12670972943306,-0.0060117221437395],[-0.11213904619217,-0.16150629520416,0.069806359708309],[0.024876069277525,-0.055794559419155,-0.084175333380699]]],[[[0.047751899808645,0.098529934883118,0.045884318649769],[-0.029831124469638,-0.057104464620352,-0.052278582006693],[-0.030110742896795,0.14550563693047,-0.12251111119986]],[[0.11605071276426,0.059076350182295,0.024372102692723],[0.065242938697338,-0.025836953893304,-0.06261321157217],[0.0049197864718735,-0.10473971068859,-0.12469819188118]],[[0.012223714962602,-0.043788403272629,-0.013504547066987],[0.028942231088877,-0.032573897391558,0.12811309099197],[-0.022475760430098,-0.016598919406533,-0.10045717656612]],[[-0.022913679480553,0.020712345838547,-0.03750516846776],[-0.18066407740116,0.014713315293193,0.057683493942022],[0.019973739981651,0.025116790086031,0.018405355513096]],[[0.050314269959927,0.0017648411449045,0.024328885599971],[0.075296394526958,0.0055085741914809,0.02156088128686],[-0.10116083920002,0.034077219665051,-0.086079984903336]],[[0.020082844421268,0.006906371563673,0.026903895661235],[0.065132990479469,0.078024342656136,0.029063915833831],[-0.0036141583696008,0.0078462176024914,0.099290363490582]],[[-0.0088396919891238,0.038919482380152,0.0041777086444199],[-0.039620283991098,-0.0014637188287452,-0.085500128567219],[0.017674902454019,0.024958467110991,-0.037090908735991]],[[0.02511715516448,0.018323907628655,0.022726761177182],[0.00024874892551452,-0.079310432076454,0.01595014706254],[-0.008065321482718,-0.11519632488489,0.039664559066296]],[[0.04039516672492,0.081767618656158,0.0064098937436938],[0.08872989565134,0.032457955181599,0.076116248965263],[0.026809498667717,-0.032606270164251,-0.077530279755592]],[[-0.04298647493124,-0.097377762198448,0.076086580753326],[0.0030622545164078,-0.055005837231874,-0.049963712692261],[0.032910689711571,-0.074574641883373,-0.08425085991621]],[[0.081162184476852,0.079546071588993,0.15783058106899],[-0.035094864666462,0.070467680692673,-0.051058012992144],[-0.1133211478591,-0.076083116233349,-0.14367215335369]],[[0.086575739085674,-0.034083031117916,0.050373487174511],[0.078802399337292,0.11439882218838,-0.086776897311211],[-0.0091471187770367,0.0095063988119364,0.0018574662972242]],[[0.0017022246029228,0.10439348220825,0.0092546520754695],[-0.036433562636375,-0.14741767942905,0.10421558469534],[-0.040955733507872,-0.086632370948792,0.027655160054564]],[[0.041062410920858,0.060510747134686,0.0034699402749538],[0.019388334825635,0.0085693132132292,0.062929756939411],[0.019736621528864,0.10420195013285,0.14883223176003]],[[-0.013024721294641,0.046532303094864,0.072661802172661],[0.0042182472534478,-0.056886959820986,-0.030334170907736],[-0.02904612198472,-0.0031839786097407,-0.11012461781502]],[[-0.07727737724781,-0.06466643512249,0.0011322584468871],[0.018615402281284,0.086595915257931,0.07266891002655],[0.064266435801983,-0.01067668851465,0.07230943441391]],[[0.0030619057361037,-0.054306048899889,-0.032164536416531],[-0.074819162487984,-0.064377278089523,0.0087789380922914],[0.0125070521608,0.027837254106998,-0.15024369955063]],[[-0.027388097718358,0.099979415535927,0.0098720081150532],[0.012312410399318,-0.063419371843338,0.059735216200352],[0.015935668721795,0.029453491792083,-0.091972783207893]],[[0.048653546720743,0.046746589243412,-0.037088982760906],[0.062275089323521,0.040591333061457,0.00040275504579768],[-0.14943142235279,-0.13003419339657,0.096655890345573]],[[0.030454374849796,-0.076235182583332,-0.067712277173996],[-0.046620160341263,-0.013170356862247,0.043164629489183],[-0.024666214361787,-0.083074100315571,-0.13502269983292]],[[0.079015858471394,0.12956917285919,0.057172682136297],[0.074327103793621,-0.026917224749923,-0.03031743504107],[-0.11958559602499,-0.13040006160736,-0.088250227272511]],[[-0.083195127546787,0.06837959587574,-0.039346069097519],[-0.076672479510307,0.17872077226639,-0.012838110327721],[0.034747783094645,-0.083263106644154,-0.18846161663532]],[[0.10059906542301,-0.13062757253647,0.03138292580843],[-0.12463776022196,-0.020826583728194,-0.0053198104724288],[0.040530882775784,-0.071256533265114,0.095997594296932]],[[0.0080737033858895,-0.072174102067947,-0.0067489193752408],[0.083058953285217,-0.094638533890247,-0.070737026631832],[-0.11200797557831,-0.058867461979389,0.042567640542984]],[[-0.051784213632345,-0.0680011510849,-0.046652384102345],[0.015609632246196,-0.0077977711334825,-0.04718903824687],[0.027858801186085,-0.00398153020069,-0.10439004004002]],[[-0.033988460898399,-0.03814023733139,-0.11382320523262],[-0.027826672419906,0.00069318915484473,-0.03824495151639],[0.043109368532896,-0.08063567429781,0.087695196270943]],[[-0.10598558932543,-0.13145971298218,-0.074903428554535],[-0.01563698425889,0.065726302564144,-0.0013257458340377],[0.096437148749828,0.070724360644817,0.14221183955669]],[[0.11528142541647,-0.099351339042187,-0.04618164151907],[-0.1949050873518,-0.15584379434586,-0.13196070492268],[0.020861180499196,-0.16952787339687,0.076729744672775]],[[-0.13679006695747,0.04202789068222,0.072319902479649],[-0.059027761220932,-0.028864929452538,-0.11757954210043],[0.042809534817934,-0.12667113542557,-0.19416609406471]],[[-0.11308333277702,-0.11761093139648,-0.054489940404892],[-0.17187839746475,-0.02082228846848,0.13921242952347],[0.078044071793556,0.059323664754629,0.056408554315567]],[[-0.002890826202929,-0.059606205672026,0.094743445515633],[0.078935526311398,-0.056296397000551,0.022965231910348],[-0.077462196350098,-0.057888526469469,-0.062920421361923]],[[0.14821866154671,0.10508561134338,0.027707813307643],[-0.083842240273952,-0.21453295648098,-0.10316552966833],[0.010518491268158,0.017485219985247,0.16168724000454]]],[[[0.036528240889311,0.039473664015532,-0.24647580087185],[-0.11164840310812,-0.0041910009458661,0.1287357211113],[-0.0073851067572832,-0.0079501634463668,-0.20626850426197]],[[0.0157361458987,-0.10122097283602,-0.11539738625288],[0.073757387697697,-0.11054103821516,-0.031491320580244],[-0.030518833547831,0.015715816989541,0.036115556955338]],[[0.033074658364058,0.10403411835432,-0.045573703944683],[-0.065979652106762,0.060936860740185,0.063980676233768],[-0.059453427791595,0.05955845117569,0.077075436711311]],[[0.042233098298311,-0.063121028244495,-0.091349303722382],[0.046681594103575,-0.041722696274519,-0.052995812147856],[-0.008895818144083,-0.085132792592049,-0.12984549999237]],[[-0.0043443674221635,0.056127414107323,-0.036992598325014],[0.07187307626009,-0.024238174781203,0.12221409380436],[-0.054167047142982,0.046078540384769,0.018924091011286]],[[-0.041190143674612,0.094577170908451,0.04990204423666],[0.0011422493262216,-0.15130332112312,0.075970180332661],[-0.12527556717396,0.014396165497601,-0.18520522117615]],[[-0.17905943095684,0.071008369326591,-0.32006645202637],[0.10487031936646,-0.14907744526863,0.15101765096188],[-0.17438042163849,0.12264765053988,-0.20679306983948]],[[0.052559014409781,-0.0305704344064,-0.030447293072939],[-0.10143210738897,0.040145806968212,0.11062812805176],[0.071019291877747,0.0064602657221258,-0.04586161673069]],[[-0.089675299823284,-0.006813348736614,0.010609291493893],[0.023390462622046,-0.020766068249941,-0.07076158374548],[0.0084434505552053,0.05397617444396,-0.013340379111469]],[[0.046394944190979,0.16575668752193,0.080728717148304],[-0.053465973585844,-0.018823770806193,-0.043667640537024],[0.078811675310135,0.010867157950997,-0.038793854415417]],[[-0.0079344259575009,0.075434111058712,-0.18087786436081],[-0.021893894299865,-0.12337226420641,-0.12139653414488],[0.047165058553219,0.027915088459849,0.14204002916813]],[[-0.10130206495523,0.057419128715992,0.17214673757553],[0.028544489294291,-0.040474902838469,-0.021765036508441],[-0.027540192008018,-0.04128846898675,0.038357019424438]],[[0.063180766999722,-0.0022137518972158,-0.10172890126705],[0.022119442000985,0.01265156827867,-0.16893126070499],[0.082307450473309,0.067615158855915,0.11399453133345]],[[-0.003190262010321,0.087655656039715,0.12785439193249],[-0.0036982432939112,-0.087846696376801,-0.015851959586143],[-0.047117426991463,-0.10446003824472,-0.20944139361382]],[[0.033368103206158,-0.074558526277542,0.012070078402758],[-0.0065670688636601,0.024718755856156,0.012888752855361],[0.027574129402637,0.1042864471674,-0.0084739103913307]],[[0.046197138726711,-0.016941724345088,0.052586883306503],[0.058062545955181,-0.20546989142895,-0.085950002074242],[-0.062859483063221,-0.036751791834831,-0.094877384603024]],[[-0.041406318545341,0.089362725615501,-0.041150342673063],[0.051650155335665,0.016982991248369,-0.041491106152534],[-0.069967158138752,0.044074151664972,0.065014623105526]],[[0.095375433564186,-0.080817610025406,-0.054633744060993],[-0.023762091994286,-0.0092562576755881,-0.12116166204214],[0.13372145593166,0.012942894361913,0.049922905862331]],[[0.00352912559174,-0.032454188913107,0.053449120372534],[0.0056915306486189,-0.024838512763381,-0.052801057696342],[-0.032135903835297,-0.0085696615278721,0.017259923741221]],[[-0.0096612870693207,0.0065406444482505,0.10010829567909],[-0.034679144620895,-0.071998707950115,-0.067286819219589],[-0.027977516874671,-0.01023140642792,0.093488819897175]],[[0.13373149931431,-0.060863599181175,0.049148268997669],[-0.024338779971004,-0.055940508842468,-0.11748993396759],[0.061835568398237,-0.010535942390561,0.029355311766267]],[[-0.054860685020685,0.067694485187531,0.0012180655030534],[-0.12218180298805,0.034485273063183,-0.12305539101362],[0.034449737519026,-0.038914009928703,0.1477794200182]],[[-0.11925166100264,-0.11132016032934,-0.085321210324764],[-0.037735063582659,0.091561190783978,0.13328266143799],[-0.019652293995023,0.00055505172349513,0.040242899209261]],[[-0.041105929762125,0.049900189042091,0.0094021549448371],[-0.015793561935425,-0.042183663696051,0.067908123135567],[0.089308127760887,0.0066912984475493,-0.17307315766811]],[[0.015117187984288,-0.045182034373283,0.078846141695976],[-0.034881737083197,0.065283238887787,-0.21761786937714],[0.0024096737615764,-0.024901574477553,-0.015235272236168]],[[-0.068435043096542,0.016040734946728,-0.0043985545635223],[0.0035780631005764,-0.004404854029417,-0.015011793002486],[-0.0095862122252584,0.055723700672388,-0.04373199865222]],[[0.0061505143530667,0.12906034290791,0.064976699650288],[-0.039077088236809,-0.097552470862865,0.021928748115897],[-0.058205563575029,-0.027495129033923,-0.043932594358921]],[[-0.12218628823757,0.068634293973446,0.078906252980232],[0.028847483918071,0.041449561715126,0.20445710420609],[-0.028492163866758,-0.097593322396278,-0.021824972704053]],[[0.028664208948612,0.031586773693562,-0.088210716843605],[-0.038970943540335,-0.045861184597015,-0.092715591192245],[0.038017399609089,-0.11517306417227,-0.02273616194725]],[[-0.039393849670887,0.11848700046539,-0.14714983105659],[0.037482403218746,0.0058133522979915,0.012335048988461],[-0.047414150089025,0.090699888765812,-0.071731932461262]],[[0.0054406928829849,0.024344699457288,-0.041375067085028],[-0.014229238964617,-0.034039225429296,0.0087887104600668],[0.054522331804037,-0.13510826230049,0.084158271551132]],[[0.045724157243967,-0.16205139458179,-0.22686097025871],[-0.023060385137796,0.0034472574479878,0.17913454771042],[0.011051622219384,0.042402226477861,-0.064109422266483]]],[[[-0.13712838292122,0.033941686153412,0.0401909686625],[-0.054524749517441,0.011331221088767,-0.011868724599481],[-0.12360463291407,-0.044275403022766,0.096778556704521]],[[-0.05797553807497,0.028505714610219,-0.040206588804722],[-0.0081384629011154,-0.068719193339348,0.090284124016762],[0.047712922096252,0.021772868931293,0.098675161600113]],[[0.094365499913692,-0.065286196768284,-0.043317783623934],[0.010044042952359,0.019222872331738,0.033610600978136],[0.16264109313488,0.10428033769131,-0.075836852192879]],[[0.032200947403908,0.071823514997959,-0.017018225044012],[-0.017854522913694,-0.033301714807749,0.082374401390553],[0.0075856382027268,0.0082995360717177,0.030497958883643]],[[0.0086183175444603,0.055153071880341,-0.09864117950201],[0.0098521029576659,0.031127329915762,-0.013869843445718],[0.036847300827503,0.019213663414121,-0.017675453796983]],[[0.13252075016499,0.12205623835325,-0.31076130270958],[0.0088745951652527,-0.111054264009,0.028391307219863],[-0.01711268723011,0.18284091353416,-0.12483081966639]],[[0.044661324471235,-0.13009499013424,0.075920209288597],[0.020157244056463,-0.042136762291193,0.016039997339249],[0.13975891470909,0.1098130941391,-0.05057355761528]],[[0.15005247294903,-0.093092083930969,0.063577935099602],[0.070733904838562,0.017097920179367,0.042360164225101],[0.040473133325577,0.022222112864256,0.1008583381772]],[[-0.054407224059105,0.02681695856154,-0.080184891819954],[0.0010987173300236,-0.01210701931268,-0.04023514688015],[0.060102988034487,0.010234419256449,0.032054606825113]],[[0.13214701414108,-0.057826384902,-0.014699535444379],[0.041375353932381,0.15439666807652,-0.040259066969156],[0.1413197517395,-0.083517074584961,0.033198159188032]],[[-0.13869686424732,0.071681633591652,-0.088860653340816],[-0.095648780465126,-0.084200017154217,0.0026698710862547],[0.0016299713170156,0.047985550016165,0.11776824295521]],[[0.049079272896051,0.012104812078178,-0.081130802631378],[0.046141650527716,0.020989645272493,-0.15631528198719],[0.025312842801213,-0.14396087825298,0.067792557179928]],[[0.10119720548391,-0.07849146425724,-0.066562317311764],[0.17758856713772,0.080427683889866,0.070813469588757],[-0.072241269052029,0.10708005726337,0.03050765581429]],[[0.0060242917388678,-0.066332265734673,-0.0023224530741572],[-0.072196736931801,-0.0063419532962143,0.10613448172808],[-0.052839204668999,0.021030029281974,-0.030957965180278]],[[-0.038199994713068,0.001758310594596,-0.018844829872251],[0.055511258542538,-0.11726417392492,0.09011597186327],[0.045947108417749,0.015892893075943,-0.026451041921973]],[[-0.072928100824356,0.12897390127182,0.10209178924561],[0.019394194707274,-0.077300861477852,0.010373645462096],[-0.094354078173637,-0.024736549705267,-0.18611401319504]],[[-0.14032898843288,-0.013270069845021,0.01165449526161],[-0.067018665373325,-0.008737264201045,-0.090664595365524],[-0.096177466213703,0.067683100700378,-0.028340857475996]],[[0.014746638946235,0.020392844453454,-0.032942246645689],[-0.1144956946373,-0.012171500362456,0.06710210442543],[0.064344570040703,-0.051991600543261,-0.053746182471514]],[[-0.10081746429205,0.10551599413157,0.057981550693512],[-0.2274272441864,-0.042935021221638,0.020649876445532],[-0.25414314866066,-0.24459934234619,0.02894195728004]],[[-0.12106550484896,-0.036578644067049,-0.06708774715662],[-0.1041566580534,0.046675711870193,-0.1502865254879],[0.057098884135485,-0.085434176027775,-0.053178790956736]],[[-0.076162286102772,0.0022741782013327,-0.11187390983105],[-0.11148694902658,-0.019871145486832,-0.021320093423128],[-0.0063099833205342,0.043594144284725,-0.008527128957212]],[[0.021250022575259,-0.15283417701721,-0.02758607827127],[0.040833655744791,0.091155536472797,-0.18090607225895],[-0.043936427682638,-0.024694919586182,0.20537236332893]],[[-0.0046767154708505,0.020451681688428,0.13196471333504],[0.049410827457905,0.080555453896523,-0.016589649021626],[-0.10652486979961,-0.031203590333462,0.062914937734604]],[[0.093663461506367,0.15386712551117,0.10887214541435],[-0.08556142449379,0.10958439856768,-0.019878188148141],[-0.11832950264215,0.035294599831104,0.0071369358338416]],[[-0.00073057896224782,0.14844970405102,0.044974707067013],[0.069228358566761,-0.063537254929543,0.079481422901154],[-0.027256635949016,-0.12022464722395,0.15541404485703]],[[-0.010743108578026,0.070462077856064,0.013530913740396],[0.050587575882673,-0.11841257661581,-0.051704593002796],[-0.11947362869978,-0.01514691952616,0.011873428709805]],[[0.038956750184298,0.142054900527,0.00096703559393063],[-0.024510324001312,-0.035195458680391,-0.055676769465208],[-0.064891941845417,-0.049098502844572,-0.015856012701988]],[[-0.045715693384409,0.12711042165756,-0.15847082436085],[-0.0045597809366882,0.094130180776119,0.031850084662437],[0.11119817197323,0.15845467150211,0.077697902917862]],[[0.10319980233908,0.064645208418369,0.0033255179878324],[0.066560193896294,0.0041877594776452,0.1526200324297],[-0.090117059648037,-0.13284601271152,0.0092893531545997]],[[0.052081320434809,0.099473908543587,0.18387876451015],[-0.027921630069613,-0.089351557195187,0.0018092333339155],[-0.12210285663605,0.084199257194996,-0.12008022516966]],[[0.10068739205599,0.084016762673855,-0.18210734426975],[-0.19371539354324,0.087119437754154,-0.0091548822820187],[-0.076171435415745,-0.041307639330626,0.028046820312738]],[[-0.037966426461935,-0.028481574729085,0.070943169295788],[-0.017477706074715,-0.024375913664699,0.001540862605907],[-0.11215855926275,0.036956261843443,-0.035918172448874]]],[[[-0.10630273073912,-0.13810616731644,-0.035161096602678],[-0.034607719630003,0.041930727660656,-0.16743549704552],[-0.062019433826208,-0.10699900239706,-0.0052552619017661]],[[-0.056064512580633,-0.019478583708405,-0.056227151304483],[0.045432280749083,0.0025369543582201,-0.065862335264683],[0.1354237049818,-0.023783581331372,-0.044980693608522]],[[0.011442825198174,0.090337730944157,-0.1806311160326],[-0.12418624013662,0.032112345099449,0.050702258944511],[-0.032275669276714,0.068671248853207,-0.093845449388027]],[[-0.026542272418737,-0.12678503990173,-0.043576445430517],[0.0078993700444698,-0.083224378526211,0.016469020396471],[0.15550677478313,0.033681213855743,-0.022588320076466]],[[0.068091876804829,0.01909446157515,0.035670198500156],[0.015359809622169,0.05725122615695,-0.067756086587906],[-0.052357729524374,0.027563372626901,0.046290412545204]],[[-0.12488199770451,0.0021532452665269,0.0062053143046796],[-0.013008838519454,-0.12067005783319,-0.090147443115711],[0.011748576536775,-0.17660841345787,0.0066311974078417]],[[-0.033990111202002,0.022385884076357,-0.079321891069412],[0.067510232329369,0.066393367946148,-0.18800576031208],[-0.086719885468483,0.058015245944262,0.043181486427784]],[[-0.14447331428528,-0.01890161074698,0.0087903793901205],[0.0063472031615674,0.017992559820414,0.063871398568153],[-0.010572899132967,0.024647645652294,0.12505438923836]],[[0.0049322168342769,-0.12810422480106,0.035654932260513],[-0.068605788052082,-0.088029585778713,0.038591522723436],[0.0046192440204322,-0.019857799634337,-0.078211605548859]],[[-0.08543735742569,0.095276355743408,-0.18904855847359],[-0.0054429196752608,-0.088636219501495,-0.042807936668396],[0.1454441845417,0.061641309410334,-0.11647666990757]],[[-0.078703977167606,-0.032078456133604,0.054371003061533],[-0.012974308803678,-0.017235783860087,-0.085183754563332],[0.054522361606359,0.12715429067612,0.053267691284418]],[[-0.082180812954903,-0.067460685968399,-0.0016340307192877],[0.13073313236237,-0.098653860390186,0.092503480613232],[-0.082322299480438,-0.025926327332854,-0.038275744765997]],[[-0.025673905387521,-0.10519517958164,-0.0042759100906551],[0.0029201980214566,-0.083076722919941,0.033109478652477],[0.074575804173946,0.041083231568336,0.056499730795622]],[[-0.13628521561623,0.02182399481535,-0.042522795498371],[-0.025420039892197,0.0068947151303291,0.10293266922235],[-0.031169161200523,0.096757270395756,-0.029084293171763]],[[-0.0060238321311772,-0.022593950852752,0.10950219631195],[0.010606527328491,0.067712903022766,0.01694374345243],[0.064815752208233,-0.03452019020915,0.027489332482219]],[[-0.095723509788513,0.032580774277449,-0.040812365710735],[-0.24579505622387,0.15373040735722,-0.15210558474064],[0.15935128927231,0.07047263532877,-0.014242693781853]],[[-0.1414842903614,-0.0005603851750493,0.10883460193872],[-0.057812172919512,0.10218366235495,0.15013052523136],[-0.075891755521297,-0.083210170269012,0.00524030206725]],[[-0.037406478077173,0.057747021317482,-0.042740952223539],[-0.14723402261734,-0.043007168918848,0.12658612430096],[0.060890905559063,0.069207683205605,-0.032491482794285]],[[0.0028244850691408,-0.26703378558159,0.089239284396172],[-0.041390977799892,-0.026397679001093,0.16154143214226],[-0.10299306362867,0.042835015803576,-0.095009230077267]],[[0.012665855698287,0.014598314650357,-0.10929571092129],[-0.040149372071028,0.039414118975401,-0.082475215196609],[-0.11789520829916,-0.079890072345734,-0.10081596672535]],[[-0.029976181685925,-0.095894291996956,-0.035028181970119],[0.065213948488235,-0.067016683518887,0.061792768537998],[0.018178030848503,0.011574752628803,-0.029280453920364]],[[-0.016037756577134,-0.08970595896244,-0.20700083673],[-0.048293437808752,-0.036956872791052,0.11727307736874],[-0.055484104901552,0.20816633105278,-0.026264280080795]],[[-0.1677101701498,0.010754647664726,0.15871138870716],[-0.12570507824421,-0.1092469394207,0.13245642185211],[0.014003943651915,-0.23784077167511,0.10806552320719]],[[-0.16620181500912,0.05787905678153,-0.14156544208527],[-0.053299810737371,0.010184678249061,-0.1068095639348],[0.092454180121422,0.039334394037724,0.036713525652885]],[[0.054729912430048,-0.11007909476757,0.011346035636961],[0.040189079940319,-0.0041255028918386,-0.11536584049463],[0.063049733638763,-0.024268543347716,-0.09555371850729]],[[0.0066112857311964,-0.0053561520762742,-0.027400283142924],[-0.048244208097458,-0.036932718008757,-0.074897557497025],[-0.050721511244774,-0.20568065345287,0.2721284031868]],[[0.075855143368244,-0.025462416931987,-0.035660907626152],[-0.02942219004035,-0.013226378709078,-0.035215567797422],[0.025296315550804,0.026593204587698,0.0097512928768992]],[[0.10619169473648,0.16543398797512,-0.048112452030182],[0.060258224606514,0.03401543200016,-0.1581027507782],[0.074979424476624,0.096026703715324,-0.30822360515594]],[[0.044084519147873,-0.1040169224143,-0.17188127338886],[0.0027243525255471,-0.0067885057069361,-0.1264424175024],[0.059112712740898,0.17393146455288,0.067285962402821]],[[0.0031570014543831,0.10714955627918,-0.077562190592289],[-0.017100503668189,0.053282916545868,-0.028648767620325],[-0.068281695246696,0.048117354512215,0.042762942612171]],[[0.075010225176811,0.08797313272953,0.0013797625433654],[0.032666888087988,-0.1278381049633,-0.053598891943693],[-0.02456402592361,0.024475844576955,0.014776000753045]],[[-0.16786554455757,-0.0028497779276222,0.095231868326664],[0.055434688925743,0.012602893635631,-0.072727866470814],[-0.011697380803525,-0.22049912810326,-0.032565765082836]]],[[[0.036377720534801,-0.0063476730138063,0.020769946277142],[0.064215958118439,-0.13159693777561,0.14643517136574],[0.082390628755093,-0.10956124961376,-0.042657036334276]],[[-0.11549651622772,-0.010665186680853,-0.035142093896866],[0.019607484340668,0.099285125732422,-0.02696019038558],[0.087360478937626,-0.036037690937519,0.011658637784421]],[[0.068386144936085,0.0055841845460236,0.031314108520746],[0.083383537828922,0.025688732042909,-0.012547695077956],[0.17823028564453,-0.048521284013987,-0.024541944265366]],[[0.1093894392252,-0.039749823510647,-0.061235219240189],[-0.005056026391685,0.11080177873373,-0.01983848772943],[-0.056084785610437,-0.00484126387164,-0.0090789077803493]],[[0.030599063262343,0.056707058101892,-0.052067127078772],[0.017930408939719,0.075578525662422,0.078312441706657],[-0.011066498234868,-0.044858675450087,0.017878901213408]],[[-0.080799102783203,-0.082345589995384,-0.053909484297037],[-0.068768419325352,-0.15018755197525,0.03346111997962],[0.09174221009016,0.062397304922342,0.17345528304577]],[[0.009479584172368,0.0063348109833896,-0.10366704314947],[-0.13213832676411,-0.018541347235441,-0.05496284738183],[0.11345140635967,0.0087639894336462,-0.060302652418613]],[[-0.025119820609689,0.12379053980112,-0.054426286369562],[0.071849502623081,0.067432589828968,0.014238321222365],[0.020747596397996,0.043010830879211,-0.13817957043648]],[[0.083174221217632,-0.0031165864784271,-0.08117513358593],[-0.063105709850788,-0.003887809580192,-0.084588378667831],[0.09399987757206,0.014865148812532,-0.0643090903759]],[[-0.048617716878653,0.067529432475567,0.056263517588377],[0.14796675741673,0.1245703548193,-0.060737852007151],[0.08753164857626,-0.035908069461584,-0.1254319101572]],[[-0.042199764400721,0.12382286041975,0.048710998147726],[-0.049490075558424,0.0085787707939744,-0.075565755367279],[0.082727707922459,0.011465618386865,0.018936978653073]],[[-0.31838101148605,0.001038905698806,-0.10587350279093],[-0.050820089876652,0.10743208229542,-0.12481074035168],[-0.13393260538578,0.14736296236515,-0.16587293148041]],[[0.070974916219711,-0.051150798797607,-0.062558181583881],[0.17303608357906,0.047909416258335,-0.1457554101944],[0.10207612067461,0.028491578996181,-0.026756817474961]],[[-0.0439886264503,0.016006577759981,0.066182211041451],[0.1032602712512,0.029165307059884,0.019982570782304],[0.037975620478392,-0.14557723701,-0.11627174168825]],[[0.047893524169922,-0.063690409064293,-0.12652577459812],[0.018794370815158,0.088581912219524,0.010090233758092],[-0.02245487831533,0.026706898584962,0.039325945079327]],[[-0.063173957169056,0.014840601012111,-0.017053905874491],[-0.10420444607735,-0.089801818132401,0.12406145036221],[-0.0079384921118617,-0.039050333201885,-0.019804527983069]],[[0.2230418920517,-0.030779609456658,0.04086009785533],[-0.082688242197037,-0.068868920207024,0.033392757177353],[-0.11395592987537,-0.10267312824726,-0.049391973763704]],[[0.032632611691952,0.067113600671291,-0.093228459358215],[-0.039301492273808,-0.087303131818771,-0.055531740188599],[0.10722401738167,0.091745972633362,-0.01633732393384]],[[-0.16269056499004,0.03530265390873,0.054133411496878],[0.089648775756359,0.12445922940969,-0.077100425958633],[-0.067018911242485,-0.27011725306511,-0.1228913962841]],[[0.10132340341806,0.014956437982619,-0.21579924225807],[0.036132335662842,-0.029636831954122,-0.07278074324131],[0.064555764198303,-0.087243191897869,-0.096107214689255]],[[0.0059821298345923,0.038691055029631,-0.087745770812035],[0.066252045333385,-0.03733292594552,-0.085074305534363],[0.066517733037472,0.025860823690891,-0.16715946793556]],[[0.0311238784343,-0.16216276586056,-0.041931416839361],[0.1969295591116,-0.038524437695742,0.084551781415939],[0.15199361741543,0.072662085294724,0.12471462786198]],[[-0.071406871080399,0.022656654939055,-0.076644219458103],[-0.0095367487519979,0.10925657302141,-0.15183633565903],[-0.15507383644581,-0.030947359278798,-0.16319762170315]],[[0.02454168908298,0.021766481921077,-0.0024511907249689],[-0.00025485327932984,0.081469714641571,0.10359039157629],[-0.040498737245798,0.10979622602463,0.029977457597852]],[[0.13766449689865,0.010737121105194,0.050249375402927],[0.13371959328651,-0.020437000319362,-0.0030774399638176],[0.093140438199043,-0.050933815538883,-0.0058252969756722]],[[0.10011687874794,-0.031466137617826,0.083607591688633],[-0.10054247826338,-0.084511697292328,0.066589057445526],[0.073561817407608,0.03973776102066,-0.063396044075489]],[[-0.013341789133847,0.015197063796222,0.075976617634296],[-0.064823925495148,-0.0060902931727469,-0.034850094467402],[0.022848187014461,0.045865297317505,-0.08885882794857]],[[-0.002443318022415,-0.031288329511881,-0.17620225250721],[0.069568991661072,-0.0078121111728251,0.15737733244896],[0.0055037653073668,0.14833231270313,0.15028715133667]],[[-0.075396470725536,-0.16145388782024,-0.18781219422817],[-0.25198408961296,-0.06751687079668,-0.076173573732376],[-0.081864580512047,0.0324248932302,-0.037563934922218]],[[-0.02968311496079,0.054631877690554,0.11203233152628],[-0.0012628209078684,-0.011418368667364,0.012957060709596],[-0.043165966868401,-0.053072553128004,-0.013355023227632]],[[0.043035615235567,-0.011209275573492,0.07810128480196],[0.085385255515575,-0.061707861721516,0.038917046040297],[-0.027465032413602,-0.045279450714588,-0.037950810045004]],[[0.012101083993912,-0.0067445570603013,-0.15774267911911],[-0.035892985761166,0.0096245501190424,-0.089308775961399],[0.10416173189878,-0.013502722606063,-0.17523339390755]]],[[[-0.025760568678379,0.075303308665752,-0.014637166634202],[0.060930661857128,-0.11313854902983,-0.15462790429592],[-0.014886876568198,-0.016262071207166,-0.067598223686218]],[[-0.12196653336287,0.060600828379393,0.041148126125336],[-0.18401451408863,0.047256160527468,-0.028691461309791],[-0.0042706155218184,0.03444629535079,0.080114036798477]],[[-0.062777116894722,0.066749274730682,-0.045416940003633],[-0.016396937891841,-0.10938089340925,0.054861251264811],[-0.028723668307066,-0.044083654880524,0.2025343477726]],[[0.022276623174548,-0.011408739723265,-0.10144760459661],[0.042619038373232,-0.078610822558403,-0.051044423133135],[0.15233655273914,0.068179801106453,-0.14707231521606]],[[-0.0086153680458665,-0.00042683308129199,-0.043053340166807],[0.043331827968359,0.043678067624569,0.051495488733053],[0.065043307840824,0.14638060331345,-0.097078070044518]],[[0.19159138202667,0.064704075455666,-0.025863034650683],[-0.11053318530321,0.069559939205647,0.05112124606967],[-0.36970937252045,0.0088882902637124,-0.073601372539997]],[[-0.12643174827099,-0.063028894364834,0.1131167858839],[-0.10572540014982,-0.0098254410549998,-0.0064275190234184],[-0.055574435740709,0.029850291088223,0.004593345336616]],[[0.1987701356411,-0.038580309599638,0.018403379246593],[0.084731511771679,0.0079867579042912,-0.021703323349357],[0.065999589860439,-0.023395616561174,-0.14461269974709]],[[-0.0022731067147106,0.028298834338784,-0.044629994779825],[-0.1766555160284,0.068542093038559,-0.006324184127152],[0.023029446601868,0.010702854953706,-0.03126822039485]],[[0.051810450851917,0.091591686010361,0.039659392088652],[0.11960063874722,0.022648902609944,0.065334886312485],[0.013561573810875,0.0094806123524904,0.0490004979074]],[[-0.015324234031141,-0.036290433257818,-0.019221706315875],[-0.061176661401987,-0.16611663997173,0.024989919736981],[-0.059020832180977,0.061561334878206,-0.045283488929272]],[[0.036819264292717,0.1757480353117,0.091979816555977],[-0.17122676968575,-0.074006572365761,0.029508020728827],[-0.05998258665204,-0.023991702124476,0.0086524393409491]],[[0.031147735193372,0.025835106149316,-0.10694215446711],[-0.082458607852459,0.025360764935613,-0.025757171213627],[-0.057531349360943,0.052145183086395,-0.082731567323208]],[[-0.020174816250801,-0.044817823916674,-0.0705197006464],[0.046982385218143,-0.085483685135841,-0.10035583376884],[-0.081975713372231,-0.033083256334066,-0.10711104422808]],[[-0.041715778410435,-0.072597540915012,0.024862833321095],[0.0065266229212284,-0.010667962022126,0.002015836769715],[0.064017280936241,0.039084922522306,0.036431532353163]],[[-0.12528635561466,0.079874105751514,-0.012750464491546],[-0.10546277463436,-0.045504465699196,-0.01607252843678],[0.092130571603775,-0.0049493662081659,-0.00505460659042]],[[0.21685068309307,0.039411071687937,-0.11662082374096],[0.10609608143568,0.051911942660809,0.029851803556085],[-0.081604331731796,-0.10033556818962,0.04991826415062]],[[0.079443126916885,0.099523410201073,-0.17530718445778],[0.094404146075249,-0.073561497032642,-0.15688715875149],[-0.031153464689851,0.081835336983204,-0.070536538958549]],[[-0.0018280277727172,0.084700956940651,0.032602455466986],[0.12296979129314,0.029314892366529,-0.017776940017939],[0.24746488034725,-0.025327645242214,-0.24438169598579]],[[-0.044310551136732,-0.10677582770586,-0.1067578420043],[0.13516840338707,-0.062657780945301,-0.096091084182262],[0.042686063796282,0.14990673959255,-0.16620111465454]],[[0.013472246937454,0.088214822113514,-0.014171907678246],[-0.030800148844719,-0.03536719083786,-0.040040571242571],[-0.12307939678431,-0.0045344303362072,0.015107030980289]],[[-0.1049614623189,-0.10657680779696,0.069354347884655],[0.15417321026325,-0.064779341220856,-0.06611205637455],[0.028160328045487,0.048568412661552,-0.1139115691185]],[[0.084592282772064,0.0046490873210132,0.033930234611034],[-0.011410254985094,0.043719217181206,-0.15648260712624],[-0.023439621552825,0.058131482452154,-0.016609435901046]],[[0.19104854762554,0.020319264382124,0.10189864039421],[-0.035322275012732,-0.08249019831419,-0.052351735532284],[-0.13378784060478,-0.060003325343132,-0.069253146648407]],[[0.034840028733015,0.050862468779087,-0.2482588738203],[-0.010504649952054,0.1439208984375,-0.026246262714267],[0.060760844498873,-0.037291511893272,-0.0065656788647175]],[[0.094768211245537,-0.013654319569468,-0.05469461157918],[-0.13864633440971,0.010664505884051,-0.033223874866962],[0.05910336971283,0.0039982041344047,0.06869450956583]],[[0.063994027674198,0.083841517567635,-0.05005793645978],[-0.007629154715687,0.07826791703701,-0.052057020366192],[-0.082235664129257,-0.075632356107235,-0.020894030109048]],[[-0.34527644515038,-0.17104682326317,0.17068727314472],[0.013339773751795,0.040734138339758,0.11406497657299],[0.032738901674747,0.0066930898465216,0.17114061117172]],[[0.014844616875052,0.055670663714409,-0.021962923929095],[-0.021405639126897,0.060434013605118,-0.036932196468115],[-0.03819689899683,-0.14414754509926,-0.16856133937836]],[[0.086608342826366,0.061603959649801,0.05525540933013],[0.080721706151962,-0.078569896519184,-0.043686348944902],[0.0057896799407899,-0.051103930920362,-0.04975077137351]],[[-0.025046860799193,0.025023898109794,-0.017404861748219],[0.014681865461171,-0.020445628091693,-0.045210607349873],[0.004718117415905,0.039753954857588,0.13777709007263]],[[-0.31459826231003,-0.19452098011971,-0.13982751965523],[-0.089323192834854,-0.15616053342819,-0.2195116430521],[0.024460455402732,-0.1468947827816,-0.090890124440193]]],[[[0.0085291424766183,0.023754168301821,-0.069952666759491],[0.067617438733578,-0.042666327208281,-0.042518176138401],[0.090511851012707,0.060145556926727,0.052765980362892]],[[0.075105093419552,0.009912665002048,-0.035002697259188],[0.039647866040468,0.017106261104345,-0.097321569919586],[0.028946520760655,0.035587355494499,0.086368083953857]],[[0.13161177933216,0.13401336967945,0.074448302388191],[0.003416063496843,0.069159485399723,-0.12298639863729],[-0.019431564956903,-0.042385209351778,-0.084258541464806]],[[-0.047467119991779,-0.12168052047491,0.10423336178064],[0.018401367589831,-0.022907055914402,-0.013269552029669],[0.088369116187096,0.02576919645071,0.076276957988739]],[[0.016453243792057,-0.016356855630875,-0.029732288792729],[0.034201424568892,0.032450705766678,0.030547874048352],[-0.11458643525839,-0.016284879297018,-0.075918488204479]],[[-0.0019742909353226,0.097242258489132,0.12603737413883],[0.0078387465327978,0.05130273848772,0.034749310463667],[-0.069706529378891,-0.08703638613224,0.019382933154702]],[[-0.011844047345221,0.14778344333172,-0.14028510451317],[0.094817720353603,0.026728956028819,-0.025666292756796],[0.094169490039349,0.0071399426087737,0.10785881429911]],[[0.073439858853817,0.23335252702236,0.0022574893664569],[0.015296286903322,0.04772450402379,0.037803471088409],[0.024411020800471,0.013189830817282,0.0090737026184797]],[[-0.0028520200867206,-0.12749411165714,0.063165470957756],[-0.075998798012733,0.10409073531628,0.0030651893466711],[-0.073318026959896,0.036710634827614,-0.0015707900747657]],[[0.12631164491177,0.037515066564083,0.042041063308716],[0.0081617580726743,0.024236213415861,0.16787712275982],[0.048848398029804,-0.077517598867416,0.080316253006458]],[[0.061400204896927,-5.8877201809082e-05,-0.15930055081844],[0.10807724297047,-0.018023330718279,-0.0069462917745113],[0.019604897126555,0.049310188740492,0.052316199988127]],[[-0.11380702257156,-0.079108834266663,-0.057418998330832],[-0.062094081193209,-0.01625819131732,-0.051723565906286],[0.00091753050219268,0.15052181482315,0.11348819732666]],[[0.073024861514568,-0.095108963549137,0.028215244412422],[-0.055446352809668,0.06258487701416,0.13153611123562],[0.058608759194613,0.20679703354836,-0.0013529693242162]],[[0.054774187505245,0.02023041434586,0.08290633559227],[0.12038804590702,0.058554474264383,-0.11284895241261],[0.070811092853546,0.11944553256035,0.020793667063117]],[[0.020935766398907,-0.035262912511826,0.0070066386833787],[-0.024458032101393,-0.076017089188099,0.0016887575620785],[0.0061098365113139,0.010186852887273,0.035807568579912]],[[0.038448691368103,0.034023784101009,-0.063088819384575],[-0.019803067669272,0.059050720185041,0.10559437423944],[0.041252590715885,0.11351782828569,0.19814601540565]],[[0.075764767825603,0.027261771261692,0.02423869073391],[0.060480378568172,-0.067710898816586,-0.050846878439188],[-0.17594181001186,0.084052756428719,0.019118633121252]],[[0.020067691802979,0.0043023023754358,-0.0028251654002815],[-0.043404653668404,0.056405499577522,-0.049682416021824],[0.058022450655699,0.015583581291139,-0.067223653197289]],[[-0.038856189697981,0.067178331315517,-0.014071849174798],[0.0098837353289127,-0.0031480779871345,-0.062611021101475],[0.097476191818714,0.01379150711,-0.12769046425819]],[[0.059022668749094,-0.043616086244583,0.0085614752024412],[0.076082810759544,-0.10753256827593,-0.31758651137352],[0.11760675907135,0.11046174168587,-0.093601576983929]],[[0.010046441107988,-0.060468763113022,-0.054460737854242],[0.068761102855206,-0.027128422632813,-0.001838908996433],[0.19632422924042,-0.019262243062258,-0.048602797091007]],[[-0.03008321300149,0.29463884234428,0.13793569803238],[0.0075262780301273,0.024394426494837,0.081875361502171],[-0.384506970644,-0.21368083357811,0.0022650405298918]],[[0.064614415168762,0.11062905192375,-0.017926231026649],[0.12719260156155,0.10520166158676,0.21491107344627],[-0.11773248016834,0.08173917979002,0.060941144824028]],[[-0.055603563785553,0.030639126896858,0.020839136093855],[-0.038787756115198,-0.030505429953337,0.019536979496479],[0.06853037327528,0.092506162822247,0.057298373430967]],[[-0.00076799804810435,-0.11184444278479,-0.064509764313698],[0.14044085144997,0.027077466249466,0.017054904252291],[0.081414498388767,0.069932982325554,0.091815643012524]],[[0.13535171747208,0.022800207138062,-0.03057699650526],[-0.010950515978038,-0.0061488505452871,-0.020905749872327],[0.085914194583893,-0.010730744339526,-0.037213366478682]],[[-0.074461914598942,0.09095460921526,-0.023575592786074],[-0.09325035661459,-0.005178096704185,0.064104557037354],[-0.024403547868133,-0.024986635893583,0.01951458118856]],[[0.099738493561745,0.18749214708805,0.013303888961673],[0.040115397423506,0.10003415495157,0.045624755322933],[-0.0092138396576047,-0.038175281137228,-0.10140870511532]],[[-0.10682696849108,-0.16504471004009,-0.046573538333178],[-0.078361354768276,-0.066635265946388,0.00080868578515947],[0.10250078141689,0.093676939606667,0.11485610157251]],[[0.1524400562048,0.038091469556093,0.018453903496265],[-0.041276909410954,0.01922426559031,0.063184589147568],[-0.054533950984478,0.021317875012755,-0.032367490231991]],[[-0.034612782299519,0.13816876709461,0.057457320392132],[-0.012680089101195,-0.0012635942548513,-0.0073245177045465],[-0.032084297388792,0.030403461307287,0.077319271862507]],[[-0.034300081431866,-0.12374617904425,-0.15825387835503],[0.07286798208952,0.0039402018301189,-0.02022329904139],[0.18082000315189,0.087584383785725,0.13467936217785]]],[[[0.027557177469134,0.0079694632440805,-0.045292813330889],[-0.11462838947773,-0.19233012199402,-0.24053049087524],[-0.061113748699427,-0.081767998635769,0.078033693134785]],[[-0.011886044405401,-0.0043573714792728,0.028740024194121],[0.072519443929195,-0.029607012867928,0.05908327922225],[0.069987952709198,-0.041873261332512,0.076655246317387]],[[-0.010368933901191,-0.030415775254369,0.12931907176971],[-0.01888208091259,-0.10700003057718,0.023689964786172],[0.11794246733189,-0.068211860954762,0.051757112145424]],[[0.041645959019661,-0.060929272323847,0.04031690955162],[-0.23834310472012,-0.12809990346432,-0.054157730191946],[-0.15198786556721,0.03346461057663,-0.06281453371048]],[[0.0043009049259126,0.047059413045645,-0.022449454292655],[0.078721456229687,-0.058900777250528,-0.035209216177464],[-0.040657360106707,-0.036502677947283,-0.061144802719355]],[[0.061604425311089,0.0074832527898252,0.091518960893154],[-0.093850441277027,-0.043139092624187,-0.093337528407574],[0.10440426319838,-0.050890102982521,0.0046019488945603]],[[-0.0019044751534238,0.026571841910481,-0.030556291341782],[-0.07999050617218,-0.15026354789734,0.0083682956174016],[0.07989838719368,0.033368144184351,0.024459142237902]],[[-0.034372352063656,0.018364071846008,0.042406901717186],[-0.14008283615112,-0.12692411243916,-0.05578438565135],[-0.10435551404953,-0.063436910510063,0.0017212736420333]],[[0.030559128150344,0.082324527204037,-0.060474045574665],[0.049678280949593,-0.02974140830338,0.010067250579596],[0.064132414758205,0.028513157740235,-0.11121390759945]],[[0.04639133438468,-0.10555825382471,-0.052542060613632],[0.00090992054902017,-0.009563053958118,0.022704098373652],[-0.2297737300396,-0.14884628355503,0.0073836445808411]],[[-0.12380980700254,-0.043352276086807,0.030002914369106],[-0.089315816760063,0.061504773795605,0.034424606710672],[-0.077039547264576,0.044284649193287,-0.023162869736552]],[[0.0077154752798378,-0.063811145722866,-0.068411640822887],[-0.12306174635887,0.014172912575305,0.059345278888941],[-0.12226298451424,0.061175618320704,0.020235987380147]],[[-0.040303766727448,-0.053377818316221,-0.015743536874652],[-0.0079605262726545,-0.075188271701336,0.0040367664769292],[0.08477184176445,0.0062183397822082,0.0053964965045452]],[[0.0026843927334994,0.013959295116365,0.020671723410487],[-0.042900118976831,0.089353278279305,-0.087402619421482],[0.013849616982043,-0.014099259860814,0.17632779479027]],[[0.10242290049791,-0.059991922229528,-0.040454033762217],[0.072590753436089,-0.020756602287292,-0.029661735519767],[0.036881115287542,-0.091908067464828,-0.0005595909897238]],[[-0.065325826406479,-0.10201954096556,-0.027282560244203],[-0.002267356030643,-0.013037797063589,-0.13449811935425],[0.059892382472754,0.080830052495003,0.069390870630741]],[[0.021057579666376,-0.0016490728594363,-0.095059178769588],[-0.17690977454185,-0.075253114104271,-0.1326497644186],[-0.069132506847382,-0.021306600421667,0.047149676829576]],[[-0.046932931989431,-0.039834767580032,-0.10507067292929],[-0.050944432616234,0.064929030835629,-0.073160000145435],[-0.032785836607218,0.13968643546104,-0.0084200128912926]],[[-0.10204262286425,-0.037054121494293,-0.082902424037457],[-0.043949645012617,0.1295458227396,0.043072365224361],[-0.15244069695473,-0.15530629456043,0.12920041382313]],[[-0.020573899149895,-0.014830384403467,0.10578887164593],[0.11633221805096,-0.0059610279276967,-0.015710638836026],[0.0062497169710696,-0.10871966928244,-0.076844297349453]],[[-0.078957557678223,-0.045169986784458,-0.16054736077785],[-0.043374236673117,0.069270320236683,-0.076110012829304],[-0.022567272186279,-0.009752799756825,-0.064934700727463]],[[-0.10962072014809,0.013405792415142,-0.13143518567085],[0.034856032580137,0.01671577244997,0.24136430025101],[-5.1008402806474e-05,-0.10043709725142,-0.17398461699486]],[[-0.03021752461791,0.082007586956024,-0.025110939517617],[-0.1287132948637,0.17747481167316,-0.13175155222416],[0.033277325332165,0.087055131793022,-0.27322095632553]],[[-0.032407760620117,-0.0020902520045638,-0.032977469265461],[-0.020640088245273,0.032283268868923,-0.028186812996864],[0.041844196617603,0.0078561455011368,-0.089347325265408]],[[-0.025060225278139,-0.1593804359436,-0.30091023445129],[-0.0032692444510758,-0.026897829025984,-0.14422205090523],[-0.061852272599936,-0.10560215264559,-0.17546197772026]],[[-0.13653369247913,-0.039248540997505,-0.17485465109348],[-0.14851565659046,0.0079215550795197,-0.1279864013195],[0.044941190630198,0.04704899713397,-0.062508404254913]],[[-0.092654533684254,0.090603850781918,-0.009300883859396],[-0.13612250983715,-0.011747599579394,-0.043658386915922],[-0.10827565193176,0.089380100369453,0.091113612055779]],[[0.074371740221977,0.15774531662464,0.14111667871475],[0.0078134657815099,-0.012328841723502,-0.094826832413673],[-0.093220986425877,0.017697537317872,-0.35953676700592]],[[-0.10493505001068,-0.077255822718143,-0.19653457403183],[-0.13471879065037,-0.26297414302826,-0.11146945506334],[-0.10424759984016,0.026070363819599,-0.074930123984814]],[[0.041255075484514,-0.028559867292643,0.13058495521545],[-0.084886632859707,-0.04292256757617,0.0499661937356],[0.02203362993896,-0.040090426802635,0.058826874941587]],[[-0.040059115737677,-0.032378323376179,0.031119994819164],[-0.032226365059614,0.0058151953853667,-0.13755483925343],[-0.047035049647093,0.041281953454018,-0.11135533452034]],[[0.018611008301377,-0.110202498734,0.067114487290382],[0.1101803407073,0.00071670935722068,-0.060881320387125],[0.052561778575182,0.059062011539936,-0.024230955168605]]],[[[0.055817723274231,-0.087835870683193,-0.047396946698427],[0.040775634348392,-0.02172483317554,-0.1241652444005],[-0.069823242723942,0.000293237157166,-0.027937680482864]],[[0.091870985925198,-0.038114290684462,0.017398547381163],[-0.014392229728401,-0.057421341538429,0.034905701875687],[0.021340884268284,-0.03018949367106,0.014946986921132]],[[-0.0089584086090326,0.2106506228447,-0.067011952400208],[0.011848916299641,-0.092846125364304,-0.079109892249107],[-0.049572724848986,0.076807737350464,-0.066017501056194]],[[-0.023463418707252,0.060767576098442,-0.10728642344475],[-0.013904690742493,-0.039931248873472,0.022039519622922],[-0.12262716144323,0.063366636633873,0.0098898215219378]],[[0.022621795535088,-0.071514092385769,-0.07920016348362],[-0.072344340384007,-0.10730939358473,0.10830649733543],[0.030458401888609,0.026062183082104,-0.062199156731367]],[[-0.054593481123447,0.087964773178101,0.02093537338078],[-0.0060817506164312,-0.095152631402016,0.13927407562733],[0.0085642617195845,-0.091269724071026,0.12964808940887]],[[0.031822219491005,-0.11348179727793,0.026049926877022],[0.085524469614029,-0.082541063427925,0.078790262341499],[-0.0064795399084687,-0.0071184476837516,0.02196703851223]],[[0.13565576076508,-0.022435754537582,-0.020933423191309],[-0.14868634939194,-0.021847698837519,0.014022579416633],[0.0067201424390078,-0.067882932722569,-0.062793701887131]],[[0.012048265896738,0.086183726787567,0.091496653854847],[0.066327847540379,-0.10789491981268,0.025565341114998],[0.047273859381676,-0.0262197740376,0.062266509979963]],[[0.065336249768734,-0.11458956450224,0.075921528041363],[0.036629054695368,-0.14292570948601,0.0092492047697306],[0.094759836792946,-0.0029274574480951,-0.01323545910418]],[[-0.030449539422989,-0.22236816585064,0.10221847891808],[0.017603568732738,-0.037427011877298,0.080724820494652],[0.12186433374882,-0.068171620368958,0.073650576174259]],[[0.097293727099895,-0.0025407965295017,0.063759684562683],[-0.062447659671307,-0.094345293939114,-0.048535346984863],[-0.06262531131506,0.00024525518529117,0.25820171833038]],[[0.061879932880402,-0.041144251823425,0.08778427541256],[-0.0067157205194235,-0.055984761565924,-0.085341945290565],[0.10314220190048,-0.076503328979015,0.03409705683589]],[[0.023430177941918,0.0037113418802619,-0.21709482371807],[0.03705083578825,0.066043071448803,-0.14940775930882],[-0.11895340681076,0.17079068720341,-0.12537336349487]],[[0.010028437711298,-0.047917656600475,-0.029387781396508],[-0.090483218431473,0.047368168830872,-0.074074491858482],[0.0057238498702645,-0.08885819464922,0.004127939697355]],[[0.0044866008684039,0.14198441803455,-0.025304853916168],[-0.058664206415415,-0.15221400558949,-0.067072778940201],[0.18048587441444,-0.09209206700325,0.045353390276432]],[[-0.10935889184475,0.097120381891727,-0.035405647009611],[-0.054192926734686,-0.10604318231344,0.12867034971714],[0.19146381318569,-0.12154524773359,0.057197026908398]],[[0.088666506111622,-0.095581479370594,-0.087478682398796],[-0.069399185478687,0.03321809694171,-0.061260629445314],[0.10015419870615,0.1120794788003,-0.10976411402225]],[[-0.02362678386271,-0.00026795140001923,-0.098682396113873],[-0.047182738780975,0.076295271515846,0.068013243377209],[0.091648049652576,-0.03233777731657,-0.039303835481405]],[[0.0082272682338953,-0.036327820271254,-0.045602258294821],[-0.055596623569727,-0.14320176839828,-0.072491802275181],[-0.015623488463461,-0.24087844789028,-0.013032301329076]],[[0.079493127763271,0.11086542159319,0.065412007272243],[0.0099757313728333,-0.10445931553841,-0.048189245164394],[0.085154794156551,-0.029694242402911,0.06022496894002]],[[-0.028752766549587,0.082411177456379,-0.055450715124607],[-0.013999394141138,-0.011165370233357,0.0277483984828],[0.04685340821743,0.038997031748295,-0.032284207642078]],[[-0.11985303461552,0.071115262806416,0.014937371015549],[-0.056361682713032,0.10133295506239,-0.046288523823023],[-0.13468953967094,-0.034500852227211,0.11377359181643]],[[-0.035157322883606,-0.07939051836729,0.10576667636633],[-0.097322650253773,-0.11777766793966,-0.21400354802608],[-0.0083146514371037,-0.15996132791042,0.047687400132418]],[[-0.11338809877634,-0.029378766193986,0.0068366625346243],[0.014071955345571,-0.33380264043808,-0.1076872870326],[0.098861783742905,-0.01490118727088,-0.072399094700813]],[[-0.0027471156790853,-0.13414935767651,0.005913034081459],[0.031582560390234,-0.30954986810684,0.065017469227314],[0.17169304192066,-0.0056690457277,-0.05063359439373]],[[-0.080325275659561,-0.024996915832162,-0.028174586594105],[0.13224422931671,-0.075589261949062,0.11370506137609],[0.053770661354065,-0.015419217757881,0.021150520071387]],[[0.10861292481422,-0.18911468982697,0.27166339755058],[0.081613153219223,-0.26170912384987,0.076045632362366],[-0.12745688855648,-0.038209151476622,-0.0010271117789671]],[[-0.10548826307058,-0.064007423818111,0.11032316088676],[0.0016104074893519,-0.006250552367419,0.0047806296497583],[0.021623916924,-0.09061461687088,-0.017443956807256]],[[-0.048296891152859,-0.13818223774433,0.038744926452637],[-0.061883825808764,0.006988693960011,-0.042198661714792],[0.055711638182402,0.055634703487158,-0.072504803538322]],[[-0.18579764664173,-0.037693738937378,-0.20630556344986],[0.042016588151455,0.011926808394492,0.18678067624569],[0.057881154119968,-0.21420714259148,0.021867839619517]],[[0.087990529835224,-0.05815202370286,-0.15743927657604],[-0.0047011594288051,-0.1020974367857,-0.035505045205355],[0.080901615321636,0.03659575432539,-0.089038141071796]]],[[[-0.05422767624259,-0.032926883548498,-0.015559208579361],[0.095293737947941,-0.028844648972154,-0.026871250942349],[0.067897915840149,-0.055042024701834,-0.066029317677021]],[[-0.093673214316368,-0.01783911883831,-0.028743432834744],[-0.11717443913221,0.041437432169914,0.04982502758503],[0.022147070616484,-0.044770479202271,-0.10215533524752]],[[0.10889272391796,-0.091232091188431,-0.053205586969852],[-0.0061905309557915,0.11988297104836,0.19019815325737],[-0.03727363422513,0.16444072127342,-0.075275808572769]],[[0.14069420099258,-0.051587495952845,-0.047915630042553],[0.050479829311371,0.13709147274494,-0.037349365651608],[0.063711769878864,-0.087448857724667,-0.095416039228439]],[[0.010330126620829,0.024840826168656,0.022330837324262],[-0.053269889205694,0.029099145904183,0.0089403036981821],[-0.056579291820526,-0.024641310796142,0.013006588444114]],[[0.096117258071899,0.018743492662907,0.18235825002193],[-0.0033004824072123,-0.11217269301414,0.10606893897057],[0.015381806530058,-0.104526437819,0.001208872301504]],[[0.088541015982628,-0.092846117913723,0.071868777275085],[0.1167665719986,0.083336547017097,-0.026996091008186],[-0.089737430214882,0.081827826797962,-0.042386129498482]],[[0.23180340230465,-0.11682588607073,-0.12022639065981],[0.26711112260818,-0.0044303629547358,-0.097967259585857],[-0.086302690207958,-0.09110426902771,0.026886042207479]],[[-0.029271436855197,0.074709355831146,-0.17183154821396],[0.0023962794803083,0.0060108848847449,0.06700087338686],[0.067672163248062,-0.063270047307014,0.060076337307692]],[[0.16790029406548,0.19982209801674,0.06011962890625],[-0.075085654854774,0.041661892086267,-0.10030940175056],[0.025634814053774,-0.05902786552906,0.03557151556015]],[[0.032128162682056,0.032919608056545,-0.0087010730057955],[0.11037740111351,-0.020613510161638,-0.023997532203794],[0.035756826400757,-0.080337688326836,-0.0022991271689534]],[[0.14636275172234,0.074790619313717,-0.016441103070974],[0.13368076086044,0.0048791258595884,0.022030362859368],[0.055552538484335,0.1657716780901,0.0042437077499926]],[[-0.0081882504746318,-0.0083673922345042,-0.15995739400387],[0.15342874825001,-0.081332646310329,0.16568380594254],[0.13364441692829,0.11694695055485,0.015651294961572]],[[0.18041029572487,-0.042736124247313,0.0029080884996802],[0.032452080398798,-0.050937719643116,0.0090115247294307],[0.1203812584281,-0.10097496956587,-0.0547527782619]],[[0.05923618376255,0.008723646402359,0.028557769954205],[0.11553692817688,-0.0078587643802166,0.0063071940094233],[-0.012638662941754,-0.022498996928334,-0.02630939334631]],[[0.1307689845562,-0.099115185439587,-0.18912081420422],[0.050936780869961,0.034610163420439,-0.078623987734318],[0.05211953446269,-0.15654934942722,-0.047944154590368]],[[0.074614524841309,0.15202507376671,-0.038941912353039],[-0.032847382128239,-0.039841510355473,-0.037199068814516],[0.088578052818775,0.094003774225712,-0.018395230174065]],[[0.036844063550234,-0.11005662381649,0.12136999517679],[0.13340872526169,-0.23650705814362,-0.16233868896961],[0.077812656760216,0.11117240041494,-0.035607077181339]],[[-0.031910937279463,0.010565957054496,-0.069467261433601],[0.038074478507042,-0.010130723007023,0.020465200766921],[0.039640992879868,-0.11451725661755,-0.095420181751251]],[[0.0025997089687735,-0.10553035885096,-0.16125114262104],[-0.025086594745517,0.137580037117,-0.13497693836689],[0.061064921319485,-0.1846608966589,0.050802666693926]],[[-0.073574885725975,-0.032832488417625,-0.13854975998402],[0.055414900183678,0.15846997499466,0.13429951667786],[-0.0011287392117083,-0.01920423284173,0.053490478545427]],[[-0.068943575024605,0.11879403144121,-0.00093769520753995],[-0.076290518045425,-0.071597903966904,-0.03153070807457],[-0.022799540311098,0.076331935822964,0.063025370240211]],[[0.057364106178284,-0.070611096918583,-0.024427074939013],[-0.099221020936966,0.10165897011757,-0.11541988700628],[0.0074976794421673,-0.0029283103067428,-0.14541308581829]],[[0.018889823928475,0.032134637236595,0.056273847818375],[-0.046110298484564,-0.074112981557846,-0.096729449927807],[0.0059475977905095,-0.065496318042278,-0.12997169792652]],[[0.10512515157461,0.11897964775562,0.0080706309527159],[-0.082346946001053,0.089806228876114,0.023047875612974],[-0.00085481448331848,-0.026659009978175,-0.18809542059898]],[[-0.011649198830128,0.0018259583739564,-0.063211254775524],[0.14043389260769,0.078214786946774,-0.1249151006341],[0.054178640246391,0.089677281677723,-0.070311464369297]],[[-0.033969111740589,0.12115363776684,0.012157877907157],[-0.12118208408356,0.016270827502012,0.022296845912933],[-0.024375785142183,0.049840003252029,-0.022585608065128]],[[0.11914858222008,-0.055561013519764,0.1315695643425],[0.13092444837093,-0.0075073842890561,0.0038865068927407],[-0.15593126416206,0.1450423002243,-0.019898910075426]],[[0.092727601528168,-0.10396753996611,0.032392859458923],[0.025580089539289,0.10718631744385,-0.078952006995678],[-0.01755016297102,-0.012911123223603,0.031327545642853]],[[-0.12240589410067,-0.11449563503265,0.041652999818325],[0.011528763920069,0.1081201210618,-0.0013680849224329],[0.018643204122782,-0.053797859698534,0.0035455427132547]],[[0.06078140810132,-0.080500453710556,0.033836346119642],[-0.063786581158638,-0.036653090268373,-0.095355927944183],[-0.0029874835163355,0.038997605443001,0.020933780819178]],[[0.012161402963102,-0.015228414908051,0.055190272629261],[0.0070326491259038,0.012783057056367,0.00074607791611925],[0.026783822104335,-0.035508539527655,-0.037494700402021]]],[[[0.04991814121604,0.023477582260966,0.049716852605343],[-0.054566666483879,-0.056406188756227,0.0035989556927234],[0.10110183060169,-0.028949657455087,0.021467724815011]],[[-0.014283792115748,0.12876389920712,0.10460375249386],[-0.083925656974316,-0.023186231032014,0.1155518963933],[-0.12536831200123,-0.049789860844612,0.031316474080086]],[[0.051598377525806,-0.11009750515223,0.079615004360676],[0.061986152082682,0.031643349677324,0.043340768665075],[-0.068174444139004,-0.14683929085732,-0.080613262951374]],[[-0.031892232596874,0.058562964200974,0.021917719393969],[-0.06552778929472,-0.038573782891035,-0.02764879539609],[0.0077746976166964,-0.0022606661077589,-0.013806951232255]],[[-0.069201998412609,0.052651204168797,-0.046903524547815],[0.035508628934622,0.055154997855425,0.066867917776108],[-0.095523677766323,-0.03873847424984,0.0225098002702]],[[0.16803461313248,0.058961812406778,0.054382983595133],[0.057002786546946,0.11525859683752,0.031197527423501],[-0.079686984419823,-0.053998600691557,0.014974213205278]],[[-0.13217982649803,0.089268982410431,-0.0033010661136359],[0.090676762163639,-0.059834033250809,0.09575442969799],[-0.032883673906326,-0.099522158503532,-0.025784261524677]],[[-0.10687968879938,0.10751867294312,0.016748875379562],[-0.076579906046391,-0.19973297417164,0.07213518768549],[-0.015490456484258,0.068751528859138,0.063390247523785]],[[-0.014715556055307,0.032135382294655,-0.016983773559332],[-0.059616405516863,-0.012291521765292,-0.0005150850629434],[-0.050696089863777,-0.058864939957857,0.011377332732081]],[[-0.17280754446983,-0.029672119766474,0.024124199524522],[-0.083832606673241,0.047226510941982,0.018104596063495],[-0.24615526199341,-0.058324251323938,-0.04623007774353]],[[-0.086464010179043,0.042243834584951,0.080465957522392],[0.030064707621932,-0.10960824042559,0.014261823147535],[-0.07576909661293,-0.021113669499755,-0.058762911707163]],[[0.066439084708691,0.029637783765793,-0.019054332748055],[-0.044643439352512,-0.070591352880001,0.05919011682272],[-0.040682330727577,-0.0056616729125381,0.074983529746532]],[[-0.022752337157726,0.0093297297134995,-0.11737777292728],[-0.075267247855663,-0.033482667058706,-0.076976895332336],[-0.027769049629569,-0.079751782119274,-0.0063903946429491]],[[-0.09405492246151,-0.03053822927177,-0.040707241743803],[-0.048572186380625,0.014332747086883,-0.12217245995998],[0.10984995961189,-0.060143101960421,0.045949332416058]],[[0.02419888228178,0.023200396448374,-0.046453963965178],[-0.034234870225191,-0.011418812908232,0.065801277756691],[-0.098982244729996,-0.085681177675724,0.078433386981487]],[[0.081144094467163,0.044688060879707,-0.040415033698082],[-0.048993855714798,0.036352016031742,0.045653123408556],[-0.079199232161045,-0.029203234240413,-0.0080278236418962]],[[0.032984562218189,0.061694052070379,-0.062608525156975],[0.091966517269611,0.022269036620855,0.18233565986156],[0.0018210845300928,2.8275280783419e-05,0.11966553330421]],[[0.050604801625013,-0.053725052624941,0.018071491271257],[0.058028385043144,-0.013024342246354,-0.01102696172893],[0.066164135932922,0.12009560316801,-0.049859266728163]],[[0.056447710841894,0.020526617765427,0.018922215327621],[0.023038791492581,0.075027674436569,0.076093122363091],[0.093212388455868,-0.14213119447231,-0.021954815834761]],[[-0.01005564071238,0.017886355519295,-0.086929567158222],[-0.12645922601223,-0.015023363754153,-0.0047754687257111],[0.014579314738512,0.0065690744668245,0.0047794687561691]],[[0.085348479449749,0.10631114244461,0.067669667303562],[-0.030293630436063,0.0094934618100524,0.01672007702291],[-0.12253841757774,0.0076671573333442,-0.075186893343925]],[[0.017598479986191,0.10391841828823,0.014678746461868],[-0.045204821974039,-0.10429938882589,0.12515261769295],[-0.12971070408821,-0.023282362148166,-0.048428766429424]],[[0.060273118317127,0.016898825764656,0.037686999887228],[0.024132335558534,0.094734840095043,-0.053425371646881],[-0.0062346467748284,0.13351781666279,0.14017972350121]],[[-0.0035794160794467,0.0007586992578581,0.082231126725674],[0.16777513921261,-0.10634886473417,-0.086222894489765],[0.085749201476574,0.10300685465336,-0.0063118431717157]],[[0.042206853628159,-0.017160341143608,-0.10199054330587],[-0.0083226831629872,-0.00056644843425602,0.0590432099998],[-0.062741793692112,0.03891159594059,-0.01230775564909]],[[-0.013326647691429,-0.046799276024103,0.010110485367477],[-0.095573604106903,0.1245544180274,-0.024146504700184],[-0.044926468282938,-0.06337958574295,0.0064310999587178]],[[-0.022164355963469,-0.03529354929924,0.026405431330204],[0.028198016807437,-0.032913982868195,-0.074491761624813],[0.064739130437374,0.094782970845699,-0.096786566078663]],[[-0.021425109356642,-0.01064686384052,0.088838651776314],[-0.031157795339823,0.029931416735053,0.0069255223497748],[-0.099573701620102,-0.087359122931957,0.012195076793432]],[[-0.043377667665482,0.05963072553277,0.075290463864803],[-0.080696187913418,-0.043853104114532,0.11676392704248],[0.15370094776154,-0.045213241130114,-0.02403224632144]],[[0.081651091575623,-0.035646483302116,-0.012199953198433],[0.022972570732236,-0.12936890125275,-0.065389975905418],[0.095511473715305,-0.037683755159378,-0.014285271987319]],[[-0.16949065029621,0.022103322669864,0.10861220210791],[0.12174298614264,-0.023906700313091,0.011210671626031],[-0.03587269410491,-0.020334139466286,-0.016529407352209]],[[-0.0242860019207,0.024519419297576,-0.026459284126759],[-0.15322075784206,-0.081570342183113,-0.19976525008678],[-0.096934340894222,0.038761388510466,-0.049663901329041]]],[[[-0.16887421905994,-0.15580625832081,-0.062084943056107],[-0.19116538763046,-0.071345195174217,0.098613351583481],[5.5625889217481e-05,-0.0043283496052027,0.1256485581398]],[[0.052842020988464,0.032281532883644,-0.018470307812095],[-0.003917143214494,-0.1267813295126,-0.033712849020958],[0.075503624975681,0.011160675436258,-0.053273845463991]],[[0.29789423942566,0.027124950662255,-0.096959829330444],[0.015266514383256,0.19151303172112,-0.14986768364906],[0.23284429311752,0.044071055948734,-0.33485543727875]],[[-0.027557879686356,0.041639219969511,-0.0030821769032627],[-0.11764724552631,-0.032539483159781,0.085330650210381],[-0.014659401960671,-0.034310486167669,0.13954137265682]],[[-0.032555904239416,0.028275052085519,0.035490415990353],[-0.071898736059666,-0.0043765958398581,-0.0079568950459361],[0.015592245385051,0.052011199295521,-0.07458908110857]],[[0.14809280633926,0.044063352048397,-0.14090962707996],[-0.045679718255997,-0.064619332551956,0.054947778582573],[0.13718409836292,0.013005638495088,0.047094196081161]],[[0.012757989577949,0.038640584796667,-0.027038162574172],[-0.085405863821507,-0.0072918701916933,0.081277832388878],[0.089379891753197,-0.085553221404552,-0.04624892398715]],[[-0.16053800284863,-0.066098555922508,-0.10165034234524],[-0.14050237834454,0.13122829794884,0.010983346030116],[0.08628173917532,0.1947123259306,-0.12369436770678]],[[0.045469917356968,-0.15804345905781,0.044206101447344],[0.1014321744442,-0.0010102858068421,-0.032521653920412],[0.039866521954536,-0.050593882799149,-0.029376884922385]],[[-0.087607450783253,0.040125522762537,-0.10478245466948],[0.0050807422958314,0.056950215250254,-0.015355250798166],[-0.003375350497663,0.044710341840982,0.10204694420099]],[[0.050358593463898,-0.027451954782009,-0.033807951956987],[0.024405676871538,0.047179915010929,-0.22332280874252],[-0.01694830134511,-0.2719059586525,-0.35307523608208]],[[0.10025830566883,-0.055526252835989,-0.20264548063278],[-0.052439320832491,0.026469111442566,-0.1273358464241],[0.15702530741692,-0.10787239670753,0.04889977350831]],[[0.10316423326731,0.041844375431538,0.0022962440270931],[0.037169724702835,0.1120031401515,0.026111662387848],[0.073261022567749,0.097072415053844,0.20083357393742]],[[0.023801006376743,-0.040078073740005,-0.1393321454525],[0.055132687091827,-0.01976714655757,0.11069291085005],[0.070989675819874,0.11328653991222,0.044085904955864]],[[-0.03191427141428,-0.0024091580417007,0.04974501952529],[0.052587848156691,0.063108801841736,-0.00027135110576637],[-0.066567614674568,-0.032034501433372,0.0027835220098495]],[[0.017978839576244,-0.01938870921731,0.11763620376587],[-0.046048115938902,-0.0081880716606975,0.11720509827137],[0.062572255730629,0.0017274637939408,-0.031460758298635]],[[-0.071300476789474,0.045807983726263,-0.029730182141066],[-0.0083240969106555,0.018391601741314,0.0063279685564339],[-0.0122035080567,-0.10328784584999,0.027516439557076]],[[-0.074358895421028,0.0034705307334661,0.071005262434483],[0.061333224177361,0.074640348553658,0.019960634410381],[0.15951901674271,0.11329441517591,-0.018792001530528]],[[-0.048166520893574,-0.16981749236584,-0.080308482050896],[-0.078393250703812,-0.01073338650167,0.044288262724876],[0.10385718941689,0.059126395732164,0.0064674187451601]],[[-0.16933435201645,0.10784740000963,-0.09767946600914],[-0.19273070991039,0.062609747052193,0.015496963635087],[-0.035172421485186,-0.048436474055052,0.10235794633627]],[[0.042888328433037,-0.1336874961853,-0.089770190417767],[0.057107761502266,-0.047119621187449,0.027750428766012],[0.033157005906105,0.064289674162865,0.11438978463411]],[[0.12288750708103,0.14080932736397,-0.057823695242405],[0.031942013651133,-0.045623157173395,-0.13275021314621],[-0.010732598602772,-0.14608536660671,-0.27211198210716]],[[0.092905841767788,0.051378257572651,-0.06384789198637],[0.11076872050762,0.11596559733152,-0.10962399095297],[-0.01825350150466,-0.091677814722061,-0.039528273046017]],[[0.0259805098176,-0.058045864105225,-0.06663154810667],[-0.060076113790274,-0.15944148600101,-0.064859345555305],[0.060214556753635,0.011117938905954,0.076460868120193]],[[-0.10747131705284,-0.14524553716183,-0.098573796451092],[-0.089149586856365,-0.051630243659019,0.11799947172403],[0.079898752272129,0.034759439527988,0.12324723601341]],[[-0.13681377470493,0.03252936899662,0.0303147546947],[-0.10438672453165,-0.0083530498668551,0.023275412619114],[0.011012758128345,0.054137583822012,0.02447584271431]],[[-0.062214359641075,-0.023553038015962,-0.042140565812588],[0.0096164764836431,-0.0095083545893431,0.15120083093643],[-0.055371552705765,0.087755382061005,-0.088099658489227]],[[0.039195120334625,-0.089403577148914,0.041023574769497],[-0.005765329580754,-0.15999202430248,-0.14919869601727],[0.12744289636612,-0.023728599771857,-0.021702462807298]],[[-0.099668465554714,-0.12130840867758,-0.082938604056835],[-0.025338314473629,0.07634624838829,0.060229692608118],[-0.11997126787901,-0.040580980479717,0.053087495267391]],[[-0.069992259144783,-0.032254133373499,0.027900256216526],[-0.21305476129055,0.050838727504015,0.083932988345623],[-0.034983236342669,0.049931064248085,0.0066599808633327]],[[0.08618238568306,0.10634653270245,-0.03367343172431],[-0.038140185177326,0.047018025070429,0.002235465683043],[0.21313787996769,-0.02501617372036,0.032273270189762]],[[-0.058928728103638,0.0064993589185178,0.038304667919874],[-0.059552609920502,0.09814989566803,-0.015899930149317],[-0.023930732160807,0.092112630605698,0.071724556386471]]],[[[-0.085027791559696,-0.012543105520308,-0.13546730577946],[-0.037669662386179,-0.021501123905182,-0.073722258210182],[-0.052762448787689,-0.068227842450142,0.00064212497090921]],[[-0.070342786610126,-0.18388423323631,-0.095245592296124],[-0.041084740310907,0.059270404279232,0.023456238210201],[0.00094331009313464,0.080312877893448,0.09537310898304]],[[-0.037200327962637,0.015114920213819,0.10477235913277],[0.014547437429428,0.07636134326458,0.0062962905503809],[-0.13594360649586,-0.075419813394547,-0.087233401834965]],[[0.035108085721731,-0.050041064620018,0.022527016699314],[-0.072252728044987,0.00065612589241937,-0.021615892648697],[-0.039700649678707,-0.035062987357378,-0.097148098051548]],[[0.0028544953092933,0.027567762881517,-0.02077360264957],[-0.014283768832684,-0.015035110525787,0.11636859178543],[-8.5026404121891e-05,-0.050172958523035,0.026134546846151]],[[0.036705508828163,-0.079395025968552,-0.098811514675617],[0.016544526442885,-0.066182605922222,0.081776537001133],[0.0099856276065111,-0.1183425039053,-0.10118055343628]],[[-0.21613809466362,-0.014343345537782,-0.06935366243124],[0.018902217969298,-0.02138270623982,0.10693834722042],[0.021784588694572,0.077742971479893,0.10303268581629]],[[0.054196305572987,-0.022865826264024,-0.028472110629082],[-0.018026724457741,0.14463977515697,0.011930936947465],[0.012204540893435,0.086545772850513,-0.067847900092602]],[[-0.10806763917208,0.0034311825875193,-0.16338853538036],[-0.061800424009562,-0.0095898499712348,0.032783191651106],[0.074734427034855,0.0031721820123494,0.018609635531902]],[[0.079954370856285,0.038800057023764,-0.095888704061508],[-0.017571587115526,-0.11266083270311,0.02055043913424],[0.10934653878212,0.095233827829361,0.052563596516848]],[[-0.099894970655441,-0.070987053215504,-0.013044859282672],[-0.052772488445044,0.011797386221588,0.027724893763661],[-0.02744534984231,0.070012152194977,0.04449013993144]],[[-0.041360665112734,-0.055657885968685,0.043911129236221],[-0.012994214892387,-0.0029414319433272,-0.15642865002155],[-0.075796522200108,-0.15370294451714,-0.0090298233553767]],[[-0.020689181983471,-0.07539776712656,-0.077111095190048],[0.17756417393684,-0.028518702834845,-0.03000096976757],[-0.046706207096577,-0.051246173679829,0.013947724364698]],[[0.09489418566227,-0.047592289745808,-0.18241828680038],[0.02545503154397,-0.13077628612518,-0.23195861279964],[-0.10365688800812,-0.22780746221542,-0.24078533053398]],[[-0.058367386460304,-0.039358571171761,-0.0088467923924327],[-0.057600274682045,0.14189024269581,0.026174051687121],[0.083949491381645,0.0053626140579581,0.058940403163433]],[[-0.019850216805935,-0.080811627209187,-0.089981742203236],[-0.065644137561321,-0.069475017488003,-0.06768724322319],[-0.064863540232182,-0.023655449971557,0.032407492399216]],[[-0.017281100153923,0.01423523016274,0.045481577515602],[0.07335852086544,0.0074505526572466,0.013732824474573],[0.13656701147556,0.059977017343044,0.024737555533648]],[[0.065527364611626,-0.13588637113571,-0.0898642167449],[-0.088977351784706,-0.091844454407692,-0.055792398750782],[-0.10737834125757,-0.0068552899174392,0.141078338027]],[[-0.076737262308598,-0.19556529819965,-0.23473651707172],[-0.29099532961845,-0.11839868873358,0.017819907516241],[-0.14127902686596,-0.10280448943377,-0.14600501954556]],[[-0.071533739566803,0.036407634615898,0.10288002341986],[-0.10211996734142,-0.028787702322006,0.043533127754927],[0.11022141575813,-0.023393072187901,0.11689227819443]],[[-0.0080142728984356,-0.13028803467751,-0.12701849639416],[-0.033974371850491,0.05016103386879,0.10635998100042],[0.059169165790081,0.059663865715265,0.11543246358633]],[[-0.020960539579391,-0.044290844351053,-0.022752709686756],[0.15831343829632,0.0056340233422816,-0.014538250863552],[0.024167917668819,0.1426402926445,-0.11452072113752]],[[0.024448823183775,0.097913272678852,0.10542067885399],[-0.085480995476246,-0.0040412931703031,-0.039878569543362],[0.13147060573101,-0.045030422508717,0.033536374568939]],[[-0.12984465062618,0.038073629140854,-0.039273258298635],[-0.13106173276901,-0.02832668274641,0.017486922442913],[-0.10850322246552,0.027073951438069,-0.087516590952873]],[[0.04918136075139,0.01429601944983,-0.011352415196598],[-0.097630739212036,0.051399752497673,0.054818373173475],[0.0021282471716404,0.012556593865156,0.052262980490923]],[[0.051742028445005,-0.016858618706465,0.043170463293791],[0.00030428363243118,0.012452333234251,-0.035982258617878],[-0.053131602704525,0.031782690435648,0.0014199499273673]],[[0.14461325109005,0.13310451805592,0.059924647212029],[-0.064462468028069,-0.056090496480465,-0.058867253363132],[-0.006061838939786,-0.13751110434532,-0.086238995194435]],[[-0.096096836030483,0.17891842126846,0.01555841229856],[-0.039935696870089,0.061021625995636,0.039693780243397],[0.041566293686628,0.094721414148808,-0.058541316539049]],[[0.1072921231389,0.10108774900436,-0.12319396436214],[0.12288016080856,-0.050365328788757,-0.017190184444189],[0.028298798948526,-0.002559125656262,0.13069847226143]],[[0.08345565199852,0.074279330670834,0.10578370839357],[0.030231397598982,-0.0098760072141886,-0.037941180169582],[0.0050257393158972,-0.036019597202539,-0.10121862590313]],[[-0.13689193129539,0.063588157296181,0.0011323345825076],[0.032271575182676,0.019006833434105,0.10089048743248],[0.027497125789523,0.086738467216492,0.018795162439346]],[[-0.16825647652149,-0.18053849041462,-0.031326502561569],[-0.15750037133694,-0.035063274204731,0.042521830648184],[-0.008559787645936,0.1021798029542,-0.07916422188282]]],[[[0.0025669932365417,-0.0024296077899635,-0.052082356065512],[-0.0023418453056365,-0.078059978783131,0.01324213668704],[-0.069062247872353,0.015674691647291,0.0609494112432]],[[-0.077021755278111,-0.057661861181259,0.076349548995495],[-0.087749354541302,-0.059138566255569,0.058352831751108],[-0.17328473925591,-0.0020090248435736,0.068474791944027]],[[-0.024910844862461,-0.076443828642368,-0.066408567130566],[0.0085105299949646,-0.10358518362045,0.0061278897337615],[0.045621771365404,-0.20102827250957,-0.11018915474415]],[[-0.044140990823507,-0.004181943833828,-0.013498824089766],[0.013616741634905,-0.12898395955563,0.081705398857594],[-0.025152826681733,-0.016107453033328,0.024204984307289]],[[0.089293085038662,0.0029948998708278,0.029324609786272],[-0.018597772344947,0.045944094657898,-0.050508603453636],[0.07012016326189,0.14106519520283,0.029755443334579]],[[-0.069344937801361,-0.0066006043925881,0.11320139467716],[-0.11250729858875,0.038530237972736,0.054843347519636],[-0.088599465787411,0.031305443495512,0.13774812221527]],[[-0.033945206552744,-0.051731370389462,-0.035915389657021],[-0.1769545674324,0.027502801269293,-0.084649130702019],[-0.067815601825714,0.015534521080554,0.077165193855762]],[[-0.20530165731907,-0.009341293014586,-0.062279261648655],[0.062775135040283,0.13544236123562,-0.049477908760309],[-0.083712175488472,0.094560198485851,-0.18888092041016]],[[-0.027037000283599,-0.033202279359102,0.064449444413185],[-0.10545781999826,0.083892695605755,-0.033123873174191],[-0.072460450232029,-0.029482206329703,-0.0086108958348632]],[[-0.0086264703422785,-0.050801243633032,0.02705904096365],[-0.0085945827886462,0.14200194180012,-0.0034108841791749],[-0.010077497921884,-0.026455512270331,-0.044560585170984]],[[-0.03638219460845,0.0451320707798,-0.016182152554393],[0.0014055614592507,0.028107240796089,0.022177670150995],[-0.22024734318256,0.080624714493752,0.10595960170031]],[[-0.022035822272301,-0.042861625552177,-0.040202546864748],[-0.13488441705704,0.084224939346313,-0.052354075014591],[0.070526443421841,-0.081775486469269,-0.0034029646776617]],[[-0.052052728831768,-0.11860061436892,-0.099146001040936],[-0.22055752575397,-0.035502422600985,-0.14519740641117],[-0.017666047438979,-0.015388398431242,0.049803052097559]],[[-0.033857550472021,-0.16323585808277,-0.20886571705341],[0.04884186014533,0.0035566978622228,-0.22382159531116],[0.091576099395752,-0.091655686497688,-0.22846658527851]],[[0.049002647399902,0.055245421826839,0.066940635442734],[-0.096782006323338,0.013914354145527,-0.0046746279112995],[0.037264779210091,-0.07737060636282,0.078942589461803]],[[-0.26848343014717,0.029381601139903,-0.044064745306969],[-0.11982368677855,0.053445879369974,-0.049189977347851],[-0.11305762827396,0.028902396559715,-0.039443396031857]],[[0.070486977696419,0.20225840806961,0.13266417384148],[0.089537262916565,0.10350035130978,0.099283486604691],[0.013762436807156,0.045405596494675,0.16142544150352]],[[-0.010470074601471,0.026278311386704,-0.026459075510502],[-0.017628761008382,0.050999294966459,-0.04224107041955],[-0.096362479031086,0.077175386250019,0.015277872793376]],[[-0.014906358905137,-0.1382170021534,-0.050729345530272],[-0.093048520386219,-0.099797688424587,-0.074930734932423],[0.18158863484859,-0.031402323395014,-0.16048961877823]],[[-0.10356739908457,0.0098688676953316,-0.14454448223114],[-0.018043743446469,0.045486479997635,-0.0857814848423],[0.17693303525448,-0.065147429704666,-0.14595429599285]],[[0.02948134765029,-0.020428856834769,0.017286211252213],[-0.019253481179476,-0.0025271673221141,-0.047296263277531],[-0.041597533971071,-0.049968481063843,0.07177560031414]],[[0.024117510765791,-0.040662992745638,0.058761991560459],[-0.020601103082299,-0.05185017362237,0.05622885748744],[-0.11820643395185,-0.064851798117161,0.12645077705383]],[[-0.0099065955728292,0.010001504793763,0.027482258155942],[-0.040543973445892,0.18091055750847,0.076916716992855],[-0.027679404243827,0.1314604729414,-0.12108440697193]],[[-0.12628924846649,-0.20323495566845,-0.077631592750549],[-0.16427280008793,-0.14300209283829,-0.134630382061],[-0.016712844371796,0.025814449414611,-0.084070928394794]],[[-0.046652350574732,-0.091749608516693,0.019324587658048],[-0.14193826913834,-0.12054116278887,-0.08984100073576],[-0.034083049744368,0.065711550414562,0.022282626479864]],[[0.069135636091232,-0.016122732311487,-0.066928923130035],[-0.016075888648629,0.017172530293465,0.014198260381818],[-0.10093340277672,0.13578370213509,0.012497883290052]],[[0.051013845950365,-0.069371625781059,-0.059875160455704],[0.013718189671636,0.050203792750835,-0.043468613177538],[-0.022029638290405,0.12572574615479,-0.10527703911066]],[[-0.097237922251225,-0.17010001838207,0.00037439845618792],[0.020445853471756,-0.054199256002903,0.070543751120567],[-0.40001240372658,0.081130683422089,0.24088303744793]],[[-0.033342521637678,-0.078772030770779,0.11533749848604],[0.0010449844412506,0.01000830437988,0.025347938761115],[-0.05156671628356,0.018849294632673,0.15265116095543]],[[0.080581247806549,-0.0040081827901304,-0.12887796759605],[0.14060196280479,0.028882708400488,-0.091848656535149],[0.050672084093094,-0.079137407243252,-0.050244871526957]],[[-0.013358283787966,-0.015194244682789,0.023904476314783],[0.10245638340712,0.056038372218609,0.023562382906675],[-0.12375693768263,-0.060127027332783,0.04822138696909]],[[-0.053637430071831,-0.049559820443392,-0.066937156021595],[-0.19408601522446,-0.029393550008535,-0.10761286318302],[-0.15539000928402,0.08778004348278,-0.097678735852242]]],[[[0.079276703298092,-0.051962681114674,0.040030211210251],[-0.043058700859547,0.067751578986645,-0.024900292977691],[0.0055550080724061,0.040829364210367,0.046178411692381]],[[0.024999927729368,0.12675681710243,-0.022093599662185],[0.012602859176695,0.042401753365993,-0.10905556380749],[0.037472236901522,-0.052685994654894,-0.06601095199585]],[[0.087318025529385,0.093240506947041,0.079351723194122],[0.070847742259502,-0.089684970676899,-0.075282335281372],[-0.022183513268828,0.072622559964657,0.066499322652817]],[[-0.082508407533169,-0.084968969225883,0.013884367421269],[-0.0546865016222,-0.10924622416496,0.076198130846024],[0.046018950641155,0.021379537880421,-0.00053380423923954]],[[-0.060782708227634,-0.066316112875938,-0.046406023204327],[-0.096583515405655,0.038637705147266,-0.021833686158061],[-0.060318294912577,-0.04771064966917,0.0017073589842767]],[[-0.14865781366825,0.14418117702007,-0.10658892989159],[0.079210706055164,0.04568799957633,-0.016892926767468],[0.067561082541943,0.15607550740242,0.0063904728740454]],[[0.15611059963703,0.0099642490968108,0.069583013653755],[0.0033445945009589,0.082239389419556,0.095447711646557],[0.041586052626371,0.10700591653585,0.048849985003471]],[[0.15976084768772,-0.026384236291051,-0.054953631013632],[-0.059251688420773,-0.10980278253555,0.034014232456684],[0.15021012723446,-0.17013661563396,0.051850281655788]],[[0.025940222665668,0.021817589178681,-0.074394084513187],[0.050713326781988,0.054250877350569,-0.15770302712917],[0.035817015916109,-0.049725189805031,-0.0099681634455919]],[[0.062762014567852,0.0091773550957441,0.14360879361629],[-0.10248331725597,-0.068758651614189,-0.11531130969524],[-0.024980537593365,-0.0050632334314287,0.14515963196754]],[[-0.10061156749725,-0.017181584611535,-0.026411447674036],[-0.083419121801853,0.23639796674252,-0.060622956603765],[-0.014230698347092,0.15282101929188,-0.13125893473625]],[[0.10165002942085,-0.04356262460351,0.072086662054062],[-0.083441562950611,-0.017679244279861,-0.10654247552156],[0.013385464437306,-0.027331333607435,0.021750392392278]],[[-6.0550100897672e-05,0.042423333972692,-0.162527769804],[0.045724872499704,-0.061946336179972,-0.1486833691597],[0.067390158772469,0.078202441334724,0.041594959795475]],[[-0.077154107391834,0.050143536180258,-0.13464513421059],[0.060063876211643,0.12841594219208,0.13274656236172],[-0.014165698550642,0.093696132302284,0.10996033251286]],[[0.040826357901096,-0.0071169636212289,0.017133394256234],[-0.051871307194233,-0.016036598011851,-0.039977323263884],[0.088087439537048,0.012004157528281,-0.04294041916728]],[[-0.016941998153925,0.088972687721252,-0.034679375588894],[-0.018953613936901,-0.26377683877945,-0.061158161610365],[0.076058819890022,0.011634954251349,0.087216012179852]],[[0.11512690782547,0.10276939719915,-0.032498750835657],[0.089614681899548,0.005190403200686,-0.20074310898781],[0.021445075049996,-0.092917487025261,-0.061203803867102]],[[0.11940339952707,0.10548020154238,-0.0066765677183867],[0.029699504375458,0.079309225082397,-0.027253663167357],[-0.094608500599861,-0.042040459811687,-0.18266950547695]],[[0.068120576441288,0.079679474234581,0.0016526540275663],[-0.088629826903343,-0.081164449453354,-0.046973321586847],[-0.021818045526743,-0.10176241397858,0.087493315339088]],[[0.056934792548418,-0.010046403855085,0.084192015230656],[-0.043449148535728,0.018396560102701,0.030246136710048],[-0.011384174227715,-0.029840165749192,-0.067178130149841]],[[0.13798712193966,0.12263876199722,0.031762432307005],[0.085083648562431,0.0091750686988235,-0.13718220591545],[0.024135861545801,0.081620492041111,0.015769341960549]],[[0.084379330277443,-0.13488478958607,0.1088145673275],[0.0063042440451682,0.097192697227001,-0.17522944509983],[0.1913213133812,-0.031555950641632,0.12565192580223]],[[0.015580485574901,0.12076517939568,-0.22390818595886],[-0.058799132704735,0.13767537474632,-0.071220211684704],[0.13836450874805,-0.02880397066474,-0.050008412450552]],[[-0.021215701475739,-0.031324476003647,-0.0061996197327971],[0.13598902523518,-0.071609146893024,0.04219863936305],[0.06170079857111,0.032774087041616,0.0090603744611144]],[[-0.072636760771275,0.057943422347307,0.061984661966562],[-0.020194686949253,-0.023483231663704,-0.017394810914993],[-0.022188236936927,0.10761700570583,-0.059177059680223]],[[-0.025770986452699,0.085138134658337,-0.075971655547619],[0.0079893004149199,0.073597028851509,-0.088638730347157],[0.079762332141399,0.037264186888933,-0.018906405195594]],[[-0.017636712640524,0.039084371179342,0.075288660824299],[-0.11999421566725,-0.0029606292955577,0.11696723848581],[-0.088243864476681,-0.0041913464665413,-0.015185672789812]],[[-0.039229102432728,0.14244373142719,-0.0056056366302073],[0.031494293361902,0.035700343549252,0.032533399760723],[0.00089829647913575,0.094401866197586,-0.040259279310703]],[[-0.031384859234095,-0.052893113344908,-0.081012196838856],[-0.086306154727936,-0.160589620471,-0.26962801814079],[-0.034585356712341,-0.092071808874607,0.023707570508122]],[[-0.081118389964104,-0.026228707283735,-0.037218645215034],[0.068827502429485,-0.068233229219913,0.020377200096846],[-0.015824750065804,0.0089909601956606,0.088562048971653]],[[-0.078498594462872,0.065392658114433,-0.10250779986382],[0.023985808715224,-0.14120852947235,0.034305162727833],[0.13049033284187,-0.030036682263017,0.045799922198057]],[[-0.03063241392374,0.026783030480146,-0.04883985221386],[-0.10737657546997,0.05586040392518,0.023611104115844],[-0.041721004992723,0.04815337434411,-0.047398269176483]]],[[[0.069947086274624,-0.24290023744106,-0.054880574345589],[-0.21732124686241,0.07194472104311,0.0023320049513131],[0.048360172659159,-0.055089063942432,-0.18459157645702]],[[0.049837309867144,0.032887760549784,-0.049850601702929],[0.10766686499119,-0.043023325502872,-0.040031187236309],[0.0078696999698877,-0.017783807590604,0.03158650547266]],[[0.12986750900745,0.18156290054321,-0.01302261184901],[0.14304454624653,0.13141112029552,-0.25971755385399],[-0.15322026610374,-0.065187722444534,0.065234541893005]],[[-0.071277476847172,0.051368031650782,0.044399384409189],[0.014297660440207,-0.0027109521906823,-0.13876517117023],[0.02772768214345,0.0084288408979774,-0.12637753784657]],[[0.0046330718323588,0.044736608862877,-0.046347599476576],[-0.050931997597218,0.039937019348145,0.090435422956944],[0.09343808889389,-0.078120119869709,-0.0097575569525361]],[[-0.11146474629641,-0.19280886650085,0.23111566901207],[-0.18939493596554,0.0047027948312461,0.069374457001686],[0.036819592118263,0.068873576819897,-0.14694479107857]],[[0.089810200035572,-0.05880993232131,0.046562001109123],[-0.034671373665333,-0.00078641140135005,-0.019448913633823],[-0.03227299079299,-0.004107762593776,-0.045608684420586]],[[-0.015466473065317,0.045341573655605,-0.35478711128235],[0.1876222640276,0.026237074285746,-0.10201245546341],[-0.28397431969643,0.11473964899778,-0.1402151286602]],[[0.013919692486525,0.067871153354645,0.055069830268621],[0.052478823810816,-0.060056000947952,-0.090161427855492],[-0.03222244605422,-0.071751609444618,0.030005924403667]],[[-0.12073142826557,-0.092837378382683,-0.078743107616901],[0.049963422119617,-0.041245464235544,-0.1165304929018],[0.14453865587711,-0.040780793875456,0.19245970249176]],[[-0.091165326535702,-0.1090315207839,0.0057971780188382],[-0.038695685565472,-0.079397663474083,0.00032479397486895],[-0.0081879487261176,0.031337585300207,-0.024203300476074]],[[-0.11849372833967,-0.070463806390762,0.038033340126276],[0.032344993203878,0.056467335671186,0.05117991566658],[0.013708170503378,-0.0063875345513225,-0.051407054066658]],[[0.0089412713423371,-0.11461065709591,-0.072154149413109],[0.077604152262211,-0.035392086952925,0.0040425295010209],[-0.0055644400417805,-0.089285671710968,-0.042418919503689]],[[-0.2366259843111,-0.099732264876366,0.23047675192356],[-0.093534760177135,-0.045809652656317,0.032570790499449],[0.062477216124535,-0.056561332195997,-0.12776817381382]],[[-0.02198756672442,0.022098366171122,0.03523787856102],[0.048261139541864,-0.043949823826551,-0.051216639578342],[0.011240283027291,-0.021934865042567,-0.005464056506753]],[[-0.15925025939941,-0.0082092834636569,-0.096458286046982],[-0.11475402116776,0.089655019342899,-0.0026612412184477],[0.22380661964417,-0.026909854263067,-0.11348997801542]],[[0.11429847031832,0.020713694393635,-0.27984175086021],[0.1730672121048,-0.30073195695877,0.066489778459072],[-0.53265458345413,0.067549183964729,0.014036322012544]],[[0.079614721238613,0.037998389452696,-0.01169406156987],[0.087324410676956,0.083886474370956,-0.075077079236507],[0.0055241924710572,-0.13235050439835,-0.062328532338142]],[[0.0090121990069747,-0.09168866276741,-0.20561331510544],[-0.059602588415146,-0.10993880778551,-0.12143357098103],[0.076827168464661,-0.053188480436802,0.13478504121304]],[[-0.015485858544707,-0.045122448354959,-0.099295265972614],[0.015198519453406,-0.12587210536003,-0.047286625951529],[-0.092660881578922,-0.10297107696533,-0.047747638076544]],[[0.027580514550209,-0.017527896910906,0.076527401804924],[-0.030132282525301,-0.07408893853426,-0.022901332005858],[-0.033541988581419,-0.04570708796382,0.0078051532618701]],[[-0.13133876025677,-0.19861102104187,0.12305445224047],[0.15412001311779,-0.038331802934408,-0.10524929314852],[0.025284953415394,-0.18442377448082,-0.012519207783043]],[[0.027930907905102,-0.049491673707962,-0.14496910572052],[-0.044492904096842,-0.21935488283634,0.0082441903650761],[0.035377528518438,0.14866407215595,0.14356781542301]],[[-0.081873513758183,-0.1039652749896,0.008316645398736],[-0.11740330606699,-0.051024101674557,0.054520051926374],[0.050153043121099,0.087115727365017,-0.14301374554634]],[[-0.15569856762886,-0.091538190841675,-0.078987345099449],[0.037700023502111,-0.075701199471951,-0.20867100358009],[0.049101702868938,-0.12965577840805,-0.12169853597879]],[[0.13742449879646,-0.20715239644051,-0.34510558843613],[-0.14758948981762,-0.24312910437584,-0.069805487990379],[-0.23238015174866,0.072633646428585,0.1550867408514]],[[-0.079011209309101,-0.09137400239706,0.01715967990458],[0.0438920147717,-0.052382852882147,0.084367245435715],[-0.014022717252374,0.029776740819216,0.034861821681261]],[[0.0015028980560601,-0.12220399081707,-0.094182103872299],[-0.0061841788701713,0.16530095040798,0.1086635440588],[-0.071209251880646,-0.20948961377144,0.029638785868883]],[[0.017571017146111,-0.057102091610432,0.066004067659378],[-0.073209829628468,-0.041229579597712,-0.23075632750988],[-0.053474154323339,-0.12258811295033,-0.047099817544222]],[[-0.058525808155537,0.082447580993176,-0.066265277564526],[0.01022781431675,0.08379527926445,0.052139788866043],[0.021109210327268,-0.035106588155031,-0.016013873741031]],[[0.048787340521812,0.15259888768196,-0.059937577694654],[0.021475207060575,-0.036429636180401,-0.066849380731583],[-0.08149091899395,0.010274279862642,0.019105218350887]],[[-0.020947683602571,0.16131608188152,-0.010377457365394],[0.077100567519665,-0.22249911725521,-0.0354207418859],[-0.17195062339306,-0.02342583052814,0.058316919952631]]],[[[0.045980103313923,-0.0018033599480987,0.083686046302319],[0.067986287176609,0.003512185998261,0.025472296401858],[0.032057091593742,-0.080430679023266,0.059860937297344]],[[0.083052732050419,-0.046024672687054,0.058343768119812],[-0.081238701939583,-0.029321279376745,0.019446602091193],[-0.073606356978416,0.012582109309733,0.014007794670761]],[[0.22577661275864,0.16148707270622,-0.056263942271471],[0.048434387892485,0.15673963725567,-0.1917749941349],[0.13737717270851,0.057679072022438,0.050591044127941]],[[0.021623389795423,0.080492623150349,0.10706412047148],[0.09799737483263,0.11674856394529,-0.094807088375092],[-0.12930789589882,-0.24543699622154,-0.092966422438622]],[[0.011786025948822,0.030642710626125,0.050594393163919],[-0.008134949952364,0.089679129421711,-0.073373258113861],[-0.04425561055541,-0.0008414588519372,0.025129433721304]],[[0.17249310016632,-0.14117279648781,0.046917963773012],[0.094162538647652,0.046141590923071,0.020399566739798],[-0.0016772939125076,0.041432220488787,0.08997792750597]],[[0.0091527346521616,0.070353001356125,-0.041414394974709],[0.14610582590103,0.043332412838936,-0.1561992764473],[-0.15836782753468,-0.050341069698334,0.074307188391685]],[[0.064069546759129,0.12246748059988,0.090052790939808],[0.03622105717659,0.016447694972157,0.12355578690767],[0.039151187986135,-0.097552359104156,0.012463740073144]],[[0.030929464846849,0.042267855256796,0.027935620397329],[-0.056710265576839,-0.0058753886260092,-0.056410375982523],[0.056514371186495,0.060398023575544,-0.062509618699551]],[[-0.15874356031418,-0.067675359547138,0.020643627271056],[-0.1081637814641,-0.048660889267921,-0.0069173173978925],[0.15282160043716,0.021729061380029,0.094394609332085]],[[-0.11350220441818,-0.01125699095428,0.017024571076035],[0.049131229519844,-0.0266725551337,0.041776891797781],[0.073792330920696,0.054683312773705,0.0024784512352198]],[[0.099272727966309,-0.10519064217806,-0.010513743385673],[0.04564069211483,0.041334390640259,0.07484308630228],[-0.030860746279359,0.069211594760418,0.13187044858932]],[[0.10107199847698,-0.081471152603626,0.049099281430244],[0.01247791852802,-0.0033623764757067,0.031938530504704],[0.1060771048069,0.018424632027745,-0.11385405063629]],[[-0.058786883950233,0.048652440309525,-0.019675754010677],[0.040348026901484,-0.095459386706352,-0.024715503677726],[-0.0063124010339379,0.077652499079704,-0.089584305882454]],[[0.030230540782213,-0.055387981235981,0.088009878993034],[-0.058217335492373,0.058191191405058,-0.067894779145718],[-0.053371623158455,-0.011029783636332,0.012581813149154]],[[-0.011872867122293,0.1189167574048,-0.028561299666762],[-0.025374637916684,0.11770808696747,-0.037439454346895],[-0.14107123017311,-0.085515275597572,-0.013633629307151]],[[-0.043963745236397,-0.066939033567905,-0.017325378954411],[0.12022659182549,0.047242466360331,-0.049029394984245],[0.20896399021149,0.11480922996998,0.059709854424]],[[0.039343129843473,-0.036692965775728,0.013931516557932],[0.00062137073837221,-0.057052526623011,-0.026265922933817],[0.11613814532757,-0.036568719893694,-0.049544859677553]],[[0.066733300685883,0.061424180865288,0.020704062655568],[0.088925182819366,-0.0079972753301263,0.082847654819489],[0.084619104862213,0.015489836223423,-0.0024460649583489]],[[0.029108198359609,-0.15936237573624,-0.070758461952209],[0.088391438126564,0.024450397118926,-0.11189322173595],[0.015557085163891,-0.053540036082268,-0.16986720263958]],[[-0.027866698801517,0.010267097502947,0.081205680966377],[-0.047844801098108,0.050793759524822,0.00069862324744463],[-0.0959812104702,-0.067131415009499,-0.014238480478525]],[[-0.13702633976936,0.14271524548531,0.087239317595959],[0.16572819650173,-0.050337832421064,0.13510590791702],[-0.0071583152748644,0.060515198856592,0.013249048963189]],[[0.084222868084908,-0.042315639555454,0.0038112809415907],[-0.041732843965292,-0.14224208891392,0.04444370418787],[0.10643698275089,-0.1087983995676,-0.021529901772738]],[[0.07767142355442,0.0063134972006083,-0.0068896766752005],[0.11699743568897,0.090193413197994,-0.021359197795391],[-0.038396615535021,-0.023515291512012,0.042696837335825]],[[-0.022883241996169,-0.10419724881649,-0.081037893891335],[-0.085608154535294,0.044936079531908,-0.12333380430937],[-0.10829721391201,-0.062297061085701,-0.26817414164543]],[[0.064155913889408,0.03065612539649,-0.086992792785168],[-0.059602249413729,-0.020025247707963,0.097887650132179],[-0.10702649503946,-0.048764180392027,0.042631439864635]],[[-0.017689000815153,-0.040048934519291,-0.069740794599056],[0.022969141602516,0.0031367405317724,0.054028153419495],[0.018429664894938,-0.021697293967009,-0.024121021851897]],[[-0.16044341027737,0.091972753405571,-0.040542379021645],[0.052035730332136,0.10075079649687,0.076789662241936],[-0.25805234909058,-0.080957941710949,-0.035336423665285]],[[-0.012419740669429,0.057177573442459,0.069869793951511],[0.11178469657898,-0.01796424202621,-0.032461293041706],[-0.077969022095203,-0.1076280772686,-0.092035405337811]],[[0.014530030079186,-0.029718518257141,-0.07698093354702],[-0.015672231093049,0.08080767840147,0.037623684853315],[0.094154439866543,-0.058669399470091,-0.053660400211811]],[[-0.080848947167397,-0.13561849296093,-0.10172135382891],[-0.0016766435001045,-0.09317971020937,-0.0077861691825092],[-0.028014464303851,0.042529221624136,-0.082526072859764]],[[-0.0846062079072,-0.0039287516847253,-0.022199619561434],[-0.047796860337257,-0.15506981313229,-0.081105530261993],[-0.11813756078482,-0.18705366551876,0.025873636826873]]],[[[-0.10752747952938,-0.058516230434179,0.078093633055687],[-0.067059487104416,0.065182566642761,0.12227131426334],[0.02116203121841,-0.031503722071648,-0.077746167778969]],[[-0.059656344354153,-0.11366569250822,-0.016836274415255],[-0.12495897710323,0.042347110807896,0.026768699288368],[0.0063735786825418,0.071376815438271,-0.010434637777507]],[[0.070640653371811,0.1489781588316,-0.20736573636532],[0.082906112074852,0.020423218607903,0.037378441542387],[0.044229473918676,0.032457560300827,0.060292866080999]],[[-0.11516287922859,0.069437459111214,0.071225009858608],[-0.061178423464298,-0.046570044010878,-0.019788349047303],[0.051905211061239,0.019394837319851,0.0176064632833]],[[0.060404296964407,0.019065342843533,0.034252543002367],[0.049559388309717,0.046685110777617,-0.024103412404656],[-0.017872143536806,0.017955020070076,-0.057669103145599]],[[-0.13858290016651,0.16757850348949,0.13881155848503],[-0.064941614866257,-0.066387414932251,0.077410824596882],[0.10921891778708,0.069300651550293,-0.15093170106411]],[[-0.094179183244705,0.0084929028525949,0.059294104576111],[0.0058084209449589,0.041647024452686,0.01236636377871],[0.090938188135624,0.16420048475266,-0.12624278664589]],[[-0.17399090528488,-0.016175307333469,-0.10738208144903],[-0.15514902770519,0.075776979327202,0.042836651206017],[-0.069733791053295,0.026992689818144,0.16280677914619]],[[-0.073328278958797,-0.029346685856581,-0.018425235524774],[-0.067482098937035,-0.043669104576111,-0.019110299646854],[0.011666506528854,0.073042847216129,0.052688170224428]],[[0.041109573096037,0.067276977002621,-0.12549513578415],[0.031041841953993,0.043200265616179,-0.0071309609338641],[-0.093884721398354,0.034884300082922,0.051170125603676]],[[0.066231243312359,0.11875493824482,0.013262719847262],[0.020416093990207,-0.049971543252468,-0.050784479826689],[-0.0011394079774618,0.014892119914293,-0.044056225568056]],[[-0.033905684947968,0.15067881345749,-0.051751557737589],[-0.077082671225071,-0.026923537254333,-0.013631349429488],[0.040718074887991,-0.17048153281212,0.0083704115822911]],[[0.0029332779813558,0.056340508162975,0.19832010567188],[0.0014717167941853,-0.00047401891788468,0.0035490822046995],[0.028555581346154,-0.021968234330416,-0.12134765088558]],[[0.056624457240105,-0.20547224581242,-0.052139781415462],[-0.072194263339043,-0.1408716738224,-0.12744553387165],[-0.18245080113411,-0.15731698274612,-0.0028573232702911]],[[-0.0030324133113027,0.0017112680943683,-0.067871414124966],[0.073039457201958,0.02720096334815,0.021153526380658],[-0.010225328616798,0.0019057507161051,0.073779590427876]],[[0.0076324255205691,0.058018781244755,0.12399935722351],[-0.12790235877037,0.0058327689766884,-0.0085179666057229],[-0.087673015892506,0.020912282168865,-0.069880023598671]],[[0.16483083367348,0.082669578492641,-0.019520735368133],[0.021220652386546,0.034489862620831,-0.12467021495104],[0.079337567090988,0.029248068109155,0.079285830259323]],[[-0.020938359200954,0.03427716717124,0.050107832998037],[-0.095404766499996,-0.033067744225264,-0.050169199705124],[-0.1404030174017,0.071857631206512,0.095279224216938]],[[-0.10649031400681,-0.19272546470165,-0.10107808560133],[-0.14873565733433,-0.035687290132046,-0.098317436873913],[-0.19349247217178,-0.22444109618664,-0.10761130601168]],[[0.022236598655581,0.10493295639753,-0.20600546896458],[-0.035857453942299,-0.097516790032387,-0.038811851292849],[-0.015219282358885,-0.08452520519495,-0.15855087339878]],[[0.0038382629863918,0.037868730723858,-0.0060326186940074],[-0.13749605417252,0.052072197198868,0.14174552261829],[0.01687553524971,-0.12201431393623,0.013121040537953]],[[0.02567021548748,0.0019606077112257,-0.019998524338007],[-0.021936777979136,0.12539167702198,0.056892521679401],[0.048355229198933,0.028338743373752,0.093535363674164]],[[-0.072277888655663,0.083874337375164,0.03578494489193],[-0.03296809643507,-0.014714764431119,0.047336205840111],[-0.070397466421127,-0.057790737599134,0.10160550475121]],[[-0.021538434550166,0.080380022525787,0.048483215272427],[-0.19937661290169,-0.073162205517292,-0.13950940966606],[-0.11058455705643,-0.090048089623451,0.021516872569919]],[[-0.069398440420628,0.12890450656414,0.063749551773071],[-0.18391731381416,-0.017513921484351,0.052198350429535],[-0.073199920356274,-0.047965176403522,-0.074043899774551]],[[-0.079730220139027,-0.090324401855469,-0.013650392182171],[-0.015277149155736,-0.036237493157387,0.050670493394136],[0.14616319537163,-0.046436667442322,0.15181313455105]],[[-0.0090904664248228,0.067398317158222,0.11105532199144],[0.027466643601656,-0.041223455220461,-0.054195214062929],[0.0022377599962056,0.0058041103184223,-0.11191871762276]],[[0.10665495693684,-0.17310807108879,0.050748158246279],[0.0009723209659569,-0.076202064752579,-0.14699253439903],[0.15082740783691,0.10374486446381,-0.19041314721107]],[[0.10105165094137,0.040379889309406,0.0030841161496937],[0.044702235609293,-0.11709280312061,0.053712293505669],[0.00756756355986,0.079938277602196,-0.030968844890594]],[[0.028889503329992,-0.010874171741307,0.078612238168716],[-0.040743831545115,-0.078504972159863,-0.042085077613592],[-0.0205207336694,-0.001103445654735,0.037262469530106]],[[0.038822837173939,-0.039468083530664,-0.08663285523653],[0.093010202050209,-0.027603808790445,-0.044835276901722],[0.0091381501406431,-0.098018333315849,0.0090604210272431]],[[-0.024729240685701,0.072733514010906,-0.00016510835848749],[-0.00077884638449177,0.0073335384950042,-0.034937418997288],[0.15134835243225,-0.161795347929,-0.0053034173324704]]],[[[-0.065447628498077,0.06490870565176,-0.061447370797396],[-0.00072680483572185,-0.074769236147404,0.0069218296557665],[-0.094941876828671,-0.14273415505886,0.016751425340772]],[[-0.058762922883034,-0.087556898593903,0.047012206166983],[-0.056327052414417,-0.0073196515440941,-0.018066165968776],[0.019899828359485,0.071961559355259,0.059852849692106]],[[-0.057822182774544,0.11297957599163,-0.18182608485222],[0.087820291519165,-0.045120403170586,-0.0012161310296506],[0.0045090215280652,-0.17031274735928,0.19313232600689]],[[0.019059266895056,0.016048332676291,-0.077462501823902],[-0.0088368933647871,-0.12869830429554,0.046335998922586],[0.060024961829185,0.084091886878014,0.07084035128355]],[[0.047564223408699,-0.012945129536092,0.0017586461035535],[-0.016084641218185,0.093226991593838,-0.0084752729162574],[-0.052112556993961,-0.0056500094942749,0.029600920155644]],[[0.16851469874382,-0.11215276271105,-0.074010729789734],[-0.10014685243368,-0.072367839515209,-0.0028222594410181],[-0.084115527570248,-0.19366434216499,0.047304630279541]],[[-0.053573105484247,1.7803577065933e-05,-0.096711874008179],[-0.037754841148853,0.064343713223934,0.015965543687344],[-0.048483192920685,0.095614820718765,-0.16461803019047]],[[0.066125266253948,0.028038064017892,-0.053183194249868],[0.22648261487484,-0.23928219079971,-0.1038214340806],[-0.074439540505409,-0.094672501087189,0.052662249654531]],[[0.0092634186148643,-0.040459413081408,-0.04808621108532],[-0.034156300127506,-0.034645710140467,-0.065885692834854],[0.02234349027276,-0.008799928240478,0.040072433650494]],[[-0.019231187179685,0.04148156195879,0.17382973432541],[-0.11460050195456,-0.043768085539341,0.055843841284513],[0.039011042565107,0.044485297054052,-0.052577216178179]],[[-0.083754345774651,-0.088042847812176,0.017489457502961],[-0.14818269014359,0.14020092785358,0.0064549273811281],[-0.0081902705132961,-0.0053514232859015,0.027902046218514]],[[0.042918588966131,-0.040134228765965,-0.1075733602047],[-0.11437571793795,-0.084709845483303,-0.045912262052298],[-0.11829923093319,-0.12651427090168,0.070066645741463]],[[-0.10585001111031,0.15468989312649,-0.12098925560713],[-0.013777946121991,0.012944210320711,0.04837054759264],[-0.1144286096096,-0.13073001801968,0.02018628269434]],[[0.072147965431213,0.022215461358428,-0.2231121212244],[-0.011389680206776,-0.1301973760128,-0.085106387734413],[-0.13829134404659,-0.091683611273766,0.097190953791142]],[[-0.080679528415203,0.025181513279676,-0.052955683320761],[0.058836236596107,0.034962430596352,0.098424293100834],[0.011063105426729,0.0026673467364162,-0.012523965910077]],[[0.034485384821892,-0.20241203904152,-0.043190576136112],[-0.024833159521222,-0.10555296391249,0.0024684246163815],[0.085639029741287,-0.067493781447411,0.042004376649857]],[[-0.097235150635242,0.016823710873723,0.02633123844862],[0.08828753978014,0.011496665887535,0.023667119443417],[-0.011816680431366,-0.0081088524311781,0.032110001891851]],[[0.1038931235671,-0.093606919050217,-0.010103094391525],[0.017263304442167,-0.12913906574249,0.042577113956213],[-0.027154227718711,0.044839110225439,-0.082455590367317]],[[-0.11309821158648,0.0040858024731278,0.090346954762936],[0.0091341715306044,0.090648666024208,-0.065516106784344],[0.017514837905765,-0.10520032793283,-0.17327110469341]],[[-0.023716151714325,0.06204579398036,0.042334288358688],[-0.12505258619785,0.1089224666357,-0.080896139144897],[0.04171484708786,-0.073812216520309,0.023394519463181]],[[-0.004250178579241,0.0058128051459789,0.0085379155352712],[0.024215677753091,0.014953874051571,-0.022645603865385],[0.038647830486298,-0.018515048548579,0.035850320011377]],[[0.0125284017995,-0.18533723056316,-0.050255265086889],[0.0075824484229088,0.067737311124802,0.049765899777412],[-0.15095852315426,0.12943582236767,0.031017372384667]],[[-0.0077883414924145,0.033166341483593,0.069389119744301],[0.04042749479413,-0.1426944732666,0.17299979925156],[-0.17448322474957,0.06139250844717,-0.0084220357239246]],[[0.14951354265213,0.0014696423895657,-0.10134849697351],[-0.1737767457962,-0.16959086060524,-0.13336032629013],[0.03416920080781,0.014634361490607,-0.062988169491291]],[[0.052122544497252,-0.02403873950243,-0.071683891117573],[-0.040056649595499,-0.10299326479435,0.025879936292768],[-0.021882662549615,-0.090387992560863,0.022852029651403]],[[-0.013578586280346,0.032832331955433,0.089214950799942],[0.03288684412837,0.132129535079,-0.12516944110394],[0.020267702639103,0.031263262033463,-0.29553917050362]],[[0.045781765133142,0.0025614604819566,-0.011403751559556],[-0.063640221953392,-0.0063228998333216,0.032800201326609],[0.01482349820435,0.05527825281024,-0.053475990891457]],[[-0.044663731008768,-0.10158953815699,0.01063050609082],[0.0059637031517923,0.07962305098772,-0.069403395056725],[0.010572081431746,0.035271812230349,0.0060878335498273]],[[0.15831191837788,-0.24284103512764,-0.17087307572365],[-0.12270140647888,0.0025394596159458,0.031642381101847],[0.01960452273488,0.030780900269747,0.076105564832687]],[[0.036491312086582,0.051847890019417,0.019626354798675],[0.0025339976418763,-0.091062881052494,-0.085563622415066],[-0.0081461509689689,-0.0061753443442285,0.0050654388032854]],[[0.089536994695663,0.028778187930584,0.048246413469315],[-0.033901631832123,-0.059107065200806,0.13116618990898],[-0.065894961357117,0.10209596902132,0.077647380530834]],[[-0.023833027109504,0.035213753581047,0.089301750063896],[-0.070612564682961,-0.02637579664588,-0.020607413724065],[-0.018492734059691,-0.044973306357861,-0.1285934150219]]],[[[0.041859462857246,-0.072715058922768,-0.088475078344345],[0.052182033658028,-0.03583712130785,-0.20862947404385],[-0.012195535935462,-0.0990309715271,-0.06795347481966]],[[-0.025243738666177,-0.070357151329517,-0.036027319729328],[-0.11322505027056,-0.024532662704587,-0.004035078920424],[-0.028922885656357,-0.051567409187555,0.089313581585884]],[[-0.18516993522644,0.023749062791467,0.1007441803813],[0.032157775014639,0.036069765686989,0.0081300986930728],[0.02392659522593,0.14390784502029,0.034357514232397]],[[-0.027794750407338,-0.095917008817196,0.0060799503698945],[-0.0095238843932748,-0.043885465711355,-0.013735146261752],[0.038390573114157,0.11536104232073,-0.083874978125095]],[[-0.067790940403938,-0.0035704700276256,-0.023570420220494],[0.021493816748261,0.12027119100094,-0.027461491525173],[0.078134022653103,0.16253623366356,0.004601170308888]],[[-0.14397047460079,-0.022484675049782,-0.031959358602762],[0.068900190293789,0.015264074318111,-0.11603016406298],[-0.10608902573586,0.014777077361941,-0.033050447702408]],[[0.032468065619469,-0.064588360488415,0.01017596013844],[0.048711948096752,-0.064976908266544,0.10928715765476],[-0.0095038926228881,0.050979368388653,0.023457454517484]],[[0.092908397316933,-0.04405452311039,0.0040425844490528],[-5.9798418078572e-05,-0.04216480627656,-0.027787966653705],[0.044980976730585,0.070356905460358,0.021397123113275]],[[-0.086118802428246,-0.016110647469759,-0.09951589256525],[0.016393883153796,-0.043743390589952,-0.019231114536524],[0.014509892091155,0.039363369345665,0.064373195171356]],[[-0.18607538938522,-0.087775908410549,0.067602977156639],[0.070923417806625,0.020055178552866,-0.041187852621078],[0.054680321365595,-0.10800236463547,0.027558755129576]],[[-0.0097449384629726,0.016518604010344,-0.097072646021843],[0.082811467349529,0.01321744453162,0.016292039304972],[0.02814850769937,0.061817139387131,0.0056956121698022]],[[-0.011971613392234,-0.06667897850275,0.057401705533266],[-0.16052411496639,-0.099676579236984,-0.097490683197975],[-0.12111004441977,-0.026812618598342,-0.1428777128458]],[[-0.0074334419332445,0.028944475576282,0.019572667777538],[0.068792700767517,-0.050075236707926,-0.053332537412643],[0.094722673296928,0.07048075646162,-0.063636049628258]],[[0.017442848533392,-0.086062595248222,-0.10198137164116],[-0.078113682568073,-0.20637039840221,-0.16648510098457],[-0.16233412921429,-0.039481412619352,-0.17190153896809]],[[-0.036588001996279,0.045384671539068,0.019733244553208],[-0.019079988822341,0.032621789723635,0.0018503476167098],[0.041462481021881,0.088399633765221,-0.016519255936146]],[[-0.064387582242489,-0.077714711427689,-0.090696446597576],[0.016551453620195,-0.024856269359589,-0.059918340295553],[-0.074044309556484,-0.04137060791254,-0.099420048296452]],[[0.10641402006149,0.093389272689819,0.029185052961111],[0.23603291809559,-0.098848387598991,0.12851156294346],[-0.10546004772186,-0.052359703928232,-0.019083963707089]],[[-0.018711557611823,0.070936299860477,-0.16537295281887],[-0.050743594765663,-0.026593195274472,-0.025456685572863],[-0.0022224409040064,0.01023040432483,0.067216828465462]],[[0.039052210748196,0.1006126627326,0.030716612935066],[0.068593502044678,-0.077820830047131,-0.19816797971725],[0.016562649980187,0.031828340142965,-0.098539687693119]],[[0.12163854390383,0.062723815441132,-0.01892432756722],[0.13037863373756,0.073611043393612,0.09207608550787],[-0.058071445673704,0.02353092841804,-0.12993633747101]],[[-0.089177817106247,0.052659019827843,-0.012753440998495],[0.026274921372533,-0.10724897682667,0.016080508008599],[0.088266015052795,-0.013355272822082,0.04553834721446]],[[-0.11762971431017,-0.066856190562248,0.037063907831907],[-0.080056987702847,0.004599632229656,-0.02004431001842],[0.0087705682963133,-0.11156711727381,0.084913395345211]],[[-0.090323373675346,-0.066047064960003,0.038571130484343],[0.019755417481065,-0.037838723510504,0.083440154790878],[-0.092529475688934,0.11258789896965,-0.068588368594646]],[[0.088446244597435,0.045164626091719,-0.035660158842802],[-0.066534072160721,-0.15893714129925,-0.022541249170899],[-0.10717165470123,-0.12491887807846,-0.11373353004456]],[[-0.15444225072861,-0.1509222984314,0.038322672247887],[0.017713891342282,-0.041273102164268,0.1702936142683],[-0.022407561540604,0.051226228475571,0.021270029246807]],[[0.019560661166906,0.076562114059925,0.008804539218545],[0.043997656553984,-0.13097546994686,0.041726533323526],[-0.10455164313316,-0.057620134204626,-0.051445629447699]],[[0.093593142926693,-0.044290229678154,-0.024837689474225],[0.0092748068273067,-0.0033316023182124,-0.012075820937753],[-0.071419261395931,-0.00048795752809383,0.025769324973226]],[[0.057236462831497,0.045502077788115,0.060885492712259],[-0.0092292921617627,0.13770903646946,0.096197493374348],[0.07263196259737,0.014115571044385,0.03341743722558]],[[0.14009933173656,0.092468678951263,-0.081811219453812],[0.021656677126884,-0.079821333289146,-0.14863093197346],[-0.090281173586845,-0.10902651399374,-0.013419748283923]],[[0.067726336419582,0.06207799911499,-0.014480919577181],[0.057749971747398,-0.054323263466358,0.024824684485793],[-0.10500414669514,-0.0037502991035581,-0.12333427369595]],[[0.032274786382914,-0.014002561569214,0.015106366015971],[0.040503270924091,0.029192162677646,-0.006142602302134],[0.086716063320637,0.024878907948732,0.021352883428335]],[[-0.11881774663925,-0.095444187521935,-0.010493542067707],[0.04234379529953,0.044867001473904,0.044772006571293],[-0.056952223181725,-0.070966310799122,0.010169030167162]]],[[[-0.016353499144316,-0.080827973783016,-0.012768546119332],[-0.031229246407747,-0.097514443099499,-0.063059628009796],[0.011868302710354,-0.030497189611197,-0.016330868005753]],[[0.0039639035239816,0.0071336477994919,-0.071157909929752],[0.029332397505641,-0.013613133691251,0.0025278781540692],[0.054826341569424,-0.044546667486429,-0.0045440210960805]],[[-0.12193335592747,0.11218213289976,0.06445474177599],[-0.15677745640278,0.0089890966191888,-0.091385804116726],[-0.057984873652458,0.069482505321503,-0.12618844211102]],[[-0.075153656303883,-0.016072850674391,0.056210447102785],[-0.054981682449579,-0.025144590064883,0.036688301712275],[-0.1215343400836,0.021304681897163,-0.10506200045347]],[[-0.0099783604964614,0.028264537453651,-0.061903707683086],[0.024332206696272,0.063721008598804,-0.0034320303238928],[-0.029875516891479,0.025322670117021,0.034045435488224]],[[-0.057762071490288,0.16799256205559,-0.10344144701958],[0.020003346726298,0.078432410955429,-0.11994363367558],[-0.11038771271706,-0.024572152644396,0.071508675813675]],[[-0.016128111630678,-0.12938377261162,0.045686271041632],[0.12538269162178,0.010717121884227,-0.060798421502113],[-0.077606931328773,-0.0097904587164521,-0.11092486977577]],[[-0.11752206087112,-0.052620362490416,0.10188154876232],[-0.084420621395111,-0.074576944112778,-0.037266220897436],[-0.087092652916908,-0.08418795466423,-0.0080394456163049]],[[0.0084500443190336,0.045320026576519,-0.039198111742735],[0.036979779601097,0.047329731285572,-0.046601843088865],[0.031971242278814,-0.016072189435363,0.017839742824435]],[[-0.0301379468292,-0.25216990709305,-0.25327891111374],[0.039483822882175,-0.020258275792003,0.19186043739319],[0.043000739067793,0.058819141238928,0.031184267252684]],[[0.0068120430223644,-0.018222589045763,-0.023918075487018],[0.036249328404665,-0.046498205512762,0.053316995501518],[0.021534444764256,-0.05596624687314,-0.074738949537277]],[[0.045237511396408,0.067422144114971,-0.01185610704124],[-0.049564573913813,0.039606459438801,0.01895684748888],[-0.11066740751266,0.19385229051113,0.049589924514294]],[[0.0090795001015067,0.23452945053577,0.11868836730719],[0.0077594583854079,-0.06623337417841,0.02120260708034],[0.013398204930127,-0.068023666739464,-0.0027151061221957]],[[-0.049584273248911,0.052752889692783,0.063719749450684],[-0.032938402146101,0.06321757286787,0.0051167719066143],[-0.03636609390378,0.28015404939651,0.031541235744953]],[[0.029002286493778,-0.078376121819019,0.011692151427269],[0.012839812785387,0.057081468403339,-0.020358679816127],[0.028663482517004,0.01701638661325,-0.010861286893487]],[[0.051439348608255,0.11006429791451,0.020925780758262],[-0.01946172863245,-0.0070343338884413,-0.092256963253021],[0.052845764905214,0.096571668982506,0.04086584225297]],[[0.092525392770767,-0.25283312797546,-0.2300670593977],[0.14142490923405,-0.040510181337595,-0.1192139685154],[-0.080488815903664,-0.15342997014523,0.078828670084476]],[[-0.030891379341483,0.0061973403207958,-0.094801396131516],[-0.11018098890781,-0.034209340810776,0.021894302219152],[0.090135276317596,0.05305652320385,0.019252061843872]],[[-0.040877629071474,-0.18083018064499,-0.10431537777185],[-0.086946457624435,0.083583191037178,-0.2494885623455],[0.12693978846073,0.04480878636241,0.0030135316774249]],[[0.0089844530448318,-0.088546305894852,-0.11935874074697],[-0.054579079151154,-0.21325142681599,0.055332791060209],[-0.32247716188431,0.079272344708443,0.034375634044409]],[[-0.044440381228924,-0.034100864082575,-0.04245213419199],[-0.017164375633001,-0.019829599186778,0.025579260662198],[-0.0086133228614926,-0.02081454731524,-0.03120843693614]],[[-0.011161062866449,0.050686925649643,0.18339876830578],[-0.14668668806553,-0.027288414537907,0.13215559720993],[-0.19927878677845,0.01834455691278,-0.059880651533604]],[[-0.13990281522274,0.061213251203299,-0.026011928915977],[0.053336586803198,0.025727022439241,-0.020403185859323],[0.009559940546751,-0.063522480428219,0.075316652655602]],[[-0.11254736036062,0.029392644762993,0.017910061404109],[-0.090529225766659,0.051585901528597,0.091275930404663],[0.053550068289042,-0.086968921124935,0.036240197718143]],[[-0.093177311122417,-0.17082381248474,-0.34215521812439],[0.2231147736311,-0.024828216060996,-0.13224560022354],[-0.0022556732874364,-0.11686646938324,-0.012936065904796]],[[-0.10645174235106,-0.19396896660328,-0.0076802778057754],[0.033730082213879,-0.12690310180187,0.097926452755928],[0.0091423541307449,-0.21508806943893,-0.0088940728455782]],[[0.0076239877380431,0.11713635921478,-0.023866383358836],[-0.036997824907303,-0.097242273390293,0.052299827337265],[0.10307080298662,-0.021885907277465,-0.058583240956068]],[[-0.0056961253285408,-0.061185754835606,0.029301699250937],[0.014393718913198,-0.14085492491722,0.078661546111107],[0.092254899442196,-0.2267187088728,0.092917129397392]],[[0.057881955057383,0.032236397266388,0.108318567276],[-0.068094670772552,-0.16656091809273,-0.052188545465469],[0.068710461258888,-0.079151183366776,-0.097640559077263]],[[-0.0056015783920884,0.021702675148845,0.067902944982052],[0.0044013820588589,-0.095127888023853,0.10823115706444],[-0.02309332229197,-0.017680404707789,-0.079910598695278]],[[0.10356207191944,-0.051888935267925,0.0041879033669829],[0.068013392388821,0.017652869224548,-0.079543568193913],[0.0089305806905031,-0.027704587206244,-0.017339797690511]],[[0.054979119449854,-0.022905671969056,-0.04520021006465],[0.011446762830019,0.061364829540253,-0.063590623438358],[0.034425817430019,-0.090708792209625,0.02107797935605]]],[[[-0.095925331115723,0.0058486587367952,-0.024948505684733],[-0.093406565487385,0.05030133575201,0.054047238081694],[-0.058618638664484,-0.059456244111061,0.090362817049026]],[[-0.0241774097085,-0.034094367176294,0.025463858619332],[-0.12069980055094,0.073787234723568,0.020832728594542],[0.070782013237476,0.026308452710509,0.064900562167168]],[[0.0095937373116612,0.054522398859262,0.10839496552944],[-0.010536337271333,-0.051581725478172,-0.013323987834156],[0.14623518288136,0.0028850154485554,-0.13664126396179]],[[-0.1358849555254,-0.012658162042499,-0.11351647973061],[-0.02393663674593,-0.011659086681902,0.045128677040339],[-0.0029141956474632,-0.031114123761654,0.073493897914886]],[[0.0028399128932506,0.11153347790241,-0.029470473527908],[0.0013833227567375,-0.10374622046947,-0.023201188072562],[-0.090376347303391,0.11864400655031,-0.13925769925117]],[[0.086114175617695,0.13147856295109,-0.0029187730979174],[0.072726048529148,0.1180788949132,-0.046955674886703],[0.015819123014808,-0.077055849134922,-0.063133880496025]],[[-0.15283001959324,-0.065542161464691,0.020564429461956],[0.027428366243839,-0.0030268493574113,0.018279375508428],[0.15144656598568,0.09596760571003,0.023559119552374]],[[-0.061636067926884,-0.035687703639269,0.13849011063576],[-0.12209603190422,0.028502179309726,0.18581978976727],[-0.093237087130547,-0.11780154705048,0.087908811867237]],[[-0.060267090797424,-6.2612642068416e-05,-0.059392683207989],[-0.056397292762995,0.0019400365417823,-0.039034858345985],[-0.021867616102099,0.10557729005814,0.16444091498852]],[[-0.043150510638952,-0.030374363064766,0.089538462460041],[-0.0078159663826227,-0.18251404166222,-0.074930354952812],[0.0007477899780497,0.052950259298086,-0.025509182363749]],[[-0.064254090189934,-0.024043370038271,0.015800001099706],[-0.069972574710846,-0.046211704611778,-0.046985771507025],[0.052915889769793,0.074448890984058,-0.0023820635396987]],[[0.086120426654816,-0.10899029672146,0.10288700461388],[-0.11601712554693,-0.14637118577957,0.0090764546766877],[0.12439205497503,-0.02270488627255,0.083681099116802]],[[-0.10356824100018,0.15489846467972,-0.022494543343782],[-0.19403466582298,-0.098358012735844,-0.13397637009621],[0.0098692271858454,-0.051036927849054,-0.023901611566544]],[[-0.035272933542728,0.09679276496172,0.0071940748021007],[-0.081726834177971,0.059266287833452,0.054772388190031],[-0.1040283665061,0.059224236756563,-0.095172181725502]],[[0.11120907217264,-0.083648003637791,-0.0012308715377003],[-0.013068215921521,-0.13204580545425,0.054850809276104],[0.03442395478487,-0.0095192072913051,-0.021687023341656]],[[0.022837342694402,0.032127164304256,-0.019555527716875],[-0.093864031136036,0.023433124646544,0.14365807175636],[0.0061007812619209,0.053469158709049,-0.10777601599693]],[[0.053102392703295,0.033340208232403,-0.080199174582958],[-0.052267894148827,-0.17643475532532,-0.081103503704071],[-0.034157391637564,0.072746969759464,-0.021813713014126]],[[-0.010989893227816,-0.016833445057273,0.11129789054394],[-0.27879264950752,0.022265305742621,0.080648899078369],[-0.020856222137809,0.03824545443058,0.03257604315877]],[[-0.051739595830441,-0.069249987602234,0.038005549460649],[-0.044501598924398,0.064727321267128,0.23592154681683],[0.094188258051872,-0.040814831852913,-0.070089802145958]],[[-0.057250790297985,-0.01376554556191,0.1255921125412],[-0.17554874718189,0.11992286145687,0.011008240282536],[-0.16132394969463,0.0090356767177582,0.10530563443899]],[[0.095057681202888,-0.018852425739169,-0.11964099854231],[-0.063774704933167,-0.026707015931606,0.073445193469524],[-0.027745366096497,0.11934641003609,0.0036259111948311]],[[0.1622016876936,0.068775899708271,0.11999128758907],[0.11817914247513,-0.079244546592236,-0.12813965976238],[0.056473046541214,-0.18080331385136,-0.013162269257009]],[[-0.027726132422686,0.074844069778919,0.049679789692163],[-0.12552401423454,0.050777848809958,-0.031468946486712],[-0.057342324405909,-0.065306149423122,-0.013811622746289]],[[-0.033868376165628,0.059182066470385,-0.01689107529819],[0.033266201615334,-0.097420938313007,-0.0012909626821056],[-0.11995801329613,0.095607452094555,0.10621291399002]],[[-0.22161760926247,0.075510360300541,-0.16029419004917],[-0.0032467173878103,0.029860084876418,0.10232395678759],[-0.18953578174114,0.028306536376476,-0.081334695219994]],[[-0.023157384246588,0.039838045835495,0.021593501791358],[-0.1040628477931,-0.0071578654460609,-0.00974824372679],[-0.083699993789196,-0.02362622320652,0.043667022138834]],[[-0.13371898233891,0.040682822465897,0.018782751634717],[0.011231864802539,0.0054529248736799,0.052401356399059],[0.0065909838303924,0.011434259824455,-0.034721411764622]],[[0.18942280113697,0.10830521583557,0.014751955866814],[0.07637607306242,0.0061332173645496,-0.15706121921539],[0.088711030781269,0.064414300024509,-0.30970251560211]],[[-0.072908371686935,-0.10779707878828,-0.12796734273434],[-0.026711853221059,-0.025829542428255,0.067826472222805],[-0.12416055798531,-0.042723204940557,-0.11183653771877]],[[-0.034305457025766,-0.043610312044621,-0.058842178434134],[-0.21331115067005,-0.055469259619713,0.11140511929989],[0.096451178193092,0.024030389264226,0.090888313949108]],[[-0.0974465534091,0.019316304475069,-0.10423721373081],[0.090694703161716,0.06103490293026,-0.033993404358625],[0.0036273889709264,0.0036889736074954,-0.044003918766975]],[[-0.037857264280319,0.0031588294077665,-0.013295746408403],[-0.080449692904949,0.0061283293180168,-0.0018732351018116],[-0.0026242467574775,-0.013234861195087,0.051685102283955]]],[[[-0.015134979970753,-0.0096675548702478,0.066372074186802],[0.030846582725644,-0.028386697173119,0.091257981956005],[0.04167778044939,0.042411774396896,-0.056079555302858]],[[0.04372051358223,0.0052372687496245,-0.0023962834384292],[0.0040280255489051,0.072487384080887,0.028665766119957],[-0.083587966859341,0.04838602617383,-0.031523175537586]],[[0.035313338041306,-0.062278434634209,0.042889554053545],[-0.036085624247789,-0.032944317907095,-0.09477986395359],[0.027084622532129,0.020351121202111,-0.055634062737226]],[[-0.054904498159885,0.073297455906868,0.008974296040833],[0.0031632212921977,0.047968663275242,-0.024060171097517],[-0.0205301605165,0.041634794324636,-0.046369094401598]],[[0.048239249736071,-0.079956278204918,-0.029707247391343],[-0.089164659380913,0.15789626538754,0.01279104501009],[0.045382834970951,0.00363470450975,0.037685453891754]],[[0.030397808179259,0.05852197855711,0.040381375700235],[-0.031362436711788,0.022726263850927,-0.0056602451950312],[-0.027260081842542,-0.071397237479687,0.022054033353925]],[[0.024960888549685,0.13730303943157,0.060569353401661],[0.048163928091526,0.02433948777616,-0.0010122733656317],[-0.043661873787642,0.011008646339178,-0.071701787412167]],[[-0.14289811253548,-0.051314048469067,-0.00091534433886409],[-0.017432101070881,0.047177378088236,0.039342410862446],[0.036989375948906,-0.098531529307365,0.095405489206314]],[[0.018703969195485,-0.036922786384821,0.0047135609202087],[0.10691500455141,0.012445613741875,0.12643314898014],[0.04786104336381,-0.029496230185032,-0.015408543869853]],[[0.12721057236195,-0.043854847550392,0.033942062407732],[0.072978936135769,-0.050056230276823,-0.025416646152735],[0.0071908561512828,-0.11203541606665,0.075713351368904]],[[-0.029497006908059,0.021963221952319,-0.022520683705807],[0.055324241518974,0.0093306135386229,0.018033450469375],[-0.017141187563539,0.036500420421362,-0.098359137773514]],[[0.047973241657019,0.028436047956347,-0.13794404268265],[0.092937216162682,0.053565327078104,0.090594299137592],[0.054052453488111,0.051171485334635,-0.044070012867451]],[[-0.055064924061298,-0.010357189923525,0.016604287549853],[-0.0072705899365246,0.012946534901857,0.037885215133429],[-0.038465488702059,0.032958649098873,-0.00925756059587]],[[0.017316730692983,0.0067061390727758,-0.060567650943995],[-0.046906903386116,-0.03129206597805,-0.016433818265796],[0.074212275445461,-0.028246987611055,0.098258428275585]],[[0.00049636024050415,-0.073167130351067,0.088164947926998],[-0.035561066120863,0.085057519376278,-0.031464833766222],[0.0087494906038046,-0.014369732700288,-0.09382763504982]],[[-0.10027515888214,0.043392729014158,-0.068300150334835],[-0.014913479797542,-0.046379029750824,0.035202454775572],[0.018130999058485,0.094694301486015,0.12564295530319]],[[-0.006187588442117,-0.010834590531886,0.047837611287832],[-0.033669404685497,-0.052028313279152,0.0080303382128477],[-0.054336909204721,-0.044525146484375,0.0023559133987874]],[[0.030180357396603,0.0039998977445066,0.023705746978521],[-0.0019662268459797,0.03440522775054,0.009773688390851],[-0.0037089954130352,-0.032055307179689,-0.082301072776318]],[[-0.027565937489271,0.032485950738192,0.012829849496484],[0.057161644101143,-0.016948191449046,-0.01899629086256],[-0.00094560952857137,0.09533353894949,0.085206776857376]],[[0.026606963947415,-0.01900408603251,0.10324388742447],[-0.056630656123161,-0.079470083117485,-0.02846266143024],[0.049344100058079,-0.029818531125784,0.013420888222754]],[[-0.069270007312298,-0.012464998289943,0.0020370525307953],[-0.1301586329937,0.010907872579992,-0.019847447052598],[-0.13334311544895,-0.097457207739353,-0.16789126396179]],[[0.078131638467312,0.13110503554344,0.041890874505043],[-0.006835444830358,-0.019426172599196,0.087372250854969],[0.0076691759750247,-0.019035883247852,0.0041460208594799]],[[0.07087204605341,0.16603147983551,0.17477609217167],[-0.030616596341133,0.020113371312618,0.078059270977974],[-0.0038203906733543,-0.043519426137209,-0.088588573038578]],[[0.027269866317511,0.013983477838337,-0.0010712833609432],[-0.03820588067174,-0.007998893968761,-0.072113052010536],[-0.037770740687847,-0.030162591487169,-0.1201937943697]],[[0.018986279144883,0.059109773486853,0.023003818467259],[-0.029166430234909,0.046089932322502,-0.026844058185816],[0.053602021187544,-0.017856240272522,-0.017573967576027]],[[-0.032779615372419,0.059588652104139,0.0047358693554997],[-0.014196680858731,0.058022271841764,0.0084441788494587],[-0.041565470397472,0.00080360984429717,0.064939707517624]],[[0.0071548530831933,-0.069055311381817,-0.037267934530973],[0.11751118302345,0.064920246601105,0.016978090628982],[-0.013382010161877,-0.001265928032808,-0.12817928195]],[[-0.031787719577551,-0.10502071678638,0.023623941466212],[0.0010371109237894,0.0091599291190505,0.02065129391849],[0.043570056557655,0.0051109562627971,0.10745738446712]],[[-0.028747798874974,-0.003557913005352,0.0043301428668201],[0.0097075924277306,0.12225242704153,0.07627560198307],[0.081895232200623,0.069013305008411,-0.057261653244495]],[[0.028103340417147,-0.071065790951252,-0.035575833171606],[0.1483982950449,0.12530454993248,-0.068295784294605],[0.0986403003335,0.019785337150097,-0.049786020070314]],[[0.12049126625061,-0.11330234259367,0.062936536967754],[0.027142541483045,0.078718893229961,-0.10764480382204],[0.015270254574716,-0.016831817105412,-0.073489807546139]],[[0.00012963706103619,-0.044585410505533,0.040861789137125],[0.017856813967228,0.065533563494682,0.053021017462015],[-0.035978894680738,-0.0079583842307329,0.027757314965129]]],[[[-0.033667270094156,-0.10226589441299,0.052321825176477],[0.078157566487789,-0.083335913717747,0.042146671563387],[-0.0060513094067574,-0.0706542506814,-0.088802628219128]],[[0.0057598985731602,0.022363470867276,0.0043369843624532],[0.059536743909121,0.019825572147965,0.051078870892525],[-0.070530205965042,0.073322340846062,0.0070579191669822]],[[0.00058063317555934,0.075347490608692,0.064867757260799],[0.04772699251771,0.090561240911484,-0.21795213222504],[-0.096068948507309,0.04579097032547,-0.10369785875082]],[[-0.080026902258396,0.10313844680786,0.050068452954292],[-0.1108015999198,-0.0066500226967037,-0.067781463265419],[-0.047178667038679,-0.0032512457109988,0.0063220118172467]],[[-0.089020103216171,-0.04608315974474,0.023562537506223],[-0.10359133034945,0.043113518506289,0.0077293245121837],[0.013030547648668,-0.038789425045252,0.063882522284985]],[[-0.0031850952655077,0.072284951806068,-0.077210560441017],[0.060033362358809,0.062563896179199,-0.09053672850132],[0.18255877494812,0.027846364304423,-0.14017869532108]],[[0.095682412385941,-0.035190414637327,0.09041939675808],[0.029314063489437,-0.02455835416913,-0.028829839080572],[0.053006749600172,-0.039133097976446,-0.001198714482598]],[[0.10651427507401,-0.075943186879158,0.076278775930405],[-0.044192910194397,-0.052738074213266,0.10058318078518],[-0.040006641298532,0.079254165291786,0.071587845683098]],[[-0.057837344706059,-0.016704285517335,-0.012183891609311],[0.037496846169233,0.039280220866203,0.036236640065908],[0.0052320826798677,-0.070987284183502,0.01457508187741]],[[0.022054078057408,-0.031847026199102,-0.028175549581647],[0.04735391587019,0.081387855112553,-0.056033980101347],[0.092110149562359,-0.060758661478758,-0.061393335461617]],[[0.003032024949789,-0.18792207539082,0.039168160408735],[0.029541160911322,0.012182984501123,-0.10088989883661],[-0.016776142641902,0.069311991333961,0.018317624926567]],[[-0.16756436228752,-0.044903520494699,0.0057481629773974],[-0.035067472606897,0.077484548091888,0.039335783571005],[-0.13533039391041,-0.1042688190937,-0.098013497889042]],[[-0.07055239379406,0.011654836125672,-0.033899314701557],[-0.02647135220468,0.15751786530018,0.18405286967754],[0.013129884377122,0.091073222458363,0.1050930544734]],[[-0.024880368262529,-0.079384483397007,0.17117768526077],[0.0082122841849923,-0.057671874761581,0.11913956701756],[-0.0060156467370689,0.019533118233085,0.18559204041958]],[[0.020694896578789,-0.043273013085127,0.032008036971092],[-0.037162370979786,0.018877914175391,-0.05047070980072],[0.033219415694475,0.024493703618646,0.021653812378645]],[[0.09721927344799,0.0043519744649529,0.10042502731085],[0.047521490603685,-0.014019845053554,-0.13228677213192],[-0.028133852407336,0.091143600642681,0.1378929913044]],[[-0.10821013897657,-0.16157484054565,-0.004863053560257],[0.02040084078908,0.11782930791378,0.037725031375885],[-0.10890220105648,-0.11629258096218,-0.17630161345005]],[[0.048626128584146,-0.15142196416855,-0.10970421135426],[-0.063084796071053,0.060797538608313,-0.026472680270672],[0.017676673829556,-0.057133082300425,-0.098061144351959]],[[0.021086178719997,0.071323700249195,0.030322805047035],[0.022323809564114,-0.01271546445787,0.027502551674843],[0.0081079248338938,-0.16095440089703,0.060509148985147]],[[0.067013546824455,-0.12154322862625,0.13521374762058],[-0.077412337064743,-0.17582854628563,0.01439337618649],[0.0060258763842285,-0.038903042674065,0.031061941757798]],[[-0.10622061789036,0.0063237375579774,0.025606537237763],[-0.17681662738323,-0.03137231990695,0.054710447788239],[-0.052690993994474,0.0045063905417919,0.038392186164856]],[[-0.0049331914633512,-0.0072243819013238,0.13846479356289],[-0.0040694563649595,-0.021675050258636,-0.0067659835331142],[-0.050278939306736,0.032141834497452,-0.053802981972694]],[[-0.06093917042017,0.080496393144131,-0.0044018579646945],[-0.11505477875471,0.12067119777203,-0.0059358365833759],[-0.10431216657162,-0.022142089903355,0.05516004934907]],[[-0.091521121561527,0.093486472964287,-0.026003874838352],[0.072394914925098,-0.035470318049192,0.014198458753526],[-0.097463682293892,0.016333831474185,0.046421531587839]],[[-0.21658737957478,-0.11867358535528,-0.16454939544201],[0.056311074644327,0.081257596611977,0.14192767441273],[0.028657108545303,0.074596457183361,0.011251308955252]],[[-0.048923891037703,-0.04808796569705,-0.019417313858867],[-0.10451916605234,-0.085631243884563,-0.03970530629158],[-0.069132566452026,0.058141153305769,-0.00069601263385266]],[[-0.044772531837225,0.11924090981483,-0.065752550959587],[-0.067517779767513,-0.033580202609301,0.048591312021017],[0.029718186706305,-0.0098025314509869,-0.052516974508762]],[[-0.036240376532078,-0.12378215044737,0.015700917690992],[0.044620588421822,-0.092142082750797,-0.089662797749043],[0.27787202596664,0.15844152867794,-0.046998232603073]],[[-0.058022640645504,0.019594395533204,0.052525065839291],[-0.08115615695715,0.12309073656797,-0.054665572941303],[-0.071772232651711,0.01169996522367,0.10317204147577]],[[-0.016801564022899,0.030231181532145,0.072025947272778],[-0.087761729955673,0.00034056056756526,0.08368980884552],[-0.102494597435,-0.011424751020968,0.11437968164682]],[[-0.04778091609478,-0.017203317955136,0.040100071579218],[-0.02979720197618,0.038934696465731,-0.023647759109735],[-0.014636835083365,-0.0097112664952874,-0.093624457716942]],[[-0.074802346527576,-0.041335411369801,0.1045156866312],[0.036957699805498,-0.0044843349605799,0.034816969186068],[-0.027880186215043,0.032371640205383,-0.015467282384634]]],[[[-0.1577375382185,-0.16287967562675,0.075173087418079],[-0.10273025929928,-0.10842921584845,0.048697765916586],[-0.12184100598097,0.0084429634734988,-0.031162369996309]],[[-0.016126429662108,0.095464020967484,-0.015949890017509],[0.0011525145964697,-0.0069748149253428,0.013246677815914],[-0.035739488899708,-0.057640120387077,0.027463750913739]],[[0.064738176763058,0.14315865933895,-0.099105186760426],[-0.14473086595535,0.038182593882084,0.10919649899006],[-0.16083201766014,-0.010282364673913,-0.040999196469784]],[[0.035231824964285,-0.010615536011755,-0.036725796759129],[-0.10546532273293,-0.013687698170543,0.020194942131639],[0.084061019122601,0.035038378089666,0.070282258093357]],[[-0.0054886313155293,0.012804613448679,0.026055652648211],[-0.017456734552979,0.027933554723859,-0.10204818844795],[-0.059030175209045,-0.0025030220858753,-0.063696220517159]],[[0.13945226371288,0.12251053750515,0.10848040878773],[0.14675645530224,-0.038950216025114,-0.056157797574997],[-0.054155621677637,-0.049405068159103,0.022269589826465]],[[0.003911204636097,-0.021859437227249,0.041461531072855],[0.11321947723627,0.010952523909509,0.094629116356373],[0.02554558776319,-0.061201706528664,-0.071048617362976]],[[-0.12401328235865,-0.15176518261433,0.14037694036961],[-0.1396069675684,-0.22091820836067,0.092941388487816],[-0.28085294365883,-0.03666428104043,0.070125624537468]],[[0.018006812781096,0.11900290846825,0.082633294165134],[-0.042909298092127,0.087732277810574,0.097761034965515],[-0.076568581163883,-0.057309027761221,-0.0408098064363]],[[-0.027895946055651,-0.10656041651964,0.037411492317915],[-0.1233257651329,0.047746483236551,-0.14395366609097],[-0.027017807587981,-0.012957430444658,0.02641792781651]],[[-0.076688252389431,0.10172061622143,-0.0083717396482825],[0.038578819483519,0.010905836708844,-0.020467858761549],[-0.087301395833492,0.084483705461025,7.6105898187961e-05]],[[0.15730312466621,0.097384236752987,-0.093425206840038],[0.062791235744953,-0.15124720335007,-0.0053906179964542],[-0.13853585720062,-0.018980599939823,0.11338997632265]],[[-0.13500443100929,0.19913165271282,0.1327531337738],[0.039568293839693,0.096243776381016,-0.070004351437092],[0.051553130149841,-0.019396824762225,-0.021249914541841]],[[-0.064031019806862,-0.029665891081095,-0.13892793655396],[-0.12957890331745,0.1041492074728,0.047169908881187],[-0.030875142663717,0.088090777397156,0.062418475747108]],[[-0.0034281429834664,-0.021492194384336,0.046323858201504],[0.021060457453132,-0.023621102795005,0.043502051383257],[-0.040819399058819,-0.019467514008284,-0.049317758530378]],[[-0.024696886539459,0.0037470441311598,0.070743806660175],[0.03273019567132,0.06195429712534,-0.1799122095108],[-0.13723507523537,0.12795227766037,0.0062592718750238]],[[-0.018707456067204,-0.10041603446007,-0.11220917850733],[0.21876329183578,0.083290740847588,0.058619856834412],[0.12596260011196,0.037507943809032,0.097215823829174]],[[0.12648871541023,0.092200890183449,0.020872253924608],[3.2091800676426e-05,-0.0040797642432153,0.13498836755753],[-0.053645674139261,-0.063199810683727,-0.027316145598888]],[[-0.13735775649548,0.0040685380809009,0.11331098526716],[-0.035392358899117,0.13878205418587,0.24743051826954],[-0.1120023354888,-0.045378416776657,0.024932242929935]],[[-0.066605485975742,-0.20178420841694,0.079863578081131],[0.17247162759304,-0.10111455619335,0.0022429197560996],[-0.045606847852468,0.030475543811917,0.061194069683552]],[[-0.021260339766741,0.04302978515625,0.092308327555656],[0.018115382641554,0.026133077219129,-0.020062206313014],[-0.012242690660059,-0.049687873572111,-0.045979592949152]],[[0.076464988291264,0.07087329775095,-0.075992867350578],[-0.09207559376955,-0.07479053735733,0.1171949878335],[-0.024955306202173,0.09574794024229,-0.059095643460751]],[[-0.045113027095795,0.041961394250393,0.12579992413521],[-0.018781442195177,0.080094136297703,0.054949849843979],[-0.11886171996593,-0.044350888580084,0.088155247271061]],[[0.066014163196087,-0.0057817362248898,0.044547315686941],[-0.051591981202364,-0.22095556557178,-0.041712835431099],[-0.24775043129921,-0.27130576968193,-0.022291149944067]],[[0.01684682816267,-0.094429656863213,-0.11883445829153],[-0.14908030629158,-0.18970610201359,-0.14170789718628],[-0.16861136257648,0.00084146985318512,-0.0096908863633871]],[[-0.001976533094421,0.031337406486273,0.04661002010107],[0.042993977665901,-0.099199891090393,0.0049752173945308],[0.061340168118477,-0.017209835350513,0.11714927107096]],[[-0.039790749549866,-0.045186445116997,-0.058562219142914],[0.092222265899181,0.021028999239206,-0.069442830979824],[0.020652802661061,0.007065889891237,0.06774266064167]],[[-0.094399489462376,-0.092374317348003,0.1467657238245],[-0.20800396800041,-0.016791421920061,-0.14191795885563],[-0.011279783211648,-0.19181090593338,0.031779676675797]],[[0.051858194172382,0.037033937871456,0.13587474822998],[0.1073416993022,0.026880197227001,0.025815486907959],[0.088848687708378,0.035580206662416,-0.1061208024621]],[[0.0090015633031726,-0.097837351262569,-0.071961306035519],[0.061598110944033,-0.026884369552135,-0.066317871212959],[0.0072242831811309,0.12148260325193,0.01150906458497]],[[-0.080090895295143,0.11358796060085,-0.10901407897472],[0.071629829704762,0.01980403624475,-0.090301536023617],[-0.00993169285357,0.025047203525901,-0.081821665167809]],[[-0.051296819001436,0.14037057757378,0.042213968932629],[-0.048585392534733,-0.044752467423677,-0.081881023943424],[0.071200810372829,-0.048809066414833,0.07324393093586]]],[[[0.13074378669262,-0.030216693878174,-0.011710060760379],[-0.053379651159048,0.024638962000608,-0.048896346241236],[-0.12117277830839,0.098238959908485,-0.13078305125237]],[[-0.0077466773800552,-0.032482288777828,0.040919989347458],[-0.0031227509025484,0.026443986222148,-0.076163567602634],[0.090984277427197,-0.13077177107334,-0.11684490740299]],[[0.070314489305019,0.015232573263347,0.093847215175629],[-0.0048815081827343,-0.12646074593067,0.0011314578587189],[-0.036983326077461,0.10048056393862,-0.13029199838638]],[[-0.26412078738213,-0.00050167494919151,-0.023483395576477],[-0.025335757061839,0.014169336296618,-0.019858872517943],[-0.041864104568958,0.04765047878027,0.061669949442148]],[[-0.072947151958942,-0.058240462094545,-0.050230365246534],[0.015597594901919,0.071158558130264,-0.027709446847439],[0.085551857948303,0.063788235187531,0.0030331336893141]],[[0.033849183470011,0.14094562828541,-0.0061105908825994],[0.12557393312454,0.026354569941759,-0.068126827478409],[-0.035103481262922,-0.13552102446556,0.050739977508783]],[[0.11516008526087,-0.066472359001637,-0.038601730018854],[0.01233499776572,-0.0370775423944,-0.064896978437901],[0.08901659399271,-0.041159600019455,0.035966709256172]],[[-0.073918849229813,0.030699850991368,-0.064708292484283],[-0.021475655958056,-0.023322740569711,0.039854750037193],[0.034501507878304,0.063390538096428,0.02850522659719]],[[-0.0021151648834348,0.16233293712139,0.11673726141453],[0.016329823061824,0.033346511423588,-0.018661933019757],[0.070665262639523,0.0050897323526442,0.05620214343071]],[[-0.18500952422619,0.060698606073856,0.0011955087538809],[-0.014898904599249,0.0066009927541018,0.061356876045465],[0.071582719683647,0.050772439688444,0.040383622050285]],[[0.092176429927349,0.048344522714615,0.071335963904858],[0.082179829478264,-0.044558200985193,-0.060084834694862],[-0.034413557499647,0.0004560679954011,-0.12831597030163]],[[0.11306290328503,0.022584082558751,-0.040525268763304],[0.1991836130619,-0.047937154769897,-0.08625740557909],[0.066790781915188,0.046553280204535,0.063341818749905]],[[0.015921320766211,0.023991020396352,0.042844228446484],[0.046672970056534,0.15791121125221,-0.071324445307255],[0.16445152461529,0.033661063760519,0.049326453357935]],[[0.041913576424122,0.050855997949839,0.082670845091343],[0.10383979231119,0.16598013043404,0.2184444218874],[0.044430159032345,0.20693266391754,0.11703930050135]],[[0.10650468617678,-0.084745950996876,0.033696517348289],[0.046463321894407,0.025320265442133,-0.011072462424636],[0.0073244725354016,0.040591090917587,-0.086244970560074]],[[-0.037328269332647,0.054227776825428,-0.038069508969784],[-0.056773658841848,-0.032227396965027,0.072638332843781],[0.1305265724659,-0.02639102935791,0.074073746800423]],[[-0.012066572904587,-0.22063092887402,0.14017340540886],[-0.17433562874794,-0.2033658772707,-0.084284730255604],[-0.20627035200596,-0.043339163064957,-0.14375934004784]],[[0.043854083865881,-0.10133301466703,0.079159185290337],[0.037535458803177,0.090256728231907,-0.055540971457958],[-0.19590939581394,0.0022865983191878,-0.04285704344511]],[[-0.14269837737083,0.10551001876593,0.05881630256772],[0.087544985115528,0.07431685179472,0.073959350585938],[-0.036418728530407,0.02119224332273,0.047766145318747]],[[-0.04132879525423,0.0045837573707104,0.0055979983881116],[0.15158192813396,-0.074814468622208,-0.13815970718861],[-0.073807261884212,-0.013365787453949,0.024426499381661]],[[-0.12886433303356,0.0034446041099727,0.079983435571194],[-0.018904138356447,0.016680046916008,-0.020772188901901],[0.015324714593589,0.032677173614502,-0.091946944594383]],[[-0.0017423639073968,0.070005096495152,0.09468811750412],[-0.02846877835691,-0.12062326073647,0.089988619089127],[0.050835739821196,-0.058384642004967,-0.073057360947132]],[[-0.082020699977875,-0.093325793743134,0.094502456486225],[-0.12648962438107,-0.097527831792831,0.1040270626545],[-0.14563570916653,-0.059633519500494,0.085084997117519]],[[-0.026955069974065,0.067945405840874,-0.027895331382751],[0.029428714886308,-0.0057270508259535,0.10520622134209],[0.24409393966198,-0.021321725100279,-0.010498631745577]],[[-0.19906014204025,-0.20970812439919,0.0074612363241613],[-0.10668713599443,-0.1896023452282,-0.17493739724159],[0.017253763973713,0.03270086273551,-0.044014308601618]],[[-0.086537651717663,-0.10667243599892,-0.063846968114376],[-0.095107033848763,0.15085753798485,-0.11500180512667],[-0.019873432815075,-0.08971132338047,-0.050076108425856]],[[0.047675482928753,-0.077550627291203,0.075764179229736],[-0.013754904270172,-0.0015955989947543,-0.042354431003332],[0.013289992697537,0.14295586943626,0.05370507016778]],[[0.057577531784773,-0.091021366417408,-0.10124047845602],[-0.025942571461201,-0.15615755319595,-0.0067533534020185],[-0.046166453510523,-0.13382108509541,0.21100853383541]],[[-0.30772995948792,-0.17700909078121,-0.16296896338463],[-0.02695145830512,-0.074294894933701,-0.19623579084873],[-0.080714233219624,-0.0046983221545815,-0.10990753769875]],[[-0.062287449836731,-0.048248745501041,0.047142669558525],[-0.1517453789711,-0.096436038613319,0.12117541581392],[-0.025601573288441,0.1706248819828,-0.062120903283358]],[[0.017973233014345,-0.030096253380179,-0.092618331313133],[-0.072487153112888,-0.097803182899952,-0.083440788090229],[-0.11037870496511,-0.1080479323864,0.019363144412637]],[[-0.035016823559999,-0.049576055258512,-0.065978027880192],[0.039706900715828,0.15634669363499,-0.018483202904463],[0.059201762080193,0.14197690784931,0.086215831339359]]],[[[0.034099422395229,-0.048492673784494,-0.10921432077885],[-0.25772061944008,-0.0028281027916819,-0.10890083014965],[-0.067396260797977,-0.038510907441378,-0.085535705089569]],[[-0.011338903568685,0.018959030508995,-0.10482853651047],[-0.082045160233974,0.013112740591168,0.062310304492712],[0.015178385190666,0.042976669967175,0.0076270955614746]],[[0.1293236464262,-0.098609462380409,0.0052362522110343],[0.035529438406229,-0.0029650665819645,-0.041057415306568],[0.14291177690029,0.0098324567079544,-0.10579792410135]],[[0.032005436718464,0.01396712847054,0.061112839728594],[-0.096004262566566,-0.029819371178746,-0.047558829188347],[-0.13335490226746,-0.16086323559284,0.036287657916546]],[[-0.048710104078054,-0.049053717404604,0.016630969941616],[0.020921614021063,-0.087031550705433,0.08659216016531],[0.04258730635047,-0.041597694158554,0.048152428120375]],[[0.12748593091965,-0.084862716495991,-0.27314203977585],[0.17081344127655,-0.047028321772814,-0.10663062334061],[0.021382335573435,0.04740984365344,0.0062429308891296]],[[-0.072595998644829,0.061801217496395,0.077756367623806],[-0.15238445997238,-0.16027909517288,-0.01038271561265],[0.13505002856255,-0.12167754024267,0.019307153299451]],[[-0.05277943983674,-0.090560086071491,0.012412455864251],[-0.0026740955654532,0.002475002547726,0.0051159858703613],[-0.075328342616558,-0.012278725393116,-0.026900131255388]],[[-0.023557769134641,-0.087394453585148,0.035603288561106],[0.070571199059486,-0.0044078547507524,-0.020856508985162],[0.10026925057173,0.011344019323587,-0.058633722364902]],[[-0.10303150862455,0.084705337882042,0.073875315487385],[0.045892786234617,-0.044076055288315,0.085475221276283],[0.030802043154836,-0.036014087498188,0.045780155807734]],[[-0.21084848046303,-0.023938775062561,-0.092032469809055],[-0.011924562975764,-0.077910162508488,0.063330501317978],[0.05261205509305,0.045550566166639,0.00066039757803082]],[[0.07342129945755,-0.13899329304695,0.064369633793831],[-0.014311733655632,-0.03487429022789,0.07326690107584],[-0.16274340450764,-0.045894656330347,0.060049470514059]],[[-0.024413926526904,-0.096332035958767,-0.00089650333393365],[0.045157425105572,0.098396494984627,-0.048967663198709],[0.14096707105637,0.071628756821156,0.012212150730193]],[[-0.27269408106804,0.12717518210411,-0.21170888841152],[0.046420384198427,-0.1283583343029,0.05032778903842],[0.010943310335279,-0.1318371295929,-0.020034302026033]],[[0.038728628307581,-0.075653970241547,0.0091721126809716],[-0.032911404967308,-0.053899433463812,-0.01100595202297],[0.035409338772297,0.035728499293327,0.063659369945526]],[[-0.11382783949375,0.09931505471468,0.018044386059046],[-0.03105148486793,-0.038242671638727,0.19659379124641],[-0.2743798494339,-0.1332181096077,-0.21862185001373]],[[-0.14344005286694,-0.010710665024817,0.040875438600779],[0.086072258651257,-0.087891936302185,0.030053697526455],[0.016170652583241,0.091730386018753,0.049659203737974]],[[0.10935033112764,-0.085603304207325,0.093151904642582],[-0.061368770897388,-0.16885736584663,-0.060080457478762],[-0.24486608803272,-0.07464662194252,0.039417501538992]],[[-0.097954034805298,-0.047215428203344,-0.063950479030609],[0.09332437068224,-0.11326488852501,-0.14243127405643],[-0.17898400127888,-0.14902547001839,-0.048745933920145]],[[-0.003703118301928,-0.083871051669121,0.088152587413788],[-0.12492879480124,0.20264334976673,0.023983616381884],[-0.03970792517066,-0.11219986528158,0.14243222773075]],[[-0.010061146691442,0.059882555156946,-0.077010877430439],[-0.0154326017946,-0.081884138286114,-0.033225286751986],[-0.073490664362907,-0.025517489761114,0.17688193917274]],[[-0.063903599977493,-0.062471013516188,0.0168621763587],[-0.043725866824389,-0.044019360095263,0.13899625837803],[0.10344377160072,0.041983749717474,-0.00057442334946245]],[[0.025696145370603,-0.097128868103027,-0.0022839927114546],[0.11426459997892,-0.012712728232145,-0.050715740770102],[-0.22814984619617,0.023067768663168,-0.050976395606995]],[[0.10444035381079,-0.044482246041298,-0.0098161306232214],[0.016709072515368,0.024560974910855,0.030181631445885],[-0.23871017992496,-0.0057414551265538,-0.0063061560504138]],[[0.014329195022583,-0.0014657903229818,0.031289279460907],[-0.063317276537418,0.089416190981865,-0.062213774770498],[-0.048550821840763,-0.072289951145649,0.078099370002747]],[[-0.049193669110537,0.031135281547904,0.0036710309796035],[0.081893555819988,-0.10336542129517,-0.022813837975264],[-0.045016318559647,-0.064607292413712,-0.0095341559499502]],[[0.036004360765219,0.089238204061985,0.043371822685003],[0.034974429756403,-0.02170480415225,-0.057850606739521],[-0.089636147022247,-0.0026602086145431,-0.10186391323805]],[[-0.014873368665576,0.26638254523277,-0.28765532374382],[0.10345753282309,0.056559659540653,0.032060269266367],[-0.015110639855266,0.0047581824474037,-0.055931106209755]],[[-0.039089862257242,-0.07156328111887,-0.0033543608151376],[0.056498542428017,0.031953752040863,0.11334875226021],[0.02033912576735,-0.031601570546627,-0.013422066345811]],[[-0.011805890128016,-0.015497894026339,0.06137714907527],[-0.002399591030553,0.11067140847445,0.032802406698465],[0.039286732673645,0.022361423820257,-0.15989738702774]],[[-0.109659306705,0.086899980902672,-0.0030326389241964],[-0.081512399017811,0.060547571629286,0.030492940917611],[-0.18511249125004,0.13821882009506,0.025434248149395]],[[0.044120248407125,-0.10834398120642,-0.12852631509304],[-0.068694412708282,0.035948239266872,0.094446532428265],[-0.10762702673674,-0.061251502484083,-0.086332991719246]]],[[[0.023375628516078,0.14333286881447,-0.085471399128437],[0.0062508643604815,-0.076401256024837,-0.027545476332307],[0.097073368728161,0.076760962605476,-0.013475397601724]],[[-0.042249131947756,-0.041520114988089,-0.048101153224707],[-0.046218786388636,-0.025667108595371,0.083946846425533],[-0.13766604661942,0.020547920837998,0.043888032436371]],[[0.016485122963786,-0.15437905490398,-0.14949551224709],[0.13814722001553,-0.031531225889921,0.20851537585258],[-0.030525078997016,-0.06409976631403,0.091897211968899]],[[0.061029657721519,-0.080444723367691,0.12839618325233],[0.14702692627907,-0.65366715192795,0.085670582950115],[0.047973647713661,-0.029551131650805,0.012035918422043]],[[0.094095513224602,0.0029992761556059,0.0082910005003214],[-0.033975288271904,-0.13481168448925,-0.11183930933475],[-0.06464845687151,-0.0083497781306505,-0.029217960312963]],[[0.13258247077465,-0.11801747977734,0.11766963452101],[0.014885443262756,-0.31004723906517,-0.14750327169895],[0.08101936429739,0.27609279751778,-0.16005083918571]],[[-0.11342637985945,0.12143867462873,-0.11688964813948],[0.084511034190655,-0.023328425362706,0.081116549670696],[-0.012155900709331,0.08159764111042,-0.017388079315424]],[[0.11868078261614,0.086037702858448,0.019360454753041],[-0.14099526405334,-0.14474070072174,0.076589331030846],[0.016600815579295,0.0055379457771778,-0.031099626794457]],[[0.090231776237488,-0.053642068058252,0.024210711941123],[0.03609449416399,0.15807624161243,0.042512211948633],[-0.051736995577812,0.065896831452847,0.036997780203819]],[[0.087320283055305,-0.039114810526371,0.13493566215038],[-0.088786222040653,0.031280338764191,-0.016485439613461],[0.056131284683943,-0.09824076294899,-0.092972807586193]],[[-0.018747817724943,0.10986175388098,-0.053572971373796],[-0.10111284255981,0.03693762421608,-0.056489322334528],[0.06871484965086,-0.012058220803738,-0.0058763497509062]],[[-0.1185642182827,0.13840673863888,-0.12953478097916],[-0.073877304792404,-0.026092225685716,0.052197400480509],[0.071188747882843,-0.045084111392498,0.10080657154322]],[[-0.044605750590563,-0.079505153000355,0.0088253356516361],[0.024562746286392,0.072586230933666,-0.022509200498462],[-0.0063060875982046,0.070261068642139,0.040426973253489]],[[-0.058539822697639,-0.075650803744793,0.0734993070364],[-0.053399153053761,-0.40179818868637,0.033094972372055],[0.092166662216187,0.14724193513393,0.24502247571945]],[[0.0016788842622191,0.060529354959726,-0.040795776993036],[0.055560119450092,0.030597494915128,0.027254976332188],[0.095323175191879,0.090440019965172,-0.049887899309397]],[[0.046858549118042,-0.27731922268867,0.056281946599483],[0.12608213722706,-0.12394897639751,0.17731253802776],[-0.076934762299061,0.16404347121716,0.06474456936121]],[[-0.089687913656235,0.0060296845622361,0.19785234332085],[0.095983155071735,-0.17863798141479,-0.30381643772125],[0.21700090169907,0.061661321669817,-0.13193920254707]],[[-0.36600011587143,0.054754551500082,0.040120266377926],[0.18489943444729,0.089547477662563,-0.3014335334301],[-0.24765662848949,0.12799192965031,0.28689789772034]],[[0.10014163702726,-0.16251051425934,0.017384048551321],[-0.11747738718987,-0.027717608958483,-0.0045234924182296],[-0.011901049874723,-0.0057753524743021,0.10773169249296]],[[0.054184813052416,-0.029255734756589,0.10909081995487],[-0.010293245315552,0.0134362494573,0.03779848664999],[-0.14385204017162,-0.017328882589936,-0.18186172842979]],[[-0.035710759460926,-0.10136096924543,-0.087049216032028],[-0.023509396240115,-0.06721668690443,0.047161668539047],[0.036193028092384,0.014991885982454,-0.063441701233387]],[[-0.11326184123755,0.021845186129212,-0.02406813390553],[-0.060504838824272,0.087893202900887,0.070052236318588],[0.11816338449717,-0.0025624718982726,-0.00056540762307122]],[[0.10817398875952,-0.043839264661074,0.15470135211945],[-0.097328215837479,0.047223605215549,0.021445663645864],[-0.06628443300724,0.055490277707577,-0.049663092941046]],[[0.08993761241436,0.06822595000267,0.050396353006363],[-0.078232988715172,-0.19993126392365,0.11406456679106],[-0.048456102609634,0.10980898141861,-0.015835301950574]],[[0.11276153475046,-0.030609084293246,0.13125623762608],[-0.091701574623585,-0.0078181400895119,-0.018571542575955],[-0.097418144345284,0.010910660028458,0.065680995583534]],[[0.04666967317462,0.15944339334965,-0.023637033998966],[-0.014810311608016,0.0025708118919283,-0.2005240470171],[-0.058807961642742,0.12997151911259,0.046632174402475]],[[0.0031914017163217,0.020976878702641,0.066352941095829],[0.0087589845061302,0.015830773860216,-0.07503803819418],[-0.079046688973904,0.099100328981876,0.026021847501397]],[[-0.15218983590603,0.31256255507469,-0.050346110016108],[-0.066745027899742,0.24339346587658,0.14507266879082],[-0.16633707284927,-0.20342271029949,-0.078595280647278]],[[0.013359819538891,-0.0051744929514825,-0.14209769666195],[0.016570534557104,0.0049465731717646,-0.002316344063729],[0.032419066876173,-0.026458853855729,0.037236247211695]],[[0.12434481829405,0.013867372646928,0.11105301976204],[0.037037488073111,-0.0011745432857424,0.073163084685802],[0.010257311165333,0.037039272487164,0.04784382879734]],[[0.43298962712288,0.016214396804571,-0.1425493657589],[-0.17115978896618,-0.0544115267694,-0.098899394273758],[-0.062626041471958,0.1036895737052,-0.1816948056221]],[[0.035110041499138,-0.027183536440134,0.029522696509957],[0.045055665075779,0.027822382748127,-0.029272675514221],[-0.062274429947138,0.16914983093739,0.065714485943317]]],[[[0.1142283976078,0.053964748978615,0.034783214330673],[0.025491761043668,-0.15170815587044,0.043385159224272],[-0.047181107103825,-0.14954107999802,-0.13017606735229]],[[0.0018459934508428,0.0654341802001,-0.020946389064193],[0.0123957907781,0.013117214664817,0.058978289365768],[0.021351037546992,-0.015518463216722,0.0079133836552501]],[[-0.11015947908163,-0.0031315563246608,0.058682005852461],[0.091306246817112,0.12456538528204,-0.019698306918144],[-0.047255728393793,0.041065543889999,0.23719963431358]],[[-0.069304741919041,-0.021892704069614,-0.11298046261072],[-0.12845648825169,-0.036569971591234,-0.045050051063299],[-0.01202654093504,0.060835599899292,-0.023543542250991]],[[-0.10994186252356,-0.051987733691931,-0.045049678534269],[0.070215232670307,0.031557522714138,-0.046855378895998],[-0.059571463614702,-0.0057166744954884,0.12484170496464]],[[-0.035377275198698,0.052998717874289,0.066581815481186],[0.0023779384791851,0.039403088390827,0.0043221372179687],[0.032092072069645,-0.041382018476725,-0.0076334015466273]],[[-0.019831325858831,0.028086738660932,0.051327411085367],[0.066632367670536,0.0014774854062125,0.043289620429277],[-0.21502719819546,-0.041157614439726,-0.033965591341257]],[[-0.027977222576737,0.0021474296227098,-0.040344588458538],[-0.034796714782715,0.020001392811537,0.041997581720352],[0.022028749808669,0.0034855387639254,0.026551831513643]],[[-0.051317282021046,-0.03529305011034,0.021708853542805],[0.062603369355202,-0.026749730110168,-0.04145535081625],[-0.022010423243046,-0.057111743837595,-0.057660419493914]],[[-0.010315234772861,-0.016671810299158,-0.040555495768785],[-0.04110949113965,-0.048199042677879,-0.01279818918556],[-0.10664235800505,0.040412310510874,-0.0099446587264538]],[[0.058217670768499,0.0034662839025259,0.080031394958496],[0.00214130920358,0.095543883740902,-0.0071424539200962],[0.024232750758529,-0.037598438560963,-0.10550145804882]],[[0.067971095442772,0.039574090391397,-0.0089976377785206],[-0.012154636904597,-0.01297442894429,-0.085099458694458],[0.029272256419063,0.058221556246281,0.0010780529119074]],[[-0.029797647148371,0.090420685708523,0.0040785814635456],[-0.064926266670227,-0.15154419839382,0.035799372941256],[-0.11445935815573,0.0088133336976171,-0.05461597442627]],[[0.0067518749274313,0.051509842276573,-0.025462362915277],[0.05008041113615,0.057980127632618,-0.0086585925891995],[0.078145697712898,-0.016466984525323,0.0025861389003694]],[[0.03848423063755,0.0021587680093944,0.035996254533529],[0.047590397298336,-0.0020124684087932,0.068529218435287],[-0.06326662749052,-0.027574006468058,-0.028926892206073]],[[0.0040598115883768,-0.047751065343618,-0.015618939884007],[0.038956969976425,0.03534109890461,0.0053419820033014],[0.049818616360426,0.024284334853292,-0.033227540552616]],[[-0.040594317018986,-0.081003330647945,-0.10877174884081],[-0.15183342993259,0.05251183360815,0.040583238005638],[0.035815633833408,-0.03916946798563,0.073247663676739]],[[-0.050761379301548,-0.015969490632415,-0.12767776846886],[0.045481223613024,0.015633940696716,0.10290525853634],[-0.039225682616234,0.08630359172821,0.028615895658731]],[[-0.0014696440193802,0.023253424093127,-0.019188612699509],[0.069016203284264,-0.026616372168064,-0.043426040560007],[-0.18835046887398,-0.026146380230784,-0.0059478585608304]],[[0.11682313680649,-0.010478132404387,-0.0820502191782],[-0.011690525338054,0.072539933025837,0.039142373949289],[-0.18271262943745,-0.17008996009827,-0.13780000805855]],[[0.098378762602806,-0.014933043159544,-0.023197906091809],[-0.018640860915184,-0.062543034553528,0.020412912592292],[-0.050062280148268,-0.028419125825167,-0.027506927028298]],[[-0.089567214250565,-0.048063647001982,-0.034573204815388],[-0.091698251664639,0.089142240583897,0.14130263030529],[0.047374535351992,0.15967567265034,0.073711410164833]],[[0.014137542806566,-0.092762351036072,0.049237634986639],[-0.080330245196819,0.025850770995021,-0.077786326408386],[0.11651328206062,-0.0063165700994432,0.12098045647144]],[[0.024407759308815,-0.023901861160994,0.099108196794987],[-0.035755630582571,0.011284234933555,-0.019786803051829],[-0.030030595138669,-0.10894869267941,-0.024501321837306]],[[-0.00068833027034998,-0.05351023003459,-0.097464554011822],[-0.003477813443169,-0.13174560666084,-0.062449902296066],[0.024271879345179,-0.04719266295433,-0.056640692055225]],[[-0.008204604499042,-0.14393299818039,0.066497005522251],[0.032775931060314,0.0029439001809806,0.030037567019463],[-0.038874823600054,-0.072406560182571,-0.03896788880229]],[[-0.036300782114267,-0.029745785519481,-0.0031895425636321],[-0.0017108222236857,0.071585796773434,-0.040389332920313],[0.028729077428579,-0.0028225218411535,-0.042165007442236]],[[-0.14014783501625,-0.11866714060307,0.080374948680401],[-0.15924015641212,0.06929288059473,-0.013812080956995],[-0.069030664861202,-0.13271175324917,-0.043442253023386]],[[-0.094770655035973,0.01118591427803,0.10459925234318],[-0.046762954443693,-0.019543249160051,0.044355984777212],[-0.052980300039053,-0.14340557157993,-0.051530554890633]],[[0.0023144560400397,-0.0048776394687593,-0.048884741961956],[0.0022264213766903,-0.16953974962234,0.066410273313522],[-0.019995406270027,-0.073737658560276,-0.077369518578053]],[[-0.07830623537302,0.046152077615261,-0.044764693826437],[0.057972885668278,-0.062430582940578,-0.0016946503892541],[-0.041095547378063,-0.0073200482875109,-0.059711631387472]],[[0.059952590614557,-0.038973607122898,-0.073057852685452],[-0.029420817270875,-0.15037485957146,-0.13153481483459],[-0.10754930973053,-0.24202245473862,-0.064475081861019]]],[[[0.070155277848244,0.0056123356334865,-0.042321097105742],[0.07773819565773,0.02245325781405,-0.039432719349861],[-0.059621337801218,-0.16059353947639,-0.19604071974754]],[[-0.008710402995348,-0.077838249504566,-0.064090840518475],[-0.041230771690607,-0.036159943789244,-0.040605921298265],[0.045345455408096,-0.0066882227547467,0.10221496224403]],[[-0.12311881780624,-0.004395127762109,0.061321619898081],[-0.075418993830681,0.09686491638422,-0.04192341119051],[-0.074250459671021,0.0012738811783493,0.024970505386591]],[[0.047334138303995,0.012175329960883,0.027871850878],[0.0092433607205749,-0.074412368237972,-0.054149836301804],[-0.066117562353611,-0.024974226951599,-0.01024931948632]],[[0.0083159888163209,-0.014298940077424,0.059321038424969],[0.078499272465706,0.0068068923428655,0.010627133771777],[0.047353900969028,-0.040626890957355,0.058266397565603]],[[0.14170756936073,0.036505248397589,0.058280989527702],[-0.011985362507403,-0.083255462348461,-0.046848218888044],[0.020522516220808,-0.10178703814745,0.038680363446474]],[[-0.001993787009269,-0.0075274500995874,0.06454261392355],[-0.099953390657902,0.065420649945736,-0.0069295568391681],[-0.048192758113146,-0.047368966042995,-0.005511824041605]],[[0.099901035428047,0.050205141305923,-0.1057862341404],[-0.046747911721468,0.016392288729548,-0.04157205298543],[-0.054783258587122,0.0050893668085337,-0.080953009426594]],[[-0.059226367622614,-0.079445920884609,0.012803974561393],[0.0010958592174575,-0.038702707737684,0.016443578526378],[0.073842234909534,0.069086156785488,0.0081639485433698]],[[-0.00013965877587907,0.003492557676509,-0.016603609547019],[0.061023898422718,0.051458764821291,-0.059342421591282],[0.054410509765148,0.032513990998268,-0.012602550908923]],[[0.037313167005777,0.062645442783833,0.13329684734344],[-0.051050841808319,-0.15557773411274,-0.013265922665596],[-0.087637960910797,0.10122060775757,0.047442737966776]],[[-0.031109094619751,0.0069549288600683,0.0051496303640306],[-0.16614107787609,-0.039892572909594,-0.11309788376093],[-0.060235407203436,0.021881615743041,0.050528813153505]],[[-0.029593162238598,-0.16149747371674,0.081695437431335],[-0.031157083809376,-0.042125884443521,-0.0049932631663978],[-0.012047037482262,-0.11334085464478,0.064402841031551]],[[-0.084934517741203,-0.0039188307709992,0.095687411725521],[0.0023448818828911,-0.035326488316059,-0.093445219099522],[-0.090828165411949,-0.032204683870077,-0.040764916688204]],[[0.013852412812412,-0.062859810888767,-0.038176316767931],[-0.0065331547521055,0.048088487237692,0.040137328207493],[-0.048876725137234,0.032295361161232,0.045041278004646]],[[0.052763864398003,0.05097171664238,0.1488219499588],[0.076568096876144,-0.098599418997765,-0.12213860452175],[0.099863097071648,-0.02118256315589,-0.081314705312252]],[[0.17219944298267,-0.050630636513233,-0.00060355517780408],[0.09234307706356,0.013834599405527,-0.11057116836309],[-0.014484376646578,-0.04322062805295,-0.049462720751762]],[[0.025146285071969,-0.00685771740973,-0.011021685786545],[-0.17963594198227,0.058299571275711,-0.078662298619747],[0.028677728027105,0.11291775107384,0.016421871259809]],[[-0.1316909044981,-0.28160637617111,-0.14327700436115],[0.078312359750271,-0.024915432557464,0.02002558670938],[-0.0089542074128985,-0.053548753261566,0.046893630176783]],[[0.037827212363482,-0.028242617845535,-0.013308210298419],[-0.0023351721465588,-0.038797773420811,0.053087469190359],[0.065585136413574,-0.11964254081249,-0.085367806255817]],[[-0.088301308453083,-0.15111084282398,-0.07557462900877],[0.0013195719802752,-0.06872770190239,-0.081069298088551],[0.16741885244846,0.020930526778102,0.090133868157864]],[[-0.065197438001633,0.044326320290565,-0.10874957591295],[0.027505537495017,-0.051256667822599,0.078188516199589],[-0.154002353549,-0.037192687392235,0.015693213790655]],[[-0.018053760752082,-0.028806231915951,-0.021558644250035],[0.047138720750809,0.0077226497232914,-0.03796050325036],[0.05534465238452,-0.053135972470045,0.028519131243229]],[[0.072290018200874,0.0031436237040907,-0.0014207479543984],[-0.0030808974988759,-0.060084864497185,0.013556488789618],[0.12889297306538,-0.076297521591187,0.035935834050179]],[[0.13706143200397,-0.15200234949589,0.0095912227407098],[0.091387934982777,-0.16173923015594,-0.010281457565725],[0.049249272793531,-0.024103691801429,0.00063470535678789]],[[-0.027708478271961,0.00093196023954079,0.050149854272604],[-0.053443007171154,-0.041363954544067,-0.083515495061874],[-0.0031933505088091,-0.030217526480556,0.07222006469965]],[[0.15459842979908,0.0010671890340745,-0.016536481678486],[-0.089908577501774,-0.12637408077717,0.035648982971907],[0.035608883947134,-0.0091077983379364,-0.031372852623463]],[[0.0037512923590839,-0.011618091724813,0.015970142558217],[0.058441869914532,0.0012987646041438,0.080004721879959],[-0.0023483252152801,-0.061501163989305,0.036538500338793]],[[0.01959733851254,-0.0016045265365392,0.017070569097996],[-0.031828820705414,-0.027804283425212,-0.093171052634716],[-0.042373217642307,0.065428398549557,0.076376177370548]],[[0.023339852690697,0.11603157222271,-0.050867650657892],[-0.037717442959547,0.028844883665442,-0.041043896228075],[-0.034531433135271,-0.042910631746054,0.028423447161913]],[[0.027792328968644,0.0567577034235,0.037837740033865],[-0.11851891875267,-0.036509439349174,0.081714369356632],[-0.17202965915203,0.0021802845876664,0.039170674979687]],[[-0.041392590850592,-0.00081687822239473,0.044391416013241],[-0.023142823949456,-0.077503442764282,0.046978518366814],[-0.113894097507,-0.1301521062851,-0.063942700624466]]],[[[0.031298201531172,-0.018651945516467,0.076225392520428],[-0.074923880398273,-0.050291586667299,-0.0067601278424263],[-0.13301829993725,0.014500460587442,-0.10461746901274]],[[-0.0021832941565663,0.025192726403475,-0.079680159687996],[-0.0091589000076056,0.10467197746038,0.018261158838868],[0.013272326439619,0.0021415981464088,-0.037152793258429]],[[0.16452988982201,-0.20134919881821,0.096007719635963],[-0.00074031192343682,-0.027284180745482,0.11671272665262],[-0.24606910347939,-0.023566303774714,-0.098289169371128]],[[0.12160059064627,0.013584901578724,0.016939464956522],[-0.05245416238904,-0.040059641003609,-0.071129098534584],[-0.024177845567465,0.0070049986243248,-0.053335927426815]],[[-0.062730379402637,-0.058488607406616,-0.043629478663206],[-0.07468818873167,0.015042652375996,-0.0056202500127256],[0.050563555210829,0.036256849765778,0.014753258787096]],[[-0.017671663314104,0.13817843794823,0.078092806041241],[0.13309608399868,-0.052300926297903,-0.12939332425594],[0.010312921367586,-0.11657497286797,-0.12371232360601]],[[0.049668967723846,-0.097943991422653,0.15540334582329],[0.027268214151263,-0.103504948318,-0.015459158457816],[0.079748265445232,-0.10572896897793,-0.026422835886478]],[[0.056674867868423,-0.16653650999069,-0.016253812238574],[0.12408735603094,-0.18053036928177,0.11078923195601],[-0.080810636281967,0.085903473198414,0.03509084880352]],[[0.035119157284498,0.049558237195015,-0.09733684360981],[-0.015931902453303,0.011658537201583,-0.05218842253089],[0.007319254335016,-0.0097615346312523,-0.016560032963753]],[[-0.0021665683016181,-0.049132902175188,0.034439094364643],[-0.089485086500645,0.016403993591666,0.09260655939579],[-0.12425667792559,0.022797737270594,0.023447142913938]],[[-0.011816901154816,-0.070303149521351,0.013502154499292],[0.065488442778587,-0.083522632718086,0.037332512438297],[-0.023278268054128,-0.23835018277168,-0.054416283965111]],[[-0.026233607903123,0.13422299921513,0.066678799688816],[-0.085964232683182,-0.10641754418612,0.093826591968536],[-0.21998962759972,0.043309919536114,0.027017865329981]],[[-0.073800466954708,0.11083562672138,-0.16896305978298],[-0.010431501083076,0.14674089848995,0.041044820100069],[0.022811567410827,-0.037445072084665,0.25192746520042]],[[0.0047969263978302,-0.018201408907771,0.027897711843252],[0.041299980133772,-0.0040073250420392,0.055530093610287],[-0.051862254738808,0.089051015675068,-0.00054076401283965]],[[0.0029972405172884,-0.019442884251475,0.020110515877604],[0.041451022028923,0.0029393543954939,0.086792476475239],[-0.042206298559904,-0.047895666211843,0.01380320917815]],[[0.14561574161053,0.14556379616261,-0.0095208333805203],[-0.040992937982082,0.089816056191921,-0.063533842563629],[0.0028145189862698,-0.065924592316151,0.014115389436483]],[[0.035792987793684,-0.16425897181034,-0.10162226855755],[0.053028751164675,-0.0094248624518514,0.081158988177776],[-0.0031347975600511,-0.09356115013361,0.07613780349493]],[[0.056425128132105,0.10300722718239,-0.019461654126644],[-0.042287800461054,-0.17655871808529,0.0451888628304],[-0.0016720009734854,-0.10188496112823,0.073385164141655]],[[-0.026005368679762,-0.059739351272583,-0.084162198007107],[-0.087826579809189,0.089915260672569,-0.012454191222787],[-0.14099554717541,0.16654907166958,0.064381986856461]],[[0.0029905498959124,0.075187467038631,0.027999207377434],[-0.021348534151912,-0.065443456172943,-0.1954475492239],[-0.023612530902028,-0.13327912986279,0.004740025382489]],[[0.13461464643478,0.17073281109333,-0.088925071060658],[-0.081895411014557,-0.002945895306766,-0.053811728954315],[-0.025855550542474,-0.054421186447144,-0.005518211517483]],[[-0.16129645705223,-0.055006764829159,0.17046810686588],[0.077161602675915,0.031643830239773,0.18259274959564],[-0.016386348754168,0.05146149918437,0.04843495041132]],[[-0.016137652099133,0.12391494959593,-0.12038102000952],[-0.21115148067474,0.064529694616795,-0.18812963366508],[-0.012498090974987,0.090217977762222,-0.052402779459953]],[[-0.01336476020515,0.01968164741993,-0.0037211342714727],[0.057950433343649,-0.032227303832769,-0.019466124475002],[0.042035296559334,-0.16383439302444,0.046797927469015]],[[-0.030871314927936,-0.026902068406343,0.042718347162008],[-0.041178658604622,-0.010996396653354,-0.10551929473877],[-0.043188791722059,-0.088320426642895,-0.060292415320873]],[[0.049616198986769,-0.10424114763737,0.042208638042212],[-0.012605643831193,-0.024464411661029,-0.0017345091328025],[0.055421650409698,-0.086210913956165,0.080337949097157]],[[0.00076608447125182,0.015414433553815,-0.06730081140995],[-0.045605707913637,0.078111566603184,-0.066213458776474],[0.069063395261765,0.04106966778636,-0.011745384894311]],[[0.089133456349373,-0.12145686894655,-0.0047397152520716],[0.097138188779354,-0.017022356390953,-0.013627843931317],[0.12600828707218,-0.047372650355101,-0.20736211538315]],[[-0.056648746132851,0.1549696624279,0.018621768802404],[-0.037855237722397,0.014241516590118,0.006371415220201],[0.023471442982554,0.009311125613749,-0.1659622490406]],[[-0.072175063192844,-0.052528064697981,0.15824808180332],[-0.022424278780818,0.0023654683027416,0.078174643218517],[-0.10981791466475,0.0026410634163767,-0.075214691460133]],[[-0.018437493592501,-0.032926436513662,0.017698518931866],[-0.0064754923805594,-0.036479193717241,0.0016478243051097],[0.018530772998929,-0.00034510320983827,0.019220111891627]],[[0.091660261154175,0.015175831504166,-0.071712128818035],[0.037610676139593,0.017369084060192,-0.021612174808979],[-0.023949388414621,-0.17582410573959,0.062413744628429]]],[[[0.017410647124052,0.024687020108104,0.006778338458389],[-0.033080101013184,-0.088213019073009,-0.034204080700874],[0.0040411250665784,-0.073942318558693,0.031473815441132]],[[-0.045708127319813,-0.026223892346025,0.087432943284512],[-0.093804344534874,0.0090115191414952,0.032056875526905],[-0.094465531408787,0.093573831021786,0.048855651170015]],[[0.10836429148912,-0.093214280903339,-0.032997477799654],[0.036373980343342,-0.017244534566998,0.095669649541378],[0.13350123167038,-0.013578119687736,-0.11147800832987]],[[0.0066056568175554,0.049663122743368,0.022070476785302],[0.10411727428436,-0.077868208289146,0.017727876082063],[-0.12695141136646,-0.045153331011534,-0.081399694085121]],[[-0.092481054365635,0.025454439222813,-0.060332968831062],[-0.087323300540447,-0.023766584694386,-0.097583018243313],[0.019899306818843,0.06806718558073,-0.028809124603868]],[[0.057143934071064,0.20502133667469,-0.1066772043705],[-0.077822662889957,-0.004333526827395,-0.0880381539464],[-0.035916365683079,0.051480811089277,0.044684652239084]],[[-0.067732907831669,-0.01958205550909,-0.0055506508797407],[-0.050751440227032,0.01475976780057,-0.032578337937593],[-0.103869356215,0.11162479221821,0.17153364419937]],[[-0.028563719242811,-0.089931659400463,-0.018891023471951],[0.11099275201559,-0.029056526720524,-0.021642994135618],[0.065582923591137,-0.05788004770875,-0.09251806885004]],[[-0.054054968059063,-0.024700758978724,-0.012066799215972],[-0.12760075926781,0.049723703414202,-0.19894748926163],[-0.0067643998190761,0.161710947752,0.039406318217516]],[[-0.0086450334638357,0.20941817760468,0.10342025011778],[-0.026440029963851,-0.0049670957960188,0.065878242254257],[0.056351598352194,-0.049806699156761,-0.023339781910181]],[[0.06253731995821,0.15233567357063,0.03059215657413],[0.02881845086813,-0.0021730589214712,0.12283217161894],[0.1268086284399,0.015180978924036,0.019849888980389]],[[0.022196523845196,0.095048449933529,0.18317186832428],[-0.040894594043493,-0.11891754716635,0.017865194007754],[0.052296284586191,-0.068094559013844,-0.0013266425812617]],[[-0.063587807118893,0.10180679708719,-0.12958657741547],[7.2736249421723e-05,0.063649713993073,-0.054471381008625],[0.008583215996623,0.12618979811668,-0.17351779341698]],[[-0.14287315309048,0.06458380818367,-0.097651153802872],[0.15280874073505,0.096844218671322,0.11443538963795],[-0.071105912327766,-0.089051820337772,-0.17725878953934]],[[-0.012656269595027,-0.081920363008976,-0.050643499940634],[-0.022426227107644,0.005477518774569,0.034746594727039],[0.0408322699368,-0.0021454249508679,0.0494101382792]],[[0.0069410386495292,0.14613150060177,-0.071587413549423],[-0.098055087029934,0.049693364650011,-0.060808956623077],[0.015154150314629,0.061780866235495,-0.046409204602242]],[[-0.016076467931271,-0.016174331307411,-0.049767091870308],[-0.017173899337649,-0.010715903714299,-0.11039943993092],[0.054637562483549,0.015897497534752,0.080467790365219]],[[0.0064987111836672,0.068612650036812,0.02558758854866],[-0.12039434909821,-0.081635683774948,-0.038668800145388],[-0.018036855384707,-0.058573957532644,-0.025203008204699]],[[-0.023772522807121,-0.017045190557837,0.071021743118763],[-0.028259079903364,-0.024844333529472,0.031533613801003],[-0.087257191538811,-0.21263076364994,0.012442907318473]],[[0.065261043608189,-0.023797314614058,-0.02831975184381],[0.11075135320425,-0.14611323177814,-0.020085101947188],[-0.022768860682845,-0.14328525960445,-0.077364951372147]],[[0.079690702259541,-0.035599030554295,0.015234929509461],[0.076907865703106,-0.055625069886446,-0.010943835601211],[0.095476172864437,0.15474259853363,0.1181905567646]],[[0.041786134243011,-0.028214683756232,0.038501262664795],[-0.015467396005988,-0.10242626816034,0.08817932754755],[-0.10011137276888,0.22056496143341,0.053553625941277]],[[-0.057626876980066,0.076819062232971,0.066218249499798],[-0.12607961893082,0.11409736424685,-0.0050454158335924],[0.15619292855263,0.068337187170982,-0.15205278992653]],[[0.081804886460304,0.11753726005554,0.0285809263587],[0.0031243422999978,0.038637232035398,-0.0032020651269704],[-0.046738792210817,-0.011666361242533,0.13231228291988]],[[0.048665691167116,0.033666957169771,-0.024470642209053],[-0.045233778655529,-0.14324024319649,-0.10886291414499],[0.016415698453784,0.022130971774459,0.051992442458868]],[[0.022308619692922,0.00091702752979472,0.1367966234684],[-0.076334923505783,-0.0087266396731138,0.02076606079936],[-0.046829983592033,-0.039725445210934,0.051162153482437]],[[0.061077781021595,0.10668037086725,-0.039103206247091],[-0.0021783618722111,0.041731532663107,-0.013670451007783],[0.02982715703547,0.016391240060329,-0.10049665719271]],[[-0.13089190423489,0.21071767807007,-0.042127069085836],[0.20516546070576,-0.029951004311442,0.024100648239255],[-0.14782644808292,0.12282744050026,-0.013118299655616]],[[0.039533112198114,0.0017465712735429,0.065228201448917],[-0.047349281609058,-0.09338940680027,0.11882917582989],[0.00090707128401846,0.018875466659665,0.09982792288065]],[[0.040389191359282,-0.0092706410214305,0.015628293156624],[0.092602044343948,-0.097577258944511,-0.069441720843315],[0.020800676196814,0.0069815334863961,-0.047253984957933]],[[0.071536146104336,-0.024569435045123,-0.055920787155628],[0.014127745293081,0.018952129408717,0.11343044787645],[-0.090243734419346,0.030416805297136,-0.093763746321201]],[[-0.016976861283183,-0.079831212759018,-0.12054820358753],[0.05835510417819,-0.0092203598469496,-0.11190106719732],[-0.038045924156904,0.006575801409781,-0.051765777170658]]],[[[-0.082850217819214,-0.048370704054832,0.061118587851524],[0.026725331321359,0.058721236884594,0.059795387089252],[0.026717055588961,0.021460622549057,-0.03109429590404]],[[0.0047454414889216,-0.05790776014328,-0.074472315609455],[-0.016636807471514,-0.11118861287832,-0.087555482983589],[-0.10176835954189,-0.020310195162892,-0.060064744204283]],[[0.010018122382462,-0.006148646119982,-0.0091177318245173],[0.027111710980535,-0.017184494063258,0.036874141544104],[0.033625315874815,-0.067304149270058,0.002668127650395]],[[-0.0044201416894794,-0.02685672044754,0.042295183986425],[-0.051728323101997,0.1089241579175,0.016603365540504],[-0.057438652962446,-0.0092991562560201,-0.0340446382761]],[[-0.11506554484367,-0.13312332332134,-0.039223454892635],[-0.072927460074425,-0.12295843660831,-0.0080607170239091],[0.021271346136928,-0.01827178709209,-0.068630300462246]],[[-0.011729259043932,0.01495438721031,0.037304185330868],[0.058270838111639,-0.022541677579284,-0.060528311878443],[0.036583360284567,0.075679458677769,-0.085201978683472]],[[0.026302844285965,-0.010957270860672,-0.020775074139237],[-0.077337361872196,-0.042360462248325,-0.096479296684265],[0.051067724823952,0.01417819224298,0.050475064665079]],[[0.037925947457552,0.005742144305259,-0.033617023378611],[-0.098610684275627,0.080431640148163,-0.024172745645046],[-0.045449789613485,0.019253173843026,0.079880654811859]],[[-0.026120506227016,-0.035258881747723,0.0032834862358868],[-0.028716485947371,-0.055850226432085,-0.11659447848797],[0.024357797577977,-0.11717158555984,-0.016307087615132]],[[0.040558569133282,0.033389657735825,0.053062949329615],[-0.032548449933529,0.012839440256357,-0.01817124709487],[-0.029176088050008,0.011553665623069,0.075112506747246]],[[0.031430013477802,0.030063262209296,0.038249358534813],[-0.032462533563375,0.007218221668154,-0.0028781080618501],[-0.05727306753397,0.068490654230118,0.010849403217435]],[[-0.030761683359742,0.058950670063496,0.024151576682925],[0.041352439671755,0.054131496697664,-0.0028642117977142],[-0.00060803157975897,-0.046294774860144,0.070863738656044]],[[0.03039644472301,0.055986650288105,0.11967023462057],[0.01167319342494,-0.077064380049706,-0.023150265216827],[-0.015881448984146,0.0023313309065998,0.1303391456604]],[[0.051737915724516,0.053229626268148,0.02254432067275],[-0.017199207097292,-0.079229474067688,0.024145845323801],[-0.029421145096421,0.05923305824399,-0.12744887173176]],[[-0.11924950778484,-0.029773520305753,0.026931583881378],[-0.053543515503407,-0.083340376615524,0.030874768272042],[-0.12981690466404,-0.069883480668068,-0.06144604831934]],[[-0.0068066599778831,0.0099937431514263,0.07192700356245],[-0.01047018636018,-7.2139489930123e-05,-0.014955293387175],[0.030864354223013,-0.034511644393206,-0.0060270852409303]],[[-0.013574343174696,0.027695301920176,0.010124367661774],[-0.019692003726959,-0.09330964833498,0.038698140531778],[-0.039569184184074,-0.0050211125053465,0.019385494291782]],[[-0.02326506190002,-0.087904460728168,0.0043750768527389],[-0.0057025346904993,-0.049192562699318,-0.011185478419065],[-0.014850669540465,-0.053846385329962,-0.051341522485018]],[[-0.00048288353718817,0.092832282185555,-0.0078349616378546],[-0.00016029326070566,0.061670251190662,0.015280318446457],[0.0030086915940046,0.085101053118706,-0.016103740781546]],[[-0.0090025002136827,0.019616613164544,0.015461760573089],[0.0097776623442769,-0.015820264816284,0.049775030463934],[0.020070416852832,-0.0019944396335632,-0.026168268173933]],[[-0.030222360044718,0.054554745554924,-0.047512926161289],[0.0012243104865775,-0.07341019064188,-0.058495111763477],[0.071777105331421,-0.17459192872047,0.065093733370304]],[[-0.10721721500158,0.01634906232357,-0.060527570545673],[0.072530537843704,0.025631956756115,0.028251765295863],[0.07412813603878,-0.018425839021802,-0.065069943666458]],[[-0.011970824562013,0.046336889266968,-0.057423315942287],[0.018534433096647,-0.014258973300457,0.042621064931154],[0.08479642868042,-0.084678404033184,-0.034706450998783]],[[-0.035575117915869,0.011034039780498,-0.041521895676851],[0.037126917392015,0.10338069498539,-0.028597613796592],[-0.0085384510457516,0.052976362407207,-0.050836410373449]],[[-0.045229457318783,-0.024084378033876,-0.017639880999923],[0.012411092408001,0.045232210308313,-0.070494301617146],[-0.019432257860899,0.0041307639330626,0.019237112253904]],[[-0.051570434123278,-0.0031886459328234,-0.057774629443884],[0.051929876208305,0.04309007525444,-0.053423572331667],[-0.073210053145885,0.14499108493328,0.015873374417424]],[[0.030875258147717,0.017991529777646,0.01819758489728],[0.091545768082142,0.10590694099665,0.033955439925194],[-0.055231768637896,0.099067404866219,0.053594466298819]],[[0.055137906223536,-0.037738583981991,-0.00077365356264636],[0.070531323552132,0.10278560221195,-0.016637036576867],[0.057706668972969,-0.055903594940901,-0.063314311206341]],[[0.056880079209805,-0.015248424373567,-0.021363889798522],[0.025101188570261,0.037561547011137,0.052962452173233],[0.014249907806516,0.055339235812426,0.0077003175392747]],[[-0.017746977508068,-0.062371373176575,-0.032351709902287],[-0.03333667293191,0.06472672522068,-0.0032039363868535],[0.052400283515453,-0.10066849738359,-0.025336859747767]],[[-0.056660436093807,-0.020197493955493,0.088971063494682],[0.0095010586082935,-0.038936052471399,0.047945439815521],[-0.032396800816059,-0.081544876098633,0.014728487469256]],[[0.02289261482656,-0.077110640704632,0.02892186678946],[-0.06974484026432,-0.025636339560151,0.018771827220917],[0.0011520436964929,6.0001810197718e-05,0.026588989421725]]],[[[-0.0056841340847313,-0.087032169103622,-0.0079063093289733],[0.076470971107483,0.091138042509556,0.016754593700171],[0.06211731955409,-0.13454493880272,0.088672287762165]],[[0.0026418736670166,0.0034736813977361,-0.072834700345993],[-0.021759364753962,0.011447727680206,-0.054773148149252],[-0.0073357238434255,0.010683522559702,0.01558290142566]],[[-0.086249709129333,0.099403709173203,0.0023144248407334],[-0.041220135986805,-0.16487483680248,0.084065407514572],[0.01889643073082,0.003723758738488,-0.14356473088264]],[[0.042078334838152,0.12831580638885,0.0017578562255949],[0.0045245075598359,-0.044948734343052,0.035120770335197],[-0.098372764885426,-0.082855179905891,-0.07308466732502]],[[-0.021144257858396,-0.058374363929033,-0.025557255372405],[-0.043782383203506,0.056526459753513,0.065655425190926],[-0.032366834580898,0.12627054750919,-0.0022077651228756]],[[0.06542057543993,0.026364443823695,-0.026010725647211],[0.1347461938858,-0.053384609520435,0.048409063369036],[0.13868659734726,0.1667738109827,-0.041494891047478]],[[-0.067161880433559,0.029123064130545,-0.063558228313923],[-0.056610867381096,0.035107880830765,0.014359773136675],[0.0076874904334545,0.14681126177311,0.044736590236425]],[[0.077340453863144,-0.13604408502579,-0.068864062428474],[-0.016142558306456,0.064438812434673,-0.085642270743847],[0.14226393401623,-0.11158237606287,-0.24403800070286]],[[-0.01578333415091,-0.020881395787001,-0.024635527282953],[0.0038515124469995,-0.025632733479142,-0.040226779878139],[0.063366748392582,-0.053374625742435,-0.0061187501996756]],[[-0.026165448129177,0.015182758681476,0.090698927640915],[0.010940562933683,0.022152794525027,-0.0056311381049454],[0.14497640728951,0.025429533794522,0.039746951311827]],[[-0.039827443659306,-0.00070347567088902,-0.087296426296234],[-0.033549152314663,-0.054993476718664,-0.055967148393393],[-0.0034772309008986,-0.079991519451141,-0.068635307252407]],[[0.090503551065922,-0.056676808744669,0.079998314380646],[0.10526682436466,-0.088374152779579,-0.27969291806221],[0.04503270611167,0.062534220516682,0.0045683211646974]],[[-0.0068160761147738,0.065934099256992,0.01893051341176],[-0.013580542989075,0.024653831496835,-0.056901559233665],[-0.024056065827608,0.044909670948982,0.043501280248165]],[[-0.012866470962763,0.074110589921474,-0.023362182080746],[0.036417853087187,-0.0062804506160319,0.093775749206543],[-0.10480091720819,-0.059161864221096,-0.061116889119148]],[[-0.011463890783489,-0.041030779480934,-0.017099620774388],[0.043234318494797,-0.0045692566782236,-0.015118826180696],[0.049562152475119,0.016728462651372,0.052489574998617]],[[0.048047292977571,-0.074606366455555,0.075806632637978],[0.031453751027584,0.038983091711998,-0.08572593331337],[-0.038719277828932,0.10942965000868,0.036812696605921]],[[-0.0070900479331613,-0.05163137242198,0.055902604013681],[0.056995917111635,-0.079544380307198,-0.040617931634188],[0.081157974898815,0.057462211698294,-0.087634727358818]],[[0.069699831306934,-0.083786845207214,0.024069905281067],[0.11174362152815,0.058903895318508,0.1033024340868],[0.036967117339373,-0.15370541810989,-0.1083300486207]],[[0.070465244352818,-0.026103764772415,0.062359258532524],[0.046397887170315,-0.0061620161868632,-0.16364561021328],[0.055640958249569,0.06484267860651,0.026306306943297]],[[-0.062544278800488,0.047035329043865,-0.031969774514437],[-0.006690904032439,-0.10513977706432,-0.021719135344028],[0.0094792935997248,-0.0032581856939942,-0.01773558370769]],[[-0.017421947792172,0.024410171434283,-0.039834346622229],[-0.037953566759825,-0.010697276331484,-0.077709071338177],[0.061073578894138,0.11048125475645,-0.075608946382999]],[[0.01570955850184,0.037617940455675,-0.042643155902624],[-0.0057168155908585,-0.077723734080791,0.17200081050396],[0.062342714518309,0.036144025623798,0.043166995048523]],[[-0.11800023913383,-0.0063283136114478,0.14710749685764],[0.0079146763309836,-0.11694577336311,-0.033863563090563],[0.024433504790068,0.18758815526962,-0.1922677308321]],[[0.034052841365337,0.09105446189642,-0.010001477785408],[0.06566110253334,0.018211506307125,0.082084015011787],[0.12357567250729,-0.0341776907444,0.042977757751942]],[[0.028870422393084,0.072361774742603,0.063789501786232],[0.029908647760749,0.077124707400799,-0.072740092873573],[-0.0084796687588096,-0.026319967582822,0.066232778131962]],[[0.025120571255684,-0.050704922527075,0.062544763088226],[0.10341938585043,-0.0077014332637191,-0.020230393856764],[-0.032893884927034,-0.085480116307735,-0.058991201221943]],[[0.023988585919142,0.037970628589392,0.0014076050138101],[0.018034344539046,0.010998098179698,-0.0040224986150861],[-0.089259579777718,-0.021395169198513,-0.014263390563428]],[[-0.063451834022999,-0.047713529318571,0.0030977299902588],[0.0070953806862235,0.10730554908514,-0.013253152370453],[-0.055401831865311,0.099952757358551,0.037441626191139]],[[0.099562175571918,0.10530925542116,-0.092091925442219],[-0.035853043198586,0.10619569569826,-0.13078230619431],[-0.088849872350693,-0.013319606892765,0.018113607540727]],[[-0.029823957011104,0.06381855905056,0.057757258415222],[-0.0015228564152494,-0.058532606810331,0.087543338537216],[-0.077549390494823,-0.14262606203556,0.068629309535027]],[[-0.04244939237833,0.098340786993504,-0.059596925973892],[0.017919629812241,-0.055711034685373,0.024791413918138],[-0.11349368095398,-0.065043926239014,0.15794809162617]],[[-0.012400618754327,-0.079166822135448,0.0032776878215373],[0.015074434690177,0.065931893885136,0.083817400038242],[0.070995204150677,-0.060474000871181,-0.077219113707542]]],[[[0.10108789801598,-0.077414818108082,-0.19001121819019],[-0.051241409033537,-0.04786467179656,-0.21614231169224],[0.010153645649552,-0.059461392462254,-0.091570317745209]],[[-0.0058053224347532,-0.0075235376134515,-0.036319192498922],[0.067713029682636,0.028886426240206,-0.072311215102673],[-0.023622399196029,0.025504956021905,0.052809130400419]],[[0.01115385722369,-0.027085013687611,0.1879824846983],[-0.0068325442261994,-0.12444844841957,-0.16108578443527],[0.033478204160929,-0.067802548408508,-0.006373992189765]],[[0.12858416140079,0.061329066753387,-0.029383696615696],[-0.075003452599049,-0.097253940999508,0.032419633120298],[-0.1002132743597,0.015901623293757,-0.049019612371922]],[[0.030588099732995,-0.10999354720116,0.043031122535467],[0.082274928689003,0.042362082749605,-0.099235109984875],[-0.019437627866864,-0.032376557588577,0.065382733941078]],[[-0.14725431799889,-0.3343965113163,-0.07146080583334],[0.074863851070404,-0.029828971251845,-0.28613668680191],[0.099420994520187,-0.095297396183014,0.010296143591404]],[[-0.00054086436284706,-0.051304049789906,-0.010381838306785],[-0.026952046900988,0.0088353082537651,-0.11912032961845],[0.074281014502048,0.15770277380943,0.10696608573198]],[[-0.038641069084406,-0.045513525605202,-0.025880308821797],[-0.18277774751186,-0.10052533447742,-0.16879145801067],[0.13839082419872,-0.029255796223879,-0.045849174261093]],[[0.023672806099057,-0.093142420053482,-0.10490376502275],[0.13479961454868,-0.056374445557594,-0.055556509643793],[0.032554414123297,0.032515604048967,0.091705538332462]],[[0.04683343321085,0.028677493333817,-0.17036180198193],[0.058306891471148,0.10761050879955,0.047807618975639],[-0.14315810799599,-0.11029254645109,-0.0052346889860928]],[[-0.078146934509277,-0.06064772605896,-0.024478029459715],[-0.1663680523634,-0.064460135996342,-0.0080292457714677],[0.044519811868668,0.0031110958661884,0.030614258721471]],[[-0.21966423094273,-0.41209673881531,-0.23157311975956],[0.0033906283788383,-0.24752037227154,-0.088834933936596],[0.077967718243599,-0.00017635695985518,-0.099154070019722]],[[0.0076745697297156,-0.091459400951862,-0.078955471515656],[0.0014931331388652,0.022948585450649,-0.063312090933323],[-0.026919811964035,0.093753054738045,-0.0079403985291719]],[[-0.048601567745209,-0.0080060791224241,0.18817548453808],[-0.23285630345345,0.010523033328354,-0.028026163578033],[0.003564974758774,-0.17629976570606,0.0018597632879391]],[[-0.010428077541292,0.034462418407202,-0.066649846732616],[0.037591114640236,0.10151161253452,-0.016160687431693],[0.036585468798876,0.04665107652545,-0.054319899529219]],[[0.041048813611269,-0.023823615163565,0.010721264407039],[-0.010600190609694,0.043262235820293,0.062422629445791],[0.143998503685,-0.0056478935293853,-0.012606943957508]],[[-0.20635393261909,-0.057788908481598,0.063284017145634],[-0.29731950163841,-0.13200905919075,-0.22640666365623],[0.11037962138653,-0.13889190554619,-0.12370102107525]],[[-0.087032474577427,-0.15968805551529,-0.03237371519208],[-0.086318843066692,-0.050640072673559,-0.02100982144475],[0.024790626019239,-0.048605464398861,-0.079475209116936]],[[-0.014048228040338,-0.12595911324024,-0.27509349584579],[0.024769276380539,-0.053110115230083,-0.2283061593771],[-0.27842488884926,-0.058720123022795,-0.11736688017845]],[[-0.14971736073494,0.038946822285652,0.12755133211613],[-0.098620019853115,-0.03128681704402,0.14063280820847],[-0.119832649827,-0.12926985323429,0.084618285298347]],[[0.043739467859268,-0.19811089336872,-0.20625805854797],[0.0011614793911576,0.12900948524475,0.031148847192526],[0.048277404159307,-0.013829088769853,0.034830760210752]],[[-0.0048298388719559,-0.025758462026715,-0.12086046487093],[0.016287598758936,0.0096135502681136,0.02910778298974],[-0.1435641348362,0.014719218015671,0.022310996428132]],[[0.09772639721632,-0.153892993927,0.0015938803553581],[0.0066729011014104,-0.14004762470722,-0.053817711770535],[0.17730242013931,-0.079108648002148,0.00078833987936378]],[[-0.11848701536655,0.037602711468935,-0.050647772848606],[-0.063521660864353,-0.16109915077686,-0.028221316635609],[-0.06480547785759,0.0083311842754483,-0.099723398685455]],[[-0.0082527054473758,-0.24455966055393,-0.021195283159614],[-0.020027315244079,0.074331253767014,-0.19974738359451],[-0.050485342741013,0.011906032450497,-0.067286185920238]],[[-0.062455322593451,-0.10014201700687,-0.23661707341671],[0.092411085963249,-0.051787734031677,-0.12813812494278],[0.051921229809523,0.023643001914024,-0.10802866518497]],[[-0.0010495593305677,-0.0093049881979823,0.0010797159047797],[-0.11684489995241,0.062618046998978,0.042332474142313],[0.0077402656897902,-0.019857237115502,0.048954602330923]],[[0.20613771677017,0.073595866560936,-0.021875144913793],[0.017362114042044,0.13464088737965,0.02195218205452],[-0.13360910117626,0.12939071655273,0.11125231534243]],[[-0.054891377687454,-0.19625090062618,-0.081295855343342],[-0.075753413140774,-0.062663987278938,-0.14084938168526],[-0.073131501674652,-0.09326159209013,-0.032369773834944]],[[0.0680046454072,0.018031027168036,0.051258195191622],[-0.054546963423491,0.067395806312561,0.086910672485828],[-0.17997513711452,-0.074748881161213,0.013147125951946]],[[0.073876962065697,0.079589530825615,0.0070077204145491],[-0.088454313576221,0.058806762099266,0.079536892473698],[-0.18201071023941,-0.021711222827435,0.10403221100569]],[[-0.14882019162178,-0.1180969029665,0.13893803954124],[-0.031432099640369,-0.014736806042492,0.14481402933598],[0.035774298012257,-0.092353589832783,-0.11087489873171]]],[[[-0.050301648676395,0.033677898347378,0.11576040834188],[0.0045720641501248,0.063993111252785,0.01904515735805],[-0.036629743874073,-0.044679932296276,-0.081596709787846]],[[-0.06616997718811,0.071732252836227,-0.018583884462714],[0.01440126542002,-0.064505659043789,-0.011110486462712],[0.0020499629899859,-0.047114372253418,-0.013919357210398]],[[0.068230457603931,0.1255092471838,-0.15600442886353],[-0.071021303534508,0.092933893203735,0.046714201569557],[-0.041875399649143,0.034478019922972,-0.0076339039951563]],[[-0.061778180301189,0.16810491681099,-0.0026878216303885],[-0.014834937639534,0.005955939181149,-0.043280571699142],[0.0082283793017268,-0.01294048782438,-0.10957646369934]],[[0.011570978909731,-0.037794977426529,0.1010959148407],[0.019832955673337,-0.030268937349319,0.045017004013062],[0.083385623991489,0.010096334852278,-0.02936102822423]],[[-0.39939230680466,0.050199564546347,0.19975866377354],[-0.19823096692562,0.098782584071159,0.10815857350826],[-0.18704706430435,0.12610913813114,0.061979416757822]],[[-0.031043859198689,0.072426609694958,-0.086581349372864],[0.030981097370386,-0.016565522179008,0.022622585296631],[0.023127097636461,-0.042608022689819,-0.085216470062733]],[[-0.081264548003674,-0.055912267416716,-0.074870534241199],[-0.044249568134546,-0.085949845612049,-0.077327609062195],[-0.0013733307132497,-0.048057712614536,0.022245831787586]],[[-0.10326834022999,-0.10270041972399,0.15773187577724],[-0.035731550306082,0.060302287340164,0.070958651602268],[-0.026707818731666,-0.048721052706242,-0.032663702964783]],[[0.044646911323071,-0.061854779720306,-0.0037751719355583],[-0.13564811646938,-0.059886436909437,-0.1077054515481],[0.025112759321928,-0.12398913502693,-0.10061846673489]],[[-0.010554035194218,0.030616465955973,0.0058343540877104],[-0.0089368401095271,-0.016367174685001,0.039426259696484],[-0.035364672541618,-0.023734452202916,-0.040090437978506]],[[-0.10116565972567,0.037374645471573,0.14162388443947],[-0.069339610636234,-0.0072123138234019,0.035014875233173],[-0.020998114719987,-0.0027544647455215,-0.066102728247643]],[[0.059387724846601,-0.12219043821096,-0.044052466750145],[0.015484695322812,-0.099484793841839,-0.011593105271459],[0.020579528063536,-0.17053328454494,-0.05847891792655]],[[-0.038973841816187,-0.25164124369621,-0.0054872138425708],[-0.0017389159183949,-0.12566527724266,0.060187596827745],[0.015124620869756,-0.088569946587086,0.060938276350498]],[[0.02582991309464,-0.0088498061522841,0.058492075651884],[0.038245908915997,0.091134533286095,-0.0060724657960236],[0.0023453338071704,-0.0091472249478102,-0.076490551233292]],[[-0.068258479237556,-0.0079684257507324,0.044262673705816],[-0.087594121694565,-0.013010326772928,-0.07599001377821],[-0.13031317293644,0.0024387431330979,0.061352714896202]],[[0.043708924204111,0.28088289499283,-0.011316862888634],[0.15159192681313,0.062902666628361,-0.1580046415329],[0.012194331735373,-0.0030716231558472,-0.10532405227423]],[[-0.054522883147001,-0.022191287949681,0.14801093935966],[-0.054646361619234,0.12507681548595,0.052730642259121],[-0.14576888084412,0.06235621497035,-0.04922929033637]],[[-0.090676926076412,-0.072718687355518,0.074302472174168],[-0.036991935223341,-0.038096215575933,0.0085721677169204],[0.013462754897773,-0.061247825622559,-0.037295840680599]],[[0.031828656792641,-0.15910297632217,0.018219921737909],[0.086865231394768,-0.095416009426117,-0.061841018497944],[0.095908485352993,0.035922557115555,-0.10819425433874]],[[-0.0175776258111,0.032031867653131,0.047529868781567],[-0.024651726707816,0.055325798690319,-0.021072303876281],[-0.10323692113161,-0.051409780979156,-0.023762986063957]],[[0.0079595604911447,-0.22932271659374,-0.14614939689636],[0.057410441339016,0.050802879035473,-0.12410141527653],[0.14337283372879,0.10127006471157,-0.030156942084432]],[[0.063527904450893,0.10254032164812,-0.17522452771664],[0.10197123885155,0.04388502985239,-0.026496350765228],[-0.084779962897301,0.079328343272209,-0.046740785241127]],[[-0.012955142185092,-0.1013805642724,-0.089207530021667],[-0.035593662410975,0.035861264914274,-0.1951339840889],[-0.1192663833499,-0.20394806563854,-0.080750048160553]],[[-0.0024482018779963,-0.10054218769073,0.010817913338542],[-0.072183601558208,-0.17009113729,-0.074960634112358],[-0.047388255596161,-0.059689801186323,-0.085163541138172]],[[0.0089704534038901,-0.086074352264404,-0.056193061172962],[0.016574248671532,0.010403119958937,-0.033540640026331],[-0.016515139490366,-0.020576031878591,-0.083427377045155]],[[-0.0095599293708801,0.015948804095387,-0.079098708927631],[-0.014651132747531,-0.081262983381748,0.092523343861103],[-0.033133670687675,-0.0030760860536247,0.11212277412415]],[[0.17981638014317,-0.35141411423683,-0.30079191923141],[0.063753545284271,-0.051405869424343,0.05004320666194],[0.27169287204742,0.055420368909836,-0.079334162175655]],[[0.096672624349594,-0.049383267760277,0.14056907594204],[0.067576766014099,-0.047190170735121,-0.040202021598816],[-0.048628613352776,-0.11340370029211,-0.14929537475109]],[[0.075613394379616,-0.06451091170311,-0.035420432686806],[0.0002854957128875,0.085714265704155,-0.08829340338707],[0.016735149547458,0.0072133089415729,-0.021771607920527]],[[0.1406657397747,-0.017262946814299,-0.38445168733597],[0.13654242455959,0.12027303874493,-0.065751634538174],[-0.022238394245505,0.033284716308117,-0.13626082241535]],[[-0.125140234828,0.18778705596924,-0.049050211906433],[-0.075403898954391,-0.20305606722832,-0.092606961727142],[-0.046223577111959,0.070066653192043,-0.10843429714441]]],[[[0.22079013288021,0.082924030721188,0.024211807176471],[0.021811785176396,-0.032208152115345,-0.058304723352194],[0.095049314200878,-0.14604957401752,-0.017886646091938]],[[-0.042523246258497,-0.055593930184841,0.011359646916389],[-0.017387662082911,-0.10402203351259,0.12143284082413],[-0.012860734015703,-0.0023137119133025,0.01913870126009]],[[-0.098728008568287,-0.14433431625366,0.066211372613907],[0.014166163280606,0.06759886443615,0.090235009789467],[0.074638023972511,0.12631419301033,0.10982660204172]],[[0.032467734068632,0.020845236256719,-0.081420451402664],[0.071259155869484,0.0350620187819,-0.052210628986359],[0.0080494647845626,-0.11155990511179,-0.10938250273466]],[[-0.017729837447405,-0.063151717185974,0.019857199862599],[0.057049416005611,0.038294389843941,0.0094513278454542],[0.034225169569254,-0.13458825647831,0.042540498077869]],[[0.079158268868923,-0.16542312502861,0.060067474842072],[-0.13467626273632,0.15958115458488,0.0053401836194098],[0.12783375382423,-0.019015517085791,-0.00015570786490571]],[[0.088854424655437,0.081494629383087,0.034532312303782],[0.1239101588726,-0.05224946141243,0.12662722170353],[0.039545971900225,-0.080193631350994,-0.12419039011002]],[[0.0115962382406,-0.15795992314816,-0.054971676319838],[0.029629340395331,-0.045266732573509,-0.11341126263142],[-0.026378735899925,0.073896862566471,0.073519088327885]],[[-0.03068383783102,0.0024263344239444,-0.021912679076195],[0.018896285444498,0.049937974661589,0.11795055866241],[-0.010966219007969,0.015497686341405,0.11086515337229]],[[0.18211871385574,0.03599975630641,-0.10399474948645],[0.13282600045204,-0.042161010205746,-0.0032513858750463],[0.073278859257698,0.093919701874256,-0.048310920596123]],[[0.14159075915813,0.045673120766878,0.15416181087494],[0.20144367218018,-0.01877311617136,-0.12603081762791],[-0.0045259245671332,-0.02923590503633,0.012896050699055]],[[0.16482697427273,0.02575365267694,-0.073311552405357],[0.10629893839359,-0.044350896030664,0.00094383268151432],[0.057333227247,-0.085696496069431,-0.045410133898258]],[[-0.010464190505445,-0.0076908157207072,0.05419671908021],[0.030996831133962,-0.13427601754665,0.03178258612752],[-0.043374571949244,-0.0057448036968708,0.010692524723709]],[[0.087432056665421,0.063195832073689,-0.11061266064644],[0.084028773009777,0.10830584913492,-0.12995903193951],[0.1333719342947,-0.061981145292521,-0.039823640137911]],[[0.032740455120802,0.07172929495573,0.0014115438098088],[0.0059614316560328,-0.07188481092453,0.0027933900710195],[-0.032074425369501,-0.0021593389101326,0.011992617510259]],[[0.085007555782795,0.019119871780276,0.053820144385099],[0.13343530893326,-0.24006812274456,0.045267920941114],[-0.025797007605433,0.053888861089945,-0.13246038556099]],[[0.11361218243837,0.0046474281698465,-0.041859287768602],[-0.087514169514179,-0.050778392702341,0.046309303492308],[-0.06462337821722,0.047459997236729,0.10256151109934]],[[-0.10963203758001,0.10440706461668,-0.036067314445972],[-0.09083915501833,-0.015851305797696,0.0046033319085836],[-0.088414788246155,0.044153913855553,0.025386214256287]],[[0.053623620420694,0.024009894579649,-0.10098059475422],[0.046274520456791,0.054003849625587,-0.025790130719543],[0.091666765511036,-0.033658299595118,-0.018024718388915]],[[0.17657272517681,0.077592313289642,0.045311525464058],[0.10383001714945,0.033932738006115,-0.11454743146896],[-0.070528663694859,-0.14145408570766,-0.071986168622971]],[[0.033542226999998,-0.0042061838321388,0.034042090177536],[-0.014520211145282,-0.059342220425606,-0.037160228937864],[-0.073437191545963,-0.15000230073929,-0.023109147325158]],[[-0.12554608285427,-0.064260885119438,-0.010003905743361],[-0.11044804006815,0.079655423760414,0.24606285989285],[0.090708754956722,0.054178256541491,0.12460953742266]],[[0.056191049516201,-0.077639065682888,0.038979683071375],[0.092868454754353,0.17571842670441,0.093901753425598],[0.0018768220907077,0.052201453596354,0.012471066787839]],[[0.17260754108429,0.077990673482418,0.070915684103966],[0.077033653855324,-0.099700778722763,-0.20986022055149],[-0.10049489885569,-0.097703836858273,-0.13070057332516]],[[0.12083644419909,0.013142527081072,-0.15087100863457],[0.13830599188805,-0.12451170384884,-0.075686544179916],[0.12656819820404,-0.10770932585001,-0.2230546027422]],[[0.16631175577641,0.099100612103939,0.16186685860157],[0.12769864499569,-0.13803109526634,-0.045184340327978],[0.060352440923452,-0.011246559210122,-0.17216224968433]],[[-0.014817552641034,0.097682528197765,-0.020074911415577],[-0.081775940954685,-0.014946604147553,0.0048388070426881],[0.01384960860014,0.087797783315182,0.0757856965065]],[[-0.32649156451225,0.094081707298756,-0.022073416039348],[-0.05870483443141,0.012899295426905,0.001259037759155],[-0.0016877431189641,0.0070178168825805,0.047293409705162]],[[-0.036549393087626,0.033603366464376,0.10165398567915],[-0.087644562125206,0.13334013521671,0.036780934780836],[-0.17405307292938,-0.037426516413689,-0.17839223146439]],[[0.05367835611105,-0.094304636120796,-0.059829831123352],[0.041047148406506,0.0025800548028201,-0.16445170342922],[0.079422511160374,0.084704510867596,-0.036627281457186]],[[-0.11055968701839,-0.14679105579853,-0.0065726093016565],[-0.038495697081089,0.1493034362793,0.15758922696114],[0.044257540255785,0.029624113813043,-0.083482667803764]],[[-0.043764397501945,0.017348883673549,-0.0054956334643066],[-0.0092453882098198,-0.018910015001893,-0.019143609330058],[-0.10037742555141,-0.11515998840332,-0.10195506364107]]],[[[0.18256637454033,0.014763141050935,0.017578596249223],[-0.023207964375615,-0.092973925173283,0.0031401198357344],[0.026879735291004,-0.10003156214952,-0.042014569044113]],[[-0.037509717047215,0.042586304247379,0.048281736671925],[-0.0056926663964987,-0.052332691848278,0.0026924482081085],[-0.00032726183417253,0.011781525798142,-0.0034309120383114]],[[0.036160986870527,0.0054064388386905,0.03247918561101],[-0.11771025508642,0.043990924954414,0.016971161589026],[0.034926362335682,0.14248806238174,-0.14641039073467]],[[0.063323073089123,0.0012479497818276,-0.056217726320028],[0.0056729945354164,-0.12268647551537,-0.045607842504978],[-0.033848661929369,0.030629398301244,-0.07653446495533]],[[0.033661711961031,-0.041455443948507,0.039736691862345],[0.018208807334304,0.04275768622756,0.023724505677819],[0.022103011608124,-0.059393994510174,-0.078258968889713]],[[-0.043767143040895,-0.093532800674438,-0.16444981098175],[0.0068059922195971,-0.16575221717358,0.19499322772026],[0.01527242641896,0.062865793704987,0.2429466843605]],[[0.13675139844418,-0.082449421286583,0.098782621324062],[0.006560661830008,0.089680753648281,0.039355166256428],[-0.0099468734115362,-0.097032904624939,-0.09065867215395]],[[0.13163150846958,0.025454930961132,-0.17049719393253],[0.1008423641324,0.012484567239881,0.029309323057532],[-0.079348042607307,-0.14492902159691,-0.19812110066414]],[[-0.011450932361186,-0.020875245332718,0.091126382350922],[0.12708146870136,-0.018109014257789,-0.017097607254982],[-0.058589957654476,0.0019448287785053,-0.1100759357214]],[[0.018966935575008,0.059929437935352,0.0062825656495988],[0.016143312677741,0.1121543943882,-0.014654650352895],[0.06493878364563,-0.15368540585041,0.12000409513712]],[[-0.12351310998201,-0.010172792710364,0.0078665018081665],[0.14480014145374,0.066370815038681,0.11725523322821],[0.043124128133059,-0.037458200007677,-0.13110038638115]],[[-0.061161629855633,0.14242574572563,0.03376504778862],[-0.092799752950668,0.0033668444957584,-0.14761233329773],[-0.023578751832247,0.037710800766945,0.055178083479404]],[[0.015121338889003,0.0049326359294355,0.048006761819124],[-0.058268938213587,0.014558107592165,0.13839963078499],[-0.078290201723576,0.10162087529898,0.17626945674419]],[[-0.051526468247175,-0.15126439929008,-0.055702097713947],[-0.23715925216675,-0.11170254647732,0.069315664470196],[0.18861025571823,0.12631331384182,0.17264737188816]],[[0.0029193807858974,-0.025562044233084,0.042840905487537],[-0.015610177069902,0.011310759931803,0.03430251032114],[0.03377927467227,-0.051965299993753,0.043214846402407]],[[0.22364343702793,0.085979834198952,-0.017350336536765],[-0.094226583838463,-0.06758151948452,0.11682138592005],[0.016253599897027,-0.20164301991463,-0.0037176897749305]],[[0.055377103388309,0.096519455313683,0.069076485931873],[-0.0035872408188879,-0.089460469782352,0.013460056856275],[-0.0733752399683,0.0055003692395985,-0.20951302349567]],[[0.02090441994369,-0.067835256457329,-0.080540545284748],[0.1054419875145,0.046828020364046,0.15660038590431],[0.06207200884819,-0.10733881592751,-0.030495373532176]],[[0.032778911292553,-0.018229385837913,0.035622425377369],[0.036323890089989,-0.096414625644684,0.029417242854834],[-0.039736464619637,-0.031289130449295,0.10661505907774]],[[0.23102171719074,-0.04880690574646,0.018620410934091],[0.046647228300571,-0.080572977662086,-0.20118960738182],[-0.08661076426506,-0.12770241498947,-0.21820743381977]],[[0.17350222170353,0.064970314502716,-0.019344454631209],[-0.15158015489578,-0.10032951831818,-0.067276485264301],[-0.078462801873684,-0.13910768926144,-0.013620462268591]],[[-0.070140965282917,0.0049639204517007,-0.091671258211136],[0.0086681861430407,0.089913226664066,0.13246917724609],[-0.022798974066973,-0.12700343132019,0.11643581092358]],[[0.11899121850729,-0.1148132905364,0.1213037148118],[0.0163733381778,0.0032229796051979,-0.2236110419035],[-0.00023168310872279,-0.0025415506679565,-0.094903789460659]],[[0.018188342452049,-0.098423577845097,-0.087920539081097],[-0.062179960310459,-0.075192995369434,-0.085367165505886],[-0.092392139136791,-0.009849589318037,0.018212663009763]],[[0.1470593214035,-0.047413680702448,-0.024731032550335],[0.10661979019642,0.068732798099518,-0.099453441798687],[-0.15912909805775,-0.050048731267452,-0.083841092884541]],[[-0.044858496636152,-0.17499351501465,0.056929167360067],[0.02735572680831,0.062345076352358,0.044133368879557],[-0.053547330200672,-0.10610784590244,0.0026742937043309]],[[-0.0047063222154975,-0.019843239337206,-0.077229686081409],[0.045901209115982,0.14597177505493,-0.038369651883841],[-0.087670847773552,-0.013757358305156,-0.01480202190578]],[[0.10657799243927,0.021871346980333,-0.069101095199585],[0.076560877263546,-0.0019608847796917,-0.11449365317822],[-0.084341116249561,-0.056560900062323,0.064484536647797]],[[-0.017777424305677,0.13586513698101,0.011974526569247],[-0.041944276541471,-0.079225562512875,0.036676548421383],[-0.10046996176243,-0.15049509704113,-0.0098481103777885]],[[0.09701219201088,0.062843509018421,0.005032307934016],[-0.022378485649824,0.055882018059492,0.053237084299326],[0.034619804471731,-0.20440475642681,-0.030313666909933]],[[0.050926804542542,0.075748823583126,0.13482113182545],[-0.039838436990976,-0.037386860698462,-0.061408214271069],[-0.083570249378681,-0.073910236358643,0.063226908445358]],[[0.10629186779261,0.0086665758863091,0.023403009399772],[-0.016181575134397,-0.074249058961868,0.09897767752409],[-0.13578055799007,0.017317924648523,0.0043600481003523]]],[[[-0.014900435693562,-0.084338121116161,-0.023498309776187],[-0.035353347659111,0.056145943701267,-0.051987987011671],[0.058235455304384,0.11655610054731,-0.018104270100594]],[[-0.078016854822636,0.0024958699941635,-0.15629497170448],[-0.13180430233479,-0.11362128704786,-0.076085552573204],[0.010571748949587,-0.14267672598362,-0.1675930172205]],[[0.018253993242979,0.033155295997858,-0.045083951205015],[-0.075582899153233,0.073707066476345,-0.096227392554283],[0.013032211922109,0.044337332248688,0.037609186023474]],[[-0.019703637808561,-0.027806796133518,-0.02940277941525],[-0.038346741348505,0.027210867032409,0.0037163295783103],[0.011510257609189,0.077877007424831,0.041112996637821]],[[-0.1199194714427,-0.1145671531558,0.0037692810874432],[-0.032078117132187,-0.096921935677528,-0.031619612127542],[-0.14452275633812,-0.20347452163696,-0.054224792867899]],[[0.03328412771225,-0.098759882152081,0.049226149916649],[-0.01876612007618,0.063507936894894,-0.023371104151011],[-0.0040077934972942,0.038131538778543,-0.013455313630402]],[[0.015168108977377,-0.0021585978101939,0.060765475034714],[-0.0032413250301033,-0.016084896400571,0.054252851754427],[-0.027842603623867,-0.060777127742767,-0.0322047136724]],[[0.059667140245438,-0.037788782268763,-0.018738958984613],[-0.030016396194696,0.063692800700665,0.023992592468858],[-0.04203949868679,-0.0044126915745437,-0.015056963078678]],[[-0.0058206547982991,-0.10264394432306,-0.075501471757889],[-0.058403469622135,-0.21093168854713,-0.099972829222679],[-0.0014099503168836,-0.19096286594868,-0.095039181411266]],[[0.043718066066504,0.035599324852228,-0.010316394269466],[0.016752630472183,-0.019151300191879,-0.015239235013723],[-0.069949500262737,0.02431446313858,-0.02199848741293]],[[0.063149459660053,-0.047468587756157,-0.029003731906414],[0.022711932659149,-0.017625484615564,0.028957461938262],[0.025300655514002,-0.062840677797794,0.0037982745561749]],[[-0.058117769658566,0.0046358369290829,0.019813813269138],[-0.032937612384558,0.0057441527023911,-0.00097544357413426],[-0.021701604127884,0.070753395557404,0.019471678882837]],[[0.005352565087378,0.014536718837917,0.0090262601152062],[0.014317313209176,-0.10134762525558,0.029925089329481],[0.043494325131178,-0.0039287186227739,-0.032607644796371]],[[-0.031040444970131,0.042439427226782,-0.057144738733768],[0.0034462758339942,0.04357460513711,0.0054538622498512],[0.059544209390879,-0.032393794506788,-0.014127908274531]],[[-0.0072269001975656,-0.016310747712851,-0.037575453519821],[-0.13858230412006,-0.14942443370819,-0.1607179492712],[-0.16373401880264,-0.072556391358376,-0.07147952914238]],[[0.063205376267433,-0.0094757564365864,-0.032393749803305],[-0.039524063467979,-0.0090067004784942,-0.016856588423252],[-0.037350751459599,0.048736989498138,0.036847576498985]],[[0.073792047798634,0.029963860288262,-0.043271977454424],[-0.021350627765059,0.022674212232232,0.026217693462968],[-0.11543748527765,0.036509301513433,0.017125735059381]],[[0.020925598219037,0.029273575171828,0.032564755529165],[0.020438123494387,-0.010652030818164,0.080896191298962],[-0.07335340231657,-0.034831240773201,0.032198324799538]],[[0.0083091119304299,-0.020979477092624,-0.0010563861578703],[-0.022271344438195,-0.12147690355778,-0.061207331717014],[0.056167047470808,0.099272258579731,0.086766622960567]],[[0.0071945055387914,0.071555592119694,0.086834974586964],[0.04932314530015,-0.0026896577328444,-0.11408095061779],[0.099332429468632,-0.098462752997875,-0.062563620507717]],[[0.014720878563821,-0.061308324337006,-0.18580032885075],[-0.070359580218792,-0.19257760047913,-0.01594896055758],[-0.090265452861786,-0.13457947969437,-0.045428924262524]],[[0.035658542066813,0.0047793686389923,-0.006070023868233],[-0.078183211386204,0.051483634859324,-0.025853572413325],[0.050892218947411,0.004174186848104,-0.01514093298465]],[[0.002200398594141,-0.052072536200285,-0.027179254218936],[-0.027496261522174,-0.043429169803858,0.047062024474144],[-0.026887053623796,0.053242262452841,0.057718578726053]],[[0.0015981454635039,0.026205012574792,0.010192076675594],[-0.035666633397341,0.10939199477434,0.069807566702366],[-0.13667085766792,-0.09454084187746,0.056417174637318]],[[0.056482251733541,0.01015998609364,0.098744131624699],[-0.025484116747975,0.043361868709326,-0.018077380955219],[-0.011930235661566,-0.084993146359921,-0.014561005868018]],[[-0.035198755562305,0.014648185111582,0.0020954259671271],[-0.024704175069928,0.014763433486223,0.030273251235485],[0.039971005171537,-0.093012370169163,0.050807241350412]],[[0.083829179406166,0.00021973914408591,0.099577598273754],[0.027412125840783,0.034648284316063,0.077292539179325],[0.015317168086767,0.033405270427465,0.0051024658605456]],[[-0.031069492921233,0.036592844873667,0.0020405903924257],[-0.0054124551825225,0.023479372262955,-0.050483074039221],[0.025615634396672,0.016294928267598,-0.041047818958759]],[[0.04836043342948,-0.068414367735386,-0.031872071325779],[0.059862926602364,0.070965103805065,-0.098104953765869],[0.083157747983932,-0.026632860302925,-0.046337343752384]],[[0.081397973001003,0.002260354347527,-0.054500889033079],[-0.075099892914295,0.054985735565424,0.060252748429775],[0.076214604079723,0.060913860797882,0.11496378481388]],[[-0.032162386924028,-0.019354689866304,0.060961909592152],[0.023745182901621,-0.013714713975787,-0.031035738065839],[0.046938594430685,0.0033831854816526,-0.0082888649776578]],[[-0.059092275798321,-0.11373042315245,0.014354511164129],[-0.084929004311562,0.026740550994873,0.11691803485155],[-0.047743190079927,0.1121511682868,0.045189011842012]]],[[[-0.030114725232124,-0.032559964805841,0.114770822227],[0.0098548959940672,0.049148466438055,0.076350122690201],[0.047559928148985,0.007116453256458,0.085003420710564]],[[-0.024554897099733,0.00075488863512874,-0.056987468153238],[-0.12321015447378,0.084853529930115,0.022743336856365],[-0.066455133259296,-0.11627369374037,-0.091639220714569]],[[0.040425047278404,0.083849333226681,-0.062147106975317],[0.033107534050941,-0.036437451839447,0.054912522435188],[0.067711137235165,-0.12750107049942,0.064629718661308]],[[0.075175650417805,0.0044097537174821,0.040791228413582],[-0.046793539077044,-0.08451958745718,-0.0011367913102731],[-0.016727579757571,-0.016223210841417,-0.0066625140607357]],[[-0.039893079549074,0.051331035792828,-0.10922671854496],[0.023534709587693,-0.12641905248165,-0.019886570051312],[0.015309749171138,0.015021196566522,0.054198544472456]],[[0.05669442564249,-0.075050793588161,-0.091028414666653],[0.11532075703144,-0.075395114719868,-0.015397469513118],[0.071567706763744,-0.2059391438961,-0.20671825110912]],[[-0.04455591738224,0.058033488690853,0.11815652996302],[-0.040121093392372,0.022415528073907,0.0077526862733066],[0.09187325835228,-0.047092717140913,0.067687496542931]],[[-0.036204669624567,0.015621640719473,0.075514435768127],[0.0047864108346403,0.072112195193768,0.0076244147494435],[-0.048276595771313,0.012636851519346,-0.052481852471828]],[[0.0011400551302359,0.019435252994299,-0.022737361490726],[-0.014533665031195,0.082368649542332,0.043284460902214],[-0.084148705005646,0.044178571552038,-0.015043072402477]],[[-0.077334500849247,0.0019662661943585,-0.027797840535641],[-0.11911934614182,0.029889674857259,0.047920476645231],[-0.029022084549069,0.0084719341248274,0.055588487535715]],[[0.10639107227325,0.065673440694809,0.1202307343483],[0.12224717438221,0.048785097897053,-0.084988988935947],[0.054330874234438,-0.12649162113667,-0.042243529111147]],[[0.045999947935343,-0.030070347711444,-0.18724197149277],[0.036634802818298,0.11477670818567,-0.0375188998878],[-0.07458620518446,-0.1099344342947,-0.10205825418234]],[[-0.13444311916828,0.15669775009155,-0.09075216203928],[-0.030145678669214,0.1789114177227,-0.13220246136189],[-0.047455444931984,0.1433357745409,-0.12211033701897]],[[-0.013725160621107,0.11695460230112,0.052450392395258],[-0.042584635317326,0.17312569916248,0.1447332650423],[-0.043474681675434,0.016031881794333,-0.052578829228878]],[[0.013728368096054,-0.0047832042910159,-0.012449437752366],[-0.082790248095989,0.054353445768356,-0.041610009968281],[0.063874676823616,-0.010341537185013,0.050063613802195]],[[0.04837628826499,0.11502695828676,-0.045501202344894],[0.085761897265911,0.01969532482326,-0.041186112910509],[-0.0080133732408285,-0.023498659953475,-0.033813245594501]],[[0.066483497619629,0.017568187788129,-0.051326923072338],[-0.031065868213773,0.041720803827047,0.059206712990999],[-0.041896793991327,0.093001119792461,0.10445906966925]],[[-0.0099370731040835,0.088699080049992,0.013461124151945],[-0.086725816130638,0.00050006964011118,0.0048076971434057],[0.061474181711674,-0.017434351146221,0.08515477925539]],[[0.0081897815689445,0.080937497317791,0.052623830735683],[-0.021023286506534,0.053075857460499,0.090839028358459],[-0.065223172307014,0.036890659481287,0.011512780562043]],[[0.13463854789734,0.010285220108926,0.12540309131145],[0.12305340915918,0.12619943916798,0.023583613336086],[-0.083473816514015,0.17939709126949,0.077565096318722]],[[0.13108175992966,0.076117791235447,0.19834372401237],[0.13159540295601,0.219104424119,0.23844276368618],[0.065333567559719,0.10955901443958,0.14114990830421]],[[0.15268258750439,-0.063030056655407,0.0044293124228716],[0.048086233437061,-0.032930959016085,-0.012080298736691],[0.011049754917622,0.013618100434542,-0.12616202235222]],[[0.01195202767849,0.12687911093235,-0.011220633052289],[0.076105557382107,-0.015991069376469,-0.075484603643417],[-0.13738559186459,0.10536953061819,-0.14635808765888]],[[0.026327777653933,-0.036273811012506,0.020053550601006],[0.00051604554755613,0.019287638366222,-0.077391691505909],[-0.010530200786889,0.037768293172121,-0.044890787452459]],[[-0.005729038733989,-0.0035853669978678,-0.019734002649784],[-0.051945552229881,-0.012078188359737,0.081610672175884],[0.048024494200945,-0.0032957214862108,0.048357177525759]],[[0.033083077520132,0.042302060872316,0.1134679839015],[-0.042488351464272,-0.11320278793573,0.18519508838654],[-0.029427515342832,-0.053057875484228,0.13352280855179]],[[0.12885519862175,0.081149965524673,-0.042369030416012],[0.018485825508833,0.010336573235691,0.0093640759587288],[0.031008074060082,0.18648119270802,-0.041222702711821]],[[0.054560970515013,-0.026650495827198,-0.035385940223932],[0.094148643314838,0.087091498076916,-0.070113070309162],[0.095800206065178,-0.06279331445694,-0.037191964685917]],[[0.04624667018652,-0.032378748059273,-0.0091674085706472],[-0.007706830278039,-0.020064178854227,0.15798787772655],[-0.050495080649853,-0.023688836023211,0.032398831099272]],[[-0.0049510770477355,0.043317146599293,0.0014463500119746],[0.16849276423454,0.14697094261646,-0.071546912193298],[0.0047995946370065,0.10233144462109,-0.089197054505348]],[[-0.04144037887454,0.1177826821804,0.015654636546969],[0.070344351232052,-0.0053246817551553,-0.091984666883945],[0.024889441207051,0.036168877035379,-0.008821695111692]],[[0.064974628388882,0.065814569592476,0.057609435170889],[-0.06860113888979,0.012513678520918,-0.015394755639136],[0.009958541020751,0.0096401171758771,-0.087393656373024]]],[[[-0.1800050586462,0.011058170348406,0.053661599755287],[0.022098394110799,-0.077145531773567,0.092520363628864],[-0.14186997711658,-0.094598829746246,-0.023986855521798]],[[-0.016246737912297,0.0048606269992888,0.036067202687263],[0.018036440014839,0.042313478887081,-0.066834390163422],[0.10179278254509,-0.02278090454638,-0.027530135586858]],[[0.019418217241764,0.09787954390049,0.082951493561268],[0.054866459220648,0.16089959442616,-0.087660670280457],[-0.035051733255386,0.039142195135355,-0.11751054227352]],[[-0.058989245444536,0.0632688626647,0.039225097745657],[-0.010396960191429,-0.16636738181114,0.073793150484562],[-0.13516834378242,-0.022526156157255,0.017626406624913]],[[0.031203597784042,0.036915171891451,0.035303767770529],[0.11262148618698,-0.0030000247061253,-0.025471029803157],[-0.029916113242507,0.073710411787033,-0.06800439953804]],[[0.14625759422779,-0.13919349014759,-0.26042506098747],[-0.080739706754684,-0.079147703945637,0.010046895593405],[0.10604882985353,-0.014052812941372,0.18627355992794]],[[0.019586408510804,-0.076949395239353,-0.0074154557660222],[-0.16473184525967,0.011394125409424,-0.081525735557079],[-0.11154624819756,-0.051163952797651,0.028841847553849]],[[-0.063833124935627,0.024110523983836,0.17386645078659],[-0.15079481899738,0.081128843128681,0.18822567164898],[0.052405085414648,-0.091896899044514,-0.066117651760578]],[[0.072170414030552,0.01116977352649,0.10609218478203],[0.025071104988456,0.063697457313538,0.0033303119707853],[0.046915382146835,-0.13792617619038,-0.023318391293287]],[[0.033479914069176,-0.093404725193977,0.083173528313637],[-0.036535520106554,0.048246875405312,-0.077540598809719],[-0.080549955368042,0.0082418126985431,-0.012942291796207]],[[-0.03314758464694,-0.058461897075176,0.030514266341925],[0.049540977925062,0.0047196722589433,0.11527828872204],[-0.07407484203577,-0.0073237936012447,-0.19513121247292]],[[0.037568114697933,0.065235659480095,-0.12271345406771],[0.0029251056257635,-0.215819850564,0.069197833538055],[-0.15176238119602,0.081805907189846,0.038722839206457]],[[-0.053672708570957,0.087544903159142,-0.0089111728593707],[0.075655274093151,0.066462136805058,-0.045719880610704],[-0.036075871437788,-0.066374413669109,0.057812012732029]],[[0.081130169332027,-0.063158810138702,-0.21220317482948],[-0.071185447275639,0.028894387185574,0.15902203321457],[0.039297476410866,-0.049582786858082,0.10445057600737]],[[-0.052213668823242,0.087365224957466,0.055501539260149],[-0.012881340458989,0.050069231539965,-0.048006869852543],[-0.090439841151237,-0.089124299585819,0.018178733065724]],[[-0.063469678163528,0.10867061465979,0.0078797107562423],[-0.10839785635471,-0.033861663192511,0.020476864650846],[0.026304181665182,-0.072969630360603,0.15263101458549]],[[-0.01352521032095,-0.012983390130103,0.26011571288109],[-0.13778422772884,0.075064212083817,-0.16969738900661],[-0.04569773748517,-0.24898165464401,-0.031532976776361]],[[-0.10465635359287,-0.012621031142771,0.069046162068844],[-0.22614835202694,0.011380583979189,0.088489882647991],[-0.097700230777264,0.098135374486446,0.055629670619965]],[[-0.1139218211174,-0.019357591867447,0.10827295482159],[0.10908593982458,-0.062673926353455,0.0033110363874584],[0.014865081757307,0.075801052153111,0.034133091568947]],[[-0.0079994825646281,0.0360984839499,-0.028083490207791],[-0.13653108477592,0.01772159896791,0.045763097703457],[-0.18512980639935,-0.062039207667112,-0.12072736769915]],[[-0.13593000173569,0.025869015604258,0.099926203489304],[-0.050654318183661,-0.082841984927654,0.07605367898941],[-0.086762025952339,-0.13030897080898,0.040059801191092]],[[0.077900066971779,-0.1843848079443,-0.0023103053681552],[0.042086008936167,0.029468473047018,0.022626385092735],[0.10993700474501,0.089931331574917,-0.30184149742126]],[[0.02099147811532,0.12601336836815,-0.1872299015522],[-0.046503037214279,-0.032859094440937,-0.041968494653702],[0.046870168298483,-0.16859810054302,0.23125649988651]],[[-0.029922047629952,0.061299994587898,-0.080049015581608],[-0.055082634091377,-0.11814147979021,-0.087975583970547],[-0.21252000331879,-0.10064928233624,0.031581554561853]],[[-0.12501819431782,-0.013060301542282,-0.12615293264389],[-0.064231529831886,-0.021966388449073,-0.14775790274143],[-0.11314308643341,-0.0081896912306547,-0.019599491730332]],[[-0.17227323353291,0.055671885609627,0.043875183910131],[-0.17732235789299,0.13100987672806,-0.18440105021],[-0.10826358944178,-0.13692700862885,0.10753957927227]],[[-0.0051872348412871,-0.21692618727684,0.0010076327016577],[0.031798932701349,0.025636933743954,0.048237316310406],[0.077373914420605,-0.0026148492470384,0.072264850139618]],[[0.24208602309227,0.23756514489651,-0.44248205423355],[-0.10959352552891,-0.11820327490568,-0.002862015273422],[-0.088747635483742,-0.19652651250362,0.019102066755295]],[[0.0017237059073523,-0.059350613504648,-0.052612990140915],[0.052399918437004,-0.10635329037905,0.066173829138279],[-0.12919537723064,-0.1022939234972,-0.094883047044277]],[[-0.042042106389999,-0.010602946393192,-0.054604236036539],[0.044004060328007,-0.067431628704071,0.041057728230953],[-0.032243356108665,0.19749087095261,-0.049583397805691]],[[-0.001683387090452,-0.051786135882139,-0.054794210940599],[0.014757540076971,-0.12241947650909,0.16572639346123],[0.19971939921379,0.020707525312901,-0.22071023285389]],[[-0.020203787833452,0.0057955803349614,0.034005768597126],[-0.065205976366997,-0.042045183479786,-0.16287924349308],[-0.0044306796044111,0.043266832828522,0.14126119017601]]],[[[0.0032656346447766,0.072013653814793,-0.053022541105747],[-0.042968135327101,-0.17930661141872,-0.0068898284807801],[-0.041878055781126,-0.071849666535854,-0.13875669240952]],[[0.020368264988065,-0.023925604298711,-0.012583648785949],[0.029258022084832,-0.078303761780262,0.00010331826342735],[0.0020027761347592,-0.036328501999378,-0.057558156549931]],[[-0.03759141638875,-0.014527627266943,0.10878105461597],[-0.003171595511958,-0.015508955344558,0.053349692374468],[0.077110446989536,0.0034599506761879,0.11756680905819]],[[-0.042275689542294,0.021444156765938,-0.08968123793602],[-0.09165957570076,-0.043941091746092,-0.035240642726421],[-0.16378717124462,-0.11303132772446,-0.17940899729729]],[[-0.017392242327332,0.021287254989147,0.13565228879452],[0.021386308595538,0.030183976516128,-0.032153647392988],[0.12990710139275,-0.0064007681794465,0.016917280852795]],[[-0.014407173730433,0.03328338637948,-0.044434517621994],[0.058397773653269,-0.18010909855366,-0.0070953201502562],[0.07715380191803,-0.044595126062632,-0.0085642384365201]],[[0.056839171797037,-0.026872860267758,-0.23078073561192],[0.0097937993705273,0.027682408690453,-0.13197086751461],[-0.034347750246525,0.017985804006457,-0.021053781732917]],[[-0.10207477211952,-0.088715940713882,-0.069022253155708],[0.023166075348854,-0.10440710186958,-0.050792001187801],[-0.0063291434198618,-0.13747514784336,-0.12177487462759]],[[-0.022926779463887,0.022025598213077,0.066986277699471],[0.07296135276556,-0.063515193760395,-0.036222983151674],[0.078676477074623,0.041888419538736,-0.0075523457489908]],[[-0.018948396667838,-0.087243653833866,-0.007070941850543],[-0.12821544706821,-0.16022920608521,-0.089368470013142],[-0.10462387651205,0.034410145133734,-0.071473501622677]],[[-0.0061149909161031,-0.091034688055515,0.037508260458708],[-0.10923820734024,-0.098261818289757,0.084810264408588],[-0.16337168216705,-0.082044117152691,0.042417570948601]],[[-0.058963615447283,-0.058437827974558,-0.16721399128437],[-0.0014367697294801,0.02761216647923,-0.044816382229328],[-0.045171987265348,-0.0077221603132784,0.010106372646987]],[[-0.18529926240444,-0.068938128650188,0.12267652153969],[-0.026530653238297,-0.12577727437019,-0.016287235543132],[0.024196671321988,-0.06401252746582,0.071848191320896]],[[-0.032392498105764,-0.1433798968792,0.058656085282564],[-0.11499336361885,-0.0014151306822896,0.0052421241998672],[-0.22124336659908,-0.047825198620558,-0.090586058795452]],[[-0.02132261171937,-0.010735816322267,-0.075164511799812],[0.094804413616657,0.004876967985183,0.010794095695019],[-0.049088105559349,0.007373187225312,0.063526943325996]],[[0.10930532962084,0.064452223479748,-0.2950476706028],[-0.041158225387335,0.17954610288143,-0.078089222311974],[0.033754445612431,-0.042410418391228,-0.0021597165614367]],[[0.041923366487026,0.0012921052984893,-0.07417169958353],[0.057193752378225,-0.0087414169684052,0.061305284500122],[-0.1123329102993,-0.10348084568977,-0.031880848109722]],[[0.072640098631382,0.012456007301807,-0.058074653148651],[-0.032065451145172,0.046045988798141,-0.19539184868336],[-0.15681505203247,-0.0016001462936401,-0.020884266123176]],[[0.013669181615114,-0.023668019101024,0.034405723214149],[-0.016235075891018,-0.0074092582799494,-0.050952814519405],[-0.13714137673378,0.074867770075798,-0.2150716483593]],[[-0.063454277813435,-0.018068395555019,-0.13174992799759],[-0.027976771816611,-0.094569139182568,-0.051192611455917],[-0.089624211192131,-0.11060454696417,-0.089686699211597]],[[-0.01820520684123,-0.026065081357956,-0.0064576384611428],[-0.099903516471386,-0.064144469797611,-0.10299282521009],[-0.017192307859659,-0.096702598035336,-0.07562094181776]],[[0.05790988728404,-0.049328438937664,0.046131782233715],[-0.050038985908031,0.019177751615644,-0.074807718396187],[0.027497466653585,-0.04540253803134,0.1314480304718]],[[-0.094943195581436,0.019839659333229,-0.053944300860167],[-0.018923006951809,-0.0011583043960854,0.061992529779673],[0.10542058944702,-0.0031301788985729,-0.085863433778286]],[[-0.059024818241596,-0.04603199660778,0.092675752937794],[0.059119578450918,-0.014032402075827,0.011166381649673],[0.060204930603504,-0.045249409973621,-0.092058032751083]],[[0.072352007031441,0.011036019772291,-0.13396210968494],[0.11565708369017,0.087133020162582,0.20046755671501],[-0.028611810877919,-0.053964518010616,0.03334417194128]],[[-0.020276224240661,0.028461156412959,-0.17106288671494],[0.055643118917942,-0.16172942519188,-0.056627076119184],[-0.031838558614254,-0.16511403024197,-0.28064420819283]],[[0.013120369054377,-0.12891641259193,0.093164332211018],[-0.12257272005081,0.062914565205574,-0.058483302593231],[-0.028186095878482,0.10737247765064,0.076159805059433]],[[0.0088330088183284,-0.031650882214308,0.014732494950294],[-0.11822443455458,-0.055505741387606,-0.15188474953175],[0.17033196985722,0.14099436998367,0.043321784585714]],[[-0.077835589647293,0.0037373062223196,-0.16361626982689],[-0.090792901813984,-0.16162164509296,0.071031205356121],[0.0060503990389407,-0.27130049467087,-0.11306294053793]],[[-0.052810933440924,-0.018798183649778,0.1045385748148],[0.05083354562521,-0.057986214756966,0.063556529581547],[-0.03149301186204,-0.081353209912777,-0.062759473919868]],[[-0.036692123860121,-0.16415753960609,-0.13710635900497],[0.018753495067358,-0.053634576499462,0.031523495912552],[0.03122553229332,-0.052335757762194,-0.035718388855457]],[[-0.076865114271641,0.065544754266739,-0.085252918303013],[-0.12451062351465,0.082249708473682,-0.027305990457535],[0.0057752965949476,-0.0009315075003542,0.053802207112312]]],[[[-0.17668110132217,-0.10178282111883,-0.026046419516206],[-0.02601320669055,-0.054615095257759,0.0044185598380864],[0.033388040959835,0.065481379628181,0.25238221883774]],[[-0.058588899672031,-0.035430215299129,0.022461995482445],[-0.064152829349041,0.0093676522374153,0.0079190572723746],[-0.0073342276737094,-0.0054842354729772,0.13039650022984]],[[0.036929212510586,0.020048497244716,0.11428729444742],[-0.037999581545591,-0.080661661922932,0.007234453689307],[0.071568682789803,0.03636609390378,-0.084416061639786]],[[-0.12642778456211,-0.045479577034712,-0.080329306423664],[0.018761852756143,0.014374886639416,-0.026574425399303],[-0.021302353590727,-0.00013347588537727,0.029358169063926]],[[-0.065667562186718,0.001785745494999,-0.03523912653327],[-0.028033832088113,0.027997618541121,0.081707209348679],[0.0024826761800796,0.0073310416191816,0.1140900850296]],[[0.08505542576313,-0.028832765296102,-0.0036498629488051],[-0.0030377900693566,0.060264732688665,0.026492565870285],[-0.062979198992252,-0.012237147428095,-0.19024427235126]],[[-0.023736748844385,-0.049114014953375,-0.10283243656158],[0.076115511357784,0.083833053708076,-0.0091904681175947],[-0.1743900924921,-0.0074711455963552,0.044589534401894]],[[-0.058205723762512,0.096411593258381,0.023084547370672],[-0.031818814575672,-0.016703622415662,-0.020001100376248],[0.062165964394808,0.22344210743904,0.036549285054207]],[[0.024658186361194,-0.029258726164699,0.015206556767225],[-0.012540703639388,-0.036176681518555,-0.031604595482349],[-0.042946331202984,0.035898834466934,0.087546169757843]],[[-0.09993552416563,-0.005316058639437,-0.015455108135939],[-0.072310879826546,-0.018365293741226,0.062174506485462],[-0.011965620331466,0.016049386933446,-0.047850981354713]],[[-0.073296241462231,0.016677360981703,-0.041373390704393],[-0.066440440714359,-0.00079791276948527,-0.10622670501471],[-0.018119508400559,0.026749113574624,0.12328610569239]],[[-0.060625988990068,-0.16905981302261,-0.19730956852436],[0.026012320071459,-0.0064501627348363,-0.20187379419804],[7.6481985161081e-05,0.12071017920971,0.090568862855434]],[[0.087688662111759,-0.096625298261642,0.013931806199253],[-0.085287816822529,0.0031226731371135,-0.084757171571255],[0.066246323287487,0.09753642231226,-0.032483961433172]],[[-0.026156296953559,-0.10890460759401,0.079346261918545],[0.047339875251055,-0.078701034188271,0.032337877899408],[0.083071328699589,0.12635958194733,-0.56038326025009]],[[-0.063063733279705,-0.020195364952087,-0.062101326882839],[0.02581150457263,-0.016718024387956,-0.024709673598409],[-0.043397057801485,0.052119676023722,0.15248620510101]],[[-0.040399648249149,0.055557060986757,-0.1055885180831],[-0.077927559614182,0.019532587379217,0.27850642800331],[-0.020314123481512,-0.09837444126606,-0.11636275798082]],[[0.026220377534628,0.10224279016256,-0.008327922783792],[0.059575859457254,-0.065499112010002,-0.25027599930763],[0.015306514687836,0.019630618393421,-0.031374607235193]],[[0.096140064299107,-0.12136050313711,0.06885190308094],[-0.073761105537415,-0.06385750323534,-0.1265157610178],[0.04995795711875,0.050388749688864,-0.079077735543251]],[[-0.087311662733555,0.0065347533673048,-0.030514569953084],[-0.12590979039669,0.042738318443298,0.0014948769239709],[-0.18389864265919,-0.04671747609973,0.13579455018044]],[[-0.21884801983833,0.025417644530535,-0.030296672135592],[-0.17969554662704,-0.11948844045401,0.076610133051872],[0.012962036766112,-0.092338725924492,0.26750302314758]],[[-0.012683466076851,-0.069572329521179,0.025686567649245],[-0.025748820975423,-0.050467379391193,-0.019932383671403],[-0.036139529198408,-0.067968100309372,0.17934504151344]],[[-0.0070420452393591,0.041488397866488,0.19826292991638],[-0.036313105374575,-0.054156452417374,0.046136446297169],[-0.15120854973793,0.096898511052132,-0.10684715211391]],[[0.010290346108377,-0.076999790966511,-0.042604964226484],[0.047343593090773,-0.025453427806497,0.012045525945723],[0.016283078119159,0.069797091186047,0.049598265439272]],[[-0.14314004778862,-0.042383838444948,0.046994753181934],[-0.10363185405731,0.0052162352949381,0.10082077234983],[0.12441550940275,0.062834888696671,0.037551701068878]],[[-0.15910977125168,-0.045903366059065,0.0042168986983597],[-0.075260818004608,-0.11910769343376,0.076031573116779],[0.04241431504488,-0.12638306617737,0.12437656521797]],[[0.010093586519361,0.02569255232811,-0.065658360719681],[-0.010321861132979,0.048180669546127,-0.032332796603441],[-0.1654699742794,0.0010761846788228,0.056551925837994]],[[0.074858665466309,-0.02537296898663,0.091277942061424],[-0.0040686074644327,-0.058647584170103,0.024138791486621],[0.10339107364416,-0.093082807958126,-0.12015465646982]],[[0.083375975489616,0.03054241463542,-0.030457492917776],[0.054576527327299,0.030593637377024,0.1567260324955],[-0.039575055241585,-0.11382731050253,0.079866357147694]],[[-0.18098011612892,-0.15960195660591,-0.17534367740154],[-0.02626715041697,-0.053680624812841,0.010530394501984],[0.034331541508436,0.0040896339341998,0.096514873206615]],[[-0.04121059179306,0.064306810498238,-0.0013188838493079],[0.0885940939188,0.065138280391693,-0.020728603005409],[0.051379159092903,-0.072784826159477,-0.089380450546741]],[[0.039023093879223,0.040067993104458,-0.11984776705503],[0.036625787615776,0.070610582828522,0.17623654007912],[-0.093692667782307,-0.086455382406712,0.0049003516323864]],[[-0.32090410590172,-0.20051111280918,0.094422087073326],[-0.078757964074612,-0.43184694647789,-0.22258932888508],[-0.084373384714127,-0.14128398895264,-0.18846619129181]]],[[[-0.011254927143455,0.035107970237732,0.018874477595091],[-0.15417304635048,0.082827024161816,0.14462292194366],[-0.088670812547207,-0.054931033402681,0.14524693787098]],[[0.048912357538939,0.012449235655367,-0.11481755971909],[0.0058123613707721,0.032572414726019,0.024050896987319],[0.11833887547255,-0.011213455349207,0.093623317778111]],[[-0.01127369236201,-0.03043894842267,0.033774945884943],[0.062504604458809,0.087913282215595,-0.11924995481968],[-0.054433085024357,-0.1042313799262,-0.034738928079605]],[[-0.061062965542078,0.083379574120045,0.10718104243279],[-0.15008705854416,-0.011611985974014,-0.070674546062946],[0.1219844892621,0.050838816910982,0.054708864539862]],[[-0.024870770052075,-0.0025837533175945,-0.19338183104992],[0.024774761870503,-0.0050527532584965,0.0012203340884298],[-0.0069389366544783,0.046552788466215,-0.057808429002762]],[[-0.035387393087149,-0.019521579146385,-0.0012913335813209],[0.020923558622599,-0.022845117375255,0.0026858828496188],[0.020975697785616,0.072356224060059,0.14165206253529]],[[-0.14639921486378,0.02785375341773,0.012163639068604],[0.046684678643942,0.010290971025825,-0.048019915819168],[0.029010813683271,-0.010239757597446,0.030249141156673]],[[0.024984795600176,0.042524557560682,0.021863114088774],[-0.042809192091227,0.089911818504333,0.013425592333078],[0.024897521361709,0.076511196792126,0.048308875411749]],[[-0.030075632035732,-0.1070324704051,0.0031198654323816],[0.039514638483524,-0.049418058246374,0.047688227146864],[0.018602326512337,-0.030334617942572,0.050438441336155]],[[-0.023969640955329,0.063380628824234,-0.005470406729728],[-0.0066714528948069,-0.1485932469368,0.045842118561268],[-0.11012891680002,-0.0049474486149848,0.019211990758777]],[[-0.018685886636376,0.088200107216835,0.066467747092247],[-0.076009280979633,-0.025760643184185,0.014994183555245],[0.044040713459253,0.060787782073021,-0.069719083607197]],[[-0.15783633291721,-0.017688643187284,-0.059453807771206],[0.0090450271964073,0.045752514153719,0.13524480164051],[0.045919474214315,-0.13787414133549,0.085249774158001]],[[-0.010241648182273,0.12032635509968,-0.036123663187027],[-0.066825516521931,-0.059821773320436,-0.022143539041281],[-0.08217442035675,0.064831100404263,0.059327114373446]],[[0.013066970743239,-0.067366950213909,0.018239535391331],[0.0809406042099,0.084622740745544,0.030746135860682],[-0.0014890482416376,0.019337695091963,0.08304850757122]],[[0.02711059898138,-0.018852496519685,-0.1391639560461],[0.03882509469986,-0.0046755657531321,-0.046737834811211],[0.015751598402858,0.028298767283559,0.01256837323308]],[[-0.021527096629143,0.064902268350124,0.019983096048236],[0.021712061017752,-0.011330462992191,-0.001037908368744],[-0.069096677005291,-0.10784576833248,-0.024163255468011]],[[0.0078012547455728,0.028349544852972,-0.05250982940197],[-0.056834880262613,0.096079424023628,-0.038688059896231],[0.096965715289116,0.071717247366905,0.054032422602177]],[[-0.033523626625538,0.13341388106346,0.13358607888222],[-0.12533563375473,-0.058658845722675,0.087067984044552],[0.0027987824287266,0.031664803624153,0.025759661570191]],[[-0.00088472780771554,-0.090027123689651,-0.0043507721275091],[-0.020859275013208,0.091207444667816,0.1058991253376],[-0.15876144170761,0.074034877121449,0.0761873498559]],[[-0.096822299063206,0.087638527154922,0.039083439856768],[-0.15636034309864,-0.040304157882929,0.23418015241623],[-0.048917401582003,-0.018218005076051,0.050989132374525]],[[-0.080798014998436,-0.11171329021454,0.0062422724440694],[0.071770243346691,0.033076632767916,0.0075650298967957],[0.052544943988323,0.0007481929496862,0.042809750884771]],[[0.090176045894623,0.046536065638065,0.0036316986661404],[0.063940450549126,-0.0068641258403659,0.019533809274435],[0.16457617282867,0.14166022837162,-0.10833368450403]],[[0.12553423643112,-0.029608240351081,0.032430026680231],[0.058450479060411,-0.01410595793277,-0.049697961658239],[0.093307629227638,0.13726557791233,-0.10233715176582]],[[-0.07238245010376,0.10565309971571,0.070519305765629],[-0.017003674060106,-0.039270527660847,0.12657028436661],[0.069785915315151,0.049455132335424,0.036206662654877]],[[-0.039982840418816,-0.048904705792665,-0.0030399360693991],[0.067808158695698,-0.01750204898417,0.052365485578775],[0.055219989269972,8.4549115854315e-05,0.045994222164154]],[[-0.021967962384224,0.046273753046989,-0.0104641020298],[-0.031332533806562,0.13925960659981,0.07840109616518],[0.065972901880741,0.067032650113106,0.038767214864492]],[[0.036798223853111,-0.0047824098728597,0.070268094539642],[-0.022974377498031,-0.12602107226849,0.060961958020926],[-0.0019381082383916,0.030914107337594,-0.077489711344242]],[[0.084318794310093,0.14910118281841,-0.032035700976849],[0.083947502076626,-0.013345409184694,-0.075514905154705],[-0.023745369166136,0.079628646373749,0.061359990388155]],[[-0.01315070874989,-0.035921435803175,-0.06954026222229],[-0.091854929924011,0.076144225895405,0.04393208399415],[0.029563512653112,0.11120133846998,0.076029725372791]],[[-0.026329815387726,0.12671980261803,0.11785496026278],[-0.054651722311974,-0.10071361809969,0.031914498656988],[-0.083301186561584,-0.080508463084698,-0.049955401569605]],[[-0.083460785448551,0.06243808567524,0.039459634572268],[-0.0713105276227,0.014833000488579,-0.0023414816241711],[-0.10817047953606,-0.019305197522044,-0.048231519758701]],[[-9.5588020485593e-06,-0.037160579115152,0.011985319666564],[-0.072696395218372,-0.19167178869247,-0.016532007604837],[-0.017210073769093,-0.10149528086185,-0.067135162651539]]],[[[-0.0093663176521659,-0.13729394972324,-0.059552151709795],[0.045447744429111,-0.034900657832623,-0.042485535144806],[-0.044814642518759,-0.025551676750183,0.0090166805312037]],[[0.0074299154803157,-0.0064261564984918,-0.033330041915178],[0.08676103502512,0.082945324480534,0.033050052821636],[0.041341044008732,-0.063385263085365,-0.11672832071781]],[[-0.15003053843975,0.055913701653481,-0.055463030934334],[-0.18930350244045,0.043339818716049,0.022174563258886],[-0.15909273922443,-0.051322314888239,-0.072019211947918]],[[-0.0017381760990247,-0.073496513068676,-0.050494063645601],[-0.01331465691328,0.021992506459355,-0.0055918963626027],[-0.030328258872032,0.031024131923914,0.017640298232436]],[[-0.056566901504993,0.016382593661547,0.041950173676014],[0.078239671885967,-0.007713230792433,-0.085697747766972],[0.058918576687574,-0.12297930568457,0.021914143115282]],[[0.095477096736431,-0.047589424997568,0.083242036402225],[-0.052977327257395,-0.052364129573107,-0.014171126298606],[-0.070286095142365,-0.021013921126723,0.083250030875206]],[[-0.056690994650126,-0.045382604002953,0.006093377713114],[-0.011692519299686,0.09435310959816,0.061756037175655],[0.05517141148448,-0.025013089179993,-0.084717474877834]],[[-0.096912182867527,-0.042318575084209,0.11758591234684],[-0.035875890403986,0.066018857061863,0.014505790546536],[-0.17380040884018,-0.042136341333389,-0.10409071296453]],[[-0.0092138918116689,-0.042787797749043,0.06040096282959],[0.0034728054888546,0.023266024887562,0.0833550542593],[0.0033912726212293,-0.018952265381813,-0.01683746650815]],[[-0.12586161494255,-0.020536590367556,-0.00014038411609363],[0.037048660218716,0.026133662089705,0.051834017038345],[0.18599556386471,-0.047646712511778,0.062615036964417]],[[-0.044861301779747,-0.024535411968827,-0.10612367093563],[-0.013090929947793,-0.052411794662476,-0.030939964577556],[-0.034284703433514,-0.028176907449961,0.12123274058104]],[[-0.027077024802566,0.10941052436829,-0.037550091743469],[-0.030229898169637,-0.011159348301589,-0.026155101135373],[0.094717927277088,0.091385863721371,-0.0077900737524033]],[[0.079230442643166,0.064935810863972,-0.032039899379015],[-0.0068450113758445,0.042115297168493,-0.010528855025768],[0.030336989089847,0.13599421083927,0.047918763011694]],[[-0.028783682733774,0.097163029015064,-0.047368966042995],[0.028620084747672,-0.045624583959579,-0.030966687947512],[-0.077329955995083,0.10443571954966,0.014106949791312]],[[0.017707007005811,0.030919648706913,-0.034776709973812],[0.01800219155848,0.025867311283946,-0.11862105876207],[0.042698062956333,-0.076151736080647,-0.0066788466647267]],[[0.038740765303373,0.021664870902896,0.11597570776939],[0.01132947485894,0.036579176783562,0.062937170267105],[0.039950899779797,-0.083909474313259,-0.049906797707081]],[[0.0049680569209158,-0.10236246883869,-0.014991668984294],[-0.019257184118032,-0.050183091312647,0.030611284077168],[0.08886943012476,0.16075766086578,0.022417662665248]],[[-0.15739619731903,-0.00069356878520921,0.026468057185411],[-0.020236242562532,-0.10208374261856,-0.034827973693609],[0.0026474057231098,0.05697675794363,-0.11432255804539]],[[-0.083776198327541,-0.064057819545269,-0.092170692980289],[0.069202542304993,0.0077578304335475,-0.13167162239552],[0.0037319473922253,0.064661785960197,-0.091294169425964]],[[-0.10554101318121,-0.151670768857,-0.1556111574173],[-0.062151305377483,-0.024815205484629,0.0093103805556893],[0.19265784323215,0.015380267053843,-0.11981762945652]],[[0.010611405596137,-0.06694707274437,-0.017188128083944],[0.060038365423679,-0.018479792401195,0.11477820575237],[-0.032739967107773,-0.017855288460851,0.047275643795729]],[[0.16199545562267,0.0088050048798323,-0.064569853246212],[-0.17377829551697,-0.26284772157669,0.051287971436977],[-0.11956679821014,-0.10053938627243,-0.094820193946362]],[[0.0021347044967115,-0.025711361318827,0.051993228495121],[-0.00022427721705753,-0.075226649641991,0.039933115243912],[-0.17132668197155,-0.091313935816288,0.06616073101759]],[[-0.057267099618912,-0.039747726172209,-0.038136508315802],[-0.068745218217373,-0.014379542320967,-0.033466871827841],[0.034812033176422,0.045959517359734,0.14208240807056]],[[-0.020105205476284,-0.017880152910948,-0.12021880596876],[0.10176283866167,-0.051127053797245,-0.21879516541958],[0.0092312749475241,-0.018001932650805,-0.16322784125805]],[[-0.038004979491234,-0.10740979760885,0.014280192553997],[0.010604419745505,0.094758577644825,-0.090629301965237],[-0.038276322185993,0.020202858373523,0.007901119068265]],[[0.011184556409717,-0.053430277854204,0.053969349712133],[-0.021004905924201,-0.066060088574886,0.018243866041303],[-0.057675942778587,0.022706096991897,0.096508078277111]],[[-0.027715180069208,0.16570080816746,0.038371425122023],[0.050763394683599,-0.04873750731349,-0.070279374718666],[-0.13015413284302,0.0054720854386687,-0.047319453209639]],[[0.047586835920811,0.026531454175711,0.015512694604695],[-0.023167978972197,0.09661228209734,0.020678797736764],[0.063925050199032,-0.038294158875942,-0.13044647872448]],[[-0.072009064257145,-0.076601505279541,-0.020755747333169],[0.0030142888426781,0.025756150484085,0.017887830734253],[-0.048261325806379,0.04073890671134,0.15575413405895]],[[-0.11695370078087,-0.013743700459599,0.001515691052191],[0.0099519258365035,-0.057536914944649,0.065771229565144],[-0.052163921296597,0.043247222900391,-0.10552611202002]],[[0.064818993210793,0.02078877389431,-0.070560052990913],[0.048334691673517,0.00070790841709822,0.015081916935742],[0.064815431833267,0.048718363046646,0.066297620534897]]],[[[0.079490646719933,0.018910644575953,-0.057162135839462],[-0.081420600414276,-0.05939919501543,-0.063635773956776],[0.071504108607769,-0.029695235192776,-0.08127598464489]],[[-0.060229986906052,0.015365940518677,-0.12303767353296],[0.11116459220648,0.023840585723519,0.058754909783602],[-0.077081762254238,-0.041886124759912,-0.011926737613976]],[[-0.015762031078339,-0.060914222151041,0.064520716667175],[-0.010715391486883,-0.029171885922551,0.22789108753204],[0.016011802479625,-0.051320396363735,-0.062818683683872]],[[0.11783850193024,-0.10456050187349,0.16857433319092],[-0.09839203953743,-0.54796475172043,-0.044686436653137],[0.12846612930298,0.091579429805279,-0.019978232681751]],[[0.040573440492153,-0.040222235023975,0.0054146605543792],[-0.010422351770103,0.020576884970069,0.041453137993813],[-0.026667766273022,-0.025280065834522,-0.036405742168427]],[[-0.12725456058979,-0.013501980341971,0.072255164384842],[-0.12910059094429,0.11266081035137,-0.093693971633911],[-0.36352118849754,0.46972665190697,-0.16502317786217]],[[-0.02987608127296,0.11308598518372,0.076027341187],[-0.069524854421616,-0.032933715730906,-0.036146968603134],[0.051212809979916,-0.021426187828183,-0.036506518721581]],[[0.070867106318474,-0.088848292827606,0.14640845358372],[-0.10437273979187,-0.11304281651974,0.069508999586105],[-0.0064945719204843,0.061122659593821,-0.0054433490149677]],[[-0.032100439071655,0.13176277279854,0.15706239640713],[0.017212849110365,0.059945926070213,0.020201213657856],[-0.01132396236062,0.045514978468418,0.079680703580379]],[[0.13597939908504,-0.066729880869389,-0.075336597859859],[0.00069155992241576,0.041443932801485,0.051984302699566],[-0.10939383506775,-0.015617785975337,-0.046217307448387]],[[-0.070018403232098,0.13879331946373,-0.029534475877881],[-0.0058560259640217,0.047056518495083,-0.01837900839746],[0.069081716239452,-0.011592144146562,-0.19954174757004]],[[-0.053899511694908,-0.066338121891022,-0.13276273012161],[0.1758726388216,-0.058074746280909,-0.049620985984802],[0.076642341911793,-0.13940721750259,0.0094781676307321]],[[-0.029757300391793,-0.047139689326286,-0.0049059661105275],[0.03382983058691,-0.035492468625307,-0.039083916693926],[-0.11015701293945,0.011498818174005,-0.09394571185112]],[[0.13762827217579,-0.099790327250957,0.020925454795361],[-0.033764082938433,-0.38173508644104,0.021464953199029],[-0.090856827795506,0.16281071305275,0.10066165030003]],[[0.10069237649441,-0.11072213947773,0.11162611842155],[-0.01665573194623,-0.02223015204072,0.018111554905772],[-0.025492589920759,0.11346764862537,0.0081469267606735]],[[-0.051443550735712,-0.20297539234161,-0.15924981236458],[0.026099260896444,0.0013702966971323,0.059255331754684],[-0.082449294626713,0.16091883182526,-0.11351256072521]],[[-0.082956083118916,0.17573407292366,0.11749038845301],[0.1151167973876,0.0059069478884339,-0.53643929958344],[0.16165138781071,0.077826999127865,-0.097368367016315]],[[-0.071924448013306,-0.10452412068844,-0.030877014622092],[0.12015429884195,0.12054900079966,-0.1590891033411],[-0.073078870773315,-0.18770292401314,0.18659593164921]],[[-0.13936023414135,-0.065531142055988,0.032238896936178],[-0.13303895294666,-0.029573298990726,0.041445698589087],[0.1212314888835,-0.039884958416224,0.036720003932714]],[[0.017122071236372,0.010266857221723,-0.065371610224247],[0.040199402719736,-0.10303052514791,0.07809329777956],[-0.010958331637084,-0.01441599894315,0.065353140234947]],[[-0.075219482183456,-0.048857562243938,-0.09372267127037],[-0.020126944407821,-0.011620012111962,0.028468694537878],[-0.17886930704117,-0.21571843326092,0.0011158273555338]],[[-0.095470666885376,-0.12630693614483,0.0063306363299489],[0.029922032728791,0.06715040653944,0.15135525166988],[-0.026882721111178,0.059166017919779,-0.14542606472969]],[[0.045928865671158,-0.052905298769474,-0.025567328557372],[-0.04629097878933,0.0147355934605,0.026780301705003],[-0.076527193188667,0.089548416435719,0.009394196793437]],[[-0.010411548428237,0.015049076639116,-0.030266718938947],[0.0046439301222563,-0.071830205619335,0.11866956949234],[-0.23031705617905,-0.04338675737381,0.068522833287716]],[[-0.0041576414369047,0.048641070723534,0.024875639006495],[0.015121200121939,-0.042932588607073,-0.099801003932953],[0.0031845504418015,-0.068959526717663,-0.073309987783432]],[[0.067107781767845,-0.11549077928066,0.081289567053318],[0.077622294425964,0.16275146603584,-0.29079332947731],[-0.012983270920813,-0.16706196963787,-0.018785642459989]],[[-0.029758485034108,0.033655323088169,0.048259999603033],[-0.0083494307473302,0.045806787908077,-0.056596219539642],[-0.013305114582181,0.042078047990799,-0.022013844922185]],[[-0.056817121803761,0.082457572221756,-0.14120097458363],[0.077882081270218,0.23987127840519,0.17476938664913],[-0.21695405244827,-0.16290774941444,-0.018707742914557]],[[-0.016515614464879,0.125961124897,-0.026498813182116],[-0.04265371710062,-0.068854451179504,-0.0099932886660099],[0.055250976234674,0.029463553801179,-0.12500512599945]],[[0.028565371409059,-0.066053539514542,0.02414240129292],[0.089654594659805,-0.049269013106823,0.017238596454263],[0.041163459420204,0.066093720495701,0.15289486944675]],[[0.3254876434803,0.046227637678385,-0.14183673262596],[-0.28429952263832,-0.15205685794353,-0.12656697630882],[0.11951110512018,0.017193119972944,0.16820964217186]],[[-0.0035731149837375,0.026003234088421,-0.038336586207151],[-0.14436073601246,-0.11194329708815,-0.092652715742588],[-0.028870658949018,0.098955571651459,0.061569582670927]]],[[[0.050081703811884,-0.052804056555033,-0.0085965180769563],[0.01657977886498,0.006343552377075,-0.10004036128521],[0.029445189982653,-0.036794167011976,-0.054285310208797]],[[0.0099625447764993,-0.039586633443832,-0.019339337944984],[-0.04438342154026,-0.027541780844331,-0.028930587694049],[0.039803482592106,0.025465780869126,0.051769472658634]],[[-0.21362526714802,-0.040404330939054,-0.00088774226605892],[-0.036333475261927,0.09893573820591,-0.014822631143034],[-0.0083451354876161,0.11125767976046,-0.012387157417834]],[[-0.028525494039059,0.068550273776054,0.08039204031229],[-0.080971337854862,-0.042871464043856,-0.067929923534393],[-0.079251311719418,-0.011233683675528,0.028890077024698]],[[-0.060128822922707,-0.02096052095294,-0.034162096679211],[0.030377572402358,0.0042922501452267,0.024165086448193],[0.085285291075706,0.0719363540411,0.0013537597842515]],[[-0.092439688742161,-0.08464003354311,-0.085443496704102],[-0.07983011752367,0.15149421989918,-0.029270440340042],[-0.077320948243141,-0.0043484852649271,-0.051534533500671]],[[-0.13901548087597,0.011797458864748,-0.042241994291544],[0.11760596930981,-0.052064556628466,-0.058274209499359],[0.036635681986809,-0.09356451779604,-0.055026642978191]],[[-0.022698849439621,0.058680322021246,0.011192289181054],[-0.081257179379463,0.033149834722281,-0.0087169762700796],[-0.088180065155029,0.13245451450348,0.020577972754836]],[[0.01341107301414,-0.067296966910362,-0.11321659386158],[-0.0083707803860307,0.062113258987665,-0.031444147229195],[0.069929048418999,-0.030058985576034,0.0071213594637811]],[[0.10781574249268,0.053185630589724,-0.15054523944855],[0.037950403988361,0.095203176140785,-0.11729529500008],[0.024924166500568,0.035114381462336,0.083287753164768]],[[0.0066487682051957,0.049895010888577,-0.084537826478481],[0.02649987116456,0.024400133639574,-0.066812209784985],[-0.10298793762922,0.065730646252632,-0.01443749666214]],[[-0.11831050366163,-0.014419845305383,0.077400200068951],[-0.0048562148585916,-0.052708316594362,-0.15685647726059],[0.048637084662914,-0.13151226937771,-0.13089399039745]],[[-0.0565005838871,0.0083681577816606,0.011486694216728],[0.11235117167234,0.018246592953801,-0.17586077749729],[0.021060789003968,0.097190596163273,0.064703144133091]],[[-0.0046558049507439,0.087729722261429,0.12971924245358],[-0.028694527223706,-0.0063605736941099,0.022765653207898],[-0.061898525804281,-0.096183076500893,-0.047986038029194]],[[0.024430509656668,-0.068675257265568,-0.043031014502048],[0.072121746838093,0.094446815550327,-0.029596099629998],[0.0361049734056,0.028022052720189,0.066277012228966]],[[0.075643226504326,-0.15459927916527,0.029145203530788],[-0.01688570715487,0.036954462528229,-0.063323989510536],[-0.057657368481159,-0.014532747678459,-0.03861828148365]],[[-0.023065943270922,0.10068342089653,-0.0079535590484738],[-0.050974663347006,-0.15215964615345,-0.14625954627991],[-0.10650939494371,-0.031236262992024,-0.018185270950198]],[[-0.011813634075224,-0.0061061698943377,-0.026944138109684],[0.021739112213254,-0.017380924895406,-0.0040083564817905],[-0.12243116647005,-0.011656610295177,-0.049907129257917]],[[-0.01069526001811,0.078432723879814,-0.088242471218109],[-0.16853711009026,-0.10521287471056,0.11480059474707],[-0.0076778423972428,-0.052301485091448,0.020512646064162]],[[0.02446404658258,0.084166951477528,0.07895165681839],[-0.030988605692983,-0.026400720700622,-0.0046777878887951],[-0.091378279030323,0.04348486289382,0.032640229910612]],[[-0.015041009522974,-0.072528913617134,-0.12817370891571],[-0.12135462462902,-0.06522274762392,-0.056592348963022],[0.0018948495853692,0.062710456550121,0.084600999951363]],[[-0.15003432333469,-0.073569729924202,-0.15603265166283],[0.019910421222448,-0.011469137854874,0.12217903882265],[0.023544861003757,0.039108362048864,0.23264217376709]],[[0.10607179999352,-0.14344455301762,-0.078120209276676],[0.030723080039024,-0.074253782629967,-0.1206169128418],[-0.072433933615685,-0.10404397547245,0.052649606019258]],[[-0.061021126806736,0.072789207100868,0.090541794896126],[0.055852524936199,0.12540470063686,0.087693803012371],[-0.17129094898701,0.0018465697066858,-0.066527388989925]],[[-0.060180094093084,0.0080485856160522,-0.019475666806102],[0.076594151556492,-0.04765235260129,0.12931475043297],[0.048901379108429,-0.040103185921907,0.065806463360786]],[[0.053723476827145,0.012022212147713,-0.0010159744415432],[-0.0050396285951138,0.045550495386124,0.06838933378458],[0.071528099477291,-0.078611746430397,-0.072105102241039]],[[-0.00059681659331545,0.016100751236081,0.16488184034824],[-0.071337573230267,0.0065582785755396,0.043848354369402],[-0.050365317612886,0.022222159430385,-0.1560935229063]],[[0.086042284965515,0.044083666056395,-0.020321050658822],[0.013773868791759,0.12908670306206,-0.0060394965112209],[0.13802921772003,-0.060636881738901,0.23273174464703]],[[0.01719931140542,-0.0052597825415432,-0.020925914868712],[-0.066120997071266,-0.24117344617844,-0.13383142650127],[0.0015080668963492,-0.092050433158875,-0.055234327912331]],[[-0.042497586458921,0.11000542342663,0.1072811037302],[0.028591651469469,-0.0028472228441387,0.045689530670643],[-0.015304028987885,-0.1387577354908,-0.07924522459507]],[[-0.022839583456516,0.075183756649494,-0.068231180310249],[0.040337447077036,0.056259129196405,0.019435402005911],[0.0016375505365431,0.026657313108444,0.024878909811378]],[[-0.037155222147703,0.00012621752102859,0.078510731458664],[-0.12363359332085,-0.18435357511044,0.054052960127592],[0.00087415694724768,-0.051686584949493,-0.089958064258099]]],[[[-0.083977550268173,-0.10027524828911,-0.06023783609271],[-0.05711217597127,0.047992717474699,0.034175477921963],[-0.064985036849976,0.02878512442112,0.074292406439781]],[[-0.011055331677198,-0.067299604415894,0.029506789520383],[-0.0089333197101951,-0.019320391118526,-0.057437460869551],[-0.034578930586576,-0.14264477789402,-0.027591122314334]],[[0.042397055774927,0.17552177608013,0.070820577442646],[0.10351550579071,0.0038820523768663,-0.050598908215761],[0.01099868863821,-0.092740163207054,-0.042246401309967]],[[-0.096430771052837,-0.072220601141453,0.032189320772886],[-0.044061958789825,0.035708650946617,0.040380746126175],[-0.11968858540058,-0.030831012874842,-0.020077772438526]],[[0.023546485230327,-0.05332475528121,0.074771098792553],[0.13116717338562,0.077784635126591,0.11848832666874],[0.16616751253605,0.047910701483488,0.004103769082576]],[[-0.086105026304722,-0.13201586902142,0.024081146344543],[-0.10746870934963,0.018302028998733,-0.095375597476959],[-0.063679784536362,-0.01456852722913,0.04572993516922]],[[-0.062990836799145,-0.021830473095179,-0.17483954131603],[0.05387506633997,-0.097736775875092,0.01683509349823],[-0.20073626935482,0.039374615997076,-0.084448099136353]],[[0.090260982513428,-0.020396711304784,-0.074104607105255],[0.033996623009443,0.017091106623411,-0.10347555577755],[-0.067337341606617,0.058695767074823,0.020578395575285]],[[0.035525180399418,-0.082312926650047,-0.042431633919477],[-0.048652742058039,0.0010905486997217,0.10613219439983],[0.013414335437119,0.1147003993392,-0.0014941531699151]],[[-0.095015294849873,0.030040124431252,-0.062799751758575],[-0.008731254376471,-0.053836300969124,-0.0042549790814519],[-0.020824048668146,0.058170307427645,-0.02440826408565]],[[0.021903872489929,-0.044437553733587,-0.0081340745091438],[0.085409909486771,0.035233478993177,0.027305647730827],[-0.038336351513863,0.016977051272988,0.037014748901129]],[[-0.17668260633945,0.037362549453974,0.1188582777977],[-0.18248599767685,-0.050651468336582,-0.10585155338049],[-0.079142704606056,0.014799990691245,0.056241482496262]],[[0.054295301437378,-0.025508929044008,0.012833907268941],[0.03949935734272,-0.033795814961195,-0.014705545268953],[0.0016840670723468,-0.043759014457464,0.013388737104833]],[[0.024485286325216,-0.10141924023628,-0.082115523517132],[0.040614549070597,-0.090499050915241,-0.10440076887608],[0.01485591288656,0.10730655491352,-0.014614671468735]],[[-0.014307872392237,-0.032365828752518,0.089799493551254],[-0.092804834246635,0.033333774656057,-0.017241993919015],[0.0035383473150432,-0.018563903868198,0.036457944661379]],[[-0.18885168433189,-0.11298133432865,-0.035575844347477],[-0.14220541715622,-0.11611248552799,-0.026743894442916],[-0.026483928784728,-0.1242842450738,-0.04481053352356]],[[0.085871055722237,-0.032376915216446,0.077428139746189],[0.097535200417042,-0.12988947331905,0.042033519595861],[-0.11917172372341,-0.015701280906796,0.02579129114747]],[[-0.022046566009521,0.012981592677534,0.0046647284179926],[-0.030917372554541,-0.041089054197073,0.09940318018198],[-0.088816218078136,-0.081048101186752,-0.14891481399536]],[[-0.086482189595699,-0.17690771818161,0.12497272342443],[0.10915152728558,-0.052457246929407,0.032468974590302],[0.07349968701601,0.12371846288443,0.038662787526846]],[[-0.05996810272336,0.015983754768968,-0.0053129331208766],[-0.03594421222806,0.059614133089781,-0.0022201908286661],[-0.072491571307182,0.10169323533773,0.057736396789551]],[[-0.10586470365524,0.032367330044508,-0.20131833851337],[-0.083982400596142,-0.0033312551677227,0.01898224465549],[-0.14146769046783,0.036983784288168,0.078979276120663]],[[0.077856749296188,0.04419631883502,-0.049010880291462],[0.061667438596487,-0.1105972006917,0.017909875139594],[-0.029016779735684,-0.030263101682067,-0.076863259077072]],[[0.069820821285248,0.038043148815632,-0.047920912504196],[-0.02906484156847,-0.074618943035603,-0.063260987401009],[-0.0022568884305656,-0.08610088378191,0.016174020245671]],[[-0.080635778605938,0.016410512849689,0.022969903424382],[-0.13848555088043,-0.040477905422449,-0.081294447183609],[-0.12948603928089,-0.092493496835232,-0.13825760781765]],[[0.011734987609088,-0.12171330302954,0.06613951921463],[-0.01913825981319,-0.14924564957619,0.066747084259987],[0.002191120525822,-0.017060518264771,-0.046612590551376]],[[0.080690272152424,-0.048088606446981,0.028692929074168],[-0.021426107734442,-0.051933795213699,-0.037905514240265],[-0.021632136777043,-0.059094432741404,-0.012914247810841]],[[0.074212498962879,-0.026145534589887,-0.025369772687554],[0.066754408180714,0.028030725196004,-0.039412517100573],[0.017398463562131,-0.084937117993832,-0.056639444082975]],[[0.021543014794588,0.011961778625846,-0.11647890508175],[0.056074596941471,-0.048257112503052,-0.11813219636679],[0.071252658963203,-0.12196633219719,-0.045235246419907]],[[0.066033132374287,-0.14966505765915,0.046326853334904],[-0.034920070320368,0.0824009552598,0.025037089362741],[-0.089488424360752,-0.16513456404209,-0.04377119243145]],[[0.076033212244511,0.0097148083150387,0.053182866424322],[-0.059039071202278,0.032532744109631,-0.048206608742476],[-0.018174374476075,-0.029333794489503,-0.028318842872977]],[[-0.24221663177013,0.026443688198924,-0.095068462193012],[-0.046743832528591,0.0058285449631512,0.071902759373188],[0.098661489784718,-0.086202137172222,0.11585879325867]],[[-0.14197152853012,-0.10537973046303,-0.028615120798349],[-0.25537165999413,-0.098182670772076,0.034277949482203],[-0.0066747390665114,-0.091869540512562,-0.16326603293419]]],[[[-0.095332913100719,-0.070738837122917,-0.0018631510902196],[-0.038802418857813,-0.060847502201796,-0.056377954781055],[0.0055874367244542,0.057786341756582,-0.11132979393005]],[[-0.068684965372086,0.075410902500153,-0.03461791947484],[-0.003823796287179,-0.081877514719963,-0.00041204947046936],[0.078700609505177,0.0088119823485613,-0.063883699476719]],[[0.13174222409725,-0.082338161766529,-0.064990900456905],[0.0039890203624964,-0.054133970290422,0.13219167292118],[-0.046322289854288,0.043560512363911,-0.24065621197224]],[[0.00022367741621565,0.059222534298897,0.038026574999094],[-0.099604874849319,-0.01679996214807,-0.0096942568197846],[-0.016553524881601,-0.083750024437904,-0.029942886903882]],[[-0.084112264215946,-0.02200891636312,-0.029681449756026],[0.01806147582829,-0.0094053251668811,0.014692110940814],[-0.0056654782965779,-0.0045008501037955,-0.008597694337368]],[[-0.034274663776159,-0.084324680268764,0.050730794668198],[0.0066160662099719,-0.030412266030908,0.039233189076185],[0.055344205349684,0.013894309289753,-0.023468727245927]],[[0.13966888189316,0.022591667249799,-0.1406038403511],[-0.054528925567865,-0.12046398222446,0.10537770390511],[-0.046205218881369,-0.076801441609859,-0.13173526525497]],[[0.15315869450569,-0.20511557161808,0.003063652664423],[0.054212685674429,-0.0072734644636512,-0.00080604007234797],[-0.039031982421875,0.064295947551727,0.20475476980209]],[[-0.0042886552400887,0.14186173677444,-0.059574730694294],[-0.22058887779713,0.0090842405334115,0.080514274537563],[0.061014965176582,-0.049778807908297,-0.14634029567242]],[[-0.017670087516308,0.075649723410606,0.0045856591314077],[0.072413735091686,-0.168382614851,0.060099493712187],[0.080894730985165,-0.17236298322678,0.046427246183157]],[[-0.051897950470448,0.034541293978691,0.013033516705036],[-0.0064987223595381,-0.095747783780098,0.1264556646347],[-0.045008443295956,-0.12279907613993,0.078087255358696]],[[0.0056073679588735,0.026033937931061,-0.0062584797851741],[-0.028495218604803,-0.30728641152382,-0.062745735049248],[-0.0164556466043,-0.036325216293335,0.010267800651491]],[[-0.037843581289053,-0.097401365637779,-0.06410788744688],[-0.066288158297539,-0.12011545151472,0.05429358035326],[0.066835932433605,-0.0059388820081949,0.052061799913645]],[[-0.026386700570583,0.065925933420658,-0.08943235874176],[-0.078442797064781,-0.025304194539785,-0.02079650759697],[-0.06182686984539,-0.022081699222326,0.092463217675686]],[[-0.012270614504814,0.0011305151274428,0.031606089323759],[0.063285931944847,-0.016721939668059,0.015001461841166],[-0.01069980673492,0.056278299540281,-0.028948448598385]],[[-0.0052065216004848,-0.23319885134697,-0.0539286211133],[0.086512811481953,0.11840806156397,-0.022313630208373],[-0.045767109841108,-0.059878438711166,-0.034696947783232]],[[0.012603565119207,0.02050019800663,-0.083788901567459],[0.037562634795904,0.10307168960571,0.15306793153286],[0.0147495996207,-0.18566578626633,-0.13508242368698]],[[0.027018429711461,-0.1318674236536,-0.066486954689026],[0.069025263190269,-0.073732286691666,0.11395359784365],[-0.0097447317093611,-0.0060613211244345,0.14667363464832]],[[-0.042265448719263,0.058442234992981,-0.031467974185944],[-0.14686407148838,0.21288087964058,0.10943370312452],[-0.068967781960964,-0.19575645029545,0.12939256429672]],[[0.024056544527411,0.038474041968584,0.0050123827531934],[-0.12269846349955,0.071506910026073,-0.08549590408802],[-0.0084195481613278,-0.11900606751442,-0.01488083973527]],[[0.040744993835688,0.053035244345665,0.10776019096375],[0.071613766252995,-0.12017803639174,0.0091718109324574],[0.028001807630062,0.043114520609379,-0.051361881196499]],[[0.0064142178744078,0.026972698047757,-0.0096068838611245],[-0.12298125773668,0.051519598811865,-0.037096600979567],[0.076460286974907,-0.07298943400383,0.0070517845451832]],[[0.044968042522669,-0.054767094552517,-0.0012378082610667],[-0.10411790758371,0.17538899183273,-0.16368870437145],[-0.012813904322684,-0.089104749262333,-0.063565000891685]],[[-0.0025479621253908,-0.026866871863604,0.067836217582226],[0.065986439585686,0.071294501423836,-0.081289894878864],[-0.037931181490421,-0.11491576582193,-0.034528646618128]],[[0.031931437551975,-0.05427323281765,-0.069764770567417],[-0.16118939220905,-0.051319725811481,0.055849816650152],[0.025381878018379,0.034978594630957,-0.18506217002869]],[[-0.12699757516384,0.055503413081169,0.11117505282164],[-0.083781033754349,-0.093556739389896,-0.063257120549679],[0.007951776497066,0.18151830136776,-0.033419854938984]],[[0.015485790558159,-0.051886241883039,0.0035075715277344],[0.0074951439164579,-0.01927107013762,0.10536538809538],[-0.05141456797719,-0.018583610653877,-0.041055999696255]],[[-0.052791357040405,0.060230724513531,0.19825075566769],[-0.11839704215527,0.0025019529275596,-0.1456750780344],[0.0073123537003994,0.18560038506985,-0.14785625040531]],[[0.0074940663762391,0.092251598834991,0.022501461207867],[0.023975716903806,-0.077517308294773,-0.027515241876245],[-0.023040778934956,-0.14444632828236,-0.14422821998596]],[[0.050068691372871,-0.034320265054703,0.076583214104176],[-0.079242520034313,-0.086724139750004,0.017833663150668],[-0.047978892922401,0.032252043485641,0.021490104496479]],[[-0.28943964838982,0.11013273149729,-0.10606673359871],[0.16164311766624,0.02240221388638,-0.068085171282291],[-0.043325629085302,0.097167238593102,0.053373780101538]],[[-0.052311819046736,-0.032167378813028,-0.058935973793268],[0.045813843607903,0.081351295113564,0.040293734520674],[-0.081209532916546,-0.093774482607841,0.025717413052917]]],[[[-0.064987912774086,0.010957554914057,-0.14983674883842],[0.0039764945395291,-0.060719460248947,-0.050156697630882],[0.0093944892287254,0.097298070788383,0.11474587023258]],[[-0.017512423917651,0.0034908298403025,0.030806375667453],[-0.043353419750929,0.040080029517412,-0.0063845845870674],[-0.045065436512232,4.1883427911671e-05,-0.0048186811618507]],[[0.13696993887424,0.078184925019741,0.033498737961054],[0.063081726431847,-0.075685374438763,-0.041971400380135],[-0.12302682548761,-0.31671619415283,0.18201267719269]],[[-0.021255245432258,-0.25011068582535,-0.090181685984135],[-0.034276038408279,-0.068258322775364,-0.038413889706135],[0.13556128740311,0.082085140049458,0.15715458989143]],[[0.064817510545254,-0.025962030515075,0.0063986931927502],[-0.017474606633186,0.095257237553596,-0.0097439177334309],[-0.029135579243302,-0.032986931502819,0.002339132130146]],[[0.018842004239559,0.17610551416874,0.099267609417439],[0.11074995994568,0.2084224820137,-0.0068770218640566],[-0.059426542371511,-0.07165814191103,-0.29206496477127]],[[0.08745364099741,0.044985547661781,-0.10005813091993],[-0.14894250035286,0.01494103949517,-0.075348220765591],[0.022011183202267,0.18173535168171,0.068410165607929]],[[0.056397546082735,-0.20094141364098,0.0092617981135845],[0.16489903628826,-0.090038806200027,-0.040187515318394],[0.14545251429081,-0.092314757406712,0.12068961560726]],[[0.061433095484972,0.002979704644531,-0.0071097956970334],[-0.056563716381788,0.0066947392188013,-0.026165068149567],[-0.16280402243137,0.050903312861919,-0.052933618426323]],[[0.16741529107094,-0.21661326289177,0.10181097686291],[-0.012805595993996,-0.0081875529140234,0.072019830346107],[0.077295482158661,-0.19465978443623,0.028418811038136]],[[-0.0465407371521,0.061930719763041,0.085893765091896],[0.049355566501617,0.055995907634497,0.051307998597622],[-0.016062799841166,-0.15004037320614,-0.30703836679459]],[[0.05514182522893,0.091640785336494,-0.0048735179007053],[-0.24011223018169,-0.18894486129284,-0.088541455566883],[0.083529971539974,-0.1770752966404,0.21910297870636]],[[0.14855580031872,-0.00862408708781,0.027307027950883],[-0.13945958018303,0.050563015043736,-0.06415893137455],[-0.0069492757320404,0.080198027193546,-0.042785085737705]],[[-0.068619027733803,-0.020432215183973,-0.033321402966976],[0.097008727490902,-0.081976093351841,-0.11356540024281],[-0.094872541725636,-0.037427891045809,0.080388434231281]],[[-0.049839902669191,0.083762511610985,-0.014428593218327],[-0.042916525155306,-0.0047226822935045,0.11430655419827],[0.057601001113653,-0.066359244287014,0.017029620707035]],[[-0.16632488369942,-0.097579903900623,0.029273128136992],[0.023894907906651,-0.047776211053133,0.0056127049028873],[0.13828434050083,-0.092861585319042,0.072478488087654]],[[0.062268689274788,0.035674288868904,-0.090563051402569],[-0.20479235053062,0.032534014433622,0.1047750711441],[-0.068896554410458,0.032098617404699,0.094460621476173]],[[-0.19250021874905,0.01388066727668,-0.12998247146606],[-0.042220618575811,-0.029097523540258,0.012896009720862],[0.062678061425686,0.028433436527848,0.23521272838116]],[[-0.0026144168805331,-0.047833003103733,-0.043312478810549],[0.089207753539085,-0.047079261392355,0.021247986704111],[0.0081312293186784,-0.027226915583014,-0.060754604637623]],[[0.018114920705557,-0.1706710755825,-0.14408451318741],[-0.018292298540473,-0.077981382608414,-0.11700636893511],[0.10833331942558,0.092235028743744,-0.12020978331566]],[[0.027656549587846,-0.052401762455702,-0.064619958400726],[0.022907102480531,-0.079589240252972,-0.13158808648586],[0.057613510638475,0.084938034415245,0.087360456585884]],[[0.24365167319775,0.09299410879612,0.17443434894085],[-0.14339753985405,0.034857410937548,-0.057814884930849],[-0.25131261348724,-0.30161169171333,-0.059477761387825]],[[0.043734785169363,0.070063106715679,-0.1194645985961],[0.036188744008541,0.020811000838876,0.13088254630566],[-0.062241096049547,-0.056634776294231,0.13523738086224]],[[-0.19078503549099,-0.016714537516236,-0.086044989526272],[-0.026023322716355,-0.093873538076878,-0.15354770421982],[0.0002183507749578,0.017860792577267,0.083452850580215]],[[-0.097107402980328,0.081411756575108,-0.031474363058805],[-0.20947755873203,-0.12503018975258,-0.11234219372272],[-0.051720846444368,0.12190668284893,0.12770828604698]],[[-0.065904282033443,0.033345825970173,-0.14743854105473],[-0.0058378372341394,0.0005890786414966,-0.057885117828846],[0.10451856255531,0.10909979045391,0.0026263175532222]],[[0.025748612359166,-0.024433340877295,-0.10437411814928],[-0.014342409558594,-0.00098328816238791,-0.066123560070992],[-0.034495484083891,0.10001689940691,0.062967538833618]],[[-0.018369849771261,0.16203352808952,0.10724268853664],[0.0039568045176566,0.12155616283417,-0.044706903398037],[-0.12139531224966,0.19586712121964,-0.29174813628197]],[[0.025235373526812,0.075731076300144,0.018733961507678],[-0.0189438611269,0.029588347300887,-0.00089798483531922],[0.012983121909201,0.013050493784249,0.030969429761171]],[[0.029184276238084,-0.091379441320896,-0.024386290460825],[0.05438182875514,0.063927114009857,-0.051710017025471],[0.077232405543327,-0.060062229633331,0.036393016576767]],[[-0.13112382590771,0.020685166120529,0.026834430173039],[-0.06812958419323,-0.089046224951744,0.037812605500221],[0.18310838937759,0.1446168422699,0.064597107470036]],[[-0.06822531670332,-0.13286472856998,0.0072888717986643],[0.015006183646619,-0.046688120812178,-0.049434777349234],[0.10321497917175,0.082516901195049,-0.030666390433908]]],[[[-0.04881302267313,-0.12910895049572,-0.10881780087948],[0.0016687260940671,0.015577341429889,-0.0086146518588066],[0.017783647403121,-0.23516462743282,0.14638774096966]],[[0.042563676834106,0.012713322415948,0.010467504151165],[-0.078992687165737,-0.02138064801693,-0.056435946375132],[0.051738496869802,-0.076354764401913,0.023272022604942]],[[0.032447010278702,0.064145110547543,-0.068405941128731],[-0.095591656863689,0.043014168739319,0.17726588249207],[-0.013758976943791,0.035221215337515,-0.025393908843398]],[[-0.060911111533642,0.015828713774681,-0.17917986214161],[-0.031135246157646,-0.17491507530212,0.021543934941292],[0.032317642122507,-0.035831913352013,-0.12531654536724]],[[-0.0255560670048,0.05970149859786,-0.025160336866975],[0.13664744794369,-0.046901043504477,0.028269214555621],[-0.0035047957208008,0.0018539560260251,-0.035074573010206]],[[-0.27034255862236,0.0035537108778954,-0.20372527837753],[0.11618461459875,-0.080289162695408,0.18802590668201],[-0.23980087041855,0.020887713879347,-0.052220869809389]],[[-0.083073891699314,0.084888622164726,-0.13499531149864],[-0.1216446608305,-0.19121700525284,0.044398482888937],[-0.066163904964924,-0.061561804264784,-0.053000677376986]],[[-0.056677836924791,0.043330557644367,-0.13692700862885],[-0.0026538900565356,0.019042380154133,-0.066196635365486],[0.03689706325531,0.031533494591713,-0.016942653805017]],[[0.071082442998886,-0.15072019398212,0.03743164613843],[0.016333131119609,0.074376054108143,0.053033292293549],[0.067425020039082,0.036728251725435,0.1014883518219]],[[-0.1366940587759,-0.0072176898829639,-0.086395300924778],[0.011557684279978,-0.059557072818279,0.041953198611736],[-0.064340136945248,0.078624732792377,0.010908876545727]],[[-0.12213018536568,-0.069155625998974,-0.070576630532742],[-0.007429517339915,-0.095715098083019,0.13821099698544],[-0.020130870863795,-0.039245754480362,0.012031473219395]],[[-0.14911624789238,-0.14724943041801,0.057031314820051],[0.029890147969127,-0.12305239588022,0.069273427128792],[-0.081801161170006,0.011870745569468,0.058928072452545]],[[-0.079004541039467,0.020501121878624,-0.019992966204882],[0.053134482353926,-0.12687437236309,0.036947909742594],[-0.000862225308083,-0.040645364671946,0.0041568647138774]],[[-0.29976508021355,0.048503782600164,-0.074870198965073],[0.2582229077816,-0.36775362491608,0.19215977191925],[-0.19514435529709,0.19826701283455,-0.21891312301159]],[[-0.037105292081833,-0.019462361931801,0.040960807353258],[0.037803553044796,-0.0069016087800264,-0.029486356303096],[-0.032960761338472,-0.038159862160683,0.072828285396099]],[[-0.050126112997532,0.081220537424088,0.088981680572033],[0.02711758762598,0.0023539571557194,-0.16939960420132],[0.099196702241898,0.04920618981123,-0.19320960342884]],[[0.057616673409939,-0.024731319397688,0.0061030481010675],[-0.17054605484009,0.035348631441593,-0.017184492200613],[0.19134482741356,-0.01584305241704,-0.021487599238753]],[[0.12696081399918,-0.052315440028906,0.070550762116909],[0.099963493645191,0.057960785925388,-0.27978560328484],[-0.065807648003101,-0.032167356461287,-0.15341322124004]],[[-0.1029869094491,-0.16565854847431,-0.027919482439756],[-0.018626583740115,-0.00064113497501239,-0.044498581439257],[-0.10896383225918,-0.16012831032276,-0.047745153307915]],[[-0.061279501765966,0.027001289650798,-0.21885499358177],[-0.10776863247156,-0.064917750656605,-0.088840939104557],[0.0739376693964,-0.16867998242378,-0.070889353752136]],[[-0.1616702824831,-0.13447254896164,-0.033761583268642],[0.036514978855848,0.070610284805298,0.056038025766611],[-0.015903266146779,-0.01109426561743,-0.074528388679028]],[[-0.031739249825478,0.03440260514617,0.039684150367975],[-0.0016435666475445,0.11104874312878,0.061170741915703],[-0.42656204104424,0.051204223185778,-0.031504213809967]],[[-0.11938170343637,-0.015200594440103,0.098158709704876],[-0.10036750137806,-0.064257927238941,-0.060095470398664],[-0.0079614296555519,0.01624976657331,-0.097515881061554]],[[-0.13626810908318,0.014519823715091,-0.084041520953178],[0.047906059771776,-0.084268018603325,-0.0011667085345834],[-0.028358707204461,-0.072194740176201,-0.03555316850543]],[[-0.01399683021009,0.08076948672533,-0.0082866717129946],[-0.090276882052422,-0.063651852309704,0.016518473625183],[0.08734343200922,-0.14176715910435,-0.042050383985043]],[[0.10769046843052,-0.099934697151184,0.070843800902367],[-0.11277971416712,-0.13020157814026,-0.3063160777092],[-0.022623958066106,-0.099415808916092,0.088512673974037]],[[0.014491843990982,0.046154532581568,-0.073914676904678],[0.012261250987649,0.0013814789708704,-0.011469246819615],[0.080707862973213,-0.04010659083724,-0.022313091903925]],[[0.012857146561146,-0.052124012261629,0.09815027564764],[0.16163046658039,-0.032624002546072,0.087914034724236],[-0.21077817678452,0.13097712397575,-0.10629167407751]],[[0.046583391726017,0.017649158835411,-0.0886340290308],[0.043821275234222,0.13270917534828,0.048621416091919],[0.027487309649587,-0.063184559345245,-0.092064082622528]],[[-0.035071194171906,0.00027940183645114,-0.015275101177394],[0.056417476385832,0.027378836646676,-0.019596762955189],[-0.014068512246013,-0.024881755933166,0.058058738708496]],[[-0.11073469370604,-0.030510982498527,-0.1339004188776],[0.161585688591,-0.0051634670235217,-0.037916358560324],[0.056128617376089,0.07437852025032,-0.11658418923616]],[[0.052409794181585,-0.040749777108431,0.041334614157677],[-0.011929042637348,-0.019928174093366,0.030682876706123],[-0.029504545032978,0.052579373121262,-0.052115183323622]]],[[[0.11054944992065,0.038213692605495,-0.035625576972961],[-0.21314743161201,-0.15553385019302,0.029782054945827],[0.097916021943092,-0.011586824432015,-0.0092814890667796]],[[0.032352723181248,-0.053044714033604,0.003505353583023],[0.00087821244960651,-0.016545124351978,0.03629320114851],[-0.027064330875874,-0.0010223656427115,-0.012709469534457]],[[0.070466741919518,0.079669669270515,0.039919730275869],[0.083711259067059,0.13351999223232,-0.09574418514967],[0.035846889019012,0.049219649285078,-0.017276691272855]],[[0.012426900677383,0.058620404452085,-0.053429756313562],[0.12865287065506,0.02027390152216,-0.089562773704529],[0.048130515962839,-0.1086944937706,-0.022496851161122]],[[-0.012455323711038,0.046514119952917,-0.014515347778797],[0.073701255023479,0.01575224660337,0.006300350651145],[-0.034695971757174,0.011502046138048,0.031819734722376]],[[-0.25918486714363,-0.19991682469845,0.0076227644458413],[0.17061656713486,-0.056708611547947,-0.067112416028976],[0.11262266337872,0.079931035637856,0.062372766435146]],[[-0.10087645798922,0.034492608159781,-0.096835106611252],[0.16754984855652,0.08149479329586,-0.059569049626589],[-0.040381565690041,-0.023338044062257,-0.084217265248299]],[[-0.21670126914978,0.19869767129421,0.081897877156734],[0.099426321685314,0.025659326463938,-0.063147261738777],[-0.10811326652765,0.040732640773058,0.091764017939568]],[[0.11970974504948,-0.05281038209796,-0.1246392428875],[0.010474575683475,0.14282537996769,-0.0099591426551342],[-0.047863382846117,-0.040689371526241,0.051766406744719]],[[-0.1537217348814,0.15738087892532,0.010109359398484],[-0.18069492280483,0.19560477137566,-0.04732383787632],[-0.14216011762619,-0.056495122611523,-0.26571094989777]],[[-0.095806263387203,0.096848987042904,-0.071216680109501],[-0.14626760780811,0.018105428665876,0.062238797545433],[0.11647068709135,-0.1302877664566,0.047974444925785]],[[0.015812691301107,0.054410599172115,-0.21061822772026],[0.028260122984648,-0.060896944254637,0.075120083987713],[-0.0019317629048601,-0.046839252114296,0.075781993567944]],[[0.096968419849873,-0.0041448068805039,-0.0035188666079193],[-0.0089853079989552,-0.011518734507263,0.059296935796738],[-0.053794991225004,-0.085218109190464,0.098579786717892]],[[-0.30567419528961,-0.3307763338089,-0.05461036786437],[0.2334910184145,-0.077729187905788,-0.33839818835258],[0.097841702401638,0.068347357213497,0.16218046844006]],[[0.026117904111743,0.019463039934635,0.0028827008791268],[-0.0031715678051114,0.018502879887819,0.082407847046852],[-0.066902138292789,-0.093273036181927,0.014673933386803]],[[-0.060317005962133,0.09453035145998,0.13021107017994],[-0.014781757257879,-0.071604706346989,-0.015077264048159],[0.016122069209814,-0.22197563946247,-0.047891195863485]],[[-0.27870467305183,-0.094457529485226,0.0016517278272659],[-0.054133135825396,-0.083256050944328,0.11557533591986],[0.11220543086529,0.10725393146276,0.018315156921744]],[[0.07158225774765,-0.064382560551167,0.067681901156902],[0.11766428500414,0.0099566131830215,0.025357065722346],[-0.031703170388937,-0.024531673640013,-0.12616221606731]],[[0.094054251909256,-0.1645519733429,-0.13628722727299],[0.051285825669765,0.041706070303917,-0.096478417515755],[0.15181364119053,-0.021889554336667,0.012710805051029]],[[-0.11986816674471,0.0023464423138648,-0.18208004534245],[-0.17345643043518,-0.10726942867041,-0.22299037873745],[0.070738799870014,-0.1195560619235,-0.17873187363148]],[[0.059539951384068,0.016120417043567,-0.062374442815781],[-0.087326407432556,0.0036963012535125,-0.086719386279583],[-0.097541496157646,0.047259900718927,0.050826504826546]],[[-0.082606002688408,0.021934097632766,0.1225208491087],[-0.015516527928412,-0.071001186966896,0.088711686432362],[-0.092021957039833,-0.21351236104965,0.11635237932205]],[[0.015429399907589,-0.017940361052752,-0.047224782407284],[-0.077604323625565,0.046216014772654,0.026248823851347],[-0.041170243173838,-0.084820382297039,0.15458030998707]],[[-0.15860402584076,0.022868428379297,0.045782029628754],[0.037554815411568,0.066376246511936,-0.15012395381927],[0.0043034148402512,-0.16500245034695,-0.014514311216772]],[[0.074630327522755,0.009707173332572,-0.23147551715374],[-0.052893340587616,-0.060183670371771,0.0038902936503291],[0.034157305955887,-0.097374215722084,-0.12204325199127]],[[0.1943189650774,-0.18431289494038,-0.059162821620703],[0.10026667267084,-0.0063106459565461,-0.17708593606949],[-0.031825162470341,-0.17646689713001,0.0091331079602242]],[[-0.013009524904191,-0.057073753327131,0.0092196483165026],[0.11037361621857,-0.0051694232970476,-0.10252787172794],[0.024010891094804,0.038636472076178,3.8369656977011e-05]],[[0.019343702122569,0.095622226595879,0.14215169847012],[-0.19083899259567,0.056133169680834,0.046264968812466],[-0.085000962018967,-0.17275586724281,-0.0048457970842719]],[[-0.029104437679052,-0.033732008188963,-0.082319498062134],[-0.068781107664108,-0.018692949786782,-0.094326063990593],[0.092783786356449,0.10316272825003,-0.012838441878557]],[[-0.0035579935647547,-0.025414366275072,0.068118058145046],[-0.01504198461771,-0.053821064531803,0.053017556667328],[-0.0099947107955813,0.013984576798975,0.039136979728937]],[[-0.17983128130436,0.096042439341545,0.043148782104254],[-0.04687999561429,-0.16763977706432,0.076650537550449],[0.0034906235523522,-0.095825918018818,-0.091933742165565]],[[-0.019355116412044,-0.056629676371813,-0.061086490750313],[-0.0018937361892313,0.06359726190567,-0.051651831716299],[-0.064424626529217,-0.11457028985023,-0.0052634873427451]]],[[[-0.18896259367466,-0.072037443518639,-0.018765697255731],[-0.0035737161524594,-0.14974032342434,0.011010628193617],[-0.007713710423559,-0.003804613603279,0.0035170901101083]],[[-0.16529186069965,-0.028843184933066,0.034949190914631],[0.0050157285295427,0.021956354379654,0.12076756358147],[-0.085363373160362,-0.046448566019535,-0.0046081421896815]],[[0.17766998708248,-0.10635384172201,-0.15008682012558],[0.017286354675889,0.054424129426479,-0.10731876641512],[0.11554411053658,0.0060961581766605,0.13545414805412]],[[-0.049297790974379,-0.067396774888039,-0.072566188871861],[-0.098707236349583,0.10148146748543,0.0069681154564023],[0.10251811146736,-0.024732377380133,-0.043245870620012]],[[0.083467908203602,0.098898902535439,-0.026125518605113],[-0.027290273457766,0.030636956915259,0.0043495623394847],[0.0339963324368,0.081778787076473,-0.017273303121328]],[[0.0089747598394752,0.029642377048731,-0.050267774611712],[0.13645941019058,0.061024621129036,0.014920009300113],[-0.041944295167923,0.033492099493742,-0.058657977730036]],[[0.04406987503171,-0.032838277518749,-0.073491416871548],[-0.14936006069183,0.034067157655954,0.038209222257137],[-0.070535019040108,0.001640883856453,-0.10591773688793]],[[-0.02135524712503,0.014836443588138,0.12012384831905],[-0.13398016989231,0.00012700448860414,-0.063328936696053],[-0.020516673102975,-0.0327432975173,0.088109418749809]],[[-0.016956070438027,-0.044120632112026,0.027886826545],[-0.075371332466602,0.022751517593861,0.11210991442204],[-0.03028779476881,0.0098516102880239,0.016318034380674]],[[-0.060996666550636,-0.16031689941883,0.022065823897719],[-0.11757829040289,-0.032482452690601,-0.023064801469445],[-0.10425314307213,-0.0056912242434919,-0.10531495511532]],[[0.0099190613254905,-0.027096524834633,-0.032250594347715],[-0.027395071461797,-0.054762072861195,0.028647860512137],[-0.045482274144888,-0.11651213467121,0.013120288960636]],[[-0.14867761731148,-0.024650447070599,0.025188473984599],[-0.0072184987366199,0.015401508659124,0.065094903111458],[-0.022030469030142,-0.057486698031425,-0.02423476241529]],[[-0.16342256963253,-0.15900079905987,-0.043810423463583],[-0.04973316937685,-0.057080950587988,-0.025351755321026],[-0.1389737278223,-0.15423956513405,-0.036203823983669]],[[-0.054917879402637,-0.032402537763119,-0.15137039124966],[0.00031848749495111,0.03103925101459,-0.11015048623085],[0.004766930360347,0.007873747497797,0.0066167879849672]],[[-0.018621755763888,0.054522171616554,0.075035855174065],[-0.039034895598888,-0.062761507928371,0.073605298995972],[-0.028751643374562,-0.070349507033825,0.012134118936956]],[[-0.045195359736681,-0.062817320227623,-0.15816196799278],[0.033462557941675,-0.12166009098291,-0.0064614354632795],[0.028936050832272,0.031728629022837,0.04243017360568]],[[0.023756401613355,0.041585877537727,0.080603905022144],[0.047804672271013,-0.027084333822131,0.052231948822737],[0.050699342042208,0.0036759385839105,0.039233218878508]],[[-0.087615765631199,0.05425576120615,-0.12173961102962],[0.043486144393682,-0.04058288782835,-0.016313094645739],[0.10174067318439,-0.0080412300303578,0.028361821547151]],[[-0.088548250496387,-0.0065962574444711,0.050433799624443],[-0.070722833275795,0.0031349319033325,0.084472805261612],[0.019429480656981,-0.075646549463272,-0.013452445156872]],[[-0.0091245742514729,-0.071356147527695,0.016646256670356],[-0.016112960875034,-0.096650831401348,-0.11367565393448],[-0.037465378642082,-0.096397265791893,-0.12891134619713]],[[-0.1524662822485,-0.023738337680697,0.084299132227898],[-0.042742025107145,0.050366006791592,0.15033861994743],[-0.090916641056538,-0.049088425934315,0.032161258161068]],[[0.16309584677219,-0.029029738157988,0.15217633545399],[-0.015319433063269,-0.024175116792321,-0.11334471404552],[-0.1161001548171,-0.018616557121277,0.010748720727861]],[[-0.044896073639393,0.11234752088785,-0.13542740046978],[0.018114261329174,0.083464622497559,0.026415940374136],[0.087602861225605,0.021647470071912,0.048165321350098]],[[0.0011683189077303,-0.054746635258198,-0.063357874751091],[-0.12229066342115,-0.27122917771339,-0.071938991546631],[-0.23119422793388,-0.041164848953485,-0.12355802208185]],[[-0.061681769788265,-0.077610611915588,-0.00086309917969629],[-0.11972961574793,-0.022148054093122,-0.051111154258251],[0.027949623763561,-0.014430055394769,-0.057304419577122]],[[-0.078442648053169,0.049608062952757,0.06730955094099],[-0.016233596950769,-0.062526114284992,0.0048224716447294],[-0.047661282122135,0.036694459617138,-0.07746010273695]],[[0.0040936470031738,-0.060783665627241,-0.13723146915436],[0.074770778417587,-0.019135680049658,-0.054791785776615],[0.16004818677902,-0.051847755908966,0.040520735085011]],[[0.030692100524902,0.042664382606745,-0.062277648597956],[-0.018367402255535,0.001652741804719,-0.04683493450284],[-0.10887092351913,0.013215315528214,-0.17891763150692]],[[-0.081515409052372,-0.25931087136269,0.031854491680861],[-0.15771441161633,-0.0016822481993586,0.017147563397884],[-0.035402368754148,-0.11352586001158,-0.063631050288677]],[[0.038999531418085,0.010828479193151,-0.11178851872683],[0.12107136100531,-0.04192852973938,-0.01993533782661],[0.054283205419779,-0.029548838734627,-0.03812162950635]],[[-0.021154247224331,-0.14265228807926,0.013411548919976],[0.020230274647474,0.059327699244022,0.022801531478763],[0.033786430954933,-0.0044207791797817,0.064847953617573]],[[-0.15591624379158,-0.06354682892561,0.023634491488338],[-0.21043756604195,-0.20205672085285,-0.21271814405918],[-0.05235954746604,-0.095365792512894,0.054832745343447]]]],"nOutputPlane":64,"kW":3,"kH":3,"bias":[-0.0010660425759852,-0.009480956941843,-0.014805064536631,-0.014757974073291,0.0017399138305336,-0.016734262928367,-0.0099489819258451,0.0050061019137502,0.065167747437954,-0.010597030632198,-0.0027932706288993,-0.016128223389387,-0.0052946656942368,-0.012162770144641,-0.0070953192189336,-0.0046438276767731,-0.00098775350488722,-0.01819409057498,-0.010996015742421,-0.010520200245082,-0.016180174425244,-0.01328122522682,-0.0033536674454808,-0.00073626585071906,-0.0083401678130031,-0.012326393276453,-0.0015553112607449,-0.0082343798130751,0.0024942413438112,-0.0021724267862737,0.0017191084334627,-0.013561233878136,-0.0074076913297176,-0.032336540520191,-0.012836419045925,-0.0092875277623534,-0.024761155247688,0.00030271132709458,-0.069975942373276,0.00026876060292125,-0.0099621806293726,-0.012654143385589,-0.009608868509531,-0.075377620756626,-0.01223389338702,-0.0092000821605325,-0.0071902009658515,-0.023696640506387,-0.010759663768113,-0.057363715022802,-0.051900491118431,-0.0078259855508804,-0.014506427571177,-0.005323760677129,-0.018689773976803,-0.01594865322113,-0.055751867592335,-0.01536444015801,-0.0068913823924959,-0.0023148723412305,-0.0028677880764008,-0.021427657455206,-0.0042397510260344,0.0062618893571198],"nInputPlane":32},{"weight":[[[[-0.022768588736653,-0.038135159760714,-0.097940929234028],[-0.05454071983695,-0.03530165553093,0.066047616302967],[0.0080635361373425,0.050404105335474,0.012911112979054]],[[-0.051051072776318,-0.12415841966867,-0.011270667426288],[-0.01752882450819,-0.080992668867111,0.00095954776043072],[0.054031152278185,0.12699863314629,0.057462673634291]],[[0.012768873944879,0.03090563043952,-0.029094569385052],[-0.017445491626859,-0.063234411180019,0.0086115943267941],[0.09772551804781,-0.018489919602871,-0.1462827026844]],[[-0.065684869885445,-0.098402462899685,-0.064374513924122],[0.054529894143343,0.02485753595829,0.042822021991014],[0.028030276298523,-0.12225672602654,-0.017579637467861]],[[-0.023150471970439,0.06934729218483,-0.051918603479862],[-0.028923518955708,0.023106576874852,-0.021037152037024],[-0.11608130484819,-0.083455644547939,-0.063453353941441]],[[-0.10614147782326,-0.024016059935093,-0.083226069808006],[-0.051661886274815,0.23704299330711,-0.13601353764534],[0.10681796818972,-0.11475766450167,0.051450576633215]],[[0.080368734896183,0.099748842418194,0.034959331154823],[0.088519714772701,-0.043899830430746,0.034882482141256],[0.0094773443415761,-0.11004025489092,-0.036832813173532]],[[0.027942979708314,-0.014417595230043,0.15070563554764],[-0.053465630859137,-0.072120733559132,-0.068302169442177],[-0.092143937945366,0.0081725148484111,0.0061433762311935]],[[-0.05269468203187,-0.017522927373648,-0.017447840422392],[-0.057710319757462,0.089116871356964,-0.00086268957238644],[0.0090850656852126,0.035053122788668,0.0002573630772531]],[[-0.040789369493723,0.03857933729887,0.057966757565737],[-0.17459885776043,-0.023685483261943,-0.094295300543308],[-0.011015335097909,0.070821553468704,-0.00024825616856106]],[[-0.028405983000994,0.027970883995295,-0.089310854673386],[0.012393407523632,0.021320834755898,-0.11234047263861],[0.047951325774193,0.10344510525465,-0.048573695123196]],[[0.019970651715994,-0.0087828151881695,-0.016039362177253],[0.054609019309282,-0.089198879897594,-0.039272982627153],[0.053993105888367,-0.0006343595450744,-0.0026791435666382]],[[-0.026187958195806,-0.16773763298988,0.022057693451643],[-0.030007991939783,-0.15314906835556,-0.0184903498739],[-0.058485772460699,-0.043495774269104,0.029914086684585]],[[-0.0061653787270188,-0.064344204962254,-0.20508188009262],[-0.054237816482782,0.1788724064827,-0.087642781436443],[-0.080303631722927,0.0038937211502343,-0.00062327657360584]],[[-0.10823348909616,-0.0017826783005148,-0.070919811725616],[-0.11738315224648,-0.022380191832781,-0.021858241409063],[-0.10295083373785,-0.077427104115486,-0.0086855888366699]],[[0.029409445822239,-0.072428449988365,0.022407315671444],[0.049880459904671,0.018548717722297,-0.0025717122480273],[-0.0051832566969097,0.03089308924973,-0.17901018261909]],[[-0.14359405636787,0.041347458958626,-0.038401074707508],[-0.027998898178339,0.12560456991196,-0.039401978254318],[0.04630795866251,0.018349036574364,-0.094646252691746]],[[-0.057714354246855,0.043717563152313,-0.099660873413086],[-0.09050702303648,0.0965865701437,-0.047895196825266],[-0.092259205877781,-0.231047347188,0.019280163571239]],[[-0.10220144689083,-0.056381143629551,0.093148104846478],[-0.046733029186726,0.0017529894830659,0.010603670962155],[-0.12382036447525,0.010012906976044,0.060814302414656]],[[0.0093151032924652,-0.11777516454458,0.059599984437227],[0.092014148831367,-0.029266182333231,-0.01093533448875],[0.014001921750605,-0.12795056402683,-0.11178002506495]],[[-0.043255887925625,0.0073291882872581,-0.060635469853878],[-0.061031896620989,-0.071449771523476,-0.032864782959223],[0.021172307431698,0.056431479752064,-0.11590503156185]],[[-0.042414449155331,0.010044574737549,-0.062285229563713],[-0.089734278619289,-0.027439502999187,-0.058271523565054],[-0.096080534160137,-0.037850771099329,-0.027561901137233]],[[-0.013631313107908,0.17031964659691,-0.13057993352413],[-0.074934862554073,0.079188838601112,0.0054401434026659],[-0.077994890511036,-0.14551062881947,-0.11749465763569]],[[0.085779845714569,0.048615660518408,0.0018861700082198],[-0.093450821936131,-0.075144656002522,-0.069913603365421],[0.14701728522778,-0.013282935135067,-0.035225700587034]],[[0.044315483421087,0.13420614600182,0.066146492958069],[-0.028018835932016,0.04325595125556,0.021694915369153],[0.074623771011829,-0.056939665228128,-0.19386172294617]],[[-0.17217440903187,-0.053535711020231,-0.037920359522104],[-0.049992889165878,0.031821459531784,-0.091617286205292],[-0.05126079544425,-0.0055648046545684,0.037332911044359]],[[0.023270199075341,-0.010621408931911,0.077177844941616],[0.075400821864605,-0.13637429475784,0.081395141780376],[-0.03958922997117,-0.015442412346601,0.040197588503361]],[[0.10416951775551,-0.075127281248569,-0.053710106760263],[0.0040672817267478,-0.028885647654533,0.0018371365731582],[-0.010410062968731,-0.094247870147228,-0.091251060366631]],[[-0.14532132446766,-0.0078874239698052,0.059889074414968],[-0.038533721119165,0.067361459136009,-0.039960347115993],[0.20003663003445,0.092124417424202,-0.012838922441006]],[[-0.10373499244452,0.058246817439795,-0.10259095579386],[-0.014512133784592,0.077127441763878,-0.20902414619923],[0.029648132622242,-0.14212369918823,-0.037701763212681]],[[0.1055980399251,-0.090647764503956,0.012777361087501],[-0.0053418450988829,-0.14019843935966,0.077205866575241],[-0.15718293190002,0.016275713220239,-0.005488290451467]],[[-0.0093315336853266,-0.0022140792571008,0.038165133446455],[-0.15619081258774,-0.12118419259787,0.027872927486897],[-0.11908274143934,0.11259330809116,0.18040046095848]],[[-0.086570970714092,-0.088319882750511,-0.038105148822069],[-0.11002177745104,0.093705087900162,-0.081612713634968],[-0.16153697669506,0.081701800227165,-0.064024150371552]],[[-0.070183828473091,0.011167464777827,0.0078650806099176],[0.00097729254048318,0.051263619214296,-0.059104975312948],[-0.0052231969311833,0.010501128621399,-0.13168719410896]],[[-0.13759653270245,-0.095263496041298,-0.02008499763906],[-0.076364651322365,0.025551663711667,0.053660109639168],[-0.12264548242092,0.025434087961912,0.0058289389126003]],[[0.031082918867469,-0.021280171349645,-0.010251013562083],[-0.066661275923252,-0.046113550662994,0.042204570025206],[-0.13329076766968,0.13848724961281,-0.068919621407986]],[[-0.023937227204442,-0.075156301259995,0.045581612735987],[-0.050323851406574,-0.063626229763031,-0.059117443859577],[-0.018934413790703,-0.026756385341287,0.22518873214722]],[[0.023953013122082,-0.012709168717265,-0.024671901017427],[0.056925009936094,0.0069852853193879,-0.048946846276522],[0.0080139134079218,-0.01131647080183,0.016623679548502]],[[0.019228354096413,-0.050760190933943,-0.076019838452339],[-0.009461079724133,-0.052406065165997,-0.093331396579742],[0.1159840002656,-0.015022737905383,0.030812678858638]],[[-0.056533992290497,0.024557121098042,0.081955768167973],[-0.13160149753094,0.046682607382536,0.021513802930713],[-0.21347686648369,-0.096895277500153,0.082856848835945]],[[-0.025365330278873,-0.10861874371767,0.139269977808],[0.15760505199432,-0.29063323140144,0.035771019756794],[0.075262010097504,-0.10633967071772,0.053124625235796]],[[0.18040882050991,-0.036814872175455,0.096639983355999],[-0.15214543044567,0.002197963418439,0.056573770940304],[-0.16396643221378,0.082634992897511,-0.077477902173996]],[[-0.2209734916687,-0.14183248579502,-0.20494347810745],[-0.083013795316219,0.09069649875164,0.047375254333019],[-0.013337734155357,0.019710790365934,-0.0066672889515758]],[[0.016469832509756,-0.0068561243824661,-0.0090340841561556],[0.0027367162983865,0.0078855734318495,0.019517056643963],[0.03572116419673,0.00051278877072036,0.0071792700327933]],[[-0.020631587132812,-0.14554180204868,-0.16077093780041],[-0.095319852232933,-0.072841830551624,0.02103627845645],[-0.13213609158993,-0.11549706757069,-0.052059795707464]],[[0.10353320091963,0.085619449615479,0.030750151723623],[-0.033948432654142,-0.0034824162721634,-0.10893729329109],[0.086632929742336,0.022432375699282,0.0045710229314864]],[[0.020765222609043,0.19341304898262,0.11598069965839],[0.086154602468014,-0.074603423476219,0.0064196558669209],[-0.065341636538506,-0.07956075668335,0.04007675871253]],[[-0.016700673848391,-0.13696338236332,-0.027948534116149],[0.0065736682154238,-0.1201950609684,-0.055189318954945],[0.045861002057791,0.012443549931049,-0.076504595577717]],[[-0.085501819849014,0.072511725127697,-0.063850708305836],[-0.10706505179405,-0.029567943885922,0.039632819592953],[-0.22470188140869,-0.018868535757065,0.090880870819092]],[[0.1293525993824,-0.055490273982286,-0.039352014660835],[0.034109108150005,-0.080833688378334,0.01221973169595],[-0.0079019600525498,-0.050947975367308,0.017318267375231]],[[0.0047332402318716,-0.0594866797328,-0.091516867280006],[-0.22793744504452,0.0094371754676104,-0.018247397616506],[0.071963675320148,0.068715013563633,0.039318706840277]],[[0.02663560770452,0.0031233008485287,-0.1108286306262],[-0.14024065434933,0.14484114944935,-0.16584588587284],[-0.047148551791906,-0.19600412249565,-0.055527433753014]],[[-0.070801600813866,-0.00079784780973569,0.094237193465233],[0.090721510350704,0.16752889752388,0.072077922523022],[-0.13313257694244,-0.0037412424571812,0.010303994640708]],[[-0.024806044995785,0.02052809111774,-0.023924531415105],[0.032809879630804,-0.081652007997036,0.12027035653591],[0.050829507410526,-0.0056115132756531,0.029681202024221]],[[-0.026955211535096,-0.069566018879414,-0.04341671615839],[0.14328496158123,-0.093594312667847,-0.020978927612305],[-0.050102435052395,0.01735190115869,0.016474865376949]],[[-0.2416333258152,0.19025196135044,-0.08859296143055],[-0.074061632156372,-0.0035456391051412,0.026885248720646],[-0.011016369797289,0.071545407176018,-0.044001646339893]],[[0.013369748368859,0.037480235099792,0.076130919158459],[-0.22145041823387,-0.0628547295928,-0.079803124070168],[0.010555542074144,0.10724119096994,0.020224111154675]],[[-0.065370865166187,-0.048753995448351,0.069208011031151],[-0.011060133576393,0.043917801231146,-0.025711679831147],[0.017263118177652,-0.20176336169243,0.072314076125622]],[[0.0078633362427354,0.12029242515564,0.04170048981905],[-0.00054208084475249,-0.14912943542004,0.089583165943623],[0.020659474655986,0.05715399608016,0.036332238465548]],[[-0.0017306532245129,0.0035723531618714,0.0039772288873792],[0.080698885023594,0.051101375371218,0.0018195376032963],[-0.067379586398602,0.045857701450586,-0.023375013843179]],[[0.022661224007607,-0.075889974832535,-0.026114940643311],[0.1520361751318,0.071122266352177,-0.044041574001312],[0.12432539463043,0.21866010129452,-0.074618332087994]],[[0.10765662789345,0.12707526981831,0.067409172654152],[-0.12180132418871,-0.059621181339025,-0.023078549653292],[-0.03804412856698,0.0044343713670969,0.13051773607731]],[[-0.047926761209965,0.0021812738850713,-0.029814770445228],[-0.010585532523692,0.001843819161877,-0.074480704963207],[0.012715184129775,0.067093171179295,-0.076630033552647]],[[0.026827922090888,0.087792940437794,-0.014616680331528],[-0.017258046194911,-0.083170756697655,-0.17774447798729],[0.016284359619021,0.046935550868511,0.04950213804841]]],[[[-0.012736076489091,0.026892622932792,0.036055117845535],[-0.0007789364317432,0.0079191364347935,0.051623679697514],[0.0058470615185797,0.077687457203865,0.05555172264576]],[[-0.14489689469337,-0.0029973380733281,-0.24387545883656],[-0.021951541304588,-0.025982525199652,-0.034026969224215],[0.070268072187901,-0.11045791953802,0.046457249671221]],[[0.065514899790287,-0.10959076881409,-0.04242242500186],[0.058178398758173,0.082283906638622,-0.11122791469097],[0.0022954747546464,0.054818388074636,-0.032188143581152]],[[0.02622995711863,-0.076313100755215,-0.038682259619236],[0.033380590379238,-0.043698567897081,0.042604632675648],[-0.1013817563653,-0.057485818862915,0.023123638704419]],[[-0.040545236319304,0.040641851723194,0.031120181083679],[-0.017569687217474,-0.033457491546869,-0.067861169576645],[-0.074918746948242,-0.026170777156949,0.16632357239723]],[[-0.024984305724502,-0.0749476775527,0.041781470179558],[-0.083270788192749,0.11547634750605,0.047257322818041],[0.020554915070534,-9.998931636801e-05,-0.046284414827824]],[[0.047943186014891,0.067115917801857,0.0070611042901874],[-0.084579855203629,-0.091005057096481,-0.027773268520832],[0.13588184118271,-0.091882936656475,-0.078552402555943]],[[-0.093515150249004,-0.087909050285816,0.062441918998957],[-0.11029118299484,0.023742537945509,-0.0072273104451597],[0.049208246171474,-0.025500498712063,0.12714777886868]],[[-0.0091925691813231,-0.12995989620686,-0.081801876425743],[0.035896878689528,0.070650205016136,-0.09627128392458],[0.093295246362686,0.051221001893282,0.033565226942301]],[[-0.057593628764153,0.039512943476439,0.02997887134552],[-0.033675190061331,-0.028334230184555,0.047364339232445],[0.065649546682835,-0.086600095033646,-0.015706533566117]],[[-0.040586493909359,0.11355336010456,5.2650473662652e-05],[-0.050626326352358,-0.072376400232315,0.018771510571241],[-0.036663759499788,0.01296501327306,0.059186179190874]],[[-0.11859354376793,0.063436463475227,0.067236788570881],[-0.006495350971818,0.0099366595968604,-0.066633902490139],[0.043955221772194,0.04832349717617,-0.0033999150618911]],[[0.01870241202414,-0.12749530375004,-0.14993605017662],[0.027245780453086,-0.0054702027700841,-0.10092119127512],[-0.14510415494442,-0.072593174874783,-0.035708073526621]],[[0.021382343024015,0.10592585802078,0.04426621645689],[0.020190691575408,-0.073243156075478,0.086887203156948],[-0.017280014231801,0.037335198372602,-0.01512504927814]],[[-0.066764011979103,0.010602563619614,-0.067309990525246],[-0.057599220424891,0.027664607390761,0.015838546678424],[-0.037688832730055,-0.11397790163755,0.040923431515694]],[[-0.044396378099918,0.01748682744801,-0.037671506404877],[-0.053186148405075,0.029089199379086,-0.09124880284071],[-0.042671084403992,0.062352150678635,0.13986513018608]],[[0.072142586112022,0.1440931558609,-0.052750904113054],[0.037116419523954,-0.06010440737009,-0.16231149435043],[0.044529654085636,-0.0097497627139091,-0.053483292460442]],[[0.013177254237235,-0.076619885861874,-0.13150814175606],[0.071005880832672,0.071008905768394,0.023734716698527],[-0.094648629426956,-0.061704266816378,0.016723020002246]],[[0.024053938686848,0.12763194739819,0.02572638168931],[0.06146115809679,0.024326115846634,-0.0078639769926667],[-0.14719538390636,0.098842605948448,-0.056859094649553]],[[0.010931286029518,-0.086936235427856,0.013328301720321],[-0.014184896834195,-0.14997816085815,0.087700471282005],[0.049796413630247,-0.061893656849861,-0.066909573972225]],[[-0.041966833174229,0.0060602352023125,-0.067090272903442],[0.0029615450184792,0.10638447105885,0.050456065684557],[0.042660072445869,0.092330701649189,0.0070090787485242]],[[0.043314784765244,-0.071638569235802,0.12917898595333],[0.076855286955833,-0.085299678146839,-0.20551460981369],[-0.043458953499794,0.020194290205836,-0.1271767616272]],[[0.090821996331215,-0.036756973713636,-0.028733022511005],[-0.05268682166934,0.059920851141214,-0.14339891076088],[0.010617048479617,-0.0062781972810626,-0.12747472524643]],[[0.007668920326978,-0.09785109013319,0.015668015927076],[0.03774131834507,0.044436942785978,0.016244687139988],[-0.010386114008725,-0.050136916339397,-0.022663410753012]],[[-0.04110486805439,0.028039524331689,0.21623364090919],[-0.058122433722019,0.063943989574909,-0.010335348546505],[0.059573207050562,0.07782294601202,0.034892816096544]],[[0.10491355508566,0.026284158229828,-0.016132738441229],[0.030476782470942,0.19295333325863,0.020961610600352],[0.040285754948854,0.039554212242365,-0.019633632153273]],[[-0.022967858240008,-0.033205337822437,-0.057262483984232],[-0.0268022287637,-0.019547076895833,0.0042596943676472],[-0.022520206868649,-0.057408384978771,0.026014072820544]],[[0.18743202090263,-0.1339757591486,-0.046711422502995],[0.2015800178051,0.003950719255954,-0.1906653046608],[0.019354475662112,0.028401473537087,-0.060283899307251]],[[-0.14391379058361,0.11697386205196,0.085822306573391],[0.020293548703194,0.096547544002533,0.010804637335241],[0.015361124649644,0.03436316549778,0.081810779869556]],[[-0.031361993402243,-0.14518414437771,-0.00074444367783144],[0.059730108827353,-0.13185355067253,0.097637578845024],[-0.0047319834120572,-0.087911672890186,0.011031047441065]],[[0.039663102477789,-0.044636253267527,-0.023280307650566],[-0.16738973557949,-0.055515188723803,-0.060705792158842],[-0.010181587189436,-0.13216355443001,-0.01132557541132]],[[-0.10806514322758,-0.10241612792015,-0.17395712435246],[0.015930762514472,0.084191523492336,0.077147461473942],[-0.0065459073521197,-0.098316922783852,0.075117506086826]],[[0.040017627179623,-0.078868128359318,0.039943933486938],[-0.12360237538815,-0.051396433264017,0.021700240671635],[-0.034514840692282,-0.061832614243031,-0.0024422041606158]],[[-0.05766648426652,-0.066470578312874,0.027735838666558],[-0.062023147940636,-0.14823587238789,-0.047840408980846],[0.037228986620903,-0.13350607454777,-0.01357371173799]],[[0.028540330007672,-0.054577760398388,-0.048732560127974],[0.040137346833944,0.020749110728502,0.0012479359284043],[-0.054880332201719,-0.071210473775864,-0.019269704818726]],[[-0.16626504063606,-0.16782978177071,0.043785959482193],[-0.059239905327559,-0.14972451329231,-0.11811396479607],[0.12258908897638,-0.036568593233824,-0.084083899855614]],[[0.0077596111223102,0.045062132179737,0.039734393358231],[-0.044230870902538,0.036221317946911,0.052912201732397],[-0.084517635405064,-0.053670011460781,-0.038625873625278]],[[-0.028436070308089,-0.039289519190788,-0.067448392510414],[0.12957653403282,0.028120141476393,0.050731759518385],[0.012061121873558,-0.034721869975328,-0.047884661704302]],[[-0.013913388364017,0.05699597671628,-0.013292221352458],[0.030257571488619,0.079406566917896,-0.082438550889492],[0.050443686544895,-0.0060975030064583,0.0032575880177319]],[[-0.091578930616379,-0.14872986078262,0.039268307387829],[0.12939077615738,0.0049077672883868,-0.14214116334915],[0.073846109211445,-0.011585124768317,-0.07695596665144]],[[-0.047383084893227,-0.017787579447031,-0.15408305823803],[-0.074721068143845,-0.040354520082474,-0.14677940309048],[-0.096259646117687,-0.093006037175655,-0.041113514453173]],[[0.032736979424953,-0.072042644023895,-0.0060179564170539],[-0.051709681749344,-0.008627281524241,-0.058644868433475],[-0.21734966337681,-0.16138710081577,-0.15337140858173]],[[-0.14029650390148,-0.083915248513222,0.061557281762362],[-0.0064605008810759,-0.022192737087607,-0.015262003056705],[-0.058566637337208,0.081714473664761,-0.022439299151301]],[[-0.02456016279757,0.10502871125937,0.0070684254169464],[-0.00033319753129035,-0.025770967826247,0.047282859683037],[0.01275141723454,0.033431518822908,0.014161647297442]],[[-0.022136989980936,-0.056294396519661,-0.24858969449997],[-0.15318733453751,-0.037309654057026,-0.073456421494484],[-0.082304611802101,0.051944430917501,0.05567891895771]],[[0.14264099299908,0.100067012012,-0.066429063677788],[0.058865617960691,-0.018042638897896,0.067595690488815],[0.084116257727146,-0.0078150276094675,0.071783468127251]],[[7.7101787610445e-05,0.12434262037277,0.029663801193237],[0.033211980015039,-0.1152468547225,0.065535180270672],[-0.096412271261215,-0.20847603678703,-0.054607149213552]],[[-0.07999736815691,-0.12217126041651,0.029856879264116],[-0.00032430270221084,-0.053097311407328,-0.1451561152935],[0.0018381450790912,-0.063801392912865,-0.047162920236588]],[[-0.088414415717125,0.00070949114160612,-0.066244676709175],[-0.040157552808523,0.0039316504262388,0.0054361396469176],[0.021677117794752,0.14993669092655,0.002648469991982]],[[0.0045951763167977,0.1175731793046,0.11692009866238],[-0.1472819596529,-0.028573047369719,0.035039447247982],[-0.13058938086033,-0.034791901707649,-0.01471742708236]],[[0.018682980909944,-0.03321273997426,-0.014743305742741],[-0.037527438253164,0.043361093848944,-0.0798065289855],[0.025238201022148,0.01630992628634,0.01893131621182]],[[0.087243027985096,-0.015785466879606,0.091842152178288],[-0.098869435489178,0.00081532791955397,-0.0043254201300442],[-0.065245471894741,-0.15720671415329,0.035380374640226]],[[0.088380865752697,0.062649197876453,0.1770099401474],[0.019435171037912,0.042769931256771,-0.046771444380283],[-0.06529675424099,0.057925693690777,0.058996915817261]],[[-0.094349324703217,0.030299220234156,-0.0081285061314702],[-0.16054265201092,-0.053857889026403,0.031861674040556],[-0.037204820662737,0.12120448052883,0.2802759706974]],[[-0.010243820957839,-0.056586034595966,0.12052510678768],[-0.084832102060318,0.0033440787810832,-0.19660909473896],[-0.097549520432949,-0.10627216100693,0.020133068785071]],[[-0.14472076296806,-0.15555235743523,-0.17183437943459],[-0.11100091040134,0.013106809929013,-0.12545917928219],[-0.034664630889893,-0.021980557590723,0.039311707019806]],[[-0.069308713078499,-0.043556336313486,0.034131031483412],[-0.034036010503769,-0.051019236445427,0.0125319249928],[0.027065861970186,-0.036877453327179,-0.0519053414464]],[[0.028983814641833,0.040272206068039,-0.033276900649071],[0.004988971631974,-0.038872700184584,0.024994945153594],[0.065094240009785,0.024765035137534,-0.0024638150352985]],[[-0.086154259741306,-0.12796983122826,0.05311518907547],[0.0040479004383087,-0.0019711013883352,0.040596473962069],[-0.023462267592549,-0.034575525671244,0.0058878865092993]],[[-0.021352007985115,-0.082917489111423,0.055142421275377],[-0.038413867354393,-0.15126170217991,0.12969894707203],[-0.051325362175703,0.041836481541395,-0.094478636980057]],[[0.051315452903509,0.015462098643184,0.037151034921408],[-0.012236742302775,0.020713785663247,-0.14469470083714],[0.026554442942142,0.021918445825577,-0.085075989365578]],[[-0.021886892616749,0.14351043105125,-0.085710383951664],[0.026855148375034,0.089549668133259,0.11917916685343],[0.0090264892205596,0.031949318945408,-0.16721974313259]],[[0.079428039491177,0.029636807739735,-0.00034238555235788],[0.04634415730834,-0.10214263945818,-0.06243396922946],[-0.036737691611052,0.037654489278793,-0.071122393012047]],[[-0.26036807894707,-0.048564825206995,0.1450320482254],[0.0034140532370657,-0.042486421763897,-0.063913024961948],[0.054210487753153,0.051887065172195,-0.29025492072105]]],[[[0.058745745569468,0.036592200398445,0.12939269840717],[0.017177123576403,-0.045492481440306,-0.038694560527802],[-0.10050489008427,-0.058414801955223,0.042674861848354]],[[-0.010165931656957,-0.025003887712955,0.10111892968416],[-0.050266772508621,0.012068049050868,-0.046988092362881],[-0.011575852520764,-0.10133200883865,0.010345615446568]],[[-0.058050502091646,-0.0045120217837393,0.010133924894035],[0.092849418520927,-0.0060852128081024,0.011333461850882],[-0.01362178940326,-0.057129789143801,0.11118429154158]],[[-0.020491372793913,0.019265908747911,0.067513406276703],[-0.048941142857075,0.078163251280785,-0.028400784358382],[-0.054496113210917,-0.00069087941665202,0.048899114131927]],[[0.11589565873146,-0.059417188167572,0.070996023714542],[-0.0077916937880218,-0.02449326403439,0.058448810130358],[0.10440558940172,-0.063362210988998,-0.020176645368338]],[[-0.034303557127714,0.016754902899265,-0.039857413619757],[-0.031447540968657,-0.042601488530636,-0.059769485145807],[-0.0074992664158344,0.00046239487710409,-0.0078387847170234]],[[-0.076182156801224,-0.069046348333359,-0.030424706637859],[0.11449475586414,-0.037953697144985,-0.064174495637417],[-0.026326108723879,0.099447458982468,0.085683226585388]],[[0.07151173055172,-0.020691268146038,-0.14898766577244],[0.022672660648823,0.029401892796159,0.0028163243550807],[-0.029506843537092,-0.032932329922915,0.028584457933903]],[[-0.017405806109309,0.042028725147247,-0.0055612954311073],[0.017621573060751,0.082919783890247,-0.0075055528432131],[0.034678749740124,0.043438084423542,-0.0092763165012002]],[[0.050188671797514,0.058591227978468,0.0052487491630018],[0.018415352329612,0.04954569041729,0.025495087727904],[-0.091928541660309,0.074198640882969,0.016968581825495]],[[-0.063310965895653,0.014341626316309,0.038016553968191],[0.0065894266590476,0.0082849785685539,-0.05259395763278],[-0.024783432483673,-0.0104492707178,0.056033171713352]],[[0.086315609514713,0.12683402001858,0.0042177299037576],[0.0011536640813574,-0.011299859732389,-0.023791654035449],[0.024376923218369,-0.13498738408089,-0.017662391066551]],[[0.037907499819994,0.009206922724843,0.10701581090689],[0.12970355153084,-0.007720566354692,0.023278815671802],[-0.012561892159283,-0.012200487777591,0.025890378281474]],[[-0.15160804986954,0.089989006519318,0.0052661779336631],[-0.034698776900768,-0.04629860073328,0.042517237365246],[0.03217576816678,0.078337125480175,0.05120911821723]],[[0.094200201332569,-0.032284203916788,0.10870721936226],[-0.078453086316586,-0.026268331333995,0.016379646956921],[0.017042187973857,0.087168768048286,-0.014104279689491]],[[0.027364306151867,-0.058533933013678,-0.0064293020404875],[-0.054537277668715,-0.0039395573548973,-0.045851092785597],[0.07230856269598,0.11988405883312,-0.074041850864887]],[[-0.033345337957144,0.041920695453882,-0.067292660474777],[0.016225503757596,0.012841650284827,-0.064661785960197],[0.073394566774368,0.12601579725742,-0.032548099756241]],[[0.028549568727612,-0.015349278226495,-0.017500916495919],[0.060081791132689,0.10351145267487,-0.054671332240105],[0.028494920581579,0.033191155642271,0.067827336490154]],[[0.14604486525059,-0.056088384240866,0.0017557934625074],[-0.045293390750885,-0.12837672233582,-0.18053790926933],[0.053179174661636,-0.053528357297182,0.052946880459785]],[[-0.047370996326208,0.029491996392608,0.0088116033002734],[0.10244731605053,-0.038330856710672,0.0059679159894586],[-0.085300348699093,-0.072234988212585,-0.017156425863504]],[[-0.017117857933044,0.0030212397687137,-0.084362722933292],[0.0860955119133,0.041426006704569,-0.015642464160919],[0.070650950074196,-0.0073441746644676,-0.063355550169945]],[[0.0098393633961678,0.0079695200547576,0.10275610536337],[-0.034924685955048,-0.025715256109834,0.0093321651220322],[0.11674704402685,-0.020441390573978,-0.019435660913587]],[[-0.10550861805677,-0.054031144827604,-0.013879993930459],[0.07383169978857,-0.024033535271883,-0.036529768258333],[0.085214897990227,-0.058257970958948,0.10693613439798]],[[-0.050908651202917,-0.082844890654087,0.020915351808071],[-0.089017316699028,0.10426980257034,0.028532929718494],[0.052583508193493,0.067492179572582,0.061960529536009]],[[-0.067894198000431,-0.060758281499147,-0.037735283374786],[-0.017775073647499,0.029284348711371,0.044586982578039],[-0.058320447802544,-0.030813170596957,0.076577119529247]],[[-0.057504966855049,0.03175013512373,0.02689841017127],[0.10516965389252,0.0062174606136978,0.02764879539609],[-0.083055011928082,-0.040993947535753,-0.038276329636574]],[[-0.023409413173795,0.069952629506588,-0.0030455191154033],[-0.064028419554234,0.12930949032307,-0.0073677417822182],[0.00097639102023095,0.034186437726021,0.1069822460413]],[[0.11201050132513,-0.075793363153934,0.06664165854454],[-0.083747342228889,0.11410120129585,-0.012946388684213],[-0.037488792091608,0.018873391672969,-0.028855461627245]],[[-0.044675469398499,0.10146667808294,-0.053947001695633],[0.1260574311018,0.051437694579363,0.038702495396137],[0.034628555178642,-0.011110625229776,-0.071974024176598]],[[0.11332684755325,-0.035666339099407,-0.0016308539779857],[-0.056909240782261,-0.08806486427784,0.036628518253565],[-0.0020883451215923,0.015280676074326,0.020096778869629]],[[-0.018065886572003,-0.0098422020673752,0.068823054432869],[-0.0087174940854311,-0.080123089253902,-0.0099752005189657],[0.040349122136831,0.010880136862397,-0.049222316592932]],[[0.0024944085162133,0.013021500781178,-0.062592007219791],[0.031432438641787,-0.032331623136997,0.065206326544285],[0.0031619651708752,0.079470366239548,-0.059121675789356]],[[0.072274789214134,0.052366439253092,0.14589811861515],[0.090297527611256,-0.042650610208511,-0.092879869043827],[-0.10168316960335,-0.07315769046545,-0.040872871875763]],[[-0.22377821803093,-0.069978944957256,0.10151067376137],[-0.023131025955081,0.09439879655838,0.11304914206266],[0.068224795162678,0.022143092006445,0.030073758214712]],[[0.068811483681202,-0.011246002279222,-0.034509904682636],[0.074173606932163,-0.031789693981409,-0.16714112460613],[0.11746492981911,-0.050149731338024,0.052413873374462]],[[0.015941815450788,-0.025012204423547,0.10065556317568],[-0.023364655673504,-0.081040740013123,0.028886435553432],[0.017959652468562,0.054481729865074,0.089154995977879]],[[0.087772957980633,0.08924014121294,-0.021924022585154],[0.02270926348865,-0.10219928622246,-0.094608001410961],[0.07428228110075,-0.0053205229341984,-0.11490047723055]],[[-0.10215663909912,0.012731322087348,0.15006150305271],[0.015612888149917,0.066639363765717,0.0028127497062087],[-0.0093373162671924,0.0068221115507185,0.0088051166385412]],[[0.099293418228626,0.11618275940418,0.15670865774155],[0.15104568004608,0.097022578120232,0.15308168530464],[0.14099472761154,0.14011615514755,0.10390980541706]],[[0.10427406430244,-0.052549496293068,0.091182969510555],[0.12146469950676,0.080852098762989,0.050630006939173],[0.11056064814329,-0.0065622478723526,0.0095735788345337]],[[0.02459330484271,-0.05659756064415,0.036528762429953],[0.0038739927113056,0.041614625602961,-0.08263897895813],[-0.012196192517877,0.0021913456730545,-0.029719470068812]],[[0.014639495871961,0.061366345733404,0.030125511810184],[0.050543446093798,-0.055674433708191,-0.022206472232938],[0.082932516932487,-0.065856873989105,0.063098452985287]],[[0.13004389405251,0.13101676106453,0.025158770382404],[-0.07754460722208,-0.062110532075167,0.024721005931497],[0.013577015139163,-0.03506314009428,-0.011977324262261]],[[-0.035559020936489,0.031348872929811,0.0043597249314189],[0.035758212208748,0.071774698793888,0.042799703776836],[0.011136102490127,-0.00070982647594064,0.024176636710763]],[[0.071757383644581,0.015254841186106,0.058464556932449],[0.0893814265728,-0.041159700602293,0.031665839254856],[0.065236739814281,0.035587098449469,-0.011603186838329]],[[0.020487578585744,-0.06247952952981,-0.088977970182896],[0.085407473146915,0.019219199195504,-0.16663677990437],[0.092438727617264,0.025970732793212,-0.0016902899369597]],[[0.10543467104435,-0.097117938101292,0.030621966347098],[-0.010574500076473,0.097384758293629,0.04553609341383],[-0.04624617472291,-0.095908991992474,0.0012614033184946]],[[0.090380795300007,0.035701259970665,0.078984446823597],[-0.049745041877031,-0.046759176999331,0.11867565661669],[0.05152990296483,-0.089904829859734,0.060258388519287]],[[-0.013720512390137,-0.032163418829441,0.010798322968185],[-0.041679706424475,0.063633471727371,-0.013819041661918],[0.069080099463463,-0.057263553142548,0.018426587805152]],[[0.06288804858923,0.15851123631001,-0.020054349675775],[0.034117348492146,0.16027848422527,0.041361354291439],[0.022894280031323,-0.051000207662582,0.013099231757224]],[[0.014586990699172,-0.05513172224164,0.060983940958977],[-0.11807636916637,0.0066582155413926,0.0063289748504758],[0.073621585965157,0.013359843753278,0.070829637348652]],[[0.073039293289185,0.040014334022999,-0.021935906261206],[-0.034704208374023,0.029195314273238,0.095114216208458],[0.00037479645106941,0.013236451894045,0.072924815118313]],[[-0.028144549578428,0.038631502538919,0.0042953798547387],[0.088100343942642,-0.072445936501026,0.083709426224232],[-0.037940926849842,0.066860340535641,-0.045008648186922]],[[0.0451082251966,-0.015889722853899,0.022725513204932],[-0.033828798681498,-0.0057804435491562,0.030777469277382],[0.042598582804203,0.036113686859608,-0.016525926068425]],[[0.018887653946877,-0.016681147739291,0.11668013036251],[-0.03208352252841,-0.14089669287205,0.072569794952869],[-0.005012986715883,0.052959010004997,0.02235784381628]],[[-0.021517043933272,0.076575674116611,-0.087732680141926],[0.013331651687622,0.05648198351264,0.032262034714222],[0.039876841008663,-0.0024157969746739,0.030644347891212]],[[0.1390500664711,0.14167207479477,0.1074228361249],[0.098220393061638,0.25703582167625,0.11199516057968],[0.07468056678772,0.18904572725296,0.068118274211884]],[[-0.0068497708998621,-0.056459795683622,0.037329185754061],[-0.032994080334902,-0.060069013386965,0.033180121332407],[0.081489652395248,0.060804314911366,0.017631068825722]],[[-0.029628122225404,-0.0034211829770356,-0.051779575645924],[-0.058559346944094,0.085592329502106,0.05114397034049],[-0.0072509618476033,-0.069218158721924,0.034858237951994]],[[-0.015360440127552,0.024203045293689,-0.023709988221526],[0.0065205246210098,-0.055030070245266,-0.08605632930994],[0.098451070487499,0.17189688980579,0.026678755879402]],[[0.00093169894535094,-0.027939410880208,-0.033394988626242],[-0.027468642219901,0.034558564424515,-0.017009522765875],[0.026330938562751,0.054680362343788,0.16407789289951]],[[-0.047808811068535,-0.094163998961449,-0.0048384694382548],[0.25440841913223,0.00087545794667676,0.067149370908737],[-0.02579846791923,0.26710939407349,-0.075559243559837]],[[0.018212389200926,0.0060511217452586,0.03187583386898],[-0.019075330346823,-0.037978194653988,0.0036145551130176],[0.094448603689671,-0.010830491781235,-0.0060707200318575]],[[-0.051370427012444,0.067922502756119,0.074987217783928],[0.014924610033631,-0.0090341996401548,-0.052029877901077],[-0.07673255354166,-0.040990799665451,0.064738653600216]]],[[[0.006463828496635,-0.0094601642340422,0.051680106669664],[-0.01516636647284,-0.0069746398366988,0.038089543581009],[0.018609862774611,-0.075540199875832,0.021283812820911]],[[-0.01898006349802,0.13769200444221,-0.099754981696606],[-0.021243862807751,-0.013717632740736,-0.00088113400852308],[0.050153568387032,0.098443619906902,0.028373913839459]],[[-0.010063178837299,-0.008140024729073,-0.0037268758751452],[-0.0011774278245866,-0.063945695757866,-0.010170237161219],[0.012782475911081,-0.009724136441946,0.036414936184883]],[[0.029886668547988,0.07040935754776,0.015583459287882],[0.022859238088131,-0.041702002286911,0.054166741669178],[0.11991968750954,0.06728271394968,-0.067546173930168]],[[0.055648550391197,-0.05400949716568,-0.0032553980126977],[-0.020957693457603,0.023934302851558,0.052679590880871],[0.0030874612275511,0.030091775581241,-0.0029011652804911]],[[0.067502565681934,0.089337006211281,0.014147949405015],[-0.010209099389613,-0.11520159989595,0.12285394221544],[-0.064864121377468,-0.0012595945736393,0.022461218759418]],[[-0.073249876499176,0.045952767133713,0.0062428978271782],[0.046575821936131,-0.057114966213703,-0.044948879629374],[0.033291671425104,-0.079376481473446,-0.021684946492314]],[[-0.017828091979027,0.016087301075459,-0.037108458578587],[-0.12591607868671,-0.011984186246991,-0.0023060583043844],[0.028047876432538,-0.030916376039386,-0.058992989361286]],[[0.029463516548276,0.045167155563831,-0.05535089597106],[-0.032194692641497,-0.025490231812,-0.020419837906957],[0.062151398509741,0.0043219118379056,-0.004013339523226]],[[0.10136761516333,0.049241725355387,0.038544498383999],[-0.046691503375769,0.047132007777691,0.018916929140687],[-0.050920445472002,-0.024720234796405,-0.0004283718590159]],[[-0.02668141014874,0.062426786869764,-0.04230398312211],[-0.061216212809086,-0.082250230014324,0.09188649058342],[-0.060177572071552,-0.046838883310556,0.059564504772425]],[[-0.0086550069972873,0.042123414576054,-0.059216149151325],[-0.044636808335781,0.0067886374890804,0.037567719817162],[-0.065644562244415,0.05198872461915,0.028459159657359]],[[0.25534418225288,0.046742327511311,0.039732623845339],[0.093310557305813,0.044031873345375,0.063480697572231],[0.096464425325394,0.1409010887146,-0.01017152145505]],[[-0.04916125535965,0.090177483856678,0.0506701618433],[0.072161301970482,-0.031892828643322,0.034454591572285],[0.11940747499466,-0.11629571020603,0.018244525417686]],[[-0.048560284078121,-0.045299869030714,0.010809851810336],[0.0037741956766695,0.033154904842377,-0.0088845454156399],[0.012168887071311,0.044464930891991,-0.080822996795177]],[[-0.06751462072134,0.025041982531548,0.10229952633381],[-0.067590825259686,-0.050611741840839,-0.0084754778072238],[-0.0017340256599709,0.04822389408946,0.017331276088953]],[[-0.013087976723909,-0.048406109213829,0.009103624150157],[-0.034434963017702,-0.050339821726084,0.037784025073051],[-0.044989570975304,0.064178049564362,0.11298225820065]],[[0.09643592685461,0.029581390321255,-0.01904309540987],[-0.022714670747519,-0.027648949995637,-0.031532905995846],[0.039180513471365,-0.15435907244682,-0.044704336673021]],[[-0.012557934038341,0.020479436963797,0.0076476153917611],[0.11209779977798,0.061761993914843,0.026959808543324],[-0.015274018980563,0.064049869775772,0.015291268005967]],[[-0.024710794910789,0.043037686496973,-0.025094896554947],[0.095005713403225,-0.030257727950811,0.029705964028835],[0.016832740977407,0.05770231038332,-0.044977009296417]],[[-0.013801577500999,0.10858129709959,0.052562523633242],[0.027430549263954,0.071234308183193,-0.021799243986607],[0.097353018820286,-0.062811978161335,0.042905643582344]],[[0.055044185370207,0.031044322997332,0.086484655737877],[0.041533902287483,0.019422290846705,0.0088313398882747],[0.019986882805824,0.040088005363941,-0.013983927667141]],[[-0.0031889767851681,0.0072913654148579,0.020033404231071],[-0.042925875633955,0.023777266964316,-0.0026906686834991],[-0.020156206563115,0.051943518221378,-0.053617849946022]],[[0.059564474970102,0.031838592141867,0.045636657625437],[0.078413784503937,-0.0087790759280324,-0.014264537021518],[-0.06579103320837,-0.071849226951599,-0.13238951563835]],[[-0.020620727911592,-0.039558380842209,-0.011167639866471],[0.08508737385273,0.050572272390127,0.11487351357937],[0.062576681375504,-0.19226029515266,-0.039006184786558]],[[0.050452746450901,0.026369402185082,0.021669529378414],[0.031718757003546,0.047129515558481,0.024009961634874],[-0.080457516014576,0.0084481239318848,0.11826418340206]],[[-0.020124198868871,0.049259763211012,0.023763215169311],[-0.02219408378005,0.0027226291131228,-0.017919527366757],[-0.03580229729414,-0.043531093746424,0.023780168965459]],[[0.14951765537262,-0.02621953189373,0.044694535434246],[-0.02850478515029,0.017861109226942,0.085837550461292],[0.10903634876013,-0.046311646699905,-0.05356315523386]],[[-0.017698761075735,0.11212339997292,0.018758002668619],[0.070035800337791,-0.087599903345108,-0.043963141739368],[-0.11351972073317,0.13631215691566,0.059491112828255]],[[-0.0079902606084943,-0.030306622385979,-0.024761695414782],[-0.018087821081281,0.10646674782038,0.049592521041632],[0.0067257205955684,0.010918046347797,-0.023210242390633]],[[0.060516182333231,-0.0041155354119837,-0.025597352534533],[-0.0051929042674601,0.037816882133484,0.0024823385756463],[-0.037650231271982,0.034584354609251,0.01162988319993]],[[0.006334759760648,0.04131082072854,-0.01848610676825],[0.042486716061831,-0.03017695993185,0.044132322072983],[-0.0052892505191267,-0.045998111367226,0.075617082417011]],[[0.1885397285223,-0.039053700864315,-0.025145569816232],[-0.030467988923192,-0.01566350273788,-0.045543324202299],[0.014142381027341,0.072369806468487,-0.13873092830181]],[[0.10908076167107,0.05641357973218,0.070473395287991],[-0.028217822313309,-0.024376852437854,-0.0435546413064],[-0.066393703222275,-0.02857880294323,-0.0302824229002]],[[-0.026086952537298,0.017944999039173,0.023900907486677],[0.01969950273633,0.072495855391026,0.024393975734711],[-0.040533002465963,0.03599788621068,0.0036733141168952]],[[-0.023637801408768,0.025518976151943,0.085553869605064],[-0.032280515879393,-0.0088706472888589,0.052025359123945],[-0.079546175897121,-0.035815130919218,0.086090318858624]],[[-0.015686340630054,0.073426619172096,0.044214393943548],[0.042296007275581,0.0061106006614864,0.013235944323242],[0.03485906124115,-0.0052210572175682,0.024553077295423]],[[-0.013257154263556,-0.036904212087393,0.020566483959556],[-0.068318903446198,0.018377333879471,0.013556545600295],[0.06115135923028,-0.092023603618145,0.10895158350468]],[[0.049067880958319,0.024393856525421,-0.041536137461662],[0.030905852094293,-0.060550898313522,-0.079786531627178],[0.01560843270272,0.05148683860898,-0.050692476332188]],[[0.065229468047619,0.025158235803246,0.12592895328999],[0.07675901055336,0.13720573484898,0.020130969583988],[-0.0094764297828078,0.060934629291296,-0.047591626644135]],[[-0.068435534834862,-0.012983082793653,0.043496187776327],[0.095471806824207,0.022989619523287,-0.011725119315088],[0.039094161242247,0.029598232358694,0.034139413386583]],[[0.017157817259431,-0.11669193953276,-0.15959820151329],[0.041006080806255,0.11365406215191,-0.16780385375023],[-0.058785412460566,-0.028322104364634,-0.050696905702353]],[[-0.009875918738544,-0.13618433475494,0.13210168480873],[-0.043391402810812,0.079916149377823,0.086986228823662],[0.055350165814161,-0.038208693265915,0.066209010779858]],[[-0.036837160587311,0.086143374443054,-0.023038735613227],[0.013117039576173,-0.006710859015584,0.06208024546504],[-0.019620830193162,-0.15159663558006,-0.011425442062318]],[[0.042965151369572,0.018520008772612,0.086097896099091],[0.019206384196877,0.073313817381859,-0.0034256931394339],[-0.035693153738976,0.047161728143692,-0.039869215339422]],[[0.0081640994176269,-0.10656667500734,0.17273877561092],[-0.040270570665598,0.053444337099791,-0.087554901838303],[-0.014393333345652,0.00048037871601991,0.091978557407856]],[[0.008477590046823,-0.10755977034569,-0.012431885115802],[0.096628770232201,0.047573447227478,-0.071379996836185],[-0.059177689254284,-0.082819849252701,-0.14295971393585]],[[-0.053406413644552,-0.015543065033853,-0.08735017478466],[-0.078393772244453,0.036816775798798,-0.052621066570282],[0.036869186908007,-0.019478797912598,0.037769794464111]],[[-0.06354408711195,0.038296584039927,0.002143831923604],[-0.0077074584551156,0.042073145508766,-0.041494861245155],[0.042854763567448,-0.0026925930287689,0.043871603906155]],[[-0.016700264066458,0.010468198917806,0.033601149916649],[-0.0064410287886858,0.092521205544472,0.052903454750776],[-0.056967183947563,0.014887862838805,-0.011423301883042]],[[-0.043381709605455,-0.047111071646214,-0.045829698443413],[0.01740532182157,-0.068793870508671,-0.096259027719498],[-0.088273547589779,-0.093561746180058,-0.085036866366863]],[[0.066182225942612,0.019559886306524,0.057482324540615],[0.072465650737286,0.020191915333271,-0.010962950065732],[0.17076578736305,0.058044068515301,-0.060638252645731]],[[-0.032836873084307,-0.056104488670826,-0.031767223030329],[-0.027612036094069,-0.072930984199047,-0.027964817360044],[-0.012285652570426,-0.0018003531731665,0.035375107079744]],[[0.072731770575047,-0.06146689131856,-0.022046539932489],[0.02892467007041,-0.010768560692668,0.0052152844145894],[0.043546035885811,0.046977244317532,0.037673626095057]],[[0.049640860408545,0.010017207823694,-0.086944580078125],[0.068859718739986,0.018064014613628,-0.011579553596675],[-0.035679277032614,0.073098547756672,-0.032823029905558]],[[0.025571502745152,0.056786827743053,0.049451161175966],[-0.22198508679867,-0.10564948618412,0.0092162974178791],[-0.15727944672108,-0.0081763891503215,-0.076750613749027]],[[-0.051336750388145,-0.023863257840276,-0.023566363379359],[-0.052593532949686,-0.021408306434751,-0.063513070344925],[0.028843089938164,-0.096064351499081,-0.15614914894104]],[[0.0139414453879,0.0029480298981071,0.022401835769415],[0.069310866296291,0.062400177121162,0.15435042977333],[0.012545851059258,-0.073026813566685,0.00328767625615]],[[0.12173704057932,-0.0057322420179844,0.022465886548162],[-0.019712723791599,-0.046699125319719,0.054822597652674],[-0.057423889636993,-0.012200515717268,-0.087726980447769]],[[-0.0048177936114371,-0.047446582466364,0.089105948805809],[0.01968059875071,-0.049303993582726,0.047295283526182],[0.013084138743579,-0.096159502863884,-0.025444747880101]],[[-0.038837630301714,-0.059068635106087,-0.027822105214],[-0.025150686502457,0.021600022912025,0.017385624349117],[-0.062551148235798,0.030307717621326,-0.01624133810401]],[[0.0023869136348367,0.055463545024395,0.12589839100838],[0.024082789197564,0.1137130856514,0.12039863318205],[0.15881185233593,0.071439161896706,0.15628024935722]],[[0.021841479465365,0.01333234924823,0.017913604155183],[-0.0015377111267298,0.041469190269709,0.012029929086566],[0.077862858772278,0.09596735984087,0.10354928672314]],[[0.13441804051399,-0.020594077184796,0.051276184618473],[-0.0023334138095379,0.02050874941051,-0.021131353452802],[-0.036949064582586,0.041154835373163,0.11074882000685]]],[[[-0.19555675983429,-0.018275240436196,-0.024346958845854],[-0.0013081055367365,0.020563568919897,-0.10118389129639],[0.0086732842028141,0.075899787247181,0.04494421556592]],[[0.06278620660305,-0.00084319501183927,-0.10389002412558],[0.095940142869949,0.080346509814262,0.047524828463793],[-0.046000987291336,-0.12469240278006,-0.017099430784583]],[[0.056458070874214,0.016386989504099,-0.073302894830704],[0.067349925637245,0.044853180646896,-0.14541830122471],[0.053963806480169,0.043496079742908,0.044984836131334]],[[-0.02358315512538,-0.063882991671562,0.045712534338236],[-0.12215092033148,-0.10698039084673,-0.065538249909878],[0.05366849526763,-0.050157286226749,-0.021896554157138]],[[0.00015194872685242,0.086933076381683,-0.023527955636382],[0.062589555978775,0.065070733428001,-0.042721088975668],[-0.042186222970486,-0.039326906204224,-0.082604184746742]],[[0.090842179954052,0.026123175397515,0.11988193541765],[0.018869576975703,-0.0023642249871045,0.069932609796524],[-0.0063692410476506,-0.038176629692316,0.026022834703326]],[[0.041536066681147,-0.023051189258695,0.066788271069527],[0.058285545557737,-0.095180369913578,-0.02306848205626],[0.051932815462351,-0.0027260556817055,-0.036813333630562]],[[-0.01779505237937,-0.02509231865406,0.037620726972818],[-0.030350673943758,-0.030143395066261,0.04999278113246],[-0.0064723649993539,0.027593735605478,0.035857245326042]],[[0.031557109206915,-0.001892757602036,0.056128121912479],[-0.019904548302293,0.0009250448201783,-0.01058647967875],[-0.023359399288893,-0.047410514205694,-0.019222490489483]],[[-0.039506819099188,0.1428486853838,0.028965277597308],[-0.096279792487621,-0.1061834320426,-0.046496547758579],[-0.098863892257214,-0.027457846328616,-0.064919710159302]],[[0.035787984728813,-0.042955368757248,0.033966355025768],[0.056600943207741,0.071885697543621,-0.065944381058216],[0.010104179382324,0.02358503639698,-0.051571890711784]],[[-0.0033856045920402,-0.12196777015924,-0.1764697432518],[-0.062435243278742,-0.065937057137489,-0.20439833402634],[0.010362106375396,-0.063707679510117,-0.1274257004261]],[[-0.084468133747578,-0.095035515725613,0.075286336243153],[0.062342938035727,-0.056243807077408,0.030082384124398],[0.0041751670651138,0.023013073951006,0.099067091941833]],[[0.098899215459824,-0.0043429313227534,-0.043567661195993],[-0.008965183980763,0.036680903285742,0.13991041481495],[0.02651928178966,-0.020829934626818,-0.0064411880448461]],[[0.0034138080663979,-0.03568047657609,-0.09007965028286],[0.063161037862301,-0.047022450715303,-0.053715743124485],[0.034893650561571,0.021190309897065,-0.11054279655218]],[[0.0032032853923738,0.018604720011353,0.11951334029436],[-0.074386961758137,-0.041626680642366,-0.015045546926558],[-0.0087178517132998,0.0063709020614624,-0.079279556870461]],[[0.2676382958889,0.018892360851169,-0.0082480404525995],[0.2059256285429,-0.014480117708445,0.040109518915415],[-0.03633726388216,0.046511378139257,0.043182343244553]],[[-0.16376069188118,0.057566214352846,-0.068229041993618],[-0.061437632888556,-0.027828989550471,-0.027658805251122],[-0.023976095020771,0.0414610914886,-0.017619961872697]],[[-0.047765426337719,0.12380096316338,0.052729450166225],[-0.038679167628288,0.10524999350309,0.050150610506535],[-0.20949248969555,-0.0057058986276388,0.027349557727575]],[[-0.028937662020326,-0.10239933431149,0.10933680832386],[0.091360583901405,0.10890049487352,-0.031721524894238],[0.012161176651716,-0.0057490048930049,-0.011917632073164]],[[-0.051951888948679,0.034836899489164,-0.11397874355316],[0.042286291718483,0.022106297314167,-0.029914190992713],[0.023620659485459,0.013701136223972,0.085734292864799]],[[0.10108122229576,0.10656355321407,-0.051991336047649],[-0.0031019656453282,0.016425462439656,-0.086534887552261],[0.12457703053951,0.096039101481438,0.0079510146752]],[[0.097644604742527,0.20050621032715,0.027473699301481],[-0.088108517229557,-0.12018412351608,-0.059770278632641],[-0.12629136443138,0.064790435135365,0.031844452023506]],[[-0.015723245218396,0.014294725842774,-0.01887034624815],[0.057161115109921,-0.18814907968044,-0.12346745282412],[-0.095798075199127,0.0094535630196333,-0.13360691070557]],[[-0.0085062207654119,-0.033177334815264,-0.030664565041661],[0.081194505095482,-0.048898182809353,0.020449472591281],[0.0053393519483507,-0.023085178807378,-0.12953905761242]],[[-0.11250818520784,0.054834105074406,0.060171619057655],[-0.044400479644537,-0.086364798247814,-0.19952484965324],[-0.043022628873587,0.095879226922989,-0.16120441257954]],[[0.020965250208974,0.092104248702526,0.025202833116055],[-0.019954094663262,0.047422476112843,0.055196423083544],[-0.032488256692886,-0.016286632046103,0.0341268889606]],[[0.10262133926153,0.008248807862401,0.0018996320432052],[-0.043380748480558,0.030651608482003,0.0068370783701539],[0.01571873947978,-0.12721687555313,0.14324463903904]],[[0.087910421192646,-0.14928030967712,-0.076559014618397],[0.093284547328949,0.013822036795318,-0.024847406893969],[-0.16421835124493,0.03912278264761,-0.027771843597293]],[[0.05090819299221,-0.066589154303074,0.036749809980392],[-0.019918018952012,0.035897973924875,0.029715247452259],[0.025530654937029,0.095710441470146,0.078791923820972]],[[-0.065054446458817,-0.040568888187408,-0.028173353523016],[-0.012921337969601,-0.16054075956345,-0.015815608203411],[-0.09982717782259,0.01216543186456,0.032501954585314]],[[0.01204243581742,-0.029261184856296,0.015848418697715],[-0.11224940419197,0.077187590301037,-0.041315112262964],[0.10091898590326,-0.035251710563898,0.018540158867836]],[[-0.10627331584692,-0.035594496876001,-0.04685615375638],[0.026918150484562,0.022509416565299,0.021913534030318],[-0.075430691242218,0.03772397339344,0.20174019038677]],[[0.056267511099577,0.091519899666309,-0.047453947365284],[0.13069824874401,0.1221177726984,-0.10219121724367],[0.055793322622776,0.01424755435437,-0.099841631948948]],[[0.029350137338042,-0.056644286960363,-0.084876522421837],[0.12045464664698,0.032018035650253,-0.1123683527112],[-0.031197464093566,0.087933883070946,-0.1210513189435]],[[0.17167674005032,0.042941685765982,0.060534678399563],[0.062384571880102,-0.030317321419716,-0.097476594150066],[0.067765675485134,-0.025077307596803,0.08838202804327]],[[0.046351127326488,-0.10469108819962,0.0079492405056953],[0.018275311216712,-0.069349303841591,0.053769167512655],[-0.00024710653815418,0.041361026465893,-0.12109091877937]],[[0.081766657531261,0.042826868593693,-0.060433883219957],[-0.018799440935254,-0.034739337861538,0.038241658359766],[0.069764479994774,-0.017284657806158,0.0083646140992641]],[[-0.017385510727763,0.057083461433649,-0.059102028608322],[0.051682900637388,-0.089064486324787,-0.032088454812765],[0.032799504697323,0.026447476819158,-0.16166320443153]],[[-0.0821872651577,0.075160183012486,0.10081261396408],[-0.073910839855671,-0.02448938600719,0.067072317004204],[-0.0049183727242053,-0.068118788301945,0.077618472278118]],[[-0.021659951657057,-0.058329943567514,-0.048378556966782],[-0.0033212346024811,-0.12494833022356,-0.10431856662035],[-0.044146355241537,0.08864239603281,0.015670727938414]],[[-0.014059304259717,-0.087465167045593,-0.014588195830584],[-0.058412875980139,-0.090709187090397,0.0095809148624539],[-0.00043401456787251,0.078452706336975,-0.042820159345865]],[[0.010698686353862,-0.13711002469063,-0.12838537991047],[0.059188257902861,0.017397046089172,-0.078151404857635],[0.0040844241157174,0.063087336719036,-0.17207713425159]],[[0.070728100836277,-0.036885190755129,-0.071214035153389],[-0.0058179888874292,-0.031044425442815,-0.0035768162924796],[0.0088437115773559,-0.019929382950068,-0.095158435404301]],[[0.077896282076836,-0.018375262618065,-0.042046584188938],[0.11850760877132,-0.0099781733006239,-0.10124973207712],[0.090233705937862,-0.0012168458197266,-0.11165585368872]],[[-0.13949272036552,0.089337654411793,0.067330405116081],[0.067634515464306,-0.042639534920454,0.0084586571902037],[0.16007459163666,0.0086363600566983,-0.071888767182827]],[[-0.012993746437132,-0.1213314011693,-0.12459193170071],[-0.0030873455107212,0.059790786355734,-0.031826201826334],[0.063315071165562,-0.013141333125532,-0.07213918864727]],[[0.012358831241727,-0.005839922465384,-0.070855967700481],[0.0082111172378063,0.01766762137413,0.03055302798748],[0.014133174903691,0.030586181208491,-0.0044542290270329]],[[-0.084956377744675,-0.080542288720608,-0.1002878844738],[0.02667654119432,-0.00099347473587841,-0.015255971811712],[-0.11041558533907,0.0021994840353727,-0.10859652608633]],[[-0.0086770923808217,0.023253524675965,-0.080042228102684],[-0.021800057962537,0.033915098756552,0.0137949436903],[0.015598684549332,0.068267233669758,0.0079586552456021]],[[0.14460988342762,-0.013039677403867,0.096954300999641],[-0.070167370140553,-0.027397207915783,-0.19996377825737],[0.12489438056946,-0.01595894433558,-0.094207800924778]],[[-0.056945789605379,0.092625170946121,0.036076258867979],[-0.15036088228226,-0.10816359519958,-0.029612662270665],[-0.0088396221399307,-0.045203059911728,-0.064325481653214]],[[0.091487437486649,0.03957624733448,-0.013532215729356],[-0.050246011465788,0.047641091048717,0.034099314361811],[0.04156481847167,-0.0044662752188742,0.071067057549953]],[[0.073430575430393,-0.19899462163448,-0.13670611381531],[-0.018944103270769,0.12315990775824,-0.068266548216343],[0.14022354781628,-0.032113544642925,-0.083539798855782]],[[0.086642071604729,-0.014995613135397,0.051312047988176],[0.035537675023079,0.017920225858688,-0.018647059798241],[0.033971332013607,-0.043553825467825,0.012656528502703]],[[-0.080676667392254,0.024113360792398,-0.0023734753485769],[0.02429655380547,-0.12777860462666,0.057912353426218],[0.053309038281441,-0.035782068967819,-0.025663014501333]],[[-0.067337639629841,-0.058501660823822,-0.048946242779493],[-0.025428514927626,-0.023506039753556,-0.016605101525784],[-0.0035903425887227,-0.09124818444252,0.016854392364621]],[[-0.19784452021122,0.047253537923098,0.062190219759941],[0.0063445381820202,-0.045329328626394,0.076685443520546],[-0.020240347832441,0.049891766160727,-0.086674347519875]],[[-0.14244495332241,-5.0206326704938e-06,0.081990845501423],[-0.0046346853487194,0.081478707492352,-0.047538120299578],[-0.01723968796432,0.031962294131517,0.028340769931674]],[[0.055014971643686,-0.00025045621441677,-0.064519718289375],[0.008752865716815,-0.051172688603401,-0.038351736962795],[0.074178501963615,0.060304474085569,0.01390914618969]],[[-0.059532295912504,-0.086830228567123,-0.10940629988909],[-0.0090032257139683,0.020014852285385,-0.069691255688667],[0.10267404466867,-0.02472797036171,-0.024990931153297]],[[-0.068351097404957,-0.018166653811932,0.10897152870893],[0.027941612526774,-0.071518257260323,-0.038091298192739],[-0.13674120604992,0.0035284021869302,-0.065013013780117]],[[0.09927798807621,0.10453327000141,-0.024922713637352],[0.060312401503325,-0.0013455669395626,-0.07791094481945],[0.18104231357574,-0.040080148726702,0.06239664927125]],[[-0.071490287780762,0.017559010535479,0.036954235285521],[-0.061451211571693,0.011444604955614,0.032184075564146],[0.063454732298851,-0.01720391958952,0.11330131441355]]],[[[0.052619222551584,-0.00023606128524989,0.11069460958242],[0.061578035354614,-0.087427839636803,-0.015987232327461],[0.0054612327367067,0.10366398096085,0.0042850463651121]],[[-0.020367860794067,-0.069692201912403,-0.0072342888452113],[-0.036990616470575,-0.07054790109396,0.062055822461843],[-0.070079490542412,-0.061783261597157,0.065785929560661]],[[-0.012483316473663,-0.0074573024176061,-0.036390855908394],[-0.010577040724456,0.059732109308243,0.0017972377827391],[-0.015136538073421,-0.056444257497787,-0.027733916416764]],[[0.034983418881893,0.064699575304985,-0.028314156457782],[0.038282532244921,0.11484751850367,0.010432546958327],[0.01187025103718,0.091564565896988,0.0077156652696431]],[[-0.03786214068532,-0.039139360189438,0.08381162583828],[0.025967068970203,-0.0843760445714,0.048237692564726],[-0.016754755750299,-0.064189746975899,0.054129790514708]],[[0.082523070275784,0.051549438387156,0.04225954040885],[-0.025659967213869,-0.035200137645006,-0.007281634490937],[0.0047976644709706,-0.00036909952177666,0.097706593573093]],[[0.018228702247143,-0.097283720970154,-0.003030072664842],[0.043383594602346,-0.021526210010052,-0.018775075674057],[0.075691640377045,0.09272076934576,0.016812628135085]],[[0.10421558469534,0.036352671682835,-0.0608049929142],[-0.095239989459515,-0.058996826410294,0.10205262154341],[0.027251306921244,-0.066926293075085,0.017860220745206]],[[0.013565055094659,0.016606086865067,-0.047084137797356],[-0.0052281068637967,0.099539950489998,0.00074293918441981],[0.049682632088661,-0.052928268909454,-0.085341654717922]],[[0.021911267191172,-0.070331357419491,-0.053830359131098],[0.091812446713448,-0.012338225729764,0.02796052582562],[0.0087694488465786,-0.084541775286198,-0.0072207297198474]],[[0.01114222034812,0.021662093698978,0.025773625820875],[-0.013700343668461,0.038017086684704,0.030617827549577],[-0.0044141076505184,0.015503451228142,0.036789778620005]],[[-0.00014919912791811,-0.057171922177076,-0.032055590301752],[0.012710981070995,0.0035973126068711,0.019401900470257],[0.020495200529695,0.028429197147489,-0.022054173052311]],[[-0.034286800771952,0.062589831650257,-0.0061003738082945],[-0.10375341027975,-0.0054383943788707,0.02676603384316],[-0.10531362146139,0.0056362492032349,-0.025458427146077]],[[0.05356827750802,-0.025188960134983,0.11011507362127],[-0.15094493329525,-0.1674649566412,0.023169688880444],[-0.051167476922274,-0.0055157216265798,-9.1680682089645e-05]],[[0.01590483635664,-0.096102058887482,-0.013745626434684],[-0.052714738994837,-0.063386611640453,0.024271532893181],[-0.020397191867232,0.033211816102266,-0.020324246957898]],[[-0.078556582331657,-0.033122912049294,0.066977195441723],[-0.0019288271432742,0.010904557071626,-0.0083753690123558],[-0.033204156905413,-0.10084532946348,0.011209288612008]],[[-0.030486013740301,-0.043078020215034,-0.071286909282207],[-0.018946938216686,0.040964592248201,0.070311471819878],[-0.032334309071302,0.075520105659962,-0.014704382047057]],[[0.059999406337738,0.023970670998096,-0.0017525959992781],[-0.039956241846085,0.0098460717126727,0.081523850560188],[0.10809507220984,-0.036728121340275,0.053071409463882]],[[0.059456668794155,-0.10344251990318,0.018380688503385],[0.063697054982185,-0.071923077106476,0.089196905493736],[0.045111145824194,-0.046623762696981,-0.035746738314629]],[[0.091256231069565,0.14973202347755,0.02170386351645],[-0.045677084475756,0.073330536484718,0.062638841569424],[0.066733129322529,0.073030337691307,0.046178378164768]],[[0.00072050286689773,-0.0049055861309171,-0.056223642081022],[0.14801609516144,0.066648453474045,-0.055314000695944],[-0.10080987215042,-0.011549227871001,-0.11885453015566]],[[0.0064435638487339,-0.024462072178721,-0.035745315253735],[0.086054630577564,0.00086344714509323,-0.13326735794544],[0.076030418276787,0.11514054983854,-0.00081717513967305]],[[0.00029653718229383,0.054739981889725,0.042404524981976],[0.047088328748941,-0.02971176430583,0.019275788217783],[-0.026821929961443,0.059580508619547,0.12496341019869]],[[-0.013161996379495,-0.0048396177589893,0.0037183337844908],[0.030420238152146,0.023947075009346,0.013994827866554],[0.027035342529416,-0.05077101290226,0.082204461097717]],[[0.032157104462385,-0.04038367420435,-0.015389860607684],[-0.099519826471806,0.030507097020745,0.022765951231122],[0.091416627168655,0.019602980464697,0.012997658923268]],[[-0.088135376572609,-0.072502605617046,0.013796699233353],[-0.063915610313416,-0.066221043467522,0.030256422236562],[0.065890692174435,0.19333434104919,0.082377217710018]],[[0.0024428982287645,-0.14913046360016,-0.006348776165396],[0.0079529536888003,0.0024459161795676,0.061631418764591],[-0.066320456564426,-0.05832052975893,-0.011948676779866]],[[0.038551062345505,0.083604000508785,0.021726135164499],[0.018259380012751,0.014971386641264,0.054596085101366],[-0.041432455182076,-0.073664836585522,0.034311361610889]],[[0.036694381386042,-0.061456583440304,0.019222280010581],[0.0045338179916143,-0.035027764737606,0.011556652374566],[-0.067551277577877,0.03599214553833,0.031188895925879]],[[-0.01016635261476,0.032215561717749,0.043587725609541],[0.030815951526165,0.040253505110741,0.015885604545474],[0.00076741835800931,0.0049150236882269,-0.033242955803871]],[[0.04740658774972,0.030806304886937,-0.012341663241386],[0.018355989828706,-0.030295610427856,-0.025471292436123],[0.023802485316992,0.00072602910222486,0.0037245482672006]],[[-0.11534774303436,0.088567495346069,-0.090718358755112],[-0.028600543737411,0.018423767760396,0.058886680752039],[0.079157754778862,0.013441671617329,0.12999849021435]],[[0.001261048601009,0.0029091171454638,0.045659180730581],[0.042073648422956,0.036613557487726,0.08203748613596],[-0.12476832419634,-0.031176883727312,0.050514336675406]],[[-0.24765656888485,0.037393875420094,-0.022163597866893],[-0.10699040442705,0.02871897444129,0.010775056667626],[-0.14150866866112,-0.0032148526515812,-0.042370826005936]],[[-0.022377356886864,0.02911513671279,0.023677948862314],[-0.11557327955961,0.013882745057344,-0.067479029297829],[-0.040831450372934,-0.0069702723994851,0.034229695796967]],[[0.022678485140204,-0.048821970820427,-0.047175377607346],[-0.042057614773512,-0.029559470713139,-0.018429607152939],[0.051421623677015,-0.061193268746138,0.016305092722178]],[[-0.038588058203459,-0.035884916782379,0.035971708595753],[-0.0027620275504887,0.14001294970512,0.041566524654627],[0.011948929168284,0.029339458793402,-0.055866654962301]],[[-0.040260978043079,-0.03548826649785,0.074703022837639],[-0.00032812781864777,0.11561790108681,0.03813224285841],[0.0070148301310837,-0.011413683183491,-0.0044683767482638]],[[-0.049683529883623,-0.0044034286402166,-0.11314244568348],[-0.023494130000472,-0.10030517727137,-0.11251759529114],[0.023793455213308,-0.10445343703032,0.024994656443596]],[[-0.065641574561596,0.039877258241177,0.086485140025616],[-0.011585740372539,0.014494684524834,-0.12827664613724],[0.0024205734953284,-0.044642526656389,-0.038255520164967]],[[-0.016441473737359,0.019842462614179,0.056602839380503],[0.0037638978101313,-0.067294098436832,-0.12210491299629],[0.034987088292837,0.02012219466269,-0.045795597136021]],[[0.059903003275394,0.032491873949766,-0.045222423970699],[-0.15729999542236,-0.02046730555594,0.018613964319229],[-0.064478144049644,-0.013152991421521,0.02030429802835]],[[-0.019688112661242,0.017307009547949,0.066664457321167],[-0.093415170907974,0.041338309645653,0.034202925860882],[-0.040959004312754,0.0072003803215921,-0.0034680990502238]],[[0.047229994088411,0.0015651730354875,-0.084280639886856],[-0.0054482547566295,0.16028057038784,-0.015799587592483],[0.075877696275711,-0.026929277926683,0.058393731713295]],[[-0.062972635030746,0.043519172817469,-0.075771830976009],[-0.095219328999519,-0.032191429287195,-0.033559396862984],[-0.14725659787655,-0.014422397129238,-0.073839224874973]],[[0.016257094219327,0.041543759405613,-0.10484082996845],[-0.043698571622372,0.060540080070496,-0.0062470128759742],[-0.021961880847812,0.06532346457243,0.063254274427891]],[[0.045532256364822,-0.0049216207116842,0.062337435781956],[-0.055418789386749,-0.074868120253086,0.0038037584163249],[-0.12005178630352,-0.1016448289156,0.015957040712237]],[[0.022164389491081,0.083377309143543,0.00068378646392375],[0.022791437804699,0.037791796028614,-0.073127642273903],[0.03453005105257,-0.067857801914215,0.047794863581657]],[[0.084294050931931,-0.032270591706038,-0.00142179755494],[0.019362157210708,-0.12387358397245,0.05235992372036],[0.017719894647598,-0.064181946218014,0.064296945929527]],[[0.038493633270264,-0.077092207968235,0.044958893209696],[0.029315190389752,0.05932704359293,0.035198755562305],[-0.10231340676546,-0.086767941713333,-0.027170898392797]],[[-0.012443100102246,0.12225279211998,0.03086094558239],[0.1488351970911,0.26037001609802,0.03240018710494],[-0.011131166480482,0.11386058479548,0.086408168077469]],[[0.031977862119675,0.030736099928617,0.039473783224821],[-0.042727459222078,0.013989944942296,0.028839806094766],[-0.093045704066753,-0.045020032674074,-0.022705474868417]],[[0.08276741206646,0.00095328659517691,-0.0092053012922406],[-0.054685920476913,-0.11084755510092,-0.13326172530651],[-0.12982977926731,-0.092162415385246,-0.03548838943243]],[[-0.019793381914496,0.039524655789137,0.029749607667327],[-0.088167384266853,-0.042388495057821,0.047980330884457],[0.024861766025424,0.037402547895908,0.033337976783514]],[[0.023888753727078,-0.04404379799962,0.04722660407424],[0.016578648239374,-0.047946058213711,0.066920891404152],[-0.048620373010635,-0.0083292191848159,0.051903281360865]],[[0.036648195236921,-0.028462203219533,-0.018463907763362],[0.11505182087421,0.0019217767985538,-0.053116198629141],[0.012480746023357,0.045348532497883,-0.10853890329599]],[[-0.02132973074913,-0.034662298858166,0.020959887653589],[0.042793147265911,-0.014459765516222,0.064905412495136],[-0.059666886925697,0.1124406978488,-0.12830382585526]],[[-0.018921654671431,0.015100723132491,-0.013468938879669],[0.060241911560297,-0.024593340232968,-0.10492877662182],[0.012172445654869,0.045537825673819,0.0036832098849118]],[[-0.16232688724995,-0.020913653075695,-0.11096935719252],[-0.011665269732475,0.13131700456142,0.050533480942249],[-0.096817657351494,0.050976283848286,-0.10267056524754]],[[0.006739848293364,0.0053960043005645,-0.00069874903419986],[-0.044242095202208,-0.098439790308475,0.069106191396713],[0.03025340102613,0.1386374682188,0.076795913279057]],[[0.0012945379130542,-0.074400156736374,-0.033998072147369],[0.012888824567199,-0.042824778705835,0.09681660681963],[0.046473231166601,-0.028432305902243,0.084705129265785]],[[-0.059213802218437,-0.006603826303035,-0.031122116371989],[0.10955636948347,0.11826039850712,0.0070221810601652],[0.048795025795698,0.060405299067497,0.059475544840097]],[[0.0079923877492547,-0.0054871882312,0.030941171571612],[0.0028438798617572,0.045537248253822,0.085350789129734],[0.047548990696669,-0.1220363676548,-0.016125628724694]],[[0.10518530011177,0.02546981908381,0.005145694129169],[0.022058477625251,-0.0011339294724166,0.010328589007258],[0.039357956498861,0.0082999728620052,-0.02142589353025]]],[[[0.062720037996769,0.034601513296366,0.01106661465019],[-0.1813155412674,0.023277923464775,0.029699863865972],[-0.043183900415897,0.097250238060951,0.012189157307148]],[[-0.028433818370104,-0.05364753678441,-0.003648758167401],[0.0039419997483492,-0.0032320183236152,0.077738285064697],[-0.046755246818066,0.071005716919899,0.010033092461526]],[[0.021948223933578,-0.015412599779665,-0.077683933079243],[0.052236076444387,-0.052565794438124,0.050908576697111],[0.077984094619751,0.018835829570889,-0.031346086412668]],[[0.00043079192982987,-0.072859369218349,0.077285677194595],[-0.0054436698555946,-0.080583266913891,0.037971660494804],[-0.01659850589931,-0.0081869466230273,-0.021433306857944]],[[-0.09524841606617,-0.087878055870533,0.0047705573961139],[-0.069391146302223,-0.018059717491269,0.014586327597499],[0.035395301878452,-0.016754755750299,0.019100634381175]],[[0.07194372266531,-0.05799263343215,0.049487132579088],[-0.025960488244891,0.092565938830376,-0.092557273805141],[-0.018119597807527,-0.0097813187167048,0.069935575127602]],[[0.065211728215218,0.0064225727692246,-0.083693161606789],[-0.065617054700851,0.031922470778227,0.032231923192739],[0.013949832879007,0.0093792732805014,0.034135211259127]],[[0.028218109160662,0.085275158286095,-0.0065869707614183],[0.088849678635597,0.045716039836407,0.025625493377447],[0.029186096042395,-0.040051892399788,-0.036453481763601]],[[-0.04437143728137,0.041589543223381,0.049702148884535],[-0.019616501405835,-0.027247114107013,0.079180285334587],[-0.064288944005966,0.028716759756207,-0.015907714143395]],[[0.011633450165391,0.0097117265686393,0.040726672858],[0.019544860348105,0.070219993591309,-0.0050414465367794],[-0.020781872794032,0.027401736006141,-0.099687717854977]],[[-0.00733278458938,-0.019743645563722,0.050941824913025],[0.0095148934051394,-0.10473269969225,0.07525148242712],[-0.019433990120888,0.0095838652923703,-0.024727802723646]],[[0.09403096139431,-0.024525703862309,-0.021593915298581],[0.039752773940563,-0.032114282250404,-0.019370995461941],[0.053308259695768,0.043944392353296,0.023338502272964]],[[-0.0015218431362882,0.079027585685253,-0.019074786454439],[1.3768586541119e-05,-0.021178441122174,0.098322071135044],[-0.02692885696888,0.067687213420868,-0.017753360792994]],[[0.029692880809307,0.13808226585388,-0.073186822235584],[0.025872385129333,0.0060121105052531,0.01770437695086],[0.041740383952856,-0.096885487437248,-0.02020737528801]],[[-0.038741257041693,-0.0096635324880481,0.0090798856690526],[-0.065171718597412,0.078327655792236,0.019781332463026],[0.0059678591787815,0.0041934619657695,0.03373796865344]],[[-0.017390329390764,-0.031643029302359,0.079969257116318],[0.081426538527012,-0.08058188855648,-0.089785277843475],[0.0071305315941572,0.066453449428082,0.079584583640099]],[[-0.028389928862453,0.028882069513202,-0.033984869718552],[-0.034698486328125,0.099734261631966,-0.03007005341351],[0.044367536902428,-0.065335132181644,0.05542341247201]],[[-0.011938259936869,0.050201680511236,0.033024601638317],[-0.042711433023214,-0.0032638737466186,0.077064596116543],[0.069666013121605,0.0034451091196388,-0.0044074105098844]],[[-0.016767032444477,-0.06361335515976,-0.0090566836297512],[-0.031932324171066,-0.01130161061883,-0.027759468182921],[-0.087001852691174,-0.031174900010228,0.00070796848740429]],[[-0.01631903834641,0.032820120453835,0.077035076916218],[0.036393664777279,0.057050283998251,0.0078273173421621],[0.030934972688556,0.018500935286283,0.11037947237492]],[[0.021536039188504,-0.035079948604107,-0.010942694731057],[-0.0160788372159,0.19186507165432,0.067215569317341],[0.063453167676926,-0.038159344345331,-0.0042220801115036]],[[0.083426661789417,-0.044772885739803,-0.027674095705152],[0.028151689097285,0.08913291990757,-0.090425759553909],[-0.0067504956386983,-0.026278654113412,0.016087485477328]],[[-0.013375354930758,0.036031439900398,0.0077098784968257],[-0.016842475160956,0.032831840217113,0.024796528741717],[-0.017679955810308,0.078255400061607,-0.0094718188047409]],[[-0.0007147352444008,0.054207049310207,-0.001885308069177],[-0.011584432795644,-0.0034081353805959,0.0036114307586104],[0.028936851769686,0.016187889501452,0.022806266322732]],[[-0.049776423722506,-0.02441898919642,0.11083798110485],[-0.021913558244705,-0.024821102619171,-0.054934624582529],[-0.033977523446083,0.027027498930693,-0.036125890910625]],[[-0.032135538756847,0.078084848821163,0.017782019451261],[0.077066279947758,-0.060945406556129,-0.00019961893849541],[0.018685759976506,0.017410485073924,0.0080923968926072]],[[-0.039563242346048,0.064222812652588,-0.11304528266191],[0.063929237425327,-0.03998938202858,-0.071646228432655],[0.0123733850196,0.13790033757687,0.12297906726599]],[[-0.04770265892148,-0.015047159045935,-0.012370041571558],[0.022970551624894,0.015768773853779,-0.048282407224178],[0.025726655498147,0.014354498125613,-0.054198861122131]],[[-0.00056589487940073,0.016084233298898,-0.10833422839642],[-0.035206314176321,0.028432311490178,-0.06817601621151],[0.044471226632595,0.030726302415133,0.094129666686058]],[[0.064941480755806,-0.010746393352747,0.0099011929705739],[0.05459326505661,-0.022670181468129,0.019124064594507],[0.038058485835791,0.095531322062016,-0.01499951351434]],[[0.048714961856604,0.09789452701807,-0.066044367849827],[0.044090636074543,0.14751136302948,-0.0030611883848906],[-0.021778956055641,0.05513634160161,-0.019854377955198]],[[0.079974241554737,0.0044381064362824,-0.013805890455842],[-0.0077576702460647,0.056300133466721,-0.0363461188972],[-0.022643495351076,-0.037969075143337,0.019948558881879]],[[0.025776386260986,-0.028708022087812,0.015076380223036],[-0.020068833604455,-0.037753518670797,0.054462652653456],[-0.0037432268727571,-0.06338469684124,0.053504921495914]],[[0.00092705141287297,-0.056801978498697,0.0017457850044593],[0.05462846532464,-0.11794171482325,0.050576999783516],[-0.0064998264424503,0.013373010791838,-0.0006806047167629]],[[0.0021339317318052,0.01418596226722,-0.065929248929024],[-0.0070648002438247,-0.05585578456521,0.040695492178202],[-0.025907747447491,-0.021792870014906,-0.021833654493093]],[[-0.01010833401233,0.04431401565671,0.048993069678545],[0.0035317081492394,0.036094319075346,0.088838249444962],[0.085076533257961,-0.012374245561659,0.07926169782877]],[[0.00070498255081475,-0.021293435245752,0.029008852317929],[0.0064983055926859,0.064276732504368,0.0076753236353397],[0.052856255322695,0.0075936033390462,-0.052020717412233]],[[0.072371430695057,-0.02809314802289,0.098168529570103],[0.028230665251613,0.045490231364965,-0.023867504671216],[-0.098420560359955,0.034320801496506,-0.027118820697069]],[[-0.015746477991343,0.09806390106678,-0.037800349295139],[-0.035879768431187,-0.039916522800922,-0.0031502423807979],[-0.074685618281364,-0.02733582817018,-0.027768474072218]],[[0.048422317951918,-0.03325591608882,0.13598611950874],[0.0033686268143356,-0.033758822828531,-0.060852739959955],[0.039332456886768,-0.035769488662481,0.07026020437479]],[[0.03574226424098,0.028759490698576,0.031006075441837],[-0.0041916547343135,0.035300679504871,0.033324256539345],[-0.00017885921988636,-0.028496772050858,-0.027803789824247]],[[-0.0099718235433102,0.083541624248028,-0.019682573154569],[0.045651841908693,-0.039071429520845,0.091526485979557],[0.026480501517653,-0.057347405701876,0.043357156217098]],[[0.048771061003208,0.019369790330529,0.044434331357479],[-0.055975411087275,0.073338463902473,0.035297885537148],[0.10838646441698,0.010940519161522,-0.061557736247778]],[[0.045709937810898,0.045288372784853,0.092670567333698],[0.049635130912066,0.015830110758543,0.031580373644829],[0.0026341136544943,-0.092288546264172,-0.046008665114641]],[[0.016035851091146,-0.016160761937499,0.043797042220831],[0.0172199010849,0.012183830142021,-0.029558692127466],[0.088074401021004,-0.035300616174936,0.077854551374912]],[[0.01039872225374,0.025244075804949,0.061036940664053],[0.098587960004807,0.096088714897633,-0.026559004560113],[0.053026236593723,0.054312955588102,0.032011080533266]],[[-0.047894477844238,0.056577537208796,0.026318736374378],[0.069346442818642,-0.021653963252902,0.02796683460474],[0.037199374288321,0.017042735591531,-0.028808493167162]],[[0.021919444203377,-0.013920044526458,0.035054173320532],[0.034939426928759,-0.03103169798851,0.10171798616648],[-0.056955873966217,-0.018847044557333,-0.016343491151929]],[[-0.027687547728419,-0.010772315785289,0.062267381697893],[0.023805582895875,-0.05198023840785,-0.043700620532036],[-0.045157808810472,0.023340199142694,0.025616064667702]],[[0.044363625347614,0.035821948200464,-0.13980795443058],[0.061687350273132,-0.038039285689592,-0.041376013308764],[0.082259461283684,-0.037097219377756,0.031441159546375]],[[0.02880272641778,-0.012633105739951,0.013815623708069],[0.05766611546278,-0.015965715050697,-0.0032316506840289],[0.094144210219383,0.060051694512367,0.057521294802427]],[[0.026464534923434,0.027381714433432,0.20072543621063],[0.015796985477209,-0.024688687175512,0.029021173715591],[-0.033868253231049,0.10153906792402,-0.019233293831348]],[[0.069636575877666,-0.048733942210674,-0.099501416087151],[-0.076348468661308,-0.092061899602413,-0.05823615193367],[-0.07443705946207,-0.023386280983686,0.024504506960511]],[[0.027558837085962,-0.052662096917629,-0.081310734152794],[-0.082711197435856,0.014238268136978,-0.036208286881447],[0.018030578270555,0.0046795750968158,0.072803840041161]],[[0.10167410224676,0.04017399251461,0.051785167306662],[0.053463719785213,0.059578608721495,0.11690455675125],[0.13498635590076,-0.066857755184174,0.0066819447092712]],[[-0.057247720658779,0.013919352553785,-0.043175499886274],[0.013970520347357,0.057041976600885,-0.0052512073889375],[0.02914927713573,0.072469376027584,-0.016756506636739]],[[-0.015854891389608,-0.083373099565506,0.0029818615876138],[-0.08304538577795,-0.021146144717932,-0.036319155246019],[-0.048886619508266,-0.075191430747509,-0.0034303616266698]],[[-0.025989627465606,-0.056215882301331,0.042964018881321],[-0.030421447008848,0.067314051091671,0.065469101071358],[0.017296390607953,-0.032803501933813,0.089946985244751]],[[0.038968451321125,0.037364766001701,0.06434054672718],[-0.025776596739888,-0.064815677702427,-0.029005758464336],[-0.00034700625110418,0.084741100668907,-0.079520583152771]],[[0.052672926336527,-0.0013887190725654,-0.046274751424789],[0.070730142295361,0.0077117239125073,0.057443950325251],[0.035333998501301,-0.0075092487968504,-0.0093827303498983]],[[0.048966065049171,0.0063239624723792,0.03525410592556],[0.018235608935356,0.048917986452579,-0.053103759884834],[-0.0094403857365251,-0.0067861555144191,0.0093195540830493]],[[-0.029587326571345,-0.15035532414913,0.049212496727705],[-0.026089886203408,0.075220733880997,0.14783507585526],[0.091801859438419,-0.070346042513847,0.11110498011112]],[[-0.028710458427668,-0.0032339184544981,0.082331001758575],[0.065828822553158,-0.027988893911242,-0.045738250017166],[-0.080481089651585,0.055320676416159,0.040799666196108]],[[0.0048284665681422,0.054569024592638,0.0098623316735029],[0.045273832976818,-0.057093162089586,0.052324265241623],[0.022077849134803,-0.029700012877584,0.023484982550144]]],[[[0.080317258834839,-0.0015691932057962,-0.029780173674226],[0.082959190011024,-0.082859061658382,-0.02660939656198],[-0.076212078332901,-0.084385015070438,-0.082497157156467]],[[0.059509560465813,0.021487109363079,0.10333377122879],[-0.00045831591705792,-0.045060802251101,-0.012368903495371],[-0.089588098227978,-0.012319972738624,0.0086795389652252]],[[0.052130285650492,-0.0045386138372123,-0.067768581211567],[-0.016611644998193,-0.067206174135208,-0.0061333063058555],[-0.085031025111675,0.0019131819717586,0.13810707628727]],[[0.036625072360039,0.035054862499237,0.045290675014257],[-0.16732861101627,-0.046913713216782,-0.075715564191341],[0.045665230602026,0.016518820077181,0.080196224153042]],[[0.042701490223408,0.071982458233833,0.032129108905792],[0.079067416489124,0.043626260012388,0.00072978402022272],[-0.020175445824862,-0.068679995834827,0.0040925885550678]],[[-0.018263224512339,0.075467430055141,0.032126683741808],[0.045846898108721,0.06904661655426,0.021393897011876],[0.11634142696857,0.00021117382857483,-0.071468658745289]],[[-0.0060325614176691,-0.045119378715754,-0.0061092311516404],[-0.0025462694466114,-0.00017946702428162,-0.08549527078867],[-0.17735594511032,0.031045213341713,0.0053873741999269]],[[0.055996492505074,0.033803146332502,0.023726666346192],[-0.0063384785316885,0.026678595691919,-0.032966922968626],[-0.011479788459837,-0.020501645281911,-0.016379592940211]],[[0.043420970439911,0.10836361348629,0.15863221883774],[-0.059965088963509,-0.041179362684488,0.097565114498138],[-0.13814751803875,-0.070318758487701,-0.114781729877]],[[0.00028656836366281,-0.037982568144798,-0.082836419343948],[0.13245114684105,-0.244244992733,-0.015908215194941],[-0.075864158570766,0.08548628538847,0.049201965332031]],[[0.037916366010904,-0.040689263492823,-0.016562478616834],[-0.024800419807434,-0.005118309520185,-0.0099943857640028],[-0.066201746463776,-0.084489934146404,-0.033590920269489]],[[-6.4352265326306e-05,-0.264244556427,-0.12790763378143],[0.0062153399921954,-0.23052021861076,0.03451831266284],[0.01566469669342,-0.10279054939747,-0.13418790698051]],[[-0.047882545739412,-0.0042777271009982,-0.061757981777191],[0.06539386510849,-0.025052815675735,-0.0073522357270122],[0.035778298974037,-0.019244823604822,-0.079648457467556]],[[-0.12109037488699,-0.078294202685356,-0.079686120152473],[-0.098466202616692,-0.14761383831501,0.055191498249769],[-0.06207263469696,-0.054879389703274,0.06621827930212]],[[-0.017731551080942,-0.049453120678663,-0.044900815933943],[0.037915252149105,-0.040501851588488,-0.047785606235266],[0.053232908248901,0.036817416548729,0.020745147019625]],[[-0.054024901241064,-0.0036193754058331,-0.092865750193596],[-0.037490330636501,0.052204679697752,-0.0087573695927858],[-0.066356375813484,-0.0057486640289426,0.07597840577364]],[[-0.018908783793449,-0.10063066333532,-0.012168065644801],[0.026372615247965,0.0026814392767847,0.09714899212122],[0.030809484422207,0.036283865571022,-0.048759631812572]],[[-0.013290103524923,-0.059938006103039,-0.042055275291204],[0.058542959392071,0.0047924192622304,0.0013008556561545],[0.021855734288692,-0.027011331170797,-0.0096629215404391]],[[-0.048083759844303,0.013112825341523,-0.082326509058475],[0.024169430136681,0.077481336891651,-0.029632493853569],[-0.092180401086807,-0.0757941827178,0.011421498842537]],[[0.076506309211254,0.037838749587536,0.05245116353035],[0.043466459959745,0.062101770192385,-0.03295049443841],[0.062056340277195,0.066857978701591,0.061914477497339]],[[0.0035099640954286,-0.024157209321856,-0.021636683493853],[0.037503067404032,-0.041513934731483,-0.035559568554163],[0.04463030397892,-0.10547910630703,0.07643599063158]],[[-0.12966579198837,-0.34206566214561,-0.22472907602787],[-0.048125978559256,-0.29577335715294,-0.1693796813488],[0.011850903742015,-0.091957874596119,-0.025198265910149]],[[-0.019339108839631,-0.062615312635899,0.050571762025356],[-0.062984675168991,0.077062644064426,0.0107900518924],[0.091012574732304,-0.072706170380116,0.023079132661223]],[[0.0073506310582161,-0.062474746257067,-0.059138465672731],[-0.33774903416634,-0.034753628075123,-0.0084359180182219],[-0.049293518066406,0.10523488372564,0.050836842507124]],[[0.060836471617222,-0.008984113112092,-0.029150020331144],[0.081103444099426,-0.16674213111401,0.032724838703871],[-0.11211871355772,0.1636249423027,0.09700970351696]],[[-0.008223881945014,0.080085426568985,-0.012419282458723],[-0.050048377364874,-0.051395766437054,-0.036128092557192],[-0.10041493177414,-0.014715256169438,-0.13115176558495]],[[0.058023300021887,0.009259594604373,0.079136647284031],[0.086603835225105,-0.013542461208999,0.10713596642017],[0.089351639151573,-0.047448109835386,-0.0053336396813393]],[[-0.016872633248568,0.018589872866869,0.023365911096334],[-0.069084241986275,0.03263583034277,-0.044086392968893],[-0.031163815408945,-0.037872213870287,-0.052511800080538]],[[0.051039598882198,-0.004284038208425,-0.024386947974563],[-0.0049660303629935,-0.13955354690552,-0.040300451219082],[0.0066965180449188,0.026141231879592,-0.020873319357634]],[[0.015393053181469,-0.020174315199256,-0.073179945349693],[0.0032532350160182,-0.037990171462297,-0.01619965583086],[-0.020055525004864,0.10386356711388,0.11092653870583]],[[-0.10378018021584,0.095430351793766,-0.0010272570652887],[-0.0099234655499458,-0.031053882092237,-0.16537721455097],[-0.0142258759588,0.060626827180386,0.039224904030561]],[[0.023551397025585,-0.0040512485429645,0.10542311519384],[0.04249058291316,-0.00073652341961861,-0.0039063915610313],[0.016830809414387,-0.034582998603582,0.027789335697889]],[[0.02080730907619,0.099191911518574,-0.050459787249565],[-0.012563307769597,-0.034273345023394,0.092549256980419],[-0.10593917965889,-0.029567543417215,-0.0094541599974036]],[[-0.1704053580761,-0.072990767657757,-0.11291960626841],[-0.022949479520321,0.059228464961052,0.021390439942479],[0.038557440042496,0.084600955247879,0.060224212706089]],[[-0.057092636823654,-0.051529180258512,-0.063210695981979],[-0.10641182214022,-0.04240345209837,0.026298562064767],[0.12941554188728,0.056247472763062,-0.020400187000632]],[[0.015484706498682,-0.038773879408836,-0.012308566831052],[0.064235538244247,0.029990408569574,-0.04052622243762],[0.02843595854938,0.050621774047613,0.030978735536337]],[[-0.035770907998085,-0.022329013794661,-0.091265827417374],[0.090142853558064,0.012435308657587,-0.0097473422065377],[0.050502777099609,0.00020494479394984,0.0018111721146852]],[[-0.023130606859922,-0.021104564890265,-0.0071251098997891],[0.016337310895324,0.054428461939096,0.0027944182511419],[-0.15899536013603,-0.048521764576435,0.0039958599954844]],[[-0.058333203196526,-0.059530042111874,-0.013578798621893],[0.011810746975243,-0.049709461629391,0.021858483552933],[0.091471798717976,0.052431110292673,0.0666688606143]],[[-0.00081116845831275,0.090790584683418,0.075109504163265],[0.042742248624563,0.017512807622552,0.070426806807518],[-0.065081469714642,-0.014338704757392,-0.0040489118546247]],[[0.068277299404144,-0.11277950555086,-0.022316521033645],[-0.067668735980988,0.061178896576166,0.10822513699532],[0.042273223400116,0.014981815591455,0.014482797123492]],[[-0.094340726733208,-0.014141016639769,0.14156055450439],[0.036551926285028,-0.073090083897114,0.047932293266058],[0.18025515973568,-0.057193402200937,0.0038947467692196]],[[0.029383277520537,-0.049109071493149,-0.056772399693727],[-0.027685342356563,0.015215136110783,-0.19128647446632],[-0.023113390430808,-0.15627661347389,0.086455255746841]],[[-0.13371904194355,-0.13109919428825,-0.049695312976837],[0.039659511297941,0.050954639911652,-0.13100031018257],[0.082018442451954,0.1311586946249,0.14127440750599]],[[-0.067166224122047,-0.073961988091469,-0.028205297887325],[0.014379722997546,0.051968157291412,-0.021593967452645],[0.10300455242395,0.01814247854054,0.029422303661704]],[[-0.0036895563825965,-0.083790890872478,-0.058123778551817],[0.040568731725216,-0.067152261734009,0.00057906738948077],[0.018833676353097,-0.19340844452381,-0.012315108440816]],[[0.032149393111467,-0.032905634492636,0.0076002804562449],[0.015143806114793,0.025977177545428,0.004898433573544],[0.105792298913,0.0029902756214142,-0.0067500611767173]],[[0.04851008951664,0.045332353562117,0.050684444606304],[0.047413140535355,0.026826705783606,0.0033444669097662],[0.060511719435453,-0.027805430814624,-0.047444757074118]],[[0.0044336766004562,-0.013932310976088,-0.027747316285968],[0.0071859396994114,0.0406727604568,0.031938627362251],[-0.0089212534949183,-0.043427105993032,-0.0620849840343]],[[-0.077976539731026,-0.13357868790627,-0.17487207055092],[0.090654239058495,-0.024911195039749,-0.025129372254014],[0.14416034519672,0.098446868360043,0.068668551743031]],[[-0.088649235665798,-0.03979354724288,-0.041721884161234],[0.1046984270215,0.032158829271793,-0.011024897918105],[-0.016192277893424,0.082521542906761,0.043032467365265]],[[-0.06013260781765,0.02517451159656,0.0029031010344625],[-0.044229619204998,0.074917405843735,-0.0078085446730256],[0.00075169408228248,-0.010153016075492,-0.0067877061665058]],[[0.042207580059767,-0.039363045245409,-0.093064330518246],[-0.0086214123293757,0.067965380847454,-0.13334181904793],[-0.043128158897161,0.017728313803673,-0.049288857728243]],[[0.0096971690654755,0.023819223046303,-0.032422322779894],[0.058140411973,0.0027892333455384,0.038532689213753],[0.0493991561234,-0.055051691830158,0.012774288654327]],[[-0.14675106108189,-0.0073915645480156,-0.044127251952887],[0.12991158664227,0.020577577874064,0.046079527586699],[0.13099528849125,0.050175122916698,-0.029662698507309]],[[0.050698727369308,0.16400817036629,0.1218423768878],[0.062472134828568,-0.005942115560174,0.00057216995628551],[0.045027442276478,-0.087247222661972,-0.052230272442102]],[[0.0014883875846863,-0.0081781223416328,0.00060490076430142],[0.13542337715626,0.10675954073668,0.019905092194676],[0.10598710924387,0.13123781979084,0.053111914545298]],[[-0.097583048045635,-0.17162227630615,-0.13463546335697],[-0.11041014641523,-0.20554278790951,-0.083114519715309],[-0.029529089108109,0.025977922603488,-0.00010583952098386]],[[-0.06831455975771,-0.00088683312060311,-0.033122073858976],[0.051793430000544,-0.035359919071198,-0.094321474432945],[0.077708341181278,0.0534528195858,0.028134919703007]],[[0.09894060343504,0.03435842320323,-0.038171134889126],[-0.0098130656406283,0.020297480747104,-0.059338085353374],[0.026828791946173,-0.034251026809216,0.10208039730787]],[[-0.031350571662188,-0.054210901260376,-0.038755767047405],[-0.021645084023476,0.074190035462379,0.08905190974474],[0.096647791564465,-0.045496892184019,0.060736648738384]],[[0.0069154226221144,0.011318846605718,0.059670481830835],[-0.027939712628722,0.030238194391131,-0.064271099865437],[-0.17265811562538,0.022587141022086,0.0014802346704528]],[[-0.068399451673031,0.079962760210037,-0.092895157635212],[0.053228847682476,-0.043831769376993,-0.05005344748497],[-0.063629016280174,0.052019137889147,-0.0075237266719341]],[[0.075495809316635,-0.013192115351558,0.019332019612193],[-0.028903501108289,0.034833937883377,0.082866333425045],[0.0039953677915037,0.057142719626427,-0.066303834319115]]],[[[0.13917982578278,-0.051036555320024,0.072367243468761],[-0.0061239544302225,0.011485485360026,-0.064242042601109],[0.12044035643339,-0.15335340797901,0.23883011937141]],[[-0.027501391246915,-0.1421989351511,-0.16167715191841],[0.0099263712763786,0.031681172549725,-0.063091576099396],[-0.012632794678211,0.11063589900732,0.054968364536762]],[[-0.025020934641361,0.0073154410347342,-0.10434702038765],[0.049765042960644,0.023874836042523,-0.19688457250595],[-0.15054044127464,-0.0019956571049988,0.079063877463341]],[[-0.14103980362415,-0.071463786065578,0.057756472378969],[-0.11725886166096,0.074424803256989,0.056933175772429],[0.11977615207434,0.080857411026955,0.094463467597961]],[[0.041355967521667,-0.079204328358173,-0.1502595692873],[0.060199305415154,-0.0093499198555946,0.090409077703953],[0.023962613195181,0.029238050803542,0.05765488743782]],[[-0.041836120188236,0.098717607557774,-0.018319550901651],[-0.12672679126263,0.054253023117781,0.18110090494156],[-0.071215614676476,-0.1033371463418,0.030140364542603]],[[-0.014207767322659,-0.055205710232258,0.091353572905064],[0.051156379282475,-0.08735167235136,-0.0085074072703719],[0.05264987051487,-0.057971883565187,-0.039068695157766]],[[0.049766145646572,0.0023081742692739,0.080211758613586],[-0.10881382972002,0.068264611065388,0.016301749274135],[-0.11870911717415,-0.14928069710732,0.077421754598618]],[[0.042946703732014,0.018807254731655,-0.06274401396513],[-0.060091461986303,0.021252563223243,-0.031876236200333],[0.009744118899107,0.021545609459281,0.012857652269304]],[[-0.037644613534212,0.12475075572729,0.064567945897579],[-0.0021605840884149,0.029360163956881,0.0013529768912122],[-0.01690592430532,-0.0026689469814301,-0.030618105083704]],[[0.030540741980076,0.06897084414959,0.02379590459168],[-0.012714380398393,-0.073496200144291,-0.033332373946905],[-0.12043740600348,-0.10645519196987,-0.16779685020447]],[[0.042180817574263,0.026122730225325,-0.10917289555073],[0.0013825147179887,0.021730996668339,-0.16428177058697],[0.13398706912994,0.031622100621462,-0.069397002458572]],[[-0.033550310879946,-0.28326380252838,-0.09215572476387],[-0.046110454946756,-0.024081889539957,0.064199082553387],[-0.061430081725121,-0.043109815567732,8.4422455984168e-05]],[[-0.12465057522058,-0.14424580335617,-0.090803265571594],[-0.13441380858421,-0.046387534588575,-0.040852479636669],[0.056309372186661,0.044012289494276,0.096162751317024]],[[-0.094227403402328,-0.1287077665329,-0.0020869800355285],[-0.037147328257561,0.15490828454494,-0.0386136546731],[0.012783684767783,-0.013228677213192,-0.023161835968494]],[[-0.21426309645176,0.26670745015144,-0.17824605107307],[0.083280019462109,0.16141486167908,-0.12828625738621],[-0.078399732708931,0.11142805218697,-0.16238732635975]],[[-0.16308592259884,-0.1232411339879,0.096168898046017],[0.088756091892719,0.010363044217229,-0.032701697200537],[-0.047998797148466,-0.10634638369083,0.0032624360173941]],[[0.06230628490448,-0.055719465017319,-0.10463562607765],[0.061725787818432,-0.015524094924331,0.057162299752235],[-0.060831051319838,0.024100545793772,-0.028506565839052]],[[0.067802414298058,0.09270340949297,0.028113923966885],[-0.052639689296484,-0.070179209113121,-0.046685893088579],[0.0066282101906836,0.043156877160072,-0.020433420315385]],[[0.14293102920055,-0.12130618095398,0.063406355679035],[-0.092833705246449,-0.073290698230267,-0.16863258183002],[0.098176807165146,-0.071115374565125,0.088107511401176]],[[0.075533457100391,-0.11072022467852,0.0039549935609102],[-0.033065408468246,-0.021998938173056,-0.12063951790333],[-0.020232761278749,-0.035574872046709,0.087595447897911]],[[-0.019152846187353,-0.0011791018769145,-0.05433889105916],[0.011237205006182,-0.11906865984201,0.088562443852425],[-0.10205131024122,-0.011410402134061,-0.053307928144932]],[[0.049638483673334,0.032933350652456,-0.070724859833717],[0.093200139701366,0.006971319206059,-0.1709620654583],[0.10130757838488,0.0209617074579,0.0090652713552117]],[[0.26284781098366,-0.060533262789249,-0.027891578152776],[0.12411899864674,-0.088393293321133,-0.07822448015213],[0.055199798196554,-0.089144818484783,0.098075464367867]],[[0.031744033098221,0.14156851172447,0.042118910700083],[0.072636350989342,-0.029573546722531,-0.15480594336987],[0.022929657250643,0.17854256927967,0.12183595448732]],[[-0.035248938947916,-0.018033625558019,0.017287559807301],[0.021137926727533,0.078593738377094,-0.00012456644617487],[0.11902754753828,-0.10664378106594,0.14191564917564]],[[0.074290961027145,-0.06343687325716,-0.0676344409585],[0.068147599697113,-0.22121335566044,0.0046649063006043],[0.10782571136951,-0.062596887350082,0.045937243849039]],[[-0.07374120503664,0.0023481578100473,-0.16314625740051],[0.18955351412296,0.050803128629923,0.10033334046602],[-0.0088946400210261,0.086348831653595,-0.025562647730112]],[[0.026182493194938,0.033908102661371,0.051558554172516],[-0.15335707366467,0.078968115150928,-0.031658239662647],[-0.10362711548805,-0.14840559661388,-0.08755774050951]],[[0.049588955938816,-0.073356062173843,0.0075146756134927],[0.02219870314002,-0.077791936695576,0.0258261654526],[-0.13706761598587,0.05143104493618,0.10261772572994]],[[-0.034317065030336,-0.083639912307262,-0.095188297331333],[0.043263636529446,-0.053216982632875,0.024690859019756],[0.0093366820365191,-0.1687808483839,0.015049383044243]],[[-0.054117485880852,-0.090639337897301,-0.051027044653893],[0.091573402285576,0.074540667235851,0.16479729115963],[-0.031202897429466,-0.14813905954361,0.024962181225419]],[[-0.098938979208469,-0.10495457053185,-0.03781520947814],[0.065903700888157,-0.0086161643266678,0.11167666316032],[-0.036093156784773,-0.15089704096317,0.048277199268341]],[[-0.044330701231956,-0.04667304828763,0.011556938290596],[-0.0018465402536094,0.0027701572980732,-0.082073211669922],[0.069993287324905,-0.088087603449821,-0.073504954576492]],[[0.046978835016489,-0.04442672431469,-0.19447208940983],[-0.058478999882936,0.011180686764419,-0.023505376651883],[-0.019765745848417,0.11967284232378,-0.048268832266331]],[[-0.020251099020243,-0.024927988648415,-0.12313461303711],[-0.041249714791775,-0.10439115017653,-0.096440248191357],[0.090042129158974,-0.068371571600437,0.062563195824623]],[[0.0047149546444416,-0.076931744813919,-0.053236708045006],[-0.014274593442678,-0.091753728687763,0.14994539320469],[0.066052280366421,-0.015638144686818,0.010748958215117]],[[0.06314267963171,0.018344519659877,0.11755799502134],[-0.083819761872292,-0.090548649430275,0.010812127031386],[0.073648102581501,-0.093276314437389,-0.00084204517770559]],[[0.078303605318069,-0.082820020616055,-0.12601663172245],[-0.011816754937172,-0.078046716749668,-0.039784383028746],[0.001630078535527,-0.043938688933849,0.032956685870886]],[[-0.023037061095238,-0.037778288125992,-0.012277425266802],[-0.014821365475655,0.10885459184647,0.014990292489529],[0.12510207295418,-0.0016412137774751,-0.080667868256569]],[[0.099839940667152,0.044689562171698,-0.14775536954403],[0.073951631784439,-0.047305814921856,-0.0096679860725999],[0.081223763525486,0.04075214266777,-0.089906193315983]],[[0.029728546738625,0.14272166788578,-0.0018635741434991],[-0.10846871882677,-0.11246990412474,0.0081323618069291],[-0.10899695008993,0.030992919579148,0.069168373942375]],[[0.14273975789547,-0.017981657758355,0.015851823613048],[-0.14792048931122,-0.081444837152958,-0.076137349009514],[-0.050277318805456,0.077919982373714,0.033171556890011]],[[-0.012488280422986,0.030042799189687,0.0020951007027179],[0.0066708964295685,-0.026967488229275,0.0044963918626308],[0.06042842194438,0.15362653136253,0.040493875741959]],[[-0.039460189640522,-0.022076668217778,-0.15255534648895],[0.047416005283594,-0.11396504193544,-0.1219535022974],[0.048903722316027,-0.0082942992448807,-0.092431217432022]],[[0.060059234499931,-0.054557275027037,0.0214215349406],[0.040735095739365,0.07312585413456,0.12958779931068],[-0.010768704116344,-0.13994564116001,-0.032390512526035]],[[0.078965157270432,-0.0026719281449914,0.13885360956192],[0.030272195115685,-0.040068972855806,-0.081998251378536],[0.14094594120979,-0.035577695816755,-0.087662026286125]],[[0.040037605911493,-0.115413621068,0.022821364924312],[-0.058617196977139,-0.016512628644705,-0.1829344779253],[0.0048557622358203,-0.0095299137756228,0.08379090577364]],[[-0.019800610840321,-0.072496868669987,-0.1616869866848],[0.096725523471832,0.047552574425936,-0.055335145443678],[0.038346230983734,0.01305178180337,-0.21963210403919]],[[-0.048265770077705,0.06168645247817,-0.012560440227389],[0.016328206285834,-0.067426554858685,0.0081985807046294],[-0.026970937848091,0.0079981107264757,-0.014982859604061]],[[-0.020375311374664,-0.16693298518658,-0.030120603740215],[0.02241949737072,-0.094220831990242,0.029945019632578],[0.085462264716625,0.070938237011433,-0.0015342993428931]],[[-0.023263489827514,-0.060202576220036,0.0095946425572038],[0.082486271858215,-0.21704207360744,0.095312424004078],[-0.032079070806503,-0.10414082556963,-0.064540885388851]],[[-0.092077404260635,-0.038058061152697,0.075076647102833],[-0.036611411720514,-0.044102773070335,0.014495049603283],[0.039857197552919,0.16642682254314,-0.0092338062822819]],[[-0.12727734446526,-0.0093868179246783,0.16588175296783],[-0.17519146203995,-0.19408191740513,0.033051412552595],[-0.045442502945662,0.10391706228256,0.010031812824309]],[[-0.044606503099203,-0.14398086071014,0.04490952193737],[0.030336650088429,0.081528015434742,0.043428964912891],[-0.10223677754402,-0.067370593547821,-0.10915053635836]],[[-0.06101943552494,-0.05203278362751,-0.071266561746597],[0.0016316422261298,-0.057215921580791,-0.011275112628937],[0.046865858137608,-0.02789163030684,-0.072089128196239]],[[0.032928522676229,-0.05398116260767,-0.046892385929823],[0.14117497205734,-0.033247567713261,-0.14650705456734],[0.074973791837692,-0.095690876245499,0.0063504595309496]],[[0.041384771466255,0.040471985936165,0.038071524351835],[-0.12524472177029,-0.0005229800590314,0.0012475124094635],[-0.021006541326642,-0.022735457867384,-0.02072742395103]],[[-0.15146820247173,-0.14148865640163,-0.069767162203789],[-0.02498234808445,0.22841955721378,-0.045179542154074],[0.090243302285671,-0.086545050144196,0.14243465662003]],[[0.015859512612224,-0.0093068992719054,0.0057529490441084],[0.072743393480778,-0.14789810776711,0.047061923891306],[-0.050960134714842,-0.0044870059937239,0.081449039280415]],[[0.23474062979221,-0.24820560216904,0.12847864627838],[-0.1117926761508,0.030704114586115,-0.027409285306931],[0.11325050890446,-0.011672291904688,0.094536080956459]],[[-0.050616059452295,0.090976521372795,0.066224083304405],[0.001240023644641,-0.049225732684135,-0.11966251581907],[0.14127847552299,-0.014949372038245,-0.052384719252586]],[[-0.011985533870757,0.033551447093487,-0.096824936568737],[-0.11050390452147,0.032631546258926,-0.025092083960772],[0.077986031770706,0.030663682147861,-0.079810820519924]],[[0.011329198256135,-0.014001238159835,-0.064182184636593],[0.051601134240627,0.11580703407526,0.035851188004017],[-0.047173544764519,-0.12382546067238,-0.16947209835052]]],[[[0.010764982551336,-0.0040406067855656,0.025856865569949],[0.045439872890711,-0.10768282413483,-0.0059907673858106],[0.051462262868881,0.029251953586936,-0.064469918608665]],[[-0.010290984064341,0.030671406537294,-0.082940362393856],[0.099856801331043,0.028853517025709,-0.12343609333038],[0.063176929950714,-0.026423407718539,0.12046978622675]],[[-0.046480763703585,-0.036204300820827,-0.11300083249807],[0.052168671041727,0.037372097373009,-0.094898223876953],[0.12363847345114,0.12907865643501,-0.049549020826817]],[[0.034562349319458,0.03602659329772,0.045899908989668],[0.10919251292944,-0.093290835618973,0.14457392692566],[0.029775135219097,-0.046924747526646,-0.20890238881111]],[[0.077266491949558,0.042776592075825,-0.13787683844566],[0.072707004845142,0.031007148325443,0.11529967188835],[0.065079919993877,-0.029005190357566,0.003513480303809]],[[-0.095960326492786,0.10282362252474,-0.15162463486195],[0.11218940466642,-0.0016723665175959,0.18070703744888],[-0.04111235588789,0.0027010096237063,-0.024102911353111]],[[-0.077689349651337,0.060809891670942,0.065400794148445],[-0.12768843770027,-0.051741857081652,0.086190797388554],[0.027213018387556,-0.01214106194675,0.03937778621912]],[[0.023487061262131,0.078133001923561,0.16055248677731],[-0.0085575263947248,9.6642303105909e-05,0.020992945879698],[0.065033033490181,-0.031680412590504,0.043985955417156]],[[-0.019037406891584,-0.0036658877506852,-0.10551059246063],[0.0079951016232371,0.011556214652956,0.039189372211695],[0.006467214319855,0.056190207600594,-0.021748811006546]],[[0.04492025822401,0.057812616229057,0.093946576118469],[0.088009491562843,0.0056779426522553,-0.10687666386366],[-0.019372908398509,-0.063806012272835,-0.11998461186886]],[[0.038913950324059,0.088042199611664,0.01778063364327],[0.072958745062351,-0.079655975103378,-0.036735627800226],[0.04442872479558,0.054765623062849,0.060583405196667]],[[0.033304762095213,0.064039804041386,-0.081574372947216],[-0.033982340246439,-0.14668475091457,-0.019073324277997],[-0.11155645549297,-0.11558704823256,-0.075177974998951]],[[0.018651576712728,0.044126257300377,-0.15386833250523],[-0.043142754584551,0.036286901682615,-0.17367105185986],[0.045778051018715,-0.14904160797596,-0.067361250519753]],[[-0.12713399529457,-0.21600221097469,-0.091784469783306],[0.10676322877407,-0.09481393545866,-0.0017751889536157],[0.10232172906399,-0.066895075142384,0.032910596579313]],[[-0.070401899516582,-0.0079986052587628,-0.051609635353088],[-0.012434456497431,-0.070340044796467,0.047856647521257],[-0.080906480550766,0.041626010090113,-0.13448530435562]],[[0.019962172955275,0.074856095016003,0.042250335216522],[-0.014858925715089,0.085368387401104,-0.10870513319969],[-0.0038901683874428,-0.082143373787403,-0.11079934239388]],[[-0.016001582145691,-0.05072083696723,0.069252707064152],[-0.033378414809704,-0.076206721365452,0.15795522928238],[-0.033138073980808,-0.018144538626075,0.14104603230953]],[[-0.034394934773445,0.059005916118622,0.11303406208754],[0.074964195489883,0.10487980395555,-0.045464299619198],[-0.055529370903969,-0.1449069827795,-0.11523025482893]],[[-0.076192870736122,-0.0082223070785403,0.035583931952715],[0.08669450879097,-0.0013991420855746,-0.067430190742016],[0.099455095827579,-0.030948696658015,-0.050041750073433]],[[0.017940660938621,0.02046151086688,0.017185971140862],[-0.084767445921898,0.13559085130692,0.099020704627037],[-0.041124980896711,0.0065183853730559,0.06914222240448]],[[0.035508517175913,-0.0095036458224058,-0.021571008488536],[0.020693007856607,-0.025654582306743,0.0044104559347034],[0.06706228852272,0.066349320113659,0.0080263251438737]],[[-0.052998282015324,0.050556469708681,0.025525523349643],[0.025040647014976,0.08782060444355,-0.030149368569255],[-0.086879193782806,-0.061239160597324,-0.13979214429855]],[[-0.049714431166649,0.012902274727821,-0.082286223769188],[-0.041150696575642,0.10068062692881,0.13376221060753],[-0.049865510314703,-0.085658982396126,-0.0047276820987463]],[[-0.030153915286064,0.022805646061897,0.027076883241534],[0.095990657806396,-0.034630663692951,0.10661511868238],[-0.20594957470894,0.0017458640504628,-0.11379577219486]],[[0.058078352361917,0.035010997205973,0.19148181378841],[0.043099585920572,-0.0792431011796,0.053403414785862],[-0.043076563626528,-0.060693111270666,0.029746294021606]],[[-0.070069149136543,0.025486916303635,0.076130270957947],[-0.053947802633047,-0.015689732506871,0.022931905463338],[-0.070924006402493,0.054442465305328,0.050470028072596]],[[0.024698782712221,0.036320611834526,0.0028178859502077],[0.091731898486614,0.048376899212599,-0.079387210309505],[-0.074294105172157,-0.13376401364803,-0.005908970721066]],[[-0.014466720633209,-0.095282554626465,-0.06975482404232],[-0.071578629314899,-0.037206869572401,-0.078821554780006],[0.10108228027821,0.069500125944614,-0.0019852030090988]],[[0.1649491339922,-0.1690414249897,-0.03054966032505],[0.057318434119225,-0.014324401505291,-0.075628519058228],[0.053680643439293,0.030305959284306,0.12728376686573]],[[0.23243193328381,0.034429624676704,0.10734196007252],[-0.014414166100323,-0.059649370610714,0.078974224627018],[-0.088937468826771,-0.12816826999187,-0.069595783948898]],[[-0.015859926119447,-0.096026413142681,0.017516469582915],[-0.13706082105637,-0.0020771336276084,0.055870968848467],[-0.10017770528793,0.059045236557722,0.060509994626045]],[[0.089054435491562,0.14650656282902,0.033773012459278],[0.060194049030542,0.093051321804523,-0.090049646794796],[-0.0035332485567778,-0.17620883882046,0.042237047106028]],[[-0.064020611345768,-0.089673556387424,-0.11423943191767],[-0.080222941935062,-0.022854113951325,-0.0030717763584107],[0.066797524690628,0.060864355415106,0.017625413835049]],[[-0.063345924019814,-0.059910472482443,0.032941520214081],[-0.015841057524085,-0.057595822960138,0.073625206947327],[-0.040971364825964,-0.023796461522579,0.01039210986346]],[[0.039991244673729,-0.024076582863927,-0.028994217514992],[0.11339900642633,0.0092336814850569,0.14191082119942],[0.007239846047014,-0.086803898215294,-0.04664234817028]],[[-0.049780890345573,-0.025864956900477,-0.02241076529026],[0.091025233268738,-0.047311395406723,-0.056267615407705],[-0.10988458245993,-0.085909619927406,-0.062986068427563]],[[0.10965441167355,0.0071362024173141,0.0596878901124],[-0.031860779970884,0.10732468217611,-0.12576416134834],[-0.015324765816331,-0.0064779068343341,-0.13023206591606]],[[-0.060211852192879,-0.13677079975605,-0.10928301513195],[-0.1163057461381,0.037575140595436,0.15367715060711],[0.02039822936058,0.055174216628075,0.15782931447029]],[[-0.010183345526457,0.038348432630301,-0.08301717787981],[-0.082903765141964,0.0096402578055859,-0.028529299423099],[-0.0098059959709644,0.086179129779339,0.025765601545572]],[[0.058963660150766,0.083388842642307,-0.023992309346795],[0.031096806749701,0.0087986625730991,-0.04053070768714],[0.037344545125961,0.035663206130266,-0.045087363570929]],[[0.030006624758244,0.016194125637412,-0.00019012042321265],[-0.0093626761808991,0.032046880573034,-0.13344125449657],[0.030267912894487,-0.076427914202213,-0.065567597746849]],[[0.073807068169117,0.1534523665905,0.0778943374753],[-0.012070833705366,0.012554557994008,-0.084592230618],[-0.086015813052654,0.0084212413057685,0.14977644383907]],[[-0.036115664988756,-0.059132881462574,-0.015093818306923],[0.072007715702057,0.026206251233816,0.062359072268009],[-0.041170321404934,-0.045006569474936,-0.037514787167311]],[[-0.05976028740406,-0.12094141542912,0.15749409794807],[-0.044193085283041,0.02174125239253,0.0072149205952883],[0.0047352742403746,-0.027239648625255,-0.026950750499964]],[[0.062652304768562,-0.0046896883286536,-0.028716497123241],[-0.035302486270666,-0.090234450995922,-0.09523382037878],[-0.085809238255024,-0.075334303081036,-0.06491632014513]],[[0.042441509664059,0.038436532020569,-0.051565065979958],[-0.13355493545532,-0.046623170375824,-0.098874963819981],[-0.070297494530678,-0.0011945840669796,0.064347431063652]],[[0.091161884367466,0.17956666648388,0.029790701344609],[0.13999207317829,-0.0022959825582802,-0.0014025169657543],[-0.056076947599649,-0.099582754075527,-0.094674982130527]],[[0.14408645033836,0.005355236120522,-0.094269253313541],[0.057080682367086,-0.035216689109802,0.045796468853951],[0.009973781183362,0.012107565067708,0.025336066260934]],[[0.12762659788132,-0.045566499233246,-0.086415499448776],[0.038064226508141,-0.16578078269958,-0.15610252320766],[0.037896454334259,-0.037647824734449,0.066816560924053]],[[-0.042902555316687,0.087612099945545,0.013727572746575],[0.006819162517786,0.046444550156593,-0.015400731004775],[-0.049471497535706,0.0025416035205126,-0.041948292404413]],[[-0.087438158690929,-0.027727177366614,-0.075911112129688],[-0.007988098077476,0.050058629363775,-0.011528706178069],[-0.14608424901962,-0.047218360006809,-0.1137705668807]],[[0.035313632339239,-0.089826844632626,-0.15225552022457],[-0.070168219506741,0.11090281605721,-0.00072277529397979],[-0.080423146486282,0.06142233684659,-0.088704437017441]],[[-0.077640138566494,-0.17793487012386,-0.075434327125549],[0.17475634813309,-0.0068109198473394,0.11101055890322],[0.10961160063744,0.090003408491611,0.15510527789593]],[[-0.10826893150806,-0.027291653677821,-0.20775765180588],[-0.064620137214661,-0.059036754071712,0.075958907604218],[-0.056887030601501,-0.05071859806776,0.1258153617382]],[[-0.11734387278557,-0.083959206938744,0.028078690171242],[-0.057596370577812,-0.11042563617229,-0.047574147582054],[-0.092432349920273,-0.039086904376745,-0.01073470339179]],[[0.028033036738634,-0.059079177677631,0.060357987880707],[0.13192531466484,-0.058573354035616,0.054631784558296],[-0.069353766739368,0.008794354274869,0.02434216812253]],[[0.044239047914743,0.1376675516367,0.068311251699924],[0.034313097596169,0.020044213160872,-0.10480724275112],[-0.045919056981802,0.020537909120321,0.18784609436989]],[[0.01904390566051,0.0080859633162618,-0.069561548531055],[0.03459146246314,0.029243836179376,-0.045694775879383],[-0.012067358009517,-0.11934888362885,-0.28522565960884]],[[0.044876456260681,0.016378974542022,0.044385440647602],[0.033276792615652,0.0058158058673143,-0.040926247835159],[0.031845804303885,0.055838316679001,-0.0068191955797374]],[[0.0063161216676235,0.080991968512535,0.056908003985882],[0.035403568297625,0.07286910712719,0.14562691748142],[-0.031746286898851,-0.026459161192179,-0.053852211683989]],[[-0.017870603129268,-0.014404905028641,0.15492448210716],[-0.19199320673943,-0.16407881677151,-0.083961874246597],[0.077486954629421,-0.208525583148,-0.026305627077818]],[[0.011453765444458,-0.12191352248192,-0.11953961104155],[-0.10897086560726,-0.018851270899177,0.103924036026],[0.033209625631571,-0.13406467437744,-0.016480972990394]],[[0.036778170615435,0.061325911432505,0.11552876234055],[0.010228352621198,0.025311190634966,0.0658895149827],[-0.17276251316071,0.027034206315875,0.016242559999228]],[[-0.092563159763813,-0.081246562302113,-0.089360602200031],[-0.26151746511459,-0.19981448352337,0.030020259320736],[-0.0044315583072603,0.00047342345351353,0.27637767791748]]],[[[0.041781041771173,-0.028044840320945,-0.093408159911633],[0.16599623858929,0.064258366823196,-0.044574193656445],[-0.069673158228397,0.047926485538483,-0.0096725979819894]],[[0.092631638050079,-0.09017600864172,-0.095386326313019],[0.046874403953552,0.11377816647291,-0.13325093686581],[-0.0046217641793191,0.034991543740034,-0.021401261910796]],[[-0.028549341484904,0.018423264846206,-0.10831265896559],[-0.0034197217319161,-0.11390374600887,-0.0079659540206194],[-0.010515265166759,0.025841014459729,0.051953561604023]],[[0.067877061665058,0.046858664602041,0.031508736312389],[-0.05963184684515,-0.045927777886391,0.045650251209736],[-0.059173028916121,0.035636808723211,0.096441969275475]],[[-0.071943655610085,0.039271041750908,0.10100934654474],[0.0303670540452,-0.014683639630675,0.053321324288845],[-0.055017568171024,0.033439040184021,-0.10786994546652]],[[0.057169195264578,0.013949920423329,-0.058334212750196],[0.011677373200655,0.081694915890694,0.070847041904926],[-0.079607918858528,-0.016274964436889,0.035331033170223]],[[-0.027506558224559,-0.18356066942215,0.021293267607689],[0.043213158845901,-0.090419270098209,0.0075119636021554],[-0.14752358198166,-0.21409912407398,-0.0091879162937403]],[[0.094855070114136,-0.0015643361257389,-0.029057495296001],[0.027433382347226,-0.058292862027884,-0.020209325477481],[-0.097987502813339,-0.18286547064781,0.053350705653429]],[[0.073923647403717,0.017584418877959,0.0319864153862],[-0.0028866159263998,-0.031708329916,-0.054547231644392],[0.015104407444596,-0.076869077980518,0.0028361924923956]],[[0.0082004917785525,-0.10619020462036,-0.039115704596043],[-0.048745267093182,0.14558179676533,-0.0023078650701791],[-0.065877728164196,0.089330986142159,0.036676041781902]],[[-0.083116784691811,0.030454490333796,0.0020916019566357],[-0.00075235054828227,0.014441726729274,0.025015680119395],[0.075657479465008,-0.042710911482573,0.012496238574386]],[[-0.033597435802221,-0.10031049698591,-0.037161737680435],[-0.047579426318407,-0.06040047109127,-0.13660205900669],[-0.04888154938817,-0.017912071198225,-0.052384316921234]],[[-0.12726984918118,-0.043049167841673,-0.11630415916443],[-0.033461146056652,-0.035111796110868,-0.056538108736277],[-0.030320575460792,0.060984719544649,0.029082493856549]],[[-0.060295060276985,-0.015768745914102,0.049123447388411],[-0.054762396961451,-0.040763322263956,0.018852697685361],[0.039380978792906,0.15159071981907,-0.029570346698165]],[[-0.031744744628668,-0.041507940739393,-0.026941834017634],[0.013302794657648,0.053669732064009,-0.057432591915131],[-0.077084816992283,-0.041558519005775,0.082299828529358]],[[-0.057061225175858,0.13694614171982,0.19251751899719],[0.04516937956214,0.018686465919018,0.089028052985668],[-0.021564174443483,-0.080069877207279,-0.13747178018093]],[[-0.075100362300873,0.069109171628952,-0.015009696595371],[-0.2294080555439,-0.0396773442626,-0.039024379104376],[-0.071659319102764,0.0022827640641481,-0.018822344020009]],[[0.039315648376942,0.0049957786686718,0.04571396484971],[-0.0089988047257066,-0.029712818562984,-0.042256034910679],[-0.051087196916342,-0.08876695483923,0.011763343587518]],[[0.10517528653145,0.018790667876601,-0.05022007599473],[0.076134778559208,0.046014774590731,-0.027607528492808],[0.23220872879028,0.10792535543442,-0.028529061004519]],[[0.05065942928195,-0.044143356382847,-0.037454940378666],[0.085015885531902,0.0059579550288618,-0.0036264185328037],[-0.073985494673252,-0.049814458936453,0.024581013247371]],[[0.061982158571482,-0.027648186311126,-0.083806268870831],[0.020496675744653,0.14509677886963,-0.052498403936625],[0.061660371720791,-0.055609408766031,0.0092168394476175]],[[-0.066762939095497,-0.14382588863373,-0.026272563263774],[0.037736676633358,-0.065271139144897,-0.024953572079539],[0.05260668322444,-0.056867893785238,-0.069483064115047]],[[-0.066403143107891,-0.13995432853699,-0.0091740880161524],[0.00024918187409639,0.076522774994373,0.099693730473518],[0.070135787129402,-0.0043328376486897,0.093654237687588]],[[-0.1323057115078,-0.010596616193652,-0.079707376658916],[-0.02937488630414,0.10565099865198,-0.025458484888077],[0.12333615124226,0.05739988386631,0.055930089205503]],[[-0.0009843873558566,-0.091441303491592,0.024262623861432],[-0.023790434002876,-0.010391969233751,-0.051694042980671],[-0.047741957008839,-0.081698372960091,0.026789791882038]],[[-0.22207672894001,0.052565537393093,0.060764364898205],[-0.10077887028456,-0.089584976434708,0.021420048549771],[0.066704295575619,-0.10379368811846,-0.014819974079728]],[[-0.041560176759958,-0.062790080904961,-0.11471398919821],[0.00290546589531,0.084910437464714,0.1672889739275],[-0.20581689476967,0.082535669207573,0.12407150864601]],[[-0.25959435105324,0.031035993248224,0.14822934567928],[-0.0070138522423804,-0.07806871086359,-0.013969785533845],[0.091588884592056,-0.12427212297916,0.044191248714924]],[[-0.046768523752689,-0.0013973953900859,0.11827509850264],[0.037216566503048,-0.049272961914539,0.075237654149532],[0.12434330582619,0.06825840473175,0.027441628277302]],[[-0.075406536459923,-0.2420137822628,-0.17421700060368],[0.038560178130865,0.065468467772007,0.055242545902729],[0.067118704319,0.16403576731682,0.14829638600349]],[[0.05229863524437,0.067211233079433,-0.023107001557946],[-0.035956636071205,0.089745797216892,-0.1500840485096],[0.042982082813978,0.082992240786552,-0.14840160310268]],[[-0.032913941890001,-0.030915660783648,0.061425272375345],[-0.03898847848177,0.040059238672256,0.082465700805187],[-0.0049386844038963,0.22552727162838,0.039938159286976]],[[-0.0082552256062627,-0.052632641047239,0.086081363260746],[-0.041929885745049,0.041901562362909,0.082633092999458],[4.7681765863672e-05,0.053279101848602,0.0035858869086951]],[[0.0054588615894318,-0.062743648886681,0.038322612643242],[0.058612488210201,-0.039001788944006,-0.043386176228523],[0.030412599444389,-0.010466948151588,0.036891058087349]],[[0.05779967084527,0.031614769250154,0.10262560099363],[-0.016751956194639,-0.048559617251158,-0.079531572759151],[0.064981795847416,-0.0029536925721914,-0.020915077999234]],[[0.0912119820714,0.040463872253895,-0.030585283413529],[-0.069217398762703,-0.058167245239019,0.0045884614810348],[-0.069984257221222,0.07900196313858,0.03184425085783]],[[0.04150801897049,0.094696335494518,-0.0092415940016508],[-0.035908967256546,0.017038971185684,0.070431873202324],[-0.068344786763191,0.031279399991035,0.042730648070574]],[[-0.029081659391522,0.10315430164337,0.084545083343983],[-0.011155899614096,-0.010677359998226,0.04276555404067],[-0.031133780255914,-0.01098445802927,0.093585610389709]],[[0.012821069918573,0.0069070355966687,-0.013041405938566],[-0.10106448084116,-0.034831132739782,-0.055286694318056],[-0.14426666498184,-0.092317968606949,0.039734844118357]],[[0.02103079110384,0.035882752388716,0.13314719498158],[-0.12904024124146,0.051513906568289,0.093481034040451],[-0.15682280063629,-0.094327591359615,-0.0097041493281722]],[[0.043201573193073,0.037286762148142,0.037700161337852],[0.022108592092991,-0.11243484914303,0.014154787175357],[0.016483867540956,-0.12020117789507,-0.040427781641483]],[[0.012673200108111,-0.11712821573019,0.018726574257016],[-0.16639091074467,0.024817025288939,0.02824212051928],[0.018525823950768,0.099157691001892,0.093646742403507]],[[-0.18059729039669,0.055441752076149,0.008875597268343],[0.00073085381882265,-0.029021803289652,0.0071500348858535],[0.12915863096714,-0.015338928438723,-0.14363315701485]],[[-0.087483130395412,-0.12516222894192,-0.051328003406525],[0.15818963944912,-0.014177542179823,0.006835097912699],[-0.033883407711983,0.066235423088074,0.047499515116215]],[[-0.10762833803892,-0.033123772591352,-0.044530287384987],[-0.034215088933706,-0.13235132396221,-0.015631387010217],[-0.19918617606163,0.027145551517606,-0.02896873652935]],[[0.042840529233217,-0.063081622123718,-0.14655938744545],[0.03174764290452,-0.014645277522504,-0.063070386648178],[-0.059082295745611,-0.020470505580306,-0.0533517152071]],[[-0.089109867811203,-0.072623044252396,-0.037710946053267],[-0.087859712541103,0.037406656891108,0.036728970706463],[-0.059247460216284,0.14707182347775,0.081826284527779]],[[0.0089248148724437,-0.013090463355184,0.1670927554369],[-0.1249392926693,-0.10248310118914,-0.010851996019483],[-0.095694348216057,-0.01974374614656,0.087668843567371]],[[-0.067797876894474,-0.010648465715349,-0.13680924475193],[-0.005018328782171,-0.034055463969707,-0.11327643692493],[-0.07573264092207,0.036387529224157,6.9976282247808e-05]],[[-0.072080433368683,-0.03653671219945,-0.035154826939106],[-0.015510731376708,0.09204038977623,0.010646177455783],[-0.031163202598691,0.068679802119732,0.0065620881505311]],[[0.0095099303871393,0.0018187575042248,0.040811330080032],[0.01741293258965,-0.10258578509092,0.080866649746895],[-0.13709478080273,0.085208930075169,-0.0017981282435358]],[[-0.075043238699436,0.041613973677158,-0.057620644569397],[-0.016942670568824,0.02638485096395,0.064952842891216],[-0.067927069962025,0.098266586661339,0.09266085922718]],[[0.088200025260448,-0.018340395763516,-0.099948592483997],[0.16060157120228,0.083861753344536,-0.036065366119146],[0.077774628996849,0.074690252542496,-0.15195314586163]],[[0.093897238373756,0.018992688506842,0.031935252249241],[0.079147480428219,0.23633873462677,0.11843743175268],[-0.11618472635746,-0.058609556406736,0.031376380473375]],[[-0.10857059061527,-0.020021064206958,0.08493572473526],[0.092335321009159,0.043923690915108,0.036004479974508],[-0.049513831734657,0.026712590828538,-0.052161775529385]],[[0.039087899029255,0.15755906701088,0.025302922353148],[0.14530748128891,-0.068164363503456,0.022831790149212],[-0.0068741515278816,-0.086285158991814,0.019350102171302]],[[-0.142891690135,-0.057795770466328,0.010612600483],[-0.064414158463478,-0.075032152235508,-0.075955025851727],[0.053950533270836,-0.03234389051795,-0.041154496371746]],[[-0.0094588836655021,-0.076081097126007,-0.13197085261345],[-0.027971770614386,-0.098812319338322,-0.012041299603879],[-0.016265757381916,-0.03092885017395,0.093265727162361]],[[0.1026708111167,0.0016272163484246,0.03061667829752],[0.023718254640698,-0.08264672011137,0.018258277326822],[0.11090798676014,0.079842939972878,0.069475807249546]],[[0.1324120759964,-0.01866577193141,-0.047388359904289],[0.0010439999168739,0.029608625918627,-0.0005685591022484],[0.055037781596184,0.052167259156704,0.067257739603519]],[[-0.1113844960928,-0.0031525436788797,-0.0038842491339892],[0.063842676579952,-0.0046100202016532,-0.029584081843495],[0.032114908099174,0.0085470322519541,0.20345252752304]],[[-0.17272354662418,-0.004089969675988,-0.14170467853546],[0.12710465490818,-0.031743429601192,-0.050798106938601],[0.13034963607788,0.015570481307805,-0.053204238414764]],[[-0.24639162421227,-0.14354349672794,-0.035902246832848],[-0.093033730983734,-0.13056108355522,0.11616396903992],[-0.11538258194923,-0.11393262445927,0.055254768580198]],[[0.069471791386604,0.05730114877224,0.056279767304659],[0.027069171890616,-0.046454723924398,-0.068371295928955],[-0.10202101618052,-0.030255002900958,-0.10901045054197]]],[[[-0.10575845837593,-0.12569758296013,-0.068045236170292],[-0.018948817625642,-0.068304941058159,0.04600490257144],[-0.07026395201683,-0.052815284579992,0.0072513092309237]],[[-0.027809325605631,0.065436854958534,0.033823039382696],[-0.055123042315245,0.015117241069674,-0.092764779925346],[0.031145190820098,0.022563192993402,0.055118657648563]],[[0.039306003600359,0.13739931583405,0.021756086498499],[-0.017104299739003,-0.050864063203335,0.090339630842209],[-0.047414273023605,-0.041340336203575,-0.015493473038077]],[[0.01880512945354,0.055549480021,-0.10859231650829],[0.026527563109994,0.052385255694389,-0.071640357375145],[0.028756663203239,-0.053309570997953,-0.083109870553017]],[[0.063588134944439,0.046227306127548,0.05446369946003],[0.023955540731549,0.013212010264397,0.041623283177614],[0.0052066808566451,0.0064289504662156,0.022135412320495]],[[-0.015783520415425,-0.0038197089452296,0.062954925000668],[0.097277790307999,0.040406066924334,-0.036311741918325],[-0.081495068967342,0.030273910611868,-0.10007425397635]],[[0.00014569328050129,0.040609836578369,-0.092279098927975],[0.043377418071032,0.035599954426289,0.022930599749088],[-0.042580936104059,0.0055390973575413,0.0025664651766419]],[[-0.047391731292009,-0.065393194556236,-0.0012809835607186],[0.0016195357311517,0.038235533982515,-0.026586188003421],[-0.051656913012266,-0.043628141283989,0.05957218632102]],[[-0.064098015427589,0.022077906876802,0.033080074936152],[-0.074556611478329,0.022811688482761,0.11366984248161],[-0.06934767216444,-0.051323302090168,0.051943432539701]],[[-0.075518362224102,-0.061279900372028,-0.09387831389904],[-0.06037126109004,0.0098121389746666,0.0031081694178283],[-0.10280615091324,-0.081449165940285,-0.079902775585651]],[[0.0016551713924855,0.091343782842159,-0.013364868238568],[-0.0063511035405099,-0.005505736451596,0.033952545374632],[0.037666324526072,-0.003816545708105,-0.0052726292051375]],[[0.070730403065681,0.08810768276453,-0.11017744243145],[0.052134122699499,-0.072413012385368,0.026448240503669],[0.043502032756805,0.041596710681915,0.01326341368258]],[[-0.11266054213047,0.04598393663764,0.081405259668827],[0.15210361778736,-0.11594646424055,0.083433493971825],[-0.06073160097003,0.066033340990543,-0.12323141843081]],[[0.019674127921462,-0.026953069493175,0.046382833272219],[-0.066772654652596,0.018586903810501,-0.024234099313617],[0.013292971998453,-0.01495438721031,-0.079469323158264]],[[0.076462090015411,0.089771665632725,-0.022262049838901],[0.089885033667088,0.074978314340115,-0.077298320829868],[0.050920747220516,0.044107716530561,-0.094383180141449]],[[-0.031833339482546,-0.089170821011066,0.067917831242085],[-0.05752769857645,0.003214874304831,-0.013502187095582],[-0.10921945422888,-0.098609499633312,0.063747480511665]],[[0.11721989512444,0.11599771678448,-0.016367001459002],[0.0063749691471457,0.030998373404145,-0.029212802648544],[0.04422951489687,0.090881772339344,0.00933738052845]],[[0.0066617643460631,-0.059989307075739,0.037566419690847],[0.032288894057274,-0.18801186978817,0.013982514850795],[-0.019982812926173,0.058973323553801,-0.15127521753311]],[[0.019415216520429,-0.052951022982597,0.026797477155924],[-0.093889646232128,-0.17576070129871,0.029390383511782],[0.056305602192879,-0.21688485145569,0.025371490046382]],[[0.026807444170117,0.012498641386628,-0.00083194085163996],[-0.015720246359706,0.0041189910843968,-0.023217063397169],[-0.059382572770119,0.037142507731915,0.037721283733845]],[[0.029081216081977,0.0073338760994375,-0.029178777709603],[0.075571924448013,-0.0012537906877697,0.048064783215523],[0.010462612845004,-0.050023049116135,-0.03296747803688]],[[-0.057683639228344,-0.0046097245067358,-0.087832443416119],[-0.071520797908306,-0.14635823667049,-0.057833835482597],[-0.0030592530965805,-0.081118158996105,-0.010368756018579]],[[-0.03716803714633,-0.059711944311857,-0.092753268778324],[0.060388382524252,-0.0074285627342761,-0.0008503309218213],[0.028301022946835,-0.026615936309099,-0.076153568923473]],[[-0.11562436819077,-0.03415397182107,-0.0098384479060769],[-0.018964815884829,-0.0087986728176475,0.03983610868454],[-0.096691764891148,-0.061421800404787,-0.10918261110783]],[[0.081497490406036,0.044489845633507,0.022322501987219],[-0.072060957551003,-0.032149501144886,-0.028089206665754],[0.069811791181564,0.1836956590414,0.080118656158447]],[[-0.092317268252373,-0.16072256863117,-0.03042284026742],[0.0052194949239492,-0.21953628957272,0.089423343539238],[-0.0536721162498,-0.20006659626961,0.10144746303558]],[[-0.039660200476646,-0.011587057262659,-0.058457858860493],[0.028266537934542,0.094902217388153,-0.0011215029517189],[-0.12485817074776,0.0021842569112778,-0.097073525190353]],[[-0.11835027486086,-0.043040085583925,0.038959663361311],[-0.039071872830391,0.080648332834244,-0.033378079533577],[0.025453601032495,-0.10626189410686,0.013999369926751]],[[0.10703011602163,0.018430054187775,0.15645611286163],[-0.0014650535304099,0.017736779525876,0.017893197014928],[-0.010887313634157,-0.063027709722519,-0.057926721870899]],[[-0.018426217138767,-0.074384436011314,0.010333266109228],[-0.013754728250206,-0.02117863483727,-0.12893402576447],[-0.13579140603542,-0.015636177733541,-0.18856690824032]],[[-0.098185680806637,-0.047557696700096,-0.058971583843231],[0.051878672093153,0.014166351407766,-0.033906236290932],[1.2765412975568e-05,0.054832316935062,0.036322765052319]],[[0.031725477427244,-0.068629637360573,-0.038058418780565],[-0.027944328263402,0.020665185526013,0.012621186673641],[0.10284696519375,0.0205017644912,-0.076234214007854]],[[-0.017115492373705,0.095377169549465,0.028285939246416],[-0.15524744987488,-0.035090710967779,0.083668291568756],[-0.01405328232795,-0.069165155291557,0.007361426949501]],[[-0.02269284799695,0.0024426428135484,-0.035531681030989],[-0.015458898618817,-0.086188808083534,-0.085896104574203],[-0.012893447652459,0.040816862136126,0.12604680657387]],[[-0.046833723783493,-0.037534527480602,-0.066534593701363],[-0.03361002728343,-0.067135013639927,0.0058364593423903],[0.010587682947516,-0.12212514132261,0.055091146379709]],[[0.017471147701144,-0.0098365657031536,0.12292741984129],[0.069302089512348,0.11525071412325,0.069160386919975],[-0.14347392320633,0.051461771130562,-0.037572558969259]],[[0.053788855671883,-0.10213078558445,0.016734657809138],[0.034269005060196,-0.11073711514473,-0.12268816679716],[0.031077058985829,0.054894786328077,0.10689808428288]],[[0.15876603126526,0.02032052539289,-0.029664350673556],[-0.068229585886002,-0.022291783243418,-0.020635612308979],[-0.14171972870827,0.06252047419548,0.065378196537495]],[[0.0029945548158139,-0.052918557077646,0.0065543306991458],[0.058655723929405,-0.085140474140644,0.0022377790883183],[-0.026359850540757,-0.030135251581669,-0.0052788532339036]],[[-0.07460705190897,-0.043261993676424,0.0059489370323718],[0.00082398328231648,-0.016371451318264,-0.11496114730835],[0.018209058791399,-0.004172220826149,-0.040714044123888]],[[-0.0083795255050063,-0.061820931732655,0.090699009597301],[-0.0079529555514455,0.14960123598576,-0.071209095418453],[0.0100621515885,0.10343228280544,0.034358248114586]],[[0.030550638213754,0.012801418080926,0.005532625131309],[0.081684999167919,1.3252756616566e-05,-0.075978711247444],[0.071123883128166,-0.15072974562645,-0.088460229337215]],[[0.1007709056139,0.06851402670145,-0.058032404631376],[-0.037638504058123,-7.7615513873752e-05,0.023209348320961],[0.051400620490313,-0.029823197051883,0.048119250684977]],[[0.067678585648537,0.078754931688309,-0.024849796667695],[0.037384428083897,-0.034239932894707,-0.025655657052994],[-0.015743412077427,0.011821216903627,-0.00032058433862403]],[[0.096156507730484,-0.067358776926994,0.12730759382248],[0.129051476717,-0.22916981577873,0.012077120132744],[0.011852487921715,0.010213216766715,-0.0014464600244537]],[[0.027528481557965,-0.08338251709938,0.14375533163548],[0.11115581542253,0.068428680300713,-0.031017327681184],[0.066305041313171,0.021627927199006,1.8903599993791e-05]],[[0.13019089400768,0.17047394812107,0.038938786834478],[0.03953205421567,0.01865990832448,0.01414377335459],[-0.030279034748673,-0.025264162570238,-0.040798913687468]],[[0.070727713406086,0.0024806580040604,-0.080709978938103],[0.014036118984222,0.0078556826338172,-0.041492205113173],[0.028070617467165,0.0042122672311962,0.058278001844883]],[[0.0074951304122806,0.063230082392693,0.06572961807251],[-0.065337926149368,-0.055495481938124,0.036443743854761],[-0.0048661902546883,-0.068257376551628,0.059079669415951]],[[0.076333947479725,-0.014458756893873,-0.083542332053185],[0.066483840346336,-0.037149298936129,-0.13800121843815],[0.098404362797737,0.040342289954424,-0.086208179593086]],[[0.074639357626438,-0.025362925603986,0.052860379219055],[0.072642229497433,0.0093271844089031,-0.086495496332645],[0.034327816218138,-0.052882552146912,-0.086314082145691]],[[-0.010490229353309,-0.087626181542873,-0.049346417188644],[-0.027795488014817,0.010662330314517,-0.017465468496084],[-0.0077409725636244,-0.022217448800802,-0.10295162349939]],[[-0.11134863644838,-0.0016358952270821,0.022164108231664],[-0.15971681475639,0.084828659892082,-6.3377527112607e-05],[-0.073138102889061,0.006395636126399,0.014189324341714]],[[-0.11058202385902,-0.034688021987677,0.029841503128409],[0.087510377168655,-0.013198332861066,0.083420872688293],[-0.018038691952825,0.067586243152618,0.092735424637794]],[[0.02996239438653,-0.1239757090807,0.0044179214164615],[0.064876392483711,-0.018901530653238,0.036287982016802],[0.025584140792489,0.12762677669525,0.049081116914749]],[[-0.010111869312823,-0.007705245167017,0.067366607487202],[0.02926985733211,-0.027422858402133,-0.039909146726131],[-0.046076308935881,0.070497177541256,-0.084363542497158]],[[0.043450273573399,-0.023533329367638,-0.071863315999508],[-0.022174052894115,0.049744926393032,-0.063157111406326],[0.038647949695587,-0.032784681767225,-0.059917781502008]],[[0.0082354424521327,0.018863443285227,-0.026336727663875],[-0.067305035889149,-0.043258048593998,-0.054623868316412],[0.075954221189022,-0.10367837548256,-0.011883958242834]],[[-0.0020378767512739,0.0068172067403793,-0.24209426343441],[0.029674276709557,-0.037385426461697,-0.07137418538332],[0.061284966766834,0.096338860690594,-0.13085347414017]],[[-0.074137516319752,8.567967597628e-05,-0.052064556628466],[-0.089626207947731,-0.065318904817104,0.011399785988033],[0.043759576976299,0.0039089797064662,0.034528899937868]],[[-0.020633330568671,-0.027869872748852,0.05245628580451],[0.040298998355865,0.018718535080552,-0.0077657932415605],[-0.0072107124142349,0.0030341255478561,-0.0090605597943068]],[[-0.035496387630701,0.12167693674564,0.036491792649031],[0.025551971048117,-0.021578159183264,-0.036042600870132],[-0.021629622206092,-0.057503759860992,-0.058562118560076]],[[-0.062119774520397,0.01486917026341,-0.056497249752283],[0.10283867269754,-0.031315229833126,-0.0098194535821676],[0.016364678740501,-0.015626484528184,-0.086388684809208]],[[-0.0012529230443761,0.050164826214314,-0.022810595110059],[0.0059949224814773,0.074452951550484,0.0029767530504614],[0.068972498178482,0.097794100642204,-0.023465733975172]]],[[[-0.096479646861553,0.0943443775177,0.14128735661507],[-0.12026432901621,-0.042140871286392,-0.059694152325392],[-0.07574787735939,0.15580469369888,-0.075717777013779]],[[0.0671771094203,0.061803452670574,-0.14325454831123],[0.056865561753511,-0.21932661533356,-0.10793700814247],[-0.077955082058907,0.042580414563417,0.16863325238228]],[[-0.047142826020718,0.047471050173044,0.021858474239707],[0.041796907782555,0.0078562162816525,0.048812605440617],[-0.083382613956928,-0.16555148363113,-0.018161505460739]],[[-0.00093424366787076,-0.03526346385479,-0.050956044346094],[0.10819871723652,0.10193742066622,-0.0094926469027996],[0.023401761427522,-0.056423608213663,-0.16963674128056]],[[0.04234154522419,-0.048053245991468,-0.022413739934564],[0.0071739908307791,-0.1221829354763,0.0051768058910966],[-0.11498226970434,-0.15404622256756,-0.089939177036285]],[[-0.008525880984962,0.014158618636429,0.043066065758467],[-0.058884788304567,0.17620326578617,0.17640347778797],[-0.060812927782536,-0.011409683153033,-0.039971999824047]],[[-0.074934586882591,0.021048456430435,0.012161273509264],[0.0046694031916559,0.013292142190039,0.061719536781311],[0.053152807056904,0.18264937400818,-0.059729620814323]],[[0.089170463383198,0.0067517179995775,-0.015102691948414],[0.086230300366879,0.042092047631741,0.10680574178696],[-0.14224483072758,-0.047595046460629,0.090929731726646]],[[0.022973489016294,0.0025675459764898,0.030858555808663],[-0.038144707679749,-0.073832996189594,-0.0035110781900585],[-0.073094740509987,0.062618024647236,0.041042890399694]],[[-0.025845818221569,-0.011893884278834,-0.0022042717318982],[0.044457718729973,-0.072630919516087,-0.052862018346786],[0.027300084009767,-0.23855173587799,-0.050332643091679]],[[0.11453285068274,-0.011339982040226,0.20605076849461],[-0.17293255031109,-0.057503260672092,-0.02369430847466],[0.041316140443087,-0.076660692691803,0.19951431453228]],[[0.060508340597153,-0.15149027109146,-0.0026397407054901],[-0.055803503841162,0.018805222585797,0.074364423751831],[-0.060427282005548,0.027418546378613,-0.073998466134071]],[[-0.18547968566418,-0.065214142203331,-0.21231956779957],[0.046480994671583,0.017719076946378,-0.0064543480984867],[0.02714260853827,0.01078235078603,-0.067693628370762]],[[-0.016039233654737,0.052585497498512,-0.06237930431962],[0.071535356342793,-0.045981500297785,-0.0033770229201764],[0.0028783727902919,0.19228844344616,0.012267458252609]],[[0.0038962832186371,-0.17337860167027,-0.038586594164371],[0.14734862744808,0.084230527281761,0.086368001997471],[0.0073444596491754,-0.1558011174202,-0.056024480611086]],[[0.28440469503403,-0.31927508115768,0.029331788420677],[-0.2062736749649,-0.10612200945616,-0.028341500088573],[0.049351371824741,-0.11768203228712,0.18900680541992]],[[-0.17502789199352,-0.069328725337982,-0.039181001484394],[0.05449378862977,0.077639482915401,0.014127909205854],[-0.093699418008327,0.014829114079475,0.0090733012184501]],[[-0.02653862349689,-0.05480719357729,0.085379779338837],[0.018883412703872,-0.13822059333324,0.039310541003942],[-0.095007881522179,-0.026479281485081,0.039036899805069]],[[-0.0069331070408225,0.11139720678329,-0.13319547474384],[0.11443039774895,-0.055050030350685,0.026662025600672],[-0.001837574178353,-0.069981060922146,-0.084220953285694]],[[-0.0091005442664027,0.13796038925648,0.029306190088391],[0.049378033727407,0.065452300012112,-0.092999450862408],[0.037334050983191,0.21562479436398,0.069195002317429]],[[0.028956897556782,0.055844273418188,0.0012878363486379],[0.0011754072038457,0.10655349493027,-0.019933821633458],[0.073788106441498,0.097209379076958,-0.15206484496593]],[[-0.031022058799863,-0.0759042724967,-0.04809632524848],[-0.014161131344736,-0.14663310348988,0.047120358794928],[-0.0392827950418,-0.047704186290503,-0.018263963982463]],[[0.047908414155245,-0.0051288432441652,0.12498284876347],[-0.030693419277668,-0.014832274056971,-0.1638473123312],[0.051998388022184,0.033214654773474,-0.063407346606255]],[[0.071090675890446,0.05663987249136,0.19141064584255],[-0.024189118295908,0.0025107087567449,-0.082030184566975],[0.0019424149068072,-0.0015521690947935,0.0073610222898424]],[[0.064678341150284,-0.014524022117257,-0.053740862756968],[-0.070354469120502,-0.061762653291225,-0.1126574575901],[0.28694766759872,0.22415970265865,-0.1197607293725]],[[-0.012028616853058,0.038183264434338,0.010130257345736],[-0.10721002519131,-0.055298887193203,0.14609155058861],[-0.1883037686348,0.037791792303324,0.021818552166224]],[[-0.081524461507797,-0.026505714282393,-0.13442513346672],[-0.011066416278481,0.14098258316517,-0.094062224030495],[-0.088967576622963,0.083937518298626,-0.070698730647564]],[[-0.17351491749287,-0.14967304468155,0.0065789553336799],[0.12244219332933,0.062243811786175,0.017937371507287],[-0.029410531744361,0.02199125662446,-0.028169644996524]],[[0.11031384766102,-0.04533962905407,0.11648979783058],[-0.089217945933342,-0.064498335123062,-0.084300063550472],[0.13398738205433,-0.029423689469695,0.16619186103344]],[[0.010510740801692,0.0667959228158,0.082790829241276],[-0.07702711969614,-0.012494433671236,-0.14396572113037],[0.030244961380959,0.055745169520378,-0.14569714665413]],[[-0.017562305554748,0.01281604450196,-0.12182896584272],[0.12985916435719,0.033930167555809,0.19252975285053],[-0.14230313897133,-0.22736966609955,0.043588813394308]],[[0.0082371803000569,-0.081896834075451,-0.13557292521],[0.14870491623878,0.049920782446861,0.14440606534481],[-0.0097332689911127,-0.15517804026604,0.1247536689043]],[[-0.075746618211269,0.066481873393059,0.0037993681617081],[-0.023077741265297,-0.08997792750597,-0.074517615139484],[-0.1325398683548,-0.0054742968641222,0.11851969361305]],[[0.053496792912483,0.031803496181965,0.086824528872967],[-0.094457976520061,-0.026090487837791,-0.098195783793926],[-0.061709523200989,-0.035703722387552,0.10218290239573]],[[0.010729365050793,-0.19229392707348,-0.16181819140911],[0.080618590116501,0.095346368849277,0.1742746680975],[-0.14544139802456,-0.0060341414064169,0.0027425631415099]],[[0.072258658707142,0.16154216229916,-0.10044438391924],[-0.088199585676193,-0.068950623273849,-0.093613430857658],[0.14378353953362,-0.039297729730606,0.044026982039213]],[[0.066071085631847,-0.0015348468441516,-0.039503261446953],[0.015979532152414,-0.010193772614002,-0.095858186483383],[-0.079975537955761,0.12163061648607,0.13436385989189]],[[-0.071057543158531,0.071079015731812,0.018434148281813],[0.1295959353447,-0.12698276340961,-0.11677368730307],[-0.10664102435112,0.12424269318581,0.065740413963795]],[[-0.20353958010674,0.042317420244217,0.032298415899277],[-0.13410775363445,-0.05210242420435,-0.066009491682053],[-0.11475048959255,0.087001897394657,-0.044510580599308]],[[0.027418032288551,-0.20411263406277,-0.045899379998446],[0.12251597642899,0.0036814974155277,-0.080752447247505],[0.07780996710062,-0.14933604001999,0.0063369856216013]],[[-0.014561421237886,0.044955220073462,0.08028631657362],[0.021047126501799,-0.063819229602814,-0.1315560489893],[0.12551431357861,-0.08344928175211,0.0062550357542932]],[[0.18822595477104,-0.073760740458965,-0.04080668091774],[0.095860369503498,-0.041116628795862,-0.03498125821352],[0.070318132638931,0.064387172460556,0.06559194624424]],[[0.10201948881149,-0.0059667280875146,-0.13228823244572],[0.018962766975164,-0.14208202064037,-0.083463601768017],[0.053058635443449,0.065782569348812,-0.060473773628473]],[[0.031293649226427,0.026660339906812,-0.096068024635315],[0.087453693151474,0.024017056450248,0.020959375426173],[-0.00096567079890519,0.10321118682623,-0.062936760485172]],[[0.00074999075150117,-0.2053542137146,-0.04389675706625],[0.086880080401897,-0.032934293150902,0.0099696712568402],[0.042840000241995,-0.10650577396154,-0.042851861566305]],[[0.047483075410128,0.014772902242839,-0.0098607018589973],[-0.0048297136090696,-0.025225687772036,0.01722876355052],[0.069673262536526,0.1503309905529,0.03158026561141]],[[-0.17399987578392,-0.04071631282568,0.015844844281673],[0.040906921029091,0.1145421564579,0.027092345058918],[0.057197403162718,0.024883227422833,0.065842218697071]],[[0.065691374242306,-0.067717537283897,-0.062487713992596],[0.013585275970399,0.023986531421542,-0.018882973119617],[0.0027222030330449,-0.0035950967576355,-0.030951721593738]],[[-0.033917017281055,0.076103404164314,-0.022426469251513],[-0.0033072778023779,-0.065077923238277,0.062493808567524],[-0.21073722839355,0.038834284991026,-0.069284275174141]],[[-0.087955445051193,-0.041006837040186,-0.014839793555439],[0.076899603009224,0.023340487852693,0.020367220044136],[0.08722260594368,0.00040710202301852,-0.10787932574749]],[[0.10463407635689,-0.04720214381814,0.0260975882411],[-0.069283358752728,-0.24901190400124,-0.072651691734791],[-0.13544088602066,-0.068858124315739,-0.0039236405864358]],[[0.13605110347271,-0.078854762017727,0.054120976477861],[-0.048728287220001,-0.10471452027559,-0.052341613918543],[0.13255575299263,-0.087861351668835,0.19163309037685]],[[-0.054579734802246,-0.0050235744565725,0.10864351689816],[0.031395070254803,-0.092726603150368,0.089043259620667],[-0.061268471181393,-0.018085487186909,0.030521418899298]],[[-0.055968225002289,0.13298477232456,-0.13581201434135],[-0.030338000506163,0.14257605373859,0.0018668723059818],[-0.032825563102961,-0.052707079797983,-0.051318805664778]],[[-0.0082432264462113,-0.052031300961971,0.019544651731849],[0.022608453407884,0.18133383989334,0.078542731702328],[0.014937349595129,0.060748364776373,-0.094698876142502]],[[-0.11305858939886,-0.027215845882893,0.077340140938759],[-0.0093685509636998,0.043986976146698,-0.070841044187546],[-0.0063788979314268,0.0739551410079,0.038648579269648]],[[0.10990328341722,0.068899378180504,0.0053891530260444],[-0.095969662070274,0.033139243721962,0.14241912961006],[-0.055962987244129,-0.038313243538141,0.11030964553356]],[[-0.098330222070217,-0.034177590161562,-0.063208870589733],[0.10292350500822,-0.024292070418596,0.19082047045231],[-0.0095388619229198,-0.096169598400593,-0.1693938523531]],[[0.0035598175600171,0.01617880910635,0.077377445995808],[-0.037731442600489,-0.11498325318098,0.0058419513516128],[0.086764216423035,0.04466150328517,-0.082037635147572]],[[-0.15678472816944,0.01573789305985,-0.04220812395215],[-0.18544209003448,0.044852137565613,0.065427973866463],[-0.22709913551807,0.051302216947079,-0.10284223407507]],[[-0.1029764264822,0.12606509029865,-0.04098517075181],[-0.01442988961935,-0.15473107993603,0.0092320078983903],[-0.059717055410147,0.23395630717278,0.04221673309803]],[[0.017645422369242,-0.0094771422445774,-0.013522954657674],[-0.0026877112686634,-0.026383901014924,-0.01046818960458],[0.084203355014324,0.02964766509831,0.19153815507889]],[[-0.021607661619782,-0.0030917469412088,-0.024779967963696],[-0.066588245332241,0.055800449103117,-0.014909823425114],[0.11284022033215,-0.045913320034742,0.031965468078852]],[[0.027898862957954,0.010495204478502,0.10553426295519],[-0.049676772207022,0.17582114040852,0.038194045424461],[-0.090953923761845,-0.010975479148328,-0.12121044844389]]],[[[-0.039900381118059,0.13833050429821,0.0508196875453],[-0.051372777670622,0.016889732331038,-0.016628621146083],[-0.06320334225893,-0.0057971482165158,0.019171638414264]],[[-0.039951100945473,0.095796316862106,0.062210522592068],[0.02391841262579,0.14016841351986,-0.072951130568981],[-0.032492071390152,0.033432025462389,0.1096313148737]],[[0.069289699196815,0.027535537257791,0.06463598459959],[-0.0047871642746031,0.079700976610184,0.031067032366991],[0.10591264814138,-0.089780211448669,-0.031526982784271]],[[0.10588930547237,-0.029760006815195,-0.0003750943869818],[-0.018155148252845,-0.016316834837198,0.018912436440587],[0.033314026892185,-0.052900388836861,-0.087892852723598]],[[0.005688245408237,-0.00019477514433675,0.023411579430103],[0.010552721098065,0.044781073927879,0.043530482798815],[0.027827361598611,0.0043327598832548,-0.058061748743057]],[[0.062030881643295,0.1225743740797,-0.029127625748515],[0.0334163159132,-0.0061592380516231,0.057582445442677],[0.15754356980324,0.063878983259201,-0.0053936210460961]],[[0.083937965333462,0.015257501974702,0.044499471783638],[-0.042511630803347,0.05958466976881,0.003803146071732],[-0.094551369547844,0.031554322689772,0.040727935731411]],[[-0.04484099522233,0.088453277945518,-0.015422326512635],[-0.0645786896348,-0.068650051951408,0.06761272996664],[0.022244168445468,-0.03310739248991,0.13230492174625]],[[-0.16723512113094,0.033273451030254,0.0048189619556069],[-0.040894787758589,-0.03401006385684,0.072141230106354],[-0.13215145468712,0.066632777452469,0.17929537594318]],[[-0.14162573218346,-0.20433758199215,-0.00055664021056145],[-0.21010707318783,-0.25769144296646,-0.11184360086918],[-0.25865042209625,-0.38133984804153,-0.024045025929809]],[[0.050575099885464,0.03934009000659,-0.026195392012596],[0.063871130347252,0.0015840702690184,-0.016436127945781],[0.0020250943489373,-0.011179796420038,0.026938315480947]],[[0.019782131537795,0.044510990381241,-0.0042248242534697],[-0.069517910480499,-0.050376411527395,-0.0031612503807992],[-0.1606497913599,-0.073312669992447,0.021243091672659]],[[-0.063452199101448,0.024192014709115,-0.0045845485292375],[0.0084260310977697,-0.13306060433388,0.0086809257045388],[-0.037196017801762,0.025430800393224,0.058908324688673]],[[0.094675064086914,0.043271351605654,0.020692057907581],[-0.061650056391954,-0.035295397043228,-0.0056954775936902],[-0.092986427247524,-0.0077639734372497,-0.031317286193371]],[[0.0015112340915948,0.018853655084968,-0.041016168892384],[0.031374849379063,0.018567275255919,0.011669884435833],[-0.013741528615355,-0.034166544675827,-0.098338298499584]],[[0.0044292942620814,0.0057734684087336,-0.00088314415188506],[-0.052437979727983,0.018843304365873,-0.042817212641239],[0.061380989849567,0.093451417982578,-0.11203256994486]],[[0.023952713236213,0.040927935391665,0.035778764635324],[0.013768999837339,0.08968260884285,0.042876064777374],[0.0014029145240784,0.049476765096188,0.058118175715208]],[[0.0014968195464462,-0.10523222386837,-0.12165111303329],[0.052700079977512,-0.022898701950908,-0.059422165155411],[0.15618720650673,-0.058020371943712,-0.070546627044678]],[[-0.06517019867897,-0.14479443430901,0.10388503968716],[-0.1375083476305,-0.15523435175419,-0.076250180602074],[-0.079616524279118,-0.18207810819149,0.12517750263214]],[[0.072905853390694,-0.12215390056372,0.0068691512569785],[0.0016408259980381,0.011585017666221,0.042318645864725],[0.03714507445693,0.014276002533734,-0.13583068549633]],[[0.046535577625036,-0.073888517916203,-0.0036603882908821],[0.0088717741891742,-0.030150417238474,-0.072507202625275],[-0.021777803078294,-0.0096670826897025,0.073347203433514]],[[-0.052769470959902,-0.053441524505615,0.014497072435915],[-0.072728708386421,-0.26949679851532,-0.2008750885725],[0.014488748274744,0.02592827565968,-0.043386343866587]],[[-0.022565253078938,-0.082239337265491,-0.083539709448814],[-0.053099013864994,0.01728923805058,0.027487754821777],[0.04069396853447,0.038178373128176,0.017533447593451]],[[-0.14154480397701,-0.058053772896528,-0.064957618713379],[-0.097662582993507,0.019810086116195,0.047746300697327],[0.15843984484673,-0.11388890445232,0.014415223151445]],[[-0.079922623932362,-0.040686056017876,-0.13605943322182],[-0.0097069945186377,0.019328428432345,-0.035398375242949],[0.013306831941009,-0.037835597991943,-0.12191672623158]],[[-0.033595032989979,0.040851760655642,-0.027876859530807],[-0.05178014934063,-0.10940741747618,0.003423223271966],[-0.13703019917011,-0.051206760108471,-0.014627581462264]],[[-0.0055480520240963,0.12620832026005,-0.031895291060209],[-0.12371178716421,0.046376120299101,-0.0028970672283322],[-0.14069557189941,-0.033477298915386,0.13668951392174]],[[0.045439999550581,-0.027056258171797,0.10417103022337],[-0.091060519218445,-0.090935803949833,0.0032083683181554],[0.052720222622156,-0.041904632002115,-0.094810388982296]],[[-0.032938033342361,0.0054280795156956,0.014639812521636],[-0.086016274988651,0.020128076896071,0.0074131875298917],[-0.1067316159606,0.040501315146685,-0.056990254670382]],[[0.19794929027557,-0.010384168475866,-0.017779881134629],[-0.020570522174239,0.071810863912106,-0.19150750339031],[0.079882323741913,-0.019608752802014,-0.29051241278648]],[[-0.11089117079973,-0.012412641197443,-0.010013830848038],[-0.038118652999401,-0.11039358377457,-0.13235242664814],[0.14087520539761,-0.013362056575716,-0.075469300150871]],[[-0.093361034989357,-0.047479543834925,-0.012980191037059],[0.057530805468559,0.0087070865556598,-0.038350574672222],[0.016519328579307,0.07215278595686,-0.072204776108265]],[[-0.1454411894083,0.044356949627399,0.016645781695843],[-0.11803752183914,0.022581402212381,0.036664258688688],[-0.11527832597494,0.023717548698187,0.016209682449698]],[[0.072762303054333,-0.028160629794002,-0.099970944225788],[0.059746213257313,-0.070395782589912,-0.055301416665316],[0.064969152212143,0.025167813524604,-0.019761126488447]],[[-0.058541916310787,-0.058110356330872,-0.013867798261344],[-0.097906522452831,-0.05033852905035,-0.10677394270897],[0.062777683138847,-0.066458664834499,-0.065760977566242]],[[0.027225932106376,0.058674491941929,0.06703370064497],[-0.031047962605953,-0.077496699988842,-0.055496048182249],[-0.084166169166565,0.0075109205208719,-0.15391619503498]],[[0.014340759254992,-0.030061077326536,-0.16811868548393],[-0.13106639683247,-0.17751574516296,-0.099480025470257],[-0.069132082164288,-0.03963266685605,-0.19108010828495]],[[0.057594448328018,-0.015383139252663,-0.11416856944561],[0.046647451817989,0.02547325566411,0.029077393934131],[-0.059894185513258,0.062969677150249,-0.0083467680960894]],[[0.093906044960022,-0.0051764701493084,-0.051531922072172],[0.066526167094707,-0.050288513302803,-0.10507551580667],[0.065292119979858,-0.041052352637053,-0.047426894307137]],[[-0.02348992228508,-0.026433046907187,0.046289645135403],[-0.10850470513105,-0.099152967333794,-0.012204757891595],[-0.10586858540773,0.039217565208673,-0.021505802869797]],[[0.006624311208725,0.057652071118355,-0.07869416475296],[-0.00056493817828596,-0.070938847959042,0.032828938215971],[0.052233044058084,0.04407624900341,-0.11660053580999]],[[-0.088044218719006,0.067157588899136,0.038233987987041],[0.13875904679298,-0.079854056239128,-0.032800018787384],[-0.07531576603651,0.043876960873604,-0.052569299936295]],[[0.048230856657028,0.098600447177887,-0.083137951791286],[0.086461693048477,-0.054892435669899,-0.016041219234467],[0.034805651754141,-0.0099603580310941,-0.089218057692051]],[[0.18593552708626,-0.01700222119689,-0.029058193787932],[0.051583126187325,-0.078789070248604,-0.11249762028456],[0.067093834280968,-0.081113450229168,-0.064887724816799]],[[0.0029304781928658,0.015991372987628,-0.056442089378834],[-0.05253891274333,-0.06590373814106,-0.10529229044914],[0.048047550022602,0.011185386218131,-0.090000294148922]],[[-0.0081147579476237,-0.055010061711073,0.01752145588398],[-0.12160869687796,-0.059085223823786,0.038642227649689],[0.091558329761028,-0.043905936181545,0.0082464208826423]],[[-0.034953307360411,0.062527492642403,0.061540938913822],[0.17247702181339,0.037285789847374,-0.071523942053318],[0.062757559120655,0.010238412767649,0.03415859490633]],[[0.066015347838402,-0.056490704417229,0.026075232774019],[0.15311044454575,-0.092377744615078,0.0048107206821442],[0.060534529387951,-0.10161686688662,0.037326313555241]],[[-0.017649419605732,-0.075331546366215,0.0073329694569111],[0.068735212087631,0.033429406583309,0.11259066313505],[0.028205007314682,-0.033970590680838,-0.015634255483747]],[[0.11815188080072,0.042456287890673,-0.011569821275771],[0.041321638971567,0.01061466243118,-0.095379091799259],[0.11565040796995,-0.077705010771751,-0.16117803752422]],[[0.11820550262928,0.088241137564182,-0.041918788105249],[0.077467076480389,-0.10071550309658,0.055380385369062],[-0.0034121773205698,0.0037085788790137,-0.086339607834816]],[[-0.084202416241169,-0.034541171044111,-0.083693258464336],[-0.063581138849258,0.036613561213017,-0.085732206702232],[-0.058348130434752,0.0032721254974604,-0.093118712306023]],[[-0.011401371099055,0.019581085070968,-0.019078591838479],[-0.18287412822247,0.042618330568075,0.16791999340057],[-0.042861852794886,0.019075561314821,0.055696170777082]],[[0.089455552399158,0.014794839546084,0.1021827980876],[0.044358633458614,-0.0095665901899338,-0.024522595107555],[0.030579702928662,-0.021887050941586,0.067146807909012]],[[-0.00085060310084373,0.071084380149841,-0.0023823482915759],[0.073927700519562,0.0059292856603861,0.056727264076471],[0.067876599729061,0.032086934894323,0.059317618608475]],[[-0.2524738907814,0.25893023610115,0.19208785891533],[-0.0068700630217791,0.053799007087946,0.12459669262171],[-0.023438921198249,-0.053067501634359,-0.035715062171221]],[[0.14287704229355,0.080769114196301,-0.065656624734402],[0.13308544456959,0.037343323230743,0.027537493035197],[0.068950973451138,-0.0040361629799008,0.051476754248142]],[[-0.024486010894179,0.071844853460789,-0.0014717403100803],[-0.061087533831596,-0.12341877818108,-0.10604474693537],[-0.029732406139374,-0.050850208848715,-0.14266330003738]],[[-0.016114307567477,0.055002395063639,-0.052350152283907],[0.12530121207237,-0.035655297338963,-0.0017177273984998],[0.046793963760138,-0.043016150593758,-0.095042988657951]],[[-0.072537630796432,-0.017418477684259,0.034773468971252],[0.014051442965865,0.00063310307450593,0.086111702024937],[-0.053940959274769,0.10786160826683,-0.0090988641604781]],[[-0.00057722948258743,-0.057783856987953,0.018416466191411],[0.081854291260242,0.023920780047774,-0.056125320494175],[0.034285835921764,0.015820365399122,0.069742299616337]],[[-0.21437105536461,0.085857845842838,-0.00083128438564017],[0.079608954489231,0.040424779057503,0.05331477150321],[-0.049800679087639,0.025414844974875,0.071608170866966]],[[0.045906074345112,0.076004609465599,-0.021301969885826],[-0.048196651041508,-0.031894408166409,-0.02447709441185],[0.012037861160934,-0.010415794327855,0.059301871806383]],[[0.02418090030551,-0.030455745756626,0.037000589072704],[-0.011109142564237,0.037610415369272,0.034400604665279],[0.10095267742872,0.063226163387299,0.15333254635334]]],[[[-0.13943092525005,-0.015351695939898,-0.015006757341325],[-0.025566415861249,0.019470691680908,0.00047590365284123],[0.1742562353611,-0.010331482626498,0.063528470695019]],[[-0.037733811885118,-0.092131249606609,-0.086269497871399],[0.058584123849869,-0.073532111942768,-0.031035576015711],[0.072794675827026,0.05129037424922,-0.030135121196508]],[[-0.03288609161973,0.0550876557827,0.079731501638889],[-0.05447394400835,-0.05511262640357,-0.13571889698505],[-0.0099324760958552,0.065407782793045,0.062265031039715]],[[-0.10108556598425,0.054834309965372,-0.059969212859869],[-0.0028130460996181,0.087551943957806,0.051964659243822],[-0.052821557968855,0.024301109835505,-0.037242699414492]],[[0.073130875825882,0.022228902205825,-0.0060433647595346],[0.055516928434372,-0.0083188898861408,0.024152297526598],[0.13182932138443,0.022447694092989,0.10002548247576]],[[-0.019002266228199,-0.017349498346448,-0.00057481601834297],[-0.052668996155262,-0.068679302930832,0.10960464179516],[0.19165346026421,0.11084441095591,-0.10228358209133]],[[-0.065380774438381,-0.17467804253101,-0.064594447612762],[0.12097669392824,0.21879933774471,0.1122330725193],[0.02629673294723,0.013361560180783,0.076694317162037]],[[0.14464928209782,0.04228001087904,0.046945884823799],[-0.051611494272947,-0.0034476928412914,0.013117182999849],[0.079407021403313,0.15791217982769,-0.14269369840622]],[[-0.054705481976271,-0.013639857061207,-0.013307536952198],[-0.025010531768203,0.0089766578748822,0.021292790770531],[0.047810737043619,0.0014359264168888,0.024666339159012]],[[-0.033253483474255,0.085985630750656,-0.021558567881584],[0.067569278180599,-0.11046611517668,-0.016533955931664],[-0.062568143010139,-0.13735464215279,-0.097677066922188]],[[0.05242333561182,-0.040702138096094,0.051359154284],[0.033240359276533,0.094844900071621,0.0095852827653289],[0.076045572757721,-0.012463674880564,-0.017864154651761]],[[0.18064504861832,0.060734715312719,0.022018821910024],[-0.021555041894317,0.03304224088788,-0.0054013407789171],[-0.18101979792118,-0.14696764945984,-0.089086107909679]],[[0.068022161722183,-0.035032596439123,0.058015819638968],[0.0057346951216459,-0.066958859562874,0.037465158849955],[-0.042377907782793,-0.075765177607536,-0.09389191865921]],[[0.067671708762646,0.02459510602057,-0.044785134494305],[0.14527240395546,0.036664918065071,0.057219799607992],[-0.072610855102539,-0.063898168504238,-0.043632306158543]],[[0.0060116448439658,0.09274647384882,0.053656548261642],[-0.018796345219016,-0.057431045919657,-0.018084030598402],[-0.18260945379734,-0.078866966068745,-0.096091538667679]],[[0.1534176170826,0.049124144017696,0.11230678111315],[-0.17960058152676,0.017432264983654,0.026991037651896],[0.031629037111998,-0.12023149430752,0.18259562551975]],[[0.048250615596771,0.07712110877037,0.1195363253355],[-0.01317445281893,0.098077371716499,0.0094409380108118],[-0.07216465473175,-0.012930759228766,0.0091865342110395]],[[-0.050295919179916,0.017698340117931,0.014889618381858],[6.3572559156455e-05,-0.0049084164202213,0.01033877581358],[0.048550400882959,0.030999209731817,0.05639486759901]],[[0.0075411489233375,-0.063236519694328,-0.078561186790466],[0.058409139513969,0.030123122036457,0.015302252024412],[0.097514368593693,0.038011081516743,-0.041334055364132]],[[-0.055199321359396,-0.058018136769533,-0.12822571396828],[-0.0094874640926719,-0.093498237431049,0.091064751148224],[-0.034927755594254,0.15329782664776,-0.039891891181469]],[[0.058509647846222,-0.023253789171576,-0.046897910535336],[0.049831323325634,0.024780463427305,0.03939576074481],[0.018947741016746,-0.039469499140978,-0.013906254433095]],[[-0.037803921848536,0.12090670317411,0.079720295965672],[-0.12115950882435,-0.12098231911659,-0.064563237130642],[-0.030459521338344,-0.046334281563759,-0.070931166410446]],[[-0.21663694083691,-0.17186535894871,0.0081493258476257],[-0.14549919962883,0.03639855235815,-0.00040275490027852],[0.098785862326622,0.011778310872614,0.069010950624943]],[[-0.054054394364357,0.092463240027428,0.037735473364592],[0.02477952837944,-0.027650633826852,0.032069411128759],[-0.018513282760978,0.046062849462032,0.051298666745424]],[[-0.011025282554328,0.10933302342892,-0.15212412178516],[0.086254388093948,-0.090073302388191,-0.13327814638615],[0.088500238955021,-0.075381703674793,-0.046930383890867]],[[0.020453456789255,0.029576232656837,0.015638638287783],[0.082263693213463,-0.051638260483742,-0.029969360679388],[0.0096456278115511,-0.015890430659056,-0.12676018476486]],[[0.069897659122944,0.010411301627755,-0.021199295297265],[-0.021798569709063,-0.047556214034557,-0.16904240846634],[-0.047827422618866,-0.1365971416235,-0.12252154946327]],[[0.016327550634742,0.064804725348949,0.036787405610085],[-0.070950448513031,-0.081303961575031,0.08231595158577],[-0.03829400241375,-0.045838043093681,0.016407623887062]],[[-0.057007860392332,-0.11457125842571,-0.11894229054451],[-0.087653018534184,0.076567053794861,-0.0082988077774644],[0.13596330583096,0.03693599998951,0.013862446881831]],[[0.19110794365406,0.1703784763813,0.056601162999868],[0.13310180604458,0.091412082314491,-0.018399145454168],[0.021615942940116,-0.21121247112751,-0.12256199866533]],[[0.17383335530758,-0.14433561265469,0.02316852658987],[-0.13577434420586,0.11755561083555,0.051003631204367],[-0.0042523206211627,0.023528261110187,0.066684521734715]],[[-0.069302409887314,-0.11700473725796,-0.06882481276989],[0.058175347745419,-0.05124543979764,-0.013211268000305],[-0.019554344937205,-0.07706992328167,-0.091063655912876]],[[-0.11478545516729,-0.013163252733648,0.033967148512602],[-0.025588804855943,0.0051719453185797,0.020537501201034],[0.06655178964138,0.047272354364395,0.011301808059216]],[[0.092454507946968,0.008535448461771,0.0026188273914158],[-0.03420839458704,0.02899013645947,-0.014154796488583],[-0.1107362061739,-0.067325733602047,-0.041519843041897]],[[-0.0036746461410075,0.024860976263881,-0.094237446784973],[0.077433504164219,-0.097583010792732,0.015502033755183],[0.084876418113708,0.059877961874008,0.16125340759754]],[[0.010340231470764,-0.014562503434718,-0.012604985386133],[0.10197878628969,0.042515784502029,-0.073925577104092],[-0.011804435402155,-0.0041705095209181,-0.00038326770300046]],[[-0.021758725866675,0.10408546775579,0.048572905361652],[-0.022430500015616,-0.066066473722458,-0.047300912439823],[-0.037767242640257,-0.045043550431728,0.00026777607854456]],[[-0.12851567566395,-0.014115542173386,-0.12099231034517],[-0.15580707788467,0.09323675185442,0.042991228401661],[0.25638249516487,-0.0098577989265323,0.12425608187914]],[[0.016303397715092,0.050785917788744,0.065591596066952],[0.054194618016481,-0.061112783849239,-0.0084368493407965],[-0.078654862940311,-0.11881832778454,-0.14302118122578]],[[0.075646564364433,-0.029551900923252,0.048315860331059],[0.067848086357117,0.077279008924961,0.015442793257535],[-0.023745464161038,0.025454100221395,-0.016246810555458]],[[0.049856569617987,-0.017590440809727,0.0032211327925324],[-0.036058992147446,0.095529891550541,-0.0053759887814522],[-0.047411870211363,-0.029424561187625,0.06070389598608]],[[0.082945547997952,0.25596576929092,-0.042832672595978],[0.0012466973857954,0.06759025156498,-0.10655328631401],[-0.0547791197896,-0.043811086565256,0.044968813657761]],[[0.038935922086239,0.023189390078187,0.019160892814398],[0.019535005092621,-0.0094079384580255,0.022431636229157],[-0.080063842236996,0.050883237272501,-0.12004652619362]],[[0.051371157169342,0.012688585557044,0.0037320950068533],[-0.032063659280539,0.012485420331359,-0.001911070663482],[-0.021104123443365,-0.05960625782609,-0.095744289457798]],[[0.16531103849411,0.0016609439626336,0.055234797298908],[-0.070256441831589,-0.026487966999412,-0.0039350907318294],[-0.13901117444038,-0.16176496446133,-0.080743692815304]],[[0.033480186015368,0.055141132324934,-0.098950110375881],[0.057479131966829,0.055839344859123,-0.069964088499546],[-0.19516180455685,0.06508544832468,-0.0047432915307581]],[[0.031439948827028,0.035552404820919,0.023357721045613],[-0.0048135793767869,-0.010822864249349,0.078253462910652],[0.016512202098966,0.023663042113185,-0.078897133469582]],[[0.2213389724493,0.067033216357231,0.088035002350807],[-0.05910524353385,-0.039247486740351,0.02384189888835],[-0.043384615331888,-0.05387307330966,-0.0038880822248757]],[[0.11254419386387,0.033856589347124,-0.015515348874032],[0.060381840914488,0.049588888883591,-0.04899887740612],[0.095515720546246,0.062694728374481,-0.051070027053356]],[[0.016051722690463,0.075718730688095,-0.0068712728098035],[0.044666774570942,-0.085216447710991,-0.057938508689404],[0.019786883145571,0.048081263899803,-0.0090252114459872]],[[0.01321117207408,-0.033911697566509,0.045213524252176],[0.0054402411915362,0.03041753359139,-0.04125539213419],[-0.18073910474777,-0.18732917308807,-0.026376215741038]],[[0.079445667564869,-0.010967168956995,-0.016099035739899],[0.017099924385548,0.016536954790354,-0.070651568472385],[0.014633386395872,-0.019429219886661,-0.078088529407978]],[[-0.079128943383694,0.043366242200136,-0.055841777473688],[-0.012550977058709,0.013896722346544,0.094945795834064],[0.11457788199186,0.13422004878521,0.085104815661907]],[[0.013807496055961,-0.035224948078394,0.023297414183617],[0.020602686330676,-0.0035254878457636,-0.054582688957453],[-0.031616497784853,0.011685989797115,-0.15827764570713]],[[0.0086083188652992,0.19210815429688,0.097225874662399],[-0.068696081638336,0.03783405572176,-0.022242605686188],[-0.052905146032572,-0.021918861195445,-0.023019764572382]],[[-0.12962144613266,-0.11139176785946,0.033379171043634],[-0.037367403507233,0.0091051133349538,-0.017662944272161],[0.033854030072689,-0.11611297726631,0.18687756359577]],[[-0.048164092004299,-0.071462988853455,-0.067016340792179],[-0.15913853049278,-0.10639937967062,-0.064872696995735],[-0.051244262605906,-0.1125660315156,-0.037486642599106]],[[-0.0053304731845856,0.011494860984385,-0.042505387216806],[0.097192175686359,0.06114574149251,-0.05566605553031],[0.063432566821575,-0.0053523569367826,0.026158545166254]],[[0.007060460280627,-0.064082033932209,-0.055276427417994],[0.043437652289867,0.021367758512497,0.11574207991362],[0.023837549611926,0.06720820069313,-0.015973791480064]],[[0.119568541646,0.074832826852798,0.063774324953556],[0.068009652197361,0.060232814401388,-0.016169542446733],[-0.011224877089262,-0.090168632566929,-0.12770117819309]],[[0.0076651582494378,-0.011608625762165,-0.12139675021172],[-0.047881916165352,-0.089150510728359,-0.055086735635996],[-0.15020105242729,-0.018643293529749,-0.070079565048218]],[[-0.0076320837251842,-0.093614861369133,-0.20703159272671],[-0.13546095788479,0.0065816314890981,0.05758661031723],[-0.056940626353025,0.042900692671537,-0.063107028603554]],[[0.11502356082201,0.1027785167098,0.22982889413834],[0.012078763917089,0.033140424638987,0.15679197013378],[-0.18049450218678,-0.021787542849779,0.036243014037609]],[[-0.09546621888876,0.0076670735143125,-0.090298816561699],[-0.056474436074495,-0.0165861453861,0.018074039369822],[0.09408300369978,0.026779098436236,0.095074705779552]]],[[[-0.012124534696341,-0.019182616844773,-0.10283422470093],[0.0087660793215036,-0.0040111429989338,0.17481926083565],[-0.049382898956537,0.036232702434063,-0.09084128588438]],[[-0.0036115639377385,0.051111828535795,-0.17184776067734],[0.04075250774622,0.036005105823278,0.15649601817131],[-0.050351265817881,-0.082457609474659,-0.14963167905807]],[[-0.047963608056307,-0.12681403756142,-0.088287465274334],[0.051808901131153,-0.0092219179496169,0.11507620662451],[0.0052310950122774,0.014417506754398,0.038560651242733]],[[-0.0042352639138699,-0.073653616011143,0.0053965412080288],[-0.0096232444047928,-0.088742904365063,0.067837350070477],[0.055743049830198,-0.038076646625996,-0.078889660537243]],[[-0.077458493411541,-0.016214672476053,-0.08149041980505],[0.15639787912369,-0.016196090728045,-0.0082612317055464],[0.052961010485888,-0.031684193760157,-0.066493183374405]],[[0.13068547844887,0.11830875277519,0.02731847204268],[-0.15838344395161,-0.061027426272631,0.11209803819656],[0.0019237935775891,0.064623393118382,0.052350010722876]],[[0.08873175829649,0.041106183081865,-0.041583444923162],[0.042457289993763,-0.088500902056694,-0.013335702009499],[-0.28141126036644,0.040884997695684,-0.067045859992504]],[[0.038868680596352,0.049390658736229,0.049621600657701],[-0.10336643457413,-0.058705564588308,0.14337919652462],[0.061140481382608,-0.019224481657147,-0.21811838448048]],[[0.076100789010525,-0.039483446627855,-0.084898017346859],[-0.013988540507853,0.081082969903946,-0.071603924036026],[-0.0068510193377733,-0.044196277856827,0.051298908889294]],[[-0.012563813477755,0.025632489472628,0.049771253019571],[-0.093543827533722,-0.0066454927437007,-0.059479452669621],[0.075501121580601,0.0081003401428461,-0.010578866116703]],[[-0.027865866199136,0.058958612382412,-0.096327975392342],[0.0050525292754173,-0.049215350300074,0.096887573599815],[0.026231331750751,0.055570773780346,-0.063398361206055]],[[-0.034883685410023,-0.022167734801769,0.021115312352777],[-0.1133364289999,-0.061404544860125,-0.16513702273369],[0.012509285472333,-0.066322982311249,0.082234382629395]],[[0.063432477414608,-0.017518322914839,-0.30884796380997],[0.032936532050371,-0.26608258485794,0.10893040895462],[0.048917546868324,0.06736945360899,-0.15893013775349]],[[-0.16483804583549,0.097355648875237,-0.15579317510128],[0.08986608684063,-0.059574659913778,0.049095842987299],[-0.1687048971653,0.032568626105785,-0.04630733653903]],[[0.033610168844461,-0.052626360207796,-0.11582382768393],[0.032919742166996,0.063161507248878,-0.14555887877941],[-0.0073381075635552,-0.079300910234451,-0.026562735438347]],[[-0.0043315915390849,0.03285375982523,-0.015623803250492],[-0.12677557766438,0.089986629784107,0.050897985696793],[0.0099054770544171,0.016191901639104,-0.098532103002071]],[[0.13716040551662,-0.16488149762154,0.03887327387929],[-0.12070660293102,-0.027696397155523,-0.12192314863205],[0.012127812951803,-0.037550035864115,0.016822133213282]],[[-0.081309802830219,-0.086017705500126,0.016194928437471],[-0.029481930658221,0.080325730144978,0.09429670125246],[-0.091590560972691,0.0036817528307438,-0.020580383017659]],[[0.084246672689915,-0.048914518207312,0.11532519757748],[0.020270895212889,0.2404337823391,-0.029514586552978],[0.001576968235895,-0.21116758882999,-0.027274927124381]],[[-0.054267384111881,-0.032868467271328,0.05527451261878],[0.032641489058733,0.161620631814,-0.089587539434433],[-0.097860120236874,0.043244950473309,-0.026866711676121]],[[0.0086601553484797,0.042046189308167,0.032862912863493],[0.072611697018147,0.0017354948213324,-0.032668005675077],[0.029439229518175,0.011506491340697,-0.096601724624634]],[[-0.057468228042126,-0.057436335831881,0.074488431215286],[-0.14743579924107,-0.051856204867363,-0.050890006124973],[0.085995756089687,-0.036618892103434,0.082780316472054]],[[-0.19911493360996,0.093228444457054,-0.12272261828184],[0.16420847177505,0.062486574053764,-0.0082421461120248],[-0.030477659776807,0.019245088100433,-0.052885513752699]],[[0.078676030039787,-0.025717560201883,-0.022097753360868],[-0.18800073862076,-0.0027058930136263,0.070813395082951],[0.071229808032513,-0.12283328920603,-0.13843224942684]],[[0.0049285585992038,-0.00087692093802616,0.1441804766655],[0.037973940372467,-0.022171104326844,-0.04412878677249],[-0.021971348673105,0.090444043278694,0.012353683821857]],[[0.061261937022209,0.070637740194798,-0.071053214371204],[-0.03021546639502,0.038866490125656,-0.078380718827248],[-0.07568035274744,-0.095289021730423,-0.020476764068007]],[[-0.064203783869743,-0.14051946997643,0.019636858254671],[0.00021161357290111,-0.24027299880981,0.012776628136635],[0.10480040311813,0.019057320430875,-0.13054536283016]],[[0.20864634215832,-0.14933641254902,0.028031699359417],[-0.15669229626656,0.048860915005207,-0.032671749591827],[0.051414266228676,-0.11106457561255,0.096676409244537]],[[0.086246959865093,-0.035395838320255,-0.052145797759295],[-0.10507613420486,0.057346992194653,0.060732837766409],[-0.025055618956685,0.066361404955387,-0.14482618868351]],[[-0.088692136108875,0.034771412611008,-0.13379693031311],[-0.039414241909981,0.019472511485219,0.022269239649177],[-0.006938686594367,-0.011721045710146,-0.015875227749348]],[[-0.11264082044363,0.0065173744224012,-0.0046850894577801],[0.051068626344204,-0.082441613078117,0.069319359958172],[-0.011054820381105,0.13223771750927,-0.026519222185016]],[[0.080104239284992,0.010451020672917,-0.15661334991455],[-0.17280688881874,0.059690549969673,0.091743797063828],[0.082017846405506,-0.01076687220484,-0.10908008366823]],[[0.010960787534714,-0.070394046604633,-0.16975231468678],[-0.071482695639133,0.031745363026857,0.17223018407822],[-0.018244329839945,-0.032303705811501,-0.12802712619305]],[[0.033950246870518,0.0078425696119666,0.0019492410356179],[0.070437036454678,-0.081913024187088,-0.089256875216961],[-0.074734650552273,-0.071816749870777,0.091200031340122]],[[-0.047105330973864,0.064488634467125,0.052356164902449],[-0.15006370842457,-0.095700807869434,-0.063975587487221],[0.018459718674421,-0.067545391619205,0.039631266146898]],[[-0.011089372448623,-0.027103323489428,-0.010428050532937],[-0.14788016676903,-0.096008807420731,-0.086761265993118],[0.19545742869377,0.031543623656034,0.11818160116673]],[[0.010879985056818,0.0018310457235202,0.032522805035114],[-0.013047466054559,-0.00062989786965773,-0.055262990295887],[0.10807174444199,-0.051119107753038,0.1775585860014]],[[-0.092494271695614,0.065530933439732,-0.17605103552341],[0.015373699367046,-0.026162959635258,0.06359077244997],[-0.00051170127699152,0.082409769296646,-0.0095758819952607]],[[-0.030185043811798,-0.080302454531193,-0.05320804938674],[-0.14242918789387,-0.11911990493536,-0.15293572843075],[-0.1559996753931,-0.093524970114231,0.053888905793428]],[[0.080677069723606,-0.15109431743622,0.070195250213146],[-0.020672358572483,0.082009986042976,-0.019485265016556],[-0.0022759013809264,-0.05877973139286,0.038487881422043]],[[-0.033749371767044,-0.021915534511209,0.067728072404861],[0.023090304806828,0.041103262454271,-0.093276388943195],[0.017414642497897,-0.17409418523312,0.15889123082161]],[[0.070952698588371,0.0096896858885884,0.13280065357685],[-0.011909312568605,-0.0079047018662095,-0.14382162690163],[0.014034558087587,-0.20558345317841,-0.075884029269218]],[[-0.057759996503592,-0.029924131929874,-0.20716616511345],[0.066774621605873,-0.031591612845659,0.06716550886631],[-0.18512099981308,-0.077064752578735,-0.036545008420944]],[[-0.041398029774427,0.019157966598868,-0.0087076397612691],[0.12642993032932,-0.076084457337856,-0.036258224397898],[0.03317016735673,0.11471953243017,-0.098676964640617]],[[-0.11962783336639,-0.11332636326551,-0.1212735325098],[-0.028319228440523,0.062958858907223,-0.085289031267166],[-0.11313980817795,-0.054820287972689,0.0028623328544199]],[[-0.0062600518576801,0.013379614800215,0.12315858900547],[0.09571872651577,0.03369127586484,-0.16020423173904],[0.045014970004559,-0.081699073314667,0.14749945700169]],[[-0.0047889640554786,-0.012049863114953,-0.036203771829605],[0.11124543100595,0.027750510722399,-0.067861802875996],[0.060619350522757,0.070784233510494,-0.039381958544254]],[[-0.12859635055065,-0.005186082329601,-0.033281892538071],[-0.1169039607048,-0.14518490433693,-0.10103439539671],[0.032646290957928,0.039088025689125,0.039119951426983]],[[-0.062388528138399,0.057029072195292,0.040846034884453],[0.072162710130215,-0.12273047864437,-0.0025507607497275],[0.072569772601128,0.082459546625614,0.11848229914904]],[[-0.11292300373316,0.040815480053425,0.047115404158831],[-0.069490455091,-0.094620510935783,-0.01785085350275],[0.093092665076256,0.022619694471359,0.0091348420828581]],[[0.00069340347545221,0.0794667750597,0.080159068107605],[0.054496496915817,-0.028082044795156,-0.050944771617651],[-0.054943051189184,-0.066153816878796,-0.078096471726894]],[[-0.12783615291119,-0.038444515317678,-0.11792089045048],[-0.040177136659622,0.0013247568858787,-0.098550297319889],[-0.021487407386303,-0.15262377262115,-0.10028383135796]],[[0.12142178416252,0.13598105311394,-0.14633183181286],[0.029881088063121,-0.034349292516708,0.041428461670876],[0.0077451132237911,-0.00050528504652902,-0.0043000360019505]],[[0.12404152005911,-0.15131413936615,0.053718157112598],[-0.10655207931995,-0.10939192771912,0.045463372021914],[-0.08283819258213,-0.044513396918774,-0.063508667051792]],[[0.086758762598038,-0.2197292894125,-0.091432400047779],[-0.095827020704746,-0.10634011775255,-0.1782048791647],[0.073546916246414,-0.050558555871248,0.11495348066092]],[[0.059442136436701,-0.092348717153072,-0.044165354222059],[-0.089462980628014,0.016959141939878,0.00094274012371898],[0.10889468342066,-0.073736272752285,-0.05329541862011]],[[-0.004321129526943,0.015807788819075,-0.086574263870716],[-0.10719835758209,-0.048331663012505,-0.044072534888983],[0.11698661744595,0.039939742535353,-0.073501795530319]],[[0.10598971694708,-0.068397358059883,0.0059995530173182],[-0.12261797487736,-0.039878878742456,0.019352836534381],[0.17085608839989,-0.27657532691956,0.12503543496132]],[[0.036035008728504,-0.11850655823946,0.16451992094517],[-0.025793535634875,-0.063986569643021,-0.052362866699696],[0.098484918475151,0.0058069806545973,0.019830606877804]],[[-0.03421538695693,-0.028551071882248,-0.15686829388142],[-0.14921589195728,0.10585806518793,0.16421994566917],[-0.11073940992355,0.083238497376442,0.050711032003164]],[[-0.0060638473369181,0.10977147519588,-0.079719245433807],[0.1024734377861,-0.10900890827179,0.0063660396263003],[-0.066903993487358,0.030398413538933,-0.13802435994148]],[[0.13550005853176,0.046717990189791,-0.33255150914192],[-0.061280101537704,-0.11780774593353,-0.14553934335709],[-0.063850097358227,0.082959398627281,-0.16497486829758]],[[0.12502737343311,-0.1779793202877,0.072527937591076],[-0.17267321050167,-0.064752072095871,-0.056774646043777],[-0.040043048560619,-0.046957608312368,0.10872537642717]],[[-0.15170587599277,0.22897426784039,-0.27577984333038],[0.18213932216167,-0.14099760353565,0.22026064991951],[-0.17463217675686,0.10211804509163,-0.22962535917759]]],[[[-0.052789855748415,0.032664965838194,-0.14304055273533],[0.039304498583078,-0.025821752846241,0.038853853940964],[0.094522342085838,-0.02081093005836,0.055975992232561]],[[0.10472439974546,-0.0066395634785295,-0.14856216311455],[0.01741206087172,-0.013411427848041,-0.10055847465992],[-0.0076289521530271,0.028141276910901,0.046979054808617]],[[-0.088008292019367,-0.10414655506611,-0.1360898911953],[-0.14774832129478,-0.021214490756392,0.060564126819372],[0.097675867378712,0.017315724864602,-0.0077155069448054]],[[0.03967709466815,0.01707106269896,-0.20902326703072],[0.0936269313097,0.028131892904639,-0.023672884330153],[-0.074676811695099,-0.024019572883844,-0.074655972421169]],[[-0.036845706403255,0.049629170447588,-0.030126709491014],[-0.0064764521084726,0.040858130902052,-0.14155526459217],[0.0011902721598744,-0.00059068278642371,0.048105724155903]],[[0.0019590985029936,0.0021868355106562,-0.025884909555316],[-0.089599542319775,0.018569635227323,-0.076403349637985],[0.034347038716078,0.088793694972992,-0.013554554432631]],[[0.083206936717033,-0.02348362095654,0.046792220324278],[-0.078113317489624,0.075374729931355,-0.022065764293075],[-0.12072350084782,-0.039892416447401,-0.077846892178059]],[[-0.015260638669133,-0.042248118668795,-0.064155012369156],[-0.086743295192719,0.0016616691136733,-0.0037450739182532],[0.0021786822471768,0.071219742298126,-0.019658025354147]],[[-0.017035225406289,0.04130707681179,-0.01424836460501],[0.028354650363326,-0.014731295406818,0.0086338119581342],[-0.038094643503428,0.063108555972576,-0.066762752830982]],[[-0.069525636732578,0.057937264442444,-0.048344124108553],[-0.064084403216839,-0.00034588831476867,0.058726415038109],[0.0077149476855993,-0.0063659050501883,0.027772529050708]],[[0.15428647398949,-0.020532907918096,-0.038325034081936],[0.065130658447742,-0.2153706997633,-0.09487859159708],[0.1115607842803,-0.039250619709492,0.016860119998455]],[[-0.037488155066967,-0.10415756702423,-0.075945399701595],[0.059627164155245,-0.063910417258739,-0.1237948089838],[-0.013510150834918,0.053023971617222,-0.086536526679993]],[[-0.14134633541107,0.053985133767128,-0.06751249730587],[0.12060724198818,-0.078844010829926,-0.082848705351353],[0.20121391117573,0.010045848786831,0.086678631603718]],[[0.041161477565765,-0.019694909453392,-0.13082663714886],[0.045459061861038,-0.03832783550024,-0.039173237979412],[0.12783826887608,0.094412513077259,-0.020321406424046]],[[0.01537177618593,-0.12592099606991,-0.019581165164709],[0.026204336434603,-0.0076622385531664,0.075042255222797],[0.0017378211487085,0.0077170794829726,-0.03776914998889]],[[0.047015607357025,-0.040266133844852,-0.06177906692028],[-0.0059146340936422,-0.012232257984579,0.094125293195248],[0.14956979453564,0.11041951924562,-0.00027863655122928]],[[0.069794707000256,0.019498353824019,-0.023859344422817],[-0.090433351695538,-0.032239444553852,-0.14893738925457],[-0.057795375585556,0.14814883470535,-0.034537192434072]],[[0.044843975454569,-0.11154559254646,-0.12745858728886],[0.087815769016743,-0.097579203546047,-0.035854365676641],[-0.078447856009007,0.068959981203079,-0.011638892814517]],[[-0.060926172882318,0.021614767611027,-0.055957268923521],[0.08548840880394,-0.085065238177776,0.050592269748449],[0.21752153337002,0.041089501231909,0.087753780186176]],[[0.00037557468749583,-0.055557243525982,-0.043138079345226],[0.016425725072622,0.027701674029231,-0.038712244480848],[0.068968757987022,0.12267735600471,0.081644035875797]],[[0.012628114782274,0.037678383290768,-0.10860370099545],[0.11868503689766,0.0013232181081548,0.045483235269785],[0.083099141716957,-0.047134198248386,0.0036068980116397]],[[0.045824203640223,-0.049351576715708,-0.044536650180817],[0.036567222326994,0.00058665795950219,-0.023041786625981],[0.10246335715055,0.038918025791645,-0.029024817049503]],[[0.12275256216526,-0.023188585415483,-0.11245798319578],[-0.028293337672949,-0.071091622114182,-0.028211463242769],[0.23210671544075,-0.0083673596382141,0.14013768732548]],[[-0.11990170925856,0.054370131343603,-0.14380952715874],[0.10376659035683,0.02768119238317,-0.0067320493981242],[0.059404376894236,0.051521584391594,0.0038314338307828]],[[0.089297465980053,-0.00024563318584114,-0.029555818066001],[-0.12323934584856,0.11363038420677,-0.0022209156304598],[-0.076704628765583,0.02550314180553,0.080924034118652]],[[-0.023912068456411,0.030076328665018,0.010703142732382],[0.13514958322048,-0.057098086923361,-0.087035194039345],[0.056955948472023,0.074209272861481,0.036979947239161]],[[0.048482298851013,0.080139607191086,-0.009989220649004],[-0.12647826969624,-0.014205715619028,0.027066523209214],[-0.10010232776403,-0.011435179039836,0.059424940496683]],[[0.054823830723763,0.018436245620251,-0.074163414537907],[0.026488553732634,0.03486842662096,0.024100298061967],[-0.038895186036825,0.02740060351789,0.038580153137445]],[[-0.061580095440149,0.08741994202137,0.026713203638792],[0.023512935265899,0.079407587647438,-0.021412845700979],[0.021500131115317,0.033433586359024,-0.017264656722546]],[[-0.082552790641785,-0.091510452330112,0.061133857816458],[0.13354901969433,-0.13431060314178,0.07458271086216],[-0.10213416814804,0.033223729580641,0.048747077584267]],[[-0.075072318315506,0.0014132421929389,0.098114527761936],[-0.053637832403183,0.078036785125732,0.09982006251812],[-0.036844860762358,0.011132349260151,0.047343179583549]],[[-0.074749030172825,-0.14085049927235,0.024092730134726],[-0.036054525524378,-0.092434927821159,-0.050765424966812],[0.084614358842373,-0.0052751055918634,0.05965019389987]],[[0.051935218274593,0.060969658195972,0.06983944028616],[0.096446871757507,-0.093233987689018,-0.049814559519291],[0.015671754255891,-0.090187959372997,0.020996985957026]],[[-0.12365325540304,-0.011203649453819,0.057174306362867],[-0.1321976929903,0.038463309407234,-0.086724415421486],[0.047983933240175,0.055612187832594,-0.019029371440411]],[[-0.15575614571571,0.027739541605115,-0.12679415941238],[-0.059522774070501,0.023448305204511,0.016571041196585],[0.15659713745117,0.020246164873242,0.063531219959259]],[[-0.015487031079829,-0.026290364563465,-0.15669789910316],[-0.073540583252907,0.071335285902023,-0.086519867181778],[0.056453347206116,-0.0084519647061825,-0.10623148828745]],[[-0.028963135555387,-0.038783732801676,0.039143159985542],[0.021736765280366,0.034821849316359,0.067059941589832],[-0.030352769419551,-0.076882787048817,-0.0038608380127698]],[[-0.056745935231447,-0.0050480323843658,-0.05867151543498],[0.12444100528955,0.039294075220823,0.028949208557606],[-0.055914454162121,-0.19598078727722,0.044636186212301]],[[-0.055096473544836,0.019461896270514,0.064817003905773],[0.020334452390671,-0.061552602797747,0.018331173807383],[0.076533861458302,0.21301068365574,-0.20802672207355]],[[-0.0078003224916756,0.040335476398468,0.047220312058926],[0.05761456862092,-0.0061642988584936,0.057501152157784],[0.094115346670151,0.10020960122347,0.12013759464025]],[[-0.0064991964027286,-0.046430867165327,0.014722197316587],[-0.092801697552204,0.014653510414064,-0.043756440281868],[-0.0054833889007568,-0.12884956598282,0.14174203574657]],[[-0.12717621028423,-0.2298948764801,-0.08731522411108],[-0.054477293044329,-0.27136215567589,0.023132283240557],[0.055489871650934,0.0035087331198156,0.041400264948606]],[[-0.05770805478096,-0.049489464610815,0.020519949495792],[0.0063572819344699,-0.001848894986324,0.00084265746409073],[-0.10549072921276,0.060602135956287,0.049949411302805]],[[-0.02249388769269,-0.042740918695927,0.024430321529508],[-0.031230272725224,0.074226915836334,0.049987148493528],[0.075755938887596,0.03580904006958,0.12489584833384]],[[0.0092048682272434,-0.028101500123739,-0.026878286153078],[-0.087485879659653,-0.063276045024395,-0.084413163363934],[-0.078362032771111,0.011256564408541,0.028778417035937]],[[0.11142859607935,0.023636687546968,0.0010894571896642],[0.02380271628499,-0.084883451461792,-0.066379621624947],[0.089170671999454,-0.13598200678825,-0.088345319032669]],[[0.12932020425797,0.040148138999939,-0.086590774357319],[0.011971019208431,-0.12674188613892,-0.089684590697289],[-0.10350531339645,-0.090893551707268,-0.070652760565281]],[[0.10877057909966,0.075612545013428,-0.1585164219141],[0.023288687691092,0.015485279262066,0.038177296519279],[-0.039705857634544,-0.00058663182426244,0.016751367598772]],[[-0.054212965071201,0.078278817236423,-0.0090708946809173],[-0.063543647527695,0.046049486845732,0.042411401867867],[0.05302869156003,0.027208304032683,0.062749840319157]],[[-0.084133312106133,-0.05992803350091,0.010254959575832],[-0.0034620969090611,-0.13984815776348,0.062259491533041],[0.03456000611186,-0.02061222307384,0.13379660248756]],[[0.071114458143711,-0.18491548299789,0.069765105843544],[0.10178565979004,-0.16788555681705,-0.026263317093253],[0.081021785736084,0.20581886172295,-0.087425410747528]],[[-0.032311055809259,-0.0066459029912949,0.14694288372993],[0.007984166033566,-0.022804256528616,0.01209800876677],[-0.25832232832909,-0.11935460567474,0.091105461120605]],[[0.011902464553714,0.010483887046576,-0.05395870283246],[0.014727614820004,-0.11725986748934,-0.0096377162262797],[0.093485683202744,-0.042176030576229,-0.0076289651915431]],[[-0.047419555485249,-0.14036633074284,-0.062964968383312],[0.016615211963654,-0.038024067878723,-0.085215389728546],[0.065053194761276,-0.057188335806131,0.12980581820011]],[[0.016477840021253,-0.015230568125844,-0.057803146541119],[0.010204830206931,-0.012692485935986,-0.049318872392178],[-0.074622586369514,-0.11683765798807,0.076861597597599]],[[-0.019922399893403,-0.19566169381142,-0.047519836574793],[0.050809301435947,0.1111886203289,0.01527205388993],[-0.025628723204136,0.22323842346668,-0.0428238324821]],[[-0.017260877415538,0.052875626832247,-0.0043666018173099],[0.14582271873951,-0.057479914277792,0.041567444801331],[0.077748738229275,-0.18825943768024,0.025069020688534]],[[-0.11918058246374,-0.055922191590071,0.045565474778414],[0.076586708426476,-0.008698508143425,-0.10200845450163],[-0.02040552161634,0.091461479663849,0.052140563726425]],[[-0.026957493275404,0.035892773419619,0.10927078872919],[-0.022856563329697,-0.09853508323431,0.085299722850323],[-0.16290113329887,0.0040440545417368,-0.044774733483791]],[[-0.007815120741725,-0.061065014451742,-0.21620227396488],[0.10026536881924,0.0028407564386725,0.087822921574116],[0.030316524207592,0.092022702097893,-0.074711464345455]],[[0.16009253263474,-0.010959501378238,-0.1020322740078],[0.011259222403169,-0.14618553221226,-0.013187388889492],[0.066526517271996,0.03638518974185,-0.14104929566383]],[[-0.068901546299458,0.10798808187246,0.12976150214672],[0.05517503619194,0.042222548276186,0.088370032608509],[0.029953869059682,-0.18522620201111,-0.028296031057835]],[[-0.14313870668411,-0.059704504907131,-0.034705094993114],[0.05798626318574,0.060566313564777,-0.027574341744184],[-0.040489256381989,-0.071306802332401,-0.027245074510574]],[[0.097730256617069,0.12324244529009,0.049953002482653],[-0.035607006400824,-0.10079251974821,0.063943214714527],[0.018713477998972,-0.15394705533981,0.020010426640511]]],[[[-0.1044320166111,-0.030915537849069,0.083364687860012],[-0.030913721770048,0.05114371702075,0.079939164221287],[-0.07033858448267,0.067139632999897,-0.048398371785879]],[[0.0034651164896786,-0.15476307272911,-0.05019124597311],[0.034261461347342,0.010674101300538,0.068014323711395],[-0.052948832511902,0.073079444468021,-0.057061195373535]],[[0.18916773796082,0.051050797104836,-0.12261366099119],[-0.0036435534711927,0.01184485014528,0.015122876502573],[0.0079733729362488,0.026769213378429,-0.033336061984301]],[[0.04134787991643,-0.033572986721992,0.053476825356483],[-0.061138872057199,-0.022646013647318,-0.081637986004353],[0.1538455337286,0.010888863354921,-0.031042905524373]],[[0.037779413163662,0.030138541013002,-0.056484844535589],[0.0055470927618444,-0.091857947409153,-0.18478789925575],[0.094746321439743,-0.12793929874897,0.028816923499107]],[[-0.022763347253203,0.071958363056183,0.16831102967262],[-0.061352703720331,-0.026630515232682,-0.11382842063904],[-0.13215680420399,-0.041689220815897,-0.010650760494173]],[[-0.068767763674259,-0.090145729482174,-0.075081706047058],[-0.032569039613008,-0.091531358659267,-0.075582802295685],[0.002347968518734,-0.079881519079208,0.027558799833059]],[[-0.039789281785488,-0.12620168924332,-0.042059790343046],[-0.086072310805321,-0.062814153730869,-0.045309726148844],[0.061087809503078,-0.0013569950824603,0.046783324331045]],[[0.041373781859875,0.028679814189672,0.0041675809770823],[0.025267709046602,-0.009755969978869,-0.049127828329802],[-0.028227431699634,-0.070711262524128,0.038351371884346]],[[-0.072672836482525,0.038612429052591,0.12165436148643],[-0.1583394408226,0.073210068047047,-0.035863470286131],[-0.029630957171321,-0.072958745062351,-0.076030343770981]],[[0.00040485564386472,-0.033884115517139,0.039421807974577],[0.087115064263344,0.055778183043003,0.22464424371719],[0.096972607076168,-0.16047248244286,-0.19405576586723]],[[-0.0024092621169984,-0.17300020158291,-0.031904604285955],[-0.0076122144237161,0.016447046771646,-0.083486087620258],[0.024221334606409,0.034858800470829,0.022157838568091]],[[0.11059398204088,-0.016067838296294,0.016848541796207],[0.034111116081476,-0.0067136408761144,0.028410585597157],[0.010822395794094,-0.064694419503212,0.068078219890594]],[[0.0074518308974802,-0.030970076099038,-0.078978046774864],[0.14819593727589,0.043671753257513,-0.0066688265651464],[-0.014263009652495,0.061808969825506,0.0032265216577798]],[[0.030986089259386,-0.15323342382908,-0.13172468543053],[0.14465865492821,0.030039953067899,0.011913296766579],[-0.038361072540283,-0.073899663984776,0.01012940518558]],[[0.11099818348885,-0.036425642669201,-0.085835166275501],[0.084000699222088,0.014325809665024,-0.18515801429749],[0.073030397295952,0.10519833862782,-0.023587444797158]],[[0.04510523378849,0.053817935287952,-0.095049656927586],[0.1403324753046,0.040077857673168,-0.02522992901504],[0.039332021027803,-0.0059498990885913,0.045582313090563]],[[-0.041001044213772,-0.045552834868431,-0.049336273223162],[-0.070447497069836,0.11262506246567,-0.0033981841988862],[0.019396044313908,-0.050843507051468,0.052822288125753]],[[-0.10950168967247,0.10062849521637,0.0042933076620102],[-0.0020354071166366,-0.039441552013159,0.14328379929066],[0.10641034692526,0.032432083040476,0.056827031075954]],[[0.0054953093640506,-0.14872050285339,0.11843237280846],[-0.041169874370098,0.016974283382297,-0.12707163393497],[-0.027632750570774,0.051557283848524,0.19765709340572]],[[-0.10450260341167,0.038534704595804,0.071868985891342],[0.13054053485394,-0.055073268711567,-0.11609480530024],[-0.058877762407064,0.049614321440458,-0.035457257181406]],[[0.081315830349922,-0.031448770314455,-0.013173324987292],[-0.031205726787448,-0.0029385704547167,-0.079514466226101],[-0.021650407463312,-0.012773023918271,-0.037753392010927]],[[0.010989580303431,-0.078009389340878,0.026083061471581],[0.077948622405529,-0.0092794680967927,-0.025656899437308],[0.051477618515491,0.00900689791888,-0.1116189956665]],[[0.12775276601315,0.061394266784191,-0.014987820759416],[0.10668091475964,0.13094748556614,0.0065356874838471],[-0.080051891505718,-0.11609169840813,-0.0244475081563]],[[-0.013010167516768,-0.027815731242299,0.016991917043924],[0.078220725059509,0.050834983587265,-0.056702811270952],[0.051040731370449,-0.030455075204372,0.08062818646431]],[[-0.022426549345255,0.021219851449132,-0.021939819678664],[-0.26884186267853,-0.0030668003018945,0.0042796530760825],[-0.074104875326157,0.060205448418856,-0.042142704129219]],[[-0.05301945656538,0.014081327244639,0.02306598983705],[0.011918493546546,-0.024266241118312,-0.057134822010994],[0.001662993687205,-0.014376066625118,-0.10777931660414]],[[0.17056402564049,-0.019829811528325,-0.012955797836185],[0.042478919029236,0.029149169102311,-0.03809080272913],[0.033880867063999,0.11145899444818,-0.16918525099754]],[[0.0024704169481993,0.083855904638767,-0.0062651899643242],[-0.010639098472893,-0.10277573764324,0.0045093460939825],[-0.050346847623587,-0.095143727958202,-0.067237503826618]],[[-0.013636874966323,-0.14105585217476,-0.13979648053646],[0.1035663485527,-0.030077243223786,0.033361751586199],[0.080651685595512,-0.010573358274996,0.08168476074934]],[[0.08950811624527,-0.027249246835709,0.019236959517002],[0.14943887293339,0.0038917325437069,-0.051662467420101],[-0.088232852518559,-0.091718621551991,0.044562458992004]],[[0.017301589250565,-0.0029694603290409,0.044238522648811],[-0.0069912620820105,0.0070361569523811,0.044325903058052],[0.094946995377541,0.082894191145897,0.065500728785992]],[[0.031135600060225,-0.092649534344673,0.09238363057375],[-0.14162933826447,-0.027923889458179,-0.079707860946655],[0.058977387845516,0.053183764219284,0.06119241937995]],[[-0.035448525100946,-0.063693486154079,-0.082319967448711],[-0.016593711450696,-0.13620735704899,-0.079595528542995],[-0.038193415850401,0.081136226654053,-0.077807977795601]],[[0.051265459507704,0.16149404644966,0.13674999773502],[-0.052055347710848,0.029590809717774,-0.074610933661461],[-0.0865842923522,-0.088878966867924,-0.0063438978977501]],[[-0.020766844972968,0.038549516350031,-0.025107813999057],[-0.031297743320465,-0.00090783007908612,0.087049819529057],[0.039062395691872,0.031178718432784,-0.070986181497574]],[[0.04962307959795,0.059204485267401,-0.081736676394939],[-0.084147624671459,-0.037972196936607,0.046452019363642],[0.076396502554417,0.0092964693903923,-0.0054034809581935]],[[0.01875289157033,0.021340103819966,0.027917882427573],[0.097946301102638,0.069078393280506,-0.04334232583642],[-0.078989319503307,-0.016903096809983,-0.1697928160429]],[[0.082477405667305,-0.10649353265762,0.11401040107012],[-0.028253775089979,0.036213576793671,0.085716731846333],[-0.0010671477066353,-0.067972026765347,0.015931908041239]],[[0.094171814620495,-0.11940395832062,-0.072529725730419],[0.074223272502422,0.0057400553487241,0.018188066780567],[0.026288030669093,0.074558615684509,-0.057272292673588]],[[-0.06695369631052,0.036400813609362,-0.10735320299864],[0.051366977393627,0.15318822860718,0.093355678021908],[-0.014278559014201,-0.066817343235016,0.031840801239014]],[[0.081088483333588,-0.02602619305253,0.088039427995682],[0.070071637630463,0.0023361146450043,0.050345875322819],[-0.11230064928532,-0.070036873221397,0.084064826369286]],[[0.069941945374012,-0.035752028226852,0.13494043052197],[-0.17250703275204,0.11169715225697,-0.039457775652409],[-0.0080902017652988,-0.060047328472137,0.017742270603776]],[[-0.0020304066129029,0.0079320957884192,-0.066464781761169],[0.082191176712513,0.064648553729057,0.051818855106831],[0.0005326239624992,0.0097715258598328,0.080772466957569]],[[0.011495965532959,0.046555861830711,0.0028601419180632],[0.026214083656669,-0.11559358239174,-0.0048511540517211],[-0.0080761732533574,0.14641973376274,-0.017194578424096]],[[-0.051433742046356,-0.083052970468998,0.0044577172957361],[-0.042842984199524,0.032421465963125,0.047527108341455],[-0.070985488593578,-0.017479028552771,-0.019461454823613]],[[0.10482161492109,0.063718974590302,-0.076255820691586],[-0.077778562903404,-0.15085719525814,0.052780669182539],[0.021836560219526,0.12060552835464,-0.17658291757107]],[[-0.057709660381079,-0.12882591784,-0.072289884090424],[0.06897559762001,-0.064689174294472,0.027534756809473],[0.10780277848244,0.008490776643157,-0.12350760400295]],[[-0.00277363602072,-0.06771245598793,-0.15080150961876],[-0.04278863966465,0.13465143740177,-0.0020642119925469],[0.13734339177608,-0.022412307560444,0.018977731466293]],[[0.020858904346824,-0.072161868214607,0.020924311131239],[-0.066472016274929,-0.062109086662531,-0.025853298604488],[0.037330500781536,0.091592617332935,-0.022712608799338]],[[-0.085204444825649,-0.0033417220693082,0.011029745452106],[-0.0045110858045518,-0.058684654533863,-0.08495669811964],[0.049217291176319,0.067793734371662,0.075544618070126]],[[0.020022949203849,-0.018668049946427,-0.022844858467579],[-0.034172166138887,-0.094930686056614,-0.11593271791935],[0.1049989759922,0.078805983066559,0.075386479496956]],[[-0.039555124938488,0.0079834377393126,-0.089509896934032],[-0.11400067806244,-4.9944850616157e-05,0.036532364785671],[-0.16159844398499,0.12449248880148,0.045303478837013]],[[-0.25153866410255,-0.014179460704327,-0.022607604041696],[-0.12440380454063,-0.093602821230888,-0.039147771894932],[-0.025793544948101,-0.001847843057476,-0.0038692045491189]],[[-0.098355405032635,0.047522909939289,-0.18527726829052],[0.016753552481532,0.004408395383507,-0.064422369003296],[-0.04201989620924,0.00011154667299706,0.0061032702215016]],[[-0.12068447470665,-0.20249550044537,-0.17644339799881],[-0.05210592597723,-0.040006890892982,0.0021658088080585],[0.088450394570827,0.0081243524327874,-0.070745527744293]],[[-0.034025061875582,0.038947060704231,-0.06647364795208],[-0.077625386416912,0.0046955072320998,-0.093601316213608],[-0.078353084623814,0.03104118257761,-0.057556193321943]],[[-0.075414709746838,-0.028216723352671,0.11898893862963],[-0.034959107637405,-0.01356001291424,0.15961764752865],[0.067319817841053,0.11131338775158,0.050012305378914]],[[-0.066354848444462,-0.13017235696316,-0.046512696892023],[-0.083415038883686,-0.09761705994606,0.0055552432313561],[0.10453353822231,-0.064844541251659,-0.063195608556271]],[[-0.12287313491106,-0.082054644823074,0.072291240096092],[-0.071326203644276,0.035110201686621,0.13707818090916],[0.0093278642743826,0.030368845909834,0.097728595137596]],[[-0.080099008977413,-0.018947903066874,-0.063869327306747],[-0.091291166841984,0.13480047881603,-0.01463941577822],[0.0089071039110422,0.086988136172295,-0.048615049570799]],[[-0.033525940030813,-0.02794748544693,-0.039045631885529],[-0.013642598874867,-0.036912392824888,0.081817120313644],[-0.23958267271519,0.062769941985607,0.0093097100034356]],[[0.06681827455759,0.00053417519666255,-0.038476329296827],[-0.10883818566799,-0.089252680540085,0.12687887251377],[0.027048310264945,0.1177963167429,0.055078431963921]],[[-0.15392203629017,-0.010160906240344,0.059564236551523],[-0.12846852838993,0.03008215688169,0.15215271711349],[0.0078062932007015,0.1300332993269,0.047667898237705]]],[[[0.044891733676195,-0.15666584670544,0.031565744429827],[-0.046274401247501,0.050802905112505,0.025805613026023],[-0.055878795683384,0.07728386670351,-0.10018020123243]],[[0.10811636596918,0.053744681179523,-0.038366440683603],[0.072429031133652,-0.10048148036003,-0.027886705473065],[-0.019456546753645,0.012779659591615,-0.13408379256725]],[[0.031821575015783,0.12190845608711,0.02871511131525],[0.093242414295673,0.0055370801128447,-0.12694355845451],[-0.030903600156307,-0.074884414672852,0.0024109077639878]],[[0.069276057183743,-0.15184351801872,-0.0037775686942041],[0.010563881136477,-0.1028380766511,-0.059606019407511],[0.10033147782087,0.0092900162562728,-0.048547007143497]],[[-0.054518427699804,-0.12469035387039,0.048041760921478],[-0.11113950610161,0.024046201258898,0.0028327289037406],[-0.12476263195276,-0.038115676492453,0.0078417360782623]],[[0.002214067382738,-0.051504269242287,0.10746811330318],[0.12905466556549,-0.11344486474991,0.040570642799139],[0.012777688913047,0.13704743981361,-0.019543141126633]],[[-0.024802727624774,-0.026784248650074,-0.010169647634029],[-0.054768215864897,-0.093919031322002,0.020591804757714],[-0.036314871162176,0.077879711985588,-0.12848018109798]],[[-0.027289045974612,0.022948725149035,0.046281728893518],[0.03600212559104,-0.077006198465824,0.010016939602792],[-0.13509705662727,0.025143736973405,0.0039483951404691]],[[-0.066979736089706,0.029515078291297,-0.0056815831921995],[0.065816462039948,-0.0017506662989035,0.011869873851538],[-0.085317686200142,-0.011428816244006,0.047496970742941]],[[-0.055719893425703,0.095842115581036,-0.050520077347755],[-0.068638697266579,-0.041789710521698,0.11300302296877],[-0.058885108679533,-0.15578684210777,-0.05430481955409]],[[-0.031284138560295,0.15945357084274,-0.0099032623693347],[0.0026194313541055,-0.062189172953367,0.061721786856651],[-0.027291191741824,0.10265494138002,-0.032351966947317]],[[0.026846788823605,0.014775746501982,-0.079847767949104],[-0.071073919534683,-0.064704291522503,-0.042992018163204],[-0.03796836361289,0.044416856020689,0.0089415619149804]],[[0.074185468256474,0.043390061706305,0.025526760146022],[0.0072663095779717,-0.13609051704407,0.0074019585736096],[0.067923165857792,0.079906761646271,-0.098314538598061]],[[0.013888340443373,-0.055326748639345,-0.025734208524227],[0.013444911688566,-0.15562629699707,0.021499933674932],[-0.078956425189972,0.10937301814556,-0.038251340389252]],[[0.073995120823383,0.0066932742483914,0.05726920068264],[-0.17802381515503,-0.15093411505222,-0.12506620585918],[0.1511000841856,-0.09789327532053,-0.050856571644545]],[[0.062915146350861,0.0021437890827656,0.07583424448967],[-0.032365720719099,0.086032882332802,0.047743126749992],[-0.015732113271952,-0.0022550718858838,-0.018907867372036]],[[-0.037198465317488,-0.10109897702932,0.011379602365196],[0.045373760163784,-0.092084839940071,-0.016805861145258],[-0.02068504691124,0.17495879530907,0.077345378696918]],[[0.014366624876857,0.027598498389125,-0.041289553046227],[-0.091048434376717,-0.11580438166857,-0.11219488829374],[-0.014281688258052,-0.11526913940907,0.010550510138273]],[[0.024169478565454,0.047996304929256,0.018570128828287],[-0.019338751211762,-0.022523805499077,-0.032450951635838],[0.00021191294945311,-0.12698331475258,0.015999043360353]],[[-0.03680632635951,0.064762659370899,0.04351732134819],[0.029752809554338,0.017429828643799,0.039109744131565],[0.12376371771097,-0.054203491657972,0.021284837275743]],[[0.019156692549586,0.044737108051777,-0.096769087016582],[-0.10045393556356,-0.060975212603807,-0.13653911650181],[-0.030654260888696,0.12295595556498,0.09291934967041]],[[-0.13727968931198,-0.0046220100484788,-0.0025384915061295],[-0.083900138735771,-0.025024972856045,-0.047947071492672],[-0.025047518312931,0.12029821425676,0.023440461605787]],[[-0.028388196602464,-0.076186634600163,-0.081823572516441],[0.11436781287193,0.070467047393322,-0.004549718927592],[-0.081290580332279,-0.066948041319847,-0.0056096375919878]],[[-0.068254798650742,-0.09711267799139,0.10782803595066],[-0.044283669441938,-0.068366207182407,-0.06431008130312],[0.076919637620449,-0.070879116654396,0.082124128937721]],[[-0.14586848020554,-0.016016278415918,0.016321325674653],[0.062783844769001,-0.16037574410439,-0.010862461291254],[0.013088637962937,0.03253959864378,0.021174669265747]],[[0.045544128865004,-0.058639746159315,0.018716230988503],[-0.038294237107038,0.038820706307888,-0.096867971122265],[0.078117519617081,0.016114454716444,-0.11721308529377]],[[-0.11155068129301,0.013734868727624,-0.040116466581821],[-0.0093840733170509,0.071571327745914,0.0706737190485],[-0.035820290446281,0.10482067614794,-0.20560191571712]],[[-0.055852808058262,-0.11033451557159,0.18605338037014],[-0.077008135616779,-0.11049918830395,-0.14281897246838],[0.076943024992943,-0.1673142015934,0.067230448126793]],[[0.040108524262905,0.048842642456293,-0.12851397693157],[-0.034368608146906,-0.03564915433526,0.073928087949753],[0.058547906577587,-0.026454722508788,-0.21392659842968]],[[-0.005747159011662,-0.075294032692909,-0.073801718652248],[0.13495314121246,0.021694473922253,-0.085542850196362],[0.090612567961216,0.040472649037838,-0.042364910244942]],[[0.078466013073921,0.15374937653542,-0.054072540253401],[-0.099920228123665,0.067014925181866,-0.073897525668144],[0.0056203589774668,0.080593824386597,-0.06162317097187]],[[0.015097105875611,0.093146085739136,0.029800243675709],[-0.09945347905159,-0.066012844443321,-0.070307746529579],[0.13420216739178,-0.18938507139683,0.040791872888803]],[[-0.062649145722389,-0.14481973648071,-0.031749293208122],[0.0031474675051868,0.042734049260616,0.076760195195675],[0.0077692284248769,-0.072475016117096,-0.13511736690998]],[[-0.061390358954668,-0.10722304135561,-0.21923470497131],[-0.041212126612663,0.066592544317245,0.09822379052639],[-0.022481115534902,0.1694940328598,0.075941801071167]],[[-0.07822322845459,-0.12105865776539,0.013510438613594],[0.076071590185165,-0.015959598124027,-0.041685815900564],[0.076449617743492,0.010158036835492,-0.032268788665533]],[[0.12829950451851,-0.097978688776493,-0.028390100225806],[-0.011889199726284,0.14860254526138,-0.043427605181932],[0.055211488157511,-0.065004862844944,-0.059406824409962]],[[-0.010510156862438,-0.043893896043301,0.02623613551259],[0.10179591178894,-0.03435255587101,0.045769676566124],[0.012186735868454,-0.013499831780791,0.042458653450012]],[[-0.054582975804806,-0.017235741019249,0.13079442083836],[0.066545478999615,-0.19850438833237,0.039519645273685],[-0.25187510251999,-0.066528096795082,0.021364565938711]],[[0.013172723352909,0.01935687661171,-0.06231502443552],[0.024025814607739,0.033656399697065,-0.004859387408942],[0.066739529371262,-0.0047164354473352,-0.058052908629179]],[[-0.024204960092902,0.032958973199129,-0.11258352547884],[-0.12426025420427,0.067886784672737,0.021162005141377],[0.092746496200562,-0.079475685954094,-0.048967365175486]],[[-0.069719739258289,-0.019862165674567,-0.24045126140118],[0.12008655071259,0.056599643081427,-0.11989011615515],[0.12963110208511,0.065429031848907,0.028368769213557]],[[-0.075097866356373,-0.062404815107584,-0.035677690058947],[-0.081146992743015,-0.017389291897416,-0.097896039485931],[0.1085242331028,-0.014758445322514,-0.030882736667991]],[[0.076026536524296,-0.059899810701609,-0.12492515146732],[-0.030088186264038,-0.075213737785816,-0.047722883522511],[0.027889870107174,-0.052897144109011,0.0075015714392066]],[[0.049073521047831,0.045437064021826,0.04121819883585],[0.044723182916641,-0.13567274808884,-0.080224901437759],[0.086318075656891,0.0073249023407698,-0.035538110882044]],[[0.043265216052532,-0.060004364699125,-0.06231813877821],[-0.14531436562538,-0.089879594743252,-0.057250291109085],[0.08719240874052,-0.038606178015471,-0.090500399470329]],[[0.05959016084671,0.031184723600745,0.026582913473248],[0.030993169173598,-0.02110493928194,-0.12244830280542],[0.067191414535046,0.024006713181734,0.12408063560724]],[[0.079993918538094,0.03629232198,-0.0075892182067037],[0.15036670863628,-0.048632837831974,0.019057488068938],[-0.12757584452629,-0.013343992643058,0.033576961606741]],[[-0.13219444453716,-0.027056090533733,0.028582714498043],[0.0570108294487,-0.00086390657816082,-0.024577341973782],[-0.14604738354683,0.10676972568035,-0.070690169930458]],[[0.080220840871334,0.0086370287463069,-0.16914780437946],[-0.05536301061511,-0.058818764984608,-0.069099240005016],[-0.061249379068613,0.009726813994348,-0.024266799911857]],[[0.027627909556031,-0.0017696656286716,0.056746378540993],[-0.029270911589265,-0.019721876829863,-0.10639991611242],[0.068339489400387,-0.13137170672417,0.1046823784709]],[[-0.11000504344702,-0.15531313419342,0.0041437572799623],[-0.055622428655624,-0.15571215748787,-0.082193747162819],[0.073661714792252,-0.02713187225163,-0.20267555117607]],[[-0.023214519023895,-0.090842008590698,0.0058959382586181],[-0.10868595540524,0.038389526307583,-0.0076669994741678],[0.060941517353058,-0.2069354057312,0.1114467009902]],[[-0.019181551411748,-0.028978653252125,0.050146237015724],[-0.033444505184889,-0.084924198687077,-0.0035007970873266],[0.037647500634193,0.076250471174717,0.025242857635021]],[[-0.050878990441561,0.041045539081097,0.063301637768745],[-0.012867569923401,-0.0038368939422071,-0.10258062183857],[0.16168719530106,-0.077092804014683,-0.1859974116087]],[[-0.067932814359665,0.026493165642023,-0.13317090272903],[0.060992483049631,-0.0051197549328208,0.12410539388657],[0.014097291976213,-0.0017991706263274,0.14886397123337]],[[0.025154914706945,-0.0990184918046,0.2464914470911],[0.010808649472892,0.044177945703268,0.095441661775112],[-0.035843320190907,-0.047758720815182,0.040473345667124]],[[0.068472564220428,-0.040918588638306,0.066759139299393],[-0.049684196710587,0.18363484740257,0.047717969864607],[-0.069802649319172,0.089113146066666,0.06234872713685]],[[-0.10809218138456,-0.073100782930851,-0.048935178667307],[-0.018431762233377,-0.034607920795679,-0.09132494777441],[-0.036163970828056,-0.1648014485836,-0.024832330644131]],[[-0.030555253848433,0.14280174672604,-0.041887499392033],[0.085066974163055,0.020152907818556,-0.11253181099892],[-0.17876625061035,-0.0816909968853,-0.048472635447979]],[[0.053014203906059,-0.13798478245735,0.0070037404075265],[0.10179327428341,0.038328628987074,-0.075455352663994],[0.05795481055975,-0.11509564518929,0.05557107180357]],[[0.001389768673107,0.010054026730359,-0.070845492184162],[0.097687467932701,0.030341411009431,0.03179382905364],[-0.073199652135372,0.049315579235554,0.018251085653901]],[[-0.10081090778112,0.016870243474841,-0.019569465890527],[-0.082269378006458,-0.061797492206097,-0.035007108002901],[-0.092466220259666,-0.21022625267506,-0.031799089163542]],[[-0.076108105480671,-0.04297261312604,-0.020137812942266],[0.013224029913545,0.15602315962315,0.19143834710121],[-0.070419527590275,0.032716769725084,-0.12921087443829]],[[0.07064825296402,-0.070169538259506,-0.13283303380013],[-0.071728132665157,0.029895002022386,0.091705553233624],[-0.014190386980772,0.026490664109588,-0.22845350205898]]],[[[0.062838606536388,-0.030430499464273,0.052153248339891],[-0.014380500651896,-0.042764823883772,-0.05080895870924],[-0.020198788493872,-0.001674105762504,0.044419519603252]],[[0.024572229012847,0.065659120678902,0.0011469891760498],[-0.1271794885397,0.013095457106829,0.0050276573747396],[-0.070121623575687,0.12974251806736,-0.058072060346603]],[[0.0084646213799715,0.044395253062248,0.045184936374426],[0.018336983397603,-0.0183050557971,-0.053641144186258],[-0.084586374461651,-0.019737688824534,0.0758406072855]],[[0.021336205303669,0.018928790464997,0.010740545578301],[0.051493708044291,-0.013291290029883,-0.050705328583717],[-0.014941615052521,0.02036858536303,-0.030854869633913]],[[-0.075928494334221,0.045555125921965,0.045790500938892],[-0.031775657087564,0.059576839208603,0.0034847492352128],[-0.045500993728638,-0.039349030703306,0.014557206071913]],[[-0.079418286681175,0.00078813900472596,-0.06843963265419],[-0.011123903095722,-0.0056460220366716,0.084211960434914],[0.015941105782986,0.014663595706224,0.030331527814269]],[[0.085378848016262,0.10909336060286,0.048877719789743],[-0.052731700241566,-0.050488412380219,-0.041937988251448],[-0.054860394448042,0.0012906859628856,-0.045896917581558]],[[-0.031270001083612,0.045400585979223,0.043005097657442],[-0.0098934108391404,0.0066305133514106,-0.043864674866199],[-0.087141051888466,0.069482952356339,-0.002308905357495]],[[-0.14429822564125,-0.16786314547062,-0.061250679194927],[-0.23068934679031,-0.18527434766293,-0.069607995450497],[-0.26298788189888,-0.10162032395601,-0.060099139809608]],[[-0.031662650406361,0.011084541678429,-0.0062711727805436],[-0.080833069980145,0.061456251889467,0.083177149295807],[-0.097091071307659,0.03381546959281,0.043918881565332]],[[0.097377441823483,0.031614292412996,-0.046828262507915],[-0.021806493401527,-0.031976021826267,0.029936868697405],[-0.020516093820333,0.002426307182759,-0.025332586839795]],[[0.081664271652699,0.079710431396961,-0.0061585777439177],[0.058209408074617,-0.008386854082346,-0.033574182540178],[0.0059511945582926,-0.09202191978693,-0.018537890166044]],[[-0.035222440958023,-0.027111062780023,-0.029389277100563],[0.075787752866745,0.0010370791424066,-0.033842083066702],[0.063847742974758,-0.034630142152309,0.0066139455884695]],[[-0.011669277213514,0.067562885582447,0.0055529549717903],[-0.046610437333584,-0.028132846578956,-0.0057761217467487],[0.073447689414024,-0.024542925879359,-0.020565008744597]],[[0.072664186358452,-0.061428338289261,-0.014885912649333],[0.010279535315931,-0.049142621457577,0.019413894042373],[0.071143642067909,-0.049648340791464,0.0016311431536451]],[[-0.050304666161537,0.015620423480868,-0.005026999861002],[0.047433286905289,-0.045695375651121,0.042213033884764],[0.031649813055992,-0.031431518495083,0.0038837739266455]],[[-0.050887178629637,0.014342521317303,0.050776079297066],[0.13604947924614,-0.029481133446097,-0.08202313631773],[-0.0035994392819703,-0.016689440235496,-0.0068796495907009]],[[0.0028498417232186,0.029827980324626,-0.020453989505768],[-0.019752023741603,0.064706221222878,-0.039805058389902],[-0.029609948396683,0.041817668825388,-0.035693436861038]],[[0.034248881042004,-0.049691580235958,0.021540120244026],[-0.084400527179241,-0.0085066007450223,-0.034176643937826],[0.08703837543726,0.034799832850695,0.0016472449060529]],[[0.01038399990648,0.020039234310389,-0.13993956148624],[-0.0058224312961102,0.074234284460545,-0.020843168720603],[0.010945462621748,0.023597372695804,0.037731841206551]],[[0.011045283637941,-0.01495340000838,-0.00054394348990172],[0.028208088129759,0.059620518237352,0.060737911611795],[-0.018779173493385,-0.028118280693889,-0.086995206773281]],[[-0.026130018755794,0.11308151483536,0.10340496897697],[-0.05478360503912,0.0024055684916675,0.098847009241581],[-0.045034192502499,-0.083849869668484,-0.069709353148937]],[[-0.002614835742861,0.030505629256368,-0.017338918522],[-0.027653047814965,0.022887723520398,0.0088045746088028],[0.049806337803602,0.033408105373383,-0.093425996601582]],[[-0.11558779329062,0.057035304605961,0.0075954995118082],[-0.041301302611828,0.046793598681688,-0.0021590928081423],[0.050906807184219,0.025489758700132,0.0029331499245018]],[[0.017392031848431,-0.073546037077904,-0.001042224932462],[-0.023446353152394,0.032730270177126,0.07367630302906],[0.028643183410168,-0.027329068630934,-0.013962109573185]],[[-0.0045392755419016,0.028075991198421,-0.010140774771571],[-0.016158865764737,0.043378826230764,0.027485013008118],[0.027005484327674,-0.017433589324355,-0.064062222838402]],[[-0.026473855599761,-0.041825026273727,0.015233216807246],[0.033974092453718,0.026164693757892,-0.010956477373838],[0.029489558190107,-0.0718804448843,-0.0044018402695656]],[[-0.031992770731449,0.06866493076086,-0.063856527209282],[-0.024521419778466,0.034840207546949,0.097614012658596],[-0.053833063691854,0.06029075011611,-0.10093680769205]],[[-0.015685193240643,0.035894531756639,0.0082334512844682],[0.046733926981688,-0.016959378495812,0.0092625245451927],[-0.019524805247784,-0.024574231356382,-0.027925416827202]],[[0.021315993741155,0.0007879373151809,-0.069241151213646],[-0.048975486308336,-0.12420194596052,0.047711342573166],[0.050539668649435,0.052056528627872,0.061104387044907]],[[-0.051428224891424,-0.009716016240418,-0.045963186770678],[0.075938440859318,-0.013256824575365,-0.042845409363508],[0.019355932250619,-0.0040574260056019,0.09362930804491]],[[0.023254103958607,-0.058613531291485,0.0088459542021155],[-0.010075471363962,0.013269920833409,-0.019048921763897],[0.039901699870825,-0.0087716151028872,0.01874496974051]],[[0.095839887857437,-0.011917844414711,-0.025623895227909],[-0.10280926525593,-0.049784734845161,0.045621909201145],[0.051820516586304,0.021135773509741,-0.019043931737542]],[[-0.060045883059502,0.039804209023714,0.00057976186508313],[-0.0071694734506309,0.018687408417463,-0.033746413886547],[0.048462260514498,0.031507708132267,-0.043622132390738]],[[-0.0027485659811646,0.061923056840897,0.047838691622019],[-0.076375313103199,-0.086318783462048,-0.040149133652449],[-0.030756570398808,0.087212279438972,0.056782532483339]],[[0.020114535465837,-0.027699103578925,-0.027358641847968],[0.053656831383705,-0.069751843810081,0.0090796379372478],[0.029222331941128,0.040221326053143,-0.024834962561727]],[[-0.018290262669325,-0.028676141053438,0.0022785193286836],[0.0088420733809471,0.039213914424181,0.055649299174547],[0.057826533913612,-0.035102467983961,-0.053916648030281]],[[-0.13341525197029,0.10685513913631,-0.075663343071938],[0.050457339733839,0.017911843955517,0.051334407180548],[-0.0068512535654008,-0.061975698918104,0.061177685856819]],[[0.10436593741179,0.082282103598118,0.072728134691715],[0.077146016061306,-0.0056008561514318,0.13833500444889],[0.12425225973129,0.065086640417576,0.090129993855953]],[[-0.0010305838659406,-0.069162175059319,0.10862869769335],[-0.053183186799288,-0.05358100309968,-0.053999256342649],[-0.040600303560495,0.068407826125622,0.043869655579329]],[[0.012635974213481,-0.069215707480907,-0.08066550642252],[-0.022622603923082,0.047831438481808,-0.029281366616488],[0.074161566793919,0.065620519220829,0.0071535771712661]],[[0.031771194189787,0.02045477181673,-0.0049484884366393],[-0.010240929201245,-0.033781412988901,0.012967529706657],[0.020043769851327,-0.0026594162918627,-0.059715140610933]],[[0.037240706384182,-0.084264121949673,-0.020460963249207],[0.010938597843051,-0.024308571591973,0.12806572020054],[-0.00088225747458637,-0.041025314480066,-0.0052619511261582]],[[0.062863364815712,-0.0041314321570098,0.030792739242315],[0.029346913099289,0.040617164224386,-0.042595203965902],[0.0085410038009286,-0.05840977653861,-0.04370228946209]],[[-0.078532874584198,-0.043869093060493,-0.032994285225868],[0.0079730255529284,0.068445093929768,0.02694595605135],[0.03680595010519,0.022165291011333,-0.0069991298951209]],[[0.030457597225904,-0.028377648442984,-0.0017521689878777],[0.026509853079915,0.0100541645661,-0.00055830017663538],[0.066002577543259,-0.019974401220679,-0.057240914553404]],[[0.0095683028921485,0.013647730462253,0.024855388328433],[-0.057575702667236,-0.043816853314638,0.0061955493874848],[0.067462161183357,-0.0027811967302114,0.0047456445172429]],[[-0.016115887090564,0.02299234084785,9.586783562554e-05],[-0.030496502295136,0.066602610051632,-0.073916770517826],[0.040021654218435,0.056423485279083,-0.07159911096096]],[[-0.011020525358617,-0.010053536854684,0.016572758555412],[0.036162346601486,0.02674831263721,-0.0038786598015577],[-0.091142363846302,0.083952717483044,-0.022882323712111]],[[0.1008652895689,0.10611956566572,0.011848887428641],[0.062756389379501,0.040256146341562,0.14870809018612],[0.10989820212126,0.070425629615784,0.052235767245293]],[[0.03110839240253,0.023000553250313,0.014408317394555],[-0.10776222497225,-0.046564560383558,0.088974110782146],[0.073757953941822,-0.032309122383595,-0.012667673639953]],[[0.025392290204763,0.057392284274101,0.0022928530815989],[-0.030715821310878,-0.036306411027908,0.014993317425251],[-0.0040123662911355,-0.042507868260145,0.01519604306668]],[[-0.041024301201105,0.043486043810844,0.082445800304413],[-0.011645271442831,0.033218372613192,-0.012914435938001],[0.035453893244267,-0.081826873123646,-0.071686416864395]],[[-0.05509752035141,0.035333428531885,0.07904876768589],[0.043171238154173,-0.03539314866066,-0.018265210092068],[0.0088186711072922,-0.0053207841701806,-0.049386501312256]],[[-0.053630445152521,0.034518834203482,-0.018784141167998],[-0.061967354267836,-0.053502902388573,-0.035458736121655],[0.080829292535782,0.086017444729805,0.02149161323905]],[[0.076971873641014,-0.0031810631044209,0.0033188762608916],[-0.020142961293459,-0.031294316053391,-0.069354444742203],[0.017002750188112,0.032695695757866,-0.040227528661489]],[[0.13999979197979,0.046633161604404,0.085998542606831],[0.0805344581604,0.085873566567898,0.086652107536793],[0.029251802712679,0.060377456247807,0.068710058927536]],[[-0.0031994073651731,-0.021626837551594,0.0067319315858185],[-0.018380178138614,0.020366884768009,-0.021406821906567],[0.023576201871037,0.047776509076357,-0.015186097472906]],[[-0.056256886571646,-0.083977572619915,0.010240068659186],[0.00027049338677898,0.098757401108742,0.0081219729036093],[-0.02595609985292,0.069895647466183,-0.053881261497736]],[[0.074970610439777,-0.11322704702616,0.0021160657051951],[-0.073858134448528,0.1453463435173,-0.027970911934972],[-0.031239280477166,-0.0089573869481683,0.025422032922506]],[[0.046518232673407,0.003986501134932,-0.017429849132895],[-0.025014298036695,0.017700532451272,0.018134186044335],[0.0020672660320997,-0.018566500395536,-0.031753171235323]],[[-0.035625666379929,0.014779918827116,0.0088068461045623],[-0.01090489141643,0.063920088112354,0.011002276092768],[-0.17067690193653,0.067864760756493,0.019656237214804]],[[-0.034660302102566,-0.029892550781369,0.0098946169018745],[-0.0010928492993116,0.066528350114822,0.0098281409591436],[0.014605254866183,-0.03085451386869,0.0056640114635229]],[[-0.036956757307053,-0.056069083511829,0.024336155503988],[0.030742142349482,0.033794306218624,-0.0242083016783],[0.072774149477482,-0.079703494906425,0.033653855323792]]],[[[-0.10481259971857,0.0036833274643868,-0.032796341925859],[-0.062901616096497,0.059360414743423,0.062312185764313],[0.041089810431004,0.035907927900553,0.041371662169695]],[[0.020547287538648,0.077521964907646,-0.024261811748147],[-0.062820270657539,-0.069409348070621,0.037277765572071],[0.071288712322712,0.079481512308121,0.0080175707116723]],[[-0.048289522528648,0.0094151943922043,-0.067696422338486],[0.028962559998035,-0.15550503134727,-0.098946876823902],[0.032614704221487,-0.069221287965775,0.075166441500187]],[[-0.099560990929604,-0.018933894112706,0.017509190365672],[-0.10455542057753,-0.088480435311794,-0.020395439118147],[0.067532114684582,-0.051104836165905,-0.015740048140287]],[[0.029654568061233,-0.0065636783838272,0.074730239808559],[0.078022383153439,-0.064761109650135,0.080294460058212],[-0.081709891557693,-0.11396937072277,-0.060664318501949]],[[0.023866700008512,0.015748852863908,0.011144812218845],[-0.029468156397343,0.051544409245253,0.041206859052181],[-0.10781449824572,0.1250067204237,-0.072720654308796]],[[-0.08405352383852,0.11698836833239,0.047015022486448],[-0.066990911960602,-0.0523128695786,-0.04408660531044],[-0.073754109442234,-0.069596841931343,0.0051367660053074]],[[-0.015215146355331,0.013051751069725,0.027858959510922],[-0.015484666451812,-0.063222706317902,0.056950781494379],[-0.038680925965309,0.022005112841725,-0.082917973399162]],[[0.064863033592701,0.0051232362166047,-0.069770134985447],[0.024371078237891,-0.014332132413983,-0.039419833570719],[0.10612580925226,0.00087139260722324,-0.10446219146252]],[[-0.051047269254923,0.094855926930904,0.0049509620293975],[-0.087597601115704,-0.074793949723244,0.10145123302937],[-0.16923469305038,0.035660199820995,-0.015413943678141]],[[-0.063207663595676,0.094968408346176,-0.024185627698898],[0.049768853932619,-0.0043375748209655,-0.034099359065294],[0.010918334126472,-0.11948832124472,0.024394351989031]],[[-0.15315853059292,0.018490977585316,-0.086307726800442],[-0.072304546833038,0.024092853069305,-0.14222300052643],[0.071461625397205,-0.019997555762529,-0.17544937133789]],[[-0.14752528071404,0.066444978117943,-0.021375238895416],[-0.007190085016191,0.0053141340613365,0.09131583571434],[-0.12189531326294,0.06361747533083,-0.048104006797075]],[[-0.0089233089238405,0.0094210365787148,0.0064188186079264],[-0.028847483918071,0.004710431676358,0.083552479743958],[0.021469444036484,0.018515445291996,-0.040844697505236]],[[-0.060560196638107,-0.023650415241718,-0.005609629675746],[-0.05440391972661,-0.039378736168146,0.017491729930043],[-0.012230638414621,0.053420010954142,0.028011992573738]],[[-0.025774760171771,0.017438501119614,-0.040340609848499],[0.041953094303608,-0.0065364637412131,0.055212642997503],[0.053195558488369,-0.044811628758907,-0.041680000722408]],[[0.073476009070873,-0.03201923891902,-0.081668391823769],[0.0070972498506308,-0.089053601026535,-0.1032545492053],[-0.028007082641125,-0.084572426974773,-0.041533898562193]],[[0.037413448095322,0.0039591826498508,-0.045147750526667],[0.0082898139953613,-0.031582444906235,-0.026649115607142],[-0.090860269963741,-0.046693935990334,-0.045944415032864]],[[0.053374141454697,0.037161342799664,0.038047276437283],[0.023533888161182,-0.0082281241193414,0.012586900964379],[-0.0012777312658727,0.080656483769417,0.018740728497505]],[[-0.042588751763105,-0.08006414026022,-0.024396056309342],[-0.044601712375879,0.011753926984966,-0.017560500651598],[0.066260300576687,-0.016656670719385,0.03720111399889]],[[0.055513419210911,0.076242998242378,-0.035203255712986],[-0.078572727739811,-0.15122589468956,-0.078451409935951],[0.13370509445667,-0.0017279995372519,0.0029083916451782]],[[-0.038837362080812,0.018421916291118,0.1609463840723],[0.096654191613197,-0.18711709976196,0.16915275156498],[0.014463534578681,-0.12350663542747,-0.012462259270251]],[[0.049904812127352,0.051129013299942,0.0018085880437866],[-0.022430850192904,-0.05855680629611,0.0085648288950324],[-0.028696557506919,-0.04769604280591,-0.062550380825996]],[[-0.026808144524693,0.043079528957605,-0.038333054631948],[-0.021481754258275,0.10188818722963,0.012432397343218],[-0.065386399626732,0.035208363085985,0.046050321310759]],[[-0.060859195888042,-0.269606590271,0.060678273439407],[0.022524151951075,-0.17706169188023,0.046982314437628],[-0.046444945037365,-0.25577017664909,0.08602274954319]],[[0.036808211356401,0.032799895852804,0.049508303403854],[-0.011975397355855,0.07423410564661,-0.0312165543437],[0.030653532594442,-0.094799622893333,-0.029749700799584]],[[-0.07129855453968,-0.079199098050594,-0.058096166700125],[-0.10297893732786,-0.043161042034626,-0.11868361383677],[-0.0039211241528392,-0.0071551478467882,-0.047011461108923]],[[0.058869566768408,-0.079458095133305,0.011816225014627],[0.19915841519833,-0.063279330730438,-0.080629400908947],[0.005582744255662,-0.093443132936954,0.082029432058334]],[[-0.050499677658081,-0.092835083603859,0.042278338223696],[0.076753936707973,-0.025872701779008,0.024470664560795],[-0.010892806574702,0.015098143368959,-0.17597252130508]],[[-0.0097189350053668,-0.10218896716833,-0.018557948991656],[0.041274804621935,-0.044750586152077,0.12387248873711],[-0.028907367959619,0.097760789096355,0.070033878087997]],[[-0.034033920615911,0.021520959213376,0.0067804018035531],[-0.054748456925154,0.035554017871618,-0.022490307688713],[-0.06555300951004,0.050054892897606,0.023153275251389]],[[0.10689705610275,0.0061608995310962,-0.049149163067341],[0.01969768665731,0.040195122361183,-0.036651395261288],[-0.11184377223253,0.11623060703278,0.058309238404036]],[[0.010924773290753,-0.06530637294054,-0.047876682132483],[-0.021894311532378,0.0097699128091335,0.0569385625422],[-0.022719437256455,0.079387858510017,-0.031610101461411]],[[-0.021152993664145,0.096345365047455,0.098847925662994],[-0.12426542490721,-0.060488604009151,-0.046232156455517],[-0.10776810348034,0.01102224830538,-0.027560075744987]],[[-0.025816211476922,-0.062173169106245,0.068481050431728],[0.03364947065711,-0.013962316326797,-0.061620838940144],[0.094611912965775,0.0048037366941571,0.11668725311756]],[[-0.0024625428486615,-0.00087945477571338,-0.073896028101444],[0.0038137771189213,-0.00056560523808002,-0.031731888651848],[-0.095988526940346,-0.022181309759617,0.0056017055176198]],[[0.027783039957285,-0.010130026377738,-0.036048997193575],[0.039701011031866,0.01419716514647,0.050541017204523],[0.045239623636007,0.023064747452736,0.034974399954081]],[[-0.062727883458138,0.079188540577888,0.014351420104504],[-0.0036143912002444,0.12710058689117,-0.02064336836338],[0.046456720679998,-0.089827485382557,-0.00061799219110981]],[[-0.022973574697971,0.0035259996075183,0.045194260776043],[0.042038142681122,0.0091055370867252,0.10049056261778],[-0.05381753668189,0.0037551107816398,0.0062257274985313]],[[0.013814535923302,0.039264351129532,-0.01626992598176],[0.048901446163654,-0.020482912659645,0.087588399648666],[-0.048324514180422,0.0080786924809217,0.0038272405508906]],[[0.089404411613941,-0.016935121268034,-0.066186338663101],[-0.062041118741035,0.0014152906369418,-0.07397423684597],[-0.12825003266335,-0.01455554459244,-0.010207640007138]],[[-0.0058976085856557,0.049906592816114,-0.022737331688404],[-0.091449789702892,-0.059356492012739,-0.062036946415901],[0.061459891498089,0.030266236513853,0.036436345428228]],[[-0.0098498566076159,-0.19572101533413,0.014203355647624],[0.028026143088937,-0.23084370791912,0.03932873904705],[0.021208189427853,-0.10021039843559,0.11452122032642]],[[-0.05720142275095,-0.027698112651706,0.056009709835052],[-0.062161363661289,0.00095257657812908,0.08021605014801],[-0.039632756263018,0.010272766463459,0.039576128125191]],[[0.1037979722023,-0.14316889643669,-0.03909882158041],[0.011192253790796,-0.1018853187561,-0.022403288632631],[-0.089919745922089,0.038088005036116,0.037186488509178]],[[0.017243580892682,0.059683836996555,-0.046740721911192],[-0.0011438633082435,0.062996745109558,-0.015909597277641],[-0.081449411809444,-0.002935808384791,-0.0064737130887806]],[[0.030485019087791,0.018963625654578,0.021314594894648],[-0.019498212262988,0.071489840745926,0.048433989286423],[-0.059893287718296,-0.0042308527044952,-0.032770190387964]],[[-0.055460382252932,-0.015431920997798,-0.063245579600334],[-0.0044673136435449,-0.06829097121954,-0.058268211781979],[-0.13095423579216,-0.066727235913277,-0.014936771243811]],[[-0.024915225803852,-0.057290595024824,0.02482801489532],[-0.031265240162611,0.010012349113822,-0.017950944602489],[0.037123885005713,0.062597386538982,-0.0070144673809409]],[[-0.14930409193039,0.065432675182819,0.046654261648655],[-0.15787827968597,0.06877363473177,0.083223395049572],[-0.13842776417732,0.026939835399389,0.12816855311394]],[[0.050027929246426,-0.25766348838806,0.093160711228848],[0.1086707264185,-0.13285458087921,0.073800347745419],[-0.056302297860384,-0.055065348744392,0.020257886499166]],[[0.015487829223275,0.056685838848352,-0.0079264268279076],[-0.040312208235264,-0.018667152151465,0.057951241731644],[-0.15003491938114,-0.028131861239672,0.025436364114285]],[[0.034518238157034,0.050656683743,0.085962787270546],[0.14834785461426,-0.028285684064031,0.09041041880846],[0.038060240447521,0.12819261848927,-0.013453891500831]],[[-0.09385746717453,-0.049524772912264,0.042265024036169],[-0.055627159774303,-0.028374282643199,-0.017175167798996],[-0.068110793828964,0.037174087017775,-0.042492337524891]],[[-0.028952309861779,-0.031348846852779,0.031332120299339],[-0.039751764386892,-0.073384568095207,-0.15463253855705],[-0.16622273623943,0.036044888198376,-0.066651657223701]],[[0.01230302080512,-0.0099066495895386,-0.025601301342249],[-0.004941314458847,-0.034456271678209,-0.071641087532043],[7.0909954956733e-06,-0.050558600574732,-0.022800141945481]],[[-0.099913090467453,-0.048940882086754,-0.035574104636908],[-0.012665458023548,-0.030387027189136,0.005865465849638],[-0.031692940741777,-0.043273918330669,-0.039966706186533]],[[-0.098899632692337,0.035991031676531,-0.023866292089224],[-0.043785680085421,-0.032564807683229,0.018465477973223],[0.025153426453471,0.04715209454298,-0.035156201571226]],[[-0.10289673507214,-0.0049490579403937,-0.053073234856129],[-0.063237234950066,0.010562458075583,0.027437269687653],[-0.13633316755295,0.084281601011753,0.051084905862808]],[[-0.10219991207123,0.063736699521542,-0.061907678842545],[0.078325003385544,0.0012596568558365,0.045961391180754],[0.019421346485615,-0.027709014713764,-0.077941998839378]],[[-0.022963937371969,-0.086843125522137,0.070930995047092],[0.0063086822628975,-0.0053546596318483,-0.020155176520348],[-0.027669271454215,0.020908150821924,-0.025067182257771]],[[-0.027307746931911,0.089852102100849,0.10074555128813],[-0.011370281688869,0.064670041203499,-0.071251936256886],[0.013516711071134,-0.059079341590405,0.10865753144026]],[[-0.043106630444527,0.045311249792576,0.061278883367777],[0.047559302300215,-0.071662865579128,0.035924714058638],[-0.012767848558724,-0.035152707248926,0.0001264378806809]],[[-0.081824578344822,-0.068077430129051,0.016793536022305],[0.0025141306687146,-0.066344603896141,0.0011962556745857],[-0.058244977146387,-0.1273221373558,0.0586365647614]]],[[[-0.03505090996623,0.13976809382439,0.085675396025181],[0.011530417017639,-0.072316095232964,0.035405810922384],[0.0087245283648372,0.027502259239554,-0.11636671423912]],[[-0.0463089607656,-0.0793412104249,0.056544035673141],[0.062161102890968,0.11726009845734,-0.011606231331825],[-0.0041477628983557,-0.070485912263393,0.048599515110254]],[[0.15112528204918,-0.066935896873474,-0.086478233337402],[0.04126813262701,0.12741768360138,-0.030436830595136],[0.017059683799744,0.038047231733799,-0.031911425292492]],[[0.038775991648436,-0.13446618616581,0.0025909503456205],[-0.031311426311731,-0.088492497801781,-0.052163127809763],[0.045339472591877,-0.07051619887352,-0.035803616046906]],[[0.064187981188297,0.1270460486412,0.052216816693544],[0.010354464873672,0.087217606604099,0.090698428452015],[-0.019605126231909,-0.068482838571072,0.082670576870441]],[[-0.025501662865281,0.073737107217312,0.14430882036686],[-0.12696871161461,0.13192644715309,-0.027527378872037],[-0.071066088974476,-0.093406580388546,0.081180423498154]],[[-0.11106138676405,0.019934639334679,-0.0016222727717832],[-0.058198470622301,0.061348494142294,0.12833788990974],[0.048864725977182,-0.034216411411762,-0.026800790801644]],[[-0.030633362010121,-0.12644520401955,0.0045776884071529],[0.018858980387449,-0.090142659842968,-0.057875916361809],[0.18449479341507,0.00087077124044299,-0.047838699072599]],[[-0.0089111104607582,-0.00097387889400125,-0.094581171870232],[-0.039476692676544,-0.0038503287360072,0.053736712783575],[0.048241280019283,-0.016084728762507,0.051350839436054]],[[-0.10128338634968,-0.077197439968586,-0.052463542670012],[0.072893656790257,-0.16946385800838,0.076200716197491],[0.06219894066453,-0.14225825667381,-0.064642690122128]],[[0.043861478567123,-0.076155416667461,-0.033411413431168],[0.044583097100258,-0.0053049912676215,0.1288620531559],[-0.13868770003319,-0.04160375893116,-0.025482017546892]],[[0.055205404758453,-0.034128855913877,-0.019266633316875],[0.061966601759195,0.016518015414476,-0.094235427677631],[-0.075673319399357,0.030549081042409,-0.06552742421627]],[[0.090111039578915,-0.041820593178272,0.0050358301959932],[-0.057752288877964,0.024299716576934,-0.029249945655465],[-0.061550237238407,-0.018064273521304,0.024984588846564]],[[0.020763963460922,-0.054532684385777,0.02609396353364],[0.10479679703712,-0.026357393711805,0.036849565804005],[-0.023855451494455,0.070458695292473,0.0078398790210485]],[[-0.082252241671085,0.040610525757074,0.010722611099482],[-0.081116631627083,-0.20082707703114,-0.11450926959515],[-0.028579147532582,-0.073507808148861,0.021145172417164]],[[0.076932892203331,0.060512594878674,-0.1271713078022],[-0.084557071328163,0.018230946734548,-0.08512157946825],[-0.093533553183079,0.067507527768612,-0.029260268434882]],[[0.12166189402342,-0.074913710355759,0.042239364236593],[0.010415220633149,0.02682444639504,-0.046651668846607],[-0.069789320230484,0.014160929247737,0.024864537641406]],[[0.052497826516628,-0.031652119010687,0.077877663075924],[0.08095733076334,-0.028027532622218,-0.045174241065979],[-0.10446015000343,-0.0062325466424227,0.069819733500481]],[[-0.015764961019158,0.043883237987757,0.17729145288467],[-0.0049286363646388,0.0058023664169014,-0.05502662062645],[0.038460202515125,-0.075191646814346,-0.009217320010066]],[[0.059438567608595,-0.097083225846291,0.16369464993477],[-0.11335572600365,-0.059456788003445,-0.14777532219887],[-0.045534696429968,-0.081677384674549,-0.015039892867208]],[[0.036965373903513,-0.11847522109747,-0.031120374798775],[0.092316478490829,-0.24456140398979,0.17262406647205],[0.032150320708752,0.041873019188643,-0.098210796713829]],[[-0.095282457768917,0.030186001211405,0.11405598372221],[-0.029724843800068,0.0092347431927919,0.12066578119993],[-0.029118616133928,-0.14410063624382,-0.024967193603516]],[[0.001394780818373,-0.00039748643757775,0.072677440941334],[-0.023067777976394,0.083722993731499,-0.061980120837688],[-0.07812474668026,-0.018124394118786,0.02525837905705]],[[-0.057707849889994,0.062532871961594,0.043637175112963],[-0.042688824236393,0.022506736218929,0.061334192752838],[0.0073872250504792,-0.086671128869057,-0.010043678805232]],[[-0.15402746200562,0.0039995363913476,0.11409893631935],[-0.016417236998677,-0.082967199385166,0.10852129012346],[0.10142137855291,0.0026761137414724,-0.03797085210681]],[[0.047893945127726,0.081019431352615,-0.077181667089462],[-0.085128739476204,-0.0027499301359057,0.011307390406728],[-0.14287787675858,0.045239623636007,0.038597136735916]],[[-0.20985890924931,0.044837810099125,0.063516817986965],[-0.011689007282257,0.024926763027906,0.010535797104239],[0.050383314490318,0.032706763595343,0.025942528620362]],[[-0.092807129025459,0.11079264432192,0.055445607751608],[0.055547881871462,-0.035021264106035,0.030884619802237],[-0.16186489164829,-0.098676010966301,0.03254259377718]],[[-0.047241128981113,-0.053661298006773,0.063985705375671],[0.039432011544704,0.025065524503589,0.031883243471384],[-0.091182738542557,0.020524894818664,0.016403367742896]],[[0.022310616448522,0.093261010944843,0.053413596004248],[0.05655899271369,0.0032138666138053,-0.0053662611171603],[0.031005015596747,-0.078289709985256,-0.22684060037136]],[[-0.013710450381041,0.014964016154408,0.025389790534973],[0.0097747286781669,-0.1820182800293,-0.10615245997906],[-0.030881352722645,-0.17288522422314,-0.010981692932546]],[[-0.095592692494392,0.011837009340525,0.11376282572746],[0.050650302320719,0.071024425327778,-0.13391135632992],[-0.04545259848237,-0.070327661931515,0.052239738404751]],[[-0.019354101270437,-0.084725022315979,0.17805062234402],[-0.10051181167364,0.03233477473259,-0.081977598369122],[-0.03033989854157,0.042839728295803,-0.027489762753248]],[[0.079592630267143,0.12644146382809,0.011253201402724],[-0.010807668790221,-0.10804527997971,-0.039344791322947],[-0.22118976712227,-0.027659729123116,-0.11924540996552]],[[-0.023861834779382,-0.0056005590595305,-0.0031368639320135],[0.047488860785961,-0.028954902663827,-0.011032526381314],[0.091640375554562,0.018010854721069,0.038023576140404]],[[0.064203716814518,0.11664513498545,0.13253797590733],[0.0047737741842866,-0.023365946486592,-0.041312448680401],[-0.13147497177124,-0.084886193275452,-0.027391070500016]],[[0.10676997154951,0.038254924118519,0.091721057891846],[-0.048010412603617,0.038915753364563,0.035875327885151],[0.014962267130613,-0.21087723970413,0.014749132096767]],[[-0.10164516419172,0.013962158933282,-0.015852207317948],[-0.068316102027893,-0.0015147182857618,0.022224465385079],[0.11668657511473,-0.052453711628914,-0.01523988135159]],[[0.016169147565961,0.043834641575813,0.055752616375685],[0.016517214477062,0.068244583904743,0.065522521734238],[-0.084065802395344,0.048655427992344,0.15506534278393]],[[0.12818579375744,0.026992311701179,0.024982690811157],[0.033891662955284,-0.046693116426468,0.0096644014120102],[-0.064443588256836,0.036733247339725,0.00068098137853667]],[[-0.038893397897482,-0.021729476749897,-0.042380772531033],[-0.021280443295836,-0.077255509793758,-0.012725205160677],[-0.038707889616489,-0.10070836544037,-0.026910537853837]],[[0.062560670077801,0.017056591808796,-0.062550269067287],[-0.0039300974458456,0.035326071083546,-0.0969183370471],[0.025170728564262,-0.070343911647797,0.057372100651264]],[[-0.1832023113966,-0.018672231584787,0.0035969333257526],[0.039388556033373,0.012326831929386,0.046590849757195],[0.088319413363934,-0.12743780016899,0.00080982450162992]],[[0.073722720146179,0.15084218978882,0.016623813658953],[-0.10837154835463,0.066484190523624,-0.015531175769866],[-0.038174334913492,-0.12327989190817,-0.077262714505196]],[[-0.11405467987061,-0.027930114418268,0.055535897612572],[0.069752395153046,-0.0072854170575738,-0.089974246919155],[-0.0022800979204476,0.0030759128276259,-0.0088947992771864]],[[-0.011154644191265,0.14533150196075,-0.082325026392937],[0.012615641579032,-0.087475419044495,0.0042892824858427],[0.040166597813368,-0.043217211961746,-0.13263143599033]],[[0.049106240272522,0.079620599746704,-0.0052523128688335],[0.04598144441843,-0.0074925543740392,-0.091495133936405],[-0.02304121106863,-0.053961127996445,-0.039774667471647]],[[-0.12682531774044,-0.060455821454525,-0.11048813909292],[0.032396405935287,0.03264357149601,-0.019835954532027],[-0.05762716755271,-0.036847341805696,-0.063195496797562]],[[-0.081521451473236,-0.1024679467082,0.059597250074148],[-0.065444029867649,0.047022461891174,-0.041143279522657],[0.16978779435158,-0.06698090583086,-0.0089674154296517]],[[0.060505911707878,-0.028307821601629,0.034534927457571],[0.025782888755202,0.062165319919586,0.0039112525992095],[-0.030462453141809,-0.086447007954121,-0.030715754255652]],[[-0.025153152644634,0.097949221730232,-0.083332374691963],[-0.031719129532576,0.15374939143658,-0.11573389917612],[-0.016428230330348,-0.23933583498001,0.062353849411011]],[[0.12183733284473,-0.026854712516069,-0.059190910309553],[-0.0041199028491974,0.0070825638249516,-0.057629961520433],[-0.024174962192774,-0.07813549041748,-0.098687283694744]],[[-0.040965151041746,0.092375606298447,-0.032734803855419],[0.076143704354763,0.0779989361763,0.13679091632366],[-0.13069689273834,-0.01840965077281,-0.024265820160508]],[[-0.027219971641898,-0.010067679919302,0.0015768996672705],[0.081300042569637,-0.050077825784683,-0.014554182998836],[0.0035384541843086,-0.017700994387269,0.14675924181938]],[[-0.099532470107079,0.0054616797715425,-0.19813792407513],[0.005353809799999,-0.13383480906487,-0.074176110327244],[-0.021305859088898,0.0056529617868364,0.16063347458839]],[[-0.0054837120696902,0.0069387038238347,-0.051830925047398],[-0.035636134445667,0.018943479284644,0.17544400691986],[0.074685297906399,0.1226674169302,0.10268799215555]],[[0.029568640515208,0.0084917293861508,0.0019731207285076],[-0.091084033250809,0.018707163631916,0.012770581059158],[-0.092975527048111,-0.13438099622726,-0.052230142056942]],[[-0.0050229970365763,0.028723066672683,0.078946568071842],[0.0027534374967217,0.028386384248734,0.013263203203678],[-0.00028713388019241,-0.073324918746948,-0.10707198828459]],[[0.0028574140742421,-0.099683992564678,-0.015303938649595],[0.073639132082462,0.044607847929001,-0.036546178162098],[0.00010560356167844,0.0012038463028148,-0.082441918551922]],[[0.054441012442112,-0.008831269107759,0.044728621840477],[0.0096749207004905,-0.01997864805162,0.17647160589695],[-0.02476037107408,0.010177907533944,-0.052794631570578]],[[0.044431313872337,0.046533815562725,0.0050766128115356],[0.069837689399719,0.0045292703434825,-0.013838101178408],[-0.011479082517326,0.059354312717915,-0.056813850998878]],[[0.041646625846624,0.1029679775238,0.027412671595812],[0.0012809741310775,-0.067351840436459,0.14225839078426],[-0.094930537045002,-0.065541923046112,0.028696088120341]],[[0.034947514533997,0.032660275697708,-0.045217771083117],[-0.017936982214451,0.044252596795559,1.2977845472051e-05],[-0.07610034942627,0.010677800513804,-0.037506405264139]],[[-0.016886198893189,-0.01368900667876,-0.016588490456343],[0.071613967418671,0.034709129482508,-0.059703897684813],[0.11763551831245,0.091212078928947,-0.0075733289122581]]],[[[-0.045773554593325,0.065447710454464,0.10907366871834],[-0.028569526970387,-0.010057562962174,0.03731881082058],[-0.015135129913688,0.0052392836660147,-0.086333364248276]],[[-0.018662802875042,0.070701360702515,0.038302894681692],[-0.0084606604650617,0.001368734636344,-0.051334604620934],[-0.01288088876754,0.078244663774967,-0.014484884217381]],[[-0.023146823048592,0.020254975184798,0.13650323450565],[-0.063638746738434,-0.1700282394886,0.053191151469946],[-0.024138875305653,-0.099062666296959,-0.022238148376346]],[[0.091227285563946,-0.002208303892985,0.057860791683197],[0.022634396329522,-0.16297899186611,0.055867079645395],[-0.077909506857395,0.071158096194267,0.041805982589722]],[[0.030939051881433,0.21085041761398,0.10295779258013],[0.046121295541525,-0.020627127960324,0.0655817091465],[-0.02411924302578,0.14954510331154,-7.1621732786298e-05]],[[0.061037003993988,0.020834421738982,-0.0027576647698879],[0.0046602035872638,-0.02313164062798,-0.029836963862181],[-0.014861228875816,-0.055338688194752,-0.16028451919556]],[[-0.021743509918451,6.1665850807913e-06,-0.0063943420536816],[0.014043103903532,0.030224537476897,0.094505861401558],[-0.1835056245327,0.0096772694960237,0.083788849413395]],[[0.011198934167624,0.0099512906745076,0.042628318071365],[-0.077571533620358,-0.10373289138079,-0.060378797352314],[0.057608522474766,0.12952518463135,0.090092532336712]],[[0.02025930210948,-0.037551444023848,0.017585581168532],[0.04070933163166,-0.030167941004038,-0.036960985511541],[0.024318370968103,-0.095361568033695,0.05796217918396]],[[-0.031747486442327,0.05961524322629,0.072186417877674],[0.0058922516182065,-0.011980839073658,-0.067805446684361],[-0.013857227750123,0.0094562461599708,0.067959368228912]],[[0.10088914632797,-0.038758356124163,-0.070871375501156],[0.10167089104652,0.015664527192712,0.014465386047959],[0.0031139338389039,-0.088587142527103,-0.035827051848173]],[[-0.055820003151894,0.043743252754211,0.041064407676458],[-0.15002788603306,0.013893738389015,0.1402160525322],[0.027828775346279,-0.052081651985645,0.074568666517735]],[[-0.031416121870279,-0.011778350919485,0.047815542668104],[-0.042784638702869,-0.0363361351192,-0.096407391130924],[-0.044465035200119,0.0075316969305277,-0.014991569332778]],[[0.024708295240998,-0.0016508774133399,-0.040688183158636],[-0.09164909273386,0.069258093833923,-0.16145385801792],[0.057518720626831,0.024269316345453,-0.045464459806681]],[[0.033297598361969,0.063319638371468,0.072936847805977],[0.052726577967405,0.013225832954049,-0.019948361441493],[0.079713724553585,0.027171798050404,0.099407367408276]],[[0.060324087738991,-0.088192827999592,0.027004851028323],[0.13750064373016,-0.061832670122385,-0.011313960887492],[0.1043543741107,-0.072588376700878,-0.090453460812569]],[[-0.011423287913203,0.058784414082766,0.087427549064159],[-0.035523500293493,0.12593096494675,-0.081861831247807],[-0.035398039966822,0.049074202775955,-0.14702267944813]],[[-0.06097548827529,0.12471932172775,0.00062623771373183],[-0.022737931460142,-0.056852538138628,0.013319964520633],[0.059474341571331,0.023904563859105,0.0026286067441106]],[[0.027738442644477,0.0028339806012809,0.098357275128365],[-0.010566726326942,0.087619997560978,0.0045335609465837],[-0.012953662313521,-0.11143320053816,0.060554873198271]],[[-0.045141097158194,-0.013118310831487,-0.014843991026282],[-0.0011339359916747,0.26462852954865,0.12238673120737],[-0.051221951842308,0.066820375621319,-0.14742548763752]],[[0.03739332780242,0.083414323627949,-0.058768261224031],[-0.10508207976818,0.041956480592489,0.11535977572203],[0.1897728741169,-0.1801723241806,-0.050718426704407]],[[-0.042087130248547,0.067655794322491,-0.00013676079106517],[0.16417871415615,0.087621711194515,-0.17871876060963],[-0.023055218160152,-0.055594563484192,-0.040695987641811]],[[0.081263430416584,-0.1052412763238,0.010945480316877],[0.059547506272793,0.015454703941941,0.019193122163415],[-0.086159452795982,-0.040808543562889,0.020951326936483]],[[0.056636553257704,-0.0016277984250337,0.0082253199070692],[0.028835011646152,0.039736732840538,-0.031839862465858],[-0.068253189325333,0.0042508807964623,-0.0064820223487914]],[[0.011494102887809,-0.026282811537385,-0.022527942433953],[-0.035465706139803,-0.040443152189255,0.093245446681976],[0.066225059330463,-0.035122580826283,-0.065321631729603]],[[-0.072917766869068,-0.051940262317657,0.12838524580002],[-0.055143646895885,0.074112296104431,0.099884957075119],[0.080292046070099,-0.1237617880106,0.12297591567039]],[[0.005441633053124,-0.020067958161235,0.018084043636918],[0.024004383012652,-0.0067486600019038,-0.20212318003178],[-0.004967883694917,0.052874512970448,-0.11439349502325]],[[0.038566637784243,0.096124894917011,-0.071596063673496],[0.011331463232636,0.10284746438265,-0.038735095411539],[-0.13073542714119,0.062790222465992,-0.134411200881]],[[0.066713474690914,-0.066535584628582,-0.018362274393439],[-0.041945159435272,-0.13627032935619,0.12245765328407],[0.024324422702193,-0.051939271390438,0.039868555963039]],[[-0.11853419244289,-0.11717703938484,-0.062258303165436],[0.001621688134037,-0.043293405324221,-0.0089463498443365],[0.11711043864489,0.049999881535769,0.01138866879046]],[[0.021699635311961,-0.053107101470232,-0.085156761109829],[0.08889839053154,0.0008223801269196,0.11088583618402],[0.025210021063685,0.045762270689011,-0.029679058119655]],[[0.0036634285934269,0.12842024862766,0.039721019566059],[0.025888696312904,-0.23321455717087,-0.15932920575142],[0.11044229567051,0.19442874193192,0.10388421267271]],[[0.10487402975559,-0.022503949701786,-0.015485068783164],[-0.091293834149837,0.016038710251451,-0.014797512441874],[-0.054539281874895,0.041423726826906,-0.052447158843279]],[[-0.016226446256042,0.029528666287661,-0.039807617664337],[-0.048185098916292,0.029417064040899,-0.0036114614922553],[-0.044893335551023,0.017070569097996,0.04650304466486]],[[-0.13005411624908,-0.025372460484505,0.15440732240677],[-0.15363804996014,-0.053341753780842,-0.13955083489418],[0.15610414743423,0.090200759470463,-0.002298760227859]],[[0.036563910543919,0.060510203242302,0.062459003180265],[0.0022095202002674,-0.04106181114912,0.034741785377264],[-0.051999643445015,0.0079234624281526,-0.10045962780714]],[[0.045374557375908,0.032646756619215,-0.055937372148037],[-0.02617372572422,0.1351298391819,-0.0069945175200701],[-0.027193384245038,0.068125627934933,-0.043346263468266]],[[-0.031555261462927,-0.071495831012726,0.01626225374639],[-0.01557144895196,0.13468982279301,-0.027904311195016],[0.012401037849486,-0.07708316296339,-0.067104309797287]],[[-0.06027726829052,0.0088713420554996,-0.0069319405592978],[0.1114647090435,-0.064226634800434,0.020041286945343],[0.071882851421833,-0.053388871252537,-0.069053694605827]],[[-0.054576393216848,-0.062267262488604,0.04597469419241],[0.073472321033478,-0.1001575216651,0.1526091247797],[-0.003742930945009,-0.083750106394291,0.14545114338398]],[[0.11967766284943,-0.065359555184841,0.04172258079052],[-0.057300098240376,-0.0032318853773177,0.018132157623768],[-0.078673876821995,0.07053168118,0.10482056438923]],[[0.044037371873856,-0.059502307325602,0.017916640266776],[-0.12562367320061,-0.03158650547266,0.10097566992044],[0.048047006130219,-0.025054039433599,0.040982484817505]],[[-0.024845160543919,0.042306751012802,0.011824863962829],[0.03656267374754,-0.04731448367238,-0.15677389502525],[0.026987059041858,-0.063261643052101,-0.10797997564077]],[[0.0031632492318749,-0.025572581216693,0.01606285572052],[0.1199137493968,-0.037952657788992,0.046248182654381],[-0.016680737957358,0.066332541406155,-0.037138998508453]],[[-0.11207058280706,0.095665089786053,-0.018763527274132],[-0.11461612582207,-0.065322935581207,-0.056823674589396],[-0.025363313034177,0.042657133191824,0.032241690903902]],[[-0.023488130420446,0.043809361755848,-0.034009616822004],[-0.03502631559968,0.0092789186164737,0.15239785611629],[0.060655791312456,-0.018307268619537,-0.034958679229021]],[[-0.071158930659294,0.07213893532753,-0.0062239468097687],[0.033096712082624,0.19648680090904,0.074565410614014],[0.018427947536111,0.026406461372972,-0.066073775291443]],[[0.037735272198915,0.048289984464645,-0.02993780747056],[-0.11032548546791,0.12408650666475,0.0056251059286296],[0.089983426034451,0.084027171134949,0.0075599425472319]],[[-0.00039472771459259,-0.17472817003727,0.21999357640743],[-0.14726129174232,-0.13246585428715,0.046724230051041],[0.25259056687355,-0.19420279562473,0.086223639547825]],[[0.037075310945511,0.03355647623539,-0.003074579872191],[-0.0086300689727068,-0.0064146583899856,-0.023818802088499],[-0.027069479227066,0.01337653119117,-0.051498848944902]],[[-0.09147822111845,-0.046854373067617,-0.052113328129053],[-0.017677050083876,0.03135060146451,-0.11194276809692],[0.011805349029601,-0.093528680503368,0.06377387046814]],[[-0.069422088563442,0.01454200502485,-0.039870839565992],[-0.15964502096176,0.016829581931233,0.16947361826897],[-0.081692658364773,0.037282325327396,-0.10174966603518]],[[-0.10347775369883,0.0053894375450909,-0.075112462043762],[-0.060245674103498,-0.014460891485214,0.060547955334187],[0.030667349696159,-0.10827240347862,0.060387138277292]],[[0.028947047889233,-0.0028828799258918,-0.10758972913027],[-0.033026859164238,0.050055913627148,-0.066155403852463],[0.054784208536148,0.039551828056574,0.082091510295868]],[[0.00021041060972493,-0.016272636130452,0.081312268972397],[-0.061951879411936,0.053244039416313,-0.052842158824205],[0.034173652529716,-0.016262060031295,-0.0017727389931679]],[[0.13406230509281,0.12399165332317,-0.175890147686],[-0.12424063682556,-0.062580958008766,-0.1132342889905],[-0.028784573078156,-0.021937750279903,-0.022602282464504]],[[0.12209957838058,-0.043825343251228,0.0023969754111022],[0.0056801796890795,0.050254452973604,-0.1006545573473],[0.04168027639389,0.078103393316269,-0.059538125991821]],[[-0.036625988781452,0.035779133439064,-0.037545271217823],[-0.12076983600855,0.0084962081164122,-0.019384618848562],[-0.048519413918257,-0.019884178414941,0.040788635611534]],[[-0.0062861209735274,-0.054940614849329,0.079076625406742],[0.11890339106321,-0.003193479264155,-0.041917946189642],[-0.0044348258525133,-0.15593431890011,0.034988515079021]],[[-0.056060068309307,0.085922427475452,0.077577769756317],[0.11631526052952,0.053801067173481,-0.19983658194542],[-0.020129779353738,-0.0021047899499536,0.027159620076418]],[[-0.070358209311962,-0.015131696127355,-0.12655130028725],[-0.011862760409713,0.11429894715548,-0.096609704196453],[0.024957800284028,0.017005482688546,0.052170667797327]],[[0.084013856947422,0.036835841834545,-0.12763027846813],[0.038627076894045,-0.010267712175846,-0.026216927915812],[0.066599503159523,-0.13675168156624,0.069672361016273]],[[0.15207876265049,-0.051743570715189,0.083013609051704],[0.05111325532198,-0.014730538241565,0.025872966274619],[0.063246376812458,-0.11738873273134,-0.04016001150012]],[[0.10371281951666,0.009341855533421,0.10876328498125],[0.038399051874876,-0.024436498060822,0.011859139427543],[-0.0069105299189687,0.086146153509617,-0.057249993085861]]],[[[-0.079927392303944,-0.032282080501318,0.054854407906532],[0.03959146514535,-0.078310653567314,-0.025665966793895],[0.095202997326851,0.04375046864152,-0.00013151661551092]],[[-0.067315466701984,0.054429668933153,-0.004982088226825],[0.03654894605279,-0.10791353136301,-0.074318677186966],[-0.060028977692127,0.0059180054813623,0.033123109489679]],[[0.057816866785288,0.10931035131216,-0.012813820503652],[0.059847794473171,-0.0036513877566904,0.11737221479416],[0.023851616308093,-0.056307293474674,0.068019017577171]],[[0.039188474416733,-0.008846826851368,-0.16320510208607],[-0.094247415661812,-0.14653991162777,-0.042110826820135],[-0.18138760328293,-0.061681751161814,0.022623017430305]],[[0.053162317723036,-0.089798420667648,0.016160974279046],[0.059590075165033,-0.05983455106616,0.03241179510951],[-0.091126620769501,-0.027251398190856,-0.013045994564891]],[[0.050813678652048,0.15948602557182,-0.046557262539864],[0.013868987560272,0.15999832749367,-0.00061866664327681],[-0.0001552861649543,0.058708533644676,0.027849124744534]],[[-0.058383673429489,-0.013641243800521,0.12476924061775],[0.054731447249651,-0.049107640981674,-0.16461455821991],[-0.11318966001272,-0.051720425486565,-0.066272996366024]],[[0.010484776459634,-0.020589867606759,-0.0042906845919788],[-0.10588698834181,-0.018808206543326,-0.036787930876017],[-0.073798693716526,-0.021151274442673,-0.19338417053223]],[[0.070516459643841,-0.12882024049759,-0.034137357026339],[-0.008864319883287,-0.056914299726486,0.13297332823277],[0.0084370467811823,-0.066689871251583,-0.093634508550167]],[[-0.23486050963402,-0.12622828781605,-0.067991726100445],[-0.15648663043976,-0.10285856574774,0.017929458990693],[-0.072101384401321,-0.248056396842,0.038069635629654]],[[0.037693522870541,0.097599983215332,0.052026525139809],[-0.060555908828974,-0.024811185896397,-0.095950365066528],[-0.10308738797903,-0.083704717457294,-0.055181957781315]],[[-0.063987284898758,-0.16484898328781,-0.0564886033535],[-0.16719709336758,-0.057667452841997,-0.027429334819317],[-0.044811680912971,-0.096215285360813,-0.13524323701859]],[[0.068025171756744,-0.067398048937321,0.033797800540924],[-0.030038939788938,0.045964382588863,-0.1436627805233],[0.053171567618847,-0.16475161910057,0.0043316278606653]],[[-0.013185209594667,-0.091777570545673,-0.011436474509537],[-0.0089613059535623,-0.15395568311214,-0.0136883193627],[0.037066172808409,-0.15623073279858,-0.001083318493329]],[[-0.3275018632412,-0.065801009535789,0.034769471734762],[-0.076711975038052,0.0061790519393981,-0.13981033861637],[-0.19196763634682,-0.011171066202223,-0.092089101672173]],[[0.025169489905238,-0.065948374569416,0.023695476353168],[-0.085915103554726,-0.13863545656204,-0.047965224832296],[-0.21917276084423,0.059645622968674,0.15260019898415]],[[0.10426666587591,-0.16102588176727,0.044147405773401],[-0.062919929623604,-0.05754492431879,0.025286512449384],[0.068928070366383,-0.11006547510624,0.0018629449186847]],[[-0.099610462784767,0.023674882948399,-0.075468719005585],[-0.10086278617382,-0.26987609267235,0.020715493708849],[-0.12659387290478,-0.059976268559694,-0.098104059696198]],[[0.085966117680073,-0.092423215508461,0.097033567726612],[0.027118824422359,-0.060065947473049,0.12717407941818],[0.1506172567606,-0.076964154839516,0.21142630279064]],[[0.076749995350838,0.059124320745468,-0.20336942374706],[0.043688703328371,0.013456246815622,-0.067597001791],[0.014384501613677,0.0001440042979084,-0.017989424988627]],[[0.13966892659664,-0.10004016011953,0.085442237555981],[-0.051721151918173,-0.039817444980145,-0.057237401604652],[0.10532762110233,-0.09323938190937,-0.11315300315619]],[[0.030253026634455,-0.19979459047318,-0.12704040110111],[-0.16668152809143,-0.14298278093338,-0.069452114403248],[-0.13344423472881,-0.2614238858223,-0.063539028167725]],[[-0.094853773713112,0.0069978507235646,-0.16986253857613],[-0.094030909240246,0.15221689641476,-0.041411656886339],[-0.065758153796196,0.043742619454861,-0.094793550670147]],[[-0.044018901884556,-0.088456973433495,-0.17340742051601],[0.038466144353151,-0.11370825767517,-0.067504093050957],[-0.10282605886459,-0.037018075585365,-0.011080802418292]],[[0.061891097575426,-0.14090059697628,0.018762165680528],[0.088005796074867,-0.056868825107813,0.057125840336084],[-0.062216155230999,-0.21566653251648,0.14645197987556]],[[4.4438056647778e-05,-0.052501328289509,0.14020849764347],[-0.052239459007978,-0.13865722715855,0.055407714098692],[-0.16937634348869,-0.28449162840843,-0.12634646892548]],[[-0.1085612103343,-0.14946906268597,-0.089592710137367],[-0.11128644645214,-0.034060902893543,-0.055203225463629],[-0.045079469680786,-0.023983644321561,-0.057979047298431]],[[-0.064881853759289,-0.074506320059299,0.080911703407764],[-0.12230511009693,-0.083053521811962,-0.0052914088591933],[0.0066548590548337,0.021843263879418,-0.086095251142979]],[[-0.039654329419136,-0.011194505728781,-0.025269774720073],[-0.0030878051184118,-0.025546502321959,-0.030224580317736],[0.0046150828711689,-0.10958725959063,-0.011370958760381]],[[-0.021679604426026,-0.027231339365244,-0.1558799892664],[-0.062074307352304,-0.25134950876236,0.015816975384951],[0.11204268038273,0.093146942555904,-0.033795155584812]],[[-0.15003089606762,0.017733005806804,-0.12077096104622],[0.0323869548738,-0.033887591212988,-0.13863250613213],[-0.16362708806992,0.18575727939606,0.071129664778709]],[[0.08403804153204,-0.045812211930752,0.0068764365278184],[-0.24678003787994,-0.19981618225574,-0.079868368804455],[0.044154241681099,0.0031396611593664,0.06862810999155]],[[0.049381423741579,-0.16430309414864,0.070060424506664],[-0.032590020447969,-0.0066865468397737,0.090706460177898],[-0.082754664123058,-0.047964837402105,0.0219995547086]],[[0.059389263391495,0.027307087555528,-0.036835666745901],[-0.073372952640057,-0.059403095394373,-0.05641021206975],[-0.15215522050858,-0.18140859901905,-0.10686976462603]],[[-0.049833491444588,0.020063854753971,-0.018902299925685],[-0.12290206551552,-0.0098971119150519,-0.095726139843464],[-0.017567729577422,0.024382712319493,0.029159286990762]],[[0.017595997080207,0.097456283867359,-0.022452747449279],[-0.002265909453854,0.011389676481485,0.089643210172653],[0.012959850952029,-0.10731565952301,0.012382756918669]],[[-0.083826467394829,-0.23418305814266,-0.026100762188435],[-0.0075044254772365,-0.05523619800806,0.033890545368195],[0.045192204415798,-0.004528331104666,-0.0080904858186841]],[[0.014280105009675,0.031575690954924,-0.076448120176792],[0.062924951314926,-0.013679232448339,0.1645445227623],[-0.16533537209034,0.015241860412061,0.0047375652939081]],[[-0.03815271705389,0.011007546447217,0.0050684832967818],[0.021411068737507,-0.096123516559601,0.026128837838769],[0.059531334787607,0.019259812310338,-0.043633695691824]],[[0.12108033895493,-0.092508144676685,-0.054120663553476],[-0.015095993876457,-0.023298274725676,-0.081168405711651],[-0.010077465325594,-0.071643017232418,0.18306884169579]],[[-0.055998906493187,-0.11625386029482,-0.011933548375964],[-0.16494271159172,0.0025658893864602,-0.12905453145504],[-0.062008123844862,0.013335862196982,-0.017710508778691]],[[0.018367234617472,-0.05931768938899,-0.028146415948868],[-0.14631222188473,0.058778304606676,-0.01670628413558],[-0.020573580637574,-0.067811965942383,-0.020756976678967]],[[0.012803097255528,-0.16259671747684,-0.057642493396997],[-0.11710401624441,-0.19931024312973,0.070808976888657],[-0.1006728336215,-0.099293373525143,-0.089320540428162]],[[0.034058470278978,0.036155469715595,0.10591626912355],[-0.035357695072889,-0.023829896003008,0.0041544162668288],[0.042586226016283,-0.12526868283749,0.052057024091482]],[[-0.14986424148083,-0.052508026361465,-0.17423732578754],[-0.047299984842539,-0.091725841164589,0.00066806486574933],[-0.11501370370388,-0.089113131165504,-0.13561217486858]],[[-0.010394674725831,0.087523892521858,-0.057407960295677],[-0.034045353531837,-0.13278943300247,0.011139065027237],[-0.031585928052664,-0.032709944993258,-0.1144236177206]],[[-0.091581948101521,-0.065248139202595,-0.11341758817434],[0.071072839200497,0.17742961645126,0.17447610199451],[-0.16876997053623,-0.020095301792026,-0.082858316600323]],[[0.066411636769772,-0.074835300445557,-0.04707545787096],[-0.1145244538784,-0.052300244569778,-0.05862046405673],[-0.0093603506684303,0.0076370551250875,0.028414964675903]],[[0.027444675564766,-0.12812882661819,0.055171348154545],[0.066525779664516,-0.041363075375557,0.0077341329306364],[0.19295430183411,-0.066286750137806,0.17863050103188]],[[-0.020127791911364,0.057073496282101,-0.06352436542511],[-0.15020065009594,0.04839101433754,0.012225513346493],[0.009638155810535,0.017042893916368,-0.055712658911943]],[[0.031322780996561,-0.099330715835094,0.010095095261931],[-0.12776327133179,-0.18662065267563,-0.014817501418293],[0.070693895220757,-0.037326712161303,0.015563022345304]],[[-0.022991023957729,0.025451483204961,0.014345459640026],[-0.070426024496555,0.067008204758167,-0.15068021416664],[-0.046778727322817,0.08550613373518,-0.096584863960743]],[[-0.067729279398918,0.0046936487779021,-0.047218691557646],[0.12782676517963,-0.023409891873598,0.094133384525776],[-0.10101045668125,-0.0064709116704762,-0.10171543061733]],[[-0.026023428887129,0.022358156740665,0.034640897065401],[-0.061090394854546,0.1281281709671,0.17570887506008],[0.083680674433708,0.13966077566147,-0.062728151679039]],[[-0.10225582122803,-0.14907616376877,-0.091934211552143],[-0.075751379132271,0.037781532853842,-0.023650534451008],[-0.019934043288231,-0.039540510624647,-0.082312926650047]],[[-0.21814528107643,-0.12262343615294,-0.040931664407253],[-0.15897031128407,-0.06690776348114,-0.039465747773647],[0.013060847297311,0.080614984035492,-0.055298514664173]],[[0.09408138692379,-0.13122774660587,0.17271395027637],[-0.073938101530075,-0.15755353868008,-0.077635660767555],[0.16601786017418,-0.075115136802197,0.081509366631508]],[[-0.048426944762468,-0.041295874863863,-0.012430445291102],[-0.20249962806702,0.098474003374577,0.0023712841793895],[-0.022509176284075,-0.091597519814968,-0.0063184099271894]],[[-0.15913413465023,0.060566700994968,-0.087536245584488],[0.046501975506544,0.14148919284344,0.14901751279831],[-0.028857730329037,-0.051784601062536,-0.11401838064194]],[[0.00082820182433352,-0.1109766587615,0.021960118785501],[-0.026602705940604,0.094985477626324,0.085438668727875],[0.079063087701797,-0.15987533330917,0.099734291434288]],[[0.075182668864727,-0.16242831945419,0.12322287261486],[-0.02961259894073,-0.12992267310619,0.0020453245379031],[-0.050451215356588,-0.14648219943047,0.078990049660206]],[[0.13544757664204,-0.015182406641543,0.037228941917419],[-0.04132928699255,0.11461866647005,-0.0025688104797155],[-0.071812212467194,0.059709958732128,-0.071944415569305]],[[0.017200125381351,-0.18689456582069,-0.01228176523],[0.019914390519261,0.028383692726493,-0.024172380566597],[0.061577636748552,-0.16521783173084,-0.15526668727398]],[[-0.040351208299398,0.13684177398682,0.018785659223795],[-0.11068574339151,-0.18919014930725,-0.063120596110821],[0.12748639285564,0.081850647926331,0.20401105284691]]],[[[-0.033306039869785,0.027577731758356,-0.044556505978107],[0.064494878053665,-0.018446087837219,-0.041116718202829],[-0.060197301208973,-0.023986291140318,0.077263109385967]],[[-0.0060197673738003,-0.089615069329739,-0.17743946611881],[0.083511240780354,0.035497181117535,-0.026326719671488],[-0.045294553041458,0.16061027348042,0.14414295554161]],[[0.18517588078976,-0.05666995793581,0.12720608711243],[-0.022173533216119,-0.13467493653297,0.10552618652582],[-0.017843402922153,0.17988380789757,-0.1330958455801]],[[-0.046320404857397,-0.13835121691227,-0.14055763185024],[0.075417347252369,0.092825628817081,-0.021601982414722],[0.085722006857395,-0.10891855508089,-0.032817643135786]],[[-0.0036187537480146,0.04351656511426,-0.059547707438469],[-0.081947416067123,-0.047093618661165,-0.015209089033306],[0.024188417941332,0.037689138203859,-0.075320549309254]],[[0.11238820850849,-0.087227821350098,-0.038923107087612],[-0.12267208844423,-0.10283354669809,-0.19086384773254],[-0.085309363901615,0.12618035078049,0.065497986972332]],[[0.092913880944252,0.081222966313362,0.0043032988905907],[-0.015902243554592,-0.19466033577919,-0.031518626958132],[-0.019273640587926,-0.024826688691974,0.19573479890823]],[[-0.021347073838115,-0.0080955531448126,-0.041699908673763],[0.016833610832691,-0.070810370147228,-0.033668082207441],[-0.046724855899811,-0.041397463530302,0.11578413099051]],[[-0.0055384952574968,-0.038405142724514,-0.040652852505445],[-0.011598362587392,0.027017526328564,-0.021400788798928],[0.023298362269998,0.019739994779229,0.024190174415708]],[[-0.035778637975454,-0.044898215681314,0.0077754822559655],[-0.046002831310034,0.021344562992454,-0.050525166094303],[-0.039951223880053,-0.022940907627344,-0.10991682112217]],[[-0.087935388088226,-0.13468496501446,0.017396569252014],[0.071351990103722,-0.039779637008905,0.083929993212223],[-0.04245287925005,0.13662058115005,-0.088876292109489]],[[-0.092889904975891,-0.082515485584736,-0.10406145453453],[0.029420010745525,-0.018398337066174,-0.091088443994522],[-0.010769700631499,-0.0073913801461458,-0.12617388367653]],[[-0.076155923306942,-0.084838546812534,0.019234461709857],[0.009814040735364,0.042411405593157,0.018242107704282],[-0.10711174458265,-0.017814228311181,-0.018253151327372]],[[0.11297396570444,0.072474054992199,-0.015679078176618],[0.10363482683897,0.055102918297052,-0.041797898709774],[-0.20213118195534,-0.058353338390589,-0.14649146795273]],[[-0.11642335355282,0.093325279653072,0.044719371944666],[-0.10545179247856,0.065058909356594,-0.11041200906038],[0.01268121227622,0.067995771765709,0.11052696406841]],[[-0.0325528383255,-0.21277569234371,0.019593035802245],[-0.035496797412634,0.015436210669577,-0.041321706026793],[-0.041760947555304,0.13700306415558,-0.052088838070631]],[[0.16449518501759,-0.022742256522179,0.19800864160061],[0.15014450252056,-0.022696895524859,-0.032781202346087],[0.02968248911202,0.017028599977493,-0.21363489329815]],[[-0.025563728064299,-0.06948721408844,0.03777426853776],[0.043491464108229,-0.13109011948109,0.012499261647463],[-0.13348306715488,-0.14893235266209,-0.0065658139064908]],[[-0.073066473007202,-0.085856258869171,0.034450218081474],[-0.0073686842806637,0.067613177001476,0.0077844527550042],[-0.22188721597195,0.2420938462019,-0.044008303433657]],[[-0.029781382530928,0.12625713646412,0.020621091127396],[-0.023836720734835,-0.056716356426477,0.083566814661026],[0.15468730032444,-0.1694447696209,0.16725021600723]],[[0.012705971486866,-0.12732763588428,-0.1106426641345],[0.044536836445332,0.075311057269573,-0.13775925338268],[0.019692638888955,0.068388305604458,-0.017203990370035]],[[0.0818762332201,0.099744237959385,0.022789146751165],[-0.079423181712627,-0.018447782844305,0.017464231699705],[-0.090467423200607,-0.013177937828004,0.016591781750321]],[[-0.036309238523245,0.053396034985781,0.013090623542666],[-0.20978127419949,0.044285107403994,-0.12297442555428],[-0.044031720608473,0.076105609536171,-0.069221973419189]],[[-0.030300993472338,0.033780705183744,0.018116494640708],[-0.13873998820782,0.0018627806566656,-0.081980913877487],[-0.1233019605279,-0.012171902693808,0.054499194025993]],[[-0.028066355735064,-0.15005402266979,0.17731194198132],[0.013814751058817,-0.033654540777206,-0.034487128257751],[0.2831512093544,0.1682645380497,-0.072530329227448]],[[-0.041855238378048,0.10816761106253,-0.0015972343971953],[0.012634768150747,-0.036769568920135,0.015490527264774],[-0.025556690990925,0.058421809226274,-0.046713642776012]],[[0.022047117352486,0.004865946713835,0.053763285279274],[-0.044082324951887,-0.096047587692738,0.021353922784328],[-0.064381957054138,-0.050596181303263,-0.038505166769028]],[[0.16092126071453,0.094097532331944,-0.19860292971134],[0.00051360833458602,-0.047957945615053,-0.00039694091537967],[0.0074443020857871,-0.17498733103275,-0.1166867017746]],[[0.12541556358337,-0.037734109908342,0.026391327381134],[-0.0030418282840401,0.041291303932667,-0.029908571392298],[-0.094185374677181,0.089142881333828,-0.057406444102526]],[[-0.010020900517702,0.019113600254059,-0.13410501182079],[0.0090735759586096,-0.030637633055449,0.016775636002421],[0.0013069503474981,-0.099740162491798,0.12318211048841]],[[-0.019872810691595,0.03517223149538,-0.089765056967735],[-0.12618739902973,-0.018351811915636,-0.048546813428402],[-0.10413284599781,-0.11061959713697,0.11158510297537]],[[0.063431330025196,-0.056839555501938,-0.059725325554609],[0.058611638844013,-0.019010238349438,0.089538671076298],[-0.094156384468079,-0.030118985101581,0.11853992193937]],[[-0.031026182696223,-0.058877300471067,0.0029385392554104],[-0.12287598103285,-0.028292708098888,-0.043446738272905],[-0.075876712799072,-0.047028422355652,0.051752358675003]],[[0.10537431389093,-0.035516612231731,0.078486606478691],[-0.05551228299737,0.074307151138783,0.010475655086339],[-0.0026664494071156,-0.048661984503269,-0.059892870485783]],[[0.048851821571589,-0.054547794163227,-0.059691052883863],[-0.0066437181085348,-0.045314814895391,-0.0079335123300552],[0.075859136879444,0.21408419311047,0.09798975288868]],[[0.084722466766834,-0.021950164809823,-0.11036879569292],[-0.014474796131253,-0.033433020114899,-0.099891416728497],[0.0073544778861105,-0.082198709249496,-0.072417333722115]],[[-0.036569278687239,-0.0067633278667927,0.079304292798042],[-0.021949671208858,-0.020945828408003,0.029677014797926],[-0.026539154350758,0.077159069478512,0.070302896201611]],[[0.11092540621758,0.069835752248764,-0.038656186312437],[0.18695583939552,0.050876416265965,0.02185945212841],[-0.036706421524286,0.024687677621841,-0.11644036322832]],[[0.11383175104856,-0.016742128878832,0.058265034109354],[-0.04140667617321,0.03436478599906,-0.041156813502312],[0.042477700859308,0.024639924988151,-0.081311218440533]],[[0.065013840794563,0.036721907556057,-0.022207584232092],[0.012870057485998,0.0084809996187687,0.063259460031986],[-0.12929816544056,-0.16214375197887,0.00043035109410994]],[[-0.0040567410178483,0.032254181802273,-0.11143887042999],[-0.066098362207413,0.014980189502239,-0.0060789664275944],[0.050672478973866,-0.072513774037361,-0.012623447924852]],[[-0.02019833214581,-0.13701763749123,-0.13072741031647],[-0.10551451146603,0.0079654837027192,-0.053926791995764],[-0.12534922361374,0.061493285000324,0.046205334365368]],[[-0.048249244689941,-0.051234744489193,-0.05355129763484],[-0.013279683887959,0.036331951618195,-0.1442469060421],[0.000160940704518,-0.010513831861317,0.032867126166821]],[[0.13874343037605,0.037892628461123,-0.014921839348972],[-0.1039325594902,0.01319157704711,-0.06962626427412],[0.0016667876625434,-0.045390166342258,-0.041036173701286]],[[-0.013259788043797,-0.030174914747477,-0.1047470420599],[-0.16068287193775,0.057641722261906,-0.18462651968002],[-0.18242007493973,0.059681620448828,-0.10919323563576]],[[0.0014125755988061,0.11650259047747,0.056543961167336],[0.0073260273784399,0.036628555506468,0.043981920927763],[-0.089864932000637,0.012198960408568,-0.13173873722553]],[[0.015471774153411,-0.12023275345564,0.026745004579425],[0.13346457481384,-0.12161114066839,0.0081373415887356],[0.054321993142366,-0.075633816421032,-0.012792822904885]],[[0.071272060275078,-0.049503967165947,-0.033379249274731],[-0.02036465331912,0.040641646832228,-0.012886134907603],[0.028001345694065,-0.10541562736034,0.08809744566679]],[[-0.094047956168652,-0.098427474498749,0.12117011845112],[0.012467937543988,0.025024261325598,-0.083441078662872],[-0.043611522763968,-0.029145281761885,-0.01260519772768]],[[0.012952608987689,0.037709500640631,0.004451815970242],[-0.044116403907537,-0.074930585920811,0.065667301416397],[0.0022312083747238,-0.026601746678352,-0.0027812456246465]],[[-0.14847306907177,-0.10557681322098,0.027494365349412],[-0.001893198932521,-0.063647843897343,0.0065859714522958],[-0.056859336793423,0.0097154723480344,-0.078441925346851]],[[-0.046099737286568,0.05111837759614,-0.080449171364307],[-0.075469233095646,-0.043588221073151,0.031520776450634],[-0.040019005537033,-0.14747385680676,0.17482601106167]],[[-0.067257337272167,0.21408051252365,0.06156786903739],[-0.0073426817543805,-0.053366523236036,0.023677352815866],[-0.011382016353309,0.050084982067347,0.12425615638494]],[[0.0020027917344123,-0.088728360831738,-0.021438214927912],[0.096509605646133,0.04732808470726,-0.03152908757329],[-0.1032717898488,-0.06931135058403,-0.18905909359455]],[[-0.026204938068986,-0.067725419998169,-0.056148607283831],[-0.083374783396721,-0.06769010424614,0.017720814794302],[0.080893993377686,-0.085455566644669,-0.010001517832279]],[[0.035431422293186,-0.16944080591202,-0.18405696749687],[0.066704638302326,0.073172092437744,-0.096881620585918],[-0.052133478224277,0.091209255158901,-0.022362461313605]],[[0.022303404286504,-0.096557088196278,-0.025338197126985],[0.04613596200943,0.014314451254904,0.087388321757317],[-0.0075745931826532,0.061524402350187,-0.07964451611042]],[[-0.16703119874001,-0.065074764192104,-0.061675813049078],[-0.0030446120072156,0.025037422776222,-0.065742067992687],[-0.034292880445719,-0.0084764659404755,-0.12558488547802]],[[-0.22879375517368,0.084035240113735,0.076225191354752],[-0.018850652500987,-0.026583144441247,0.1041908338666],[0.011028781533241,-0.13337863981724,0.20976881682873]],[[-0.090413585305214,0.085163824260235,0.048015095293522],[-0.046253774315119,0.074900023639202,-0.011809941381216],[-0.18763072788715,-0.11538205295801,0.056776266545057]],[[0.04729438200593,0.041965086013079,-0.11224297434092],[-0.13373246788979,0.0870181620121,0.033746533095837],[0.056270286440849,0.072103306651115,-0.00025252104387619]],[[-0.080842517316341,0.072560340166092,0.095644280314445],[-0.15227891504765,0.03498201072216,-0.015205651521683],[-0.27700400352478,0.036199923604727,0.092348888516426]],[[-0.031261269003153,-0.043174359947443,0.001176115241833],[-0.16289518773556,0.022415641695261,0.007339428178966],[0.031216477975249,0.072297997772694,-0.11481247842312]],[[-0.17476643621922,-0.16769622266293,0.09663213044405],[0.074757024645805,0.00072647101478651,0.090844318270683],[0.0016009766841307,-0.19075183570385,-0.20515111088753]]],[[[0.012785453349352,-0.041011516004801,0.026495976373553],[0.028707381337881,-0.015645762905478,0.037227168679237],[0.010356886312366,0.0093751363456249,0.0031823017634451]],[[-0.022313382476568,0.015553927980363,0.040471713989973],[0.085138291120529,0.0064295972697437,-0.068152748048306],[-0.074421085417271,-0.091805249452591,-0.096738420426846]],[[-0.0099189803004265,0.0089093744754791,0.0080964025110006],[0.05186640843749,-0.015523590147495,-0.060455173254013],[-0.030646236613393,-0.0050720144063234,-0.046507760882378]],[[-0.088793605566025,-0.036159757524729,-0.0025543419178575],[-0.033990692347288,-0.097187891602516,-0.059079054743052],[-0.077646791934967,-0.038943693041801,0.093829743564129]],[[0.078315146267414,0.060246597975492,-0.070644699037075],[0.035107750445604,0.082576043903828,-0.080553367733955],[0.017348064109683,-0.091771438717842,-0.036498833447695]],[[0.0045974897220731,0.029434993863106,0.06000042706728],[0.031079204753041,-0.052189037203789,-0.027577187865973],[0.071659862995148,-0.0073309727013111,-0.042934760451317]],[[0.042195402085781,0.0085774334147573,-0.014916749671102],[0.040869418531656,-0.038834851235151,-0.12803445756435],[-0.028901478275657,-0.052083995193243,0.0092639522626996]],[[0.13249824941158,0.025809744372964,0.083803087472916],[-0.040873993188143,-0.031771782785654,-0.013208489865065],[-0.03793666139245,-0.0053172614425421,-0.049305941909552]],[[-0.0084607684984803,-0.15772297978401,-0.1233326420188],[0.000560077955015,-0.070672579109669,-0.087889060378075],[0.021404655650258,-0.13469156622887,0.013563381507993]],[[-0.04352842271328,-0.053575530648232,-0.033701058477163],[-0.10563091933727,-0.052273631095886,0.034325558692217],[-0.1478268802166,-0.066705405712128,-0.024486942216754]],[[-0.026810867711902,0.016216499730945,0.046540431678295],[-0.022445414215326,0.040669564157724,0.028743149712682],[0.0064990343526006,-0.11669556796551,0.0024464228190482]],[[0.040115371346474,0.0027437410317361,-0.068547911942005],[-0.0033442035783082,-0.092035703361034,-0.13956795632839],[-0.045348808169365,-0.13420070707798,-0.033937718719244]],[[0.069957353174686,-0.032665356993675,0.021453054621816],[0.085458658635616,0.012621814385056,0.035146199166775],[-0.16003169119358,-0.024188024923205,-0.032973702996969]],[[-0.01352422311902,0.065615609288216,0.012440588325262],[-0.040984567254782,0.028105225414038,-0.013387946411967],[-0.034738846123219,0.025742938742042,-0.093187317252159]],[[-0.00097049045143649,-0.040659010410309,0.053618505597115],[0.069304637610912,-0.036761492490768,0.012569733895361],[-0.026444433256984,0.028818219900131,-0.092591099441051]],[[-0.0017348190303892,-0.01743065007031,-0.033508267253637],[-0.047626402229071,-0.023197885602713,0.0083295851945877],[-0.075165465474129,0.036220122128725,-0.016608122736216]],[[0.015437515452504,0.0013171038590372,0.027788324281573],[0.027089081704617,-0.064234919846058,-0.046122662723064],[0.032331667840481,0.025328118354082,-0.026456570252776]],[[0.040420845150948,-0.0010614106431603,-0.034763764590025],[-0.013832283206284,-0.079176045954227,0.014970300719142],[-0.0361536629498,0.07722195982933,-0.10958357900381]],[[0.10434036701918,-0.0099061941727996,-0.034719780087471],[-0.021308248862624,0.0046674255281687,0.042934220284224],[0.010348943062127,0.02056417055428,0.046923350542784]],[[0.055619854480028,-0.019930943846703,0.017891120165586],[-0.017252882942557,-0.041909348219633,-0.04995035380125],[0.00055608857655898,-0.03067403100431,-0.01538204587996]],[[0.021514158695936,0.063615992665291,0.048353053629398],[0.070680253207684,0.037459682673216,0.0062165912240744],[0.076298981904984,-0.11817852407694,-0.10660991072655]],[[0.055358823388815,0.01854070276022,0.021203398704529],[-0.11724296212196,-0.10750094056129,-0.10311749577522],[-0.013775846920907,-0.099363200366497,-0.019712610170245]],[[-0.041039481759071,-0.014154909178615,-0.035075426101685],[-0.066942676901817,-0.068918623030186,0.011341812089086],[0.071058705449104,0.014409396797419,0.034743819385767]],[[-0.004493294749409,-0.057859119027853,-0.039731256663799],[-0.033222015947104,-0.1610285192728,0.027479944750667],[-0.013272246345878,-0.028928777202964,-0.003418100764975]],[[-0.074546433985233,0.064093306660652,-0.048371523618698],[0.014509577304125,0.00067917013075203,0.018900226801634],[0.082246370613575,-0.0063321636989713,0.089272283017635]],[[-0.07854750007391,0.01907017827034,0.012696377933025],[0.0090858014300466,0.0087172761559486,-0.052634060382843],[-0.17015121877193,-0.11544512212276,0.016215031966567]],[[0.026655841618776,-0.0072625242173672,0.01600481569767],[0.076859250664711,-0.08148418366909,0.038469977676868],[-0.051426477730274,0.034902635961771,0.062118154019117]],[[0.058993607759476,0.025391736999154,-0.038640107959509],[-0.041331317275763,0.050745099782944,0.019038863480091],[-0.13959807157516,-0.074741289019585,-0.0067883376032114]],[[0.020067136734724,-0.036462713032961,0.04573180153966],[0.080697380006313,-0.0088623901829123,-0.016356965526938],[0.071088932454586,-0.050559632480145,-0.10307817906141]],[[0.096583098173141,-0.015969635918736,-0.080448605120182],[-0.014116125181317,0.02281016856432,-0.067645646631718],[-0.10890575498343,-0.0078381206840277,0.070746801793575]],[[-0.11409310996532,0.035716783255339,0.0049093579873443],[0.038686081767082,0.056726362556219,0.026885837316513],[0.07069243490696,0.09105858951807,-0.0062472214922309]],[[-0.0441521294415,-0.051721502095461,-0.010663470253348],[-0.032085705548525,0.0057768393307924,0.060620784759521],[0.0055298814550042,0.059129405766726,0.021571235731244]],[[-0.04108452796936,0.067140974104404,0.063493900001049],[-0.041580807417631,-0.00046463607577607,0.0034188472200185],[-0.023712875321507,0.025331124663353,-0.0083615742623806]],[[-0.047328777611256,0.04169188067317,-0.050648003816605],[-0.040038783103228,-0.15325964987278,-0.0486706122756],[-0.066461786627769,-0.057409938424826,-0.043160412460566]],[[0.031881414353848,0.014411073178053,-0.031461711972952],[0.026770737022161,0.013149935752153,-0.082549028098583],[0.025878861546516,-0.020542405545712,-0.030137563124299]],[[-0.1066412627697,-0.045205812901258,0.064618274569511],[-0.12485445290804,-0.029924895614386,-0.076992683112621],[-0.03721047192812,0.091087989509106,0.041496973484755]],[[-0.068638682365417,0.10862073302269,-0.022390186786652],[-0.055104572325945,-0.013443351723254,0.076063305139542],[-0.0025688984896988,0.077233113348484,0.042133510112762]],[[-0.0091520473361015,-0.066897384822369,0.063026443123817],[0.0088935624808073,-0.091305807232857,0.015364402905107],[-0.079604431986809,-0.05545860901475,-0.025716707110405]],[[0.092991597950459,0.025389822199941,0.09998182952404],[0.15358148515224,0.157381772995,0.039964776486158],[0.082834392786026,0.15799476206303,0.10261005163193]],[[0.054862800985575,-0.005385510623455,-0.0054835146293044],[0.050859175622463,-0.050725907087326,0.012531668879092],[-0.012759828008711,0.12799422442913,0.0094373980537057]],[[-0.044323358684778,-0.10143508017063,0.010956137441099],[0.025348734110594,0.056709412485361,-0.0004264268791303],[0.010609550401568,-0.0094808777794242,-0.061514023691416]],[[0.076794050633907,0.062433112412691,-0.027835225686431],[-0.010468212887645,-0.021990325301886,0.037914279848337],[0.0052890633232892,-0.043537173420191,-0.091215595602989]],[[0.050633084028959,0.081684298813343,0.0013215177459642],[-0.033514946699142,0.0074832355603576,-0.11515963077545],[-0.097718633711338,-0.097609639167786,-0.037575073540211]],[[-0.047726862132549,-0.05194604024291,-0.0054714158177376],[-0.052449606359005,-0.0038930319715291,0.015297248959541],[-0.040736496448517,0.09514607489109,-0.071310587227345]],[[-0.04597232863307,-0.036143995821476,0.052253820002079],[-0.070914559066296,-0.024401383474469,-0.056772049516439],[0.024869056418538,0.033775482326746,0.023566471412778]],[[-0.038414496928453,0.026466909796,-0.034807428717613],[-3.981185000157e-05,-0.011788543313742,0.063734956085682],[-0.027444191277027,-0.097358204424381,0.0035468833521008]],[[-0.0064630503766239,0.098429799079895,0.046405896544456],[-0.032946243882179,0.013771127909422,-0.028068667277694],[0.073978208005428,-0.03467595204711,-0.053092438727617]],[[-0.01926277205348,-0.028693925589323,0.053183384239674],[0.022720012813807,-0.075026489794254,-0.028862604871392],[-0.032646045088768,-0.039787113666534,-0.055992662906647]],[[-0.01197063177824,-0.040345445275307,-0.050794005393982],[-0.16492633521557,0.098756648600101,0.053296506404877],[-0.078355394303799,-0.0082322983071208,-0.023635031655431]],[[-0.077279634773731,0.088888831436634,-0.089432261884212],[-0.071381717920303,0.058258447796106,0.017254719510674],[0.020429505035281,0.0037947806995362,0.022402787581086]],[[-0.14452618360519,-0.040294867008924,-0.075650833547115],[-0.1584929972887,-0.081605955958366,0.013914775103331],[-0.062097080051899,-0.15448869764805,-0.18324761092663]],[[-0.064620159566402,0.0024834293872118,-0.0053293057717383],[-0.019885802641511,0.048371512442827,-0.033745910972357],[0.01500868331641,-0.090836383402348,0.031483590602875]],[[-0.0055352123454213,0.067507512867451,-0.040280807763338],[0.033611349761486,-0.016114454716444,-0.031433254480362],[0.055357124656439,-0.0072804233059287,-0.028756380081177]],[[0.0024405883159488,0.0093726487830281,-0.0088068852201104],[0.0082938512787223,0.01706013828516,-0.095438599586487],[-0.12731899321079,-0.0244529992342,0.013119409792125]],[[0.0083516109734774,-0.094495005905628,0.027515362948179],[0.060321822762489,-0.076502770185471,-0.083462186157703],[-0.0062572583556175,0.14835387468338,-0.059109754860401]],[[-0.02188933826983,-0.030782228335738,-0.10565128177404],[0.034605983644724,0.02828124165535,-0.048458453267813],[0.061520878225565,-0.04465638846159,-0.028263451531529]],[[0.14566189050674,0.048277374356985,0.033441964536905],[0.092611059546471,0.15019373595715,0.061925161629915],[0.11827147006989,-0.024626601487398,-0.018885238096118]],[[-0.013042211532593,-0.017226308584213,-0.05124730989337],[-0.0068815760314465,-0.026340782642365,0.047496940940619],[-0.091115914285183,0.019441649317741,-0.0065948544070125]],[[-0.09368784725666,-0.088503107428551,-0.0029656020924449],[-0.055893126875162,-0.0047176061198115,-0.079819552600384],[0.056043468415737,-0.028446162119508,0.0047776834107935]],[[-0.09224995225668,0.077104963362217,0.072737880051136],[-0.070246733725071,-0.0027946999762207,0.014606066979468],[0.0047148303128779,-0.066936537623405,0.015565217472613]],[[-0.017820358276367,-0.041885018348694,-0.1046791151166],[0.074281990528107,0.067570045590401,-0.058744225651026],[0.059678960591555,0.035280525684357,-0.049168560653925]],[[0.035451143980026,-0.024328332394361,-0.062651053071022],[0.0032768684905022,0.0070323394611478,-0.033665731549263],[0.032600697129965,0.0074979783967137,-0.077122941613197]],[[0.055298656225204,-0.018377136439085,0.028662543743849],[0.035131964832544,-0.043641425669193,0.026587311178446],[-0.030193194746971,-0.025497594848275,-0.032441068440676]],[[-0.039309620857239,-0.010067973285913,-0.053551658987999],[0.063279211521149,0.0004688921617344,-0.0053521669469774],[0.078207567334175,-0.040958065539598,-0.025260547176003]]],[[[0.082689359784126,-0.1586801558733,0.016877852380276],[-0.059874512255192,0.090639904141426,-0.012115207500756],[0.022859072312713,-0.1033408716321,0.070134498178959]],[[0.066367790102959,-0.058456163853407,-0.031443249434233],[-0.085321493446827,0.0050933756865561,-0.015447339974344],[-0.0091700404882431,0.084535792469978,0.089438490569592]],[[-0.040890503674746,-0.065851144492626,-0.11592942476273],[0.058276567608118,-0.11411541700363,0.019001079723239],[-0.0034120541531593,-0.004047823138535,-0.13419610261917]],[[-0.088438145816326,0.0026763989590108,0.0023279075976461],[0.0090004662051797,-0.052971888333559,-0.011635264381766],[0.075893335044384,0.056723535060883,0.10059662163258]],[[-0.051575567573309,0.050548814237118,0.025971230119467],[-0.019325373694301,0.025569433346391,0.017926592379808],[-0.089503295719624,0.028188725933433,-0.12320771813393]],[[0.013480430468917,-0.078866697847843,0.14311718940735],[0.16554130613804,-0.13349093496799,-0.15896934270859],[-0.028322048485279,0.11211130768061,0.0014062818372622]],[[-0.049892526119947,0.059234276413918,0.043876625597477],[0.048605058342218,-0.061491303145885,0.060616496950388],[-0.049306020140648,0.0050968900322914,0.12372397631407]],[[-0.054343339055777,-0.02816061489284,-0.078248932957649],[-0.07641527056694,0.029539126902819,-0.075388193130493],[-0.017977062612772,0.0045035476796329,0.088572017848492]],[[0.029910765588284,0.0033228304237127,0.0014629368670285],[-0.11913868784904,0.051687020808458,-0.039674442261457],[0.023184817284346,-0.026437923312187,0.03981839120388]],[[0.078644081950188,-0.057530649006367,-0.0038002310320735],[-0.19035728275776,0.042577363550663,-0.049579288810492],[-0.071067988872528,0.042298369109631,0.014657571911812]],[[-0.016600443050265,-0.099940277636051,0.057035122066736],[0.014457104727626,0.068046301603317,-0.20076623558998],[0.03010992333293,0.053916674107313,-0.0076920236460865]],[[-0.050034277141094,-0.062374606728554,-0.1494784206152],[-0.10746794939041,0.024790460243821,-0.030444467440248],[-0.046650875359774,-0.11091002076864,0.016203735023737]],[[-0.15668869018555,0.081035271286964,-0.022139078006148],[0.077903501689434,-0.16540932655334,0.01416355278343],[0.078016944229603,0.084643140435219,0.024255394935608]],[[-0.05031406134367,-0.1108565106988,0.044563133269548],[-0.010076833888888,0.056846737861633,-0.061758611351252],[0.058846320956945,-0.032121613621712,-0.011223196983337]],[[-0.060593765228987,0.0050419648177922,0.051471456885338],[0.029238250106573,0.058192100375891,-0.0091472053900361],[0.062791027128696,-0.0017961687408388,0.0033442468848079]],[[0.063885793089867,-0.021494720131159,0.028023235499859],[-0.012336558662355,0.0012772839982063,0.026841582730412],[0.01001238822937,0.019997892901301,-0.033018205314875]],[[-0.0024269658606499,-0.016975177451968,0.051898162811995],[0.062178209424019,0.028077598661184,-0.11492654681206],[0.037574332207441,-0.0084156896919012,0.028196565806866]],[[-0.033667348325253,0.018834384158254,-0.0280706230551],[0.056133277714252,-0.17379209399223,0.015331602655351],[-0.023959102109075,-0.029125595465302,-0.10311281681061]],[[-0.075624458491802,-0.01224154047668,-0.0046121496707201],[0.042202822864056,-0.026117665693164,0.050543669611216],[0.14544105529785,0.011277720332146,0.0099960435181856]],[[-0.059391725808382,0.12207563221455,0.044037152081728],[-0.037103828042746,-0.043172232806683,0.053518284112215],[-0.061987832188606,-0.032242204993963,0.00027822292759083]],[[0.038143444806337,-0.088232316076756,-0.21643102169037],[-0.048499025404453,-0.17934918403625,0.091055929660797],[0.074537076056004,-0.048990342766047,0.083934456110001]],[[-0.0041555194184184,-0.0044108494184911,-0.031484562903643],[-0.14576035737991,-0.048216551542282,0.044654496014118],[-0.042315900325775,-0.077871903777122,0.014530058950186]],[[-0.084682047367096,0.038310933858156,-0.045895721763372],[0.06924070417881,0.11942703276873,-0.10656808316708],[0.10097659379244,0.022188911214471,-0.036137711256742]],[[-0.046420264989138,-0.049058526754379,-0.045567087829113],[-0.028649797663093,0.040947318077087,-0.1089284569025],[-0.067623876035213,-0.03067141957581,-0.074799537658691]],[[-0.06984818726778,-0.010861683636904,0.0043701333925128],[0.042778696864843,-0.071818500757217,0.030276799574494],[-0.13540132343769,-0.02453825250268,-0.045160539448261]],[[-0.073816306889057,-0.082784377038479,0.089325033128262],[0.042059611529112,-0.027962740510702,-0.12308879196644],[-0.038419768214226,-0.11236336827278,0.10584904998541]],[[-0.085173703730106,-0.091096684336662,-0.099512182176113],[-0.038008872419596,0.15208753943443,-0.10686512291431],[0.083404533565044,-0.0047193081118166,0.13724745810032]],[[0.040179934352636,0.073940716683865,0.018067019060254],[0.0036656283773482,0.028376838192344,-0.17919278144836],[-0.18984033167362,0.035433571785688,-0.04378317669034]],[[-0.13031961023808,-0.0078268982470036,0.031522691249847],[-0.029451200738549,0.060467578470707,0.10462944954634],[-0.053032077848911,-0.027818894013762,-0.065877549350262]],[[-0.13312515616417,-0.055499482899904,-0.0045765754766762],[0.015232109464705,-0.034402221441269,0.052273038774729],[-0.1474419683218,-0.15996637940407,-0.011930299922824]],[[0.013734639622271,-0.044232536107302,0.086708202958107],[0.041514784097672,-0.03829388320446,-0.021204300224781],[0.025136781856418,-0.038313750177622,0.041832640767097]],[[-0.017417769879103,-0.1267636269331,0.12942336499691],[-0.059581153094769,0.064752511680126,-0.062184382230043],[0.0071534616872668,0.015055201947689,0.095591716468334]],[[0.060067672282457,0.0025130426511168,0.078541956841946],[0.059403695166111,0.030897200107574,-0.025601293891668],[0.039649542421103,-0.06265639513731,-0.036033753305674]],[[-0.036143962293863,-0.033518828451633,-0.049172427505255],[-0.083118714392185,0.040708635002375,-0.10329659283161],[3.2963438570732e-05,0.049624621868134,-0.0025036889128387]],[[-0.00967051461339,0.017880005761981,-0.066879570484161],[-0.015097226947546,0.08078321814537,-0.053823206573725],[0.029939129948616,0.018589630723,0.017638156190515]],[[-0.069557413458824,0.035107668489218,0.010294710285962],[0.0085710128769279,-0.04836368560791,0.001440203981474],[0.073577664792538,0.057101547718048,-0.11490593850613]],[[0.08806473761797,-0.034743297845125,0.0081520574167371],[0.0026367616374046,0.015829244628549,0.038360856473446],[-0.071346163749695,0.074654951691628,0.1069289073348]],[[0.085068508982658,0.12531106173992,0.047402992844582],[-0.21196040511131,-0.016775814816356,0.10033296048641],[0.10212573409081,-0.041457768529654,0.024118946865201]],[[-0.068228654563427,-0.040921948850155,-0.02291944436729],[-0.021441088989377,-0.052170619368553,0.018038500100374],[-0.040030043572187,0.061239212751389,0.03673904016614]],[[-0.084298744797707,0.034946221858263,0.031356029212475],[0.083641916513443,0.11765332520008,-0.0092344116419554],[0.01628602296114,0.07772321254015,-0.033118136227131]],[[-0.095480732619762,0.034623831510544,-0.025375064462423],[0.0076187863014638,0.046528104692698,-0.078670874238014],[-0.04339287802577,0.079064376652241,-0.029408602043986]],[[-0.031432490795851,-0.0057612722739577,0.032827716320753],[0.059195622801781,-0.049966808408499,-0.07756270468235],[-0.052351605147123,-0.048211548477411,0.096163436770439]],[[-0.056822247803211,-0.10917081683874,-0.078197173774242],[-0.10051108896732,0.011228105984628,0.014745142310858],[-0.015012233518064,0.11822979897261,0.037935812026262]],[[-0.056380592286587,-0.069527633488178,-0.090268641710281],[0.061615608632565,0.045768700540066,0.096641480922699],[0.078248426318169,0.074214391410351,-0.0027510956861079]],[[-0.040123101323843,-0.18884100019932,0.085843674838543],[0.061801854521036,0.0089246397837996,-0.060149680823088],[-0.03495979309082,0.040951337665319,-0.0024375151842833]],[[-0.10914021730423,0.086279764771461,0.13210359215736],[0.080936707556248,0.028779832646251,-0.020664287731051],[-0.042299639433622,-0.096969187259674,0.15795938670635]],[[-0.071344949305058,0.0010128121357411,0.0061497120186687],[-0.086870595812798,-0.015702476724982,0.058443758636713],[0.017012845724821,-0.041900373995304,-0.028413593769073]],[[-0.034877963364124,0.04984749481082,0.010935692116618],[0.0059824166819453,0.023815477266908,0.0030871441122144],[0.030913919210434,0.002664337400347,-0.0080635594204068]],[[-0.079690180718899,-0.030548680573702,-0.14188477396965],[-0.015809582546353,-0.069149248301983,-0.015440803952515],[-0.07282667607069,0.0064357644878328,0.13199010491371]],[[-0.067945443093777,0.0083715114742517,-0.028275215998292],[0.093515239655972,-0.016562271863222,-0.088395230472088],[0.00065661547705531,0.065685927867889,-0.042398829013109]],[[-0.055246226489544,-0.081429831683636,-0.010606117546558],[0.017570240423083,-0.10769323259592,0.086245186626911],[0.071999698877335,-0.11715615540743,0.11430533230305]],[[-0.080313764512539,-0.060576032847166,0.1147078499198],[0.034481722861528,-0.079229332506657,-0.044574122875929],[0.034631442278624,-0.079081945121288,-0.018772521987557]],[[0.045231804251671,0.0062909694388509,-0.078374363481998],[-0.072479940950871,0.12792144715786,-0.068106427788734],[-0.014858167618513,0.11948167532682,-0.088773876428604]],[[-0.074634715914726,-0.0811732634902,0.039731718599796],[0.093356661498547,0.030673580244184,0.067523248493671],[-0.06749039888382,0.0057028820738196,-0.10513999313116]],[[-0.074542872607708,-0.0016299327835441,-0.028678357601166],[-0.04667779058218,-0.056415993720293,0.0082814684137702],[0.046282004565001,0.10398043692112,-0.042775277048349]],[[0.15712480247021,-0.029829291626811,-0.054870314896107],[0.030050752684474,-0.11495281755924,0.075598165392876],[-0.0036714167799801,0.021800726652145,-0.068244263529778]],[[0.059631388634443,0.043809205293655,-0.14606845378876],[0.019679121673107,0.012964661233127,-0.020950509235263],[-0.064221188426018,-0.037246067076921,0.11608853191137]],[[-0.036404564976692,-0.055355004966259,-0.078602984547615],[-0.026930510997772,0.06996576488018,-0.048582497984171],[0.0064852247014642,-0.048757318407297,0.090930692851543]],[[-0.061627075076103,0.011990041472018,-0.0078822411596775],[-0.14209096133709,-0.037520051002502,-0.056702192872763],[-0.082960985600948,-0.045027043670416,0.016621261835098]],[[0.1081088706851,0.070858515799046,-0.15454477071762],[0.0041899685747921,0.079429864883423,0.011076443828642],[0.072930246591568,-0.050903555005789,0.072060860693455]],[[-0.039876572787762,-0.09454257786274,-0.0083747617900372],[-0.00037564762169495,-0.023099852725863,-0.1048761755228],[0.039518266916275,0.048412475734949,0.087237142026424]],[[0.044190939515829,-0.0019832716789097,-0.13704608380795],[-0.12217102199793,-0.020857520401478,0.023715831339359],[-0.19881652295589,-0.10439249873161,-0.0034544710069895]],[[0.051905602216721,0.039828240871429,0.024296747520566],[-0.09821917116642,0.057223834097385,-0.014195517636836],[0.062647990882397,0.0020544875878841,-0.021435903385282]],[[-0.0029929557349533,-0.051239065825939,-0.032611012458801],[0.063194841146469,0.088321216404438,-0.065925098955631],[0.065418161451817,-0.078242972493172,0.092341646552086]]],[[[0.023911600932479,-0.0026125721633434,0.062007110565901],[0.041901651769876,0.013852439820766,-0.068389132618904],[-0.2627187371254,0.079609714448452,0.12644948065281]],[[-0.093621090054512,0.11713687330484,-0.024799887090921],[0.027026331052184,-0.05585140734911,0.001569272368215],[0.0062929354608059,0.00913165230304,0.039223689585924]],[[-0.084320388734341,-0.0041146040894091,-0.018579307943583],[-0.12399076670408,-0.02020063623786,-0.02720600925386],[0.033014509826899,-0.069741420447826,-0.1005994156003]],[[0.01314855273813,-0.048585448414087,0.0037718005478382],[0.035739373415709,-0.15819579362869,-0.2146974503994],[0.067113600671291,-0.082286782562733,0.08397600799799]],[[-0.10309053212404,-0.1139702051878,-0.13642507791519],[0.051394868642092,-0.038263376802206,-0.071181997656822],[0.030725134536624,0.046843368560076,0.043316658586264]],[[0.14043684303761,0.10004937648773,0.028781730681658],[0.016230043023825,-0.16767731308937,-0.033157531172037],[0.14674326777458,0.00090601551346481,-0.174481138587]],[[-0.04315983876586,-0.002426968421787,0.10345162451267],[-0.05785845220089,-0.008058256469667,-0.019980188459158],[-0.047463063150644,-0.046444270759821,-0.022026874125004]],[[-0.07446213811636,0.023387495428324,0.054627291858196],[0.018389778211713,0.023192711174488,-0.014801564626396],[-0.16595610976219,0.059062082320452,0.034791171550751]],[[0.017394196242094,0.040863856673241,-0.11130211502314],[-0.00067373638739809,0.10023523122072,0.11814128607512],[-0.045104157179594,-0.10323019325733,-0.033199280500412]],[[-0.043882802128792,-0.018834494054317,0.088404342532158],[0.11559046804905,0.0064198626205325,-0.14818544685841],[0.052335865795612,-0.0085192900151014,0.037587899714708]],[[0.075654856860638,0.035878781229258,0.027964223176241],[0.023503147065639,0.031448408961296,0.089891888201237],[-0.15924337506294,-0.27164825797081,-0.085250295698643]],[[-0.10848441720009,-0.0073405364528298,-0.067369371652603],[-0.1293181926012,-0.051265321671963,-0.04150578379631],[0.036164216697216,-0.094836637377739,-0.037221785634756]],[[0.026674186810851,-0.078814163804054,-0.0064269527792931],[-0.020023383200169,0.11937070637941,0.11707955598831],[-0.029583837836981,0.080453865230083,-0.14176994562149]],[[0.068154618144035,0.0067192255519331,0.00014065683353692],[-0.088418886065483,-0.00050683284644037,-0.10002126544714],[-0.076165914535522,0.01588805578649,0.00032690426451154]],[[-0.16020986437798,0.0070891138166189,-0.027838269248605],[0.063404724001884,0.11631693691015,-0.066868752241135],[0.07625824958086,-0.080840118229389,0.012002158910036]],[[0.062030177563429,0.064021654427052,-0.038022100925446],[-0.003006293438375,-0.09176280349493,-0.06632985919714],[-0.0078794313594699,-0.05003909394145,-0.019963102415204]],[[0.050046056509018,0.13314682245255,-0.0025346872862428],[-0.18380373716354,-0.36865919828415,-0.088480532169342],[-0.012347810901701,0.050408110022545,-0.09476013481617]],[[0.0061709238216281,-0.077218368649483,-0.048045866191387],[-0.07197892665863,-0.079534411430359,0.07404101639986],[0.023597609251738,-0.094477862119675,-0.034103371202946]],[[0.035541605204344,-0.064147002995014,-0.085225850343704],[0.045726772397757,-0.038861989974976,0.078260391950607],[-0.11931359767914,-0.061919149011374,0.2497581243515]],[[-0.049070633947849,0.0070665208622813,-0.055777668952942],[-0.014890876598656,-0.017211524769664,0.12058142572641],[-0.018076572567225,-0.038628302514553,0.05230987071991]],[[0.068931899964809,0.038747288286686,0.038753680884838],[-0.016943173483014,0.098952487111092,0.097713284194469],[-0.08482514321804,-0.28961756825447,-0.15721026062965]],[[-0.23230712115765,-0.17817643284798,0.088599316775799],[-0.06351924687624,-0.049075078219175,0.0014714960707352],[-0.085039898753166,0.015446467325091,-0.006040511187166]],[[-0.011396368034184,-0.082646049559116,-0.079131223261356],[-0.0083455750718713,-0.065488062798977,0.098896481096745],[-0.045727949589491,0.029324615374207,-0.15021389722824]],[[0.061244808137417,0.010440205223858,-0.013044076040387],[-0.099135383963585,0.085726201534271,-0.1043836325407],[-0.15180286765099,-0.085789479315281,-0.027020601555705]],[[0.026947362348437,0.0036330260336399,-0.049750246107578],[0.057997535914183,0.031133519485593,-0.035673022270203],[-0.0178766194731,0.17139840126038,0.032777391374111]],[[-0.11775846779346,0.1147687509656,-0.046299394220114],[0.07247019559145,-0.0057640452869236,0.035342678427696],[-0.090339668095112,-0.09369283914566,-0.040418416261673]],[[0.082094922661781,-0.015264614485204,-0.037182152271271],[-0.013805760070682,-0.018454812467098,-0.026633776724339],[-0.037322580814362,-0.070075437426567,0.014291878789663]],[[-0.11112520098686,0.064331971108913,-0.0233562476933],[0.045720495283604,-0.067474126815796,-0.11332581192255],[0.012892792932689,0.041283760219812,-0.078309237957001]],[[0.0073474491946399,0.15830655395985,0.081395775079727],[0.10609151422977,-0.0086848512291908,0.04588221013546],[-0.14385215938091,-0.2957977950573,-0.20739355683327]],[[-0.1357447206974,-0.039326921105385,-0.017186025157571],[-0.10764756798744,0.017029354348779,-0.049019999802113],[-0.081342145800591,0.10524649173021,0.11426316201687]],[[-0.09083054214716,0.09174320101738,0.11916713416576],[-0.17661383748055,-0.17195726931095,-0.15429815649986],[0.039498288184404,-0.028412217274308,0.019199641421437]],[[-0.025733899325132,-0.092261597514153,-0.0042611970566213],[0.080087043344975,0.069269597530365,0.11836908012629],[-0.029307274147868,0.025607505813241,-0.13165129721165]],[[-0.058500729501247,0.10638563334942,0.065084882080555],[-0.22871014475822,0.023349892348051,0.043213628232479],[-0.072356328368187,0.047049786895514,-0.033507645130157]],[[0.038047481328249,-0.14946441352367,-0.051654957234859],[0.04391261190176,-0.029745452105999,-0.014176024124026],[0.1000566855073,-0.018683478236198,-0.030176755040884]],[[0.0033696792088449,0.009044611826539,0.02350240200758],[-0.10098209232092,0.019440937787294,0.17155478894711],[-0.058884907513857,-0.0070705944672227,-0.1046841442585]],[[-0.25588476657867,-0.23768183588982,-0.21313047409058],[-0.0057795280590653,-0.06850042194128,-0.1255557090044],[0.060577809810638,0.13733613491058,0.13299651443958]],[[0.0054629351943731,-0.067179769277573,-0.090621121227741],[0.038435492664576,0.031482890248299,-0.1080245450139],[-0.038795132189989,0.067758224904537,0.043993890285492]],[[0.13062790036201,0.11413583159447,0.071490302681923],[0.079550117254257,-0.031055212020874,0.015989672392607],[-0.13565514981747,-0.17312549054623,-0.065163008868694]],[[-0.039179269224405,-0.053992088884115,0.052472192794085],[0.006524346768856,-0.047078229486942,0.03721434250474],[-0.091997936367989,-0.009985682554543,0.034491330385208]],[[-0.011069698259234,-0.17713683843613,-0.1350409090519],[0.10130660235882,0.12399057298899,0.087938658893108],[0.098796375095844,-0.095221370458603,-0.0057349889539182]],[[0.0069913449697196,-0.18141697347164,-0.046859938651323],[-0.031421404331923,-0.13654012978077,0.015991024672985],[-0.10544072836637,-0.14283898472786,-0.0080256937071681]],[[-0.10543873906136,-0.077058658003807,-0.010796634480357],[0.085219047963619,-0.04057952016592,-0.0014496942749247],[-0.12849076092243,0.12667213380337,0.0061398898251355]],[[-0.0230344068259,0.07293738424778,0.16865774989128],[-0.017979295924306,-0.10893328487873,0.041556600481272],[0.048242494463921,-0.031010419130325,-0.0014341039350256]],[[-0.093497321009636,0.035443771630526,0.017920283600688],[0.079471252858639,-0.070870354771614,0.068457789719105],[-0.050834748893976,0.068420171737671,-0.017732311040163]],[[-0.15206001698971,-0.0095139537006617,0.017045993357897],[-0.094614654779434,-0.061153806746006,0.042148094624281],[0.063028611242771,0.090559795498848,0.0050532431341708]],[[0.11685291677713,0.020817009732127,-0.070942871272564],[0.10731419175863,0.03632589802146,0.0036352407187223],[-0.044929094612598,-0.16146655380726,-0.1875157803297]],[[-0.0053836619481444,-0.05928497761488,-0.042128894478083],[0.031508419662714,-0.026559609919786,0.023077012971044],[0.041101984679699,0.13901861011982,-0.0092482771724463]],[[-0.057558361440897,-0.19103936851025,-0.043556708842516],[0.0081463186070323,0.010272947140038,-0.10768070816994],[0.062914103269577,0.019411826506257,0.09175306558609]],[[-0.10308267921209,0.067994430661201,-0.0422358289361],[0.05238689109683,-0.037942633032799,-0.16725447773933],[-0.016144474968314,0.11611664295197,-0.14850324392319]],[[-0.084221750497818,0.054131776094437,0.013502323068678],[0.0095087513327599,-0.10868129134178,-0.075449861586094],[0.017363581806421,0.12442301213741,0.05290586873889]],[[0.0068316361866891,-0.10174742341042,-0.08318430185318],[-0.066638015210629,-0.032802864909172,-0.031731285154819],[-0.07770948112011,-0.050979059189558,-0.13228566944599]],[[0.0084745390340686,-0.0039579658769071,-0.17060971260071],[0.073040500283241,-0.04131431132555,-0.16888254880905],[0.075886577367783,-0.026184022426605,0.10340571403503]],[[0.043782260268927,0.065410062670708,-0.069821961224079],[0.04574367031455,0.023762108758092,-0.10923671722412],[0.10076043009758,0.13789358735085,-0.2444533854723]],[[-0.052486788481474,-0.00080677168443799,0.25736683607101],[-0.031826127320528,-0.03094906359911,0.17806586623192],[0.013092600740492,-0.26311773061752,-0.062226451933384]],[[-0.061553608626127,-0.314782589674,-0.12002114951611],[-0.04899413511157,-0.11359872668982,0.050952102988958],[0.041483614593744,0.13340024650097,0.051331412047148]],[[-0.18448305130005,-0.0039221197366714,0.066064551472664],[0.12155850976706,0.12030534446239,0.052339028567076],[-0.01523791346699,0.0012991006951779,-8.2201389886905e-05]],[[-0.0012761350953951,-0.05084539949894,-0.03274804353714],[0.030956251546741,0.014057653024793,-0.028310220688581],[0.011212204582989,-0.017142044380307,-0.0021908287890255]],[[-0.0094746267423034,0.057487949728966,-0.030699539929628],[-0.010639656335115,0.01768371835351,0.11503591388464],[-0.02006153576076,-0.040584750473499,-0.047415163367987]],[[-0.0046459794975817,-0.088455021381378,0.00098820973653346],[0.063080318272114,0.053901832550764,0.089361101388931],[-0.05083179846406,0.01847330853343,0.16277219355106]],[[0.070171743631363,0.10001841187477,0.044030055403709],[-0.12386085838079,-0.031410444527864,-0.0020623204763979],[-0.12755604088306,-0.040485043078661,0.055645287036896]],[[0.041706249117851,-0.1525404304266,-0.034831624478102],[0.046520005911589,-0.028150126338005,-0.05450613796711],[0.029498109593987,0.023244448006153,0.081979475915432]],[[-0.0029734305571765,0.058494534343481,0.078395165503025],[0.15615782141685,0.10762042552233,0.10971011966467],[-0.067497588694096,-0.03838723897934,-0.25620326399803]],[[-0.044523227959871,-0.19101120531559,0.084695763885975],[0.1780911386013,0.026355553418398,0.0084381317719817],[0.078689448535442,-0.1859088987112,0.097152471542358]],[[-0.17576678097248,-0.1708656847477,-0.16087944805622],[0.047313675284386,0.1567764878273,0.037950791418552],[0.072992995381355,0.065575167536736,0.28094974160194]]],[[[-0.036603640764952,-0.012617392465472,-0.10354187339544],[0.10763141512871,0.033655252307653,-0.028169609606266],[-0.034629799425602,0.059446014463902,0.026456195861101]],[[-0.017840310931206,-0.0099645415320992,-0.0061253169551492],[-0.0045348606072366,0.07195857167244,0.080613240599632],[0.017134169116616,0.10914888978004,-0.043875571340322]],[[-0.031499113887548,-0.061492823064327,0.052278447896242],[-0.064353831112385,0.088216155767441,0.051809590309858],[0.12674756348133,0.084484584629536,0.0091887880116701]],[[-0.070677936077118,-0.016262166202068,0.011174593120813],[0.030377516523004,-0.17934562265873,0.051331967115402],[-0.032884407788515,0.016828147694468,0.024976946413517]],[[-0.090478584170341,0.099821448326111,0.016896789893508],[0.028506983071566,-0.037884071469307,0.088985852897167],[-0.17614033818245,-0.16895419359207,-0.093184784054756]],[[-0.02867572568357,-0.021587714552879,0.064741395413876],[0.04481103271246,0.09068863093853,0.074974164366722],[-0.016900898888707,0.037164472043514,0.04943049326539]],[[0.037426382303238,-0.08758832514286,0.075204461812973],[-0.14221119880676,-0.026193924248219,0.060230679810047],[0.091355443000793,0.068337932229042,-0.009620537981391]],[[-0.053211562335491,0.0049322177655995,0.085750184953213],[-0.072894610464573,0.085184320807457,-0.073135070502758],[0.083618454635143,-0.046523094177246,-0.064585767686367]],[[-0.11131021380424,0.034822817891836,-0.026794882491231],[0.0030309474095702,0.011017867363989,-0.034194052219391],[0.073704957962036,0.031208990141749,-0.0077616884373128]],[[-0.011625384911895,-0.048417184501886,0.039146430790424],[-0.0091270320117474,0.055527452379465,0.035013724118471],[0.22708168625832,0.094837576150894,0.00078842620132491]],[[0.045080997049809,0.084151856601238,0.0034966522362083],[0.048532452434301,-0.031893331557512,-0.064569510519505],[-0.060812938958406,-0.012971027754247,-0.18371795117855]],[[0.032085582613945,-0.035131804645061,-0.084650568664074],[-0.04185251891613,-0.023090844973922,-0.046105615794659],[0.015867039561272,-0.1136097162962,-0.092384919524193]],[[-0.12096297740936,-0.13462293148041,-0.08134089410305],[-0.11184654384851,-0.12415911257267,-0.0091913258656859],[-0.028483621776104,-0.16226680576801,-0.073922455310822]],[[-0.075434744358063,-0.19966544210911,-0.11837740242481],[-0.086036995053291,0.0062744123861194,0.13712471723557],[-0.046076957136393,0.16021810472012,0.066286988556385]],[[-0.17400085926056,-0.11661267280579,0.002370327943936],[-0.074604645371437,-0.039696555584669,-0.026818856596947],[0.039875961840153,-0.044565368443727,0.14568130671978]],[[0.076684392988682,0.017219258472323,0.057254653424025],[0.24918794631958,-0.095564618706703,-0.13502180576324],[-0.0011123314034194,0.02248302474618,0.088676564395428]],[[0.16334702074528,0.078344069421291,0.08194575458765],[0.00042692266288213,-0.01205025613308,-0.15171848237514],[0.026712909340858,0.072297714650631,-0.1529378592968]],[[0.03476270660758,-0.12919701635838,0.094440884888172],[-0.060466885566711,-0.15570487082005,-0.035110291093588],[-0.056220814585686,-0.11880721151829,0.10360960662365]],[[0.18942739069462,0.035193141549826,0.056735467165709],[0.048043429851532,-0.0084770927205682,-0.10696849226952],[0.0045278123579919,-0.1172111555934,0.028518356382847]],[[-0.065368369221687,-0.0044479258358479,0.14316092431545],[-0.013374892063439,0.037207126617432,0.0045196660794318],[-0.097343854606152,-0.018916957080364,-0.015676708891988]],[[0.19663156569004,-0.052249357104301,-0.014621710404754],[-0.025782838463783,-0.088117502629757,-0.014296754263341],[0.065098628401756,0.0074204723350704,-0.097759090363979]],[[0.0052265394479036,-0.047945205122232,-0.02989974245429],[-0.025558045133948,0.048141125589609,-0.01306123752147],[0.064925394952297,-0.016260106116533,0.017247723415494]],[[0.018674919381738,0.058566249907017,0.031672563403845],[0.073538273572922,0.012195081450045,0.06324727088213],[-0.13850399851799,-0.040954750031233,0.083230994641781]],[[-0.057843547314405,0.037830103188753,-0.029507432132959],[0.10404813289642,-0.048720464110374,0.10310359299183],[0.023435762152076,-0.15633307397366,0.14698587357998]],[[-0.050419420003891,0.086871489882469,-0.0024883516598493],[0.029528144747019,-0.080229111015797,0.028179049491882],[-0.039917442947626,0.017374539747834,0.064693309366703]],[[0.066844642162323,-0.031066017225385,-0.00081522960681468],[0.15862978994846,0.043530620634556,0.0057484041899443],[0.17132449150085,-0.013699542731047,-0.078664295375347]],[[-0.17489649355412,-0.055041812360287,-0.065356440842152],[0.073156714439392,0.080377586185932,0.0099108321592212],[-0.061331387609243,0.078815534710884,-0.056319933384657]],[[-0.009101933799684,-0.12521974742413,0.010028259828687],[0.069030597805977,0.089943006634712,-0.051163069903851],[-0.024765448644757,-0.034738130867481,0.089599795639515]],[[-0.022011965513229,0.024048835039139,0.052895274013281],[-0.053783871233463,-0.072199583053589,-0.087862640619278],[-1.585133941262e-05,-0.080796100199223,-0.039454396814108]],[[-0.19753435254097,-0.21058124303818,-0.0032411590218544],[-0.26214283704758,-0.12563316524029,-0.071010917425156],[-0.0079151755198836,0.036406613886356,-0.0044165104627609]],[[-0.010257172398269,0.044900469481945,-0.01973594352603],[0.0080934474244714,0.0021517795976251,-0.075188972055912],[-0.089354030787945,-0.048021085560322,-0.19540704786777]],[[-0.054939825087786,-0.046781029552221,-0.03664418309927],[-0.065218217670918,0.057766065001488,-0.020094484090805],[-0.077118642628193,-0.057752780616283,0.048574220389128]],[[-0.01341937109828,0.09528112411499,-0.13865034282207],[0.0049348515458405,0.013784450478852,-0.023165645077825],[-0.041206698864698,0.1018747985363,-0.03112100623548]],[[0.046298280358315,0.0017230389639735,0.0087274042889476],[0.032241027802229,-0.10288736969233,0.046817574650049],[-0.040233850479126,0.075765684247017,-0.01361364684999]],[[-0.03414361923933,0.045227341353893,-0.007591578643769],[-0.025322891771793,-0.0034906000364572,-0.073749184608459],[-0.0075185024179518,0.11465544253588,0.0062835146673024]],[[0.04034223780036,-0.20825333893299,0.017378294840455],[-0.063104547560215,-0.048473760485649,0.076004721224308],[0.053280152380466,0.012370740994811,0.0055508366785944]],[[-0.13560707867146,0.061389964073896,-0.027571080252528],[-0.10819242149591,0.009619883261621,-0.012641120702028],[-0.026833726093173,0.15269519388676,-0.020565731450915]],[[0.0034010449890047,0.10669858753681,0.025509737432003],[0.047597642987967,-0.05495173111558,-0.092604756355286],[-0.039320003241301,-0.058780919760466,-0.0072867115959525]],[[-0.060534726828337,0.038184233009815,-0.13826593756676],[0.0072903954423964,-0.046837508678436,0.030357973650098],[-0.070094056427479,-0.12176144123077,0.00012836902169511]],[[-0.10250677168369,-0.027076464146376,0.057017557322979],[-0.16079452633858,0.049752496182919,0.10856384038925],[0.072971627116203,-0.17821334302425,-0.062308359891176]],[[0.028999110683799,-0.093023210763931,-0.072635196149349],[0.089189387857914,-0.011527893133461,-0.093848817050457],[0.058880686759949,-0.040918476879597,-0.10527918487787]],[[0.023776201531291,-0.027182321995497,-0.05900377035141],[0.048219785094261,-0.026409316807985,0.083143807947636],[-0.017634466290474,-0.009115626104176,-0.023681186139584]],[[-0.10064547508955,0.076127141714096,-0.11124853789806],[-0.076074741780758,0.0021846350282431,0.10117790102959],[-0.20344790816307,-0.13364967703819,0.07790070772171]],[[-0.055987026542425,-0.011405322700739,-0.0079175140708685],[0.053498473018408,-0.02838247269392,-0.026665072888136],[0.012429394759238,-0.069704346358776,0.044696275144815]],[[-0.091698132455349,-0.044700283557177,0.11793725192547],[-0.19946739077568,-0.04105718433857,-0.0532516092062],[-0.062972120940685,0.12064664810896,-0.019724939018488]],[[0.026007112115622,-0.090737015008926,0.032318007200956],[0.12050396949053,0.019541608169675,0.022583559155464],[0.10785791277885,0.08445330709219,0.063450790941715]],[[0.030588394030929,-0.017472079023719,-0.049395147711039],[0.012023907154799,-0.11351248621941,0.12915363907814],[-0.055490724742413,0.043656669557095,-0.068888254463673]],[[-0.23076766729355,0.016550770029426,-0.035256676375866],[-0.068100415170193,0.0012663743691519,0.051232919096947],[-0.11622484028339,0.085817828774452,0.063189700245857]],[[0.03586507588625,0.018523022532463,-0.057216107845306],[0.074774481356144,-0.025396347045898,-0.089178487658501],[-0.078953862190247,0.054713647812605,0.074419371783733]],[[0.089608952403069,-0.10049910843372,0.027880948036909],[-0.0051066824235022,0.037653096020222,0.072841450572014],[-0.11777159571648,-0.045310821384192,0.041797157377005]],[[-0.040779918432236,-0.026535749435425,-0.034395918250084],[-0.11025681346655,-0.076738297939301,-0.026388650760055],[-0.055624172091484,0.071934893727303,0.021752491593361]],[[0.0013892455026507,-0.031615328043699,-0.055876653641462],[-0.047168545424938,-0.051595069468021,0.040926400572062],[0.060753144323826,-0.17652514576912,-0.01051240041852]],[[0.03829700499773,0.075478963553905,-0.062822252511978],[-0.030733399093151,-0.021035553887486,0.13114774227142],[-0.029598161578178,0.13371284306049,-0.030138881877065]],[[0.097814723849297,0.021239863708615,-0.11612713336945],[0.069591760635376,0.027251973748207,0.027058621868491],[-0.014094321988523,-0.048870626837015,0.019327022135258]],[[0.0013169555459172,0.025725936517119,-0.018877394497395],[-0.071119666099548,-0.04322612658143,-0.027940327301621],[-0.043827451765537,-0.12107519805431,-0.095292642712593]],[[0.13335104286671,-0.012169979512691,0.078799784183502],[0.0055570495314896,-0.1112060919404,-0.039714094251394],[-0.045700240880251,-0.034167401492596,0.090441673994064]],[[0.062770530581474,-0.073998689651489,0.040145564824343],[0.12129206955433,-0.029199980199337,-0.026018286123872],[0.18466752767563,0.088007211685181,-0.08245550096035]],[[0.0099000297486782,-0.11773397028446,-0.082458861172199],[0.051997449249029,-0.10825572162867,-0.048506341874599],[-0.037763956934214,-0.039324168115854,-0.044121604412794]],[[-0.13585022091866,0.17109853029251,0.054310724139214],[-0.035622630268335,-0.080217406153679,0.019790366292],[0.0025148070417345,-0.0018648555269465,0.12731796503067]],[[0.0024610329419374,-0.026037713512778,-0.012826316058636],[0.0042485129088163,-0.045364730060101,-0.11020577698946],[0.071703597903252,0.069079995155334,0.088804483413696]],[[-0.013486218638718,-0.11335196346045,0.081085629761219],[-0.12592242658138,-0.10956181585789,-0.03823572024703],[0.032868873327971,0.11288432776928,0.14048671722412]],[[-0.15905612707138,0.001417315332219,-0.0026803591754287],[0.024997206404805,-0.13741287589073,-0.090581402182579],[-0.081254564225674,-0.14069928228855,-0.042592421174049]],[[-0.086939580738544,-0.028940578922629,-0.056965671479702],[0.050367459654808,0.10622316598892,0.058426167815924],[0.079122334718704,0.093519859015942,0.027862790971994]],[[0.13571187853813,-0.014215195551515,0.222845941782],[-0.10904780030251,-0.12061829119921,0.012210224755108],[-0.11433500051498,-0.031346842646599,-0.23018215596676]]],[[[0.0024706865660846,0.047016922384501,0.11079613864422],[-0.086252428591251,0.0080300243571401,0.062136188149452],[-0.083066061139107,-0.020073119550943,-0.068169586360455]],[[-0.036963805556297,0.10250183939934,0.076475337147713],[0.060580499470234,-0.00048890413017944,-0.087674967944622],[-0.060108534991741,-0.021761955693364,0.11508539319038]],[[0.08226627856493,0.03401991724968,0.0025542362127453],[0.059151038527489,-0.1238457262516,-0.030659718438983],[0.0039367182180285,-0.011508355848491,-0.035757455974817]],[[0.04015913233161,-0.055111803114414,-0.057572145015001],[0.012606328353286,0.057003978639841,-0.036975994706154],[0.010256750509143,-0.13629725575447,-0.13005085289478]],[[0.051192387938499,-0.017781255766749,-0.093735113739967],[0.002435733564198,-0.07170046120882,-0.028841134160757],[0.012405558489263,-0.029365256428719,-0.14922860264778]],[[-0.052872475236654,-0.024608768522739,-0.063422285020351],[-0.059378422796726,0.0052512935362756,0.013153749518096],[0.017204951494932,0.067967087030411,0.0068093137815595]],[[0.078389883041382,0.18802005052567,0.038802769035101],[-0.034906920045614,-0.064191371202469,0.039665717631578],[-0.0046168994158506,0.024374900385737,-0.014774735085666]],[[-0.042118400335312,-0.019737822934985,0.0057436805218458],[-0.0019875762518495,0.012641469016671,0.0050637600943446],[-0.025579569861293,-0.076978199183941,0.036024834960699]],[[-0.057947818189859,-0.090319134294987,-0.061344735324383],[-0.080661863088608,0.030810384079814,0.025680888444185],[0.083997130393982,0.089854024350643,0.039347533136606]],[[-0.072232104837894,-0.10302161425352,0.011019228026271],[-0.13850416243076,-0.015336226671934,-0.039773017168045],[-0.050660442560911,0.00025760041899048,-0.12570407986641]],[[0.01482626516372,0.14769406616688,-0.028380667790771],[0.061390034854412,-0.04589269310236,0.014748983085155],[0.046706810593605,0.026240039616823,0.066690199077129]],[[0.021139271557331,0.06842677295208,-0.11544039100409],[-0.040525510907173,-0.24571837484837,-0.023107167333364],[-0.12783633172512,0.0096097560599446,0.041119735687971]],[[-0.15260449051857,0.068551160395145,0.045917227864265],[-0.068613864481449,0.059305548667908,0.01113195810467],[-0.044633723795414,-0.095059506595135,-0.057199753820896]],[[-0.029069676995277,0.057954512536526,-0.081729911267757],[0.035203315317631,0.027746967971325,0.044348001480103],[-0.035600636154413,0.022288467735052,-0.007773871999234]],[[-0.11446867883205,-0.17858208715916,0.020153038203716],[-0.016518015414476,0.0039553283713758,0.069352567195892],[0.071026913821697,-0.0099931741133332,-0.037647154182196]],[[0.043672233819962,-0.073876015841961,-0.014639491215348],[-0.071244679391384,0.050342012196779,-0.071007817983627],[-0.10779076814651,-0.021870758384466,-0.055580891668797]],[[-0.10918940603733,0.0050736679695547,-0.035276640206575],[-0.10661692172289,0.099732160568237,-0.014334279112518],[0.08534349501133,0.059589151293039,0.0043128374963999]],[[-0.0079856002703309,-0.067434728145599,-0.0042056310921907],[-0.077941693365574,-0.014557375572622,0.06944789737463],[-0.082418940961361,-0.074227027595043,0.047250401228666]],[[-0.0069957040250301,0.098337016999722,0.075561679899693],[-0.06061988696456,-0.022713381797075,0.063729375600815],[-0.22344496846199,-0.014374132268131,0.013921813108027]],[[-0.05178913846612,-0.044755008071661,0.032827254384756],[-0.067777991294861,0.041943304240704,-0.046903684735298],[-0.063234113156796,0.010391077026725,-0.069934524595737]],[[-0.038207162171602,0.13155670464039,-0.086192727088928],[-0.083127729594707,-0.016491433605552,-0.042254988104105],[-0.031381953507662,0.071772888302803,0.049105770885944]],[[-0.038863819092512,0.014887749217451,0.073083326220512],[-0.078339219093323,-0.13989919424057,-0.05350087583065],[-0.065020740032196,0.13406209647655,0.12286432087421]],[[-0.048981461673975,-0.076863251626492,0.023712435737252],[0.029993088915944,-0.055486131459475,-0.019500298425555],[-0.018805950880051,0.022310884669423,-0.088428735733032]],[[-0.11292807757854,0.033636134117842,-0.02681745775044],[0.0077822161838412,0.045669306069613,0.020052343606949],[0.11216435581446,-0.006370332557708,0.043877314776182]],[[-0.040905311703682,-0.10086908191442,-0.038341209292412],[-0.053400233387947,0.052947398275137,0.011682394891977],[-0.013969303108752,-0.077485643327236,-0.09310170263052]],[[-0.071279443800449,-0.056760296225548,0.027811322361231],[0.010055443271995,-0.0073129483498633,0.01145116891712],[-0.13945360481739,-0.016207542270422,0.060175228863955]],[[-0.020079219713807,0.011580245569348,-0.13934408128262],[0.10961902141571,-0.0052506537176669,-0.11832981556654],[-0.016267223283648,-0.15908814966679,0.12694758176804]],[[0.17198075354099,0.05323139205575,-0.11946474760771],[-0.081756442785263,-0.058454822748899,-0.13761936128139],[0.021889058873057,-0.012139317579567,0.088921941816807]],[[0.018736252561212,0.018290434032679,-0.069455817341805],[0.080544255673885,0.039631113409996,-0.060006566345692],[0.048527214676142,0.04464328289032,0.02503645978868]],[[0.058509461581707,-0.0069494200870395,0.099042750895023],[-0.10525551438332,-0.06292599439621,-0.024820754304528],[-0.064025841653347,0.050003040581942,-0.077707372605801]],[[-0.12127956748009,0.10924077033997,-0.046558894217014],[0.0079504773020744,-0.031430561095476,-0.019965209066868],[0.0067262332886457,0.031759563833475,0.068520665168762]],[[0.014905906282365,-0.026175145059824,0.014876144938171],[-0.022492060437799,0.011016122065485,-0.12203643471003],[-0.029387075453997,0.04664645716548,0.049211971461773]],[[-0.017492063343525,0.022295296192169,-0.031545773148537],[-0.10163896530867,-0.03523825109005,-0.028988176956773],[-0.023353789001703,-0.016196655109525,-0.0044278241693974]],[[-0.092585571110249,-0.06250212341547,0.030010893940926],[0.050511300563812,0.0023812919389457,-0.029025014489889],[-0.0071480399928987,0.057555895298719,0.02787190489471]],[[0.039532221853733,0.085689201951027,0.084954619407654],[0.056552350521088,-0.11475414782763,0.048665326088667],[-0.085592500865459,0.0068734381347895,-0.028109099715948]],[[-0.0046459836885333,-0.071092806756496,0.025450157001615],[-0.072725653648376,0.018654970452189,0.020969562232494],[0.04110299795866,-0.017810167744756,-0.093416623771191]],[[0.12740372121334,-0.088373638689518,-0.12110579758883],[-0.077851362526417,-0.13843728601933,0.0010294783860445],[-0.1798984259367,-0.036343343555927,0.16907924413681]],[[-0.0031041593756527,-0.0072510531172156,0.025997975841165],[0.031787302345037,-0.023565521463752,-0.04529457911849],[0.028295785188675,-0.084103107452393,0.060000952333212]],[[-0.03469206020236,0.01345912925899,-0.0056381234899163],[-0.0090007986873388,0.062596410512924,-0.039977371692657],[-0.062179278582335,0.00343031832017,0.057509440928698]],[[0.079590581357479,-0.0091249058023095,-0.10025706142187],[0.021987169981003,-0.0049437624402344,-0.095394536852837],[-0.22284889221191,-0.037729889154434,0.11268176883459]],[[-0.098632365465164,-0.033828221261501,-0.10470193624496],[-0.16808544099331,-0.046209048479795,-0.040467854589224],[0.016914267092943,-0.049692887812853,-0.09642118960619]],[[0.0057893292978406,-0.019175577908754,0.038161966949701],[0.087034665048122,-0.06117058172822,-0.061577223241329],[0.037080958485603,-0.090552404522896,-0.055013444274664]],[[-0.05537611618638,0.063499838113785,-0.060808125883341],[0.15384203195572,-0.077914118766785,-0.027927175164223],[-0.052473973482847,-0.0098989866673946,-0.067128658294678]],[[-0.024865554645658,0.065470710396767,0.0048800115473568],[0.053242050111294,0.049050115048885,-0.014602126553655],[-0.030018316581845,0.032194245606661,-0.049513220787048]],[[-0.021777912974358,-0.24458822607994,-0.045507811009884],[-0.01411359757185,0.0081975180655718,0.0043909940868616],[-0.0635786652565,-0.086577713489532,-0.010778261348605]],[[0.017968287691474,0.041893795132637,-0.10272155702114],[-0.045324105769396,-0.030513092875481,-0.078225553035736],[0.035185620188713,0.13026915490627,0.029475083574653]],[[0.022610416635871,-0.11114975064993,-0.21931934356689],[-0.19816887378693,0.0071012126281857,0.14060254395008],[0.060874555259943,0.008240008726716,0.027267575263977]],[[-0.025600582361221,-0.15530596673489,-0.033271137624979],[0.10356923192739,-0.027903852984309,-0.046678893268108],[0.0099485516548157,-0.03315806388855,0.084449172019958]],[[-0.086251050233841,0.028565246611834,-0.014821705408394],[-0.054935827851295,0.036320447921753,0.11263524740934],[-0.014085036702454,-0.14226870238781,0.21170891821384]],[[0.11004627496004,0.051187459379435,0.068228080868721],[0.018678762018681,0.012976297177374,-0.048770558089018],[-0.022862304002047,-0.17196324467659,-0.042882900685072]],[[0.06561915576458,0.019317522644997,-0.054642755538225],[0.0097313821315765,-0.028870889917016,-0.040641870349646],[-0.024191407486796,0.0074583911336958,-0.021128315478563]],[[-0.057368244975805,-0.061345241963863,-0.018315725028515],[-0.058683775365353,-0.045902468264103,0.047004740685225],[-0.091135248541832,0.025498948991299,0.10475634783506]],[[0.084148287773132,-0.046404905617237,0.14806488156319],[-0.068315781652927,0.094842188060284,-0.0033593585249037],[-0.0013392306864262,0.02255374006927,-0.039243903011084]],[[-0.00241340091452,-0.053705889731646,0.13076676428318],[-0.11163732409477,0.050051882863045,0.04017149284482],[-0.046426124870777,-0.037491377443075,0.052010793238878]],[[-0.034587550908327,-0.11029981076717,-0.1216993406415],[-0.053655635565519,-0.099024206399918,0.081702277064323],[-0.085880063474178,-0.025060491636395,0.069919601082802]],[[-0.059670578688383,-0.030583849176764,-0.004755494184792],[-0.0050229700282216,0.012832561507821,-0.10425323992968],[0.081436417996883,0.10607217997313,0.096048392355442]],[[0.039880983531475,-0.030608644708991,-0.13469398021698],[0.056064054369926,-0.13605608046055,-0.089050509035587],[-0.027534542605281,-0.012182664126158,-0.092046931385994]],[[-0.066888697445393,-0.0042239255271852,0.012951660901308],[-0.029320714995265,0.021415704861283,-0.060652129352093],[-0.058534946292639,-0.047897700220346,-0.20588879287243]],[[-0.0070286295376718,-0.076232492923737,-0.0058855409733951],[-0.023072686046362,-0.0098326643928885,0.053132567554712],[-0.046987425535917,0.016637796536088,0.060469821095467]],[[-0.052416786551476,0.051458410918713,0.022322645410895],[0.058453105390072,0.049420475959778,0.031081350520253],[-0.053479496389627,-0.010590438731015,0.001040683244355]],[[-0.049135684967041,-0.0081553105264902,-0.024490237236023],[0.039839785546064,-0.057981166988611,-0.016749365255237],[0.043335162103176,0.035003326833248,0.019562933593988]],[[0.048772849142551,0.13583633303642,-0.10877830535173],[0.023898711428046,-0.014996329322457,0.025397565215826],[0.078577168285847,0.0088910302147269,0.046488601714373]],[[0.1183859705925,-0.1725400686264,-0.082185484468937],[-0.029866060242057,-0.04530156031251,-0.074027054011822],[-0.13782835006714,-0.02772849984467,0.013179013505578]],[[-0.094717003405094,-0.073985271155834,0.045204166322947],[0.014775967225432,0.087279841303825,0.16200979053974],[0.035353537648916,0.040796265006065,0.030948547646403]]],[[[-0.0018668044358492,0.0031168905552477,0.028932416811585],[0.036315158009529,0.0052826949395239,-0.033010266721249],[-0.046303536742926,0.045175954699516,-0.059353221207857]],[[0.070563226938248,0.16756796836853,0.085285604000092],[-0.054487586021423,0.002952947281301,-0.086301758885384],[-0.021660562604666,-0.1036414578557,-0.046367611736059]],[[0.12104330211878,0.063214480876923,0.056599926203489],[-0.042204044759274,-0.064412176609039,-0.0059476466849446],[0.042831126600504,0.00073744356632233,0.056500546634197]],[[-0.049604076892138,-0.043637864291668,-0.090543955564499],[-0.018509812653065,-0.0012329438468441,0.009608305990696],[0.058042027056217,0.078347697854042,0.027026358991861]],[[0.086499579250813,-0.043701753020287,0.10994229465723],[0.006959933321923,-0.11782815307379,0.015311360359192],[0.032724492251873,0.065155662596226,0.084126085042953]],[[-0.11466269940138,0.032655742019415,-0.0061298250220716],[0.1863306760788,-0.13455457985401,-0.017929278314114],[-0.10978463292122,0.12246505171061,0.014739813283086]],[[0.071752972900867,0.045771270990372,0.035813897848129],[-0.15626813471317,-0.11151761561632,0.042158581316471],[-0.098708525300026,-0.027010394260287,0.031690321862698]],[[-0.021307766437531,-0.057891983538866,0.0056664380244911],[0.065304562449455,-0.10128764808178,-0.025324923917651],[0.015793837606907,0.0067390911281109,0.089982964098454]],[[0.0052868267521262,-0.053409822285175,-0.09887833148241],[-0.061358466744423,-0.019734367728233,0.03407821431756],[0.10052097588778,0.043301146477461,0.043821260333061]],[[-0.012846763245761,-0.15019911527634,0.029100861400366],[0.010079216212034,0.052352897822857,-0.16293585300446],[-0.037932828068733,0.033123251050711,0.028298513963819]],[[-0.072303533554077,0.00048433686606586,-0.045321673154831],[0.13499677181244,-0.013804441317916,0.14265540242195],[-0.071676298975945,0.11951775103807,-0.156125664711]],[[-0.1096863374114,-0.051767230033875,-0.019123181700706],[-0.0039810570888221,-0.021741170436144,0.036068033427],[-0.014722757041454,-0.0029900462832302,0.0038536405190825]],[[-0.060891147702932,0.032508820295334,0.039838351309299],[-0.11196569353342,0.0059204734861851,-0.044046364724636],[-0.0050124120898545,0.020864866673946,-0.022324154153466]],[[0.080496862530708,-0.024291053414345,0.030635349452496],[-0.20464727282524,0.1298024058342,0.13647702336311],[0.017284635454416,-0.01537456177175,0.043393030762672]],[[0.018510853871703,0.17978464066982,-0.0044308132492006],[-0.063979469239712,-0.084217712283134,-0.035863924771547],[-0.058845799416304,-0.13553683459759,-0.0666833370924]],[[-0.10742878168821,-0.040717009454966,0.039414569735527],[0.052440591156483,-0.12350016832352,0.056344304233789],[-0.017198048532009,0.075241200625896,-0.13366609811783]],[[-0.14636786282063,0.071410417556763,0.001573329907842],[0.0064558614976704,0.032327704131603,0.053965657949448],[-0.040887165814638,-0.018733499571681,0.0025984467938542]],[[0.015655998140574,0.0084912925958633,-0.015401758253574],[-0.074040122330189,-0.032202407717705,-0.024565499275923],[-0.053837046027184,-0.14353980123997,-0.01750847324729]],[[-0.012055017985404,-0.0088041201233864,0.10438915342093],[-0.064298592507839,0.0098632844164968,-0.17538903653622],[-0.037280559539795,0.0068638487718999,0.0031347959302366]],[[0.072304546833038,-0.082872852683067,0.11238285154104],[0.035342425107956,0.00048126679030247,-0.0052760215476155],[-0.085531122982502,0.059630136936903,-0.027990473434329]],[[-0.0096909590065479,-0.024461811408401,-0.125751927495],[-0.10371721535921,0.034433547407389,-0.0034871939569712],[-0.047346748411655,-0.0073565128259361,0.014673193916678]],[[-0.16291043162346,-0.063383065164089,0.15155313909054],[0.0075897206552327,0.024848585948348,0.066643193364143],[0.016304632648826,0.026515960693359,-0.032681241631508]],[[-0.0025655005592853,0.028213581070304,0.019153343513608],[0.034230548888445,-0.07540462911129,0.036448262631893],[-0.021099533885717,-0.018661251291633,0.061831384897232]],[[-0.0084719527512789,-0.021239381283522,-0.018813718110323],[-0.044719196856022,0.011590495705605,-0.028230497613549],[-0.074076317250729,-0.067278407514095,-0.11514066159725]],[[-0.013257398270071,-0.10380491614342,-0.069587543606758],[0.091954819858074,-0.017829321324825,0.04012605920434],[-0.092334136366844,0.11301419138908,0.08340522646904]],[[-0.032342936843634,0.060517437756062,0.049989618360996],[-0.086801238358021,0.10662013292313,-0.033181123435497],[-0.074069187045097,-0.0088972300291061,0.18894129991531]],[[-0.089042872190475,-0.15884084999561,-0.20777566730976],[0.011481763795018,-0.017208697274327,-0.20304103195667],[0.13434234261513,0.070803016424179,0.13785074651241]],[[-0.099925741553307,-0.012379596009851,-0.10667400062084],[-0.016644323244691,0.06242997199297,0.016676967963576],[-0.055414546281099,0.057848077267408,0.084059253334999]],[[-0.05175918340683,-0.021381035447121,0.04367209225893],[-0.023939374834299,-0.14584799110889,0.06192734465003],[-0.0044235796667635,-0.10056386142969,0.091011635959148]],[[0.041489616036415,-0.053637862205505,-0.085337370634079],[0.025030983611941,0.098803952336311,-0.042831432074308],[0.091366536915302,0.025357898324728,-0.0091658160090446]],[[0.0024990064557642,-0.030742628499866,0.020635027438402],[0.01210565213114,-0.11657177656889,0.015006604604423],[0.18723480403423,0.0056690820492804,-0.029070794582367]],[[0.04913317784667,-0.011888818815351,0.028258331120014],[-0.083703972399235,-0.022543409839272,-0.089175708591938],[0.017124218866229,0.035941291600466,-0.047917697578669]],[[-0.00033594033448026,0.11340627074242,-0.024950491264462],[0.0064302557148039,-0.028971087187529,0.032492775470018],[-0.077254578471184,-0.022409163415432,0.0016961804358289]],[[-0.11753825098276,-0.0044947611168027,0.015759689733386],[-0.035791464149952,0.052698887884617,0.13480322062969],[-0.0039374940097332,-0.042374704033136,0.015689574182034]],[[-0.020421806722879,0.02383347414434,0.2177364975214],[0.044812366366386,-0.17483912408352,-0.075708881020546],[0.075307302176952,-0.0099328607320786,-0.076281353831291]],[[-0.0082316091284156,-0.031725477427244,-0.065295442938805],[-0.1132620498538,-0.0671381726861,0.049074690788984],[-0.053043238818645,-0.10740745812654,-0.025097817182541]],[[0.023918958380818,-0.12422053515911,-0.15099547803402],[-0.13700243830681,0.12704238295555,-0.059977173805237],[0.15510629117489,0.076178662478924,-0.14561301469803]],[[0.11640507727861,0.1150566264987,-0.040137235075235],[-0.11387000232935,0.064395494759083,0.030605906620622],[-0.077382296323776,-0.083068497478962,-0.036103211343288]],[[-0.070609152317047,-0.024465775117278,-0.10384664684534],[0.0092193763703108,-0.10842767357826,-0.0068614985793829],[0.076847717165947,-0.086178869009018,-0.17378632724285]],[[0.098481833934784,-0.032008700072765,-0.018187010660768],[-0.10210866481066,0.069184020161629,0.089817486703396],[0.041517205536366,0.014041303656995,-0.015756901353598]],[[-0.13212813436985,-0.13136550784111,-0.01368239056319],[-0.014368453994393,-0.061716586351395,0.062991753220558],[-0.040106978267431,-0.08046817779541,-0.0028350458014756]],[[0.011854806914926,-0.20398484170437,0.010809338651597],[0.072181396186352,0.029792632907629,0.0048324652016163],[-0.028958113864064,-0.12414584308863,0.032471776008606]],[[-0.021820046007633,-0.11046262085438,-0.059862449765205],[0.013990130275488,0.042629536241293,-0.0070168981328607],[0.020636349916458,-0.006659175734967,-0.032748203724623]],[[-0.0040675280615687,0.05044599622488,-0.041623756289482],[-0.037338640540838,0.097561120986938,0.04184265434742],[0.034506134688854,-0.038681529462337,-0.011184063740075]],[[0.042401328682899,-0.00044334135600366,-0.063078612089157],[0.014448301866651,-0.13348127901554,-0.050418790429831],[0.068286679685116,-0.12294282019138,0.052539370954037]],[[0.0015140591422096,0.036154963076115,0.037130888551474],[-0.081911273300648,0.19044554233551,-0.045461870729923],[-0.15853771567345,-0.096325092017651,-0.057409480214119]],[[-0.042834050953388,0.13263209164143,0.060026336461306],[0.036113142967224,-0.070044122636318,-0.15312872827053],[-0.043506007641554,-0.13902793824673,-0.029644872993231]],[[0.023635568097234,-0.0012517384020612,-0.045528009533882],[-0.056730486452579,0.0057986117899418,0.020690329372883],[-0.054905399680138,-0.019731055945158,0.020342323929071]],[[0.072538062930107,0.027248699218035,-0.074162468314171],[0.052525360137224,-0.04419981315732,0.037120405584574],[0.039141144603491,0.016393590718508,-0.066084526479244]],[[-0.014508893713355,0.011583718471229,0.082799360156059],[0.017038218677044,0.063939027488232,-0.018553810194135],[-0.093688115477562,0.039227545261383,-0.10513610392809]],[[-0.032023277133703,0.094130776822567,-0.15457606315613],[-0.001335195498541,0.10687756538391,0.070203222334385],[0.0066695031709969,-0.047521274536848,0.0092813353985548]],[[-0.095548816025257,-0.051510132849216,-0.17454724013805],[0.019144544377923,0.011953549459577,0.015145372599363],[0.050289116799831,-0.046977683901787,-0.11674492061138]],[[0.026146098971367,-0.083087377250195,0.14309592545033],[0.04795640707016,-0.020857181400061,0.068074055016041],[0.042612817138433,-0.12464534491301,0.18414248526096]],[[-0.02306298352778,0.14226408302784,-0.044352907687426],[-0.066633813083172,0.022675836458802,0.070789322257042],[0.037342708557844,0.023414900526404,-0.0017702165059745]],[[-0.11270208656788,-0.097553446888924,-0.11780937761068],[-0.032650768756866,0.050879310816526,-0.13825093209743],[-0.077227376401424,-0.088856354355812,-0.025431105867028]],[[0.079034626483917,0.055156502872705,-0.028390223160386],[0.17367772758007,-0.10305161774158,0.15429544448853],[-0.013611149974167,-0.12767501175404,-0.010808457620442]],[[0.078767709434032,-0.093147620558739,-0.049199182540178],[0.12200547754765,0.062085509300232,-0.051282051950693],[0.086653828620911,0.033682249486446,0.13681100308895]],[[0.10200320929289,0.030763991177082,-0.011450166814029],[-0.077358864247799,0.056131988763809,-0.062018781900406],[-0.19298106431961,0.034045334905386,-0.067480452358723]],[[0.047182019799948,-0.20415641367435,0.11202900111675],[-0.011743125505745,0.098960921168327,-0.0081537393853068],[-0.026682548224926,-0.12482315301895,0.1159837692976]],[[-0.032096996903419,-0.016829345375299,0.054037127643824],[-0.098799154162407,-0.029092784970999,-0.0029790699481964],[-0.21767665445805,-0.017388764768839,0.027791127562523]],[[-0.057823743671179,0.047466143965721,-0.073871567845345],[0.015492347069085,0.031325243413448,0.072446346282959],[-0.12706100940704,0.099446624517441,0.04469034075737]],[[-0.037512540817261,-0.020277356728911,-0.12480714917183],[-0.025576485320926,0.028910648077726,0.092979274690151],[0.020882863551378,0.060177933424711,-0.055198203772306]],[[0.0061232140287757,0.003729798598215,0.13465636968613],[0.010953540913761,-0.10446441918612,0.0068952343426645],[0.022082773968577,-0.097766794264317,0.046028289943933]],[[0.048548843711615,0.10253457725048,0.011626461520791],[-0.047503098845482,0.04408460855484,-0.099692903459072],[-0.034910034388304,-0.15126268565655,0.08350533246994]]],[[[-0.00061786687001586,0.058422453701496,0.027708010748029],[-0.014164607971907,-0.087110936641693,0.0098807793110609],[0.047859195619822,-0.0001432693679817,-0.051335446536541]],[[0.040393993258476,0.14253313839436,-0.038447540253401],[0.062465101480484,-0.049655605107546,0.082553625106812],[0.076552219688892,0.066902607679367,-0.02340143173933]],[[0.026352230459452,0.01335977576673,0.17416819930077],[-0.01541433762759,0.040907114744186,0.1574736982584],[0.081205315887928,0.098886869847775,-0.014058045111597]],[[-0.048473618924618,0.037781283259392,0.012991280294955],[-0.033195558935404,-0.043550074100494,0.054473388940096],[0.08337128162384,-0.091735042631626,0.059455730021]],[[0.19271196424961,-0.028732374310493,-0.004152437672019],[0.0079777352511883,-0.029675897210836,-0.1175859645009],[0.075894691050053,0.039849136024714,0.088742457330227]],[[0.16193190217018,-0.012140336446464,-0.077840611338615],[-0.011345784179866,-0.090808264911175,0.10530718415976],[0.076886184513569,-0.036002490669489,0.00092837936244905]],[[-0.05077275633812,-0.052246693521738,0.0046137892641127],[0.053651459515095,-0.13713222742081,-0.030011897906661],[-0.025299869477749,0.030743733048439,-0.028807103633881]],[[-0.054156981408596,0.060955222696066,-0.047718193382025],[-0.041568197309971,-0.04646422713995,0.048015836626291],[0.12714613974094,0.090313591063023,0.015557953156531]],[[0.10117907077074,0.015246657654643,0.019153280183673],[-0.081097796559334,-0.088864631950855,-0.09346204996109],[-0.0027014869265258,0.064761973917484,0.059671346098185]],[[0.0067837722599506,0.024664547294378,0.045967578887939],[0.11289040744305,0.018561383709311,-0.046867854893208],[-0.043095119297504,-0.098433330655098,-0.0031262619886547]],[[0.091590575873852,-0.023839501664042,-0.074871517717838],[-0.0475351549685,0.014782723970711,0.0094270743429661],[0.047379158437252,-0.074700817465782,0.0051917615346611]],[[-0.16753126680851,-0.06615999341011,-0.0043843523599207],[-0.11885087937117,-0.1048891171813,-0.031042296439409],[-0.1584664285183,-0.02228819206357,0.00066060840617865]],[[-0.036805361509323,0.034744318574667,0.088175147771835],[-0.20714473724365,-0.075523965060711,0.0062502948567271],[-0.1090599372983,-0.22940273582935,-0.028636692091823]],[[0.047606736421585,0.0084190452471375,0.12517289817333],[-0.027332227677107,0.017852604389191,0.0087585914880037],[0.030524387955666,0.16118621826172,0.12096878886223]],[[0.014535329304636,-0.070530615746975,-0.038969416171312],[0.013477905653417,0.044462896883488,0.030998293310404],[0.010234410874546,0.098615042865276,0.092260502278805]],[[0.016859652474523,0.072093650698662,-0.17948392033577],[-0.082483597099781,-0.0004237052926328,-0.0085266996175051],[0.012277253903449,0.026555508375168,0.0069691888056695]],[[-0.052825320512056,-0.16982614994049,-0.14636091887951],[0.051281332969666,-0.028917517513037,-0.13666139543056],[0.014389192685485,-0.0032040295191109,0.012745593674481]],[[-0.10304591059685,-0.025792866945267,-0.067576251924038],[0.081479370594025,0.018795102834702,0.077613264322281],[-0.069425716996193,0.065109878778458,0.012250632047653]],[[0.039197735488415,0.035365287214518,0.076272688806057],[-0.011666690930724,0.010517192073166,-0.021314220502973],[-0.12319508194923,-0.0082336226478219,0.018421353772283]],[[0.01480773370713,0.067319050431252,-0.0073962500318885],[-0.0012410648632795,0.0027084315661341,0.13221891224384],[0.11029095947742,-0.0066351979039609,0.1226454526186]],[[0.10710193216801,0.0159364156425,-0.04304451495409],[-0.080203920602798,-0.051843132823706,0.057922147214413],[0.016235208138824,0.059628404676914,-0.08291095495224]],[[-0.085453934967518,-0.093295402824879,0.05364117026329],[-0.11369195580482,-0.10585279762745,0.025007504969835],[0.016593050211668,0.12727122008801,0.04435246065259]],[[-0.0052501056343317,-0.030535072088242,-0.031937692314386],[-0.01737524010241,-0.075768455862999,-0.010888404212892],[0.16684946417809,-0.015205823816359,0.019310891628265]],[[0.090341150760651,-0.091010607779026,-0.026367837563157],[0.094954505562782,-0.090360924601555,0.10900338739157],[-0.030207373201847,-0.10932289808989,-0.0010722251608968]],[[0.088582023978233,-0.098734594881535,0.11544390767813],[0.059560306370258,0.035985566675663,0.026421489194036],[0.064318783581257,-0.081212103366852,-0.17858794331551]],[[-0.061941523104906,0.012432022951543,-0.12781843543053],[-0.077952571213245,-0.12677854299545,-0.037517089396715],[0.015284246765077,0.083016440272331,0.20298209786415]],[[0.038739509880543,-0.088987201452255,0.15437297523022],[-0.043311707675457,-0.085975781083107,0.070179007947445],[-0.037929367274046,-0.11237339675426,-0.0089039532467723]],[[-0.17778012156487,-0.010584223084152,-0.047631502151489],[-0.034055508673191,0.079323098063469,-0.10906967520714],[0.12287206202745,0.12692801654339,-0.12177605926991]],[[0.029704075306654,-0.024402240291238,0.00102582143154],[-0.015289878472686,-0.030913900583982,0.047587987035513],[0.039108872413635,0.051741320639849,0.096571654081345]],[[-0.096187964081764,0.075249038636684,0.097251161932945],[-0.016138611361384,0.15435995161533,-0.13298173248768],[-0.18766950070858,-0.0981834679842,-0.075831823050976]],[[-0.14962436258793,0.059062018990517,0.086959600448608],[-0.081508129835129,-0.061497263610363,-0.035894516855478],[-0.064255617558956,0.015671404078603,-0.020585920661688]],[[0.098352119326591,0.098006650805473,-0.063794903457165],[-0.046662952750921,0.14504800736904,-0.002284279325977],[-0.0169867426157,-0.097246073186398,-0.0025074270088226]],[[0.0031327065080404,-0.063475050032139,0.085296764969826],[-0.076914370059967,0.029143875464797,0.038345780223608],[-0.16112406551838,0.031993474811316,0.077034622430801]],[[-0.0087414970621467,-0.052632361650467,0.0611382573843],[-0.090097032487392,-0.0037528115790337,0.01002261787653],[-0.033099874854088,-0.025106912478805,-0.039708040654659]],[[0.11633317917585,0.013151346705854,-0.033985812216997],[0.063554830849171,0.039099551737309,0.013747648335993],[-0.052042037248611,-0.08863977342844,0.1128271818161]],[[0.031916253268719,0.13360223174095,0.10447364300489],[0.0093849366530776,0.024000823497772,-0.061783287674189],[-0.073030218482018,-0.28190085291862,-0.017822412773967]],[[0.0059730298817158,-0.037131670862436,0.034390069544315],[-0.021289108321071,0.083448380231857,0.022780610248446],[-0.05899953097105,-0.079238586127758,0.0023789533879608]],[[-0.07878053933382,0.089185290038586,0.0095747970044613],[0.064376190304756,0.082486018538475,0.033359538763762],[0.087932206690311,-0.07943906635046,-0.069410733878613]],[[-0.084592506289482,0.043209578841925,0.044120874255896],[-0.12513493001461,0.059152167290449,-0.02594374679029],[-0.016692828387022,0.037293888628483,-0.038021076470613]],[[0.13584119081497,0.029121246188879,-0.030633971095085],[0.0024077596608549,0.058362789452076,-0.045547679066658],[-0.053815938532352,0.020198937505484,-0.15285976231098]],[[0.030366966500878,-0.056595128029585,-0.10047960281372],[-0.072436593472958,0.05691784247756,-0.15897119045258],[0.14958198368549,0.019422840327024,-0.068249426782131]],[[0.031680844724178,0.23773653805256,-0.093518853187561],[-0.014748770743608,0.011186807416379,0.077502734959126],[-0.13710367679596,-0.29273152351379,-0.015247428789735]],[[0.016796434298158,-0.1844736635685,-0.04752492159605],[-0.062703847885132,0.013736925087869,0.10742798447609],[-0.0061630918644369,-0.04340398684144,0.038802165538073]],[[-0.16896533966064,0.044907886534929,-0.011323744431138],[-0.10273757576942,0.096633523702621,0.032301764935255],[-0.0075807706452906,0.10098176449537,-0.021619038656354]],[[-0.015345698222518,-0.1345466375351,-0.023932430893183],[-0.021042931824923,-0.016229389235377,0.057189598679543],[0.062789015471935,0.087666623294353,0.076084144413471]],[[-0.12749755382538,-0.15492559969425,-0.041460581123829],[0.026306720450521,0.096322014927864,0.076202169060707],[0.10203264653683,0.070357173681259,0.16366082429886]],[[0.012682769447565,-0.16088651120663,0.05374139174819],[0.071464769542217,0.060137409716845,-0.027288815006614],[-0.005521496757865,-0.0010900269262493,0.010477925650775]],[[-0.10005662590265,-0.023434665054083,-0.030441649258137],[-0.013909834437072,0.13224650919437,-0.0043209395371377],[0.059033710509539,-0.11139784753323,0.018890863284469]],[[0.0083563737571239,0.028308521956205,-0.039623275399208],[-0.019341247156262,-0.028238037601113,-0.07736162096262],[-0.10558412224054,-0.05581470951438,0.040077716112137]],[[-0.066087380051613,-0.07106152176857,0.050942771136761],[-0.011155839078128,-0.042784325778484,-0.01179669983685],[0.072645798325539,0.047865279018879,0.032325223088264]],[[-0.067975059151649,-0.0076948814094067,0.013712879270315],[0.067713037133217,-0.024181744083762,-0.014299592003226],[0.021866220980883,-0.019764982163906,0.0010784912155941]],[[0.037833582609892,0.047365367412567,0.033835675567389],[-0.040648553520441,-0.0053685279563069,0.0045096222311258],[-0.027215041220188,0.046169839799404,0.048822309821844]],[[0.11536417901516,-0.0026063248515129,-0.050695955753326],[0.045876245945692,-0.010168109089136,-0.099997460842133],[0.045932617038488,0.033948820084333,-0.010564384050667]],[[-0.063171416521072,0.038856189697981,-0.022541988641024],[-0.05884838104248,0.12409948557615,-0.011188347823918],[-0.051185365766287,0.11690952628851,0.019387170672417]],[[-0.076584868133068,-0.10512560606003,-0.027970280498266],[-0.019887743517756,0.035393282771111,0.034264750778675],[-0.010608906857669,0.070437289774418,0.019733427092433]],[[0.042961351573467,0.088128700852394,-0.070996433496475],[0.11271921545267,0.0036341657396406,-0.056799728423357],[-0.045857947319746,-0.13645243644714,-0.086337454617023]],[[0.058694254606962,-0.039135783910751,-0.083635337650776],[-0.012802347540855,-0.08093923330307,-0.030501708388329],[0.012319504283369,-0.067873269319534,-0.096295736730099]],[[-0.006424967199564,-0.015201772563159,0.020412001758814],[-0.053567696362734,0.0052929068915546,-0.028552351519465],[-0.034710679203272,-0.099437989294529,-0.055629312992096]],[[-0.080163136124611,-0.045420777052641,0.023019270971417],[0.14861914515495,-0.0070980028249323,0.069650083780289],[0.053714632987976,-0.09665384888649,-0.016867313534021]],[[0.0053162658587098,-0.023694284260273,0.019145099446177],[-0.0041053490713239,-0.00015215888561215,-0.02245220541954],[-0.12248393148184,-0.066692978143692,-0.050559237599373]],[[-0.068898819386959,-0.02704656496644,-0.031054271385074],[-0.01784634962678,-0.0011962050339207,-0.10473731905222],[0.03192076459527,-0.073957085609436,-0.081407800316811]],[[-0.0036207777447999,0.050093844532967,-0.0026795594021678],[0.10629593580961,-0.098351016640663,-0.042907681316137],[0.0014740733895451,-0.0015066009946167,0.0025778806302696]],[[-0.2308357656002,-0.049377053976059,0.028573121875525],[-0.051346648484468,-0.029616478830576,-0.055590625852346],[-0.17541493475437,-0.089452646672726,-0.049035519361496]],[[0.016256060451269,-0.084813818335533,-0.078977212309837],[-0.068996958434582,0.065815918147564,0.055288165807724],[0.042377103120089,-0.064277097582817,-0.0033080345019698]]],[[[0.13983091711998,-0.021728832274675,-0.11182913184166],[0.14231576025486,0.00083703198470175,-0.030767234042287],[0.099585771560669,0.076031871140003,0.032351657748222]],[[0.05142904818058,0.080886080861092,-0.012898854911327],[0.06314929574728,-0.032323438674212,-0.033085267990828],[-0.020618950948119,0.011056908406317,-0.13443657755852]],[[-0.029130965471268,-0.086843132972717,-0.064643502235413],[-0.0010342004243284,-0.059196472167969,-0.014940252527595],[0.071103312075138,0.058998417109251,0.12038718909025]],[[0.055443316698074,-0.034360788762569,-0.057858895510435],[0.054364543408155,-0.20458976924419,-0.089601494371891],[0.13213959336281,-0.047916099429131,-0.040435016155243]],[[0.098103493452072,0.12058947235346,0.072780460119247],[0.021969860419631,0.034905903041363,-0.044871184974909],[-0.24651421606541,-0.13695554435253,-0.0817631483078]],[[0.010984551161528,-0.020235328003764,0.037190519273281],[0.091994643211365,0.081325590610504,0.086750902235508],[-0.048347290605307,0.051545511931181,0.13694778084755]],[[-0.035474538803101,-0.067977458238602,-0.044420704245567],[0.038205161690712,-0.066214017570019,-0.032540511339903],[0.085395447909832,0.060750685632229,-0.067816361784935]],[[0.087779842317104,0.083099745213985,0.10886546224356],[0.0018758396618068,-0.025661893188953,0.045803692191839],[0.059570752084255,-0.076504617929459,-0.05750772356987]],[[0.023119322955608,0.029648507013917,-0.024713523685932],[-0.022307906299829,-0.0018348601879552,0.0058548604138196],[0.083503879606724,-0.015073094516993,-0.10304237157106]],[[0.1524746119976,-0.070030182600021,-0.12007543444633],[0.048761039972305,-0.0010998068610206,-0.038621284067631],[0.088576383888721,-0.0049080774188042,0.076595038175583]],[[-0.012087976559997,-0.057168234139681,0.21281811594963],[0.032794918864965,0.051054615527391,0.15195921063423],[-0.062264837324619,-0.073342926800251,-0.11484427750111]],[[0.079708114266396,-0.051762584596872,-0.30487164855003],[0.081760242581367,-0.062488086521626,-0.32716277241707],[0.090013556182384,-0.11612615734339,-0.12114587426186]],[[-0.022810321301222,-0.054732516407967,-0.12929356098175],[0.059736676514149,-0.024337442591786,-0.14190937578678],[0.08068173378706,0.029824806377292,0.021579628810287]],[[-0.068076230585575,-0.07382383197546,-0.14508879184723],[-0.095322847366333,0.0010103350505233,-0.038936518132687],[-0.026530597358942,0.024870961904526,-0.12470851838589]],[[0.11143200844526,0.030232178047299,-0.20318177342415],[0.13595329225063,-0.064591012895107,-0.12291249632835],[0.055848482996225,-0.057165771722794,-0.13781352341175]],[[-0.023265333846211,-0.034342478960752,0.037106093019247],[-0.069764032959938,-0.056380666792393,0.11583897471428],[0.022896545007825,0.036327563226223,0.054073743522167]],[[-0.14662764966488,-0.059493791311979,0.047720238566399],[0.041950069367886,0.098400987684727,0.14357522130013],[0.081508450210094,0.1535781621933,0.10775500535965]],[[0.17590397596359,-0.1122250109911,-0.094551473855972],[0.043627694249153,-0.071593523025513,-0.23426613211632],[0.39928224682808,0.048488080501556,-0.016770545393229]],[[-0.16312548518181,0.10705340653658,0.093365214765072],[-0.15923801064491,0.066309235990047,0.23521746695042],[-0.1608119904995,0.039018381386995,0.10305887460709]],[[0.18875108659267,0.018882803618908,-0.0027311348821968],[0.060083046555519,0.099246248602867,0.099944360554218],[-0.083925634622574,0.022780690342188,-0.0059799952432513]],[[0.1152461245656,0.048054445534945,0.032910458743572],[0.084778361022472,-0.0050775068812072,0.049007020890713],[0.087457202374935,-0.056275602430105,0.031225293874741]],[[-0.028399156406522,-0.16131590306759,-0.33463236689568],[0.14674952626228,-0.050921991467476,-0.17184588313103],[0.26918292045593,0.1599440574646,-0.012993165291846]],[[-0.22208754718304,-0.080362617969513,-0.05191108211875],[0.01289205532521,-0.065904080867767,0.04661600291729],[-0.0045966012403369,-0.0027833350468427,0.077097117900848]],[[0.046197652816772,-0.027693402022123,-0.17412540316582],[-0.056705065071583,-0.081414833664894,-0.15668028593063],[0.041361480951309,-0.0074703930877149,-0.035697996616364]],[[0.10112735629082,0.14914259314537,-0.039707940071821],[0.090254083275795,0.04316233471036,-0.054264202713966],[-0.08184115588665,-0.017135815694928,-0.19953332841396]],[[-0.0023495543282479,0.063590452075005,0.035557869821787],[0.015764024108648,0.011851688846946,-0.033924791961908],[0.00036064372397959,0.084773756563663,-0.032331578433514]],[[0.21145887672901,0.15608316659927,0.04856201261282],[0.062401212751865,0.045965295284986,0.061495684087276],[-0.047644127160311,-0.047205146402121,-0.021994821727276]],[[0.0077650602906942,-0.083678662776947,-0.1367696672678],[0.066668897867203,0.077787473797798,0.027482064440846],[-0.065716192126274,0.074985563755035,0.041476462036371]],[[-0.059369694441557,-0.044413298368454,-0.051349461078644],[0.070876896381378,-0.021665101870894,-0.093426629900932],[-0.011048870161176,-0.15360081195831,-0.17929178476334]],[[0.23230780661106,-0.03659737855196,-0.11304964125156],[0.093797147274017,-0.051313418895006,-0.11395175755024],[0.015942204743624,-0.08664033561945,-0.11176250129938]],[[-0.023883797228336,-0.034694459289312,0.063019618391991],[0.017089759930968,-0.023278385400772,-0.0080124661326408],[-0.023593606427312,-0.20925988256931,0.040622346103191]],[[0.039541743695736,-0.044694736599922,-0.13098627328873],[0.11502946913242,0.00041374834836461,-0.1015495583415],[0.062645681202412,0.013494432903826,0.10794643312693]],[[-0.15291568636894,-0.079966656863689,0.086016178131104],[-0.062575630843639,-0.11862662434578,0.057602785527706],[-0.16168302297592,-0.033955827355385,0.059568669646978]],[[-0.071022748947144,-0.017286254093051,-0.24558179080486],[0.057250950485468,0.06115635111928,-0.04605807736516],[0.056658763438463,-0.0052398550324142,-0.0098780803382397]],[[-0.0035854040179402,-0.10247211903334,-0.1882535815239],[0.061335831880569,-0.067795090377331,-0.050800155848265],[0.064921610057354,0.034327771514654,-0.059932354837656]],[[0.012351114302874,-0.070285856723785,-0.16902689635754],[0.097569920122623,-0.021475475281477,-0.17773321270943],[0.021408494561911,-0.11116621643305,-0.12153994292021]],[[0.13032659888268,-0.05212202295661,-0.094867922365665],[0.075798541307449,-0.068996340036392,-0.060524959117174],[0.096428580582142,-0.037935018539429,0.02037057466805]],[[-0.16001424193382,-0.01178523991257,0.096045531332493],[-0.13582433760166,0.036968674510717,0.11714665591717],[-0.05508541315794,-0.19695779681206,-0.021346494555473]],[[0.098938800394535,0.017664074897766,-0.092494577169418],[0.1254720389843,-0.010168082080781,-0.11643652617931],[0.16553425788879,0.040823142975569,-0.039125796407461]],[[0.091265887022018,-0.016456298530102,0.043053336441517],[-0.026605179533362,-0.022053303197026,-0.0068759717978537],[0.091261349618435,-0.036664564162493,-0.0027658061590046]],[[0.012057422660291,-0.075284540653229,-0.013537679798901],[0.12465333193541,-0.068111255764961,-0.0074486853554845],[0.12106344848871,0.019557839259505,0.079800926148891]],[[0.078036084771156,-0.11587826907635,-0.21256375312805],[0.092919684946537,-0.16412882506847,-0.067482575774193],[-0.024125499650836,-0.075509332120419,-0.16793529689312]],[[0.17490556836128,-0.030047861859202,-0.22886408865452],[0.21528258919716,-0.029285641387105,-0.12697325646877],[-0.082604169845581,-0.045364867895842,-0.16353569924831]],[[-0.081925489008427,-0.026089379563928,0.040541235357523],[-0.049253236502409,0.0015037483535707,0.015995340421796],[0.01245392113924,0.009997071698308,-0.040778428316116]],[[0.0069513032212853,-0.12861342728138,-0.3426353931427],[0.10790579020977,-0.15673100948334,-0.095262818038464],[0.19483968615532,0.11321403086185,-0.090154707431793]],[[-0.0028101652860641,-0.045150574296713,-0.021995421499014],[0.090285643935204,-0.11356121301651,0.011504287831485],[0.19312313199043,0.058650717139244,-0.082489639520645]],[[-0.041691560298204,-0.1868559718132,-0.18126337230206],[0.069356478750706,0.044266000390053,0.0059042237699032],[0.2223169952631,0.20552334189415,-0.011371140368283]],[[0.29404416680336,0.032235819846392,-0.094663888216019],[0.22520217299461,-0.046330027282238,-0.10995306819677],[0.22901739180088,0.059772670269012,-0.24563710391521]],[[0.21289527416229,0.085109002888203,-0.031577117741108],[0.013270133174956,0.053880929946899,-0.049606315791607],[0.11935316771269,0.055471267551184,-0.20258283615112]],[[-0.026482472196221,0.078430838882923,-0.012413499876857],[-0.034015160053968,-0.030910294502974,0.049476910382509],[-0.052346952259541,-0.039898570626974,0.06157873570919]],[[0.032395713031292,-0.17164812982082,-0.12995608150959],[0.032654095441103,-0.053328827023506,-0.033168699592352],[-0.01519569568336,-0.11932724714279,-0.067781805992126]],[[-0.20426997542381,-0.12126660346985,-0.21059069037437],[-0.19233785569668,-0.039573974907398,-0.26769462227821],[-0.10077368468046,-0.10265349596739,-0.16827169060707]],[[-0.091587521135807,0.037857308983803,0.30636331439018],[-0.11227989941835,0.039136048406363,0.27128848433495],[-0.052594196051359,-0.044716753065586,0.19409409165382]],[[0.055714283138514,0.17124347388744,-0.22837534546852],[0.12116120755672,0.035808335989714,-0.28360196948051],[0.1273368448019,0.013117590919137,-0.15188923478127]],[[-0.13959634304047,-0.15323710441589,-0.2167811691761],[-0.0283083319664,-0.19316130876541,0.044147465378046],[0.01059405785054,-0.10980825871229,-0.28868037462234]],[[-0.033944338560104,-0.022589527070522,0.0099163139238954],[0.038977172225714,-0.045437268912792,-0.14389365911484],[0.017959272488952,-0.013169014826417,-0.1287002414465]],[[-0.02264261059463,0.075770653784275,0.052668698132038],[0.022440081462264,0.12395972013474,0.051344458013773],[-0.056235369294882,0.019040182232857,-0.0041422895155847]],[[0.0090257739648223,-0.09541492164135,-0.031566180288792],[-0.0035569618921727,-0.17398469150066,-0.21098202466965],[0.039267711341381,0.013372198678553,-0.11205483973026]],[[-0.1423936933279,-0.068861998617649,0.13363698124886],[-0.21800726652145,-0.008113257586956,0.025935370475054],[-0.10008119046688,-0.01253635622561,0.063788317143917]],[[0.094156533479691,0.048469498753548,0.089034147560596],[0.076858714222908,-0.067935846745968,-0.064071998000145],[0.18092361092567,-0.058208674192429,-0.040641233325005]],[[0.09729977697134,-0.048929754644632,-0.084300316870213],[0.1978785097599,0.078612573444843,-0.10189228504896],[0.23760496079922,0.17473313212395,-0.098149344325066]],[[-0.1099611595273,0.051026370376348,-0.0096792755648494],[0.12065854668617,0.066995084285736,0.1670456379652],[-0.11006660759449,-0.0036692102439702,-0.010994231328368]],[[-0.043247200548649,-0.1126125305891,-0.05618729814887],[0.14778618514538,-0.0081599503755569,0.004716272931546],[0.11292587220669,-0.00045852776383981,0.10465458035469]],[[-0.025118531659245,0.10281062871218,0.08885096013546],[-0.2493347376585,0.03461741656065,-0.017801413312554],[-0.2379857301712,-0.039141546934843,0.079642117023468]]],[[[0.071145676076412,-0.077706776559353,0.036052245646715],[-0.030581258237362,-0.082390755414963,0.13573499023914],[-0.039696309715509,0.038531709462404,-0.077467687427998]],[[-0.0089715383946896,-0.061568222939968,0.1039792522788],[0.047141723334789,-0.019610222429037,0.042919680476189],[-0.15019860863686,-0.11693009734154,-0.16199997067451]],[[-0.11089496314526,-0.049222350120544,0.044410482048988],[0.044450670480728,0.077799946069717,-0.11303166300058],[-0.054539993405342,-0.12077121436596,-0.028045080602169]],[[-0.015279904939234,-0.00053850887343287,-0.056292552500963],[-0.070422179996967,-0.079922258853912,0.028818218037486],[-0.013498947024345,0.056928362697363,-0.027696095407009]],[[-0.026758383959532,0.071248576045036,-0.012166334316134],[0.010145170614123,0.0037861578166485,0.14079621434212],[-0.076851405203342,0.021332342177629,-0.0016358458669856]],[[-0.082215800881386,0.065128564834595,-0.29047697782516],[-0.050015144050121,-0.19725200533867,0.20082761347294],[0.11787041276693,-0.2326897829771,0.044481705874205]],[[-0.031383633613586,-0.04304863512516,-0.029227329418063],[0.0098983207717538,0.054167374968529,-0.057485848665237],[-0.062764495611191,-0.11632457375526,0.11838921159506]],[[-0.02453656680882,-0.001091325073503,-0.015370227396488],[-0.10982178896666,0.032830055803061,0.0404107645154],[-0.03640266507864,0.015323918312788,0.023118607699871]],[[0.02875898219645,0.024951249361038,-0.001271462184377],[-0.025338238105178,-0.049666378647089,-0.046830728650093],[-0.016297796741128,0.038335498422384,-0.012170505709946]],[[-0.035627767443657,-0.0085185151547194,-0.0099890641868114],[-0.0059263901785016,-0.09847068041563,-0.0039160395972431],[-0.10404893755913,-0.040488824248314,0.0053946780972183]],[[-0.037968643009663,-0.019656758755445,-0.11493653059006],[-0.00017840675718617,0.076939187943935,0.16129733622074],[0.13105927407742,-0.0024507625494152,0.0099722575396299]],[[-0.016198042780161,-0.0001291237276746,-0.010184003040195],[-0.023253591731191,0.050601292401552,-0.055595625191927],[0.090331420302391,0.092799097299576,-0.010315547697246]],[[-0.037918172776699,-0.019843595102429,-0.02357854694128],[0.063499495387077,0.0020224947948009,-0.044258251786232],[-0.027572710067034,0.045031256973743,-0.074916511774063]],[[-0.0065240296535194,-0.066911652684212,0.002238497370854],[-0.0041768089868128,-0.073215678334236,-0.041518092155457],[-0.085461169481277,0.10454777628183,0.036943010985851]],[[0.012153228744864,-0.047294326126575,-0.07642437517643],[-0.044347133487463,-0.19255223870277,-0.044309623539448],[-0.051215432584286,0.10113179683685,-0.041135638952255]],[[-0.05003621801734,0.080285079777241,0.040007296949625],[0.054738745093346,0.00065182632533833,0.042463183403015],[0.028215991333127,-0.024215409532189,0.0078908586874604]],[[-0.0088502848520875,-0.01944943703711,0.014283298514783],[0.11298920214176,-0.072813577950001,-0.081848040223122],[0.060863349586725,0.035403396934271,-0.016867781057954]],[[-0.14272049069405,0.07102657854557,0.04878094792366],[0.062441866844893,-0.041214752942324,-0.0029032351449132],[-0.1837759912014,-0.0076315267942846,-0.0045687258243561]],[[-0.062766350805759,0.066080786287785,-0.17726470530033],[-0.0088671715930104,0.097679108381271,0.0056088343262672],[-0.037198279052973,-0.031358756124973,0.065384313464165]],[[0.11670436710119,-0.17331755161285,-0.006806212477386],[-0.23845611512661,0.073031783103943,-0.060092322528362],[-0.085261948406696,-0.043522741645575,-0.029170926660299]],[[-0.11328878998756,0.06054724752903,0.044857416301966],[-0.084158428013325,-0.16141422092915,0.021590249612927],[0.011790215037763,-0.014010839164257,-0.051330827176571]],[[-0.026220671832561,-0.069496862590313,-0.021889796480536],[-0.029352642595768,-0.12373774498701,0.0066692163236439],[-0.055094040930271,-0.033962924033403,0.05437421426177]],[[0.012907391414046,0.071500465273857,0.028268922120333],[-0.086076639592648,-0.044329095631838,-0.061764851212502],[-0.014357845298946,-0.015003697015345,-0.084310159087181]],[[0.041058655828238,0.11867542564869,-0.027983734384179],[-0.041953261941671,-0.012761300429702,0.01359676849097],[-0.073640510439873,-0.041694268584251,0.022876204922795]],[[-0.035843208432198,0.0018649641424417,0.025402052327991],[0.02627513371408,-0.074690841138363,0.032719891518354],[-0.00092327984748408,0.12831817567348,0.11060836166143]],[[-0.13930489122868,-0.1689670830965,0.013870378956199],[0.032071247696877,0.05543166026473,0.041786335408688],[0.01171244494617,0.053689114749432,-0.1166315227747]],[[0.090011812746525,0.033791739493608,0.067299447953701],[-0.02207151427865,0.010260908864439,0.030171619728208],[0.066818557679653,0.075327143073082,-0.0085565056651831]],[[-0.022509461268783,0.0028590916190296,0.0076535097323358],[0.011518794111907,-0.0040341406129301,0.043695140630007],[0.038549620658159,-0.032933730632067,0.010277015157044]],[[0.056710667908192,0.051385439932346,0.036853574216366],[-0.024992905557156,-0.011344892904162,-0.03403740003705],[0.10307574272156,-0.12802529335022,-0.014204108156264]],[[0.057509656995535,0.08878418058157,-0.038514818996191],[0.080608822405338,-0.12158361077309,0.019546173512936],[0.030092598870397,-0.076803654432297,0.13600698113441]],[[-0.069552011787891,-0.094329781830311,-0.089479863643646],[0.06997961550951,0.055598489940166,-0.02217305265367],[0.019960569217801,0.024085570126772,0.022699369117618]],[[0.12561179697514,0.018208939582109,0.045332424342632],[-0.074332624673843,0.10108276456594,0.03124594129622],[0.053519424051046,0.036731954663992,0.00016241075354628]],[[0.024013316258788,-0.069157645106316,-0.024734729900956],[-0.07441671192646,-0.11663966625929,0.049192856997252],[0.059717323631048,-0.12146382033825,-0.045770592987537]],[[0.062488857656717,0.024512210860848,-0.011810808442533],[0.08002907037735,-0.092409089207649,-0.049038771539927],[0.10681218653917,-0.053222615271807,-0.028780993074179]],[[-0.031654857099056,0.01899253949523,-0.0261211078614],[0.019619597122073,-0.033387191593647,-0.033701680600643],[-0.034241635352373,-0.11320943385363,-0.027746560052037]],[[-0.033460199832916,0.041904486715794,0.074667304754257],[0.0025619773659855,0.037021122872829,-0.13199326395988],[0.023140242323279,0.13517056405544,-0.0050471676513553]],[[0.068795129656792,-0.0055878288112581,0.0050592389889061],[0.054632730782032,-0.0094626573845744,0.088025636970997],[0.0199667327106,0.044661827385426,-0.0094208084046841]],[[-0.061266947537661,-0.023888163268566,0.025450330227613],[0.053780522197485,0.017210278660059,-0.032303061336279],[0.068562731146812,0.017050132155418,-0.14540095627308]],[[-0.064924374222755,-0.045370638370514,0.042434722185135],[0.0064380178228021,-0.044373009353876,0.09884387254715],[-0.018079334869981,0.013448408804834,0.051717512309551]],[[0.052205145359039,-0.068996012210846,-0.0023415838368237],[-0.041346240788698,-0.0073505118489265,-0.034031342715025],[0.0010640925029293,0.02557297796011,-0.013284560292959]],[[-0.012991331517696,-0.031871795654297,-0.046062644571066],[-0.02972412481904,0.010068623349071,-0.059106767177582],[0.01719686947763,-0.0066477851942182,0.052350286394358]],[[-0.15284642577171,0.075318887829781,0.018802829086781],[-0.058624133467674,0.13098485767841,-0.032413825392723],[0.039976168423891,0.003669508965686,-0.051164790987968]],[[-0.056357435882092,-0.12552583217621,0.021154614165425],[0.032033238559961,-0.070522733032703,-0.043653223663568],[-0.063429832458496,0.014012085273862,0.071204654872417]],[[0.036226820200682,-0.040639594197273,-0.035614162683487],[-0.0038584438152611,-0.045627575367689,0.045435726642609],[-0.024097518995404,0.092926114797592,-0.028233451768756]],[[-0.12793332338333,-0.14902487397194,-0.13095107674599],[-0.10344539582729,-0.052086062729359,0.05369359254837],[-0.075849279761314,-0.021728828549385,0.034141827374697]],[[0.046339768916368,0.020180184394121,-0.02170797996223],[-0.014807302504778,-0.039224430918694,0.053227555006742],[0.0078643243759871,-0.014791516587138,-0.0038527904544026]],[[0.064796805381775,0.11981133371592,0.077361859381199],[-0.028167307376862,-0.056478638201952,-0.05771105363965],[-0.001697527943179,0.1336342394352,0.0091924583539367]],[[-0.084886848926544,-0.0083193266764283,-0.042861375957727],[-0.027729030698538,0.048438545316458,-0.074236959218979],[0.0094592738896608,-0.03816906362772,-0.019535027444363]],[[0.075709231197834,-0.069994457066059,-0.0090997079387307],[-0.050635706633329,0.10726529359818,-0.029073061421514],[-0.027218263596296,-0.0250786524266,-0.022598749026656]],[[0.029315441846848,-0.13265208899975,-0.0017549154581502],[-0.02308732457459,-0.0072211837396026,0.070393472909927],[0.01664131693542,-0.0075617162510753,-0.0011568594491109]],[[0.051023297011852,-0.034196056425571,-0.041687168180943],[-0.037042859941721,-0.04151838645339,0.0022288295440376],[0.016982968896627,-0.052852049469948,-0.01201191637665]],[[-0.08927384018898,0.030804948881269,-0.025026988238096],[-0.091283448040485,-0.061367064714432,-0.004344800952822],[0.0015946907224134,7.7439850429073e-05,-0.049015715718269]],[[0.014028280973434,-0.043037235736847,-0.11710195243359],[-0.061166249215603,0.057343471795321,-0.12568971514702],[-0.060981165617704,-0.039500311017036,0.021976640447974]],[[0.070689335465431,0.034795880317688,0.042236357927322],[-0.0033977024722844,-0.1293413490057,0.014285754412413],[0.049117300659418,-0.02868402376771,0.06181426346302]],[[-0.049112413078547,-0.13935256004333,-0.076199673116207],[-0.0093911504372954,-0.05536125972867,-0.014397983439267],[0.0041066026315093,0.0075359018519521,0.035316523164511]],[[0.01830792427063,0.060913607478142,-0.015131328254938],[-0.086272336542606,-0.061676625162363,-0.040675684809685],[0.026840271428227,-0.016010370105505,0.0063934749923646]],[[-0.16655227541924,-0.061645220965147,-0.047125291079283],[-0.034021209925413,-0.031894829124212,0.041764341294765],[0.011212339624763,0.054665576666594,0.044682398438454]],[[-0.004495985340327,-0.036677815020084,0.062290467321873],[-0.019228741526604,-0.079797059297562,0.063748970627785],[-0.015412406995893,0.037531517446041,-0.047592625021935]],[[0.020911321043968,0.066300258040428,-0.07916047424078],[0.03826691582799,-0.096662871539593,0.011275851167738],[-0.011619286611676,-0.0045763375237584,0.025983031839132]],[[-0.058644726872444,0.020857587456703,0.064377464354038],[-0.074404999613762,0.036191634833813,-0.11302219331264],[-0.043032877147198,0.046352125704288,-0.056326191872358]],[[0.016693318262696,0.063768967986107,-0.079289793968201],[0.080407790839672,0.073329284787178,-0.0483353510499],[-0.0095701739192009,-0.066865213215351,0.017937509343028]],[[-0.11397328227758,-0.097713679075241,-0.039977747946978],[0.0032652905210853,-0.043453566730022,0.033309739083052],[-0.0073125450871885,-0.0957385674119,0.022326381877065]],[[-0.019730918109417,-0.061328183859587,0.0066624134778976],[-0.070580571889877,-0.014287337660789,-0.038297209888697],[-0.016116416081786,-0.027374804019928,-0.090807020664215]],[[-0.034966040402651,-0.067980699241161,0.038622178137302],[-0.08244314789772,0.080179981887341,0.020529199391603],[-0.0088013913482428,0.08721474558115,-0.042125858366489]]],[[[-0.010230904445052,-0.00016074413724709,0.0078665539622307],[-0.08191829174757,-0.046677391976118,0.036832801997662],[-0.0091474298387766,-0.18129979074001,-0.010313828475773]],[[0.059099577367306,0.010584957897663,-0.070987589657307],[-0.022445680573583,0.1802419424057,-0.14519695937634],[-0.052738729864359,-0.058208867907524,0.040260374546051]],[[-0.094972997903824,0.013582249172032,-0.11985168606043],[0.00037852418608963,0.0021525667980313,-0.0227434001863],[-0.03740069642663,-0.12833376228809,-0.11111563444138]],[[-0.03299630060792,-0.078730426728725,-0.11633973568678],[-0.12308348715305,0.070431113243103,-0.10867378115654],[0.011180778034031,0.039970625191927,0.0072555444203317]],[[-0.02838471904397,-0.064065746963024,-0.19433836638927],[-0.074309334158897,-0.012978981249034,-0.057990357279778],[0.10649965703487,0.022733546793461,-0.16865076124668]],[[-0.0080958157777786,0.022568140178919,-0.014004183933139],[0.051631454378366,-0.034382097423077,0.090555638074875],[0.0065476121380925,0.12403509020805,-0.01983923278749]],[[0.035340081900358,0.047217883169651,-0.03323221206665],[-0.017120946198702,-0.064055278897285,-0.038552854210138],[-0.012549336999655,-0.085521183907986,-0.012622678652406]],[[-0.086588151752949,-0.032150242477655,-0.0048369206488132],[0.079667925834656,0.045990739017725,0.017863998189569],[-0.017609609290957,-0.01423711143434,0.08993735909462]],[[0.035978488624096,0.13760498166084,0.055516574531794],[-0.05864492431283,0.048845905810595,0.10180737823248],[-0.13579241931438,-0.19601419568062,-0.029066901654005]],[[-0.052078694105148,-0.011285660788417,0.0086166299879551],[-0.033420290797949,-0.068551629781723,-0.11983359605074],[-0.11587618291378,-0.032631259411573,-0.076402388513088]],[[0.0032651000656188,-0.084098726511002,0.0026601064018905],[-0.095642611384392,0.068426974117756,0.038672834634781],[-0.11026200652122,-0.03946265950799,-0.15616896748543]],[[-0.028326954692602,-0.069703966379166,-0.12047351896763],[0.010159520432353,0.033513847738504,0.017343431711197],[-0.069861255586147,-0.063717916607857,-0.10358563065529]],[[0.036703485995531,0.095000639557838,0.0033216581214219],[-0.15384620428085,-0.24133117496967,-0.072920359671116],[0.14103281497955,0.079616777598858,-0.10217421501875]],[[-0.041260655969381,0.034804049879313,-0.023703986778855],[0.019463341683149,0.0057233111001551,-0.065779522061348],[0.035438500344753,-0.084793418645859,-0.0048625967465341]],[[-0.040198169648647,-0.035718459635973,-0.036719273775816],[-0.037123821675777,0.031375654041767,-0.022986188530922],[0.013923331163824,0.04242455586791,-0.17202293872833]],[[0.06755955517292,-0.074846476316452,-0.0045546377077699],[0.10003411769867,-0.022486388683319,0.043585419654846],[0.056561421602964,-0.15577001869678,-0.057036150246859]],[[0.15711571276188,-0.086961530148983,-0.013992793858051],[0.063317976891994,-0.015694314613938,-0.021010028198361],[0.075626410543919,-0.034768380224705,-0.099258929491043]],[[-0.019397936761379,0.028378980234265,-0.00078884907998145],[0.084757804870605,-0.079542770981789,-0.041063189506531],[-0.027413070201874,0.0022672554478049,-0.12054740637541]],[[0.11959332227707,-0.050992146134377,-0.0033366945572197],[0.042064789682627,-0.042683884501457,0.080999597907066],[-0.17646113038063,0.014260204508901,-0.025581864640117]],[[0.037019722163677,0.038777340203524,0.075659215450287],[-0.012660162523389,-2.0485971617745e-05,-0.00074200332164764],[-0.037510763853788,0.079753488302231,0.0092456145212054]],[[-0.041008986532688,0.05863244086504,-0.058672178536654],[0.054814841598272,0.02870630659163,-0.018369374796748],[-0.084311746060848,-0.1338261961937,0.022387390956283]],[[-0.08526898920536,-0.13446143269539,-0.15532369911671],[-0.055734094232321,-0.038905829191208,-0.032182689756155],[0.025480972602963,-0.10369055718184,-0.037901192903519]],[[-0.026053093373775,0.0019444290082902,0.012483683414757],[0.0073992470279336,-0.052469998598099,0.0078087658621371],[-0.073282904922962,-0.022405967116356,-0.011871373280883]],[[0.027555430307984,-0.051140312105417,0.043776787817478],[-0.024989595636725,-0.044761024415493,0.031948003917933],[0.13616392016411,-0.013049994595349,-0.099927805364132]],[[0.033744551241398,-0.038209393620491,-0.11974477022886],[-0.03863575682044,0.029297647997737,-0.077881962060928],[-0.12089934945107,-0.067108646035194,0.046295590698719]],[[0.040690805763006,-0.068788580596447,0.025064576417208],[-0.061840083450079,-0.1694473773241,0.0055576381273568],[-0.09008863568306,-0.12725372612476,0.079267673194408]],[[-0.027565732598305,0.017357470467687,-0.071914225816727],[-0.012235334143043,0.019135307520628,-0.066194631159306],[-0.038650371134281,-0.015731524676085,-0.054875902831554]],[[0.078480541706085,0.10685554891825,0.056027919054031],[0.064573332667351,-0.050017546862364,-0.094524212181568],[0.034996077418327,-0.1065254881978,-0.13386808335781]],[[-0.045052941888571,-0.064454160630703,-0.090954475104809],[0.041049662977457,0.07373308390379,-0.1539353877306],[-0.048911795020103,0.044704750180244,-0.081886775791645]],[[-0.0076646963134408,-0.015534101985395,-0.014717658981681],[0.0052718599326909,0.10119870305061,-0.016016824170947],[-0.011676370166242,0.0051219281740487,0.063295915722847]],[[-0.050214156508446,0.078867137432098,0.071795120835304],[-0.063912756741047,-0.04279861971736,-0.10586235672235],[0.11536747217178,0.15305690467358,0.070880129933357]],[[-0.057560324668884,-0.037358433008194,0.030709275975823],[0.013584531843662,0.072270795702934,0.11373110115528],[-0.074081115424633,0.0027443331200629,-0.090897597372532]],[[-0.018893612548709,-0.034128148108721,0.072408944368362],[0.085331648588181,-0.092112839221954,0.087766237556934],[-0.012015903368592,-0.10550613701344,0.0026036892086267]],[[0.010669567622244,-0.070141389966011,-0.12571595609188],[-0.030041182413697,-0.026402659714222,0.033006176352501],[0.093604505062103,0.0060926973819733,-0.028161197900772]],[[-0.098798848688602,-0.099025957286358,0.04092263430357],[-0.11712142080069,0.037302907556295,0.021175589412451],[0.065140902996063,0.053565613925457,0.079282589256763]],[[0.068169824779034,0.043901596218348,0.12465871870518],[0.089165978133678,-0.03157052770257,-0.067694917321205],[0.045412663370371,0.087123528122902,0.043935168534517]],[[0.052840501070023,-0.034909054636955,-0.09925901144743],[0.068220004439354,0.063210442662239,-0.10412625968456],[0.013077418319881,0.12229897081852,0.01154198218137]],[[-0.048054162412882,0.075645349919796,0.026421252638102],[-0.030725317075849,0.053554587066174,-0.03611746057868],[-0.19184327125549,-0.054732270538807,-0.079557277262211]],[[-0.013018807396293,-0.015669895336032,0.022673115134239],[0.022576618939638,-0.094313278794289,0.0016902795759961],[0.037660755217075,-0.040850270539522,0.022443193942308]],[[0.022617617622018,0.11252700537443,0.064937889575958],[-0.013793256133795,0.022594898939133,0.05772290751338],[-0.15443480014801,0.019911926239729,0.1113870665431]],[[0.039563436061144,0.056132536381483,0.039686683565378],[-0.056119598448277,-0.095506362617016,-0.10045836120844],[0.03690454736352,0.087196536362171,-0.1871554851532]],[[0.06572587043047,-0.10096707195044,0.067781507968903],[-0.046347863972187,0.011450778692961,0.032250661402941],[0.12727174162865,-0.11552201956511,0.012557513080537]],[[0.014762644656003,-0.031166030094028,-0.12276968359947],[-0.025773545727134,0.0069146724417806,-0.091886550188065],[-0.019637119024992,-0.10339087247849,-0.086431071162224]],[[-0.063536040484905,-0.068898789584637,-0.14076343178749],[0.041735790669918,0.049146790057421,-0.035567600280046],[0.034268073737621,0.066826738417149,0.10671243816614]],[[-0.023513950407505,-0.0068220379762352,0.0045623420737684],[0.041133996099234,-0.27028214931488,-0.19570864737034],[0.046864457428455,0.057353898882866,0.018976671621203]],[[0.05338978767395,0.0033654030412436,0.10550367832184],[0.012763072736561,-0.020405311137438,-0.0066671161912382],[0.03381247445941,-0.055680107325315,-0.15553991496563]],[[-0.063188664615154,-0.029248105362058,-0.0095847658813],[0.0045903469435871,0.016544565558434,0.037892322987318],[0.0055614956654608,0.053013749420643,-0.044364307075739]],[[-0.00056482083164155,-0.10650946199894,0.003148265182972],[0.036188960075378,0.073219105601311,0.018006199970841],[-0.017379770055413,-0.0069800917990506,-0.0078723197802901]],[[-0.08928657323122,-0.017848057672381,-0.050812657922506],[-0.02624980174005,0.065779440104961,-0.015245730988681],[-0.11050483584404,0.070308059453964,-0.016837917268276]],[[-0.069249108433723,-0.12096574157476,-0.11966349184513],[0.11243469268084,-0.043239332735538,-0.10257103294134],[0.10278092324734,0.18335825204849,0.03070006147027]],[[0.0068775769323111,-0.0044771390967071,0.042504951357841],[0.019700048491359,-0.0070416871458292,-0.01262057852],[-0.021102879196405,-0.15094950795174,0.0060299718752503]],[[-0.0057380623184144,0.072344623506069,-0.071469694375992],[-0.018546208739281,0.015065296553075,-0.019592201337218],[-0.10641302913427,0.047058314085007,-0.052854374051094]],[[-0.012334374710917,0.012949979864061,-0.0052668382413685],[0.0061391298659146,-0.015401454642415,-0.047170057892799],[0.077049523591995,-0.068275801837444,-0.041859611868858]],[[-0.098362855613232,-0.076985083520412,-0.0023040203377604],[0.053805772215128,-0.052808463573456,0.0034848442301154],[0.079913392663002,-0.038878656923771,-0.0029611871577799]],[[0.016834514215589,-0.0061029950156808,-0.01566031947732],[0.047263354063034,-0.035984296351671,0.050670322030783],[0.12720081210136,-0.044271320104599,-0.27939766645432]],[[-0.025252362713218,-0.18564450740814,0.02398837916553],[0.010078581050038,0.05001387372613,-0.089944064617157],[-0.013289446942508,0.10261498391628,-0.042404133826494]],[[-0.056858297437429,-0.12007054686546,-0.019923428073525],[-0.046872247010469,-0.061656482517719,0.04685240983963],[-0.046346317976713,0.053840093314648,0.037603680044413]],[[0.065500989556313,0.004531838465482,0.091676905751228],[-0.1013298779726,-0.010028641670942,-0.09863106161356],[-0.018810342997313,-0.11571083217859,-0.089359186589718]],[[-0.043169964104891,0.029478656128049,0.014722412452102],[0.0046789068728685,-0.14682766795158,-0.078633770346642],[-0.10526563227177,0.063778720796108,-0.051818996667862]],[[-0.060000479221344,-0.023377284407616,-0.019858071580529],[-0.042106840759516,0.038918983191252,0.050298325717449],[-2.0926887373207e-05,-0.068011768162251,0.087876282632351]],[[0.019112663343549,-0.056412909179926,-0.020463541150093],[0.016946945339441,-0.10499428957701,0.040611371397972],[-0.0022468341048807,0.033681008964777,0.014681896194816]],[[0.099063754081726,0.045074157416821,0.028298379853368],[0.10000438988209,0.04164894670248,0.049686390906572],[-0.080216519534588,-0.197425827384,-0.098816633224487]],[[0.077083133161068,0.077212505042553,-0.030103530734777],[0.096802547574043,-0.035919938236475,0.0075361421331763],[0.032937787473202,-0.028756631538272,0.056124810129404]],[[0.038788314908743,0.075316920876503,0.098024979233742],[0.005460194312036,-0.0053101987577975,0.11273154616356],[0.014317844994366,0.037418216466904,0.13573622703552]]],[[[-0.033883199095726,0.033812429755926,-0.0055297240614891],[0.077737875282764,-0.086323864758015,-0.010755154304206],[-0.061834190040827,0.045513778924942,-0.021486023440957]],[[-0.030028427019715,-0.045917831361294,0.13368248939514],[0.027030626311898,0.02480923384428,-0.02537627145648],[-0.016561223194003,-0.053879797458649,0.08421541005373]],[[0.058112919330597,0.025439001619816,0.061660666018724],[0.030830290168524,-0.028173105791211,0.12873081862926],[0.046319101005793,0.021568277850747,0.068788982927799]],[[-0.02438997477293,-0.026131562888622,-0.011847411282361],[0.0042061153799295,-0.072144351899624,0.11483860015869],[0.08884160220623,-0.030082857236266,-0.092783644795418]],[[-0.027806159108877,-0.01015735603869,-0.13963462412357],[0.0079535068944097,-0.016937704756856,0.026963464915752],[0.0077044046483934,0.0069047962315381,-0.16051338613033]],[[0.15853750705719,0.016783058643341,0.070054985582829],[-0.026511553674936,-0.0013172836042941,0.10244216024876],[-0.10250877588987,-0.0078679611906409,-0.0108098750934]],[[-0.090878762304783,-0.014665473252535,0.040528759360313],[-0.089479923248291,-0.031489808112383,0.027313977479935],[0.041204124689102,0.0008568232296966,0.14019118249416]],[[-0.091282188892365,-0.034157335758209,0.1236509308219],[-0.058880589902401,0.045657001435757,0.02165568433702],[-0.05372017249465,-0.0066755418665707,-0.076466895639896]],[[0.02033631503582,0.075014971196651,-0.011109784245491],[-0.081620641052723,-0.035007670521736,0.0018364997813478],[-0.025012392550707,-0.0056539988145232,0.032892808318138]],[[0.053788784891367,-0.039643730968237,-0.052559353411198],[-0.011797758750618,-0.09105271846056,0.037689164280891],[-0.12022018432617,0.014070942997932,-0.042000416666269]],[[-0.057272374629974,-0.049042314291,0.062996484339237],[0.10461504012346,0.033954277634621,-0.032685659825802],[-0.069284431636333,-0.064169883728027,-0.037995412945747]],[[-0.023387415334582,-0.13117529451847,-0.037250574678183],[0.067620322108269,-0.033066429197788,-0.13800667226315],[-0.008658985607326,0.053172163665295,-0.03025284782052]],[[0.050786729902029,-0.0037368990015239,-0.053582020103931],[0.077285028994083,0.051490947604179,-0.089456841349602],[0.044628836214542,-0.034663174301386,0.091840945184231]],[[-0.036658745259047,-0.10454417765141,-0.083027057349682],[-0.043809186667204,-0.074787072837353,-0.055113591253757],[0.22717690467834,-0.083541706204414,0.044560007750988]],[[0.015094323083758,0.0056916405446827,-0.092973999679089],[0.054166927933693,0.027489775791764,0.024344988167286],[0.05180648714304,-0.032180976122618,0.068400345742702]],[[0.079881995916367,-0.09070036560297,-0.11426857113838],[0.018561920151114,-0.068481914699078,0.06978964805603],[-0.179039940238,-0.025912772864103,-0.018225049600005]],[[0.045663055032492,0.088630668818951,-0.00060708302771673],[0.074622377753258,-0.0059315231628716,0.16296121478081],[-0.091366164386272,0.080807529389858,0.08826120942831]],[[-0.097695291042328,0.042392488569021,-0.07575860619545],[-0.06499545276165,-0.065669246017933,-0.020059069618583],[-0.0018133032135665,-0.0555789321661,0.027070755138993]],[[-0.09309958666563,-0.076020732522011,-0.050738539546728],[0.060044135898352,0.010986966080964,0.054677106440067],[0.16917824745178,-0.0050992914475501,-0.049692898988724]],[[-0.032092865556479,0.12999904155731,-0.0055870320647955],[-0.036869656294584,-0.016396319493651,-0.1616632193327],[0.06652694940567,0.05989295989275,-0.042421575635672]],[[0.0090840673074126,-0.082467690110207,-0.0014252847759053],[-0.088035501539707,0.027239616960287,-0.003075227374211],[0.044358290731907,-0.043925404548645,0.0090750362724066]],[[-0.082518361508846,-0.033334314823151,0.062493912875652],[-0.044859789311886,-0.13149125874043,-0.10848634690046],[0.085825130343437,-0.022023852914572,-0.05938159301877]],[[0.034282941371202,0.11332120746374,-0.10521020740271],[-0.02229892089963,-0.03088366985321,-0.003807885106653],[0.015993859618902,-0.075215712189674,0.0046734544448555]],[[-0.061618618667126,-0.032834783196449,-0.025249453261495],[-0.043655417859554,-0.10155972838402,-0.0027186437509954],[-0.040659118443727,-0.018752751871943,0.050043355673552]],[[0.036269005388021,0.059360057115555,-0.023515338078141],[-0.0929184705019,0.051764354109764,-0.11872064322233],[-0.10659008473158,-0.028365053236485,0.011683818884194]],[[0.070994563400745,0.059312589466572,-0.10706100612879],[-0.10527337342501,-0.059171542525291,-0.0060496139340103],[-0.072956100106239,-0.090985529124737,0.051057066768408]],[[-0.018364984542131,0.029017021879554,0.062308799475431],[-0.013079361058772,-0.05026251077652,-0.087988823652267],[0.0052595394663513,0.031670361757278,-0.036575093865395]],[[-0.00017331876733806,0.029322357848287,0.0045918789692223],[-0.010457537136972,-0.031444635242224,-0.0076566734351218],[-0.17542739212513,-0.080408811569214,-0.1348605453968]],[[-0.031690280884504,0.031083958223462,-0.026446884498],[0.085153505206108,-0.047308277338743,0.047371204942465],[-0.055288754403591,-0.03290543705225,0.12423717230558]],[[0.0049947947263718,0.062671221792698,0.097906343638897],[0.05574006959796,-0.023354509845376,0.013284100219607],[0.06530924141407,0.0045321783982217,-0.19615958631039]],[[-0.081609778106213,0.013547407463193,-0.023568600416183],[-0.014644084498286,-0.0074850157834589,-0.033288080245256],[0.054778672754765,0.04319067671895,0.068242557346821]],[[-0.064352840185165,-0.027203040197492,0.065391026437283],[0.040359612554312,0.073569536209106,-0.07321410626173],[0.028977179899812,-0.062492646276951,0.016709815710783]],[[0.011601346544921,0.1221668869257,0.066985443234444],[-0.073487170040607,-0.080062575638294,-0.02424225769937],[0.06306167691946,-0.034214910119772,-0.0015363426646218]],[[-0.059999920427799,-0.10397294908762,-0.098619848489761],[0.15685844421387,-0.11562494188547,0.11677201092243],[0.030402043834329,0.018924698233604,-0.073392242193222]],[[0.072241112589836,-0.022933751344681,0.016624458134174],[-0.027562718838453,-0.025477413088083,-0.032986223697662],[0.027802864089608,-0.065760932862759,-0.068386368453503]],[[0.13704231381416,0.019912339746952,-0.05543490126729],[-0.0030583168845624,0.085808992385864,-0.054255370050669],[-0.1345209479332,-0.025776948779821,-0.010238085873425]],[[-0.041243463754654,0.049544885754585,-0.05111113935709],[-0.088410787284374,0.12962745130062,-0.027019938454032],[0.0010337104322389,0.020951431244612,0.11621297895908]],[[-0.052795466035604,0.11027018725872,-0.0011658607982099],[-0.049824200570583,-0.039831671863794,0.099229246377945],[-0.072392396628857,0.022144177928567,-0.045793894678354]],[[0.03891571611166,0.010183837264776,0.069531388580799],[-0.056356143206358,0.16649231314659,0.090762309730053],[-0.021294286474586,-0.051612678915262,0.020480154082179]],[[0.061540748924017,0.042904693633318,-0.08372189104557],[0.023204507306218,-0.011811750940979,0.028397388756275],[-0.056568812578917,-0.069125324487686,0.062193848192692]],[[-0.033998750150204,-0.068856365978718,-0.02549990452826],[-0.0045739007182419,0.038525730371475,-0.07342354208231],[-0.013009163551033,0.0015548646915704,0.1133611947298]],[[0.010087937116623,-0.089735008776188,0.072839125990868],[0.031154651194811,0.05100267380476,0.063303165137768],[-0.024078557267785,-0.039430100470781,-0.0093977432698011]],[[0.05600993335247,0.031450379639864,-0.13793547451496],[-0.045543629676104,-0.011088931001723,-0.044220354408026],[0.040760897099972,-0.097842708230019,-0.00062620401149616]],[[-0.0084265973418951,-0.073578990995884,0.054502125829458],[0.064439527690411,0.064576186239719,0.0029321629554033],[-0.0064142113551497,-0.0068853325210512,-0.06408553570509]],[[-0.081778809428215,0.016441956162453,-0.071754164993763],[0.10222344100475,0.015819313004613,-0.029300183057785],[0.012237479910254,0.10946904122829,-0.12604793906212]],[[0.02295153401792,0.14093315601349,-0.004075909499079],[-0.058383908122778,-0.0021269349381328,0.071849018335342],[-0.058839146047831,-0.0035434335004538,0.10904511809349]],[[-0.095949620008469,-0.081382811069489,-0.21079401671886],[0.010266325436532,0.07611520588398,-0.02899937517941],[-0.00030267547117546,0.0033078650012612,-0.010468762367964]],[[0.016824120655656,-0.047260813415051,-0.12385644763708],[0.094806134700775,-0.031736936420202,0.0081223342567682],[-0.0060028932057321,0.088335618376732,-0.13279627263546]],[[-0.082240581512451,-0.019908202812076,0.050593592226505],[-0.052209090441465,0.019759381189942,0.10851614177227],[-0.037283137440681,-0.08528932929039,0.1107119768858]],[[0.0027066373731941,-0.074849672615528,-0.029636044055223],[0.024135485291481,0.045512408018112,-0.049562733620405],[0.082678250968456,-0.019238045439124,-0.023893289268017]],[[0.0067204707302153,0.015097061172128,-0.055925853550434],[-0.02252403832972,-0.035877626389265,-0.0068053002469242],[-0.072361849248409,-0.035218931734562,0.13602992892265]],[[0.074953056871891,0.026937892660499,-0.15803131461143],[-0.12432709336281,0.13615937530994,-0.054334614425898],[-0.039592642337084,-0.060861993581057,-0.13490818440914]],[[0.07384467124939,-0.0046667857095599,0.086688622832298],[-0.043805606663227,-0.060012098401785,0.016320718452334],[-0.0040649021975696,0.018572872504592,0.040992807596922]],[[0.073028691112995,0.009789957664907,-0.14137615263462],[-0.042003139853477,0.046664647758007,0.0069211688823998],[-0.013848251663148,0.022653002291918,-0.061589688062668]],[[-0.030889689922333,0.04075575619936,-0.0058162068016827],[-0.0724246352911,-0.051917266100645,-0.09117217361927],[0.12013570964336,0.035119075328112,0.16183882951736]],[[-0.016776192933321,-0.11135863512754,0.0076022068969905],[-0.06052428111434,0.063473306596279,-0.047530584037304],[-0.030798779800534,0.086095429956913,0.10058271884918]],[[0.043059565126896,-0.09387132525444,0.01281529571861],[0.097663596272469,0.18107578158379,0.057430610060692],[0.0025048709940165,0.058473914861679,0.069498158991337]],[[-0.10100891441107,0.031680133193731,-0.02668078429997],[0.059168979525566,0.037640262395144,-0.0743463113904],[-0.052295554429293,-0.096586756408215,-0.11985397338867]],[[-0.10641924291849,0.1151439845562,0.058397762477398],[0.088932536542416,-0.033966321498156,0.048009671270847],[0.0080982316285372,0.0056541808880866,-0.0063331914134324]],[[-0.14175415039062,0.09207609295845,-0.066311851143837],[0.045103885233402,-0.18202812969685,0.0073102526366711],[0.13098835945129,0.069519616663456,-0.043621733784676]],[[-0.050544824451208,0.075078181922436,0.025974379852414],[-0.0034770471975207,-0.027574833482504,-0.027231980115175],[-0.009990775026381,-0.064919129014015,-0.0072689019143581]],[[0.072875395417213,0.12761959433556,-0.071597553789616],[-0.013065731152892,0.018383290618658,0.0093919904902577],[0.0342663154006,-0.065796084702015,-0.050079621374607]],[[0.1041894108057,0.030369559302926,0.035742588341236],[0.043541464954615,-0.010928150266409,0.0031961952336133],[-0.03349506482482,0.091925300657749,0.024949776008725]],[[0.017600940540433,0.060398910194635,-0.17713072896004],[-0.0082839969545603,0.081718280911446,-0.074717462062836],[0.030645720660686,0.014137506484985,0.017431216314435]]],[[[-0.032748829573393,0.044711325317621,0.085917845368385],[0.070800319314003,0.026063745841384,-0.18623954057693],[0.034401185810566,-0.14906503260136,-0.093294091522694]],[[0.018933895975351,-0.059853721410036,-0.10904596745968],[-0.054659970104694,-0.037858203053474,-0.029980067163706],[0.039791841059923,-0.01007853448391,0.020695755258203]],[[-0.036308839917183,0.075980417430401,0.013937305659056],[-0.14556549489498,-2.6941010219161e-05,0.043763183057308],[-0.092221215367317,0.054080501198769,0.031325373798609]],[[-0.14714628458023,-0.052658192813396,-0.20927047729492],[-0.068010404706001,-0.14229583740234,0.17387889325619],[-0.0019390016095713,0.060474414378405,-0.010810259729624]],[[-0.027603626251221,-0.0095579931512475,0.045353952795267],[0.080837719142437,-0.038399282842875,0.050333969295025],[0.024386687204242,-0.018563330173492,-0.062685646116734]],[[0.020515963435173,-0.11148461699486,0.096613168716431],[0.089642748236656,0.18443270027637,-0.04036970064044],[0.11513575911522,0.027833111584187,-0.083703562617302]],[[0.0036370265297592,0.016972545534372,-0.11018327623606],[-0.079605214297771,-0.02513307146728,0.060731694102287],[-0.022425083443522,0.1592511087656,0.011868709698319]],[[0.021429598331451,-0.093325167894363,0.030674813315272],[0.033896517008543,-0.026172908023,0.024029430001974],[0.16034516692162,0.019430940970778,0.0012180352350697]],[[0.018198160454631,-0.050633490085602,-0.022915234789252],[0.074386849999428,0.019552243873477,-0.03359467536211],[-0.013676511123776,-0.028157748281956,0.0093183992430568]],[[-0.026280602440238,0.024302151054144,0.14238053560257],[-0.00253646960482,-0.069379217922688,-0.035664677619934],[-0.068345546722412,-0.11266393214464,-0.084848709404469]],[[-0.022576557472348,0.11352664232254,-0.11452173441648],[0.028758060187101,0.049439758062363,-0.046099703758955],[0.051731336861849,-0.097204022109509,0.005230532027781]],[[-0.099462904036045,0.034185618162155,0.12034949660301],[-0.15020669996738,0.020742829889059,0.0084352763369679],[-0.12720514833927,-0.091578580439091,0.044498540461063]],[[0.065827623009682,0.10328552126884,0.14290842413902],[-0.1177823394537,-0.023355944082141,-0.049126457422972],[0.0075975605286658,-0.047578938305378,-0.034173093736172]],[[-0.012357249855995,0.10374389588833,-0.01667196303606],[-0.042800158262253,-0.090288311243057,0.013658480718732],[0.096185848116875,-0.039428222924471,-0.019559133797884]],[[0.021930987015367,-0.044817321002483,0.16354805231094],[-0.16312728822231,0.018552120774984,-0.037976715713739],[-0.086183056235313,-0.058895669877529,-0.070587582886219]],[[0.047715343534946,-0.10050392895937,-0.080642074346542],[-0.13850574195385,0.03652585670352,-0.021063046529889],[-0.20701034367085,0.011461827903986,0.10838820785284]],[[-0.11647091060877,0.05858350917697,-0.0360112413764],[-0.052050828933716,-0.067927710711956,0.061012573540211],[0.026209546253085,-0.028589984402061,-0.067798100411892]],[[-0.052302613854408,0.01364765688777,0.023328041657805],[-0.0086434120312333,0.0038880358915776,0.050349649041891],[0.010796799324453,-0.068720832467079,-0.00027224436053075]],[[0.055878348648548,0.016842979937792,-0.11268103122711],[-0.035613249987364,-0.13818101584911,-0.058674730360508],[0.04429417476058,0.016209084540606,-0.012078268453479]],[[0.0045177442952991,0.075392417609692,-0.16518898308277],[0.12309945374727,-0.012635830789804,-0.033015865832567],[0.075641147792339,0.11150449514389,-0.047415599226952]],[[0.1483573615551,-0.16771510243416,0.07219086587429],[-0.043549809604883,0.086537197232246,0.057443656027317],[0.051088187843561,-0.051939520984888,0.0055819866247475]],[[0.0090575087815523,-0.00554842595011,0.0037945217918605],[-0.021799413487315,-0.025960197672248,-0.021018402650952],[-0.1357554346323,-0.078806594014168,-0.053453706204891]],[[-0.029661549255252,0.012608662247658,0.097449608147144],[-0.080254971981049,-0.034262202680111,-0.19986121356487],[0.11066620796919,0.054927367717028,0.010677562095225]],[[0.11718147993088,0.08384507894516,0.095800891518593],[-0.023851053789258,0.022886304184794,-0.012558956630528],[-0.012669423595071,0.028106251731515,0.092536926269531]],[[-0.10213975608349,-0.18862058222294,-0.10560420155525],[-0.066301055252552,0.0085744662210345,0.055817443877459],[-0.14846989512444,-0.16332225501537,-0.006254531443119]],[[0.036396447569132,0.001439870800823,-0.0054248864762485],[-0.12314939498901,0.039918422698975,-0.031808964908123],[0.019073368981481,-0.046901356428862,-0.070986807346344]],[[0.12852630019188,0.11729317903519,0.18284185230732],[-0.086060166358948,-0.037370182573795,0.065766133368015],[-0.10575155168772,0.085655622184277,0.029776785522699]],[[-0.083050355315208,-0.14142043888569,-0.16741652786732],[-0.021803935989738,0.0080159772187471,-0.15729649364948],[-0.1600040346384,-0.010656364262104,0.020774401724339]],[[-0.0084431990981102,-0.034979376941919,-0.043493378907442],[-0.0179342944175,-0.056262567639351,-0.089487798511982],[-0.003909716848284,0.18411011993885,0.07595556229353]],[[-0.0097641563042998,0.071952812373638,0.2822907269001],[-0.044457066804171,0.02798262797296,0.20116867125034],[-0.072236075997353,0.0074071818962693,0.089164353907108]],[[0.027620056644082,0.066574715077877,-0.11186907440424],[0.030145751312375,-0.047538515180349,-0.018387062475085],[0.11609704047441,0.021132996305823,0.11612835526466]],[[0.053764671087265,-0.058116901665926,-0.19914416968822],[0.030077202245593,-0.00093899364583194,-0.08550975471735],[-0.11517154425383,-0.0022111115977168,0.10391042381525]],[[-0.026693541556597,-0.096874363720417,0.068953432142735],[-0.042459007352591,0.08033598959446,-0.055342208594084],[0.053328454494476,0.029700560495257,0.083060406148434]],[[-0.072432152926922,0.014345151372254,0.071702212095261],[-0.040830530226231,-0.027743021026254,-0.081800378859043],[-0.061392068862915,0.033166512846947,-0.068269655108452]],[[0.062493447214365,-0.029329471290112,-0.074634775519371],[-0.013610107824206,-0.1133573949337,-0.021688288077712],[0.057582650333643,-0.027090696617961,-0.018978334963322]],[[-0.013730424456298,0.0085212448611856,-0.024353072047234],[-0.013933731243014,0.062343370169401,-0.030731676146388],[-0.035649601370096,-0.018341030925512,0.0027116446290165]],[[0.041428111493587,-0.019684165716171,0.080306597054005],[-0.043114587664604,0.086600676178932,-0.064793713390827],[-0.029120145365596,0.047006629407406,-0.067555092275143]],[[-0.068466931581497,-0.022999519482255,0.034323919564486],[0.12194730341434,0.1035828217864,0.013728066347539],[0.15982221066952,0.036659806966782,0.044333599507809]],[[0.014358536340296,0.091915994882584,0.050643809139729],[-0.031408213078976,0.012121384963393,0.021256847307086],[-0.024669256061316,-0.071723185479641,-0.040129993110895]],[[0.086104460060596,-0.036437630653381,-0.088894076645374],[0.062724761664867,0.020541425794363,0.0073088784702122],[0.049897745251656,-0.060074161738157,0.043585605919361]],[[-0.038824524730444,-0.023522865027189,-0.025126913562417],[-0.12794378399849,-0.030269715934992,0.0018326030112803],[-0.11176843196154,-0.066539935767651,0.023863643407822]],[[0.031264640390873,-0.0011508712777868,-0.009403295814991],[-0.012024575844407,-0.067928344011307,0.14145727455616],[-0.079908207058907,-0.086011506617069,0.039945904165506]],[[-0.062722593545914,0.12230711430311,0.0047582560218871],[-0.026808449998498,0.044792909175158,-0.034933928400278],[-0.19168131053448,-0.041854675859213,-0.053019482642412]],[[0.013985416851938,0.0083033116534352,0.035950355231762],[-0.036101371049881,-0.00054578942945227,0.070221178233624],[-0.090506918728352,0.030277464538813,-0.043649833649397]],[[-0.10719820857048,0.018244767561555,0.040057864040136],[-0.26183345913887,-0.049521051347256,0.086969718337059],[-0.20530325174332,-0.072562210261822,-0.051032286137342]],[[0.0026659115683287,-0.10852746665478,-0.12328348308802],[0.023677941411734,-0.012077262625098,-0.19139833748341],[-0.11601158976555,-0.17682167887688,0.0045939441770315]],[[0.066339150071144,-0.043235123157501,0.16952520608902],[0.025572080165148,0.089652039110661,-0.011439181864262],[-0.075766324996948,0.069383382797241,0.0161466691643]],[[0.012258558534086,0.1027859672904,-0.049661818891764],[-0.086618483066559,0.00026961223920807,-0.040873367339373],[-0.075138173997402,0.044321458786726,-0.12869304418564]],[[0.044846277683973,0.026616871356964,0.031864713877439],[-0.055722706019878,0.083417654037476,0.02175853587687],[-0.07533685863018,-0.098229721188545,-0.033879593014717]],[[-0.068573959171772,0.10628669708967,0.011965798214078],[-0.1052615121007,0.033301025629044,0.065587863326073],[-0.031509831547737,-0.0067441994324327,-0.022831574082375]],[[-0.051741812378168,-0.069363474845886,-0.0015685597900301],[-0.088215216994286,0.017824936658144,0.074422977864742],[-0.071000844240189,-0.030498908832669,-0.083290502429008]],[[0.0050682742148638,0.051437973976135,0.3224281668663],[-0.028178380802274,-0.034842245280743,0.17928431928158],[-0.042973913252354,0.032650697976351,-0.094438672065735]],[[-0.11946868896484,0.073128297924995,-0.053517196327448],[0.25166890025139,0.028458427637815,0.05824476107955],[-0.0089277233928442,-0.060817539691925,-0.037542883306742]],[[0.070234872400761,0.10236264765263,0.1148950830102],[-0.053293757140636,0.021041601896286,-0.01231708843261],[-0.11312253028154,0.10943545401096,-0.099833764135838]],[[0.0047738938592374,-0.20975425839424,-0.014252948574722],[-0.077338442206383,-0.16934381425381,-0.13326817750931],[-0.075261548161507,-0.013309524394572,-0.06441105902195]],[[0.16616348922253,0.049469571560621,-0.11851912736893],[-0.035329148173332,-0.1664018034935,-0.20344442129135],[-0.018777864053845,-0.041563361883163,-0.046158242970705]],[[0.029272690415382,0.0076947850175202,0.11155423521996],[0.0099522927775979,0.062205005437136,0.020869305357337],[-0.0098388083279133,0.093755669891834,-0.012617078609765]],[[-0.0049960678443313,-0.13947476446629,0.11814415454865],[0.073126576840878,-0.0072464728727937,0.058268368244171],[-0.084640309214592,-0.13744035363197,-0.077554784715176]],[[0.0034842633176595,-0.10207081586123,-0.04685328528285],[0.077340736985207,0.068738169968128,-0.034772537648678],[0.033925749361515,0.080804079771042,-0.016342103481293]],[[0.029143089428544,0.019645588472486,0.0086144022643566],[-0.057321690022945,0.020568395033479,0.06376938521862],[0.068006686866283,-0.072622589766979,-0.046707253903151]],[[-0.11766900122166,0.025174230337143,-0.13282535970211],[-0.095602743327618,-0.066126242280006,0.015816319733858],[-0.081614881753922,-0.048675753176212,0.03170408308506]],[[0.029611514881253,-0.15430222451687,0.09643616527319],[0.0051032598130405,0.064518794417381,-0.013519175350666],[-0.15231508016586,-0.0059929643757641,-0.036008633673191]],[[-0.063388518989086,0.040668748319149,0.028678635135293],[-0.0066794473677874,-0.068988986313343,0.048090901225805],[-0.15931423008442,0.015929700806737,-0.070562459528446]],[[-0.083732329308987,-0.016052819788456,0.025803178548813],[0.056141577661037,0.013600138947368,-0.010472654365003],[0.012597809545696,0.06481608748436,-0.071767620742321]]],[[[-0.075342401862144,-0.09392374753952,-0.050323750823736],[0.049596913158894,-0.10192361474037,0.066802091896534],[0.032451942563057,-0.11083555221558,-0.086031928658485]],[[0.054378058761358,-0.045021090656519,-0.0008363252854906],[0.040967080742121,-0.014975721016526,0.0067440364509821],[0.060515590012074,-0.014393115416169,-0.041247129440308]],[[-0.090760163962841,0.033780477941036,0.03207952529192],[0.078803434967995,-0.082681559026241,0.060358412563801],[0.0072648208588362,0.07744549959898,0.092477351427078]],[[-0.038681872189045,-0.087691180408001,-0.038504101336002],[-0.014002434909344,-0.045376040041447,0.036041386425495],[-0.063575461506844,-0.058109872043133,0.04616055265069]],[[0.05026887357235,0.029701799154282,0.1123433560133],[0.077461928129196,-0.024621890857816,-0.057750590145588],[-0.043363478034735,-0.012928777374327,-0.14368198812008]],[[0.088314794003963,-0.033175382763147,-0.13221630454063],[0.12649589776993,0.0095578636974096,-0.13048462569714],[0.03833132982254,-0.019840056076646,-0.029993021860719]],[[0.017407048493624,0.072840385138988,-0.060563292354345],[0.00042936237878166,0.051226947456598,-0.073453344404697],[0.024070171639323,-0.0032025873661041,-0.13687524199486]],[[-0.0070251543074846,-0.045489266514778,-0.059725236147642],[-5.5007330956869e-06,0.065817542374134,0.045147426426411],[-0.0203514136374,-0.12355029582977,0.036519560962915]],[[0.020127700641751,-0.063923768699169,0.079792812466621],[-0.048233661800623,-0.034781128168106,-0.055944256484509],[0.040594033896923,0.023326225578785,0.0075264414772391]],[[-0.14143726229668,-0.0056808795779943,-0.0088463900610805],[-0.16499453783035,-0.12160166352987,-0.056390184909105],[0.10451770573854,-0.14054699242115,0.0038857022300363]],[[-0.054868672043085,-0.053225103765726,-0.0070178653113544],[-0.039171326905489,-0.028247786685824,-0.053118802607059],[-0.0090293642133474,-0.049158655107021,-0.096771948039532]],[[-0.13668003678322,0.12699684500694,-0.016675487160683],[-0.10027921199799,-0.16085427999496,-0.021237900480628],[-0.06365878880024,-0.10816375911236,-0.13111910223961]],[[-0.028402721509337,-0.11216422915459,0.058182504028082],[0.02990509942174,-0.026385901495814,0.035602390766144],[-0.098729074001312,-0.05531732365489,0.026045095175505]],[[0.0060661816969514,0.15087103843689,0.079222068190575],[-0.0573107637465,-0.024109417572618,0.0047630658373237],[0.02669970318675,0.036474287509918,-0.056719642132521]],[[0.033793602138758,0.023755928501487,-0.093891851603985],[-0.086593627929688,0.094999708235264,-0.035831607878208],[-0.14734716713428,0.0062473774887621,0.1105887517333]],[[-0.02453014627099,-0.03205419704318,-0.045495383441448],[0.13931033015251,-0.059052668511868,-0.035714626312256],[0.044861491769552,0.013536198996007,0.060830291360617]],[[0.019146544858813,0.18715825676918,0.11873412132263],[-0.081853248178959,-0.072541460394859,-0.072844788432121],[0.017767323181033,-0.015568531118333,-0.034027062356472]],[[0.0086759766563773,-0.0055920477025211,0.019149823114276],[0.066815190017223,-0.041470803320408,-0.14287315309048],[-0.08661837875843,0.016027582809329,-0.060839049518108]],[[0.056831706315279,-0.11197773367167,-0.048540607094765],[0.15639369189739,0.10067285597324,-0.040929306298494],[0.10241460055113,0.024851504713297,-0.022197049111128]],[[0.05345606803894,0.17005386948586,-0.16032347083092],[-0.12546217441559,0.011162777431309,0.052116550505161],[0.11966364830732,-0.16738709807396,-0.0044213198125362]],[[-0.052580378949642,0.052006181329489,-0.12530170381069],[-0.051196370273829,-0.078119203448296,-0.041854996234179],[-0.029653051868081,-0.057850413024426,0.11408162117004]],[[-0.071206085383892,0.00047308215289377,0.084779806435108],[-0.092365369200706,-0.029773497954011,0.082042492926121],[-0.036060597747564,0.02994186244905,0.079753778874874]],[[0.040888957679272,-0.011118814349174,-0.079988323152065],[0.070095874369144,0.019517162814736,0.033139534294605],[0.036334920674562,-0.066653162240982,-0.073242329061031]],[[-0.12757433950901,-0.069210104644299,0.082035563886166],[-0.071862049400806,-0.023157889023423,-0.10987176001072],[0.013899304904044,0.086047738790512,-0.09359447658062]],[[-0.041930381208658,-0.15340942144394,0.018883340060711],[0.029621621593833,0.14432822167873,0.046457931399345],[-0.11111835390329,-0.099760465323925,-0.13702870905399]],[[-0.055625841021538,-0.078305579721928,0.093439787626266],[-0.069230578839779,-0.049855224788189,0.042042121291161],[-0.083812348544598,-0.11669185757637,-0.021544514223933]],[[0.027554672211409,-0.15135779976845,-0.024033084511757],[0.13327467441559,-0.04131631180644,-0.020912570878863],[-0.12355629354715,-0.079045295715332,-0.052340708673]],[[0.013965224847198,0.073578111827374,-0.052531119436026],[-0.0023994171060622,-0.064242050051689,-0.030477566644549],[0.27550026774406,-0.020799370482564,0.10025455057621]],[[-0.031797010451555,0.062549911439419,-0.12205088883638],[-0.098833203315735,0.064260341227055,0.031175034120679],[0.0095769707113504,-0.0087906373664737,0.13473252952099]],[[-0.038734335452318,-0.074030742049217,0.10205529630184],[-0.0070867640897632,-0.024356544017792,-0.055736940354109],[-0.072180546820164,0.018072010949254,-0.041933141648769]],[[-0.044253759086132,0.027218708768487,-0.057890348136425],[-0.084751762449741,0.12508644163609,-0.073968276381493],[-0.012987253256142,0.04466836899519,0.047288935631514]],[[-0.043354365974665,0.12440895289183,-0.056782893836498],[-0.042071592062712,-0.068497151136398,0.012221932411194],[-0.0423663854599,0.10349420458078,-0.043034788221121]],[[0.042440008372068,0.092380002140999,-0.028797548264265],[-0.066498763859272,-0.045489300042391,-0.0029731234535575],[0.015106601640582,-0.0032552720513195,-0.110934227705]],[[-0.049884159117937,-0.012273092754185,0.054573208093643],[-0.059091776609421,0.092329375445843,0.041735675185919],[-0.061050321906805,0.083812467753887,-0.025650450959802]],[[0.016403328627348,-0.079635508358479,-0.17673687636852],[-0.075819358229637,-0.0012342691188678,0.095540262758732],[0.070596247911453,-0.033180076628923,-0.023624690249562]],[[0.059092864394188,0.083569183945656,0.018623888492584],[-0.012953551486135,0.12826944887638,0.018302325159311],[-0.047775022685528,-0.10984492301941,-0.02584957703948]],[[0.024833735078573,-0.14932291209698,-0.058135028928518],[0.090873241424561,-0.077517360448837,0.03652149066329],[0.0022966265678406,0.01893487945199,-0.0076011270284653]],[[-0.014534598216414,0.023490838706493,0.052932243794203],[0.1678729057312,-0.1441842764616,-0.12847179174423],[0.029087586328387,-0.022268783301115,-0.011574500240386]],[[-0.051498156040907,-0.11568408459425,0.058026533573866],[0.0057932157069445,0.020384473726153,-0.12591187655926],[-0.0012233622837812,0.0031715584918857,-0.11754778027534]],[[-0.029739666730165,0.14697550237179,0.029421459883451],[0.024039683863521,-0.031729631125927,0.12100564688444],[-0.14335925877094,-0.016075246036053,0.040559694170952]],[[-0.045300964266062,0.066105514764786,-0.030885891988873],[-0.0086468085646629,-0.010337609797716,0.1005562916398],[0.02968000434339,0.033520426601171,-0.049225866794586]],[[-0.015495499596,0.094452545046806,0.039355650544167],[-0.017051164060831,0.12275817245245,0.069915749132633],[-0.019744325429201,0.063139744102955,-0.020583430305123]],[[-0.030122993513942,-0.029411310330033,-0.061545476317406],[-0.027759982272983,-0.024208599701524,-0.10910205543041],[0.01702349819243,0.090626582503319,-0.062416806817055]],[[-0.045702457427979,-0.040790375322104,0.011394830420613],[0.063065640628338,0.001513390801847,-0.041795235127211],[0.034129593521357,-0.02315684966743,-0.046977121382952]],[[-0.0039612748660147,-0.077772200107574,0.12722858786583],[-0.11699102073908,0.026453733444214,-0.11260966956615],[-0.12979160249233,-0.01521831471473,-0.1596695035696]],[[0.035305891185999,-0.0012171079870313,0.21545612812042],[0.066349655389786,-0.081495806574821,0.040239807218313],[-0.069145694375038,0.17587396502495,-0.10354010015726]],[[0.10701970756054,0.13799555599689,-0.042247969657183],[0.056907542049885,0.00054842710960656,0.055510628968477],[0.053884793072939,-0.0014771319692954,-0.037145640701056]],[[-0.054597429931164,0.099338613450527,0.070138476788998],[-0.064349658787251,-0.074328236281872,-0.028757832944393],[0.0066094687208533,0.0077016786672175,0.066860534250736]],[[-0.062555588781834,-0.028607940301299,-0.031995616853237],[-0.049143794924021,0.060325339436531,-0.11302624642849],[-0.13179117441177,0.1800080537796,-0.037484109401703]],[[0.0067694126628339,0.053638026118279,-0.10493345558643],[-0.029937589541078,0.037469018250704,0.03606504201889],[0.014118987135589,-0.020407905802131,0.017116585746408]],[[0.059072632342577,0.0079034278169274,0.095817565917969],[-0.072025805711746,0.02377744205296,-0.11485786736012],[-0.0025711157359183,0.041991863399744,0.054557666182518]],[[-0.084535554051399,-0.13299629092216,0.018703889101744],[0.18089877068996,0.088672816753387,0.16654060781002],[-0.026540821418166,-0.14734350144863,0.0014358408516273]],[[-0.11204139888287,0.13273696601391,-0.078839190304279],[0.0070338039658964,0.13256421685219,0.01734933629632],[-0.061446785926819,0.11377724260092,0.0081114312633872]],[[-0.083555735647678,-0.0085794925689697,0.16905710101128],[0.006061646156013,-0.068049192428589,0.15743713080883],[-0.075619727373123,0.11566069722176,-0.074966952204704]],[[-0.086420327425003,-0.042203783988953,-0.0073745213449001],[-0.03438002243638,0.0029470690060407,0.061683669686317],[-0.033464189618826,-0.066955246031284,-0.071425177156925]],[[0.11269817501307,0.040048971772194,0.092900089919567],[-0.026535589247942,0.010350801981986,0.16167290508747],[0.046707957983017,0.1112424954772,-0.0069925202988088]],[[-0.10966143012047,-0.13104185461998,-0.015784153714776],[-0.11809527873993,-0.070741131901741,0.0029467926360667],[-0.047533378005028,0.11836601048708,-0.1031299084425]],[[-0.021290194243193,-0.00026000360958278,0.0014931943733245],[0.011872691102326,-0.04889789968729,-0.063208311796188],[0.084193766117096,-0.006995493080467,-0.049050305038691]],[[0.12575852870941,0.059604022651911,-0.010864091105759],[-0.035492289811373,-0.016673939302564,-0.12720911204815],[0.098594129085541,0.0073910583741963,0.020016223192215]],[[-0.070359356701374,0.03361589834094,-0.10635837167501],[-0.028172556310892,0.031002670526505,0.059829656034708],[0.01356936711818,-0.025480505079031,0.0036599664017558]],[[0.03388024866581,0.016466025263071,-0.087760664522648],[-0.053215146064758,0.069472923874855,0.015843188390136],[-0.11622631549835,-0.075690373778343,-0.061217859387398]],[[-0.03866920992732,0.1823191344738,-0.220359146595],[-0.041077867150307,-0.051870796829462,-0.015593499876559],[0.095228239893913,0.042296152561903,-0.0013376785209402]],[[-0.17952273786068,-0.054533295333385,0.20661878585815],[0.070610590279102,-0.12286322563887,0.030422957614064],[-0.095120184123516,0.0080838100984693,-0.10480898618698]],[[0.043958060443401,0.084981627762318,-0.067183189094067],[-0.021736597642303,0.031497064977884,0.085437320172787],[0.06870125234127,-0.10367128998041,0.08945294469595]]],[[[0.13473495841026,0.031570591032505,-0.0092078251764178],[0.044441565871239,-0.019780997186899,-0.051110327243805],[0.039779610931873,0.061449859291315,-0.021092290058732]],[[0.14976739883423,-0.017322154715657,-0.1178952306509],[-0.052940994501114,0.0031138339545578,0.11027324199677],[-0.048068184405565,0.082267917692661,0.19354204833508]],[[-0.076162606477737,-0.0026388675905764,0.087722510099411],[0.011737912893295,0.08273957669735,0.027461621910334],[-0.064426735043526,0.099902503192425,0.079654201865196]],[[-0.16676788032055,0.0037501524202526,-0.024319974705577],[-0.058002442121506,-0.025625981390476,0.071697197854519],[-0.0071944072842598,-0.04777242615819,-0.018420049920678]],[[-0.1167751327157,-0.075926572084427,0.022157704457641],[-0.13135571777821,-0.034079771488905,0.030063465237617],[-0.059533040970564,-0.084538459777832,0.018338473513722]],[[0.066285505890846,0.10719724744558,-0.010399132966995],[-0.012998223304749,-0.028583874925971,0.19725196063519],[0.029952727258205,-0.16916781663895,-0.043823603540659]],[[-0.037307996302843,-0.0012269763974473,0.037114407867193],[-0.014677727594972,0.022000836208463,0.031254351139069],[-0.035149522125721,0.055560816079378,0.043746307492256]],[[0.055104646831751,0.056918364018202,-0.04965802282095],[-0.027642434462905,-0.080559797585011,0.0011726296506822],[0.031002035364509,0.060373049229383,-0.037060130387545]],[[-0.050077974796295,-0.07538902759552,-0.014584364369512],[-0.0094969049096107,0.091945081949234,-0.023757185786963],[-0.0085483817383647,0.04022266343236,0.051466956734657]],[[-0.0771699026227,-0.07562530040741,-0.038526881486177],[-0.047124002128839,0.052142400294542,-0.052114959806204],[-0.0055418517440557,-0.080844275653362,-0.033716630190611]],[[0.066378697752953,0.12983892858028,0.035204973071814],[0.066876642405987,-0.003699651453644,0.00037725511356257],[0.031024657189846,-0.041691873222589,0.025492038577795]],[[-0.13357704877853,-0.10688366740942,-0.18067046999931],[-0.087831534445286,0.025205822661519,-0.06620965898037],[-0.061582405120134,-0.054676059633493,-0.021566543728113]],[[-0.20799891650677,-0.076183378696442,-0.13643363118172],[0.0040897089056671,-0.046144012361765,-0.083877176046371],[0.060764707624912,-0.020808421075344,0.0011378047056496]],[[-0.053748615086079,0.088211886584759,0.15358310937881],[-0.036583710461855,0.0029723613988608,-0.034726042300463],[0.02980587631464,0.06775438785553,-0.017399655655026]],[[-0.054246950894594,-0.13458985090256,0.017925458028913],[0.053728174418211,0.073994882404804,0.080663800239563],[0.015840124338865,0.02896124497056,0.21606610715389]],[[-0.065535679459572,-0.015100446529686,-0.037029419094324],[-0.079421192407608,-0.04355401173234,-0.018685469403863],[-0.046006452292204,-0.016500648111105,0.11003389209509]],[[-0.092052653431892,0.026233181357384,-0.163340523839],[-0.014850890263915,0.033880792558193,-0.16525201499462],[-0.022746875882149,0.06406781822443,0.068089112639427]],[[-0.10827918350697,-0.11716797202826,0.045300699770451],[-0.067179419100285,-0.055977083742619,-0.014027994126081],[-0.01070736721158,-0.047776836901903,0.073742747306824]],[[0.0088872406631708,-0.015712436288595,-0.030670141801238],[0.025226199999452,-0.090715870261192,-0.026318492367864],[-0.0078516528010368,-0.14613841474056,0.11140094697475]],[[-0.010146760381758,0.034867834299803,0.060453273355961],[0.010400388389826,0.042202707380056,0.086865931749344],[0.15595938265324,0.13668665289879,-0.10430003702641]],[[-0.027630928903818,0.067193806171417,-0.013721760362387],[-0.057574491947889,-0.014039383269846,0.031238790601492],[-0.062362425029278,-0.068125747144222,-0.10438800603151]],[[0.017216797918081,-0.014039419591427,0.039987366646528],[0.014222353696823,-0.014864509925246,0.028122749179602],[0.072421550750732,0.085184261202812,0.15030220150948]],[[-0.11372326314449,-0.089728131890297,-0.030087659135461],[-0.016102097928524,-0.10848364979029,-0.026024306192994],[0.0260797329247,-0.15714317560196,0.0053411033004522]],[[-0.18488691747189,-0.19348454475403,0.10817699879408],[-0.12850315868855,-0.20719486474991,0.049471225589514],[-0.1295111477375,-0.057550981640816,0.055077482014894]],[[0.13947211205959,-0.072939909994602,0.084482364356518],[-0.0032270231749862,-0.02789025567472,-0.022409474477172],[0.030648903921247,0.19381287693977,0.0020446283742785]],[[-0.066630020737648,-0.037179756909609,0.046850685030222],[0.07925783097744,-0.01898449473083,0.063054248690605],[0.022749805822968,0.053609054535627,0.16415439546108]],[[-0.022973019629717,-0.032520581036806,-0.00087757001165301],[0.14479850232601,0.054233435541391,-0.0015058633871377],[-0.0078639769926667,0.073963858187199,0.088560327887535]],[[0.11101292818785,0.067042514681816,-0.026601307094097],[-0.029130293056369,-0.061909802258015,-0.0033562807366252],[0.022233296185732,-0.17949725687504,-0.0040865535847843]],[[-0.080774962902069,0.1176278591156,0.095208115875721],[-0.068940848112106,0.039087124168873,0.12939685583115],[-0.024255337193608,-0.18008957803249,0.010843751952052]],[[-0.17511641979218,-0.13308145105839,-0.16534994542599],[-0.0025425120256841,-0.058989655226469,0.04963143914938],[0.048051279038191,0.089274734258652,-0.024841753765941]],[[-0.30238962173462,-0.16207727789879,0.1056684628129],[-0.056727804243565,-0.13634319603443,-0.19458408653736],[0.10675088316202,-0.027817798778415,-0.14984552562237]],[[-0.11509847640991,-0.012089818716049,0.070314861834049],[0.00041122420225292,-0.091293774545193,0.095240890979767],[0.018373426049948,-0.024465275928378,0.09767509251833]],[[0.0052573205903172,0.10069185495377,0.0067179338075221],[-0.024462083354592,-0.019701723009348,-0.010101549327374],[-0.13013209402561,-0.045924626290798,-0.024835102260113]],[[-0.171754732728,-0.088589511811733,0.082128040492535],[-0.037582449615002,-0.13968747854233,-0.064245507121086],[-0.02858778834343,-0.016797127202153,0.040251806378365]],[[-0.10642566531897,-0.014213697053492,-0.066650032997131],[0.11304450035095,0.016573421657085,0.038366004824638],[-0.020891718566418,-0.083366237580776,0.073235064744949]],[[-0.023865584284067,0.026160495355725,0.0031918238382787],[0.00067546230275184,0.0056155286729336,0.045706480741501],[0.1258445084095,-0.052300974726677,-0.18286694586277]],[[-0.21992537379265,-0.026320859789848,0.016059208661318],[0.017289781942964,0.10433722287416,-0.014010604470968],[0.064367942512035,-0.011628836393356,0.0065213008783758]],[[0.054937068372965,0.0031337081454694,0.036648776382208],[0.00106220995076,0.059251837432384,-0.10452374815941],[0.052199304103851,0.12395903468132,-0.1266828328371]],[[-0.11116994172335,-0.10986275970936,-0.0055090133100748],[-0.11654113978148,-0.077842056751251,0.031871769577265],[-0.0050521879456937,0.01406167820096,0.043791402131319]],[[-0.051228430122137,-0.07031312584877,0.023850062862039],[-0.045705862343311,0.010791465640068,-0.096438825130463],[-0.02507840283215,0.027340054512024,-0.024971667677164]],[[-0.098174728453159,-0.18096207082272,-0.058900527656078],[-0.0098888585343957,-0.03937690705061,-0.013411684893072],[0.10014805197716,-0.029556965455413,-0.045538447797298]],[[-0.19732575118542,-0.16303975880146,-0.029046138748527],[0.028551394119859,-0.11529941111803,0.029637902975082],[0.035253383219242,0.0075236330740154,-0.0232490953058]],[[-0.077141404151917,-0.0071866260841489,-0.0080914320424199],[-0.0054596522822976,0.048232827335596,0.054833672940731],[-0.018287716433406,-0.035654712468386,-0.0059027248062193]],[[-0.015086013823748,0.034308023750782,-0.044989123940468],[-0.01420424785465,-0.087166517972946,0.018085617572069],[0.061491645872593,0.015557198785245,0.030992588028312]],[[-0.072246663272381,-0.11973028630018,-0.027285156771541],[0.00025663466658443,-0.11877074092627,0.035770192742348],[0.059951450675726,-0.036194518208504,0.16323521733284]],[[0.03895553201437,-0.0011646107304841,0.043064717203379],[-0.035463254898787,-0.013803062029183,0.03834280371666],[0.11934172362089,0.085287839174271,0.14266937971115]],[[-0.17997857928276,-0.14401493966579,-0.12175092846155],[-0.024425659328699,0.0046710073947906,0.03941959887743],[0.03718151897192,-0.067512579262257,0.0025022721383721]],[[-0.10365156829357,-0.1268468350172,-0.013091421686113],[-0.026299651712179,-0.028580415993929,-0.0052618063054979],[0.033155027776957,0.089790090918541,0.094638124108315]],[[-0.066549725830555,-0.088150799274445,-2.3678869183641e-05],[-0.090609841048717,-0.079228237271309,0.0066580749116838],[-0.051220934838057,-0.021451892331243,0.13823257386684]],[[0.041347205638885,-0.050835724920034,0.0041160965338349],[-0.0015723571414128,0.01775574311614,0.064855128526688],[0.045375321060419,-0.048429019749165,-0.034998845309019]],[[-0.31998240947723,-0.22672466933727,-0.073472507297993],[-0.14936992526054,-0.061704345047474,0.0080008869990706],[-0.00046876556007192,-0.041908111423254,0.082534037530422]],[[-0.037501182407141,0.030325071886182,-0.022210875526071],[0.008054219186306,0.028288438916206,0.093048349022865],[-0.019531458616257,-0.034961987286806,-0.058833103626966]],[[0.01161250565201,0.030044747516513,0.045031804591417],[0.056196998804808,-0.11838881671429,0.048972155898809],[0.05677493289113,-0.083609104156494,-0.11349406093359]],[[0.14814166724682,0.010160677134991,-0.035697843879461],[0.049661934375763,-0.0005428577424027,0.024204647168517],[0.061899933964014,0.018735600635409,0.29333347082138]],[[0.026106134057045,-0.0071043651551008,0.057086102664471],[0.0066865212284029,0.05308922752738,-0.05334822461009],[0.022311640903354,0.03078324533999,0.014718498103321]],[[0.0172747541219,0.028623001649976,-0.035451594740152],[-0.0068387594074011,0.10590203106403,0.058583132922649],[-0.0074824620969594,-0.011065463535488,0.018574118614197]],[[0.086015552282333,0.090105153620243,0.031539022922516],[0.076615057885647,-0.0017417242052034,-0.07530665397644],[0.068619601428509,-0.015525068156421,0.063400663435459]],[[0.046274036169052,0.052354760468006,-0.10375618934631],[-0.034676350653172,0.032571583986282,-0.092759288847446],[-0.031326863914728,0.038526430726051,-0.07059334218502]],[[0.12133313715458,0.10500005632639,0.10064504295588],[-0.095232881605625,0.0079102776944637,0.025254586711526],[0.05595438927412,-0.032441481947899,-0.048961997032166]],[[0.058684587478638,-0.011409803293645,0.066427148878574],[0.004193352535367,-0.059801932424307,0.060146890580654],[-0.00050713197560981,0.076629981398582,0.074837103486061]],[[-0.021785603836179,-0.095259971916676,-0.049141228199005],[-0.046238031238317,0.057157576084137,0.05856766924262],[-0.036049239337444,0.03597354143858,0.079205125570297]],[[-0.003340394468978,0.048126913607121,-0.1745962947607],[0.13043208420277,-0.02961341291666,-0.040661510080099],[-0.015335296280682,0.015859317034483,0.050187479704618]],[[-0.15364700555801,-0.18710240721703,-0.030088933184743],[-0.040967959910631,-0.1053449138999,-0.17259031534195],[-0.02234816737473,0.053703393787146,-0.0080799693241715]],[[0.096539042890072,0.12020248174667,0.014920366927981],[-0.0027802353724837,-0.07660536468029,-0.090420089662075],[0.083910323679447,0.096491351723671,-0.26308614015579]]],[[[-0.11366997659206,0.034115664660931,-0.07786226272583],[0.029310362413526,-0.057113140821457,0.065856471657753],[-0.023629225790501,0.029121223837137,-0.052431423217058]],[[0.077468045055866,0.024742403998971,-0.084806747734547],[0.027332853525877,-0.10829088836908,0.010137682780623],[-0.028216540813446,0.11952891200781,-0.0040826993063092]],[[-0.045610301196575,-0.083490379154682,0.082732148468494],[-0.027286190539598,-0.037446551024914,0.14880040287971],[-0.02500663138926,0.036751318722963,0.087855391204357]],[[0.047930516302586,-0.092304565012455,-0.045982081443071],[0.05171836912632,-0.026561941951513,-0.056388698518276],[0.17550714313984,0.10786612331867,0.03512329235673]],[[-0.081624388694763,-0.0087995789945126,0.014583365991712],[0.086454480886459,0.064420759677887,0.0013280503917485],[-0.088408999145031,0.052263267338276,-0.10302091389894]],[[-0.021760750561953,0.065407820045948,0.025274263694882],[-0.084259703755379,-0.030581794679165,-0.05991044268012],[-0.058633238077164,0.031110966578126,0.030660454183817]],[[0.026270974427462,0.039065778255463,0.12667670845985],[0.039446029812098,0.096391595900059,-0.024779107421637],[0.041101649403572,0.097301468253136,-0.064789548516273]],[[0.04505979642272,-0.027860833331943,-0.033001944422722],[0.042828503996134,-0.04625641182065,-0.028766559436917],[-0.059992119669914,-0.0092129101976752,-0.073132894933224]],[[0.0041669639758766,-0.012486512772739,-0.11132226884365],[0.017791777849197,-0.0026215275283903,-0.099957756698132],[0.057861473411322,0.070627138018608,0.055994879454374]],[[-0.040436923503876,-0.009949516505003,0.077146477997303],[0.029097188264132,-0.093223035335541,-0.0015908596105874],[0.054567575454712,-0.035650573670864,-0.075052782893181]],[[-0.044887863099575,0.029957894235849,-0.12063479423523],[0.090463891625404,0.0019610032904893,-0.023226181045175],[0.031680636107922,0.041616689413786,0.054834678769112]],[[-0.0047834515571594,-0.013576156459749,0.017860822379589],[-0.059436000883579,-0.15500263869762,-0.031946826726198],[0.025185041129589,-0.021457878872752,0.1450423002243]],[[0.037880938500166,-0.13037775456905,-0.012173060327768],[-0.19984914362431,0.1374714076519,-0.084529764950275],[-0.020368693396449,-0.13327093422413,0.025793379172683]],[[-0.012387090362608,0.034358043223619,-0.015353679656982],[-0.03945118188858,0.053839810192585,0.12456520646811],[-0.038063034415245,-0.041901987046003,0.087673872709274]],[[0.015711789950728,-0.060377679765224,-0.1262830644846],[0.080792479217052,-0.067098632454872,-0.009618429467082],[-0.037736155092716,0.034595098346472,0.038802143186331]],[[-0.011738097295165,0.10325701534748,0.14341033995152],[0.050274588167667,0.068193063139915,0.057476680725813],[-0.032662365585566,-0.010893096216023,-0.081938296556473]],[[-0.1481845676899,-0.0040263244882226,0.033939357846975],[0.0091097475960851,-0.077433429658413,-0.0065987780690193],[-0.054684098809958,-0.066780343651772,0.12497198581696]],[[-0.084483861923218,-0.19765157997608,-0.046945389360189],[-0.00091003376292065,-0.066032268106937,0.011259831488132],[-0.0083088772371411,-0.048729784786701,-0.018271774053574]],[[0.0065429960377514,0.13682943582535,0.053801376372576],[-0.097845457494259,0.15265327692032,0.049816109240055],[-0.17702278494835,0.019997209310532,0.043855737894773]],[[-0.010944411158562,-0.065948285162449,-0.064230293035507],[0.01194251421839,0.054440498352051,-0.08431576192379],[-0.064496502280235,0.10620603710413,-0.03214368596673]],[[-0.038676306605339,-0.11585974693298,0.024855384603143],[0.031425047665834,-0.0059835421852767,0.15202060341835],[-0.079267956316471,0.0065635219216347,-0.063401818275452]],[[0.073324620723724,-0.071969822049141,0.05290013551712],[-0.055202301591635,-0.051618572324514,-0.080548629164696],[0.032951436936855,0.083475098013878,-0.035293430089951]],[[0.029137564823031,0.071712650358677,-0.027662955224514],[0.043462559580803,0.012944677844644,-0.024938648566604],[-0.12034711241722,0.075517453253269,0.016615685075521]],[[0.039051320403814,-0.025671981275082,0.045574363321066],[0.027846567332745,-0.067130483686924,-0.016080988571048],[0.016445694491267,-0.11616878211498,0.069508753716946]],[[0.054367829114199,0.09049366414547,-0.043484654277563],[0.018071485683322,0.05455282703042,-0.00032134406501427],[0.074397996068001,0.015839114785194,0.0070363008417189]],[[-0.02726199105382,-0.013620962388813,-0.091681189835072],[-0.076450742781162,0.022224480286241,0.006326190661639],[-0.15383622050285,0.041879042983055,0.050877079367638]],[[0.068929143249989,-0.06625584512949,0.12902842462063],[-0.042230904102325,0.044379714876413,0.024743765592575],[0.055263727903366,0.01558571960777,0.068673133850098]],[[0.087048247456551,-0.021997202187777,-0.11810076981783],[-0.065057516098022,0.053149770945311,0.14571578800678],[-0.028726525604725,-0.16267602145672,0.086774185299873]],[[-0.070439092814922,-0.034928258508444,-0.040639068931341],[0.072838746011257,-0.007637838833034,0.077898278832436],[-0.004180661868304,0.074314184486866,-0.066318824887276]],[[-0.011993763968349,-0.0172582231462,-0.040101233869791],[0.10249375551939,-0.043590158224106,0.096630252897739],[-0.0057658017612994,-0.1636870354414,0.032196950167418]],[[0.050609391182661,0.0083511043339968,-0.13199637830257],[0.063160039484501,-0.022516835480928,-0.0011094749206677],[0.07906923443079,-0.027913359925151,0.0841029509902]],[[-0.078849032521248,0.06061689555645,0.042860761284828],[0.075428888201714,-0.079777032136917,-0.029471749439836],[0.017696315422654,-0.010656602680683,0.0049362205900252]],[[-0.10495693981647,-0.12675897777081,-0.026977630332112],[0.042974136769772,-0.029955707490444,-0.11281219869852],[-0.096470549702644,-0.016905248165131,0.051443539559841]],[[0.055632118135691,-0.018944358453155,-0.023792361840606],[0.00089375395327806,-0.063817620277405,-0.14782428741455],[0.048648443073034,-0.097443416714668,-0.082630783319473]],[[-0.08351282030344,-0.046379704028368,0.059242058545351],[-0.044592879712582,0.019609127193689,-0.0754274725914],[0.058318041265011,-0.040717430412769,0.015160945244133]],[[0.06819449365139,-0.018716640770435,0.028519241139293],[-0.084441088140011,-0.037594009190798,0.021499887108803],[-0.052580617368221,-0.074884913861752,-0.0027277176268399]],[[0.057917267084122,0.018180280923843,-0.045700546354055],[-0.060778226703405,-0.034014984965324,0.029546584933996],[0.098397627472878,0.026926476508379,-0.056392699480057]],[[-0.0096760587766767,0.041829939931631,-0.066788583993912],[0.045337431132793,0.033533867448568,0.079122953116894],[-0.037746138870716,0.13979929685593,0.069869928061962]],[[-0.069215834140778,-0.05617843195796,-0.024827186018229],[-0.16536478698254,-0.026728793978691,-0.067441932857037],[-0.025114104151726,-0.078668773174286,0.0074929120019078]],[[0.014287454076111,-0.024078957736492,0.04129770770669],[-0.031341016292572,-0.024607272818685,0.0077786757610738],[0.063477426767349,-0.075654171407223,-0.0095863901078701]],[[-0.020071843639016,-0.2174883633852,-0.16128952801228],[-0.052966721355915,-0.13807746767998,0.019495518878102],[-0.014490766450763,-0.036855425685644,-0.023560881614685]],[[-0.056521739810705,-0.04470981284976,0.0464679710567],[-0.016238545998931,-0.039772767573595,-0.076285116374493],[0.0086683249101043,0.02741164714098,-0.018076777458191]],[[-0.040221255272627,-0.076014995574951,-0.14748460054398],[0.083467051386833,0.086741149425507,-0.073661133646965],[-0.0040696733631194,0.095565982162952,-0.020327307283878]],[[0.024638343602419,0.12563368678093,0.031367380172014],[0.042041908949614,-0.013974194414914,0.020045923069119],[-0.1266773045063,0.027473114430904,-0.073473662137985]],[[0.03545780107379,-0.056471280753613,-0.10330430418253],[-0.15307839214802,0.026142440736294,-0.1062845364213],[-0.086759574711323,0.01740332506597,0.11014158278704]],[[0.017693551257253,0.006914378143847,-0.090913169085979],[-0.032237444072962,-0.12407945841551,-0.11533689498901],[0.054623953998089,0.01172137632966,0.049664482474327]],[[0.14666147530079,-0.02888635545969,-0.01909907720983],[0.049526944756508,-0.17552435398102,0.01315438747406],[-0.21243998408318,0.09619726985693,-0.040748700499535]],[[-0.049931898713112,-0.020965185016394,-0.057938542217016],[-0.0023699870798737,0.018512791022658,-0.044721011072397],[0.0084956418722868,0.051004849374294,-0.056153420358896]],[[-0.15171630680561,0.06310797482729,0.0015174929285422],[-0.016552466899157,-0.03775304928422,0.02042056247592],[-0.072117909789085,0.037600107491016,0.049527380615473]],[[-0.028752440586686,0.058169942349195,0.04902234300971],[-0.037682965397835,-0.00081765343202278,0.12017284333706],[-0.021540116518736,-0.064360365271568,-0.027975795790553]],[[-0.15113101899624,-0.18226203322411,-0.063304759562016],[-0.07221894711256,-0.016944730654359,-0.04666318371892],[0.142862200737,-0.025652570649981,-0.0072885993868113]],[[0.072785638272762,0.018659664317966,0.056640848517418],[-0.066356517374516,0.051906563341618,-0.12644426524639],[-0.061781749129295,-0.05422480404377,0.048345789313316]],[[-0.018903499469161,0.030056180432439,0.20717842876911],[-0.06016655638814,-0.063009351491928,0.064411364495754],[-0.075401037931442,0.064707882702351,0.12021913379431]],[[-0.10107173025608,0.10921523720026,0.057914182543755],[-0.11045135557652,-0.01021889410913,0.040204890072346],[-0.012182806618512,-0.010368222370744,-0.15517395734787]],[[-0.0050445152446628,0.053357277065516,-0.046113815158606],[-0.16745141148567,0.034550443291664,-0.018955480307341],[-0.030486943200231,0.022316414862871,0.0268589630723]],[[0.0011047887383029,-0.07063589990139,0.087067447602749],[0.080492116510868,0.049368739128113,0.09369283169508],[-0.10149306803942,0.024922119453549,0.045263331383467]],[[-0.10925509780645,-0.11629501730204,-0.028455030173063],[0.079505793750286,-0.060580246150494,-0.12117096036673],[-0.044149063527584,0.031177390366793,-0.046547539532185]],[[0.092949561774731,-0.021979928016663,-0.056494705379009],[-0.051018819212914,-0.061178740113974,0.064337112009525],[-0.12556971609592,0.046491988003254,-0.0098129874095321]],[[-0.055625885725021,-0.029363580048084,-0.024175737053156],[-0.01219598390162,-0.10974626988173,0.018008643761277],[0.089383579790592,0.031747739762068,-0.0083410488441586]],[[-0.047575607895851,-0.023665994405746,-0.091459177434444],[0.10848505795002,0.011229077354074,-0.0031106614042073],[0.050218462944031,0.061735339462757,0.14420719444752]],[[-0.11670693010092,-0.015777857974172,-0.056593328714371],[0.037509832531214,-0.059618555009365,-0.014194178394973],[0.036539055407047,0.024100031703711,0.015954207628965]],[[0.11366818845272,0.034731298685074,0.059093777090311],[-0.039843503385782,-0.17604809999466,-0.17017126083374],[-0.036210022866726,0.0063230129890144,-0.022110804915428]],[[0.060179501771927,-0.016153212636709,-0.027420207858086],[-0.080750055611134,-0.0055884318426251,-0.080271951854229],[-0.1053290143609,0.037926066666842,-0.089995667338371]],[[-0.016908621415496,-0.026150427758694,0.08618376404047],[-0.0087052136659622,0.11586743593216,0.048943307250738],[-0.052363224327564,0.0801752358675,0.011110756546259]]],[[[0.076026439666748,0.041902508586645,-0.087740123271942],[0.053556591272354,-0.026131918653846,0.034835651516914],[0.032535053789616,-0.11942974478006,0.14198224246502]],[[-0.11050412803888,-0.15152654051781,-0.02997207082808],[0.0063016768544912,0.10903004556894,0.16576524078846],[0.044922038912773,0.042917281389236,0.033256746828556]],[[-0.038661159574986,0.0080961128696799,-0.031552009284496],[-0.0099811144173145,0.067520469427109,0.076407171785831],[0.05172261595726,-0.0052589499391615,-0.079869091510773]],[[0.0034827615600079,-0.022289065644145,-0.04807598516345],[0.012412140145898,-0.15800298750401,-0.044692192226648],[0.017050148919225,0.026000902056694,0.094775095582008]],[[-0.0094189764931798,-0.04470581188798,0.004670100286603],[-0.13245815038681,0.032532993704081,-0.02568956092],[-0.0024218019098043,-0.10741280764341,0.034854162484407]],[[-0.059007558971643,0.03994507342577,0.016759905964136],[-0.020804360508919,0.074074782431126,0.26819759607315],[0.010788508690894,-0.12396489083767,0.044873341917992]],[[0.012341029942036,-0.076103575527668,-0.0026354249566793],[0.048788525164127,0.028401145711541,-0.02992875315249],[-0.023787776008248,0.066652685403824,-0.0064127659425139]],[[-0.020060895010829,-0.0010134088806808,0.0067283851094544],[-0.014123202301562,-0.047991551458836,0.056671816855669],[-0.057415686547756,-0.020339585840702,0.0092934938147664]],[[-0.0033378899097443,-0.055215243250132,0.059125296771526],[-0.010156237520278,0.058698642998934,-0.0086190225556493],[-0.016517160460353,-0.030877938494086,-0.010926096700132]],[[-0.11053415387869,-0.020907314494252,-0.049098022282124],[-0.0077178506180644,-0.214380890131,0.1117043569684],[-0.12385295331478,0.11878648400307,-0.073050476610661]],[[-0.0093935998156667,0.050786554813385,0.06080761924386],[-0.00065437162993476,0.045676685869694,0.065608955919743],[0.019248146563768,-0.087887853384018,-0.045687843114138]],[[-0.13822671771049,0.029031086713076,-0.1401688605547],[0.038026049733162,-0.050587255507708,0.047099936753511],[0.033554054796696,0.054695580154657,0.020254591479897]],[[0.0087532801553607,0.044705748558044,-0.0031618860084563],[0.11425945162773,0.033880744129419,0.0017501760739833],[-0.043371982872486,0.086926393210888,0.0094137731939554]],[[0.081522867083549,-0.013771979138255,-0.013981262221932],[-0.013436110690236,0.026673778891563,-0.012467798776925],[-0.087946228682995,0.094797305762768,0.073946058750153]],[[0.076158501207829,-0.026655972003937,-0.038942914456129],[-0.0034304196015,-0.04384158924222,-0.026771483942866],[-0.05457590892911,-0.026785282418132,-0.067394554615021]],[[-0.0024312348105013,-0.0044317552819848,-0.1396768540144],[0.022397167980671,-0.063529185950756,-0.10362602770329],[-0.032086368650198,-0.01330397836864,0.025062300264835]],[[0.023826533928514,-0.028084233403206,-0.028274411335588],[0.1148706972599,-0.043797966092825,0.029706696048379],[-0.061172474175692,0.071140080690384,-0.044629268348217]],[[-0.097295887768269,-0.006520779337734,0.036947079002857],[-0.03346586227417,-0.029691364616156,0.12168900668621],[-0.012042846530676,-0.056270141154528,-0.021655639633536]],[[0.13249187171459,-0.035855572670698,-0.049786001443863],[0.041072890162468,0.088598802685738,0.057102341204882],[0.084120117127895,0.021283034235239,-0.073587127029896]],[[-0.049635402858257,0.014867178164423,0.057103291153908],[-0.065393783152103,-0.035243730992079,-0.095734544098377],[0.008314655162394,0.073465950787067,0.044414192438126]],[[0.029269954189658,0.01514870673418,0.12834538519382],[-0.020954709500074,-0.037775661796331,-0.044331632554531],[-0.090349204838276,-0.073735512793064,0.0040821507573128]],[[-0.10723303258419,-0.0017213847022504,-0.070035606622696],[-0.0070805717259645,-0.014514246024191,-0.0050551104359329],[-0.033468384295702,-0.048842210322618,0.02084712125361]],[[-0.050201997160912,-0.054541569203138,0.0059389588423073],[-0.051571276038885,-0.0029496792703867,0.0073923519812524],[0.068468123674393,-0.13946585357189,-0.018018407747149]],[[-0.040283817797899,0.0381836630404,-0.063120886683464],[0.034397833049297,-0.029987998306751,0.10099533945322],[-0.14806154370308,0.063092112541199,-0.13487415015697]],[[0.10440720617771,-0.057006571441889,0.027684900909662],[0.039215039461851,0.013305415399373,-0.065123200416565],[0.12279868125916,-0.016888460144401,-0.0038716399576515]],[[0.067648015916348,0.019408890977502,-0.0089114727452397],[0.0041987053118646,0.036463588476181,0.0086915418505669],[-0.0035399980843067,0.077226601541042,-0.033589456230402]],[[0.011063085868955,-0.043322961777449,0.094003468751907],[0.026660354807973,-0.13131560385227,-0.08620498329401],[0.034667003899813,-0.031394705176353,-0.075160682201385]],[[0.096755802631378,-0.059518586844206,-0.13669706881046],[-0.15738689899445,-0.067588150501251,0.0077971732243896],[-0.14682173728943,0.08544360101223,-0.036361198872328]],[[-0.053509425371885,-0.058064166456461,0.028063822537661],[0.033260811120272,-0.066653303802013,0.0083914687857032],[-0.10555189102888,0.22173389792442,-0.012830910272896]],[[0.017212094739079,-0.016746580600739,0.00067671429133043],[-0.012977562844753,-0.065207451581955,-0.16188597679138],[-0.0019487772369757,0.013986825942993,-0.074456766247749]],[[0.013307185843587,-0.028362272307277,-0.045263189822435],[0.052882190793753,0.069405771791935,-0.0074747442267835],[-0.05451375618577,0.038398362696171,0.071707397699356]],[[0.0074951965361834,-0.057563126087189,-0.029047377407551],[0.054304763674736,-0.095827206969261,-0.042191732674837],[-0.070431984961033,0.13733400404453,-0.07597478479147]],[[-0.032231941819191,0.0871761739254,0.10779468715191],[-0.08785692602396,-0.068961150944233,-0.086838513612747],[-0.12515437602997,0.15174548327923,0.0078617697581649]],[[0.092377975583076,-0.054457020014524,-0.044697005301714],[0.045431219041348,-0.036814395338297,-0.0055124638602138],[-0.031272139400244,0.082278542220592,-0.034120157361031]],[[-0.0027687430847436,0.0087985303252935,0.087660990655422],[-0.032381657510996,-0.054281465709209,0.057309713214636],[0.07387763261795,-0.08103459328413,0.012436340562999]],[[-0.092953033745289,-0.035038311034441,0.10418977588415],[0.027872361242771,-0.093040868639946,-0.074785158038139],[0.036829959601164,0.093671463429928,-0.028334518894553]],[[-0.10432858020067,-0.015975262969732,0.0069727106019855],[-0.011777495965362,-0.018788116052747,0.056580010801554],[-0.069212228059769,-0.0038086550775915,0.024443643167615]],[[0.12771479785442,-0.10541670769453,-0.079550452530384],[-0.17353394627571,0.049118872731924,0.017013570293784],[0.077024713158607,-0.010602571070194,0.042761899530888]],[[-0.069309361279011,-0.10961753875017,-0.018694398924708],[-0.12551242113113,-0.032094828784466,-0.001358546782285],[-0.087315335869789,-0.071584448218346,0.007919711060822]],[[-0.16282640397549,0.054126061499119,-0.11501848697662],[0.11231575906277,0.0026479319203645,0.010366388596594],[-0.15067629516125,0.071488462388515,-0.13157667219639]],[[-0.027063246816397,0.021196836605668,0.059064846485853],[-0.027842616662383,-0.10183694958687,0.025259215384722],[-0.021337052807212,-0.081487357616425,-0.054324500262737]],[[0.061524838209152,0.075511209666729,-0.029649589210749],[0.046973831951618,-0.016395140439272,0.063710607588291],[-0.12158577144146,0.0044099562801421,-0.085682742297649]],[[0.1044242978096,0.038434948772192,0.049218468368053],[-0.15479543805122,-0.087408013641834,-0.0020209481008351],[-0.084827214479446,0.13671244680882,0.05032466724515]],[[-0.0031082949135453,-0.059709019958973,-0.0051625706255436],[-0.014092051424086,-0.013622963801026,-0.11317930370569],[0.12767282128334,0.0072343656793237,0.029740579426289]],[[0.037899307906628,0.038252122700214,0.027530323714018],[-0.049138959497213,0.032943796366453,0.020842874422669],[0.029816193506122,0.093046545982361,-0.040819197893143]],[[-0.10725764930248,0.055018492043018,-0.097158409655094],[0.0055689192377031,0.052306182682514,-0.051352344453335],[7.6163589255884e-05,0.052301529794931,-0.047904320061207]],[[-0.080175079405308,0.0028329382184893,-0.084681443870068],[0.04429092258215,0.028955286368728,-0.051600553095341],[-0.072746828198433,-0.16427928209305,-0.013334397226572]],[[-0.065662279725075,-0.045342091470957,0.036853846162558],[0.054696287959814,-0.036890979856253,-0.045469626784325],[0.06764804571867,-0.037943430244923,-0.01509711984545]],[[-0.0080030793324113,-0.0060115871019661,-0.013895655050874],[-0.02253277041018,-0.011252316646278,0.068134039640427],[-0.01945566944778,0.071192838251591,0.017593093216419]],[[0.015835676342249,0.042829614132643,0.017299327999353],[-0.069861106574535,-0.017693568021059,-0.014177232049406],[0.0047622076235712,-0.0030203433707356,0.03339359909296]],[[0.031600803136826,0.089939944446087,-0.018529240041971],[-0.053217813372612,-0.088605299592018,-0.053587272763252],[-0.0032427040860057,-0.14557057619095,0.04072929173708]],[[-0.21530754864216,0.13862040638924,-0.1126930564642],[0.12908758223057,-0.024626333266497,0.14142096042633],[-0.057500012218952,0.022986993193626,-0.11530355364084]],[[-0.079551517963409,0.13400383293629,-0.062828339636326],[0.04544398188591,-0.079205587506294,0.0094593288376927],[-0.0010531791485846,0.10144160687923,-0.013348643667996]],[[-0.065329387784004,0.0392648242414,-0.041850943118334],[0.017052467912436,-0.051828466355801,0.11716120690107],[-0.037328016012907,0.015460847876966,-0.012086007744074]],[[-0.022446770220995,-0.08108015358448,-0.011928473599255],[-0.075991123914719,-0.019713884219527,-0.053105026483536],[-0.043275080621243,0.056584659963846,-0.07312735170126]],[[0.058394219726324,-0.12076515704393,-0.014530133455992],[-0.088600538671017,-0.11631380021572,-0.082420878112316],[0.04073279723525,0.10904628038406,-0.0072335251607001]],[[-0.040787361562252,-0.10165361315012,-0.11513874679804],[0.072012417018414,0.030882326886058,-0.01053917221725],[-0.044780123978853,0.021064668893814,-0.090789116919041]],[[-0.0197749491781,-0.0094502940773964,0.067830950021744],[0.0028451250400394,-0.020845059305429,-0.039485309273005],[0.027808275073767,0.0051627438515425,-0.05887058749795]],[[0.029280977323651,0.020545326173306,0.035460259765387],[-0.051183886826038,0.076450034976006,0.068369433283806],[0.030748341232538,-0.068912573158741,-0.069847136735916]],[[0.026652913540602,-0.0086551122367382,0.16397516429424],[-0.069849170744419,-0.074551291763783,-0.06251235306263],[-0.074548035860062,-0.14799897372723,0.078431680798531]],[[0.069663010537624,0.0067657218314707,-0.027445152401924],[-0.1369437277317,-0.067031718790531,-0.00092186516849324],[-0.0048104948364198,-0.081760950386524,0.048941511660814]],[[0.20496490597725,-0.064859241247177,-0.039694707840681],[-0.044315326958895,-0.027721023187041,-0.011166810058057],[-0.26957193017006,0.054210852831602,-0.016746351495385]],[[-0.051253467798233,-0.11969179660082,-0.0052457684651017],[-0.035129062831402,-0.007931181229651,0.071334563195705],[-0.0090318908914924,-0.1013662442565,0.023876558989286]],[[-0.048050753772259,0.089440152049065,-0.12591668963432],[-0.025304108858109,0.052792020142078,0.12953509390354],[-0.13434456288815,-0.0079272128641605,0.10225372761488]]],[[[-0.021523583680391,-0.17673316597939,0.023536322638392],[0.084202527999878,-0.083705313503742,0.013164322823286],[0.045942693948746,0.077552951872349,-0.093216963112354]],[[-0.026799943298101,0.070275977253914,-0.055520541965961],[-0.097557447850704,0.061436522752047,0.026086181402206],[-0.025397883728147,0.022136330604553,0.017456889152527]],[[-0.033175334334373,0.079325631260872,0.073120042681694],[0.028493294492364,-0.020731288939714,-0.0072283260524273],[-0.064276188611984,0.043709572404623,0.11643529683352]],[[0.053143329918385,-0.033448856323957,0.043305311352015],[-0.10902604460716,0.041296970099211,0.048215869814157],[0.095600113272667,0.057682480663061,-0.075252115726471]],[[0.049983579665422,-0.051211949437857,0.063656851649284],[-0.070725083351135,0.03578994423151,-0.058503217995167],[-0.038314998149872,0.0047516850754619,0.060836616903543]],[[0.021079724654555,0.025040427222848,0.005223685875535],[0.10297782719135,-0.0034762416034937,0.12143605202436],[0.095429003238678,0.11749327927828,-0.039821412414312]],[[0.046337798237801,0.020425647497177,-0.036640968173742],[-0.048714365810156,-0.041590832173824,0.11298218369484],[-0.020402390509844,-0.038279190659523,-0.088448539376259]],[[0.041760988533497,-0.020541962236166,-0.0058806668967009],[0.046476475894451,-0.060024566948414,-0.097115457057953],[-0.0061049410142004,0.031879533082247,-0.010142632760108]],[[0.019591050222516,0.0022528728004545,-0.024602266028523],[-0.030841697007418,0.022048512473702,-0.0055572097189724],[0.0034922850318253,0.023742899298668,-0.005216218996793]],[[-0.069544963538647,0.095243372023106,0.014431303367019],[-0.14686557650566,-0.066096790134907,-0.078970827162266],[0.082080915570259,0.106011711061,0.035060659050941]],[[-0.034649208188057,-0.015064806677401,-0.066292218863964],[-0.040030222386122,0.035192813724279,-0.0087116165086627],[-0.028556376695633,-0.056553769856691,0.049081586301327]],[[0.0032568811438978,-0.11834454536438,-0.041493453085423],[0.077588848769665,-0.066052280366421,0.02825491130352],[-0.08086509257555,0.099161252379417,-0.0026890968438238]],[[0.04694876074791,0.077375322580338,0.0012792160268873],[0.098894506692886,-0.11597916483879,0.026572648435831],[0.067031338810921,-0.05589360371232,0.015501524321735]],[[-0.042016204446554,-0.016366163268685,0.0030055078677833],[-0.071517527103424,-0.058789566159248,0.086426332592964],[0.1262165158987,0.047111559659243,-0.044358555227518]],[[0.031307134777308,-0.0054753036238253,0.054151516407728],[-0.085275374352932,-0.077600099146366,0.076250217854977],[-0.019895758479834,0.04122269526124,0.024978062137961]],[[0.0044949986040592,0.033703982830048,0.043369125574827],[0.043178860098124,0.019386444240808,-0.13955074548721],[-0.035056091845036,-0.08121994882822,-0.044403247535229]],[[-0.053911808878183,-0.013383182696998,-0.088887490332127],[-0.20725321769714,-0.031978491693735,0.048869602382183],[-0.0084605263546109,0.076528035104275,0.04805526137352]],[[0.014003249816597,-0.072030499577522,0.094414994120598],[-0.039832636713982,-0.09781314432621,-0.0083370562642813],[0.010538702830672,-0.059826634824276,-0.020433768630028]],[[0.098314471542835,-0.028247831389308,0.053032521158457],[0.069712989032269,0.00037524270010181,-0.023895900696516],[0.0058708898723125,-0.044699292629957,-0.14152218401432]],[[-0.075718782842159,-0.040545165538788,0.034960296005011],[-0.020938489586115,0.010720883496106,0.076073363423347],[0.02531573548913,0.14568255841732,0.035260852426291]],[[-0.10101199150085,-0.026585241779685,-0.095507219433784],[0.088405065238476,0.0041891043074429,-0.027035446837544],[0.015922693535686,0.034107893705368,0.069269552826881]],[[-0.12811666727066,0.064182579517365,0.12939096987247],[-0.13007970154285,0.015659404918551,-0.0013328568311408],[-0.0017774448497221,-0.074988275766373,-0.0021864997688681]],[[0.00375777320005,-0.027436897158623,-0.10621988773346],[-0.053307648748159,-0.059572298079729,-0.025340305641294],[0.057738695293665,-0.036623556166887,-0.046735055744648]],[[-0.014433402568102,-0.022727020084858,0.089706256985664],[0.016963228583336,-0.1374329328537,0.10652175545692],[0.006619046907872,-0.13274198770523,0.0028659503441304]],[[-0.10057305544615,-0.19387851655483,-0.15675567090511],[0.13685743510723,0.057312946766615,0.11686058342457],[-0.073002986609936,-0.00014516453666147,0.13936933875084]],[[-0.019370321184397,0.073217779397964,-0.019602289423347],[-0.069989778101444,-0.097398824989796,-0.12024231255054],[-0.030693324282765,0.19587697088718,-0.084677897393703]],[[-0.1169750392437,-0.03818541392684,-0.2136507332325],[-0.031625065952539,0.059617202728987,-0.045761812478304],[-0.021806431934237,0.12538230419159,-0.10745456069708]],[[-0.033166229724884,-0.05893163010478,0.08869481831789],[-0.16800078749657,0.048546742647886,0.020168162882328],[0.092508912086487,0.0086138201877475,-0.045933093875647]],[[-0.077098995447159,0.042581241577864,0.15186198055744],[-0.071998335421085,-0.062559582293034,-0.067446865141392],[0.059031266719103,0.039029017090797,0.06466706097126]],[[0.046906322240829,-0.19144526124001,0.10617778450251],[-0.071186937391758,-0.059854879975319,-0.020760891959071],[-0.10297357290983,0.08795303106308,0.053188033401966]],[[-0.12671807408333,-0.10908663272858,-0.13224194943905],[0.12014517188072,0.10692787915468,-0.037078808993101],[0.054307606071234,0.0036601487081498,-0.056074026972055]],[[-0.15747539699078,0.018251851201057,0.085679069161415],[0.011030843481421,0.0040574907325208,0.050787683576345],[0.028159838169813,0.054852448403835,0.022781033068895]],[[0.053284768015146,0.1255404651165,-0.023084502667189],[-0.00023348881222773,0.063238404691219,-0.044904604554176],[0.044195979833603,0.042968187481165,-0.069410689175129]],[[-0.070801347494125,-0.1146824657917,-0.023289686068892],[-0.094295755028725,0.0064194877631962,-0.16998772323132],[0.029946578666568,0.0072571439668536,-0.034155249595642]],[[0.052661195397377,0.014930054545403,-0.00067790859611705],[-0.075463838875294,-0.12942603230476,0.0082065183669329],[0.11068672686815,-0.062622055411339,-0.02746706455946]],[[-0.13624764978886,0.021273851394653,-0.054265502840281],[-0.15151600539684,0.10340955108404,0.034331802278757],[-0.093425109982491,0.077601067721844,-0.012306856922805]],[[-0.11244105547667,-0.001882131327875,-0.0060497941449285],[0.051458142697811,-0.052124489098787,-0.0055361911654472],[-0.0040735797956586,-0.051495097577572,-0.0035909223370254]],[[-0.044196851551533,-0.012138216756284,0.037434663623571],[0.062846772372723,0.082451067864895,0.019824393093586],[-0.0055011147633195,-0.028291869908571,0.039793685078621]],[[-0.13650105893612,0.077046349644661,0.10034038126469],[0.093187883496284,0.1500222235918,0.067976146936417],[0.01756020821631,0.12793165445328,-0.044557746499777]],[[0.047474458813667,-0.024880323559046,0.046096939593554],[-0.012209363281727,0.099626928567886,-0.10194803029299],[0.040250025689602,0.071337223052979,0.0032176156528294]],[[-0.055524714291096,-0.069246210157871,-0.053193192929029],[0.0086411843076348,-0.031204791739583,-0.0089587587863207],[-0.033894345164299,-0.085219539701939,0.026941692456603]],[[-0.18167072534561,-0.026145197451115,0.098896898329258],[0.022417267784476,0.050888378173113,-0.028681132942438],[0.072543025016785,0.020387975499034,0.008488685823977]],[[-0.15761010348797,-0.20496740937233,0.048737678676844],[-0.078655213117599,0.024749267846346,0.015102863311768],[-0.026923671364784,-0.058328062295914,0.013159989379346]],[[-0.12162333726883,0.0020497392397374,-0.0076836012303829],[0.047958739101887,0.067707158625126,0.029720038175583],[-0.048199184238911,-0.069042660295963,0.028466993942857]],[[-0.080702841281891,-0.062245294451714,0.00019254672224633],[0.0059832176193595,-0.038072302937508,-0.026854228228331],[-0.075607106089592,-0.056626264005899,0.14784853160381]],[[-0.068475335836411,-0.063330106437206,0.15223217010498],[-0.062159638851881,-0.023175749927759,0.16114746034145],[0.072749555110931,-0.080669440329075,0.016593802720308]],[[-0.24204643070698,-0.071648865938187,0.00095379102276638],[-0.075729086995125,-0.080325111746788,-0.081969410181046],[-0.049385145306587,-0.066277928650379,0.040433194488287]],[[-0.13136111199856,0.049456808716059,-0.033796198666096],[-0.19169498980045,-0.013357755728066,0.044578835368156],[-0.011502105742693,0.08143824338913,-0.019361786544323]],[[-0.0025261205155402,0.019468422979116,-0.21890816092491],[0.021747788414359,0.026032151654363,0.064814209938049],[-0.04003219306469,0.11305183917284,-0.00011434190673754]],[[-0.061297748237848,-0.01480966899544,0.11763828247786],[0.03871826082468,-0.036273203790188,0.039551921188831],[-0.086051657795906,0.037159584462643,-0.012233067303896]],[[-0.050570860505104,0.041078150272369,0.10781303048134],[-0.010373354889452,-0.038537181913853,-0.12634988129139],[-0.051512721925974,-0.035876475274563,-0.010189037770033]],[[-0.060954034328461,0.061206188052893,0.002010359428823],[0.039837531745434,0.10200599581003,-0.1005332171917],[0.033771108835936,0.051299497485161,0.010770893655717]],[[0.070168755948544,0.030726367607713,-0.16083268821239],[0.0602424480021,0.16544122993946,-0.0013866185909137],[0.016636624932289,-0.08675117790699,0.12413428723812]],[[0.016615159809589,0.011051746085286,0.056554041802883],[-0.067863754928112,0.15013863146305,0.095487862825394],[0.11369137465954,-0.0028501297347248,0.26518785953522]],[[0.014654575847089,0.030460089445114,0.06700836122036],[0.039153411984444,-0.053525023162365,0.062099285423756],[-0.13933520019054,-0.04557428508997,-0.099518731236458]],[[-0.062608823180199,-0.086159534752369,0.013786026276648],[-0.014806072227657,0.036628939211369,0.010792019777],[-0.078274644911289,-0.058367721736431,-0.062348462641239]],[[-0.071621380746365,-0.0068671256303787,-0.18708653748035],[0.015680059790611,-0.058234702795744,-0.13996586203575],[-0.041161350905895,-0.051195070147514,0.14888216555119]],[[0.15527983009815,-0.0021027280017734,-0.051635198295116],[-0.10259966552258,0.073326073586941,-0.18300272524357],[-0.014522764831781,0.066663853824139,0.035841416567564]],[[0.14464017748833,0.076430752873421,-0.058951839804649],[0.046200279146433,-0.023386165499687,-0.11744692921638],[-0.045587860047817,0.12412013858557,-0.012669151648879]],[[-0.015039888210595,-0.14100658893585,0.0055764117278159],[0.039951127022505,0.083128742873669,0.2340994477272],[-0.019391868263483,-0.053351283073425,0.018892051652074]],[[0.11032623797655,-0.1376890540123,-0.054392721503973],[0.025074055418372,-0.023891882970929,0.057540569454432],[0.0013370694359764,0.067483127117157,0.093999519944191]],[[-0.017341643571854,-0.14641697704792,-0.022360950708389],[0.057533904910088,0.10692820698023,0.051265310496092],[-0.079239226877689,-0.030068250373006,0.062386736273766]],[[-0.05094887316227,0.070754900574684,0.11248084902763],[0.0055282437242568,0.024899855256081,0.025445597246289],[0.0037792541552335,-0.063817113637924,0.046814251691103]],[[0.0502706207335,-0.014990271069109,0.12302585691214],[0.089061595499516,-0.091172754764557,-0.099401339888573],[0.13572427630424,-0.0021687659900635,-0.085161976516247]]],[[[-0.077522121369839,-0.072915874421597,-0.042038396000862],[-0.089519195258617,0.030568378046155,0.032517656683922],[0.052237395197153,-0.020620502531528,0.011450033634901]],[[0.062739938497543,-0.046332135796547,0.093564935028553],[-0.014227061532438,-0.0023210963699967,-0.096450731158257],[-0.10882147401571,-0.14612306654453,-0.050710469484329]],[[-0.06557922065258,-0.069527328014374,-0.056108769029379],[-0.070660747587681,-0.065483018755913,-0.11694674193859],[0.04335543513298,-0.057975374162197,-0.04560337215662]],[[-0.025834426283836,0.02959050424397,-0.017533348873258],[-0.015183672308922,-0.061534009873867,-0.019764179363847],[-0.019498506560922,-0.018075931817293,-0.0019407420186326]],[[-0.10413853824139,0.034596152603626,-0.018459044396877],[0.024070145562291,-0.0065053873695433,-0.001172382151708],[0.039003241807222,-0.11053072661161,0.074757918715477]],[[0.19690242409706,0.006028737872839,-0.013193607330322],[-0.017936524003744,0.22275079786777,-0.11409420520067],[0.099231086671352,0.077193506062031,0.097690746188164]],[[-0.0036791935563087,-0.14012968540192,-0.050114311277866],[-0.093345962464809,-0.10349277406931,0.085195280611515],[-0.084955342113972,-0.17168600857258,0.067978754639626]],[[-0.0099793989211321,0.042838506400585,-0.047291185706854],[0.039363816380501,0.0090497294440866,-0.034479603171349],[-0.11891031265259,0.012974311597645,-0.15398539602757]],[[0.11273986846209,0.076486691832542,0.027346836403012],[-0.03403352200985,0.016012506559491,-0.046136494725943],[-0.027408489957452,-0.05300659313798,-0.084385432302952]],[[0.091006197035313,-0.082486189901829,-0.0074495282024145],[0.09664361923933,0.14220413565636,-0.020948680117726],[-0.067345336079597,0.027440080419183,0.034399472177029]],[[-0.011439653113484,-0.066124953329563,0.057607404887676],[0.0013833570992574,0.063889592885971,-0.023657293990254],[-0.0019254230428487,-0.092603474855423,-0.087865941226482]],[[-0.079876430332661,-0.084674842655659,-0.064601898193359],[0.024895943701267,0.05936586484313,-0.12587234377861],[-0.0067196660675108,-0.059411220252514,-0.090836271643639]],[[-0.076854020357132,-0.013788831420243,0.005744663067162],[-0.014651110395789,-0.10462697595358,-0.034258686006069],[0.040057554841042,0.00028939050389454,0.028442459180951]],[[-0.077803745865822,-0.09059389680624,-0.074233725667],[0.055509179830551,-0.0098312282934785,-0.030988935381174],[0.024954475462437,-0.025319963693619,-0.012421241030097]],[[-0.086147479712963,-0.050053406506777,-0.077392414212227],[-0.026954088360071,0.00034975045127794,0.15999031066895],[-0.093208946287632,-0.071828715503216,-0.13044089078903]],[[0.0017829238204286,0.03031262382865,-0.04863454028964],[0.010274901986122,0.07547839730978,0.00028565863613039],[0.090965427458286,0.0045656492002308,-0.030348040163517]],[[0.15208268165588,-0.077697113156319,-0.11683686077595],[-0.034694347530603,-0.12613081932068,0.066007234156132],[-0.34645485877991,-0.24735583364964,0.070005163550377]],[[-0.0077763171866536,0.14833322167397,0.052894715219736],[-0.012960490770638,0.044062923640013,-0.090136513113976],[-0.16040694713593,-0.075007617473602,0.06183610484004]],[[0.065498046576977,0.024476367980242,-0.0084489108994603],[0.15831495821476,0.070714555680752,-0.067813090980053],[0.15142914652824,0.026391167193651,-0.059494648128748]],[[-0.022502727806568,0.10675742477179,0.067501790821552],[0.029398709535599,-0.024381810799241,0.022291822358966],[-0.044080302119255,0.020232569426298,0.034699477255344]],[[0.023042419925332,0.030215920880437,-0.039316814392805],[0.036537896841764,0.078309863805771,-0.17699670791626],[-0.15467359125614,-0.08488055318594,0.026803197339177]],[[-0.1531897187233,-0.16410160064697,0.061354756355286],[-0.11726504564285,-0.097471997141838,0.075849071145058],[0.078969903290272,-0.0073922672308981,0.075170785188675]],[[-0.084865510463715,0.082062885165215,0.052248030900955],[0.059553429484367,0.040722977370024,0.12558288872242],[0.039614349603653,-0.096343658864498,-0.027871169149876]],[[0.11593889445066,-0.048758756369352,-0.10372546315193],[-0.13129456341267,0.14693175256252,0.0021844517905265],[-0.13838535547256,-0.057676084339619,0.062862738966942]],[[-0.051454816013575,0.019833752885461,-0.098587177693844],[-0.042464252561331,0.017781408503652,-0.061913184821606],[-0.11979181319475,0.13024991750717,0.17072035372257]],[[0.095422975718975,0.004193754401058,-0.015417650341988],[0.0050840335898101,-0.10356735438108,-0.18347625434399],[-0.11213797330856,-0.16550926864147,-0.18799506127834]],[[0.091626681387424,-0.11353337019682,-0.061940312385559],[-0.012820050120354,-0.00051279971376061,0.02601851336658],[0.072210125625134,0.11549353599548,0.07525347173214]],[[-0.0848458558321,-0.092755265533924,0.06823306530714],[-0.10344787687063,-0.10675192624331,0.1688955873251],[0.018227586522698,0.14656925201416,-0.0128487739712]],[[0.059286005795002,-0.064061835408211,-0.0029940395615995],[0.031720813363791,-0.060280475765467,-0.044803380966187],[-0.089902818202972,-0.0040448727086186,0.042293414473534]],[[-0.20216244459152,-0.037505365908146,-0.13397170603275],[-0.091685980558395,0.0078740920871496,0.050639655441046],[0.059027243405581,0.017840405926108,0.17772653698921]],[[0.16530084609985,-0.028624659404159,0.034884914755821],[0.11055030673742,0.092560030519962,-0.021513644605875],[-0.085084289312363,-0.16061295568943,-0.0093328151851892]],[[0.024105966091156,0.058027543127537,0.12535311281681],[-0.035897377878428,-0.018573669716716,0.068752244114876],[0.045963406562805,0.010882388800383,-0.098396889865398]],[[0.069375641644001,0.05081919208169,0.14156590402126],[0.11210380494595,0.068596661090851,0.032586596906185],[0.1001213118434,-0.044636763632298,-0.071054764091969]],[[-0.10043530166149,-0.052835337817669,-0.10291573405266],[0.035520292818546,-0.088117614388466,-0.043932449072599],[0.0059820069000125,-0.034958083182573,-0.004289691336453]],[[-0.086115770041943,0.074406988918781,-0.020293755456805],[0.031895086169243,0.041809774935246,0.046205926686525],[-0.050346422940493,-0.048759467899799,-0.02614364773035]],[[0.021205144003034,-0.076175346970558,-0.099600315093994],[0.083373390138149,-0.063701063394547,-0.03584698587656],[0.045991413295269,0.061265837401152,0.092223450541496]],[[-0.0043892087414861,0.034052416682243,0.11048995703459],[0.026085847988725,0.071050770580769,0.01438644900918],[0.1253304630518,0.095512472093105,-0.02723472006619]],[[0.0044241724535823,0.056613232940435,0.023402620106936],[0.03163443878293,-0.0071998289786279,-0.0029134147334844],[0.040574699640274,-0.23201136291027,-0.10475730150938]],[[-0.011341963894665,-0.00796561781317,-0.0065082237124443],[-0.021521359682083,0.03931076079607,-0.035670261830091],[-0.074794851243496,0.019064910709858,-0.060575060546398]],[[0.014803063124418,0.027155876159668,0.044390298426151],[0.011106981895864,0.097535841166973,0.014473311603069],[0.064227536320686,0.11185776442289,-0.023049786686897]],[[0.12121875584126,-0.04005154967308,-0.075571797788143],[-0.031140213832259,-0.045158840715885,-0.068832561373711],[0.034442387521267,0.15759232640266,0.064121901988983]],[[-0.021991342306137,-0.11962507665157,-0.048452254384756],[-0.076570115983486,-0.0070464042946696,-0.080631539225578],[-0.17088600993156,-0.018910519778728,-0.0062967902049422]],[[-0.099257253110409,-0.14443975687027,-0.084529280662537],[-0.15314802527428,-0.0026671858504415,0.064512096345425],[-0.095371253788471,-0.036511849611998,-0.057152047753334]],[[-0.044657163321972,-0.046715345233679,0.0053758486174047],[-0.0027282831724733,0.067754946649075,0.057502921670675],[0.066311277449131,-0.061307087540627,0.13308790326118]],[[-0.13913352787495,-0.057198457419872,-0.0097448332235217],[-0.22102779150009,-0.0024876126553863,0.010316273197532],[0.0055111716501415,0.067955203354359,0.010115062817931]],[[-0.065484128892422,0.068363413214684,0.10959303379059],[-0.037985350936651,0.040990643203259,0.041365515440702],[-0.14372599124908,0.090742595493793,-0.063055925071239]],[[0.066229693591595,-0.017618732526898,0.10700714588165],[0.01480371505022,-0.022777397185564,-0.13160569965839],[-0.022479604929686,-0.01383531652391,-0.063667565584183]],[[-0.061379376798868,0.0139698991552,0.0049603646621108],[-0.0064209327101707,0.015195475891232,-0.082538038492203],[0.071713715791702,-0.056104492396116,-0.05602990463376]],[[0.030775399878621,0.027126625180244,-0.030513383448124],[0.046994425356388,0.035426191985607,-0.1845733076334],[-0.071548119187355,-0.12202139943838,-0.090785562992096]],[[-0.097301602363586,-0.12762045860291,0.023280108347535],[-0.047093119472265,0.0093537317588925,0.016408033668995],[-0.0062868651002645,0.10334353893995,0.089207321405411]],[[-0.045455511659384,-0.061322253197432,-0.03615353628993],[-0.042612563818693,-0.063859902322292,-0.080170392990112],[0.018440321087837,-0.044720415025949,-0.00037118588807061]],[[0.023110512644053,-0.036360345780849,-0.10657545179129],[0.063999690115452,-0.036746460944414,-0.080859541893005],[0.049210112541914,0.22601865231991,-0.012708862312138]],[[0.1158557087183,0.019366186112165,-0.012580164708197],[0.075116224586964,-0.1315578520298,-0.1476236730814],[0.096306167542934,-0.0038768362719566,-0.0063359765335917]],[[-0.11169890314341,-0.045424144715071,-0.083747528493404],[-0.098524309694767,-0.10417829453945,0.033169902861118],[-0.1089985370636,-0.057394672185183,0.078744515776634]],[[-0.021787080913782,-0.066259644925594,-0.0052644712850451],[-0.04615581035614,-0.069808810949326,-0.0023961826227605],[-0.061169188469648,0.057356506586075,-0.15266117453575]],[[0.046670291572809,-0.20496575534344,-0.086770974099636],[-0.018424905836582,-0.13091485202312,-0.055827774107456],[-0.033720910549164,0.082896068692207,-0.032649207860231]],[[-0.04681084305048,-0.035102061927319,-0.031951740384102],[-0.12075790762901,-0.075323268771172,-0.011148194782436],[-0.12526778876781,-0.045590993016958,0.11714988201857]],[[0.010904111899436,-0.032606333494186,-0.047713257372379],[-0.073817104101181,-0.10915452241898,-0.046711880713701],[-0.083303548395634,-0.040326107293367,0.025742188096046]],[[0.063830800354481,0.0020937621593475,0.076803900301456],[0.15099866688251,0.011626582592726,-0.050478715449572],[-0.034851267933846,-0.0080386037006974,-0.018051268532872]],[[0.046870734542608,0.0063067395240068,0.013623744249344],[-0.079141065478325,0.0781085267663,-0.058165669441223],[-0.14779050648212,0.029722349718213,-0.027453178539872]],[[0.081955648958683,-0.018075868487358,0.11365875601768],[-0.18794383108616,-0.11583855748177,-0.073213838040829],[-0.097164154052734,-0.04842521622777,0.054929260164499]],[[-0.077923513948917,-0.034382168203592,-0.25970748066902],[-0.17812190949917,0.11410547792912,0.15920341014862],[0.017576269805431,-0.18365089595318,-0.13584640622139]],[[-0.1249885186553,-0.0019619141239673,-0.0032248117495328],[-0.11205379664898,-0.015523348934948,0.0076435022056103],[-0.072790779173374,-0.0096110673621297,0.065932057797909]],[[-0.001396749750711,0.093986220657825,-0.14415045082569],[-0.087888725101948,-0.2248652279377,-0.12868720293045],[-0.29396286606789,-0.041361998766661,0.065117530524731]]],[[[-0.029760304838419,-0.0021867447067052,0.043520644307137],[-0.026932027190924,0.11097390949726,-0.04131643101573],[0.05436672270298,-0.063821963965893,-0.03811427205801]],[[0.016888929530978,0.063277684152126,0.15614515542984],[-0.046521157026291,0.099560245871544,0.030902355909348],[-0.0092201540246606,0.098687686026096,-0.020017888396978]],[[0.0064313444308937,0.0036207290831953,-0.1532681286335],[0.099572837352753,-0.0063750217668712,-0.12942123413086],[0.040943201631308,-0.044888559728861,-0.11052557080984]],[[-0.022878618910909,0.070649169385433,0.015852324664593],[0.015798540785909,-0.060638226568699,-0.0079672737047076],[-0.025902548804879,-0.028522223234177,-0.061495583504438]],[[-0.00091263087233528,-0.083889156579971,0.025952350348234],[0.057922873646021,0.082907140254974,0.015963479876518],[-0.028556948527694,0.098157271742821,0.010782901197672]],[[-0.056772690266371,-0.12888893485069,0.010586351156235],[0.15826258063316,0.06273790448904,-0.13372999429703],[0.11784709990025,0.10448255389929,0.1539121568203]],[[0.016533676534891,0.10795602202415,-0.10724041610956],[0.022306038066745,-0.061921756714582,0.024007085710764],[-0.034278631210327,-0.030991353094578,-0.020217142999172]],[[0.071369625627995,0.015755901113153,0.01550873555243],[-0.045998778194189,0.0064753144979477,-0.099121227860451],[0.0329450070858,0.075798213481903,0.032864890992641]],[[-0.00012251309817657,0.062320094555616,0.080908432602882],[0.00072860793443397,0.025367617607117,0.00029702932806686],[-0.10723815113306,-0.072357900440693,-0.013847151771188]],[[-0.046557269990444,-0.095278196036816,-0.0047200275585055],[-0.063963264226913,-0.07981164753437,-0.023511093109846],[-0.084931530058384,-0.035314060747623,-0.042171403765678]],[[0.051950875669718,0.0028847039211541,-0.067180074751377],[-0.0082255126908422,-0.022154865786433,-0.054901611059904],[0.010681284591556,0.066527098417282,-0.083983018994331]],[[-0.022339450195432,-0.00029146767337807,0.017311571165919],[-0.10025019198656,-0.037967469543219,-0.015611050650477],[-0.047527678310871,-0.01467795111239,-0.11491762846708]],[[0.084021106362343,0.051871288567781,0.087751418352127],[0.075473248958588,0.033038832247257,0.0052655036561191],[-0.049296103417873,0.028726436197758,-0.14660467207432]],[[0.0084348479285836,0.087564378976822,0.11677435785532],[-0.032520450651646,-0.07720060646534,0.027633376419544],[0.0013844028580934,-0.1123498827219,-0.15727636218071]],[[0.035324145108461,0.11309096962214,-0.035714302212],[-0.06941619515419,-0.042539145797491,-0.10885690897703],[0.089126631617546,-0.057695627212524,-0.024964369833469]],[[-0.078514195978642,-0.049245562404394,0.031853564083576],[0.0065244855359197,-0.14078825712204,0.014867751859128],[-0.058112718164921,-0.068190984427929,0.046275217086077]],[[-0.044333510100842,-0.026229526847601,0.01736512966454],[-0.011060732416809,0.0025288220494986,0.048339575529099],[-0.053168147802353,0.0096186604350805,-0.065437197685242]],[[0.040173403918743,-0.024055557325482,0.075410269200802],[-0.081133373081684,0.060987532138824,0.086277663707733],[-0.0044350596144795,0.034693092107773,0.019679287448525]],[[0.053373958915472,-0.044542215764523,-0.12737391889095],[-0.02946106530726,0.098758324980736,0.0058300131931901],[0.0083841355517507,-0.027235932648182,-0.017766090109944]],[[0.021737249568105,0.029815729707479,0.038558859378099],[-0.053580682724714,-0.084147050976753,-0.014049018733203],[0.018256912007928,0.073541350662708,-0.042370047420263]],[[0.064704239368439,0.060111310333014,0.059766732156277],[0.040824677795172,0.061795450747013,0.0061318101361394],[-0.1836472004652,-0.12935203313828,0.020709745585918]],[[-0.11362786591053,-0.14493034780025,0.029463551938534],[-0.089444935321808,-0.085828296840191,-0.14277650415897],[0.037688504904509,-0.0084075769409537,-0.0032304644118994]],[[-0.047249216586351,-0.18354766070843,-0.16976475715637],[0.012730679474771,0.056180898100138,-0.0023088769521564],[0.09290786087513,-0.032410781830549,0.017608666792512]],[[0.015476507134736,0.080524310469627,-0.080539807677269],[-0.099745966494083,-0.10712061077356,-0.08082427829504],[-0.21291933953762,-0.077708005905151,-0.0013426536461338]],[[0.10578456521034,0.21780177950859,-0.066744223237038],[-0.034300684928894,0.10023291409016,-0.025768779218197],[0.14406944811344,-0.02670538239181,0.052440572530031]],[[-0.075527764856815,0.096483930945396,-0.07170731574297],[0.038109492510557,-0.23707772791386,0.0093232719227672],[-0.08113332092762,-0.062648832798004,-0.11457723379135]],[[0.043487288057804,-0.042537599802017,-0.13421355187893],[0.020645650103688,-0.013553058728576,-0.02832892909646],[0.047054581344128,-0.021972922608256,-0.21958123147488]],[[-0.1945461332798,0.0078867431730032,0.13528747856617],[-0.16568851470947,-0.089278869330883,0.1060354039073],[-0.021311327815056,0.005690042860806,0.14177890121937]],[[0.03353276476264,0.021412536501884,0.074387669563293],[0.0020222479943186,-0.070020012557507,0.071734592318535],[-0.13446418941021,-0.034940991550684,0.046526439487934]],[[0.083369933068752,0.025802560150623,0.0096218939870596],[0.083762295544147,0.054683066904545,-0.11711059510708],[-0.019945565611124,0.045135550200939,0.061485480517149]],[[0.0037427574861795,0.0060841324739158,0.090325467288494],[-0.046928193420172,-0.0071915634907782,0.033445216715336],[-0.034849893301725,0.065143801271915,-0.025539623573422]],[[-0.10190329700708,-0.047558456659317,0.0057847923599184],[0.04042598977685,0.056994765996933,-0.00078337220475078],[-0.088841713964939,0.04916312918067,-0.0013106145197526]],[[-0.058040775358677,-0.0094167841598392,0.026214972138405],[0.044809237122536,0.075788877904415,-0.042378254234791],[0.041108552366495,0.039810132235289,-0.13372091948986]],[[0.09689174592495,0.06227670237422,-0.033585220575333],[0.079699762165546,-0.018553350120783,0.029203115031123],[0.064230941236019,0.020935591310263,-0.051434241235256]],[[-0.043900091201067,0.0077677275985479,0.095432803034782],[-0.052191223949194,0.035919349640608,0.16731119155884],[-0.053040605038404,0.030224287882447,0.071817025542259]],[[0.10854209959507,0.018745861947536,0.080622181296349],[-0.035762425512075,0.028070140630007,0.047320511192083],[-0.015962859615684,0.049489364027977,0.01594640314579]],[[-0.026498824357986,0.133151486516,-0.18086114525795],[-0.01970393769443,0.013187556527555,0.048320319503546],[0.0075585078448057,0.075808688998222,0.087578818202019]],[[-0.0035567020531744,-0.065373755991459,-0.033767085522413],[0.0057752332650125,0.011321499012411,-0.070268802344799],[-0.10461952537298,0.047120202332735,-0.037688571959734]],[[-0.018761863932014,0.05561925843358,-0.059839341789484],[-0.048212591558695,-0.12772826850414,-0.076572336256504],[-0.040797524154186,-0.031072862446308,-0.084672175347805]],[[-0.01047667209059,0.065011382102966,0.060358591377735],[-0.069443665444851,-0.036971755325794,0.070531956851482],[-0.052594166249037,-0.053842898458242,0.13336350023746]],[[-0.040632624179125,0.052108466625214,-0.0099286269396544],[0.038988243788481,0.028023775666952,0.037457145750523],[0.005503614898771,-0.040234994143248,0.11015836149454]],[[0.081911072134972,-0.01415554061532,0.028824158012867],[0.073358722031116,0.084107153117657,-0.12508916854858],[0.20518869161606,0.029049798846245,0.072086609899998]],[[-0.030922245234251,0.061476279050112,0.0037736441008747],[0.021061614155769,-0.039651554077864,-0.1020855307579],[0.037272121757269,0.02917636744678,-0.15618321299553]],[[0.1010620072484,0.0076669012196362,-0.13463063538074],[0.027763037011027,-0.019327899441123,-0.051017060875893],[0.057684130966663,0.080488570034504,-0.059687323868275]],[[-0.00011772358993767,0.033123467117548,0.020078806206584],[-0.080205015838146,0.073104918003082,0.033499367535114],[0.070448443293571,-0.019877886399627,-0.05088322609663]],[[-0.06869113445282,-0.04421229660511,-0.02870667912066],[-0.14273925125599,-0.049374010413885,-0.0066042835824192],[-0.073639273643494,-0.075953796505928,0.00045948423212394]],[[-0.020832918584347,-0.05911211296916,0.034815013408661],[0.019933370873332,-0.007962497882545,-0.0099634695798159],[-0.058985441923141,-0.026560828089714,-0.041244156658649]],[[0.057877935469151,-0.029161674901843,0.018471032381058],[0.013186356052756,0.057381447404623,0.022463427856565],[0.036401487886906,0.016709269955754,0.032459806650877]],[[0.058440674096346,-0.019319094717503,-0.057138424366713],[0.042280316352844,0.060280870646238,-0.048926994204521],[-0.061690114438534,0.016690850257874,-0.14445312321186]],[[-0.0059112389571965,-0.0310541652143,-0.097092308104038],[0.003703850787133,-0.0044067339040339,0.0069594923406839],[0.089762486517429,0.064121663570404,0.0016142962267622]],[[-0.020448436960578,0.05418161675334,-0.10873168706894],[-0.07768027484417,-0.15660078823566,-0.067447669804096],[0.016808202490211,0.012612820602953,-0.11366121470928]],[[0.006217016838491,0.0065455609001219,-0.11107558757067],[-0.0010232352651656,0.0047197733074427,-0.025183830410242],[0.018655402585864,0.13362634181976,0.043683093041182]],[[-0.038158006966114,-0.078801743686199,0.0048953155055642],[7.2854381869547e-05,-0.045899901539087,0.081759698688984],[0.0038990995381027,0.002621159888804,-0.086924761533737]],[[0.065710507333279,0.0395134575665,0.025388188660145],[0.084587678313255,0.024556187912822,0.059689648449421],[-0.083912581205368,-0.17076681554317,0.10230243951082]],[[0.024982769042253,0.04243466258049,0.077984042465687],[0.032327339053154,-0.040112968534231,0.076083958148956],[0.083765603601933,0.082730770111084,0.046471707522869]],[[0.017421683296561,0.028455669060349,0.056510251015425],[0.11633093655109,0.038574703037739,0.10917186737061],[0.013822827488184,0.02433886565268,-0.034533280879259]],[[-0.0062787397764623,-0.16328085958958,-0.00034442084142938],[-0.016118552535772,-0.061735276132822,-0.12209808081388],[-0.0047682756558061,-0.044895935803652,-0.11316274106503]],[[0.05985551327467,0.16120520234108,0.017488276585937],[0.059359099715948,0.036737561225891,-0.048081181943417],[-0.0030396236106753,0.048277158290148,-0.15101455152035]],[[0.047487337142229,-0.099644556641579,-0.02287189848721],[0.05261068791151,-0.02552555501461,-0.031346943229437],[0.14617945253849,0.013942585326731,0.031019732356071]],[[-0.11890634149313,0.056532800197601,-0.050764057785273],[-0.002269747434184,0.042893152683973,-0.021931625902653],[0.10430017113686,0.055788118392229,0.011223991401494]],[[0.066474884748459,0.024456094950438,-0.057109966874123],[0.10034397244453,-0.0086625311523676,-0.015295905061066],[0.022573608905077,0.013488791882992,-0.15420147776604]],[[-0.019753843545914,-0.081388540565968,0.18491640686989],[-0.0033494429662824,-0.031778786331415,-0.072492554783821],[-0.15854670107365,-0.06278320401907,0.087539613246918]],[[-0.050033513456583,0.036529995501041,0.060121338814497],[-0.078910991549492,-0.060544613748789,0.083926051855087],[-0.033429570496082,-0.12303749471903,0.013914153911173]],[[0.026265932247043,-0.012276680208743,0.077895611524582],[0.043274395167828,0.13095316290855,0.090450152754784],[-0.10364390164614,0.062931515276432,0.21545580029488]]],[[[0.11212545633316,0.053608518093824,0.1522218734026],[-0.061555985361338,0.080619856715202,-0.059811662882566],[0.0053324825130403,-0.078076131641865,-0.030479457229376]],[[0.081452712416649,0.13252022862434,-0.016815360635519],[-0.015927795320749,-0.015826081857085,-0.036281611770391],[0.006430062931031,-0.0001583711564308,0.027015218511224]],[[-0.040734957903624,-0.013140888884664,-0.0014145957538858],[-0.0081894574686885,0.0069529912434518,0.127949655056],[0.036492347717285,0.054478581994772,0.050739835947752]],[[0.085267871618271,0.026444477960467,-0.022386241704226],[0.0041511966846883,-0.050296097993851,-0.16635131835938],[0.044015046209097,0.06739853322506,0.099234074354172]],[[0.066202081739902,-0.029860757291317,-0.050935626029968],[-0.081056483089924,0.14721766114235,0.051460478454828],[-0.073114842176437,0.051244106143713,-0.037979952991009]],[[0.013535848818719,-0.066339746117592,0.076863743364811],[0.10090481489897,-0.084396503865719,-0.0165039524436],[0.066560462117195,-0.019989628344774,-0.061669789254665]],[[0.035004109144211,0.063873171806335,0.056433983147144],[-0.039965692907572,-0.034423731267452,-0.10028149187565],[-0.01863163523376,-0.091195523738861,0.0092151314020157]],[[-0.0048219333402812,-0.024156095460057,0.067063614726067],[0.10574331134558,-0.022059166803956,-0.096874132752419],[-0.01469543389976,0.047181434929371,-0.012940085493028]],[[-0.04645037278533,-0.12618309259415,-0.041206363588572],[0.045458991080523,0.036837186664343,0.080973222851753],[0.026113258674741,0.035197470337152,-0.038613844662905]],[[-0.16342064738274,-0.14128023386002,-0.0069731073454022],[-0.21396487951279,-0.086040616035461,0.018782766535878],[-0.1446085870266,-0.0042600082233548,-0.1263610124588]],[[0.059844966977835,0.16433711349964,0.054827630519867],[0.040122877806425,0.014386357739568,-0.021361213177443],[-0.04747911542654,-0.031060811132193,-0.096345484256744]],[[-0.05218106880784,0.0046357717365026,-0.018496464937925],[-0.028658580034971,0.078858733177185,0.062842585146427],[0.039742957800627,0.015828905627131,0.021967116743326]],[[-0.11878112703562,-0.02220412530005,0.051827847957611],[-0.0077643636614084,0.10094710439444,0.058683700859547],[0.053074575960636,0.087402507662773,0.060932941734791]],[[-0.040756244212389,-0.056142710149288,0.088185653090477],[-0.014435242861509,-0.079755619168282,-0.067446582019329],[0.019732872024179,-0.027543039992452,0.095188923180103]],[[-0.09666932374239,-0.18408228456974,0.023911502212286],[0.047517031431198,0.011603694409132,0.031646851450205],[0.003276823554188,0.080883592367172,0.094265550374985]],[[-0.12889915704727,-0.013656862080097,-0.083267763257027],[0.14787440001965,-0.014834272675216,-0.11939010024071],[0.093271687626839,0.15577602386475,-0.13248331844807]],[[0.0085947690531611,0.026097441092134,0.016196426004171],[0.013303341343999,0.032913524657488,-0.11104851961136],[0.0063602500595152,-0.01282203476876,0.047826442867517]],[[-0.049947164952755,0.016562003642321,-0.099923349916935],[0.04733369871974,-0.10685441643,0.028334725648165],[-0.063800610601902,-0.021265221759677,0.081730239093304]],[[-0.014430688694119,0.015240130014718,0.096112094819546],[0.10950114578009,0.049625005573034,0.051432050764561],[0.096071653068066,0.0028770586941391,0.0019271617056802]],[[-0.021989561617374,-0.04413016140461,-0.077830202877522],[0.027137584984303,-0.025684401392937,-0.018301459029317],[-0.13367031514645,-0.0022424007765949,0.062351763248444]],[[0.0049367644824088,-0.025363821536303,-0.042042184621096],[-0.14275602996349,-0.038711048662663,0.050274532288313],[0.039063446223736,0.049896873533726,0.1183622404933]],[[-0.062908627092838,-0.069415420293808,0.048121273517609],[0.066812232136726,0.011535899713635,0.016840944066644],[-0.024521257728338,-0.022972367703915,0.066311918199062]],[[-0.045811679214239,-0.11814096570015,-0.026623364537954],[0.12551744282246,0.048310905694962,0.18360055983067],[0.062785677611828,0.030145032331347,0.008379609324038]],[[-0.22941909730434,0.098173081874847,0.081180967390537],[0.02595179900527,0.026837041601539,-0.067782931029797],[0.03080634586513,0.14218929409981,0.22101294994354]],[[-0.14210318028927,-0.13743571937084,-0.083974659442902],[-0.061600439250469,0.076852917671204,-0.079933047294617],[0.0053950138390064,-0.026356063783169,-0.022312838584185]],[[-0.074365131556988,-0.015069702640176,-0.043552149087191],[0.019906749948859,0.071989268064499,-0.095584191381931],[-0.050308208912611,-0.018182620406151,0.029775457456708]],[[-0.020630836486816,-0.19772432744503,-0.013602882623672],[-0.021072562783957,-0.021002639085054,-0.011711678467691],[-0.086740717291832,-0.086346812546253,0.1047023460269]],[[-0.11794239282608,0.0012874335516244,-0.1228649020195],[0.010322403162718,-0.0041681341826916,-0.13156542181969],[0.046954095363617,0.045563708990812,-0.0076672974973917]],[[-0.079634785652161,0.089173920452595,0.046601340174675],[-0.15164239704609,-0.019287647679448,-0.007905088365078],[-0.13491170108318,0.045432575047016,-0.10700040310621]],[[-0.097673043608665,-0.15863999724388,-0.052346412092447],[-0.03076247125864,-0.096618741750717,0.088533453643322],[0.0085942037403584,-0.091667897999287,0.058235198259354]],[[0.012045972049236,0.075732655823231,0.15797972679138],[0.10268967598677,0.084452003240585,-0.017291089519858],[-0.03166239336133,-0.075936518609524,-0.049999073147774]],[[-0.071012727916241,-0.053922884166241,0.065013349056244],[-0.028155706822872,-0.0048833317123353,0.012758721597493],[-0.030135814100504,0.0049235192127526,-0.12059938907623]],[[0.029519578441978,-0.081275694072247,0.034942965954542],[-0.027914717793465,0.031534817069769,0.033656436949968],[0.0524434261024,0.041991800069809,0.11243705451488]],[[-0.077509313821793,0.064695201814175,0.018587272614241],[-0.069351233541965,-0.0026816953904927,-0.05264550447464],[-0.0095779094845057,-0.04071943461895,0.012686812318861]],[[-0.044932473450899,-0.089255698025227,-0.060191370546818],[0.0024061256553978,0.012309492565691,-0.013878512196243],[-0.0036629666574299,-0.087444134056568,0.082835085690022]],[[-0.0078117228113115,-0.13515140116215,-0.063435114920139],[-0.17022427916527,0.013230661861598,0.033421207219362],[-0.080451488494873,0.041558440774679,0.043975468724966]],[[-0.032422792166471,-0.13408115506172,0.040784198790789],[0.0077064805664122,0.085331358015537,0.049281354993582],[0.035188887268305,-0.044565808027983,0.061074338853359]],[[0.084841221570969,0.058001898229122,0.045644782483578],[0.026382671669126,-0.030161278322339,-0.055481381714344],[-0.072429001331329,-0.091906040906906,0.015455185435712]],[[-0.094562031328678,-0.046445440500975,-0.026835776865482],[-0.12269838899374,-0.061736844480038,0.020911540836096],[-0.0089462660253048,0.039348669350147,0.075566023588181]],[[-0.18912737071514,-0.045711927115917,-0.036772102117538],[-0.13242979347706,0.047476414591074,0.071693241596222],[0.018925260752439,-0.0062655336223543,-0.10917757451534]],[[-0.052456315606833,-0.16785179078579,-0.21127797663212],[-0.011895257048309,0.0901810079813,-0.073380209505558],[0.013112212531269,0.1156594529748,-0.071468718349934]],[[0.0054637552239001,-0.051734790205956,0.037098120898008],[-0.013954776339233,-0.01484153419733,0.029191909357905],[0.021022666245699,0.0050833504647017,0.029136853292584]],[[0.055883165448904,-0.044645726680756,0.10201089829206],[0.0026933699846268,-0.087036639451981,-0.077607221901417],[0.045666091144085,0.056202076375484,-0.00497205555439]],[[0.0092613166198134,-0.00075506558641791,0.07053616642952],[-0.060614548623562,0.012933456338942,-0.035118915140629],[-0.044813077896833,0.083514876663685,-0.11480571329594]],[[-0.081396289169788,-0.19232735037804,-0.15222784876823],[-0.035896483808756,-0.021276162937284,0.020060647279024],[0.035625845193863,0.0231718942523,0.1165027320385]],[[-0.10507369041443,-0.095755748450756,-0.10675255954266],[-0.049159586429596,0.09307774156332,-0.022731548175216],[-0.026042155921459,-0.15270805358887,-0.094857901334763]],[[-0.029943471774459,-0.085633039474487,-0.064422503113747],[0.038592420518398,-0.0015807995805517,0.15810461342335],[-0.016914214938879,-0.085769176483154,-0.010431705974042]],[[-0.14869548380375,-0.011766660027206,0.0020569891203195],[-0.0026630491483957,-0.02751081995666,0.06199974194169],[-0.013179869391024,-0.038356889039278,-0.10346987098455]],[[0.13812103867531,0.072054885327816,-0.038133580237627],[-0.013754171319306,-0.00075197505066171,-0.0053211622871459],[0.041662018746138,0.074408866465092,0.074940539896488]],[[0.028493404388428,0.10223299264908,0.03368166834116],[-0.018337033689022,-0.094904780387878,-0.051041156053543],[-0.01518187392503,-0.010334144346416,0.0074948552064598]],[[-0.0017323496285826,-0.17911337316036,-0.10216055065393],[-0.025621520355344,-0.15095914900303,0.066515669226646],[-0.0099600199609995,0.011156841181219,0.15361714363098]],[[-0.078682437539101,-0.076706111431122,0.074274517595768],[0.12451864033937,0.061899151653051,0.083735339343548],[0.046484652906656,-0.014999186620116,0.10552951693535]],[[-0.027202000841498,0.028112672269344,0.083967216312885],[-0.02599242143333,0.036737717688084,-0.014285732991993],[0.07058672606945,-0.015331623144448,-0.091451056301594]],[[0.063404485583305,0.14772702753544,0.075923383235931],[-0.046385899186134,0.050788842141628,0.032243672758341],[-0.0011681352043524,0.056069068610668,0.0029112559277564]],[[-0.16502787172794,0.0074142059311271,-0.071070574223995],[-0.031088415533304,0.070759825408459,-0.079704567790031],[-0.13928158581257,-0.082486502826214,-0.051486507058144]],[[0.16449059545994,0.074178464710712,0.037500042468309],[-0.016939843073487,-0.085753478109837,-0.043635029345751],[0.016414813697338,0.0072181345894933,0.013872639276087]],[[-0.065976046025753,0.09752994030714,-0.0017786069074646],[0.031999167054892,0.076998516917229,-0.002964693820104],[0.057200115174055,0.02655029296875,-0.02547649666667]],[[0.069173566997051,0.04091876745224,-0.13834117352962],[-0.0019754045642912,-0.026814414188266,0.0036035277880728],[0.010899383574724,-0.10235643386841,-0.06260921806097]],[[0.10893525183201,-0.043146301060915,-0.029123943299055],[-0.025060307234526,-0.07172666490078,0.036334630101919],[-0.022380735725164,-0.044807247817516,-0.063889697194099]],[[-0.12178827822208,0.096387200057507,-0.02138289809227],[0.037792515009642,-0.040218282490969,0.10296684503555],[0.025532959029078,-0.0058580627664924,0.11902571469545]],[[0.037926074117422,0.016743397340178,-0.00050738087156788],[-0.025143351405859,0.034398835152388,-0.050205066800117],[0.099691241979599,0.11737197637558,0.15881252288818]],[[-0.087919659912586,0.035001702606678,-0.040883868932724],[-0.069766394793987,-0.0074642859399319,0.011871113441885],[-0.042366240173578,0.043963395059109,-0.040236186236143]],[[-0.092279128730297,-0.069049850106239,-0.046222750097513],[-0.081787116825581,-0.016964310780168,0.019401893019676],[-0.0050623840652406,0.042926333844662,-0.058680754154921]],[[0.17997640371323,0.0084716761484742,-0.022680150344968],[0.025977110490203,0.044747550040483,0.049927514046431],[0.0032149727921933,-0.11824244260788,0.028741372749209]]],[[[0.056368615478277,0.072265364229679,-0.031645238399506],[-0.0064080501906574,0.016647476702929,-0.037821881473064],[-0.078649282455444,0.014107827097178,-0.028013505041599]],[[-0.16762612760067,-0.18095509707928,-0.22297677397728],[0.010195318609476,-0.027553401887417,0.094267547130585],[-0.064036078751087,-0.06960617005825,-0.014765106141567]],[[0.073626443743706,-0.041165579110384,-0.16010850667953],[0.16918261349201,0.045227222144604,-0.094599686563015],[0.11156984418631,-0.10037995129824,-0.015411331318319]],[[-0.075130350887775,-0.0510059222579,-0.012598181143403],[0.039702456444502,0.064638666808605,-0.030338348820806],[0.082960419356823,0.048205032944679,-0.062922351062298]],[[-0.11233879625797,-0.035933542996645,-0.047630954533815],[-0.1067476272583,-0.057792857289314,-0.018579186871648],[-0.094416253268719,-0.068238511681557,-0.052152115851641]],[[0.01832789927721,0.19838571548462,0.11975017935038],[-0.10982776433229,-0.020038643851876,0.025633465498686],[0.023545114323497,0.020745489746332,0.047005236148834]],[[0.047930233180523,0.028829688206315,-0.0738884806633],[0.044287502765656,-0.024489043280482,-0.11481138318777],[-0.057296060025692,-0.030461728572845,0.038032319396734]],[[0.028207136318088,0.087484054267406,0.096964284777641],[-0.1532878279686,-0.047795586287975,-0.095564410090446],[-0.055976636707783,-0.010438924655318,0.037753872573376]],[[-0.0077202268876135,0.025465397164226,-0.067962698638439],[0.021793279796839,0.11253091692924,0.0024341044481844],[0.016148701310158,-0.038281746208668,-0.056422345340252]],[[0.017595632001758,-0.12151429802179,-0.038028191775084],[0.011331516318023,-0.068219639360905,-0.0025057541206479],[0.086661264300346,0.094067744910717,-0.095737747848034]],[[0.016605151817203,-0.027182629331946,0.063875444233418],[0.062314458191395,-0.020669903606176,-0.045637041330338],[0.13441573083401,0.11483067274094,-0.0287179723382]],[[0.032619372010231,-0.085890755057335,-0.11098796874285],[0.12212637066841,-0.0131746949628,-0.080812908709049],[0.15168130397797,0.032552804797888,-0.045499224215746]],[[0.011313311755657,-0.098762072622776,-0.049471616744995],[0.0052520497702062,0.074068285524845,-0.0022229407913983],[0.062066465616226,0.098610274493694,0.049535769969225]],[[-0.02688273973763,-0.050327133387327,0.017056044191122],[0.0023716753348708,-0.098914660513401,-0.10098648816347],[0.077408395707607,-0.070601016283035,0.077370688319206]],[[-0.020992634817958,-0.021617788821459,-0.077847920358181],[0.07172104716301,0.050566166639328,-0.038491003215313],[0.01478770468384,-0.046349678188562,-0.11622057855129]],[[-0.015363881364465,0.050472836941481,0.0096397548913956],[0.15262265503407,-0.0057861669920385,0.10018734633923],[0.071403130888939,0.029871221631765,-0.043588146567345]],[[0.0051739425398409,-0.020972099155188,-0.0084517821669579],[0.11857824027538,-0.026941794902086,0.0019202758558095],[0.0099913030862808,0.065993346273899,0.17782671749592]],[[0.060946874320507,-0.17003850638866,-0.16787706315517],[-0.070045955479145,-0.14358998835087,-0.07258690148592],[-0.17594759166241,0.0046741645783186,-0.012335176579654]],[[0.034612592309713,-0.083298943936825,0.10262353718281],[0.051448334008455,0.049374651163816,0.053485233336687],[-0.11739373207092,0.0093559948727489,-0.034840330481529]],[[0.077164351940155,0.10541448742151,-0.026867644861341],[-0.1623001396656,0.041888114064932,-0.062797464430332],[0.093713350594044,-0.015748227015138,0.14919839799404]],[[-0.0077398610301316,0.027308687567711,-0.010329393669963],[0.077246986329556,-0.1083302423358,-0.039349105209112],[0.15727838873863,0.025995053350925,-0.0090361377224326]],[[-0.0090966178104281,-0.065196521580219,-0.13215883076191],[-0.08419231325388,-0.064317665994167,-0.095974393188953],[-0.061933476477861,-0.030737925320864,-0.11866287887096]],[[0.027772802859545,-0.048379816114902,0.061045169830322],[0.044762153178453,0.0090844519436359,0.15643587708473],[-0.040621656924486,-0.074916131794453,0.089765325188637]],[[0.099728778004646,-0.032310493290424,-0.067543849349022],[0.14268605411053,0.060321286320686,-0.056171745061874],[0.11366255581379,0.093063727021217,-0.0030040091369301]],[[0.071370154619217,0.075830556452274,0.006115207914263],[-0.10353927314281,-0.088813915848732,-0.033775262534618],[0.014695506542921,-0.033095300197601,-0.073518186807632]],[[-0.040762554854155,0.0055643375962973,0.026340074837208],[-0.045877691358328,-0.047563709318638,-0.10440526157618],[0.076875112950802,-0.032241798937321,-0.11587201058865]],[[0.069470427930355,0.10183972865343,-0.13056369125843],[0.053468283265829,0.14332629740238,-0.078491024672985],[0.24032771587372,0.30495768785477,0.13557052612305]],[[0.0038355989381671,0.072407096624374,0.045266188681126],[0.087853312492371,-0.0019939809571952,0.034468688070774],[0.063689142465591,-0.022995250299573,0.05356865003705]],[[-0.051946472376585,0.014137662947178,0.066587492823601],[0.077015526592731,0.047849096357822,-0.035477269440889],[0.11362334340811,-0.10735768824816,-0.15329024195671]],[[0.02834645844996,-0.018256459385157,-0.044452898204327],[0.019482294097543,0.030218955129385,-0.029280826449394],[0.1773821413517,0.06380283087492,0.093957625329494]],[[0.046998865902424,0.0014500605175272,0.18167693912983],[-0.013519416563213,0.1083162650466,0.03743988275528],[-0.010671509429812,0.0058837742544711,0.0054718507453799]],[[0.063313856720924,-0.041578058153391,-0.131840929389],[0.10418640077114,0.041853792965412,0.054182220250368],[-0.09965093433857,0.016136053949594,-0.12153916060925]],[[0.054968856275082,-0.0016558297211304,-0.09129923582077],[-0.13727314770222,-0.12932930886745,0.017650896683335],[-0.064511828124523,0.029395928606391,0.052922036498785]],[[0.012713124975562,-0.067498080432415,-0.11082073301077],[0.067269317805767,0.019534410908818,-0.12090142071247],[-0.028294948861003,0.07573426514864,0.040658410638571]],[[0.00898995436728,0.015366607345641,-0.18596258759499],[0.097910270094872,-0.04564281925559,-0.087871350347996],[-0.075311578810215,-0.016644567251205,-0.02139469794929]],[[-0.16321894526482,-0.11185379326344,-0.088278368115425],[-0.050036635249853,0.035608652979136,0.029025556519628],[0.027866384014487,0.172916918993,-0.029274359345436]],[[0.022730695083737,0.023037876933813,0.041586305946112],[0.030590975657105,0.077081434428692,-0.028149398043752],[-0.034504350274801,-0.047426041215658,0.066755898296833]],[[0.0090562989935279,0.056982301175594,0.027445338666439],[-0.15034739673138,0.062098402529955,0.096035785973072],[-0.024078572168946,-0.079855896532536,-0.057695653289557]],[[-0.047178216278553,-0.047461040318012,-0.078875549137592],[0.033599182963371,-0.028808835893869,-0.029481582343578],[0.05087361112237,-0.0068814046680927,-0.02171528339386]],[[0.022080592811108,-0.056072350591421,0.039756346493959],[0.038833033293486,-0.012318127788603,0.01460399851203],[0.025140417739749,-0.052670750766993,0.037625264376402]],[[0.032379675656557,-0.01959977671504,0.012332760728896],[0.039604097604752,-0.018677057698369,-0.0728420317173],[-0.10634183883667,-0.063154436647892,0.014638287946582]],[[0.073230750858784,-0.075653664767742,-0.15326137840748],[-0.071774549782276,-0.076386384665966,-0.11680293828249],[-0.12423124909401,-0.079424247145653,-0.083374232053757]],[[0.010102433152497,-0.013747145421803,-0.11883523315191],[0.037603128701448,0.023311855271459,0.064496330916882],[0.020824430510402,0.044464379549026,-0.028283709660172]],[[0.05271527916193,-0.068621262907982,-0.053477514535189],[0.036259084939957,0.051105387508869,0.032090816646814],[0.0035107331350446,-0.012879348360002,-0.0091987932100892]],[[0.0064008291810751,0.011054117232561,-0.072911635041237],[0.15063054859638,0.035763591527939,-0.12739697098732],[0.040016960352659,0.057884983718395,-0.0055120121687651]],[[-0.029823049902916,-0.019453696906567,0.004190128762275],[0.029012314975262,-0.067244365811348,-0.027347844094038],[-0.10905382037163,0.019042760133743,0.0013421620242298]],[[0.0083816293627024,-0.038477681577206,-0.2704544365406],[-0.014497305266559,0.013119877316058,0.03213207051158],[-0.014603910967708,-0.067100092768669,-0.066864751279354]],[[0.038854472339153,0.082240842282772,-0.014148213900626],[-0.12654486298561,-0.018311381340027,-0.091895312070847],[0.065660014748573,-0.018491744995117,-0.073157213628292]],[[-0.057173777371645,0.048994787037373,-0.029946465045214],[0.013332104310393,0.060908250510693,-0.032110672444105],[0.10750176757574,0.052576616406441,-0.020433971658349]],[[-0.03515212610364,0.027356181293726,0.0018746425630525],[-0.049796096980572,0.0086652971804142,0.0093038724735379],[-0.026443332433701,0.054282195866108,0.0075165121816099]],[[0.0057944930158556,0.022309299558401,-0.28205263614655],[0.069487147033215,0.010413805022836,-0.1754652261734],[0.18020440638065,0.095469139516354,0.0042079631239176]],[[0.05985364317894,-0.023732660338283,-0.087108865380287],[0.062448937445879,0.019191522151232,-0.062313873320818],[-0.10939152538776,-0.067056372761726,0.018427088856697]],[[0.0060026459395885,0.044174127280712,0.12692810595036],[-0.088785141706467,-0.084872536361217,0.043580144643784],[-0.15458330512047,0.047095037996769,0.12601092457771]],[[-0.032248262315989,0.10497500002384,-0.097604744136333],[-0.14475944638252,0.067198313772678,-0.03789933770895],[-0.10745131224394,0.043807562440634,0.03585897013545]],[[-0.11370242387056,-0.14356952905655,0.068387575447559],[-0.13978540897369,-0.097346171736717,-0.17088247835636],[-0.037053797394037,-0.0099590355530381,-0.032839193940163]],[[-0.16759538650513,-0.1727410107851,-0.085330173373222],[-0.17139004170895,-0.10929600894451,0.078335948288441],[0.099236525595188,0.1100131124258,-0.011695802211761]],[[0.0087785357609391,0.081816390156746,-0.028338704258204],[0.098513722419739,0.065244123339653,0.10811964422464],[0.045980483293533,0.038928337395191,0.0080080786719918]],[[-0.016866188496351,-0.043699558824301,-0.13194251060486],[-0.082268014550209,0.0073864669539034,-0.2290984839201],[-0.18512852489948,0.097797073423862,-0.13516981899738]],[[-0.026421114802361,0.092878840863705,0.035606220364571],[-0.057426024228334,0.087844580411911,0.13549894094467],[-0.12534445524216,-0.044818423688412,-0.081709280610085]],[[-0.018313381820917,-0.012392926961184,-0.12291097640991],[0.21016050875187,-0.020974023267627,-0.011769483797252],[-0.0087499739602208,0.0022605271078646,0.093009814620018]],[[0.085958279669285,0.0083489157259464,-0.11386209726334],[0.061407893896103,-0.019981954246759,0.037283476442099],[0.042790036648512,0.065029636025429,0.03683041408658]],[[-0.075627215206623,0.046284660696983,0.085438333451748],[-0.006225076969713,0.039103828370571,0.12934376299381],[-0.0034340505953878,-0.080238841474056,0.041255187243223]],[[-0.076210334897041,0.0042947763577104,-0.031525276601315],[-0.0307253357023,-0.0058051850646734,0.00051591196097434],[0.034989830106497,0.016977282240987,-0.031048202887177]],[[-0.035850893706083,0.031466260552406,0.031284309923649],[-0.052244748920202,-0.13062781095505,0.027580052614212],[-0.17547361552715,-0.019697844982147,0.051944974809885]]],[[[0.0074052927084267,-0.093387454748154,0.09666683524847],[-0.12087572365999,0.043651629239321,0.20157916843891],[-0.054325625300407,-0.034829940646887,0.02165288105607]],[[0.057757798582315,0.03280159458518,0.025657154619694],[-0.04426833987236,-0.070515349507332,0.014198231510818],[-0.056015305221081,-0.16388648748398,-0.027446001768112]],[[-0.035428270697594,0.060364905744791,0.14105068147182],[-0.060907196253538,0.19895823299885,0.097921028733253],[-0.057117242366076,0.0022098498884588,0.11380337923765]],[[0.12328390777111,0.079644612967968,-0.004614595323801],[0.10060049593449,0.071650259196758,0.017826281487942],[-0.12462972104549,0.020094765350223,-0.019260818138719]],[[-0.017367167398334,0.0016799689037725,0.047076527029276],[0.08285153657198,0.13815048336983,0.0064549623057246],[-0.095883712172508,-0.0023071670439094,0.11832561343908]],[[-0.051260963082314,-0.065449520945549,0.017486494034529],[-0.0234738830477,-0.051969636231661,0.13163505494595],[-0.064842157065868,-0.010674861259758,0.056704167276621]],[[-0.050217196345329,0.099292658269405,-0.019526505842805],[0.062406685203314,-0.066732086241245,0.0074771698564291],[-0.0079819951206446,-0.064563199877739,0.044142685830593]],[[0.0039042560383677,-0.020929353311658,-0.044173002243042],[-0.016022030264139,0.023822642862797,-0.13110028207302],[0.023773558437824,-0.020109385251999,0.10627316683531]],[[0.0074978587217629,-0.084035769104958,-0.037654541432858],[0.036801163107157,-0.011387621052563,0.065417639911175],[0.016674220561981,0.025351259857416,-0.013938965275884]],[[-0.0049122590571642,-0.14795680344105,-0.051210999488831],[0.028685173019767,-0.063401907682419,-0.013563661836088],[-0.10016200691462,-0.00073918356793001,-0.023008763790131]],[[-0.030838867649436,-0.016816146671772,-0.14902371168137],[-0.0011380575597286,0.11747097223997,0.075049988925457],[-0.02272479981184,0.10476835072041,0.025022896006703]],[[0.026440352201462,-0.040531545877457,-0.07588005065918],[-0.2013073861599,0.025024984031916,0.093665286898613],[-0.011966751888394,-0.011736939661205,0.038510028272867]],[[-0.045956257730722,0.057526841759682,0.042397394776344],[-0.093751132488251,0.053387932479382,0.14627838134766],[0.0063678352162242,-0.034824088215828,0.088224902749062]],[[0.046558558940887,0.029848853126168,0.017563348636031],[-8.9132809080184e-05,-0.020610434934497,0.086944796144962],[0.02182225883007,-0.016021916642785,0.017740670591593]],[[0.026912802830338,-0.029949394986033,0.028447166085243],[-0.042648285627365,-0.078256905078888,-0.019952794536948],[-0.0032141166739166,0.021771064028144,-0.042627349495888]],[[-0.1525135487318,0.071730583906174,0.089354783296585],[-0.13206353783607,-0.19740073382854,-0.053140982985497],[-0.035739935934544,-0.17326867580414,0.059354618191719]],[[-0.10241182893515,-0.022419633343816,-0.10248710215092],[-0.2160470187664,-0.039004258811474,0.13534893095493],[-0.018048223108053,0.041343063116074,0.21284262835979]],[[-0.034147590398788,-0.0023179920390248,0.011930914595723],[-0.070450343191624,0.041061565279961,0.0033265464007854],[-0.0014066052390262,0.010639289394021,0.12337475270033]],[[0.065914571285248,-0.068791560828686,0.076453126966953],[-0.07418679445982,-0.036800391972065,0.14082473516464],[-0.04971431940794,-0.061261359602213,0.14499567449093]],[[-0.066116735339165,0.036309421062469,0.14089687168598],[0.0011617961572483,0.13015098869801,-0.11848216503859],[-0.11313696950674,-0.035683784633875,0.15333431959152]],[[-0.052968319505453,-0.097149230539799,-0.038768775761127],[-0.031131573021412,-0.11350604891777,0.072502806782722],[0.057222533971071,-0.059060320258141,-0.018033938482404]],[[-0.059362858533859,0.12229104340076,0.14385487139225],[0.1359328776598,0.14293205738068,-0.02302485704422],[-0.0035239632707089,-0.078041218221188,-0.11884604394436]],[[-0.044287025928497,-0.047745641320944,0.062181033194065],[-0.21117475628853,0.032783851027489,0.043369986116886],[-0.015690295025706,-0.080491468310356,0.027273183688521]],[[-0.0037407919298857,0.032789975404739,-0.18975080549717],[0.10298402607441,0.036840125918388,-0.038984660059214],[-0.02366148121655,0.074345625936985,-0.006783970631659]],[[0.017407275736332,-0.050322253257036,0.12409003078938],[0.0016766248736531,0.06291176378727,0.037093963474035],[0.0018640988273546,-0.086993031203747,0.0025785104371607]],[[-0.089096553623676,-0.04486333578825,-0.010586106218398],[-0.082676492631435,0.066064216196537,0.14261956512928],[-0.015332892537117,0.18570382893085,0.096308492124081]],[[-0.011043484322727,0.14859889447689,-0.14800564944744],[0.02687012962997,-0.061599273234606,-0.10455067455769],[-0.031099952757359,0.049847703427076,-0.12490102648735]],[[-0.0090026399120688,0.047415532171726,-0.14149512350559],[-0.055349852889776,-0.062330730259418,-0.081931956112385],[0.015169493854046,-0.042993947863579,-0.12893588840961]],[[-0.16114804148674,-0.070034727454185,-0.0027938643470407],[-0.0082224365323782,0.039480105042458,0.060736577957869],[0.13727690279484,-0.0085318451747298,0.025578582659364]],[[0.0032734237611294,-0.014046953991055,-0.16031225025654],[0.0054097692482173,0.017323832958937,-0.076245129108429],[0.13858945667744,0.011909452266991,-0.049323733896017]],[[-0.018120424821973,0.068674519658089,0.12579627335072],[-0.042302157729864,-0.060941800475121,-0.059583276510239],[-0.010273761115968,0.074512012302876,0.085043303668499]],[[-0.007432499434799,-0.1667372584343,0.035846803337336],[-0.021018901839852,-0.011903286911547,0.039394676685333],[0.075921475887299,0.0484300814569,-0.033199928700924]],[[0.0018673200393096,-0.001927983481437,-0.0097531713545322],[-0.056270573288202,-0.039376348257065,0.049474898725748],[-0.03170196339488,0.052463430911303,-0.10380832105875]],[[0.081879243254662,0.0049668606370687,0.03388948366046],[-0.10361116379499,-0.018075186759233,0.010748920962214],[-0.14486390352249,-0.10283629596233,-0.056389357894659]],[[-0.053936675190926,0.054951380938292,0.084633506834507],[-0.059567864984274,-0.006413203664124,0.044997431337833],[-0.0017148358747363,0.027253767475486,-0.027207374572754]],[[0.077031329274178,0.027103984728456,-0.046111050993204],[-0.072739161550999,-0.045163277536631,0.10483914613724],[0.0097935777157545,-0.015983723104,-0.037047613412142]],[[0.12318996340036,-0.037277270108461,-0.050131548196077],[-0.034617066383362,0.071524322032928,-0.013623723760247],[0.033957839012146,0.015991229563951,0.0095018856227398]],[[0.00021941927843727,-0.087182283401489,-0.11849945783615],[0.00040710152825341,0.046024940907955,0.016986144706607],[-0.057524986565113,0.057208269834518,0.0099140498787165]],[[-0.092081628739834,-0.05331102386117,-0.048150084912777],[-0.0030338261276484,-0.078049935400486,-0.13647815585136],[-0.019245848059654,-0.004121155012399,-0.095480963587761]],[[0.13525620102882,0.10709103941917,-0.13818569481373],[-0.013362410478294,0.038778897374868,-0.037564594298601],[-0.052634939551353,-0.09602128714323,-0.064010247588158]],[[-0.086748279631138,-0.013225258328021,0.12707798182964],[-0.10138282924891,-0.00043923238990828,0.11928328871727],[-0.018862752243876,-0.092333480715752,0.062913492321968]],[[-0.16821731626987,-0.091947995126247,-0.02088725194335],[0.062616392970085,-0.014052837155759,0.043116830289364],[-0.035304602235556,0.1481491625309,0.1233434304595]],[[-0.029284970834851,-0.038749810308218,-0.12671729922295],[0.052702810615301,-0.03070667758584,0.12089712172747],[-0.015848200768232,-0.15752857923508,0.038390781730413]],[[-0.048407107591629,-0.024116914719343,-0.056445062160492],[0.0062467940151691,-0.010309467092156,0.14881664514542],[0.056252066046,-0.0059001361951232,-0.019385382533073]],[[0.038492500782013,-0.064671829342842,0.048432592302561],[-0.056713126599789,-0.032259654253721,0.012119581922889],[-0.070591434836388,-0.17901170253754,-0.088257722556591]],[[0.0091291340067983,0.01004440523684,-0.044647973030806],[-0.076366856694221,0.028257021680474,-0.02985168248415],[0.042797394096851,0.023797906935215,0.0072875330224633]],[[-0.013166104443371,-0.059727482497692,-0.12386140227318],[0.042847368866205,-0.075341947376728,-0.078975237905979],[0.078824862837791,0.15430402755737,0.024169582873583]],[[-0.045475147664547,-0.085506543517113,-0.066337712109089],[0.058885507285595,-0.0023537892848253,-0.080664247274399],[0.041090440005064,0.090270988643169,0.0011937381932512]],[[0.022367857396603,-0.054861444979906,0.096311792731285],[-0.069442845880985,-0.067546933889389,0.081708565354347],[-0.043736405670643,0.031484853476286,0.14775930345058]],[[-0.026954399421811,0.081814095377922,-0.013428529724479],[-0.0025551284197718,0.025494379922748,0.11852745711803],[0.0040833922103047,-0.2091893851757,0.018053824082017]],[[-0.059250302612782,0.047538220882416,-0.065580658614635],[-0.068754695355892,0.024267051368952,0.010542531497777],[-0.21638257801533,-0.10155504196882,0.2063123434782]],[[0.027516707777977,0.025267541408539,0.024327395483851],[0.01701114885509,-0.19296960532665,-0.099472969770432],[0.01448324136436,0.10571261495352,0.081519238650799]],[[-0.019330400973558,0.020578680559993,-0.095756828784943],[0.21732133626938,-0.033274013549089,-0.087288729846478],[0.030322443693876,0.017866531386971,-0.079671889543533]],[[0.080918610095978,0.14138361811638,0.092696666717529],[0.068937838077545,0.035397481173277,0.041112892329693],[0.018165227025747,-0.062449622899294,-0.00097322242800146]],[[0.029797468334436,-0.01826155371964,-0.048181008547544],[0.020296817645431,-0.095753252506256,-0.094879329204559],[-0.097522556781769,-0.030430790036917,0.048598371446133]],[[-0.11330127716064,-0.022905735298991,0.13546819984913],[0.13883367180824,0.095945484936237,-0.10584229230881],[0.031144054606557,-0.012930477038026,-0.070765525102615]],[[0.023742944002151,-0.010654642246664,-0.13748493790627],[0.021526284515858,0.035175483673811,0.03118808567524],[0.081658080220222,-0.14578750729561,0.014817505143583]],[[-0.0037993360310793,0.10998466610909,0.011390580795705],[-0.17480397224426,-0.020540660247207,0.11129862815142],[0.010458114556968,-0.072572633624077,-0.064334899187088]],[[-0.0086216172203422,-0.030397327616811,-0.075351968407631],[-0.080483794212341,0.028903197497129,0.13200706243515],[-0.068152479827404,-0.025733176618814,0.079557530581951]],[[-0.039822064340115,-0.045334193855524,-0.076820611953735],[0.099955819547176,-0.032212872058153,-0.049342226237059],[-0.057479355484247,-0.00010165644198423,0.020816583186388]],[[-0.10147766023874,-0.077619664371014,-0.0077965753152966],[-0.017186405137181,0.020259330049157,-0.0053967027924955],[0.13504293560982,-0.10281229019165,-0.036132033914328]],[[-0.06705242395401,-0.020093617960811,0.020863570272923],[0.080480650067329,0.13071265816689,0.021028593182564],[0.040476020425558,0.021359004080296,0.020779512822628]],[[-0.070994406938553,0.06707326322794,-0.072456553578377],[-0.092099539935589,-0.040260568261147,-0.014023031108081],[-0.12978658080101,0.0082972217351198,-0.022427165880799]],[[0.0019817145075649,-0.044274132698774,-0.027256067842245],[-0.080313317477703,-0.027015397325158,-0.10036348551512],[-0.069187603890896,0.13123561441898,0.17979446053505]]],[[[-0.048956785351038,-0.0033991194795817,0.018673760816455],[-0.020708203315735,-0.0051868492737412,0.070396669209003],[-0.071169048547745,-0.059817969799042,-0.011074790731072]],[[-0.052671626210213,0.087098494172096,0.22003093361855],[-0.076782457530499,-0.026369297876954,0.03866545855999],[-0.038982085883617,-0.16870218515396,-0.01188462600112]],[[-0.041667513549328,-0.043824888765812,-0.01883527636528],[0.16552387177944,-0.15749172866344,-0.22042275965214],[0.25663471221924,0.098463498055935,-0.14151029288769]],[[0.034007951617241,-0.0059470892883837,-0.029383238404989],[0.14897269010544,-0.015780482441187,-0.017352949827909],[-0.01161924470216,-0.045425530523062,0.03169234842062]],[[0.15594194829464,0.018301216885448,0.019777441397309],[-0.033685348927975,0.13196878135204,0.013630053959787],[-0.21776747703552,-0.099786706268787,0.092446848750114]],[[0.081965371966362,-0.0072454200126231,0.068879090249538],[-0.020505558699369,0.039580155164003,-0.010411554947495],[0.0027588012162596,-0.032320771366358,0.078022219240665]],[[-0.025238810107112,0.058050155639648,0.12964737415314],[0.011964927427471,-0.041088555008173,-0.027791496366262],[-0.0011441559763625,-0.016969956457615,-0.085419103503227]],[[0.012030887417495,-0.06033319234848,-0.093294940888882],[-0.034479025751352,0.039799798280001,0.034584872424603],[-0.026394963264465,-0.071984998881817,-0.046212859451771]],[[0.010010241530836,-0.092896647751331,-0.070650160312653],[0.070193268358707,0.020188994705677,-0.071686066687107],[-0.02017018571496,0.1158856973052,0.013305060565472]],[[-0.059360671788454,-0.12598951160908,-0.032943535596132],[0.0058601717464626,0.025472128763795,0.051040567457676],[0.020365258678794,0.10933528095484,0.13893955945969]],[[-0.060218594968319,0.095809437334538,0.006794678978622],[-0.076917663216591,0.11239439994097,-0.048248820006847],[-0.014406719245017,-0.085940539836884,0.077804647386074]],[[0.018650567159057,-0.15299893915653,-0.13911202549934],[0.14733481407166,-0.017073303461075,-0.02453425526619],[0.086462803184986,0.10687173902988,0.074140131473541]],[[-0.029534287750721,-0.068213641643524,-0.1600536108017],[0.0025369266513735,-0.0379503890872,0.024738231673837],[0.023853924125433,0.032198283821344,0.028949527069926]],[[-0.067160703241825,-0.034351538866758,0.045410674065351],[-0.0094002997502685,-0.001317908638157,0.12626373767853],[0.077295444905758,-0.015711015090346,-0.042745467275381]],[[0.088567495346069,0.047283761203289,0.062611423432827],[0.070175185799599,-0.022631194442511,-0.095657058060169],[0.047437388449907,0.089453928172588,0.0028254885692149]],[[0.18188901245594,0.095609150826931,-0.047750845551491],[0.15940998494625,-0.11816095560789,0.13516873121262],[-0.013055132701993,-0.047129094600677,-0.07686098664999]],[[0.069771215319633,-0.013209852389991,0.030030084773898],[0.043290439993143,-0.018541257828474,0.040391284972429],[-0.0063552111387253,0.058011934161186,0.10284282267094]],[[0.15599320828915,0.02711671218276,0.076961442828178],[0.04812952876091,-0.11180225014687,-0.0051091886125505],[0.068785734474659,-0.11982131749392,0.03402030095458]],[[-0.08934672921896,0.020941596478224,-0.026750478893518],[-0.045775655657053,-0.02621984668076,0.045008637011051],[-0.020512698218226,-0.046673648059368,0.13360023498535]],[[0.028754813596606,0.10380005836487,0.066600039601326],[-0.010714184492826,-0.087868325412273,-0.045344851911068],[0.059393804520369,0.016045868396759,-0.04925374686718]],[[-0.014269242994487,0.031647436320782,0.14243730902672],[-0.032267022877932,-0.095459155738354,0.069344028830528],[0.12508903443813,0.039355799555779,0.086797028779984]],[[0.13467320799828,0.095425114035606,-0.0031676376238465],[0.003629706101492,0.0022305957973003,-0.08504056930542],[-0.042262386530638,-0.14062026143074,-0.05168854445219]],[[0.12796302139759,0.019421048462391,0.015497984364629],[-0.10520403087139,-0.19170007109642,0.057773411273956],[0.015924591571093,-0.013794222846627,0.019900485873222]],[[0.053348746150732,-0.077914521098137,-0.014430531300604],[-0.027909617871046,-0.0040993997827172,-0.12246088683605],[0.055909592658281,0.097360968589783,-0.011318477801979]],[[-0.024400504305959,0.16208890080452,-0.033329758793116],[0.08959473669529,0.090462885797024,0.0087869456037879],[-0.16033856570721,-0.080290772020817,-0.13131150603294]],[[0.1598107367754,0.073278062045574,0.07386452704668],[0.0072404211387038,-0.092778734862804,-0.074746862053871],[0.19643621146679,-0.001032535918057,-0.19566966593266]],[[-0.080865629017353,-0.009353700093925,-0.078203484416008],[-0.04952634125948,0.057463865727186,-0.070802472531796],[-0.049334742128849,0.18599624931812,0.13795094192028]],[[0.044962599873543,-0.00031490047695115,0.064104676246643],[0.18327538669109,0.019847128540277,0.073065504431725],[0.021511485800147,-0.15877629816532,-0.062226884067059]],[[0.05741036310792,-0.01904939301312,0.043105412274599],[-0.055421531200409,-0.057576891034842,0.074609979987144],[-0.13418924808502,0.14421987533569,0.051560536026955]],[[-0.052622627466917,-0.061067838221788,-0.17551530897617],[0.086035288870335,-0.12810416519642,-0.11911614239216],[0.10610388964415,0.0081405295059085,-0.038603316992521]],[[0.067979380488396,-0.033578533679247,-0.14419491589069],[-0.029075616970658,0.026881543919444,-0.018041845411062],[0.036994710564613,0.073198899626732,0.026692304760218]],[[0.036614507436752,0.037819571793079,-0.094885282218456],[0.010152422823012,0.00932527333498,0.17436309158802],[-0.096793718636036,0.077237188816071,0.001779337762855]],[[0.075811348855495,0.034861419349909,-0.091313794255257],[0.04427320510149,-0.038308076560497,-0.048653651028872],[-0.030465316027403,-0.031105095520616,-0.10424300283194]],[[-0.016447611153126,-0.11360663175583,-0.01846824772656],[-0.11604163050652,0.011785521171987,-0.068377539515495],[-0.076139882206917,-0.04988482221961,0.038135096430779]],[[0.048361755907536,0.060501739382744,0.0063679739832878],[-0.0078875552862883,-0.040201812982559,0.012560185045004],[0.081544443964958,0.050673346966505,-0.055465340614319]],[[0.0098432758823037,-0.14544436335564,-0.043357141315937],[0.058360565453768,0.012442418374121,0.019495382905006],[0.010239933617413,-0.064037211239338,-0.043283607810736]],[[0.064638003706932,0.082407727837563,-0.045534912496805],[-0.017141435295343,0.093135848641396,0.033037159591913],[-0.020862199366093,0.0025655596982688,0.00089466862846166]],[[-0.16227358579636,-0.0047131269238889,0.039337914437056],[0.026674663648009,0.016727128997445,0.079704940319061],[-0.049222238361835,0.0008191637462005,0.046860802918673]],[[-0.019974786788225,-0.040691915899515,-0.13315372169018],[-0.0090150600299239,0.044143728911877,-0.069681495428085],[-0.082922376692295,0.063209660351276,-0.010515729896724]],[[0.085302866995335,0.056510448455811,0.12009328603745],[0.0044371117837727,0.012357830069959,-0.01911530084908],[0.058499820530415,-0.065280124545097,0.087612025439739]],[[0.12562549114227,0.039681442081928,0.026402043178678],[-0.022803204134107,0.0055943359620869,0.049795489758253],[-0.072295896708965,-0.051073428243399,-0.030275907367468]],[[-0.039414215832949,-0.070330575108528,-0.051179707050323],[0.059768326580524,-0.041914686560631,0.034622337669134],[0.043576277792454,0.097721286118031,0.018182661384344]],[[-0.053562242537737,0.104257799685,-0.058824390172958],[0.057607378810644,0.024413757026196,-0.013678424060345],[0.046439349651337,-0.035125963389874,0.019617225974798]],[[-0.023802606388927,-0.058316860347986,0.048783242702484],[-0.024412281811237,0.086463175714016,-0.064913928508759],[-0.075850516557693,-0.022590225562453,0.12704010307789]],[[0.15252383053303,0.022808577865362,0.033709872514009],[0.022782115265727,0.021988943219185,-0.057311531156301],[0.049554210156202,-0.0735047981143,-0.023536885157228]],[[-0.072418756783009,0.059668783098459,0.17197093367577],[-0.12681628763676,0.099297061562538,-0.042761746793985],[0.12160358577967,0.081032641232014,-0.078550212085247]],[[0.10229554772377,0.0082450825721025,-0.049177642911673],[0.0054279756732285,-0.016605703160167,0.062918692827225],[0.081052258610725,0.032481908798218,0.13256387412548]],[[-0.061224944889545,-0.059630237519741,0.095965266227722],[0.03533248603344,-0.023107916116714,-0.0093397060409188],[0.062677912414074,-0.017296781763434,0.032085750252008]],[[-0.037171773612499,-0.0017660661833361,0.024827050045133],[0.045298162847757,0.08508662134409,0.03047388792038],[0.034731663763523,0.085244573652744,-0.020715057849884]],[[0.053868263959885,-0.03719637542963,0.038551840931177],[-0.018422354012728,-0.0012652922887355,0.061023656278849],[0.03905275836587,-0.061991196125746,-0.081393383443356]],[[0.041708990931511,0.063612245023251,-0.099885411560535],[-0.027142835780978,-0.057044304907322,0.012979235500097],[0.091277219355106,0.068397209048271,-0.14862510561943]],[[0.031430415809155,-0.092288635671139,0.13970781862736],[0.0022492299322039,-0.1185882166028,0.0031106208916754],[-0.089698359370232,-0.024423582479358,-0.059002142399549]],[[0.13094806671143,-0.067782670259476,-0.10404668003321],[0.02210958302021,0.043309763073921,-0.036538388580084],[-0.11798615008593,-0.051748510450125,0.28454408049583]],[[-0.2466486543417,0.046822771430016,0.066997312009335],[-0.14776059985161,-0.057616949081421,0.081442274153233],[-0.063816651701927,0.14602589607239,0.0047527481801808]],[[0.020652668550611,-0.020781446248293,-0.038523338735104],[0.0078959492966533,-0.072537623345852,0.017803829163313],[-0.090698175132275,-0.074207007884979,-0.064314447343349]],[[-0.22883106768131,-0.083606824278831,0.034551285207272],[0.022911306470633,0.0042661866173148,0.0045912377536297],[0.046606175601482,0.057153519243002,0.03747870773077]],[[-0.15860866010189,-0.10942601412535,-0.0095294192433357],[-0.10912611335516,-0.0049187652766705,0.020934466272593],[-0.07098812609911,-0.05795120075345,-0.016776755452156]],[[0.027232274413109,0.047780197113752,-0.10375978797674],[-0.065573461353779,-0.074325978755951,0.01088526006788],[0.069694124162197,-0.014543706551194,-0.043353486806154]],[[-0.15709440410137,-0.08103670924902,-0.12501028180122],[0.019986202940345,-0.055340889841318,-0.0041156127117574],[0.073946908116341,-0.073203824460506,0.086580239236355]],[[-0.19510847330093,-0.14795333147049,-0.11318152397871],[-0.022955199703574,-0.041243031620979,-0.015508592128754],[-0.087358951568604,0.088356897234917,0.048905547708273]],[[0.053949598222971,0.011168675497174,0.053427673876286],[0.015143836848438,0.050450690090656,0.074082516133785],[0.098566673696041,0.013078462332487,0.094126895070076]],[[0.014310034923255,0.014102695509791,0.058654773980379],[-0.049450755119324,0.032242655754089,0.0014979622792453],[-0.072892107069492,0.022010436281562,-0.043612040579319]],[[0.017582224681973,0.09118290990591,0.047039076685905],[0.10265428572893,0.0264344625175,0.10736506432295],[0.061048310250044,-0.0044687232002616,-0.027276901528239]],[[0.074351370334625,0.17388632893562,0.12796583771706],[-0.049022845923901,0.034587703645229,-0.024255391210318],[0.030500637367368,-0.023472156375647,0.0015068147331476]]],[[[-0.051335200667381,-0.041400846093893,-0.038078885525465],[-0.13496398925781,-0.1183565184474,0.1690621227026],[0.069164022803307,-0.049005515873432,0.0071604903787374]],[[-0.00058841530699283,-0.023919023573399,0.081866167485714],[-0.15131534636021,0.14262236654758,0.11894226074219],[0.023894105106592,-0.14866492152214,0.044615313410759]],[[-0.090019047260284,0.05144314467907,0.07013675570488],[0.097744591534138,-0.063342086970806,-0.018084919080138],[-0.040363140404224,0.22611662745476,0.031764429062605]],[[0.0024589819367975,-0.081944480538368,-0.058748990297318],[-0.080054022371769,-0.088144302368164,-0.076292999088764],[0.036353699862957,0.086651168763638,0.0021845779847354]],[[0.11880391091108,0.068237587809563,-0.02633785456419],[-0.048522848635912,0.020608376711607,-0.082102082669735],[-0.041791137307882,-0.097244746983051,-0.070864036679268]],[[-0.036776289343834,-0.085226967930794,-0.010565578006208],[-0.20118083059788,0.18754558265209,0.011174070648849],[-0.019540825858712,-0.14859500527382,0.26879581809044]],[[-0.0023706050124019,-0.072090402245522,0.064305163919926],[-0.0031344671733677,0.12955118715763,-0.10136465728283],[-0.045051388442516,-0.057887610048056,-0.0097670815885067]],[[-0.0053413915447891,-0.034853711724281,0.044818766415119],[-0.19319148361683,-0.0075764157809317,-0.0041824951767921],[0.11627761274576,0.00055691390298307,0.022978287190199]],[[0.039418876171112,-0.0092171253636479,-0.014794682152569],[-0.09969449788332,-0.021369513124228,0.032366961240768],[-0.062256593257189,0.05656736344099,0.027826016768813]],[[0.023364290595055,0.062207907438278,-0.044569432735443],[0.014684614725411,-0.12773497402668,-0.0044552418403327],[-0.093758016824722,-0.12070486694574,-0.13646513223648]],[[0.12368735671043,-0.027458995580673,0.030561184510589],[-0.13689313828945,0.022556219249964,-0.069751247763634],[0.094479583203793,0.11914044618607,0.018972462043166]],[[-0.049739558249712,0.057857219129801,-0.024026645347476],[0.028889903798699,0.070566572248936,-0.043550066649914],[0.013316811993718,-0.018965091556311,0.07648528367281]],[[0.0047030220739543,0.01747296191752,-0.1477335691452],[-0.039310481399298,-0.088970676064491,0.066503830254078],[0.12472243607044,-0.15880930423737,-0.032879386097193]],[[0.0026454874314368,0.059215936809778,0.14189058542252],[-0.028745559975505,-0.16223613917828,-0.023401221260428],[0.023454386740923,-0.044211376458406,0.093039087951183]],[[0.12056366354227,0.022622462362051,0.032250877469778],[-0.033876042813063,-0.017140602692962,0.008333065547049],[0.18181753158569,-0.014043813571334,-0.10017058998346]],[[0.091109499335289,-0.012935844250023,-0.01817718334496],[-0.0079982150346041,-0.046362772583961,0.024786088615656],[0.081480100750923,-0.057357050478458,-0.021040733903646]],[[0.024820541962981,0.062685146927834,-0.072283022105694],[0.023744149133563,-0.042671859264374,-0.032711692154408],[0.058937944471836,0.09458401799202,-0.055226556956768]],[[0.11759935319424,-0.050279844552279,-0.016071541234851],[-0.036606911569834,-0.10375378280878,0.0039162239991128],[0.024052793160081,-0.078013546764851,-0.066850632429123]],[[0.079685688018799,-0.077105805277824,0.02178450115025],[0.022895056754351,0.05923979729414,0.015493204817176],[-0.0018877111142501,0.075321570038795,0.060720175504684]],[[0.078153289854527,-0.11072736978531,0.086804829537868],[0.08418633043766,-0.10094656050205,0.035111140459776],[0.025356806814671,0.074541762471199,0.066955976188183]],[[0.17778572440147,-0.023459151387215,0.1342231631279],[-0.075432434678078,-0.089030779898167,-0.25737532973289],[-0.071132197976112,-0.07420714199543,-0.05738777667284]],[[-0.032377421855927,0.020359152927995,-0.21413117647171],[-0.044607628136873,-0.15841445326805,-0.06568318605423],[-0.10430834442377,-0.059871580451727,-0.051087342202663]],[[0.14807167649269,0.043676491826773,-0.057548515498638],[0.00048257014714181,-0.030321903526783,-0.17887206375599],[-0.015741430222988,0.013828213326633,-0.049265764653683]],[[-0.033679641783237,0.025131287053227,-0.13983358442783],[-0.10793818533421,-0.18961258232594,0.1262928545475],[-0.026036245748401,0.091141358017921,-0.082504257559776]],[[0.03644073009491,-0.029340222477913,-0.068519130349159],[0.046868786215782,-0.08899012953043,0.11390428990126],[-0.0060178637504578,-0.0089604137465358,-0.061424057930708]],[[0.034915529191494,-0.037492398172617,0.080687068402767],[-0.10243673622608,-0.061372224241495,-0.16615632176399],[0.12828651070595,0.064333334565163,-0.11186850816011]],[[-0.16556876897812,-0.038077853620052,0.0022966358810663],[-0.04803454503417,-0.038525741547346,-0.082434043288231],[-0.29179352521896,-0.14195570349693,-0.024970840662718]],[[-0.033884588629007,0.046232424676418,0.032138757407665],[0.039942622184753,-0.06284262239933,-0.068082474172115],[0.010084196925163,-0.022588677704334,-0.0049495194107294]],[[0.059806048870087,-0.035023480653763,-0.12330883741379],[-0.12095956504345,-0.081190623342991,0.093501411378384],[-0.035576548427343,-0.1156674399972,0.025091296061873]],[[-0.017384294420481,0.026221118867397,0.010995384305716],[-0.14701433479786,0.0063002868555486,0.0058261696249247],[-0.067972615361214,-0.056003723293543,-0.01373737771064]],[[0.011168643832207,0.045734819024801,0.13071611523628],[-0.11815851181746,-0.14945109188557,-0.19376234710217],[0.06780069321394,0.038997527211905,0.15304321050644]],[[0.027716899290681,0.036161206662655,-0.083737209439278],[-0.070069164037704,-0.033408273011446,0.055625542998314],[-0.1621156334877,-0.0029903238173574,-0.084595061838627]],[[-0.0073404484428465,0.036574214696884,0.075937807559967],[0.11161985993385,-0.03300453722477,-0.051636885851622],[-0.092494025826454,-0.0063338116742671,-0.16824749112129]],[[-0.010580468922853,-0.10667769610882,-0.079735890030861],[-0.02047673612833,0.0233906339854,-0.10225569456816],[0.16011902689934,-0.034058395773172,0.0049390024505556]],[[-0.029226375743747,-0.12270255386829,-0.043022841215134],[-0.042006935924292,-0.050708424299955,-0.017994893714786],[0.019642410799861,-0.11539676040411,-0.0052082915790379]],[[-0.022975033149123,0.059606861323118,-0.085550621151924],[0.010610308498144,-0.006756482180208,0.030134877189994],[0.043845318257809,0.013947205618024,0.0081132296472788]],[[0.043031204491854,0.049340285360813,0.087747506797314],[0.050596810877323,0.038025416433811,0.059254411607981],[-0.043210554867983,0.11836762726307,0.063723348081112]],[[-0.25709164142609,0.086173698306084,-0.056303918361664],[-0.11062397062778,0.065209746360779,-0.036476101726294],[0.079911477863789,-0.047100443392992,-0.028971103951335]],[[-0.041956406086683,0.070615842938423,-0.011884622275829],[-0.03158213943243,-0.037406772375107,0.10692726820707],[-0.021756656467915,-0.035465024411678,0.050893601030111]],[[0.048088494688272,-0.069173939526081,-0.018726751208305],[0.14081308245659,0.086952514946461,0.083095006644726],[0.070642232894897,0.0069551719352603,0.034003052860498]],[[0.027159426361322,-0.083448842167854,-0.052464470267296],[-0.060794860124588,0.06302622705698,0.037592373788357],[0.059607475996017,0.030518863350153,0.034444004297256]],[[0.072988040745258,0.086757756769657,0.0047540860250592],[0.066494420170784,-0.050488576292992,-0.064241550862789],[-0.066563196480274,-0.13899533450603,-0.07877978682518]],[[0.013463236391544,-0.067530706524849,-0.090637020766735],[-0.014473915100098,0.092145852744579,0.073828153312206],[0.00031584390671924,-0.026536917313933,-0.037230286747217]],[[0.001560504664667,-0.093034639954567,-0.046661458909512],[0.060613822191954,-0.07810190320015,0.026364265009761],[0.07474921643734,0.03503617271781,-0.047250155359507]],[[0.15996220707893,-0.026289159432054,-0.13619582355022],[-0.010062054730952,0.09887284040451,0.0040176631882787],[0.019659012556076,-0.070260532200336,-0.061344154179096]],[[-0.095900155603886,-0.13959631323814,0.091370709240437],[-0.047393038868904,0.011043523438275,0.093056336045265],[-0.0837731808424,0.036935340613127,0.10438782721758]],[[0.095214106142521,0.11388108879328,-0.034741476178169],[-0.064476124942303,-0.03976446762681,-0.034896049648523],[-0.047544725239277,-0.050903152674437,0.010984943248332]],[[0.088879689574242,0.008269471116364,0.092971600592136],[-0.054527919739485,-0.032120283693075,-0.0033722128719091],[-0.039114929735661,-0.052313126623631,-0.061586998403072]],[[-0.0045186472125351,-0.022884225472808,0.099395535886288],[0.028931584209204,-0.0080779949203134,-0.012699684128165],[-0.041279561817646,-0.013049504719675,0.13941222429276]],[[0.0016885692020878,-0.037454474717379,0.0044802995398641],[0.11567077040672,-0.039906304329634,-0.010381769388914],[0.065303921699524,-0.077259421348572,-0.053605362772942]],[[-0.054175265133381,0.025466809049249,0.000819711771328],[-0.0076033980585635,-0.11359894275665,-0.046462099999189],[0.011238212697208,-0.046996798366308,0.06771532446146]],[[0.074190840125084,0.13561578094959,0.13084881007671],[0.066265515983105,0.15881790220737,-0.018077434971929],[0.045619204640388,0.041775695979595,0.0085305431857705]],[[-0.015207940712571,-0.025451581925154,-0.045610565692186],[0.052226692438126,0.070291489362717,-0.015247736126184],[0.084472559392452,-0.056842651218176,0.027100516483188]],[[-0.12918898463249,-0.18955986201763,0.025412585586309],[-0.23068165779114,0.11156933009624,-0.103874579072],[0.09423766285181,0.017946800217032,0.056166864931583]],[[-0.035681456327438,-0.033727649599314,-0.09419634193182],[0.034307487308979,-0.026700884103775,-0.05906418338418],[0.14888446033001,0.020533937960863,-0.0068334112875164]],[[-0.0090084886178374,-0.135362803936,-0.11634277552366],[-0.098675809800625,-0.029252266511321,0.10261815041304],[0.021006198599935,-0.060632396489382,-0.050587125122547]],[[-0.0089638503268361,0.049393624067307,-0.10838111490011],[0.10256487131119,-0.02038917131722,0.021298848092556],[0.048158414661884,0.046602431684732,0.074310854077339]],[[-0.010614125989377,0.017833264544606,0.013656031340361],[-0.089608669281006,0.088763892650604,0.037332139909267],[-0.10544635355473,-0.063848257064819,-0.070066265761852]],[[-0.018587544560432,-0.062861397862434,-0.11964039504528],[0.076947093009949,-0.11774095147848,-0.083125047385693],[0.067127585411072,-0.045388177037239,0.088984467089176]],[[0.11855581402779,0.11219280958176,-0.040723022073507],[-0.094163410365582,-0.030456956475973,-0.06399692595005],[-0.14628790318966,0.03608587756753,-0.0057942541316152]],[[-0.12129504233599,-0.012251337990165,-0.043680250644684],[0.028020555153489,0.068159535527229,0.0079132057726383],[-0.086788035929203,-0.069455750286579,0.0050844368524849]],[[-0.045352291315794,-0.16282871365547,-0.087449744343758],[-0.055755816400051,-0.091070458292961,0.045789834111929],[-0.024955186992884,-0.16520498692989,-0.019608484581113]],[[0.0097445594146848,-0.11083006858826,-0.023270513862371],[-0.027645109221339,0.016320323571563,0.019603122025728],[0.065725773572922,-0.050240837037563,0.03028279542923]],[[-0.095332488417625,0.037840370088816,0.12904179096222],[0.10131514817476,-0.10457167029381,-0.13721400499344],[0.09028522670269,-0.024474358186126,0.080618090927601]]],[[[0.039794750511646,0.0053683761507273,-0.047655280679464],[-0.049663927406073,0.051667559891939,0.031311646103859],[0.025445725768805,0.076114520430565,0.032344322651625]],[[-0.033443812280893,-0.0088306805118918,0.054764375090599],[0.084506303071976,-0.0034072373528033,0.04040339961648],[0.016392147168517,0.044461339712143,-0.042005494236946]],[[0.0010289736092091,0.047493487596512,0.037215244024992],[-0.055703409016132,-0.052309427410364,0.043808132410049],[-0.023391144350171,0.056923560798168,0.02046443708241]],[[-0.041937135159969,0.040556196123362,-0.057410553097725],[0.073825880885124,0.096754938364029,-0.010699024423957],[0.060436967760324,0.007201049476862,-0.070848345756531]],[[0.018131988123059,-0.10110265016556,0.00088170397793874],[-0.063396707177162,0.14189384877682,0.085936732590199],[0.01135950256139,0.028949031606317,0.0013221121625975]],[[0.017476672306657,0.059167917817831,-0.057223480194807],[0.029289061203599,-0.041472036391497,-0.097057610750198],[-0.0044179582037032,-0.01383308134973,0.11936298757792]],[[0.079635292291641,0.05772740393877,0.10711982101202],[-0.10729473084211,0.034947883337736,-0.03959983587265],[0.0039441729895771,-0.076957799494267,0.034318797290325]],[[0.058246456086636,-0.087712593376637,0.057063620537519],[-0.02590025216341,-0.027757903560996,-0.017452633008361],[-0.0063072792254388,-0.029080465435982,0.010443846695125]],[[-0.0081962924450636,-0.077696233987808,-0.10490346699953],[-0.041265062987804,0.057807594537735,0.019266897812486],[-0.0020635784603655,0.035560123622417,0.088190026581287]],[[0.019903425127268,-0.048393324017525,-0.044371835887432],[0.12148683518171,0.02908412925899,-0.18401561677456],[0.0074781817384064,-0.026291903108358,-0.053908813744783]],[[0.011420265771449,0.089275717735291,0.0079652918502688],[-0.080840550363064,0.048815101385117,0.11964278668165],[-0.07784353941679,0.043228231370449,-0.0015508180949837]],[[-0.048141747713089,-0.036972548812628,-0.018659958615899],[0.048157259821892,0.078897826373577,0.065209649503231],[0.0099913459271193,-0.096923373639584,-0.010614539496601]],[[-0.067155033349991,0.1047986894846,-0.011709483340383],[0.073141776025295,0.029338102787733,-0.15159803628922],[0.013396660797298,0.040562309324741,-0.11619741469622]],[[-0.031589735299349,-0.13300111889839,0.068937957286835],[0.085730656981468,-0.068693295121193,0.082267098128796],[-0.00075097178341821,-0.010832288302481,-0.013252664357424]],[[-0.040729962289333,0.11233485490084,-0.00026452058227733],[0.076880618929863,0.04997855052352,-0.050609044730663],[0.036859672516584,-0.17351134121418,-0.18397851288319]],[[-0.10353522747755,0.023325230926275,0.07617811858654],[-0.015525025315583,-0.055555853992701,0.072545848786831],[0.080733306705952,0.041814383119345,0.065281823277473]],[[0.015105453319848,0.048935856670141,0.055687807500362],[0.098402254283428,-0.0054166372865438,0.077827736735344],[0.013445037417114,-0.068928621709347,0.08531903475523]],[[-0.00021877451217733,0.049549706280231,-0.076883785426617],[0.069756038486958,-0.036642529070377,-0.039277281612158],[0.018859917297959,-0.073284231126308,-0.092662796378136]],[[0.14160583913326,-0.041453305631876,0.052019596099854],[-0.033202063292265,-0.066665507853031,-0.024403484538198],[0.1019989028573,0.077387288212776,-0.15500737726688]],[[-0.0045215017162263,0.11460132151842,0.0028117715846747],[0.0046127578243613,-0.0091343466192484,0.0088172983378172],[0.048928208649158,0.0029692177195102,0.012182094156742]],[[0.01059387344867,0.032348319888115,-0.036865253001451],[-0.053899653255939,0.040914442390203,-0.048694889992476],[-0.036132551729679,-0.029692957177758,0.10821189731359]],[[-0.032703515142202,-0.066569983959198,0.12669365108013],[0.089501768350601,0.029710648581386,0.038563806563616],[0.028528993949294,0.012763285078108,0.00027974054683]],[[-0.099664933979511,0.071086376905441,-0.13138268887997],[0.063242726027966,0.12480528652668,0.11107528954744],[-0.077462799847126,-0.00050932558951899,0.004563182592392]],[[-0.019601190462708,0.047232132405043,0.091065086424351],[-0.0009684165706858,-0.083474360406399,-0.027612401172519],[-0.082792483270168,0.038670253008604,-0.018039431422949]],[[0.011557405814528,-0.029183942824602,-0.086597457528114],[-0.04161461442709,0.021238652989268,-0.10882543027401],[0.019606618210673,0.021434832364321,0.051961466670036]],[[0.06203155964613,-0.037426851689816,0.054722104221582],[0.072398543357849,0.050509355962276,-0.08336516469717],[0.05830080062151,-0.050395827740431,-0.033381201326847]],[[-0.10352756083012,-0.027473777532578,-0.033197864890099],[0.047118876129389,0.11754890531301,0.085253611207008],[-0.11449725925922,-0.054078191518784,0.016052976250648]],[[0.0790044516325,-0.056659691035748,0.073133274912834],[0.13609510660172,-0.10877737402916,0.10383769124746],[-0.028025230392814,-0.090547561645508,0.19983983039856]],[[0.012763757258654,0.054558027535677,0.10226063430309],[-0.051167294383049,-0.041099518537521,0.03160061314702],[-0.054551742970943,0.01811945438385,0.0033528965432197]],[[0.027408991008997,-0.053291153162718,0.034305244684219],[0.0035195993259549,-0.10096126794815,-0.11562221497297],[-0.074450418353081,-0.15072919428349,-0.085402764379978]],[[-0.06193158775568,0.0070468187332153,0.061776798218489],[-0.094780847430229,-0.010294551029801,0.061742648482323],[-0.11698023974895,-0.13017979264259,-0.062695369124413]],[[-0.018065733835101,-0.087309084832668,0.064800553023815],[-0.029956106096506,-0.045287925750017,-0.14856988191605],[0.031137514859438,0.026663964614272,-0.051981974393129]],[[-0.06073996797204,0.027217645198107,0.064746484160423],[-0.14117702841759,-0.12746776640415,-0.026553571224213],[-0.042581472545862,-0.057580303400755,0.02957839332521]],[[-0.061824224889278,-0.037895493209362,-0.0092590320855379],[-0.028296725824475,0.0025165437255055,0.072919756174088],[-0.0084044970571995,0.049225848168135,0.034611906856298]],[[-0.011779644526541,0.015644006431103,-0.077839635312557],[-0.026249473914504,-0.09002348780632,-0.014925796538591],[-0.073440007865429,-0.065712168812752,-0.10363628715277]],[[-0.11613451689482,-0.15474098920822,-0.018291365355253],[0.10735826194286,-0.044532619416714,0.023023616522551],[-0.005659868940711,0.0068408874794841,0.024222394451499]],[[-0.025364503264427,-0.045660752803087,-0.012634596787393],[0.040554072707891,0.088718667626381,-0.20223565399647],[0.11577676981688,0.018640648573637,-0.017687615007162]],[[0.16598257422447,-0.062145009636879,-0.0029098195955157],[-0.10732562094927,-0.16620247066021,0.072657831013203],[-0.033193610608578,-0.014659717679024,0.076961621642113]],[[-0.059782583266497,-0.0068085570819676,0.016988076269627],[-0.030888075008988,-0.048020340502262,-0.098984472453594],[0.094819344580173,0.037178486585617,0.04557965323329]],[[0.044860195368528,0.027111852541566,-0.11562414467335],[0.087949104607105,-0.043768171221018,0.012074018828571],[0.098111979663372,0.0047350311651826,0.0012458962155506]],[[0.043521020561457,-0.012801283970475,-0.097055330872536],[0.058164618909359,0.13669426739216,-0.12598603963852],[0.011257013306022,0.0064550540409982,-0.066771700978279]],[[-0.045052368193865,-0.035843625664711,-0.10762540251017],[-0.059810861945152,0.0081153083592653,0.013322864659131],[-0.013071451336145,0.0025239188689739,0.01793884858489]],[[0.021643267944455,0.022950271144509,-0.012810550630093],[-0.026663787662983,0.050248526036739,-0.24001464247704],[-0.014870299957693,0.092680417001247,-0.094361372292042]],[[0.12004814296961,0.054583750665188,0.0054763001389802],[-0.040059018880129,-0.016512563452125,-0.00969750713557],[-0.0003337919479236,0.021474905312061,-0.074005484580994]],[[0.058418218046427,-0.14394554495811,-0.033276274800301],[0.12733057141304,-0.061186704784632,-0.044635780155659],[0.06316601485014,-0.0090445764362812,-0.073285453021526]],[[0.12665803730488,0.078948721289635,-0.12432513386011],[0.072430565953255,0.080120377242565,0.0066511817276478],[0.1183186173439,-0.033560249954462,-0.025964455679059]],[[-0.11588701605797,0.095208562910557,0.028035530820489],[0.024190649390221,-0.092714861035347,0.069187738001347],[0.078381441533566,-0.038097761571407,-0.074192993342876]],[[-0.17614088952541,-0.073287777602673,0.096864655613899],[-0.021107563748956,-0.050994016230106,-0.077678754925728],[0.065932422876358,0.077417433261871,0.01471049990505]],[[-0.010306466370821,0.012795332819223,-0.026293080300093],[-0.057215593755245,0.012646201066673,0.093599319458008],[-0.019059419631958,-0.092443443834782,0.072622835636139]],[[-0.033526457846165,0.093901872634888,0.072784706950188],[0.059759423136711,-0.055833104997873,-0.069445706903934],[-0.013227818533778,-0.035522270947695,-0.061501190066338]],[[-0.078257456421852,0.029466219246387,-0.055759087204933],[-0.0030589767266065,-0.018142394721508,-0.039024904370308],[0.090355694293976,0.002699936972931,-0.11310484260321]],[[-0.10773867368698,-0.036588240414858,-0.06425866484642],[0.021891979500651,0.044392183423042,-0.066719688475132],[-0.14446592330933,0.051285888999701,-0.071110464632511]],[[-0.11670499294996,-0.10097007453442,0.13633228838444],[0.022380113601685,-0.00046968477545306,0.08467759937048],[-0.010686593130231,-0.033832911401987,0.077661082148552]],[[-0.081240266561508,-0.016173511743546,0.081559017300606],[-0.059548668563366,-0.018193086609244,-0.11599572002888],[-0.016072448343039,0.062956415116787,0.038459993898869]],[[-0.03095131739974,-0.10443688184023,0.074920833110809],[0.070289880037308,-0.043291606009007,-0.11403176188469],[0.0079660834744573,-0.078102611005306,-0.098972909152508]],[[-0.079412467777729,-0.04233006387949,-0.015070999972522],[-0.068511605262756,-0.077839933335781,-0.082107990980148],[0.14638122916222,-0.029709801077843,-0.049727454781532]],[[0.076480701565742,-0.02491857483983,-0.050978723913431],[0.0097577283158898,-0.084155544638634,0.071443535387516],[-0.042294956743717,0.047608628869057,-0.011537030339241]],[[0.039436560124159,0.14241234958172,-0.023427728563547],[-0.044082019478083,0.024573117494583,0.022091317921877],[0.011058485135436,-0.067991174757481,-0.05545487627387]],[[-0.077800184488297,-0.0086939008906484,0.0077256164513528],[-0.01176467910409,0.0038940815720707,-0.0054902280680835],[0.019187975674868,0.037473231554031,0.089663803577423]],[[0.09041789919138,0.019908983260393,-0.069801814854145],[0.040995668619871,0.012198556214571,-0.0079207671806216],[0.096699267625809,-0.18122586607933,-0.0028276983648539]],[[0.042621485888958,-0.0056588570587337,-0.0033476138487458],[0.047250740230083,0.033921279013157,0.0022345362231135],[0.050667446106672,-0.066056400537491,-0.020737869665027]],[[-0.025046853348613,0.11941645294428,-0.028106881305575],[-0.17297665774822,-0.069082446396351,0.044106107205153],[-0.099159494042397,-0.00011317715689074,-0.038388926535845]],[[0.11801841109991,-0.10319720953703,0.080689966678619],[0.14223602414131,0.036556337028742,0.03354312852025],[0.013327054679394,-0.080280378460884,-0.065553858876228]],[[0.040628436952829,-0.047419719398022,-0.049879860132933],[-0.082817122340202,-0.14971235394478,0.19756335020065],[0.0079611334949732,0.017762811854482,0.050924874842167]]],[[[-0.07425195723772,-0.025998588651419,-0.16879703104496],[-0.021440183743834,-0.050969868898392,-0.2350657582283],[0.095955342054367,-0.021901309490204,0.012816342525184]],[[0.068851299583912,-0.1732274889946,-0.035655349493027],[0.0055549913085997,-0.080215275287628,0.014789404347539],[-0.037473808974028,0.10793329775333,-0.051473524421453]],[[-0.0069100991822779,-0.10874593257904,0.091150611639023],[-0.061253625899553,-0.15577910840511,0.09478621929884],[-0.011174662970006,0.086526229977608,0.079109437763691]],[[-0.030453154817224,0.038284290581942,0.32852491736412],[-0.073959030210972,-0.040035471320152,0.012362843379378],[-0.052729383111,-0.064476981759071,-0.098657004535198]],[[0.19293493032455,0.12844689190388,0.19900348782539],[-0.0054639019072056,0.030511658638716,0.014576437883079],[-0.0059715434908867,0.10003373026848,-0.05615447089076]],[[-0.0073895468376577,-0.29893988370895,0.033478144556284],[-0.019852133467793,0.05881728976965,0.0020221164450049],[0.037626761943102,0.08093249797821,-0.076806753873825]],[[0.052502784878016,0.055718991905451,-0.0643674954772],[-0.050048753619194,-0.00763487117365,0.041522394865751],[0.063766397535801,-0.073057256639004,0.016839399933815]],[[-0.011547053232789,-0.076376065611839,-0.089570812880993],[-0.05840552225709,0.079553857445717,-0.047892682254314],[0.044183973222971,0.068239331245422,-0.038309372961521]],[[0.038165424019098,-0.032347336411476,0.039562687277794],[-0.095853760838509,0.050256829708815,-0.015551527962089],[-0.032140843570232,0.080327853560448,-0.058742009103298]],[[-0.02975207567215,0.1113798096776,0.010031953454018],[-0.014653403311968,0.088494941592216,0.048788759857416],[-0.080518953502178,-0.15113025903702,-0.07343116402626]],[[-0.00068089284468442,0.042698070406914,-0.0071066631935537],[0.050236705690622,-0.010625225491822,-0.033830858767033],[-0.063587255775928,-0.0066430736333132,0.020414335653186]],[[-0.014683144167066,-0.049666091799736,0.087366782128811],[-0.037713143974543,-0.064236663281918,-0.042778633534908],[-0.15614925324917,-0.14408992230892,-0.011047560721636]],[[-0.0044590383768082,0.074687242507935,0.11487134546041],[0.030933305621147,-0.08234479278326,-0.030636694282293],[0.050253786146641,-0.037752036005259,0.0077241170220077]],[[0.05115370079875,0.066759258508682,0.14356683194637],[-0.049252714961767,-0.031031630933285,0.074983775615692],[-0.080024287104607,-0.047565218061209,0.01267858594656]],[[0.020753797143698,0.052637528628111,0.159862190485],[-0.057980317622423,-0.074443489313126,-0.008687230758369],[-0.025147626176476,-0.041428156197071,-0.106590308249]],[[-0.066728495061398,-0.051039077341557,0.059755638241768],[-0.031225809827447,0.084880463778973,0.11064338684082],[-0.12970468401909,-0.055869963020086,0.0053813154809177]],[[-0.10255060344934,-0.024646075442433,-0.039582394063473],[-0.071210317313671,-0.087370686233044,-0.0087423995137215],[-0.092962823808193,0.021762870252132,0.10113725066185]],[[-0.055054266005754,-0.07536806166172,0.0056532439775765],[0.083914250135422,-0.12678933143616,-0.037502892315388],[-0.0153624471277,-0.029422976076603,-0.010389089584351]],[[0.016925305128098,0.033725373446941,-0.28685957193375],[0.093331798911095,0.010978146456182,-0.0029535971116275],[0.024961551651359,0.12478223443031,-0.067189894616604]],[[0.082069680094719,0.014461252838373,-0.09501925110817],[-0.027325395494699,-0.034135453402996,0.060754869133234],[0.16750568151474,0.2262566536665,0.0085208546370268]],[[-0.10554949939251,-0.13785797357559,-0.12435485422611],[0.032219436019659,0.0049067544750869,0.11022206395864],[-0.06372008472681,-0.047435604035854,-0.13307686150074]],[[-0.080960005521774,-0.18422895669937,0.022880285978317],[-0.05715249851346,0.059541415423155,-0.045879319310188],[-0.15939363837242,-0.053102727979422,0.013274032622576]],[[-0.099380828440189,0.038896478712559,-0.026831991970539],[-0.093367695808411,0.03785702213645,-0.084353029727936],[0.10592960566282,-0.010533548891544,-0.058136273175478]],[[-0.056974899023771,0.0939110070467,0.070564717054367],[0.046430811285973,-0.079079926013947,-0.012648263946176],[0.071450181305408,-0.014683394692838,-0.12529291212559]],[[-0.015368504449725,-0.078218914568424,0.021262420341372],[0.0032589675392956,0.10913118720055,-0.020892748609185],[0.044616065919399,-0.30421003699303,-0.068640358746052]],[[0.10068872570992,-0.071117475628853,0.041273225098848],[0.056359514594078,0.056625299155712,-0.010423004627228],[0.022694014012814,-0.14047449827194,-0.045854367315769]],[[-0.2006242275238,-0.058149568736553,-0.085116177797318],[-0.024385979399085,0.0029377879109234,-0.08404278755188],[-0.055531822144985,-0.12697273492813,0.0043473681434989]],[[-0.063089065253735,-0.10818900167942,0.08112895488739],[-0.060726258903742,-0.06238479912281,-0.025461543351412],[-0.098253846168518,0.20275777578354,0.2275380641222]],[[0.015021862462163,0.023347847163677,0.11554658412933],[-0.026480855420232,-0.0094779897481203,0.012733796611428],[0.028881840407848,0.072350837290287,-0.075634367763996]],[[0.046080853790045,-0.038695588707924,0.0012342067202553],[-0.16967885196209,-0.066081956028938,-0.10421761125326],[-0.15832199156284,-0.035708770155907,-0.037275318056345]],[[-0.13736090064049,0.019430181011558,-0.18106167018414],[-0.033226042985916,-0.076460547745228,-0.062070120126009],[0.051376432180405,-0.06110792607069,0.14000457525253]],[[0.11446352303028,-0.045060269534588,0.18028762936592],[-0.00710045453161,0.034210819751024,-0.012145132757723],[-0.024998024106026,-0.089497908949852,0.12527406215668]],[[0.11067698150873,0.043439447879791,-0.013401760719717],[-0.054504383355379,0.10376024991274,0.065628573298454],[-0.068188697099686,0.0073416437953711,0.0037462103646249]],[[-0.13595072925091,-0.0011853566393256,-0.0074437628500164],[-0.0094206659123302,-0.10488238930702,0.021721269935369],[-0.072868414223194,0.078927651047707,-0.12987619638443]],[[-0.053892783820629,0.067119769752026,0.089108660817146],[0.050129394978285,-0.0095382146537304,0.050696723163128],[0.044950090348721,-0.063756726682186,-0.076497338712215]],[[-0.0062869004905224,0.046035688370466,0.019544227048755],[0.010029223747551,0.073653504252434,0.0025776827242225],[0.056963630020618,-0.0021297540515661,0.025446543470025]],[[0.0031854142434895,0.033223088830709,-0.0093703167513013],[-0.033633299171925,0.048094220459461,-0.070696018636227],[-0.13861334323883,0.035956066101789,-0.077824905514717]],[[0.075309991836548,0.022864947095513,-0.021022053435445],[0.0097140409052372,0.088788837194443,-0.14426280558109],[0.0064598363824189,0.052931297570467,0.15034221112728]],[[0.014449562877417,0.080651722848415,0.21110062301159],[-0.065275445580482,0.011904249899089,0.16611613333225],[-0.034116897732019,-0.041375398635864,0.064008720219135]],[[-0.049412164837122,0.003219862934202,-0.0016807754291221],[0.053094789385796,-0.10792624205351,0.01966780051589],[-0.048462722450495,0.12117033451796,-0.0074784844182432]],[[0.15005250275135,-0.12880448997021,-0.069925375282764],[-0.088239192962646,-0.19253844022751,0.19197258353233],[0.12806232273579,-0.068604685366154,-0.066083155572414]],[[0.087236106395721,0.15109197795391,0.20336554944515],[-0.058669552206993,0.13241678476334,0.15649506449699],[-0.12104952335358,0.032549846917391,-0.063092552125454]],[[0.024035036563873,-0.021769423037767,0.1248128041625],[0.068908341228962,-0.089627578854561,-0.10456009209156],[-0.15811415016651,-0.032263688743114,-0.12548297643661]],[[-0.087828934192657,-0.015374870970845,-0.036465235054493],[0.024831434711814,0.00042470899643376,-0.18292777240276],[0.043141752481461,0.058847852051258,0.05318071693182]],[[-0.10076307505369,-0.097584933042526,0.034017730504274],[-0.14921237528324,-0.12462428957224,-0.026715876534581],[-0.11082527041435,-0.10586082935333,-0.12096190452576]],[[-0.11909694224596,-0.075229361653328,-0.23558858036995],[0.00074511219281703,0.087139956653118,0.030332313850522],[-0.0076371268369257,0.028399281203747,0.018026078119874]],[[-0.0094443671405315,0.06717973947525,0.18159633874893],[0.032820507884026,-0.033056683838367,0.025848269462585],[-0.023842617869377,0.0030144331976771,-0.048863437026739]],[[-0.071869820356369,0.13543075323105,0.19505201280117],[-0.07172617316246,0.01062527205795,0.09267295897007],[-0.18324862420559,-0.10973496735096,-0.044493366032839]],[[-0.053654033690691,-0.031790178269148,-0.25432711839676],[0.084032066166401,0.056429348886013,-0.10863982886076],[-0.022472482174635,-0.079918332397938,-0.026095300912857]],[[0.026339709758759,0.027976447716355,-0.049940887838602],[0.011891414411366,-0.081767737865448,0.040165413171053],[0.031172079965472,-0.075967490673065,0.027859898284078]],[[0.048390913754702,0.10328607261181,0.19084979593754],[-0.010313398204744,-0.14255852997303,0.098586469888687],[-0.13488903641701,-0.079811684787273,-0.11730683594942]],[[0.040236461907625,0.14871783554554,0.19344229996204],[0.035410176962614,0.15043692290783,0.031854707747698],[-0.0055886236950755,0.073272705078125,-0.060307487845421]],[[-0.033542387187481,-0.15242923796177,-0.1693648993969],[0.18318194150925,0.024589501321316,0.012330973520875],[0.11783098429441,0.086568646132946,0.060080949217081]],[[-0.032876662909985,-0.029034469276667,-0.078049167990685],[0.10338714718819,0.052466977387667,0.10067047178745],[-0.007864679209888,-0.13370457291603,-0.070390865206718]],[[0.023798421025276,0.053649056702852,0.05357863008976],[-0.033121522516012,-0.027963379397988,-0.048777334392071],[0.012279546819627,0.011608926579356,-0.031208105385303]],[[0.04993999376893,0.091161385178566,-0.18095523118973],[-0.0713030397892,0.16185826063156,-0.26186588406563],[-0.068155020475388,0.0036486249882728,-0.023512624204159]],[[-0.0037104589864612,0.14039689302444,0.013433476909995],[0.070262245833874,0.060312204062939,-0.0039124870672822],[-0.01503402646631,0.10392698645592,0.069147691130638]],[[-0.012536210939288,0.009657715447247,0.075239710509777],[-0.042205806821585,0.076377339661121,0.081645667552948],[-0.1334687769413,-0.00075766927329823,-0.031533606350422]],[[-0.032071318477392,-0.0090841688215733,0.049341067671776],[-0.020055880770087,-0.0032227975316346,0.017578028142452],[0.044929649680853,0.039223000407219,0.10720036178827]],[[0.06551368534565,0.056763630360365,0.19878357648849],[0.036972086876631,-0.050558887422085,0.16304329037666],[-0.15538187325001,-0.13669788837433,0.013535583391786]],[[-0.076960228383541,-0.14557245373726,0.028257934376597],[0.039981473237276,-0.064492553472519,-0.20521134138107],[-0.041800525039434,-0.098346225917339,-0.14496128261089]],[[0.038958378136158,-0.08722285181284,-0.15601620078087],[-0.089464217424393,-0.0032357899472117,0.0056515955366194],[-0.18481402099133,-0.058420460671186,-0.19946072995663]],[[-0.012605333700776,-0.060150969773531,0.055164318531752],[-0.094857044517994,0.032573971897364,0.045457150787115],[-0.092619769275188,0.046697322279215,0.16781206429005]],[[-0.094750180840492,0.014533095993102,-0.014288133010268],[0.0095790345221758,0.043764233589172,-0.070530340075493],[0.16379997134209,0.037612780928612,0.064436867833138]]],[[[-0.11666924506426,-0.081122383475304,0.13723380863667],[-0.01114924158901,-0.043445095419884,-0.12523606419563],[-0.042813841253519,-0.038512282073498,0.14129510521889]],[[-0.064776785671711,0.041479781270027,0.14030727744102],[-0.088487446308136,-0.047245282679796,0.082056999206543],[0.027175411581993,0.020540488883853,-0.065372571349144]],[[-0.10162557661533,-0.023902006447315,0.15126276016235],[-0.14174817502499,-0.023561727255583,0.044653497636318],[-0.16489493846893,-0.026507653295994,0.17890585958958]],[[-0.22088475525379,-0.055373419076204,-0.060071110725403],[-0.077679857611656,0.018233316019177,-0.11664755642414],[0.0042823920957744,-0.062949195504189,-0.13066971302032]],[[-0.01278271060437,0.13278403878212,-0.12066475301981],[0.18616093695164,-0.039440512657166,-0.029246941208839],[0.00098361971322447,-0.039862297475338,-0.13334363698959]],[[0.13202024996281,-0.068958073854446,0.25248965620995],[-0.00019277154933661,0.10916087776423,0.028002006933093],[0.062689378857613,-0.017004365101457,0.24690598249435]],[[-0.06258662045002,-0.015897918492556,-0.058887183666229],[-0.027282385155559,0.022212609648705,-0.061558987945318],[-0.066866889595985,0.011489162221551,-0.2026152163744]],[[-0.048050712794065,0.067456685006618,-0.0077273868955672],[-0.056399278342724,0.0070046395994723,-0.013124777004123],[0.071358993649483,0.040441289544106,-0.16454590857029]],[[-0.088511541485786,0.068087331950665,0.069973580539227],[0.047233279794455,0.017840018495917,-0.0045999069698155],[-0.066118024289608,-0.12168869376183,0.0013165604323149]],[[0.060283116996288,-0.069733269512653,-0.11412789672613],[-0.054430097341537,-0.091771349310875,-0.06351850181818],[-0.048700533807278,0.010866842232645,0.097302936017513]],[[0.12980565428734,-0.0099139446392655,-0.031170768663287],[0.0037803223822266,0.11415214836597,0.0066640381701291],[-0.10165803879499,-0.046051122248173,-0.091881550848484]],[[0.0061714695766568,-0.11953628063202,-0.059604898095131],[-0.086324125528336,0.035666175186634,-0.027042482048273],[-0.1209409236908,-0.13344232738018,-0.021065033972263]],[[-0.11488954722881,0.087896123528481,0.05849090218544],[-0.089371085166931,0.037251528352499,-0.10276201367378],[-0.056687202304602,0.00036643620114774,-0.12028770893812]],[[0.010069014504552,-0.14697515964508,-0.050203666090965],[0.083965644240379,-0.010545825585723,-0.11868371069431],[-0.039669387042522,0.10844171047211,-0.13829806447029]],[[-0.019895438104868,-0.23365212976933,0.14555528759956],[0.099076367914677,-0.15989047288895,-0.27804958820343],[-0.064143739640713,-0.061322350054979,0.086183145642281]],[[0.10489601641893,-0.046533588320017,0.034092754125595],[0.015818025916815,-0.11504434794188,-0.03885055705905],[-0.029781874269247,-0.065405480563641,-0.073456026613712]],[[-0.029137125238776,0.026931563392282,-0.079734660685062],[-0.072985075414181,0.1039552167058,0.049730524420738],[-0.034290716052055,-0.06477789580822,-0.016897816210985]],[[-0.041253790259361,-0.027297735214233,-0.070735178887844],[-0.077611953020096,-0.038005832582712,0.090759620070457],[-0.11825378239155,0.022173492237926,-0.19966857135296]],[[-0.026125250384212,-0.0031343100126833,-0.019437003880739],[-0.10119689255953,-0.067149788141251,-0.12098890542984],[0.0086584147065878,0.022380052134395,0.081488646566868]],[[0.042477242648602,0.02970308624208,-0.0087325209751725],[-0.0071219122037292,0.076032504439354,0.00046445222687908],[0.063964545726776,0.084968127310276,0.0049938634037971]],[[0.13288588821888,-0.019914470613003,-0.129090949893],[0.058385170996189,-0.027010576799512,0.0097469510510564],[-0.038271002471447,-0.16541785001755,0.15132717788219]],[[-0.20469859242439,-0.18817833065987,-0.24062731862068],[0.043793652206659,-0.16221258044243,-0.31370291113853],[0.035332590341568,0.014388942159712,-0.19241626560688]],[[-0.00623117107898,0.026472091674805,-0.16751125454903],[0.014482638798654,-0.13328637182713,-0.014264153316617],[0.0045721400529146,-0.060185432434082,-0.12751483917236]],[[0.027796551585197,-0.0041693607345223,-0.04435658082366],[-0.14492703974247,-0.023726968094707,-0.14196789264679],[0.066677071154118,-0.030814418569207,-0.28508359193802]],[[0.0075843273662031,0.087934374809265,-0.16078817844391],[0.00026689871447161,-0.010680058971047,0.047166034579277],[-0.11803850531578,-0.19451434910297,-0.091880857944489]],[[-0.14938655495644,-0.021419430151582,-0.049156229943037],[-0.16465802490711,-0.16721768677235,-0.16662195324898],[-0.19506397843361,-0.040872354060411,-0.065776072442532]],[[-0.089782737195492,0.037664730101824,-0.041824731975794],[0.0881402567029,-0.043489165604115,0.028214471414685],[-0.11946632713079,-0.037639189511538,-0.13902358710766]],[[-0.14350041747093,0.12741592526436,-0.029596593230963],[-0.29712781310081,-0.079768188297749,0.037115816026926],[-0.0016153848264366,-0.10927093029022,0.0023443796671927]],[[-0.01881087012589,-0.007691137958318,-0.2195393294096],[-0.020415028557181,-0.042893178761005,0.0018572376575321],[-0.12491892278194,0.081406027078629,-0.0030724902171642]],[[-0.10201918333769,0.017817268148065,-0.0047385231591761],[-0.064199812710285,0.0054598469287157,-0.10990968346596],[0.0077378507703543,-0.038332331925631,-0.11866690218449]],[[-0.12976133823395,0.016972694545984,-0.14685268700123],[0.0023351009003818,0.0061887372285128,0.033326685428619],[-0.011866825632751,0.10178949683905,-0.015391481108963]],[[-0.028757326304913,-0.0040983804501593,0.061464313417673],[-0.02279850281775,-0.017397675663233,0.02388197183609],[-0.061098255217075,-0.031263090670109,-0.083411648869514]],[[-0.0036496713291854,0.0080422125756741,0.11960043013096],[0.077833443880081,0.0012373239733279,0.0038482679519802],[-0.17405407130718,-0.093785211443901,0.086383275687695]],[[-0.015206879936159,0.06840717792511,0.010248621925712],[0.018489284440875,-0.077327080070972,-0.054813344031572],[0.001299882074818,-0.01182998996228,-0.06404272466898]],[[-0.087103679776192,-0.027157643809915,-0.070886574685574],[-0.048692528158426,-0.11073404550552,0.041215516626835],[0.1028677970171,0.026766849681735,0.017943108454347]],[[0.018828969448805,-0.031073713675141,-0.2135606110096],[-0.025277586653829,0.12255887687206,0.10223750025034],[-0.015576923266053,-0.0083496840670705,-0.096101194620132]],[[0.13053162395954,0.052888419479132,-0.12846258282661],[0.012195371091366,-0.026791580021381,-0.1077748015523],[0.030163541436195,-0.018298652023077,-0.085429221391678]],[[0.0087170992046595,0.071994960308075,-0.012348742224276],[-0.071489974856377,-0.16246290504932,-0.099196828901768],[0.027489194646478,-0.016411226242781,0.017799597233534]],[[-0.093736961483955,-0.10669157654047,-0.10775227099657],[-0.049045965075493,-0.06622164696455,-0.046149637550116],[-0.13146014511585,-0.049277048557997,-0.076378308236599]],[[-0.031248454004526,0.035179074853659,-0.018539005890489],[-0.00087348680244759,0.039151482284069,0.01579581387341],[-0.050495207309723,-0.049376502633095,-0.037681389600039]],[[0.079472318291664,0.09046683460474,0.10044622421265],[-0.11144685000181,0.050043884664774,0.037694081664085],[-0.075236447155476,0.015744214877486,0.055747430771589]],[[0.061865445226431,0.13155338168144,0.01590795814991],[-0.051589924842119,0.048901289701462,0.011731686070561],[0.031397867947817,-0.055219806730747,0.059834558516741]],[[0.058835659176111,0.077094659209251,-0.28141376376152],[-0.026425529271364,-0.19462144374847,-0.18029008805752],[0.060450166463852,-0.13435792922974,-0.021858680993319]],[[-0.052658431231976,-0.0034051951952279,-0.055331211537123],[-0.011864348314703,0.041698765009642,0.048244308680296],[-0.048863954842091,-0.004713237285614,0.060668669641018]],[[-0.00045391751336865,0.1490503102541,-0.01479169074446],[-0.011647444218397,-0.11519808322191,-0.077932380139828],[-0.05809497833252,-0.0072767618112266,-0.037242732942104]],[[-0.078782230615616,0.035813935101032,-0.033636786043644],[0.011697417125106,-0.094004102051258,-0.029183618724346],[-0.064435616135597,0.14235329627991,0.11841359734535]],[[0.028627509251237,0.10195150971413,-0.19811089336872],[0.078308410942554,0.022097898647189,-0.0046122362837195],[-0.10193637013435,0.019890569150448,0.013221311382949]],[[-0.1014387384057,-0.054517421871424,-0.0045713162980974],[0.066492520272732,-0.10086217522621,0.011140710674226],[-0.11036934703588,-0.1302811652422,-0.1035905405879]],[[-0.13756911456585,0.10690458118916,0.11619153618813],[-0.061425641179085,-0.14103256165981,-0.010564744472504],[-0.12713856995106,-0.060863845050335,0.024940444156528]],[[-0.071388304233551,-0.042646329849958,-0.049543004482985],[-0.024835044518113,0.039328902959824,0.0025712717324495],[0.040978219360113,0.09035786986351,-0.011625093407929]],[[-0.16758240759373,0.10432880371809,0.039487149566412],[-0.086369231343269,-0.05156172066927,-0.0085570700466633],[-0.22085057199001,-0.18255786597729,-0.0473438128829]],[[0.098004847764969,-0.059495270252228,-0.063281059265137],[-0.084963127970695,-0.085522457957268,-0.047146487981081],[-0.13779398798943,0.025707306340337,-0.043907456099987]],[[-0.15526100993156,0.065193496644497,0.17195810377598],[0.093863718211651,0.075343236327171,-0.072017155587673],[-0.033188451081514,0.058302003890276,0.039119053632021]],[[-0.075156860053539,-0.17336595058441,-0.022498335689306],[-0.016766518354416,-0.0006721974350512,-0.099246770143509],[-0.095567643642426,-0.04257307946682,0.043050449341536]],[[0.0098156938329339,-0.080133989453316,-0.13622483611107],[-0.038120783865452,0.23075814545155,0.020502097904682],[-0.040820524096489,-0.13305687904358,0.019634988158941]],[[-0.14286725223064,-0.018512152135372,0.060212522745132],[-0.00077126495307311,0.046715430915356,-0.084319174289703],[-0.030343480408192,-0.14248518645763,-0.066502287983894]],[[0.019424816593528,-0.041924644261599,0.077002458274364],[0.014750550501049,0.14319568872452,-0.014551891945302],[-0.010702503845096,0.078212670981884,-0.031645487993956]],[[-0.043988090008497,0.036797486245632,-0.074643060564995],[0.11703748255968,0.041583448648453,-0.031711339950562],[-0.084085270762444,-0.031061360612512,-0.11303667724133]],[[0.074160546064377,-0.14710336923599,-0.098972365260124],[-0.041616227477789,0.041284538805485,0.0064088790677488],[0.051550045609474,0.14946593344212,-0.0092082004994154]],[[0.054408200085163,-0.016208358108997,0.073055997490883],[0.048212643712759,-0.12208291143179,-0.016478767618537],[-0.029760768637061,0.026818614453077,-0.028908995911479]],[[0.017155051231384,-0.091344095766544,0.022163145244122],[-0.063090607523918,0.0043194582685828,-0.018414894118905],[-0.1190762668848,0.026910435408354,0.031087428331375]],[[0.073488160967827,-0.047668650746346,0.088480807840824],[-0.05875626206398,0.04633716866374,-0.11563236266375],[0.08654723316431,-0.080272331833839,0.063534379005432]],[[0.088586032390594,0.15407100319862,-0.059599697589874],[-0.012149214744568,0.083553150296211,0.073674656450748],[0.062617018818855,-0.09614585340023,-0.043297860771418]],[[0.021536970511079,0.034368127584457,0.010417866520584],[0.028882138431072,-0.086902484297752,0.0079976674169302],[0.0087558655068278,0.064020469784737,0.1200203076005]]],[[[-0.01526759006083,-0.11905135959387,0.057255994528532],[0.021966138854623,0.011632711626589,0.029048535972834],[0.1070383861661,0.03175388649106,0.012423219159245]],[[-0.047524854540825,-0.071677379310131,-0.016926005482674],[0.11599314212799,0.12030085176229,-0.052979480475187],[-0.070157632231712,-0.060248170047998,0.010251174680889]],[[0.021158188581467,0.063513725996017,0.035720203071833],[-0.068164207041264,0.019007069990039,0.17713713645935],[-0.081596858799458,-0.041666690260172,-0.070202715694904]],[[-0.040436416864395,-0.0090922517701983,0.011304670013487],[-0.10314293950796,-0.047930616885424,-0.006034183781594],[-0.025031426921487,0.10138903558254,-0.056660294532776]],[[0.074291713535786,0.0051630400121212,-0.11664271354675],[-0.056704808026552,-0.037128865718842,-0.065449707210064],[0.040861655026674,-0.10795541852713,-0.088475570082664]],[[0.020189560949802,0.11913070827723,-0.17412361502647],[-0.020496526733041,0.079564929008484,0.012170875445008],[0.0079734427854419,0.015458970330656,0.029157331213355]],[[-0.073767527937889,0.0022612812463194,0.06866305321455],[-0.095202513039112,-0.10906495898962,0.11647480726242],[0.020483182743192,-0.02878818102181,0.080156594514847]],[[-0.032595492899418,-0.022334018722177,-0.11923183500767],[-0.0067571611143649,-0.075821369886398,-0.12078505009413],[0.0047053908929229,0.012464442290366,0.1381743401289]],[[-0.0032426370307803,-0.087784759700298,-0.051712371408939],[0.054882526397705,0.0029357967432588,0.055509373545647],[-0.019522974267602,-0.01999538205564,0.04840587079525]],[[-0.02477796189487,-0.17819236218929,0.054435160011053],[-0.010462730191648,0.0041420240886509,-0.007651892490685],[0.026257697492838,-0.12192697823048,-0.088406316936016]],[[-0.054293215274811,0.03638019412756,0.01795993372798],[0.0089557403698564,0.022182945162058,0.038635436445475],[0.080506160855293,0.1717584580183,0.048589024692774]],[[0.0055433688685298,-0.04206557571888,0.10353515297174],[0.015148462727666,-0.019373446702957,0.062169581651688],[0.017152423039079,0.033202700316906,0.057533212006092]],[[0.065591402351856,0.037411775439978,-0.030323147773743],[-0.045234985649586,-0.013376541435719,-0.050954911857843],[0.038190182298422,-0.12773680686951,0.024945249781013]],[[-0.0095819095149636,0.026736861094832,-0.079201273620129],[0.079539127647877,-0.038892704993486,0.00095538288587704],[-0.030373938381672,-0.031367857009172,-0.037490282207727]],[[-0.088488005101681,0.0051437425427139,-0.06348367780447],[-0.025769198313355,-0.002543596085161,0.044312838464975],[-0.075489290058613,0.078532993793488,-0.036391794681549]],[[0.018584219738841,0.065055564045906,-0.029734369367361],[0.11921503394842,-0.01299349591136,-0.018079878762364],[-0.051143053919077,-0.011860842816532,0.083578988909721]],[[0.09768108278513,0.03720847517252,0.052435029298067],[-0.024620262905955,0.10460579395294,0.017699146643281],[-0.024795165285468,-0.043886929750443,0.035359371453524]],[[-0.016024416312575,-0.051145516335964,-0.075795292854309],[-0.054223272949457,0.010847160592675,0.039129737764597],[-0.066144026815891,-0.039379999041557,-0.024240793660283]],[[-0.062540404498577,-0.075066357851028,0.14044596254826],[0.0029731136746705,-0.016298085451126,-0.0097850924357772],[0.084792889654636,0.00038040289655328,-0.10210651159286]],[[-0.097531966865063,0.073616996407509,-0.029247315600514],[-0.077287457883358,-0.012599394656718,-0.0022291848435998],[-0.010587596334517,-0.0043035000562668,-0.15088164806366]],[[-0.05737754330039,-0.014301229268312,-0.090331420302391],[-0.0088750459253788,-0.0045467191375792,0.055176623165607],[-0.014346282929182,-0.026025058701634,0.041076675057411]],[[0.022309923544526,-0.052066292613745,0.079778581857681],[-0.0012096791760996,-0.081557609140873,-0.0058497884310782],[-0.033326052129269,0.023223733529449,0.070828251540661]],[[0.025123530998826,0.017188658937812,-0.041625577956438],[0.035884264856577,-0.034711021929979,0.019907696172595],[-0.014639714732766,0.011630763299763,0.056000508368015]],[[-0.054388258606195,-0.053248144686222,0.044241394847631],[-0.023358097299933,0.065029367804527,0.049417220056057],[-0.013550966978073,-0.028856663033366,-0.079420514404774]],[[-0.010980763472617,0.007970348931849,0.040985882282257],[0.021502593532205,0.0095249656587839,-0.095108851790428],[-0.13075797259808,-0.025364607572556,0.02157717384398]],[[-0.019707597792149,0.036848824471235,-0.034488152712584],[-0.0055255754850805,-0.055713512003422,0.10910496115685],[-0.069950200617313,-0.062029331922531,0.041611976921558]],[[-0.084803372621536,-0.074328854680061,0.0047002523206174],[-0.057261995971203,0.0020650213118643,-0.012421743944287],[-0.014918095432222,0.083601392805576,-0.057854346930981]],[[0.022970532998443,-0.12208949774504,-0.054148562252522],[0.052891932427883,-0.018516464158893,-0.044975928962231],[0.021481404080987,0.16135084629059,-0.042392544448376]],[[-0.022082122042775,-0.0036575843114406,0.095186918973923],[-0.11803126335144,0.12414192408323,0.003013503504917],[-0.0060701030306518,-0.068344071507454,0.004349994007498]],[[-0.12279325723648,0.013460846617818,-0.14749449491501],[-0.044092766940594,-0.052389610558748,-0.020186103880405],[0.027269652113318,-0.064701877534389,-0.12659353017807]],[[0.011816643178463,0.028114303946495,-0.18478974699974],[0.1308995038271,0.097387261688709,-0.010526387020946],[0.076874062418938,0.06735010445118,0.046036139130592]],[[-0.018525715917349,0.015576349571347,-0.081258095800877],[-0.024551883339882,0.0055302525870502,0.060833305120468],[-0.077811606228352,0.0055545195937157,-0.13990013301373]],[[0.031048517674208,-0.047279745340347,-0.018608391284943],[0.039244126528502,-0.080613434314728,-0.057186242192984],[-0.0592036023736,-0.0074419556185603,-0.043617311865091]],[[0.016634436324239,0.0081016505137086,0.088423147797585],[0.050160225480795,0.06767163425684,-0.04242129996419],[-0.024503966793418,-0.013872172683477,-0.05968164652586]],[[0.011243882589042,0.14084427058697,0.015278457663953],[-0.01734228618443,-0.048202957957983,-0.047232259064913],[-0.020631877705455,-0.17631690204144,-0.066445507109165]],[[-0.023090392351151,-0.046571638435125,0.15499636530876],[0.013237065635622,0.058429230004549,-0.057034309953451],[0.0084282616153359,0.052102047950029,-0.050440739840269]],[[-0.025522664189339,-0.20522983372211,0.13668988645077],[-0.057069707661867,-0.046531673520803,-0.072506584227085],[-0.015638863667846,0.0069348597899079,0.075735501945019]],[[0.093061819672585,0.050013065338135,-0.045898765325546],[-0.10582002997398,0.0096471579745412,0.018741918727756],[0.0016025822842494,-0.063545927405357,0.039849847555161]],[[-0.012779562734067,-0.04107591509819,0.0027771242894232],[-0.0080056469887495,-0.081459641456604,-0.025823982432485],[-0.068087674677372,-0.051115423440933,-0.028338573873043]],[[0.0051249554380774,-0.10282316803932,-0.15036123991013],[-0.03542585298419,-0.020255088806152,-0.031031373888254],[0.030864531174302,-0.053332630544901,0.093822374939919]],[[0.13046206533909,-0.072402611374855,-0.17562267184258],[-0.019701655954123,-0.017172994092107,0.022495688870549],[0.0084362998604774,-0.026707414537668,0.024319430813193]],[[0.042245648801327,-0.068291328847408,0.072055004537106],[0.03492446243763,-0.009776109829545,0.029378850013018],[-0.063603222370148,-0.059994090348482,0.10067376494408]],[[-0.049498293548822,0.0085759488865733,0.10313667356968],[-0.039359897375107,-0.01107160653919,0.10924948006868],[-0.017400093376637,-0.13034020364285,-0.068976983428001]],[[0.061326321214437,0.018272489309311,0.072273403406143],[-0.010958206839859,-0.0064034131355584,-0.025730548426509],[0.048257537186146,-0.031211389228702,-0.032111998647451]],[[-0.1289554387331,-0.020860942080617,-0.044454231858253],[-0.11192844063044,-0.065905503928661,-0.056491289287806],[-0.098998628556728,-0.090981461107731,0.01695798151195]],[[0.037403270602226,0.042707860469818,0.029438247904181],[0.0469143204391,0.022160002961755,0.016885673627257],[-0.043258104473352,0.092866629362106,0.020439108833671]],[[-0.0037220681551844,-0.0091503346338868,0.049064952880144],[-0.065993599593639,-0.072968326508999,-0.12559100985527],[-0.040965333580971,0.04648245126009,0.027167743071914]],[[-0.096327364444733,-0.038534216582775,-0.012064053677022],[-0.054282877594233,0.045987967401743,-0.015978150069714],[-0.0093449121341109,0.09645938128233,-0.013295649550855]],[[-0.11839409917593,0.038779128342867,0.010926619172096],[-0.039774317294359,-0.0081988386809826,0.026298228651285],[-0.07983435690403,-0.0096680605784059,-0.057988706976175]],[[0.07078155875206,0.051283303648233,0.074951872229576],[0.0066133667714894,-0.051352940499783,-0.037461344152689],[0.025808725506067,0.0028824131004512,-0.16560429334641]],[[-0.0024000874254853,0.10303460806608,-0.082899980247021],[0.0071307760663331,-0.046063996851444,0.026937199756503],[0.006586404517293,-0.090903140604496,-0.1119346767664]],[[-0.17095330357552,-0.034405507147312,-0.099429935216904],[0.17753246426582,-0.21023426949978,-0.13208255171776],[-0.0081893811002374,0.050395783036947,-0.079802691936493]],[[0.11494954675436,0.033319376409054,-0.072507925331593],[0.055550992488861,-0.042063012719154,0.05827034637332],[0.052279833704233,-0.04979732260108,-0.10574278235435]],[[-0.062247190624475,-0.13594233989716,0.12915249168873],[-0.010843454860151,0.055090367794037,0.21518036723137],[-0.0032803888898343,-0.047173615545034,0.17950320243835]],[[0.096271686255932,-0.078784085810184,-0.087584905326366],[-0.038016896694899,-0.13948059082031,-0.028221476823092],[-0.037739522755146,-0.1563511043787,0.035209342837334]],[[-0.0095742829144001,-0.014094113372266,0.0031036138534546],[-0.067593477666378,0.0022896556183696,-0.13072170317173],[0.060780603438616,0.02783614769578,0.077929750084877]],[[-0.027342176064849,0.053622834384441,-0.028943508863449],[-0.049068234860897,0.032920382916927,-0.040358122438192],[-0.073576435446739,-0.05929259583354,-0.107546441257]],[[0.058398749679327,-0.060908071696758,0.047973029315472],[0.052930250763893,0.065035447478294,0.033531129360199],[0.015574825927615,-0.041584745049477,0.16047725081444]],[[0.027180999517441,0.037806753069162,-0.020634071901441],[-0.073010541498661,-0.03312112018466,0.083824969828129],[0.068505644798279,0.086864054203033,-0.12323999404907]],[[0.027443816885352,0.079489536583424,0.088383927941322],[-0.060297153890133,-0.037923745810986,-0.025802018120885],[-0.11157715320587,0.098170071840286,0.047031100839376]],[[0.040806472301483,-0.0669070109725,-0.041651844978333],[0.028819620609283,0.054124932736158,-0.061714064329863],[-0.10973484814167,0.016837194561958,0.15645878016949]],[[0.22697432339191,-0.035046674311161,-0.21225808560848],[-0.17353653907776,-0.031675942242146,-0.013723659329116],[0.047730248421431,0.066108539700508,-0.0090252486988902]],[[0.24730516970158,-0.085960656404495,-0.016228545457125],[0.099056228995323,0.030507676303387,-0.11921002715826],[-0.01288456376642,-0.025706987828016,0.097624741494656]],[[-0.15740935504436,0.10762175917625,-0.13031938672066],[0.013267338275909,-0.10880891233683,-0.073925569653511],[-0.056552115827799,0.06805332005024,0.14571411907673]]],[[[0.037783313542604,-0.10707071423531,-0.089197590947151],[-0.0035168477334082,-0.011874102987349,-0.036657087504864],[-0.015438879840076,0.023707553744316,-0.094633713364601]],[[0.021730471402407,-0.12714916467667,0.064592681825161],[0.014708324335515,-0.052262350916862,-0.035902991890907],[0.075597807765007,0.033912379294634,-0.097873896360397]],[[-0.15465113520622,0.046621851623058,-0.0062337564304471],[-0.036662723869085,0.0028676511719823,-0.033147782087326],[0.032250490039587,-0.049032855778933,0.024988932535052]],[[-0.030444068834186,0.0013291974319145,-0.10319390892982],[-0.042941387742758,0.014742759056389,0.040115740150213],[-0.063803650438786,-0.0429897159338,-0.021866153925657]],[[-0.058015827089548,0.2000980079174,0.12777714431286],[0.068977601826191,0.050386685878038,0.032610315829515],[0.088821686804295,0.040996428579092,-0.060608860105276]],[[-0.018121421337128,-0.064634256064892,0.15492774546146],[0.094745144248009,-0.075212337076664,-0.018753753975034],[0.084304697811604,0.054917953908443,-0.065192826092243]],[[-0.040004387497902,0.09507554769516,-0.090646468102932],[-0.1208435818553,0.025911966338754,-0.10599249601364],[-0.042313173413277,-0.014913431368768,-0.04663697257638]],[[-0.028326397761703,-0.017329949885607,-0.062165006995201],[-0.008058087900281,0.039636723697186,0.043467093259096],[-0.0043060840107501,0.0050114472396672,-0.14720790088177]],[[0.029248531907797,0.07523588091135,-0.028204636648297],[-0.0002285577065777,0.018384233117104,0.10699754953384],[-0.063241481781006,-0.037757087498903,-0.13250850141048]],[[-0.15804700553417,-0.0030023055151105,0.016230221837759],[0.1217553243041,0.026511859148741,0.11540208011866],[-0.044979929924011,-0.087209440767765,0.026227872818708]],[[-0.0023583760485053,-0.083003155887127,-0.043701030313969],[0.084681108593941,-0.023772932589054,-0.10238337516785],[0.044971860945225,0.014492594636977,0.069527491927147]],[[-0.05441427603364,-0.12091036885977,-0.039716865867376],[-0.098036602139473,-0.020374672487378,-0.075484380125999],[-0.056971214711666,0.0049173319712281,-0.11009711027145]],[[0.11741312593222,0.052004508674145,0.020808102563024],[-0.075599670410156,-0.10011228919029,-0.097037918865681],[0.018925279378891,-0.081572465598583,-0.078564859926701]],[[-0.012300693430007,0.017118645831943,0.022751299664378],[0.014908203855157,-0.034388121217489,0.043524939566851],[-0.017419015988708,-0.01494565140456,-0.062300805002451]],[[0.021125804632902,0.16416667401791,0.016465460881591],[-0.081854157149792,0.0098827034235001,0.039047479629517],[-0.036156769841909,-0.1354748159647,-0.046378944069147]],[[0.062978655099869,0.092860199511051,-0.0046423855237663],[-0.0010371056851,0.011633140966296,-0.076111912727356],[-0.11825433373451,0.0050569642335176,-0.10137694329023]],[[-0.0065023386850953,0.06142694875598,0.04798174276948],[0.017168138176203,0.13522697985172,-0.034700229763985],[-0.030313283205032,-0.051171515136957,0.050984106957912]],[[-0.01443484891206,0.1515104919672,0.076799102127552],[0.07111445069313,-0.024899929761887,0.059114530682564],[-0.035921767354012,-0.065661393105984,0.049006246030331]],[[0.11424501985312,-0.19667099416256,-0.11737904697657],[0.023963226005435,-0.020643062889576,0.09847541898489],[0.0081120543181896,0.041685096919537,-0.015426315367222]],[[0.041270088404417,0.082642167806625,0.079643659293652],[-0.10875182598829,-0.023643041029572,-0.016962559893727],[-0.00089445279445499,-0.0069712582044303,0.0025637678336352]],[[0.10321881622076,0.12857846915722,-0.034331195056438],[-0.061007760465145,0.069219559431076,0.02489247918129],[-0.088366486132145,0.040599394589663,-0.075484275817871]],[[-0.0073990914970636,0.015610625967383,0.042651057243347],[-0.050125014036894,-0.045848973095417,-0.088283777236938],[-0.081475555896759,0.052160061895847,-0.070459648966789]],[[-0.014166171662509,-0.004747040104121,0.010189289227128],[-0.059820517897606,0.042296763509512,-0.157953992486],[-0.032611824572086,0.10687730461359,-0.084670089185238]],[[-0.029881406575441,-0.020038112998009,0.046518754214048],[-0.033655099570751,-0.0099002867937088,-0.075195878744125],[0.017048697918653,0.077985435724258,0.066822372376919]],[[-0.024856617674232,0.1126889064908,0.058558527380228],[0.00052747369045392,0.084641739726067,0.11569587886333],[-0.035505961626768,0.0021398160606623,-0.021196018904448]],[[0.11996432393789,-0.028767764568329,0.11707390844822],[0.13005410134792,0.016100706532598,-0.04138920456171],[-0.039956759661436,-0.093760393559933,-0.1318391263485]],[[-0.00055013620294631,-0.026700353249907,0.010741178877652],[-0.060405384749174,0.065665699541569,-0.13699853420258],[-0.0024589644744992,0.092319786548615,-0.15087166428566]],[[0.05948306620121,-0.17075558006763,-0.020849872380495],[0.11504234373569,-0.1299574226141,0.01961019448936],[0.029200969263911,-0.010258229449391,-0.089066855609417]],[[-0.036207117140293,0.10788138955832,0.057159401476383],[-0.079269133508205,0.028312476351857,-0.084278412163258],[-0.10617965459824,-0.042974915355444,0.039230681955814]],[[-0.047267604619265,-0.12241507321596,-0.027091104537249],[-0.071602374315262,0.052537843585014,0.14178216457367],[0.0869465097785,-0.0010201886761934,0.069793805480003]],[[-0.093587569892406,-0.091208159923553,-0.05140994861722],[-0.0078179519623518,-0.056570548564196,-0.029624057933688],[0.046005647629499,0.009355659596622,0.0078900149092078]],[[-0.097043141722679,0.0046298410743475,0.01290633995086],[-0.00076464912854135,0.025786450132728,0.086820796132088],[0.06207362934947,-0.034750539809465,-0.029844699427485]],[[0.15886028110981,0.014664688147604,0.13251456618309],[0.07153694331646,-0.0085890721529722,0.003411119338125],[-0.14253666996956,-0.013635072857141,-0.034920744597912]],[[0.046775314956903,0.036624971777201,-0.03466260433197],[-0.00025116439792328,-0.054106373339891,-0.009374687448144],[-0.013150739483535,-0.075863756239414,-0.047488104552031]],[[0.0098850289359689,-0.052184674888849,-0.012164512649179],[0.063457131385803,0.14273022115231,1.1097690730821e-05],[-0.097666673362255,-0.15768527984619,0.052340641617775]],[[0.02526474557817,0.068013958632946,-0.050924759358168],[-0.060624182224274,-0.061028074473143,-0.03314058855176],[0.06502266228199,0.015642877668142,0.025532871484756]],[[0.022705901414156,0.036082942038774,-0.11973449587822],[-0.011008156463504,0.044923361390829,-0.025092162191868],[-0.037794940173626,0.045969415456057,0.068451397120953]],[[0.01213239505887,0.010704061947763,0.042490992695093],[-0.035696588456631,-0.066291712224483,0.013890388421714],[0.087679386138916,-0.044642321765423,-0.090794861316681]],[[-0.029476080089808,0.057011224329472,-0.013763378374279],[-0.0074256313964725,-0.0049676657654345,-0.02423807233572],[-0.071276783943176,-0.027775045484304,-0.16917563974857]],[[-0.13902159035206,0.017427990213037,0.094792380928993],[-0.07330784201622,-0.036849778145552,0.035196829587221],[0.069245599210262,0.0035247020423412,0.07680594176054]],[[0.022427011281252,-0.092966854572296,-0.011911366134882],[0.08720513433218,0.02649213373661,-0.0315156057477],[-0.064910359680653,0.076499283313751,0.10428357869387]],[[0.16633921861649,0.1294746696949,0.10312813520432],[0.029370617121458,-0.11412918567657,-0.12168473750353],[-0.035800457000732,-0.20692177116871,-0.032991919666529]],[[0.044631719589233,0.049049369990826,0.16395577788353],[-0.073926992714405,0.042869739234447,0.024270134046674],[0.0056290281936526,-0.027973709627986,-0.13260598480701]],[[-0.068558216094971,0.015159643255174,0.085958741605282],[-0.11338267475367,-0.06112913787365,-0.011440549045801],[0.034657210111618,0.0090022906661034,0.0079401694238186]],[[-0.18226261436939,0.061738215386868,0.1440894305706],[-0.06800139695406,-0.035675454884768,-0.0064923577010632],[0.00043975206790492,-0.046149089932442,-0.048147827386856]],[[0.056899435818195,-0.028362615033984,0.015284903347492],[-0.019711872562766,0.037913780659437,-0.077457435429096],[-0.049885950982571,-0.083728477358818,0.16487792134285]],[[0.015343203209341,0.13370287418365,0.10846269130707],[-0.029117569327354,-0.086639352142811,-0.034813918173313],[0.064684249460697,0.098271124064922,0.07595357298851]],[[-0.016847062855959,0.018480703234673,0.022900547832251],[-0.10900246351957,-0.0025184815749526,-0.071670934557915],[-0.09802620857954,0.22711342573166,-0.037172190845013]],[[-0.068171307444572,-0.031167946755886,0.056837569922209],[0.044822886586189,0.18038089573383,-0.071166880428791],[-0.14634181559086,-0.11354543268681,-0.1227310821414]],[[-0.020579593256116,-0.1060204654932,-0.0084883784875274],[0.017426922917366,-0.016994468867779,0.048636443912983],[0.03687084838748,0.033306289464235,0.039177682250738]],[[0.016088860109448,-0.10395333170891,0.11105594784021],[-0.044799972325563,-0.23666132986546,-0.031267516314983],[-0.016258494928479,-0.26376235485077,-0.21167126297951]],[[0.077153883874416,-0.012155583128333,-0.041487015783787],[-0.14695574343204,0.002267011674121,-0.0084705613553524],[0.051706332713366,-0.026823403313756,0.035969648510218]],[[-0.075830586254597,0.090037196874619,0.013570886105299],[0.057159066200256,0.172368735075,0.07929090410471],[0.029764287173748,0.013397743925452,0.040534913539886]],[[-0.028438886627555,-0.16503754258156,-0.050342340022326],[0.059528917074203,0.042293567210436,-0.32150104641914],[-0.023548375815153,-0.08181443810463,0.0091983564198017]],[[-0.00043461011955515,-0.12996953725815,0.045196462422609],[-0.061905723065138,0.0075500779785216,-0.055240999907255],[-0.027690593153238,0.081395909190178,0.069973632693291]],[[0.011503037065268,-0.056237075477839,0.032649483531713],[-0.11283063143492,0.014763108454645,0.010012095794082],[0.0042451582849026,0.046102650463581,-0.11914982646704]],[[0.13574448227882,0.01686873100698,0.074026323854923],[0.031480636447668,0.025268871337175,0.067598059773445],[0.045302860438824,0.10760392248631,0.075807362794876]],[[0.019691092893481,-0.05470484867692,-0.034998137503862],[0.01705028116703,0.086462639272213,0.0084357894957066],[-0.12914314866066,-0.065912671387196,-0.055028695613146]],[[0.0087347868829966,0.050788108259439,-0.20828437805176],[0.075169324874878,0.080842569470406,0.10243042558432],[0.07360964268446,-0.023880226537585,0.010453314520419]],[[0.11701382696629,0.052186481654644,-0.11011912673712],[-0.077408969402313,-0.015601580962539,-0.054023824632168],[-0.03209587931633,0.11379650980234,-0.11153124272823]],[[0.031974036246538,-0.024696851149201,0.036570474505424],[-0.046994462609291,-0.0097310310229659,0.0053399917669594],[0.047779250890017,-0.063629843294621,-0.19049718976021]],[[0.1068195477128,-0.14168727397919,-0.018399881199002],[0.0019527073018253,-0.028453700244427,-0.10070406645536],[0.022637721151114,-0.053022801876068,0.036502923816442]],[[0.11001089215279,0.016728941351175,0.060749765485525],[0.05179600790143,0.10182013362646,-0.00078990450128913],[-0.03248668089509,-0.13966979086399,-0.1679732054472]],[[0.055042047053576,-0.10448025912046,-0.18711175024509],[-0.048598174005747,0.061570685356855,0.067494541406631],[0.047186903655529,0.074745960533619,-0.20500575006008]]],[[[0.0546451844275,-0.059528414160013,0.00028818415012211],[-0.1145388558507,-0.12049463391304,-0.14476911723614],[-0.038720916956663,0.0040318248793483,0.14736305177212]],[[0.048886727541685,0.05420084670186,0.020012460649014],[-0.14402040839195,0.043987225741148,-0.056759782135487],[0.024443762376904,-0.040176134556532,0.11597144603729]],[[0.018139138817787,0.087199673056602,-0.059200946241617],[-0.10650883615017,-0.010517925024033,0.11188798397779],[0.026324909180403,0.18111923336983,-0.052319627255201]],[[-0.025009082630277,-0.015868799760938,-0.16466681659222],[0.10045740753412,0.063824810087681,0.055661905556917],[-0.12954445183277,-0.047884225845337,-0.027470158413053]],[[-0.01558452937752,0.037954658269882,0.052735801786184],[0.0024103412870318,0.057984314858913,0.15984305739403],[0.027980061247945,-0.011673384346068,-0.084833361208439]],[[-0.17565001547337,-0.12209159880877,-0.10421290248632],[-0.015969270840287,0.10138468444347,0.031448625028133],[0.0010510813444853,0.11019267886877,0.17293395102024]],[[-0.00408506533131,0.10633409023285,-0.0074578677304089],[-0.020077237859368,0.14474430680275,0.087176293134689],[-0.051901139318943,0.0032304381020367,-0.056931760162115]],[[0.026380993425846,0.010494879446924,0.029620338231325],[0.020290056243539,0.062589801847935,0.021100087091327],[-0.028288556262851,-0.058466888964176,-0.04710989817977]],[[-0.078681848943233,-0.02279713191092,0.068972781300545],[-0.026175742968917,-0.017687866464257,-0.013528343290091],[0.03015654347837,-0.014065350405872,0.060193572193384]],[[0.0031055915169418,0.052260626107454,-0.040151972323656],[-0.1870035380125,-0.29754784703255,0.10071364045143],[-0.080542452633381,0.0019733645021915,0.052010525017977]],[[-0.13429081439972,-0.22266122698784,-0.13679099082947],[-0.0048439609818161,-0.042910315096378,0.02409958280623],[0.089439459145069,-0.00041977464570664,0.15275354683399]],[[0.11930610984564,0.054407928138971,0.031369581818581],[-0.057980209589005,-0.099385172128677,-0.18038360774517],[-0.13557973504066,-0.02798555791378,0.056545987725258]],[[0.021595058962703,-0.040414769202471,-0.022103669121861],[-0.0040131779387593,0.05958890914917,0.043286487460136],[0.007017819210887,-0.12515902519226,0.05141618475318]],[[-0.15526503324509,-0.032094646245241,-0.20280747115612],[0.019818227738142,0.061759136617184,-0.022706290706992],[0.12766861915588,0.087762176990509,0.0053118346258998]],[[0.058774802833796,-0.0561115257442,-0.0017658922588453],[0.10698058456182,-0.049873508512974,0.0023272200487554],[-0.030293874442577,-0.024225540459156,-0.090763472020626]],[[0.10097470879555,-0.037982869893312,0.12824855744839],[-0.11615338176489,-0.064461700618267,-0.0022839091252536],[-0.023413633927703,-0.012106570415199,-0.011725385673344]],[[0.046782754361629,-0.01939514093101,0.018331589177251],[0.066218145191669,0.064541421830654,-0.0061930315569043],[0.077178955078125,-0.047712042927742,0.0013174311025068]],[[0.01206124201417,-0.0061631542630494,-0.087764210999012],[0.10553558915854,0.035765968263149,-0.0200370028615],[-0.092841848731041,0.050514299422503,-0.041666891425848]],[[0.055206179618835,0.0086673824116588,0.071949526667595],[-0.13374006748199,-0.14449773728848,-0.093443542718887],[0.037823874503374,-0.012564653530717,-0.045423027127981]],[[-0.00073378585511819,0.084873698651791,0.021255580708385],[0.064577370882034,0.025824531912804,-0.048924397677183],[-0.1640567779541,-0.023742645978928,-0.098770290613174]],[[-0.15255129337311,0.12262599915266,-0.028826074674726],[-0.065357431769371,-0.092559911310673,0.084344416856766],[0.030266281217337,0.083467371761799,0.090994045138359]],[[0.017543705180287,0.0053126504644752,-0.19980382919312],[-0.087674967944622,-0.12707680463791,-0.092707306146622],[-0.048301994800568,0.081841252744198,-0.062395624816418]],[[-0.083444222807884,0.088392101228237,-0.050066463649273],[0.03187657147646,-0.10566210746765,0.01104908529669],[-0.054166994988918,0.024372350424528,0.004745970480144]],[[-0.098224557936192,-0.23618920147419,-0.23171679675579],[0.076186589896679,-0.021915258839726,0.026289127767086],[0.01200057938695,0.058897066861391,-0.14322066307068]],[[0.020263290032744,-0.019118769094348,0.048327878117561],[-0.027316892519593,-0.016154846176505,-0.053985174745321],[-0.10317824780941,-0.11955031752586,-0.055645041167736]],[[-0.09555346518755,-0.051618564873934,-0.045556358993053],[-0.066914886236191,-0.064981147646904,-0.087164185941219],[-0.019262688234448,-0.069432683289051,0.032265584915876]],[[-0.052695576101542,-0.012581643648446,-0.078355446457863],[0.023547556251287,0.010194714181125,-0.026105577126145],[0.051792271435261,-0.041750397533178,0.10640820115805]],[[0.080522581934929,0.075314372777939,-0.065233796834946],[0.028741100803018,0.07719873636961,-0.023842826485634],[-0.045798797160387,0.013247643597424,-0.19982859492302]],[[-0.086982399225235,-0.19113248586655,-0.17729756236076],[-0.10021764785051,0.11626274883747,-0.021100200712681],[0.055758334696293,0.10060436278582,0.1420823186636]],[[0.016612263396382,0.00073057191912085,-0.022380836308002],[0.11798085272312,0.016245134174824,-0.074285425245762],[0.039114687591791,0.050511002540588,-0.13490207493305]],[[0.011173552833498,-0.037486739456654,-0.026237083598971],[-0.054601237177849,-0.0062343589961529,-0.018690276890993],[0.0081623205915093,-0.026935450732708,-0.031327817589045]],[[-0.013580242171884,-0.029994789510965,-0.026237236335874],[-0.044644426554441,0.015166665427387,-0.073724500834942],[0.026242678985,0.02385345287621,0.048769421875477]],[[-0.1470927298069,0.034177530556917,0.061177458614111],[0.089058041572571,-0.13039560616016,-0.071006007492542],[-0.069873869419098,0.11603528261185,0.0018156883306801]],[[0.0078535368666053,-0.038692228496075,-0.063697651028633],[0.076270684599876,-0.040430665016174,-0.13947637379169],[0.017895480617881,0.0076196850277483,0.083074703812599]],[[-0.084031410515308,-0.049963027238846,0.032319072633982],[0.089483112096786,-0.040046606212854,-0.007694617845118],[0.071735315024853,-0.0049788323231041,-0.011676176451147]],[[0.12216604501009,0.092166639864445,0.05285831168294],[0.12315588444471,0.011992699466646,0.039155390113592],[-0.1081872433424,-0.12514753639698,-0.09322389960289]],[[0.17018984258175,-0.038468658924103,0.10578744858503],[-0.10493353754282,-0.00082105031469837,-0.038663376122713],[-0.079315468668938,-0.063564360141754,-0.11741614341736]],[[0.083976209163666,-0.023775834590197,-0.16450086236],[-0.096512548625469,-0.10033462196589,0.079662770032883],[0.050838761031628,-0.045402385294437,0.048519469797611]],[[-0.051125764846802,-0.10818202793598,-0.018452612683177],[-0.085287749767303,-0.090829528868198,-0.05042090639472],[-0.036062519997358,0.016949577257037,0.0093229217454791]],[[0.13892135024071,0.10610785335302,0.15330512821674],[-0.023879451677203,-0.063043281435966,-0.029495354741812],[-0.18539860844612,-0.086329475045204,-0.028442652896047]],[[0.0075750048272312,-0.093728065490723,-0.057994175702333],[0.16824804246426,-0.053957380354404,0.067921422421932],[0.049911662936211,-0.04468235746026,0.0018148523522541]],[[-0.0064514470286667,0.055646449327469,0.074797309935093],[-0.018031548708677,0.030286988243461,-0.041235890239477],[0.18682523071766,-0.039584275335073,-0.086743406951427]],[[0.0053082602098584,-0.012736914679408,-0.14708133041859],[-0.016060160472989,-0.050607580691576,-0.078799419105053],[0.082906238734722,0.015037409961224,0.021844813600183]],[[0.063773304224014,-0.016656776890159,-0.10084991157055],[0.064372904598713,0.018632467836142,-0.081072367727757],[0.056361049413681,0.070767849683762,0.039245054125786]],[[-0.09678590297699,-0.0070160739123821,-0.067082062363625],[0.039293132722378,-0.0035375882871449,-0.086070194840431],[0.0087023172527552,-0.10808907449245,-0.033237244933844]],[[0.096388526260853,0.088858626782894,0.096563532948494],[-0.079266980290413,-0.036509945988655,-0.014576743356884],[-0.072867169976234,0.060689959675074,0.023046687245369]],[[0.11192527413368,0.11350665986538,-0.053506582975388],[0.033344328403473,-0.089474968612194,0.028720056638122],[0.026524141430855,-0.045112285763025,-0.025490585714579]],[[-0.0084035377949476,0.040736235678196,0.015295446850359],[0.028031831607223,-0.011456850916147,0.10966263711452],[-0.092488273978233,0.02915252186358,-0.022742880508304]],[[-0.050588618963957,0.002185155171901,0.067470043897629],[-0.046809215098619,-0.086310535669327,-0.012184299528599],[0.061198197305202,-0.086432099342346,0.13978487253189]],[[-0.03387813642621,-0.0067508616484702,-0.094754442572594],[0.1613525301218,-0.0058051408268511,0.096979357302189],[0.02468484826386,-0.076030068099499,-0.097111351788044]],[[0.081683203577995,-0.031898487359285,-0.018325312063098],[-0.026103906333447,0.018699582666159,-0.11077488213778],[-0.059041321277618,0.027290703728795,-0.0039218133315444]],[[-0.055506877601147,0.094696439802647,0.11816453188658],[-0.010507328435779,-0.13779990375042,0.025032287463546],[-0.060899637639523,-0.029090229421854,-0.048850134015083]],[[-0.15246242284775,0.016270153224468,-0.054535869508982],[-0.0029679804574698,0.055250730365515,0.15325957536697],[0.0036894702352583,0.043264273554087,0.12420695275068]],[[-0.027263110503554,-0.10586882382631,-0.14611496031284],[-0.11845256388187,-0.033454969525337,-0.050263844430447],[0.095826126635075,0.11476473510265,-0.026820600032806]],[[-0.046668536961079,0.10374103486538,0.1295803040266],[0.0046526356600225,0.04506067186594,0.057093676179647],[-0.003065588651225,-0.053082663565874,-0.056414905935526]],[[-0.016261719167233,0.049200128763914,0.023992270231247],[-0.011764229275286,0.064361833035946,0.0042197247967124],[0.032427225261927,0.040872372686863,0.028451979160309]],[[0.015353953465819,0.030050221830606,-0.036659337580204],[-0.035657569766045,-0.019706195220351,0.019151845946908],[-0.015351618640125,0.098484843969345,0.048912808299065]],[[0.13899245858192,-0.023327544331551,-0.14951188862324],[-0.029852950945497,-0.20517066121101,-0.087012551724911],[-0.018671706318855,-0.054157387465239,-0.059579271823168]],[[-0.026883261278272,0.011449196375906,0.10407627373934],[-0.070083312690258,-0.028510959818959,0.036052864044905],[-0.046900704503059,0.024296944960952,0.011764872819185]],[[0.034391865134239,-0.031548399478197,-0.0033529147040099],[0.038025721907616,0.10440464317799,-0.03334403783083],[-0.0015630401903763,-0.029536390677094,-0.087542995810509]],[[-0.045834712684155,0.0096274623647332,-0.0075514800846577],[0.038314759731293,0.022648941725492,-0.060211762785912],[-0.12760277092457,-0.063915826380253,-0.083190202713013]],[[-0.030203830450773,-0.066580981016159,-0.11545915156603],[-0.13361993432045,-0.02339056879282,0.041149519383907],[0.26237186789513,0.0094200596213341,0.020002143457532]],[[0.21751552820206,0.068832591176033,-0.01480323728174],[0.17307779192924,-0.084571480751038,-0.13217552006245],[-0.10532808303833,-0.10939183831215,-0.074007213115692]],[[0.081688448786736,0.10093600302935,0.11426872760057],[0.03241990879178,-0.12670570611954,-0.0011776858009398],[-0.046054974198341,-0.063221275806427,-0.04517425224185]]],[[[-0.11602726578712,0.037806056439877,0.17332090437412],[0.0067471447400749,-0.036781284958124,0.070680521428585],[0.0016134289326146,0.031805247068405,0.092135041952133]],[[-0.096309214830399,-0.026916099712253,-0.014101897366345],[0.030035464093089,0.1002731770277,-0.026220915839076],[0.046849258244038,-0.099722512066364,-0.18188658356667]],[[0.022197181358933,0.018826236948371,-0.13112877309322],[0.012702892534435,0.032468058168888,-0.066596068441868],[0.049428474158049,-0.010078390128911,0.0091101340949535]],[[-0.0096380682662129,-0.056526433676481,-0.079674743115902],[0.030937653034925,0.10301777720451,-0.001984803006053],[-0.019244326278567,-0.015965271741152,0.0025220876559615]],[[0.033140055835247,-0.068795815110207,0.029918937012553],[-0.028239181265235,-0.037730976939201,-0.0016724350862205],[-0.098729737102985,-0.02791104465723,0.083215340971947]],[[-0.056761682033539,-0.0099833672866225,0.1178642436862],[-0.018513882532716,0.10052131861448,0.050674516707659],[0.028234263882041,-0.048588138073683,-0.023108275607228]],[[-0.054458793252707,-0.082004740834236,0.0099827358499169],[0.045765623450279,-0.053027026355267,0.085205361247063],[-0.0035525679122657,-0.025390950962901,-0.084392257034779]],[[-0.046297676861286,-0.053190760314465,0.03484009206295],[-0.0019759158603847,0.0060049276798964,-0.014483065344393],[0.029855171218514,-0.021204041317105,-0.0013237154344097]],[[-0.0066555701196194,0.018147870898247,-0.092421874403954],[0.048642601817846,-0.017666507512331,-0.11846047639847],[0.071928419172764,0.068010114133358,0.0061975116841495]],[[-0.028478994965553,-0.097358353435993,-0.11149947345257],[0.025818711146712,0.086265094578266,0.06978477537632],[0.083752065896988,0.041373234242201,-0.039482202380896]],[[0.036052320152521,-0.062376406043768,-0.07017844170332],[0.04280861467123,-0.032444875687361,-0.086847454309464],[0.066176824271679,0.0079216407611966,-0.013619840145111]],[[0.0032733520492911,0.0082842968404293,0.0067908591590822],[-0.0082950592041016,-0.14938855171204,-0.09524754434824],[0.027110524475574,-0.094541549682617,0.11455091834068]],[[-0.081579953432083,0.0039085452444851,0.013583220541477],[-0.092360332608223,-0.012103905901313,0.031344745308161],[-0.054059259593487,0.078059017658234,0.065237775444984]],[[-0.090887896716595,-0.12556965649128,-0.029195627197623],[0.03764009103179,-0.049330700188875,-0.1327817440033],[-0.079144015908241,-0.01397914532572,0.0052675139158964]],[[-0.023520287126303,0.020031468942761,-0.087606430053711],[0.024471523240209,-0.14797949790955,-0.10238263756037],[-0.0090104872360826,-0.055171638727188,-0.02487768791616]],[[-0.015625659376383,0.055538393557072,0.067544855177402],[-0.073241494596004,0.0028697929810733,-0.009515468031168],[0.013321125879884,-0.079582639038563,0.080071814358234]],[[-0.076898634433746,0.11536400020123,0.061848640441895],[0.088169537484646,-0.025262050330639,-0.081433452665806],[0.073510393500328,-0.07014237344265,0.030006151646376]],[[0.046650689095259,-0.099839232861996,0.0064899115823209],[-0.043015502393246,0.020854411646724,-0.045534286648035],[-0.090194761753082,-0.0098202936351299,0.0015524354530498]],[[-0.093892447650433,0.13909198343754,0.12239793688059],[-0.091113440692425,-0.019140932708979,0.087869055569172],[-0.17961364984512,-0.029083559289575,0.18871249258518]],[[0.016400458291173,0.062009640038013,-0.11635760962963],[0.054576396942139,0.071785800158978,-0.15333700180054],[0.062883272767067,-0.04211663082242,-0.05443099886179]],[[-0.0096494201570749,0.024687001481652,-0.13026481866837],[0.011298726312816,0.0051044151186943,0.031014069914818],[0.010047585703433,-0.056064955890179,0.070982463657856]],[[-0.14686538279057,0.049607384949923,0.057671133428812],[0.0025259919930249,-0.014124753884971,0.1446273624897],[0.014467981643975,-0.14465028047562,0.057357214391232]],[[0.071309112012386,0.10209608823061,0.11104875057936],[-0.067252166569233,-0.055754084140062,-0.07913476228714],[-0.047538261860609,7.177082443377e-05,-0.052242033183575]],[[0.05639324337244,-0.052898623049259,-0.051303964108229],[0.17589671909809,-0.062908977270126,-0.071525290608406],[0.11406560987234,-0.074674636125565,-0.031638357788324]],[[-0.11483619362116,-0.10044316202402,-0.065714478492737],[0.090228125452995,-0.15757577121258,-0.11273765563965],[-0.076763235032558,-0.15552213788033,-0.16111373901367]],[[-0.018862681463361,-0.052550792694092,0.13240563869476],[-0.010676428675652,0.15142215788364,0.0089571448042989],[0.068344436585903,0.083245784044266,-0.059788752347231]],[[-0.0067135551944375,-0.046778675168753,0.075178556144238],[0.0082235196605325,-0.060910031199455,0.077783606946468],[-0.082062229514122,-0.033554453402758,0.024542713537812]],[[-0.022240541875362,-0.058464329689741,-0.00082781136734411],[0.05120238289237,0.06220394000411,-0.033620934933424],[-0.1135670915246,-0.016529472544789,-0.12795482575893]],[[-0.064043216407299,-0.11597748845816,-0.12274029105902],[0.027803054079413,-0.063479393720627,0.042100835591555],[-0.0012377846287563,0.085732527077198,-0.070951566100121]],[[0.057056050747633,0.073287904262543,-0.061512932181358],[-0.035118397325277,0.12775954604149,0.09390114992857],[0.0070202867500484,-0.053735949099064,0.05206761136651]],[[0.099704623222351,-0.053728740662336,0.15224097669125],[-0.034021757543087,-0.10422199964523,-0.0021642700303346],[0.13987658917904,-0.14843320846558,-0.25058448314667]],[[0.092908434569836,0.091715782880783,-0.0016698248218745],[-0.01194959320128,0.037736680358648,-0.014258053153753],[-0.0065885786898434,-0.14209105074406,0.010087835602462]],[[0.0671032294631,0.046315602958202,-0.079430624842644],[0.0047211349010468,0.036222245544195,0.035224601626396],[-0.069332629442215,0.036012712866068,0.054701492190361]],[[0.0034750525373966,-0.022000029683113,0.0057038688100874],[-0.039619371294975,-0.17270448803902,-0.077667899429798],[-0.035223200917244,-0.10308692604303,-0.027451656758785]],[[-0.065324209630489,-0.030529754236341,-0.027796100825071],[0.082454845309258,-0.0030227655079216,-0.10313693434],[-0.068653844296932,-0.052767790853977,0.017015837132931]],[[0.053490325808525,0.025231631472707,-0.11140157282352],[0.0090589122846723,-0.082994483411312,0.055952273309231],[-0.017806142568588,-0.15540377795696,-0.028724489733577]],[[-0.14416821300983,0.096931748092175,0.040060393512249],[-0.13562247157097,0.12331536412239,0.014049446210265],[-0.1021015048027,0.01659126393497,-0.04959998652339]],[[-0.076334871351719,-0.057149890810251,-0.018160734325647],[0.011973612941802,-0.041086085140705,0.0037861235905439],[-0.085196428000927,0.19370704889297,0.022994346916676]],[[0.046795897185802,0.074954614043236,0.069208331406116],[-0.045454684644938,0.038002416491508,0.049920096993446],[-0.1595423668623,-0.029999049380422,0.13803094625473]],[[0.11900050938129,0.011190081015229,-0.037316158413887],[-0.047869481146336,0.015074416063726,0.0073432582430542],[0.061399839818478,-0.04623544588685,0.012444566003978]],[[0.0042868698947132,0.038095582276583,0.04845517128706],[0.061461951583624,-0.15366493165493,-0.017126580700278],[-0.030328873544931,-0.057448707520962,-0.09029033780098]],[[0.037805560976267,0.05127627030015,-0.015963885933161],[-0.073660269379616,-0.073901064693928,-0.032059136778116],[-0.15782243013382,-0.26098838448524,-0.093916863203049]],[[-0.065440513193607,-0.11357498168945,-0.017091711983085],[0.0048395446501672,-0.020073851570487,0.11169484257698],[-0.047555405646563,0.052548430860043,-0.083324953913689]],[[0.09200843423605,0.022733625024557,0.081214904785156],[-0.11798065900803,0.038547795265913,0.062244605273008],[-0.078400306403637,0.016063867136836,-0.043323393911123]],[[-0.083792246878147,-0.13189263641834,-0.11366305500269],[-0.070072323083878,-0.14294441044331,-0.019976370036602],[-0.017919650301337,-0.065666370093822,0.027684649452567]],[[-0.035329207777977,0.065262690186501,0.0090343728661537],[-0.25101140141487,-0.027707122266293,0.059291314333677],[-0.092411868274212,-0.014015750028193,0.034926272928715]],[[0.12884168326855,0.080028004944324,0.012097645550966],[0.0088085010647774,-0.060804307460785,-0.089411489665508],[-0.059508752077818,-0.18898436427116,-0.15915256738663]],[[-0.039089065045118,-0.068591587245464,-0.064200334250927],[0.019440295174718,0.034451276063919,-0.061677116900682],[-0.017788365483284,-0.045497331768274,0.017350263893604]],[[0.099092341959476,-0.058170590549707,-0.061059780418873],[0.02258219756186,-0.031243432313204,0.07763247936964],[-0.089589051902294,-0.073621764779091,0.064350284636021]],[[-0.04045332223177,-0.0083272475749254,0.15017259120941],[-0.00068870431277901,-0.052479330450296,0.095576703548431],[-0.055169221013784,-0.13481277227402,0.008500337600708]],[[-0.026865543797612,-0.069597668945789,0.050797067582607],[-0.045520424842834,-0.12382289022207,-0.040876194834709],[-0.26981508731842,-0.1046359911561,0.057696394622326]],[[0.0058141108602285,0.032532725483179,0.090341530740261],[-0.16929474473,-0.13191086053848,-0.1599545031786],[-0.028395822271705,-0.26672288775444,0.046522662043571]],[[0.0039215255528688,0.15705198049545,0.042833380401134],[-0.02590673416853,0.045388482511044,0.05617793649435],[0.079184107482433,0.080916449427605,0.22525908052921]],[[-0.12384159117937,-0.048246704041958,0.009973949752748],[-0.027953648939729,0.073977671563625,0.17625671625137],[-0.032630495727062,0.12177662551403,0.24600929021835]],[[-0.059614904224873,-0.11972603946924,-0.087917305529118],[-0.12959016859531,-0.29168593883514,-0.32626837491989],[-0.011717460118234,-0.10039474070072,-0.12891012430191]],[[0.070714093744755,-0.049592927098274,-0.18386654555798],[0.069634705781937,-0.11282216012478,-0.10277783870697],[-0.028160998597741,-0.065889701247215,0.11811507493258]],[[-0.01586127653718,0.01665248349309,0.029862562194467],[0.050306629389524,0.056914746761322,0.057884301990271],[0.13122023642063,0.075836919248104,-0.050404202193022]],[[-0.18687096238136,-0.031397674232721,-0.090718977153301],[0.043452385812998,-0.035789802670479,0.078269004821777],[-0.058981113135815,0.038200508803129,0.13498523831367]],[[0.00995734333992,0.081450305879116,0.071832112967968],[-0.24715782701969,-0.11992193758488,0.080334439873695],[-0.060548149049282,-0.0052731605246663,0.10446015000343]],[[-0.039767686277628,0.037718966603279,0.14423263072968],[-0.090738378465176,-0.025895442813635,0.10784175246954],[0.044431313872337,-0.022517809644341,0.063123948872089]],[[-0.02843994461,0.056969553232193,0.030362982302904],[0.025983322411776,-0.085691265761852,-0.1545294970274],[-0.041884530335665,0.070754393935204,-0.066282697021961]],[[-0.030040262266994,-0.055542316287756,0.18113781511784],[0.043735809624195,-0.15386888384819,-0.23654855787754],[-0.028643254190683,-0.047629740089178,-0.081363163888454]],[[0.008042455650866,0.020410109311342,0.031491916626692],[-0.18170768022537,-0.090531259775162,-0.02652252279222],[-0.1038735806942,0.033715061843395,0.051739610731602]],[[0.1657038629055,-0.16769203543663,-0.10638131201267],[0.095284581184387,-0.26464089751244,-0.60478132963181],[0.20533491671085,-0.047820672392845,-0.24022877216339]]],[[[0.019801713526249,0.056614708155394,-0.059623386710882],[-0.066673398017883,0.015165211632848,-0.056529495865107],[-0.020667059347034,0.11866665631533,0.03696146979928]],[[0.060596641153097,-0.0095817046239972,0.15892452001572],[-0.13209721446037,0.020910196006298,0.12132430821657],[0.0053978939540684,-0.068639561533928,0.010214891284704]],[[0.033026996999979,0.063613951206207,0.051313057541847],[-0.029224434867501,-0.095009803771973,-0.095963090658188],[0.054449949413538,-0.099760517477989,-0.063463032245636]],[[0.042221430689096,-0.19787158071995,0.024783473461866],[0.069321565330029,-0.13357505202293,-0.017915973439813],[-0.00024930809740908,0.033287756145,0.084507033228874]],[[-0.13035060465336,0.040127515792847,-0.11443434655666],[-0.034469787031412,0.011419215239584,-0.039110817015171],[0.029003100469708,0.045739874243736,-0.0026358661707491]],[[0.087616980075836,0.12600772082806,0.065138950943947],[0.11686842888594,0.022769924253225,-0.014141623862088],[0.0034929481334984,-0.086089447140694,-0.072085082530975]],[[-0.026669753715396,-0.066776350140572,-0.025794092565775],[0.017567828297615,0.067824989557266,-0.090424969792366],[-0.063413240015507,-0.019930699840188,0.093540012836456]],[[0.045425839722157,-0.00091732130385935,-0.025113446637988],[0.043445445597172,0.032069485634565,0.0084935296326876],[-0.048324149101973,0.15149499475956,0.030377689749002]],[[0.037264410406351,0.038681138306856,0.037996407598257],[-0.022792732343078,-0.054746218025684,0.0084655517712235],[0.014345177449286,-0.0083524798974395,-0.086261205375195]],[[-0.061887461692095,-0.0027127438224852,0.13205288350582],[0.030515808612108,-0.00014436693163589,0.0034583429805934],[0.13391605019569,0.057013563811779,0.035477269440889]],[[-0.047236565500498,-0.094662353396416,-0.00097573240054771],[0.068874537944794,-0.062536858022213,0.014523047022521],[0.080794237554073,0.040197607129812,0.022018373012543]],[[0.0098077664151788,0.013315963558853,-0.061258886009455],[-0.03704683855176,-0.078140363097191,0.017826151102781],[-0.023329244926572,0.043740410357714,-0.083704277873039]],[[-0.010789382271469,-0.1588853597641,-0.01827947050333],[-0.04401358962059,0.06795060634613,-0.035023804754019],[-0.043081291019917,-0.11197634786367,-0.031133586540818]],[[-0.042583756148815,0.088757276535034,-0.17661179602146],[0.072999380528927,-0.081960216164589,-0.051786977797747],[-0.08644063770771,0.034892875701189,0.073416195809841]],[[-0.10297641158104,-0.090557314455509,-0.04573867842555],[-0.008958731777966,0.058525647968054,-0.053645044565201],[-0.1842108219862,-0.054291054606438,-0.047489650547504]],[[0.070952564477921,0.033643294125795,0.057303182780743],[0.021126048639417,0.00033061063732021,-0.06769797205925],[-0.1143479347229,-0.16655121743679,-0.050335481762886]],[[0.081241972744465,-0.11856865882874,-0.21108911931515],[-0.0039490149356425,0.032780919224024,-0.066591277718544],[-0.084938615560532,-0.010774133726954,-0.10093493014574]],[[0.0937814489007,0.041330214589834,0.058010630309582],[-0.052570324391127,-0.024417076259851,0.044167418032885],[-0.019355030730367,-0.083344146609306,0.038501553237438]],[[0.080612413585186,0.058652803301811,-0.30417996644974],[0.037325579673052,0.13642102479935,0.1163914501667],[0.03407309949398,0.11244194209576,0.10431016236544]],[[-0.046014290302992,0.02085930109024,-0.030503606423736],[-0.043152961879969,0.011968270875514,0.015396847389638],[0.040013674646616,-0.0033410855103284,-0.011698540300131]],[[-0.091202944517136,-0.017866734415293,-0.01050535403192],[0.1045034378767,0.031069882214069,0.04094211012125],[0.060083899646997,0.076407670974731,0.048459362238646]],[[-0.02151189558208,0.072766080498695,-0.079037427902222],[-0.088303372263908,-0.091657876968384,-0.012612347491086],[-0.11555470526218,-0.030598681420088,-0.13472524285316]],[[-0.040419537574053,-0.003659050213173,0.15445202589035],[-0.12664204835892,0.046046551316977,0.038324411958456],[-0.17261192202568,-0.049511928111315,0.026808870956302]],[[-0.058037467300892,0.20927610993385,0.13543216884136],[0.023977790027857,0.011180856265128,-0.030691279098392],[0.0063945376314223,0.033802960067987,-0.00010259189002682]],[[-0.030402939766645,-0.081815980374813,-0.0084898201748729],[0.11532858014107,-0.0036642509512603,0.1029829159379],[0.048947315663099,0.058510363101959,0.11228634417057]],[[-0.0086744390428066,-0.0094050532206893,0.081682898104191],[-0.030835788697004,-0.035009641200304,-0.083402223885059],[0.070818766951561,-0.13311617076397,-0.16983839869499]],[[0.065444186329842,0.039435420185328,0.051070556044579],[0.074181266129017,-0.037124279886484,0.20254684984684],[0.028572412207723,0.11249639838934,-0.011960286647081]],[[0.14312291145325,-0.059251334518194,0.010478849522769],[0.0071699800901115,-0.00084922765381634,0.075291693210602],[-0.0040156273171306,-0.023353110998869,-0.039514351636171]],[[-0.0021576480939984,-0.065072268247604,0.022722113877535],[-0.039919178932905,0.053849626332521,-0.028252555057406],[0.17607548832893,0.13223405182362,0.17219887673855]],[[0.062041949480772,-0.039906907826662,0.054572485387325],[0.066774524748325,-0.097409084439278,0.11041590571404],[0.13924826681614,-0.002003385219723,-0.16141799092293]],[[0.034432586282492,0.097580745816231,0.083544850349426],[-0.080401599407196,0.14378613233566,0.0035241276491433],[-0.15787410736084,0.046029109507799,0.078727811574936]],[[-0.0050489534623921,0.09647710621357,-0.2745258808136],[0.1066285520792,-0.045166999101639,0.033374052494764],[0.020318584516644,-0.10310391336679,-0.034034844487906]],[[0.044064108282328,-0.033881567418575,-0.016742086037993],[0.071766793727875,-0.029559567570686,0.0059832171536982],[-0.11687976866961,-0.022885341197252,0.092304915189743]],[[0.064285911619663,-0.034650031477213,-0.068386428058147],[-0.020056745037436,0.067334279417992,-0.10920701920986],[0.059391345828772,0.023111956194043,-0.026295658200979]],[[-0.048087600618601,0.0070460354909301,-0.12113446742296],[0.024959251284599,0.24183665215969,-0.01818180270493],[-0.053997084498405,-0.0334706120193,0.045359887182713]],[[0.0094808861613274,-0.074545256793499,-0.027863658964634],[-0.07717377692461,-0.11245477944613,0.019458068534732],[0.046576853841543,0.043999280780554,0.030048932880163]],[[0.043657548725605,0.038910269737244,-0.053807940334082],[-0.0097648249939084,0.14587299525738,0.039132822304964],[-0.10239569097757,0.051954820752144,-0.049864389002323]],[[0.012679951265454,0.1199888959527,-0.0036939259152859],[0.012839036993682,-0.071618907153606,-0.11805906891823],[0.0071165692061186,0.019260240718722,0.17380638420582]],[[-0.038582943379879,-0.028355533257127,-0.022275406867266],[-0.024569030851126,0.011993020772934,-0.033768575638533],[-0.0047897212207317,-0.076068043708801,-0.038207519799471]],[[0.025147646665573,0.040926940739155,-0.054843500256538],[0.08144173771143,-0.069774754345417,-0.020657951012254],[0.033595487475395,0.028739562258124,-0.11049907654524]],[[-0.056908525526524,-0.040996391326189,-0.042069971561432],[0.04976062849164,-0.059091247618198,0.013565882109106],[0.065008401870728,-0.32280912995338,0.06637766212225]],[[-0.11026286333799,-0.06503339111805,-0.062968283891678],[0.11316727101803,-0.024722615256906,0.064257048070431],[-0.025633208453655,-0.12014888226986,0.10204820334911]],[[-0.012163418345153,-0.031191581860185,0.034582607448101],[-0.072455205023289,-0.0559310503304,0.014742307364941],[0.16952854394913,0.036989122629166,0.02135493978858]],[[-0.097927145659924,-0.042822439223528,-0.015782065689564],[0.010529874823987,-0.014310346916318,-0.022592555731535],[0.032244104892015,0.020998964086175,0.00036210747202858]],[[-0.033929754048586,-0.060645289719105,0.018513960763812],[-0.051340036094189,0.010154971852899,0.027263678610325],[-0.15711410343647,-0.048430014401674,0.11606914550066]],[[-0.040727771818638,-0.0074467752128839,0.021863097324967],[0.030573211610317,-0.0068658562377095,0.050925489515066],[0.052780762314796,-0.032076247036457,0.037141259759665]],[[-0.16993506252766,0.011366960592568,0.09006454795599],[-0.11274935305119,0.030592951923609,0.032268270850182],[0.060205157846212,0.038752488791943,0.033642716705799]],[[0.046601191163063,-0.074077919125557,0.087092734873295],[-0.043501064181328,-0.065602920949459,-0.074208989739418],[-0.011604620143771,0.0032077690120786,0.091452032327652]],[[0.006634225603193,-0.018428854644299,0.041465524584055],[-0.10446172952652,-0.02432245016098,-0.048202123492956],[-0.030108401551843,0.19279405474663,-0.054950810968876]],[[-0.048655156046152,-0.0097386091947556,0.040596593171358],[-0.036770701408386,-0.045724749565125,-0.0221181884408],[-0.033600829541683,0.11847846210003,0.085056804120541]],[[-0.041480399668217,0.039914295077324,0.10767324268818],[-0.08318354934454,0.14554752409458,-0.067263521254063],[-0.042561940848827,0.018866833299398,-0.12789729237556]],[[-0.0054252347908914,0.066039375960827,0.042873550206423],[-0.015415435656905,0.045732531696558,0.025818772614002],[-0.27304938435555,-0.058430228382349,-0.1179430782795]],[[0.047054048627615,-0.0022788525093347,-0.18139000236988],[0.076258316636086,-0.032055627554655,-0.10661850124598],[-0.004851795732975,0.12049892544746,-0.085247673094273]],[[-0.035536769777536,-0.15672536194324,0.024225503206253],[0.11925461143255,-0.21342803537846,0.13723537325859],[-0.0020769506227225,-0.11865410208702,0.0524149723351]],[[0.09574668854475,-0.074372693896294,0.11069710552692],[-0.092543378472328,-0.017044667154551,0.079399883747101],[-0.000432900065789,-0.093881152570248,-0.051310647279024]],[[-0.0052455314435065,-0.20012947916985,-0.087866432964802],[-0.039834905415773,-0.011476221494377,0.045106958597898],[0.035753544420004,0.063132233917713,0.047976143658161]],[[0.04139769077301,0.073976658284664,0.017187936231494],[-0.11306584626436,0.053256783634424,-0.021715538576245],[-0.093351572751999,-0.18300023674965,-0.18623380362988]],[[0.043535929173231,-0.12077964842319,-0.081437274813652],[-0.072981953620911,0.052075445652008,0.05076801404357],[-0.032289352267981,0.00025344081223011,0.040928486734629]],[[-0.074971467256546,0.028756886720657,0.10664973407984],[0.082046642899513,-0.041716743260622,0.080353267490864],[-0.064291872084141,0.0084775891155005,-0.11562705039978]],[[-0.0313351303339,0.018617901951075,0.0069053578190506],[-0.037640798836946,0.049808748066425,-0.13553595542908],[0.021806482225657,0.02140892110765,-0.10088100284338]],[[0.082635156810284,0.14057438075542,-0.053844001144171],[0.031901452690363,-0.064270578324795,0.021235290914774],[-0.080533646047115,-0.12838077545166,-0.034897029399872]],[[0.13332533836365,-0.067735783755779,0.080741301178932],[-0.17511603236198,0.062433861196041,-0.1113999709487],[0.11607798933983,0.16366899013519,-0.0012690179282799]],[[0.18912391364574,0.097238264977932,0.024991715326905],[-0.083896145224571,-0.016165252774954,-0.048741146922112],[-0.10566991567612,-0.087947882711887,-0.036317594349384]],[[-0.05458765104413,-0.017477178946137,0.086657129228115],[0.052093889564276,-0.038583174347878,-0.02372402139008],[-0.0022306023165584,0.022669041529298,0.19495545327663]]],[[[0.04622633382678,-0.031097924336791,-0.026706401258707],[-0.077008701860905,0.0043440484441817,0.033557377755642],[-0.0085859159007668,-0.005759961437434,-0.027761489152908]],[[-0.0045558512210846,-0.090234041213989,-0.10916662216187],[0.0054199900478125,0.0033609808888286,-0.015591925010085],[-0.014902398921549,-0.014094490557909,-0.0016963423695415]],[[-0.0964335501194,-0.0026023029349744,0.042680192738771],[0.067201018333435,-0.014654442667961,0.0098494431003928],[-0.011475364677608,-0.055582728236914,0.067347884178162]],[[0.037019830197096,-0.10926593840122,-0.081044219434261],[-0.034674171358347,0.11409414559603,0.0048062978312373],[-0.093321144580841,-0.0014560939744115,0.0064885192550719]],[[0.10492739081383,0.01255189999938,0.016715902835131],[0.0057982611469924,-0.069263331592083,0.026413699612021],[0.05701382830739,-0.080866403877735,0.023465253412724]],[[0.0087640946730971,-0.042868345975876,0.043249674141407],[0.043143466114998,0.055339064449072,-0.056048560887575],[-0.034352276474237,0.06282389909029,-0.054089237004519]],[[0.035452604293823,-0.040074143558741,-0.036000840365887],[-0.0080646704882383,-0.023201171308756,-0.029834751039743],[0.016055282205343,-0.10028410702944,-0.01637321151793]],[[-0.0086761582642794,-0.0094488793984056,-0.017505818977952],[0.0052775191143155,0.077407367527485,-0.078250035643578],[-0.069903120398521,0.080258868634701,-0.034532617777586]],[[0.1140370965004,0.023871678858995,0.077143169939518],[0.023272685706615,-0.070591427385807,-0.034570802003145],[-0.073766857385635,-0.033507365733385,-0.036321450024843]],[[0.10584416985512,-0.038607880473137,-0.072421669960022],[-0.075654067099094,0.074025996029377,0.057037927210331],[0.051932107657194,0.083286285400391,0.017775416374207]],[[-0.067448116838932,-0.034252669662237,-0.021044632419944],[0.014923127368093,-0.12681037187576,-0.061420876532793],[-0.010384026914835,-0.012742162682116,-0.058301866054535]],[[0.016566496342421,0.0021950923837721,-0.019030157476664],[-0.013947253115475,0.056490957736969,-0.066183902323246],[-0.014266347512603,-0.060551065951586,-0.049709025770426]],[[-0.17386800050735,0.031180858612061,0.0016527975676581],[0.054786864668131,0.035226427018642,-0.019096842035651],[0.049057845026255,-0.011824407614768,0.0028010301757604]],[[-0.058295138180256,-0.013529235497117,-0.040122199803591],[-0.016249073669314,0.0079237399622798,0.019679302349687],[-0.0052208099514246,0.043894793838263,-0.018598044291139]],[[0.025409072637558,-0.008004542440176,-0.011450390331447],[-0.045582108199596,-0.017384346574545,0.014635603874922],[-0.030946267768741,0.044658623635769,-0.053038142621517]],[[0.19323201477528,-0.15814200043678,0.002175948349759],[0.036149397492409,0.030341912060976,-0.034226354211569],[-0.033022958785295,-0.038163546472788,0.10627023130655]],[[0.071985214948654,-0.15614640712738,0.015928812325001],[-0.053448468446732,-0.032946657389402,-0.01809155382216],[0.084507182240486,-0.064354605972767,0.011416709981859]],[[0.052983120083809,0.035441413521767,-0.016477258875966],[-0.074329487979412,-0.02428593300283,-0.043144386261702],[0.030895920470357,-0.060750678181648,-0.001868033898063]],[[0.056847587227821,0.023751163855195,0.019346734508872],[-0.083475068211555,0.038276631385088,-0.05707448348403],[0.064805313944817,0.099179178476334,-0.0075811790302396]],[[-0.13461872935295,-0.02773018181324,-0.02534188143909],[0.051931343972683,0.11180823296309,0.067835360765457],[-0.08637722581625,0.013312133029103,-0.050664097070694]],[[0.046622212976217,-0.031052343547344,0.025981277227402],[0.019840087741613,0.037112288177013,-0.02383597381413],[0.035014234483242,-0.033182363957167,-0.012913360260427]],[[0.029716784134507,-0.027263650670648,-0.082565829157829],[-0.11208827793598,-0.10457948595285,-0.034531239420176],[0.0096534648910165,-0.12137687206268,0.0052758469246328]],[[-0.0089340936392546,-0.026497529819608,-0.03807320073247],[0.012361999601126,0.016382908448577,-0.0091564832255244],[0.04247123748064,-0.048559464514256,-0.045313555747271]],[[0.049765609204769,-0.12632848322392,-0.092344395816326],[-0.17423042654991,-0.038290526717901,-0.0041148033924401],[0.053705271333456,0.0062355054542422,0.0079598175361753]],[[0.013708914630115,-0.052836544811726,-0.029080905020237],[0.043248750269413,0.12725660204887,0.052290890365839],[-0.10743772238493,0.10272140055895,0.054442293941975]],[[0.032879002392292,-0.031743988394737,-0.086913526058197],[0.034717928618193,-0.0044956668280065,-0.050607651472092],[-0.070836931467056,0.026678783819079,0.041523978114128]],[[-0.016923109069467,0.1230995208025,0.083095796406269],[-0.059013705700636,-0.0082372045144439,-0.013276839628816],[0.084928914904594,-0.082243256270885,0.049696054309607]],[[-0.08921754360199,-0.068766936659813,-0.0038425249513239],[-0.055262267589569,0.070887297391891,-0.0052493391558528],[-0.00717370538041,-0.018242217600346,-0.022897528484464]],[[0.055855337530375,0.009532431140542,-0.053878135979176],[0.064951248466969,-0.023666609078646,-0.053695738315582],[-0.063855536282063,-0.084352627396584,0.021746583282948]],[[0.041605692356825,-0.011340304277837,0.077049627900124],[-0.096950568258762,-0.07434007525444,0.085321687161922],[0.03564516082406,0.09198047965765,0.0053112651221454]],[[0.043941371142864,0.047751344740391,0.044007457792759],[-0.00095162156503648,-0.14732068777084,-0.0042173261754215],[0.008061496540904,0.020770547911525,0.048636727035046]],[[-0.031156012788415,-0.061702001839876,-0.050654422491789],[-0.098213598132133,-0.017415886744857,-0.028728442266583],[0.0092630330473185,0.055623300373554,0.034964669495821]],[[0.0043742312118411,0.051462087780237,0.048460505902767],[-0.041184391826391,-0.062723606824875,0.052241593599319],[0.039894592016935,-0.11892334371805,-0.023049831390381]],[[0.11192657798529,-0.15367956459522,0.0017055262578651],[0.083417013287544,-0.08187460154295,-0.012255883775651],[-0.010464916937053,0.039498385041952,0.010175425559282]],[[-0.012789197266102,-0.012179521843791,-0.020704342052341],[-0.030635174363852,-0.06053052097559,-0.10085529088974],[0.066638715565205,0.036335650831461,0.083569094538689]],[[-0.023535773158073,-0.031679306179285,-0.059691790491343],[0.0052788900211453,0.0060376981273293,0.044659968465567],[-0.033036202192307,0.013403613120317,0.012537421658635]],[[0.066566944122314,0.027670819312334,0.028313918039203],[0.041720923036337,-0.033532433211803,0.078158117830753],[-0.04735129326582,-0.015670353546739,0.0047481525689363]],[[-0.18969058990479,-0.084908686578274,0.098713204264641],[0.024586174637079,0.093060553073883,-0.059917159378529],[-0.043600670993328,-0.0064875157549977,0.046716842800379]],[[0.03898910433054,0.00070286856498569,-0.04665956273675],[-0.012937082909048,0.024482704699039,-0.085164308547974],[-0.01153261680156,0.046072043478489,-0.008015095256269]],[[0.080485783517361,0.1085509583354,-0.050743207335472],[0.062063876539469,-0.025245303288102,0.013151387684047],[-0.034964665770531,0.048794638365507,-0.00091748009435833]],[[0.0053127692081034,-0.0059977429918945,0.04919770359993],[-0.066665291786194,-0.0099312672391534,-0.057460095733404],[0.037593524903059,0.038145951926708,0.027868643403053]],[[-0.021994851529598,0.053369272500277,0.021596187725663],[-0.050694264471531,-0.098292298614979,-0.10102669149637],[0.011767935007811,-0.15596164762974,0.0031678094528615]],[[-0.070453226566315,-0.22723044455051,-0.049464717507362],[-0.020925495773554,-0.091645486652851,0.017582271248102],[-0.050875313580036,0.071371883153915,0.016773140057921]],[[-0.076489016413689,-0.059565015137196,-0.0065018641762435],[0.014918676577508,-0.037888582795858,0.023985549807549],[0.013735117390752,0.043873574584723,0.090384170413017]],[[0.0150963133201,-0.065438903868198,0.0259865578264],[0.080937243998051,0.045859806239605,0.07623329013586],[0.017022959887981,0.016895297914743,-0.060934089124203]],[[0.0016734001692384,0.10569062829018,0.040508676320314],[-0.05708846449852,-0.0065387161448598,-0.12640787661076],[-0.0040475171990693,-0.019804555922747,-0.013311336748302]],[[0.093340240418911,0.085978209972382,0.0016251978231594],[0.024531641975045,-0.020635331049562,-0.0013627199223265],[-0.045564088970423,-0.020721329376101,-0.0307388138026]],[[0.01900933124125,-0.019156940281391,-0.071761906147003],[-0.013274962082505,-0.013952388428152,0.017441973090172],[0.024326419457793,-0.026247473433614,-0.036544926464558]],[[-0.11306025087833,-0.024166632443666,0.083522632718086],[0.012343554757535,-0.054289545863867,0.079008191823959],[0.017548453062773,-0.077075518667698,0.019526904448867]],[[-0.19582711160183,-0.038129005581141,-0.01860330812633],[-0.041082549840212,0.11614989489317,0.0068720830604434],[0.07974124699831,0.079286143183708,0.023485185578465]],[[0.098936691880226,-0.040424775332212,0.0023380531929433],[-0.046369101852179,-0.12272373586893,-0.076780296862125],[0.018986092880368,0.046469151973724,0.030805034562945]],[[0.044334851205349,0.01048169285059,0.050514791160822],[0.014107264578342,0.053087677806616,0.017357999458909],[0.011341198347509,-0.00024904333986342,0.0036054363008589]],[[0.0090238964185119,0.031243314966559,-0.064224354922771],[0.036078754812479,-0.021754076704383,-0.018470294773579],[-0.003831721143797,0.046038579195738,-0.025707419961691]],[[-0.066184967756271,-0.051635295152664,-0.081416517496109],[-0.19454036653042,0.049889106303453,-0.052663668990135],[-0.029809793457389,0.11077715456486,-0.01447407156229]],[[-0.0036864259745926,-0.050068892538548,0.03391082957387],[-0.0094592152163386,-0.026301823556423,-0.074938863515854],[0.10139986872673,0.065542556345463,0.081459812819958]],[[-0.088670007884502,-0.11161984503269,-0.0059544830583036],[0.010122714564204,-0.043527938425541,0.00049016566481441],[0.0510238930583,-0.055714800953865,-0.019988829270005]],[[0.037817038595676,-0.097733147442341,-0.046672057360411],[-0.021722307428718,-0.091745764017105,0.048680208623409],[-0.006984488107264,-0.025417789816856,0.083656720817089]],[[-0.10784373432398,0.017495831474662,0.010322878137231],[-0.14843641221523,0.025882063433528,0.05104073882103],[-0.03828252479434,0.032328143715858,0.089295484125614]],[[0.071967512369156,0.082950495183468,-0.09227230399847],[0.02200947701931,0.026027778163552,-0.0074466285295784],[-0.031235817819834,-0.0092061180621386,-0.022970100864768]],[[0.014348931610584,-0.016540406271815,-0.11710032075644],[0.012233039364219,0.099853493273258,0.036043971776962],[-0.025358574464917,0.0082402378320694,-0.045893147587776]],[[-0.03533149138093,0.012670246884227,-0.045908749103546],[0.004096663556993,-0.010786212980747,0.039123274385929],[-0.033512152731419,-0.0038714164402336,-0.097872838377953]],[[0.020357320085168,-0.045474480837584,-0.069004096090794],[-0.097180023789406,0.036460243165493,0.096455700695515],[-0.021944984793663,0.071178764104843,-0.17232723534107]],[[0.052241880446672,0.069115415215492,-0.079100228846073],[0.047377455979586,-0.022819513455033,-0.086196266114712],[-0.0021255784668028,-0.015611863695085,-0.04092676192522]],[[-0.015127112157643,0.045385282486677,0.059491142630577],[-0.02381681278348,-0.0018322947435081,0.035396382212639],[-0.00083214201731607,0.034909632056952,-0.10186287015676]]],[[[-0.041035193949938,-0.05767921730876,0.076191484928131],[-0.015028417110443,-0.03486568108201,0.041641552001238],[0.09784834831953,0.0046292929910123,-0.064319424331188]],[[0.015201295726001,0.063906639814377,-0.10968996584415],[0.0070262877270579,-0.084869891405106,0.00036424596328288],[-0.026166509836912,0.087509945034981,-0.11691772937775]],[[-0.055976267904043,-0.07184174656868,0.056265961378813],[-0.051391266286373,0.049225725233555,-0.038651458919048],[-0.12233643233776,0.047522086650133,0.019535344094038]],[[-0.034948103129864,0.062817424535751,-0.14219807088375],[0.060037814080715,-0.025553224608302,-0.057814102619886],[-0.10367288440466,-0.0085914973169565,0.027959533035755]],[[0.10814478248358,-0.027740031480789,0.0026571219787002],[0.056384351104498,-0.066493406891823,0.018339470028877],[-0.041600413620472,-0.036497827619314,-0.050412226468325]],[[-0.061692260205746,-0.12539201974869,0.1047587916255],[0.019194113090634,0.11224652081728,-0.031603112816811],[0.067023500800133,-0.039113443344831,-0.013925720006227]],[[0.0029867524281144,-0.040844690054655,-0.023412821814418],[0.046349935233593,0.018861880525947,0.089173682034016],[-0.20170480012894,-0.079925715923309,-0.028545577079058]],[[0.012107579037547,-0.073181323707104,-0.046938143670559],[-0.086628571152687,-0.035300318151712,0.0087622813880444],[-0.055212378501892,-0.035182859748602,-0.0083875264972448]],[[-0.010650520212948,0.05713889375329,0.010522591881454],[0.079500958323479,-0.050594061613083,-0.053877469152212],[-0.035820420831442,-0.006718285381794,-0.039027128368616]],[[-0.053896702826023,0.0057866959832609,0.043316647410393],[0.090038403868675,-0.063159622251987,-0.040019437670708],[-0.0060515538789332,-0.09263139218092,-0.02284986898303]],[[-0.058745980262756,-0.076970435678959,-0.019864819943905],[0.13396656513214,0.023957531899214,-0.0034913884010166],[0.019250111654401,0.083114109933376,0.11117915064096]],[[0.029236132279038,-0.17531065642834,-0.057831794023514],[-0.030340189114213,0.016832204535604,-0.065688952803612],[-0.043726548552513,-0.018889898434281,-0.16151703894138]],[[0.0048884772695601,-0.13115055859089,-0.034937832504511],[-0.10231747478247,-0.014842178672552,-0.19844354689121],[0.038062646985054,-0.22429220378399,0.029580214992166]],[[-0.13280901312828,0.05421058088541,-0.035253942012787],[0.034081216901541,-0.13705398142338,-0.20469149947166],[0.069144181907177,-0.10512493550777,0.16969774663448]],[[-0.0250035636127,-0.080509886145592,-0.051562089473009],[-0.12840685248375,-0.0052275960333645,-0.023935861885548],[0.14767949283123,-0.021297246217728,-0.14015634357929]],[[-0.045480124652386,0.081189587712288,0.0039149257354438],[-0.051623307168484,-0.042625796049833,0.072606928646564],[-0.065057195723057,0.081771083176136,-0.15089151263237]],[[0.047218568623066,-0.024372778832912,0.054468180984259],[-0.045699827373028,0.039429746568203,0.087639980018139],[0.015064890496433,-0.094402737915516,0.11686848104]],[[-0.018190953880548,-0.066907495260239,-0.038060035556555],[-0.0948126912117,0.054065249860287,0.073741860687733],[-0.13332258164883,-0.037891268730164,0.0029650968499482]],[[-0.040934890508652,0.051973808556795,0.095443151891232],[0.011704491451383,-0.0011825825786218,0.092506915330887],[-0.059173736721277,0.080586306750774,-0.029001379385591]],[[0.025448519736528,-0.06854122877121,-0.033163733780384],[-0.028645327314734,-0.028794659301639,-0.05658071115613],[0.10654003173113,-0.018104722723365,0.068352825939655]],[[-0.083989709615707,-0.026366984471679,0.11366317421198],[0.031505111604929,-0.20415011048317,0.096232943236828],[0.019768469035625,-0.11659345775843,0.01941030845046]],[[0.005303016398102,-0.012740550562739,0.014398545958102],[-0.063221007585526,-0.14446081221104,0.0018801072146744],[-0.086245201528072,0.079583160579205,-0.098473682999611]],[[-0.15655137598515,-0.027350669726729,0.010385381989181],[0.11112508177757,-0.065950445830822,-0.018916128203273],[-0.14077804982662,-0.011783927679062,0.062726579606533]],[[0.071192786097527,-0.029681302607059,-0.024564798921347],[-0.013996297493577,-0.090287394821644,0.073204129934311],[0.020435348153114,-0.01731445454061,-0.012288461439312]],[[-0.039331786334515,-0.017977109178901,-0.062747597694397],[0.043339069932699,-0.11261992156506,0.10072325915098],[0.041557982563972,0.035573974251747,0.028826177120209]],[[0.15690667927265,-0.17472848296165,0.0500184930861],[-0.081429280340672,-0.1380956619978,0.069194883108139],[-0.16510118544102,-0.14571677148342,-0.013941206037998]],[[-1.3668112842424e-05,-0.010839917697012,-0.042152550071478],[0.043394606560469,0.13253438472748,-0.11807986348867],[-0.079832717776299,0.023552229627967,-0.06201608851552]],[[0.072001032531261,0.00088733865413815,-0.15698410570621],[-0.037346661090851,0.026152106001973,-0.034324526786804],[0.01940356567502,0.05102713406086,-0.0068465522490442]],[[-0.10715706646442,0.094246491789818,0.17229308187962],[-0.10307959467173,-0.13706807792187,0.022504780441523],[-0.015112481079996,-0.063032180070877,0.041243948042393]],[[0.15156182646751,-0.010532762855291,0.01838530600071],[-0.035311676561832,-0.040467839688063,-0.17184780538082],[-0.097916431725025,0.10077431052923,-0.057884257286787]],[[0.046267569065094,-0.022084226831794,0.025245556607842],[0.0049063661135733,0.034811869263649,0.0055796597152948],[0.013519160449505,-0.11410561203957,-0.058310747146606]],[[0.003749897936359,-0.14621455967426,0.015963638201356],[-0.053464516997337,0.044524852186441,-0.12024829536676],[-0.0038870316930115,0.026886314153671,0.074867337942123]],[[-0.1707106679678,-0.049033336341381,-0.12947507202625],[0.1006848141551,-0.088897369801998,0.0022434864658862],[-0.072253055870533,0.1539521664381,0.063562855124474]],[[-0.11886793375015,0.074927389621735,-0.17017911374569],[0.014774203300476,-0.026513928547502,0.074552454054356],[0.01184513233602,-0.0081478757783771,-0.15035235881805]],[[0.044526983052492,-0.11341629177332,0.053615935146809],[0.050205182284117,-0.031527951359749,-0.026776749640703],[-0.086582593619823,-0.18901588022709,0.023598561063409]],[[0.070236414670944,0.0102712912485,0.014012457802892],[-0.022278353571892,-0.11280286312103,-0.06886900216341],[-0.064398542046547,-0.10159420967102,-0.20625267922878]],[[-0.02276099100709,-0.096357226371765,-0.00109043775592],[0.060534100979567,0.14335149526596,-0.029665635898709],[0.0054532471112907,0.070377938449383,-0.070979662239552]],[[0.074659772217274,0.0069859144277871,0.062580674886703],[0.057451963424683,-0.079775884747505,-0.012753518298268],[-0.02792083658278,0.049981649965048,0.0048756320029497]],[[-0.15300816297531,-0.012964652851224,0.054046716541052],[-0.10739564150572,-0.18999664485455,-0.0079880096018314],[-0.16097213327885,-0.068817265331745,-0.075571276247501]],[[0.0037852274253964,0.019568983465433,-0.0044045951217413],[-0.0096272826194763,0.071172028779984,0.07373670488596],[-0.00050664157606661,-0.086182221770287,0.0011282992782071]],[[-0.044430378824472,-0.098201476037502,0.042266275733709],[0.0755465477705,-0.027132930234075,-0.33768430352211],[0.063668765127659,-0.050626780837774,0.016494506970048]],[[0.04658666998148,-0.048290934413671,-0.032897111028433],[-0.1177339926362,-0.1358096152544,0.08998765796423],[-0.055504266172647,-0.13138557970524,-0.0058942665345967]],[[-0.0089157801121473,0.017238274216652,-0.046995989978313],[0.013923275284469,-0.1629231274128,-0.035803437232971],[-0.03075896948576,-0.012984907254577,0.040093574672937]],[[0.077274024486542,-0.020675776526332,0.038969535380602],[-0.058786414563656,0.03412214666605,0.030028380453587],[-0.038027055561543,0.062025517225266,0.075025767087936]],[[-0.059764508157969,-0.037374399602413,-0.23380203545094],[-0.075253322720528,-0.038910247385502,-0.089383386075497],[-0.04861868172884,-0.091676481068134,-0.072978712618351]],[[-0.052001368254423,0.017226843163371,-0.046786993741989],[-0.04789524897933,0.033892463892698,0.00094604474725202],[-0.068448558449745,0.095835566520691,0.07158750295639]],[[0.041364092379808,-0.080792650580406,-0.13915103673935],[-0.0070269564166665,0.004568062722683,0.015667904168367],[-0.083554595708847,0.035371657460928,-0.14265467226505]],[[-0.071062594652176,-0.07533323764801,-0.072742767632008],[0.04024176672101,-0.0057037081569433,-0.1407545953989],[-0.11181696504354,0.11324374377728,-0.0042207315564156]],[[-0.15372782945633,0.030558004975319,-0.126604616642],[-0.022357458248734,-0.067904442548752,-0.015671174973249],[-0.0017144418088719,-0.013362413272262,0.024706779047847]],[[-0.023807236924767,-0.0063919904641807,-0.006926809437573],[0.039497002959251,-0.0081211850047112,0.074059583246708],[-0.052886109799147,-0.05336482450366,-0.06195268034935]],[[-0.12351194024086,-0.15100620687008,0.071852669119835],[-0.19941692054272,-0.033756371587515,-0.17465417087078],[-0.077787049114704,-0.061123382300138,-0.14781863987446]],[[0.046596702188253,-0.093040987849236,0.031797893345356],[0.018752245232463,0.074423715472221,0.032170638442039],[-0.084266662597656,-0.07637420296669,-0.10843805968761]],[[0.16182044148445,0.079185917973518,-0.07559484988451],[0.039357028901577,0.07076632976532,-0.028349861502647],[0.041038416326046,-0.034491278231144,-0.01498716045171]],[[-0.041321631520987,-0.019867403432727,-0.0090081496164203],[-0.020945036783814,-0.1962957829237,-0.059446610510349],[-0.045814406126738,-0.023663327097893,0.0605603531003]],[[0.093018107116222,-0.13935405015945,-0.14796556532383],[-0.090868510305882,0.023220458999276,-0.11724475026131],[-0.023617561906576,-0.090289853513241,-0.24134549498558]],[[0.0022653504274786,0.099684998393059,-0.065681375563145],[-0.09564396739006,0.059533584862947,0.013282467611134],[0.02811992354691,-0.094929069280624,-0.0038840414490551]],[[0.049487948417664,-0.028443865478039,-0.024512303993106],[-0.083597242832184,0.11235354840755,-0.0675048828125],[-0.0024104963522404,0.035978782922029,0.024800522252917]],[[-0.038694784045219,0.04429903998971,0.010819928720593],[-0.10964348912239,-0.11678744852543,0.095966927707195],[-0.086785674095154,-0.036012809723616,-0.046330410987139]],[[-0.0062908451072872,-0.11665792763233,-0.21826533973217],[0.0034195883199573,-0.042454361915588,0.16334873437881],[0.11460906267166,-0.003129499964416,0.080490879714489]],[[0.011844073422253,-0.050621416419744,0.076952010393143],[0.0040034484118223,-0.14726769924164,-0.065332889556885],[0.13009358942509,-0.096412658691406,-0.068746156990528]],[[-0.043329320847988,0.023988822475076,-0.10789522528648],[-0.013965435326099,-0.1532421708107,0.054002735763788],[-0.0071235820651054,-0.070876657962799,-0.05490355193615]],[[0.20975863933563,-0.13187988102436,0.23754481971264],[-0.050088308751583,-0.017051555216312,-0.15084190666676],[0.1691575050354,-0.19661997258663,0.05890891700983]],[[0.059144325554371,0.21605145931244,-0.30723318457603],[0.029134472832084,-0.007715905085206,-0.011670244857669],[0.086898878216743,0.023079281672835,0.0029592101927847]],[[-0.072199620306492,0.02460166439414,0.055193137377501],[0.1660274118185,0.045196212828159,-0.071713536977768],[-0.087826915085316,0.033348809927702,-0.080919876694679]]],[[[-0.014034045860171,-0.0096280844882131,0.020017847418785],[0.014545512385666,-0.019201459363103,-0.0040992079302669],[0.085942938923836,-0.057225946336985,-0.0078957220539451]],[[-0.01689381711185,-0.010699856095016,0.021658603101969],[-0.031519580632448,0.011137341149151,0.01014079619199],[0.075476199388504,-0.071214981377125,0.0045840074308217]],[[0.0059243096038699,-0.010759675875306,-0.091488137841225],[-0.0067504346370697,0.050551027059555,0.016326431185007],[0.029047245159745,0.027322830632329,-0.012405514717102]],[[0.0097376890480518,-0.062676765024662,0.044507306069136],[0.032746251672506,-0.085693545639515,0.0013714451342821],[0.040095336735249,0.0092799142003059,-0.011658222414553]],[[0.033203016966581,-0.040222469717264,-0.070695847272873],[-0.01553247589618,0.053745307028294,0.019825909286737],[0.017678061500192,0.018092466518283,-0.028385100886226]],[[0.021377000957727,-0.00011718030145857,0.0029088729061186],[-0.029939953237772,0.087200179696083,-0.044779874384403],[-0.022288110107183,0.01816388219595,-0.0030428746249527]],[[-0.041125427931547,0.033438261598349,-0.01843730174005],[0.0092974221333861,-0.063441433012486,0.0047153304331005],[0.054500963538885,-0.0043258415535092,0.024081340059638]],[[0.034890003502369,-0.06290227919817,0.024906946346164],[0.014113680459559,-0.060529351234436,0.048365909606218],[0.003092068945989,0.046235732734203,-0.042182691395283]],[[-0.012315669097006,0.18791911005974,-0.070935182273388],[0.016423303633928,0.080894805490971,0.043504171073437],[0.10839249193668,0.092522613704205,0.021319100633264]],[[-0.014920258894563,0.024276666343212,0.0062764422036707],[0.074424080550671,-0.042336337268353,-0.058254636824131],[0.044977955520153,-0.031908102333546,-0.020712675526738]],[[-0.024048436433077,-0.022424889728427,0.015053920447826],[0.0019221232505515,0.0081823626533151,-0.036937888711691],[0.0015226780669764,0.044741325080395,0.012112739495933]],[[-0.035967033356428,-0.066449046134949,-0.031539984047413],[-0.052673310041428,-0.028678657487035,0.063616454601288],[0.0080145476385951,0.087124168872833,0.020884362980723]],[[0.09359410405159,-0.014848873019218,-0.016887295991182],[-0.022965194657445,-0.030304007232189,0.015854207798839],[-0.027315523475409,0.023324657231569,-0.014424983412027]],[[-0.0029401294887066,0.0098776919767261,-0.10595363378525],[-0.041472494602203,0.069861382246017,0.073621638119221],[0.074785940349102,-0.027647536247969,-0.043473232537508]],[[-0.03824707865715,-0.029356921091676,0.067920044064522],[0.0059237964451313,-0.042968157678843,-0.025842826813459],[0.029338413849473,-0.015572261996567,0.040346901863813]],[[-0.0032166864257306,0.040050972253084,-0.0039630169048905],[-0.0057482905685902,0.041981719434261,-0.095182426273823],[-0.016635043546557,0.0095476722344756,0.020829046145082]],[[-0.0025991639122367,0.014535243622959,-0.021982925012708],[-0.03663544356823,0.0072231814265251,0.0096690440550447],[0.04236251115799,0.0022905536461622,-0.0067896419204772]],[[0.0086733000352979,0.039107259362936,0.011877267621458],[-0.016984427347779,-0.02529420144856,-0.014391495846212],[0.0061950930394232,-0.027289083227515,0.010482305660844]],[[0.0026056582573801,0.048799440264702,-0.060411863029003],[-0.020134657621384,0.09803032875061,-0.040841985493898],[-0.03069175966084,0.086766801774502,-0.076920568943024]],[[0.048726841807365,-0.050566896796227,0.059597082436085],[-0.040931634604931,-0.076450578868389,0.03588330373168],[0.017519976943731,-0.0022404927294701,0.01124719157815]],[[0.051755294203758,0.065348230302334,-0.020864758640528],[0.0090527208521962,-0.12753111124039,-0.015721935778856],[0.0015381504781544,0.045711416751146,0.022232344374061]],[[0.047561421990395,-0.095069088041782,-0.059330422431231],[0.0081582777202129,0.058767009526491,-0.030868975445628],[0.0096704829484224,0.028882637619972,0.035386070609093]],[[0.025313949212432,-0.046704512089491,0.020443683490157],[-0.017981544137001,0.026908472180367,0.011035709641874],[-0.0086271669715643,-0.030324142426252,0.019135881215334]],[[0.035231150686741,-0.0092019326984882,-0.0010999708902091],[-0.0099889896810055,-0.0031188228167593,-0.020575283095241],[-0.02059667557478,-0.018063450232148,0.032406862825155]],[[-0.022723767906427,0.0033979818690568,-0.027881449088454],[0.0043992609716952,0.017195552587509,0.042879413813353],[0.0061007579788566,0.0050607370212674,-0.029286872595549]],[[0.043415814638138,-0.052344467490911,-0.024692788720131],[-0.020794756710529,-0.034717943519354,0.02002826705575],[0.012223677709699,0.036243110895157,0.015981264412403]],[[0.038274135440588,0.0018430901691318,-0.014779232442379],[-0.053874652832747,-0.097169429063797,0.084020897746086],[-0.024940671399236,0.071529254317284,-0.017622847110033]],[[0.038408730179071,-0.062643177807331,0.060740001499653],[0.011968416161835,-0.040345627814531,-0.058068446815014],[0.038125567138195,-0.02756817266345,0.035915613174438]],[[-0.036019183695316,0.044047564268112,0.012193041853607],[-0.0040733241476119,-0.0028839940205216,-0.053831309080124],[0.013828993774951,-0.0014589144848287,0.026685021817684]],[[-0.0019171972526237,-0.027539832517505,0.028619246557355],[0.022501967847347,0.075997270643711,-0.022832790389657],[0.022745057940483,-0.092304155230522,-0.016784597188234]],[[0.04448976367712,0.017558813095093,0.014624523930252],[0.00098566443193704,-0.036680344492197,0.025218682363629],[-0.00078611850040033,-0.016883760690689,-0.035678803920746]],[[0.025516832247376,0.0017027152935043,0.038988500833511],[-0.010945009067655,0.0034766332246363,-0.028437051922083],[0.012315263971686,0.0021699839271605,-0.031114785000682]],[[-0.026336284354329,0.092786453664303,0.073192529380322],[0.018881281837821,-0.063323237001896,-0.091844834387302],[-0.0393455773592,0.014658762142062,0.026788249611855]],[[0.056171033531427,0.035888787358999,-0.029796259477735],[-0.051134455949068,-0.070413365960121,-0.057394351810217],[-0.022829249501228,0.032974991947412,0.072534196078777]],[[-0.0029401141218841,-0.021469507366419,0.013397625647485],[0.03919805586338,-0.0088819861412048,0.07337574660778],[0.041313357651234,-0.069594644010067,-0.05295917019248]],[[-0.0010743376333266,-0.01552782766521,0.0085308579728007],[-0.014859766699374,0.023351583629847,-0.0012650163844228],[-0.040109965950251,-0.014801143668592,0.037579212337732]],[[0.063017323613167,-0.0026670077349991,-0.0035269695799798],[0.010497794486582,-0.032346282154322,0.046413950622082],[-0.0328488945961,-0.04763089120388,0.011536793783307]],[[0.020645963028073,-0.017494874075055,0.012924704700708],[-0.036043670028448,-0.0096623227000237,0.015410865657032],[0.035227593034506,-0.044068247079849,0.014451465569437]],[[0.028902666643262,0.0043847383931279,0.037282153964043],[0.025391608476639,0.067792855203152,-0.00030356936622411],[-0.050853464752436,0.0045740534551442,0.016746593639255]],[[-0.013133981265128,0.025285080075264,-0.026354394853115],[-0.054031427949667,0.056199852377176,0.035533249378204],[0.032844435423613,-0.030188668519258,-0.022409314289689]],[[0.030206920579076,0.017382141202688,0.042691700160503],[-0.0089869434013963,-0.0083834817633033,0.044288795441389],[-0.052492812275887,-0.039051461964846,-0.047385331243277]],[[-0.011027230881155,-7.5812109571416e-05,0.0061574522405863],[0.017979612573981,-0.021109892055392,0.018696889281273],[-0.028339827433228,0.021213384345174,0.0033431991469115]],[[0.0021151334512979,0.033813003450632,0.059635397046804],[-0.057943478226662,0.056355163455009,-0.076481901109219],[0.0094772214069963,-0.0088543184101582,-0.022429810836911]],[[-0.090228162705898,-0.073297724127769,-0.12568393349648],[-0.12021995335817,-0.0964435338974,-0.023957846686244],[-0.13705311715603,0.016269063577056,-0.17708878219128]],[[0.052581373602152,0.00065454776631668,0.062627159059048],[-0.064951650798321,-0.041192755103111,-0.04108178243041],[0.00023311482800636,-0.0040856529958546,0.015056701377034]],[[-0.003329936414957,0.0082246484234929,0.017231348901987],[-0.03404751047492,0.028522908687592,-0.005363866686821],[-0.0069731804542243,-0.031606048345566,0.012273597531021]],[[0.049392744898796,-0.0028050451073796,-0.02494503185153],[-0.00085300678620115,0.0071321544237435,0.017425836995244],[-0.016310295090079,0.00034525585942902,-0.011489606462419]],[[0.064174190163612,-0.012253751046956,-0.031933154910803],[0.046741507947445,-0.030458623543382,-0.011179566383362],[-0.061448760330677,-0.0083471797406673,0.038957219570875]],[[0.0094827227294445,-0.019927650690079,-0.00014075700892136],[0.01849627494812,-0.048981044441462,-0.0034822998568416],[0.012995129451156,0.010276318527758,0.012340409681201]],[[-0.023185547441244,-0.11609341949224,-0.078262269496918],[-0.21659642457962,-0.13002395629883,-0.068347811698914],[-0.046625807881355,-0.068473860621452,-0.073077999055386]],[[-0.023932380601764,0.049566619098186,0.026930490508676],[-0.026508526876569,-0.024374604225159,-0.059348996728659],[-0.041914768517017,0.028773358091712,0.026726234704256]],[[0.048401821404696,-0.088390454649925,0.020353689789772],[0.0077249673195183,0.042566157877445,-0.042285460978746],[0.021415198221803,-0.03787737339735,0.033492121845484]],[[-0.023116020485759,0.043222922831774,-0.13009013235569],[0.024214437231421,0.02644957229495,0.044336643069983],[0.011582560837269,-0.028673173859715,0.023177061229944]],[[0.014414716511965,-0.063591651618481,-0.026435423642397],[-0.030627036467195,0.07640827447176,-0.017340481281281],[-0.0049537634477019,-0.0026501095853746,0.031601462513208]],[[0.014617542736232,-0.0092659201472998,-0.0026247426867485],[-0.068577513098717,0.050224654376507,0.11815624684095],[-0.1184029430151,-0.014257782138884,-0.017920652404428]],[[0.0070322528481483,-0.092912219464779,0.01625812985003],[-0.017129596322775,0.00499925063923,0.034449081867933],[-0.024969117715955,-0.011911028064787,0.055784352123737]],[[-0.092400826513767,-0.057117082178593,-0.0086078010499477],[-0.00090764206834137,0.089478813111782,0.1069825142622],[-0.019966011866927,0.0061557837761939,0.0078785782679915]],[[0.011520715430379,0.012237765826285,0.016175759956241],[0.045101150870323,-0.063722670078278,0.017183238640428],[-0.0047638970427215,-0.023444375023246,-0.029353411868215]],[[0.036334775388241,0.058948382735252,0.016040096059442],[0.024525916203856,-0.067879289388657,-0.00012784110731445],[0.026431489735842,-0.12256697565317,0.023922635242343]],[[-0.079381890594959,0.020813697949052,0.0336500890553],[0.014668054878712,-0.026428915560246,0.014345367439091],[0.020163960754871,5.3429444960784e-05,0.019151717424393]],[[0.021835062652826,-0.049534898251295,0.0062395343557],[-0.015385963022709,0.0083824871107936,-0.027503540739417],[0.010371416807175,0.037906471639872,0.024868573993444]],[[0.027021439746022,0.040808979421854,-0.0051539591513574],[-0.029359333217144,-0.019566502422094,-0.00027214243891649],[-0.0014465658459812,-0.028449226170778,-0.012244120240211]],[[0.021193910390139,0.048175893723965,-0.038604706525803],[-0.0003338988753967,-0.02791715785861,-0.036814820021391],[-0.00031904163188301,-0.061411194503307,0.1042472794652]],[[-0.0075190607458353,0.036934621632099,0.00045568009954877],[-0.040183905512094,-0.00620820466429,0.0086819231510162],[0.0055591417476535,0.0063671953976154,-0.016730280593038]]],[[[-0.036044005304575,-0.06777735799551,-0.012350078672171],[-0.036139480769634,0.10889239609241,0.089012734591961],[0.033893421292305,-0.10237143933773,0.040448237210512]],[[0.029197312891483,-0.035294938832521,0.11884584277868],[0.021542673930526,0.078516967594624,0.0009237973135896],[-0.1078370064497,-0.019202316179872,-0.06182187050581]],[[0.050639390945435,0.084547452628613,0.027136392891407],[-0.027608033269644,0.11457804590464,0.061202693730593],[-0.0025452992413193,0.15263301134109,0.012719229795039]],[[-0.069476075470448,-0.013861872255802,0.088153406977654],[-0.08652451634407,0.043895576149225,-0.0016698066610843],[-0.023806240409613,-0.10370541363955,0.078263841569424]],[[0.018141712993383,0.003583200275898,-0.029315829277039],[-0.027200307697058,-0.070138603448868,0.14954243600368],[-0.015547295100987,-0.11013200879097,-0.021922577172518]],[[0.069123297929764,0.021176442503929,-0.11003910750151],[-0.045529019087553,-0.041513733565807,-0.13151440024376],[-0.019821150228381,0.0060098287649453,0.056038826704025]],[[0.052144404500723,-0.044098626822233,-0.032585825771093],[0.073435664176941,-0.090888023376465,0.029360285028815],[0.057294107973576,0.088846422731876,0.013943189755082]],[[0.028970260173082,0.016208071261644,-0.017544416710734],[-0.071760557591915,-0.076044261455536,-0.14169034361839],[0.06222053617239,-0.15326891839504,-0.079280063509941]],[[0.03727787360549,0.11868761479855,-0.040112566202879],[-0.011534739285707,0.004768576938659,-0.054081290960312],[-0.027388382703066,-0.0022959811612964,-0.0080688521265984]],[[0.018358137458563,0.063978232443333,0.1091975197196],[0.08829902857542,0.0093703307211399,0.0045887636952102],[0.010147078894079,-0.0775987803936,-0.081977739930153]],[[-0.063155673444271,0.010696732439101,-0.057041633874178],[0.014448240399361,-0.13261069357395,0.13223804533482],[0.07638293504715,0.0013847089139745,0.12301754951477]],[[-0.06227570772171,-0.13715128600597,-0.00957743357867],[0.010431378148496,-0.060638636350632,0.0696627125144],[0.017481883987784,0.065114319324493,0.11212475597858]],[[-0.090019442141056,0.064933761954308,-0.030061233788729],[-0.028351908549666,0.01968072168529,0.14774303138256],[0.011485476046801,0.057689350098372,0.090756967663765]],[[0.12095648050308,0.015985552221537,-0.01061437651515],[-0.016610451042652,-0.051729127764702,-0.1013510376215],[0.0024513341486454,-0.023975521326065,0.1290520876646]],[[0.0058991000987589,0.020152507349849,-0.077538691461086],[-0.036460630595684,0.060694824904203,0.066560067236423],[0.097514130175114,0.10315466672182,-0.060014113783836]],[[0.11953086405993,0.14899745583534,-0.064782254397869],[-1.5001860447228e-06,-0.08249220252037,-0.063809610903263],[-0.22144241631031,0.062699221074581,-0.087427772581577]],[[-0.030397653579712,-0.065614260733128,-0.021093701943755],[-0.11652196198702,-0.12122421711683,0.12229686230421],[0.046432506293058,0.0049618179909885,0.013339859433472]],[[-0.0088139744475484,-0.0017746064113453,0.046744503080845],[-0.093430534005165,0.04705548658967,0.11828802525997],[0.0038383835926652,0.040725115686655,0.078446306288242]],[[0.082696221768856,-0.10855144262314,-0.016400493681431],[-0.055150236934423,0.066255144774914,-0.068372175097466],[-0.015901759266853,-0.016197491437197,0.080547966063023]],[[0.11248603463173,0.017889462411404,0.021716132760048],[-0.043407987803221,0.07524711638689,-0.17533129453659],[0.16262282431126,-0.16716620326042,0.17641405761242]],[[-0.045377429574728,-0.015096633695066,0.01202679798007],[0.0076813288033009,0.028649412095547,0.036498013883829],[0.019097033888102,0.085681021213531,-0.030286561697721]],[[0.027230368927121,0.028195772320032,-0.029198415577412],[-0.037684515118599,-0.12552970647812,0.036723736673594],[-0.041236136108637,-0.025180330500007,0.092209905385971]],[[0.059802573174238,-0.0095257181674242,0.023914830759168],[-0.09463831782341,0.098931953310966,-0.0016257135430351],[0.051449835300446,0.082890242338181,0.095762334764004]],[[-0.01767030544579,0.020090023055673,-0.038625076413155],[-0.051766518503428,0.024349678307772,0.066017016768456],[0.061925835907459,0.076772563159466,0.077424809336662]],[[0.067463994026184,0.061773244291544,0.079293124377728],[-0.059015654027462,-0.023259723559022,0.055924899876118],[0.0023803296498954,-0.068514540791512,0.016123505309224]],[[0.044520437717438,0.039123725146055,-0.055704109370708],[-0.016133980825543,-0.00049555359873921,0.094788119196892],[-0.16480112075806,0.061518020927906,0.10087875276804]],[[-0.061457011848688,-0.055693730711937,0.11230473220348],[0.043036948889494,0.033012099564075,0.051535367965698],[-0.062068160623312,-0.015298779122531,0.08744154125452]],[[0.056211348623037,0.097515389323235,-0.04784208163619],[0.091457478702068,0.041524481028318,0.024476453661919],[-0.11502777040005,-0.1273590028286,-0.075416453182697]],[[-0.010145856067538,-0.042884930968285,0.069953806698322],[-0.034085400402546,-0.00085106818005443,-0.017866272479296],[-0.13844892382622,-0.1282392591238,0.019829800352454]],[[-0.10885107517242,0.064891442656517,-0.015786873176694],[0.090843796730042,0.083560965955257,0.16357810795307],[-0.01235281303525,0.043606750667095,0.13859996199608]],[[0.041550256311893,0.03052949346602,-0.087982103228569],[0.068108670413494,-0.07439998537302,0.060291383415461],[0.01317719463259,0.039439778774977,-0.032393164932728]],[[-0.06413883715868,0.083379924297333,0.039845205843449],[0.12414117157459,0.075964733958244,0.07019842416048],[-0.17325411736965,-0.12161471694708,-0.033914685249329]],[[-0.051274951547384,-0.056585423648357,0.066612936556339],[0.1538912653923,0.1357214897871,0.0035794931463897],[0.030880190432072,0.05281375721097,0.031188264489174]],[[-0.0093740727752447,-0.073451764881611,-0.059631571173668],[-0.12151499837637,0.0063698445446789,0.040466878563166],[-0.083541415631771,-0.0015339276287705,-0.029594698920846]],[[-0.070816807448864,0.11293048411608,-0.058045815676451],[0.049495041370392,-0.006502952426672,0.018067197874188],[-0.063370682299137,-0.043236870318651,-0.022210428491235]],[[-0.0041423989459872,-0.0037163202650845,0.035924933850765],[-0.010299013927579,0.016072738915682,-0.061599463224411],[0.015942553058267,0.023390728980303,0.063295014202595]],[[0.034176409244537,0.051149126142263,0.0774881914258],[0.074006795883179,-0.021601038053632,-0.077962018549442],[-0.020259538665414,-0.001054844702594,0.099279664456844]],[[0.046309683471918,0.031642641872168,-0.025770829990506],[-0.11741562187672,-0.074529141187668,0.07381833344698],[0.21361507475376,0.0040055913850665,-0.08172781765461]],[[0.013570809736848,-0.035024583339691,-0.061698656529188],[0.0061682360246778,-0.13144069910049,-0.15881009399891],[-0.033595897257328,-0.027929030358791,-0.17456151545048]],[[-0.036801405251026,-0.00045617471914738,0.066434539854527],[0.055065255612135,0.083821289241314,-0.045482575893402],[0.091977573931217,0.034393981099129,-0.13617467880249]],[[-0.098222367465496,0.05838518217206,-0.07536505907774],[-0.16207312047482,0.062998622655869,0.077492587268353],[-0.01868711411953,-0.035345833748579,0.10253584384918]],[[-0.095695085823536,0.043430406600237,0.011896842159331],[0.063143663108349,0.0042564715258777,-0.0213064532727],[-0.019820600748062,-0.031898949295282,0.16281957924366]],[[-0.079447716474533,0.0014006131095812,0.11800719797611],[0.0278206076473,-0.094751447439194,0.14942093193531],[-0.0023322985507548,0.010319770313799,0.15317311882973]],[[-0.061722494661808,-0.053152326494455,0.039742644876242],[-0.029562745243311,0.064941585063934,-0.0081329755485058],[-0.045640457421541,-0.027646305039525,0.10694882273674]],[[0.061019748449326,-0.024871781468391,-0.028696738183498],[-0.059959083795547,0.051431972533464,0.00073947780765593],[-0.047437828034163,-0.043633099645376,0.045052018016577]],[[0.073468685150146,-0.0090067982673645,0.028993627056479],[-0.0066161211580038,0.0070611131377518,-0.003166627837345],[0.048639141023159,0.028744205832481,-0.11130729317665]],[[0.015568608418107,-0.029086833819747,0.034056831151247],[-0.025438642129302,-0.046811781823635,-0.061710935086012],[0.078494615852833,-0.061315376311541,0.12466747313738]],[[-0.053531859070063,0.067487940192223,-0.022351069375873],[-0.015381356701255,-0.11480395495892,-0.019747385755181],[0.030603356659412,0.012436685152352,0.017422871664166]],[[0.012821095064282,-0.079498365521431,-0.04318256303668],[0.046331521123648,0.14556197822094,0.058438569307327],[0.020487394183874,-0.070057339966297,0.057946003973484]],[[-0.085161805152893,0.0061181499622762,0.039330281317234],[0.0088038882240653,0.037251763045788,0.022078303620219],[0.021041490137577,0.0046163871884346,0.040166459977627]],[[-0.27690753340721,-0.165551841259,-0.13258737325668],[-0.23376339673996,-0.090188108384609,-0.024985447525978],[-0.058318886905909,-0.11630243062973,-0.016049290075898]],[[0.12077520042658,-0.067679338157177,-0.031519167125225],[0.027609810233116,0.065618075430393,-0.047652762383223],[0.20264680683613,0.039466626942158,0.080317497253418]],[[0.22882454097271,0.042359564453363,-0.10984671115875],[-0.032092999666929,0.027671851217747,-0.073561325669289],[-0.048812333494425,-0.0012459637364373,-0.052832260727882]],[[-0.0064979926683009,-0.084113083779812,-0.018673876300454],[0.16753195226192,0.05661192163825,-0.037376120686531],[0.11579259485006,-0.020879181101918,-0.013156909495592]],[[-0.039394378662109,-0.034571703523397,0.048309162259102],[-0.013992699794471,-0.064647421240807,-0.028810394927859],[0.022004110738635,-0.023016160354018,0.028507255017757]],[[-0.077030085027218,-0.078675046563148,0.027715170755982],[-0.029727227985859,0.03140726685524,0.05224034935236],[-0.16304399073124,-0.18083213269711,-0.064910404384136]],[[0.061865407973528,0.040546093136072,-0.050792176276445],[-0.012428469955921,0.038722492754459,-0.18587474524975],[-0.1222128495574,0.030937742441893,-0.083763599395752]],[[-0.12142314761877,-0.026801461353898,0.031507819890976],[-0.013721059076488,0.069065421819687,0.20174191892147],[-0.10415103286505,-0.02311528287828,0.089248687028885]],[[-0.044828038662672,0.020175281912088,-0.001080235466361],[-0.18324702978134,-0.054020587354898,0.16628250479698],[0.053212929517031,-0.0037464131601155,-0.04741395264864]],[[0.033187594264746,-0.042686883360147,-0.0070838676765561],[0.0016533235320821,-0.12519925832748,0.0062103867530823],[0.029169145971537,-0.019957443699241,0.10229217261076]],[[-0.033777218312025,-0.0080531500279903,0.056752681732178],[-0.032053131610155,-0.038217075169086,0.0085982829332352],[0.13991931080818,-0.047675207257271,0.15728384256363]],[[-0.087088957428932,0.095965333282948,0.066658042371273],[0.00061264401301742,0.063726700842381,-0.047637823969126],[-0.049588426947594,0.064225390553474,0.012798148207366]],[[-0.0088512869551778,-0.048728924244642,-0.010998817160726],[-0.076224260032177,0.00072256661951542,0.0095245977863669],[-0.014570654369891,0.015544495545328,0.019633105024695]],[[0.0082566384226084,-0.015815125778317,-0.21330338716507],[0.035506296902895,0.026191687211394,-0.0025028127711266],[0.080913513898849,0.10046180337667,0.0068885707296431]]],[[[-0.064785718917847,0.1064445078373,-0.062959462404251],[0.064416505396366,-0.049053464084864,0.070892035961151],[0.06945114582777,0.044041898101568,-0.079668626189232]],[[-0.11489672958851,0.056177720427513,-0.043281748890877],[0.07870090007782,0.00061946013011038,-0.065810307860374],[0.032463643699884,0.0023264896590263,-0.095289625227451]],[[0.06819461286068,0.10936014354229,-0.056963134557009],[-0.007189342752099,-0.010768864303827,-0.061331685632467],[0.012275650165975,-0.0038765305653214,0.095286980271339]],[[-0.081494569778442,-0.016724236309528,-0.0014988778857514],[-0.058160699903965,0.028991270810366,-0.017798183485866],[0.076070688664913,-0.11776682734489,-0.02582878805697]],[[0.0037968687247485,-0.033571172505617,0.086664587259293],[-0.02102485857904,0.0037848046049476,0.12499346584082],[-0.061757892370224,0.066435098648071,0.10850568860769]],[[0.001302577322349,0.050961021333933,0.040411926805973],[0.083743646740913,-0.0011183824390173,-0.0062396600842476],[0.17077150940895,0.049791902303696,-0.045259941369295]],[[-0.085352420806885,0.018373845145106,0.014547064900398],[0.020856404677033,-0.02542238496244,-0.13381646573544],[0.13101634383202,-0.038606386631727,-0.024608133360744]],[[-0.11127052456141,-0.076977618038654,-0.028579626232386],[0.046757746487856,0.0032573326025158,0.096156112849712],[0.039399359375238,0.072570092976093,-0.016202369704843]],[[0.041394200176001,0.0018687079427764,-0.05853483080864],[-0.0055671967566013,-0.013113655149937,-0.014569199644029],[0.080674558877945,0.026546042412519,-0.063312612473965]],[[-0.056855820119381,0.099951736629009,0.06392639875412],[0.063551992177963,0.1038730442524,0.0008895214414224],[0.035810545086861,-0.014040159061551,-0.025355203077197]],[[-0.19729532301426,0.16061526536942,-0.013180662877858],[-0.034353099763393,-0.096429236233234,0.018807081505656],[0.016245130449533,-0.0085278293117881,0.041609402745962]],[[-0.19508363306522,-0.099992819130421,-0.021513683721423],[-0.16734278202057,-0.1424772143364,-0.1149834766984],[-0.1061575114727,-0.23569709062576,-0.20759057998657]],[[0.007401576731354,-0.025753021240234,0.0033558530267328],[-0.0088172554969788,0.022410843521357,-0.025759894400835],[-0.023117929697037,-0.061770811676979,-0.031371112912893]],[[0.047765359282494,0.063097141683102,0.065871022641659],[0.035391461104155,0.0015553691191599,0.049706406891346],[-0.042273007333279,0.042725708335638,0.060039583593607]],[[0.063886553049088,0.129704028368,0.021686509251595],[-0.053410518914461,0.025313014164567,0.036353137344122],[0.020231291651726,-0.063447244465351,-0.13141375780106]],[[-0.12358051538467,0.026936143636703,0.016456285491586],[0.010379364714026,-0.0057830326259136,0.081491596996784],[-0.17467890679836,0.11283569037914,0.055652402341366]],[[-0.10338026285172,0.19664819538593,0.069881990551949],[-0.0058972528204322,-0.10659518092871,0.14084751904011],[-0.027292871847749,-0.049921374768019,-0.036549065262079]],[[-0.061701875180006,0.06912587583065,0.080157026648521],[-0.059136942028999,-0.048184081912041,-0.040436718612909],[-0.089105643332005,0.026893706992269,-0.058323908597231]],[[-0.00026902602985501,-0.0068846950307488,-0.085427045822144],[0.11440228670835,-0.085507936775684,-0.071978002786636],[0.061844762414694,0.16733711957932,-0.094952471554279]],[[0.1319143474102,-0.011838497593999,0.019336126744747],[-0.067850857973099,0.064711518585682,-0.049221068620682],[-0.067871384322643,-0.0053705568425357,0.056552484631538]],[[-0.17305868864059,0.024721097201109,0.014408363960683],[-0.034096498042345,-0.013055376708508,-0.15341441333294],[-0.015888839960098,-0.048822909593582,0.019498443230987]],[[0.076709032058716,0.057771388441324,0.043025348335505],[0.025297677144408,0.11586815863848,0.050375465303659],[0.044070344418287,-0.039571318775415,-0.042327284812927]],[[0.0083068674430251,-0.04305237159133,0.023579563945532],[-0.0063330987468362,0.10485795140266,-0.091901853680611],[-0.000835117243696,0.061387069523335,0.12148433923721]],[[-0.036227148026228,-0.052487917244434,0.01788722909987],[-0.078275591135025,-0.21933895349503,0.010363006964326],[-0.02851801738143,-0.11400190740824,-0.012855106033385]],[[-0.051118582487106,-0.03777589276433,0.017936313524842],[0.029691010713577,0.049488388001919,-0.028240283951163],[-0.051264006644487,-0.19658431410789,-0.068387113511562]],[[0.023130422458053,-0.035320565104485,0.0059270383790135],[0.12770621478558,0.026280196383595,-0.083698868751526],[0.046379592269659,0.055711418390274,-0.0084326351061463]],[[0.17028424143791,-0.0029110277537256,-0.062119118869305],[0.043703835457563,0.01697582937777,-0.041326817125082],[0.094838052988052,-0.12881176173687,0.025953764095902]],[[0.16586707532406,-0.10956533253193,0.091500677168369],[0.064630702137947,-0.020126350224018,0.015305342152715],[-0.060737021267414,0.050924338400364,0.098623894155025]],[[-0.18687057495117,0.099121235311031,0.036752451211214],[0.027828149497509,-0.016097046434879,0.029931513592601],[0.10438571125269,0.0036356004420668,0.077867239713669]],[[0.031350754201412,-0.071139305830002,-0.019366113469005],[0.073638051748276,-0.10268773138523,0.032324936240911],[-0.015054295770824,-0.010066322050989,0.087582781910896]],[[0.014284101314843,-0.054033525288105,-0.076016455888748],[-0.085461333394051,-0.17041040956974,2.1187479433138e-05],[-0.073751799762249,-0.18422600626945,-0.024865915998816]],[[-0.0031160647049546,-0.21685695648193,-0.11947251111269],[0.076937213540077,0.14465241134167,-0.066080443561077],[0.063014440238476,0.019382489845157,-0.00090621167328209]],[[0.034917168319225,0.04516576230526,-0.042429782450199],[-0.11866369843483,-0.074926622211933,0.02141877822578],[-0.0064163263887167,0.14362376928329,0.059400908648968]],[[-0.0019213423365727,0.015024406835437,0.026548190042377],[0.14871163666248,0.061011027544737,-0.12977041304111],[0.012177529744804,-0.023106312379241,-0.14244776964188]],[[-0.0095612220466137,-0.0093174185603857,0.060499958693981],[0.022746160626411,-0.03914650157094,-0.0010979463113472],[-0.016195926815271,0.082030057907104,-0.013962597586215]],[[-0.020210893824697,-0.1129157319665,0.083265922963619],[0.074347116053104,-0.043892700225115,-0.001622584532015],[-0.10220574587584,-0.036195233464241,0.029683167114854]],[[0.053534530103207,-0.04742107540369,0.013166329823434],[0.12067334353924,-0.021666178479791,-0.0016873042332008],[-0.02931958809495,0.022722564637661,-0.013662055134773]],[[0.14461970329285,0.12841604650021,0.015787392854691],[0.012463483959436,-0.0043928739614785,0.018906461074948],[0.038561727851629,0.02340735681355,0.0077313068322837]],[[0.042641099542379,-0.041989725083113,0.016357893124223],[-0.01755372621119,-0.097150482237339,0.028682081028819],[0.029226955026388,0.032554671168327,-0.11344771832228]],[[0.059722267091274,-0.13111972808838,-0.064298532903194],[0.16718308627605,0.01055150013417,0.045630026608706],[0.0038679069839418,-0.032596714794636,0.050919562578201]],[[0.079700969159603,-0.057416040450335,0.0033500005956739],[-0.068838447332382,-0.039883200079203,-0.099051937460899],[-0.039661388844252,-0.030437706038356,-0.10921394079924]],[[0.028686130419374,0.0041007045656443,0.033120691776276],[0.00057500472757965,0.057832255959511,0.073137000203133],[-0.069968655705452,-0.058494538068771,0.0024735783226788]],[[0.021281659603119,0.0044323639012873,0.12321946769953],[-0.03336488455534,0.017636086791754,-0.095100224018097],[-0.07139541208744,-0.083559848368168,0.020495213568211]],[[0.047680180519819,0.038591600954533,0.086442321538925],[-0.054402839392424,-0.034414179623127,0.0045646452344954],[-0.01907829195261,-0.037253737449646,-0.063811250030994]],[[0.057560972869396,0.0030202236957848,0.0082194861024618],[-0.092312507331371,-0.014693921431899,-0.073829747736454],[-0.085422016680241,-0.19183401763439,-0.11246311664581]],[[0.12921576201916,0.10501101613045,-0.031542029231787],[-0.013296226039529,-0.00053410441614687,0.011962057091296],[-0.014081262983382,-0.023938236758113,-0.030546054244041]],[[-0.1197499409318,0.07573676854372,0.00051842181710526],[0.023470558226109,-0.075471125543118,0.060607325285673],[-0.11704559624195,0.0084852417930961,-0.021565496921539]],[[-0.036408148705959,0.064749345183372,-0.10774875432253],[0.039669707417488,0.026849905028939,0.045315496623516],[0.014391695149243,-0.098107621073723,-0.053433801978827]],[[-0.11119857430458,-0.026270061731339,-0.022759366780519],[-0.13239252567291,0.061972018331289,-0.08578522503376],[-0.008586136624217,-0.021056341007352,-0.10127664357424]],[[-0.085072860121727,0.099112652242184,0.016105517745018],[-0.027002459391952,0.063237302005291,0.020186537876725],[-0.12161669135094,0.030909061431885,0.031286749988794]],[[0.013608457520604,0.082354687154293,0.013972382061183],[-0.013509870506823,-0.078762538731098,-0.050945270806551],[-0.17457692325115,-0.13730089366436,-0.060510955750942]],[[0.00070771423634142,0.09687689691782,0.040925290435553],[0.043436162173748,0.032067466527224,-0.051697369664907],[-0.082440137863159,0.026827480643988,-0.026871735230088]],[[-0.016373414546251,-0.012982628308237,0.18535949289799],[-0.030551513656974,0.052405171096325,0.10190650820732],[-0.034639984369278,0.069583237171173,0.099661283195019]],[[-0.079318799078465,-0.1056269556284,0.046477477997541],[-0.035577144473791,-0.081749185919762,-0.062428072094917],[-0.040645897388458,-0.18867114186287,-0.18717367947102]],[[0.08800732344389,0.058561854064465,-0.037945721298456],[-0.056264527142048,-0.029570676386356,0.093697249889374],[-0.092626124620438,-0.20489466190338,-0.10750216990709]],[[-0.01215985044837,-0.066160142421722,0.10729948431253],[0.091310650110245,-0.13001072406769,0.024380289018154],[-0.071809984743595,-0.13404525816441,-0.080792106688023]],[[-0.1108473315835,-0.087824009358883,-0.032364156097174],[0.02972387522459,0.095484599471092,-0.042333975434303],[-0.054874893277884,0.074678517878056,-0.070431545376778]],[[-0.092307582497597,0.059310607612133,-0.033705189824104],[-0.036474883556366,-0.027946772053838,0.080340072512627],[0.021714735776186,0.0035083321854472,0.03014812618494]],[[-0.074952885508537,-0.0086651863530278,0.050306469202042],[0.072515219449997,-0.071273423731327,-0.027844889089465],[0.11121819913387,0.10241270065308,-0.02739698253572]],[[0.05907866358757,0.11733788996935,0.16010315716267],[-0.048573601990938,0.018891835585237,0.058689687401056],[0.022456340491772,0.0026562758721411,-0.062109269201756]],[[0.09851461648941,-0.040795624256134,-0.041890442371368],[-0.09743220359087,-0.086362943053246,0.086218953132629],[-0.075865246355534,-0.16037206351757,-0.15102623403072]],[[0.062449477612972,0.026539493352175,-0.0531638674438],[-0.051035534590483,0.037235774099827,-0.021249983459711],[-0.019298415631056,0.036223158240318,-0.0066387341357768]],[[0.11562974750996,0.040618341416121,0.032380390912294],[0.042267255485058,-0.02598899975419,-0.065322712063789],[-0.038011856377125,0.010979195125401,-0.060520086437464]],[[-0.47023025155067,-0.032713122665882,0.07347496598959],[-0.20403224229813,0.1596197783947,0.041542734950781],[-0.028366172686219,-0.1202789247036,0.06157173961401]]],[[[-0.0048104277811944,0.058862630277872,-0.043366998434067],[-0.010609459131956,0.011796717531979,-0.098148263990879],[0.0034011125098914,0.016925133764744,-0.12643572688103]],[[0.069278478622437,-0.07437451928854,0.050633210688829],[0.039555005729198,0.031284384429455,0.0061848764307797],[0.112249314785,-0.04138121381402,0.049396794289351]],[[-0.040682669728994,-0.02585382387042,0.029520383104682],[0.045437056571245,-0.022686654701829,0.0096710026264191],[0.092499442398548,0.089182704687119,0.010470314882696]],[[-0.065192446112633,-0.046765461564064,-0.025079324841499],[-0.12001740187407,-0.085315883159637,-0.066453583538532],[-0.0294442884624,0.057005498558283,0.18092092871666]],[[-0.043789971619844,0.0084015363827348,-0.044673658907413],[-0.017243634909391,-0.040946017950773,-0.1066112741828],[0.14025670289993,-0.028244329616427,-0.040452014654875]],[[-0.0050190673209727,0.086762458086014,-0.066779799759388],[0.0086683267727494,-0.01483457442373,-0.028416881337762],[0.2047766149044,0.0070170015096664,0.005871300585568]],[[0.014933691360056,0.1306636929512,0.038125563412905],[-0.10759260505438,-0.064714521169662,0.16170936822891],[-0.013187856413424,0.062903650105,0.041031431406736]],[[0.024682795628905,0.06722978502512,-0.095780819654465],[0.045246556401253,0.088970795273781,-0.11132379621267],[0.017812468111515,-0.025359071791172,-0.20908163487911]],[[-0.051037486642599,0.030258946120739,0.067429542541504],[-0.041676931083202,-0.034115966409445,0.059152409434319],[-0.0977853089571,-0.011444775387645,0.054520137608051]],[[-0.15131996572018,-0.26170861721039,-0.12152275443077],[0.013404903933406,-0.15731959044933,-0.045735754072666],[-0.15211218595505,-0.11651184409857,-0.05801709741354]],[[-0.0052951672114432,0.16034147143364,-0.0018037355039269],[-0.097689539194107,0.07445815205574,0.0056926561519504],[-0.10523369908333,-0.045896802097559,0.03053617477417]],[[-0.082620359957218,-0.011663138866425,-0.018846172839403],[-0.15297339856625,-0.10827507823706,0.06739729642868],[-0.11745536327362,0.028083028271794,0.049538966268301]],[[-0.020920813083649,-0.02458118647337,0.04492099583149],[-0.097527742385864,-0.0067783766426146,0.053108416497707],[0.078519642353058,0.057008020579815,0.038482468575239]],[[-0.10384709388018,-0.15688301622868,0.03826904669404],[0.053061760962009,0.0098226238042116,0.071280963718891],[0.0088618826121092,0.067374423146248,0.10497594624758]],[[-0.057289097458124,-0.030321763828397,0.13725942373276],[0.00060096418019384,0.039175275713205,0.19944453239441],[0.055989220738411,0.009539183229208,0.13118627667427]],[[-0.028099715709686,0.11204185336828,-0.079382084310055],[0.068663872778416,0.050868228077888,-0.040221113711596],[-0.023130301386118,0.030138747766614,-0.17567579448223]],[[-0.10083279758692,-0.0010744007304311,0.071020811796188],[-0.11623519659042,-0.0067535075359046,0.011593305505812],[-0.072682686150074,-0.00065213604830205,-0.024040397256613]],[[-0.019803956151009,-0.030446754768491,-0.036515638232231],[-0.053641300648451,-0.0062642386183143,0.051649354398251],[-0.18209612369537,-0.028234079480171,0.21064704656601]],[[0.10171451419592,-0.037431702017784,-0.014020936563611],[0.057082962244749,0.11220343410969,-0.089183859527111],[0.066161699593067,0.099683374166489,-0.036656875163317]],[[0.043759990483522,0.010177516378462,-0.014461632817984],[-0.014964557252824,-0.033577404916286,-0.058726392686367],[0.067167922854424,-0.12524081766605,-0.1629381775856]],[[-0.20316725969315,-0.012882699258626,-0.037806879729033],[-0.015836767852306,0.044345553964376,0.0055530471727252],[-0.11174682527781,-0.013588179834187,-0.1095894947648]],[[-0.11316417902708,-0.14446870982647,-0.016414748504758],[-0.14126254618168,-0.10061287879944,-0.10417761653662],[-0.12108547240496,-0.13633166253567,0.012030611746013]],[[-0.012097230181098,-0.15805904567242,-0.014905243180692],[-0.03598690778017,0.039254952222109,0.0068174190819263],[0.011330917477608,0.069151476025581,0.22907929122448]],[[-0.10252087563276,-0.03651200607419,0.067483074963093],[-0.31337451934814,-0.020065281540155,0.10601998865604],[-0.17733488976955,0.055867560207844,0.21927213668823]],[[0.0024075743276626,-0.082590684294701,-0.053197406232357],[-0.093840695917606,0.057359717786312,0.0060503287240863],[-0.1201288998127,0.10271495580673,0.075493082404137]],[[-0.12365774810314,0.043188605457544,-0.1338556855917],[0.083871148526669,0.046428211033344,-0.04710029810667],[0.043031193315983,-0.024175008758903,0.047222033143044]],[[-0.065984196960926,-0.12067553400993,-0.066378809511662],[-0.035135198384523,0.018973419442773,0.057698242366314],[-0.145103469491,-0.03279222920537,0.049539960920811]],[[-0.13190200924873,-0.035410806536674,-0.0458118095994],[-0.015641205012798,0.011389078572392,-0.17285980284214],[-0.098675191402435,0.089507378637791,-0.062938451766968]],[[-0.080625705420971,0.010112885385752,0.056072968989611],[0.081409350037575,0.035696163773537,0.045292865484953],[-0.0011345178354532,0.14734877645969,0.067507907748222]],[[-0.060828547924757,-0.037217620760202,-0.029938530176878],[0.0035603626165539,0.073267087340355,0.032575700432062],[-0.087813481688499,0.065803594887257,0.056448891758919]],[[-0.13736751675606,-0.10452354699373,0.051172096282244],[-0.18023161590099,-0.0085755921900272,0.023861289024353],[-0.073924832046032,0.065050907433033,-0.087807849049568]],[[-0.062134627252817,-0.030316941440105,0.028416596353054],[0.02950120344758,-0.0056067048572004,-0.0058771520853043],[-0.11377873271704,0.10504269599915,-0.037141460925341]],[[0.08790560811758,0.043635852634907,-3.9062229916453e-05],[0.0077522727660835,0.021804189309478,0.11933631449938],[-0.14384938776493,0.070881828665733,0.099551565945148]],[[0.034496072679758,-0.025473773479462,-0.038644164800644],[-0.020536486059427,-0.093410044908524,-0.012707900255919],[-0.065285205841064,-0.040560245513916,0.13561864197254]],[[-0.11357536166906,-0.013763193972409,-0.056505654007196],[-0.11693152785301,0.12204580008984,0.10355151444674],[0.057744052261114,0.076056927442551,-0.0051746610552073]],[[0.026257468387485,-0.040496442466974,0.060018688440323],[0.026757458224893,0.060712777078152,0.069419607520103],[-0.023473870009184,0.078461520373821,0.069756597280502]],[[-0.078188478946686,-0.09359610080719,-0.058078836649656],[-0.057612847536802,0.014761441387236,0.068149536848068],[-0.055653784424067,0.014503499493003,-0.0091371340677142]],[[0.09080296009779,0.033680554479361,0.031616371124983],[0.0078703099861741,0.022755613550544,0.15867626667023],[-0.048864301294088,0.048793762922287,-0.081379018723965]],[[-0.019911078736186,-0.030567487701774,-0.061300836503506],[-0.018090618774295,-0.060268234461546,0.0057818330824375],[-0.079206936061382,0.041531905531883,0.092994265258312]],[[0.050578240305185,-0.10142703354359,-0.14870591461658],[0.15400430560112,-0.037866678088903,-0.1395955234766],[-0.016105202957988,0.01077673304826,-0.2080242484808]],[[-0.12647134065628,0.053701933473349,0.020699672400951],[-0.014525414444506,0.03525834903121,-0.021859638392925],[-0.012562306597829,-0.045499138534069,-0.13675037026405]],[[-0.16610206663609,-0.0067075076512992,-0.012104192748666],[-0.040471401065588,-0.0782325938344,0.086651973426342],[0.070977225899696,0.11874189972878,0.23910239338875]],[[-0.12819489836693,-0.0028293617069721,0.021085077896714],[-0.045083209872246,-0.050940349698067,0.077831119298935],[0.18666198849678,0.016203669831157,-0.025180758908391]],[[0.0033981662709266,-0.047924097627401,-0.072797231376171],[-0.034130178391933,0.020121846348047,-0.034768659621477],[0.1074378117919,0.017586903646588,-0.0058895368129015]],[[-0.11199270188808,-0.11972447484732,-0.019181234762073],[-0.028074583038688,0.053167790174484,0.00028020673198625],[-0.050075773149729,-0.016678297892213,0.026463449001312]],[[-0.12428060919046,-0.05981882289052,-0.042204722762108],[-0.10218718647957,0.020065147429705,-0.03387875854969],[0.013753719627857,0.044241383671761,0.030074713751674]],[[-0.17521098256111,-0.032235115766525,0.00055649754358456],[0.047546498477459,0.0049776560626924,0.10891710221767],[0.073636092245579,-0.035645734518766,0.069311678409576]],[[-0.18801286816597,-0.0046527381055057,0.055380962789059],[-0.13186828792095,-0.017037825658917,-0.077640078961849],[-0.085870988667011,-0.14900568127632,-0.24268206954002]],[[-0.076143190264702,-0.035489112138748,0.055040489882231],[-0.034989438951015,0.090882010757923,-0.13424757122993],[0.005719902459532,0.005927577149123,-0.041895195841789]],[[0.063194252550602,-0.0036702188663185,-0.10029670596123],[0.095014818012714,0.01411203853786,-0.060974802821875],[0.11842397600412,0.023643894121051,-0.17226780951023]],[[0.076601937413216,-0.13429878652096,-0.059940215200186],[-0.0065208864398301,-0.066680587828159,0.020072057843208],[0.011679657734931,0.056630067527294,0.12705729901791]],[[-0.036963179707527,-0.056239329278469,0.038723971694708],[0.098383598029613,-0.049890279769897,0.083339661359787],[0.019260726869106,-0.01138901244849,0.12213961780071]],[[0.15702123939991,0.085120432078838,0.088338144123554],[0.10510905832052,-0.056108526885509,-0.0836316421628],[0.069119445979595,-0.084887497127056,-0.14649260044098]],[[0.24325287342072,0.11872360855341,0.12043309211731],[0.15725557506084,-0.075275018811226,0.12707713246346],[0.098239168524742,-0.019546799361706,-0.0052493782714009]],[[0.046437937766314,0.033402848988771,0.018065923824906],[0.033265683799982,-0.046949330717325,0.12567345798016],[0.13052478432655,0.035007406026125,0.016067188233137]],[[0.14590805768967,0.022708803415298,0.031898457556963],[0.087157696485519,0.01553341653198,-0.0049607935361564],[-0.019168104976416,-0.011653857305646,0.12206225097179]],[[-0.054026182740927,0.0013158411020413,0.045398816466331],[0.0036303075030446,0.093172967433929,0.097602777183056],[0.053574152290821,0.017597267404199,-0.019632449373603]],[[-0.096913665533066,-0.11710203438997,-0.092061169445515],[0.072229258716106,-0.091089569032192,0.037319239228964],[0.013090099208057,-0.096481181681156,0.052769962698221]],[[0.064110919833183,0.06484067440033,-0.062097162008286],[0.062238994985819,-0.022782096639276,-0.018172273412347],[0.16696818172932,0.035063754767179,0.022996881976724]],[[-0.048185832798481,-0.018430745229125,0.014192877337337],[-0.087335541844368,-0.072768166661263,0.064849726855755],[-0.091953381896019,-0.011114380322397,0.068434827029705]],[[-0.10117240250111,-0.066233731806278,0.07198677957058],[-0.11746847629547,0.028519410640001,0.10290269553661],[-0.076669983565807,0.077333830296993,0.21911622583866]],[[0.0055197789333761,-0.015307134017348,6.1854167142883e-05],[-0.081337474286556,0.10755594074726,-0.08944184333086],[0.056594613939524,-0.017429502680898,-0.066801868379116]],[[-0.01743851788342,0.030387384817004,-0.060285121202469],[-0.048092439770699,-0.034536797553301,-0.055467933416367],[-0.0244972538203,-0.10134432464838,-0.25397768616676]],[[-0.017516920343041,-0.052369892597198,-0.084112323820591],[0.15166613459587,0.011912834830582,-0.12010456621647],[0.20068295300007,0.082623958587646,-0.090386524796486]]],[[[-0.077384032309055,-0.15134799480438,-0.022521799430251],[0.110461384058,0.1141674220562,0.062778472900391],[0.096266254782677,-0.030041880905628,0.0013706755125895]],[[0.097929522395134,0.10255130380392,-0.061660636216402],[-0.042733728885651,-0.15040969848633,0.032405585050583],[0.023000944405794,0.0126719083637,0.097960017621517]],[[0.013117118738592,-0.0079603027552366,0.13281987607479],[-0.040818221867085,0.046644810587168,-0.045195639133453],[0.038754984736443,-0.023635594174266,-0.098495468497276]],[[0.057129185646772,-0.063005857169628,0.079026117920876],[0.061102584004402,-0.069062657654285,0.079027198255062],[-0.12570512294769,-0.22709488868713,0.04635464027524]],[[0.05295330658555,0.10760386288166,0.20042975246906],[0.020312955603004,-0.061994265764952,0.021502107381821],[-0.053738389164209,0.10653436928988,-0.10085729509592]],[[0.16497832536697,0.10590266436338,0.089783996343613],[0.0024380455724895,-0.017528334632516,0.0093047246336937],[-0.05315874889493,-0.12418728321791,0.065745502710342]],[[0.080771759152412,0.032238330692053,0.026781894266605],[0.0045479787513614,0.052869338542223,-0.035557609051466],[0.067444577813148,0.03326116874814,-0.05086637660861]],[[-0.049900557845831,0.0073720710352063,-0.074238412082195],[-0.05448080599308,-0.027342043817043,-0.011211227625608],[0.055710848420858,0.054896049201488,-0.04701991379261]],[[-0.064779408276081,-0.15725293755531,-0.024158954620361],[0.01764527708292,-0.00045945221791044,-0.056081343442202],[0.097780786454678,0.080833896994591,0.095740862190723]],[[-0.092464879155159,-0.010088991373777,0.13810031116009],[-0.15631809830666,-0.010244587436318,-0.044554688036442],[-0.045015383511782,-0.13685487210751,-0.03736099973321]],[[-0.0058188633993268,0.024682506918907,-0.11621224880219],[0.066209636628628,0.058077234774828,0.080158613622189],[0.032081935554743,0.082245737314224,0.043872553855181]],[[0.055820159614086,0.0023421286605299,-0.0074773579835892],[-0.10647632181644,-0.085651062428951,-0.02950843423605],[-0.0073505803011358,0.081077717244625,0.043802820146084]],[[-0.15151783823967,-0.060723952949047,-0.0068886266089976],[-0.12835627794266,-0.15729622542858,-0.0088814217597246],[0.14242258667946,-0.085835680365562,-0.020566144958138]],[[0.038221627473831,0.0017062937840819,0.039778504520655],[-0.043678984045982,-0.11453192681074,0.021739102900028],[0.047045737504959,0.014315883629024,-0.050890773534775]],[[-0.13892132043839,-0.084722608327866,0.0020540561527014],[-0.14760227501392,0.035922352224588,-0.010443734936416],[0.0080270543694496,-0.026012528687716,0.10501687973738]],[[0.0018009773921221,0.0016308868071064,-0.040661666542292],[0.0092749046161771,0.00032659628777765,0.082608953118324],[0.11790735274553,0.014091490767896,-0.12164852768183]],[[0.1350069642067,-0.047676935791969,-0.10785222053528],[0.10552099347115,0.099418886005878,-0.015942161902785],[0.060748398303986,0.02070851996541,-0.026554800570011]],[[-0.015004550106823,0.0067197065800428,-0.12079130858183],[-0.1176495179534,0.042478196322918,0.056359354406595],[-0.047595031559467,0.066751465201378,0.027924025431275]],[[0.097837433218956,-0.10535407811403,0.011090041138232],[-0.02575434371829,-0.036170653998852,0.052799213677645],[0.064075917005539,-0.015229504555464,-0.014746254310012]],[[-0.039015613496304,0.091578215360641,-0.18486131727695],[0.012333451770246,-0.048811260610819,-0.022125037387013],[0.0043432777747512,0.0096002444624901,-0.12565909326077]],[[-0.091384127736092,-0.018290368840098,-0.04441025108099],[-0.0031627574935555,0.09076751023531,0.093682199716568],[0.049526780843735,-0.073085442185402,-0.0087923370301723]],[[-0.086423240602016,0.032830379903316,0.077270232141018],[0.09104960411787,0.21464197337627,0.028049305081367],[-0.046264939010143,0.043055135756731,-0.04849111661315]],[[0.10650155693293,0.012670593336225,0.055135648697615],[-0.015007676556706,-0.075018167495728,-0.045230709016323],[-0.029462907463312,0.074832372367382,0.1074076294899]],[[-0.20689359307289,-0.11201083660126,-0.064238473773003],[0.10272412002087,-0.08700031042099,0.078015938401222],[0.054224904626608,0.025900270789862,0.18286743760109]],[[0.0080986898392439,-0.089457847177982,0.04238048568368],[-0.037687670439482,-0.016188196837902,0.030175456777215],[0.067017503082752,-0.031283359974623,-0.028387486934662]],[[-0.023601613938808,-0.0015429607592523,-0.037232685834169],[0.11861196160316,-0.020480310544372,-0.0096484264358878],[0.18090109527111,-0.032280188053846,0.00054577057017013]],[[-0.078718602657318,0.077955693006516,0.062903724610806],[0.076878435909748,-0.060005698353052,-0.054371666163206],[-0.13838618993759,0.039559673517942,0.049343537539244]],[[-0.026257175952196,-0.16209523379803,-0.029286298900843],[0.078534133732319,-0.0023693514522165,0.02715908177197],[-0.04806861281395,0.070308744907379,0.06160206720233]],[[-0.04822601750493,0.11789293587208,0.18624199926853],[0.019125493243337,0.029448950663209,0.056575257331133],[0.031644485890865,-0.03927806019783,-0.024425288662314]],[[0.10022829473019,-0.058161269873381,-0.12355320155621],[0.080230981111526,-0.054494738578796,-0.038744051009417],[-0.054457705467939,-0.10136267542839,-0.07229782640934]],[[-0.086490601301193,-0.10517080873251,-0.13452358543873],[0.098240114748478,0.018818682059646,-0.15746703743935],[-0.0044945548288524,-0.079604879021645,-0.019566301256418]],[[0.0087827555835247,-0.068717025220394,-0.10551702976227],[-0.015806706622243,-0.02208149433136,0.061953701078892],[0.090474173426628,0.0062709599733353,0.095235571265221]],[[-0.043850991874933,-0.039773542433977,-0.017778065055609],[0.092411860823631,-0.03832783550024,0.047605060040951],[-0.00090323871700093,-0.025409292429686,0.0099308425560594]],[[0.0072882636450231,-0.036399964243174,0.078054800629616],[-0.093812324106693,-0.033722098916769,-0.057762656360865],[-0.083435736596584,-0.11639326065779,-0.0045695239678025]],[[0.016169600188732,0.11488728225231,0.089617148041725],[0.075038105249405,0.055224779993296,-0.0022162823006511],[-0.14279086887836,-0.052824575453997,-0.035560354590416]],[[-0.0041971225291491,-0.038353770971298,-0.13100436329842],[-0.10172951966524,-0.059825874865055,-0.10959231108427],[-0.050616923719645,-0.10478039085865,-0.061472155153751]],[[-0.061893686652184,-0.019436771050096,0.051516246050596],[-0.040555566549301,-0.15005786716938,-0.061371389776468],[-0.066678330302238,-0.079312585294247,-0.021278984844685]],[[-0.099484704434872,0.015906255692244,0.036648295819759],[0.0020775506272912,0.048384889960289,-0.040992833673954],[-0.037548050284386,0.032634548842907,0.11267165094614]],[[0.074674986302853,-0.0026976282242686,-0.07042158395052],[0.008035846054554,-0.029213020578027,-0.062891393899918],[0.077174171805382,0.20939789712429,0.15040582418442]],[[-0.043837338685989,-0.055141199380159,-0.14692464470863],[0.015374081209302,-0.1650761961937,-0.063980229198933],[-0.024857647716999,-0.04664646461606,-0.057877190411091]],[[-0.027047896757722,-0.069546781480312,0.050681117922068],[0.039003632962704,-0.17131175100803,-0.11707188934088],[-0.059838075190783,-0.1102193146944,-0.10299402475357]],[[0.068354614078999,0.074214786291122,0.017135739326477],[0.042746417224407,-0.032268512994051,-0.12648138403893],[-0.069846913218498,0.075242258608341,0.11602532863617]],[[-0.053810119628906,-0.050869539380074,0.084159560501575],[0.041173093020916,-0.024715848267078,0.00012835342204198],[-0.036019962280989,-0.025131165981293,-0.00088688603136688]],[[0.12866958975792,0.10603364557028,0.13437753915787],[-0.071706831455231,0.017702693119645,-0.051381502300501],[-0.11772838979959,0.0029210492502898,-0.082703843712807]],[[0.0071082790382206,-0.16821670532227,-0.023701222613454],[-0.086792670190334,-0.10463070869446,-0.15497127175331],[-0.090138606727123,-0.14808604121208,-0.08858060836792]],[[-0.040941331535578,-0.029665978625417,-0.08880241215229],[-0.016168367117643,-0.054289530962706,-0.17560403048992],[-0.012783718295395,0.061773091554642,0.081396877765656]],[[0.005016669165343,-0.026792012155056,0.034724291414022],[-0.070967525243759,-0.1594855338335,-0.042789340019226],[-0.094957768917084,-0.020229250192642,0.038647096604109]],[[-0.068339146673679,-0.040400683879852,-0.074847675859928],[0.088314145803452,-0.042360454797745,-0.069091238081455],[-0.12873923778534,-0.048113886266947,0.050177559256554]],[[-0.024751298129559,-0.0077883992344141,0.0014880794333294],[-0.021391179412603,0.011731084436178,0.072739221155643],[0.080319166183472,-0.012279582209885,0.0080398097634315]],[[0.039354965090752,0.16826382279396,0.112543143332],[0.033516384661198,-0.03417643904686,-0.066408798098564],[-0.19422407448292,-0.0092259738594294,-0.10388077050447]],[[0.06507346779108,0.0050579179078341,0.056984074413776],[-0.1367998868227,0.099372439086437,-0.014869602397084],[-0.0047178328968585,-0.022982403635979,-0.073292352259159]],[[0.069308184087276,-0.064036130905151,-0.060833044350147],[-0.00092613411834463,-0.06165724620223,-0.13346943259239],[-0.019265992566943,-0.0057160821743309,0.056692365556955]],[[0.064455628395081,0.017988545820117,0.051509283483028],[0.038909886032343,0.079965375363827,-0.063414976000786],[0.090124227106571,0.049938652664423,-0.052294820547104]],[[-0.07823871076107,0.12715247273445,0.0094059146940708],[0.076024428009987,0.058487437665462,0.14276652038097],[-0.00078330404357985,0.019679414108396,-0.076238885521889]],[[-0.034608446061611,-0.022304449230433,-0.042763888835907],[-0.10614724457264,0.0062601487152278,-0.029505612328649],[-0.12008748948574,-0.11022276431322,-0.09628501534462]],[[0.11141785234213,-0.036418873816729,0.11301816999912],[-0.13537755608559,-0.20453745126724,0.16975130140781],[0.081152699887753,0.033857632428408,0.10487049818039]],[[0.011626559309661,-0.055941130965948,-0.0087279351428151],[-0.024156287312508,0.054405726492405,0.1402539908886],[0.10402775555849,-0.056694459170103,0.099407337605953]],[[0.050646480172873,0.036571573466063,-0.17231678962708],[-0.1396352648735,0.026020221412182,-0.052526995539665],[0.062907010316849,-0.076624743640423,-0.039334274828434]],[[0.1108430698514,0.038867376744747,0.11811023950577],[-0.11215986311436,-0.053814467042685,-0.055209416896105],[-0.02694976888597,0.092527836561203,0.032765489071608]],[[-0.052689973264933,0.044476620852947,-0.018412921577692],[0.10332066565752,0.03236173465848,0.018060790374875],[0.040262043476105,-0.049760483205318,-0.051749359816313]],[[-0.01285108178854,-0.088607020676136,-0.057881020009518],[-0.0013728138292208,0.058106772601604,-0.013659602031112],[-0.054205041378736,0.062735021114349,0.11274752765894]],[[0.08758657425642,-0.12375799566507,-0.052568558603525],[-0.019149800762534,-0.027296150103211,-0.01194286160171],[0.17561407387257,-0.013336401432753,0.043601658195257]],[[-0.1978525519371,-0.017765877768397,-0.15869526565075],[-0.080874249339104,-0.1461094468832,0.023511013016105],[0.046421051025391,0.036727383732796,0.16158610582352]],[[0.045231532305479,-0.083494640886784,-0.15842080116272],[-0.23103128373623,0.039682909846306,0.025460138916969],[-0.19316202402115,0.028965262696147,0.17984433472157]]]],"nOutputPlane":64,"kW":3,"kH":3,"bias":[-0.014284716919065,-0.010058079846203,-0.057199835777283,-0.019996738061309,-0.010105531662703,-0.0087292119860649,-0.01659925468266,-0.00028767948970199,-0.0052339853718877,-0.0032940120436251,-0.0055701308883727,-0.013724643737078,-0.010038543492556,-0.0042379978112876,-0.012462146580219,-0.014257338829339,-0.0084912488237023,-0.011975014582276,-0.0089956503361464,-0.030548922717571,-0.010745176114142,-0.0087524056434631,-0.012073401361704,-0.018054872751236,-0.0091189853847027,-0.0095401601865888,-0.0099977850914001,-0.015250825323164,-0.005786597263068,-0.01520898193121,-0.0094105713069439,-0.0070966240018606,-0.0059692491777241,-0.011578726582229,-0.017782960087061,-0.0010140727972612,-0.0075410776771605,-0.01249320153147,-0.011416818015277,-0.020779009908438,-0.012390743941069,-0.0083941221237183,-0.0098704639822245,-0.014936007559299,-0.0094049898907542,-0.0054810945875943,-0.0088196182623506,-0.016007797792554,-0.0090843560174108,-0.0061539458110929,-0.0037419360596687,-0.019625822082162,-0.012165488675237,-0.0069314520806074,-0.010300879366696,-0.0047918763011694,-0.01032883208245,-0.011534933932126,-0.018533235415816,0.037995018064976,-0.020232193171978,-0.0059339050203562,-0.005441012326628,-0.0027697535697371],"nInputPlane":64},{"weight":[[[[-0.0026585678569973,-0.084852337837219,-0.057839404791594],[0.078723683953285,-0.056859210133553,-0.019138589501381],[0.003637018147856,0.068234570324421,-0.02586105465889]],[[-0.0015321885002777,-0.044900711625814,-0.015994349494576],[0.096264466643333,-0.00024411280173808,-0.021883931010962],[-0.068038582801819,-0.037320073693991,-0.028238091617823]],[[-0.035863041877747,-0.13870537281036,-0.12299218028784],[-0.021823840215802,-0.09017588943243,-0.074399873614311],[0.13381880521774,0.053321715444326,-0.046180803328753]],[[-0.060889158397913,-0.021835714578629,0.0086721098050475],[0.0012067459756508,-0.040685176849365,-0.046390794217587],[-0.0071513834409416,-0.073007225990295,-0.062787689268589]],[[-0.072340101003647,0.039904180914164,-0.018356824293733],[-0.056020759046078,0.02398837544024,0.038895025849342],[-0.18344423174858,-0.10263536125422,0.024846225976944]],[[0.05905157327652,-0.025759486481547,-0.026144944131374],[-0.011879739351571,-0.094552300870419,-0.10121788084507],[-0.0064937281422317,0.048024106770754,0.036391578614712]],[[-0.06062538176775,-0.09638986736536,-0.05917377397418],[-0.085014142096043,-0.027899872511625,-0.018003160133958],[0.053104214370251,-0.039760377258062,-0.060300648212433]],[[0.018234292045236,0.08510260283947,0.062496021389961],[-0.016291191801429,-0.090765178203583,-0.031458884477615],[0.14984375238419,0.1098471134901,-0.053511336445808]],[[0.017110522836447,0.067716836929321,-0.028967432677746],[-0.017953619360924,0.090530268847942,-0.079394303262234],[0.0031295693479478,0.03052114136517,-0.057158451527357]],[[0.032134182751179,0.034692842513323,-0.089720092713833],[-0.010350747965276,-0.010463435202837,-0.028375323861837],[-0.016020717099309,-0.097614273428917,-0.03200526535511]],[[-0.076239965856075,-0.0015107720391825,0.0086219822987914],[-0.014954958111048,-0.06015270575881,0.029028447344899],[0.023660454899073,0.0096403639763594,0.020649142563343]],[[-0.10203995555639,-0.17773477733135,-0.090825304389],[-0.20242826640606,-0.1978395730257,-0.0067401798442006],[-0.11472278088331,-0.058633372187614,-0.0084539353847504]],[[0.079803735017776,-0.012874874286354,0.071459949016571],[0.055598609149456,0.049993433058262,-0.0081918593496084],[-0.066773943603039,0.07676150649786,-0.065188884735107]],[[-0.02094990760088,-0.026702499017119,0.043465696275234],[0.078978851437569,-0.0087002860382199,0.063338786363602],[0.074729926884174,0.016192419454455,-0.01202879846096]],[[-0.01681319065392,0.0092908628284931,0.065846271812916],[-0.034935481846333,0.028940979391336,0.030972801148891],[-0.02271998859942,0.020202627405524,0.014034301973879]],[[-0.084075972437859,-0.058436889201403,-0.021649196743965],[-0.12857335805893,0.0083564259111881,0.061519794166088],[0.051147036254406,0.0039357799105346,-0.050130363553762]],[[0.0092834308743477,-0.058486774563789,-0.00066478655207902],[-0.037498828023672,0.03276077657938,-0.047362983226776],[0.11226088553667,0.095401093363762,0.029641343280673]],[[-0.077370278537273,-0.079242520034313,-0.11493693292141],[-0.0090053658932447,0.047784078866243,0.036063339561224],[-0.02153810672462,-0.030623948201537,-0.055658172816038]],[[0.0037763759028167,0.10113377869129,0.02392883785069],[0.019399082288146,0.00033478802652098,0.0098892021924257],[0.10978040844202,0.033282563090324,0.02965128980577]],[[0.047617550939322,-0.0028290031477809,-0.050751801580191],[0.011068874038756,0.016762332990766,-0.053561739623547],[0.079900078475475,0.020061660557985,-0.051531028002501]],[[0.033457659184933,-0.008187510073185,0.029486641287804],[0.012982649728656,0.020364627242088,0.047549277544022],[0.056925628334284,0.071861162781715,0.033577959984541]],[[-0.083440333604813,0.12986280024052,0.0056161796674132],[-0.097164236009121,-0.021029070019722,0.052589438855648],[0.0078816702589393,-0.012829637154937,-0.05031493678689]],[[0.011894026771188,0.049802102148533,-0.086281761527061],[0.039181180298328,0.085732385516167,-0.029501110315323],[0.084411829710007,-0.018325867131352,0.069729603827]],[[0.071452416479588,0.031662061810493,0.16887860000134],[-0.024269640445709,0.12884518504143,0.13340489566326],[0.022474149242043,-0.081699073314667,-0.010929556563497]],[[-0.001977680483833,-0.035727113485336,-0.0506148673594],[-0.041783183813095,0.034117218106985,0.017838606610894],[-0.094380363821983,0.07502044737339,-0.028993461281061]],[[0.0042015905492008,-0.027763038873672,-0.028175361454487],[0.053836915642023,0.019996093586087,0.017429675906897],[0.090134970843792,0.071787588298321,-0.032844338566065]],[[-0.0037713330239058,0.043666180223227,0.026303255930543],[-0.17203390598297,-0.11935241520405,-0.058842416852713],[0.091071248054504,0.1450972110033,0.0099445292726159]],[[-0.018245853483677,-0.028653658926487,-0.030190549790859],[0.0161665212363,0.016166541725397,0.0055468543432653],[-0.020854808390141,-0.063731163740158,0.030088255181909]],[[0.017522113397717,-0.021549778059125,-0.0048933196812868],[-0.035610850900412,0.032335087656975,-0.026763765141368],[0.014995112083852,0.029344758018851,-0.11824970692396]],[[-0.077527329325676,0.006775613874197,-0.05452112108469],[-0.03480376675725,0.013303915970027,-0.023218480870128],[-0.0068018510937691,0.061720971018076,0.044659305363894]],[[0.0062303221784532,-0.04162123799324,0.012396424077451],[-0.014487276785076,0.059302572160959,-0.076654523611069],[-0.03604082018137,0.021112633869052,-0.066832266747952]],[[0.037452720105648,-0.020872483029962,-0.063799723982811],[0.033525910228491,-0.031992647796869,-0.061412684619427],[0.013545747846365,-0.065095297992229,0.06090559437871]],[[0.017522683367133,0.0067333001643419,0.010896930471063],[0.025396157056093,0.015688773244619,0.0083962045609951],[0.038270723074675,-0.086423516273499,0.0573655590415]],[[0.02487993426621,0.1016707867384,0.018928006291389],[0.024017075076699,0.064613707363605,0.024008387699723],[0.014518569223583,0.03156328946352,-0.054269641637802]],[[-0.10704094171524,-0.080715000629425,-0.14587250351906],[-0.24864357709885,-0.030393498018384,0.021887455135584],[-0.17979528009892,0.061973933130503,0.033400248736143]],[[-0.010421468876302,-0.019815953448415,-0.083721674978733],[0.036655373871326,0.058028306812048,-0.027868323028088],[0.1078282520175,0.0084666088223457,0.0078100240789354]],[[0.019971366971731,-0.053269479423761,-0.098234824836254],[0.049721818417311,-0.10058762133121,-0.05307487770915],[-0.10539261251688,-0.066506743431091,0.042962793260813]],[[-0.090508118271828,-0.0016444918001071,0.028426378965378],[-0.034088555723429,-0.00098934664856642,0.063338913023472],[0.11499024182558,0.0347745642066,-0.047481972724199]],[[-0.024823315441608,-0.019210066646338,-0.012417847290635],[0.027470106258988,0.05363942310214,0.0044818166643381],[-0.053488031029701,0.0063484059646726,-0.020078796893358]],[[-0.032944981008768,0.048925407230854,-0.069710060954094],[-0.015344931744039,0.0011944088619202,0.059407565742731],[0.060871530324221,0.05209880694747,0.025871058925986]],[[-0.014658518135548,0.027803799137473,0.054213974624872],[0.0060087144374847,-0.024652253836393,0.099687620997429],[-0.028845179826021,-0.010347378440201,0.0488610714674]],[[0.026487642899156,-0.027654800564051,0.071318358182907],[0.029791913926601,-0.054922252893448,-0.072008676826954],[-0.0067834919318557,0.042810935527086,0.013669494539499]],[[0.011016850359738,0.010820637457073,0.035246264189482],[0.090183079242706,-0.059132248163223,0.044349994510412],[0.12824378907681,-0.13953566551208,-0.061915423721075]],[[-0.086210541427135,-0.090323992073536,-0.29857155680656],[0.038268763571978,0.023329451680183,-0.094978250563145],[-0.1663560718298,-0.11498176306486,-0.08962357789278]],[[0.010537068359554,-0.0023341199848801,-0.042573947459459],[0.038576129823923,-0.0849389731884,-0.003442817600444],[-0.0010176891228184,-0.16491493582726,0.027200078591704]],[[0.0014028740115464,0.047060333192348,0.074975676834583],[0.013909846544266,-0.074656806886196,0.0076023265719414],[0.0027325602713972,0.078664667904377,0.03001494333148]],[[0.036095030605793,0.050544433295727,-0.073863051831722],[-0.016590181738138,-0.059880189597607,-0.031802296638489],[0.039454478770494,0.021429723128676,0.055478736758232]],[[0.043066598474979,0.053448565304279,-0.11265345662832],[0.022245096042752,-0.045265790075064,-0.041031163185835],[-0.037323798984289,-0.025045357644558,-0.016203816980124]],[[0.0059271608479321,0.038863964378834,-0.089142821729183],[0.10741009563208,-0.034189876168966,-0.17746819555759],[-0.044474728405476,0.0011028726585209,0.048904985189438]],[[-0.037721361964941,-0.010566798038781,-0.070940859615803],[0.092766270041466,0.037333831191063,-0.063607394695282],[-0.072526142001152,0.013890476897359,-0.019757300615311]],[[-0.030550599098206,-0.03687733784318,-0.049980010837317],[0.014291567727923,-0.058483712375164,0.064991936087608],[-0.027819871902466,0.0048826998099685,0.028023332357407]],[[0.1080913618207,0.076872237026691,0.02653775177896],[0.13772134482861,0.010459816083312,-0.019345818087459],[0.079608410596848,-0.084059461951256,-0.12559765577316]],[[-0.043195690959692,-0.094815850257874,-0.07375293970108],[-0.0053096003830433,0.020217524841428,-0.050599776208401],[-0.052212864160538,0.032854400575161,0.017092471942306]],[[-0.04378854855895,-0.07879227399826,-0.046573650091887],[0.012526801787317,-0.04731348529458,-0.019124217331409],[-0.045238107442856,-0.015686001628637,-0.025260955095291]],[[0.019059183076024,0.019561057910323,-0.03014412894845],[0.023656448349357,-0.029736917465925,-0.077518828213215],[0.029126515612006,-0.038535732775927,0.026919636875391]],[[-0.16770888864994,-0.047091443091631,-0.11453711241484],[-0.16281369328499,-0.075944058597088,-0.024221129715443],[-0.098661288619041,0.0085506895557046,-0.036508418619633]],[[0.092879980802536,-0.00080863380571827,-0.011043994687498],[-0.04455941170454,-0.036222741007805,0.013650574721396],[-0.14967234432697,-0.0050395340658724,-0.0023279681336135]],[[0.010919174179435,-0.0090763792395592,-0.17148105800152],[0.01454914547503,-0.058946620672941,0.015743397176266],[0.058662302792072,-0.04005878791213,0.10079735517502]],[[0.087278805673122,0.076857782900333,0.011434680782259],[0.036329194903374,0.020398959517479,0.022172521799803],[-0.077649220824242,-0.036186590790749,-0.019880311563611]],[[-0.055578023195267,-0.0071324375458062,0.016625478863716],[-0.039757616817951,0.034239832311869,0.059235576540232],[-0.011328974738717,-0.030831275507808,0.04397539421916]],[[0.0023518709931523,-0.087018609046936,-0.068664409220219],[-0.066501706838608,-0.013939891941845,-0.026021808385849],[-0.055393867194653,-0.0085404412820935,-0.045194949954748]],[[-0.070970065891743,-0.019012184813619,-0.046553038060665],[0.0022067583631724,-0.13244622945786,-0.037896834313869],[0.021627720445395,-0.0040640342049301,-0.028213322162628]],[[0.045673813670874,-0.022506641224027,0.027546130120754],[-0.007243319414556,0.057980470359325,-0.019142372533679],[0.11712741106749,0.070466756820679,0.05272239074111]],[[-0.085208758711815,-0.11960287392139,-0.10172036290169],[-0.10642203688622,-0.035748269408941,0.044805403798819],[-0.047108642756939,-0.029912766069174,0.075191348791122]]],[[[0.02038604952395,-0.071195155382156,-0.03221844881773],[-0.069070562720299,-0.11494790762663,0.0063420445658267],[-0.029101358726621,-0.035692758858204,-0.0067894370295107]],[[-0.01156444940716,-0.01427804119885,0.023240076377988],[-0.10446332395077,0.057720173150301,-0.0032464766409248],[0.030649295076728,-0.071512423455715,-0.044499691575766]],[[-0.0069112172350287,-0.045331712812185,-0.009068863466382],[0.037340838462114,-0.015965942293406,0.045263864099979],[-0.057804189622402,-0.11666916310787,-0.024580480530858]],[[-0.095344409346581,0.0018218676559627,0.00089742004638538],[-0.13971123099327,0.029521849006414,0.080088548362255],[-0.0026640295982361,-0.058376591652632,0.0021698742639273]],[[-0.10911245644093,-0.025364791974425,-0.043084181845188],[0.020144978538156,0.036838106811047,-0.11401838064194],[-0.053997382521629,0.069304920732975,-0.062849551439285]],[[-0.0014508223393932,-0.023370377719402,0.0083500919863582],[-0.029055010527372,-0.16291239857674,0.097939655184746],[-0.09594738483429,-0.092369437217712,-0.071868129074574]],[[0.024661185219884,0.062793552875519,0.079618267714977],[0.074225082993507,0.041863221675158,0.079065695405006],[-0.070481359958649,-0.15493859350681,-0.022152528166771]],[[-0.05602166056633,-0.027858551591635,0.027284374460578],[-0.061725586652756,-0.074553072452545,-0.037901371717453],[-0.017329249531031,0.090700246393681,0.022928062826395]],[[0.051549036055803,-0.037661924958229,-0.075404942035675],[-0.023608803749084,-0.11828036606312,0.091933064162731],[0.063604772090912,0.070591807365417,-0.00025898171588778]],[[-0.034468457102776,0.022261429578066,-0.0015708633000031],[-0.019442467018962,-0.056558415293694,-0.011672286316752],[0.033184409141541,0.036771230399609,0.02235234156251]],[[0.016989205032587,-0.031870368868113,-0.0020535797812045],[-0.11315843462944,-0.069959700107574,0.016855103895068],[0.024253299459815,-0.14474307000637,0.0027271090075374]],[[-0.045096434652805,-0.0063675371930003,-0.063944101333618],[0.067092031240463,0.050092827528715,0.025207128375769],[-0.065223336219788,-0.030836626887321,-0.017340503633022]],[[0.014885370619595,-0.029536373913288,-0.054332725703716],[-0.027857758104801,-0.024073705077171,-0.04059936106205],[0.008305799216032,0.013167446479201,-0.071850940585136]],[[-0.021765608340502,-0.00073756359051913,0.07262821495533],[0.078588247299194,0.055310606956482,-0.044470220804214],[0.032331958413124,0.073751263320446,0.0058652125298977]],[[-0.016162758693099,-0.018674060702324,-0.027257148176432],[-0.053521584719419,-0.12952107191086,0.00010917896725005],[-0.11529153585434,0.054283130913973,-0.079133003950119]],[[0.13331583142281,0.086255580186844,0.035962324589491],[-0.098589703440666,0.040341421961784,0.060590077191591],[0.028249939903617,-0.035979308187962,-0.079571686685085]],[[0.015413114801049,0.028328428044915,-0.047925643622875],[0.14038142561913,0.0048235082067549,-0.084705755114555],[-0.0022888518869877,0.11244922876358,-0.012852882035077]],[[-0.0745829641819,0.039841428399086,0.032401472330093],[-0.041867092251778,-0.072293125092983,-0.036065481603146],[-0.079607620835304,-0.0097005683928728,-0.071335561573505]],[[0.031984683126211,-0.07371424138546,-0.050342168658972],[-0.043355088680983,-0.072284080088139,-0.053525984287262],[0.0059525282122195,-0.002292146673426,0.048271253705025]],[[0.010575774125755,0.032117787748575,0.018817311152816],[0.0053789606317878,-0.021774342283607,-0.017303703352809],[-0.03365620225668,-0.027507713064551,0.041637372225523]],[[-0.017548516392708,0.067815087735653,0.02759063988924],[0.043736387044191,0.065787963569164,0.04075975716114],[-0.05533329769969,-0.021741025149822,-0.029353952035308]],[[0.0099439015612006,0.097935333848,-0.018247654661536],[0.10521160811186,-0.12729947268963,-0.10824557393789],[-0.0054237172007561,-0.019875552505255,-0.086437799036503]],[[0.07048188149929,0.0011806756956503,0.02363014779985],[-0.080992870032787,0.013484381139278,0.066802382469177],[-0.037278402596712,0.00074225419666618,0.019872795790434]],[[0.090752124786377,0.011438081972301,0.070931479334831],[0.030302280560136,0.012301274575293,-0.04065028950572],[0.062909483909607,0.074494265019894,0.053894702345133]],[[-0.080452680587769,-0.040450435131788,-0.030772211030126],[-0.010578201152384,-0.026856411248446,-0.05363879352808],[-0.022861212491989,0.013770802877843,0.074060842394829]],[[-0.053191248327494,-0.011943273246288,-0.028550187125802],[0.10761514306068,0.04920943453908,0.03338685259223],[-0.010176637209952,0.071562997996807,-0.02012480981648]],[[-0.035005640238523,0.041958589106798,0.03626286610961],[0.053659614175558,0.02339475043118,0.07063814252615],[-0.06495139747858,0.036901254206896,-0.11669311672449]],[[0.045776959508657,0.067618332803249,0.027361586689949],[-0.012990755960345,-0.0023900070227683,0.03116955049336],[-0.013035470619798,0.0023525482974946,0.033816434442997]],[[-0.0093889040872455,0.0066089378669858,-0.022656282410026],[-0.028128422796726,-0.079096518456936,-0.016840161755681],[-0.020818265154958,-0.057031914591789,-0.063437223434448]],[[-0.0011291456175968,0.077049106359482,0.10621330887079],[-0.1041993200779,-0.08838178217411,0.1042392551899],[-0.060814257711172,-0.02830739878118,-0.061996001750231]],[[0.035842563956976,-0.049281045794487,0.0031310515478253],[-0.11712965369225,0.11065256595612,0.031037686392665],[-0.063461549580097,-0.027651840820909,0.014386234804988]],[[0.047867834568024,0.031968370079994,0.042375799268484],[-0.003924164455384,0.048092696815729,-0.052756678313017],[0.073632158339024,-0.087035603821278,-0.019256023690104]],[[0.039450533688068,0.037047982215881,0.094094164669514],[0.052544936537743,-0.031955689191818,0.045436229556799],[-0.01114163454622,-0.097554907202721,-0.0074762790463865]],[[0.022074054926634,0.031852919608355,0.13051268458366],[0.0070640505291522,-0.057461109012365,-0.015500297769904],[-0.047995265573263,0.014721756801009,-0.22879596054554]],[[-0.073356755077839,0.054937273263931,0.02490277774632],[0.007831022143364,0.025059208273888,0.023961516097188],[-0.046265602111816,0.056048877537251,0.024203328415751]],[[-0.061415866017342,-0.11646649986506,-0.046936828643084],[-0.0041699167340994,-0.017270475625992,-0.12374281138182],[0.015509281307459,0.093419753015041,-0.063794337213039]],[[0.011949232779443,0.078546538949013,-0.033939428627491],[0.03674978017807,0.056806668639183,-0.010686211287975],[-0.027077492326498,0.069808065891266,-0.0024427333846688]],[[0.0028595961630344,-0.09462171792984,0.022887345403433],[0.053377568721771,0.052976310253143,0.057060237973928],[-0.028686922043562,0.0090834479779005,0.0033622109331191]],[[0.020965944975615,-0.17086958885193,-0.11579186469316],[0.049674931913614,0.086006604135036,0.016213880851865],[-0.016306595876813,-0.042451836168766,-0.028891460970044]],[[-0.017294613644481,-0.024374792352319,-0.014148737303913],[-0.053702637553215,-0.021336389705539,-0.01478878967464],[-0.029073253273964,-0.071351014077663,0.053414028137922]],[[-0.032815337181091,-0.040370866656303,0.058510448783636],[-0.13087843358517,0.034614957869053,0.040524493902922],[-0.099400244653225,-0.069421872496605,0.06279630959034]],[[0.021066790446639,-0.031741123646498,0.0013453988358378],[-0.025286063551903,0.00018549691594671,-0.064105413854122],[0.042262062430382,0.020802302286029,0.027886832132936]],[[0.06904175132513,0.029525052756071,0.022842563688755],[0.042752709239721,0.00050748320063576,-0.013182932510972],[-0.058028683066368,-0.038977801799774,-0.049717273563147]],[[0.04621360078454,0.023022076115012,0.0054264767095447],[0.00041059718932956,-0.028129540383816,-0.011051284149289],[0.0060910792089999,-0.12033192068338,-0.010063458234072]],[[0.0025764931924641,0.063414394855499,0.039633851498365],[0.03834979981184,-0.087489433586597,-0.03301652893424],[-0.0074928225949407,-0.13441656529903,-0.020464146509767]],[[0.11227912455797,-0.060941863805056,-0.19606959819794],[-0.030075976625085,-0.098040774464607,-0.018923394382],[-0.049621872603893,0.066876605153084,0.067732021212578]],[[-0.060511559247971,-0.057013891637325,0.033704545348883],[0.014087363146245,-0.037537679076195,0.024514311924577],[0.0042114052921534,0.020023928955197,-0.040032859891653]],[[0.02072804607451,0.067440085113049,0.17995804548264],[-0.0043599251657724,0.07126634567976,-0.047371301800013],[-0.012936041690409,-0.047050360590219,-0.12039020657539]],[[0.016643954440951,0.055763501673937,0.0015064149629325],[0.061608262360096,-0.014168827794492,0.0017485187854618],[-0.015896037220955,-0.01566774584353,0.036599572747946]],[[-0.021652299910784,-0.095039032399654,-0.0057483897544444],[0.037436958402395,0.032483104616404,0.011975683271885],[-0.037585191428661,0.079927042126656,-0.028063159435987]],[[0.063301868736744,0.092605516314507,0.16235369443893],[0.040462467819452,0.055235747247934,-0.052568472921848],[-0.040365125983953,0.048845674842596,-0.028541764244437]],[[0.068983010947704,0.0070175002329051,0.064898647367954],[-0.018878160044551,-0.0097504369914532,0.13590231537819],[0.034542962908745,0.050800416618586,0.031336106359959]],[[0.087647013366222,0.073910310864449,-0.054913800209761],[-0.065928429365158,-0.007479882799089,0.032387845218182],[0.050391912460327,0.035682573914528,-0.057848110795021]],[[-0.013483571819961,-0.012157934717834,0.031290028244257],[-0.024838648736477,0.058332644402981,-0.065856724977493],[0.005343422293663,0.046707656234503,-0.0031658860389143]],[[-0.020758660510182,-0.036678057163954,0.038703817874193],[-0.036002840846777,0.067318990826607,0.012312193401158],[-0.010104875080287,0.009823938831687,-0.064126841723919]],[[0.00017292403208558,-0.066174514591694,-0.027570843696594],[-0.016832910478115,-0.055175289511681,0.015780543908477],[-0.017869111150503,0.0084134312346578,0.023681821301579]],[[0.119868285954,0.035873223096132,0.02396597713232],[-0.060334049165249,-0.10832174867392,-0.018964022397995],[-0.088335931301117,-0.032346989959478,-0.05245803669095]],[[0.072676099836826,0.0043284888379276,0.049496117979288],[-0.071634598076344,0.028420055285096,0.045199137181044],[-0.010361121967435,-0.056424699723721,-0.00643072091043]],[[0.11020685732365,0.0092073176056147,0.092643864452839],[0.0038039800710976,-0.023369045928121,0.039828222244978],[0.082092076539993,0.0061409939080477,-0.089269272983074]],[[-0.065274015069008,0.012321851216257,0.058200918138027],[-0.0095552112907171,0.031742110848427,0.0031239108648151],[0.014833267778158,0.0096310703083873,-0.037176016718149]],[[0.0050704195164144,-0.08759743720293,0.013610946014524],[0.0015737664652988,0.056048542261124,-0.029292721301317],[0.027453111484647,-0.020869230851531,-0.027655057609081]],[[-0.071465976536274,0.0027759794611484,-0.010945966467261],[0.061040546745062,-0.00011418839858379,0.083281047642231],[0.013685407117009,0.020752407610416,0.039889812469482]],[[-0.009834349155426,-7.9216479207389e-06,0.017951371148229],[0.063112534582615,0.038039404898882,0.038599222898483],[-0.027635237202048,-0.021705644205213,0.040865283459425]],[[0.00434699235484,-0.082166194915771,0.041726805269718],[-0.018676243722439,0.014989084564149,0.10545246303082],[0.076153613626957,0.00018167437519878,-0.068622082471848]]],[[[0.016181709244847,-0.022064179182053,-0.027422357350588],[-0.080628626048565,0.010599251836538,0.0066877049393952],[0.033920180052519,0.017493696883321,-0.024208268150687]],[[-0.11188739538193,-0.0065071093849838,-0.095906436443329],[-0.081371396780014,0.016937345266342,-0.11034581065178],[-0.030655281618237,0.054555669426918,0.023589234799147]],[[0.018428787589073,0.020893076434731,-0.067753218114376],[-0.024637494236231,-0.073549523949623,-0.10882483422756],[0.053396459668875,-0.029222531244159,0.053675513714552]],[[0.038854777812958,0.011021719314158,-0.020869735628366],[0.0035345111973584,0.047537978738546,-0.030547587200999],[0.0026712100952864,-0.031927697360516,0.013684860430658]],[[-0.25590997934341,-0.048893611878157,-0.0090733496472239],[0.087706603109837,-0.076536647975445,0.026403417810798],[-0.058830864727497,0.08920019865036,0.027936115860939]],[[-0.052175801247358,0.021504700183868,-0.083447650074959],[0.1067575737834,-0.029191974550486,-0.063113681972027],[0.082518823444843,0.019556701183319,-0.047221016138792]],[[-0.0049146567471325,-0.13790774345398,-0.082896165549755],[0.039894476532936,-0.069153673946857,-0.13626666367054],[-0.012420821003616,-0.076736181974411,-0.1145246475935]],[[0.039769195020199,0.06839694827795,-0.10791459679604],[-0.044910360127687,0.066533796489239,0.063822545111179],[0.017366144806147,-0.0043988968245685,-0.012708453461528]],[[0.016014862805605,0.042041271924973,-0.021531643345952],[0.060789812356234,-0.087361596524715,-0.019365753978491],[-0.024075742810965,0.030860181897879,-0.00085993926040828]],[[0.014217400923371,0.035123094916344,0.0021277840714902],[-0.013897859491408,0.054096315056086,-0.073771044611931],[-0.014115371741354,-0.027412811294198,-0.10882695019245]],[[-0.0009756512590684,0.071573309600353,0.11919804662466],[0.074890308082104,0.021413629874587,0.017904434353113],[-0.052016325294971,-0.025401420891285,-0.087301015853882]],[[0.058039952069521,-0.090262964367867,-0.030417885631323],[-0.029207708314061,0.032500125467777,-0.052672676742077],[-0.040258478373289,-0.072954818606377,-0.051051545888186]],[[-0.021050842478871,-0.0073750456795096,-0.060317479074001],[0.00078174727968872,0.0045387055724859,-0.047583997249603],[0.076524086296558,-0.10531052947044,-0.032177947461605]],[[0.0044285510666668,0.012489159591496,-0.0037000861484557],[-0.093887522816658,-0.073107175529003,-0.067547634243965],[-0.0054382341913879,0.010591658763587,-0.01551426295191]],[[-0.053530238568783,0.026440823450685,0.010586643591523],[-0.067269690334797,0.04462368413806,0.028026521205902],[0.0144321937114,0.016584072262049,0.022649418562651]],[[0.045418620109558,-0.016808491200209,-0.019722132012248],[-0.04188721626997,-0.031963523477316,0.0042900354601443],[-0.0021774596534669,0.078490659594536,0.082269571721554]],[[0.05672113224864,0.053323034197092,-0.17685830593109],[0.14952386915684,0.13536036014557,-0.047169506549835],[0.1123256906867,-0.038494247943163,0.071061007678509]],[[-0.011540442705154,-0.0080432062968612,0.011127419769764],[0.093671396374702,0.026087962090969,0.023060567677021],[0.10462290793657,-0.050119966268539,0.049882531166077]],[[0.028900591656566,-0.11467848718166,-0.020087622106075],[0.042142536491156,0.0025078603066504,-0.0031917805317789],[0.024379452690482,0.035067673772573,-0.038802031427622]],[[-0.01184154022485,-0.0079797338694334,0.0031250244937837],[-0.003966165240854,0.047445498406887,0.011848763562739],[-0.0020972106140107,0.0087564485147595,-0.021216677501798]],[[-4.2124083847739e-06,-0.016027741134167,0.14197583496571],[-0.020157346501946,-0.10578285157681,-0.16566227376461],[0.051296159625053,0.13366422057152,-0.011736274696887]],[[-0.019586902111769,-0.13370898365974,-0.026805488392711],[0.02283619530499,0.12128090858459,0.048911646008492],[0.027415454387665,-0.027505554258823,0.068815492093563]],[[-0.042746774852276,0.036002047359943,0.019820138812065],[-0.041250597685575,-0.069246977567673,-0.056439891457558],[0.053974233567715,0.039230730384588,-0.18917652964592]],[[-0.12814880907536,0.0040032397955656,0.088692910969257],[-0.020324053242803,0.11549896001816,0.047131855040789],[0.037273600697517,0.059757433831692,0.056318566203117]],[[-0.0060940748080611,-0.030120773240924,-0.027857625856996],[-0.11108815670013,-0.033891752362251,0.026325637474656],[-0.0095514031127095,0.1122132614255,-0.021059457212687]],[[-0.019583091139793,0.04515740275383,0.05309446901083],[-0.010528529062867,-0.025578999891877,0.0036950747016817],[-0.062650926411152,0.011024778708816,0.01025753095746]],[[-0.059128403663635,-0.081963546574116,-0.01406149379909],[0.064463824033737,0.14804525673389,0.079611234366894],[0.050735719501972,-0.032073196023703,0.025031253695488]],[[0.03743152692914,-0.038312338292599,0.075059324502945],[0.022263087332249,0.023815754801035,-0.09396705776453],[0.010906594805419,0.049531925469637,0.022765157744288]],[[0.098477616906166,-0.086807273328304,0.047423623502254],[0.010752933099866,0.0044513423927128,0.029607620090246],[0.0085348645225167,0.00037093594437465,0.014274144545197]],[[-0.036662075668573,0.051330909132957,0.038012105971575],[-0.03280021995306,0.086286664009094,0.053698573261499],[-0.090469479560852,-0.042037565261126,-0.063181608915329]],[[0.070249058306217,-0.0058766147121787,-0.0081960773095489],[-0.077044732868671,0.027297073975205,0.082488879561424],[0.03243650123477,-0.040020383894444,0.0074523980729282]],[[0.10665261745453,-0.030761575326324,0.02166884765029],[-0.14096316695213,0.0098075782880187,-0.076518625020981],[-0.09672449529171,0.01257560774684,-0.068127989768982]],[[-0.013027085922658,-0.026349753141403,-0.027411779388785],[-0.057069409638643,-0.022158164530993,-0.030275071039796],[-0.01585141941905,0.040034465491772,-0.048914704471827]],[[-0.066112644970417,-0.011164931580424,-0.01925989612937],[-0.10330275446177,0.038547966629267,-0.17861001193523],[0.0027974508702755,-0.00557462265715,0.046665195375681]],[[-0.0032138456590474,0.044155817478895,0.098577424883842],[0.099998347461224,-0.080033458769321,-0.015735264867544],[0.079216808080673,0.010554787702858,0.040082670748234]],[[0.059646308422089,-0.053981475532055,-0.068004794418812],[-0.019247598946095,0.07621669024229,0.028243398293853],[0.044938370585442,-0.049879249185324,-0.046035170555115]],[[0.04637611284852,0.040153630077839,-0.0073150000534952],[-0.15918654203415,-0.056190852075815,-0.071169562637806],[-0.30607256293297,-0.037533301860094,0.035525109618902]],[[-0.017683887854218,0.0027473052032292,-0.026863699778914],[0.0079269744455814,-0.029974199831486,-0.14837451279163],[-0.0386663377285,-0.040122881531715,0.049711808562279]],[[-0.067568965256214,-0.086999259889126,-0.11029409617186],[-0.042900066822767,-0.049999427050352,-0.12251168489456],[0.0044191856868565,0.0360810123384,0.12721727788448]],[[0.066730298101902,0.019873138517141,-0.045181967318058],[-0.018291335552931,-0.057933375239372,-0.00017666087660473],[0.12214236706495,0.072044886648655,0.11050459742546]],[[0.021624697372317,0.0049049779772758,0.10099162906408],[0.08850259333849,0.045553430914879,0.012153076007962],[0.023074029013515,-0.062172081321478,0.028734643012285]],[[-0.078085690736771,0.044745590537786,-0.045572709292173],[-0.022973256185651,0.03994345664978,0.12007127702236],[-0.0041901646181941,-0.06100782379508,-0.13598802685738]],[[0.0037202662788332,0.029827725142241,-0.077997878193855],[-0.065781392157078,0.033948067575693,-0.072003364562988],[-0.059229079633951,-0.039232544600964,-0.071788713335991]],[[-0.032464601099491,0.004837186075747,-0.023377994075418],[-0.12388286739588,0.0015102504985407,0.074012599885464],[-0.029164984822273,-0.097364112734795,-0.0047363694757223]],[[0.10127114504576,0.032011449337006,-0.082778424024582],[0.085984274744987,-0.038252286612988,0.032472349703312],[-0.0073457094840705,-0.0036958893761039,-0.044933419674635]],[[-0.066806264221668,-0.087968692183495,-0.0099071515724063],[0.051200829446316,0.04167016223073,0.12952327728271],[0.21157605946064,-0.012335467152297,0.06042854860425]],[[-0.050536617636681,-0.01130804233253,-0.079177007079124],[-0.073826566338539,-0.08476996421814,-0.11294338107109],[-0.047056455165148,-0.045109536498785,-0.10632847249508]],[[-0.047598175704479,0.069282695651054,-0.11253584176302],[-0.00046210584696382,-0.065448179841042,-0.13008704781532],[-0.091635778546333,-0.12158341705799,0.060614891350269]],[[0.061780493706465,-0.056110303848982,-0.012595092877746],[0.047464825212955,0.0010945016983896,0.086183413863182],[0.11996358633041,0.12787374854088,-0.064442202448845]],[[0.043890096247196,0.0094718066975474,-0.013695165514946],[0.082500398159027,0.021435251459479,0.062347333878279],[0.039331622421741,-0.029148939996958,0.028708444908261]],[[-0.020152263343334,-0.030300447717309,-0.022090526297688],[-0.019106186926365,0.0017970773624256,-0.029076060280204],[-0.092384219169617,0.019018514081836,0.047922041267157]],[[-0.098635673522949,0.077728554606438,0.013606080785394],[0.06845773011446,0.057587835937738,-0.025665938854218],[0.040218695998192,0.057273238897324,0.12283109128475]],[[0.014223388396204,-0.02218889631331,0.0094518782570958],[-0.028323754668236,0.034155383706093,0.0022083239164203],[-0.029715305194259,0.0204590074718,0.10428608208895]],[[-0.090312443673611,-0.022100042551756,-0.019652621820569],[0.07754822820425,0.034037038683891,0.081457130610943],[-0.072542063891888,0.014688235707581,-0.15442980825901]],[[-0.01647149771452,0.031845696270466,0.021272139623761],[0.042464919388294,-0.035286422818899,-0.043192718178034],[0.1717671006918,0.06833703815937,0.018490619957447]],[[-0.003906240221113,0.024608952924609,-0.0063208327628672],[0.037870977073908,0.055017966777086,-0.027051370590925],[0.036518260836601,-0.051629766821861,0.0027730679139495]],[[0.06044740229845,-0.069238491356373,-0.032016288489103],[-0.017044812440872,-0.023559622466564,0.026392593979836],[-0.083028428256512,-0.0089542781934142,-0.04368544369936]],[[0.00060234073316678,-0.011818244121969,-0.043435323983431],[0.069420874118805,-0.13594321906567,-0.057741548866034],[0.029346905648708,0.047427363693714,-0.042093507945538]],[[0.11711942404509,0.00050702190492302,0.15179985761642],[0.06953950971365,0.071446716785431,0.045940846204758],[-0.027017403393984,0.048208329826593,0.085497885942459]],[[-0.0021149665117264,-0.0089485216885805,0.010998578742146],[-0.012861399911344,0.021191846579313,-0.035972226411104],[0.017064895480871,-0.0043335817754269,0.026937553659081]],[[-0.028896184638143,0.039384711533785,-0.035000558942556],[0.097562089562416,-0.059849385172129,-0.034413028508425],[-0.011589122004807,-0.045390989631414,-0.0052987388335168]],[[0.0081515749916434,-0.045033827424049,0.020612610504031],[0.097650669515133,-0.034388307482004,0.024079393595457],[-0.0026192024815828,-0.0063561224378645,-0.10681333392859]],[[0.012760629877448,0.070051580667496,-0.053603198379278],[-0.024463506415486,-0.034169659018517,-0.017929956316948],[0.075370922684669,0.038902018219233,0.015266547910869]],[[0.054973799735308,0.050230454653502,0.021212192252278],[0.056661076843739,-0.024274788796902,-0.077511645853519],[-0.032307609915733,0.037309173494577,-0.029961774125695]]],[[[-0.090614929795265,-0.033599149435759,-0.04961372166872],[-0.016042886301875,0.094742693006992,0.13068549335003],[-0.019603632390499,0.02720600925386,-0.0054153734818101]],[[-0.12928704917431,0.11797291785479,0.015664560720325],[0.009480157867074,-0.10944120585918,-0.0452940762043],[-0.031343027949333,-0.021157128736377,-0.1889066696167]],[[0.027277762070298,-0.072739765048027,-0.033767603337765],[-0.0070769959129393,-0.070467084646225,0.039648942649364],[0.050737787038088,-0.008246311917901,-0.047001268714666]],[[0.025204299017787,0.0013370594242588,-0.18125459551811],[-0.074165113270283,-0.018089383840561,-0.10696048289537],[-0.080378971993923,-0.12326575815678,-0.031778279691935]],[[0.17362660169601,0.032648496329784,0.020855711773038],[0.058971777558327,0.0051084430888295,-0.077655002474785],[-0.07387338578701,-0.048482973128557,-0.056862860918045]],[[-0.12104608118534,0.03287286311388,-0.017568429931998],[-0.030435374006629,-0.06274276971817,-0.073198258876801],[-0.075656644999981,-0.080069363117218,0.033096469938755]],[[-0.069429911673069,-0.047503270208836,-0.016673393547535],[-0.066407307982445,-0.079543717205524,-0.033515028655529],[-0.05080371722579,-0.07741604745388,-0.034452430903912]],[[0.086036659777164,0.0060858493670821,-0.026397008448839],[-0.12348531186581,0.090512163937092,-0.075062528252602],[0.059102527797222,0.046964142471552,-0.012872281484306]],[[-0.061321657150984,0.10433880239725,0.013722071424127],[-0.1356123238802,0.026871481910348,-0.17149230837822],[0.023022877052426,0.035097617655993,0.072044774889946]],[[-0.025916678830981,-0.24269852042198,0.066226810216904],[-0.044249050319195,0.054366931319237,0.25688400864601],[0.041096579283476,-0.27075505256653,-0.074632503092289]],[[-0.062471531331539,-0.16487611830235,-0.13611429929733],[0.047549780458212,0.043742667883635,-0.01218878198415],[-0.031780701130629,-0.014843010343611,0.092997148633003]],[[-0.011516436934471,-0.0760857462883,0.040784794837236],[-0.021970126777887,-0.025522360578179,-0.0764349848032],[-0.16747492551804,-0.16683383285999,-0.14314612746239]],[[0.034033801406622,-0.075451776385307,-0.10295975208282],[-0.070247687399387,-0.00064844981534407,0.18208582699299],[0.077854946255684,-0.086631052196026,-0.12164034694433]],[[0.0086077833548188,0.0003275187627878,-0.20350298285484],[-0.05809585750103,-0.096886985003948,0.20874594151974],[-0.068121343851089,-0.13371743261814,0.091330148279667]],[[-0.040866170078516,-0.079934671521187,-0.083886906504631],[-0.091901294887066,-0.058714009821415,-0.089046113193035],[0.043372448533773,0.025115607306361,-0.13064339756966]],[[-0.12347069382668,-0.089025408029556,0.0058038346469402],[0.018142342567444,0.091497994959354,-0.016224948689342],[0.015280034393072,0.051732454448938,-0.043845281004906]],[[-0.0034880707971752,-0.047615941613913,-0.042716361582279],[0.037447661161423,0.087897695600986,-0.057648733258247],[-0.12397829443216,-0.10344954580069,0.045810759067535]],[[0.013733522035182,-0.061666484922171,-0.0046298098750412],[-0.032756358385086,-0.02129128202796,0.0019212168408558],[0.029062820598483,-0.0049242503009737,-0.1115745306015]],[[0.024954553693533,-0.15388450026512,-0.020223746076226],[-0.027050891891122,0.031061986461282,-0.044924899935722],[0.080140233039856,0.015652751550078,0.004998404532671]],[[-0.0044033592566848,-0.085615910589695,0.044593781232834],[-0.0050272243097425,0.059631697833538,-0.0011721245246008],[-0.0071795275434852,0.020557498559356,-0.079850643873215]],[[-0.0038139473181218,-0.097649723291397,0.028692113235593],[0.0037741309497505,0.001594802713953,-0.10731443762779],[-0.033581800758839,-0.0019561150111258,-0.094874523580074]],[[0.12165106087923,-0.0060076517984271,-0.07718013972044],[-0.032373830676079,0.097880840301514,0.085356451570988],[-0.023985171690583,-0.061398148536682,-0.12421536445618]],[[-0.07729896903038,-0.049924667924643,0.02367033995688],[0.0042335018515587,-0.069017976522446,-0.025927107781172],[-0.012572162784636,0.043417945504189,-0.1036348938942]],[[-0.050704199820757,-0.19546714425087,0.12585785984993],[0.22583927214146,0.11132395267487,0.15650577843189],[-0.097554326057434,-0.15077205002308,0.083019651472569]],[[0.059116847813129,0.10532368719578,0.059415332973003],[-0.050550017505884,-0.03714382648468,-0.24287310242653],[0.05224459245801,0.066330976784229,-0.0035647989716381]],[[0.024008518084884,0.07778387516737,0.073028706014156],[0.034981027245522,-0.016708184033632,-0.026130225509405],[0.043658748269081,0.018287060782313,0.041459377855062]],[[-0.099505424499512,0.089677549898624,0.0087370593100786],[-0.055456168949604,-0.13944001495838,0.071704611182213],[0.066094875335693,-0.12771180272102,-0.090168714523315]],[[-0.044702343642712,0.11450461298227,-0.09076751768589],[-0.043563965708017,-0.076866716146469,0.046205919235945],[0.026931919157505,-0.08035821467638,0.092837385833263]],[[0.0011553551303223,-0.15301784873009,-0.12009068578482],[0.14219033718109,-0.10622414946556,0.037054616957903],[0.046888828277588,-6.2545208493248e-05,0.025152755901217]],[[-0.17455703020096,0.12966120243073,-0.13461099565029],[-0.065707176923752,-0.055622730404139,0.019254755228758],[-0.067821934819221,-0.060634110122919,-0.11594095826149]],[[-0.058772161602974,-0.15103015303612,0.05623135715723],[0.056718669831753,-0.029351247474551,0.06113912910223],[0.099899664521217,-0.02309581823647,-0.051648382097483]],[[-0.04869431629777,-0.061430234462023,-0.0016690589254722],[-0.051596239209175,0.15640531480312,-0.17701803147793],[-0.0059554916806519,0.07243624329567,-0.069247767329216]],[[-0.14614993333817,0.029491074383259,-0.08657556027174],[-0.031789239495993,-0.017451919615269,0.020722871646285],[-0.10628508776426,0.0079198619350791,-0.21913668513298]],[[-0.023022940382361,-0.060081258416176,-0.033924419432878],[0.027074012905359,0.026518112048507,0.051284734159708],[0.070304833352566,0.044036965817213,0.013649763539433]],[[-0.046261757612228,-0.061797615140676,-0.023711707442999],[-0.040008332580328,-0.052860829979181,0.024616129696369],[-0.19300197064877,-0.055346827954054,0.091062746942043]],[[0.15478073060513,-0.084851309657097,0.047253530472517],[-0.10743878781796,0.0013410333776847,0.0065387887880206],[0.058717824518681,-0.03968208655715,0.0025744740851223]],[[-0.22331108152866,-0.026562441140413,0.1354473978281],[0.12692821025848,-0.13113486766815,-0.069272473454475],[0.13084182143211,-0.12410720437765,-0.16058734059334]],[[-0.0077421334572136,-0.077732570469379,-0.03124332241714],[0.056901037693024,-0.10825272649527,-0.14635816216469],[-0.061310064047575,0.04738986492157,0.092504076659679]],[[-0.19019277393818,-0.16073924303055,0.042690254747868],[0.05222400277853,-0.030788714066148,0.11590248346329],[-0.071616031229496,0.066692426800728,-0.11067085713148]],[[-0.010032288730145,0.096432037651539,0.089824385941029],[0.0054639978334308,-0.057436548173428,-0.12997409701347],[0.06134033203125,0.10681188851595,-0.19916628301144]],[[-0.076305776834488,-0.028012918308377,0.0049005034379661],[-0.097650066018105,-0.0072992434725165,-0.14908178150654],[-0.065076865255833,0.037333842366934,-0.051301259547472]],[[-0.082187533378601,-0.10534716397524,-0.00023528090969194],[0.052895594388247,-0.053604800254107,0.10360027104616],[0.023202361539006,-0.21609327197075,-0.044763401150703]],[[0.066314972937107,0.003588394029066,-0.1226559728384],[-0.12186483293772,0.07282992452383,0.14298604428768],[-0.08992612361908,-0.14811778068542,-0.13590414822102]],[[-0.0051477672532201,-0.00046326374285854,-0.050620622932911],[-0.046321012079716,-0.0079201674088836,0.065710626542568],[0.10362281650305,0.027374014258385,-0.078214757144451]],[[-0.08379215747118,-0.018070003017783,-0.091249443590641],[0.032917845994234,0.093270912766457,-0.062987290322781],[-0.045259714126587,-0.0016920437337831,-0.090107925236225]],[[0.053742803633213,-0.039567090570927,0.0552131049335],[0.02765391767025,-0.00040188114508055,-0.012533076107502],[0.10948591679335,-0.084092505276203,-0.083222679793835]],[[0.027908954769373,-0.10283853858709,-0.029634095728397],[0.04606195166707,-0.084191352128983,0.10691323131323],[0.062406700104475,-0.11424800008535,-0.076523199677467]],[[-0.10015093535185,-0.091223083436489,0.017164885997772],[0.034256216138601,-0.082561992108822,-0.029732085764408],[-0.057322815060616,0.0010866458760574,-0.092847540974617]],[[-0.11077280342579,-0.040327869355679,-0.020092727616429],[-0.038006901741028,-0.045319903641939,-0.0049434104003012],[0.041925001889467,-0.087791875004768,0.018696021288633]],[[-0.18805672228336,0.032662313431501,0.14792142808437],[-0.038320526480675,-0.021830964833498,0.075268030166626],[0.071553759276867,-0.18359977006912,-0.063830219209194]],[[0.020724100992084,-0.051773898303509,-0.11657110601664],[-0.18758770823479,0.014474752359092,0.011945332400501],[-0.021221846342087,-0.023059582337737,-0.019764196127653]],[[0.10089686512947,-0.040583115071058,-0.0053516593761742],[0.096314951777458,0.16897605359554,0.0010704591404647],[0.028687881305814,0.040325190871954,0.075076587498188]],[[-0.08831599354744,0.01956320554018,-0.023869419470429],[-0.053776681423187,-0.070082925260067,-0.047102879732847],[0.13650147616863,-0.1354860663414,-0.027084350585938]],[[0.041289027780294,-0.015286428853869,0.10963259637356],[-0.14175221323967,-0.081342615187168,-0.016543990001082],[0.13080583512783,-0.033545397222042,-0.014970856718719]],[[-0.11882793903351,0.064241476356983,-0.0082547971978784],[0.030004637315869,0.015075131319463,0.023928327485919],[-0.040667537599802,0.097930282354355,-0.16562633216381]],[[-0.057122822850943,0.084745615720749,0.019644564017653],[0.040146701037884,-0.035600047558546,0.037927325814962],[0.063268549740314,-0.080091208219528,-0.011830310337245]],[[0.035603784024715,0.093945555388927,-0.14295740425587],[-0.23467260599136,0.13464586436749,-0.23558992147446],[-0.25071349740028,-0.089185535907745,0.16088478267193]],[[0.027560207992792,-0.021420704200864,-0.057312522083521],[-0.15294030308723,-0.01926627010107,0.048500418663025],[-0.11823052912951,-0.12326729297638,-0.030462805181742]],[[0.12796220183372,0.11378115415573,0.13602656126022],[-0.0022145661059767,0.003653732361272,0.052305407822132],[0.21531642973423,-0.051869813352823,-0.018732799217105]],[[0.0083139790222049,0.042747337371111,-0.065961368381977],[-0.02768006362021,-0.015774449333549,0.071681082248688],[-0.0056706364266574,-0.093176439404488,0.044882737100124]],[[0.0012377939419821,0.0098072867840528,0.0037260705139488],[-0.14791825413704,-0.049574784934521,-0.07438001781702],[0.057418376207352,0.015965817496181,-0.10483676195145]],[[0.015437197871506,0.18265090882778,0.053905867040157],[0.020311444997787,-0.14968676865101,-0.17268815636635],[0.079185210168362,0.036649454385042,-0.032475139945745]],[[0.049482230097055,0.076256476342678,-0.066307306289673],[-0.13737517595291,-0.039184208959341,-0.056836675852537],[-0.061905790120363,-0.026919985190034,-0.11600850522518]],[[0.11659611016512,0.019948976114392,0.00079547706991434],[-0.033157877624035,-0.027360254898667,0.024735826998949],[-0.1923810839653,-0.053791828453541,0.076860010623932]]],[[[-0.10579494386911,0.015696803107858,0.013728397898376],[-0.058585803955793,0.0050344751216471,-0.0014037200016901],[-0.031694393604994,-0.012372786179185,0.11739828437567]],[[-0.05928048491478,-0.053592372685671,0.040212254971266],[-0.03371698781848,-0.09310407191515,-0.019775371998549],[-0.050374899059534,-0.0054912874475121,0.012706481851637]],[[-0.13875934481621,0.031466122716665,-0.034927539527416],[-0.16081811487675,-0.098424196243286,-0.016505721956491],[-0.075981892645359,-0.06544566899538,0.022789360955358]],[[0.043576322495937,-0.045146491378546,-0.079593829810619],[-0.03815957531333,-0.018264563754201,0.0065630502067506],[0.013071338646114,-0.018284138292074,-0.0020503466948867]],[[0.01795351319015,-0.07282293587923,0.016710860654712],[0.0015542652690783,-0.081297151744366,-0.0057966001331806],[0.025067189708352,0.017483949661255,-0.10883939266205]],[[-0.049622356891632,0.01498347427696,0.058356061577797],[0.042737197130919,-0.063865259289742,0.06078539788723],[0.011584537103772,-0.18558894097805,-0.028502697125077]],[[-0.047149997204542,0.0060927360318601,0.045365303754807],[-0.044220767915249,0.15448467433453,0.056787762790918],[0.032228760421276,-0.049850378185511,0.052423931658268]],[[0.058230351656675,0.062504515051842,0.039839223027229],[0.056866984814405,0.042922634631395,-0.098444417119026],[-0.018745709210634,0.047313891351223,-0.001402489724569]],[[-0.12728221714497,0.010431658476591,-0.047297604382038],[0.051303703337908,0.075649112462997,0.0034488788805902],[0.057777617126703,0.030267860740423,-0.097778879106045]],[[0.014655501581728,-0.035888575017452,0.044220067560673],[-0.015784619376063,-0.013981828466058,0.0077547640539706],[-0.0095017831772566,0.021001880988479,0.053453598171473]],[[-0.022579429671168,0.020391704514623,-0.030007185414433],[0.077183365821838,0.03307831287384,-0.021579576656222],[0.019570952281356,-0.02432800643146,0.068866781890392]],[[0.030690919607878,0.036670599132776,0.030037831515074],[0.049914207309484,-0.0013339323922992,0.021424183622003],[-0.059631407260895,-0.024165650829673,-0.0093929124996066]],[[0.047722306102514,0.0053483042865992,0.051603686064482],[-0.04265833646059,-0.010856227949262,-0.026161719113588],[0.013968115672469,0.066563680768013,0.067794889211655]],[[-0.063305772840977,-0.099955514073372,-0.020364979282022],[-0.15841390192509,-0.0051009794697165,0.086764343082905],[-0.078955538570881,0.013937251642346,-0.014007056131959]],[[-0.043622452765703,0.0020756174344569,-0.018833046779037],[0.030526047572494,-0.021293422207236,0.00068513216683641],[0.033838532865047,-0.027004543691874,0.029624048620462]],[[0.080431371927261,-0.020838469266891,-0.029268803074956],[0.065690539777279,-0.033484347164631,-0.0046425447799265],[0.0060345437377691,0.07894004881382,0.0097544146701694]],[[-0.058434545993805,-0.075758308172226,-0.11114706844091],[-0.0347152762115,0.022160831838846,-0.045643355697393],[0.13005048036575,-0.028746739029884,-0.076183654367924]],[[-0.040158078074455,-0.03490973636508,0.071091130375862],[0.043811816722155,0.043605733662844,-0.043235819786787],[-0.0085855787619948,0.0083494670689106,0.074290201067924]],[[-0.071268774569035,-0.030345283448696,-0.11153074353933],[0.060980726033449,0.041032236069441,-0.081933490931988],[0.023060625419021,-0.04034723713994,-0.053607154637575]],[[-0.042038396000862,-0.003949677105993,0.066782772541046],[-0.0024612080305815,-0.0092361364513636,0.040311209857464],[-0.027141269296408,-0.033629689365625,0.041626255959272]],[[-0.064148731529713,-0.071841225028038,0.14057457447052],[-0.020542331039906,0.010287416167557,0.045033663511276],[-0.0065330788493156,-1.4924677088857e-05,-0.063573151826859]],[[0.020257476717234,-0.083256810903549,-0.0094512524083257],[-0.086371451616287,-0.064258061349392,0.021370965987444],[0.031217290088534,0.06176995113492,0.015959348529577]],[[0.020423486828804,0.081663861870766,0.094056479632854],[-0.01187900826335,-0.084163643419743,0.014669026248157],[-0.098442725837231,-0.0033243512734771,-0.033472910523415]],[[0.13250164687634,0.073203667998314,0.03940936923027],[0.076258853077888,0.0083615491166711,-0.060583431273699],[0.09575667232275,-0.0036253884900361,-0.081346839666367]],[[-0.016593135893345,-0.057642307132483,0.021237283945084],[-0.001009679865092,-0.10065283626318,0.035537838935852],[0.059909619390965,0.094738736748695,-0.012993056327105]],[[-0.024256993085146,-0.033597871661186,0.053122401237488],[-0.017666773870587,0.026359181851149,0.013189763762057],[-0.013925142586231,0.0025378807913512,-0.0030260439962149]],[[-0.18481560051441,0.050833977758884,-0.043610151857138],[-0.0036590052768588,-0.012082577683032,0.10773582756519],[0.089058689773083,0.05362892895937,0.066307403147221]],[[0.0086414739489555,-0.015970498323441,0.021560443565249],[-0.066126637160778,0.019695952534676,0.047661926597357],[0.015147515572608,-0.032745234668255,0.012623315677047]],[[0.063584871590137,0.035706087946892,-0.031245661899447],[0.040168836712837,0.061806604266167,0.032361079007387],[0.0074673537164927,-0.089032970368862,0.036065321415663]],[[-0.033836741000414,0.012925039976835,-0.03995506465435],[0.12172119319439,-0.0095554869621992,0.019013360142708],[0.036348968744278,-0.025348458439112,0.060617383569479]],[[0.062943533062935,-0.10819112509489,0.075107589364052],[0.030087385326624,0.037457350641489,0.04342057928443],[0.0064039556309581,0.03500609844923,0.022441502660513]],[[-0.033100124448538,-0.11039869487286,0.023892084136605],[-0.018644474446774,0.011886342428625,0.013192526064813],[0.064944192767143,-0.00032010520226322,-0.031979873776436]],[[-0.063042208552361,-0.017214365303516,0.0041298754513264],[0.047195710241795,-0.023902829736471,0.062200948596001],[0.016024213284254,0.082419402897358,-0.11855163425207]],[[-0.008659640327096,-0.18699289858341,0.0038100688252598],[0.065522626042366,-0.16195727884769,-0.048556674271822],[-0.25317570567131,-0.14746686816216,-0.051969569176435]],[[-0.076236426830292,0.031058764085174,0.092526540160179],[0.0082217063754797,0.0012100907042623,0.036407291889191],[-0.042175531387329,-0.10224398970604,-0.039401650428772]],[[0.046901676803827,-0.03638719394803,0.011316600255668],[-0.035469934344292,0.0035850321874022,-0.01630849763751],[-0.0042818300426006,-0.013968097046018,-0.0092211356386542]],[[-0.087444834411144,-0.040705878287554,-0.0097981365397573],[0.055091574788094,-0.020094998180866,0.036943983286619],[0.01887141354382,0.030362529680133,0.071948260068893]],[[0.00074630510061979,-0.011836220510304,0.010945307090878],[-0.036501418799162,0.033601507544518,-0.003365394892171],[-0.16903012990952,-0.034004267305136,-0.0041762990877032]],[[0.020879160612822,-0.0093139978125691,0.0081269405782223],[-0.030800873413682,-0.015227980911732,0.081845879554749],[-0.010313923470676,-0.051202490925789,-0.049659267067909]],[[-0.044011373072863,0.02046518214047,0.036595840007067],[-0.13767004013062,-0.1058464795351,-0.0039770612493157],[-0.018617520108819,-0.088247142732143,-0.034239385277033]],[[-0.0059803687036037,-0.028054907917976,0.074112489819527],[0.011556195095181,0.062894575297832,-0.027526987716556],[0.009477635845542,-0.03551921620965,0.0048277224414051]],[[0.03563890978694,0.03949411958456,-0.013194396160543],[-0.03298544511199,0.055751465260983,-0.014075731858611],[0.1294679492712,-0.03833169862628,-0.061276756227016]],[[-0.058984749019146,0.063543938100338,0.016469394788146],[-0.095589078962803,-0.0080994665622711,0.017377542331815],[-0.062926009297371,0.080683790147305,-0.063859075307846]],[[-0.00093450350686908,-0.010748528875411,0.066852323710918],[-0.0013281917199492,-0.037856072187424,-0.015526030212641],[0.023766003549099,-0.070221751928329,-0.065988220274448]],[[0.029782090336084,-0.066228792071342,0.038189508020878],[0.10534625500441,-0.015475644730031,-0.039671372622252],[-0.0044969371519983,0.060569632798433,-0.028877751901746]],[[-0.093112483620644,-0.012435412965715,0.018634028732777],[-0.074900470674038,-0.071953594684601,0.029016425833106],[-0.13478510081768,0.023768162354827,-0.0025128412526101]],[[-0.01086637377739,0.011753715574741,0.075504556298256],[-0.12262500822544,-0.057382177561522,0.03521241992712],[0.0046140500344336,0.015609866008162,-0.0014477126533166]],[[0.072718754410744,0.062236730009317,-0.082730479538441],[-0.051352102309465,-0.032414939254522,-0.0080449832603335],[0.081734955310822,-0.08228175342083,0.020826525986195]],[[0.0050798957236111,-0.058784369379282,-0.054577816277742],[0.029710792005062,0.0076760454103351,0.038565203547478],[-0.023204764351249,-0.06481446325779,-0.033527668565512]],[[0.02678438834846,0.094339273869991,-0.011429162696004],[-0.0010255464585498,-0.050161357969046,0.011200570501387],[-0.002577698091045,-0.057601556181908,-0.084469087421894]],[[0.059509091079235,0.043161295354366,-0.017724059522152],[-0.046311099082232,-0.0032876532059163,0.14218628406525],[-0.10393612086773,0.012537797912955,0.024675710126758]],[[-0.046519573777914,-0.09578425437212,-0.071909055113792],[0.11063777655363,-0.11697003245354,0.09641170501709],[-0.026813950389624,0.086530774831772,0.089868940412998]],[[0.082877323031425,0.029082646593451,0.0010595779167488],[0.028630619868636,-0.062622621655464,-0.01603314653039],[-0.060110196471214,-0.065457060933113,-0.049265410751104]],[[0.10112597048283,0.026105124503374,0.04086996614933],[-0.015949325636029,0.050603248178959,-0.057214301079512],[-0.04536497592926,-0.021401522681117,0.038265205919743]],[[0.0053471634164453,-0.048034224659204,0.029180780053139],[-0.0035151960328221,-0.12174358218908,0.023376269266009],[-0.037664271891117,-0.10281009227037,1.3008993846597e-06]],[[0.031399689614773,-0.043577868491411,0.045095726847649],[-0.025998273864388,0.0085404729470611,0.032913412898779],[0.004336073063314,0.065124601125717,0.007032860070467]],[[0.064676538109779,-0.065250799059868,0.030269797891378],[0.041567150503397,0.022516725584865,0.008938992395997],[-0.013609937392175,-0.012530595064163,0.045384764671326]],[[-0.049611497670412,-0.097293987870216,0.037683378905058],[0.0071299653500319,-0.11440756171942,0.01675103418529],[-0.0012744815321639,-0.14384485781193,-0.059663277119398]],[[0.070426970720291,0.044491544365883,-0.10969802737236],[0.0051031270995736,-0.0045798812061548,-0.13646887242794],[0.035482414066792,0.079114876687527,-0.13699018955231]],[[0.010380233637989,0.013868593610823,-0.013687397353351],[0.050234232097864,0.029857356101274,0.0015749533195049],[0.0041341013275087,-0.058259379118681,-0.033882137387991]],[[-0.089813485741615,-0.035691890865564,0.0089145638048649],[-0.012903346680105,0.0011101465206593,0.029776196926832],[-0.054318092763424,0.076253674924374,-0.046570532023907]],[[-0.08280561119318,-0.00026940525276586,0.0049517988227308],[-0.024362720549107,0.0063309497199953,-0.058266207575798],[0.060460187494755,0.063096307218075,0.11103673279285]],[[0.044638764113188,0.037549797445536,-0.018535817041993],[-0.086801700294018,0.0060389577411115,0.0042110583744943],[-0.0098127331584692,0.027688423171639,0.091304458677769]],[[-0.030444854870439,-0.0051339762285352,-0.00014305258810055],[-0.026916738599539,-0.019074808806181,0.050154000520706],[0.01627629250288,0.033221691846848,0.00082274689339101]]],[[[-0.024288216605783,0.033182229846716,-0.080597504973412],[0.076433226466179,0.093226477503777,-0.063160814344883],[-0.05288815125823,0.088435605168343,-0.13053707778454]],[[-0.091835275292397,-0.033516678959131,0.0045738215558231],[-0.061680588871241,-0.025888020172715,-0.064756661653519],[0.0059289783239365,-0.054285652935505,-0.09208906441927]],[[-0.10009478032589,-0.005894489120692,0.044594835489988],[-0.17535270750523,-0.05572897195816,0.052183452993631],[-0.022140277549624,0.035134743899107,0.034745208919048]],[[-0.018852030858397,-0.045390009880066,-0.013546992093325],[-0.036523152142763,-0.018696904182434,0.029763517901301],[-0.042196907103062,0.0044333999976516,0.15810799598694]],[[0.036566887050867,0.044273242354393,-0.089014112949371],[0.02540423348546,0.028008040040731,0.051786344498396],[0.001206090208143,0.032749317586422,0.18037296831608]],[[-0.0063890987075865,-0.05371630191803,0.040198270231485],[0.012046898715198,-0.019166607409716,-0.092247985303402],[-0.027750564739108,-0.06964149326086,-0.018657663837075]],[[0.023993872106075,0.037567041814327,0.047211777418852],[-0.0018621596973389,0.048745006322861,0.028699340298772],[-0.071685470640659,-0.076461158692837,0.0086754988878965]],[[0.087326109409332,-0.041011333465576,-0.079691626131535],[-0.03146505728364,-0.024733709171414,0.021617166697979],[0.099872097373009,0.024547150358558,-0.043277207762003]],[[0.10179812461138,0.026024552062154,-0.028967291116714],[0.032948940992355,-0.065620727837086,0.02660078369081],[0.019605539739132,-0.069555357098579,-0.037662450224161]],[[0.034857776015997,0.083033330738544,-0.029911762103438],[-0.0015811957418919,0.0047559691593051,-0.056079141795635],[0.00050469604320824,0.08614607155323,-0.048560168594122]],[[-0.075101390480995,-0.15658496320248,0.061639335006475],[0.04723758995533,-0.0010826927609742,-0.0066745318472385],[-0.057019758969545,-0.028619458898902,-0.15430833399296]],[[0.0067542777396739,0.099644161760807,-0.12722490727901],[0.049177654087543,0.072068803012371,-0.080794461071491],[-0.0078428778797388,0.009166594594717,-0.068625308573246]],[[0.12862952053547,-0.028147626668215,0.017347894608974],[0.001635619904846,-0.16752794384956,-0.044073216617107],[0.030936557799578,-0.0066858856007457,-0.095308922231197]],[[0.022757172584534,0.039836049079895,-0.11666512489319],[-0.014124731533229,-0.031023671850562,-0.25413578748703],[-0.015246769413352,-0.061309870332479,-0.021681508049369]],[[0.033785529434681,-0.019853919744492,0.10527584701777],[0.059399601072073,-0.090417608618736,-0.017091311514378],[-0.042813260108232,-0.090738534927368,0.099313229322433]],[[-0.0097366124391556,0.0045622428879142,0.0048423083499074],[0.027156349271536,0.033199205994606,0.033653881400824],[0.093841768801212,0.04656644910574,-0.10404057055712]],[[0.053809806704521,0.002945598680526,0.018862588331103],[0.013954023830593,0.069531485438347,0.085789538919926],[0.097956374287605,0.017185335978866,0.030578218400478]],[[-0.067593030631542,-0.019776429980993,0.041357647627592],[0.010320625267923,-0.022008744999766,-0.010871964506805],[-0.10011902451515,0.033076524734497,0.030965274199843]],[[0.034129720181227,0.080260448157787,0.013989318162203],[-0.080626539885998,-0.072980180382729,-0.094296760857105],[0.033972177654505,0.031715013086796,0.071676895022392]],[[-0.094148710370064,-0.029779510572553,0.099238738417625],[-0.081149034202099,-0.026833837851882,0.11887113749981],[-0.030988682061434,0.027201876044273,0.030865628272295]],[[0.022198788821697,-0.13326872885227,-0.18956610560417],[-0.021756833419204,-0.15070196986198,-0.11866385489702],[-0.0010666304733604,-0.19945542514324,-0.1713614910841]],[[-0.065318815410137,-0.062401656061411,-0.019633216783404],[-0.050666995346546,0.093128986656666,-0.050271522253752],[-0.019250581040978,0.040773686021566,-0.017289202660322]],[[0.089707992970943,0.10510034114122,0.052212737500668],[0.059249322861433,-0.010128424502909,-0.12663224339485],[-0.042139984667301,-0.00072629580972716,-0.1779543608427]],[[0.015663454309106,0.018801396712661,0.0093066031113267],[0.0096550388261676,0.16324546933174,0.14298801124096],[-0.063674166798592,0.034522343426943,0.076325312256813]],[[0.20820465683937,0.11696115136147,0.013666193000972],[0.04171097651124,0.067424699664116,-0.022582938894629],[-0.088583074510098,-0.10133045911789,-0.10481532663107]],[[0.0055186422541738,0.054548658430576,0.047742404043674],[-0.074980743229389,0.02943080291152,0.0035646862816066],[-0.042346704751253,0.018926214426756,0.042786613106728]],[[0.0038111531175673,-0.11336947232485,-0.063098892569542],[0.052394844591618,0.031917482614517,-0.028751833364367],[0.064285807311535,0.10107102245092,0.023078456521034]],[[0.059525270015001,0.025576066225767,0.050384398549795],[0.070880249142647,-0.027782564982772,-0.025521252304316],[0.061112705618143,-0.051317736506462,-0.015377367846668]],[[0.076121263206005,-0.03015679307282,0.0086933793500066],[0.10351823270321,-0.084786288440228,0.052393071353436],[0.030397981405258,-0.065386652946472,-0.040617745369673]],[[-0.009089931845665,0.023033609613776,0.11431542038918],[0.043493837118149,0.038790240883827,0.006762180943042],[-0.037714302539825,0.018333805724978,-0.28586912155151]],[[-0.074043489992619,0.01379375346005,-0.054609775543213],[-0.069188378751278,0.14942175149918,0.011332106776536],[-0.13533863425255,0.03827828541398,0.066054083406925]],[[-0.069369770586491,-0.1220315694809,-0.096375405788422],[0.019240751862526,-0.027925115078688,-0.027833415195346],[0.071588173508644,0.094810798764229,0.046069845557213]],[[0.064937934279442,0.058500073850155,0.04556741937995],[0.0044307396747172,0.031526289880276,0.012687045149505],[0.086919590830803,-0.013597496785223,0.022483533248305]],[[-0.045294959098101,-0.090577088296413,-0.048099361360073],[-0.055491048842669,-0.093236565589905,-0.10686697810888],[-0.10538522154093,0.1305269151926,-0.0026023725513369]],[[0.00308474060148,0.0066487397998571,0.22495137155056],[0.093696981668472,0.0053037749603391,0.10795379430056],[0.033861123025417,-0.033450156450272,0.027546633034945]],[[0.044911585748196,-0.0014692186377943,0.012388033792377],[-0.003740947926417,-0.014691689051688,-0.086851343512535],[0.0018317287322134,-0.036897268146276,-0.017272153869271]],[[0.068086735904217,-0.0089346198365092,-0.0613266043365],[-0.026262018829584,-0.015448708087206,-0.043798357248306],[0.019476111978292,0.049064856022596,-0.08787152916193]],[[-1.9163333490724e-05,0.033891044557095,0.01940687559545],[0.0035178232938051,-0.0031418246217072,-0.0606929063797],[0.0066850311122835,0.041557583957911,0.045189000666142]],[[-0.01984092220664,0.0074181887321174,0.052828341722488],[-0.049129880964756,0.021082168444991,-0.18584418296814],[0.015898222103715,0.0047644712030888,-0.031153349205852]],[[-0.24025401473045,-0.015402386896312,-0.041528072208166],[-0.019996806979179,-0.06670106947422,0.076550386846066],[0.063552431762218,0.12051801383495,0.15542362630367]],[[-0.13011486828327,0.05845694988966,0.011250643990934],[-0.0024368253070861,-0.078078024089336,-0.10091426223516],[0.011657081544399,0.10708447545767,0.045895371586084]],[[-0.11287924647331,-0.04751655831933,0.032044671475887],[-0.05979922786355,-0.058355312794447,-0.023115744814277],[-0.081004977226257,0.051150400191545,-0.020943989977241]],[[-0.071594648063183,0.073245733976364,-0.099313914775848],[0.019764486700296,0.085414446890354,-0.21002416312695],[0.084000319242477,-0.034085620194674,-0.19362825155258]],[[0.044561002403498,-0.011688785627484,0.036026746034622],[0.02400135807693,0.0025002579204738,-0.0071452585980296],[-0.025918625295162,-0.078450322151184,-0.0033093681558967]],[[-0.17740695178509,0.02148525044322,-0.046063046902418],[-0.038388825953007,0.0021808531600982,-0.11029649525881],[-0.10715889185667,0.052639324218035,-0.021070959046483]],[[-0.07394652813673,0.12000177055597,0.033162284642458],[-0.046980388462543,-0.0029244257602841,0.08808396011591],[-0.0019817431457341,-0.001754398457706,0.107292547822]],[[0.069401822984219,0.073913991451263,-0.047382649034262],[-0.027910728007555,-0.039156384766102,-0.076779834926128],[0.053889080882072,0.023523222655058,-0.0065826349891722]],[[0.074791856110096,-0.06808577477932,0.1016191765666],[-0.0023696508724242,-0.12594753503799,0.030897960066795],[0.051146432757378,-0.1070446819067,-0.11709704995155]],[[-0.010111086070538,-0.0011270419927314,0.057004950940609],[-0.047210983932018,0.012850454077125,-0.021168801933527],[0.033918078988791,0.067980758845806,-0.05161440372467]],[[0.088747613132,0.006487752776593,-0.027846241369843],[-0.04721088334918,0.00013173252227716,0.060635648667812],[0.025035213679075,-0.018618304282427,-0.034103613346815]],[[0.092508278787136,0.050330348312855,0.031961474567652],[-0.034201692789793,0.020229250192642,-0.014801782555878],[0.049860194325447,-0.0501659065485,0.043426647782326]],[[-0.016782194375992,-0.081269592046738,-0.048701249063015],[-0.014249659143388,0.019502263516188,0.031834501773119],[-0.026336755603552,0.11870498210192,0.12838359177113]],[[0.11524000018835,-0.018292061984539,0.055201429873705],[0.0074514346197248,0.0076414733193815,0.073127292096615],[0.043520171195269,0.10335373878479,0.079482488334179]],[[-0.015066721476614,-0.0081984829157591,0.020391503348947],[0.082446031272411,0.081091217696667,-0.083114020526409],[0.037231352180243,0.028150856494904,-0.077339105308056]],[[0.087091535329819,-0.039540838450193,0.059236485511065],[0.023243460804224,-0.092845179140568,0.018344143405557],[-0.032761726528406,-0.0038725167978555,0.10417552292347]],[[0.042386163026094,0.048526138067245,-0.13185879588127],[0.0044782129116356,0.0074765766039491,0.047044679522514],[-0.0075843119993806,-0.05285756662488,-0.034725658595562]],[[-0.073505789041519,-0.021741379052401,0.0088303936645389],[0.076184429228306,0.018485862761736,-0.06756704300642],[0.10778417438269,0.065791971981525,-0.024037947878242]],[[0.0012228678679094,0.00095960701582953,-0.025574266910553],[-0.079474575817585,-0.051664739847183,-0.06741888076067],[-0.0013552804011852,-0.16144080460072,-0.088171593844891]],[[0.051315154880285,-0.0062003321945667,0.10532364994287],[0.10783926397562,0.11545847356319,0.14162093400955],[-0.041630432009697,0.081734023988247,-0.06142470240593]],[[0.083529867231846,-0.047185786068439,-0.076936811208725],[0.15439605712891,-0.011341722682118,-0.09259058535099],[0.037400420755148,-0.048279013484716,0.0059759151190519]],[[-0.11195488274097,-0.007863400503993,-0.028303727507591],[-0.083045922219753,-0.0018542604520917,-0.10776782035828],[0.035848617553711,-0.00025329491472803,-0.038293849676847]],[[-0.073046065866947,-0.067457534372807,0.071249015629292],[-0.070117264986038,0.09766647964716,0.099589645862579],[0.016499763354659,0.023397158831358,0.11287669092417]],[[0.011424801312387,-0.051459770649672,0.039133202284575],[-0.077650353312492,-0.080576956272125,0.0069370418787003],[0.0062700025737286,0.036662802100182,-0.0029595068190247]],[[0.039604902267456,0.0030033665243536,-0.06956484913826],[-0.020659288391471,0.0080870576202869,-0.091656997799873],[-0.069262094795704,0.0048660561442375,0.027656704187393]]],[[[-0.10180485248566,-0.098210491240025,-0.074436329305172],[-0.022743871435523,0.0027464623562992,0.070034928619862],[0.010426769964397,-0.025835143402219,0.030062716454268]],[[-0.001643531373702,0.078216850757599,0.10302928090096],[-0.020029317587614,0.045854024589062,0.064641185104847],[-0.044397629797459,-0.082627363502979,-0.043782670050859]],[[-0.052178502082825,0.001367500051856,0.068376161158085],[-0.019530972465873,-0.052009422332048,-0.0081895543262362],[-0.12324757874012,-0.010353402234614,0.016660906374454]],[[-0.052261553704739,-0.03866870328784,0.052156377583742],[0.0018704219255596,-0.01108315680176,-0.081794649362564],[-0.11303026974201,-0.051902897655964,0.031637389212847]],[[-0.0061182733625174,0.0062764422036707,0.090015046298504],[-0.14990490674973,0.009649658575654,-0.094645492732525],[-0.044507805258036,0.008883117698133,-0.082175143063068]],[[-0.034108649939299,0.035244032740593,-0.025791428983212],[-0.023524209856987,0.0048662447370589,0.050622884184122],[-0.12411902099848,-0.061690170317888,-0.013627733103931]],[[-0.026561055332422,0.0033317722845823,-0.031361136585474],[0.040718384087086,-0.023623868823051,0.01732811331749],[-0.12684699892998,0.0054893237538636,-0.057231161743402]],[[0.0072058984078467,-0.052749626338482,-0.052319884300232],[-0.034947298467159,0.075997740030289,-0.032070081681013],[-0.045532178133726,-0.048094313591719,-0.099272854626179]],[[-0.038657758384943,0.021780710667372,-0.0019857101142406],[-0.076336689293385,-0.024852743372321,-0.00065935618476942],[0.013022443279624,0.002127074636519,-0.039863836020231]],[[0.013576664030552,0.0030365148559213,-0.047811184078455],[0.026975907385349,-0.034496318548918,0.08478507399559],[-0.016700468957424,0.023512532934546,0.0020139932166785]],[[0.0063605383038521,-0.049199320375919,0.086702242493629],[0.014702036045492,-0.073895923793316,-0.019924469292164],[0.0020493911579251,0.086020261049271,-0.02032326720655]],[[-0.12579751014709,0.0010386710055172,0.007828182540834],[-0.081927441060543,0.0033459053374827,-0.012331273406744],[0.01675465516746,-0.061831045895815,0.026831423863769]],[[-0.027657065540552,-0.098504886031151,-0.014108381234109],[0.026283601298928,-0.074513405561447,-0.035036079585552],[-0.066514939069748,-0.10879621654749,-0.06339680403471]],[[-0.013583543710411,0.00092828099150211,-0.0056550824083388],[-0.0035203220322728,-0.028743673115969,-0.015694752335548],[0.070010289549828,0.018520828336477,0.012296641245484]],[[0.05328394472599,0.050434187054634,0.063615538179874],[0.0426588319242,-0.0072216894477606,0.1009319499135],[0.027866173535585,-0.031620509922504,-0.034601215273142]],[[-0.0007006271625869,0.089546225965023,-0.0073743532411754],[0.028841603547335,-0.0063459076918662,0.0066148908808827],[0.076524890959263,0.00088667223462835,0.073956876993179]],[[-0.12171085178852,-0.026720941066742,-0.090039633214474],[0.097438327968121,-0.11511994153261,-0.097153976559639],[0.038989271968603,0.018681548535824,-0.021869732066989]],[[0.034621313214302,0.00072353100404143,0.024544542655349],[0.0061053093522787,0.027163900434971,0.071743115782738],[-0.13289718329906,-0.061897717416286,0.033903241157532]],[[-0.030919956043363,-0.064110495150089,-0.019609602168202],[0.046626068651676,-0.031573224812746,0.035727601498365],[-0.018797798082232,-0.015826765447855,-0.022850206121802]],[[0.024928145110607,-0.0061368178576231,0.015433694235981],[-0.015262358821929,-0.014161610975862,-0.020682770758867],[0.01927481777966,0.018058670684695,-0.029303943738341]],[[0.025425795465708,0.036695688962936,0.027040606364608],[0.004698121920228,0.021971428766847,-0.0044299736618996],[-0.044283986091614,0.0010397175792605,0.014267273247242]],[[-0.086188077926636,0.006344847381115,0.010507782921195],[0.02311647683382,-0.0061539732851088,-0.017555775120854],[0.015711953863502,0.009088272228837,0.0090644927695394]],[[0.047780983150005,0.00017651816597208,0.035310063511133],[-0.061284687370062,0.081952810287476,0.055635757744312],[-0.088182054460049,-0.048384979367256,-0.0015871399082243]],[[0.041034989058971,0.026081800460815,0.067683346569538],[-0.00017150831990875,-0.10356000065804,-0.070371262729168],[0.024512995034456,-0.001871838234365,0.037508949637413]],[[-0.0097436103969812,-0.03632378205657,-0.025485279038548],[0.0054272888228297,-0.036122437566519,-0.0564542748034],[0.027302499860525,0.046675689518452,-0.016145499423146]],[[0.02779383212328,0.058968860656023,0.098419331014156],[0.025926994159818,0.048434384167194,0.024106273427606],[-0.034232925623655,-0.0091423634439707,0.033696576952934]],[[-0.080880768597126,0.074085414409637,-0.016395919024944],[-0.097138129174709,-0.0036020781844854,0.025113351643085],[0.082535058259964,-0.010412161238492,-0.0045007234439254]],[[0.010740453377366,-0.031292781233788,-0.02428999915719],[0.039731372147799,0.038430262356997,0.093099616467953],[-0.058754622936249,-0.068890035152435,0.032462045550346]],[[-0.14021243155003,-0.038059867918491,-0.039139710366726],[-0.086465433239937,-0.049412280321121,-0.015245598740876],[-0.059225607663393,-0.039561286568642,0.027261633425951]],[[0.055958792567253,0.042574182152748,-0.037835896015167],[0.044617358595133,0.008681008592248,-0.029173232614994],[-0.027015676721931,0.041020423173904,-0.027324618771672]],[[0.10353749245405,-0.027432788163424,0.0016631721518934],[0.023050345480442,0.021874014288187,0.0091861933469772],[0.052889384329319,0.03904765099287,-0.030924016609788]],[[-0.038218162953854,0.041560526937246,-0.018845768645406],[0.042038846760988,-0.017058284953237,0.033935807645321],[-0.01910980604589,0.089229121804237,-0.023306040093303]],[[-0.030804071575403,-0.0099143870174885,-0.10296730697155],[-0.079970516264439,-0.059270139783621,-0.029900519177318],[-0.055818125605583,0.04971731081605,0.030659714713693]],[[0.033323392271996,0.026719149202108,-0.031750064343214],[-0.089487858116627,0.17786577343941,0.0097350627183914],[0.032118130475283,-0.10267951339483,-0.038520593196154]],[[0.042593121528625,0.081663653254509,0.0039355894550681],[-0.18810734152794,-0.032770127058029,-0.0010973875178024],[-0.12023319303989,-0.13315038383007,-0.078668855130672]],[[-0.015288240276277,-0.041835144162178,0.0077797290869057],[-0.05820931121707,-0.020159931853414,-0.0096086291596293],[0.037782076746225,0.022413792088628,0.075829453766346]],[[0.035995978862047,0.036034692078829,-0.019539065659046],[0.018096018582582,0.055578242987394,-0.064516194164753],[0.11007461696863,0.0074715670198202,-0.065888926386833]],[[-0.050829093903303,0.07007023692131,0.18691624701023],[0.026899799704552,-0.0060590002685785,0.090148434042931],[0.02092544361949,-0.045394085347652,0.07404200732708]],[[0.06028738617897,-0.013855705969036,0.0035608247853816],[0.0062212506309152,0.010973748750985,0.077372364699841],[-0.075881607830524,-0.11759351193905,-0.054618779569864]],[[-0.072294905781746,0.033558242022991,0.12127853929996],[-0.030267015099525,0.0078669982030988,0.010166858322918],[0.077840037643909,-0.025079116225243,-0.11374319344759]],[[0.016709923744202,0.0038102448452264,-0.075160197913647],[-0.082234613597393,0.028175489977002,0.025291331112385],[0.10880976170301,-0.05924341455102,0.021255653351545]],[[0.033050876110792,0.043542772531509,0.063256084918976],[-0.01196068059653,-0.025656083598733,0.027760544791818],[-0.091268807649612,-0.11603626608849,-0.052466489374638]],[[-0.046917725354433,0.0078035164624453,-0.0020798314362764],[0.11613786220551,-0.045634843409061,-0.077527679502964],[0.032106772065163,-0.01048616040498,-0.032989762723446]],[[0.15197645127773,-0.0062154275365174,-0.031512524932623],[0.03589516505599,0.050400577485561,-0.015242816880345],[-0.21246555447578,-0.060174763202667,-0.029077038168907]],[[-0.034015826880932,-0.088066764175892,0.0024126342032105],[-0.038672178983688,-0.029639266431332,-0.011139454320073],[0.05220677703619,-0.051667917519808,-0.020999738946557]],[[0.041400749236345,0.036380715668201,0.0074717765673995],[-0.02928626537323,0.023002108559012,0.043180305510759],[-0.084371097385883,-0.15075793862343,-0.0056798746809363]],[[-0.01659413985908,0.026044938713312,-0.050790246576071],[0.0085320435464382,0.041993349790573,-0.044945530593395],[-0.016414120793343,-0.024552267044783,0.0052875746041536]],[[0.034439589828253,0.057544518262148,-0.029529560357332],[-0.028863241896033,0.0093275355175138,0.040587428957224],[-0.014143280684948,-0.0078706229105592,-0.05634892731905]],[[0.0025310649070889,0.051970276981592,-0.019152199849486],[-0.012418067082763,0.064804226160049,0.020769720897079],[-0.10838297754526,-0.035959262400866,-0.025923620909452]],[[-0.080598808825016,0.046783693134785,0.041163519024849],[-0.14901974797249,0.00050679472042248,0.024798490107059],[-0.060859717428684,-0.16411592066288,-0.044110044836998]],[[0.038118068128824,0.094681866466999,0.062807165086269],[-0.047891676425934,0.042499475181103,-0.0010855249129236],[-0.10506818443537,-0.099099449813366,0.03224316239357]],[[0.095653705298901,-0.050976559519768,-0.15622015297413],[0.16054545342922,0.12521821260452,-0.030200786888599],[0.17468948662281,0.2309402525425,0.10900668799877]],[[0.03620956838131,0.017448633909225,0.0037649476435035],[-0.025499019771814,0.018419247120619,-0.023571779951453],[-0.010204910300672,-0.012151006609201,-0.057148661464453]],[[0.024998901411891,-0.10986521095037,0.0051120710559189],[-0.042204685509205,0.056362189352512,-0.081302538514137],[-0.0038147361483425,0.062706559896469,0.14221584796906]],[[-0.0045182663016021,0.046198811382055,-0.022753117606044],[0.0081920092925429,0.0077258758246899,-0.01877217926085],[-0.10821337252855,0.10686183720827,0.028523629531264]],[[0.074029237031937,-0.007706846576184,0.027178900316358],[-0.059904251247644,0.017756562680006,0.0087660979479551],[-0.064376004040241,-0.10405973345041,-0.020771693438292]],[[0.033209670335054,-0.088023953139782,-0.090307205915451],[-0.043731287121773,0.022260179743171,-0.0400594137609],[0.0074613420292735,-0.01840846799314,0.030194655060768]],[[-0.0076171373948455,-0.045355755835772,-0.0013156466884539],[-0.072328120470047,-0.0037865058984607,0.053892910480499],[0.04196260124445,-0.14506325125694,-0.030129846185446]],[[0.027263570576906,-0.079686239361763,-0.093499526381493],[0.1460183262825,0.064107835292816,-0.065634243190289],[0.061688579618931,0.12239707261324,0.056145250797272]],[[-0.032495226711035,0.037210617214441,0.025252094492316],[-0.048734068870544,0.014785551466048,0.028261097148061],[-0.002816213760525,0.026984203606844,-0.042720951139927]],[[0.057248432189226,-0.056574296206236,0.040993936359882],[-0.050080239772797,-0.027602527290583,0.0099618881940842],[0.018633490428329,-0.015780452638865,0.077897891402245]],[[-0.019267437979579,0.031467013061047,0.039636928588152],[-0.098545476794243,-0.11234867572784,0.068657346069813],[0.14226207137108,0.021875029429793,0.034816607832909]],[[0.0042281323112547,0.0034014680422843,0.0075531774200499],[-0.00024364769342355,0.028726860880852,-0.0019364897161722],[-0.1017303019762,0.059154726564884,0.056923974305391]],[[-0.060562387108803,0.044389858841896,0.061105784028769],[-0.0044009853154421,0.028727127239108,0.021546475589275],[0.019502609968185,-0.079669408500195,-0.048880890011787]]],[[[0.049916215240955,0.1806552708149,0.19571210443974],[0.0023145258892328,0.090009734034538,0.012012206949294],[-0.029371213167906,-0.13845269382,0.033784195780754]],[[-0.005831612739712,0.054558519273996,-0.092281438410282],[-0.096716776490211,0.064557507634163,-0.017055505886674],[0.021562280133367,-0.0032277880236506,0.052678130567074]],[[0.045325141400099,0.017581755295396,-0.048959538340569],[0.035609897226095,-0.074664913117886,0.036359317600727],[-0.071320898830891,-0.056082833558321,-0.09494972974062]],[[-0.0076594660058618,0.034750435501337,-0.010263524018228],[0.0083450702950358,0.056236952543259,-0.050076499581337],[0.073890097439289,0.00095959164900705,0.056871857494116]],[[-0.093856833875179,0.13259649276733,0.026544606313109],[0.053961060941219,0.096122890710831,-0.070306539535522],[0.022257262840867,-0.028225190937519,0.0055955094285309]],[[-0.032697439193726,0.033310029655695,-0.044567588716745],[0.0067985681816936,-0.00079547456698492,0.036654692143202],[-0.057017382234335,-0.075270891189575,0.048280596733093]],[[0.047858376055956,-0.0139797963202,0.04250380769372],[-0.025395745411515,-0.051944222301245,-0.029195960611105],[-0.11373601853848,-0.082029797136784,-0.036795496940613]],[[-0.064116947352886,-0.098302908241749,0.10012166947126],[-0.020636739209294,-0.014395412057638,0.02369399368763],[-0.10419080406427,-0.064651340246201,0.061520829796791]],[[0.0032996027730405,0.075258493423462,0.091184079647064],[-0.10651872307062,-0.033832833170891,0.017686372622848],[0.0045434269122779,-0.029146509245038,-0.047703444957733]],[[0.059733022004366,0.046687584370375,0.15133498609066],[0.037748660892248,0.043953754007816,0.024759432300925],[-0.012280545197427,-0.051675707101822,0.027552396059036]],[[0.073798291385174,-0.048884395509958,-0.2186763882637],[-0.097314536571503,-0.061554025858641,0.045609761029482],[-0.062327485531569,0.039554864168167,0.076562069356441]],[[0.013995766639709,-0.019615044817328,-0.12939056754112],[0.0068160914815962,-0.043487071990967,-0.0057539218105376],[-0.17114312946796,-0.16195222735405,-0.027158593758941]],[[-0.075804598629475,0.035319183021784,0.1325798034668],[0.029597504064441,0.0097436923533678,0.050917413085699],[0.058273553848267,-0.03242751955986,-0.091311626136303]],[[0.079598344862461,-0.049188267439604,-0.04800033941865],[0.01245147921145,0.012388065457344,0.066088899970055],[0.0052330796606839,0.13294258713722,0.022899221628904]],[[-0.026037817820907,-0.18679600954056,0.030718574300408],[-0.077261075377464,-0.089845523238182,0.045714031904936],[-0.031709272414446,0.0022448862437159,0.033648818731308]],[[0.049553535878658,-0.0087654469534755,0.13085032999516],[-0.10124019533396,-0.13811860978603,0.025574404746294],[0.018645636737347,-0.0079614296555519,-0.0016041732160375]],[[0.022152503952384,0.012777884490788,-0.048649802803993],[0.0080426689237356,0.02888329140842,-0.017432365566492],[-0.15059638023376,-0.062352497130632,0.03381297364831]],[[0.021368319168687,0.097827143967152,0.030275173485279],[-0.041111014783382,-0.075338616967201,-0.023671129718423],[-0.0099468817934394,0.059377320110798,0.019584821537137]],[[-0.012578219175339,0.065354637801647,0.043652750551701],[0.0049638645723462,-0.097872354090214,-0.074055932462215],[0.14450301229954,-0.038065642118454,0.045444309711456]],[[-0.020931541919708,0.030040577054024,-0.031671352684498],[-0.01885549351573,0.0014062214177102,-0.041218772530556],[0.016510225832462,0.018329301849008,0.050462625920773]],[[0.037261262536049,-0.086915485560894,0.038080409169197],[-0.035586133599281,-0.009597678668797,-0.0091045843437314],[-0.019838783890009,0.027683733031154,0.012509408406913]],[[0.033744286745787,0.0089004337787628,0.054212562739849],[-0.079303696751595,0.035885144025087,0.0039551225490868],[-0.007943888194859,-0.046475365757942,-0.068229101598263]],[[-0.069117061793804,-0.042216401547194,-0.045403607189655],[-0.057406909763813,0.032198388129473,0.0012667323462665],[0.031395517289639,-0.034708444029093,-0.10098294168711]],[[0.085511289536953,-0.1855428814888,-0.069140322506428],[0.0040793586522341,0.097014464437962,0.17221923172474],[-0.009249534457922,0.068565234541893,0.05165671557188]],[[-0.039870206266642,-0.021292816847563,0.02389619499445],[-0.03506688028574,0.045208986848593,0.025927182286978],[-0.02688099257648,0.077532291412354,-0.085730902850628]],[[-0.0063703344203532,0.072127908468246,-0.017382526770234],[0.022188091650605,0.049982387572527,-0.059567995369434],[-0.017473364248872,0.098470821976662,0.02345610037446]],[[-0.076070666313171,-0.016260780394077,0.041662324219942],[0.049792692065239,0.055440541356802,0.036003932356834],[-0.11515215784311,-0.069877862930298,-0.030666690319777]],[[-0.016052631661296,0.012922992929816,0.071935765445232],[0.058029893785715,0.017645580694079,-0.0049835257232189],[-0.0078537752851844,-0.021246843039989,-0.096918359398842]],[[0.048073045909405,0.06779458373785,0.0025755481328815],[0.0588075555861,0.025044923648238,-0.022291082888842],[-0.051285617053509,-0.042801436036825,0.04352630674839]],[[-0.16893710196018,0.055283855646849,0.10737288743258],[-0.034751739352942,-0.075443409383297,0.017526442185044],[-0.13938142359257,0.069135628640652,-0.055154554545879]],[[0.062964409589767,-0.052812397480011,-0.11893453449011],[0.044270150363445,-0.024356549605727,-0.076795227825642],[0.033387362957001,-0.015935052186251,0.099693790078163]],[[0.044369090348482,-0.10228874534369,-0.0066145602613688],[0.045025885105133,-0.038227885961533,0.024176985025406],[0.05734982714057,-0.030414262786508,-0.014338879846036]],[[-0.034973371773958,-0.092340610921383,-0.11888929456472],[-0.050170782953501,-0.0029981636907905,0.01012933626771],[-0.049239318817854,-0.0088601661846042,-0.02887824177742]],[[0.017259664833546,-0.031967435032129,0.099431961774826],[0.044623926281929,-0.16155156493187,0.0011055417126045],[0.047903880476952,-0.16108269989491,-0.054320961236954]],[[-0.019911255687475,-0.0060232719406486,0.039739996194839],[0.0040061166509986,-0.047223724424839,-0.051224775612354],[-0.032521836459637,-0.047743782401085,-0.021247297525406]],[[0.018838653340936,0.016804352402687,0.12752994894981],[-0.0086303306743503,0.077014975249767,-0.022750513628125],[0.017107829451561,0.011364536359906,-0.01395027153194]],[[0.052258167415857,0.097027748823166,0.23607581853867],[-0.08704386651516,0.077241875231266,-0.039195626974106],[0.026306010782719,-0.032962143421173,0.023032177239656]],[[0.039354089647532,-0.084582656621933,-0.041979935020208],[0.053407542407513,-0.03874696791172,0.05170600861311],[0.05131921172142,-0.088041312992573,-0.062003612518311]],[[-0.010527333244681,-0.13422082364559,-0.073548600077629],[0.038160149008036,0.083654046058655,0.033378981053829],[-0.033299539238214,-0.012006630189717,-0.11676564067602]],[[-0.032326608896255,0.081841222941875,-0.044682778418064],[-0.021986125037074,-0.0076617854647338,-0.008057089522481],[-0.044180020689964,-0.0096121849492192,-0.022170096635818]],[[-0.00038441701326519,-0.012766680680215,0.13744741678238],[-0.0058422335423529,0.096131362020969,-0.039671365171671],[-0.070347622036934,-0.038669072091579,0.024342386052012]],[[0.020601324737072,-0.08648319542408,-0.12800033390522],[0.088974609971046,-0.0011632695095614,-0.11152315884829],[-0.064345695078373,-0.097235441207886,0.084334306418896]],[[0.10754976421595,-0.020140014588833,0.020452616736293],[0.014067663811147,-0.10990606248379,0.094308950006962],[0.059575315564871,-0.086043246090412,-0.01116902474314]],[[-0.20461484789848,-0.098210662603378,0.059099838137627],[0.020963178947568,0.035275634378195,0.054119680076838],[0.087172083556652,0.0014583682641387,-0.10150167346001]],[[-0.023961994796991,0.1070621162653,-0.11808770895004],[-0.081046842038631,0.14940278232098,-0.1108028665185],[0.059936139732599,-0.025730453431606,-0.090794242918491]],[[-0.082786343991756,-0.10443264991045,-0.16065283119678],[0.085094965994358,-0.12249258905649,-0.043096825480461],[-0.022555394098163,-0.094426020979881,0.084885224699974]],[[0.066018804907799,-0.20412103831768,-0.056555550545454],[-0.04878918454051,-0.047631066292524,-0.019159628078341],[0.046791154891253,-0.10800632834435,-0.0037806057371199]],[[0.15487967431545,-0.041295684874058,0.022377293556929],[-0.018473522737622,0.06299090385437,-0.047233279794455],[0.015402219258249,0.053031757473946,0.074687652289867]],[[-0.01016516238451,-0.045259092003107,-0.041500434279442],[-0.014699194580317,0.070250883698463,-0.0638817101717],[-0.019515288993716,-0.02572582475841,-0.11436212062836]],[[0.059223733842373,-0.018670160323381,0.06803497672081],[0.073212146759033,0.0070740031078458,0.051690388470888],[0.024600673466921,-0.10044747591019,-0.024952763691545]],[[-0.10675496608019,0.21169474720955,-0.05732624605298],[0.0020106192678213,-0.043125838041306,-0.073107004165649],[-0.051485426723957,0.13524527847767,0.014852872118354]],[[-0.049122467637062,0.058134496212006,0.17505416274071],[0.10893534123898,0.045740406960249,0.039515145123005],[0.10579970479012,0.067526042461395,0.031025126576424]],[[-0.024048024788499,-0.078153841197491,-0.081103153526783],[-0.056992202997208,-0.10791585594416,0.05224072933197],[-0.023347597569227,-0.035909209400415,0.032590325921774]],[[0.037278987467289,0.02442135848105,-0.13864998519421],[-0.075632505118847,-0.024821879342198,-0.013015282340348],[0.088171020150185,0.040898870676756,0.04193152859807]],[[-0.0021575090941042,-0.044381137937307,-0.087533041834831],[0.0031913141719997,0.03357008844614,-0.099607929587364],[-0.0990359634161,-0.0092123197391629,-0.12049230188131]],[[0.01310449372977,-0.02309319935739,0.11365170031786],[0.0087037840858102,-0.10826793313026,0.010746669955552],[-0.11420684307814,0.087143704295158,0.018719224259257]],[[0.059155952185392,0.18985213339329,-0.024233469739556],[0.034031637012959,0.014494997449219,-0.086379610002041],[-0.05785283818841,-0.04271911457181,0.087726272642612]],[[-0.12728376686573,0.020407922565937,0.023735169321299],[-0.045135479420424,0.0027630769181997,-0.14223170280457],[-0.045393764972687,-0.10263015329838,-0.11621302366257]],[[-0.079776100814342,0.017664095386863,-0.00089399528224021],[-0.034545917063951,0.060800652951002,-0.0025477961171418],[0.014835813082755,-0.050029713660479,0.035418212413788]],[[0.0097145847976208,-0.0082676326856017,0.010514217428863],[0.0086591420695186,0.018942022696137,0.045071817934513],[-0.055214557796717,-0.02089194022119,-0.0040409923531115]],[[-0.058752618730068,0.12053413689137,0.090621270239353],[-0.014021627604961,0.036874320358038,0.040544826537371],[-0.076697938144207,0.042412530630827,0.0044129421003163]],[[0.01384056173265,-0.023903926834464,-0.10628429055214],[-0.034333441406488,0.079989150166512,-0.096048802137375],[0.046814449131489,-0.022546337917447,-0.18770000338554]],[[0.052466157823801,-0.081858739256859,-0.092343658208847],[-0.069394491612911,0.027049023658037,-0.0026151454076171],[-0.002823676681146,0.049130167812109,-0.051239427179098]],[[0.066209644079208,-0.059065882116556,0.026616645976901],[-0.0027719847857952,0.028212221339345,-0.041938100010157],[0.067165285348892,-0.13664521276951,-0.036161679774523]]],[[[0.05883751064539,0.061623495072126,-0.076755218207836],[-0.027829438447952,-0.10361393541098,-0.0034775848034769],[0.015228000469506,0.09038907289505,0.069558143615723]],[[0.079117894172668,-0.0034969029948115,-0.026660047471523],[0.13347153365612,-0.057558070868254,0.025918215513229],[0.15303629636765,0.078850097954273,0.072224512696266]],[[-0.040163531899452,-0.055379763245583,0.036790233105421],[-0.096610300242901,-0.036161180585623,-0.0046818228438497],[0.023532999679446,0.027944780886173,0.059321705251932]],[[-0.016779314726591,-0.037916161119938,0.025002267211676],[-0.0045000407844782,-0.048319708555937,0.019343826919794],[-0.063698470592499,0.030449919402599,-0.032999906688929]],[[-0.055837035179138,-0.08822226524353,-0.052650153636932],[0.084273003041744,0.016471717506647,0.11999483406544],[0.015210739336908,-0.045490570366383,-0.033364776521921]],[[-0.064959369599819,0.075009450316429,-0.0098164398223162],[-0.061649702489376,-0.17196114361286,-0.010038606822491],[-0.0026367239188403,-0.010289455763996,0.045376922935247]],[[-0.052577238529921,0.028211386874318,0.034207243472338],[-0.043580710887909,-0.064030475914478,0.031124899163842],[0.020999636501074,0.027218064293265,0.039680130779743]],[[0.097159616649151,0.10193637013435,0.018632480874658],[0.054804589599371,0.069441944360733,0.080688364803791],[-0.10423714667559,-0.03827241063118,0.084426611661911]],[[0.018186444416642,-0.025473743677139,0.032913725823164],[-0.02336691506207,0.0064079635776579,0.053426314145327],[-0.076134592294693,0.0759487003088,0.025959877297282]],[[-0.12568235397339,0.02315740659833,-0.045188900083303],[-0.045554723590612,0.016576280817389,0.037652436643839],[-0.12143756449223,0.036910247057676,0.063942238688469]],[[-0.010793194174767,-0.01124213822186,-0.020875845104456],[-0.030219934880733,-0.0085888262838125,0.030230896547437],[-0.010048271156847,0.036099452525377,-0.056758608669043]],[[-0.13816519081593,-0.051651261746883,-0.031960163265467],[-0.098518878221512,-0.070014335215092,0.031419020146132],[-0.05406266450882,0.0077443025074899,-0.086254760622978]],[[-0.010946245864034,0.0072036604396999,-0.022941695526242],[0.025440253317356,-0.016660904511809,0.075025789439678],[-0.014815812930465,-0.05479472130537,0.082751877605915]],[[-0.15630865097046,-0.05900539830327,0.018371922895312],[0.053985271602869,0.027700681239367,0.084695674479008],[0.070080548524857,0.0063727851957083,0.0083504617214203]],[[-0.11805964261293,-0.020254964008927,0.030431881546974],[-0.10466819256544,-0.020681496709585,0.00029308150988072],[-0.076242357492447,0.027812942862511,-0.025269513949752]],[[0.011713974177837,0.0071128159761429,0.073465138673782],[0.065512023866177,0.055864222347736,0.0016847300576046],[-0.039848737418652,0.028243433684111,0.0047878250479698]],[[-0.08803316950798,-0.13801774382591,-0.0087055694311857],[0.010196779854596,-0.0092828515917063,0.10881634056568],[0.014685596339405,0.0044933403842151,0.06695993244648]],[[-0.083885177969933,-0.054603800177574,-0.041388049721718],[-0.019183469936252,0.037804551422596,0.1103792116046],[0.022843489423394,0.0042832880280912,0.1108199134469]],[[-0.037048365920782,0.077195979654789,0.017136253416538],[0.0097659481689334,0.011273749172688,-0.062756650149822],[-0.020127331838012,0.032034773379564,0.028715366497636]],[[-0.0033300251234323,-0.036671008914709,-0.0026847328990698],[0.01563392393291,0.012093789875507,-0.0064294720068574],[0.011949937790632,-0.012045993469656,0.011398522183299]],[[-0.0068303919397295,0.044301200658083,0.024299774318933],[0.021010370925069,0.015531719662249,0.077494867146015],[-0.048712935298681,-0.14695711433887,0.03005039691925]],[[0.11470414698124,-0.0051213409751654,0.032380275428295],[-0.098204210400581,0.045437164604664,0.087955221533775],[-0.0036665822844952,0.049040611833334,-0.021372953429818]],[[-0.051086872816086,-0.029024604707956,-0.053578823804855],[0.0017954827053472,0.058462746441364,0.042801529169083],[-0.090347953140736,0.070794500410557,0.06814094632864]],[[0.027744580060244,0.12377317994833,0.075046144425869],[0.027801930904388,0.056572001427412,0.11479938030243],[0.084158591926098,-0.0048451027832925,-0.11074513942003]],[[-0.0236672218889,-0.058297291398048,0.0028294867370278],[-0.071868769824505,-0.0051572928205132,-0.1112943738699],[-0.027045963332057,0.093618601560593,-0.01698131673038]],[[-0.055369023233652,-0.0063837287016213,0.038927659392357],[-0.01856929063797,-0.013655558228493,-0.048620816320181],[0.0077060614712536,0.028637859970331,-0.018168954178691]],[[-0.068654097616673,0.039333295077085,0.1190719678998],[-0.04443221911788,0.035860240459442,-0.021932886913419],[0.075940653681755,0.056390546262264,0.14706474542618]],[[-0.025652261450887,0.093200869858265,-0.051620911806822],[-0.044215966016054,-0.064586281776428,0.025834245607257],[0.052922587841749,0.091237813234329,0.0081410221755505]],[[-0.024515135213733,-0.12291315197945,-0.0016664692666382],[-0.022503167390823,0.029254633933306,-0.040002536028624],[0.076401270925999,0.092351518571377,0.043708004057407]],[[0.037606243044138,0.15523870289326,-0.036482449620962],[-0.019238159060478,0.052837386727333,0.011891837231815],[-0.058544594794512,-0.023356495425105,0.024773159995675]],[[0.073516838252544,0.031469944864511,-0.0062304423190653],[0.047815673053265,-0.066924422979355,0.050711490213871],[-0.011674794368446,-0.033755090087652,-0.046802066266537]],[[-0.015401787124574,0.060956619679928,0.0492626093328],[-0.025873195379972,-0.12112177908421,-0.066847831010818],[-0.0023662839084864,-0.092726200819016,-0.06734536588192]],[[0.040312476456165,-0.031736705452204,0.043612323701382],[-0.044768251478672,-0.012901313602924,0.033003877848387],[-0.0045086136087775,-0.047648325562477,0.011820564046502]],[[0.036016572266817,-0.0090209981426597,0.036114487797022],[-0.15406677126884,-0.00010129762085853,0.077530935406685],[-0.0032576143275946,-0.063077360391617,0.029168182983994]],[[0.052946418523788,-0.035276971757412,-0.18510003387928],[0.023957304656506,0.057658284902573,-0.082250371575356],[0.015246855095029,0.013843035325408,0.06654304265976]],[[-0.04631357267499,0.0053726420737803,0.061817992478609],[0.030604768544436,0.043336227536201,-0.031475152820349],[-0.0013705041492358,-0.020002422854304,0.042088814079762]],[[0.066760495305061,-0.012833330780268,-0.035502847284079],[-0.04267730563879,0.11773760616779,0.0023479824885726],[0.05235692858696,0.013732395134866,-0.077076524496078]],[[-0.11889457702637,0.024583367630839,-0.035692315548658],[0.067269295454025,0.0041532767936587,0.018142001703382],[-0.008711289614439,0.049612481147051,0.010023456998169]],[[0.10960298776627,0.030303137376904,0.0029879789799452],[0.00010658703104127,0.099103219807148,0.029519701376557],[-0.047965932637453,0.033059395849705,0.08324345946312]],[[0.015383063815534,-0.0075207427144051,0.099912278354168],[0.020765244960785,-0.040787518024445,-0.03819826617837],[-0.085390686988831,0.0310825612396,-0.027466222643852]],[[-0.10437705367804,0.0040717963129282,0.078346684575081],[-0.019088823348284,0.045077979564667,0.11538749188185],[-0.035087566822767,-0.0066251289099455,0.0029392319265753]],[[0.077929057180882,0.081395223736763,-0.054139375686646],[-0.0039705876260996,-0.061155594885349,-0.039493095129728],[0.035298392176628,0.12773707509041,-0.053307894617319]],[[0.0067121530883014,-0.058531880378723,0.026019461452961],[0.018583146855235,-0.0044458312913775,0.04186999425292],[0.022967521101236,-0.13288660347462,-0.051866374909878]],[[0.089749351143837,0.058334745466709,-0.028895376250148],[-0.097353957593441,0.1051080673933,0.055749230086803],[-0.078100301325321,-0.13843603432178,-0.048159133642912]],[[0.010818004608154,0.035903919488192,-0.028030820190907],[-0.050393991172314,-0.034795194864273,0.086807981133461],[0.03131240606308,0.0019164726836607,-0.0060968641191721]],[[-0.024171762168407,-0.030976301059127,0.025337964296341],[-0.048049882054329,0.027287259697914,-0.17288860678673],[0.044000420719385,-0.056458503007889,0.0080048153176904]],[[0.019041722640395,0.05023841932416,0.013523336499929],[0.053221628069878,0.036500755697489,0.041980344802141],[-0.0043033245019615,0.010085236281157,-0.04422315582633]],[[0.046917840838432,-0.073924638330936,-0.03972551971674],[-0.043702106922865,0.087184324860573,0.023006865754724],[0.082415111362934,-0.015069137327373,0.11625488102436]],[[-0.096236251294613,0.0012192592257634,-0.025937201455235],[-0.034930478781462,-0.042238634079695,0.028879519551992],[-0.010736467316747,0.0085663208737969,-0.0048985010944307]],[[-0.089521758258343,0.047430377453566,-0.032168440520763],[0.044928662478924,0.033345900475979,-0.011737366206944],[0.022920249029994,0.035934653133154,-0.049777776002884]],[[0.044154345989227,-0.10350386053324,0.0051764957606792],[0.013718731701374,-0.0029869514983147,-0.035789914429188],[-0.027828395366669,-0.023279989138246,-0.025999721139669]],[[0.095559619367123,0.043001905083656,-0.10096778720617],[0.048251215368509,0.1573169529438,-0.047149207442999],[-0.067632138729095,-0.059656281024218,-0.097107373178005]],[[-0.0098790712654591,-0.03974300250411,-0.023997325450182],[0.014654088765383,-0.12293481826782,-0.098203159868717],[0.043175127357244,0.12468095123768,-0.037872727960348]],[[-0.024523317813873,0.052602808922529,-0.0021417126990855],[0.027066480368376,-0.022416654974222,-0.047539703547955],[-0.024545898661017,-0.017207512632012,-0.044889997690916]],[[0.0057059265673161,-0.028566882014275,-0.043585769832134],[-0.021875262260437,-0.031965300440788,0.011635156348348],[-0.00090060313232243,0.076424613595009,-0.026232544332743]],[[0.030193163082004,-0.031548399478197,-0.02593257278204],[0.061364240944386,-0.088912755250931,0.0077424901537597],[-0.034628581255674,0.01359751727432,-0.095945820212364]],[[-0.034945417195559,0.059026151895523,0.10661794990301],[-0.0040280558168888,-0.10241346806288,-0.023013509809971],[-0.026956453919411,-0.058458760380745,0.01250811573118]],[[-0.056622415781021,-0.04970371350646,-0.0016837997827679],[-0.025412669405341,-0.073846623301506,-0.014025268144906],[-0.096063651144505,-0.049729377031326,-0.050425868481398]],[[0.093779221177101,0.11761613935232,-0.039552614092827],[0.036476634442806,-0.0023403484374285,-0.021555276587605],[-0.030274748802185,-0.042333126068115,-0.051662497222424]],[[0.034867666661739,0.01065250299871,0.015276905149221],[-0.0087860338389874,-0.015322257764637,0.010833866894245],[-0.027330093085766,-0.035557180643082,-0.0029911007732153]],[[-0.0057727219536901,0.010943363420665,-0.025538044050336],[-0.029432481154799,-0.037807017564774,0.053595524281263],[0.036864191293716,-0.031277917325497,-0.0014861644012854]],[[-0.0053217466920614,0.028413221240044,0.057856220752001],[-0.010668131522834,-0.072972223162651,0.026837391778827],[0.054842989891768,-0.031155172735453,-0.17521530389786]],[[-0.13768920302391,-0.082840599119663,0.052960753440857],[-0.10246539860964,-0.02259024605155,-0.041703592985868],[-0.037274263799191,0.017563968896866,-0.030520228669047]],[[-0.18737770617008,-0.091625541448593,0.0098171848803759],[-0.015525286085904,0.0054640132002532,0.041484154760838],[-0.13298599421978,0.035899274051189,0.01166867185384]]],[[[0.0067906929180026,-0.036047760397196,-0.078289218246937],[0.015762476250529,0.015852324664593,-0.16829094290733],[-0.087300911545753,-0.10250864177942,0.017252519726753]],[[0.1367484331131,0.070171013474464,-0.044845059514046],[0.086496412754059,-0.009144295938313,0.010259138420224],[-0.022191498428583,0.059153277426958,-0.009822404012084]],[[0.015770567581058,0.065345652401447,-0.2511380314827],[0.048824917525053,0.040133353322744,0.017498224973679],[0.040241379290819,-0.0058184158988297,-0.0051938872784376]],[[0.01114091835916,-0.031125433743,-0.031778931617737],[0.053034275770187,0.051545184105635,0.034236561506987],[0.065972968935966,-0.12445464730263,-0.089943282306194]],[[-0.11556716263294,0.0010832480620593,-0.013003811240196],[0.026584468781948,-0.041186898946762,0.032380454242229],[-0.13797879219055,-0.0161262024194,-0.074850797653198]],[[0.028742540627718,-0.016477972269058,-0.037067852914333],[-0.029319390654564,-0.070135645568371,-0.05921657755971],[0.012709644623101,0.02288281172514,-0.01242452673614]],[[-0.041332326829433,-0.081074379384518,-0.08240120112896],[-0.078445315361023,-0.032171234488487,-0.095526486635208],[-0.0059078820049763,0.012264525517821,-0.069314323365688]],[[-0.020367292687297,0.035654850304127,0.097666122019291],[0.0089930389076471,-0.04325058311224,0.061778083443642],[0.058097690343857,0.015881665050983,0.082483254373074]],[[0.090939663350582,0.032411992549896,-0.0046377996914089],[-0.014123206026852,-0.028316775336862,-0.11697721481323],[-0.043382328003645,-0.019741145893931,-0.05659444630146]],[[0.0074649062007666,0.076282896101475,0.019427562132478],[-0.044363357126713,-0.016612809151411,0.012736573815346],[0.10202149301767,0.041466429829597,-0.044730614870787]],[[0.00013265767483972,-0.091021314263344,-0.039938967674971],[-0.022693118080497,-0.05239225551486,-0.0034834574908018],[0.043176800012589,-0.041701450943947,-0.012815682217479]],[[-0.058204047381878,-0.11916443705559,-0.13523614406586],[-0.087863475084305,-0.10056836158037,-0.12142758071423],[-0.10224507749081,-0.018961681053042,-0.051225535571575]],[[0.017096208408475,0.0052280444651842,-0.012567162513733],[-0.06198725476861,0.028791550546885,-0.012474178336561],[-0.10943342000246,-0.072084344923496,0.017810773104429]],[[0.0018832378555089,-0.013356553390622,0.015111519955099],[0.08549290150404,0.048012476414442,0.088522404432297],[0.0018098016735166,-0.0095213912427425,-0.053498707711697]],[[0.02554302662611,-0.015102469362319,-0.0022051171399653],[-0.025618962943554,0.013910698704422,-0.0099153555929661],[0.038865655660629,0.034643206745386,-0.024773098528385]],[[-0.14717718958855,-0.043885506689548,-0.060674402862787],[0.012455884367228,-0.051886685192585,0.04216992110014],[-0.010717591270804,-0.0027882580179721,-0.0080024022608995]],[[-0.029189953580499,-0.035389341413975,-0.036002106964588],[-0.039952807128429,0.026143219321966,0.049079403281212],[0.061913203448057,0.036301925778389,0.042753044515848]],[[-0.043151069432497,-0.025924483314157,-0.007208947557956],[-0.086937472224236,-0.037061359733343,-0.082142218947411],[0.11570919305086,0.013990011997521,-0.027797974646091]],[[-0.060863330960274,0.049089841544628,0.14005389809608],[0.0166594106704,-0.0088212005794048,-0.016840167343616],[0.048117652535439,0.046387191861868,-0.017482357099652]],[[0.054871216416359,-0.024835482239723,-0.1192425340414],[-0.0005632265820168,0.027313113212585,-0.048458140343428],[0.050446350127459,-0.011332929134369,0.043110426515341]],[[0.012545666657388,0.01898193731904,-0.0025452370755374],[0.016344122588634,-0.033418849110603,0.040943179279566],[0.012203211896122,-0.015676809474826,-0.039573688060045]],[[-0.088436707854271,0.12773701548576,0.025931142270565],[-0.014962451532483,0.017711024731398,-0.11815214157104],[-0.039354577660561,-0.04486021026969,0.011389338411391]],[[0.050217561423779,-0.071747571229935,0.006317756138742],[0.022935377433896,0.019615994766355,0.026903467252851],[0.11083211004734,-0.015699693933129,0.0050779348239303]],[[-0.060387391597033,0.008186518214643,0.1584270298481],[-0.058753050863743,0.025638280436397,0.13952760398388],[0.0033967250492424,-0.016175189986825,-0.072067350149155]],[[-0.033270001411438,0.079482890665531,-0.039346858859062],[0.015472635626793,-0.00024643141659908,0.047662366181612],[-0.0096722263842821,-0.0067030298523605,-0.0053283511660993]],[[0.016271525993943,0.029155595228076,0.063549354672432],[-0.029061725363135,-0.017526194453239,0.028248712420464],[0.052248131483793,0.043133921921253,0.052875056862831]],[[0.0019216538639739,-0.034399781376123,0.010366245172918],[-0.0070195775479078,-0.01559922285378,0.019812049344182],[0.10176594555378,0.0093242488801479,-0.041021712124348]],[[-0.084007240831852,-0.025808356702328,-0.032264873385429],[-0.060416337102652,0.070965133607388,-0.046357031911612],[-0.058176264166832,-0.075770080089569,0.01450923550874]],[[-0.038363061845303,-0.049011513590813,-0.023486241698265],[0.0034799242857844,0.014573007822037,-0.026483030989766],[-0.028415273874998,-0.037765454500914,-0.047082360833883]],[[-0.0070612691342831,0.015158077701926,-0.045062109827995],[0.074162609875202,0.041192356497049,0.014504541642964],[0.062140706926584,0.072653837502003,0.02691395021975]],[[-0.1314681917429,0.036853712052107,-0.0086255548521876],[0.078664012253284,-0.042388342320919,-0.019876571372151],[0.11902328580618,0.020439177751541,-0.00020024544210173]],[[0.10211941599846,-0.05802259221673,-0.080392301082611],[0.025621620938182,-0.01495264004916,-0.027443986386061],[-0.0072949836030602,-0.016690181568265,0.019886264577508]],[[-0.020460629835725,-0.037692844867706,-0.014872362837195],[0.011897264048457,-0.060609523206949,0.0077593140304089],[-0.018486224114895,-0.066242456436157,-0.00093231629580259]],[[0.030328812077641,0.03800667449832,0.070606917142868],[0.037428874522448,-0.021254817023873,-0.02592720836401],[0.063731126487255,-0.050888881087303,-0.020690510049462]],[[-0.10848031193018,-0.15533252060413,-0.1573116928339],[-0.095323130488396,-0.11181804537773,-0.054327551275492],[-0.055933959782124,-0.07184886187315,0.022254949435592]],[[0.043923988938332,0.082862079143524,0.041305098682642],[0.09074480086565,0.066933080554008,0.040639381855726],[-0.093203008174896,-0.023798095062375,-0.054783366620541]],[[0.013412420637906,0.077777780592442,-0.0030562104657292],[-0.045641850680113,0.038501515984535,-0.061595942825079],[-0.057959005236626,-0.056147508323193,-0.0072512440383434]],[[-0.072636127471924,-0.014155469834805,-0.099008545279503],[-0.044042132794857,0.032054957002401,0.012831651605666],[0.097960822284222,0.16871422529221,0.046638261526823]],[[-0.094863183796406,-0.03831847012043,-0.085451550781727],[-0.053153984248638,-0.02201709151268,0.0076125543564558],[-0.036178149282932,0.0020368490368128,0.014849483966827]],[[-0.011565130203962,0.024661330506206,-0.088964872062206],[0.10501173138618,-0.011984646320343,0.014877239242196],[-0.00097299343906343,0.069190688431263,-0.02864833548665]],[[-0.10068945586681,-0.08508113026619,-0.10952534526587],[-0.035758920013905,-0.02311179600656,0.032223470509052],[0.11779369413853,0.011352400295436,-0.040391933172941]],[[-0.12611468136311,-0.06600034236908,-0.011459567584097],[-0.073813259601593,-0.016694903373718,-0.086118683218956],[0.049364563077688,0.056275587528944,0.0020679493900388]],[[0.14185544848442,-0.0043638837523758,0.039626780897379],[0.06049033254385,-0.088555447757244,0.087819270789623],[0.015944894403219,-0.001934374216944,-0.025510070845485]],[[-0.058760471642017,-0.1274785399437,-0.18886397778988],[-0.08620984852314,0.034868020564318,-0.089338250458241],[-0.12774462997913,-0.072841018438339,-0.10572874546051]],[[-0.046104826033115,0.039839446544647,0.0078941313549876],[0.013522428460419,0.0090528493747115,-0.041027743369341],[0.072302684187889,0.026424419134855,0.0084968870505691]],[[0.071968719363213,-0.0041565932333469,0.065005443990231],[0.036042835563421,-0.048752799630165,0.040184561163187],[0.07130978256464,0.018975554034114,0.064270012080669]],[[0.02633542008698,-0.035458292812109,-0.06311871111393],[-0.0068239569664001,-0.065808616578579,0.0044292956590652],[0.059574007987976,0.054285299032927,0.047912575304508]],[[-0.063113577663898,-0.01630493067205,-0.064399220049381],[-0.029825083911419,-0.086123153567314,-4.7481276851613e-05],[-0.022090984508395,0.027025921270251,-0.12357345223427]],[[0.023378025740385,0.062586069107056,-0.018666684627533],[0.03811626508832,-0.0109554938972,0.0062093078158796],[-0.11148770153522,-0.051394175738096,0.032414518296719]],[[0.024075176566839,0.042894419282675,-0.0079429382458329],[0.014194534160197,0.12251877784729,-0.049270365387201],[-0.052845720201731,-0.10946199297905,-0.018109424039721]],[[0.0052094687707722,0.07262396812439,-0.019189979881048],[0.053141091018915,0.013653348200023,0.053460273891687],[-0.023283701390028,-0.09174744784832,0.040255781263113]],[[-0.061453811824322,0.091527588665485,0.076489269733429],[0.12697394192219,0.02949901111424,0.012963359244168],[0.096301093697548,0.065647304058075,0.0032498117070645]],[[-0.016164442524314,-0.057922452688217,0.029103796929121],[0.0097898012027144,-0.091902665793896,0.012381287291646],[0.012899138964713,0.046870712190866,0.060573250055313]],[[-0.001607479294762,-0.01593423448503,-0.034628972411156],[0.03491086512804,-0.10812677443027,-0.022823620587587],[0.041743818670511,0.017201945185661,0.0077012744732201]],[[0.012451832182705,-0.0055467546917498,-0.0059900521300733],[0.062581419944763,-0.029472792521119,-0.15133768320084],[-0.0079673947766423,-0.0096828835085034,-0.045570213347673]],[[-0.1099547073245,-0.12982472777367,-0.057269185781479],[-0.14277385175228,-0.021909138187766,0.016662092879415],[-0.063607908785343,0.019747478887439,-0.020741607993841]],[[0.051079303026199,-0.0047087268903852,-0.097230926156044],[0.043728042393923,-0.071567788720131,-0.071107871830463],[-0.15825019776821,-0.031958047300577,-0.015252985991538]],[[0.01468488201499,-0.033536497503519,-0.060187876224518],[0.035471469163895,0.0091284411028028,0.0033296262845397],[0.011271198280156,-0.073668792843819,-0.025287946686149]],[[0.032546319067478,-0.060525253415108,0.0063465521670878],[0.034656692296267,0.063062816858292,0.079337164759636],[-0.082518979907036,-0.026473781093955,-0.019485274329782]],[[-0.015985148027539,0.013744574971497,0.050545301288366],[0.023116758093238,0.0090079829096794,0.051653288304806],[-0.094703912734985,-0.010392989031971,-0.053373508155346]],[[-0.003377279965207,0.010293937288225,0.018912857398391],[-0.077501706779003,-0.0030765773262829,-0.041836831718683],[-0.11234559863806,-0.046082105487585,0.034827593713999]],[[-0.045954216271639,-0.057163458317518,-0.06706740707159],[-0.039023768156767,-0.10812696814537,-0.079496428370476],[-0.037821013480425,-0.018806664273143,-0.010017786175013]],[[0.13047410547733,0.005137512460351,0.019816517829895],[-0.023084197193384,0.0042157261632383,0.011626997962594],[0.026039108633995,0.0071168267168105,0.027827374637127]],[[-0.10469107329845,-0.095001243054867,-0.13446944952011],[-0.086259126663208,-0.018735006451607,-0.10514169186354],[0.019776018336415,0.045923728495836,-0.014632235281169]]],[[[-0.031906317919493,-0.013265943154693,0.03736674040556],[0.03361638635397,0.025872064754367,-0.040355246514082],[-0.046036507934332,-0.1984631717205,-0.021447405219078]],[[-0.043818645179272,-0.023170022293925,0.0011282936902717],[-0.085314892232418,-0.012702546082437,0.009638512507081],[-0.064018473029137,-0.075451642274857,-0.035237208008766]],[[0.018477408215404,0.094696640968323,0.083544760942459],[-0.0039591756649315,-0.055762689560652,-0.11672455817461],[-0.10684022307396,-0.21370425820351,-0.10124901682138]],[[-0.1080621778965,0.07265006005764,0.087157942354679],[-0.030901696532965,-0.06646778434515,-0.0041631232015789],[-0.054775360971689,-0.072408065199852,-0.010781543329358]],[[0.013592866249382,0.10354191064835,0.028276666998863],[-0.05300172790885,0.068353272974491,-0.023977410048246],[0.049872674047947,0.057022787630558,0.074915498495102]],[[0.051776442676783,-0.0064543285407126,0.051757216453552],[-0.027868704870343,0.039075098931789,0.024920104071498],[-0.035367909818888,-0.039812322705984,-0.088692136108875]],[[0.044326141476631,0.08317980915308,-0.061284895986319],[-0.050163108855486,0.030368806794286,-0.054436437785625],[-0.10068643838167,-0.070374630391598,-0.035830363631248]],[[-0.11269602924585,-0.059542082250118,-0.015105998143554],[-0.054294113069773,-0.028867932036519,0.0085338680073619],[-0.088354535400867,-0.074063897132874,0.036676567047834]],[[-0.008750326000154,-0.020739542320371,0.036193903535604],[0.045375812798738,0.05052425339818,0.03097702562809],[-0.10817026346922,-0.057292554527521,0.0029088833834976]],[[0.12836608290672,0.030885668471456,-0.0076990867964923],[0.022857232019305,-0.031376793980598,-0.038522236049175],[0.013466943055391,0.054734472185373,0.01768396794796]],[[-0.016032334417105,0.025635121390224,-0.030009569600224],[-0.023974061012268,-0.032874509692192,-0.0088464980944991],[-0.12169613689184,0.057655859738588,0.012971413321793]],[[0.17552556097507,0.054407216608524,-0.020422738045454],[0.070545047521591,0.020580617710948,0.010130320675671],[0.046792231500149,0.022933514788747,0.048090927302837]],[[-0.00693568168208,0.013085743412375,-0.048981435596943],[0.037766557186842,-0.028883829712868,0.029573125764728],[-0.10407458245754,0.014856751076877,0.040805421769619]],[[0.035908840596676,0.067861177027225,-0.032867968082428],[0.030098363757133,0.017268791794777,-0.01727051101625],[0.0087127815932035,-0.0073806000873446,0.013797372579575]],[[-0.029695147648454,-0.027036247774959,0.018004911020398],[-0.039410561323166,-0.16353572905064,-0.0020516067743301],[-0.0065967403352261,-0.11781125515699,-0.044585917145014]],[[0.0028139187488705,0.067816317081451,-0.0072430828586221],[-0.020109249278903,-0.0045789275318384,-0.0097739649936557],[-0.027947356924415,-0.018570283427835,-0.0090471617877483]],[[-0.10281698405743,0.053024679422379,-0.025416323915124],[-0.032810032367706,0.012126775458455,-0.053938958793879],[-0.035320803523064,-0.11852120608091,-0.075631149113178]],[[0.037541672587395,0.07425644248724,-0.015377575531602],[-0.081478551030159,-0.023553494364023,-0.094670228660107],[-0.096808724105358,0.0012307580327615,-0.10571926087141]],[[0.09343433380127,-0.018081391230226,-0.10605800896883],[0.011534209363163,0.027782298624516,-0.075641311705112],[0.058350279927254,-0.04261127486825,-0.032400563359261]],[[0.067110158503056,0.0098814852535725,0.026756521314383],[-0.006141965277493,0.025591490790248,-0.004976105876267],[-0.023489875718951,0.017973106354475,-0.068314433097839]],[[0.05759859457612,0.025894956663251,0.044124886393547],[0.0070619261823595,0.021212404593825,0.018912918865681],[-0.039332669228315,0.044937219470739,-0.0088296374306083]],[[-0.019203076139092,-0.00030437725945376,-0.062886625528336],[-0.065557070076466,0.075348496437073,-0.033846747130156],[-0.046574871987104,0.011902065016329,-0.03331795707345]],[[-0.086520470678806,-0.014093358069658,0.073543526232243],[-0.10080041736364,-0.050149004906416,0.055774096399546],[-0.18463051319122,-0.18549437820911,-0.030400574207306]],[[0.028970101848245,-0.016238741576672,-0.0087615642696619],[0.020877351984382,0.067842818796635,0.098828040063381],[0.037165842950344,0.13515242934227,0.044130332767963]],[[0.015620088204741,-0.020657436922193,-0.024283366277814],[0.06309175491333,-0.037923611700535,0.0094796819612384],[0.0055540865287185,0.056169409304857,-0.040209654718637]],[[0.099348001182079,0.06237181648612,0.052360307425261],[0.0055935024283826,-0.024175902828574,-0.019791875034571],[0.011211476288736,0.0095577025786042,-0.012111612595618]],[[0.026927262544632,-0.026215644553304,0.063591189682484],[-0.047585055232048,-0.018708122894168,-0.037679653614759],[-0.15154923498631,-0.026083393022418,-0.044449839740992]],[[-0.061394657939672,-0.066485919058323,-0.055209837853909],[-0.01801772788167,0.0048614582046866,0.021050157025456],[0.046385820955038,-0.11223364621401,-0.0059729726053774]],[[-0.023441830649972,0.049065206199884,0.032212343066931],[-0.093076206743717,0.036987997591496,0.060472443699837],[-0.036533154547215,-0.0317267999053,0.01751622185111]],[[-0.083187967538834,-0.016961364075541,0.02191942743957],[-0.12883426249027,0.0031719831749797,-0.07317578792572],[-0.061069585382938,-0.0055842292495072,-0.060513567179441]],[[0.0067188781686127,0.039687782526016,0.01004387717694],[0.033056009560823,0.018961390480399,0.0021338879596442],[-0.03881362080574,0.0011035441420972,0.046049982309341]],[[0.11439753323793,-0.066343374550343,-0.015628315508366],[0.0062698484398425,0.0077583263628185,0.040996871888638],[-0.10053084790707,0.003545208601281,0.058901522308588]],[[-0.047871805727482,0.046525131911039,0.044952239841223],[0.045061729848385,-0.024161107838154,0.0015972105320543],[0.0074490299448371,-0.02030535787344,-0.068499438464642]],[[0.033585503697395,0.06851714849472,-0.045675717294216],[0.070591457188129,-0.16921383142471,0.051708150655031],[0.093185886740685,-0.14841850101948,-0.036123707890511]],[[0.030173018574715,-0.024013252928853,0.039504177868366],[-0.075757414102554,-0.023157985880971,0.011112155392766],[-0.019368477165699,-0.12268202006817,-0.077572114765644]],[[0.022938065230846,0.063181594014168,-0.016601864248514],[-0.030740736052394,-0.024877777323127,-0.077514618635178],[-0.066196352243423,-0.050230827182531,0.015036991797388]],[[0.0050444807857275,0.019451223313808,-0.038635816425085],[-0.023302925750613,0.017453994601965,0.00022094773885328],[0.13016174733639,-0.0004947055131197,-0.028541970998049]],[[-0.076254233717918,-0.062200367450714,0.00045202203909867],[-0.14781844615936,-0.048860069364309,0.028032470494509],[-0.079431243240833,-0.092499122023582,0.0053712758235633]],[[-0.037043146789074,-0.18191051483154,-0.010602079331875],[0.010358855128288,-0.038221035152674,-0.013575962744653],[-0.0057401261292398,-0.10670311748981,-0.053220637142658]],[[-0.028577763587236,-0.21276080608368,-0.057616431266069],[0.011309036053717,-0.038915857672691,-0.0011883253464475],[-0.073835924267769,-0.060478381812572,-0.039162658154964]],[[0.055395714938641,-0.025479501113296,-0.049928773194551],[-0.080556996166706,-0.0089996820315719,-0.022206675261259],[-0.064103774726391,-0.10801932960749,0.012293827719986]],[[0.028711400926113,-0.053893443197012,0.013478862121701],[0.041008185595274,-0.061842124909163,-0.015588376671076],[-0.011356430128217,-0.010152765549719,-0.064861968159676]],[[-0.01295948587358,-0.074918694794178,0.065832994878292],[-0.0044436338357627,0.032748457044363,-0.018612174317241],[0.055864941328764,0.054500810801983,-0.025992793962359]],[[-0.06079863011837,0.032414890825748,0.010545766912401],[-0.035530377179384,-0.015415094792843,0.035498663783073],[0.095518544316292,0.040482863783836,-0.048059850931168]],[[0.0087665300816298,0.098219685256481,0.041597489267588],[0.0012746469583362,0.075261831283569,-0.042117435485125],[-0.18292348086834,0.051909472793341,-0.085730537772179]],[[-0.089604258537292,-0.10218229144812,-0.035773504525423],[0.0041364254429936,-0.075522042810917,-0.050177522003651],[-0.061627276241779,-0.12791959941387,-0.018585335463285]],[[-0.055755369365215,-0.013108705170453,-0.0025477211456746],[7.0937923737802e-05,0.026573467999697,0.0082749901339412],[-0.011232524178922,-0.12057533860207,0.05013120174408]],[[-0.045447818934917,0.019237291067839,-0.0066113783977926],[-0.0066228746436536,-0.0005149026401341,0.010833624750376],[0.012438907288015,-0.12309661507607,-0.055902443826199]],[[-0.015634005889297,0.088342428207397,0.017100909724832],[-0.041088879108429,0.035601802170277,0.0041421954520047],[-0.062897458672523,-0.074726030230522,-0.053305126726627]],[[0.015336610376835,-0.010582300834358,-0.049359355121851],[0.029809176921844,0.022052967920899,-0.018275631591678],[0.063897199928761,-0.027628537267447,-0.054388090968132]],[[0.02943461574614,-0.00063767418032512,-0.0039926306344569],[-0.026879260316491,0.032430451363325,-0.0034056268632412],[-0.0040011364035308,-0.0073102121241391,0.016412662342191]],[[0.02422983944416,0.054472893476486,-0.014247965998948],[-0.00011919171083719,0.10854961723089,0.015103040263057],[0.075085625052452,0.08180808275938,0.0028755841776729]],[[-0.081221863627434,0.074653893709183,-0.065727256238461],[-0.12244614958763,-0.02603998593986,-0.019525399431586],[-0.059369653463364,-0.060270775109529,-0.022138305008411]],[[0.11157688498497,-0.043416302651167,-0.030565977096558],[0.038882251828909,-0.061648327857256,-0.0047059003263712],[-0.046318903565407,0.062282096594572,-0.026492517441511]],[[-0.040938388556242,-0.077264748513699,-0.055049560964108],[0.081340253353119,-0.029529571533203,-0.024764547124505],[0.068996906280518,-0.058595634996891,-0.074354335665703]],[[0.045849964022636,0.031009335070848,0.027269968762994],[0.033799827098846,-0.060872487723827,0.0033967772033066],[-0.095472253859043,0.030525324866176,-0.0027449487242848]],[[0.076594687998295,-0.035739067941904,-0.06991495937109],[0.068402610719204,-0.00091041257837787,-0.016866583377123],[0.071667224168777,-0.031648088246584,0.015561216510832]],[[0.012741696089506,0.012377856299281,0.058476530015469],[-0.010373141616583,0.04511683434248,0.032005570828915],[-0.026612041518092,0.031351141631603,-0.086211167275906]],[[-0.0053386366926134,-0.094757914543152,-0.0027691277209669],[0.065211802721024,0.1622858941555,0.037617638707161],[0.10758343338966,0.1333536952734,0.064341552555561]],[[-0.058699373155832,0.04250556230545,-0.0076167862862349],[-0.0045633348636329,0.032247308641672,-0.015841031447053],[0.020480688661337,-0.013318638317287,0.023312073200941]],[[0.0077321659773588,0.027999997138977,0.011324158869684],[0.04323497787118,0.013036840595305,0.046549312770367],[-0.058826863765717,-0.0044824630022049,-0.036733996123075]],[[0.085226148366928,-0.04975538700819,0.073639407753944],[0.034374315291643,-0.082548812031746,0.0034042466431856],[0.052468251436949,0.016732269898057,0.018756832927465]],[[-0.047404143959284,-0.0040687681175768,0.014936146326363],[0.041793502867222,0.021477630361915,0.029567755758762],[-0.07708777487278,-0.01676369458437,0.051896404474974]],[[0.058739643543959,-0.00034541948116384,-0.0018909140489995],[-0.077698692679405,0.055721312761307,0.0010361365275458],[0.036109246313572,-0.061626121401787,-0.051074288785458]]],[[[0.00024162154295482,-0.061326377093792,0.038675118237734],[0.0678790807724,0.11496509611607,-0.082215912640095],[0.016427675262094,-0.079937264323235,-0.088335953652859]],[[0.0088816359639168,0.046809051185846,-0.011528475210071],[0.0029742256738245,-0.010811956599355,-0.093877419829369],[-0.057965725660324,-0.072460278868675,-0.024475352838635]],[[0.041280832141638,0.039205092936754,-0.11525782197714],[-0.00041154725477099,-0.0775490924716,-0.010508499108255],[0.043383110314608,-0.0023692706599832,-0.048039715737104]],[[-0.0089180544018745,-0.018638012930751,-0.015500926412642],[-0.079596295952797,-0.004844500683248,0.0012140980688855],[0.052512526512146,-0.031579088419676,-0.00061552418628708]],[[-0.042268507182598,0.019219113513827,-0.018343342468143],[0.079017162322998,-0.052573133260012,0.071685880422592],[0.037728242576122,0.0085279224440455,0.022277014330029]],[[0.033575478941202,0.055945802479982,-0.060771465301514],[0.035060148686171,0.047110822051764,-0.058491993695498],[-0.031735669821501,0.036980472505093,-0.016963876783848]],[[0.032804496586323,0.017704194411635,0.081870637834072],[0.059169817715883,-0.009816019795835,-0.091185055673122],[0.048304177820683,-0.037312101572752,-0.021520420908928]],[[-0.012219263240695,0.0058680647052824,-0.022226992994547],[-0.03072290122509,0.022867254912853,0.0043292506597936],[-0.061423379927874,-0.0099590457975864,-0.087743856012821]],[[-0.022640205919743,-0.036585673689842,-0.017607375979424],[0.037705317139626,-0.031625129282475,-0.10581993311644],[0.062445364892483,0.06989711523056,-0.022848382592201]],[[-0.0065364059992135,-0.036305468529463,0.0053984574042261],[0.014219533652067,0.033042773604393,-0.00018400271073915],[-0.047698099166155,-0.08553833514452,-0.049948189407587]],[[-0.024480437859893,0.0084120137616992,0.0230777785182],[-0.025255367159843,-0.0063833063468337,-0.065741918981075],[-0.028096299618483,-0.010543379001319,0.030379725620151]],[[0.01442043390125,0.051082484424114,-0.001927531324327],[0.017703022807837,-0.0001508108980488,-0.033944748342037],[-0.0060393144376576,-0.011496361345053,-0.0016886678058654]],[[0.0075928443111479,-0.0093571078032255,0.079131908714771],[0.10058264434338,0.075539864599705,0.038160972297192],[0.10727442055941,0.037790879607201,0.02131793089211]],[[0.07057823985815,0.038645166903734,0.035282932221889],[-0.015950832515955,0.066304989159107,-0.033157702535391],[-0.011576950550079,-0.0093675665557384,0.030188485980034]],[[0.026837049052119,-0.0022732445504516,0.040422741323709],[-0.024310033768415,0.0073726382106543,0.017062596976757],[0.072999514639378,0.062072146683931,-0.0077538890764117]],[[0.017084447667003,0.059307593852282,-0.00077044969657436],[-0.042536437511444,0.077788308262825,0.035322301089764],[0.053570076823235,0.039106424897909,0.0063575333915651]],[[0.046678625047207,0.13423152267933,0.0024147995281965],[0.027304895222187,0.006768252234906,0.068851336836815],[-0.081811919808388,0.019847212359309,0.079915262758732]],[[0.0019366827327758,-0.019201274961233,-0.055531226098537],[0.0096964780241251,-0.048420190811157,-0.0062405187636614],[0.059471644461155,0.0048952014185488,-0.018093571066856]],[[-0.030382627621293,0.07489850372076,-0.081491596996784],[0.04942836612463,-0.020639253780246,-0.026271233335137],[-0.0067737465724349,-0.0057188607752323,0.028733981773257]],[[0.046841751784086,-0.0022503312211484,0.010255851782858],[0.010028918273747,-0.035611249506474,0.036637999117374],[0.0068242866545916,0.035215120762587,-0.049221385270357]],[[0.0045203762128949,0.0065185641869903,-0.03621194511652],[0.023345161229372,-0.068931452929974,0.034221827983856],[-0.0066269915550947,0.035665802657604,0.014118284918368]],[[0.084385670721531,-0.067280247807503,0.010920712724328],[0.006076626945287,0.11953585594893,-0.039175964891911],[-0.0042374772019684,-0.0065770414657891,0.033508308231831]],[[0.01300257910043,-0.054720003157854,0.01761082559824],[-0.040641382336617,0.12750333547592,-0.051157150417566],[0.075892262160778,0.044664170593023,0.030108766630292]],[[-0.015267339535058,0.047378696501255,0.019476305693388],[0.094657309353352,0.0059508476406336,0.0028471392579377],[0.05665211006999,0.045935779809952,0.17756922543049]],[[0.015224388800561,0.0122134918347,0.030148319900036],[0.044714584946632,0.087632246315479,0.0071081374771893],[-0.07163218408823,0.013188327662647,0.012879613786936]],[[0.0082193333655596,0.058077611029148,-0.012422923929989],[0.037513956427574,-0.0045355069451034,-0.0069165085442364],[-0.0083187790587544,-0.016327999532223,-0.0728460252285]],[[-0.042527414858341,-0.021993743255734,-0.024147089570761],[0.049377284944057,0.13312864303589,0.05287216603756],[-0.084629468619823,0.054202642291784,-0.046056099236012]],[[-0.00059858791064471,-0.0022683716379106,0.0088834445923567],[-0.0010254516964778,0.016957961022854,-0.018810160458088],[0.00093794811982661,0.056917179375887,0.01012671738863]],[[0.025513650849462,-0.0096416501328349,-0.088281311094761],[-0.044671181589365,-0.012777027674019,0.00024643246433698],[-0.10580510646105,0.09988322108984,0.04067425057292]],[[0.020493848249316,0.011807159520686,0.041932202875614],[-0.021321922540665,0.00067048450000584,-0.072884745895863],[-0.034444782882929,0.0091685308143497,-0.018894873559475]],[[0.024691274389625,-0.11127991229296,-0.085165567696095],[-0.063785567879677,-0.055967014282942,0.014008042402565],[-0.024431295692921,-0.022038189694285,0.0328279286623]],[[0.02210196107626,-0.065476208925247,-0.033984515815973],[0.024492038413882,0.068501323461533,0.08081229031086],[0.053107842803001,-0.0026046917773783,-0.058299195021391]],[[0.030170990154147,0.023801647126675,-0.027796974405646],[-0.0050257118418813,0.057004641741514,-0.0086388755589724],[-0.054293882101774,0.0056324927136302,-0.081567488610744]],[[-0.012890739366412,0.071472115814686,-0.10658014565706],[0.13205087184906,0.077938996255398,-0.0089694326743484],[-0.077633440494537,-0.031111212447286,-0.001681683701463]],[[-0.012153601273894,0.0036177353467792,0.049570456147194],[0.012836748734117,0.040619999170303,0.018085503950715],[0.038291793316603,0.0085874823853374,0.021076137199998]],[[-0.037413600832224,0.06018115952611,0.011758399195969],[-0.00058876600814983,-0.042961891740561,0.0042321803048253],[0.040865652263165,-0.010752158239484,0.0042333621531725]],[[0.037124462425709,0.046723276376724,0.0038818626198918],[-0.021236075088382,0.032540742307901,0.0071672960184515],[0.0037951543927193,0.071929074823856,0.021305005997419]],[[0.034586492925882,0.010625137016177,0.028067288920283],[0.025278564542532,-0.052613705396652,-0.0019615734927356],[0.060334902256727,0.038002397865057,0.0011221952736378]],[[-0.048123195767403,0.10187328606844,-0.0014666548231617],[0.043431829661131,0.014039780013263,-0.02709574252367],[-0.018069392070174,-0.01159867271781,0.0060214279219508]],[[-0.0080252774059772,-0.010979374870658,0.039315856993198],[0.11281528323889,0.017422951757908,0.087063647806644],[-0.0088881151750684,0.0011062290286645,-0.0053738220594823]],[[0.010100710205734,0.030839251354337,0.087251141667366],[0.049088906496763,0.01206392608583,-0.0068868109956384],[-0.061024591326714,0.00029297359287739,0.021160043776035]],[[0.017092172056437,0.0067664519883692,0.0059278635308146],[0.0084463804960251,0.015861185267568,-0.015642751008272],[0.01665853895247,0.063094228506088,0.0047474936582148]],[[-0.0067363767884672,0.033911153674126,0.071543417870998],[0.041992485523224,0.076703615486622,0.042954389005899],[-0.017869440838695,0.058598805218935,0.071301437914371]],[[-0.0059939841739833,0.0084764417260885,0.038101300597191],[0.028557375073433,-0.021893255412579,-0.032478172332048],[-0.042193360626698,0.019877759739757,-0.024538543075323]],[[-0.00167343148496,0.033367119729519,-0.0013354497496039],[-0.050266858190298,0.035241283476353,-0.020064525306225],[-0.081742376089096,-0.03535570204258,0.0072390944696963]],[[0.061036132276058,-0.029509657993913,0.031756140291691],[-0.048676509410143,-0.018442621454597,0.053304944187403],[-0.09401673823595,-0.084722921252251,-0.032590109854937]],[[-0.036812759935856,-0.037708152085543,0.0073296171613038],[0.034282252192497,-0.027152881026268,-0.034021358937025],[0.035329423844814,-0.0054443096742034,-0.01598428748548]],[[-0.034514248371124,0.018984412774444,-0.027682883664966],[0.087614186108112,-0.025119077414274,-0.0084702791646123],[0.017676467075944,-0.046344716101885,0.071017049252987]],[[0.0085081765428185,0.039058059453964,0.049977745860815],[0.019959768280387,-0.044579554349184,-0.026649506762624],[0.0052486821077764,-0.018626352772117,0.043165076524019]],[[0.039491221308708,-0.028760192915797,-0.036336794495583],[0.06393688172102,0.015445640310645,0.0080031314864755],[0.046257585287094,-0.03114128485322,0.07464449852705]],[[-0.056030072271824,-0.072145774960518,0.042522974312305],[0.00095780217088759,0.049414683133364,0.02672041207552],[0.0070494525134563,-0.065762087702751,-0.040194749832153]],[[0.0081579945981503,0.063836328685284,-0.017689120024443],[0.06699001789093,-0.014526492916048,0.095990113914013],[0.053400430828333,0.14827351272106,0.076514840126038]],[[-0.081004478037357,-0.01617837511003,0.043861638754606],[-0.087564043700695,0.0099646840244532,0.033400360494852],[0.024431018158793,0.075748987495899,-0.021185928955674]],[[0.04042848572135,0.0597162283957,0.081352859735489],[0.0053283902816474,-0.05237203091383,-0.030295144766569],[-0.013545863330364,0.004092404153198,-0.021783124655485]],[[-0.058477137237787,0.0088857626542449,0.024661704897881],[-0.0061267553828657,-0.026089150458574,-0.0035788887180388],[-0.010357660241425,-0.013450644910336,0.080152414739132]],[[-0.0064370450563729,-0.037442252039909,-0.014756189659238],[0.057031221687794,-0.015618783421814,0.014851959422231],[-0.0055544502101839,-0.019708348438144,-0.0021461735013872]],[[0.02758758328855,0.0059427442029119,-0.030150163918734],[0.0041016498580575,-0.042310621589422,-0.057708103209734],[-0.083209566771984,0.021900640800595,-0.020979534834623]],[[0.027170836925507,0.016364151611924,0.038516029715538],[-0.036753185093403,0.065040774643421,0.01139282528311],[-0.023907696828246,0.082159742712975,0.055282726883888]],[[0.090054780244827,0.063818842172623,0.016608200967312],[0.05493014678359,-0.036046963185072,0.023315845057368],[-0.044168926775455,0.076446704566479,0.019898293539882]],[[0.0051450491882861,-0.023888824507594,-0.016214609146118],[-0.0099983317777514,0.0046711126342416,-0.046927589923143],[0.031721014529467,0.010907745920122,0.081073246896267]],[[-0.013306959532201,0.0040345266461372,-0.020903265103698],[0.048926562070847,0.061172019690275,-0.072347439825535],[0.054486837238073,0.058560028672218,-0.014846293255687]],[[0.084866099059582,0.0295903775841,0.059127274900675],[-0.0098984017968178,0.06152718514204,0.0010055016027763],[0.0036796359345317,-0.034848690032959,-0.063562139868736]],[[-0.015215593390167,0.085164934396744,0.015883723273873],[0.000286832859274,-0.0083684800192714,-0.041394632309675],[-0.010172930546105,-0.012329405173659,0.053644847124815]],[[-0.049354109913111,0.013697834685445,0.066225610673428],[0.0072628259658813,-0.035480584949255,0.01297808252275],[-0.044726047664881,0.016483465209603,-0.059447828680277]]],[[[-0.076371021568775,0.010362199507654,-0.005214904434979],[-0.05762143433094,0.020658696070313,0.047781012952328],[0.063676171004772,-0.090877518057823,-0.021405193954706]],[[0.10423393547535,0.039515238255262,-0.021348550915718],[0.013926696032286,-0.043067999184132,-0.1085664331913],[0.11432853341103,0.068712167441845,-0.038910560309887]],[[-0.19717420637608,0.030676433816552,-0.020833095535636],[0.050106633454561,0.001802226761356,0.094127342104912],[-0.0044644172303379,0.012770204804838,0.089437916874886]],[[-0.023242853581905,-0.0091121066361666,-0.046087220311165],[-0.012504126876593,-0.023943247273564,-0.010955028235912],[-0.013806722126901,0.053160775452852,0.03182416036725]],[[0.0067389975301921,0.015548195689917,-0.068998083472252],[-0.054493445903063,-0.10361412167549,-0.075100734829903],[0.015168720856309,0.064285904169083,-0.062305442988873]],[[-0.037293113768101,-0.029176868498325,0.019632561132312],[0.054987844079733,0.037576407194138,0.020089318975806],[0.010593983344734,-0.082235716283321,-0.046935930848122]],[[-0.13348931074142,0.0048027685843408,-0.012038865126669],[0.099092938005924,0.025010792538524,0.11638344079256],[-0.028539255261421,-0.02040396630764,-0.043196309357882]],[[0.0767667517066,0.087071970105171,0.048314318060875],[0.11019287258387,-0.091640040278435,-0.027519037947059],[-0.0073401597328484,0.093089126050472,0.03251339122653]],[[-0.084649175405502,-0.024681471288204,0.021516725420952],[-0.11075340211391,0.012263769283891,0.047578170895576],[0.061296191066504,-0.063200019299984,0.021663600578904]],[[-0.030886065214872,-0.043291971087456,-0.055710408836603],[-0.031204454600811,0.036577310413122,-0.10564576089382],[0.022341817617416,-0.010666309855878,0.0089591238647699]],[[-0.12639148533344,-0.0048858914524317,-0.011035216972232],[-0.002690608613193,0.054769977927208,-0.033462401479483],[-0.014906135387719,0.017101474106312,0.0039609544910491]],[[0.026854075491428,0.041943602263927,-0.026651043444872],[0.0049415044486523,0.049009650945663,-0.025138391181827],[-0.027960432693362,-0.070986308157444,0.063609339296818]],[[-0.068988785147667,-0.0086949123069644,0.044774241745472],[-0.042043022811413,0.021269017830491,-0.030416667461395],[0.0077140242792666,-0.081200778484344,-0.0076781478710473]],[[-0.087649703025818,-0.24922250211239,-0.13905440270901],[-0.057458762079477,-0.15577656030655,-0.16440409421921],[-0.027558326721191,-0.058176908642054,-0.17012850940228]],[[-0.012235049158335,-0.050642978399992,-0.0032785136718303],[0.046668525785208,0.021644504740834,-0.021514277905226],[-0.045652713626623,0.038481060415506,0.095832608640194]],[[-0.049013696610928,-0.15551047027111,-0.0070165018551052],[-0.050821788609028,0.053717568516731,0.098551318049431],[0.0030073910020292,0.0077916625887156,0.079436868429184]],[[0.083533801138401,0.059658493846655,-0.10028669983149],[0.045061383396387,0.075420938432217,-0.063384659588337],[0.088513687252998,0.0052361637353897,0.061531268060207]],[[-0.047291696071625,0.0094874110072851,-0.0091605754569173],[0.078707799315453,-0.010032315738499,0.046700280159712],[0.020128371194005,0.068807415664196,-0.0065415478311479]],[[0.053247716277838,-0.022019624710083,-0.034837037324905],[0.023061148822308,0.035014048218727,-0.012950159609318],[0.010873745195568,0.039042513817549,-0.012044746428728]],[[-0.078546158969402,-0.0060566971078515,-0.038124669343233],[-0.033772516995668,0.059985466301441,0.047703322023153],[0.04289411380887,-0.0019061146304011,0.033163122832775]],[[-0.076473727822304,-0.038866255432367,0.033334884792566],[-0.015056266449392,-0.030073771253228,-0.019798897206783],[0.010203447192907,-0.064619898796082,-0.12269129604101]],[[0.016576170921326,-0.030857523903251,-0.073429226875305],[0.018472827970982,-0.11911312490702,-0.011899147182703],[0.03551035001874,0.075191527605057,-0.0064398581162095]],[[-0.0072440118528903,-0.036976080387831,0.098634727299213],[0.011086367070675,0.081301718950272,-0.10522202402353],[-0.10527601093054,-0.12816460430622,-0.11136025190353]],[[0.12148863822222,0.080052129924297,-0.007813885807991],[0.043269619345665,0.099400386214256,0.072960563004017],[-0.011445701122284,0.086959205567837,0.11318800598383]],[[0.042861849069595,0.081641674041748,0.046352256089449],[-0.058787066489458,-0.0064280605874956,0.05472769215703],[-0.044904228299856,-0.049702290445566,0.055848676711321]],[[0.034994751214981,-0.013203152455389,0.033133532851934],[-0.017722764983773,0.028749732300639,0.033823240548372],[0.052950818091631,0.077573366463184,0.054126299917698]],[[-0.02997082658112,-0.032686922699213,0.031239159405231],[0.11447248607874,0.10218954086304,-0.0069172848016024],[0.13204430043697,-0.050222389400005,-0.047607637941837]],[[-0.074956670403481,0.044350106269121,-0.053142543882132],[0.01560137514025,0.07761687785387,0.017124950885773],[0.036689110100269,0.0076398723758757,0.051838122308254]],[[0.022910110652447,-0.046318423002958,0.074883155524731],[0.057145081460476,-0.125697940588,-0.12134771794081],[0.078448496758938,0.0006560247275047,-0.016263039782643]],[[0.03146243467927,0.036873321980238,0.050816480070353],[0.012545997276902,0.11714038252831,0.042148947715759],[-0.049208670854568,0.050840001553297,0.01053805090487]],[[-0.0028845812194049,-0.0096979606896639,0.06491282582283],[-0.01054812874645,-0.11146760731936,0.012130240909755],[-0.012989520095289,0.016808573156595,0.075566418468952]],[[-0.13163705170155,-0.10585587471724,0.014556307345629],[-0.02369574457407,-0.0091985436156392,0.042998101562262],[0.12385977804661,0.042313992977142,0.052830919623375]],[[0.0404256246984,0.03572029992938,0.022965772077441],[0.011172752827406,-0.043951559811831,0.014830272644758],[0.003301003947854,0.00022019672906026,0.045420333743095]],[[0.05134104937315,-0.027460029348731,0.0044826199300587],[-0.12705744802952,-0.077355779707432,-0.19486485421658],[-0.013947849161923,0.018081478774548,0.026217427104712]],[[-0.013598165474832,-0.20442676544189,0.0034516665618867],[0.018857883289456,-0.039042182266712,0.011934866197407],[-0.071779184043407,-0.04650779440999,-0.10128913074732]],[[0.1379646062851,-0.0086289010941982,-0.034872971475124],[-0.032367084175348,0.077209390699863,-0.03797223046422],[-0.076047316193581,0.058251194655895,0.013964758254588]],[[0.058051109313965,0.011068598367274,-0.065053410828114],[0.020311085507274,-0.01274002622813,-0.10956080257893],[0.086177617311478,0.026356801390648,-0.095312878489494]],[[0.011166607961059,-0.017140859737992,0.024978285655379],[0.061943884938955,0.011292434297502,0.048928495496511],[0.048969402909279,-0.077674888074398,-0.12512440979481]],[[0.017291715368629,0.054958753287792,-0.026389019563794],[-0.0040680048987269,0.013475620187819,0.062451973557472],[-0.020653417333961,-0.037743527442217,-0.057029452174902]],[[-0.031649190932512,-0.1337476670742,-0.098661944270134],[-0.046254556626081,0.013734135776758,-0.01270357798785],[-0.022635515779257,-0.022785156965256,-0.056755878031254]],[[-0.02405745908618,-0.063456751406193,-0.04202689230442],[-0.057095021009445,0.020766349509358,-0.05488657951355],[-0.045964684337378,0.021821863949299,0.00970065779984]],[[-0.009839185513556,0.017685491591692,-0.025150291621685],[0.043045938014984,-0.044490452855825,-0.059207528829575],[-0.024009041488171,-0.078706033527851,0.033226929605007]],[[-0.093050695955753,-0.092898860573769,-0.057652898132801],[-0.044715631753206,0.084891967475414,-0.096237130463123],[-0.098804220557213,-0.11125342547894,-0.065519571304321]],[[-0.068824879825115,0.037681341171265,-0.0063076689839363],[0.0045457202941179,-0.010592377744615,0.029271326959133],[0.0011307378299534,0.037906005978584,0.039947785437107]],[[-0.10348914563656,-0.016203632578254,0.046635311096907],[-0.067698076367378,-0.057604096829891,-0.017844337970018],[-0.050743579864502,0.055944886058569,0.075450345873833]],[[-0.076598286628723,0.064738385379314,-0.050819758325815],[0.027263259515166,0.079243667423725,0.048289928585291],[-0.10948910564184,0.017617467790842,-0.053219061344862]],[[-0.10588835924864,0.0013775617117062,0.027697326615453],[-0.068962231278419,-0.010500393807888,0.019346574321389],[-0.071497052907944,-0.026179540902376,0.074485883116722]],[[-0.093778133392334,-0.10493251681328,0.012044962495565],[-0.023031182587147,-0.13245803117752,0.0074194385670125],[-0.059506647288799,0.031661555171013,-0.007787149399519]],[[0.057228855788708,0.0078970184549689,0.052826043218374],[0.023385010659695,-0.05070311576128,-0.14103472232819],[-0.020971870049834,-0.10504561662674,0.028768954798579]],[[0.063252381980419,-0.038229648023844,-0.032876763492823],[-0.11920109391212,0.044715989381075,-0.064881928265095],[-0.036035552620888,-0.02032370492816,-0.011080234311521]],[[0.071282438933849,0.019595881924033,0.023930061608553],[0.0065809870138764,0.03030370362103,0.017185023054481],[-0.090061970055103,-0.0070234159938991,-0.04267930611968]],[[0.064996801316738,-0.024052571505308,0.037554230540991],[-0.002383588347584,0.11328987777233,0.095378190279007],[0.0018153968267143,0.031209591776133,0.12621264159679]],[[0.066361203789711,-0.0288718752563,0.0051904725842178],[0.050007525831461,-0.0056763747707009,-0.01900539919734],[0.053952503949404,0.066883333027363,-0.090638868510723]],[[0.038625419139862,0.10889232903719,0.05068963766098],[-0.01106324326247,0.047522526234388,-0.042902912944555],[-0.073124602437019,0.080001130700111,-0.062237065285444]],[[0.0063246595673263,-0.033165093511343,0.034790884703398],[-0.13862220942974,0.0190244987607,-0.057537835091352],[0.011637920513749,0.013519471511245,0.0193752925843]],[[0.041673101484776,0.026068998500705,0.056895684450865],[-0.0099093969911337,0.011338989250362,-0.0019956929609179],[-0.053759545087814,0.016624700278044,-0.025954864919186]],[[-0.013246073387563,0.02309244312346,-0.018689006567001],[-0.0097390813753009,0.023614561185241,0.086866281926632],[-0.054210528731346,-0.033121347427368,0.027792364358902]],[[-0.11287143826485,-0.14053140580654,-0.10467340797186],[-0.078560918569565,-0.03889025375247,0.06031871587038],[-0.085569530725479,-0.1346410959959,-0.025819040834904]],[[-0.01700440980494,-0.065275020897388,0.051140908151865],[0.00044316329876892,-0.048726301640272,0.073761947453022],[0.038786925375462,0.16740396618843,0.1851963698864]],[[0.052255403250456,-0.0066597769036889,0.03691092133522],[0.026981897652149,-0.00058966118376702,-0.030446717515588],[-0.033963061869144,-0.0054674632847309,-0.0271827429533]],[[-0.073845788836479,0.054690714925528,-0.071970552206039],[0.058953702449799,-0.0071567911654711,-0.0098461769521236],[-0.02649655751884,-0.017441621050239,-0.056784089654684]],[[-0.12324421852827,0.15166015923023,-0.006165583152324],[-0.069531731307507,0.02404354698956,0.090471684932709],[-0.013321369886398,-0.035013988614082,0.031746804714203]],[[0.088183492422104,-0.020934982225299,-0.02512663602829],[-0.079350754618645,-0.088530749082565,-0.0084414025768638],[-0.0088281547650695,-0.035817451775074,-0.026390746235847]],[[0.030358592048287,-0.11966706812382,-0.018240302801132],[0.045623265206814,-0.030339553952217,-0.071714028716087],[0.031823821365833,0.025835130363703,0.0055080554448068]]],[[[-0.027701077982783,0.022757865488529,0.0060828304849565],[-0.05011348426342,-0.093323074281216,0.025322394445539],[0.050683964043856,0.0050096814520657,0.071125201880932]],[[-0.034837823361158,-0.041415333747864,-0.063342332839966],[0.036413326859474,0.030146995559335,-0.08100938051939],[-0.051230099052191,0.035175990313292,0.0031607775017619]],[[-0.081212341785431,-0.085560888051987,-0.040310613811016],[0.04293579980731,-0.054839763790369,0.001658215536736],[-0.020694823935628,-0.10935344547033,0.14131639897823]],[[-0.014859885908663,0.035575151443481,-0.057330686599016],[0.0023921150714159,-0.040301643311977,-0.050970319658518],[0.023501642048359,0.053409181535244,0.068459935486317]],[[-0.042385742068291,-0.07406659424305,-0.014634711667895],[0.093504793941975,-0.042713820934296,0.040722873061895],[0.077272661030293,0.049877744168043,-0.0073828995227814]],[[0.091772116720676,-0.11484458297491,-0.14285691082478],[0.070829294621944,-0.011710120365024,-0.039189282804728],[0.12984734773636,-0.12444595992565,-0.017748532816768]],[[-0.002859428524971,-0.061285845935345,0.044714465737343],[0.083675660192966,-0.015959121286869,-0.089733704924583],[0.0007736231200397,0.0052544376812875,-0.066530533134937]],[[-0.017690248787403,0.044140934944153,-0.00031043885974213],[0.0111691262573,0.055692665278912,0.019612835720181],[-0.046698559075594,0.03561520203948,-0.049190998077393]],[[-0.02228144928813,0.064512595534325,0.026466554030776],[-0.032530892640352,-0.020032897591591,0.055185753852129],[0.07707953453064,-0.014779791235924,-0.053320460021496]],[[0.026767717674375,0.021894589066505,0.094397164881229],[-0.02910441160202,0.041831251233816,-0.093314804136753],[-0.0042666555382311,-0.067619025707245,-0.027997851371765]],[[-0.050214126706123,0.002213672734797,0.036903355270624],[0.025326017290354,-0.093213140964508,0.034504819661379],[-0.032690230756998,0.025892013683915,0.026899162679911]],[[-0.0076728356070817,-0.066555500030518,-0.014128497801721],[0.010330833494663,-0.0044162892736495,-0.085802234709263],[-0.022748056799173,-0.011115469969809,-0.036475725471973]],[[-0.060110233724117,0.028947999700904,0.0519665107131],[0.056523662060499,-0.015477792359889,-0.050517156720161],[0.014545768499374,-0.045111458748579,-0.070534616708755]],[[-0.085166521370411,0.018934234976768,-0.011374128051102],[-0.026257522404194,0.046243250370026,-0.0301443785429],[-0.01084082107991,0.04764224216342,0.013624101877213]],[[-0.022194776684046,-0.023978190496564,0.011528071947396],[-0.019761463627219,0.056804366409779,0.024918425828218],[0.025286115705967,-0.031906295567751,0.024177584797144]],[[0.010063306428492,0.025091262534261,-0.13831534981728],[-0.036562759429216,-0.059172704815865,0.069683447480202],[-0.10738126188517,-0.0079935835674405,0.13640700280666]],[[-0.059306506067514,0.020551303401589,0.0026336049195379],[0.0032890827860683,0.054099030792713,-0.025448363274336],[0.01943545602262,0.098701924085617,-0.058028522878885]],[[0.04549453780055,-0.046296082437038,0.051258575171232],[0.086393095552921,0.086198747158051,0.056429170072079],[0.0027960622683167,0.054671257734299,0.022640969604254]],[[0.059211384505033,-0.063832134008408,0.030675150454044],[0.083412319421768,-0.030777417123318,-0.040946021676064],[-0.021888324990869,0.0016750822542235,0.048465322703123]],[[-0.091028809547424,0.017823301255703,-0.021319981664419],[0.044655505567789,0.034085761755705,0.04252477735281],[0.017835499718785,0.034461740404367,-0.045680977404118]],[[0.017168970778584,-0.048305761069059,-0.010986652225256],[-0.055245887488127,-0.0045596342533827,0.038476929068565],[0.081883437931538,0.051532544195652,0.012285122647882]],[[0.01940986700356,0.20052459836006,-0.15135830640793],[-0.040951188653708,0.061940662562847,-0.029180023819208],[-0.024904817342758,-0.089643783867359,-0.025868821889162]],[[0.033193200826645,0.03573128208518,-0.061761844903231],[0.012228012084961,-0.04613895341754,0.048959478735924],[0.068891271948814,-0.0066252443939447,-0.062701895833015]],[[-0.058457609266043,0.0054264655336738,0.15769593417645],[0.011803134344518,0.10140620172024,0.14599670469761],[-0.012739198282361,0.021087201312184,-0.06146027892828]],[[0.031951356679201,0.0055108931846917,-0.0023851993028075],[0.0013783087488264,0.023913303390145,0.031340669840574],[-0.028204383328557,-0.018167717382312,-0.15126565098763]],[[-0.019697196781635,0.0026469493750483,-0.061962153762579],[0.0045387488789856,0.032732456922531,0.072386734187603],[0.018116898834705,0.039999973028898,0.050854872912169]],[[-0.07350368052721,0.028350519016385,-0.031973760575056],[-0.041855718940496,0.026659641414881,0.017183175310493],[0.075520716607571,0.03963927552104,0.015738232061267]],[[-0.14180718362331,-0.035755213350058,0.088313683867455],[-0.0036951669026166,-0.016576590016484,0.05461236089468],[-0.012252736836672,-0.036326508969069,0.027423053979874]],[[-0.0045279487967491,0.036262601613998,-0.058291677385569],[0.00027861748822033,0.019872637465596,-0.019711956381798],[-0.034251771867275,-0.00092617800692096,-0.034695379436016]],[[0.071635350584984,0.011019652709365,-0.055083371698856],[0.051958430558443,-0.06958831846714,-0.01136692147702],[-0.031650476157665,-0.050655785948038,-0.037290714681149]],[[0.11621291190386,-0.025243064388633,-0.0078492015600204],[0.017701420933008,-0.000169941020431,0.0036225037183613],[-0.068660587072372,-0.018602790310979,0.040257662534714]],[[-0.048455432057381,-0.0074661741964519,0.03286549821496],[0.053791075944901,-0.10484182089567,-0.064992129802704],[0.088617697358131,0.082194693386555,0.077504120767117]],[[0.02471624687314,-0.078192323446274,-0.094049230217934],[-0.004008449614048,0.029504854232073,-0.045068554580212],[0.0017720721662045,-0.017539134249091,-0.012773983180523]],[[-0.036515384912491,-0.069070227444172,-0.068589694797993],[-0.0079122092574835,0.066992551088333,-0.020059294998646],[0.021376430988312,0.062035750597715,0.01286034937948]],[[-0.14160043001175,-0.062157899141312,0.029853811487556],[-0.083989091217518,0.044021528214216,-0.011235327459872],[0.073127940297127,0.037758953869343,-0.011693852953613]],[[-0.060336016118526,-0.018254570662975,-0.072683550417423],[-0.052873063832521,0.085258707404137,-0.08416586369276],[-0.056377053260803,-0.011135852895677,0.03435318544507]],[[-0.041731279343367,0.059495374560356,-0.093923322856426],[0.012249349616468,-0.019198376685381,0.031708046793938],[-0.011287273839116,0.059510253369808,0.0028237416408956]],[[-0.073511123657227,-0.029536623507738,0.025685096159577],[0.079153507947922,-0.012193391099572,-0.12003608047962],[-0.057373855262995,0.09913494437933,0.046127047389746]],[[-0.047321416437626,-0.019168242812157,0.054375011473894],[-0.02106873318553,-0.072780184447765,0.023962331935763],[-0.036750510334969,0.012676955200732,0.033920928835869]],[[-0.014325684867799,0.061981339007616,-0.030925428494811],[0.014354477636516,-0.038813021034002,-0.12153189629316],[0.13512539863586,0.051118690520525,0.001775074400939]],[[-0.078926898539066,0.0086522223427892,0.084261171519756],[-0.090959623456001,-0.0036155288107693,0.0043067494407296],[-0.060707483440638,0.071266137063503,0.060451876372099]],[[-0.068392351269722,-0.05921595543623,0.080805018544197],[0.066853038966656,0.026856957003474,0.022171594202518],[0.034431591629982,0.014981498941779,0.055929254740477]],[[0.03618162125349,-0.040872056037188,-0.019187094643712],[0.018928239122033,-0.0013519728090614,0.07939400523901],[0.025830786675215,-0.084077768027782,-0.055523600429296]],[[-0.0090342964977026,0.023623615503311,-0.028987111523747],[-0.0053032105788589,-0.030909599736333,0.010379833169281],[0.085457146167755,0.00019899844483007,-0.040868576616049]],[[-0.033168353140354,-0.039944358170033,-0.060416825115681],[0.032300367951393,0.050547383725643,-0.021397579461336],[0.024483492597938,0.013687969185412,-0.0022702901624143]],[[-0.015273385681212,0.010885936208069,-0.029082158580422],[0.010868474841118,-0.036864265799522,0.024336354807019],[-0.0098347654566169,-0.04128135368228,0.04063530638814]],[[0.018145199865103,-0.00097059964900836,-0.035492572933435],[0.033363185822964,0.036738093942404,-0.073738075792789],[0.087885126471519,-0.062442023307085,-0.0094807706773281]],[[0.043425120413303,-0.013656008057296,-0.068021237850189],[0.023813998326659,0.010527333244681,-0.096568316221237],[0.043077945709229,-0.087951518595219,-0.090255074203014]],[[-0.021677549928427,-0.01986719854176,-0.039309464395046],[-0.019872901961207,-0.011340868659317,-0.032008621841669],[0.042537201195955,0.060148891061544,-0.033210694789886]],[[-0.091735184192657,-0.042390797287226,-0.10291574150324],[-0.052328679710627,0.0023361754138023,-0.072560474276543],[0.010960063897073,0.060123205184937,0.00089919235324487]],[[0.015789370983839,-0.078734464943409,0.0091644767671824],[0.044519685208797,0.0065382728353143,-0.051433715969324],[-0.011928816325963,-0.026570511981845,-0.03682292252779]],[[0.16819986701012,0.072365835309029,-0.020689589902759],[-0.015642983838916,-0.0094489958137274,0.073537468910217],[0.034174166619778,-0.022494060918689,0.045355569571257]],[[-0.022201977670193,0.016602294519544,0.0038839629851282],[-0.0048233144916594,0.10017422586679,0.0090494612231851],[-0.027591483667493,0.053480427712202,-0.073385141789913]],[[-0.050281934440136,0.041259560734034,-0.073348522186279],[0.027949502691627,0.021431803703308,0.083781816065311],[-0.034817043691874,-0.055734004825354,-0.071060068905354]],[[-0.020716158673167,-0.078286327421665,-0.11296235769987],[-0.02914316020906,-0.083356373012066,-0.023618265986443],[-0.00083153654122725,-0.0094943903386593,-0.020751867443323]],[[0.0038433203008026,-0.0011882841354236,0.0036851558834314],[0.047464299947023,0.024798003956676,0.030805801972747],[-0.012464856728911,0.031792595982552,-0.055203668773174]],[[0.014170821756124,-0.025654468685389,0.038978233933449],[0.05691459774971,-0.0031718160025775,0.052559543401003],[-0.10943644493818,-0.093067444860935,-0.02455684915185]],[[-0.037713199853897,0.019749380648136,0.045828267931938],[0.0045218151062727,-0.11417032033205,0.029744800180197],[-0.027586884796619,-0.057675801217556,0.030266564339399]],[[0.097266398370266,0.029873326420784,0.065606988966465],[-0.046787291765213,0.050751149654388,0.040028970688581],[0.020608652383089,0.060198023915291,-0.025421654805541]],[[0.026536177843809,0.03831148147583,-0.013674838468432],[-0.074253134429455,-0.04755624383688,0.017943892627954],[-0.033286545425653,0.030438983812928,0.054243396967649]],[[-0.090754799544811,-0.18379519879818,-0.026503089815378],[-0.0032808703836054,-0.032139770686626,-0.009972489438951],[-0.025690613314509,0.021773332729936,0.056882254779339]],[[-0.022237738594413,-0.040361143648624,-0.053765546530485],[0.057718627154827,-0.0039582094177604,-0.0021664325613528],[0.039448712021112,-0.065932206809521,-0.023403473198414]],[[0.055353805422783,0.032403361052275,0.003830533940345],[0.0093767466023564,-0.014025637879968,-0.024042563512921],[0.034133449196815,-0.084992863237858,0.040384411811829]],[[-0.003339204005897,-0.16103400290012,-0.028470458462834],[0.058981243520975,-0.044818866997957,-0.016732431948185],[0.030374586582184,0.034278068691492,-0.031814310699701]]],[[[0.020146574825048,0.040900968015194,0.012496034614742],[-0.035221617668867,0.06627069413662,0.008537276647985],[0.034647285938263,-0.019717656075954,0.025796892121434]],[[0.05799861997366,0.053877625614405,0.035152800381184],[-0.086522221565247,0.031215827912092,0.1134697496891],[0.039883002638817,-0.012206193059683,0.06259498000145]],[[-0.015312984585762,-0.046141993254423,0.020028008148074],[-0.040408000349998,0.0074987392872572,-0.064986422657967],[0.033424098044634,-0.047558896243572,0.019091403111815]],[[0.016377067193389,-0.085129044950008,-0.10059516876936],[0.019855190068483,0.072512730956078,-0.014149384573102],[-0.009854743257165,0.055389441549778,0.061255972832441]],[[0.074103556573391,-0.017699509859085,0.070983678102493],[0.096441082656384,-0.019430441781878,0.10628701746464],[-0.069584786891937,0.041109547019005,-0.020960576832294]],[[-0.0099219605326653,-0.034076545387506,-0.045977272093296],[-0.020789731293917,0.065277650952339,0.05722164362669],[-0.12094240635633,-0.0012749687302858,0.050270557403564]],[[-0.026171455159783,-0.015216501429677,0.045635011047125],[-0.0070543359033763,-0.1742806583643,-0.043278250843287],[0.074678644537926,0.097814463078976,0.0066532953642309]],[[-0.045238398015499,-0.061259798705578,0.0086769722402096],[-0.0059218103997409,0.0081772059202194,-0.043818086385727],[0.055677708238363,0.0034229902084917,0.035722240805626]],[[-0.034812435507774,0.014138364233077,-0.063222967088223],[-0.033680036664009,-0.039975304156542,-0.019795341417193],[-0.04446242749691,0.041962318122387,0.040293198078871]],[[0.064152121543884,0.024463200941682,0.014113187789917],[-0.10454326868057,-0.010377910919487,0.074436955153942],[-0.020236074924469,-0.053777780383825,0.020468508824706]],[[-0.11798204481602,-0.052945774048567,-0.028164396062493],[-0.018556552007794,0.056721672415733,0.027662085369229],[0.051642626523972,-0.019197836518288,0.06606151163578]],[[-0.030793998390436,0.10310331732035,0.048533402383327],[0.0035338599700481,-0.04546033218503,0.056600317358971],[-0.17736458778381,0.0036559079308063,-0.080897070467472]],[[-0.0030892577487975,-0.061449207365513,-0.037712305784225],[-0.00023283528571483,0.069596782326698,0.025992210954428],[-0.0098495548591018,0.042578104883432,-0.070800207555294]],[[-0.071662589907646,-0.020145133137703,-0.0038100597448647],[0.011350251734257,0.04330537468195,0.055435679852962],[0.029742702841759,-0.054565656930208,0.034054163843393]],[[-0.049962621182203,0.013223479501903,-0.10538361221552],[-0.047826822847128,-0.034686237573624,-0.01912010461092],[0.047660533338785,-0.033170182257891,0.002341159619391]],[[0.0093885427340865,0.012048465199769,-0.11395743489265],[-0.077941596508026,0.01279987487942,0.068967036902905],[0.011690407060087,0.083754330873489,0.12313193827868]],[[0.019877312704921,0.10474030673504,-0.1523095369339],[-0.13562874495983,0.015740249305964,0.0059173731133342],[-0.047714453190565,-0.049328003078699,0.00045798637438565]],[[0.0091685000807047,0.034455455839634,-0.048514902591705],[-0.069662369787693,0.028882632032037,-0.12771201133728],[0.0020334620494395,-0.015093947760761,-0.051966793835163]],[[0.020757330581546,-0.01897556707263,0.038584433495998],[-0.039227921515703,0.024926632642746,-0.026516314595938],[0.00012114577111788,-0.095677427947521,0.01262600813061]],[[-0.040389001369476,0.0071429000236094,0.02377406321466],[-0.050239387899637,0.014715299010277,0.019527178257704],[-0.0033687010873109,0.063942454755306,-0.012736431322992]],[[-0.07838112860918,-0.096341460943222,-0.040581822395325],[0.030865415930748,0.019768312573433,-0.063784219324589],[-0.01938627846539,-0.029134755954146,-0.027855657041073]],[[-0.0027227911632508,-0.0030110727529973,0.20041690766811],[0.081964612007141,-0.11625098437071,-0.01568996347487],[-0.02430722117424,-0.047395564615726,0.027115166187286]],[[0.083131939172745,0.04615306481719,-0.0043545789085329],[0.0068006659857929,-2.4217624741141e-05,-0.020781116560102],[-0.038041554391384,0.069133639335632,-0.037198211997747]],[[0.054775051772594,0.073518037796021,-0.011136833578348],[0.12502972781658,0.062679328024387,0.0088868029415607],[0.024060495197773,0.041412804275751,0.12466163933277]],[[-0.097525782883167,0.027870399877429,-0.14213843643665],[0.045615889132023,-0.0067907604388893,0.029511533677578],[-0.0029356498271227,-0.030719129368663,-0.085830017924309]],[[0.025886179879308,0.084321834146976,0.0064868256449699],[0.024638213217258,0.046444691717625,-0.005128379445523],[0.050279948860407,0.049741737544537,0.059464480727911]],[[0.23904424905777,-0.053215630352497,0.08046293258667],[0.050336170941591,0.0088734235614538,-0.031599264591932],[0.052876930683851,-0.12371242046356,0.010464298538864]],[[0.075506411492825,0.016435813158751,-0.18278737366199],[-0.17087168991566,-0.053205251693726,0.16678903996944],[0.11120101064444,-0.08160974085331,0.036277405917645]],[[0.049870777875185,0.088343098759651,0.083836302161217],[-0.002200712217018,-0.061436276882887,0.017590491101146],[-0.025381218641996,-0.11532739549875,0.054551970213652]],[[0.027314377948642,0.084525868296623,0.020452769473195],[-0.092493183910847,0.064638204872608,0.029604226350784],[0.012475392781198,-0.028796097263694,-0.066513948142529]],[[0.035551320761442,0.035915590822697,-0.062516801059246],[-0.0024301444645971,0.0503832064569,0.091246284544468],[-0.086135670542717,-0.027936618775129,0.025526413694024]],[[-0.11842729896307,0.0096501177176833,-0.069033294916153],[-0.030965184792876,-0.020954675972462,0.060900576412678],[0.10040123015642,0.087250523269176,-0.080991089344025]],[[-0.062232304364443,0.021927770227194,0.010520997457206],[0.0088391434401274,0.0025683466810733,-0.059939421713352],[-0.036010056734085,-0.012152556329966,-0.051220841705799]],[[0.063619151711464,0.040244549512863,-0.044054847210646],[-0.061881255358458,0.013314208947122,0.090051151812077],[0.0046338303945959,0.068323448300362,-0.01343847438693]],[[0.10078956931829,-0.024561868980527,1.1959888070123e-05],[0.073279827833176,0.010348641313612,-0.045276906341314],[-0.054026260972023,0.027070138603449,0.03052437864244]],[[0.037987675517797,0.007981794886291,0.012438723817468],[0.014796974137425,-0.027359439060092,0.052432157099247],[0.0024428700562567,0.010857730172575,-0.088834315538406]],[[0.037021074444056,-0.010569960810244,0.19379372894764],[-0.092352479696274,-0.1177813783288,-0.084168754518032],[0.12946958839893,-0.108663238585,0.16689717769623]],[[-0.034938678145409,-0.019377240911126,0.038651090115309],[0.026648124679923,0.084888406097889,-0.07519319653511],[0.054568596184254,-0.073875762522221,0.03741343319416]],[[-0.022850163280964,-0.19189614057541,0.050630662590265],[0.084015749394894,0.01143937651068,0.16784670948982],[0.044000841677189,-0.11529640108347,-0.13869272172451]],[[-0.020361047238111,-0.045191936194897,-0.033622719347477],[0.098739251494408,-0.0019511508289725,0.012320805341005],[0.060686308890581,0.020276252180338,-0.083630084991455]],[[-0.043661050498486,-0.0012458951678127,-0.018918931484222],[0.031917218118906,0.018394427374005,0.0022473202552646],[-0.035361025482416,0.032784014940262,-0.072014942765236]],[[0.090959101915359,-0.057353153824806,0.062222242355347],[-0.0084909182041883,-0.0085410065948963,0.04164631664753],[-0.050070133060217,-0.055627252906561,-0.043202549219131]],[[0.017505696043372,-0.048760309815407,0.060161456465721],[0.0089961457997561,0.098660387098789,-0.061530388891697],[-0.030915105715394,-0.055378422141075,0.067385122179985]],[[-0.082163013517857,-0.086330726742744,-0.006953158415854],[0.044572573155165,-0.070152200758457,-0.011794406920671],[0.03167437016964,-0.005982247646898,0.14824683964252]],[[-0.082931913435459,0.0013816333375871,0.010252648033202],[-0.019451651722193,-0.041769187897444,-0.025007953867316],[0.065060973167419,-0.058687467128038,-0.054714094847441]],[[0.018411926925182,-0.025777461007237,0.0024278319906443],[-0.042450536042452,-0.016424858942628,0.039800550788641],[-0.004302931483835,0.038445606827736,-0.015431682579219]],[[0.027272498235106,0.047999083995819,-0.0073652691207826],[-6.5488537074998e-05,-0.085689537227154,0.034287255257368],[0.020648423582315,-0.023473724722862,-0.04874125868082]],[[0.0033044673036784,-0.11963219940662,0.05261567234993],[0.012671651318669,-0.03711437061429,-0.1136499941349],[-0.016671594232321,0.064522229135036,0.086826883256435]],[[-0.036964800208807,0.037571359425783,-0.015247363597155],[-0.031518373638391,0.055522281676531,0.041020389646292],[0.0058511830866337,-0.028364269062877,0.066453099250793]],[[0.061953533440828,0.061827056109905,0.015661066398025],[0.064988106489182,-0.0060445042327046,-0.035537913441658],[-0.075500994920731,-0.075688138604164,0.0040743476711214]],[[-0.023853851482272,-0.04165181517601,-0.10984493046999],[-0.012988328933716,0.01625700853765,0.053887512534857],[-0.10146091878414,-0.055039756000042,0.020586133003235]],[[0.05110277608037,-0.012501329183578,-0.0054517365060747],[0.079445101320744,0.049269922077656,0.042351994663477],[0.11143311858177,0.018172418698668,0.091810323297977]],[[0.15365882217884,0.042930912226439,-0.10955026000738],[0.022289868444204,-0.071837916970253,0.080242842435837],[0.060189258307219,-0.10692818462849,0.091967977583408]],[[0.070309847593307,0.057309832423925,0.075715735554695],[0.0384701192379,-0.062290124595165,0.013644975610077],[0.017243245616555,0.0045448848977685,-0.070152461528778]],[[0.022172370925546,-0.001495725242421,0.040407802909613],[0.01293103210628,-0.05470234900713,0.06666948646307],[-0.06170804426074,0.057237964123487,-0.055422343313694]],[[-0.023217106238008,-0.006434815004468,-0.063830606639385],[-0.033091343939304,-0.10595513135195,0.14515322446823],[0.010621241293848,-0.065838240087032,0.020237362012267]],[[0.015009040012956,-0.021933391690254,-0.0637177079916],[0.085516840219498,0.17365878820419,0.012878579087555],[-0.10568118095398,-0.099368244409561,0.03964951634407]],[[0.052722480148077,-0.074947476387024,0.00097424775594845],[-0.052159041166306,-0.023576460778713,-0.14285936951637],[-0.042260397225618,-0.021336402744055,-0.087726160883904]],[[0.03006212040782,0.0086438804864883,0.078833684325218],[0.13324218988419,-0.013844867236912,0.041930593550205],[0.11429454386234,0.14475600421429,-0.16730989515781]],[[0.072016604244709,-0.0070593887940049,-0.049333900213242],[-0.00089907494839281,0.0064935935661197,0.02468672208488],[0.0039189700037241,-0.027615986764431,-0.010195383802056]],[[0.010719265788794,0.01311297621578,-0.030191654339433],[0.039131257683039,0.033893421292305,0.045965988188982],[-0.12656030058861,-0.039789389818907,0.018184637650847]],[[0.066888131201267,0.11996178328991,0.025479983538389],[-0.039628427475691,-0.043469063937664,-0.091477356851101],[-0.070044621825218,-0.0031326769385487,-0.060109198093414]],[[0.0062200967222452,-0.021855760365725,-0.061295699328184],[0.052346877753735,0.096071697771549,-0.035964507609606],[-0.083214491605759,-0.022705543786287,-0.041563834995031]],[[-0.087552063167095,-0.084532260894775,0.02923091314733],[-0.00084828014951199,-0.0073142144829035,-0.02796265669167],[0.04248571023345,0.021076368167996,0.016139259561896]]],[[[-0.056015454232693,-0.043079398572445,-0.044204726815224],[0.018132634460926,0.054520130157471,-0.011348371393979],[-0.063938036561012,-0.05882927775383,0.0078164227306843]],[[-0.090493507683277,0.0080234231427312,0.033195838332176],[-0.0486800968647,-0.086647041141987,-0.048654608428478],[-0.0053007863461971,-0.0108030019328,0.00084702001186088]],[[0.034312091767788,-0.058762144297361,-0.019291611388326],[-0.03218649327755,-0.031973071396351,-0.093699261546135],[0.060959525406361,-0.048832576721907,-0.053921401500702]],[[-0.011830799281597,-0.031938973814249,0.011585116386414],[0.013843873515725,0.052326153963804,0.00076632614945993],[-0.036548595875502,-0.049654640257359,0.025621118023992]],[[-0.023925922811031,0.0026389660779387,0.062996529042721],[0.14157523214817,0.060264281928539,0.0089327758178115],[-0.0098215332254767,-0.088650688529015,-0.079219676554203]],[[0.093755342066288,0.052952043712139,0.018069047480822],[0.013760669156909,-0.06959579885006,-0.034640830010176],[0.047803856432438,-0.015832617878914,0.040359120815992]],[[-0.053760420531034,-0.047900877892971,0.046804342418909],[-0.032352026551962,-0.11676874011755,0.019646329805255],[-0.056185562163591,0.029890930280089,0.03443943336606]],[[0.12564997375011,-0.0035562636330724,-0.038702666759491],[-0.10075018554926,-0.097947992384434,-0.01611464843154],[-0.019079737365246,0.113182336092,0.054406203329563]],[[-0.068796038627625,0.24822218716145,-0.094152957201004],[-0.080529376864433,-0.087581448256969,0.034251343458891],[-0.051593523472548,0.053246974945068,-0.027050985023379]],[[0.0014906714204699,-0.081635907292366,-0.024925926700234],[0.0061173108406365,-0.042795397341251,-0.081544794142246],[0.064000360667706,0.011175005696714,0.025762902572751]],[[0.012868332676589,-0.035582404583693,0.04407436773181],[-0.036381904035807,-0.092346258461475,-0.013121047988534],[0.046605236828327,-0.096150606870651,-0.076699629426003]],[[0.08698882162571,-0.052811816334724,0.018189050257206],[-0.22611433267593,-0.024758106097579,-0.13150732219219],[-0.0061433878727257,-0.052287258207798,0.0061951279640198]],[[0.069824159145355,-0.041650556027889,0.17753817141056],[-0.11843220889568,-0.064329586923122,-0.19578492641449],[0.20572656393051,-0.011655922979116,0.2055286616087]],[[-0.0069689932279289,0.0067433058284223,-0.016784362494946],[0.030857000499964,-0.02600116468966,0.034815736114979],[0.038765955716372,-0.052251406013966,-0.060914482921362]],[[0.025800554081798,-0.069067753851414,0.036698695272207],[0.0017766457749531,-0.048982370644808,-0.034949917346239],[0.11060122400522,0.02461277320981,0.030506400391459]],[[-0.17679142951965,0.080818481743336,-0.0023647628258914],[0.032138228416443,-0.027124160900712,0.032254699617624],[-0.080647952854633,-0.0058352537453175,0.0047422405332327]],[[0.086483277380466,0.03037797473371,-0.043640717864037],[0.038953866809607,-0.012730687856674,-0.10872188955545],[-0.022406606003642,-0.019995369017124,-0.028589863330126]],[[-0.00097518059192225,0.013496006838977,-0.13508683443069],[-0.0059473956935108,-0.0020904457196593,0.049787599593401],[0.016112107783556,-0.052730459719896,0.019249986857176]],[[0.045126773416996,-0.044133607298136,-0.00345817534253],[0.032214883714914,-0.049174040555954,0.092376492917538],[-0.029001642018557,-0.068767003715038,0.048747021704912]],[[0.025380482897162,-0.050092808902264,0.0045402715913951],[0.047167036682367,0.053972147405148,-0.019541077315807],[-0.043208092451096,-0.0023023237008601,0.0032273496035486]],[[0.026086706668139,-0.044354733079672,-0.030114321038127],[0.041672118008137,0.058891735970974,-0.0062645399011672],[-0.034735001623631,0.0057328199036419,0.056747857481241]],[[-0.027912748977542,0.066293962299824,0.073671378195286],[0.01080546528101,-0.056902971118689,-0.0034372117370367],[-0.049643039703369,0.071680068969727,-0.028367701917887]],[[-0.015684997662902,-0.10582356899977,0.11080003529787],[0.081241227686405,-0.15120086073875,0.031970627605915],[0.0062697255052626,-0.010637055151165,-0.014670083299279]],[[0.021790560334921,0.026548128575087,0.1151670217514],[0.073446072638035,0.13793490827084,-0.087567426264286],[0.01350970659405,0.030195593833923,0.099009349942207]],[[0.093450643122196,-0.059484355151653,-0.13948687911034],[-0.027361223474145,0.0027566412463784,0.16237509250641],[-0.036607276648283,0.027569098398089,-0.010103033855557]],[[0.030250171199441,0.037020549178123,0.0091866869479418],[0.088992737233639,-0.050802085548639,0.027592102065682],[-0.01848597638309,0.049763903021812,0.03838038444519]],[[-0.028067385777831,-0.083445407450199,0.027854166924953],[-0.1057615429163,-0.11112514138222,-0.022923240438104],[0.064299702644348,0.097200691699982,-0.074111565947533]],[[0.092399671673775,0.095351994037628,-0.029043532907963],[0.032033894211054,0.028733093291521,0.014699582010508],[0.047935731709003,0.0012012657243758,-0.050266318023205]],[[0.038027297705412,-0.0059887780807912,0.053458001464605],[0.063951291143894,-0.079480923712254,-0.051501639187336],[0.08361741900444,0.0014710010727867,0.043776039034128]],[[-0.047749105840921,0.023850340396166,-0.074940748512745],[-0.1675651371479,-0.017459468916059,0.045844502747059],[-0.064586758613586,-0.060402244329453,-0.013415997847915]],[[-0.0033621957991272,0.058647193014622,-0.055749513208866],[0.041975867003202,-0.066777110099792,0.096770130097866],[0.037440706044436,-0.0020381733775139,0.012893583625555]],[[-0.082531206309795,-0.10805896669626,-0.017520736902952],[0.037197582423687,0.010799036361277,0.020759232342243],[0.014640095643699,0.030404921621084,-0.1066907569766]],[[-0.028624700382352,-0.025946065783501,0.044227734208107],[0.025651875883341,-0.021911352872849,-0.0088682267814875],[-0.0042322394438088,-0.0060059954412282,0.011990518309176]],[[0.028410356491804,0.012972037307918,0.016944607719779],[-0.0062998407520354,-0.023722913116217,0.061803817749023],[-0.046174813061953,-0.019479067996144,0.046864420175552]],[[0.050761986523867,-0.054653074592352,-0.035218294709921],[-0.048189848661423,0.016056349501014,0.0016498294426128],[-0.009232054464519,-0.016131952404976,-0.070683464407921]],[[0.084123484790325,-0.057665806263685,0.11978030204773],[-0.0061202012002468,0.0032246680930257,-0.042302709072828],[-0.036589562892914,0.1006491407752,-0.027523253113031]],[[-0.088492602109909,0.008034560829401,0.015306602232158],[0.040179330855608,-0.016013843938708,0.0016289697960019],[0.020184749737382,-0.087257534265518,-0.02062264457345]],[[-0.052194695919752,-0.042720891535282,0.0053869835101068],[-0.00053330283844844,-0.015777558088303,0.0096163190901279],[0.01755734719336,-0.12878778576851,0.052597109228373]],[[0.074434719979763,-0.086062923073769,0.0098736844956875],[0.069759607315063,-0.016987074166536,0.024216026067734],[-0.091840229928493,0.049723394215107,-0.057171758264303]],[[0.048619009554386,-0.050060790032148,-0.083909347653389],[0.0035808635875583,0.035500675439835,0.020656585693359],[0.038100372999907,-0.025632165372372,0.015872906893492]],[[-0.069212436676025,0.066700965166092,-0.059481423348188],[0.060466688126326,0.085737593472004,-0.0007519286009483],[-0.011689865030348,0.017540775239468,0.051304653286934]],[[-0.21323783695698,-0.021785467863083,-0.0040309820324183],[-0.0071704490110278,0.077076189219952,0.045445643365383],[-0.044472150504589,0.039058551192284,-0.042070638388395]],[[0.0077280406840146,-0.00010346507042414,-0.02747155725956],[-0.054316509515047,-0.032129544764757,-0.017633421346545],[0.058401707559824,-0.0099604045972228,-0.051212824881077]],[[0.067907117307186,-0.049983393400908,-0.032255861908197],[-0.11724647879601,-0.0011676115682349,-0.078660413622856],[0.099084936082363,-0.043379366397858,0.084589652717113]],[[0.00047347610234283,-0.011373056098819,-0.035467449575663],[0.0010115865152329,-0.059694286435843,-0.1012894064188],[0.049705632030964,-0.0083750812336802,-0.071588687598705]],[[0.046101909130812,-0.0026464355178177,0.049088723957539],[0.0032844892702997,0.048763316124678,0.027283567935228],[0.00049036979908124,0.0043928101658821,-0.013584475964308]],[[-0.088512480258942,-0.073401071131229,-0.011362157762051],[-0.085298500955105,0.0049539660103619,0.071595892310143],[-0.054990544915199,0.10600307583809,-0.055103365331888]],[[-0.043595671653748,-0.0032829225528985,-0.020198350772262],[0.0038835848681629,-0.12459171563387,-0.0092980694025755],[0.033070646226406,-0.056895647197962,-0.097331173717976]],[[0.052795890718699,-0.066324569284916,-0.043666772544384],[-0.068664580583572,0.036748275160789,0.00057016953360289],[-0.086021408438683,-0.010262790136039,0.038581721484661]],[[0.008533051237464,-0.020918315276504,-0.042509041726589],[0.058971758931875,0.028857536613941,0.013701202347875],[-0.027511285617948,0.11218316107988,-0.00064707617275417]],[[0.14731885492802,-0.039491631090641,-0.05122522637248],[-0.053559370338917,-0.031972654163837,0.017093347385526],[0.024120356887579,0.065283484756947,0.012918272055686]],[[0.17691980302334,0.16109780967236,-0.017283072695136],[0.076961547136307,-0.025678303092718,0.03870801627636],[0.076431766152382,0.0538669526577,-0.16493541002274]],[[0.030393240973353,-0.11797422170639,0.012125514447689],[-0.057798553258181,-0.013731015846133,0.010804397985339],[0.076764754951,-0.066764578223228,0.080344371497631]],[[0.056100185960531,-0.030210539698601,-0.0025550725404173],[0.04667317122221,-0.093272894620895,-0.08304501324892],[-0.047927141189575,0.041566852480173,-0.054857674986124]],[[0.051346831023693,0.0067770988680422,-0.015858439728618],[0.041900284588337,-0.0099968062713742,0.067301064729691],[0.095379889011383,-0.050218310207129,0.013611139729619]],[[-0.014999756589532,-0.022656608372927,0.020881110802293],[-0.065914966166019,0.045847665518522,-0.06761858612299],[-0.060972049832344,-0.013903710059822,-0.015854826197028]],[[0.092644840478897,0.033910401165485,-0.011101513169706],[-0.14344362914562,-0.086512140929699,0.012266940437257],[-0.022683292627335,0.013683261349797,-0.00045198440784588]],[[-0.011502425186336,-0.060144111514091,-0.013953473418951],[-0.056673817336559,-0.090305007994175,-0.042465206235647],[-0.00048869085730985,0.019348410889506,-0.015481404028833]],[[-0.036257207393646,0.024678593501449,-0.019538104534149],[0.086745664477348,-0.10000800341368,-0.062590293586254],[-0.0040706163272262,0.14590266346931,0.13261735439301]],[[0.012650731950998,0.0045444145798683,0.01600775308907],[-0.048918936401606,0.011639101430774,0.013211247511208],[-0.020338602364063,0.0097194090485573,0.0039003707934171]],[[-0.10037434101105,0.13987591862679,-0.060096237808466],[0.047812823206186,0.032528415322304,-0.013068821281195],[-0.038878384977579,0.021562609821558,-0.079148411750793]],[[0.033802162855864,0.01245554164052,-0.080892853438854],[-0.020756859332323,0.093666136264801,-0.0161710716784],[-0.0010398873127997,-0.024141566827893,0.061666898429394]],[[-0.0013854216085747,0.026014115661383,-0.058783113956451],[-0.078736633062363,-0.095583066344261,-0.043066713958979],[0.10559685528278,0.10936689376831,0.026561116799712]],[[-0.047125548124313,0.032307647168636,0.00089035031851381],[0.0855493247509,-0.048890460282564,0.01681256107986],[0.023429170250893,0.050626877695322,-0.056060779839754]]],[[[0.028595635667443,-0.044689420610666,0.080325439572334],[0.046356435865164,0.035436946898699,0.079603210091591],[0.20435713231564,0.054502364248037,0.032762914896011]],[[-0.16424116492271,-0.107272580266,-0.016394268721342],[-0.068712301552296,-0.037166446447372,0.0078348787501454],[-0.10265290737152,-0.056443888694048,0.021318657323718]],[[-0.01460229139775,-0.070563472807407,-0.085743688046932],[-0.047611460089684,-0.028248073533177,-0.025616521015763],[-0.017966978251934,0.063225768506527,0.041856035590172]],[[0.010658526793122,0.090221464633942,0.055738527327776],[-0.036946646869183,-0.069362603127956,0.021753506734967],[-0.10312756896019,-0.20580026507378,-0.021779682487249]],[[0.059878792613745,-0.099677890539169,0.044243570417166],[-0.045219846069813,0.024898864328861,0.087014585733414],[-0.0036980952136219,-0.10029999166727,-0.05520348623395]],[[-0.014749528840184,-0.040274750441313,-0.10846402496099],[0.0080586830154061,-0.036015342921019,-0.00041393810533918],[0.054024539887905,0.045808129012585,0.029777895659208]],[[-0.063037380576134,-0.11461549252272,-0.021011907607317],[-0.033010371029377,-0.076586812734604,0.1039134785533],[-0.01823902130127,0.035525064915419,-0.049360070377588]],[[0.035602685064077,-0.081214159727097,-0.052806500345469],[-0.030443456023932,-0.12072280049324,0.0057526212185621],[-0.17132262885571,-0.10227847844362,0.054117865860462]],[[0.046749513596296,0.015333360061049,-0.015625573694706],[-0.018833961337805,-0.098044633865356,0.0049567865207791],[0.056374125182629,-0.022548619657755,0.017698811367154]],[[0.048957962542772,0.12850506603718,-0.017260503023863],[0.041963398456573,0.035409897565842,-0.011397914029658],[-0.017153669148684,-0.05310283228755,0.00028673186898232]],[[-0.024367520585656,0.042318873107433,0.20358295738697],[-0.02379702962935,0.046610146760941,-0.042089208960533],[-0.023350302129984,0.0079290298745036,-0.038824811577797]],[[-0.15040448307991,0.046608868986368,-0.058181311935186],[-0.0034024813212454,-0.01096005178988,-0.010436695069075],[-0.0087800296023488,-0.071590445935726,-0.023195840418339]],[[0.074487298727036,-0.020984333008528,0.035314738750458],[0.068310208618641,-0.0059353872202337,0.057502258569002],[0.11841821670532,-0.044001344591379,0.035644799470901]],[[0.026536542922258,0.024807725101709,-0.012054109014571],[0.0020975002553314,0.022910797968507,0.088053472340107],[-0.030322575941682,-0.12052916735411,-0.018544444814324]],[[0.013546067290008,-0.066536605358124,-0.056395586580038],[-0.035570036619902,-0.051862481981516,-0.0010071354918182],[0.002251838799566,0.05762143433094,-0.0093546835705638]],[[0.013350573368371,0.0055562872439623,-0.045788422226906],[-0.0042628096416593,-0.012274683453143,-0.023665077984333],[-0.01123417634517,0.094984650611877,0.033851016312838]],[[-0.00061747984727845,0.028952311724424,0.11681732535362],[0.085792921483517,0.070355780422688,0.031134065240622],[0.071994714438915,0.0073811975307763,0.0073466934263706]],[[-0.032838582992554,-0.010530843399465,-0.024853663519025],[-0.055050205439329,0.039633136242628,0.03301826864481],[-0.062592752277851,-0.089457675814629,0.012303978204727]],[[0.0033029252663255,-0.049923490732908,0.080138526856899],[-0.035076290369034,0.014982184395194,0.011534280143678],[-0.033469967544079,0.064265124499798,-0.0049528097733855]],[[0.041277680546045,-0.03090856038034,-0.013374738395214],[-0.029214307665825,-0.0040668952278793,0.014324500225484],[-0.039530735462904,0.05200158432126,0.021111655980349]],[[0.00028322279104032,-0.12518145143986,-0.2541851401329],[0.059739980846643,-0.001755878678523,-0.050379652529955],[0.0040548667311668,0.094809271395206,0.040277842432261]],[[0.12998470664024,-0.08193202316761,-0.014533904381096],[0.1295793056488,-0.071235276758671,0.060815520584583],[-0.15401117503643,-0.19093434512615,-0.063396461308002]],[[0.023048434406519,-0.10918927937746,-0.033222671598196],[-0.08004005253315,-0.012141370214522,-0.0039685615338385],[0.032894793897867,0.038017187267542,0.012483712285757]],[[0.044794913381338,0.040294349193573,-0.0024763366673142],[0.048846319317818,0.031327184289694,0.14871674776077],[-0.012984029948711,0.041287891566753,0.050480574369431]],[[-0.010734140872955,0.069479934871197,-0.06616035848856],[0.047298058867455,0.037209805101156,-0.028344508260489],[0.027107585221529,0.0072505325078964,-0.076663121581078]],[[-0.014908757060766,0.062957435846329,-0.037011027336121],[0.051793627440929,0.086152009665966,-0.018641205504537],[0.010049989446998,-0.013846022076905,-0.017035007476807]],[[0.03082125261426,-0.059014089405537,0.060962077230215],[0.069891072809696,-0.05101191624999,0.1042632907629],[0.052030399441719,0.019553564488888,0.074645347893238]],[[-0.059901259839535,-0.11645835638046,-0.02062182687223],[-0.034628335386515,0.0087637240067124,-0.0021350139286369],[-0.018578357994556,0.013690437190235,-0.1135400980711]],[[-0.017968425527215,0.01185476500541,0.10388866066933],[0.018153961747885,0.059897869825363,0.0061623095534742],[-0.0049344869330525,-0.0081436019390821,-0.11064021289349]],[[-0.0063818627968431,-0.097857303917408,-0.08809407800436],[0.051325816661119,0.049871135503054,0.075260370969772],[0.070575587451458,0.065347589552402,0.089764811098576]],[[-0.0039288182742894,-0.0040850969962776,-0.12755110859871],[0.034689757972956,-0.094027906656265,-0.021291144192219],[-0.079784050583839,-0.015058893710375,0.059393286705017]],[[0.038217917084694,0.012366866692901,-0.084707073867321],[0.076440632343292,-0.10672284662724,0.084516689181328],[-0.13338829576969,-0.18931101262569,0.03483484312892]],[[0.058940399438143,0.012490347959101,0.049307264387608],[-0.0097980201244354,0.010039360262454,-0.052068598568439],[0.0061338916420937,0.0057158502750099,0.044972330331802]],[[0.11342361569405,0.029291884973645,-0.030060097575188],[0.0055783116258681,-0.023461513221264,-0.045129645615816],[0.088886082172394,0.041986234486103,0.0029697089921683]],[[-0.0073284143581986,-0.080305553972721,-0.153519064188],[0.098947934806347,-0.024158284068108,-0.033757336437702],[0.038693364709616,0.045065995305777,-0.023400908336043]],[[-0.052640810608864,-0.0059897382743657,-0.081220738589764],[0.1101765781641,-0.00071095710154623,-0.05245303735137],[0.051166858524084,0.0088548604398966,0.028430948033929]],[[0.014351156540215,0.020233180373907,-0.10834331065416],[0.0064108846709132,-0.080189898610115,0.066591747105122],[-0.036518882960081,-0.0042470721527934,-0.0053539853543043]],[[-0.0025901915505528,0.042609766125679,-0.033506885170937],[0.1154180765152,-0.045276049524546,-0.050572723150253],[0.081728249788284,0.068861544132233,-0.12133129686117]],[[-0.071519114077091,0.037667088210583,0.023537518456578],[0.066343829035759,0.029891608282924,-0.075587652623653],[-0.11674177646637,0.015216159634292,-0.077958688139915]],[[0.024681068956852,0.056993961334229,0.036592539399862],[0.016708053648472,0.07165789604187,-0.0049783797003329],[-0.029583156108856,0.040454559028149,-0.01335280854255]],[[-0.011348539032042,-0.020333796739578,0.057925902307034],[-0.022731283679605,-0.0087266843765974,-0.0084252031520009],[-0.037942480295897,0.042272374033928,-0.011274346150458]],[[0.013608769513667,-0.06532745808363,-0.018265426158905],[-0.0076640080660582,0.058122236281633,0.010244477540255],[0.10387489199638,0.13560153543949,-0.08958949893713]],[[0.020701672881842,0.020996812731028,0.04873501509428],[0.020344642922282,0.049005441367626,-0.042049486190081],[0.089406706392765,0.056567694991827,0.077510081231594]],[[0.077263668179512,0.016824772581458,-0.12581118941307],[-0.089463047683239,-0.028561165556312,0.029751822352409],[-0.093158133327961,0.016802353784442,0.0099401390179992]],[[-0.039662908762693,-0.036433190107346,-0.037676744163036],[-0.043917149305344,-0.041629463434219,-0.015188621357083],[-0.12964582443237,-0.026523856446147,0.014631783589721]],[[-0.0015341233229265,0.054006643593311,0.09484089165926],[0.038983732461929,-0.0040098228491843,0.016306951642036],[0.11628865450621,0.073873527348042,-0.0023738627787679]],[[-0.0050673699006438,-0.040647264569998,-0.019008303061128],[0.065110728144646,0.0093720154836774,-0.055326584726572],[0.050900101661682,0.015164555050433,0.028394928202033]],[[0.022855436429381,-0.05002524331212,-0.12917193770409],[-0.046937711536884,-0.051092676818371,-0.033532936125994],[-0.054049618542194,-0.14525701105595,0.015938175842166]],[[-0.0019744934979826,0.022663313895464,-0.010938411578536],[-0.088891848921776,-0.02419001236558,0.046821065247059],[-0.17943795025349,-0.10203554481268,-0.022701218724251]],[[-0.012703484855592,-0.13854451477528,-0.086486831307411],[0.063618004322052,-0.019439740106463,-0.022349588572979],[0.052548494189978,0.025698509067297,0.0096281711012125]],[[-0.08211424946785,-0.088874615728855,0.10758826881647],[-0.020419718697667,0.12539947032928,-0.035464223474264],[0.0885274335742,-0.052259504795074,0.022235848009586]],[[0.12154570966959,-0.07194160670042,0.058032590895891],[0.075414888560772,-0.090840063989162,0.033499620854855],[0.065368644893169,-0.1310999840498,0.019835045561194]],[[-0.086490415036678,-0.012425842694938,-0.047575414180756],[0.011665472760797,-0.019896846264601,-0.054777607321739],[0.032373156398535,-0.05526414513588,-0.010410006158054]],[[-0.08923751860857,0.013783785514534,-0.1314782500267],[-0.025303836911917,-0.020470809191465,0.0064902007579803],[-0.0021595382131636,0.031715631484985,-0.002525728661567]],[[-0.054773889482021,0.025490956380963,-0.13151073455811],[0.01036527287215,0.035179264843464,-0.089628867805004],[0.041227679699659,-0.0088808825239539,-0.094828113913536]],[[0.048568900674582,0.028112413361669,-0.11199045181274],[-0.04285529628396,0.0038070555310696,-0.01931568607688],[0.086462296545506,0.0036403450649232,-0.0050772726535797]],[[-0.01089592371136,0.0045220158062875,0.0031045479699969],[-0.031985715031624,0.082204043865204,0.0066641084849834],[0.090120390057564,0.049936588853598,-0.0077870315872133]],[[-0.0059483340010047,-0.021186660975218,0.064302340149879],[-0.093478083610535,0.028630323708057,-0.012736027128994],[-0.14028196036816,-0.039894204586744,-0.1513804346323]],[[-0.15406233072281,0.059921164065599,0.16003185510635],[-0.021957768127322,0.075584575533867,0.026111498475075],[-0.045920085161924,0.12069498002529,-0.014816312119365]],[[-0.022523095831275,0.021725185215473,-0.0043534012511373],[0.024154966697097,0.021885693073273,-0.015814855694771],[0.035100799053907,-0.024917425587773,-0.028929438441992]],[[0.050378073006868,-0.059070106595755,-0.076289109885693],[-0.010374859906733,0.048349156975746,0.032482273876667],[-0.02428862825036,-0.084535636007786,0.0082572307437658]],[[-0.041228868067265,-0.19400806725025,-0.12620836496353],[0.046054765582085,-0.0062835454009473,0.072424508631229],[0.012224691919982,0.019338112324476,-0.027959380298853]],[[-0.028639193624258,0.0036338134668767,0.01977027207613],[-0.048046577721834,-0.045815005898476,0.062577560544014],[0.043880555778742,-0.042583778500557,0.019662702456117]],[[-0.01091187633574,-0.18221509456635,-0.068455465137959],[-0.10560724884272,-0.016889283433557,-0.021514713764191],[-0.083155654370785,0.02710322290659,0.013202930800617]]],[[[0.030950685963035,-0.02648938074708,-0.021894078701735],[0.02308994717896,-0.0020490896422416,-0.038897346705198],[-0.11245133727789,0.04018970951438,0.019184112548828]],[[0.057452075183392,-0.011824927292764,-0.083854742348194],[-0.013608335517347,-0.039258819073439,-0.031343284994364],[-0.015439474023879,0.053908750414848,-0.081577986478806]],[[-0.017841497436166,0.011877242475748,-0.020128335803747],[-0.055770993232727,-0.024065470322967,0.014238544739783],[-0.060415614396334,0.029526256024837,0.03570694103837]],[[0.024677738547325,-0.01732661947608,0.020335441455245],[-0.0045101591385901,0.034669984132051,-0.00540961464867],[-0.15519250929356,-0.00017010883311741,-0.0076582012698054]],[[0.011785782873631,-0.051685441285372,-0.021757520735264],[-0.11233282089233,0.010888763703406,0.063668377697468],[0.024240102618933,-0.034337569028139,-0.023202551528811]],[[-0.019024221226573,0.041929133236408,0.10735645890236],[-0.14432112872601,-0.00041830938425846,0.084051802754402],[-0.11816700547934,-0.0633235424757,-0.061440911144018]],[[-0.026192557066679,0.10831435024738,-0.004128725733608],[0.050088867545128,0.047302793711424,0.0094829434528947],[0.031820297241211,0.01481802854687,-0.016072116792202]],[[0.032394461333752,0.056058473885059,-0.017025966197252],[0.035864144563675,-0.025864396244287,-0.043874885886908],[-0.031999669969082,-0.10315345972776,0.017704335972667]],[[0.063474290072918,0.06389032304287,0.063419193029404],[-0.073532946407795,-0.03308717533946,-0.018427001312375],[-0.051219299435616,-0.060690395534039,0.018547212705016]],[[-0.094985395669937,0.02385102212429,0.092686414718628],[-0.047801245003939,0.0099770352244377,0.039658468216658],[0.10075010359287,0.020988497883081,-0.018793404102325]],[[-0.023218570277095,-0.057671971619129,-0.15111266076565],[-0.088408514857292,-0.032498769462109,0.099312789738178],[0.010203522630036,-0.041027255356312,0.0036477989051491]],[[-0.12224554270506,-0.01706057228148,-0.028182649984956],[-0.21329602599144,-0.0098843919113278,-0.027842013165355],[-0.22147791087627,-0.013688297942281,0.018542973324656]],[[0.038495119661093,-0.030642528086901,0.077174350619316],[0.0073057124391198,0.047109141945839,0.0049834032543004],[-0.12221374362707,-0.03011935763061,-0.0022416373249143]],[[0.0050320103764534,0.034916561096907,-0.0086486488580704],[-0.046530570834875,-0.050672758370638,-0.032804556190968],[0.0055613955482841,-0.064186558127403,-0.024043463170528]],[[0.008321319706738,-0.0093087898567319,-0.10421025753021],[-0.030574133619666,-0.013711791485548,-0.042138747870922],[0.032327175140381,-0.056022785604,-0.030075635761023]],[[0.022160036489367,-0.00066148571204394,0.043320331722498],[0.10412444919348,-0.00080142734805122,-0.0047382502816617],[0.043896302580833,0.072817429900169,0.050428602844477]],[[-0.052819550037384,-0.13053384423256,-0.019250022247434],[-0.10278212279081,-0.064189665019512,-0.047627110034227],[-0.097022704780102,-0.020168118178844,-0.016874816268682]],[[-0.036017004400492,0.031742196530104,0.014617252163589],[-0.046616274863482,-0.027169894427061,-0.017934996634722],[-0.11672658473253,-0.047621943056583,-0.022379925474524]],[[-0.022003630176187,-0.060945518314838,-0.0046330066397786],[-0.009157158434391,-0.026900958269835,0.072295807301998],[0.021707076579332,0.027151510119438,-0.059466294944286]],[[0.012569631449878,-0.044475436210632,-0.0011790506541729],[0.019854601472616,-0.007577492389828,0.0076228850521147],[0.041132614016533,-0.012346666306257,-0.026472214609385]],[[-0.049586944282055,0.035342786461115,0.17537203431129],[0.03086719289422,-0.071206443011761,0.017053367570043],[0.034877076745033,-0.10706993937492,-0.045750539749861]],[[0.10123565047979,0.13587194681168,0.038461804389954],[-0.1324615329504,0.024379061535001,0.05598583444953],[0.011321851983666,0.012395276688039,0.049080438911915]],[[-0.024476369842887,-0.081328563392162,-0.026845492422581],[-0.023431157693267,0.085836581885815,0.002606235910207],[-0.16180182993412,0.072028174996376,-0.021633615717292]],[[0.074000984430313,-0.031538490206003,-0.012304377742112],[0.096108458936214,0.10839757323265,0.085211515426636],[0.17635132372379,0.1786148250103,0.002529219025746]],[[0.0055214879103005,-0.13173967599869,-0.078640975058079],[-0.0023222202435136,-0.063050925731659,-0.050531297922134],[-0.13183395564556,-0.041400771588087,-0.043498527258635]],[[-0.0065092509612441,0.02459879592061,0.0081313671544194],[0.006053616758436,-0.064981788396835,0.01941879093647],[0.039615266025066,0.07126884162426,0.06420561671257]],[[-0.019215805456042,0.080972865223885,0.030540391802788],[-0.014557522721589,-0.10590083897114,-0.022911684587598],[0.02721281349659,-0.022823352366686,0.028232969343662]],[[-0.045162860304117,-0.11295552551746,-0.065549314022064],[-0.06164662912488,-0.022432202473283,0.033635761588812],[-0.027391906827688,-0.015908502042294,-0.04718379676342]],[[-0.0041683362796903,-0.08412392437458,0.0029430887661874],[-0.040254537016153,0.016982322558761,-0.1031079441309],[-0.071220353245735,0.052850171923637,-0.084161438047886]],[[0.028742341324687,0.092936903238297,0.053284205496311],[-0.013973539695144,-0.035754181444645,0.012691083364189],[0.030743777751923,-0.0057444581761956,0.04623419418931]],[[0.040670827031136,0.011754125356674,-0.059644673019648],[-0.063069887459278,0.035805411636829,-0.031031042337418],[0.077472701668739,0.00071574287721887,0.020905377343297]],[[-0.20291455090046,-0.044050488620996,-0.072336256504059],[-0.035830922424793,0.033513143658638,-0.0065104383975267],[-0.19701433181763,-0.041497435420752,-0.036212272942066]],[[-0.016437083482742,-0.027857143431902,0.04883111640811],[-0.015728369355202,-0.041308645159006,0.037718586623669],[0.027479492127895,-0.043805971741676,0.011579220183194]],[[0.017366511747241,0.093137435615063,0.085533477365971],[0.027457369491458,0.097806699573994,0.065728589892387],[-0.09493263065815,0.021400984376669,0.0093251913785934]],[[-0.21996314823627,-0.080694168806076,-0.084618248045444],[-0.094870664179325,-0.036160223186016,-0.060338623821735],[-0.10651522129774,-0.035399880260229,-0.048673417419195]],[[0.061781577765942,0.016743563115597,-0.056156530976295],[0.097195811569691,0.052625134587288,-0.048827547580004],[-0.0069448663853109,0.045741364359856,0.045740447938442]],[[0.030811473727226,0.020203337073326,0.057916268706322],[-0.00089397694682702,0.0092190457507968,0.045091070234776],[0.075832195580006,0.029275326058269,0.055159501731396]],[[0.11076945066452,-0.083945922553539,0.089197561144829],[0.056450884789228,-0.014938808977604,0.017641579732299],[0.012973024509847,-0.11462768167257,0.083565756678581]],[[-0.15300390124321,-0.13422660529613,-0.057252883911133],[-0.021096915006638,0.037647418677807,0.023134117946029],[-0.077520534396172,-0.046281564980745,0.057286396622658]],[[-0.024509681388736,-0.058228943496943,-0.21601650118828],[-0.03373833745718,0.0061916220001876,-0.016196759417653],[-0.11177977919579,-0.11515609174967,-0.0037561366334558]],[[-0.10817652195692,-0.067961893975735,0.066150046885014],[0.039918888360262,-0.057677626609802,0.071607574820518],[0.10806493461132,-0.022833311930299,-0.0029958738014102]],[[0.070179037749767,0.075972758233547,-0.043479364365339],[0.011803838424385,-0.095541588962078,0.014507999643683],[0.049924846738577,0.0081503419205546,-0.033588990569115]],[[0.036370478570461,0.10811117291451,-0.02795934304595],[-0.012919071130455,0.0081947045400739,0.046354729682207],[0.042342621833086,0.061657100915909,0.10915577411652]],[[-0.028684521093965,0.040055021643639,0.017186310142279],[-0.034139540046453,0.008342320099473,0.095757976174355],[-0.10300499945879,-0.026194902136922,-0.087988838553429]],[[0.020858731120825,0.05702069029212,0.095561631023884],[-0.01224032137543,-0.07035855203867,-0.059772718697786],[-0.044072464108467,-0.014014577493072,-0.0084818145260215]],[[0.051594913005829,-0.026558855548501,-0.16561342775822],[-0.097872771322727,0.0093753896653652,-0.014740739949048],[-0.1392900198698,-0.068418845534325,-0.01596662402153]],[[0.077976398169994,-0.055651072412729,-0.012344169430435],[-0.059724934399128,0.0015760122332722,0.020521441474557],[-0.0036547426134348,-0.0088392617180943,-0.021570973098278]],[[-0.0062199435196817,-0.043116427958012,0.09541592746973],[-0.065227866172791,-0.039815284311771,-0.039760615676641],[-0.070674553513527,-0.027469607070088,-0.12242068350315]],[[0.065986454486847,0.046630192548037,-0.09605298191309],[0.056668739765882,-0.075415290892124,0.030387977138162],[-0.10263764858246,-0.094915010035038,-0.015978904440999]],[[0.006425422616303,0.045490704476833,-0.099874265491962],[-0.12887208163738,0.11228282004595,-0.039942748844624],[-0.17143043875694,0.021081181243062,-0.00062838924350217]],[[0.02854485437274,0.0088849207386374,-0.057510700076818],[-0.055693220347166,0.0029264986515045,0.034677594900131],[-0.017834207043052,-0.057874891906977,0.055356346070766]],[[0.050896044820547,0.022103233262897,-0.16915185749531],[0.13035203516483,0.085315883159637,-0.035325545817614],[0.27451926469803,0.15783005952835,-0.022138208150864]],[[0.036012567579746,-0.060805682092905,0.086680740118027],[0.01162572670728,-0.039626739919186,-0.03295998647809],[-0.017177218571305,-0.019625728949904,-0.036096513271332]],[[-0.014390211552382,0.031161895021796,0.06627381592989],[-0.0083821769803762,-0.002987673971802,0.084575571119785],[0.015648016706109,0.061622120440006,0.04106568172574]],[[-0.0082230539992452,0.083145514130592,0.0077002090401947],[0.1040118932724,-0.00035044536343776,-0.12936748564243],[-0.21490548551083,-0.10789629817009,-0.068141475319862]],[[-0.081677556037903,-0.0433782748878,0.078194476664066],[-0.019007816910744,0.023841992020607,0.041657727211714],[0.040612529963255,0.024789489805698,-0.033875118941069]],[[-0.0030254193115979,-0.025500478222966,0.013693371787667],[0.0026570954360068,0.036489449441433,-0.021655235439539],[-0.023773394525051,0.093039840459824,0.01331343036145]],[[0.045670609921217,-0.053997810930014,0.070416368544102],[0.049779728055,-0.008073054254055,0.091913059353828],[-0.075796276330948,-0.086542084813118,-0.0073438766412437]],[[0.019598359242082,-0.045309945940971,-0.071489773690701],[0.14749181270599,0.11523149162531,0.034508999437094],[0.1766943782568,0.028729364275932,-0.012169660069048]],[[-0.02855322510004,0.070973813533783,0.035107392817736],[-0.031202394515276,0.014532236382365,-0.00074692873749882],[-0.043958652764559,-0.010368376970291,0.0071722622960806]],[[-0.0049057165160775,0.0097457636147738,0.020494885742664],[-0.034089110791683,0.060648385435343,0.041679285466671],[0.026735952124,-0.016586119309068,0.019799504429102]],[[-0.038357302546501,-0.065042428672314,0.010408484376967],[-0.035465855151415,-0.010667026974261,-0.049537342041731],[-0.01586482860148,0.053900308907032,0.015691803768277]],[[0.095746494829655,0.038898758590221,-0.097841814160347],[-0.018094459548593,0.010986903682351,0.00076862523565069],[-0.059172458946705,0.06792476773262,0.061228819191456]],[[-0.049650516360998,-0.10220058262348,0.17720450460911],[-0.072671912610531,-0.051990143954754,0.069319054484367],[-0.063820764422417,0.030683413147926,-0.021731717512012]]],[[[-0.07623353600502,-0.11828169226646,-0.0025948116090149],[0.016463944688439,0.12121544033289,0.059023264795542],[0.049720168113708,-0.066167533397675,0.097277909517288]],[[-0.023899998515844,-0.0032867444679141,-0.0088082868605852],[0.030614290386438,0.10970290005207,-0.01700989715755],[-0.052705124020576,0.023652443662286,-0.17153619229794]],[[-0.093184486031532,-0.030709818005562,0.0034222356043756],[-0.086072079837322,-0.032531004399061,-0.028768772259355],[-0.0057698860764503,-0.11591768264771,0.061533700674772]],[[-0.0062932125292718,0.12360793352127,0.012906185351312],[-0.037966523319483,0.0090957209467888,0.033897709101439],[-0.060021672397852,-0.064375169575214,0.041737727820873]],[[-0.038625728338957,0.13523975014687,0.0053653954528272],[-0.018779173493385,-0.059162795543671,-0.089697502553463],[0.0092985723167658,0.011920558288693,-0.0067826746962965]],[[-0.069449953734875,0.042831465601921,-0.022517250850797],[-0.059227924793959,-0.019356522709131,0.0081125162541866],[0.060809228569269,-0.15975838899612,0.037034641951323]],[[-0.047987159341574,-0.073351249098778,0.10637870430946],[-0.033351227641106,0.017727673053741,0.011327983811498],[0.067378602921963,-0.057246651500463,-0.076957307755947]],[[-0.046327453106642,0.068372823297977,0.017055904492736],[0.0069826235994697,-0.045617889612913,-0.068007186055183],[0.0043462035246193,-0.081267066299915,0.073274478316307]],[[-0.035132642835379,-0.047367814928293,-0.0095298495143652],[0.0095665296539664,-0.012283234857023,-0.052770614624023],[0.053016342222691,0.14240585267544,0.010060871019959]],[[0.002065519336611,-0.062110390514135,-0.020847704261541],[0.0094711743295193,0.013553465716541,-0.048094637691975],[0.12478842586279,-0.12108922749758,0.00073570106178522]],[[0.034940980374813,-0.045466613024473,0.0043319594115019],[-0.00085271283751354,0.034748177975416,0.048338800668716],[-0.034528490155935,0.08286115527153,0.021189875900745]],[[-0.071263670921326,-0.0059659602120519,-0.029133576899767],[0.0077419066801667,0.030545691028237,0.071928568184376],[0.10175011307001,0.042602244764566,0.05011348053813]],[[0.096182942390442,0.04474775120616,0.10110726952553],[-0.060174949467182,-0.048130627721548,-0.24329167604446],[0.042470343410969,-0.012500397861004,0.014096136204898]],[[0.106725089252,-0.13380570709705,-0.095012158155441],[0.0037253517657518,0.0077461744658649,0.089794956147671],[-0.059665732085705,0.053971007466316,0.014581612311304]],[[0.0097730420529842,-0.069368913769722,0.063006155192852],[-0.071492195129395,0.033072371035814,-0.0022959625348449],[0.027127658948302,-0.04714622721076,0.059321843087673]],[[0.0098394369706511,-0.012302215211093,-0.058003194630146],[-0.0040117832832038,0.021057372912765,-0.11510030925274],[-0.036765873432159,0.002363472012803,0.009701881557703]],[[0.045644216239452,-0.10133623331785,0.059200342744589],[-0.087813504040241,-0.035860750824213,-0.050255082547665],[-0.031501214951277,0.11225775629282,0.10449369251728]],[[-0.044563289731741,-0.076176255941391,-0.007215834222734],[0.061001092195511,0.0054204170592129,-0.069161482155323],[0.040347158908844,0.077504605054855,-0.0068883020430803]],[[0.044967625290155,0.062626354396343,-0.035684030503035],[0.10598011314869,-0.023583684116602,-0.094468258321285],[0.079883210361004,-0.095309212803841,-0.02212099544704]],[[0.048430167138577,-0.043370079249144,-0.017004705965519],[-0.019533267244697,-0.025621073320508,0.049132980406284],[-0.027800034731627,0.02243672311306,0.053438015282154]],[[-0.18308743834496,-0.19173350930214,-0.027623761445284],[-0.063697047531605,-0.010338420979679,-0.040851160883904],[-0.0080716852098703,0.0700858309865,-0.026733236387372]],[[-0.13247747719288,-0.036134246736765,-0.046795569360256],[-0.01107654441148,-0.037757337093353,-0.13841924071312],[-0.040270045399666,0.0002604937471915,-0.08709405362606]],[[-0.01105104200542,0.0090231811627746,0.068175181746483],[-0.13360071182251,0.0098414309322834,0.008868396282196],[-0.031571228057146,-0.039992611855268,-0.019452860578895]],[[0.056545734405518,0.1509565114975,0.19471719861031],[-0.016057090833783,-0.0050786514766514,-0.013701888732612],[0.0247259773314,-0.055467952042818,-0.072683058679104]],[[-0.19982215762138,-0.056796137243509,-0.022866206243634],[0.046761833131313,0.11605135351419,-0.055775679647923],[0.12257798761129,-0.021596517413855,-0.12375317513943]],[[-0.048318184912205,0.048309180885553,0.0092491349205375],[0.037037197500467,0.14130200445652,0.07479253411293],[0.032695278525352,0.0033653355203569,0.015013378113508]],[[0.012407345697284,0.015939505770802,-0.057275205850601],[0.028187073767185,0.070558190345764,0.096451096236706],[-0.018003404140472,0.027019161731005,0.077593378722668]],[[-0.027798837050796,-0.052811417728662,0.08905615657568],[-0.046064365655184,-0.087727509438992,0.090152032673359],[0.059353809803724,-0.14789171516895,0.049247495830059]],[[-0.072611175477505,0.071873158216476,-0.0058756438083947],[0.01606004871428,0.17971228063107,0.045857094228268],[-0.018865713849664,-0.034565668553114,-0.066712439060211]],[[0.056207273155451,-0.12168823182583,-0.10089261829853],[0.074172526597977,0.084452442824841,0.042135555297136],[0.039015203714371,0.037589497864246,0.048021238297224]],[[0.0050850682891905,-0.050811186432838,-0.048488654196262],[-0.0097825229167938,0.063931472599506,0.00076169235398993],[0.041375763714314,-0.05947183445096,0.050249401479959]],[[-0.14098496735096,-0.0076806754805148,-0.016948798671365],[-0.01687335409224,-0.11180182546377,-0.069451689720154],[0.078507952392101,-0.0021208364050835,0.17109449207783]],[[0.032749015837908,0.030649732798338,0.0041510667651892],[-0.089004211127758,0.013793913647532,-0.007931555621326],[-0.052607875317335,0.0067111342214048,0.037088442593813]],[[0.042889215052128,-0.019071880728006,-0.050027795135975],[0.038564924150705,0.0098329354077578,-0.045309495180845],[-0.16761423647404,-0.24471306800842,-0.11968879401684]],[[0.013385313563049,-0.1102643981576,0.0065965233370662],[0.092847652733326,0.05690848454833,-0.047986451536417],[0.025591097772121,-0.025364527478814,-0.10070610046387]],[[-0.16036260128021,0.00096085376571864,-0.0087410332635045],[0.010590728372335,-0.11348932981491,-0.020618150010705],[-0.0038650226779282,-0.14175894856453,-0.035960130393505]],[[0.012407572008669,0.018981952220201,-0.056457672268152],[-0.019501488655806,-0.029493514448404,-0.0065433285199106],[-0.054014589637518,-0.012353547848761,0.011135012842715]],[[0.13413706421852,-0.018770510330796,-0.0091298976913095],[0.061935130506754,0.016664939001203,-0.050425935536623],[0.025013698264956,-0.096321672201157,-0.10269271582365]],[[-0.017011443153024,0.064476490020752,0.068356081843376],[-0.0070867319591343,-0.04645898193121,0.027343166992068],[-0.00074382830644026,-0.059945710003376,0.012539165094495]],[[-0.056919895112514,-0.064056642353535,-0.072775475680828],[-0.094186902046204,-0.060656353831291,-0.023545125499368],[0.043307546526194,-0.065909653902054,0.0097734313458204]],[[-0.07549637556076,-0.12012320011854,0.01255496032536],[-0.059969138354063,0.03554454818368,0.058791324496269],[-0.031370878219604,0.023485545068979,-0.0075370464473963]],[[0.099636800587177,0.00084228831110522,-0.033579245209694],[0.0057564708404243,-0.012500416487455,-0.034503802657127],[0.08938080817461,0.061917275190353,-0.02025843411684]],[[-0.040749408304691,0.087854757905006,-0.016122372820973],[0.0012953726109117,-0.037333182990551,-0.023689292371273],[0.03466660156846,0.0042254365980625,-0.02380957454443]],[[0.02565786242485,0.053220197558403,0.0554019510746],[-0.012286840938032,0.0018568217055872,0.0092971352860332],[0.01370042283088,-0.10080695152283,-0.0095959026366472]],[[0.14130797982216,-0.060088124126196,0.037305817008018],[-0.022023925557733,0.012353991158307,0.007293104659766],[-0.059778708964586,-0.068252600729465,0.044012024998665]],[[-0.012385722249746,0.060298565775156,-0.038736339658499],[-0.04467599093914,0.01318331900984,-0.021224403753877],[-0.020507205277681,0.0036953072994947,0.091795958578587]],[[-0.0063105747103691,-0.034697405993938,0.06102953478694],[0.038961820304394,0.12619797885418,-0.048723697662354],[-0.013965791091323,-0.017372766509652,0.10157208889723]],[[0.0084079513326287,-0.045865528285503,0.090574629604816],[0.058760713785887,-0.12453386187553,0.0070519573055208],[0.05358475074172,0.02605021186173,-0.017431473359466]],[[-0.067784756422043,0.025250798091292,0.048546645790339],[-0.08764536678791,0.012952049262822,0.032371789216995],[0.013817478902638,0.034944754093885,0.030087739229202]],[[-0.12512670457363,0.015925701707602,-0.057021182030439],[-0.16294990479946,-0.073816150426865,0.047386329621077],[-0.076990284025669,-0.070419751107693,0.038920883089304]],[[-0.052852530032396,0.01172699406743,-0.002535937121138],[0.041623447090387,-0.068628951907158,-0.0010394644923508],[-0.098102770745754,0.033104233443737,-0.048212822526693]],[[0.027704913169146,0.14456725120544,-0.04858185723424],[0.0043650823645294,-0.061612129211426,0.19424273073673],[-0.057842656970024,-0.022101849317551,0.15220214426517]],[[0.025924416258931,-0.049149218946695,-0.032374709844589],[-0.019456122070551,-0.097876876592636,0.027809528633952],[0.035154290497303,-0.10767588019371,0.084214136004448]],[[-0.018582047894597,-0.064190447330475,-0.010606713593006],[-0.010571606457233,0.0072737615555525,0.040838617831469],[0.0455511957407,0.0074340607970953,-0.040366612374783]],[[0.07889711856842,-0.072715848684311,0.038656953722239],[-0.0050544976256788,0.015923965722322,-0.088270120322704],[-0.055870901793242,0.025908267125487,-0.0019126337720081]],[[0.02888511121273,0.11278300732374,-0.070037022233009],[0.07422162592411,-0.00071382895112038,-0.10070402175188],[-0.084773898124695,0.057301107794046,0.017304616048932]],[[-0.040895223617554,-0.039424117654562,0.029509196057916],[-0.023582363501191,0.053033176809549,0.070042222738266],[-0.046706523746252,0.067904323339462,0.054013337939978]],[[0.041907109320164,-0.036566376686096,-0.052855528891087],[-0.014488648623228,0.026484180241823,0.0047633019275963],[-0.10888355970383,-0.064613580703735,-0.12747482955456]],[[0.044352065771818,0.00027927861083299,0.094031743705273],[-0.046040996909142,-0.015849823132157,-0.04522867500782],[0.022105032578111,0.093136884272099,0.061613537371159]],[[-0.017554858699441,0.054651938378811,-0.00018839932454284],[0.040518384426832,0.049469452351332,-0.044845763593912],[0.064423799514771,-0.03730732947588,-0.089781261980534]],[[0.11179802566767,-0.130225867033,-0.032451160252094],[-0.19865600764751,0.0058413497172296,-0.0042526726610959],[-0.11333517730236,0.016369992867112,0.024045899510384]],[[-0.076232515275478,-0.023152114823461,-0.081994153559208],[-0.09362518042326,0.061942208558321,0.089059509336948],[-0.00013437660527416,0.046469364315271,0.03709401935339]],[[0.030652286484838,-0.010507938452065,-0.014483052305877],[-0.036743715405464,0.0037875673733652,-0.0044939094223082],[-0.040665701031685,-0.087730675935745,0.029605200514197]],[[0.031047139316797,0.10536502301693,-0.047328855842352],[0.0056929932907224,0.090987674891949,-0.055134188383818],[-0.039470583200455,-0.13417303562164,-0.084493659436703]]],[[[-0.022711431607604,-0.15012499690056,-0.06166585534811],[-0.046374186873436,-0.041350673884153,-0.014647935517132],[0.029460426419973,-0.00038552837213501,-0.026328284293413]],[[0.094711057841778,0.092600457370281,-0.083783127367496],[-0.021635334938765,-0.092190772294998,-0.11608991026878],[0.079828009009361,-0.037566486746073,-0.015450274571776]],[[-0.087255537509918,-0.026569504290819,0.001963356975466],[0.0072008189745247,-0.21777561306953,0.0063881361857057],[-0.05242808163166,-0.03571555763483,-0.012849271297455]],[[0.090601772069931,0.036031346768141,-0.036068685352802],[0.0096814595162868,0.050930481404066,-0.13415411114693],[-0.10812489688396,-0.030870074406266,0.0015052550006658]],[[-0.033658962696791,-0.0064483564347029,0.029243815690279],[0.082359880208969,-0.011745545081794,0.019038539379835],[-0.074500799179077,-0.020354269072413,0.037881139665842]],[[0.045995973050594,-0.028685312718153,-0.010309631936252],[0.17225766181946,-0.11386080831289,-0.10842450708151],[0.05926176905632,0.10162991285324,-0.024529181420803]],[[0.0028897086158395,-0.038455601781607,-0.081282518804073],[0.070174284279346,-0.11586957424879,-0.067593455314636],[0.026072822511196,-0.020226120948792,-0.0078641157597303]],[[0.015990929678082,0.008780681528151,-0.016848906874657],[0.010711611248553,-0.0020315293222666,-0.015262573957443],[0.04809832572937,-0.082469709217548,0.042827885597944]],[[-0.11324852705002,-0.084358625113964,-0.049064870923758],[-0.0041866786777973,-0.017542578279972,0.065438747406006],[0.041736628860235,0.040110018104315,0.048131443560123]],[[0.033292714506388,0.088066965341568,0.079272530972958],[-0.013549516908824,-0.038252577185631,-0.064280442893505],[-0.029413772746921,0.040385190397501,-0.044604226946831]],[[0.036345180124044,-0.016498534008861,-0.08313300460577],[0.02069579064846,-0.035331696271896,0.01439609285444],[-0.046462278813124,-0.028822721913457,0.026094526052475]],[[0.056836612522602,-0.0077885976061225,-0.046168185770512],[-0.093649350106716,-0.11415129899979,-0.0021882972214371],[0.03235987201333,-0.034170303493738,-0.050513323396444]],[[0.058905147016048,-0.025044146925211,0.014284695498645],[0.024711539968848,-0.053581688553095,-0.034351389855146],[-0.050758343189955,0.036522410809994,-0.040718667209148]],[[0.067712537944317,-0.019256325438619,0.025940429419279],[0.032216627150774,-0.023158179596066,0.05612413957715],[-0.024151917546988,0.081745736300945,-0.013030374422669]],[[-0.035371765494347,-0.071869321167469,-0.12881079316139],[0.0064116553403437,0.027242006734014,-0.046349808573723],[-0.054116658866405,-0.044256035238504,-0.055218167603016]],[[-0.12302188575268,0.056122805923223,0.070004396140575],[-0.041049018502235,-0.037274945527315,-0.063951559364796],[0.021155517548323,-0.0084617249667645,0.067126117646694]],[[0.023643720895052,-0.10259035229683,-0.14147554337978],[0.050007022917271,0.13250984251499,-0.12150187045336],[0.033288791775703,0.057970866560936,0.056767269968987]],[[0.030733490362763,-0.063362218439579,0.037556231021881],[-0.097957760095596,0.066010154783726,0.062712401151657],[-0.023125156760216,-0.070384778082371,-0.049297425895929]],[[0.011124975979328,0.047339335083961,-0.085862971842289],[-0.055801022797823,-0.030303524807096,-0.031532730907202],[-0.01063815318048,0.082428149878979,0.0070698540657759]],[[0.046650789678097,0.040867567062378,-0.011321924626827],[0.073484487831593,0.076003529131413,-0.04089530557394],[-0.044184412807226,-0.046358063817024,-0.048610031604767]],[[0.020724529400468,0.072149120271206,-0.033655419945717],[0.042632922530174,0.030490476638079,-0.047434013336897],[0.022149853408337,0.0055093122646213,0.06574435532093]],[[0.035936091095209,-0.16626903414726,-0.066201008856297],[0.048632699996233,-0.060919124633074,-0.069233819842339],[0.15371713042259,0.038612775504589,0.17132462561131]],[[-0.00089411600492895,-0.14727544784546,-0.096571132540703],[0.071146689355373,-0.066404357552528,-0.03454964607954],[0.014069426804781,0.025274150073528,0.050195675343275]],[[-0.10432983189821,-0.011207886040211,0.0086344508454204],[-0.028532285243273,0.085032947361469,0.038603041321039],[0.06524807959795,0.13379983603954,0.057741861790419]],[[-0.038989126682281,-0.071066901087761,-0.018966918811202],[0.029563969001174,0.041523952037096,-0.095302656292915],[0.057337522506714,0.054479628801346,0.019544772803783]],[[-0.0039192601107061,0.033301632851362,0.032915953546762],[0.033487688750029,0.010657828301191,-0.058707293123007],[-0.018548343330622,-0.032645437866449,-0.051396451890469]],[[-0.080857001245022,-0.033656805753708,-0.016409184783697],[-0.02870749309659,-0.013044917955995,0.030513506382704],[0.045769043266773,0.0101528018713,-0.04209741204977]],[[-0.0020054823253304,-0.023950442671776,0.06404996663332],[-0.087120600044727,-0.057518266141415,0.077507495880127],[0.043314002454281,0.10157315433025,0.00077783060260117]],[[-0.0092679066583514,-0.12929092347622,0.0046683847904205],[-0.054816488176584,-0.04462394118309,-0.053789637982845],[0.042197525501251,0.021124387159944,0.056868959218264]],[[-0.027998337522149,-0.01478801947087,-0.13997709751129],[-0.037401497364044,-0.054772526025772,-0.038834698498249],[-0.041617792099714,-0.058616358786821,-0.021089533343911]],[[-0.037009712308645,0.016134532168508,-0.051886804401875],[0.058385025709867,-0.066235467791557,0.00084961793618277],[-0.012734313495457,-0.067190237343311,0.036689016968012]],[[-0.020384011790156,-0.02026004716754,-0.01304548047483],[0.033625762909651,0.024292398244143,0.00049511465476826],[-0.059759553521872,-0.0018742703832686,-0.06377674639225]],[[-0.046341877430677,-0.018862193450332,-0.0015020788414404],[-0.012434164062142,-0.057179611176252,-0.10019477456808],[0.040915969759226,-0.0043053315021098,-0.049639634788036]],[[0.0068658487871289,-0.071107007563114,-0.030648931860924],[-0.021185711026192,0.087401792407036,0.087058313190937],[0.082145102322102,0.041927602142096,-0.11976353824139]],[[0.062036707997322,-0.067866265773773,-0.0048100035637617],[0.024364557117224,-0.032892350107431,-0.018776509910822],[0.011774074286222,-0.0053470660932362,-0.050707031041384]],[[-0.033681213855743,-0.033858247101307,-0.0020171501673758],[0.067326948046684,0.055472128093243,0.0052021630108356],[0.012887642718852,0.046462126076221,-0.042855180799961]],[[-0.0087296385318041,-0.053068686276674,-0.032795738428831],[-0.032923195511103,0.031618405133486,-0.00106878625229],[-0.065718412399292,-0.043782334774733,-0.072157949209213]],[[0.014420604333282,0.05084440484643,0.0056214868091047],[0.020547496154904,0.0094906995072961,-0.046018920838833],[-0.034877866506577,0.069602355360985,-0.038140051066875]],[[-0.11020767688751,0.014023109339178,-0.02157586812973],[-0.055811982601881,0.0022961038630456,0.015506885945797],[-0.0065273954533041,-0.016983868554235,0.019805319607258]],[[-0.059401795268059,-0.067068912088871,-0.083370752632618],[-0.0072838682681322,0.057682923972607,-0.090599380433559],[-0.0864352658391,0.0523621737957,0.082870714366436]],[[-0.049084153026342,-0.039726141840219,0.030633896589279],[-0.0526068136096,0.059024702757597,0.07888226211071],[-0.10414630919695,-0.074778489768505,-0.034469783306122]],[[-0.0040418640710413,0.0038953714538366,-0.011389092542231],[-0.15377025306225,-0.026119058951735,-0.092908032238483],[-0.072028733789921,-0.20143194496632,-0.057210255414248]],[[-0.0065103406086564,0.033906135708094,-0.02428338304162],[0.0048915641382337,-0.050030451267958,-0.008164044469595],[0.042280975729227,-0.042069617658854,0.010646904818714]],[[0.00064722687238827,0.043035458773375,-0.026558488607407],[-0.069767355918884,0.017828159034252,-0.030676372349262],[0.034439701586962,0.005284134298563,0.00097296497551724]],[[-0.02604460529983,-0.037953473627567,-0.028636561706662],[-0.051418028771877,0.037408836185932,-0.080130741000175],[-0.0018607893725857,0.01435684133321,-0.0088371457532048]],[[0.053457710891962,-0.040579579770565,-0.10166735947132],[0.094435997307301,0.036439426243305,0.027072541415691],[-0.018147828057408,-0.031343784183264,0.026148322969675]],[[-0.10546632856131,-0.031208205968142,0.14728328585625],[0.072222724556923,-0.0092390701174736,-0.072306238114834],[0.084564186632633,0.046722158789635,-0.024312369525433]],[[0.065605036914349,0.010411964729428,0.073637269437313],[-0.10190589725971,-0.038599010556936,0.083725765347481],[-0.058774463832378,-0.021507877856493,0.017400765791535]],[[-0.012649108655751,0.049685321748257,-0.097943007946014],[0.049640987068415,0.10028411448002,-0.029395736753941],[-0.10317466408014,-0.002132860943675,-0.0025609072763473]],[[0.027018867433071,-0.0069811060093343,-0.12401240319014],[-0.0015497709391639,-0.024092143401504,-0.067689456045628],[-0.012858059257269,0.035363148897886,-0.026190105825663]],[[0.058057755231857,0.010171099565923,0.012882056646049],[-0.034505415707827,0.010202054865658,0.0072263721376657],[-0.037837527692318,-0.084414623677731,-0.047038398683071]],[[-0.022457402199507,0.044002000242472,0.032178938388824],[0.0099158193916082,0.011708631180227,0.028673723340034],[-0.040489453822374,-0.042159125208855,0.13691419363022]],[[-0.1272266805172,-0.026475172489882,-0.12016110867262],[-0.096292994916439,0.062401697039604,0.0087090814486146],[0.0044254353269935,-0.055058035999537,-0.08681321144104]],[[-0.095544263720512,0.025251341983676,0.059501640498638],[-0.11820214241743,-0.085797883570194,-0.045229576528072],[-0.065723039209843,-0.062976777553558,0.04804340749979]],[[-0.020041620358825,0.021343668922782,-0.018941642716527],[0.0094307465478778,9.1772853920702e-06,-0.033172134310007],[-0.076339296996593,-0.0038545858114958,-0.060274641960859]],[[0.010286634787917,0.094406045973301,-0.070905297994614],[-0.074028998613358,0.085931032896042,0.069974385201931],[-0.057136572897434,-0.0097262058407068,-0.034393813461065]],[[0.03709876909852,-0.0114726414904,-0.02450455725193],[0.039287213236094,-0.10435052216053,0.024149229750037],[0.044997707009315,-0.058078937232494,-0.036158174276352]],[[0.015873186290264,-0.002264172770083,0.025890441611409],[0.034503631293774,0.051336366683245,0.015511365607381],[0.014092466793954,-0.0078686904162169,0.041177108883858]],[[0.092683918774128,0.020630763843656,0.028380181640387],[0.049344390630722,0.098901227116585,0.032110378146172],[-0.050663288682699,0.015696164220572,0.014565138146281]],[[-0.03068514354527,0.028433620929718,-0.054963074624538],[-0.018965624272823,0.0073534650728106,0.049674108624458],[-0.019740421324968,-0.024699544534087,0.040446233004332]],[[-0.051788106560707,-0.055243961513042,-0.055629257112741],[-0.18926303088665,-0.085307367146015,0.0094598839059472],[-0.053712178021669,-0.029351223260164,0.015931185334921]],[[0.01474639121443,0.0043909633532166,0.13323740661144],[0.039089240133762,-0.029171496629715,-0.00014752894639969],[-0.057324960827827,-0.078880898654461,-0.10253185778856]],[[0.076091967523098,-0.014512163586915,-0.021688593551517],[0.031025318428874,-0.036074355244637,-0.055494707077742],[0.039466083049774,0.07830972969532,-0.0015523796901107]],[[0.049096412956715,0.11423845589161,0.016209037974477],[-0.11026310920715,-0.078963562846184,-0.026703655719757],[-0.0095507949590683,-0.032086931169033,0.0048150341026485]]],[[[-0.086582392454147,-0.067373193800449,-0.12140931934118],[0.062575966119766,-0.027709502726793,0.083381876349449],[0.028350584208965,0.051260504871607,0.063153684139252]],[[-0.074210189282894,-0.008353590965271,0.064184658229351],[0.026951281353831,0.066360086202621,-0.093647085130215],[-0.0037099549081177,0.10797256231308,0.038483299314976]],[[-0.074583247303963,-0.15900930762291,-0.067724667489529],[0.026397043839097,-0.084350295364857,0.015449767932296],[0.072777085006237,0.030323006212711,0.043426625430584]],[[0.014849409461021,-0.06187529489398,0.013267573900521],[-0.023748241364956,-0.028168130666018,0.01838350109756],[0.0076198661699891,-0.031033178791404,0.019566668197513]],[[0.087410122156143,-0.022643802687526,-0.0048610540106893],[0.048830978572369,0.053524199873209,-0.0112345200032],[0.022782439365983,-0.1765578687191,-0.091386832296848]],[[-0.002822628011927,-0.047903761267662,0.030722869560122],[0.021588146686554,-0.094596482813358,-0.010394632816315],[0.042481064796448,0.010399990715086,0.011860461905599]],[[-0.022465204820037,0.023887703195214,-0.020505059510469],[-0.1189469024539,-0.060972772538662,0.053701758384705],[0.072417534887791,0.072555921971798,0.032727424055338]],[[-0.022836269810796,-0.045093484222889,0.0043223151005805],[0.063537038862705,0.040544811636209,0.087783306837082],[-0.05274198949337,0.025129361078143,-0.01578245870769]],[[0.01714382506907,0.024831030517817,0.068823076784611],[-0.049616906791925,0.022053770720959,-0.11672543734312],[-0.010705764405429,-0.062965132296085,0.038486175239086]],[[-0.0004964349209331,0.026754138991237,0.075542233884335],[-0.059672258794308,-0.057154282927513,-0.1391139626503],[-0.025112222880125,-0.018872009590268,0.01678972505033]],[[0.033215373754501,-0.027486739680171,-0.063963398337364],[-0.005780047737062,-0.044349454343319,-0.018021706491709],[0.016223069280386,0.0073421136476099,-0.041271083056927]],[[0.030634645372629,-0.14608554542065,-0.078900679945946],[-0.16862903535366,0.0037075423169881,-0.12342405319214],[-0.042410168796778,-0.12116476893425,0.033808413892984]],[[0.023426795378327,0.014528884552419,0.035239260643721],[-0.033605989068747,-0.053366243839264,-0.089701503515244],[-0.012364948168397,-0.033689819276333,0.094528347253799]],[[-0.089625217020512,0.045244704931974,0.0877725481987],[0.031156646087766,-0.006476316601038,-0.064788959920406],[-0.025337498635054,0.019123503938317,-0.079062528908253]],[[-0.10333821922541,-0.012504491023719,-0.06781180202961],[0.063425742089748,-0.042327847331762,-0.0016045363154262],[0.056394308805466,0.0031536989845335,0.030509756878018]],[[0.0057183960452676,0.039098720997572,-0.0091422293335199],[-0.023232962936163,0.046235177665949,0.085266843438148],[-0.0023135785013437,0.010419796220958,-0.04066139832139]],[[0.069984078407288,-0.092041358351707,-0.13834173977375],[0.0027116572018713,0.097017154097557,-0.07448660582304],[0.05601179972291,0.017198054119945,-0.011330083012581]],[[0.023582177236676,0.056772608309984,-0.031750999391079],[0.040056202560663,0.020560128614306,0.059370901435614],[0.029074551537633,0.077202275395393,0.029127705842257]],[[0.10422639548779,-0.050750222057104,0.0070042102597654],[0.066366858780384,-0.050025057047606,0.083869062364101],[0.029267631471157,-0.0063555063679814,0.02793038636446]],[[-0.014649567194283,-0.064694702625275,-0.068069748580456],[0.0065872683189809,0.0799720287323,-0.023527164012194],[-0.0097002042457461,0.022636676207185,0.038864228874445]],[[-0.0097033958882093,-0.12735620141029,0.12312316894531],[0.067971207201481,0.11828175932169,-0.18011903762817],[0.014971381053329,0.031054515391588,0.027165539562702]],[[-0.0038173911161721,0.0096280546858907,-0.05424202978611],[-0.061675660312176,-0.045374743640423,-0.040377419441938],[-0.030370535328984,0.031216846778989,0.011043240316212]],[[-0.0022462890483439,0.10713807493448,0.052001133561134],[0.034285824745893,-0.105145201087,-0.084394820034504],[-0.010711792856455,-0.015393557026982,-0.091098666191101]],[[0.080169379711151,0.035392057150602,-0.029734306037426],[-0.019631074741483,0.10986047238111,0.17517997324467],[0.023870239034295,0.0028914816211909,0.02665944211185]],[[0.041289292275906,0.052251946181059,-0.052436921745539],[-0.032830096781254,-0.0085986321792006,0.060616966336966],[0.013106251135468,0.0058233705349267,0.042491748929024]],[[0.0020180486608297,0.030339028686285,-0.0296117272228],[0.016502814367414,0.045452482998371,-0.029557226225734],[0.033127401024103,-0.049073256552219,-0.054374430328608]],[[0.019428120926023,-0.15731216967106,-0.066125273704529],[-0.054646279662848,-0.10968942195177,0.033817049115896],[0.049783259630203,0.032106637954712,-0.048039648681879]],[[0.042676027864218,0.022841257974505,0.1069143936038],[-0.056796688586473,-0.1810302734375,0.091421037912369],[0.057861384004354,0.048264544457197,0.062742620706558]],[[-0.047321125864983,-0.034298308193684,-0.079360775649548],[0.014913686551154,-0.15168543159962,-0.022584188729525],[0.028260925784707,0.01683272048831,0.045252572745085]],[[0.012013016268611,0.0059314230456948,-0.022623466327786],[0.048293597996235,0.052851844578981,-0.012298068031669],[0.039671253412962,-0.0037991446442902,0.0067311357706785]],[[-0.023210229352117,0.045683301985264,-0.06545552611351],[-0.068664737045765,-0.020588133484125,0.085246533155441],[0.052943527698517,-0.036846663802862,0.022521020844579]],[[-0.09187238663435,-0.0052791703492403,-0.015445819124579],[0.02413846924901,-0.016886934638023,-0.0093279499560595],[0.1033262014389,0.023692833259702,-0.023340234532952]],[[-0.025928791612387,-0.049217164516449,0.019835442304611],[-0.060310266911983,-0.051952727138996,-0.068092241883278],[-0.022259663790464,0.039978422224522,-0.014162654988468]],[[-0.04275518655777,-0.094806909561157,-0.013761211186647],[-0.043450877070427,-0.049483820796013,0.020438307896256],[-0.090852409601212,-0.16098865866661,0.03744188323617]],[[-0.0064984620548785,-0.080204457044601,0.063826039433479],[0.024988818913698,-0.024377906695008,0.02022472396493],[0.081831485033035,-0.07493382692337,-0.040562771260738]],[[-0.0058379680849612,-0.023293264210224,0.055550690740347],[0.042849734425545,0.0061922767199576,0.00071905291406438],[-0.016069108620286,0.027276618406177,0.006226793397218]],[[-0.003408070653677,0.014109089970589,-0.031064976006746],[0.05459962412715,-0.054148998111486,0.025666547939181],[0.0029056074563414,-0.052609253674746,0.016318088397384]],[[-0.094300143420696,-0.012136297300458,-0.010012806393206],[0.054920930415392,-0.049550842493773,-0.043759495019913],[-0.032765213400126,-0.076708592474461,0.0050399955362082]],[[-0.13640244305134,-0.076044112443924,0.047272812575102],[-0.037261970341206,-0.022814834490418,-0.032221175730228],[0.036753937602043,0.050949782133102,-0.029492853209376]],[[-0.15632523596287,-0.12801530957222,-0.092593923211098],[0.054747190326452,-0.10307057201862,-0.026034079492092],[0.028561318293214,-0.017348259687424,-0.054953526705503]],[[-0.074169218540192,-0.00014370388817042,-0.0048175742849708],[-0.092412270605564,-0.019891923293471,-0.042334340512753],[0.06290777772665,0.033008810132742,0.08617690205574]],[[-0.022221837192774,0.007521562743932,0.067898191511631],[-0.076189056038857,-0.024579428136349,0.020309394225478],[-0.026380429044366,0.063525773584843,-0.0258185621351]],[[-0.032271280884743,0.065485842525959,-0.029259955510497],[0.02304339595139,0.014177042990923,0.0031046504154801],[-0.058470126241446,-0.015782551839948,-0.070428103208542]],[[-0.035257317125797,0.052095774561167,0.034681305289268],[0.029263647273183,0.056069388985634,-0.045253373682499],[0.0044502965174615,-0.0028939882759005,-0.10184090584517]],[[0.017085617408156,-0.023470072075725,0.0015884896274656],[-0.084760338068008,-0.12446213513613,-0.055710978806019],[0.0047687133774161,0.031869526952505,-0.011794747784734]],[[0.061867825686932,-0.031803414225578,-0.032241854816675],[-0.048891756683588,0.0011049803579226,-0.078156121075153],[0.028163339942694,-0.041848573833704,0.027411436662078]],[[-0.093444384634495,-0.076841719448566,0.049130726605654],[-0.057796712964773,-0.049567449837923,0.039091601967812],[-0.031119588762522,0.046547308564186,-0.020829843357205]],[[-0.11443220824003,0.081385172903538,-0.0094982506707311],[-0.020727006718516,0.028147220611572,0.02142153121531],[0.016330478712916,0.077520750463009,0.0088063878938556]],[[-0.013517947867513,-0.01884875819087,-0.067953199148178],[0.023451859131455,0.041764881461859,-0.0075562368147075],[-0.098900891840458,-0.03182091191411,0.046424008905888]],[[0.09456343203783,0.0094850771129131,-0.025195561349392],[-0.052734520286322,-0.045382272452116,-0.086919240653515],[0.034763492643833,-0.061603851616383,-0.041406158357859]],[[0.031574819236994,0.0192905459553,-0.063193924725056],[-0.018701411783695,-0.045737497508526,0.0060236700810492],[-0.018525402992964,0.0080502517521381,-0.02945919521153]],[[0.072070807218552,0.082078583538532,0.041315596550703],[0.14154383540154,0.098688848316669,-0.085067667067051],[0.01773365214467,0.066853448748589,-0.034596815705299]],[[0.067046731710434,0.048012051731348,0.041017763316631],[0.017422750592232,-0.083235748112202,-0.10696156322956],[0.082594305276871,0.057681813836098,0.057880334556103]],[[0.065190300345421,0.0266482681036,0.081492491066456],[-0.03968308120966,-0.017246667295694,0.023958440870047],[-0.024458553642035,-0.077240601181984,0.037805780768394]],[[0.045810159295797,-0.043521720916033,-0.14514026045799],[0.10983872413635,-0.010023094713688,0.044143866747618],[0.033402230590582,0.017532579600811,0.032617159187794]],[[-0.088708259165287,-0.055581290274858,-0.0020844719838351],[-0.016318552196026,0.0060981865972281,-0.013964525423944],[-0.03208776190877,-0.038044098764658,0.00085126626072451]],[[0.021774666383862,0.032726299017668,-0.0280806068331],[-0.0089379195123911,-0.019610272720456,-0.054521884769201],[-0.0045039597898722,0.051125429570675,0.028667693957686]],[[0.022412832826376,-0.0076059019193053,-0.064204409718513],[-0.029115637764335,-0.022846525534987,0.0046864761970937],[-0.086614653468132,-0.073664844036102,-0.11213179677725]],[[0.018027577549219,-0.066435635089874,-0.030912004411221],[0.10641849040985,-0.0049321656115353,-0.059746593236923],[-0.010087925940752,0.012763243168592,0.10328644514084]],[[0.055346272885799,0.05205025151372,0.082218579947948],[-0.023265896365047,-0.10802014917135,0.016547560691833],[-0.025037441402674,-0.028367692604661,-0.048121336847544]],[[-0.075154602527618,0.030725097283721,0.047381039708853],[-0.073096662759781,0.048130203038454,-0.049415118992329],[0.015866944566369,-0.1081193163991,-0.053774960339069]],[[0.021876508370042,0.050368662923574,-0.031072659417987],[0.029101271182299,0.029906183481216,-0.027290858328342],[-0.0032531132455915,-0.085511818528175,0.0066961939446628]],[[-0.046378541737795,0.027641259133816,-0.076039798557758],[-0.013314959593117,0.014434447512031,0.0043470822274685],[0.00099703681189567,0.0043081096373498,-0.0019758688285947]],[[-0.12276218086481,-0.08606144785881,0.0058163376525044],[0.08845679461956,-0.12939788401127,-0.015393470413983],[0.010163610801101,-0.016895404085517,-0.003617295762524]]],[[[0.0018801521509886,0.089804254472256,-0.030050583183765],[-0.060259528458118,0.0098562063649297,0.030033906921744],[-0.37498879432678,0.032106574624777,0.023695262148976]],[[0.074637837707996,0.1003472879529,-0.059132538735867],[-0.026733295992017,0.01021393481642,-0.12112966924906],[-0.0072749787941575,-0.085694409906864,-0.061429709196091]],[[-0.073566943407059,-0.022695073857903,0.1016788110137],[-0.090445801615715,0.011533315293491,0.038724299520254],[-0.1584784835577,-0.069353349506855,0.054162599146366]],[[-0.011326916515827,0.013506363146007,0.088096305727959],[0.018629049882293,-0.0040104147046804,0.018910771235824],[-0.001350826700218,-0.033188115805387,0.0081779025495052]],[[-0.028474310413003,0.14079605042934,-0.0056420653127134],[-0.054262813180685,0.010663298889995,-0.027567710727453],[0.062925390899181,-0.076208278536797,-0.08129607886076]],[[-0.028115240857005,0.015836136415601,0.043146636337042],[-0.10100006312132,0.051499485969543,-0.00085618905723095],[-0.095559045672417,-0.11358927190304,-0.059540160000324]],[[-0.052641414105892,-0.021851766854525,-0.010474476963282],[0.050098411738873,-0.03959209099412,-0.033279985189438],[-0.050394263118505,-0.028673706576228,-0.0060647330246866]],[[0.090712927281857,0.09385222941637,-0.038985405117273],[0.0037709197495133,0.027390515431762,-0.12819807231426],[0.035455506294966,-0.076345823705196,0.0015751752071083]],[[-0.12486140429974,0.024396458640695,-0.0034931446425617],[-0.070140019059181,0.017275460064411,0.063440687954426],[0.11165382713079,0.045913688838482,-0.0050227073952556]],[[0.079908058047295,0.011484864167869,0.07025121152401],[-0.029452232643962,-0.0092227105051279,0.033209923654795],[0.024057189002633,-7.5658688729163e-05,0.021239107474685]],[[0.056814543902874,-0.022878494113684,0.024358157068491],[0.045892126858234,0.010427557863295,0.048261437565088],[-0.15277582406998,-0.13449060916901,0.00042151240631938]],[[0.012197839096189,-0.033990424126387,-0.056512828916311],[-0.038766901940107,0.076764903962612,0.051035270094872],[0.030888896435499,0.1017509624362,0.015238410793245]],[[-0.040950365364552,-0.010870357975364,-0.012671132571995],[0.039233975112438,0.067478142678738,-0.012387842871249],[-0.15617343783379,-0.038264911621809,-0.065092422068119]],[[-0.0062559372745454,0.054854325950146,0.066715985536575],[0.0092866579070687,0.034105457365513,-0.036710627377033],[-0.0070333345793188,0.0032868571579456,-0.054566655308008]],[[-0.01598902978003,-0.061257995665073,0.011078543961048],[0.0023322550114244,0.013579033315182,-0.015047072432935],[0.053089585155249,-0.051144614815712,0.029455097392201]],[[-0.021231101825833,-0.023287119343877,0.0085695618763566],[0.026072023436427,-0.010043226182461,0.021548703312874],[0.037066947668791,0.092618443071842,0.01112587749958]],[[-0.016162326559424,-0.1262648999691,0.094253160059452],[-0.031888019293547,0.0097350683063269,-0.059080339968204],[0.058053489774466,-0.045610189437866,0.12053588032722]],[[0.025020349770784,-0.023702215403318,-0.07494492828846],[0.047417990863323,-0.097216077148914,-0.0032035985495895],[0.015401807613671,-0.059820085763931,-0.039592370390892]],[[-0.014432372525334,0.010594611987472,0.012531251646578],[0.0041784103959799,0.027934350073338,0.0093920808285475],[-0.036290194839239,-0.073564782738686,-0.10945606231689]],[[-0.017925035208464,-0.050682067871094,0.024307956919074],[-0.034109964966774,-0.049991119652987,0.091436922550201],[-0.056319575756788,0.035570044070482,0.070214599370956]],[[-0.043631918728352,0.0040871370583773,0.029883595183492],[0.086768619716167,-0.016356879845262,-0.11208260804415],[-0.19852511584759,-0.23209348320961,-0.15249964594841]],[[-0.012267109006643,-0.038799181580544,-0.041025817394257],[-0.02444276958704,-0.068871043622494,0.046038798987865],[0.039538122713566,0.085536032915115,0.026298876851797]],[[-0.033768493682146,-0.026750367134809,0.06088899821043],[-0.0032626884058118,-0.065278023481369,0.021415090188384],[-0.0049789971671999,0.075143918395042,0.01339216157794]],[[-0.037656720727682,0.0954519957304,-0.078622736036777],[0.083335481584072,0.072202324867249,0.026916889473796],[0.047526769340038,0.064705029129982,0.036776714026928]],[[-0.082229599356651,-0.10245021432638,-0.041902035474777],[-0.00099450070410967,-0.012085912749171,0.011741261929274],[-0.033089250326157,-0.040139645338058,-0.024074139073491]],[[0.088765308260918,0.027505317702889,0.05289501324296],[0.082616157829762,0.034075070172548,0.0091869998723269],[0.029271049425006,0.10300014913082,0.0076919146813452]],[[0.043251179158688,0.021474612876773,-0.039322067052126],[0.036372631788254,-0.049269840121269,0.022451743483543],[0.053768455982208,0.047305043786764,0.10137303173542]],[[0.029433799907565,0.0047943997196853,-0.0058684521354735],[0.015681017190218,0.0060754353180528,-0.064613081514835],[0.043525736778975,-0.023728828877211,-0.045939851552248]],[[0.068203285336494,0.0069547262974083,-0.018422933295369],[0.013962686993182,-0.0055220578797162,-0.020231105387211],[0.026328526437283,-0.027181232348084,-0.084607444703579]],[[0.089288294315338,0.10276984423399,0.036105290055275],[0.11308950185776,0.088374339044094,0.11166799813509],[-0.0080002238973975,0.0081299552693963,0.080101758241653]],[[-0.04023390635848,-0.032666757702827,-0.13944248855114],[-0.034901980310678,-0.010350244119763,-0.04632181674242],[0.048791248351336,0.032132979482412,0.026229189708829]],[[-0.10482396930456,0.015851503238082,-0.029168395325541],[0.051319047808647,0.036111380904913,0.005139228887856],[0.093263320624828,-0.066404528915882,0.037077702581882]],[[-0.0014746035449207,-0.045567363500595,0.0082478364929557],[-0.073718279600143,-0.00028460519388318,0.049710668623447],[0.0017982916906476,0.067520692944527,-0.025238286703825]],[[-0.053782559931278,0.044108338654041,0.12153350561857],[-0.047138962894678,-0.088759765028954,0.014668812975287],[-0.13282178342342,-0.057761825621128,0.062315687537193]],[[-0.069543495774269,0.02757329121232,-0.091439597308636],[-0.024366408586502,0.045340482145548,0.023826368153095],[-0.13184946775436,-0.066578254103661,-0.12472505867481]],[[-0.042971841990948,0.040336016565561,0.012004629708827],[0.047648403793573,-0.060320649296045,-0.030891155824065],[-0.037552319467068,0.059304002672434,-0.037402641028166]],[[-0.0020250743255019,0.14477035403252,0.18848715722561],[0.032191377133131,-0.14109316468239,0.0050757103599608],[-0.087026752531528,-0.030296705663204,-0.042702484875917]],[[-0.01263550017029,0.081005558371544,-0.058031503111124],[-0.02719041891396,0.036393545567989,0.12008505314589],[0.010918634943664,0.050819184631109,-0.0010111293522641]],[[0.095466293394566,-0.024769652634859,-0.041315715759993],[0.012439304031432,0.025632455945015,0.017029713839293],[-0.070892050862312,-0.08482088893652,0.026377089321613]],[[-0.13024155795574,-0.06305980682373,-0.01973232999444],[0.096870504319668,0.044298119843006,-0.1142198368907],[-0.06271555274725,0.025915894657373,0.03555640950799]],[[-0.11456703394651,-0.031868569552898,0.0023467619903386],[0.04960810020566,-0.04908287152648,-0.14911435544491],[-0.093892842531204,-0.12286461144686,-0.015553856268525]],[[0.020148910582066,0.015066733583808,-0.26699206233025],[-0.1168382242322,0.027415663003922,-0.021517945453525],[0.010348561219871,-0.050830744206905,0.059033244848251]],[[0.0090615740045905,0.07775966823101,-0.0037473479751498],[-0.094326801598072,0.034402430057526,0.078965418040752],[0.056972373276949,0.062371835112572,0.15048864483833]],[[-0.0905532091856,-0.025625633075833,-0.01679559238255],[-0.0085140122100711,-0.080681599676609,0.035053234547377],[0.029443219304085,-0.0056764115579426,-0.037867538630962]],[[0.0055210739374161,-0.025515461340547,-0.12827631831169],[0.043088007718325,0.044078085571527,-0.057219043374062],[-0.044992864131927,0.049287024885416,-0.007343037519604]],[[-0.065667256712914,-0.061531510204077,-0.14325411617756],[-0.0041866470128298,0.0026622824370861,0.017431499436498],[0.18676327168941,-0.060357339680195,-0.065821036696434]],[[0.096867777407169,0.016815079376101,-0.11379810422659],[-0.06806804984808,-0.045180879533291,-0.010557757690549],[0.014211897738278,-0.044876549392939,0.037884265184402]],[[0.085316136479378,0.013990979641676,0.024707136675715],[0.14054229855537,-0.09510799497366,0.045843042433262],[0.03056669794023,-0.058656621724367,0.0060462239198387]],[[0.073530897498131,-0.068175725638866,-0.045598458498716],[0.021081099286675,-0.049680974334478,0.0045961514115334],[-0.082418292760849,0.024951172992587,-0.10550279915333]],[[-0.043870128691196,0.069226950407028,0.029932098463178],[0.013337444514036,0.047857012599707,0.0059601902030408],[-0.067176878452301,0.015988126397133,-0.12378811836243]],[[0.14141000807285,-0.071548998355865,-0.1405692845583],[-0.095599174499512,-0.1107561737299,0.0102454777807],[-0.088993392884731,-0.0034177389461547,0.013605917803943]],[[-0.0044398559257388,0.13385516405106,0.099104374647141],[-0.0079649239778519,0.05150406435132,0.086468584835529],[-0.056744173169136,0.081496901810169,0.16674497723579]],[[0.014869751408696,-0.037590127438307,-0.033758092671633],[0.018247902393341,-0.034051768481731,0.035654660314322],[-0.098023273050785,0.011810359545052,-0.012091433629394]],[[-0.12018819153309,-0.10165024548769,-0.011655561625957],[0.022617692127824,-0.077308781445026,0.01902156509459],[0.10380485653877,-0.030325815081596,-0.023306701332331]],[[0.0052181226201355,0.046615902334452,-0.048773728311062],[0.022714972496033,0.0027420620899647,-0.16404850780964],[0.045076739042997,-0.1862880140543,-0.15701296925545]],[[-0.071045562624931,0.0020837178453803,0.067758731544018],[0.022400228306651,-0.011513504199684,-0.030051296576858],[-0.0068471343256533,0.017431536689401,-0.017483182251453]],[[0.1117257848382,-0.0051825293339789,0.0481321439147],[-0.080926515161991,0.068016894161701,-0.0027073440141976],[-0.060739029198885,-0.051558077335358,0.063121564686298]],[[0.0036184622440487,-0.042347393929958,-0.0046340874396265],[-0.017795702442527,-0.018145252019167,-0.016081755980849],[-0.072162657976151,-0.027392756193876,-0.070850059390068]],[[-0.13288572430611,0.027025172486901,-0.055051561444998],[-0.023530416190624,-0.032458480447531,0.066176079213619],[0.026162581518292,-0.033389132469893,0.080350711941719]],[[0.030428791418672,0.035744652152061,0.019698223099113],[0.034338120371103,0.014135018922389,-0.013474705629051],[0.0020315945148468,-0.056513756513596,-0.044879350811243]],[[-0.09104597568512,0.032986532896757,-0.088254518806934],[0.0022604120895267,-0.022697307169437,0.0018097966676578],[-0.036145888268948,0.088076688349247,-0.02670762874186]],[[0.036658603698015,-0.062424477189779,0.029071871191263],[-0.075297676026821,0.070206567645073,0.025227295234799],[0.01325520966202,-0.043467074632645,-0.10315664857626]],[[-0.05243631452322,-0.0010948163690045,-0.032620385289192],[-0.042629420757294,-0.030180672183633,-0.017779160290956],[-0.0065072788856924,0.017599165439606,0.051456976681948]],[[0.01692633703351,-0.063480615615845,-0.045220844447613],[-0.08658542484045,-0.0046921083703637,0.036346033215523],[-0.044874295592308,0.082413412630558,-0.0035635509993881]]],[[[-0.019986057654023,0.044910557568073,-0.046201847493649],[-0.042679395526648,-0.082675635814667,-0.10395348072052],[-0.023988367989659,-0.047451972961426,-0.027205251157284]],[[0.061847366392612,-0.0090894782915711,0.033589448779821],[-0.053214907646179,-0.056831832975149,-0.015571242198348],[-0.0079880198463798,0.00089359376579523,0.042605072259903]],[[0.049637593328953,-0.0028927235398442,-0.038435697555542],[-0.064911723136902,-0.018759565427899,0.053275760263205],[-0.14556147158146,-0.047094687819481,-0.052716687321663]],[[0.045193031430244,-0.0076306434348226,-0.015955621376634],[-0.019708566367626,-0.098521769046783,0.0053778123110533],[-0.0032613768707961,-0.038654897361994,0.031218778342009]],[[0.07090912759304,0.016648847609758,-0.10758101195097],[-0.10143087804317,0.030902763828635,-0.04528796300292],[0.056449469178915,0.12207406759262,0.12573742866516]],[[0.1001380905509,0.078294888138771,0.070598684251308],[-0.0057300198823214,-0.0098729059100151,-0.019426487386227],[-0.090588115155697,0.011309629306197,-0.019060753285885]],[[-0.0016325149917975,0.080191619694233,0.060024596750736],[-0.081673309206963,-0.00015478563727811,0.025543304160237],[-0.056790344417095,0.021310824900866,0.045298989862204]],[[-0.021724216639996,0.037296980619431,0.03898548707366],[0.046963207423687,-0.025883972644806,-3.2318384910468e-05],[-0.0070969965308905,-0.0084015587344766,-0.013668177649379]],[[-0.027368720620871,-0.059265278279781,0.023511094972491],[-0.037042174488306,0.077590681612492,-0.060879241675138],[0.035083174705505,0.0091243367642164,-0.11413888633251]],[[0.052898682653904,0.05411596596241,-0.011555982753634],[0.042148511856794,0.085352562367916,-0.038068197667599],[-0.0015022654552013,-0.058011095970869,-0.093532241880894]],[[0.064983502030373,0.016708824783564,0.0076408511959016],[-0.056014761328697,0.079303726553917,-0.093889877200127],[-0.1958970874548,-0.047142248600721,-0.087821558117867]],[[-0.017680406570435,0.10976605862379,0.024707468226552],[0.034427851438522,0.0068446877412498,-0.015548689290881],[0.02444270811975,0.0028481597546488,-0.071170091629028]],[[0.070394530892372,0.12583802640438,-0.031764827668667],[0.043755255639553,0.01363274268806,0.068628534674644],[-0.085827924311161,-0.040069773793221,-0.048754669725895]],[[0.039033252745867,-0.041617561131716,-0.02494153007865],[0.0069802566431463,0.03710463270545,-0.0082237971946597],[0.037931058555841,-0.005426824092865,-0.058424510061741]],[[0.010420748032629,-0.040872730314732,-0.0045246286317706],[0.027339631691575,-0.047647032886744,0.017063900828362],[-0.086651235818863,-0.069647237658501,-0.042722810059786]],[[0.11718890815973,0.037555556744337,0.11331625282764],[0.031846407800913,-0.037568684667349,0.016298368573189],[0.034315019845963,-0.019726872444153,0.029068013653159]],[[0.038658268749714,-0.077609121799469,-0.027427587658167],[0.040848683565855,-0.053131110966206,0.15816186368465],[-0.092607282102108,-0.0033941715955734,-0.078598417341709]],[[0.0068014897406101,-0.0018033958040178,-0.0333316847682],[-0.16627421975136,0.00068422220647335,0.0039944150485098],[-0.038763485848904,0.034560598433018,0.026459097862244]],[[0.019489986822009,-0.0016324827447534,-0.10544414818287],[0.012184330262244,0.10684472322464,0.0079825446009636],[0.093723058700562,-0.010082583874464,-0.024889018386602]],[[-0.020892051979899,0.023641521111131,-0.029699770733714],[0.046987868845463,-0.0058824992738664,-0.031214978545904],[-0.014163800515234,0.036654893308878,0.043333914130926]],[[-0.0052004838362336,-0.05369908362627,0.083951868116856],[-0.043987590819597,-0.00088442844571546,0.032915260642767],[-0.012642528861761,0.0086405286565423,0.10183842480183]],[[0.15854831039906,-0.07504491508007,0.10328907519579],[-0.095900110900402,-0.027520403265953,-0.091597355902195],[-0.10271637141705,0.0141929872334,0.00032452898449264]],[[-0.070322118699551,-0.024932505562901,0.078354954719543],[-0.018728090450168,0.051957722753286,-0.036507364362478],[-0.018958918750286,-0.055211037397385,-0.078181229531765]],[[0.061892371624708,0.096226297318935,0.12385753542185],[0.12245288491249,0.067467123270035,0.09585890173912],[0.019511947408319,0.13341711461544,0.026236897334456]],[[-0.037807565182447,-0.082026354968548,-0.024269934743643],[-0.036696378141642,0.010864613577724,-0.094383366405964],[0.094892606139183,0.075129717588425,-0.032897260040045]],[[-0.020406641066074,0.047755051404238,0.042677007615566],[0.064720526337624,0.080339930951595,0.011653806082904],[0.038253776729107,0.014733891934156,-0.019264835864305]],[[0.04262176528573,-0.031103450804949,0.063068307936192],[-0.014226857572794,0.0064124767668545,-0.01112512499094],[0.020978325977921,-0.021438067778945,0.15797843039036]],[[-0.077179275453091,-0.068249963223934,-0.0063447281718254],[-0.040900275111198,0.044045966118574,0.042573682963848],[0.0053770951926708,-0.02535729855299,-0.0054397056810558]],[[0.0033550201915205,0.030150724574924,0.025749349966645],[0.025162925943732,0.04015026986599,0.012768118642271],[-0.042188704013824,-0.056616209447384,-0.046519406139851]],[[0.022846736013889,-0.028502324596047,-0.012073079124093],[0.012551367282867,-0.0053747040219605,-0.00079740566434339],[-0.0099470876157284,-0.018397729843855,0.010059838183224]],[[0.068811923265457,0.0010113418102264,0.0051060910336673],[0.094962991774082,-0.053964521735907,0.043103691190481],[-0.035349398851395,-0.070527359843254,-0.080079399049282]],[[0.031257089227438,0.052004676312208,0.006740574259311],[0.053363710641861,-0.023957436904311,-0.022518707439303],[-0.045585673302412,-0.060756169259548,0.10874239355326]],[[-0.0013469677651301,0.0072071440517902,0.081951431930065],[0.0065690912306309,-0.043081697076559,0.0095955189317465],[0.019839860498905,0.0083579011261463,0.043838553130627]],[[-0.0060961381532252,-0.053051140159369,-0.063694030046463],[0.031915582716465,0.073214955627918,0.12849019467831],[0.062475755810738,-0.033458266407251,0.028982693329453]],[[-0.034327857196331,-0.076641991734505,0.016743015497923],[-0.028178449720144,0.032564755529165,0.055309180170298],[-0.0097950045019388,0.034030832350254,0.031071523204446]],[[-0.038989517837763,0.027348579838872,0.036545164883137],[-0.026949785649776,0.008246467448771,0.042441945523024],[-0.025738142430782,0.00067387719172984,-0.020379008725286]],[[0.040799852460623,0.057407807558775,-0.033067803829908],[0.031570438295603,-0.043997243046761,0.050539158284664],[0.064425311982632,0.057998407632113,0.0013092869194224]],[[0.039912197738886,-0.012866031378508,0.014902407303452],[-0.018737934529781,-0.0094391508027911,-0.00036332229501568],[0.11768099665642,0.016556328162551,-0.0039292946457863]],[[-0.043622236698866,-0.11877986043692,-0.096158184111118],[-0.026886893436313,-0.0094199692830443,-0.0094848815351725],[-0.033808816224337,-0.023404981940985,-0.03576098755002]],[[-0.14577838778496,-0.030166577547789,0.079032868146896],[0.023616285994649,-0.082477815449238,0.029487168416381],[0.0099612604826689,-0.015814192593098,-0.0082936873659492]],[[0.010257385671139,0.069727897644043,0.041841685771942],[-0.053350400179625,0.0096282446756959,0.03460506349802],[0.0074379933066666,0.0076446947641671,-0.0095868203788996]],[[-0.035511255264282,0.011719417758286,0.05353556573391],[-0.00090446055401117,0.10803910344839,0.034916050732136],[0.044388245791197,-0.047563176602125,-0.14088274538517]],[[0.026720583438873,-0.044766452163458,-0.051306795328856],[0.009711186401546,0.013785551302135,0.011877520009875],[0.014086776413023,0.013548566028476,-0.0062408787198365]],[[-0.077447816729546,0.029990885406733,0.0034910938702524],[-0.028642997145653,0.036356169730425,0.083574697375298],[0.038404315710068,0.042925413697958,-0.074278324842453]],[[-0.033336989581585,0.084925264120102,0.063961543142796],[-0.0085784094408154,0.028778184205294,-0.0027663849759847],[0.0044310828670859,-0.0012944190530106,-0.0634710714221]],[[0.046043556183577,-0.058144394308329,-0.19058640301228],[0.024737607687712,-0.034283373504877,-0.086188301444054],[-0.0026799417100847,-0.13675521314144,-0.068827293813229]],[[-0.025385104119778,0.071469195187092,0.10026536881924],[-0.023983018472791,0.046677947044373,-0.01300411298871],[0.010256486013532,0.019637443125248,-0.079160369932652]],[[0.016716524958611,0.097278021275997,0.11653178185225],[0.06231439858675,-0.12233588844538,0.064084313809872],[0.0078183375298977,-0.0033758580684662,-0.03516486287117]],[[-0.058144096285105,-0.031921941787004,0.039647407829762],[-0.021703720092773,-0.044116754084826,-0.070689313113689],[0.046068400144577,-0.0090540293604136,-0.01412039808929]],[[-0.026255628094077,0.010468770749867,-0.029427140951157],[-0.00020963873248547,-0.0078102368861437,0.011082026176155],[0.065362431108952,-0.057643909007311,0.054260563105345]],[[0.020441459491849,0.033792871981859,0.085045240819454],[0.069928407669067,-0.020156294107437,0.011514851823449],[-0.014727327041328,-0.096673481166363,-0.042194187641144]],[[-0.028467398136854,-9.540404425934e-05,0.067611686885357],[0.0035439429339021,0.17937096953392,0.17188811302185],[0.080085761845112,0.078302457928658,0.039340570569038]],[[-0.060762617737055,-0.10639454424381,-0.086835704743862],[0.063521817326546,0.070616275072098,0.00057769892737269],[0.008152118884027,0.056687597185373,-0.078065119683743]],[[0.086642123758793,-3.4553348086774e-05,0.0326730273664],[-0.051328301429749,0.06741364300251,-0.046321399509907],[-0.0079349791631103,-0.08081877976656,0.076891109347343]],[[0.028938174247742,-0.070953860878944,-0.032500203698874],[-0.031867705285549,0.036023378372192,0.0046338210813701],[-0.013285379856825,-0.0052691455930471,0.017794441431761]],[[-0.018152372911572,0.024823643267155,0.0009132536360994],[0.078226454555988,-0.061657838523388,-0.049925312399864],[-0.019760645925999,0.038399152457714,-0.01854551024735]],[[-0.039326284080744,0.088382825255394,0.078668735921383],[0.037294719368219,-0.051598221063614,0.046462703496218],[-0.033655300736427,-0.038330849260092,-0.064141973853111]],[[0.021631140261889,0.085980698466301,-0.017309561371803],[-0.018936393782496,0.10602559149265,-0.029439298436046],[0.024969084188342,0.020633498206735,-0.035015501081944]],[[0.047101967036724,0.055804118514061,-0.032406441867352],[-0.02808940410614,0.1259845495224,0.015309056267142],[0.020495913922787,0.087919257581234,0.020513232797384]],[[0.0040503446944058,-0.03870464861393,0.011435852386057],[-0.010750859044492,-0.073797225952148,0.04210739582777],[0.02560680732131,0.043964393436909,0.037972278892994]],[[0.058266155421734,-0.027972105890512,-0.084216870367527],[0.061329372227192,-0.023005178198218,0.0656428784132],[0.012407049536705,0.030015341937542,0.074157170951366]],[[0.01436703465879,-0.065982230007648,-0.049098134040833],[-0.054699633270502,0.056468971073627,0.05163686722517],[0.026980064809322,-0.042915742844343,-0.0019527588738129]],[[-0.024388922378421,-0.040684197098017,0.061633620411158],[-0.023190412670374,0.0044789910316467,-0.040257964283228],[-0.088392041623592,0.010101892985404,-0.04300782084465]],[[0.02612623386085,0.045532118529081,-0.010481397621334],[0.021499084308743,0.0032921952661127,-0.019784986972809],[-0.067288525402546,-0.0044047208502889,-0.034543178975582]]],[[[-0.0049365675076842,-0.022060291841626,-0.013901173137128],[0.043051522225142,0.067788414657116,0.039719495922327],[0.038312509655952,-0.0141696119681,-0.074402317404747]],[[-0.016969649121165,0.081841967999935,0.06926229596138],[0.021886430680752,0.044994581490755,-0.083898767828941],[-0.027921447530389,0.0048138406127691,-0.080661661922932]],[[0.048802968114614,0.0050659710541368,-0.023593472316861],[0.088878072798252,-0.011055344715714,-0.071031101047993],[0.016901740804315,-0.054764036089182,-0.055657453835011]],[[0.051033109426498,0.03982986882329,0.03091648593545],[-0.0032089506275952,-0.11217542737722,0.020329296588898],[-0.01044708956033,-0.058836549520493,0.035794034600258]],[[-0.020483983680606,0.059554416686296,-0.024101689457893],[0.0015457976842299,-0.076714754104614,0.024114513769746],[-0.0020228950306773,0.062275592237711,0.041400190442801]],[[0.066478848457336,0.14369408786297,0.0070078549906611],[-0.11357719451189,-0.072303168475628,-0.013359570875764],[-0.015886306762695,-0.17979028820992,-0.14575560390949]],[[0.045359499752522,0.0044652470387518,-0.015885492786765],[-0.036697126924992,-0.072066716849804,0.051938682794571],[-0.036814335733652,-0.17951680719852,-0.056198425590992]],[[-0.025408368557692,-0.0250527523458,-0.019122254103422],[-0.018477067351341,-0.088163487613201,-0.10063820332289],[-0.095862746238708,0.0031518298201263,0.027753466740251]],[[0.028227545320988,0.05337779968977,0.0099829817190766],[-0.029045227915049,-0.013389392755926,-0.0066620111465454],[0.038111381232738,0.12159717828035,0.0049804453738034]],[[0.017222484573722,0.090735040605068,-0.029691772535443],[0.094979494810104,0.010560939088464,-0.12885995209217],[0.0031596720218658,-0.093531750142574,0.013062005862594]],[[0.047700025141239,0.027040485292673,0.041947726160288],[0.039468571543694,-0.020169366151094,0.016443038359284],[-0.1220847889781,-0.077987007796764,-0.064740993082523]],[[0.039389196783304,-0.044897556304932,0.035473104566336],[-0.025922367349267,0.006389875896275,-0.047512896358967],[-0.0057687670923769,-0.026689598336816,-0.062246553599834]],[[-0.062980882823467,-0.042851433157921,-0.073695063591003],[-0.080728903412819,-0.0023634575773031,-0.051695376634598],[-0.036167990416288,-0.049804747104645,-0.080853447318077]],[[0.0052162767387927,0.062241785228252,0.024725491181016],[-0.086432978510857,0.018976408988237,0.014850242994726],[0.0082918768748641,0.041490223258734,-0.13337764143944]],[[0.11617651581764,-0.044689316302538,0.082992285490036],[0.096444703638554,-0.0084568373858929,0.0066548250615597],[0.094402067363262,0.024727661162615,-0.084803529083729]],[[0.048475433140993,0.030132710933685,-0.084368526935577],[-0.09264013171196,-0.062234371900558,-0.10927414149046],[0.074654415249825,0.060308009386063,0.071215823292732]],[[0.026001146063209,-0.0056758420541883,-0.1148781850934],[0.013256455771625,-0.096608601510525,-0.046878293156624],[0.056160435080528,0.14315381646156,0.10851617157459]],[[0.045113507658243,-0.052900355309248,0.018221205100417],[0.011079247109592,0.039677534252405,-0.092121921479702],[0.033927265554667,0.011850298382342,-0.023753099143505]],[[-0.04095372185111,0.039540607482195,0.054211985319853],[0.017639946192503,-0.017819087952375,0.037170734256506],[0.022457456216216,0.019253125414252,0.02586667612195]],[[0.016370652243495,0.034570273011923,-0.0033299911301583],[-0.055761359632015,-0.055394534021616,0.034574426710606],[0.012366292066872,0.02519697509706,-0.0021332730539143]],[[0.017453042790294,-0.015012484975159,0.1359673589468],[-0.0074086324311793,0.0047072656452656,-0.052261855453253],[-0.0088943168520927,-0.01964314840734,-0.08185812830925]],[[-0.072442457079887,-0.0060672592371702,-0.077928371727467],[-0.0016793441027403,-0.026194186881185,0.093833334743977],[0.080684766173363,0.096782967448235,-0.00020207621855661]],[[0.059161029756069,0.03552782535553,-0.020754249766469],[-0.013962524011731,0.064507685601711,-0.065333761274815],[-0.066795505583286,-0.099507458508015,-0.034177698194981]],[[0.047487109899521,0.024169828742743,0.055144835263491],[0.090348102152348,0.21863085031509,0.0031510079279542],[0.075336419045925,0.07097265124321,0.16544251143932]],[[-0.045913614332676,-0.030521674081683,-0.037574078887701],[-0.072079263627529,-0.010766898281872,-0.018909022212029],[-0.028204329311848,0.08702065050602,-0.01456259470433]],[[0.071021936833858,0.012223775498569,0.051941070705652],[0.013717534951866,-0.034192714840174,0.0068806977942586],[0.0022710135672241,0.021545002236962,0.024267615750432]],[[-0.028837935999036,-0.040617674589157,0.021823160350323],[-0.092839978635311,-0.05046633630991,-0.026503119617701],[-0.029983464628458,-0.02561928331852,0.060915730893612]],[[0.001782983308658,-0.050507105886936,0.013377977535129],[0.065685950219631,0.0074285259470344,-0.077161371707916],[-0.050157364457846,-0.021762786433101,0.0070045972242951]],[[-0.035227902233601,-0.0029679047875106,-0.0026491307653487],[-0.022151632234454,-0.01348380651325,0.10273841023445],[-0.014546991325915,-0.044489990919828,0.051477670669556]],[[0.034078180789948,0.042905308306217,-0.039457939565182],[-0.024484742432833,-0.052912436425686,-0.045548014342785],[-0.07071627676487,0.034268967807293,-0.011656121350825]],[[-0.095444492995739,0.079634964466095,-0.10368862003088],[-0.043910093605518,0.036772791296244,-0.044099554419518],[-0.0047722938470542,0.056852824985981,0.043428998440504]],[[0.038793336600065,-0.02985673956573,-0.12307085096836],[-0.015010338276625,0.023738341405988,-0.038036499172449],[0.082842856645584,0.035578411072493,-0.01642007380724]],[[0.056754563003778,-0.018634300678968,0.041745956987143],[-0.015897003933787,-0.09375312179327,-0.023827509954572],[0.032638996839523,0.022841691970825,0.021316569298506]],[[0.070170655846596,0.020668914541602,0.014365145005286],[-0.0036990179214627,-0.0018337377114221,0.057272512465715],[0.0078964652493596,-0.14564335346222,-0.060270220041275]],[[-0.088760510087013,-0.015570479445159,0.020768450573087],[-0.049825489521027,0.018482575193048,-0.065647952258587],[-0.20715591311455,-0.092069365084171,-0.061171259731054]],[[-0.0094994055107236,0.0065871123224497,-0.053071916103363],[0.019754370674491,0.030794957652688,0.064535953104496],[0.040676053613424,0.057754244655371,-0.08164256811142]],[[0.043080512434244,-0.019282858818769,-0.078621804714203],[-0.042648699134588,0.089907452464104,-0.012325398623943],[0.04930167272687,0.10441298782825,-0.06684035807848]],[[-0.010176042094827,0.019650034606457,0.0079196188598871],[-0.13382239639759,-0.13565553724766,-0.014584275893867],[-0.026464706286788,0.087628439068794,0.072446539998055]],[[-0.097998730838299,-0.24126370251179,-0.050415568053722],[-0.0097261182963848,-0.15016244351864,0.080361358821392],[-0.0074067660607398,-0.045288883149624,0.058064412325621]],[[0.032058846205473,0.076163060963154,0.089601971209049],[-0.14323371648788,-0.11175101995468,-0.13342015445232],[-0.0048265210352838,-0.039482239633799,-0.028003431856632]],[[0.020917367190123,0.00069121981505305,-0.041082866489887],[-0.074009604752064,-0.0051145162433386,-0.052992135286331],[-0.11751800775528,-0.088016085326672,-0.1984408646822]],[[-0.051292806863785,-0.1044810116291,0.094920761883259],[-0.088772669434547,0.055380776524544,0.088774234056473],[-0.16654355823994,-0.065709337592125,0.039770890027285]],[[0.010068607516587,-0.094603724777699,-0.10007281601429],[-0.047627475112677,0.11981593072414,0.053223941475153],[-0.046854298561811,-0.035881102085114,-0.035913988947868]],[[0.022388136014342,-0.058964867144823,-0.025667296722531],[-0.012058517895639,0.012183539569378,-0.031046478077769],[0.086513131856918,0.0098375221714377,0.027717664837837]],[[-0.037592027336359,-0.038874980062246,0.0073001352138817],[-0.071189135313034,-0.053892306983471,-0.093930885195732],[0.027888804674149,-0.024046063423157,-0.059216499328613]],[[0.053609192371368,-0.064100757241249,-0.0018516816198826],[0.083012446761131,-0.014439686201513,-0.025711607187986],[-0.15619246661663,-0.10481889545918,-0.03547777235508]],[[-0.0053344639018178,0.018396027386189,0.059318963438272],[-0.034890957176685,0.066723696887493,-0.021108977496624],[0.082176424562931,-0.07171618193388,-0.10044892132282]],[[0.15584091842175,-0.05270079523325,-0.031223405152559],[-0.10251309722662,-0.1202954351902,-0.062891870737076],[-0.023267796263099,-0.1089900508523,0.004482897464186]],[[0.074826888740063,0.05999506264925,-0.077489078044891],[0.11678835749626,-0.024996576830745,-0.10177950561047],[-0.0092228632420301,-0.027415601536632,-0.044722139835358]],[[0.06573199480772,0.088330872356892,-0.0060888635925949],[0.053964033722878,0.097057014703751,-0.033502209931612],[-0.015847025439143,0.01108365599066,0.025280874222517]],[[-0.029771281406283,0.0069693136028945,-0.023884210735559],[0.074557647109032,-0.047713667154312,-0.077404253184795],[-0.0080133676528931,0.039192426949739,0.028558015823364]],[[-0.01043498236686,-0.065958224236965,0.081928633153439],[-0.098164074122906,-0.034225478768349,-0.027132663875818],[0.1129959076643,0.022113766521215,0.17300409078598]],[[0.04204586148262,0.017133669927716,0.022066479548812],[-0.12639300525188,-0.090432167053223,-0.28533053398132],[-0.11581820994616,0.015825932845473,-0.080565817654133]],[[0.052476700395346,-0.093891404569149,0.033299867063761],[0.0053805811330676,-0.0099533842876554,0.064613819122314],[-0.010780012235045,0.11568713933229,-0.015364213846624]],[[0.058226473629475,0.10359053313732,0.16852897405624],[0.016406860202551,-0.019107040017843,-0.072604455053806],[-0.064412802457809,-0.028461590409279,0.021533988416195]],[[0.068972542881966,0.071886539459229,-0.043071746826172],[-0.0077801835723221,-0.090275809168816,-0.039782572537661],[-0.081306494772434,-0.033084362745285,-0.018603075295687]],[[-0.049924209713936,-0.11644247919321,-0.050698690116405],[0.0035124206915498,-0.038658156991005,-0.019033616408706],[-0.0019282682333142,0.10499968379736,0.058098930865526]],[[0.022549387067556,0.04127062484622,-0.058934770524502],[-0.0057893893681467,-0.00094734993763268,-0.067364200949669],[0.034066289663315,-0.019069032743573,-0.11176811903715]],[[0.12687711417675,0.02337921410799,0.10439878702164],[0.046185120940208,-0.10305105894804,0.014702712185681],[0.058961112052202,0.18032249808311,-0.039082370698452]],[[0.010878138244152,0.080102168023586,0.045459050685167],[-0.025059551000595,0.012972856871784,-0.01023047696799],[-0.032426171004772,-0.049457546323538,-0.032132118940353]],[[-0.12750101089478,-0.034673914313316,0.02132854796946],[-0.011479631997645,-0.029380051419139,-0.018146526068449],[-0.012804122641683,-0.033769942820072,-0.0072935409843922]],[[0.010081184096634,-0.059714514762163,-0.0029628039337695],[-0.023321790620685,0.089192718267441,0.033531617373228],[0.0152404056862,-0.057371094822884,0.063912972807884]],[[-0.094506859779358,0.035621549934149,0.0064738444052637],[-0.029610943049192,-0.068342939019203,-0.064976677298546],[0.046539191156626,0.077271811664104,0.028156518936157]],[[-0.090782500803471,0.005414666607976,0.074704498052597],[-0.063852623105049,0.007797799538821,-0.059640776365995],[-0.036861091852188,-0.068830102682114,-0.12047589570284]]],[[[0.0028729925397784,-0.028327701613307,-0.017179382964969],[-0.034453686326742,0.028866278007627,0.041800267994404],[-0.055707532912493,-0.038997169584036,0.037066157907248]],[[-0.11165197938681,0.030114786699414,-0.072415344417095],[-0.036023773252964,0.049081720411777,-0.0041690268553793],[-0.021837456151843,-0.088359624147415,-0.064847886562347]],[[-0.028561292216182,-0.03718138858676,-0.12593990564346],[-0.10696925967932,-0.03756856918335,-0.082147710025311],[-0.086655162274837,-0.086978726089001,-0.044400561600924]],[[0.017097450792789,-0.0081102577969432,-0.061283301562071],[0.019976614043117,-0.071890354156494,-0.060829423367977],[-0.034347493201494,0.10452868044376,-0.044257871806622]],[[-0.013292420655489,-0.10391520708799,0.080237358808517],[-0.046679578721523,0.010310317389667,0.0094140376895666],[0.042836222797632,-0.036915123462677,0.0052681090310216]],[[-0.0071493913419545,0.0013194106286392,-0.10999089479446],[-0.055479321628809,-0.0033132047392428,-0.06303683668375],[-0.041011452674866,-0.037839323282242,-0.054518051445484]],[[-0.15476781129837,-0.058922674506903,0.0089633231982589],[-0.069720551371574,-0.039900947362185,-0.037937242537737],[-0.047097656875849,-0.055898491293192,-0.10412705689669]],[[0.032884046435356,-0.12665331363678,0.11850947141647],[-0.047802068293095,0.036683976650238,-0.11791962385178],[-0.026374572888017,-0.013847566209733,0.076229572296143]],[[0.0013892332790419,-0.04393370449543,0.038529600948095],[0.060765080153942,0.022754780948162,-0.07037478685379],[0.041639361530542,0.030536340549588,0.0081458613276482]],[[-0.14098854362965,-0.027578542008996,-0.072755873203278],[0.086684465408325,-0.14116325974464,0.020516965538263],[-0.075731739401817,0.19117583334446,-0.15350593626499]],[[0.067343629896641,-0.076206617057323,-0.16166940331459],[-0.19864898920059,0.12276611477137,-0.027874806895852],[0.13010093569756,-0.13787089288235,0.0063430778682232]],[[0.029387662187219,-0.071128703653812,0.053627468645573],[-0.059526190161705,0.023091267794371,-0.15614265203476],[0.064340338110924,-0.11240622401237,0.033958349376917]],[[-0.073244750499725,-0.090921223163605,-0.087485179305077],[-0.063450925052166,0.038972176611423,-0.013267609290779],[0.18626493215561,-0.049204044044018,0.058036278933287]],[[0.048579707741737,-0.04481316357851,0.018161490559578],[-0.17145422101021,0.044987518340349,0.095621138811111],[-0.013787834905088,0.052296787500381,-0.025110967457294]],[[-0.17744000256062,0.14609430730343,-0.12073014676571],[-0.012822635471821,-0.11200298368931,0.035250619053841],[-0.086650371551514,0.062895409762859,-0.060658447444439]],[[-0.17780521512032,0.32258978486061,-0.24834856390953],[0.024830529466271,-0.19285446405411,0.054751511663198],[0.12238226830959,-0.22339703142643,-0.00068156357156113]],[[-0.046527687460184,0.011581005528569,0.054495681077242],[-0.019580354914069,0.032295573502779,0.0035085896961391],[-0.16269978880882,0.038972303271294,-0.13791926205158]],[[0.013887335546315,-0.046786744147539,-0.055433314293623],[-0.059754639863968,0.076144896447659,-0.037008386105299],[-0.06506921350956,-0.0091019002720714,0.0047079441137612]],[[-0.060824364423752,0.00037721430999227,0.028481988236308],[-0.064472876489162,-0.00023781594063621,-0.1577831953764],[0.063221618533134,-0.20369353890419,0.247513204813]],[[0.0030559706501663,-0.002453901572153,-0.0019797619897872],[0.019973240792751,-0.0016949308337644,-0.0058447103947401],[-0.0016296248650178,0.012609635479748,-0.015595370903611]],[[0.020127490162849,-0.10756441950798,0.10011652112007],[0.020091408863664,0.042377632111311,-0.067558072507381],[-0.021560164168477,0.021493637934327,0.010452427901328]],[[0.026058506220579,0.017144061625004,-0.019475096836686],[-0.0093410275876522,0.061666313558817,-0.0062787341885269],[0.036213416606188,0.076374262571335,-0.082234248518944]],[[-0.043080799281597,0.016301145777106,-0.032647915184498],[-0.010058793239295,-0.029915686696768,-0.037092056125402],[0.01753812469542,-0.035524751991034,0.025309413671494]],[[-0.074486419558525,0.059977743774652,-0.07842156291008],[0.0093441847711802,0.062093049287796,0.13584104180336],[0.035549875348806,0.033488396555185,-0.039883092045784]],[[0.06346071511507,-0.026198027655482,0.11791537702084],[-0.02035634405911,0.0042478409595788,-0.089604057371616],[-0.094203718006611,-0.035584639757872,0.010829671286047]],[[0.053545199334621,-0.043346490710974,0.0030899590346962],[0.038732066750526,0.039718464016914,-0.08765521645546],[0.093048267066479,-0.014755771495402,0.049297150224447]],[[-0.094464607536793,0.030789367854595,-0.1101647913456],[-0.032529234886169,-0.063459917902946,0.14757508039474],[-0.0599175542593,-0.033991355448961,-0.052054800093174]],[[0.10244642198086,-0.042504690587521,0.094847545027733],[-0.075895257294178,0.059977404773235,0.018328608945012],[0.046617202460766,-0.015520523302257,0.063849866390228]],[[0.036174021661282,-0.13851264119148,0.052692990750074],[-0.17191334068775,0.11754916608334,-0.21992686390877],[0.14452555775642,-0.21222126483917,0.13505366444588]],[[-0.08794578909874,-0.018094064667821,-0.08287475258112],[0.034665085375309,-0.056562330573797,-0.0084176063537598],[-0.074277319014072,-0.014563267119229,-0.071484446525574]],[[-0.018847173079848,-0.08689733594656,-0.12709099054337],[-0.0023920186795294,-0.040327034890652,0.086406618356705],[-0.016415758058429,0.14880615472794,-0.038288343697786]],[[0.035750288516283,-0.061435829848051,-0.018085937947035],[0.023810276761651,-0.014537253417075,0.035626221448183],[-0.078108988702297,0.030698800459504,-0.10098943114281]],[[0.037766229361296,-0.056006357073784,-0.20110237598419],[-0.10515477508307,0.028632270172238,0.12082756310701],[-0.067745089530945,-0.046353671699762,-0.15075957775116]],[[-0.031872306019068,-0.028471084311604,0.079245992004871],[-0.0508718714118,-0.010998879559338,-0.050599131733179],[0.067942716181278,0.012670905329287,-0.16347341239452]],[[-0.085410587489605,0.097264133393764,-0.075695350766182],[0.044537752866745,-0.04909273982048,-0.0082339625805616],[-0.071999192237854,0.024584967643023,-0.11740275472403]],[[0.032980069518089,-0.020811090245843,-0.043225154280663],[-0.0033376170322299,-0.066653124988079,-0.026430821046233],[0.069040149450302,0.033980518579483,-0.049899760633707]],[[-0.050471402704716,0.035303484648466,0.16155055165291],[-0.10021090507507,0.019102316349745,-0.088526733219624],[-0.065036296844482,-0.013328361324966,0.046484466642141]],[[-0.019528253003955,-0.11840865015984,-0.09032841771841],[0.021659655496478,-0.12407556921244,-0.017237409949303],[-0.078322552144527,-0.056759778410196,0.078067228198051]],[[-0.024790372699499,-0.0056693884544075,0.00092588237021118],[0.026670232415199,-0.028700493276119,-0.024360489100218],[0.031955633312464,0.059979148209095,-0.0015573224518448]],[[0.12991692125797,-0.077302791178226,0.060062244534492],[-0.0076336320489645,-0.012936112470925,-0.046319078654051],[-0.050232488662004,0.044220980256796,-0.034387491643429]],[[0.068334847688675,-0.071877963840961,-0.10579321533442],[0.1479018330574,-0.2264686524868,-0.11380209773779],[-0.30371934175491,0.079595603048801,0.049122259020805]],[[-0.078765459358692,-0.003839623183012,-0.050430215895176],[-0.048665788024664,0.11939733475447,-0.042743239551783],[-0.0941241979599,0.076837010681629,-0.00030978317954578]],[[-0.11912198364735,0.17393396794796,-0.23079757392406],[0.072803221642971,-0.16764110326767,0.15391984581947],[-0.13122622668743,0.15085873007774,-0.1544773131609]],[[0.046536907553673,-0.083605729043484,0.11277367174625],[-0.036996386945248,0.094075165688992,-0.13490243256092],[-0.049169350415468,-0.025077847763896,-0.0078846160322428]],[[-0.063364617526531,-0.11778305470943,0.022216513752937],[-0.055506721138954,0.08622932434082,-0.05220952257514],[-0.021110059693456,-0.020356925204396,-0.0025857118889689]],[[-0.011391180567443,0.024426020681858,-0.044133137911558],[-0.010398887097836,-0.041083447635174,-0.025335842743516],[-0.057935781776905,0.052405636757612,-0.088966593146324]],[[-0.0085633462294936,-0.036245085299015,-0.014734581112862],[-0.014379491098225,0.055445153266191,-0.082347735762596],[0.044034421443939,-0.02976169064641,-0.02571034617722]],[[-0.013451432809234,0.030911147594452,-0.051668409258127],[-0.048265177756548,-0.0025637911166996,0.026354348286986],[-0.038217902183533,8.9683097030502e-05,0.0049595874734223]],[[-0.12759028375149,0.0058401967398822,-0.097066402435303],[0.058434594422579,0.063042141497135,0.022393938153982],[-0.050842836499214,0.085369274020195,-0.11079354584217]],[[-0.092109553515911,0.038112316280603,-0.046176053583622],[0.06738768517971,0.017123328521848,-0.020850019529462],[-0.097398094832897,-0.080108635127544,0.026803268119693]],[[-0.11116918176413,0.063614048063755,-0.17215220630169],[0.124008461833,-0.12240564823151,-0.0014714482240379],[-0.19707074761391,0.081653766334057,-0.10664562880993]],[[-0.092094719409943,0.015682507306337,0.02189239859581],[0.12065733969212,0.17994377017021,-0.11804893612862],[0.19131179153919,-0.055464718490839,0.091186575591564]],[[-0.12694534659386,0.070852898061275,-0.099342502653599],[0.10382149368525,-0.10965303331614,0.033949341624975],[-0.13193018734455,0.065353199839592,-0.11974468827248]],[[-0.10873495787382,0.01656031049788,0.12123294174671],[-0.046917226165533,0.022307774052024,-0.074077114462852],[0.022747904062271,-0.12499707937241,0.039836756885052]],[[-0.048424120992422,0.025832599028945,0.0240857899189],[0.15825569629669,-0.09930906444788,0.066479757428169],[-0.062292642891407,0.061458021402359,-0.097125291824341]],[[0.12179943919182,-0.12917120754719,0.054322354495525],[-0.18579822778702,0.095652267336845,-0.062863104045391],[0.16052390635014,-0.063618324697018,0.083363741636276]],[[-0.11650087684393,0.020587934181094,0.045233592391014],[0.019211322069168,-0.11073505878448,-0.096145793795586],[0.029644634574652,0.03408345580101,0.069945350289345]],[[-0.049549221992493,0.047352518886328,-0.12160138040781],[-0.00066368863917887,-0.095698766410351,0.022756738588214],[-0.018012007698417,-0.099716201424599,0.023377783596516]],[[-0.14374271035194,-0.029661992564797,0.26075446605682],[0.10642651468515,0.049314472824335,-0.02464022487402],[0.10304474085569,0.0064656143076718,0.0067827166058123]],[[-0.0103316064924,-0.044700816273689,0.023726357147098],[-0.0067111440002918,0.039196826517582,-0.012936335988343],[0.0074226851575077,-0.038348283618689,0.018448272719979]],[[0.005905226804316,0.047632560133934,-0.0020276575814933],[0.035690471529961,-0.010892984457314,-0.034224566072226],[-0.057177681475878,-0.032494459301233,-0.055312763899565]],[[-0.00070358416996896,-0.035054329782724,0.092451721429825],[0.10917423665524,-0.098517224192619,0.0098314974457026],[-0.073910981416702,0.066363073885441,-0.087143130600452]],[[-0.10622499883175,-0.0085548767820001,0.054114878177643],[0.081070281565189,-0.036602452397346,-0.0047320798039436],[-0.10140713304281,0.023237200453877,-0.1956090182066]],[[-0.17465390264988,0.1334118694067,0.0052643436938524],[0.013047801330686,-0.0020733557175845,-0.065390825271606],[0.093353934586048,-0.089000962674618,0.024727776646614]]],[[[-0.067084655165672,-0.044113464653492,-0.06783664226532],[-0.080613881349564,-0.02048003859818,-0.074527308344841],[-0.032738897949457,0.033352114260197,-0.01168498210609]],[[-0.0096303662285209,0.041814878582954,-0.084042973816395],[-0.15419398248196,-0.059715870767832,0.14989471435547],[-0.2706678211689,-0.20497396588326,-0.027317686006427]],[[-0.079748466610909,0.023751189932227,0.071078404784203],[-0.14121149480343,0.017923563718796,0.033570479601622],[-0.15906921029091,0.064382411539555,0.12635196745396]],[[-0.034202620387077,0.020486660301685,-0.043196108192205],[-0.050231646746397,-0.14969798922539,-0.0029350579716265],[-0.17327781021595,-0.088761895895004,-0.061586886644363]],[[-0.1001203507185,0.0035029330756515,-0.052846614271402],[-0.037644509226084,0.03385491296649,0.038338854908943],[-0.078059919178486,0.088096544146538,0.097263775765896]],[[-0.040413662791252,-0.067275300621986,-0.096081532537937],[0.030563332140446,-0.031689163297415,-0.033200927078724],[0.029208855703473,0.039840649813414,-0.027808522805572]],[[-0.037691254168749,0.047134388238192,-0.035538908094168],[-0.063058756291866,0.031755954027176,-0.10919149965048],[-0.034368213266134,-0.044339872896671,0.0031364776659757]],[[0.008420392870903,-0.028579210862517,-0.045058608055115],[-0.072165533900261,-0.083207979798317,0.086469024419785],[-0.13138593733311,-0.31163135170937,-0.05403621122241]],[[0.0091457730159163,0.010067442432046,0.0041635320521891],[0.039694681763649,-0.049560725688934,0.022973939776421],[0.035962603986263,-0.042967833578587,-0.0022004111669958]],[[-0.058523636311293,-0.0439249612391,0.0041831177659333],[0.0021906543988734,0.031008550897241,-0.026526825502515],[0.078914001584053,0.076687872409821,0.032111283391714]],[[0.063001684844494,0.066434741020203,-0.012584557756782],[0.013998683542013,0.035715214908123,-0.010512216947973],[-0.082277096807957,-0.066047325730324,-0.023046499118209]],[[0.028148792684078,-0.065789841115475,0.033183734863997],[0.0257568359375,0.11318576335907,0.10459962487221],[-0.16573411226273,0.14315171539783,0.027458867058158]],[[-0.018016561865807,0.017168983817101,0.035527285188437],[-0.0011162917362526,0.040423896163702,-0.022330645471811],[-0.13528753817081,-0.062214560806751,-0.0364671908319]],[[-0.0024214047007263,-0.0048904158174992,0.085836492478848],[-0.15595535933971,0.013470374047756,0.032517723739147],[-0.010558405891061,-0.039934463799,0.011151545681059]],[[0.054211389273405,0.057992942631245,0.043338213115931],[-0.01025877147913,-0.02305020019412,-0.019339835271239],[-0.053455084562302,0.0076002390123904,0.030242968350649]],[[0.032613474875689,-0.0076440987177193,-0.12843756377697],[0.052631180733442,0.13285060226917,-0.089229054749012],[0.20115578174591,0.034037001430988,0.021007761359215]],[[0.054056379944086,0.045484326779842,-0.078820012509823],[0.0078635094687343,0.018407171592116,-0.085115730762482],[0.054125271737576,-0.10495747625828,0.009463899768889]],[[-0.0036364658735693,-0.014175617136061,0.0317168161273],[-0.041408095508814,-0.069861002266407,0.07643660902977],[-0.28714883327484,-0.16346563398838,-0.19112785160542]],[[0.0031214496120811,-0.096696212887764,-0.11056628078222],[0.12604178488255,0.0204923376441,-0.0068618054501712],[0.016562253236771,-0.06396372616291,-0.17463745176792]],[[-0.016844861209393,0.018471509218216,0.022961355745792],[-0.035142436623573,0.0041689653880894,0.047506351023912],[-0.026572518050671,-0.071217224001884,0.052784629166126]],[[-0.022648083046079,-0.095435678958893,-0.030866891145706],[-0.018556090071797,-0.1937195956707,-0.016774486750364],[-0.10110957175493,-0.24505764245987,-0.044183135032654]],[[0.00083237694343552,-0.14267887175083,0.0017616840777919],[0.15058864653111,-0.071293868124485,0.061473835259676],[0.13214020431042,0.091134041547775,0.012784765101969]],[[0.10476594418287,-0.00090611109044403,0.1129095479846],[0.024995738640428,0.0084109138697386,0.08480154722929],[-0.25409975647926,-0.11819922178984,-0.092465952038765]],[[0.073337078094482,0.032524455338717,-0.062763072550297],[0.19317248463631,0.12319806218147,-0.0044630602933466],[0.20537316799164,0.091931484639645,0.11584260314703]],[[-0.06189077347517,-0.11047579348087,0.049679350107908],[0.037364326417446,-0.036497049033642,-0.018181789666414],[-0.015957558527589,-0.025208102539182,-0.023026356473565]],[[0.0097955111414194,0.058145247399807,0.1296014636755],[0.005256085190922,0.027965364977717,0.070728227496147],[0.077987901866436,0.01183510851115,0.077664390206337]],[[0.11504821479321,0.0087938951328397,0.029156494885683],[-0.088612407445908,0.18335819244385,0.016122844070196],[-0.12583296000957,-0.065320834517479,0.087771207094193]],[[0.0060728332027793,0.093375004827976,0.12959438562393],[0.065323166549206,-0.050542011857033,0.015320366248488],[-0.0065993838943541,0.012511768378317,-0.055226370692253]],[[0.023252883926034,0.068114012479782,0.050739523023367],[0.0044859042391181,-0.017485897988081,0.21157148480415],[-0.17862023413181,-0.033124208450317,-0.010037494823337]],[[0.010357845574617,-0.020122289657593,0.039262980222702],[-0.063709273934364,-0.13679546117783,-0.0099997306242585],[-0.02374810539186,-0.095225408673286,0.032813645899296]],[[-0.0043380917049944,0.019468104466796,-0.035838387906551],[0.058417528867722,-0.023226583376527,-0.047889556735754],[0.053824324160814,-0.0059395944699645,0.0089064845815301]],[[0.079119697213173,-0.020511323586106,0.045119155198336],[-0.11643750965595,0.054311662912369,-0.035459633916616],[-0.10795912146568,0.11040822416544,0.091817043721676]],[[0.02621721662581,-0.094702519476414,-0.038642160594463],[-0.0049208225682378,0.0012870175996795,-0.083315156400204],[0.034032702445984,-0.023001426830888,0.0026963893324137]],[[0.013750687241554,0.01846113242209,-0.023089975118637],[-0.013128609396517,-0.14394076168537,-0.045123927295208],[0.053890079259872,-0.0061432411894202,-0.038759313523769]],[[0.033303488045931,0.10650523751974,0.1136617437005],[0.056662160903215,-0.084168791770935,-0.033130567520857],[-0.090205915272236,0.047970492392778,-0.023140540346503]],[[-0.14522252976894,-0.03816457465291,-0.026600791141391],[-0.045078422874212,-0.19434610009193,-0.081274151802063],[-0.078158088028431,-0.014223670586944,0.10415265709162]],[[0.07637682557106,-0.075044080615044,-0.14191913604736],[0.053142786026001,0.013393674045801,0.12175552546978],[0.18343481421471,0.045883897691965,0.099830158054829]],[[0.062499601393938,0.076399117708206,0.043369550257921],[0.060338314622641,0.18031096458435,0.050058219581842],[-0.18531292676926,-0.0080401562154293,0.049026809632778]],[[0.0093011278659105,-0.031599998474121,0.018486063927412],[0.059624720364809,0.019317271187901,-0.029080452397466],[-0.024647004902363,-0.020821362733841,-0.033528968691826]],[[0.020754544064403,-0.023980220779777,-0.068961665034294],[0.063762381672859,-0.09789365530014,0.015674013644457],[0.11884417384863,-0.042659111320972,-0.0028033477719873]],[[0.057678785175085,0.086289472877979,0.049319859594107],[0.11848656833172,-0.075372315943241,0.03520892187953],[-0.14959613978863,-0.0027317027561367,0.013690052554011]],[[0.081274084746838,0.022416912019253,0.11328086256981],[0.045409377664328,0.057438611984253,0.043319374322891],[0.0093413824215531,-0.020523339509964,-0.10638028383255]],[[-0.038129847496748,-0.032660391181707,0.041055507957935],[-0.070920847356319,-0.13116355240345,0.064834602177143],[-0.11713734269142,-0.003105876268819,0.092985235154629]],[[0.035763438791037,0.036289323121309,0.039663136005402],[-0.19693806767464,-0.11477461457253,0.048690192401409],[0.056120030581951,-0.21923480927944,-0.012569477781653]],[[0.009608163498342,-0.099552229046822,-0.1091730594635],[0.053486421704292,0.025768043473363,-0.032416731119156],[0.060259986668825,0.013487420044839,-0.03584424033761]],[[0.017270689830184,0.035733867436647,-0.0098722465336323],[-0.077121883630753,-0.13645660877228,-0.025106627494097],[-0.24146640300751,-0.1235373467207,-0.073465153574944]],[[0.013200976885855,0.072477869689465,-0.071648895740509],[0.057885568588972,-0.012158232741058,0.051304642111063],[0.004337016493082,0.079018749296665,-0.023427126929164]],[[-0.032596245408058,0.0050896899774671,0.095522619783878],[-0.036499716341496,-0.010896728374064,-0.043773453682661],[0.021770715713501,-0.00028331833891571,0.0062668272294104]],[[0.010861481539905,-0.086247883737087,0.10978151112795],[-0.049567755311728,-0.022912707179785,0.05322128906846],[0.088101133704185,0.034662149846554,-0.093201696872711]],[[0.044735137373209,0.044054172933102,0.032506838440895],[-0.021045289933681,0.074395194649696,-0.13409417867661],[-0.071750044822693,0.030329011380672,0.051978953182697]],[[0.022220695391297,0.038787946105003,0.20755112171173],[0.023434359580278,-0.069724053144455,0.00074938853504136],[0.027811707928777,0.023935977369547,0.099869273602962]],[[0.051830794662237,0.029056180268526,-0.10261469334364],[0.040951251983643,0.085211627185345,-0.036893576383591],[0.1609582901001,0.054654832929373,-0.025071583688259]],[[0.026994541287422,-0.097463540732861,0.11962378770113],[-0.085276231169701,0.14044791460037,0.040282342582941],[-0.19917017221451,-0.17410838603973,-0.059035010635853]],[[0.021638866513968,0.079890556633472,-0.05027561634779],[-0.026857182383537,0.041301198303699,0.086273081600666],[0.038117624819279,0.030159460380673,0.083700463175774]],[[0.028653619810939,-0.06297392398119,0.03127958253026],[-0.050457447767258,0.099679619073868,0.19833080470562],[-0.12843869626522,-0.25549441576004,-0.035916171967983]],[[0.024421941488981,0.064893908798695,-0.038964189589024],[-0.026162808761001,0.050062458962202,0.0034961046185344],[-0.022757060825825,0.041510757058859,-0.090322881937027]],[[-0.0025506687816232,0.065142095088959,0.031362298876047],[-0.0021033147349954,-0.0024772025644779,0.092835895717144],[0.0079881194978952,-0.048964504152536,0.0086622452363372]],[[0.031248617917299,0.00055686361156404,0.038488071411848],[-0.017551682889462,-0.0049844444729388,-0.021942371502519],[-0.10384477674961,-0.017693441361189,-0.0093599809333682]],[[0.086184084415436,-0.064982190728188,-0.13418270647526],[0.14986325800419,0.041360441595316,0.0075100837275386],[0.28531429171562,0.057166785001755,-0.069413803517818]],[[0.041908595710993,-0.019172228872776,-0.10626151412725],[0.059015605598688,0.021673008799553,-0.0066526574082673],[0.0038929935544729,0.077739857137203,-0.035634003579617]],[[-0.097977347671986,0.010065685026348,0.014442370273173],[0.01625339128077,0.006602612324059,0.0099010961130261],[-0.013541818596423,-0.0076959664002061,0.11698780208826]],[[-0.048504177480936,-0.042975191026926,0.081594675779343],[-0.10370598733425,0.059823874384165,0.095060259103775],[-0.18090365827084,0.14328187704086,0.10168355703354]],[[0.015784434974194,-0.062448151409626,0.14598816633224],[0.019689848646522,-0.10442800074816,0.020961051806808],[0.052436083555222,-0.043866559863091,0.08133727312088]],[[-0.16876597702503,0.085513427853584,0.00023727137886453],[-0.054582849144936,0.096620835363865,0.018788499757648],[-0.12897972762585,0.0078116771765053,-0.039234176278114]]],[[[0.01950141787529,-0.00012373115168884,-0.17732460796833],[0.016341974958777,0.059177618473768,0.052077412605286],[-0.035926565527916,-0.0012332786573097,0.081295758485794]],[[0.058459226042032,0.0028892054688185,-0.057674296200275],[0.032679170370102,-0.028398809954524,0.048422522842884],[-0.049427300691605,-0.03989277780056,-0.18121568858624]],[[-0.060336615890265,0.10889675468206,0.033863626420498],[0.019763963297009,-0.021698972210288,-0.029938936233521],[-0.013164716772735,0.049871634691954,-0.097065500915051]],[[0.041259251534939,0.046916998922825,0.01408302038908],[0.043885480612516,-0.078322313725948,0.018370557576418],[-0.014383626170456,0.12994557619095,0.024160640314221]],[[0.010507280007005,0.056045796722174,0.042768120765686],[-0.063510604202747,-0.10236971825361,0.041340369731188],[0.06831206381321,0.019613536074758,0.068606324493885]],[[0.029593573883176,-0.0019518146291375,-0.017483197152615],[0.013617127202451,0.047748845070601,-0.0061540557071567],[0.0051255864091218,-0.026242442429066,0.015684023499489]],[[0.047251913696527,0.020971028134227,-0.0081899389624596],[-0.039917480200529,-0.073541313409805,0.023016719147563],[0.022114492952824,-0.058377344161272,-0.017341626808047]],[[0.057192429900169,-0.046455938369036,-0.036528237164021],[-0.0030115193221718,-0.028807170689106,0.031835880130529],[0.0096656503155828,-0.031489085406065,-0.029433282092214]],[[0.0036965403705835,-0.0025047005619854,-0.077266164124012],[-0.0044771493412554,-0.048907861113548,0.065379962325096],[-0.067548833787441,0.083308972418308,-0.044137079268694]],[[-0.046661537140608,-0.016128269955516,-0.054413471370935],[-0.0017965004080907,0.0092234676703811,0.062359973788261],[-0.086610235273838,-0.016946902498603,-0.0031573835294694]],[[-0.047347147017717,0.015299128368497,-0.0094701135531068],[-0.013524553738534,0.052344549447298,0.038758404552937],[-0.01528194732964,-0.073319494724274,-0.0019469090038911]],[[-0.0031287427991629,0.038398373872042,0.031720355153084],[-0.077613927423954,0.030326182022691,0.012252234853804],[0.059303779155016,-0.17471808195114,-0.10318745672703]],[[-0.022427007555962,0.082376420497894,-0.054561201483011],[-0.02131225913763,-0.041390042752028,-0.016033176332712],[-0.068921990692616,-0.023262714967132,-0.0025753020308912]],[[-0.12890219688416,-0.11704070866108,-0.0041551012545824],[0.0010743869934231,0.014205491170287,0.011522680521011],[0.00047653340152465,0.014816087670624,0.0013344346079975]],[[-0.057020504027605,-0.061327286064625,-0.043436501175165],[0.0078305592760444,0.001613941625692,-0.051906269043684],[0.0027803382836282,-0.018274968490005,0.074443861842155]],[[0.061705529689789,0.063573457300663,-0.09064307063818],[-0.010366910137236,0.020182259380817,0.058016061782837],[0.0018645803211257,0.0430608689785,0.034395407885313]],[[0.079947836697102,0.0069247544743121,-0.026525843888521],[0.088334791362286,-0.0018167599337175,-0.0067280763760209],[0.10667847841978,0.1043012663722,-0.012806107290089]],[[-0.14556176960468,-0.0096909133717418,-0.12518902122974],[-0.011555111967027,0.038849253207445,-0.13278625905514],[-0.039651803672314,-0.054567467421293,0.010271030478179]],[[-0.015076291747391,-0.036423180252314,0.051925200968981],[0.052788354456425,-0.065227687358856,-0.062060356140137],[-0.02164950594306,-0.0066643357276917,0.017275841906667]],[[-0.059743274003267,-0.011375112459064,0.048640009015799],[-0.075729802250862,0.025969913229346,0.0046268394216895],[-0.014483726583421,0.033819958567619,0.041275426745415]],[[-0.070186279714108,-0.061409682035446,-0.12237352132797],[-0.12484263628721,-0.11181707680225,-0.11210519820452],[0.022567933425307,0.0058066206984222,-0.068968646228313]],[[-0.079776726663113,0.015377584844828,-0.012599816545844],[-0.033585324883461,-0.053890392184258,0.050939399749041],[0.02466381713748,0.026447990909219,0.0416907556355]],[[-0.083626829087734,0.17473211884499,-0.036752711981535],[0.050982512533665,-0.066673263907433,0.043267592787743],[0.037242013961077,0.011649932712317,-0.10989659279585]],[[0.018930539488792,0.050788473337889,0.057002432644367],[0.059813864529133,0.069454915821552,0.045325148850679],[0.13366797566414,0.083946891129017,0.082608133554459]],[[-0.0049333046190441,0.07721184939146,0.068809501826763],[0.02057996019721,0.0021468226332217,-0.0067543820478022],[0.032566804438829,0.0094254231080413,0.036271214485168]],[[-0.055470664054155,0.095661960542202,0.032565306872129],[-0.015077539719641,-0.00071044213837013,0.030877575278282],[0.052073054015636,0.10278048366308,-0.018846610561013]],[[-0.031014461070299,0.12472279369831,-0.028080882504582],[0.10681819170713,-0.02537508867681,-0.024737238883972],[0.090101882815361,0.066620960831642,0.012415253557265]],[[0.079113267362118,-0.089545793831348,0.011169819161296],[0.059623226523399,-0.02198401838541,0.020860893651843],[-0.041878301650286,-0.010654229670763,0.17537480592728]],[[0.034834951162338,0.026336031034589,0.095671251416206],[0.013652033172548,0.076366975903511,-0.054848559200764],[0.077546834945679,-0.013848780654371,0.058067321777344]],[[-0.017156017944217,-0.046185653656721,-0.039886031299829],[0.079918019473553,-0.017448065802455,-0.017783641815186],[0.055065397173166,-0.024254273623228,-0.011124750599265]],[[-0.020638588815928,0.01828215457499,-0.036146778613329],[-0.028592135757208,-0.054850835353136,0.070257037878036],[-0.087441802024841,-0.03577346354723,0.031381204724312]],[[0.064268693327904,0.038433093577623,0.0086015146225691],[-0.094727203249931,0.084057703614235,-0.065448559820652],[0.047711692750454,0.11475203186274,0.049015775322914]],[[0.012522809207439,-0.040202744305134,0.037475626915693],[-0.024268295615911,0.04280436784029,-0.047470644116402],[-0.085068330168724,-0.018343729898334,-0.043587151914835]],[[-0.087317235767841,-0.0037125798407942,-0.03916659578681],[0.020263561978936,-0.1330828666687,0.050636675208807],[0.043730791658163,0.06093879789114,0.097625181078911]],[[0.065296165645123,0.024158397689462,0.099630206823349],[0.083288133144379,0.065257377922535,0.048839244991541],[0.042062412947416,0.030231881886721,0.1216606721282]],[[-0.10513634234667,0.036513090133667,0.0051957089453936],[-0.0037639585789293,0.016488336026669,-0.043080888688564],[0.029022295027971,-0.03814160823822,0.014893228188157]],[[-0.019814696162939,0.010458788834512,0.010131621733308],[-0.0081903943791986,0.027473006397486,0.10456436127424],[-0.1343899667263,-0.08189968764782,0.0043001426383853]],[[-0.018635883927345,-0.0038765845820308,-0.085094340145588],[-0.042505145072937,-0.066525295376778,-0.0081832110881805],[0.0070622521452606,-0.01665292493999,-0.023274576291442]],[[-0.16611024737358,-0.04357897117734,0.019777746871114],[-0.12966956198215,-0.039474122226238,0.068437747657299],[-0.035843428224325,-0.066065169870853,-0.072225421667099]],[[-0.11758382618427,0.13007979094982,-0.031152877956629],[-0.10411567240953,-0.067414194345474,0.030649222433567],[0.025605726987123,0.095092721283436,-0.033923447132111]],[[-0.18213383853436,0.026716638356447,0.0073890443891287],[-0.13896587491035,0.014266807585955,-0.11795834451914],[-0.22854936122894,-0.12349167466164,0.075508505105972]],[[-0.0040664547123015,0.067958168685436,0.076048515737057],[-0.089997947216034,0.059600207954645,-0.0060498570092022],[-0.05595013871789,-0.035588223487139,-0.033624947071075]],[[-0.0073034297674894,-0.029979756101966,-0.045177061110735],[-0.01551425922662,-0.040780872106552,0.023241870105267],[0.044245194643736,0.019389875233173,-0.061280626803637]],[[-0.016882814466953,-0.017005633562803,-0.036545190960169],[-0.083174198865891,0.077071160078049,0.017758686095476],[-0.079790338873863,-0.019301032647491,0.079674877226353]],[[0.035930924117565,-0.027741322293878,-0.087808303534985],[0.050962846726179,-0.034862238913774,0.044409353286028],[0.059378668665886,-0.16065528988838,-0.069045878946781]],[[-0.072990745306015,-3.4412929380778e-05,0.028857441619039],[-0.0061231656000018,0.058874256908894,-0.041581645607948],[-0.055564902722836,0.023262979462743,0.026306206360459]],[[-0.046414133161306,-0.017552599310875,-0.032118331640959],[-0.11705090105534,0.018373411148787,0.008690882474184],[-0.088547334074974,-0.0066808992996812,0.021636975929141]],[[-0.091659359633923,-0.11687602102757,0.015429768711329],[0.0044951103627682,-0.022089449688792,-0.064409658312798],[-0.1029859483242,0.026658391579986,0.08529157936573]],[[-0.036836538463831,-0.092929631471634,-0.13197158277035],[0.015127966180444,0.046385996043682,0.0016789817018434],[-0.094288058578968,-0.025866448879242,-0.0062768659554422]],[[0.049918286502361,0.028587318956852,0.051270481199026],[0.070526711642742,-0.066023834049702,-0.087717555463314],[0.060093935579062,0.043432578444481,-0.057864457368851]],[[-0.04972430691123,-0.010502586141229,-0.030642438679934],[0.0085896570235491,-0.0065756067633629,-0.0020066511351615],[-0.11730450391769,-0.021044002845883,0.060602907091379]],[[0.028933584690094,-0.019897058606148,0.083322688937187],[0.10735850036144,0.015005790628493,-0.0083032427355647],[-0.058763347566128,0.058869898319244,0.047853216528893]],[[-0.037114594131708,-0.074173249304295,-0.0033406072761863],[0.034212302416563,0.036013185977936,0.046553868800402],[0.062812112271786,-0.009347596205771,0.10697208344936]],[[-0.02300794236362,0.12726107239723,0.111447699368],[0.022691054269671,-0.060522314161062,-0.096387669444084],[0.014901982620358,0.034144755452871,-0.060578297823668]],[[-0.017997989431024,0.053835533559322,-0.032765220850706],[0.050582565367222,-0.080628588795662,-0.03109042160213],[0.11473075300455,0.036255050450563,-0.10488947480917]],[[-0.12269654870033,0.0049324538558722,-0.0067189568653703],[-0.039331030100584,0.072281010448933,0.013853176496923],[0.038474414497614,-0.018353134393692,0.021068898960948]],[[-0.050246227532625,0.014119626954198,0.012485833838582],[0.045869439840317,-0.00080705841537565,0.03148677572608],[0.041470620781183,-0.037753004580736,-0.025382148101926]],[[0.012736554257572,0.0069009973667562,-0.052508998662233],[-0.061780598014593,-0.078419268131256,-0.074540361762047],[0.046999715268612,0.049047619104385,-0.18863289058208]],[[0.062801294028759,0.042114544659853,0.11490259319544],[0.051106963306665,-0.045867800712585,0.054597213864326],[0.094427354633808,0.11227706074715,-0.15033102035522]],[[0.053485237061977,-0.042595528066158,-0.075980134308338],[0.045840352773666,-0.014527367427945,0.0092836394906044],[0.037714365869761,-0.02764805033803,0.019811673089862]],[[-0.09649994969368,0.075335204601288,-0.10760325938463],[0.096434161067009,0.028610792011023,-0.033862385898829],[-0.016712732613087,-0.015551017597318,0.0060994657687843]],[[-0.056826304644346,-0.039435986429453,-0.024505948647857],[0.094863578677177,0.05719668418169,0.043910168111324],[-0.014945912174881,0.027621693909168,-0.11149306595325]],[[-0.027150539681315,0.046298686414957,-0.030332691967487],[0.016306530684233,-0.06213816255331,-0.017851755023003],[0.027438320219517,0.1036726757884,-0.036217771470547]],[[0.019994789734483,0.084922753274441,0.021625395864248],[-0.14814592897892,-0.016208902001381,0.033033654093742],[0.0022446434013546,-0.073645040392876,0.0014249522937462]]],[[[-0.028560906648636,-0.14010438323021,-0.00030570750823244],[-0.14343349635601,-0.093877509236336,-0.0090056778863072],[-0.060300465673208,-0.084687650203705,-0.11136457324028]],[[0.0051489025354385,0.088356673717499,0.030070381239057],[-0.046737685799599,0.016767544671893,0.023616855964065],[0.032789207994938,-0.017679115757346,0.11458203941584]],[[-0.024924319237471,-0.0046275602653623,-0.058550402522087],[-0.0037030056118965,-0.070160709321499,-0.051431752741337],[0.053434699773788,-0.092080928385258,-0.10681861639023]],[[0.062123946845531,-0.05716186016798,-0.078257814049721],[0.06345871835947,-0.021692285314202,-0.046889800578356],[-0.059409160166979,0.0975596383214,-0.14291670918465]],[[0.099339991807938,0.084831640124321,0.033807866275311],[0.035782624036074,-0.048636540770531,0.051756858825684],[-0.13872310519218,-0.021028222516179,-0.2329275906086]],[[-0.0043667359277606,0.011169351637363,0.013610579073429],[-0.026688694953918,0.062190268188715,0.031962033361197],[-0.045330669730902,-0.082446359097958,-0.091880850493908]],[[-0.078615956008434,0.023142356425524,-0.040161196142435],[-0.034889757633209,-0.090624339878559,-0.0081372493878007],[0.011365559883416,-0.041560396552086,-0.085368506610394]],[[0.03315781056881,-0.04935535043478,0.07942496240139],[-0.043185248970985,0.08011233061552,-0.058682076632977],[0.043965507298708,0.094652257859707,-0.14007626473904]],[[-0.066921919584274,-0.041149873286486,-0.046234004199505],[-0.10767237097025,0.013985469006002,0.017429988831282],[0.030431477352977,0.031087473034859,0.059386190026999]],[[-0.045145593583584,-0.052145395427942,0.076716020703316],[0.021482106298208,-0.037283897399902,0.011119984090328],[-0.028376370668411,0.042525220662355,-0.056736014783382]],[[0.11388695985079,0.018424324691296,-0.042778860777617],[-0.086435548961163,-0.084521025419235,0.040997855365276],[0.037904132157564,-0.050547122955322,-0.038103088736534]],[[0.1206591501832,0.029377914965153,-0.032731804996729],[-0.0015017106197774,-0.092772334814072,-0.032467912882566],[-0.121202647686,0.10127276182175,0.048664931207895]],[[-0.065252214670181,-0.085211597383022,0.047432314604521],[-0.021826311945915,0.038524102419615,0.012709605507553],[-0.075055383145809,-0.058798793703318,0.00051772186998278]],[[0.098937757313251,-0.0020799222402275,-0.026518672704697],[-0.017849564552307,0.022247891873121,-0.081190094351768],[0.090956680476665,0.044347777962685,0.040268253535032]],[[-0.021056341007352,0.046330362558365,-0.081125430762768],[-0.075856357812881,-0.021840892732143,-0.011773674748838],[0.033215794712305,-0.040220282971859,-0.0052820108830929]],[[-0.013885416090488,-0.0026143109425902,0.042384795844555],[-0.0065272059291601,-0.071841336786747,0.036897085607052],[-0.042736142873764,-0.0068193525075912,-0.037887550890446]],[[0.046758681535721,0.013135060667992,0.018430657684803],[0.047049347311258,-0.041131179779768,-0.065988294780254],[-0.06696479767561,0.0052835685200989,-0.046250812709332]],[[0.080168843269348,-0.088034182786942,-0.02120709605515],[-0.05488670244813,0.039264731109142,-0.041528925299644],[0.057497967034578,-0.052535895258188,0.096283353865147]],[[0.00024043566372711,-0.095603689551353,0.041064143180847],[0.019733063876629,0.040881995111704,-0.01680988445878],[-0.039838101714849,0.014447160065174,-0.0065904813818634]],[[0.042770512402058,-0.034203968942165,0.0047788042575121],[0.040041092783213,-0.023519041016698,-0.06696168333292],[-0.01136889308691,0.022161526605487,0.033423908054829]],[[-0.0044649192132056,0.038056336343288,-0.00078917155042291],[0.0012577807065099,0.012037727981806,-0.01133612729609],[-0.031732182949781,-0.022761410102248,-0.028987620025873]],[[0.094473280012608,-0.068753980100155,-0.048580318689346],[-0.060036346316338,0.058943655341864,-0.13661375641823],[-0.049786575138569,0.0095547568053007,-0.062646627426147]],[[-0.0013138636713848,0.03216877579689,0.024164937436581],[-0.055103652179241,-0.075644366443157,0.020469304174185],[-0.099281892180443,-0.029236279428005,0.092215418815613]],[[0.021314000710845,-0.058750241994858,0.25075531005859],[0.13428342342377,-0.036260902881622,0.16123677790165],[-0.069954693317413,0.048175193369389,0.018332311883569]],[[-0.13487032055855,0.14979958534241,0.163399502635],[0.061076074838638,-0.12226883322001,0.021407390013337],[0.15282902121544,-0.18168376386166,0.073320955038071]],[[0.0065821185708046,-0.012967765331268,-0.00060345104429871],[0.117307536304,0.0057192938402295,0.035040009766817],[0.0027902249712497,-0.0041207047179341,-0.0040369462221861]],[[-0.15440845489502,-0.02468653768301,-0.010632584802806],[-0.12298007309437,0.014605501666665,0.019428817555308],[-0.13598448038101,-0.087598219513893,-0.038658861070871]],[[-0.020507987588644,-0.078168824315071,0.00039280659984797],[-0.0089044813066721,-0.12160456925631,0.087140671908855],[-0.069666311144829,-0.052546191960573,-0.0066644703038037]],[[-0.040461730211973,0.057378780096769,-0.054830368608236],[-0.13276168704033,-0.033962476998568,0.030320340767503],[0.047556776553392,0.008294147439301,0.022650513797998]],[[-0.036766204982996,0.033300988376141,-0.043477818369865],[-0.02060598321259,-0.047351229935884,0.0078018535859883],[0.040085151791573,-0.058005042374134,-0.04365037381649]],[[0.025870325043797,0.0060304044745862,0.010110384784639],[0.037006568163633,0.10348650068045,-0.054785072803497],[-0.089600749313831,0.04015090316534,0.019514011219144]],[[0.081030040979385,-0.01128435973078,-0.044154830276966],[-0.00035380615736358,0.0011230782838538,-0.0091225923970342],[0.054423991590738,0.074783675372601,0.092009149491787]],[[-0.048546750098467,-0.052174311131239,-0.026754455640912],[-0.039999630302191,-0.063113406300545,0.015403904952109],[-0.15137150883675,-0.011543431319296,-0.017309814691544]],[[0.017952151596546,-0.04284156486392,0.016069702804089],[-0.035032644867897,0.11056831479073,-0.23102617263794],[-0.015072481706738,0.13819636404514,0.013045646250248]],[[-0.022711057215929,-0.085388407111168,0.046162512153387],[-0.012134106829762,-0.041448667645454,-0.064271003007889],[-0.046589091420174,0.0069773462601006,-0.070132955908775]],[[0.061321720480919,-0.0086754458025098,0.10298164188862],[0.0035223355516791,-0.060740824788809,0.091437101364136],[0.011755277402699,-0.023331258445978,-0.0015882863663137]],[[9.9185243016109e-05,-0.046067107468843,0.065750099718571],[-0.06754694133997,0.074442707002163,0.0017994720255956],[-0.10136329382658,-0.013004232198,-0.042035911232233]],[[0.063659660518169,-0.051497261971235,0.029359392821789],[0.043624799698591,-0.11458610743284,0.11353830993176],[0.069712467491627,-0.10057051479816,0.019156066700816]],[[0.037959706038237,-0.18360698223114,0.059945080429316],[0.0732097402215,-0.035395067185163,-0.0773950740695],[0.022101940587163,-0.0081199305132031,0.27422386407852]],[[-0.098997227847576,-0.1165808364749,-0.10451731830835],[-0.039749324321747,-0.044149432331324,-0.034207981079817],[0.10146689414978,-0.011911375448108,-0.02094417065382]],[[0.026931630447507,0.017333664000034,-0.042411349713802],[-0.096908092498779,-0.089582331478596,0.046405669301748],[-0.10752179473639,-0.10015124827623,0.07268051803112]],[[-0.041063591837883,-0.19380223751068,0.093484580516815],[-0.018921013921499,0.029133461415768,-0.13987289369106],[-0.08377031981945,0.021753003820777,0.15400038659573]],[[0.069689460098743,0.0063227494247258,-0.066676884889603],[-0.060078479349613,0.099412374198437,-0.038600090891123],[-0.056757058948278,-0.033253829926252,0.021969575434923]],[[-0.076124973595142,0.057377312332392,-0.050810504704714],[-0.015116857364774,0.044991504400969,-0.032621331512928],[0.049184162169695,-0.020161146298051,0.032781228423119]],[[0.019746668636799,-0.045438770204782,0.04575376957655],[0.0091202994808555,-0.082538560032845,0.043803788721561],[-0.053958289325237,-0.040897160768509,0.078712306916714]],[[0.027610609307885,0.038350410759449,-0.038290001451969],[0.039751801639795,-0.033890150487423,0.0055749616585672],[-0.0012002201983705,-0.0054425434209406,0.042186882346869]],[[-0.051972381770611,-0.044592436403036,0.024203548207879],[-0.013907150365412,-0.050823554396629,0.054455630481243],[-0.14654314517975,0.025179130956531,-0.060757126659155]],[[0.012002855539322,-0.011508772149682,-0.078655377030373],[0.056215547025204,-0.060085777193308,-0.081076227128506],[0.058189775794744,0.058054655790329,-0.07243163138628]],[[0.051293902099133,0.044480558484793,-0.11336547136307],[-0.060063805431128,0.032301645725965,-0.1302879601717],[0.10901086777449,0.0052012945525348,0.095903731882572]],[[-0.15890729427338,0.031345445662737,0.043758179992437],[0.1157625541091,-0.10392337292433,0.077209159731865],[0.090088732540607,-0.084062486886978,-0.077060304582119]],[[-0.10831588506699,-0.052174896001816,-0.09199009090662],[0.06387285888195,-0.034430544823408,-0.0013473525177687],[0.010387942194939,-0.057717025279999,-0.058459531515837]],[[0.022556621581316,-0.081292316317558,-0.001689832075499],[-0.044955551624298,0.092922791838646,0.1507730782032],[0.034253511577845,-0.031923905014992,0.11210039258003]],[[-0.10282456129789,0.027157029137015,-0.14427657425404],[-0.065291330218315,-0.033702250570059,-0.12433943152428],[0.076617754995823,-0.12616477906704,0.016555942595005]],[[0.20639617741108,-0.031301081180573,-0.041965156793594],[0.019299499690533,-0.016031259670854,-0.024825086817145],[-0.08407223969698,-0.096948906779289,0.10482275485992]],[[-0.050561137497425,-0.043168395757675,0.015307472087443],[-0.021603990346193,0.035266853868961,0.0036143970210105],[-0.034090034663677,-0.061652440577745,0.068291202187538]],[[0.048666037619114,0.013640593737364,0.064847148954868],[-0.014236119575799,-0.050570655614138,0.050667516887188],[0.015413908287883,0.04845704883337,-0.0036272676661611]],[[-0.037109095603228,0.041375163942575,0.00088787829736248],[-0.0063013369217515,0.022074265405536,0.055470921099186],[0.004464153200388,0.012322708033025,-0.037116032093763]],[[-0.0039262813515961,-0.025339055806398,0.0017288215458393],[0.04963232204318,-0.069005012512207,-0.052648771554232],[-0.058679558336735,-0.056163001805544,-0.063172325491905]],[[-0.14765663444996,-0.05683571472764,-0.027736015617847],[-0.088897570967674,0.033310703933239,0.0071398010477424],[0.0046431426890194,0.035330306738615,0.088175192475319]],[[-0.024790808558464,0.076780639588833,-0.015503254719079],[-0.025656023994088,-0.0028046027291566,0.044516824185848],[-0.019535152241588,-0.020615046843886,-0.0044655469246209]],[[-0.030784489586949,0.033966220915318,-0.010772399604321],[0.0069057950749993,-0.10593272745609,0.11911376565695],[0.067291125655174,-0.12626470625401,0.025222821161151]],[[0.0215112734586,0.1261642575264,0.12643013894558],[0.069369591772556,-0.03795986995101,-0.086523361504078],[0.0075545692816377,-0.010214022360742,-0.10061574727297]],[[0.037602253258228,-0.038054201751947,-0.086355283856392],[0.054810114204884,-0.0014552340144292,0.0017474625492468],[-0.023568823933601,-0.0040453495457768,-0.13551059365273]],[[0.10678955167532,0.037839356809855,0.028855130076408],[-0.068877495825291,-0.044002894312143,0.097707338631153],[-0.021233243867755,0.0078598828986287,-0.060685217380524]]],[[[0.034503351897001,0.02609614469111,-0.093840315937996],[-0.020125718787313,0.018606618046761,-0.0011419743532315],[-0.080608390271664,0.01813081279397,0.032553251832724]],[[0.035650581121445,0.046338692307472,0.058776747435331],[0.0066034398041666,0.049023151397705,0.096969962120056],[-0.059013236314058,-0.016734967008233,-0.035529926419258]],[[-0.01391332782805,-0.070233821868896,-0.029931381344795],[0.006038520950824,0.048466052860022,-0.10698192566633],[0.011639538221061,-0.10657722502947,-0.010922865010798]],[[0.044108103960752,-0.023400777950883,-0.049067601561546],[0.021827047690749,0.038575861603022,-0.026951303705573],[0.066371232271194,-0.0052662799134851,-0.056048877537251]],[[-0.03546005487442,-0.049589354544878,-0.10480330884457],[0.020007638260722,0.016337348148227,0.0099506257101893],[0.0039387349970639,0.022309072315693,0.019658578559756]],[[0.082835763692856,-0.0076542790047824,0.0015572055708617],[-0.028849691152573,0.096474260091782,0.13024608790874],[-0.095499739050865,-0.14601102471352,0.019292175769806]],[[-0.0042583518661559,-0.0035052536986768,0.0069521339610219],[0.059098072350025,0.12532925605774,0.023948473855853],[-0.062091376632452,0.0089885517954826,0.072921842336655]],[[-0.016366137191653,-0.027694413438439,0.057280216366053],[-0.053875751793385,-0.061488829553127,0.049704395234585],[-0.015057053416967,0.029997518286109,0.046274181455374]],[[0.0041112038306892,0.035998146981001,-0.021166753023863],[-0.041967812925577,0.0047631822526455,0.029606828466058],[-0.030406627804041,0.006118263117969,0.0087056905031204]],[[0.024672284722328,-0.0045518735423684,-0.0037344372831285],[-0.015624365769327,0.040499795228243,-0.0042899628169835],[-0.026362841948867,0.00037736716330983,-0.0029185004532337]],[[0.0165651217103,-0.02220655977726,-0.066407576203346],[-0.064897090196609,-0.015495689585805,0.0073025720193982],[0.015593430027366,-0.065761707723141,0.0083888983353972]],[[-0.026010923087597,-0.0089874546974897,-0.048066534101963],[0.024620538577437,0.10887728631496,0.013155702501535],[-0.047993652522564,0.0047798557206988,-0.050036154687405]],[[-0.016304237768054,-0.039226099848747,-0.0086741810664535],[0.11147885024548,0.079708896577358,0.0015159088652581],[0.0030704333912581,0.045295249670744,5.2754963689949e-05]],[[0.042255010455847,-0.014694573357701,0.046688884496689],[0.0037842632737011,0.015677666291595,0.020586937665939],[-0.042539171874523,0.0028719559777528,-0.0081371814012527]],[[-0.057546675205231,0.031427513808012,0.021998632699251],[-0.019310412928462,-0.025463620200753,0.0061250817961991],[-0.054999958723783,-0.058764606714249,-0.019332883879542]],[[-0.022776335477829,-0.06828960031271,0.077838912606239],[-0.042401093989611,0.11913794279099,0.0038195517845452],[-0.066469930112362,0.050915900617838,0.019699193537235]],[[-0.014232388697565,0.038941234350204,-0.021654937416315],[-0.0017683915793896,-0.032682560384274,-0.023013515397906],[0.10856931656599,0.007494353223592,-0.0027170763351023]],[[-0.028493456542492,0.073770545423031,-0.013594556599855],[-0.022365819662809,-0.033078625798225,-0.057834204286337],[-0.0010639945976436,-0.034536104649305,-0.0055568525567651]],[[-0.057836625725031,-0.082035422325134,0.038644976913929],[-0.027176326140761,-0.012942095287144,-0.031217407435179],[0.068086743354797,-0.041707690805197,-0.042494382709265]],[[-0.004068159032613,0.0015389415202662,0.012357569299638],[-0.064587146043777,0.0018457914702594,0.069260634481907],[-0.02396727912128,0.04665344953537,-0.020390206947923]],[[0.019785342738032,0.01078441273421,-0.017604375258088],[-0.020216191187501,-0.11829101294279,0.076617956161499],[-0.075514405965805,-0.051877770572901,-0.026890123263001]],[[-0.0072358977049589,0.0088217025622725,0.061489250510931],[-0.027789793908596,0.15788426995277,0.043341919779778],[0.151960298419,-0.040595594793558,-0.019056394696236]],[[-0.0045156232081354,0.02100913412869,-0.074050709605217],[-0.0018570257816464,-0.090435959398746,-0.02603062428534],[-0.0061441529542208,-0.0090059898793697,0.046762477606535]],[[-0.068033702671528,0.082112573087215,0.12687414884567],[-0.073038972914219,-0.0032969857566059,0.13056002557278],[0.045210026204586,0.032119806855917,0.13246177136898]],[[-0.130521312356,-0.072703786194324,-0.024284625425935],[0.059845525771379,-0.051163904368877,-0.086586348712444],[0.015243898145854,-0.021617008373141,-0.0053334650583565]],[[-0.054247993975878,-0.055264517664909,-0.034356564283371],[-0.011267816647887,0.016247199848294,0.030127707868814],[0.028502229601145,0.11866845190525,-0.0015216937754303]],[[-0.044694911688566,0.062561467289925,0.12341240793467],[-0.056512851268053,0.11438988894224,0.045318838208914],[0.0042749824933708,-0.044155653566122,0.012023022398353]],[[-0.020187167450786,0.034933846443892,-0.041142556816339],[0.025005329400301,0.027093017473817,0.041098117828369],[0.015893777832389,-0.0064605898223817,-0.081111088395119]],[[-0.0021552043035626,0.023297483101487,-0.015774158760905],[0.0080697741359472,-0.032914910465479,-0.060433235019445],[-0.031298883259296,-0.063434168696404,0.048854827880859]],[[-0.021251127123833,0.088917329907417,0.060811046510935],[-0.037619158625603,-0.0048780366778374,0.037485174834728],[0.016891356557608,0.0037852313835174,-0.043372113257647]],[[0.017697812989354,-0.028717188164592,-0.045823398977518],[-0.083088658750057,-0.061294928193092,0.083743013441563],[-0.053266063332558,-0.036015637218952,0.011390086263418]],[[-0.047372438013554,-0.031066823750734,-0.0083179278299212],[-0.019642375409603,-0.024381276220083,-0.017288217321038],[0.073533996939659,-0.025659844279289,-0.0017395601607859]],[[0.0087708942592144,0.011249735951424,-0.00073827995220199],[0.0054391482844949,-0.076685644686222,-0.0081387655809522],[-0.010827026329935,-0.02161007001996,-0.0033663860522211]],[[0.036032542586327,-0.02056279964745,-0.054231241345406],[0.0051500801928341,-0.012304903008044,0.016680799424648],[0.070660434663296,0.01266273856163,0.037844721227884]],[[0.066526807844639,0.094007052481174,-0.0099270204082131],[0.0053717927075922,0.00039519355050288,-0.055879909545183],[-0.073188483715057,-0.034783575683832,0.068431101739407]],[[-0.058705925941467,0.060340650379658,0.026181930676103],[0.0038977761287242,-0.057708721607924,-0.0083337789401412],[0.021598713472486,0.063267469406128,0.033351577818394]],[[-0.015482960268855,-0.026775322854519,-0.024512538686395],[-0.0031631574966013,-0.039066579192877,0.0062866420485079],[-0.014310947619379,-0.048076648265123,-0.03209712356329]],[[-0.016533916816115,0.067837990820408,-0.060669559985399],[0.0083951950073242,0.01566562242806,-0.021676635369658],[-0.085320539772511,-0.033723291009665,0.020073711872101]],[[0.018202589824796,0.0085093285888433,-0.13300587236881],[0.042918622493744,0.0028526918031275,-0.054517574608326],[-0.012280930764973,0.011920022778213,-0.052700195461512]],[[0.015392262488604,-0.094494007527828,-0.09549905359745],[-0.013645831495523,-0.0087654832750559,-0.085093580186367],[0.069981463253498,-0.040855061262846,-0.050559315830469]],[[-0.011575754731894,-0.0097764944657683,0.018852930516005],[0.028985325247049,-0.041165828704834,-0.034489769488573],[-0.0045511247590184,-0.037002354860306,-0.038817774504423]],[[0.038172300904989,-0.040159743279219,-0.051467433571815],[-0.050473995506763,0.082096517086029,0.041456192731857],[-0.052504997700453,-0.065024584531784,-0.041225794702768]],[[0.0094805164262652,-0.0064577930606902,0.046892881393433],[-0.037062920629978,0.052645169198513,-0.034770078957081],[-0.00015638004697394,0.0247807148844,-0.019992737099528]],[[-0.0081537654623389,0.039168648421764,-0.05698849260807],[-0.026788886636496,0.018195983022451,0.019576547667384],[-0.043769165873528,0.048972904682159,-0.0069529665634036]],[[-0.024542890489101,-0.034440092742443,0.044545106589794],[0.10129434615374,-0.058563437312841,-0.085515931248665],[0.12925843894482,-0.034323409199715,-0.034222826361656]],[[-0.030453758314252,-0.033201143145561,0.0027356341015548],[-0.024601517245173,-0.05014580860734,-0.024877529591322],[-0.025017503648996,-0.083301283419132,0.036353424191475]],[[-0.023470513522625,0.086922168731689,0.064287170767784],[0.048829726874828,0.055650051683187,0.054090145975351],[-0.027100192382932,-0.066872343420982,0.012542481534183]],[[-0.077685512602329,0.019756173714995,-0.0072853513993323],[-0.0016813629772514,-0.038296010345221,0.12574279308319],[-0.014311517588794,-0.0072695324197412,0.10476066172123]],[[-0.035166781395674,0.015510159544647,0.026057215407491],[0.01036611944437,0.029644334688783,-0.042695716023445],[0.070747353136539,0.027430670335889,-0.076878637075424]],[[-0.071670860052109,-0.036244932562113,-0.048667013645172],[0.013221836648881,0.048399236053228,0.029796697199345],[0.069183595478535,-0.091805145144463,-0.05153001844883]],[[-0.035627067089081,0.013787370175123,0.035896416753531],[0.062666803598404,0.091874212026596,-0.053797051310539],[-0.16320623457432,-0.015012875199318,-0.1029449030757]],[[-0.045131850987673,-0.041030716150999,-0.092702247202396],[0.0070745125412941,0.059096548706293,0.10032091289759],[0.016135467216372,0.026652548462152,0.12631660699844]],[[0.073561042547226,-0.015851680189371,-0.0059194690547884],[-0.056053943932056,-0.093984864652157,0.042990658432245],[-0.059519708156586,0.0074500772170722,-0.026157639920712]],[[-0.052053704857826,0.025369375944138,0.053930141031742],[0.0086902249604464,0.0083931302651763,0.041561029851437],[-0.10969170182943,0.065563954412937,0.0035666848998517]],[[-0.010718648321927,-0.012441139668226,0.0029343352653086],[-0.048587176948786,0.031059777364135,0.0057901050895452],[0.004320677369833,0.011439308524132,-0.032052654772997]],[[0.012172772549093,0.019271859899163,0.030808771029115],[-0.015813160687685,0.02959343418479,0.026633577421308],[-0.0081228604540229,0.076675318181515,0.069793626666069]],[[0.060443866997957,-0.0065276678651571,-0.01380770187825],[-0.050699602812529,-0.046395283192396,0.051458578556776],[0.045554187148809,-0.056226972490549,0.081053882837296]],[[0.0025767923798412,0.024285856634378,0.015421474352479],[-0.057874798774719,-0.071809202432632,-0.0043813125230372],[-0.001439239596948,0.027985801920295,-0.11647982150316]],[[0.023102466017008,0.050902519375086,-0.015419276431203],[-0.069562524557114,-0.018809845671058,0.066624246537685],[0.1372352540493,0.023602491244674,0.017277095466852]],[[-0.016225226223469,0.014369403943419,0.016134230419993],[0.035941954702139,-0.044143967330456,-0.020831253379583],[0.012573157437146,0.031665295362473,-0.02109282836318]],[[-0.017898438498378,0.0074392906390131,-0.0052351038902998],[0.039163898676634,0.035373587161303,-0.036612093448639],[-0.087505109608173,-0.041206080466509,-0.011558316648006]],[[-0.051881961524487,0.0069887563586235,0.024481421336532],[-0.0080776270478964,-0.006000405177474,0.039827037602663],[0.043547067791224,0.096085205674171,0.025060748681426]],[[-0.085573017597198,0.052844379097223,-0.018873268738389],[-0.026947990059853,0.060735769569874,0.056180600076914],[-0.046752348542213,-0.0021131131798029,-0.02600103802979]],[[-0.072303093969822,-0.026848865672946,0.045326631516218],[0.048930432647467,0.02059967815876,0.030743803828955],[0.036264427006245,0.010701126419008,-0.035852946341038]]],[[[0.0025346849579364,0.12531195580959,-0.019867917522788],[0.033155094832182,-0.036203596740961,-0.020643889904022],[-0.013540036045015,-0.0062249517068267,-0.040923297405243]],[[-0.062907196581364,-0.047432251274586,-0.093202456831932],[-0.087317600846291,0.07900196313858,-0.028639860451221],[-0.082765378057957,-0.055623266845942,-0.067136541008949]],[[-0.026336500421166,0.034010130912066,0.036372385919094],[0.038866307586432,0.096755661070347,0.031248351559043],[-0.023678738623857,-0.012145853601396,0.10254043340683]],[[-0.038161303848028,0.047169227153063,-0.11447371542454],[0.01271032076329,-0.060007221996784,-0.075512707233429],[-0.13392226397991,0.0068589695729315,0.019621329382062]],[[-0.052615977823734,-0.032311424612999,0.026451861485839],[0.03536494076252,0.047109585255384,-0.018760548904538],[-0.10637363046408,0.0013704334851354,0.057508811354637]],[[-0.004393826238811,-0.037802845239639,0.034201212227345],[0.0099721746519208,0.093852907419205,0.00319664622657],[-0.023442078381777,0.038494631648064,-0.014402301982045]],[[0.016748242080212,0.1072501167655,-0.017858656123281],[0.033106796443462,-0.041917365044355,-0.055419091135263],[-0.078588150441647,0.059921573847532,0.054625455290079]],[[-0.051331993192434,-0.15128281712532,-0.19094151258469],[-0.085281059145927,-0.11648339033127,-0.10720187425613],[0.072618566453457,-0.098809376358986,-0.085627011954784]],[[0.042835012078285,0.036900822073221,0.069661401212215],[-0.015484078787267,0.17474713921547,-0.069536924362183],[-0.038113672286272,0.058893002569675,-0.011819051578641]],[[-0.021847495809197,-0.028158165514469,-0.012337985448539],[0.019652122631669,0.060857489705086,-0.019322680309415],[0.060551706701517,0.026730861514807,-0.089556716382504]],[[-0.0072698355652392,0.030635109171271,-0.043670024722815],[-0.021367164328694,-0.031371932476759,-0.0073942979797721],[-0.013704347424209,-0.03482186421752,-0.055310074239969]],[[0.035574518144131,0.036581370979548,-0.035331893712282],[-0.093442186713219,0.16068856418133,0.11419473588467],[0.0053815580904484,0.060361906886101,-0.020627135410905]],[[0.039844498038292,0.099765233695507,0.041654493659735],[-0.038236681371927,-0.0041060578078032,-0.12443880736828],[0.01234335731715,0.01568765938282,0.074429281055927]],[[0.084080599248409,0.075737275183201,-0.08823461830616],[0.041288215667009,-0.0082855140790343,-0.068040683865547],[0.048842266201973,0.039744671434164,-0.076395347714424]],[[-0.049326311796904,-0.031210940331221,0.05168142542243],[0.032803699374199,-0.20644611120224,-0.04757721349597],[0.10022830963135,-0.090121813118458,0.031062509864569]],[[0.0021713050082326,0.2620587348938,-0.064716480672359],[0.026760432869196,0.022355034947395,-0.057001691311598],[0.040094863623381,-0.00660181324929,0.0071320938877761]],[[0.044968105852604,0.044230621308088,0.011447387747467],[0.080560475587845,-0.021111538633704,0.067752152681351],[-0.0088797174394131,-0.036628913134336,-0.028368266299367]],[[-0.012388162314892,0.0074398363940418,-0.157320946455],[0.067814350128174,0.015360547229648,-0.090978793799877],[-0.089762911200523,-0.11836414039135,0.0058216447941959]],[[-0.047542601823807,-0.076095640659332,0.017424227669835],[0.085209690034389,-0.065556973218918,-0.11948449909687],[0.033202338963747,0.0014206068590283,-0.045486811548471]],[[0.003269778098911,0.10071557015181,0.042698629200459],[-0.041547689586878,0.027855912223458,0.0074736718088388],[-0.059309422969818,-0.066579416394234,0.0053733661770821]],[[0.034671936184168,-0.11566144227982,-0.064949728548527],[-0.056569512933493,-0.035034969449043,0.083506971597672],[-0.043541464954615,-0.059207819402218,-0.094295263290405]],[[-0.13588500022888,-0.0046123564243317,-0.15781638026237],[0.0012578956084326,-0.014549628831446,4.2896841478068e-05],[0.060916405171156,0.022036857903004,0.067785263061523]],[[0.041634112596512,-0.0036277659237385,-0.0064110602252185],[0.034799836575985,-0.0086404848843813,0.032648243010044],[0.031157532706857,-0.015121369622648,0.011073801666498]],[[0.031078577041626,0.031471315771341,-0.015159338712692],[0.12862507998943,0.02276810631156,0.037053529173136],[0.053043317049742,0.10920446366072,0.034815110266209]],[[0.038206297904253,0.0093706697225571,0.041740465909243],[-0.057889316231012,0.0043584052473307,0.051200740039349],[0.058083925396204,-0.010938731953502,-0.10158134996891]],[[0.070803567767143,0.042419791221619,0.090691931545734],[0.056317158043385,0.035596948117018,0.082697786390781],[0.076018661260605,0.0449886508286,0.065330080688]],[[0.1346523463726,0.043159279972315,0.081545576453209],[0.0039635449647903,0.11058175563812,-0.029275983572006],[-0.054402608424425,-0.029575772583485,-0.00063531077466905]],[[0.031529884785414,0.056056279689074,0.025000989437103],[0.0074859447777271,-0.011102157644928,0.020697135478258],[0.036859761923552,0.000870460877195,-0.018199188634753]],[[0.071941286325455,0.10584929585457,0.069238178431988],[-0.011392279528081,-0.012636749073863,0.015295944176614],[0.038618858903646,0.054519008845091,-0.0055311704054475]],[[-0.071295484900475,-0.054911229759455,0.11488487571478],[-0.056602545082569,-0.04856214299798,-0.058601405471563],[-0.087654024362564,-0.085029155015945,0.040299713611603]],[[-0.06292849779129,-0.014579212293029,0.10329486429691],[0.031770158559084,0.11356611549854,0.0048434790223837],[0.037879016250372,0.061056524515152,-0.0099064409732819]],[[-0.056947890669107,-0.067424461245537,-0.036460012197495],[-0.038278926163912,-0.12010678648949,-0.0012994965072721],[-0.0014197753043845,0.0075070606544614,0.022449791431427]],[[0.02441044151783,0.061997499316931,0.049843192100525],[0.011858010664582,-0.074719175696373,0.018228439614177],[0.090201191604137,0.044373366981745,0.036868877708912]],[[0.053686331957579,-0.017904657870531,-0.019833141937852],[0.022641405463219,0.039655614644289,-0.013552021235228],[-0.013025861233473,-0.084308244287968,0.028388312086463]],[[0.064801499247551,0.047955609858036,0.094611115753651],[0.07093407958746,-0.064171858131886,-0.014144999906421],[-0.067179545760155,-0.031887128949165,0.039375722408295]],[[0.084902718663216,-0.013286394998431,-0.024872405454516],[-0.088433027267456,-0.0019080007914454,0.034285083413124],[-0.087486878037453,0.048594806343317,0.045840911567211]],[[0.076243974268436,0.017706656828523,-0.028470972552896],[0.066405832767487,0.044210702180862,-0.069748885929585],[0.098908849060535,-0.070386365056038,0.023053210228682]],[[-0.072268821299076,0.014178603887558,0.028294455260038],[0.0067074527032673,0.007476108148694,-0.064179688692093],[-0.016590723767877,0.072889648377895,-0.0004759912553709]],[[-0.040440309792757,0.060452714562416,0.0092218928039074],[-0.06793600320816,0.012589615769684,0.0094329798594117],[-0.05169877782464,0.0045447517186403,-0.027886720374227]],[[-0.059836365282536,-0.067506283521652,0.00065117905614898],[0.12739537656307,0.1001693084836,-0.089676454663277],[0.075711876153946,0.056704327464104,0.092441320419312]],[[0.057237070053816,0.070254348218441,0.0068654818460345],[-0.013801914639771,0.10290270298719,0.005183532834053],[-0.04716832190752,-0.04094722121954,-0.015377167612314]],[[0.046887792646885,-0.024729646742344,0.088838696479797],[-0.013775940984488,0.058419920504093,-0.021670237183571],[0.025558318942785,0.080056175589561,-0.05177266895771]],[[0.041369944810867,0.0021388386376202,0.05473855510354],[-0.018868612125516,0.039168525487185,-0.0023581027053297],[-0.087633036077023,-0.055794455111027,-0.02252671122551]],[[0.022395398467779,0.11070311069489,0.058455862104893],[-0.042069640010595,-0.034660831093788,0.025886785238981],[0.077610649168491,0.042232152074575,0.01634500361979]],[[0.078812539577484,0.036463849246502,0.016647094860673],[0.001542703830637,-0.088048778474331,0.084096550941467],[0.036289434880018,-0.014627818949521,-0.029439000412822]],[[-0.019872372969985,0.0062579857185483,0.091790966689587],[0.020062448456883,-0.011958032846451,-0.12588348984718],[0.020352968946099,0.048357412219048,0.067815162241459]],[[0.022895954549313,0.030681567266583,-0.0079186139628291],[-0.056432325392962,-0.046635705977678,0.050579003989697],[-0.025472434237599,0.080196470022202,0.038309760391712]],[[0.057579431682825,0.060666501522064,-0.032123770564795],[-0.026663782075047,-0.050919327884912,0.1110365614295],[-0.011482779867947,-0.1548680216074,-0.13330768048763]],[[0.02581843547523,-0.02477154135704,0.046147707849741],[0.09490442276001,0.081535279750824,0.040906216949224],[0.011817364022136,0.0042138271965086,-0.038620308041573]],[[0.090651616454124,-0.15474881231785,-0.048091366887093],[0.040825061500072,0.040218945592642,0.10904075205326],[0.069452151656151,0.049969669431448,-0.021704247221351]],[[-0.083348877727985,-0.064910389482975,-0.040873195976019],[-0.12081134319305,-0.046651653945446,-0.058630097657442],[0.098216272890568,-0.0038310384843498,-0.021141847595572]],[[0.046134326606989,0.06159757822752,0.094484061002731],[0.034295659512281,-0.018391910940409,0.11929093301296],[0.068034432828426,0.0046687386929989,0.057918537408113]],[[-0.017952855676413,0.062070649117231,-0.12641090154648],[-0.076577335596085,-0.05875101685524,-0.059468995779753],[-0.13892735540867,-0.05351236090064,-0.0087591074407101]],[[0.075478211045265,0.040136881172657,-0.013700004667044],[-0.010905719362199,0.0049738166853786,-0.093056052923203],[-0.029107941314578,-0.045609477907419,-0.014762936159968]],[[0.02836687117815,-0.050277806818485,-0.038961734622717],[0.0256401989609,-0.0082164090126753,0.025857845321298],[0.016147160902619,-0.064899682998657,0.0084976432844996]],[[0.05890654399991,-0.030652433633804,0.033307630568743],[0.0096659203991294,-0.094527751207352,0.038259003311396],[-0.0047235609963536,0.007529707159847,0.010818808339536]],[[-0.12228194624186,0.036428090184927,-0.095175892114639],[-0.027837155386806,0.030369125306606,0.023137280717492],[0.018743736669421,0.049303233623505,-0.02431365288794]],[[0.010189581662416,-0.015557829290628,0.045835576951504],[-0.11088038980961,0.086346477270126,-0.024635899811983],[0.028925474733114,0.0044663497246802,0.015393558889627]],[[-0.0070658260956407,-0.02524515427649,0.09425737708807],[0.081449568271637,0.030076248571277,0.11196542531252],[0.028334051370621,0.041479576379061,0.078947961330414]],[[0.0017826423281804,-0.01690367795527,-0.072651363909245],[0.038075167685747,0.08746824413538,0.01437225099653],[0.0005336741451174,-0.00094543152954429,-0.023202773183584]],[[0.035677827894688,0.044206354767084,-0.03844216093421],[-0.027559421956539,-0.098706841468811,0.021758621558547],[0.011808943934739,-0.034009408205748,-0.072089917957783]],[[-0.066332772374153,-0.018913682550192,-0.036632027477026],[-0.15417738258839,-0.085514180362225,0.13595680892467],[-0.031628407537937,0.084666237235069,0.13217379152775]],[[-0.0066790459677577,0.00068165955599397,-0.014857864938676],[0.0059763258323073,-0.067525573074818,0.01713771186769],[0.082734137773514,0.02850634790957,0.12868073582649]],[[0.031011439859867,0.11890867352486,0.061183948069811],[0.055605933070183,0.13966038823128,0.052821107208729],[0.02516920492053,0.057100377976894,0.076242282986641]]],[[[-0.11142094433308,-0.14418108761311,0.018059490248561],[-0.040671411901712,-0.10709321498871,-0.0071833655238152],[-0.041723787784576,-0.06711270660162,0.041957594454288]],[[0.079548127949238,0.076002568006516,0.0053839264437556],[-0.0065017803572118,0.07722595334053,-0.049799013882875],[-0.037123672664165,-0.0080988714471459,0.028260165825486]],[[-0.0033815992064774,-0.028272941708565,-0.1578434407711],[0.064853057265282,-0.082438260316849,-0.16041176021099],[0.067436061799526,0.013053089380264,-0.010480873286724]],[[0.010708374902606,-0.0026154187507927,-0.092386178672314],[0.13340598344803,-0.031156746670604,-0.11756460368633],[0.08438528329134,-0.012886600568891,-0.18597221374512]],[[-0.13798207044601,-0.064960390329361,-0.013309028930962],[-0.049054205417633,-0.012302630580962,-0.040361572057009],[-0.026439426466823,0.078867867588997,0.045086972415447]],[[0.0054758698679507,-0.013239085674286,-0.011017403565347],[0.041082061827183,0.021589485928416,-0.039539083838463],[0.0099648693576455,-0.061421524733305,-0.0076023265719414]],[[0.11093382537365,-0.18165993690491,-0.018608575686812],[-0.12441597133875,-0.12265042215586,-0.057094261050224],[-0.10271157324314,-0.049107275903225,-0.010307633318007]],[[-0.10679140686989,0.0071614095941186,-0.0094113619998097],[-0.00079166173236445,0.069048658013344,-0.019186049699783],[-0.11668998748064,-0.062023967504501,0.083496958017349]],[[0.0080529358237982,-0.17976066470146,0.0075592291541398],[0.056228164583445,-0.0922681838274,0.050670780241489],[-0.089154727756977,-0.035385355353355,0.088184259831905]],[[-0.099988624453545,-0.073199570178986,-0.15657731890678],[-0.043920654803514,0.039242010563612,-0.029063422232866],[-0.030154874548316,0.02722555398941,-0.027258455753326]],[[-0.045212645083666,-0.085655070841312,0.065291777253151],[-0.037673462182283,-0.060351636260748,-0.014534561894834],[-0.040869019925594,0.053695276379585,0.0010000645415857]],[[-0.27679014205933,-0.22700780630112,0.0033863300923258],[-0.068697042763233,-0.14800177514553,-0.0060459510423243],[-0.10304965823889,-0.10853406041861,0.0090256845578551]],[[-0.0079289833083749,0.0059094438329339,-0.016809338703752],[-0.034987241029739,0.11268524080515,0.073333889245987],[-0.06991008669138,0.019670035690069,0.013370194472373]],[[-0.10236393660307,0.066520445048809,0.089351803064346],[-0.011170189827681,0.029955556616187,0.043319601565599],[-0.043712731450796,-0.011083239689469,-0.042304486036301]],[[0.022071124985814,0.035124808549881,-0.075613103806973],[0.024962391704321,-0.019698414951563,-0.030823210254312],[-0.027179110795259,-0.094004422426224,-0.096400693058968]],[[0.016030425205827,0.064491756260395,0.07695721834898],[0.11412560194731,-0.0078252563253045,-0.069758251309395],[0.0071457712911069,-0.042146079242229,-0.13348114490509]],[[0.070264264941216,0.0086679803207517,-0.10730254650116],[-0.0075401202775538,-0.085500694811344,0.0069922478869557],[0.079404525458813,0.060600414872169,0.016050599515438]],[[0.0019419777672738,-0.063229642808437,-0.033888444304466],[0.03859493508935,-0.063728883862495,-0.045770186930895],[0.085506908595562,0.011027254164219,-0.029312012717128]],[[-0.034516323357821,-0.042157780379057,-0.0080707622691989],[-0.086670689284801,-0.0091740600764751,0.013446846045554],[0.017603600397706,-0.017247082665563,-0.003894176799804]],[[0.075102023780346,0.050524193793535,-0.074937790632248],[-0.010521247051656,0.027179138734937,-0.047733534127474],[0.022100582718849,-0.0094410348683596,-0.0076430030167103]],[[-0.1388206332922,-0.054555777460337,0.12671776115894],[-0.087051369249821,-0.010013177059591,0.10297363251448],[-0.074202232062817,0.0053946492262185,0.0072168903425336]],[[-0.073138520121574,0.047408547252417,-0.037632752209902],[-0.012156967073679,0.020819775760174,0.026043903082609],[0.014720969833434,-0.13733923435211,0.051857847720385]],[[-0.070546329021454,0.032323036342859,0.05767560377717],[-0.098161913454533,0.025704441592097,0.015847813338041],[0.048529524356127,-0.036944836378098,0.1143451333046]],[[0.33127105236053,0.17854386568069,-0.025260642170906],[0.1505604237318,0.16264763474464,0.01016206946224],[0.20472592115402,0.039482709020376,-0.05465754121542]],[[-0.068018265068531,-0.0076312744058669,0.081190533936024],[-0.048998825252056,-0.035309087485075,-0.1142156869173],[-0.13124850392342,-0.099905453622341,0.01134133245796]],[[0.0086082126945257,-0.013184205628932,-0.026899786666036],[0.066111318767071,0.075838483870029,0.00044175086077303],[0.0043295039795339,0.039462126791477,-0.01221255864948]],[[-0.068259797990322,-0.18433122336864,-0.03851392865181],[-0.038030046969652,-0.10042807459831,-0.043896067887545],[0.0058823539875448,0.080653667449951,0.041949197649956]],[[0.031498625874519,-0.0077936756424606,0.023937599733472],[-0.0050924904644489,-0.085191480815411,0.050917141139507],[-0.049208637326956,-0.028269002214074,-0.04593413323164]],[[0.014487783424556,-0.10713607817888,-0.064542360603809],[0.031211832538247,-0.14566576480865,-0.020709557458758],[-0.053407415747643,-0.1121032834053,-0.0060266433283687]],[[-0.18462482094765,-0.10475819557905,-0.0080216750502586],[-0.11708003282547,0.029667383059859,-0.11686058342457],[0.0046866317279637,-0.013413581065834,-0.00019079835328739]],[[-0.027017015963793,0.10431163012981,-0.007259919308126],[-0.011733325198293,-0.1660284101963,-0.02297061868012],[-0.0017467237776145,0.16313368082047,-0.11215867102146]],[[-0.083351835608482,-0.14962376654148,0.023094281554222],[0.012643459253013,-0.17774932086468,0.10155966877937],[0.093154042959213,0.04983026906848,0.14653703570366]],[[0.070511147379875,-0.071503072977066,-0.0019301695283502],[0.0075222826562822,-0.01520377676934,-0.05211241915822],[0.030034044757485,-0.006051417440176,-0.024548599496484]],[[-0.093727111816406,-0.042692970484495,0.011120609939098],[0.016598228365183,0.073612667620182,0.093747355043888],[-0.077869929373264,-0.061159003525972,0.042470075190067]],[[-0.015304479748011,0.045589976012707,-0.058485221117735],[-0.13550263643265,-0.068952471017838,-0.0030686638783664],[0.079334445297718,0.0061841649003327,0.0079055232927203]],[[-0.019355518743396,-0.073307834565639,0.039457965642214],[0.052692074328661,0.001958561129868,0.0013509835116565],[0.017839496955276,-0.0057520023547113,-0.0062505854293704]],[[0.062161568552256,-0.045556049793959,0.010487001389265],[0.029451232403517,0.023908168077469,-0.0031038238666952],[0.082123458385468,-0.12737299501896,0.021641083061695]],[[0.020003262907267,0.049579884856939,0.032815281301737],[-0.17032705247402,-0.031849958002567,-0.071467667818069],[0.079298280179501,0.099531032145023,0.018564533442259]],[[0.093742877244949,0.16580240428448,-0.03513141721487],[0.063709691166878,-0.037634015083313,0.01262666657567],[-0.010195623151958,-0.09023879468441,-0.040862735360861]],[[0.017618276178837,0.086331225931644,0.037173893302679],[0.11827869713306,0.15371336042881,-0.016251157969236],[0.065257884562016,0.10788875818253,0.03304385766387]],[[0.12036255002022,0.0063148625195026,0.066293835639954],[-0.021515235304832,0.0083864154294133,-0.062821917235851],[0.095031596720219,-0.061129402369261,-0.14496673643589]],[[0.024038564413786,0.0339290574193,0.12239156663418],[0.012783158570528,-0.035613179206848,0.089434139430523],[-0.044550355523825,-0.065148465335369,0.0045914058573544]],[[0.0085992747917771,0.017833672463894,0.037976462393999],[-0.010221004486084,0.042130064219236,0.1293723732233],[0.036410558968782,0.0005638602306135,0.075864069163799]],[[-0.058481954038143,-0.010511476546526,0.020214892923832],[-0.022636514157057,0.081954836845398,0.0032285279594362],[-0.12361761927605,0.0029957946389914,0.0060721444897354]],[[-0.044042445719242,0.0080385925248265,-0.069919757544994],[0.045542374253273,-0.01405968144536,-0.15295319259167],[0.11570561677217,-0.0095693664625287,-0.079151198267937]],[[0.096348747611046,-0.037138599902391,-0.083600774407387],[-0.15722945332527,-0.06948184967041,-0.12502232193947],[-0.023809757083654,0.05739613249898,0.10287563502789]],[[0.0085164867341518,0.0022630959283561,-0.049037739634514],[-0.068772032856941,0.029059527441859,-0.060762114822865],[0.014263840392232,-0.015114905312657,0.020717354491353]],[[-0.12832637131214,-0.0099638924002647,0.061482410877943],[0.024838065728545,0.008262594230473,-0.0015345280990005],[-0.053905475884676,-0.030599750578403,0.0079550798982382]],[[0.058251708745956,0.035722933709621,-0.075203709304333],[0.069484524428844,-0.07924921810627,-0.017832607030869],[0.036963690072298,0.0076421238481998,0.037248119711876]],[[-0.12068846821785,-0.049663819372654,0.015088241547346],[0.11961685866117,0.051547210663557,-0.11461839824915],[-0.020236533135176,0.031401693820953,-0.053762655705214]],[[-0.010500766336918,0.034950815141201,0.08504705876112],[-0.055376514792442,0.036239944398403,-0.053744271397591],[0.060490492731333,0.0026285559870303,0.038766704499722]],[[-0.0054851546883583,0.032934028655291,-0.033956289291382],[0.053334888070822,0.02984151057899,-0.063993953168392],[0.002953638555482,-0.060824126005173,-0.084142975509167]],[[0.030905559659004,0.037445217370987,-0.037965565919876],[0.13778212666512,0.0059018251486123,-0.059148162603378],[0.01035660225898,-0.018094917759299,-0.099819786846638]],[[-0.049378123134375,0.14983509480953,0.12505765259266],[-0.038087032735348,0.047735765576363,0.093442797660828],[0.013028738088906,0.017624178901315,-0.025903657078743]],[[-0.031829547137022,0.06638166308403,-0.04921580478549],[-0.01042596809566,0.087023071944714,0.010428571142256],[-0.12374138832092,-0.040558166801929,-0.086762756109238]],[[-0.22268302738667,-0.091561883687973,-0.068393729627132],[-0.20893405377865,0.0091168312355876,0.010754914954305],[-0.014956056140363,0.038885690271854,0.033150400966406]],[[0.047563124448061,0.069896318018436,0.040777660906315],[0.033486422151327,-0.051734607666731,0.017837252467871],[-0.11755216121674,-0.15895494818687,0.035858981311321]],[[0.043566238135099,-0.022884270176291,-0.061768531799316],[0.11331374198198,0.028881527483463,0.0017511437181383],[0.037195589393377,-0.0079253483563662,0.091499954462051]],[[0.066620208323002,0.14751181006432,0.034017983824015],[-0.050586681813002,-0.072855800390244,-0.049687657505274],[0.0080241551622748,-0.00043008991633542,-0.078360207378864]],[[-0.12587337195873,-0.042971059679985,0.076456092298031],[-0.033089146018028,-0.01715718768537,0.10191180557013],[-0.017153799533844,0.013336320407689,0.054122496396303]],[[0.04578223451972,0.04379353672266,0.041845731437206],[-0.044754061847925,-0.09765562415123,0.07038040459156],[-0.034644976258278,0.013022101484239,0.018500246107578]],[[-0.01036658231169,-0.058249983936548,-0.013150890357792],[-0.067452982068062,-0.10207638144493,-0.001736324862577],[0.01178103685379,0.079255841672421,-0.009913026355207]],[[-0.036865651607513,0.056789923459291,0.033219050616026],[0.019551435485482,0.086072385311127,0.046737890690565],[0.006850641220808,0.034273933619261,0.10957243293524]],[[0.051351055502892,-0.048419758677483,-0.092647105455399],[-0.078546486794949,-0.00027270329883322,0.086668945848942],[-0.052049558609724,0.0053564868867397,0.0021165662910789]]],[[[0.11806371062994,0.080581925809383,-0.033448837697506],[0.024548718705773,0.070123337209225,-0.088127568364143],[-0.045562718063593,0.069977477192879,0.023169362917542]],[[-0.060885310173035,-0.13012507557869,0.020264415070415],[-0.032294306904078,-0.010970701463521,0.093312226235867],[-0.0068849064409733,-0.066192507743835,0.03350542485714]],[[0.079361453652382,0.023242307826877,-0.029604505747557],[-0.027735762298107,-0.020516259595752,-0.078024432063103],[-0.062914825975895,-0.05730352178216,0.024841535836458]],[[0.077488213777542,-0.12366306036711,-0.090124741196632],[-0.0092856092378497,-0.064567439258099,-0.10066020488739],[0.0036173947155476,0.0051000178791583,-0.032365392893553]],[[0.053989507257938,-0.056549694389105,0.064981892704964],[-0.045770633965731,-0.020455682650208,-0.076216034591198],[0.002715369220823,0.010069587267935,0.042988918721676]],[[0.053847625851631,-0.10312678664923,0.039343822747469],[-0.046482555568218,-0.21621768176556,0.047995928674936],[-0.091799408197403,-0.014690178446472,0.24330723285675]],[[-0.010515009053051,0.00010248893522657,0.010473062284291],[-0.10759882628918,0.034309938549995,0.079019978642464],[-0.0029123825952411,0.05358387157321,0.044589441269636]],[[0.0010257144458592,-0.10425044596195,-0.037014521658421],[0.040813121944666,-0.10627483576536,0.099063895642757],[0.026790741831064,-0.056717436760664,-0.015459769405425]],[[0.012038605287671,-0.031677313148975,0.05604587122798],[0.092119567096233,-0.054628629237413,0.10262523591518],[0.041033882647753,0.017205733805895,0.09703753888607]],[[0.040326647460461,0.041956197470427,0.014350080862641],[0.057347606867552,-0.085988290607929,-0.02444308064878],[-0.042700942605734,-0.019666869193316,-0.11357782036066]],[[0.016939718276262,-0.033088862895966,0.11717625707388],[-0.0068611749447882,-0.054699629545212,-0.030806249007583],[-0.052966050803661,0.023757012560964,-0.039897412061691]],[[0.021353330463171,0.088701829314232,0.026513395830989],[-0.035529110580683,0.01358665432781,-0.015952056273818],[-0.037192609161139,-0.040557879954576,0.040193803608418]],[[-0.025751572102308,-0.07827577739954,0.055547084659338],[-0.026380518451333,0.18575964868069,0.027652693912387],[-0.043631412088871,-0.17879840731621,-0.046623207628727]],[[-0.059169642627239,-0.042974669486284,-0.05524156242609],[0.036719966679811,0.010540154762566,0.077502377331257],[-0.0040127318352461,0.024165663868189,0.053761556744576]],[[-0.04114643484354,-0.066437482833862,0.022744413465261],[-0.10092925280333,0.022894090041518,0.019495045766234],[-0.070175372064114,-0.06054774299264,-0.018089158460498]],[[0.083462491631508,0.038962628692389,0.05547321587801],[0.016931226477027,-0.11949841678143,0.0039963345043361],[-0.0085562011227012,-0.014709736220539,-0.080472052097321]],[[0.044811069965363,-0.061076566576958,0.015704534947872],[-0.023747716099024,-0.082232221961021,-0.042526472359896],[0.013131005689502,-0.054072234779596,-0.10880003869534]],[[-0.0024337116628885,0.085509173572063,0.044298186898232],[-0.038661912083626,-0.1051444709301,0.069215781986713],[0.043775837868452,-0.017537269741297,0.031120916828513]],[[0.034233964979649,-0.086213015019894,0.025810858234763],[0.064771629869938,0.049888573586941,-0.10212328284979],[0.043434794992208,-0.05734796077013,-0.15466274321079]],[[-0.062566958367825,0.012385590933263,0.024496922269464],[-0.017449824139476,0.015088754706085,0.05224185436964],[-0.00077797583071515,0.037051673978567,-0.037014130502939]],[[0.0044259950518608,0.030775118619204,-0.13590757548809],[-0.056083973497152,-0.091617584228516,0.00026826024986804],[0.0073662488721311,-0.076097384095192,0.052186273038387]],[[-0.021842885762453,0.010412552393973,0.035536725074053],[0.074117138981819,-0.077788710594177,-0.042157184332609],[0.038303222507238,-0.021841617301106,0.0047061182558537]],[[-0.058248657733202,0.056093651801348,0.0023701530881226],[0.045712355524302,0.058842666447163,0.018996201455593],[0.078074134886265,0.088409125804901,-0.10276053845882]],[[0.0034149009734392,-0.0398871563375,0.02071437984705],[0.047432016581297,0.055985499173403,0.097050487995148],[0.087677910923958,0.0071376119740307,0.11367325484753]],[[-0.10411947965622,-0.042812272906303,0.045644495636225],[0.011395425535738,-0.023359324783087,0.019251557067037],[-0.017643900588155,0.082091353833675,0.051512777805328]],[[0.019217835739255,0.15616865456104,-0.048598371446133],[-0.025590432807803,-0.027458531782031,-0.029461111873388],[0.025766836479306,0.008996102027595,-0.021775478497148]],[[0.011222684755921,-0.079495489597321,-0.024443766102195],[0.11611417680979,0.022148365154862,-0.0022338756825775],[-0.042851455509663,-0.06122836843133,-0.032126195728779]],[[0.0039453827776015,0.017956761643291,-0.077085644006729],[-0.041679490357637,0.043730862438679,-0.092448748648167],[-0.031047130003572,0.027660569176078,-0.009367173537612]],[[0.076201148331165,0.056752674281597,0.088695093989372],[-0.028262021020055,0.065094120800495,-0.086880154907703],[-0.061699956655502,0.040004372596741,-0.079281806945801]],[[-0.0063053043559194,-0.041102446615696,0.011752067133784],[-0.047625239938498,0.024359464645386,0.041802152991295],[-0.042118683457375,-0.012858708389103,0.042256958782673]],[[0.066255517303944,0.13161982595921,-0.089396864175797],[-0.046729072928429,0.028883585706353,0.039011169224977],[0.10176938772202,0.049615319818258,-0.0336529687047]],[[0.030078288167715,0.033128835260868,0.041684273630381],[0.016760021448135,0.016442256048322,0.028725985437632],[0.0037849347572774,-0.098028771579266,-0.035950683057308]],[[0.0032630495261401,0.017963578924537,0.026127506047487],[-0.029866851866245,0.0031201739329845,0.039236340671778],[-0.0072526200674474,-0.02350727841258,-0.062295682728291]],[[-0.063137643039227,-0.016734903678298,0.0075644967146218],[-0.1006183475256,-0.0023765354417264,0.080149829387665],[0.074252188205719,0.0077047040686011,0.0052097137086093]],[[0.054461155086756,-0.039268136024475,0.0083054564893246],[0.071235865354538,-0.00048996490659192,0.11850284039974],[-0.019324544817209,0.038254912942648,0.018565589562058]],[[0.031568802893162,0.022902056574821,-0.017017191275954],[-0.04401445761323,-0.052734673023224,-0.14384470880032],[-0.039400946348906,-0.016366565600038,0.033796794712543]],[[-0.022454146295786,-0.1093086078763,0.012824134901166],[0.052290223538876,0.044116150587797,0.036667209118605],[-0.01136524323374,-0.0064326673746109,-0.06878387182951]],[[0.022799110040069,-0.057594299316406,-0.0087091317400336],[0.013283547945321,0.023188669234514,0.057854246348143],[-0.05712078884244,-0.057433944195509,0.067093059420586]],[[-0.1371313482523,-0.053629782050848,-0.027322240173817],[-0.0081234881654382,0.13589382171631,0.023042909801006],[-0.027269484475255,0.014038681983948,0.014394970610738]],[[-0.08881226927042,0.020751427859068,0.0016181145329028],[-0.048975769430399,-0.053382605314255,0.020352741703391],[0.01250019390136,0.082218423485756,0.064566969871521]],[[0.080182999372482,-0.01653016731143,0.084320649504662],[-0.037468198686838,-0.072286501526833,-0.034094419330359],[0.066164873540401,-0.019743029028177,-0.0042795995250344]],[[0.055628381669521,-0.099451117217541,0.071243323385715],[0.040748842060566,-0.013999835588038,-0.017382407560945],[-0.095567129552364,-0.084387570619583,0.034751381725073]],[[0.053008355200291,-0.063817709684372,0.050410900264978],[0.11030163615942,0.009280638769269,0.1095060184598],[-0.13375528156757,0.019245157018304,0.015157277695835]],[[0.018952304497361,-0.056948386132717,-0.02522667311132],[-0.040256079286337,-0.005065222736448,0.078510493040085],[0.0052920081652701,-0.036734469234943,-0.029015693813562]],[[-0.028116116300225,0.027471650391817,0.079627349972725],[-0.0060487212613225,0.012675829231739,0.06435364484787],[-0.068551979959011,-0.082445308566093,-0.039930392056704]],[[-0.016218468546867,0.023317592218518,-0.0095092756673694],[0.00076175114372745,0.054705951362848,-0.044561687856913],[-0.018653383478522,-0.0067803165875375,-0.12040432542562]],[[-0.034667879343033,0.049643106758595,0.010788957588375],[-0.063233755528927,-0.06739292293787,-0.0005928764003329],[-0.013277461752295,0.00045192998368293,0.12569431960583]],[[0.016814572736621,-0.028744732961059,0.011522022075951],[-0.00059384707128629,0.17078657448292,-0.014767872169614],[-0.079741425812244,-0.04330213367939,-0.047343719750643]],[[0.0092554213479161,0.023672480136156,-0.036441031843424],[0.010046360082924,0.081448137760162,-0.061443276703358],[0.055472087115049,0.0024772833567113,0.013182809576392]],[[-0.0028386106714606,0.021747935563326,-0.099511303007603],[0.059986189007759,-0.011881465092301,0.067929796874523],[-0.03497651591897,-0.054115124046803,0.03484420478344]],[[0.0031650869641453,0.038815569132566,0.044935129582882],[0.020890705287457,0.044198390096426,-0.039253011345863],[-0.039196465164423,-0.08843707293272,-0.039502020925283]],[[-0.022874679416418,0.074999757111073,0.0096156466752291],[0.078944124281406,0.053610172122717,0.02815518528223],[-0.025454860180616,0.0052731079049408,-0.13155917823315]],[[0.051583912223577,-0.025527277961373,-0.045418947935104],[-0.064278639853001,0.037592317909002,-0.0097018228843808],[0.049405992031097,0.010615498758852,-0.069618329405785]],[[-0.029994428157806,-0.08679836243391,0.024536179378629],[0.011228395625949,0.078005336225033,0.025463836267591],[0.0047439015470445,-0.021274672821164,-0.0039402823895216]],[[0.029761856421828,-0.029979264363647,-0.019342727959156],[-0.081237971782684,0.068702772259712,0.0072951586917043],[-0.02470107935369,-0.094140008091927,0.032432518899441]],[[-0.018620692193508,0.076250039041042,-0.030462274327874],[-0.047662138938904,0.016815356910229,-0.008774908259511],[0.024840900674462,-0.057852167636156,-0.037557613104582]],[[-0.080652050673962,0.01458780746907,0.06498421728611],[-0.043537218123674,0.050830483436584,-0.0013908637920395],[0.017555225640535,-0.032485764473677,-0.028795255348086]],[[-0.021416861563921,0.064211197197437,0.029291287064552],[-0.19017285108566,-0.072984896600246,-0.027476927265525],[-0.020529713481665,-0.089166320860386,0.032768119126558]],[[0.059648364782333,0.081345871090889,0.078511066734791],[0.082794025540352,-0.0175451785326,0.070538945496082],[0.031799230724573,0.039485152810812,0.044493194669485]],[[0.080932684242725,-0.051518827676773,-0.067206650972366],[0.035915918648243,-0.03842281922698,0.011068353429437],[0.020717319101095,-0.010296639986336,0.013897788710892]],[[0.016737315803766,-0.054095767438412,-0.069834537804127],[-0.0048349699936807,0.0042207734659314,0.018020540475845],[0.035685297101736,-0.025202080607414,-0.020238548517227]],[[0.028654593974352,0.010862135328352,-0.023179039359093],[0.0028375321999192,-0.022286599501967,-0.017723064869642],[0.05029384046793,0.067000508308411,-0.12430116534233]],[[0.091022439301014,-0.11683274060488,0.044694196432829],[-0.027889050543308,-0.097052350640297,-0.036772798746824],[0.045748550444841,-0.011148513294756,0.008091595955193]],[[-0.032572902739048,-0.030701799318194,0.036531511694193],[-0.065591588616371,0.022213023155928,0.044606726616621],[0.0030450003687292,-0.02209715731442,0.015721527859569]]],[[[0.060590669512749,0.00098312192130834,-0.045077409595251],[-0.061202596873045,-0.010621284134686,0.049939185380936],[0.00010899748303927,-0.0033308358397335,0.028876071795821]],[[-0.031428910791874,-0.20484432578087,0.0049225883558393],[0.01338070910424,0.055301692336798,0.0049223452806473],[-0.044482491910458,0.027596745640039,0.039424367249012]],[[-0.086209304630756,-0.018731886520982,-0.13802798092365],[-0.087419576942921,0.00066786067327484,0.011300674639642],[0.032878033816814,0.054091043770313,0.026142001152039]],[[-0.024128315970302,-0.037724457681179,-0.064072787761688],[-0.078391067683697,0.043860521167517,-0.0016164534026757],[-0.0086687030270696,0.021323701366782,-0.12922316789627]],[[-0.0012301927199587,-0.023766422644258,-0.042005933821201],[-0.23760540783405,0.081284500658512,-0.071123547852039],[0.042607896029949,-0.012641187757254,-0.044491712003946]],[[-0.065352387726307,-0.0015286493580788,-0.00042012694757432],[0.033520206809044,-0.042918007820845,0.0056173764169216],[0.0082451840862632,-0.093375958502293,-0.031887829303741]],[[-0.12369966506958,-0.019923962652683,-0.012320285663009],[-0.031232725828886,0.085096918046474,0.028506297618151],[-0.016765184700489,-0.05048780143261,-0.015246378257871]],[[-0.028644315898418,0.046849053353071,0.047361552715302],[0.060103509575129,-0.0058162147179246,0.054371144622564],[-0.082132689654827,0.043218854814768,0.022438868880272]],[[0.18730345368385,0.0076331063173711,0.11208385974169],[-0.09441514313221,0.032753981649876,-0.072405032813549],[0.066820934414864,0.044318795204163,0.0063664275221527]],[[-0.059797845780849,0.010218437761068,0.019560938701034],[-0.016761355102062,0.045809280127287,-0.089092195034027],[0.003133617574349,-0.057108897715807,-0.051204800605774]],[[0.070943705737591,-0.062170203775167,0.069596581161022],[-0.043045584112406,-0.046156603842974,-0.058065868914127],[0.033114291727543,0.013617912307382,0.055883396416903]],[[-0.079361543059349,-0.025619314983487,-0.057358719408512],[0.043985929340124,0.04209091886878,-0.074882216751575],[0.065044544637203,-0.031192185357213,-0.049755193293095]],[[-0.020966337993741,-0.044835537672043,0.08185737580061],[0.0081270653754473,-0.031492304056883,-0.046126469969749],[0.017410106956959,0.053012892603874,0.05180498957634]],[[0.015774961560965,0.0061977198347449,0.044758561998606],[0.054222770035267,-0.03326316177845,0.0092509686946869],[0.066423185169697,0.0042806640267372,-0.010502573102713]],[[-0.00042838149238378,-0.049651063978672,0.008074258454144],[0.0075058611109853,0.035713754594326,0.022162016481161],[0.064625643193722,-0.037504199892282,0.028224371373653]],[[-0.081037551164627,-0.0017900285311043,0.055406969040632],[-0.0058577214367688,-0.10510723292828,-0.043574906885624],[0.010955187492073,0.0043520033359528,0.023594841361046]],[[0.038720015436411,-0.061951015144587,0.015379806980491],[0.073251597583294,-0.045873649418354,-0.095130927860737],[-0.0098684942349792,-0.024404607713223,-0.034128669649363]],[[-0.028328537940979,-0.043527185916901,-0.001645221025683],[-0.046257451176643,0.096950680017471,0.018861820921302],[-0.025192052125931,0.023511039093137,0.060659550130367]],[[0.07947900891304,0.010126509703696,0.029649030417204],[-0.17635330557823,0.085426315665245,0.046160724014044],[-0.036560542881489,-0.054163612425327,0.03321523591876]],[[-0.045806236565113,0.035752203315496,0.0019016194855794],[-0.0300447139889,0.038688078522682,0.027785195037723],[-0.011537643149495,-0.0019252492347732,0.02098236232996]],[[-0.10802654922009,-0.061173480004072,0.050634134560823],[0.069939114153385,-0.029687352478504,0.10896938294172],[-0.0097995782271028,-0.030231716111302,-0.10668303072453]],[[-0.017878977581859,-0.058423105627298,0.02809451892972],[0.076548255980015,-0.027417778968811,-0.091624103486538],[0.0053911749273539,0.00085777579806745,-0.018483992666006]],[[-0.0084258979186416,-0.0031843427568674,0.1218870729208],[0.10284101963043,-0.061111584305763,-0.061525013297796],[-0.053806040436029,0.13905903697014,0.019550608471036]],[[-0.03243912756443,0.070630744099617,0.033892121165991],[0.11488776654005,0.038281239569187,0.080271348357201],[0.030745876953006,0.0073317582719028,-0.05876549705863]],[[0.057047765702009,0.056527782231569,0.073673613369465],[0.060586225241423,0.054423961788416,-0.036770757287741],[-0.069187954068184,0.045387446880341,-0.064975671470165]],[[-0.026251094415784,0.070940896868706,0.06496600061655],[0.0016183180268854,-0.022240821272135,-0.019043540582061],[-0.0093661127611995,-0.047745227813721,-0.10555136203766]],[[-0.0028262191917747,-0.054548975080252,0.068998627364635],[0.12684793770313,-0.15936072170734,0.0050869672559202],[0.035493634641171,0.051460415124893,0.073552094399929]],[[-0.046883020550013,0.028085954487324,0.038266655057669],[-0.020929368212819,0.066510029137135,0.067252352833748],[-0.026718454435468,0.0020282822661102,0.023786598816514]],[[0.062979131937027,-0.097292706370354,0.051337447017431],[-0.064352199435234,-0.07770936191082,0.12372884899378],[-0.062437441200018,0.019259724766016,0.066584073007107]],[[0.054451286792755,0.010124241933227,0.074713006615639],[-0.010364264249802,0.021537691354752,0.02550533413887],[0.0027992073446512,0.029374156147242,-0.0040978556498885]],[[0.030183847993612,0.02977342158556,0.074109055101871],[-0.02730593085289,-0.03626935556531,-0.0097066275775433],[0.025777522474527,0.011916721239686,-0.013345146551728]],[[0.062234297394753,0.020280174911022,-0.057991411536932],[-0.027270110324025,0.047945994883776,-0.044451702386141],[0.099249072372913,0.11996192485094,-0.034445334225893]],[[-0.025229841470718,-0.044730916619301,0.014972020871937],[-0.011043579317629,-0.0100206900388,-0.071097068488598],[0.011221869848669,-0.059248611330986,-0.00068137526977807]],[[0.027472387999296,-0.024492168799043,0.055727437138557],[-0.057672172784805,-0.034178499132395,-0.20765291154385],[0.049481768161058,0.097257532179356,-0.12463827431202]],[[-0.05141057819128,0.012364380992949,0.020008157938719],[-0.12008658051491,0.014897051267326,0.036055065691471],[-0.008580356836319,0.038532935082912,-0.037580102682114]],[[-0.065076917409897,0.027171162888408,0.10437563061714],[0.045215457677841,-0.0053618871606886,0.061792839318514],[0.056324478238821,-0.029329122975469,0.035942491143942]],[[0.094234719872475,-0.024354781955481,-0.017578884959221],[0.073311887681484,-0.026521461084485,-0.023163728415966],[0.0019350188085809,-0.010295623913407,-0.052846901118755]],[[0.087073840200901,-0.068030439317226,-0.056341532617807],[-0.098160125315189,-0.005026925355196,-0.028053564950824],[0.17482358217239,-0.081629268825054,-0.11781349033117]],[[-0.065418809652328,0.017267728224397,-0.019960943609476],[-0.053591221570969,-0.0036070109345019,0.068307615816593],[0.020735077559948,0.053769413381815,-0.013982851989567]],[[-0.039045233279467,-0.053992342203856,-0.045704141259193],[-0.0062090214341879,-0.1001670062542,0.13198193907738],[0.04069959372282,0.097757831215858,0.014658659696579]],[[0.085809528827667,-0.05338117107749,0.092677637934685],[-0.10989884287119,-0.063142456114292,0.11776299029589],[-0.06188602745533,-0.030443597584963,-0.032620448619127]],[[-0.022172521799803,-0.069644533097744,0.026863966137171],[0.012407710775733,0.051402568817139,-0.041666157543659],[-0.092946745455265,-0.092617154121399,0.034489188343287]],[[0.03598290681839,-0.10399757325649,-0.023688912391663],[0.040093336254358,0.050762929022312,-0.032631564885378],[-0.014231168664992,-0.068399384617805,0.04035996645689]],[[0.010753132402897,0.027936154976487,0.083155043423176],[0.075435146689415,0.039556697010994,0.050798855721951],[-0.027087822556496,-0.027223970741034,0.038191735744476]],[[-0.044718503952026,0.10717514902353,-0.083432734012604],[-0.028504326939583,-0.040456417948008,-0.041789624840021],[0.0012086544884369,0.048954673111439,-0.045378781855106]],[[0.01408442016691,-0.012372370809317,0.068100072443485],[-0.028086414560676,0.0080391317605972,-0.077104583382607],[0.017453284934163,0.031082332134247,-0.0031891083344817]],[[0.043423045426607,0.0064689018763602,-0.025154193863273],[-0.036350265145302,0.01027708593756,0.15474860370159],[-0.030376898124814,-0.023175710812211,-0.081472337245941]],[[0.07902979105711,0.036726079881191,-0.067322641611099],[-0.060299847275019,-0.018986633047462,-0.010328945703804],[0.031977858394384,0.0470812022686,-0.0023278195876628]],[[0.013385464437306,-0.034146193414927,0.033651128411293],[-0.028457244858146,-0.0045919283293188,-0.05846781283617],[-0.037025142461061,-0.12051787227392,0.039343670010567]],[[-0.025831565260887,0.017783019691706,-0.084256216883659],[0.071934394538403,-0.021670872345567,0.03431835770607],[-0.019629804417491,0.023794507607818,0.031749781221151]],[[0.015167055651546,0.0052473368123174,0.038071524351835],[0.0044283606112003,-0.071775384247303,-0.036811660975218],[-0.012253215536475,0.012466819025576,0.030307278037071]],[[0.086650311946869,-0.052014328539371,-0.011200030334294],[-0.02125827036798,0.090948835015297,0.030100779607892],[-0.093073949217796,-0.0081222569569945,-0.0026347441598773]],[[-0.054367024451494,0.0054212082177401,-0.015073345974088],[0.11840669810772,0.005595603492111,0.11580988019705],[-0.063896164298058,0.046912405639887,-0.059569623321295]],[[-0.013396572321653,-0.057651240378618,0.017578318715096],[-0.02259849011898,-0.058973990380764,-0.015295288525522],[-0.062825299799442,0.053824506700039,0.027340542525053]],[[0.017967991530895,-0.05459701269865,-0.03051171451807],[-0.046755257993937,-0.047756586223841,0.073600426316261],[-0.064443126320839,0.014788135886192,-0.03300579637289]],[[0.070472203195095,0.034388966858387,0.086595699191093],[0.029675509780645,-0.038670670241117,-0.041102953255177],[-0.056470673531294,-0.0088912658393383,-0.0038894435856491]],[[-0.02202670276165,0.047666076570749,-0.0026977381203324],[-0.040063608437777,-0.051569871604443,0.057318046689034],[-0.030058717355132,-0.05366663262248,-0.09556171298027]],[[-0.038455616682768,0.023453714326024,-0.058856707066298],[-0.047407008707523,-0.087769091129303,-0.039557535201311],[-0.052111528813839,-0.012867259792984,0.037275064736605]],[[-0.059753198176622,-0.065935276448727,0.046041529625654],[-0.029248800128698,-0.038804929703474,-0.05076152831316],[0.13220973312855,0.025984037667513,0.087642125785351]],[[0.029842751100659,0.026051472872496,0.010236875154078],[-0.0019691691268235,-0.027903337031603,-0.023477822542191],[-0.036122292280197,0.048428919166327,-0.026500213891268]],[[-0.052409041672945,-0.0050364932976663,0.01098767388612],[0.06339929997921,-0.057227399200201,0.014704282395542],[-0.035707999020815,-0.024396536871791,-0.10689002275467]],[[-0.064012199640274,-0.026487089693546,-0.11515535414219],[-0.023123243823647,0.055125389248133,0.031738948076963],[0.0077469781972468,-0.022354584187269,0.034478697925806]],[[-0.042258761823177,-0.060805108398199,-0.03622592240572],[0.0080249169841409,0.021474778652191,0.043736360967159],[0.0089651243761182,-0.030599359422922,0.00943632889539]],[[0.032661896198988,-0.08653050661087,-0.14594396948814],[-0.057780146598816,-0.058168984949589,-0.028820175677538],[-0.030069299042225,0.0091875633224845,-0.0053285988979042]]],[[[-0.093018978834152,0.031358230859041,-0.028745694085956],[-0.0049246908165514,-0.012347866781056,0.093054838478565],[-0.053736574947834,0.019321670755744,0.10510185360909]],[[-0.080713927745819,0.048438500612974,0.04325258359313],[-0.10816653072834,-0.055183816701174,-0.13277678191662],[-0.046883687376976,-0.011909204535186,0.013309800066054]],[[-0.049602635204792,-0.037220545113087,0.03583675250411],[-0.10545935481787,0.04735478758812,0.028705704957247],[-0.032613195478916,-0.058727439492941,-0.026870956644416]],[[-0.084555387496948,0.086181648075581,0.06730343401432],[-0.091521218419075,-0.040322076529264,-0.1018847450614],[-0.0086749559268355,0.0067499787546694,-0.062778875231743]],[[0.016041591763496,-0.079356230795383,0.035118665546179],[-0.084534019231796,-0.11158242821693,-0.0025587561540306],[0.012148432433605,-0.013203905895352,-0.025605104863644]],[[-0.047491405159235,-0.015496494248509,-0.070116765797138],[0.019310902804136,0.0058690803125501,0.041115809231997],[-0.002843574853614,-0.03534072265029,-0.014647735282779]],[[-0.032006327062845,0.0010376919526607,-0.020595295354724],[-0.063492745161057,0.043371599167585,-0.059239007532597],[-0.11803887039423,0.024778380990028,0.047028463333845]],[[0.050519086420536,0.030810371041298,-0.0063208295032382],[-0.013310367241502,0.024183193221688,0.0022446429356933],[-0.091553740203381,-0.022460659965873,-0.01164922863245]],[[-0.044093679636717,-0.0015207031974569,0.0375104136765],[0.026410534977913,-0.028514564037323,0.077128864824772],[-0.074084118008614,-0.12204793095589,0.048797998577356]],[[-0.088916681706905,0.010949481278658,-0.016688546165824],[-0.038864973932505,-0.020920153707266,-0.031653221696615],[-0.014623179100454,-0.0094890743494034,-0.029975112527609]],[[0.086301699280739,-0.0039122784510255,0.072441123425961],[-0.023589082062244,-0.0108962059021,-0.02905466593802],[-0.050128158181906,0.02040815167129,-0.021835325285792]],[[0.038338180631399,-0.018285878002644,0.050552468746901],[-0.032758500427008,0.037534844130278,0.016153194010258],[-0.0024437478277832,-0.006170570384711,-0.023103736341]],[[-0.019306486472487,-0.0079222824424505,0.0047733951359987],[0.022023532539606,-0.0086382012814283,-0.0097506251186132],[-0.052444819360971,-0.039016377180815,-0.017656629905105]],[[0.051385164260864,0.051299583166838,0.03872774541378],[-0.10025815665722,-0.10575985908508,-0.0097723407670856],[-0.0098723070695996,-0.046841520816088,-0.020030749961734]],[[-0.023566294461489,0.054788406938314,0.026717390865088],[0.013788992539048,-0.012694824486971,0.013133798725903],[-0.02361598238349,0.05786420404911,0.0317487642169]],[[0.030353400856256,-0.084681548178196,-0.038025934249163],[0.026446055620909,-0.08720051497221,-0.0092392116785049],[0.030464351177216,0.012419578619301,-0.076184257864952]],[[0.063469365239143,0.048882741481066,0.040629845112562],[-0.042390935122967,0.044822867959738,-0.0024517718702555],[-0.035039842128754,-0.067921973764896,-0.064086019992828]],[[-0.12896530330181,0.0043421979062259,-0.0031380387954414],[0.087501153349876,-0.095042042434216,-0.014445322565734],[0.090834528207779,0.024983348324895,0.05181060731411]],[[-0.016596827656031,0.039579909294844,0.0080295987427235],[0.008926416747272,0.0018922758754343,0.019278969615698],[0.022942282259464,-0.047645825892687,-0.037507679313421]],[[0.052354145795107,-0.021376311779022,0.023880001157522],[0.036028813570738,-0.020769873633981,0.042444456368685],[-0.055578753352165,-0.050678387284279,0.024662865325809]],[[0.016210250556469,-0.087327197194099,0.018216110765934],[0.026080956682563,0.033513106405735,0.0021969482768327],[-0.086219668388367,-0.06138413771987,-0.062407363206148]],[[-0.021108517423272,-0.054475411772728,0.0016423946944997],[-0.014229498803616,-0.012326090596616,0.0036939841229469],[-0.063241846859455,0.061921864748001,0.083738565444946]],[[-0.062704265117645,-0.0083251306787133,0.023797845467925],[-0.029124014079571,-0.011048422195017,-0.012054889462888],[0.055344957858324,-0.035716697573662,-0.068562529981136]],[[-0.037155207246542,0.048261165618896,0.030840555205941],[0.11122549325228,0.10802845656872,-0.03474410623312],[0.029424339532852,0.03497214615345,-0.0056688049808145]],[[0.03113049454987,-0.069487147033215,0.021428955718875],[0.013822953216732,0.025548044592142,-0.091215297579765],[0.029322225600481,-0.0042314874008298,0.0259167868644]],[[-0.015437375754118,0.017320243641734,0.10103270411491],[-0.004241640213877,-0.031470764428377,0.10201182961464],[-0.00065817509312183,-0.057857617735863,0.015326241031289]],[[-0.021399227902293,-0.033447448164225,0.050426114350557],[0.047885250300169,0.041187763214111,-0.072995781898499],[0.0090211601927876,0.14125847816467,0.047991327941418]],[[-0.1339713037014,0.063278026878834,0.019281346350908],[-0.015954058617353,0.0019669742323458,0.041512701660395],[-0.028076076880097,0.060165345668793,0.015265882015228]],[[-0.008324371650815,-0.075163826346397,-0.018043391406536],[-0.053235311061144,0.067784950137138,0.036340974271297],[0.063713140785694,-0.017662011086941,-0.019540561363101]],[[-0.072934851050377,-0.055053636431694,-0.055793289095163],[-0.041922800242901,-0.045080952346325,-0.10490918159485],[0.014292315579951,-0.12789912521839,0.01526755373925]],[[0.01894287019968,-0.028397498652339,-0.080433577299118],[0.086304925382137,0.10462213307619,-0.089735046029091],[0.01214237511158,0.056951377540827,-0.000924518390093]],[[-0.038852822035551,0.015694692730904,0.034549780189991],[-0.013721773400903,0.019714511930943,0.029559699818492],[0.0034513401333243,-0.039651047438383,-0.062917545437813]],[[-0.052263539284468,-0.010229763574898,-0.0014836406335235],[-0.054216347634792,0.0014524119906127,0.052872519940138],[0.044237475842237,0.026756940409541,0.019336070865393]],[[0.020879881456494,-0.031396131962538,0.0079802209511399],[-0.010256332345307,0.013044266030192,0.067798063158989],[-0.0619434453547,-0.060479432344437,0.0033099062275141]],[[-0.056511919945478,-0.047672145068645,-0.029212977737188],[0.053584828972816,0.012608774937689,0.11817312240601],[0.027924425899982,-0.04984737187624,0.039935830980539]],[[-0.039046686142683,-0.060603521764278,0.0083111952990294],[0.039743769913912,0.102768458426,-0.045848019421101],[0.015750518068671,0.0019408535445109,-0.056304939091206]],[[-0.038530621677637,0.061399828642607,-0.028048535808921],[-0.097920060157776,0.028601972386241,-0.0012656981125474],[0.023530280217528,-0.071605034172535,0.030358428135514]],[[0.029270701110363,0.0065273549407721,0.042333614081144],[-0.017547409981489,-0.072250284254551,-0.0074379378929734],[-0.066326074302197,-0.034151699393988,0.041852969676256]],[[-0.040098633617163,-0.0083570200949907,-0.022314544767141],[0.04239160567522,-0.0082489922642708,0.069047927856445],[0.034729324281216,0.058629296720028,0.026884304359555]],[[-0.061260517686605,0.0011568106710911,-0.031890463083982],[0.073874048888683,0.033150263130665,-0.014097596518695],[0.0035674809478223,-0.014327979646623,-0.0147485723719]],[[-0.017291678115726,-0.031558733433485,0.055331237614155],[-0.029032232239842,-0.033613152801991,-0.003989233635366],[0.02943005412817,0.058652747422457,-0.034759219735861]],[[-0.016813959926367,-0.017678404226899,-0.03437240794301],[-0.01247058622539,-0.0085496576502919,-0.051219165325165],[-0.10829770565033,0.012842104770243,0.014551483094692]],[[-0.022974226623774,0.01728574745357,-0.018160700798035],[-0.057051047682762,-0.035584278404713,-0.0022471649572253],[-0.019919004291296,0.03166901320219,-0.1039986088872]],[[0.030220298096538,0.07199988514185,0.016039533540606],[-0.00052603665972129,-0.052122604101896,-0.020458633080125],[0.057774502784014,-0.014270451851189,-0.11395364999771]],[[-0.014803518541157,-0.065052285790443,-0.015893936157227],[0.03427205234766,-0.039849452674389,0.065949939191341],[0.04002409055829,0.024056140333414,0.047452632337809]],[[-0.044055685400963,0.012265185825527,0.012798631563783],[-0.013542683795094,0.0080642886459827,0.019838720560074],[0.0012044738978148,-0.019089408218861,-0.030661478638649]],[[-0.082916617393494,0.040566962212324,-0.11119135469198],[-0.00073476234683767,0.041029278188944,-0.018064888194203],[-0.071228004992008,-0.011607526801527,0.054118569940329]],[[-0.0062640705145895,0.0095218736678362,-0.034818883985281],[0.0060723600909114,0.019086167216301,-0.030433299019933],[-0.063213005661964,-0.014931930229068,-0.0025099897757173]],[[0.005110114812851,0.037754602730274,0.044609196484089],[-0.048222068697214,-0.040165685117245,-0.0078638223931193],[0.0054354500025511,0.0017179979477078,-0.027310807257891]],[[-0.11989607661963,0.021279321983457,0.023785701021552],[-0.052934795618057,-0.037287656217813,-0.020369211211801],[-0.089264944195747,-0.065277874469757,-0.11365853250027]],[[-0.078152574598789,0.013457261957228,-0.030705904588103],[-0.0024279407225549,0.0072335717268288,0.015325513668358],[-0.0260508377105,-0.065615803003311,0.0041462322697043]],[[0.038060538470745,0.074174724519253,0.0087138507515192],[0.10284628719091,0.12687039375305,-0.047061447054148],[0.041781809180975,-0.10558399558067,-0.075564920902252]],[[-0.027605898678303,0.057434756308794,-0.070977322757244],[0.059018779546022,-0.029500119388103,-0.14718681573868],[0.0084925936535001,0.032552778720856,0.068008989095688]],[[-0.053128715604544,-0.028224527835846,-0.014318120665848],[0.00054312450811267,-0.059987019747496,0.010090101510286],[-0.042537614703178,-0.14574867486954,-0.043746259063482]],[[0.028897540643811,-0.018243424594402,-0.011579167097807],[-0.02153761126101,-0.011673115193844,-0.092848747968674],[0.01551531162113,0.012591839767992,0.099246889352798]],[[0.046531956642866,-0.057717688381672,-0.074689529836178],[0.10867954045534,-0.024493051692843,0.048852022737265],[0.048977930098772,0.0097354957833886,0.032139651477337]],[[0.044929385185242,-0.080108121037483,0.02039903961122],[-0.10971963405609,-0.042230218648911,-0.031848017126322],[0.059475019574165,0.055359322577715,0.00056747067719698]],[[-0.045213084667921,-0.02707146666944,-0.0080377329140902],[-0.00082011421909556,-0.056011106818914,-0.038776244968176],[-0.026705557480454,-0.023107159882784,0.0081229107454419]],[[0.086281336843967,0.046363107860088,-0.039305899292231],[0.045937605202198,-0.0031956329476088,0.080492965877056],[0.054295439273119,-0.019593367353082,0.074143171310425]],[[-0.018733400851488,0.017550023272634,0.0058508166112006],[0.010074901394546,-0.021915310993791,-0.048843219876289],[0.0008625973132439,0.048500906676054,0.012287494726479]],[[-0.036728132516146,0.052087664604187,-0.03276189416647],[-0.088896259665489,-0.060046102851629,-0.011891626752913],[-0.0014708708040416,-0.028562085703015,-0.057112939655781]],[[-0.044096756726503,0.0078883171081543,-0.02215313538909],[-0.029182095080614,0.0396976955235,0.010118027217686],[-0.0016051151324064,-0.041116915643215,-0.11275062710047]],[[0.023426370695233,-0.092759132385254,-0.010329409502447],[-0.079054683446884,0.028638321906328,-0.023331545293331],[0.036250002682209,-0.060975037515163,0.02627027221024]],[[0.0044603254646063,0.0084124738350511,-0.00022164128313307],[-0.021582368761301,0.072246834635735,0.031626116484404],[0.034373588860035,-0.078713662922382,0.02917299233377]]],[[[0.013195724226534,-0.025880986824632,-0.081983983516693],[0.073262199759483,-0.027722008526325,-0.066076770424843],[-0.019294556230307,-0.17504635453224,-0.02754388935864]],[[-0.086045853793621,-0.016939852386713,-0.04964816197753],[-0.014583237469196,0.073330521583557,-0.035894341766834],[0.038337044417858,0.027793558314443,-0.021065775305033]],[[0.024936748668551,-0.073732487857342,-0.14990995824337],[0.07468044012785,-0.0095012504607439,-0.061385367065668],[0.068694777786732,0.0031353486701846,-0.074046611785889]],[[-0.042222961783409,0.065736703574657,-0.042541954666376],[-0.10363813489676,0.14165437221527,0.14181180298328],[-0.01338847912848,0.046254444867373,-0.087329775094986]],[[0.019476611167192,-0.0047541866078973,-0.031471103429794],[0.096318557858467,-0.021946584805846,-0.04191131144762],[-0.032816410064697,0.098285853862762,0.18095825612545]],[[-0.049586176872253,0.0065371440723538,-0.062954530119896],[-0.020223034545779,0.059309862554073,-0.096720457077026],[0.00037776990211569,-0.036601044237614,-0.062264677137136]],[[0.094228863716125,-0.048134319484234,0.083369642496109],[0.055373664945364,0.11510645598173,-0.04570272937417],[-0.041675675660372,-0.034689333289862,-0.045632064342499]],[[0.012893179431558,0.0012812283821404,-0.055031761527061],[-0.019392466172576,-0.0028763245791197,-0.021933943033218],[-0.023963881656528,0.071439430117607,0.046023011207581]],[[0.032566398382187,0.0020258098375052,0.016526609659195],[-0.013723371550441,0.026576895266771,0.022533420473337],[0.077964477241039,0.014371185563505,-0.051441878080368]],[[0.12186928093433,0.023206880316138,-0.024090686812997],[0.096417509019375,-0.095857642591,-0.027575477957726],[0.064471788704395,0.043008103966713,0.045497249811888]],[[0.0042097894474864,0.035414315760136,0.097019627690315],[0.0046286573633552,-0.034584414213896,-0.088066965341568],[-0.046137280762196,-0.00209128879942,0.0053819920867682]],[[0.089872173964977,-0.054941855370998,-0.012666451744735],[0.034014221280813,-0.13662584125996,-0.078112445771694],[-0.10642114281654,-0.16541890799999,-0.033443786203861]],[[0.036357033997774,0.10660964250565,-0.13349762558937],[0.067294344305992,0.01477777492255,-0.11338126659393],[0.028921959921718,-0.011787110008299,-0.043604113161564]],[[0.026681624352932,-0.011881935410202,-0.049913506954908],[0.029208663851023,0.067810751497746,0.00096695899264887],[0.079454869031906,0.029861496761441,-0.042959749698639]],[[0.10197620838881,0.12989768385887,-0.0051027801819146],[0.084919087588787,-0.075150713324547,-0.068571239709854],[0.082787960767746,-0.072576090693474,-0.024071732535958]],[[-0.060161110013723,-0.069352388381958,-0.029976760968566],[-0.092959344387054,-0.041795052587986,0.13421860337257],[0.014108897186816,0.011110463179648,0.09086849540472]],[[-0.019561201334,-0.041596543043852,-0.029288295656443],[-0.012897309847176,-0.0046916138380766,0.084160432219505],[-0.064671702682972,-0.013347057625651,0.088779553771019]],[[0.12171665579081,0.014895865693688,-0.023114677518606],[0.03099306114018,0.023256838321686,-0.0079946964979172],[0.022580971941352,0.031263746321201,-0.031435903161764]],[[0.037502899765968,-0.022967707365751,-0.067625321447849],[0.078403651714325,-0.069192349910736,0.092264629900455],[-0.12424305081367,-0.026831809431314,-0.012477197684348]],[[0.044461064040661,-0.018091067671776,-0.062570579349995],[0.054078999906778,0.011780951172113,-0.0093241389840841],[0.044936556369066,-0.00034512361162342,-0.049076654016972]],[[-0.00769894849509,0.04423164203763,-0.028025664389133],[0.086166992783546,0.13549663126469,0.0079812426120043],[0.03286249935627,0.031458172947168,-0.019294207915664]],[[-0.0076200105249882,0.071636609733105,0.097213812172413],[0.081283263862133,-0.14529131352901,0.056250285357237],[0.029483390972018,0.031540248543024,-0.086131945252419]],[[0.042182229459286,0.060255967080593,-0.070769399404526],[0.027144283056259,-0.11546609550714,0.013385719619691],[-0.12293233722448,-0.12559388577938,-0.078133799135685]],[[-0.050125371664762,0.16378618776798,0.045566365122795],[0.02836374938488,0.031839456409216,0.048433531075716],[0.021589182317257,0.18382892012596,0.13899226486683]],[[0.065910585224628,0.042296323925257,0.10228690505028],[0.068377457559109,0.043543271720409,0.0079464083537459],[0.073810279369354,0.071785047650337,-0.13580405712128]],[[0.039945688098669,-0.019079675897956,0.036226704716682],[0.10053990781307,-0.013968667015433,0.062019865959883],[0.056986574083567,-0.023447919636965,0.045635893940926]],[[-0.16483755409718,0.083000153303146,0.092701710760593],[-0.050486207008362,0.02987976744771,0.05639773607254],[-0.015859887003899,-0.03151848167181,0.055465292185545]],[[-0.03901444375515,0.014797972515225,-0.021764010190964],[-0.034151446074247,0.016787664964795,-0.001749763963744],[-0.032753568142653,-0.071524418890476,-0.005585225764662]],[[-0.12762029469013,-0.079560287296772,0.088132068514824],[-0.0029036167543381,0.01203581970185,-0.020009970292449],[-0.00033239903859794,0.0014774448936805,0.015425494872034]],[[0.10760572552681,-0.010264025069773,-0.08355101197958],[0.0038500484079123,-0.058952257037163,-0.047712597995996],[-0.0068399417214096,0.004549715667963,0.022590169683099]],[[0.02287139557302,-0.095064401626587,-0.012654846534133],[-0.081169664859772,-0.016040537506342,0.0033039264380932],[0.046029202640057,-0.088722214102745,-0.011913377791643]],[[0.050558626651764,-0.095043428242207,-0.080563761293888],[-0.027869433164597,-0.032194331288338,-0.027000587433577],[0.047797650098801,0.098694786429405,-0.0054921694099903]],[[0.13519743084908,0.009271964430809,0.028665337711573],[-0.029016209766269,0.02919683791697,-0.026674879714847],[0.072184577584267,-0.0019557122141123,-0.002628032816574]],[[0.051011007279158,0.11040955781937,-0.028081642463803],[0.079146541655064,0.02802843414247,-0.036239452660084],[0.029664842411876,-0.14055919647217,-0.083175361156464]],[[-0.068312361836433,-0.067004941403866,-0.16573731601238],[-0.093875981867313,-0.17586080729961,-0.11677291989326],[-0.030018534511328,-0.011480633169413,-0.13395494222641]],[[-0.041651211678982,-0.0051540564745665,-0.046651247888803],[-0.083459101617336,0.010647317394614,0.057524222880602],[0.050416953861713,0.021390551701188,0.040758904069662]],[[0.013074486516416,-0.030126927420497,-0.16363486647606],[0.076513431966305,0.048423208296299,-0.16145671904087],[0.10565944761038,-0.03137481957674,-0.12049560248852]],[[-0.043536797165871,-0.016235023736954,0.096669055521488],[-0.040225859731436,-0.0090460507199168,0.046825401484966],[-0.068923391401768,0.060496442019939,0.080564223229885]],[[0.046086519956589,-0.016884569078684,-0.015632625669241],[0.009137824177742,0.0069905295968056,-0.078918151557446],[0.040753602981567,-0.10165781527758,-0.099315971136093]],[[-0.059735845774412,0.0075906994752586,0.097526706755161],[-0.067770697176456,0.082616627216339,-0.052824165672064],[0.059652753174305,-0.030675046145916,0.062071740627289]],[[-0.016576593741775,-0.024521712213755,-0.025842754170299],[-0.010964340530336,-0.040601722896099,-0.089562132954597],[0.011265101842582,-0.075637713074684,0.12385696172714]],[[-0.028152672573924,-0.0079999510198832,0.036298420280218],[-0.16155259311199,-0.090446308255196,-0.06633972376585],[-0.038973480463028,-0.14344418048859,-0.145039498806]],[[0.019040247425437,0.06707151979208,-0.026332791894674],[-0.027250658720732,0.095807999372482,0.099759452044964],[-0.11765486001968,-0.076383583247662,-0.13430580496788]],[[0.031646326184273,-0.042575594037771,-0.066808335483074],[0.0024321665987372,0.014732311479747,0.090165533125401],[0.01876506023109,-0.06569155305624,-0.088339172303677]],[[-0.11573115736246,-0.11109563708305,-0.053496077656746],[-0.044127035886049,0.024761706590652,-0.041346538811922],[0.036181259900331,0.071604952216148,0.024355243891478]],[[0.010879839770496,0.053991504013538,0.10061572492123],[0.053367350250483,0.0019980063661933,0.07216864824295],[-0.070377178490162,-0.12639535963535,-0.045475371181965]],[[-0.029338762164116,0.051521554589272,-0.049849614500999],[0.020246705040336,-0.0088085029274225,-0.022422175854445],[0.015052846632898,-0.03043344989419,0.016698220744729]],[[0.087710291147232,0.025132670998573,-0.10240992903709],[0.012679718434811,-0.053368743509054,-0.076450996100903],[0.0511374771595,-0.013776656240225,-0.08068048208952]],[[0.10860784351826,0.15925519168377,0.03363686427474],[0.0054484931752086,-0.033648561686277,-0.025234330445528],[-0.029657296836376,-0.076207987964153,0.035744275897741]],[[0.060268644243479,-0.02185458317399,-0.038259081542492],[0.091817371547222,-0.14773879945278,0.053774692118168],[0.11003961414099,-0.016181025654078,-0.12171890586615]],[[2.3117769160308e-05,0.031077662482858,-0.038890216499567],[0.011205361224711,-0.00094595865812153,0.033142194151878],[-0.07607551664114,0.014827132225037,0.051931891590357]],[[0.050999935716391,0.10275046527386,-0.024865593761206],[0.092994891107082,0.016637718304992,0.10995388031006],[0.033875342458487,0.12892545759678,0.2171928435564]],[[0.033164981752634,0.031554974615574,-0.091460764408112],[-0.019368011504412,-0.0063519445247948,-0.055783968418837],[-0.030109373852611,0.036838859319687,-0.0094852186739445]],[[-0.037210132926702,-0.015139725059271,0.066994920372963],[-0.013771307654679,-0.059591099619865,0.058003626763821],[-0.087850205600262,-0.032582331448793,0.10821405053139]],[[-0.010688045062125,0.07191164791584,-0.017858006060123],[0.032152287662029,-0.004125373903662,-0.017655020579696],[0.02820453979075,0.065593563020229,0.0082244547083974]],[[0.064787119626999,-0.0047208010219038,0.027222128584981],[-0.032262545078993,0.010441114194691,-0.013460938818753],[-0.05426312610507,-0.012128015980124,-0.054891224950552]],[[0.044368207454681,0.015483872033656,-0.0328284278512],[0.0252530798316,-0.07515274733305,0.0060463901609182],[0.10847195237875,-0.078993514180183,0.028467524796724]],[[0.11517146974802,-0.030703369528055,0.00032756611471996],[0.10836458951235,0.03411678597331,-0.16745668649673],[-0.0034582633525133,-0.083884119987488,-0.10321621596813]],[[-0.052756205201149,0.080762013792992,0.096130840480328],[0.0053166747093201,0.026132877916098,0.091348364949226],[0.12613604962826,-0.0069902432151139,0.18665651977062]],[[-0.011249689385295,0.069709874689579,0.028974518179893],[-0.036841329187155,0.054965957999229,-0.0086630573496222],[-0.048701796680689,-0.039472751319408,0.016737386584282]],[[-0.084332957863808,0.015629757195711,-0.1182980760932],[-0.04787714779377,-0.069882281124592,-0.0517159961164],[0.062621660530567,0.0066168694756925,-0.064681842923164]],[[-0.068458497524261,-0.040161933749914,0.080267071723938],[-0.038941524922848,-0.063180223107338,0.040286872535944],[0.060553025454283,0.051850374788046,0.073111273348331]],[[-0.11532452702522,-0.092081807553768,0.047589499503374],[-0.032156255096197,-0.070966817438602,0.023541137576103],[-0.081050075590611,0.0010907301912084,0.049610413610935]],[[-0.022760072723031,0.018466528505087,-0.036166310310364],[0.033412400633097,-0.11838053911924,-0.1138960570097],[-0.030506255105138,-0.030974322929978,-0.084436066448689]]],[[[-0.072647355496883,-0.039793729782104,-0.022855581715703],[0.066702708601952,0.037313498556614,-0.039416395127773],[-0.067011877894402,-0.062456604093313,-0.11343558132648]],[[0.00049584335647523,-0.13608705997467,-0.022246824577451],[0.054177187383175,-0.095109857618809,-0.11248654127121],[-0.029274770990014,0.10431222617626,-0.081592842936516]],[[-0.004674278665334,0.051540199667215,-0.069959655404091],[0.070983320474625,-0.024193003773689,-0.11259141564369],[0.049679219722748,0.091111965477467,-0.016582844778895]],[[-0.088794372975826,-0.1150848120451,0.0061235511675477],[0.0098814675584435,0.031960785388947,0.044463351368904],[0.058971203863621,-0.098568417131901,-0.0086913155391812]],[[-0.17916022241116,0.062301684170961,-0.058402638882399],[-0.020961981266737,-0.0036992565728724,-0.050279106944799],[0.094770982861519,0.047499004751444,-0.039216067641973]],[[0.0082611916586757,0.061489049345255,0.044207766652107],[-0.024991780519485,-0.10244878381491,0.023931184783578],[0.085041537880898,-0.046987541019917,-0.029993636533618]],[[-0.091266706585884,-0.011126764118671,-0.06248489394784],[-0.10799597203732,-0.0039971200749278,0.028319243341684],[0.018023882061243,-0.026887586340308,-0.084629349410534]],[[-0.054994467645884,0.0028040478937328,0.03082899749279],[-0.06391628831625,-0.01303842663765,0.08862441778183],[-0.056215491145849,-0.022984320297837,0.026713877916336]],[[-0.014517727307975,-0.054377388209105,-0.11930627375841],[0.02418077737093,-0.010361831635237,-0.084282159805298],[0.06209971010685,-0.0066744009964168,0.11338123679161]],[[-0.0070470948703587,-0.0022153197787702,-0.075670972466469],[-0.038546714931726,0.064521975815296,-0.03344651311636],[-0.052794482558966,0.058179933577776,0.062390547245741]],[[0.047900468111038,-0.014834618195891,-0.050205904990435],[0.015380578115582,-0.0078494502231479,-0.073133155703545],[-0.014466693624854,0.1305842846632,-0.089259617030621]],[[0.092793583869934,-0.007589184679091,0.005892617162317],[-0.13469216227531,-0.036813836544752,-0.038341347128153],[0.007439028006047,-0.128805950284,-0.0048175151459873]],[[-0.062281135469675,-0.050506267696619,0.0071148425340652],[0.13387684524059,0.028163721784949,0.20611624419689],[-0.10334605723619,-0.20065739750862,-0.092244297266006]],[[-0.0061995657160878,-0.00209806766361,0.11082178354263],[-0.0019168900325894,-0.0054692593403161,0.063467480242252],[-0.098088443279266,0.025600176304579,0.052300833165646]],[[0.018301852047443,-0.031517878174782,-0.072746098041534],[0.035319615155458,-0.04267692938447,-0.074856393039227],[0.075031094253063,0.09009151160717,-0.020840613171458]],[[0.088210448622704,0.0072225662879646,0.017775986343622],[-0.011010300368071,-0.061265327036381,0.069656401872635],[-0.010384360328317,-0.056888807564974,0.076637372374535]],[[0.013835862278938,0.16967110335827,-0.03819553181529],[0.014090782962739,0.050523180514574,-0.10801196098328],[0.13060458004475,0.12142426520586,-0.097671717405319]],[[-0.069449692964554,-0.21982474625111,0.15182784199715],[0.013643490150571,-0.10149542242289,0.010482751764357],[-0.033740255981684,-0.085085108876228,-0.052568919956684]],[[0.00040891877142712,0.062330655753613,-0.060868676751852],[0.10093806684017,-0.045764613896608,-0.090533129870892],[-0.054031554609537,0.083279609680176,-0.059661094099283]],[[-0.055227737873793,0.016361091285944,-0.062220353633165],[-0.0081688882783055,0.05768796429038,-0.0096195107325912],[-0.020514467731118,0.042719058692455,0.0034674284979701]],[[-0.045610249042511,0.022113312035799,-0.12168695777655],[-0.018486199900508,-0.038139332085848,-0.13973517715931],[-0.018983189016581,-0.07956600934267,-0.035088814795017]],[[0.032898921519518,0.0033497037366033,0.13621866703033],[0.0045663518831134,0.013010768219829,-0.03421538323164],[0.0059481826610863,-0.11977601051331,0.00063135521486402]],[[-0.039460156112909,-0.11090517789125,-0.11349332332611],[-0.13971745967865,0.18018138408661,0.079367108643055],[0.054627951234579,-0.12851679325104,0.16343158483505]],[[-0.043384253978729,-0.0064739277586341,-0.033737443387508],[-0.0047934441827238,0.17069241404533,0.042618881911039],[-0.028720622882247,0.20313391089439,0.0047307866625488]],[[0.065559424459934,-0.015123257413507,0.057329267263412],[0.01209604460746,0.001852972083725,-0.12127047777176],[0.00026783719658852,0.17783692479134,-0.032675635069609]],[[0.008024163544178,0.0046575213782489,-0.0031334394589067],[-0.020007101818919,0.063894473016262,0.01547939889133],[-0.027803298085928,-0.016432208940387,-0.0021896299440414]],[[-0.16789819300175,-0.054232273250818,-0.036132451146841],[-0.10783120244741,0.041592802852392,-0.04058625549078],[0.11136454343796,0.027018558233976,0.058758594095707]],[[-0.015014561824501,-0.047070637345314,-0.0028169765137136],[-0.030602077022195,-0.032714478671551,0.046169675886631],[0.014270697720349,-0.033415473997593,0.068460188806057]],[[0.028054913505912,-0.11311984062195,-0.15709012746811],[0.12041838467121,-0.095927253365517,-0.093707203865051],[0.058160822838545,0.036825712770224,-0.0051557775586843]],[[-0.013479749672115,-0.074406281113625,0.089693151414394],[0.051878176629543,-0.074816308915615,-0.04982390999794],[0.026386555284262,0.026786498725414,-0.0075459904037416]],[[0.093564346432686,0.10909621417522,0.042420741170645],[-0.092418320477009,-0.039641115814447,0.026162540540099],[0.083163477480412,-0.093659572303295,-0.059558268636465]],[[-0.039875146001577,-0.029455902054906,0.15183152258396],[-0.06748989969492,-0.024024978280067,-0.033461797982454],[0.034790448844433,-0.069702312350273,0.045762304216623]],[[-0.095388285815716,-0.096446260809898,-0.021267559379339],[0.0097689451649785,0.0061534894630313,-0.11873699724674],[-0.058254946023226,-0.054646115750074,-0.053810033947229]],[[-0.090715683996677,0.043161809444427,0.083867534995079],[-0.0049896147102118,0.029825987294316,-0.020604832097888],[-0.040504459291697,-0.069591753184795,-0.029833655804396]],[[-0.22605700790882,0.025981115177274,-0.043936565518379],[-0.2272834777832,0.0095305442810059,-0.00083219824591652],[0.031469162553549,-0.0092207379639149,-0.0058857095427811]],[[-0.082513906061649,-0.028009688481688,0.059159852564335],[-0.064276330173016,-0.025438066571951,0.043124690651894],[-0.034096766263247,-0.046527449041605,0.011523094028234]],[[0.013258506543934,0.029160156846046,-0.051845673471689],[0.033177796751261,-0.12613287568092,0.047937452793121],[-0.057631481438875,-0.064095012843609,-0.04777542129159]],[[0.043940994888544,-0.072235427796841,-0.091045901179314],[-0.063594192266464,-0.0092126978561282,-0.070473290979862],[-0.057908698916435,0.031978666782379,-0.020080026239157]],[[-0.02247797138989,-0.047535128891468,-0.077502518892288],[-0.12072414159775,-0.02222334779799,0.13649970293045],[-0.030856708064675,0.0039172461256385,0.23254688084126]],[[8.5956162365619e-05,-0.035017460584641,0.033782757818699],[0.014892840757966,0.023465156555176,-0.071000419557095],[0.024526290595531,-0.048882208764553,-0.007948150858283]],[[0.060138814151287,-0.073589734733105,-0.16373308002949],[0.034721132367849,-0.018992694094777,0.036331210285425],[0.045286301523447,-0.055346455425024,-0.012684150598943]],[[-0.10381427407265,-0.10054741799831,0.022117648273706],[-0.050125375390053,0.053014028817415,-0.0027397859375924],[-0.048228245228529,0.16721487045288,0.085953265428543]],[[0.10309854894876,0.031796120107174,0.102255679667],[-0.064322210848331,-0.072505861520767,0.013906458392739],[-0.027831444516778,-0.032126549631357,-0.0075929667800665]],[[0.0041179424151778,0.003776025492698,0.042628966271877],[0.07937179505825,0.021998066455126,-0.031048249453306],[0.046497818082571,0.12953920662403,-0.060799844563007]],[[-0.0053239320404828,0.12852472066879,-0.10488889366388],[-0.10416483134031,0.13727702200413,-0.16884514689445],[0.01158834528178,0.073617942631245,-0.10751555860043]],[[0.021842174232006,-0.089362114667892,0.046830032020807],[-0.029458038508892,-0.0096858246251941,-0.1521021425724],[0.014825481921434,0.051337234675884,0.086199730634689]],[[-0.1109432131052,-0.039098873734474,0.096241116523743],[-0.097271323204041,0.025399979203939,0.098478183150291],[-0.067462705075741,0.033970471471548,0.034595981240273]],[[-0.011796509847045,0.041308999061584,-0.027387524023652],[-0.0046115186996758,-0.022026903927326,-0.00039625121280551],[0.05056531727314,0.0080405436456203,-0.1412011384964]],[[-0.023774245753884,-0.0092444373294711,0.080026119947433],[-0.022400625050068,-0.19628416001797,0.00057925889268517],[0.048850208520889,-0.010354366153479,0.09317122399807]],[[0.091673620045185,0.09952187538147,-0.020802672952414],[-0.050646413117647,0.064310237765312,-0.0051422687247396],[-0.066602379083633,0.017656283453107,-0.0051560951396823]],[[-0.0060682939365506,0.012749281711876,-0.064896382391453],[-0.015775371342897,0.054838094860315,-0.0077792783267796],[-0.0090780425816774,-0.047723170369864,-0.01797335781157]],[[-0.015505868010223,0.15537376701832,0.12141145020723],[-0.093234769999981,-0.0043638269416988,0.15882484614849],[-0.023451426997781,-0.010128436610103,-0.065017476677895]],[[-0.015723317861557,0.067495010793209,-0.0007932148873806],[0.026461880654097,-0.064086213707924,0.031933043152094],[-0.020089346915483,0.029015172272921,0.077704876661301]],[[0.11878851801157,0.18140916526318,-0.014571893028915],[-0.033967148512602,0.046115193516016,-0.046939261257648],[0.015968438237906,-0.13088689744473,-0.059818815439939]],[[0.013613392598927,-0.034787259995937,0.056776240468025],[0.034787409007549,-0.030970811843872,-0.014535032212734],[0.045820519328117,0.021606115624309,-0.022266067564487]],[[-0.047147743403912,0.0097159678116441,0.1153839379549],[-0.019281564280391,-0.069869607686996,0.047945454716682],[0.13657201826572,-0.012461815029383,-0.026449609547853]],[[-0.037022791802883,-0.19795669615269,-0.0273506809026],[0.17577902972698,-0.0056999274529517,0.010412285104394],[-0.015299341641366,0.0062091471627355,-0.12537226080894]],[[0.0060337572358549,0.02111810259521,-0.16084066033363],[-0.02448458969593,-0.0320765376091,-0.010198445990682],[-0.089726455509663,-0.025233957916498,-0.19592818617821]],[[0.040177550166845,-0.096316538751125,0.079686008393764],[0.051951143890619,0.12370247393847,0.11182080209255],[0.11561243981123,0.1067128777504,0.013424293138087]],[[0.012108649127185,-0.010739082470536,0.05922918394208],[0.032039631158113,-0.074729725718498,0.022187605500221],[-0.016887489706278,-0.041518565267324,-0.0029268404468894]],[[0.07086443901062,-0.093836098909378,0.064701668918133],[-0.086613059043884,0.01034555863589,-0.078040689229965],[0.088210642337799,-0.013994110748172,-0.055445834994316]],[[0.1515629440546,0.072355672717094,-0.12294014543295],[-0.050360810011625,0.066022038459778,-0.073268756270409],[0.11265113204718,-0.068403199315071,-0.2060344517231]],[[0.061999119818211,0.020645899698138,-0.020896980538964],[-0.033531941473484,0.10475467145443,-0.057869732379913],[-0.088056720793247,-0.033831853419542,0.02127000130713]],[[0.057773549109697,-0.014476012438536,-0.052181057631969],[0.056692283600569,0.012906733900309,-0.086551949381828],[-0.055989999324083,-0.075188145041466,-0.00047755395644344]]],[[[-0.027135388925672,0.029641913250089,-0.042016658931971],[-0.016642143949866,-0.073277950286865,-0.0097528006881475],[-0.046592965722084,-0.031837172806263,-0.073567040264606]],[[0.030058113858104,-0.049826625734568,-0.081275559961796],[-0.012195989489555,-0.028178678825498,0.0016736891120672],[0.017247440293431,-0.04242854937911,-0.042962778359652]],[[0.057786487042904,0.041911251842976,0.030434004962444],[0.003335885470733,-0.039534110575914,0.0450254753232],[-0.074793957173824,-0.075980931520462,-0.1397297680378]],[[0.024917071685195,0.067986503243446,-0.0060882666148245],[0.063517384231091,-0.018744271248579,-0.12318619340658],[-0.011362414807081,-0.04142227396369,-0.085405953228474]],[[-0.017328031361103,-0.0021543204784393,-0.017805812880397],[0.017909424379468,0.10033925622702,-0.030446618795395],[-0.044207233935595,-0.0016659089596942,-0.044819638133049]],[[0.031925033777952,0.024093242362142,-0.052746560424566],[0.063376769423485,0.041495107114315,0.048895232379436],[-0.076065115630627,-0.035870332270861,-0.0051249023526907]],[[0.039479799568653,0.0023907159920782,0.017213961109519],[-0.10291691869497,-0.011941207572818,-0.0010726115433499],[-0.074438251554966,0.0043825367465615,-0.043643835932016]],[[0.050334870815277,-0.062639102339745,-0.087471902370453],[0.038442261517048,-0.02458131313324,-0.088009931147099],[0.093546062707901,-0.085122615098953,-0.033618733286858]],[[-0.067524991929531,0.046823941171169,0.02873176522553],[0.031952276825905,0.0074531519785523,-0.013362430967391],[0.019726067781448,-0.064692355692387,-0.069085963070393]],[[-0.084479354321957,0.0748236104846,-0.053681466728449],[-0.067819632589817,-0.076432205736637,-0.010397505946457],[-0.041839227080345,0.093110606074333,-0.027315825223923]],[[0.0048024705611169,-0.074827797710896,0.013060505501926],[0.024841761216521,-0.094780020415783,0.00091494160005823],[0.0079799005761743,-0.080641575157642,0.078633330762386]],[[0.082256004214287,-0.054119803011417,0.058018568903208],[0.070313721895218,0.048456337302923,0.021422194316983],[0.027371991425753,-0.025147620588541,-0.021001901477575]],[[-0.050583437085152,0.064882427453995,-0.027447333559394],[-0.043203923851252,-0.04949776083231,-0.024837201461196],[-0.016414113342762,-0.01795588247478,0.030215496197343]],[[0.0034613118041307,0.057870175689459,0.0050968951545656],[-0.067913100123405,-0.011052920483053,0.011242096312344],[0.019751969724894,0.037150140851736,-0.071519605815411]],[[-0.003516105003655,-0.049042366445065,-0.017691560089588],[0.014311503618956,-0.061373475939035,-0.10760459303856],[-0.027424151077867,-0.08688809722662,-0.011408298276365]],[[0.080043256282806,0.023880859836936,0.053959976881742],[0.0096321506425738,0.015174989588559,-0.078744769096375],[-0.024346735328436,0.0042625567875803,0.024683611467481]],[[-0.056454621255398,-0.03773757442832,0.17105731368065],[-0.068305946886539,-0.05766911059618,-0.023312425240874],[-0.002249225275591,-0.0025149073917419,-0.051017962396145]],[[-0.0088534411042929,0.087163351476192,0.011910856701434],[-0.094911798834801,-0.038839869201183,-0.066687740385532],[-0.025526098906994,-0.10271086543798,-0.13014777004719]],[[-0.10563374310732,0.060245040804148,-0.014780500903726],[0.056453716009855,-0.02421585470438,-0.0063995127566159],[0.0081146946176887,0.031706191599369,-0.030956536531448]],[[0.0076428721658885,0.021764222532511,0.0045713409781456],[0.03128969669342,-0.037755634635687,-0.033034786581993],[0.011832845397294,-0.012033447623253,0.043077431619167]],[[0.0056283352896571,0.16419769823551,-0.059585403650999],[-0.010196566581726,0.019336001947522,-0.011727626435459],[0.001289404113777,-0.083741001784801,0.029047908261418]],[[0.066381856799126,0.0069823120720685,-0.15578880906105],[0.0053431880660355,-0.012484631501138,0.076734155416489],[0.07113429158926,-0.0074210586026311,-0.040039584040642]],[[0.037059843540192,0.02883505821228,0.018311100080609],[-0.048064328730106,-0.10424713045359,0.016679486259818],[-0.079271554946899,0.0014003210235387,-0.019919468089938]],[[-0.054392296820879,0.056724987924099,0.11674531549215],[0.037325065582991,0.018410120159388,0.034763116389513],[0.048725660890341,0.075563751161098,0.17114140093327]],[[0.18834553658962,0.086464367806911,-0.039826676249504],[-0.10660570859909,0.063190989196301,0.0023472490720451],[0.060643043369055,-0.013381697237492,0.18481750786304]],[[0.0268186442554,0.03274267911911,-0.01591513492167],[0.083871565759182,0.047915443778038,0.0022166317794472],[0.043502893298864,-0.00024111471429933,0.067546106874943]],[[-0.011579955928028,-0.08242529630661,0.00094496598467231],[-0.010355733335018,-0.076188459992409,-0.045196320861578],[-0.12700678408146,-0.028788583353162,0.051775448024273]],[[0.075242772698402,-0.047667391598225,-0.030126886442304],[0.041275691241026,-0.016213376075029,-0.0096996584907174],[-0.1016848012805,0.08224368840456,-0.033880989998579]],[[-0.012145872227848,-0.1053254827857,0.0097556123510003],[-0.032223366200924,-0.026454793289304,0.017093556001782],[-0.090672299265862,-0.022731507197022,0.00017176556866616]],[[0.03023955412209,-0.044685427099466,0.024290665984154],[0.077308848500252,-0.028520694002509,0.014681807719171],[0.010007207281888,-0.010754854418337,0.096228577196598]],[[-0.024758769199252,0.0040981653146446,0.061039697378874],[0.0068588056601584,-0.029313802719116,-0.02047729678452],[0.06195966526866,0.022370180115104,-0.097024016082287]],[[0.055977884680033,0.12019991129637,0.099926173686981],[0.058215864002705,-0.0025873801205307,-0.086775526404381],[-0.037156648933887,-0.030634442344308,-0.045424029231071]],[[-0.0019334298558533,0.053572654724121,0.051595233380795],[-0.053857330232859,-0.056645754724741,-0.035971734672785],[0.045337274670601,-0.039570495486259,-0.076418809592724]],[[-0.15942868590355,-0.06076717376709,0.078133344650269],[-0.1064066439867,0.066859848797321,-0.011270582675934],[-0.070510283112526,0.016721153631806,-0.070797331631184]],[[-0.026645768433809,0.080354534089565,-0.025947313755751],[-0.0051492601633072,-0.023500373587012,0.0095996055752039],[-0.10666500031948,0.054990097880363,-0.047332238405943]],[[0.011849126778543,-0.013770415447652,-0.035529095679522],[0.013568256050348,-0.037942830473185,-0.080692179501057],[-0.025665562599897,0.033152658492327,0.016945840790868]],[[-0.035231564193964,0.065030246973038,-0.073114991188049],[-0.028689021244645,-0.014279582537711,-0.026193371042609],[0.067984268069267,0.070823930203915,0.053559597581625]],[[-0.096547730267048,-0.019852180033922,-0.085140682756901],[0.091209381818771,0.033508747816086,-0.011699778027833],[-0.24180060625076,0.055806245654821,-0.087865024805069]],[[-0.28090327978134,0.020931113511324,0.050503138452768],[0.030184360221028,-0.070267252624035,-0.005135708488524],[-0.05450539663434,-0.050519771873951,0.043951749801636]],[[-0.011836996302009,0.049819998443127,0.01432359777391],[-0.0081797894090414,-0.026654096320271,0.048265893012285],[-0.082121677696705,-0.087231889367104,0.019152412191033]],[[0.053076859563589,0.037655360996723,0.040593259036541],[0.13850873708725,-0.015374659560621,-0.033777389675379],[-0.0098055489361286,-0.063546687364578,-0.12719970941544]],[[-0.05515256524086,-0.010018761269748,-0.022073285654187],[-0.05384024977684,0.0228071808815,0.039384618401527],[0.015750166028738,-0.03651737049222,0.044749040156603]],[[0.081073336303234,-0.073042139410973,-0.094765447080135],[0.01019177865237,-0.052469942718744,-0.032129921019077],[-0.0052528427913785,-0.011394751258194,-0.01647425070405]],[[0.025302803143859,-0.0053181485272944,0.069585517048836],[0.0014935728395358,-0.036236327141523,-0.0015493241371587],[-0.072487160563469,-0.038811095058918,0.017218293622136]],[[0.048715598881245,-0.04900473728776,0.0005262964987196],[0.082687966525555,0.081293329596519,-0.060473531484604],[0.019401149824262,-0.032650046050549,-0.028746955096722]],[[-0.019247304648161,-0.051103752106428,-0.018051624298096],[-0.11196770519018,-0.092840895056725,-0.13298982381821],[0.068347401916981,0.01501477882266,-0.036756385117769]],[[-0.00082280533388257,0.02657019905746,-0.095660805702209],[0.016315866261721,-0.063183441758156,0.031042059883475],[-0.090222261846066,0.039370071142912,-0.015268071554601]],[[0.022993175312877,0.035820420831442,0.030862076207995],[0.015505454503,0.071607701480389,0.043033879250288],[-0.057069286704063,-0.10121309757233,-0.12896353006363]],[[0.10428478568792,0.019049437716603,0.036536671221256],[0.05790589377284,-0.025900723412633,0.036339864134789],[-0.0015923751052469,-0.071324624121189,-0.055258814245462]],[[-0.014219889417291,0.0053870710544288,0.020756293088198],[0.063033573329449,0.12346615642309,-0.031930603086948],[-0.091037094593048,-0.050630833953619,-0.06638440489769]],[[0.026727866381407,-0.075865231454372,-0.039811171591282],[-0.026283040642738,-0.0099537950009108,-0.035987962037325],[-0.10638464987278,0.041494607925415,-0.022915141656995]],[[0.089596480131149,0.051012508571148,0.0096195712685585],[0.025661539286375,-0.0020694199483842,0.16648115217686],[0.026507176458836,0.042890142649412,0.12297745794058]],[[-0.097861468791962,-0.036769084632397,-0.062989272177219],[-0.030892634764314,0.12267232686281,0.030123447999358],[0.082547731697559,-0.069130048155785,-0.005980122834444]],[[0.021569015458226,-0.099256478250027,0.06544728577137],[0.044521626085043,0.086082383990288,0.090823866426945],[0.049411948770285,-0.008464771322906,0.012868661433458]],[[-0.0090833883732557,-0.061549384146929,0.021669507026672],[0.022711398079991,-0.072865784168243,0.0017871719319373],[-0.07278486341238,-0.010592342354357,0.045265682041645]],[[0.032616071403027,0.022391345351934,0.010435269214213],[-0.064318478107452,0.043040692806244,0.013798611238599],[0.10106322169304,0.019363334402442,0.020560598000884]],[[-0.0041594160720706,-0.036152839660645,0.028938209638],[0.079759813845158,-0.032510507851839,0.089644007384777],[0.027192836627364,0.0052767773158848,-0.045166827738285]],[[-0.03790495917201,0.035895571112633,0.030094439163804],[0.0069796284660697,-0.12091057002544,0.044057197868824],[0.0085089597851038,-0.053448051214218,-0.1184619218111]],[[-0.10522972792387,0.094459421932697,-0.042016346007586],[0.013228828087449,0.089332319796085,-0.030466882511973],[0.028812846168876,0.16815935075283,-0.064526744186878]],[[0.0037515084259212,-0.016230840235949,0.0149667551741],[-0.0066681005991995,0.042510744184256,0.016559759154916],[0.0036443362478167,0.021487237885594,-0.050016257911921]],[[-0.0098537597805262,0.010103276930749,-0.026335826143622],[-0.044643379747868,-0.080867610871792,-0.0027464833110571],[-0.021665835753083,0.054346583783627,-0.059568323194981]],[[0.075539976358414,0.10027841478586,0.020416505634785],[0.021186070516706,0.026188664138317,-0.0069253733381629],[-0.014758256264031,0.10318584740162,0.087427586317062]],[[-0.021055130288005,0.018506955355406,-0.058301649987698],[-0.0038452653679997,-0.13464938104153,0.020953524857759],[-0.030995590612292,0.047547519207001,-0.021767279133201]],[[0.0031159836798906,0.040621224790812,0.0029018197674304],[0.078682720661163,-0.05214786157012,0.0022748115006834],[-0.0077376984991133,0.00060506450245157,-0.0001751150120981]]],[[[0.0051881894469261,0.0633250400424,0.0082152336835861],[0.0045182565227151,-0.02521713450551,-0.028942659497261],[-0.063087373971939,0.024497648701072,0.0091146416962147]],[[-0.032480850815773,-0.010825995355844,0.048862915486097],[-0.031678341329098,0.0074294623918831,0.001244623796083],[0.075303874909878,-0.035696730017662,-0.047315381467342]],[[-0.020787555724382,-0.013927998021245,-0.084136083722115],[-0.14857763051987,-0.0087950248271227,0.13323403894901],[0.02828249707818,0.0058297943323851,-0.05956332758069]],[[-0.01366666611284,-0.03991848602891,-0.017287097871304],[-0.066017806529999,0.058956000953913,-0.024625893682241],[-0.079596020281315,-0.049449972808361,0.092287547886372]],[[0.0062780743464828,0.024377061054111,0.030503714457154],[-0.067527040839195,-0.012060682289302,-0.026558449491858],[-0.012898481450975,0.080710545182228,-0.078160755336285]],[[-0.036720313131809,-0.020894031971693,-0.031481515616179],[-0.041463144123554,0.015564535744488,0.091458663344383],[0.03097952529788,0.010489573702216,-0.017461510375142]],[[-0.031726092100143,0.03586371243,-0.052676238119602],[-0.053206406533718,0.01159125380218,0.049090549349785],[-0.0075489031150937,0.048518795520067,0.011304616928101]],[[0.053801741451025,0.015990486368537,-0.030885277315974],[-0.062202453613281,0.05368284881115,-0.038418117910624],[-0.025731090456247,-0.062575846910477,-0.0098666166886687]],[[0.026554154232144,-0.048075657337904,0.037468329071999],[0.018289394676685,-0.027204051613808,0.029870335012674],[-0.050875660032034,0.043391663581133,0.012189098633826]],[[-0.029298869892955,0.031636353582144,-0.027214545756578],[0.01711492985487,0.036202177405357,0.073364779353142],[0.068712338805199,-0.074316136538982,-0.041176278144121]],[[-0.015293216332793,-0.0020481427200139,0.015395865775645],[-0.0020957065280527,-0.0011088538449258,0.0042432122863829],[-0.0029683937318623,-0.04240195453167,0.062984049320221]],[[-0.013601721264422,0.018865067511797,0.00019688955217134],[-0.019604075700045,0.050868149846792,0.018429974094033],[0.10538764297962,0.0087298238649964,-0.026821907609701]],[[0.018126517534256,-0.0091528668999672,0.09981182962656],[0.02777705155313,-0.037792637944221,0.025717761367559],[0.02061577886343,0.065849505364895,-0.11898156255484]],[[0.071347549557686,0.014177117496729,0.05481681227684],[-0.024521572515368,0.0308767426759,-0.032797042280436],[0.042419128119946,-0.040791124105453,0.07671432197094]],[[-0.012605998665094,-0.0049492348916829,-0.053007543087006],[0.063758336007595,-0.011483241803944,-0.019913339987397],[-0.033560965210199,-0.0052947024814785,0.038342215120792]],[[-0.064900703728199,0.13847756385803,-0.14446604251862],[0.031921561807394,0.084838673472404,-0.073308050632477],[0.11190830916166,0.040625266730785,0.084443025290966]],[[-0.030611166730523,-0.0064235585741699,-0.041247360408306],[0.050863947719336,0.0078777568414807,0.047958482056856],[0.055565383285284,0.00037739262916148,-0.020784862339497]],[[0.045274522155523,0.016899405047297,0.010043072514236],[-0.037804286926985,-0.049276534467936,-0.068719498813152],[0.046066671609879,0.067010574042797,-0.1119531840086]],[[0.014464006759226,0.0026550178881735,0.058968536555767],[0.080565519630909,-0.095610767602921,-0.042990542948246],[-0.021854288876057,0.00047649678890593,-0.15132693946362]],[[-0.032354645431042,0.0023661351297051,0.043054815381765],[0.037704668939114,-0.025383774191141,0.060619175434113],[-0.030197996646166,-0.012789242900908,0.0058903270401061]],[[0.032600227743387,-0.042240187525749,-0.07880562543869],[-0.043038964271545,0.024674162268639,0.041367776691914],[0.022728720679879,-0.0095953280106187,-0.043358758091927]],[[0.0064383395947516,0.099394790828228,-0.053000513464212],[0.06866679340601,0.076828718185425,-0.070620007812977],[-0.068470798432827,0.044087678194046,-0.024254895746708]],[[0.0029846152756363,-0.11889592558146,-0.0017146200407296],[-0.025223687291145,0.026130316779017,-0.045120403170586],[0.085539773106575,0.047072131186724,-0.046402301639318]],[[0.010623326525092,0.10048754513264,0.0090982308611274],[0.071103475987911,-0.026891645044088,0.16315726935863],[0.023283304646611,-0.05961687117815,0.10952016711235]],[[-0.01867245696485,0.026306195184588,0.028216075152159],[-0.039619501680136,-0.16602613031864,0.027141338214278],[0.019220808520913,0.045595239847898,-0.050782557576895]],[[-0.0025216299109161,0.091926395893097,-0.02986304089427],[-0.06264490634203,-0.047085750848055,-0.079401962459087],[-0.030259642750025,-0.079334460198879,-0.042145229876041]],[[0.0084381140768528,-0.0055596372112632,0.074257001280785],[0.051614571362734,0.094076424837112,0.053248841315508],[-0.064521618187428,-0.0084763411432505,0.025376752018929]],[[0.087554514408112,-0.025616578757763,-0.0076838573440909],[0.037104934453964,0.057417474687099,0.15927469730377],[0.071938768029213,0.0030852989293635,0.068584926426411]],[[0.089810959994793,0.026691991835833,0.071381725370884],[-0.047359991818666,-0.012218052521348,0.007557054515928],[-0.020357878878713,0.019052777439356,0.024089487269521]],[[0.052443437278271,-0.051447443664074,-0.023035021498799],[0.11827692389488,-0.10521171241999,-0.066013731062412],[0.032016113400459,-0.015529810450971,-0.019360842183232]],[[0.05956269428134,0.061303738504648,-0.0064063891768456],[0.032914362847805,0.01556175481528,-0.011923551559448],[-0.028839014470577,-0.038623124361038,0.025957867503166]],[[0.042804453521967,-0.007968831807375,-0.070470556616783],[0.10325650125742,0.039110034704208,0.005088048055768],[-0.03693875297904,-0.075818978250027,0.067381508648396]],[[-0.023417357355356,-0.05436808988452,0.037513319402933],[-0.019264943897724,-0.01899897493422,-0.028611999005079],[0.0506981164217,0.016777437180281,-0.03746248409152]],[[0.060117699205875,0.057710234075785,-0.04172782972455],[-0.063573405146599,-0.0076729590073228,-0.099894262850285],[-0.0062974514439702,0.038239754736423,0.059871487319469]],[[-0.029031675308943,0.03513927012682,-0.025147546082735],[-0.015376925468445,0.083996742963791,0.0034158620983362],[0.056608594954014,0.013260966166854,0.017138849943876]],[[-0.019736362621188,-0.058214869350195,-0.056576877832413],[-0.018746394664049,0.039242401719093,-0.0040090763941407],[0.0049327071756124,0.022415280342102,-0.034788049757481]],[[-0.023471942171454,0.034323666244745,0.098869271576405],[0.074368961155415,-0.023894777521491,-0.0044494247995317],[-0.062572777271271,-0.0019976457115263,-0.073220252990723]],[[0.043438978493214,0.0066214888356626,0.0059531847946346],[-0.0080045312643051,0.0363191626966,-0.042885679751635],[-0.033356487751007,-0.060039293020964,-0.0074202893301845]],[[0.0025578173808753,0.035028707236052,-0.027735855430365],[-0.0076143783517182,-0.020909067243338,0.090036645531654],[0.045445457100868,-0.039965983480215,0.011500688269734]],[[-0.014595658518374,0.10246137529612,-0.064262881875038],[0.023184321820736,0.020724287256598,0.0099220816046],[-0.037785079330206,0.096906170248985,-0.079566575586796]],[[-0.023674219846725,0.057742927223444,0.036753159016371],[-0.0012409404153004,0.018275206908584,0.13941609859467],[-0.042705669999123,-0.015970557928085,-0.071778640151024]],[[-0.075393602252007,0.054312255233526,-0.010862961411476],[0.018704829737544,0.0033957255072892,-0.00083848414942622],[0.0237403716892,-0.0097194667905569,-0.0010308871278539]],[[0.0088643813505769,-0.058185774832964,0.052301801741123],[0.035852715373039,-0.061386201530695,-0.12473440915346],[-0.00096476526232436,0.045411318540573,0.08019045740366]],[[0.003759999293834,-0.030362907797098,-0.023490320891142],[-0.0092611638829112,-0.031544283032417,0.038394432514906],[-0.016409790143371,0.045949544757605,0.028330506756902]],[[-0.050105210393667,0.058710660785437,-0.027761669829488],[-0.0074121998623013,-0.036203008145094,-0.048442237079144],[-0.00093112833565101,-0.021432841196656,0.083709858357906]],[[-0.022105561569333,0.014734448865056,-0.035095028579235],[-0.043758366256952,0.0079590147361159,0.010548927821219],[0.045276869088411,-0.049682628363371,0.031841099262238]],[[0.0029304448980838,-0.0029797989409417,0.038878753781319],[-0.052899617701769,0.057294953614473,-0.0050345561467111],[0.020926686003804,0.074080161750317,0.037981547415257]],[[0.087345644831657,-0.092950001358986,-0.051911249756813],[0.10950767248869,-0.050615552812815,0.09826598316431],[0.0522655621171,0.030170500278473,0.023779023438692]],[[0.075485579669476,0.029682498425245,-0.028382247313857],[0.037802316248417,0.0087515981867909,-0.014075032435358],[0.0060022622346878,0.050211202353239,0.11161867529154]],[[-0.13972260057926,-0.0042098984122276,-0.076479896903038],[-0.051455173641443,-0.034558080136776,0.021713797003031],[0.048830110579729,0.043080221861601,0.086766868829727]],[[0.012564060278237,-0.028398390859365,-0.025285854935646],[-0.053324908018112,-0.057939410209656,-0.0080392155796289],[0.068028464913368,-0.01339808665216,0.037648089230061]],[[0.01966256275773,-0.043663874268532,0.069304399192333],[0.001114193466492,0.0043130596168339,0.056372694671154],[0.10624887049198,0.040249913930893,-0.066790923476219]],[[-0.051060888916254,0.027995696291327,0.0041076415218413],[-0.018448077142239,-0.029639579355717,0.054801620543003],[0.034849166870117,0.034338228404522,0.026996448636055]],[[0.01456475071609,-0.027599094435573,-0.040675859898329],[-0.018820136785507,0.018469959497452,0.0050664367154241],[-0.10852537304163,-0.020325001329184,-0.0043817884288728]],[[-0.014449334703386,0.039108980447054,0.016330050304532],[-0.063309945166111,-0.042160954326391,0.011002880521119],[0.04335767403245,-0.02333302795887,0.040397867560387]],[[0.04336155205965,0.02888610213995,0.046282090246677],[-0.065775454044342,0.048009347170591,-0.026221461594105],[-0.048065714538097,0.036898858845234,-0.02550963126123]],[[0.0059479069896042,-0.073272049427032,-0.0022594358306378],[-0.043806727975607,0.051392916589975,0.069038525223732],[0.023892655968666,0.004910213407129,0.0082002682611346]],[[-0.033423706889153,-0.037839759141207,-0.021284284070134],[-0.078233145177364,0.042012959718704,0.045047391206026],[0.035133805125952,-0.0712785795331,-0.0092359976842999]],[[0.047223713248968,0.029462886974216,0.11096497625113],[0.030475927516818,-0.065747231245041,-0.023525215685368],[0.083251930773258,0.047319669276476,0.042702831327915]],[[0.047636575996876,0.023762302473187,-0.0060727968811989],[-0.024669917300344,-0.0065019438043237,-0.057935036718845],[0.00333291455172,0.027683762833476,0.02688304707408]],[[0.034285694360733,-0.05215010792017,-0.026188543066382],[-0.055208869278431,0.020233657211065,-0.0092963203787804],[0.017337180674076,-0.013335134834051,0.026152784004807]],[[0.025877131149173,-0.073835037648678,-0.0025029149837792],[0.02350202575326,0.051886972039938,-0.0079384334385395],[-0.035246666520834,0.020252268761396,-0.077093176543713]],[[-0.027818586677313,0.026846395805478,0.043666306883097],[-0.031375229358673,-0.017458705231547,-0.026578385382891],[0.072241261601448,0.0060624983161688,-0.048186480998993]],[[0.0031246843282133,-0.028906239196658,-0.010136819444597],[-0.070393554866314,0.00019669796165545,-0.055373679846525],[0.043884675949812,0.011189825832844,0.0038165268488228]]],[[[-0.025935482233763,-0.074119828641415,-0.18619963526726],[-0.024859385564923,0.017759431153536,-0.0023375139571726],[0.013982968404889,0.18865758180618,-0.086470708250999]],[[0.014495148323476,0.087619207799435,0.079732567071915],[0.01715786755085,0.022311834618449,-0.052716758102179],[0.0093943076208234,-0.042834065854549,-0.01743771135807]],[[0.027000933885574,-0.0015121790347621,-0.066558435559273],[-0.021311422809958,0.021897982805967,0.0073319314979017],[0.031714078038931,0.0642941147089,-0.026660483330488]],[[0.022371573373675,-0.048419713973999,0.013547036796808],[0.0034405717160553,0.092891715466976,0.018160903826356],[-0.039003543555737,0.051430560648441,-0.012946986593306]],[[0.070933282375336,0.02980543859303,0.030177244916558],[0.058660924434662,0.011251837015152,-0.020407689735293],[-0.08947229385376,-0.070372730493546,-0.033149912953377]],[[-0.017951723188162,-0.016278384253383,0.12455226480961],[0.014760938473046,-0.046397238969803,0.029264001175761],[-0.066325753927231,-0.087205782532692,-0.0069374707527459]],[[0.031213330104947,0.026569548994303,-0.016506971791387],[-0.033846504986286,0.030533231794834,-0.067648716270924],[0.039716005325317,0.003211971372366,-0.029064916074276]],[[-0.059423066675663,0.038086704909801,-0.017277274280787],[-0.04484835639596,0.01577029004693,-0.045822896063328],[0.082167632877827,0.025704218074679,-0.082922749221325]],[[-0.014398022554815,-0.024009067565203,0.0026561869308352],[0.011452909559011,-0.050280086696148,-0.059760104864836],[-0.028798820450902,0.057289849966764,0.045884985476732]],[[-0.04656283184886,0.0035609332844615,0.031483121216297],[0.03926644474268,0.02721318975091,-0.02614670433104],[-0.023785784840584,0.05133868008852,-0.018597915768623]],[[-0.0014754631556571,-0.076667942106724,-0.098303720355034],[0.0052964533679187,-0.091131173074245,-0.016077388077974],[0.077877938747406,-0.050114430487156,-0.0077916909940541]],[[-0.091021873056889,-0.035475723445415,-0.0083382539451122],[0.013209700584412,0.023299992084503,-0.02860108949244],[-0.039185754954815,-0.026457643136382,0.023972161114216]],[[0.050369597971439,0.00050091551383957,0.0072883958928287],[0.020175985991955,-0.0036739225033671,-0.010857914574444],[-0.10717652738094,-0.025953430682421,0.017444614320993]],[[-0.00053707382176071,0.037807200103998,0.063207730650902],[0.00015307342982851,-0.045443993061781,0.043620809912682],[0.034964192658663,-0.028879098594189,-0.015736412256956]],[[0.0031932438723743,-0.021934222429991,-0.046268504112959],[0.05312280356884,0.04151427000761,-0.039450615644455],[-0.016694996505976,-0.010070589371026,-0.071822620928288]],[[0.027907624840736,0.10966156423092,-0.055196262896061],[-0.024836540222168,0.028437931090593,0.064827606081963],[0.033913612365723,-0.042676642537117,0.043817911297083]],[[0.085115998983383,-0.038859274238348,-0.11448469758034],[0.033283546566963,-0.0067791123874485,-0.10168309509754],[-0.1231574267149,-0.1497156471014,0.0058388933539391]],[[0.13857950270176,0.014616684988141,-0.0018283176468685],[-0.045090388506651,0.057540532201529,-0.071175418794155],[-0.11220077425241,-0.039675451815128,0.014685917645693]],[[-0.032565884292126,0.080464221537113,-0.018877658993006],[-0.098799124360085,0.024058001115918,-0.037412244826555],[-0.0029619485139847,0.018273366615176,-0.05867076292634]],[[0.016039665788412,-0.0016707918839529,-0.0056617679074407],[0.031386002898216,-0.035944987088442,0.0024457580875605],[0.021005801856518,0.027613345533609,-0.047730848193169]],[[-0.023484453558922,-0.050169557332993,0.048132054507732],[0.029135506600142,0.0029873021412641,0.01708953641355],[0.0072850780561566,0.064386427402496,0.031236557289958]],[[0.10929905623198,-0.076152712106705,-0.072406850755215],[-0.038069237023592,-0.065896667540073,0.00013185618445277],[-0.01475402712822,0.049666453152895,-0.0013149133883417]],[[0.017970478162169,-0.0068730344064534,0.027566315606236],[0.05551228299737,-0.10379430651665,-0.024051442742348],[-0.03820688650012,0.029307505115867,0.072275705635548]],[[0.076684758067131,0.079506561160088,0.055001482367516],[0.10531065613031,0.07755570858717,0.053550831973553],[0.018561016768217,0.078770980238914,0.12350653111935]],[[0.051375340670347,-0.025090346112847,-0.021545683965087],[0.056700479239225,0.043395575135946,0.083962246775627],[0.10013896971941,0.060153819620609,0.092215247452259]],[[-0.0031034250278026,-0.0011604061583057,-0.03150037676096],[-0.013964232057333,0.01431751344353,-0.011411629617214],[-0.059918187558651,0.034264974296093,0.0261284802109]],[[0.0016767091583461,-3.6771238228539e-05,0.021596763283014],[0.05025290697813,-0.049428828060627,0.035187244415283],[-0.10004688799381,-0.0037125064991415,-0.0743577927351]],[[0.054358381778002,0.022669596597552,-0.048000190407038],[-0.031561385840178,-0.0018289922736585,-0.033930759876966],[-0.029016364365816,0.013105543330312,0.048638820648193]],[[0.038997750729322,-0.12984782457352,0.082081250846386],[0.049416903406382,-0.06174797937274,-0.06267074495554],[-0.0050104609690607,0.043640907853842,0.011792840436101]],[[-0.020035171881318,0.054048407822847,0.049347717314959],[-0.047388035804033,-0.11524066329002,0.040783260017633],[-0.064071334898472,-0.13047604262829,-0.079002164304256]],[[0.044003706425428,0.10108195245266,-0.091804817318916],[0.08591877669096,0.0070251394063234,-0.09133119136095],[0.023740421980619,0.036684382706881,-0.073503583669662]],[[-0.028646552935243,-0.043613605201244,-0.00082531821681187],[0.077381744980812,-0.096944257616997,-0.025887578725815],[-0.0099066514521837,0.06563263386488,-0.051337625831366]],[[0.014147142879665,0.022609408944845,0.0029059688095003],[0.061883598566055,-0.033579226583242,-0.0079898154363036],[-0.021821573376656,-0.034673660993576,0.0013111446751282]],[[-0.096459232270718,0.024736810475588,0.036827728152275],[0.092228300869465,-0.028323704376817,-0.011350460350513],[0.0091611221432686,-0.03144471719861,-0.019529255107045]],[[0.056522380560637,0.021989230066538,-0.043351780623198],[0.09648110717535,-0.010720705613494,-0.13848413527012],[-0.0034927632659674,-0.061520118266344,-0.069758489727974]],[[0.010877212509513,-0.0098677575588226,-0.060101047158241],[0.07583874464035,0.070571281015873,-0.0065282816067338],[0.032942198216915,-0.012960514053702,-0.046723339706659]],[[0.029829645529389,0.019973363727331,0.030272485688329],[0.046169579029083,-0.015638934448361,0.040915340185165],[-0.10593905299902,-0.011670037172735,0.021487534046173]],[[0.12513382732868,0.011836094781756,0.0070496150292456],[-0.050138086080551,0.031000588089228,0.01716928742826],[-0.068462714552879,-0.058852326124907,0.058515641838312]],[[-0.11091606318951,-0.12300357222557,0.0069959741085768],[0.052895318716764,-0.057802200317383,-0.0035633037332445],[-0.0016827600775287,-0.027374235913157,0.055127646774054]],[[0.16191117465496,0.12614664435387,-0.020961692556739],[0.12050572782755,0.071210540831089,-0.080573305487633],[-0.011889837682247,-0.023635286837816,0.013940846547484]],[[0.014872656203806,-0.029932878911495,-0.0067622303031385],[0.042022541165352,-0.0097256433218718,0.0061797639355063],[0.042842302471399,0.0099775064736605,-0.027106713503599]],[[0.016331937164068,0.027065843343735,-0.053853768855333],[0.13503617048264,0.1038217023015,-0.09293632209301],[0.021854627877474,-0.0007550828740932,0.051205467432737]],[[-0.036725133657455,0.0367949642241,0.052908215671778],[0.015555291436613,-0.00087895634351298,-0.02253520488739],[0.00099660037085414,-0.0051501849666238,0.09071009606123]],[[-0.013169049285352,-0.016790919005871,0.0010242786956951],[0.052214965224266,0.0342724211514,-0.029098624363542],[-0.030485179275274,-0.058255758136511,0.013074872083962]],[[0.14094476401806,-0.012435872107744,0.015276798047125],[0.014930570498109,0.031715583056211,0.084804072976112],[-0.0037362342700362,-0.019361695274711,0.025216268375516]],[[0.00075961789116263,-0.025896517559886,-0.015591656789184],[0.019145326688886,-0.013446135446429,-0.085071578621864],[-0.024892589077353,-0.017470536753535,-0.025337502360344]],[[-0.019948236644268,-0.12517030537128,0.043432176113129],[-0.10971154272556,-0.086082182824612,0.029025049880147],[0.060160141438246,-0.056160923093557,0.071504756808281]],[[-0.015605925582349,-0.062028512358665,-0.0030137016437948],[-0.015305765904486,0.03151872381568,0.098471976816654],[0.022903086617589,-0.032864540815353,0.056051768362522]],[[-0.0039917784743011,-0.043416552245617,-0.020539676770568],[-0.0055500636808574,-0.066994652152061,-0.050493337213993],[0.030213242396712,-0.066279284656048,0.054160676896572]],[[0.013080750592053,0.087482891976833,0.00093847303651273],[-0.0074671139009297,-0.080383293330669,0.028799876570702],[-0.0010262731229886,-0.033802680671215,0.081548176705837]],[[0.073988512158394,0.055041745305061,-0.028159908950329],[-0.041720274835825,-0.023752547800541,-0.0098530994728208],[-0.082880228757858,0.006191301625222,-0.0088141532614827]],[[0.023390978574753,0.026114620268345,0.18279679119587],[0.026629224419594,0.089301660656929,0.10093816369772],[0.095370136201382,0.094205819070339,0.021886838600039]],[[0.043190039694309,-0.078308142721653,-0.05095973610878],[0.021794524043798,0.021742679178715,-0.0090821646153927],[0.080872520804405,-0.0010230476036668,-0.024035299196839]],[[0.074148915708065,0.0084446780383587,0.024026330560446],[-0.013405500911176,-0.010527115315199,-0.032784733921289],[0.0049591525457799,0.037658143788576,-0.0094877388328314]],[[0.054092336446047,-0.0036408985033631,0.030791211873293],[0.099943742156029,0.068785898387432,-0.076187647879124],[0.058260649442673,0.03427667170763,-0.088181085884571]],[[-0.015940615907311,-0.014804653823376,-0.039050254970789],[0.013715012930334,0.024870464578271,0.044244632124901],[-0.022880150005221,-0.048500958830118,0.00043757955427282]],[[0.058473654091358,-0.00084993388736621,-0.0369170345366],[0.080262131989002,-0.043410122394562,0.0025098242331296],[0.029364421963692,0.02534451149404,0.058712784200907]],[[0.013930793851614,0.070644520223141,-0.018107010051608],[0.058057237416506,-0.034141715615988,-0.067440256476402],[-0.024747237563133,0.082255408167839,-0.0075956266373396]],[[0.073149234056473,0.14993564784527,-0.044021919369698],[0.058284714818001,-0.011505763046443,0.062888190150261],[0.0092406840994954,0.087577238678932,0.054680913686752]],[[-0.0089514590799809,0.028013229370117,0.031002938747406],[-0.016971539705992,-0.034771237522364,0.026448685675859],[-0.028702177107334,-0.011665633879602,0.027571761980653]],[[0.033330757170916,-0.082709334790707,0.078287832438946],[-0.038028180599213,-0.043032839894295,-0.062648773193359],[-0.028768204152584,0.0075437985360622,0.017608810216188]],[[0.0076983403414488,-0.030354097485542,-0.022177806124091],[-0.040878623723984,0.018288491293788,0.041810311377048],[-0.0413265414536,0.0044155963696539,0.030126785859466]],[[0.078683897852898,0.017374156042933,-0.044062837958336],[0.02736702747643,0.017483880743384,-0.0070435288362205],[-0.032379169017076,0.038979817181826,-0.047265160828829]],[[-0.01412202231586,-0.045853652060032,-0.0032223842572421],[0.0048002009280026,-0.014596775174141,0.066368788480759],[-0.064658351242542,-0.028785342350602,-0.0011532149510458]]],[[[0.019991580396891,-0.0050323694013059,-0.12657076120377],[-0.021145544946194,-0.10550244152546,-0.022393176332116],[-0.011853490956128,-0.024225806817412,0.021193509921432]],[[-0.080235056579113,-0.060258772224188,-0.08154134452343],[0.072848573327065,0.020277991890907,-0.0062271910719573],[-0.016922250390053,0.01335202716291,0.029646012932062]],[[-0.11585114151239,-0.11051998287439,0.010417559184134],[-0.016601176932454,-0.044397752732038,-0.058173689991236],[8.2836493675131e-05,0.079240128397942,-0.074420168995857]],[[-0.072770543396473,0.0085631655529141,-0.045948836952448],[0.054195322096348,0.0039884545840323,-0.050391469150782],[-0.080182008445263,-0.052831150591373,-0.05854144692421]],[[-0.04497230425477,-0.00088062277063727,0.061325132846832],[0.017659926787019,-0.06160032376647,0.051973987370729],[0.018151793628931,-0.071553997695446,-0.21248573064804]],[[-0.016999568790197,-0.0020592047367245,-0.020933842286468],[0.010827171616256,-0.045714057981968,0.045607000589371],[-0.028326749801636,-0.049420479685068,0.03658015653491]],[[-0.055048543959856,-0.050303004682064,-0.099841468036175],[-0.013389098457992,0.018956543877721,-0.057060372084379],[-0.027006791904569,-0.048170071095228,0.040144838392735]],[[0.10323541611433,0.0041080992668867,-0.068258486688137],[-0.026544803753495,0.025141334161162,-0.0038087596185505],[0.065600492060184,0.088802583515644,-0.061359465122223]],[[-0.018943442031741,-0.022970845922828,-0.056339748203754],[-0.023204820230603,-0.052097532898188,-0.013948893174529],[-0.06083557382226,-0.021973976865411,0.010776275768876]],[[-0.011911189183593,-0.081897087395191,-0.079267434775829],[0.0082736276090145,-0.070869669318199,0.078956767916679],[0.025857053697109,0.036798596382141,-0.016397293657064]],[[0.12977777421474,0.049258608371019,0.095102250576019],[-0.11349378526211,0.011987498030066,-0.022892000153661],[0.054139114916325,-0.13022266328335,-0.083596110343933]],[[-0.011372719891369,-0.047130197286606,0.094412460923195],[-0.085479080677032,-0.030319569632411,0.027710670605302],[0.020628185942769,0.11137017607689,0.053997296839952]],[[-0.016383228823543,0.063492923974991,-0.036488629877567],[-0.053404700011015,-0.015761625021696,0.010941805317998],[-0.043636236339808,0.069230817258358,0.10552667081356]],[[-0.029970947653055,0.046676378697157,-0.0011184536851943],[0.030864367261529,0.014165789820254,0.04287987574935],[-0.029249614104629,0.015805087983608,0.060190338641405]],[[-0.028868755325675,-0.060896046459675,-0.0099584776908159],[-0.0060601653531194,0.023616079241037,0.089749693870544],[-0.01766281016171,0.0018451616633683,0.011160892434418]],[[0.082328878343105,-0.080694541335106,0.01941361092031],[0.025077600032091,-0.005586689338088,0.0035521474201232],[-0.024459041655064,0.051459595561028,-0.11678804457188]],[[0.071696728467941,0.034759409725666,-0.033912543207407],[-0.017966257408261,0.079797238111496,-0.0064237108454108],[0.056877315044403,0.083803087472916,0.10887159407139]],[[-0.030309472233057,0.0081032104790211,-0.031014086678624],[0.063601419329643,-0.0059442589990795,-0.013213210739195],[0.060924299061298,-0.033787272870541,-0.11583548039198]],[[0.021991712972522,-0.0052656973712146,0.037114359438419],[0.060509912669659,0.016214590519667,-0.018482806161046],[-0.022574793547392,0.015998588874936,-0.0089562498033047]],[[-0.037426747381687,0.034856256097555,0.041932784020901],[-0.010636912658811,0.046163696795702,-0.036095134913921],[0.01921190880239,0.032598081976175,-0.058347336947918]],[[-0.065366357564926,0.013009377755225,-0.0044056489132345],[-0.030237020924687,0.02758414670825,0.013230560347438],[0.076356820762157,-0.00052538781892508,0.029897240921855]],[[-0.086478337645531,-0.088948152959347,-0.02902740240097],[0.013163195922971,-0.072898402810097,0.051174264401197],[0.023524856194854,-0.14231622219086,0.047386713325977]],[[0.019989721477032,0.0079786265268922,0.00055860873544589],[-0.038325060158968,-0.044329911470413,0.0108821419999],[-0.030180780217052,-0.052538860589266,0.092314571142197]],[[-0.079261541366577,0.096200779080391,0.19745522737503],[0.067434720695019,0.030867332592607,0.01930389367044],[0.01928336918354,-0.043443169444799,0.095468655228615]],[[-0.0026972074992955,0.0024364576674998,0.0078828576952219],[0.0024796226061881,0.074084773659706,-0.026840414851904],[0.13411393761635,0.018915481865406,0.27081549167633]],[[-0.00088204914936796,0.0080883968621492,0.10064302384853],[0.015492716804147,-0.016754470765591,0.033646747469902],[0.0029605347663164,-0.032058965414762,-0.021931100636721]],[[0.038268398493528,0.015504295937717,-0.035881105810404],[-0.044269423931837,-0.021137535572052,-0.030614180490375],[0.07286224514246,0.12704989314079,0.01192819699645]],[[-0.056614156812429,-0.053986169397831,-0.15989169478416],[-0.055281676352024,-0.008940102532506,-0.025646576657891],[-0.058480285108089,-0.096995770931244,0.010570243932307]],[[0.039018638432026,-0.070393204689026,-0.019444532692432],[-0.032168965786695,0.012563743628561,-0.0037650323938578],[0.062374603003263,-0.016250690445304,0.011666437610984]],[[-0.04143176600337,-0.10634236037731,-0.17671652138233],[0.10655266046524,-0.068102099001408,-0.18083046376705],[0.035995490849018,-0.14386701583862,-0.15999965369701]],[[0.085633166134357,-0.013380663469434,0.068754397332668],[0.029418282210827,-0.0071072708815336,0.0028353128582239],[-0.069322422146797,-0.0060497992672026,-0.051955167204142]],[[0.0020032948814332,0.12028250843287,-0.016935562714934],[0.02675467915833,-0.02163740247488,-0.042622655630112],[0.054743722081184,-0.053423844277859,0.065284729003906]],[[0.020746443420649,0.048786699771881,-0.034990288317204],[0.050252515822649,-0.023122392594814,-0.0084913810715079],[-0.033177819103003,-0.10470230877399,-0.025932623073459]],[[-0.0033561533782631,-0.10901480168104,-0.11568196862936],[-0.054279796779156,-0.013718160800636,0.1333180218935],[-0.014065754599869,0.062433071434498,0.089983865618706]],[[-0.068034686148167,9.5790121122263e-05,-0.03564514964819],[-0.053974721580744,-0.060837812721729,0.0033207819797099],[-0.066671118140221,-0.067960321903229,-0.027300871908665]],[[-0.015068147331476,-0.029349638149142,-0.030471660196781],[-0.031853970140219,-0.043935921043158,-0.0082922726869583],[0.056435596197844,0.011909646913409,0.046572532504797]],[[-0.027766510844231,-0.15058290958405,0.010744243860245],[-0.0041282121092081,-0.039511185139418,0.0087440703064203],[-0.085976749658585,-0.11724760383368,-0.046873960644007]],[[0.13783031702042,0.043051294982433,-0.041744522750378],[-0.158945530653,0.030700858682394,-0.082044653594494],[-0.019368341192603,-0.021674796938896,-0.18927510082722]],[[0.013859875500202,0.12152802199125,0.057681273669004],[0.032775349915028,0.012348211370409,-0.086068958044052],[-0.034712728112936,-0.037114147096872,0.23739019036293]],[[-0.028428558260202,0.028813667595387,-0.078061982989311],[-0.0031207650899887,0.0063918372616172,0.043776668608189],[-0.026527855545282,-0.019227651879191,0.050796031951904]],[[-0.03952220082283,0.01409328635782,0.034086026251316],[-0.028991689905524,-0.081652842462063,0.027590090408921],[0.032700445502996,0.018901718780398,0.058166410773993]],[[-0.16143882274628,0.050086192786694,-0.044083714485168],[-0.095185726881027,-0.044928275048733,-0.056604493409395],[0.041573669761419,0.052912369370461,0.062539979815483]],[[-0.097131788730621,0.013031646609306,-0.031387187540531],[0.066270709037781,-0.023013699799776,-0.056717325001955],[-0.04628723859787,-0.00010022716742242,-0.037079345434904]],[[0.079816438257694,0.0099024111405015,-0.035185098648071],[-0.023424075916409,0.045472629368305,-0.10524358600378],[0.047513082623482,-0.030426271259785,0.1614156961441]],[[-0.081080675125122,-0.08840624243021,-0.071025632321835],[-0.023885365575552,-0.11188669502735,-0.018108710646629],[0.034091621637344,-0.09317047894001,-0.059069160372019]],[[-0.017566865310073,0.13403537869453,0.038187310099602],[-0.032343070954084,0.013209337368608,-0.075771614909172],[-0.037926018238068,0.046453386545181,0.013121351599693]],[[0.014178195036948,0.094489000737667,-0.0482715703547],[-0.056913007050753,-0.052692707628012,0.011662323027849],[-0.072038076817989,0.0075086555443704,0.030981434509158]],[[-0.019798293709755,0.0085192248225212,-0.073931537568569],[0.05887208506465,0.028600806370378,0.0612379796803],[-0.083311229944229,-0.10514454543591,0.00052293081535026]],[[0.044154964387417,-0.098380766808987,0.014087635092437],[-0.042737100273371,0.032323785126209,0.017120098695159],[0.010365418158472,-0.006993408780545,0.087416224181652]],[[0.046724859625101,-0.044822532683611,-0.13295727968216],[-0.046783708035946,0.035750560462475,-0.035677876323462],[-0.02195287682116,-0.013320572674274,-0.047662690281868]],[[-0.016927858814597,0.031007010489702,-0.044572990387678],[0.062070786952972,-0.0070733078755438,-0.014473981224],[0.0012126873480156,-0.029465673491359,0.0073014148510993]],[[0.12421740591526,0.094848237931728,-0.077351219952106],[0.091921225190163,0.0055278795771301,-0.020104272291064],[0.053391810506582,-0.007829338312149,-0.034128796309233]],[[-0.27961334586143,0.026205832138658,0.035670820623636],[-0.080793499946594,-0.096733517944813,-0.041701555252075],[0.047116488218307,-0.094020031392574,-0.13451974093914]],[[-0.032454013824463,0.017547558993101,0.091599568724632],[-0.011284206062555,-0.0040804706513882,0.038488060235977],[-0.03679321333766,-0.032168194651604,-0.046528551727533]],[[-0.073524095118046,-0.11199887096882,-0.091158203780651],[-0.087010703980923,-0.05480882152915,-0.027686258777976],[0.026083851233125,-0.10888011008501,0.0048776622861624]],[[-0.044801339507103,0.032300971448421,-0.018977701663971],[-0.020459754392505,0.00010513637971599,0.049723993986845],[0.046455912292004,-0.011002144776285,0.012605177238584]],[[-0.11679646372795,-0.27379074692726,-0.068989098072052],[0.0027033754158765,0.014856251887977,0.0068062739446759],[0.060096640139818,0.0079334629699588,-0.0034052908886224]],[[0.022251568734646,0.021074609830976,-0.075705617666245],[-0.0074531016871333,0.038747917860746,0.043362028896809],[-0.022492608055472,-0.017153467983007,0.088733397424221]],[[0.067617259919643,0.14096039533615,-0.00383514421992],[0.095449090003967,0.083001710474491,-0.020930126309395],[0.005027748644352,0.040531236678362,0.031229194253683]],[[0.0099795367568731,-0.018225539475679,-0.047724742442369],[-0.012262019328773,-0.015525618568063,0.057639297097921],[-0.019482316449285,-0.025139285251498,0.070032276213169]],[[-0.042186863720417,-0.021311705932021,-0.021861655637622],[0.013128711842,-0.021786576136947,0.00043378889677115],[-0.096183836460114,-0.045376535505056,-0.024303508922458]],[[0.0094353668391705,0.029092812910676,-0.026351256296039],[-0.0073879160918295,0.024030193686485,-0.04864701256156],[0.0026636652182788,-0.038227759301662,-0.13470782339573]],[[-0.031577929854393,0.04051698744297,0.10999324172735],[-0.026962088420987,0.0046856957487762,-0.00069886638084427],[-0.023264467716217,0.075379468500614,0.013404081575572]],[[-0.057682059705257,-0.015735410153866,0.085734598338604],[0.011426059529185,0.026351729407907,-0.011499836109579],[-0.14194782078266,-0.028798243030906,0.06199786439538]]],[[[0.075096763670444,-0.0031630704179406,-0.036199182271957],[-0.043440699577332,0.025422751903534,0.062603153288364],[-0.005522342864424,-0.046492177993059,-0.02737719938159]],[[0.03887889534235,-0.10676898062229,0.10041102021933],[-0.090601019561291,-0.030284464359283,0.19532914459705],[-0.002041426487267,-0.033659379929304,0.097767107188702]],[[-0.065177403390408,0.01633763872087,0.011136936023831],[0.01372043043375,-0.11858627945185,-0.014910879544914],[0.050359956920147,-0.017383053898811,0.069981776177883]],[[-0.045028049498796,-0.024466061964631,0.019623788073659],[-0.061023481190205,-0.010894235223532,-0.10840506106615],[-0.037716925144196,-0.027793385088444,-0.097301371395588]],[[-0.024537671357393,-0.022202380001545,-0.021124571561813],[-0.01567767560482,-0.024976588785648,-0.0947070941329],[0.057085994631052,-0.017750464379787,-0.17593622207642]],[[-0.036878511309624,-0.035435821861029,0.042947951704264],[0.019266022369266,-0.066719077527523,-0.024587750434875],[-0.012918876484036,-0.064950041472912,0.042340513318777]],[[-0.028945801779628,-0.0040611480362713,-0.032852657139301],[-0.021327087655663,-0.034895293414593,0.0022556409239769],[0.0040685292333364,-0.013516870327294,0.058098249137402]],[[0.018197791650891,-0.049765158444643,0.089243046939373],[0.012822893448174,-0.018852462992072,-0.0805778875947],[-0.029932415112853,0.055684115737677,-0.11507150530815]],[[-0.029511390253901,-0.048411622643471,-0.13650292158127],[-0.053777020424604,0.11933506280184,-0.0027482016012073],[-0.080859534442425,-0.035821709781885,0.019286274909973]],[[-0.036953438073397,0.019818983972073,-0.025050170719624],[-0.017590124160051,-0.012486374005675,0.016957329586148],[0.01211122982204,0.052322722971439,-0.07528655230999]],[[-0.087427154183388,0.10947540402412,-0.029048085212708],[-0.033718284219503,0.011379438452423,0.016997558996081],[-0.05243806168437,-0.024485906586051,0.071284785866737]],[[-0.072913371026516,-0.091338537633419,-0.030597111210227],[-0.034581243991852,-0.21138641238213,0.0021092901006341],[0.10007266700268,-0.071918025612831,-0.037589311599731]],[[0.034610271453857,0.027819277718663,0.05189374089241],[-0.0044558830559254,-0.064924381673336,0.018711391836405],[0.0063192555680871,-0.055777098983526,-0.018982047215104]],[[0.0064165890216827,-0.033890958875418,0.011589274741709],[-0.035212550312281,0.016549345105886,0.069778062403202],[0.02139194868505,-0.042006630450487,0.019617728888988]],[[-0.042107939720154,-0.0058014439418912,0.050606291741133],[-0.0086442232131958,0.049192927777767,-0.088598564267159],[-0.09947606921196,0.020279914140701,-0.0084896320477128]],[[0.0058013289235532,0.051563803106546,0.0066928789019585],[-0.026742655783892,-0.023834062740207,-0.010487378574908],[-0.035938743501902,-0.058957867324352,-0.024317530915141]],[[0.079293824732304,0.036195371299982,-0.021682498976588],[0.068937517702579,0.016136964783072,-0.10677917301655],[-0.075185261666775,-0.017503041774035,-0.099818058311939]],[[-0.10069699585438,0.043857138603926,-0.03153869509697],[-0.15431573987007,0.016403825953603,-0.029384572058916],[-0.01192351616919,-0.15989473462105,0.059773184359074]],[[0.0043545016087592,-0.079602316021919,-0.025833748281002],[-0.02399555593729,0.069010265171528,-0.077666096389294],[-0.084149189293385,0.020036719739437,-0.0045504234731197]],[[0.0067986641079187,0.025754861533642,-0.015416759997606],[-0.022871332243085,0.034929171204567,0.0029912353493273],[0.0085317986086011,-0.090119183063507,0.0070537133142352]],[[0.030954092741013,-0.10188286751509,-0.15012449026108],[-0.089733295142651,0.0097654666751623,-0.042452055960894],[0.059578854590654,0.048240095376968,0.071492031216621]],[[0.040906809270382,-0.012922251597047,0.087299726903439],[0.02559600584209,-0.077808193862438,-0.17301368713379],[0.024749629199505,-0.12089078128338,0.038685437291861]],[[-0.060623928904533,0.037214912474155,0.024558635428548],[-0.1051270365715,0.10873251408339,-0.046434942632914],[-0.058949429541826,0.10482715070248,0.040944430977106]],[[0.13287582993507,0.062699660658836,0.038829021155834],[0.22362539172173,-0.047551423311234,0.050930578261614],[0.055671241134405,0.045951034873724,0.00320586678572]],[[0.053399480879307,-0.13940708339214,-0.1344136595726],[-0.030210390686989,0.040129352360964,-0.055653899908066],[-0.022170012816787,0.013867447152734,0.13912825286388]],[[0.012697185389698,-0.034994684159756,-0.071562632918358],[0.032680436968803,-0.014544351026416,-0.052107576280832],[0.047261573374271,-0.00017933479102794,-0.0040253940969706]],[[-0.025675874203444,-0.01707680337131,0.04535124078393],[-0.020726775750518,0.049677710980177,-0.15657611191273],[-0.03606765344739,-0.028590340167284,0.078972049057484]],[[0.010420568287373,0.018860602751374,0.033106051385403],[-0.045824285596609,0.058553606271744,0.17503137886524],[-0.038629677146673,-0.079133175313473,0.091625809669495]],[[-0.07452867180109,0.025931876152754,0.075354538857937],[0.019614521414042,-0.025786235928535,0.072351068258286],[0.10714812576771,0.033694639801979,0.10078740119934]],[[-0.05898204818368,-0.076827421784401,-0.12917268276215],[-0.059844966977835,0.018075220286846,-0.083192601799965],[0.0094864889979362,-0.080048248171806,0.048973858356476]],[[0.067699909210205,0.004005279392004,0.063780829310417],[0.047421734780073,6.0189078794792e-05,0.020220344886184],[-0.051370888948441,-0.021834690123796,0.062483191490173]],[[-0.013297970406711,-0.069839373230934,-0.055445421487093],[0.089413225650787,0.026682229712605,-0.12702794373035],[-0.049871865659952,0.025661997497082,0.11890590935946]],[[0.034299075603485,0.042029719799757,-0.010496404953301],[-0.019310658797622,-0.06092644482851,0.026494074612856],[-0.014074748381972,-0.015198452398181,-0.052806440740824]],[[0.059230636805296,0.062128618359566,-0.039250388741493],[0.096031509339809,0.014307875186205,-0.03672618418932],[0.045745208859444,-0.099597811698914,-0.089180044829845]],[[-0.036269653588533,0.036510620266199,0.016560820862651],[-0.034825600683689,0.097468182444572,0.17233988642693],[-0.039212085306644,0.05534328892827,0.061016537249088]],[[0.0029728184454143,0.00054101541172713,0.038606449961662],[0.025750808417797,-0.047555547207594,-0.08138145506382],[-0.034870605915785,0.027579240500927,-0.030033307150006]],[[0.0096757207065821,0.030550884082913,-0.15739080309868],[0.050179414451122,0.059501349925995,-0.016654666513205],[0.037931002676487,-0.0022878865711391,-0.016915863379836]],[[-0.057335611432791,0.068890705704689,0.029208693653345],[-0.082563631236553,-0.070690773427486,0.0065564047545195],[0.086253516376019,0.065162293612957,-0.06203804910183]],[[0.036604039371014,0.037424191832542,-0.06566010415554],[-0.016904449090362,0.058903153985739,0.11750191450119],[0.015567471273243,0.040900774300098,0.20585805177689]],[[0.0096983257681131,-0.0057061379775405,-0.067135579884052],[-0.0026490483433008,0.010591466911137,-0.082878425717354],[-4.370539681986e-05,0.013216677121818,-0.046398475766182]],[[0.029956066980958,-0.070513620972633,-0.0028387934435159],[-0.10701315850019,-0.16478243470192,-0.055041231215],[-0.069339953362942,0.045133642852306,-0.082138024270535]],[[0.059670522809029,-0.043038375675678,0.072262831032276],[-0.027048546820879,-0.012952080927789,-0.025457946583629],[-0.06381968408823,0.07356384396553,0.036355424672365]],[[0.051500417292118,0.014363897964358,-0.065274678170681],[0.0083655789494514,-0.06903725117445,-0.004607736133039],[0.016425063833594,0.014042219147086,0.0014650372322649]],[[-0.049672264605761,-0.081061407923698,-0.0084271067753434],[0.066523149609566,0.057283915579319,0.0050153541378677],[0.029857061803341,0.04706172645092,-0.028130706399679]],[[-0.018930178135633,-0.024191005155444,0.0035651286598295],[-0.10392678529024,-0.061215940862894,-0.16480669379234],[-0.0067780241370201,0.036355894058943,-0.12333788722754]],[[-0.075293175876141,0.054816566407681,0.022935397922993],[-0.063681706786156,0.030535755679011,0.00086129934061319],[0.018649742007256,0.04101150482893,-0.037951685488224]],[[0.038424279540777,-0.017430245876312,-0.023690111935139],[0.01424618717283,0.09789414703846,-0.038851466029882],[-0.023466132581234,-0.019788408651948,-0.070205986499786]],[[-0.038917399942875,-0.023107448592782,0.11528952419758],[0.024136563763022,-0.11160181462765,-0.03980864956975],[0.0041741402819753,-0.04251279681921,-0.042952787131071]],[[0.0023076815996319,-0.033449415117502,0.045130260288715],[-0.065654061734676,-0.058214947581291,-0.016774788498878],[-0.032574493438005,0.025373134762049,-0.0055793495848775]],[[0.031141698360443,0.0049534444697201,-0.04169849678874],[0.082698605954647,0.043642725795507,-0.18655745685101],[0.019256548956037,0.051650747656822,-0.11094564944506]],[[0.031860768795013,-0.0035804021172225,-0.037949450314045],[-0.016673106700182,-0.0019870053511113,0.0031151697039604],[0.0029054800979793,-0.036819372326136,-0.019637633115053]],[[0.011175693012774,-0.016001362353563,-0.0062949168495834],[0.073589123785496,0.0039047673344612,0.035817224532366],[0.0054307589307427,-0.12578366696835,0.0072685382328928]],[[-0.045845936983824,0.0097971986979246,0.018299935385585],[-5.7688463130035e-05,0.069733180105686,0.053241610527039],[-0.014517999254167,-0.18805654346943,0.066271148622036]],[[-0.12301796674728,-0.019163412973285,-0.049561474472284],[-0.10668074339628,-0.065204307436943,0.020351484417915],[-0.090900503098965,-0.029999909922481,0.036491695791483]],[[-0.0042941416613758,-0.083598248660564,-0.00044586436706595],[0.083555921912193,-0.07719548791647,-0.025430094450712],[-0.12613520026207,-0.095547825098038,0.1240492016077]],[[0.016015572473407,0.058537300676107,0.10014649480581],[0.0065387077629566,-0.042372591793537,0.030520405620337],[0.014666061848402,-0.0029667371418327,0.0167017262429]],[[0.13802191615105,-0.054780721664429,0.017006441950798],[0.05605560541153,-0.0047368803061545,-0.0072778994217515],[0.067067883908749,-0.012205909006298,-0.1341015547514]],[[0.01487264316529,0.018238013610244,0.0068822158500552],[-0.10334587842226,-0.03438151627779,0.12208477407694],[-0.055983576923609,-0.093775793910027,0.039631120860577]],[[-0.01944543607533,-0.052403297275305,-0.0081067541614175],[0.011531116440892,-0.058106001466513,-0.021995762363076],[0.050573579967022,0.016600405797362,0.10372810065746]],[[-0.010408415459096,-0.0019212011247873,-0.019488299265504],[-0.0072914198972285,-0.029015522450209,0.0058378684334457],[-0.0016119736246765,0.046879526227713,0.00075089221354574]],[[0.0082683097571135,0.048233151435852,-0.059150490909815],[0.015385422855616,-0.056503169238567,0.012514307163656],[0.064887560904026,-0.030435422435403,-0.078633613884449]],[[0.094113126397133,-0.11817658692598,0.038837410509586],[0.0081998575478792,-0.097302958369255,-0.057449445128441],[-0.014051688835025,0.096529990434647,-0.025504359975457]],[[-0.077807448804379,-0.056912872940302,-0.016852710396051],[0.0061047757044435,-0.04596833512187,-0.10916206985712],[0.071242608129978,-0.0053529520519078,-0.046633411198854]],[[-0.0015108039369807,0.050109393894672,-0.0096039278432727],[-0.030725322663784,0.0089959213510156,-0.034520652145147],[-0.0091825220733881,0.047586385160685,0.0016628246521577]]],[[[-0.17207470536232,-0.10458306223154,0.026984039694071],[0.010988337919116,0.00122916768305,0.039558827877045],[0.054998945444822,-0.019882164895535,0.0017179526621476]],[[-0.12560498714447,-0.079356454312801,-0.032998014241457],[-0.13794262707233,-0.016345163807273,-0.087871700525284],[-0.19740627706051,-0.10275226831436,-0.090747684240341]],[[-0.047087978571653,0.0050732521340251,0.11846266686916],[-0.031646229326725,0.010852430015802,0.05311457067728],[-0.17239236831665,0.045140758156776,-0.016635190695524]],[[-0.010344007052481,-0.00057044858112931,-0.087838411331177],[-0.039589516818523,-0.12754057347775,-0.060671277344227],[-0.20755921304226,-0.027706291526556,-0.080088719725609]],[[-0.12279650568962,-0.0090472046285868,0.050411466509104],[-0.079016096889973,0.048226457089186,0.032457813620567],[-0.049767963588238,0.0016920935595408,0.086348578333855]],[[-0.043001335114241,0.041830759495497,-0.010808896273375],[0.016107028350234,-0.040581580251455,-0.095341704785824],[-0.09219179302454,-0.071951508522034,-0.011374492198229]],[[-0.027435109019279,-0.055490389466286,-0.11265318840742],[-0.057970490306616,-0.015051684342325,0.04256335273385],[-0.052036963403225,0.032699450850487,-0.095541514456272]],[[-0.038083609193563,-0.078681774437428,-0.21620501577854],[-0.11395598202944,-0.061622638255358,-0.056413821876049],[-0.22530713677406,-0.063798703253269,-0.0017435952322558]],[[0.023730251938105,-0.049655240029097,-0.024326540529728],[0.025770070031285,-0.0076780770905316,-0.096142336726189],[0.10106805711985,0.045582354068756,0.050254315137863]],[[0.023604024201632,0.035787180066109,0.05697850510478],[0.10344672948122,-0.090592734515667,0.022972907871008],[0.050013091415167,0.063351608812809,0.039042394608259]],[[0.0093883676454425,-0.0084536708891392,0.057314604520798],[0.050201408565044,0.061111729592085,-0.023797715082765],[0.025745855644345,-0.051623705774546,-0.012041515670717]],[[-0.056547433137894,-0.056095164269209,-0.036122694611549],[-0.03411153703928,-0.025313360616565,0.053928393870592],[-0.0070154825225472,0.10579843819141,0.032513856887817]],[[0.010144750587642,0.043122697621584,-0.01699642278254],[-0.15708681941032,-0.010823337361217,-0.041296720504761],[-0.049862895160913,-0.059720490127802,-0.062496427446604]],[[0.031838741153479,0.052955877035856,-0.077537752687931],[-0.087223298847675,-0.10862445086241,-0.098884649574757],[-0.069806925952435,0.054368123412132,-0.066478483378887]],[[0.046156223863363,-0.074142679572105,-0.072745941579342],[-0.0011698936577886,-0.045122180134058,0.08303751796484],[-0.012097839266062,-0.058438703417778,0.01998258382082]],[[-0.070337317883968,-0.064456090331078,0.11050817370415],[0.040231101214886,0.017644757404923,-0.04433099552989],[-0.053875230252743,-0.082757472991943,-0.011468618176877]],[[-0.032735947519541,-0.081312879920006,0.034583203494549],[0.035994417965412,0.095629870891571,0.057619001716375],[0.071033678948879,-0.075271084904671,0.069143235683441]],[[-0.015724185854197,0.016471611335874,-0.075477570295334],[-0.037444740533829,-0.035369377583265,-0.04768456146121],[-0.10936385393143,0.027199631556869,-0.077527165412903]],[[0.032726395875216,0.0096434587612748,0.016417011618614],[-0.0054037342779338,0.055008199065924,-0.010045745410025],[0.056699223816395,-0.068535484373569,0.0080030970275402]],[[-0.00017245367052965,0.031908579170704,0.04996320232749],[-0.065621100366116,-0.089020408689976,0.06738019734621],[-0.067826449871063,0.0082328654825687,0.076534852385521]],[[0.013220840133727,-0.18319563567638,-0.11459558457136],[-0.081189185380936,-0.18682260811329,-0.11876396089792],[-0.22043940424919,-0.13705633580685,-0.093974374234676]],[[-0.060485608875751,0.0034784823656082,0.030815247446299],[0.020759023725986,0.074207536876202,0.0089189000427723],[0.041824400424957,0.13814415037632,0.10595479607582]],[[0.067813649773598,0.012804788537323,0.010404692962766],[-0.0018124245107174,0.022637458518147,0.030019164085388],[0.092837795615196,-0.046981558203697,-0.049383647739887]],[[0.045775413513184,0.056808926165104,-0.13922646641731],[0.13203389942646,0.099579028785229,0.042354114353657],[0.26437106728554,0.072437450289726,-0.039130631834269]],[[0.034219965338707,0.064162522554398,0.025630503892899],[0.033928144723177,0.063784956932068,0.0022440163884312],[0.020741742104292,0.0061217248439789,-0.00035829731496051]],[[-0.0055672558955848,0.057394973933697,0.1611140370369],[0.040386658161879,0.058009207248688,0.014800406061113],[-0.0097081838175654,0.0055241174995899,0.052038799971342]],[[0.068261496722698,-0.052869934588671,-0.14733909070492],[0.16242228448391,0.051254790276289,-0.041598819196224],[0.04860869422555,0.083549857139587,-0.0026415744796395]],[[-0.011370264925063,0.040175285190344,-0.0014908717712387],[0.046821292489767,0.051262598484755,-0.0054837949573994],[-0.055346414446831,-0.00032393116271123,-0.065740838646889]],[[-0.067018896341324,-0.078871369361877,0.016355350613594],[-0.01217985060066,0.10958509147167,-0.019193176180124],[0.036590408533812,-0.043654259294271,0.010274388827384]],[[0.046029146760702,-0.098254822194576,0.07122940570116],[-0.003940774127841,-0.021164827048779,0.16347043216228],[-0.10832953453064,0.081624053418636,0.064186468720436]],[[0.013047222979367,-0.06259036809206,-0.018722889944911],[0.080355234444141,-0.016621720045805,-0.078618071973324],[0.11565256863832,0.032963365316391,-0.04719465225935]],[[-0.10496550798416,-0.036782346665859,-0.040325436741114],[0.11813098937273,-0.023688463494182,0.0053963530808687],[-0.0109893232584,0.034364208579063,-0.02355725876987]],[[0.027503151446581,0.033721189945936,0.030340775847435],[-0.021064354106784,-0.010107052512467,0.058210086077452],[-0.0022838769946247,-0.0002187907230109,-0.021571755409241]],[[0.032561160624027,0.044507909566164,-0.051930453628302],[-0.060389813035727,-0.037174109369516,-0.0018616646993905],[-0.040277846157551,-0.031705424189568,-0.0017317114397883]],[[-0.056857410818338,0.0078500201925635,0.059211768209934],[0.10336007922888,0.054765503853559,0.035459537059069],[-0.066419512033463,0.0065906108357012,-0.062280610203743]],[[-0.035368304699659,-0.020799728110433,0.10056349635124],[0.020107179880142,-0.10420393198729,-0.0026227373164147],[0.085248969495296,0.023344110697508,0.010678715072572]],[[0.077913820743561,0.030167544260621,0.081682220101357],[-0.00080576370237395,-0.0062526650726795,-0.012502672150731],[0.1067828387022,0.003672837279737,0.0040963715873659]],[[-0.018366137519479,-0.016271594911814,0.034843347966671],[-0.037964627146721,0.01059450302273,-0.10646925121546],[0.036820203065872,0.065383777022362,0.022350566461682]],[[-0.072718963027,0.050605040043592,-0.01433047093451],[-0.064141780138016,0.061865013092756,0.028146430850029],[0.049394026398659,0.0046221455559134,-0.05621924251318]],[[-0.026647785678506,0.015705311670899,-0.050920955836773],[-0.047516770660877,-0.05050116032362,-0.037284199148417],[0.013305027037859,0.045040093362331,0.0026908617001027]],[[-0.056256834417582,0.0094574326649308,0.03085776977241],[-0.10337559133768,0.002691610250622,-0.078885190188885],[-0.018781844526529,-0.082260765135288,-0.15376751124859]],[[0.040019907057285,-0.056016195565462,-0.048452809453011],[0.066482342779636,0.04921156540513,-0.037528224289417],[0.062178142368793,0.060422647744417,-0.029038665816188]],[[0.039811749011278,-0.0092633953318,-0.033894412219524],[0.0093584470450878,-0.08535397797823,-0.047551579773426],[0.0052253417670727,0.063876859843731,0.0005062841810286]],[[-0.076906450092793,-0.01047863252461,-0.1328786611557],[-0.084964722394943,-0.076275184750557,-0.06559918820858],[-0.093530647456646,-0.029295444488525,-0.017465312033892]],[[-0.027125334367156,0.014547703787684,0.0066780727356672],[-0.032149199396372,0.015392245724797,0.032030522823334],[0.019944397732615,-0.031605813652277,0.08451846241951]],[[0.046367350965738,0.017231399193406,-0.01818285509944],[0.037512701004744,0.0041888486593962,0.014580943621695],[0.071167074143887,0.018293095752597,-0.021912090480328]],[[0.023278810083866,0.024783404543996,-0.10586708039045],[-0.032619029283524,0.04911957681179,-0.030537340790033],[0.065776541829109,0.02357491850853,0.030011555179954]],[[0.060141887515783,0.032795213162899,-0.084178477525711],[0.0041019259952009,-0.068264096975327,-0.048188753426075],[-0.043461881577969,-0.097441464662552,-0.010676821693778]],[[0.038294043391943,0.014848435297608,0.018331306055188],[0.00040248021832667,-0.023867594078183,-0.015132726170123],[0.00029524340061471,0.05173709616065,-0.023467879742384]],[[-0.053367484360933,-0.020301885902882,-0.045586388558149],[0.055013231933117,0.054118789732456,-0.025186436250806],[-0.088977888226509,0.014334818348289,-0.088325671851635]],[[-0.013558260165155,-0.0034132616128772,0.056048158556223],[-0.055553961545229,-0.043229900300503,0.016211535781622],[0.015599574893713,-0.050344634801149,-0.022783529013395]],[[-0.02511808462441,0.018844494596124,0.014525817707181],[-0.14054425060749,0.016908342018723,-0.028261406347156],[0.044617719948292,0.11841800808907,-0.042990654706955]],[[-0.11079746484756,-0.022021036595106,-0.18887096643448],[-0.088541150093079,-0.053707089275122,-0.045858033001423],[-0.14029760658741,0.029604265466332,0.021067148074508]],[[0.035457029938698,-0.00790033955127,0.041132017970085],[0.012569376267493,-0.026636704802513,0.024299727752805],[0.057534858584404,-0.04644975438714,-0.1170951128006]],[[0.012129656970501,0.065631486475468,-0.068888545036316],[0.00017829626449384,-0.063388615846634,-0.019537333399057],[-0.031364511698484,-0.047787703573704,-0.056515861302614]],[[-0.032332919538021,0.028696432709694,-0.10524936765432],[-0.0080612553283572,0.07071240991354,-0.055227290838957],[-0.12138377130032,0.022174259647727,-0.11732134222984]],[[-0.041123040020466,0.033642638474703,-0.057780500501394],[-0.003792526666075,-0.042264450341463,0.054714027792215],[0.053046561777592,-0.079795099794865,-0.0097451386973262]],[[0.012249905616045,-0.012223708443344,-0.0056324079632759],[-0.03388836234808,0.0033285245299339,-0.045845109969378],[-0.049310449510813,-0.075188241899014,-0.14063648879528]],[[-0.032264482229948,0.10937926918268,0.054191265255213],[0.025383934378624,0.054856766015291,0.070585250854492],[0.028052613139153,-0.0168846398592,0.058889415115118]],[[0.033451668918133,-0.04583565890789,-0.033030029386282],[0.081137500703335,0.021265553310513,-0.015171234495938],[0.061235543340445,-0.0077405492775142,-0.059408858418465]],[[-0.060472417622805,-0.0043591093271971,-0.066691942512989],[0.027483765035868,-0.024202426895499,0.00072942062979564],[0.11096242070198,0.041931163519621,-0.004596661310643]],[[-0.043687917292118,-0.060296382755041,-0.12579761445522],[0.081125967204571,-0.039100963622332,-0.004287397954613],[-0.16257435083389,0.0876325070858,-0.074202887713909]],[[-0.042451955378056,-0.081308297812939,0.025462800636888],[-0.037024542689323,-0.14855879545212,0.034297548234463],[0.033860210329294,0.038154929876328,0.020978327840567]],[[0.036247480660677,-0.03199278190732,0.018164105713367],[-0.076238326728344,0.029087843373418,-0.023693114519119],[0.085984840989113,-0.12362933903933,0.1166422739625]]],[[[-0.04185027629137,-0.023508351296186,-0.047952029854059],[-0.010188298299909,-0.01336157694459,0.0096713332459331],[-0.021808343008161,-0.027659639716148,-0.0065001891925931]],[[-0.064363591372967,-0.020975327119231,0.053594991564751],[0.0074892481788993,0.01708303950727,-0.11288707703352],[-0.013053990900517,-0.043567802757025,0.014273534528911]],[[-0.040290802717209,-0.10048808157444,-0.085111893713474],[-0.039139069616795,0.041497029364109,-0.035584948956966],[-0.05239424481988,-0.065144866704941,-0.025696767494082]],[[0.012170509435236,-0.11281611770391,0.019687497988343],[-0.038184940814972,-0.01503646094352,-0.036911997944117],[-0.094023779034615,-0.069589532911777,-0.04063294455409]],[[-0.034954063594341,0.0075870780274272,-0.026999000459909],[-0.038576420396566,0.023341143503785,0.0058825653977692],[-0.011347059160471,0.018646828830242,0.022598432376981]],[[-0.0051237787120044,-0.06632599234581,0.014143710024655],[0.056509021669626,-0.0019571925513446,-0.014805326238275],[-0.068312421441078,0.057498916983604,0.016602534800768]],[[-0.013891930691898,-0.11483930051327,-0.04842833802104],[-0.13164435327053,-0.056229844689369,-0.019879730418324],[-0.066050074994564,-0.042272925376892,-0.080845594406128]],[[0.0028575877659023,0.044013310223818,-0.0066662416793406],[0.010027481243014,0.0042357230558991,0.027758505195379],[0.0027251737192273,0.0077460221946239,0.052180275321007]],[[0.066046856343746,0.033820286393166,-0.038729276508093],[-0.0028325654566288,0.082281209528446,0.010606930591166],[0.0025241959374398,-0.089519336819649,-0.025291323661804]],[[-0.042608723044395,0.00030116879497655,-0.026798229664564],[0.0033841191325337,-0.05455706268549,0.080989748239517],[-0.0026157691609114,-0.028351988643408,-0.062048673629761]],[[-0.15046060085297,0.029266938567162,-0.080871880054474],[0.11004567891359,0.043625336140394,-0.030610909685493],[-0.031579118221998,-0.047155119478703,0.094505853950977]],[[0.0077451723627746,-0.025766672566533,-0.017165528610349],[-0.039118845015764,-0.01784029789269,-0.0080601936206222],[-0.056907661259174,-0.070880308747292,-0.00045685135410167]],[[-0.064165852963924,-0.03784329816699,0.019167948514223],[0.090502753853798,0.016655473038554,-0.023912101984024],[0.048440705984831,-0.08968161046505,0.064323462545872]],[[-0.10475501418114,0.019511232152581,-0.063419833779335],[0.11135566234589,-0.11040203273296,0.059750888496637],[-0.051003117114305,0.037521816790104,-0.031803261488676]],[[0.023188283666968,-0.057144455611706,-0.0022358002606779],[-0.0036029210314155,-0.021706225350499,-0.039655316621065],[-0.059446029365063,0.053979266434908,0.055288717150688]],[[-0.09062385559082,-0.21732310950756,-0.083015434443951],[0.11574057489634,-0.070346243679523,-0.093197412788868],[-0.097222544252872,-0.0057115429081023,0.33340558409691]],[[-0.10021261870861,-0.0097936913371086,-0.044626135379076],[-0.031624749302864,0.029188863933086,-0.047893166542053],[0.042621444910765,0.0094815818592906,-0.03589628636837]],[[-0.058628357946873,0.11196308583021,-0.073865786194801],[0.054355777800083,-0.0088382232934237,-0.035182654857635],[-0.020153498277068,0.050397641956806,-0.057690653949976]],[[-0.073833920061588,-0.042456794530153,0.072462759912014],[0.030129555612803,0.0439278408885,0.05860123410821],[-0.0021347294095904,-0.19420751929283,0.063474304974079]],[[0.015144637785852,0.03988116979599,-0.020836468786001],[-0.037467535585165,0.00053805211791769,0.033526640385389],[-0.011568831279874,0.033359415829182,-0.045311976224184]],[[-0.0038884817622602,0.013130756095052,-0.062857367098331],[-0.0032339866738766,-0.020181827247143,0.014990461990237],[-0.034235920757055,0.0097439307719469,-0.04775957763195]],[[-0.036216925829649,-0.0011598793789744,-0.044598400592804],[0.0024686714168638,-0.047825075685978,0.053697161376476],[-0.044812850654125,0.0044041662476957,0.037223644554615]],[[0.015098255127668,-0.043024007230997,-0.036949243396521],[-0.00028545400709845,-0.046660147607327,0.043100476264954],[0.021655874326825,-0.015859242528677,-0.031981237232685]],[[0.058007802814245,0.0031829606741667,-0.0051681301556528],[-0.14374987781048,0.10329462587833,-0.1063996180892],[0.062434654682875,0.036623004823923,0.072245590388775]],[[-0.029341777786613,0.037982270121574,0.0034397644922137],[-0.090919710695744,-0.060016188770533,0.036053743213415],[0.043462496250868,-0.0067240609787405,0.01700366102159]],[[0.020558651536703,-0.036173649132252,-0.026711743324995],[0.066638082265854,0.043983887881041,-0.020310286432505],[-0.0089520942419767,0.0016230286564678,0.032156921923161]],[[-0.03992846980691,-0.10417900979519,-0.0050058532506227],[-0.044838655740023,0.013413483276963,0.019441466778517],[0.040537808090448,-0.0048956489190459,-0.068877257406712]],[[-0.037278443574905,0.016812494024634,-0.018089048564434],[0.0040724640712142,-0.025920942425728,0.02974321693182],[-0.039477992802858,-0.089395925402641,0.039046350866556]],[[-0.017137365415692,0.062710590660572,-0.040653854608536],[0.066633090376854,-0.058792363852262,0.00038324331399053],[-0.063711069524288,0.045041270554066,0.015448502264917]],[[-0.0046493876725435,-0.0011707501253113,-0.023672064766288],[-0.0023511915933341,-0.097515277564526,-0.066001169383526],[-0.0019268316682428,-0.038092147558928,-0.048197686672211]],[[0.040063347667456,-0.0079209860414267,0.026778470724821],[0.04103135317564,-0.052024841308594,0.013265813700855],[0.038476619869471,-0.032441396266222,-0.03291679546237]],[[-0.079032205045223,0.057001102715731,-0.062070801854134],[0.021245466545224,0.0099827954545617,-0.037972401827574],[-0.056694287806749,0.089870519936085,0.048151701688766]],[[-0.093105494976044,-0.0050983587279916,0.0034892002586275],[-0.027084838598967,0.032199401408434,-0.0090201431885362],[-0.045624677091837,-0.066735297441483,-0.01115320250392]],[[0.014128134585917,-0.11200691014528,-0.039193853735924],[0.078473918139935,0.0010269405320287,0.046238601207733],[-0.05933603271842,0.0045878477394581,-0.025471154600382]],[[0.041575644165277,-0.039121590554714,-0.020601330325007],[0.0079843448475003,-0.095252968370914,0.021050380542874],[0.0010930517455563,0.013822227716446,-0.014374585822225]],[[-0.077616423368454,0.099467821419239,-0.058326665312052],[0.029271297156811,-0.05498206615448,0.10279028117657],[0.01627529039979,0.056234039366245,0.054257955402136]],[[0.0042656818404794,-0.038976918905973,0.019730571657419],[-0.010133108124137,-0.0018720406806096,0.024561002850533],[0.042215816676617,0.017829431220889,-0.029099952429533]],[[-0.063734382390976,0.011537617072463,-0.020358100533485],[-0.020191488787532,-0.031212158501148,-0.090864814817905],[0.022651856765151,-0.10373345017433,-0.051718849688768]],[[-0.090858668088913,-0.0079560577869415,-0.067617617547512],[-0.0043650376610458,0.020074935629964,0.0022780459839851],[0.0078097023069859,0.039334859699011,-0.046015728265047]],[[-0.0021116898860782,0.10193761438131,-0.15222574770451],[-0.005577830132097,-0.11674202978611,0.052996944636106],[0.029302485287189,0.04327154904604,-0.0052862209267914]],[[-0.023711413145065,0.018702298402786,-0.021299542859197],[-0.15298718214035,-0.016534205526114,0.076730474829674],[-0.17190654575825,0.08610638231039,-0.041791681200266]],[[-0.0043014213442802,-0.1735580265522,0.040316674858332],[0.0058507542125881,0.092604823410511,0.083505213260651],[0.028606666252017,-0.028257250785828,0.018741140142083]],[[0.0040007908828557,-0.091350093483925,-0.0031529753468931],[-0.0032195961102843,0.032159954309464,0.030930366367102],[-0.025702783837914,-0.022452976554632,-0.03072614967823]],[[-0.026223380118608,-0.044621754437685,0.0023809147533029],[-0.0088048912584782,-0.003122947877273,0.014755035750568],[-0.061692889779806,-0.0071885604411364,-0.04291657730937]],[[0.056050904095173,-0.044982243329287,0.10002519190311],[-0.023810720071197,-0.02393813431263,-0.015563130378723],[-0.030597262084484,0.0040845503099263,0.038634937256575]],[[0.029201544821262,-0.078540690243244,-7.1247886808123e-06],[0.012840515933931,-0.050210744142532,-0.026783818379045],[-0.016695031896234,-0.017139207571745,-0.022598043084145]],[[-0.06324478238821,-0.012548772618175,-0.027977932244539],[0.013592679984868,0.012824709527194,0.080758050084114],[0.045637521892786,-0.040165692567825,0.062501303851604]],[[-0.050568036735058,-0.030865618959069,0.049993105232716],[-0.041503664106131,0.020292727276683,-0.039164934307337],[0.018246171995997,-0.027196662500501,0.0011672202963382]],[[-0.027869859710336,-0.00074604310793802,-0.021314945071936],[-0.073596403002739,0.089157417416573,-0.013385171070695],[-0.047774009406567,-0.0075179077684879,-0.072220511734486]],[[0.082121960818768,-0.090667828917503,-0.0007659558323212],[0.019627258181572,-0.016170857474208,-0.019328001886606],[0.00875732768327,0.034808054566383,0.0064098597504199]],[[-0.02967943996191,-0.086790718138218,0.00072119495598599],[-0.080019354820251,0.063114024698734,-0.05827821418643],[-0.13049006462097,0.049094751477242,0.060562573373318]],[[0.041934613138437,-0.030562594532967,0.21383656561375],[0.069053895771503,-0.053705185651779,0.027894597500563],[0.023823400959373,-0.018179088830948,0.083015024662018]],[[0.10211768746376,-0.092880256474018,-0.030046548694372],[-0.011493145488203,-0.01692383736372,0.018293511122465],[-0.14842317998409,0.0088397627696395,-0.032845757901669]],[[0.012565284967422,0.059125810861588,-0.038338009268045],[-0.0074828010983765,0.016863111406565,-0.030688755214214],[-0.030052915215492,0.02531698346138,-0.082752875983715]],[[0.024780832231045,0.030211362987757,-0.027769749984145],[0.0035429075360298,-0.080861315131187,-0.02540404163301],[-0.026885828003287,0.016376221552491,-0.040083233267069]],[[0.044061530381441,-0.067325264215469,0.048083186149597],[0.024205695837736,0.053495939821005,-0.061328820884228],[0.025746516883373,-0.03283242508769,0.007078577298671]],[[-0.0034265646245331,-0.067686304450035,0.030689666047692],[-0.0053175603970885,-0.054687470197678,0.029716150835156],[-0.041593141853809,-0.037806298583746,-0.033752378076315]],[[-0.018658168613911,0.020075615495443,-0.011807809583843],[-0.047017902135849,0.014103535562754,-0.11784878373146],[-0.023841442540288,-0.079477079212666,0.0064081693999469]],[[0.1275467723608,-0.081622034311295,0.069567494094372],[-0.029928496107459,0.0621741078794,-0.012712213210762],[-0.01411912124604,-0.058137401938438,0.005462602712214]],[[-0.031736753880978,-0.0056853047572076,0.059586945921183],[-0.0084680700674653,0.021369630470872,-0.091845914721489],[0.016614248976111,-0.03504928201437,0.062876619398594]],[[0.03168822452426,0.066818475723267,-0.04985548183322],[-0.013630242086947,-0.052385687828064,0.017326861619949],[0.0357865691185,-0.067519649863243,-0.079034715890884]],[[-0.011328868567944,0.0088840229436755,-0.039493974298239],[-0.00087537808576599,0.076394341886044,0.055896006524563],[-0.036393817514181,-0.037311173975468,-0.055379763245583]],[[0.031881384551525,-0.022751828655601,-0.020960444584489],[-0.037672024220228,-0.010615960694849,-0.020472202450037],[-0.0020971249323338,-0.07328499853611,-0.087240844964981]],[[0.015708666294813,-0.16387031972408,0.080785632133484],[-0.016804270446301,0.029387507587671,-0.011348894797266],[0.013602011837065,-0.010496025905013,-0.0044121616519988]]],[[[0.030191414058208,-0.022650936618447,-0.012479977682233],[-0.0080659268423915,-0.040641341358423,0.040101446211338],[-0.018458411097527,-0.050791718065739,0.058674909174442]],[[0.0034924990031868,-0.037130448967218,-0.043333057314157],[0.026551984250546,0.012365594506264,-0.054533712565899],[0.051940895617008,0.061443518847227,-0.018069049343467]],[[-0.020025324076414,0.019795101135969,-0.017444578930736],[0.045255467295647,-0.061398692429066,0.025123784318566],[0.043263286352158,0.016060518100858,0.043869331479073]],[[0.01304046344012,-0.05337094143033,-0.11490575969219],[0.0021870024502277,0.046934090554714,-0.018263064324856],[0.025195946916938,0.049856465309858,0.03870166093111]],[[0.026609240099788,-0.020772891119123,-0.011351403780282],[-0.012143699452281,0.042504698038101,0.02045414224267],[-0.021293334662914,-0.0092409206554294,-0.019716016948223]],[[0.056106261909008,-0.018354088068008,-0.0035646636970341],[0.067516542971134,-0.032382573932409,-0.027066748589277],[-0.03359155729413,-0.048651281744242,0.023297868669033]],[[0.013393739238381,0.015975663438439,0.060558527708054],[-0.13680128753185,-0.066554762423038,0.052489247173071],[-0.018020505085588,0.055783957242966,-0.00089801126159728]],[[-0.022665284574032,-0.024469280615449,-0.083763167262077],[0.001267469720915,-0.0051464359275997,0.0059869326651096],[0.060827318578959,0.02903325855732,0.05738116055727]],[[-0.00026683989563026,-0.0020674832630903,0.0046561793424189],[-0.042968284338713,-0.019544702023268,0.029138362035155],[-0.025427903980017,0.051034443080425,0.00097968417685479]],[[0.035159520804882,-0.022393157705665,0.026785135269165],[-0.01444626133889,-0.055114261806011,-0.0013332385569811],[0.018644554540515,0.0040317103266716,0.002781581832096]],[[-0.022071037441492,-0.016472542658448,0.055364940315485],[0.03292753174901,0.010267628356814,-0.0024532394018024],[-0.015932431444526,-0.013265358284116,-0.035662688314915]],[[-0.0079512791708112,0.042645130306482,0.0079973014071584],[-0.090680159628391,0.10154005885124,0.040496662259102],[-0.14956192672253,-0.0056924847885966,0.034470722079277]],[[-0.0039547942578793,-0.0080716488882899,0.017748434096575],[0.086637154221535,0.016448326408863,-0.0034736162051558],[-0.094757661223412,-0.0060746986418962,0.003254986833781]],[[0.033615563064814,-0.0059882765635848,-0.034939631819725],[0.074487425386906,-0.012277541682124,-0.0048633110709488],[0.0098118791356683,0.025890709832311,-0.068804420530796]],[[0.030511684715748,-0.012029438279569,-0.019196819514036],[-0.026525942608714,-0.037068527191877,-0.015440478920937],[0.014991762116551,0.0061300368979573,0.045431967824697]],[[-0.073033042252064,-0.036272972822189,0.029366079717875],[0.064142413437366,0.0035029172431678,0.01059743668884],[-0.0094421394169331,0.0052749183960259,-0.0091784410178661]],[[0.024153579026461,0.0080602103844285,0.013940772973001],[-0.042333129793406,-0.022452397271991,-0.048467323184013],[0.034489925950766,-0.0069376318715513,0.027722166851163]],[[-0.036948494613171,0.016553699970245,-0.0026409288402647],[-0.034740392118692,-0.0082685593515635,-0.0053090779110789],[-0.006324992980808,0.072374157607555,-0.0039329887367785]],[[0.00092283525737002,-0.00093832437414676,0.0061375950463116],[-0.04798349738121,0.020394330844283,-0.029841566458344],[0.0083888815715909,0.047050297260284,0.0015556253492832]],[[0.048369485884905,0.086468629539013,0.098197467625141],[0.020105829462409,0.029991371557117,0.033165622502565],[0.080884285271168,0.017012054100633,0.07808929681778]],[[0.02010908909142,0.035855766385794,-0.068021193146706],[0.010107674635947,0.13407625257969,-0.092242002487183],[0.016493627801538,0.062660746276379,-0.085937201976776]],[[0.094950899481773,-0.019014485180378,-0.067526362836361],[0.022389858961105,0.008840873837471,-0.059261590242386],[-0.019615098834038,0.014626791700721,0.03272382542491]],[[0.011252396740019,-0.0086787333711982,0.0059239873662591],[-0.0039501432329416,-0.0043449718505144,0.016835261136293],[-0.017215300351381,0.033391110599041,-0.033232029527426]],[[-0.051683835685253,0.07624214142561,-0.069990284740925],[0.0095852231606841,-0.012290133163333,-0.062811084091663],[0.054272033274174,0.04775470495224,-0.050830390304327]],[[-0.052605655044317,0.0070122452452779,-0.040797397494316],[-0.028561679646373,0.04895643889904,0.012781837955117],[0.02762228064239,0.03249691799283,-0.016097687184811]],[[-0.020414281636477,-0.025977520272136,0.04139881581068],[0.025109777227044,-0.012292268685997,-0.054943688213825],[0.010730086825788,0.035554889589548,0.015964919701219]],[[-0.012930841185153,0.072124987840652,-0.058211591094732],[-0.052067648619413,-0.012384145520627,0.048675425350666],[-0.079115577042103,0.040549915283918,0.041758898645639]],[[0.050596956163645,-0.0083156479522586,0.0018365044379607],[-0.024252872914076,-0.029134953394532,0.036119218915701],[0.0056711230427027,-0.02552780136466,0.022688830271363]],[[-0.018834920600057,-0.019478069618344,0.044647019356489],[-0.0093855410814285,-0.009024572558701,0.010826314799488],[-0.0076142004691064,-0.04083538427949,0.051977690309286]],[[-0.049224480986595,-0.13254122436047,-0.021517841145396],[-0.048020552843809,0.016503328457475,0.067083574831486],[0.02010060288012,0.073420159518719,0.070406682789326]],[[-0.023275388404727,-0.015871625393629,-0.0086053078994155],[-0.02338607236743,-0.041678484529257,0.048383619636297],[-0.0011059517273679,0.019390698522329,0.050549849867821]],[[0.030832037329674,-0.017079161480069,-0.0087341144680977],[0.029070436954498,-0.028887467458844,0.0040245032869279],[0.025392910465598,-0.022810637950897,-0.016024135053158]],[[0.02295551635325,0.0041219387203455,0.019453510642052],[-0.04106979072094,0.022580977529287,-0.0071980156935751],[0.0042188614606857,-0.020143773406744,0.021207321435213]],[[0.0092140985652804,0.0070333280600607,0.031929664313793],[0.066622361540794,0.10341236740351,-0.075633361935616],[-0.005912278778851,-0.084210515022278,-0.054119419306517]],[[0.097407922148705,0.086879462003708,0.014850846491754],[-0.058490917086601,0.082474686205387,0.034125179052353],[-0.12011084705591,-0.094536125659943,-0.039338394999504]],[[-0.045545369386673,-0.010058671236038,-0.0068998602218926],[0.045396588742733,-0.0072438004426658,0.025218887254596],[0.0058061187155545,-0.045903217047453,0.0503014549613]],[[-0.015398618765175,-0.024579126387835,0.01770831272006],[0.021321669220924,-0.006064179353416,0.043203957378864],[-0.028624093160033,-0.0042639304883778,-0.020079020410776]],[[0.033459339290857,0.0033188813831657,-0.031327869743109],[-0.0035684476606548,0.03354762122035,-0.032420203089714],[-0.040555149316788,0.037951495498419,0.021930165588856]],[[-0.045862387865782,0.024911560118198,0.0047853728756309],[-0.020088663324714,0.010617317631841,-0.010002111084759],[0.017503486946225,-0.013650620356202,0.026413461193442]],[[0.045445431023836,-0.078427404165268,-0.081586509943008],[0.1067353412509,-0.036003634333611,0.0099990321323276],[0.044035196304321,-0.014186049811542,-0.0076294648461044]],[[0.055962320417166,0.069463506340981,0.054220121353865],[-0.059423718601465,-0.033674098551273,-0.067707121372223],[0.0018757130019367,-0.062679886817932,0.013562561944127]],[[0.017800947651267,0.0080009400844574,0.00062027334934101],[0.0078704860061407,0.0076903533190489,0.008469239808619],[0.0029254120308906,-0.0095359934493899,-0.042115457355976]],[[0.0065207197330892,-0.0051235109567642,-0.024505030363798],[0.012660265900195,0.035925857722759,0.043176118284464],[-0.011376680806279,-0.013743136078119,-0.048455435782671]],[[-0.021659035235643,0.013051569461823,0.028589656576514],[0.024294000118971,-0.0047630951739848,-0.044793527573347],[0.013361579738557,-0.026465961709619,0.039920084178448]],[[-0.017119023948908,-0.012726068496704,-0.0096453279256821],[0.01885899528861,-0.0039818878285587,0.023102644830942],[0.0030333094764501,0.0021535251289606,-0.013801387511194]],[[0.067614585161209,0.0090675093233585,0.047415446490049],[-0.047773290425539,-0.069734133780003,-0.042106442153454],[0.011791439726949,-0.024722333997488,0.03034813515842]],[[-1.7785628187994e-06,0.032609935849905,0.0017531715566292],[-0.0054019195958972,-0.036361310631037,-0.014170091599226],[-0.013892152346671,0.048773158341646,-0.011513522826135]],[[-0.029932554811239,0.00029210807406344,0.047417361289263],[0.01151436381042,-0.040896385908127,-0.062922649085522],[0.048688374459743,0.024968108162284,-0.0048343101516366]],[[-0.017261674627662,-0.018642760813236,0.0071121440269053],[-0.04571471363306,0.024819331243634,0.026610266417265],[-0.0026109660975635,0.012780764140189,0.018863745033741]],[[0.0035951286554337,-0.031969215720892,-0.010576418600976],[0.015057703480124,0.042575385421515,0.004255794454366],[-0.043222088366747,-0.040912091732025,0.032944105565548]],[[0.025076122954488,-0.021236239001155,0.054297547787428],[-0.012836817651987,-0.030486397445202,-0.025351403281093],[0.016214214265347,0.0095815723761916,0.0067526153288782]],[[0.034407258033752,-0.023767137899995,-0.0057467184960842],[0.0009631997672841,-0.077888794243336,-0.024305641651154],[0.092567123472691,0.0015929862856865,-0.007966929115355]],[[-0.067247003316879,0.062161486595869,0.01201930642128],[-0.036756053566933,-0.02748541533947,0.017247369512916],[0.033359371125698,0.02385026589036,-0.0061267367564142]],[[0.051005434244871,-0.0025766419712454,0.0007262610597536],[-0.030104355886579,-0.050510477274656,0.019446678459644],[0.016749696806073,0.017376834526658,-0.021632695570588]],[[0.0019061904167756,-0.009577477350831,-0.0015802251873538],[0.038347221910954,-0.015191811136901,0.033176399767399],[-0.024855654686689,-0.0073212501592934,0.0050263949669898]],[[0.0258095767349,0.009377027861774,-0.04750095307827],[-0.06559993326664,0.070409275591373,0.024520114064217],[-0.015260895714164,0.034551467746496,0.0068741380237043]],[[0.022895207628608,-0.02800958044827,0.024764636531472],[-0.0079651521518826,-0.003932146821171,0.023580918088555],[-0.002776674227789,-0.032442312687635,0.0046614869497716]],[[-0.010289487428963,0.0044835223816335,0.036819610744715],[0.048677586019039,0.082340352237225,-0.0088479425758123],[0.013864264823496,0.0036831598263234,-0.13715690374374]],[[-0.051576722413301,0.04774035140872,0.017128624022007],[-0.020626550540328,0.019222898408771,0.0024038872215897],[-0.03757007047534,0.024471575394273,-0.016544830054045]],[[-0.11478931456804,-0.12539546191692,-0.069513164460659],[-0.024008255451918,-0.13596086204052,-0.096985779702663],[-0.11551444232464,-0.16265711188316,-0.10289397835732]],[[0.035233691334724,0.031602244824171,-0.031676605343819],[0.015402099117637,0.0020947160664946,-0.0088583705946803],[-0.025595884770155,-0.013292321935296,-0.011160694994032]],[[0.0023537054657936,-0.0069989613257349,0.01390412542969],[-0.0035551132168621,-0.081227019429207,0.040089048445225],[0.00090858218027279,-0.010683960281312,0.040890354663134]],[[0.022843578830361,-0.017240196466446,0.01993147097528],[-0.010778189636767,-6.5343177993782e-05,0.0043219290673733],[0.0048766313120723,-0.010438589379191,0.014218798838556]],[[0.0056880852207541,0.010587188415229,-0.019566856324673],[0.0041624079458416,-0.034892596304417,0.0084900837391615],[0.0046827727928758,-0.00044552306644619,0.040684062987566]]],[[[0.071600183844566,-0.038807801902294,-0.20938558876514],[-0.02186599932611,-0.027997015044093,-0.15783546864986],[0.055007580667734,0.057794969528913,-0.038442555814981]],[[0.027268363162875,-0.048801951110363,0.11988860368729],[0.14482237398624,-0.1050054654479,0.1704139560461],[-0.0055290800519288,-0.08452383428812,-0.0070769651792943]],[[0.024946108460426,0.0025961510837078,0.01278935931623],[-0.0094576571136713,-0.0023171792272478,-0.040696337819099],[-0.0012536240974441,-0.054981227964163,-0.050154764205217]],[[0.057650301605463,-0.032132059335709,-0.020558698102832],[0.060699440538883,-0.068461827933788,-0.042349893599749],[0.025990329682827,-0.035180456936359,-0.037647876888514]],[[0.041885193437338,0.11609220504761,0.044394090771675],[-0.19579850137234,-0.0031312645878643,0.006015625782311],[-0.013591324910522,0.035294536501169,0.055868875235319]],[[-0.043075334280729,0.060412727296352,-0.033545892685652],[-0.057332597672939,-0.1025221273303,-0.00012925096962135],[-0.011086707934737,0.06764318048954,-0.027057841420174]],[[-0.0088378125801682,-0.061964519321918,-0.030916294082999],[-0.020435931161046,-0.078851707279682,0.023718057200313],[-0.0532589815557,-0.056324109435081,0.036831352859735]],[[0.020182017236948,-0.054155107587576,0.014935730956495],[0.07312048971653,-0.011971168220043,0.027675054967403],[0.0032612085342407,0.099573872983456,-0.070287473499775]],[[0.010819599963725,-0.022963132709265,-0.076857008039951],[0.019739810377359,-0.044822815805674,0.060907609760761],[0.010454236529768,0.016973519697785,0.0033873477950692]],[[-0.11877734214067,-0.016716811805964,0.068152189254761],[-0.015904692932963,0.095510601997375,0.020286755636334],[0.034551609307528,-0.035605330020189,-0.10313954949379]],[[0.090193420648575,-0.038941144943237,0.030103636905551],[0.097513094544411,0.055894669145346,0.047312740236521],[-0.077214896678925,-0.0036432556807995,-0.085878409445286]],[[-0.23987822234631,-0.0037612293381244,0.014578233473003],[-0.33690184354782,0.013992981053889,0.035478603094816],[-0.036470610648394,-0.016679434105754,-0.083116419613361]],[[-0.014567572623491,-0.057456448674202,-0.084413312375546],[0.028037637472153,0.012922145426273,0.0033948493655771],[-0.05792449042201,-0.061532761901617,-0.17682856321335]],[[0.010454285889864,0.011680630035698,0.022609919309616],[-0.010463231243193,0.043260429054499,0.048650767654181],[-0.093779444694519,-0.022011563181877,0.030292008072138]],[[0.073249615728855,-0.013950165361166,-0.016020465642214],[-0.007654694840312,-0.058608651161194,0.0097073428332806],[-0.027239769697189,0.027687355875969,-0.037032950669527]],[[-0.056881975382566,-0.0086754327639937,-0.022416168823838],[-0.027361940592527,0.05401274934411,0.014979138970375],[-0.010131374001503,-0.064103946089745,-0.059842236340046]],[[-0.056103106588125,0.050903543829918,0.024022065103054],[0.0059033017605543,-0.077116049826145,-0.007205240894109],[0.12401363998652,-0.022218881174922,0.040474560111761]],[[-0.10814533382654,0.034418847411871,0.00049172848230228],[-0.10836412012577,-0.0065119112841785,-0.0476960465312],[0.0050585488788784,-0.014714612625539,-0.10338091850281]],[[-0.05127015337348,-0.0059428159147501,-0.044209770858288],[-0.037414576858282,0.041101172566414,-0.0080638071522117],[-0.001660359557718,0.013702796772122,-0.00349315488711]],[[0.0096499398350716,0.024140371009707,0.0035180351696908],[0.0109683861956,0.0010712186340243,-0.031427040696144],[-0.0096412329003215,-0.012602395378053,0.0054832184687257]],[[0.00062461767811328,0.0110595934093,-0.027468340471387],[-0.11081060022116,0.019339825958014,0.057894937694073],[0.0029061280656606,-0.084453210234642,-0.0065507809631526]],[[0.089088059961796,0.10710510611534,-0.052454322576523],[0.039988946169615,0.0040628793649375,-0.0048944922164083],[-0.01573233678937,-0.097140409052372,-0.017476171255112]],[[0.0024923740420491,0.012903707101941,-0.015995545312762],[-0.13036347925663,-0.058108493685722,0.016324019059539],[-0.12542703747749,-0.0098640443757176,-0.03004358522594]],[[0.21986554563046,0.076926939189434,-0.0086454339325428],[0.14736379683018,0.10132604837418,0.023419016972184],[0.01932486705482,-0.011347966268659,0.16346542537212]],[[0.0035319372545928,0.07668961584568,0.002789095742628],[-0.056473053991795,0.031916134059429,-0.040524560958147],[-0.13762475550175,0.0048247771337628,0.0082046119496226]],[[0.024691378697753,0.058519933372736,0.060102477669716],[0.043218214064837,0.07323981821537,0.042373325675726],[-0.024642907083035,0.021798584610224,0.0064376876689494]],[[0.096440084278584,0.06898820400238,-0.01694299839437],[-0.084821335971355,-0.025938635692,-0.020546618849039],[0.071769073605537,0.057166028767824,-0.06480897217989]],[[0.015984512865543,0.007470655720681,-0.044283617287874],[-0.089474000036716,-0.0026937865186483,-0.02147857658565],[0.043198466300964,-0.0088089583441615,0.022365190088749]],[[-0.087208189070225,0.0082612866535783,0.038962699472904],[0.13253585994244,-0.053909972310066,-0.0041305478662252],[0.023796277120709,0.05687902495265,-0.048619899898767]],[[-0.073884680867195,-0.12760779261589,-0.049534298479557],[-0.13732899725437,-0.14445997774601,-0.26984080672264],[-0.035606320947409,0.030210053548217,0.032295383512974]],[[0.080794438719749,-0.04980755597353,-0.051622554659843],[-0.044866438955069,0.014050170779228,-0.0053640473634005],[-0.04305949062109,-0.14822292327881,0.032764598727226]],[[-0.0038221685681492,0.041846942156553,-0.013690725900233],[-0.11913494765759,-0.037663832306862,-0.023141887038946],[-0.022257246077061,-0.06951817125082,0.030309218913317]],[[-0.024883262813091,-0.064500167965889,0.025928761810064],[-0.02824948169291,-0.039313293993473,-0.022051956504583],[0.019377950578928,0.0040704356506467,0.0074445535428822]],[[0.019955208525062,-0.077175721526146,0.078689724206924],[0.018345788121223,0.12725237011909,-0.011191581375897],[0.014679364860058,0.12695860862732,-0.13129788637161]],[[0.13441428542137,0.053149480372667,-0.071504600346088],[-0.014363182708621,0.078418672084808,-0.066923037171364],[0.014861155301332,0.062065951526165,0.12218602001667]],[[-0.10194582492113,-0.0031576773617417,0.038093440234661],[-0.038374725729227,-0.062111426144838,0.0098112868145108],[0.043231073766947,0.019507484510541,-0.011000235565007]],[[-0.010537995956838,0.030874259769917,0.014343870803714],[0.060232304036617,-0.02189264446497,-0.038308169692755],[-0.0060584521852434,-0.022160783410072,-0.063211813569069]],[[0.12549974024296,0.0023608449846506,0.14838971197605],[0.040281429886818,-0.0089173223823309,0.016995366662741],[-0.056783806532621,-0.022866183891892,-0.07523250579834]],[[0.14971245825291,-0.067812204360962,-0.040271021425724],[-0.011478064581752,0.095379568636417,0.050950087606907],[-0.031377337872982,-0.057202272117138,-0.036018203943968]],[[0.085809580981731,0.089539803564548,0.022643711417913],[-0.045136474072933,0.020949095487595,-0.097009606659412],[0.0053872456774116,0.05769994109869,0.018738837912679]],[[0.026191985234618,-0.022082572802901,-0.038408435881138],[-0.070056900382042,0.019737536087632,0.029326301068068],[-0.012504030950367,-0.016502637416124,-0.098504953086376]],[[0.13406032323837,0.0061319610103965,0.028290119022131],[0.022711245343089,-0.045857258141041,-0.054714750498533],[-0.0027508896309882,-0.0021153998095542,-0.0015969958622009]],[[-0.12761321663857,-0.10471320152283,0.042600926011801],[0.050357889384031,-0.10164903849363,-0.091902330517769],[-0.055593926459551,-0.10221030563116,-0.028109399601817]],[[0.003907697275281,-0.060242082923651,-0.059979360550642],[0.040418956428766,-0.0021298076026142,0.024628238752484],[-0.0013773336540908,0.016969939693809,0.089525438845158]],[[-0.11386112123728,-0.023297848179936,-0.0050352667458355],[0.029916785657406,-0.077290125191212,-0.064003646373749],[-0.014872256666422,0.086876682937145,-0.08547531068325]],[[-0.072470560669899,-0.0031007174402475,-0.0040979846380651],[-0.100536249578,-0.010825667530298,-0.034077689051628],[-0.013192773796618,-0.042403522878885,-0.09555085003376]],[[0.047043390572071,-0.039391253143549,0.044215496629477],[0.026639452204108,-0.0041588535532355,0.010302675887942],[0.014926785603166,-0.0083464961498976,-0.069415122270584]],[[-0.078464537858963,-0.0045241774059832,0.00063040654640645],[-0.02104402706027,-0.0051868776790798,0.031408656388521],[-0.0085050715133548,0.0082562789320946,0.083900608122349]],[[0.0042355176992714,0.071841545403004,-0.015202335081995],[-0.043467786163092,0.099708467721939,-0.041673209518194],[0.047481529414654,0.010796397924423,-0.12047050893307]],[[-0.026582155376673,-0.017835201695561,0.091495282948017],[0.051480878144503,-0.021384553983808,-0.10827185958624],[0.072858400642872,0.049057625234127,-0.020952811464667]],[[0.0053386348299682,-0.039586961269379,0.012741171754897],[-0.098876774311066,0.049570608884096,0.035840142518282],[-0.048260636627674,-0.0061465203762054,0.071213684976101]],[[0.084630705416203,0.022192070260644,-0.02335562184453],[0.04874986037612,0.033916011452675,-0.038018256425858],[0.049858726561069,-0.057200934737921,-0.089334174990654]],[[-0.070191435515881,0.04670849069953,-0.037275642156601],[0.0011962613789365,0.0080830194056034,0.095062717795372],[0.061381425708532,-0.015450106933713,0.042066354304552]],[[-0.03962442651391,0.11758547276258,0.033709451556206],[-0.11687214672565,-8.7855572928675e-05,-0.04755986109376],[-0.024940844625235,-0.022562561556697,-0.026267010718584]],[[-0.042007096111774,-0.048680488020182,-0.03143548220396],[0.016990443691611,0.07731269299984,-0.045346934348345],[-0.043534304946661,-0.032308518886566,-0.072885416448116]],[[0.00080775655806065,0.013932484202087,0.0078303348273039],[-0.068056009709835,0.00064158265013248,-0.0038222032599151],[-0.06579614430666,-0.0083642108365893,-0.049489218741655]],[[0.019203368574381,0.014384483918548,-0.063830003142357],[-0.027826840057969,0.011177781969309,-0.08749807626009],[-0.10068688541651,-0.042931038886309,-0.10496342182159]],[[0.00018332246690989,-0.044689249247313,-0.06785986572504],[0.01491489354521,0.026240203529596,-0.034550204873085],[0.033007495105267,0.010895815677941,0.040173102170229]],[[0.10551571846008,-0.0088923620060086,-0.028433378785849],[0.04642828181386,-0.00016217894153669,-0.070556335151196],[0.050223968923092,-0.0033707295078784,-0.019967384636402]],[[-0.027007872238755,-0.057633895426989,0.025536220520735],[-0.055906288325787,-0.0029748028609902,0.057611513882875],[0.023950602859259,0.025140410289168,0.030467530712485]],[[0.074769131839275,-0.033265810459852,0.013719997368753],[-0.044970396906137,0.027662931010127,-0.05212302133441],[0.016680819913745,-0.026535108685493,0.018542321398854]],[[-0.050688356161118,-0.07091485708952,-0.00053423945792019],[-0.05185055360198,-0.050501458346844,-0.055613465607166],[0.010904052294791,0.088577300310135,0.023950232192874]],[[-0.0011233389377594,-0.0030451910570264,-0.028307171538472],[-0.085826322436333,0.025331055745482,0.030272772535682],[0.00068715552333742,-0.017258651554585,-0.038255285471678]],[[-0.088074654340744,-0.070031620562077,-0.012555348686874],[-0.011989393271506,0.0044665117748082,-0.0022828583605587],[-0.0097089717164636,0.068376496434212,0.018319599330425]]],[[[-0.018083997070789,0.028710974380374,0.049210447818041],[-0.081732116639614,-0.022114612162113,-0.082368820905685],[0.10995753854513,0.021669421344995,0.070326842367649]],[[-0.074906527996063,-0.077209554612637,0.014432997442782],[0.020198699086905,-0.055443201214075,-0.074114307761192],[-0.15328405797482,0.021079193800688,-0.074506916105747]],[[-0.067409314215183,-0.061673447489738,-0.044068358838558],[-0.1259687691927,-0.077434554696083,-0.043396979570389],[-0.082339875400066,-0.12038218975067,-0.088288173079491]],[[-0.002030449686572,-0.19089506566525,-0.074756279587746],[-0.053748797625303,-0.021525701507926,-0.10058825463057],[-0.058144945651293,-0.017878018319607,-0.12274096906185]],[[0.018117548897862,-0.034505277872086,0.044954273849726],[-0.12454897910357,-0.0061882375739515,-0.02260753698647],[-0.053588513284922,-0.040347516536713,-0.0008465587743558]],[[-0.080382913351059,-0.0018482230370864,-0.070786684751511],[-0.013705555349588,-0.17469997704029,0.069053560495377],[-0.070898175239563,-0.087191559374332,0.036478858441114]],[[-0.001211684779264,-0.13027822971344,-0.09003109484911],[-0.11916160583496,-0.0068375249393284,-0.073638945817947],[0.036507584154606,-0.059558842331171,-0.037700697779655]],[[0.0058745741844177,0.069354645907879,-0.042380914092064],[-0.018788807094097,-0.087064757943153,0.054516866803169],[-0.13889047503471,0.027979297563434,-0.03673031181097]],[[0.019601721316576,0.021441580727696,-0.002848549047485],[-0.055772244930267,-0.022810716181993,-0.073750555515289],[0.084424719214439,-0.010181088000536,0.079564869403839]],[[-0.056914400309324,-0.071081750094891,-0.037856940180063],[0.030622916296124,-0.029432117938995,0.0067669772543013],[0.011346124112606,-0.097770243883133,0.033844973891973]],[[-0.13544610142708,0.065340846776962,-0.13136360049248],[0.044133435934782,-0.079919762909412,0.012534514069557],[-0.028120582923293,-0.033496916294098,-0.063094168901443]],[[-0.083059951663017,-0.026584055274725,-0.14325442910194],[-0.028185036033392,-0.13496868312359,0.032675307244062],[-0.16026410460472,0.033737253397703,-0.038191981613636]],[[-0.035213202238083,0.040777646005154,-0.01383039727807],[-0.046288657933474,0.0066079744137824,0.0098497793078423],[-0.042473074048758,-0.0099655343219638,0.0091289300471544]],[[-0.20524749159813,0.045226577669382,-0.13307724893093],[0.043117545545101,-0.10274205356836,0.054152902215719],[-0.14085267484188,0.09156297147274,-0.13398978114128]],[[-0.11491297930479,-0.027487065643072,-0.049586914479733],[-0.18656179308891,-0.028646066784859,0.00020820125064347],[-0.13301411271095,0.049657128751278,-0.057576607912779]],[[0.061348851770163,0.033929292112589,-0.075772099196911],[-0.093950711190701,-0.01471153460443,0.096848465502262],[0.053037315607071,0.069124132394791,-0.14042456448078]],[[-0.056454785168171,-0.093913942575455,-0.059073228389025],[0.011347703635693,0.10396676510572,-0.076409466564655],[0.050036236643791,-0.036880861967802,0.00086710613686591]],[[0.03403702750802,-0.029320752248168,-0.047095499932766],[-0.077710412442684,0.00286181923002,-0.12714478373528],[0.097381427884102,-0.047850158065557,-0.06719334423542]],[[0.019018771126866,0.0093791708350182,-0.087933175265789],[0.03899858891964,-0.047632336616516,0.026853866875172],[-0.020714091137052,0.13258929550648,-0.090084254741669]],[[-0.045092578977346,0.021343467757106,0.01732356660068],[0.015332030132413,-0.00053061975631863,-0.021892873570323],[-0.044748533517122,0.024691671133041,0.033475108444691]],[[-0.084847159683704,0.026657249778509,-0.21264714002609],[0.066126435995102,-0.14804121851921,0.029862944036722],[-0.10341139137745,-0.043239273130894,-0.10627225786448]],[[-0.0071220542304218,-0.024061055853963,0.064554482698441],[0.0092078978195786,-0.077478937804699,0.073485963046551],[0.028306843712926,0.0068049221299589,-0.058839615434408]],[[0.017759349197149,0.039377748966217,-0.06710521876812],[0.048332676291466,0.0047547216527164,-0.0084797795861959],[0.04523166641593,-0.048234220594168,-0.040354520082474]],[[0.16559128463268,-0.085223093628883,0.17974072694778],[-0.096258826553822,-0.06981498003006,-0.023844761773944],[0.16940495371819,-0.039718560874462,0.17918889224529]],[[-0.01122768688947,-0.016842920333147,0.017459321767092],[0.015645699575543,0.058986365795135,0.08750656992197],[-0.013734824024141,0.064626313745975,0.031294450163841]],[[0.0087910508736968,0.035605978220701,0.0073049985803664],[0.0060300142504275,0.019201941788197,-0.030757309868932],[0.039083149284124,0.00036419075331651,0.0077140689827502]],[[-0.032208099961281,-0.026652202010155,-0.056270726025105],[-0.023957137018442,-0.0078075877390802,0.020872125402093],[-0.03127108886838,0.015321700833738,-0.052984975278378]],[[0.0069061224348843,-0.047655764967203,-0.048649519681931],[-0.0069935349747539,-0.012315843254328,0.017417361959815],[-0.0013012808049098,0.022650700062513,0.043129213154316]],[[-0.013374251313508,0.096315503120422,-0.11010619997978],[-0.039749171584845,-0.0563546679914,0.02091109380126],[0.017880320549011,0.012217913754284,-0.020104793831706]],[[-0.12609219551086,-0.0081864120438695,0.025848664343357],[0.0015522381290793,-0.050564799457788,-0.045327927917242],[-0.051362402737141,-0.011753863655031,0.047113854438066]],[[0.020201539620757,0.0026525910943747,-0.01792598888278],[-0.0046547786332667,0.010042393580079,-0.011782697401941],[0.052514608949423,0.0048729735426605,0.023697949945927]],[[-0.061819642782211,-0.025974979624152,-0.0048153018578887],[-0.037499766796827,0.067986652255058,-0.033975105732679],[-0.0059272702783346,0.023848215118051,-0.056885380297899]],[[-0.090637803077698,0.01485650613904,-0.062431983649731],[-0.0059289555065334,0.047325748950243,-0.032751780003309],[0.052791848778725,-0.088520191609859,0.0075797191821039]],[[-0.17090111970901,0.13063648343086,-0.16078193485737],[0.10844473540783,-0.080083839595318,-0.077660262584686],[-0.061476413160563,-0.059336647391319,0.030800057575107]],[[-0.00052848266204819,-0.04795628413558,-0.018675826489925],[-0.017503445968032,0.097344182431698,-0.029238695278764],[0.039113856852055,-0.13722264766693,0.0081321289762855]],[[-0.064852952957153,-0.026082824915648,-0.0019537403713912],[-0.011842118576169,-0.044973589479923,-0.015860455110669],[-0.012428252026439,-0.048681858927011,0.015264876186848]],[[0.046903286129236,-0.0091110980138183,-0.023383621126413],[-0.039646979421377,-0.042109951376915,-0.08600141108036],[0.01345288567245,-0.069489739835262,0.036163549870253]],[[-0.065493546426296,-0.033306904137135,-0.034640725702047],[0.036753240972757,-0.038329467177391,-0.012093590572476],[-0.052419297397137,-0.016294354572892,-0.066144421696663]],[[-0.11249474436045,-0.0079033402726054,-0.06308901309967],[-0.0082089575007558,-0.035205826163292,-8.4249426436145e-05],[-0.096772879362106,0.07387113571167,-0.035428743809462]],[[0.036568365991116,-0.16287782788277,0.041617799550295],[-0.1917220801115,-0.03607114776969,-0.1821893453598],[0.1317540705204,-0.19401814043522,-0.0044494597241282]],[[-0.15869569778442,-0.014821017161012,-0.17939892411232],[0.0048180040903389,-0.15579085052013,-0.01701445132494],[-0.28147658705711,0.097615219652653,-0.27425953745842]],[[0.088956482708454,-0.03040517680347,-0.049747284501791],[-0.0092354901134968,0.025781124830246,-0.057119179517031],[-0.068927273154259,-0.024470388889313,-0.0033453281503171]],[[-0.076317943632603,0.0192198920995,-0.092866040766239],[0.022590668871999,-0.0090096220374107,-0.017895381897688],[-0.12470345944166,-0.033369328826666,-0.15298922359943]],[[-0.015355586074293,-0.039991058409214,0.099292397499084],[0.018801474943757,-0.059843253344297,-0.0099288998171687],[-0.049645639955997,0.063127741217613,0.02160338126123]],[[-0.010062828660011,-0.062390722334385,0.038975819945335],[0.0026663921307772,-0.057832192629576,0.026286905631423],[-0.083214357495308,-0.038401633501053,0.0288818012923]],[[-0.10343775898218,-0.086213648319244,-0.060013514012098],[0.10308095067739,0.0078132124617696,-0.038502056151628],[0.054230377078056,-0.058525823056698,0.033487480133772]],[[-0.12586209177971,0.046417251229286,-0.078963100910187],[-0.099302388727665,0.020353684201837,0.096643880009651],[-0.028912039473653,0.0079033197835088,0.049262147396803]],[[-0.055791139602661,0.013176624663174,-0.048999935388565],[0.07385415583849,-0.11005303263664,-0.084895975887775],[-0.0079583926126361,0.066423512995243,-0.077537544071674]],[[-0.05962136015296,-0.069133184850216,0.043229933828115],[-0.0044403746724129,0.062513753771782,-0.061268098652363],[-0.010690536350012,-0.041774116456509,-0.040556520223618]],[[0.019579645246267,-0.094405792653561,-0.01858907006681],[0.010592818260193,-0.035160671919584,0.061366729438305],[-0.12055087089539,0.011390407569706,-0.07725028693676]],[[0.017913829535246,-0.059566855430603,0.033824946731329],[0.032916713505983,0.0028957456815988,-0.04282620921731],[-0.06709797680378,0.10448506474495,-0.064271718263626]],[[0.034725684672594,0.01845964603126,0.096053652465343],[0.033354088664055,-0.023929849267006,-0.022393759340048],[0.036926385015249,-0.015790954232216,0.029474208131433]],[[0.040864992886782,-0.10905532538891,0.0073250299319625],[-0.050773739814758,0.032773543149233,-0.123131506145],[-0.034321743994951,-0.088036768138409,-0.089580222964287]],[[0.0060491929762065,0.005470069590956,0.039877913892269],[-0.041468534618616,0.0099107241258025,-0.042329285293818],[-0.040751770138741,-0.049906928092241,-0.057379465550184]],[[0.029796771705151,-0.028823109343648,0.0038650520145893],[-0.028078906238079,-0.025558402761817,-0.025078482925892],[0.0088324155658484,-0.11781162023544,0.047243170440197]],[[0.078716166317463,0.002914386568591,-0.016581244766712],[0.0096955876797438,0.011123647913337,-0.027892513200641],[0.00096038461197168,-0.039957944303751,0.070103526115417]],[[0.038152609020472,-0.13342601060867,0.030938223004341],[-0.044225949794054,-0.026808140799403,-0.12146811187267],[-0.013643286190927,-0.065590053796768,-0.065077193081379]],[[-0.0024750609882176,-0.033418167382479,-0.099786885082722],[-0.066246747970581,-0.095040403306484,-0.019741386175156],[-0.1185694038868,-0.014241957105696,-0.18838749825954]],[[0.10475467145443,-0.14581860601902,0.12104226648808],[-0.1260017156601,0.077732592821121,-0.22985383868217],[0.14465171098709,-0.20929770171642,0.051919616758823]],[[0.046210620552301,-0.044987760484219,0.041862364858389],[-0.02916345000267,0.038760550320148,-0.043492123484612],[0.02360282279551,-0.00013519197818823,-0.047201797366142]],[[-0.10529684275389,-0.01574682444334,-0.066365823149681],[-0.0003731444303412,-0.064512461423874,-0.074303776025772],[-0.12419656664133,0.010827952995896,-0.083996042609215]],[[-0.081693075597286,-0.033269472420216,-0.021354544907808],[0.010219072923064,0.029657129198313,-0.12723432481289],[-0.04999690502882,-0.053324420005083,-0.010503649711609]],[[-0.1419921964407,-0.045610222965479,0.030937673524022],[0.090721882879734,0.0012282700045034,-0.059064701199532],[0.034628361463547,-0.0081652021035552,-0.01289956830442]],[[0.035784065723419,0.031355950981379,-0.0013249850599095],[-0.10486361384392,0.028338922187686,-0.033200640231371],[0.0001781547034625,0.011955928057432,0.060067489743233]]],[[[-0.16214725375175,0.061625234782696,0.17613163590431],[-0.029835142195225,-0.01634088344872,-0.088069826364517],[0.11155499517918,-0.15535508096218,0.1061904206872]],[[0.051062691956758,0.054704658687115,-0.063185252249241],[-0.11291778832674,0.0045220493339002,-0.092191331088543],[-0.066243998706341,0.04393907636404,-0.052634999155998]],[[-0.0040911445394158,0.0043166843242943,0.0046924883499742],[-0.01358771789819,-0.08483848720789,-0.061032749712467],[0.050734493881464,-0.072388425469398,0.032462313771248]],[[0.011601624079049,-0.050918087363243,-0.022672729566693],[0.08301168680191,-0.08513966947794,-0.044785350561142],[-0.047917705029249,-0.032827995717525,0.00014319784531835]],[[-0.078957967460155,-0.0062812711112201,0.038048669695854],[0.020885379984975,0.059015072882175,0.020988510921597],[0.025615993887186,-0.011243222281337,0.019528297707438]],[[0.019913986325264,0.084980189800262,-0.074458725750446],[-0.0027795394416898,0.01358032412827,-0.042322684079409],[-0.017629062756896,-0.04941138997674,-0.073978610336781]],[[-0.094273284077644,-0.021484969183803,-0.066429108381271],[-0.12814690172672,-0.034660119563341,-0.062750540673733],[-0.026929672807455,-0.043824076652527,0.0018972540274262]],[[-0.012053769081831,-0.013422122225165,0.09236116707325],[-0.085884056985378,-0.0059746820479631,-0.0051560425199568],[-0.081461228430271,0.029133971780539,0.050133991986513]],[[-0.14497621357441,0.092912882566452,0.0594179071486],[-0.014137600548565,-0.051431775093079,-0.0078284703195095],[0.10419164597988,-0.013694440945983,-0.032874163240194]],[[0.12291491776705,-0.1544786542654,0.13115611672401],[-0.046208117157221,-0.058971330523491,0.11083708703518],[-0.14884983003139,-0.076449118554592,0.022484328597784]],[[-0.088235028088093,-0.042435128241777,-0.029344093054533],[0.037197861820459,0.044047255069017,0.0014699258608744],[0.095459125936031,0.013819728046656,-0.11758092045784]],[[-0.042343761771917,-0.03158301487565,-0.047033816576004],[0.0013923553051427,0.079289875924587,0.070309720933437],[-0.068667098879814,-0.044262982904911,-0.028390383347869]],[[0.0044982116669416,-0.0058159288018942,-0.10087578743696],[0.087333634495735,-0.013879992067814,0.02989443577826],[-0.14849357306957,0.016788858920336,0.1072016581893]],[[0.2539196908474,-0.075179636478424,-0.082338146865368],[0.099253125488758,-0.067781843245029,0.045393638312817],[0.008549477905035,-0.33654198050499,0.18244053423405]],[[-0.041572663933039,-0.077465996146202,-0.042967457324266],[0.061393551528454,-0.040521662682295,0.022036757320166],[-0.054763372987509,-0.043648332357407,0.0039939596317708]],[[-0.091968216001987,0.01167693734169,-0.041474848985672],[-0.11951871216297,-0.013950613327324,0.056037694215775],[0.041917897760868,0.061257429420948,0.074334539473057]],[[-0.066632211208344,0.095699898898602,-0.045233361423016],[-0.031512498855591,0.042256828397512,0.039129585027695],[0.0091647300869226,0.058878049254417,0.076160818338394]],[[-0.019381284713745,-0.0030957621056587,0.007116393186152],[-0.015856383368373,-0.02300332300365,-0.10317547619343],[-0.11672881990671,0.020881494507194,0.02685472369194]],[[0.16017687320709,-0.092701137065887,0.056685164570808],[0.046142593026161,-0.064886927604675,0.0028485869988799],[0.015080223791301,0.051155716180801,-0.11640476435423]],[[0.017048122361302,-0.0077004837803543,0.0047186370939016],[0.019893569871783,-0.046490363776684,0.036013029515743],[-0.033868361264467,-0.017701977863908,0.0046165101230145]],[[0.082924790680408,-0.12132363021374,-0.021720288321376],[-0.084857530891895,-0.092030040919781,-0.014595554210246],[-0.045585848391056,-0.040716174989939,-0.10308059304953]],[[0.12369444966316,-0.11819516867399,0.0018981135217473],[-0.089002132415771,-0.080649383366108,0.12860341370106],[-0.1680942773819,0.053335100412369,0.056008521467447]],[[-0.036955077201128,-0.080525025725365,-0.084945403039455],[-0.062791764736176,-0.031062809750438,-0.084061674773693],[0.068002410233021,-0.043986834585667,0.043286640197039]],[[-0.15495979785919,-0.0016766188200563,0.046048242598772],[0.11947497725487,0.071816772222519,0.14283202588558],[0.10542771220207,0.12087999284267,-0.098912425339222]],[[0.012990200892091,0.0063702021725476,0.029360646381974],[0.012153929099441,0.066948100924492,0.0075508756563067],[-0.10054252296686,-0.053375083953142,-0.10272441804409]],[[0.0091149397194386,0.010742989368737,0.019336149096489],[-0.04682033136487,0.01795688457787,0.036540545523167],[0.11456423997879,0.09435872733593,-0.042140286415815]],[[0.0067304782569408,-0.085825622081757,-0.089461788535118],[-0.041062235832214,0.071770809590816,0.0017833611927927],[0.10783314704895,0.1030630543828,0.099667854607105]],[[-0.11194686591625,0.03991262242198,0.059484854340553],[-0.029609782621264,0.067549593746662,-0.020299440249801],[-0.062692023813725,0.038238242268562,-0.013833641074598]],[[0.044463817030191,-0.0033939713612199,0.0098519790917635],[0.068352065980434,0.024136736989021,-0.0067299492657185],[-0.0061453715898097,-0.059989023953676,-0.15250028669834]],[[0.055482186377048,-0.02904767356813,-0.23053671419621],[-0.021940557286143,-0.15152977406979,-0.0088399238884449],[0.014003928750753,-0.10046723484993,0.069560870528221]],[[0.032575719058514,-0.027276515960693,-0.11735903471708],[-0.040823187679052,0.072677984833717,-0.097670458257198],[0.11030822992325,0.034912820905447,0.15332685410976]],[[0.080104425549507,-0.044621352106333,-0.076472900807858],[-0.022333128377795,-0.12863881886005,-0.025237280875444],[-0.12512983381748,0.075003564357758,0.053383368998766]],[[-0.12168990820646,-0.024076679721475,-0.073959149420261],[-0.020144345238805,0.052155073732138,-0.019104799255729],[-0.09528174996376,-0.059105470776558,-0.013469045050442]],[[0.082602888345718,-0.02843108214438,0.054288651794195],[0.021182209253311,-0.14074583351612,-0.10982151329517],[0.063894160091877,0.051844701170921,-0.058289229869843]],[[0.096995063126087,-0.096763625741005,0.0032382931094617],[0.014172410592437,-0.044808939099312,0.014155984856188],[-0.0097085162997246,-0.046270348131657,-0.036745835095644]],[[0.068650580942631,-0.00074013316771016,-0.096701271831989],[-0.018224328756332,-0.093885615468025,-0.026389837265015],[-0.11547454446554,-0.032814215868711,-0.0037716601509601]],[[-0.034819651395082,0.13246490061283,0.10892602801323],[-0.058042615652084,-0.10819991677999,-0.11849869787693],[-0.030071325600147,-0.059209700673819,0.060950018465519]],[[-0.07763596624136,0.0022224860731512,-0.068100214004517],[0.10053093731403,-0.013755217194557,-0.022209785878658],[-0.23799262940884,-0.10164863616228,-0.064156331121922]],[[-0.037613015621901,-0.010215865448117,-0.045172605663538],[-0.04774371534586,-0.0080288564786315,0.073165237903595],[0.088618963956833,-0.050640404224396,0.084024049341679]],[[-0.061507485806942,-0.0066299038007855,-0.061429791152477],[-0.081281282007694,0.049112085253,-0.0030094699468464],[0.029278082773089,0.020215099677444,-0.051234342157841]],[[-0.029462402686477,-0.066469915211201,-0.056283559650183],[-0.12514066696167,-0.042995397001505,-0.027041081339121],[-0.1634948849678,-0.0073926239274442,0.058547955006361]],[[-0.039972484111786,-0.057647649198771,-0.037153355777264],[-0.011267214082181,0.05308024212718,0.07759590446949],[0.0057326392270625,0.075387090444565,-0.14000125229359]],[[0.0058843335136771,0.079545833170414,0.082257680594921],[-0.0078185740858316,-0.036488093435764,0.014032705686986],[0.10043098032475,0.091698184609413,0.045537162572145]],[[-0.074495069682598,-0.015440486371517,0.012501334771514],[-0.00079511682270095,0.0039060532581061,0.02786180563271],[-0.037816051393747,0.039286270737648,-0.11025955528021]],[[0.073148757219315,0.14402695000172,-0.098425649106503],[-0.03351853787899,-0.026481937617064,-0.040929112583399],[-0.20726364850998,-0.03377902880311,0.047470238059759]],[[-0.0036132917739451,-0.12662814557552,-0.26304721832275],[0.031876690685749,-0.065872713923454,-0.06268210709095],[0.21609672904015,0.076555356383324,0.074118867516518]],[[-0.0059676389209926,-0.060133963823318,-0.10223067551851],[-0.074044860899448,-0.034511141479015,-0.0086309891194105],[0.039167068898678,0.072126969695091,0.048592120409012]],[[0.067340560257435,0.037896435707808,-0.009885055013001],[0.048735283315182,-0.059662755578756,-0.1297272592783],[-0.0040665850974619,-0.20560847222805,0.039841391146183]],[[0.035938188433647,-0.089695274829865,-0.16576245427132],[0.0013844317290932,-0.083578936755657,-0.02364188991487],[-0.24393773078918,0.052357565611601,-0.015880703926086]],[[0.16449627280235,-0.14465348422527,-0.019176494330168],[0.056310176849365,-0.086455523967743,0.20650795102119],[-0.11775556206703,-0.14537601172924,-0.058427486568689]],[[-0.041811272501945,0.075178660452366,-0.067903585731983],[0.026174355298281,-0.0098977824673057,-0.069190286099911],[0.073651053011417,-0.18401119112968,0.048610359430313]],[[0.040448918938637,-0.050224021077156,0.075296185910702],[0.054270204156637,-0.049798205494881,0.063817381858826],[0.011092063039541,-0.095973134040833,0.0018673940794542]],[[-0.064079262316227,0.014487763866782,-0.070311084389687],[-0.08721099793911,0.17442688345909,-0.059790402650833],[-0.042083065956831,-0.058542758226395,-0.10545706003904]],[[-0.010310518555343,-0.18146729469299,0.028324332088232],[-0.069742038846016,-0.038949199020863,0.07480463385582],[0.036006029695272,0.13761049509048,-0.059548281133175]],[[-0.021465614438057,0.08250267803669,-0.091971553862095],[-0.04173444584012,-0.090960472822189,-0.078458830714226],[0.03697806224227,-0.082527466118336,0.014340761117637]],[[-0.051800943911076,0.0010428767418489,0.061606470495462],[0.029803954064846,0.061409998685122,0.06327198445797],[0.062660172581673,-0.070131234824657,0.021670004352927]],[[0.046696167439222,0.067392848432064,-0.058194413781166],[-0.032276134938002,0.0032393923029304,-0.041328355669975],[-0.042350456118584,-0.081075832247734,0.028917014598846]],[[0.0052021807059646,-0.018974853679538,0.031852960586548],[-0.0084892529994249,-0.092537812888622,-0.0022317895200104],[-0.063508622348309,0.018717160448432,-0.13314941525459]],[[-0.01993733458221,0.031059183180332,0.016267124563456],[0.22340172529221,-0.023540996015072,0.05754054710269],[-0.014459423720837,0.04059549048543,-0.032076954841614]],[[-0.053401570767164,0.052326668053865,-0.021052841097116],[0.0099320271983743,0.043700832873583,-0.053010914474726],[0.060212414711714,-0.043778840452433,0.0038076431956142]],[[0.0079032555222511,-0.030400360003114,0.060847695916891],[-0.020249456167221,-0.042569011449814,0.080101624131203],[-0.095524564385414,-0.07833243906498,-0.017936924472451]],[[-0.093200743198395,0.066074535250664,-0.10034487396479],[-0.026158841326833,0.05031718686223,-0.071705058217049],[-0.0076398700475693,0.016120370477438,-0.091814197599888]],[[-0.025735538452864,-0.056550603359938,-0.084627993404865],[-0.030719367787242,0.016498206183314,-0.0059763477183878],[-0.1316080391407,-0.10132282972336,-0.1286404132843]],[[0.06514497846365,-0.16084633767605,-0.0093139847740531],[-0.046537134796381,-0.024491002783179,0.042789973318577],[-0.049744255840778,-0.0047208308242261,-0.066031269729137]]],[[[0.00079559505684301,-0.00021256323088892,0.013177332468331],[-0.0025440817698836,0.0023776756133884,-0.017980733886361],[0.014814863912761,-0.068822652101517,-0.047031793743372]],[[0.0050607998855412,-0.10179527848959,-0.082273848354816],[-0.059448204934597,0.012607946060598,-0.020804638043046],[-0.051259852945805,-0.094794347882271,0.034971192479134]],[[0.023971393704414,0.052130449563265,0.059566736221313],[0.021340161561966,-0.10498823970556,0.026226401329041],[-0.14500793814659,-0.20330104231834,-0.12320134043694]],[[0.028713019564748,-0.082994073629379,-0.042805045843124],[-0.077280469238758,-0.086134545505047,-0.082894846796989],[-0.011835219338536,-0.13632859289646,-0.0087768388912082]],[[0.041186761111021,0.051404103636742,0.014389771036804],[-0.044373001903296,0.039881728589535,-0.01693769171834],[-0.0017015119083226,-0.023995021358132,-0.064751103520393]],[[0.055563233792782,-0.042693968862295,-0.074125751852989],[-0.0034512216225266,-0.085162572562695,0.031357668340206],[0.065764479339123,0.012227619998157,0.065667569637299]],[[0.041545510292053,-0.092607237398624,0.0074438094161451],[-0.11755615472794,-0.074133977293968,-0.0099074970930815],[0.010307868011296,-0.051709804683924,-0.028843231499195]],[[0.0090799834579229,-0.080024816095829,-0.042209159582853],[-0.16407810151577,-0.17276230454445,-0.15833611786366],[0.016824750229716,-0.018982911482453,0.030116371810436]],[[-0.022604862228036,-0.03522040694952,-0.012481366284192],[0.084218539297581,-0.017966963350773,0.029548099264503],[-0.13150748610497,-0.051974069327116,0.013616143725812]],[[-0.001043941359967,0.047122161835432,0.018089098855853],[-0.025582609698176,-0.035623252391815,0.039177231490612],[0.017647340893745,0.017102770507336,-0.039924263954163]],[[0.04129146784544,0.036402832716703,0.0013188305310905],[-0.04541789740324,-0.057014636695385,0.041215136647224],[-0.09328456223011,-0.026043923571706,-0.017176453024149]],[[0.013385276310146,0.059104524552822,0.039558365941048],[-0.089066825807095,0.11362716555595,0.046102870255709],[0.11131636053324,-0.092102862894535,-0.031276218593121]],[[-0.024982139468193,-0.028803328052163,-0.078028418123722],[0.032152462750673,0.047341581434011,0.003631021361798],[0.027116918936372,-0.024283150210977,-0.042585369199514]],[[0.080488100647926,0.055144269019365,-0.057624597102404],[0.014355411753058,-0.018426945433021,0.070472113788128],[-0.06937850266695,0.036033112555742,0.00089993665460497]],[[-0.017206594347954,-0.043362390249968,0.0039123632013798],[-0.038575477898121,-0.011484584771097,-0.037044316530228],[-0.004121548961848,-0.0058024902828038,-0.024906247854233]],[[0.0096861701458693,0.033885225653648,-0.056986764073372],[-0.021050475537777,0.039980169385672,-0.029655262827873],[0.0045867408625782,-0.0099783493205905,-0.04335318133235]],[[-0.022568836808205,0.013272671960294,0.027795910835266],[-0.0055580697953701,0.0049106790684164,-0.11819962412119],[0.0033904851879925,0.0051941312849522,0.095228932797909]],[[0.038981229066849,0.0011674162233248,-0.035071305930614],[-0.0011883296538144,-0.10937225073576,-0.012153563089669],[-0.023307554423809,-0.010655177757144,-0.06262444704771]],[[0.013767434284091,-0.020779576152563,-0.075375907123089],[0.014432885684073,0.016286868602037,-0.048186276108027],[-0.0057364022359252,0.012545405887067,-0.010123373009264]],[[0.05290674045682,0.048804793506861,0.09391962736845],[-0.041812364012003,0.017793051898479,0.060754060745239],[-0.052955463528633,-0.09151216596365,-0.077945455908775]],[[0.028056563809514,0.015920583158731,-0.11487480998039],[-0.026600996032357,0.023299384862185,-0.10029727965593],[-0.03184150531888,-0.18528598546982,0.067339032888412]],[[0.093941122293472,0.052809663116932,-0.00070483598392457],[-0.036971818655729,0.088696859776974,-0.0068065081723034],[-0.017912670969963,0.036447651684284,-0.06076280772686]],[[0.0092825358733535,-0.035028804093599,0.017247578129172],[0.074584148824215,0.025203928351402,0.0034951611887664],[-0.1167621538043,-0.011848175898194,0.047738298773766]],[[-0.10560405254364,0.02041089348495,0.019502896815538],[-0.0022899832110852,-0.084854736924171,0.14627259969711],[0.072449810802937,0.10450737923384,0.092981599271297]],[[-0.026002919301391,-0.010321849957108,-0.047186028212309],[-0.026159269735217,0.047940090298653,0.0046993028372526],[-0.0086229359731078,-0.0035960669629276,0.0079003442078829]],[[0.024704283103347,0.041606433689594,-0.0035832829307765],[0.010673543438315,0.013463700190187,-0.017118712887168],[-0.088033832609653,-0.050969578325748,0.0020257735159248]],[[0.0036595442797989,0.049744684249163,-0.042634144425392],[-0.034170970320702,0.086521454155445,0.019648842513561],[0.13317796587944,-0.17289018630981,-0.085714988410473]],[[-0.059065118432045,0.045451235026121,-0.051124021410942],[0.033980466425419,-0.062741711735725,-0.014251206070185],[0.026499221101403,0.022725326940417,0.037074752151966]],[[0.024025751277804,0.079601064324379,0.041155327111483],[0.031999260187149,-0.024339001625776,0.045784130692482],[-0.021525397896767,-0.059286765754223,-0.1124411970377]],[[-0.096119068562984,-0.047082729637623,-0.043715208768845],[-0.062262196093798,-0.05001475661993,-0.070034004747868],[-0.033484540879726,-0.11138938367367,-0.10001733899117]],[[0.013097853399813,0.00073063792660832,-0.096656963229179],[-0.017285108566284,-0.0030365562997758,0.018997943028808],[-0.056559544056654,0.016578163951635,0.0039380765520036]],[[-0.022924099117517,-0.0033926852047443,-0.017596069723368],[0.012969326227903,-0.075928911566734,0.0030653972644359],[-0.12028204649687,-0.0039732973091304,0.028149418532848]],[[-0.031369995325804,-0.010017493739724,0.048215974122286],[-0.021665288135409,-0.017914233729243,-0.09433127194643],[-0.034645438194275,-0.037337433546782,-0.036814991384745]],[[0.017922263592482,0.096508979797363,0.030377676710486],[0.099213667213917,0.040325786918402,-0.056474503129721],[-0.052523028105497,0.047665972262621,0.054470609873533]],[[0.089654356241226,0.12343750149012,0.043086066842079],[-0.1881669908762,-0.39539784193039,-0.11574213206768],[0.098276980221272,0.01887135207653,0.04792745411396]],[[-0.052632447332144,-0.034734670072794,-0.031669326126575],[0.05310994759202,-0.024370852857828,0.013958654366434],[0.019220232963562,-0.033672414720058,-0.017633356153965]],[[0.02645050175488,0.043493285775185,0.012981195934117],[-0.029801061376929,-0.030425855889916,0.081565886735916],[-0.093139469623566,-0.05667445063591,0.015175295062363]],[[0.0067442748695612,-0.0044121341779828,-0.053077269345522],[-0.014664901420474,0.10785750299692,-0.083020687103271],[-0.12186036258936,-0.12915715575218,-0.030238108709455]],[[-0.091352954506874,-0.0032647137995809,-0.000306985079078],[-0.037945918738842,0.001462485990487,-0.007294790353626],[0.03104705363512,0.060796201229095,0.11008033156395]],[[0.010549804195762,0.019995091482997,-0.057789988815784],[0.029864063486457,-0.08376757055521,-0.049748186022043],[-0.060000061988831,0.032518465071917,-0.0046454882249236]],[[0.018202686682343,0.091551914811134,0.018869837746024],[-0.07569158822298,-0.009225114248693,-0.0098945740610361],[-0.038726758211851,0.071861065924168,-0.011547962203622]],[[-0.021117394790053,-0.029503064230084,0.027981111779809],[-0.027317641302943,0.094369873404503,-0.043461561203003],[0.039089929312468,0.030407786369324,0.021346440538764]],[[0.035473965108395,0.060964450240135,-0.088581085205078],[-0.073944970965385,-0.064259104430676,-0.034123796969652],[0.019934020936489,0.10670832544565,-0.0027247506659478]],[[-0.048684742301702,-0.080451726913452,0.021128473803401],[-0.042331729084253,-0.082945190370083,-0.057410802692175],[0.0095668388530612,-0.012298600748181,0.0529929921031]],[[-0.019125204533339,-0.022132087498903,0.0051490771584213],[0.013560925610363,0.0053164027631283,-0.017229601740837],[-0.013147306628525,-0.0058966707438231,-0.026685664430261]],[[0.0030032054055482,-0.04523815959692,-0.034172058105469],[0.0010129839647561,-0.037366323173046,-0.011326874606311],[0.098221272230148,-0.035378828644753,-0.020197449252009]],[[-0.014630479738116,0.027542946860194,0.047478761523962],[-0.041052475571632,-0.0058142673224211,0.093671910464764],[-0.082741618156433,0.041294384747744,0.0033034791704267]],[[-0.0042702727951109,0.041746806353331,0.083827890455723],[-0.018703771755099,-0.045557778328657,-0.033574093133211],[-0.11629249900579,-0.015841159969568,0.044733293354511]],[[-0.023912852630019,-0.07563241571188,-0.021126560866833],[-0.013217272236943,0.0016778624849394,0.02868864312768],[-0.010068068280816,0.010943717323244,-0.068751998245716]],[[0.055848460644484,-0.012125409208238,0.045196883380413],[0.072790123522282,-0.018777962774038,-0.044701721519232],[-0.0011669853702188,0.028335018083453,-0.019561149179935]],[[-0.046379316598177,-0.01328197773546,-0.012501016259193],[-0.036485463380814,-0.0091209718957543,-0.019036881625652],[0.036963049322367,-0.018219880759716,-0.039339803159237]],[[0.021248575299978,-0.015545072034001,0.077398523688316],[-0.036253798753023,-0.16962882876396,-0.057279270142317],[-0.099249258637428,0.013093266636133,0.00052137766033411]],[[-0.046932980418205,-0.024188712239265,-0.0022837622091174],[-0.081242524087429,-0.038603894412518,0.064896062016487],[-0.052539419382811,-0.041376173496246,0.032348599284887]],[[0.032992415130138,-0.088567823171616,-0.014491003938019],[-0.040864821523428,0.014388771727681,-0.018340999260545],[-0.0091126589104533,-0.033809669315815,-0.008078976534307]],[[-0.024777414277196,0.034717865288258,-0.012782741338015],[0.076689384877682,-0.0021652511786669,-0.053052261471748],[0.018260877579451,-0.1307487487793,-0.11326581984758]],[[-0.0087377494201064,0.063098065555096,0.02567639760673],[-0.030059093609452,0.0062396069988608,0.017137940973043],[0.02536821551621,0.0031198794022202,-0.0084620341658592]],[[-0.089947685599327,-0.052348811179399,-0.034663584083319],[0.023712802678347,-0.058692544698715,-0.045434195548296],[-0.032366633415222,-0.0057358923368156,0.0065679969266057]],[[-0.0046300860121846,-0.01221979316324,0.033444099128246],[-0.01805966347456,0.042793858796358,-0.02377924695611],[-0.010391416028142,-0.19730959832668,-0.076796442270279]],[[0.085450276732445,0.067192696034908,0.019934432581067],[0.053395722061396,-0.027671555057168,-0.022361930459738],[-0.058107156306505,-0.078337736427784,0.0052047637291253]],[[-0.057243101298809,-0.10494990646839,-0.10254912078381],[0.012171614915133,-0.01303665433079,-0.01764322258532],[0.093404449522495,0.11432831734419,0.061937931925058]],[[-0.032384444028139,0.012036979198456,-0.039696801453829],[-0.021685378625989,0.058065291494131,0.022537397220731],[0.015022914856672,-0.058109931647778,-0.027765616774559]],[[0.024809120222926,-0.0076688262633979,-0.045789487659931],[0.055884227156639,0.069387696683407,0.034905817359686],[-0.010183418169618,-0.018163932487369,-0.14525339007378]],[[-0.031101148575544,-0.020446488633752,-0.074081875383854],[-0.060935266315937,-0.023122753947973,-0.039681423455477],[0.092964418232441,-0.011515529826283,-0.093196325004101]],[[0.068648137152195,0.023859305307269,0.0072432137094438],[0.037205204367638,0.057324480265379,0.0063150464557111],[-0.015510906465352,0.070332542061806,0.049104832112789]]],[[[0.003212554147467,0.00013746923650615,0.038165234029293],[-0.087733246386051,0.062052708119154,0.027370536699891],[-0.00053234194638208,-0.089739546179771,0.10802657157183]],[[-0.04282795637846,-0.02286097034812,-0.017399234697223],[-0.068126209080219,-0.01522621139884,0.027987221255898],[0.066042982041836,0.0019178028451279,-0.010258526541293]],[[-0.1459609568119,-0.13847231864929,-0.11730471253395],[-0.072839640080929,0.044122982770205,-0.025604577735066],[0.025223385542631,0.051117185503244,0.10153795033693]],[[0.0099213859066367,0.031999561935663,0.093816190958023],[-0.012657259590924,0.082723960280418,0.12705682218075],[0.025153519585729,0.096809290349483,-0.043241914361715]],[[-0.0056017534807324,-0.067545056343079,-0.059458579868078],[0.035916209220886,0.034327868372202,0.15372562408447],[0.030250506475568,0.016699528321624,0.070746973156929]],[[0.040004529058933,-0.029024120420218,-0.0036875640507787],[0.0008997984114103,-0.04068211093545,-0.050470855087042],[0.0081926416605711,-0.038513593375683,0.10056065768003]],[[-0.073469772934914,-0.12181778252125,0.036423105746508],[-0.078612700104713,0.0056390045210719,0.073413819074631],[0.010795159265399,0.085233516991138,0.044577948749065]],[[-0.059449795633554,0.1116873472929,0.099727772176266],[-0.038575414568186,0.07814783602953,0.19549369812012],[0.057659022510052,-0.023392461240292,0.0056959129869938]],[[0.074560187757015,0.045649994164705,-0.040235940366983],[-0.027731377631426,-0.051925264298916,0.044967714697123],[0.016802914440632,-0.017750151455402,-0.0081730708479881]],[[-0.094530545175076,-0.059390187263489,-0.16178213059902],[-0.040729738771915,0.05152939632535,0.010971004143357],[-0.015247629955411,-0.14080263674259,0.04672983661294]],[[-0.051443062722683,0.0013826029608026,0.053979471325874],[0.044615127146244,0.037704847753048,0.026868330314755],[-0.016198547556996,0.054977413266897,-0.025533637031913]],[[-0.065852493047714,-0.10983274877071,-0.035039436072111],[0.0033321199007332,0.079898722469807,-0.018222697079182],[-0.015821466222405,0.05871320515871,0.05326834321022]],[[-0.032622534781694,-0.033433098345995,0.023718200623989],[-0.077192693948746,-0.020852101966739,0.15387631952763],[-0.033541794866323,-0.037172567099333,0.036510717123747]],[[-0.014247774146497,-0.06767887622118,0.047451730817556],[-0.14200592041016,-0.1056154742837,0.14374382793903],[-0.03356197103858,-0.028610000386834,-0.054478477686644]],[[-0.008220111951232,0.055667717009783,0.0069143450818956],[0.041907377541065,0.025964330881834,-0.075190037488937],[-0.038377981632948,-0.032833073288202,-0.15103164315224]],[[0.087127082049847,0.19026453793049,-0.0016176491044462],[0.072222881019115,0.0069716516882181,-0.01545700058341],[0.033128309994936,-0.051982760429382,0.020457629114389]],[[0.027752123773098,-0.0069658332504332,0.045271899551153],[-0.016289068385959,0.029459461569786,0.051844455301762],[0.076068125665188,0.096108943223953,0.0046556787565351]],[[-0.13639901578426,-0.079988144338131,-0.092209562659264],[0.0060939965769649,0.019065318629146,0.068315871059895],[0.041229970753193,0.054087724536657,0.035437949001789]],[[-0.0092460727319121,0.034220200031996,0.086136229336262],[0.013509447686374,0.018060168251395,0.056454487144947],[0.035321827977896,0.028842886909842,-0.02046425268054]],[[0.038194581866264,-0.031980440020561,-0.0080977771431208],[-0.035860925912857,-0.080086141824722,0.043451361358166],[-0.033773593604565,0.016698798164725,0.075246773660183]],[[0.010264595970511,-0.085283435881138,0.026177616789937],[-0.021944455802441,-0.11792970448732,-0.010895075276494],[-0.027574421837926,-0.027454629540443,0.050291571766138]],[[0.0017737648449838,-0.052203137427568,-0.077061340212822],[0.058077853173018,-0.097226940095425,0.037507645785809],[0.07291928678751,-0.13117180764675,0.028474947437644]],[[0.012287235818803,-0.016579750925303,-0.11466025561094],[-0.0013972145970911,-0.044457215815783,-0.071052365005016],[0.0097495960071683,-0.054709274321795,0.081958025693893]],[[0.21744221448898,0.17524196207523,0.086070068180561],[0.070082806050777,0.03455962613225,-0.058107167482376],[0.00031334281084128,0.014095475897193,-0.080336026847363]],[[0.017758054658771,0.02291976287961,0.086435623466969],[0.017052702605724,0.034144796431065,-0.083802200853825],[-0.035743311047554,-0.011177434585989,-0.11622888594866]],[[0.010114933364093,-0.034444004297256,-0.010675518773496],[-0.011300493963063,0.048948384821415,-0.028327044099569],[0.016242023557425,0.024718943983316,0.055943042039871]],[[0.032557997852564,0.023635799065232,0.035845402628183],[-0.04077910259366,0.095375187695026,0.050334189087152],[0.025637198239565,0.13019128143787,0.0051780780777335]],[[-0.031981267035007,0.043545674532652,0.067561760544777],[-0.043901171535254,0.051698785275221,0.084688022732735],[0.038233108818531,-0.034033253788948,0.033671088516712]],[[0.069702297449112,0.053177464753389,0.065243721008301],[0.11488024890423,-0.037491500377655,-0.033585503697395],[0.046840868890285,0.036649003624916,0.036731380969286]],[[-0.15578290820122,-0.058406163007021,0.082273483276367],[-0.048743348568678,0.11661087721586,0.10343543440104],[0.053946614265442,0.1538722217083,0.1455747038126]],[[0.074598208069801,-0.036198254674673,0.029713019728661],[0.066757649183273,0.057071227580309,0.019876660779119],[-0.0095466198399663,-0.023895708844066,-0.038232795894146]],[[0.051919974386692,0.030552973970771,-0.0097570391371846],[0.01383145339787,-0.00083104037912562,-0.0050727319903672],[0.020671878010035,-0.076065346598625,0.050839681178331]],[[0.066509075462818,-0.041011221706867,-0.026035005226731],[0.075056686997414,0.028425954282284,-0.006507558748126],[0.093148909509182,0.034710228443146,0.021463491022587]],[[-0.046392120420933,0.0021375888027251,-0.090341486036777],[0.016531625762582,-0.022890051826835,0.0050416737794876],[-0.13757593929768,-0.078845351934433,0.04697049036622]],[[-0.13144394755363,-0.18751776218414,-0.16410505771637],[-0.020592007786036,-0.17044270038605,-0.0025217977818102],[0.053326323628426,0.068093985319138,0.030499381944537]],[[-0.031016128137708,0.070092104375362,0.093494772911072],[-0.022916434332728,-0.059637308120728,0.024388307705522],[-0.0039147310890257,0.11361087858677,0.06996250897646]],[[-0.0043657021597028,-0.10057822614908,-0.076455883681774],[0.037400767207146,0.014769366011024,0.028854100033641],[0.11010513454676,0.10899170488119,0.090025193989277]],[[-0.089141942560673,-0.055752396583557,-0.066871583461761],[0.033952720463276,-0.013767975382507,0.10213685780764],[0.034077562391758,-0.069703191518784,-0.034631062299013]],[[0.088520176708698,-0.011420927010477,0.014928304590285],[0.045607507228851,-0.0312973074615,-0.041698690503836],[-0.016788950189948,0.018598375841975,-0.14122372865677]],[[0.11022866517305,-0.040034972131252,0.050351765006781],[0.07235199958086,0.036311093717813,0.021866569295526],[0.017620507627726,0.086515761911869,0.095943301916122]],[[0.024558059871197,-0.093429617583752,0.046336989849806],[-0.0059847277589142,0.06012773886323,0.036739535629749],[0.026394305750728,-0.070231847465038,0.022826103493571]],[[0.064235180616379,0.10498497635126,0.096086487174034],[-0.038395214825869,0.11900223046541,-0.053874529898167],[0.016068367287517,0.075229734182358,-0.089966788887978]],[[-0.09067527204752,-0.14129467308521,0.025384353473783],[-0.18033227324486,0.031293760985136,0.16137059032917],[0.0034971218556166,0.054862648248672,0.03525110706687]],[[0.074065573513508,-0.10079829394817,-0.21036979556084],[-0.048574291169643,0.15261080861092,-0.025732850655913],[0.018414428457618,-0.096004344522953,-0.079615265130997]],[[-0.086759708821774,0.018893588334322,0.0061519290320575],[0.023438557982445,-0.072259403765202,0.05985763669014],[-0.012785194441676,0.0201824195683,0.13993684947491]],[[-0.050072077661753,0.039659548550844,0.022468339651823],[-0.10271321237087,-0.0026320121251047,-0.002005516551435],[-0.033227398991585,0.0051106084138155,0.05759409815073]],[[-0.018459796905518,-0.0028763634618372,0.051501628011465],[-0.042063668370247,-0.0015745707787573,-0.011652525514364],[0.017542567104101,0.068062081933022,-0.034313883632421]],[[0.0031271937768906,-0.095281802117825,-0.12158264964819],[-0.02606001496315,0.12676131725311,0.078375592827797],[0.080559581518173,-0.13749629259109,0.030538510531187]],[[-0.040505953133106,-0.068616896867752,-0.0095453960821033],[-0.15807747840881,-0.0033217219170183,-0.018348736688495],[-0.083772957324982,-0.035660777240992,0.057597286999226]],[[-0.1734219789505,-0.07276601344347,-0.10105727612972],[-0.0099932877346873,0.049018245190382,0.00024021860735957],[-0.023964386433363,-0.0031611551530659,0.062156692147255]],[[-0.087111160159111,-0.030309610068798,0.022078627720475],[-0.056784778833389,-0.011576174758375,0.015709508210421],[0.0023247515782714,0.055640414357185,0.044321820139885]],[[0.10074025392532,0.071312367916107,-0.0042453315109015],[0.068023085594177,-0.028687978163362,-0.075681358575821],[-0.057046804577112,-0.16701604425907,-0.081259414553642]],[[0.041271533817053,0.054954692721367,-0.11153111606836],[-0.023421658203006,-0.029931340366602,-0.05729440972209],[0.015157490037382,0.084240756928921,0.059774048626423]],[[-0.11840970814228,-0.032602429389954,-0.016743151471019],[-0.057000439614058,-0.020079109817743,-0.010150472633541],[0.016828114166856,0.030623853206635,-0.0060059106908739]],[[-0.09384261071682,-0.017584450542927,-0.11148861795664],[-0.042135000228882,0.024972327053547,0.049136497080326],[-0.013986074365675,0.012273117899895,-0.024500861763954]],[[-0.022351386025548,-0.092404022812843,-0.040245018899441],[0.082657061517239,-0.026065995916724,-0.080718673765659],[0.029384512454271,0.050288207828999,0.011531479656696]],[[-0.052638079971075,-0.064376652240753,0.043926902115345],[-0.00026522463303991,-0.031892843544483,0.043167173862457],[-0.066518537700176,-0.01513219345361,0.077624022960663]],[[-0.053374700248241,-0.086034044623375,-0.12936951220036],[-0.090680882334709,-0.094871386885643,-0.058409620076418],[-0.088263556361198,-0.063155390322208,0.040659956634045]],[[0.18855537474155,0.033203486353159,0.11226091533899],[0.04188147559762,-0.035531908273697,0.030417386442423],[-0.030448142439127,-0.058253940194845,-0.046001918613911]],[[0.026221577078104,0.068461805582047,0.10013689100742],[-0.035178918391466,0.029833437874913,-0.038546726107597],[-0.0033571345265955,-0.03103213571012,-0.11226151883602]],[[-0.12172166258097,-0.090580061078072,-0.018531685695052],[-0.004418040625751,0.037059284746647,-0.049739766865969],[0.10473313182592,0.056027825921774,0.10174825042486]],[[-0.073168762028217,-0.020570753142238,0.041569016873837],[-0.086072079837322,0.018520973622799,-0.034022998064756],[-0.023017846047878,-0.068979442119598,-0.085014037787914]],[[0.0061501623131335,-0.03695085272193,0.0011153168743476],[-0.011213870719075,-0.0010230611078441,0.012180189602077],[0.085922785103321,0.0058478326536715,0.13291028141975]],[[-0.097044385969639,-0.038960441946983,0.021411983296275],[-0.05303879827261,-0.01113516651094,0.025568820536137],[0.025943145155907,0.098548710346222,0.1018632799387]]],[[[-0.057060737162828,-0.038470700383186,0.0037733211647719],[0.011007508262992,-0.055530410259962,-0.040189106017351],[0.027936771512032,0.0081188408657908,0.006722473539412]],[[0.0095968712121248,-0.029682319611311,-0.02368806861341],[0.014718167483807,0.054375384002924,0.018574284389615],[-0.021432729437947,-0.051702037453651,-0.022734949365258]],[[0.011734266765416,-0.0035966362338513,-0.096772216260433],[-0.0017916841898113,0.028876313939691,0.01774868927896],[0.058847825974226,-0.017402771860361,-0.023881860077381]],[[0.0190858412534,-0.081983335316181,-0.043839067220688],[0.0067292684689164,-0.012715458869934,-0.03588991984725],[0.0038014361634851,-0.0379948168993,-0.026236297562718]],[[-0.035914190113544,-0.055081523954868,-0.012982852756977],[0.056970853358507,-0.035915810614824,-0.080208659172058],[-0.015367521904409,0.010448345914483,0.072066627442837]],[[0.026781212538481,0.0072807902470231,0.078213281929493],[0.0023369938135147,0.059937756508589,0.034266799688339],[-0.044055372476578,0.046162899583578,0.064234741032124]],[[-0.0063329678960145,0.01690537109971,0.017512736842036],[-0.12252575904131,0.022729933261871,0.010657552629709],[-0.045294757932425,-0.013906765729189,0.003221531631425]],[[-0.038945708423853,-0.020162841305137,0.048639863729477],[0.0056466651149094,-0.084753714501858,0.035830538719893],[-0.031925588846207,-0.049579460173845,0.010885153897107]],[[-0.022369034588337,-0.050102517008781,0.049081828445196],[0.00073136301944032,-0.020244287326932,-0.065505184233189],[0.019017593935132,-0.047788504511118,-0.029353247955441]],[[-0.03315532207489,-0.053484410047531,-0.028234938159585],[-0.031610053032637,-0.04080968350172,0.029020357877016],[0.10061498731375,-0.025404931977391,0.06526056677103]],[[-0.094859138131142,0.038312237709761,0.062761388719082],[-0.079272739589214,-0.026890253648162,0.038337428122759],[0.0050496254116297,-0.007527319714427,-0.027105836197734]],[[0.0063101216219366,-0.046212561428547,-0.0033813437912613],[0.03392031416297,0.091293640434742,0.039817485958338],[0.010956366546452,-0.021080143749714,-0.014504233375192]],[[-0.0046625677496195,-0.047912202775478,0.046652145683765],[-0.00069825013633817,0.083595439791679,0.071229241788387],[0.047706715762615,0.04031091183424,0.14242346584797]],[[0.0689362809062,0.012763038277626,0.094610601663589],[-0.0030565347988158,0.074782475829124,0.095401540398598],[0.0026786825619638,0.0075743920169771,0.011733273044229]],[[-0.02926561422646,0.023185223340988,-0.028451029211283],[0.01629600673914,0.020997414365411,0.017422694712877],[-0.017484048381448,-0.054741285741329,0.0025368300266564]],[[-0.077347785234451,-0.053631342947483,0.057470735162497],[-0.015347780659795,0.016954600811005,-0.094298310577869],[0.034714624285698,-0.032338488847017,-0.03340220451355]],[[0.034227717667818,-0.068040899932384,-0.057570267468691],[-0.02356344088912,0.0064974413253367,-0.055575668811798],[-0.045493800193071,0.013617549091578,0.008301611058414]],[[0.028635486960411,0.046862814575434,0.014711865223944],[0.038577444851398,0.047399781644344,-0.046639557927847],[-0.020889587700367,-0.01812350936234,0.06270893663168]],[[-0.0026052689645439,0.052442394196987,0.026772011071444],[-0.020551050081849,-0.082214593887329,-0.018903408199549],[-0.031432840973139,-0.075144924223423,0.067497499287128]],[[-2.787083030853e-05,0.058351907879114,0.038076408207417],[-0.025423755869269,0.026040574535728,0.0053346683271229],[0.0093133226037025,-0.028748666867614,-0.054238490760326]],[[0.022822346538305,0.037994276732206,0.045651964843273],[-0.039272055029869,0.02661912702024,0.08341408520937],[-0.010480210185051,0.0037142706569284,-0.033135809004307]],[[0.122399315238,0.040131501853466,0.025468558073044],[0.048491656780243,0.073108308017254,-0.078132204711437],[-0.0048735225573182,-0.051478937268257,-0.028748972341418]],[[0.042000785470009,-0.028438631445169,0.059884920716286],[0.012493144720793,-0.015906302258372,-0.0025299184489995],[0.021473014727235,0.0018311361782253,-0.020848002284765]],[[0.062750950455666,0.058894354850054,-0.018229270353913],[0.097568072378635,0.090012662112713,-0.011014144867659],[0.022206155583262,0.030492857098579,0.031617142260075]],[[0.075021393597126,-0.063988469541073,0.07588479667902],[0.0047729210928082,-0.011094396933913,0.091512769460678],[0.018726767972112,0.040112048387527,0.086958959698677]],[[0.013544636778533,-0.025116825476289,-0.0033975308761001],[-0.0053960783407092,0.033632379025221,0.01286491099745],[-0.022322569042444,0.020612044259906,0.031949874013662]],[[-0.041919358074665,-0.038313236087561,-0.011822977103293],[0.038223247975111,-0.018002264201641,0.066526710987091],[-0.027170518413186,0.050757091492414,0.050001345574856]],[[0.14315663278103,0.15292249619961,-0.017250018194318],[-0.045177932828665,0.014746403321624,0.029567645862699],[-0.03742453083396,-0.023959515616298,0.088883459568024]],[[-0.015409064479172,-0.060779254883528,-0.011375293135643],[0.0083596836775541,0.072666876018047,0.057706270366907],[0.018464466556907,-0.0018333345651627,0.062046267092228]],[[-0.080707907676697,0.035433266311884,0.0058383862487972],[-0.070185817778111,-0.067573763430119,0.0099736610427499],[-0.012365149334073,-0.073134407401085,-0.012033665552735]],[[0.0025328469928354,-0.062231820076704,0.019384730607271],[-0.095460869371891,-0.061914648860693,0.0032828808762133],[-0.097607217729092,0.006953383795917,0.035616472363472]],[[0.088723286986351,0.016731340438128,0.020964384078979],[0.067081242799759,0.041443295776844,-0.016268771141768],[0.027788693085313,-0.10463049262762,0.043197385966778]],[[-0.024973273277283,-0.011414150707424,-0.078786134719849],[0.027045642957091,0.016638729721308,-0.023027144372463],[-0.035309787839651,0.0086727170273662,-0.045715894550085]],[[0.066021524369717,-0.00048028459423222,0.051265951246023],[0.0090140635147691,0.016163744032383,-0.024810073897243],[0.039355378597975,0.055976592004299,0.0014219586737454]],[[0.08238809555769,-0.014805795624852,0.044074680656195],[0.09154636412859,0.067116461694241,-0.010667869821191],[-0.059400212019682,0.023514714092016,-0.018141692504287]],[[-0.026202522218227,-0.029363630339503,0.031414438039064],[-0.079486586153507,0.045532189309597,-0.034021113067865],[-0.072927549481392,-0.020516430959105,0.018866216763854]],[[-0.018036440014839,-0.021108297631145,-0.075553245842457],[0.086175821721554,0.041704244911671,0.039356242865324],[-0.0083486568182707,0.019420793280005,0.036505661904812]],[[-0.028030730783939,0.0097827138379216,0.0067148930393159],[0.049298990517855,0.087075524032116,-0.011644966900349],[-0.059770599007607,0.058573298156261,0.10831196606159]],[[-0.016990242525935,-0.051176734268665,-0.022872060537338],[-0.0038491173181683,0.046522565186024,0.039637304842472],[-0.071393810212612,-0.007887102663517,-0.030598821118474]],[[0.017089087516069,0.064977519214153,0.0084038600325584],[-0.028263593092561,0.13270039856434,0.0098193930462003],[-0.09369982033968,-0.058884710073471,-0.050583332777023]],[[0.0068376343697309,-0.040970459580421,0.01271734200418],[0.00057987356558442,-0.023199109360576,0.01579643972218],[0.019145879894495,-0.036441795527935,0.016937848180532]],[[0.049200616776943,0.0077516110613942,0.032649870961905],[0.02692081592977,0.044488117098808,0.06639326363802],[0.029156245291233,0.083954967558384,0.12344694137573]],[[0.023196775466204,0.10068686306477,0.064302958548069],[-0.0520403906703,0.012142726220191,0.061769898980856],[0.014511194080114,0.11353377997875,0.054999470710754]],[[0.03076970204711,0.064671941101551,-0.011484660208225],[-0.00327213620767,-0.0711505189538,0.0071761822327971],[0.08653786033392,-0.038109127432108,-0.10854125767946]],[[0.0072326944209635,-0.038976944983006,-0.0056047337129712],[-0.066833660006523,-0.0015413656365126,-0.020082423463464],[-0.03430201113224,-0.026965737342834,-0.055099956691265]],[[0.046525813639164,-0.0087484307587147,0.026920825242996],[-0.088536210358143,-0.00050697708502412,0.029487609863281],[-0.034997668117285,-0.011980886571109,-0.0088925352320075]],[[0.080662362277508,-0.10952614247799,0.023968383669853],[0.073889963328838,0.069701790809631,0.06541533768177],[0.021712463349104,0.090569950640202,-0.012807171791792]],[[0.011959841474891,-0.02414451725781,0.019083915278316],[0.021765321493149,0.022836625576019,-0.023613156750798],[-0.015283263288438,-0.0022736245300621,0.028808208182454]],[[-0.012196031399071,-0.05211566016078,0.00037095049628988],[-0.070667058229446,0.0089538404718041,-0.037915289402008],[-0.032343529164791,-0.0090668136253953,0.075153768062592]],[[0.016424151137471,0.0082769524306059,-0.047719083726406],[0.044346943497658,0.022960929200053,0.0042040962725878],[-0.047305945307016,-0.015161115676165,-0.043649584054947]],[[0.052171003073454,-0.034779191017151,0.050658907741308],[-0.073050893843174,-0.02227670326829,0.010639337822795],[-0.045877657830715,-0.095603622496128,-0.074373446404934]],[[0.11706949770451,-0.031887605786324,0.039117492735386],[0.050853356719017,0.038896977901459,-0.024802599102259],[0.044805254787207,0.0049300170503557,-0.028619684278965]],[[0.091985128819942,0.056778647005558,0.020738491788507],[-0.051803097128868,-0.037329714745283,0.049312379211187],[0.073112830519676,-0.040245458483696,-0.02573549374938]],[[-0.072191782295704,-0.024188857525587,0.039623532444239],[-0.044390834867954,-0.05535351857543,0.0021488885395229],[-0.025514982640743,0.027151694521308,-0.042921185493469]],[[0.076724104583263,0.0082706874236465,-0.00149296305608],[0.057762917131186,-0.090788058936596,0.045934729278088],[0.03447488322854,0.028776939958334,0.0056135565973818]],[[0.072631262242794,0.061883736401796,0.01903715915978],[0.054108455777168,0.042937692254782,-0.06232276558876],[0.02668128721416,0.047664806246758,0.015830665826797]],[[-0.019422393292189,-0.024029629305005,0.030639111995697],[-0.011346596293151,-0.029799297451973,0.01177875790745],[0.064365290105343,-0.039494693279266,0.071401529014111]],[[-0.034551706165075,0.045041188597679,0.005834196228534],[-0.010789250023663,-0.066164501011372,0.031178979203105],[-0.0069157746620476,-0.022119896486402,0.011577202007174]],[[0.022276191040874,0.034147974103689,-0.084482684731483],[0.041268959641457,0.053880590945482,-0.003022545715794],[-0.014548170380294,0.056697923690081,0.11457467079163]],[[-0.053881458938122,-0.050485178828239,0.034350916743279],[0.027722854167223,-0.028757721185684,-0.0005862814723514],[0.0084723141044378,0.043573264032602,0.02063730545342]],[[0.052944552153349,0.061036739498377,0.017740665003657],[0.06381918489933,0.07596593350172,0.076912775635719],[-0.01276736613363,0.05722164362669,0.029344093054533]],[[-0.053222607821226,-0.1056817099452,-0.090831406414509],[0.0047266017645597,0.0021112996619195,0.021068485453725],[0.075366869568825,0.043394736945629,0.068682491779327]],[[0.051358826458454,0.030870608985424,-0.044111985713243],[0.015170180238783,-0.0027252710424364,0.028360370546579],[-0.055047787725925,-0.018549157306552,-0.022020559757948]],[[0.055956825613976,-0.076872147619724,-0.0035793674178421],[0.010363792069256,0.0011797277256846,-0.034491844475269],[-0.026818569749594,-0.032968942075968,0.0099415434524417]]],[[[-0.0037039769813418,0.012003945186734,0.013583539053798],[-0.0025932581629604,0.01325486600399,-0.0097904140129685],[-0.0010088271228597,0.014633293263614,0.016081515699625]],[[0.077816620469093,0.022508826106787,-0.05328032001853],[0.020865587517619,0.057800561189651,-0.0012966495705768],[-0.0015288182767108,0.077313788235188,0.062507756054401]],[[-0.12898844480515,-0.041991636157036,-0.029781306162477],[0.013721696101129,0.024547062814236,-0.072758868336678],[-0.030491806566715,0.059969794005156,0.055474866181612]],[[-0.10550291836262,-0.042394541203976,0.01345604006201],[-0.061276033520699,0.033219814300537,-0.00045527576003224],[-0.062945693731308,0.036857176572084,0.043804489076138]],[[0.026825044304132,0.064486838877201,-0.019522363319993],[-0.034180346876383,0.020597267895937,0.037160195410252],[0.017802489921451,-0.020482774823904,0.022709248587489]],[[-0.089693866670132,0.0046081840991974,-0.011036437936127],[0.0064328187145293,0.038349151611328,0.018472427502275],[-0.01363352034241,-0.075719386339188,-0.093252807855606]],[[0.019511504098773,0.038691986352205,-0.02517575211823],[0.010548484511673,0.025997893884778,-0.01474594604224],[0.05391738936305,-0.041830752044916,-0.042083710432053]],[[0.035278897732496,0.0090954303741455,0.02601389028132],[-0.0078971637412906,0.03612932190299,0.037564758211374],[-0.0053025167435408,0.040918622165918,0.077704906463623]],[[0.00094780023209751,-0.019719835370779,-0.007699501235038],[-0.047427982091904,-0.016734221950173,-0.027087474241853],[-0.0053364401683211,-0.021604361012578,-0.023368531838059]],[[-0.053163893520832,-0.0050141904503107,0.062328197062016],[0.085844285786152,0.055573765188456,0.016265926882625],[-0.11847615987062,-0.047055523842573,-0.02472953684628]],[[0.0022134161554277,0.084800153970718,0.036256566643715],[0.010972030460835,-0.046366989612579,0.041424695402384],[0.054723232984543,0.0037875899579376,-0.092953972518444]],[[0.073846936225891,-0.02940453030169,-0.068981766700745],[0.10269305109978,0.040270954370499,0.011042961850762],[0.071361988782883,0.026111710816622,0.049436390399933]],[[-0.060560617595911,-0.076367095112801,-0.002904316643253],[0.13283683359623,0.094541981816292,-0.068089827895164],[0.018173458054662,0.017186777666211,0.07819452881813]],[[-0.085814364254475,-0.023441847413778,0.022201724350452],[-0.064369402825832,-0.0030941057484597,-0.043350853025913],[-0.022628722712398,0.0030584407504648,-0.022867834195495]],[[-0.01051823887974,-0.032876972109079,-0.011417862959206],[0.043709892779589,0.037662625312805,0.00021508570353035],[0.0089432168751955,-0.01691565848887,-0.01976615935564]],[[0.12523375451565,0.012683983892202,-0.073709934949875],[0.059519350528717,-0.078969597816467,0.038695830851793],[0.023592168465257,-0.050948828458786,0.13673879206181]],[[-0.041903957724571,-0.010203235782683,0.064552471041679],[0.023976417258382,0.075114160776138,-0.029448099434376],[0.021757801994681,0.044000744819641,0.012972185388207]],[[0.00080729136243463,-0.022483261302114,-0.024612823501229],[0.040411680936813,0.045897293835878,-0.056636616587639],[-0.001902274787426,0.039995897561312,-0.035308260470629]],[[-0.0030010393820703,-0.023166183382273,0.025435496121645],[0.012352026998997,0.011911612004042,0.036798119544983],[-0.0060421265661716,0.011837904341519,0.030112713575363]],[[-0.06402026116848,0.066383391618729,-0.062842026352882],[-0.030992416664958,0.0028064977377653,0.040075950324535],[0.009274210780859,-0.03494805470109,0.060641873627901]],[[-0.076159879565239,-0.12112858146429,0.012486011721194],[3.6854282370768e-05,0.033648643642664,0.0061516840942204],[0.009716740809381,-0.043823599815369,-0.14966154098511]],[[-0.028113609179854,0.041095171123743,0.020022857934237],[0.076429598033428,-0.011736046522856,-0.018838739022613],[0.013085639104247,0.02929881028831,0.0015630840789527]],[[-0.053916145116091,-0.066224463284016,-0.042166542261839],[0.038660652935505,-0.057594276964664,-0.022723162546754],[0.086760602891445,0.035169091075659,0.084473222494125]],[[0.054099999368191,0.055074229836464,0.033889714628458],[0.10880099236965,0.039206873625517,-0.017427990213037],[0.044297441840172,0.081077799201012,0.068517580628395]],[[-0.020382096990943,0.005194503813982,-0.063225612044334],[0.014730080962181,-0.0055149015970528,0.018092112615705],[-0.0062347971834242,-0.19831641018391,-0.017496809363365]],[[0.030930910259485,0.046285349875689,0.035917453467846],[0.019377717748284,0.025356523692608,-0.0045427125878632],[5.3889300033916e-05,0.035064250230789,0.093666754662991]],[[0.011314292438328,-0.077122896909714,0.099237263202667],[-0.10564673691988,-0.044225685298443,0.038997028023005],[0.0089978110045195,-0.049423795193434,0.0020631041843444]],[[0.036973655223846,-0.038994580507278,0.0023136250674725],[-0.014943865127861,-0.041145015507936,-0.072308391332626],[-0.068866916000843,-0.011212606914341,-0.0014700756873935]],[[-0.044439822435379,-0.010726866312325,-0.0072841690853238],[0.12027003616095,-0.003399038920179,0.02143712900579],[-0.029003523290157,-0.034019764512777,-0.032941460609436]],[[0.029059818014503,0.027432074770331,0.0044576013460755],[-0.030189793556929,0.052239317446947,0.034602250903845],[0.027457935735583,0.03716929256916,-0.01108106598258]],[[-0.018379759043455,0.027953941375017,0.05508978292346],[-0.042751912027597,0.070903740823269,0.044175758957863],[-0.0731086358428,0.0011647869832814,0.069366715848446]],[[-0.02584657818079,0.0051228366792202,0.054812725633383],[0.075381264090538,-0.030268928036094,-0.059981945902109],[-0.028821244835854,-0.044686481356621,-0.036749441176653]],[[0.03466035425663,0.010359748266637,-0.044661436229944],[-0.0025235628709197,-0.034804910421371,-0.015185460448265],[-0.0019795843400061,-0.00056202651467174,-0.044948857277632]],[[-0.043212823569775,-0.045071080327034,-0.06418465077877],[-0.018273780122399,-0.087411098182201,0.034305401146412],[0.051816213876009,-0.043407078832388,-0.070909686386585]],[[0.031039038673043,0.021376533433795,-0.090043477714062],[0.02468428388238,0.054511964321136,-0.15871572494507],[0.0035359060857445,0.0088896825909615,-0.033041104674339]],[[-0.022814637050033,0.030184363946319,-0.060462933033705],[-0.095324344933033,0.02079888805747,-0.058177128434181],[-0.028096081689,0.074994340538979,0.039525546133518]],[[0.026515286415815,0.0029594555962831,-0.078852206468582],[0.0051337196491659,0.012143241241574,-0.072974294424057],[0.0033363059628755,0.045432638376951,0.019164985045791]],[[0.048727281391621,0.050390381366014,0.03856760263443],[-0.039604850113392,0.034554328769445,0.027587302029133],[-0.10408288985491,-0.0651521012187,-0.090680457651615]],[[-0.058701664209366,-0.015994632616639,0.014032479375601],[-0.042607791721821,-0.052328653633595,-0.031742874532938],[-0.012356853112578,0.022680507972836,-0.027405172586441]],[[-0.033802304416895,-0.0028047342784703,0.029665755107999],[-0.027266917750239,0.094536453485489,-0.0019733689259738],[0.078727848827839,0.1117219850421,-0.02890457212925]],[[0.072075337171555,-0.099252864718437,-0.009928678162396],[0.020864410325885,0.018101492896676,0.0048583745956421],[0.079066731035709,0.079507105052471,0.0070229070261121]],[[0.042325027287006,-0.033215910196304,0.023442963138223],[0.074549444019794,0.099956199526787,-0.066302299499512],[0.036288749426603,0.011431811377406,-0.030634719878435]],[[-0.010066711343825,-0.037160981446505,-0.037320755422115],[0.028234511613846,-0.022503461688757,0.027765402570367],[-0.09628364443779,-0.054169718176126,-0.058493062853813]],[[0.069590754806995,-0.037446405738592,-0.058464638888836],[-0.0036369864828885,0.021168239414692,-0.006728864274919],[0.009346435777843,-0.050170000642538,-0.067024096846581]],[[0.10787445306778,0.039289277046919,-0.0079083293676376],[0.044567111879587,-0.02647216245532,0.02355726622045],[0.017642546445131,0.0022150846198201,0.0082718664780259]],[[-0.058261681348085,-0.028510065749288,-0.0079853944480419],[0.020380647853017,0.026015719398856,-0.042433101683855],[-0.00013783492613584,-0.081161044538021,-0.058489605784416]],[[0.067222610116005,-0.017896436154842,0.0024110607337207],[-0.04797638207674,-0.021351063624024,0.05579449608922],[0.0082454765215516,-0.044266879558563,0.021579077467322]],[[-0.086599670350552,0.020962111651897,-0.0069580767303705],[0.021256279200315,-0.037042029201984,-0.12374624609947],[0.039922762662172,-0.028719667345285,-0.00014455607743002]],[[-0.0036543668247759,-0.022078210487962,-0.015780759975314],[-0.052500456571579,-0.021137131378055,-0.074083060026169],[0.004738150164485,-0.1085819453001,0.042960703372955]],[[0.027719220146537,0.078520357608795,0.023414609953761],[-0.08661987632513,-0.043242145329714,0.031416893005371],[0.050009697675705,-0.12617027759552,-0.01811290346086]],[[0.037541996687651,-0.066002190113068,0.003804495325312],[0.011159768328071,0.0033646195661277,-0.043505128473043],[-0.091706551611423,-0.04812104254961,0.086031176149845]],[[0.002734080189839,0.027122991159558,0.12239706516266],[0.044299211353064,0.063592053949833,-0.042056255042553],[0.017997303977609,0.063706450164318,0.10550190508366]],[[0.054554659873247,0.022657142952085,0.034946855157614],[0.0071276342496276,0.087024986743927,-0.079727739095688],[-0.11110627651215,0.075932957231998,0.024239318445325]],[[0.089664980769157,-0.043037038296461,0.11547934263945],[0.044339753687382,-0.039919823408127,0.018778640776873],[0.096841335296631,-0.013333001174033,0.062197864055634]],[[0.054048910737038,-0.029795216396451,0.035923719406128],[-0.0059717874974012,-0.055244717746973,-0.00077058665920049],[-0.078642413020134,-0.072278127074242,-0.0035878063645214]],[[-0.041025910526514,-0.0023517915979028,0.028461806476116],[-0.035915158689022,0.0088940933346748,-0.061390236020088],[0.038785848766565,0.033148720860481,-0.0036085210740566]],[[-0.021459920331836,0.0045349593274295,0.04422490671277],[0.029976850375533,-0.051335792988539,0.018683901056647],[0.0080845318734646,-0.0568787753582,0.066546238958836]],[[-0.0064093521796167,-6.9673301368312e-06,0.019469004124403],[0.0316102206707,0.018354615196586,-0.040186937898397],[-0.014223555102944,-0.030325939878821,0.012202196754515]],[[-0.0014098045649007,0.030070517212152,0.12942077219486],[-0.0028348290361464,-0.040871638804674,-0.0091513404622674],[-0.00043625570833683,0.053358566015959,-0.05138349160552]],[[0.041350673884153,-0.026331562548876,0.028648391366005],[0.014527075923979,-0.024243991822004,-0.0078560775145888],[0.027681864798069,-0.029986474663019,-0.00065296574030071]],[[-0.031903099268675,-0.085312969982624,0.015755457803607],[-0.0064154928550124,-0.10677281022072,-0.012111187912524],[0.0081083197146654,0.085772663354874,-0.082654066383839]],[[0.063347697257996,0.039113365113735,-0.031802892684937],[0.040052130818367,0.05315600708127,0.055562302470207],[-0.0045213936828077,0.0020090402103961,0.059383191168308]],[[-0.025998648256063,-0.053398843854666,0.03652024269104],[-0.0044243140146136,-0.043467164039612,-0.045595396310091],[0.070433378219604,0.046036649495363,0.03802677616477]],[[-0.1111593991518,-0.021359013393521,-0.02417142316699],[-0.0049326783046126,0.0033096489496529,-0.018233994022012],[0.047897085547447,-0.013616861775517,-0.021075004711747]]],[[[0.042080081999302,0.0040905294008553,-0.18590570986271],[-0.068485245108604,-0.089969001710415,-0.11312827467918],[-0.044349856674671,0.0083623249083757,-0.021983919665217]],[[-0.08804776519537,0.065908521413803,-0.13778679072857],[0.098031312227249,0.046163260936737,-0.149041056633],[0.099192425608635,-0.035146228969097,-0.014564421959221]],[[0.093000121414661,0.026296874508262,-0.17754806578159],[-0.12722644209862,0.060936596244574,-0.16680738329887],[0.015697229653597,-0.093604259192944,-0.22592687606812]],[[-0.072270892560482,0.16144515573978,0.0079078655689955],[-0.085243858397007,0.033258490264416,-0.01289873290807],[-0.12862661480904,0.016912348568439,-0.0050789103843272]],[[0.016059141606092,-0.053434286266565,-0.034287314862013],[0.063502535223961,0.10105305165052,0.060287125408649],[0.087534837424755,-0.031673315912485,0.090535692870617]],[[0.010372346267104,0.026236116886139,-0.017817359417677],[-0.022174410521984,-0.014408716931939,0.012998360209167],[0.04598394036293,-0.069472804665565,-0.035196427255869]],[[0.0081887803971767,-0.038083251565695,-0.042253468185663],[-0.085568882524967,-0.021901816129684,-0.1399289816618],[-0.090154699981213,-0.034733712673187,0.086734421551228]],[[0.0050893248990178,0.13378532230854,0.029093215242028],[0.0370386056602,0.079647228121758,0.003614466637373],[-0.099509172141552,-0.040573198348284,-0.021001219749451]],[[0.029266158118844,-0.058160919696093,0.057576544582844],[0.038582563400269,-0.10522982478142,-0.11228694021702],[0.034768715500832,0.061376210302114,0.0050006508827209]],[[-0.062097512185574,0.068568773567677,-0.14775727689266],[0.037006631493568,0.027402013540268,-0.16655974090099],[0.15640200674534,-0.046720638871193,-0.15520223975182]],[[0.030964180827141,0.012235146015882,0.049752473831177],[0.070663414895535,-0.039838258177042,-0.030667521059513],[-0.019863793626428,-0.072987362742424,-0.018156824633479]],[[-0.0025316562969238,-0.19384005665779,-0.14816123247147],[0.0069403895176947,-0.11537083983421,-0.13201628625393],[0.039147507399321,0.037743169814348,-0.10557169467211]],[[0.079282380640507,0.06143881380558,0.054430797696114],[0.0042984555475414,0.082220233976841,-0.027264196425676],[-0.055610846728086,0.035762466490269,-0.070235095918179]],[[0.0037801063153893,0.10418298840523,-0.025006296113133],[0.0086331097409129,-0.072588101029396,0.12600836157799],[-0.049253951758146,0.032375987619162,0.074083998799324]],[[-0.022427333518863,0.035675376653671,0.02077666670084],[0.017105491831899,-0.036099269986153,-0.019875740632415],[0.053628571331501,-0.010374626144767,-0.15841940045357]],[[-0.039322275668383,0.061573851853609,0.085835054516792],[-0.028438737615943,0.024706510826945,-0.025457611307502],[-0.023163605481386,-0.087194159626961,-0.031960755586624]],[[0.031165950000286,-0.010662546381354,-0.10241583734751],[-0.054351601749659,-0.075693972408772,-0.12029664963484],[-0.042137451469898,0.048116642981768,-0.047237422317266]],[[-0.041932884603739,-0.009702636860311,-0.06844399869442],[-0.06591410189867,0.035366151481867,-0.00067889771889895],[0.013185141608119,-0.028588216751814,-0.043659470975399]],[[-0.093624018132687,-0.011994171887636,0.025261797010899],[0.029295854270458,0.0058319834060967,0.0010632677003741],[0.042378094047308,-0.060713786631823,0.010888398624957]],[[0.049171004444361,0.074579738080502,-0.045666910707951],[0.029417222365737,0.0023452138993889,-0.024986999109387],[0.0016831732355058,-0.015487294644117,-0.041247803717852]],[[0.01199581567198,0.064278468489647,-0.0052299429662526],[0.058527741581202,0.062196794897318,0.071944169700146],[0.040825918316841,-0.076013706624508,-0.085626907646656]],[[0.070567771792412,0.15721686184406,0.033297128975391],[-0.071746818721294,0.018938366323709,0.020326472818851],[-0.19271971285343,-0.10856492072344,0.0001846855157055]],[[-0.029827358201146,-0.031497545540333,-0.05763041600585],[-0.068981565535069,-0.050832696259022,-0.059632308781147],[0.093387305736542,-0.043194938451052,0.016768496483564]],[[-0.044272039085627,0.15628418326378,0.047776725143194],[-0.075137965381145,0.062813386321068,0.099714130163193],[-0.090512126684189,0.0039628576487303,-0.028189100325108]],[[0.12677128612995,-0.061465498059988,0.073594942688942],[0.053029134869576,-0.043242681771517,0.017610037699342],[0.040892913937569,0.017523156479001,-0.081220895051956]],[[0.04787627607584,0.0081143975257874,0.012094206176698],[0.071033172309399,-0.074450336396694,0.02336934581399],[0.02299601957202,-0.040953122079372,0.059024937450886]],[[-0.0073653245344758,0.088502265512943,0.0061906957998872],[-0.086291193962097,-0.018538929522038,0.050270915031433],[-0.033166501671076,-0.07546491920948,0.081322118639946]],[[0.045858267694712,-0.041859120130539,-0.02648201584816],[0.10611259192228,-0.079440578818321,0.032928097993135],[0.02738936431706,0.014200902543962,-0.01402919087559]],[[-0.043358974158764,-0.21426559984684,-0.034829214215279],[0.0042544337920845,0.0036639801692218,-0.058762513101101],[0.014337386004627,-0.027708411216736,-0.044068310409784]],[[-0.042005021125078,-0.086614020168781,-0.18359318375587],[-0.065718255937099,-0.1027472615242,-0.17238458991051],[0.0051681804470718,-0.0067672501318157,-0.074462205171585]],[[0.023541478440166,-0.0020195138640702,-0.022633723914623],[0.04925499483943,-0.035327587276697,0.061652105301619],[0.028463898226619,-0.091265439987183,0.048559002578259]],[[0.010887894779444,0.035753879696131,-0.11513839662075],[-0.0082451766356826,-0.012541440315545,-0.031371757388115],[-0.012373236939311,-0.010575788095593,-0.1132740676403]],[[0.07048087567091,-0.018101159483194,0.063652671873569],[-0.033556193113327,-0.063997022807598,0.01018690597266],[0.071354046463966,0.047368235886097,0.040742360055447]],[[0.030245969071984,0.04524889215827,0.06826689094305],[0.064849175512791,0.10947657376528,0.0024537981953472],[0.11037869006395,0.012360371649265,-0.042346075177193]],[[0.07342653721571,-0.026247104629874,-0.10606495290995],[-0.062326326966286,0.044771544635296,-0.036232333630323],[0.024564377963543,0.062477681785822,-0.033873740583658]],[[0.047496221959591,0.044996660202742,-0.0043677310459316],[-0.0093403207138181,0.013657949864864,0.011340169236064],[0.059871464967728,-0.0075380117632449,-0.0066865691915154]],[[0.063763476908207,-0.053684081882238,-0.08389263600111],[0.031649459153414,-0.10643678158522,-0.062428943812847],[0.030699990689754,-0.05009263753891,-0.0219124276191]],[[-0.032813455909491,-0.0063550244085491,-0.053209129720926],[-0.052460119128227,-0.063952058553696,0.012252061627805],[0.098275937139988,-0.11936317384243,-0.15754868090153]],[[-0.085114233195782,-0.03076234459877,-0.078590802848339],[-0.02156094647944,-0.0093338051810861,0.023106699809432],[-0.013220035471022,-0.027129255235195,-0.077493719756603]],[[0.14209969341755,0.10825662314892,0.010647593066096],[0.035051789134741,0.097060866653919,-0.013434450142086],[0.040096305310726,-0.073649898171425,-0.10338432341814]],[[0.068429850041866,0.027008812874556,-0.053251143544912],[-0.065857291221619,0.057931683957577,0.046043250709772],[-0.055388446897268,-0.078022085130215,-0.068320155143738]],[[-0.10795397311449,0.0040226355195045,-0.11092406511307],[-0.075728736817837,0.0010012693237513,-0.050728749483824],[0.016590654850006,-0.071683563292027,-0.065318405628204]],[[-0.067583233118057,0.073704682290554,-0.072459906339645],[-0.0020695100538433,-0.01281466986984,0.16713996231556],[-0.023742916062474,-0.1373810172081,-0.011951909400523]],[[0.14180415868759,0.007857252843678,-0.14748547971249],[0.045852817595005,-0.0025790515355766,-0.12382923066616],[-0.088674075901508,0.0054560196585953,-0.047997895628214]],[[-0.073485910892487,0.018474832177162,0.0077781961299479],[-0.067447513341904,0.040027990937233,-0.026975721120834],[-0.082854196429253,-0.0012494714464992,-0.020721733570099]],[[0.044847305864096,0.045737270265818,0.033767595887184],[0.056846760213375,0.042931631207466,0.035995781421661],[-0.0048151290975511,-0.0054527521133423,0.06048234179616]],[[-0.021985283121467,-0.064525730907917,-0.0099907424300909],[0.061699651181698,0.00019451821572147,0.12584701180458],[0.11506006866693,-0.018858956173062,0.039663404226303]],[[0.069498851895332,-0.037139408290386,-0.065234161913395],[-0.014806132763624,-0.036468230187893,-0.16116344928741],[0.07459307461977,0.0086270561441779,-0.053107798099518]],[[-0.083718240261078,-0.0096933068707585,0.033438250422478],[-0.067325122654438,-0.05303768441081,0.0066150417551398],[0.055006433278322,0.062273725867271,0.014892039820552]],[[0.0042074788361788,-0.032755989581347,0.021657690405846],[0.038648746907711,-0.052096474915743,-0.016354205086827],[0.065758153796196,0.13715480268002,-0.025371190160513]],[[-0.059729959815741,0.02469027787447,-0.01285894587636],[0.1055855974555,-0.011044663377106,-0.015788022428751],[0.046263415366411,-0.086566247045994,0.059286747127771]],[[0.11809308081865,0.11945008486509,-0.033104684203863],[0.076197192072868,0.11122456938028,0.10382471233606],[-0.038186397403479,-0.04095795750618,0.070527195930481]],[[-0.055395379662514,0.0031050895340741,0.0072385151870549],[0.0078331241384149,-0.025051333010197,0.0026782606728375],[0.075751222670078,-0.021886439993978,-0.043243307620287]],[[0.031501907855272,-0.086176998913288,-0.039536993950605],[0.080688148736954,-0.19175530970097,0.010811268351972],[0.074776627123356,0.050244715064764,0.016893217340112]],[[-0.04675018414855,0.070967316627502,0.013992052525282],[-0.0051851239986718,0.010895062237978,0.014683120884001],[0.0099327666684985,0.055953249335289,-0.011030718684196]],[[-0.0067783473059535,-0.064660407602787,-0.0040905340574682],[0.040279060602188,-0.15977437794209,-0.029816497117281],[-0.049824744462967,-0.0031331565696746,0.011632360517979]],[[0.018302027136087,-0.052138198167086,-0.0027182523626834],[-0.1040598154068,-0.032276757061481,-0.18690015375614],[-0.046318024396896,-0.091369822621346,-0.23700046539307]],[[0.059420049190521,0.018523851409554,-0.033640835434198],[0.046188928186893,-0.018146455287933,0.099901512265205],[-0.036642089486122,-0.045548807829618,0.093669913709164]],[[-0.030136631801724,0.13489507138729,0.071905300021172],[-0.0061797578819096,-0.024389985948801,0.082857370376587],[-0.015327596105635,-0.063691005110741,0.18933582305908]],[[-0.05377334728837,-0.018635787069798,0.027044786140323],[-0.040487784892321,-0.01063655782491,0.067423261702061],[-0.023231768980622,0.051633544266224,0.0085575943812728]],[[-0.082017190754414,-0.12394566088915,-0.045119654387236],[0.10771083831787,-0.14197653532028,-0.10527839511633],[0.0099907908588648,-0.072268195450306,0.026840118691325]],[[-0.012413002550602,-0.11828907579184,0.030254134908319],[-0.067958392202854,0.085032783448696,-0.073737375438213],[-0.031992759555578,0.078466862440109,0.0012911368394271]],[[0.089955776929855,0.005435454659164,0.007238982245326],[0.038577239960432,-0.026292407885194,-0.018760027363896],[-0.016839565709233,-0.019268054515123,-0.0060424753464758]],[[0.059667028486729,-0.00079088500933722,-0.034392587840557],[-0.04137534275651,0.092250749468803,-0.054590810090303],[-0.052938036620617,-0.021186672151089,-0.058537933975458]]],[[[0.0054479129612446,-0.073217108845711,-0.041398648172617],[0.039157897233963,0.011534597724676,0.018351985141635],[0.0019571946468204,0.027338186278939,0.043454736471176]],[[-0.041108332574368,-0.0045645665377378,-0.028042051941156],[0.03034027852118,-0.019884493201971,0.01217115111649],[-0.0024982118047774,-0.026991106569767,-0.016027657315135]],[[0.0004249261401128,0.010418822988868,-0.011147239245474],[0.06203705817461,-0.024508723989129,-0.0040578134357929],[0.044543582946062,0.053238466382027,0.034469902515411]],[[0.064782001078129,0.001265577506274,-0.038777485489845],[-0.096124544739723,-0.040370356291533,-0.034168530255556],[-0.0094771273434162,0.10275971889496,0.049179092049599]],[[0.047083932906389,-0.052268128842115,-0.0863953307271],[0.011028456501663,0.0091913575306535,-0.013791085220873],[0.056117054075003,0.025473937392235,0.028715077787638]],[[-0.0010959305800498,0.069250985980034,0.040962882339954],[0.046085745096207,0.012703531421721,0.03217564150691],[-0.012538210488856,-0.062840290367603,-0.035770785063505]],[[-0.0021126009523869,0.0076177041046321,0.046048812568188],[0.022024627774954,-0.042740657925606,0.056299410760403],[-0.0080895898863673,0.0035380623303354,-0.012146565131843]],[[-0.00089342152932659,-0.0067622163332999,0.020092956721783],[-0.050123900175095,0.045990031212568,0.016277942806482],[0.041890852153301,0.0060087023302913,-0.062502153217793]],[[0.0080202938988805,0.00091079610865563,-0.069393500685692],[0.081378571689129,-0.067369297146797,0.0051720952615142],[0.011551763862371,-0.033317930996418,-0.039334885776043]],[[0.002602553460747,0.033840894699097,0.038936153054237],[0.0043966118246317,0.046881966292858,0.0059638861566782],[-0.077958427369595,-0.030793128535151,-0.025457091629505]],[[-0.030308427289128,0.010741217061877,0.049582246690989],[-0.034121681004763,0.046009708195925,-0.022344134747982],[0.036521010100842,-0.041649043560028,0.054469335824251]],[[-0.020793406292796,0.0025115292519331,0.00054333417210728],[-0.032355505973101,0.062259823083878,-0.0033107434865087],[0.041470937430859,0.013591304421425,0.056940983980894]],[[0.040213033556938,0.063768677413464,0.04991427809],[0.010976985096931,-0.035194769501686,-0.022202355787158],[-0.011943089775741,-0.040868636220694,-0.056937362998724]],[[0.061538770794868,-0.023510882630944,0.035661637783051],[0.029942391440272,-0.00613904139027,0.0045683011412621],[0.051435988396406,-0.016665255650878,-0.02600722014904]],[[0.003402397967875,-0.017256923019886,0.057641610503197],[0.0042382478713989,0.012148277834058,0.051100373268127],[0.017653595656157,0.067403018474579,0.017998330295086]],[[0.10771379619837,0.032018512487411,0.017694758251309],[-0.0086615867912769,-0.039935857057571,-0.020481914281845],[0.0067742899991572,0.019120393320918,-0.015168931335211]],[[0.0015054484829307,-0.019324177876115,-0.06188590452075],[-0.0059308661147952,-0.0062296842224896,0.053031358867884],[-0.049156352877617,-0.0091051487252116,-0.0037882928736508]],[[0.034573085606098,0.021882919594646,-0.085106663405895],[0.0017902081599459,0.020718486979604,-0.047828365117311],[-0.031782150268555,-0.012464708648622,0.015387526713312]],[[0.023531120270491,-0.0068621477112174,0.025571851059794],[0.04535311833024,0.03819864243269,-0.037651833146811],[0.056774992495775,-0.035420086234808,-0.050430212169886]],[[0.047076594084501,0.01438248436898,-0.014663728885353],[-0.046947821974754,0.027224391698837,-0.0025901319459081],[0.027997970581055,-0.0030656498856843,0.0039573279209435]],[[0.0056491615250707,0.012226581573486,0.022172994911671],[-0.042205363512039,-0.014337489381433,0.0071565401740372],[0.032288044691086,0.023816594853997,0.0045544384047389]],[[0.076348505914211,0.011837388388813,0.02767388895154],[0.051756720989943,-0.01359879784286,0.058651059865952],[-0.005765026435256,-0.036384746432304,0.050699949264526]],[[0.063594438135624,0.00035088721779175,-0.029451839625835],[0.012883419170976,0.010987050831318,0.021200841292739],[0.017245635390282,0.0020618471316993,-0.045970745384693]],[[0.06350239366293,0.029309287667274,0.12869483232498],[0.13775636255741,0.094873234629631,0.043643478304148],[0.083299338817596,0.088027842342854,0.030558329075575]],[[0.027173457667232,0.0066896192729473,-0.017724700272083],[0.026296032592654,0.033818531781435,0.057643786072731],[-0.0088904639706016,-0.0046642576344311,0.070418648421764]],[[0.0037975241430104,0.044881854206324,-0.02434628456831],[0.020968129858375,0.017685171216726,0.0329859405756],[0.0086078299209476,-0.0042566996999085,-0.049019943922758]],[[0.027424100786448,0.13266764581203,0.029551211744547],[0.026007311418653,0.063298612833023,-0.023917021229863],[-0.048365730792284,-0.027775336056948,0.07670409232378]],[[0.035882133990526,0.038857843726873,-0.030244445428252],[-0.011471224948764,-0.0027551739476621,-0.019435230642557],[-0.036897722631693,-0.0053913597948849,-0.0026546998415142]],[[0.040744971483946,0.032474096864462,0.018084958195686],[0.018557658419013,0.083362929522991,0.0136738428846],[0.052494417876005,0.021105321124196,0.041087742894888]],[[0.019551217556,-0.0015406671445817,0.019632609561086],[-0.02781467884779,-0.067233271896839,0.017187766730785],[0.040704116225243,-0.0085014961659908,0.02064530365169]],[[-0.013679772615433,0.12849171459675,0.022053388878703],[0.061696145683527,0.010888202115893,-0.027457794174552],[-0.049449842423201,-0.067818358540535,-0.060482565313578]],[[0.097387582063675,0.074036821722984,0.060010198503733],[-0.034319814294577,0.01440033596009,-0.02936247177422],[0.00043516073492356,0.047273281961679,0.020110609009862]],[[-0.084456540644169,0.012800411321223,-0.010684197768569],[-0.0054236152209342,0.011714780703187,0.00069260521559045],[-0.038428470492363,0.047761451452971,0.013041316531599]],[[0.037127416580915,0.023884056136012,0.00063717854209244],[0.034950066357851,0.032067973166704,0.011131918057799],[0.052472699433565,0.077731736004353,0.090949393808842]],[[0.048029012978077,-0.013229864649475,0.0022312342189252],[0.017507921904325,0.024240443482995,0.033897571265697],[0.060059458017349,0.0364995226264,0.0059398766607046]],[[-0.025657618418336,0.014962355606258,-0.0020985926967114],[-0.049096416682005,-0.093020506203175,0.0058271093294024],[-0.027558380737901,0.0041704881004989,0.05835309997201]],[[0.0056554172188044,-0.024423483759165,-0.014220128767192],[0.029134532436728,0.056751281023026,0.0041669593192637],[0.00060453556943685,-0.012591426260769,0.038969356566668]],[[0.028885932639241,0.033258814364672,-0.011391128413379],[0.041056603193283,0.013901367783546,0.059393685311079],[0.0043677529320121,-0.060793336480856,-0.0021855244413018]],[[0.065038055181503,0.027920182794333,0.054079350084066],[0.04012119024992,0.059878829866648,0.00065275776432827],[-0.005142820533365,-0.012827292084694,-0.10656379163265]],[[0.085519388318062,0.093194141983986,0.10865333676338],[0.051108349114656,0.055911429226398,0.071521766483784],[0.031505893915892,-0.010008375160396,0.066923268139362]],[[0.068761050701141,0.031816177070141,0.0083578443154693],[0.13807916641235,0.068855710327625,0.074003957211971],[0.12472192198038,0.079970389604568,0.048507872968912]],[[-0.011142278090119,0.044250175356865,0.039424762129784],[0.0097559848800302,-0.023044891655445,-0.004668100271374],[0.065043888986111,0.042447365820408,-0.03881224244833]],[[0.033366709947586,-0.00090969365555793,0.012704217806458],[0.028975304216146,-0.025990607216954,0.0667729601264],[-0.0022913140710443,0.072965614497662,0.032761290669441]],[[0.020648317411542,0.01765301823616,-0.046976357698441],[0.02319510653615,-0.027822433039546,0.014385977759957],[0.011515937745571,-0.022266404703259,-0.057206984609365]],[[-0.05572322010994,-0.050087340176105,-0.018361454829574],[0.039642348885536,0.014385960064828,-0.02866892144084],[-0.013749427162111,-0.015097644180059,0.03797858953476]],[[0.026906033977866,0.00085814046906307,0.049532450735569],[0.036166645586491,0.019685482606292,0.097867779433727],[-0.090064570307732,0.0062788245268166,-0.0033848979510367]],[[-0.016804914921522,-0.0064058541320264,-0.04007201641798],[0.045065831393003,-0.0013474082807079,-0.035962749272585],[-0.087758801877499,0.021042235195637,0.043197087943554]],[[-0.025745449587703,0.017670964822173,0.021564519032836],[-0.053839717060328,0.012090204283595,-0.015642730519176],[-0.012769983150065,0.011886312626302,-0.0026165419258177]],[[-9.7669544629753e-05,0.065723329782486,-0.016486985608935],[0.0046076904982328,0.022980516776443,-0.029159346595407],[0.025323176756501,0.0095272269099951,0.02662674896419]],[[0.037063140422106,0.019426058977842,0.049172922968864],[-0.033662486821413,0.023262875154614,-0.0064689428545535],[0.017687615007162,0.094965130090714,-0.016497066244483]],[[-0.027615336701274,-0.050628706812859,0.028286695480347],[-0.032868038862944,0.0048561962321401,-0.033594988286495],[-0.0038682869635522,-0.013945852406323,-0.0083470493555069]],[[0.099902950227261,-0.036565706133842,0.045627631247044],[0.067673288285732,0.083303786814213,0.11420193314552],[-0.058711059391499,0.10054357349873,-0.0019349412759766]],[[0.05683970451355,0.092316903173923,0.059735991060734],[0.073879808187485,0.047305006533861,0.0065046795643866],[-0.048220813274384,0.011477309279144,0.079984545707703]],[[0.025504425168037,-0.017215447500348,-0.057644389569759],[0.028315886855125,-0.0069952155463398,0.012268483638763],[0.015853576362133,-0.032252129167318,0.0338517986238]],[[-0.063403069972992,0.005846634041518,-0.0096485940739512],[-0.049190834164619,-0.0037906360812485,0.04170798510313],[-0.007522507570684,-0.029711680486798,0.021170014515519]],[[-0.090014845132828,-0.058146361261606,0.035988543182611],[0.00031495533767156,0.034103322774172,-0.0017224883195013],[0.023549953475595,-0.03934657946229,0.01792380400002]],[[-0.010424236766994,0.022565767168999,0.0073993997648358],[-0.013904455117881,-0.037575427442789,0.0045087458565831],[0.076580114662647,0.029997739940882,-0.01234174426645]],[[-0.0044684633612633,0.006937752943486,-0.010667769238353],[-0.0009778079111129,-0.029056761413813,0.026864387094975],[-0.031978998333216,-0.013340429402888,-0.00035278574796394]],[[0.071039155125618,0.099267475306988,0.030188938602805],[0.12891446053982,0.061735555529594,0.11724007874727],[0.073810897767544,0.076881445944309,0.041704162955284]],[[-0.0064851935021579,0.0069882348179817,-0.02092868834734],[-0.041327107697725,-0.031893961131573,-0.013326847925782],[0.047840941697359,0.049398601055145,0.053262639790773]],[[0.041606083512306,-0.027870327234268,-0.007233411539346],[0.0045551746152341,0.077463813126087,-0.0094403168186545],[-0.0055628563277423,0.017916018143296,-0.059067025780678]],[[-0.037282384932041,-0.015715483576059,-0.024650836363435],[-0.040537744760513,0.0029965913854539,-0.0095134750008583],[0.057689715176821,0.0042262743227184,-0.00066061032703146]],[[-0.042900189757347,0.059674635529518,-0.011776017956436],[0.0093294754624367,-0.00047679190174676,0.032633129507303],[-0.053475648164749,-0.0090248584747314,0.030021196231246]],[[-0.023973532021046,-0.04659840092063,0.009369439445436],[-0.043883569538593,-0.065789803862572,-0.0054994369857013],[-0.024296214804053,0.011943200603127,0.022496994584799]]],[[[-0.12164476513863,0.0048886574804783,-0.013984417542815],[-0.041194777935743,0.016502898186445,0.00047897416516207],[-0.082111217081547,-0.047689020633698,-0.0015120264142752]],[[-0.04573642462492,0.16267345845699,0.070643112063408],[-0.026259949430823,-0.037234891206026,-0.036254346370697],[0.044353302568197,0.13324567675591,0.13588635623455]],[[-0.17763638496399,-0.13151863217354,-0.13464657962322],[-0.0017461775569245,-0.083379827439785,0.066700555384159],[-0.073271974921227,-0.014897372573614,0.14991706609726]],[[-0.056558970361948,-0.0039216307923198,-0.13438262045383],[-0.044077441096306,-0.062297947704792,0.027776919305325],[-0.012318400666118,-0.016553262248635,0.00055834749946371]],[[0.0042444518767297,-0.05164423212409,0.036239672452211],[0.0058822757564485,0.020148122683167,0.026752017438412],[-0.040635142475367,0.045866187661886,-0.00875523686409]],[[-0.030026877298951,-0.059144582599401,0.046468041837215],[-0.05847841873765,-0.057298500090837,0.063139677047729],[-0.053821496665478,-0.13139997422695,-0.079505510628223]],[[-0.025770928710699,-0.049683056771755,0.0091465301811695],[-0.026687659323215,0.022590111941099,0.043843895196915],[-0.0051756035536528,0.074085079133511,0.050536185503006]],[[-0.013263784348965,0.10299178212881,0.039275851100683],[-0.037442147731781,-0.0089662279933691,0.036956436932087],[0.066183432936668,0.065028756856918,0.14414891600609]],[[0.07749180495739,0.034993030130863,0.053405527025461],[-0.031633794307709,-0.0057279234752059,-0.038596007972956],[-0.021887557581067,-0.016822166740894,0.025020845234394]],[[-0.076456546783447,-0.0014599154237658,-0.10306668281555],[0.018070792779326,-0.022118993103504,0.0026622875593603],[-0.044654708355665,-0.074151337146759,-0.021169409155846]],[[0.0014138635015115,0.029449434950948,-0.0036004995927215],[-0.0084816599264741,0.066628620028496,0.0045090820640326],[-0.0015131380641833,-0.0053789429366589,-0.026598569005728]],[[0.15221910178661,-0.031565513461828,-0.01580704562366],[0.05315538495779,0.029284756630659,0.0024982141330838],[-0.092583253979683,0.0055718305520713,-0.0061709810979664]],[[-0.029339555650949,-0.070265330374241,0.020345471799374],[-0.018222749233246,0.025251083076,-0.017425686120987],[-0.0022379131987691,-0.016331899911165,-0.032032210379839]],[[-0.12051548063755,-0.078145869076252,-0.071135029196739],[-0.012267097830772,-0.018744925037026,-0.069987013936043],[0.024871461093426,0.012806502170861,-0.16869848966599]],[[-0.069667764008045,0.011076813563704,0.014853579923511],[-0.057608377188444,0.0046548005193472,-0.028009004890919],[-0.018377972766757,0.02520159445703,-0.049349956214428]],[[0.25706288218498,-0.0159917101264,-0.082382120192051],[0.047091331332922,0.021235581487417,0.028627393767238],[-0.088521368801594,0.023874331265688,-0.028100928291678]],[[0.082365572452545,0.11600434035063,0.013815779238939],[0.072399541735649,-0.0019859191961586,-0.035029012709856],[-0.030119562521577,0.078831680119038,-0.053825188428164]],[[-0.054602857679129,-0.062802724540234,-0.016980640590191],[0.0058132712729275,-0.0031648394651711,0.10800526291132],[0.012486899271607,0.034093718975782,0.028779953718185]],[[0.033618740737438,0.055331785231829,-0.0026885820552707],[0.011393467895687,0.032576400786638,-0.057069282978773],[0.037358295172453,-0.020439140498638,0.026631396263838]],[[-0.023685190826654,-0.042347896844149,0.092622816562653],[-0.027028238400817,-0.039431866258383,-0.0094777541235089],[-0.0059061204083264,0.03419678658247,0.048599578440189]],[[-0.070923708379269,-0.17754259705544,-0.069905921816826],[-0.017549125477672,-0.050075240433216,-0.09153701364994],[0.036741405725479,0.039915457367897,0.062682643532753]],[[-0.058549966663122,-0.049560952931643,-0.010510291904211],[-0.00073185033397749,0.0070978170260787,0.036337599158287],[0.076386637985706,0.041796404868364,0.060251519083977]],[[-0.042796064168215,-0.016033329069614,0.055398892611265],[-0.026434969156981,-0.11163289099932,-0.077845260500908],[-0.040853679180145,0.001351090031676,-0.10920927673578]],[[-0.050383925437927,0.083383686840534,0.067269705235958],[0.015484101139009,0.062010411173105,0.038831803947687],[0.085274249315262,0.034957207739353,0.13141626119614]],[[-0.018206499516964,-0.085938781499863,0.079805634915829],[0.11584707349539,-0.015774000436068,-0.067506916821003],[0.020174793899059,-0.017095569521189,-0.16633927822113]],[[-0.0047217956744134,0.0038789701648057,0.016628982499242],[-0.053995650261641,-0.0061769662424922,0.027186568826437],[0.0029143691062927,0.040101792663336,0.12113675475121]],[[-0.058171346783638,0.0048869797028601,0.00030908396001905],[0.085650816559792,-0.0073436880484223,-0.033101867884398],[0.044126082211733,-0.012151149101555,-0.11724983155727]],[[-0.15100935101509,-0.01089870557189,-0.075126983225346],[-0.0048198341391981,-0.01119608618319,0.016697488725185],[-0.045060828328133,-0.05968201905489,0.023238264024258]],[[0.03292104229331,0.042645394802094,0.0015755309723318],[0.043604679405689,-0.027000315487385,-0.030576307326555],[0.029583701863885,0.023841207846999,0.093912795186043]],[[0.044253375381231,0.11832129955292,0.044003896415234],[0.025378370657563,0.088319189846516,0.098539412021637],[0.035865191370249,-0.0056936065666378,0.052854884415865]],[[0.01220712903887,-0.01243796851486,0.093972705304623],[-0.0017797296168283,0.0075256749987602,0.076404459774494],[-0.0053669167682528,-0.016748938709497,0.040511701256037]],[[-0.17456044256687,-0.090606994926929,0.021184287965298],[0.0078313583508134,0.024594677612185,0.053861077874899],[0.075429655611515,0.035835076123476,-0.03026195988059]],[[0.03058953769505,0.015847211703658,-0.045165069401264],[0.0093199433758855,0.017478292807937,0.033649455755949],[0.046540509909391,0.011688173748553,-0.02063337340951]],[[0.0072834542952478,0.05538622289896,-0.0051169139333069],[0.022905780002475,0.012197897769511,0.14311045408249],[-0.088115371763706,-0.036155562847853,-0.02165100723505]],[[-0.045898821204901,-0.092490933835506,0.019900696352124],[0.035111926496029,-0.090324968099594,0.046911984682083],[0.0091111594811082,-0.13167905807495,-0.01517416536808]],[[0.043171722441912,-0.029755007475615,0.034851357340813],[0.019519796594977,0.087978862226009,-0.032863292843103],[0.043988317251205,-0.0099104549735785,0.00035744009073824]],[[-0.013700509443879,0.043118346482515,-0.082294389605522],[-0.029742924496531,0.076531514525414,-0.045546341687441],[-0.075414583086967,-0.027308527380228,0.041558384895325]],[[-0.01293514482677,0.084564782679081,0.045999832451344],[0.099819637835026,0.016442704945803,0.053842209279537],[-0.0067831105552614,0.042917434126139,0.18064096570015]],[[0.093592196702957,-0.048464063555002,0.069565705955029],[0.10647193342447,-0.049951732158661,0.031247513368726],[-0.025647571310401,0.032613884657621,-0.015102683566511]],[[-0.10969777405262,-0.11797717213631,-0.024342177435756],[-0.042635265737772,-0.10145907849073,-0.065644860267639],[-0.0029007308185101,-0.1790162473917,-0.11420594900846]],[[-0.089745499193668,-0.0071740560233593,0.025002479553223],[0.010500052012503,-0.02712470293045,-0.084870651364326],[0.080314725637436,-0.044424641877413,0.068298690021038]],[[0.029245249927044,-0.077394023537636,0.080985255539417],[0.07353813201189,0.0051489030010998,0.081875331699848],[0.0084648095071316,-0.023339340463281,0.03225078061223]],[[-0.12512421607971,-0.0312818326056,-0.092337772250175],[-0.012353061698377,-0.070068344473839,0.015455677174032],[-0.062169898301363,-0.065666377544403,-0.16545420885086]],[[0.075405739247799,-0.0029146180022508,0.069082126021385],[-0.031370088458061,0.0032238627318293,-0.022605827078223],[0.030889084562659,-0.029113074764609,-0.019786957651377]],[[0.013741360977292,-0.070137560367584,-0.039788234978914],[-0.077989786863327,0.047307834029198,0.024748532101512],[0.0082265250384808,-0.033695224672556,-0.024790102615952]],[[-0.064581632614136,-0.058207094669342,0.055395163595676],[-0.071302011609077,0.0075069605372846,-0.030738219618797],[-0.021776391193271,-0.015989255160093,0.015829741954803]],[[-0.069120727479458,-0.030641052871943,0.023863242939115],[-0.012446327134967,0.016329858452082,-0.042095933109522],[-0.040669679641724,-0.050179485231638,0.040141995996237]],[[-0.030672263354063,-0.082682609558105,-0.014388046227396],[0.033310022205114,-0.0011746018426493,-0.059672351926565],[-0.024322248995304,0.010735462419689,-0.016445424407721]],[[-0.13143883645535,-0.0031478994060308,-0.081079550087452],[0.012096046470106,0.03557426482439,0.017833527177572],[-0.066780164837837,-0.014402993954718,-0.12185718864202]],[[-0.08912155777216,-0.0040480946190655,-0.0085797626525164],[0.013886329717934,-0.083808422088623,0.063097186386585],[0.035766061395407,-0.22794759273529,-0.10397409647703]],[[0.011715156957507,-0.0018233623122796,0.0075623174197972],[0.012831777334213,0.049135304987431,0.046630132943392],[-0.0060101840645075,-0.05883564427495,-0.051784165203571]],[[-0.037295125424862,0.054231975227594,-0.044828239828348],[0.0025421653408557,0.050909124314785,-0.038854125887156],[0.052356753498316,0.050041038542986,0.13599964976311]],[[0.16634799540043,-0.065952576696873,-0.023742167279124],[-0.13019289076328,-0.0013454735744745,-0.049504574388266],[-0.020478527992964,0.038389049470425,-0.13032934069633]],[[0.087142296135426,0.082807198166847,0.07633101195097],[0.0014349629636854,-0.063968852162361,-0.0019988170824945],[-0.058238983154297,0.030257230624557,-0.094092540442944]],[[-0.14584363996983,-0.072097547352314,-0.029106115922332],[-0.044245541095734,-0.023504633456469,-0.038246236741543],[-0.051870387047529,0.046318341046572,-0.11069874465466]],[[-0.080742076039314,-0.047768451273441,0.0049245795235038],[0.014980992302299,-0.050987113267183,0.029419312253594],[0.014869420789182,0.0090846819803119,0.018980117514729]],[[-0.045236833393574,-0.046568807214499,0.070064038038254],[-0.041203115135431,0.016704067587852,-0.041014619171619],[0.014641595073044,-0.028580324724317,0.0098583977669477]],[[0.00067069509532303,-0.040444005280733,-0.018978090956807],[-0.019713619723916,-0.069098383188248,-0.20414409041405],[-0.053594008088112,0.04581132158637,-0.27627882361412]],[[-0.036529306322336,0.098647475242615,0.0088439546525478],[0.0048844404518604,0.064635075628757,-0.016778560355306],[0.021368939429522,0.045219119638205,0.053647246211767]],[[0.035054560750723,0.011908962391317,-0.0086761815473437],[0.051066819578409,0.035666260868311,-0.035893663764],[-0.0067049469798803,-0.0089691812172532,-0.064171262085438]],[[0.034714806824923,0.019798981025815,-0.048760373145342],[0.00092643720563501,-0.021087678149343,0.035324163734913],[-0.098620913922787,-0.046426840126514,-0.096169471740723]],[[-0.03150811418891,-0.052658304572105,0.14386709034443],[-0.028601119294763,-0.054336156696081,0.07315194606781],[0.035464700311422,0.0024214540608227,0.016636231914163]],[[-0.00053577125072479,0.023812662810087,0.041849680244923],[-0.033783193677664,-0.036782052367926,-0.018364313989878],[0.010382925160229,-0.050265733152628,-0.020809706300497]],[[-0.11545515805483,-0.029058232903481,0.0096217021346092],[-0.0019494910957292,-0.089024744927883,-0.06159333139658],[0.053232084959745,-0.053007170557976,-0.010084231384099]]],[[[0.018666360527277,-0.095780789852142,-0.070602022111416],[0.074214302003384,0.061515428125858,0.10309611260891],[-0.028360582888126,-0.042020179331303,0.02429880015552]],[[-0.13984689116478,-0.10927677899599,-0.01199109479785],[0.084925606846809,0.0097535075619817,0.019121935591102],[0.015717821195722,0.072934679687023,0.072234869003296]],[[-0.015496483072639,-0.034264340996742,-0.074085474014282],[0.023913623765111,-0.10144042223692,0.098821975290775],[-0.035033099353313,-0.026877988129854,-0.0122782420367]],[[-0.048073351383209,0.089955389499664,0.095072403550148],[-0.051111739128828,0.0014423879329115,-0.0085128713399172],[-0.052875846624374,-0.094317629933357,-0.088305525481701]],[[0.1501470208168,0.0091777732595801,-0.047058418393135],[0.033876236528158,-0.033513318747282,-0.0010187963489443],[0.050413772463799,0.059300385415554,-0.043186005204916]],[[-0.0010247532045469,0.026686981320381,0.036397706717253],[-0.04334968701005,-0.02256691083312,0.03791207075119],[-0.0043025696650147,-0.059496499598026,-0.13503152132034]],[[-0.042649783194065,-0.058480191975832,-0.056315258145332],[0.012921259738505,0.0031331451609731,-0.025095470249653],[-0.077293924987316,-0.024217747151852,0.035878513008356]],[[-0.024785563349724,0.093659847974777,0.16661557555199],[0.042914170771837,-0.10055951029062,-0.088348180055618],[0.0086885122582316,0.097349360585213,-0.0086058126762509]],[[-0.072110511362553,0.035032466053963,0.0092479540035129],[-0.042465720325708,-0.058961402624846,0.00022267377062235],[0.028043737635016,-0.098800763487816,-0.034751903265715]],[[-0.076939113438129,-0.045730225741863,-0.034365128725767],[0.013236314058304,0.0096266902983189,-0.0080546112731099],[0.030383635312319,0.028299549594522,0.045826014131308]],[[0.026925651356578,-0.048893019556999,-0.055509269237518],[0.087056830525398,0.036166120320559,-0.057457555085421],[-0.048713702708483,-0.025259457528591,-0.093654312193394]],[[0.077598616480827,-0.183878287673,-0.12725582718849],[0.0096649760380387,0.06844462454319,0.032654713839293],[-0.11551530659199,-0.017135126516223,-0.014944776892662]],[[0.030002200976014,0.020626442506909,-0.031066892668605],[0.061264492571354,0.045794531702995,-0.036569885909557],[-0.010472067631781,0.023973420262337,0.026603711768985]],[[0.061883728951216,-0.0034960226621479,-0.081796921789646],[-0.00047297932906076,0.073387689888477,0.045052617788315],[-0.058269169181585,-0.0050120339728892,-0.010165118612349]],[[-0.13404023647308,-0.03922500833869,-0.078295722603798],[0.056476809084415,-0.055453568696976,-0.090517230331898],[-0.0038306398782879,0.0035945859272033,-0.024172129109502]],[[0.02640144713223,-0.0070723984390497,-0.0049975523725152],[0.0096148140728474,0.018984654918313,-0.024403184652328],[-0.090302743017673,-0.090983830392361,-0.044875752180815]],[[0.048935774713755,-0.024061881005764,-0.00092983554350212],[0.060167454183102,0.041525315493345,-0.013429361395538],[0.081534594297409,0.051179129630327,-0.079326510429382]],[[0.06954237818718,0.034582901746035,-0.050697334110737],[0.012261957861483,-0.029637282714248,0.02374448813498],[-0.090216681361198,-0.053226567804813,-0.084686294198036]],[[-0.0033684188965708,0.092352949082851,0.089716404676437],[-0.044882163405418,-0.0767462849617,0.096194840967655],[0.063992097973824,-0.035641003400087,0.0039540156722069]],[[-0.00052139075705782,0.016259064897895,-0.057731576263905],[-0.0024540130980313,0.001194084296003,0.023709462955594],[0.01407440751791,0.014819342643023,-0.033630229532719]],[[0.0022498359903693,-0.063940905034542,-0.058917928487062],[0.030884817242622,0.10250260680914,0.039628438651562],[-0.035061933100224,-0.11892818659544,0.0025015324354172]],[[0.076870530843735,-0.05351784080267,0.075830034911633],[-0.05201119557023,-0.093286342918873,-0.16642735898495],[-0.0034953923895955,-0.025909440591931,0.039177108556032]],[[0.014143477194011,0.068137049674988,-0.021782223135233],[-0.089476250112057,-0.033370312303305,-0.028835402801633],[-0.042337518185377,-0.083608701825142,-0.044650852680206]],[[0.15823975205421,0.051535416394472,0.03749692440033],[0.091224193572998,-0.0031858345028013,-0.086598098278046],[-0.02982135862112,0.015068630687892,0.067480616271496]],[[-0.013000218197703,0.0084515558555722,0.04790049046278],[-0.069536656141281,-0.080408051609993,-0.037179958075285],[0.065346263349056,0.14196108281612,-0.015081893652678]],[[0.041519433259964,0.044189155101776,-0.013696421869099],[0.026966765522957,-0.012662924826145,0.047692362219095],[-0.0068788006901741,0.0015533256810158,0.0044138124212623]],[[0.0022962635848671,-0.063937410712242,-0.15059009194374],[0.0046188621781766,-0.082123413681984,-0.039942156523466],[0.11120640486479,-0.01947052963078,0.045520927757025]],[[-0.11921881884336,0.0029743518680334,0.17645931243896],[0.015397256240249,-0.014296635054052,-0.055443529039621],[0.031512498855591,0.068948447704315,0.076212711632252]],[[0.051995899528265,-0.022672249004245,-0.058764357119799],[0.04505705088377,-0.00036414168425836,-0.032507609575987],[-0.02478894405067,0.018703380599618,0.093854561448097]],[[0.017556045204401,0.012758079916239,-0.027137031778693],[0.017845692113042,0.01106083765626,-0.058472953736782],[-0.0079756304621696,-0.02400185726583,-0.022455003112555]],[[0.0045486418530345,0.064187735319138,-0.041939228773117],[-0.017733851447701,-0.011422314681113,-0.089064434170723],[0.04166417568922,-0.0042618508450687,0.066291525959969]],[[0.026736781001091,-0.00057572079822421,-0.034853063523769],[0.010416590608656,0.038223884999752,-0.04733819514513],[-0.030983157455921,0.030381241813302,0.010660166852176]],[[-0.060980129987001,-0.098680272698402,-0.0043231197632849],[0.032066144049168,0.0057116192765534,-0.071293532848358],[-0.07552183419466,0.031941100955009,-0.13664844632149]],[[0.03601148724556,-0.12554681301117,-0.0048029171302915],[-0.023310022428632,0.015834674239159,-0.065908923745155],[-0.15931066870689,0.041254345327616,-0.025964558124542]],[[-0.20060557126999,-0.094360686838627,0.062695041298866],[-0.063761942088604,0.024911537766457,-0.047392245382071],[0.023579869419336,-0.074893191456795,0.024317191913724]],[[-0.030860017985106,0.028595549985766,0.052356023341417],[0.036574766039848,-0.016559304669499,-0.073256149888039],[-0.063441306352615,0.013078276067972,0.12541541457176]],[[-0.048690915107727,-0.027644287794828,-0.037024199962616],[0.00091181485913694,0.039271008223295,0.038761261850595],[-0.04400933906436,-0.046775974333286,-0.013597073033452]],[[-0.07053004950285,-0.085863813757896,-0.12691740691662],[-0.14224919676781,0.071808874607086,0.0068596662022173],[-0.056432154029608,-0.05928161367774,0.037550769746304]],[[-0.20429638028145,-0.072475329041481,0.0047443620860577],[-0.005146105773747,-0.049527272582054,-0.034499485045671],[-0.0089963963255286,-0.034074161201715,0.16022700071335]],[[-0.031958419829607,-0.17179058492184,-0.028666019439697],[0.070425674319267,0.019321762025356,-0.070692911744118],[-0.046374309808016,-0.055873341858387,-0.10686679184437]],[[-0.068399764597416,-0.0099202003329992,0.050359793007374],[-0.030068572610617,0.070268228650093,-0.049331270158291],[-0.031345836818218,-0.087137408554554,-0.022251300513744]],[[-0.051035422831774,-0.0036698980256915,0.14291653037071],[-0.016467910259962,-0.01943732239306,-0.025187201797962],[-0.016639534384012,0.012570600956678,0.07345674932003]],[[0.019579842686653,0.056589931249619,0.051480315625668],[-0.080480515956879,0.012792465277016,-0.14592261612415],[-0.077425368130207,0.051407564431429,-0.064362421631813]],[[-0.055538687855005,-0.04351082444191,0.022264555096626],[-0.078500814735889,-0.039262019097805,-0.057314027100801],[-0.028091717511415,-0.11916322261095,-0.12952315807343]],[[0.040140140801668,0.020025575533509,-0.0089245159178972],[-0.03335078433156,-0.033428721129894,-0.0055612102150917],[-0.063696101307869,0.0018370440229774,-0.12281798571348]],[[-0.10095044970512,-0.00021602118795272,0.016194356605411],[-0.067814268171787,-0.02294035628438,0.041958961635828],[-0.027323739603162,0.050440944731236,0.13160218298435]],[[-0.043333314359188,-0.065804876387119,0.077308140695095],[-0.065597631037235,0.05805117636919,0.093133665621281],[-0.064586520195007,-0.10403168201447,-0.066505409777164]],[[-0.019657338038087,0.0816405788064,0.0073652751743793],[-0.020085940137506,-0.026271721348166,0.019309584051371],[-0.01440220233053,-0.020339049398899,0.072820097208023]],[[-0.082795940339565,-0.01008446700871,-0.083604656159878],[0.088334523141384,-0.12106055021286,-0.1138416826725],[-0.032042179256678,0.093509539961815,0.016212448477745]],[[0.015479465946555,0.072962775826454,0.019969955086708],[-0.092178106307983,-0.24804504215717,0.097337871789932],[0.096806906163692,-0.1319042891264,-0.096106298267841]],[[-0.060309465974569,-0.067995361983776,-0.0053885523229837],[-0.10227839648724,0.070610150694847,0.0016720815328881],[0.13404826819897,0.044877752661705,0.032269157469273]],[[-0.083421155810356,0.1822282075882,0.19142343103886],[-0.0050995848141611,-0.040101356804371,0.020748440176249],[-0.021873919293284,-0.015907771885395,0.0056922566145658]],[[-0.054535489529371,0.038652706891298,0.11212337762117],[-0.069295197725296,0.011571666225791,0.040375623852015],[-0.078892171382904,0.0075130248442292,0.063861325383186]],[[0.024460172280669,0.0094000482931733,-0.13605844974518],[-0.0027139463927597,0.029100609943271,0.12992407381535],[0.046357486397028,-0.045830756425858,-0.067260935902596]],[[0.029055457562208,0.11354628950357,-0.019153714179993],[-0.054061856120825,-0.046490497887135,0.076267726719379],[0.034981649369001,-0.10608563572168,-0.13630989193916]],[[-0.0079211443662643,-0.098072193562984,-0.051023937761784],[0.03999862074852,0.065134547650814,-0.011072353459895],[-0.011425475589931,0.016007490456104,0.0063869841396809]],[[-0.006147698033601,0.062119100242853,0.042825676500797],[-0.05848852545023,-0.12872059643269,0.068640805780888],[0.025973936542869,0.018268201500177,-0.12918210029602]],[[-0.048267632722855,0.028392834588885,-0.11103467643261],[-0.068666152656078,-0.057556606829166,-0.014410089701414],[-0.04303889721632,-0.040136341005564,-0.063812740147114]],[[0.029198775067925,-0.042046375572681,0.053028743714094],[0.035241037607193,-0.036436036229134,0.068736203014851],[0.045578494668007,-0.060269489884377,-0.079036138951778]],[[0.067499458789825,0.024867482483387,-0.013028549030423],[-0.044461369514465,-0.054623063653708,0.004712728317827],[0.0085680419579148,0.00050652783829719,-0.012875175103545]],[[-0.030221711844206,0.031761515885592,-0.065349705517292],[0.040972787886858,-0.1644671857357,-0.078409597277641],[-0.006893549580127,0.10694945603609,-0.090765565633774]],[[-0.020342970266938,-0.039638333022594,0.063930027186871],[0.03986794129014,-0.091346114873886,-0.052156768739223],[0.033725306391716,0.036400366574526,-0.052068505436182]],[[-0.03782445192337,-0.077943250536919,-0.10207285732031],[0.050349537283182,0.054743196815252,-0.0065141026861966],[-0.097049251198769,-0.0028454184066504,-0.041166204959154]],[[-0.04711552336812,-0.14216500520706,0.032830968499184],[0.072134032845497,-0.014261047355831,-0.14475029706955],[-0.10743293166161,0.025846587494016,0.05457191541791]]],[[[0.063624911010265,0.0057352012954652,0.063533507287502],[-0.07138429582119,0.050505567342043,-0.0063942181877792],[-0.071702994406223,-0.0010768348583952,0.054308399558067]],[[0.027791766449809,-0.0048485524021089,-0.040924094617367],[-0.0042138956487179,-0.034338045865297,0.035494111478329],[-0.022137498483062,0.033920977264643,0.041527066379786]],[[0.016130214557052,0.020113768056035,0.039144281297922],[0.060025911778212,0.00070678733754903,-0.011856002733111],[-0.13739731907845,-0.063140124082565,-0.14806884527206]],[[0.004579103551805,0.018961707130075,0.041394770145416],[0.017042573541403,-0.00066173356026411,-0.059871125966311],[0.054734982550144,0.021389884874225,0.037338059395552]],[[-0.046525102108717,0.074730910360813,0.081289447844028],[0.0044530145823956,-0.053450953215361,0.063439033925533],[0.071763500571251,0.095871865749359,6.0569214838324e-05]],[[0.076337859034538,0.014140981249511,-0.099364846944809],[0.040027588605881,-0.040327027440071,-0.053462397307158],[0.051631439477205,0.04498466104269,-0.10510041564703]],[[0.02571165561676,0.021122192963958,0.01850806362927],[0.023515673354268,-0.042982932180166,-0.056740995496511],[-0.01264735031873,0.026035524904728,-0.069301426410675]],[[-0.04848276078701,-0.028060330078006,-0.017827332019806],[0.033102031797171,0.010953271761537,0.0274562779814],[0.01999176479876,0.010765801183879,-0.023929692804813]],[[-0.0057770414277911,0.012001952156425,-0.015708511695266],[0.034445781260729,0.0068352078087628,0.024248788133264],[-0.0707638412714,0.053525742143393,-0.0069605871103704]],[[0.077743850648403,-0.041845191270113,0.019788166508079],[-0.06952428072691,0.037223249673843,-0.0025353610981256],[-0.0016782452585176,-0.0099439304322004,-0.0034755296073854]],[[0.0091229313984513,-0.044880211353302,0.029020121321082],[0.0074127628467977,-0.013794052414596,0.045157484710217],[0.017489733174443,-0.018617296591401,0.0028601209633052]],[[0.020548924803734,0.013245231471956,0.031397614628077],[0.0098880920559168,-0.020429626107216,0.014173079282045],[0.081241883337498,-0.053349833935499,0.019042380154133]],[[0.13411298394203,-0.073638908565044,-0.047580551356077],[0.010646870359778,-0.043587692081928,0.084221728146076],[-0.056852001696825,-0.026957999914885,0.0091164484620094]],[[0.0069712526164949,0.0008304207585752,0.07796635478735],[-0.026334973052144,0.0061075817793608,0.0070594572462142],[-0.0036967881023884,0.01142814476043,-0.071392580866814]],[[0.0044524101540446,-0.083355471491814,-0.060649927705526],[-0.03563104569912,-0.078085973858833,0.041866850107908],[0.10040757805109,-0.057865638285875,-0.046635571867228]],[[0.076746113598347,0.068141430616379,0.066063158214092],[-0.024477921426296,-0.067585647106171,-0.025812948122621],[-0.057336922734976,0.037113346159458,-0.0017706948565319]],[[0.089989669620991,0.064263597130775,-0.075911104679108],[-0.041903011500835,0.0064303698018193,-0.0032023652456701],[0.039460334926844,-0.012510108761489,-0.025942783802748]],[[0.042879149317741,0.076721288263798,0.012064858339727],[0.017516123130918,0.12075758725405,-0.040838021785021],[-0.11440254747868,0.047078151255846,0.046814940869808]],[[0.058541238307953,0.029596205800772,-0.038716930896044],[-0.032365806400776,-0.013576354831457,0.0097249550744891],[0.026226943358779,0.066171497106552,0.059743292629719]],[[-0.01734672114253,0.027479248121381,-0.01663844846189],[0.024598861113191,0.0012478425633162,0.023776711896062],[0.012693907134235,-0.020198784768581,0.028752533718944]],[[-0.021494571119547,-0.0074105081148446,0.01008461881429],[-0.010750290937722,0.049003388732672,0.0080144628882408],[-0.01209731772542,-0.072105534374714,-0.18291254341602]],[[0.012509223073721,0.15821148455143,-0.088828220963478],[-0.055484730750322,0.038137558847666,-0.090840831398964],[0.033664118498564,-0.022514404729009,-0.067172788083553]],[[-0.029298273846507,-0.02100364677608,-0.086407646536827],[0.083529911935329,-0.12251802533865,-0.062309522181749],[-0.051551096141338,0.032137844711542,0.061085809022188]],[[0.082716234028339,0.046896278858185,0.11064606159925],[-0.023244168609381,0.0064838244579732,-0.0069982926361263],[-0.054404720664024,0.039891641587019,0.089013777673244]],[[-0.0080700889229774,-0.01610572449863,-0.031283527612686],[0.005657262634486,0.033527530729771,-0.047150991857052],[-0.028650738298893,-0.022892074659467,-0.014815281145275]],[[0.013639493845403,-0.010606054216623,0.044506631791592],[-0.032137203961611,0.047032322734594,0.041040021926165],[0.060956340283155,0.063730776309967,-0.014779815450311]],[[-0.029686262831092,0.019854933023453,-0.072911635041237],[0.037954207509756,0.065620012581348,0.020563062280416],[0.086186856031418,-0.03212608769536,-0.028990572318435]],[[0.10782628506422,-0.067859970033169,-0.063464798033237],[-0.0069798859767616,-0.045518215745687,-0.011459748260677],[-0.049149136990309,0.060290884226561,-0.061968568712473]],[[0.026824753731489,0.046738840639591,0.030169548466802],[0.027427040040493,-0.051057826727629,-0.060050752013922],[-0.0024516179692,-0.051713675260544,0.080566480755806]],[[0.073536217212677,0.068436205387115,-0.060753643512726],[0.0012947276700288,0.020131343975663,-0.012841227464378],[0.056548595428467,0.039833672344685,-0.091386772692204]],[[-0.023997690528631,0.053963739424944,-0.061962213367224],[0.033208623528481,0.024289518594742,0.098115026950836],[0.039106465876102,-0.00047575958888046,-0.14222687482834]],[[0.048966430127621,0.10110173374414,0.022399991750717],[-0.043939385563135,0.013544126413763,0.04326294362545],[-0.067007474601269,-0.065349519252777,0.0097428988665342]],[[0.00081063713878393,0.042158950120211,-0.0072687622159719],[-0.007281937636435,-0.0065074469894171,-0.014825508929789],[0.0024216156452894,-0.033717595040798,-0.0039596054702997]],[[0.040861770510674,0.075986936688423,0.098696403205395],[-0.018752744421363,0.074751190841198,0.097440384328365],[-0.1268974840641,-0.13970430195332,-0.10980298370123]],[[0.084191933274269,-8.2830883911811e-05,-0.021622784435749],[0.031803674995899,0.040693908929825,-0.0016727606998757],[-0.017695542424917,0.026926480233669,-0.070040382444859]],[[-0.05818334966898,-0.17317418754101,0.010540432296693],[-0.022063445299864,-0.066586315631866,-0.0083824172616005],[-0.033335134387016,-0.07463788241148,0.034203466027975]],[[-0.046662196516991,-0.036213096231222,-0.063162811100483],[-0.0031688446179032,0.027016639709473,0.021411277353764],[0.0048147751949728,0.00023058010265231,0.069925151765347]],[[0.028767617419362,0.058494109660387,-0.02561123482883],[0.092543624341488,0.03297021612525,0.037086732685566],[0.044599093496799,-0.026969680562615,0.01104757655412]],[[-0.38632890582085,-0.13124105334282,-0.025316465646029],[-0.041771035641432,-0.051920924335718,0.0099978419020772],[-0.012502875179052,0.037746034562588,-0.024269374087453]],[[-0.036024570465088,0.080444157123566,-0.047038905322552],[-0.036987703293562,0.074123553931713,0.029220411553979],[0.012224983423948,0.035538926720619,-0.067245408892632]],[[-0.004971971269697,0.012649076990783,0.025419164448977],[0.029321683570743,-0.057280641049147,0.010271064005792],[0.013893436640501,0.0020975845400244,0.056032408028841]],[[-0.058448016643524,0.083770222961903,-0.075281761586666],[-0.057739812880754,-0.065149031579494,-0.0077007384970784],[0.037444893270731,-0.14117500185966,-0.054155290126801]],[[0.026991600170732,0.010291771963239,-0.022011822089553],[0.0019756320398301,0.045404631644487,0.034525524824858],[0.026927759870887,-0.031463637948036,-0.019696999341249]],[[-0.041769072413445,0.024297149851918,0.03194211050868],[0.020655358210206,-0.055218752473593,0.010711348615587],[0.10534264147282,-0.027383415028453,-0.062206082046032]],[[0.053203649818897,-0.095848709344864,0.0215376727283],[0.095740176737309,-0.057306218892336,-0.10975300520658],[0.05420183762908,-0.021823789924383,-0.017532663419843]],[[-0.084895394742489,-0.061458840966225,0.038228958845139],[-0.075300499796867,-0.030476866289973,0.0054716123268008],[0.0078957676887512,0.062699817121029,0.036610726267099]],[[-0.024425750598311,-0.047609455883503,0.011566241271794],[-0.052650734782219,-0.033590164035559,-0.032680045813322],[-0.045904606580734,0.031029326841235,-0.064436562359333]],[[0.022813560441136,-0.032100863754749,0.042629733681679],[-0.03042603097856,0.069431491196156,-0.17567986249924],[0.0066176610998809,0.041077129542828,0.14575463533401]],[[0.057646997272968,0.0027707561384887,-0.064751379191875],[-0.0019916836172342,-0.043808288872242,0.06782640516758],[-0.10349081456661,-0.011291231960058,0.11227373033762]],[[0.056764710694551,0.017838856205344,0.034088995307684],[-0.017912482842803,0.060232352465391,0.028741447255015],[0.0010733181843534,0.024906177073717,0.04010771214962]],[[0.057817883789539,-0.053312920033932,-0.019700270146132],[0.0047557246871293,-0.042909756302834,-0.011900435201824],[0.01756838336587,-0.0057752062566578,-0.019721144810319]],[[0.12510699033737,0.16169311106205,-0.080458298325539],[-0.031249113380909,0.056510403752327,0.083322808146477],[-0.034013524651527,0.090162314474583,0.0030515168327838]],[[-0.16173158586025,-0.015738438814878,0.021758608520031],[0.0091316988691688,-0.0773870870471,0.017601493746042],[-0.063447378575802,-0.037463944405317,0.084845252335072]],[[0.030180692672729,-0.11169807612896,-0.063183285295963],[0.0011598975397646,0.0037629683502018,0.081477701663971],[0.079353585839272,0.0064330720342696,-0.042031977325678]],[[-0.097786761820316,0.0014445142587647,-0.0032534145284444],[-0.027158223092556,-0.002443109638989,0.053662002086639],[-0.042870111763477,0.042489897459745,-0.08152736723423]],[[-0.016814064234495,0.024340778589249,-0.00660764798522],[0.062798246741295,0.020903006196022,-0.016514966264367],[-0.042124710977077,-0.0016081576468423,0.077396593987942]],[[0.040306024253368,-0.0024075233377516,0.071359246969223],[-0.047360435128212,-0.045723758637905,-0.037620771676302],[-0.017583053559065,-0.06914260238409,0.020220715552568]],[[0.01497610937804,-0.037720613181591,-0.05185079574585],[0.039041988551617,-0.021753722801805,-0.073860585689545],[0.011552074924111,0.0067483219318092,-0.050704635679722]],[[-0.0035815734881908,0.067810900509357,0.039423156529665],[0.015253967605531,0.11370275169611,0.035301525145769],[0.0075637837871909,-0.038376774638891,0.083516724407673]],[[-0.0035212051589042,-0.0069158095866442,0.013142147101462],[0.062989719212055,-0.013826521113515,0.04115666821599],[-0.0027559346053749,-0.0051437993533909,-0.059495817869902]],[[0.0079050790518522,-0.021447759121656,0.10502928495407],[-0.079578094184399,-0.018350062891841,-0.014930752106011],[-0.058241277933121,-0.034933410584927,-0.054148815572262]],[[0.064337663352489,0.013027066364884,-0.035912331193686],[0.054643206298351,0.088388428092003,0.087977081537247],[-0.035707782953978,-0.081096701323986,0.032287202775478]],[[0.049117755144835,-0.0093393670395017,0.053446337580681],[0.0005870767054148,0.059533573687077,0.0336660631001],[0.013305872678757,-0.026577858254313,-0.023032495751977]],[[0.01507219299674,0.030953923240304,-0.095808625221252],[0.02851839363575,-0.007907597348094,0.021696902811527],[0.053905460983515,-0.022003147751093,0.011265128850937]]],[[[-0.032959092408419,-0.019366545602679,0.051292970776558],[0.057231709361076,-0.095999494194984,-0.013101347722113],[-0.0077994777821004,0.047808185219765,-0.014929249882698]],[[0.016998963430524,0.020077561959624,-0.0016566448612139],[-0.012648869305849,-0.093022562563419,-0.0087154246866703],[-0.04977510124445,-0.09799961745739,-0.049159750342369]],[[-0.012787814252079,-0.023321913555264,-0.091328285634518],[-0.065300941467285,-0.00061754870694131,-0.040903944522142],[-0.037394538521767,-0.076856829226017,-0.099302791059017]],[[0.0068419598974288,-0.067873477935791,-0.11381839215755],[-0.071492493152618,-0.10808666795492,-0.014908313751221],[0.019426580518484,0.021853858605027,-0.047005232423544]],[[-0.0090757925063372,0.060050904750824,0.041293904185295],[-0.018765198066831,-0.087308503687382,-0.14819265902042],[0.0028931596316397,-0.06315066665411,0.070253916084766]],[[-0.046877659857273,-0.059102717787027,0.027498506009579],[0.042208164930344,0.024934412911534,0.00024189107352868],[0.021500235423446,0.0050322697497904,-0.089943654835224]],[[-0.11204367876053,-0.079314351081848,-0.013408465310931],[-0.040949180722237,-0.083641044795513,-0.058722823858261],[-0.070724539458752,-0.10818596184254,-0.0065157096832991]],[[-0.052591070532799,0.038409851491451,-0.017794940620661],[-0.049104794859886,0.024522121995687,0.0047064176760614],[-0.0061064762994647,0.013639985583723,0.013108979910612]],[[0.018011348322034,-0.011131711304188,-0.042543582618237],[-0.01860841549933,-0.042579662054777,0.092260755598545],[-0.087929077446461,-0.041121829301119,0.082718625664711]],[[-0.01759434491396,0.024083990603685,0.016409132629633],[-0.1395687609911,-0.099006086587906,0.09115593880415],[0.07893218845129,-0.10429177433252,-0.051151268184185]],[[-0.096391834318638,-0.00075889710569754,0.071708641946316],[0.11221577972174,-0.064287856221199,-0.039974771440029],[-0.029515085741878,-0.03893119841814,0.037249524146318]],[[-0.080441288650036,-0.02911763265729,0.01549138687551],[-0.0037711660843343,0.036308497190475,-0.056406557559967],[-0.0045539997518063,-0.1735915094614,-0.029492119327188]],[[-0.0051020253449678,0.0059491894207895,0.0073035005480051],[-0.014242421835661,-0.033431511372328,0.06478913128376],[-0.021315479651093,-0.0029245500918478,0.024479610845447]],[[0.081790298223495,-0.060789782553911,-0.042778052389622],[-0.068793073296547,0.018563728779554,0.066163897514343],[0.08842670917511,-0.042026583105326,-0.031109968200326]],[[0.057788997888565,0.0021736056078225,-0.088133692741394],[-0.078679136931896,-0.0089137041941285,-0.014849078841507],[-0.023765802383423,0.099359624087811,-0.15625923871994]],[[-0.072259396314621,-0.0015146078076214,0.20165970921516],[-0.057793296873569,-0.032244939357042,-0.10061008483171],[-0.0032882743980736,-0.039525471627712,-0.106520652771]],[[0.02481977455318,-0.086801826953888,-0.050971586257219],[-0.10793553292751,-0.12408375740051,0.012698185630143],[0.032239332795143,0.064313836395741,-0.12039817869663]],[[-0.04774484783411,-0.06707426160574,0.056826245039701],[-0.015450832433999,0.019653122872114,-0.15337659418583],[-0.10715284943581,-0.073929727077484,0.077717497944832]],[[-0.10191322863102,0.005076561588794,-0.11504370719194],[0.038072425872087,0.056841053068638,-0.16133306920528],[0.028646869584918,-0.062302123755217,-0.018472917377949]],[[0.070111766457558,0.050802379846573,0.047648407518864],[0.008461095392704,-0.060878779739141,-0.039339769631624],[-0.018893048167229,-0.025518169626594,-0.0083564408123493]],[[-0.017678657546639,-0.011819664388895,-0.0064611071720719],[0.036824457347393,-0.011081414297223,-0.047504477202892],[-0.03907511010766,-0.028928928077221,-0.0026022454258054]],[[0.031174525618553,-0.074289724230766,0.13689260184765],[-0.073430314660072,0.092581495642662,-0.0026826148387045],[-0.099976159632206,-0.054915357381105,-0.0021697147749364]],[[0.016348097473383,-0.047901261597872,-0.025999996811152],[0.08163683116436,-0.026490796357393,-1.9797751519945e-05],[-0.02871392481029,-0.056541278958321,-0.16474252939224]],[[0.020407279953361,0.05661004409194,0.013963911682367],[0.05336869135499,0.011567475274205,-0.001978013664484],[-0.02736540324986,0.069448538124561,0.10731976479292]],[[0.081544823944569,-0.050064288079739,0.10367242991924],[-0.13420407474041,0.062276352196932,-0.032000340521336],[0.017846724018455,-0.099167577922344,0.0082557862624526]],[[0.036981593817472,0.0081058871001005,0.042609374970198],[0.13458612561226,-0.080941446125507,0.026687892153859],[0.0022859135642648,-0.01410124823451,-9.4751914730296e-05]],[[-0.21479918062687,-0.13287913799286,-0.078702963888645],[0.022076999768615,0.12936265766621,-0.01984616369009],[-0.028676422312856,-0.15932950377464,0.15166753530502]],[[0.037621736526489,-0.014933352358639,0.041653122752905],[-0.014010114595294,0.0027262773364782,-0.0062287501059473],[0.03570131957531,-0.026441346853971,-0.031766183674335]],[[-0.066535256803036,-0.0032152170315385,0.04743978753686],[0.01692738942802,0.062267389148474,-0.075858674943447],[0.011231563054025,0.054424714297056,0.019309278577566]],[[-0.086657419800758,-0.1440789103508,-0.06309112906456],[-0.017152553424239,-0.080483511090279,0.020334221422672],[-0.12392009049654,-0.058984436094761,-0.013621143996716]],[[-0.044539220631123,-0.034343559294939,-0.049239736050367],[0.034106876701117,0.12843526899815,-0.084701843559742],[0.092073522508144,-0.063900679349899,0.086698614060879]],[[0.097158513963223,0.099113330245018,-0.11138206720352],[-0.039059486240149,-0.12989228963852,-0.027492716908455],[0.092564769089222,-0.05393324047327,-0.031894125044346]],[[-0.047330778092146,-0.022005904465914,-0.024459118023515],[-0.0016229203902185,-0.041596859693527,-0.023463340476155],[-0.037195883691311,-0.082552075386047,0.043357886373997]],[[-0.11693236231804,0.13091792166233,-0.096271991729736],[0.023634139448404,-0.075529031455517,0.10628038644791],[-0.0029033480677754,-0.015639290213585,-0.22853146493435]],[[-0.01628808863461,0.078675173223019,0.0063193305395544],[0.076396748423576,0.0033399395179003,-0.0096388459205627],[0.05140608176589,-0.022309711202979,-0.018849613144994]],[[0.040703758597374,-0.033621206879616,-0.053111452609301],[0.0053808423690498,-0.0081744939088821,-0.063807912170887],[0.037679955363274,-0.06562864780426,0.0082080336287618]],[[-0.082239829003811,0.033513735979795,0.059595197439194],[-0.058234259486198,0.065102517604828,-0.077208161354065],[-0.14238865673542,0.064005941152573,0.091544434428215]],[[0.060513488948345,-0.050834212452173,-0.00018394576909486],[-0.057063478976488,-0.039263110607862,0.021663362160325],[0.024908600375056,-0.10817206650972,-0.049076516181231]],[[-0.040396016091108,0.088071241974831,-0.039765436202288],[0.030201090499759,0.008180727250874,0.012113029137254],[-0.0050295391120017,-0.072058916091919,-0.037369422614574]],[[0.027693847194314,-0.011343255639076,-0.099230140447617],[-0.019095581024885,0.026948880404234,0.021887520328164],[-0.0029371057171375,0.027564596384764,0.064378716051579]],[[-0.14348843693733,0.055569790303707,-0.0030910763889551],[-0.10477679222822,-0.056353107094765,-0.014124500565231],[0.0073957140557468,-0.060399640351534,0.0073684910312295]],[[-0.056784968823195,-0.035859957337379,-0.068877354264259],[-0.047804106026888,-0.078010000288486,0.09621374309063],[0.13902509212494,0.0121536469087,0.020877748727798]],[[0.047962862998247,-0.085189655423164,0.10884015262127],[0.097868718206882,-0.057447850704193,-0.075907774269581],[-0.015678597614169,0.082751892507076,-0.10388926416636]],[[-0.048940245062113,-0.020906755700707,0.059793990105391],[0.084490872919559,-0.01166271045804,-0.10610968619585],[0.0011494578793645,0.0052123633213341,0.033893305808306]],[[-0.13792014122009,0.024812065064907,-0.004772384185344],[0.0037603403907269,0.004649568349123,-0.051422040909529],[-0.080772757530212,-0.035421796143055,0.031178254634142]],[[0.14271427690983,-0.13419246673584,0.01462157163769],[-0.081745594739914,0.0013643902493641,0.0124466503039],[0.027468444779515,0.0062393676489592,-0.083089418709278]],[[-0.055429894477129,0.10147103667259,0.0062005631625652],[0.0061635291203856,-0.075013145804405,-0.045445807278156],[0.014348367229104,0.0047086072154343,0.1327403485775]],[[-0.060101732611656,-0.037430547177792,0.070879526436329],[0.0016343232709914,0.0084657100960612,-0.14935207366943],[0.055351495742798,-0.051824897527695,0.0072617069818079]],[[-0.10937617719173,-0.018611775711179,0.095146358013153],[0.11905620992184,0.020840026438236,-0.12763769924641],[0.00093749893130735,0.096098408102989,-0.11940672248602]],[[0.021672196686268,0.037124138325453,-0.0041277352720499],[-0.022721771150827,-0.020618468523026,-0.11906763166189],[-0.033689327538013,0.038485165685415,0.016059143468738]],[[0.0014732378767803,-0.1036022529006,-0.071409530937672],[-0.10031341761351,0.10895542800426,0.032403450459242],[0.11216684430838,-0.037165351212025,-0.081687718629837]],[[0.051687464118004,0.017234586179256,0.10698879510164],[-0.0089477645233274,0.012254574336112,0.01893387362361],[-0.021933590993285,0.093164846301079,-0.016992472112179]],[[0.014841470867395,-0.1723296046257,-0.0063990531489253],[0.025115046650171,-0.051140338182449,0.070007048547268],[-0.02246761135757,-0.0028203583788127,-0.092566341161728]],[[0.0084908651188016,-0.021572232246399,-0.088025204837322],[0.047713678330183,0.096224665641785,0.035086929798126],[-0.044785026460886,-0.12142890691757,0.068657837808132]],[[0.033443063497543,-0.082947969436646,0.036414481699467],[0.053523279726505,-0.11746346950531,0.020806968212128],[-0.016933472827077,-0.040327463299036,0.01639212667942]],[[-0.14810562133789,0.05931494012475,0.022226227447391],[0.0055326363071799,0.0099516361951828,-0.04853743314743],[0.020027089864016,0.0092010712251067,0.046464443206787]],[[0.039966449141502,0.066034495830536,-0.0065407613292336],[-0.11885089427233,-0.017802000045776,-0.044023375958204],[-0.058337759226561,0.00028995677712373,0.085307627916336]],[[0.039814230054617,-0.06458056718111,-0.037138063460588],[-0.066057167947292,0.0093982219696045,0.031370759010315],[-0.0036095646210015,-0.0949562266469,0.039866451174021]],[[-0.13508039712906,0.064641915261745,0.10400421917439],[0.034323573112488,-0.02371639944613,-0.00099113071337342],[0.0061688544228673,0.13750168681145,0.15361547470093]],[[-0.032114963978529,-0.050122663378716,-0.016794227063656],[-0.017895936965942,0.053088258951902,0.039785776287317],[0.038950733840466,-0.026153605431318,0.025207648053765]],[[0.071853093802929,-0.078482486307621,-0.048779744654894],[-0.017876129597425,0.063221037387848,-0.035046551376581],[0.0075102192349732,-0.005754241719842,-0.11036937683821]],[[0.096457347273827,-0.041442733258009,0.029982278123498],[0.031943716108799,-0.10438147187233,0.016290038824081],[0.053400237113237,-0.014570662751794,-0.016846174374223]],[[0.040924284607172,-0.087930798530579,-0.072871275246143],[-0.026331786066294,-0.059376332908869,0.087333299219608],[0.00058663304662332,-0.059079371392727,-0.11371125280857]],[[0.080095492303371,-0.064882770180702,0.058452811092138],[0.019746698439121,-0.090191222727299,0.022305026650429],[-0.0060428776778281,-0.0035202910657972,0.048643838614225]]],[[[-0.05497332662344,-0.01368818897754,0.0043809772469103],[0.036304920911789,0.032790511846542,-0.0063143032602966],[-0.01934858597815,-0.029372846707702,0.088906839489937]],[[0.079657636582851,0.003748603630811,-0.089442804455757],[-0.11619447916746,-0.09209506213665,0.019263064488769],[-0.004499732516706,-0.036542739719152,-0.018788605928421]],[[-0.082382552325726,-0.039264194667339,0.0020544407889247],[-0.046667397022247,-0.051143363118172,0.088883496820927],[0.0059216585941613,-0.056241929531097,0.024978425353765]],[[-0.0053150006569922,0.013150815851986,-0.062149282544851],[0.017069535329938,0.068972766399384,0.015253711491823],[0.033991441130638,0.015050331130624,0.043897110968828]],[[-0.040258899331093,0.029602082446218,0.0044745006598532],[-0.0061006122268736,-0.036794632673264,-0.015669673681259],[-0.031028721481562,-0.026162760332227,-0.071158774197102]],[[0.06768012791872,0.0078164683654904,-0.023621689528227],[0.049478512257338,-0.10096962749958,-0.088324420154095],[0.051226366311312,-0.05079497396946,0.03482922539115]],[[0.0049348482862115,-0.053029824048281,-0.010769485495985],[-0.028125757351518,0.053207330405712,-0.06840305775404],[0.021463092416525,0.020237635821104,0.063340708613396]],[[0.10522058606148,-0.019551960751414,0.029960026964545],[-0.013968606479466,-0.026943314820528,0.045511428266764],[-0.015208612196147,-0.024358255788684,0.013956812210381]],[[-0.049876447767019,-0.011026282794774,0.041584439575672],[0.048597700893879,-0.010511661879718,0.14116209745407],[0.014307071454823,0.034651540219784,0.055976510047913]],[[-0.074095420539379,0.0074657527729869,-0.0062684039585292],[0.035904731601477,-0.0028756901156157,0.029637884348631],[-0.027017323300242,-0.011353621259332,0.0035042283125222]],[[-0.024434562772512,-0.011160438880324,0.021458849310875],[-0.034512426704168,0.059233028441668,0.040116958320141],[0.0021810573525727,-0.077550552785397,-0.10252632200718]],[[0.064502313733101,-0.02460477873683,0.031427636742592],[0.034533008933067,0.00070989032974467,-0.0022286474704742],[-0.0094557693228126,-0.071028560400009,0.0014289887621999]],[[-0.13812120258808,-0.13243418931961,-0.050801057368517],[-0.073808155953884,-0.066705331206322,0.076077498495579],[-0.082293950021267,-0.020261641591787,-0.082039132714272]],[[-0.0050026099197567,0.046296212822199,-0.0065887197852135],[-0.013847640715539,0.091140665113926,-0.043434664607048],[0.019316697493196,-0.043905094265938,-0.019918937236071]],[[-0.030720697715878,0.073620699346066,-0.089331932365894],[0.041652336716652,-0.0066037918440998,0.045628041028976],[-0.0074796085245907,0.0031437093857676,-0.029434908181429]],[[-0.077229052782059,-0.078669436275959,-0.044929973781109],[0.050344411283731,0.051852390170097,-0.027521148324013],[0.039253316819668,0.01739957369864,-0.082142263650894]],[[-0.062305349856615,-0.016384698450565,-0.15306690335274],[0.0075387102551758,0.092505812644958,0.00056263082660735],[0.015182280912995,-0.0064770667813718,0.065022759139538]],[[0.12876681983471,0.031955111771822,0.012187228538096],[-0.0091886967420578,0.002241374226287,-0.012420657090843],[0.0049573415890336,-0.011561404913664,-0.09885510802269]],[[0.10359703749418,0.0091760838404298,-0.073551930487156],[0.0016216143267229,-0.024882532656193,-0.04369593411684],[0.038120113313198,-0.060748692601919,-0.044513333588839]],[[-0.035629272460938,-0.04692330211401,0.0023116138763726],[0.0019970741122961,-0.023385154083371,0.0002040155522991],[0.0036987427156419,0.029486160725355,0.058508887887001]],[[-0.041274636983871,-0.063264146447182,0.033879812806845],[0.060552276670933,0.01091834064573,-0.089214004576206],[-0.015367887914181,0.064577683806419,-0.064081251621246]],[[-0.059514500200748,0.10395332425833,0.015344017185271],[-0.018064875155687,0.034503858536482,-0.017462635412812],[-0.012636888772249,0.035662569105625,0.070829451084137]],[[-0.13364236056805,0.13933299481869,-0.070421792566776],[-0.067596279084682,0.018000684678555,-0.056187961250544],[-0.065315164625645,0.078894592821598,0.013616575859487]],[[0.075687319040298,0.042427722364664,0.15779905021191],[0.011960683390498,0.052743043750525,-0.0078927129507065],[0.021973881870508,0.068747118115425,0.051094524562359]],[[0.1111774072051,0.010460862889886,-0.024837609380484],[-0.035420823842287,-0.025746950879693,-0.09464693069458],[-0.022155284881592,-0.12034542858601,-0.051701284945011]],[[-0.0265620239079,-0.076195061206818,0.041767157614231],[-0.00055358302779496,-0.0031024336349219,0.065218865871429],[0.063987664878368,-0.019790358841419,0.032940234988928]],[[-0.044379599392414,-0.088233076035976,-0.024220170453191],[0.065231643617153,-0.12537296116352,0.072904132306576],[0.095811434090137,0.037596836686134,-0.019276013597846]],[[-0.032445836812258,-0.039729598909616,-0.0019792509265244],[0.024048309773207,-0.031719710677862,-0.087839558720589],[0.035324819386005,-0.026375332847238,0.060238413512707]],[[-0.0017741349292919,0.01784404553473,0.085712544620037],[-0.040340945124626,-0.050742730498314,0.054031036794186],[0.030343679711223,-0.020207362249494,0.050524555146694]],[[0.08212286233902,-0.015686964616179,0.014258411712945],[0.0086295111104846,0.030618831515312,-0.011135442182422],[0.050669711083174,0.029246546328068,0.039872676134109]],[[-0.07637145370245,0.018832117319107,0.025524647906423],[-0.034319151192904,-0.031078167259693,0.099964290857315],[0.025267535820603,-0.017952278256416,0.067481644451618]],[[-0.078336983919144,-0.0030897061806172,0.002188952639699],[0.068038761615753,0.097755305469036,-0.059936262667179],[-0.071219153702259,0.060356523841619,0.0888557061553]],[[-0.00084727100329474,-0.063020400702953,-7.8925520938355e-05],[0.019142592325807,0.0091964835301042,0.004930043593049],[0.028203088790178,0.022395623847842,-0.012754955329001]],[[-0.018327502533793,-0.032227508723736,0.041735153645277],[-0.089657559990883,-0.12546029686928,0.11026239395142],[-0.093204207718372,-0.089489087462425,0.011966298334301]],[[-0.094269149005413,-0.13842715322971,0.019187299534678],[-0.035589057952166,0.068722106516361,0.054928421974182],[-0.014925861731172,-0.10370909422636,0.048229217529297]],[[-0.11989569664001,0.023993667215109,-0.048324134200811],[0.070324510335922,-0.036848727613688,-0.01425205823034],[-0.038754343986511,0.060266230255365,0.010576515458524]],[[-0.051094453781843,0.057940892875195,0.036449797451496],[-0.074280954897404,-0.012557281181216,-0.020033465698361],[-0.019567050039768,0.0017241693567485,-0.034910976886749]],[[-0.041848666965961,-0.0093934061005712,-0.029260268434882],[-0.038601964712143,-0.019119653850794,0.038841098546982],[0.042219374328852,-0.026365311816335,-0.033016592264175]],[[-0.024756990373135,-0.087015233933926,-0.011176273226738],[-0.0055589647963643,-0.0063779163174331,0.02950232475996],[-0.033163290470839,0.015903275460005,0.018513122573495]],[[-0.090158745646477,-0.027124375104904,0.001709011849016],[-0.01693757250905,-0.013414309360087,-0.083133161067963],[0.0059074992313981,0.08334156870842,-0.0069324718788266]],[[0.0022229882888496,-0.0036488419864327,-0.07086818665266],[-0.025215595960617,-0.073088102042675,0.011210031807423],[0.11695901304483,-0.050110496580601,0.0029532660264522]],[[-0.022283244878054,0.090881034731865,-0.01983880251646],[0.026320826262236,-0.071350380778313,-0.05159517377615],[-0.020185815170407,-0.028055725619197,0.070748463273048]],[[-0.05476401373744,0.020383602008224,0.035369712859392],[0.061032000929117,-0.091922171413898,0.057253032922745],[-0.046392571181059,-0.07702574878931,-0.086979068815708]],[[-0.026012571528554,-0.036797523498535,0.011975278146565],[0.02711121365428,0.08945132791996,-0.048129137605429],[0.017451977357268,-0.073302254080772,-0.043888010084629]],[[-0.0048360941000283,-0.0019836097490042,0.0025967273395509],[0.084778368473053,0.063267409801483,-0.1010929942131],[0.011578914709389,0.068405196070671,0.032387375831604]],[[0.0035774374846369,0.096284836530685,-0.010565552860498],[0.03310414403677,-0.11495007574558,-0.013302106410265],[0.011017626151443,0.037172552198172,0.014279157854617]],[[-0.10211677104235,0.016434904187918,0.058727085590363],[-0.13227459788322,0.0083329370245337,0.06892878562212],[-0.05206636339426,-0.097285389900208,0.0096538076177239]],[[0.022509312257171,0.064470000565052,-0.10013946890831],[-0.090411476790905,-0.039511367678642,-0.095289438962936],[0.062111131846905,0.073162794113159,-0.00031193284667097]],[[-0.012835755944252,0.069232739508152,0.044235728681087],[0.0033285194076598,-0.11552890390158,-0.06198662519455],[-0.067321740090847,0.026786778122187,-0.028100991621614]],[[0.043609634041786,0.070798546075821,0.018739821389318],[-0.016325453296304,-0.068647302687168,0.020558683201671],[0.0074691958725452,0.074426501989365,-0.020187068730593]],[[0.038485068827868,0.024394152686,-0.065985724329948],[0.0059685995802283,-0.083919450640678,0.088313162326813],[-0.032937627285719,0.034009285271168,-0.012078489176929]],[[0.021087283268571,0.085490755736828,0.053419530391693],[0.027611786499619,-0.051285859197378,0.025735314935446],[-0.1242348626256,0.029696045443416,0.088021613657475]],[[-0.034979447722435,0.0097872111946344,0.031853701919317],[0.026143208146095,-0.0052255177870393,-0.03505839779973],[0.029546447098255,-0.022122696042061,0.0064618950709701]],[[0.084767565131187,0.017169775441289,0.024533826857805],[0.13214264810085,-0.028047177940607,0.00038872080040164],[-0.051409497857094,-0.076259590685368,-0.078723952174187]],[[0.013396579772234,0.022692453116179,-0.12291433662176],[-0.064260236918926,0.043693445622921,-0.0034286403097212],[-0.05213587731123,0.035128630697727,-0.088819898664951]],[[-0.039380807429552,-0.068784467875957,-0.0077717904932797],[-0.030213110148907,0.044716577976942,0.0071565969847143],[-0.03123913705349,-0.036455515772104,0.015753230080009]],[[0.06839519739151,-0.0011793499579653,0.038660511374474],[-0.0057129464112222,-0.068671405315399,0.041751805692911],[0.029059406369925,-0.031852409243584,0.025271363556385]],[[0.050326220691204,0.014786967076361,0.032675020396709],[-0.004620511084795,-0.056277219206095,-0.15813110768795],[-0.015362575650215,-0.058789700269699,-0.11279857158661]],[[0.14048708975315,-0.076610162854195,0.075099349021912],[-0.028207687661052,0.082388341426849,0.10423053056002],[-0.10409040749073,-0.034269727766514,0.040524374693632]],[[0.0099073704332113,0.051820863038301,0.0087282098829746],[-0.0078131705522537,-0.013743920251727,0.024996045976877],[0.0042137489654124,-0.029471455141902,-0.038670603185892]],[[-0.12655422091484,0.037773348391056,0.03350855410099],[0.034265995025635,-0.11013662815094,0.084122620522976],[0.046694580465555,0.0092508187517524,-0.069016709923744]],[[0.071460299193859,-0.014495372772217,0.056765958666801],[0.094687886536121,0.004194822628051,-0.049783729016781],[-0.026774417608976,0.012290192767978,0.039736770093441]],[[-0.043222319334745,-0.080308377742767,-0.031842585653067],[-0.011662801727653,0.025447580963373,0.001454837154597],[0.012876898981631,0.028461566194892,0.062239166349173]],[[-0.058767203241587,-0.034519169479609,-0.082997709512711],[0.0030270845163614,-0.068720191717148,0.018006460741162],[-0.038591310381889,0.017661087214947,-0.01108318939805]]],[[[0.032809410244226,0.065744735300541,0.06003088504076],[-0.032927189022303,-0.055991481989622,-0.041790254414082],[-0.0051503540016711,0.0028759257402271,-0.011541003361344]],[[0.023523811250925,0.091425441205502,-0.038566678762436],[-0.041654881089926,0.10153674334288,-0.045496825128794],[0.05102663859725,0.045264575630426,-0.064321972429752]],[[-0.0097532980144024,-0.021607892587781,0.02640064060688],[-0.011567351408303,0.011621902696788,-0.070361338555813],[-0.052190307527781,-0.11194762587547,-0.04403455555439]],[[-0.059619437903166,-0.026446616277099,0.0093491524457932],[-0.022343780845404,-0.007419562432915,-0.16715617477894],[0.013362043537199,0.017097145318985,-0.10058853775263]],[[-0.055106949061155,-0.021775374189019,-0.091753393411636],[-0.016284400597215,0.034538768231869,0.028356427326798],[-0.0058209551498294,0.033911727368832,0.0033174976706505]],[[0.015240929089487,0.02232750505209,-0.035512957721949],[-0.013273386284709,-0.075700595974922,0.001457656500861],[-0.066788583993912,-0.047977112233639,0.0073764980770648]],[[-0.0037207817658782,-0.017419293522835,0.08232557028532],[-0.080425389111042,-0.037743970751762,-0.06925593316555],[-0.043622404336929,-0.073239408433437,0.027000864967704]],[[0.0058948141522706,0.062732622027397,0.078216128051281],[-0.037081517279148,-0.028452405706048,-0.013578044250607],[-0.018036223948002,0.062728993594646,0.020884606987238]],[[-0.1009740754962,0.13518434762955,-0.14862953126431],[-0.023980518803,-0.067404299974442,-0.13223879039288],[-0.1978627294302,0.20759370923042,-0.19093626737595]],[[0.038124989718199,-0.016410252079368,-0.019386319443583],[-0.050950057804585,-0.041392184793949,-0.10577628016472],[-0.0038056415505707,-0.0053291725926101,-0.072643488645554]],[[-0.011957126669586,0.024228904396296,0.0069928825832903],[0.027323447167873,0.069226138293743,0.014735488221049],[-0.025357108563185,0.0024367112200707,-0.082246020436287]],[[-0.084524154663086,-0.012991146184504,-0.092752732336521],[-0.038170475512743,-0.039512015879154,-0.051910396665335],[-0.089930884540081,-0.016349693760276,-0.035329464823008]],[[0.30293855071068,-0.029881801456213,0.15495678782463],[-0.32846635580063,-0.053855169564486,-0.31875923275948],[0.23346012830734,-0.14089791476727,0.22518108785152]],[[-0.01255770213902,-0.081087358295918,-0.07799006998539],[0.061905916780233,0.0080078709870577,0.018452551215887],[-0.015458309091628,0.012356171384454,0.039610508829355]],[[0.081391759216785,-0.089753396809101,0.049388878047466],[-0.070929169654846,-0.021098047494888,-0.079920724034309],[0.12213227897882,-0.094878733158112,0.11123725026846]],[[0.022348495200276,-0.035753153264523,0.015631878748536],[0.046762924641371,-0.055086709558964,0.08650491386652],[-0.038555022329092,-0.031460516154766,-0.046430818736553]],[[-0.051715828478336,-0.0085275154560804,0.032842144370079],[0.063513517379761,0.024229427799582,0.075142234563828],[0.044959638267756,-0.034229073673487,0.024772448465228]],[[0.038636222481728,-0.11912535130978,0.014603237621486],[0.09685356169939,-0.0092073921114206,0.0079333875328302],[-0.07017993927002,0.0040010018274188,-0.034120377153158]],[[-0.10671059787273,-0.018715055659413,-0.0033375879283994],[-0.042262349277735,0.083726160228252,-0.14784099161625],[-0.069490745663643,0.0042608166113496,-0.069196216762066]],[[0.040624879300594,-0.030302342027426,0.02394625544548],[0.017233712598681,-0.0047750575467944,-0.010650851763785],[-0.00092818355187774,0.011652244254947,-0.0042310324497521]],[[0.024473199620843,-0.061234813183546,0.041483845561743],[0.013485564850271,-0.04360718280077,0.033881030976772],[-0.0090312315151095,-0.099918134510517,-0.04522667452693]],[[0.049807984381914,-0.026540262624621,0.085724495351315],[-0.10592111200094,-0.074180513620377,0.049261048436165],[-0.0090713482350111,0.047332674264908,0.035693015903234]],[[0.071770176291466,-0.12644539773464,-0.062024708837271],[0.17320057749748,-0.2269686460495,0.19866751134396],[0.15723520517349,-0.042950619012117,-0.12078507989645]],[[0.013867237605155,0.14378324151039,0.083608753979206],[0.0035746505018324,0.051118675619364,-0.0020531099289656],[0.0002466191072017,-0.0079600280150771,0.023712700232863]],[[0.053711105138063,0.0464156717062,0.047020234167576],[-0.11210549622774,-0.11655075103045,0.087085157632828],[0.047090832144022,0.051596119999886,-0.046160347759724]],[[0.0027840449474752,-0.0076648690737784,0.0045196614228189],[0.010793936438859,-0.021535934880376,-0.0051920735277236],[0.013091273605824,-0.016062853857875,0.06785311549902]],[[-0.058317538350821,0.054640125483274,-0.023529475554824],[0.025004301220179,-0.010744354687631,0.15271681547165],[0.026826957240701,0.061101801693439,-0.027692029252648]],[[0.049184452742338,0.01051945053041,-0.040515393018723],[-0.067421205341816,-0.066083081066608,-0.083189830183983],[-0.028441378846765,-0.028702434152365,-0.073778606951237]],[[-0.05320305749774,-0.052973423153162,-0.0080730738118291],[0.052102442830801,0.029564855620265,0.013422441668808],[-0.026270519942045,0.028992330655456,-0.012022251263261]],[[-0.037085045129061,-0.066721133887768,-0.078021928668022],[-0.040383450686932,-0.026913542300463,-0.094300799071789],[-0.042800720781088,-0.038813218474388,0.051231849938631]],[[-0.066314838826656,-0.081355430185795,0.035300519317389],[0.23060138523579,-0.14973822236061,0.15493142604828],[-0.012656981125474,-0.11735658347607,-0.089657261967659]],[[-0.0091508878394961,0.028802171349525,-0.040552143007517],[0.012781975790858,-0.11889803409576,0.017078083008528],[0.064524158835411,0.028010027483106,-0.034783884882927]],[[-0.0035546217113733,-0.043133426457644,0.022332418709993],[-0.0085958186537027,-0.044221725314856,0.0016673139762133],[-0.053292736411095,0.039823275059462,-0.030734518542886]],[[0.037680238485336,0.074828281998634,-0.10420441627502],[-0.084953404963017,-0.017834791913629,-0.051347423344851],[-0.010357841849327,0.0035795103758574,-0.12251825630665]],[[-0.071160934865475,0.0018477727426216,0.011783597059548],[0.027144363150001,-0.064145959913731,-0.082004114985466],[-0.067114986479282,0.038540374487638,-0.010719386860728]],[[-0.051176767796278,-0.031865201890469,0.085745073854923],[0.041403889656067,-0.032661218196154,0.076151870191097],[-0.16150704026222,-0.021017991006374,-0.037999991327524]],[[0.0054422151297331,-0.018887788057327,-0.071947045624256],[-0.01108287833631,-0.0063711018301547,0.032225336879492],[-0.011197454296052,0.028685282915831,0.00010650469630491]],[[-0.030468946322799,-0.03319263830781,-0.10183893889189],[-0.029794672504067,0.020563395693898,-0.015803784132004],[-0.0034422560129315,-0.036799285560846,-0.0070992968976498]],[[-0.051407445222139,0.072796195745468,0.020961444824934],[-0.13279616832733,-0.045160006731749,-0.062627412378788],[0.024964790791273,-0.037996798753738,0.12910848855972]],[[-0.12993995845318,0.029984459280968,-0.021458923816681],[0.055377524346113,0.039090976119041,-0.018882676959038],[0.0050615640357137,0.063056975603104,0.031938217580318]],[[0.046176858246326,-0.018131580203772,-0.032397571951151],[0.031544975936413,0.1236285790801,-0.023485764861107],[-0.03994345292449,-0.0036495227832347,-0.008811884559691]],[[-0.095010101795197,0.031183088198304,-0.13682010769844],[0.052058417350054,0.068527914583683,-0.0011544037843123],[-0.036380417644978,-0.0082615548744798,-0.08427769690752]],[[0.028061943128705,0.11269297450781,0.002660115249455],[-0.0039415257051587,-0.023529151454568,-0.026143638417125],[0.066549219191074,0.032355941832066,0.036359712481499]],[[-0.0078095863573253,0.064698174595833,0.046020437031984],[-0.065347984433174,0.01916877925396,-0.035612620413303],[0.058760300278664,0.022479973733425,0.066631093621254]],[[-0.079375401139259,0.10542239993811,-0.17710062861443],[-0.038841724395752,0.021122453734279,0.070777550339699],[-0.084969699382782,0.051711231470108,-0.052226722240448]],[[-0.0085471170023084,0.031526617705822,-0.059830490499735],[0.068786531686783,-0.08524763584137,0.02675454877317],[-0.095873132348061,0.0065985904075205,0.016342055052519]],[[-0.18271462619305,-0.029540970921516,0.018306668847799],[0.035754304379225,0.06387548148632,-0.088517583906651],[-0.09159329533577,0.030393827706575,0.020955009385943]],[[0.11385379731655,-0.046468064188957,0.013682249933481],[0.067136153578758,-0.07206753641367,-0.025593155995011],[-0.02012681402266,-0.056178838014603,-0.05200270190835]],[[0.043015114963055,-0.061846617609262,0.040327221155167],[0.038043294101954,-0.054306253790855,-0.0495415776968],[0.025720693171024,0.085454992949963,-0.052456017583609]],[[0.055921565741301,-0.0099279182031751,-0.093775577843189],[0.013308278284967,-0.07455737143755,0.035226345062256],[0.011306967586279,0.017880950123072,0.025925563648343]],[[-0.02675024420023,-0.0041801072657108,-0.060725629329681],[-0.05695441365242,-0.0048465197905898,0.049244672060013],[-0.013687137514353,-0.048680759966373,-0.01384776737541]],[[0.090201884508133,0.10174245387316,0.017038503661752],[0.13974505662918,-0.010757369920611,0.072640314698219],[0.07170395553112,0.090366907417774,0.044350255280733]],[[-0.0047211870551109,0.015895275399089,0.070474587380886],[-0.12323440611362,-0.0022918067406863,-0.038063369691372],[0.047996532171965,-0.030250918120146,-0.012034620158374]],[[0.010470231994987,0.16607689857483,0.019646173343062],[-0.060067251324654,-0.064687639474869,-0.07400768995285],[0.022218843922019,0.039882589131594,-0.0067108734510839]],[[-0.033879745751619,-0.061829119920731,0.0012646504910663],[-0.039880998432636,-0.036723673343658,-0.028550986200571],[-0.029299695044756,-0.12206622958183,0.062794595956802]],[[0.024390509352088,-0.032360676676035,0.024331960827112],[-0.034226156771183,-0.0050805849023163,-0.057697311043739],[0.023852741345763,-0.011279349215329,0.061927817761898]],[[0.036433801054955,-0.052319500595331,0.0077560502104461],[-0.058827329427004,0.025153659284115,-0.0028215472120792],[0.036598864942789,-0.02178299985826,-0.0043789469636977]],[[0.012548753991723,-0.046907603740692,-0.06783489882946],[-0.013042598962784,0.016593620181084,0.0056699048727751],[-0.073191873729229,-0.10637652873993,-0.037274368107319]],[[-0.011325406841934,0.04853593558073,0.014871992170811],[0.0023547024466097,0.11306688934565,0.05935288220644],[0.039482902735472,0.034080263227224,0.10357924550772]],[[-0.044624198228121,0.014003548771143,-0.0021720109507442],[0.044175021350384,-0.0026059891097248,0.031711377203465],[-0.050349853932858,0.046353783458471,-0.023354222998023]],[[-0.00082208612002432,0.081943929195404,-0.11782113462687],[-0.022017687559128,-0.044801082462072,-0.10019783675671],[-0.089717097580433,0.1432411968708,0.01548923458904]],[[-0.045908682048321,0.14004962146282,-0.019411412999034],[-0.0073331501334906,-0.036832388490438,0.022441828623414],[-0.059692371636629,0.084516577422619,-0.065945111215115]],[[0.01125761307776,-0.0044054561294615,0.014958846382797],[-0.026194510981441,-0.01955807954073,-0.072360813617706],[0.043197225779295,0.010263367556036,-0.019287347793579]],[[0.011174744926393,0.035386245697737,-0.069084770977497],[-0.052879109978676,0.014573484659195,0.026958800852299],[0.018945775926113,0.020458022132516,0.03335066139698]]],[[[-0.0073230317793787,0.069278985261917,0.067298270761967],[0.035513799637556,-0.086615569889545,0.067433930933475],[-0.030545515939593,-0.05058079212904,-0.081326775252819]],[[0.089642725884914,0.093207016587257,-0.075783915817738],[0.09707809984684,-0.041012797504663,-0.046135455369949],[0.037317264825106,-0.011330698616803,-0.05286131799221]],[[0.048074174672365,0.0086043998599052,0.020656988024712],[-0.075724244117737,0.018668564036489,-0.079840369522572],[0.021032115444541,-0.11765716969967,-0.010804848745465]],[[-0.027823707088828,-0.089489288628101,-0.10520809143782],[-0.030400067567825,-0.069910459220409,-0.067076414823532],[0.073359370231628,-0.015019151382148,-0.040257722139359]],[[-0.064787648618221,0.010545499622822,-0.065510913729668],[-0.019647430628538,-0.0528434664011,-0.10076273977757],[0.062593549489975,0.096961431205273,-0.032472800463438]],[[0.052840285003185,-0.010495839640498,0.039486333727837],[0.023175118491054,-0.01882640644908,-0.048312827944756],[0.027334989979863,0.063354089856148,0.043464597314596]],[[-0.044716540724039,0.0034431754611433,-0.00030083258752711],[-0.067336365580559,-0.075463488698006,-0.0034651060122997],[0.034358233213425,-0.053840689361095,-0.0056399628520012]],[[0.014127250760794,-0.090656839311123,-0.0075435359030962],[0.11709333956242,0.062919080257416,-0.026197072118521],[-0.028565114364028,-0.02778192050755,-0.029442876577377]],[[-0.029563857242465,-0.05565532669425,0.010030839592218],[-0.04290334135294,-0.038101717829704,0.013255051337183],[-0.11420024931431,-0.037150662392378,-0.023605873808265]],[[0.028781851753592,-0.092954739928246,0.019450759515166],[0.0079265814274549,0.048199489712715,-0.031001783907413],[0.035156354308128,-0.025579120963812,0.025494832545519]],[[-0.097517393529415,0.0048081297427416,0.01301534473896],[0.05165446922183,-0.029108874499798,-0.033210560679436],[-0.070993907749653,-0.010798512026668,0.062703669071198]],[[0.080847971141338,0.037703581154346,-0.014696264639497],[0.020128730684519,-0.10723946988583,-0.012146635912359],[0.005196469835937,-0.027846399694681,-0.075230546295643]],[[-0.044682048261166,-0.008086915127933,-0.058661516755819],[0.17166595160961,-0.05089595913887,0.14208157360554],[-0.090850926935673,-0.054553434252739,0.033836748450994]],[[-0.0030917453113943,-0.011106272228062,-0.08754176646471],[-0.018452979624271,-0.0052117202430964,0.023274686187506],[0.059528399258852,-0.0453523658216,0.034572578966618]],[[-0.040107566863298,0.053426150232553,-0.053071297705173],[0.0059363469481468,0.046252813190222,-0.12651202082634],[-0.098846651613712,0.045645568519831,0.027128782123327]],[[0.094219416379929,-0.081969186663628,-0.029942309483886],[0.050450589507818,-0.070098042488098,-0.02430154569447],[-0.008922403678298,-0.046565305441618,0.042256232351065]],[[-0.080160088837147,-0.056135680526495,-0.064323805272579],[0.0098273493349552,0.13636136054993,0.031253192573786],[-0.010517938062549,0.041339576244354,0.015964215621352]],[[-0.084844343364239,-0.074432648718357,-0.030919335782528],[-0.0085516721010208,-0.082158535718918,0.041225384920835],[0.0027244142256677,-0.026006551459432,0.010902763344347]],[[-0.086648844182491,0.066182397305965,-0.048277862370014],[-0.024895712733269,0.018074067309499,0.13090740144253],[-0.00039557495620102,0.032813388854265,-0.060833819210529]],[[-0.010021088644862,0.067563578486443,-0.047295041382313],[-0.0034408741630614,0.018073257058859,-0.0094913113862276],[-0.014761086553335,0.015174726955593,-0.0058596786111593]],[[0.021487131714821,0.049177441745996,0.085558526217937],[-0.049308396875858,0.017665391787887,0.033123508095741],[-0.033728551119566,-0.082696296274662,-0.043699830770493]],[[-0.015635844320059,-0.07511243969202,0.051914319396019],[-0.00037221959792078,-0.030312839895487,-0.0084133092314005],[0.044161681085825,-0.036670655012131,0.079145833849907]],[[0.079529851675034,-0.060389995574951,-0.050208114087582],[0.034021236002445,0.088963620364666,0.077155821025372],[-0.1460082679987,0.031558725982904,0.076281748712063]],[[0.015760602429509,0.054729070514441,0.12597174942493],[-0.047108203172684,0.17915013432503,0.064935363829136],[0.09989370405674,0.033326014876366,-0.058189176023006]],[[-0.00035128972376697,0.042032178491354,0.019690699875355],[0.033449754118919,0.063364341855049,0.045132517814636],[0.017816670238972,0.047595974057913,0.039173685014248]],[[0.067536316812038,0.066466353833675,-0.055182959884405],[0.00011151635408169,0.020014081150293,0.010350682772696],[-0.040114708244801,0.014029985293746,-0.057048577815294]],[[-0.0027379509992898,-0.10834194719791,0.015408395789564],[0.0010707064066082,-0.033394988626242,-0.057793047279119],[0.06682313233614,0.1240571886301,0.15874800086021]],[[-0.075707457959652,-0.016699330881238,-0.0016311724903062],[0.078850775957108,0.020676689222455,-0.046020224690437],[0.027183089405298,0.13320298492908,-0.16145300865173]],[[0.02396166883409,0.053446710109711,-0.024356102570891],[-0.032487262040377,-0.016688290983438,-0.019538305699825],[-0.014406052418053,-0.073966681957245,-0.055656898766756]],[[-0.050637859851122,0.014047902077436,-0.0057543832808733],[-0.029100209474564,-0.062220606952906,-0.01451285276562],[-0.1065768301487,-0.011960420757532,0.046433296054602]],[[0.10156443715096,0.0016902016941458,-0.0084393257275224],[-0.0042044254951179,0.0025041259359568,-0.11118045449257],[0.068936802446842,-0.081536561250687,0.045665945857763]],[[0.029127053916454,-0.020863117650151,0.077281139791012],[-0.071211330592632,-0.10021264106035,-0.046430714428425],[-0.023492928594351,-0.12825608253479,-0.0060373516753316]],[[-0.029577750712633,-0.050131194293499,-0.023981954902411],[-0.018603013828397,-0.037961173802614,0.016620149835944],[0.015091928653419,-0.041239619255066,0.045038878917694]],[[0.06659322232008,0.037327900528908,0.0082121128216386],[0.023169755935669,-0.08745563775301,-0.015691621229053],[0.05756589025259,0.016374863684177,-0.035363826900721]],[[-0.077177353203297,0.093594551086426,-0.055452935397625],[0.075995557010174,0.021682387217879,0.030249334871769],[0.070309139788151,0.028837710618973,-0.0031541597563773]],[[-0.019482089206576,-0.094747886061668,0.035864632576704],[-0.073907651007175,0.0021515309344977,-0.061554867774248],[0.088248401880264,0.0048202467150986,-0.086305052042007]],[[-0.0093007320538163,0.0036816196516156,-0.020590426400304],[-0.07762236893177,-0.039160288870335,0.039050463587046],[-0.061731819063425,0.005559696815908,0.020467711612582]],[[-0.032895270735025,-0.092617601156235,-0.05909077450633],[0.059267196804285,-0.0052964328788221,-0.069482088088989],[0.16373054683208,0.14099080860615,0.027882158756256]],[[-0.0062185181304812,0.065251566469669,-0.10113243758678],[0.0003571945708245,-0.066093318164349,0.037365984171629],[-0.051222402602434,0.041712369769812,0.032042901962996]],[[0.070982612669468,-0.00059432350099087,0.064765371382236],[-0.027070397511125,0.081858515739441,0.05784547701478],[0.0052216476760805,0.052393190562725,-0.0065285018645227]],[[0.013305358588696,0.068012103438377,0.037854313850403],[0.033987421542406,-0.011026985011995,0.0015103074256331],[-0.09794320166111,0.011466081254184,-0.1075786575675]],[[-0.017831597477198,-0.077655032277107,-0.023346837610006],[-0.024654807522893,0.083667628467083,0.052880316972733],[-0.10175946354866,-0.027854882180691,0.0029047180432826]],[[-0.048877023160458,0.010751293040812,0.056463595479727],[-0.022600734606385,0.050246886909008,-0.0085391839966178],[0.010126808658242,0.025116009637713,0.032414384186268]],[[-0.083139158785343,0.0030249818228185,-0.084870785474777],[0.012269024737179,0.018751310184598,-0.0016732696676627],[-0.031362388283014,-6.3139610574581e-05,0.071649111807346]],[[-0.030473634600639,-0.0045604221522808,0.016254391521215],[-0.039177495986223,0.10917861014605,-0.034161433577538],[-0.018647188320756,-0.030675170943141,-0.0072624706663191]],[[0.01917271129787,0.018375992774963,0.010569366626441],[0.021483097225428,-0.0073057692497969,-0.029090512543917],[0.0038552561309189,-0.070557929575443,0.10101372748613]],[[0.078893177211285,-0.10848224163055,0.042604513466358],[-0.03454352170229,-0.024079790338874,-0.054236937314272],[-0.043369192630053,-0.0028422146569937,-0.015561377629638]],[[-0.0008750359993428,-0.057499803602695,0.033001769334078],[-0.054288391023874,-0.045423775911331,0.10553438961506],[0.026735840365291,-0.071378141641617,-0.050646103918552]],[[-0.040805447846651,-0.044128589332104,0.13888840377331],[-0.011732269078493,-0.0078509841114283,-0.10915644466877],[0.022008707746863,0.028076244518161,-0.015481106005609]],[[0.044134277850389,-0.015522844158113,-0.080851785838604],[0.15765218436718,-0.0042045582085848,-0.053059879690409],[0.018557444214821,0.0703040137887,-0.069033309817314]],[[-0.025334972888231,0.026593459770083,-0.013275695964694],[-0.020487431436777,-0.033118583261967,0.01272034086287],[0.014693210832775,-0.04931253939867,-0.0021596471779048]],[[0.098596967756748,0.067771054804325,0.067311033606529],[-0.039515852928162,-0.020431252196431,-0.023913118988276],[0.025763772428036,-0.015277035534382,-0.029345048591495]],[[-0.040671907365322,-0.042710460722446,-0.057816307991743],[0.11172275990248,0.006818457506597,-0.079890564084053],[0.031902179121971,-0.015548480674624,-0.051219530403614]],[[0.0394530557096,0.011255175806582,-0.053385611623526],[-0.071319580078125,-0.026408173143864,-0.070841483771801],[-0.01684183627367,-0.050930101424456,0.084048978984356]],[[-0.041231516748667,-0.097816236317158,0.008977884426713],[-0.059879913926125,0.078715287148952,0.051949631422758],[-0.039439626038074,0.00085404323181137,-0.030836073681712]],[[-0.077126622200012,-0.043977297842503,-0.069343008100986],[-0.049584351480007,-0.00033772466122173,-0.010366974398494],[0.023944595828652,0.0084287906065583,0.012701066210866]],[[-0.063654340803623,-0.0073708388954401,-0.021740823984146],[0.029893234372139,-0.091033585369587,0.087919481098652],[-0.071618519723415,-0.01287201885134,-0.017463877797127]],[[-0.003723822766915,0.011758767999709,-0.054804995656013],[-0.035740464925766,0.020921560004354,0.058356788009405],[-0.025099584832788,-0.063722237944603,0.05690036341548]],[[0.0071114273741841,0.074776031076908,0.064668372273445],[-0.071717500686646,0.064455151557922,0.089812152087688],[-0.041074875742197,0.082769580185413,0.16531270742416]],[[-0.033759247511625,-0.089146189391613,0.046946223825216],[0.021152393892407,-0.017948597669601,0.016285331919789],[0.0052830716595054,0.03694261983037,0.019018538296223]],[[0.08410819619894,0.03481362387538,0.016893424093723],[0.043048989027739,-0.021241804584861,0.0034248563461006],[0.0074509428814054,0.031314298510551,-0.068069994449615]],[[0.083503976464272,0.023821722716093,0.0032980388496071],[-0.025642238557339,-0.047416646033525,0.013403045013547],[0.035940036177635,0.013293309137225,-0.051474664360285]],[[-0.0292495097965,0.016304317861795,0.0013894397998229],[-0.051645942032337,-0.10684018582106,-0.05332538485527],[0.07968382537365,-0.032772433012724,0.04128710180521]],[[0.063563100993633,0.047236829996109,-0.012173499912024],[-0.011657691560686,0.12453635782003,0.055436074733734],[-0.02834546752274,-0.059744365513325,-0.023134592920542]]],[[[0.026219423860312,-0.011808708310127,-0.067776151001453],[-0.080158479511738,-0.11007352918386,-0.078596755862236],[-0.044730704277754,-0.083896353840828,-0.082373484969139]],[[-0.092698387801647,-0.18151138722897,-0.0040400386787951],[-0.010027755051851,-0.16261903941631,-0.096489146351814],[0.040982376784086,-0.0174152366817,-0.059302724897861]],[[-0.057974893599749,-0.20170946419239,-0.22184112668037],[0.065253913402557,-0.059886895120144,-0.2124155163765],[0.075788661837578,0.033911552280188,-0.024275250732899]],[[0.013972541317344,0.046080328524113,0.046894323080778],[0.11721502989531,0.057294867932796,0.10425502806902],[0.084854565560818,-0.012833850458264,-0.081087961792946]],[[0.033241778612137,-0.028615025803447,-0.016988737508655],[0.029672458767891,-0.01826355792582,-0.0952477902174],[0.013060953468084,0.003773178672418,-0.023171244189143]],[[0.022717665880919,0.065629787743092,-0.079224228858948],[-0.036225344985723,-0.10730444639921,-0.018207481130958],[0.031521927565336,0.011266339570284,-0.020402083173394]],[[-0.0015660763019696,-0.090924948453903,-0.091596387326717],[-0.12618184089661,-0.022706564515829,-0.049962405115366],[0.041109904646873,0.021249398589134,-0.013116701506078]],[[0.057412061840296,0.079176552593708,0.064989224076271],[0.15139012038708,0.15400430560112,0.031773347407579],[-0.0036515125539154,0.050637919455767,0.0098937638103962]],[[0.097102582454681,-0.19062450528145,0.075983092188835],[0.01224572956562,0.0068227602168918,-0.091368056833744],[-0.042185541242361,-0.10363829135895,0.080714732408524]],[[-0.085036218166351,-0.081585057079792,-0.040509358048439],[0.023444395512342,-0.044756595045328,-0.098740503191948],[-0.022023582831025,0.027158673852682,-0.059318777173758]],[[0.0056272055953741,-0.036351032555103,0.026054656133056],[0.02925768494606,-0.062688820064068,-0.12022069096565],[0.083963461220264,0.054058190435171,-0.0069202757440507]],[[-0.069341152906418,-0.078716494143009,-0.03483197465539],[-0.18099234998226,-0.065134949982166,-0.055954344570637],[-0.10843747109175,-0.15339036285877,-0.068023972213268]],[[-0.055040374398232,0.038431096822023,0.05425588414073],[-0.021006962284446,0.0070580327883363,0.027101632207632],[-0.050932317972183,-0.020227564498782,-0.070401966571808]],[[0.12534137070179,0.053975649178028,0.034869574010372],[0.09149182587862,0.089448936283588,0.065724402666092],[-0.0049390695057809,0.015264755114913,-0.040312387049198]],[[-0.0071746623143554,0.047092657536268,-0.071032822132111],[0.0038656515534967,0.086472637951374,-0.018855277448893],[0.012426478788257,0.016299994662404,-0.019542781636119]],[[-0.078193254768848,0.015752440318465,0.039413213729858],[0.10369491577148,-0.056049339473248,-0.023134404793382],[-0.031715884804726,0.057699464261532,0.034351542592049]],[[-0.040775701403618,-0.10735267400742,-0.024029253050685],[-0.04312739521265,-0.10627853870392,-0.046194702386856],[0.10508101433516,0.095313593745232,-0.038575600832701]],[[0.023456340655684,0.009126104414463,0.052105691283941],[0.051153246313334,0.0069710984826088,-0.026625273749232],[0.049460988491774,0.0799226090312,0.011069988831878]],[[-0.032290171831846,0.05543601885438,0.018340993672609],[0.067073613405228,-0.093304634094238,0.048590779304504],[-0.066670894622803,0.028640316799283,-0.035179685801268]],[[0.03552683442831,-0.035189148038626,-0.12864105403423],[0.0958082228899,0.0096258642151952,-0.047698155045509],[0.047668162733316,0.07954303175211,-0.024515485391021]],[[0.049880128353834,0.069814473390579,0.098989114165306],[0.0030209349934012,-0.011596934869885,0.0065602231770754],[0.09174957126379,-0.0169014390558,0.055771201848984]],[[-0.018252961337566,0.14907789230347,0.17166556417942],[-0.029100319370627,-0.0058930828236043,0.029265083372593],[-0.085098564624786,-0.027787834405899,-0.018294712528586]],[[-0.087774597108364,-0.026197711005807,0.012178428471088],[-0.025137949734926,0.028511725366116,0.026424003764987],[0.012653114274144,0.011693079024553,-0.036685321480036]],[[-0.021997712552547,0.018666369840503,0.14199118316174],[-0.11006905883551,-0.010978317819536,0.076736949384212],[0.023861093446612,0.1350065022707,0.038051068782806]],[[-0.021191032603383,0.037237167358398,0.061752744019032],[-0.15831135213375,0.077722169458866,-0.045721288770437],[-0.070039629936218,-0.034304093569517,0.036432970315218]],[[0.028098337352276,-0.055576927959919,-0.034212119877338],[0.04063256457448,-0.020958013832569,0.023353552445769],[0.025714898481965,0.016304863616824,0.0030026831664145]],[[-0.026996336877346,-0.051364149898291,0.020484341308475],[-0.019406002014875,-0.016705369576812,-0.002771879080683],[-0.1166664659977,0.025683715939522,0.035987935960293]],[[-0.032436724752188,-9.8826094472315e-05,0.02944147400558],[-0.066521026194096,-0.068244807422161,0.068747065961361],[0.002686453750357,0.030843691900373,0.027798887342215]],[[-0.076006844639778,-0.1137068271637,-0.13318838179111],[-0.031798142939806,-0.058676011860371,-0.03706381097436],[0.030002044513822,-0.029269291087985,-0.024613451212645]],[[0.020581927150488,0.0057192416861653,-0.00040953498682939],[0.021569311618805,-0.037211183458567,-0.11823607981205],[0.03551372885704,0.032372426241636,-0.00012541961041279]],[[-0.041338607668877,-0.092424817383289,0.076931171119213],[0.013798185624182,0.012306636199355,0.099963665008545],[0.035816963762045,-0.0096962274983525,0.059134062379599]],[[0.042399778962135,-0.013418381102383,0.049543589353561],[-0.0037540651392192,0.029844831675291,-0.076006628572941],[0.081443920731544,-0.02234373241663,0.086029849946499]],[[-0.065978199243546,-0.067623622715473,-0.017877684906125],[-0.00023894639161881,-0.06127392500639,0.020395003259182],[-0.013004801236093,-0.023440849035978,-0.031078105792403]],[[0.085130602121353,0.033368844538927,0.084705375134945],[0.031423985958099,0.014482853934169,0.014539098367095],[0.023408621549606,0.059424970299006,0.022234357893467]],[[-0.035157594829798,-0.10042580217123,-0.11632557213306],[-0.22086448967457,-0.11221931874752,-0.057317305356264],[-0.059006430208683,-0.05801210179925,0.0048313396982849]],[[0.002243175636977,0.017610652372241,0.068577043712139],[0.062084328383207,0.1014743372798,-0.0044366233050823],[-0.016115825623274,-0.020346917212009,-0.019257908686996]],[[0.0024896145332605,0.0089356526732445,-0.04993411898613],[-0.03436566516757,-0.001615000423044,0.066085249185562],[-0.09443798661232,-0.056414313614368,-0.072046831250191]],[[0.039610505104065,0.017001297324896,0.016725540161133],[0.013998005539179,-0.015331702306867,0.049201104789972],[-0.060470853000879,0.010179501026869,-0.00021929535432719]],[[0.1097004711628,-0.050524510443211,-0.054297316819429],[-0.010909214615822,-0.087003014981747,0.023910649120808],[0.026082308962941,-0.050213731825352,0.078875489532948]],[[0.01614916138351,0.012655557133257,-0.047212444245815],[0.048184391111135,-0.0098664136603475,0.0041807433590293],[0.14246778190136,0.068105898797512,0.00017890910385177]],[[-0.10173389315605,-0.13925138115883,-0.028825854882598],[0.037750735878944,-0.0032062097452581,0.030014239251614],[0.049641590565443,0.039668995887041,0.034942399710417]],[[-0.10280665755272,-0.033708017319441,-0.017014399170876],[-0.055183075368404,-0.056909326463938,0.063642159104347],[-0.14516228437424,-0.012622544541955,0.094257481396198]],[[0.026049572974443,0.007289563305676,0.065269619226456],[0.038161795586348,0.037638138979673,-0.022498093545437],[-0.024526827037334,-0.027611454948783,-0.014858406037092]],[[0.013023101724684,-0.084430582821369,0.079511441290379],[0.0071910871192813,0.015968037769198,-0.033218499273062],[-0.00089648453285918,0.052092961966991,0.12339239567518]],[[0.033495683223009,-0.14784608781338,-0.056742131710052],[0.058666452765465,-0.078151315450668,-0.11536532640457],[0.11219611018896,0.0092584732919931,-0.093757562339306]],[[0.034630056470633,0.0084202717989683,-0.0025115471798927],[-0.010407750494778,-0.062074333429337,0.036749493330717],[-0.043224263936281,-0.073468796908855,0.059632506221533]],[[-0.098880507051945,0.033345144242048,-0.054610788822174],[0.03855773806572,0.0081579135730863,0.0470140427351],[0.05418798327446,-0.0028418095316738,0.01157895103097]],[[-0.018178870901465,0.078350767493248,-0.042134419083595],[0.080424971878529,0.057129353284836,0.015671093016863],[0.017796648666263,0.053710583597422,-0.058656997978687]],[[-0.041055198758841,-0.025749670341611,0.059444513171911],[-0.074273481965065,-0.051657821983099,-0.0073615536093712],[-0.063542455434799,-0.033610977232456,0.011761432513595]],[[-0.043602962046862,0.001052507199347,0.035837590694427],[0.064886935055256,-0.055455345660448,-0.04704675078392],[-0.019080029800534,0.071129783987999,0.088464811444283]],[[0.013073053210974,-0.0053689475171268,-0.055056616663933],[0.026591669768095,0.014244165271521,0.027653528377414],[-0.025912238284945,-0.038564667105675,0.052463091909885]],[[-0.028934108093381,0.026251874864101,-0.03661248087883],[0.099696338176727,0.070679500699043,-0.0074397842399776],[0.15434324741364,0.13263410329819,0.0016652821796015]],[[-0.0095954751595855,-0.059487868100405,0.0654296875],[0.0063327066600323,-0.044265870004892,-0.0087466826662421],[0.1220253482461,0.058013051748276,0.0032913079485297]],[[0.089593015611172,-0.010971629992127,-0.073025360703468],[0.007308991625905,0.075209081172943,-0.05158881098032],[-0.10387454926968,0.0063196807168424,0.069754764437675]],[[0.013235477730632,0.003814349649474,-0.028838889673352],[0.0062136962078512,-0.0055400193668902,-0.017505548894405],[-0.021821545436978,0.020000787451863,-0.0033309371210635]],[[-0.097049050033092,-0.023689277470112,0.19993759691715],[-0.17384847998619,-0.14728909730911,-0.019922960549593],[-0.18335835635662,-0.039736833423376,0.10722348093987]],[[0.019264219328761,-0.1072688922286,0.0001581443939358],[0.030406814068556,-0.049263101071119,0.00049046310596168],[0.0062259477563202,-0.044307500123978,0.026786245405674]],[[-0.0035125047434121,-0.04484511911869,-0.11550210416317],[0.054949961602688,-0.11964516341686,0.054693881422281],[0.028263354673982,-0.098268792033195,-0.067054621875286]],[[0.036270953714848,-0.06103602796793,-0.0068543539382517],[0.047046400606632,0.076408676803112,0.030923152342439],[0.062762908637524,-0.096475936472416,-0.0016201481921598]],[[0.0030225377995521,0.058112509548664,0.11151546239853],[-0.14874455332756,0.038036201149225,0.063254915177822],[-0.091579928994179,-0.060960717499256,0.022265121340752]],[[0.027008846402168,0.0066631268709898,0.14030264317989],[-0.064264304935932,0.039739955216646,0.014856489375234],[-0.18421401083469,-0.036262974143028,0.010115075856447]],[[0.027407120913267,-0.011993016116321,-0.0030903490260243],[-0.061885863542557,-0.041761577129364,-0.0045504635199904],[-0.048271592706442,-0.087873250246048,0.007519714999944]],[[-0.00021044339518994,-0.01303169131279,-0.035392098128796],[0.042647633701563,0.057772506028414,-0.0068514016456902],[-0.019359551370144,0.0050555523484945,-0.018462197855115]],[[-0.095794171094894,-0.20078456401825,-0.06986852735281],[-0.074420295655727,-0.088278323411942,-0.055854618549347],[0.006512510124594,-0.025642475113273,-0.036875948309898]]],[[[0.011548196896911,-0.10694336891174,-0.049534160643816],[0.029898975044489,-0.13522991538048,0.12526555359364],[0.02573811635375,-0.099918633699417,-0.10429000109434]],[[0.065903998911381,0.053942419588566,-0.080047905445099],[-0.00061634799931198,-0.017992503941059,-0.033128466457129],[-0.0018832004861906,0.065535590052605,0.094963923096657]],[[-0.047472562640905,0.0039572529494762,0.087922565639019],[-0.089098885655403,-0.073424100875854,0.066636987030506],[-0.032518960535526,-0.14207588136196,0.058590985834599]],[[0.018422741442919,-0.063571110367775,0.022896615788341],[-0.016086857765913,-0.039375547319651,-0.057591859251261],[0.05726708099246,-0.062882624566555,-0.029529560357332]],[[0.08078346401453,0.021106878295541,-0.026185769587755],[0.076983816921711,-0.032105002552271,-0.040227871388197],[0.0311647541821,-0.13534264266491,-0.037772998213768]],[[0.020841101184487,-0.067681580781937,-0.056711249053478],[0.014640999957919,-0.11160288751125,-0.019106987863779],[-0.040141977369785,0.00084710633382201,0.030005235224962]],[[0.012332123704255,0.047550790011883,-0.13384649157524],[-0.051443960517645,0.00628757243976,0.10383202135563],[-0.01923649199307,0.012662692926824,0.027769243344665]],[[-0.06111966073513,-0.018430829048157,-0.043652076274157],[0.014725552871823,-0.061579998582602,0.021377531811595],[0.12090653181076,-0.093627244234085,0.059736710041761]],[[-0.014591562561691,-0.070860758423805,0.050455901771784],[0.02725769393146,0.073318630456924,0.066718623042107],[-0.14832927286625,-0.068867795169353,0.011973737739027]],[[-0.070044368505478,0.018030477687716,-0.091016307473183],[-0.085848301649094,0.099946483969688,0.12086994946003],[-0.053247198462486,-0.093035444617271,0.050279214978218]],[[-0.074566207826138,-0.05904147028923,-0.028567960485816],[-0.031616367399693,0.12059133499861,0.063964247703552],[-0.12722261250019,-0.024191025644541,-0.004778518807143]],[[0.022286232560873,0.018693691119552,0.023721937090158],[-0.001927858684212,0.11977775394917,0.024960607290268],[0.089465588331223,-0.036372750997543,0.0012217944022268]],[[-0.076573319733143,-0.030432889238,-0.060548808425665],[-0.012525020167232,0.02466943487525,0.029736522585154],[-0.071372531354427,-0.0014796443283558,-0.0085758594796062]],[[-0.087000213563442,0.017131073400378,0.021980883553624],[-0.0012050925288349,0.0097846938297153,0.062897354364395],[0.035659499466419,-0.023794764652848,-0.0036522476002574]],[[-0.081880085170269,-0.10092985630035,-0.048487719148397],[-2.3245316697285e-05,0.005106027238071,-0.056391090154648],[-0.0081280060112476,0.051330629736185,-0.011538540013134]],[[-0.01216172799468,0.029942007735372,-0.10748157650232],[0.0026654652319849,0.10364676266909,0.12278481572866],[-0.0061907088384032,0.018792316317558,0.015121936798096]],[[-0.016201725229621,-0.026181792840362,0.085411906242371],[0.094091169536114,0.031471785157919,-0.15127404034138],[0.0031373808160424,0.087257452309132,-0.034468609839678]],[[-0.0050295791588724,-0.058666627854109,-0.030341381207108],[0.013234293088317,0.030617097392678,-0.072026126086712],[-0.060692023485899,0.0052827205508947,-0.02887400239706]],[[0.061088979244232,-0.037656221538782,0.025413315743208],[0.073421820998192,-0.053152859210968,0.0092044435441494],[0.057734981179237,0.0032176405657083,-0.018821779638529]],[[-0.018904838711023,-0.032816272228956,0.038401465862989],[-0.0041957092471421,-0.032578196376562,-0.018249358981848],[-0.0061055412515998,0.056792993098497,0.030998913571239]],[[0.014347683638334,-0.015726884827018,-0.1528096050024],[-0.058196824043989,-0.065141260623932,-0.00741580221802],[-0.01885873451829,-0.033834233880043,-0.0044242925941944]],[[-0.0011935865040869,0.019823338836432,0.0048565571196377],[0.010949061252177,-0.10230908542871,0.027719484642148],[0.08344716578722,0.026547720655799,0.0079014869406819]],[[0.0019605073612183,-0.071854948997498,0.0054931240156293],[0.065284132957458,-0.043410897254944,-0.040070325136185],[0.056863214820623,0.013153865933418,-0.017238294705749]],[[-0.0095056723803282,0.027272570878267,-0.042504519224167],[0.0028561914805323,-0.0093640564009547,0.061500586569309],[0.022437140345573,0.039673138409853,-0.022117277607322]],[[0.20073059201241,0.063908696174622,0.00065533857559785],[-0.097091868519783,0.09388042986393,-0.1126975491643],[-0.23020389676094,0.099667258560658,0.0072902021929622]],[[0.01477347780019,0.055265314877033,0.0098581295460463],[-0.029872199520469,0.048339627683163,0.041458573192358],[0.013383361510932,-0.044531930238008,0.036984100937843]],[[0.021140191704035,-0.063968427479267,-0.10694829374552],[0.11549805104733,0.032374702394009,-0.029309764504433],[0.019824353978038,-0.067826673388481,0.025271594524384]],[[-0.036839995533228,-0.044016249477863,0.01852978952229],[-0.03557075932622,-0.097504764795303,-0.0039020460098982],[-0.10435315221548,0.036997962743044,0.0076962928287685]],[[-0.10726121813059,-0.048839904367924,0.094158753752708],[-0.038433376699686,-0.035604875534773,0.043760877102613],[-0.01424662489444,0.11887685954571,0.039088942110538]],[[0.0168665535748,-0.059878770262003,-0.002827690448612],[-0.057547077536583,-0.043457221239805,0.063704930245876],[-0.046336330473423,-0.034317534416914,0.04421753808856]],[[0.044738654047251,-0.0029480441007763,-0.007714313454926],[0.059772986918688,0.014017846435308,-0.024738864973187],[-0.011147720739245,0.07211709022522,-0.00015466619515792]],[[-0.08834083378315,-0.22233505547047,0.021615182980895],[0.067013576626778,-0.044081121683121,-0.0088778315111995],[0.073102749884129,0.18350428342819,0.14527247846127]],[[-0.051675252616405,-0.014640101231635,0.033706184476614],[-0.0043569556437433,-0.042156003415585,-0.060491189360619],[-0.061590563505888,-0.039414010941982,-0.017569422721863]],[[-0.0037319003604352,-0.016015768051147,0.010271113365889],[-0.051890403032303,-0.097985222935677,-0.025276912376285],[0.045921888202429,-0.029656963422894,0.0011814176104963]],[[-0.072211846709251,0.032677236944437,0.10691787302494],[0.026226013898849,-0.040727935731411,0.053689192980528],[0.069762460887432,-0.045103527605534,0.045875195413828]],[[0.034830927848816,0.019818749278784,0.059848181903362],[-0.039346151053905,0.0090225832536817,-0.093084298074245],[-0.0088637489825487,0.016686372458935,0.04144075512886]],[[0.10445512831211,-0.050029907375574,0.093943804502487],[-0.075643830001354,-0.10361631959677,-0.071282856166363],[-0.022942947223783,-0.077517725527287,0.059008821845055]],[[0.076380826532841,-0.005877791903913,-0.13757108151913],[-0.037369135767221,-0.017616733908653,0.013462291099131],[0.15955412387848,-0.12728971242905,0.12547969818115]],[[-0.14460265636444,0.065664641559124,0.035413861274719],[-0.038514416664839,-0.049125332385302,-0.091780215501785],[0.00012533098924905,0.091599203646183,0.13714183866978]],[[-0.04093212634325,0.090298093855381,0.027216406539083],[-0.043160568922758,0.032852862030268,-0.052784495055676],[-0.022424913942814,0.01163603272289,-0.057916678488255]],[[0.053119271993637,-0.054251328110695,-0.01603620685637],[0.0047789397649467,0.018808662891388,-0.14578452706337],[-0.044288381934166,-0.039773423224688,-0.069316208362579]],[[-0.051100589334965,0.089406736195087,0.12760551273823],[-0.01377677731216,0.021267360076308,0.069290205836296],[-0.014637700282037,0.063410051167011,0.073272667825222]],[[0.065289378166199,-0.002193468157202,-0.03120468556881],[-0.019229382276535,-0.058168590068817,-0.0079821525141597],[0.024717235937715,-0.056152123957872,-0.072187386453152]],[[-0.19881618022919,-0.15481166541576,0.18027006089687],[-0.14077053964138,-0.064371936023235,0.035888209939003],[0.14854469895363,-0.038576807826757,-0.10452615469694]],[[0.031497988849878,-0.041344068944454,-0.024419261142612],[-0.087860159575939,-0.048536863178015,-0.052256390452385],[-0.010545984841883,-0.03576410189271,0.040250789374113]],[[-0.029587281867862,-0.03635373711586,-0.068028278648853],[0.081912823021412,-0.032069269567728,0.052022144198418],[0.017225230112672,-0.00049409118946642,0.06037874147296]],[[0.012822521850467,0.034946445375681,0.0034974042791873],[0.01157496124506,0.063499882817268,0.07167012989521],[-0.040333844721317,-0.054679166525602,-0.016985857859254]],[[-0.044333651661873,-0.04729962348938,0.11781928688288],[0.01529036834836,-0.15777429938316,0.015727378427982],[0.021104253828526,0.086073473095894,-0.03661497682333]],[[0.027281291782856,-0.045555781573057,0.052660644054413],[0.036476574838161,-0.004912483971566,0.13369642198086],[-0.040078695863485,0.044501952826977,-0.01072003878653]],[[0.16520415246487,0.028287766501307,-0.020715933293104],[0.033773604780436,-0.048988670110703,-0.047432567924261],[0.016442775726318,-0.021060375496745,-0.11774355918169]],[[-0.067422665655613,-0.10587254911661,-0.07729871571064],[0.0077250455506146,-0.014917872846127,-0.012169241905212],[0.0099876094609499,-0.022588388994336,-0.076150462031364]],[[-0.1228571459651,-0.0053988639265299,0.10550055652857],[0.024790851399302,-0.0076083103194833,0.085422441363335],[0.1101613342762,-0.015662349760532,0.043313648551702]],[[-0.010362170636654,-0.024283522740006,-0.036983549594879],[-0.01243338920176,0.045904938131571,-0.1209095492959],[-0.18839119374752,0.066373243927956,-0.022476071491838]],[[-0.053126160055399,0.0029269496444613,-0.030180981382728],[0.044309560209513,-0.032126124948263,-0.045844677835703],[0.0077422494068742,-0.0082242954522371,0.065978564321995]],[[-0.059397652745247,-0.0037549829576164,0.082544893026352],[0.0046930727548897,-0.20568788051605,0.053190220147371],[-0.0078522050753236,-0.029603337869048,-0.037366900593042]],[[0.034924995154142,-0.026560535654426,0.039522979408503],[0.030426796525717,0.058550342917442,-0.0061795995570719],[0.025988515466452,0.036338225007057,0.040965966880322]],[[-0.068479433655739,0.03744862601161,0.050090800970793],[-0.0069568264298141,0.099741518497467,-0.039191786199808],[-0.016469093039632,-0.03274666890502,-0.050036784261465]],[[-0.030797012150288,0.019244343042374,0.021310875192285],[-0.16187882423401,-0.093469344079494,-0.016254605725408],[0.0090826023370028,-0.13850043714046,-0.066662929952145]],[[-0.0089085167273879,-0.061465915292501,0.055310372263193],[0.083693578839302,0.0088355345651507,0.15813870728016],[0.021725768223405,0.020371820777655,0.18451577425003]],[[0.063871800899506,-0.019577521830797,-0.01558898575604],[0.010955694131553,-0.012574105523527,-0.085715629160404],[0.033990859985352,-0.0045240852050483,0.020563246682286]],[[-0.05797628685832,-0.031819894909859,-0.021784843876958],[0.1004433631897,0.017979111522436,0.087242320179939],[-0.030308164656162,-0.045499823987484,-0.0053232591599226]],[[0.16249600052834,0.18966740369797,0.013015604577959],[0.040736313909292,-0.021588057279587,0.0027967235073447],[-0.018279084935784,-0.077013455331326,-0.10599993169308]],[[-0.079601228237152,-0.0035301393363625,-0.044286388903856],[0.067123994231224,-0.0071583092212677,-0.056259129196405],[0.020255671814084,-0.029302721843123,-0.076099172234535]],[[-0.094014033675194,0.074082843959332,-0.029649812728167],[0.071374647319317,-0.066417656838894,-0.047266066074371],[-0.050555698573589,-0.044100139290094,-0.017170052975416]]],[[[0.019229661673307,0.0072977398522198,0.046291101723909],[0.023285612463951,-0.038212884217501,-0.011572089977562],[-0.013373927213252,-0.038039542734623,-0.069673433899879]],[[-0.068577766418457,-0.055435795336962,-0.10112398862839],[-0.046643946319818,-0.035698682069778,0.04766645655036],[-0.020955933257937,-0.081137232482433,-0.12161146849394]],[[0.080762960016727,-0.04211039096117,0.16087748110294],[-0.087590910494328,-0.19121773540974,-0.13968214392662],[-0.031580369919538,-0.08045768737793,-0.086124062538147]],[[0.0069371052086353,-0.062103472650051,-0.060233768075705],[-0.068997286260128,-0.097157597541809,-0.078134842216969],[-0.094036675989628,0.044995628297329,-0.02417459897697]],[[0.13935911655426,0.079141385853291,0.027247434481978],[-0.018028618767858,0.016855549067259,0.056057658046484],[-0.07061305642128,-0.072478577494621,-0.072947733104229]],[[0.052448265254498,0.018667949363589,0.026898432523012],[-0.0043722684495151,-0.056966379284859,0.0060754125006497],[0.00016607655561529,-0.028814408928156,-0.04103272780776]],[[0.0083534270524979,-0.093456335365772,0.02310686558485],[-0.10882011801004,-0.14472538232803,-0.013955400325358],[-0.1104720979929,-0.028265146538615,0.02226029522717]],[[-0.0064908242784441,-0.034914791584015,0.073493227362633],[-0.1456468552351,-0.081825129687786,-0.12307475507259],[0.059458412230015,0.043616227805614,0.12348766624928]],[[-0.049944620579481,-0.038215897977352,-0.044452551752329],[-0.076088309288025,0.064088642597198,-0.024573791772127],[-0.051834542304277,0.065885335206985,0.065355911850929]],[[-0.010809395462275,0.060960728675127,-0.014666615054011],[0.0087980628013611,0.0025875042192638,0.0341134108603],[-0.10617125034332,0.012961238622665,-0.09267383813858]],[[-0.060212720185518,0.073517039418221,-0.043002966791391],[-0.056241177022457,-0.0088944090530276,0.017634084448218],[0.053179446607828,-0.046919923275709,-0.074505150318146]],[[0.053946319967508,0.068304196000099,0.068808019161224],[-0.054834548383951,0.0041534225456417,0.029410421848297],[0.10233692824841,-0.063777558505535,-0.15956452488899]],[[0.005305415019393,0.037793561816216,0.08067312836647],[0.041307125240564,0.0092944856733084,-0.030185576528311],[0.078105613589287,-0.02791859023273,-0.0206637121737]],[[0.010144075378776,-0.06728982180357,0.10449317097664],[0.0051711685955524,0.017468778416514,0.12278275936842],[-0.12722004950047,-0.03757881373167,-0.035931818187237]],[[-0.035251598805189,-0.057969991117716,-0.070366561412811],[0.0096906507387757,0.025200959295034,-0.047580283135176],[0.0061908783391118,0.031913589686155,0.0012514236150309]],[[-0.14851288497448,0.070277899503708,-0.070592142641544],[0.021284092217684,0.046707693487406,-0.043275866657495],[-0.045780666172504,0.020121026784182,0.03853602707386]],[[-0.092318244278431,-0.074963368475437,0.044945247471333],[-0.06378099322319,-0.041433095932007,-0.091287158429623],[0.15600757300854,0.024829652160406,0.041329506784678]],[[-0.00022837417782284,-0.13308371603489,-0.028534861281514],[0.010773359797895,0.052908025681973,-0.016977021470666],[0.010654723271728,-0.091913148760796,-0.065802969038486]],[[0.070205807685852,0.01267062406987,-0.021961256861687],[-0.12562976777554,-0.04790323227644,-0.10621820390224],[0.00073746999260038,0.02376371063292,0.067205384373665]],[[0.083680801093578,0.024039281532168,0.069996282458305],[-0.033262319862843,-0.018359623849392,-0.014300203882158],[-0.0078520281240344,-0.03657453879714,-0.022905914112926]],[[0.10337706655264,0.046204604208469,-0.10711843520403],[-0.08845691382885,-0.071811646223068,0.058976113796234],[0.003532333066687,-0.014627044089139,0.086063474416733]],[[0.09187775105238,0.003797068959102,-0.10436049848795],[-0.0039969547651708,0.066742315888405,-0.0065662381239235],[0.004315547645092,0.0098000438883901,0.055373195558786]],[[-0.018797095865011,-0.11141988635063,-0.017415737733245],[0.0091748367995024,-0.030443362891674,-0.0048570409417152],[0.01923262514174,0.059205424040556,-0.016768932342529]],[[0.05193467438221,0.0017078288365155,0.11993300914764],[0.045273877680302,-0.018343839794397,0.11180754750967],[-0.066086463630199,0.023872865363955,0.021745435893536]],[[-0.032684113830328,-0.096968851983547,-0.01852915994823],[-0.015315615572035,0.096629828214645,0.073725245893002],[0.0078770881518722,-0.023291908204556,0.0090526342391968]],[[0.008313799276948,0.09647911041975,-0.010410057380795],[-0.016720721498132,0.0057003707624972,0.039402808994055],[0.019313538447022,-0.033935230225325,-0.075024992227554]],[[0.15980008244514,-0.0068978434428573,7.0529509685002e-05],[-0.18653978407383,-0.052840247750282,-0.07042296230793],[-0.054863814264536,0.061494242399931,0.0011215740814805]],[[-0.29490238428116,-0.14476858079433,-0.054448407143354],[0.071787357330322,0.0016617665532976,0.17083382606506],[0.051480133086443,-0.051998890936375,0.068748109042645]],[[-0.035828433930874,0.044168241322041,0.15217882394791],[0.053876247256994,0.098959989845753,-0.13680495321751],[-0.00022069399710745,-0.050006873905659,-0.063504807651043]],[[-0.09997271746397,-0.043726950883865,-0.090644679963589],[-0.065968535840511,-0.020968124270439,-0.18367809057236],[-0.044183604419231,-0.046194113790989,-0.014271261170506]],[[0.055046565830708,-0.012213946320117,-0.071043081581593],[-0.010722348466516,-0.12759463489056,-0.015504118055105],[-0.071868941187859,-0.019476609304547,0.047277644276619]],[[0.16699446737766,0.093790642917156,-0.004915532656014],[-0.068346843123436,-0.097411505877972,-0.038847178220749],[-0.0061850678175688,-0.034013420343399,0.027803895995021]],[[-0.074134089052677,-0.07543633878231,-0.057206023484468],[-0.018316056579351,-0.025678403675556,-0.059021279215813],[-0.09376398473978,0.0086982343345881,-0.041015297174454]],[[0.092280022799969,0.077430412173271,-0.0021452121436596],[0.018114870414138,0.096637837588787,-0.068832598626614],[-0.027698244899511,0.01596706174314,-0.063123427331448]],[[0.09423103928566,0.039861928671598,0.0035054597537965],[0.034423999488354,0.033091459423304,-0.011111914180219],[-0.0018771813483909,0.023259524255991,0.047328185290098]],[[0.00030709218117408,-0.0071453470736742,0.05359211191535],[0.0038165135774761,-0.077755399048328,-0.0045018116943538],[0.053200677037239,0.018013851717114,-0.014614681713283]],[[-0.038760744035244,0.091542080044746,0.045719806104898],[0.083379939198494,0.054884634912014,0.088765367865562],[-0.10008762031794,-0.0094304149970412,0.024896293878555]],[[0.014922449365258,0.018042709678411,-0.058034989982843],[0.066409431397915,-0.011478991247714,-0.043956086039543],[-0.045167502015829,-0.036494467407465,-0.052977547049522]],[[-0.0048803384415805,-0.036743711680174,0.051897492259741],[0.029418395832181,0.059452977031469,0.11114421486855],[0.0082475291565061,-0.05070348829031,0.021640356630087]],[[0.21770995855331,0.17461234331131,0.067924045026302],[0.019432676956058,0.024870686233044,0.012714348733425],[-0.12625499069691,-0.21338306367397,0.018306858837605]],[[0.15156096220016,0.021931443363428,0.061400946229696],[0.054370209574699,0.0042303721420467,0.061818536370993],[-0.075124800205231,-0.070721618831158,-0.040232498198748]],[[0.0071695186197758,0.019540814682841,0.02719915471971],[-0.072138026356697,0.026127135381103,0.0046551520936191],[-0.031031411141157,0.00089702726108953,0.043900944292545]],[[-0.040222883224487,0.038065407425165,0.025605088099837],[0.033594697713852,0.017396096140146,-0.091876789927483],[-0.020228672772646,-0.021924942731857,0.060331642627716]],[[-0.015502373687923,-0.016488144174218,-0.070276245474815],[-0.069478802382946,-0.075546912848949,0.059403240680695],[0.013344422914088,0.0072830165736377,0.046123772859573]],[[-0.037153962999582,-0.037365294992924,-0.10375324636698],[0.093059122562408,0.052467983216047,-0.030579257756472],[-0.10566319525242,-0.021086210384965,-0.13403449952602]],[[0.018698358908296,0.063842445611954,0.018318504095078],[0.057503394782543,-0.0070225768722594,-0.022753039374948],[-0.009137025102973,0.032009769231081,-0.045362442731857]],[[0.059348415583372,0.11012345552444,0.15652953088284],[-0.12635158002377,0.095484599471092,-0.04292706400156],[-0.077243328094482,-0.043361399322748,-0.036974165588617]],[[-7.5486241257749e-05,-0.038202449679375,0.1502523869276],[-0.074278153479099,-0.00079642760101706,-0.10897533595562],[-0.12556585669518,0.06514298170805,0.0012800563126802]],[[-0.11608099192381,-0.028133172541857,0.0039761625230312],[-0.030227804556489,0.14003700017929,-0.01164972782135],[0.055087763816118,0.028478607535362,-0.16119368374348]],[[0.029436348006129,-0.071869984269142,-0.1467486768961],[-0.014314736239612,0.072796761989594,-0.093307577073574],[0.046070750802755,0.22724199295044,0.03291717171669]],[[-0.026025863364339,-0.0091716032475233,-0.035621248185635],[-0.023168452084064,-0.037405423820019,-0.068343870341778],[0.010883615352213,0.016925901174545,0.029674695804715]],[[-0.12021239846945,-0.043054416775703,0.033538620918989],[-0.10672335326672,-0.062420509755611,-0.018314033746719],[0.17913258075714,-0.0088277561590075,0.026761442422867]],[[-0.081746339797974,0.053151395171881,-0.0047582616098225],[-0.040854416787624,0.0022476909216493,0.094090238213539],[-0.050649952143431,-0.073334239423275,0.016687316820025]],[[0.022371500730515,0.036077801138163,-0.014564766548574],[-0.073649384081364,0.018637157976627,-0.092781983315945],[0.017192615196109,0.035997375845909,0.011772367171943]],[[0.02741657756269,0.093147709965706,-0.046091347932816],[-0.037944823503494,0.016004711389542,0.050714138895273],[0.049227058887482,0.007930058054626,0.12538367509842]],[[0.12310665100813,0.11074569821358,0.096814259886742],[0.01123896241188,-0.02302773296833,0.0096828974783421],[-0.050755094736814,0.037944562733173,-0.13264445960522]],[[-0.0083085913211107,0.025190437212586,0.029888601973653],[-0.089653134346008,0.0031389323994517,-0.089443482458591],[0.086785361170769,-0.060680486261845,0.062481004744768]],[[-0.0079512456431985,-0.0032128759194165,0.0081782042980194],[-0.12775644659996,0.0046947952359915,-0.061068665236235],[0.064478881657124,0.023720113560557,0.046199969947338]],[[0.13530819118023,0.016169646754861,0.072431907057762],[0.035263895988464,0.05475839599967,-0.050187591463327],[-0.046006351709366,0.036477711051702,0.048382941633463]],[[-0.03942871466279,-0.060377459973097,-0.034902140498161],[0.017164584249258,0.025427905842662,0.016580007970333],[0.046629052609205,0.0057844161055982,0.031907867640257]],[[-0.080364696681499,0.0091938190162182,-0.011878846213222],[0.12722928822041,0.032455302774906,0.023445568978786],[0.0079361591488123,-0.0064723710529506,-0.0034442499745637]],[[0.029731595888734,0.026021668687463,0.059854570776224],[0.085695661604404,-0.078565053641796,-0.033082388341427],[0.0035079880617559,-0.041259299963713,-0.065151788294315]],[[-0.047792214900255,0.039213489741087,-0.024472830817103],[-0.050061129033566,-0.054742194712162,-0.071010686457157],[0.0037531384732574,0.041330344974995,-0.048598852008581]],[[0.017276413738728,-0.030391434207559,0.048542566597462],[0.094103291630745,0.12414586544037,0.071918927133083],[-0.14794525504112,-0.003367830067873,-0.0044941660016775]]],[[[0.047437984496355,-0.043935749679804,0.0094788130372763],[-0.081070579588413,-0.062974765896797,-0.030751651152968],[0.01917246170342,-0.10859804600477,-0.075801521539688]],[[0.18989509344101,0.091343745589256,-0.011835982091725],[0.068775482475758,0.036422930657864,0.072396263480186],[0.054595053195953,-0.031769350171089,-0.019929340109229]],[[0.12239383906126,0.038966424763203,0.030339065939188],[0.053755339235067,-0.021441156044602,-0.10098966211081],[-0.011062692850828,-0.16269625723362,-0.16644105315208]],[[-0.037719130516052,-0.089482016861439,0.083509251475334],[0.010209635831416,-0.019831465557218,-0.13807493448257],[-0.054705359041691,0.020624725148082,-0.081386849284172]],[[-0.031621553003788,-0.03561183065176,-0.039148356765509],[0.071243494749069,0.011435073800385,0.030537808313966],[0.047781210392714,-0.054057516157627,-0.045251954346895]],[[-0.024859245866537,-0.037227287888527,-0.029882712289691],[-0.004581862129271,0.027096770703793,-0.024094184860587],[0.0090374136343598,-0.11492675542831,-0.020554004237056]],[[0.035920202732086,0.044354412704706,-0.0086566088721156],[-0.095819927752018,-0.1214969009161,-0.028737602755427],[-0.053443640470505,-0.11474122107029,-0.084951981902122]],[[-0.096017181873322,-0.14405144751072,-0.064304821193218],[-0.033881716430187,-0.064294166862965,0.019235255196691],[-0.017065063118935,-0.065964922308922,-0.03976384550333]],[[-0.015950685366988,-0.044270761311054,-0.020943403244019],[0.09320180118084,-0.05462297052145,-0.0086781550198793],[-0.060280628502369,-0.050141397863626,-0.084087155759335]],[[0.022044755518436,-0.061638779938221,-0.030163278803229],[-0.027286760509014,0.0019560544751585,-0.08341483771801],[0.034390848129988,-0.0088918516412377,-0.0062725595198572]],[[0.002706789644435,-0.018193421885371,-0.0048962319269776],[-0.0052192285656929,-0.14484767615795,-0.0078908437862992],[0.036797236651182,-0.074335753917694,0.026404162868857]],[[-0.062599442899227,0.068331502377987,0.023463066667318],[-0.022661997005343,-0.10225816071033,-0.012955220416188],[0.004221604205668,-0.16132065653801,-0.077573664486408]],[[-0.045735765248537,0.028944553807378,-0.012469671666622],[0.10683324933052,-0.025927109643817,-0.0062010693363845],[-0.015197391621768,0.020011112093925,-0.033864159137011]],[[0.051694571971893,0.071935780346394,-0.0006732446490787],[0.017673866823316,-0.054689183831215,0.041478767991066],[-0.025855138897896,0.029837479814887,0.087339334189892]],[[-0.066448450088501,-0.12105792015791,-0.011084107682109],[0.019686883315444,-0.097842022776604,-0.099906548857689],[-0.014313021674752,-0.10473562777042,-0.059965014457703]],[[-0.070362709462643,-0.065604411065578,-0.044096771627665],[-0.078751236200333,-0.05164859816432,-0.020124590024352],[-0.091826304793358,-0.10265776515007,0.078085571527481]],[[-0.17757807672024,-0.096080638468266,-0.023115653544664],[-0.17668767273426,0.012585768476129,-0.073695093393326],[-0.041625004261732,-0.15026357769966,-0.081107154488564]],[[0.041015431284904,-0.037792209535837,0.02923771739006],[0.016525479033589,-0.046314481645823,-0.00056751794181764],[-0.063923895359039,-0.013161613605917,-0.026575423777103]],[[-0.05981907621026,-0.036383621394634,0.0020407459232956],[-0.056946448981762,-0.041366789489985,0.045540407299995],[0.055539421737194,-0.0088850203901529,-0.05598870664835]],[[0.051831539720297,0.025196816772223,-0.028513073921204],[0.038223098963499,-0.037376567721367,-0.061051461845636],[0.034688580781221,0.010703654959798,-0.031403347849846]],[[0.036764826625586,0.037531029433012,0.038607433438301],[-0.0039407988078892,-0.063276596367359,0.024969447404146],[0.03834106773138,-0.028138410300016,0.0017994019435719]],[[0.00080089399125427,0.019609432667494,0.045198440551758],[0.020425027236342,-0.020532168447971,-0.070811927318573],[-0.026184527203441,0.055848706513643,0.05353282764554]],[[-0.032791994512081,-0.0047964379191399,-0.056825060397387],[-0.063918195664883,0.014354142360389,-0.035486813634634],[0.0097798798233271,0.042582500725985,-0.003840918187052]],[[0.051013566553593,0.12175550311804,0.00066572369541973],[-0.045516770333052,-2.8427808501874e-05,0.048375781625509],[-0.0091475350782275,0.12271182239056,0.091365002095699]],[[0.12630811333656,-0.015546469017863,0.0029418529011309],[-0.023595545440912,-0.0047835847362876,-0.0065692402422428],[0.0425925552845,0.056921299546957,0.063230209052563]],[[0.11285877972841,0.012007884681225,0.02328216470778],[-0.0036025200970471,-0.054593563079834,-0.0080133406445384],[0.071947120130062,-0.029330169782043,-0.014995732344687]],[[-0.02556056715548,-0.038794558495283,0.02704781666398],[-0.12396822869778,-0.029712464660406,-0.043592173606157],[-0.05429058521986,-0.10218591243029,0.042233426123857]],[[-0.058724146336317,-0.11367829144001,-0.061982151120901],[-0.047487922012806,-0.01950865238905,-0.068110935389996],[-0.069594115018845,-0.058504242449999,-0.094320043921471]],[[-0.10579873621464,-0.018543710932136,0.0045791720040143],[-0.040725328028202,-0.00061356695368886,0.0043357056565583],[0.02579452842474,0.037322707474232,0.010759289376438]],[[-0.0071532661095262,-0.14997392892838,-0.032429859042168],[-0.0015809526666999,-0.070493958890438,-0.069175809621811],[-0.11180435866117,-0.011274095624685,-0.055688891559839]],[[-0.008976579643786,0.027964295819402,-0.029110381379724],[-0.08617091178894,-0.032317042350769,0.014748723246157],[0.075858175754547,-0.0035633177030832,-0.089009620249271]],[[-0.019199976697564,-0.0024630352854729,-0.032771598547697],[-0.0085554998368025,-0.051672361791134,-0.030078560113907],[0.017732478678226,-0.11597105115652,0.048375181853771]],[[-0.012725382111967,-0.028484193608165,-0.00056570052402094],[-0.048129480332136,-0.02157468535006,-0.00036936235846952],[0.06314717233181,0.012665806338191,0.03742117062211]],[[0.06127442792058,0.064614102244377,-0.031650744378567],[0.14466570317745,0.15181858837605,-0.082890599966049],[0.0025746782775968,0.11627655476332,-0.027164570987225]],[[0.090945079922676,-0.061419557780027,0.00055682635866106],[-0.0076611042022705,0.029121685773134,0.0055852709338069],[-0.063467681407928,-0.012968025170267,-0.057463727891445]],[[0.022652063518763,0.0010182536207139,0.040182217955589],[0.046300064772367,0.03882510215044,0.026418849825859],[-0.039745695888996,0.0019199182279408,0.068152457475662]],[[0.053888753056526,-0.013881112448871,-0.057436808943748],[-0.02663872204721,0.0099964309483767,-0.15828648209572],[-0.0029724752530456,0.086239762604237,0.0023532386403531]],[[0.080311834812164,0.038154300302267,-0.0018883941229433],[-0.046503089368343,-0.0040975608862936,0.08493909984827],[-0.066328696906567,-0.096202470362186,-0.01775629632175]],[[-0.022550940513611,0.092626437544823,-0.010628027841449],[-0.048815783113241,0.0018372553167865,-0.013794955797493],[-0.035143356770277,-0.058733522891998,-0.060372654348612]],[[0.077972300350666,-0.023175055161119,-0.016095407307148],[-0.017717819660902,-0.013582897372544,-0.017303755506873],[-0.048982556909323,0.036184631288052,-0.068998195230961]],[[-0.060346603393555,0.010606797412038,-0.03061999194324],[-0.043612405657768,-0.041816804558039,-0.065423347055912],[-0.003573341993615,0.021500341594219,-0.059806432574987]],[[-0.066970996558666,-0.11468254029751,0.057372100651264],[-0.083735138177872,-0.042074535042048,0.065697126090527],[-0.021736640483141,-0.095874398946762,0.017929892987013]],[[-0.031196042895317,-0.061199333518744,-0.04563046246767],[-0.011436517350376,-0.0077923904173076,-0.01237730961293],[-0.032156594097614,-0.081508256494999,-0.0086588971316814]],[[-0.12811055779457,-0.059062000364065,0.032661035656929],[0.072434768080711,-0.0081536509096622,-0.041063312441111],[0.027986843138933,0.018495045602322,0.059442806988955]],[[-0.067352905869484,-0.0089340219274163,0.028277792036533],[0.072628274559975,-0.03713034465909,-0.04352205619216],[-0.034538198262453,-0.038666527718306,0.010565717704594]],[[-0.025636306032538,0.02492549829185,0.022652789950371],[-0.035245437175035,-0.054702136665583,-0.034954588860273],[-0.055119805037975,0.01123271137476,0.024408681318164]],[[-0.020361434668303,0.069625176489353,-3.1973570003174e-05],[-0.032922595739365,-0.052228901535273,-0.16989581286907],[0.0060641570016742,-0.085370980203152,-0.13239336013794]],[[0.041597872972488,0.03073108009994,-0.040632165968418],[0.064501874148846,-0.02333134226501,-0.13494409620762],[0.046514499932528,-0.0045270314440131,-0.19288817048073]],[[0.011345745995641,0.015116950497031,-0.013558203354478],[0.0032234329264611,-0.018659368157387,5.2397583203856e-05],[-0.070445403456688,-0.033138602972031,-0.024457538500428]],[[0.074950098991394,0.028822652995586,0.00087684078607708],[-0.0023269383236766,0.047542873769999,-0.082104571163654],[-0.081163667142391,0.090240441262722,-0.034351587295532]],[[-0.053933087736368,-0.0044805868528783,0.0027596049476415],[0.066805310547352,0.037270005792379,-0.0060043293051422],[0.01994969882071,-0.034393735229969,0.049618255347013]],[[0.076245993375778,-0.081129483878613,0.025166010484099],[0.020686296746135,0.084984794259071,0.057617723941803],[0.12565022706985,0.20335736870766,0.16876585781574]],[[-0.15415973961353,-0.03327926620841,-0.034549873322248],[-0.09114795178175,-0.11381585150957,0.011285131797194],[-0.052467200905085,-0.15541769564152,-0.20561882853508]],[[-0.1181545779109,0.0084651820361614,-0.045207533985376],[-0.11774336546659,-0.010732946917415,-0.050182282924652],[-0.039835143834352,-0.015373215079308,0.10585518926382]],[[-0.02102935872972,0.037265844643116,0.046976242214441],[0.033490087836981,0.036125127226114,-0.028883870691061],[-0.0087977992370725,0.051590230315924,0.041381701827049]],[[0.010459810495377,0.0062184347771108,0.073171868920326],[-0.017994923517108,0.039027381688356,0.062333971261978],[-0.028192764148116,-0.015720874071121,-0.036214951425791]],[[-0.040033794939518,-0.051142066717148,0.0081667257472873],[-0.039460312575102,-0.00036924114101566,-0.031314861029387],[-0.058519430458546,0.0032464833930135,-0.016742169857025]],[[-0.00169911631383,-0.027413219213486,-0.034033540636301],[0.032214406877756,0.018016170710325,0.093119435012341],[-0.025989111512899,-0.077819235622883,-0.045966044068336]],[[0.0064837331883609,-0.10985279083252,-0.016401568427682],[0.1370252519846,-0.03192600980401,-0.07276726514101],[0.0031306105665863,0.070538118481636,0.022271955385804]],[[-0.068337462842464,0.018772598356009,0.0029869333375245],[-0.019161717966199,0.023875497281551,0.038247216492891],[-0.022392440587282,-0.015044986270368,0.026065457612276]],[[0.0047856024466455,0.0021460740827024,-0.045360323041677],[0.0073015647940338,0.017528152093291,0.012533782050014],[-0.010105680674314,0.044149704277515,-0.098979987204075]],[[0.13950252532959,0.079206421971321,-0.10606467723846],[-0.030698137357831,-0.034171797335148,-0.15520863234997],[0.01583462767303,0.14613604545593,0.11051871627569]],[[0.042023401707411,0.00033466125023551,0.067692928016186],[-0.031054954975843,-0.0040728691965342,0.045694567263126],[0.012093751691282,-0.014868291094899,0.01164916343987]],[[0.093620136380196,0.054568771272898,0.032131236046553],[-0.058293391019106,-0.0010020859772339,0.038664020597935],[-0.028767822310328,0.081580102443695,-0.045506753027439]]],[[[-0.06609795242548,0.062265928834677,0.12258163839579],[-0.037309512495995,-0.053375117480755,-0.041661333292723],[-0.13524468243122,-0.052589446306229,0.054068814963102]],[[0.20084454119205,0.10389763116837,-0.013602775521576],[-0.01677680015564,0.073666080832481,-0.11413916945457],[0.1213246434927,-0.033404339104891,-0.14695811271667]],[[-0.082865796983242,0.014464893378317,0.035552974790335],[-0.049117777496576,-0.02504662796855,-0.025467470288277],[-0.013986415229738,-0.079897038638592,0.042096268385649]],[[-0.049349140375853,-0.13634085655212,-0.061849016696215],[0.12200258672237,0.0011368006234989,-0.0023417361080647],[-0.014326852746308,0.0062345387414098,0.031710144132376]],[[-0.0858448818326,-0.12411356717348,-0.021435292437673],[0.062992326915264,-0.023335579782724,0.0091855758801103],[0.010184499435127,0.068568676710129,0.013971000909805]],[[-0.085855737328529,-0.0087500819936395,0.073245324194431],[-0.0218938998878,-0.01255649048835,-0.013770355843008],[-0.030696721747518,-0.055798601359129,0.017226181924343]],[[0.032756689935923,0.025204779580235,-0.036896176636219],[-0.040715355426073,-0.031034838408232,0.011494686827064],[-0.035787649452686,0.060216519981623,-0.0046466342173517]],[[0.0076774987392128,0.081883527338505,0.020364442840219],[-0.022197760641575,0.043365836143494,-0.010981311090291],[0.024106776341796,0.062026064842939,-0.072709634900093]],[[-0.046658128499985,0.01954410597682,0.075298793613911],[-0.0074296961538494,0.0398900359869,0.071900382637978],[-0.03089270927012,-0.074183709919453,-0.030370755121112]],[[0.0048922216519713,-0.035935163497925,0.065399594604969],[-0.018714673817158,-0.04370005056262,0.0018212725408375],[0.012564320117235,-0.06667073071003,0.033212631940842]],[[-0.0046136109158397,0.042718723416328,-0.019022168591619],[-0.019618265330791,-0.12512618303299,0.038765002042055],[-0.0099185956642032,-0.053449004888535,0.0021515600383282]],[[0.052726201713085,0.010787947103381,0.065201826393604],[-0.01525940746069,0.018070107325912,0.007109553553164],[-0.091776840388775,-0.050202857702971,0.034191910177469]],[[-0.040390018373728,0.023856531828642,0.024229357019067],[-0.0062252357602119,-0.069140054285526,-0.005524261854589],[0.0066900281235576,-0.029093844816089,0.056216511875391]],[[0.039125166833401,-0.0127226812765,-0.093280784785748],[-0.016124902293086,0.0065857176668942,0.066584892570972],[0.089635342359543,-0.009080802090466,-0.069561295211315]],[[-0.030451280996203,0.039575703442097,-0.0098980320617557],[-0.034116994589567,0.028226153925061,-0.050924815237522],[0.0090258708223701,0.010798561386764,0.059778660535812]],[[0.094988949596882,0.13452418148518,0.085479564964771],[0.094076715409756,-0.024970388039947,-0.041846565902233],[-0.067036345601082,-0.070026986300945,-0.083856783807278]],[[-0.021269163116813,-0.029966151341796,-0.08895243704319],[0.042766895145178,0.091247044503689,-0.040603533387184],[0.04912144318223,0.029658975079656,-0.063800908625126]],[[-0.047916918992996,0.065585158765316,-0.12189140915871],[0.032692469656467,0.034042108803988,0.080644749104977],[0.017877146601677,0.063299722969532,0.10990688949823]],[[-0.065154068171978,-0.11355648189783,-0.014702857472003],[-0.040965966880322,0.0042298259213567,-0.029074266552925],[0.017274620011449,0.019046079367399,-0.086781553924084]],[[0.014458964578807,-0.082554064691067,-0.018136916682124],[0.0003682748938445,-0.034448400139809,-0.00019494428124744],[0.065661936998367,0.045113600790501,0.016823349520564]],[[-0.057568766176701,0.00049789412878454,0.070272617042065],[-0.012172855436802,0.034705061465502,0.030803810805082],[0.071611672639847,0.030108051374555,-0.10990160703659]],[[-0.11714863032103,0.017650695517659,0.0472611784935],[-0.04655784368515,0.062769755721092,-0.0022682633716613],[0.03050385415554,0.051442857831717,0.043525718152523]],[[0.034198608249426,-0.02533507719636,0.10297492146492],[-0.034337420016527,-0.088458627462387,0.00097508652834222],[-0.044771987944841,-0.052568063139915,0.027244206517935]],[[0.11898219585419,0.037426292896271,0.17983014881611],[-0.052659612149,0.018149308860302,0.072820045053959],[-0.076087795197964,-0.018735753372312,0.070113122463226]],[[0.051658552139997,0.083446264266968,0.10464805364609],[-0.016049563884735,-0.019599067047238,0.0013155682245269],[0.043875973671675,-0.034236110746861,0.025356438010931]],[[0.062493089586496,-0.028774840757251,-0.017035728320479],[-0.030314527451992,0.0048729837872088,-0.0021919955033809],[0.10490341484547,0.019746946170926,-0.0052770422771573]],[[-0.02226903103292,0.063688822090626,-0.091209813952446],[-0.022297644987702,-0.065496154129505,-0.0062387571670115],[-0.012959386222064,0.08216704428196,-0.096343286335468]],[[0.0039577907882631,0.024580892175436,0.0531055778265],[0.020675411447883,-0.012439763173461,-0.0082998108118773],[-0.10183622688055,0.047492034733295,-0.049856659024954]],[[-0.064748756587505,0.063175268471241,0.0086340112611651],[0.032778277993202,-0.048148952424526,-0.047404043376446],[0.023519597947598,-0.052072882652283,0.048570923507214]],[[-0.002120500896126,-0.08035185188055,0.040311112999916],[0.060420800000429,0.1257238984108,-0.005123705137521],[-0.0039678420871496,0.014644231647253,0.045316353440285]],[[0.047658532857895,-0.033930476754904,0.05206785723567],[0.026348438113928,-0.037581279873848,0.01061028521508],[0.047094289213419,-0.050841975957155,0.026122227311134]],[[-0.12001267075539,-0.066432483494282,0.0087013673037291],[-0.089366659522057,-0.020867336541414,0.093174509704113],[0.081508725881577,0.090445414185524,-0.034016594290733]],[[-0.0614596568048,-0.024667685851455,0.0010507550323382],[-0.0023224612232298,-0.03695784509182,0.029468562453985],[0.0052268141880631,-0.028462305665016,0.067245498299599]],[[-0.067904986441135,-0.13356947898865,-0.023128867149353],[-0.046842597424984,-0.030593134462833,0.044746097177267],[-0.017173510044813,0.011153210885823,0.09359884262085]],[[-0.15620687603951,-0.023415312170982,0.010400603525341],[-0.028584277257323,-0.13121257722378,-0.024597682058811],[-0.024359378963709,-0.10950021445751,0.037633955478668]],[[0.054024372249842,-0.014562687836587,-0.030493974685669],[-0.010842023417354,-0.039525154978037,-0.015199146233499],[-0.03050977550447,0.031957186758518,-0.062159087508917]],[[-0.028522461652756,-0.092705294489861,-0.028554055839777],[-0.050706673413515,-0.012426533736289,-0.0091774947941303],[-0.014856181107461,0.027808465063572,0.079996809363365]],[[-0.087003588676453,0.039585240185261,0.017152095213532],[0.0087434463202953,-0.0059937941841781,-0.046268027275801],[0.018786501139402,-0.035879112780094,-0.016377395018935]],[[0.11384955048561,0.028682336211205,0.083754569292068],[0.095929145812988,-0.024463508278131,0.078367076814175],[0.041707422584295,-0.047763261944056,-0.10692819952965]],[[-0.051778826862574,-0.042629778385162,-0.022425482049584],[0.0080702491104603,-0.10607764869928,-0.012587832286954],[-0.034464091062546,0.035007178783417,0.028810679912567]],[[-0.0026811198331416,-0.062341686338186,-0.0028493157587945],[0.059243142604828,-0.00099987245630473,-0.07743039727211],[0.083154536783695,0.064389817416668,-0.080951400101185]],[[-0.02139331586659,-0.072426125407219,-0.0033581939060241],[0.0069732945412397,0.0041103134863079,-0.031980849802494],[0.00030115433037281,-0.027808766812086,-0.033752657473087]],[[-0.018059141933918,-0.00069596763933077,-0.038821559399366],[-0.053604733198881,0.054597582668066,0.15173994004726],[-0.083214282989502,-0.055868331342936,0.01674653403461]],[[0.083903104066849,0.01106861513108,-0.080462604761124],[0.025194067507982,0.070949234068394,0.042127840220928],[0.01143798045814,-0.00071516516618431,0.049884505569935]],[[0.027790093794465,-0.0061095645651221,-0.10583886504173],[0.047378446906805,-0.046245764940977,0.065827384591103],[0.020377526059747,-0.065043121576309,0.064696423709393]],[[0.030250968411565,-0.085707053542137,-0.045194249600172],[-0.1617826372385,0.035095494240522,0.08775494992733],[0.025577841326594,0.03656580299139,-0.00093597557861358]],[[-0.041624393314123,-0.07428964227438,0.053934320807457],[-0.044887967407703,-0.1681332141161,0.0032582706771791],[-0.024787001311779,-0.031912412494421,0.044017113745213]],[[-0.030728405341506,-0.13977891206741,0.052547220140696],[-0.18547220528126,-0.048385076224804,-0.023020450025797],[0.063227213919163,0.094013713300228,-0.0081540634855628]],[[0.0026569408364594,-0.018267810344696,-0.033911302685738],[-0.0045017511583865,-0.0333894751966,0.052823197096586],[-0.0055419113487005,-0.019455602392554,-0.10357077419758]],[[0.033446725457907,0.025271957740188,-0.031672012060881],[-0.074773907661438,-0.037922345101833,-0.039766389876604],[0.080780036747456,-0.12462104856968,-0.12560892105103]],[[0.062497071921825,-0.050782442092896,-0.040938373655081],[0.0053688641637564,0.015647461637855,0.022038856521249],[-0.048363946378231,-0.028554866090417,-0.027234902605414]],[[0.046533521264791,-0.0034964778460562,-0.066661961376667],[0.094440788030624,0.13112789392471,0.060225948691368],[0.118801638484,0.036821682006121,-0.11153016239405]],[[-0.014578429982066,-0.090126000344753,-0.013013707473874],[0.069360643625259,-0.15409231185913,-0.054974667727947],[0.096126012504101,-0.032487560063601,-0.025996055454016]],[[0.076145641505718,-0.02184795960784,0.018766831606627],[-0.017968893051147,-0.015642788261175,0.079679913818836],[-0.051744792610407,-0.023828139528632,-0.053768213838339]],[[-0.027604671195149,-0.051766358315945,-0.11017009615898],[-0.022709922865033,0.0054429788142443,-0.0056455763988197],[0.081327371299267,-0.062551230192184,-0.026727983728051]],[[-0.019459808245301,0.054105572402477,0.038863111287355],[-0.020814679563046,-0.067635864019394,-0.00269530643709],[0.023359481245279,-0.0058728894218802,0.05120200663805]],[[0.0088106878101826,0.012402212247252,0.077865429222584],[-0.034214716404676,-0.015411167405546,0.020590335130692],[-0.11332380771637,-0.059111475944519,0.019452231004834]],[[-0.0098661230877042,-0.01406005769968,-0.021343873813748],[0.07011266797781,-0.10932324081659,-0.063424453139305],[0.022094275802374,0.01971710473299,-0.0043790806084871]],[[0.075983218848705,-0.092498987913132,-0.011968716979027],[-0.040527455508709,-0.025523124262691,0.0014575095847249],[-0.055473379790783,0.070751637220383,0.10372144728899]],[[0.0028120635543019,0.047885715961456,-0.013706553727388],[0.0012316532665864,0.011316598393023,-0.00025616155471653],[-0.042879529297352,0.011663747020066,-0.020336044952273]],[[0.075974062085152,-0.0015911187510937,-0.0043410351499915],[-0.037477593868971,0.012221760116518,-0.10250843316317],[0.0063963336870074,0.026787362992764,0.064114831387997]],[[0.027759663760662,0.11753113567829,0.12575268745422],[0.00029953802004457,-0.0020881192758679,-0.0042540496215224],[-0.041822634637356,-0.0091067394241691,0.00086113286670297]],[[0.032660488039255,0.015838503837585,-0.030667532235384],[-0.14261996746063,0.036127436906099,-0.072101823985577],[0.013037499971688,0.017557725310326,0.058681342750788]],[[-0.11055887490511,0.020463252440095,0.10643798112869],[-0.03889724612236,0.016079433262348,-0.039425209164619],[0.01605661958456,-0.082194611430168,0.032293442636728]]],[[[0.047437515109777,0.035090144723654,0.086600661277771],[0.033049497753382,0.081317737698555,0.023885384202003],[-0.0031736197415739,-0.055349238216877,-0.055471047759056]],[[0.01612183265388,0.073764130473137,0.026657603681087],[0.0099918870255351,0.019601663574576,-0.084723450243473],[-0.078683532774448,-0.080940894782543,-0.20069520175457]],[[0.05185079574585,-0.010656175203621,-0.092478409409523],[-0.043345123529434,-0.096905775368214,0.019636774435639],[-0.071307748556137,-0.084127873182297,0.065051138401031]],[[-0.012250839732587,-0.027133015915751,-0.035717654973269],[0.09027648717165,0.030095908790827,-0.070498272776604],[0.034399352967739,-0.049633458256721,-0.010233388282359]],[[-0.074941284954548,0.0087481075897813,-0.039333321154118],[0.0011250817915425,0.011959667317569,-0.055798713117838],[0.045539606362581,0.057813882827759,0.059749215841293]],[[-0.024832559749484,-0.036314893513918,0.028291819617152],[-0.043044615536928,-0.059406090527773,0.072928696870804],[-0.031643774360418,-0.0045052780769765,-0.024459816515446]],[[-0.032044515013695,-0.039233691990376,0.022194528952241],[-0.038873430341482,0.02522130869329,0.1529776006937],[0.014678089879453,-0.067158676683903,-0.016838300973177]],[[0.0072830221615732,0.019374845549464,0.099359571933746],[-0.013652294874191,-0.021165426820517,0.016007028520107],[-0.0030238693580031,0.050804138183594,-0.0096814027056098]],[[-0.0294971447438,0.034594092518091,-0.11199955642223],[-0.035106617957354,-0.0020397647749633,-0.067153848707676],[-0.028203528374434,0.018498901277781,0.0089232558384538]],[[0.070566564798355,-0.05432715639472,-0.13161091506481],[-0.068798281252384,-0.08135249465704,-0.05299224331975],[0.013617179356515,0.044332422316074,0.01861634477973]],[[-0.066897220909595,-0.030852036550641,0.0070775155909359],[0.036104761064053,0.048054378479719,-0.050035871565342],[-0.075594894587994,0.037813793867826,-0.087174735963345]],[[-0.032598592340946,-0.060514580458403,-0.02505293302238],[0.11031170189381,-0.069975562393665,0.044977661222219],[0.03617987036705,0.036808125674725,0.05659294128418]],[[-0.035278510302305,0.054936960339546,-0.050789564847946],[-0.075872786343098,0.011724398471415,0.037001449614763],[-0.036319080740213,-0.043261080980301,0.03412476927042]],[[0.044615346938372,-0.0023807482793927,0.012909684330225],[-0.10839425772429,-0.059263233095407,-0.086151205003262],[-0.070210225880146,0.014886664226651,-0.068720534443855]],[[0.039633348584175,0.032930705696344,-0.01350075379014],[0.032256051898003,-0.004131025634706,-0.074876375496387],[-0.062901705503464,0.017149835824966,0.024017171934247]],[[0.11469065397978,0.047445811331272,-0.10978724807501],[0.0075572803616524,-0.14636845886707,-0.1134150698781],[0.036178089678288,0.096141137182713,0.012389807030559]],[[-0.06238742172718,-0.084320142865181,-0.057737249881029],[-0.082360334694386,-0.050976164638996,0.0072796298190951],[0.038405295461416,0.029203800484538,0.063063427805901]],[[-0.037413071841002,0.034344639629126,0.17598916590214],[-0.11078395694494,-0.018957152962685,0.14438533782959],[-0.014534184709191,-0.064353540539742,0.10061229020357]],[[-0.03246096149087,-0.033536985516548,0.0071858391165733],[0.025168687105179,-0.046138036996126,-0.052636593580246],[0.045427985489368,0.010651995427907,-0.091283217072487]],[[-0.013296511024237,0.042597807943821,0.015128940343857],[-0.06290390342474,-0.01279220264405,0.042186826467514],[-0.01789940521121,-0.00099775171838701,0.043920576572418]],[[-0.061697140336037,-0.025168403983116,0.027611788362265],[-0.15289732813835,-0.1233271509409,-0.030590632930398],[-0.083772763609886,-0.17634819447994,-0.066966243088245]],[[0.076552577316761,0.10179185122252,0.074198551476002],[0.022980634123087,-0.022918254137039,-0.194006934762],[0.029737403616309,-0.0047971531748772,-0.12549035251141]],[[-0.0027300261426717,-0.017713541164994,-0.041701953858137],[-0.031550448387861,-0.12411005049944,-0.025837071239948],[-0.13833902776241,-0.067998826503754,0.046926580369473]],[[0.15356321632862,0.037323363125324,0.04177064448595],[0.111461982131,0.062356803566217,0.06023059040308],[0.049700751900673,0.11958780139685,0.034897036850452]],[[0.018764050677419,-0.046113800257444,-0.0088398726657033],[0.055766459554434,-0.05019024387002,-0.062811657786369],[0.06950481235981,0.015797300264239,0.10242690145969]],[[-0.0029653611127287,0.056700952351093,-0.076053194701672],[-0.018235489726067,0.03243051096797,-0.03131952509284],[0.022682916373014,0.029501555487514,0.027508979663253]],[[0.035417802631855,0.0076232268474996,-0.0006050190422684],[0.10587463527918,0.011546777561307,-0.093701578676701],[0.015231662429869,0.025277804583311,-0.036962226033211]],[[-0.085587881505489,0.037933219224215,0.078427717089653],[0.01578332670033,-0.017135543748736,0.067596897482872],[-0.039309211075306,-0.057638373225927,-0.034870438277721]],[[-0.010336311534047,-0.019879415631294,-0.023381786420941],[-0.023626698181033,0.015850039198995,0.055275123566389],[-0.062252305448055,-0.013494320213795,0.041753493249416]],[[0.00086909474339336,-0.084677428007126,-0.026228610426188],[0.0018890800420195,0.054228879511356,-0.040218461304903],[0.026217509061098,-0.028460057452321,0.031377166509628]],[[0.010135635733604,-0.10546141117811,-0.07421813160181],[0.03550898656249,-0.01600943878293,0.067116111516953],[-0.0011859969235957,-0.036094695329666,0.043790478259325]],[[0.027990585193038,-0.011159571819007,-0.038958974182606],[0.0031206123530865,-0.099919565021992,0.015351660549641],[0.048195507377386,-0.01376117579639,0.079973295331001]],[[-0.035109791904688,0.0066988840699196,-0.026294473558664],[-0.021567968651652,0.018457785248756,-0.041431743651628],[0.020460125058889,0.015899715945125,-0.019200650975108]],[[-0.040878880769014,-0.091954752802849,-0.1513818949461],[0.036574650555849,0.025261020287871,-0.10306750983],[-0.037665821611881,-0.12140955030918,-0.043443538248539]],[[-0.14543762803078,-0.021510999649763,0.044719066470861],[-0.30365225672722,0.004451188724488,0.010713363997638],[-0.035391360521317,-0.032921317964792,-0.013351824134588]],[[-0.09879606962204,0.053983736783266,0.039906397461891],[-0.018261687830091,-0.056627191603184,-0.10660242289305],[-0.014398013241589,-0.028533359989524,0.00071056268643588]],[[0.010980320163071,-0.045210976153612,0.10124212503433],[-0.05823065340519,0.009392929263413,0.029778337106109],[-0.0081704743206501,-0.023270124569535,0.066330321133137]],[[0.052706103771925,-0.011114655062556,0.016759894788265],[0.009319263510406,-0.10818910598755,-0.029827814549208],[0.086458280682564,0.12858843803406,-0.10369122773409]],[[0.084757082164288,0.078863561153412,-0.071555487811565],[0.050076950341463,-0.027832709252834,-0.048613667488098],[-0.049984224140644,0.01713708974421,-0.030030475929379]],[[0.029943726956844,0.054118577390909,0.0072574759833515],[0.044377434998751,0.022804792970419,-0.085889890789986],[-0.030821653082967,-0.063067868351936,0.028793819248676]],[[-0.02432101033628,-0.024437880143523,0.095235399901867],[-0.039268340915442,-0.0059711011126637,0.0015564644709229],[-0.057517226785421,0.0031712704803795,-0.065032288432121]],[[0.073477178812027,0.10543040931225,-0.021494813263416],[0.030824683606625,0.0097951637580991,0.034072447568178],[0.060130793601274,0.036807488650084,0.055671293288469]],[[0.017349245026708,-0.032235771417618,-0.067071259021759],[0.12077741324902,0.0029186443425715,-0.10868041217327],[0.11743785440922,0.072965018451214,-0.0094752050936222]],[[0.043779011815786,0.021045535802841,0.0040847957134247],[-0.025586105883121,-0.072239145636559,0.0010980634251609],[-0.014322330243886,0.053955610841513,-0.086880952119827]],[[0.0017873806646094,-0.01037507224828,0.098674476146698],[0.004777055233717,0.039284773170948,-0.045106180012226],[0.058278426527977,0.043847929686308,-0.065001271665096]],[[-0.036690924316645,0.04191605001688,-0.030066628009081],[0.054794441908598,-0.15065497159958,-0.23486928641796],[-0.039036255329847,0.043017789721489,0.071945562958717]],[[-0.044024050235748,0.045583434402943,0.077890671789646],[-0.044197678565979,0.054657630622387,-0.034782972186804],[0.013467604294419,0.14240926504135,0.10591712594032]],[[0.039079640060663,-0.055023349821568,-0.038822811096907],[-0.041040170937777,0.018157109618187,-0.064204394817352],[0.037377193570137,-0.10292626172304,-0.039626888930798]],[[0.019103741273284,0.036819666624069,0.032223336398602],[0.099152997136116,-0.019971432164311,-0.0013127258280292],[0.077497914433479,0.016993634402752,0.14389602839947]],[[0.031629674136639,0.055163130164146,0.0020362767390907],[-0.040284216403961,-0.018507227301598,0.071313492953777],[-0.11782477796078,-0.021940547972918,-0.0037367600016296]],[[-0.096630044281483,0.013778280466795,-0.066936455667019],[-0.01736300624907,-0.083154290914536,0.012977694161236],[-0.071667447686195,-0.11427113413811,-0.028519351035357]],[[0.080122001469135,0.08547168970108,0.15965788066387],[0.078962020576,0.090436629951,0.050228346139193],[-0.014665114693344,0.0058521684259176,-0.046413034200668]],[[-0.067126557230949,-0.062437780201435,-0.024312702938914],[-0.057979457080364,0.028210705146194,0.0048375106416643],[-0.099787890911102,0.035583488643169,-0.011209850199521]],[[-0.11666337400675,0.019971922039986,0.018558040261269],[-0.015360581688583,-0.11561856418848,0.049553759396076],[0.024870537221432,0.05082331597805,0.006989429704845]],[[0.02294229529798,-0.0086718341335654,0.016859587281942],[-0.13852259516716,0.032798651605844,0.057760667055845],[-0.083425238728523,0.010579253546894,0.082960046827793]],[[-0.0049359924159944,-0.018836135044694,-0.085733532905579],[-0.078877210617065,0.033873859792948,-0.0019886533264071],[0.020534362643957,0.025861922651529,0.0082073099911213]],[[-0.022172374650836,0.078353181481361,0.063634559512138],[0.042617850005627,-0.055093452334404,-0.046668950468302],[-0.053849171847105,-0.020491618663073,0.049037437886]],[[0.063736081123352,0.033143296837807,-0.0096859009936452],[0.0031802754383534,-0.026502190157771,0.060112170875072],[0.038169376552105,-0.05420209094882,-0.012432522140443]],[[0.0045003490522504,0.014905152842402,-0.065178446471691],[0.037062425166368,0.10371769219637,0.082425519824028],[0.07342728972435,0.044448491185904,-0.10606429725885]],[[0.0071046319790184,-0.037633702158928,0.054603975266218],[0.049307875335217,0.03553019464016,-0.044005364179611],[-0.002138995565474,0.015821756795049,-0.059209071099758]],[[0.014752401039004,0.02459311299026,0.013608552515507],[-0.0092091765254736,-0.05848440900445,-0.12868057191372],[0.070863150060177,-0.016339976340532,0.03438875824213]],[[-0.07643236964941,-0.016321431845427,-0.10956808924675],[0.041568081825972,0.030007774010301,-0.012163051404059],[-0.042622052133083,0.077096275985241,0.010362844914198]],[[-0.089160241186619,0.028046434745193,-0.052661929279566],[-0.019062818959355,0.059573702514172,-0.041669499129057],[-0.023388758301735,-0.050608459860086,0.02343169413507]],[[0.075972661375999,0.017013635486364,-0.03571480512619],[0.027726735919714,-0.067481778562069,-0.0037414948455989],[-0.063960075378418,0.043500609695911,0.071428567171097]]],[[[-0.087664052844048,-0.065991602838039,0.038348842412233],[-0.019659010693431,0.029986781999469,-0.0014892984181643],[0.037258788943291,-0.026620695367455,0.054714635014534]],[[0.10328247398138,0.080904692411423,0.011893003247678],[0.080036170780659,0.035046979784966,-0.15564377605915],[0.016524825245142,0.1361239105463,-0.036319334059954]],[[-0.064088016748428,-0.028112446889281,-0.082973450422287],[-0.11560048907995,-0.044931706041098,-0.04198233038187],[-0.011403027921915,-0.0035866540856659,0.088685058057308]],[[0.011083658784628,-0.083673216402531,-0.036211311817169],[-0.045458484441042,-0.023850398138165,0.03850719705224],[0.034741301089525,-0.03547951951623,0.11001196503639]],[[-0.033043071627617,-0.045310787856579,0.083528764545918],[-0.0044700200669467,-0.091537930071354,0.015373731963336],[0.092019692063332,0.11064042150974,0.16578231751919]],[[0.01892663538456,-0.020023854449391,-0.079711228609085],[-0.058422263711691,0.0095750521868467,-0.085517294704914],[0.045116692781448,0.0083049898967147,-0.051403794437647]],[[-0.13734009861946,0.04080842807889,-0.04848500713706],[-0.010830020532012,0.12219268083572,0.068563684821129],[-0.013164882548153,0.018754284828901,0.069772332906723]],[[-0.040311697870493,0.0021150561515242,-0.144681468606],[0.018010482192039,0.064151868224144,0.09787168353796],[0.0069823726080358,-0.018030095845461,0.076894879341125]],[[-0.087878718972206,-0.0059972531162202,0.023298421874642],[0.005678535439074,-0.042241953313351,-0.024086825549603],[-0.020996503531933,0.057012002915144,0.068662017583847]],[[0.026576925069094,-0.048583168536425,-0.035589594393969],[-0.047569457441568,0.018082508817315,0.00018107607320417],[0.006508681923151,-0.098720319569111,-0.11255300045013]],[[0.067192688584328,0.044069036841393,-0.020456997677684],[0.10999482125044,-0.012449136935174,-0.057340119034052],[-0.051707219332457,-0.0039840498939157,-0.023366916924715]],[[0.042272347956896,-0.12201478332281,-0.12725999951363],[0.015345411375165,0.0029042223468423,-0.0037395872641355],[-0.035305261611938,0.010256460867822,0.029542408883572]],[[-0.059119276702404,0.02326232008636,-0.058533400297165],[-0.053604446351528,0.016124866902828,-0.052414733916521],[-0.089673019945621,-0.027667244896293,-0.0010279315756634]],[[-0.06983345001936,-0.084680512547493,-0.13615164160728],[-0.024294055998325,-0.077719397842884,-0.17065387964249],[-0.046684268862009,0.024258941411972,0.0025355753023177]],[[-0.047843489795923,-0.043510783463717,0.11824022978544],[-0.0017848724965006,-0.032905329018831,-8.6889711383265e-05],[-0.011940347962081,-0.040883164852858,0.0012284308904782]],[[0.013564552180469,0.076269090175629,-0.0012294722255319],[-0.038732379674911,-0.015099450945854,0.11676133424044],[0.02027559094131,-0.098789811134338,0.0026422599330544]],[[-0.029818665236235,0.087344847619534,0.0027248759288341],[-0.0026124131400138,-0.036317385733128,0.019523849710822],[-0.0045531177893281,0.12293729186058,0.0021112540271133]],[[-0.083345532417297,-0.073494017124176,-0.061922166496515],[-0.15207001566887,0.025991128757596,-0.0018865732708946],[0.021266067400575,0.013678629882634,0.10494700819254]],[[0.087364479899406,0.031399738043547,-0.046132683753967],[-0.024957397952676,0.038893237709999,0.061702247709036],[0.0024129147641361,0.054912034422159,0.072221994400024]],[[-0.047017451375723,-0.027227316051722,-0.023854630067945],[-0.0051157139241695,-0.059273146092892,0.024906866252422],[0.009196138009429,0.059380389750004,0.082019992172718]],[[-0.12135627120733,-0.18574221432209,-0.028837816789746],[-0.030507754534483,-0.05564871057868,-0.075778588652611],[0.031894147396088,0.012482024729252,-0.062754809856415]],[[-0.017139358446002,-0.027205403894186,-0.00071385991759598],[-0.034974996000528,0.081051416695118,-0.013087697327137],[0.0068664527498186,0.019048130139709,0.048651434481144]],[[-0.0045482618734241,0.011372161097825,0.043573301285505],[0.031332764774561,-0.090050727128983,-0.029532363638282],[0.040750332176685,-0.061125345528126,-0.074395447969437]],[[0.045006223022938,0.01080466248095,0.050289567559958],[0.046385455876589,0.11445222049952,0.025846743956208],[0.04829665645957,0.060622692108154,-0.023645097389817]],[[-0.03945741429925,-0.053318034857512,0.04507352784276],[0.042754497379065,-0.043046828359365,-0.010547876358032],[-0.057133972644806,-0.048045955598354,-0.060244109481573]],[[0.002195316599682,0.088043741881847,0.027245359495282],[0.015206078998744,-0.0322395414114,0.092329934239388],[0.031988710165024,0.064100228250027,0.078374907374382]],[[0.012168946675956,-0.077155970036983,0.05180923268199],[-0.019003618508577,0.014063184149563,0.012324973009527],[0.074024796485901,0.041667398065329,-0.055987890809774]],[[0.0073165292851627,-0.079489663243294,0.02618357911706],[0.067271701991558,0.03135509043932,-0.056514464318752],[0.039704035967588,-0.045004744082689,-0.028163848444819]],[[0.09750547260046,0.087641231715679,-0.016240967437625],[0.043496623635292,-0.035697378218174,-0.0030812998302281],[0.035846527665854,0.024403458461165,0.021275078877807]],[[-0.095206260681152,0.010759246535599,0.095964692533016],[-0.014885378070176,0.11996598541737,0.094134904444218],[0.014797517098486,0.02900037355721,0.065057449042797]],[[-0.12711709737778,0.058673705905676,0.1369069814682],[-0.032201610505581,-0.010842014104128,0.006709311157465],[-0.0080685075372458,0.01475209183991,0.095497004687786]],[[-0.13792906701565,-0.1019379645586,0.035738695412874],[-0.034721419215202,-0.0052257189527154,-0.053332287818193],[-0.051299944519997,0.04640494659543,-0.017916386947036]],[[-0.00066088110907003,0.026248743757606,0.078669689595699],[-0.033502366393805,-0.026789607480168,-0.0031190465670079],[0.061806637793779,0.030382813885808,0.043037250638008]],[[0.023105284199119,-0.080273352563381,-0.066661663353443],[-0.023891476914287,-0.031199144199491,-0.0082693668082356],[-0.073733031749725,-0.040445875376463,0.012864562682807]],[[-0.11625512689352,0.018440833315253,0.13226763904095],[0.079542711377144,-0.01860573142767,0.010281609371305],[0.071767568588257,-0.028340186923742,-0.082740895450115]],[[0.099831335246563,-0.064495049417019,0.032400358468294],[0.053765706717968,-0.00075331632979214,-0.056497905403376],[-0.0018024117453024,0.012487129308283,0.058374844491482]],[[-0.019772050902247,-0.028819467872381,-0.071004047989845],[0.001897357753478,-0.024245649576187,-0.032392147928476],[-0.010762583464384,-0.0099069559946656,-0.047759566456079]],[[0.015304842032492,0.013388616032898,-0.056339122354984],[-0.024470260366797,0.01072325091809,-0.096620842814445],[0.02869838476181,0.029300114139915,-0.046572763472795]],[[-0.05202579498291,0.067223198711872,0.014102233573794],[-0.037401422858238,-0.052625019103289,-0.2219945192337],[-0.0079636117443442,0.063993200659752,-0.038408294320107]],[[-0.0025942120701075,0.083493985235691,-0.11495635658503],[-0.043040342628956,0.024569775909185,0.020516192540526],[0.032834906131029,0.0095481658354402,-0.033644527196884]],[[-0.11121561378241,0.093798711895943,-0.10633493959904],[-0.092811658978462,-0.058660984039307,-0.020264562219381],[0.062449011951685,0.11391813308001,0.032291766256094]],[[-0.022674748674035,-0.01128111500293,0.055738538503647],[-0.0032594345975667,0.03478542342782,-0.025324389338493],[-0.029860446229577,0.084916539490223,-0.051852557808161]],[[-0.048847831785679,-0.13429017364979,-0.021536856889725],[-0.021928476169705,0.0057381689548492,-0.005799662321806],[-0.083241857588291,-0.0036904355511069,-0.1779790520668]],[[-0.0888397321105,-0.015806440263987,0.085362009704113],[-0.075205340981483,-0.080623604357243,0.04888916388154],[0.010760376229882,0.043041840195656,0.015303827822208]],[[-0.010910902172327,-0.04335555434227,-0.06302835047245],[0.083018273115158,-0.0074842274188995,-0.017511047422886],[-0.0026077695656568,-0.080370754003525,0.015696659684181]],[[-0.048437558114529,0.054662473499775,0.099379852414131],[0.02511303499341,0.030713830143213,0.053836692124605],[-0.086526714265347,-0.032848805189133,-0.015551012940705]],[[-0.10531571507454,0.049502667039633,0.035158179700375],[-0.11760988086462,-0.021292908117175,-0.097851879894733],[0.015858231112361,-0.048765327781439,0.024649040773511]],[[-0.022941775619984,-0.060550425201654,-0.10693987458944],[-0.026422705501318,-0.17430327832699,-0.014338654465973],[0.088848978281021,0.061653777956963,0.0027611025143415]],[[0.044211469590664,-0.018194299191236,-0.051735285669565],[0.012788468971848,0.037058085203171,-0.029848359525204],[-0.027028070762753,0.014961194247007,-0.04741658270359]],[[0.014975092373788,0.055760864168406,0.0068201017566025],[-0.08862742036581,0.024445775896311,0.012283498421311],[-0.021758707240224,-0.019207894802094,-0.016613014042377]],[[0.010220482945442,0.011586470529437,0.037195716053247],[0.016414001584053,-0.027864756062627,0.039725061506033],[0.020445110276341,-0.014382452704012,-0.061359852552414]],[[-0.09299985319376,-0.039432801306248,0.30011424422264],[0.0075129996985197,-0.099018380045891,0.11968247592449],[-0.036327622830868,0.098875164985657,0.099481761455536]],[[-0.0020278780721128,-0.027240078896284,0.070883326232433],[-0.0009895385010168,0.056704148650169,-0.0024308904539794],[-0.038335014134645,0.088322184979916,-0.050565283745527]],[[0.041136227548122,-0.0071808085776865,-0.054281640797853],[0.093154169619083,-0.019790709018707,0.07427129894495],[-0.014665380120277,-0.0088323215022683,0.025794539600611]],[[-0.059503965079784,0.041555766016245,0.050339329987764],[0.0071927672252059,-0.029112262651324,0.044450104236603],[-0.038382302969694,0.025947213172913,-0.089871324598789]],[[-0.027758503332734,0.024803617969155,-0.069343030452728],[0.019742688164115,-0.02269609645009,-0.069558955729008],[-0.017714833840728,0.068263456225395,0.043713804334402]],[[0.088512517511845,0.10066834837198,-0.029143953695893],[-0.028027819469571,-0.00074592413147911,0.0024247737601399],[-0.032787799835205,0.02013192884624,-0.03239792957902]],[[-0.075750663876534,-0.014641018584371,-0.052373629063368],[0.0074502592906356,-0.11700648069382,-0.12981390953064],[0.022363781929016,0.0076037258841097,-0.12856169044971]],[[-0.010366777889431,0.041777573525906,0.13418917357922],[-0.0084632579237223,0.12049275636673,0.0055100596509874],[-0.04492199420929,0.097432814538479,-0.034292876720428]],[[0.022518817335367,0.031727258116007,0.020513530820608],[0.020243173465133,0.031691506505013,-0.037721112370491],[0.0082611944526434,-0.035898879170418,-0.045784868299961]],[[-0.013327239081264,0.038848709315062,-0.029124462977052],[-0.086782470345497,-0.024213081225753,0.030653823167086],[-0.063512675464153,0.01346331089735,0.043525617569685]],[[-0.013799064792693,0.035293079912663,0.050360325723886],[0.062327157706022,-0.011714258231223,0.030618598684669],[-0.010179319418967,-0.15980932116508,0.038216285407543]],[[-0.016279671341181,-0.026598548516631,-0.033229079097509],[-0.012840590439737,0.013371273875237,0.016236696392298],[0.027395272627473,-0.0052519980818033,0.1074840053916]],[[0.0718844383955,0.052073866128922,-0.051516760140657],[0.0074530793353915,-0.0030459323897958,-0.055507935583591],[0.014527381397784,0.052798762917519,-0.034686721861362]]],[[[0.041792463511229,-0.047846537083387,0.067966118454933],[-0.075990006327629,0.047576427459717,-0.020170923322439],[-0.03485406935215,-0.032441768795252,0.022103380411863]],[[-0.051554959267378,0.015784239396453,-0.081300809979439],[-0.046212289482355,-0.043789844959974,-0.030382443219423],[-0.064073666930199,0.091723173856735,-0.04651277884841]],[[0.042381338775158,-0.071297489106655,0.059711672365665],[0.046882282942533,-0.045964986085892,-0.056123223155737],[-0.048965759575367,-0.15553307533264,0.00045303071965463]],[[-0.044609375298023,-0.03906811401248,-0.014353672042489],[-0.11844425648451,-0.02568488009274,0.16003221273422],[-0.019143925979733,0.026809459552169,0.074983760714531]],[[0.046095918864012,0.0076881209388375,-0.027598135173321],[0.0032210841309279,-0.00468087522313,0.033031076192856],[0.010401208885014,0.015124545432627,-0.13795179128647]],[[0.052076149731874,0.020157845690846,-0.079239927232265],[-0.020458383485675,0.020733384415507,0.082137510180473],[0.028300520032644,-0.048751000314951,-0.039489187300205]],[[-0.074078381061554,-0.015149653889239,-0.042016137391329],[-0.014417834579945,-0.013308805413544,-0.07434868812561],[-0.086859919130802,-0.037525586783886,-0.043297860771418]],[[0.025622403249145,-0.054764460772276,-0.14825110137463],[-0.01402838062495,-0.068252332508564,-0.10548162460327],[0.0042833210900426,-0.063631467521191,0.043216820806265]],[[-0.02349117025733,0.019878717139363,0.041942860931158],[-0.024886883795261,-0.082249388098717,-0.038762990385294],[0.046464212238789,-0.060082260519266,0.03679633140564]],[[0.076996728777885,0.043992146849632,0.072571538388729],[-0.025959152728319,0.022399697452784,-0.029406262561679],[-0.001549368724227,0.064019434154034,-0.042798232287169]],[[0.041993740946054,-0.053040012717247,0.0064201094210148],[0.055899918079376,0.024391312152147,0.033043079078197],[0.057438589632511,-0.049269456416368,-0.00070541730383411]],[[0.02639052271843,-0.045491680502892,-0.021699499338865],[0.0061205229721963,-0.015357008203864,0.049744959920645],[0.018533263355494,-0.050541806966066,-0.040179599076509]],[[0.035832066088915,0.060904759913683,0.13399830460548],[0.0444630458951,-0.028018333017826,0.072412833571434],[0.058814954012632,-0.11464604735374,0.079219654202461]],[[-0.0006208709673956,0.095260731875896,0.0194206610322],[0.10488837957382,0.060534548014402,0.02441274933517],[0.029854379594326,-0.010348008945584,-0.085097007453442]],[[0.13481725752354,-0.092420034110546,-0.13786688446999],[-0.058062691241503,0.020211491733789,-0.068296656012535],[0.11201510578394,-0.068795643746853,-0.083242297172546]],[[-0.13743871450424,-0.074409611523151,0.021282395347953],[0.072670310735703,0.049004275351763,-0.058011401444674],[-0.044785257428885,-0.0032341631595045,-0.049408100545406]],[[-0.069106563925743,-0.10610859841108,0.036773696541786],[0.068450145423412,-0.10563734173775,-0.01449869479984],[0.056093234568834,0.065143145620823,0.085629925131798]],[[0.051550850272179,-0.084030576050282,-0.019421521574259],[-0.039490412920713,-0.021270368248224,0.035722408443689],[-0.039016667753458,0.079616755247116,-0.041218969970942]],[[-0.0069941496476531,0.036200389266014,0.038973517715931],[-0.047805018723011,-0.082600355148315,-0.06587702780962],[0.038809657096863,-0.0031925146467984,0.064696550369263]],[[0.044819161295891,0.045205224305391,-0.027695281431079],[0.020057622343302,0.0033641303889453,-0.036892250180244],[0.06330145150423,-0.051094606518745,-0.02314218133688]],[[0.070155628025532,0.14235082268715,-0.0044396612793207],[0.027533261105418,-0.0025410880334675,-0.098172098398209],[0.012204522266984,0.037804841995239,-0.014417560771108]],[[0.16939564049244,-0.00095908314688131,-0.18534269928932],[0.065082117915154,0.045349556952715,-0.096912153065205],[0.041001863777637,-0.0065159997902811,-0.09335096180439]],[[0.015056734904647,-0.0036237770691514,-0.041788641363382],[-0.085669010877609,-0.016793420538306,0.039086956530809],[0.10005590319633,0.095025822520256,-0.0781015381217]],[[-0.069010227918625,0.080032788217068,0.14254760742188],[0.038130737841129,0.04722411185503,0.15441766381264],[0.084499597549438,0.082917392253876,-0.01400704216212]],[[0.025198509916663,-0.0054773590527475,0.022856537252665],[-0.026292299851775,0.01145400851965,0.011082454584539],[0.077504232525826,0.049893230199814,0.00081177783431485]],[[0.070368476212025,-0.066094614565372,0.087417967617512],[0.055103592574596,0.071463346481323,0.017280207946897],[0.02118781208992,-0.067559495568275,0.01061269454658]],[[-0.087553083896637,-0.099423982203007,-0.067972213029861],[-0.077917762100697,-0.041225649416447,0.021391749382019],[0.017871810123324,-0.047840010374784,0.016921501606703]],[[0.085922598838806,0.0041320528835058,-0.027354089543223],[-0.047486923635006,0.012971487827599,-0.067155070602894],[0.0079324645921588,-0.099436186254025,-0.061466842889786]],[[0.051085419952869,-0.011350399814546,-0.049322996288538],[-0.0073191630654037,0.057269353419542,0.079544022679329],[-0.010926556773484,0.021925145760179,0.0017028283327818]],[[0.056773614138365,0.071274287998676,-0.12820000946522],[0.047243013978004,-0.088423475623131,0.0024486030451953],[-0.05024441331625,0.0265426132828,-0.025712551549077]],[[0.0092064589262009,0.032817788422108,-0.021655304357409],[-0.051088266074657,-0.035082187503576,0.031311612576246],[-0.11464332789183,-0.021381529048085,-0.0031945570372045]],[[0.018605016171932,0.063656412065029,-0.087203189730644],[-0.0073954816907644,0.032743208110332,0.0034678732044995],[-0.071038626134396,-0.016521457582712,0.018142636865377]],[[-0.088723860681057,-0.050622548907995,-0.12532977759838],[0.015520680695772,-0.020826620981097,-0.0043805362656713],[0.011675748042762,0.037505939602852,-0.0010885770898312]],[[-0.045986078679562,0.10848593711853,0.12619577348232],[-0.035861194133759,0.1729351580143,-0.057167392224073],[-0.10542315244675,-0.13046978414059,-0.22162286937237]],[[-0.010631665587425,0.074226267635822,-0.018234267830849],[0.031740572303534,0.093874104321003,0.070541150867939],[-0.014328291639686,0.11904277652502,0.024498900398612]],[[-0.064191237092018,-0.07255669683218,0.017258720472455],[0.067266300320625,-0.0088390773162246,-0.020198291167617],[-0.030606841668487,0.0069524860009551,-0.067910619080067]],[[-0.082374930381775,-0.013404244557023,-0.014387834817171],[-0.017551055178046,-0.04917274415493,0.088070198893547],[-0.058306779712439,0.031788997352123,0.040388811379671]],[[-0.037156142294407,-0.009061305783689,-0.052886463701725],[-0.024175111204386,-0.043848972767591,-0.019709244370461],[0.011739248409867,0.038759175688028,0.034269284456968]],[[-0.0052069830708206,-0.015106467530131,-0.019072193652391],[0.057250995188951,0.015375047922134,-0.055110726505518],[0.0036787551362067,-0.037421070039272,0.0018642529612407]],[[-0.026806134730577,-0.010209228843451,0.069734759628773],[-0.02857687138021,0.016769217327237,-0.068036943674088],[0.012616291642189,0.027956638485193,-0.0052300901152194]],[[-0.025053517892957,0.14295054972172,0.056835483759642],[-0.074728175997734,0.024631652981043,0.077514179050922],[-0.07081826031208,-0.041961561888456,-0.010130651295185]],[[0.042878523468971,0.008159164339304,-0.026920478790998],[-0.031854003667831,-0.056676346808672,0.060490049421787],[-0.057768084108829,-0.068075947463512,-0.062464199960232]],[[0.12873119115829,0.044509842991829,-0.018960418179631],[0.045654885470867,0.027126746252179,0.10098573565483],[0.029292747378349,-0.0038392054848373,0.04104582592845]],[[-0.013979830779135,0.0914471372962,-0.0066074393689632],[0.015401989221573,-0.082032695412636,0.00975501537323],[0.046267975121737,-0.059005036950111,-0.034140791743994]],[[-0.094729237258434,-0.049863316118717,-0.068259790539742],[-0.070304155349731,-0.06636918336153,0.03241103887558],[-0.057836059480906,-0.053805321455002,0.074887320399284]],[[0.079701155424118,-0.018390979617834,0.020728915929794],[0.029069101437926,-0.01745337434113,0.023898899555206],[-0.13995763659477,-0.10779996961355,-0.040137410163879]],[[0.0027479769196361,0.043603058904409,-0.15740732848644],[0.051076706498861,0.051116399466991,-0.059251256287098],[-0.052534412592649,0.017843605950475,-0.054698016494513]],[[0.032562546432018,-0.003257614094764,0.11596053093672],[0.03173266351223,-0.067972108721733,-0.087263129651546],[0.027418972924352,-0.042239882051945,-0.078131183981895]],[[-0.057207722216845,-0.047248411923647,-0.02268466539681],[0.030193362385035,0.039229966700077,0.04263811558485],[0.022006774321198,-0.032611351460218,0.031009070575237]],[[0.038545973598957,0.10171953588724,0.014488600194454],[1.8127455405192e-05,0.087876044213772,0.033613979816437],[0.060200210660696,-0.025991156697273,-0.023391554132104]],[[0.0041790143586695,0.045691292732954,-0.00045803253306076],[0.068386107683182,0.0080080302432179,-0.029248051345348],[0.072232104837894,-0.094031877815723,0.035995375365019]],[[0.169562458992,0.039945989847183,0.062110509723425],[-0.069860145449638,-0.001836750889197,0.05698324739933],[0.010639479383826,0.063950881361961,0.087269484996796]],[[-0.0057465243153274,-0.00082552467938513,-0.094429075717926],[-0.007204323541373,0.035030979663134,-0.1116553619504],[-0.024320555850863,-0.017957650125027,-0.093270964920521]],[[0.064703539013863,0.036668375134468,0.069784790277481],[-0.092547439038754,-0.0657659471035,0.020164409652352],[-0.13535796105862,-0.12817679345608,0.013744173571467]],[[-0.010455709882081,0.052470479160547,-0.12580467760563],[-0.0097248544916511,0.074231937527657,-0.082217201590538],[-0.098424524068832,-0.019321179017425,0.062322221696377]],[[0.05320867523551,0.014561206102371,-0.020316071808338],[0.022970670834184,0.069892831146717,0.017659582197666],[0.05470547452569,0.006405312102288,0.060394152998924]],[[-0.00069652631646022,-0.031994950026274,0.096751824021339],[-0.045489199459553,-0.0097845569252968,0.056761030107737],[0.073529943823814,-0.018526641651988,-0.081632733345032]],[[0.051964987069368,-0.0026782392524183,-0.049607343971729],[-0.075502969324589,0.038460362702608,-0.035449858754873],[-0.0067180921323597,-0.0090300980955362,-0.010962657630444]],[[0.011705374345183,-0.050579063594341,-0.0060370075516403],[0.089569821953773,-0.098763920366764,0.017335200682282],[0.039728086441755,-0.020906209945679,-0.021337857469916]],[[-0.0526969358325,-0.037805553525686,-0.0043923310004175],[-0.0097980136051774,0.029560048133135,0.015592495910823],[0.0020754835568368,0.069339223206043,0.0079836547374725]],[[0.046928219497204,0.038110107183456,0.079060658812523],[-0.061069924384356,0.081749804317951,0.076134040951729],[0.075009487569332,0.078765273094177,-0.011394470930099]],[[0.059184841811657,-0.078821182250977,-0.10166961699724],[-0.054697718471289,-0.13704267144203,-0.02388839609921],[0.082692362368107,-0.00083601078949869,0.060390666127205]],[[0.01062592305243,-0.029841395094991,-0.015025799162686],[0.015904814004898,-0.059931822121143,-0.008587165735662],[-0.043190207332373,-0.074419394135475,0.042744964361191]],[[-0.06775663793087,0.014992573298514,0.024031074717641],[-0.086936764419079,0.049942534416914,-0.053475759923458],[-0.038669858127832,0.013464692980051,-0.029204791411757]]],[[[-0.022018505260348,-0.059700835496187,0.03472600877285],[-0.049913480877876,0.065272763371468,0.036262735724449],[0.06992045789957,0.022955967113376,0.068480275571346]],[[-0.0073416288942099,0.027401188388467,-0.0063130403868854],[-0.025977328419685,-0.047745734453201,-0.024911003187299],[-0.035841003060341,-0.033940013498068,0.049549125134945]],[[-0.031157527118921,-0.056123916059732,-0.025063674896955],[-0.0023201438598335,-0.10282252728939,0.045911118388176],[-0.031045973300934,0.044335797429085,0.055039569735527]],[[-0.04349971935153,-0.015056827105582,-0.021436555311084],[0.052420411258936,0.027280999347568,0.0051735541783273],[0.043540548533201,-0.014242589473724,0.055955711752176]],[[-0.051462970674038,-0.046239972114563,0.012847257778049],[0.017044981941581,0.045872841030359,0.10024596005678],[-0.0077971224673092,-0.018635189160705,0.018740380182862]],[[-0.018076838925481,-0.055519174784422,-0.0099955247715116],[0.0091855050995946,0.0076594320125878,-0.027629835531116],[-0.04506516456604,0.053041011095047,-0.01337291393429]],[[-0.036140952259302,-0.039753153920174,-0.016010865569115],[0.020017949864268,-0.093273647129536,0.058017704635859],[0.025596151128411,0.0039842245168984,0.016263322904706]],[[-0.077469661831856,0.056424472481012,-0.04322561621666],[0.005883299279958,-0.030611889436841,0.079482540488243],[-0.0033865503501147,-0.052679620683193,0.0071552596054971]],[[0.05181810259819,0.058759938925505,0.016736622899771],[-0.053329862654209,-0.038815096020699,-0.068878784775734],[0.044807717204094,-0.016468740999699,0.029365146532655]],[[0.016424996778369,-0.0074332156218588,-0.0637541487813],[0.0093808546662331,0.0030737069901079,-0.051378987729549],[0.029991364106536,-0.045784324407578,-0.016866972669959]],[[-0.13696426153183,0.031829297542572,-0.027316469699144],[0.058612059801817,-0.030483679845929,0.057404980063438],[-0.048320565372705,0.020255038514733,-0.0058812396600842]],[[-0.030263250693679,-0.018767867237329,-0.026180503889918],[-0.028706299141049,-0.03126622363925,0.049119040369987],[0.067640021443367,0.067920967936516,0.042310811579227]],[[0.040561877191067,-0.01459579449147,-0.035454764962196],[-0.11832236498594,-0.003261205740273,-0.046546708792448],[0.013335385359824,-0.045937951654196,-0.059828378260136]],[[0.025510907173157,0.068586893379688,-0.026833325624466],[-0.014454964548349,0.0037069758400321,-0.039853524416685],[-0.050168611109257,0.0061958725564182,0.026827592402697]],[[-0.073090352118015,0.0044677332043648,0.044509552419186],[-0.0411386936903,-0.043748892843723,-0.0059316945262253],[0.010769407264888,0.014103903435171,0.0681132376194]],[[-0.081516318023205,0.0042848414741457,-0.042872495949268],[-0.040031954646111,0.013982347212732,0.068437188863754],[-0.0076480284333229,-0.069379836320877,0.073859870433807]],[[-0.020543007180095,0.084048099815845,-0.069472722709179],[-0.041491467505693,0.057881623506546,0.069652214646339],[-0.035628065466881,0.087540209293365,0.038129892200232]],[[-0.053729131817818,0.020348228514194,-0.03577271848917],[0.010691920295358,0.022425195202231,0.034790735691786],[-0.07126609236002,0.09463956952095,0.0039768465794623]],[[0.016334729269147,0.0019405464408919,-0.026776246726513],[0.00026553682982922,-0.0287802554667,-0.004167843144387],[-0.068847730755806,-0.02742762118578,-0.0016151949530467]],[[0.0042424909770489,-0.075995668768883,0.036420617252588],[0.026475755497813,-0.070892140269279,0.0028165997937322],[-0.025086756795645,0.0083449957892299,0.11333760619164]],[[-0.029339281842113,-0.046356867998838,-0.080558434128761],[0.071766346693039,0.0020314063876867,-0.02548817358911],[-0.03319439291954,-0.039924934506416,-0.055510807782412]],[[-0.012860869057477,-0.077603913843632,-0.047536067664623],[-0.08142326772213,0.069658629596233,0.078264139592648],[-0.022669455036521,-0.027000045403838,0.027234017848969]],[[-0.060071032494307,0.00090662506408989,0.022633159533143],[-0.033778041601181,-0.0076206875964999,0.069618962705135],[-0.0016230884939432,-0.043160762637854,-0.010949521325529]],[[-0.071352936327457,-0.0021394754294306,-0.03250028565526],[0.02276299148798,0.12342869490385,0.029499791562557],[0.030605534091592,0.034381952136755,0.083368599414825]],[[0.035489600151777,-0.01686230301857,0.035052500665188],[-0.083170130848885,-0.016221880912781,0.048262987285852],[0.010447541251779,-0.02980213612318,-0.042159926146269]],[[0.0007940391660668,0.042935248464346,0.03395464271307],[0.026703430339694,-0.048195071518421,0.027319321408868],[0.02455959841609,-0.022172266617417,0.038595464080572]],[[0.0078312922269106,-0.047700669616461,-0.020263036713004],[-0.018903525546193,0.050617471337318,-0.039219681173563],[-0.014485959894955,-0.0023752099368721,0.011163532733917]],[[0.036138944327831,-0.007403168361634,0.016461238265038],[-0.0053986818529665,0.014657714404166,-0.0094911465421319],[-0.043523497879505,-0.025532579049468,0.015123629011214]],[[-0.0066445861011744,0.035099230706692,-0.059217512607574],[0.011263105086982,0.0037372643128037,-0.011122088879347],[-0.0037096056621522,0.12339123338461,-0.031129848212004]],[[0.014771901071072,-0.032170485705137,0.029191635549068],[0.054768428206444,-0.019203932955861,0.041620068252087],[0.014425342902541,0.12343753874302,-0.0047386880032718]],[[-0.0059914812445641,-0.053054630756378,0.071361072361469],[-0.08169449865818,-0.0080370651558042,0.034903544932604],[0.036434933543205,-0.022513078525662,0.044971253722906]],[[0.055073149502277,-0.055040836334229,-0.021248854696751],[-0.15111549198627,-0.093530833721161,0.00031522577046417],[-0.033098313957453,-0.028826178982854,0.11281032860279]],[[-0.0042880545370281,0.0019592239987105,0.0022124727256596],[-0.031660132110119,-0.065146885812283,-0.001763028674759],[0.01944019459188,0.017411343753338,-0.030560202896595]],[[-0.027988502755761,-0.070812396705151,0.037740666419268],[0.041188213974237,-0.13510124385357,-0.11724409461021],[-0.0047190878540277,-0.019258519634604,-0.058271743357182]],[[0.038627915084362,0.0026105949655175,0.066090025007725],[0.018790267407894,-0.024816773831844,-0.096164382994175],[-0.033680409193039,-0.0053549520671368,-0.069625183939934]],[[0.038650829344988,-0.005671916063875,0.0047523519024253],[-0.047293189913034,0.035609714686871,-0.091666333377361],[-0.024131057783961,-0.1354179084301,0.052986163645983]],[[0.070643596351147,-0.032155029475689,0.063843816518784],[-0.044630877673626,0.02012674883008,0.063627421855927],[-0.092320151627064,-0.049864958971739,0.014358846470714]],[[-0.069266833364964,-0.041025578975677,0.019853731617332],[0.04909210652113,0.010208410210907,0.032301936298609],[-0.0013732471270487,-0.014129081740975,-0.057879142463207]],[[-0.039551369845867,-0.018464505672455,-0.019758751615882],[0.038050226867199,0.019389122724533,0.015067436732352],[-0.047272104769945,0.0066441358067095,-0.050557252019644]],[[0.11387079954147,0.071656249463558,-0.095192469656467],[-0.028966514393687,0.033804897218943,0.069421574473381],[0.019917665049434,-0.025991136208177,-0.061862125992775]],[[-0.059451054781675,-0.043033942580223,0.054402068257332],[-0.11580114066601,-0.077285088598728,-0.087312363088131],[0.0018459531711414,-0.0033947764895856,0.097866281867027]],[[-0.052433896809816,0.013339508324862,0.020827431231737],[-0.12677821516991,0.07002517580986,-0.011804736219347],[-0.042587280273438,-0.0028972970321774,0.032322656363249]],[[-0.0043651200830936,-0.0065936865285039,0.012836471199989],[0.0059785381890833,-0.022492287680507,0.021620536223054],[0.024502826854587,-0.049058087170124,-0.038928650319576]],[[0.025196345523,-0.012340401299298,-0.029071599245071],[0.030396291986108,0.078444980084896,-0.07392930239439],[-0.045274443924427,-0.0089357485994697,0.012418859638274]],[[0.0042658015154302,0.030240455642343,-0.024166537448764],[0.0214599724859,-0.0042181042954326,0.019711265340447],[0.013224089518189,-0.02952254191041,0.026569157838821]],[[0.049229986965656,-0.10616665333509,0.024204429239035],[-0.030044553801417,0.05405305698514,-0.090659528970718],[0.010454852133989,-0.083430781960487,-0.046885866671801]],[[-0.055588442832232,-0.035676416009665,-0.029127713292837],[-0.055273283272982,0.098358556628227,0.070683114230633],[-0.11501517146826,0.041244212538004,-0.027314342558384]],[[0.045232754200697,-0.038606081157923,0.061081252992153],[0.024632913991809,-0.16672384738922,-0.05395844206214],[-0.16891495883465,-0.044637054204941,0.013542925938964]],[[0.032458409667015,0.089860610663891,0.043221734464169],[0.012184534221888,0.024155179038644,-0.040493030101061],[0.036416109651327,-0.044106893241405,0.025585496798158]],[[0.04280574247241,-0.019640268757939,0.0057258135639131],[-0.0039335926994681,0.021039942279458,0.0081257671117783],[-0.029417008161545,-0.019211206585169,0.017848372459412]],[[-0.01443609688431,-0.094919562339783,-0.0448342487216],[0.0019459442701191,0.022962601855397,0.026555418968201],[0.059812653809786,-0.046472955495119,0.022150339558721]],[[0.0044020772911608,0.101128898561,0.055747982114553],[-0.076709017157555,0.064705722033978,0.11104202270508],[-0.081158585846424,0.10287602990866,0.16932825744152]],[[0.022999171167612,0.030378436669707,-0.08232282102108],[-0.043597351759672,0.039609618484974,0.026115991175175],[0.039271745830774,0.071684189140797,-0.035094182938337]],[[-0.0059409337118268,0.032316911965609,-0.060487009584904],[-0.078228488564491,-0.043097574263811,-0.041525643318892],[0.060626532882452,0.042288772761822,0.088181085884571]],[[0.0080849910154939,0.0037840672302991,-0.030981194227934],[0.048485096544027,-0.10169367492199,-0.050787288695574],[0.013083312660456,0.049790095537901,-0.067293673753738]],[[0.043031919747591,0.057762954384089,-0.0037720447871834],[0.012901071459055,0.02399830520153,0.025102851912379],[-0.040109306573868,-0.027349604293704,-0.00014831156295259]],[[-0.010497476905584,0.071523629128933,-0.04484785348177],[0.007048777770251,0.00078056642087176,0.10196370631456],[-0.021725026890635,-0.012988984584808,-0.050571769475937]],[[-0.07658901065588,-0.015845967456698,-0.0016717561520636],[-0.040491953492165,-0.097566932439804,-0.086190037429333],[0.066398575901985,-0.0029593915678561,-0.00033448930480517]],[[-0.003480183891952,0.047556474804878,0.044656202197075],[0.066391736268997,0.018934480845928,-0.031787756830454],[0.06227283552289,0.062682941555977,0.074548281729221]],[[-0.011808999814093,0.020413737744093,0.01662727817893],[0.040627129375935,0.0074111889116466,-0.0091846501454711],[0.044464018195868,-0.046414118260145,-0.057347290217876]],[[-0.10413653403521,0.10163705050945,-0.04332634806633],[-0.041279476135969,0.070144757628441,-0.02594306692481],[-0.1028278619051,-0.062518276274204,-0.032279562205076]],[[0.0063445614650846,0.011832405813038,0.011419297195971],[0.0021645755041391,0.019793644547462,-0.02670512162149],[-0.0041858963668346,0.015652738511562,0.044257767498493]],[[0.016004599630833,-0.0012508693616837,-0.073315009474754],[0.0024049698840827,0.030575463548303,-0.0097161158919334],[0.031908240169287,-0.037274789065123,-0.0083854040130973]],[[0.045268464833498,0.016000900417566,0.092054836452007],[-0.033151876181364,-0.038761176168919,-0.026403537020087],[-0.0095565402880311,0.017184587195516,-0.036521393805742]]],[[[-0.030303856357932,-0.019475752487779,-0.028763480484486],[-0.024133058264852,0.033990353345871,0.021861236542463],[0.045365605503321,-0.01850345544517,-0.048428378999233]],[[-0.056417625397444,0.046927463263273,0.027786573395133],[-0.011779027990997,0.021447371691465,0.096626862883568],[-0.042018596082926,-0.047696527093649,-0.030390964820981]],[[-0.060959685593843,-0.010581330396235,-0.052345313131809],[-0.057092897593975,0.012385957874358,-0.030254302546382],[-0.072820760309696,-0.0010880725458264,0.011012841016054]],[[-0.013407684862614,0.0089934328570962,-0.0057557257823646],[-0.073065437376499,-0.035842467099428,0.053837481886148],[-0.074296690523624,0.012011112645268,-0.0041540469974279]],[[0.10208144783974,0.029743393883109,0.017197456210852],[-0.042939569801092,0.095371767878532,0.028046432882547],[-0.12610763311386,-0.10436610877514,-0.25725156068802]],[[-0.035529211163521,-0.041957121342421,0.0076071051880717],[-0.13658998906612,-0.038985095918179,0.045787621289492],[-0.076090693473816,-0.074731104075909,0.18714474141598]],[[0.046844556927681,-0.0233273524791,0.017989300191402],[-0.065543480217457,-0.045650582760572,-0.047794323414564],[-0.06427837908268,0.019533321261406,0.094598360359669]],[[-0.071454383432865,-0.029522327706218,0.053828310221434],[-0.008837497793138,-0.012535890564322,-0.044801503419876],[-0.035753007978201,-0.0085043637081981,-0.01143008004874]],[[-0.15369641780853,-0.016492603346705,0.11587246507406],[-0.1078492179513,-0.084117256104946,-0.042167365550995],[-0.026891965419054,0.0035474442411214,0.028979787603021]],[[-0.00025678458041511,0.052833244204521,-0.11410237848759],[0.018434641882777,-0.00738863972947,-0.09559078514576],[0.0030932286754251,-0.063499428331852,-0.019590118899941]],[[-0.096294939517975,0.048580527305603,0.078294709324837],[-0.028703698888421,-0.02933550812304,0.0026384922675788],[-0.032416690140963,-0.025978412479162,-0.075728416442871]],[[0.027504345402122,0.021761547774076,-0.0088399052619934],[-0.046708296984434,-0.070453636348248,0.075396068394184],[-0.019085990265012,-0.00038651417708024,-0.074908278882504]],[[-0.12177335470915,-0.029141072183847,-0.12892255187035],[-0.023154510185122,0.026896493509412,-0.036995906382799],[-0.020264241844416,0.052400447428226,-0.10210187733173]],[[0.010704223066568,0.027781307697296,-0.064121313393116],[-0.0084528485313058,0.0269775390625,0.040359888225794],[-0.020837470889091,0.066596552729607,0.0075750048272312]],[[0.020291294902563,0.030712021514773,0.021894443780184],[0.033262524753809,0.035273939371109,0.0067391190677881],[-0.054139584302902,0.0018214861629531,-0.0059751593507826]],[[0.015358075499535,-0.0031651230528951,0.032834406942129],[0.0093753123655915,-0.087078005075455,-0.11772464960814],[0.064155273139477,0.092437840998173,-0.039445891976357]],[[-0.03442544490099,-0.0057431133463979,-0.0034749223850667],[-0.066927619278431,-0.017723068594933,-0.12461929768324],[-0.064054280519485,-0.0048244441859424,0.031340766698122]],[[0.02322475425899,-0.0070954952389002,-0.089971266686916],[-0.10780464112759,-0.058590047061443,-0.012904851697385],[-0.070006310939789,-0.02839232981205,-0.030242385342717]],[[0.067050069570541,0.005072008818388,-0.045433145016432],[-0.0084767248481512,-0.015562352724373,-0.025247607380152],[-0.012912380509079,0.010057243518531,0.032329246401787]],[[-0.030478300526738,0.025404298678041,0.021739408373833],[0.00068097451003268,0.023945523425937,0.033999633044004],[-0.003931793384254,-0.0062307952903211,-0.053719282150269]],[[0.0049864635802805,-0.097684592008591,-0.039190229028463],[-0.010322499088943,0.00072961411206052,0.037505049258471],[-0.0097749195992947,0.0076608690433204,0.038559921085835]],[[-0.034805402159691,0.015855612233281,0.038278345018625],[-0.0093985358253121,0.024361381307244,-0.047601439058781],[-0.016214588657022,-0.031134804710746,0.067534610629082]],[[-0.084530264139175,-0.01289214938879,0.0069675431586802],[-0.0041627329774201,-0.0196139421314,-0.026419097557664],[-0.011816647835076,0.1139160990715,0.14424122869968]],[[0.054525516927242,0.095860481262207,0.16263706982136],[0.098813198506832,0.074283786118031,0.11988604813814],[0.085181869566441,-0.010567656718194,-0.002369238762185]],[[0.054756917059422,-0.11200127750635,-0.12698282301426],[0.026052877306938,0.086326017975807,0.0047081364318728],[0.0080251572653651,-0.054081093519926,0.12239299714565]],[[0.0023649586364627,0.028726326301694,-0.048942029476166],[0.031416930258274,-0.0044240057468414,-0.0083060953766108],[0.023399021476507,0.042604152113199,-0.0034722639247775]],[[-0.048815414309502,0.0017988708568737,-0.084631390869617],[-0.10385803133249,-0.087120018899441,0.10782177746296],[-0.065599448978901,-0.040466398000717,0.024677766487002]],[[0.086628541350365,0.061916574835777,0.042927417904139],[0.0016881595365703,0.014783211052418,0.12696930766106],[0.025879668071866,-0.018186124041677,0.15825907886028]],[[-0.016071926802397,-0.053138624876738,-0.0051187933422625],[0.037156514823437,-0.013040642254055,0.030783444643021],[0.015139886178076,0.014038913883269,-0.106988504529]],[[-0.055936358869076,0.065683715045452,-0.057216916233301],[-0.067431963980198,-0.12149860709906,-0.098086349666119],[-0.013805911876261,0.022051582112908,-0.040267836302519]],[[0.027160974219441,0.019803078845143,-0.073854528367519],[-0.024394342675805,-0.05253878608346,-0.12535780668259],[0.035332035273314,-0.013321872800589,-0.093244083225727]],[[-0.01100882422179,-0.08099477738142,0.03087106347084],[-0.097157016396523,-0.068104155361652,-0.0026849762070924],[0.0019065620144829,0.08157455176115,-0.089324101805687]],[[-0.10688661783934,-0.046706512570381,0.018216226249933],[-0.018166348338127,0.011031484231353,-0.016637308523059],[-0.010509174317122,-0.019016386941075,0.010194030590355]],[[0.038162488490343,0.072132810950279,-0.014790552668273],[-0.0075667607598007,-0.12746208906174,0.051778070628643],[0.03714532032609,0.075908683240414,0.011722011491656]],[[0.010950489901006,-0.026613600552082,0.058199308812618],[0.0029454978648573,0.083832658827305,0.017822876572609],[-0.039554417133331,0.0080190319567919,0.072936445474625]],[[-0.076568596065044,0.025522340089083,0.044175576418638],[0.086758129298687,-0.02003413811326,0.024649200960994],[0.074953742325306,0.016807554289699,0.00065258541144431]],[[0.042261220514774,-0.066413916647434,-0.051496610045433],[0.0014680282911286,0.082062892615795,0.045984528958797],[0.0031280159018934,0.0016469334950671,-0.043507996946573]],[[0.0051985182799399,-0.020665053278208,-0.075911208987236],[0.0014025319833308,0.067240081727505,-0.039264190942049],[-0.060084413737059,0.00058021850418299,-0.037518683820963]],[[0.057574357837439,-0.085644900798798,-0.044411882758141],[0.042786292731762,0.02368482388556,0.058894298970699],[0.040770299732685,-0.041223049163818,0.041424211114645]],[[-0.035301454365253,0.033072229474783,-0.063481442630291],[-0.033103402704,-0.001588572980836,0.035771261900663],[-0.013747843913734,-0.011653317138553,0.078016452491283]],[[0.034769486635923,-0.053746584802866,0.0046147261746228],[-0.013914044946432,-0.073005795478821,-0.0045553054660559],[0.014529513195157,-0.0047218352556229,0.084253273904324]],[[0.048413254320621,0.086076214909554,0.051525875926018],[0.04221960529685,-0.056393209844828,-0.06580114364624],[0.046795345842838,-0.024788061156869,-0.037162113934755]],[[-0.0075143151916564,0.016719957813621,0.041503798216581],[0.0070982589386404,0.052321180701256,0.076822482049465],[0.021697485819459,0.035001903772354,0.020823884755373]],[[0.024510983377695,-0.024157326668501,0.074371330440044],[-0.031377207487822,-0.050813805311918,-0.086645744740963],[-0.083338804543018,0.008902040310204,-0.0034952312707901]],[[0.076293081045151,-0.026171231642365,-0.0011442897375673],[-0.065396137535572,-1.94043313968e-05,0.09703304618597],[-0.087730541825294,0.0064452830702066,0.034543402493]],[[-0.023726342245936,-0.058026678860188,-0.15115205943584],[-0.018547769635916,0.048874773085117,-0.10465494543314],[-0.063298039138317,-0.093549117445946,-0.13039118051529]],[[-0.054625604301691,-0.072839386761189,0.0049459869042039],[-0.093896292150021,-0.014724751003087,0.046321980655193],[0.046723276376724,0.030317207798362,0.078627951443195]],[[-0.096574991941452,-0.13515001535416,0.01754449121654],[0.03338260948658,-0.078547731041908,0.0077672963961959],[0.026619801297784,-0.021539617329836,0.045024558901787]],[[-0.018723318353295,-0.04158753529191,-0.065973356366158],[-0.0016223266720772,0.035508837550879,-0.055424805730581],[0.020459992811084,-0.095916524529457,-0.049175821244717]],[[-0.046133290976286,-0.11325695365667,-0.081216245889664],[-0.026743948459625,-0.045058604329824,-0.10036527365446],[0.026820905506611,0.10581161081791,-0.090428084135056]],[[-0.025947628542781,-0.0056778225116432,-0.075104452669621],[-0.043213412165642,0.048228316009045,-0.065086893737316],[-0.10508944839239,-0.036759626120329,0.027074998244643]],[[0.13606959581375,0.099266812205315,-0.074589967727661],[0.062630593776703,0.1280200779438,-0.00021166312217247],[0.041145779192448,0.0010098835919052,-0.035267785191536]],[[0.0433259755373,0.055499572306871,-0.077757105231285],[-0.0032430568244308,0.050672862678766,0.036379612982273],[0.029773321002722,-0.068098597228527,0.020541802048683]],[[-0.0017531183548272,0.0075307432562113,0.070006877183914],[-0.017322627827525,-0.034148391336203,-0.12953901290894],[-0.080430157482624,0.042841218411922,0.092945583164692]],[[0.017648719251156,0.017919559031725,0.0025909375399351],[-0.031130833551288,-0.018564244732261,0.051705904304981],[-0.014637058600783,-0.031262081116438,0.015107872895896]],[[-0.0098881628364325,-0.025952378287911,-0.017413854598999],[0.024656068533659,-0.0075976108200848,-0.039715889841318],[-0.066910266876221,0.041693489998579,0.018043503165245]],[[-0.14347347617149,0.022274054586887,0.017010917887092],[-0.060591775923967,-0.077407233417034,-0.066581852734089],[-0.052896991372108,0.052273228764534,-0.013732598163188]],[[-0.041323270648718,0.0052806274034083,0.0055520944297314],[-0.067153200507164,0.0089414324611425,-0.0013261906569824],[-0.025931064039469,-0.004552704282105,0.10939678549767]],[[0.053092982620001,0.025336561724544,-0.030904613435268],[-0.0030307641718537,0.11039312928915,-0.036254808306694],[-0.038253720849752,-0.07036404311657,-0.13310307264328]],[[0.0049887415952981,-0.048024959862232,-0.062050629407167],[0.0032521192915738,-0.025207502767444,0.072126545011997],[-0.025844568386674,-0.010776930488646,0.079874999821186]],[[0.026900842785835,-0.06045925244689,-0.010417519137263],[0.077167451381683,0.022852865979075,-0.047965347766876],[-0.024982744827867,-0.032063528895378,0.0079253362491727]],[[-0.03193848952651,-0.071822978556156,-0.031216684728861],[-0.023818293586373,-0.049608133733273,-0.074248000979424],[-0.017560325562954,0.015513086691499,-0.19061109423637]],[[-0.046764552593231,-0.12845143675804,0.028627960011363],[-0.019902987405658,-0.075612440705299,-0.1069418489933],[-0.026721518486738,0.010578866116703,0.034628629684448]],[[-0.018137741833925,-0.03200251609087,0.018410293385386],[0.013872366398573,0.021537190303206,0.0016979512292892],[-0.025505052879453,0.07829062640667,0.056505873799324]]],[[[-0.13262034952641,-0.15747371315956,-0.014904764480889],[0.021931163966656,-0.084571592509747,-0.11866230517626],[0.019849179312587,0.028445646166801,-0.053976092487574]],[[0.06022334843874,0.12493351101875,0.033097635954618],[-0.11382298916578,-0.091106057167053,-0.038241282105446],[-0.056625805795193,0.041108671575785,-0.076673701405525]],[[0.041559897363186,0.047918189316988,0.057572856545448],[-0.035080838948488,-0.080581344664097,-0.03377828374505],[-0.027520060539246,-0.15733216702938,-0.096159100532532]],[[0.018392277881503,-0.028188357129693,-0.11413525789976],[0.031348433345556,0.014771810732782,-0.10016117244959],[-0.077009998261929,0.048690065741539,0.0029780180193484]],[[-0.019650975242257,0.010614465922117,-0.022926667705178],[0.068109877407551,0.0092329364269972,-0.00066406972473487],[-0.055139139294624,-0.030248891562223,0.017246961593628]],[[-0.022755470126867,0.049184646457434,0.029387969523668],[-0.020076029002666,-0.15728083252907,-0.027806801721454],[-0.032815013080835,-0.033682700246572,-0.012858555652201]],[[-0.016581488773227,0.054103080183268,0.078073643147945],[-0.043127577751875,0.02010472305119,-0.013377569615841],[-0.16359534859657,-0.080696918070316,-0.026666520163417]],[[-0.0037054459098727,-0.10893269628286,-0.00985162332654],[0.056982561945915,-0.014158169738948,0.04729350656271],[-0.041504636406898,-0.029486164450645,-0.058280486613512]],[[0.025839677080512,-0.069868296384811,0.036375667899847],[-0.041690018028021,-0.037591364234686,-0.032866191118956],[-0.063380554318428,0.046212770044804,0.081251226365566]],[[0.017133135348558,-0.047162413597107,-0.024700419977307],[0.049800164997578,0.15603831410408,0.0051417169161141],[0.0005922969430685,-0.018337361514568,0.0073902579024434]],[[0.043562244623899,-0.070515371859074,-0.034178640693426],[-0.068857155740261,-0.041947219520807,-0.01876912638545],[-0.053896181285381,0.055662751197815,-0.018662307411432]],[[-0.021782085299492,-0.029846839606762,-0.028949214145541],[0.0054853414185345,0.056349363178015,0.005755225662142],[-0.067552201449871,-0.03909569606185,-0.013404955156147]],[[-0.004273715429008,-0.028476290404797,0.039542123675346],[-0.018654275685549,-0.036483865231276,0.0020273581612855],[-0.015222148969769,-0.056913699954748,0.030929319560528]],[[0.05366126447916,0.10374495387077,-0.030220814049244],[-0.0023571385536343,0.028416629880667,-0.061686646193266],[0.0066898334771395,0.10283814370632,-0.037413205951452]],[[-0.046874079853296,-0.01910649985075,-0.05745591968298],[-0.00081441947259009,-0.05975241586566,-0.012355743907392],[-0.08125077188015,-0.039615124464035,-0.077234052121639]],[[-0.0085489880293608,0.007369423750788,-0.014646234922111],[-0.10132225602865,-0.01059212256223,-0.050714712589979],[0.00831688195467,-0.022399934008718,0.019074220210314]],[[-0.055374700576067,0.024913284927607,-0.11102455854416],[0.014794588088989,-0.087576173245907,0.083344809710979],[0.040151987224817,-0.0092228520661592,0.020349493250251]],[[0.11436268687248,0.033949725329876,0.0026158094406128],[-0.080630742013454,-0.057210549712181,-0.028237348422408],[0.0024513630196452,0.04098692163825,-0.045814480632544]],[[-0.018327571451664,-0.017202677205205,-0.0063259480521083],[-0.038208093494177,-0.013413185253739,-0.055255685001612],[-0.069648630917072,-0.00092553393915296,0.045132409781218]],[[0.056829787790775,0.06392464786768,-0.020331339910626],[-0.032215058803558,0.025680704042315,-0.0025189018342644],[-0.0091468831524253,0.0013217707164586,-0.05620102584362]],[[0.026369811967015,-0.0004990134621039,0.084388688206673],[0.033309783786535,-0.024425446987152,-0.023252578452229],[-0.03268863633275,-0.016408847644925,-0.054301038384438]],[[0.021255759522319,-0.04487507417798,-0.22028549015522],[-0.083789885044098,-0.054999940097332,-0.046654436737299],[0.090124554932117,0.014532123692334,0.04641791805625]],[[0.063344493508339,0.015312497504056,-0.038256138563156],[0.02923865430057,0.10673110187054,-0.02019970677793],[0.0011403287062421,-0.03922526538372,-0.068956471979618]],[[-0.01166828814894,0.027748776599765,0.042262438684702],[-0.024532485753298,0.068860396742821,0.014481952413917],[-0.080862939357758,0.040712118148804,0.10504703968763]],[[0.0039754277095199,0.074382685124874,-0.0030588582158089],[0.010627386160195,-0.13841253519058,0.010533990338445],[-0.027063438668847,-0.053978681564331,0.0056405859068036]],[[0.068067044019699,-0.01790283806622,-0.026393912732601],[0.028234031051397,0.069042004644871,0.036474578082561],[-0.028785370290279,-0.010981423780322,0.025071209296584]],[[-0.085456609725952,0.028787277638912,-0.049444001168013],[-0.061883468180895,-0.064964704215527,-0.02749066054821],[-0.017798254266381,0.010314703918993,-0.018494285643101]],[[-0.0098020825535059,-0.018033843487501,-0.04690208658576],[-0.017531240358949,-0.034254055470228,0.053418774157763],[-0.061712000519037,-0.012052251957357,-0.096397295594215]],[[0.084195517003536,0.020134463906288,0.0001818221207941],[0.12786239385605,-0.082663796842098,0.057698912918568],[-0.07411003112793,0.052684165537357,0.040556997060776]],[[0.01086466293782,-0.069984681904316,0.016566781327128],[-0.096031077206135,0.004384271800518,-0.034919571131468],[-0.0040801125578582,-0.060270976275206,-0.022640191018581]],[[-0.019075499847531,-0.092550382018089,0.024873033165932],[0.011196260340512,-0.014280068688095,0.048558164387941],[-0.020386921241879,-0.10529377311468,0.05801547691226]],[[-0.067190930247307,-0.02997593395412,0.012823681347072],[-0.061768610030413,0.005683075170964,0.0032306213397533],[0.083094418048859,-0.028013825416565,-0.1164760813117]],[[-0.054012041538954,-0.07130604237318,-0.042502783238888],[0.0077035580761731,0.014266080223024,-0.039650864899158],[-0.023265261203051,-0.020492739975452,-0.039443399757147]],[[0.030611928552389,0.0069227120839059,-0.019103225320578],[-0.044880699366331,0.034390743821859,0.029137620702386],[0.11383479088545,0.077848799526691,0.017860451713204]],[[-0.014958780258894,0.005365030374378,0.015622324310243],[-0.028817068785429,0.067411884665489,-0.0037631893064827],[0.087575867772102,-0.043697100132704,-0.0050057931803167]],[[0.025513874366879,-0.02943960018456,-0.057741850614548],[0.018022807314992,0.027009889483452,-0.028670869767666],[0.037806160748005,-0.00078880751971155,-0.04975526034832]],[[-0.051859401166439,0.08083825558424,0.0030032764188945],[-0.051504708826542,-0.026720300316811,-0.0092752231284976],[-0.098324708640575,-0.039168506860733,-0.030964707955718]],[[0.044789306819439,-0.0097596682608128,0.085034534335136],[-0.035479836165905,-0.0067503778263927,0.064656160771847],[-0.051737833768129,-0.066582821309566,0.045008540153503]],[[-0.062880367040634,-0.0057675102725625,0.011255200020969],[0.031931415200233,-0.068587586283684,0.022941773757339],[0.042627196758986,-0.031020073220134,-0.014441795647144]],[[-0.034820295870304,-0.02937039360404,-0.012294618412852],[0.078241288661957,-0.0094716642051935,-0.060584895312786],[-0.026362579315901,-0.0050691706128418,0.040138959884644]],[[0.14453215897083,-0.035518404096365,-0.081154242157936],[-0.056981913745403,-0.0514458976686,-0.023264214396477],[-0.0076414020732045,0.025596817955375,0.036180548369884]],[[0.021677268669009,-0.064992249011993,0.049930181354284],[0.045639451593161,-0.08801107853651,0.034316193312407],[-0.032413356006145,-0.04033251106739,0.0092360200360417]],[[0.019596792757511,0.0079375794157386,0.01670310087502],[-0.029988568276167,0.023994166404009,-0.036065001040697],[0.0099687753245234,0.02462612837553,0.018745075911283]],[[-0.066238202154636,-0.061412613838911,-0.034775126725435],[-0.039201620966196,-0.069274313747883,-0.016682239249349],[0.087506778538227,0.017299612984061,0.077622659504414]],[[-0.044226098805666,0.056645914912224,-0.022578468546271],[-0.019371297210455,-0.014662829227746,0.028746139258146],[-0.0047726253978908,-0.10110831260681,0.038764897733927]],[[-0.0024734577164054,0.01446158438921,-0.1760026961565],[-0.059954900294542,-0.09474590420723,-0.08887130767107],[-0.071522615849972,0.031067786738276,-0.039215687662363]],[[-0.018884239718318,-0.049389902502298,0.10232371836901],[-0.023358376696706,0.041381761431694,0.036898784339428],[-0.12215211987495,0.039611242711544,-0.021741988137364]],[[-0.052402414381504,0.16161431372166,0.13936372101307],[-0.084328711032867,0.014851287007332,-0.062448307871819],[-0.0066706291399896,-0.042465519160032,-0.078390888869762]],[[0.023617008700967,-0.066158376634121,-0.044904671609402],[0.0075311777181923,0.0098945116624236,-0.028191635385156],[0.032170329242945,0.076673239469528,-0.035560220479965]],[[0.007100029848516,0.12897007167339,0.01185586117208],[0.0018600490875542,-0.015146842226386,-0.11227369308472],[0.10282006114721,-0.072692967951298,-0.019306281581521]],[[-0.0085144806653261,0.076217167079449,-0.032296255230904],[0.0098777608945966,0.0013973123859614,-0.082693450152874],[-0.049856439232826,-0.10370810329914,0.029270267114043]],[[0.042667508125305,0.0062710307538509,0.13707073032856],[0.067065268754959,0.055429320782423,0.041569530963898],[0.123021684587,0.016979252919555,0.065363682806492]],[[-0.10481757670641,-0.050116587430239,-0.083322651684284],[-0.014987245202065,-0.030653705820441,-0.11154600977898],[-0.066386871039867,-0.042371641844511,-0.079206615686417]],[[0.028407881036401,0.061037257313728,0.058354593813419],[0.0318400003016,-0.044153645634651,-0.035158514976501],[-0.11159248650074,0.01578707061708,-0.037002205848694]],[[0.0038978687953204,0.03281183168292,0.0084715504199266],[0.040166970342398,-0.023326044902205,0.033315807580948],[-0.058898501098156,0.01415335573256,-0.11081340163946]],[[0.03810765966773,-0.033953599631786,0.032929230481386],[0.020778866484761,-0.05382052063942,0.0081425327807665],[-0.05037659779191,0.012471162714064,0.0050360104069114]],[[0.040805086493492,0.038439482450485,-0.048641383647919],[0.015692345798016,-0.036598436534405,-0.020666800439358],[-0.091070033609867,-0.016364261507988,-0.050621315836906]],[[0.017253488302231,0.02985573373735,-0.018001353368163],[0.042683202773333,-0.052751481533051,0.022953709587455],[-0.024388164281845,0.065555959939957,0.068252876400948]],[[-0.021994862705469,-0.057612221688032,0.042282566428185],[0.062275730073452,-0.02597251534462,-0.011007216759026],[0.065503656864166,-0.0075127454474568,0.11318755149841]],[[-0.0094116115942597,-0.016866343095899,0.032556932419538],[-0.037969578057528,0.0069117308594286,-0.042123693972826],[-0.024085428565741,0.072278790175915,0.033224135637283]],[[-0.0098407566547394,-0.052786219865084,-0.0010264497250319],[-0.094647511839867,0.040487661957741,0.025929762050509],[-0.0027741561643779,-0.00053355633281171,-0.040905956178904]],[[-0.029568476602435,0.039801754057407,0.062756545841694],[0.0463472828269,-0.077277958393097,0.00472501385957],[-0.022730046883225,0.012527375482023,-0.0054860785603523]],[[-0.082654081285,0.047594264149666,-0.011871206574142],[0.050440527498722,0.019726302474737,0.0083720237016678],[0.022922748699784,0.032966047525406,-0.076574124395847]],[[-0.010591032914817,-0.066955961287022,0.078224152326584],[-0.089884594082832,0.035993073135614,0.0022404573392123],[-0.062356986105442,-0.063452921807766,0.036529295146465]]],[[[-0.01151620503515,0.011773076839745,0.037926703691483],[0.01848735101521,0.034398019313812,-0.0059363106265664],[-0.046552509069443,-0.074016943573952,0.0043237926438451]],[[0.0017132579814643,0.030070710927248,-0.045990463346243],[0.10179091244936,-0.012186088599265,-0.071825683116913],[0.087784193456173,-0.09656685590744,-0.14045086503029]],[[-0.10409583896399,0.030520550906658,-0.017106948420405],[-0.10409864038229,0.033215899020433,-0.037884648889303],[-0.08990927785635,0.0046613370068371,0.051785420626402]],[[0.020672522485256,-0.012123442254961,-0.14150220155716],[0.025410713627934,0.01448773033917,-0.045907530933619],[0.11296533048153,0.043099857866764,-0.074186109006405]],[[-0.025376005098224,-0.047029405832291,0.052570838481188],[0.11636625230312,-0.032855715602636,0.04084350913763],[-0.09523194283247,-0.13965687155724,-0.091532371938229]],[[0.019165094941854,-0.0057986634783447,0.016688844189048],[0.066787466406822,-0.0044315573759377,0.13862697780132],[-0.098320610821247,-0.16467393934727,0.032919775694609]],[[-0.039295811206102,0.026740752160549,-0.017724312841892],[-0.033195715397596,0.011156842112541,0.077718690037727],[-0.079984284937382,-0.038564015179873,0.028141517192125]],[[-0.038796376436949,0.026701401919127,-0.072720102965832],[0.042461551725864,-0.029720820486546,0.0056266314350069],[0.05040468275547,-0.076525323092937,-0.014121283777058]],[[0.022701943293214,0.059945892542601,0.018416190519929],[-0.064279146492481,0.10696534067392,0.056290298700333],[-0.072665348649025,0.010996890254319,-0.059310410171747]],[[0.011978824622929,-0.061990160495043,-0.075415179133415],[0.077978037297726,0.036423694342375,-0.015898559242487],[-0.032380692660809,0.074329748749733,0.095718063414097]],[[-0.071707978844643,-0.034907247871161,0.029012424871325],[0.021390657871962,0.0049644694663584,0.019274247810245],[-0.11656656116247,0.045718263834715,-0.049931116402149]],[[0.023555567488074,-0.043013926595449,-0.078541800379753],[0.07476419210434,0.018432019278407,0.01146577950567],[-0.026816945523024,0.010085369460285,0.073122009634972]],[[-0.030529541894794,-0.028649428859353,-0.11594580113888],[-0.019027257338166,-0.07780234515667,0.1964398175478],[-0.00014413193275686,0.0540383271873,-0.042489219456911]],[[-0.063430212438107,0.060325123369694,0.070926360785961],[-0.0043333326466382,0.010813931934536,0.026300424709916],[-0.013245885260403,0.022057140246034,0.06095364689827]],[[-0.10073526203632,-0.045012779533863,-0.028748735785484],[-0.065209344029427,-0.069398708641529,-0.020092161372304],[0.0038144362624735,0.017379188910127,-0.0026588507462293]],[[0.045397453010082,0.11445151269436,0.0059281238354743],[0.067411415278912,0.063023820519447,-0.041477799415588],[0.026087148115039,-0.0081712882965803,0.0027228363323957]],[[0.062982298433781,-0.061140760779381,-0.029997065663338],[0.001782369799912,0.030653543770313,-0.063113205134869],[0.017408143728971,-0.0059733050875366,0.0017369362758473]],[[0.031281359493732,0.024750826880336,0.025302404537797],[0.025188200175762,-0.032909620553255,0.03050940297544],[-0.026495527476072,-0.064785003662109,0.068213276565075]],[[-0.028431836515665,-0.10659056901932,0.027828384190798],[0.047464910894632,0.0073766009882092,-0.013571366667747],[0.0071481079794466,0.013800784014165,-0.028217678889632]],[[-0.025664232671261,0.021637400612235,0.046110715717077],[-0.019036648795009,-0.028950540348887,-0.0039230352267623],[-0.019132029265165,-0.0068366662599146,0.039826035499573]],[[0.004501914139837,0.021177420392632,0.030827600508928],[0.0021170349791646,0.096486866474152,0.020441137254238],[-0.086106806993484,-0.26654893159866,-0.028136428445578]],[[-0.036102954298258,-0.013381062075496,-0.14617203176022],[0.010980455204844,0.10149700939655,0.055006839334965],[-0.00034857325954363,-0.03209463134408,0.12059373408556]],[[-0.037894297391176,-0.0090148700401187,0.12079338729382],[0.049265146255493,0.0017423890531063,-0.0010850359685719],[-0.0037727328017354,-0.026852078735828,0.02213947661221]],[[-0.0060175131075084,0.031777661293745,0.084830947220325],[0.046585567295551,0.093033663928509,-0.0075216498225927],[0.028619544580579,0.092309318482876,0.030103595927358]],[[0.015119621530175,-0.066637426614761,0.065159261226654],[-0.093700490891933,-0.092910848557949,-0.082050763070583],[-0.081007458269596,-0.059904377907515,-0.039765279740095]],[[0.039608519524336,0.056527134031057,-0.0069725806824863],[0.031248029321432,-0.0097956024110317,0.040496438741684],[-0.034021161496639,-0.010890517383814,0.027301780879498]],[[0.058992281556129,0.015962077304721,0.012129574082792],[0.090199656784534,0.059577856212854,0.013594723306596],[-0.062849372625351,-0.02770615182817,0.045718275010586]],[[-0.0085222003981471,0.029856767505407,0.079231344163418],[-0.040427733212709,-0.0092654060572386,0.078241355717182],[0.034578278660774,0.029981832951307,-0.014009105972946]],[[0.043081596493721,0.1443412899971,0.021696800366044],[-0.027668995782733,-0.018863132223487,-0.035039078444242],[-0.053718470036983,-0.041094742715359,0.02139181829989]],[[0.062916815280914,0.037078659981489,0.074257031083107],[-0.0070591671392322,-0.019542245194316,-0.020960468798876],[-0.013812080025673,0.0528284907341,0.056657921522856]],[[-0.062680587172508,-0.0084998598322272,0.11421830952168],[-0.0028476240113378,0.03977982327342,0.069456785917282],[-0.11798284947872,-0.066777557134628,-0.047790195792913]],[[-0.010850612074137,0.013759028166533,0.0050368513911963],[0.0064963824115694,-0.033837832510471,-0.01111622620374],[0.069846704602242,-0.083173632621765,0.016060443595052]],[[0.00040185931720771,-0.011602615937591,0.011684697121382],[-0.025008695200086,-0.022519379854202,-0.048324394971132],[0.0080260969698429,0.067459836602211,-0.031006213277578]],[[-0.057847108691931,-0.10315559059381,-0.02776662632823],[-0.14120098948479,0.11075811833143,0.046279333531857],[-0.11644697189331,0.086186654865742,0.11190164834261]],[[0.042571395635605,0.029689909890294,0.038199007511139],[0.015295585617423,-0.11161327362061,-0.058935549110174],[-0.0019072099821642,0.026960365474224,-0.0017099988181144]],[[0.048062436282635,-0.0014619547873735,-0.026004666462541],[0.03329311311245,-0.006106820423156,-0.038183998316526],[-0.042908702045679,0.027271885424852,-0.040255807340145]],[[-0.028048794716597,-0.062996730208397,-0.035985689610243],[-0.01305955182761,0.087317600846291,0.0516865439713],[0.055006548762321,0.032937806099653,0.034814912825823]],[[-0.014960302971303,-0.017870390787721,-0.051348060369492],[0.041368700563908,-0.021053608506918,0.064083911478519],[0.031910110265017,-0.026716245338321,0.069830141961575]],[[-0.1181510463357,0.027617638930678,-0.0022851475514472],[0.047864641994238,0.095802918076515,0.0067465370520949],[-0.02653226070106,-0.012079169042408,-0.010062523186207]],[[-0.11314465850592,-0.14837694168091,-0.023428440093994],[-0.0077790985815227,-0.089224226772785,-0.010941793210804],[-0.082494489848614,0.04460670799017,0.088779807090759]],[[-0.033642895519733,-0.05238601565361,-0.082949243485928],[0.003967565484345,-0.046673402190208,-0.024082865566015],[0.085744172334671,0.10549680143595,-0.052898071706295]],[[-0.042809419333935,0.1534269452095,0.059746421873569],[-0.12004962563515,0.022967405617237,-0.03271285071969],[-0.030368249863386,0.010159745812416,-0.068987190723419]],[[-0.015306519344449,0.059458438307047,-0.072831094264984],[0.00072208617348224,0.071915656328201,0.0039134966209531],[-0.14975029230118,-0.058536108583212,-0.075877010822296]],[[-0.046658951789141,0.07099237293005,0.054185125976801],[0.052153442054987,-0.03745860606432,-0.057403516024351],[0.04148868098855,-0.047357711941004,0.025097098201513]],[[0.031988080590963,-0.022608283907175,-0.070965655148029],[0.02940827049315,-0.12049912661314,-0.0090116830542684],[0.15241645276546,0.018141817301512,-0.038017384707928]],[[-0.073924519121647,-0.02581537142396,-0.043714102357626],[-0.003920822404325,0.019703961908817,-0.037395153194666],[-0.029674619436264,0.088275566697121,-0.0067931548692286]],[[0.035460218787193,0.055256891995668,-0.09527125954628],[-0.018017517402768,0.059793207794428,0.093001693487167],[0.0064471452496946,-0.030302280560136,0.0020618720445782]],[[0.094339869916439,-0.047502748668194,0.14421643316746],[0.040742311626673,-0.033617176115513,-0.0064959833398461],[-0.0078622689470649,0.020884001627564,-0.014686165377498]],[[0.0045803557150066,0.0061645689420402,-0.092792361974716],[0.095594137907028,0.098131686449051,-0.07034869492054],[0.074689455330372,0.059537760913372,-0.073456235229969]],[[0.043263159692287,-0.0033754233736545,-0.0069825151003897],[-0.0053335409611464,-0.031594686210155,0.054595783352852],[0.0024632134009153,-0.0034861040767282,-0.017080370336771]],[[0.098820723593235,-0.044986210763454,0.015263608656824],[-0.096329562366009,-0.055116321891546,0.035611093044281],[0.054327111691236,0.056981094181538,-0.016369618475437]],[[0.023469323292375,0.0098581789061427,0.11021752655506],[-0.050111580640078,-0.047675974667072,0.0050557120703161],[0.091988459229469,-0.031986806541681,-0.0071518635377288]],[[0.028253395110369,-0.018575774505734,-0.043809067457914],[-0.077905893325806,-0.075299017131329,-0.038534350693226],[-0.045790188014507,0.036970421671867,-0.022445244714618]],[[-0.041161704808474,0.048760041594505,-0.076501339673996],[0.025112142786384,-0.05585540086031,0.0015797463711351],[-0.0073933661915362,0.012359346263111,-0.013196696527302]],[[0.0029566027224064,-0.0019509133417159,0.042223859578371],[-0.052931878715754,-0.04907114803791,-0.023765979334712],[0.094892129302025,-0.12260838598013,0.027961211279035]],[[0.012288555502892,0.0097635835409164,0.0018595339497551],[-0.046749647706747,0.034649506211281,-0.00044548124424182],[0.057716816663742,0.030045380815864,-0.054786588996649]],[[-0.0056669064797461,0.014252450317144,-0.036229651421309],[-0.013791241683066,0.01876699924469,0.0042481161653996],[-0.0613016448915,-0.0047795884311199,0.054239742457867]],[[-0.066025950014591,-0.014103903435171,0.023963937535882],[-0.014846161939204,-0.023201029747725,-0.020121933892369],[-0.0036887242458761,-0.011737471446395,0.044868621975183]],[[0.00092422834131867,-0.00847377628088,-0.013232937082648],[0.10609823465347,-0.058342274278402,0.18742692470551],[-0.017079321667552,0.0074665327556431,0.0036859263200313]],[[0.097815908491611,-0.073002189397812,-0.015550507232547],[0.056446481496096,0.0083310231566429,0.00070750818122178],[-0.034215003252029,-0.019514236599207,-0.021262716501951]],[[-0.12298169732094,-0.1160661354661,-0.11357618868351],[-0.036532048135996,0.036026529967785,-0.0073454445227981],[-0.018553271889687,-0.024254420772195,-0.12894685566425]],[[0.090155422687531,0.089119866490364,0.046174135059118],[-0.062277365475893,-0.07846412062645,0.077163882553577],[0.025067314505577,0.06772918254137,-0.080400601029396]],[[0.0077893100678921,-0.081332966685295,-0.059274036437273],[0.033492334187031,-0.050234988331795,-0.012193108908832],[-0.0023025230038911,0.03925908356905,0.10057484358549]],[[-0.057906597852707,0.0050618634559214,-0.003353294217959],[-0.0091808056458831,-0.0009443616727367,-0.010685221292078],[0.0067903851158917,-0.012446196749806,-0.0099035473540425]]],[[[0.026535529643297,0.072790995240211,0.015869852155447],[0.076545156538486,-0.05743271112442,-0.030916372314095],[-0.013131074607372,0.060903668403625,0.0349091142416]],[[0.018928166478872,0.0077522392384708,0.047901172190905],[0.046895503997803,-0.012403939850628,0.0057731629349291],[-0.016161784529686,0.080054931342602,-0.025389783084393]],[[0.040284242480993,0.028422620147467,-0.12657102942467],[0.058027662336826,-0.031561262905598,-0.19110609591007],[0.052946165204048,0.0072336471639574,-0.16822595894337]],[[-0.015655105933547,-0.10913897305727,-0.011042950674891],[0.014415934681892,-0.038227986544371,-0.055740371346474],[0.027961699292064,-0.046733789145947,-0.099977679550648]],[[-0.021784912794828,-0.038978420197964,0.064989484846592],[-0.055764481425285,-0.10826425254345,-0.017755668610334],[0.031449660658836,0.0063770194537938,-0.15062567591667]],[[0.011827863752842,-0.090252384543419,0.012272554449737],[0.0061577539891005,-0.11744540184736,-0.050359826534986],[0.055921833962202,-0.11777464300394,0.071426227688789]],[[-0.038144629448652,0.0059714433737099,-0.0052688294090331],[-0.12969629466534,-0.017115721479058,-0.021253138780594],[0.036722406744957,-0.032304737716913,-0.048452634364367]],[[-0.042344704270363,-0.010254308581352,0.13360399007797],[0.016063435003161,0.057959154248238,0.022152313962579],[-0.018501644954085,0.13698667287827,-0.040903937071562]],[[-0.011497098021209,-0.031231665983796,0.022015994414687],[-0.052211549133062,-0.05109940469265,-0.072810314595699],[-0.043130662292242,0.044492419809103,-0.070287823677063]],[[0.013148861005902,0.062199156731367,-0.014596197754145],[-0.050129719078541,-0.071021936833858,-0.013746590353549],[0.037773940712214,-0.027299119159579,-0.083756342530251]],[[-0.033536367118359,0.00087143125711009,-0.075157806277275],[0.073711462318897,-0.010049091652036,-0.02171790227294],[-0.0071575809270144,-0.037536036223173,-0.037009887397289]],[[-0.06570041924715,-0.0061067924834788,-0.042297199368477],[-0.061637923121452,-0.059567246586084,-0.034510921686888],[-0.029245669022202,-0.022200925275683,-0.035940069705248]],[[-0.025946376845241,-0.054894119501114,-0.029167678207159],[0.01165727339685,0.055327270179987,-0.095768049359322],[-0.021879961714149,0.089347757399082,0.11703112721443]],[[-0.007705841679126,0.01282746065408,0.015642654150724],[0.028867172077298,0.062918871641159,0.057097170501947],[-0.017541470006108,0.015888640657067,-0.02138938382268]],[[0.0028964888770133,-0.0032017037738115,-0.0472043864429],[-0.051018051803112,-0.01645252853632,-0.040178585797548],[0.038015104830265,-0.030992483720183,0.048651028424501]],[[0.012479675933719,-0.077610969543457,-0.013034448027611],[-0.025543382391334,0.01130447909236,-0.02141828276217],[0.0083599193021655,-0.0547960922122,-0.034713245928288]],[[0.016609838232398,-0.1629534214735,0.0062068169936538],[-0.03821624815464,0.053981382399797,-0.13165974617004],[0.078970842063427,0.0071803675964475,0.022460237145424]],[[0.0081737004220486,-0.061453066766262,-0.0018286255653948],[-0.066479936242104,-0.064318083226681,0.021472875028849],[0.04646785184741,-0.0060509275645018,0.059622496366501]],[[-0.040938287973404,-0.035726685076952,-0.0074389870278537],[-0.0022193279583007,-0.036236423999071,0.076281033456326],[0.0036946893669665,0.032788220793009,0.060624472796917]],[[-0.016221595928073,0.079163983464241,-0.068442836403847],[0.016080440953374,0.036216668784618,-0.10859359800816],[0.042616464197636,0.021133318543434,-0.05055159330368]],[[0.0021023242734373,-0.0035422451328486,-0.12647607922554],[0.012224276550114,0.10595374554396,-0.213966563344],[0.034115735441446,0.017560448497534,-0.011680381372571]],[[0.063866555690765,0.049792993813753,0.10089974105358],[0.061997205018997,-0.029865900054574,-0.057351790368557],[-0.045250616967678,0.017842762172222,0.003601940581575]],[[0.0048127979971468,-0.071019485592842,-0.083699621260166],[-0.030032131820917,-0.046768229454756,0.024895695969462],[-0.021215952932835,0.003790473099798,0.061903573572636]],[[0.0092348037287593,0.16855941712856,-0.028162563219666],[-0.030527014285326,0.12314376980066,-0.0077449348755181],[0.03022113442421,0.052093390375376,-0.11017234623432]],[[0.073849365115166,-0.086248435080051,-0.0023537816014141],[-0.0065653957426548,-0.034329254180193,0.014905872754753],[0.04165431112051,-0.036577127873898,0.18099464476109]],[[-0.037960454821587,0.018029117956758,-0.034169681370258],[-0.028596941381693,-0.022654220461845,0.045380648225546],[0.023638192564249,-0.018380541354418,-0.032182797789574]],[[-0.0021046986803412,-0.1007177978754,-0.01627516746521],[-0.032577406615019,-0.050391539931297,-0.069240219891071],[0.039664141833782,-0.052524946630001,-0.011747481301427]],[[0.034716885536909,-0.026233123615384,-0.035435609519482],[-0.077813260257244,-0.0072782379575074,0.021582130342722],[-0.0040504392236471,-0.048539452254772,-0.0077173700556159]],[[0.028095174580812,-0.038249254226685,-0.11287170648575],[-0.00015143200289458,0.021496677771211,0.01204258017242],[0.0021269649732858,-0.069034919142723,0.010883019305766]],[[-0.12716856598854,-0.007926169782877,-0.048459336161613],[-0.15503469109535,-0.038763791322708,-0.079375401139259],[-0.078607238829136,-0.098534658551216,-0.13349130749702]],[[0.021770872175694,0.032979197800159,0.020740583539009],[-0.042822252959013,-0.057426422834396,-0.028275905176997],[-0.010162223130465,0.023807607591152,-0.052336383610964]],[[0.062403731048107,0.0068751191720366,-0.020708777010441],[0.040402971208096,-0.04868159070611,0.075750306248665],[-0.051575966179371,0.057444710284472,-0.051413398236036]],[[-0.045010786503553,-0.094584181904793,-0.061818819493055],[0.026334306225181,-0.04682270437479,-0.029616905376315],[-0.048358984291553,-0.13477462530136,-0.016523171216249]],[[-0.080743610858917,0.048121348023415,-0.059719000011683],[0.029839806258678,-0.019608553498983,-0.093131758272648],[0.047961961477995,-0.10425890237093,0.097487464547157]],[[-0.015763552859426,-0.063055753707886,-0.064534902572632],[-0.17610484361649,-0.036820862442255,-0.0067862924188375],[-0.068242013454437,-0.023929059505463,0.052482772618532]],[[0.036177273839712,-0.038892209529877,0.052704628556967],[0.033992145210505,0.023961737751961,-0.042092386633158],[0.0094168782234192,0.014770001173019,0.008743679150939]],[[0.015904434025288,0.02974290959537,0.033678747713566],[0.029112381860614,0.085016779601574,-0.19393885135651],[-0.11598207056522,-0.11876535415649,-0.0011839631479234]],[[-0.031035112217069,-0.11163410544395,-0.044133357703686],[-0.089660078287125,-0.073607221245766,-0.037876065820456],[-0.037460073828697,-0.034362558275461,-0.068148098886013]],[[-0.01626630499959,-0.080424323678017,-0.10458097606897],[-0.048336196690798,0.0031331039499491,0.054815538227558],[-0.016227561980486,-0.0097750844433904,0.1591871380806]],[[-0.086806520819664,-0.066797010600567,0.026548035442829],[-0.0012069554068148,-0.098835863173008,0.052429467439651],[0.033064186573029,-0.031726475805044,-0.056065831333399]],[[0.0019053696887568,-0.0005458437371999,0.0069055515341461],[-0.081032432615757,-0.025454062968493,0.04346589744091],[0.018226420506835,-0.025712758302689,-0.040269900113344]],[[-0.017519740387797,-0.0086635751649737,0.0044587990269065],[0.0062209153547883,-0.043266672641039,0.00098882941529155],[0.021732719615102,0.0030163330957294,0.062953323125839]],[[0.065254554152489,-0.032588388770819,-0.064200565218925],[0.04045844823122,0.030023129656911,-0.049950197339058],[0.042309284210205,-0.095030225813389,-0.03858083114028]],[[-0.0045992038212717,-0.028462909162045,0.007021791767329],[-0.03959708660841,0.0011284603970125,-0.024440886452794],[-0.013502919115126,-0.074689731001854,-0.029691809788346]],[[-0.046253569424152,0.063988648355007,-0.066358581185341],[-0.004930192604661,-0.011781181208789,-0.16114322841167],[0.0469880849123,-0.018540486693382,-0.112728536129]],[[0.041206490248442,-0.028012318536639,-0.08038018643856],[0.034432005137205,0.060729123651981,-0.098560854792595],[-0.014191463589668,-0.046901252120733,0.010451170615852]],[[-0.012515910901129,0.0089933788403869,0.057084374129772],[-0.043038621544838,-0.044063448905945,0.073633074760437],[-0.028284544125199,-0.026521146297455,0.01482489798218]],[[0.013498821295798,-0.013262054882944,-0.023775650188327],[0.027315683662891,0.0029885238036513,0.052411183714867],[0.05920572578907,-0.030774472281337,0.12017933279276]],[[-0.050878096371889,-0.061588406562805,-0.041498385369778],[0.063287325203419,-0.02694284543395,-0.011293455027044],[0.03382982313633,-0.071941643953323,0.087542183697224]],[[-0.011024874635041,0.013804144226015,-0.065531723201275],[-0.0071221985854208,0.021078353747725,-0.0013946588151157],[0.037127837538719,0.00037959715700708,-0.042955085635185]],[[0.034134991466999,-0.047637496143579,0.049755070358515],[-0.0041259084828198,-0.09136575460434,0.00035187564208172],[-0.011756894178689,-0.032603114843369,-0.0236233510077]],[[0.051787361502647,0.037413533776999,0.087689451873302],[0.023495191708207,0.0095873000100255,0.10337355732918],[-0.0087137809023261,-0.0013535688631237,-0.12470285594463]],[[-0.0015785356517881,-0.0010659771505743,0.047599960118532],[-0.012268019840121,-0.022363027557731,0.016701363027096],[0.06719882786274,0.018667314201593,-0.074308007955551]],[[0.034399908035994,0.033001028001308,-0.014519521035254],[-0.058999981731176,0.050271682441235,0.038611866533756],[-0.030501851812005,-0.054033569991589,-0.051733244210482]],[[0.010690336115658,-0.019781172275543,0.075424991548061],[0.029763793572783,0.08330587297678,-0.073790065944195],[-0.013094518333673,0.0075255054980516,0.0098981391638517]],[[0.027520811185241,-0.062726758420467,0.072531215846539],[-0.035294834524393,-0.091822795569897,0.0284727178514],[-0.048610311001539,-0.00018257404735778,0.092783100903034]],[[0.014788533560932,0.1046589165926,-0.12180013954639],[0.03470142558217,0.045463301241398,-0.043204534798861],[-0.10025994479656,-0.11903037130833,0.026694644242525]],[[0.0015401266282424,0.065177291631699,-0.10502374172211],[0.0079052271321416,0.025994369760156,-0.13526155054569],[0.031002527102828,-0.013109263032675,-0.027796592563391]],[[0.0058622090145946,-0.05691184476018,0.054579503834248],[0.050747167319059,-0.050604291260242,-0.044490601867437],[-0.013450079597533,0.17740303277969,0.026486357674003]],[[-0.001678959117271,-0.05485886707902,0.096476793289185],[-0.039117690175772,-0.087554149329662,0.022442752495408],[-0.052861787378788,0.010872051119804,0.077524229884148]],[[-0.052207965403795,-0.0032151772174984,0.047637220472097],[-0.044756639748812,-0.060766737908125,-0.040369637310505],[-0.019622199237347,-0.032076802104712,0.012809419073164]],[[0.076919004321098,0.16217587888241,-0.0477777980268],[-0.0071919579058886,0.0046104844659567,-0.14187075197697],[0.031473100185394,-0.10076484829187,-0.063093647360802]],[[-0.013341439887881,-0.02797462977469,-0.0043396935798228],[0.024432998150587,0.038739193230867,0.010892475023866],[0.0056892386637628,0.016621276736259,0.00079056236427277]],[[0.048317447304726,0.061594635248184,0.037826098501682],[-0.00056258623953909,0.0095646334812045,-0.095195606350899],[-0.063344970345497,-0.0655552521348,-0.03800880536437]]],[[[-0.024036630988121,-0.13899223506451,-0.090303055942059],[0.064984865486622,-0.048748329281807,-0.037317231297493],[-0.025298871099949,0.030421687290072,0.0071939304471016]],[[-0.017231671139598,0.0098917791619897,0.092312015593052],[-0.023145232349634,-0.017719380557537,-0.015043534338474],[-0.029417980462313,0.027544494718313,-0.012932603247464]],[[0.019658146426082,-0.071500852704048,-0.045149434357882],[-0.088069260120392,-0.047179147601128,-0.051861640065908],[0.023044943809509,0.029769908636808,-0.0011404422111809]],[[-0.034168999642134,0.0068483483046293,-0.013801942579448],[0.088458828628063,0.1060403957963,-0.048680152744055],[0.035344887524843,-0.097548812627792,0.020517954602838]],[[-0.02515054680407,-0.038987882435322,0.011705851182342],[0.033634413033724,-0.078845456242561,-0.050612401217222],[0.01078125089407,-0.034093771129847,0.037314601242542]],[[0.0049706809222698,0.001181420055218,-0.050392430275679],[-0.0022459337487817,-0.038757670670748,-0.00099773507099599],[0.050335362553596,-0.087922744452953,0.027488583698869]],[[0.013046375475824,0.0016234063077718,0.01021038275212],[-0.13193574547768,-0.10717156529427,-0.026653470471501],[-0.08347412198782,0.066398449242115,-0.020982204005122]],[[-0.066427417099476,-0.0067037944681942,0.13647249341011],[-0.015880165621638,0.0061416062526405,0.00050665810704231],[-0.002223108895123,0.030891917645931,0.0037661409005523]],[[0.029400300234556,-1.2253352906555e-05,0.045680090785027],[0.025932164862752,-0.048575948923826,-0.053099289536476],[0.0024812649935484,-0.0088095143437386,0.036864947527647]],[[0.039716079831123,-0.062822788953781,-0.17696058750153],[-0.064928755164146,-0.059669718146324,-0.075590148568153],[0.10238539427519,0.013402057811618,-0.0081433225423098]],[[0.029823699966073,0.0028284045401961,-0.052392560988665],[0.019978661090136,-0.060453798621893,-0.007016362156719],[0.063432075083256,0.034921668469906,0.10338773578405]],[[-0.023291142657399,0.0079994658008218,-0.0035427887924016],[-0.05851749330759,-0.069624960422516,-0.041722495108843],[-0.11799620836973,-0.01025321520865,0.0014203083701432]],[[-0.029874492436647,-0.096940524876118,-0.095156073570251],[0.010548899881542,-0.044744618237019,0.053017877042294],[-0.015682902187109,-0.032923825085163,-0.026594353839755]],[[-0.032864462584257,-0.037979122251272,-0.03441359102726],[-0.011171728372574,0.00063665304332972,0.074823409318924],[0.1033805757761,0.099262461066246,-0.019087918102741]],[[-0.045276895165443,0.019701225683093,0.014759040437639],[0.020281940698624,-0.025035463273525,0.06031933799386],[-0.049115989357233,-0.015330993570387,-0.072226852178574]],[[0.079225219786167,0.063338689506054,-0.048190411180258],[-0.03497251495719,-0.029401889070868,0.021645637229085],[0.0050136228092015,-0.033705994486809,0.0093855708837509]],[[0.063695602118969,0.046295888721943,0.027647107839584],[0.028670685365796,-0.019781559705734,0.023040758445859],[-0.048428677022457,-0.052028048783541,-0.014699053950608]],[[-0.033874019980431,-0.091124631464481,-0.024989414960146],[0.068469703197479,0.083833754062653,0.062098290771246],[-0.0048019494861364,0.016224658116698,-0.037725809961557]],[[-0.021497581154108,0.017199648544192,0.055613979697227],[0.042754333466291,0.0089408671483397,-0.011388215236366],[-0.027281675487757,-0.023651819676161,0.0085792504251003]],[[-0.023719366639853,0.019853977486491,-0.027995351701975],[0.075947500765324,-0.019988249987364,-0.0032044828403741],[0.055857792496681,-0.036276068538427,-0.0055977581068873]],[[-0.0081016113981605,-0.030234290286899,-0.035283140838146],[-0.020882118493319,-0.030681241303682,0.013910451903939],[-0.0028202547691762,0.049628481268883,-0.024586314335465]],[[-0.12559202313423,0.0071107638068497,-0.063105650246143],[0.05748113244772,0.040708087384701,-0.026062894612551],[0.12821814417839,-0.11513832211494,-0.021997326985002]],[[0.041587896645069,0.042424272745848,0.011776438914239],[-0.035283081233501,0.091798111796379,0.0077591389417648],[-0.094861648976803,-0.039712145924568,0.038554798811674]],[[0.0002943555591628,0.0093685798346996,-0.0011429997393861],[0.059748936444521,0.056723807007074,0.0091359224170446],[0.043042987585068,0.014996293000877,0.014517106115818]],[[0.0024466570466757,-0.027210254222155,-0.085919067263603],[0.0091323843225837,0.01442421041429,0.035670220851898],[-0.011331602931023,0.031551882624626,0.018373176455498]],[[0.014596736058593,-0.0018767253495753,0.014393390156329],[-0.0059616267681122,-0.015054991468787,0.019338661804795],[0.065503157675266,0.046824552118778,0.077055893838406]],[[0.049508646130562,0.0052915280684829,0.099394835531712],[0.04982989653945,0.036234773695469,0.0039740963838995],[-0.034659378230572,0.063962854444981,-0.052991051226854]],[[0.0053222374990582,-0.069750271737576,-3.4801905712811e-06],[0.0023991535417736,0.020830236375332,-0.023316482082009],[-0.12002862989902,-0.050615109503269,0.046471819281578]],[[-0.002326920395717,0.00041533831972629,-0.015106934122741],[-0.11575724929571,0.025709290057421,-0.013015555217862],[0.0043102186173201,0.13145765662193,0.048658572137356]],[[0.022071782499552,0.13483522832394,-0.1133044064045],[-0.046447612345219,-0.041068773716688,-0.034979239106178],[0.085938893258572,0.043883860111237,-0.040826842188835]],[[-0.087729275226593,-0.050277251750231,-0.08504930883646],[-0.056242138147354,0.018947180360556,-0.035707898437977],[0.12549036741257,-0.0070421174168587,-0.061753198504448]],[[0.032995793968439,0.018289430066943,-0.007667688652873],[0.076917015016079,-0.014323154464364,5.090228660265e-05],[-0.085100889205933,0.047774001955986,-0.014445914886892]],[[-0.060458190739155,0.056395411491394,0.0062560881488025],[0.0040796645916998,-0.017298679798841,0.018148748204112],[-0.02488162368536,0.022517440840602,0.00038267063791864]],[[0.011870637536049,-0.088945470750332,-0.0069092195481062],[0.03390883281827,-0.044870782643557,0.031630095094442],[0.0097782574594021,-0.022994389757514,0.056996129453182]],[[-0.015366966836154,-0.081997558474541,-0.092606127262115],[-0.053868025541306,-0.06591834127903,0.038139365613461],[-0.010497860610485,-0.018795225769281,0.018986769020557]],[[-0.0091574788093567,-0.0023764020297676,-0.02736540697515],[0.046149972826242,-0.034841172397137,-0.00099867838434875],[0.05327657610178,-0.076185747981071,-0.066724851727486]],[[-0.011280848644674,0.033026456832886,0.10850345343351],[0.053992189466953,-0.073076203465462,-0.0048499605618417],[0.048300191760063,0.050448559224606,0.026818314567208]],[[-0.064668387174606,0.0023178041446954,0.012252382934093],[0.011840691789985,0.077689319849014,-0.0085062030702829],[0.021915042772889,-0.067264564335346,0.011391684412956]],[[-0.042726550251245,0.014269506558776,-0.046806737780571],[0.045278657227755,0.043639797717333,0.020042227581143],[-0.016236484050751,0.011868399567902,-0.088050059974194]],[[0.02141491137445,0.012446087785065,-0.029102332890034],[-0.0013964464887977,-0.028118886053562,0.015297826379538],[0.051247157156467,-0.010430139489472,0.0083101410418749]],[[-0.063920319080353,-0.066725879907608,-0.13292264938354],[-0.080214813351631,0.038324307650328,0.058780014514923],[0.0094728590920568,-0.047868490219116,0.04865849763155]],[[0.028212593868375,0.01532266009599,-0.057656146585941],[0.039431627839804,0.044038068503141,0.038345828652382],[0.0059093195013702,-0.051469225436449,-0.13509550690651]],[[0.031899437308311,0.064587369561195,0.011138667352498],[0.090216584503651,0.038620833307505,0.092156648635864],[0.11281482875347,0.061028201133013,0.036988694220781]],[[0.035319983959198,0.010677353478968,-0.076727338135242],[-0.0098268575966358,0.030006553977728,-0.015972109511495],[-0.15715782344341,-0.064083628356457,-0.058293495327234]],[[-0.084587246179581,0.052861180156469,0.043018758296967],[-0.10500793904066,-0.10186932235956,0.10326919704676],[-0.045465249568224,-0.020314060151577,0.04645011946559]],[[0.026920598000288,0.03902617841959,-0.044527132064104],[0.061874248087406,0.014744339510798,-0.070907108485699],[-0.078151792287827,0.024097800254822,0.032744228839874]],[[-0.040080990642309,0.018019091337919,-0.082185141742229],[-0.11974324285984,0.041125427931547,-0.04473178461194],[-0.0013116743648425,0.099824912846088,0.0051368759013712]],[[0.0020821713842452,-0.0094769429415464,-0.070274099707603],[0.00050738546997309,-0.011654579080641,0.10262387990952],[-0.1133294031024,0.07033184170723,0.082595065236092]],[[-0.05129261687398,-0.007224218454212,-0.017100276425481],[-0.10727562755346,0.035386599600315,-0.011748245917261],[-0.074552312493324,-0.044790420681238,0.045147228986025]],[[0.0021049554925412,-0.0047386670485139,-0.060402628034353],[0.076883777976036,0.031181769445539,-0.018875934183598],[0.026831353083253,0.056904181838036,-0.02145061828196]],[[-0.036698441952467,0.019946698099375,-0.10047111660242],[-0.077025704085827,-0.0013821863103658,0.0015213799197227],[-0.069401457905769,-0.0069305449724197,-0.015550837852061]],[[0.049712598323822,0.014848959632218,-0.013794811442494],[0.077201403677464,-0.013144921511412,-0.0093403728678823],[0.080930903553963,0.12490803003311,-0.010905070230365]],[[0.091918386518955,-0.11138647049665,0.0037177235353738],[-0.010439179837704,-0.069562748074532,-0.076755411922932],[-0.050368193536997,0.053584020584822,-0.046776831150055]],[[-0.062192521989346,-0.076560474932194,0.047871749848127],[-0.019464576616883,-0.035917684435844,-0.013644968159497],[0.045086331665516,-0.044962108135223,-0.0077314265072346]],[[0.0072717289440334,-0.017387587577105,-0.030531708151102],[-0.13285003602505,-0.059360820800066,-0.0078781293705106],[-0.090546727180481,-0.074230454862118,-0.013992422260344]],[[-0.08530555665493,-0.13543167710304,-0.065785527229309],[-0.034485969692469,0.070066414773464,-0.026952460408211],[-0.030215347185731,-0.03497376665473,0.049166392534971]],[[-0.035101413726807,-0.0097255343571305,0.024769995361567],[0.045517571270466,-0.034232098609209,0.0019434554269537],[-0.17586018145084,-0.018184244632721,0.027414467185736]],[[-0.010623149573803,-0.0023827811237425,-0.0080295922234654],[0.0031836903654039,0.067125000059605,0.062146607786417],[0.05758473649621,-0.089093588292599,-0.0089307045564055]],[[0.068491086363792,-0.086561650037766,-0.057472769171],[-0.014759098179638,-0.030201632529497,0.032143108546734],[0.051584761589766,-0.03993109613657,-0.050328958779573]],[[-0.00089424406178296,-0.013856276869774,0.035902932286263],[-0.025151355192065,0.018040275201201,0.017673965543509],[-0.023253962397575,0.0185338370502,0.0030028175096959]],[[-0.032528884708881,0.011645912192762,0.057071965187788],[-0.16084709763527,0.071957111358643,0.016236277297139],[-0.035326242446899,-0.069594852626324,-0.0080622816458344]],[[0.026809811592102,0.050595134496689,-0.05536400899291],[-0.0085564842447639,-0.063696354627609,-0.0019631192553788],[0.0029319603927433,-0.038075119256973,-0.06828448176384]],[[0.0044017652980983,0.01218193769455,-0.0026538777165115],[-0.035039007663727,-0.029679099097848,-0.06829571723938],[-0.035402428358793,0.012615875340998,0.021829968318343]],[[0.052210263907909,0.0018241420621052,-0.068403534591198],[-0.010382991284132,0.027295812964439,0.095721788704395],[-0.021642530336976,-0.072319611907005,0.018173675984144]]],[[[0.055950827896595,0.018597718328238,-0.0015508582582697],[0.092247374355793,0.019797574728727,-0.043125510215759],[-0.016227260231972,-0.034455519169569,-0.02008605748415]],[[-0.15386244654655,-0.23568414151669,-0.15792660415173],[0.033679008483887,0.05147635191679,-0.10522808134556],[-0.019026314839721,0.018711537122726,0.12631252408028]],[[-0.086295671761036,-0.037217918783426,0.07764832675457],[-0.00049576099263504,0.006703729275614,0.0029599405825138],[-0.015618180856109,-0.058171398937702,-0.12780272960663]],[[-0.089178711175919,-0.17813262343407,-0.0702785551548],[-0.0025773036759347,-0.089167557656765,-0.22870649397373],[0.028126651421189,-0.029723281040788,-0.048427496105433]],[[-0.079837709665298,-0.068788096308708,0.034833204001188],[-0.027332324534655,-0.047786325216293,-0.015503083355725],[0.065801039338112,0.1050466299057,-0.028708698228002]],[[0.019436713308096,-0.042542263865471,-0.017107246443629],[0.023287791758776,-0.043626647442579,0.041326824575663],[-0.11705304682255,-0.0090623470023274,-0.024629110470414]],[[-0.21627742052078,0.041273787617683,0.016818413510919],[-0.031062649562955,-0.037960473448038,-0.036673437803984],[0.022342210635543,-0.00043793238000944,0.047866988927126]],[[0.084093309938908,0.089303597807884,-0.14521203935146],[-0.025835091248155,-0.05071771517396,-0.16919665038586],[-0.029585929587483,0.078794434666634,0.14736874401569]],[[0.0090762041509151,0.01548851467669,-0.0039981119334698],[-0.020091354846954,-0.024834927171469,-0.026230802759528],[-0.028453543782234,0.055488705635071,-0.032692443579435]],[[-0.02488818205893,-0.1196733340621,-0.1066332757473],[-0.060163348913193,-0.069418013095856,-0.14370541274548],[-0.10259789973497,-0.072545424103737,-0.098664321005344]],[[0.10312432795763,-0.028898740187287,0.063058495521545],[0.047962196171284,-0.08711015433073,0.043633207678795],[-0.042350132018328,-0.006799478083849,0.010375568643212]],[[-0.03751665353775,-0.16553035378456,0.025310382246971],[-0.099710151553154,-0.11956942081451,0.062629044055939],[-0.0023374571464956,-0.05588872730732,-0.0037993115838617]],[[-0.035419903695583,0.0076414365321398,0.0087565276771784],[0.0078799575567245,-2.2046151570976e-05,0.0043730144388974],[0.0029117073863745,0.096995495259762,-0.048593610525131]],[[-0.10663881152868,-0.12162946909666,0.0076920064166188],[-0.041941490024328,0.027094742283225,0.0387550778687],[0.072163090109825,-0.01421956717968,-0.034603238105774]],[[-0.04047553986311,-0.0052740257233381,0.040873058140278],[-0.10473086684942,-0.020527807995677,-0.15079697966576],[-0.13664309680462,-0.11044351011515,-0.15676908195019]],[[0.13108038902283,0.067675873637199,0.034206040203571],[0.063318207859993,-0.008984993211925,0.021326165646315],[0.018596915528178,-0.033260859549046,-0.11572316288948]],[[0.18593983352184,-0.0033969567157328,-0.066826939582825],[0.0035945656709373,-0.00034994364250451,-0.027632853016257],[-0.040209129452705,-0.069057129323483,0.081050306558609]],[[-0.074776366353035,0.026429709047079,0.10415825992823],[-0.032789941877127,-0.014318008907139,-0.041557125747204],[0.10569985210896,-0.035838201642036,0.070064783096313]],[[-0.014219671487808,0.17260704934597,-0.011728676967323],[0.10680111497641,-0.02245401404798,-0.064231015741825],[-0.0082445684820414,0.10831531137228,0.034141700714827]],[[-0.03245735168457,0.06941532343626,0.024008782580495],[-0.0047978428192437,0.014578955247998,-0.030907701700926],[0.012423922307789,0.003390078432858,-0.058711297810078]],[[-0.0071498299948871,-0.14535272121429,0.015579903498292],[-0.023601775988936,0.028385791927576,-0.081973925232887],[0.039099149405956,-0.049086138606071,-0.026662301272154]],[[-0.0069697545841336,-0.0054107713513076,-0.023938031867146],[-0.018459459766746,-0.03222006931901,0.088062807917595],[0.038028664886951,-0.064885534346104,0.12168248742819]],[[-0.034648258239031,-0.048519499599934,-0.10290966182947],[0.06851489841938,-0.08385856449604,-0.011388322338462],[-0.032131932675838,0.0054762228392065,0.050508812069893]],[[0.19567909836769,0.16117967665195,0.034584429115057],[0.23641355335712,0.047988101840019,0.0091878576204181],[0.023000340908766,-0.018064267933369,-0.10085343569517]],[[-0.034200638532639,0.052502352744341,0.072152346372604],[0.027054715901613,0.064501516520977,0.065499067306519],[0.027901051566005,-0.029974862933159,-0.036653220653534]],[[0.020665632560849,0.076510392129421,0.093615643680096],[-0.027325127273798,0.0067762429825962,0.044870585203171],[-0.012108703143895,-0.017241133376956,0.044626880437136]],[[0.14186497032642,0.045621421188116,-0.051220510154963],[-0.037503272294998,0.14357741177082,-0.044717557728291],[-0.011117327027023,-0.020662661641836,0.074343331158161]],[[0.084746554493904,-0.046266980469227,-0.13710218667984],[0.098640404641628,0.02516720071435,-0.0084332711994648],[0.0095976879820228,0.015022925101221,-0.074316777288914]],[[0.051665239036083,0.11555191874504,0.0084307184442878],[0.052443545311689,-0.083605907857418,0.099766828119755],[0.036806460469961,-0.015496348962188,0.046110238879919]],[[-0.033184859901667,-0.031748920679092,-0.20667880773544],[-0.049787562340498,-0.08987245708704,0.040136408060789],[0.029570233076811,0.039882104843855,-0.011282531544566]],[[0.060823731124401,-0.00066274096025154,0.003605748526752],[0.013557143509388,0.081955835223198,-0.040803398936987],[-0.078866757452488,-0.077656723558903,-0.057884361594915]],[[0.095706082880497,0.0060129961930215,0.011994622647762],[0.069924160838127,-0.091877602040768,-0.039402045309544],[0.087491981685162,-0.12943552434444,0.084679424762726]],[[0.025259505957365,-0.0022461670450866,0.073467060923576],[0.044901810586452,0.038439761847258,0.040484707802534],[0.11677689105272,-0.0089996317401528,0.060075402259827]],[[0.033726271241903,0.051362872123718,0.099201172590256],[-0.018198601901531,-0.0035596541129053,0.035211939364672],[-0.018322536721826,-0.014449605718255,0.048649296164513]],[[-0.030728075653315,-0.064133748412132,-0.088933572173119],[0.094241805374622,0.045077621936798,0.00062888179672882],[0.067559167742729,-0.0087764803320169,-0.026367077603936]],[[-0.089349575340748,-0.074966989457607,-0.038217522203922],[0.01482398621738,0.10998233407736,0.13429218530655],[-0.039949025958776,-0.051659420132637,0.063333854079247]],[[-0.068531595170498,-0.10802215337753,-0.17613603174686],[0.070176392793655,0.069087512791157,-0.030173476785421],[0.024922929704189,0.017571432515979,0.035393550992012]],[[-0.12209505587816,-0.099289655685425,-0.067282356321812],[0.00032507698051631,-0.082338504493237,-0.083580583333969],[0.05398178845644,0.092231072485447,0.095796555280685]],[[0.14840461313725,0.10272163152695,0.082142673432827],[-0.045320849865675,0.076650500297546,-0.0010203098645434],[0.00042268726974726,0.0053659514524043,-0.033036347478628]],[[0.12357940524817,0.15329825878143,0.050695434212685],[0.056639198213816,-0.011527408845723,-0.088271260261536],[-0.018498223274946,0.025596300140023,0.069284066557884]],[[-0.15565255284309,0.029134731739759,0.018731800839305],[0.14182463288307,0.00094990833895281,0.13866619765759],[-0.047991782426834,0.069881662726402,0.066636018455029]],[[0.099696986377239,0.086388826370239,-0.042977299541235],[0.051743175834417,0.13202938437462,-0.053884793072939],[-0.033957295119762,-0.06744397431612,0.026818472892046]],[[-0.04291920363903,0.053790431469679,0.085793070495129],[0.020535374060273,0.033964697271585,-0.086976408958435],[-0.066640630364418,0.029194474220276,0.046796333044767]],[[-0.069135546684265,-0.0079880151897669,-0.047299861907959],[0.10377490520477,-0.0096473731100559,-0.060012653470039],[-0.039546314626932,-0.082014605402946,-0.049241811037064]],[[-0.02834664285183,-0.12552072107792,-0.043473731726408],[-0.066959850490093,-0.1303828060627,0.0059261866845191],[0.10104843974113,0.030639324337244,0.038466434925795]],[[-0.11287895590067,0.052173465490341,0.083735726773739],[-0.070620112121105,0.12186251580715,0.10114202648401],[-0.15786443650723,0.017819039523602,0.083256646990776]],[[0.0025919780600816,0.014153324998915,-0.0174416359514],[0.023210553452373,0.023989161476493,0.038180977106094],[0.025145955383778,0.024103526026011,0.0034455007407814]],[[-0.045134998857975,-0.21955081820488,0.017886340618134],[0.089333698153496,0.02940215729177,0.0045254076831043],[0.081381745636463,0.056676488369703,-0.015365145169199]],[[0.019292052835226,-0.047207560390234,-0.035963445901871],[0.043175742030144,-0.015583428554237,-0.095771789550781],[-0.081585459411144,-0.084286272525787,-0.14678280055523]],[[-0.0099040130153298,-0.12819187343121,-0.086252696812153],[-0.016014903783798,0.0048344642855227,-0.0018704425310716],[0.12772661447525,0.081600174307823,-0.072508841753006]],[[-0.011096075177193,-0.067155413329601,0.096601404249668],[-0.063736408948898,-0.029151741415262,0.099591940641403],[-0.040311899036169,0.027136432006955,0.0016330247744918]],[[0.15651465952396,-0.039536878466606,0.030522534623742],[0.005224279128015,0.039168711751699,-0.072177194058895],[-0.031876605004072,-0.0063833207823336,-0.14319226145744]],[[-0.071772389113903,-0.18344214558601,-0.071509219706059],[0.0057242433540523,0.043106067925692,-0.029396215453744],[-0.0037431879900396,0.10803021490574,0.060291305184364]],[[-0.040207084268332,-0.026290088891983,0.069238118827343],[0.043894942849874,-0.071157425642014,-0.0080861756578088],[-0.1480545848608,-0.043735921382904,-0.090455234050751]],[[-0.12557259202003,-0.035191509872675,-0.027514377608895],[-0.13952852785587,0.021992512047291,-0.044524393975735],[-0.12018464505672,0.050564650446177,-0.027738248929381]],[[-0.080404482781887,-0.069205597043037,-0.13696867227554],[-0.016412323340774,0.038316357880831,0.052140630781651],[0.001594468136318,0.031645331531763,-0.022647488862276]],[[-0.091086655855179,-0.081381298601627,0.034933976829052],[0.03732081502676,-0.038311097770929,0.039330128580332],[-0.12750823795795,-0.12210015952587,-0.032021518796682]],[[-0.12914314866066,-0.24807925522327,-0.23079641163349],[-0.080234728753567,-0.15089060366154,-0.060910977423191],[-0.068410120904446,0.0052679544314742,0.059575706720352]],[[0.076028905808926,0.20933094620705,0.095167845487595],[0.0056423684582114,0.069477252662182,0.095559403300285],[-0.10024611651897,-0.08978009223938,-0.045380610972643]],[[0.033682078123093,-0.081627860665321,-0.0048150760121644],[-0.010213017463684,-0.024635491892695,-0.045837413519621],[0.026405179873109,0.067150354385376,0.063254058361053]],[[0.029332892969251,-0.0088554657995701,-0.10295417159796],[0.088358908891678,0.041509315371513,0.0069585163146257],[-0.0044375993311405,-0.032167989760637,0.10078374296427]],[[-0.040160581469536,0.038307938724756,-0.045401759445667],[0.012147414498031,0.035600639879704,-0.046222414821386],[-0.077528297901154,-0.070733092725277,-0.070438273251057]],[[-0.09916115552187,0.0010829670354724,0.13906106352806],[0.0097647812217474,0.038926720619202,-0.04148817807436],[0.056908663362265,0.066018007695675,0.21756564080715]],[[-0.11043326556683,-0.060417361557484,-0.0051571219228208],[0.042536772787571,0.014600934460759,0.029210593551397],[0.019467012956738,-0.023349851369858,0.019513191655278]]],[[[-0.20683841407299,0.013569200411439,0.090748324990273],[0.0086007881909609,0.11160147190094,-0.15673977136612],[0.11226019263268,0.071530379354954,-0.065666072070599]],[[-0.047197099775076,0.039218209683895,-0.10417192429304],[-0.044081229716539,-0.011917106807232,-0.070774100720882],[-0.046765953302383,0.043531335890293,0.063324868679047]],[[-0.097914479672909,-0.059602249413729,0.08094696700573],[-0.11642605066299,-0.039890438318253,0.045833934098482],[-0.055964834988117,-0.028288887813687,0.055329728871584]],[[-0.0017067799344659,0.0097706597298384,-0.01013997849077],[-0.1012047380209,-0.014477459713817,0.038285963237286],[-0.014939393848181,0.030507246032357,0.053821954876184]],[[-0.21813097596169,-0.01744300685823,0.027378408238292],[-0.058019332587719,0.015835890546441,-0.04071906581521],[-0.0033765418920666,-0.047190550714731,-0.054878484457731]],[[0.0054497155360878,-0.035118695348501,0.019982879981399],[-0.02095983736217,-0.056902900338173,-0.066078811883926],[0.0028870776295662,0.14644180238247,0.098189800977707]],[[-0.10837976634502,-0.034311570227146,-0.018938723951578],[-0.096433706581593,0.092370100319386,0.037140794098377],[-0.038728147745132,0.062997668981552,0.0018888382473961]],[[0.10461608320475,0.047678608447313,0.02791271917522],[-0.03112855181098,-0.083171285688877,0.05275259539485],[-0.014808433130383,0.016872612759471,-0.016421969980001]],[[-0.071693494915962,0.0033410519827157,-0.046232040971518],[-0.038916006684303,0.02030891366303,0.090656839311123],[0.025987250730395,0.010476842522621,0.04068748280406]],[[0.019070470705628,0.0042770258150995,-0.044424567371607],[0.029511062428355,-0.049140140414238,-0.028661735355854],[-0.010204466059804,0.091962583363056,-0.036451753228903]],[[-0.0028204794507474,-0.035063561052084,-0.013687775470316],[-0.081568159162998,0.062900573015213,-0.0081645892933011],[-0.04129596054554,0.10525154322386,-0.0036169905215502]],[[-0.04574741050601,-0.1585718691349,-0.10494889318943],[-0.046119097620249,0.062694907188416,-0.052156578749418],[-0.078795239329338,0.10045085847378,0.091821953654289]],[[0.0048719211481512,-0.050480466336012,-0.049484867602587],[-0.097608461976051,-0.06099734082818,0.018110441043973],[0.088906407356262,-0.033641792833805,0.013570780865848]],[[-0.034218035638332,0.025954080745578,-0.10947623848915],[-0.036454550921917,-0.063705891370773,-0.26950836181641],[-0.026286706328392,-0.038133755326271,-0.19468219578266]],[[0.015795500949025,0.03714245185256,0.0096251526847482],[-0.034926205873489,0.023104021325707,0.0269715487957],[-0.037241950631142,-0.064491525292397,0.050119712948799]],[[-0.050421986728907,0.032117988914251,0.068724907934666],[-0.039354901760817,-0.03697606921196,-0.014416833408177],[-0.016729153692722,-0.043849729001522,0.065763182938099]],[[-0.069524765014648,-0.024907164275646,-0.020770406350493],[0.046912610530853,0.077063210308552,0.04310629889369],[0.089112050831318,0.047650504857302,0.039346110075712]],[[-0.0041402354836464,-0.047544941306114,0.093438975512981],[0.00089911307441071,-0.030454333871603,0.044602312147617],[-0.019388359040022,-0.0022695986554027,0.035473711788654]],[[0.0056187901645899,-0.037569787353277,-0.016744747757912],[-0.015814539045095,-0.10487185418606,-0.017167979851365],[-0.017575858160853,-0.017717158421874,-0.042960613965988]],[[0.011675635352731,0.02888036891818,0.01483544614166],[-0.012301185168326,0.0023848689161241,0.012069766409695],[-0.043635778129101,-0.030172372236848,0.027062090113759]],[[-0.073600180447102,-0.020366011187434,-0.054323341697454],[0.011779553256929,-0.19465532898903,-0.21350555121899],[-0.046823345124722,0.025800636038184,-0.026778485625982]],[[-0.054365061223507,0.032139904797077,0.02353959903121],[-0.063152283430099,-0.030969757586718,0.081808738410473],[0.011007962748408,-0.02854722738266,0.017592815682292]],[[-0.06787895411253,0.035275556147099,0.023199258372188],[-0.12659649550915,-0.022744078189135,-0.0070106950588524],[0.0048161121085286,0.071914821863174,-0.046872567385435]],[[-0.012095754034817,0.040966603904963,0.066554605960846],[0.14759764075279,0.068224787712097,0.11586308479309],[0.022789197042584,0.110008276999,-0.0085449097678065]],[[-0.047723297029734,-0.021747490391135,-0.040894199162722],[0.07421587407589,-0.083554044365883,0.17321552336216],[-0.034804046154022,-0.020997889339924,0.051816910505295]],[[0.01116172876209,-0.058358576148748,0.027743818238378],[0.05724423378706,0.052032977342606,0.1219154894352],[-0.02933088131249,0.064983911812305,0.12289440631866]],[[-0.024641714990139,-0.043583169579506,-0.013833906501532],[0.013900107704103,0.15025462210178,-0.0063890479505062],[0.049943681806326,-0.041584067046642,-0.083725184202194]],[[0.031804550439119,-0.0061032110825181,0.1341398358345],[0.036892767995596,0.0727349370718,0.0045184390619397],[0.038623325526714,-0.028434712439775,0.14416739344597]],[[0.095392294228077,-0.022382749244571,0.00035785720683634],[0.041543882340193,0.016311910003424,-0.0038809992838651],[-0.006543361581862,0.040739521384239,-0.017798859626055]],[[-0.15317049622536,-0.059844296425581,-0.0099709909409285],[-0.077490419149399,-0.038629416376352,-0.029619270935655],[-0.12646088004112,0.0090262619778514,0.036674853414297]],[[-0.027620010077953,-0.015502428635955,-0.029882524162531],[0.053412429988384,-0.068148471415043,0.029700646176934],[0.012445631437004,0.042808976024389,0.013842036947608]],[[-0.04355738312006,0.026608821004629,-0.11517908424139],[-0.053597897291183,-0.088701106607914,0.038664951920509],[0.0050935433246195,-0.045299746096134,-0.11480531096458]],[[-0.019580980762839,-0.070209942758083,-0.031396020203829],[0.023889053612947,0.037000264972448,0.0096708545461297],[0.015247989445925,-0.0096331862732768,-0.016692791134119]],[[0.0068977093324065,0.072359673678875,0.087360695004463],[0.075418695807457,-0.092716991901398,-0.050034902989864],[-0.021077066659927,-0.074625723063946,-0.047584481537342]],[[-0.10322201997042,0.03647618740797,0.11393249034882],[0.14561855792999,-0.03224304318428,0.026597099378705],[0.040553074330091,-0.0092138312757015,0.0061652543954551]],[[5.0871945859399e-05,-0.0073758587241173,0.036493197083473],[-0.075086884200573,-0.12673245370388,-0.066151902079582],[-0.012904639355838,0.034092742949724,0.031979467719793]],[[-0.044167827814817,-0.014679163694382,-0.05663238093257],[0.010786610655487,0.051050506532192,0.063420474529266],[0.056821435689926,-0.010119439102709,0.031727280467749]],[[0.086915157735348,0.05203216150403,0.016834948211908],[-0.013759091496468,-0.0040840706788003,-0.047546338289976],[-0.027296097949147,0.0024714136961848,0.11610425263643]],[[-0.17636793851852,0.027591977268457,0.078245766460896],[0.10514510422945,0.10136475414038,-0.048919178545475],[0.026249056681991,0.091503649950027,0.076298534870148]],[[-0.0095405727624893,-0.011474013328552,-0.066006354987621],[-0.012509330175817,-0.062309000641108,-0.030520422384143],[-0.024900993332267,0.049818642437458,-0.026826491579413]],[[0.017380265519023,-0.035650316625834,-0.008359482511878],[-0.041844818741083,0.042144570499659,0.0062757721170783],[-0.049435883760452,0.018383314833045,0.090646505355835]],[[0.054752603173256,0.11363255232573,0.063530713319778],[0.012393207289279,0.018598342314363,-0.031749982386827],[0.073475383222103,0.021951235830784,-0.041335288435221]],[[-0.086103655397892,-0.044800475239754,-0.04746488109231],[-0.094385460019112,-0.14305543899536,-0.050867319107056],[-0.065193623304367,0.0036025827284902,-0.047141302376986]],[[0.054752051830292,-0.0072475606575608,0.078860908746719],[-0.02229662053287,-0.14320059120655,0.012640521861613],[-0.11311854422092,-0.060270823538303,-0.12178363651037]],[[-0.0011676986468956,0.052376717329025,0.093070916831493],[-0.12605729699135,-0.00086650263983756,0.070658169686794],[-0.074943237006664,-0.049037594348192,0.012913198210299]],[[-0.0092488536611199,0.011354446411133,0.021485310047865],[-0.18391013145447,0.062957935035229,-0.038461986929178],[-0.06736321747303,-0.013750227168202,-0.053864303976297]],[[-0.038489144295454,-0.031591422855854,-0.0081810727715492],[-0.10901198536158,-0.033249590545893,-0.010573728010058],[-0.0042467499151826,0.091507904231548,-0.016571518033743]],[[0.064036548137665,-0.031947925686836,0.014344682916999],[0.081041418015957,-0.044511292129755,-0.089485697448254],[0.087658047676086,-0.11009607464075,0.079601511359215]],[[0.046844318509102,-0.0029301352333277,-0.087982982397079],[-0.0014676739228889,-0.01712273620069,0.048891566693783],[-0.021526077762246,0.026087913662195,0.048269871622324]],[[-0.046862412244081,-0.025758629664779,-0.0043314625509083],[-0.092722840607166,-0.037454836070538,0.06361561268568],[0.012366372160614,-0.11165156960487,-0.049957297742367]],[[-0.014958269894123,0.075250521302223,-0.01086981035769],[-0.035793866962194,0.037131793797016,-0.11571010947227],[0.055164370685816,0.029724024236202,0.014805067330599]],[[-0.00012525168131106,0.14283519983292,0.10548222064972],[0.11268772929907,-0.019498649984598,-0.089576609432697],[0.066034987568855,-0.00047757918946445,-0.0052092396654189]],[[0.10416442900896,-0.064272917807102,0.023450452834368],[-0.0099728954955935,0.038370970636606,-0.02679449506104],[-0.081831194460392,0.053979739546776,0.064132429659367]],[[-0.010478890500963,-0.022568799555302,0.036565694957972],[0.046650178730488,-0.074323728680611,0.071710258722305],[0.022150959819555,0.012340216897428,-0.011924067512155]],[[0.046655520796776,-0.032552357763052,0.051225021481514],[0.0063698058947921,-0.019476627930999,0.029023306444287],[-0.037587866187096,-0.052981935441494,0.028571614995599]],[[-0.0082046650350094,-0.035548962652683,-0.047149091959],[0.016901984810829,-0.035705413669348,0.098224304616451],[0.039039984345436,-0.061014428734779,0.12134014070034]],[[-0.048733964562416,0.094972118735313,-0.0022174534387887],[-0.062553107738495,0.048072054982185,-0.036626126617193],[-0.034316200762987,-0.022742403671145,0.0050520333461463]],[[0.050963848829269,-0.050769746303558,0.00656074937433],[0.009584934450686,-0.055769167840481,0.063575252890587],[-0.042960692197084,0.10226679593325,-0.033186934888363]],[[0.0058002825826406,0.049539815634489,-0.028702970594168],[0.059551134705544,-0.084521621465683,0.015050168149173],[0.085195027291775,-0.0063006114214659,-0.089128017425537]],[[-0.019052624702454,0.012378039769828,-0.017599171027541],[-0.0087151871994138,-0.0091923549771309,0.0026185242459178],[0.053016502410173,0.0034754371736199,-0.009864185936749]],[[-0.029066443443298,-0.0089779440313578,0.011517840437591],[0.023145264014602,0.013770224526525,-0.011452977545559],[-0.054371446371078,-0.010047264397144,0.013615067116916]],[[-0.089602388441563,9.1042697022203e-05,0.024520160630345],[-0.081190690398216,0.012761250138283,-0.015550842508674],[-0.038109213113785,-0.09168253839016,-0.13062258064747]],[[-0.046921674162149,-0.065055206418037,-0.053366784006357],[0.050062470138073,-0.097981348633766,0.010414513759315],[0.07411166280508,-0.056228794157505,-0.059853743761778]],[[-0.020672405138612,0.015874462202191,0.015398331917822],[-0.013400536030531,-0.0020268813241273,0.034368291497231],[0.034399881958961,-0.0063394038006663,0.058051731437445]]],[[[0.031366609036922,-0.084971539676189,0.038559000939131],[-0.055180244147778,-0.12107215076685,-0.0041194721125066],[0.056034047156572,-0.023648541420698,-0.056401368230581]],[[0.075491793453693,0.039500340819359,0.014025046490133],[0.090643361210823,0.0070247026160359,0.027406167238951],[0.054580569267273,-0.026239277794957,0.019461592659354]],[[0.05553712695837,0.063137196004391,-0.17994451522827],[0.022668041288853,-0.041333116590977,-0.17888510227203],[0.023391747847199,-0.11051363497972,-0.27705657482147]],[[0.040639866143465,-0.068923063576221,-0.025653120130301],[0.018300082534552,-0.0089643485844135,-0.14340506494045],[0.0063073672354221,-0.040280178189278,-0.13199211657047]],[[0.031255137175322,-0.0060992906801403,0.024434743449092],[-0.031697515398264,-0.014844319783151,-0.079203896224499],[-0.05469386279583,-0.063705489039421,-0.12944497168064]],[[0.016496485099196,0.060069166123867,0.015673527494073],[-0.042425312101841,0.077302359044552,0.001144191250205],[-0.031117064878345,0.033918440341949,-0.046914465725422]],[[0.061672419309616,-0.099209979176521,-0.02152518928051],[-0.030473718419671,-0.10757530480623,-0.007814452983439],[-0.015444071963429,-0.051631193608046,-0.080396629869938]],[[-0.10143965482712,-0.16363950073719,0.034950606524944],[0.04312327131629,-0.025688717141747,0.024420335888863],[0.12067250162363,-0.086118265986443,-0.15235057473183]],[[-0.12104854732752,-0.040139719843864,0.084632374346256],[0.0099736731499434,-0.025689562782645,-0.0096342712640762],[0.010120258666575,-0.12054973840714,-0.17676669359207]],[[0.1007217913866,0.072811909019947,0.022519391030073],[-0.033807523548603,0.083190709352493,0.062310602515936],[0.080930776894093,0.054776195436716,-0.050785381346941]],[[-0.11345694214106,-0.071767695248127,-0.052693802863359],[-0.084747090935707,-0.0048698089085519,0.031604882329702],[0.019003110006452,-0.039318569004536,0.11921099573374]],[[-0.11757083982229,-0.000823499110993,-0.024645615369081],[-0.078513994812965,-0.031507708132267,0.0014050926547498],[-0.019818151369691,-0.07013762742281,-0.082100123167038]],[[0.00047550577437505,0.059991851449013,0.012578806839883],[0.037327501922846,0.031048377975821,-0.075965605676174],[0.11208410561085,-0.021670395508409,0.034192647784948]],[[0.029906118288636,0.17994134128094,0.13536335527897],[0.11592402309179,0.13710141181946,0.089955866336823],[0.05623521655798,0.082345120608807,0.014878025278449]],[[-0.0014385716058314,0.020934849977493,-0.028344416990876],[-0.04508151486516,-0.015062236227095,-0.053095836192369],[0.084376290440559,-0.044409334659576,-0.031486269086599]],[[0.053381122648716,-0.074680082499981,0.057986322790384],[-0.02541478164494,-0.020945025607944,-0.037274844944477],[-0.001858577481471,-0.077868483960629,-0.027959316968918]],[[-0.15939578413963,-0.091495238244534,0.06371308863163],[-0.064911991357803,-0.003908381331712,0.057422623038292],[-0.0739401653409,-0.01548536401242,0.10347801446915]],[[0.030255960300565,-0.10185032337904,-0.023427475243807],[-0.099464692175388,-0.070254310965538,-0.015576124191284],[-0.10235752910376,-0.1104484423995,0.031801946461201]],[[0.0095810601487756,-0.039241343736649,-0.0039760083891451],[0.0085580619052052,-0.028247077018023,-0.025208717212081],[-0.076197348535061,0.086601756513119,0.053780067712069]],[[0.072069704532623,0.081600300967693,0.0067510809749365],[0.083193600177765,-0.012763421982527,-0.1022615134716],[0.056039296090603,-0.03510944545269,-0.07251776009798]],[[0.050608839839697,0.027931435033679,-0.049882799386978],[0.034266911447048,0.065454505383968,-0.050300866365433],[0.051088228821754,-0.0075559471733868,-0.04196597263217]],[[0.10980105400085,0.045527391135693,0.048857979476452],[0.057554241269827,-0.027924783527851,-0.15233464539051],[0.031097635626793,0.098025932908058,-0.025557802990079]],[[-0.096567235887051,0.037981502711773,-0.010134659707546],[-0.031816396862268,0.067321583628654,0.069055490195751],[0.0082884300500154,-0.02128554880619,0.061833310872316]],[[-0.024407770484686,0.030599253252149,0.15221206843853],[0.047721780836582,0.061447475105524,0.15094909071922],[-0.02346727065742,0.047203373163939,0.084358431398869]],[[-0.10221620649099,0.021652404218912,-0.10633059591055],[0.022313417866826,-0.048820689320564,0.032952629029751],[-0.038493268191814,0.11200963705778,0.10141820460558]],[[0.032542273402214,-0.011466738767922,0.038687642663717],[0.0044592153280973,0.011116740293801,0.023471418768167],[0.032678086310625,0.0037053432315588,0.059781689196825]],[[0.024416895583272,-0.056404463946819,0.061561059206724],[-0.035902716219425,-0.075605407357216,0.039710223674774],[-0.055040169507265,-0.059099234640598,-0.0085580563172698]],[[0.088848486542702,0.0069795208983123,-0.085717760026455],[-0.02246780321002,-0.013174631632864,-0.027249870821834],[-0.01694780215621,-0.011685658246279,-0.013182561844587]],[[-0.18576245009899,-0.0099774925038218,-0.030461601912975],[-0.16238488256931,-0.044184189289808,0.029492935165763],[-0.11852483451366,-0.0341184027493,-0.016702087596059]],[[-0.069741629064083,-0.098850890994072,-0.045506123453379],[-0.081740133464336,-0.016910331323743,-0.061212744563818],[0.0028121257200837,-0.1004124134779,-0.03092604316771]],[[-0.025211283937097,0.051798965781927,-0.053974132984877],[0.026353782042861,-0.020936276763678,-0.082240007817745],[0.015488398261368,-0.0076767560094595,-0.13988803327084]],[[0.20312152802944,-0.0021218911278993,-0.050567820668221],[-0.038632243871689,0.07271059602499,0.01128857396543],[-0.061689529567957,0.0095088165253401,-0.015337505377829]],[[-0.0077565563842654,-0.057957131415606,-0.016874514520168],[-0.018724339082837,-0.042337115854025,-0.0012416659155861],[-0.0774205327034,-0.027766112238169,0.059427808970213]],[[0.088949233293533,0.1971250474453,0.029715338721871],[-0.02226248383522,0.15918707847595,-0.012623377144337],[0.017268581315875,0.10422295331955,-0.025643402710557]],[[0.09584691375494,0.053260404616594,-0.048339162021875],[0.050947770476341,0.078878112137318,0.067380644381046],[0.040092684328556,0.020126011222601,-0.063850969076157]],[[0.034777902066708,-0.071027979254723,0.0044262590818107],[0.043050158768892,-0.021454930305481,0.031417030841112],[-0.059282749891281,0.046215452253819,-0.055306669324636]],[[-0.037104442715645,-0.024468675255775,-0.0077664433047175],[0.023033052682877,0.019814871251583,-0.048527169972658],[-0.068802773952484,0.089634709060192,0.019181257113814]],[[0.046792484819889,-0.12431698292494,-0.11312538385391],[0.033381558954716,-0.089606113731861,-0.11859132349491],[0.051051057875156,-0.02535979449749,-0.0034332314971834]],[[0.013041674159467,-0.0023480472154915,-0.060789875686169],[0.024979554116726,-0.057848911732435,0.020572999492288],[-0.087425515055656,-0.0060464995913208,0.017351852729917]],[[0.068708285689354,0.20455943048,0.044368267059326],[0.094674237072468,0.21011883020401,0.011802627705038],[0.06890644133091,0.10277058184147,-0.084609568119049]],[[0.12480963766575,0.098104275763035,0.11794177442789],[-0.0037247315049171,-0.059983104467392,-0.015175832435489],[0.056119773536921,-0.0010096275946125,-0.11463446170092]],[[0.040332019329071,0.032641641795635,-0.048698730766773],[-0.032972291111946,-0.020549718290567,0.036972623318434],[-0.12175171077251,0.073962040245533,-0.0075138127431273]],[[-0.0040488946251571,-0.047576580196619,-0.12880617380142],[-0.03666390478611,-0.050806187093258,0.01456809323281],[-0.0065020001493394,-0.064048394560814,0.04617615044117]],[[0.018995758146048,0.11558984220028,-0.0078811096027493],[0.085203692317009,0.066273644566536,-0.032730005681515],[-0.047520700842142,0.017066858708858,-0.10160068422556]],[[-0.1022187396884,-0.011894626542926,0.08168251812458],[-0.047583170235157,0.028223734349012,-0.030192812904716],[-0.031145125627518,-0.0069222659803927,-0.030699973925948]],[[0.16893185675144,-0.005678175482899,-0.1009781062603],[-0.012779415585101,-0.015658032149076,-0.086883902549744],[0.017893740907311,0.035854306071997,0.014537286944687]],[[0.093807227909565,0.053253587335348,-0.086180076003075],[0.064604513347149,-0.031953699886799,-0.0098939230665565],[0.0056679733097553,0.0034299693070352,-0.019144715741277]],[[-0.058596465736628,0.046919442713261,-0.026102999225259],[0.010669496841729,0.024173384532332,-0.0036309971474111],[0.00066109857289121,0.0037742729764432,0.031314417719841]],[[-0.0051786419935524,0.03720473498106,-0.0094431070610881],[-0.041833449155092,-0.038197465240955,0.001946309581399],[0.043504361063242,0.021414656192064,0.10688651353121]],[[0.091098226606846,0.00051623716717586,-0.076598800718784],[0.12019124627113,0.063748210668564,-0.017471726983786],[0.11119224131107,0.10842563211918,-0.13946028053761]],[[-0.047961935400963,-0.035773139446974,-0.0045034731738269],[-0.053044553846121,-0.019225493073463,0.017134675756097],[-0.052352204918861,-0.024418924003839,0.00032762816408649]],[[-0.025335349142551,-0.033914964646101,0.025575703009963],[0.035768691450357,-0.075504124164581,-0.033967979252338],[-0.11192575842142,-0.10623869299889,-0.064773134887218]],[[-0.065693825483322,0.11426764726639,-0.088546700775623],[0.022871984168887,0.017194338142872,0.0040197456255555],[-0.012622643262148,-0.01797442138195,-0.051741294562817]],[[-0.097646564245224,-0.0093363970518112,-0.0099514806643128],[-0.10072214901447,-0.047720391303301,-0.050928816199303],[0.046079620718956,0.16325743496418,0.10980325192213]],[[-0.01860480196774,-0.013184218667448,-0.012911268509924],[0.083549164235592,0.0063209850341082,-0.023383053019643],[-0.055565845221281,-0.0247867051512,0.025933865457773]],[[-0.093121901154518,-0.14717717468739,-0.0054529085755348],[-0.13295002281666,-0.054658643901348,-0.029544189572334],[-0.051177725195885,-0.058273620903492,0.042131278663874]],[[0.077463500201702,-0.0070165814831853,0.056402392685413],[-0.050053674727678,-0.089175894856453,-0.0056608156301081],[-0.035375598818064,0.026620211079717,0.082186110317707]],[[0.086545027792454,0.021804261952639,-0.035881981253624],[-0.014885909855366,-0.087193138897419,-0.010642671026289],[-0.035994049161673,0.018216801807284,0.13212355971336]],[[0.042748738080263,0.095512501895428,0.076233737170696],[0.048741526901722,-0.011840242892504,-0.035883843898773],[0.1214993968606,0.023209588602185,0.18736754357815]],[[-0.077917702496052,-0.047364890575409,0.019336804747581],[-0.039658948779106,0.064457647502422,0.03543309494853],[-0.017493149265647,0.059339918196201,0.031131645664573]],[[0.0077508362010121,0.048893336206675,-0.01202726457268],[-0.0022700317203999,-0.018775494769216,-0.050814192742109],[-0.053289618343115,0.00059008772950619,0.025945048779249]],[[0.15479144454002,-0.089495621621609,-0.12411541491747],[0.08722872287035,-0.20944169163704,0.023297559469938],[-0.10303510725498,-0.092630051076412,0.09365963190794]],[[0.066189132630825,0.043763119727373,0.026471745222807],[0.020716106519103,0.069421701133251,-0.01232036203146],[0.0068290592171252,-0.023973127827048,-0.01927643828094]],[[0.038383796811104,-0.08578347414732,-0.051813166588545],[0.029833192005754,0.012422712519765,0.070895344018936],[0.0063995062373579,0.037706345319748,-0.030291887000203]]],[[[0.036327257752419,0.0058185304515064,0.0098869185894728],[-0.10201171785593,-0.03368715941906,-0.053028088063002],[-0.011943756602705,0.05655213072896,-0.022178985178471]],[[0.057358667254448,-0.024074604734778,-0.065537542104721],[-0.05214923620224,0.0070714317262173,-0.10797432810068],[0.0020551688503474,-0.055180296301842,-0.093169033527374]],[[-0.025958565995097,-0.14664493501186,0.01531708240509],[-0.01556124445051,-0.040513224899769,-0.036553785204887],[-0.15186908841133,0.0070296749472618,-0.14216190576553]],[[0.023220561444759,-0.036843899637461,-0.060421865433455],[0.06462200731039,-0.12728157639503,-0.021343836560845],[-0.079696007072926,-0.072543248534203,0.022299474105239]],[[0.0041154813952744,-0.022294925525784,0.0023348350077868],[-0.054635062813759,0.019489934667945,-0.046876613050699],[0.011445125564933,-0.031855072826147,0.024277729913592]],[[0.052442938089371,-0.041552256792784,0.01423273421824],[0.011863016523421,-0.037943869829178,-0.018090695142746],[0.044315025210381,-0.019801048561931,-0.025167478248477]],[[-0.075219996273518,0.0003526589134708,0.070061519742012],[0.033397570252419,-0.086091384291649,-0.017254505306482],[-0.056465167552233,-0.027814902365208,-0.027771467342973]],[[0.012013368308544,0.022660251706839,-0.055222909897566],[0.0038339656312019,-0.002947214525193,-0.018514174968004],[-0.0078304624184966,0.0049364827573299,-0.038849521428347]],[[0.014214502647519,0.011187189258635,-0.040966238826513],[-0.044428873807192,-0.05390514805913,-0.019204065203667],[0.001758552971296,0.037333533167839,0.069360084831715]],[[0.070949077606201,-0.023978970944881,0.038484178483486],[-0.12051028013229,0.0093830861151218,-0.13784219324589],[-0.0072485445998609,-0.029480300843716,0.10483940690756]],[[0.0013576073106378,-0.0069022527895868,0.0081663830205798],[-0.19662702083588,0.052435211837292,-0.021102100610733],[-0.026918267831206,-0.092006221413612,0.086435094475746]],[[-0.008511352352798,-0.0067645311355591,-0.023830017074943],[0.0004694253730122,-0.083918958902359,-0.0021353443153203],[-0.065398782491684,0.014133501797915,0.015574513934553]],[[-0.035014219582081,-0.06667073071003,-0.032733779400587],[0.0081123104318976,-0.04677128046751,-0.028633564710617],[0.064348801970482,-0.0044882581569254,0.0018955916166306]],[[-0.00043821084545925,0.035750072449446,-0.022666810080409],[-0.040763135999441,0.064449571073055,-0.032727506011724],[0.039460506290197,0.031581282615662,0.06797531247139]],[[-0.0035515613853931,-0.075353421270847,0.015377921052277],[0.012737291865051,-0.035130813717842,-0.044267993420362],[0.0064152050763369,0.011256005614996,-0.0076774777844548]],[[-0.12813736498356,0.042194709181786,0.18706361949444],[0.16108426451683,-0.023077424615622,-0.1210939437151],[0.13816258311272,-0.10046262294054,-0.078718736767769]],[[0.048573881387711,0.060609888285398,0.04134463891387],[-0.011478737927973,0.052503902465105,-0.13085742294788],[-0.055432662367821,-0.090698756277561,-0.011823487468064]],[[-0.11134250462055,0.037911623716354,-0.048221446573734],[0.00036124902544543,-0.05204750970006,-0.1310711055994],[0.025615401566029,0.0091349640861154,0.0038088785950094]],[[0.02173270098865,0.03859918564558,-0.0088039143010974],[0.0071916407905519,-0.080636113882065,0.025577124208212],[0.065367788076401,0.01172542385757,-0.066386595368385]],[[0.010623285546899,-0.015452962368727,-0.010645981878042],[-0.0011652861721814,0.058267142623663,0.040548413991928],[-0.066742673516273,0.0059417663142085,0.00065854226704687]],[[-0.017755350098014,-0.0083900801837444,-0.023980746045709],[0.0036021054256707,-0.043677996844053,-0.02907258272171],[-0.013256814330816,-0.03930140286684,-0.0022693665232509]],[[-0.085576750338078,-0.0076428060419858,0.053494211286306],[-0.017107391729951,-0.039080161601305,0.011127850040793],[-0.025396503508091,0.05738614872098,0.025454122573137]],[[-0.063140101730824,-0.032523147761822,-0.07398709654808],[0.025798197835684,-0.0031498356256634,0.054867476224899],[-0.014926256611943,0.024830868467689,0.050823181867599]],[[0.037957720458508,0.090316005051136,0.10213774442673],[-0.019930139183998,-0.033992145210505,-0.073439136147499],[0.050060465931892,0.10104110091925,0.052408281713724]],[[-0.029367784038186,-0.031017592176795,-0.036221843212843],[0.025955520570278,-0.03311562538147,0.010545948520303],[-0.10509500652552,-0.040762834250927,0.0046772472560406]],[[0.0042423782870173,-0.014524667523801,-0.011593856848776],[-0.056275654584169,-0.048178263008595,-0.03607401996851],[0.017637740820646,0.031033692881465,0.031439691781998]],[[-0.075827732682228,0.053047277033329,-0.070569381117821],[0.021896043792367,0.029079625383019,0.043946225196123],[0.03028049133718,-0.063871398568153,-0.087221696972847]],[[-0.039472334086895,0.051235105842352,-0.059323716908693],[-0.028598565608263,0.049668196588755,-0.016910715028644],[0.01302426494658,-0.038878761231899,0.0063204909674823]],[[0.067925840616226,-0.053238544613123,0.0047156712971628],[-0.037484422326088,-0.062944777309895,-0.025547381490469],[0.20983785390854,-0.067041367292404,-0.045544229447842]],[[-0.015003300271928,-0.11665014922619,-0.029307907447219],[-0.014655431732535,-0.086566984653473,0.039607774466276],[-0.060840886086226,-0.060279320925474,-0.0049088220112026]],[[0.021311799064279,-0.031840912997723,-0.025128696113825],[-0.077488481998444,0.086196005344391,-0.044277541339397],[-0.036857433617115,-0.060604266822338,0.084765307605267]],[[-0.070631705224514,0.00064355402719229,-0.071301363408566],[-0.018949029967189,0.042787604033947,0.018398605287075],[0.031870011240244,0.02336803637445,0.01287788245827]],[[-0.0078038582578301,0.0024307877756655,-0.016979679465294],[0.0031142961233854,-0.03056220524013,0.015211034566164],[-0.028421020135283,-0.084593519568443,-0.013570610433817]],[[0.060332886874676,0.042786303907633,0.0010332160163671],[-0.067145265638828,0.024817744269967,0.016497801989317],[-0.009663482196629,-0.046033635735512,-0.027452979236841]],[[-0.089908137917519,-0.010252475738525,-0.011346173472703],[-0.0077318632975221,0.055266603827477,-0.05116892978549],[-0.014824142679572,-0.062621496617794,-0.00063983944710344]],[[-0.054492529481649,0.0035859604831785,0.014920491725206],[-0.018565997481346,-0.059128925204277,0.01402869168669],[-0.039066024124622,0.022031340748072,0.043739199638367]],[[0.074023671448231,-0.046291351318359,-0.085491769015789],[-0.043826494365931,0.023152131587267,0.043011050671339],[0.11127442121506,0.0090810498222709,-0.052415106445551]],[[-0.080363854765892,-0.11102917790413,-0.016095655038953],[-0.04529781639576,0.051645737141371,-0.043382741510868],[0.027818044647574,-0.083406634628773,0.001367649063468]],[[-0.0051024430431426,0.017132351174951,0.064673781394958],[-0.051073648035526,0.022326394915581,-0.099876947700977],[0.020647006109357,0.026723030954599,0.063994273543358]],[[-0.0029306586366147,-0.045930631458759,-0.075900487601757],[-0.071721456944942,0.0050787501968443,-0.076647371053696],[0.12098178267479,0.050017289817333,0.053468342870474]],[[-0.11735467612743,-0.14333420991898,0.11136136949062],[0.012275775894523,0.0043425359763205,0.040845032781363],[-0.17592468857765,0.034169871360064,0.10252040624619]],[[-0.020116062834859,0.069590553641319,-0.11914603412151],[0.10921841114759,0.059519931674004,-0.020559016615152],[0.020342892035842,-0.090144746005535,-0.0032180873677135]],[[-0.00057187490165234,-0.057910118252039,-0.056960560381413],[0.09398165345192,0.0065368195064366,-0.054910700768232],[-0.037322625517845,0.01571392826736,0.078146815299988]],[[-0.082753591239452,-0.02001141384244,-0.13610118627548],[0.055663116276264,-0.064214266836643,0.095046050846577],[-0.048210229724646,0.027551574632525,0.0063688913360238]],[[-0.028948504477739,0.0031515082810074,-0.062705501914024],[0.030678665265441,0.034698288887739,0.0638592466712],[-0.10291074216366,0.010025087743998,-0.027159133926034]],[[-0.014902632683516,-0.096133716404438,-0.018192827701569],[0.0013386165956035,0.051779296249151,-0.03485469892621],[0.0090572191402316,0.017237316817045,0.01743078045547]],[[-0.050799690186977,0.084569357335567,-0.015750097110868],[-0.010077532380819,0.024834485724568,-0.0089327525347471],[-0.028601290658116,0.0020991663914174,-0.0032907701097429]],[[0.041122131049633,-0.0083879437297583,0.044617768377066],[-0.077891483902931,-0.022793047130108,0.0024735506158322],[0.018049025908113,-0.062174383550882,0.010200951248407]],[[-0.051607351750135,-0.064006134867668,-0.021512495353818],[0.063434176146984,-0.078720353543758,0.076519653201103],[-0.027582641690969,-0.014171839691699,0.036739856004715]],[[0.082638189196587,-0.041793029755354,-0.00074432557448745],[0.048044536262751,0.043964616954327,-0.010520736686885],[0.019499033689499,0.0036551069933921,0.076864317059517]],[[0.020752970129251,-0.14993964135647,-0.024130271747708],[-0.037184793502092,-0.0097234826534986,-0.0650949254632],[-0.017974480986595,-0.0068372311070561,0.024724148213863]],[[-0.014505906030536,-0.034716553986073,-0.036204177886248],[-0.048911269754171,-0.045255739241838,-0.059337917715311],[0.087349943816662,-0.00029989768518135,0.021734746173024]],[[-0.11365903168917,0.0785096809268,-0.036616109311581],[-0.00095325207803398,6.6864486143459e-06,-0.10208879411221],[-0.0040307594463229,-0.073115833103657,0.010053170844913]],[[0.072762861847878,-0.063360333442688,-0.063705645501614],[0.081318832933903,-0.056738633662462,0.027380667626858],[-0.0043909191153944,0.062645860016346,-0.00043976292363368]],[[-0.055975843220949,-0.023223703727126,0.057766426354647],[0.029904259368777,-0.0077379080466926,-0.025336772203445],[-0.041323255747557,-0.050259534269571,0.032151874154806]],[[0.02952852845192,0.04997905343771,-0.082731813192368],[-0.018969770520926,-0.10093516856432,0.056695304811001],[-0.028450436890125,0.084805868566036,-0.048811953514814]],[[-0.16610084474087,0.032676052302122,-0.10304137319326],[0.0090681342408061,0.016078965738416,0.069192469120026],[0.0097783096134663,-0.046091705560684,0.001494318828918]],[[0.035679500550032,-0.049382288008928,-0.040200360119343],[0.014900778420269,-0.021282009780407,-0.033724028617144],[-0.080203540623188,-0.066672064363956,-0.070904359221458]],[[-0.11125959455967,0.087615132331848,-0.04600428044796],[-0.019667452201247,0.068088456988335,0.029118509963155],[0.1067286208272,-0.036766123026609,0.13193947076797]],[[0.004452405963093,-0.0095479395240545,-0.021744264289737],[0.0050108386203647,-0.045299608260393,0.005834377836436],[-0.014949647709727,0.036123868077993,0.017048893496394]],[[-0.060192067176104,-0.0030913054943085,0.041701596230268],[-0.048061572015285,-0.0059690973721445,0.014298271387815],[0.028606101870537,-0.015203143469989,-0.0072586201131344]],[[-0.026382697746158,-0.015939803794026,-0.0026721283793449],[0.035428956151009,0.0057984553277493,0.070118062198162],[-0.04063381254673,-0.1183111295104,0.0021870534401387]],[[0.044952653348446,0.031707376241684,-0.059574499726295],[-0.016297556459904,-0.029171280562878,0.046552572399378],[0.026427878066897,-0.086395747959614,-0.064789272844791]],[[-0.0082556530833244,-0.12950047850609,-0.024756021797657],[-0.033188797533512,-0.1083370000124,0.022030198946595],[-0.028167529031634,-0.0022622146643698,-0.055385556071997]]],[[[-0.029904752969742,-0.031782574951649,-0.016639629378915],[-0.027593780308962,-0.011533930897713,-0.013334590941668],[0.0037884491030127,-0.039643082767725,-0.02138882316649]],[[-0.046147160232067,-0.025135084986687,-0.002761468058452],[0.018277548253536,-0.0027233297005296,0.057605311274529],[0.052440837025642,0.043604712933302,-0.036705907434225]],[[-0.032630730420351,-0.086125046014786,0.037056177854538],[-0.12207090854645,-0.01158504281193,-0.038141649216413],[-0.038193684071302,-0.033844023942947,-0.08976361900568]],[[0.0050560003146529,-0.046519663184881,0.025425910949707],[-0.0022231850307435,0.079035341739655,0.12931449711323],[-0.055945243686438,-0.04402194544673,-0.019238913431764]],[[-0.043254438787699,-0.044449590146542,-0.0045461901463568],[-0.070291854441166,-0.012146094813943,0.052897211164236],[-0.043161567300558,0.049876656383276,-0.015051400288939]],[[-0.095669157803059,0.011683780699968,-0.0087406178936362],[-0.074127458035946,-0.11507575213909,-0.00070699112256989],[-0.030763186514378,0.030020721256733,0.070229388773441]],[[0.0036506436299533,-0.012765252962708,-0.030985325574875],[-0.037821508944035,0.059150967746973,-0.055899117141962],[0.029476879164577,-0.015284023247659,-0.012031784281135]],[[-0.020297633484006,-0.061880268156528,0.0087679643183947],[0.012127389200032,0.0023021711967885,-0.042718920856714],[-0.032631281763315,-0.015286389738321,-0.014601141214371]],[[-0.038426876068115,-0.05164372548461,0.049402248114347],[0.012425230816007,0.028399743139744,-0.060453154146671],[0.03745186701417,-0.014128702692688,0.026735357940197]],[[0.044404953718185,-0.017287217080593,-0.0058961352333426],[0.016633911058307,-0.023633977398276,0.03693275526166],[0.014483047649264,0.068764552474022,-0.043866202235222]],[[-0.12233477085829,-0.059520095586777,-0.014127399772406],[-0.012822950258851,-0.059304766356945,0.035519734025002],[-0.013089554384351,-0.02040215022862,0.0044582155533135]],[[0.037343930453062,-0.0013827567454427,0.0039921123534441],[-0.011848382651806,-0.069806657731533,0.029243538156152],[-0.040928479284048,0.046429820358753,-0.0052016144618392]],[[0.027980778366327,-0.017664581537247,-0.038698650896549],[-0.061848253011703,-0.072173669934273,-0.015421869233251],[0.043036330491304,3.0983501346782e-05,-0.048667717725039]],[[0.042119931429625,-0.011462475173175,0.03071223385632],[0.0026379926130176,0.05366351082921,-0.013193123973906],[0.037317126989365,0.010551601648331,0.085369057953358]],[[-0.045800279825926,0.11147727817297,0.062857866287231],[-0.045774858444929,-0.10133597254753,-0.069443941116333],[-0.066476702690125,-0.029713610187173,-0.017061291262507]],[[0.0093758879229426,0.022301515564322,0.027584599331021],[0.0074443370103836,0.030054394155741,-0.004274123813957],[0.00043695504427887,0.036879915744066,-0.041785918176174]],[[-0.014099899679422,0.067802935838699,-0.10454408824444],[0.037565149366856,-0.04403143376112,-0.10604986548424],[0.022915929555893,0.084212370216846,-0.036179881542921]],[[-0.022358691319823,-0.026454783976078,-0.043420884758234],[-0.062446184456348,-0.030319072306156,0.033800844103098],[0.050853233784437,-0.025124952197075,0.085220091044903]],[[0.021905375644565,-0.01096179895103,-0.0012079403968528],[-0.036135002970695,0.01624758541584,0.022080853581429],[0.047692228108644,0.039748292416334,0.10628836601973]],[[-0.016350708901882,0.031716760247946,0.0049992105923593],[0.05923330783844,-0.019511057063937,0.003302660305053],[-0.0056925672106445,-0.046410754323006,0.014767978340387]],[[-0.047618955373764,-0.017920652404428,-0.033877409994602],[-0.030031254515052,0.0058528557419777,0.039718139916658],[0.011886890046299,0.022493612021208,-0.073971085250378]],[[-0.00061170133994892,0.021313911303878,-0.022084763273597],[0.050595548003912,0.0071006612852216,0.075077213346958],[-0.030875496566296,-0.055918417870998,-0.090169295668602]],[[-0.02449069544673,0.013109169900417,-0.042021997272968],[0.079990454018116,0.03717228397727,-0.0081513347104192],[-0.012082473374903,-0.016045087948442,0.01771236024797]],[[0.040292236953974,-0.0046576303429902,0.03045709989965],[-0.0016295833047479,0.045451171696186,0.044229935854673],[0.037964098155499,0.098055206239223,0.060704164206982]],[[0.028553316369653,-0.035462159663439,-0.014009838923812],[-0.014244373887777,0.043768044561148,-0.046067383140326],[0.012655572965741,-0.059607740491629,-0.0055406433530152]],[[0.0035702320747077,0.030822515487671,0.057339005172253],[0.10284509509802,0.082629263401031,0.039552707225084],[0.010115737095475,-0.05253080278635,0.027984298765659]],[[-0.016860296949744,0.035376470535994,0.0027034445665777],[0.047898303717375,0.029563274234533,0.0065622036345303],[-0.017616624012589,0.0027149529196322,0.061345893889666]],[[-0.026134822517633,-0.025736240670085,0.010909833945334],[-0.056437160819769,-0.057907711714506,-0.054494604468346],[0.0084635829553008,-0.059115931391716,-0.051231678575277]],[[-0.076458960771561,-0.031231379136443,0.048967730253935],[0.021000422537327,-0.02611499093473,0.021666288375854],[-0.0045596356503665,-0.0060340580530465,0.046499382704496]],[[-0.028866937384009,0.041668131947517,0.020862963050604],[-0.015411390922964,0.0036500168498605,-0.020063389092684],[0.0051646674983203,0.010170892812312,0.0088639734312892]],[[-0.029560994356871,0.013815282844007,0.090529754757881],[0.022986870259047,-0.0044773514382541,0.038630302995443],[-0.043981209397316,0.070553995668888,-0.034791063517332]],[[0.051770847290754,-0.073418088257313,0.02897953428328],[-0.098724476993084,0.061694052070379,-0.10842715203762],[0.028751300647855,-0.059353940188885,0.0043427683413029]],[[-0.015432053245604,0.02691600471735,0.019572636112571],[-0.003916721791029,-0.063309453427792,-0.059674344956875],[0.068181306123734,-0.024121025577188,0.0038295625708997]],[[-0.02310873940587,-0.00094232021365315,-0.050587799400091],[-0.0049921511672437,-0.029862115159631,0.1124055236578],[0.0021094793919474,-0.011238551698625,-0.10146900266409]],[[0.011296229436994,-0.063565157353878,0.026736358180642],[0.0047400170005858,0.0021099871955812,-0.026697305962443],[-0.0015997930895537,0.026092555373907,-0.007314688526094]],[[0.023806253448129,0.050105039030313,-0.033139009028673],[0.032941620796919,-0.10128863155842,-0.032096929848194],[-0.014450275339186,0.084577985107899,-0.037567261606455]],[[0.029350576922297,-0.015224548056722,-0.053155064582825],[0.063491076231003,0.04793244227767,-0.11833366006613],[-0.041622865945101,-0.0082687269896269,0.022292092442513]],[[0.0083743585273623,0.0062472401186824,0.040325276553631],[-0.057887829840183,-0.017989683896303,0.024191070348024],[-0.066905677318573,-0.053564868867397,0.0035232182126492]],[[-0.013131878338754,-0.0019646566361189,0.010003834031522],[-0.0032769381068647,0.021570907905698,-0.052496425807476],[-0.061899933964014,-0.016588477417827,-0.024669121950865]],[[0.0042177862487733,-0.061756074428558,0.083032734692097],[0.012160412035882,0.039131842553616,0.01984640583396],[0.0078984210267663,0.076626271009445,-0.051984023302794]],[[-0.0087127918377519,0.026292210444808,-0.038046274334192],[-0.0097205881029367,0.016948783770204,0.029630701988935],[-0.14696155488491,-0.08685926347971,0.032496087253094]],[[-0.024612734094262,0.026503261178732,0.055468816310167],[0.0073669929988682,0.041501127183437,0.054669678211212],[-0.087255850434303,-0.018785707652569,0.029949018731713]],[[0.017191100865602,-0.0035212722141296,-0.03115320764482],[0.030349791049957,-0.041295181959867,-0.053302634507418],[0.021226700395346,0.050955630838871,-0.010679120197892]],[[8.7689455540385e-05,0.043064303696156,0.016344940289855],[0.02236039377749,0.02099403552711,-0.068512186408043],[0.030994473025203,0.027467213571072,0.054665751755238]],[[-0.039559744298458,0.013049176894128,0.01542260684073],[-0.09748525172472,-0.035357914865017,-0.0023328640963882],[0.0074760215356946,-0.049034144729376,-0.0061292415484786]],[[-0.023572076112032,-0.042958535254002,-0.021877350285649],[-0.068872340023518,-0.038776960223913,-0.017821414396167],[-0.062297970056534,-0.053441226482391,-0.03648779541254]],[[-0.038222003728151,0.010209806263447,-0.058801379054785],[-0.074655964970589,0.060362532734871,0.067489720880985],[0.010963675566018,0.082703068852425,-0.00037300639087334]],[[0.037731029093266,0.055276319384575,0.0065891570411623],[0.010069565847516,0.011138223111629,-0.040734745562077],[-0.074706919491291,0.024883424863219,-0.10610833764076]],[[-0.030723260715604,-0.0034330196212977,0.034384377300739],[-0.0084466757252812,-0.015202559530735,-0.00050387193914503],[-0.061112210154533,-0.064332418143749,0.038941260427237]],[[0.005728189367801,0.039576467126608,-0.071448378264904],[-0.019765445962548,0.040560714900494,0.052522476762533],[0.028266487643123,-0.017486536875367,-0.1480420678854]],[[-0.0016872697742656,0.024595677852631,0.063423231244087],[-0.0349375680089,-0.041337102651596,0.049333229660988],[-0.14706367254257,-0.010428203269839,0.039692766964436]],[[-0.0091868126764894,0.059369571506977,-0.063941687345505],[0.049964897334576,0.031130837276578,-0.024040151387453],[0.017544146627188,-0.00636339886114,-0.034549091011286]],[[-0.040618926286697,-0.035985212773085,-0.016928903758526],[-0.03708590567112,-0.025889251381159,-0.043939620256424],[0.10157035291195,-0.098139263689518,0.046706754714251]],[[-0.0054861758835614,-0.023899488151073,0.0030814786441624],[0.0032554396893829,0.01554677542299,0.025308893993497],[-0.035444833338261,-0.0034730825573206,-0.066347531974316]],[[0.0032078283838928,-0.063642233610153,0.0043608392588794],[-0.022815708070993,-0.020169271156192,-0.012165809981525],[-0.045899786055088,-0.031476855278015,-0.043883230537176]],[[0.0030234998557717,0.035940699279308,0.0081830928102136],[0.0041265147738159,-0.031422067433596,-0.025507636368275],[-0.030950164422393,-0.079370364546776,0.018127664923668]],[[0.0016683428548276,-0.0037214262410998,-0.041124887764454],[0.0024536577984691,-0.003060860093683,0.031266909092665],[0.0075936489738524,0.010463569313288,0.050803121179342]],[[0.049291346222162,-0.008875117637217,0.044908430427313],[-0.0076554748229682,0.02634016238153,-0.019499158486724],[0.062621727585793,0.017901968210936,0.1338714659214]],[[0.064509771764278,-0.056947752833366,0.021809160709381],[0.023424252867699,0.022884666919708,0.021283276379108],[0.056442387402058,0.048765026032925,-0.0088496329262853]],[[-0.017392126843333,0.030175006017089,0.039376255124807],[0.0034245732240379,-0.028450779616833,-0.010199588723481],[0.016396576538682,0.0048761134967208,-0.024297408759594]],[[0.085775226354599,-0.00987967569381,0.031323757022619],[-0.0038145037833601,-0.012740225531161,0.011772155761719],[-0.0097169922664762,-0.00086007994832471,0.027737710624933]],[[0.062683939933777,-0.018825437873602,-0.050368569791317],[0.0034640566445887,0.023874629288912,0.034390348941088],[-0.057891257107258,-0.049314200878143,0.05718782544136]],[[0.011124219745398,-0.053912300616503,-0.0017787454416975],[0.096969909965992,-0.032971605658531,0.0031964578665793],[-0.037102650851011,0.027986519038677,-0.037346206605434]],[[-0.0026292279362679,0.01967129483819,-0.013660071417689],[-0.071417018771172,0.01167415920645,-0.0063711074180901],[-0.032479397952557,-0.019170762971044,-0.020589226856828]]],[[[0.013975863344967,-0.023691704496741,0.028212802484632],[0.0029018314089626,-0.029081938788295,0.016184518113732],[-0.12520648539066,-0.17187048494816,-0.047018356621265]],[[-0.0048247999511659,-0.067447796463966,-0.081119626760483],[-0.030366543680429,0.073797419667244,-0.039568338543177],[0.016393318772316,-0.045008704066277,-0.0069757401943207]],[[0.0038192356005311,-0.07542023062706,-0.012255682609975],[-0.037458296865225,-0.016580140218139,-0.0060120206326246],[-0.038369257003069,-0.037581313401461,0.011426587589085]],[[0.028774736449122,-0.053643818944693,-0.0031418791040778],[0.051283422857523,0.093430206179619,-0.031689360737801],[0.019483687356114,0.038454420864582,-0.043960697948933]],[[0.082495681941509,0.045489810407162,-0.026202062144876],[-0.075750902295113,-0.040549024939537,-0.089129507541656],[0.090590596199036,-0.010413982905447,-0.15211115777493]],[[-0.06577742099762,-0.01405515987426,-0.10579183697701],[0.06520801782608,0.015008712187409,-0.029007822275162],[-0.1104995533824,-0.050567340105772,0.0094467867165804]],[[-0.0062001128681004,-0.017661845311522,-0.047326911240816],[-0.025462558493018,0.0090951146557927,0.0023974268697202],[0.038246106356382,-0.0082545010372996,-0.027532801032066]],[[-0.097227193415165,-0.06080175563693,0.00990582536906],[-0.0078620947897434,-0.0053229271434247,0.1110577210784],[0.025567645207047,0.1335214972496,0.00016841695469338]],[[-0.070479676127434,0.058051239699125,-0.081543281674385],[-0.083508655428886,-0.027153639122844,0.073885314166546],[-0.063422568142414,-0.10623637586832,0.17451912164688]],[[0.097894318401814,0.022474313154817,-0.051492813974619],[0.019384859129786,-0.012141773477197,-0.028665725141764],[-0.010316757485271,-0.032795690000057,-0.023756716400385]],[[0.032892178744078,0.00015399960102513,-0.079041361808777],[-0.079580157995224,0.0029513114131987,0.046037849038839],[-0.086016453802586,-0.080562017858028,0.0054612294770777]],[[-0.012823462486267,-0.03936417773366,-0.042870696634054],[0.075470946729183,0.057696387171745,0.02240576595068],[0.0099155846983194,-0.012604296207428,-0.039166141301394]],[[-0.01293864287436,0.016206249594688,-0.018439246341586],[-0.041611611843109,0.01694312505424,0.003517504548654],[0.011928334832191,-0.06056746467948,0.07205817848444]],[[0.044269911944866,0.0090076243504882,0.027197919785976],[0.021588617935777,0.036233030259609,0.064847156405449],[-0.012666993774474,-0.052915744483471,-0.043021481484175]],[[-0.071086637675762,-0.0077218627557158,0.0041459533385932],[-0.051793977618217,-0.0064550093375146,-0.076401330530643],[-0.00031664065318182,0.076903611421585,-0.016787458211184]],[[0.034483883529902,-0.14585128426552,-0.08898551017046],[0.075316205620766,-0.064185425639153,-0.0482381246984],[-0.045099709182978,0.057683434337378,0.0096112070605159]],[[0.011186140589416,-0.012428152374923,-0.026779463514686],[0.026416294276714,-0.01569046638906,0.078318819403648],[0.020162884145975,0.094703607261181,0.016360096633434]],[[-0.046685438603163,-0.0076256156899035,0.01873417571187],[-0.028810614719987,0.038569431751966,0.024377567693591],[0.085865341126919,-0.012051443569362,0.063013076782227]],[[-0.001100713154301,0.068478904664516,-0.024624807760119],[-0.02879037335515,-0.01536501199007,0.012010175734758],[-0.043958559632301,0.020171454176307,-0.039344374090433]],[[0.040105782449245,-0.0099138608202338,-0.037494722753763],[-0.024701673537493,-0.035456646233797,-0.0031865597702563],[0.002966434461996,0.070751391351223,0.0077854632399976]],[[-0.019083695486188,0.033496491611004,-0.0240563377738],[-0.0019916805904359,-0.027486251667142,0.0065204813145101],[-0.0072021195665002,0.026689624413848,-0.080046027898788]],[[-0.11714235693216,-0.1015664935112,-0.096104644238949],[-0.073439121246338,-0.027995212003589,0.10406155884266],[-0.024175349622965,0.067342713475227,0.027944404631853]],[[0.034330449998379,-0.034801293164492,-0.096911244094372],[-0.010347497649491,-0.084190972149372,0.006812640465796],[0.11066520214081,0.052553206682205,-0.053593374788761]],[[0.012953205034137,-0.039518263190985,0.14600981771946],[0.029394337907434,-0.084004372358322,0.035365242511034],[-0.063642047345638,0.080766126513481,0.087587684392929]],[[0.0044327895157039,-0.02127131447196,-0.06477528065443],[0.014413258060813,-0.071721561253071,0.034121345728636],[-0.073544405400753,-0.026142865419388,0.20996735990047]],[[0.059206604957581,-0.011654039844871,0.045515421777964],[-0.063366554677486,-0.0056188907474279,0.022737585008144],[-0.0013643084093928,-0.056881282478571,0.0083446903154254]],[[-0.034979790449142,-0.01393355242908,-0.01911449059844],[-0.00068242894485593,0.10446075350046,-0.070119701325893],[0.023100983351469,0.030377116054296,0.067239411175251]],[[0.017035396769643,-0.028981145471334,0.094871893525124],[-0.0065215779468417,-0.013133282773197,0.019971165806055],[-0.10136310756207,0.041348956525326,-0.090361833572388]],[[0.098843470215797,0.083139792084694,-0.06922522932291],[0.0059685427695513,0.067475534975529,0.05785559117794],[0.033956211060286,0.074219815433025,-0.025034610182047]],[[-0.053862053900957,-0.040330316871405,0.019736493006349],[-0.02105575799942,0.12895107269287,0.023380251601338],[-0.0014052105834708,0.04612148180604,0.004226200748235]],[[0.066221885383129,-0.050471622496843,-0.13047325611115],[-0.025779668241739,0.04839001968503,0.002752888482064],[0.026956493034959,-0.072178371250629,-0.01692295819521]],[[0.049149081110954,0.019059771671891,-0.0012727311113849],[-0.02076106518507,0.017956769093871,0.024582728743553],[0.11972390115261,-0.013487854972482,-0.05328468978405]],[[0.020608481019735,-0.060819208621979,-0.020823515951633],[0.024733165279031,-0.07494593411684,-0.016600057482719],[-0.024000149220228,-0.0057697133161128,0.046118892729282]],[[0.025805464014411,0.078253477811813,0.090682096779346],[0.020908419042826,-0.030958553776145,0.10902344435453],[-0.069542370736599,-0.084801055490971,0.067530512809753]],[[-0.058848541229963,0.012432732619345,-0.01929141022265],[-0.03443481400609,-0.066641084849834,-0.036548662930727],[0.021429965272546,-0.036705911159515,-0.072432443499565]],[[0.0022833561524749,-0.085403084754944,-0.025420926511288],[0.0008798559429124,-0.0038164632860571,-0.016262734308839],[-0.015383741818368,-0.022529339417815,-0.069390974938869]],[[-0.057701367884874,0.030558902770281,-0.014218563213944],[-0.0079917097464204,0.038027908653021,0.070716604590416],[-0.059039372950792,0.046450726687908,-0.075344868004322]],[[0.019818207249045,-0.05645565316081,-0.040752936154604],[0.0061499495059252,-0.037157729268074,-0.13080385327339],[0.053486071527004,0.084005318582058,0.064316168427467]],[[0.051499467343092,0.082115307450294,0.054522879421711],[-0.0079309530556202,-0.054168179631233,-0.061251290142536],[-0.0029900178778917,-0.0266670640558,-0.050622470676899]],[[0.014495604671538,0.079547554254532,-0.015444070100784],[0.01748132519424,-0.041258953511715,-0.09751470386982],[-0.099271699786186,0.063536331057549,-0.016831241548061]],[[0.031858403235674,-0.025971010327339,0.024056661874056],[-0.05304242298007,-0.049247525632381,-0.055168934166431],[-0.037792887538671,0.0013089410495013,-0.0020989114418626]],[[-0.11887058615685,0.066785983741283,0.029584344476461],[0.012334270402789,0.049693237990141,0.0025604187976569],[0.037946563214064,-0.060944277793169,-0.056706108152866]],[[0.046479631215334,0.02197509072721,0.10638994723558],[0.0064296508207917,-0.045551553368568,0.032894685864449],[-0.15359002351761,-0.13491827249527,0.0030405146535486]],[[0.11969072371721,-0.015246193856001,-0.020653571933508],[-0.050766032189131,0.042380344122648,0.042960487306118],[-0.075665988028049,-0.046248767524958,-0.021672606468201]],[[0.010407184250653,-0.13353899121284,-0.080870442092419],[0.04412505403161,-0.077466905117035,-0.0025230082683265],[0.0020162912551314,-0.032420512288809,0.038603764027357]],[[0.011378142051399,0.0021518191788346,-0.088419169187546],[-0.11205743253231,-0.063494175672531,0.032708186656237],[-0.011240820400417,-0.066758625209332,0.12938107550144]],[[-0.036757670342922,-0.1121030151844,0.042973976582289],[0.043788075447083,-0.0090884594246745,-0.053253948688507],[0.084273234009743,-0.00022070865088608,-0.022428926080465]],[[0.049958243966103,-0.10112926363945,-0.022362934425473],[-0.048479113727808,-0.015472900122404,0.081130355596542],[0.028533302247524,0.14327445626259,-0.021408911794424]],[[0.018262317404151,0.0095531716942787,-0.016453390941024],[-0.07342840731144,-0.010970869101584,-0.078364588320255],[0.08576138317585,0.067217081785202,0.022783288732171]],[[0.028591675683856,-0.02514910325408,-0.10336139053106],[0.040788855403662,-0.021419955417514,0.014669832773507],[-0.016499564051628,-0.092102363705635,0.057658478617668]],[[-0.13166618347168,0.042022705078125,0.021330850198865],[0.10242285579443,0.01932012103498,0.020989058539271],[0.016745453700423,-0.082542479038239,-0.014502133242786]],[[-0.0027820693794638,0.10050761699677,0.063794523477554],[0.0076101603917778,0.01356447301805,-0.0074767204932868],[0.0094184279441833,0.12198486179113,0.019572019577026]],[[0.006110989023,0.074686802923679,0.068557284772396],[0.0026026745326817,-0.073921583592892,-0.04206869378686],[0.014812992885709,0.0049035446718335,0.053873088210821]],[[0.02035216614604,0.01970799267292,0.0066509726457298],[-0.010939474217594,0.00065062171779573,0.049605671316385],[0.10841060429811,-0.05285407975316,0.051937766373158]],[[0.00176571670454,0.006833890452981,-0.057419285178185],[0.0033350982703269,0.053308885544538,0.043800830841064],[-0.024261936545372,-0.076271161437035,-0.036021318286657]],[[-0.058806736022234,-0.0095827868208289,-0.012589287012815],[-0.0031685221474618,0.012214857153594,0.029246980324388],[0.064792446792126,0.016759427264333,0.027000075206161]],[[0.043641902506351,0.05388929694891,-0.044511254876852],[-0.045140735805035,-0.056467268615961,0.025888260453939],[-0.13740994036198,-0.0086422208696604,0.002827427117154]],[[0.041294168680906,-0.096170648932457,-0.021302185952663],[0.030069956555963,-0.058076959103346,-0.053812984377146],[-0.02833579480648,0.085095718502998,0.015377199277282]],[[0.025365587323904,0.095212332904339,0.10245419293642],[-0.063797608017921,0.03294937685132,-0.097904533147812],[0.0020023104734719,0.05447893217206,0.059626545757055]],[[-0.0082573518157005,-0.015009954571724,0.021745961159468],[0.055621810257435,0.036282081156969,0.0073777586221695],[-0.042247608304024,-0.043059043586254,-0.014066131785512]],[[0.021356161683798,-0.037856839597225,0.025217575952411],[-0.083805531263351,-0.0015569622628391,-0.02833023108542],[-0.059662818908691,-9.6189047326334e-05,0.022881928831339]],[[-0.026539361104369,0.053789723664522,-0.0074153635650873],[-0.033336222171783,0.052808832377195,0.045449152588844],[-0.06350564956665,0.0053177876397967,0.029985886067152]],[[-0.09411283582449,-0.022310171276331,0.012231907807291],[0.064816273748875,0.028295816853642,0.012392887845635],[0.019801761955023,0.047129943966866,-0.060491088777781]],[[-0.056211419403553,-0.040541429072618,0.00158230017405],[0.013983675278723,-0.0055690417066216,-0.060649078339338],[-0.103162586689,-0.012637917883694,-0.0076095391996205]]],[[[0.012616311199963,-0.0023759622126818,0.067490346729755],[-0.016753688454628,-0.032996889203787,0.032057758420706],[-0.034221410751343,0.031866572797298,-0.015725903213024]],[[0.026380119845271,0.024425007402897,0.057244300842285],[-0.038188349455595,0.02848513610661,0.023755803704262],[0.0085133695974946,0.03972602635622,-0.099729381501675]],[[-0.066610425710678,-0.032594554126263,-0.043442234396935],[-0.073272213339806,0.054637756198645,0.052618313580751],[-0.022110920399427,-0.028985453769565,0.049115017056465]],[[-0.034858621656895,0.019961630925536,0.048520360141993],[-0.031422179192305,-0.087970703840256,0.0098388493061066],[0.024038361385465,-0.020664572715759,0.028101351112127]],[[0.017552262172103,-0.025459943339229,-0.034884184598923],[0.013153463602066,0.0055030672810972,-0.017480617389083],[0.0308967679739,-0.015185608528554,0.13774006068707]],[[-0.025472026318312,-0.053085684776306,0.029338546097279],[0.035719607025385,0.035703435540199,-0.027752876281738],[0.056475389748812,0.056720979511738,0.03173391520977]],[[-0.044088520109653,0.00063026580028236,-0.079544678330421],[-0.022583017125726,-0.11732921749353,0.022904319688678],[-0.023617012426257,0.02488112077117,0.014948591589928]],[[0.074963048100471,-0.03158150613308,-0.027472021058202],[-0.00022927281679586,-0.021445212885737,0.057892140001059],[0.05558180809021,0.041347220540047,0.044137947261333]],[[0.027920348569751,-0.021236807107925,-0.046220369637012],[0.026531465351582,0.11860779672861,0.033019691705704],[-0.039370521903038,0.014096512459219,0.0077397506684065]],[[-0.045694343745708,-0.11756180226803,-0.16284672915936],[0.079782642424107,-0.022294169291854,0.043467551469803],[0.077228859066963,0.006293554790318,0.041677746921778]],[[0.032271753996611,0.018267996609211,0.063815459609032],[-0.023171059787273,0.087185710668564,-0.019145000725985],[-0.070473708212376,-0.020066443830729,-0.025994874536991]],[[-0.075625725090504,0.0070712622255087,-0.038691118359566],[0.023687150329351,-0.0024588815867901,-0.016551379114389],[0.11155975610018,-0.07881236076355,-0.079155586659908]],[[0.011583535932004,-0.030744748190045,0.077080734074116],[-0.058270435780287,0.0078969411551952,-0.075683496892452],[0.029975285753608,0.001355349086225,0.028904683887959]],[[0.031768877059221,-0.0043363012373447,0.010030439123511],[0.023933410644531,0.0091649824753404,-0.044708393514156],[0.040568374097347,-0.0097506800666451,-0.093966968357563]],[[-0.063951186835766,-0.020291101187468,0.089709028601646],[-0.049009010195732,0.031560566276312,0.040504973381758],[-0.083827637135983,0.047129124403,0.061342865228653]],[[0.046033833175898,0.016667218878865,-0.038011316210032],[-0.0034491778351367,-0.0073227151297033,0.1343881636858],[0.018014511093497,-0.060068152844906,-0.070786193013191]],[[-0.0038699095603079,0.019096395000815,0.0094971675425768],[0.039825856685638,-0.0097067728638649,-0.02597551420331],[0.045790158212185,0.054039653390646,-0.015873417258263]],[[-0.010060044005513,-0.030490450561047,0.072870582342148],[-0.00034334964584559,-0.024227490648627,-0.031777124851942],[0.052501656115055,-0.00086405390175059,-0.03194659948349]],[[-0.0019517074106261,-0.072015650570393,-0.0025288939941674],[-0.0024849341716617,0.055244132876396,0.044710926711559],[-0.026390079408884,-0.057889100164175,0.007121714297682]],[[0.011726622469723,-0.016172459349036,-0.0354372151196],[0.025875909253955,0.0055285054259002,-0.021703600883484],[-0.0095827151089907,0.014420227147639,0.010361529886723]],[[0.018007213249803,-0.0549724586308,-0.099719360470772],[-0.0038222575094551,0.02362460270524,-0.058055497705936],[0.011937810108066,0.087897188961506,0.048871796578169]],[[-0.0072978511452675,0.060727171599865,-0.12272759526968],[-0.018899578601122,-0.022977393120527,0.028120622038841],[-0.058215122669935,0.023849645629525,-0.05857989937067]],[[0.04271299764514,-0.026390191167593,-0.010529987514019],[-0.0025347946211696,-0.08704786002636,-0.027180379256606],[0.023868648335338,0.010154305025935,-0.0019251025514677]],[[0.12697169184685,0.14711447060108,0.10011138021946],[0.041899062693119,0.13262660801411,0.016507999971509],[-0.026122780516744,-0.00057904655113816,-0.13354590535164]],[[0.070919811725616,-0.010128668509424,0.062691695988178],[0.0045629921369255,0.010037782602012,0.01200152374804],[0.061293475329876,0.047286711633205,-0.056687150150537]],[[0.030948555096984,-0.040269408375025,-0.0042344122193754],[0.0048579755239189,-0.016929339617491,0.023196926340461],[0.016728226095438,0.059030909091234,0.030947661027312]],[[0.037427417933941,0.0024323754478246,0.11759639531374],[0.053796719759703,0.048481658101082,-0.008487893268466],[0.022045316174626,-0.067470259964466,-0.045041561126709]],[[-0.10423880815506,-0.0030761293601245,-0.041781526058912],[-0.067001231014729,-0.032058402895927,0.034162286669016],[0.013977660797536,0.017870662733912,-0.057976465672255]],[[-0.054913274943829,0.00095091992989182,0.024760128930211],[0.020211700350046,0.034916818141937,0.032416611909866],[0.067890666425228,-0.021246528252959,0.019596476107836]],[[-0.066780276596546,-0.09739238768816,-0.026452679187059],[-0.066356092691422,-0.03573627397418,0.11153090000153],[0.03525760024786,-0.017634134739637,-0.0038686690386385]],[[0.056752536445856,0.060039006173611,-0.020663233473897],[-0.014339699409902,0.0054446393623948,0.023377768695354],[0.010314780287445,-0.0071252156049013,0.022843578830361]],[[0.054051581770182,-0.1321577578783,0.022248866036534],[0.020467266440392,-0.017820412293077,0.031685307621956],[0.048946663737297,0.03976421430707,0.0061512351967394]],[[-0.026730133220553,0.019087113440037,-0.01828171685338],[0.03612557798624,0.0038816821761429,-0.0065620769746602],[-0.0082321567460895,0.018687475472689,0.037671964615583]],[[0.053150493651628,0.07884668558836,0.028704468160868],[0.0061718951910734,0.095713317394257,-0.060241870582104],[0.10689202696085,-0.020245995372534,0.003510158509016]],[[-0.01991294324398,-0.038041528314352,0.016372544690967],[0.11780131608248,0.017047937959433,0.05985376983881],[0.12179976701736,0.011934268288314,0.095359288156033]],[[-0.047527063637972,-0.036464601755142,-0.052425358444452],[-0.0069663496688008,-0.03528456017375,-0.068605467677116],[-0.063841357827187,-0.041017547249794,-0.011846190318465]],[[0.0023638806305826,-0.016280440613627,-0.015776623040438],[0.022551720961928,-0.0041450839489698,0.033031452447176],[-0.08588133007288,0.02586173824966,-0.038906771689653]],[[-0.024564223363996,-0.076666265726089,-0.068163372576237],[-0.069619111716747,-0.079059720039368,-0.010328778997064],[0.17071264982224,0.02123193629086,-0.012393648736179]],[[0.12417671829462,0.099234260618687,-0.01897251047194],[0.003405116032809,0.047844599932432,-0.12397939711809],[0.05544538795948,0.042615070939064,-0.13638944923878]],[[-0.043462637811899,0.096686437726021,0.019872365519404],[0.040308333933353,-0.00022861789329909,0.074149064719677],[-0.027910113334656,-0.013894971460104,0.037609405815601]],[[0.018581986427307,0.036528743803501,0.04332422092557],[0.0870221555233,0.047229155898094,0.032843038439751],[-0.026334905996919,-0.0050595714710653,-0.053724955767393]],[[-0.036582667380571,0.01875426620245,0.047777023166418],[-0.01744481548667,0.073270693421364,0.10338984429836],[0.01792080886662,0.075667254626751,-0.028508579358459]],[[0.012612945400178,-0.051690682768822,-0.066683128476143],[-0.04142128303647,-0.024139791727066,-0.049848549067974],[-0.027366761118174,0.0029302567709237,0.03782594203949]],[[0.1027978733182,-0.0033056028187275,0.03991649672389],[0.037481889128685,-0.029812844470143,0.027418768033385],[0.018141634762287,0.070489697158337,0.042415920644999]],[[-0.12038563936949,-0.028450964018703,0.043245494365692],[0.009084228426218,-0.035828094929457,0.050562757998705],[0.079879060387611,-0.0097734173759818,0.012921495363116]],[[-0.12872268259525,0.050171237438917,0.0079511869698763],[-0.040302261710167,0.034537706524134,0.063772112131119],[-0.019334599375725,-0.005490330979228,-0.039174929261208]],[[0.0038245534524322,-0.0012673159362748,0.025445334613323],[0.017012841999531,0.046445731073618,-0.0065011847764254],[-0.011755766347051,0.0033469400368631,-0.034431178122759]],[[0.073333263397217,-0.061286382377148,-0.064080342650414],[0.092324644327164,0.059154994785786,0.0095709189772606],[0.045215405523777,0.055846318602562,-0.032769441604614]],[[-0.047079991549253,0.0052601220086217,-0.069359987974167],[0.017596036195755,0.025294223800302,-0.031492955982685],[-0.012399736791849,0.034436289221048,0.0074597341008484]],[[-0.0084919352084398,-0.065440639853477,-0.063642717897892],[0.03618261963129,-0.049839459359646,0.03873635083437],[0.026525685563684,-0.076455071568489,0.042549014091492]],[[-0.061263483017683,0.0021141525357962,0.019192419946194],[0.021007243543863,-0.022456355392933,-0.026305496692657],[-0.060939207673073,-0.043225947767496,-0.034481175243855]],[[0.027701923623681,-0.064464591443539,0.082965426146984],[0.087260358035564,0.01202127058059,0.020071387290955],[-0.053551346063614,0.012184824794531,0.0088761867955327]],[[-0.0038953451439738,-0.14809215068817,-0.0079485978931189],[0.061567481607199,0.029426509514451,-0.0054093603976071],[-0.0046063014306128,-0.00021528224169742,-0.0081247948110104]],[[0.023363370448351,0.073335908353329,-0.0077485586516559],[-0.12381625920534,-0.040478944778442,-0.011044479906559],[-0.086280465126038,-0.063677445054054,0.013900474645197]],[[-0.024372966960073,-0.040306769311428,0.0062202545814216],[-0.040785919874907,-0.090630799531937,-0.012657811865211],[-0.073297701776028,0.019342647865415,0.062602259218693]],[[0.046787559986115,-0.012333771213889,-0.086159005761147],[0.022860456258059,-0.0092653157189488,0.020295048132539],[-0.016032285988331,0.02698559500277,-0.021366562694311]],[[0.021065179258585,0.05162638053298,0.043279070407152],[-0.068687804043293,-0.024342238903046,-0.025705987587571],[-0.069880813360214,-0.053948417305946,-0.052311655133963]],[[-0.028733296319842,-0.051585007458925,0.01270798034966],[-0.044156156480312,-0.026943672448397,0.0057382108643651],[-0.042025599628687,-0.029473956674337,-0.077034756541252]],[[0.11822918057442,-0.073330067098141,0.086420141160488],[0.052884805947542,0.10112535208464,0.035906419157982],[0.088999360799789,0.025439333170652,-0.0014132125070319]],[[-0.0097226873040199,-0.0093908505514264,0.028850002214313],[-0.099604189395905,0.0084771485999227,-0.019719045609236],[0.070711493492126,0.036750853061676,-0.011799035593867]],[[-0.033110119402409,0.021372303366661,0.010082714259624],[0.05476987361908,0.0022748212795705,-0.017035637050867],[-0.020361309871078,0.096528887748718,0.010060336440802]],[[0.028941549360752,0.019364450126886,0.018284412100911],[-0.003278388408944,0.077471889555454,0.021603399887681],[-0.10356009751558,-0.064997062087059,-0.071321777999401]],[[-0.012313304468989,0.044644579291344,-0.016786098480225],[-0.052572183310986,-0.10419074445963,0.025309901684523],[-0.003823748556897,-0.017146725207567,-0.038553431630135]],[[0.036135785281658,-0.02628649957478,-0.074726395308971],[0.056920185685158,-0.010641411878169,-0.12763711810112],[0.0084685022011399,0.064891189336777,-0.0088217481970787]]],[[[-0.001152677112259,-0.11519787460566,-0.031729385256767],[-0.062178567051888,-0.0073645217344165,-0.13625906407833],[0.0490727648139,0.0036652146372944,0.092207036912441]],[[0.020244464278221,-0.119757771492,0.020665004849434],[-0.03764546662569,-0.025958143174648,0.0078765619546175],[0.0025189283769578,0.023881232365966,-0.0024978150613606]],[[-0.016597645357251,-0.082714661955833,-0.039531972259283],[-0.092430464923382,-0.043957520276308,-0.048087663948536],[-0.025068577378988,-0.069634176790714,-0.0010501617798582]],[[-0.01919742487371,-0.05526327341795,-0.10505237430334],[-0.044730871915817,0.020071195438504,0.0022246059961617],[-0.063275143504143,-0.048720195889473,0.032750006765127]],[[0.032446175813675,0.023150283843279,0.0095055596902966],[0.029055509716272,-0.090137474238873,-0.089696511626244],[-0.0071917581371963,0.06588226556778,-0.025572333484888]],[[0.037760876119137,-0.012010779231787,0.030054410919547],[-0.11245778203011,-0.13417133688927,0.13114196062088],[-0.073299378156662,-0.11493441462517,0.0083887558430433]],[[-0.058300103992224,-0.048764154314995,-0.03964851424098],[-0.14384573698044,-0.056977309286594,-0.044858735054731],[-0.11842420697212,-0.067261978983879,0.024659676477313]],[[-0.0047699916176498,0.025183064863086,0.014702340587974],[-0.024274002760649,-0.047082312405109,0.069830395281315],[0.02655116096139,0.13296085596085,-0.0052504702471197]],[[-0.036376021802425,-0.088741548359394,-0.060606751590967],[-0.046335641294718,-0.0059852348640561,-0.0093911122530699],[0.024645512923598,-0.0091355806216598,-0.058402683585882]],[[-0.029028590768576,-0.035339407622814,0.053001154214144],[-0.0025508671533316,-0.0062544788233936,-0.040687099099159],[-0.011182026937604,-0.054900445044041,-0.0026259501464665]],[[-0.06980299949646,-0.021617667749524,-0.20141811668873],[0.085639037191868,0.024468071758747,-0.077955223619938],[-0.12547758221626,-0.0055004879832268,0.11361780017614]],[[-0.10400551557541,-0.081668131053448,0.039842449128628],[0.0085343830287457,-0.014896639622748,-0.01407428085804],[-0.043409578502178,-0.023067804053426,0.038661528378725]],[[0.021340299397707,-0.0034019183367491,0.0116395810619],[-0.043132442981005,-0.067338056862354,-0.011633822694421],[-0.0057731927372515,0.034799076616764,0.035910230129957]],[[0.066185548901558,0.046567134559155,0.06160194426775],[-0.07209724932909,0.016259036958218,-0.0092334039509296],[-0.034212369471788,-0.039623409509659,-0.074875213205814]],[[-0.14575469493866,-0.022381221875548,-0.075834162533283],[-0.045553635805845,-0.033287335187197,-0.034377358853817],[-0.0033491034992039,-0.012618719600141,0.045010976493359]],[[-0.081706807017326,0.078232139348984,0.017029639333487],[0.035002127289772,-0.02951879426837,-0.075387962162495],[0.0057707140222192,-0.025488320738077,0.010730030015111]],[[-0.073503315448761,-0.068128608167171,0.005563803948462],[-0.0091903042048216,-0.049712423235178,-0.057429101318121],[-0.023450000211596,0.031663060188293,0.096192546188831]],[[-0.17354297637939,0.078572481870651,0.075765676796436],[0.018749538809061,-0.0014100401895121,-0.19508108496666],[0.093373365700245,0.0038103330880404,0.12339317053556]],[[-0.015050915069878,0.077771857380867,0.03066186979413],[0.054237566888332,0.039684381335974,0.0054787546396255],[-0.052735708653927,0.030461641028523,0.00063139566918835]],[[-0.0097835389897227,0.021607803180814,-0.040398985147476],[3.101284528384e-05,-0.035242438316345,-0.023962419480085],[0.017489703372121,0.0051449649035931,0.052450641989708]],[[-0.0017735329456627,0.0018486726330593,0.012383794412017],[-0.005088530946523,-0.099923677742481,0.04603523388505],[-0.036724008619785,-0.050822615623474,-0.016556199640036]],[[0.032933302223682,-0.04531954228878,-0.095762051641941],[-0.059496525675058,0.063816703855991,0.0051170205697417],[0.016802422702312,-0.064283721148968,0.017189310863614]],[[-0.031320821493864,-0.072421193122864,0.098253682255745],[-0.0198476575315,0.052561301738024,0.052360918372869],[0.0077393460087478,-0.11015074700117,-0.1856537014246]],[[-0.10230485349894,0.0099398726597428,0.10743521898985],[0.049367237836123,0.028656799346209,0.1035610884428],[-0.052009720355272,0.074109554290771,0.068019978702068]],[[0.020895704627037,-0.064815521240234,0.06485328823328],[-0.024112366139889,0.12145829945803,0.087015196681023],[0.024386432021856,-0.039223998785019,0.027005843818188]],[[0.051600504666567,-0.01099756360054,0.044715236872435],[0.058876018971205,-0.057058561593294,-0.024624492973089],[0.06729730963707,0.060490522533655,0.11788377910852]],[[-0.071841910481453,-0.051073022186756,-0.070726864039898],[0.084008604288101,0.067428022623062,-0.046642575412989],[-0.046155594289303,-0.12072100490332,0.072757788002491]],[[-0.01749025285244,-0.10492672771215,-0.029153756797314],[-0.021654004231095,0.068992160260677,-0.11672279238701],[-0.017552923411131,-0.041295852512121,-0.017733436077833]],[[-0.096478328108788,0.026415729895234,-0.013157238252461],[-0.056267008185387,-0.035050615668297,-0.01876388117671],[-0.15469574928284,0.023433225229383,0.030956668779254]],[[0.0320705473423,0.02418065816164,0.13355220854282],[0.014096378348768,0.033966906368732,0.0044762282632291],[-0.14885964989662,-0.043322529643774,0.023812599480152]],[[0.014185685664415,-0.0084665650501847,-0.046697106212378],[0.064892053604126,0.038356903940439,-0.11417636275291],[-0.010784201323986,0.0071756220422685,0.15217615664005]],[[-0.0066723553463817,-0.091883115470409,-0.0091764824464917],[0.058643188327551,0.05784660577774,-0.10337568819523],[0.10541211813688,0.00042882707202807,-0.069180361926556]],[[-0.070803135633469,0.048692986369133,-0.11590459942818],[-0.020099537447095,-0.015542342327535,-0.033659748733044],[-0.112872608006,-0.070870384573936,0.006487769074738]],[[0.012079355306923,0.05229302495718,-0.16095128655434],[-0.12016955763102,0.02753759175539,-0.012694282457232],[0.0071547669358552,-0.075642757117748,-0.14476875960827]],[[-0.032859042286873,-0.04101362451911,-0.093927145004272],[-0.14968925714493,-0.032584756612778,-0.096045933663845],[-0.15263013541698,-0.099167391657829,-0.10029177367687]],[[-0.035922490060329,-0.089529901742935,0.076402746140957],[0.045440066605806,0.038490775972605,-0.0010879844194278],[0.04026760533452,0.03209325298667,-0.018818320706487]],[[-0.025514898821712,-0.0071910489350557,0.20972111821175],[-0.0037305131554604,0.11219485849142,0.13511207699776],[-0.15672093629837,-0.16437588632107,0.066762708127499]],[[-0.021871501579881,-0.12719464302063,-0.03518708050251],[-0.064768716692924,-0.040498003363609,0.027507718652487],[-0.041103452444077,0.0087757743895054,0.016314148902893]],[[-0.017003981396556,-0.063232712447643,0.045049548149109],[0.00096017163014039,0.049335274845362,0.033674322068691],[0.042410507798195,-0.054056525230408,0.012549486011267]],[[0.099493086338043,0.020941076800227,-0.039648488163948],[0.0089085455983877,-0.07165202498436,0.046438779681921],[0.034882813692093,0.082493841648102,-0.008416224271059]],[[-0.10074256360531,-0.10880487412214,-0.032016314566135],[-0.024255553260446,0.031123492866755,-0.085513077676296],[0.017958233132958,-0.037787470966578,-0.098310627043247]],[[-0.0065665128640831,0.038593996316195,0.1212000772357],[-0.14537134766579,0.043634492903948,-0.09656934440136],[0.032558795064688,0.082803681492805,-0.035160798579454]],[[-0.053627345710993,-0.015865825116634,-0.030857693403959],[-0.0031137482728809,-0.0028001074679196,-0.10030190646648],[0.082266770303249,0.058954786509275,0.0064738956280053]],[[-0.065390571951866,-0.086594633758068,-0.034464161843061],[-0.0020155422389507,0.12865859270096,0.054497681558132],[0.084690868854523,0.029147207736969,-0.032848697155714]],[[-0.040038038045168,0.031718302518129,0.14726927876472],[-0.075842432677746,0.049950961023569,0.0024774284102023],[-0.032385054975748,-0.0053124995902181,-0.11510216444731]],[[0.035913337022066,-0.055087823420763,-0.029135139659047],[0.11285801231861,-0.014990752562881,-0.19478279352188],[0.23222073912621,-0.062149062752724,-0.0090109193697572]],[[-0.00040298883686773,0.030220042914152,0.081323400139809],[0.048009660094976,-0.0542290546,-0.073070004582405],[-0.061829891055822,0.071992516517639,0.091524161398411]],[[-0.0092488620430231,-0.053097233176231,-0.080115765333176],[-0.053414572030306,0.010563214309514,0.10831944644451],[-0.091918960213661,-0.01867457292974,0.030432792380452]],[[0.040932018309832,0.15088717639446,-0.014953780919313],[-0.032694295048714,-0.10089681297541,-0.025851704180241],[-0.016262056306005,0.037557303905487,0.084041811525822]],[[-0.072132259607315,0.039724130183458,0.11070144921541],[0.043600954115391,-0.034684497863054,-0.089639075100422],[-0.10381670296192,-0.1044792085886,0.03708266094327]],[[-0.018577439710498,0.12974321842194,-0.15657629072666],[-0.076588004827499,-0.092871643602848,-0.061251558363438],[0.04059050232172,0.067594952881336,-0.032975718379021]],[[-0.12398444116116,0.050740987062454,0.062033034861088],[0.08100563287735,-0.020494630560279,0.046146985143423],[-0.17636595666409,0.058861140161753,0.18744815886021]],[[0.050681009888649,-0.019519805908203,0.0045906030572951],[0.017290079966187,0.089429698884487,-0.030427522957325],[-0.091810956597328,0.0052889781072736,-0.14462062716484]],[[-0.120201818645,0.066996186971664,0.079989694058895],[-0.0068483604118228,-0.0015284792752936,0.0093154469504952],[-0.040120165795088,-0.031213436275721,-0.035720106214285]],[[-0.055131155997515,0.099973909556866,-0.068969368934631],[0.16712640225887,-0.11400688439608,-0.046340115368366],[-0.1789590716362,-0.046111337840557,-0.034928031265736]],[[0.046212822198868,0.043363470584154,-0.14609269797802],[0.0026271096430719,-0.0065139606595039,0.011760929599404],[0.023480018600821,-0.0068037468008697,0.0027023868169636]],[[-0.13938012719154,-0.039883699268103,-0.093002624809742],[-0.11243128031492,0.048264462500811,-0.0066266767680645],[0.015778489410877,-0.10850284993649,0.026553139090538]],[[-0.066117569804192,-0.010350929573178,-0.012441941536963],[0.048367857933044,0.0078773144632578,0.009175181388855],[-0.031208485364914,0.03251564130187,0.021677663549781]],[[-0.04349422827363,0.016157303005457,-0.10657826066017],[0.043474517762661,0.020282637327909,0.021210726350546],[-0.065007276833057,0.059388116002083,0.017858063802123]],[[-0.027963576838374,-0.0091948797926307,0.063310854136944],[0.0080681592226028,0.073160536587238,0.0074586886912584],[-0.035385396331549,-0.043713960796595,-0.026407139375806]],[[0.032567739486694,0.027164114639163,0.035540260374546],[0.050734125077724,-0.079807788133621,-0.093591317534447],[-0.17965427041054,0.0056053688749671,0.10899394005537]],[[0.0035355095751584,0.0022838665172458,0.014779487624764],[-0.028695052489638,-0.092325448989868,0.047748453915119],[0.085574313998222,0.08378691226244,0.025810964405537]],[[-0.030199462547898,-0.06999147683382,-0.051576100289822],[-0.10061363875866,0.014792180620134,0.014089364558458],[0.054217386990786,-0.12769174575806,-0.13468763232231]],[[0.018853640183806,0.072814710438251,0.061844423413277],[0.093855068087578,-0.036603473126888,-0.16168394684792],[-0.080124333500862,-0.0061316657811403,0.18525044620037]]],[[[0.008677669800818,-0.038156315684319,0.016421299427748],[-0.018515560775995,-0.04915202409029,-0.079020597040653],[0.023014083504677,-0.023952960968018,-0.048468090593815]],[[-0.0032876206096262,0.033523079007864,-0.012773899361491],[0.019471321254969,0.038395375013351,-0.11437229067087],[0.010086863301694,-0.039321031421423,0.022905439138412]],[[-0.050478313118219,0.084312774240971,-0.023874977603555],[0.11058466136456,-0.0089655676856637,-0.066250704228878],[0.00061019544955343,-0.0070474157109857,-0.18747043609619]],[[0.068942464888096,0.048455853015184,0.0033894749358296],[0.049286875873804,0.066888272762299,-0.061429239809513],[-0.0075359018519521,-0.01309550087899,-0.097484655678272]],[[0.015749031677842,-0.047023076564074,0.023844970390201],[-0.015110738575459,-0.029752667993307,-0.031091414391994],[-0.090259812772274,-0.067944034934044,-0.029608026146889]],[[0.035196855664253,0.0686976313591,-0.0021290264558047],[0.080217510461807,-0.038507040590048,-0.031874377280474],[-0.059286091476679,-0.10258176922798,-0.061605844646692]],[[-0.0087782545015216,0.038454644382,0.011593800038099],[0.032416913658381,-0.12100031971931,0.056714277714491],[-0.063594929873943,-0.020457269623876,0.012451252900064]],[[0.017514949664474,-0.12890410423279,-0.084530286490917],[-0.058237791061401,0.061221830546856,0.074904575943947],[0.066943123936653,0.027235018089414,-0.008288212120533]],[[0.053667038679123,0.043573647737503,-0.081644043326378],[0.052988111972809,-0.028836959972978,-0.13998295366764],[-0.016530621796846,0.12025548517704,0.04261164739728]],[[-0.1750864982605,0.0082603292539716,0.034752044826746],[-0.019271198660135,-0.10292481631041,0.078185267746449],[0.0015883209416643,-0.065370410680771,-0.057663343846798]],[[0.079072065651417,0.018835516646504,-0.026520846411586],[0.015432785265148,0.014213399030268,0.021698595955968],[0.020952738821507,0.0043741632252932,-0.062988057732582]],[[0.027165163308382,0.059527136385441,-0.0073715238831937],[0.02532072365284,-0.17946225404739,-0.069253630936146],[-0.14711472392082,-0.069575451314449,-0.0066156117245555]],[[-0.014104878529906,0.072353459894657,-0.062243439257145],[0.027203045785427,-0.01474245544523,0.0012122218031436],[-0.1015530526638,-0.014335844665766,-0.03123177215457]],[[-0.092445909976959,0.027921525761485,0.020416857674718],[0.069900192320347,0.055812984704971,0.0041027339175344],[0.050333544611931,-0.020768480375409,0.076282016932964]],[[-0.0014849832514301,-0.002812661929056,-0.069509655237198],[-0.012362922541797,-0.048390086740255,-0.12170816212893],[-0.022349724546075,-0.070233598351479,-0.073597453534603]],[[0.013564692810178,0.065108582377434,0.0054460545070469],[0.050018761307001,0.019608834758401,-0.0027078753337264],[-0.060573015362024,-0.034932721406221,-0.048086833208799]],[[0.014676725491881,-0.083519421517849,-0.059197410941124],[0.040528181940317,-0.044854857027531,0.080657765269279],[0.10999881476164,0.053402181714773,-0.066168278455734]],[[-0.0064291581511497,0.03073768876493,0.0082438755780458],[-0.076601557433605,-0.049984235316515,0.049318701028824],[-0.11805789172649,0.007740437053144,0.043564163148403]],[[-0.031602330505848,-0.052509363740683,-0.096963204443455],[-0.042182445526123,0.08469707518816,0.085727199912071],[0.088428743183613,0.0561265014112,-0.027451956644654]],[[-0.0089230332523584,0.00039597213617526,-0.03444916382432],[-0.017106806859374,-0.0031786621548235,0.013579426333308],[0.042196154594421,0.0062239631079137,0.0096147414296865]],[[-0.0054162694141269,-0.0051908697932959,-0.0067102145403624],[0.0016394463600591,-0.032166033983231,0.07282242923975],[0.020667657256126,0.028205258771777,-0.047682542353868]],[[0.067669689655304,0.012640849687159,-0.055617410689592],[0.077886782586575,0.024626985192299,0.050270542502403],[-0.032619621604681,0.02273834310472,-0.058737251907587]],[[0.02872683480382,-0.098344586789608,-0.088687554001808],[-0.015647493302822,-0.047711070626974,-0.1576284468174],[0.0188959967345,-0.024902744218707,0.17893347144127]],[[0.043912749737501,0.098771385848522,0.08361454308033],[-0.064173847436905,0.15198563039303,0.033610921353102],[0.0059445961378515,0.055180262774229,0.035947747528553]],[[-0.018964977934957,-0.0070211058482528,0.061610441654921],[0.083028830587864,0.073056228458881,-0.041995763778687],[0.0077723632566631,-0.042543198913336,0.012071954086423]],[[-0.035277962684631,0.029780998826027,0.041602678596973],[0.007216761354357,0.013418031856418,-0.066805027425289],[0.04106505215168,0.0086952783167362,0.13054722547531]],[[0.0053392141126096,0.055113181471825,-0.075103662908077],[0.03694025427103,-0.10359155386686,-0.047397740185261],[0.096821270883083,0.017723457887769,-0.10042137652636]],[[0.025057891383767,0.051480527967215,-0.022505007684231],[-0.13619309663773,-0.03469068557024,-0.073640622198582],[-0.013025742955506,0.044223319739103,0.064380541443825]],[[-0.013952580280602,0.010455997660756,0.05976140499115],[0.071693010628223,0.050233591347933,-0.11628324538469],[0.011690142564476,-0.054402951151133,0.031115712597966]],[[0.085202403366566,-0.08923527598381,0.01945692487061],[0.023995650932193,0.1264476776123,0.028354909271002],[0.094836540520191,0.052047319710255,0.022621648386121]],[[-0.045915246009827,-0.011579193174839,0.067609436810017],[0.013426114805043,0.020669884979725,0.10726030915976],[-0.054182555526495,-0.10481382906437,-0.040637373924255]],[[-0.0032297149300575,-0.053744908422232,-0.049316462129354],[0.097679205238819,-0.012559560127556,0.031173210591078],[-0.00025188640574925,0.088639572262764,0.066586509346962]],[[0.048481944948435,0.046431116759777,-0.022859433665872],[-0.019721383228898,-0.075111955404282,-0.04917224124074],[-0.02796764858067,-0.0034488555975258,-0.053981352597475]],[[-0.026625210419297,-0.016250383108854,-0.031477615237236],[-0.034816954284906,-0.02040327526629,0.0060279434546828],[0.0025674684438854,-0.020493609830737,0.049878902733326]],[[-0.0034686599392444,0.024773426353931,0.019890757277608],[-0.09723424911499,-0.059566307812929,-0.071371421217918],[-0.10236087441444,0.0057795965112746,0.067218653857708]],[[-0.072747819125652,0.012959690764546,0.018337601795793],[-0.058592770248652,-0.010769290849566,0.00056717661209404],[-0.024751249700785,-0.072511576116085,-0.062597163021564]],[[0.026708913967013,0.028234088793397,-0.03117766417563],[0.019608341157436,-0.066115818917751,0.068593889474869],[-0.1346171349287,-0.19815224409103,0.026027603074908]],[[0.0096738524734974,0.034920562058687,0.050000071525574],[-0.031368151307106,-0.037411063909531,0.025125190615654],[-0.094471484422684,-0.08976449072361,-0.0515395142138]],[[-0.067413754761219,0.046284403651953,-0.011874589137733],[-0.01021063234657,0.01034427434206,-0.017655307427049],[-0.06555750221014,0.051056824624538,0.037260361015797]],[[-0.0046292995102704,-0.048483163118362,-0.0063840709626675],[-0.010502794757485,-0.012305035255849,0.011150039732456],[-0.036165609955788,0.033127974718809,-0.015569210983813]],[[0.012080998159945,-0.042066514492035,-0.099184684455395],[-0.092594183981419,-0.03468281775713,0.0087507553398609],[-0.049379579722881,-0.14578397572041,-0.012278512120247]],[[0.010954142548144,-0.026448315009475,-0.022724572569132],[-0.088903963565826,0.011598406359553,0.039751943200827],[-0.0062596667557955,-0.046837970614433,0.0091208517551422]],[[-0.013515609316528,0.056347500532866,0.050406239926815],[0.10107450932264,-0.054573606699705,0.021606974303722],[0.072367325425148,-0.13335378468037,0.01241738256067]],[[-0.058743458241224,-0.033649783581495,0.014576033689082],[0.065475165843964,-0.0028016807045788,-0.032243177294731],[-0.026429757475853,0.0004400355683174,-0.09502936154604]],[[0.084281913936138,-0.090434744954109,0.020121486857533],[-0.03499611467123,0.014277836307883,0.040099009871483],[0.097626566886902,0.047389540821314,-0.11381299048662]],[[-0.028201499953866,0.025616882368922,-0.00016288491315208],[0.065276451408863,0.04207693785429,-0.076460391283035],[0.14891152083874,-0.0014386726543307,-0.010597697459161]],[[-0.042981613427401,-0.041339978575706,0.086135543882847],[0.077762894332409,-0.010430282913148,0.0051176468841732],[0.010185584425926,0.017620729282498,-0.067899085581303]],[[-0.10412026196718,0.081073589622974,-0.032161828130484],[-0.016797881573439,-0.014114107005298,-0.12535348534584],[-0.056101933121681,0.052001867443323,0.11967470496893]],[[-0.076067671179771,-0.018379928544164,0.025763474404812],[-0.040898859500885,0.065674655139446,0.081508070230484],[0.085869580507278,-0.05494000390172,-0.06852675974369]],[[0.025686914101243,0.0011347810504958,0.017314217984676],[0.0052889669314027,-0.15166226029396,-0.10534425079823],[0.10330383479595,0.044172517955303,0.047110833227634]],[[-0.020258814096451,-0.00015786070434842,-0.0026091719046235],[-0.035241309553385,-0.071230120956898,0.067241959273815],[0.11987628042698,-0.0037730070762336,-0.0035073352046311]],[[-0.061306197196245,0.14498430490494,0.06238679587841],[0.094532504677773,0.022655433043838,0.11307837069035],[0.0019735780078918,0.083919733762741,-0.038091793656349]],[[-0.069926485419273,0.086674474179745,0.00092527596279979],[0.030384792014956,0.020850453525782,0.017810750752687],[-0.11363123357296,0.013126009143889,0.003950557205826]],[[-0.05574344098568,-0.084182232618332,0.0016522030346096],[0.081240147352219,-0.021226497367024,0.053600158542395],[-0.072068773210049,-0.054160393774509,-0.033691432327032]],[[-0.09636278450489,0.045204874128103,0.021232588216662],[-0.069547161459923,0.069209896028042,0.11031151562929],[0.042069893330336,0.06275087594986,-0.076184675097466]],[[-0.018402118235826,0.019873954355717,-0.0093910759314895],[-0.096376940608025,0.020881026983261,0.0049409791827202],[-0.1101283505559,-0.065454125404358,-0.013509700074792]],[[-0.088736273348331,0.024329520761967,-0.028173437342048],[-0.060011748224497,-0.03277551010251,-0.08033299446106],[-0.028971191495657,-0.057233188301325,0.0059532769955695]],[[0.00084597838576883,-0.042474891990423,0.0084085967391729],[-0.040207557380199,0.021857585757971,-0.076052539050579],[0.014552188105881,-0.00097719964105636,0.037129729986191]],[[-0.0011077473172918,0.083812333643436,0.0040239803493023],[-0.0032848080154508,0.1187991052866,-0.1007286682725],[0.072439268231392,0.052528787404299,0.078220091760159]],[[-0.0075667761266232,0.02379990927875,0.0055799661204219],[0.006790523417294,0.004375662188977,0.034312020987272],[-0.050405122339725,-0.0092067774385214,0.0022099872585386]],[[0.035122022032738,-0.020677998661995,-0.021765438839793],[0.013213054277003,0.0060270461253822,-0.035536512732506],[-0.049214910715818,-0.070158839225769,0.012983871623874]],[[0.044521823525429,0.0042473841458559,0.050524417310953],[0.038644064217806,0.012042570859194,0.024543242529035],[-0.03100130148232,0.036100499331951,-0.014783651567996]],[[-0.020862691104412,-0.068145923316479,-0.086073867976665],[-0.014472759328783,-0.040141724050045,0.012696569785476],[0.056525409221649,0.095778286457062,-0.0085287550464272]],[[-0.072811461985111,0.13808478415012,0.036700088530779],[-0.064117826521397,0.020477518439293,-0.042648162692785],[-0.15121057629585,-0.048240840435028,-0.03988978266716]]],[[[-0.0051645380444825,-0.036990083754063,-0.014212117530406],[-0.0027998883742839,-0.058586962521076,-0.0088196424767375],[-0.043174549937248,-0.010818833485246,-0.015093496069312]],[[-0.058669067919254,0.023769183084369,0.021736787632108],[0.04502933844924,0.078988380730152,0.068938001990318],[0.026080373674631,-0.022255279123783,-0.037520576268435]],[[-0.020776463672519,0.023152306675911,-0.074178516864777],[-0.029599314555526,-0.080009646713734,0.0011427305871621],[0.054381094872952,0.019559130072594,-0.072474598884583]],[[0.041554838418961,0.064863719046116,-0.024752767756581],[0.0045153186656535,0.018201317638159,-0.064776808023453],[-0.032133869826794,-0.024064535275102,-0.078016087412834]],[[-0.088148109614849,-0.090536266565323,0.042560756206512],[0.031766995787621,0.036222398281097,0.042301036417484],[-0.054826561361551,0.067220650613308,0.070899054408073]],[[0.015127855353057,-0.073455907404423,0.03462490811944],[0.010241493582726,-0.090304173529148,-0.068185187876225],[-0.020566660910845,-0.010861458256841,0.043310984969139]],[[0.05543539300561,-0.0043055173009634,-0.065583355724812],[0.020369049161673,-0.06093293428421,0.048244293779135],[-0.020053112879395,-0.062646277248859,-0.026963446289301]],[[0.023714654147625,-0.0029053054749966,0.013970061205328],[-0.047699999064207,-0.045210234820843,0.056809078902006],[-0.0542978271842,-0.0010811049723998,-0.081002123653889]],[[0.043617412447929,0.014862325042486,0.027782203629613],[0.018232287839055,0.018699731677771,-0.072363220155239],[-0.095126651227474,-0.016098506748676,-0.029160022735596]],[[-0.014720687642694,-0.032151952385902,0.056055948138237],[0.026761302724481,-0.032393168658018,-0.061135932803154],[-0.0091835241764784,-0.0090187657624483,-0.011117687448859]],[[0.049326606094837,0.024582182988524,0.0073208049871027],[-0.0088466899469495,0.042083289474249,-0.013607890345156],[-0.042265880852938,0.025277111679316,-0.09379430860281]],[[0.05536001548171,0.020098900422454,0.00057084742002189],[0.013966591097414,-0.037244271486998,0.011102547869086],[0.021032031625509,-0.030404159799218,0.0068941689096391]],[[0.091730333864689,-0.0038733275141567,0.035848934203386],[-0.053889717906713,0.063106998801231,-0.030613414943218],[0.061594128608704,0.058667026460171,0.019946664571762]],[[0.11933453381062,-0.032018255442381,0.033888038247824],[0.030373513698578,-0.01441512349993,0.047483991831541],[0.016034891828895,0.058889299631119,0.012795775197446]],[[0.011465872637928,-0.01775848120451,-0.037324644625187],[5.3311381634558e-05,0.040260814130306,-0.039267733693123],[0.063671141862869,0.0057938476093113,0.0048186318017542]],[[-0.040023125708103,-0.070526786148548,0.023415055125952],[-0.0010102828964591,-0.0044028200209141,-0.10855685174465],[0.0030402792617679,-0.0086641116067767,-0.02515054680407]],[[0.019981969147921,0.020523857325315,-0.053759306669235],[0.059141855686903,0.044921182096004,-0.032511085271835],[0.037744201719761,0.02531042508781,0.025336947292089]],[[0.032665334641933,0.020295973867178,-0.052433282136917],[0.10555773228407,0.0061981012113392,0.011086472310126],[0.047622866928577,0.0069958185777068,0.0075483280234039]],[[0.047470584511757,-0.061413839459419,0.02381594851613],[0.02213260345161,0.026476085186005,0.013292553834617],[-0.040116634219885,-0.0061428272165358,-0.014103214256465]],[[0.021598365157843,0.021134786307812,-0.011464428156614],[0.0020922261755913,0.036935340613127,0.0031521283090115],[-0.02323404327035,0.018449407070875,-0.005637769587338]],[[-0.0017869205912575,0.047816943377256,0.023588052019477],[-0.019672123715281,0.020765094086528,0.028497658669949],[-0.020929504185915,0.036384500563145,0.069405816495419]],[[-0.026645630598068,-0.0014419122599065,0.055532798171043],[-0.060066945850849,-0.00060431525344029,-0.0040142950601876],[-0.053439751267433,0.046122930943966,-0.02660739608109]],[[0.0084858052432537,0.01908084563911,-0.026932450011373],[0.057420495897532,-0.0096392789855599,-0.078933656215668],[-0.0031072634737939,-0.025524398311973,-0.046910259872675]],[[0.0052035781554878,-0.017680702731013,-0.0090113142505288],[0.10062008351088,0.0078741740435362,0.080410778522491],[-0.0097556617110968,0.053955364972353,-0.047224532812834]],[[-0.047310996800661,-0.099291376769543,0.051711183041334],[0.015390962362289,0.029917474836111,-0.062768906354904],[-0.023159412667155,0.018768494948745,-0.067665480077267]],[[-0.066729165613651,0.017398348078132,0.066686898469925],[0.062802113592625,-0.041118338704109,-0.0080015119165182],[-0.031599324196577,0.023923823609948,-0.0095525709912181]],[[0.012476506642997,-0.05315176025033,0.013480287976563],[0.019008981063962,0.012417825870216,-0.047378417104483],[-0.0054129320196807,-0.041907668113708,-0.011068515479565]],[[0.020869817584753,0.028234323486686,0.032879266887903],[-0.031537190079689,-0.0047179218381643,0.024759877473116],[-0.050843454897404,-0.001721662003547,0.056855566799641]],[[-0.037989512085915,0.041070908308029,-0.019261350855231],[-0.056491825729609,0.034560009837151,0.095045685768127],[0.051582593470812,-0.038781363517046,-0.037232231348753]],[[-0.044371105730534,-0.018461057916284,-0.009494224563241],[-0.095462128520012,-0.0052228858694434,-0.032205604016781],[0.029096100479364,-0.0087841702625155,-0.012649077922106]],[[-0.08979158103466,-0.028154253959656,0.073523908853531],[-0.0053690257482231,-0.024306626990438,-0.042253829538822],[-0.050424005836248,0.023022450506687,0.03071666136384]],[[-0.0060001709498465,0.022444479167461,0.025902699679136],[0.014382110908628,-0.087068349123001,-0.076233260333538],[0.038670532405376,-0.10654750466347,0.00085474387742579]],[[0.06436363607645,0.0080740908160806,0.035695396363735],[-0.021986974403262,-0.015060595236719,-0.075839705765247],[-0.0070789670571685,-0.059804622083902,0.012553420849144]],[[-3.6844787246082e-05,0.062110364437103,0.035943433642387],[0.019166549667716,0.036437835544348,-0.0040433630347252],[-0.017221810296178,0.070111401379108,0.036626026034355]],[[0.016286043450236,0.038923680782318,-0.031877987086773],[0.055829394608736,0.054797429591417,-0.030357252806425],[0.049601122736931,0.013852882198989,0.026928838342428]],[[0.083926841616631,-0.030759295448661,-0.012094390578568],[-0.028091222047806,0.043107181787491,0.035448510199785],[-0.035292278975248,-0.010993268340826,0.045122027397156]],[[-0.0071281231939793,0.027924368157983,-0.049682967364788],[0.02636194229126,0.039241306483746,0.029576767235994],[0.0063956729136407,0.030243406072259,-0.034051544964314]],[[0.022237036377192,-0.020786322653294,-0.010424443520606],[0.010554374195635,0.0092080635949969,0.048040822148323],[0.030054682865739,-0.06911738961935,-0.060496632009745]],[[-0.06056671962142,-0.10691718012094,0.020177781581879],[-0.026083240285516,-0.011347401887178,-0.015512404032052],[0.03587893396616,-0.016411270946264,0.024038393050432]],[[-0.10057730972767,-0.033190160989761,0.016309086233377],[-0.013768895529211,0.004903020337224,0.028170350939035],[-0.019903732463717,0.10269213467836,0.043525762856007]],[[0.056749131530523,-0.0019991497974843,0.0059839999303222],[0.035034339874983,0.05580872669816,-0.050089351832867],[-0.024828357622027,0.047145888209343,-0.0048087001778185]],[[0.1025677472353,-0.041124813258648,0.0076146209612489],[0.035255048424006,-0.033953733742237,-0.0038092634640634],[-0.014233369380236,-0.037341501563787,0.018390813842416]],[[0.013383810408413,0.035042267292738,0.10300853848457],[-0.014072353951633,-0.071719542145729,0.012151647359133],[0.018141869455576,-0.069123826920986,0.020143115893006]],[[-0.064902082085609,0.018839610740542,0.011400261893868],[-0.056318048387766,0.022294357419014,0.024257980287075],[-0.031805329024792,0.006418343167752,-0.022820971906185]],[[0.031135560944676,0.033911939710379,-0.082373447716236],[0.037723042070866,0.11915877461433,0.03775081038475],[-0.00025473127607256,0.040636699646711,-0.025099728256464]],[[-0.046298820525408,-0.0076291230507195,0.0076890829950571],[-0.002811458427459,-0.032493732869625,0.0013513176236302],[-0.036360327154398,-0.0079421363770962,-0.015933532267809]],[[-0.023325584828854,-0.020070558413863,-0.07671233266592],[0.037307851016521,0.040390454232693,0.013790902681649],[-0.033096119761467,0.012312916107476,0.069122336804867]],[[0.065553672611713,0.01614654622972,-0.043301343917847],[0.0050299996510148,0.05631198734045,0.022044947370887],[0.092244789004326,0.077993586659431,-0.019070951268077]],[[-0.08133389800787,0.072893135249615,0.0043885614722967],[-0.037024404853582,0.019371336326003,0.0047933678142726],[-0.052234563976526,-0.039621409028769,0.045300927013159]],[[-0.046169482171535,-0.034135743975639,-0.016842257231474],[-0.068626895546913,-0.02099459245801,-0.0013235253281891],[0.085933208465576,-0.015087088569999,0.024444166570902]],[[0.018398711457849,-0.027363661676645,0.017412856221199],[0.0051498925313354,-0.031928010284901,-0.0040425872430205],[-0.0028579020872712,-0.053020093590021,0.0076681105419993]],[[0.02190618775785,0.036529321223497,-0.029737133532763],[0.052814614027739,0.05142680555582,0.10379050672054],[-0.013747628778219,0.043172877281904,0.061633724719286]],[[-0.036965951323509,-0.015137108042836,0.027223953977227],[0.012402553111315,-0.0020902247633785,0.0078875552862883],[0.038186762481928,-0.048025783151388,-0.045111402869225]],[[0.024672511965036,0.011927653104067,-0.0096068773418665],[-0.0036173446569592,-0.01932468265295,0.0013978681527078],[0.0086406413465738,0.034717869013548,-0.029712809249759]],[[0.069675579667091,0.0054716398008168,0.0043936637230217],[0.019696006551385,-0.036321371793747,0.0061837621033192],[0.0040131970308721,-0.039194911718369,-7.2660812293179e-05]],[[-0.036631476134062,-0.0093528740108013,-0.031907390803099],[0.012280771508813,-0.053244389593601,0.02659404091537],[-0.046783119440079,0.029580246657133,-0.036431547254324]],[[0.020930161699653,0.040049076080322,0.07359004765749],[-0.014610078185797,-0.044764511287212,-0.01412644982338],[0.050098348408937,0.0020392457954586,0.015046826563776]],[[0.020696520805359,-0.0060607949271798,0.0015255894977599],[0.03878965601325,-0.014575720764697,-0.081454992294312],[0.0060884063132107,0.061989512294531,-0.091221109032631]],[[-0.034326758235693,0.018735557794571,0.04207518696785],[-0.0011326351668686,0.094243094325066,0.021425426006317],[0.013666565530002,0.03366669639945,0.091876998543739]],[[-0.020867569372058,-0.021233126521111,0.044042985886335],[-0.014738542959094,0.0122563065961,-0.018016271293163],[0.011626581661403,-0.0050613204948604,0.022318307310343]],[[-0.096597738564014,0.021407466381788,-0.036433827131987],[0.025922557339072,-0.024489272385836,-0.022898143157363],[-0.016019405797124,0.0560312718153,0.024729829281569]],[[0.054690282791853,0.057467963546515,0.0031773333903402],[-0.027254084125161,0.01041863579303,0.078753434121609],[-0.0086414823308587,-0.045379180461168,0.030680390074849]],[[0.024942111223936,-0.036041602492332,-0.013183410279453],[0.07759466022253,0.03485744446516,0.012654892168939],[-0.025843868032098,-0.015495799481869,-0.028696954250336]],[[0.0043630334548652,0.011208250187337,0.024969598278403],[-0.014359960332513,0.00059095647884533,-0.017418976873159],[-0.036893881857395,-0.033704146742821,0.0097389938309789]]],[[[-0.04751243442297,-0.11040492355824,-0.019291052594781],[-0.023323204368353,0.01468101143837,-0.034887980669737],[0.021200796589255,-0.0035524158738554,-0.025129651650786]],[[0.050512336194515,-0.037613201886415,0.04647383838892],[-0.042838875204325,0.0061887996271253,0.065346270799637],[0.010511055588722,-0.016761299222708,0.045389000326395]],[[0.070540644228458,0.0048110852949321,-0.033582169562578],[0.0013051732676104,-0.01768877916038,-0.1224554926157],[0.010292205959558,0.0030692750588059,-0.17538970708847]],[[-0.053744699805975,0.032811645418406,0.002482257084921],[-0.014122409746051,-0.10015231370926,0.0058257794007659],[0.03500710055232,-0.045229870826006,0.0064808181487024]],[[0.064285919070244,0.10007702559233,0.063502386212349],[-0.14538945257664,0.035302095115185,0.052106630057096],[-0.042053062468767,-0.0039177378639579,-0.10793156176805]],[[0.055987510830164,0.023620983585715,-0.041241571307182],[-0.090539202094078,-0.0022154110483825,0.0046508414670825],[0.019153444096446,0.014116892591119,-0.10717057436705]],[[0.023433830589056,-0.063595928251743,-0.064001508057117],[-0.038551405072212,-0.021764090284705,-0.083023481070995],[-0.028739666566253,-0.055456828325987,0.055792152881622]],[[-0.063848026096821,0.013637016527355,0.042237043380737],[0.080292783677578,0.046385571360588,-0.010778321884573],[0.067451916635036,0.056174833327532,0.028827710077167]],[[-0.096683166921139,-0.089412927627563,-0.078080348670483],[-0.0029846606776118,-0.035083565860987,-0.033229425549507],[0.0276551656425,-0.018590170890093,0.078258901834488]],[[-0.016371209174395,0.049242284148932,-0.0057793040759861],[-0.084731116890907,0.052234023809433,-0.084521003067493],[0.020744575187564,-0.021969271823764,-0.11204373836517]],[[0.096662856638432,-0.013699510134757,0.027246145531535],[0.009671519510448,-0.047347187995911,0.0056784669868648],[-0.01547700446099,-0.045751392841339,-0.053427930921316]],[[-0.20423178374767,-0.083287134766579,-0.086918361485004],[-0.026966130360961,-0.13058313727379,-0.030294336378574],[-0.092651881277561,-0.098868995904922,-0.20650313794613]],[[0.0027895122766495,0.00094552413793281,0.01666927151382],[-0.067222878336906,-0.15998019278049,-0.076783455908298],[-0.027282474562526,-0.042649876326323,-0.054760612547398]],[[0.03654221072793,-0.055364318192005,0.013180742040277],[0.046165402978659,0.029450617730618,0.13951754570007],[-0.015859577804804,-0.029721418395638,0.0070283501408994]],[[0.043219368904829,0.0058064740151167,0.0040587591938674],[0.040080528706312,-0.024799523875117,0.0022935352753848],[-0.014007266610861,0.022422768175602,0.0088516036048532]],[[-0.12995611131191,-0.051298011094332,0.13124726712704],[0.04089181125164,-0.053114984184504,0.0081590823829174],[-0.027315199375153,-0.079542487859726,-0.036043893545866]],[[-0.029185405001044,0.15219689905643,-0.084602311253548],[0.04892123490572,-0.12974962592125,0.024412076920271],[0.24093225598335,0.07487741112709,-0.039632894098759]],[[-0.047869630157948,0.013277341611683,0.038641512393951],[-0.066305428743362,-0.020713079720736,-0.041780907660723],[0.0017539684195071,-0.082344718277454,0.040127862244844]],[[0.0060800691135228,0.029505535960197,-0.0038053216412663],[-0.021069221198559,-0.029064038768411,-0.03678946569562],[0.048721719533205,0.084002211689949,-0.0036764149554074]],[[0.054780770093203,0.032316241413355,-0.042841974645853],[0.018122551962733,-0.040565803647041,-0.051357235759497],[0.017818059772253,-0.0058840052224696,0.0292889457196]],[[0.057291116565466,0.061471752822399,0.042002853006124],[-0.0047277864068747,0.095168888568878,-0.024364089593291],[0.0039913901127875,-0.012982652522624,0.067260310053825]],[[0.11443021148443,0.11320799589157,0.019552884623408],[0.016843929886818,-0.0082717444747686,-0.091651737689972],[-0.011683716438711,-0.2041727155447,-0.1933728903532]],[[0.023644808679819,0.069107554852962,0.001776821911335],[-0.14096593856812,0.073790162801743,-0.037264470010996],[0.026408350095153,-0.10705322027206,-0.066941268742085]],[[0.078307643532753,0.076317749917507,-0.010914616286755],[0.10881657898426,0.087987095117569,0.022846275940537],[0.03718713670969,0.072218269109726,0.027046544477344]],[[-0.017278397455812,-0.026331225410104,-0.034896474331617],[0.007208411116153,0.026527356356382,-0.057134542614222],[0.10090801864862,0.0522201359272,0.014527303166687]],[[0.012019947171211,0.04518261551857,-0.073339134454727],[0.023754693567753,-0.014564867131412,-0.0021317172795534],[0.042788293212652,0.05470784753561,-0.037001438438892]],[[0.039120096713305,0.036100137978792,-0.025627385824919],[0.12916676700115,0.0013689879560843,-0.14050053060055],[0.028012795373797,0.063657686114311,0.036935083568096]],[[-0.003493910189718,0.074358224868774,0.027634516358376],[0.025296291336417,-0.0062220748513937,0.11153949052095],[0.076436668634415,0.049698945134878,-0.035725604742765]],[[-0.071584284305573,0.041610974818468,-0.080848224461079],[0.039894618093967,0.0089450720697641,0.036220986396074],[-0.049732372164726,-0.10769040882587,0.010325494222343]],[[-0.11303417384624,-0.082185730338097,-0.12210749834776],[-0.10294398665428,-0.002196648158133,-0.047126982361078],[-0.044715519994497,-0.049048751592636,-0.10490196198225]],[[-0.025647930800915,-0.052420139312744,-0.082465082406998],[0.10025849193335,0.063515245914459,-0.047667890787125],[0.016179870814085,0.03680869191885,-0.14966975152493]],[[-0.04496343806386,-0.044361099600792,-0.061135847121477],[-0.044903442263603,0.015232241712511,0.023451225832105],[-0.057674549520016,0.0026560132391751,0.0083912154659629]],[[0.032936230301857,0.015682931989431,-0.015640949830413],[-0.013517651706934,-0.10776276886463,-0.015505839139223],[0.013741424307227,-0.030661506578326,0.061835184693336]],[[0.061063829809427,0.091780297458172,0.11180318892002],[0.15668924152851,0.10001546144485,-0.10746793448925],[-0.041071727871895,-0.054350756108761,-0.23661297559738]],[[0.036697622388601,0.056972149759531,0.0095344092696905],[-0.065055519342422,0.026581313461065,0.0059425425715744],[0.014346298761666,-0.053982391953468,-0.0033206245861948]],[[0.1334890127182,0.013656106777489,-0.021695977076888],[-0.012702100910246,-0.11503010243177,-0.065956003963947],[0.085420608520508,0.041867330670357,-0.052494298666716]],[[-0.10713122040033,-0.019422180950642,-0.039288602769375],[0.079246021807194,0.10183273255825,0.044942058622837],[-0.022274855524302,-0.031802613288164,0.0080674244090915]],[[0.038388665765524,0.017959006130695,-0.026583854109049],[-0.033088643103838,-0.016908783465624,-0.27963584661484],[0.055052053183317,0.0031889819074422,-0.15287630259991]],[[-0.070586323738098,0.090014927089214,-0.14547263085842],[-0.055517680943012,0.046685211360455,-0.0023334708530456],[0.030279079452157,-0.037819907069206,-0.11835024505854]],[[-0.010467616841197,0.14070728421211,0.036552779376507],[0.038641698658466,0.020108869299293,-0.079219087958336],[-0.0074924933724105,-0.063507094979286,-0.13223303854465]],[[-0.11992064118385,-0.019536348059773,0.0049798600375652],[-0.032511092722416,-0.053584862500429,-0.067436657845974],[-0.016912907361984,-0.06375627964735,-0.052332889288664]],[[0.024969205260277,0.036713872104883,-0.18448206782341],[0.079042226076126,-0.0036688537802547,-0.12542293965816],[0.13416193425655,-0.086141169071198,-0.094344288110733]],[[-0.014491568319499,-0.02500144392252,-0.088558278977871],[-0.028679622337222,-0.085808619856834,0.019325071945786],[-0.12102115154266,0.040980242192745,-0.035218358039856]],[[0.07884219288826,0.06481508910656,-0.026431828737259],[0.035939816385508,0.072788499295712,-0.016251655295491],[-0.03923062980175,0.056377902626991,-0.14315640926361]],[[0.022506589069963,-0.044855903834105,0.10191380232573],[-0.0074930326081812,-0.036427836865187,-0.02218016423285],[-0.052274294197559,-0.048184830695391,0.021915020421147]],[[-0.0091622266918421,0.10953837633133,-0.0046170824207366],[-0.11250062286854,-0.031912319362164,0.019594876095653],[-0.026132488623261,-0.010789995081723,0.038977179676294]],[[-0.071640133857727,-0.064472898840904,0.00068553100572899],[0.02485978603363,-0.0018882255535573,-0.057842418551445],[0.014481674879789,0.014325407333672,-0.084463015198708]],[[0.011888647451997,0.045772030949593,-0.10529423505068],[-0.044661357998848,-0.027787478640676,0.020609540864825],[0.045032199472189,-0.046087108552456,0.095710150897503]],[[0.015900030732155,0.073149994015694,0.0016724062152207],[-0.049772873520851,-0.059474371373653,0.0066534578800201],[0.024864997714758,0.093846201896667,0.060562077909708]],[[0.020074743777514,-0.014496144838631,-0.032674267888069],[0.042703989893198,0.039877831935883,-0.023810843005776],[0.049241065979004,-0.038471061736345,-0.074062049388885]],[[0.0064494702965021,0.087644822895527,-0.0011379648931324],[-0.020474089309573,-0.067564532160759,-0.043945979326963],[0.028683956712484,0.012824782170355,0.028736423701048]],[[0.099335186183453,-0.016622859984636,0.11240346729755],[0.028429642319679,-0.0016858177259564,0.080712698400021],[0.02295096963644,0.034615594893694,0.090875849127769]],[[-0.041305884718895,0.0023167207837105,0.038317788392305],[0.051317825913429,-0.077466905117035,-0.03620333224535],[-0.05432778224349,-0.021504009142518,-0.012319262139499]],[[-0.10573370009661,0.093210510909557,0.014894246123731],[-0.025759348645806,0.032412000000477,-0.057046953588724],[0.024890299886465,-0.01614367775619,0.0061444290913641]],[[0.14102825522423,0.0017345078522339,0.020637566223741],[0.0442915558815,-0.0071005993522704,0.058015778660774],[0.0052407621406019,-0.003860609838739,0.049937799572945]],[[-0.052489437162876,0.0025149448774755,-0.11560127139091],[-0.056953929364681,0.025036605075002,-0.058886077255011],[0.030850008130074,-0.02934617549181,0.038473457098007]],[[-0.027189327403903,0.020539559423923,0.003024760633707],[0.054735373705626,-0.078978203237057,-0.077486336231232],[-0.05174208059907,0.020103359594941,-0.10927153378725]],[[0.085419572889805,-0.054702170193195,-0.038261942565441],[-0.11846681684256,-0.058386277407408,0.0027733391616493],[-0.015120736323297,-0.062465760856867,0.026304552331567]],[[-0.054353944957256,0.023571684956551,-0.016306437551975],[-0.00040214811451733,-0.014220869168639,-0.045746214687824],[0.015632603317499,0.038665939122438,-0.036174725741148]],[[-0.070340864360332,0.01315816771239,0.029547890648246],[0.032444719225168,-0.025696052238345,0.060416601598263],[-0.045254323631525,0.014415672980249,-0.023512089625001]],[[0.0054867374710739,-0.080559551715851,-0.011577638797462],[-0.074123181402683,-0.038739617913961,0.0015804306603968],[0.057983472943306,-0.074912063777447,-0.066589780151844]],[[-0.060370948165655,0.020186830312014,0.01927974075079],[-0.0031302503775805,0.09917589277029,-0.090136542916298],[-0.068416267633438,-0.067689754068851,0.050398882478476]],[[0.068083360791206,-0.058371562510729,-0.01798827201128],[0.034125477075577,0.074946165084839,-0.13640607893467],[0.034475833177567,-0.014064168557525,-0.076152347028255]],[[-0.019837876781821,0.053033724427223,-0.074049346148968],[-0.029784325510263,0.061519127339125,0.015190852805972],[-0.010216080583632,0.054031696170568,-0.08075425773859]]],[[[-0.057872340083122,0.015553249977529,0.072580344974995],[0.026621416211128,0.023403327912092,0.016469739377499],[0.033754959702492,-0.13817921280861,-0.068086966872215]],[[-0.023708462715149,0.0047373794950545,0.080590449273586],[-0.03967921435833,-0.062653325498104,-0.019584508612752],[-0.0031556901521981,0.022449573501945,-0.044726960361004]],[[-0.024991281330585,-0.075386203825474,0.043908938765526],[-0.01970935985446,-0.10145375877619,0.03404551371932],[-0.078743331134319,0.057484958320856,0.084218084812164]],[[-0.040411423891783,-0.06837871670723,-0.04490676894784],[-0.009650569409132,0.010250544175506,-0.032927662134171],[0.0073630749247968,0.071524173021317,0.077891081571579]],[[-0.035077463835478,-0.024093506857753,0.023800591006875],[-0.031296942383051,-0.070406824350357,0.011755571700633],[-0.04808546230197,-0.055839486420155,-0.02721069380641]],[[0.013419474475086,-0.002603693632409,-0.045488703995943],[-0.013161847367883,-0.081660218536854,0.0073995827697217],[0.0051364642567933,-0.025460463017225,-0.072757564485073]],[[-0.046642728149891,-0.029116166755557,0.011908973567188],[-0.057504028081894,0.06533382833004,0.095757931470871],[0.021439764648676,0.076902084052563,-0.016101105138659]],[[0.0066615296527743,-0.0343883857131,-0.015542196109891],[0.051901485770941,0.042244330048561,-0.03208589926362],[0.069456838071346,0.044268146157265,0.0047278245911002]],[[0.0089961439371109,0.01813623867929,0.090644620358944],[-0.010234702378511,-0.011114028282464,0.064247280359268],[0.10235662013292,-0.029408635571599,0.072769671678543]],[[0.017683645710349,-0.054939828813076,-0.0052660121582448],[-0.018746668472886,0.062205366790295,-0.056168913841248],[-0.0047758347354829,0.029192082583904,-0.064925946295261]],[[-0.039379205554724,0.086969964206219,0.063797861337662],[-0.026880929246545,0.0012286435812712,0.010483442805707],[-0.10124481469393,-0.0063622160814703,0.030797416344285]],[[0.045149356126785,0.052188102155924,0.058941680938005],[-0.033896058797836,-0.033725004643202,0.015511135570705],[0.0068678949028254,-0.035456381738186,-0.071398250758648]],[[-0.099336437880993,-0.11144620925188,0.022578202188015],[-0.01844884082675,-0.050989910960197,0.00071142014348879],[-0.024362778291106,-0.069063983857632,-0.028283027932048]],[[0.058644320815802,-0.058713745325804,0.040600806474686],[0.022382080554962,-0.0028156540356576,-0.054853443056345],[-0.048676040023565,-0.056731719523668,0.013216591440141]],[[-0.028389347717166,0.015725905075669,-0.020046396180987],[-0.046765062958002,0.029483590275049,-0.028657456859946],[0.032296467572451,0.0067384666763246,-0.045205630362034]],[[-0.048015087842941,-0.029517661780119,-0.0021217835601419],[0.017004558816552,0.054849773645401,0.0014355222228914],[-0.053257390856743,-0.062456082552671,0.067158944904804]],[[-0.011523768305779,-0.060080248862505,-0.042814467102289],[0.013711335137486,0.067106083035469,0.017378473654389],[0.014336810447276,0.1349012106657,-0.033594697713852]],[[-0.087121926248074,0.028235824778676,-0.017317367717624],[-0.045385528355837,0.042773131281137,0.0052774916402996],[-0.0062697813846171,0.099317349493504,-0.014778199605644]],[[0.029561430215836,-0.044766422361135,-0.065214239060879],[0.07367617636919,0.014196402393281,0.009582550264895],[0.052059218287468,0.021438963711262,-0.01610603928566]],[[-0.0243373028934,-0.047708589583635,0.0087320329621434],[0.019317338243127,0.050691936165094,-0.030619142577052],[-0.011806665919721,0.038053408265114,0.01468990650028]],[[0.0013636994408444,0.0063938456587493,-0.038012977689505],[0.019152864813805,0.026936329901218,0.040189154446125],[-0.014900213107467,0.020139075815678,-0.043441664427519]],[[-0.063347041606903,-0.062395755201578,-0.092645198106766],[0.12509977817535,0.016708977520466,-0.061225909739733],[-0.04733806475997,0.056023295968771,0.027533667162061]],[[-0.040037926286459,-0.0033058263361454,0.059161469340324],[0.011464082635939,0.017181674018502,0.044465027749538],[-0.02537414431572,-0.0057677016593516,0.0050212200731039]],[[0.033671110868454,0.10281860083342,0.0029349050018936],[0.08878617733717,0.095504470169544,0.016091188415885],[0.05573783069849,0.030802384018898,0.07000058889389]],[[-0.045299492776394,-0.059258211404085,0.03797185793519],[0.0014622866874561,0.018359800800681,-0.044373575598001],[0.019857311621308,0.057043507695198,-0.079233415424824]],[[-0.03313734382391,0.0096082901582122,0.0059179533272982],[0.041537120938301,0.039288394153118,0.01645977422595],[0.026079997420311,0.0066786669194698,0.017546283081174]],[[-0.054537937045097,0.034121088683605,-0.045668929815292],[0.017715342342854,-0.021742507815361,0.0077355466783047],[0.02011507190764,-0.09351447224617,0.014224392361939]],[[0.0056958142668009,-0.014751798473299,-0.016845602542162],[-0.041582770645618,0.033412329852581,-0.028830114752054],[-0.021612429991364,0.0051420624367893,0.0078610284253955]],[[-0.049063671380281,-0.046979963779449,0.074536666274071],[-0.044795487076044,-0.043539945036173,0.06037063896656],[0.012115325778723,0.034201644361019,-0.069017618894577]],[[-0.030581718310714,-0.0796287804842,-0.046766359359026],[0.071503579616547,0.028996067121625,-0.0057042059488595],[0.094662040472031,-0.012479049153626,0.12499160319567]],[[-0.044829834252596,-0.037754539400339,0.13443604111671],[0.056715708225965,0.035768058151007,-0.029445460066199],[-0.0019362349994481,0.037569109350443,0.054524511098862]],[[-0.06231727078557,-0.0046063424088061,-0.028327165171504],[-0.0044327480718493,0.09232235699892,0.025884967297316],[0.011623604223132,0.097685344517231,0.074007228016853]],[[-0.045212976634502,0.030307117849588,-0.061588119715452],[0.024515802040696,-0.017330706119537,0.022404374554753],[-0.03626661375165,0.016633985564113,-0.00459308270365]],[[-0.05925352498889,-0.083951480686665,-0.031114298850298],[-0.053857523947954,-0.054969947785139,0.025246351957321],[-0.025907708331943,0.0047243004664779,0.12434481084347]],[[0.033168368041515,0.020266273990273,-0.017984395846725],[-0.066339500248432,-0.029347907751799,-0.0054651922546327],[0.012460674159229,-0.012806059792638,-0.024577742442489]],[[0.021667253226042,0.037771139293909,-0.0076608597300947],[0.0087534189224243,-0.052134234458208,-0.061155445873737],[0.0055571254342794,0.031291302293539,-0.0089240279048681]],[[-0.049720168113708,-0.059419576078653,-0.15071737766266],[0.018720073625445,-0.0097396718338132,-0.068832613527775],[0.096031345427036,0.050728999078274,0.01952001079917]],[[-0.045108340680599,0.033950846642256,0.065943874418736],[0.029056368395686,-0.070879340171814,0.024839317426085],[0.062348630279303,-0.023258233442903,-0.016511959955096]],[[-0.0076326057314873,-0.0075277127325535,0.00057713285787031],[0.020780675113201,0.011852143332362,0.0082723153755069],[0.07953680306673,-0.00065090856514871,-0.060632616281509]],[[-0.066589117050171,-0.096943512558937,0.01722520776093],[-0.0015858822735026,0.069056443870068,-0.036329235881567],[0.017294902354479,0.029475428164005,-0.0050398856401443]],[[-0.034006875008345,-0.12909288704395,0.035636588931084],[0.028982678428292,-0.04145634546876,-0.010366830974817],[-0.00082344451220706,0.029863681644201,0.060065984725952]],[[-0.039546117186546,-0.040596168488264,-0.028245698660612],[-0.067784868180752,0.024199977517128,0.03293015435338],[0.009516722522676,0.0073950057849288,0.0060022557154298]],[[-0.054980497807264,-0.022900357842445,-0.10699311643839],[0.04882338643074,-0.063592381775379,-0.024639207869768],[0.039876703172922,0.028008652850986,0.002387868007645]],[[-0.010763632133603,-0.025655901059508,0.019794842228293],[0.0012749083107337,0.042294073849916,0.046556632965803],[-0.10869397968054,-0.096557892858982,0.070191361010075]],[[0.066490352153778,-0.0018463972955942,0.052917189896107],[-0.10818991065025,-0.051528792828321,0.0037707344163209],[0.099580466747284,-0.030761763453484,-0.057284466922283]],[[-0.0010009852703661,-0.069213844835758,0.014101245440543],[0.0013732586521655,-0.0043470906093717,0.068723611533642],[-0.01974936760962,-0.024058192968369,-0.011803331784904]],[[0.03587044402957,-0.039937749505043,-0.0029569694306701],[0.032308932393789,-0.067688576877117,-0.085016168653965],[-0.0037618079222739,0.0049851536750793,0.062055934220552]],[[-0.015959655866027,-0.075459778308868,0.015833364799619],[-0.0735789462924,-0.01769389770925,-0.035747461020947],[-0.063893929123878,-0.03350318595767,-0.051123812794685]],[[0.050539132207632,-0.0027342005632818,0.065004050731659],[-0.0073743900284171,0.0083991540595889,-0.026307974010706],[-0.043930564075708,-0.038099557161331,0.028681861236691]],[[-0.045883692800999,-0.034211222082376,-0.059293743222952],[0.021934205666184,-0.029881285503507,-0.039637096226215],[-0.056887961924076,0.01796018704772,-0.068529613316059]],[[-0.0015729395672679,-0.0047998283989727,-0.013376380316913],[-0.033268351107836,-0.032141957432032,0.024146012961864],[-0.056081727147102,-0.037762351334095,0.067950047552586]],[[0.055986173450947,0.036650992929935,-0.077497430145741],[0.045543696731329,-0.010281713679433,-0.010275730863214],[0.025935063138604,-0.0041833906434476,0.087396547198296]],[[0.014278627000749,-0.020875968039036,-0.032403755933046],[0.10861187428236,0.10676673799753,-0.018158914521337],[0.085618622601032,0.018802216276526,-0.035367853939533]],[[-0.013628943823278,0.0077044661156833,0.075693115592003],[-0.012291196733713,0.0042560682632029,-0.061803538352251],[-0.030813125893474,0.053440660238266,0.069320969283581]],[[-0.020984197035432,-0.013302941806614,-0.097184911370277],[-0.007341886870563,-0.036826312541962,-0.050624184310436],[0.027595898136497,0.0050744749605656,0.028634203597903]],[[0.071164771914482,-0.054358754307032,-0.086034014821053],[-0.01251641754061,0.037581540644169,-0.024625109508634],[0.015831150114536,-0.023735050112009,-0.040750812739134]],[[0.02431595697999,0.022953264415264,-0.021216977387667],[-0.0059122107923031,-0.034854993224144,0.030703064054251],[0.0278339702636,-0.10069375485182,-0.081961773335934]],[[-0.036820400506258,-0.10279048979282,-0.027491422370076],[0.011153957806528,-0.11518548429012,-0.056708976626396],[0.036681469529867,-0.024194587022066,-0.022768570110202]],[[0.083395011723042,-0.046897150576115,-0.035143438726664],[0.036795541644096,0.060873527079821,-0.039124246686697],[0.031936962157488,0.085099205374718,0.022300254553556]],[[0.0079961307346821,0.05446195602417,-0.031255777925253],[0.055255074054003,0.0033358740620315,-0.014508293941617],[-0.05974343419075,-0.051020462065935,0.037412066012621]],[[0.022095501422882,-0.057713475078344,-0.010002656839788],[0.0041534341871738,0.0034313143696636,-0.0064835418015718],[-0.0011537333484739,-0.089429780840874,0.078826583921909]],[[-0.039839200675488,-0.022540561854839,0.04446018487215],[-0.080040067434311,-0.069010213017464,-0.020614396780729],[0.027722239494324,0.068130023777485,0.075143620371819]],[[-0.012202026322484,-0.065053090453148,-0.007337246555835],[-0.028377490118146,0.0092667760327458,0.032944731414318],[-0.0037732375785708,-0.085699990391731,0.067716583609581]],[[-0.01069397944957,0.013889921829104,0.05120088532567],[0.04029992967844,-0.069899380207062,-0.030473312363029],[0.0038178954273462,-0.019109604880214,-0.020246157422662]]],[[[-0.020717460662127,0.024965357035398,-0.0071189659647644],[0.081546865403652,0.020250203087926,-0.0071746981702745],[-0.093383654952049,0.027743687853217,-0.043533872812986]],[[0.01661042869091,-0.025679273530841,-0.025136759504676],[0.053396601229906,0.084028042852879,0.130745485425],[0.099386312067509,-0.0084543479606509,0.085201092064381]],[[-0.01273407228291,-0.1306057870388,-0.13059931993484],[-0.066998213529587,0.017707200720906,-0.10353320837021],[0.077914476394653,0.041740410029888,-0.045754764229059]],[[-0.085760608315468,-0.077145218849182,0.051445282995701],[-0.009229538962245,0.12245423346758,0.042081095278263],[0.050152767449617,-0.052801869809628,-0.0090864114463329]],[[0.0054415725171566,0.0047977473586798,0.030223120003939],[-0.18140514194965,-0.04770128801465,-0.12876991927624],[-0.00019892481213901,0.02624100074172,0.043000765144825]],[[-0.067734487354755,0.0081135807558894,-0.029038086533546],[-0.042946677654982,-0.061892058700323,-0.047372002154589],[0.052549030631781,-0.015814267098904,0.018155358731747]],[[-0.11096993088722,-0.03017857670784,-0.10180377215147],[0.07406409829855,-0.027012944221497,0.049175195395947],[0.0098185455426574,-0.020697254687548,-0.049702566117048]],[[-0.045135002583265,-0.010091001167893,-0.10269163548946],[0.0076223900541663,0.14465741813183,0.10590516775846],[-0.019765695556998,0.041078336536884,0.018147427588701]],[[0.017111117020249,-0.0044309855438769,-0.028968624770641],[0.03095269203186,-0.070469185709953,-0.053722459822893],[0.00016021993360482,0.043531343340874,0.077425003051758]],[[-0.034934509545565,-0.055139973759651,-0.011996448971331],[-0.013125038705766,-0.012944311834872,-0.037412837147713],[-0.045034237205982,0.026213545352221,-0.011402439326048]],[[-0.060002338141203,0.0034059509634972,0.025495892390609],[-0.026116766035557,0.00021048361668363,0.017002327367663],[0.044709354639053,0.052273295819759,0.025461204349995]],[[-0.087319754064083,-0.005681537091732,-0.020238110795617],[-0.09879831969738,-0.121362157166,-0.013484777882695],[0.011170729994774,-0.020917244255543,0.0064909546636045]],[[0.053086385130882,-0.014075957238674,-0.011149935424328],[-0.058369610458612,7.0960246375762e-05,0.0030630363617092],[0.018541295081377,0.032234273850918,-0.0098198056221008]],[[-0.049605254083872,0.071056716144085,0.04404166713357],[-0.0045420564711094,-0.033050987869501,-0.066896341741085],[0.0050266617909074,0.024869883432984,-0.0053903912194073]],[[-0.012233280576766,-0.010149059817195,0.012965535745025],[0.028176676481962,0.035645116120577,-0.037852741777897],[0.010606396943331,0.043529264628887,0.0091182263568044]],[[-0.093627229332924,0.044648371636868,-0.1217772886157],[-0.065643638372421,0.041518650949001,-0.085383966565132],[-0.054496683180332,0.0044469782151282,0.050203464925289]],[[0.015657428652048,-0.10876645892859,-0.084294445812702],[0.086244769394398,0.0085745248943567,0.024735998362303],[0.050262730568647,0.10742710530758,-0.021456768736243]],[[0.064163461327553,0.0028143250383437,0.034656681120396],[0.014984956011176,0.058747988194227,-0.02828149870038],[0.0045959888957441,-0.044464830309153,0.049211036413908]],[[0.03231268376112,-0.064433306455612,-0.038031846284866],[0.036592230200768,-0.056180376559496,0.0023398892953992],[0.068939015269279,0.021666364744306,0.02691800147295]],[[-0.043335277587175,-0.069548100233078,-0.04571433365345],[0.034011457115412,0.037665519863367,-0.018398754298687],[0.033156391233206,0.042017191648483,0.046498816460371]],[[0.011565173976123,0.016213674098253,0.019943434745073],[-0.015257178805768,0.030297232791781,0.038715537637472],[0.050465386360884,0.052265968173742,-0.064012281596661]],[[-0.030104100704193,-0.068560197949409,0.024382991716266],[0.032376114279032,0.030142372474074,-0.024587761610746],[0.053592003881931,0.027458379045129,0.0079708527773619]],[[-0.064712017774582,0.050284035503864,-0.040499068796635],[0.014916157349944,-0.093597404658794,-0.031111504882574],[-0.018154760822654,0.0024157660081983,0.024336943402886]],[[0.03825655952096,0.057435303926468,0.015665916725993],[0.028424901887774,0.079015962779522,0.025951955467463],[-0.017888380214572,0.052752874791622,0.0075017814524472]],[[0.044913902878761,0.0106914145872,0.0012057643616572],[0.066777430474758,-0.019131124019623,-0.06586330384016],[-0.064070291817188,-0.11627079546452,0.055405095219612]],[[-0.03387888148427,-0.017452789470553,0.038216363638639],[0.022626234218478,-0.079489916563034,-0.078466102480888],[0.088166013360023,0.013005627319217,-0.09132232517004]],[[-0.045613888651133,-0.063080243766308,-0.030732817947865],[-0.024046558886766,0.063390448689461,-0.021177537739277],[-0.0045707770623267,-0.084100298583508,-0.00017448113067076]],[[0.066299431025982,0.054340284317732,-0.01336279977113],[0.0075628696940839,-0.0095530739054084,-0.025747681036592],[0.03531363978982,0.06563176959753,0.025551997125149]],[[0.085069105029106,0.032144092023373,-0.014967569150031],[0.021461810916662,-0.12983855605125,-0.032117661088705],[0.06062500551343,-0.012391378171742,-0.0093572102487087]],[[-0.0058594942092896,-0.026356685906649,0.012746975757182],[0.040367893874645,0.02988519333303,0.058802265673876],[0.0061337975785136,0.0058383303694427,-0.057476717978716]],[[0.035108171403408,-0.092305965721607,-0.021979281678796],[0.046338617801666,0.10723149031401,-0.068526722490788],[0.058242816478014,-0.0313855484128,0.010151618160307]],[[-0.011126645840704,0.025059878826141,0.044341836124659],[-0.0051803099922836,-0.080767169594765,-0.071647524833679],[0.035295758396387,7.4137176852673e-05,-0.034578345716]],[[0.031118066981435,0.023475628346205,0.0026314076967537],[0.0001227633911185,-0.073916733264923,-0.11338336765766],[0.019138343632221,0.0040929466485977,0.0098245348781347]],[[0.014742956496775,-0.044107545167208,-0.033033784478903],[-0.012498336844146,0.012054067105055,-0.0075368867255747],[-0.045585714280605,0.0071901474148035,0.024010121822357]],[[-0.11780945956707,-0.075494758784771,0.003357658861205],[-0.13586139678955,-0.068812847137451,-0.071768432855606],[-0.1445057541132,-0.084337674081326,-0.072000332176685]],[[0.013571498915553,0.11298263072968,0.020404824987054],[-0.061667792499065,0.057444456964731,0.032880675047636],[-0.022868121042848,-0.056383725255728,0.01819278113544]],[[-0.037478193640709,-0.0091976914554834,-0.070092596113682],[-0.04656744748354,0.004411774687469,0.046890571713448],[0.02197640016675,0.073658920824528,-0.0099156079813838]],[[-0.00021045352332294,0.0047461814247072,-0.0016893621068448],[0.075063720345497,-0.045258179306984,0.02802661433816],[-0.12673930823803,-0.035008046776056,0.014520951546729]],[[0.086487330496311,-0.0038190549239516,-0.014035942032933],[0.025060700252652,0.0098160384222865,0.010181603953242],[-0.031059071421623,-0.095993205904961,-0.064538903534412]],[[-0.093250580132008,0.088920705020428,0.02320739813149],[0.11204455792904,0.074520535767078,-0.033976949751377],[0.0069607263430953,0.15060558915138,-0.13233424723148]],[[-0.029046148061752,-0.034279845654964,-0.11973385512829],[0.020104669034481,-0.034185994416475,-0.027018943801522],[-0.076552040874958,-0.0040184776298702,-0.088238731026649]],[[-0.0033670058473945,0.099007792770863,-0.0068516894243658],[-0.00034888397203758,-0.028003662824631,0.027950529009104],[-6.3230538216885e-05,-0.10751788318157,-0.057070959359407]],[[0.023239932954311,0.04626390337944,0.028235508129001],[-0.015032280236483,0.028183681890368,-0.045784551650286],[-0.035228759050369,-0.020989494398236,0.11146122217178]],[[0.023587679490447,0.010850194841623,-0.065732337534428],[-0.10323929041624,-0.012894354760647,0.017623024061322],[0.11690597236156,0.019918786361814,0.025341710075736]],[[0.056351736187935,0.0030337830539793,0.0085220066830516],[-0.13786622881889,-0.01504918653518,-0.01887565664947],[-0.018698334693909,0.028774293139577,-0.081149213016033]],[[-0.0020727827213705,-0.015213987790048,-0.048100627958775],[-0.051888003945351,0.011321967467666,0.019493166357279],[0.015990966930985,-0.048274550586939,0.0065280995331705]],[[0.051833420991898,0.004080084618181,-0.063185423612595],[0.089400388300419,-0.013842953369021,0.064323328435421],[-0.012735613621771,-0.058758165687323,0.082192599773407]],[[-0.020995859056711,0.00079472584184259,0.0034025467466563],[-0.052581526339054,-0.029524769634008,-0.011156999506056],[-0.032769527286291,0.063788279891014,0.055216666311026]],[[0.020633766427636,-0.0076984255574644,-0.030326629057527],[-0.045917000621557,-0.033533986657858,-0.029726756736636],[-0.061752665787935,-0.035046711564064,-0.083941511809826]],[[-0.10257585346699,-0.058153625577688,-0.064619481563568],[0.02926635928452,-0.050677396357059,-0.020013121888041],[0.053335007280111,0.056824877858162,0.065490782260895]],[[-0.008299526758492,-0.03453154489398,-0.020425044000149],[0.00054537854157388,-0.01115623768419,-0.011635539121926],[0.00061421078862622,-0.074699714779854,0.016529822722077]],[[-0.038055501878262,-0.00043607605039142,0.076791971921921],[0.049504090100527,0.063073493540287,-0.021526029333472],[0.020734436810017,0.04048177972436,-0.096227273344994]],[[0.002456599380821,-0.0031519441399723,-0.0050970655865967],[0.015585847198963,0.093173123896122,0.023517807945609],[-0.060859657824039,0.027646951377392,0.068789318203926]],[[-0.057388968765736,0.072273038327694,-0.089679814875126],[0.010828386992216,-0.0050259078852832,0.013005468063056],[-0.034152902662754,-0.060133505612612,0.013119297102094]],[[-0.040210269391537,0.052886269986629,-0.011846741661429],[0.02470856718719,-0.040132597088814,-0.087363868951797],[0.035685021430254,0.039764858782291,-0.0052753877826035]],[[0.010546672157943,0.057634085416794,0.03663919493556],[-0.0022097069304436,0.028229894116521,0.036159593611956],[-0.024247638881207,0.047629851847887,0.025762123987079]],[[0.028853630647063,-0.011496721766889,-0.00099897559266537],[0.031390085816383,-0.053333278745413,0.029596213251352],[-0.012006767094135,-0.06781292706728,0.030494214966893]],[[-0.05844508856535,-0.055011369287968,-0.082543395459652],[-0.0090287523344159,-0.11486875265837,-0.051388550549746],[-0.0085100838914514,-0.077924437820911,-0.058631401509047]],[[-0.075835473835468,-0.063558310270309,0.068056501448154],[0.062907218933105,-0.030004419386387,-0.012580147013068],[-0.092901706695557,0.03908147662878,0.063071064651012]],[[0.046058095991611,0.040327180176973,0.052745167165995],[-0.016852226108313,0.0037944791838527,0.030766448006034],[-0.11690328270197,-0.041016310453415,-0.01968072168529]],[[-0.007816475816071,0.020413367077708,0.022981561720371],[-0.085690319538116,-0.027745593339205,-0.021755803376436],[0.0019613243639469,-0.064095601439476,0.034293033182621]],[[0.016841687262058,-0.05396406725049,-0.006792489439249],[0.016489293426275,0.023702116683125,-0.056197345256805],[-0.073678568005562,-0.076120935380459,0.025090873241425]],[[0.016071001067758,0.05082693696022,-0.02439403347671],[0.0068973293527961,0.014842183329165,-0.031124886125326],[-0.033112578094006,-0.045187722891569,0.042916473001242]],[[-0.04432662576437,-0.026889367029071,0.069784685969353],[0.0038922755047679,-0.010600465349853,-0.014799889177084],[0.04931777343154,0.0604960732162,-0.041186809539795]]],[[[-0.060605511069298,-0.11159816384315,-0.058859195560217],[0.0021849852055311,-0.058469891548157,0.058338146656752],[-0.10224893689156,0.064974501729012,0.053200259804726]],[[-0.043119858950377,-0.038743708282709,-0.082718253135681],[-0.20079123973846,-0.04955917969346,-0.14054536819458],[-0.14843475818634,-0.08102885633707,-0.14739473164082]],[[0.071024857461452,-0.020259980112314,0.0051653222180903],[0.010479490272701,-0.047850579023361,0.015467576682568],[-0.014288784004748,-0.049551256000996,-0.089279696345329]],[[-0.039376847445965,0.043955270200968,0.01276555005461],[0.0020168086048216,0.07177322357893,-0.012506234459579],[-0.10578109323978,-0.031162120401859,-0.0095997229218483]],[[-0.014274746179581,0.026654779911041,0.047836780548096],[-0.00047395838191733,0.02737789042294,0.070954069495201],[-0.023521821945906,-0.044774863868952,0.072058469057083]],[[-0.030176961794496,-0.051773458719254,0.083800069987774],[0.077537097036839,-0.032982233911753,-0.10454004257917],[-0.032781481742859,0.16516110301018,-0.017192175611854]],[[0.099030360579491,-0.041566587984562,-0.10791730135679],[-0.015386112965643,-0.086529403924942,-0.12371611595154],[0.0069493539631367,-0.046538550406694,-0.071427673101425]],[[-0.060976959764957,0.011775098741055,-0.089890114963055],[-0.1005493029952,-0.025254480540752,-0.073601745069027],[-0.0718177780509,-0.022032557055354,0.059679381549358]],[[-0.035437870770693,-0.047169499099255,0.025566866621375],[0.0749741345644,0.091754779219627,0.030580775812268],[0.1454276740551,0.0027082092128694,0.00564119592309]],[[-0.0047593261115253,0.053430918604136,0.011186721734703],[0.022693559527397,-0.015719499439001,-0.0099450880661607],[-0.049560390412807,0.026236448436975,-0.032098982483149]],[[0.060956213623285,0.0060051735490561,0.03505651652813],[0.051902007311583,0.072405971586704,-0.0026245741173625],[0.13324812054634,0.00053605326684192,-0.056127246469259]],[[0.014358824118972,0.022582495585084,0.054283775389194],[-0.096444092690945,0.050078418105841,-0.056162863969803],[-0.037386134266853,0.027532886713743,-0.031387992203236]],[[0.070505164563656,0.044024702161551,-0.027925813570619],[-0.076416186988354,-0.085852593183517,-0.035404309630394],[-0.10633503645658,-0.073228634893894,-0.0021309377625585]],[[0.14236596226692,0.026198543608189,0.025480750948191],[0.056707140058279,-0.014495917595923,-0.0055972686968744],[-0.00037779007107019,0.0033398049417883,-0.088151425123215]],[[-0.04081154987216,0.029634671285748,0.014634672552347],[-0.056391626596451,0.0085120592266321,0.059610288590193],[0.0021307026036084,-0.016948845237494,-0.043247617781162]],[[-0.058063231408596,0.060543034225702,0.0086753536015749],[0.011331153102219,0.02690109424293,0.011594763025641],[-0.091018006205559,-0.034420751035213,-0.013563944026828]],[[-0.007570001296699,0.037003293633461,-0.034758895635605],[-0.058858171105385,-0.10516276955605,-0.050350602716208],[0.032115142792463,0.11053433269262,0.060985811054707]],[[-0.012085169553757,-0.097661182284355,0.059624839574099],[0.068781763315201,0.086633078753948,-0.086038343608379],[0.096859626471996,0.045726127922535,-0.0020692604593933]],[[0.01321935094893,-0.034018259495497,-0.035687778145075],[0.073860585689545,-0.0017226337222382,-0.0032957708463073],[-0.015904249623418,-0.011905074119568,-0.02108664996922]],[[0.040259070694447,-0.030793184414506,0.06456732749939],[-0.014485707506537,-0.0027165079955012,-0.038571819663048],[-0.041322819888592,-0.0087586585432291,0.038744632154703]],[[0.033274207264185,-0.012946086004376,0.014552182517946],[0.010358097963035,-0.017117090523243,-0.16530850529671],[-0.065588124096394,-0.062561452388763,-0.10515312105417]],[[-0.033666804432869,0.034568164497614,-0.067743055522442],[-0.075066186487675,0.049368217587471,-0.018279230222106],[-0.041427128016949,0.091370038688183,0.13676233589649]],[[-0.051406051963568,0.080694057047367,0.030892981216311],[-0.13474345207214,-0.044750805944204,-0.046658892184496],[0.014624348841608,0.038557060062885,-0.01832896284759]],[[-0.11311470717192,0.033778257668018,-0.0078373290598392],[-0.025783749297261,0.10271944850683,0.12963983416557],[-0.038452420383692,0.064657516777515,0.11930128931999]],[[0.058217696845531,0.0070072989910841,0.017324805259705],[0.064865663647652,-0.0096833864226937,0.045034423470497],[-0.0012811874039471,-0.006612463388592,-0.013727460987866]],[[0.010188292711973,0.00075052818283439,0.073452644050121],[0.021696114912629,0.0028635410126299,0.087666995823383],[0.034369174391031,0.0054961708374321,0.039188642054796]],[[0.0047943857498467,0.011161801405251,0.072764381766319],[-0.084696374833584,0.14879976212978,-0.11197175085545],[0.067699566483498,0.043636608868837,-0.13712620735168]],[[-0.054339673370123,-0.0066273240372539,-0.023694768548012],[-0.15024057030678,0.018492894247174,0.019482227042317],[-0.054153919219971,-0.035374291241169,-0.083466686308384]],[[-0.017681920900941,-0.084226444363594,0.073453351855278],[-0.060050547122955,0.066016234457493,0.15694946050644],[-0.05626804381609,0.069422334432602,-0.080707095563412]],[[0.014516997151077,-0.016686240211129,-0.18091970682144],[0.083810485899448,-0.056230135262012,-0.17032381892204],[0.17374347150326,-0.088404037058353,0.086634106934071]],[[0.032329920679331,-0.00099867500830442,0.018212232738733],[0.094357632100582,0.002170194638893,-0.0054192715324461],[0.15742936730385,0.054038222879171,-0.028835320845246]],[[0.049323584884405,0.025192379951477,0.10601107031107],[-0.11091036349535,-0.042322676628828,-0.10558301955462],[-0.0736950263381,-0.016381034627557,-0.042606398463249]],[[-0.01711717247963,0.016302689909935,0.028171746060252],[-0.076383389532566,-0.066236667335033,-0.059390150010586],[-0.08277366310358,-0.017234828323126,-0.039031527936459]],[[0.02949607744813,-0.016123730689287,0.054232187569141],[0.10893995314837,0.017886867746711,-0.087723813951015],[-0.18329147994518,-0.081599146127701,-0.10285624116659]],[[0.045832306146622,-0.031854774802923,-0.013729305937886],[0.11846819519997,0.008525705896318,0.047455731779337],[-0.021791534498334,-0.032673098146915,-0.047613099217415]],[[0.0014495991636068,0.043065570294857,-0.0049047446809709],[0.04482214525342,-0.016407672315836,-0.057793684303761],[-0.033390272408724,-0.065340742468834,0.013432521373034]],[[-0.022382088005543,0.14177910983562,-0.13409866392612],[-0.11443460732698,-0.031482759863138,-0.08711201697588],[0.0030431721825153,0.023425245657563,0.089473322033882]],[[0.025789564475417,-0.0029800378251821,0.033471338450909],[0.032632943242788,0.019046418368816,0.033663477748632],[-0.0185407102108,-0.050717063248158,-0.053468823432922]],[[-0.0020697668660432,-0.027968313544989,-0.029904969036579],[-0.010106457397342,-0.04786479473114,0.069810271263123],[-0.031323503702879,-0.0096784373745322,-0.016122365370393]],[[0.11021228134632,0.064527332782745,-0.1195265725255],[-0.050283271819353,0.022020187228918,-0.19221469759941],[-0.027373237535357,0.027759386226535,-0.062814988195896]],[[-0.10581193864346,0.0077026165090501,0.045811016112566],[0.011734388768673,0.045772016048431,0.062250513583422],[0.016658814623952,0.0046193292364478,0.013422595337033]],[[-0.0008592531667091,0.082709610462189,-0.06074320524931],[0.041320838034153,-0.0059045976959169,0.049088340252638],[-0.09426848590374,0.0041858502663672,-0.0040125553496182]],[[0.077116280794144,0.053686611354351,-0.055506136268377],[-0.15805527567863,-0.064708314836025,-0.040116775780916],[-0.012181891128421,0.085961312055588,-0.080234989523888]],[[-0.0080979997292161,-0.089367613196373,-0.015964327380061],[-0.13230653107166,-0.080434024333954,0.083788082003593],[0.018439395353198,-0.018359398469329,-0.068432040512562]],[[0.013294805772603,-0.02855845913291,-0.030414452776313],[0.020333480089903,-0.11383496969938,0.098480671644211],[0.016068326309323,-0.085958622395992,0.19613379240036]],[[0.10162188857794,0.06452439725399,-0.048077419400215],[0.0068429578095675,-0.13822096586227,0.061949040740728],[0.1630517244339,0.07444603741169,0.05228965729475]],[[-0.0036677704192698,0.061501506716013,-0.019273912534118],[0.0076751904562116,0.037080865353346,-0.038153719156981],[0.059384766966105,0.033525243401527,-0.070794150233269]],[[-0.0040695643983781,0.068467617034912,-0.062499228864908],[0.017476039007306,-0.083628945052624,-0.016985610127449],[-0.073162570595741,-0.18058967590332,-0.083490505814552]],[[0.055490378290415,0.051463350653648,-0.037333678454161],[0.11701660603285,-0.059302933514118,-0.038846589624882],[-0.067396178841591,0.021401565521955,0.0025120070204139]],[[0.10910800844431,0.017801057547331,-0.04290909320116],[0.10398875921965,-0.076635591685772,-0.0098978253081441],[-0.14906530082226,-0.037173144519329,-0.0050805136561394]],[[-0.10000560432673,0.00066950696054846,0.021429082378745],[0.021759772673249,-0.051571734249592,-0.003390452824533],[-0.068127736449242,-0.10817445069551,-0.03698306530714]],[[-0.22049503028393,0.049815829843283,0.19170536100864],[-0.071595400571823,0.079997338354588,0.12140925973654],[-0.068912424147129,-0.043411243706942,0.069193549454212]],[[-0.055337827652693,-0.042783055454493,0.015460649505258],[-0.021726921200752,-0.003862990764901,-0.10688666254282],[0.055935367941856,0.011252264492214,-0.010753308422863]],[[-0.027460020035505,0.068506479263306,-0.011017099022865],[-0.092643022537231,-0.062006555497646,-0.086349971592426],[0.038156118243933,0.10538300126791,0.074067987501621]],[[-0.033369190990925,-0.01760296523571,-0.049923360347748],[0.086536839604378,0.055880956351757,-0.098071046173573],[0.046765938401222,-0.12166426330805,-0.01664405874908]],[[-0.02775726094842,0.0040150159038603,-0.01515306532383],[0.039497345685959,-0.017557879909873,0.0069375778548419],[0.030626112595201,-0.01876687258482,-0.065398715436459]],[[0.046822231262922,-0.094605259597301,-0.16104705631733],[-0.079060219228268,-0.13847477734089,-0.065350748598576],[-0.13834866881371,0.14318913221359,0.056137394160032]],[[0.033337272703648,-0.0059456154704094,0.02936765179038],[0.022410716861486,-0.0072381286881864,0.069735392928123],[0.0062808361835778,0.03331271186471,-0.074960730969906]],[[0.037789393216372,0.068387933075428,0.083104737102985],[-0.032812848687172,0.14369085431099,0.12672910094261],[0.037913110107183,0.019995583221316,0.17557448148727]],[[-0.026714432984591,-0.0076323403045535,-0.051575656980276],[0.025160105898976,0.070921331644058,-0.019952112808824],[0.042830266058445,-0.015471311286092,-0.029598040506244]],[[-0.02297043427825,-0.018184127286077,-0.038488291203976],[-0.10338090360165,0.029144011437893,0.040629085153341],[-0.019627634435892,-0.0093477386981249,0.047426667064428]],[[-0.044251915067434,-0.18342462182045,-0.086325861513615],[-0.022939406335354,0.047602485865355,0.081460051238537],[-0.02895269729197,0.045003101229668,0.02464809268713]],[[0.059336677193642,0.035079222172499,0.08744590729475],[0.01191280875355,0.015349588356912,-0.054421462118626],[-0.050917450338602,-0.1257251650095,-0.034020639955997]],[[0.012663469649851,0.0092288991436362,0.048099610954523],[0.077540099620819,0.044990200549364,0.025632906705141],[0.050308838486671,-0.0097066275775433,0.01008474547416]]],[[[0.075901463627815,0.033327333629131,0.00018789122987073],[-0.041576884686947,-0.047584984451532,0.021101430058479],[-0.040778275579214,0.040048107504845,-0.043303690850735]],[[-0.033511497080326,-0.099916413426399,-0.093265257775784],[0.04440725967288,-0.049605887383223,-0.05783823505044],[-0.013311763294041,-0.14811907708645,-0.1441503316164]],[[0.044603176414967,0.00658008037135,0.028218140825629],[0.015853233635426,0.066660903394222,-0.03224178776145],[0.031943675130606,-0.16837860643864,-0.025208653882146]],[[-0.010605945251882,-0.020860973745584,-0.099234133958817],[-0.11388628184795,-0.10313989967108,-0.10838276147842],[-0.11893479526043,-0.14357434213161,-0.058247905224562]],[[0.031409703195095,-0.039216488599777,0.024011868983507],[-0.049321617931128,0.0083072679117322,-0.039752885699272],[-0.005852238740772,-0.058791730552912,-0.043815925717354]],[[0.011939855292439,0.048619698733091,-0.079981662333012],[-0.048881877213717,0.007680103648454,0.026797372847795],[0.0013198298402131,0.016048846766353,0.0044289003126323]],[[0.046935137361288,-0.063819333910942,-0.046230208128691],[0.043134387582541,-0.050603158771992,-0.11638477444649],[0.0092198848724365,-0.12788717448711,-0.036381732672453]],[[-0.04089892655611,-0.18447928130627,-0.078969702124596],[0.063290365040302,-0.11390972882509,-0.074262730777264],[-0.066695056855679,-0.2551731467247,-0.074459657073021]],[[-0.092862725257874,0.064538717269897,0.015018959529698],[-0.11549127101898,-0.090217009186745,0.046523056924343],[-0.037771057337523,-0.01594209484756,-0.008598055690527]],[[-0.063167981803417,0.065605543553829,0.0079046841710806],[0.031090443953872,-0.019062934443355,0.038350589573383],[0.077091902494431,0.050098083913326,-0.029340291395783]],[[-0.033188905566931,-0.0087795043364167,0.02027815207839],[-0.003922036383301,-0.028064979240298,0.01233930978924],[-0.030167158693075,-0.18251818418503,0.050275266170502]],[[-0.11445205658674,0.00081011041766033,0.085290364921093],[-0.040901426225901,-0.066698513925076,0.035056103020906],[-0.0010366381611675,-0.00091954233357683,-0.04926024377346]],[[0.065586157143116,-0.047045104205608,-0.1731593310833],[-0.0096076168119907,0.035459090024233,-0.0076540783047676],[0.093784920871258,0.18399314582348,0.022534765303135]],[[0.044551376253366,0.080158472061157,-0.026437053456903],[0.006940386723727,0.031798232346773,-0.024010375142097],[0.00091575685655698,-0.022044124081731,0.093800626695156]],[[-0.0036205060314387,-0.097607985138893,-0.12590880692005],[-0.032167948782444,-0.10429659485817,-0.077604509890079],[-0.017347898334265,0.056362919509411,-0.12212027609348]],[[0.023581314831972,0.039646737277508,-0.041658151894808],[0.01885143853724,0.067842602729797,-0.065431959927082],[-0.034478031098843,-0.0047099040821195,-0.02541895955801]],[[-0.025771958753467,0.053432300686836,-0.016542011871934],[-0.029049606993794,0.039926663041115,0.017685236409307],[-0.078043967485428,-0.048100762069225,0.0079850666224957]],[[-0.011510327458382,0.1112934872508,-0.018897868692875],[-0.052164603024721,-0.088501684367657,-0.098822310566902],[-0.08293392509222,-0.098634868860245,-0.026317108422518]],[[0.069981768727303,0.019998161122203,-0.099233351647854],[-0.010283201001585,-0.062025602906942,-0.020422911271453],[-0.016512993723154,0.034783035516739,-0.014113837853074]],[[0.020672699436545,0.033420015126467,0.11336959898472],[0.035789433866739,-0.05131783336401,-0.037221178412437],[0.011219107545912,-0.064241819083691,-0.069273769855499]],[[-0.0026429879944772,0.041572138667107,0.028462074697018],[0.017072590067983,-0.0070004253648221,0.05049155279994],[0.012114757671952,-0.046650506556034,-0.013861978426576]],[[0.048624109476805,-0.026966538280249,0.01432157214731],[0.010791526176035,0.066483892500401,-0.095572374761105],[-0.025659490376711,0.010133250616491,-0.046147659420967]],[[-0.0016152547905222,0.0023610075004399,-0.017937516793609],[-0.015327485278249,-0.039452526718378,0.018411502242088],[0.012326112948358,-0.06459841132164,0.032455518841743]],[[0.031917165964842,0.033858355134726,0.040828097611666],[0.09542839974165,0.0263432841748,0.11484584957361],[0.061002943664789,-0.02229068800807,0.087233312427998]],[[0.049039840698242,-0.078994251787663,0.070504315197468],[0.0060189142823219,-0.055812623351812,-0.027010392397642],[0.03308368101716,0.023493053391576,0.059794899076223]],[[-0.037953309714794,-0.0011148699559271,0.09837506711483],[0.028139648959041,0.020752467215061,-0.0055817235261202],[-0.016368508338928,0.016154710203409,0.067928075790405]],[[-0.027408737689257,0.034859713166952,-0.075097054243088],[-0.12859429419041,-0.0086007202044129,-0.025386195629835],[-0.10313469916582,-0.0084278406575322,0.023844081908464]],[[-0.020892789587379,-0.038197811692953,-0.14450457692146],[-0.061546638607979,-0.0067928689531982,-0.049743171781301],[-0.067035257816315,-0.0094574885442853,-0.02593083307147]],[[-0.059800568968058,-0.023612581193447,-0.045261479914188],[0.021973144263029,-0.018157541751862,0.042438481003046],[-0.083067514002323,-0.011914322152734,-0.01444951351732]],[[-0.054037876427174,-0.087812960147858,-0.12578970193863],[-0.021562939509749,-0.13329117000103,-0.18937011063099],[-0.15215072035789,-0.12935346364975,-0.024838717654347]],[[-0.054689154028893,0.082257553935051,-0.10297311842442],[0.035751525312662,-0.047540105879307,0.042410403490067],[0.024608740583062,0.0021747087594122,-0.002072551753372]],[[0.011150600388646,-0.014390289783478,-0.055786300450563],[-0.065957844257355,0.028916880488396,0.024450890719891],[-0.10495853424072,-0.07523887604475,-0.056660927832127]],[[0.09348426014185,0.030066413804889,0.016223762184381],[0.030964937061071,-0.058263055980206,-0.0038558300584555],[0.021558055654168,-0.038920775055885,0.00090276938863099]],[[0.028269495815039,0.061911474913359,0.053507827222347],[-0.059110268950462,0.028790883719921,0.050889551639557],[0.013427193276584,0.13140064477921,-0.079589352011681]],[[0.049838319420815,0.05661091953516,-0.021497435867786],[0.052089683711529,0.085037015378475,0.020581597462296],[-0.055761985480785,-0.023576760664582,0.061568800359964]],[[0.02462000772357,-0.042457949370146,-0.067729160189629],[0.0069996914826334,-0.11022409796715,-0.078114427626133],[-0.08245674520731,0.088192738592625,0.041667558252811]],[[0.0070169437676668,-0.087547473609447,-0.1056487262249],[5.1276347221574e-06,-0.012199070304632,-0.011152148246765],[0.033557005226612,0.070565722882748,-0.064661294221878]],[[0.13640132546425,-0.043448265641928,-0.035472124814987],[0.056624684482813,-0.059073723852634,0.018479164689779],[-0.062522538006306,0.028059929609299,0.021194390952587]],[[-0.051708608865738,0.019289560616016,0.088286742568016],[0.015395424328744,0.027666503563523,-0.016717918217182],[0.0060545718297362,0.0094109680503607,0.09982455521822]],[[-0.011661502532661,0.032611060887575,-0.0022193540353328],[0.038465451449156,-0.053312692791224,-0.060571573674679],[-0.11172517389059,-0.093548998236656,0.035233393311501]],[[0.079476408660412,0.0096664223819971,-0.060734592378139],[-0.0065999012440443,-0.087265878915787,-0.0058278758078814],[0.0079195033758879,-0.086718715727329,-0.073668010532856]],[[0.051511649042368,-0.073881916701794,0.031129192560911],[0.060753382742405,-0.039127044379711,0.010570835322142],[0.053155161440372,0.024962542578578,0.04342332854867]],[[0.083152182400227,-0.018358338624239,-0.062514141201973],[0.031286787241697,0.038438387215137,-0.15375430881977],[0.026572771370411,0.12313950061798,0.041587222367525]],[[-0.09623546153307,-0.050115954130888,0.082189284265041],[0.068851254880428,-0.12368111312389,0.019112015143037],[0.040861666202545,-0.049601282924414,0.066697373986244]],[[-0.11329910904169,-0.082161903381348,0.011864604428411],[-0.027262795716524,-0.018451092764735,-0.067713841795921],[0.058507487177849,-0.10000155121088,-0.10558207333088]],[[-0.045581988990307,0.045739948749542,-0.082484528422356],[0.051334518939257,-0.12673904001713,-0.021955603733659],[-0.012766737490892,0.015043794177473,0.049626782536507]],[[0.027689419686794,0.018323319032788,0.037229884415865],[0.012751204892993,0.03364284709096,-0.020555270835757],[0.048796325922012,0.016278631985188,-0.095706708729267]],[[0.051611520349979,-0.01376083958894,-0.021916626021266],[0.0050377738662064,-0.031633488833904,-0.005826716311276],[0.014579771086574,-0.14253662526608,-0.10985437780619]],[[-0.067467764019966,0.016897225752473,-0.020477851852775],[0.021853160113096,-0.049963872879744,-0.0028548110276461],[0.036635130643845,-0.00059096026234329,-0.0010027842363343]],[[-0.03722096607089,-0.067865967750549,-0.049713104963303],[0.04301829636097,-0.006804071366787,0.01652567461133],[0.076950199902058,0.053753148764372,-0.026657370850444]],[[0.017464248463511,-0.027820710092783,0.078977696597576],[-0.0078383004292846,-0.012631521560252,-0.01687553152442],[0.053147185593843,0.001630533952266,-0.029604680836201]],[[0.059940379112959,0.014313355088234,-0.071450911462307],[0.01798396743834,-0.033964268863201,0.020584009587765],[0.073158636689186,-0.017301185056567,0.060493063181639]],[[-0.17130687832832,-0.020121898502111,-0.096119210124016],[-0.074868962168694,-0.025005830451846,-0.11001379787922],[-0.026286290958524,-0.11553031206131,-0.15465547144413]],[[0.017579158768058,-0.040667269378901,0.07530415803194],[0.0002392621972831,-0.013367840088904,0.033106815069914],[-0.090292617678642,-0.017172308638692,0.01994575932622]],[[-0.04339911043644,-0.10623571276665,-0.10478581488132],[-0.011218955740333,0.051474653184414,0.02355713583529],[0.033578153699636,-0.062176998704672,2.2712079953635e-05]],[[0.025559986010194,-0.033962924033403,-0.020172229036689],[0.055989701300859,0.016302164644003,0.054390907287598],[-0.052948720753193,-0.081477865576744,0.00051539781270549]],[[-0.040581919252872,0.020528549328446,-0.038564257323742],[-0.044660374522209,0.042242880910635,-0.034071039408445],[-0.031973663717508,-0.0080854315310717,0.09491815418005]],[[0.0046989875845611,-0.013901202939451,-0.031094828620553],[0.007681196089834,0.0099293449893594,0.02622639015317],[-0.01452149450779,0.0047912700101733,0.025708163157105]],[[0.06289379298687,0.10878894478083,-0.0018542993348092],[-0.04895943403244,0.10915247350931,0.058129273355007],[0.0054303933866322,-0.0045584067702293,0.077689871191978]],[[-0.043147955089808,-0.0771439447999,-0.037254497408867],[0.023854786530137,0.011281902901828,0.0042230268009007],[-0.0021196978632361,0.017902236431837,0.087710544466972]],[[0.066131912171841,-0.0021509695798159,-0.062274672091007],[0.031145360320807,-0.011840752325952,-0.074036546051502],[0.0083757601678371,-0.039201848208904,0.048953052610159]],[[0.12143099308014,-0.03990375995636,0.010258109308779],[0.0094704553484917,-0.11168558895588,-0.034447781741619],[0.024389477446675,0.0010822584154084,-0.0069838119670749]],[[0.020225644111633,-0.0028680714312941,0.077611021697521],[0.013966951519251,-0.019345793873072,0.0403115414083],[0.09188074618578,-0.037156023085117,0.067583955824375]],[[-0.091318845748901,0.029015354812145,-0.038990892469883],[0.010310807265341,0.052236951887608,0.068383507430553],[0.0023057588841766,0.027017496526241,-0.11435509473085]]],[[[-0.029030032455921,0.02169643342495,-0.0062383348122239],[-0.061037316918373,-0.036191858351231,0.067991368472576],[-0.13673236966133,0.019144447520375,-0.023089505732059]],[[-0.13016709685326,-0.17302159965038,-0.13891568779945],[0.058096114546061,-0.10018440335989,-0.20661267638206],[0.067912310361862,0.092454358935356,-0.0026602691505104]],[[0.01912104524672,0.082180641591549,-0.048718385398388],[-0.11831144243479,-0.084531463682652,0.019885784015059],[-0.022050645202398,-0.022116588428617,-0.053767587989569]],[[-0.041202079504728,0.012453670613468,0.0015162343624979],[-0.013380949385464,-0.08235651999712,-0.090245932340622],[0.033517248928547,0.037944328039885,-0.030720924958587]],[[-0.10503073036671,0.066059194505215,0.047550469636917],[0.014192912727594,0.049793299287558,0.096683502197266],[0.068891912698746,0.024425201117992,-0.11431912332773]],[[-0.072303384542465,-0.0051659648306668,0.03871651366353],[0.060552023351192,0.048014294356108,-0.079986177384853],[0.050416454672813,0.028317991644144,-0.029036769643426]],[[-0.011222290806472,-0.041402507573366,-0.082305908203125],[-0.031966768205166,-0.088962376117706,-0.019934078678489],[0.087255090475082,0.01541216019541,0.013415978290141]],[[0.011772265657783,-0.035265754908323,0.075156100094318],[0.067188911139965,-0.063767679035664,-0.078797608613968],[0.055884342640638,0.07483284920454,0.075702629983425]],[[-0.016497060656548,0.0039925673045218,-0.053535725921392],[-0.070184089243412,0.042724102735519,0.0032233272213489],[0.01021683588624,0.0059843570925295,-0.023142419755459]],[[0.014184005558491,0.075513482093811,0.029084660112858],[0.0064419964328408,-0.052998717874289,0.025245675817132],[-0.16863530874252,-0.020563555881381,-0.07563503831625]],[[0.017093241214752,0.074970625340939,0.088528119027615],[0.010800291784108,0.0080902688205242,-0.068389974534512],[-0.14917123317719,-0.09607195109129,-0.044527430087328]],[[-0.027324153110385,-0.07673567533493,-0.031193474307656],[-0.086969844996929,0.078291535377502,0.0043963771313429],[-0.089654214680195,-0.022323828190565,0.0033323173411191]],[[-0.040023412555456,0.0087980153039098,-0.07147928327322],[-0.070885084569454,-0.030902490019798,0.014259695075452],[0.0051680016331375,-0.061986580491066,0.009845020249486]],[[-0.076254449784756,0.00041005431558006,-0.011647758074105],[0.014699545688927,-0.035877510905266,-0.11732632666826],[-0.042419295758009,0.047127261757851,-0.057201754301786]],[[-0.0070524648763239,0.058008264750242,-0.015324261039495],[0.0056783156469464,0.030022598803043,-0.060181919485331],[-0.07320324331522,0.026990368962288,-0.042256966233253]],[[-0.069705806672573,-0.08916825056076,0.1092182174325],[-0.035627201199532,0.0076077547855675,-0.0094864554703236],[0.054700061678886,0.008608209900558,0.011311670765281]],[[-0.10033193975687,0.030224157497287,0.058593384921551],[-0.069074653089046,0.067296408116817,0.054568156599998],[0.085305154323578,-0.032319229096174,0.049638502299786]],[[0.057480935007334,-0.04715758189559,-0.060334380716085],[0.061138436198235,-0.063230812549591,-0.070906467735767],[0.031914662569761,-0.034604627639055,-0.015356689691544]],[[-0.0041303625330329,-0.0069548091851175,-0.059253893792629],[-0.036291792988777,0.0032566604204476,-0.07201573997736],[0.022631132975221,0.025750566273928,0.033881109207869]],[[0.0026949988678098,-0.052544713020325,-0.017266800627112],[0.032060440629721,-0.010984306223691,0.082908496260643],[-0.017513550817966,-0.0089648896828294,-0.020508639514446]],[[0.055908013135195,-0.0089434077963233,-0.017545843496919],[-0.0072344001382589,-0.090248480439186,-0.008293280377984],[-0.095565497875214,-0.12570786476135,-0.10097762197256]],[[0.012954631820321,-0.041980151087046,0.070320777595043],[0.017435055226088,-0.0378128439188,-0.033157080411911],[-0.062318962067366,-0.0714266076684,-0.1038748845458]],[[-0.064532786607742,-0.1027100533247,-0.074614316225052],[-0.079460769891739,-0.093167349696159,0.00073047523619607],[0.056671407073736,-0.073044583201408,0.052514966577291]],[[0.083437517285347,-0.037258211523294,0.033144276589155],[0.01651837863028,0.072240352630615,0.11035600304604],[-0.022036226466298,0.040570229291916,-0.0010197049705312]],[[0.010341727174819,-0.028470788151026,-0.021560918539762],[-0.052862115204334,-0.012275740504265,0.018457220867276],[-0.10875660181046,-0.068923778831959,0.026591304689646]],[[0.010614113882184,-0.010270268656313,-0.022269546985626],[-0.011528480798006,0.05137762799859,0.099183902144432],[-0.035544868558645,0.088893711566925,0.023422289639711]],[[-0.00034551331191324,0.0017290671821684,-0.08174491673708],[0.078243225812912,0.062109492719173,-0.0027299635112286],[-0.030379122123122,0.025055218487978,0.0164804328233]],[[-0.042330093681812,-0.060540925711393,-0.15761804580688],[0.075877025723457,0.084116064012051,-0.14292107522488],[-0.0012171939015388,0.056637696921825,-0.045924905687571]],[[-0.04168638586998,-0.050018042325974,-0.08400235325098],[0.09467888623476,-0.0054721040651202,-0.039580564945936],[-0.039850551635027,0.063077598810196,0.025921735912561]],[[0.047412730753422,0.019388124346733,0.051914412528276],[0.07970417290926,-0.015477797947824,0.041507799178362],[0.023564489558339,-0.026945237070322,0.034901231527328]],[[0.017600525170565,0.09425837546587,0.011775170452893],[0.13994200527668,0.03726127743721,-0.021634375676513],[0.047496054321527,0.088728658854961,-0.086044505238533]],[[0.10978806763887,0.043439734727144,0.071072220802307],[0.11211552470922,0.022091168910265,-0.023072332143784],[0.13374689221382,-0.026900347322226,-0.12227511405945]],[[0.02215713635087,0.0032534373458475,0.027204643934965],[0.0082679223269224,-0.035528309643269,0.034750863909721],[0.016574705019593,-0.014815721660852,0.063872486352921]],[[0.071599654853344,0.092203460633755,0.018831985071301],[-0.051637005060911,0.037198439240456,0.015326873399317],[-0.04763850569725,0.050779186189175,0.0061033717356622]],[[0.010358457453549,-0.13947735726833,-0.13809645175934],[0.06797256320715,-0.045228909701109,-0.095550343394279],[0.13052688539028,0.0098902303725481,-0.076496109366417]],[[-0.02487338334322,-0.075225129723549,-0.085736475884914],[0.029737671837211,0.033192750066519,0.01205410528928],[-0.030306560918689,0.11376617103815,0.089902937412262]],[[-0.020939534530044,-0.058860544115305,-0.024857707321644],[-0.11662646383047,-0.022166637703776,-0.010464305989444],[-0.12529748678207,-0.040589421987534,0.03738696873188]],[[-0.049662854522467,-0.11592146754265,-0.074632450938225],[0.056029878556728,-0.096027471125126,-0.088595755398273],[-0.018826127052307,0.072299174964428,-0.15843963623047]],[[0.0015278522623703,0.022627074271441,0.020317019894719],[-0.029649315401912,-0.020541617646813,-0.070352420210838],[0.011509790085256,0.042011473327875,-0.041746594011784]],[[0.080527387559414,0.14878863096237,0.029114367440343],[0.021387990564108,-0.0299276933074,0.022072082385421],[-0.043079935014248,-0.049595337361097,-0.0060650892555714]],[[0.054101914167404,0.035109106451273,-0.073741406202316],[0.065465494990349,0.0031440632883459,-0.077964924275875],[-0.029321985319257,0.033280596137047,-0.016117814928293]],[[0.065006099641323,-0.10735814273357,-0.14753140509129],[0.13750828802586,0.095719911158085,-0.0035524794366211],[-0.076455809175968,-0.011895231902599,-0.042354449629784]],[[0.0065019628964365,-0.0043674544431269,0.12629020214081],[0.0047788503579795,-0.089935652911663,0.013177654705942],[-0.035915676504374,0.069790884852409,0.017278393730521]],[[0.014277318492532,0.0096589373424649,-0.018648684024811],[0.046073354780674,-0.027743589133024,-0.058475486934185],[0.092169791460037,-0.011628842912614,-0.048125773668289]],[[0.039473388344049,-0.025461746379733,0.071639314293861],[-0.10127523541451,-0.00016731533105485,0.071436390280724],[-0.098686143755913,-0.038526140153408,0.10804668068886]],[[0.015291788615286,-0.014927546493709,0.088271081447601],[0.047751095145941,0.06555800139904,0.030662341043353],[0.040188085287809,0.028360700234771,9.9920536740683e-05]],[[0.035958603024483,0.028133550658822,-0.11770553141832],[-0.0080232722684741,0.0033097537234426,-0.080933265388012],[-0.012397398240864,0.0029703604523093,0.013634172268212]],[[-0.0068456484004855,0.020966898649931,-0.20354497432709],[0.031009566038847,-0.059521477669477,-0.11410906165838],[-0.038275562226772,0.050800796598196,-0.026044849306345]],[[0.03857572004199,0.033351473510265,0.03354823589325],[0.10607009381056,0.056843504309654,0.0092168627306819],[0.084085874259472,0.056014485657215,0.031510356813669]],[[-0.10576477646828,-0.041599065065384,0.016630839556456],[-0.1038568764925,-0.1008033156395,-0.17996945977211],[0.063481442630291,0.072436712682247,-0.033328387886286]],[[-0.098503209650517,0.013961583375931,0.022726163268089],[-0.046619918197393,-0.040440279990435,-0.044368002563715],[-0.0093256877735257,0.028217371553183,-0.016461560502648]],[[-0.052442274987698,0.12552919983864,0.20971362292767],[-0.023832805454731,-0.12255153805017,-0.0038998234085739],[0.12863889336586,0.009074448607862,0.0020906911231577]],[[-0.060646295547485,0.047158110886812,-0.085035994648933],[0.013177843764424,0.059546507894993,-0.1308116465807],[-0.021817695349455,0.029929235577583,-0.062634207308292]],[[-0.074163183569908,0.067062869668007,-0.027971247211099],[-0.021569041535258,0.014375703409314,0.039126560091972],[-0.026499697938561,0.042526483535767,-0.028307432308793]],[[-0.037735056132078,0.020482216030359,-0.061442006379366],[-0.020220311358571,0.013779346831143,-0.0586768835783],[0.1703559756279,0.05634843185544,-0.036096557974815]],[[0.041340861469507,-0.030045244842768,-0.098497815430164],[0.10108425468206,0.019981173798442,-0.047640804201365],[0.01329343020916,0.019046764820814,0.059592287987471]],[[-0.056954704225063,0.067923419177532,0.01666365750134],[-0.10008392482996,-0.063910983502865,-0.017370000481606],[0.0048458063974977,-0.032914374023676,0.0049698743969202]],[[-0.011137626133859,-0.0020134998485446,0.044787280261517],[-0.094030238687992,-0.053057800978422,-0.0028755480889231],[0.012718900106847,0.078450076282024,0.033445995301008]],[[0.029159653931856,0.15663975477219,0.10910373926163],[-0.067586630582809,0.015334131196141,0.14656209945679],[-0.068916186690331,-0.0024895640090108,0.057884529232979]],[[0.018423918634653,-0.011044069193304,0.025231510400772],[-0.011065511964262,-0.053918432444334,-0.036855071783066],[0.025267783552408,0.026326576247811,0.027124097570777]],[[0.033082067966461,-0.048133805394173,-0.11382123082876],[0.014196390286088,-0.01980478130281,-0.02702727355063],[-0.017595993354917,0.0087533639743924,0.048940986394882]],[[0.015324299223721,0.0090406509116292,-0.082826614379883],[-0.0021257856860757,-0.010375262238085,0.07633001357317],[-0.070128172636032,-0.072679474949837,-0.15875762701035]],[[0.031051939353347,-0.097300194203854,-0.01257286593318],[0.011741871014237,-0.092905476689339,0.087339043617249],[0.02307871170342,-0.0095058055594563,-0.082132332026958]],[[0.030051352456212,-0.03699291869998,-0.092968627810478],[-0.056453045457602,0.011334618553519,-0.033666033297777],[-0.060261655598879,-0.017702631652355,0.026941357180476]]],[[[-0.029015535488725,0.026018943637609,-0.047161694616079],[-0.018793510273099,0.0079473005607724,0.12024392187595],[0.016980655491352,0.015451399609447,-0.13168840110302]],[[0.091239243745804,0.0019304513698444,0.044422961771488],[-0.045146662741899,0.005264166276902,0.020787503570318],[0.02375502884388,0.01126085780561,-0.041367590427399]],[[0.025439143180847,0.037202298641205,-0.044600713998079],[-0.091191664338112,-0.053104437887669,-0.080961041152477],[-0.0083066802471876,-0.089082509279251,-0.010291995480657]],[[-0.07225327193737,0.054073501378298,-0.00032408750848845],[0.050094820559025,-0.041815668344498,-0.072045259177685],[0.012293669395149,-0.015474332496524,0.031630080193281]],[[0.13073141872883,-0.0075002573430538,0.030145846307278],[0.08843407779932,0.013938180170953,0.021805120632052],[-0.089532345533371,-0.063533790409565,-0.051619406789541]],[[-0.046345360577106,0.031749952584505,0.068202190101147],[-0.022829044610262,0.050403047353029,0.10286271572113],[-0.058485873043537,-0.033684466034174,-0.049959927797318]],[[-0.050570666790009,0.050203736871481,0.05453472211957],[-0.088509544730186,-0.048248901963234,0.062903217971325],[0.047053404152393,-0.0060790814459324,-0.011952421627939]],[[0.022060016170144,0.045522831380367,-0.048562362790108],[-0.050265166908503,-0.05910138040781,-0.09748400747776],[-0.038718778640032,0.096458420157433,0.078315377235413]],[[0.15115724503994,-0.072844766080379,0.20711331069469],[-0.10547945648432,0.018178483471274,0.044184513390064],[-0.080478563904762,-0.061640109866858,-0.0274907220155]],[[-0.047405641525984,-0.057137347757816,-0.048511508852243],[0.05407578125596,-0.010380629450083,0.048600733280182],[0.0028109203558415,-0.055549427866936,0.0023662897292525]],[[0.0063290507532656,-0.046757005155087,0.033993728458881],[-0.067099891602993,0.0088339075446129,0.063381217420101],[-0.063356265425682,-0.064098007977009,0.028338110074401]],[[0.014680896885693,0.056437660008669,-0.051344726234674],[0.0028935428708792,0.015754459425807,0.033628311008215],[-0.039089623838663,-0.010002505965531,0.05276433005929]],[[-0.019677625969052,-0.0086864158511162,-0.10639539361],[-0.1250826716423,-0.032617226243019,0.0045401146635413],[0.03845277056098,-7.3085466283374e-06,-0.0074328565970063]],[[-0.023713348433375,0.019699038937688,0.035460866987705],[-0.059791907668114,-0.0096200378611684,-0.0430688560009],[0.070716090500355,0.0047888187691569,-0.030187148600817]],[[-0.085753038525581,-0.010241385549307,0.028815917670727],[-0.072303533554077,-0.049320325255394,0.12322858721018],[0.0065612872131169,-0.049848094582558,-0.022346204146743]],[[0.042607601732016,-0.050273112952709,0.0085257077589631],[0.082485057413578,-0.069644547998905,0.0039968215860426],[-0.055069141089916,0.01937173679471,-0.12156745791435]],[[-0.012426218949258,-0.14878363907337,-0.022350609302521],[0.0041742157191038,0.081166431307793,-0.0049009402282536],[0.0013251876225695,-0.063575357198715,0.062889762222767]],[[-0.02098661288619,0.038811720907688,-0.011908064596355],[0.14967454969883,0.072533540427685,0.038992121815681],[0.076393909752369,0.03043831512332,-0.054115042090416]],[[0.0058020609430969,-0.051818501204252,-0.045536953955889],[0.0035541863180697,0.032946310937405,0.0092551652342081],[0.030188588425517,0.045707449316978,-0.046062476933002]],[[-0.032833509147167,-0.046438030898571,0.021682158112526],[-0.059749476611614,-0.024181287735701,0.089240454137325],[0.045710153877735,0.018950220197439,0.039510767906904]],[[-0.0074075018055737,-0.035309940576553,-0.023470195010304],[-0.030458958819509,-0.085755050182343,-0.029725151136518],[0.005861503072083,-0.029980881139636,-0.047752279788256]],[[-0.086984425783157,-0.16290171444416,-0.078115545213223],[0.0050674127414823,0.085285022854805,-0.067700140178204],[-0.0042655533179641,-0.046328842639923,0.10482225567102]],[[0.025163793936372,0.035115960985422,0.0091730048879981],[-0.092937253415585,-0.029792711138725,0.07094931602478],[-0.030035743489861,0.068404227495193,0.088082924485207]],[[0.018416976556182,-0.0044043278321624,-0.016571115702391],[0.0093729514628649,0.12261226773262,0.074351496994495],[0.086874417960644,0.049171715974808,-0.022796638309956]],[[-0.02110867574811,-0.1483169645071,-0.07135821133852],[-0.01512733194977,0.011130633763969,0.063489332795143],[-0.00097392132738605,-0.012457810342312,0.037532575428486]],[[0.018651252612472,0.032854210585356,0.016577627509832],[0.034988403320312,0.037432570010424,0.019705621525645],[0.0035292007960379,-0.022778803482652,-0.038432095199823]],[[0.043885480612516,0.10081646591425,0.039312053471804],[0.062141105532646,0.12017995864153,0.03302589058876],[0.0082733612507582,0.036843303591013,-0.041896156966686]],[[0.015823487192392,-0.098438464105129,0.037944555282593],[0.08358958363533,0.014445842243731,0.019693803042173],[0.02807442098856,-0.066148035228252,-0.03846313431859]],[[0.069786950945854,0.02535848133266,0.061979055404663],[-0.057032003998756,-0.0069784736260772,-0.020350620150566],[0.1229463070631,0.029298309236765,-0.080842979252338]],[[0.0017075536306947,-0.070282705128193,0.093696966767311],[0.012402689084411,-0.093868136405945,0.097659021615982],[-0.041465308517218,-0.0078079369850457,0.057527832686901]],[[0.09786044806242,0.04841935634613,-0.099957428872585],[0.011096304282546,-0.043597761541605,0.026517702266574],[0.053894802927971,0.074197299778461,0.0039977901615202]],[[-0.03530540689826,-0.0016966458642855,-0.011679749004543],[-0.017451249063015,0.039467129856348,-0.04024550691247],[0.028249632567167,0.00010434565774631,-0.068946354091167]],[[-0.053325701504946,0.032459907233715,0.036704979836941],[-0.043570812791586,0.014794752933085,0.0021765476558357],[-0.079567991197109,-0.016968157142401,0.072851441800594]],[[-0.0034785885363817,0.0073743117973208,-0.0091043189167976],[-0.10522290319204,-0.051318302750587,-0.0056334948167205],[-0.040513057261705,-0.0021297482308,0.0019490685081109]],[[-0.078893028199673,-0.052652165293694,0.088804751634598],[0.088325366377831,0.0025731571950018,-0.023635365068913],[-0.010973074473441,-0.083311960101128,-0.050659921020269]],[[0.03281082957983,0.028303066268563,-0.088434271514416],[-0.017922954633832,0.035271368920803,0.015006536617875],[-0.00070039631100371,0.020939221605659,0.056644130498171]],[[0.020137913525105,-0.077187448740005,-0.12310130149126],[-0.026139605790377,0.066827274858952,-0.024553403258324],[0.063075244426727,0.05637115240097,-0.064146280288696]],[[0.10861077904701,0.012383260764182,0.065340541303158],[0.0019523967057467,-0.022966969758272,0.057745683938265],[-0.034310657531023,-0.04652326181531,0.014764499850571]],[[-0.0021633510477841,-0.031819932162762,0.0057184910401702],[-0.01146843098104,0.0078878300264478,0.035728689283133],[-0.033044703304768,-0.067386105656624,-0.071879044175148]],[[-0.023672088980675,-0.071228727698326,-0.12442989647388],[0.024309765547514,-0.0092455390840769,-0.0087525006383657],[-0.0079435585066676,-0.00010715340613388,0.067750692367554]],[[-0.099798485636711,0.0019151053857058,-0.066988185048103],[-0.013770822435617,-0.024204650893807,0.051816765218973],[0.1144135221839,0.0016185757704079,0.026354730129242]],[[-0.047782622277737,0.010784828104079,0.060269925743341],[-0.091031640768051,0.04531030729413,0.19055114686489],[-0.024618158116937,-0.019458940252662,0.035844717174768]],[[-0.065290160477161,0.020379077643156,0.025411119684577],[0.012139002792537,-0.057674799114466,-0.071308851242065],[0.042485915124416,0.02900848723948,0.089429564774036]],[[-0.080500714480877,0.011220633052289,0.029300320893526],[0.002897571073845,0.023466110229492,-0.057451691478491],[0.051332615315914,0.0093158818781376,-0.042791966348886]],[[-0.092703454196453,0.060399156063795,0.039170492440462],[0.060121834278107,0.066135331988335,0.041747890412807],[-0.047963064163923,-0.043971810489893,0.055270865559578]],[[0.0026431882288307,0.031789403408766,-0.046003092080355],[0.06089149042964,-0.018034175038338,-0.0022648740559816],[0.1125028654933,-0.06955648213625,-0.038405153900385]],[[-0.050342913717031,0.06226422637701,0.085878700017929],[-0.019599724560976,-0.11699875444174,-0.013371950946748],[0.041453905403614,-0.078113168478012,0.0070306770503521]],[[0.10529457032681,0.019240392372012,-0.00053214031504467],[-0.094621501863003,0.0056458613835275,0.15306724607944],[-0.062513433396816,-0.07826790958643,-0.01652666926384]],[[-0.010410369373858,0.0015860921703279,0.0021044772583991],[0.011594852432609,-0.01523915771395,0.036312431097031],[0.050661284476519,-0.00027153512928635,0.0081097362563014]],[[-0.025051958858967,-0.04237412288785,0.0059834462590516],[0.094885140657425,-0.00089422869496047,-0.13974747061729],[-0.020787535235286,-0.06324890255928,-0.041988722980022]],[[-0.0536919683218,-0.038259115070105,0.09747813642025],[0.011014022864401,-0.045929487794638,-0.052855350077152],[0.017034688964486,-0.057459652423859,0.020499389618635]],[[-0.010662499815226,0.12400513142347,0.053599216043949],[0.020539941266179,-0.044770635664463,0.027176955714822],[0.11315031349659,0.17253971099854,0.020192256197333]],[[0.058912094682455,-0.018465613946319,-0.024071861058474],[0.048620462417603,-0.042231798171997,-0.10896188020706],[0.00076753878965974,0.0076681841164827,-0.082743801176548]],[[-0.0063209254294634,-0.064051702618599,-0.047148168087006],[-0.019211485981941,0.059159263968468,0.10342950373888],[-0.042296852916479,0.04784806445241,0.072163194417953]],[[0.062586575746536,0.018290629610419,0.037239536643028],[0.090004280209541,-0.05404257029295,-0.052336033433676],[0.034844476729631,0.069719158113003,-0.036924231797457]],[[0.00024524849141017,0.086322113871574,-0.0011675891000777],[0.02691225707531,-0.005809327121824,0.010164032690227],[-0.045534182339907,-0.0067045306786895,-0.0089936694130301]],[[-0.097535476088524,0.036042675375938,0.051584240049124],[0.069470077753067,0.031639520078897,-0.027733730152249],[0.10442186892033,0.084723845124245,-0.045149683952332]],[[0.0019618729129434,-0.0020330804400146,-0.044621702283621],[-0.0016564845573157,0.070826292037964,0.078428693115711],[-0.1507465839386,-0.12476658076048,-0.038923602551222]],[[0.041464287787676,0.033617168664932,0.010178583674133],[0.050449553877115,0.01960314065218,0.066724464297295],[-0.020127207040787,0.050879504531622,0.055858962237835]],[[0.038139253854752,0.033665735274553,-0.017770644277334],[0.025131830945611,-0.0056891483254731,-0.057172071188688],[-0.018963821232319,-0.013538978993893,0.039773900061846]],[[-0.093733876943588,-0.0017470788443461,-0.017792822793126],[0.0034346783068031,0.023201184347272,0.0099378554150462],[-0.023629665374756,-0.010634744539857,-0.044096622616053]],[[0.032560348510742,-0.027627030387521,0.0043538147583604],[0.069066248834133,0.026688158512115,-0.0028571665752679],[-0.071752324700356,0.083421722054482,-0.078193008899689]],[[-0.015933055430651,0.01487535610795,-0.045152649283409],[-0.072234489023685,-0.060455858707428,0.0088378256186843],[0.05135141313076,0.022988893091679,0.022863756865263]],[[0.066788002848625,0.028414668515325,0.026878744363785],[0.076955117285252,0.022891793400049,0.012973693199456],[-0.095682956278324,-0.081396415829659,-0.013328551314771]]],[[[-0.048752188682556,-0.07412938773632,0.066858991980553],[-0.052975602447987,-0.044688578695059,-0.0055766832083464],[0.049724917858839,-0.015938488766551,-0.12122505158186]],[[0.023251598700881,-0.037784244865179,-0.042808875441551],[-0.09986923635006,0.049279980361462,-0.023156920447946],[0.00046062617911957,0.080013453960419,0.019482953473926]],[[0.026958305388689,-0.046326439827681,-0.062008760869503],[0.036562588065863,-0.030489539727569,-0.16176424920559],[0.018955947831273,0.050251394510269,-0.049174897372723]],[[-0.051056694239378,0.027903012931347,-0.014503951184452],[0.0067667085677385,-0.02644925378263,0.036652039736509],[-0.022199459373951,-0.076607130467892,0.055579330772161]],[[0.0075098918750882,-0.17312651872635,-0.02844275161624],[0.093661390244961,0.059502609074116,0.052573006600142],[-0.019250482320786,0.064276523888111,0.016343327239156]],[[-0.017396437004209,0.10137093067169,-0.026376012712717],[0.092665642499924,-0.035916194319725,-0.014329131692648],[-0.044116664677858,0.028845861554146,-0.060056209564209]],[[0.041541922837496,0.075687356293201,0.022158743813634],[0.0078033278696239,-0.015341756865382,-0.0025757369585335],[-0.0081365332007408,-0.014409717172384,-0.052225690335035]],[[-0.04154397547245,-0.0057674325071275,-0.036257725208998],[0.011657287366688,-0.050294365733862,0.046147976070642],[-0.032734509557486,-0.023394046351314,-0.023121882230043]],[[-0.03594945371151,-0.062026862055063,0.022046260535717],[-0.019673932343721,-0.10094436258078,0.055307131260633],[0.039916258305311,-0.015904657542706,-0.046532772481441]],[[0.085893400013447,-0.065063752233982,0.0083447331562638],[0.0022663623094559,0.06884104013443,0.0365633033216],[-0.025218993425369,-0.016690665856004,-0.1218491718173]],[[0.037541434168816,0.039169494062662,0.019075153395534],[0.026866877451539,0.020314553752542,-0.0022757791448385],[0.020476130768657,-0.044864110648632,0.022324940189719]],[[0.08319479227066,0.082838959991932,-0.070322334766388],[-0.12845130264759,-0.05073431879282,-0.084921509027481],[-0.01844996213913,-0.02722691744566,-0.013563388958573]],[[0.054183222353458,-0.015886710956693,-0.038201011717319],[0.021694477647543,-0.051519066095352,-0.03525498509407],[-0.039178613573313,-0.080207966268063,-0.032326117157936]],[[0.10184814035892,0.0045282072387636,-0.030783522874117],[0.031399141997099,0.028297733515501,-0.0037025979254395],[0.054481141269207,-0.048898655921221,0.08914041519165]],[[-0.068761825561523,0.044427860528231,-0.0041518043726683],[-0.059069193899632,-0.041048400104046,-0.011790399439633],[0.017116650938988,-0.083258964121342,0.0025920839980245]],[[0.090161740779877,0.096712954342365,-0.027586054056883],[0.019252430647612,-0.00065109675051644,0.024407947435975],[-0.00029916301718913,0.10228028893471,-0.0033169493544847]],[[-0.012105396017432,0.02170018479228,-0.19920311868191],[0.091945461928844,0.0047157858498394,0.0214440561831],[0.019222209230065,-0.094377852976322,-0.029260154813528]],[[0.088999733328819,0.022714480757713,0.058392126113176],[0.088990665972233,-0.0082902917638421,0.012358662672341],[-0.012063072994351,-0.044292859733105,0.030364377424121]],[[0.026055440306664,-0.077394358813763,-0.048203937709332],[0.020205266773701,0.080214776098728,-0.037875082343817],[0.024836568161845,0.020578848198056,-0.071189649403095]],[[0.0070961746387184,0.012387418188155,-0.0032849120907485],[0.04018522426486,0.0094748102128506,-0.078212805092335],[0.030992902815342,0.011887145228684,0.019091440364718]],[[0.036823011934757,-0.058332610875368,0.049890175461769],[-0.0077551901340485,0.07042084634304,0.01931681483984],[0.065511643886566,0.021497642621398,0.032819204032421]],[[0.0014069296885282,0.014417759142816,-0.013641710393131],[-0.0013531260192394,-0.11404937505722,-0.020618768408895],[0.066282019019127,0.095233716070652,-0.094831876456738]],[[0.074997626245022,0.052590258419514,0.068230554461479],[-0.022486761212349,-0.16763027012348,-0.046825930476189],[-0.035452745854855,-0.10903782397509,-0.055841557681561]],[[0.091564528644085,0.074097260832787,0.065036699175835],[0.0203986633569,-0.074410617351532,0.045131642371416],[0.054046351462603,0.058177914470434,0.11919145286083]],[[-0.047886870801449,0.031855579465628,-0.043836608529091],[-0.029433431103826,-0.017776396125555,-0.061979457736015],[0.010661282576621,0.057855144143105,0.014707688242197]],[[0.018879989162087,0.032569445669651,-0.023252109065652],[-0.010888352058828,0.023691892623901,0.054367370903492],[-0.01805716380477,0.050576031208038,0.0026599415577948]],[[0.080564334988594,0.040418051183224,0.024529127404094],[-0.036037467420101,-0.019747618585825,0.058539483696222],[-0.11065106838942,-0.079928912222385,0.058814242482185]],[[0.039884991943836,-0.0037697548978031,-0.044851664453745],[0.031661558896303,-0.0027786283753812,0.060612633824348],[-0.0028058683965355,0.031015766784549,0.024156503379345]],[[-0.14078141748905,0.12620887160301,0.043142233043909],[0.0069215474650264,0.050530459731817,-0.082188695669174],[0.0019640976097435,-0.028863951563835,0.024079564958811]],[[-0.033331219106913,-0.034833867102861,-0.01567804440856],[-0.056964099407196,-0.0081938719376922,0.0046982993371785],[0.010076264850795,-0.045334283262491,0.02499713934958]],[[-0.059550955891609,0.009536387398839,-0.03696521744132],[-0.081405006349087,-0.11017750203609,-0.061785284429789],[-0.02314049936831,-0.031794100999832,-0.0035074157640338]],[[-0.027980819344521,-0.11099975556135,0.03337137401104],[0.011462419293821,-0.0072001479566097,0.088768735527992],[-0.011364622041583,-0.025777768343687,-0.035235475748777]],[[-0.056037459522486,0.025411801412702,-0.00041663774754852],[0.027852442115545,0.020456321537495,0.040817387402058],[0.010545223020017,-0.068061046302319,-0.024057179689407]],[[0.070882461965084,0.011397797614336,-0.044794924557209],[-0.0093448916450143,0.033301506191492,0.0089263860136271],[0.03293839469552,-0.076516434550285,0.0068065267987549]],[[0.083880200982094,0.031736638396978,0.04519060626626],[0.072745874524117,0.068053714931011,-0.0076338886283338],[-0.0144601771608,-0.019758524373174,-0.024765282869339]],[[-0.023846849799156,0.04180958494544,-0.028902707621455],[-0.0093212155625224,-0.090487688779831,0.053075093775988],[-0.00088169844821095,-0.012616422958672,0.016806213185191]],[[0.024198528379202,0.010207754559815,0.027136025950313],[-0.066314645111561,0.043184399604797,-0.12736143171787],[-0.014282829128206,0.025471968576312,-0.019399402663112]],[[-0.054183080792427,0.032463509589434,0.032589100301266],[-0.027856769040227,0.036413811147213,0.0027186146471649],[-0.038795657455921,0.0036622250918299,-0.1527461707592]],[[-0.083521462976933,-0.13680571317673,-0.11640243977308],[-0.030131170526147,0.049371238797903,-0.099227838218212],[0.041098054498434,0.018644699826837,-0.0062391264364123]],[[0.075329840183258,-0.042910918593407,-0.037815678864717],[-0.04263349249959,0.04027907922864,0.031028380617499],[0.075582005083561,-0.075891926884651,-0.01443482004106]],[[0.025271710008383,0.040924113243818,0.013955830596387],[0.046872105449438,0.09879719465971,0.11407811939716],[-0.0083741238340735,-0.028898803517222,0.034393072128296]],[[0.037570986896753,-0.017676662653685,-0.0057369824498892],[0.047873418778181,-0.10110381990671,-0.0079437345266342],[0.036709625273943,-0.070206567645073,-0.07253535836935]],[[-0.088666632771492,-0.056866560131311,0.030665585771203],[0.051747653633356,0.080699317157269,0.041673295199871],[0.0047514755278826,0.0532539896667,-0.0059612235054374]],[[-0.096347384154797,0.0056406226940453,-0.12998701632023],[-0.05693656951189,-0.044272530823946,-0.003376278327778],[0.060543049126863,0.025222055613995,-0.045220818370581]],[[-0.035614516586065,0.13005790114403,0.054779715836048],[-0.042330160737038,-0.0032022802624851,0.084752589464188],[0.0066980640403926,-0.038678504526615,0.040878500789404]],[[-0.063115574419498,0.0097615495324135,-0.066792890429497],[0.036836817860603,-0.017947632819414,-0.081159316003323],[0.045881770551205,0.0039017768576741,-0.018728092312813]],[[-0.065851777791977,0.017562288790941,0.0050226277671754],[-0.042360994964838,-0.095784157514572,-0.12064915895462],[0.022073030471802,-0.075776688754559,0.033374574035406]],[[0.082310780882835,-0.02390824817121,0.013798612169921],[-0.096842177212238,-0.0332973562181,-0.05469086393714],[0.071194410324097,-0.013886202126741,-0.052646432071924]],[[-0.021850926801562,0.043271329253912,-0.034481197595596],[0.0022040286567062,-0.0087101925164461,-0.05329717695713],[-0.058369435369968,-0.060202460736036,0.0023160798009485]],[[0.066124431788921,0.076756834983826,0.026814855635166],[-0.02270814217627,0.014074828475714,0.14085024595261],[0.064749859273434,0.01022229809314,0.01761264167726]],[[-0.005107135977596,0.056426528841257,0.049391720443964],[0.030147429555655,0.088191039860249,0.030614752322435],[-0.034238986670971,-0.11825929582119,-0.01381416618824]],[[-0.0068465028889477,0.067797981202602,0.073580197989941],[0.0064857415854931,0.13091644644737,0.14283539354801],[0.069130972027779,0.04574416205287,0.09373489767313]],[[0.0079065589234233,0.023489536717534,-0.071698792278767],[-0.059355527162552,-0.030377689749002,-0.05234183371067],[0.03779274597764,0.04568675160408,-0.067159958183765]],[[0.13665008544922,0.0036454347427934,0.0026082987897098],[-0.055459246039391,-0.036801364272833,-0.01333306171],[-0.07602072507143,-0.095068231225014,0.038768172264099]],[[0.05333311855793,0.0092160487547517,0.0096885580569506],[0.089616008102894,0.058441858738661,0.067583754658699],[0.062326207756996,0.0071136616170406,0.074884742498398]],[[0.017902221530676,0.022107629105449,-0.055509082973003],[0.016604488715529,-0.0880421474576,-0.039925348013639],[-0.086830854415894,-0.044150061905384,0.057225663214922]],[[-0.060328654944897,0.19527125358582,-0.0039410828612745],[0.049972951412201,0.054418958723545,-0.021735530346632],[0.0042668911628425,0.05510563775897,-0.031857386231422]],[[-0.00037821076693945,0.02778997272253,0.045297488570213],[0.0040035881102085,0.020129492506385,-0.044482160359621],[-0.10085258632898,0.011271816678345,-0.040690701454878]],[[0.08726142346859,-2.7426343876868e-05,0.057550102472305],[0.04880291223526,0.05152190476656,0.042821902781725],[0.099297970533371,0.064118154346943,0.050170376896858]],[[0.014392961747944,-0.021741058677435,-0.016920333728194],[-0.042532794177532,0.0074973716400564,-0.0039688306860626],[-0.0048423577100039,0.054737880825996,0.034131806343794]],[[-0.063831366598606,-0.003875574329868,0.036091018468142],[0.024618456140161,-0.029667856171727,-0.076545804738998],[-0.031665965914726,-0.025426344946027,-0.019360857084394]],[[-0.0080673089250922,0.021226212382317,-0.0082945572212338],[0.040253721177578,0.014060457237065,0.022826993837953],[-0.024295892566442,0.046450842171907,-0.042102359235287]],[[-0.037401560693979,-0.030924016609788,-0.0051510808989406],[0.033277325332165,0.045184951275587,0.0032329724635929],[-0.052550032734871,-0.048102412372828,-0.01241950597614]],[[0.047326844185591,-0.05293820425868,-0.014959007501602],[0.0052683679386973,0.052920177578926,-0.013702691532671],[-0.032145328819752,-0.039919521659613,-0.016440879553556]]],[[[0.040344186127186,-0.033439159393311,-0.047339424490929],[-0.028176700696349,0.068473950028419,0.0092314444482327],[0.19869802892208,0.14173437654972,0.11634146422148]],[[0.044872060418129,-0.054458722472191,-0.12221460044384],[-0.051415577530861,0.095755651593208,9.2918635345995e-05],[-0.093730084598064,0.02796333655715,-0.047011576592922]],[[-0.0017256989376619,-0.095322765409946,-0.037170153111219],[-0.019857479259372,-0.035502038896084,-0.0047484897077084],[0.046457976102829,0.055515803396702,0.048541251569986]],[[-0.022718055173755,0.014717464335263,0.01750560477376],[-0.0022775125689805,-0.020908446982503,-0.010897051542997],[0.014845271594822,0.07704022526741,-0.068519771099091]],[[-0.057214111089706,0.0031723957508802,0.090862475335598],[0.026195101439953,-0.062416054308414,0.059529792517424],[0.044941950589418,-0.049873739480972,0.034973926842213]],[[0.04020357131958,-0.076499350368977,-0.01661660708487],[-0.041355516761541,0.017190324142575,0.0018452436197549],[0.065834656357765,-0.038419462740421,-0.022765941917896]],[[-0.084716156125069,-0.055970747023821,-0.027489265426993],[0.05064282566309,0.018578052520752,-0.065387472510338],[0.053243517875671,-0.027488965541124,-0.026530385017395]],[[0.020768236368895,0.030360639095306,0.12832589447498],[-0.032081827521324,0.0010785890044644,-0.035790003836155],[-0.014628857374191,0.055711977183819,0.076799601316452]],[[-0.067645184695721,-0.0059913508594036,0.089198403060436],[0.016360104084015,-0.0031719175167382,-0.021468257531524],[0.097144693136215,-0.051397066563368,-0.018848353996873]],[[0.087317928671837,0.025338323786855,0.046235918998718],[-0.0036276008468121,0.010371211916208,-0.090259075164795],[0.019822716712952,-0.071801416575909,-0.0072863036766648]],[[-0.02640619315207,0.083691544830799,-0.059478189796209],[-0.019440645352006,0.024050870910287,-0.033282615244389],[0.086203351616859,0.068421758711338,0.03407671675086]],[[0.02207837626338,-0.014938313513994,-0.10572355240583],[-0.072010338306427,-0.064573779702187,0.016957275569439],[-0.036573976278305,-0.043639969080687,0.047758024185896]],[[-0.037983540445566,-0.11623377352953,0.065368711948395],[-0.028639126569033,-0.061103265732527,0.0041851964779198],[0.23089398443699,0.16061462461948,0.063088066875935]],[[0.021535504609346,-0.013663240708411,-0.093872353434563],[0.023763574659824,-0.014802910387516,-0.044810749590397],[-0.01211962569505,-0.00074920407496393,0.0049364785663784]],[[-0.053041987121105,-0.030589589849114,-0.030150279402733],[0.029058776795864,-0.045135952532291,0.03777826949954],[-0.004954228643328,-0.004736328497529,0.021599553525448]],[[0.076055876910686,0.061686173081398,0.087291575968266],[-0.084037527441978,-0.017952116206288,-0.0092254662886262],[-0.069663800299168,0.0076754726469517,0.051405433565378]],[[-0.035683296620846,0.0034525108058006,-0.028935870155692],[-0.036929089576006,-0.0053125433623791,-0.057144675403833],[-0.0034881727769971,-0.043378837406635,0.032879617065191]],[[-0.040958307683468,0.04431277513504,-0.073599368333817],[-0.017483610659838,0.014218394644558,-0.020070502534509],[-0.03853676840663,0.092678353190422,0.089658044278622]],[[-0.085560195147991,0.08785118162632,0.002501105889678],[0.024382362142205,-0.018071072176099,-0.029840042814612],[-0.044578589498997,0.073290899395943,-0.0098836040124297]],[[0.025616912171245,-0.042319860309362,-0.046225778758526],[-0.040705263614655,0.020180253311992,-0.028820490464568],[0.042281307280064,0.0028537753969431,0.065293975174427]],[[0.030069215223193,-0.025503383949399,0.049511056393385],[-0.021733932197094,-0.11612900346518,0.016895838081837],[0.010300602763891,0.078413046896458,-0.050687458366156]],[[-0.029314815998077,0.025960057973862,0.14327372610569],[-0.14990700781345,0.053631495684385,-0.0082092899829149],[-0.11872543394566,-0.013052375987172,-0.079069994390011]],[[-0.0088487071916461,0.085463024675846,-0.088542401790619],[-0.042158093303442,-0.071229800581932,0.015403022989631],[-0.0700638666749,-0.1064909696579,-0.0071452278643847]],[[0.15347266197205,-0.024124950170517,0.123381100595],[0.10136418789625,0.023385018110275,0.17089040577412],[0.0039958138950169,0.043083231896162,0.040974117815495]],[[0.016161747276783,-0.078910902142525,0.015327069908381],[-0.067095831036568,-0.052577245980501,-0.077366396784782],[0.062551639974117,0.070085011422634,-0.12623099982738]],[[0.0038435230962932,-0.02456078492105,0.015634465962648],[0.013513501733541,0.022849576547742,-0.033463589847088],[0.040995787829161,0.039831813424826,-0.015686821192503]],[[-0.051365353167057,-0.017632659524679,0.012386228889227],[-0.00030361680546775,0.14632923901081,0.038452360779047],[0.014363765716553,0.024456903338432,0.061837274581194]],[[-0.080499283969402,0.0091297728940845,-0.026853151619434],[0.03140752017498,-0.099070765078068,-0.061290297657251],[0.036522015929222,-0.043720308691263,-0.017229961231351]],[[-0.028059564530849,0.0326136238873,0.017671752721071],[0.031004827469587,0.078289031982422,-0.11190667748451],[-0.0062264362350106,-0.042502202093601,0.03741492703557]],[[-0.11458745598793,-0.090635493397713,0.18639132380486],[-0.077844977378845,0.076120190322399,0.069426283240318],[-0.090078793466091,0.027222814038396,0.051649209111929]],[[0.038204748183489,0.0095999464392662,0.095409356057644],[0.016151940450072,0.062190372496843,-0.029559822753072],[-0.001976307714358,0.037168763577938,0.06269896030426]],[[-0.039978057146072,-0.15799926221371,0.10424523800611],[-0.019342442974448,-0.018319677561522,0.037009168416262],[0.007417272310704,-0.29658845067024,-0.097998656332493]],[[0.0087066190317273,-0.0029981860425323,0.048031367361546],[0.0085239624604583,-0.0017954063368961,-0.046414509415627],[-0.050824355334044,-0.022002585232258,0.049812432378531]],[[-0.0342056453228,-0.079211883246899,-0.14628741145134],[-0.012295647524297,-0.040763132274151,0.06080025061965],[0.15665479004383,0.072723023593426,-0.049174845218658]],[[0.0042659281753004,-0.13856318593025,-0.087083570659161],[0.033114437013865,-0.16656769812107,-0.033649872988462],[-0.029370009899139,-0.080820232629776,-0.14215709269047]],[[0.014881455339491,-0.039134562015533,0.037661951035261],[-0.086970500648022,-0.048010800033808,-0.051849596202374],[-0.038608264178038,0.063837483525276,-0.0085885282605886]],[[-0.063686266541481,-0.24598222970963,-0.08463954180479],[0.016269870102406,-0.029449317604303,0.004483918659389],[0.029756844043732,-0.11161737143993,-0.016719309613109]],[[-0.043726723641157,-0.05608993023634,0.013590269722044],[0.026371665298939,0.0017953105270863,0.05687565356493],[-0.024064667522907,-0.02354053966701,-0.035992011427879]],[[0.086368307471275,0.11786019057035,-0.11535658687353],[0.015988828614354,-0.1156809926033,-0.083805814385414],[-0.047132689505816,-0.081925682723522,-0.028843317180872]],[[-0.048238843679428,-0.029821462929249,0.031563717871904],[-0.017646364867687,-0.013365335762501,-0.067524246871471],[0.01783767528832,0.061520613729954,-0.018466537818313]],[[0.14217576384544,0.056002408266068,0.0046191508881748],[-0.019550090655684,-0.062841229140759,-0.04732458665967],[0.0028140738140792,-0.048567473888397,0.082260370254517]],[[-0.0072301421314478,0.09095424413681,0.1055024266243],[-0.11078394949436,-0.034370265901089,-0.023876126855612],[-0.049153629690409,0.1123058795929,-0.13731327652931]],[[0.049300398677588,-0.00093839014880359,0.045780777931213],[-0.011145630851388,-0.015815561637282,0.049451142549515],[0.1603484749794,0.085710056126118,0.10436091572046]],[[-0.11618645489216,-0.031450808048248,-0.031023737043142],[0.028511807322502,0.04986610263586,0.020372200757265],[0.00036160188028589,0.0079006152227521,-0.0029680300503969]],[[-0.025237735360861,-0.044916082173586,0.02535717189312],[-0.052057892084122,-0.00099907896947116,-0.078895933926105],[-0.051724225282669,-0.17199458181858,0.017081923782825]],[[-0.071850039064884,0.040757570415735,-0.034086883068085],[-0.00152353127487,-0.049794357270002,0.019842755049467],[0.048586633056402,-0.024755477905273,-0.03775043040514]],[[-0.02805214934051,-0.017018344253302,-0.0089555913582444],[0.021709283813834,-0.011125149205327,-0.014404106885195],[0.020105056464672,0.052434127777815,0.005828385706991]],[[-0.023639518767595,0.026160908862948,-0.10925009101629],[-0.019594078883529,0.021554812788963,-0.045935574918985],[-0.036960702389479,-0.14581127464771,-0.020386030897498]],[[-0.04673034325242,-0.027213478460908,-0.051912896335125],[-0.020979916676879,-0.037201974540949,-0.0012019334826618],[-0.059618052095175,-0.093356661498547,-0.042654599994421]],[[-0.0096870418637991,-0.0070230728015304,-0.10225495696068],[-0.0082213301211596,0.026679357513785,-0.02592583373189],[-0.07657366245985,-0.032043840736151,-0.032556295394897]],[[-0.0074451211839914,0.048173278570175,-0.0082073025405407],[-0.027856927365065,0.018414663150907,-0.047176111489534],[0.065428920090199,-0.061585746705532,0.066186644136906]],[[-0.023222107440233,0.097345344722271,0.060283046215773],[0.098839096724987,0.045614011585712,-0.074466571211815],[0.042490687221289,-0.13137122988701,0.075546130537987]],[[-0.036313764750957,0.04741395264864,0.020346770063043],[0.026279469951987,0.037196859717369,0.038620259612799],[-0.0011357521871105,-0.014901696704328,0.010848741978407]],[[0.083510227501392,-0.075831905007362,0.0099727129563689],[-0.0092852870002389,-0.045063797384501,0.063811957836151],[0.0049672164022923,0.060664921998978,-0.038356009870768]],[[0.060758035629988,-0.10514571517706,-0.043898724019527],[-0.03514039516449,-0.0023802814539522,-0.0072945337742567],[-0.11064542084932,0.036290980875492,-0.086855687201023]],[[-0.014923052862287,-0.024922309443355,0.045230973511934],[0.033913757652044,0.007112780585885,-0.031611740589142],[0.02368844859302,-0.064380317926407,0.045134220272303]],[[-0.070376105606556,-0.16819049417973,-0.068047598004341],[0.0055334162898362,-0.0015152652049437,0.00236551836133],[-0.090596154332161,0.050409950315952,0.15276548266411]],[[-0.0069188172928989,-0.0017336494056508,-0.19973149895668],[-0.058077480643988,0.011097112670541,-0.12629981338978],[-0.048948053270578,-0.016991646960378,-0.11359065026045]],[[-0.10472451150417,-0.026505803689361,0.090362221002579],[-0.11507285386324,0.079000823199749,0.077027134597301],[-0.073985852301121,0.086735516786575,0.015318781137466]],[[-0.0034554523881525,0.052638810127974,0.022330423817039],[-0.0081618502736092,-0.045409642159939,0.02168831974268],[0.014938697218895,-0.018576249480247,-0.044469479471445]],[[-0.030887069180608,0.047184981405735,-0.035629343241453],[0.044499408453703,-0.053105976432562,0.052813317626715],[-0.10050680488348,-0.16757017374039,-0.025294499471784]],[[0.067597828805447,-0.05347553268075,0.097926653921604],[0.046262491494417,-0.073821723461151,0.061136923730373],[-0.047701697796583,-0.046307228505611,-0.075042352080345]],[[-0.0064259208738804,-0.028144543990493,-0.0015365341678262],[0.058108974248171,0.0083218682557344,0.027287401258945],[0.0090432651340961,-0.18109427392483,0.034789834171534]],[[0.06645592302084,-0.082123935222626,0.046788666397333],[-0.009366437792778,-0.024140924215317,-0.036453071981668],[-0.022599654272199,0.0011012807954103,-0.057882636785507]]],[[[-0.021960617974401,0.014658740721643,-0.11966455727816],[-0.019405201077461,-0.0411486774683,-0.090575657784939],[-0.023886559531093,-0.14381538331509,-0.086508795619011]],[[0.0072657931596041,4.2268220568076e-07,-0.12250662595034],[0.054097946733236,-0.0036527516786009,-0.055698554962873],[-0.086093455553055,0.036763314157724,0.00045290632988326]],[[-0.0012962657492608,-0.037233352661133,-0.050082240253687],[0.042624264955521,-0.0046582804061472,-0.24496322870255],[0.065043911337852,0.07216639816761,-0.15865035355091]],[[-0.063100807368755,-0.10878060013056,-0.10840150713921],[-0.091459214687347,0.012034014798701,0.069057703018188],[0.073346368968487,-0.048844460397959,-0.060981661081314]],[[-0.14348445832729,-0.010929047130048,-0.035601522773504],[-0.14889672398567,0.067382916808128,-0.14552772045135],[0.04517424851656,0.046319626271725,-0.1187122836709]],[[0.054441295564175,0.017214503139257,-0.022214993834496],[-0.05735744908452,-0.074240304529667,-0.03804062306881],[0.0064061689190567,-0.043271634727716,0.0012684217654169]],[[-0.047586258500814,0.015832858160138,-0.074629433453083],[-0.094014853239059,-0.027875315397978,0.018455281853676],[-0.073722049593925,-0.013542455621064,-0.070015460252762]],[[-0.060430873185396,-0.066601052880287,0.0040959352627397],[0.0071627856232226,-0.039965067058802,0.077519677579403],[0.033335588872433,0.054726887494326,0.034334611147642]],[[-0.0016534139867872,0.010083377361298,-0.0037002393510193],[0.012040845118463,-0.0086533594876528,-0.23637123405933],[0.01771935634315,0.025027947500348,-0.040201023221016]],[[0.057370327413082,0.0031122278887779,0.014713933691382],[-0.052536688745022,0.035800185054541,-0.089439526200294],[-0.085141479969025,0.05953760817647,-0.21271960437298]],[[-0.017371514812112,-0.0077610714361072,-0.19403649866581],[0.033080711960793,0.022962976247072,-0.091980844736099],[0.013624760322273,0.019206300377846,0.025706205517054]],[[-0.059211362153292,-0.092783659696579,-0.067119985818863],[-0.12113723158836,-0.37399977445602,-0.24584428966045],[-0.093165442347527,-0.10138253867626,-0.038070872426033]],[[-0.0028815392870456,-0.02847390063107,-0.11095210164785],[-0.062180515378714,-0.068521834909916,-0.050696570426226],[-0.026267100125551,-0.12085995078087,-0.072529181838036]],[[0.05591406673193,0.0058095739223063,0.044891584664583],[0.054684665054083,-0.0074443481862545,0.02343887835741],[0.00099388114176691,-0.026242943480611,0.0046848887577653]],[[0.028103338554502,-0.011684125289321,0.059337448328733],[0.0071885478682816,-0.065917432308197,0.014984299428761],[0.0065266136080027,-0.0035374383442104,-0.057387869805098]],[[-0.090211972594261,0.033270791172981,0.080353461205959],[0.017247693613172,0.064400561153889,0.023544955998659],[-0.04059923440218,-0.10308840870857,-0.12476194649935]],[[-0.013275871984661,-0.014870387502015,-0.041756015270948],[-0.16816660761833,0.040537185966969,-0.049445878714323],[0.034947585314512,0.09666320681572,0.10092641413212]],[[0.040068570524454,0.044718459248543,0.021181842312217],[-0.077820964157581,0.031842436641455,0.056681476533413],[0.072076573967934,0.047111548483372,0.031756635755301]],[[0.061143293976784,0.025492742657661,-0.025362687185407],[-0.025947535410523,0.091966010630131,-0.043989021331072],[0.018851839005947,0.02323255687952,-0.072585947811604]],[[0.045838430523872,0.014445218257606,-0.050553560256958],[0.052464168518782,-0.056713297963142,-0.078970588743687],[0.02989804930985,0.049525465816259,0.011108016595244]],[[0.0077142342925072,-0.01737853884697,0.055633902549744],[-0.023668898269534,0.042619988322258,0.12096190452576],[0.056375030428171,0.11306285113096,0.092483229935169]],[[0.044685930013657,0.12323412299156,0.02431333810091],[-0.0072415354661644,0.010206187143922,-0.033807151019573],[0.11333913356066,0.052653644233942,-0.1499790251255]],[[-0.02935478836298,0.036207746714354,-0.037690136581659],[-0.023349085822701,0.0048864223062992,-0.13231140375137],[-0.021553345024586,-0.038270894438028,-0.026036806404591]],[[0.067570053040981,0.080450482666492,0.055369861423969],[0.10720842331648,-0.0044944249093533,0.096986159682274],[-0.0022403846960515,0.081098318099976,0.085172258317471]],[[0.0066460068337619,0.012012965045869,-0.078879371285439],[-0.086536817252636,0.048420093953609,-0.012822980992496],[-0.040283787995577,0.036392610520124,-0.010685760527849]],[[0.058886915445328,-0.024319998919964,-0.022427523508668],[0.025108765810728,0.077357552945614,-0.056803151965141],[0.04179834201932,-0.00047802581684664,0.044400986284018]],[[-0.014367983676493,0.023934656754136,0.091600485146046],[-0.082841165363789,-0.21940529346466,0.012040658853948],[-0.037636179476976,0.05095499381423,0.063323751091957]],[[-0.020421760156751,-0.013256460428238,-0.10126227885485],[-0.091037333011627,0.040657609701157,0.031022533774376],[0.0039346390403807,-0.056027594953775,-0.061517983675003]],[[-0.089607208967209,-0.019580157473683,-0.14065027236938],[-0.11845278739929,0.0096505992114544,-0.17679734528065],[-0.0088489511981606,0.00056368857622147,-0.04236301407218]],[[-0.071167916059494,0.048556476831436,0.059776429086924],[-0.19984212517738,0.018430780619383,-0.072494894266129],[-0.0029005773831159,0.083736926317215,-0.0038802265189588]],[[-0.0080207390710711,-0.050175316631794,0.027236793190241],[0.035712722688913,0.023422300815582,0.10633164644241],[0.025374786928296,0.026083029806614,-0.02415725030005]],[[0.049965873360634,0.085091352462769,-0.0047079692594707],[0.069335676729679,0.084164813160896,-0.1090644672513],[-0.017847673967481,-0.14023020863533,-0.0067402627319098]],[[0.029471835121512,0.0094788605347276,-0.0054408721625805],[-0.032617039978504,-0.0068977833725512,-0.054497081786394],[0.035399157553911,-0.047983158379793,0.019009333103895]],[[-0.075341075658798,-0.030287642031908,-0.16060154139996],[0.039636436849833,0.079910330474377,0.13120238482952],[0.016835886985064,0.017295414581895,-0.064996749162674]],[[-0.095466285943985,0.037575218826532,-0.095129042863846],[-0.19234921038151,0.031181875616312,-0.049922373145819],[-0.10325729846954,0.036487407982349,-0.050725154578686]],[[0.034718286246061,-0.041003342717886,0.038412716239691],[0.072078667581081,0.032360702753067,0.018532449379563],[0.052733521908522,0.031397186219692,-0.025645475834608]],[[0.074058093130589,-0.096510834991932,0.058132097125053],[0.085361793637276,0.010450356639922,0.092347733676434],[0.087382033467293,-0.020529245957732,-0.0484669059515]],[[-0.062743179500103,0.024304987862706,-0.050785217434168],[-0.12194181233644,-0.0092321326956153,-0.042320869863033],[-0.15225158631802,-0.29485332965851,-0.037707272917032]],[[-0.0076231248676777,0.067619688808918,-0.070011146366596],[0.081101298332214,0.069424442946911,0.061458617448807],[-0.10361486673355,-0.10038319975138,0.072426579892635]],[[0.025172708556056,-0.11117674410343,-0.041036006063223],[-0.09926250576973,-0.014756630174816,0.021168665960431],[-0.030621439218521,0.043565038591623,0.027147864922881]],[[0.065752856433392,-0.0015161903575063,-0.088661797344685],[0.0072056148201227,-0.057652056217194,0.12341576069593],[-0.0045179016888142,0.0016251810593531,0.080528616905212]],[[-0.035346776247025,-0.080798089504242,-0.041897866874933],[0.035511039197445,0.073367066681385,-0.12855373322964],[0.018788244575262,-0.042549792677164,-0.011851192452013]],[[-0.0064256750047207,-0.049126453697681,-0.029922915622592],[0.088484257459641,0.0057747811079025,-0.15263469517231],[-0.034146413207054,-0.069477692246437,-0.072184488177299]],[[-0.043127186596394,-0.021992340683937,-0.10167481005192],[0.053735952824354,-0.010692766867578,-0.030860289931297],[-0.050059117376804,0.024623773992062,-0.10015764087439]],[[-0.039142340421677,0.018936309963465,0.12858314812183],[-0.071316227316856,0.051268149167299,-0.0051263943314552],[0.19060404598713,-0.0021083010360599,0.0024460130371153]],[[0.038689590990543,-0.017433056607842,-0.0092339906841516],[0.071434922516346,0.056565530598164,-0.078647747635841],[-0.19057630002499,-0.028288774192333,0.032867830246687]],[[-0.0041183498688042,-0.02363377250731,0.16264346241951],[-0.038074236363173,0.024566203355789,0.0090171759948134],[-0.12526907026768,-0.060846999287605,0.13715827465057]],[[0.077283963561058,-0.038613561540842,-0.14457313716412],[-0.058576237410307,-0.14873358607292,-0.046196322888136],[-0.066589802503586,-0.03080116584897,-0.014162257313728]],[[0.035472273826599,0.10023730248213,0.11787709593773],[0.016610875725746,0.073665335774422,-0.079742453992367],[0.13836878538132,-0.13600279390812,0.081741616129875]],[[-0.12481716275215,-0.029991513118148,-0.017158482223749],[-0.034291695803404,0.1160478964448,0.003152919234708],[-0.0047722267918289,0.022669848054647,-0.031799606978893]],[[-0.041849341243505,-0.0057816873304546,-0.065637640655041],[-0.017129326239228,0.04216130822897,-0.038707450032234],[-0.043917216360569,-0.038253858685493,-0.071064926683903]],[[-0.042011972516775,-0.038857840001583,0.0014612156664953],[0.014769774861634,0.09717919677496,0.21830831468105],[-0.05572397634387,0.1281611174345,0.18839864432812]],[[-0.073438927531242,0.05931156873703,0.087795443832874],[-0.05202167108655,-0.039027493447065,0.04898676648736],[0.092268772423267,0.03884468972683,0.030548240989447]],[[0.078421846032143,-0.020244996994734,-0.065809458494186],[-0.071152128279209,0.02665357850492,0.0062647839076817],[-0.10592669248581,0.12739752233028,0.088194742798805]],[[0.0078190602362156,-0.044733285903931,0.023907357826829],[0.029452724382281,-0.005803310777992,0.012731564231217],[-0.0063628288917243,0.080563351511955,0.062055125832558]],[[-0.0082474024966359,0.056919973343611,0.016178028658032],[-0.11649537831545,-0.061584889888763,-0.15999323129654],[-0.12091317027807,-0.053627520799637,0.015280444175005]],[[0.012031377293169,0.021608920767903,-0.10344357788563],[-0.025060595944524,0.016302155330777,-0.18867576122284],[-0.17739243805408,-0.079443231225014,-0.021268431097269]],[[-0.01605605147779,0.0093015842139721,0.019515233114362],[0.067567430436611,0.063067086040974,-0.034502480179071],[0.003253459231928,-0.11256884783506,0.0072333756834269]],[[-0.0038474921602756,0.048463445156813,-0.11652784794569],[-0.095766112208366,-0.054244305938482,-0.07572864741087],[0.10285825282335,0.09251707047224,0.035428952425718]],[[-0.064392946660519,-0.012087047100067,0.081243760883808],[-0.0016726965550333,0.0040969653055072,0.074040949344635],[-0.035017486661673,-0.081550061702728,0.031923178583384]],[[0.00038881885120645,-0.041639808565378,0.034704174846411],[0.0021220711059868,0.056549981236458,-0.06553241610527],[0.0087866354733706,-0.080461286008358,-0.049534920603037]],[[-0.032466724514961,-0.0055632716976106,-0.008619848638773],[-0.006841903552413,-0.092101082205772,-0.11680030077696],[0.0093731535598636,0.031624682247639,-0.079223416745663]],[[0.040529627352953,-0.042421396821737,-0.073965020477772],[-0.12830692529678,0.022225491702557,-0.067658692598343],[-0.054147284477949,0.02785474434495,0.014789268374443]],[[0.011224160902202,0.017510525882244,0.0992167070508],[0.036544509232044,-0.079432100057602,-0.030426694080234],[0.16590762138367,0.0035107464063913,-0.025265146046877]]],[[[-0.051460992544889,0.018492186442018,-0.23409776389599],[0.01127728074789,-0.0032169653568417,-0.066023878753185],[0.057201649993658,0.09967203438282,0.0099549423903227]],[[-0.16385991871357,-0.024696877226233,-0.06792251765728],[-0.053606204688549,-0.05161290243268,-0.027085456997156],[-0.029505299404263,-0.041847787797451,-0.019070150330663]],[[-0.088664926588535,-0.17802001535892,-0.022026160731912],[-0.01283397898078,-0.16065321862698,0.027744298800826],[-0.05348988249898,-0.022727981209755,0.097169429063797]],[[-0.0071316654793918,-0.030169989913702,-0.023092577233911],[-0.037181135267019,-0.11189658939838,-0.046308897435665],[-0.053713530302048,0.028072793036699,0.065464422106743]],[[-0.012581767514348,0.022086696699262,0.017936242744327],[-0.018866712227464,0.024411709979177,0.027133306488395],[-0.011238856241107,-0.0061718057841063,-0.026865499094129]],[[0.026470990851521,-0.061280410736799,0.0047350628301501],[-0.0064881658181548,0.00309096602723,-0.041582424193621],[-0.013359067030251,0.040513355284929,-0.031449384987354]],[[-0.036266513168812,-0.049904547631741,-0.018010009080172],[-0.039361633360386,-0.10028240829706,0.014766132459044],[0.027803085744381,-0.036360748112202,0.0081144850701094]],[[0.029750118032098,0.072385556995869,-0.067233107984066],[0.038297738879919,-0.048084855079651,0.024399310350418],[-0.0026908768340945,-0.12944456934929,0.12242393940687]],[[-0.0064128739759326,0.092899672687054,-0.0070500201545656],[-0.016662919893861,0.055435117334127,0.079039320349693],[0.022645721212029,0.042202733457088,-0.028679108247161]],[[-0.032870054244995,0.030022567138076,0.12269947677851],[0.038121536374092,0.00097074307268485,-0.038951527327299],[-0.014264746569097,-0.044243440032005,0.039966862648726]],[[0.0044185440056026,0.071302995085716,-0.088242158293724],[-0.056404244154692,0.069547735154629,0.030206348747015],[-0.058217421174049,0.097513347864151,0.035504065454006]],[[0.053038347512484,0.0077054132707417,-0.03863599896431],[0.029003329575062,-0.069224767386913,0.054904494434595],[0.0040258830413222,0.067533522844315,0.077480882406235]],[[-0.0094023318961263,-0.074988983571529,-0.016662407666445],[0.03349282592535,-0.049455791711807,0.065047264099121],[0.074167907238007,-0.032256934791803,0.023925362154841]],[[0.12843029201031,-0.06794548779726,-0.078164733946323],[0.055056288838387,0.022525079548359,-0.12627148628235],[0.057700116187334,-0.0032320572063327,-0.14747974276543]],[[0.029599832370877,-0.027287121862173,-0.051185227930546],[-0.0053057824261487,-0.074723996222019,-0.058641508221626],[-0.025387100875378,0.0018378152744845,-0.0066674402914941]],[[0.040936674922705,0.042005650699139,0.028746144846082],[0.053296342492104,-0.048326756805182,0.054259940981865],[-0.0099783623591065,0.0053737265989184,0.0035314545966685]],[[-0.021121615543962,0.040185574442148,0.026678133755922],[0.027730708941817,0.12372842431068,-0.037045281380415],[0.067907609045506,0.033390313386917,0.025365814566612]],[[0.0014560105046257,0.086349792778492,-0.046628553420305],[-0.0071371644735336,-0.082213327288628,-0.066038616001606],[-0.033047512173653,0.047811638563871,0.056454818695784]],[[0.056862622499466,0.037585824728012,-0.038281496614218],[0.0076981000602245,0.064065791666508,-0.019380206242204],[0.013510697521269,-0.028225829824805,-0.083612032234669]],[[0.011062420904636,-0.046093545854092,0.021867761388421],[-0.029906816780567,0.027942050248384,0.032850340008736],[-0.045088570564985,-0.015657905489206,0.058920536190271]],[[0.027608776465058,-0.017183009535074,-0.0054020499810576],[-0.033146981149912,-0.0081548588350415,0.062779061496258],[-0.03895927965641,0.0025554106105119,0.026978814974427]],[[0.033540979027748,0.10320840030909,-0.020018981769681],[0.06665575504303,-0.09438618272543,-0.029830766841769],[-0.017224004492164,-0.013209479860961,0.046321243047714]],[[2.1407708118204e-05,0.10244965553284,0.0056465431116521],[-0.0015932985115796,0.0042207106016576,-0.033993449062109],[0.06220693141222,-0.017650118097663,-0.1310306340456]],[[-0.10740685462952,-0.006209097802639,0.12863071262836],[-0.043948072940111,-0.020763553678989,0.1193828061223],[-0.029932465404272,0.046739753335714,-0.046819750219584]],[[-0.18277062475681,-0.0065372115932405,-0.070960246026516],[-0.0054170312359929,0.007256374694407,-0.014838260598481],[0.038472585380077,0.12650594115257,0.12085498124361]],[[-0.015540949068964,-0.0083051463589072,0.088037319481373],[-0.016660245135427,-0.021360903978348,0.081625252962112],[-0.058607000857592,0.058196991682053,0.02916918322444]],[[0.020330665633082,-0.069123819470406,-0.052469495683908],[-0.023660745471716,-0.021128300577402,0.040210481733084],[0.013136700727046,-0.063558168709278,0.063721686601639]],[[-0.034379698336124,-0.050399243831635,0.049233332276344],[-0.033608205616474,-0.03029946051538,0.050191901624203],[0.013065415434539,0.016608277335763,0.070046186447144]],[[-0.033205959945917,0.091618075966835,0.072395317256451],[-0.010392214171588,0.028026996180415,0.021767457947135],[0.014164085499942,0.066205114126205,0.0042106476612389]],[[0.036267779767513,-0.10216028988361,-0.0619179867208],[-0.078827388584614,-0.025859767571092,0.086788594722748],[-0.081231102347374,-0.0076344930566847,0.021987503394485]],[[0.044233523309231,0.036828100681305,0.0025903780478984],[-0.010956021957099,-0.025174766778946,0.02740378677845],[0.03387537971139,-0.090039029717445,0.055389430373907]],[[-0.036851696670055,0.085413463413715,0.010572918690741],[-0.0022443705238402,0.062500610947609,-0.069383330643177],[-0.015032769180834,-0.087217316031456,0.015446339733899]],[[-0.045052520930767,-0.064296558499336,-0.074600964784622],[0.011344403959811,-0.0095336819067597,-0.0065528331324458],[-0.069624431431293,-0.040429897606373,-0.020261013880372]],[[0.034676481038332,0.041958007961512,-0.066407524049282],[-0.056294560432434,-0.062217008322477,-0.1482941955328],[-0.063380040228367,-0.020493783056736,-0.14679425954819]],[[0.063390374183655,-0.095970347523689,0.046046674251556],[0.090991154313087,-0.065431736409664,-0.01610909588635],[0.050382517278194,0.032074563205242,-0.027238072827458]],[[-0.078711502254009,-0.074887230992317,0.060110680758953],[0.037970799952745,-0.088489934802055,-0.064461544156075],[-0.0066387443803251,-0.014672880992293,0.0044568511657417]],[[-0.074105150997639,-0.02502403780818,0.082988493144512],[-0.045688789337873,0.092442385852337,0.093085184693336],[-0.091216802597046,-0.0069618341512978,0.00026283081388101]],[[-0.084492243826389,-0.072480462491512,0.0063064778223634],[0.0017303935019299,0.041892644017935,0.038230706006289],[0.046378906816244,-0.0044640912674367,0.021701076999307]],[[-0.094502449035645,-0.12369177490473,-0.075532577931881],[0.020696256309748,0.023413008078933,-0.016861462965608],[-0.0073232245631516,0.11059556156397,-0.053267505019903]],[[-0.0018718112260103,-0.13572509586811,-0.0053971167653799],[0.010306377895176,-0.064267419278622,-0.03933396935463],[-0.054735019803047,-0.017916779965162,0.023307645693421]],[[-0.060347184538841,-0.082892082631588,-0.018984116613865],[-0.028191681951284,-0.083017513155937,-0.14262925088406],[-0.014323431998491,0.015488277189434,0.099956966936588]],[[0.10161983966827,-0.056645914912224,0.00656124856323],[0.0076154805719852,-0.046952404081821,-0.070309422910213],[0.034308977425098,0.075204536318779,0.0041273459792137]],[[-0.011349161155522,0.029782839119434,-0.0076656080782413],[-0.044718597084284,-0.027665548026562,0.015196234919131],[-0.029518581926823,-0.058648966252804,-0.05026288703084]],[[0.053678553551435,-0.081864885985851,0.0088363895192742],[-0.00010695525998017,-0.076287880539894,0.069362044334412],[-0.077656865119934,0.031075639650226,-0.01986431889236]],[[0.03895017132163,-0.06705179810524,0.024636613205075],[-0.10912407189608,0.082960702478886,-0.067483708262444],[-0.081883728504181,-0.025424540042877,-0.062333900481462]],[[-0.018872937187552,0.0088084554299712,0.015937644988298],[-0.014522138983011,0.05978636443615,0.069563388824463],[-0.059523556381464,0.027464114129543,0.014398984611034]],[[-0.059766452759504,0.051275413483381,-0.042540673166513],[-0.010275625623763,-0.0081096235662699,0.0039054497610778],[-0.037820592522621,0.011999157257378,0.053341411054134]],[[0.039198320358992,0.015257637947798,-0.0015608918620273],[-0.0002580393338576,-0.0024385827127844,-0.029845714569092],[0.032655730843544,-0.12207278609276,-0.070813551545143]],[[-0.054989546537399,0.0157820135355,-0.043171182274818],[0.0016574115725234,0.015824174508452,-0.10822357237339],[-0.012604617513716,0.021736141294241,0.011217341758311]],[[0.068857684731483,-0.1571039557457,0.010016125626862],[0.026946622878313,0.0029440908692777,-0.06422009319067],[0.037587355822325,-0.09522071480751,-0.079364463686943]],[[-9.3447939434554e-05,-0.025155019015074,-0.094628728926182],[0.024098232388496,0.0034380268771201,0.024203041568398],[-0.011513428762555,0.0031244484707713,-0.026307189837098]],[[0.065383359789848,0.061774507164955,-0.040010057389736],[0.0048228031955659,-0.072277911007404,3.7277775845723e-05],[-0.014308486133814,-0.082954652607441,-0.024257579818368]],[[0.062047936022282,-0.12666542828083,0.02141447737813],[0.068909950554371,0.032145224511623,0.013465422205627],[-0.0089954268187284,-0.037797648459673,0.060147669166327]],[[0.12727814912796,0.019678832963109,0.012825392186642],[-0.016286002472043,-0.032282121479511,0.012623355723917],[-0.045478250831366,-0.05731887370348,-0.08141977339983]],[[0.079451076686382,-0.1700993925333,-0.067907460033894],[0.039455272257328,-0.078909203410149,0.01041198708117],[0.013713813386858,0.027529457584023,0.013570106588304]],[[-0.041165720671415,0.01277725584805,0.064116664230824],[0.042224008589983,0.065489828586578,0.02620660699904],[0.08315446972847,-0.0044232201762497,-0.030542330816388]],[[0.023169649764895,-0.039281070232391,0.080153681337833],[0.054675303399563,0.028611095622182,0.072325237095356],[-0.026087779551744,-0.010732423514128,-0.014397908933461]],[[0.02926629409194,-0.1445916891098,-0.022742321714759],[-0.015961466357112,-0.09591855853796,-0.019352562725544],[-0.013833614066243,-0.029038781300187,-0.071985393762589]],[[-0.061821058392525,0.027203695848584,0.028466254472733],[0.094038918614388,0.030764227733016,0.027720862999558],[-0.096978932619095,-0.0071321167051792,0.025929898023605]],[[-0.0033552586100996,0.066684238612652,-0.030197232961655],[0.012204869650304,-0.00093638442922384,-0.068315677344799],[0.055345833301544,-0.0031026653014123,-0.03224465623498]],[[0.026806062087417,-0.019423509016633,-0.057619750499725],[-0.00692666368559,-0.043187089264393,0.0095919296145439],[0.019816678017378,0.038915745913982,-0.024288438260555]],[[0.021670943126082,-0.11306016892195,0.091035127639771],[0.053291220217943,0.028490055352449,-0.023159570991993],[-0.060195505619049,0.12759092450142,-0.064407199621201]],[[0.03614417463541,-0.080706536769867,-0.11885625123978],[-0.0067077712155879,-0.080343067646027,-0.0053256098181009],[0.064813643693924,-0.052301570773125,-0.11003453284502]],[[0.0052198003977537,-0.027882074937224,0.0142174763605],[-0.0036108635831624,-0.10128604620695,-0.015679992735386],[-0.024561796337366,-0.029966738075018,-0.036169186234474]]],[[[0.0030937467236072,0.029617624357343,-0.073984712362289],[0.013813690282404,-0.0030640154145658,-0.032205358147621],[-0.032773245126009,0.014941602945328,-0.077016472816467]],[[0.021276459097862,-0.062220897525549,-0.024803446605802],[0.12702161073685,-0.10825475305319,-0.068112455308437],[0.092839039862156,0.055422488600016,0.0078654699027538]],[[0.05135789513588,-0.0093666287139058,-0.094467170536518],[0.0074245491996408,0.0073299626819789,-0.08479718118906],[0.0025746149476618,-0.082284219563007,-0.011649791151285]],[[-0.076649852097034,-0.049520321190357,-0.059635493904352],[-0.10297749191523,0.041820220649242,0.023150766268373],[-0.00029416763572954,-0.10013055056334,0.0047123841941357]],[[0.063397958874702,0.056798998266459,-0.046414222568274],[-0.042037885636091,0.022013276815414,0.022319281473756],[0.0017413567984477,-0.044101934880018,-0.032612524926662]],[[0.040591977536678,0.022051110863686,0.0006160925840959],[-0.02745864726603,-0.033223535865545,0.024636272341013],[0.015452273190022,-0.022682588547468,-0.031397752463818]],[[-0.062744840979576,-0.036442808806896,-0.072085656225681],[-0.069894343614578,-0.017403183504939,-0.081258945167065],[-0.070850789546967,0.025720093399286,0.043385904282331]],[[-0.029003981500864,-0.055824656039476,0.0024717662017792],[0.078809902071953,0.091423906385899,0.026777913793921],[-0.039214242249727,-0.097137786448002,0.028753068298101]],[[-0.11580047756433,-0.075973257422447,-0.12673686444759],[0.069777555763721,-0.084764026105404,0.17616295814514],[-0.08216880261898,0.043321151286364,-0.1533317565918]],[[-0.024153411388397,0.028152948245406,-0.067484475672245],[-0.018493827432394,-0.047356158494949,-0.10472193360329],[0.034775979816914,0.11023420095444,-0.11238617449999]],[[0.052299339324236,-0.012493821792305,-0.14146316051483],[-0.0013500103959814,-0.060896020382643,-0.0048761987127364],[-0.0042870864272118,0.050436586141586,-0.0099851209670305]],[[0.0094647547230124,-0.12141592800617,-0.11927715688944],[-0.057578787207603,-0.018399329856038,0.018291875720024],[-0.046679928898811,-0.061798512935638,-0.0075006950646639]],[[-0.098061241209507,-0.038113281130791,0.11974816769361],[0.030811367556453,0.13389022648335,0.014535828493536],[-0.10000938177109,-0.025559006258845,0.0012116936268285]],[[0.02655347622931,-0.073599018156528,0.096297390758991],[0.097379095852375,-0.032830405980349,0.039812389761209],[-0.0095595410093665,0.026408638805151,0.024369891732931]],[[0.027862418442965,-0.08722759783268,0.037737961858511],[-1.0942319931928e-05,-0.093735761940479,-0.087372027337551],[0.078051544725895,-0.076481766998768,-0.10718970000744]],[[-0.014722278341651,0.078812912106514,0.055762819945812],[-0.067566156387329,-0.017487976700068,0.064190968871117],[-0.12371218204498,0.050097212195396,-0.15480457246304]],[[0.061829321086407,-0.053362708538771,-0.066231340169907],[0.06893315911293,0.066053383052349,-0.16011200845242],[-0.067807033658028,0.050322368741035,-0.13704396784306]],[[-0.058273613452911,0.049432475119829,-0.014170649461448],[-0.092686712741852,0.032579351216555,-0.11190986633301],[-0.03451281785965,0.061030279844999,0.010542000643909]],[[0.12641237676144,-0.066874153912067,0.060530137270689],[-0.027735773473978,0.028997704386711,-0.0046097217127681],[0.079156450927258,-0.03678160533309,-0.015845973044634]],[[-0.0012878270354122,0.015615983866155,0.019285710528493],[0.013742814771831,-0.0034086327068508,-0.047036048024893],[0.014347705058753,-0.025009451434016,0.022058043628931]],[[0.024181632325053,0.062685549259186,0.051090735942125],[-0.028118807822466,0.055622011423111,0.034061372280121],[0.0077665215358138,-0.044011972844601,-0.071434609591961]],[[-0.019403371959925,0.060438666492701,-0.040445107966661],[0.0076635922305286,-0.03717054054141,-0.042912747710943],[0.042291399091482,0.0070232595317066,0.096160687506199]],[[0.0088531635701656,0.12138226628304,-0.010054579004645],[0.0056727356277406,0.0036801088135689,-0.10597313195467],[-0.085436463356018,0.15889820456505,-0.066517516970634]],[[-0.028254659846425,0.04252815246582,0.32365283370018],[0.049594298005104,-0.052690356969833,0.13819736242294],[-0.017061175778508,-0.10201442986727,-0.011131380684674]],[[0.074871860444546,0.049268584698439,0.06344822794199],[0.0048897131346166,0.029719611629844,0.030399043112993],[-0.00067580281756818,0.086359091103077,-0.058606017380953]],[[-0.021290048956871,0.0053345230408013,-0.055179055780172],[-0.0068493564613163,-0.024237023666501,0.051015254110098],[0.019820777699351,0.0049840910360217,0.022509472444654]],[[-0.12351903319359,-0.13263823091984,0.12146082520485],[-0.091962039470673,-0.083330497145653,-0.070816412568092],[0.0066694072447717,0.082568161189556,0.023713683709502]],[[-0.026528671383858,0.071532338857651,0.069776982069016],[-0.037179920822382,-0.082950569689274,0.018995311111212],[0.0029016216285527,-0.0026034829206765,-0.018830394372344]],[[0.035986520349979,-0.10152404010296,-0.081891439855099],[-0.050972908735275,-0.032270602881908,0.024356033653021],[0.072043724358082,-0.0048945415765047,0.072891816496849]],[[-0.038140896707773,-0.0067500700242817,-0.1795504540205],[-0.06823942810297,-0.0024614492431283,-0.085794344544411],[0.020109977573156,0.00093306542839855,-0.0047476729378104]],[[-0.072205476462841,0.1099941059947,-0.018556103110313],[-0.030199712142348,-0.035070322453976,0.11835257709026],[-0.085137970745564,-0.065362550318241,-0.098511680960655]],[[0.077955983579159,-0.068771079182625,-0.010137074626982],[0.039710879325867,-0.060387067496777,-0.063378155231476],[-0.10324450582266,-0.036684613674879,-0.07539326697588]],[[-0.013623910024762,-0.084077849984169,0.021393237635493],[-0.034832902252674,-0.10037778317928,-0.057570572942495],[0.12774044275284,0.024896098300815,0.098680146038532]],[[0.054930008947849,-0.028753083199263,-0.049259837716818],[0.0039097974076867,0.079046495258808,0.1213455721736],[-0.029293674975634,-0.010754267685115,-0.11487694829702]],[[-0.021835090592504,-0.058872520923615,-0.083611339330673],[-0.10411981493235,0.039154298603535,0.042616236954927],[0.044717915356159,-0.12850195169449,0.047514300793409]],[[0.014995407313108,0.027838718146086,0.036712009459734],[-0.024799136444926,-0.0033973378594965,9.2951006081421e-05],[0.012899260036647,0.0030075188260525,0.018503481522202]],[[0.043975658714771,-0.086456917226315,-0.0019129414577037],[0.014661488123238,0.03532101213932,-0.098490171134472],[-0.016042364761233,-0.018517315387726,-0.015797711908817]],[[-0.093540363013744,-0.016650414094329,-0.072844609618187],[0.0038153352215886,-0.091138482093811,-0.0082440236583352],[0.14006993174553,-0.05413606390357,-0.15481449663639]],[[-0.018369378522038,-0.064131885766983,0.0046144993975759],[-0.0014528766041622,-0.062162224203348,-0.010071207769215],[-0.035288188606501,-0.0045545506291091,-0.054709725081921]],[[-0.10983910411596,0.055112518370152,-0.006099792663008],[0.064474381506443,0.044506166130304,-0.099753737449646],[-0.027708293870091,0.0090564796701074,0.049170881509781]],[[0.048159077763557,0.019331464543939,-0.04603323712945],[-0.0073787812143564,-0.0069703292101622,0.038305830210447],[0.10092736780643,0.012163950130343,-0.11571722477674]],[[0.027312830090523,0.024409459903836,0.054823357611895],[0.020257631316781,-0.086614549160004,0.01121249422431],[0.026331128552556,-0.0045161545276642,-0.075496777892113]],[[-0.017218474298716,0.055683210492134,0.03056576102972],[0.025311419740319,0.057792887091637,0.075168594717979],[-0.083374492824078,-0.056628614664078,0.010794267058372]],[[0.042965829372406,0.020136434584856,-0.10643499344587],[-0.0570646263659,0.12067482620478,-0.093457825481892],[-0.037763398140669,-0.030711831524968,-0.054892018437386]],[[0.020824221894145,0.028863379731774,-0.00067754747578874],[0.060824990272522,-0.0042313160374761,-0.038025323301554],[-0.026885332539678,-0.048546340316534,-0.075465276837349]],[[-0.058059014379978,0.034192208200693,-0.10354685783386],[-0.04330675676465,-0.11879847198725,0.066758543252945],[-0.08567551523447,0.010139250196517,-0.031797863543034]],[[0.025427188724279,0.046393282711506,-0.0030190835241228],[-0.0030310251750052,-0.074896365404129,-0.03567024692893],[0.034209959208965,0.020914116874337,-0.0066265696659684]],[[-0.037888806313276,0.083668850362301,-0.077996753156185],[0.13615711033344,0.0068246037699282,-0.0062461798079312],[0.01450735796243,-0.0051874974742532,0.019398981705308]],[[-0.031033482402563,0.042657732963562,-0.072714366018772],[0.010074624791741,-0.032249733805656,0.042744431644678],[-0.042664092034101,-0.14807252585888,-0.0023303306661546]],[[0.023387307301164,0.071259081363678,0.038425900042057],[-0.0013275197707117,0.058394681662321,-0.056744873523712],[0.025773016735911,0.093666456639767,0.0091864364221692]],[[0.042638406157494,0.079179026186466,-0.023035001009703],[0.029379880055785,0.02841123752296,-0.086019583046436],[-0.01146043650806,-0.037231579422951,0.078580841422081]],[[0.030759042128921,0.085571467876434,-0.08878143876791],[-0.0063602938316762,0.093531355261803,0.071913331747055],[0.041191954165697,0.030612481757998,0.018368238583207]],[[0.028745081275702,0.049618106335402,0.024268995970488],[0.057289525866508,0.062753237783909,-0.020325960591435],[0.028807137161493,0.078253239393234,-0.03846749663353]],[[-0.056245353072882,-0.0410858951509,-0.0089426580816507],[0.055812250822783,-0.086001321673393,-0.0080114677548409],[-0.084825813770294,-0.01981838606298,-0.011060116812587]],[[-0.0056725526228547,-0.019619278609753,-0.074233032763004],[0.00028859917074442,0.010566549375653,0.021975645795465],[0.024388482794166,-0.025855157524347,-0.077169813215733]],[[-0.095233358442783,0.022013980895281,0.081034548580647],[0.0038442704826593,-0.073144674301147,0.040369015187025],[-0.0021443315781653,-0.056014258414507,0.055325604975224]],[[-0.10356017202139,-0.094106040894985,-0.067631915211678],[0.057120881974697,0.11139805614948,0.0056574614718556],[-0.1625200510025,-0.12105292081833,-0.048341523855925]],[[0.026909682899714,0.047435581684113,-0.08047254383564],[-0.11633232980967,0.024812126532197,-0.16233099997044],[-0.017950281500816,-0.0051732077263296,-0.017432145774364]],[[0.0089009050279856,0.037340480834246,0.13719449937344],[-0.0066984440200031,-0.052498310804367,0.058112863451242],[-0.033962465822697,-0.036234587430954,0.063873440027237]],[[-0.0077208541333675,-0.0095252143219113,0.031737346202135],[-0.061233796179295,0.05538085848093,-0.012826289050281],[-0.041382014751434,0.012913428246975,0.019388064742088]],[[0.081733144819736,0.019319349899888,-0.039877440780401],[0.13013814389706,-0.22457310557365,0.15121138095856],[-0.0094103878363967,-0.085891522467136,-0.026032397523522]],[[-0.033910967409611,-0.071435302495956,0.017403466627002],[0.094092600047588,0.017937228083611,0.0063602542504668],[0.072306767106056,-0.031342029571533,0.18950393795967]],[[-0.014920603483915,-0.0157848931849,-0.010578003711998],[0.04555993527174,0.059963971376419,-0.054232232272625],[-0.020230935886502,0.043309539556503,-0.0087627694010735]],[[0.0083579132333398,0.057796042412519,-0.02272648923099],[0.017840642482042,-0.028246009722352,-0.014289928600192],[0.021324364468455,-0.054998833686113,-0.060095354914665]]],[[[-0.026880344375968,0.1075102314353,0.047804839909077],[-0.10109359025955,0.015936601907015,0.030978422611952],[0.031895723193884,0.026452578604221,0.13266289234161]],[[-0.0072216372936964,-0.0012886006152257,-0.061963330954313],[0.048586748540401,0.075380325317383,0.0012099427403882],[-0.067792870104313,0.00028840699815191,0.081334263086319]],[[-0.050181422382593,-0.089865826070309,-0.030065709725022],[-0.095150388777256,-0.034303158521652,-0.026945602148771],[-0.0098829660564661,-0.070672295987606,0.040527615696192]],[[-0.13138104975224,0.13216038048267,0.045537929981947],[-0.052847106009722,0.038337491452694,0.031626511365175],[-0.0036412547342479,0.027359824627638,-0.05529535934329]],[[0.051191207021475,-0.14471589028835,0.016299087554216],[0.12346577644348,0.0090539893135428,0.027967508882284],[-0.080448031425476,-0.097263038158417,-0.068886630237103]],[[-0.00060295523144305,0.032495204359293,-0.013015518896282],[0.078334286808968,0.038326811045408,-0.055491093546152],[-0.043259285390377,-0.14660979807377,-0.080033868551254]],[[-0.03236236050725,-0.055434200912714,0.023565080016851],[0.031386084854603,-0.0010959971696138,0.024260155856609],[0.016077680513263,0.00040508608799428,0.037280775606632]],[[-0.0028426870703697,0.0003763567074202,-0.042638350278139],[0.055818997323513,0.0036698710173368,-0.014116550795734],[-0.11633855104446,0.049459155648947,-0.016499860212207]],[[-0.10426656156778,0.11934468150139,0.059941537678242],[-0.00097812607418746,-0.04424099996686,-0.13010807335377],[-0.021529816091061,-0.11391813308001,-0.0035332378465682]],[[-0.0019092074362561,0.020260065793991,0.11580225080252],[0.05532131716609,-0.062701210379601,0.034904655069113],[-0.03388587012887,0.0053538782522082,0.11475543677807]],[[0.047705795615911,0.047115601599216,-0.10316280275583],[0.018767639994621,-0.0044049685820937,0.010959693230689],[0.095535539090633,-0.038983680307865,-0.026982020586729]],[[0.10881260037422,0.049625985324383,-0.024272548034787],[-0.040226306766272,0.027952836826444,0.01971953548491],[-0.0040709530003369,-0.15593585371971,-0.024867318570614]],[[-0.063169337809086,0.00024162151385099,0.077574089169502],[-0.13324300944805,-0.16856025159359,0.011723903939128],[0.030758200213313,0.070664219558239,0.051623690873384]],[[0.04820616170764,-0.040862929075956,-0.066379390656948],[0.053338300436735,-0.10638254880905,0.02762171253562],[0.037177193909883,-0.083780586719513,-0.001618652837351]],[[-0.046324301511049,-0.07014512270689,-0.040822371840477],[0.068217970430851,-0.096346467733383,-0.1037869155407],[0.0074373497627676,0.013831404969096,-0.056232966482639]],[[0.051877178251743,0.043941054493189,0.11634679883718],[-0.038619298487902,-0.016451861709356,0.039938353002071],[0.0079454947263002,0.037534430623055,-0.031870935112238]],[[0.048739273101091,0.08054231852293,-0.092949591577053],[-0.027574740350246,-0.0051638628356159,-0.043786164373159],[0.06729419529438,0.051410604268312,0.027272626757622]],[[-0.0094198426231742,0.10810876637697,0.044327616691589],[-0.047903254628181,0.19954742491245,0.1392147988081],[-0.01584673859179,0.010794144123793,0.18962852656841]],[[-0.031273424625397,0.04491076245904,-0.017179472371936],[0.039372235536575,-0.029690554365516,-0.057577423751354],[-0.0014579426497221,0.087772682309151,0.10380087792873]],[[-0.010725389234722,-0.034142505377531,-0.004839132539928],[-0.037305548787117,0.022893540561199,0.068010695278645],[0.026323452591896,-0.041270799934864,0.043633278459311]],[[-0.021942980587482,-0.022213684394956,0.035896722227335],[-0.04700942710042,-0.073573365807533,-0.094511918723583],[0.03518046438694,0.04938580840826,-0.11495097726583]],[[-0.019757378846407,-0.048527505248785,0.024592790752649],[-0.022615619003773,0.030580256134272,0.010129408910871],[0.010865549556911,-0.026822263374925,-0.026845885440707]],[[0.005627166479826,0.027898771688342,-0.00047746978816576],[-0.064203873276711,-0.1111466884613,-0.020172420889139],[-0.087648257613182,-0.05382177606225,0.13023363053799]],[[-0.070687554776669,0.062905095517635,-0.047944936901331],[-0.090511821210384,0.088126383721828,0.11789575964212],[0.048138417303562,0.004263446200639,0.065367147326469]],[[-0.069691754877567,-0.07407233864069,-0.016820009797812],[0.010642255656421,-0.043699506670237,-0.12819103896618],[0.1303293555975,0.052888110280037,-0.015144259668887]],[[0.0059977089986205,-0.046994876116514,0.0084024276584387],[0.029534809291363,0.0823570266366,0.032800395041704],[0.042075231671333,0.044427160173655,0.017731567844748]],[[0.054468333721161,-0.037970092147589,0.082978144288063],[0.051114618778229,-0.013762765564024,0.039239022880793],[-0.036393191665411,-0.050133608281612,-0.069112725555897]],[[-0.013482651673257,0.017962973564863,0.033929128199816],[-0.012372500263155,-0.10001502931118,0.038047429174185],[0.026134168729186,0.034128576517105,0.057857237756252]],[[0.0092852665111423,0.057266686111689,-0.010405547916889],[-0.0010708556510508,0.013842495158315,0.030808012932539],[0.057882286608219,0.010721545666456,-0.031519655138254]],[[-0.0059309615753591,0.076200768351555,0.0066082254052162],[-0.029386965557933,-0.0004907957627438,0.014192476868629],[0.062395293265581,0.013256308622658,0.032304234802723]],[[0.05147136375308,0.032073441892862,0.079281896352768],[0.054772090166807,-0.028479347005486,-0.11606835573912],[0.060955502092838,0.056162990629673,-0.03962055593729]],[[-0.017051974311471,-0.0099814226850867,-0.0088463127613068],[-0.03002093359828,0.011592586524785,-0.099656507372856],[0.05401286482811,-0.054001666605473,-0.037606466561556]],[[-0.028282698243856,-0.012550665996969,-0.043048955500126],[0.0042395386844873,-0.01398282777518,-0.031208420172334],[-0.012274840846658,0.062635034322739,0.036089580506086]],[[0.046015370637178,0.025111831724644,-0.071198925375938],[0.043823596090078,-0.025856034830213,-0.060099851340055],[-0.0073391431942582,-0.072550222277641,0.04173818230629]],[[0.066524431109428,0.030510338023305,-0.033502899110317],[-0.10574495792389,-0.069226734340191,-0.083590768277645],[-0.072958648204803,-0.0029592795763165,0.050781238824129]],[[0.058233805000782,0.01372354850173,0.0057389810681343],[-0.083349242806435,0.0051485728472471,0.066935479640961],[-0.034433621913195,0.032355513423681,0.0057559120468795]],[[0.043623853474855,-0.0025725169107318,-0.012550166808069],[0.060149744153023,-0.044714711606503,-0.0048964195884764],[-0.029727935791016,-0.0007652320782654,0.07345437258482]],[[0.0038944622501731,0.023571671918035,0.02979950606823],[0.043152373284101,0.058681573718786,0.099968247115612],[0.1809711009264,-0.051593728363514,-0.068820707499981]],[[0.050760377198458,-0.13009390234947,-0.048436123877764],[0.097954295575619,0.011573927477002,0.038282416760921],[0.021493770182133,0.020369675010443,-0.11003610491753]],[[-0.018079180270433,0.044433772563934,0.10502830147743],[-0.05804280564189,-0.14497463405132,-0.13284242153168],[0.014483887702227,0.062997713685036,-0.046901445835829]],[[-0.034523352980614,0.023099085316062,-0.053648412227631],[-0.10644134134054,-0.056070808321238,0.063135363161564],[-0.092230796813965,-0.081333696842194,-0.001108487485908]],[[-0.061266236007214,-0.051303274929523,-0.098880589008331],[-0.024912478402257,-0.029821218922734,0.017704386264086],[0.036542754620314,-0.068895392119884,0.019974397495389]],[[-0.01463911216706,0.023731034249067,0.029156303033233],[-0.06683673709631,-0.0088811200112104,0.050200585275888],[-0.096710659563541,-0.066822201013565,-0.025011764839292]],[[0.022585451602936,-0.066450379788876,0.029701493680477],[0.042400538921356,0.03669086843729,-0.016243128105998],[0.029385436326265,-0.011685887351632,0.09382975846529]],[[-0.050727520138025,0.11514965444803,0.028855280950665],[-0.070698499679565,-0.10079611837864,-0.00035532974288799],[0.040463361889124,0.0050145047716796,-0.079843156039715]],[[-0.075542323291302,-0.044098261743784,-0.047796778380871],[0.050144590437412,-0.0050209229812026,0.041344724595547],[-0.066889248788357,-0.088648103177547,-0.035639300942421]],[[-0.022068286314607,-0.050267569720745,0.14132417738438],[0.011928768828511,0.0084358286112547,0.012062815017998],[-0.047633316367865,-0.0029517225921154,0.081440925598145]],[[0.038495227694511,0.0028516198508441,-0.15874807536602],[-0.080156624317169,-0.017995495349169,0.12188819795847],[-0.035546973347664,-0.059684406965971,-0.0041764602065086]],[[-0.060560736805201,0.012788790278137,0.0060205371119082],[0.0062867072410882,0.10169822722673,0.091926388442516],[-0.049737464636564,-0.073003940284252,0.014654467813671]],[[-0.0045758285559714,-0.028915969654918,-0.01498934160918],[-0.03351879119873,-0.10773506760597,-0.070032082498074],[-0.066714018583298,0.053578019142151,-0.027460237964988]],[[0.13824705779552,-0.021962577477098,-0.09480907022953],[-0.052908763289452,-0.012284807860851,0.01461910456419],[-0.049200870096684,-0.014543514698744,-0.02685759589076]],[[-0.097181469202042,-0.022041942924261,0.076742760837078],[0.092321328818798,0.10552433878183,0.0067635015584528],[0.055608335882425,-0.0082810344174504,0.11506737023592]],[[-0.13681581616402,-0.038308657705784,-0.030943542718887],[0.012327118776739,0.049393530935049,-0.039466165006161],[-0.038097202777863,0.080610103905201,0.013482134789228]],[[0.088719978928566,-0.035555198788643,0.073958076536655],[0.040800217539072,-0.17365337908268,-0.048808697611094],[-0.095644541084766,0.055458333343267,0.04904106259346]],[[-0.0044667590409517,-0.098946630954742,-0.06271967291832],[0.013423562049866,-0.022483125329018,0.018907429650426],[0.025492420420051,0.0081896958872676,-0.011070614680648]],[[0.061494130641222,0.056339107453823,0.068574078381062],[0.053312074393034,-0.00025842394097708,-0.02883442491293],[-0.10484798252583,0.067672476172447,-0.053571570664644]],[[-0.097330890595913,-0.090191774070263,-0.063802003860474],[-0.027551410719752,-0.01167552638799,0.032682206481695],[0.10040376335382,-0.028722934424877,0.053788974881172]],[[-0.01990925334394,-0.081301741302013,-0.0716717466712],[-0.052571754902601,-0.0038197722751647,-0.16445134580135],[-0.071125745773315,0.020379545167089,0.071905851364136]],[[-0.0088210450485349,-0.082876920700073,-0.0091915559023619],[-0.085391364991665,-0.01506313867867,-0.0082194339483976],[0.031520530581474,0.1799580603838,0.058849517256021]],[[0.0119599532336,0.066077820956707,0.0077650439925492],[-0.015580703504384,0.0072229052893817,-0.026166738942266],[-0.0043402658775449,0.0039555407129228,-0.037576533854008]],[[-0.084914363920689,-0.049053285270929,0.0089474692940712],[-0.019494233652949,-0.10579412430525,-0.061126992106438],[-0.018427381291986,0.023721860721707,-0.011875265277922]],[[-0.14182032644749,-0.062298055738211,0.053528293967247],[-0.086149461567402,-0.068181730806828,0.033677645027637],[0.0020800139755011,-0.057982135564089,0.071697145700455]],[[0.040136530995369,-0.049103431403637,0.049059465527534],[0.050140645354986,-0.069979667663574,0.040494125336409],[0.01846537925303,0.069273620843887,0.05505545437336]],[[-0.043514210730791,0.0084793772548437,0.0085725951939821],[-0.075621008872986,0.051842007786036,-0.038189396262169],[-0.062418188899755,0.042472492903471,0.021886387839913]]],[[[-0.11921305954456,-0.0037973497528583,0.040436793118715],[0.029570935294032,0.022941019386053,0.0053962455131114],[-0.037877306342125,-0.050709173083305,0.058811470866203]],[[-0.034339364618063,0.083579860627651,0.09463582187891],[-0.066321901977062,0.084496513009071,0.0056023234501481],[-0.0077901701442897,-2.3307104129344e-05,-0.0025187917053699]],[[-0.079016827046871,-0.083765394985676,0.015177494846284],[-0.08340311050415,-0.046757213771343,-0.022901434451342],[-0.022755093872547,-0.018075289204717,-0.042842540889978]],[[0.017473367974162,-0.05135190859437,-0.047166913747787],[0.023631040006876,-0.060030717402697,-0.059929393231869],[0.0019066688837484,0.012715895660222,-0.055419635027647]],[[0.015433477237821,0.00030141969909891,0.03078861348331],[-0.055724702775478,-0.050726816058159,0.03685699403286],[-0.026609685271978,-0.11898100376129,-0.093312233686447]],[[0.037660054862499,0.063697218894958,-0.019759900867939],[-0.017159586772323,-0.049599934369326,0.010165570303798],[-0.051419023424387,-0.039023071527481,-0.053989127278328]],[[-0.12608014047146,-0.022629691287875,0.1058794260025],[-0.020953796803951,0.10834428668022,-0.02855303324759],[0.063971698284149,-0.049663435667753,-0.050498891621828]],[[0.025974288582802,0.12360678613186,0.029709789901972],[0.012739059515297,-0.010083254426718,-0.055519718676805],[-0.015142318792641,0.017402419820428,-0.031292904168367]],[[0.071327276527882,-0.06423482298851,0.017619587481022],[0.041443571448326,-0.038961414247751,0.0054865684360266],[-0.027290457859635,-0.081058047711849,0.040977165102959]],[[-0.095185115933418,-0.01041544508189,-0.029011826962233],[-0.056206274777651,0.0074021006003022,0.0017977794632316],[-0.091523498296738,0.1281590461731,0.091906562447548]],[[0.08573517203331,-0.012785540893674,0.013494045473635],[0.034782633185387,-0.014302431605756,0.056057576090097],[0.03318578004837,-0.064434096217155,-0.057521920651197]],[[0.063230112195015,0.010276800021529,-0.072200387716293],[0.02821871638298,0.0036021640989929,0.0034098497126251],[0.054198004305363,0.027701579034328,0.034058570861816]],[[-0.039713565260172,-0.076550409197807,0.0068254796788096],[-0.026339802891016,0.014541086740792,0.0022599741350859],[-0.066726461052895,-0.0060308203101158,0.05414966493845]],[[-0.071458876132965,-0.093294687569141,-0.10576555132866],[-0.053003590553999,0.028691727668047,-0.12503157556057],[-0.081199012696743,-0.019953906536102,-0.076460272073746]],[[0.043442171066999,-0.026114322245121,0.018256118521094],[0.00013168845907785,-0.080008149147034,-0.044692497700453],[-0.0011038087541237,0.0030228625983,-0.046122182160616]],[[0.13953006267548,0.0021062979940325,0.0039699072949588],[0.050257485359907,-0.058655846863985,0.029750706627965],[-0.065905101597309,-0.070298813283443,0.00456657493487]],[[0.026699071750045,0.098930224776268,-0.10288905352354],[0.091892912983894,0.030354600399733,-0.02532672137022],[0.054017692804337,-0.034909665584564,-0.017147492617369]],[[0.014536487869918,-0.0068882061168551,-0.038017075508833],[0.085671208798885,0.010071586817503,-0.07176423817873],[0.013594736345112,-0.009308036416769,-0.075820252299309]],[[-0.09483078122139,0.007839435711503,0.04910796880722],[0.054551411420107,0.11576497554779,0.0069823488593102],[-0.072870939970016,0.038181006908417,0.0015766737051308]],[[-0.019230097532272,-0.0059691416099668,0.0083074131980538],[-0.0057950848713517,-0.0053216409869492,0.074649669229984],[-0.066083312034607,-0.0082374149933457,0.063120044767857]],[[-0.060771889984608,-0.026624545454979,-0.092778190970421],[-0.043897163122892,-0.0023830386344343,-0.19303987920284],[-0.036928568035364,-0.04994210973382,-0.18037824332714]],[[-0.011800191365182,-0.026919627562165,-0.050631482154131],[0.10994894057512,-0.089002445340157,-0.0068151936866343],[-0.028986059129238,0.059879943728447,-0.026894189417362]],[[-0.013002865947783,-0.040981110185385,-0.098551630973816],[-0.018756430596113,-0.043192002922297,-0.076784864068031],[0.019143307581544,-0.028532523661852,-0.0040952893905342]],[[0.055061034858227,-0.010780677199364,0.1043266877532],[0.057962384074926,-0.047627855092287,0.16704577207565],[0.012055213563144,0.035475287586451,-0.038349889218807]],[[-0.11982291191816,-0.028057275339961,-0.063876017928123],[0.10731113702059,0.031542178243399,-0.0032341829501092],[0.0081995623186231,-0.0077448878437281,0.01617226190865]],[[-0.026889823377132,0.054213773459196,0.074604377150536],[-0.044653434306383,0.0099374279379845,0.025985093787313],[-0.03603108227253,0.059629704803228,0.012833779677749]],[[0.061290249228477,-0.047007948160172,-0.004553799983114],[0.02741227298975,-0.071194723248482,-0.0036099134013057],[0.067486919462681,-0.11306572705507,0.00083977897884324]],[[0.071737110614777,0.020412977784872,0.064755246043205],[-0.022564735263586,0.037781313061714,0.12150482088327],[0.0013893205905333,-0.055811177939177,0.01645028591156]],[[-0.02741433493793,-0.022224809974432,0.044431023299694],[0.042963586747646,-0.031330838799477,0.00043717844528146],[0.11856660246849,-0.010970745235682,-0.10573764145374]],[[0.057815093547106,0.0144136948511,0.036528866738081],[-0.024108313024044,0.0050930022262037,0.083859257400036],[0.02448745816946,-0.086731314659119,0.040270082652569]],[[0.032890919595957,-0.069260708987713,0.020806739106774],[0.081699252128601,-0.13713979721069,0.04368107393384],[-0.026067806407809,-0.015124019235373,0.048782303929329]],[[-0.10663515329361,0.026263689622283,0.013141967356205],[0.040411770343781,0.075322352349758,-0.048509553074837],[-0.014416166581213,-0.039758041501045,0.017455684021115]],[[-0.11549320071936,-0.014205196872354,-0.079939134418964],[-0.022759666666389,-0.038053836673498,-0.023495718836784],[0.044751785695553,0.020662881433964,0.0077367266640067]],[[-0.03139416873455,-0.019233133643866,-0.050014410167933],[-0.16597117483616,-0.095069825649261,0.048456989228725],[-0.1442912966013,-0.080188810825348,-0.01450274977833]],[[-0.065919876098633,-0.025256611406803,0.057627022266388],[0.048508606851101,0.02298267185688,0.0046397768892348],[0.019317889586091,0.0041466052643955,-0.026927618309855]],[[-0.021170502528548,-0.0026834104210138,-0.062377631664276],[-0.040654696524143,-0.1179133951664,0.055654983967543],[-0.028857607394457,-0.019258154556155,0.046104315668344]],[[-0.028832238167524,0.017985559999943,-0.035585679113865],[0.072641745209694,-0.041481837630272,0.033004801720381],[-0.014663450419903,-0.015096556395292,0.079077281057835]],[[-0.024330854415894,0.042785957455635,-0.0012287597637624],[-0.078063033521175,0.015786439180374,0.063345119357109],[-0.085406899452209,0.0031041610054672,0.047547943890095]],[[-0.026189502328634,-0.038166061043739,-0.11290105432272],[0.0023251976817846,-0.0079853916540742,0.044758517295122],[-0.0045034964568913,0.014142417348921,-0.061860367655754]],[[-0.0721056163311,-0.041204083710909,-0.10233180224895],[-0.046819735318422,0.028329672291875,-0.099469982087612],[-0.065166756510735,0.014328354969621,-0.094418823719025]],[[-0.0029769924003631,0.036413226276636,-0.026194352656603],[0.02578248269856,0.016810202971101,-0.052098304033279],[0.010706375353038,-0.072599530220032,-0.081441484391689]],[[0.0068056480959058,0.012261755764484,-0.017566191032529],[-0.016754014417529,-0.023093398660421,0.030149102210999],[0.047127615660429,0.10212998092175,-0.043135080486536]],[[-0.069891713559628,0.14297461509705,-0.06590723246336],[-0.042648613452911,0.0030076466500759,-0.20046040415764],[-0.031757462769747,0.023942371830344,-0.10857975482941]],[[-0.001882151584141,-0.0012392228236422,-0.0017869940493256],[0.038145959377289,0.014379098080099,-0.031652525067329],[-0.085815884172916,-0.067906245589256,-0.039615776389837]],[[0.070953860878944,0.010554177686572,-0.041332114487886],[-0.046472318470478,-0.015430115163326,0.019091052934527],[-0.012563968077302,-0.018670884892344,0.02308639138937]],[[-0.061264295130968,0.025614885613322,0.063427053391933],[-0.031949400901794,0.01191536989063,0.021109966561198],[-0.071053959429264,0.0071741561405361,0.051863305270672]],[[-0.10694237798452,0.090282760560513,-0.035053364932537],[-0.021604428067803,-0.072153963148594,0.11810244619846],[0.011961898766458,0.012103533372283,-0.052738543599844]],[[-0.0011517582461238,-0.091009944677353,-0.034893717616796],[0.029871925711632,-0.078957356512547,-0.031138064339757],[-0.014936250634491,-0.041481856256723,-0.022481637075543]],[[-0.016642900183797,-0.023167941719294,-0.00013013601710554],[-0.017444349825382,-0.070002406835556,-0.0037343925796449],[0.0068145743571222,-0.029915060847998,0.0042304727248847]],[[-0.027741026133299,-0.0087123885750771,-0.0070061055012047],[0.047429330646992,0.0085767703130841,-0.082190945744514],[0.017442371696234,0.037131678313017,0.071593411266804]],[[-0.0018478076672181,-0.026850830763578,0.03320787101984],[0.015837546437979,-0.03801616281271,0.037290658801794],[0.01642707362771,0.041866861283779,-0.050633031874895]],[[-0.036963034421206,0.01822205632925,-0.061993103474379],[0.060667604207993,-0.083651304244995,0.029022593051195],[-0.1109222471714,0.038308020681143,0.028758231550455]],[[0.07462564855814,0.040808226913214,0.094472922384739],[-0.083694279193878,-0.065705135464668,0.11080326139927],[-0.078226827085018,-0.074183084070683,0.038564335554838]],[[0.02779589779675,0.058925036340952,-0.020336354151368],[0.051766525954008,-0.0023290417157114,0.014327733777463],[0.045493204146624,0.02008361928165,-0.022669952362776]],[[-0.048587054014206,0.028758814558387,-0.016625029966235],[0.018865656107664,-0.049957890063524,0.10459430515766],[-0.094245322048664,-0.0013261344283819,-0.036864433437586]],[[-0.056961096823215,-0.034688033163548,0.011390208266675],[-0.0067097349092364,0.0096697751432657,0.0018491906812415],[0.12366832047701,-0.065691336989403,0.075226426124573]],[[0.04644700884819,-0.012379173189402,0.080833896994591],[-0.0071920207701623,-0.098136216402054,0.094282254576683],[-0.024685580283403,-0.043619621545076,-0.058090589940548]],[[0.044021110981703,-0.040990084409714,-0.004248196259141],[-0.030891429632902,-0.092016987502575,-0.01098523940891],[-0.099736943840981,-0.15875388681889,-0.07886054366827]],[[0.14003393054008,0.045099407434464,0.0096141779795289],[0.075521871447563,0.079437904059887,-0.00027471492649056],[0.045366015285254,-0.0021285740658641,-0.020751221105456]],[[0.023543678224087,0.082070782780647,-0.071673646569252],[0.036840938031673,-0.0055350242182612,-0.050489608198404],[0.036405723541975,-0.0099945673719049,-0.047199882566929]],[[-0.034217894077301,-0.0095911156386137,-0.041490871459246],[-0.10217572748661,0.0032755583524704,-0.054308753460646],[-0.011631060391665,0.022312857210636,-0.068798191845417]],[[-0.10409958660603,0.0070776641368866,0.028093660250306],[-0.013446121476591,-0.010620458982885,-0.028936823830009],[0.036372032016516,0.08416298776865,-0.076394326984882]],[[0.050655890256166,-0.030522614717484,0.030754482373595],[0.00797154661268,-0.049007479101419,-0.05737779289484],[0.074294835329056,-0.06347743421793,0.023932557553053]],[[0.085888162255287,0.030746771022677,0.050336066633463],[-0.12001283466816,-0.052862413227558,-0.026757592335343],[-0.046649567782879,0.036475874483585,0.071396969258785]]],[[[-0.038770101964474,-0.13601087033749,-0.046191938221455],[-0.059928398579359,0.043846733868122,0.022469870746136],[-0.044925697147846,-0.022602692246437,-0.047175064682961]],[[0.031682789325714,-0.04408011212945,-0.0054153786040843],[0.014105252921581,-0.034546263515949,0.039766397327185],[-0.023044154047966,0.036868002265692,-0.031985230743885]],[[0.00030426925513893,-0.062784910202026,0.023256490007043],[-0.031154150143266,-0.055531747639179,0.071943558752537],[0.05724873021245,-0.11995680630207,0.01853384077549]],[[-0.12462932616472,-0.019567495211959,0.039189927279949],[-0.10598237067461,-0.048376683145761,-0.0012785188155249],[-0.051017709076405,0.0081653380766511,-0.045063573867083]],[[-0.020953997969627,-0.016942942515016,0.052734322845936],[0.050588227808475,0.0090192593634129,-0.17592903971672],[-0.13952124118805,-0.070474803447723,-0.081715129315853]],[[0.022577384486794,-0.054777380079031,-0.11596625298262],[-0.070192418992519,0.051694016903639,0.026551332324743],[0.0035280555021018,-0.0024241621140391,-0.051748037338257]],[[0.046299837529659,-0.0509835742414,-0.017511626705527],[-0.039733666926622,-0.10833654552698,-0.0086971009150147],[-0.047647073864937,-0.032842680811882,0.00094833713956177]],[[0.0030236230231822,-0.076828882098198,0.013334752060473],[0.018518483266234,-0.058123711496592,0.020464219152927],[-0.055970743298531,0.011147858574986,-0.059378787875175]],[[-0.10495985299349,0.078329205513,-0.043305587023497],[0.13302631676197,-0.037048574537039,0.034832458943129],[-0.018106685951352,-4.8384612455266e-05,-0.068524934351444]],[[-0.050366751849651,-0.085604146122932,-0.039207797497511],[0.003358768299222,0.016677295789123,0.040157470852137],[0.031547602266073,0.0016858329763636,-0.0093646934255958]],[[-0.023508902639151,0.035992678254843,0.045104879885912],[-0.022986978292465,-0.052014332264662,-0.036108542233706],[-0.091640882194042,0.02028720267117,0.10792272537947]],[[-0.08266893029213,-0.015321101993322,-0.018623549491167],[-0.088986366987228,0.032769504934549,0.039462123066187],[0.044290777295828,-0.05311580747366,-0.028601795434952]],[[0.019849415868521,-0.0096560558304191,-0.027853997424245],[0.057343535125256,-0.12896631658077,-2.0656643755501e-05],[0.0010340849403292,0.028600133955479,-0.0263283662498]],[[0.076411679387093,-0.030766662210226,0.012838242575526],[0.013061700388789,-0.022890098392963,0.052162285894156],[0.012540387921035,-0.0038702508900315,0.1125146150589]],[[-0.044536959379911,-0.048106253147125,0.030413979664445],[-0.0012390878982842,-0.0056644813157618,0.034989804029465],[-0.016296625137329,-0.078498184680939,0.029561910778284]],[[0.04372276365757,0.077366009354591,-0.075221560895443],[0.010176902636886,0.088923156261444,-0.045719675719738],[-0.070451274514198,-0.10364948958158,-0.060417778789997]],[[-0.06066707894206,0.12727190554142,0.029559001326561],[0.0012001735158265,0.03947451710701,-0.039636630564928],[-0.038028363138437,-0.043947584927082,0.084766238927841]],[[0.13496296107769,0.0092147784307599,0.031851351261139],[0.010148343630135,-0.034090247005224,-0.091747626662254],[-0.081740498542786,-0.038446724414825,0.027777289971709]],[[-0.036396242678165,-0.058792978525162,0.010537132620811],[0.019985666498542,-0.059466060250998,-0.022777052596211],[0.014673424884677,-0.016977626830339,-0.093876354396343]],[[0.034232370555401,0.022086337208748,-0.032145146280527],[0.0011298689059913,-0.0054890159517527,0.012926041148603],[-0.0022023885976523,0.00046164053492248,-0.011290151625872]],[[-0.0069763096980751,-0.070844948291779,-0.043047748506069],[0.043672420084476,0.071747392416,0.026038626208901],[-0.024441687390208,0.078689694404602,0.089437454938889]],[[0.090219475328922,-0.039973646402359,-0.11392366886139],[0.023326322436333,-0.077694274485111,0.011152008548379],[0.096933245658875,-0.025794332846999,-0.10276867449284]],[[0.052460055798292,0.024313924834132,0.051832620054483],[0.0098859751597047,-0.032431576400995,-0.066407114267349],[0.064299881458282,0.039864957332611,-0.040641620755196]],[[0.075680509209633,0.10578259825706,0.081229418516159],[-0.0010780033189803,0.0073968316428363,0.044735196977854],[-0.059842880815268,0.055014804005623,0.16495761275291]],[[0.064532965421677,-0.01611852645874,0.026153082028031],[-0.002982776844874,0.081315509974957,0.010355222970247],[-0.027910558506846,0.13889554142952,0.16163124144077]],[[0.020117629319429,0.045855022966862,0.0016868133097887],[-0.031992394477129,-0.048805169761181,0.051165789365768],[-0.022862436249852,-0.028617586940527,0.11781078577042]],[[0.016655838117003,0.0079036420211196,-0.076148383319378],[-0.055303204804659,0.075057782232761,0.093791678547859],[-0.0035450579598546,-0.054658286273479,0.0069763623178005]],[[0.022886963561177,-0.018833424896002,-0.036032509058714],[-0.033556662499905,-0.035111904144287,-0.092663146555424],[0.031603500247002,-0.00014456252392847,0.0066519817337394]],[[-0.18852378427982,-0.016961297020316,-0.06057795137167],[-0.07989776134491,-0.011233081109822,-0.044346988201141],[-0.056695692241192,0.055666126310825,0.021051120012999]],[[-0.019742457196116,-0.019447600468993,0.0063597681000829],[-0.070571355521679,-0.00627824338153,-0.022283656522632],[-0.021376525983214,-0.099286377429962,0.031810164451599]],[[0.032279957085848,-0.036935660988092,0.073850020766258],[0.02291975915432,-0.031762190163136,-0.19193790853024],[-0.13008047640324,0.10204875469208,-0.025597982108593]],[[0.095587857067585,-0.020667960867286,0.02221998013556],[0.054886981844902,-0.027645859867334,-0.01379482448101],[-0.011636639013886,0.012864174321294,-0.0010494290618226]],[[0.00052920740563422,0.033140312880278,0.037185803055763],[-0.0063302097842097,0.04255011305213,-0.031087497249246],[-0.024948993697762,-0.075350426137447,-0.051387216895819]],[[0.009038707241416,0.095491960644722,0.05392899364233],[-0.054187435656786,0.14200723171234,-0.042844820767641],[0.0074516576714814,-0.0035455145407468,0.0067230225540698]],[[0.024760881438851,0.054805546998978,-0.03273332118988],[0.036350473761559,0.03621493652463,-0.031635224819183],[-0.048598553985357,0.076949402689934,0.048904091119766]],[[0.014636358246207,-0.031218469142914,-0.060207426548004],[0.011367144063115,0.0047629899345338,-0.045162074267864],[0.04473128169775,0.00068820267915726,-0.036056157201529]],[[0.052333004772663,0.0085543328896165,0.017330268397927],[-0.0091103157028556,-0.099970795214176,-0.056074269115925],[-0.0091782603412867,0.076940581202507,-0.13695047795773]],[[-0.001321557094343,-0.071550317108631,-0.0053339055739343],[0.010342388413846,-0.017939973622561,0.056247759610415],[0.031568054109812,0.049223348498344,-0.041948545724154]],[[0.069780230522156,0.01825194619596,0.042145900428295],[-0.038254212588072,-0.011648012325168,0.049264971166849],[-0.01365527138114,0.026391834020615,0.066225200891495]],[[-0.021324899047613,0.014058144763112,-0.083843551576138],[-0.013260105624795,-0.027752393856645,0.058264560997486],[-0.018694335594773,-0.078416369855404,-0.008044458925724]],[[-0.025476031005383,0.015687495470047,0.036632731556892],[0.02552374638617,0.036793142557144,0.06532359868288],[-0.090805098414421,-0.11309617012739,0.0011964738368988]],[[0.096856825053692,-0.03747034817934,0.013165772892535],[-0.060195583850145,-0.010886180214584,-0.02838521450758],[-0.080030225217342,0.029576657339931,-0.017126908525825]],[[-0.0043345890007913,-0.05885436758399,0.032141555100679],[0.068263612687588,-0.057717446237803,0.018245587125421],[-0.024587493389845,-0.079812690615654,-0.010952612385154]],[[0.0024968096986413,-0.034411188215017,-0.02176352776587],[-0.049894001334906,-0.02217223122716,-0.055391307920218],[-0.036617759615183,0.070289082825184,0.022740539163351]],[[-0.0096048908308148,-0.045611564069986,0.027501631528139],[-0.019946400076151,-0.044974494725466,0.058598529547453],[0.10166296362877,-0.15103627741337,-0.12820467352867]],[[0.059212405234575,0.0069074686616659,-0.023795150220394],[-0.13643485307693,-0.046494353562593,0.018048858270049],[0.093419820070267,0.015988390892744,0.0063542206771672]],[[-0.045517075806856,-0.021284619346261,-0.034103464335203],[-0.024944398552179,0.035416029393673,0.079395279288292],[-0.064713820815086,0.019543757662177,0.10139428824186]],[[-0.024537401273847,-0.041138280183077,-0.086320467293262],[0.1067677885294,0.074018239974976,-0.0099912136793137],[-0.12878873944283,-0.11717227101326,-0.18512976169586]],[[0.016662495210767,0.017534134909511,-0.037298403680325],[0.043003179132938,0.022468447685242,-0.11366421729326],[-0.081570290029049,-0.0091657396405935,0.041774708777666]],[[-0.0049756281077862,-0.08044845610857,-0.081847295165062],[0.032533209770918,0.043296609073877,-0.08212635666132],[0.12489683926105,-0.10230952501297,-0.052804175764322]],[[0.024158427491784,0.039649043232203,-0.016270058229566],[-0.051237385720015,0.015877436846495,-0.036090802401304],[-0.038172442466021,-0.080426558852196,-0.11992313712835]],[[0.050551488995552,-0.05997620895505,-0.0339833535254],[0.044113058596849,0.0090901954099536,0.078666932880878],[0.053612537682056,0.057631269097328,0.13458412885666]],[[-0.032665997743607,-0.018174167722464,-0.056895945221186],[-0.054561052471399,0.13162994384766,-0.07464824616909],[-0.060807950794697,-0.0044251107610762,-0.13234342634678]],[[-0.11458599567413,-0.09311631321907,0.10350243002176],[-0.093353524804115,0.00091663672355935,-0.0024082912132144],[-0.0046255425550044,0.067350007593632,0.0061136926524341]],[[-0.0021643098443747,-0.0078184632584453,-0.011976229958236],[0.019009117037058,0.042693737894297,0.03274042531848],[-0.0007735132239759,0.012671271339059,-0.019810192286968]],[[0.025004284456372,-0.00096632644999772,-0.032126169651747],[0.059452675282955,-0.018260767683387,0.062041200697422],[-0.026659360155463,-0.038347583264112,-0.0089816711843014]],[[0.0055041168816388,0.096232458949089,0.0086029674857855],[-0.070274464786053,0.079051986336708,-0.034664962440729],[-0.019322767853737,-0.062764145433903,0.033885430544615]],[[0.0081590563058853,-0.0076445378363132,-0.034107849001884],[-0.0085518583655357,-0.019255420193076,-0.050603851675987],[0.013624478131533,0.0049106874503195,0.030319042503834]],[[0.12234594672918,-0.12505835294724,0.0045677740126848],[0.040174763649702,0.058896765112877,0.086696222424507],[0.04567888751626,-0.010037113912404,0.034255646169186]],[[-0.079037070274353,-0.0057100704871118,0.025351997464895],[0.0076910657808185,0.0031591528095305,-0.0039304797537625],[0.000484603602672,-0.010546742938459,0.053578898310661]],[[0.070113748311996,-0.023184577003121,0.060503154993057],[-0.051299508661032,0.018645873293281,0.010297312401235],[-0.019984966143966,-0.0056204907596111,-0.03413924202323]],[[0.11131777614355,0.022874213755131,-0.039861496537924],[0.012357989326119,-0.040987033396959,0.019906396046281],[-0.023059448227286,0.053682688623667,0.040524698793888]],[[0.010247519239783,-0.031551830470562,-0.0039196717552841],[-0.061213906854391,0.096700079739094,0.010072487406433],[-0.013286935165524,-0.013357874006033,-0.087506897747517]],[[-0.019698454067111,-0.050135623663664,0.025313483551145],[0.048169780522585,-0.064021989703178,-0.0047988225705922],[-0.019551331177354,-0.10876578092575,-0.071819633245468]]],[[[-0.095494844019413,-0.052275706082582,-0.056654203683138],[0.03990076482296,-0.075742870569229,-0.1167231798172],[0.017061060294509,0.098923206329346,-0.02594811283052]],[[-0.092574000358582,-0.030716115608811,-0.10014306753874],[-0.081860095262527,-0.057518307119608,-0.048836033791304],[-0.058334849774837,0.047875735908747,0.040673322975636]],[[-0.091683432459831,-0.031462918967009,-0.09844646602869],[-0.026256337761879,-0.15583910048008,-0.018432386219501],[-0.032725553959608,-0.046861696988344,-0.089530192315578]],[[-0.039352115243673,0.052049417048693,-0.094259977340698],[0.09345854818821,-0.10930164158344,-0.1357079744339],[0.026685180142522,-0.03679247200489,-0.039166793227196]],[[0.00057286332594231,-0.08557240664959,0.060013901442289],[-0.10399782657623,0.12519274652004,-0.035132810473442],[-0.042551159858704,-0.072057209908962,-0.024277810007334]],[[0.074893869459629,0.066683515906334,-0.063243292272091],[-0.017637887969613,-0.10739909112453,-0.079599551856518],[0.071865804493427,-0.03678211197257,-0.079159662127495]],[[-0.010312404483557,-0.096243761479855,0.028536550700665],[-0.043480027467012,-0.068890757858753,-0.075871959328651],[-0.077442675828934,-0.15444016456604,0.059721790254116]],[[-0.013974873349071,0.020726025104523,0.022941645234823],[0.0024296273477376,-0.0046701282262802,-0.022642342373729],[-0.04707745462656,0.02673626318574,0.047896858304739]],[[0.018940437585115,0.061506692320108,0.0090356972068548],[-0.0066549456678331,0.036363940685987,0.037749044597149],[0.019876230508089,-0.050843756645918,-0.04598892480135]],[[-0.037670116871595,0.028368292376399,-0.02198631875217],[0.03166363760829,-0.10265220701694,-0.022681437432766],[-0.04401733726263,-0.056657753884792,-0.035059787333012]],[[0.018139163032174,0.0077162976376712,-0.10803692787886],[-0.0090413568541408,-0.069125346839428,0.028110105544329],[0.026553582400084,-0.032089032232761,-0.016327200457454]],[[0.020928746089339,-0.061467565596104,0.042904481291771],[-0.031990583986044,-0.022803952917457,-0.17399372160435],[-0.0059263128787279,-0.18220049142838,0.038969285786152]],[[-0.0051754368469119,-0.020198868587613,-0.096789747476578],[-0.034753672778606,-0.12671764194965,0.041680242866278],[0.032258465886116,-0.017465574666858,-0.085591062903404]],[[-0.13138097524643,0.084892295300961,-0.052909344434738],[0.058293953537941,-0.052351385354996,0.033252611756325],[-0.085292562842369,0.10398485511541,0.011434522457421]],[[0.0027066229376942,0.0062410603277385,-0.081382051110268],[-0.019521795213223,0.012599996291101,-0.17743289470673],[-0.022400710731745,0.036451913416386,0.0015104467747733]],[[-0.032162576913834,-0.14433500170708,-0.11912368237972],[-0.032962128520012,0.064187690615654,-0.12384015321732],[0.29336008429527,-0.14227414131165,0.038818035274744]],[[-0.016792960464954,-0.12063605338335,0.16889311373234],[-8.799419447314e-05,0.050148870795965,-0.078623697161674],[0.16741049289703,-0.055335164070129,-0.074569910764694]],[[-0.0072710076346993,-0.082861840724945,-0.0053795366548002],[-0.026898786425591,-0.04943585768342,-0.048841625452042],[-0.018225597217679,-0.051708526909351,-0.0015160195762292]],[[-0.013216314837337,-0.00039248957182281,0.050077717751265],[0.014865286648273,0.025599021464586,-0.0352080501616],[-0.025956064462662,0.063603930175304,-0.11143420636654]],[[0.0032184366136789,0.013868493959308,-0.053402174264193],[0.019940614700317,-0.0028836573474109,0.0073507134802639],[0.039002317935228,-0.014432442374527,-0.038156524300575]],[[0.017957519739866,-0.091247029602528,-0.0088940821588039],[0.037783727049828,0.045419994741678,-0.069780260324478],[0.020600801333785,0.068189948797226,0.0012571520637721]],[[0.099864199757576,0.10829758644104,0.092997439205647],[-0.10409820079803,-0.044635605067015,0.00064194126753137],[-0.062849178910255,-0.14638939499855,-0.010857158340514]],[[-0.0037235382478684,-0.046850107610226,-0.043429374694824],[-0.11440375447273,0.028005858883262,0.027269357815385],[0.089524641633034,-0.044863980263472,0.058201152831316]],[[-0.036361217498779,0.045008704066277,-0.036754138767719],[-0.028227804228663,0.056711442768574,0.091261774301529],[0.10514687001705,-0.1353412270546,0.10902722924948]],[[-0.056570719927549,-0.099602229893208,-0.099049739539623],[0.050929967314005,-0.03833781927824,-0.045438550412655],[0.066119037568569,0.067435279488564,-0.024092998355627]],[[0.01051823142916,-0.0570586360991,0.10471444576979],[0.010097275488079,0.047394242137671,-0.012146630324423],[0.024208540096879,0.032087683677673,-0.013170833699405]],[[0.0096740322187543,-0.18214827775955,0.014505280181766],[-0.081776097416878,-0.011369588784873,-0.15226945281029],[0.072335809469223,-0.029159527271986,-0.090312123298645]],[[-0.073688544332981,-0.0054531409405172,0.058264087885618],[-0.023948946967721,-0.0041262824088335,0.060189243406057],[-0.011533284559846,-0.050965860486031,0.040996380150318]],[[0.12849198281765,0.069832503795624,-0.085775837302208],[0.012981792911887,-0.092410862445831,-0.030422959476709],[-0.012683150358498,-0.19124440848827,-0.13381956517696]],[[-0.051552820950747,-0.081666253507137,-0.041649803519249],[-0.03701514005661,-0.0099689634516835,-0.069982543587685],[-0.011424189433455,0.023162411525846,-0.034992508590221]],[[0.00026274909032509,0.10362589359283,-0.014487829990685],[-0.11364218592644,-0.082712277770042,-0.080692164599895],[0.0024994153063744,0.01424665004015,0.096020892262459]],[[-0.045065883547068,0.01202873699367,-0.041131883859634],[0.011962410993874,0.008935235440731,-0.061967186629772],[-0.035482380539179,-0.089096404612064,0.11293386667967]],[[-0.064631424844265,-0.061199814081192,-0.1053719446063],[-0.0010661069536582,0.01467770896852,-0.053166579455137],[-0.0071585085242987,-0.12905535101891,0.066543638706207]],[[-0.025806717574596,-0.0040425332263112,-0.12786424160004],[0.10689670592546,-0.042556915432215,-0.051258806139231],[-0.076392062008381,-0.060737434774637,0.0090464800596237]],[[0.050839457660913,-0.073649995028973,-0.056242842227221],[-0.09631010144949,0.0040796655230224,-0.028533007949591],[0.02620206028223,-0.078183077275753,0.066295832395554]],[[-0.035387746989727,-0.047703366726637,0.072344817221165],[-0.01564684137702,0.0072445035912097,0.087245278060436],[0.033405508846045,-0.016077201813459,0.042271073907614]],[[-0.0056358384899795,0.0085272947326303,0.0780094191432],[0.015927642583847,-0.0088916281238198,-0.0049974708817899],[-0.0034722285345197,-0.10196617990732,0.013532408513129]],[[-0.061634238809347,0.0062349145300686,-0.019856080412865],[-0.016186971217394,-0.1516774892807,-0.056431148201227],[0.024513497948647,-0.022027783095837,-0.031782649457455]],[[-0.076713688671589,0.015255673788488,-0.047924961894751],[-0.058226637542248,-0.02989137172699,0.040906563401222],[0.0045359004288912,-0.052490569651127,0.024898068979383]],[[-0.06215712428093,-0.076657801866531,-0.16322511434555],[0.11110714823008,-0.025908209383488,-0.067806385457516],[-0.077512435615063,-0.0013363182079047,-0.1457839012146]],[[0.029931066557765,-0.14670011401176,0.1136574819684],[-0.23185414075851,-0.10905531793833,-0.061547432094812],[-0.033236317336559,-0.058955539017916,-0.10755336284637]],[[-0.14318858087063,0.045975062996149,0.012349556200206],[-0.080298416316509,0.018044589087367,0.016307283192873],[-0.0026917567010969,0.033030308783054,-0.037956770509481]],[[-0.004046764690429,-0.10922363400459,0.042742095887661],[0.081624664366245,-0.044012237340212,-0.06094054877758],[-0.03419728949666,0.049061048775911,-0.037457074970007]],[[0.024459710344672,-0.043884180486202,0.051641177386045],[0.041939999908209,-0.049318995326757,-0.046897944062948],[-0.0089224008843303,0.042060863226652,-0.026155157014728]],[[0.047866865992546,-0.041453368961811,0.013701483607292],[0.037889931350946,-0.052431602030993,-0.10133010149002],[0.043758787214756,-0.068775430321693,0.0055158506147563]],[[-0.052492573857307,0.024356957525015,-0.068734534084797],[0.039296720176935,-0.02593782544136,0.013894138857722],[-0.0016686299350113,0.050691734999418,0.029735490679741]],[[0.01718508079648,0.044168081134558,0.040963392704725],[-0.02801631949842,-0.11008025705814,0.010172358714044],[-0.0062255370430648,-0.026960341259837,0.035345822572708]],[[-0.022488346323371,-0.044473651796579,-0.056821051985025],[-0.010167461819947,-0.024861825630069,-0.031558569520712],[-0.085329614579678,-0.022124635055661,-0.10136323422194]],[[0.12439313530922,-0.050411473959684,-0.037892978638411],[0.03208627179265,-0.039208602160215,-0.0031034885905683],[-0.094080828130245,0.037564117461443,0.017596386373043]],[[0.0094761298969388,0.0012664196547121,0.012139172293246],[0.044158656150103,0.055505149066448,-0.1115747615695],[-0.017626408487558,-0.02995627373457,-0.1112198010087]],[[0.0259128510952,-0.025021063163877,0.052723303437233],[0.071607001125813,-0.097603939473629,-0.13677749037743],[-0.017997905611992,-0.070082940161228,0.019045004621148]],[[0.2177964001894,-0.024274596944451,0.074082590639591],[-0.091324485838413,0.024259850382805,0.0095725366845727],[0.053254250437021,0.14966502785683,-0.015036331489682]],[[-0.056467659771442,0.042107436805964,-0.11329228430986],[0.03018768876791,-0.079859167337418,0.042556084692478],[-0.14544403553009,0.0086248936131597,-0.089279428124428]],[[0.0047602783888578,0.028387237340212,-0.031136441975832],[0.06751860678196,-0.035040661692619,0.082674793899059],[-0.082643687725067,0.058811850845814,-0.010577517561615]],[[0.034191455692053,-0.015034562908113,-0.0092683546245098],[-0.043337032198906,-0.030937142670155,0.029324656352401],[-0.084322199225426,0.045236833393574,0.03662583604455]],[[0.057294871658087,0.0091919172555208,-0.0051759579218924],[-0.018817480653524,0.00032386669772677,0.012355068698525],[0.007046902552247,0.040456853806973,0.0038699603173882]],[[-0.066011093556881,0.014144343324006,0.0054059214890003],[0.03133013099432,0.047042284160852,0.12346193939447],[-0.059309255331755,-0.030763974413276,-0.089663177728653]],[[0.016556901857257,-0.064466819167137,0.02019757963717],[-0.047227881848812,-0.021489534527063,-0.20002414286137],[0.015670571476221,-0.10701183974743,-0.043352276086807]],[[0.1253362596035,0.0085836909711361,0.18516430258751],[-0.13051280379295,0.0038421966601163,0.056449633091688],[-0.067750863730907,0.14798185229301,-0.075590685009956]],[[0.021885752677917,-0.058573864400387,-0.0065639778040349],[8.7472726590931e-06,0.01652604341507,0.023156637325883],[-0.021548079326749,0.023061037063599,-0.0015431594802067]],[[0.014103554189205,0.026699544861913,-0.10751394182444],[-0.07834830135107,-0.10673655569553,0.065974242985249],[-0.048305474221706,-0.059824626892805,-0.021807396784425]],[[-0.049506340175867,0.061349652707577,0.017248172312975],[0.011143923737109,-0.035295654088259,0.053328957408667],[-0.05948219075799,0.05099293589592,-0.01683690585196]],[[-0.089152343571186,0.023227425292134,-0.032381806522608],[-0.050006035715342,-0.035747583955526,-0.0030311066657305],[-0.0096379313617945,0.048013873398304,-0.076075427234173]],[[0.046130534261465,-0.072010189294815,0.05199009180069],[-0.037244327366352,-0.0066024186089635,0.0031483196653426],[0.020021067932248,-0.00020660340669565,-0.030140513554215]]],[[[0.066954597830772,-0.18595524132252,-0.002098121214658],[-0.092579044401646,-0.052490573376417,-0.026232292875648],[0.062295958399773,0.074355356395245,-0.22588932514191]],[[0.083071120083332,-0.12962965667248,0.012750725261867],[0.008917641825974,-0.013196462765336,0.087838791310787],[-0.039373274892569,-0.055064849555492,-0.050396770238876]],[[0.07532325387001,-0.0091424249112606,0.00026949276798405],[-0.013894177041948,-0.073787532746792,-0.07044430077076],[-0.0055580381304026,-0.023563951253891,-0.13806048035622]],[[0.045480668544769,-0.042187865823507,-0.1076095700264],[0.018769226968288,-0.051329910755157,-0.060057770460844],[-0.049293905496597,-0.039825480431318,-0.10402601957321]],[[-0.023954004049301,0.070536866784096,0.11174914240837],[0.055188529193401,-0.062407314777374,-0.076662808656693],[-0.06788894534111,-0.030302843078971,-0.023031171411276]],[[0.0079130278900266,-0.030373116955161,0.031465299427509],[-0.024446055293083,-0.096463240683079,-0.032906640321016],[-0.0066254679113626,0.0302406065166,0.061658725142479]],[[-0.033931538462639,-0.032318353652954,0.04627376422286],[-0.071208812296391,-0.066289633512497,-0.068392805755138],[-0.027128115296364,-0.13038124144077,-0.035086859017611]],[[-0.15508563816547,0.011851187795401,0.050390299409628],[0.076019763946533,-0.041734714061022,0.057829223573208],[-0.012722105719149,0.030193068087101,0.099879026412964]],[[-0.073412537574768,-0.23002447187901,-0.021282149478793],[-0.052220709621906,0.067415207624435,0.048709996044636],[0.081024684011936,-0.022229412570596,0.058777634054422]],[[-0.11113906651735,0.064621224999428,-0.005686413962394],[0.068417906761169,-0.066631816327572,0.043033204972744],[-0.044701557606459,-0.023862669244409,-0.15890990197659]],[[-0.020599661394954,0.0059805507771671,-0.16142496466637],[0.036567054688931,0.039450224488974,0.078785441815853],[0.090952634811401,-0.0029686342459172,-0.058875750750303]],[[-0.12962660193443,0.014647165313363,-0.018184170126915],[-0.051678098738194,-0.15543219447136,-0.049592353403568],[-0.0095242960378528,-0.091566443443298,-0.038008958101273]],[[-0.032622031867504,0.017071321606636,-0.012906414456666],[0.031822886317968,-0.047517742961645,0.040107496082783],[-0.01157146692276,-0.022953558713198,-0.03907123953104]],[[0.004851839505136,0.033811517059803,0.02273865044117],[0.077366471290588,0.029995424672961,-0.013423410244286],[-0.011373657733202,0.00075068743899465,-0.068652987480164]],[[-0.019110137596726,-0.079225741326809,-0.056924793869257],[-0.090644039213657,0.0064067621715367,-0.0076816659420729],[0.0064258230850101,0.019000191241503,-0.027300765737891]],[[0.069420747458935,-0.038309704512358,-0.045579969882965],[-0.048260468989611,-0.13068950176239,-0.057803459465504],[0.08034723252058,0.022296732291579,0.1140963062644]],[[-0.14027786254883,-0.026622876524925,-0.0748420804739],[-0.048437748104334,-0.037397105246782,0.11816186457872],[-0.02612916007638,-0.0028158696368337,0.028686750680208]],[[-0.030859470367432,-0.025339359417558,-0.089491255581379],[-0.027915438637137,-0.011731748469174,-0.019657589495182],[-0.070661664009094,-0.14532527327538,0.0056735305115581]],[[-0.031132083386183,0.10793647915125,0.0036810638848692],[0.082600317895412,-0.039495181292295,-0.020934158936143],[0.058145567774773,0.032890733331442,-0.073094815015793]],[[0.016834599897265,0.013471027836204,-0.021389221772552],[0.050954408943653,0.031923197209835,-0.08374547958374],[-0.014098586514592,-0.016077131032944,-0.0045023104175925]],[[0.043828006833792,0.081020064651966,-0.024142717942595],[0.097780860960484,0.035218965262175,0.051185213029385],[-0.045665353536606,-0.062945947051048,0.05984827503562]],[[0.059145618230104,0.033357467502356,0.069440461695194],[0.026583783328533,-0.043106514960527,-0.0011077061062679],[-0.087204813957214,-0.00070171721745282,0.049721464514732]],[[-0.026483703404665,-0.078186199069023,0.042644109576941],[-0.017882665619254,0.001246452331543,0.052936088293791],[0.05499529466033,0.033713597804308,-0.012716366909444]],[[0.0032296313438565,0.10719000548124,0.085713371634483],[-0.0061639943160117,0.021285442635417,0.10406090319157],[-0.0086271008476615,0.06854759901762,-0.044753521680832]],[[-0.048708263784647,0.0055922027677298,-0.070590503513813],[0.034676484763622,0.077778451144695,0.069200240075588],[-0.00091974332462996,-0.024149753153324,-0.088039450347424]],[[0.036896388977766,-0.016679329797626,0.02362709119916],[0.031110206618905,0.0092205749824643,-0.018788745626807],[0.042050573974848,0.0072695608250797,0.06766552478075]],[[0.058995686471462,-0.083692289888859,-0.016894854605198],[-0.10168507695198,-0.0079527115449309,-0.10006885975599],[0.062300119549036,-0.066431030631065,0.096637710928917]],[[-0.032714206725359,-0.054575629532337,-0.018304944038391],[-0.053635474294424,0.026552664116025,-0.028797714039683],[-0.0078516928479075,0.010992662981153,0.0011482518166304]],[[-0.063033185899258,-0.0073738032951951,-0.018139081075788],[-0.086692236363888,0.085133656859398,-0.026950756087899],[0.0043959622271359,-0.0095715997740626,-0.10461458563805]],[[-0.062681972980499,-0.097009502351284,0.045077707618475],[0.038513403385878,-0.033094506710768,-0.05938833206892],[0.01666403748095,-0.014796963892877,0.041063722223043]],[[-0.063321240246296,-0.074561707675457,-0.083325050771236],[-0.029274351894855,0.0048980698920786,-0.089976295828819],[0.018475873395801,-0.08244152367115,-0.066549733281136]],[[0.034292045980692,0.072495192289352,-0.053251571953297],[-0.046031836420298,0.020907372236252,-0.078814491629601],[0.0028581791557372,0.063073053956032,-0.086508139967918]],[[-0.044702563434839,-0.078387394547462,-0.13510832190514],[-0.020025506615639,-0.021125912666321,-0.039349466562271],[-0.10234110057354,-0.043962217867374,0.075531549751759]],[[-0.034634709358215,-0.054858013987541,0.010002297349274],[0.019876569509506,-0.0037028845399618,0.020748687908053],[0.0044678798876703,0.12248964607716,-0.09354642778635]],[[0.05787704885006,0.050599049776793,-0.093883782625198],[0.02015114761889,-0.075204230844975,0.047756779938936],[-0.02708050981164,0.023026492446661,-0.0075826705433428]],[[0.056542929261923,0.060817304998636,0.0097998566925526],[0.078277438879013,0.065094962716103,-0.054833322763443],[-0.024626012891531,-0.064846314489841,0.007630577776581]],[[-0.04625128954649,0.12622657418251,0.22824132442474],[-0.018304521217942,0.0063585289753973,0.12125875800848],[-0.16396979987621,-0.058448906987906,-0.039008475840092]],[[0.017822308465838,0.045562386512756,0.055201437324286],[-0.023150838911533,-0.092963710427284,-0.050054978579283],[0.11138293147087,-0.16210579872131,-0.074037536978722]],[[-0.10122452676296,-0.021069440990686,0.010441527701914],[0.00061258825007826,0.05556882172823,0.050801441073418],[-0.020638981834054,0.047535188496113,-0.061556968837976]],[[0.067785553634167,0.07656529545784,-0.088848516345024],[0.068801820278168,0.11712222546339,-0.0042549292556942],[-0.066785834729671,-0.040121171623468,-0.047542799264193]],[[0.052146017551422,0.0037945453077555,0.011221308261156],[0.042173407971859,0.071320563554764,-0.04644326493144],[-0.15062740445137,-0.02021399885416,-0.078027918934822]],[[-0.14843893051147,0.0089079989120364,0.017177775502205],[-0.033930342644453,0.076031811535358,0.060905024409294],[-0.019773792475462,-0.071034491062164,0.037162467837334]],[[0.18471577763557,-0.032125566154718,-0.094034805893898],[-0.048978921025991,-0.09303031116724,-0.085782714188099],[-0.14342141151428,0.0046742274425924,0.079048909246922]],[[-0.055199947208166,-0.0087816687300801,-0.12128318101168],[-0.091681092977524,-0.084597788751125,0.00358991115354],[-0.074319511651993,0.10508335381746,0.072982452809811]],[[-0.099105685949326,0.050682280212641,0.073518306016922],[-0.13811282813549,0.0051418878138065,0.011501487344503],[-0.092884048819542,-0.074603751301765,-0.043894823640585]],[[0.081061512231827,-0.032346069812775,-0.09095199406147],[0.08522666990757,-0.033793900161982,-0.065427668392658],[0.2101843059063,0.050500802695751,-0.035450916737318]],[[0.014442120678723,-0.028597086668015,0.045279286801815],[0.093499250710011,-0.034521274268627,-0.066095717251301],[0.021198926493526,-0.020784791558981,-0.080498836934566]],[[0.032499771565199,0.010336288250983,0.021503604948521],[-0.048381090164185,-0.023302240297198,0.12878003716469],[0.022139785811305,-0.015353278256953,-0.10510893911123]],[[-0.09354031085968,0.037056010216475,0.021189948543906],[0.13332922756672,-0.1213059797883,-0.10089261829853],[-0.020832072943449,-0.019883941859007,0.0091072786599398]],[[8.5279287304729e-05,-0.010308572091162,0.088812470436096],[0.026387587189674,0.050470232963562,-0.0034940070472658],[0.090647965669632,-0.083916917443275,-0.1165928915143]],[[-0.042236845940351,-0.053293388336897,-0.033142518252134],[0.040467191487551,0.062289398163557,-0.10371416807175],[0.055695258080959,-0.197369530797,-0.006267152260989]],[[0.08525612205267,0.032685719430447,0.039233680814505],[-0.055650670081377,-0.092604286968708,0.0051518832333386],[-0.029769357293844,-0.010581412352622,0.032182358205318]],[[-0.0077222161926329,0.0032516801729798,-0.020518593490124],[-0.0062686004675925,-0.02531299367547,-0.087464034557343],[0.021717445924878,0.0010877719614655,-0.087163880467415]],[[0.04339849203825,-0.0082199852913618,-0.038198340684175],[0.0060581527650356,-0.062190651893616,0.056608412414789],[-0.00017586775356904,0.041149411350489,0.031167084351182]],[[0.029773008078337,0.012664444744587,-0.075763016939163],[-0.0023424953687936,0.038856126368046,0.0039636874571443],[0.04737663641572,-0.016184575855732,-0.038720414042473]],[[0.0059717409312725,0.048605315387249,0.018198804929852],[0.0049175196327269,0.010231525637209,-0.076883547008038],[0.0085432026535273,0.0010191792389378,0.10928772389889]],[[-0.12127587199211,0.091548696160316,0.053533930331469],[-0.060908559709787,0.0082157393917441,-0.064517267048359],[-0.08636336773634,0.045155886560678,-0.13102938234806]],[[-0.06312695145607,0.016203984618187,-0.025915781036019],[-0.0084417872130871,0.053879301995039,-0.068809390068054],[-0.040508199483156,-0.086667768657207,-0.010129461996257]],[[-0.025661109015346,-0.018818570300937,-0.071672312915325],[-0.018891166895628,0.028590412810445,-0.05415278673172],[0.015823977068067,0.071139991283417,0.0011589095229283]],[[-0.05374875664711,-0.052712425589561,0.021932268515229],[-0.072884753346443,0.0017082933336496,0.087320886552334],[0.015145570039749,0.052819926291704,-0.0030556968413293]],[[0.017159275710583,0.050964221358299,0.039086572825909],[0.09384410828352,-0.018837643787265,0.0050302110612392],[-0.019014049321413,-0.082315430045128,-0.0093413637951016]],[[0.0032396593596786,-0.088372148573399,-0.0075191152282059],[0.022493403404951,0.06175822019577,-0.057053565979004],[0.034246455878019,-0.1099938377738,0.017623180523515]],[[0.12034491449594,-0.001182175707072,-0.033778741955757],[0.015785980969667,-0.035438064485788,0.0042747398838401],[-0.05345980450511,-0.051064744591713,-0.12144503742456]],[[-0.092215858399868,0.045289497822523,0.079838536679745],[0.053914807736874,-0.00059052568394691,-0.11104451864958],[0.037117563188076,-0.055792547762394,-0.026495622470975]]],[[[-0.017230389639735,-0.065773665904999,-0.078013107180595],[-0.038151204586029,0.075560383498669,0.02362946793437],[0.049448572099209,-0.016434900462627,-0.033583719283342]],[[-0.036497674882412,-0.036894116550684,0.021291950717568],[-0.00070212845457718,0.0022645031567663,0.00064389384351671],[0.027786677703261,-0.032826755195856,-0.018734760582447]],[[-0.060841266065836,0.027674837037921,-0.042852602899075],[0.15952500700951,-0.15508311986923,-0.030926443636417],[0.037693042308092,-0.085245586931705,0.036164853721857]],[[-0.01959815248847,-0.054374102503061,-0.058593947440386],[0.015546940267086,-0.066091679036617,0.082395330071449],[0.0077155097387731,-0.085445888340473,0.014851087704301]],[[-0.033290188759565,-0.027280874550343,-0.056816019117832],[0.038212437182665,-0.031648132950068,-0.047345332801342],[0.03069076128304,-0.089336983859539,-0.097629532217979]],[[-0.093588545918465,0.02191792242229,0.041905760765076],[0.013216839171946,-0.28827196359634,0.066177055239677],[-0.017700489610434,-0.10741925984621,0.15263494849205]],[[0.0017512461636215,0.013624752871692,-0.035994242876768],[-0.15464763343334,0.0058079115115106,-0.041076969355345],[-0.0068030934780836,0.078257493674755,0.013885153457522]],[[0.017476689070463,-0.0036465881858021,0.027123695239425],[-0.059781365096569,0.010598712600768,-0.0091076772660017],[-0.050578281283379,0.047346670180559,0.033604819327593]],[[-0.017412515357137,0.037750698626041,-0.03418992459774],[0.040544781833887,-0.015918547287583,0.01444998010993],[0.10236083716154,0.092395260930061,-0.046969458460808]],[[-0.022531230002642,-0.026519922539592,-0.016183035448194],[-0.030510805547237,-0.017056845128536,-0.045330043882132],[0.04589382186532,-0.0024765087291598,-0.084936179220676]],[[0.0063730026595294,-0.049688629806042,0.019655451178551],[-0.0054394658654928,0.02918167039752,-0.03109491057694],[0.023427214473486,0.015611065551639,0.0092686293646693]],[[0.016012117266655,-0.0042014885693789,-0.027051674202085],[-0.051722392439842,-0.04438441246748,0.017228405922651],[-0.033180244266987,0.10428263992071,-0.0084478734061122]],[[0.05860872194171,-0.092510856688023,-0.064371287822723],[-0.030175190418959,0.057518091052771,-0.0020158283878118],[0.078320860862732,0.0012171721318737,-0.0063691115938127]],[[-0.026741597801447,-0.022341480478644,-0.024867188185453],[0.015325614251196,0.021100440993905,0.028839876875281],[0.10481098294258,-0.018048817291856,-0.0019167314749211]],[[-0.050909977406263,0.027658531442285,0.013277780264616],[0.012159733101726,-0.034632008522749,-0.012801804579794],[0.062288824468851,0.002953251125291,-0.032438904047012]],[[-0.044691246002913,-0.032868340611458,0.0045850933529437],[-0.036109212785959,-0.07476095110178,0.0089022116735578],[0.022363800555468,0.017876733094454,0.072294041514397]],[[-0.052477207034826,-0.17700654268265,-0.059598792344332],[-0.092631854116917,-0.079982906579971,0.008198669180274],[-0.041818168014288,0.10334961116314,0.0092803854495287]],[[0.083924077451229,-0.14009845256805,-0.034323137253523],[0.02396534755826,0.040771991014481,0.046046871691942],[-0.015686683356762,0.027261052280664,0.081611923873425]],[[0.096939004957676,-0.04293279722333,-0.04762290045619],[0.058328401297331,-0.097496576607227,-0.086231283843517],[-0.051465027034283,-0.045506525784731,-0.018532417714596]],[[-0.027713000774384,-0.019883623346686,0.021940924227238],[0.00044706111657433,-0.014297597110271,0.06467542797327],[-0.0094031812623143,-0.012689619325101,0.026349956169724]],[[0.057044301182032,-0.065992750227451,0.035997666418552],[-0.014096193015575,0.010278799571097,0.014436915516853],[-0.013950233347714,-0.049321796745062,0.015764027833939]],[[-0.074407838284969,0.033511735498905,-0.074090600013733],[-0.0065011684782803,0.080094806849957,0.083000063896179],[0.041043344885111,-0.010043892078102,0.025986570864916]],[[0.0094490963965654,0.021796967834234,0.050052728503942],[-0.043798103928566,-0.017429074272513,0.015048297122121],[0.037123836576939,0.022981520742178,0.015540402382612]],[[0.1103787124157,0.18868985772133,0.069571323692799],[0.068322852253914,-0.007977681234479,0.0026469661388546],[0.079744979739189,-0.011354559101164,0.025689821690321]],[[0.016059640794992,0.061241686344147,-0.053573731333017],[-0.022470615804195,-0.031103802844882,-0.059295628219843],[0.055976118892431,0.042390547692776,0.018263906240463]],[[0.042516615241766,-0.00052258808864281,-0.068856202065945],[-0.043212629854679,0.013595369644463,-0.042511750012636],[-0.014788872562349,-0.051911793649197,-0.060659863054752]],[[0.054219476878643,0.00092944846255705,0.0030987577047199],[0.02801844291389,0.08391422778368,0.053802940994501],[0.10956944525242,0.059166088700294,0.023849796503782]],[[-0.026931883767247,-0.011567610315979,0.0066075888462365],[-0.0013876792509109,-0.17489321529865,-0.010437874123454],[0.04048265516758,-0.012649910524487,-0.092020966112614]],[[-0.077419109642506,-0.042520225048065,-0.1015732139349],[-0.056902561336756,0.021170008927584,0.01392588019371],[0.043166615068913,0.14537845551968,0.087344795465469]],[[-0.11411725729704,-0.024230429902673,0.0049215103499591],[-0.038452308624983,0.01692339964211,-0.0073577151633799],[0.03312299773097,-0.054364070296288,0.03704459220171]],[[0.0050525753758848,-0.092394791543484,0.0122792115435],[-0.020060338079929,0.063029937446117,0.062582038342953],[0.030961753800511,-0.0208729673177,-0.097542710602283]],[[0.019708700478077,0.040650382637978,-0.011194919236004],[-0.085959188640118,-0.041828028857708,0.031809691339731],[0.051087625324726,0.10534612089396,0.060370672494173]],[[-0.033402755856514,-0.041661847382784,-0.056084882467985],[-0.0044119511730969,-0.010324778966606,0.05688264966011],[-0.037371773272753,-0.054288759827614,0.03873647376895]],[[0.062193628400564,0.023372752591968,0.023952329531312],[-0.022203991189599,0.093273162841797,-0.024294102564454],[0.075011730194092,-0.060117334127426,-0.0064124255441129]],[[0.024437714368105,-0.027825709432364,-0.0017962226411328],[-0.067046508193016,-0.001013696542941,0.01192906498909],[0.064363792538643,0.030198158696294,0.018877785652876]],[[-0.043897811323404,-0.00016358963330276,0.045868840068579],[-0.018445475026965,0.0479033626616,-0.038948994129896],[-0.00412063812837,0.034261289983988,0.085940681397915]],[[-0.04955155402422,-0.009820100851357,-0.04247310757637],[0.0067087537609041,0.068737328052521,-0.037928391247988],[-0.079041682183743,-0.031170252710581,0.029336027801037]],[[-0.05939269438386,-0.019538946449757,0.0035546757280827],[-0.029955133795738,0.013618853874505,0.040323860943317],[0.016344878822565,-0.0031314017251134,0.030333468690515]],[[0.059795085340738,-0.034670040011406,-0.019503595307469],[0.0037086072843522,-0.0075665796175599,-0.029592733830214],[-0.035850666463375,0.055016111582518,-0.10027500987053]],[[-0.054699916392565,0.026762969791889,-0.051154538989067],[0.037763420492411,0.01414521317929,0.010109342634678],[0.095370925962925,0.10579795390368,0.050483044236898]],[[0.016597570851445,-0.043685663491488,0.063743121922016],[-4.8717662139097e-05,0.017769630998373,-0.029863797128201],[-0.063640929758549,0.038420289754868,-0.048782501369715]],[[-0.0082042226567864,-0.02213735692203,-0.0046568578109145],[0.0016590346349403,-0.088813722133636,-0.017206866294146],[0.06197127327323,-0.0063793193548918,-0.03520454838872]],[[0.030905602499843,0.023667227476835,0.013469652272761],[0.025670664384961,0.033424656838179,0.038375623524189],[-7.7470656833611e-05,-0.10135937482119,-0.035224430263042]],[[0.071470379829407,0.010126394219697,-0.056877013295889],[0.030620910227299,-0.027762355282903,0.0023378755431622],[0.079316146671772,-0.040661077946424,-0.010387724265456]],[[0.025276912376285,0.023515744134784,-0.008147613145411],[-0.036135971546173,-0.12199608236551,0.020064551383257],[0.080637194216251,0.0029457565397024,0.01428107265383]],[[-0.094585694372654,0.074468217790127,0.035836100578308],[-0.093801900744438,0.16757716238499,0.0016474791336805],[-0.049242358654737,-0.0026527168229222,-0.0030775386840105]],[[-0.10382777452469,0.028090864419937,-0.11350184679031],[0.002345581073314,-0.0054339980706573,0.072517819702625],[0.0056516267359257,-0.03430087864399,0.029750403016806]],[[-0.024533428251743,0.023590667173266,0.014146793633699],[0.024188812822104,-0.014486867934465,0.1266565322876],[0.029650412499905,-0.045840561389923,0.047893725335598]],[[0.03444616496563,-0.056544665247202,0.017889410257339],[0.0081087704747915,-0.038244619965553,0.041754387319088],[0.012203824706376,0.11215788125992,0.042448464781046]],[[0.049893114715815,-0.0081918044015765,-0.064926460385323],[0.044743862003088,0.0306795835495,-0.018374145030975],[0.054411839693785,0.025808539241552,-0.035689532756805]],[[0.033470071852207,-0.012264868244529,-0.0072425715625286],[-0.024334840476513,-0.0047461395151913,-0.0042671319097281],[-0.083876363933086,-0.0033814758062363,-0.017307426780462]],[[0.061732411384583,0.04542164131999,0.030468760058284],[0.0011458188528195,0.062688879668713,-0.027765605598688],[0.019119322299957,0.043376374989748,-0.00041625846643001]],[[0.088267810642719,-0.0038778698071837,-0.0023805857636034],[-0.026655372232199,0.057619567960501,-0.047543600201607],[-0.025090001523495,-0.04798599332571,0.01568348146975]],[[0.015043848194182,-0.069950707256794,0.037504442036152],[-0.019339485093951,-0.091072298586369,-0.055925521999598],[-0.19218933582306,-0.080564253032207,-0.084341190755367]],[[-0.012831499800086,0.021929135546088,-0.0098826875910163],[0.027083607390523,-0.14607812464237,-0.036630902439356],[-0.034093488007784,-0.041697788983583,0.049334697425365]],[[-0.081864215433598,0.05480720475316,-0.0082078101113439],[-0.0026639853604138,0.053385332226753,-0.030254600569606],[0.066866755485535,0.010622184723616,-0.04016687721014]],[[-0.013691717758775,0.0011019068770111,0.019210347905755],[-0.060593079775572,0.021034242585301,0.044200465083122],[-0.01281473133713,0.035118512809277,-0.057249572128057]],[[-0.046099323779345,0.052069429308176,-0.045131504535675],[-0.097438104450703,-0.059219337999821,-0.069262184202671],[-0.044598922133446,-0.010680448263884,0.066691838204861]],[[0.092469736933708,0.059405144304037,-0.04552223533392],[0.045651860535145,-0.0014487201115116,0.010750822722912],[0.10527069866657,0.07663331925869,-0.0095122382044792]],[[0.0046900324523449,-0.021826224401593,-0.019117092713714],[0.026595594361424,-0.0078793596476316,0.037547614425421],[-0.0091572860255837,-0.022719424217939,0.0053192218765616]],[[-0.065706357359886,-0.049424182623625,0.026158446446061],[-0.10617092996836,0.0017708449158818,-0.0053317756392062],[-0.058282572776079,-0.010656172409654,0.035436484962702]],[[0.023110315203667,0.081235341727734,0.015761893242598],[-0.022117165848613,0.0163100566715,0.0069396905601025],[-0.0010621711844578,0.010169045999646,0.010277116671205]],[[-0.030036782845855,0.0056346207857132,0.005815093871206],[-0.004086138214916,0.024796614423394,0.024600015953183],[0.044944923371077,-0.041810069233179,-0.062753431499004]],[[0.019722554832697,-0.038329478353262,0.024374879896641],[0.00075667107012123,-0.020065244287252,-0.027730204164982],[-0.074035808444023,-0.062105622142553,0.010298715904355]]],[[[-0.1322031468153,-0.071778558194637,-0.062772713601589],[0.078310139477253,-0.024607369676232,-0.019679872319102],[0.0020726853981614,0.038095340132713,0.08763275295496]],[[-0.019964333623648,0.016967101022601,0.03857422247529],[-0.010417020879686,0.064896605908871,0.05735469609499],[0.089948832988739,0.11268392950296,0.082748904824257]],[[-0.047424759715796,-0.063163243234158,-0.070899620652199],[-0.070614203810692,-0.082450978457928,-0.15761342644691],[0.033307258039713,-0.032519556581974,0.061376612633467]],[[0.019142434000969,0.0094291809946299,-0.021825546398759],[-0.057208526879549,0.18300920724869,0.093532711267471],[0.041985187679529,0.12383041530848,0.027519889175892]],[[-0.049296714365482,-0.028115876019001,-0.031689126044512],[-0.051105972379446,-0.10674834996462,0.013465691357851],[0.0023766714148223,-0.050398267805576,0.022672072052956]],[[0.051470693200827,0.028139837086201,-0.037784662097692],[-0.029290877282619,-0.097755677998066,-0.081563621759415],[-0.060720294713974,-0.10143723338842,0.0084801409393549]],[[-0.063861586153507,0.039726197719574,0.049642883241177],[0.008727322332561,0.032120399177074,-0.038997858762741],[0.058079104870558,0.016707949340343,0.068768173456192]],[[0.013685421086848,0.15521876513958,0.12716142833233],[0.097845405340195,0.11062279343605,0.18400777876377],[0.11110442876816,0.077773086726665,0.058080121874809]],[[0.032065823674202,0.05739625915885,0.1237977668643],[0.020190086215734,-0.057304594665766,0.099769502878189],[0.047446977347136,0.020918851718307,0.0097408192232251]],[[-0.057356432080269,-0.051715034991503,-0.15155920386314],[-0.051490746438503,-0.020085347816348,-0.0073061990551651],[-0.11782732605934,0.014257964678109,0.057898256927729]],[[-0.026152323931456,0.049492999911308,-0.026302069425583],[0.0062155853956938,-0.023087646812201,-0.027767550200224],[0.013015129603446,0.11465819180012,-0.010020365938544]],[[0.015512800775468,-0.056127082556486,-0.015098304487765],[0.10263002663851,0.052279636263847,-0.036747954785824],[-0.14349979162216,-0.13022562861443,-0.015923606231809]],[[-0.033615279942751,-0.0067411586642265,-0.050765991210938],[0.023417573422194,0.010577417910099,-0.0088422726839781],[-0.026726571843028,-0.038231454789639,-0.062532104551792]],[[-0.22524805366993,-0.27244481444359,-0.019672155380249],[-0.01318749319762,0.0095139881595969,-0.072906970977783],[0.021238191053271,-0.0054088234901428,0.004951614420861]],[[0.046272572129965,0.0091607039794326,0.025562087073922],[-0.057965066283941,-0.037162434309721,0.020322140306234],[-0.030917236581445,-0.00088591250823811,-0.074676521122456]],[[-0.07990625500679,-0.048581898212433,-0.0052437381818891],[0.058454357087612,0.11203042417765,0.038288835436106],[0.06207936629653,0.015880435705185,-0.032014507800341]],[[-0.068145789206028,0.014530849643052,0.050812467932701],[0.097646102309227,-0.0037555303424597,-0.056880459189415],[0.013752577826381,0.053817149251699,-0.033592343330383]],[[0.012842666357756,0.031193224713206,-0.066349811851978],[-0.022407615557313,0.050473380833864,0.067807421088219],[0.044782388955355,0.11454369872808,0.030821688473225]],[[0.046135742217302,-0.094254717230797,-0.035313464701176],[-0.042227536439896,-0.03051926009357,-0.086164213716984],[0.019050246104598,0.087745249271393,0.10211586952209]],[[-0.037239801138639,-0.056890990585089,-0.031155610457063],[0.0069047850556672,-0.056601092219353,-0.0036708733532578],[0.053473606705666,0.029294280335307,0.11380955576897]],[[0.00020818042685278,0.01340112183243,0.01631167344749],[-0.04244426637888,-0.00040530180558562,-0.03591151535511],[0.064152389764786,-0.086944609880447,-0.034367214888334]],[[0.024089535698295,-0.14409801363945,0.016108291223645],[-0.0076103731989861,0.026266807690263,0.069699041545391],[0.10720190405846,0.056243773549795,0.026453135535121]],[[0.061453390866518,0.072070211172104,-0.031681079417467],[0.095869332551956,0.016795627772808,-0.069180727005005],[-0.079980567097664,0.0022859654854983,0.02922922000289]],[[0.01052235905081,-0.044541787356138,0.080985255539417],[0.011042803525925,-0.083259254693985,0.070494793355465],[-0.061537340283394,0.028087727725506,-0.025246204808354]],[[0.034584894776344,-0.076590359210968,0.026152366772294],[-0.031809963285923,-0.055919755250216,-0.055522561073303],[-0.027767833322287,-0.036844000220299,0.00010087770351674]],[[-0.049242049455643,-0.064155347645283,0.019175216555595],[-0.02713511697948,-0.029467841610312,-0.01691022887826],[0.040334064513445,0.019093487411737,-0.014165784232318]],[[-0.031079143285751,0.054732337594032,-0.072783291339874],[0.02425641566515,-0.17282558977604,0.035730879753828],[-0.0033204853534698,-0.036151770502329,0.039138503372669]],[[-0.0017475329805166,0.076660424470901,0.054632999002934],[0.032270334661007,0.028810869902372,0.011440145783126],[0.048620536923409,-0.021475335583091,0.02954462915659]],[[0.039568576961756,0.046721030026674,-0.048270080238581],[0.025150446221232,-0.080683797597885,-0.081284955143929],[0.0049879206344485,-0.031072763726115,0.032350532710552]],[[0.09856241196394,0.084711514413357,0.02833548374474],[0.020290633663535,0.14733617007732,0.065555244684219],[0.059664074331522,0.038095314055681,0.079765394330025]],[[0.11049968749285,-0.042474798858166,-0.015844324603677],[-0.053095314651728,-0.067832723259926,0.068614423274994],[0.08280736207962,-0.031072277575731,-0.066800609230995]],[[-0.080527000129223,-0.053569629788399,0.0032938106451184],[-0.00044264656025916,0.074945479631424,-0.037278220057487],[0.066312693059444,0.065901167690754,0.012520411983132]],[[-0.010145669803023,-0.015870429575443,0.047003053128719],[0.0054902611300349,-0.022319603711367,-0.019386697560549],[-0.022255605086684,-0.033385571092367,-0.11204225569963]],[[0.071650117635727,-0.094413958489895,-0.034260861575603],[-0.11335987597704,-0.077341787517071,-0.0037922451738268],[-0.20422491431236,-0.0085957432165742,-0.0099631706252694]],[[-0.096922963857651,-0.10267771780491,-0.043706748634577],[-0.11758115142584,-0.026381971314549,-0.068867482244968],[-0.024921182543039,-0.1361620426178,-0.011224144138396]],[[0.0017548550385982,0.010432232171297,0.0012300460366532],[-0.024039061740041,0.033382635563612,0.052941095083952],[-0.015687284991145,-0.096360079944134,-0.025357471778989]],[[-0.044975221157074,-0.0052000498399138,0.0025996509939432],[0.02354266308248,0.033674791455269,-0.017886303365231],[-0.032673493027687,-0.037358582019806,-0.050189834088087]],[[-0.012187850661576,-0.035445794463158,-0.050254222005606],[-0.066404923796654,-0.00060081732226536,-0.040168631821871],[0.05619415268302,0.0057895611971617,-0.037513703107834]],[[-0.0043805739842355,0.010165033861995,0.0057717352174222],[-0.12223494052887,0.041279029101133,-0.093600757420063],[-0.037137694656849,-0.051084030419588,0.030274569988251]],[[0.0065400404855609,0.0029458391945809,-0.053522229194641],[-0.037262074649334,-0.077346824109554,-0.061706133186817],[0.020563373342156,0.060910884290934,-0.024416897445917]],[[-0.10520765930414,-0.12668071687222,-0.12677924335003],[-0.14494696259499,-0.0081809032708406,-0.07475595921278],[-0.065328158438206,0.14418140053749,0.031478829681873]],[[0.0089808674529195,0.10865043103695,0.13003234565258],[-0.12084560841322,0.035167191177607,0.0089902216568589],[0.02762178145349,-0.080468200147152,-0.072525046765804]],[[-0.010214732028544,-0.004007619805634,0.1361782848835],[0.025537043809891,0.14270505309105,0.0030064503662288],[-0.028483750298619,-0.095771968364716,-0.12347096204758]],[[-0.030930232256651,0.0592085942626,0.040476217865944],[0.054089497774839,-0.0047464398667216,-0.081338569521904],[-0.10780213028193,-0.065413556993008,-0.13354462385178]],[[0.062103893607855,0.035773769021034,0.082947321236134],[-0.064935021102428,0.042465839534998,0.090490408241749],[-0.028524421155453,0.044094182550907,-0.003789248643443]],[[-0.064991742372513,-0.057654175907373,0.020327681675553],[-0.033975124359131,-0.041957899928093,-0.049955632537603],[-0.0060880836099386,0.084125235676765,0.11768362671137]],[[-0.16862821578979,0.028784023597836,-0.030060678720474],[0.016934914514422,-0.049858659505844,0.072757340967655],[-0.012931598350406,-0.11883790791035,0.10419852286577]],[[-0.054543107748032,0.0044743483886123,-0.011664666235447],[-0.031194716691971,-0.061796151101589,-0.035782728344202],[0.067614942789078,0.00048343505477533,0.073761388659477]],[[0.11043612658978,-0.0042605167254806,-0.0206627137959],[-0.0354531891644,-0.041280098259449,0.013071700930595],[0.050946641713381,0.022090822458267,-0.034078381955624]],[[-0.021316569298506,0.015721678733826,0.024001954123378],[-0.039630446583033,-0.038075931370258,0.077815108001232],[-0.021242208778858,-0.012791178189218,0.040958188474178]],[[0.012638122774661,-0.022183360531926,-0.10467401146889],[-0.0044431816786528,0.037976898252964,0.037899430841208],[0.0079301176592708,-0.032372776418924,-0.026203520596027]],[[0.051934808492661,0.033135149627924,0.068737089633942],[0.094200260937214,0.16246120631695,0.084821917116642],[0.061208229511976,0.026848709210753,-0.074498444795609]],[[0.035292789340019,0.047542158514261,-0.086916647851467],[-0.036924473941326,-0.079665184020996,-0.04454081133008],[-0.046667914837599,-0.056893948465586,0.062185477465391]],[[-0.022471899166703,0.12715549767017,-0.010012941434979],[0.070109844207764,0.0077009997330606,0.02655765414238],[-0.062212485820055,-0.093814186751842,-0.01696857996285]],[[-0.099448330700397,-0.017896117642522,0.11626000702381],[-0.0048959883861244,0.062614858150482,0.067281506955624],[0.034129224717617,0.071306131780148,0.046924412250519]],[[-0.14182767271996,-0.12778836488724,-0.072663247585297],[0.0099959000945091,-0.044730514287949,0.0071474784053862],[-0.0027451987843961,0.012161934748292,0.083063572645187]],[[0.13824446499348,0.12333627045155,0.038548465818167],[0.026559334248304,-0.020803552120924,-0.024770645424724],[-0.17204888164997,-0.12665317952633,-0.033327963203192]],[[0.001487125759013,-0.12051537632942,-0.044550608843565],[-0.060474250465631,-0.094085015356541,-0.051702249795198],[-0.078146815299988,-0.081221431493759,-0.1480408757925]],[[0.030337469652295,-0.019705215469003,0.089299857616425],[0.078614868223667,0.0056914403103292,-0.051275778561831],[0.015563865192235,-0.063255868852139,-0.069779358804226]],[[0.054791282862425,0.039258129894733,0.053192235529423],[0.032300509512424,0.0034568388946354,0.0055516995489597],[-0.054865095764399,-0.10279632359743,-0.051330525428057]],[[-0.027340371161699,-0.13639985024929,-0.028977304697037],[0.0038530980236828,0.022179000079632,0.05567179620266],[-0.01496700476855,-0.012122943066061,0.011853751726449]],[[0.023389389738441,-0.0037264504935592,0.024117542430758],[-0.012867448851466,0.046462099999189,0.024491826072335],[-0.031803060323,-0.10716382414103,-0.06053438782692]],[[-0.0099227093160152,-0.047159571200609,-0.024857856333256],[-0.055268261581659,-0.062938585877419,-0.075841508805752],[0.028530098497868,-0.02747442945838,-0.032575082033873]],[[-0.14783526957035,-0.16866563260555,-0.06430446356535],[-0.17542798817158,0.15948934853077,-0.092285230755806],[-0.056124929338694,-0.14443305134773,0.041038725525141]]],[[[-0.0069052437320352,-0.083493500947952,-0.029200999066234],[-0.024998689070344,-0.065708681941032,-0.059436958283186],[-0.0047639971598983,0.025177832692862,-0.093646079301834]],[[-0.034791059792042,0.037892483174801,0.044290717691183],[-0.060235854238272,-0.061474360525608,0.022124364972115],[-0.0057534347288311,0.031195634976029,0.052235718816519]],[[-0.031110027804971,-0.053388573229313,-0.1006416156888],[-0.23182119429111,-0.14779575169086,-0.13582855463028],[-0.12702302634716,-0.1693215072155,-0.12065700441599]],[[-0.029062317684293,-0.088975436985493,-0.0074035879224539],[-0.032186891883612,-0.046348169445992,0.047901567071676],[-0.016332972794771,0.0068424944765866,0.089095391333103]],[[-0.0091338781639934,-0.038900665938854,-0.0010355698177591],[-0.15961323678493,-0.048116274178028,-0.020145080983639],[-0.13372401893139,-0.047117572277784,0.08284205943346]],[[0.044086199253798,-0.051321774721146,0.039435297250748],[0.016485475003719,0.009508740156889,0.0040935864672065],[-0.054056294262409,0.055165573954582,0.092240877449512]],[[0.091244071722031,0.014769953675568,-0.0018649846315384],[-0.055995214730501,0.051861938089132,0.068953946232796],[-0.052349895238876,0.0072794258594513,-0.064958430826664]],[[0.056643933057785,0.01137229334563,-0.033667281270027],[-0.085772477090359,-0.049541138112545,-0.040634203702211],[-0.059191595762968,-0.12888757884502,-0.09190671890974]],[[-0.09489344805479,-0.068131819367409,-0.0320756547153],[-0.10141375660896,-0.017506334930658,-0.096050202846527],[0.026439832523465,0.014663890935481,0.011633691377938]],[[0.087623842060566,0.022057658061385,-0.049140572547913],[0.057498812675476,0.032468978315592,-0.045691676437855],[0.03610160574317,0.11790994554758,0.049681253731251]],[[-0.0098853940144181,0.033534996211529,0.10437653958797],[-0.11158514022827,-0.02067543566227,-0.012637982144952],[-0.072018913924694,-0.063429296016693,0.06460128724575]],[[-0.10954140871763,-0.040798202157021,-0.04448701813817],[-0.07113841176033,-0.064249955117702,-0.014363433234394],[-0.0476951636374,0.10151153057814,0.042867720127106]],[[-0.022683832794428,0.041412133723497,-0.059589374810457],[0.14194388687611,-0.0059306235052645,0.15130108594894],[-0.093675315380096,-0.026469832286239,0.03686386346817]],[[0.0063852234743536,0.066719263792038,0.011833946220577],[-0.0025010132230818,0.035344652831554,0.0098168002441525],[0.025658724829555,0.086448341608047,0.052260745316744]],[[0.079938597977161,0.02658916823566,-0.026596434414387],[0.096969313919544,-0.039744216948748,-0.056069623678923],[-0.031891770660877,-0.08493984490633,-0.072244539856911]],[[0.055506259202957,-0.0428556650877,-0.013782715424895],[0.0020480353850871,-0.076466515660286,0.076933659613132],[-0.0061399964615703,-0.047851372510195,0.016708241775632]],[[-0.055985197424889,-0.062942527234554,-0.029213773086667],[0.060221128165722,0.047458469867706,0.060199245810509],[0.0043591987341642,0.083486616611481,-0.11693137139082]],[[0.072541333734989,0.074340082705021,-0.016573175787926],[-0.026914604008198,-0.04434984177351,-0.1229746863246],[0.019882185384631,0.045105345547199,0.0059845196083188]],[[0.029221720993519,0.14616253972054,-0.095029652118683],[-0.017368234694004,0.074515208601952,-0.040317595005035],[-0.04052897170186,-0.069876819849014,-0.11861192435026]],[[0.038868829607964,0.035812448710203,0.024420341476798],[0.012607487849891,0.029689928516746,0.022787051275373],[0.019295006990433,-0.0053214384242892,-0.055489592254162]],[[-0.0018235839670524,-0.0311060808599,0.0069526261650026],[-0.016909066587687,-0.016977762803435,-0.022107711061835],[0.060602337121964,0.039533525705338,0.051774106919765]],[[-0.034022036939859,0.032233495265245,-0.021273341029882],[0.074101462960243,0.041072331368923,0.094323948025703],[0.033822368830442,0.032200142741203,0.10269313305616]],[[0.12143161147833,0.029177453368902,0.15611389279366],[0.015959030017257,-0.061791427433491,-0.023991625756025],[-0.0019467843230814,-0.042164042592049,0.18037031590939]],[[-0.0017966118175536,0.12958718836308,-0.0014926843577996],[0.058540269732475,0.050916276872158,0.011796755716205],[-0.039970360696316,0.064509630203247,0.052337665110826]],[[-0.071737691760063,0.043886244297028,-0.072334133088589],[-0.018480250611901,0.034861616790295,-0.046764057129622],[-0.036705061793327,-0.041459538042545,0.1014701128006]],[[0.086432687938213,0.03024535998702,0.051394809037447],[0.096999563276768,0.057111527770758,0.023343481123447],[-0.0043590399436653,-0.019068393856287,0.019981173798442]],[[0.019223989918828,-0.0080469725653529,0.097956337034702],[0.075115069746971,0.062350880354643,0.020562749356031],[0.045933600515127,0.054340180009604,0.014523640275002]],[[0.03489862382412,0.088551007211208,0.0078217489644885],[0.0094279190525413,0.039244703948498,0.023265484720469],[-0.030247028917074,0.021904088556767,0.029731446877122]],[[-0.034998916089535,-0.048268634825945,-0.034836042672396],[0.0080758957192302,0.11161893606186,0.0024858692195266],[-0.020202983170748,0.10095019638538,-0.066733486950397]],[[-0.053716365247965,-0.12261102348566,-0.060932293534279],[-0.040235411375761,0.0082375155761838,-0.017543029040098],[0.0096398219466209,-0.0448800586164,-0.0024135108105838]],[[0.067440755665302,0.026057293638587,0.044675622135401],[-0.027622807770967,0.039397679269314,-0.051926039159298],[-0.072134986519814,-0.070812307298183,0.032100159674883]],[[0.031413950026035,-0.020338414236903,0.038104154169559],[0.051184963434935,0.017170581966639,-0.022263510152698],[-0.010212656110525,-0.026867642998695,-0.00050572329200804]],[[0.077757813036442,0.024729032069445,0.070308856666088],[0.073415257036686,0.022252384573221,0.082062371075153],[0.08600327372551,0.068239241838455,0.047424297779799]],[[-0.0065442533232272,0.025164781138301,-0.01444358099252],[0.068245314061642,0.029993189498782,0.018481064587831],[0.004706003703177,0.068418331444263,-0.026526780799031]],[[-0.09375786781311,0.068145669996738,-0.051682874560356],[0.064547628164291,-0.0053368429653347,0.065115049481392],[0.0059310812503099,0.055447857826948,0.024634776636958]],[[-0.022874554619193,0.074636518955231,0.0052450695075095],[-0.0021205483935773,-0.0028823437169194,-0.041410610079765],[-0.046017196029425,0.028627343475819,-0.037669029086828]],[[0.050904184579849,-0.017069710418582,-0.055834472179413],[0.073684349656105,0.061207585036755,-0.044174127280712],[0.082622013986111,0.045630443841219,-0.015786373987794]],[[0.11150027811527,0.028928827494383,0.018882807344198],[0.027062986046076,0.053098794072866,0.029347609728575],[0.046380344778299,0.061742398887873,0.023213049396873]],[[-0.036922972649336,0.024078203365207,0.018863767385483],[0.033433437347412,0.020252296701074,-0.000182702409802],[-0.048124693334103,0.020111555233598,0.025155361741781]],[[0.049591723829508,-0.0026285082567483,-0.026746045798063],[0.010785513557494,0.059148445725441,0.019698074087501],[0.065012402832508,0.024946233257651,0.03529267385602]],[[0.04432525485754,0.096061684191227,-0.0086655505001545],[0.027778780087829,-0.0022809351794422,0.051774080842733],[0.063628450036049,0.062104523181915,-0.034889087080956]],[[0.08483748883009,0.048831339925528,-0.037659153342247],[-0.0068982904776931,0.066875502467155,0.11746121942997],[-0.010075626894832,0.037835191935301,-0.17287215590477]],[[-0.044613271951675,0.035741381347179,-0.0018353597261012],[0.021991478279233,0.04146558791399,0.13110399246216],[-0.041478101164103,-0.024619659408927,-0.045569967478514]],[[0.046288404613733,-0.11427896469831,-0.022645603865385],[0.078117616474628,0.016352036967874,0.016677988693118],[-0.034325953572989,-0.015583226457238,-0.042276818305254]],[[-0.05700447037816,0.0048280982300639,0.0092162322252989],[0.099744454026222,-0.046391624957323,-0.071890935301781],[0.021513640880585,0.010401290841401,0.0058170380070806]],[[-0.060380160808563,0.036641214042902,0.095450878143311],[0.016319386661053,0.0010892221471295,0.10609625279903],[-0.061079662293196,0.053387470543385,-0.04535374045372]],[[0.00023375100863632,-0.067380450665951,0.037942804396152],[-0.082203306257725,0.030073357746005,0.035146303474903],[-0.080286830663681,0.050575658679008,-0.062329884618521]],[[0.019097179174423,-0.16160041093826,0.10077586025],[0.054322507232428,-0.031278617680073,-0.0044953967444599],[0.14030148088932,0.0020271898247302,-0.0010685707675293]],[[0.041066057980061,0.059533659368753,0.021371120586991],[0.03087061829865,-0.063234269618988,0.045386698096991],[-0.0021980486344546,0.035128459334373,0.022807113826275]],[[-0.0030308645218611,0.056775856763124,0.029966095462441],[0.03622829914093,0.020122079178691,-0.10786195844412],[-0.0021311435848475,0.038936879485846,-0.017335837706923]],[[0.11688911169767,0.058126877993345,0.14553739130497],[0.093931160867214,0.08562109619379,0.093135692179203],[-0.11264305561781,0.040210824459791,0.046519566327333]],[[-0.049893360584974,-0.021210672333837,0.033514741808176],[-0.091552913188934,-0.042784295976162,-0.076406843960285],[-0.033658351749182,-0.010866357944906,-0.049522493034601]],[[-0.052461192011833,0.056379534304142,-0.0018939507426694],[-0.075087338685989,-0.11223764717579,-0.051732011139393],[-0.030517032369971,-0.00035068404395133,0.054399486631155]],[[0.062186375260353,0.043175850063562,-0.0320218577981],[0.011215031147003,-0.031933452934027,0.021394139155746],[0.031225882470608,0.02537732757628,-0.0031697298400104]],[[0.079963736236095,0.021547181531787,0.066186778247356],[0.027538601309061,-0.028706844896078,-0.040316604077816],[0.0010291944490746,-0.056618709117174,0.030627768486738]],[[-0.046269781887531,-0.040303528308868,-0.081641338765621],[-0.077091507613659,0.0072562228888273,-0.042649302631617],[-0.060482691973448,-0.028306437656283,-0.063507482409477]],[[-0.035690598189831,-0.058261506259441,-0.059869632124901],[0.027448216453195,-0.042457863688469,0.030914459377527],[0.041222788393497,0.072023920714855,0.024726528674364]],[[0.098669648170471,0.05815939232707,0.02767151221633],[-0.030633080750704,0.0061116656288505,0.033711209893227],[-0.020393522456288,0.015355500392616,0.12481251358986]],[[0.076054789125919,-0.048347409814596,-0.042073782533407],[-1.6175974451471e-05,0.015607939101756,0.025902708992362],[-0.034519206732512,-0.017249427735806,0.055703345686197]],[[-0.014577163383365,-0.017853155732155,-0.0095525663346052],[-0.05148546025157,0.078061893582344,-0.022868473082781],[-0.00094470690237358,0.031936086714268,0.072460152208805]],[[0.088687404990196,0.030175089836121,0.0053187045268714],[0.067651636898518,0.074699267745018,-0.033993322402239],[-0.083423472940922,0.041840549558401,-0.067463979125023]],[[0.014930654317141,-0.11012213677168,-0.044345460832119],[0.023623503744602,-0.063955046236515,-0.099652372300625],[0.015964981168509,0.083728179335594,0.1768659055233]],[[-0.0042951791547239,-0.017499437555671,-0.025175394490361],[0.043189559131861,0.023945340886712,0.0037365446332842],[0.12470070272684,0.066111646592617,0.029834190383554]],[[0.00054567505139858,0.019205644726753,0.010991211980581],[0.086895816028118,-0.014297926798463,0.075014546513557],[0.0032456549815834,0.049227807670832,0.00020363440853544]]],[[[-0.0066936835646629,0.036845952272415,-0.040357865393162],[-0.010036205872893,-0.019830476492643,-0.10274220257998],[-0.013289906084538,-0.10079026967287,-0.0053817741572857]],[[-0.015840910375118,0.004799391143024,-0.059719167649746],[0.010794209316373,0.043075524270535,-0.027459109202027],[0.02883137576282,-0.062911495566368,-0.05515031889081]],[[-0.07807969301939,-0.086946681141853,-0.005265180952847],[0.029912639409304,-0.095074735581875,-0.048352066427469],[-0.0077250120230019,0.026713280007243,0.0012298695510253]],[[0.012894649989903,-0.024865601211786,0.014195114374161],[0.031030448153615,-0.038121294230223,-0.087871238589287],[0.017650503665209,0.024885360151529,-0.058062918484211]],[[0.073316790163517,0.069832473993301,0.030598929151893],[-0.096159115433693,-0.095790065824986,-0.0047783250920475],[0.013470307923853,-0.090479895472527,-0.057836655527353]],[[-0.0071587436832488,-0.021255834028125,-0.00026534014614299],[-0.021573256701231,-0.065424874424934,-0.05033652484417],[0.029984576627612,0.078766345977783,0.013765746727586]],[[-0.041916068643332,0.030169878154993,-0.050455305725336],[0.027008403092623,0.016302593052387,-0.069957628846169],[0.030425684526563,-0.024393439292908,-0.0078272754326463]],[[0.069912806153297,-0.012677285820246,-0.0038337386213243],[-0.044376574456692,-0.031613241881132,0.060665413737297],[-0.022018672898412,-0.038462791591883,-0.066206783056259]],[[0.0089323446154594,-0.072280332446098,0.020977359265089],[-0.06114425137639,0.019490579143167,-0.016698773950338],[0.0087634976953268,0.012507003732026,0.061957236379385]],[[0.013050283305347,0.018410407006741,-0.02785443328321],[0.0079652480781078,-0.12072629481554,-0.0066292369738221],[-0.026029743254185,-0.013557272031903,0.0018335339846089]],[[-0.0234061665833,-0.058450970798731,-0.092324085533619],[0.0048042149282992,0.0039084749296308,0.0041992333717644],[-0.0041137593798339,0.040237851440907,-0.014250631444156]],[[-0.018557084724307,0.0068979053758085,-0.011295867152512],[-0.077030293643475,-0.071172907948494,-0.028059920296073],[-0.043987471610308,0.085929542779922,-0.035901080816984]],[[-0.050074547529221,0.063816204667091,0.044512007385492],[-0.022534217685461,-0.031798496842384,0.0063041332177818],[-0.077667035162449,0.031845215708017,0.029722476378083]],[[-0.0078913969919086,0.0053777769207954,0.025983123108745],[-0.014201775193214,-0.018194139003754,0.057551771402359],[-0.02780532091856,-0.028407704085112,-0.01403315551579]],[[-0.0025648043956608,-0.032634533941746,-0.013446906581521],[0.035667438060045,-0.061436746269464,0.019127476960421],[0.066521935164928,-0.049561448395252,-0.0070596113801003]],[[-0.12010307610035,-0.071687534451485,0.060734141618013],[-0.091683335602283,0.017454359680414,-0.0044975797645748],[0.011058580130339,0.0087846647948027,0.056706875562668]],[[0.074312284588814,-0.062285698950291,-0.048850942403078],[0.095339678227901,0.067400209605694,0.049204777926207],[-0.03669198974967,-0.041960280388594,0.015849450603127]],[[0.010473442263901,-0.0022314575035125,-0.044578831642866],[0.018350588157773,0.052077770233154,-0.1447859108448],[0.062874369323254,-0.011137057095766,0.014100852422416]],[[0.012542805634439,-0.0045738499611616,-0.035214893519878],[-0.013898465782404,-0.058481458574533,-0.090280443429947],[-0.022441865876317,-0.074201337993145,0.02495738491416]],[[0.019766449928284,0.016551285982132,-0.030904021114111],[-0.029349077492952,0.039973594248295,0.0072948513552547],[-0.012902412563562,0.031036578118801,-0.016886761412024]],[[0.053326599299908,-0.021699722856283,-0.040143303573132],[-0.005497245118022,0.035587694495916,0.033319994807243],[-0.045428965240717,-0.024656442925334,0.07345037907362]],[[-0.004810728598386,0.081791661679745,-0.093512535095215],[-0.025982100516558,0.099981345236301,-0.048781890422106],[-0.11817719042301,-0.028527962043881,0.081098906695843]],[[0.034548439085484,0.012702924199402,-0.14255149662495],[0.07434756308794,-0.032760355621576,-0.07503729313612],[0.087302424013615,0.034207805991173,-0.0084864413365722]],[[-0.010717645287514,0.085182644426823,0.055503822863102],[-0.031180819496512,0.01965407282114,0.070889323949814],[0.038450226187706,0.046378627419472,0.060594096779823]],[[-0.01404489018023,0.015483076684177,0.051073133945465],[0.020865205675364,0.0052301334217191,0.015629298985004],[-0.030450021848083,0.011293028481305,-0.0056360047310591]],[[0.045692630112171,-0.016500787809491,0.077569201588631],[0.0093103516846895,0.023624420166016,0.00432681851089],[-0.028702553361654,0.018765173852444,0.0022812362294644]],[[0.013186841271818,-0.0010131566086784,-0.010589526034892],[-0.040341190993786,0.063642352819443,0.037613481283188],[0.027469918131828,0.0031678376253694,0.10522602498531]],[[-0.055071000009775,-0.015149345621467,0.025130733847618],[-0.0090029938146472,-0.021022347733378,0.079212553799152],[-0.0068926620297134,-0.086052812635899,-0.039525158703327]],[[0.035092908889055,-0.029050374403596,0.008658766746521],[0.012261889874935,0.01521351467818,0.043365135788918],[0.0022064601071179,-0.065035589039326,0.022796528413892]],[[-0.010774845257401,-0.0013707492034882,-0.019184680655599],[0.00084912322927266,0.016681702807546,0.026287762448192],[-0.0090477205812931,0.010372369550169,0.015705240890384]],[[-0.030146420001984,0.039350692182779,0.073230043053627],[0.036499179899693,0.04654248803854,-0.05081632360816],[-0.025965934619308,-0.030337683856487,-0.050864603370428]],[[0.047043189406395,0.062152236700058,-0.11933737248182],[-0.051401045173407,-0.11576015502214,0.0015023443847895],[0.073470458388329,0.024518236517906,-0.060471959412098]],[[-0.01069894246757,-0.039235129952431,-0.0032746011856943],[0.032989840954542,-0.016410829499364,-0.022876851260662],[0.0082844449207187,-0.001889571081847,0.011635914444923]],[[0.01634000428021,-0.038403294980526,0.024220308288932],[-0.062362551689148,-0.085456378757954,0.070992395281792],[-0.0072410856373608,-0.033420793712139,0.10489939153194]],[[0.036089561879635,-0.033420041203499,-0.0046427589841187],[0.035186607390642,-0.051544316112995,-0.02700188010931],[-0.03039238229394,0.084214650094509,-0.016900958493352]],[[0.027592008933425,-0.07274055480957,-0.083542838692665],[-0.032743595540524,-0.032632201910019,-0.05944687500596],[-0.050018362700939,0.0033878849353641,0.035161025822163]],[[-0.0075355134904385,-0.0059288367629051,0.013868592679501],[-0.056181259453297,-0.041100595146418,0.029268316924572],[-0.025382796302438,-0.0015050400979817,-0.091940239071846]],[[-0.0070830313488841,-0.059485588222742,-0.0068187713623047],[-0.015205040574074,-0.039879530668259,-0.063646785914898],[0.010995735414326,0.06346221268177,0.006362006533891]],[[0.0077802073210478,-0.071406178176403,-0.033765289932489],[0.016016853973269,0.036462143063545,0.043224535882473],[-0.056139707565308,0.058335892856121,-0.045159194618464]],[[0.020658576861024,-0.096022397279739,-0.095099307596684],[0.016859689727426,0.029004203155637,-0.017929470166564],[0.011101968586445,0.10173542797565,-0.0030648775864393]],[[-0.010307190008461,-0.004390993155539,0.047036428004503],[-0.056217085570097,0.040269628167152,-0.024380156770349],[-0.037676889449358,0.016767490655184,0.00034302845597267]],[[0.049559086561203,-0.042713634669781,-0.008571301586926],[-0.02210259437561,0.074417278170586,0.044829610735178],[0.046355277299881,0.062149949371815,0.03884306922555]],[[0.031070182099938,0.040832251310349,-0.039118699729443],[0.034147415310144,0.021194273605943,-0.023064564913511],[-0.017372280359268,-0.000968917098362,-0.010859258472919]],[[-0.062494177371264,0.014672147110105,-0.015021926723421],[-0.021992724388838,0.024787193164229,0.023568501695991],[0.049953117966652,0.012436668388546,0.053592007607222]],[[-0.034186858683825,-0.022680383175611,-0.032142408192158],[-0.018994327634573,-0.043999996036291,0.024267019703984],[-0.01359982509166,-0.041143290698528,0.002733445726335]],[[0.030034361407161,0.034149456769228,-0.067677401006222],[0.045309342443943,0.076228998601437,0.0071014850400388],[0.089613452553749,0.021809050813317,0.033512119203806]],[[0.033491529524326,-0.073482967913151,0.061227720230818],[-0.11629959195852,-0.014048263430595,-0.012979971244931],[-0.027587942779064,0.027424683794379,0.019697586074471]],[[0.046166211366653,-0.030104912817478,0.01259233430028],[-0.034740973263979,-0.067903846502304,-0.037416554987431],[0.019176211208105,-0.076350502669811,-0.031248413026333]],[[0.025847088545561,0.011134076863527,0.023405643180013],[-0.010831060819328,0.016804860904813,-0.023612659424543],[0.054642830044031,0.017478594556451,-0.06140324100852]],[[-0.024185176938772,-0.040084637701511,-0.019906176254153],[0.016515700146556,0.026317389681935,-0.05476538464427],[0.056225135922432,-0.0058752140030265,0.056238781660795]],[[0.0083222752436996,-0.040981069207191,-0.013165233656764],[0.080294691026211,-0.062116224318743,0.032074633985758],[0.034165356308222,-0.0043545169755816,0.0010005610529333]],[[0.041350200772285,-0.0065341359004378,-0.036241814494133],[0.054982051253319,-0.0053812703117728,0.020654059946537],[-0.039910066872835,-0.099560238420963,0.026754960417747]],[[0.048333488404751,-0.020802574232221,-0.016069326549768],[-0.01460939552635,-0.044584155082703,0.039105217903852],[0.0051488219760358,-3.1443523766939e-05,0.029246794059873]],[[0.0054740435443819,-0.022799791768193,0.025324957445264],[-0.024746928364038,-0.022020569071174,0.0087048411369324],[-0.07011166960001,-0.031222425401211,-0.0049567124806345]],[[0.03507424518466,0.025010885670781,-0.043211106210947],[0.044406641274691,-0.035273984074593,-0.083889156579971],[-0.022364296019077,0.049349207431078,-0.015211526304483]],[[0.051435504108667,0.022720035165548,0.030193185433745],[0.028117107227445,-0.008220499381423,0.026133866980672],[0.00043398319394328,-0.0030677129980177,-0.033707052469254]],[[0.01684058830142,0.11538465321064,-0.10369995981455],[-0.036040067672729,-0.012066951021552,0.0085179163143039],[-0.032600283622742,-0.10611205548048,-0.0026110801845789]],[[-0.020378611981869,-0.019982170313597,-0.028855370357633],[0.010502238757908,0.077325597405434,-0.13244061172009],[-0.027931269258261,0.016150176525116,0.0011171239893883]],[[-0.019711328670382,0.0073331291787326,0.13689890503883],[-0.062745720148087,0.11079075187445,0.030123325064778],[-0.053131382912397,-0.080794870853424,0.0043123858049512]],[[-0.046241011470556,0.028731059283018,0.012632517144084],[0.038157816976309,-0.022429892793298,-0.012717454694211],[-0.042999107390642,0.019683601334691,0.046226873993874]],[[-0.040269624441862,0.014241552911699,-0.097908079624176],[0.038494013249874,-0.014634805731475,-0.056689709424973],[-0.026843037456274,-0.074048310518265,0.025468287989497]],[[0.017772618681192,0.0431321375072,-0.055033262819052],[-0.017909530550241,0.024634651839733,-0.019511459395289],[0.046785578131676,-0.017182571813464,-0.02145853638649]],[[0.010145418345928,-0.022174937650561,-0.062667466700077],[0.039370410144329,-0.028472414240241,0.001117765204981],[0.045257546007633,0.013163353316486,0.052295483648777]],[[-0.041913535445929,-0.069181397557259,0.025620942935348],[-0.001317098387517,0.042964551597834,-0.05307362228632],[-0.02438623085618,-0.01875352486968,-0.010500790551305]]],[[[0.028417456895113,0.040853127837181,0.045479629188776],[0.016541516408324,0.040936890989542,0.014216563664377],[0.070337578654289,0.10132855176926,0.12296733260155]],[[0.00033380620880052,-0.080406084656715,-0.11933071166277],[0.015536152757704,0.01002256385982,-0.056578136980534],[0.0063334754668176,0.10371527820826,-0.070563316345215]],[[-0.0060556158423424,-0.1516549885273,-0.1001603603363],[-0.023488964885473,0.0011923875426874,-0.055856432765722],[0.049063943326473,0.033798009157181,0.072789438068867]],[[0.003744401037693,-0.059493478387594,-0.04621359333396],[0.04437567293644,-0.054642956703901,-0.14465221762657],[-0.069253504276276,0.041557431221008,0.0085582369938493]],[[-0.062248155474663,-0.13876129686832,-0.064425691962242],[0.059346362948418,-0.019850051030517,-0.062501683831215],[0.038514629006386,0.058911189436913,0.017585242167115]],[[-0.094811655580997,-0.055239591747522,-0.035630818456411],[-0.016011491417885,-0.0017415565671399,-0.013560745865107],[-0.060210458934307,0.056263297796249,-0.065172135829926]],[[-0.063913628458977,-0.052298836410046,-0.078272320330143],[0.063317626714706,0.012560471892357,-0.072258107364178],[0.083793938159943,-0.0079350145533681,-0.034679651260376]],[[0.00019327508925926,-9.5859322755132e-06,-0.10792562365532],[-0.0048330090939999,-0.020155748352408,-0.013677169568837],[0.02971750497818,-0.040575362741947,0.0085223317146301]],[[-0.0040255631320179,0.039145898073912,0.063441351056099],[-0.046671088784933,0.018829831853509,0.070933796465397],[-0.093321494758129,0.023831240832806,0.057842057198286]],[[-0.024284582585096,0.0023843550588936,0.066647984087467],[0.063322357833385,0.032312776893377,-0.025724411010742],[0.063937865197659,-0.063691079616547,-0.082688242197037]],[[0.037426877766848,-0.11452770978212,0.026802510023117],[-0.002866908442229,0.0017471476458013,-0.015671025961637],[0.0043050111271441,-0.11429165303707,0.038804776966572]],[[-0.030726676806808,-0.264762789011,-0.14148025214672],[0.058552049100399,-0.00047399837058038,-0.056184563785791],[0.056120678782463,0.096933700144291,-0.031194193288684]],[[0.12457855790854,0.022340876981616,0.024410720914602],[-0.063880950212479,-0.019494537264109,0.069279737770557],[0.083655700087547,0.11068726330996,0.073501229286194]],[[0.014860936440527,0.092524081468582,0.025018863379955],[0.039512131363153,0.04006165266037,-0.022060912102461],[0.061210226267576,0.072782151401043,0.061101920902729]],[[-0.050230327993631,0.07192038744688,0.00096195010701194],[-0.046123780310154,0.070054180920124,-0.10308612138033],[-0.043991841375828,0.01606135815382,0.030204905197024]],[[0.053521201014519,-0.034761469811201,0.043228641152382],[-0.011477527208626,-0.067053809762001,-0.02424637041986],[-0.044663108885288,0.029344275593758,0.035971969366074]],[[0.064598761498928,-0.086607247591019,0.042357157915831],[0.12150078266859,0.085848413407803,0.059354193508625],[0.015041590668261,-0.0011839929502457,-0.0062397471629083]],[[-0.046772349625826,-0.11260750889778,-0.060309458523989],[-0.059090260416269,-0.048133995383978,-0.038888193666935],[-0.03238495066762,-0.043778706341982,0.044291038066149]],[[0.018061190843582,0.066891729831696,0.075692199170589],[0.075744032859802,-0.083750173449516,0.10059083253145],[0.018992826342583,-0.050077054649591,0.021449979394674]],[[-0.023322872817516,-0.020762950181961,0.024866934865713],[0.020600724965334,-0.04874350130558,0.026433287188411],[-0.0040455609560013,0.049673020839691,-0.026655275374651]],[[0.00061227008700371,-0.0045863585546613,-0.067066535353661],[-0.018955711275339,-0.019353622570634,-0.069502510130405],[0.06514810025692,-0.043605275452137,-0.10014877468348]],[[0.11183056235313,-0.03714257478714,-0.0584467202425],[-0.010231258347631,0.037210900336504,-0.060977850109339],[0.059896234422922,-0.022465486079454,0.010652225464582]],[[0.028912916779518,0.026255330070853,-0.12469655275345],[0.031832080334425,0.029894664883614,-0.095794916152954],[0.07943519204855,0.051703676581383,-0.081949837505817]],[[-0.046975530683994,-0.015513786114752,0.06833303719759],[0.018713261932135,0.006734820548445,-0.007481531240046],[0.12295240908861,-0.083387531340122,0.049781277775764]],[[-0.01026551797986,-0.016713853925467,-0.094872176647186],[-0.011212797835469,0.06566508859396,-0.078305713832378],[-0.0050920788198709,-0.078704327344894,0.052721027284861]],[[0.017962442710996,0.0033783114049584,-0.012171060778201],[0.028775844722986,0.0076855588704348,0.0062400605529547],[0.056390780955553,-0.017489891499281,-0.020126033574343]],[[0.019016213715076,-0.030768826603889,0.016146071255207],[-0.019461140036583,0.10147010535002,-0.02090005017817],[-0.072326816618443,0.052800491452217,0.0062412563711405]],[[-0.097474351525307,0.0060954168438911,0.035023361444473],[-0.075411178171635,-0.085275031626225,-0.080480352044106],[-0.10564090311527,-0.01011117734015,-0.057617008686066]],[[0.010162396356463,0.0099734673276544,0.042597647756338],[-0.0052458974532783,0.018821347504854,-0.0055600539781153],[-0.010369811207056,0.014242474921048,-0.1039220392704]],[[0.035606227815151,0.065760679543018,0.064824610948563],[0.067525692284107,0.037961725145578,0.068362951278687],[-0.078278437256813,-0.063265599310398,0.0051268097013235]],[[-0.033824853599072,-0.030292995274067,0.026258170604706],[-0.13807272911072,-0.051935911178589,-0.12415576726198],[-0.056474775075912,-0.037849478423595,0.018024871125817]],[[0.0084367692470551,0.086496457457542,-0.035874649882317],[-0.04279051721096,0.083395555615425,-0.032178912311792],[0.047416690737009,-0.01131409034133,-0.10496968775988]],[[-0.011557755991817,-0.012412865646183,-0.087551705539227],[-0.02248851582408,-0.042760509997606,-0.041534788906574],[-0.057816784828901,0.018997997045517,0.01121499016881]],[[0.058951184153557,-0.027463160455227,-0.075053200125694],[-0.057484950870275,-0.04058288782835,0.0090888859704137],[0.01616283506155,0.03749481216073,0.025557721033692]],[[-0.085087954998016,0.022752704098821,-0.009201223962009],[-0.0081924349069595,-0.044602762907743,-0.046806778758764],[0.018347796052694,-0.11494266986847,0.016143757849932]],[[-0.010525758378208,-0.0028323277365416,-0.13699628412724],[0.016222845762968,0.022675268352032,-0.063472084701061],[-0.041927613317966,0.031893625855446,-0.022767236456275]],[[-0.0087697198614478,-0.0098255248740315,-0.008544297888875],[-0.10265762358904,0.027060011401772,0.06334862112999],[-0.093348316848278,-0.092414252460003,0.071076951920986]],[[-0.019279459491372,-0.11196880042553,-0.083996213972569],[0.024949390441179,-0.004986397922039,-0.01281922031194],[-0.069981090724468,0.0097137782722712,-0.024949470534921]],[[-0.041616648435593,-0.087194472551346,-0.033749416470528],[-0.037388525903225,-0.018878879025578,-0.02749559096992],[-0.029244115576148,-0.028678275644779,0.016990970820189]],[[0.056631926447153,0.051486127078533,0.03989789262414],[-0.070866994559765,0.056668646633625,0.021030282601714],[0.02999148145318,0.10268608480692,-0.097195394337177]],[[-0.026992132887244,0.010091183707118,0.037119794636965],[0.049061290919781,0.00026717636501417,-0.085756883025169],[-0.051125794649124,0.063382521271706,0.02253651432693]],[[-0.018419485539198,0.04025299847126,-0.018978256732225],[-0.0079553043469787,-0.0342827886343,0.017490295693278],[-0.080852419137955,-0.093557097017765,0.007417659740895]],[[-0.0027181440964341,-0.020043192431331,-0.0061012837104499],[-0.04862118139863,0.051132582128048,-0.009098662994802],[-0.032536488026381,-0.017199451103806,0.04552186653018]],[[0.035365968942642,-0.17306053638458,-0.16651366651058],[0.057382050901651,0.083835236728191,0.085894078016281],[-0.036425482481718,0.044929586350918,0.07414111495018]],[[0.011499403975904,-0.061916425824165,0.00021348494919948],[-0.0096222246065736,-0.022295398637652,0.099212840199471],[-0.1240656003356,-0.11615717411041,0.051923867315054]],[[0.029135519638658,0.0082026571035385,0.129434928298],[-0.00025680605904199,-0.007969556376338,0.024257328361273],[-0.037062384188175,-0.063333235681057,-2.9065755370539e-05]],[[-0.0031368602067232,-0.044250920414925,-0.086067646741867],[0.031179368495941,-0.10077480971813,-0.069994553923607],[0.00061823258874938,-0.0052780429832637,0.072065450251102]],[[0.018600279465318,0.060763161629438,-0.13747945427895],[-0.038737688213587,-0.062567166984081,-0.18041683733463],[-0.068590201437473,-0.052914816886187,-0.031097292900085]],[[-0.059023968875408,-0.070553451776505,-0.031251508742571],[-0.033494267612696,0.021600252017379,0.011619069613516],[-0.066732458770275,-0.0013486363459378,-0.026738967746496]],[[0.02238473109901,-0.1193450242281,-0.022875146940351],[-0.007923562079668,-0.060887895524502,-0.019749905914068],[0.015965780243278,-0.063035689294338,0.020492743700743]],[[-0.043861303478479,-0.093982629477978,0.0095537789165974],[0.013674187473953,0.0016072819707915,-0.036981910467148],[0.072431325912476,-0.089458510279655,0.045597270131111]],[[0.041410472244024,0.036952529102564,-0.16582456231117],[0.036080129444599,-0.022588182240725,-0.16267165541649],[0.018899112939835,0.022315118461847,-0.16214036941528]],[[0.027004439383745,-0.023402871564031,0.042121138423681],[-0.02016888000071,-0.0042252880521119,-0.0029141092672944],[-0.10419174283743,-0.047849372029305,0.023390291258693]],[[-0.046196296811104,-0.22521340847015,-0.12564568221569],[-0.013266094960272,-0.030545393005013,-0.059877287596464],[0.076474778354168,0.032032936811447,0.088454134762287]],[[0.010368120856583,-0.088440239429474,-0.1191984936595],[-0.018260300159454,-0.019349280744791,-0.08608727902174],[-0.044198337942362,-0.10540120303631,-0.020164716988802]],[[0.038435623049736,-0.06274438649416,-0.11206918209791],[0.019664352759719,0.0014516516821459,0.036718942224979],[0.046059682965279,0.0057905004359782,-0.0073422440327704]],[[-0.0013177141081542,-0.10473376512527,0.038354493677616],[-0.01587007381022,-0.013690543361008,0.037591278553009],[0.13964374363422,-0.016539167612791,-0.053039032965899]],[[0.042708091437817,-0.045915570110083,0.052673995494843],[-0.03183077275753,0.0054650623351336,-0.036384988576174],[0.016332438215613,0.0068321791477501,-0.011901432648301]],[[0.042807847261429,0.18699602782726,0.24686112999916],[0.14418418705463,0.033186085522175,0.14478611946106],[-0.083289965987206,-0.060428645461798,0.066413819789886]],[[0.030697774142027,-0.0095288334414363,-0.018932294100523],[0.027868300676346,-0.026404244825244,-0.046659495681524],[-0.011831670068204,-0.017200933769345,0.051524385809898]],[[-0.17175431549549,-0.11249313503504,0.016016436740756],[-0.15004280209541,0.015887528657913,0.025045149028301],[-0.10666200518608,-0.062073893845081,0.035791479051113]],[[-0.026142206043005,-0.027066394686699,-0.050984181463718],[-0.030244508758187,0.080998413264751,-0.015508513897657],[0.028054345399141,-0.067300051450729,-0.04896217212081]],[[-0.024577548727393,0.050200879573822,0.059281129390001],[-0.026384940370917,-0.0040981625206769,-0.14271600544453],[0.062366139143705,0.076386094093323,-0.00390525883995]],[[-0.07960556447506,-0.016086969524622,-0.0035028823185712],[0.03055821172893,-0.054658219218254,0.049953386187553],[-0.12939162552357,-0.12598079442978,-0.010467987507582]]],[[[-0.050314445048571,0.048387825489044,0.0030749922152609],[0.00011906294821529,-0.0089791044592857,0.067408353090286],[0.10418490320444,-0.026163261383772,0.061141226440668]],[[-0.035060480237007,-0.0067274798639119,-0.08605594933033],[-0.030670953914523,-0.043395038694143,-0.10992509871721],[0.054168008267879,-0.040294371545315,0.019199874252081]],[[-0.061708994209766,-0.020227733999491,0.025749007239938],[-0.020894275978208,-0.13505284488201,0.0086778504773974],[-0.030147366225719,-0.083243973553181,0.043487288057804]],[[0.060130085796118,0.00013405365461949,-0.11326615512371],[-0.013705126009881,-0.08016711473465,-0.082467794418335],[0.01325935125351,-0.078797541558743,-0.048626694828272]],[[0.011595693416893,0.0015889889327809,-0.010679915547371],[0.11348617076874,-0.034501723945141,0.055081386119127],[-0.050153624266386,0.041451342403889,0.12496422231197]],[[0.039592903107405,0.067772023379803,-0.0081524485722184],[0.043429844081402,-0.11319115012884,0.022581038996577],[0.029079271480441,-0.0047010965645313,-0.046981118619442]],[[-0.001048308215104,-0.00085820897947997,-0.040541119873524],[0.027374820783734,0.049738485366106,-0.071110792458057],[0.033020175993443,-0.071161143481731,-0.048678245395422]],[[0.048916351050138,0.10697696357965,-0.038675013929605],[-0.025502758100629,-0.0036541654262692,-0.077164590358734],[-0.049542240798473,0.023979820311069,-0.080707728862762]],[[0.047877192497253,-0.031738132238388,-0.0056056194007397],[-0.01542791351676,-0.021329287439585,-0.0349026247859],[0.058672957122326,-0.0046433340758085,0.043504428118467]],[[-0.012844637036324,0.052237786352634,0.11977560073137],[-0.037238944321871,-0.014508296735585,0.0027725717518479],[0.0067223594523966,-0.032261312007904,0.046370077878237]],[[-0.024570729583502,0.027429848909378,-0.029670629650354],[0.041092179715633,0.014038445428014,-0.034532971680164],[0.025712566450238,-0.078990280628204,0.027693441137671]],[[0.043012090027332,0.047389473766088,-0.0097436662763357],[0.033707108348608,-0.010764663107693,0.064679220318794],[0.054893348366022,0.054245512932539,0.071081794798374]],[[-0.0037653353065252,-0.022634599357843,0.013750312849879],[-0.055314965546131,0.030165560543537,-0.078309677541256],[0.054608587175608,-0.014478988014162,0.032945618033409]],[[-0.013804977759719,0.020894350484014,-0.010296269319952],[-0.01231215428561,0.01461838465184,0.0052578849717975],[-0.0084872879087925,-0.0089231841266155,0.013092174194753]],[[0.065660759806633,-0.056156311184168,-0.0085296258330345],[-0.0679916664958,-0.070268183946609,-0.0037270705215633],[-0.018231775611639,0.011634851805866,0.0089013399556279]],[[0.04930218309164,0.04585837572813,0.022745534777641],[0.00010387459769845,0.018479948863387,-0.001763605279848],[-0.058919984847307,0.060536425560713,0.044560428708792]],[[-0.018640071153641,-0.017386021092534,-0.025268036872149],[0.041402783244848,-0.072910040616989,0.036020267754793],[-0.057286206632853,-0.057174224406481,0.11351710557938]],[[0.043254073709249,0.022647833451629,0.10809651762247],[0.0025562469381839,0.017649251967669,-0.10779629647732],[-0.007430671248585,-0.026180787011981,-0.057465929538012]],[[0.031349804252386,0.012229857966304,-0.037905354052782],[-0.0067989714443684,0.00054153538076207,-0.024450793862343],[-0.014965473674238,0.0092667434364557,-0.031319122761488]],[[0.06493367254734,0.0039838585071266,0.031317632645369],[0.00071113143349066,0.00015829138283152,-0.019021354615688],[-0.020291950553656,-0.029643185436726,0.0089798346161842]],[[-0.030317217111588,0.021241588518023,0.045702297240496],[-0.012527970597148,-0.052363030612469,-0.14802613854408],[0.0029172608628869,-0.0097932461649179,-0.10130205750465]],[[0.17807592451572,0.014666513539851,0.067286662757397],[-0.068805187940598,-0.029454151168466,0.05610017105937],[-0.11220154166222,-0.010015179403126,-0.074236609041691]],[[0.01347338501364,-0.012688922695816,0.065594643354416],[-0.081933364272118,-0.072504684329033,-0.081418558955193],[0.097946599125862,0.031269174069166,0.0097934361547232]],[[-0.046188075095415,0.070557430386543,0.049221992492676],[-0.054605986922979,0.075118035078049,0.10811752080917],[0.092168338596821,0.090991094708443,-0.011744609102607]],[[-0.043886952102184,-0.049273781478405,-0.097879774868488],[0.017165353521705,0.036464646458626,-0.054831843823195],[0.0092952754348516,-0.10765782743692,-0.065617986023426]],[[-0.01362996455282,0.09160490334034,0.029090646654367],[0.046384520828724,0.016140874475241,0.057412173599005],[0.026241339743137,0.031068256124854,-0.015343851409853]],[[-0.018483346328139,0.015839161351323,-0.044708210974932],[0.0066562816500664,-0.024886377155781,-0.083492122590542],[0.046694237738848,-0.094289191067219,-0.060324028134346]],[[-0.020983608439565,0.018236255273223,0.0047279610298574],[0.041865702718496,0.035984970629215,-0.046500660479069],[-0.018670476973057,-0.025277270004153,-0.014161373488605]],[[-0.084063798189163,0.05885112658143,0.024040672928095],[-0.0048318109475076,0.041642259806395,-0.00086665659910068],[-0.046675838530064,-0.0077110035344958,-0.022183725610375]],[[0.0094681121408939,0.015993416309357,-0.083930097520351],[0.00371537450701,-0.019517380744219,-0.02764517813921],[0.016570523381233,0.014513579197228,-0.059663221240044]],[[0.044170305132866,-0.015908202156425,-0.10034744441509],[0.00081345532089472,-0.0053574894554913,0.048889894038439],[0.025793399661779,-0.037155002355576,0.0072559765540063]],[[-0.071127206087112,-0.040121871978045,-0.017467938363552],[-0.023892436176538,0.10018476843834,0.038039557635784],[-0.035398073494434,-0.088852666318417,0.030408319085836]],[[0.021972063928843,-0.052755977958441,0.031932577490807],[-0.029353814199567,-0.013984822668135,-0.013106236234307],[0.02888816036284,0.039667990058661,0.019201466813684]],[[0.06545964628458,-0.078182116150856,-0.087569512426853],[-0.0027583695482463,0.059217728674412,-0.054443020373583],[0.016959005966783,-0.06158971041441,0.072160296142101]],[[0.07613492757082,0.0050416616722941,0.026363121345639],[0.088978543877602,0.062367755919695,0.030204569920897],[0.064930692315102,-0.033229842782021,-0.0054401983506978]],[[-0.063243679702282,-0.020409736782312,-0.050359945744276],[0.045104183256626,0.054656121879816,-0.044606845825911],[-0.017539964988828,0.0097928987815976,-0.06915320456028]],[[-0.011118391528726,-0.11432856321335,-0.047248415648937],[0.0077528120018542,-0.031422629952431,0.00070454907836393],[0.1206244751811,-0.041580494493246,0.038376588374376]],[[0.024165546521544,0.019949905574322,0.012173009105027],[0.038666162639856,-0.064033702015877,-0.069613963365555],[0.007085386198014,0.014400714077055,-0.041261434555054]],[[-0.0028743147850037,0.0065655615180731,0.02556311711669],[0.028308158740401,0.020884219557047,0.068484589457512],[0.10749078541994,-0.026804072782397,-0.12386879324913]],[[-0.019655330106616,0.0036054581869394,-0.11841325461864],[-0.029775246977806,-0.041758634150028,-0.053397696465254],[-0.01588299870491,0.048703592270613,-0.00068851868854836]],[[-0.039254952222109,0.067772425711155,0.10958603024483],[0.052139237523079,-0.03442694619298,-0.022334525361657],[0.022464020177722,-0.013227496296167,0.087751008570194]],[[0.0874198153615,-0.0049107493832707,-0.036060843616724],[-0.04861769080162,-0.13801780343056,-0.13507397472858],[0.019609078764915,0.0069492934271693,0.0010295499814674]],[[-0.040656141936779,0.059501085430384,0.010558305308223],[0.0011632342357188,0.049343198537827,0.055776845663786],[-0.080398440361023,0.028945278376341,0.0048959059640765]],[[-0.050519581884146,0.023510236293077,0.049210667610168],[-0.12129890173674,-0.069308824837208,0.024315008893609],[0.021295575425029,0.020111473277211,0.010850105434656]],[[-0.069536671042442,-0.054768584668636,0.075291067361832],[-0.036239434033632,0.037338245660067,-0.026638258248568],[-0.091405890882015,0.015312965959311,0.06111915409565]],[[0.046766839921474,-0.054622415453196,0.014118037186563],[0.028473487123847,0.018479600548744,-0.0086476402357221],[0.043362751603127,-0.0030810453463346,-0.0068617635406554]],[[0.091636463999748,-0.034790597856045,0.0062693138606846],[0.023201618343592,-0.018571719527245,0.051709156483412],[0.0016912346472964,0.046848267316818,0.021054683253169]],[[0.015054813586175,0.017295001074672,0.10878568887711],[-0.025015786290169,-0.018597302958369,-0.057377014309168],[-0.022259933874011,-0.0060203857719898,0.10149745643139]],[[-0.034902580082417,0.011578241363168,0.051250316202641],[-0.03369377925992,0.021170852705836,0.024967297911644],[0.0069035310298204,0.090131662786007,-0.069778397679329]],[[0.042952675372362,0.024845542386174,-0.045225739479065],[0.028545286506414,0.031729996204376,-0.037488620728254],[-0.028702940791845,-0.00021910006762482,-0.060860604047775]],[[0.028727335855365,-0.027597280219197,-0.0016429732786492],[0.0094058942049742,-0.053661942481995,0.040642250329256],[-0.032760735601187,0.022480396553874,0.00058456184342504]],[[0.066021606326103,0.086469240486622,-0.017481883987784],[-0.10573108494282,0.046111933887005,0.026801431551576],[-0.09985264390707,-0.0052399523556232,0.040761735290289]],[[0.0023494071792811,-0.07562729716301,-0.0041245380416512],[-0.010132308118045,0.036051489412785,0.0014566383324564],[-0.082749880850315,-0.0019907217938453,-0.026803502812982]],[[0.040430299937725,0.0041893194429576,-0.03290007635951],[-0.033955320715904,0.066039212048054,-0.031039904803038],[0.027317466214299,-0.027427585795522,0.083530463278294]],[[-0.0093780048191547,-0.069998204708099,-0.015612438321114],[-0.019737860187888,0.019996076822281,0.033876322209835],[-0.068610496819019,-0.073373205959797,-0.010865638032556]],[[-0.014396722428501,0.030572362244129,0.029258016496897],[-0.063709899783134,0.070957362651825,-0.0977962911129],[-0.027315732091665,0.056329742074013,0.030569957569242]],[[0.0061241989023983,-0.10305649787188,-0.0033393057528883],[0.0216024518013,-0.0037723982241005,0.022420309484005],[0.035054072737694,0.013602796941996,0.028385808691382]],[[0.034344676882029,-0.020398305729032,0.076847180724144],[-0.021119793877006,0.012117883190513,-0.048866674304008],[0.028630217537284,0.020650591701269,-0.14554430544376]],[[0.017650697380304,0.043242659419775,-0.03709651529789],[0.011421793140471,0.072767496109009,0.065139897167683],[0.061974462121725,0.07428266108036,0.13797414302826]],[[-0.0096939969807863,-0.012197444215417,-0.058311592787504],[0.051077406853437,0.030304351821542,-0.069828346371651],[0.074207805097103,0.016814300790429,0.0015197658212855]],[[0.025212539359927,0.037679847329855,0.014499126933515],[-0.073388762772083,0.032222159206867,-0.010089968331158],[-0.15580539405346,0.079627595841885,-0.14786969125271]],[[0.0090318471193314,0.023765385150909,0.07134236395359],[0.023487901315093,-0.091500163078308,0.037777721881866],[-0.08499301224947,-0.01350696478039,0.13643541932106]],[[-0.042839154601097,-0.044017858803272,-0.0016913417493924],[0.046412084251642,0.014203856699169,-0.043449144810438],[0.066932216286659,0.022134294733405,0.02771701477468]],[[0.0098419468849897,0.046651542186737,-0.037819225341082],[0.04160774871707,-0.0075465440750122,0.056704450398684],[-0.083777472376823,0.012462604790926,-0.056252356618643]]],[[[-0.049160525202751,0.086894921958447,0.12062960118055],[0.017411705106497,-0.015190391801298,0.1011677980423],[-0.074042461812496,-0.069947093725204,0.14815530180931]],[[-0.030059047043324,0.031423721462488,0.051028434187174],[-0.011028871871531,0.038312561810017,0.015153696760535],[-0.057209894061089,0.00039758282946423,-0.036028657108545]],[[-0.0028385303448886,0.018732694908977,-0.03802290931344],[-0.049573682248592,0.0057319700717926,-0.0036970805376768],[0.015640961006284,-0.015449669212103,-0.03265742585063]],[[0.022679477930069,0.037351533770561,0.063594110310078],[-0.00034249114105478,0.012532973662019,-0.012869045138359],[0.0021966444328427,-0.044436454772949,0.07743963599205]],[[0.034218903630972,-0.017018580809236,-0.01352212857455],[0.072213374078274,0.02385550737381,-0.0012496680719778],[0.072411775588989,-0.13833709061146,-0.052250221371651]],[[-0.073298417031765,-0.040041372179985,0.072292290627956],[0.020447479560971,-0.051028989255428,-0.0031117901671678],[-0.058721475303173,0.0026577385142446,0.010244598612189]],[[0.015211526304483,0.027347192168236,-0.016537366434932],[-0.021746752783656,0.01534482371062,0.028687965124846],[-0.032438099384308,-0.0024208740796894,0.011183117516339]],[[-0.011510353535414,0.004558224696666,-0.0086717391386628],[-0.035017315298319,0.0047595421783626,0.10401853919029],[-0.072612412273884,0.002167321741581,-0.0070208236575127]],[[-0.00032976601505652,-0.034258928149939,0.0032404866069555],[-0.011808635666966,0.056444134563208,-0.039175298064947],[-0.024346368387341,-0.051177483052015,-0.0019844165071845]],[[-0.018412593752146,0.020348848775029,0.025662137195468],[0.010984261520207,0.02464802749455,0.066342175006866],[-0.034541141241789,0.01700715906918,-0.057456161826849]],[[-0.094351053237915,-0.030273620039225,0.01525426004082],[-0.051617123186588,0.016781136393547,-0.0098895626142621],[0.060203861445189,0.034298915416002,0.055173564702272]],[[0.066272668540478,-0.079543128609657,0.07256967574358],[-0.046584874391556,-0.00060586188919842,0.041319169104099],[0.043429292738438,0.054328586906195,-0.016439322382212]],[[0.002608438488096,0.0029343655332923,0.030214020982385],[0.011550945229828,-0.051934998482466,-0.0064724194817245],[-0.20864771306515,0.035732816904783,0.043231636285782]],[[0.062312882393599,0.041461266577244,-0.051756352186203],[0.045230064541101,0.057975552976131,-0.059043612331152],[0.0046784514561296,0.033097833395004,-0.036059588193893]],[[-0.0044547473080456,0.027286697179079,-0.010852748528123],[-0.030320039018989,-0.040580160915852,0.066825360059738],[0.024105284363031,-0.04906165972352,-0.10428058356047]],[[0.063100315630436,-0.044772379100323,0.003154766978696],[-0.016628393903375,-0.0048167766071856,-0.04407200217247],[0.015867859125137,-0.0076599763706326,0.030851878225803]],[[-0.056654315441847,0.0037264896091074,-0.012460884638131],[0.011147269979119,0.051484894007444,-0.057774599641562],[-0.023868819698691,0.053310628980398,0.030756728723645]],[[-0.010886443778872,-0.060628946870565,0.054342158138752],[0.021452113986015,0.01759391091764,0.051483325660229],[-0.051185853779316,0.042815025895834,-0.0013554486213252]],[[0.03770924732089,-0.0015129246748984,-0.0055069592781365],[0.041257258504629,-0.048302661627531,-0.00502839544788],[0.072311289608479,-0.019278384745121,0.073697157204151]],[[-0.0060089151374996,-0.055788949131966,0.0019101500511169],[-0.0047209821641445,0.021265100687742,0.098844811320305],[-0.059874035418034,0.026507956907153,-0.0011427402496338]],[[-0.013058173470199,-0.096121467649937,-0.026772810146213],[-0.050756331533194,0.012600921094418,0.019111854955554],[-0.086639679968357,-0.02854035794735,-0.023228907957673]],[[-0.021277824416757,0.018728274852037,0.10326870530844],[-0.036741103976965,0.052988808602095,-0.14084452390671],[0.0017407388659194,-0.091761849820614,-0.094382844865322]],[[-0.050905976444483,-0.0062264599837363,-0.067102417349815],[-0.073162198066711,0.022319823503494,0.02384951710701],[0.049017306417227,0.0020339458715171,-0.0028379689902067]],[[0.053431127220392,-0.079477369785309,-0.0845812484622],[0.058879286050797,-0.0097440928220749,0.037147220224142],[0.028121566399932,0.090625233948231,0.056264143437147]],[[-0.057026732712984,-0.033724319189787,-0.11111214756966],[0.034484054893255,0.033364959061146,0.073403000831604],[-0.05163573846221,0.035813342779875,-0.056101154536009]],[[0.016714824363589,-0.02505250275135,0.033292327076197],[-0.043073736131191,0.032859493046999,-0.017579775303602],[-0.0021389806643128,0.12992802262306,0.060437757521868]],[[-0.049435887485743,-0.12572978436947,-0.02561067417264],[-0.063450492918491,0.022266859188676,0.0080549158155918],[-0.017065480351448,0.058290131390095,-0.0011678549926728]],[[0.014662712812424,0.018260382115841,-0.020338632166386],[-0.013925621286035,-0.027764178812504,-0.016155775636435],[-0.022195933386683,-0.010376793332398,-0.0046547804959118]],[[-0.03480464592576,0.044960450381041,-0.0037516874726862],[0.019978102296591,0.047352265566587,-0.017971109598875],[0.009918593801558,-0.033978976309299,0.027625132352114]],[[0.084304109215736,0.053760550916195,0.076441444456577],[-0.012346302159131,0.036858323961496,0.0059385928325355],[0.027484312653542,-0.0087094949558377,0.038229033350945]],[[0.0060649486258626,-0.040710907429457,0.10404031723738],[0.052089706063271,-0.021449059247971,-0.013877534307539],[-0.010874342173338,0.058353390544653,0.079253762960434]],[[0.025107454508543,-0.11132875829935,-0.047453641891479],[0.012587116099894,0.067498601973057,0.046059742569923],[0.019028279930353,-0.00076299882493913,-0.0083189411088824]],[[-0.0067786728031933,0.038690909743309,0.012638600543141],[0.0078935008496046,-0.058513328433037,-0.039155930280685],[-0.01418169029057,0.0014929596800357,-0.032973032444715]],[[0.022375628352165,-0.029951492324471,0.027135506272316],[0.0084192156791687,-0.058585442602634,0.012368055060506],[0.0073529686778784,-0.085404545068741,0.059779550880194]],[[-0.021699670702219,0.05157745629549,-0.039938062429428],[-0.072720155119896,0.057829543948174,-0.016352700069547],[-0.024128759279847,-0.010540928691626,-0.00017447947175242]],[[-0.040382582694292,-0.11407021433115,-0.035235196352005],[0.0074507398530841,-0.0069867386482656,-0.016207084059715],[0.064653620123863,0.032373905181885,-0.010085375979543]],[[0.023299690335989,-0.034567821770906,-0.11136793345213],[0.026403276249766,-0.039870213717222,-0.055856071412563],[0.12546207010746,-0.013180961832404,-0.010421940125525]],[[-0.026860017329454,-0.020171150565147,0.022252323105931],[0.0094290152192116,0.050349242985249,0.0027238710317761],[0.0036520594730973,0.019565785303712,-0.014995380304754]],[[-0.11693916469812,0.065234363079071,-0.018307499587536],[0.037848576903343,-0.055554464459419,0.019377306103706],[-0.021879518404603,-0.024160457774997,-0.02340873144567]],[[0.024832747876644,-0.083206698298454,-0.069450102746487],[-0.059016961604357,0.0027233213186264,-0.012251157313585],[-0.049939796328545,-0.10057350248098,0.031603444367647]],[[-0.089481018483639,-0.0033239286858588,0.054992809891701],[-0.060842923820019,0.043285772204399,-0.024647435173392],[-0.0034139347262681,-0.069280713796616,0.019734242931008]],[[-0.031980473548174,-0.029719853773713,0.10461989045143],[0.063695393502712,0.01970536261797,-0.0487210303545],[-0.040720149874687,-0.0090734297409654,0.02060198225081]],[[-0.013124152086675,-0.049525614827871,0.046193387359381],[0.040050439536572,0.04583803191781,-0.00077717349631712],[0.02312851138413,0.11960132420063,0.079121507704258]],[[0.01129683945328,-0.00092164613306522,0.031761094927788],[-0.045520588755608,0.032049663364887,0.023832315579057],[-0.086211167275906,-0.02084942907095,-0.13155087828636]],[[-0.0081074964255095,-0.025074824690819,-0.086298383772373],[-0.09199333935976,0.024585988372564,0.082644127309322],[-0.014569245278835,-0.051612630486488,0.010805567726493]],[[0.063520707190037,-0.027009928599,-0.081852219998837],[0.020968331024051,-0.083709552884102,-0.029143383726478],[-0.098694257438183,-0.079543426632881,-0.044642239809036]],[[-0.045435186475515,-0.088605649769306,0.070890247821808],[0.055744625627995,0.048226624727249,0.062241796404123],[-0.039015356451273,0.10924410074949,0.032809942960739]],[[-0.0019528358243406,0.0017043580301106,-0.017760956659913],[0.040420208126307,-0.055399496108294,0.098535180091858],[0.00089401233708486,-0.058050442487001,-0.015512740239501]],[[0.014338289387524,-0.069983281195164,-0.040931325405836],[-0.069994889199734,-0.013553787954152,0.02725400775671],[-0.02067949809134,0.0014593236846849,0.051355484873056]],[[-0.039391417056322,0.040105324238539,0.019245920702815],[0.055327232927084,-0.057597685605288,0.042076140642166],[-0.081986479461193,0.007813929580152,0.010754476301372]],[[-0.031070496886969,0.04141516238451,-0.0078674573451281],[-0.033945467323065,-0.076682403683662,0.038736887276173],[-0.094602257013321,0.062473259866238,-0.05032654479146]],[[-0.059870660305023,0.11420089006424,0.094980843365192],[0.008501997217536,0.043631318956614,0.028342675417662],[0.12644396722317,0.046531587839127,0.046639155596495]],[[-0.0069229500368237,0.017056461423635,0.0043035931885242],[-0.074923135340214,0.0028290778864175,-0.023661036044359],[-0.040938407182693,0.022494565695524,0.0054877987131476]],[[-0.0085461540147662,-0.15119342505932,0.036335963755846],[0.10188418626785,-0.058429408818483,-0.015638718381524],[0.0021600821055472,0.034209854900837,-0.017040695995092]],[[-0.054983202368021,0.014739629812539,0.00017370554269291],[0.030007690191269,-0.095529615879059,-0.0095819346606731],[0.027851354330778,-0.046364758163691,-0.079638727009296]],[[-0.0058676237240434,-0.062691152095795,-0.0016565101686865],[0.044481229037046,-0.020705552771688,0.011271866038442],[-0.0087775764986873,-0.027981489896774,0.051167335361242]],[[0.049002021551132,0.040469657629728,-0.078474782407284],[0.10402389615774,-0.020235231146216,-0.074586443603039],[0.082207664847374,0.010803695768118,0.066469013690948]],[[0.0051184031181037,-0.0072512710466981,0.014900631271303],[0.022995755076408,0.010800315998495,-0.082390338182449],[-0.037732604891062,-0.081048250198364,0.029163040220737]],[[-0.01344680134207,-0.028804510831833,-0.10279729962349],[0.081077761948109,0.068808510899544,-0.045714680105448],[0.083627253770828,0.096954822540283,0.051908530294895]],[[0.0010732761584222,0.015012643299997,0.041959658265114],[0.018675707280636,-0.0035965759307146,-0.076403968036175],[-0.0065944348461926,0.013190272264183,-0.015715386718512]],[[-0.051215589046478,0.057043313980103,0.015571258962154],[-0.016283292323351,0.055675201117992,-0.077477976679802],[-0.012906981632113,-0.0085767954587936,0.024906484410167]],[[0.0079879006370902,0.00019382729078643,-0.13308738172054],[0.053606312721968,-0.070986397564411,0.044878918677568],[0.075670458376408,0.018248165026307,0.054341081529856]],[[-0.072596684098244,-0.034274972975254,-0.031421668827534],[-0.090758591890335,0.012223211117089,0.0073206769302487],[-0.0067928414791822,0.051310155540705,0.02346845716238]],[[-0.0032672409433872,0.011035137809813,-0.023039542138577],[-0.041951134800911,-0.072802767157555,0.027816129848361],[-0.04684442281723,-0.05123282968998,0.079096972942352]]],[[[0.076294057071209,0.015285056084394,-0.019519900903106],[0.029116701334715,0.061641745269299,-0.044885750859976],[-0.034476671367884,0.015716476365924,-0.019236296415329]],[[0.048311464488506,0.040619652718306,0.012575634755194],[0.090111389756203,-0.042305707931519,0.03632739931345],[0.0045968936756253,-0.01681712269783,0.02497972548008]],[[-0.07758953422308,0.027577197179198,0.0059544290415943],[0.035431537777185,-0.044502004981041,-0.03305397182703],[0.041981868445873,-0.063301183283329,-0.073997169733047]],[[-0.024655856192112,-0.018170583993196,0.041423231363297],[-0.0067333527840674,-0.0046467348001897,0.088824659585953],[0.14327818155289,0.056423354893923,-0.024372145533562]],[[-0.027322741225362,0.027063256129622,-0.013692791573703],[0.0038195219822228,-0.096352152526379,0.0050626252777874],[0.0078266076743603,0.091715566813946,0.11301277577877]],[[0.10945003479719,0.10702363401651,0.01616888307035],[0.039457056671381,0.020115595310926,-0.038604702800512],[-0.12483561038971,-0.092145815491676,-0.10090579837561]],[[0.033034510910511,0.017480546608567,-0.045442543923855],[0.038627628237009,-0.02779027633369,-0.040458019822836],[0.013681490905583,-0.012858467176557,0.074490293860435]],[[0.068206883966923,0.01446251757443,0.027770796790719],[0.03448224440217,-0.034722708165646,-0.04573006555438],[0.055642437189817,-0.1282505095005,-0.10934793204069]],[[-0.022884240373969,0.019987776875496,0.073073856532574],[0.053191237151623,0.1027562841773,-0.062529131770134],[-0.082681648433208,-0.064173817634583,-0.092376299202442]],[[-0.011032658629119,0.031684335321188,0.0066033243201673],[-0.037576742470264,0.0027052923105657,0.059700485318899],[-0.0093081742525101,0.13241924345493,0.037191580981016]],[[-0.03809716925025,-0.020788792520761,0.041619397699833],[-0.034731388092041,-0.0976477637887,0.015000675804913],[-0.054756864905357,0.011303195729852,0.032972410321236]],[[0.03089882619679,0.046699680387974,0.055083680897951],[0.0025474873837084,-0.0048582837916911,0.015895642340183],[-0.14533948898315,-0.13387094438076,-0.13376440107822]],[[0.068693198263645,0.052212439477444,-0.0078390249982476],[-0.026804223656654,-0.019250273704529,0.060835599899292],[-0.036948312073946,0.035125751048326,-0.059058472514153]],[[0.013614796102047,0.0076531521044672,0.057994607836008],[0.022450808435678,0.10611210018396,0.028684122487903],[-0.069028504192829,-0.029303956776857,-0.053937129676342]],[[0.07433644682169,0.013057655654848,0.028666174039245],[0.009714693762362,-0.042975708842278,0.0113789960742],[-0.035455003380775,0.029642499983311,0.037186335772276]],[[-0.040714655071497,-0.044098168611526,0.0041634892113507],[0.0086895106360316,0.0047645103186369,0.0046937051229179],[0.098137058317661,0.14331568777561,0.083719678223133]],[[-0.037340518087149,-0.15022750198841,-0.0044548432342708],[-0.011700208298862,-0.046376995742321,0.054827224463224],[-0.0039633181877434,0.0093484343960881,-0.026941834017634]],[[0.1406387835741,-0.020776659250259,-0.063046336174011],[-0.029833409935236,0.034095581620932,-0.019151203334332],[-0.07095380872488,-0.058229722082615,-0.033942051231861]],[[0.044167269021273,-0.052996840327978,0.024166651070118],[-0.051403567194939,0.020218005403876,-0.011488341726363],[-0.023566864430904,0.025641679763794,0.0074914377182722]],[[0.04012980312109,0.028018029406667,-0.02266894094646],[0.053427159786224,-0.06159208342433,-0.016664067283273],[0.051310636103153,0.0046818237751722,-0.040583420544863]],[[-0.018294209614396,0.060910258442163,0.0075240242294967],[-0.014448720030487,0.094240069389343,-0.034851334989071],[0.037870846688747,0.032444827258587,0.053788967430592]],[[0.11668821424246,0.0097593795508146,-0.017782675102353],[0.069225877523422,0.034693568944931,0.058165803551674],[-0.05806902050972,-0.017167761921883,0.066898539662361]],[[0.050218537449837,0.076153844594955,0.031855616718531],[0.034746192395687,0.021695643663406,-0.088329747319221],[0.073747009038925,0.020349683240056,0.016722636297345]],[[0.037053860723972,-0.013659725897014,0.044518224895],[0.053971115499735,0.10896384716034,0.12542916834354],[0.053010951727629,0.03700515255332,0.1797256320715]],[[-0.052789375185966,0.01010153349489,-0.0094504402950406],[-0.03192650526762,-0.059888955205679,-0.065106689929962],[-0.018665166571736,-0.066361367702484,0.017563011497259]],[[0.037175789475441,-0.046795055270195,-0.049817159771919],[0.012592271901667,0.02618844807148,-0.057353898882866],[-0.016550166532397,-0.040963690727949,-0.015025284141302]],[[0.002695987932384,0.1370641887188,0.025440089404583],[-0.039710450917482,0.073849514126778,-0.055280651897192],[-0.087847791612148,-0.10238132625818,0.087860584259033]],[[0.03124988079071,-0.025414403527975,-0.074480563402176],[0.030880009755492,-0.03660424426198,-0.024971811100841],[-0.0051466012373567,-0.017107026651502,-0.010783868841827]],[[-0.074677929282188,0.016062911599874,-0.04890463128686],[-0.041760504245758,0.0070362775586545,0.02042511664331],[0.024711553007364,-0.020706469193101,-0.022818041965365]],[[0.071636579930782,-0.037523522973061,-0.038949783891439],[-0.044335160404444,-0.010696000419557,-0.15419475734234],[0.038305047899485,-0.084315441548824,-0.22681345045567]],[[-0.016547184437513,-0.078908078372478,0.016675408929586],[-0.041894663125277,-0.0057416455820203,0.032959558069706],[-0.0049906466156244,0.039363868534565,0.018556334078312]],[[0.10797642171383,-0.089722290635109,0.019077595323324],[0.067974738776684,-0.0093766134232283,-0.030686732381582],[0.073933646082878,-0.010675716213882,-0.06264241784811]],[[-0.023092465475202,-0.075173042714596,0.03726439923048],[-0.030916204676032,0.016303258016706,-0.01466827839613],[0.0047922246158123,0.039029914885759,0.035298030823469]],[[0.0083556128665805,-0.00043561277561821,0.0067071551457047],[-0.0032368104439229,0.027537576854229,0.017586071044207],[-0.0029164000879973,0.11545398086309,-0.016610512509942]],[[0.055622588843107,-0.1505730599165,-0.056217312812805],[-0.013328430242836,-0.15253020823002,-0.026201581582427],[0.076036870479584,-0.00031585863325745,0.0068086674436927]],[[-0.066902413964272,0.0012388869654387,-0.016061479225755],[0.096966646611691,-0.0070707490667701,-0.054475005716085],[0.016833348199725,0.018411170691252,-0.0084802620112896]],[[0.085421152412891,0.15765878558159,0.01342920679599],[0.00376498978585,0.031336396932602,-0.042760521173477],[-0.0092464843764901,0.0018940545851365,-0.073495954275131]],[[0.019988400861621,-0.00097955542150885,0.071312427520752],[0.081892468035221,0.047344874590635,-0.0046368762850761],[-0.13419507443905,-0.04385294765234,-0.070882439613342]],[[-0.01787537150085,-0.069336466491222,-0.058320339769125],[-0.011828806251287,-0.020841911435127,0.021105639636517],[-0.005608465988189,-0.026781862601638,-0.043617181479931]],[[-0.087458766996861,0.058565095067024,0.070777498185635],[0.01462706271559,0.1429085880518,0.010285151191056],[0.089065082371235,0.072608806192875,0.063415050506592]],[[0.066161721944809,0.070294491946697,0.022714672610164],[0.067128613591194,0.017494864761829,0.09333673864603],[-0.043973669409752,0.025386469438672,0.037022944539785]],[[-0.0073339473456144,-0.016990516334772,0.041190098971128],[-0.021192088723183,-0.11725498735905,0.058616526424885],[-0.017659621313214,-0.020147021859884,0.12491015344858]],[[-0.031959403306246,-0.0087889693677425,0.13936504721642],[0.030906731262803,0.15658587217331,0.033654868602753],[0.059682540595531,-0.086815983057022,-0.11865452677011]],[[-0.0479376912117,-0.042709074914455,0.10724840313196],[0.057321418076754,0.074954859912395,-0.04333758354187],[-0.04676515981555,0.0073708584532142,-0.013452421873808]],[[0.058432321995497,0.030156742781401,-0.056499626487494],[-0.065182074904442,0.062653891742229,-0.036286827176809],[0.0037329897750169,-0.0024220580235124,-0.063673280179501]],[[0.081924371421337,0.046339370310307,-0.045653514564037],[0.037421621382236,-0.0014995593810454,0.043130688369274],[-0.062163718044758,0.02738694101572,0.016126334667206]],[[0.0046041589230299,-0.019729444757104,-0.012895989231765],[0.094692185521126,-0.025356026366353,-0.028065456077456],[-0.098492637276649,-0.013447008095682,-0.053728602826595]],[[-0.012041870504618,0.0077291410416365,0.032699093222618],[0.044850882142782,0.05335720255971,0.028023144230247],[-0.062336355447769,0.034634336829185,-0.088475003838539]],[[-0.0043186615221202,0.050479486584663,0.0032261016312987],[-0.068425536155701,0.031274240463972,0.07231505215168],[-0.043264556676149,0.024323655292392,-0.026465648785233]],[[0.029581358656287,-0.011287840083241,0.051712717860937],[0.059350803494453,-0.065670140087605,-0.061340909451246],[-0.0050614601932466,-0.025588432326913,-0.075863659381866]],[[-0.035947538912296,-0.098560608923435,-0.024012973532081],[-0.067347645759583,-0.082033529877663,0.038522273302078],[-0.0026158355176449,0.030096152797341,0.048383321613073]],[[0.067080482840538,-0.034458290785551,-0.02164694853127],[0.10313920676708,0.044533800333738,0.070982053875923],[0.099406823515892,0.15469127893448,0.082316860556602]],[[-0.067381873726845,-0.048419550061226,0.072240643203259],[-0.028000209480524,-0.029521996155381,0.083042740821838],[0.02311572432518,0.073333643376827,-0.028578596189618]],[[-0.11765472590923,-0.091077268123627,-0.056753177195787],[0.086695060133934,0.045394767075777,0.0047119124792516],[0.043808706104755,0.053061958402395,-0.042047400027514]],[[8.4012033767067e-05,0.014661607332528,-0.017661513760686],[-0.087637238204479,-0.065334856510162,0.091846756637096],[0.06548997014761,0.05261318013072,0.029981190338731]],[[-0.03317030146718,0.00010476892930456,-0.011243973858654],[-0.063659228384495,-0.034319344907999,0.0069620623253286],[0.048702385276556,-0.020460400730371,-0.062351543456316]],[[-0.010678240098059,-0.0028890874236822,-0.037841577082872],[-0.0023641032166779,-0.01410736143589,0.039568662643433],[-0.0060649756342173,0.0091035114601254,0.023841733112931]],[[0.01685743406415,-0.028764480724931,0.022365223616362],[0.06178667396307,0.094316229224205,-0.034285590052605],[-0.0080808838829398,-0.060745492577553,-0.074808493256569]],[[0.082031264901161,0.16592010855675,0.015798171982169],[0.085007540881634,0.024059724062681,0.08861068636179],[0.04165867343545,0.11264500766993,0.13696925342083]],[[-0.0078741777688265,-0.029214318841696,0.035657841712236],[-0.079479210078716,0.018976205959916,0.067606560885906],[-0.0079917181283236,-0.027991617098451,0.049751121550798]],[[0.0099317794665694,-0.061019796878099,-0.11721409112215],[0.034161627292633,0.035146676003933,0.010729603469372],[0.10826709866524,-0.12680867314339,0.050001081079245]],[[-0.10436514019966,-0.054754354059696,0.016219243407249],[-0.030827045440674,-0.14706106483936,-0.087024956941605],[0.007171867415309,-0.0062145567499101,0.2159840464592]],[[-0.070221044123173,0.04189494997263,-0.028526002541184],[-0.026755252853036,-0.015697382390499,0.071503691375256],[0.077843062579632,0.09316972643137,0.072865374386311]],[[0.040819361805916,-0.017254570499063,-0.055194675922394],[0.066631838679314,-0.090227343142033,0.02165712416172],[-0.090938150882721,-0.020388752222061,-0.076332181692123]]],[[[0.0072269728407264,-0.092999532818794,-0.052855297923088],[0.0094310883432627,0.0039753527380526,-0.037767872214317],[-0.031553503125906,-0.053009074181318,0.036548420786858]],[[0.035020969808102,0.016663927584887,-0.017641821876168],[0.058829922229052,-0.056378923356533,0.026233749464154],[0.0010350917000324,-0.0054841018281877,-0.018782800063491]],[[-0.083901770412922,-0.031611803919077,0.005660202819854],[-0.0095309894531965,-0.0149449063465,0.020026123151183],[-0.013757806271315,0.048007190227509,0.015385295264423]],[[-0.009031044319272,0.01388899423182,0.026441875845194],[-0.040758300572634,-0.068443775177002,-0.0098530473187566],[-0.020691948011518,0.026294533163309,0.02905453927815]],[[0.0002568407508079,0.079537771642208,-0.059699609875679],[-0.018901249393821,-0.0060489433817565,0.011028913781047],[-0.031612191349268,0.009273786097765,0.0028388598002493]],[[0.053827170282602,0.02707845158875,-0.074540495872498],[-0.01294716540724,-0.0072465534321964,0.012031502090394],[-0.06924857199192,0.0011112325591967,0.012670863419771]],[[-0.057941902428865,-0.016595983877778,-0.057823002338409],[-0.064576491713524,0.041176617145538,-0.021408136934042],[-0.05033715441823,-0.011296412907541,-0.025921227410436]],[[0.02304033190012,-0.012100045569241,-0.056779064238071],[-0.0022103181108832,-0.031080225482583,-0.008957359008491],[0.03486842289567,0.0040399054996669,0.055904816836119]],[[-0.0081331245601177,0.066820181906223,-0.015194573439658],[0.095728941261768,-0.062731347978115,-0.01939357444644],[-0.033046167343855,0.0031191639136523,-0.032564297318459]],[[-0.018881686031818,-0.041184082627296,0.024680642411113],[0.014757775701582,-0.041907303035259,-0.021658319979906],[0.0069770705886185,-0.017382910475135,0.0041664130985737]],[[0.024734806269407,0.042202461510897,0.011176970787346],[-0.053799487650394,0.083648920059204,0.013591330498457],[0.01196186710149,-0.019783664494753,0.046323630958796]],[[0.00046222648234107,0.027456657961011,-0.00078082352411002],[-0.01754704490304,-0.031888920813799,-0.049467291682959],[-0.061441130936146,-0.0062698619440198,0.015646602958441]],[[-0.016224162653089,0.02883131057024,-0.03926769644022],[0.080764196813107,0.024902103468776,-0.060386840254068],[-0.12112866342068,-0.032577808946371,0.047958463430405]],[[0.0027734388131648,0.046925909817219,0.032976243644953],[0.010108567774296,0.0074528688564897,0.017209069803357],[0.051497247070074,0.0089342892169952,0.0028441837057471]],[[-0.024193881079555,0.10105822235346,-0.013446496799588],[0.020595239475369,0.0019255023216829,-0.01269590202719],[0.025498798117042,-0.021060528233647,0.047058161348104]],[[-0.013701166026294,-0.076582729816437,0.057204037904739],[-0.14910885691643,-0.024060443043709,0.03874946013093],[-0.023400563746691,0.020359950140119,0.017615288496017]],[[0.0067353774793446,0.0093606067821383,-0.010164159350097],[0.10176496952772,-0.10998667776585,-0.045065358281136],[0.024897124618292,-0.0071961237117648,0.03158250451088]],[[0.0039077941328287,0.036007784307003,-0.043943054974079],[-0.01933665573597,0.01895565353334,0.0054068597964942],[0.026701370254159,0.046971008181572,-0.039759453386068]],[[-0.073039002716541,-0.005249697715044,-0.061297327280045],[-0.051032118499279,0.031831085681915,-0.076851561665535],[-0.087163984775543,0.06599086523056,-0.015679074451327]],[[-0.030242882668972,0.051904756575823,-0.021387675777078],[-0.028634142130613,0.059101335704327,-0.016991524025798],[0.029432879760861,-0.029551828280091,0.017305267974734]],[[0.034621231257915,-0.020631892606616,-0.036070097237825],[-0.045447614043951,0.041583362966776,0.092356495559216],[-0.0104512097314,-0.023118712007999,-0.069903574883938]],[[0.14942190051079,0.048388253897429,0.0083097256720066],[-0.027219671756029,0.0078043290413916,0.039677239954472],[-0.10576429218054,0.043935529887676,-0.13051843643188]],[[0.022533165290952,0.064784564077854,-0.038149792701006],[0.064898185431957,0.056260384619236,-0.0011135749518871],[0.020433306694031,-0.0090682534500957,-0.048021480441093]],[[-0.004770562518388,0.039062730967999,0.063987240195274],[0.040624111890793,0.063479766249657,0.12398308515549],[-0.0023794888984412,0.10580231249332,-0.018695492297411]],[[0.013899585232139,0.056583970785141,0.011672601103783],[0.070919185876846,0.018351631239057,0.040332868695259],[-0.0986163392663,-0.071405716240406,0.0064725619740784]],[[0.033363733440638,0.011485767550766,-0.039583627134562],[-0.017408192157745,0.071835078299046,-0.032196413725615],[-0.039635546505451,0.043314591050148,-0.049430053681135]],[[0.019690962508321,0.017056012526155,0.07320786267519],[0.024062281474471,0.021459747105837,-0.0087112104520202],[-0.022754229605198,0.050460763275623,0.011633538641036]],[[-0.028989195823669,0.010331203229725,-0.066006526350975],[-0.011092017404735,-0.058968562632799,-0.026181228458881],[-0.00083875260315835,0.0049949735403061,0.0049405405297875]],[[-0.018451562151313,0.058045040816069,0.03851966932416],[0.0035795888397843,0.05031318590045,-0.017963333055377],[0.072304800152779,0.0059103909879923,-0.00087688839994371]],[[-0.025407308712602,-0.046990375965834,0.028931489214301],[-0.030566561967134,0.038586057722569,0.041427291929722],[0.014224618673325,0.0022928800899535,-1.9655370124383e-05]],[[-0.056690517812967,-0.074534341692924,0.0028592275921255],[-0.088341981172562,-0.017914915457368,0.027970070019364],[-0.015954244881868,0.002242693444714,-0.045351512730122]],[[0.069031149148941,0.031068628653884,-0.040462471544743],[0.035594370216131,-0.058248326182365,0.006718909367919],[-0.038211807608604,0.048836279660463,0.050114966928959]],[[0.01417800039053,0.022214705124497,-0.044307272881269],[-0.0011941686971113,0.015326330438256,0.015897400677204],[-0.012875797227025,-0.012082474306226,-0.0040787011384964]],[[0.051588505506516,0.033174652606249,0.043464008718729],[0.074365206062794,-0.040639128535986,0.053492523729801],[0.10339248925447,0.083538465201855,0.018047714605927]],[[-0.055595565587282,0.029320791363716,-0.0032029913272709],[0.037540420889854,-0.0042338012717664,0.037999711930752],[0.0096516348421574,0.041256327182055,-0.059140674769878]],[[-0.048376861959696,0.030833611264825,0.0046026278287172],[-0.058183584362268,-0.042473088949919,0.036350175738335],[0.077626116573811,-0.053199339658022,-0.023627577349544]],[[0.025243254378438,-0.010955725796521,-0.021184338256717],[0.050151340663433,0.086817488074303,-0.008141178637743],[-0.045586921274662,-0.033625487238169,-0.016157520934939]],[[-0.091693006455898,-0.039250701665878,-0.032901648432016],[0.030120311304927,-0.046511396765709,0.010223474353552],[-0.013176395557821,0.019136026501656,-0.066154137253761]],[[-0.064001969993114,-0.040940694510937,-0.042345698922873],[-0.086471900343895,0.026212261989713,0.049010343849659],[-0.050944708287716,-0.050768185406923,-0.052493393421173]],[[0.037128459662199,0.040004752576351,0.044485799968243],[0.095014326274395,0.038418155163527,0.066698901355267],[0.022885767742991,0.03007872030139,0.0066328076645732]],[[0.029049772769213,0.043701652437449,0.030166251584888],[-0.009423891082406,-0.019895376637578,0.039711434394121],[0.018295014277101,-0.0048777204938233,0.01223396603018]],[[0.044138852506876,0.004640597384423,-0.036748636513948],[0.01841251924634,-0.012178785167634,-0.010521199554205],[-0.020658979192376,0.049973208457232,0.049959909170866]],[[-0.0084615144878626,0.034128934144974,0.013777619227767],[-0.0084476079791784,-0.050409030169249,0.040804781019688],[-0.0030136948917061,-0.070895574986935,-0.041774723678827]],[[0.011080951429904,0.0063853403553367,0.097189664840698],[0.052091307938099,-0.032396450638771,-0.014125473797321],[-0.017371445894241,0.012615798972547,-0.044966086745262]],[[-0.099997870624065,-0.022885276004672,-0.071526110172272],[0.04256073012948,-0.0058472412638366,0.0042043062858284],[-0.057084478437901,0.028446642681956,0.016603304073215]],[[-0.02192197740078,0.036204736679792,-0.015837574377656],[0.011141392402351,-0.026000909507275,-0.05716198310256],[0.021912433207035,0.0011102663120255,-0.053542550653219]],[[0.0014209933578968,-0.069968715310097,-0.054490696638823],[0.0024747962597758,0.048670925199986,-0.013374373316765],[-0.015364341437817,0.028793826699257,0.0070847570896149]],[[0.05352870002389,-0.059489581733942,0.079860344529152],[0.054740510880947,0.042509496212006,-0.026247594505548],[0.050777181982994,-0.085100598633289,-0.0068040913902223]],[[0.048637520521879,-0.050032701343298,0.04347924515605],[-0.060394566506147,0.019348781555891,-0.0124925179407],[0.0035512687172741,0.037734840065241,-0.011618186719716]],[[-0.015710478648543,-0.035665947943926,0.0255809687078],[-0.031775709241629,0.020708380267024,-0.0073057492263615],[0.0047812983393669,0.055421303957701,-0.030258199200034]],[[0.053300112485886,-0.050507452338934,-0.037479676306248],[0.013822674751282,-0.045219723135233,-0.009144795127213],[-0.00078205484896898,-0.025102166458964,-0.04027609154582]],[[0.045963570475578,-0.021565491333604,0.034130807965994],[0.050801977515221,0.055034708231688,0.08772561699152],[0.0035914150066674,-0.011296153999865,0.030309684574604]],[[0.033342465758324,0.079662472009659,0.090347342193127],[0.010290758684278,-0.034980017691851,-0.011659995652735],[-0.029959661886096,-0.010078274644911,-0.0045344489626586]],[[0.0057920361869037,0.03603857383132,0.079462379217148],[0.052956894040108,0.011752413585782,-0.0085429418832064],[0.048154436051846,0.030993537977338,0.001776201184839]],[[0.019610421732068,-0.022135335952044,-0.037427578121424],[0.032323304563761,-0.063942201435566,0.013804951682687],[-0.017115874215961,-0.016595525667071,0.0056771351955831]],[[-0.023530757054687,0.046908907592297,-0.012199218384922],[0.022740365937352,0.013940607197583,-0.05735132843256],[-0.017890991643071,-0.077774830162525,0.0099177621304989]],[[-0.015769718214869,0.046293247491121,-0.0084212860092521],[0.081743948161602,-0.0030683879740536,0.00013899843906984],[-0.074514009058475,-0.02159865014255,-0.042071226984262]],[[-0.020985946059227,0.017392130568624,-0.040216360241175],[-0.04367371276021,0.045997854322195,-0.018402885645628],[-0.0038696064148098,0.038152031600475,0.030970284715295]],[[0.015377694740891,0.033272176980972,-0.039906471967697],[0.056661263108253,-0.073338814079762,0.10029118508101],[0.11083769053221,0.016084982082248,0.0049917502328753]],[[-0.034974556416273,-0.032118104398251,0.025593124330044],[-0.056637987494469,0.08534013479948,0.016783239319921],[-0.0057425033301115,0.034765627235174,-0.022948991507292]],[[0.022444928064942,0.025543874129653,-0.0085868509486318],[-0.039967488497496,-0.011773294769228,0.018071996048093],[0.011537439189851,0.090006344020367,0.0463104583323]],[[0.057759180665016,0.061420992016792,0.032773558050394],[0.024409420788288,-0.061906337738037,-0.1365010291338],[0.05446220189333,-0.029227180406451,0.042312882840633]],[[0.018567088991404,0.01354043930769,0.031086208298802],[0.014869200065732,0.00014453347830568,-0.019797965884209],[-0.020725928246975,-0.049600444734097,-0.021274458616972]],[[0.019027082249522,-0.034148614853621,-0.08817995339632],[1.7725054931361e-05,-0.036944180727005,0.038190420717001],[0.0019768383353949,-0.031000589951873,-0.013476704247296]]],[[[-0.020821213722229,0.016529208049178,0.014791373163462],[-0.0010034162551165,0.034414637833834,-0.046891838312149],[0.0097354101017118,0.040601421147585,-0.045504704117775]],[[-0.00048883247654885,0.061555203050375,0.009518682025373],[-0.031756229698658,-0.010675636120141,0.053634721785784],[-0.020497869700193,-0.067418813705444,0.0039023933932185]],[[0.0098140854388475,0.034999512135983,0.0045388448052108],[0.0070814862847328,-0.027089012786746,-0.0064679961651564],[0.0038257571868598,0.03991762176156,-0.046894554048777]],[[-0.00035748316440731,0.02139388769865,0.078502051532269],[0.0098465587943792,0.0034747284371406,0.035218674689531],[-0.032482031732798,-0.042723417282104,-0.056504316627979]],[[-0.014687227085233,0.018167132511735,-0.0077645615674555],[-0.0054327859543264,-0.026619367301464,-0.010371202602983],[0.036066439002752,0.010000369511545,-0.0068950606510043]],[[-0.032424427568913,-0.039864424616098,0.026669485494494],[-0.019358998164535,0.052619580179453,-0.037596128880978],[-0.0056485193781555,0.0032581305131316,0.04390000924468]],[[-0.054477225989103,0.049751318991184,-0.018845712766051],[0.079005062580109,0.026288935914636,-0.038811966776848],[0.0093404790386558,-0.01760913990438,-0.023797411471605]],[[0.024148190394044,0.021956535056233,0.033075876533985],[-0.021356977522373,-0.018570370972157,0.010853762738407],[-0.021812967956066,-0.019216358661652,-0.02600821107626]],[[-0.0047576474025846,0.0016302663134411,-0.009558193385601],[0.043059233576059,-0.0070052584633231,-0.021681131795049],[0.0053990036249161,-0.017271779477596,0.012488415464759]],[[-0.020776784047484,0.0015661543002352,-0.0051018120720983],[0.01671701297164,0.04907963424921,-0.0021888690534979],[-0.022427778691053,-0.012662406079471,-0.013814766891301]],[[0.011947264894843,-0.0046103745698929,-0.024692689999938],[-0.0012091223616153,0.014744786545634,-0.0095840720459819],[-0.025028990581632,0.013696919195354,0.02410726621747]],[[0.029049012809992,-0.05421232804656,0.01911998540163],[0.059140328317881,-0.038804225623608,-0.05123058706522],[0.094656430184841,-0.03532825037837,-0.0054421229287982]],[[-0.010339910164475,0.02691226452589,-0.0095366882160306],[-0.036648720502853,-0.06338519603014,0.0012047799536958],[0.044025331735611,0.022924492135644,0.0023565352894366]],[[-0.0096354875713587,-0.004542819224298,0.017777441069484],[-0.023559927940369,-0.010106837376952,0.011755877174437],[-0.034249618649483,0.002985157771036,0.046612497419119]],[[-0.025002809241414,0.022817581892014,-0.012789783068001],[0.030806750059128,-0.0016237816307694,0.055934894829988],[-0.019503498449922,-0.0029208769556135,-0.050188589841127]],[[0.020819948986173,0.040270317345858,-0.033667657524347],[-0.0082267709076405,0.00051812903257087,0.013956954702735],[0.013388155028224,-0.041646383702755,-0.0080374293029308]],[[-0.00049259758088738,0.03118166513741,-0.047675937414169],[0.020114194601774,-0.0017755880253389,0.0021533207036555],[0.024065099656582,0.00052740646060556,-0.027586290612817]],[[0.012048551812768,-0.0099975895136595,0.011153674684465],[0.031660284847021,-0.016433253884315,0.0044048493728042],[0.019552458077669,-0.068491064012051,0.021259184926748]],[[0.0064209480769932,-0.036848850548267,0.0088257556781173],[0.043373487889767,0.028796283528209,0.053292438387871],[-0.025395933538675,-0.041103348135948,-0.040032733231783]],[[-0.048612277954817,-0.14476116001606,-0.10971584171057],[-0.05348364636302,-0.16514421999454,-0.15178729593754],[-0.053300257772207,-0.18778248131275,-0.1266528069973]],[[-0.0055723562836647,-0.025656279176474,0.061074197292328],[-0.035192042589188,-0.10709521919489,0.094315238296986],[0.0018290571169928,-0.042836289852858,0.072993852198124]],[[-0.01930714212358,-0.0093638282269239,0.024240517988801],[-0.016012378036976,0.0016642606351525,0.0022976866457611],[0.044385209679604,-0.034349031746387,0.0089959101751447]],[[-0.013472972437739,-0.011155646294355,0.019069077447057],[0.02271219715476,-0.025841364637017,-0.020188776776195],[-0.013807399198413,0.010413493029773,0.034654449671507]],[[0.015406529419124,0.010657221078873,0.050789222121239],[-0.054426286369562,-0.079442739486694,0.024211628362536],[1.3016186130699e-05,-0.027851702645421,0.0087641021236777]],[[0.017999401316047,-0.0078397234901786,0.046840190887451],[0.046300522983074,-0.04490464925766,-0.031770940870047],[-0.041808057576418,-0.012442539446056,0.013780812732875]],[[-0.025043994188309,-0.029205089434981,0.0092098508030176],[-0.037963043898344,-0.074199371039867,-0.020360143855214],[-0.058642257004976,-0.086064375936985,-0.02294890396297]],[[0.017366010695696,-0.049275398254395,0.022059192880988],[0.050600066781044,-0.010741109959781,-0.043126251548529],[0.06661556661129,-0.028478067368269,-0.022853586822748]],[[-0.02940110117197,0.010706920176744,-0.007768901064992],[0.04295351728797,-0.0021484966855496,-0.0033911617938429],[-0.0063469791784883,0.025721490383148,-0.022797640413046]],[[-0.0082377642393112,0.034185949712992,-0.053202040493488],[0.025373691692948,0.024406593292952,-0.018203401938081],[-0.01143469568342,0.025859050452709,-0.033358786255121]],[[0.01308015268296,0.082692690193653,0.041662883013487],[0.05331863835454,0.021545035764575,-0.063901670277119],[-0.027004282921553,-0.08596858382225,-0.027164146304131]],[[0.017012991011143,6.319212843664e-05,0.05937997251749],[-0.024414388462901,0.028249606490135,-0.0065387100912631],[-0.0096756611019373,-0.029465617612004,-0.039809603244066]],[[0.00094216747675091,-0.0027278834022582,-0.0066810669377446],[-0.03930502384901,0.02773486636579,0.000254428392509],[-0.0052416394464672,0.0094308909028769,0.010303272865713]],[[-0.020098539069295,-0.011977913789451,0.010277159512043],[0.020424449816346,-0.0048698405735195,-0.013896214775741],[0.01071584969759,-0.005082213319838,0.010307801887393]],[[-0.0037839005235583,-0.0012737290235236,0.0071024969220161],[-0.073865674436092,-0.1057226806879,0.026375753805041],[0.021896865218878,0.07509795576334,0.067128524184227]],[[-0.059606529772282,-0.10453791171312,0.0048941052518785],[0.071586027741432,-0.028704674914479,-0.037723649293184],[0.062556333839893,0.05566219240427,0.043589822947979]],[[-0.0044763903133571,0.022324359044433,0.046316578984261],[-0.053717449307442,0.013880862854421,-0.063594833016396],[0.024645037949085,0.0098334923386574,0.0074706762097776]],[[-0.0022292996291071,0.0040923035703599,0.010057497769594],[0.015274746343493,-0.013688614591956,-0.023206975311041],[0.0079005099833012,0.008093724027276,0.0034120082855225]],[[-0.018341384828091,0.0093804132193327,0.02433941885829],[-0.01606884226203,-0.02728315256536,0.022930873557925],[0.056989531964064,-0.03834730759263,-0.0063444175757468]],[[0.027289465069771,-0.0047816224396229,-0.0086386203765869],[-0.010294549167156,0.020928768441081,0.00086279725655913],[-0.0073838457465172,-0.010286637581885,-0.001018006936647]],[[-0.032000388950109,0.031699948012829,0.066036589443684],[-0.076491989195347,0.036685150116682,-0.012832221575081],[-0.049888335168362,0.028087444603443,-0.0046821990981698]],[[-0.026540661230683,-0.036259200423956,-0.056808434426785],[0.018827261403203,0.02493686042726,0.069146290421486],[0.021316137164831,0.010913353413343,-0.019168382510543]],[[-0.025052295997739,0.00074407138163224,0.014681671746075],[-0.016726130619645,-0.0002146901388187,-0.024523736909032],[0.038627188652754,-0.013936839997768,0.031631376594305]],[[-0.0040012514218688,0.0080270022153854,0.0055378819815814],[-0.0067015313543379,-0.025710005313158,-0.0073971059173346],[0.0050768009386957,0.020390691235662,0.023116275668144]],[[0.020679976791143,-0.0018753639888018,-0.019461175426841],[-0.034892756491899,0.021323096007109,0.0094389850273728],[0.011091265827417,-0.0070924442261457,0.0085260262712836]],[[0.017995908856392,0.0064748558215797,0.0097174569964409],[0.016352761536837,-0.039342220872641,0.0020558598916978],[-0.0033948596101254,-0.025146324187517,0.024396618828177]],[[-0.020916670560837,-0.018491739407182,-0.012561803683639],[0.018571658059955,0.05310208722949,0.017327820882201],[-0.015706142410636,0.014429721981287,-0.021390035748482]],[[-0.03304835036397,0.029941158369184,-0.021179530769587],[0.0070991134271026,-0.0097306352108717,0.024937557056546],[-0.0075002261437476,0.014535627327859,0.0031077798921615]],[[-0.0036016786471009,0.035545695573092,-0.022478975355625],[-0.0048808255232871,-0.031774647533894,0.074649661779404],[-0.048985950648785,-0.0021369811147451,-0.010157350450754]],[[0.0057322862558067,0.028051299974322,-0.010500705800951],[0.022527791559696,-0.033270616084337,-0.012274126522243],[0.010899543762207,-0.00251699751243,0.0096111344173551]],[[-0.0049317153170705,-0.00044576634536497,0.028780756518245],[-0.027466271072626,0.0031747221946716,-0.021099403500557],[0.031885858625174,0.021980062127113,-0.035457111895084]],[[-0.009959033690393,0.013026939705014,-0.015429569408298],[0.018692115321755,-0.01459385920316,-0.0069344947114587],[-0.00097886961884797,-0.0040019573643804,0.018129959702492]],[[-0.042480401694775,0.032758686691523,-0.035704016685486],[0.00078266178024933,0.03192625567317,0.089356742799282],[-0.060564186424017,-0.0051018232479692,-0.022853599861264]],[[0.025171838700771,-0.025026308372617,-0.0013377517461777],[0.027536628767848,0.037633769214153,-0.0097016543149948],[-0.040552772581577,-0.034068685024977,0.019055258482695]],[[-0.014300269074738,0.020835645496845,-0.013235877268016],[0.023070683702826,0.0012649015989155,-0.010554978623986],[-0.043044947087765,0.02745820209384,0.010995320044458]],[[0.0096658933907747,-0.0044719795696437,0.030385999009013],[-0.017109408974648,0.0011338746408001,-0.0072155026718974],[0.00092165055684745,0.0036425737198442,-0.015170582570136]],[[-0.014410769566894,0.021427351981401,0.026775345206261],[0.029212966561317,-0.0710583999753,-0.0035936946514994],[0.032954163849354,-0.029341774061322,0.0025719439145178]],[[-0.017172079533339,0.035760141909122,-0.017654785886407],[-0.0032952164765447,-0.0055298777297139,0.0050701154395938],[0.026919221505523,-0.0029076612554491,-0.012071395292878]],[[0.0044230343773961,-0.026645278558135,-0.026893256232142],[-0.033266987651587,-0.045805163681507,-0.0082531785592437],[0.030113345012069,0.014060903340578,0.10774806141853]],[[-0.053692419081926,0.0057780100032687,-0.026700204238296],[-0.027192920446396,-0.04478744789958,0.052794512361288],[0.07877017557621,0.013205730356276,-0.012653492391109]],[[0.062473516911268,0.072391092777252,0.072704836726189],[0.0020371361169964,0.063364081084728,0.018776534125209],[0.070154681801796,0.13426306843758,0.064280055463314]],[[-0.011588708497584,-0.036661684513092,0.017297212034464],[-0.037631098181009,0.0050604804418981,0.029557617381215],[0.043641705065966,0.027758231386542,-0.028115099295974]],[[-0.015483523719013,0.026547094807029,-0.044052977114916],[0.02859097905457,0.0084331007674336,0.039919592440128],[-0.016365760937333,0.02234916575253,-0.062760032713413]],[[0.0077386423945427,-0.019507750868797,0.00079561676830053],[-0.0064970860257745,0.026391478255391,-0.0071700820699334],[-0.0028273353818804,0.0075475955381989,-0.011528107337654]],[[-0.0033553459215909,-0.0062959720380604,0.011368911713362],[-0.021565137431026,0.022208398208022,-0.0090628322213888],[0.0027033179067075,-0.0079486072063446,0.00046414393000305]]],[[[-0.049062121659517,-0.066151313483715,-0.13160412013531],[0.016474738717079,-0.058357197791338,0.068784326314926],[-0.058924913406372,-0.044228415936232,-0.12297823280096]],[[0.069907888770103,0.038397066295147,0.092890493571758],[0.056597117334604,0.08727141469717,-0.021684303879738],[0.048873700201511,0.14225091040134,0.15778580307961]],[[-0.0046316212974489,-0.018885960802436,-0.025510489940643],[0.011898429132998,0.00041670573409647,0.028029482811689],[0.010252668522298,-0.00771564245224,0.01496550347656]],[[-0.07051969319582,-0.013069062493742,0.016627131029963],[-0.062851272523403,0.035014655441046,-0.015650542452931],[0.041289336979389,0.0082765836268663,0.051667150110006]],[[0.026015713810921,0.028594939038157,0.026968393474817],[0.066321685910225,-0.042712312191725,-0.055968098342419],[-0.012814230285585,0.064993597567081,0.006767054554075]],[[-0.003441721200943,-0.0049218041822314,0.029450383037329],[0.023099936544895,0.056373633444309,-0.030898315832019],[0.041288301348686,0.012935072183609,-0.11367169767618]],[[-0.038348838686943,0.010460750199854,-0.052460204809904],[-0.011521931737661,0.0063253343105316,0.031400948762894],[-0.029632359743118,-0.029060810804367,0.021284023299813]],[[-0.020989760756493,0.019927704706788,-0.025528224185109],[0.023713318631053,0.0384311825037,0.048015311360359],[-0.0071997903287411,0.055196899920702,-0.023617895320058]],[[-0.032619792968035,-0.035076647996902,-0.041212908923626],[-0.0298624150455,-0.031637161970139,0.002451861044392],[-0.034918997436762,-0.026400428265333,-0.13081775605679]],[[-0.10833438485861,-0.093705475330353,-0.04121508076787],[0.022459525614977,-0.046764422208071,-0.012326411902905],[0.024966083467007,0.018255515024066,0.0089533934369683]],[[0.087144419550896,0.058671906590462,0.029302470386028],[-0.033026624470949,0.0034683272242546,-0.017149798572063],[-0.0017295804573223,-0.017626386135817,-0.11023341119289]],[[-0.049074504524469,-0.097259372472763,-0.041429508477449],[0.10010788589716,0.041218020021915,-0.016775360330939],[0.012758812867105,0.10372580587864,0.095280006527901]],[[-0.014003173448145,-0.011287339031696,-0.003041677409783],[0.016100518405437,0.033882331103086,0.056953337043524],[0.035547904670238,0.00035264989128336,-0.0061789746396244]],[[-0.020559832453728,-0.015212820842862,-0.003466370748356],[0.026063617318869,-0.0022712298668921,-0.01242258399725],[-0.030306862667203,0.022887710481882,0.0050741545855999]],[[-0.071022026240826,-0.041326306760311,0.04094360768795],[-0.11948651075363,-0.026922175660729,-0.00020568529726006],[-0.032487209886312,0.066239841282368,-0.026346849277616]],[[-0.0019109275890514,-0.022615548223257,0.046322476118803],[0.042711712419987,0.085880182683468,0.010845595039427],[-0.0073010358028114,0.056911371648312,-0.11577352881432]],[[0.087269805371761,0.12482961267233,0.11058977246284],[0.066516377031803,0.070930473506451,-0.016375651583076],[-0.0120490193367,0.047773018479347,0.011577162891626]],[[-0.021716769784689,-0.047280229628086,-0.045227698981762],[-0.094470284879208,0.0041898456402123,0.039146162569523],[-0.099141664803028,-0.017908457666636,-0.16868250072002]],[[-0.090918131172657,-0.033235020935535,-0.0010505685349926],[0.065074674785137,0.010241838172078,0.055804889649153],[-0.053977247327566,0.0053545394912362,-0.093560770153999]],[[-0.010957482270896,-0.0097548263147473,-0.0044941445812583],[0.031304303556681,0.015378186479211,-0.056040655821562],[0.033018961548805,0.034490674734116,-0.067637234926224]],[[-0.044036623090506,0.06414183229208,0.011034901253879],[0.055684629827738,0.051922410726547,-0.062837533652782],[0.0014906119322404,0.01345594599843,-0.1360639333725]],[[-0.058746300637722,0.088475376367569,0.074028089642525],[0.042504798620939,0.085017278790474,0.029145896434784],[0.016339134424925,0.11506649851799,0.03984571620822]],[[0.072582513093948,0.066827587783337,0.0042689992114902],[-0.0062533328309655,-0.040192179381847,-0.046208381652832],[-0.041199896484613,-0.025826659053564,-0.010411622002721]],[[0.058046817779541,0.026270121335983,0.10877174884081],[0.090275712311268,0.066489651799202,0.11930123716593],[0.14092342555523,0.029966965317726,0.074990406632423]],[[0.071173489093781,0.13923096656799,0.073688559234142],[0.02588445879519,-0.0079019404947758,0.052290577441454],[0.094734661281109,-0.062416400760412,-0.15756110846996]],[[-0.019905986264348,0.050046060234308,0.056817281991243],[0.010559578426182,-0.028479525819421,0.013918300159276],[0.03917146101594,-0.0088908756151795,-0.048603985458612]],[[0.055811416357756,0.0039885500445962,-0.010120538063347],[0.059322874993086,0.13169854879379,0.066192030906677],[0.055757876485586,0.041634559631348,0.0068119023926556]],[[-0.036846850067377,-0.14511409401894,-0.046799510717392],[-0.092034921050072,-0.036436460912228,-0.0706697255373],[0.0011683639604598,-0.057216800749302,-0.064581535756588]],[[-0.027593543753028,-0.078290708363056,0.030844820663333],[-0.080760709941387,-0.024436043575406,-0.024920528754592],[0.082422778010368,-0.01541437022388,-0.016209540888667]],[[-0.031807940453291,-0.11659853905439,-0.080522648990154],[-0.02321707829833,-0.053828615695238,-0.031022489070892],[-0.064252659678459,-0.12826716899872,-0.10976969450712]],[[-0.027083432301879,-0.068680010735989,0.050540667027235],[-0.023088237270713,-0.033811885863543,0.0028231162577868],[0.038904849439859,0.009115032851696,0.042268242686987]],[[0.053059570491314,-0.11310587823391,-0.01131965406239],[-0.014547259546816,-0.022971363738179,-0.01073307171464],[0.03113204613328,0.15037833154202,0.023204552009702]],[[0.032313164323568,-0.0034293816424906,0.016723481938243],[0.013620715588331,0.03328301012516,-0.011800408363342],[0.078105047345161,0.059780232608318,0.051036663353443]],[[0.044001050293446,-0.11157491058111,0.028815284371376],[-0.14661283791065,0.10758019983768,0.19513134658337],[-0.001997968647629,0.07873073220253,0.14948762953281]],[[-0.0020645463373512,0.075148552656174,0.039295326918364],[-0.014922135509551,-0.012090211734176,-0.025411985814571],[0.013074402697384,-0.088810004293919,-0.10855810344219]],[[0.007099318318069,0.00055002822773531,0.012072840705514],[-0.072736352682114,-0.020982215180993,-0.037705894559622],[0.052397508174181,0.023577289655805,0.06220530346036]],[[0.040567986667156,-0.055427592247725,-0.018559014424682],[0.036148067563772,0.040520302951336,-0.0013312386581674],[0.10500057786703,-0.0039620236493647,-0.072921261191368]],[[-0.018097251653671,0.073818415403366,0.076478086411953],[-0.026128185912967,0.059229332953691,0.0078005967661738],[-0.00098431273363531,0.036586340516806,0.07904614508152]],[[0.068569868803024,-0.054204393178225,0.089695543050766],[0.06044289842248,-0.047227159142494,-0.019914772361517],[0.096953466534615,-0.020631169900298,-0.0035536603536457]],[[0.055924728512764,0.12015261501074,0.051797889173031],[0.082319959998131,0.096219517290592,-0.032590761780739],[0.04869132116437,0.045848727226257,0.054875500500202]],[[-0.13956800103188,0.018654510378838,0.14523485302925],[0.029597265645862,0.10183092206717,0.11794913560152],[0.042170345783234,0.067175015807152,0.080283641815186]],[[-0.029647124931216,0.04358246922493,0.059578347951174],[0.01363786123693,-0.0021350183524191,0.070752426981926],[0.017528852447867,0.007301916833967,-0.0088159367442131]],[[-0.013933464884758,0.012568553909659,-0.0063192714005709],[-0.034368116408587,-0.024139450863004,-0.063961148262024],[-0.09540781378746,-0.14113472402096,-0.089851476252079]],[[0.047383904457092,0.020648542791605,0.057322960346937],[-0.050016567111015,0.024774493649602,0.092211596667767],[0.031004551798105,0.022735951468349,0.0077500082552433]],[[-0.061729669570923,-0.073161922395229,-0.01188677828759],[-0.025793736800551,0.007137639913708,-0.019033996388316],[0.07978605479002,-0.0091190859675407,-0.019406229257584]],[[-0.040563143789768,0.053231790661812,0.076759688556194],[-0.094675466418266,-0.010613821446896,-0.0032431178260595],[0.018777115270495,0.079417213797569,-0.033700048923492]],[[-0.0024727557320148,0.054837293922901,0.024716146290302],[0.0086083440110087,-0.03533923625946,-0.063662394881248],[0.031875427812338,-0.13878972828388,-0.017156682908535]],[[0.010156859643757,-0.081110246479511,0.0079486006870866],[-0.089465871453285,0.050295561552048,-0.011106822639704],[0.054893787950277,-0.028858121484518,-0.056368861347437]],[[0.0062676426023245,-0.025064783170819,-0.053912803530693],[0.038669511675835,-0.045807916671038,-0.021972650662065],[0.057091366499662,0.098917305469513,-0.011790125630796]],[[-0.098607674241066,-0.042894221842289,0.018256656825542],[-0.012513415887952,0.020646210759878,0.0029678312130272],[-0.010041682049632,-0.092676386237144,0.099029809236526]],[[-0.011249530129135,0.011927325278521,0.01205691229552],[0.023660115897655,-0.0014030018355697,0.010253115557134],[-0.007540232501924,-0.016312345862389,-0.010239189490676]],[[-0.02573717199266,-0.023227244615555,-0.011024542152882],[0.09906517714262,0.0083126556128263,-0.066549196839333],[0.053931798785925,0.061712171882391,0.0023415258619934]],[[0.021961191669106,0.11032085865736,0.041961368173361],[-0.1013835594058,-0.0042547564953566,-0.0018857814138755],[-0.0012486213818192,0.08138083666563,0.044187899678946]],[[0.025757910683751,-0.01756402477622,0.0010235020890832],[-0.046191766858101,0.0015903459861875,-0.067249141633511],[-0.022695483639836,-0.07272232323885,-0.0040014889091253]],[[-0.15760080516338,-0.084470175206661,0.030760116875172],[-0.073899500072002,-0.054532460868359,-0.0049345465376973],[-0.054364308714867,-0.098710030317307,-0.017763551324606]],[[0.037198517471552,-0.040907174348831,-0.0094298738986254],[-0.030963450670242,0.033548526465893,0.02459392696619],[-0.021519772708416,0.025984067469835,-0.028551410883665]],[[-0.071563310921192,-0.036798249930143,0.0054519455879927],[0.022138994187117,-0.027182068675756,-0.0054038809612393],[0.03732817620039,-0.0036849828902632,0.031848702579737]],[[-0.03187233954668,0.02429610490799,-0.033395826816559],[-0.082464501261711,-0.14085844159126,-0.066188663244247],[-0.022759184241295,-0.010361265391111,-0.21818791329861]],[[0.044491913169622,0.047351013869047,-0.0067767258733511],[-0.01920616440475,0.047725547105074,0.060966499149799],[0.054057352244854,0.013951676897705,0.19404023885727]],[[0.025171605870128,0.018081873655319,0.00018785204156302],[-0.058826394379139,-8.5070423665456e-06,0.014689621515572],[-0.034513056278229,-0.048980735242367,0.055673759430647]],[[-0.01806234382093,0.028199484571815,0.029594099149108],[0.03806471824646,0.043217908591032,-0.11430406570435],[-0.081005550920963,-0.081206895411015,-0.14604307711124]],[[0.022418186068535,-0.017171019688249,0.034633044153452],[0.10875129699707,0.002560876775533,0.067689746618271],[0.035840794444084,-0.045948531478643,0.11049035191536]],[[-0.026745686307549,-0.058163475245237,0.0031139119528234],[-0.00023507261357736,0.042282287031412,0.052133828401566],[-0.055105227977037,-0.13876360654831,-0.025083132088184]],[[-0.12933743000031,-0.05673948302865,0.05235780403018],[0.029552608728409,0.0083734057843685,-0.05622748658061],[0.064711548388004,0.011397298425436,-0.0062749315984547]]],[[[-0.074451707303524,-0.0091789569705725,-0.004273665137589],[-0.061513531953096,0.025555822998285,-0.039686728268862],[0.027065813541412,-0.063912853598595,0.0060170171782374]],[[-0.046313717961311,0.038276936858892,-0.0042292671278119],[-0.065994530916214,0.062186684459448,-0.039040505886078],[0.066917806863785,-0.015320816077292,0.028098110109568]],[[0.059723164886236,-0.072564326226711,0.04137497395277],[-0.010935647413135,-0.11938111484051,-0.017067110165954],[-0.028828421607614,0.018781345337629,-0.020532594993711]],[[-0.069364324212074,-0.060582235455513,-0.035273060202599],[-0.081232160329819,0.010104411281645,-0.00045634969137609],[-0.043900534510612,-0.066949181258678,0.019713439047337]],[[0.031916756182909,0.032680485397577,-0.023352319374681],[0.094248682260513,-0.091235555708408,0.019405364990234],[-0.037543941289186,-0.10586695373058,-0.074558593332767]],[[-0.06468141078949,-0.022920647636056,-0.050540365278721],[-0.05984764918685,-0.064579881727695,-0.024056646972895],[-0.067820638418198,0.22861585021019,0.050128679722548]],[[-0.078799732029438,0.0042639002203941,-0.0066579002887011],[-0.039527405053377,-0.027172716334462,-0.0014923134585842],[0.059763055294752,0.13761547207832,0.0031771080102772]],[[-0.09744218736887,-0.023579675704241,0.01420041359961],[-0.010334070771933,0.0057487147860229,0.022271487861872],[-0.070678368210793,-0.04612984508276,-0.0029956118669361]],[[-0.043901287019253,0.020897559821606,-0.0045416527427733],[0.0218246858567,-0.039488941431046,0.024100141599774],[0.057504534721375,0.044711247086525,0.093196257948875]],[[-0.0089926850050688,0.082110829651356,-0.054643798619509],[0.0083407638594508,-0.020710501819849,0.034693039953709],[-0.097811922430992,-0.0044281170703471,-0.0068258177489042]],[[-0.049920596182346,-0.017849875614047,-0.065997153520584],[-0.029015468433499,-0.020898902788758,0.018545567989349],[0.070757634937763,0.013779664412141,0.012220467440784]],[[-0.0056670727208257,-0.0085962424054742,0.022958027198911],[-0.042350735515356,0.035520479083061,0.0091475341469049],[0.012373435311019,0.061354655772448,0.024822266772389]],[[-0.00938914809376,0.033865448087454,-0.010505624115467],[-0.024189034476876,-0.028711494058371,0.008713549003005],[-0.011428367346525,-0.012317528016865,0.09439817070961]],[[0.016612101346254,0.0040854751132429,-0.017578447237611],[-0.025765091180801,0.031526915729046,0.037891026586294],[-0.017630163580179,0.039019182324409,-0.011594283394516]],[[-0.092586696147919,-0.034710481762886,-0.048526752740145],[0.020287772640586,-0.041207823902369,-0.039518021047115],[-0.011379099451005,-0.03719974309206,0.0040838466957211]],[[-0.10779625177383,-0.0071841725148261,0.067701287567616],[-0.030437657609582,0.022403605282307,0.11656478792429],[0.026306631043553,-0.10219155997038,0.032731112092733]],[[-0.0071511520072818,0.01977083273232,0.0011532406788319],[0.058000672608614,0.012735474854708,0.10468518733978],[0.039415620267391,-0.0076546533964574,0.00027456515817903]],[[-0.035058975219727,-0.12760385870934,-0.010018820874393],[0.039107233285904,-0.054663922637701,-0.038138158619404],[0.030666260048747,-0.053122725337744,0.14663591980934]],[[0.13335786759853,-0.040416341274977,0.028942991048098],[-0.0045183612965047,0.0090938862413168,-0.017641952261329],[-0.027671836316586,-0.080492109060287,-0.028322635218501]],[[0.01367914583534,0.009745535440743,-0.026505898684263],[0.0076779113151133,0.027226885780692,-0.0046498272567987],[-0.018959226086736,0.021607728675008,0.021490449085832]],[[-0.017981702461839,-0.047349479049444,0.00010999534424627],[0.053643748164177,-0.019444052129984,-0.0032469225116074],[-0.051175266504288,-0.036690503358841,0.096873804926872]],[[0.075053676962852,-0.050234485417604,0.063173964619637],[-0.10079813748598,-0.059682235121727,0.040313601493835],[-0.010725905187428,0.0010891770943999,0.086376652121544]],[[-0.066080011427402,-0.0016266595339403,0.041158352047205],[0.061947677284479,0.092636801302433,0.12611225247383],[0.038569778203964,0.12808611989021,0.099875465035439]],[[0.090971298515797,0.10167492181063,0.15937949717045],[0.079688981175423,0.11697256565094,0.091797858476639],[0.014245913363993,0.091780789196491,0.017436096444726]],[[0.021293442696333,-0.017756441608071,0.12868078052998],[0.0048448704183102,0.10694076120853,0.030580926686525],[0.033623076975346,0.085084207355976,-0.0072974301874638]],[[0.048420328646898,0.098886936903,0.038726191967726],[-0.0036865680012852,-0.0091622425243258,-0.083054825663567],[-0.0076647610403597,-0.016827465966344,-0.032729580998421]],[[-0.047231368720531,0.041840400546789,0.012294548563659],[-0.042535241693258,0.020661594346166,0.01098227314651],[0.092685252428055,0.15403372049332,0.00069782783975825]],[[-0.079730324447155,0.011901791207492,0.046994764357805],[-0.05313928425312,0.025211781263351,-0.023122042417526],[0.02176508307457,-0.034199196845293,0.0041679949499667]],[[0.027148317545652,0.025176379829645,0.032904572784901],[0.092950269579887,0.0060578887350857,-0.0039194147102535],[-0.098204478621483,-0.0008331757853739,0.017398372292519]],[[-0.032145373523235,0.012504289858043,0.057935371994972],[-0.0027339356020093,0.053971529006958,-0.047207642346621],[-0.015070634894073,0.020466199144721,0.1016930565238]],[[-0.026542283594608,0.0093817571178079,0.059381667524576],[0.020986853167415,-0.11327988654375,-0.013696986250579],[0.0103212390095,0.047872748225927,-0.01928560808301]],[[0.055527221411467,0.020354740321636,-0.0067899618297815],[-0.0085754143074155,0.00041668859194033,-0.00070739764487371],[0.0046459138393402,0.080697230994701,0.006910284049809]],[[-0.099950037896633,-0.12243689596653,-0.0099692773073912],[-0.017310857772827,-0.017580414190888,0.050569262355566],[0.0055123968049884,-0.0048334607854486,0.054213911294937]],[[-0.084062956273556,0.04112983122468,-0.11679995059967],[0.05705126747489,-0.10129624605179,0.02976056560874],[0.062793791294098,0.0055597550235689,0.075312122702599]],[[-0.086713872849941,0.024996673688293,-0.03270285949111],[0.044768773019314,-0.0067086042836308,0.038465898483992],[0.077765725553036,0.018685726448894,0.035140391439199]],[[0.04829840734601,-0.068810060620308,-0.017412453889847],[0.034778472036123,0.007804162800312,-0.015519473701715],[-0.037866316735744,0.10667736828327,0.074027478694916]],[[0.026441650465131,0.089815244078636,-0.05334934964776],[0.020380806177855,0.0087266750633717,0.024655926972628],[0.0075650094076991,-0.037927996367216,-0.039355643093586]],[[-0.052280619740486,0.039203561842442,-0.01687746681273],[0.072459653019905,-0.026866670697927,-0.0043561682105064],[0.025291172787547,0.028616214171052,-0.057993266731501]],[[0.087137281894684,-0.024012681096792,-0.007018820848316],[0.040591791272163,0.045564331114292,0.0058105909265578],[0.029977915808558,0.022969363257289,0.022871401160955]],[[0.072877682745457,-0.019143106415868,-0.066808849573135],[0.070304080843925,0.090289205312729,0.11214324086905],[-0.01255545578897,0.095429159700871,0.051841698586941]],[[0.033742260187864,0.041437212377787,0.0088677098974586],[0.011449362151325,0.051956959068775,-0.002210007281974],[0.05447581410408,0.02683044411242,0.072858989238739]],[[0.01546842418611,0.079155549407005,0.04193664714694],[0.021729718893766,0.030886489897966,0.010215491056442],[-0.039963345974684,0.077803298830986,-0.027131834998727]],[[-0.019728871062398,-0.027331067249179,0.018750598654151],[0.042874481528997,0.018816690891981,0.039399925619364],[-0.014810459688306,-0.068112231791019,-0.14159150421619]],[[-0.063476249575615,0.01503081060946,-0.053246542811394],[-0.076186589896679,-0.016829600557685,0.010178952477872],[0.081668369472027,0.0098844477906823,0.035967033356428]],[[-0.16538526117802,-0.016127867624164,-0.062869407236576],[-0.096032902598381,-0.097437500953674,0.064648613333702],[-0.049688626080751,-0.035738386213779,0.084988497197628]],[[0.056455310434103,-0.029370076954365,0.028829807415605],[0.042138904333115,-0.07772670686245,-0.010616381652653],[-0.087500140070915,0.0027559308800846,-0.051883790642023]],[[-0.011935244314373,-0.057251919060946,0.029149107635021],[-0.096103318035603,0.0095352530479431,-0.12139201164246],[-0.016406813636422,0.0021553558763117,-0.0096194809302688]],[[0.0032859002240002,-0.045728616416454,-0.051867749541998],[0.058167558163404,0.040846720337868,0.044507205486298],[0.0003614335146267,0.057567607611418,0.11881944537163]],[[-0.037456773221493,-0.013419580645859,-0.05483566224575],[0.026970127597451,-0.034682117402554,-0.021956263110042],[0.042194645851851,-0.00099549419246614,0.04759694263339]],[[-0.15391999483109,-0.1216122508049,-0.10499931871891],[0.051530051976442,-0.0084568681195378,-0.059658359736204],[-0.008402188308537,0.12481214106083,0.026587836444378]],[[-0.067319132387638,-0.049178697168827,-0.07294624298811],[-0.041883520781994,-0.021931871771812,0.044378541409969],[0.055126491934061,0.076579615473747,0.043564647436142]],[[0.066987864673138,0.027395622804761,-0.036202300339937],[-0.012620610184968,-0.031539175659418,0.045120973140001],[0.030908452346921,-0.057967867702246,-0.049044709652662]],[[0.062309611588717,0.061643809080124,-0.059515591710806],[-0.16106805205345,0.04522842913866,-0.15973494946957],[0.061624083667994,-0.042686741799116,-0.10781479626894]],[[-0.056285753846169,-0.011688711121678,0.085799813270569],[-0.085130110383034,-0.052676074206829,0.085436291992664],[-0.068209074437618,-0.12198340892792,-0.062585651874542]],[[-0.02025680616498,-0.018679676577449,-0.041003372520208],[0.099300876259804,-0.14305399358273,0.020879613235593],[0.056592959910631,-0.00079184799687937,-0.0067619713954628]],[[0.024373723194003,0.026558456942439,0.037085186690092],[-0.00070398248499259,-0.070202015340328,-0.045212671160698],[0.00084117881488055,0.053884118795395,-0.0082715321332216]],[[-0.011885126121342,-0.055780228227377,-0.078193053603172],[-0.0062918891198933,-0.054918181151152,-0.064158208668232],[-0.014784879051149,-0.075150974094868,0.056554351001978]],[[-0.026073694229126,-0.015835430473089,0.0095804650336504],[0.020741982385516,-0.010838431306183,-0.016753850504756],[-0.036306608468294,0.11760910600424,-0.0047510019503534]],[[0.12587250769138,0.025726856663823,-0.024672517552972],[0.04690869525075,-0.0016989132855088,-0.0045015593059361],[0.088989861309528,-0.049577351659536,0.010160261765122]],[[0.004275546874851,-0.013109341263771,-0.021995646879077],[-0.00029387642280199,0.0067260190844536,-0.010246972553432],[0.013090439140797,0.0092942416667938,0.033398490399122]],[[-0.026466198265553,-0.018851796165109,0.0043552070856094],[-0.025333154946566,0.040277954190969,0.13071389496326],[-0.021765686571598,0.021821172907948,0.021647850051522]],[[0.1190822571516,0.0016480276826769,-0.019621308892965],[-0.059580475091934,-0.048460528254509,-0.076016291975975],[0.021797049790621,-0.057545848190784,-0.32652533054352]],[[-0.16463926434517,-0.052211552858353,0.028356678783894],[0.093910425901413,0.010620722547174,-0.016588756814599],[-0.077183596789837,-0.033728171139956,0.008310898207128]],[[-0.0040902025066316,-0.0014470458263531,0.0034011453390121],[-0.0013769206125289,0.034497871994972,0.005272391717881],[-0.059819143265486,0.026021108031273,-0.0032744354102761]]],[[[0.0038732085376978,-0.05245228484273,0.0084141297265887],[-0.04554732516408,0.0752834379673,0.074791200459003],[-0.0010000120382756,-0.038378838449717,-0.005495029501617]],[[0.0094546973705292,-0.029252229258418,-0.052983749657869],[-0.0048410538583994,-0.094494253396988,0.021797209978104],[-0.036484595388174,-0.038345854729414,0.002922348678112]],[[-0.055530667304993,0.043074499815702,0.026747152209282],[0.030837509781122,0.0033930777572095,0.059534970670938],[-0.12402042746544,-0.14999671280384,-0.012127159163356]],[[0.024863746017218,-0.031878359615803,0.026936512440443],[0.016646016389132,0.073862962424755,-0.0085298186168075],[-0.038165155798197,-0.0045282770879567,0.055329490453005]],[[-0.026960654184222,0.0025498864706606,-0.01710101403296],[0.0058205062523484,-0.044754538685083,-0.013044646009803],[0.049868788570166,0.047339085489511,0.03674964979291]],[[-0.045896165072918,0.00028090222622268,0.03588468208909],[0.0023194062523544,0.086718060076237,0.0092212809249759],[-0.076228715479374,-0.10378965735435,0.086296185851097]],[[-0.0081060165539384,0.028564017266035,-0.051679749041796],[-0.072658576071262,-0.066288262605667,-0.014949354343116],[-0.071280546486378,0.058724649250507,0.0061063393950462]],[[0.038310121744871,0.0037889517843723,0.019676879048347],[-0.045395407825708,0.058744225651026,-0.071789994835854],[0.0081904111430049,-0.019985662773252,0.044562138617039]],[[0.0011102285934612,-0.010356904938817,-0.0044727348722517],[-0.02044122107327,-0.029628595337272,-0.031999424099922],[0.067394636571407,0.020690599456429,-0.024617742747068]],[[0.0039313570596278,0.052723072469234,-0.083791255950928],[-0.0052303159609437,-0.0037370063364506,0.0035459252540022],[-0.046142648905516,-0.002063539577648,-0.015887012705207]],[[0.040712252259254,0.059267461299896,-0.0063736946322024],[-0.065615370869637,-0.042023818939924,-0.063637472689152],[-0.013607318513095,-0.035924009978771,-0.0098149506375194]],[[-0.0027877159882337,-0.0042276438325644,0.018341060727835],[0.083841763436794,0.046988245099783,0.054014462977648],[-0.08807797729969,0.012037238106132,-0.054123520851135]],[[0.011048814281821,0.052456062287092,0.048309754580259],[0.014508496969938,-0.016746232286096,-0.11327709257603],[-0.084950685501099,-0.071180887520313,-0.020703621208668]],[[-0.0023067693691701,-0.044637326151133,0.022416295483708],[-0.0021846878807992,-0.036576695740223,-0.043787829577923],[0.00084079243242741,0.011616961099207,0.02846959233284]],[[0.025472851470113,-0.0046434286050498,-0.026573173701763],[0.0033068582415581,0.019545909017324,-0.013474208302796],[0.01186307426542,-0.12262522429228,-0.075767040252686]],[[0.034005537629128,0.013974781148136,0.1018608212471],[-0.030321838334203,0.030887521803379,0.097185306251049],[0.0065074032172561,0.066775418817997,-0.026607094332576]],[[-0.0087658427655697,0.0023138641845435,0.053655363619328],[-0.033594094216824,0.027122987434268,0.0074269506148994],[0.055214017629623,-0.043674122542143,0.0038923188112676]],[[0.025872901082039,-0.0020763939246535,0.053818818181753],[0.020036824047565,-0.11501008272171,-0.046214550733566],[-0.093457154929638,0.088575959205627,-0.041280817240477]],[[0.006910277530551,0.025633774697781,-0.044798243790865],[0.0088779870420694,-0.042110901325941,-0.1085559502244],[-0.074000254273415,-0.094923436641693,-0.040956366807222]],[[-0.0045899325050414,-0.028956508263946,0.064561121165752],[0.029907558113337,-0.045799102634192,0.021710241213441],[0.041849080473185,-0.036705046892166,-0.018189735710621]],[[-0.025141961872578,0.012374336831272,0.043358538299799],[0.019245531409979,-0.039436656981707,-0.044832594692707],[-0.0053064273670316,0.034099947661161,-0.052365738898516]],[[-0.025040289387107,-0.02979445271194,-0.025422897189856],[-0.041179098188877,0.099783256649971,0.04403829947114],[0.048593860119581,-0.043731994926929,0.013526449911296]],[[-0.029500471428037,0.046664468944073,0.025631975382566],[0.010708081535995,0.0088811293244362,-0.026963422074914],[-0.012077678926289,-0.021838711574674,0.021980265155435]],[[0.069099046289921,0.072048045694828,0.044218633323908],[0.093093238770962,0.063457295298576,-0.025349913164973],[0.026167502626777,0.024396531283855,0.052974116057158]],[[0.022790966555476,0.02202613838017,-0.046877652406693],[0.027069006115198,-0.0055186487734318,-0.016869628801942],[0.020649828016758,-0.084536179900169,-0.008373249322176]],[[0.012764132581651,-0.058729808777571,0.042291570454836],[0.0095684891566634,-0.017936911433935,0.018872160464525],[0.0023470954038203,-0.030209917575121,0.060104012489319]],[[-0.0042749983258545,0.03722557425499,0.036987941712141],[-0.063269093632698,0.12609754502773,0.09182170778513],[-0.02787466160953,0.00088150153169408,-0.031234122812748]],[[0.029245911166072,-0.021054120734334,-0.027260901406407],[-0.045107670128345,0.0045713311992586,-0.06980699300766],[0.031272578984499,0.030968271195889,0.071266673505306]],[[-0.11028443276882,-0.033722300082445,-0.044900450855494],[-0.011410526931286,0.028919328004122,0.017533121630549],[-0.083814553916454,-0.00095411017537117,0.037946730852127]],[[0.043969046324492,-0.023508558049798,-0.052394285798073],[0.028922265395522,0.037681505084038,0.023155154660344],[0.056972183287144,-0.0024073217064142,-0.024100558832288]],[[-0.035641204565763,-0.073382899165154,-0.036544118076563],[-0.00010325406765332,0.038480065762997,0.0039329482242465],[-0.063527218997478,-0.022476218640804,-0.096579201519489]],[[-0.0028452191036195,0.020503621548414,0.095733441412449],[0.041921053081751,0.019909333437681,0.040289014577866],[-0.050127573311329,0.027484191581607,-0.035354640334845]],[[0.0021342746913433,-0.0036893314681947,0.026863623410463],[0.024292701855302,-0.039757590740919,0.050142027437687],[-0.047314278781414,0.0032702947501093,0.013823092915118]],[[-0.013438140973449,0.064499504864216,-0.00029320837347768],[0.017771339043975,0.022638415917754,-0.059713967144489],[-0.064516089856625,0.045476879924536,0.0079679032787681]],[[-0.063652075827122,0.067202463746071,-0.040977131575346],[-0.0055284653790295,-0.02898171916604,0.053434107452631],[-0.052054863423109,0.00063281267648563,0.0076100220903754]],[[-0.12504164874554,0.088667541742325,0.013032020069659],[-0.021689388900995,0.053895525634289,0.084967061877251],[-0.072428867220879,0.029287751764059,0.015789750963449]],[[0.038971770554781,-0.070718571543694,-0.017048085108399],[-0.011090596206486,0.0053230561316013,-0.033585585653782],[-0.023962335661054,0.10934446007013,-0.017997635528445]],[[0.036362450569868,0.044989954680204,0.033169090747833],[-0.080021671950817,-0.0026950743049383,-0.030875042080879],[0.012166575528681,0.023520544171333,0.030473124235868]],[[-0.097328156232834,-0.037882566452026,-0.033234748989344],[-0.011703937314451,-0.0032050530426204,-0.022141579538584],[0.0037059325259179,-0.0054873796179891,-0.0010438046883792]],[[0.055350076407194,0.049078781157732,-0.0070853536017239],[-0.030632777139544,-0.0051207221113145,0.023854812607169],[-0.051323726773262,-0.012678866274655,0.019571391865611]],[[0.029692595824599,0.0024913104716688,0.038888771086931],[-0.067205458879471,0.02109545096755,0.068806789815426],[-0.024486230686307,-0.050080623477697,0.062726005911827]],[[0.035820081830025,0.01859874650836,-0.046617213636637],[-0.015865918248892,-0.063083551824093,-0.0062352404929698],[0.022203888744116,-0.007426846306771,0.056549493223429]],[[-0.010393602773547,0.037275798618793,0.046879470348358],[0.0061479839496315,0.035037528723478,0.018705803900957],[-0.016411121934652,-0.03112923912704,-0.11078353226185]],[[0.039451368153095,-0.050621658563614,-0.0037744182627648],[-0.055679976940155,0.055887904018164,-0.0287562943995],[-0.047962602227926,-0.0093805734068155,-0.029950251802802]],[[-0.033005844801664,-0.031961143016815,-0.0042427564039826],[0.02541277371347,-0.03327027708292,0.037719011306763],[0.042825996875763,-0.069536089897156,0.10934215784073]],[[-0.018911188468337,-0.090660341084003,0.0010315546533093],[0.04078758507967,0.034810874611139,0.0017497703665867],[-0.032500632107258,-0.061271898448467,-0.10014703124762]],[[-0.052670102566481,-0.027787847444415,-0.029695630073547],[0.020418684929609,0.066393353044987,0.051561441272497],[0.07675363868475,0.01956563256681,0.021252542734146]],[[0.055434390902519,-0.016831569373608,-0.0078141111880541],[0.070648692548275,-0.043536141514778,-0.069851882755756],[0.04738063365221,-0.076342172920704,-0.011802124790847]],[[-0.1280276030302,0.031555879861116,-0.0092028602957726],[0.018546085804701,-0.078718274831772,0.042850993573666],[0.039157450199127,0.0080502182245255,-0.029838407412171]],[[0.012323685921729,0.050799507647753,0.035534415394068],[0.077993370592594,-0.076783299446106,-0.10887628793716],[0.056058887392282,-0.034484930336475,0.042130079120398]],[[-0.021882535889745,-0.013189962133765,-0.0099666211754084],[-0.045749947428703,0.048912700265646,-0.066982306540012],[-0.025275679305196,-0.017983362078667,0.0077274711802602]],[[0.064259625971317,-0.032295245677233,-0.040707025676966],[0.038039043545723,0.023963630199432,0.028488146141171],[0.067436710000038,0.06567145884037,0.021771486848593]],[[0.11978739500046,0.081919141113758,-0.06090422719717],[-0.055598378181458,-0.086109772324562,-0.12179861217737],[-0.046337258070707,-0.044224835932255,-0.034115251153708]],[[-0.030778627842665,-0.0088369389995933,0.059053909033537],[-0.019170332700014,-0.029493728652596,-0.032167602330446],[-0.018244555220008,-0.053977154195309,0.059954855591059]],[[-0.0090611977502704,0.059834286570549,-0.024520717561245],[0.040930099785328,-0.060300957411528,-0.023276880383492],[0.0045323534868658,0.020414706319571,0.0037615210749209]],[[0.0082406206056476,0.00075767724774778,-0.058439161628485],[-0.0025791835505515,-0.0088313492015004,-0.028729274868965],[0.036093652248383,0.047657888382673,0.012373468838632]],[[0.030234027653933,0.03343952819705,0.057675704360008],[-0.035385988652706,-0.0085059963166714,0.050809733569622],[-0.044554360210896,-0.046105846762657,0.0045404294505715]],[[0.028576895594597,0.0029844644013792,-0.0059175440110266],[-0.0072609367780387,-0.043366987258196,0.016005057841539],[-0.038512576371431,-0.062519192695618,0.04633167013526]],[[0.070867009460926,0.024206532165408,0.049740843474865],[-0.014454244635999,0.06301511824131,0.0040659294463694],[0.02034448646009,0.037495736032724,-0.011195580475032]],[[-0.0064802067354321,0.031901650130749,-0.019995944574475],[-0.015690535306931,0.05756288766861,-0.019633360207081],[-0.0076926294714212,0.018243564292789,-0.020726751536131]],[[0.008290040306747,-0.021062213927507,-0.063974589109421],[0.0012378046521917,-0.029008653014898,-0.016153356060386],[-0.034448273479939,-0.018803253769875,-0.044431522488594]],[[-0.02451391890645,0.10848144441843,0.016809647902846],[-0.0089153572916985,-0.021470839157701,-0.012461364269257],[-0.12618952989578,0.0026635823305696,0.034141086041927]],[[-0.048234101384878,-0.026577584445477,0.014699690043926],[-0.030600724741817,-0.023316401988268,0.02300501614809],[0.061099782586098,0.067434974014759,0.037233423441648]],[[0.025988269597292,0.06779919564724,-0.02323485724628],[-0.11230214685202,-0.036918975412846,-0.11211424320936],[0.0074991462752223,0.0059662209823728,0.0046517727896571]]],[[[0.02997319214046,-0.01515362970531,0.056651249527931],[-0.015018393285573,0.066209934651852,0.043164048343897],[-0.0036647019442171,-0.0093616787344217,-0.039613071829081]],[[0.023879261687398,0.047390043735504,-0.035624973475933],[0.025530865415931,-0.0033575384877622,-0.03597616404295],[0.016716957092285,-0.028476912528276,-0.0065284613519907]],[[-0.09303030371666,0.010750593617558,0.048235919326544],[-0.027871446684003,-0.025992035865784,0.046670760959387],[-0.07645308226347,-0.031368609517813,0.013919003307819]],[[-0.074928127229214,-0.077024556696415,0.057497195899487],[0.013479414395988,-0.0047310572117567,0.037986639887094],[0.00050691730575636,0.027282919734716,-0.025878194719553]],[[-0.036095920950174,0.016583178192377,-0.024145297706127],[-0.067383535206318,-0.068287141621113,-0.17684262990952],[-0.017931658774614,-0.0067616403102875,-0.16014106571674]],[[-0.034798014909029,-0.082605838775635,-0.089200645685196],[0.04117388650775,-0.097037851810455,-0.00066720071481541],[0.0042920834384859,-0.060314487665892,0.12197346240282]],[[-0.027998680248857,0.0036866534501314,0.034865617752075],[-0.0044075767509639,0.144312530756,0.034293580800295],[0.00055769365280867,-0.00079602369805798,0.04309730604291]],[[0.026049971580505,-0.029712807387114,-0.02318630181253],[-0.037345614284277,-0.0053726574406028,-0.033632796257734],[-0.042581144720316,-0.068007878959179,0.030271561816335]],[[0.096246547996998,-0.06772767752409,0.087065733969212],[-0.027270182967186,0.016774900257587,0.0161575935781],[-0.0010202152188867,0.022418323904276,0.04131181910634]],[[-0.017988784238696,-0.0092497374862432,0.010285963304341],[-0.016509059816599,0.033030163496733,0.02079152315855],[-0.0073679103516042,-0.021119678393006,0.00058059673756361]],[[-0.10030329227448,-0.052027519792318,-0.0034757449757308],[-0.022828698158264,-0.052199624478817,0.036505114287138],[0.015320104546845,0.042068842798471,-0.023618059232831]],[[0.039084956049919,0.0097908405587077,-0.0043870131485164],[0.12645760178566,-0.0039625815115869,-0.018968224525452],[-0.037236094474792,0.073239177465439,0.051708810031414]],[[-0.012890797108412,-0.0061724409461021,0.0079556424170732],[-0.070461273193359,-0.053228721022606,-0.023865770548582],[-0.083070240914822,0.039790239185095,-0.035244792699814]],[[0.02348193898797,0.042248673737049,0.053028490394354],[-0.035028181970119,-0.0058486582711339,0.041898563504219],[0.026133837178349,-0.048570740967989,-0.016277063637972]],[[0.0087299216538668,0.023914074525237,-0.052241161465645],[-0.058692272752523,0.051717225462198,-0.021278178319335],[-0.021060785278678,0.091914586722851,-0.012208996340632]],[[0.042270068079233,-0.056796934455633,0.024113932624459],[0.019835855811834,-0.037887889891863,0.032740011811256],[0.10837198793888,-0.057695303112268,0.023207070305943]],[[0.046407930552959,0.046479444950819,-0.0065848724916577],[0.034174438565969,-0.050606571137905,0.033932343125343],[0.017549550160766,-0.059855364263058,-0.0019365861080587]],[[0.029576430097222,-0.048665568232536,-0.040254525840282],[0.019811438396573,-0.0441341586411,0.0094351936131716],[-0.023663658648729,0.047064639627934,-0.082350306212902]],[[0.046406377106905,-0.061672538518906,0.026108659803867],[0.027040319517255,0.054856963455677,-0.046341951936483],[0.010820505209267,-0.038022674620152,-0.013240909203887]],[[-0.077292755246162,0.041824374347925,0.046477545052767],[-0.061519183218479,0.066036850214005,0.040347304195166],[-0.0097001818940043,0.012752174399793,-0.025811363011599]],[[-0.049555115401745,-0.039408568292856,-0.093356467783451],[-0.0046033319085836,-0.0064771152101457,-0.019936796277761],[-0.054336633533239,-0.01483962405473,0.044947024434805]],[[7.7755641541444e-05,0.013498845510185,0.077916599810123],[0.030027315020561,-0.0039928425103426,-0.0094922855496407],[-0.022896576672792,0.016648901626468,-0.025888919830322]],[[0.09822028875351,-0.12650443613529,-0.020311526954174],[-0.031185319647193,0.037397999316454,-0.032795649021864],[-0.027119843289256,0.069268368184566,0.036550719290972]],[[0.056462902575731,0.12503336369991,0.19687384366989],[0.10397233814001,0.0080747157335281,0.11426404863596],[0.094528906047344,-0.022695358842611,0.089913226664066]],[[0.0051995846442878,0.086017750203609,0.05299175158143],[0.034592621028423,-0.044215407222509,-0.027830695733428],[0.010993327014148,0.03606428578496,0.0022784171160311]],[[0.013734836131334,0.065627813339233,0.0094210039824247],[-0.044112458825111,0.093044206500053,-0.004875807557255],[0.002299657324329,0.087716445326805,-0.017671322450042]],[[0.010175603441894,-0.111826851964,0.023942736908793],[-0.057751599699259,0.026488043367863,0.084981746971607],[0.0074124322272837,0.13094428181648,0.098435401916504]],[[0.052462413907051,-0.052502699196339,-0.032196462154388],[0.046129282563925,-0.086265958845615,0.055671140551567],[0.022318283095956,0.019099179655313,-0.001575629459694]],[[0.066009312868118,0.037970643490553,0.037007719278336],[0.010073979385197,0.054739080369473,0.023730764165521],[0.031698025763035,0.023937523365021,-0.031098695471883]],[[0.046422854065895,-0.035500444471836,-0.094557143747807],[0.0037327809259295,0.016572441905737,-0.028946725651622],[0.024288050830364,-0.010608076117933,0.03440447896719]],[[-0.022452956065536,-0.0052884463220835,0.04047143086791],[-0.018550466746092,0.087156869471073,0.05067278817296],[0.079627886414528,-0.031142739579082,0.039618492126465]],[[0.02273977175355,0.0033933795057237,-0.023229585960507],[-0.011728022247553,-0.0068591744638979,0.0024651745334268],[-0.06362260133028,-0.097698025405407,-0.047915395349264]],[[-0.024041311815381,-0.068334117531776,-0.047323789447546],[0.0209955368191,-0.033631417900324,0.031866241246462],[0.039658840745687,0.046865973621607,0.021957715973258]],[[-0.03692963346839,0.1216848269105,0.060993894934654],[-0.076374262571335,0.034865975379944,0.01535636652261],[0.064568161964417,0.029523709788918,0.0047702258452773]],[[-0.022743754088879,0.07081364095211,0.065758444368839],[-0.031930737197399,0.046078264713287,0.039185613393784],[-0.047886714339256,0.037583701312542,0.044993374496698]],[[0.022637946531177,-0.030899651348591,0.023598486557603],[0.0038424485828727,-0.0094597954303026,-0.066929861903191],[0.0054405461996794,0.015190648846328,0.0087023200467229]],[[-0.022737627848983,0.02100232988596,0.016725482419133],[-0.0014123985311016,0.071744650602341,-0.094764553010464],[0.015781534835696,0.043740533292294,-0.013508358970284]],[[-0.017167674377561,0.027997007593513,0.016606697812676],[0.020759578794241,0.041455689817667,-0.024829786270857],[0.067021206021309,0.055434286594391,0.087555833160877]],[[-0.0027748225256801,0.022459987550974,0.069962166249752],[0.012755899690092,0.034243252128363,0.046070456504822],[-0.00020816749020014,-0.033246286213398,0.17364293336868]],[[0.019053423777223,0.04905417189002,0.10192171484232],[-0.023822946473956,-0.004103671759367,0.051929783076048],[-0.0029575549997389,0.070772260427475,0.088095255196095]],[[0.065707325935364,-0.090021625161171,0.047358833253384],[0.060138929635286,0.0089093605056405,0.040862865746021],[0.0574881285429,-0.007097830530256,0.011198669672012]],[[-0.05635966733098,-0.042779706418514,-0.040439512580633],[-0.0051290513947606,-0.068260446190834,0.022039407864213],[-0.019345551729202,-0.10612519085407,0.066508643329144]],[[0.063903152942657,0.043778192251921,-0.10811848938465],[-0.067154720425606,-0.0027450621128082,-0.015351561829448],[-0.07268300652504,-0.068164527416229,-0.011467737145722]],[[0.069944649934769,-0.064216017723083,-0.016380988061428],[0.020042449235916,-0.06032295152545,0.003796533215791],[0.07271945476532,0.019222224131227,0.037049051374197]],[[-0.1681243032217,-0.039809349924326,-0.0020895968191326],[0.0020984131842852,-0.075376771390438,0.0038393253926188],[0.14893609285355,0.00068591552553698,-0.047136582434177]],[[0.044322524219751,-0.060449741780758,0.069768562912941],[0.083300404250622,0.046948935836554,0.087270647287369],[-0.07661896944046,-0.040302790701389,-0.025197891518474]],[[-0.064649894833565,0.042842842638493,-0.043876528739929],[-0.015121890231967,0.058065559715033,0.10136874765158],[-0.023758038878441,0.11722175776958,0.037705652415752]],[[0.043407246470451,0.022464998066425,-0.050105810165405],[-0.010367285460234,-0.038997538387775,-0.1309028416872],[0.0011696671135724,0.026676323264837,0.0017105232691392]],[[0.076050333678722,-0.056109625846148,0.0036204243078828],[-0.034932650625706,0.077825255692005,0.056638419628143],[0.011906424537301,0.025898341089487,0.01398700941354]],[[0.03486106544733,0.025438083335757,-0.0083675319328904],[0.0087892608717084,-0.035349298268557,0.0021333899348974],[0.0077810897491872,-0.068362027406693,-0.016669157892466]],[[-0.064731657505035,-0.058746449649334,-0.051221750676632],[0.064765624701977,-0.049773689359426,0.017201542854309],[0.00056179263629019,0.025958143174648,0.036008175462484]],[[0.013753512874246,-0.03024329431355,-0.038684319704771],[0.093082249164581,0.014908093959093,-0.0093798600137234],[0.022902052849531,0.027844866737723,-0.054475553333759]],[[-0.023581331595778,0.033518597483635,-0.052240587770939],[-0.038817200809717,-0.091700419783592,-0.02363071963191],[0.027213398367167,0.047177389264107,-0.010529968887568]],[[-0.040179394185543,-0.10173920542002,0.067633375525475],[-0.041254930198193,-0.06916418671608,0.0042555760592222],[-0.0574503056705,-0.021364411339164,-0.042008236050606]],[[-0.0083832927048206,-0.0044991807080805,-0.0067564337514341],[-0.015095937997103,0.023424504324794,-0.0718854367733],[-0.040187519043684,-0.053177129477262,0.019814547151327]],[[-0.00056965689873323,0.014529029838741,-0.083458714187145],[-0.010849880054593,-0.0022361541632563,-0.058753993362188],[0.040425848215818,0.0047330688685179,-0.038297545164824]],[[-0.059874586760998,-0.043463513255119,0.013315348885953],[-0.026378726586699,-0.017316348850727,-0.027433743700385],[-0.088809370994568,-0.022087123245001,0.023043802008033]],[[-0.024686703458428,-0.03196843713522,-0.024491624906659],[-0.087971113622189,-0.15352337062359,0.11431533098221],[0.003326561069116,-0.091744691133499,0.050154790282249]],[[-0.051094513386488,0.086684592068195,0.050846830010414],[0.14850625395775,-0.014183701947331,-0.081354930996895],[0.045764066278934,0.11654886603355,0.02769417501986]],[[0.031889230012894,-0.016954323276877,-0.0007017835159786],[0.031661227345467,-0.011440564878285,0.0069872788153589],[-0.030217994004488,0.0012698190985247,0.015576062723994]],[[-0.017181562259793,0.044642113149166,-0.00070259411586449],[0.0089629609137774,0.0026486769784242,0.0036850196775049],[-0.010284923017025,-0.034113477915525,0.020488662645221]],[[-0.064309999346733,-0.027053771540523,0.019025072455406],[0.023029193282127,-0.0412662550807,-0.055534787476063],[0.078823484480381,0.046299729496241,0.0054079229012132]],[[-0.0058839148841798,-0.080641850829124,-0.066124364733696],[-0.015968330204487,-0.027725335210562,0.053555846214294],[-0.023642579093575,0.030521279200912,0.012779494747519]],[[-0.052737951278687,0.0066803698427975,-0.02413066662848],[-0.0081221433356404,-0.086561433970928,-0.0091500971466303],[0.031161028891802,0.0094587747007608,-0.0049673803150654]]],[[[-0.0047506890259683,-0.020179254934192,-0.0038778744637966],[0.016549417749047,0.055946134030819,0.019023805856705],[0.05565844476223,0.10574136674404,0.084139376878738]],[[-0.039435964077711,-0.0079414518550038,0.035642940551043],[0.058857124298811,0.013029267080128,0.048511885106564],[-0.0055975653231144,-0.052217353135347,-0.038189630955458]],[[-0.081694021821022,-0.018295269459486,0.014653739519417],[-0.11728730797768,-0.031545117497444,0.055510982871056],[-0.042905170470476,0.029153412207961,0.1100076213479]],[[0.094427146017551,-0.031622361391783,0.0093761272728443],[0.039566203951836,0.085303664207458,0.024673838168383],[0.020827515050769,-0.025302343070507,0.027817057445645]],[[-0.042500529438257,0.066460445523262,-0.00097686576191336],[-0.052052516490221,-0.017569506540895,0.040332037955523],[-0.029739283025265,0.033638760447502,0.04809545725584]],[[-0.034029744565487,0.018971215933561,0.078959174454212],[-0.013530343770981,-0.068537056446075,0.04932389035821],[0.027935249730945,-0.055638216435909,0.10771690309048]],[[0.021833198145032,0.026962229982018,0.055882170796394],[0.039805617183447,0.063612684607506,-0.049728363752365],[0.018267713487148,0.04789961501956,0.047569561749697]],[[0.015420099720359,0.047576546669006,-0.030607782304287],[0.063977509737015,0.088106267154217,0.0023952501360327],[-0.024776842445135,0.10371521115303,0.025972520932555]],[[0.065888591110706,-0.020402098074555,-0.01879471167922],[0.0030530099757016,0.02532315813005,0.00941426679492],[-0.074740298092365,0.050450060516596,0.010731857270002]],[[-0.050903826951981,-0.038970444351435,-0.0036902499850839],[-0.019363094121218,0.018774729222059,-0.0091333333402872],[-0.063030332326889,-0.080926902592182,-0.038697887212038]],[[0.044861119240522,-0.035957358777523,-0.11987493932247],[-0.098828591406345,0.044777452945709,0.029089177027345],[-0.0046070087701082,-0.021506590768695,0.00015263151726685]],[[-0.031285665929317,-0.045470535755157,-0.0039482940919697],[0.062035329639912,0.045634996145964,-0.018742237240076],[0.036494109779596,-0.0014621749287471,0.03166788443923]],[[0.020263420417905,0.095224395394325,-0.010634748265147],[0.062058344483376,-0.014118989929557,-0.026875494047999],[-0.018712127581239,-0.036532536149025,0.056374318897724]],[[-0.00035370222758502,-0.046121187508106,0.058234259486198],[-0.014820379205048,-0.019828785210848,0.05982207134366],[0.038619577884674,-0.11760462075472,0.024110881611705]],[[-0.067268162965775,-0.038435403257608,-0.0026092270854861],[-0.030599655583501,-0.022172503173351,0.083972819149494],[-0.050608079880476,0.028231905773282,0.11457888036966]],[[0.057905543595552,0.15195961296558,0.092390567064285],[-0.085426032543182,0.041831720620394,0.025949966162443],[0.0081489449366927,-0.010066747665405,0.065461218357086]],[[-0.039934854954481,-0.023434421047568,0.088534407317638],[-0.01359570864588,-0.05893998593092,0.023738468065858],[0.095070824027061,-0.029474703595042,0.068744964897633]],[[-0.045869864523411,0.05427124351263,0.12701241672039],[0.017450854182243,0.0070945643819869,0.0323197953403],[0.076928801834583,-0.037036821246147,-0.033760942518711]],[[-0.1908225864172,0.10063300281763,-0.0056475410237908],[-0.09419234842062,0.077610664069653,-0.035598434507847],[-0.049830134958029,0.10771705955267,-0.032417822629213]],[[-0.0031107154209167,-0.046675369143486,-0.0047397175803781],[-0.027890775352716,0.017386626452208,0.03308204934001],[-0.032415509223938,0.040862821042538,0.028503248468041]],[[-0.059051897376776,0.030342932790518,0.025286227464676],[-0.066692218184471,-0.063141390681267,0.0711639970541],[-0.014958667568862,0.0087328376248479,-0.0019901825580746]],[[-0.13355815410614,0.041448537260294,-0.018211223185062],[0.093736924231052,-0.0078925983980298,0.0093318019062281],[0.063147380948067,0.017813596874475,0.11035383492708]],[[0.069488041102886,0.0085578477010131,0.09175393730402],[0.054515041410923,-0.096536353230476,-0.041686374694109],[-0.0036968502681702,-0.026585275307298,-0.12069253623486]],[[0.041762568056583,0.021023293957114,0.056406170129776],[0.048560276627541,-0.0036535928957164,0.049350760877132],[0.068857066333294,0.044838134199381,0.08725044131279]],[[-0.046050298959017,0.0089742355048656,-0.057457704097033],[0.014944738708436,0.017562799155712,0.12505434453487],[-0.0019286897731945,0.039556123316288,-0.028704110532999]],[[0.012074599973857,-0.053227975964546,0.022263867780566],[0.00073878595139831,0.017483580857515,0.017340129241347],[0.022849136963487,0.047280825674534,-0.013349254615605]],[[-0.049443993717432,0.010391707532108,-0.010979153215885],[-0.12004024535418,-0.0034066108055413,-0.0073202424682677],[-0.017715131863952,-0.032318949699402,0.08933188021183]],[[-0.041495632380247,0.082802288234234,0.073520384728909],[-0.030022084712982,0.0066808788105845,0.074888676404953],[0.012911095283926,-0.023938093334436,0.025472776964307]],[[-0.02289180830121,0.0027788744773716,-0.043902914971113],[0.049284506589174,0.018684225156903,0.013126831501722],[-0.070721864700317,-0.045469027012587,0.077780671417713]],[[0.085733383893967,0.06706178188324,0.040386985987425],[0.09622647613287,0.072677627205849,0.0066351722925901],[0.071808837354183,0.067319937050343,-0.0042580235749483]],[[-0.031257249414921,-0.056151103228331,0.024382876232266],[0.021187264472246,0.089879013597965,0.052890803664923],[0.061244156211615,0.0080271223559976,-0.04129895195365]],[[-0.073877118527889,-0.11203183978796,-0.0051810769364238],[-0.054779019206762,-0.052285514771938,0.080538988113403],[-0.023996150121093,0.012750782072544,0.036723114550114]],[[0.026221727952361,0.0059654088690877,0.028532538563013],[-0.072939462959766,-0.024601368233562,0.014482818543911],[0.011699015274644,0.044221844524145,-0.065372429788113]],[[0.022409897297621,-0.097207069396973,-0.11201145499945],[-0.098907634615898,-0.18265137076378,-0.15477827191353],[0.060490965843201,0.0071663404814899,0.064602360129356]],[[-0.13206274807453,-0.033743668347597,0.08886606246233],[-0.1009145155549,0.052227754145861,0.0074034621939063],[-0.073433637619019,0.018137713894248,-0.019204529002309]],[[0.038502022624016,-0.0072288010269403,-0.0469667352736],[-0.10285833477974,-0.075889952480793,0.076770313084126],[0.02116921544075,-0.020865416154265,0.10151712596416]],[[0.12588050961494,-0.061400949954987,-0.0098800659179688],[0.094262592494488,-0.061146039515734,-0.041155371814966],[0.14724476635456,0.0071055623702705,0.068885758519173]],[[-0.09964245557785,-0.035941291600466,0.026132024824619],[-0.11494144797325,-0.018875487148762,-0.095148302614689],[0.047792267054319,0.049426015466452,0.057018090039492]],[[0.018330568447709,0.029664168134332,0.018637562170625],[0.079722955822945,-0.014339975081384,0.034099142998457],[-0.030972486361861,-0.013166210614145,0.040956936776638]],[[-0.1240089982748,-0.048101864755154,0.067828506231308],[-0.065056696534157,-0.067678108811378,0.019803795963526],[-0.037925343960524,0.00056026363745332,0.037437092512846]],[[-0.068633407354355,0.050423089414835,0.04166528955102],[-0.027545802295208,-0.026000028476119,-0.024892583489418],[0.0024696660693735,-0.056463785469532,0.087659671902657]],[[-0.043617814779282,-0.050504896789789,0.0061735482886434],[-0.021612994372845,-0.041160624474287,0.091830760240555],[-0.046603657305241,-0.094177909195423,0.08859033882618]],[[-0.030003450810909,-0.054829105734825,-0.0944479778409],[0.084083527326584,0.12011852860451,0.11457704752684],[0.059572357684374,0.086542457342148,-0.023680517449975]],[[-0.094379156827927,-0.020387347787619,-0.020825056359172],[0.055710207670927,0.059018895030022,0.02313787676394],[-0.061027515679598,0.029057648032904,-0.0023395512253046]],[[0.036647379398346,0.0078310891985893,-0.010425630025566],[-0.054263681173325,0.023967064917088,-0.060605853796005],[0.06446611136198,0.013992386870086,-0.0094317235052586]],[[0.0049804979935288,-0.030217435210943,-0.10460451990366],[0.039345752447844,0.053958434611559,-0.06308352202177],[0.012521485798061,-0.0015486514894292,-0.0096993846818805]],[[0.036302790045738,0.12903767824173,0.066242501139641],[-0.029467932879925,-0.12270824611187,0.044646337628365],[0.02789232134819,-0.021825345233083,0.031099297106266]],[[-0.025793811306357,-0.057807881385088,0.017801659181714],[0.044480547308922,-0.082342602312565,0.034618265926838],[-0.12069894373417,-0.019462928175926,-0.029351342469454]],[[0.00014719011960551,0.039866421371698,0.026341157034039],[-0.015204638242722,0.10169021040201,-0.077943839132786],[-0.036998596042395,-0.15985515713692,-0.17386849224567]],[[-0.062297742813826,0.024713912978768,0.011191040277481],[-0.014552166685462,0.023608148097992,0.070931144058704],[-0.076364859938622,-0.020976355299354,0.025704318657517]],[[0.025235017761588,0.0079881548881531,-0.056878674775362],[-0.040740124881268,0.0028168871067464,-0.053579676896334],[0.0076655056327581,0.046081077307463,0.034851893782616]],[[-0.062148574739695,0.01135609857738,0.094611980021],[-0.0017883544787765,0.072807975113392,-0.023240322247148],[0.04668802767992,0.072123758494854,-0.00453713349998]],[[-0.046681076288223,-0.077803075313568,0.010061725974083],[-0.0093659833073616,-0.0080673955380917,0.15099315345287],[0.027725536376238,0.061387233436108,0.10833664983511]],[[0.035341516137123,0.045528706163168,0.0085912179201841],[-0.077093578875065,-0.061941955238581,0.068082451820374],[-0.040985450148582,0.039484988898039,0.024002434685826]],[[0.032670702785254,-0.045503363013268,0.068857975304127],[0.01480894908309,0.041193120181561,0.067225947976112],[-0.17530755698681,0.012715708464384,0.013712394982576]],[[0.10576391965151,-0.021868579089642,0.0032362155616283],[-0.054746948182583,-0.046638559550047,-0.048767380416393],[-0.020128645002842,-0.023739514872432,-0.04273222014308]],[[0.019698275253177,-0.072784550487995,0.015169825404882],[-0.0093264672905207,0.0018389519536868,0.033122681081295],[0.099560275673866,0.040852356702089,0.076776713132858]],[[-0.00051560392603278,-0.03543508797884,-0.036881823092699],[0.0024540009908378,-0.042056191712618,-0.095639646053314],[0.053668826818466,0.071592442691326,-0.17144903540611]],[[-0.041825979948044,0.1451229006052,0.16795831918716],[0.032772459089756,0.10661546885967,0.070460297167301],[0.018395902588964,-0.071388028562069,-0.072251096367836]],[[0.03414361551404,0.06049245968461,0.016504492610693],[0.020311657339334,-0.016379276290536,-0.041827168315649],[0.0070225419476628,-0.068081103265285,-0.020784482359886]],[[-0.022814814001322,0.044585857540369,0.0074449926614761],[-5.7837678468786e-06,-0.089042127132416,0.069154612720013],[-0.10286033898592,0.056079484522343,-0.016556480899453]],[[-0.05303718149662,-0.031401768326759,0.063440747559071],[0.057783860713243,0.10403504222631,0.046436563134193],[-0.1186672821641,0.041021835058928,-0.047650273889303]],[[-0.0072277616709471,0.022497214376926,-0.0057127121835947],[0.011790519580245,-0.090990632772446,-0.025668414309621],[-0.040993150323629,0.045690447092056,-0.004294749815017]],[[0.063995346426964,0.01435614284128,-0.025706607848406],[0.0397086776793,-0.047827176749706,-0.066289745271206],[0.017899088561535,0.010004580952227,-0.0056485710665584]]],[[[-0.022881055250764,-0.020709021016955,0.031773712486029],[-0.027237303555012,0.074613660573959,0.041999913752079],[-0.02399324066937,0.10655807703733,0.10606387257576]],[[0.0085715614259243,-0.075960583984852,-0.07011403888464],[0.0030192213598639,-0.12207692861557,-0.21802014112473],[-0.083747431635857,-0.093537792563438,-0.18488450348377]],[[-0.048221755772829,0.047665629535913,0.09635616838932],[-0.20034891366959,0.0072696264833212,0.097337894141674],[-0.26002350449562,-0.097982183098793,0.039796531200409]],[[-0.029842678457499,-0.16215205192566,-0.12941837310791],[0.0067490311339498,-0.13975229859352,-0.20559357106686],[-0.091436848044395,-0.0007465272792615,-0.01606915704906]],[[-0.031486798077822,-0.016531791538,-0.022925993427634],[0.076504066586494,-0.025358470156789,0.087788291275501],[0.1120061352849,0.047901604324579,-0.022593144327402]],[[0.013921225443482,-0.071770451962948,0.00032269267830998],[-0.058872196823359,0.056503616273403,-0.015742303803563],[-0.052914626896381,-0.088820464909077,-0.096139810979366]],[[0.040624421089888,0.01199940405786,0.026543395593762],[0.0043202117085457,-0.053977005183697,0.0038250652141869],[-0.031258527189493,-0.056329250335693,-0.0076231835409999]],[[0.021034426987171,-0.30295360088348,-0.12902748584747],[0.016341667622328,-0.032247494906187,-0.28602197766304],[-0.074990339577198,-0.029516721144319,0.023356581106782]],[[0.068037986755371,0.0054809590801597,0.064231924712658],[0.00078780250623822,0.073365658521652,-0.11693912744522],[0.090174674987793,0.078353956341743,-0.064021378755569]],[[-0.094976954162121,-0.036956455558538,0.04137160629034],[0.012608668766916,-0.077682681381702,0.035979587584734],[-0.016773454844952,0.0016084187664092,-0.015126936137676]],[[-0.062184553593397,0.012783438898623,0.02062626928091],[-0.03793440759182,0.077968150377274,0.013859432190657],[-0.069647647440434,0.0088536255061626,0.040601976215839]],[[0.052779376506805,0.0018037625122815,0.0085510648787022],[0.13546249270439,0.07285300642252,-0.023887142539024],[0.18022111058235,0.19701762497425,0.058142088353634]],[[-0.0084297759458423,0.035756777971983,-0.089881591498852],[-0.0057728169485927,-0.019448488950729,-0.018732504919171],[0.032383367419243,0.037888895720243,-0.070450805127621]],[[-0.065800346434116,-0.0097846919670701,-0.11065512150526],[-0.12455275654793,-0.045494936406612,-0.13111548125744],[0.05045609921217,-0.00096227240283042,-0.071278013288975]],[[-0.065448313951492,-0.088942594826221,0.045566350221634],[0.014076846651733,-0.02468447946012,-0.10662753880024],[-0.063067734241486,0.043723914772272,-0.07575187087059]],[[0.034771006554365,-0.048292323946953,-0.076410256326199],[0.03923748806119,0.029035134240985,-0.028878780081868],[-0.099715009331703,0.068376325070858,0.01494699344039]],[[0.027222206816077,0.057325292378664,0.11294329166412],[-0.017232533544302,-0.035759884864092,0.10060384124517],[0.075931116938591,0.098955310881138,0.11058073490858]],[[0.018763300031424,-0.048977889120579,0.036796618252993],[0.025640651583672,-0.10748261213303,-0.092462964355946],[0.043523523956537,-0.1479873508215,-0.10412884503603]],[[0.0031782004516572,-0.029725080356002,-0.15187136828899],[-0.010313779115677,0.07259389013052,0.020016215741634],[-0.073894195258617,0.1019015237689,-0.10302921384573]],[[-0.0037872139364481,0.022752035409212,0.10514359921217],[-0.063197180628777,-0.021478706970811,0.088939927518368],[-0.076592072844505,-0.078659489750862,0.061725664883852]],[[-0.0063352370634675,-0.03997004032135,-0.25938993692398],[-0.095190957188606,-0.020274948328733,-0.18017832934856],[-0.028775839135051,-0.0085226129740477,-0.14063289761543]],[[-0.02204811014235,-0.048489663749933,-0.051798421889544],[-0.0050406800583005,-0.073139190673828,-0.074749290943146],[0.054431099444628,0.026100156828761,0.096228547394276]],[[-0.01566444709897,-0.036264784634113,0.045095074921846],[-0.014300477690995,-0.043074145913124,-0.0092637091875076],[-0.06244408339262,-0.14964711666107,-0.06954251229763]],[[-0.06501641869545,-0.046533692628145,0.079877935349941],[0.042211662977934,-0.010787025094032,0.11302303522825],[-0.026747517287731,-0.021307742223144,0.036010514944792]],[[-0.027604002505541,0.0073835584335029,0.01802771538496],[-0.027534380555153,-0.0960828140378,0.07056974619627],[0.017244281247258,-0.073432050645351,0.070982731878757]],[[-0.0048947087489069,-0.033749710768461,0.042516335844994],[-0.026091866195202,-0.057440154254436,-0.013105625286698],[0.01083239261061,0.023067617788911,0.004175862763077]],[[-0.0094097554683685,0.145527780056,0.044597756117582],[-0.019477797672153,0.024875016883016,0.036387618631124],[0.0050955424085259,0.098213791847229,0.0048067150637507]],[[-5.5815351515776e-05,-0.039485350251198,-0.11361897736788],[0.0089533319696784,-0.030510473996401,0.015102026052773],[0.06002251803875,0.072444461286068,-0.0031675528734922]],[[-0.021262785419822,-8.1397549365647e-05,0.081625066697598],[-0.027269501239061,-0.015235391445458,0.025248495861888],[0.096325732767582,0.075675636529922,0.033590458333492]],[[-0.013425940647721,-0.076498225331306,0.026065357029438],[-0.023623250424862,-0.0026342421770096,0.081273198127747],[-0.013837609440088,0.013713110238314,0.027305891737342]],[[0.0055325599387288,0.092857606709003,-0.054662518203259],[0.0080060847103596,-0.032005861401558,-0.010480826720595],[0.018268352374434,-0.047244012355804,-0.041576962918043]],[[-0.0034164825920016,-0.069547414779663,-0.035852435976267],[-0.099477477371693,0.018490996211767,-0.03153033182025],[0.1035148203373,-0.0087483050301671,0.043912302702665]],[[0.046650871634483,0.036404501646757,-0.0030310531146824],[-0.015966633334756,0.10048862546682,0.042907267808914],[-0.09711230546236,0.05522208660841,-0.012363522313535]],[[-0.11926186829805,-0.079680994153023,0.10203691571951],[0.013327856548131,-0.055714540183544,0.086779534816742],[-0.076941795647144,-0.036161728203297,-0.10463263094425]],[[0.039500374346972,-0.0847143009305,0.053480289876461],[0.025667078793049,-0.04822588711977,-0.0064086117781699],[-0.013002864085138,-0.063975423574448,-0.0057685542851686]],[[-0.083869054913521,-0.053707148879766,-0.290737003088],[-0.0028382909949869,0.01497741881758,-0.098523236811161],[-0.015592023730278,0.0066793439909816,0.018021740019321]],[[-0.038674037903547,0.085301004350185,0.085793904960155],[-0.021183963865042,-0.027228154242039,0.027378128841519],[-0.081498324871063,0.015762288123369,0.085241705179214]],[[-0.082632139325142,-0.038527652621269,-0.070336937904358],[-0.0079400092363358,-0.09773388504982,-0.062695398926735],[0.028226880356669,-0.046630825847387,-0.046573705971241]],[[-0.11819908022881,0.091691017150879,-0.022323381155729],[0.0026168490294367,0.020416919142008,0.05215211212635],[0.03879401832819,0.089834839105606,-0.11450459808111]],[[-0.1706168949604,0.071810089051723,-0.068933822214603],[-0.10833480209112,0.14186042547226,0.024219194427133],[-0.085990488529205,0.0219940636307,0.088898286223412]],[[0.063480898737907,0.00015631127462257,-0.0050499127246439],[0.063650146126747,-0.016779726371169,0.060502387583256],[-0.0056742844171822,-0.050611864775419,-0.062684029340744]],[[-0.066003300249577,-0.014783228747547,0.026878885924816],[-0.011659384705126,0.061401728540659,0.0088164117187262],[0.013582724146545,0.11031714826822,0.036847312003374]],[[-0.016385165974498,-0.021651994436979,-0.17345543205738],[-0.0077895298600197,0.099996030330658,0.10702432692051],[-0.11616992205381,0.044793501496315,-0.072790138423443]],[[0.068661734461784,-0.0097136795520782,0.066808506846428],[0.013759207911789,-0.034927438944578,-0.11351435631514],[-0.11961169540882,-0.027405371889472,0.10854572802782]],[[-0.089900620281696,-0.0070501058362424,0.062126774340868],[-0.028428936377168,0.037878539413214,0.046167906373739],[-0.17583768069744,-0.063413515686989,0.086793921887875]],[[-0.080816604197025,0.030709000304341,-0.020606501027942],[-0.099008128046989,0.063236325979233,0.079421743750572],[0.075604356825352,0.03751852363348,0.057096894830465]],[[-0.065047107636929,-0.061624627560377,-0.069165766239166],[-0.025943880900741,-0.016137480735779,-0.060095332562923],[-0.027330927550793,0.073285549879074,0.062194045633078]],[[-0.0089950300753117,-0.10184456408024,0.059963658452034],[-0.010907660238445,-0.018606597557664,-0.091437615454197],[-0.041407849639654,0.0042980294674635,0.0024072448723018]],[[-0.014612502418458,0.034097265452147,-0.069109082221985],[-0.063607357442379,0.052849508821964,-0.0077556036412716],[0.013502038083971,0.036604825407267,-0.056714657694101]],[[0.078368403017521,0.061544638127089,-0.003152706194669],[0.03143498301506,-0.057694654911757,-0.077034391462803],[0.11402199417353,-0.029381681233644,0.014388451352715]],[[0.011344274505973,-0.047815196216106,-0.03417269513011],[-0.022373009473085,-0.050141774117947,0.014710457995534],[0.023788396269083,0.024212148040533,-0.065180152654648]],[[0.066967345774174,-0.12123057246208,0.074865259230137],[-0.038527868688107,-0.040924061089754,0.059182368218899],[-0.10825418680906,0.10005799680948,0.096172168850899]],[[-0.07911704480648,-0.017815770581365,-0.10838562995195],[-0.10105080157518,-0.07818865776062,0.0022464653011411],[-0.048701170831919,-0.065163999795914,-0.049951381981373]],[[0.036510415375233,-0.0042957221157849,0.080013066530228],[0.022671114653349,-0.06589362770319,0.00022278624237515],[-0.047269620001316,-0.020393181592226,0.0050804219208658]],[[-0.0057811690494418,-0.090052075684071,0.05869834497571],[-0.061661504209042,-0.080882400274277,-0.013533176854253],[-0.12014462053776,-0.038623712956905,-0.18924863636494]],[[0.11364818364382,-0.047132533043623,-0.35754728317261],[0.056297190487385,-0.0011454077903181,-0.059441711753607],[0.13829526305199,0.022255709394813,0.0033899010159075]],[[-0.026067273691297,0.048218321055174,0.034699186682701],[-0.036522563546896,0.051235508173704,0.010494844987988],[0.0205506272614,-0.071442969143391,-0.035867884755135]],[[-0.028109211474657,0.063673831522465,0.050440318882465],[-0.081930443644524,-0.1555420011282,-0.20355147123337],[0.0082424562424421,-0.14027805626392,-0.054148096591234]],[[0.045989774167538,0.078227356076241,0.096021384000778],[0.065880388021469,0.063842214643955,0.034102872014046],[0.077115066349506,0.033346123993397,0.13114142417908]],[[0.034896239638329,-0.07866907119751,-0.11869498342276],[0.11309580504894,0.021322522312403,-0.068746164441109],[0.045233011245728,0.100302092731,-0.047537494450808]],[[-0.015279757790267,0.00015036997501738,-0.062417682260275],[0.059000492095947,-0.016014011576772,-0.022874748334289],[0.11324883252382,0.0992476567626,-0.098528303205967]],[[0.097217381000519,0.13244484364986,0.064861610531807],[-0.010150370188057,0.074840568006039,-0.0032958670053631],[-0.095447011291981,-0.01613549888134,4.294688187656e-05]],[[-0.02090597897768,-0.04287227243185,0.039752811193466],[-0.097529858350754,-0.067078523337841,0.057951163500547],[-0.011010910384357,-0.12858438491821,-0.091645106673241]],[[0.092830196022987,0.0047006634995341,-0.11315127462149],[0.075291126966476,0.072048917412758,0.014773290604353],[-0.079743340611458,0.043889049440622,0.022386675700545]]],[[[-0.016962919384241,-0.049293398857117,0.042334143072367],[-0.04099590331316,0.068081192672253,0.0060406518168747],[0.079488277435303,-0.033743429929018,-0.03931638225913]],[[-0.076458387076855,0.030117407441139,-0.025807056576014],[-0.059249669313431,0.020810127258301,0.045811608433723],[-0.033320769667625,-0.078549310564995,-0.09593927115202]],[[0.013928512111306,0.042389072477818,0.0098178833723068],[-0.058407962322235,-0.014076415449381,0.0024803627748042],[-0.041459452360868,-0.077253311872482,-0.05640471726656]],[[-0.066756904125214,0.040277201682329,0.0027575637213886],[0.085191652178764,-0.055223736912012,-0.22070720791817],[0.0068146088160574,0.025189224630594,-0.056248974055052]],[[-0.061341416090727,-0.052498288452625,0.0058731930330396],[-0.022102374583483,-0.012874092906713,0.0087460512295365],[-0.01371927279979,0.02758233062923,0.074457943439484]],[[-0.048080399632454,0.01589241810143,-0.0089103691279888],[-0.0038024976383895,0.023150715976954,0.086671426892281],[0.048438016325235,-0.10548159480095,-0.0020295660942793]],[[-0.10912626981735,0.046005588024855,-0.020377581939101],[-0.020705247297883,-0.014314811676741,0.046985037624836],[-0.033081110566854,-0.063325367867947,-0.031309645622969]],[[0.011958044022322,0.039674587547779,-0.053246285766363],[-0.0022662621922791,-0.0013227104209363,-0.12999983131886],[0.047659080475569,-0.041774168610573,0.03592586144805]],[[-0.10029996186495,0.053721487522125,-0.0088609838858247],[0.03556764870882,-0.08024650067091,0.032003931701183],[0.0020269663073123,0.04394768550992,-0.067243993282318]],[[0.064828917384148,0.0785301476717,-0.047721952199936],[-0.020011076703668,-0.086800143122673,0.029053451493382],[-0.062127616256475,0.00051157007692382,0.049876619130373]],[[0.038840111345053,-0.051268853247166,-0.03506300970912],[-0.018848914653063,-0.061506040394306,0.050581566989422],[-0.0047791600227356,-0.03722770512104,0.041022934019566]],[[0.0049885506741703,0.03674353659153,0.052937742322683],[0.011460463516414,-0.011327574960887,-0.0060051763430238],[0.015936629846692,-0.015571518801153,-0.043223172426224]],[[-0.026594603434205,-0.10358413308859,-0.13930226862431],[0.091770499944687,0.028148908168077,-0.022913621738553],[-0.010016951709986,0.093746080994606,-0.13300311565399]],[[0.04724084213376,0.013626391999424,-0.0010541098890826],[-0.02923746407032,-0.0050551844760776,-0.017578529193997],[-0.01303462125361,0.0065031019039452,0.049892369657755]],[[-0.0021208075340837,0.054260924458504,-0.13870505988598],[-0.079385913908482,0.020880257710814,-0.03199291229248],[-0.048288762569427,0.011414614506066,0.035554576665163]],[[-0.011752838268876,0.0066806268878281,-0.039317335933447],[-0.016502710059285,0.0075113447383046,-0.016517708078027],[-0.067979417741299,-0.1391149610281,-0.021184856072068]],[[-0.051169522106647,-0.011233187280595,-0.095154583454132],[0.089006252586842,0.13867914676666,0.084247052669525],[0.048067007213831,0.12400091439486,-0.0068024154752493]],[[0.0044264155440032,-0.051892153918743,-0.073814570903778],[0.10159909725189,-0.10128633677959,-0.02053446136415],[0.053105507045984,-0.088473223149776,-0.001372707891278]],[[0.0017099060351029,-0.019090453162789,0.0074595483019948],[-0.030289139598608,0.059333350509405,0.007097776979208],[0.052697233855724,-0.021121442317963,-0.074171617627144]],[[-0.0014503486454487,-0.018792275339365,0.054331548511982],[-0.0069969887845218,0.027389366179705,0.019545776769519],[-0.014070951379836,-0.026000924408436,-0.015725770965219]],[[-0.048268683254719,0.0090362410992384,0.032634377479553],[-0.024922074750066,0.081631422042847,0.042206365615129],[0.02018104121089,0.010711804963648,-0.10168355703354]],[[-0.072312593460083,0.061625804752111,0.14071081578732],[0.10506239533424,-0.0074374144896865,-0.063798941671848],[0.051061149686575,-0.0099975112825632,0.085819125175476]],[[-0.046180061995983,0.082735762000084,-0.026287732645869],[-0.02847957983613,-0.073327407240868,0.10115340352058],[0.098965644836426,0.033879939466715,-0.017732642591]],[[0.025826118886471,0.1369744092226,0.040034219622612],[0.029096828773618,0.088033273816109,0.20435287058353],[0.0029399888589978,0.020838044583797,0.028303101658821]],[[-0.046223104000092,-0.075578585267067,-0.0091546764597297],[-0.09073156863451,-0.085456073284149,0.06450866907835],[-0.0032161606941372,0.014117821119726,-0.03738210350275]],[[0.030712988227606,0.050345614552498,0.042172756046057],[0.021926488727331,-0.0056108674034476,-0.021635623648763],[-0.07137156277895,-0.031202202662826,-0.019042048603296]],[[-0.038096372038126,0.074552901089191,-0.00051667995285243],[0.053271826356649,0.046778462827206,0.042909111827612],[0.12039717286825,-0.032528892159462,0.0027985663618892]],[[-0.043825872242451,0.017391733825207,0.024311345070601],[-0.022792916744947,0.073670618236065,-0.050099313259125],[-0.093007430434227,0.068608872592449,0.0067269708961248]],[[0.09730688482523,-0.06713330745697,-0.011147568933666],[0.030865043401718,0.04603374004364,-0.045357644557953],[-0.10294004529715,-0.013319714926183,-0.070962764322758]],[[0.031823728233576,-0.069675795733929,-0.053627096116543],[0.020741522312164,-0.018305061385036,-0.062178693711758],[0.011304210871458,0.014218490570784,0.036103829741478]],[[0.025993203744292,-0.059413269162178,0.0038736730348319],[0.016769396141171,-0.055481716990471,0.053353291004896],[-0.023024741560221,-0.047530073672533,0.016606144607067]],[[-0.05584366992116,0.060960926115513,0.0058183008804917],[0.062047932296991,-0.032322030514479,-0.10000974684954],[-0.10232011973858,-0.063346594572067,-0.0083451187238097]],[[-0.046879101544619,-0.0057054804638028,-0.034955944865942],[0.03065968491137,-0.035001080483198,0.022855412214994],[0.047273583710194,0.012283747084439,0.042122114449739]],[[-0.030850373208523,-0.045479379594326,-0.11941216886044],[-0.035498153418303,-0.054933868348598,-0.017964452505112],[0.10210095345974,0.077807694673538,-0.036894429475069]],[[0.03724792227149,0.05676706507802,-0.032371062785387],[0.0015292377211154,0.080406449735165,0.011769166216254],[-0.028036069124937,-0.034544955939054,-0.083285138010979]],[[0.014704785309732,-0.0099157495424151,0.060655232518911],[-0.016000472009182,-0.0008892931509763,-0.046207200735807],[-0.027697706595063,-0.068532764911652,0.045392766594887]],[[-0.028155513107777,-0.13369578123093,-0.044090855866671],[-0.016523439437151,-0.016749199479818,0.030927395448089],[-0.053815651684999,0.017278388142586,0.037843447178602]],[[0.080382764339447,-0.069950729608536,-0.086969949305058],[0.033109243959188,0.00071611994644627,0.029561303555965],[-0.008816197514534,0.0059689064510167,-0.047461275011301]],[[-0.030676124617457,-0.10266175866127,-0.02275637164712],[-0.040865067392588,0.010228929109871,0.039805717766285],[-0.052806351333857,0.072161585092545,0.046029560267925]],[[-0.074531026184559,-0.11503133922815,-0.0097964275628328],[0.020460173487663,0.025982491672039,-0.033613946288824],[-0.021389136090875,0.06556536257267,-0.018726203590631]],[[0.046532511711121,-0.0027316072955728,0.023536840453744],[-0.035345066338778,0.021543368697166,0.015473057515919],[-0.0022484129294753,-0.052136585116386,-0.021924598142505]],[[-0.055071972310543,-0.14608214795589,0.056002788245678],[0.0083418432623148,0.046069040894508,0.063009925186634],[0.024188350886106,0.0089522441849113,-0.013553954660892]],[[0.0046817199327052,-0.0040913079865277,-0.060362935066223],[-0.017086554318666,0.087111465632915,0.0031812614761293],[0.02406725473702,-0.040499970316887,-0.0054791835136712]],[[-0.046771787106991,0.018014255911112,0.035870369523764],[-0.022192444652319,0.045921590179205,-0.035950712859631],[0.040190976113081,-0.0058556827716529,-0.042578246444464]],[[0.058089435100555,-0.027017634361982,0.012242053635418],[-0.078520119190216,-0.0074995215982199,-0.019456103444099],[0.018150484189391,-0.0054410612210631,0.012595455162227]],[[-0.032222416251898,-0.025140346959233,-0.06970851868391],[0.12022563815117,-0.0083999633789062,0.0090064769610763],[0.09174095839262,0.016626009717584,-0.038210950791836]],[[-0.04853679984808,0.0023218996357173,-0.026402233168483],[-0.15386775135994,-0.049361936748028,0.020362332463264],[-0.035969417542219,-0.024123247712851,0.0059100552462041]],[[0.098965100944042,0.038119308650494,0.081152886152267],[0.033166419714689,0.070281952619553,-0.044135086238384],[0.12064446508884,0.072670131921768,-0.058164525777102]],[[-0.056122176349163,0.0059964614920318,0.096831224858761],[-0.062732756137848,0.0059739802964032,0.020827181637287],[-0.099659256637096,0.10175564140081,-0.041454344987869]],[[0.050827663391829,0.049065455794334,0.012046303600073],[-0.097088418900967,0.025187412276864,-0.083902105689049],[0.085985250771046,-0.064621455967426,0.017314868047833]],[[0.070110768079758,-0.048366982489824,-0.050372384488583],[0.01295530796051,-0.070964403450489,-0.033783506602049],[-0.028845377266407,-0.050276465713978,0.032211426645517]],[[0.026740483939648,0.15057906508446,0.02042243629694],[0.025802532210946,-0.010861575603485,0.091760158538818],[-0.11796101927757,0.049747560173273,-0.0099271051585674]],[[-0.036902338266373,0.027429344132543,-0.0030440513510257],[-0.088423483073711,-0.021058367565274,-0.056913550943136],[0.063077673316002,0.039143469184637,-0.018647514283657]],[[0.079618155956268,0.019923325628042,0.056744188070297],[-0.044224970042706,-0.10032100230455,-0.012797850184143],[-0.085153728723526,0.078567624092102,0.023114645853639]],[[0.022761978209019,0.036347359418869,-0.039485212415457],[-0.046654775738716,-0.064898699522018,-0.054858800023794],[0.076643258333206,-0.043633244931698,-0.19596606492996]],[[-0.028568428009748,0.1015762463212,-0.086894549429417],[0.080100797116756,-0.015426347032189,-0.046377632766962],[-0.0044042263180017,-0.02058700658381,0.013265774585307]],[[-0.023063454777002,-0.06912761926651,-0.050491396337748],[0.016674468293786,0.064917765557766,-0.0058576436713338],[0.067504875361919,0.044107899069786,0.014944925904274]],[[0.034724622964859,-0.038430511951447,0.031342275440693],[0.067567624151707,-0.014387332834303,-0.053173433989286],[0.080352805554867,-0.016332918778062,-0.0092622609809041]],[[0.015223859809339,0.0033411171752959,0.046652663499117],[-0.02001747302711,0.049850385636091,0.075611963868141],[0.064582876861095,0.13329036533833,0.032634235918522]],[[-0.0075648678466678,-0.036413244903088,-0.022233672440052],[-0.014108452945948,0.00078792637214065,-0.01762043312192],[0.020496850833297,0.05224721133709,-0.0038988210726529]],[[-0.059307813644409,0.081351891160011,0.045493423938751],[-0.025805700570345,0.014107518829405,0.0052741067484021],[-0.048854168504477,-0.0093770995736122,0.0087970662862062]],[[0.066595241427422,0.016076240688562,0.037055846303701],[0.0030875455122441,0.049544282257557,0.017993209883571],[-0.023986449465156,-0.091602087020874,-0.10621252655983]],[[0.042906068265438,-0.043215245008469,0.011267093010247],[0.066512614488602,-0.066098101437092,-0.020854664966464],[0.067307732999325,-0.064107015728951,0.052899103611708]],[[-0.0024999917950481,0.040446102619171,-0.053477510809898],[-0.031021568924189,0.074249528348446,-0.040969483554363],[-0.037805553525686,-0.06586754322052,0.015369621105492]]],[[[-0.0022745744790882,-0.027914037927985,-0.039099015295506],[0.059837784618139,-0.081109918653965,-0.041666191071272],[-0.069235131144524,0.006783870048821,-0.016235584393144]],[[-0.017390454187989,-0.010937222279608,-0.071581199765205],[0.14209426939487,-0.022453399375081,-0.13228936493397],[-0.0084162866696715,0.08771675825119,0.0014472802868113]],[[0.048452254384756,0.051163092255592,-0.029162254184484],[0.10508279502392,0.15657982230186,0.027322828769684],[0.039605837315321,0.021821467205882,-0.032221160829067]],[[-0.01469072047621,0.06649649143219,0.016616802662611],[0.011803845874965,0.071707509458065,-0.051150850951672],[0.027766296640038,0.058187153190374,-0.02037593908608]],[[0.041957970708609,-0.022523621097207,-0.013028107583523],[0.05417525395751,-0.0016678038518876,0.0223497916013],[-0.035949282348156,0.086087368428707,-0.01556237693876]],[[0.0083431489765644,-0.046283032745123,-0.068929605185986],[-0.050198383629322,0.12063267081976,-0.065802007913589],[0.05268095061183,-0.12284545600414,0.079094178974628]],[[-0.0539082698524,-0.068370096385479,0.019114462658763],[0.057966642081738,-0.036191675812006,-0.039522353559732],[0.064057178795338,0.11654192209244,0.050511978566647]],[[0.013447586447001,-0.068792544305325,0.0033619441092014],[-0.0092418733984232,-0.020862031728029,0.053848624229431],[0.017127461731434,-0.032135028392076,0.062130603939295]],[[0.048269681632519,-0.015105670318007,0.049663092941046],[-0.0015020238934085,-0.079101920127869,-0.0091905472800136],[-0.018596228212118,0.0077203679829836,0.10673040896654]],[[-0.10419668257236,-0.037693455815315,0.040029492229223],[0.049487292766571,-0.048236913979053,-0.019291626289487],[-0.01611178740859,-0.048443749547005,0.018154960125685]],[[-0.0018248105188832,0.066961161792278,-0.0045858179219067],[-0.031395494937897,0.017362337559462,0.0071016252040863],[-0.043352100998163,-0.0041083227843046,-0.016327571123838]],[[-0.028681898489594,0.030234690755606,-0.02431826107204],[-0.021067276597023,-0.11358952522278,0.004504902753979],[-0.059965547174215,0.062045253813267,-0.084623724222183]],[[-0.013318313285708,-0.013626601547003,0.0083187902346253],[0.08512457460165,0.10400485992432,0.051528759300709],[-0.066962391138077,-0.042381145060062,0.024254074320197]],[[0.057345096021891,0.028574101626873,0.023276897147298],[0.046049620956182,-0.0039714490994811,-0.015027655288577],[0.013054525479674,-0.030102893710136,0.031565260142088]],[[-0.018838031217456,0.033901207149029,-0.0087739499285817],[-0.047886878252029,-0.0078528439626098,0.013628740794957],[0.030943416059017,-0.051858589053154,-0.010797519236803]],[[0.028326628729701,0.089591287076473,0.097574278712273],[-0.022643901407719,-0.0046931677497923,0.07354848831892],[0.016830628737807,0.073014989495277,0.0038527331780642]],[[0.016549004241824,-0.02696574293077,-0.091552719473839],[-0.0017845699330792,-0.0022298486437649,0.0033846567384899],[0.050139710307121,0.029269758611917,0.10970547795296]],[[0.016042560338974,0.010882394388318,0.0030155770946294],[0.014113885350525,-0.027059301733971,-0.012147660367191],[0.10153932124376,0.090031616389751,0.033522456884384]],[[0.082727588713169,0.028436709195375,-0.030000546947122],[-0.12735982239246,0.042416032403708,0.017521383240819],[0.027089491486549,0.0090820239856839,0.009311355650425]],[[0.010348920710385,0.049586489796638,-0.02090891264379],[0.03319875523448,-0.0038042049854994,-0.034039303660393],[0.00038293015677482,0.0098574468865991,-0.064157173037529]],[[-0.0098086185753345,0.069769449532032,0.079466573894024],[0.032201264053583,0.063718654215336,-0.044157072901726],[0.027973052114248,-0.0064790491014719,-0.045623376965523]],[[0.11522287875414,-0.053577560931444,0.00065367738716304],[0.023087844252586,0.04687512293458,0.013874595984817],[0.11255846917629,0.092039421200752,0.059320438653231]],[[0.014440367929637,0.033794816583395,0.032495714724064],[0.068080969154835,-0.078193254768848,0.040209241211414],[0.074361309409142,-0.0056813294067979,0.010586702264845]],[[0.014201103709638,0.095969267189503,0.14490088820457],[0.090566597878933,0.13609175384045,0.060761794447899],[0.11052856594324,-0.0052637527696788,0.084837660193443]],[[-0.03984410315752,0.088118016719818,-0.0021621917840093],[-0.018504180014133,-0.010290278121829,0.00028215418569744],[0.040879618376493,0.010243904776871,0.036121886223555]],[[-0.003473671618849,-0.051233697682619,-0.016171338036656],[0.0062935883179307,-0.047621570527554,-0.010446853004396],[-0.066362202167511,-0.034819286316633,0.03809329867363]],[[0.017048362642527,0.039771925657988,0.061912328004837],[0.052871782332659,0.0056944116950035,0.059923071414232],[0.066795825958252,0.071943134069443,0.017340697348118]],[[-0.00070249830605462,0.030062798410654,-0.039461690932512],[0.033678509294987,0.02740590646863,-0.016749089583755],[0.070480078458786,0.076583608984947,0.056262351572514]],[[-0.029333416372538,0.0061882892623544,0.046985387802124],[-0.039528850466013,-0.032479602843523,0.033139426261187],[0.01162844710052,0.020668590441346,-0.019550880417228]],[[-0.013308794237673,0.0030918407719582,-0.049289245158434],[0.039537478238344,0.032933183014393,0.03988228738308],[0.025444557890296,0.042421910911798,-0.029744973406196]],[[-0.015856452286243,0.0036347915884107,-0.025166487321258],[0.013943002559245,0.0037325902376324,0.014022193849087],[4.3543437641347e-05,0.011739085428417,0.016163513064384]],[[0.015481608919799,-0.020113216713071,-0.030173322185874],[0.024330582469702,-0.11156491190195,0.013856547884643],[-0.045299600809813,0.0087658315896988,-0.054358124732971]],[[-0.0057155312970281,0.0078493049368262,0.014788821339607],[-0.0074573727324605,-0.041736342012882,-0.034164890646935],[-0.017210038378835,-0.028242964297533,0.016354536637664]],[[0.028555674478412,0.068372510373592,0.078711956739426],[0.040527943521738,0.038445021957159,0.10132985562086],[-0.015235257335007,0.031776789575815,-0.059961885213852]],[[-0.0020562561694533,-0.017971599474549,-0.010063565336168],[-0.0081292130053043,0.02692655660212,-0.099988117814064],[0.0015760994283482,-0.073856107890606,0.010905154049397]],[[-0.11108265817165,-0.03973825275898,0.0049454611726105],[-0.029623536393046,0.053863734006882,0.014111273922026],[-0.013657229952514,-0.019326848909259,0.032388549298048]],[[-0.0046270238235593,0.053202651441097,0.0035195506643504],[-0.036545660346746,-0.029146324843168,0.0085804974660277],[-0.05219067633152,-0.021843483671546,0.0064449147321284]],[[0.043339610099792,0.024420665577054,0.0020160211715847],[0.055705770850182,0.042834229767323,-0.017588114365935],[0.018312307074666,0.043465241789818,7.3761824751273e-05]],[[-0.056877858936787,0.052140790969133,0.014507500454783],[0.008600402623415,0.063491381704807,-0.035848032683134],[-0.12540630996227,0.066754788160324,0.027738027274609]],[[0.057315062731504,0.077058687806129,0.091528102755547],[0.03096123971045,-0.07748032361269,-0.032261107116938],[-0.03886304050684,0.011234951205552,0.10485751181841]],[[0.074156872928143,-0.024780504405499,0.032200302928686],[0.064783580601215,0.071618765592575,0.096778228878975],[0.04966664686799,0.059924438595772,0.036446299403906]],[[-0.026576222851872,-0.018546188250184,-0.071347542107105],[0.022449279204011,-0.020726054906845,-0.058186151087284],[0.097500152885914,0.047876749187708,0.059241659939289]],[[0.017987629398704,0.016510307788849,0.044180497527122],[-0.0053689512424171,0.044156510382891,0.12463815510273],[-0.034333754330873,-0.048640068620443,0.06459304690361]],[[-0.010658520273864,0.013230097480118,-0.13262973725796],[0.059216652065516,-0.066503599286079,-0.018405189737678],[-0.028831264004111,-0.0066128736361861,-0.028038380667567]],[[-0.054294113069773,-0.0067219426855445,-0.00080837763380259],[0.016563208773732,0.025961427018046,0.021185040473938],[0.0028670360334218,0.057572066783905,0.018148396164179]],[[0.0075347675010562,-0.041586063802242,0.010206900537014],[-0.085302196443081,-0.0074535678140819,-0.028491649776697],[-0.011810825206339,-0.036412749439478,-0.057807691395283]],[[0.023994563147426,-0.094533286988735,-0.025163756683469],[-0.0079453345388174,0.026024866849184,-0.0013110467698425],[-0.016079979017377,0.03070174716413,0.063244894146919]],[[0.021108947694302,-0.019053975120187,0.026198012754321],[0.030776236206293,-0.027291947975755,-0.05146798864007],[0.019134674221277,0.042398206889629,0.1114746555686]],[[-0.068530343472958,0.039989717304707,0.050644811242819],[0.010484546422958,-0.01402136310935,0.058054704219103],[0.0096402633935213,-0.019039172679186,0.073001869022846]],[[0.033057138323784,-0.054402694106102,0.028777381405234],[0.030102543532848,0.04258630797267,0.012625563889742],[0.066428780555725,-0.062863826751709,0.040391374379396]],[[-0.0049276975914836,0.0069169728085399,0.022788228467107],[-0.080379702150822,-0.017095223069191,0.0061494139954448],[-0.023273760452867,-0.023140512406826,0.014220695011318]],[[0.11749669909477,0.095264561474323,0.051469586789608],[0.0068374080583453,0.13452956080437,0.11587719619274],[0.1083846911788,0.072761528193951,0.023217160254717]],[[6.1196013120934e-05,0.099010229110718,-0.038225267082453],[0.039248395711184,-0.048664130270481,-0.020775495097041],[0.036936577409506,0.036974959075451,0.045136548578739]],[[-0.085626661777496,-0.039512790739536,-0.0077900309115648],[0.044662952423096,-0.0099384011700749,-0.062748290598392],[-0.035173542797565,-0.081773295998573,-0.10054068267345]],[[0.031640104949474,0.0071955709718168,0.027708875015378],[0.0096702799201012,-0.011507434770465,0.051955439150333],[0.03709951043129,-0.022418834269047,0.11618023365736]],[[-0.045043084770441,0.019037656486034,-0.05443362146616],[0.011599860154092,-0.048361495137215,-0.027333792299032],[-0.030288403853774,-0.014687646180391,0.051098179072142]],[[0.053076039999723,-0.033837124705315,0.011115118861198],[0.019031617790461,-0.065871365368366,-0.070586524903774],[0.095115385949612,-0.05290712416172,0.019090613350272]],[[0.0055911941453815,0.036367360502481,-0.048060942441225],[0.030847942456603,0.051714591681957,-0.0036672770511359],[0.01273987442255,-0.012814587913454,-0.014760421589017]],[[0.055387686938047,0.077888518571854,0.10340506583452],[0.047271631658077,-0.055333085358143,0.020873658359051],[0.056047931313515,0.067255474627018,0.14154416322708]],[[-0.050865471363068,0.035137910395861,0.011382320895791],[-0.019953353330493,0.14617969095707,0.022947052493691],[-0.060933921486139,-0.036786876618862,-0.058078344911337]],[[0.06417478621006,0.020099679008126,-0.042392123490572],[-0.0030729582067579,0.00017185480101034,-0.070562183856964],[0.018059462308884,-0.075963638722897,-0.11292520165443]],[[0.0025987690314651,0.020831823348999,-0.026487039402127],[-0.039739448577166,0.019882190972567,-0.021583743393421],[-0.048594262450933,0.010538027621806,0.1196731030941]],[[0.027674606069922,-0.018784420564771,0.010015725158155],[0.0092222485691309,0.054225623607635,0.080326586961746],[0.05436198040843,-0.017973396927118,0.059813894331455]],[[-0.021337062120438,-0.050682611763477,0.02713106200099],[-0.055540908128023,0.028581714257598,0.068121388554573],[-0.003040254348889,0.032256297767162,0.052161570638418]]],[[[0.037029460072517,-0.040012076497078,-0.026787919923663],[-0.052662085741758,0.043104469776154,-0.12090821564198],[0.024446282535791,-0.076533436775208,0.024328123778105]],[[-0.11290749907494,-0.04446567595005,-0.031620137393475],[-0.00066558923572302,0.021738590672612,0.10158153623343],[0.022797048091888,-0.044015862047672,0.059873525053263]],[[0.033285614103079,-0.098736189305782,-0.016297690570354],[0.046318456530571,-0.14979200065136,0.011064369231462],[-0.098910309374332,-0.0095073375850916,-0.1153255328536]],[[-0.019246194511652,0.017371192574501,0.0042541027069092],[-0.20552450418472,-0.062059093266726,0.0061777271330357],[-0.11185398697853,0.028588140383363,0.0073152747936547]],[[-0.096850745379925,-0.075758166611195,0.020353524014354],[-0.045307468622923,-0.0080674141645432,0.025555161759257],[-0.02761160954833,-0.0084106791764498,0.0063736452721059]],[[-0.020584536716342,0.10746227949858,-0.056103184819221],[-0.036853119730949,-0.086644142866135,0.052347503602505],[-0.0051303920336068,0.049679387360811,-0.0097327530384064]],[[-0.049654435366392,-0.1572649627924,-0.031220342963934],[0.010214910842478,-0.011820956133306,-0.081961281597614],[0.0086440006271005,0.051782220602036,0.020141275599599]],[[-0.060291115194559,0.0084822149947286,0.02441911585629],[-0.087811514735222,-0.0036316236946732,-0.021164717152715],[-0.01917483843863,-0.042405519634485,0.0039516547694802]],[[0.045207094401121,-0.020069647580385,-0.032969869673252],[0.039223335683346,0.027443682774901,0.052906345576048],[-0.033426761627197,-0.054502744227648,-0.032639522105455]],[[0.071651369333267,-0.028020648285747,-0.034011974930763],[-0.028984548524022,0.019900461658835,-0.025467393919826],[-0.0017210618825629,-0.083326064050198,0.0031073563732207]],[[-0.030834011733532,0.0081303277984262,0.033969156444073],[0.029954459518194,-0.060313083231449,-0.087019644677639],[0.023806538432837,0.05073319748044,0.045743465423584]],[[-0.015662649646401,-0.079821534454823,0.035793796181679],[-0.066008828580379,-0.016943074762821,-0.032436560839415],[0.088801674544811,0.093356877565384,0.066525816917419]],[[-0.021763864904642,-0.070463217794895,0.057253196835518],[-0.032849948853254,0.06210221350193,-0.026788773015141],[0.058826945722103,-0.052712205797434,0.04744516685605]],[[0.057243868708611,-0.040806133300066,-0.10115503519773],[0.11418104916811,0.10456147789955,0.09397179633379],[-0.071781322360039,-0.0089641837403178,-0.0043330020271242]],[[-0.076560743153095,0.0071367458440363,-0.0043014204129577],[-0.13100120425224,-0.028218828141689,-0.009569900110364],[-0.10560297220945,0.044250145554543,-0.00054300017654896]],[[-0.07143010944128,-0.0023723568301648,-0.006372481584549],[0.038909014314413,0.06163789704442,-0.0053807031363249],[0.044313527643681,-0.02830383554101,-0.01289888843894]],[[-0.065066613256931,-0.10768552869558,0.014230032451451],[0.11082693934441,-0.0034126557875425,-0.040738914161921],[0.022062890231609,-0.054154422134161,-0.12185674160719]],[[0.012239383533597,0.016462219879031,-0.06464833766222],[0.079842947423458,-0.00010686845052987,-0.050799608230591],[-0.059929229319096,-0.20913890004158,0.012947650626302]],[[0.043000899255276,-0.083092823624611,-0.04908749461174],[-0.083748176693916,-0.0040795286186039,-0.046527996659279],[-0.060422949492931,0.10717545449734,-0.028390070423484]],[[-0.041020698845387,0.090288229286671,0.040421199053526],[-0.00096296577248722,0.0030458986293525,-0.037817053496838],[0.031315568834543,-0.04077710211277,0.0015623823273927]],[[-0.02974951826036,-0.15372475981712,-0.086378820240498],[-0.014302236959338,0.02806636877358,-0.017738992348313],[0.055591773241758,0.057203102856874,0.020522210747004]],[[0.12291687726974,0.0064619407057762,0.04024987667799],[0.065596073865891,-0.060859948396683,-0.0090062199160457],[0.043026525527239,-0.036150828003883,-0.084705486893654]],[[-0.014316620305181,-0.029749752953649,0.056819416582584],[0.055907983332872,0.10492333769798,-0.052878394722939],[-0.0095326947048306,-0.054582931101322,-0.060618408024311]],[[-0.0029003594536334,0.045098707079887,0.16861864924431],[-0.044321518391371,0.10373349487782,-0.046113733202219],[-0.046599611639977,0.12811723351479,-0.1233099475503]],[[-0.022896168753505,0.013797892257571,-0.090574257075787],[-0.087861016392708,0.05922057107091,-0.022914016619325],[-0.0083593456074595,0.080151632428169,0.050287049263716]],[[0.038896255195141,0.039269525557756,-0.021424209699035],[-0.037706036120653,-0.082887798547745,-0.038019981235266],[0.0088404389098287,0.0066313184797764,0.024470046162605]],[[-0.10069237649441,0.0096815275028348,0.017605647444725],[-0.0044135097414255,-0.068376921117306,-0.0060983267612755],[0.05328905954957,0.022961603477597,-0.030343243852258]],[[0.034859582781792,0.05809485539794,-0.01835061237216],[0.032806761562824,-0.045932855457067,-0.0022230346221477],[0.023214036598802,0.026295807212591,-0.064513362944126]],[[-0.11335626244545,-0.021484715864062,-0.02023190818727],[0.097868151962757,0.029034627601504,0.10401985794306],[-0.081078909337521,-0.0004414105496835,-0.037803251296282]],[[0.0439118668437,-0.053861141204834,-0.11462268233299],[0.047354392707348,0.036125347018242,-0.05198859795928],[-0.027045296505094,-0.06789368391037,-0.032940592616796]],[[0.018229231238365,-0.026562796905637,0.031610917299986],[0.0015927416970953,-0.074705474078655,-0.016271032392979],[-0.020649710670114,-0.025551594793797,-0.03884157538414]],[[0.050909854471684,-0.064345255494118,-0.071272231638432],[0.043584279716015,0.010397638194263,-0.082490712404251],[-0.079719111323357,0.085119932889938,-0.030483124777675]],[[-0.005529556889087,-0.024756770581007,0.0077555263414979],[-0.024413155391812,0.01246340200305,-0.041205666959286],[-0.023876521736383,-0.0045481421984732,-0.037789918482304]],[[0.012089726515114,-0.011465079151094,-0.035116899758577],[0.10372242331505,-0.012059506028891,-0.036252666264772],[-0.016384340822697,0.060850601643324,-0.03618286550045]],[[0.019586654379964,0.10330242663622,0.0091731054708362],[-0.014375223778188,0.033572003245354,0.020147604867816],[-0.037347756326199,-0.011599458754063,0.039708741009235]],[[0.061156172305346,0.039930682629347,0.010381664149463],[-0.026844318956137,0.027763687074184,0.0082936659455299],[0.067302361130714,-0.022566210478544,-0.016501596197486]],[[0.017511619254947,0.012019028887153,-0.039098247885704],[0.06151382252574,-0.0038577420637012,-0.076810590922832],[0.022842833772302,-0.086843848228455,-0.024458540603518]],[[-0.059473935514688,0.046210955828428,-0.019777638837695],[0.013056930154562,0.040313605219126,-0.026941468939185],[-0.07724254578352,-0.028636917471886,0.0086205191910267]],[[-0.16923005878925,-0.026562698185444,-0.058322675526142],[-0.0013139975490049,-0.0022906747180969,0.055895853787661],[-0.042826324701309,0.082373693585396,0.12269687652588]],[[0.00033087364863604,-0.11805425584316,-0.035980302840471],[0.11329378932714,0.08488280326128,0.032122857868671],[0.0016488204710186,0.097511291503906,0.018508208915591]],[[0.027105866000056,-0.029582045972347,-0.026279712095857],[0.05702131614089,0.02448957785964,-0.045311063528061],[-0.049358315765858,-0.010467262007296,-0.0083316853269935]],[[-0.029702439904213,0.058056399226189,0.00028609804576263],[-0.034125559031963,-0.038095220923424,-0.059052888303995],[-0.037378814071417,0.057789959013462,-0.10551140457392]],[[-0.0033313594758511,-0.023795837536454,0.012974241748452],[0.0194386318326,0.0071004992350936,0.096223913133144],[0.09019910544157,-0.095044553279877,-0.072069615125656]],[[-0.098084151744843,0.018232392147183,0.016603287309408],[0.10361069440842,-0.048479054123163,-0.0007418321329169],[0.037000447511673,-0.053574908524752,0.056173611432314]],[[0.0076739573851228,-0.016004798933864,-0.021664714440703],[-0.042973175644875,-0.0070628267712891,-0.069859676063061],[0.040034260600805,-0.062902338802814,0.0058517367579043]],[[0.065965719521046,0.011218765750527,0.041290633380413],[0.0025389359798282,-0.02851590514183,0.030990278348327],[0.0083810752257705,0.058520257472992,-0.10817918181419]],[[0.012137214653194,0.026683794334531,-0.021159160882235],[0.034367151558399,-0.006985867395997,-0.070634283125401],[-0.081509180366993,-0.0047281319275498,-0.067028909921646]],[[0.099148809909821,-0.068426579236984,-0.0037046130746603],[0.007232072763145,0.16091597080231,-0.057500567287207],[-0.040569715201855,0.14598312973976,0.1189698651433]],[[0.028892980888486,0.0050653680227697,-0.036297399550676],[-0.0096028605476022,0.076009348034859,0.085234351456165],[-0.024099852889776,0.017261583358049,-0.014435241930187]],[[0.00092630903236568,-0.069358848035336,-0.1019177660346],[-0.082215517759323,-0.023076647892594,-0.02967045456171],[0.11186939477921,0.040988586843014,-0.073726147413254]],[[-0.0038467608392239,0.037961639463902,-0.0055604763329029],[-0.011813473887742,0.044541366398335,-0.005224883556366],[-0.073029942810535,0.010808347724378,-0.02120765298605]],[[0.086938209831715,0.14032471179962,0.021134816110134],[0.08376669883728,0.063362121582031,0.022848734632134],[0.036983773112297,-0.045670185238123,0.024593245238066]],[[0.036254521459341,-0.044186316430569,-0.060988489538431],[0.051247216761112,0.055773243308067,-0.10014471411705],[-0.081150464713573,0.0060849748551846,-0.017476532608271]],[[0.010319497436285,-0.020736014470458,-0.043758302927017],[0.045175060629845,0.042338956147432,0.021970190107822],[-0.067273616790771,-0.071240924298763,-0.031495545059443]],[[-0.02947087213397,0.068454027175903,-0.05815114825964],[0.03028616309166,-0.080469593405724,-0.060189627110958],[-0.073937982320786,0.049968227744102,-0.056683965027332]],[[0.051714885979891,0.11802550405264,0.017128672450781],[0.10573956370354,0.0085754711180925,-0.05067141354084],[-0.0041143000125885,-0.0030716753099114,-0.047510158270597]],[[0.015542973764241,-0.0066753858700395,0.014008976519108],[0.0067090941593051,0.057518672198057,-0.025330858305097],[-0.027039188891649,0.025116413831711,0.021594570949674]],[[-0.0093964450061321,0.0466631911695,0.020052397623658],[-0.0057315356098115,0.010542548261583,-0.032018039375544],[-0.030838880687952,-0.0583212710917,0.052648674696684]],[[0.04049564152956,-0.0061641470529139,0.050652999430895],[0.018679955974221,-0.12710267305374,-0.018146747723222],[0.086093060672283,-0.013043736107647,0.11174557358027]],[[0.011683804914355,-0.045088455080986,-0.039014752954245],[0.0052415356040001,0.024642027914524,0.030977537855506],[-0.0026966566219926,-0.0079423356801271,0.035980261862278]],[[-0.09141156822443,-0.046512767672539,0.0043835183605552],[-0.023403745144606,-0.047720137983561,0.006455501075834],[-0.026609947904944,0.0056185466237366,-0.030677940696478]],[[0.063643150031567,0.017868192866445,0.00082423619460315],[-0.036188416182995,-0.066927321255207,-0.011170921847224],[-0.053987767547369,-0.0047454410232604,-0.074572332203388]],[[-0.10831085592508,0.021580452099442,-0.0012966247741133],[0.098685964941978,0.0090634534135461,-0.084748521447182],[0.013725450262427,0.079060412943363,0.022227600216866]],[[0.0082853101193905,0.043032042682171,0.020809628069401],[-0.03410679474473,-0.061572209000587,0.024547310546041],[0.01786407828331,-0.079392574727535,-0.027520453557372]]],[[[-0.041200496256351,-0.036202050745487,-0.067487366497517],[-0.05823440849781,0.011370395310223,0.0098095033317804],[0.038808569312096,0.011019172146916,-0.046850472688675]],[[0.0071635255590081,0.055322665721178,0.059451166540384],[-0.048296377062798,0.031009813770652,0.016348434612155],[-0.032523427158594,-0.015176720917225,-0.08450710773468]],[[-0.039990279823542,-0.018846150487661,-0.031846936792135],[-0.019966024905443,0.010765844024718,-0.030092550441623],[-0.049900189042091,-0.0077531551942229,-0.014794326387346]],[[-0.14531707763672,-0.079061813652515,-0.019563058391213],[-0.10635662078857,0.03626587241888,-0.0010845025535673],[-0.016086744144559,-0.0011555429082364,-0.058330494910479]],[[0.0033392631448805,0.095106266438961,0.025924252346158],[-0.013579919934273,-0.037701588124037,-0.044897820800543],[0.058051001280546,0.078768290579319,-0.0020185068715364]],[[0.0012380321277305,-0.023038122802973,-0.0079507324844599],[-0.0032222527079284,-0.085151940584183,0.14480908215046],[0.063271932303905,0.018183961510658,0.11330775916576]],[[-0.01177298091352,0.024936810135841,0.074326083064079],[0.0078059672378004,0.06277023255825,-0.065823584794998],[0.080127626657486,0.061766277998686,-0.0017273997655138]],[[0.043951280415058,-0.0093733863905072,0.017111595720053],[0.013953096233308,0.062689058482647,0.00080097134923562],[0.025536864995956,-0.029135996475816,-0.010133655741811]],[[0.010417211800814,-0.015297147445381,-0.11127782613039],[0.014921998605132,-0.013595360331237,-0.087303638458252],[0.010499640367925,0.021100763231516,0.085593774914742]],[[-0.00034582926309668,-0.071950308978558,0.022048115730286],[0.008003449998796,-0.062559150159359,-0.046607177704573],[-0.019946616142988,-0.068318881094456,-0.01076084561646]],[[0.036299630999565,0.011019972153008,0.0014798240736127],[-0.040824331343174,0.043918263167143,0.0099203996360302],[-0.09208806604147,0.0762724801898,0.0088232485577464]],[[0.048466686159372,-0.046861749142408,-0.0093522006645799],[0.0092910900712013,0.060541417449713,0.010647404007614],[-0.016250137239695,-0.031353853642941,-0.043443758040667]],[[-0.07956575602293,0.065365791320801,-0.018207482993603],[-0.024473087862134,-0.097391620278358,-0.051215633749962],[-0.055043820291758,-0.11114095151424,-0.06432631611824]],[[0.029464183375239,-0.10457476973534,0.030772745609283],[-0.045002814382315,0.024403749033809,0.021783847361803],[0.018938841298223,0.029392462223768,0.0031793022062629]],[[-0.063571505248547,0.088204503059387,-0.0064850528724492],[-0.021651562303305,0.013159282505512,-0.02359670586884],[0.067747607827187,-0.12832561135292,-0.044316455721855]],[[0.077619358897209,0.066557250916958,-0.079822286963463],[0.044560588896275,0.0037448243238032,-0.030042754486203],[0.04723209515214,0.085003435611725,-0.088287100195885]],[[0.064496792852879,0.065666981041431,-0.10004938393831],[0.0022222918923944,-0.0077852695249021,-0.095249831676483],[0.063997000455856,0.092380486428738,0.0085767433047295]],[[-0.0977997854352,-0.012853046879172,-0.03482872992754],[0.064339503645897,-0.055334251374006,-0.059959895908833],[-0.0012349850730971,-0.048212736845016,-0.050692182034254]],[[0.022831760346889,-0.069884434342384,-0.060556784272194],[0.028249684721231,-0.067202128469944,-0.048398077487946],[-0.058265566825867,-0.057127587497234,-0.034505750983953]],[[-0.019836109131575,-0.054404530674219,0.056458607316017],[-0.068525470793247,-0.033277232199907,0.061141449958086],[-0.054468132555485,0.050439771264791,0.071774840354919]],[[0.010875671170652,-0.10477421432734,0.04184490069747],[-0.024935491383076,-0.034561205655336,-0.054696720093489],[-0.021524824202061,-0.038583137094975,-0.14152391254902]],[[-0.048374898731709,-0.027300588786602,0.0657789260149],[-0.098065249621868,-0.20737420022488,0.010565521195531],[-0.0079415235668421,0.040457487106323,-0.11368399113417]],[[-0.057493649423122,-0.0070804674178362,-0.074160024523735],[-0.040904644876719,-0.06078889593482,-0.077934503555298],[-0.13545270264149,-0.050285048782825,0.003794189542532]],[[0.090500749647617,0.04063893482089,0.018974704667926],[-0.020067514851689,-0.0091406712308526,-0.039054770022631],[0.079174235463142,0.0026421605143696,0.06377051025629]],[[-0.06445674598217,-0.018765842542052,0.050323352217674],[-0.065451174974442,0.05131334066391,-0.0087158866226673],[0.042252190411091,0.049768149852753,-0.039535902440548]],[[-0.041698653250933,-0.054688632488251,0.02226940356195],[-0.076614804565907,-0.015960356220603,0.039577253162861],[-0.042525388300419,-0.022906981408596,0.081946767866611]],[[0.096367552876472,-0.051251824945211,0.062283594161272],[0.038703169673681,-0.031594455242157,0.081381887197495],[0.031566478312016,0.011834863573313,0.04856288805604]],[[-0.084339760243893,0.05637401342392,0.020019136369228],[-0.05827672034502,-0.10723488032818,0.011496084742248],[-0.078197613358498,-0.10744313150644,-0.070895776152611]],[[0.0069211269728839,0.021879998967052,-0.04428669065237],[-0.010986007750034,-0.033320344984531,-0.026668315753341],[0.011098949238658,-0.06665600836277,0.060722142457962]],[[0.01750160753727,0.016246907413006,-0.056216921657324],[0.02748909406364,0.039589148014784,-0.015007773414254],[5.3954372560838e-05,0.024248067289591,0.079161323606968]],[[0.08009335398674,-0.034931488335133,0.1440297216177],[0.026765210554004,-0.028743153437972,0.0096460087224841],[0.061234690248966,-0.024106297641993,-0.10703927278519]],[[-0.08836505562067,0.072421014308929,-0.030183473601937],[-0.067490972578526,0.028672294691205,-0.056353110820055],[0.026048822328448,0.068784937262535,0.03200289607048]],[[-0.00018637061293703,-0.042236741632223,0.00099163362756371],[0.032720100134611,-0.039843428879976,-0.081340312957764],[0.054738741368055,-0.00276397773996,-0.092450581490993]],[[0.018393266946077,-0.087475560605526,-0.062464848160744],[-0.026773625984788,-0.035822506994009,-0.13223785161972],[-0.08098167181015,-0.11540953814983,0.14498768746853]],[[-0.059926055371761,-0.079262927174568,0.034635711461306],[-0.0057395622134209,-0.029319746419787,-0.01328185852617],[-0.0052966875955462,0.038776725530624,-0.031157108023763]],[[0.028859658166766,0.019656183198094,-0.0059376005083323],[-0.017302459105849,-0.059960819780827,-0.024047654122114],[-0.014928162097931,0.0039712116122246,0.0093490397557616]],[[-0.019404530525208,0.01017355080694,-0.013407441787422],[-0.041951600462198,-0.031752191483974,0.0373759791255],[-0.059604652225971,-0.036421205848455,-0.011778775602579]],[[-0.048014041036367,-0.032279554754496,-0.068454310297966],[-0.042689111083746,0.031894292682409,0.021750912070274],[0.033188380300999,-0.076940514147282,-0.002488432219252]],[[-0.21221262216568,-0.20486861467361,-0.0097389733418822],[-0.006510597653687,-0.1417513936758,-0.066682584583759],[-0.018952706828713,0.033148307353258,-0.03435680270195]],[[-0.013282232917845,-0.047801304608583,0.020950227975845],[-0.022824458777905,-0.067802831530571,0.1032191067934],[0.053512629121542,-0.0059002321213484,0.046878181397915]],[[-0.081676654517651,-0.039108160883188,0.0093943374231458],[0.0014894205378368,-0.11446700245142,0.022667644545436],[0.034805204719305,-0.014780950732529,0.046214256435633]],[[-0.031326849013567,-0.024586617946625,0.064778715372086],[-0.0070782424882054,-0.11116303503513,-0.01649191044271],[0.028680372983217,0.015215910039842,-0.13728795945644]],[[-0.011346459388733,-0.0032621046993881,-0.025149617344141],[-0.010741203092039,0.042955920100212,0.00075632269727066],[-0.0016541399527341,-0.014478767290711,-0.078115276992321]],[[-0.067014493048191,0.0036682821810246,0.0024172640405595],[-0.14585837721825,-0.018467865884304,-0.16773799061775],[-0.025423903018236,-0.1169241219759,-0.05498955026269]],[[-0.012878361158073,0.075224712491035,-0.044041100889444],[-0.031720817089081,-0.091406628489494,-0.075054034590721],[-0.032893761992455,-0.067902110517025,-0.04953296482563]],[[-0.017928298562765,-0.082894161343575,-0.10913049429655],[0.10259555280209,-0.10032445192337,-0.026061547920108],[0.049906779080629,0.1011238694191,0.01112640183419]],[[-0.047604966908693,-0.043351732194424,-0.074668377637863],[-0.017255553975701,0.029772132635117,-0.037840910255909],[0.0034804362803698,0.078603848814964,0.063460692763329]],[[0.039132058620453,-0.0012196110328659,0.12678565084934],[-0.062533661723137,-0.090602710843086,0.14002810418606],[-0.10670245438814,-0.18286846578121,-0.04557666182518]],[[0.05240834876895,-0.0043995943851769,-0.040275938808918],[0.060888156294823,-0.067877925932407,-0.026035141199827],[0.011877099052072,-0.07162544131279,-0.11035109311342]],[[-0.0071662832051516,-0.016829779371619,-0.010833819396794],[-0.05509003251791,-0.020893996581435,-0.025968233123422],[-0.033823877573013,-0.011561084538698,-0.030801806598902]],[[0.085236594080925,0.018363211303949,-0.00089623464737087],[0.029785715043545,-0.029409656301141,-0.027558512985706],[-0.03513352945447,-0.045510198920965,-0.06246281042695]],[[0.015485807321966,0.018171437084675,-0.0049400990828872],[0.11138974130154,-0.0062294229865074,-0.023100541904569],[-0.066551133990288,0.0033538499847054,-0.0020660462323576]],[[-0.1107949540019,-0.16370828449726,-0.029051279649138],[0.016497559845448,-0.044724386185408,-0.038467016071081],[-0.0013776711421087,0.021805737167597,0.048677828162909]],[[-0.090142577886581,-0.099614799022675,0.073307573795319],[0.013628686778247,-0.19850043952465,-0.027150938287377],[-0.067535772919655,-0.14820766448975,-0.037585888057947]],[[-0.035920884460211,0.022087000310421,-0.031754270195961],[-0.031991314142942,-0.033871453255415,-0.032041236758232],[-0.072559587657452,-0.026119373738766,-0.04243441671133]],[[0.051566656678915,0.0152967274189,-0.085354499518871],[0.015085841529071,-0.064735643565655,-0.17776156961918],[0.024189710617065,0.013361491262913,-0.050461050122976]],[[-0.06927689909935,0.031349621713161,0.024261523038149],[-0.057457018643618,0.073353335261345,0.022976139560342],[-0.01537786796689,-0.04938417673111,-0.030350867658854]],[[-0.077410347759724,0.0013885373482481,-0.0022191782481968],[-0.019744360819459,0.01148132327944,-0.062569044530392],[-0.11285747587681,-0.053619269281626,-0.089734956622124]],[[0.038346007466316,-0.08819904923439,0.03551884740591],[0.0073766452260315,0.00179187359754,0.03299456089735],[-0.004715733230114,0.017519634217024,-0.026709919795394]],[[-0.016646776348352,0.0073126801289618,-0.031036769971251],[0.010695253498852,0.030196581035852,0.015306951478124],[-0.001108436495997,-0.069135345518589,-0.0019743742886931]],[[-0.064354933798313,-0.046669408679008,-0.15553770959377],[-0.081003166735172,-0.064078457653522,-0.068821288645267],[-0.048189654946327,0.044774781912565,-0.1791670024395]],[[0.0051873307675123,-0.034590311348438,-0.077224053442478],[0.014717668294907,0.098309896886349,-0.078202322125435],[0.052286773920059,0.0058891517110169,-0.11898512393236]],[[0.034565184265375,-0.047603704035282,0.056617643684149],[0.017746511846781,0.030555451288819,0.0066748512908816],[0.010955688543618,0.0039060735143721,0.0049197021871805]],[[-0.011355788446963,0.059599224478006,-0.089503400027752],[0.034784056246281,0.012038524262607,-0.0072837159968913],[-0.059105712920427,-0.012721727602184,-0.007533339317888]]],[[[-0.11519124358892,-0.015799824148417,-0.11163734644651],[-0.0035016862675548,0.10453082621098,-0.015094981528819],[-0.020443845540285,-0.068966075778008,0.069871731102467]],[[-0.036966405808926,0.087492376565933,-0.033593762665987],[-0.0058847637847066,0.1656915396452,0.0024908881168813],[0.012082118541002,0.067859217524529,-0.015429070219398]],[[-0.089145615696907,-0.12277210503817,-0.059478487819433],[-0.011793110519648,-0.06525806337595,0.011852989904583],[0.034837022423744,0.022709712386131,0.082330621778965]],[[0.0033038223627955,-0.034311186522245,-0.026596393436193],[0.027214821428061,0.026808705180883,0.032487243413925],[-0.021966876462102,0.023654229938984,-0.011261117644608]],[[-0.060183584690094,-0.075969785451889,-0.0012986137298867],[0.0062300469726324,0.045088186860085,-0.022835632786155],[-0.028048859909177,0.029888726770878,-0.019043764099479]],[[-0.0058432496152818,-0.03119988553226,-0.017014326527715],[-0.044420421123505,-0.044556047767401,-0.035425893962383],[0.00065579201327637,-0.056122411042452,-0.037784323096275]],[[-0.0060071418993175,-0.025378623977304,-0.0098947901278734],[0.017808265984058,-0.12173865735531,-0.05859012529254],[0.028891673311591,0.029433831572533,-0.0081363124772906]],[[0.017829654738307,-0.0071709351614118,0.047260351479053],[-0.033790245652199,0.097377397119999,0.054038818925619],[0.054533969610929,0.0067984513007104,-0.018328243866563]],[[0.02238928899169,0.034882191568613,0.055825587362051],[-0.10306926816702,-0.028839036822319,0.003651624545455],[0.082664601504803,-0.026399718597531,-0.023015666753054]],[[0.044674031436443,-0.12237787991762,-0.18856920301914],[-0.024780318140984,-0.0096063921228051,0.023242002353072],[-0.071877770125866,-0.044148277491331,0.065715655684471]],[[-0.0010969383874908,-0.016574325039983,-0.045622803270817],[0.029998254030943,-0.047900106757879,0.031419396400452],[-0.056360386312008,0.0091631440445781,0.028229070827365]],[[0.13062836229801,0.024585304781795,-0.082810595631599],[-0.029169483110309,-0.10256550461054,0.093252256512642],[-0.056876767426729,-0.014923973940313,0.034497268497944]],[[-0.0074290931224823,-0.0080628721043468,0.024123108014464],[0.028023650869727,0.0078652016818523,0.038046982139349],[-0.0051805707626045,-0.091890245676041,0.0074446285143495]],[[0.029462678357959,-0.1248596534133,-0.094487778842449],[-0.04525875300169,0.01945193298161,0.12433785945177],[0.0032002157531679,-0.0051819230429828,0.0087058348581195]],[[-0.061168849468231,-0.03283629193902,-0.051772713661194],[-0.016527088358998,0.057532176375389,-0.034206002950668],[-0.014193730428815,0.012613414786756,0.026272596791387]],[[0.04287539049983,-0.051578994840384,0.0092684905976057],[0.017506560310721,0.151960298419,0.042968638241291],[0.015512428246439,0.02011738345027,-0.0057228957302868]],[[0.032982483506203,0.040834542363882,0.0090503115206957],[0.046224370598793,0.040885522961617,0.0017649065703154],[0.006099384278059,0.029024114832282,0.054997451603413]],[[0.055793888866901,0.056784570217133,-0.070895954966545],[0.060610044747591,0.030411761254072,-0.21012742817402],[0.071126580238342,0.10167661309242,-0.014098538085818]],[[-0.069424964487553,-0.05366275832057,-0.0054456316865981],[0.058831945061684,0.058825422078371,-0.066691853106022],[0.0076875751838088,0.022263139486313,0.020077083259821]],[[-0.066639006137848,-0.070511750876904,-0.015303896740079],[-0.016357922926545,-0.0020234845578671,0.065446242690086],[0.023435719311237,0.033758532255888,0.043826039880514]],[[-0.051658514887094,-0.17970095574856,-0.074558489024639],[-0.06021086871624,-0.016137888655066,-0.059055414050817],[0.043847408145666,0.0077169574797153,-0.12406415492296]],[[0.05008190497756,0.043308060616255,-0.035086877644062],[-0.031183095648885,-0.077610656619072,-0.0574711561203],[0.0059312600642443,0.0031419298611581,0.064722761511803]],[[0.018258327618241,0.0096040675416589,-0.048191007226706],[0.010078958235681,0.0095479618757963,-0.062897823750973],[0.0019048232352361,-0.014610530808568,-0.028743227943778]],[[-0.030098291113973,-0.11407180130482,0.034260470420122],[0.19204284250736,-0.0074166944250464,0.19649824500084],[0.070285528898239,-0.062314938753843,-0.030316345393658]],[[0.05395345389843,0.056793507188559,0.062191750854254],[-0.0420724414289,-0.0056282277218997,-0.00233532814309],[0.074147745966911,-0.019956663250923,-0.012768836691976]],[[-0.015796104446054,0.057544372975826,-0.024569071829319],[-0.032210871577263,-0.044919334352016,0.051864385604858],[0.036971267312765,0.024267097935081,0.042148724198341]],[[0.011148325167596,-0.10482862591743,-0.0023340608458966],[-0.04982752725482,0.042266421020031,0.050614923238754],[0.093426056206226,0.0250961240381,0.014546726830304]],[[0.025463363155723,-0.012361420318484,0.026453793048859],[-0.031645350158215,-0.0037977159954607,-0.073463700711727],[-0.012220708653331,-0.030670393258333,0.067890241742134]],[[0.052597369998693,0.01096449047327,-0.015640275552869],[0.022523008286953,0.013184656389058,0.10488038510084],[-0.00074221898103133,-0.038852337747812,-0.076620198786259]],[[0.076171107590199,-0.19527976214886,-0.29015508294106],[-0.046510633081198,-0.1092187166214,0.13161416351795],[0.048406798392534,0.019435029476881,0.0091136563569307]],[[0.06388732790947,-0.094489201903343,0.035217881202698],[-0.08316221088171,-0.053510840982199,-0.027316700667143],[0.10134091973305,0.0098094185814261,0.028923137113452]],[[-0.065629459917545,-0.069618619978428,0.037525653839111],[0.020838221535087,0.0021730365697294,-0.0084888162091374],[0.04500550404191,0.067117631435394,0.023348765447736]],[[-0.050963383167982,0.018432784825563,-0.04094972088933],[-0.038745887577534,-0.01653510145843,-0.02155495248735],[-0.06315290927887,-0.019586557522416,-0.0303990598768]],[[-0.030998853966594,-0.086257264018059,-0.022236533463001],[-0.028901999816298,-0.10201761871576,-0.082126401364803],[-0.013650635257363,-0.10447014868259,-0.063819952309132]],[[-0.036563206464052,-0.087558090686798,-0.045007117092609],[-0.097266308963299,-0.15040382742882,-0.1388965845108],[-0.10652986913919,-0.024736313149333,0.026357006281614]],[[-0.02866142988205,-0.034420091658831,-0.015033927746117],[0.030318379402161,0.0157864484936,0.049899753183126],[0.040462300181389,-0.1010135486722,0.033557526767254]],[[0.01205359492451,0.12943638861179,0.15623654425144],[-0.13894613087177,-0.097189709544182,0.1032055541873],[-0.081581100821495,0.012744979932904,-0.039954267442226]],[[-0.093859605491161,-0.081326469779015,-0.05016478151083],[-0.012932249344885,0.029213480651379,0.058872483670712],[-0.073038712143898,0.05612825602293,-0.040828932076693]],[[-0.058381009846926,-0.068410433828831,-0.12906344234943],[0.043593537062407,-0.0040194182656705,0.13753688335419],[-0.028994347900152,0.013260871171951,0.010593414306641]],[[-0.11662474274635,-0.092554613947868,-0.064095169305801],[0.0023613688535988,0.062564127147198,-0.095175005495548],[0.096038185060024,0.11110114306211,0.036348760128021]],[[0.0099778454750776,-0.030685789883137,-0.081507459282875],[0.017708858475089,-0.1107908859849,-0.01049511320889],[0.041046649217606,0.064439192414284,0.078055180609226]],[[-0.030883356928825,0.047243632376194,0.023405993357301],[-0.10219411551952,-0.014941871166229,0.013567743822932],[-0.12068665772676,0.12990742921829,-0.071385875344276]],[[0.0054522873833776,-0.048338275402784,-0.0066777681931853],[0.059358928352594,-0.028471617028117,-0.015425560064614],[-0.00057994300732389,-0.04953145980835,-0.025654958561063]],[[-0.021105550229549,0.067109555006027,-0.02722492814064],[0.032192248851061,-0.031269881874323,0.014680883847177],[-0.051054526120424,0.029515812173486,-0.085296854376793]],[[0.13937449455261,0.010188794694841,0.0037819249555469],[-0.072869084775448,-0.037752229720354,-0.15989331901073],[-0.05618641525507,-0.033232558518648,-0.020920308306813]],[[0.061511471867561,-0.021147342398763,-0.20810358226299],[0.10797417163849,-0.017756797373295,-0.035672299563885],[0.15948480367661,0.024627750739455,-0.011778717860579]],[[-0.039783366024494,-0.010775594040751,-0.0360152348876],[-0.052949536591768,-0.034133985638618,0.038168735802174],[0.049284685403109,0.057762462645769,0.018637716770172]],[[-0.094650402665138,0.030460629612207,0.037389568984509],[-0.096982903778553,-0.099680177867413,0.060749337077141],[-0.081790700554848,-0.016059532761574,0.030341871082783]],[[-0.0041156192310154,-0.08429291844368,-0.056900691241026],[0.01004855427891,0.031526211649179,0.044141609221697],[0.057360619306564,0.010617575608194,-0.079325251281261]],[[0.078613393008709,-0.11797931790352,0.08209727704525],[-0.10395833849907,-0.17047737538815,-0.0021596874576062],[0.005894813220948,-0.10928765684366,0.0043740128166974]],[[0.04130419716239,-0.0023691218812019,-0.10058201104403],[-0.073591023683548,-0.044733807444572,0.0028650597669184],[-0.014440158382058,-0.011709863319993,-0.017082493752241]],[[-0.034233659505844,0.16969275474548,0.054531287401915],[-0.070508867502213,0.043748140335083,0.021689457818866],[0.015684841200709,0.05417413637042,-0.054011069238186]],[[-0.05873280018568,-0.0051606982015073,-0.062503702938557],[-0.02534375153482,0.0398582033813,-0.029819836840034],[-0.026200011372566,0.010563848540187,0.012207241728902]],[[0.0080734547227621,0.0025642535183579,0.033917136490345],[0.001335532637313,0.079987116158009,-0.069621957838535],[0.020940193906426,-0.077608115971088,-0.057815257459879]],[[-0.068245150148869,-0.040425203740597,-0.12557984888554],[-0.0029375362209976,0.01420428417623,-0.054417654871941],[0.064172469079494,0.028211373835802,-0.018102660775185]],[[-0.041973914951086,0.0087444186210632,0.0026509945746511],[0.038366980850697,0.0092720743268728,0.088888831436634],[-0.045940574258566,0.02663317322731,-0.037763804197311]],[[-0.12236384302378,0.096199244260788,0.013271110132337],[-0.01251086127013,0.0066459863446653,-0.024143308401108],[-0.0362668633461,-0.072034053504467,0.081834554672241]],[[-0.018984071910381,-0.051088217645884,-0.024577232077718],[-0.019111465662718,-0.057959772646427,0.050112962722778],[-0.0099510671570897,-0.010557725094259,-0.17341990768909]],[[-0.072414942085743,0.054165706038475,-0.048131249845028],[0.013466101139784,-0.009157438762486,0.19250081479549],[-0.054581392556429,-0.075133122503757,0.10991127789021]],[[0.089788742363453,0.07589115947485,0.038063000887632],[0.0076250690035522,-0.015176413580775,-0.078878834843636],[-0.038826771080494,-0.042491514235735,-0.05233733355999]],[[-0.093154735863209,-0.025169145315886,0.0044957036152482],[-0.051170472055674,-0.0051419264636934,0.038276251405478],[0.011151826009154,0.010109873488545,0.00057709432439879]],[[0.032199595123529,0.01767698302865,0.063519410789013],[-0.068754523992538,-0.0024020629934967,-0.041456028819084],[0.030974498018622,0.030389966443181,-0.056793119758368]],[[-0.040081795305014,-0.019385462626815,-0.091865442693233],[-0.066357210278511,-0.0078176874667406,0.0035975291393697],[-0.019230149686337,-0.023831874132156,-0.062584146857262]],[[0.055063594132662,-0.16425006091595,-0.13625428080559],[-0.082804024219513,-0.1823386400938,0.051838636398315],[0.011304931715131,-0.026935083791614,0.030760645866394]]],[[[-0.045449111610651,-0.048083264380693,0.003326463047415],[0.056368239223957,-0.082152515649796,0.023308884352446],[-0.11248232424259,-0.087982133030891,-0.06511065363884]],[[0.047779891639948,0.068464070558548,-0.091409459710121],[-0.19648936390877,-0.028696669265628,0.019312074407935],[0.035868749022484,-0.04673258960247,0.09755601733923]],[[-0.10014740377665,-0.015555363148451,0.023591443896294],[-0.054838221520185,-0.099268309772015,-0.081534430384636],[0.050816334784031,-0.032013386487961,-0.000216262837057]],[[-0.063131719827652,0.03129518777132,0.016009464859962],[0.072353959083557,0.0090833716094494,-0.027215974405408],[0.035300496965647,0.037620544433594,-0.086622454226017]],[[0.11751133948565,0.017303394153714,-0.011864075437188],[0.11300905048847,-0.078986577689648,0.066039636731148],[-0.040258295834064,-0.055004999041557,0.0005327868857421]],[[-0.027551995590329,0.078395523130894,0.011056487448514],[-0.11670342832804,-0.035319589078426,0.037461336702108],[-0.012460297904909,0.026334630325437,0.0013496576575562]],[[-0.0083954613655806,-0.0071603767573833,-0.061394851654768],[-0.025635944679379,-0.03395638987422,0.01795644313097],[-0.032453179359436,-0.0087661193683743,-0.0031782989390194]],[[0.034314416348934,0.054854735732079,-0.19013045728207],[0.040744267404079,0.022131402045488,0.069508165121078],[0.03174364566803,0.024729244410992,-0.015993345528841]],[[-0.049926050007343,-0.046992972493172,0.03644385188818],[0.071711711585522,0.063659898936749,-0.095060206949711],[-0.075590372085571,0.12574090063572,-0.00076840160181746]],[[-0.080143734812737,-0.049258321523666,-0.013751379214227],[-0.061011273413897,-0.070171743631363,0.0055983979254961],[0.052963372319937,0.036160197108984,0.06426540017128]],[[-0.011202421039343,-0.076770134270191,-0.041330266743898],[-0.023758245632052,-0.027764556929469,0.00033509370405227],[0.1877004057169,-0.060335356742144,-0.022577784955502]],[[0.063166998326778,-0.053781509399414,0.042527135461569],[-0.014189077541232,-0.030364193022251,0.0060150898061693],[-0.012988578528166,-0.036118663847446,0.0084435222670436]],[[-0.11663886159658,0.014975138939917,-0.046442873775959],[0.052418909966946,-0.017937319353223,-0.0070728198625147],[-0.066203497350216,0.085522122681141,-0.088871367275715]],[[0.051210749894381,0.011425762437284,-0.040601037442684],[0.052794642746449,-0.11015175282955,0.013130939565599],[-0.056267414242029,0.065097212791443,0.082312189042568]],[[-0.085729598999023,-0.036428548395634,-0.0070270579308271],[0.039663229137659,0.01527470164001,0.0029650952201337],[0.059138286858797,-0.046017676591873,-0.10672365128994]],[[0.051848448812962,0.023427199572325,0.078254714608192],[0.085059091448784,-0.063869647681713,0.045109082013369],[-0.093154102563858,-0.026167748495936,0.035012193024158]],[[-0.072346121072769,0.0065887570381165,-0.062179177999496],[-0.069599702954292,0.028249381110072,-0.0054147173650563],[0.0013668136671185,0.051293194293976,0.094664193689823]],[[0.011670968495309,-0.062150176614523,0.027232371270657],[0.037658698856831,-0.022768244147301,-0.057924550026655],[0.09878246486187,0.015917802229524,0.033358473330736]],[[0.01548024546355,0.026508569717407,-0.0056499801576138],[0.022924702614546,-0.045872911810875,0.019002685323358],[0.022937821224332,0.044740971177816,-0.059233468025923]],[[-0.024757612496614,-0.019311731681228,0.016337167471647],[0.046823978424072,-0.046369962394238,0.0029123139102012],[0.062910802662373,0.0047771246172488,-0.025296799838543]],[[-0.040563657879829,-0.017384858801961,0.0077639995142817],[-0.016239618882537,-0.053265757858753,0.0016546534607187],[0.074163176119328,0.040675941854715,-0.015677962452173]],[[0.14884231984615,-0.083041809499264,-0.090339682996273],[0.039081066846848,0.019786233082414,-0.047129333019257],[-0.026044003665447,-0.047707535326481,0.0013807952636853]],[[0.15550015866756,-0.030524104833603,0.048338036984205],[-0.11759197711945,-0.030606430023909,-0.0097886044532061],[0.1383073925972,0.044484231621027,0.089225724339485]],[[0.079993382096291,0.099318042397499,0.12188727408648],[0.0025138179771602,0.13414683938026,0.13019008934498],[-0.047015886753798,-0.018218146637082,0.18078200519085]],[[0.026423433795571,0.13817079365253,-0.082128249108791],[-0.050821479409933,-0.078358232975006,-0.042281698435545],[0.068172000348568,-0.063491135835648,-0.069249853491783]],[[0.012626591138542,0.013001236133277,0.03013208694756],[0.050593245774508,0.060579389333725,0.017081996425986],[-0.064523994922638,-0.00028983945958316,0.033249657601118]],[[-0.035932023078203,0.063898488879204,-0.07861003279686],[-0.0097664818167686,-0.045755688101053,0.067237190902233],[-0.057726100087166,0.022015545517206,-0.042837142944336]],[[-0.049129571765661,-0.01413410436362,-0.0582603700459],[-0.083175048232079,-0.12894269824028,-0.017250133678317],[0.0089573403820395,-0.0062251510098577,0.044854566454887]],[[0.06208760291338,-0.13125835359097,0.084072448313236],[0.083099141716957,0.042936321347952,-0.041978862136602],[0.032958272844553,-0.088467657566071,-0.046149495989084]],[[-0.013609827496111,0.067567855119705,0.034237749874592],[0.027185007929802,-0.13209390640259,0.014398041181266],[0.066035002470016,-0.02280879765749,-0.029936926439404]],[[0.016277614980936,-0.02266096137464,0.0099547393620014],[0.023824514821172,-0.032565999776125,0.028016172349453],[-0.056941363960505,0.02897572144866,-0.0095709534361959]],[[-0.044500023126602,-0.0059898775070906,-0.063013508915901],[0.026726119220257,-0.023323213681579,-0.040526006370783],[0.07970704138279,-0.05136526376009,0.080695405602455]],[[-0.065693587064743,0.021320624276996,-0.014694793149829],[-0.029762785881758,-0.0025358519051224,-0.013983984477818],[-0.074203573167324,-0.079168796539307,0.017782105132937]],[[0.0062284474261105,0.073583334684372,-0.04976598918438],[-0.016773635521531,0.054862625896931,-0.018927201628685],[-0.023227386176586,0.007656998001039,0.0024470041971654]],[[0.041867539286613,-0.027878098189831,0.04176127165556],[0.0014526020968333,-0.026597272604704,-0.13315540552139],[-0.099395528435707,0.028539139777422,-0.093916371464729]],[[0.10905207693577,0.016661705449224,-0.15286479890347],[0.10035058110952,0.034514520317316,-0.024502651765943],[0.024047357961535,-0.11172996461391,0.0097042266279459]],[[-0.10357620567083,-0.028747271746397,0.010446207597852],[0.044662661850452,0.057430628687143,-0.023625072091818],[-0.19255287945271,0.017417697235942,0.00037997588515282]],[[-0.057902868837118,0.09380267560482,-0.078425094485283],[-0.092671729624271,0.01340645737946,0.021677831187844],[0.099335059523582,-0.030908167362213,-0.018500300124288]],[[-0.1273837685585,-0.015023770742118,0.087021067738533],[-0.12908934056759,-0.030235178768635,-0.021879414096475],[-0.051456961780787,0.1243262141943,0.1747031211853]],[[-0.00069092068588361,0.032594233751297,0.047905564308167],[-0.017942482605577,-0.049115497618914,-0.033753175288439],[-0.018485832959414,-0.0068801869638264,-0.079488858580589]],[[0.018017357215285,-0.037638667970896,0.10655399411917],[-0.033500615507364,-0.13049584627151,-0.045785117894411],[-0.022940626367927,0.071420334279537,0.062856182456017]],[[-0.14348547160625,-0.055978022515774,0.037087339907885],[-0.019073504954576,0.14405371248722,-0.11666894704103],[-0.088574022054672,-0.0034645975101739,0.013377807103097]],[[0.013313910923898,-0.059968184679747,-0.12478849291801],[0.08355113863945,0.071883127093315,-0.0087694013491273],[0.055983666330576,0.077582478523254,-0.046660341322422]],[[0.065059386193752,-0.092680595815182,-0.006069484166801],[-0.077893063426018,-0.004578797146678,-0.10249600559473],[-0.02216724306345,0.18225806951523,0.11914427578449]],[[-0.020038960501552,0.013781735673547,-0.0086279949173331],[-0.12315591424704,0.013462110422552,0.018266374245286],[-0.010256473906338,-0.053789302706718,-0.025466846302152]],[[-0.028232360258698,0.084699831902981,-0.086702719330788],[-0.071356609463692,0.097765691578388,0.0030865299049765],[-0.022537067532539,-0.044210288673639,-0.075367964804173]],[[-0.077706761658192,-0.047588218003511,0.011709416285157],[-0.086408279836178,-0.098900876939297,0.020460277795792],[0.070238135755062,0.040021970868111,0.051620587706566]],[[0.033146809786558,-0.074686117470264,-0.068649441003799],[0.061020836234093,-0.007561004254967,-0.071833238005638],[0.0084984581917524,0.12914711236954,-0.083714224398136]],[[0.044808320701122,-0.059557251632214,-0.089459657669067],[0.024234866723418,0.014149433933198,0.00011125420132885],[-0.18757484853268,-0.019788609817624,-0.006182212382555]],[[-0.058375760912895,0.073171593248844,-0.028153020888567],[-0.058602910488844,-0.03925809264183,0.017261633649468],[0.0015977238072082,0.021521758288145,-0.011859581805766]],[[-0.088811837136745,-0.023857967928052,-0.048414941877127],[-0.022672910243273,0.024954609572887,-0.10380054265261],[-0.097733065485954,-0.040068257600069,-0.00099272921215743]],[[0.075343310832977,0.030929753556848,-0.1922795176506],[0.12146404385567,-0.060579564422369,-0.047483883798122],[0.30315229296684,-0.050104234367609,0.002661993028596]],[[0.02097331173718,0.0098139103502035,-0.10361029207706],[-0.060508906841278,0.019057806581259,-0.079262085258961],[0.13956280052662,-0.072979994118214,0.049001958221197]],[[-0.12751875817776,-0.067399628460407,-0.011235691606998],[-0.026307111606002,-0.00024224500521086,0.066991791129112],[-0.05535165220499,0.065562039613724,0.03760614991188]],[[0.045509841293097,0.0047287824563682,-0.041088175028563],[0.07180343568325,-0.035029541701078,-0.074140146374702],[-0.00011116923997179,0.038159903138876,0.0049125826917589]],[[0.0058006215840578,0.10374461859465,-0.073547847568989],[-0.10739227384329,0.036176316440105,0.067620016634464],[-0.14443302154541,-0.070841766893864,0.079620026051998]],[[-0.085680529475212,-0.00094759644707665,0.005975419189781],[-0.050032664090395,-0.017109801992774,0.0081203216686845],[-0.04316958039999,0.010085451416671,-0.075979053974152]],[[-0.080023728311062,-0.082138322293758,0.043792895972729],[0.011999636888504,-0.24864393472672,0.014267518185079],[0.12141904234886,-0.023142667487264,-0.03027450107038]],[[0.11853126436472,0.031740091741085,0.015864739194512],[0.013803141191602,0.10668975114822,0.10644299536943],[-0.05768258869648,0.054190713912249,0.11877870559692]],[[0.03098963201046,0.038598533719778,-0.033517591655254],[-0.058280013501644,0.077227957546711,0.0074761146679521],[-0.08920369297266,-0.0024707589764148,0.03413674980402]],[[0.035214088857174,0.043705061078072,0.011301676742733],[-0.088466010987759,0.1075567305088,0.04680485650897],[-0.1035071760416,-0.0043023745529354,0.006876063067466]],[[0.084446787834167,0.090036779642105,0.01227827463299],[-0.043852336704731,-0.10515548288822,0.019835429266095],[0.04436618834734,-0.054614167660475,-0.12991771101952]],[[-0.0012314823688939,-0.060494739562273,-0.022461902350187],[0.0707892999053,0.0045228088274598,-0.0009369570761919],[-0.088386334478855,-0.014543395489454,-0.090828746557236]],[[-0.1247336640954,0.09180349111557,0.041781611740589],[-0.0031605924014002,-0.032049600034952,0.0016571668675169],[0.024227244779468,-0.055701319128275,0.020642997696996]]],[[[-0.055934678763151,-0.11986501514912,0.04914765432477],[-0.044520698487759,0.065941490232944,-0.022744257003069],[0.035088136792183,-0.13299691677094,0.026230555027723]],[[0.05775348842144,0.071986250579357,0.066026367247105],[0.076388627290726,-0.01030283793807,0.0039090369828045],[-0.037065532058477,0.041656512767076,-0.024857345968485]],[[0.045926805585623,-0.01481487415731,0.0092495996505022],[-0.032845411449671,-0.01440516859293,-0.061653669923544],[-0.096183717250824,0.0070547219365835,-0.057379070669413]],[[-0.020446250215173,-0.065137967467308,0.0071716946549714],[-0.022824712097645,0.016156777739525,0.026045374572277],[-0.0078234449028969,0.090037032961845,-0.042063098400831]],[[-0.096103385090828,-0.0035683591850102,0.004821143578738],[0.10284920781851,-0.091439373791218,-0.032668437808752],[-0.064809784293175,0.076199024915695,0.029123736545444]],[[0.03605242818594,-0.017766768112779,-0.030167251825333],[0.036236882209778,0.0078280847519636,0.030220994725823],[-0.073519639670849,-0.077228114008904,0.016973756253719]],[[0.029010815545917,0.013198436237872,0.0358024276793],[0.022388063371181,-0.041577819734812,-0.020830119028687],[-0.074334122240543,-0.041172925382853,-0.058764092624187]],[[0.055638030171394,0.011183543130755,0.020574456080794],[-0.054278139024973,0.023556172847748,0.025066962465644],[-0.05198010802269,-0.046509619802237,0.056300226598978]],[[-0.093032531440258,0.0070202476345003,-0.044893532991409],[0.081090465188026,0.02662568539381,0.031478226184845],[0.035326447337866,0.013056432828307,0.028894269838929]],[[-0.0058246464468539,0.028629889711738,0.086253397166729],[0.0024208195973188,0.073801957070827,-0.068453587591648],[0.0090909656137228,-0.070346750319004,-0.024870522320271]],[[-0.068251512944698,0.0061702714301646,0.00263542518951],[0.047876965254545,-0.066171810030937,0.023189790546894],[0.024946620687842,0.008856263011694,0.054150782525539]],[[-0.014334863051772,0.076945938169956,-0.012981556355953],[-0.039722193032503,0.060288559645414,-0.023195933550596],[-0.072830475866795,-0.22118207812309,0.0052174138836563]],[[-0.02537851780653,-0.071546114981174,0.035569321364164],[0.046717647463083,-0.00077243964187801,-0.069594949483871],[-0.054718155413866,-0.032519191503525,-0.010303187184036]],[[0.012834670953453,-0.0056404336355627,0.00065599603112787],[-0.0029172541107982,-0.014259087853134,-0.014011431485415],[0.044174078851938,0.084614314138889,0.02919183857739]],[[0.088302277028561,-0.054963227361441,-0.012875717133284],[0.095281913876534,-0.0039274366572499,-0.006440703291446],[0.032500173896551,-0.0069243279285729,-0.080818548798561]],[[-0.042846761643887,0.03516298905015,0.004532374907285],[8.9790373749565e-05,-0.026134639978409,0.11712781339884],[0.10318178683519,0.050483614206314,-0.023649919778109]],[[0.059647284448147,0.084107503294945,0.08547455817461],[0.010809917934239,-0.0060358960181475,0.059907700866461],[-0.0062541924417019,-0.023727664723992,-0.061020564287901]],[[0.025187358260155,0.033682059496641,-0.037478636950254],[-0.018341170623899,0.045237421989441,-0.078514993190765],[-0.12506239116192,-0.043805528432131,-0.069595202803612]],[[0.029584370553493,0.029940536245704,0.062177278101444],[0.038278989493847,0.023746825754642,0.035508066415787],[-0.011767249554396,0.035247281193733,-0.032812412828207]],[[-0.0018962672911584,-0.020059170201421,-0.034999754279852],[0.012895673513412,-0.0037827678024769,-0.018881490454078],[0.0089225210249424,0.021207688376307,0.049120206385851]],[[0.010529062710702,0.026890674605966,0.028024854138494],[-0.039680391550064,-0.073493003845215,0.046622414141893],[0.039686236530542,-0.020813861861825,0.10049168020487]],[[-0.064275212585926,-0.075586654245853,-0.016214655712247],[-0.016115453094244,-0.084330730140209,0.085342586040497],[0.042572923004627,0.091070890426636,0.052207861095667]],[[0.031395055353642,0.066991031169891,0.01471205893904],[-0.091079376637936,0.02641131170094,-0.096984185278416],[-0.032769326120615,-0.083809114992619,-0.10997600853443]],[[0.038112990558147,-0.089417740702629,0.0020187958143651],[-0.0057620848529041,-0.089272156357765,0.053179726004601],[0.13675074279308,-0.04357098415494,0.10238563269377]],[[-0.032398089766502,0.096009328961372,0.10023018717766],[-0.039319273084402,0.0091911433264613,-0.050177782773972],[-0.12036055326462,-0.015887435525656,-0.13012340664864]],[[-0.025797234848142,0.060251977294683,-0.056698247790337],[0.060477573424578,0.044834937900305,0.015513336285949],[0.0024046059697866,0.092196129262447,0.030381545424461]],[[0.034264829009771,-0.0001754072291078,0.03224641084671],[0.053328420966864,-0.0256687104702,-0.046462517231703],[0.055820740759373,-0.027327263727784,0.011714482679963]],[[-0.0065067657269537,-0.0023947318550199,0.055807147175074],[0.034136671572924,0.031958442181349,0.030241467058659],[-0.026321223005652,0.0082885455340147,-0.070401325821877]],[[-0.024301439523697,-0.068055689334869,0.094032466411591],[-0.0214519854635,0.038943495601416,-0.10270509123802],[0.031565848737955,-0.013455736450851,-0.025648046284914]],[[0.094518765807152,0.044523864984512,0.15788567066193],[0.00453034741804,0.054850202053785,0.093470439314842],[-0.027174841612577,0.029234664514661,0.12500335276127]],[[0.094791769981384,0.072732374072075,0.035000424832106],[0.032991159707308,0.059005454182625,-0.048986751586199],[-0.007007987704128,0.096479527652264,-0.023392958566546]],[[0.034987784922123,-0.042127996683121,0.014689531177282],[-0.058603763580322,-0.046972159296274,-0.069198951125145],[0.03680756315589,-0.04973603785038,0.0040486319921911]],[[0.0068560233339667,-0.01048054266721,0.044685136526823],[-0.058900535106659,0.0029308898374438,0.034385915845633],[0.062041435390711,-0.055458854883909,-0.0030365737620741]],[[-0.043391142040491,0.0046253679320216,-0.048110947012901],[-0.07526096701622,-0.10581126064062,-0.053592208772898],[-0.036241807043552,-0.031075390055776,-0.1241420507431]],[[-0.017409177497029,-0.069965809583664,-0.016745405271649],[-0.037783429026604,-0.06037550419569,-0.063643828034401],[0.0088917491957545,-0.035993214696646,-0.028737638145685]],[[-0.014937368221581,0.047798443585634,-0.041427634656429],[0.014356719329953,0.003932879306376,-0.044026214629412],[-0.031001221388578,0.025437841191888,-0.05308285728097]],[[-0.0061630443669856,-0.010840913280845,0.11088928580284],[-0.023325392976403,-0.052801162004471,-0.0014440175145864],[0.15906921029091,0.075928725302219,0.047822523862123]],[[-0.042949225753546,0.011344026774168,0.0038987707812339],[0.044538557529449,0.055914595723152,-0.011253208853304],[-0.068183898925781,-0.048242952674627,-0.028210544958711]],[[-0.039902493357658,0.026825582608581,-0.048341941088438],[0.040132917463779,0.059586357325315,0.0189229529351],[0.0086542032659054,-0.077000081539154,0.053190756589174]],[[-0.016470769420266,-0.010698657482862,0.040936134755611],[-0.0036165236961097,-0.068288810551167,0.0096273915842175],[0.0027910973876715,-0.020263394340873,-0.023875698447227]],[[-0.060811124742031,0.069998353719711,-0.056621883064508],[0.012686287052929,0.027934078127146,-0.018646650016308],[-0.0050189271569252,0.029273744672537,0.11268454045057]],[[-0.015586025081575,-0.086598798632622,-0.015948919579387],[0.055826906114817,-0.014992693439126,-0.052512269467115],[0.0066505675204098,0.068778313696384,-0.010630471631885]],[[-0.0030920596327633,-0.00065405492205173,-0.0023929814342409],[-0.060823678970337,-0.0097658541053534,0.024901010096073],[-0.027120389044285,0.073812030255795,-0.001787566114217]],[[-0.0078721903264523,0.0031785983592272,-0.029542675241828],[0.028472185134888,-0.0091338269412518,-0.043002873659134],[-0.035543479025364,-0.035924520343542,-0.069097183644772]],[[-0.022697085514665,0.046961892396212,0.03698655962944],[0.012350440956652,0.010297383181751,0.051823940128088],[-0.027771342545748,0.0088395355269313,-0.02198619581759]],[[0.026475569233298,-0.062187846750021,0.0013540938962251],[0.12444037944078,-0.040596172213554,-0.086739629507065],[0.0048046656884253,-0.071564823389053,-0.10131876915693]],[[0.047817178070545,-0.030502989888191,0.036273546516895],[0.00029570524930023,-0.052715662866831,-0.045955572277308],[-0.057859882712364,0.0032848140690476,0.04432375729084]],[[0.0081900209188461,-0.036810975521803,0.065490737557411],[0.077305376529694,-0.14638724923134,-0.021657567471266],[-0.058111716061831,-0.1007137671113,0.054115545004606]],[[0.058681074529886,0.067508965730667,0.034135732799768],[-0.032932069152594,-0.027138633653522,-0.090601824223995],[0.025728723034263,-0.042610254138708,-0.089271448552608]],[[-0.0087263872846961,0.051036551594734,-0.0037228623405099],[-0.035429555922747,-0.037021327763796,0.030662754550576],[0.024948744103312,-0.019365351647139,0.04463130235672]],[[0.0099622793495655,0.041811171919107,0.048921059817076],[-0.00042170559754595,0.079717136919498,0.0046637230552733],[-0.031642057001591,-0.076895445585251,-0.074466675519943]],[[0.094639904797077,0.0080121485516429,-0.070093579590321],[0.11580716818571,0.047101125121117,0.21651200950146],[0.052667304873466,0.089801341295242,0.10580535233021]],[[-0.087290152907372,-0.017038268968463,-0.024480251595378],[0.033830795437098,0.11588551104069,-0.045719884335995],[0.04936258494854,-0.048307098448277,-0.019824655726552]],[[0.030099559575319,0.046437952667475,-0.04105070233345],[-0.11578703671694,0.073010973632336,0.0011609946377575],[0.082689672708511,-0.066715277731419,0.0295315310359]],[[0.097656100988388,0.023708578199148,-0.078883625566959],[-0.031775947660208,-0.061532232910395,0.10086581856012],[-0.013886791653931,0.020385291427374,-0.0055887210182846]],[[0.030420415103436,-0.021069431677461,-0.036742236465216],[-0.01039188914001,-0.093043439090252,-0.069214299321175],[-0.033922776579857,-0.071139127016068,-0.020405856892467]],[[0.0081648575142026,0.028023237362504,0.03500846400857],[0.023595796898007,0.04906203597784,0.00041862507350743],[0.14645075798035,0.0080073438584805,0.022784940898418]],[[0.017040561884642,-0.0035763175692409,0.11155582219362],[-0.02790505439043,0.076508112251759,-0.01159420888871],[-0.06634858250618,0.0036218126770109,-0.15737147629261]],[[-0.024339523166418,-0.013443202711642,0.016667764633894],[0.061869207769632,-0.022641217336059,0.011698732152581],[0.000100489363831,-0.01732237264514,0.011578420177102]],[[0.0064641726203263,0.076780937612057,0.05651530995965],[-0.067943453788757,-0.0083499206230044,0.012344280257821],[0.010403380729258,-0.056736178696156,-0.010088539682329]],[[-0.0043691289611161,-0.0053612748160958,-0.0027987605426461],[0.018472788855433,0.045533217489719,-0.0086581576615572],[0.04763912409544,0.047462396323681,0.033797211945057]],[[-0.10499058663845,-0.12627141177654,0.080084078013897],[-0.072167687118053,-0.0054157865233719,-0.018451491370797],[0.088186547160149,-0.022005898877978,0.033954061567783]],[[0.019767036661506,-0.082578279078007,-0.075929142534733],[-0.044727046042681,-0.072745218873024,0.0089874053373933],[-0.023609921336174,0.0063900607638061,0.015519564971328]],[[0.049696408212185,0.0035602310672402,-0.037491954863071],[0.012902950868011,-0.03769401833415,-0.042929872870445],[0.0015918149147183,-0.013631654903293,-0.071825452148914]]],[[[-0.04144886508584,-0.042721856385469,-0.0035165010485798],[-0.039340648800135,0.039742980152369,0.0071462006308138],[0.013759872876108,-0.02644008025527,0.0083691272884607]],[[0.077499754726887,0.086745329201221,0.011638446711004],[0.010145328007638,-0.089727364480495,0.011313965544105],[-0.031325608491898,-0.0094095645472407,0.0022597017232329]],[[-0.040698070079088,-0.13433757424355,-0.12737014889717],[0.010283192619681,0.009183588437736,0.073992155492306],[0.0033186036162078,0.023382706567645,0.10175466537476]],[[0.023272201418877,0.063027836382389,0.0066814878955483],[0.045028336346149,-0.050816964358091,-0.01428518909961],[-0.029819834977388,0.018661916255951,0.018041107803583]],[[-0.095931172370911,0.015062935650349,-0.0010569476289675],[0.0051351464353502,0.022474544122815,-0.093496456742287],[0.0070922542363405,-0.036836788058281,-0.080006644129753]],[[-0.10030010342598,0.016149355098605,0.021842576563358],[0.032481070607901,-0.023493684828281,0.0085152462124825],[0.021130813285708,-0.07672069221735,0.015906602144241]],[[-0.032475031912327,-0.11032113432884,-0.01757057569921],[0.014027488417923,-0.01684801094234,-0.032070491462946],[0.033007770776749,0.026861032471061,0.067470990121365]],[[-0.0029814278241247,0.038132537156343,0.029777994379401],[0.069991871714592,0.0487260222435,0.033498890697956],[-0.0057763131335378,-0.01486249268055,0.0071476171724498]],[[-0.04660838842392,0.04660777375102,-0.16090150177479],[0.026873787865043,0.089937768876553,0.036656633019447],[-0.042283546179533,0.080951303243637,-0.0049539217725396]],[[-0.04150202870369,-0.078598849475384,-0.052051559090614],[-0.050849370658398,-0.037294760346413,-0.076757073402405],[0.10964362323284,-0.016966961324215,0.062431510537863]],[[-0.0033798881340772,-0.030300296843052,-0.030365768820047],[0.044646322727203,0.0022631927859038,-0.0371238514781],[0.0221843495965,0.016627037897706,0.009149132296443]],[[-0.03783081844449,-0.10726608335972,-0.084213823080063],[-0.047348614782095,0.0044841505587101,-0.01341206394136],[-0.025169651955366,0.014523174613714,0.009351690299809]],[[-0.0061834882944822,-0.01300043053925,0.033222317695618],[0.0163982398808,-0.062532342970371,0.0046984991058707],[-0.038080908358097,-0.021145280450583,-0.037999007850885]],[[0.021398881450295,0.047689814120531,0.031790371984243],[-0.092806823551655,-0.069025583565235,-0.039421357214451],[-0.0034960764460266,-0.034673783928156,-0.11747269332409]],[[0.067151501774788,0.016045311465859,-0.052874270826578],[0.06256440281868,-0.01395389996469,-0.076440557837486],[-0.068998910486698,-0.029478125274181,-0.0015902023296803]],[[0.034661389887333,-0.034157704561949,-0.04956466332078],[0.076159611344337,0.044379506260157,0.011148135177791],[0.032527208328247,-0.032453194260597,0.067922227084637]],[[0.05622736364603,-0.08211661875248,-0.022751070559025],[0.058062594383955,0.02419438585639,0.018355790525675],[0.00023953948402777,-0.007802193518728,0.0071940831840038]],[[-0.12705701589584,-0.016064034774899,0.068173453211784],[0.017811810597777,0.10076380521059,0.10916643589735],[-0.0093593085184693,0.068774998188019,0.039254039525986]],[[0.00020956517255399,0.027729397639632,0.010386597365141],[0.0011532100616023,0.010981609113514,0.05749636143446],[0.011872635222971,-0.0079042762517929,0.044500317424536]],[[-0.0019726729951799,0.02248815074563,-0.028073051944375],[0.0094349002465606,-0.057024914771318,0.0032194964587688],[0.023470044136047,0.0080485166981816,0.044499300420284]],[[0.052090607583523,0.10783179849386,0.038611326366663],[-0.062487252056599,-0.04417459666729,-0.030546912923455],[0.015496061183512,-0.099962040781975,-0.035856649279594]],[[-0.0068905726075172,-0.03155866637826,-0.11387968808413],[0.061564240604639,0.062079098075628,-0.014957718551159],[-0.040100235491991,0.0099196340888739,0.027871370315552]],[[0.053242657333612,0.043738309293985,-0.055529784411192],[-0.080912359058857,-0.006982047110796,-0.073996752500534],[-0.031466543674469,-0.0094378273934126,0.002751748310402]],[[-0.054071374237537,0.035039573907852,0.013694381341338],[0.10488476604223,0.074878096580505,0.079697161912918],[0.09476526081562,0.13008320331573,0.039375059306622]],[[0.024506332352757,-0.032970488071442,-0.16108492016792],[0.0034135561436415,0.025503005832434,-0.026020314544439],[-0.079217985272408,-0.00045504112495109,0.0096012772992253]],[[-0.023582760244608,-0.058418150991201,0.0065666027367115],[-0.02440214715898,-0.030883682891726,-0.029246209189296],[0.051892261952162,0.053401738405228,0.064516745507717]],[[-0.13637536764145,0.016356060281396,0.07563004642725],[0.041426878422499,-0.045383539050817,-0.10486114025116],[-0.035210754722357,-0.01203406136483,0.0093425819650292]],[[-0.0065882937051356,0.075738944113255,0.043688498437405],[0.022791301831603,-0.016981763765216,0.034978158771992],[-0.054371643811464,0.0276805665344,0.014149247668684]],[[-0.030021522194147,0.006475041154772,-0.035349670797586],[-0.022277588024735,-0.0012787012383342,0.04392421245575],[-0.00018458114936948,-0.033592317253351,0.023355562239885]],[[-0.011647121980786,-0.014891163446009,-0.055147603154182],[0.07404900342226,-0.075996376574039,-0.033421840518713],[0.06257251650095,0.027286790311337,-0.021144764497876]],[[0.015708474442363,-0.07385116815567,-0.091720007359982],[0.058959826827049,-0.032021816819906,-0.086258821189404],[0.08720438182354,-0.039459079504013,0.019381709396839]],[[0.077042974531651,-0.018451415002346,-0.00094213866395876],[-0.077866159379482,0.083298251032829,-0.0059056873433292],[0.030065940693021,0.078673176467419,-0.031607627868652]],[[0.01236329600215,-0.031938895583153,-0.050887189805508],[0.045342788100243,-0.032970141619444,0.017200829461217],[0.0062826606445014,0.015089892782271,-0.012690955772996]],[[0.024658871814609,0.12597340345383,0.032517582178116],[0.0091246347874403,-0.1277119666338,-0.11704236268997],[-0.12337490916252,0.022888807579875,0.0093626882880926]],[[-0.0010972371092066,0.0040735770016909,0.00065329548669979],[-0.022157698869705,0.018068004399538,0.0054183946922421],[-0.0099997678771615,-0.017861157655716,-0.088515117764473]],[[0.063775472342968,0.0094358706846833,0.062164854258299],[-0.042452584952116,-0.056679654866457,0.013789867982268],[-0.035754676908255,0.0041438899934292,0.0043101720511913]],[[-0.11285751312971,-0.09900788217783,-0.084574647247791],[0.029641643166542,0.06043378636241,0.12103677541018],[0.051965516060591,0.04336753860116,0.043142221868038]],[[-0.027293488383293,-0.040183294564486,0.034096121788025],[-0.084886997938156,-0.042263921350241,-0.02261658012867],[0.027921671047807,-0.11581172049046,-0.092630133032799]],[[-0.096342116594315,-0.030146928504109,-0.046931371092796],[0.052431587129831,-0.030925555154681,0.0073713664896786],[-0.016719354316592,0.038211170583963,-0.0062939426861703]],[[0.031183715909719,-0.010578497312963,0.10420582443476],[-0.044832210987806,0.039780333638191,0.0091996351256967],[-0.0070346114225686,-0.041055519133806,-0.041999034583569]],[[-0.007895078510046,0.063960880041122,0.060339372605085],[-0.087614662945271,-0.062734857201576,0.024399701505899],[0.0080105289816856,0.038709837943316,0.026712704449892]],[[0.011467481032014,0.08268990367651,0.020474979653955],[0.024375431239605,-0.10407900065184,0.017708258703351],[0.052945129573345,-0.14268305897713,-0.023292561993003]],[[0.0080735571682453,0.011664011515677,-0.08412766456604],[-0.051780413836241,0.072818987071514,-0.04797338321805],[-0.0028062318451703,-0.022903552278876,-0.068198256194592]],[[0.07110071182251,0.049208678305149,0.078816875815392],[-0.097396925091743,0.029085259884596,0.047454066574574],[-0.064362451434135,-0.0055396668612957,-0.1062620356679]],[[-0.033132530748844,-0.087842769920826,0.098044455051422],[-0.027138276025653,-0.029104700312018,-0.050711516290903],[0.020773109048605,0.049351826310158,0.032275028526783]],[[-0.089515939354897,0.12337736040354,-0.1704994738102],[-0.020308416336775,-0.043276753276587,-0.084678471088409],[0.014276570640504,0.0062283910810947,-0.029536342248321]],[[-0.051619034260511,-0.024133184924722,-0.080605715513229],[0.024738663807511,0.033893626183271,-0.0033736422192305],[0.0099449902772903,0.071928270161152,-0.011062108911574]],[[-0.035201396793127,-0.046235989779234,0.013237270526588],[0.0077550122514367,0.038982979953289,-0.080606020987034],[0.039936520159245,0.016720522195101,-0.0040215593762696]],[[0.11858747899532,0.04643426835537,-0.074103273451328],[-0.11685568839312,0.0017589754424989,0.057544905692339],[0.0093079414218664,0.023590106517076,0.00021070188086014]],[[0.017244406044483,-0.04228612780571,-0.0019250767072663],[0.041377857327461,0.048944979906082,-0.032138172537088],[0.019601974636316,-0.056517299264669,-0.0033232932910323]],[[0.11047367751598,0.026691973209381,-0.0084718586876988],[-0.0053143431432545,-0.047874867916107,-0.046345014125109],[-0.060866579413414,-0.14834547042847,-0.017270058393478]],[[0.10697670280933,0.14988160133362,0.054241698235273],[0.058494865894318,0.072423480451107,-0.046798326075077],[0.1245052665472,-0.096143156290054,-0.0036539749708027]],[[-0.021706234663725,-0.0027238314505666,0.090371288359165],[-0.00039018061943352,-0.029825825244188,0.059212252497673],[-0.080800794064999,0.01853390596807,0.038376111537218]],[[-0.015349796973169,-0.038482017815113,-0.056099396198988],[0.043932370841503,-0.10442446172237,0.00034209116711281],[0.068755775690079,0.052058547735214,-0.083347961306572]],[[0.0075821476057172,0.061482824385166,-0.020035466179252],[-0.044469494372606,0.024137765169144,0.10876879841089],[0.0006118820165284,0.014962024055421,0.038742773234844]],[[-0.046131111681461,-0.030778627842665,-0.011520565487444],[0.041813462972641,0.05836359411478,-0.002779722912237],[0.019276501610875,-0.0092991543933749,0.035347864031792]],[[-0.041811928153038,-0.040702857077122,-0.0031031516846269],[-0.059600256383419,0.043533828109503,-0.013468076474965],[0.037264250218868,-0.041393782943487,0.017389494925737]],[[0.081161327660084,-0.056742500513792,0.020238192752004],[-0.096267312765121,-0.064363501966,-0.0036053326912224],[0.017384961247444,-0.035236589610577,-0.03826604411006]],[[0.035348247736692,-0.0064964457415044,-0.11221372336149],[-0.0088561773300171,-0.04131069406867,-0.011873815208673],[0.012859515845776,0.11667799949646,0.09329055249691]],[[-0.012975916266441,0.0046041738241911,0.032280508428812],[-0.0020673233084381,-0.0097394837066531,0.029756769537926],[0.011144906282425,-0.013797625899315,-0.040402680635452]],[[-0.10163754224777,-0.0047115227207541,-0.018661171197891],[-0.012837827205658,-0.10002049803734,-0.079547107219696],[-0.008166678249836,-0.00059081113431603,-0.1009009256959]],[[-0.033229295164347,-0.042158242315054,-0.037853546440601],[-0.10324665904045,-0.037526831030846,-0.031280409544706],[-0.034861493855715,0.00031387581839226,0.00097468338208273]],[[0.082342684268951,0.012048416770995,-0.049809210002422],[-0.0063664223998785,0.038635279983282,-0.067295394837856],[0.020025096833706,0.0023231643717736,-0.029703345149755]],[[0.045456144958735,-0.034092586487532,-0.060464579612017],[-0.039220854640007,-0.1081075668335,0.026161104440689],[0.026934191584587,-0.02056541107595,0.013059875927866]]],[[[0.045724116265774,-0.060828436166048,-0.049128115177155],[-0.0034028931986541,-0.012301828712225,0.022541012614965],[0.016209466382861,0.096087396144867,-0.077941469848156]],[[-0.0099533693864942,-0.078958004713058,-0.069127053022385],[-0.006275350227952,-0.036013439297676,-0.052603758871555],[-0.0040344153530896,-0.059462878853083,0.017327047884464]],[[-0.034300837665796,0.0063258479349315,0.0068713552318513],[0.039911463856697,-0.11645205318928,0.017437148839235],[-0.023552810773253,-0.0052844886668026,-0.067457444965839]],[[0.052491951733828,-0.10921014100313,-0.061873316764832],[-0.07064139097929,0.026296481490135,0.02230466902256],[-0.09666495770216,0.0037103891372681,0.0060289297252893]],[[0.019205829128623,0.0099714668467641,-0.0038887104019523],[0.0066358046606183,0.010966598056257,0.063608728349209],[0.034218240529299,0.038790851831436,0.059576213359833]],[[-0.044269639998674,-0.039378378540277,0.028991894796491],[-0.067176505923271,-0.011387867853045,0.03947377204895],[0.043679621070623,0.022217595949769,-0.049926318228245]],[[0.10973451286554,-0.060618057847023,-0.0068823997862637],[0.0018078089924529,-0.090939775109291,-0.01984048448503],[-0.026165099814534,-0.12569074332714,0.0043956721201539]],[[-0.039143174886703,-0.11887811124325,-0.089204572141171],[-0.01896845921874,-0.039791706949472,0.020603993907571],[-0.056154996156693,-0.011383220553398,0.024515373632312]],[[0.048972465097904,0.0016227216692641,0.02303091622889],[-0.050486899912357,-1.54951994773e-05,-0.049498576670885],[-0.053450390696526,0.059402842074633,-0.034876063466072]],[[-0.063191317021847,-0.049515668302774,0.07973887771368],[0.093391217291355,0.00015805453585926,-0.046686958521605],[-0.015744430944324,-0.052762635052204,-0.14514724910259]],[[-0.078593552112579,0.0056178774684668,0.047048725187778],[0.042035330086946,-0.02274414896965,0.018609723076224],[-0.022731734439731,-0.0082078222185373,0.055775366723537]],[[0.034636415541172,0.096778951585293,0.0016295821405947],[0.037869043648243,-0.034634985029697,0.021955206990242],[0.064124777913094,0.10065990686417,-0.037932768464088]],[[0.0043926001526415,-0.059274606406689,-0.044927425682545],[-0.018578741699457,-0.058713179081678,0.0090131312608719],[-0.019270103424788,-0.076928347349167,-0.042206387966871]],[[0.073239631950855,0.098657846450806,-0.028608599677682],[0.020014924928546,0.017260085791349,0.038256421685219],[-0.025581572204828,-0.051279291510582,-0.021493822336197]],[[-0.055170334875584,0.0041190087795258,-0.030845485627651],[-0.035406623035669,0.10629767924547,-0.046735368669033],[-0.020577281713486,-0.019801015034318,-0.005086696241051]],[[0.046402677893639,-0.029678978025913,0.041866157203913],[-0.021790677681565,-0.029613150283694,0.016717651858926],[0.052462663501501,0.023075435310602,0.072700411081314]],[[-0.055492524057627,-0.021923463791609,0.036225996911526],[0.050471842288971,0.076268076896667,0.021781513467431],[0.046760428696871,0.096218608319759,0.010287231765687]],[[-0.019316541031003,-0.092131786048412,-0.032020144164562],[-0.056090749800205,0.0047914413735271,-0.091808781027794],[-0.10028598457575,-0.050675880163908,0.056460008025169]],[[0.043006226420403,-0.01168719958514,-0.0029322458431125],[0.051331833004951,0.030557308346033,-0.0025731816422194],[0.032627139240503,-0.04913080483675,-0.084507800638676]],[[-0.0148801272735,0.041304659098387,0.019363302737474],[-0.038158547133207,-0.037708178162575,-0.0085431011393666],[0.029171973466873,-0.031296774744987,0.05953623726964]],[[0.077816285192966,0.022091438993812,-0.057321175932884],[0.020122552290559,-0.037847213447094,-0.10576233267784],[-0.053263016045094,-0.087511874735355,-0.06543030589819]],[[0.059485230594873,-0.1312140673399,-0.050673741847277],[-0.034713800996542,0.015845257788897,-0.027737081050873],[0.00036946430918761,0.058602266013622,0.067849174141884]],[[0.047040488570929,0.068279102444649,0.09464069455862],[0.041455890983343,0.0084678921848536,-0.050266578793526],[-0.049689523875713,-0.044915046542883,-0.11329611390829]],[[0.08552598208189,0.058729447424412,0.0076122554019094],[0.095547407865524,0.046202816069126,0.011707533150911],[-0.028171857818961,0.0016460565384477,0.012062001042068]],[[-0.014746414497495,0.07096105068922,0.054370194673538],[-0.0019846598152071,-0.004672194365412,-0.013345714658499],[-0.0165322329849,0.025197993963957,-0.017662299796939]],[[0.016724226996303,0.042014978826046,-0.019899185746908],[0.034667156636715,0.047394830733538,-0.0096796313300729],[0.039845332503319,0.025611421093345,0.06176894530654]],[[0.11111681163311,0.037318099290133,-0.02041550911963],[-0.0038138451054692,0.093677692115307,-0.011920657008886],[0.078233137726784,-0.017592808231711,-0.025897374376655]],[[-0.055863175541162,0.022099258378148,-0.022474413737655],[-0.15145887434483,0.065347693860531,-0.077341191470623],[0.022764969617128,-0.031238747760653,-0.021601704880595]],[[0.011353770270944,0.022705238312483,0.045818522572517],[0.058517832309008,-0.029650460928679,0.020548265427351],[0.017631027847528,-0.016913836821914,-0.013148682191968]],[[0.040749978274107,0.028654472902417,0.11354131251574],[0.012611974962056,-0.00015729616279714,0.013227425515652],[0.070491105318069,0.046694289892912,0.10344710201025]],[[-0.05102688446641,-0.057771239429712,-0.043116576969624],[-0.049403827637434,-0.022528203204274,0.013268779031932],[-0.076166279613972,0.019326252862811,-0.067127294838428]],[[0.029409663751721,-0.025894712656736,0.011326431296766],[0.012899594381452,0.076476782560349,-0.012433955445886],[-0.092232905328274,-0.027847189456224,0.00084998254897073]],[[0.047124575823545,0.0051482175476849,0.048686642199755],[0.0023335185833275,-0.018283853307366,-0.056031249463558],[-0.052886169403791,-0.0020921174436808,-0.048893511295319]],[[0.027091378346086,0.041242152452469,-0.04964853823185],[-0.050653960555792,-0.026289988309145,0.0749371945858],[0.056672479957342,0.034777253866196,-0.034387238323689]],[[0.09491316229105,0.07487615197897,0.03905675560236],[0.045155379921198,0.015262059867382,-0.027357652783394],[0.00018400613043923,-0.017658663913608,-0.047072283923626]],[[-0.025999143719673,-0.1319160759449,-0.05076676607132],[0.039876699447632,-0.080532483756542,-0.092897415161133],[-0.040146321058273,-0.041963066905737,-0.022869717329741]],[[0.11315842717886,-0.026368020102382,0.055802937597036],[0.0082570547237992,-0.040392305701971,0.09358000010252],[-0.020532606169581,-0.025550100952387,0.031255561858416]],[[-0.071513287723064,0.05711555480957,-0.076401345431805],[0.0022651795297861,0.0050231185741723,-0.04262113571167],[-0.040015414357185,-0.020130703225732,-0.017524814233184]],[[-0.045984487980604,0.054158084094524,0.040818572044373],[-0.0028412353713065,-0.013331742957234,-0.013243563473225],[0.011467883363366,-0.014553132466972,-0.026221144944429]],[[0.069493509829044,0.087753415107727,-0.036568120121956],[-0.0011191325029358,-0.067765235900879,0.00038448144914582],[-0.0045926114544272,-0.031253252178431,-0.0051194047555327]],[[0.071534916758537,-0.0014047973090783,-0.0032265749759972],[-0.10807480663061,-0.066548675298691,-0.027461813762784],[-0.04093411564827,0.037168059498072,-0.045502543449402]],[[0.070105247199535,0.002963139442727,-0.055673412978649],[-0.020563516765833,0.013920305296779,0.014559344388545],[-0.1087952926755,-0.028128251433372,-0.093654498457909]],[[-0.0015622145729139,0.096193671226501,0.026575641706586],[0.031739830970764,0.00063595443498343,0.0096267741173506],[0.0051026842556894,-0.011059880256653,0.060288064181805]],[[0.014355986379087,0.037737976759672,0.0084769455716014],[-0.044063556939363,-0.061749514192343,0.034899808466434],[-0.094111651182175,-0.020767416805029,-0.0076971226371825]],[[-0.047920498996973,-0.048991169780493,0.14263896644115],[-0.13760578632355,-0.0080709801986814,0.050625085830688],[-0.13395141065121,0.04571607708931,-0.021817922592163]],[[-0.02956023812294,0.032413244247437,0.078908860683441],[-0.038881439715624,-0.037601813673973,-0.02566734701395],[0.028810596093535,-0.024492425844073,-0.018336346372962]],[[0.031016875058413,-0.045868840068579,-0.049865499138832],[0.035997916013002,0.032520204782486,0.0056928750127554],[0.062305055558681,-0.010744311846793,0.0075839958153665]],[[-0.029541254043579,0.089928142726421,-0.057967953383923],[-0.099735297262669,-0.040125172585249,-0.15955226123333],[0.07194060832262,0.022513723000884,0.094444118440151]],[[-0.094184070825577,0.012986950576305,0.091744743287563],[-0.044753897935152,0.063521906733513,-0.041468694806099],[-0.078499600291252,-0.077608481049538,-0.069385185837746]],[[0.053668685257435,-0.055677086114883,0.0006416596006602],[-0.023841744288802,-0.030684698373079,-0.022245805710554],[-0.0249063372612,0.049942187964916,-0.1400440633297]],[[-0.012044223025441,-0.028815265744925,0.031942371279001],[0.041392978280783,-0.038348287343979,-0.026633938774467],[0.010051143355668,0.01564047858119,-0.054390411823988]],[[-0.011153960600495,0.023844998329878,0.025597995147109],[0.087699830532074,0.034856650978327,-0.015891375020146],[-0.072065711021423,-0.03643935918808,0.10890012234449]],[[-0.042605269700289,0.080035209655762,-0.024836454540491],[-0.012333642691374,0.012712842784822,0.062477041035891],[-0.0063481945544481,-0.080810956656933,-0.02652976103127]],[[-0.073616534471512,-0.049354583024979,0.0067312433384359],[0.0021461339201778,0.022046539932489,0.0002874766360037],[-0.092917427420616,0.032074198126793,-0.013885964639485]],[[-0.074800260365009,0.029952177777886,-0.12378832697868],[0.078724540770054,-0.060349952429533,0.062394581735134],[0.0022675846703351,0.020963517948985,-0.10604547709227]],[[-0.020618759095669,0.057092756032944,-0.043266698718071],[0.026440223678946,-0.037123743444681,0.028593428432941],[0.0072121219709516,0.0086274854838848,-0.009405056014657]],[[0.046913955360651,-0.082416385412216,0.017322497442365],[0.0062866699881852,-0.026538321748376,-0.075979679822922],[0.10657728463411,0.084259197115898,-0.082383312284946]],[[-0.068871542811394,0.0047333403490484,0.022887527942657],[-0.095951110124588,0.0090421652421355,0.05321391671896],[0.026836706325412,0.027186539024115,0.017922574654222]],[[0.16378888487816,0.028590146452188,0.087871134281158],[-0.029771557077765,0.044195730239153,0.078526295721531],[0.10459168255329,0.033053744584322,0.03939763084054]],[[0.029807616025209,-0.05368484556675,-0.058997228741646],[0.054077804088593,0.052708279341459,-0.0041999919340014],[0.028684411197901,0.01201456040144,-0.04251891747117]],[[0.029347620904446,0.072096094489098,0.018570512533188],[-0.022519970312715,-0.053185634315014,0.025678675621748],[0.044479519128799,-0.090035453438759,0.012887078337371]],[[-0.033645063638687,-0.054288297891617,0.014665924943984],[-0.016054552048445,-0.0026023364625871,0.021933704614639],[-0.023147290572524,-0.069150827825069,-0.10124955326319]],[[0.025759667158127,-0.051842972636223,-0.029898952692747],[-0.007247541565448,0.015959814190865,-0.034571878612041],[0.016542367637157,0.02707377448678,0.0076318280771375]],[[-0.044591292738914,0.049068886786699,0.021661313250661],[0.0076143997721374,-0.00010896025196416,0.031082296743989],[-0.055979464203119,0.070288382470608,-0.015009672380984]]],[[[0.040315244346857,-0.020340170711279,0.011916787363589],[-0.0028596455231309,0.10296036303043,0.050380267202854],[-0.030934758484364,0.14287357032299,0.092434644699097]],[[-0.0013757204869762,0.07342392206192,0.11565835773945],[0.087356045842171,0.012464378029108,0.031546737998724],[-0.01641664840281,-0.051640827208757,-0.019877843558788]],[[-0.13806913793087,-0.021102547645569,-0.017601441591978],[-0.052565332502127,-0.02411126345396,0.059910207986832],[-0.11606821417809,-0.01044640224427,-0.033516924828291]],[[0.0037494585849345,-0.051712848246098,-0.073461584746838],[0.018882373347878,0.085441425442696,-0.071002788841724],[0.03612007573247,0.018419707193971,-0.012488665059209]],[[0.11666893959045,0.14654083549976,-0.077636025846004],[0.062575623393059,0.028431709855795,-0.072507359087467],[0.02582298591733,-0.038281988352537,-0.077101588249207]],[[0.039632074534893,0.047265078872442,0.12279794365168],[-0.031300652772188,-0.06080274283886,0.010752088390291],[-0.085729122161865,-0.09870607405901,-0.10115692764521]],[[-0.11346476525068,-0.017920333892107,-0.011346387676895],[0.028675539419055,0.087066620588303,0.036203421652317],[-0.0023459091316909,-0.0077475989237428,-0.054079607129097]],[[0.080993242561817,-0.12901064753532,-0.007004598621279],[0.069021739065647,0.046286553144455,0.025016646832228],[0.064241051673889,-0.038134764879942,0.060272037982941]],[[0.064470887184143,-0.062634781002998,-0.0031823944300413],[-0.013119178824127,-0.066032893955708,0.010061365552247],[0.014172669500113,-0.044581793248653,0.0062477369792759]],[[0.029999461025,0.092624306678772,-0.16780783236027],[0.049445740878582,0.052188143134117,0.0096658570691943],[0.070331625640392,0.045440286397934,0.00092050357488915]],[[-0.16303838789463,-0.058136094361544,0.064991749823093],[0.034158021211624,-0.083028510212898,-0.0031978930346668],[-0.012841396965086,-0.059705790132284,-0.026893094182014]],[[0.098617434501648,-0.10356757044792,0.10291108489037],[-0.084605477750301,-0.048893250524998,0.059288360178471],[-0.15970546007156,0.0086959768086672,-0.013944136910141]],[[0.021085003390908,-0.032722309231758,-0.047961361706257],[-0.081711128354073,-0.052854992449284,-0.068993575870991],[-0.12577655911446,-0.041455592960119,0.001077723922208]],[[-0.0074905576184392,-0.042422402650118,-0.045441560447216],[0.067626930773258,-0.0010957883205265,-0.037316672503948],[0.081142902374268,0.0065915859304368,-0.06146090850234]],[[-0.15487068891525,0.027778400108218,-0.009975278750062],[-0.081339322030544,0.09441015869379,-0.0065487800166011],[-0.057816609740257,-0.064968332648277,0.068491153419018]],[[0.069278553128242,-0.052028339356184,-0.0905746743083],[-0.0076909670606256,-0.0061602452769876,-0.0086384573951364],[0.019477786496282,-0.0073666116222739,-0.0042596687562764]],[[0.072567462921143,0.16234992444515,0.057815261185169],[0.08703751116991,-0.013837782666087,0.038296259939671],[-0.059801638126373,0.032028928399086,-0.0074801533482969]],[[0.031635031104088,0.038640052080154,-0.0034393400419503],[0.059342067688704,-0.014231103472412,0.087076872587204],[-0.05158880725503,-0.040719628334045,0.055923130363226]],[[0.012895874679089,-0.062687210738659,-0.13719746470451],[0.10137666761875,0.092435956001282,-0.043043114244938],[0.015494139865041,-0.033259805291891,0.029612388461828]],[[-0.021424101665616,-0.029800239950418,-0.018167324364185],[-0.0023579697590321,0.05166257917881,0.037438116967678],[-0.014017392881215,-0.013569304719567,0.019729448482394]],[[0.064408987760544,-0.011413088999689,0.0031544922385365],[-0.051199112087488,-0.03185498341918,-0.033419366925955],[-0.027911137789488,-0.16531100869179,-0.085899941623211]],[[0.030044533312321,-0.1308451294899,0.14143420755863],[-0.017621174454689,0.061928819864988,-0.066253572702408],[-0.077418632805347,-0.00076192116830498,0.080000504851341]],[[-0.045095156878233,-0.013806129805744,0.013956045731902],[-0.23481498658657,0.24561114609241,0.054800320416689],[-0.030302409082651,-0.017855318263173,-0.011745883151889]],[[-0.12405812740326,0.046983078122139,-0.071114979684353],[0.029247926548123,0.026725763455033,-0.0012322622351348],[0.1211179792881,-0.0048494744114578,0.022242581471801]],[[0.029233118519187,0.12275426834822,-0.0065532773733139],[-0.035088866949081,0.043966598808765,0.07357120513916],[-0.15957853198051,-0.098461396992207,-0.030243463814259]],[[0.011460857465863,0.033932600170374,0.13124816119671],[0.058459173887968,0.058524686843157,-0.0039369505830109],[0.024300971999764,-0.027936948463321,0.031848326325417]],[[-0.011307434178889,-0.034405872225761,-0.041959397494793],[-0.034788567572832,-0.099372483789921,0.04605720937252],[0.044359598308802,-0.016993138939142,-0.07031337916851]],[[-0.10144158452749,0.023069705814123,0.031089229509234],[-0.0053477808833122,0.035431142896414,0.0059938258491457],[-0.051576476544142,-0.039262089878321,-0.04080231115222]],[[0.062284015119076,-0.0066007780842483,0.0084652341902256],[0.067677386105061,-0.012009529396892,-0.047673773020506],[-0.051151163876057,-0.041591439396143,0.055371161550283]],[[-0.042380526661873,0.076121464371681,0.0092539340257645],[0.012280533090234,0.051221497356892,0.057383805513382],[-0.025472097098827,-0.04939591139555,0.027183556929231]],[[-0.014295051805675,-0.0091175641864538,-0.013389865867794],[-0.055069752037525,0.0081056784838438,0.026389133185148],[-0.034346155822277,0.056548293679953,0.066834054887295]],[[0.0068771727383137,0.019699288532138,-0.11687068641186],[-0.044862579554319,0.011836916208267,0.0087120346724987],[-0.054546676576138,0.10590667277575,-0.079822577536106]],[[-0.096962139010429,0.050550941377878,-0.091612227261066],[-0.053168255835772,-0.054917771369219,0.081448934972286],[0.0079323565587401,-0.026285450905561,0.010459989309311]],[[-0.052536569535732,-0.0076359631493688,-0.13590440154076],[-0.069360814988613,0.10127228498459,-0.073176875710487],[-0.078394778072834,0.12469424307346,0.10072216391563]],[[0.052592623978853,0.00567247858271,0.009033945389092],[-0.06747791916132,-0.021065711975098,0.0036919673439115],[-0.020472759380937,-0.13784058392048,-0.028311472386122]],[[-0.038731522858143,-0.050816871225834,0.025275260210037],[0.0052544753998518,-0.004314849153161,-0.056932497769594],[0.047725725919008,0.0047222357243299,-0.013127895072103]],[[0.035903967916965,0.010500120930374,-0.02829241193831],[-0.045364711433649,-0.04035060852766,-0.028648698702455],[0.062267385423183,0.03154369443655,0.048816964030266]],[[0.056886032223701,0.11408516019583,0.10362760722637],[0.045888084918261,-0.016904914751649,0.059790872037411],[0.0069834738969803,-0.028801910579205,0.039573021233082]],[[0.075027860701084,0.044594276696444,0.14909346401691],[-0.06739142537117,-0.073836281895638,0.029294526204467],[-0.071939401328564,-0.17708636820316,-0.20670327544212]],[[-0.01487572491169,-0.025393173098564,-0.012646452523768],[-0.14604260027409,-0.035327907651663,-0.057358331978321],[0.08286864310503,0.027376556769013,0.01643518730998]],[[0.020711136981845,-0.064701750874519,0.020572291687131],[0.056812394410372,-0.041872020810843,0.011404927819967],[0.10028357058764,-0.084764279425144,-0.0050327433273196]],[[0.032152954488993,-0.059554256498814,0.00054541818099096],[0.0474036000669,0.043454993516207,-0.017533611506224],[-0.0040474585257471,-0.068672925233841,-0.045761071145535]],[[0.0064873020164669,-0.035108670592308,-0.011768000200391],[-0.077673979103565,0.053320478647947,0.042754303663969],[-0.025148617103696,0.039416026324034,-0.070288799703121]],[[0.029792131856084,-0.10819762945175,0.016616309061646],[0.13336881995201,-0.010064472444355,0.039191961288452],[-0.1098602861166,-0.02484118938446,-0.037774614989758]],[[0.066855110228062,-0.097345232963562,-0.0059440191835165],[0.006423108279705,-0.030238365754485,0.024863563477993],[0.0051527707837522,-0.03951371088624,0.068382687866688]],[[-0.029061365872622,-0.010735695250332,0.056092608720064],[0.048691231757402,-0.052882950752974,-0.071587607264519],[-0.047808673232794,-0.01290743984282,-0.057935710996389]],[[-0.045203719288111,-0.046027842909098,-0.0016574589535594],[-0.12614233791828,-0.026589842513204,-0.002315343124792],[0.0042512407526374,0.067444436252117,0.018315836787224]],[[0.046442333608866,-0.09617891907692,-0.039532486349344],[0.012590305879712,-0.14628203213215,0.074043691158295],[0.012941430322826,-0.033687628805637,0.048604939132929]],[[0.0052288742735982,0.013126918114722,0.01588499173522],[-0.027630101889372,-0.021983800455928,0.078468844294548],[0.018429562449455,-0.096612848341465,-0.059997107833624]],[[-0.082386434078217,-0.021807542070746,-0.058461800217628],[-0.09002560377121,-0.0035381130874157,-0.025645831599832],[0.074935264885426,-0.0090085547417402,-0.030287267640233]],[[-0.063748091459274,-0.041677974164486,0.0048832851462066],[-0.11129089444876,0.0015227653784677,0.043210510164499],[0.030875226482749,0.027541676536202,0.071382306516171]],[[-0.021899012848735,-0.019746150821447,-0.025058511644602],[0.046987283974886,0.066309399902821,0.041846673935652],[0.055960666388273,0.092039503157139,0.10586320608854]],[[-0.015364154241979,0.040789060294628,-0.028081195428967],[-0.067761793732643,0.04049226641655,-0.0060570971108973],[-0.13098266720772,-0.031205296516418,-0.095035821199417]],[[-0.1141809001565,0.063279815018177,0.015366403385997],[0.019886100664735,0.025361530482769,0.045646242797375],[0.044611748307943,0.094663314521313,0.028972130268812]],[[-0.06780106574297,0.004139946307987,-0.06202744320035],[-0.018461255356669,-0.012797269038856,-0.032673943787813],[-0.077850818634033,0.033484678715467,0.010135386139154]],[[0.054083950817585,-0.0188909471035,0.0070854336954653],[0.05719068646431,0.03473823517561,-0.002919549588114],[-0.063626751303673,-0.11031607538462,-0.044828996062279]],[[-0.059268329292536,-0.030593594536185,-0.016978614032269],[-0.066870406270027,-0.066273368895054,-0.017303828150034],[-0.071360096335411,0.0014572720974684,0.086155138909817]],[[-0.14984336495399,0.023495072498918,0.011718583293259],[-0.21554374694824,-0.092438846826553,-0.030106384307146],[0.00067119026789442,-0.046601224690676,-0.12740409374237]],[[0.052189506590366,-0.038264013826847,-0.032189898192883],[-0.095757216215134,-0.089208230376244,-0.013943993486464],[0.14860343933105,-0.073007360100746,0.14050331711769]],[[0.032967254519463,0.069608964025974,-0.010081999003887],[-0.032530505210161,-0.015952466055751,0.0074364277534187],[0.023947026580572,-0.043902244418859,-0.012540983967483]],[[0.071980997920036,-0.051458287984133,0.050162974745035],[-0.072023503482342,0.01902393437922,-0.042110361158848],[0.048682861030102,0.034045692533255,0.054855063557625]],[[-0.1905293315649,0.084234565496445,0.030892772600055],[-0.13532446324825,0.016027502715588,0.012310777790844],[0.020540123805404,0.065006926655769,0.12115390598774]],[[0.013684127479792,-0.13975043594837,0.0040064565837383],[0.067662484943867,-0.078955806791782,-0.0054242629557848],[0.092251189053059,-0.0021726060658693,0.05841738730669]],[[-0.17447450757027,0.075646549463272,-0.063367113471031],[-0.02014628238976,0.073352873325348,-0.044086150825024],[-0.0095123816281557,0.032206699252129,0.050538953393698]]],[[[0.024618616327643,-0.008523122407496,-0.084197662770748],[-0.05141144618392,-0.012917371466756,-0.025808721780777],[-0.068445399403572,0.0092813428491354,-0.01241850014776]],[[-0.045198060572147,-0.032992288470268,-0.055313158780336],[-0.0065524694509804,0.037412330508232,0.058411926031113],[0.11220094561577,0.021703373640776,0.047364681959152]],[[-0.034631282091141,-0.025032175704837,-0.081253752112389],[0.032077018171549,-0.10239738225937,0.029584597796202],[-0.055098745971918,-0.0046284575946629,-0.05796480178833]],[[-0.047312993556261,-0.067998476326466,-0.021692685782909],[-0.18115201592445,-0.013524529524148,0.11940169334412],[-0.079004295170307,-0.052690602838993,-0.026585044339299]],[[0.004675131291151,0.0052740918472409,-0.044371344149113],[0.0013751287478954,0.038631908595562,0.076099224388599],[-0.038210801780224,0.032523363828659,0.015093094669282]],[[0.069565996527672,0.08791821449995,0.063886843621731],[-0.041222583502531,-0.11575738340616,-0.056347474455833],[0.010412313044071,0.067077860236168,-0.12192302942276]],[[0.0080239810049534,0.04484448581934,-0.0031354331877083],[-0.006543789524585,0.0080629410222173,0.045850552618504],[-0.066199339926243,-0.011430531740189,0.030128648504615]],[[-0.033426083624363,0.055983353406191,0.04831401258707],[-0.041369896382093,-0.11348912119865,-0.011766730807722],[0.1236475482583,0.065904505550861,-0.040773812681437]],[[0.065764628350735,0.052398879081011,0.0072124940343201],[-0.0036456899251789,-0.0033797938376665,0.09806115180254],[-0.026145845651627,0.05325286462903,-0.054182805120945]],[[0.046686962246895,0.0043383473530412,-0.062470160424709],[-0.089595668017864,-0.033107098191977,0.0027434709481895],[0.021071117371321,-0.0592374317348,0.039609767496586]],[[0.047812595963478,-0.1095924526453,0.029350288212299],[-0.0034882016479969,0.044493917375803,0.014414418488741],[-0.073708906769753,-0.028980048373342,0.088739544153214]],[[0.01019114907831,-0.098277755081654,0.026668222621083],[0.051665935665369,0.029856903478503,-0.043681319802999],[-0.14720050990582,0.061711218208075,0.036222785711288]],[[-0.046016953885555,-0.027267999947071,-0.052147347480059],[0.032276917248964,0.022720606997609,0.18751667439938],[-0.044586904346943,-0.07780010253191,-0.081894651055336]],[[0.11702710390091,-0.039601601660252,-0.03646656498313],[0.031214132905006,0.044675845652819,0.026012178510427],[-0.026088150218129,-0.078825056552887,-0.034727189689875]],[[0.02094485796988,-0.071151070296764,-0.10571388155222],[0.013672647066414,-0.1375098079443,-0.030713645741343],[0.046617813408375,0.019144684076309,-0.031629722565413]],[[0.073902696371078,0.1606333553791,0.069191299378872],[-0.073713503777981,-0.017951464280486,0.047958638519049],[-0.011514132842422,-0.045636579394341,-0.075994797050953]],[[0.026273479685187,0.0032306932844222,0.033870562911034],[-0.00087867013644427,0.0033680205233395,-0.093944452702999],[0.066969871520996,-0.056792046874762,-0.1135910525918]],[[0.059265524148941,0.10860140621662,-0.019379954785109],[-0.04716020449996,0.031701225787401,0.027123916894197],[-0.005969621706754,-0.042550068348646,0.034119043499231]],[[0.011473398655653,-0.097743332386017,-0.066775351762772],[0.05975105240941,0.067047640681267,-0.0085962917655706],[0.0034758804831654,-0.071576811373234,-0.05039082840085]],[[0.025058122351766,0.050286363810301,-0.012976460158825],[0.027223573997617,-0.062427364289761,-0.014640321023762],[-0.020740507170558,0.030952155590057,0.016942299902439]],[[0.040691994130611,0.0033530907239765,-0.051938664168119],[0.036445345729589,0.047340244054794,-0.029098438099027],[-0.036235447973013,-0.012339896522462,-0.079689264297485]],[[0.097270213067532,0.11670719832182,-0.032964404672384],[-0.0033387569710612,-0.054648172110319,-0.07316879928112],[0.032362312078476,-0.0028354395180941,0.10727761685848]],[[-0.051741074770689,-0.046737041324377,0.027619106695056],[-0.087658762931824,-0.093640431761742,-0.092237256467342],[0.027787376195192,-0.1005267649889,-0.017303571105003]],[[0.069577515125275,0.11698507517576,0.012571191415191],[0.041269280016422,-0.013874553143978,0.0082205003127456],[0.021656427532434,0.12726241350174,0.13712982833385]],[[0.00027902293368243,-0.057201899588108,-0.16882410645485],[-0.030643217265606,-0.012375629507005,-0.15218962728977],[-0.076782926917076,0.070033989846706,0.16728363931179]],[[-0.012689515016973,-0.030333384871483,0.078228339552879],[-0.020802803337574,0.0019335771212354,-0.01135167106986],[0.012658949941397,-0.07477056235075,0.0092193242162466]],[[-0.1131838336587,-0.024993060156703,-0.039878413081169],[0.0071045560762286,0.10093887150288,-0.0084924604743719],[-0.085683904588223,-0.017599172890186,-0.10977923125029]],[[0.084529787302017,0.026433680206537,-0.0015138325979933],[-0.015605417080224,0.074603535234928,-0.049002334475517],[-0.071705669164658,0.08101624250412,0.018514962866902]],[[-0.057941894978285,0.035334825515747,-0.023518238216639],[-0.020674478262663,-0.031011709943414,-0.021273870021105],[-0.04538245126605,0.023141721263528,0.027262389659882]],[[0.0055667804554105,0.034638848155737,0.033765640109777],[0.011116694658995,-0.046193309128284,-0.049775823950768],[-0.032367210835218,-0.044936180114746,-0.052080065011978]],[[0.062527075409889,0.028162254020572,0.0098259449005127],[0.035465732216835,0.041954893618822,0.019861051812768],[0.049677576869726,-0.127092435956,-0.050473339855671]],[[-0.015295725315809,0.099649585783482,0.1167506352067],[-0.027360083535314,0.044286891818047,0.0078190611675382],[0.018482530489564,-0.083334743976593,-0.14048783481121]],[[-0.025265851989388,-0.011479321867228,0.1264393478632],[0.025148754939437,-0.02015851996839,-0.012646047398448],[0.00020472350297496,-0.02111092209816,-0.017417177557945]],[[-0.087218329310417,0.031678900122643,0.053155891597271],[0.043762110173702,-0.067529246211052,0.0096526183187962],[-0.077135123312473,-0.073440946638584,0.02493098936975]],[[-0.14490561187267,0.018980942666531,0.0039749648422003],[0.011549405753613,-0.0701759532094,0.011757809668779],[-0.12893453240395,0.030999524518847,0.040454722940922]],[[0.024816107004881,-0.044456362724304,-0.0068708001635969],[-0.0087500447407365,0.079413987696171,-0.048334676772356],[0.017753114923835,0.027196662500501,0.03385803848505]],[[0.011044257320464,0.022266609594226,0.013024111278355],[0.011536543257535,0.051359817385674,-0.046565432101488],[-0.081782966852188,-0.032562736421824,0.098656959831715]],[[-0.11104910820723,0.02769567258656,-0.044249750673771],[-0.017037287354469,-0.036935348063707,-0.0022158622741699],[0.051250033080578,0.049475248903036,0.058409664779902]],[[-0.22404886782169,-0.16267174482346,-0.11514876037836],[0.0068609360605478,-0.067426793277264,0.1059038117528],[-0.017403692007065,-0.048891119658947,0.084027893841267]],[[-0.071297027170658,-0.12637422978878,-0.086727812886238],[0.061028201133013,0.059781305491924,-0.09581220895052],[-0.028133321553469,0.026890985667706,0.039750948548317]],[[0.0034334517549723,-0.002254553604871,-0.039555601775646],[0.03569458425045,0.13507208228111,0.027437964454293],[-0.018086696043611,0.0060895192436874,0.046270590275526]],[[-0.017168667167425,0.12223896384239,-0.05050303041935],[0.020139161497355,0.0034814001992345,-0.05798963457346],[0.014669422060251,0.044377095997334,-0.054572395980358]],[[-0.046056035906076,0.12374375760555,-0.0029255803674459],[-0.035024523735046,-0.002826685551554,0.064313881099224],[-0.063243895769119,-0.1037635654211,-0.042852364480495]],[[-0.059058666229248,0.075995542109013,-0.014307669363916],[0.044424626976252,0.072079576551914,-0.012881239876151],[0.016037531197071,0.010712837800384,-0.072656407952309]],[[-0.039615519344807,0.037843320518732,0.097375795245171],[-0.0020872505847365,-0.20314130187035,0.0078790551051497],[-0.047813180834055,0.0012786395382136,-0.034579426050186]],[[0.034484762698412,-0.038963105529547,0.031536571681499],[0.02026117965579,-0.023780761286616,-0.033395688980818],[0.015207774937153,-0.069756656885147,0.020288269966841]],[[0.019024075940251,-0.12532407045364,-0.020853132009506],[-0.0050748158246279,0.014342503622174,-0.12309131026268],[0.046017028391361,0.061173070222139,0.048913575708866]],[[0.020858865231276,0.099034018814564,0.066947430372238],[0.017636859789491,0.034155447036028,0.10571483522654],[0.082104153931141,-0.033360585570335,-0.0049024256877601]],[[-0.012613341212273,0.028769887983799,-0.016140569001436],[0.010773397982121,-0.074634112417698,0.024751853197813],[-0.010650797747076,-0.011850109323859,-0.030469616875052]],[[0.040838535875082,-0.0098900785669684,-0.13848666846752],[0.052463561296463,-0.032914109528065,-0.0012410000199452],[0.059930175542831,-0.014429926872253,-0.0026909895241261]],[[0.084296502172947,-0.023073734715581,-0.019129009917378],[0.073338553309441,0.11897344887257,-0.051375914365053],[0.031222952529788,0.057759460061789,-0.054188661277294]],[[0.053748823702335,-0.050180342048407,0.088820904493332],[0.077660985291004,0.12898470461369,0.10022157430649],[0.091121196746826,0.074034363031387,-0.048511527478695]],[[-0.012834537774324,0.024341471493244,0.0010331460507587],[-0.035348989069462,0.01218627858907,0.0040926584042609],[-0.037080150097609,-0.0076900888234377,0.015939002856612]],[[0.07823371887207,0.011482677422464,0.032438542693853],[0.076086454093456,-0.052429780364037,-0.03858271241188],[0.050496220588684,-0.11844838410616,-0.18433584272861]],[[0.06041345000267,-0.080027021467686,-0.0008119250414893],[0.066320590674877,0.00037452043034136,-0.09599344432354],[0.014095580205321,-0.060472708195448,-0.012097314931452]],[[0.0053209038451314,0.033756613731384,0.16123013198376],[0.024319164454937,-0.04401046782732,-0.099209055304527],[-0.032809320837259,-0.021741012111306,-0.018028063699603]],[[0.072835884988308,0.030428132042289,0.031067308038473],[0.03038271702826,0.028207080438733,-0.0052458546124399],[-0.070935636758804,-0.072532124817371,-0.013618992641568]],[[0.025542991235852,0.001753443502821,0.1011740937829],[0.022119101136923,-0.056631647050381,0.12779848277569],[-0.092339441180229,-0.13325403630733,-0.11673588305712]],[[-0.061524409800768,-0.029828377068043,0.011318278498948],[-0.046470731496811,0.032199688255787,-0.033511642366648],[0.17519564926624,0.025509066879749,-0.028551749885082]],[[0.00020848811254837,-0.014651802368462,0.0048068361356854],[0.010108972899616,0.037336390465498,-0.0014849359868094],[-0.045075427740812,0.014021317474544,0.0098139783367515]],[[0.02230322919786,-0.0457973331213,0.041895844042301],[-0.0057620871812105,0.078534074127674,0.066484719514847],[0.021396990865469,-0.034192658960819,-0.057832628488541]],[[0.033156685531139,0.045311909168959,0.00072383478982374],[-0.084734745323658,-0.041975613683462,-0.05902973562479],[-0.0059210360050201,0.073341794312,-0.028393741697073]],[[-0.0059971022419631,-0.047239955514669,-0.062456227838993],[0.17271968722343,-0.0001022111682687,-0.055788718163967],[-0.069849371910095,0.021411074325442,0.034261398017406]],[[-0.065795883536339,-0.032637674361467,0.096276767551899],[-0.05962723121047,-0.037875130772591,0.055180165916681],[0.025833871215582,0.047644700855017,-0.089634120464325]]]],"nOutputPlane":128,"kW":3,"kH":3,"bias":[-0.0060729621909559,-0.0075584230944514,-0.0050635864026845,-0.010743143968284,-0.0065512573346496,-0.0040383730083704,-0.003485381603241,-0.005608803126961,-0.0035527606960386,-0.0043208068236709,-0.006867048330605,-0.0033545738551766,-0.004121346399188,-0.0051185693591833,-0.0055931499227881,-0.0068400842137635,-0.0053770015947521,-0.0045643853954971,-0.0077449553646147,-0.008962094783783,-0.006558527238667,-0.0056482413783669,-0.0042197564616799,-0.0042963777668774,-0.012582081370056,-0.0040411204099655,-0.0035692020319402,-0.011156907305121,-0.0038775124121457,-0.0032644248567522,-0.0063020149245858,-0.0036894928198308,-0.0057316380552948,-0.0066056312061846,-0.0049013020470738,-0.0066411015577614,-0.0064917164854705,-0.0050797429867089,-0.00094825291307643,-0.0077852471731603,-0.0044743097387254,-0.0019356238190085,-0.0097550675272942,0.022910673171282,-0.0053226398304105,-0.012786231003702,-0.0085454490035772,-0.0090057859197259,-0.0032274769619107,-0.0052379984408617,-0.0069278609007597,-0.0088139250874519,-0.0024226221721619,-0.0055330842733383,-0.0078050303272903,-0.0063794692978263,-0.010450892150402,-0.0059227640740573,-0.0088756754994392,-0.0058760191313922,-0.012632774189115,-0.0060652405954897,-0.01023010071367,-0.0064723459072411,-0.0041410904377699,-0.0065630646422505,-0.003580906894058,-0.005468905903399,-0.0048657092265785,-0.0062696347013116,-0.0073576616123319,-0.0059736063703895,-0.0098399426788092,-0.0058331512846053,-0.0040033054538071,-0.0029082773253322,-0.011519204825163,-0.0095326732844114,-0.0059521873481572,-0.0050029568374157,-0.00079664518125355,-0.011395351961255,-0.0070508094504476,-0.0078534800559282,-0.0068211895413697,-0.0047865947708488,-0.0050317943096161,-0.0042928727343678,-0.0033242725767195,-0.0054035186767578,-0.0058547426015139,-0.0062556890770793,-0.005350292660296,-0.0093028824776411,-0.010019888170063,-0.0053072706796229,-0.0048407092690468,-0.0056059812195599,-0.0054912976920605,-0.01240633521229,-0.0080549167469144,-0.0037513903807849,-0.0079870885238051,-0.013800117187202,-0.0078378757461905,-0.0061794193461537,-0.0048623736947775,-0.0034344519954175,-0.0020862587261945,-0.0036728214472532,-0.015089794062078,-0.00062029174296185,-0.0051249866373837,-0.0045952945947647,-0.0030770120210946,-0.0051113730296493,-0.0083016492426395,-0.0055144759826362,0.0012891087681055,-0.0073870630003512,-0.0089474711567163,-0.0084188254550099,-0.0069119515828788,-0.0053348764777184,-0.0047226953320205,-0.0039902017451823,-0.005827717948705,-0.0076304255053401],"nInputPlane":64},{"weight":[[[[-0.01773027703166,0.014851888641715,0.056447047740221],[0.024807928130031,0.054935947060585,0.0039699501357973],[-0.00072717806324363,-0.044488456100225,-0.091922990977764]],[[0.039992421865463,-0.01283575873822,-0.026949701830745],[-0.0021517199929804,-0.033674895763397,0.066310949623585],[0.001202768762596,-0.027144296094775,0.017839880660176]],[[-0.007935581728816,0.054512973874807,-0.026072278618813],[-0.042769566178322,0.023290153592825,-0.081606261432171],[-0.14143881201744,0.039409086108208,0.020590903237462]],[[0.045428726822138,-0.026124501600862,0.031722281128168],[-0.034960243850946,0.10384876281023,0.0097421137616038],[0.015049675479531,0.020579056814313,-0.074919775128365]],[[-0.031176609918475,-0.0085249282419682,0.037199318408966],[-0.00017867583665065,-0.085517942905426,0.03871600702405],[0.0063220984302461,0.019629515707493,0.041901275515556]],[[0.07422311604023,-0.002804919378832,-0.032597556710243],[-0.028115510940552,0.019315535202622,-0.026352629065514],[0.026415834203362,-0.052446812391281,0.017150685191154]],[[0.046763807535172,0.0085768718272448,0.098126783967018],[-0.028378246352077,-0.037570647895336,0.015023996122181],[0.020538469776511,-0.015709407627583,-0.078776851296425]],[[0.037225946784019,0.057202622294426,-0.020534563809633],[-0.03082237392664,-0.082801543176174,0.021276095882058],[0.041667025536299,0.034975003451109,0.056065235286951]],[[0.027307944372296,0.0096858283504844,-0.044446382671595],[0.025046201422811,-0.017758557572961,0.049262315034866],[0.064039327204227,-0.040210660547018,0.012362256646156]],[[-0.030607676133513,0.079056166112423,0.10131196677685],[0.026848284527659,0.0022645103745162,-0.0020478926599026],[0.044054385274649,-0.060495674610138,-0.011019622907043]],[[-0.0016907620010898,-0.038177717477083,-0.030582940205932],[0.018696460872889,-0.05141893774271,0.008716463111341],[0.01229712087661,0.0067024263553321,0.0054853325709701]],[[-0.016241831704974,-0.034680135548115,0.037122260779142],[0.11043909192085,0.045346423983574,-0.020208019763231],[-0.048178147524595,0.018832828849554,0.014612402766943]],[[-0.076460979878902,0.038293588906527,-0.030480498448014],[0.0095716575160623,-0.0053965230472386,0.045877370983362],[-0.071173466742039,-0.01992566883564,-0.027812425047159]],[[-0.016940295696259,-0.015152738429606,-0.098036356270313],[-0.010917684994638,-0.062829717993736,0.007885224185884],[0.0080672977492213,-0.045051507651806,-0.046620655804873]],[[-0.056741159409285,0.0080914767459035,0.030967423692346],[-0.026626100763679,0.014981226995587,0.031962089240551],[0.05055845156312,-0.03254185244441,0.020844221115112]],[[-0.0082241948693991,-0.043989963829517,-0.0091018155217171],[0.0036883037537336,0.047425389289856,0.031729958951473],[0.084981091320515,-0.06433928757906,0.059718742966652]],[[-0.031798411160707,0.011323425918818,-0.050837483257055],[-0.049791764467955,0.011810469441116,0.080822229385376],[-0.001501923892647,0.087288178503513,-0.051989000290632]],[[-0.042371325194836,-0.033866804093122,0.072527326643467],[-0.033510096371174,-0.038344394415617,-0.090335704386234],[0.072749964892864,0.058674536645412,-0.052629940211773]],[[-0.063093207776546,-0.011754908598959,0.019297489896417],[-0.02234704233706,-0.029778121039271,0.023682067170739],[0.039863962680101,0.03694262355566,-0.026791967451572]],[[-0.027219217270613,0.0027726157568395,-0.023973777890205],[0.019935794174671,-0.054535418748856,-0.038046427071095],[-0.014712457545102,-0.015801234170794,-0.086997643113136]],[[-0.049862582236528,0.05838430672884,0.015270828269422],[0.088739335536957,-0.00019481155322865,0.044005703181028],[-0.019582713022828,-0.10337779670954,0.026769243180752]],[[0.024700654670596,-0.0075862566009164,0.016734173521399],[-0.026768838986754,-0.0044934074394405,-0.015579692088068],[0.010879911482334,0.026271145790815,-0.0011917261872441]],[[0.0045648002997041,-0.019716966897249,0.10535713285208],[-0.044400714337826,0.02061140909791,-0.020044259727001],[0.022523820400238,0.012551976367831,0.037926565855742]],[[0.065823450684547,0.0037766569294035,0.049914602190256],[-0.023545172065496,0.037233993411064,-0.039705082774162],[0.00098136509768665,0.044535722583532,0.0096134664490819]],[[0.054281514137983,0.066822968423367,-0.0082813715562224],[0.017476620152593,0.087900564074516,0.0052804560400546],[0.047558043152094,0.044393248856068,0.020288160070777]],[[-0.020878523588181,0.08801094442606,-0.012533804401755],[0.05199795588851,0.020923206582665,0.071602195501328],[0.0071968426927924,0.048765130341053,-0.070387944579124]],[[0.0024323049001396,-0.0073921415023506,0.057553973048925],[-0.02189863473177,-0.07038202881813,0.032899219542742],[0.039694532752037,0.13022243976593,0.11014415323734]],[[-0.017549334093928,-0.017412135377526,0.010098388418555],[0.0043225758709013,0.097554668784142,0.087504364550114],[0.042230535298586,0.0085088349878788,-0.017813106998801]],[[-0.010027510114014,0.023638455197215,-0.01375912129879],[-0.06018890812993,-0.010768618434668,-0.056914582848549],[0.011702677235007,-0.07931374758482,-0.029542777687311]],[[-0.030682912096381,-0.064887061715126,0.0055042211897671],[0.02227957546711,-0.019295413047075,0.045149866491556],[0.020371373742819,-0.012154888361692,0.02339032292366]],[[-0.0009491381351836,0.044083647429943,0.047582451254129],[0.04446678981185,-0.012976797297597,0.049505863338709],[-0.042202316224575,-0.083781585097313,-0.016721669584513]],[[-0.031881146132946,0.034440416842699,-0.039449017494917],[0.10996491461992,0.0034840675070882,0.019737284630537],[-0.016778072342277,0.057524710893631,0.026927268132567]],[[-0.032503239810467,-0.050509046763182,0.041184086352587],[-0.00016444730863441,-0.02075925283134,0.0045830435119569],[0.052333138883114,0.066670410335064,0.033730205148458]],[[0.02049607411027,-0.055101603269577,0.034310664981604],[0.0025720063131303,-0.097900055348873,-0.0089684342965484],[0.004250368103385,0.024084072560072,0.021534293889999]],[[-0.025119297206402,-0.034181471914053,-0.036097228527069],[0.079488389194012,-0.045199304819107,-0.035957656800747],[0.0043336749076843,0.030299168080091,-0.030294544994831]],[[0.029309356585145,0.027680238708854,-0.016469951719046],[-0.0083475932478905,0.016068253666162,-0.0052887443453074],[0.019844282418489,0.051299165934324,0.0087363822385669]],[[-0.065158769488335,0.0018076777923852,-0.0039879414252937],[0.02875953540206,0.011879180558026,-0.026091041043401],[0.058290131390095,-0.023295842111111,0.086658090353012]],[[0.060092635452747,0.0048351311124861,0.018120376393199],[-0.083044603466988,0.033281993120909,-0.037722762674093],[0.045616749674082,0.0015626067761332,-0.043897390365601]],[[-0.025079878047109,0.016224758699536,0.079602800309658],[0.044584799557924,0.035367451608181,0.10657370835543],[-0.02520065009594,-0.048763301223516,-0.012867908924818]],[[-0.050384070724249,-0.0041899331845343,0.0048492141067982],[0.0013375909766182,-0.055522404611111,0.020929019898176],[-0.036651946604252,0.031604558229446,0.064200967550278]],[[0.038008820265532,-0.098328202962875,0.016143634915352],[-0.019700875505805,0.0026137747336179,0.018661124631763],[-0.025251774117351,0.021298037841916,0.041093841195107]],[[0.041876725852489,-0.013410692103207,-0.069464281201363],[-0.023381698876619,0.013541880063713,-0.051190592348576],[0.079342700541019,0.10101383924484,0.0081998603418469]],[[-0.042656041681767,0.047697398811579,-0.078809440135956],[-0.065006092190742,0.025573005899787,0.052535552531481],[0.0053852959536016,-0.0051405555568635,-0.005917530041188]],[[-0.032911766320467,-0.007872792892158,0.0073698088526726],[-0.052089311182499,0.015980038791895,0.028387596830726],[-0.0045815813355148,-0.044921059161425,-0.0085445307195187]],[[0.0077812382951379,0.024859206750989,0.00097216572612524],[0.067487806081772,0.007769089192152,0.096867322921753],[-0.043362267315388,-0.036429401487112,-0.060614682734013]],[[0.039293613284826,-0.02844662219286,0.039528165012598],[-0.018964482471347,0.026418356224895,-0.0012981432955712],[0.014239159412682,-0.027579920366406,-0.044679865241051]],[[-0.033719457685947,-0.02279419079423,0.0066071450710297],[0.0030396920628846,-0.02383541688323,-0.0017943064449355],[0.032812684774399,0.018304746598005,-0.040995363146067]],[[0.0065801027230918,0.0095631228759885,-0.024999372661114],[0.037532553076744,0.025732351467013,-0.011571754701436],[-0.022447040304542,0.053519707173109,0.046246122568846]],[[0.068233639001846,-0.051287285983562,-0.016497137024999],[-0.06739467382431,0.058515623211861,0.076667331159115],[0.064913600683212,0.0052995653823018,0.029490284621716]],[[-0.018939487636089,0.074501678347588,0.002104252576828],[0.067231498658657,0.076141461730003,-0.031695157289505],[0.032418426126242,0.015544562600553,0.045735727995634]],[[0.033381313085556,0.04172083735466,0.036558050662279],[-0.025168845430017,0.0069336136803031,0.0034235990606248],[-0.0087873823940754,-0.070104204118252,0.06113475933671]],[[-0.022170182317495,0.046808999031782,0.010392455384135],[-0.079581506550312,-0.041029777377844,0.02304476313293],[0.051294699311256,-0.016442323103547,0.050178617238998]],[[-0.00075879710493609,-0.04986323043704,-0.040307734161615],[0.018787438049912,-0.011870543472469,-0.0056042266078293],[0.031160401180387,-0.049495685845613,0.031259655952454]],[[-0.0012959734303877,0.043769109994173,-0.047791074961424],[-0.023760626092553,-0.00038944580592215,-0.0062578031793237],[0.049915086477995,0.071509696543217,0.07116112858057]],[[0.091081194579601,-0.013403030112386,0.041191406548023],[-0.011021335609257,-0.048562992364168,-0.0092886872589588],[-0.042309463024139,-0.077988483011723,-0.0054247719235718]],[[0.038568187505007,0.03988191857934,-0.04775782302022],[-1.1881024875038e-05,-0.024621548131108,0.059444431215525],[-0.057970479130745,0.0010342135792598,0.051722373813391]],[[-0.0087819835171103,-0.03454690054059,0.027347914874554],[0.050669759511948,-0.036401815712452,0.037475697696209],[0.035255916416645,-0.025546073913574,-0.0012621019268408]],[[-0.049959138035774,-0.038356836885214,-0.0034978096373379],[-0.012977161444724,-0.038241866976023,-0.068808518350124],[-0.010601386427879,0.019701730459929,0.055225308984518]],[[0.05874115973711,0.046104930341244,0.078105606138706],[0.064195267856121,0.010153830982745,-0.036147486418486],[-0.036661792546511,-0.032834678888321,-0.0091767916455865]],[[0.037566900253296,-0.063068799674511,0.0062613291665912],[-0.017679713666439,0.0474535189569,-0.077759891748428],[0.060579989105463,-0.040898766368628,0.041833899915218]],[[-0.0048759304918349,0.033154156059027,0.016213458031416],[-0.052980192005634,-0.05583718419075,0.073258325457573],[0.018957514315844,0.016399431973696,-0.032515585422516]],[[0.007618322968483,-0.075749114155769,0.032543286681175],[-0.0053415088914335,-0.027745859697461,0.068781957030296],[-0.024879055097699,0.027893638238311,0.087626561522484]],[[0.0093324687331915,0.037290371954441,0.020673288032413],[0.016754167154431,0.077680267393589,0.0062338751740754],[0.0057864249683917,-0.032661061733961,-0.018497409299016]],[[-0.046666081994772,0.017953287810087,0.01733161509037],[-0.029417341575027,-0.042838502675295,-0.046082679182291],[-0.0058227339759469,-0.069180607795715,-0.044245198369026]],[[-0.01051870547235,-0.093486078083515,-0.039831694215536],[-0.012968223541975,-0.0080375401303172,-0.019898969680071],[-0.010645467787981,0.030814565718174,0.047373626381159]],[[-0.011714485473931,-0.070184357464314,0.095742233097553],[-0.0044626756571233,0.069096401333809,-0.031909178942442],[0.06565073132515,0.075962379574776,-0.01494216080755]],[[-0.0025101606734097,-0.059184212237597,0.0052639432251453],[0.021261131390929,-0.0094777476042509,0.019746134057641],[-0.030976813286543,-0.067634522914886,0.053965982049704]],[[-0.0062620998360217,0.030132027342916,0.041022010147572],[-0.078474789857864,0.012834049761295,-0.0025182380340993],[-0.037410996854305,0.071862444281578,-0.0071501978673041]],[[0.03018874488771,-0.027747493237257,0.028279837220907],[0.0061273789033294,-0.035086799412966,-0.021278642117977],[0.060888320207596,0.007683343719691,0.0057323528453708]],[[-0.087494365870953,-0.0064152362756431,0.011842074804008],[-0.054294064640999,0.0058142528869212,0.061006184667349],[0.068824835121632,0.005354642868042,-0.0045414813794196]],[[-0.049779683351517,-0.016248505562544,-0.017501661553979],[-0.013792138546705,0.022202480584383,0.049329243600368],[-0.029309192672372,-0.0060645421035588,0.05570961907506]],[[-0.042844045907259,0.015945162624121,0.040977202355862],[-0.015110456384718,-0.050455793738365,0.049154225736856],[-0.029968217015266,0.018878940492868,-0.0032749038655311]],[[-0.038192577660084,0.023360410705209,0.022057557478547],[-0.11797644942999,0.027219630777836,0.025525385513902],[0.096114620566368,0.0034498935565352,-0.03671969473362]],[[0.057609803974628,0.013652334921062,0.018040055409074],[0.049698885530233,0.025626093149185,-0.0027458779513836],[-0.026403293013573,0.027150692418218,-0.013404759578407]],[[-0.0015865999739617,0.062671400606632,0.027737528085709],[0.058079417794943,-0.0019693220965564,-0.03377740830183],[0.042777240276337,-0.022948771715164,-0.02661108225584]],[[-0.0268096588552,0.082500502467155,0.044811602681875],[-0.035534661263227,-0.057460363954306,0.053729712963104],[-0.00081057549687102,0.00036895574885421,0.011804555542767]],[[-0.046822469681501,0.0028117545880377,0.025809252634645],[-0.043691717088223,-0.027403514832258,0.0047937808558345],[-0.011701913550496,-0.0576714836061,-0.0074155167676508]],[[-0.0098200961947441,0.019900707527995,0.0051181823946536],[0.013303056359291,0.027007108554244,0.0080930050462484],[0.039073836058378,0.011926049366593,0.0071501708589494]],[[0.019744351506233,-0.00086616614134982,0.036350712180138],[0.020560124889016,-0.053249705582857,0.014296448789537],[0.10328881442547,-0.014540074393153,0.03846513479948]],[[-0.075420841574669,-0.022338900715113,0.092616073787212],[0.058057643473148,0.0096608372405171,0.0079070255160332],[0.038563575595617,-0.013807602226734,0.086092412471771]],[[0.041935943067074,-0.016606422141194,-0.018464414402843],[0.054984841495752,0.022344907745719,-0.0081730354577303],[-0.030556922778487,0.028322143480182,-0.0383640229702]],[[0.062431696802378,0.0085796061903238,0.011216597631574],[0.034677889198065,0.0066469307057559,-0.050357230007648],[0.0273273345083,0.024942563846707,0.051241789013147]],[[-0.025490371510386,0.019098589196801,-0.00080850720405579],[-0.017265236005187,-0.087014630436897,-0.072201557457447],[-0.011909763328731,0.0071024955250323,-0.059573259204626]],[[-0.065781384706497,-0.018087934702635,-0.041225276887417],[0.05025951936841,-0.00018368601740804,-0.051257610321045],[-0.0054988274350762,0.0085907597094774,0.0059072240255773]],[[0.033451620489359,0.0072898166254163,0.045344144105911],[-0.091936223208904,0.0061346609145403,-0.0042672632262111],[0.033076725900173,0.078915253281593,0.056341204792261]],[[0.021247431635857,0.058730203658342,0.0045076888054609],[-0.096172332763672,-0.018282746896148,0.060468588024378],[0.015145679935813,-0.014937383122742,-0.021641090512276]],[[0.07525459676981,0.032660845667124,0.017674066126347],[-0.023132164031267,-0.0496736317873,0.02501336298883],[-0.058720964938402,-0.025571674108505,-0.0024171371478587]],[[0.013006972149014,0.027065314352512,-0.00035307349753566],[0.064992092549801,-0.047699876129627,-0.011173251084983],[-0.015642683953047,0.018094442784786,0.022214196622372]],[[-0.0051217349246144,-0.040591698139906,0.012512019835413],[0.028289986774325,-0.098667554557323,-0.027647281065583],[0.0094129871577024,0.017423158511519,-0.076161414384842]],[[0.023664742708206,0.054978281259537,-0.028262779116631],[-0.049580693244934,-0.030978938564658,0.041492324322462],[-0.067415028810501,-0.03744575753808,0.074361525475979]],[[-0.07731319218874,-0.035058803856373,0.038984306156635],[0.057680193334818,-0.044235650449991,0.019762935116887],[0.0033586411736906,-0.02242524176836,-0.028500631451607]],[[-0.0036932923831046,0.060906980186701,0.015116872265935],[0.011114324443042,-0.022735824808478,-0.0019975199829787],[-0.076359555125237,-0.0090445457026362,0.033183287829161]],[[-0.028758868575096,-0.055368714034557,0.019145235419273],[0.0072277071885765,-0.031111035495996,0.024421652778983],[0.061027124524117,-0.063608512282372,-0.045865520834923]],[[-0.020241899415851,0.025046238675714,-0.036676354706287],[0.0087595051154494,-0.067136384546757,0.014685312286019],[0.019978256896138,0.046563636511564,-0.028254622593522]],[[0.01582077331841,-0.06415506452322,0.04000923037529],[-0.028410309925675,0.023739416152239,0.072935655713081],[0.07590389996767,0.046575330197811,-0.065109767019749]],[[-0.066314294934273,0.044776476919651,-0.022849306464195],[-0.0054460689425468,-0.0025665450375527,-0.0080433422699571],[0.099127925932407,-0.046718221157789,0.054822251200676]],[[-0.024869088083506,0.014511563815176,0.013552370481193],[0.063338860869408,0.0060775526799262,-0.056907407939434],[0.0019292174838483,0.017976390197873,0.0042404015548527]],[[0.051657006144524,-0.025646895170212,0.04871828109026],[0.060859907418489,-0.022071985527873,0.01904658600688],[-0.066946372389793,0.011123306117952,0.0019312195945531]],[[0.036487516015768,-0.0039674518629909,0.058592710644007],[0.04202638566494,0.025277718901634,-0.040173448622227],[0.028614226728678,0.0025582446251065,0.048231743276119]],[[0.0081389751285315,-0.0091124139726162,-0.038326501846313],[-0.068670488893986,0.041412495076656,0.084954991936684],[0.02756237052381,-0.031181950122118,0.019994460046291]],[[-0.043954260647297,-0.0097468607127666,-0.035327143967152],[0.033642306923866,-0.022117109969258,-0.092819042503834],[-0.027738083153963,-0.0046690898016095,0.012839916162193]],[[0.049508579075336,0.035404238849878,0.025352707132697],[-0.02978197671473,0.020370617508888,-0.02529002353549],[-0.013242400251329,0.066212274134159,-0.051615700125694]],[[0.089641518890858,0.042229197919369,-0.015217546373606],[-0.0092106610536575,-0.004381310660392,0.041815593838692],[0.049408283084631,0.038293227553368,0.041912350803614]],[[0.048422232270241,-0.076135344803333,0.038428690284491],[-0.0063829435966909,0.03615253791213,0.031094951555133],[-0.0013417492154986,-0.061662647873163,-0.015452144667506]],[[0.038640163838863,0.0043213255703449,-0.04754164069891],[0.0015693078748882,0.051963411271572,0.021029723808169],[-0.019960997626185,-0.016451107338071,-0.037905193865299]],[[-0.0071397684514523,0.033569563180208,-0.032778054475784],[-0.005413721781224,0.036176212131977,-0.078181691467762],[0.098463527858257,-0.073000989854336,0.0076859258115292]],[[-0.05908316001296,-0.042470864951611,-0.017635207623243],[0.048026412725449,-0.0090824933722615,-0.0042141634039581],[0.024708645418286,-0.024661395698786,-0.018623931333423]],[[0.07970167696476,-0.0073843342252076,-0.00032588961767033],[0.051647584885359,-0.063458152115345,0.043731939047575],[-0.015658499673009,0.018447674810886,-0.00036593287950382]],[[0.026622001081705,0.00093100371304899,0.022137949243188],[0.010152298957109,0.0031224931590259,0.0022515004966408],[-0.068587519228458,-0.035596873611212,-0.033469285815954]],[[0.10183953493834,-0.046297091990709,-0.022618448361754],[-0.025072300806642,0.012888237833977,0.010022745467722],[0.034589283168316,0.013902483507991,-0.010518638417125]],[[0.025491023436189,0.039534572511911,0.055899500846863],[0.03617799282074,-0.04592751711607,0.002658799989149],[0.057763714343309,0.045842710882425,0.029091320931911]],[[-0.023211074993014,0.053585909307003,0.0067641846835613],[0.0012779204407707,-0.0081195002421737,-0.07484021037817],[-0.012431105598807,0.022948415949941,0.057359170168638]],[[0.0084445392712951,0.03172417357564,0.01826055906713],[0.066260732710361,0.061283800750971,-0.072698451578617],[0.027039367705584,0.063137106597424,0.05665622279048]],[[-0.065362885594368,0.030457351356745,-0.011786956340075],[0.024482553824782,0.059953838586807,0.010648232884705],[-0.016105569899082,-0.030208600685,-0.052343960851431]],[[-0.092129863798618,-0.11852899938822,0.13070133328438],[-0.067491844296455,0.022078799083829,-0.0004269456549082],[0.076667688786983,0.052276864647865,0.050566613674164]],[[-0.022614924237132,-0.085043914616108,-0.033361122012138],[0.044757213443518,-0.0004355231358204,0.043767865747213],[-0.033897057175636,-0.0020932487677783,-0.11209674179554]],[[-0.010392246767879,-0.040896002203226,-0.023119380697608],[0.011432160623372,-0.067668363451958,0.056358870118856],[0.072582483291626,-0.029083022847772,-0.01151739154011]],[[0.043678313493729,0.0140909710899,0.017290176823735],[0.030502373352647,-0.02918846718967,-0.016595607623458],[-0.021406101062894,0.017562361434102,0.10584051162004]],[[0.0093463454395533,0.09393472969532,0.011248244903982],[0.010515933856368,0.019844571128488,0.030258797109127],[-0.045261923223734,-0.006541243288666,0.075032919645309]],[[0.018015427514911,0.0015499993460253,0.058987725526094],[-0.023579796776175,0.00096360180759802,0.065045312047005],[-0.05179513245821,0.016053568571806,0.037686944007874]],[[-0.037506610155106,-0.018059104681015,0.023446144536138],[0.05911572650075,-0.02109625376761,-0.0081435488536954],[0.05836808681488,-0.0070953834801912,-0.021651770919561]],[[0.061689417809248,0.01478323712945,0.028714463114738],[-0.068685345351696,-0.062198955565691,0.0040046502836049],[-0.045722648501396,0.10177706927061,0.020657243207097]],[[-0.028133423998952,-0.0081884805113077,0.11006224155426],[-0.01524203736335,-0.0015394847141579,0.016444182023406],[0.051860775798559,0.075883209705353,0.048902243375778]],[[0.059776607900858,-0.035017989575863,-0.048384021967649],[-0.082771383225918,0.021170688793063,0.073289602994919],[-0.028543939813972,0.027876982465386,0.026137940585613]],[[-0.019318781793118,0.0012449151836336,0.046150930225849],[0.0046420893631876,0.022788602858782,0.067680850625038],[-0.075675927102566,-0.047810968011618,0.043915700167418]],[[0.034692201763391,0.078849546611309,-0.036383580416441],[0.012775640934706,0.033378224819899,-0.022009950131178],[-0.023750480264425,-0.048561684787273,0.016249492764473]],[[-0.032448306679726,0.036212563514709,0.015150208026171],[-0.017059771344066,-0.0012789746979252,0.050307407975197],[0.025896605104208,0.042753484100103,-0.072239734232426]],[[-0.024100659415126,0.0294936504215,-0.040967378765345],[0.029420299455523,0.089200988411903,-0.038999766111374],[-0.070879429578781,0.018474064767361,0.001000753720291]]],[[[-0.01373981218785,-0.04943972080946,0.062009964138269],[-0.013044210150838,-0.0075704609043896,0.014689492061734],[-0.046664666384459,-0.015321165323257,0.063738703727722]],[[-0.0030557862482965,-0.020624408498406,-0.086449824273586],[0.078958787024021,-0.049745436757803,-0.062396537512541],[0.027401344850659,-0.094183869659901,-0.010634424164891]],[[-0.023970063775778,0.042967341840267,0.20534385740757],[-0.084082879126072,0.11503132432699,0.06543242931366],[-0.34594339132309,0.10691301524639,0.070286221802235]],[[0.017958289012313,0.0068871933035553,-0.03265144303441],[0.02929356135428,-0.0096859969198704,0.0013802978210151],[-0.050392687320709,0.045381542295218,-0.036879204213619]],[[-0.019153377041221,-0.023357640951872,0.010424934327602],[-0.045946251600981,-0.073900207877159,-0.03790346160531],[-0.092506796121597,-0.036422807723284,-0.072597496211529]],[[-0.042456716299057,-0.042877428233624,0.075150057673454],[-0.025078356266022,0.031149381771684,0.087464697659016],[0.019019337370992,-0.043002735823393,0.049512263387442]],[[0.057917702943087,0.0026355811860412,-0.078437119722366],[0.08352930098772,-0.0215820427984,0.0027089263312519],[-0.045348353683949,-0.087280310690403,-0.046879511326551]],[[0.070143572986126,0.035242687910795,0.060417827218771],[0.11321165412664,0.035680297762156,-0.053642693907022],[-0.079449512064457,-0.048964742571115,0.038080342113972]],[[-0.0095887733623385,-0.030973950400949,-0.049680113792419],[-0.060326039791107,0.028895769268274,0.050650909543037],[0.0024466221220791,-0.021554885432124,0.010747547261417]],[[0.044670902192593,0.048755243420601,0.10489343106747],[-0.052880439907312,-0.03402965888381,0.053048953413963],[0.048392783850431,-0.078294411301613,0.057086262851954]],[[0.0025248939637095,0.044147714972496,0.021029086783528],[-0.027570310980082,0.038312308490276,0.022400690242648],[0.0029905955307186,0.011566791683435,0.053332228213549]],[[0.059341549873352,0.093132756650448,-0.05208707973361],[-0.00084452098235488,-0.043005768209696,-0.038044687360525],[-0.05075516551733,0.02292599901557,-0.015684513375163]],[[0.014115209691226,0.022844914346933,-0.060390546917915],[0.050997216254473,-0.0026996517553926,-0.036419048905373],[0.033922959119081,0.025923069566488,0.0024156421422958]],[[-0.0038993500638753,0.045953810214996,-0.02696280553937],[0.07604043930769,-0.031206848099828,-0.045355036854744],[0.088313736021519,0.14352786540985,-0.016655499115586]],[[-0.042262546718121,-0.0017798044718802,-0.015446147881448],[0.015054622665048,-0.02894764021039,0.016380520537496],[0.013894359581172,0.026868073269725,-0.033459220081568]],[[0.043409541249275,0.057027015835047,0.090119332075119],[0.046453833580017,0.031903401017189,-0.0066323503851891],[-0.012457109056413,0.0020248712971807,0.0013788185315207]],[[0.02879736199975,0.058251641690731,-0.13105756044388],[-0.010917740873992,-0.081105969846249,-0.019755626097322],[-0.072695635259151,0.0084287002682686,0.068311646580696]],[[0.023174520581961,0.011462467722595,-0.064502909779549],[-0.024603003636003,-0.11416627466679,-0.025032311677933],[0.048010662198067,0.10037619620562,0.0696145221591]],[[-0.0090026371181011,0.03257342800498,-0.041877333074808],[0.02431951649487,-0.10042724013329,-0.099257774651051],[0.0036808100994676,-0.010258964262903,-0.0053380439057946]],[[-0.022871073335409,-0.011099513620138,-0.065379850566387],[-0.013499145396054,-0.01134436018765,0.042958498001099],[0.0066094272769988,0.084136962890625,0.0016924905357882]],[[-0.01511025801301,0.013333295471966,-0.03986931592226],[0.01239565666765,0.0069013093598187,-0.046121299266815],[-0.012486031278968,-0.045192584395409,-0.022231686860323]],[[0.063307166099548,0.017930807545781,-0.10315658152103],[0.10395561158657,0.040835924446583,-0.034328524023294],[0.11614798009396,-0.015566856600344,-0.025492519140244]],[[0.037230480462313,-0.0011454847408459,0.16596688330173],[0.014357409439981,-0.11271130293608,-0.0085937334224582],[-0.07991998642683,0.057028736919165,-0.0047224634326994]],[[-0.023793321102858,-0.041688043624163,0.044295348227024],[0.065330870449543,0.13610206544399,0.024623390287161],[0.065709434449673,0.055694229900837,-0.013712538406253]],[[-0.026895143091679,0.040030438452959,0.03277188912034],[-0.047887116670609,0.027847493067384,0.013808294199407],[-0.014644875191152,0.044927392154932,0.044569030404091]],[[-0.0054806238040328,0.024965794757009,0.042651418596506],[0.017137026414275,-0.01180868037045,-0.048044722527266],[-0.035702060908079,0.0094213858246803,0.091397292912006]],[[-0.013172127306461,0.12117167562246,0.041941925883293],[-0.056754406541586,0.018826559185982,-0.045138858258724],[-0.041830740869045,0.060525633394718,-0.021652581170201]],[[0.0041740676388144,-0.050477106124163,-0.050567414611578],[0.028902761638165,-0.0088268294930458,0.023290766403079],[0.044309590011835,-0.014183377847075,0.024164253845811]],[[-0.029042890295386,-0.038252327591181,-0.077927716076374],[-0.057536173611879,-0.035607118159533,0.10585129261017],[0.081477023661137,-0.015191073529422,-0.026156593114138]],[[-0.059392455965281,-0.0041167736053467,0.076876580715179],[0.026496520265937,-0.019136814400554,-0.030864553526044],[-0.016421768814325,-0.026257736608386,0.087698608636856]],[[-0.092942491173744,0.011355822905898,0.0032433832529932],[-0.064163982868195,0.027959190309048,0.064333654940128],[0.027217464521527,0.030256988480687,0.06995253264904]],[[-0.068435028195381,0.13119795918465,0.068026192486286],[0.020439172163606,0.010646420530975,0.077711313962936],[-0.047760754823685,-0.026812348514795,0.026845058426261]],[[-0.032454006373882,0.021757274866104,0.010678995400667],[0.071039982140064,0.031995382159948,0.029731288552284],[0.029311552643776,0.048883970826864,0.092472806572914]],[[-0.031906433403492,-0.035873584449291,-0.012603153474629],[0.13589714467525,0.057509064674377,0.014626086689532],[-0.0059464350342751,0.10296364873648,-0.0026068654842675]],[[-0.034444537013769,-0.051600016653538,-0.044452447444201],[-0.022143172100186,-0.011019440367818,-0.10299833863974],[0.10047525167465,0.057273827493191,-0.011395698413253]],[[-0.029587894678116,0.019922018051147,-0.033711917698383],[-0.010326682589948,-0.068975664675236,0.027573723345995],[0.018871553242207,-0.024412501603365,0.00061421317514032]],[[-0.069818109273911,-0.01177844684571,0.049760103225708],[-0.064143821597099,-0.02775539830327,-0.047365117818117],[0.031927909702063,0.024394137784839,0.040504407137632]],[[-0.057242546230555,0.01270355656743,-0.032460451126099],[0.047731596976519,-0.0090593788772821,0.015620647929609],[0.060428746044636,0.14629256725311,0.054394271224737]],[[-0.03260088339448,-0.0064093982800841,-0.016554795205593],[0.11304973810911,-0.096244275569916,-0.037954535335302],[-0.0069472300820053,-0.014209468849003,-0.02326768822968]],[[0.029353771358728,0.024765221402049,-0.064932443201542],[0.031519155949354,-0.042667161673307,0.046900026500225],[-0.095068164169788,0.037112236022949,0.11871409416199]],[[0.024538796395063,-0.0087910555303097,-0.024044463410974],[-0.0012024138122797,-0.055824629962444,-0.024411728605628],[0.092766933143139,-0.0086378771811724,0.05312380567193]],[[0.00091488671023399,0.062947705388069,0.13429653644562],[0.059698104858398,-0.087796814739704,0.05973382294178],[0.056226406246424,0.0063195978291333,-0.00037404533941299]],[[0.031950272619724,0.036144196987152,0.069969289004803],[0.03741043061018,0.0058068507350981,0.039667073637247],[-0.082600720226765,0.041224770247936,0.084123320877552]],[[0.069635115563869,0.027955498546362,-0.029164975509048],[-0.017757132649422,0.023316688835621,-0.082454651594162],[-0.0051278974860907,-0.017023494467139,-0.022234253585339]],[[-0.037804204970598,0.02074433863163,-0.0097749391570687],[0.0064924601465464,0.028473161160946,0.078924544155598],[-0.018471015617251,0.019320702180266,0.0024031391367316]],[[-0.034594275057316,-0.043771684169769,0.057772688567638],[0.04787140339613,0.014617287553847,0.040106695145369],[0.02893752977252,0.0073167909868062,-0.023701369762421]],[[0.083942949771881,0.020355585962534,-0.0013489263365045],[0.027898048982024,0.0082747964188457,-0.019845325499773],[0.0086630275472999,0.015940191224217,-0.0061126085929573]],[[0.074956737458706,0.0077518280595541,-0.057884227484465],[-0.1081280335784,-0.026126995682716,-0.082072392106056],[-0.015033161267638,0.0065347361378372,-0.16154529154301]],[[-0.054337199777365,-0.01046244893223,-0.060274470597506],[0.0039886143058538,-0.032843418419361,-0.085336044430733],[-0.094582609832287,0.099265910685062,0.044986046850681]],[[-0.015984199941158,0.0089514944702387,-0.019320571795106],[0.028894798830152,-0.053359877318144,0.035501230508089],[-0.070065073668957,-2.8764652597602e-05,-0.031468935310841]],[[0.090548969805241,-0.011835671029985,0.032171957194805],[0.057429444044828,0.02940522134304,0.0090468311682343],[0.053678400814533,-0.086829967796803,-0.029108611866832]],[[0.043476890772581,-0.033708091825247,0.037387736141682],[0.089359752833843,-0.0084949294105172,0.0030444720759988],[0.096839971840382,-0.035019226372242,-0.04362965002656]],[[0.0088200028985739,0.024736257269979,0.047069173306227],[0.079114735126495,-0.018223643302917,0.01444380171597],[-0.012100895866752,-0.038669429719448,-0.010624303482473]],[[0.091252043843269,0.060420833528042,-0.054813925176859],[0.01146596763283,0.010318190790713,0.059829656034708],[-0.04470869153738,0.057947386056185,-0.052710771560669]],[[-0.012455337680876,0.0055229878053069,0.043735846877098],[0.033893771469593,0.015003111213446,0.030068350955844],[0.042932625859976,-0.0066600646823645,-0.042920969426632]],[[0.11989468336105,0.050049908459187,0.041498199105263],[-0.061839427798986,-0.060880579054356,0.055609054863453],[-0.073676988482475,0.075457364320755,0.003832746297121]],[[0.027365993708372,-0.0046347426250577,0.084107175469398],[0.0037842819001526,0.028260400518775,0.0087198466062546],[0.0094285551458597,0.055272027850151,0.040385592728853]],[[-0.11462730169296,0.012250906787813,0.10054299980402],[0.014350231736898,-0.011576991528273,-0.083893813192844],[-0.011425916105509,-0.034284852445126,0.14808960258961]],[[0.016293546184897,0.12828889489174,-0.0039918827824295],[-0.069602027535439,0.12558868527412,-0.123998247087],[-0.094624906778336,-0.0011232019169256,0.03832646086812]],[[-0.010780159384012,0.0019727402832359,-0.015979258343577],[0.010213569737971,-0.024511056020856,-0.011015410535038],[0.038203727453947,0.016822623088956,0.064144134521484]],[[-0.0064912480302155,-0.069352596998215,0.029963478446007],[-0.037314455956221,0.034194145351648,-0.022294621914625],[-0.087601490318775,-0.041900224983692,-0.046361450105906]],[[-0.001369048259221,0.018987717106938,-0.039755053818226],[0.044698171317577,0.01971841417253,0.066374197602272],[0.0024092101957649,0.038203429430723,-0.056961365044117]],[[-0.0074659083038568,0.063428483903408,-0.14430464804173],[-0.1179197281599,0.0059494390152395,-0.020013514906168],[-0.034177612513304,-0.00044185062870383,0.047326806932688]],[[-0.0096841584891081,0.02897872403264,0.10608536750078],[0.0034897699952126,0.038151796907187,-0.053602691739798],[-0.011073197238147,-0.11203548312187,0.0030446080490947]],[[-0.035508926957846,0.048814199864864,0.020263209939003],[0.068740658462048,-0.046857718378305,-0.017372868955135],[-0.00151073676534,-0.12121085822582,-0.036095947027206]],[[-0.04356087371707,0.011215916834772,-0.006964098662138],[-0.02488350123167,0.0076432921923697,-0.049933187663555],[0.14814828336239,-0.08003031462431,-0.069622159004211]],[[0.013918746262789,-0.045178856700659,-0.054308366030455],[0.063365802168846,0.056269086897373,-0.016040956601501],[-0.064995959401131,0.018097756430507,0.067089013755322]],[[0.014065410010517,0.050208002328873,-0.11438342928886],[-0.051778011023998,-0.048760365694761,-0.043139904737473],[-0.053548865020275,-0.0089583126828074,0.054198078811169]],[[0.02581031806767,-0.010648785158992,0.046986810863018],[0.017753878608346,-0.018462328240275,0.078724853694439],[0.022446310147643,-0.0089786760509014,0.10805431008339]],[[-0.029725363478065,-0.021481608971953,-0.06929737329483],[0.026435513049364,0.0044288500212133,-0.047334138303995],[-0.011045250110328,0.0040632477030158,-0.074114710092545]],[[-0.010522897355258,-0.045092321932316,0.026788827031851],[0.043613810092211,0.081009700894356,0.15634180605412],[0.036428518593311,-0.15709465742111,0.033402003347874]],[[-0.029012270271778,0.0059092394076288,0.032100766897202],[0.054234586656094,0.052597165107727,0.14439648389816],[-0.11408205330372,-0.066190429031849,-0.090472310781479]],[[0.031586680561304,-0.049712587147951,-0.06097624823451],[-0.032870437949896,-0.069354899227619,-0.050188388675451],[-0.031823955476284,-0.097084008157253,-0.053052622824907]],[[0.032416723668575,-0.0771154910326,-0.036759559065104],[-0.15154522657394,-0.018344586715102,0.027066508308053],[-0.027649993076921,0.083551667630672,-0.056333858519793]],[[-0.073806680738926,0.025266187265515,-0.04967238008976],[-0.032842621207237,0.01368460431695,0.085411041975021],[-0.0074535212479532,0.01215769443661,-0.052913475781679]],[[-0.035859558731318,-0.050200544297695,-0.027637083083391],[0.017042240127921,-0.024646667763591,-0.0025358891580254],[-0.023818902671337,0.067054525017738,0.078800573945045]],[[-0.071300968527794,-0.11021663248539,0.066138751804829],[-0.046821255236864,-0.054286759346724,0.027262322604656],[-0.023793196305633,-0.072421960532665,0.042939636856318]],[[0.0060650496743619,0.030801748856902,0.050996113568544],[-0.011478958651423,0.10885988175869,0.059494841843843],[-0.062185499817133,0.14214330911636,0.020711578428745]],[[0.014980349689722,-0.016488078981638,-0.051312178373337],[0.17330524325371,0.014131182804704,-0.038435909897089],[0.065547809004784,-0.027413742616773,-0.12541721761227]],[[0.025562638416886,-0.059639237821102,-8.0901081673801e-06],[0.047413591295481,-0.0031138635240495,-0.08133427798748],[-0.002321663312614,0.05400076135993,0.048580497503281]],[[-0.026403496041894,-0.068924397230148,-0.030925322324038],[-0.030999736860394,-0.057580340653658,-0.032641347497702],[0.033059623092413,0.052222318947315,-0.013757109642029]],[[-0.050395932048559,0.042955610901117,0.012789064086974],[0.19099207222462,0.1866779178381,0.092876322567463],[0.054538987576962,-0.081403449177742,0.040091887116432]],[[-0.14642752707005,-0.039806962013245,-0.037096008658409],[-0.10552072525024,-0.023595618084073,0.065353959798813],[0.038069870322943,0.063082784414291,0.0039392118342221]],[[-0.046584121882915,0.035649541765451,0.074253432452679],[-0.021921906620264,0.042438682168722,0.069648876786232],[-0.052328158169985,0.028207678347826,0.091587543487549]],[[0.060294833034277,0.066691800951958,-0.0070080263540149],[0.10275211185217,0.049647636711597,-0.026067230850458],[0.035036932677031,-0.014735385775566,-0.06186942756176]],[[-0.14927117526531,-0.027630273252726,0.0091718984767795],[0.020415436476469,0.04637848213315,-0.0055334460921586],[0.026441676542163,-0.048154093325138,0.075870469212532]],[[0.02809801325202,0.088628992438316,-0.053675387054682],[0.10666406899691,0.070956945419312,0.087085947394371],[-0.025539068505168,0.054899144917727,0.104512155056]],[[0.084026850759983,0.02015651203692,-0.013518032617867],[0.052157323807478,0.0027871453203261,-0.12310168147087],[0.0053995936177671,-0.014370488002896,0.020058559253812]],[[0.024945909157395,0.10660497099161,-0.076966606080532],[0.082129932940006,-0.050991650670767,-0.018794352188706],[-0.013533171266317,0.040197178721428,0.069569572806358]],[[-0.029362818226218,0.060563921928406,0.11460956186056],[-0.038484804332256,0.05898617208004,0.081629939377308],[-0.062011823058128,-0.12547719478607,-0.012286246754229]],[[-0.10943941771984,0.076535493135452,0.01320518180728],[0.051383040845394,0.043185792863369,0.11986445635557],[0.018446862697601,0.014491935260594,0.099062785506248]],[[-0.02623326331377,0.038098141551018,0.032067190855742],[-0.034776326268911,-0.096302464604378,-0.020407246425748],[-0.034412886947393,-0.071710921823978,-0.086380690336227]],[[0.044348739087582,0.023162368685007,-0.027952114120126],[-0.014242943376303,-0.020753983408213,-0.0073905438184738],[-0.036143179982901,0.064197674393654,0.014970164746046]],[[-0.10200272500515,-0.16609145700932,0.065517790615559],[-0.011508184485137,0.085228532552719,0.093294262886047],[0.054168287664652,-0.0078280791640282,-0.01771018281579]],[[-0.036940935999155,-0.07112293690443,-0.06959767639637],[-0.065870456397533,-0.12172968685627,0.0049714157357812],[-0.083651505410671,-0.051264483481646,-0.040106769651175]],[[-0.023809129372239,0.009341630153358,-0.011735399253666],[0.12317933142185,-0.016563581302762,0.038619041442871],[0.029384599998593,-0.01572690717876,-0.061162173748016]],[[0.0419244132936,-0.01196913048625,-0.13587060570717],[-0.026666969060898,0.085432946681976,0.035485994070768],[-0.056196540594101,-0.035337895154953,-0.044802881777287]],[[0.086730845272541,0.071228869259357,0.02386193536222],[-0.056950841099024,0.068961165845394,0.13514298200607],[-0.017853960394859,0.028616670519114,0.077896125614643]],[[0.011142266914248,-0.033625140786171,0.079702638089657],[-0.02037800475955,-0.013981104828417,0.027073787525296],[-0.049284860491753,0.0064179641194642,0.082224480807781]],[[0.010433096438646,0.054052010178566,0.070036590099335],[0.01447731629014,-0.040113814175129,0.010425589978695],[0.037784699350595,0.033349126577377,0.050676792860031]],[[0.044184342026711,-0.057148922234774,0.10705803334713],[0.018945198506117,-0.13358119130135,-0.11482354253531],[-0.060105342417955,-0.078923217952251,0.033060435205698]],[[-0.10457706451416,-0.068716585636139,0.024850394576788],[0.0066844066604972,-0.0249497089535,-0.020759588107467],[0.029430579394102,0.016252923756838,-0.063013963401318]],[[0.10446677356958,0.090841114521027,-0.029174573719501],[-0.057630065828562,-0.044586930423975,0.034842483699322],[-0.028916526585817,-0.015326113440096,-0.14090836048126]],[[-0.083520196378231,-0.11310578882694,0.0093509387224913],[-0.025084637105465,0.0094820884987712,-0.054492615163326],[-0.009537355042994,-0.028107395395637,-0.040311228483915]],[[0.022292690351605,-0.064788781106472,-0.021511681377888],[0.029031530022621,-0.0054786303080618,-0.08659303188324],[0.23091566562653,0.069518387317657,-0.064589962363243]],[[-0.039360500872135,0.032087121158838,0.046761732548475],[0.0359819047153,0.001376259024255,0.053449276834726],[-0.022182274609804,-0.033656716346741,0.036905564367771]],[[0.11557900160551,0.06585805863142,-0.051013540476561],[0.018149845302105,0.03635062277317,-0.04631507024169],[-0.025281675159931,-0.017074996605515,0.11480409651995]],[[-0.058597840368748,-0.058280907571316,-0.034352205693722],[0.022413885220885,-0.03669448569417,-0.0084151336923242],[-0.0025191914755851,-0.0055119111202657,0.033455360680819]],[[0.057335745543242,-0.0053350478410721,-0.075955353677273],[-0.047626875340939,-0.068038053810596,0.020750377327204],[-0.050674840807915,0.055418450385332,-0.13408471643925]],[[0.053845606744289,-0.023554110899568,0.044819623231888],[0.04265508800745,0.096510209143162,-0.027241298928857],[0.0032781767658889,0.069394536316395,0.025583479553461]],[[-0.042515072971582,-0.057336989790201,0.027856597676873],[-0.053531780838966,-0.03410218283534,0.021139500662684],[0.034473493695259,0.013595592230558,0.026719093322754]],[[-0.037717025727034,0.030062889680266,-0.020224137231708],[0.036626499146223,-0.021823352202773,-0.03357258439064],[-0.10262993723154,0.017828244715929,-0.0025967583060265]],[[-0.070958517491817,-0.12977476418018,-0.066481538116932],[0.0026192981749773,-0.03776528686285,0.063737384974957],[-0.044572237879038,0.017303952947259,-0.00418058084324]],[[0.11346878856421,0.017036167904735,-0.076526075601578],[-0.046724170446396,-0.00051457580411807,-0.022512814030051],[-0.018448226153851,-0.055609222501516,-0.0015049076173455]],[[0.040631175041199,-0.010732237249613,-0.091070435941219],[0.1163347736001,0.019448881968856,0.0014256708091125],[0.12326090037823,-0.047767534852028,0.13666512072086]],[[-0.023514254018664,0.042312514036894,-0.030694471672177],[-0.05066055804491,-0.094304583966732,-0.12382383644581],[0.024606728926301,0.082883015275002,-0.019811937585473]],[[0.040457174181938,-0.081759922206402,-0.062464259564877],[0.010173767805099,0.016302721574903,-0.00025975445169024],[0.0036721343640238,-0.026480760425329,0.038841068744659]],[[-0.018754411488771,0.0084177842363715,-0.0072605074383318],[-0.0094476658850908,0.019611686468124,-0.0040771309286356],[-0.1227636039257,-0.1282614171505,0.021863479167223]],[[0.0065058749169111,-0.07175750285387,0.015911687165499],[-0.014120437204838,0.10115623474121,0.035645961761475],[0.013978755101562,-0.0040548737160861,-0.030438143759966]],[[0.028384562581778,0.080123893916607,-0.011205424554646],[0.012470055371523,0.1584852039814,0.044437397271395],[0.011195803061128,0.16749618947506,0.0015971775865182]],[[-0.025806479156017,-0.061555679887533,0.032542239874601],[0.092398539185524,-0.094037547707558,-0.023055983707309],[0.02766627818346,-0.039493698626757,-0.011264562606812]],[[-0.012921782210469,0.022497806698084,-0.077081114053726],[-0.024142976850271,0.030628364533186,-0.076055534183979],[0.059444107115269,-0.011292424984276,0.12335823476315]],[[0.085490889847279,0.064708210527897,-0.076789230108261],[0.073580585420132,-0.014470670372248,-0.048636414110661],[-0.036446519196033,0.032474111765623,-0.094033285975456]],[[-0.019966028630733,0.050885710865259,0.11087863147259],[0.10148381441832,-0.083451725542545,-0.031599242240191],[0.029122134670615,-0.15479040145874,-0.098043888807297]],[[0.034061077982187,-0.025346260517836,0.071492999792099],[0.093184284865856,0.017104530707002,-0.06584806740284],[-0.02054737880826,0.042946856468916,0.064950570464134]],[[-0.060926701873541,0.035318657755852,0.18566931784153],[0.12100215256214,0.0089842760935426,-0.10055670887232],[-0.05373227596283,-0.049993142485619,0.083878621459007]],[[-0.069965913891792,0.0011134373489767,0.091142982244492],[0.072738274931908,-0.026836840435863,0.09658020734787],[0.034152984619141,0.098586104810238,0.062457825988531]],[[0.070083491504192,-0.056961137801409,-0.072681531310081],[0.096762500703335,0.04738499969244,0.054093640297651],[0.089155256748199,0.033199124038219,-0.013821897096932]]],[[[0.047052588313818,-0.045392695814371,-0.024235034361482],[-0.006338709499687,0.013617132790387,0.0080835465341806],[-0.001131093245931,-0.057059850543737,-0.0033162175677717]],[[-0.037669099867344,0.057037189602852,0.018824737519026],[-0.0043713268823922,0.040251854807138,0.0062550390139222],[-0.056592345237732,-0.027257733047009,-0.0033845372963697]],[[-0.050910260528326,0.0074668377637863,0.069437719881535],[0.0051500322297215,0.011277662590146,-0.071782164275646],[-0.019040109589696,-0.037952728569508,0.020934378728271]],[[0.013520427048206,-0.010433356277645,0.0079322652891278],[-0.020799132063985,0.021617541089654,-0.0010137592907995],[-0.089245341718197,0.022078908979893,0.01625450514257]],[[-0.04628574475646,0.0044924677349627,-0.033994797617197],[0.10706818848848,0.016841044649482,-0.06749352812767],[-0.0047294581308961,0.030046245083213,-0.027802634984255]],[[0.077771604061127,0.028761461377144,0.018043220043182],[0.021136682480574,0.011589117348194,0.057405099272728],[-0.058875143527985,-0.01148378662765,-0.040075339376926]],[[-0.0035328699741513,-0.035439021885395,-0.038394346833229],[0.059469863772392,0.040789421647787,-0.0059652207419276],[0.010357263498008,0.028272127732635,-0.01608063839376]],[[0.060094453394413,0.013863823376596,0.0077045951038599],[-0.044742308557034,-0.018729593604803,-0.006088943220675],[0.089684069156647,0.0098364930599928,0.016544280573726]],[[0.050352431833744,0.0026953741908073,-0.028364831581712],[0.049492973834276,0.0057086739689112,-0.057615049183369],[-0.05087274312973,-0.064990997314453,0.10350935161114]],[[0.022863170132041,-0.05164846777916,0.014920081943274],[0.01337007433176,0.11075397580862,-0.0037189342547208],[0.062543459236622,0.023204743862152,-0.02289079874754]],[[0.018290776759386,-0.049403294920921,-0.0046451529487967],[0.065359652042389,0.091101713478565,0.032833613455296],[0.043749541044235,-0.025694094598293,-0.050917461514473]],[[0.0091949999332428,0.0082761570811272,0.058191075921059],[0.0068230461329222,0.011276965029538,0.013934406451881],[-0.010719250887632,-0.061922185122967,-0.010026410222054]],[[0.0013504676753655,0.015972597524524,0.0038473505992442],[-0.056469868868589,0.01792961359024,-0.038355339318514],[-0.011991410516202,-0.049521785229445,-0.029280606657267]],[[-0.025122893974185,0.043566297739744,0.026313541457057],[0.0099101886153221,-0.0022514548618346,-0.037906184792519],[0.079073138535023,0.024403663352132,-0.024120466783643]],[[-0.0075423140078783,0.0079641966149211,0.043597523123026],[-0.03200164809823,0.011141602881253,-0.01126747764647],[0.05940417945385,0.025181425735354,0.039528027176857]],[[0.032975010573864,0.02366360090673,0.083235383033752],[-0.076421357691288,-0.016280427575111,-0.0041509112343192],[0.031833376735449,-0.031840313225985,0.017548967152834]],[[0.0076539875008166,-0.053969144821167,0.02372027002275],[0.032351080328226,-0.0061058723367751,-0.017107967287302],[0.029872454702854,-0.019566105678678,-0.013849642127752]],[[0.011662434786558,0.071278110146523,0.0083497427403927],[-0.0062920092605054,-0.02391342073679,0.031753852963448],[-0.014017209410667,0.011711244471371,-0.055627342313528]],[[-0.027650035917759,-0.019008569419384,0.015326564200222],[0.0043594762682915,-0.05222624540329,-0.026545522734523],[-0.02118163369596,0.0570796020329,-0.0012898463755846]],[[0.0088318241760135,0.019286649301648,-0.052127305418253],[-0.025100253522396,0.030690824612975,0.025435011833906],[-0.0043918965384364,0.080190733075142,0.030928861349821]],[[-0.12529954314232,-0.0051948819309473,0.047308541834354],[0.029787752777338,0.016230570152402,0.0083905002102256],[0.024797899648547,0.043693613260984,0.060564894229174]],[[0.018802914768457,0.022213771939278,-0.029355579987168],[0.077089712023735,0.064585566520691,-0.099746592342854],[0.0070980065502226,0.032933693379164,-0.0035761124454439]],[[0.094423212110996,-0.018371867015958,-0.0073491320945323],[0.014423745684326,0.041134130209684,-0.10671555995941],[0.021788885816932,0.043653748929501,-0.028626948595047]],[[0.0047451718710363,-0.0074587855488062,-0.0015127123333514],[-0.032872505486012,0.045429922640324,-0.034513674676418],[-0.013747204095125,-0.014909621328115,0.0045119705609977]],[[-0.066349431872368,0.033013224601746,0.10033255815506],[-0.013749498873949,-0.081711411476135,0.0062644872814417],[0.025197669863701,0.059191811829805,0.039512880146503]],[[-0.018386567011476,-0.025431031361222,0.028650114312768],[0.0082483803853393,0.051562126725912,0.027072558179498],[-0.048739641904831,0.0045818882063031,0.015115280635655]],[[-0.01793447881937,0.082274988293648,-0.017191242426634],[0.018274638801813,0.084950476884842,-0.0022778192069381],[0.0561338737607,0.0049870079383254,0.08763337880373]],[[-0.010654308833182,0.074016474187374,0.049916695803404],[-0.040201056748629,-0.081923119723797,-0.0010184452403337],[-0.002890155185014,-0.075844146311283,-0.041902873665094]],[[0.021747648715973,0.0046561048366129,0.042979471385479],[0.017948262393475,-0.00373987830244,0.095732226967812],[0.034840650856495,0.035562135279179,-0.0024068064521998]],[[0.063356913626194,-0.02928196080029,-0.030575789511204],[-0.052294965833426,-0.0084373569115996,-0.00087054981850088],[0.011851747520268,-0.051211543381214,-0.031359013170004]],[[-0.052198376506567,-0.027626898139715,-0.0042570498771966],[0.067134656012058,0.065462902188301,0.026011997833848],[0.023934280499816,0.03451656550169,-0.040724135935307]],[[-0.0014662902103737,-0.0082244873046875,-0.077562004327774],[-0.068428061902523,0.020633956417441,0.033667124807835],[-0.056217614561319,-0.0021961762104183,-0.036454685032368]],[[-0.064666867256165,0.0795673802495,-0.0039610448293388],[-0.044617481529713,-0.073812492191792,0.010962145403028],[0.057842269539833,-0.035648979246616,0.035655077546835]],[[-0.065508373081684,-0.03937105089426,0.017605615779757],[-0.028945408761501,0.021932449191809,0.03771061822772],[0.048201207071543,0.028473131358624,0.035471823066473]],[[0.053698550909758,-0.072753809392452,-0.0097253657877445],[0.033121362328529,0.034427020698786,-0.076622128486633],[0.012450037524104,0.070075653493404,0.077839821577072]],[[-0.0011450281599537,0.00094190234085545,0.025768639519811],[-0.025860413908958,-0.021591259166598,-0.0047528743743896],[-0.060062412172556,-0.0077388654462993,0.010806548409164]],[[-0.034837450832129,-0.017528213560581,-0.042357224971056],[0.023644007742405,0.052844826132059,0.00035439027124085],[-0.01051118131727,-0.04213459789753,-0.00013362360186875]],[[0.0090625658631325,0.027122061699629,0.038191232830286],[0.0048577832058072,0.0048160515725613,0.023615600541234],[-0.011380027979612,-0.03408882394433,-0.060560505837202]],[[-0.0016777327982709,0.028400210663676,0.0015611829003319],[-0.013690578751266,0.064961105585098,-0.036367055028677],[0.034943610429764,0.032741773873568,-0.07296721637249]],[[-0.072523817420006,-0.018611084669828,-0.078624911606312],[-0.03018088079989,0.032294757664204,0.00012089486699551],[0.027295647189021,-0.080468438565731,-0.025441372767091]],[[-0.075984872877598,-0.0095778685063124,0.015564475208521],[0.036830496042967,-0.042213015258312,-0.043123126029968],[-0.014331826008856,-0.0490004979074,0.028349542990327]],[[-0.085809476673603,0.047981567680836,-0.0094032064080238],[0.024802865460515,0.033477421849966,-0.070467986166477],[-0.043803993612528,0.014361025765538,0.068274907767773]],[[-0.053501486778259,0.014109257608652,0.021118512377143],[-0.051981594413519,0.052500631660223,-0.09547471255064],[-0.050292659550905,0.044915769249201,-0.049597412347794]],[[0.037260893732309,-0.0036552436649799,-0.027483629062772],[-0.01647973805666,-0.064607672393322,-0.065316930413246],[-0.0054717166349292,-0.03253497928381,-0.022106047719717]],[[-0.012232286855578,-0.05659918487072,0.070177458226681],[-0.064057148993015,-0.016596516594291,0.017490681260824],[0.016041342169046,-0.042234886437654,0.031704388558865]],[[0.075209081172943,0.047071877866983,-0.054572742432356],[-0.048961244523525,-0.11636735498905,-0.003162500448525],[-0.059746138751507,0.057882439345121,0.058242633938789]],[[-0.067956052720547,-0.016024108976126,-0.011368417181075],[-0.029886769130826,-0.0088247051462531,-0.081777714192867],[-0.06570602953434,0.025745116174221,0.027604518458247]],[[-0.0088689457625151,-0.0084311878308654,0.032443594187498],[0.02994079887867,-0.040294617414474,0.089609183371067],[0.027654642239213,0.050390996038914,-0.014900167472661]],[[-0.0053303455933928,0.00049289845628664,-0.028452491387725],[-0.032557003200054,-0.042912915349007,-0.11385542154312],[0.0062562050297856,-0.032599154859781,0.031265038996935]],[[-0.026289211586118,-0.022421225905418,0.056450292468071],[-0.028029430657625,0.039273861795664,0.013438460417092],[-0.045571472495794,-0.026056094095111,-0.068150579929352]],[[0.070673696696758,0.022458029910922,0.0031004233751446],[0.015714205801487,-0.074585147202015,0.024545151740313],[0.062414716929197,-0.013805637136102,-0.049829874187708]],[[-0.018408020958304,-0.021622899919748,0.093204975128174],[0.0078445831313729,-0.050937674939632,-0.096727058291435],[0.022508988156915,0.021422488614917,-0.016044996678829]],[[-0.071716949343681,-0.0023976522497833,0.00062029523542151],[0.040508523583412,-0.080225355923176,0.033967956900597],[0.022029353305697,0.014500821009278,0.075307793915272]],[[0.036454442888498,-0.030032370239496,0.024328868836164],[-0.095657676458359,0.013664596714079,0.049047634005547],[0.0452960729599,-0.038776643574238,-0.022534171119332]],[[-0.065910965204239,-6.6719432652462e-05,-0.054554738104343],[0.066376216709614,0.033132579177618,-0.08252439647913],[0.010426643304527,-0.056839536875486,0.0079480865970254]],[[0.027025554329157,-0.083528451621532,-0.044876094907522],[0.017652280628681,0.071982033550739,0.035093616694212],[-0.028287578374147,-0.039828468114138,0.017484562471509]],[[-0.031929466873407,-0.042861230671406,0.034498535096645],[-0.020820371806622,-0.042266942560673,0.015542920678854],[0.072466962039471,-0.016274720430374,0.025871017947793]],[[-0.023527894169092,0.025853453204036,-0.011644065380096],[-0.0058241561055183,-0.045697592198849,-0.00054345582611859],[0.005020440556109,0.036134868860245,-0.057492468506098]],[[-0.0084189176559448,0.00099905533716083,-0.010586252436042],[0.031818594783545,-0.053940396755934,-0.070924296975136],[0.018081899732351,-0.043217204511166,0.014270523563027]],[[0.027173029258847,-0.029007080942392,-0.0044125658459961],[0.024383885785937,-0.15521903336048,-0.054541986435652],[-0.091142140328884,-0.027801400050521,-0.020634599030018]],[[-0.014704765751958,0.073384508490562,0.036314226686954],[-0.014885322190821,-0.082996405661106,0.01177083235234],[-0.064685501158237,-0.01566468551755,-0.034659907221794]],[[-0.0073170717805624,0.078751407563686,0.043061297386885],[-0.018000969663262,0.013416786678135,-0.087975807487965],[0.020688366144896,-0.035929340869188,0.055785942822695]],[[0.0056885466910899,0.092810302972794,0.029637457802892],[-0.049624368548393,0.041204050183296,-0.090808212757111],[-0.047507606446743,0.090317368507385,-0.023676086217165]],[[0.083520613610744,-0.040091555565596,-0.047308944165707],[-0.073882572352886,0.020960183814168,0.042268056422472],[0.03027319163084,-0.0068985102698207,-0.0080404048785567]],[[0.010730555281043,0.029879806563258,-0.038995675742626],[-0.0169179122895,0.046559553593397,0.015305556356907],[0.049278620630503,0.013027803972363,-0.066829457879066]],[[0.0077110081911087,-0.072491928935051,-0.023841168731451],[0.015891375020146,0.0089939506724477,0.02869026735425],[-0.054778899997473,-0.070058263838291,0.031840045005083]],[[0.059427570551634,-0.043721564114094,-0.022865390405059],[0.046606384217739,-0.022645408287644,-0.0162203758955],[-0.0054713869467378,-0.026529548689723,0.047519404441118]],[[0.033548004925251,-0.021126706153154,0.022024631500244],[0.037709753960371,0.0360307097435,0.046655282378197],[0.0067543676123023,-0.095457904040813,0.001440774067305]],[[0.038574486970901,-0.04305586963892,0.041603904217482],[0.012696449644864,-0.010832590982318,0.021975474432111],[-0.015530009754002,-0.016421020030975,0.072827264666557]],[[-0.021598899737,0.069120585918427,-0.071044370532036],[-0.027576211839914,0.0093789715319872,-0.025134513154626],[-0.051552504301071,0.013205814175308,-0.079126581549644]],[[-0.0060550202615559,-0.014716602861881,-0.0023296799045056],[0.024029403924942,-0.040780980139971,-0.024587644264102],[-0.015625270083547,-0.036596309393644,-0.032506283372641]],[[0.0071573266759515,-0.00040861862362362,-0.024260077625513],[-0.024309379979968,-0.048875719308853,0.050213944166899],[-0.02800720743835,-0.021153721958399,-0.092656753957272]],[[0.015673067420721,-0.041789885610342,-0.065300107002258],[-0.021604560315609,0.056243143975735,-0.083360210061073],[-0.025649651885033,0.055480562150478,0.006200454197824]],[[-0.03612682595849,0.010216485708952,0.020033419132233],[-0.0040538022294641,-0.06139350682497,-0.026100158691406],[0.01701420918107,0.043704401701689,0.046519707888365]],[[-0.012529266998172,0.00029834418091923,0.017271751537919],[-0.013102663680911,0.023217031732202,0.051729045808315],[0.065911382436752,0.041981935501099,0.075401410460472]],[[-0.05023005977273,-0.0048326319083571,-0.056369606405497],[-0.049491506069899,0.019987965002656,0.032508514821529],[0.014000226743519,0.038599833846092,0.036259349435568]],[[0.082498654723167,0.04985111951828,-0.00044978866935708],[0.032063413411379,0.014586744830012,0.0028479159809649],[-0.013162723742425,0.050277207046747,0.074705265462399]],[[-0.039461884647608,-0.029125571250916,-0.061850685626268],[0.027197701856494,-0.014102349057794,-0.054465852677822],[0.036012604832649,0.036524593830109,0.017078200355172]],[[-0.013258238323033,-0.076286509633064,-0.014586794190109],[-0.06104027479887,0.0093807997182012,0.057771403342485],[0.037271797657013,-0.058269307017326,0.01881786249578]],[[-0.034180469810963,-0.02368051186204,0.033773172646761],[-0.0013052809517831,0.090268172323704,0.0061351847834885],[0.07424508780241,0.0005211845273152,-0.012199039570987]],[[-0.087820895016193,-0.040233928710222,-0.015036822296679],[0.023656787350774,0.011776530183852,0.034726824611425],[-0.02849468588829,0.018890688195825,-0.029186146333814]],[[-0.051288112998009,0.0092755323275924,-0.00038361753104255],[-0.040403936058283,-0.011419680900872,-0.030695486813784],[-0.049792882055044,0.0072821252979338,0.024455105885863]],[[-0.050864644348621,-0.017934264615178,-0.00054252060363069],[0.061721064150333,-0.083780750632286,0.09087598323822],[-0.046005431562662,-0.020343286916614,0.019223649054766]],[[-0.0015338984085247,-0.0065987287089229,0.032119851559401],[0.049912892282009,0.026818534359336,-0.017540516331792],[-0.067735865712166,0.03116506524384,-0.013647549785674]],[[0.029343603178859,0.0036956255789846,0.0093786707147956],[0.038528900593519,0.05748151242733,-0.022004364058375],[0.0045396853238344,0.00075278873555362,-0.046846285462379]],[[-0.0066118221729994,-0.061005268245935,0.0018111943500116],[-0.022635253146291,-0.018393455073237,-0.028509505093098],[-0.033357951790094,-0.045062344521284,-0.03198816627264]],[[0.011181402020156,0.035604704171419,0.05575530603528],[0.065170861780643,-0.060530748218298,0.040737580507994],[0.05493701249361,0.025273663923144,0.051984306424856]],[[0.0088630076497793,0.081001706421375,-0.018000315874815],[-0.020094081759453,-0.014530309475958,-0.010278296656907],[0.010923212394118,0.011539158411324,-0.060892064124346]],[[0.021162696182728,0.0034910207614303,-0.0017909246962517],[-0.036474086344242,-0.051294926553965,0.013583277352154],[-0.1062970161438,-0.0073887757025659,-0.025424346327782]],[[0.0096052382141352,-0.084494575858116,-0.098129391670227],[-0.041982334107161,0.026939298957586,0.020895227789879],[-0.067284226417542,-0.051142044365406,-0.017088819295168]],[[-0.047001212835312,0.072893179953098,0.019128061830997],[0.058902781456709,-0.039705935865641,0.029659107327461],[0.00097293505677953,-0.031854536384344,-0.021855089813471]],[[-0.022351970896125,-0.0082214586436749,0.021741326898336],[0.084466174244881,-0.016043780371547,-0.074534609913826],[-0.14400447905064,-0.000862414133735,-0.043648898601532]],[[0.062508948147297,0.032584317028522,-0.016779405996203],[-0.026850389316678,-0.019562428817153,-0.030124386772513],[-0.0121487993747,0.010987407527864,0.039324946701527]],[[-0.03067715652287,-0.022171152755618,0.038636334240437],[-0.023724801838398,0.081854663789272,0.03519669175148],[0.033459316939116,0.01214733812958,-0.0028004562482238]],[[-0.04724795371294,0.016806226223707,0.022451942786574],[0.048194136470556,0.0042237224988639,-0.010000671260059],[-0.017615895718336,-0.053038369864225,0.025831013917923]],[[-0.0062195747159421,0.078060753643513,0.054917354136705],[0.024642504751682,-0.014029311016202,-0.01407057326287],[-0.091528676450253,0.03413799777627,-0.049780867993832]],[[-0.0089339576661587,0.010882954113185,-0.029208295047283],[-0.028953205794096,0.01206926163286,0.027554167434573],[0.010449558496475,0.0011053316993639,-0.077764585614204]],[[-0.05017314106226,0.034823678433895,0.02634366042912],[0.006627144291997,0.0015431278152391,-0.075192503631115],[0.028115646913648,-0.0079919174313545,-0.011710279621184]],[[0.0089461905881763,0.027608346194029,0.024706931784749],[-0.098102711141109,0.014904311858118,-0.0055217291228473],[0.0044566239230335,-0.017233019694686,0.038720488548279]],[[-0.029049094766378,-0.011847991496325,-0.00089944014325738],[0.011721652932465,0.0037772352807224,0.0044463439844549],[0.0031606620177627,0.05506718531251,0.010584675706923]],[[-0.023642269894481,0.0077569838613272,0.022016432136297],[0.0086576361209154,0.0096087735146284,-0.086163364350796],[0.072766460478306,-0.10078732669353,0.024213513359427]],[[-0.024777190759778,-0.025685684755445,-0.086770266294479],[-0.055741634219885,-0.0060506113804877,-0.083108343183994],[0.036534201353788,-0.030228769406676,0.0058664926327765]],[[0.029125699773431,-0.024290720000863,0.024861941114068],[0.051364380866289,0.040048390626907,0.0016695940867066],[0.017051860690117,-0.0047988994047046,0.040520638227463]],[[0.014704720117152,-0.013522082008421,0.040893077850342],[0.032859317958355,-0.03882048651576,-0.026801157742739],[-0.015228463336825,-0.0048632347024977,0.03613605350256]],[[-0.024756766855717,-0.0028605542611331,0.048831816762686],[-0.066726215183735,0.015721058472991,-0.053437832742929],[-0.0086048934608698,0.029647970572114,-0.014068062417209]],[[-0.032112699002028,0.044963698834181,0.024597976356745],[0.0046468516811728,-0.042577285319567,0.031435575336218],[-0.097029015421867,-0.048091143369675,0.013750740326941]],[[0.023618031293154,-0.038414850831032,0.049450974911451],[-0.078807532787323,-0.044829800724983,-0.0043096709996462],[0.091360680758953,-0.081550806760788,0.0059771900996566]],[[0.03007735311985,0.05161365494132,-0.051135197281837],[0.015437673777342,-0.041965626180172,0.034070663154125],[0.012878076173365,-0.037993252277374,0.018110862001777]],[[-0.013270272873342,0.0090178782120347,0.036719061434269],[-0.039054717868567,0.027141410857439,-0.0064583984203637],[0.016908032819629,0.020406691357493,-0.031310435384512]],[[-0.0099732857197523,0.0029373993165791,-0.0052626309916377],[0.037722036242485,0.0030870682094246,-0.0082206921651959],[-0.020886827260256,0.0032424728851765,0.017269719392061]],[[0.0035185092128813,-0.0037696738727391,0.043291281908751],[-0.014725345186889,0.030393581837416,0.094612829387188],[-0.015105240046978,-0.0077744857408106,0.075664035975933]],[[0.003807462984696,-0.043607953935862,-0.027681345120072],[-0.070855401456356,0.021420130506158,0.0030099796131253],[-0.053411923348904,0.045905288308859,-0.017785867676139]],[[-0.097852036356926,0.0016884409124032,-0.057678930461407],[-0.056591108441353,-0.044062525033951,-0.028106324374676],[0.016168765723705,0.033462751656771,-0.039993967860937]],[[-0.0087448637932539,-0.049227837473154,0.027314113453031],[0.022408258169889,0.0031064376235008,-0.056922432035208],[-0.024199502542615,0.0053614252246916,-0.06302797794342]],[[-0.073489472270012,-0.034498978406191,-0.023359179496765],[0.019653044641018,-0.078693479299545,0.053310461342335],[-0.017388561740518,0.020000778138638,0.013616364449263]],[[0.073777176439762,0.00014828369603492,-0.013203201815486],[0.0075313402339816,0.029477762058377,-0.063253492116928],[-0.0075880554504693,-0.027696227654815,0.024439001455903]],[[0.0071027660742402,-0.097970426082611,-0.039613571017981],[-0.0069632441736758,0.014266232028604,0.022968323901296],[0.011869143694639,-0.019807050004601,0.084296382963657]],[[-0.044271178543568,-0.057615868747234,0.058628335595131],[0.024131396785378,0.054210275411606,-0.067342907190323],[0.053972348570824,-0.087732948362827,0.0066263847984374]],[[-0.02218497171998,0.055905099958181,0.0066449539735913],[0.019345551729202,-0.0447320304811,0.00017662641766947],[-0.020556382834911,0.025374807417393,-0.037408094853163]],[[0.016207877546549,-0.0011991641949862,0.011238749139011],[0.0034972536377609,-0.00037622373201884,-0.053034592419863],[-0.0032517611980438,0.088515929877758,-0.0089136026799679]],[[-0.017842762172222,-0.046036545187235,-0.018888883292675],[0.028447661548853,-0.060262527316809,-0.0026927760336548],[-0.055762153118849,-0.041449662297964,0.025012068450451]],[[0.022550230845809,-0.018315009772778,-0.0061187697574496],[0.039238702505827,-0.014887453988194,-0.061772491782904],[0.021442791447043,-0.03832146525383,0.11094129085541]],[[0.024087620899081,0.059236820787191,-0.0090861422941089],[-0.068711064755917,0.031000068411231,-0.04367733374238],[-0.015398382209241,-0.070648521184921,-0.029471563175321]],[[0.020343277603388,0.069829732179642,-0.044447362422943],[-0.049066100269556,-0.032421536743641,-0.025543827563524],[0.023519331589341,-0.0099725257605314,-0.041334733366966]],[[0.045645996928215,-0.026768568903208,-0.007451182231307],[-0.029135581105947,-0.039113447070122,-0.013869896531105],[-0.096943981945515,0.025561820715666,-0.025169724598527]],[[-0.029983086511493,0.042828291654587,-0.0015535838901997],[-0.045230470597744,-0.034115854650736,0.04395904019475],[0.0003174738958478,0.054530132561922,-0.0097659770399332]],[[-0.089316338300705,0.060425747185946,0.075877711176872],[-0.028001202270389,0.027078244835138,0.015697734430432],[0.01361673977226,0.029276410117745,-0.018671784549952]],[[-0.028605345636606,-0.012475362047553,0.041023042052984],[-0.013332522474229,0.030627796426415,-0.055106297135353],[-0.023377075791359,0.047430403530598,-0.05278879776597]]],[[[0.049766592681408,-0.027046374976635,0.038805656135082],[0.011974391527474,0.023611733689904,-0.0015336092328653],[0.010953686200082,0.016630571335554,-0.039111483842134]],[[0.012748142704368,0.04092787578702,0.042467046529055],[-0.060479506850243,-0.0050885351374745,-0.025346223264933],[-0.018425224348903,-0.042828269302845,0.028377449139953]],[[0.013465769588947,0.0069235526025295,0.02426771260798],[0.032915726304054,-0.018120110034943,-0.001024526078254],[0.0038067055866122,-0.025489738211036,0.029087213799357]],[[-0.038230121135712,-0.012984096072614,-0.0049013337120414],[0.02764443680644,-0.025350315496325,0.031707614660263],[-0.032901629805565,-0.072285108268261,-0.014576497487724]],[[-0.053025137633085,-0.0041349763050675,-0.038657661527395],[0.036534950137138,0.05245753750205,-0.053198348730803],[-0.052870236337185,-0.094547837972641,0.045455377548933]],[[0.017467027530074,0.10041842609644,0.028805898502469],[-0.0071459575556219,-0.045713108032942,-0.0084490040317178],[-0.047900762408972,0.0058709094300866,0.079185180366039]],[[0.060631718486547,0.086806505918503,-0.10873384773731],[-0.018297323957086,0.0089805871248245,0.0082035148516297],[0.0028947775717825,0.024882005527616,0.0035219499841332]],[[0.036825604736805,-0.021869843825698,0.006506965495646],[0.0037387090269476,-0.033824075013399,-0.0018640505149961],[-0.022543728351593,0.078681871294975,0.06000168249011]],[[-0.028742169961333,-0.022740110754967,-0.05736144259572],[0.0068287625908852,0.048682510852814,0.025979969650507],[0.017462668940425,0.055943716317415,0.027001991868019]],[[0.041643552482128,-0.048398576676846,0.052198968827724],[-0.002944833599031,0.0091620264574885,-0.081797011196613],[0.013978792354465,0.047549594193697,0.053595509380102]],[[0.020812276750803,-0.0057230535894632,-0.016744766384363],[-0.012191331014037,0.05390216037631,0.017159966751933],[-0.0037325886078179,0.040375497192144,-0.054320313036442]],[[-0.036973766982555,0.0064870649948716,0.038773629814386],[-0.056787304580212,0.064390264451504,0.038868274539709],[-0.0468465462327,-0.031842857599258,0.0084733907133341]],[[0.043084502220154,-0.11354119330645,0.097446642816067],[-0.06785860657692,-0.002881973516196,-0.0020509397145361],[0.053372301161289,0.036222193390131,0.046082273125648]],[[-0.022041434422135,0.023687042295933,-0.00011367884872016],[0.021474352106452,-0.043165095150471,-0.0013274583034217],[0.016654523089528,-0.078718759119511,0.082785464823246]],[[-0.050971232354641,0.021809728816152,-0.000593927630689],[-0.023579455912113,-0.034182719886303,0.049979493021965],[0.020968167111278,0.1094117090106,0.023034695535898]],[[-0.0083042774349451,0.012967013753951,0.02322531491518],[-0.072498060762882,-0.038722887635231,0.027024274691939],[0.022016672417521,-0.013552415184677,0.0027188551612198]],[[-0.056144017726183,-0.037288092076778,-0.091668426990509],[0.0053834854625165,-0.033135674893856,-0.02107503823936],[-0.012931116856635,0.034253250807524,0.078595608472824]],[[0.020935485139489,-0.007635650690645,-0.037023041397333],[-0.0013934965245426,0.0095843207091093,-0.022049993276596],[0.024826757609844,0.011417672969401,0.032773207873106]],[[0.031096711754799,-0.0098658408969641,0.011161368340254],[0.091321066021919,0.056357186287642,0.055423367768526],[-0.081638753414154,0.06190013885498,0.061953391879797]],[[0.015618681907654,-0.05412582308054,-0.044380474835634],[-0.020772797986865,0.066255651414394,-0.027941150590777],[0.009172847494483,0.0032498938962817,0.077417232096195]],[[0.078695356845856,-0.049269385635853,0.015448153018951],[-0.069869957864285,-0.039184920489788,-0.027003571391106],[-0.0077042556367815,-0.070801332592964,0.025531969964504]],[[0.020634468644857,0.036562036722898,0.029515137895942],[0.082101814448833,0.016064174473286,0.0078419419005513],[-0.0066899699158967,0.045185014605522,-0.041889198124409]],[[0.038855485618114,-0.047215107828379,-0.0027183366473764],[-0.12317976355553,-0.0033887682948261,0.06251659989357],[-0.02868721447885,-0.10386295616627,0.020209362730384]],[[0.031924221664667,0.022258307784796,0.027549903839827],[0.073600232601166,-0.0025937939062715,0.040416374802589],[-0.013977270573378,-0.089311219751835,0.043339993804693]],[[0.061506036669016,-0.091329425573349,0.019811367616057],[0.011656195856631,-0.073083624243736,0.047759801149368],[0.0077765095047653,0.071298472583294,0.063650950789452]],[[-0.006233976688236,0.049073338508606,0.01993041485548],[0.015888689085841,-0.00045880183461122,0.015004445798695],[-0.010964456014335,0.025278963148594,0.0058429813943803]],[[0.022550860419869,0.060522075742483,-0.0045472681522369],[0.011930023320019,0.035191193223,-0.00017689412925392],[0.038859415799379,-0.028453769162297,0.020991638302803]],[[-0.019987588748336,0.0072642206214368,0.023909952491522],[0.022948762401938,-0.039248622953892,0.0081673143431544],[0.048714101314545,0.028026049956679,-0.065553352236748]],[[0.0007435514125973,0.011953908018768,0.0053380457684398],[0.032323077321053,-0.011088923551142,0.010273915715516],[0.028893740847707,-0.0030356056522578,-0.031372610479593]],[[-0.0057542133145034,-0.06012599170208,-0.087824143469334],[-0.033672038465738,0.032153315842152,-0.02225281111896],[0.023243997246027,0.066721133887768,0.0030885054729879]],[[0.017334742471576,0.015664273872972,0.0013004017528147],[0.035519868135452,0.042242273688316,0.0068293027579784],[0.029790841042995,-0.022141708061099,-0.065705209970474]],[[0.025185285136104,-0.036094054579735,-0.0060099116526544],[-0.066176258027554,0.043782595545053,0.029812306165695],[-0.046555262058973,-0.056213941425085,0.095522291958332]],[[-0.089964210987091,-0.00046689828741364,0.14972510933876],[0.040294881910086,0.071050018072128,-0.056680165231228],[0.0079396087676287,0.013838849961758,0.046548195183277]],[[-0.081361763179302,0.060749500989914,-0.011188335716724],[0.038835540413857,0.038700066506863,-0.019214019179344],[-0.0027914883103222,-0.0058437385596335,-0.036965403705835]],[[0.085739620029926,-0.055541206151247,0.01758599281311],[-0.0080598127096891,0.022976201027632,-0.011370575986803],[0.096970193088055,-0.021608669310808,-0.012766387313604]],[[-0.063370130956173,0.020062992349267,0.038267496973276],[-0.03516023978591,-0.0029807996470481,-0.04304002597928],[0.0048019564710557,-0.032648850232363,0.04314124211669]],[[0.01634855568409,0.016610395163298,-0.065586775541306],[-0.069666057825089,0.062278997153044,0.0081205768510699],[-0.012789657339454,-0.010323053225875,-0.023888938128948]],[[-0.023476919159293,-0.0019430877873674,-0.047553956508636],[0.0034428501967341,-0.099064365029335,-0.029718328267336],[-0.038059432059526,0.047966528683901,0.041628513485193]],[[-0.017395360395312,-0.0089277094230056,0.082368716597557],[-0.0015378275420517,0.024537187069654,0.067509450018406],[0.031599789857864,-0.098929636180401,0.0046557295136154]],[[-0.060731880366802,-0.078187584877014,-0.020255275070667],[0.041218314319849,0.079523146152496,-0.10156254470348],[0.037233378738165,0.02923358976841,0.018000015988946]],[[0.01691235229373,-0.11629489064217,-0.023622548207641],[0.12918291985989,0.01812269538641,-0.061067502945662],[-0.053655851632357,-0.052895925939083,0.055728767067194]],[[0.011415967717767,-0.028812093660235,0.024907693266869],[0.018933810293674,0.03516324236989,0.045259561389685],[-0.0018395135411993,0.0091026574373245,-0.037165846675634]],[[-0.037957493215799,0.010768514126539,-0.018704427406192],[0.045637477189302,0.10107643157244,-0.040851037949324],[-0.039023816585541,-0.041885584592819,0.0095755392685533]],[[-0.00028004695195705,0.042015664279461,0.055039029568434],[0.068596340715885,0.016156110912561,0.0025498229078948],[0.024554265663028,0.031890135258436,0.0094140470027924]],[[-0.024467770010233,0.042367555201054,-0.023099163547158],[-0.018801007419825,0.10170629620552,0.018550969660282],[-0.0062812361866236,-0.037695243954659,0.046090163290501]],[[0.022782228887081,0.039703246206045,-0.012169813737273],[-0.0028533567674458,0.036271143704653,-0.005466690286994],[-0.060605201870203,0.063166283071041,-0.045590903609991]],[[-0.024959260597825,0.093850910663605,-0.01922070235014],[0.054126791656017,0.025774341076612,0.040086764842272],[-0.043412864208221,0.030565341934562,-0.0039871060289443]],[[-0.0036020709667355,-0.059717282652855,0.031214948743582],[-0.025011908262968,0.018788797780871,-0.024467695504427],[0.018801404163241,-0.015594808384776,0.034817110747099]],[[0.010681573301554,-0.054710317403078,0.047295641154051],[0.070732846856117,0.0070949224755168,-0.0026658738497645],[0.00068950589047745,0.032627109438181,0.01297683082521]],[[0.0316839851439,-0.08918172866106,0.046631634235382],[-0.066432356834412,0.056960266083479,0.0012518228031695],[0.087559230625629,-0.011777614243329,0.036789994686842]],[[0.022388385608792,-0.072439610958099,0.034258030354977],[0.045567955821753,-0.030697567388415,0.032333552837372],[0.011868291534483,-0.033158630132675,0.070608370006084]],[[-0.040526401251554,-0.046906389296055,0.0422926209867],[0.031236581504345,0.026499012485147,0.013686419464648],[-0.035386256873608,0.006952403113246,0.096571885049343]],[[-0.06067756190896,0.038565956056118,-0.005373424384743],[0.043732091784477,0.036130249500275,-0.017260679975152],[-0.074898205697536,-0.083650574088097,-0.0056960443034768]],[[-0.037768270820379,0.028584586456418,0.026624431833625],[0.0037151563446969,-0.0044814278371632,0.094926781952381],[0.033097170293331,0.025979585945606,-0.0080160051584244]],[[0.025806859135628,0.076254904270172,0.0095888953655958],[0.03264344856143,-0.027746228501201,-0.054985377937555],[0.072185225784779,-0.010688579641283,-0.039785467088223]],[[-0.033542953431606,-0.016137953847647,-0.079028017818928],[0.031437255442142,0.048905286937952,0.0048020211979747],[0.084079042077065,0.031043646857142,-0.075762301683426]],[[-0.025435453280807,0.023094110190868,0.044584587216377],[0.020684698596597,-0.018230536952615,0.013102176599205],[0.028142249211669,-0.015653302893043,0.043617140501738]],[[-0.014955352991819,0.072375260293484,0.012067386880517],[-0.002715875627473,0.061670191586018,-0.084109038114548],[-0.004730517975986,-0.083477608859539,0.014131327159703]],[[0.042459659278393,0.019287176430225,0.028725838288665],[0.00056261260760948,0.016503540799022,0.034053560346365],[-0.054864589124918,-0.041934672743082,-0.058852061629295]],[[0.040907308459282,-0.0029537782538682,0.050685159862041],[-0.037053976207972,-0.015330713242292,-0.018067227676511],[0.0048993499949574,0.0081726713106036,-0.0032152039930224]],[[-0.040144816040993,-0.016221228986979,0.056598883122206],[-0.018571702763438,0.045344013720751,-0.012654733844101],[-0.04785555973649,-0.030329797416925,0.068816512823105]],[[0.010424782522023,0.093817114830017,0.0048717595636845],[-0.0096492692828178,-0.0095334528014064,0.034177858382463],[0.025798749178648,0.033224761486053,0.058870419859886]],[[0.017582895234227,-0.044295493513346,0.063287980854511],[-0.055951494723558,-0.041770607233047,0.0046985512599349],[0.024407006800175,0.0098657626658678,0.037853520363569]],[[-0.0073038367554545,-0.033796649426222,0.044149678200483],[0.039913047105074,-0.050647526979446,0.00047302601160482],[-0.0048878029920161,-0.01434784475714,-0.013006358407438]],[[0.031042961403728,0.02425062097609,-0.0052779954858124],[0.020463276654482,0.13337406516075,-0.076655447483063],[0.034330390393734,-0.05759659782052,0.013704038225114]],[[0.016989840194583,-0.023764172568917,0.0076671657152474],[0.022640556097031,-0.073851637542248,-0.022536959499121],[-0.027352949604392,-0.036258861422539,-0.010056756436825]],[[-0.00034830035292543,0.064369507133961,-0.033895663917065],[0.040948405861855,-0.014435003511608,-0.04194738343358],[0.035697784274817,-0.045205302536488,-0.05920073017478]],[[-0.011423487216234,-0.036500006914139,-0.026017984375358],[-0.060718640685081,0.027849143370986,0.024090131744742],[-0.035461220890284,0.018012128770351,-0.025310479104519]],[[-0.016017137095332,-0.021114116534591,0.047465089708567],[-0.0023521285038441,-0.040802136063576,-0.029380647465587],[-0.0062908981926739,0.11068397015333,-0.0080028362572193]],[[0.081564679741859,0.020029863342643,0.078904800117016],[0.021700276061893,-0.057799719274044,0.042242784053087],[0.057589206844568,-0.039581298828125,0.047118473798037]],[[-0.027157846838236,0.006842375267297,0.049793440848589],[0.043926760554314,-0.081028267741203,-0.011616130359471],[-0.020719848573208,-0.0090919202193618,0.081327080726624]],[[-0.0070916013792157,-0.073950961232185,0.0173898357898],[-0.0059512723237276,0.053626414388418,-0.017995540052652],[0.01934003084898,-0.0095859495922923,-0.083372533321381]],[[-0.019835345447063,-0.05558505654335,0.031585298478603],[-0.06390955299139,0.01077432371676,-0.077313713729382],[0.013760702684522,-0.016435021534562,0.022025737911463]],[[-0.10308671742678,0.094590090215206,0.021809862926602],[0.028867896646261,-0.034307699650526,0.032809711992741],[0.065804481506348,0.027644999325275,-0.04353454709053]],[[0.043504372239113,0.08041950315237,-0.017568925395608],[-0.018894299864769,-0.02056709676981,-0.063838936388493],[0.088551491498947,0.065641984343529,-0.086736552417278]],[[-0.023089118301868,0.063293717801571,-0.073086135089397],[0.016082787886262,-0.054815698415041,0.030958585441113],[-0.0064343502745032,-0.053295314311981,0.015192184597254]],[[0.055168867111206,0.043798979371786,0.047403827309608],[-0.01242496073246,-0.0096652489155531,0.018250247463584],[-0.025097969919443,-0.031833279877901,-0.027072248980403]],[[0.061363946646452,-0.0034042368642986,0.082687988877296],[-0.038937471807003,0.0043167062103748,0.010760842822492],[0.081310473382473,-0.080721944570541,0.04233418032527]],[[-0.0030790085438639,-0.077508822083473,0.0074792355298996],[-0.037297483533621,0.052697747945786,-0.082946002483368],[-0.048420451581478,-0.01294354442507,0.035444229841232]],[[-0.046173889189959,0.08992750197649,-0.0060051642358303],[0.069782353937626,-0.10260248184204,-0.060715112835169],[0.061226531863213,-0.0045299837365746,0.057707738131285]],[[-0.022854754701257,-0.019251029938459,0.05498980730772],[-0.029551295563579,0.030294112861156,0.014068833552301],[0.078396856784821,-0.064300671219826,0.029076306149364]],[[-0.044367227703333,-0.049314178526402,0.022808874025941],[-0.028591629117727,-0.0072384546510875,-0.022310711443424],[0.11094515025616,0.014969365671277,0.0013006132794544]],[[-0.033228669315577,-0.052200887352228,-0.018239766359329],[0.019841941073537,-0.0069272206164896,-0.0066912299953401],[0.019449155777693,-0.011753808706999,0.036705415695906]],[[-0.0032784787472337,-0.069307006895542,0.053141061216593],[0.040393318980932,-0.017316622659564,-0.072278812527657],[0.014246074482799,0.062344200909138,-0.03658114746213]],[[0.024110166355968,0.044806391000748,-0.030440486967564],[0.011245851404965,0.053497012704611,0.10746247321367],[-0.02948403172195,0.00040185771649703,-0.026392070576549]],[[-0.090146459639072,-0.0030920384451747,0.040454011410475],[-0.0019245124422014,0.052169091999531,-0.089958302676678],[0.03558799251914,-0.019749440252781,-0.042199030518532]],[[0.048478364944458,0.021135948598385,-0.049061372876167],[0.016827140003443,0.0067349881865084,-0.04282158985734],[0.032246120274067,0.027647435665131,0.00060083682183176]],[[-0.031995106488466,-0.0045128860510886,0.045881476253271],[-0.038059964776039,0.02514928765595,0.029684707522392],[0.085665173828602,-0.018808333203197,0.028693020343781]],[[0.030094550922513,0.013311117887497,-0.056522347033024],[-0.077791340649128,0.024903094395995,-0.0099030341953039],[0.0058065755292773,-0.035974331200123,-0.013873763382435]],[[-0.022824136540294,0.014261913485825,-0.0018068226054311],[0.043124791234732,-0.021486626937985,-0.00028837341233157],[-0.0050285505130887,-0.018349828198552,-0.0010860285256058]],[[-0.0033266886603087,-0.039529506117105,0.042875424027443],[0.010756981559098,-0.0030560970772058,-0.027619229629636],[-0.0056927693076432,0.008034436032176,-0.079484224319458]],[[-0.0058399448171258,-0.008767643943429,-0.11226420104504],[0.082066625356674,0.055844902992249,0.014128241688013],[0.0026221284642816,-0.020577687770128,-0.09569263458252]],[[-0.003876477945596,-0.021151406690478,0.035725075751543],[0.045514080673456,-0.004302300978452,-0.086662128567696],[0.014240412041545,0.044096622616053,0.0096637727692723]],[[-0.046317134052515,0.0038469259161502,0.008736988529563],[-0.0061091263778508,0.04314748570323,0.00045222492190078],[0.022498566657305,0.029216974973679,0.036630649119616]],[[-0.019900489598513,-0.075077347457409,-0.034470930695534],[0.06892341375351,-0.029395215213299,-0.017437927424908],[0.031034398823977,0.0032542271073908,0.036413103342056]],[[-0.010500580072403,-0.055256318300962,0.010348388925195],[-0.011637060903013,0.050992734730244,-0.016879446804523],[-0.067524038255215,0.055959489196539,0.013161514885724]],[[0.083994723856449,0.051797430962324,0.025645278394222],[-0.063745096325874,-0.049452342092991,0.013327076099813],[0.0012266462435946,0.003074647160247,-0.049939498305321]],[[0.0047888611443341,0.022113502025604,0.037231922149658],[0.0098215360194445,-0.040439415723085,-0.11657401919365],[-0.0080835707485676,0.079432234168053,0.043959151953459]],[[0.051401145756245,-0.077986069023609,0.01246097497642],[-0.043700587004423,-0.002954013645649,-0.030147772282362],[0.063060700893402,-0.029138453304768,-0.034295056015253]],[[0.037587884813547,-0.0037394918035716,0.014242419973016],[-0.0087451338768005,0.026031583547592,0.0065622967667878],[0.01568559743464,0.0076781716197729,-0.055572722107172]],[[-0.0013250719057396,0.034005995839834,-0.032445918768644],[-0.033820249140263,-0.10882291197777,0.053175665438175],[-0.011850325390697,0.077258370816708,-0.014106383547187]],[[-0.070627346634865,-0.005265548825264,-0.049696698784828],[0.044327281415462,0.043307643383741,-0.046351116150618],[0.0058698668144643,0.058788642287254,-0.073441326618195]],[[-0.071918860077858,0.066477075219154,0.022435732185841],[0.0027535606641322,0.016108591109514,0.13368602097034],[-0.0011308199027553,-0.016528505831957,0.047268845140934]],[[0.01501664891839,0.0076091922819614,0.0067439572885633],[0.014595480635762,-0.036262895911932,-0.015560330823064],[-0.040063612163067,-0.029734993353486,-0.029289433732629]],[[0.052508864551783,-0.02388602681458,-0.011803603731096],[0.0055728582665324,0.041643738746643,0.069409847259521],[-0.0022133174352348,-0.11686907708645,-0.02159284427762]],[[-0.061429552733898,0.02623450756073,0.061036597937346],[0.01962242461741,-0.020256103947759,0.04711227491498],[0.042128454893827,0.017740959301591,0.021921712905169]],[[0.033681564033031,0.034102391451597,0.038724958896637],[-0.019226377829909,-0.043364576995373,-0.0043341312557459],[-0.0079806568101048,-0.0038647095207125,-0.04525113850832]],[[0.027729215100408,-0.039384465664625,0.045868072658777],[-0.006149263586849,-0.00097486755112186,0.019538320600986],[-0.041377168148756,0.048740990459919,0.055924329906702]],[[-0.0086654098704457,-0.056792382150888,-0.036936715245247],[0.014080761931837,0.015434505417943,0.036676112562418],[0.035343259572983,-0.076846346259117,-0.0099078351631761]],[[-0.097709700465202,-0.0096376007422805,0.05296142026782],[-0.0048257894814014,-0.046353217214346,-0.048194348812103],[0.074481785297394,0.017556939274073,0.0097765997052193]],[[-0.038283754140139,-0.0018841180717573,0.097235910594463],[-0.010597510263324,-0.006097209174186,0.055769603699446],[-0.021535035222769,0.011296175420284,0.030570583418012]],[[0.047112096101046,-0.023106532171369,0.023380195721984],[-0.063815832138062,-0.0042700339108706,0.020958250388503],[0.07018630951643,-0.020772278308868,-0.016683857887983]],[[0.049237620085478,0.089900620281696,0.0177729614079],[-0.020120710134506,-0.053865008056164,-0.044627200812101],[0.026556978002191,-0.028678903356194,-0.015856999903917]],[[-0.017143884673715,0.0010705403983593,-0.028451828286052],[-0.0050002504140139,0.018923070281744,0.039986275136471],[-0.010791916400194,-0.0062640164978802,0.029623629525304]],[[0.035353854298592,0.011903671547771,0.040042337030172],[-0.073780745267868,0.015801416710019,-0.029298506677151],[-0.0044955085031688,0.04059911891818,-0.01937229372561]],[[-0.018882680684328,-0.0022572085727006,0.026629827916622],[-0.011177797801793,-0.029359476640821,0.12573517858982],[0.037521567195654,-0.037034418433905,-0.0099966209381819]],[[0.0045512369833887,-0.004896285943687,-0.06195804476738],[0.049469865858555,0.080756731331348,0.016492195427418],[0.0052982396446168,-0.034807648509741,0.036421425640583]],[[-0.03776628524065,-0.064355731010437,-0.069282293319702],[0.0047344071790576,-0.022430209442973,-0.038808364421129],[0.0036915852688253,0.061885178089142,-0.01955514959991]],[[-0.073446035385132,-0.049156628549099,-0.027994060888886],[0.01493361312896,0.0060715568251908,0.0057509248144925],[-0.040959522128105,-0.045281536877155,-0.051394429057837]],[[-0.097664639353752,-0.013585585169494,0.02223682962358],[-0.011305782012641,0.068082690238953,-0.017154162749648],[0.0055238148197532,-0.023496763780713,-0.00042937585385516]],[[-0.040257249027491,-0.0097199520096183,-0.0048478920944035],[-0.021989485248923,-0.036342673003674,0.0041479915380478],[-0.064830936491489,0.014540560543537,-0.12358153611422]],[[-0.0067814826034009,0.060368798673153,0.036058593541384],[0.0083287768065929,0.013637976720929,0.019001465290785],[-0.024780107662082,0.0035831236746162,0.073647484183311]],[[-0.013987538404763,-0.097931891679764,-0.045084487646818],[0.049636207520962,-0.014110636897385,-0.015525508671999],[0.012840006500483,-0.042361527681351,0.052480898797512]],[[-0.0025395737029612,0.040955066680908,-0.016715520992875],[-0.032984331250191,0.051629543304443,-0.041980247944593],[0.001212258823216,-0.076350018382072,0.023220863193274]],[[0.050284750759602,0.018558394163847,0.022020857781172],[-0.065761961042881,0.074576325714588,-0.094157762825489],[-0.012647535651922,-0.047171667218208,-0.018586419522762]],[[-0.0074720666743815,-0.039199460297823,0.048498395830393],[0.023235777392983,0.044298194348812,0.0023065784480423],[0.12338978797197,-0.079042807221413,-0.021293325349689]],[[0.036953497678041,0.052720244973898,-0.024542789906263],[-0.060377519577742,0.054054468870163,-0.0085679171606898],[-0.0068386415950954,-0.03536693751812,0.040617231279612]],[[-0.016512801870704,0.00032701680902392,-0.016925727948546],[0.0025678616948426,-0.034675851464272,-0.03518645465374],[6.6477288783062e-05,-0.089066125452518,-0.0032401841599494]]],[[[-0.017388569191098,-0.09014667570591,-0.23032627999783],[0.069170251488686,0.09712116420269,-0.0052894498221576],[0.19976502656937,0.18264493346214,-0.10142023861408]],[[0.042526792734861,-0.037304535508156,-0.14004634320736],[-0.028539383783937,-0.010982979089022,-0.2825753390789],[0.027149450033903,0.047669425606728,0.068803839385509]],[[0.08247072249651,0.0033589652739465,-0.043289195746183],[0.11895672231913,-0.0041254702955484,-0.10266292095184],[0.1659582555294,-0.024820538237691,-0.069934844970703]],[[0.049796711653471,-0.09008477628231,-0.0064399666152894],[0.20812940597534,0.049471195787191,-0.051532924175262],[0.1242188885808,-0.031659781932831,-0.017298193648458]],[[0.15181243419647,-0.013539253734052,-0.028973357751966],[-0.0027405295986682,-0.051424935460091,-0.072962142527103],[-0.033245496451855,-0.011556823737919,-0.066673427820206]],[[-0.091202281415462,-0.10749877244234,-0.11912231892347],[-0.010663824155927,-0.068792924284935,-0.13281434774399],[-0.012445772066712,-0.12218275666237,-0.24296878278255]],[[0.05647412315011,-0.013350719586015,-0.074438773095608],[0.024623613804579,-0.034749928861856,-0.0324492380023],[0.0026807859539986,0.045469839125872,0.15580415725708]],[[-0.025620426982641,-0.12261398136616,0.3351666033268],[-0.16955816745758,0.02415731549263,0.070714361965656],[0.057700641453266,-0.077638491988182,-0.083882883191109]],[[0.023572154343128,0.070585250854492,0.017611339688301],[-0.0077810999937356,-0.021057344973087,-0.0057056769728661],[-0.012232380919158,0.0039812810719013,-0.084827110171318]],[[0.10897103697062,0.0032643843442202,-0.10119105875492],[0.027667516842484,-0.18868187069893,-0.0019979702774435],[0.11628270894289,0.058662671595812,0.12546730041504]],[[-0.022723726928234,0.040814239531755,0.32051631808281],[0.022801814600825,-0.01622530631721,0.042117975652218],[-0.11032066494226,-0.075890630483627,-0.16655918955803]],[[0.029641874134541,-0.066974081099033,-0.027754366397858],[0.055029485374689,0.036601845175028,0.056074671447277],[0.0012817666865885,-0.14363440871239,0.055386949330568]],[[0.0031788824126124,-0.10086890310049,-0.039733164012432],[-0.040244035422802,0.045374013483524,-0.040847193449736],[-0.108761921525,0.016435770317912,-0.11479049921036]],[[-0.080185495316982,0.052291750907898,0.028087412938476],[0.0054303747601807,0.067711174488068,-0.098605297505856],[0.093768775463104,0.038296561688185,-0.10114282369614]],[[0.090897120535374,0.076151251792908,0.026737045496702],[-0.087063580751419,0.036628741770983,-0.10580922663212],[-0.02034998498857,0.033796388655901,0.11039160937071]],[[0.0018752651521936,0.097340308129787,-0.16232281923294],[-0.17920778691769,0.22832401096821,0.096623137593269],[0.036874536424875,-0.04275182262063,-0.017453148961067]],[[0.013231550343335,-0.067433714866638,-0.16298703849316],[-0.014182646758854,-0.094597510993481,-0.0068144700489938],[0.032597467303276,0.12969651818275,0.23736648261547]],[[0.025415547192097,-0.010213806293905,0.19049854576588],[0.0026437516789883,-0.0066844448447227,0.080632634460926],[-0.14784744381905,-0.093704380095005,-0.10008239001036]],[[0.10408153384924,0.0095840580761433,-0.14229342341423],[0.015109160915017,-0.14026856422424,-0.17860969901085],[-0.024223985150456,-0.13133926689625,0.019887421280146]],[[-0.047905530780554,0.028051059693098,0.038396205753088],[-0.038361601531506,0.10814750939608,0.029090886935592],[0.086376652121544,0.082093842327595,0.017430614680052]],[[-0.00028038409072906,0.014101170934737,-0.009993732906878],[0.065079502761364,0.14055335521698,-0.13982397317886],[0.0312659740448,-0.24545067548752,-0.12843404710293]],[[-0.090721890330315,0.046651337295771,0.10002426803112],[-0.17852249741554,-0.074000887572765,0.050107762217522],[-0.13311414420605,-0.057621371001005,0.09156197309494]],[[-0.13958524167538,0.11041084676981,-0.015233877114952],[0.038632411509752,-0.059982638806105,0.051601815968752],[0.010781311430037,0.12009619176388,0.0066929655149579]],[[0.14898839592934,0.035709086805582,0.0040010591037571],[0.019826222211123,-0.069769978523254,-0.11384710669518],[0.061499375849962,-0.11079606413841,0.12499182671309]],[[0.030347470194101,-0.078008726239204,0.003905771067366],[-0.036531120538712,0.064103335142136,-0.027630299329758],[-0.010249758139253,-0.010933085344732,-0.040746435523033]],[[-0.010979524813592,-0.095109336078167,-0.079385250806808],[-0.15453077852726,-0.20239362120628,-0.059283245354891],[-0.083300687372684,0.009147354401648,-0.078144550323486]],[[0.27615907788277,-0.025027979165316,0.0011267731897533],[-0.10469203442335,0.029081815853715,-0.077884532511234],[-0.04008761048317,-0.17368341982365,-0.21673576533794]],[[-0.0018828383181244,-0.019357403740287,-0.055895570665598],[-0.036119572818279,-0.17930901050568,-0.16376815736294],[0.028788879513741,0.066251918673515,-0.040480989962816]],[[0.12851044535637,-0.042823471128941,0.054071303457022],[-0.044285230338573,-0.19565784931183,0.14116828143597],[-0.12993313372135,-0.021404406055808,0.030035831034184]],[[-0.018820378929377,-0.034779533743858,-0.0011588544584811],[-0.0028680888935924,0.0098050395026803,-0.1187559068203],[-0.085329212248325,-0.080023646354675,0.18219374120235]],[[-0.059075392782688,0.015670146793127,-0.045439790934324],[0.0041981060057878,0.14194601774216,0.052943039685488],[0.17431719601154,-0.018458371981978,-0.11220960319042]],[[0.089818730950356,-0.068791165947914,0.16936329007149],[0.0024081545416266,0.08719290047884,-0.013935652561486],[0.043716177344322,-0.083219975233078,-0.086670413613319]],[[-0.12155736237764,-0.042687211185694,-0.025024723261595],[0.011274001561105,0.16339817643166,-0.067545890808105],[0.068853385746479,0.064967565238476,-0.13887532055378]],[[-0.13747508823872,-0.057643607258797,0.032956819981337],[-0.024784723296762,0.11986744403839,-0.01193886436522],[0.029146578162909,-0.013340710662305,0.0035883127711713]],[[-0.019855730235577,-0.025089927017689,-0.063286505639553],[0.026929851621389,-0.071007914841175,-0.19468800723553],[-0.074850864708424,-0.16943374276161,-0.10959376394749]],[[-0.051679566502571,0.050639700144529,-0.11722345650196],[-0.15330575406551,-0.16226945817471,-0.23458553850651],[-0.084831409156322,0.029674589633942,-0.45011267066002]],[[0.090070202946663,0.12297623604536,0.0466333553195],[-0.14157535135746,-0.092990517616272,0.083469398319721],[0.0079661346971989,0.20289099216461,0.003672918304801]],[[0.0084691327065229,-0.056337047368288,-0.040601417422295],[0.029512846842408,0.024334272369742,-0.034322757273912],[-0.060142662376165,-0.039630457758904,0.052073292434216]],[[0.055945802479982,0.11082135885954,0.12478328496218],[0.0022559217177331,-0.12122891098261,0.18291085958481],[-0.049991555511951,-0.23587293922901,-0.12939323484898]],[[-0.036624766886234,-0.25269237160683,0.011501537635922],[-0.021875850856304,0.1175372004509,-0.047216642647982],[0.056435644626617,0.29011705517769,-0.082513310015202]],[[-0.098344892263412,0.021749021485448,-0.076554052531719],[0.039645057171583,-0.041067332029343,-0.02817857824266],[0.027484467253089,0.10635507106781,0.213284522295]],[[0.029012801125646,0.071420550346375,0.058587595820427],[-0.013848599046469,-0.0077000944875181,-0.0073022255674005],[-0.11425430327654,-0.040442053228617,0.063977897167206]],[[-0.030726527795196,0.083201959729195,0.024385349825025],[0.070600800216198,0.11305182427168,0.054027605801821],[0.0351915769279,-0.031597424298525,0.0090525606647134]],[[0.078310623764992,0.1963624060154,0.014089885167778],[0.091719888150692,0.082821026444435,-0.2190081179142],[0.040434863418341,-0.081123940646648,-0.26194405555725]],[[0.07887015491724,0.083855330944061,-0.026507221162319],[0.10733968019485,0.12077997624874,0.030423441901803],[-0.041188884526491,0.050527434796095,-0.036313768476248]],[[0.05476626381278,0.011934723705053,-0.077439308166504],[0.11608636379242,-0.14353078603745,0.071878537535667],[-0.054213285446167,0.13408966362476,0.098121970891953]],[[0.031301353126764,0.068361133337021,-0.041073616594076],[0.17752568423748,-0.15010288357735,-0.025184080004692],[0.0092851631343365,-0.038202825933695,0.18241593241692]],[[-0.14140085875988,-0.35262677073479,-0.047794181853533],[0.055892251431942,0.076220095157623,0.14501586556435],[0.0034814393147826,-0.084717698395252,-0.30391815304756]],[[0.12485536187887,-0.07551945745945,-0.072401076555252],[0.0039399331435561,-0.002143990714103,-0.029411511495709],[-0.042692687362432,-0.035818930715322,-0.16979496181011]],[[-0.0038105968851596,0.040053442120552,0.07788647711277],[-0.041747022420168,0.076551370322704,-0.10287943482399],[0.010692569427192,0.02434540912509,-0.11375484615564]],[[0.053103219717741,0.060757521539927,-0.050246652215719],[0.01063125487417,0.035304926335812,0.0058895205147564],[-0.076224945485592,0.0056522944942117,-0.15359497070312]],[[-0.064634785056114,-0.057505380362272,-0.037652902305126],[0.040505204349756,0.042920492589474,0.043241955339909],[0.0083505949005485,0.029518291354179,0.094106681644917]],[[-0.017462994903326,0.063491642475128,-0.070280581712723],[-0.00014007794379722,0.065256856381893,-0.06727497279644],[-0.070046186447144,0.048874907195568,-0.16995966434479]],[[-0.15661209821701,-0.13892579078674,0.045246183872223],[-0.040045987814665,-0.087997898459435,0.10833587497473],[-0.023491280153394,-0.19667552411556,0.067586407065392]],[[-0.017987415194511,-0.1160586848855,0.050959974527359],[0.064698725938797,0.1306543648243,-0.034949723631144],[-0.019656030461192,-0.14244969189167,-0.094600655138493]],[[-0.0065657244995236,-0.001106200972572,0.030932368710637],[-0.1773991137743,0.05458540469408,0.053243674337864],[0.086971908807755,-0.023057302460074,0.0026208038907498]],[[-0.016746511682868,0.0037487028166652,-0.031885854899883],[-0.10620784759521,0.070273481309414,-0.059617925435305],[0.018564755097032,0.21953840553761,0.023870628327131]],[[0.028960490599275,0.019255002960563,0.02207830734551],[0.080804064869881,-0.082701824605465,-0.025591773912311],[0.037463270127773,-0.17975957691669,0.022587679326534]],[[0.18388043344021,0.029687989503145,0.066441744565964],[-0.013008181937039,-0.01412923168391,-0.1544134169817],[0.01009866502136,-0.05490554869175,0.17224487662315]],[[0.09290961176157,-0.099343486130238,-0.14234273135662],[0.066576741635799,0.20460079610348,-0.040241099894047],[-0.00012544765195344,0.15570810437202,-0.035638649016619]],[[-0.060969587415457,0.026547990739346,0.076746232807636],[0.012311516329646,-0.036091487854719,0.051646936684847],[-0.25294801592827,-0.012383490800858,-0.22000454366207]],[[0.019958425313234,-0.0019611471798271,0.017985790967941],[0.012908288277686,0.099624134600163,-0.22896657884121],[-0.00040210844599642,-0.11521797627211,0.0070294812321663]],[[0.11240758746862,0.030138125643134,0.02877982892096],[-0.0073974626138806,-0.084256887435913,0.020701365545392],[0.047352600842714,0.05803319439292,0.067338645458221]],[[0.13928115367889,0.19820342957973,0.069022007286549],[0.02288369461894,0.021665994077921,0.050240490585566],[-0.084520108997822,0.10985917598009,0.1133012548089]],[[-0.047223124653101,-0.15921710431576,0.036531403660774],[-0.11740455031395,-0.031406752765179,0.017130754888058],[-0.016219677403569,-0.12961295247078,0.19861148297787]],[[-0.036531429737806,0.024569615721703,-0.01320234965533],[0.11358121037483,-0.020259965211153,0.059123806655407],[0.15290752053261,-0.091214992105961,-0.035363335162401]],[[0.0091100055724382,0.021839749068022,0.0091360528022051],[-0.065089911222458,-0.076706223189831,-0.17222754657269],[-0.033435329794884,-0.021127147600055,-0.015596392564476]],[[-0.0086873499676585,0.089888989925385,0.010787484236062],[0.14114010334015,-0.047428634017706,0.069906242191792],[0.034784272313118,-0.084381818771362,0.16518086194992]],[[-0.13899549841881,-0.081826262176037,-0.016573855653405],[-0.027930853888392,0.016570448875427,-0.0024134174454957],[-0.016386095434427,0.06220081448555,0.0070598875172436]],[[0.012076748535037,-0.05027113109827,0.22193205356598],[-0.20387122035027,0.10759431868792,0.17977069318295],[-0.028297459706664,-0.17561320960522,-0.053830496966839]],[[-0.024738535284996,0.093801498413086,0.024899592623115],[0.046436686068773,0.13135722279549,0.12086968868971],[0.038662541657686,-0.019568748772144,0.057622730731964]],[[-0.087435685098171,0.031445562839508,-0.11871502548456],[0.12834231555462,0.013465035706758,-0.036148153245449],[-0.049396555870771,-0.035385724157095,-0.026800462976098]],[[-0.17915199697018,-0.075136050581932,0.088173672556877],[-0.22497762739658,0.030362647026777,-0.057602006942034],[-0.031137699261308,0.12657333910465,-0.26993003487587]],[[0.017497381195426,-0.027023581787944,0.019199468195438],[0.0020531301852316,0.02668241597712,-0.03376504778862],[0.10132081061602,0.14313666522503,-0.069646574556828]],[[0.098937317728996,0.025697043165565,-0.015593623742461],[0.089263439178467,-0.21981379389763,0.026626104488969],[-0.1546269506216,-0.15450569987297,-0.096000336110592]],[[-0.11840263754129,0.00047754953266121,0.05239562317729],[-0.21381404995918,-0.21359902620316,0.31002426147461],[-0.15707905590534,0.098594360053539,0.19189594686031]],[[-0.083372369408607,0.00074968324042857,0.025922816246748],[-0.12210714817047,0.035119611769915,0.014854759909213],[0.023160429671407,0.13021104037762,0.0012724528787658]],[[0.010436461307108,-0.026631582528353,0.027706919237971],[-0.066653393208981,0.080886572599411,-0.026075910776854],[0.12169767171144,0.10568831115961,0.042565312236547]],[[-0.044562380760908,-0.078616961836815,-0.028416853398085],[0.00046932094846852,0.0092039685696363,0.076288357377052],[-0.013980346731842,0.057843249291182,0.059781972318888]],[[-0.085965648293495,0.061087779700756,-0.18381597101688],[-0.11240645498037,-0.038068939000368,-0.020958399400115],[-0.088213190436363,0.0043090702965856,0.20416744053364]],[[-0.1336681842804,-0.063017055392265,0.04536884278059],[-0.041295923292637,0.053248964250088,0.056607328355312],[-0.071061596274376,0.18155620992184,0.0064912098459899]],[[-0.035607751458883,0.10171958804131,0.013161397539079],[0.057855777442455,-0.039055772125721,-0.1100742071867],[0.048073641955853,-0.038976695388556,0.22525259852409]],[[-0.050615075975657,-0.020835319533944,0.031117817386985],[0.10197475552559,0.2851402759552,-0.11732544004917],[0.17971628904343,-0.28159287571907,-0.15337356925011]],[[0.042890209704638,0.046948477625847,0.064040660858154],[0.014978602528572,0.077045626938343,0.027208562940359],[-0.09390053153038,-0.0041810725815594,-0.10179764777422]],[[-0.081320531666279,-0.037641055881977,-0.023932348936796],[-0.13346204161644,-0.025972591713071,0.025919232517481],[-0.077899754047394,0.21312049031258,0.2871261537075]],[[-0.064376071095467,-0.085931584239006,-0.04749058932066],[-0.00453622918576,0.065929569303989,-0.039787881076336],[0.022090373560786,0.014128319919109,-0.085209161043167]],[[-0.044382467865944,0.022592257708311,0.037454959005117],[0.022898720577359,-0.0098555684089661,-0.15684819221497],[0.0018103754846379,0.065517723560333,-0.044096868485212]],[[-0.070716738700867,-0.061310037970543,-0.039621762931347],[0.19476661086082,0.17593754827976,-0.058887008577585],[0.20830525457859,-0.0043030451051891,-0.040601924061775]],[[0.014511534012854,0.013023428618908,-0.032557647675276],[0.0059925513342023,-0.010433624498546,-0.024929877370596],[0.028049988672137,0.096790425479412,0.12133610993624]],[[0.0042695314623415,-0.031278926879168,0.069821059703827],[-0.045970857143402,0.0026946666184813,-0.053632028400898],[0.051951050758362,0.00082885462325066,-0.028798600658774]],[[0.058721035718918,0.065116636455059,-0.059320397675037],[-0.027417937293649,-0.10657723248005,0.038608439266682],[0.099535465240479,0.055142436176538,0.049840468913317]],[[0.076126284897327,-0.053577646613121,0.088999003171921],[0.06836275011301,-0.11167394369841,0.094846494495869],[-0.059365440160036,-0.00026760168839246,0.039399854838848]],[[-0.083539254963398,0.059684880077839,-0.14248041808605],[-0.0082251038402319,0.037783101201057,-0.11000373959541],[0.12457233667374,-0.076760500669479,0.18339975178242]],[[0.042933311313391,-0.060773003846407,-0.068760946393013],[0.045736044645309,0.045722488313913,0.22657351195812],[0.011402268894017,-0.019130162894726,0.080840103328228]],[[0.055637095123529,0.037693120539188,0.0038195236120373],[0.084025084972382,-0.070642620325089,-0.037815012037754],[0.06725151091814,-0.22245183587074,0.046624522656202]],[[0.012594853527844,-0.030171666294336,0.12232165038586],[0.034395046532154,0.035985086113214,0.081483714282513],[-0.10680847615004,-0.13132919371128,0.19625675678253]],[[-0.0042949253693223,-0.00030834361677989,0.0098792854696512],[-0.0454389937222,0.15996909141541,0.14499029517174],[-0.11330345273018,-0.20372024178505,-0.004116440191865]],[[0.092649050056934,0.10972259938717,-0.12316583842039],[0.13837516307831,-0.10363724082708,-0.016610516235232],[-0.14303840696812,-0.066377028822899,-0.034136448055506]],[[-0.11531329900026,-0.069214202463627,0.19996421039104],[0.083645552396774,-0.018988413736224,0.29683944582939],[-0.084819778800011,0.0028248045127839,0.089840024709702]],[[-0.027863916009665,0.057265676558018,0.023265505209565],[-0.040941461920738,0.0038472060114145,0.024389900267124],[0.019556473940611,-0.0072374963201582,-0.025204969570041]],[[-0.01846257597208,-0.18807695806026,0.026839472353458],[-0.10254245251417,-0.16214293241501,0.12545357644558],[0.015528375282884,0.12137198448181,-0.035530250519514]],[[-0.045574095100164,-0.062800079584122,-0.046246595680714],[0.027481354773045,-0.021725686267018,0.06130201742053],[0.025620460510254,0.092466972768307,0.052276834845543]],[[0.24196083843708,0.14440125226974,0.031624622642994],[0.027143666520715,-0.13015457987785,-0.19833140075207],[-0.077711544930935,-0.099498562514782,0.10805965960026]],[[-0.13327153027058,0.14162923395634,0.026958167552948],[0.034485373646021,0.082594767212868,0.00040144976810552],[-0.069520734250546,0.047115530818701,-0.12267784029245]],[[-0.10248415917158,0.018652321770787,-0.16088928282261],[0.10928152501583,0.013608153909445,-0.062187753617764],[0.045622885227203,-0.060778085142374,0.13477165997028]],[[0.056929100304842,0.12020099908113,-0.15528865158558],[0.050937935709953,-0.073498263955116,-0.12891453504562],[0.11908479779959,-0.10348357260227,0.040206026285887]],[[0.048316344618797,-0.064679361879826,0.00099202641285956],[-0.050309084355831,-0.080020554363728,-0.027973545715213],[-0.099985010921955,0.038189735263586,0.19271022081375]],[[0.062055516988039,0.031768571585417,0.012938877567649],[0.011067812331021,0.14336290955544,-0.14223164319992],[-0.037569038569927,0.01212275121361,-0.15015837550163]],[[-0.028182405978441,-0.088881306350231,-0.096871919929981],[-0.24098725616932,-0.0096994377672672,0.085813030600548],[-0.015404880046844,0.11279672384262,0.15434116125107]],[[-0.079792976379395,0.15978312492371,0.033889271318913],[0.099682308733463,0.055395632982254,-0.04723884537816],[-0.015457643195987,0.053704269230366,-0.14220404624939]],[[-0.074377879500389,-0.17586277425289,0.0051230527460575],[-0.034735511988401,-0.13732644915581,0.12251818925142],[-0.019047060981393,0.055718213319778,0.20118249952793]],[[-0.018434228375554,-0.0017055210191756,-0.051764409989119],[-0.04465864226222,0.026204492896795,-0.23115859925747],[-0.014889621175826,0.003458438673988,-0.38572260737419]],[[-0.044339142739773,0.087925635278225,-0.15842159092426],[0.0047540101222694,0.010875171981752,0.1783085167408],[-0.019995015114546,0.072675928473473,0.19747804105282]],[[-0.040820512920618,0.045352652668953,0.06992057710886],[-0.0039771622978151,0.044827498495579,-0.1128244549036],[-0.006346323993057,-0.013773207552731,0.058762613683939]],[[-0.061884801834822,-0.11855804920197,0.0013766499469057],[0.029247738420963,-0.0863042101264,-0.077211737632751],[0.095802895724773,0.13834472000599,-0.079537414014339]],[[-0.16097642481327,0.067967385053635,0.014664473943412],[-0.0089141903445125,-0.11398201435804,0.031811743974686],[-0.021841529756784,-0.0084973871707916,-0.021721199154854]],[[0.086842708289623,0.14791801571846,-0.0030251366551965],[0.079939931631088,0.01201153639704,0.028506632894278],[0.07710188627243,-0.24864374101162,-0.15096314251423]],[[-0.083870217204094,0.010256354697049,0.11088656634092],[0.030856179073453,0.13313572108746,0.13928130269051],[-0.18736715614796,-0.064131207764149,-0.021245187148452]],[[-0.14668688178062,-0.046955335885286,0.043381027877331],[0.072700396180153,0.018255682662129,0.0037906439974904],[0.070604577660561,-0.12812815606594,-0.10463453829288]],[[-0.015114835463464,0.058153383433819,0.028601873666048],[-0.047358836978674,-0.11944220215082,0.049090567976236],[-0.0061878152191639,-0.1178206205368,0.068175509572029]],[[0.097948610782623,-0.070713944733143,0.0081172902137041],[0.037537578493357,-0.14466559886932,0.019403018057346],[-0.012417856603861,-0.07117560505867,0.039595875889063]],[[-0.074467733502388,0.019696295261383,-0.070108525454998],[0.18713781237602,-0.0081301005557179,-0.064492635428905],[-0.084311351180077,-0.24805176258087,-0.023983456194401]],[[-0.091557666659355,-0.17819362878799,0.11408533900976],[-0.020008768886328,-0.17542664706707,-0.07184012234211],[0.049592390656471,-0.083351574838161,0.048160161823034]],[[0.096399575471878,-0.13966354727745,0.080611534416676],[-0.04909074306488,-0.10866866260767,0.10136940330267],[-0.15066711604595,0.081502348184586,0.11529364436865]],[[-0.022665420547128,0.050652999430895,-0.056563083082438],[-0.051030900329351,0.026993913576007,0.067961737513542],[-0.019878996536136,0.09861071407795,0.060800708830357]],[[-0.020074332132936,0.023133419454098,0.071950793266296],[-0.0082170395180583,-0.044200025498867,-0.051948755979538],[-0.0001961694797501,0.053584203124046,-0.093127250671387]],[[0.071608610451221,0.010013396851718,0.028713349252939],[-0.020220302045345,0.077680684626102,-0.082750357687473],[-0.058446656912565,0.10583351552486,-0.093653649091721]],[[-0.11660614609718,0.20868664979935,0.02949358522892],[-0.047641173005104,-0.15424978733063,-0.19684557616711],[-0.10596882551908,-0.0070466510951519,0.20845471322536]]],[[[0.078601963818073,0.04484686255455,0.017942795529962],[-0.061763510107994,-0.028379755094647,0.092515170574188],[0.0027891080826521,-0.068542890250683,0.037196878343821]],[[0.034961830824614,0.041949704289436,-0.010856654495001],[0.0025266709271818,-0.0058194887824357,0.01697694696486],[0.017843689769506,0.02303302846849,0.1107237264514]],[[-0.076649315655231,-0.021914886310697,0.003449228592217],[-0.031441930681467,-0.027834344655275,0.070634923875332],[0.035934917628765,0.036583110690117,-0.017112251371145]],[[0.033278867602348,0.017601089552045,-0.058163180947304],[0.06026803702116,0.025218753144145,0.068463258445263],[0.054003689438105,0.027342645451427,0.023020768538117]],[[-0.038540296256542,-0.071213364601135,-0.0305968336761],[0.021648062393069,-0.0090653132647276,0.082936361432076],[0.10177961736917,0.046478796750307,0.04733294993639]],[[0.048961624503136,0.012233883142471,0.0219601765275],[0.027429193258286,0.027637178078294,-0.033996839076281],[0.048126500099897,-0.013398743234575,0.051057644188404]],[[0.012689201161265,-0.054961424320936,0.033117368817329],[0.044685091823339,0.049867048859596,-0.049225963652134],[-0.028131525963545,0.018316784873605,-0.011206460185349]],[[0.067886956036091,-0.071942321956158,-0.028750682249665],[0.029495473951101,0.06688367575407,-0.032875586301088],[0.12319976836443,-0.0078494986519217,0.04873563721776]],[[-0.0075923847034574,-0.077340051531792,0.02521519176662],[-0.025902386754751,0.01468404661864,0.052073393017054],[0.031992256641388,0.0063736811280251,0.034661121666431]],[[0.025644853711128,0.067701958119869,0.089133128523827],[-0.039391055703163,0.0041476925835013,-0.0027994567062706],[0.039357867091894,0.041503217071295,-0.034612655639648]],[[0.011772061698139,-0.0017744987271726,-0.044308252632618],[0.063660718500614,0.0058105383068323,-0.036758299916983],[0.072732985019684,0.065209612250328,0.030756996944547]],[[-0.021997367963195,-0.0018376058433205,0.06298354268074],[0.034812498837709,-0.025567039847374,-0.10973170399666],[0.011081514880061,0.019671389833093,-0.026850141584873]],[[0.041029054671526,0.066883571445942,0.028765484690666],[0.047481667250395,0.038501288741827,0.0091084782034159],[0.066199749708176,0.011719722300768,0.034496027976274]],[[0.088485814630985,-0.043199487030506,-0.034593310207129],[0.018851708620787,0.10571966320276,0.015069735236466],[-0.031679477542639,-0.033169120550156,0.027991345152259]],[[0.0062523470260203,-0.023960527032614,-0.073161117732525],[0.051026687026024,0.091016411781311,0.10058459639549],[0.021256681531668,-0.017624234780669,0.0057688350789249]],[[-0.064509101212025,0.0028878855518997,-0.04358146712184],[-0.043575827032328,-0.026368867605925,-0.062490783631802],[-0.039667204022408,-0.026295010000467,0.024955049157143]],[[0.015703411772847,0.095258668065071,-0.039320677518845],[-0.003818524768576,0.10551518946886,-0.0028190701268613],[-0.030765788629651,0.0045989351347089,0.0010461561614648]],[[0.00016388803487644,-0.043042130768299,0.0019360358128324],[-0.029487976804376,-0.036282245069742,-0.03213220462203],[0.07538141310215,-0.010106186382473,-0.056303706020117]],[[-0.032597221434116,-0.076182000339031,0.012457428500056],[0.01332142483443,0.031700033694506,0.026593219488859],[-0.011562362313271,0.0083605004474521,-0.0023026901762933]],[[0.040817115455866,-0.053756926208735,0.042804405093193],[-0.019830392673612,-0.080473020672798,-0.019029023125768],[0.049862291663885,0.07222893089056,0.019446894526482]],[[0.022250976413488,-0.054434228688478,0.034073580056429],[-0.067900165915489,0.028905330225825,-0.046462338417768],[-0.0012410291237757,-0.048013962805271,0.077707335352898]],[[-0.020772280171514,0.04286178201437,-0.012409747578204],[0.030750708654523,0.069454558193684,0.028500648215413],[-0.0018851954955608,-0.034667696803808,0.058142125606537]],[[-0.028340082615614,0.038145657628775,0.042885087430477],[0.10054982453585,-0.022849209606647,0.0016552058514208],[-0.049634743481874,-0.037158872932196,-0.0033524977043271]],[[-0.013241753913462,-0.069930888712406,0.01266570482403],[0.076166771352291,0.030505040660501,0.1026299521327],[-0.03763247653842,0.0034709931351244,0.025134298950434]],[[-0.062794111669064,0.065936349332333,0.022743046283722],[-0.046917587518692,-0.0076807816512883,-0.0029877119231969],[0.034349791705608,0.047380607575178,0.084654696285725]],[[-0.050532441586256,-0.014232616871595,0.013694556429982],[-0.013560183346272,0.062604501843452,-0.020316887646914],[-0.0009955617133528,-0.011727879755199,-0.016983207315207]],[[-0.024846836924553,-0.019328106194735,0.047452338039875],[-0.014569138176739,0.0038790248800069,-0.037359949201345],[-0.012031811289489,0.031532406806946,0.034258365631104]],[[-0.092209868133068,0.012324204668403,-0.0047000804916024],[-0.0017826068215072,0.050333723425865,0.017290806397796],[-0.0694270581007,-0.0041133756749332,0.024351360276341]],[[0.019146032631397,-0.0085219098255038,0.044558838009834],[0.0093245580792427,0.015423229895532,-0.043108399957418],[-0.034662123769522,0.021402759477496,-0.0030674154404551]],[[-0.077677212655544,0.020633557811379,-0.10041674971581],[-0.017477091401815,-0.031505443155766,-0.0082493517547846],[0.070936910808086,0.058982215821743,0.066663019359112]],[[-0.00864820741117,0.070325247943401,0.054094150662422],[0.027217533439398,0.070367842912674,-0.0053918682970107],[-0.019135463982821,-0.033441379666328,0.043781939893961]],[[0.058205466717482,-0.0061625023372471,-0.022821867838502],[0.041111007332802,0.018252709880471,-0.058549158275127],[0.027346326038241,0.022555138915777,-0.013253029435873]],[[0.058452114462852,-0.014276994392276,0.042538948357105],[-0.082468792796135,0.03956551104784,0.02901011519134],[0.012104256078601,0.076374232769012,-0.11235903948545]],[[-0.035709250718355,-0.051655016839504,0.0019972829613835],[0.061622232198715,0.034682303667068,-0.025368064641953],[-0.0079093314707279,0.010021704249084,0.015506407245994]],[[-0.053256046026945,0.023353222757578,-0.050351772457361],[-0.038758959621191,-0.040431711822748,-0.02828343398869],[0.0063822725787759,0.0040197093039751,0.044556882232428]],[[0.065338917076588,-0.013151149265468,0.003246434731409],[0.075275488197803,-0.031808365136385,0.0033136536367238],[-0.023951211944222,0.035746950656176,0.081872537732124]],[[0.043156549334526,-0.032811842858791,0.0078300470486283],[0.050017151981592,-0.060725372284651,0.019799917936325],[-0.0010114194592461,-0.039760567247868,-0.02183167077601]],[[0.026362849399447,0.032351586967707,0.033225677907467],[-0.10508445650339,-0.035674087703228,-0.025826193392277],[0.050000626593828,0.012928445823491,-0.027366865426302]],[[-0.068267904222012,-0.063665628433228,-0.06453413516283],[0.0070065860636532,0.05662189796567,-0.048487640917301],[-0.0069417748600245,0.0061495145782828,-0.029312543570995]],[[0.083870753645897,0.048938684165478,0.023362349718809],[0.014635441824794,0.024781985208392,-0.049895085394382],[0.010704530403018,0.014484073966742,-0.04616454988718]],[[0.0078989015892148,-0.037840005010366,0.010671273805201],[-0.078627966344357,0.012454578652978,-0.0055131488479674],[-0.043614860624075,-0.021055523306131,0.037543129175901]],[[0.027701068669558,-0.028731076046824,-0.03736112639308],[0.025346243754029,0.07899621874094,0.017249662429094],[-0.01500297896564,0.009536306373775,0.075308635830879]],[[0.0018682013032958,0.04053046926856,0.0085649192333221],[0.055201392620802,0.098680540919304,0.017696898430586],[-4.6810746425763e-05,0.054489798843861,0.10153403878212]],[[-0.018878100439906,0.0025463898200542,0.019290007650852],[-0.030126221477985,-0.0047392165288329,-0.037877582013607],[0.020733492448926,-0.016264546662569,0.02003582008183]],[[0.044673901051283,-0.020113600417972,-0.009519531391561],[-0.0048677586019039,-0.011519287712872,-0.03565302118659],[0.054725326597691,-0.024656623601913,-0.12909686565399]],[[0.059293821454048,0.090459138154984,0.091480799019337],[0.057371962815523,-0.0080495309084654,-0.012678986415267],[0.024936556816101,0.046377841383219,0.087213307619095]],[[-0.032920051366091,-0.045283511281013,-0.028523501008749],[-0.018466738983989,-0.011926623992622,0.0076598054729402],[-0.049002278596163,-0.072466254234314,0.057184062898159]],[[-0.056187838315964,-0.030248031020164,-0.085027851164341],[-0.084827281534672,-0.0085475696250796,0.022933050990105],[-0.023478860035539,-0.024320119991899,-0.019861960783601]],[[-0.038197655230761,-0.086437746882439,0.0078079923987389],[0.030186980962753,-0.025156738236547,-0.036495767533779],[-0.044889304786921,-0.030267491936684,-0.035676911473274]],[[0.0095338514074683,0.033112548291683,-0.091125532984734],[0.009945192374289,0.030524617061019,-0.049238424748182],[-0.083937995135784,-0.062204506248236,0.049270823597908]],[[0.0077422768808901,0.0040781982243061,0.042921755462885],[0.020148750394583,0.056082215160131,-0.01825275272131],[0.022628884762526,0.0034468129742891,-0.019989687949419]],[[-0.00035766905057244,0.0074851061217487,0.059757690876722],[-0.0089698154479265,0.064074464142323,-0.0094251735135913],[-0.046875316649675,0.018439382314682,-0.028949845582247]],[[-0.061507325619459,-0.061999812722206,-0.04905242472887],[0.0085236122831702,0.028997676447034,-0.072460271418095],[0.0064876237884164,0.028847692534328,0.013738153502345]],[[0.061838440597057,0.041716434061527,0.12056625634432],[0.002508839359507,-0.038019176572561,0.041145995259285],[0.057575900107622,0.085449248552322,0.0070420717820525]],[[-0.011278742924333,-0.014233896508813,0.022189039736986],[0.053739812225103,0.0094581888988614,-0.016442213207483],[0.088959835469723,0.070907533168793,-0.036069300025702]],[[0.015681263059378,-0.0051177465356886,-0.012494186870754],[-0.038045682013035,0.039011362940073,0.10405879467726],[0.011314505711198,-0.085991837084293,0.046730928122997]],[[-0.037655606865883,0.11995636671782,0.058526780456305],[0.10377239435911,0.067842073738575,0.047256954014301],[-0.0026992629282176,-0.067093066871166,0.016259357333183]],[[-0.0467883720994,-0.035948865115643,-0.0166577976197],[0.036227680742741,-0.10169243812561,0.0039680916815996],[0.057990320026875,-0.060455702245235,-0.05501326918602]],[[-0.061962477862835,-0.0047526056878269,0.04082153737545],[0.063623175024986,0.026273248717189,0.08910708129406],[0.049014586955309,0.014603628776968,0.0084114875644445]],[[0.042383749037981,0.06451129168272,-0.050310801714659],[0.090617433190346,-0.0461858920753,-0.0091637251898646],[0.014862780459225,0.025226268917322,-0.036048348993063]],[[-0.063064843416214,0.02662880718708,0.008907999843359],[0.016176968812943,0.038912158459425,0.015428294427693],[0.034300610423088,-0.028077632188797,0.015587887726724]],[[-0.040829416364431,0.039426214993,0.10958247631788],[-0.013539111241698,0.034448474645615,-0.095653131604195],[-0.020531699061394,-0.006181180011481,0.015578267164528]],[[-0.00086849246872589,0.020618679001927,0.025096463039517],[-0.0031007749494165,0.027841001749039,0.0077453348785639],[-0.022990295663476,-0.0049353120848536,-0.025191826745868]],[[-0.031137557700276,-0.013821486383677,-0.10578632354736],[-0.030886080116034,0.013900334946811,0.067367486655712],[0.01046166755259,-0.056506726890802,-0.028057524934411]],[[0.0063197091221809,-0.011584306135774,0.0072648273780942],[0.010666195303202,0.020886359736323,0.020895039662719],[0.01678860001266,0.013964020647109,-0.046976119279861]],[[0.063720814883709,0.045843452215195,0.069206357002258],[0.017484668642282,-0.017129758372903,-0.027908246964216],[0.048360850661993,-0.052747800946236,0.047535166144371]],[[0.041981354355812,0.032374046742916,-0.079001195728779],[0.07248093187809,-0.01638213917613,0.022829134017229],[-0.02658473700285,-0.0056033693253994,0.11752899736166]],[[0.082894615828991,0.027813861146569,0.027018971741199],[-0.053055256605148,-0.041500754654408,0.031839720904827],[0.026181181892753,-0.0074203829281032,-0.031075268983841]],[[0.00048119001439773,0.028765892609954,-0.0012760644312948],[0.014039402827621,0.012027496472001,0.10799596458673],[0.12048224359751,-0.0048128678463399,-0.022438079118729]],[[0.016539124771953,0.050524026155472,0.036285907030106],[0.026504095643759,0.05385509878397,0.020846435800195],[-0.00024097300774883,-0.076385922729969,-0.07695185393095]],[[0.055641297250986,-0.012416607700288,-0.022307826206088],[-0.055953674018383,0.023605149239302,0.0005029842723161],[0.050699658691883,0.07969556748867,-0.0076843621209264]],[[0.0045914533548057,0.031046375632286,-0.010664361529052],[-0.021916545927525,0.0067496355623007,-0.062564007937908],[-0.087959490716457,-0.049070727080107,0.018287293612957]],[[0.059651598334312,0.052984286099672,-0.017553294077516],[0.01740674674511,-0.00030299081117846,-0.0070284283719957],[0.0031675468198955,0.06170367449522,0.0054577821865678]],[[0.012847633101046,-0.030076865106821,0.026918085291982],[0.0018657452892512,-0.010268953628838,-0.0021241777576506],[-0.016119787469506,-0.036315150558949,-0.033157803118229]],[[-0.050767384469509,-0.058722708374262,-0.045780722051859],[-0.020759725943208,-0.041376821696758,-0.066677190363407],[0.0026842404622585,0.068828925490379,0.048888828605413]],[[0.015615372918546,0.01884257979691,-0.050129473209381],[0.026107078418136,0.0099110146984458,-0.012726731598377],[0.004308067727834,-0.004184995777905,-0.041771985590458]],[[0.030893476679921,-0.071389392018318,-0.042532067745924],[0.052446126937866,-0.012229559011757,0.046749617904425],[0.0017800154164433,0.020984150469303,0.04868621379137]],[[-0.014427600428462,-0.0083664106205106,-0.062089014798403],[0.03348757699132,0.042380075901747,-0.010114840231836],[0.026687240228057,-0.05324188247323,0.10831103473902]],[[0.0058998465538025,0.089592717587948,-0.034203853458166],[0.031604118645191,0.071846798062325,-0.063279077410698],[-0.088703207671642,-0.073399908840656,-0.033496096730232]],[[0.041659735143185,-0.064332708716393,0.0017130085034296],[-0.029356433078647,0.038745328783989,-0.06185319647193],[0.0018504046602175,0.060872960835695,0.0070277508348227]],[[-0.00066588696790859,-0.0081228204071522,-0.035126276314259],[-0.02576925046742,-0.12858259677887,-0.015863582491875],[-0.052680898457766,-0.055275041610003,-0.010584800504148]],[[-0.020622635260224,-0.077338963747025,-0.065165460109711],[-0.066400066018105,0.071174293756485,-0.036624945700169],[0.0084115471690893,-0.048871252685785,-0.038227997720242]],[[-0.01834905333817,0.032508872449398,-0.014694320037961],[-0.043303187936544,-0.031154345721006,0.096610955893993],[0.082914337515831,0.053768899291754,0.020418267697096]],[[0.060384903103113,0.079302549362183,0.023388374596834],[-0.076284758746624,-0.047244768589735,0.06125221773982],[0.011272810399532,-0.0050393827259541,-0.064620889723301]],[[0.022597512230277,0.011195993050933,-0.028877440840006],[-0.040607642382383,-0.0093759503215551,0.06366715580225],[0.033898320049047,-0.0064851026982069,0.015443742275238]],[[-0.028951460495591,0.033663887530565,-0.0055771265178919],[0.019128084182739,0.013009771704674,-0.13173711299896],[-0.026709694415331,0.075725741684437,0.066524796187878]],[[-0.0029697408899665,-0.048734620213509,0.004908955655992],[-0.0021904178429395,0.010735420510173,0.010270310565829],[0.067349031567574,-0.035321228206158,0.050757292658091]],[[0.023283971473575,0.034687776118517,0.0068380078300834],[0.031645189970732,0.015066836960614,-0.077504500746727],[-0.019488414749503,-0.031237352639437,-0.0096624214202166]],[[0.016035508364439,0.014854535460472,-0.087806135416031],[0.04328541457653,0.02079657278955,0.058879047632217],[-0.012197409756482,-0.0097450213506818,0.0097527336329222]],[[-0.048606690019369,-0.036098416894674,-0.072757549583912],[0.0032138184178621,0.058664217591286,0.039651371538639],[0.001309787039645,-0.082831986248493,-0.0032589910551906]],[[0.029473030939698,0.026655210182071,-0.034361869096756],[0.078384943306446,0.040369909256697,0.032200265675783],[0.050348054617643,0.05395419895649,-0.050851821899414]],[[-0.15196537971497,-0.02590324729681,0.019142108038068],[0.018486233428121,-0.063012719154358,-0.093459315598011],[0.06927252560854,0.020955480635166,-0.069312565028667]],[[0.020120052620769,0.014617135748267,0.09742246568203],[0.013350578024983,-0.041922353208065,-0.045988205820322],[0.012871447950602,-0.0097891492769122,-0.053277567028999]],[[-0.050835076719522,0.042313508689404,-0.024046577513218],[0.04388740286231,0.071067102253437,-0.016385553404689],[-0.041521046310663,-0.02759594283998,0.0076077999547124]],[[-0.017359901219606,-0.0062744976021349,-0.0078305806964636],[0.01589510589838,-0.019023226574063,-0.029828267171979],[0.0078049711883068,-0.02671791613102,-0.046313013881445]],[[-0.0060592466033995,0.015113144181669,-0.029459465295076],[-0.088641852140427,0.10988584160805,0.033988524228334],[-0.036859776824713,0.0061862017028034,-0.073613688349724]],[[0.08690994977951,0.034265715628862,0.021849842742085],[-0.015455204062164,-0.097088679671288,0.037497602403164],[0.0045272316783667,0.013770923018456,0.07643399387598]],[[0.065040349960327,-0.010694121941924,0.020166153088212],[-0.012093951925635,0.041304975748062,-0.003461375599727],[0.054591257125139,0.047434873878956,-0.0037571531720459]],[[0.064229890704155,-0.015777377411723,-0.0036888222675771],[0.061403479427099,-0.020120510831475,0.041867826133966],[-0.021626500412822,-0.080946661531925,0.0063373139128089]],[[-0.06841517239809,-0.033095773309469,-0.012574636377394],[0.043914638459682,0.058575097471476,0.12396175414324],[0.084083154797554,-0.071578197181225,-0.084100641310215]],[[-0.028052987530828,-0.053867775946856,0.065901815891266],[0.046751290559769,-0.04837142303586,-0.0083958171308041],[-0.049906224012375,0.021008469164371,-0.0098337205126882]],[[-0.016731176525354,0.02947460860014,-0.054537359625101],[0.0087575847283006,-0.0026719325687736,0.035750262439251],[-0.023296782746911,0.076362170279026,0.090987086296082]],[[0.022511318325996,-0.008492854423821,0.0082837184891105],[0.025682497769594,0.0025794445537031,0.04527260735631],[0.057605609297752,0.056352496147156,0.034837380051613]],[[-0.083777651190758,-0.0098703382536769,-0.0032459783833474],[-0.010940046980977,-0.026557825505733,-0.094466730952263],[0.067425981163979,-0.05860798060894,-0.067980766296387]],[[0.060385193675756,-0.0078977243974805,0.011695347726345],[0.038009021431208,-0.075769923627377,0.022039443254471],[-0.0088503556326032,0.013975731097162,-0.072613917291164]],[[-0.0080160228535533,-0.037764880806208,-0.045961890369654],[0.13161338865757,0.048563547432423,0.019266372546554],[0.0061750086024404,0.046037781983614,-0.025785589590669]],[[0.055762317031622,-0.036245793104172,0.028181092813611],[0.074317596852779,-0.023107403889298,-0.0016916167223826],[-0.0050202566199005,0.079224422574043,0.023635592311621]],[[-0.044723518192768,0.050526823848486,-0.029516451060772],[-0.021930448710918,-0.087488055229187,0.0086899641901255],[-0.016252318397164,0.071008488535881,0.068440221250057]],[[0.013671390712261,0.025291554629803,-0.0050609055906534],[0.00095768814207986,-0.043647401034832,0.042269766330719],[0.039924383163452,-0.02725974842906,0.0095150051638484]],[[-0.049503158777952,-0.0058288527652621,-0.010215519927442],[-0.0058694705367088,0.075445510447025,0.029151037335396],[0.068486556410789,0.041374802589417,-0.0049082599580288]],[[-0.05794532969594,-0.115578584373,-0.05565033107996],[0.069100901484489,0.030870273709297,-0.025832058861852],[0.015208806842566,0.059236411005259,0.014029106125236]],[[0.039815187454224,-0.078836679458618,-0.098265923559666],[-0.018007202073932,-0.059231482446194,-0.037077307701111],[-0.041687738150358,0.026037946343422,0.036311879754066]],[[-0.040509186685085,-0.059848096221685,-0.024811208248138],[0.0062162042595446,-0.019070737063885,-0.021650090813637],[-0.047924380749464,-0.015719320625067,-0.042109090834856]],[[-0.09219017624855,-0.0033248071558774,-0.092585891485214],[0.0083159459754825,-0.014532760716975,0.030017666518688],[-0.030277736485004,-0.013160158880055,0.031562253832817]],[[-0.025883615016937,0.083768732845783,0.022217774763703],[-0.089209489524364,-0.0036721543874592,0.10178545862436],[-0.042663987725973,-0.053186189383268,0.043446686118841]],[[0.021443298086524,0.029384249821305,-0.051619157195091],[0.030114743858576,-0.031437207013369,-0.07370314002037],[3.0584658816224e-05,-0.049046956002712,-0.0043683997355402]],[[0.023139918223023,-0.072779096662998,-0.098120637238026],[0.022318312898278,-0.030236965045333,0.0016640002140775],[0.088522009551525,0.091819874942303,0.017074251547456]],[[0.050269063562155,-0.02519728243351,0.0052817002870142],[-0.0082663586363196,-0.048621919006109,-0.095363155007362],[0.011789397336543,-0.067112497985363,-0.017171375453472]],[[-0.15515385568142,-0.10629869997501,-0.05022032558918],[0.01374504249543,0.024117171764374,-0.02358422614634],[-0.073052063584328,0.027074314653873,-0.028657959774137]],[[-0.061507005244493,-0.0047899158671498,0.12302093952894],[0.027771629393101,0.063610747456551,0.036131847649813],[0.065458573400974,0.03132713958621,0.0014830126892775]],[[-0.026468245312572,-0.017989329993725,0.0043016918934882],[0.005176970269531,-0.056185565888882,0.074726834893227],[-0.066573098301888,-0.0079445792362094,-0.0629817917943]],[[-0.046977732330561,0.016732124611735,-0.097626008093357],[-0.041481573134661,0.027873637154698,0.016438668593764],[-0.016514059156179,0.03163643553853,-0.12483963370323]],[[-0.033376578241587,0.043607592582703,0.072128720581532],[-0.01250631455332,-0.018023462966084,0.012545142322779],[-0.035552952438593,-0.0048516266979277,-0.06453637778759]],[[0.085431896150112,0.048000875860453,0.046908602118492],[-0.034370996057987,0.015864768996835,-0.027181096374989],[0.062662281095982,-0.037781219929457,-0.064681448042393]],[[-0.016004884615541,-0.052995391190052,-0.027326280251145],[0.017257345840335,-0.020273579284549,0.0068941181525588],[0.024961924180388,-0.0046726199798286,0.014120243489742]],[[0.015010540373623,0.017938695847988,0.0059312009252608],[0.035870242863894,0.028475444763899,0.019556565210223],[-0.022867327556014,-0.0028339917771518,0.03777764365077]],[[0.035399071872234,0.034956559538841,0.0023851396981627],[0.033944480121136,0.016572909429669,0.03502182289958],[0.063091650605202,0.036899819970131,0.08324983716011]],[[-0.046483833342791,0.12754322588444,0.040196564048529],[0.053707424551249,-0.00087978225201368,0.1744686216116],[-0.047041263431311,-0.011595621705055,0.052951853722334]]],[[[-0.029178157448769,0.043277882039547,-0.045977853238583],[0.020123641937971,0.056655306369066,-0.011342932470143],[0.056212909519672,0.0082136979326606,-0.0027451645582914]],[[0.01996705122292,-0.061192739754915,0.010516435839236],[0.068683780729771,-0.022871209308505,-0.0013485626550391],[0.093989677727222,0.039815999567509,-0.0066894139163196]],[[-0.061868842691183,0.0494817905128,0.035723596811295],[0.033453207463026,0.0462511703372,-0.046876408159733],[-0.010248062200844,0.01127159036696,0.033682085573673]],[[0.040907826274633,-0.090332359075546,0.0013653670903295],[-0.0013094651512802,-0.04134476929903,0.013418823480606],[-0.03475421667099,0.0060529089532793,0.004741501994431]],[[-0.028342686593533,0.0178152192384,0.017041573300958],[0.016061136499047,0.030675925314426,0.0094938306137919],[-0.037624474614859,-0.035654675215483,-0.042539041489363]],[[-0.007446083240211,0.0045535331591964,0.038210891187191],[-0.00078553962521255,-0.024131812155247,0.048022359609604],[0.031407192349434,-0.0064047095365822,-0.0037800692953169]],[[-0.025305507704616,0.024314656853676,-0.017534375190735],[0.030325587838888,0.026125695556402,-0.027306998148561],[-0.020520217716694,0.02747605741024,-0.0085907839238644]],[[0.016564505174756,0.019792314618826,0.021865336224437],[-0.029177909716964,-0.044683463871479,-0.0021799479145557],[7.887421088526e-05,-0.03279522061348,0.0087144505232573]],[[0.0077277855016291,0.013172917068005,-0.044027086347342],[0.013125702738762,-0.0079940631985664,-0.010951577685773],[-0.025570899248123,0.047407437115908,0.04197396337986]],[[0.0012275768676773,-0.0056932214647532,-0.018205175176263],[0.031500525772572,-0.068727552890778,-0.041960589587688],[0.0060346955433488,0.069835595786572,0.079657204449177]],[[-0.010993224568665,0.017971886321902,0.0088300304487348],[0.045782890170813,0.05339002981782,-0.039354354143143],[0.0059977076016366,-0.042205695062876,-0.068001911044121]],[[-0.025375498458743,-0.0007778235594742,0.038692139089108],[-0.026738939806819,0.028897924348712,0.044742520898581],[-0.017491800710559,-0.020077649503946,-0.032786902040243]],[[-0.0072122407145798,-0.054119810461998,0.00091013632481918],[0.049325384199619,0.011088810861111,0.048149410635233],[-0.0011568343034014,0.0059752142988145,0.018432658165693]],[[0.013903919607401,-0.025048958137631,0.022909104824066],[0.013194099068642,0.066990278661251,-0.050054531544447],[0.036341622471809,0.028752196580172,-0.046784337610006]],[[-0.025767711922526,-0.03444929420948,-0.072383709251881],[0.026122506707907,0.025109875947237,0.056405574083328],[0.02617814950645,0.0016173939220607,0.024576012045145]],[[0.023162556812167,0.019139505922794,0.0027549229562283],[0.011108743026853,-0.052787497639656,-0.0024009793996811],[0.034532099962234,0.039191015064716,-0.020368235185742]],[[-0.037199970334768,0.024907505139709,-0.048616323620081],[0.018944969400764,0.043239034712315,-0.0328359156847],[-0.011964564211667,0.033327639102936,0.025271719321609]],[[-0.0083290794864297,0.035474453121424,0.07041759043932],[-0.03321011736989,-0.017119569703937,-0.073193944990635],[-0.052758295089006,-0.039455823600292,0.073023743927479]],[[0.013564142398536,0.027260489761829,-0.025952540338039],[0.0061473087407649,0.04318818077445,-0.024892967194319],[0.042478144168854,-0.022168437018991,0.018255023285747]],[[0.031773284077644,0.01394853182137,-0.067493759095669],[-0.016533520072699,0.016851613298059,-0.07991685718298],[0.020248800516129,0.040591988712549,-0.0070680752396584]],[[0.009448854252696,0.058587394654751,0.035677216947079],[-0.030367976054549,-0.018769668415189,-0.032232210040092],[-0.084000237286091,-0.077681638300419,-0.086311005055904]],[[-0.010814413428307,-0.0047371713444591,0.021717147901654],[-0.02980899438262,-0.042980309575796,0.052324641495943],[0.042777985334396,-0.013658088631928,-0.0084357997402549]],[[0.029333619400859,-0.023017985746264,0.011234584264457],[0.036450393497944,0.072976835072041,0.0042067407630384],[-0.0030521533917636,-0.03227761015296,-0.063022784888744]],[[0.02976986952126,-0.038451071828604,-0.045937042683363],[-0.0049227923154831,-0.025539238005877,-9.9737837444991e-05],[0.0073872595094144,-0.039981953799725,0.028954407200217]],[[-0.017640033736825,0.015752894803882,0.043422181159258],[0.0088948560878634,0.016674682497978,-0.022127728909254],[-0.048597153276205,0.016697211191058,0.024527173489332]],[[-0.010258025489748,0.072805315256119,0.01839136146009],[-0.030919793993235,-0.0050830002874136,0.028860365971923],[-0.028035731986165,-0.028518376871943,-0.025796899572015]],[[0.0082676392048597,-0.0075164651498199,0.026020590215921],[0.0041110054589808,-0.031272318214178,0.040899261832237],[-0.012541175819933,0.044423971325159,-0.044735241681337]],[[-0.013741316273808,0.0014157457044348,-0.022013733163476],[-0.020423779264092,0.022657353430986,0.031686779111624],[0.0028539977502078,0.040043011307716,0.025141272693872]],[[-0.035359650850296,0.00041572525515221,0.0079394830390811],[0.070404678583145,0.076196596026421,0.029029458761215],[0.00074816547567025,-0.053695861250162,-0.078816398978233]],[[0.038276821374893,0.0048494855873287,0.026237681508064],[0.033379033207893,0.0050558564253151,-0.020769935101271],[0.045588601380587,0.017111552879214,0.092908032238483]],[[0.0025175039190799,-0.039194915443659,-0.010304206050932],[-0.054303750395775,0.016814608126879,0.058682054281235],[0.039203356951475,-0.007537245284766,-0.025231275707483]],[[-0.010374015197158,-0.0062090908177197,-0.042539175599813],[-0.057900309562683,-0.032185528427362,0.033991139382124],[0.018356701359153,-0.01591388322413,0.072754271328449]],[[-0.056744024157524,-0.061288848519325,0.032120037823915],[-0.010082663968205,0.037495445460081,0.033778712153435],[0.013493914157152,-0.036130234599113,0.036542952060699]],[[0.0025109783746302,-0.073089517652988,-0.040078680962324],[-0.023602077737451,-0.023137014359236,0.004015679936856],[0.022705994546413,0.08357909321785,-0.036967966705561]],[[0.022751422598958,-0.013176289387047,-0.060588218271732],[-0.012614070437849,-0.0098313447088003,0.018264509737492],[0.014956245198846,-0.0031049645040184,0.03350805491209]],[[-0.077525027096272,0.049103174358606,0.031243439763784],[-0.019359333440661,0.012085288763046,0.045892182737589],[-0.00066536269150674,-0.0024299286305904,0.023103574290872]],[[-0.026005737483501,-0.063048027455807,0.039649307727814],[0.020290400832891,-0.038812778890133,-0.060134068131447],[0.018410883843899,0.025210570544004,-0.035455830395222]],[[0.026943294331431,-0.041733246296644,0.014371478930116],[-0.029696295037866,0.023291783407331,0.0018537421710789],[0.024228740483522,-0.038806617259979,0.030829476192594]],[[0.079708151519299,-0.034435778856277,0.005295961163938],[0.060235824435949,-0.021419990807772,-0.043716609477997],[0.049386169761419,-0.0096442522481084,0.03787587583065]],[[-0.0047971070744097,-0.0029832955915481,-0.014497922733426],[0.022280514240265,0.016362376511097,-0.013772601261735],[-0.043243203312159,-0.021030755713582,-0.006711395457387]],[[-0.014282961376011,-0.0010564882541075,0.049722611904144],[0.013158625923097,-0.0062085590325296,-0.0063217212446034],[0.00094856467330828,0.00020835423492827,0.017394559457898]],[[-0.0048509784974158,-0.011525962501764,-0.018105395138264],[0.015423938632011,0.024307949468493,0.010902318172157],[-0.072067372500896,-0.0025763236917555,0.047006651759148]],[[-0.056719582527876,-0.016603359952569,0.034995961934328],[-0.053212583065033,0.032473016530275,-0.03989015519619],[-0.0029029822908342,0.025009348988533,0.041401173919439]],[[-0.037369731813669,-0.00093614956131205,0.062279526144266],[-0.023658001795411,0.02292743884027,0.0001284555910388],[0.025832867249846,-0.021571923047304,0.0377894975245]],[[-0.049070823937654,-0.0041992249898612,0.0017763574142009],[0.011713442392647,-0.039451900869608,0.012823550030589],[0.04305400326848,0.062064856290817,-0.020373567938805]],[[-0.015070543624461,-0.038840044289827,0.055513974279165],[0.011272319592535,-0.034967713057995,-0.014289242215455],[-0.024073239415884,0.012662274762988,0.074386432766914]],[[-0.013390577398241,0.028356099501252,0.038655620068312],[0.049399774521589,0.0065619177184999,-0.037892583757639],[-0.022870453074574,-0.020255861803889,0.032196585088968]],[[-0.0097151482477784,-0.060411557555199,0.015599540434778],[0.07024884223938,0.0055542280897498,0.0026336847804487],[0.048347044736147,0.067056126892567,0.0022632034961134]],[[-0.010716957971454,-0.038568593561649,0.022279953584075],[0.056748278439045,-0.058941025286913,0.0065842322073877],[0.055933766067028,0.0070397420786321,0.021635271608829]],[[-0.033716630190611,-0.0070248092524707,0.043643984943628],[0.020494600757957,-0.034235842525959,-0.067817501723766],[-0.030149448662996,-0.017797809094191,0.060905635356903]],[[0.028005715459585,-0.048720356076956,-0.043589789420366],[0.1001141667366,0.025605162605643,-0.0035268904175609],[-0.0057038576342165,-0.038446631282568,-0.02649025991559]],[[-0.031961336731911,-0.004640297498554,0.016438292339444],[0.08683005720377,-0.013644388876855,-0.059125687927008],[0.0058374181389809,-0.022571323439479,-0.030050674453378]],[[-0.03939051926136,0.02113838121295,0.0037943942006677],[-0.076015315949917,-0.0095233805477619,0.13114176690578],[-0.012156679295003,0.057668302208185,-0.0097726788371801]],[[-0.00050303136231378,0.0025192885659635,-0.016902185976505],[0.028396839275956,0.011579212732613,0.013705318793654],[0.012699919752777,-0.010975908488035,-0.015773171558976]],[[-0.028061686083674,-0.050461869686842,0.022843651473522],[0.072944112122059,0.026674419641495,-0.045529119670391],[0.041251793503761,0.04570721462369,0.013140393421054]],[[-0.011395425535738,-0.015715710818768,0.0070518013089895],[-0.078474916517735,0.043914668262005,0.02592528052628],[0.040333762764931,-0.057725578546524,-0.0011439044028521]],[[-0.036569837480783,-0.0013866646913812,-0.087421409785748],[0.010775205679238,0.01614218018949,-0.026466635987163],[0.072841331362724,-0.0030375595670193,-0.018600139766932]],[[-0.030658569186926,0.077509254217148,0.020290186628699],[-0.027347315102816,-0.024967608973384,-0.015896789729595],[0.075613044202328,0.031778935343027,-0.0091302869841456]],[[0.042457807809114,-0.01402098312974,-0.031639788299799],[0.044822189956903,0.0093975774943829,0.042849991470575],[0.023627497255802,0.044544789940119,-0.029160354286432]],[[0.026435973122716,0.042205478996038,-0.072107791900635],[0.031749438494444,0.034954395145178,-0.018376303836703],[-0.0087577737867832,-0.030184654518962,-0.021044006571174]],[[0.034384619444609,0.011315356940031,0.013403033837676],[-0.027285309508443,-0.10281272232533,-0.035332623869181],[-0.0052793133072555,0.0060035199858248,-0.053103160113096]],[[0.027980092912912,-0.041658297181129,-0.003285198006779],[-0.00031298390240408,-0.0053040334023535,-0.036437939852476],[-0.012309405021369,-0.034032709896564,-0.044716361910105]],[[-0.012312263250351,0.0022875890135765,0.0066271857358515],[0.00029110378818586,0.010742865502834,-0.020403293892741],[0.015934474766254,0.0230030156672,-0.045383263379335]],[[0.051531314849854,0.057466931641102,0.0046340562403202],[-0.020379019901156,-0.055150039494038,0.030531024560332],[-0.023374922573566,-0.053404081612825,0.019205695018172]],[[0.026033405214548,-0.035385806113482,-0.011887011118233],[0.03851455450058,0.053365848958492,-0.076792202889919],[-0.020142855122685,-0.023686097934842,0.029051776975393]],[[-0.01597691886127,-0.062786214053631,0.0063480269163847],[0.084387958049774,-0.0072807567194104,0.042830791324377],[-0.0094657298177481,-0.022137872874737,-0.018511140719056]],[[0.0076912115328014,0.028446931391954,0.024745270609856],[0.00062143884133548,0.0034347160253674,-0.022089395672083],[0.014623260125518,-0.019301492720842,0.010143026709557]],[[-0.0046800537966192,-0.009249048307538,-0.0023489287123084],[0.020518098026514,-0.0064531918615103,-0.050760943442583],[-0.026737496256828,-0.0024289130233228,0.021046625450253]],[[0.034702830016613,-0.0033889093901962,0.019053591415286],[-0.0032858436461538,0.051628291606903,-0.012692752294242],[0.067591242492199,-0.018851265311241,-0.099369287490845]],[[-0.060678500682116,-0.015261542983353,-0.054200775921345],[0.020073007792234,0.077791072428226,0.039831887930632],[-0.007000139914453,0.011307359673083,0.006198603194207]],[[0.018445597961545,-0.00090373965213075,-0.033149383962154],[0.041424933820963,-0.034498050808907,0.031324904412031],[0.013367175124586,-0.081707574427128,0.014413271099329]],[[-0.049247961491346,-0.0028002343606204,-0.054681088775396],[-0.023167591542006,0.039377275854349,0.049944419413805],[0.00045704067451879,0.079196974635124,-0.011503486894071]],[[-0.017942892387509,-0.072887316346169,0.073388904333115],[-0.050474666059017,-0.029714504256845,0.076742455363274],[-0.063533991575241,0.066836878657341,0.0047194329090416]],[[-0.0055662672966719,0.0464868247509,0.044006951153278],[-0.04401421174407,0.063897393643856,-0.093269042670727],[-0.046626031398773,0.0078850425779819,0.075384005904198]],[[0.008872882463038,0.039926048368216,0.01020731870085],[0.0064155547879636,-0.024800941348076,-0.021982436999679],[-0.05080721154809,-0.0065997424535453,0.0032162750139832]],[[0.06280755251646,0.056144412606955,0.0097153289243579],[0.018362583592534,-0.022083038464189,-0.048283945769072],[-0.029562536627054,-0.0014082445995882,-0.050752650946379]],[[0.013449204154313,-0.064451783895493,0.0077259978279471],[-0.01889430731535,-0.011061831377447,0.040609523653984],[-0.012037883512676,-0.0013205922441557,0.051591891795397]],[[-0.029245583340526,-0.029406333342195,0.052313473075628],[0.039102792739868,0.01850195415318,0.01394123211503],[-0.0053210058249533,0.011127270758152,0.027451170608401]],[[0.056152280420065,0.02692487090826,0.011033493094146],[-0.0029971718322486,-0.025619665160775,-0.063916571438313],[-0.048666402697563,0.028248416259885,-0.03026369959116]],[[0.0062460135668516,0.034520201385021,-0.042728252708912],[0.012189482338727,-0.090729184448719,-0.0010625194991007],[0.083586990833282,0.0028495406731963,0.028663525357842]],[[0.012002630159259,-0.052136223763227,-0.029446065425873],[0.0020013938192278,0.027742559090257,-0.028760064393282],[0.014631579630077,0.043756742030382,-0.052399378269911]],[[0.022229285910726,0.041318479925394,-0.049733269959688],[0.0079742260277271,0.033860210329294,-0.014175763353705],[-0.01548795029521,-0.0012467341730371,-0.036023803055286]],[[0.004751362837851,-0.043814823031425,-0.024424066767097],[0.068321645259857,-0.0095030153170228,-0.004639205057174],[-0.0047264313325286,0.044430106878281,0.027370216324925]],[[-0.012984091416001,-0.052560567855835,-0.0046415529213846],[0.13266126811504,0.028767993673682,0.0015698074130341],[-0.037363383919001,0.0056342147290707,-0.04990541189909]],[[-0.013228894211352,0.0018230120185763,0.060360241681337],[0.016902536153793,0.010963786393404,0.0059618595987558],[-0.019562421366572,0.010358179919422,-0.020356703549623]],[[0.009855373762548,-0.038060873746872,-0.035873796790838],[-0.020782995969057,0.023450346663594,-0.031041061505675],[-0.020840493962169,0.021729243919253,0.065180897712708]],[[0.022818431258202,-0.001563627156429,-0.02705636061728],[0.039281934499741,-0.024416388943791,-0.017322920262814],[-0.05644666031003,0.048835087567568,0.050967149436474]],[[0.020943311974406,-0.059930447489023,0.023610308766365],[0.02579203248024,-0.029965303838253,0.019806366413832],[0.01102109439671,0.026576666161418,-0.035544157028198]],[[0.053228832781315,0.011249109171331,0.04801045358181],[-0.0017686842475086,0.010336132720113,-0.020911803469062],[0.022654846310616,-0.044164806604385,-0.093095541000366]],[[0.034460365772247,0.015327882021666,-0.053557835519314],[-0.016106745228171,0.011413507163525,-0.056629631668329],[0.022161742672324,0.02024319767952,-0.044303491711617]],[[-0.034594889730215,0.061046022921801,-0.041378159075975],[0.030274637043476,0.041258916258812,-0.043508101254702],[0.02359763532877,0.0057476246729493,0.02120546810329]],[[0.082032144069672,-0.030767306685448,0.085414953529835],[-0.011180519126356,0.0019764206372201,0.034471180289984],[0.01794621348381,-0.043611232191324,-0.061653185635805]],[[-0.088620185852051,0.050615295767784,-0.0094334278255701],[0.029221737757325,-0.026221703737974,0.067414306104183],[-0.027440337464213,-0.0023426928091794,-0.024755124002695]],[[0.06112078204751,-0.055017776787281,0.00041428068652749],[0.02481042034924,0.067194879055023,-0.01195917557925],[0.01999925263226,0.0079263895750046,-0.022085489705205]],[[-0.035536110401154,0.021913373842835,-0.020437410101295],[0.058275375515223,0.046922497451305,-0.059832464903593],[0.025344213470817,0.0050357421860099,-0.072858765721321]],[[-0.010283122770488,-0.0055633634328842,-0.045518275350332],[0.020621839910746,0.00065849488601089,-0.01516386307776],[0.029255140572786,0.024605982005596,0.063967935740948]],[[0.0059392317198217,-0.047788131982088,0.023018073290586],[-0.053141478449106,0.0017288702074438,-0.013874201104045],[0.0031629407312721,-0.004627148155123,0.054716188460588]],[[0.034816160798073,-0.018788758665323,-0.075586274266243],[0.065618090331554,0.066712990403175,-0.020653603598475],[-0.038422983139753,0.060280971229076,-0.020620528608561]],[[-0.031439058482647,-0.023924062028527,-0.029269205406308],[0.035970162600279,0.0030947832856327,0.011516007594764],[0.00072662363527343,-0.017169298604131,-0.068505354225636]],[[0.0050677102990448,0.036210551857948,-0.038793370127678],[-0.0035122164990753,-0.013690378516912,0.00019800895825028],[0.027299337089062,0.028429752215743,-0.017535116523504]],[[0.0050864391960204,0.0479158423841,0.02449837513268],[0.010749319568276,0.0032803826034069,0.024663729593158],[0.013966494239867,0.033006638288498,0.038028139621019]],[[0.014854633249342,0.045262731611729,-0.053569480776787],[-0.07203683257103,0.015946352854371,-0.041325327008963],[-0.011111157014966,0.094274289906025,0.026638239622116]],[[0.0095962500199676,-0.015199057757854,-0.027437854558229],[-0.0025298902764916,-0.051893040537834,0.0097023854032159],[-0.020751398056746,-0.0067960587330163,-0.008623393252492]],[[0.0073278388008475,-0.042190868407488,0.015923764556646],[-0.019848521798849,-0.058737341314554,0.039840310811996],[-0.00034482785849832,-0.041177432984114,0.091306068003178]],[[0.01252690795809,0.010723297484219,0.026417979970574],[0.081635020673275,-0.038631677627563,-0.037510748952627],[0.016221264377236,-0.072034120559692,0.048571456223726]],[[-0.0011545276502147,0.065746314823627,-0.060771737247705],[0.058730378746986,-0.040244985371828,0.013854725286365],[0.003936680033803,0.048873830586672,0.0151711050421]],[[-0.051020976155996,0.036537803709507,0.0019620023667812],[-0.00045899060205556,0.018794661387801,0.040986903011799],[-0.10466653853655,-0.0087911784648895,-0.031597018241882]],[[-0.026701802387834,0.077510729432106,-0.023099156096578],[-0.020030543208122,-0.023746715858579,0.052221145480871],[0.0022712992504239,-0.035853616893291,-0.052916508167982]],[[-0.043318476527929,0.010306821204722,-0.0018347766017541],[-0.023410754278302,0.012788535095751,0.026656553149223],[0.024834288284183,-0.077339120209217,0.065461479127407]],[[0.040458980947733,0.024729836732149,-0.013864167034626],[-0.049154084175825,0.027540687471628,0.047011591494083],[0.025431573390961,-0.05105110630393,2.306933311047e-05]],[[-0.019746042788029,-0.051009353250265,-0.11363746970892],[-0.084751069545746,-0.13573744893074,-0.22741591930389],[-0.060999765992165,-0.079963952302933,-0.12600928544998]],[[0.0060723703354597,0.0022841389290988,0.026878837496042],[0.01825256831944,-0.050545133650303,-0.070984207093716],[-0.0024059724528342,-0.0052999714389443,-0.0096336212009192]],[[-0.034586165100336,0.016965562477708,0.077991649508476],[-0.02768912166357,-0.067619971930981,0.019773637875915],[0.0013407664373517,-0.0056831939145923,-0.030996311455965]],[[-0.025610426440835,0.015532403253019,-0.096464417874813],[-0.0089678326621652,0.038870859891176,0.047608055174351],[0.03904278203845,-0.043417502194643,0.052493534982204]],[[0.014954522252083,-0.058443207293749,0.0022681343834847],[-0.0093310186639428,0.0082715302705765,-0.048328932374716],[0.017805153504014,0.06352461129427,0.0011169445933774]],[[0.028546903282404,-0.010087849572301,0.016210744157434],[-0.031470362097025,-0.013860825449228,-0.061319809406996],[0.039916772395372,0.028362933546305,-0.064392223954201]],[[1.5319819794968e-05,-0.073883704841137,-0.018504509702325],[0.020408231765032,0.05853434279561,-0.046982679516077],[0.052457436919212,0.090538017451763,0.072453089058399]],[[0.039032980799675,-0.04438541457057,-0.0051431721076369],[-0.058874499052763,0.10224595665932,-0.0058507085777819],[0.037868976593018,0.001284554018639,-0.003746441565454]],[[0.024837087839842,-0.017115190625191,0.016213081777096],[-0.04864788427949,0.081341817975044,-0.0088939350098372],[0.051232665777206,-0.023072661831975,0.032481037080288]],[[-0.044425755739212,0.03101566247642,0.012719700112939],[-0.041423194110394,-0.090465754270554,-0.025032548233867],[0.033196911215782,0.059693571180105,0.056749321520329]],[[0.037316400557756,-0.038970366120338,-0.017549969255924],[0.033453948795795,-0.055485900491476,-0.029938345775008],[-0.012131829746068,0.038757402449846,0.007701201364398]],[[0.046247713267803,-0.03147991746664,0.039183139801025],[0.062778078019619,0.02135550789535,-0.076358780264854],[-0.09600044041872,-0.11997105181217,-0.058955010026693]],[[-0.0069783707149327,-0.068690091371536,-0.018559575080872],[-0.068022809922695,-0.045362766832113,0.035918220877647],[0.049907833337784,-0.019901601597667,0.038157053291798]],[[-0.0039540124125779,-0.013570974580944,0.031346175819635],[0.029643375426531,-0.032454580068588,0.064162589609623],[0.027550643309951,-0.05924729257822,0.0021133464761078]],[[-0.0096647832542658,-0.056806072592735,-0.044401079416275],[0.012951399199665,0.086326137185097,0.0093536479398608],[-0.013550030998886,0.052975460886955,-0.045122746378183]],[[-0.032416712492704,0.0034562950022519,-0.0067285229451954],[0.094756327569485,0.029490927234292,0.0043719620443881],[-0.024206964299083,-0.02927497588098,-0.020746424794197]],[[0.022401629015803,-0.041384283453226,0.038412794470787],[-0.00939672999084,0.0033090410288423,-0.056350003927946],[0.029655385762453,0.020579278469086,-0.018806902691722]],[[0.071112297475338,-0.02607230655849,0.0011656389106065],[-0.032767336815596,0.077124387025833,0.031339474022388],[-0.01840073056519,0.016484750434756,0.014619224704802]]],[[[0.05042976886034,0.067077621817589,-0.043440967798233],[-0.012081893160939,-0.077720731496811,0.034662686288357],[-0.017348911613226,0.043416183441877,-0.012205478735268]],[[0.024507630616426,-0.01936754770577,-0.0022733481600881],[-0.060793645679951,-0.1503469645977,0.042109273374081],[-0.0079157538712025,0.017798356711864,-0.071988500654697]],[[0.12279359251261,0.10563462972641,0.034503798931837],[-0.012317987158895,-0.057633530348539,0.0024027111940086],[-0.086580395698547,-0.013354834169149,-0.058163650333881]],[[0.029965475201607,-0.059614393860102,-0.026012308895588],[0.061312049627304,0.020234182476997,-0.020581871271133],[0.032879319041967,-0.1020597666502,-0.008258699439466]],[[0.022290484979749,-0.028753845021129,0.011124444194138],[-0.017364824190736,0.049660723656416,-0.033329006284475],[0.028897201642394,-0.023399360477924,-0.024302382022142]],[[-0.048535034060478,0.05086999386549,0.040809039026499],[0.020108789205551,0.0083639612421393,0.10807504504919],[-0.046407945454121,0.012172049842775,-0.050125252455473]],[[-0.022953944280744,-0.0024155341088772,-0.0058117690496147],[-0.0061347335577011,-0.016826778650284,-0.037725370377302],[0.00034131066058762,0.058609016239643,0.071359403431416]],[[0.027767851948738,-0.063496202230453,-0.0099211977794766],[-0.020621413365006,-0.022048033773899,-0.00072733528213575],[-0.029499690979719,0.03971378877759,-0.027112323790789]],[[-0.0033614325802773,-0.011197535321116,0.072736822068691],[0.029145985841751,-0.031281620264053,0.073150835931301],[-0.06943054497242,0.059668555855751,0.029668120667338]],[[-0.017545508220792,-0.056568026542664,-0.0076666171662509],[-0.012708628550172,-0.026794133707881,-0.011034062132239],[-0.042815532535315,-0.055786516517401,0.043019160628319]],[[-0.033284489065409,0.014150597155094,-0.0093004684895277],[-0.0246691852808,-0.041357561945915,-0.022963082417846],[-0.0069214212708175,0.029611758887768,0.038626413792372]],[[0.086886584758759,-0.024938797578216,0.055466633290052],[-0.021228585392237,0.094140790402889,-0.011840600520372],[0.03177086263895,-0.02211893722415,0.039964009076357]],[[0.014238045550883,-0.063369065523148,0.026937894523144],[0.034159209579229,0.022717069834471,-0.023798067122698],[0.0045290952548385,0.015924947336316,-0.020098775625229]],[[0.0031282315030694,-0.029498014599085,-0.082321479916573],[0.11588908731937,0.08118624985218,-0.10026501864195],[-0.099650964140892,0.069962352514267,0.023940708488226]],[[-0.02310493029654,-0.054250903427601,0.030355969443917],[0.048389751464128,-0.031613398343325,-0.0042410385794938],[-0.011722926981747,-0.10491314530373,0.045516215264797]],[[0.0090257748961449,-0.01054687704891,0.075442962348461],[-0.037637919187546,-0.1170030683279,0.055854946374893],[-0.044427890330553,-0.034459784626961,-0.0034152355510741]],[[0.0012344706337899,-0.036649741232395,0.012414139695466],[-0.0072180372662842,-0.012421417050064,-0.023900179192424],[0.035781610757113,0.034274477511644,-0.0046177553012967]],[[-0.080183945596218,-0.065626285970211,0.01170723605901],[-0.0011301002232358,0.053593397140503,-0.027366869151592],[-0.0084199365228415,0.009360134601593,-0.011410833336413]],[[-0.019430160522461,0.024644758552313,-0.0065411697141826],[0.024192633107305,-0.01015221234411,0.05347329005599],[-0.008368568494916,-0.094917818903923,-0.040429193526506]],[[0.014449087902904,0.019044674932957,0.020921168848872],[0.008445450104773,0.011504474096,0.023509658873081],[0.031438771635294,-0.051233600825071,-0.01447722222656]],[[0.04522567614913,-0.014906282536685,-0.0077329762279987],[-0.043169155716896,0.031266495585442,0.061030324548483],[-0.053606070578098,-0.010914212092757,0.01689426228404]],[[0.069633230566978,0.047774959355593,-0.011362525634468],[-0.0097638787701726,-0.049949463456869,0.02938780747354],[0.027503840625286,0.0047639845870435,0.0041992678306997]],[[0.065411247313023,0.018162757158279,0.066697165369987],[-0.017737122252584,0.0079282745718956,-0.0037519610486925],[0.019651371985674,-0.045126996934414,0.035300083458424]],[[0.0095127262175083,0.065457053482533,-0.01099674962461],[0.0024004236329347,-0.009448254480958,0.094607926905155],[0.05559067428112,0.061076179146767,0.008169068954885]],[[0.017975300550461,0.091786541044712,0.045407857745886],[-0.05766598880291,0.00018097956490237,-0.057111959904432],[-0.04701454564929,0.020863976329565,0.011165174655616]],[[0.0074822357855737,-0.091929912567139,0.0681491792202],[-0.033063296228647,-0.0093277972191572,0.051794223487377],[-0.072892874479294,0.0089011387899518,0.0039197457954288]],[[-0.033667057752609,-0.030901500955224,-0.00040351803181693],[0.031414736062288,0.014515113085508,-0.014663710258901],[0.032783638685942,0.01976777985692,0.01654689386487]],[[-0.027851194143295,-0.03733117133379,0.016756122931838],[-0.081467553973198,-0.03320824727416,-0.0033512795343995],[0.0015712177846581,0.02578117698431,-0.014648522250354]],[[-0.086961768567562,0.018778881058097,0.0036382544785738],[-0.011634401977062,0.014925323426723,-0.029925215989351],[-0.0051677161827683,-0.0070158899761736,-0.018592512235045]],[[0.03667826578021,-0.015898814424872,-0.018407866358757],[-0.020113054662943,0.021459255367517,-0.011264706961811],[0.053850460797548,-0.0018035019747913,0.03236236423254]],[[-0.0092232618480921,0.016102153807878,0.03269699588418],[-0.044887222349644,-0.062426779419184,-0.00698187854141],[0.039295431226492,0.0017253418918699,-0.027709722518921]],[[-0.063062772154808,-0.021909510716796,-0.010236064903438],[0.02334163710475,-0.0067918035201728,0.022924216464162],[0.043126631528139,-0.02477446384728,0.11064016819]],[[0.000959676457569,-0.048601608723402,-0.0041975891217589],[0.00036081604775973,-0.029485408216715,0.039803441613913],[-0.028052691370249,0.0034364429302514,-0.04043510183692]],[[-0.020246177911758,-0.029062760993838,-0.0072538140229881],[-0.011365970596671,0.011733625084162,0.077591381967068],[-0.025378530845046,0.049900013953447,0.0564174503088]],[[0.0026259555015713,-0.064687564969063,-0.020379995927215],[-0.065294086933136,0.056065104901791,-0.022349053993821],[0.010143776424229,-0.018241224810481,-0.048020675778389]],[[-0.015921145677567,0.010731106624007,-0.0060671209357679],[0.011232567019761,0.022057861089706,0.0048524672165513],[-0.046201501041651,-0.062478605657816,-0.04764998331666]],[[0.024735575541854,-0.003175878431648,0.029664410278201],[0.025376334786415,-0.021119650453329,0.099242031574249],[0.0036842576228082,-0.0067989458329976,0.065144382417202]],[[0.054693572223186,0.013309177011251,-0.065498329699039],[0.042287394404411,0.041145488619804,0.0042436691001058],[0.022727752104402,0.02166498079896,0.046968407928944]],[[0.014158654026687,-0.054691586643457,0.0091473264619708],[0.068000353872776,-0.092332169413567,0.039181396365166],[-0.033941946923733,0.011155592277646,0.018561944365501]],[[0.0045541482977569,-0.0084275454282761,0.014733091928065],[0.035782795399427,0.054145354777575,0.0074170920997858],[-0.012498230673373,0.036563407629728,0.01836453564465]],[[-0.00066732382401824,-0.075476713478565,-0.026555564254522],[-0.0027289655990899,-0.040361199527979,-0.028257187455893],[0.046570736914873,0.061969038099051,-0.054566275328398]],[[0.011656057089567,0.069820910692215,-0.038651064038277],[0.0092642400413752,0.043447870761156,-0.021359005942941],[-0.086128182709217,-0.023486176505685,0.0011155784595758]],[[0.015142775140703,-0.05013682320714,0.052074279636145],[0.0084850415587425,0.068455815315247,0.0035692260134965],[0.0062626809813082,0.066599734127522,0.034756034612656]],[[-0.070998974144459,-0.039395716041327,-0.056438460946083],[-0.090407833456993,0.011298059485853,-0.045895360410213],[-0.046299003064632,-0.043472982943058,-0.087491400539875]],[[0.056003343313932,-0.039282575249672,0.024420807138085],[0.056040346622467,0.030901793390512,0.040399104356766],[-0.017012629657984,-0.006025314796716,-0.019494399428368]],[[-0.028673738241196,-0.076099537312984,-0.018604664131999],[0.068052165210247,-0.065350458025932,-0.019277274608612],[0.02693334966898,-0.071220137178898,-0.016611430794001]],[[-0.044079057872295,0.10926308482885,0.020492332056165],[-0.044868644326925,-0.0045249378308654,-0.023203667253256],[-0.0017128332983702,-0.001184465480037,-0.064461968839169]],[[-0.027586527168751,-0.024593630805612,-0.035374198108912],[0.031574063003063,-0.044145103543997,-0.027034459635615],[-0.067205123603344,-0.017657399177551,-0.016382174566388]],[[-0.026150763034821,-0.058659065514803,-0.0171874538064],[0.031635142862797,-0.0084526780992746,0.0085395565256476],[0.0044991234317422,0.089739970862865,0.04771463945508]],[[0.031212011352181,-0.027727019041777,0.030963724479079],[-0.10929501056671,0.029002586379647,0.0279202722013],[-0.0081030791625381,-0.012491644360125,0.085031643509865]],[[0.027283556759357,0.0096461493521929,-0.043572071939707],[0.051434881985188,0.045290261507034,0.031574346125126],[0.0067898663692176,0.03881398960948,0.029552591964602]],[[0.019616449251771,-0.009779111482203,-0.028878370299935],[-0.04868395626545,0.021027162671089,-0.048316683620214],[-0.01834362745285,0.03027780354023,0.04417635127902]],[[0.050230830907822,-0.049380149692297,0.02568319067359],[-0.11529538035393,0.080349415540695,0.041846685111523],[0.042420879006386,0.010671147145331,-0.003525105305016]],[[-0.018298106268048,0.061675731092691,0.015395613387227],[-0.0097182421013713,-0.0018865450983867,0.00018056281260215],[-0.027099112048745,0.025359746068716,-0.030166584998369]],[[0.070828378200531,-0.057949088513851,0.010934472084045],[-0.012941881082952,0.038265727460384,0.015830753371119],[0.022983012720942,0.0047897039912641,0.0083797164261341]],[[-0.040109250694513,-0.0280452221632,0.020929088816047],[0.018453577533364,0.040309883654118,0.0167007856071],[-0.0039294082671404,0.0435835942626,-0.013803302310407]],[[0.012614483013749,-0.046923227608204,-0.015540878288448],[-0.020496340468526,0.042120896279812,-0.035720512270927],[0.018534855917096,-0.0085671506822109,-0.050466619431973]],[[0.010809340514243,-0.017997978255153,-0.022864973172545],[-0.026414616033435,0.038819625973701,-0.054258722811937],[-0.036846846342087,0.028263038024306,0.006430393550545]],[[-0.076986104249954,-0.0098105370998383,0.0096637820824981],[0.032539144158363,0.013802745379508,-0.024223029613495],[0.033397454768419,0.018605044111609,-0.051279589533806]],[[0.075459472835064,0.038797188550234,0.027632156386971],[-0.040955007076263,0.022748600691557,-0.0085069835186005],[-0.005547552369535,0.025764042511582,0.023531595245004]],[[-0.0033943951129913,0.013624151237309,0.036989830434322],[-0.081583648920059,-0.011067576706409,-0.021740365773439],[0.019322434440255,-0.0069601419381797,0.063965477049351]],[[-0.10902582108974,0.0059454971924424,0.048151414841413],[0.031937509775162,-0.016119526699185,-0.030124951153994],[0.055430993437767,-0.0018839291296899,0.051227185875177]],[[-0.056123275309801,0.035744454711676,-0.073176637291908],[0.034075569361448,0.084499873220921,-0.043491680175066],[0.0047945152036846,0.043604832142591,-0.01842737942934]],[[-0.017370272427797,0.071714028716087,0.023455346003175],[0.038564573973417,-0.06151107698679,-0.0078353984281421],[0.012577920220792,-0.0018341649556533,0.004753575194627]],[[0.073459260165691,0.013635845854878,0.042113039642572],[0.051732204854488,-0.025449151173234,0.025967266410589],[-0.026624776422977,-0.042406145483255,0.020855359733105]],[[0.076732084155083,0.042503107339144,0.046268936246634],[-0.044479466974735,0.059318114072084,0.023653434589505],[0.040931191295385,-0.021708633750677,0.08269988745451]],[[-0.035184476524591,-0.048143234103918,-0.0084927063435316],[-0.02559582144022,-0.017812186852098,-0.019657704979181],[-0.044229220598936,0.0039914711378515,0.063994705677032]],[[0.035395871847868,0.023223271593451,-0.010800017975271],[-0.02480803988874,0.00020829141431022,0.0061518275178969],[0.030156994238496,-0.0067398077808321,-0.0090941544622183]],[[-0.020928852260113,-0.0031715224031359,0.017778759822249],[-0.0024238773621619,-0.032870434224606,-0.014718865975738],[-0.036600898951292,-0.020715704187751,0.028320347890258]],[[0.04716693982482,-0.038364768028259,-0.022791650146246],[-0.026877451688051,0.017335822805762,0.026812691241503],[-0.012299153022468,-0.026499105617404,-0.059768110513687]],[[0.010295781306922,-0.0014174369862303,-0.064385481178761],[0.0098182680085301,0.049586530774832,0.03662733733654],[0.0081172315403819,-0.013394603505731,0.091099835932255]],[[0.026702547445893,-0.049084406346083,0.011898821219802],[-0.0016562227392569,-0.022105738520622,0.044731523841619],[0.046129956841469,-0.010718840174377,0.045520029962063]],[[0.0075209392234683,-0.031029436737299,0.0014073421480134],[0.027310576289892,-0.086143314838409,0.078722387552261],[0.027433628216386,-0.082394331693649,-0.0045024533756077]],[[-0.061960309743881,0.0038065093103796,-0.035227261483669],[0.038372069597244,0.030549708753824,0.035945996642113],[0.0099052470177412,-0.069101981818676,-0.0037951993290335]],[[0.05047445371747,-0.018084643408656,-0.068748213350773],[-0.0050619728863239,-0.036594804376364,0.060810811817646],[-0.017988851293921,0.01500775758177,0.077982775866985]],[[0.0087463017553091,0.011378856375813,0.0024119657464325],[0.013448663055897,0.0048754988238215,-0.041622165590525],[-0.018740098923445,0.002498178742826,0.038443475961685]],[[-0.059524081647396,0.02192279137671,-0.027478147298098],[0.038764901459217,0.025227719917893,0.0068502021022141],[-0.031896281987429,-0.033729154616594,-0.013915260322392]],[[0.033845610916615,0.046870615333319,0.05617643520236],[0.00080970954149961,-0.002739385003224,0.025347348302603],[0.051463928073645,0.015534109435976,-0.034227192401886]],[[0.0075161838904023,-0.022291278466582,0.017193999141455],[0.052230052649975,-0.035447154194117,-0.01385082770139],[0.0027661435306072,-0.00022923933283892,0.013614717870951]],[[-0.0012436008546501,-0.042387556284666,0.048047423362732],[-0.00066826463444158,0.014500662684441,-0.0023586978204548],[-0.032060969620943,0.038313645869493,-0.0069355629384518]],[[-0.025584207847714,-0.10651809722185,-0.079868890345097],[0.025884410366416,-0.029521206393838,0.03680843859911],[0.0029243733733892,-0.0050249705091119,0.0014013997279108]],[[-0.047421734780073,0.068807244300842,0.0061194985173643],[0.028320513665676,-0.049917589873075,0.033381689339876],[-0.001653992338106,0.072489820420742,-0.062521405518055]],[[-0.029971050098538,0.063410513103008,0.055564418435097],[-0.058458410203457,0.029385630041361,-0.062042191624641],[0.031967144459486,0.10005342960358,-0.02763151191175]],[[0.012374730780721,-0.029253248125315,0.038616627454758],[0.053639054298401,-0.0075548267923295,0.0019236534135416],[0.011050760746002,0.010014384053648,-0.14451639354229]],[[-0.018950937315822,0.05919524282217,0.077997453510761],[-0.072344623506069,0.03049036860466,-0.031682882457972],[-0.035967133939266,0.046027150005102,0.028425164520741]],[[0.041459798812866,-0.046741839498281,-0.031499054282904],[-0.0091609032824636,-0.0058805514127016,-0.045883670449257],[-0.045792225748301,-0.026697851717472,-0.007944829761982]],[[0.051338210701942,0.020724501460791,0.028985505923629],[-0.031497541815042,0.023458678275347,0.057876821607351],[0.019005630165339,0.011905272491276,-0.031607456505299]],[[0.02223352715373,-0.080056965351105,0.020117554813623],[0.058068141341209,-0.013296973891556,-0.045280806720257],[-0.064271293580532,-0.05733847618103,0.099052645266056]],[[0.052489034831524,-0.060365084558725,-0.029536247253418],[-0.030806994065642,-0.013263616710901,-0.011967197060585],[0.035364203155041,0.063777968287468,-0.02000436745584]],[[-0.011017049662769,-0.088933162391186,0.02136554569006],[-0.0008683311752975,0.028018780052662,-0.005894270259887],[0.021699249744415,0.033278465270996,-0.063437476754189]],[[0.022574773058295,-0.075017929077148,-0.0058098384179175],[-0.021179426461458,-0.042339071631432,0.098347306251526],[-0.025008607655764,-0.0075975474901497,-0.015932781621814]],[[-0.032937236130238,0.089909374713898,-0.01646576076746],[-0.011739069595933,-0.053684014827013,-0.052166596055031],[0.050914756953716,0.016459241509438,-0.00071882584597915]],[[-0.0081664165481925,0.0061753122135997,-0.04061134532094],[0.091737739741802,-0.066807448863983,-0.044802635908127],[0.043022826313972,-0.10948538035154,0.042233690619469]],[[0.029467320069671,0.04353179037571,0.021489994600415],[-0.052192956209183,0.069069743156433,0.031829264014959],[-0.054753385484219,-0.0214464366436,0.0067739435471594]],[[-0.034411787986755,-0.012406745925546,0.016759445890784],[-0.061301194131374,-0.025290016084909,-0.0046813287772238],[-0.013313934206963,0.0060946349985898,0.032506052404642]],[[0.054633248597383,-0.042675212025642,0.070465177297592],[-9.7717624157667e-05,-0.067838042974472,-0.066549427807331],[0.02921356447041,-0.045567069202662,-0.0048525668680668]],[[0.050669588148594,0.0085264816880226,-0.0040993415750563],[-0.013625958003104,-0.0096144750714302,0.055726386606693],[0.019725494086742,-0.0057943966239691,-0.029685096815228]],[[-0.053980682045221,0.026310499757528,0.029479084536433],[0.0058387354947627,0.092439360916615,0.022848887369037],[-0.019015464931726,-0.023622157052159,0.01600594446063]],[[-0.032377257943153,-0.044062115252018,0.038850914686918],[0.015498962253332,-0.023304471746087,0.0418786033988],[-0.066879205405712,-0.030917268246412,-0.027190556749701]],[[-0.030760342255235,-0.076628975570202,-0.093811139464378],[-0.008300906047225,0.031955845654011,-0.011713949032128],[0.031760025769472,-0.038059290498495,-0.027734909206629]],[[0.013250553049147,0.00066720007453114,-0.064717791974545],[0.010175406001508,-0.020969850942492,-0.057709157466888],[-0.043817318975925,0.007143197581172,0.077129878103733]],[[-0.019927794113755,0.02682675793767,0.079816401004791],[0.0038916943594813,-0.026994647458196,-0.068646512925625],[0.088204339146614,-0.0057217464782298,0.00065942294895649]],[[0.050965301692486,-0.02850598283112,0.098026387393475],[-0.045455973595381,0.054446786642075,-0.0099694803357124],[-0.016953207552433,-0.012079858221114,-0.078071743249893]],[[0.032137166708708,-0.056759238243103,-0.0014807663392276],[-0.053367976099253,0.010363615117967,-0.015155005268753],[0.045649446547031,-0.025746863335371,0.03726576641202]],[[0.0058016204275191,-0.033474817872047,0.0091262524947524],[0.056979436427355,-0.063551634550095,-0.022137049585581],[0.014330144040287,0.017957933247089,-0.047863479703665]],[[-0.0088775428012013,0.0006468269857578,-0.012688057497144],[0.015048960223794,-0.027381151914597,-0.054151345044374],[0.0023428564891219,0.027397638186812,0.017126290127635]],[[-0.06318748742342,-0.022755309939384,0.034454882144928],[0.06979762762785,0.0039284895174205,-0.023021118715405],[-0.016720021143556,-0.017779024317861,0.037142865359783]],[[0.025481011718512,0.023525523021817,0.01662989705801],[-0.029240636155009,0.00082653132267296,-0.016700372099876],[-0.04914828389883,-0.01975305378437,-0.010800635442138]],[[0.040739938616753,0.036133721470833,-0.019769057631493],[-0.032726921141148,0.059140134602785,-0.013214482925832],[-0.02699108608067,0.040824256837368,-0.042665287852287]],[[-0.0026668964419514,0.12054503709078,0.049077294766903],[0.1044575497508,0.018378479406238,0.042832836508751],[-0.087832622230053,0.045230954885483,0.043823517858982]],[[-0.035005748271942,-0.016344647854567,0.016832493245602],[0.061515111476183,-0.0054242573678493,0.073943570256233],[0.038932256400585,0.034397177398205,0.044241409748793]],[[0.024179562926292,-0.010046039707959,0.02013530395925],[0.010150316171348,-0.031280443072319,-0.0032157357782125],[0.015979869291186,0.0047607771120965,-0.022210795432329]],[[0.014067384414375,-0.00082825007848442,0.073780827224255],[0.041595857590437,-0.0080831330269575,0.0096404915675521],[0.0040628365240991,0.052346631884575,0.00030035417876206]],[[0.045418959110975,-0.023505246266723,0.011771670542657],[-0.021009447053075,0.052640985697508,-0.02774553373456],[0.028364785015583,-0.065317548811436,0.033045347779989]],[[-0.017580656334758,-0.015676049515605,0.073447570204735],[0.024382635951042,-0.022354118525982,0.059116687625647],[0.073746748268604,-0.01967304199934,-0.01514657959342]],[[-0.043913904577494,-0.036226816475391,-0.032709829509258],[0.019632635638118,-0.030372783541679,-0.1206253990531],[0.006620027590543,0.020719103515148,-0.01325424015522]],[[0.037950713187456,-0.00027554359985515,0.037548545747995],[-0.0384153239429,0.022810554131866,-0.021601594984531],[-0.013488476164639,0.028657589107752,0.00067797547671944]],[[0.040511928498745,-0.015297633595765,-0.048626080155373],[0.0050736339762807,-0.04432363435626,0.015878200531006],[-0.017013389617205,-0.011845921166241,0.00070114224217832]],[[0.033432852476835,-0.024269105866551,-0.070424176752567],[-0.027482863515615,0.036775223910809,-0.078051440417767],[0.034222159534693,0.0057403240352869,-0.026075022295117]],[[0.0090500060468912,-0.002302166307345,-0.043462127447128],[-0.064945235848427,0.039706375449896,-0.022564606741071],[-0.0054474696516991,-0.015949716791511,0.0018156479345635]],[[-0.010632012039423,0.032872505486012,-0.0016697474056855],[0.065736889839172,-0.0087220910936594,-0.037782095372677],[0.0084870532155037,-0.012327944859862,0.0064066695049405]],[[-0.045409128069878,0.0083535118028522,0.010051832534373],[0.011588940396905,0.046492520719767,0.022305782884359],[0.037747245281935,0.0057836212217808,-0.11768931150436]],[[-0.058232087641954,0.015367298386991,0.021356023848057],[-0.047010216861963,-0.010520945303142,-0.034797057509422],[-0.07657902687788,0.0128328576684,0.026868272572756]],[[-0.021248923614621,0.021341199055314,0.060758378356695],[-0.011877090670168,0.044097576290369,-0.0041010417044163],[0.058454550802708,0.027881763875484,-0.0099941361695528]],[[-0.017067454755306,-0.019851669669151,0.01182032097131],[-0.013328555040061,-0.041654732078314,0.060317348688841],[0.0012567571830004,-0.10554368793964,-0.026914549991488]],[[0.007148617412895,-0.076611623167992,-0.043719727545977],[0.014822823926806,0.040682800114155,0.07081726193428],[-0.032751359045506,0.063530579209328,0.025035055354238]],[[0.053362566977739,0.02292300760746,0.043038330972195],[-0.037510305643082,0.025141937658191,-0.015845941379666],[0.0025821886956692,0.0067268330603838,-0.016929848119617]],[[0.013324905186892,-0.019486438483,0.01606135815382],[0.034264925867319,-0.056697282940149,-0.014467108994722],[-0.037453401833773,-0.052589613944292,0.018270621076226]]],[[[0.01706637442112,-0.024983068928123,0.0024160139728338],[-0.009175656363368,-0.031038926914334,0.021341828629375],[-0.063278324902058,-0.006180674303323,0.0085697695612907]],[[0.089257515966892,0.069851003587246,0.018478706479073],[-0.0086610149592161,0.046668794006109,-0.069516479969025],[-0.027852576225996,-0.029011530801654,0.007155395578593]],[[0.0014916836516932,-0.035749472677708,-0.0079142218455672],[-0.035697914659977,-0.024044793099165,0.014688340947032],[0.056113786995411,-0.0046640201471746,-0.04448352009058]],[[0.016208942979574,-0.055084675550461,-0.036194290965796],[0.0071278545074165,0.084955379366875,0.012507718987763],[-0.078169345855713,0.057386063039303,0.064535558223724]],[[0.0085292644798756,0.022761579602957,0.0029587401077151],[0.071327224373817,0.0039961878210306,-0.017728488892317],[-0.00056366494391114,0.049823973327875,0.0042967568151653]],[[0.037584215402603,0.024955173954368,-0.0054726283997297],[-0.051395796239376,-0.0010694561060518,0.034827586263418],[0.02932651899755,0.054085101932287,0.02472367323935]],[[0.0084320902824402,0.037755109369755,0.01273587718606],[0.02080418355763,-0.051056854426861,-0.045701213181019],[-0.030194705352187,-0.01967503502965,0.012656434439123]],[[0.006065858528018,-0.065683498978615,-0.020598484203219],[0.03640491142869,0.013738405890763,-0.0034807317424566],[-0.029063105583191,0.0070321257226169,0.0095081878826022]],[[0.013479823246598,0.033157762140036,-0.00035321537870914],[-0.054192312061787,0.019015038385987,0.027843661606312],[0.0055631548166275,-0.062105987221003,-0.067466795444489]],[[0.020450873300433,-0.0247921962291,0.037614233791828],[-0.07397149503231,-0.020476220175624,-0.020506696775556],[0.07107799500227,0.007462537381798,-0.0025476082228124]],[[-0.037323087453842,-0.014467442408204,0.023913839831948],[0.00019311904907227,0.06937350332737,0.040733870118856],[-0.028320344164968,-0.066410206258297,-0.0043135364539921]],[[-0.040680184960365,0.025384411215782,0.0069698286242783],[0.10335509479046,-0.00023726114886813,-0.021841708570719],[-0.046143490821123,-0.007154923863709,-0.0092850821092725]],[[0.034738931804895,-0.025890542194247,-0.039010178297758],[0.019079562276602,0.047179121524096,-0.03335152938962],[-0.001075014937669,-0.047821439802647,-0.0078290291130543]],[[0.013293009251356,-0.03393742069602,0.014703892171383],[0.012005250900984,0.021498495712876,-0.055078707635403],[0.031063659116626,0.067555233836174,-0.029574409127235]],[[-0.00086605869000778,0.025348035618663,0.01157003454864],[-0.028410654515028,0.070585355162621,0.053655635565519],[-0.078850716352463,0.057076193392277,0.05135727673769]],[[0.036633457988501,0.0011037009535357,0.0047200480476022],[-0.036086335778236,0.033211413770914,-0.0030526935588568],[0.026021229103208,-0.077080652117729,0.003796792589128]],[[0.014366196468472,-0.052448701113462,0.022264176979661],[0.017771035432816,0.048294175416231,-0.015041437000036],[0.008699381724,-0.022925147786736,-0.012451809830964]],[[0.010595045052469,-0.0029118976090103,-0.035965755581856],[0.0048061199486256,0.027971809729934,0.039301555603743],[-0.03325130045414,0.026152865961194,-0.050314605236053]],[[0.019212305545807,0.0069145984016359,-0.0053631006740034],[0.031421653926373,0.041535314172506,-0.063589081168175],[0.038236122578382,0.027786169201136,-0.086618714034557]],[[-0.0065049203112721,-0.036889191716909,0.018569776788354],[0.031078666448593,0.055942490696907,-0.049329083412886],[0.035670939832926,0.0058168452233076,0.022647682577372]],[[0.02162704244256,-0.027205266058445,0.03549063205719],[0.063030831515789,-0.029729545116425,-0.00013317952107172],[-0.007943389005959,0.11297377943993,0.026884654536843]],[[0.035746593028307,-0.031521439552307,-0.036234151571989],[0.063408747315407,0.032953098416328,0.031775131821632],[0.0049669886939228,0.049393635243177,-0.076664000749588]],[[0.029099781066179,0.037908907979727,-0.0055750263854861],[-0.076037898659706,-0.04272535815835,0.069531977176666],[0.040710050612688,0.014942516572773,-0.023771481588483]],[[0.0012206034734845,-0.035235214978456,-0.0087268929928541],[0.034415170550346,0.12362829595804,0.065298341214657],[-0.055111899971962,-0.026397705078125,-0.077414475381374]],[[-0.080385603010654,-0.040384490042925,0.072850741446018],[0.015465770848095,0.010111653245986,-0.0039458954706788],[-0.0015532199759036,-0.015952983871102,0.00034267068258487]],[[0.041760008782148,-0.059541810303926,0.016040194779634],[0.022338401526213,-0.044573415070772,0.050994180142879],[0.014039809815586,0.031691145151854,-0.0090689156204462]],[[-0.016867261379957,0.057244468480349,-0.047853995114565],[-0.058613173663616,0.0044983653351665,0.00085670978296548],[0.073107101023197,0.0089721316471696,-0.032048046588898]],[[0.034574002027512,0.036932598799467,-0.031860630959272],[-0.055179283022881,0.025148103013635,-0.0064721335656941],[0.010100597515702,0.0023047293070704,0.031484156847]],[[0.02903776243329,-0.012147770263255,-0.072265028953552],[0.049849342554808,0.023860052227974,0.033811308443546],[0.0019011517288163,-0.036008831113577,0.065627083182335]],[[-0.021207761019468,-0.023186273872852,0.0001840718468884],[-0.016718776896596,0.050531581044197,0.039133872836828],[0.017326699569821,-0.051621962338686,0.019384959712625]],[[-0.016062101349235,0.041048064827919,0.022793972864747],[-0.093754097819328,0.036101803183556,-0.0055626486428082],[-0.0020374059677124,-0.057096492499113,0.01959484629333]],[[-0.0083076478913426,-0.0047537954524159,0.038577146828175],[0.010106986388564,-0.044358961284161,0.051233798265457],[-0.018090482801199,0.071945533156395,0.010636212304235]],[[-0.012689975090325,0.03990676254034,-0.019408578053117],[-0.058900695294142,0.03636060655117,-0.015272601507604],[0.0015266122063622,-0.024879632517695,0.018172377720475]],[[0.00013977166963741,0.087963975965977,-0.017992513254285],[6.1579725297634e-05,0.059662092477083,0.046661842614412],[-0.13399156928062,0.017016943544149,-0.014338837005198]],[[-0.0076223141513765,0.0061066653579473,0.066587463021278],[-0.023093249648809,-0.018282374367118,-0.047538194805384],[0.053864743560553,0.046796929091215,-0.016972135752439]],[[0.010013633407652,-0.03163255751133,-0.042784560471773],[-0.032426010817289,0.014488882385194,-0.0077454382553697],[-0.04306972399354,0.15466307103634,-0.023205967620015]],[[0.078678101301193,-0.04347687587142,-0.042165398597717],[-0.055386118590832,0.001451852498576,0.033611454069614],[0.039598539471626,0.015942120924592,0.0047022523358464]],[[0.0022699607070535,-0.01005719229579,0.04080768674612],[-0.0090802386403084,-0.067920617759228,-0.021568993106484],[0.0039208419620991,0.041464790701866,0.03516423329711]],[[0.069303967058659,-0.012448528781533,0.023364365100861],[0.0078292423859239,-0.0070798392407596,-0.0032966926228255],[-0.0080761360004544,-2.1654705051333e-07,-0.0064686159603298]],[[-0.0071417861618102,0.05164410546422,-0.024832237511873],[0.022351449355483,-0.038572374731302,-0.028719430789351],[-0.030193259939551,0.021288845688105,-0.0072663663886487]],[[0.01954703964293,-0.0089354710653424,-0.022964751347899],[0.034090012311935,-0.041055243462324,-0.014758407138288],[-0.0019064635271206,-0.001308390754275,0.024074867367744]],[[-0.013810375705361,0.012168047949672,-0.0090907011181116],[-0.011174590326846,0.017770329490304,0.030508691444993],[-0.022219967097044,-0.024187795817852,0.019986543804407]],[[-0.086554042994976,-0.018673134967685,0.034829523414373],[-0.027452373877168,0.0083399629220366,-0.043201800435781],[0.076328158378601,-0.066033937036991,-0.010262534953654]],[[0.023352460935712,0.034314457327127,0.0012727172579616],[0.044420152902603,0.019806820899248,0.04380564764142],[-0.046898923814297,0.021966610103846,0.049792505800724]],[[-0.015233912505209,0.031138019636273,0.016310321167111],[-0.027055853977799,-0.0015174840809777,-0.022087601944804],[-0.013455871492624,0.034489270299673,-0.0065207914449275]],[[-0.030842630192637,-0.003431920427829,-0.0076427650637925],[0.036749582737684,-0.05038932338357,0.084874868392944],[-0.069110341370106,0.012172050774097,0.073058195412159]],[[0.032706681638956,0.026918126270175,0.057662073522806],[-0.0004496356123127,0.037505302578211,-0.048062693327665],[0.014344339258969,-0.04098404943943,0.029856096953154]],[[0.015917908400297,-0.0060676685534418,-0.028977662324905],[-0.026781490072608,-0.15924242138863,-0.076228603720665],[0.0091634495183825,0.1222909912467,0.0064953328110278]],[[0.051251888275146,2.5434746930841e-05,-0.014602522365749],[-0.018551306799054,0.0068793105892837,0.0040259663946927],[0.013791868463159,-0.10166507959366,0.00029319283203222]],[[0.033432502299547,0.030429610982537,-0.0039921714924276],[-0.034307353198528,0.01398694049567,-0.022561436519027],[-0.0094390884041786,0.051975261420012,0.039923142641783]],[[-0.0046624932438135,-0.010455587878823,-0.012760170735419],[-0.0017372705042362,-0.010516824200749,0.02378917299211],[-0.0086504984647036,0.012795109301805,-0.054939601570368]],[[-0.00029669460491277,-0.029394567012787,0.019973015412688],[0.01118943002075,-0.024844685569406,-0.0037793430965394],[0.0097879664972425,-0.067447058856487,-0.056755535304546]],[[-0.019260209053755,0.036300361156464,-0.06376539170742],[-0.00093255774118006,-0.0061964341439307,-0.045803058892488],[-0.02756555378437,0.0522770434618,0.031093692407012]],[[0.03535969555378,-0.0080405157059431,-0.036290220916271],[-0.11551170796156,-0.077604576945305,0.013532493263483],[0.032467179000378,0.0722880885005,-0.0091818822547793]],[[0.024624729529023,-0.033715892583132,0.036673046648502],[-0.044985733926296,-0.00038335518911481,0.062434867024422],[-0.067139737308025,0.020623352378607,0.0031692788470536]],[[-0.039508488029242,0.0052605797536671,-0.016347164288163],[-0.020394619554281,0.017265485599637,-0.031527440994978],[0.00018956603889819,-0.034402851015329,-0.029056761413813]],[[0.01897451095283,-0.00091600575251505,-0.0086697144433856],[-0.032685503363609,0.034715514630079,-0.015331197530031],[0.016025202348828,-0.010376272723079,0.0066412556916475]],[[-0.072055459022522,-0.036078311502934,0.020432842895389],[0.029643651098013,0.054086048156023,-0.044329579919577],[0.088428243994713,0.090737946331501,-0.076338328421116]],[[-0.0093178106471896,-0.018259547650814,0.010394765995443],[-0.0097775012254715,-0.012361641973257,0.079932950437069],[0.038243267685175,-0.096960835158825,-0.01307094655931]],[[0.01249408069998,0.028925105929375,0.053583957254887],[0.046656608581543,-0.063565887510777,-0.020844366401434],[0.010243911296129,-0.026505803689361,0.021844292059541]],[[0.010432492941618,-0.0099636279046535,0.0072864792309701],[0.021743712946773,0.023777578026056,0.067151263356209],[-0.08153872191906,0.004842643160373,0.093810617923737]],[[-0.016251154243946,-0.040319081395864,0.065227046608925],[0.047059401869774,-0.022094851359725,0.04568001255393],[0.063562966883183,0.020146667957306,-0.12095958739519]],[[0.038757104426622,0.0058318614028394,0.02327779866755],[-0.036092426627874,-0.017602726817131,-0.045332085341215],[-0.012825459241867,-0.035763286054134,0.045101933181286]],[[-0.019339686259627,-0.00204400671646,0.09980221092701],[-0.01680969260633,0.016116896644235,-0.11689174920321],[0.016648810356855,0.081894621253014,-0.039025813341141]],[[-0.049163609743118,0.014848400838673,0.012106888927519],[-0.0013259637635201,0.011732757091522,0.0052232765592635],[0.0024256464093924,-0.059429723769426,0.016810609027743]],[[-0.03379774838686,-0.015735862776637,0.024447156116366],[0.029695816338062,0.054221902042627,-0.024197062477469],[0.0076475292444229,-0.028878586366773,0.015735939145088]],[[-0.0099000558257103,-0.0013031216803938,0.018861992284656],[0.0067270221188664,0.00042669067624956,-0.029956808313727],[-0.02487532235682,0.095565646886826,-0.010760116390884]],[[-0.068181797862053,0.013364423066378,-0.020719308406115],[-0.0144122838974,-0.029081838205457,0.029290221631527],[0.018954696133733,0.0060067623853683,-0.00038356144796126]],[[-0.088815473020077,0.0077826608903706,-0.033007714897394],[-0.0090477736666799,-0.012571246363223,-0.027690645307302],[-0.031403623521328,0.098820395767689,-0.027227506041527]],[[-0.041079211980104,-0.032649304717779,0.067388005554676],[-0.036591272801161,0.011186215095222,-0.047187644988298],[-0.058600753545761,0.027827434241772,0.0066096791997552]],[[-0.035597186535597,0.054182775318623,0.03344938158989],[-0.0097904847934842,0.0081666437909007,-0.032443549484015],[-0.024691041558981,0.046004384756088,0.041714563965797]],[[0.034717705100775,0.011725305579603,0.053158726543188],[0.028896557167172,0.014848900027573,0.00045885090366937],[0.015764262527227,-0.034580077975988,-0.091570608317852]],[[0.0031690599862486,0.0078976862132549,0.0030324137769639],[-0.11076138168573,0.053614668548107,0.053473688662052],[-0.043886464089155,0.06040520593524,0.049400355666876]],[[0.031903266906738,-0.0017350531416014,0.0010668694740161],[0.018558012321591,0.078754141926765,-0.067201465368271],[-0.040186926722527,0.023736126720905,0.025470966473222]],[[-0.039376221597195,0.018024345859885,0.026916105300188],[0.0094514340162277,0.0014375752070919,-0.0077850604429841],[-0.02634472027421,0.08289959281683,-0.022231470793486]],[[-0.079839065670967,0.033926919102669,-0.016859831288457],[0.0079255281016231,-0.03609860688448,-0.054885972291231],[0.0096235722303391,0.043809175491333,0.080042749643326]],[[0.017928324639797,-0.0030390108004212,-0.0097245248034596],[-0.042049508541822,-0.01121994946152,-0.022397503256798],[-0.094977371394634,-0.0021272299345583,0.038630172610283]],[[0.023638248443604,-0.033620499074459,-0.021630890667439],[0.015106382779777,-0.016996588557959,0.064085647463799],[0.014945453964174,-0.030645187944174,-0.0015829207841307]],[[0.02107697352767,0.0017124564619735,0.024044543504715],[0.090330399572849,-0.011791967786849,0.0099015524610877],[-0.037490971386433,-0.017650919035077,-0.026972580701113]],[[-0.01111345179379,-0.019183488562703,-0.0073575400747359],[0.0092143286019564,-0.038835030049086,-0.020687976852059],[0.047105774283409,-0.077175907790661,0.0055409856140614]],[[0.009546834975481,-0.059412769973278,0.03555803373456],[0.021064000204206,-0.054296236485243,-0.018218982964754],[0.040448687970638,-0.017699299380183,-0.02012175694108]],[[-0.0089357858523726,-0.032595049589872,0.059287074953318],[0.019986839964986,0.066956028342247,0.021824713796377],[0.0046448591165245,-0.0014626528136432,-0.00067551917163655]],[[0.043520785868168,0.0059416629374027,-0.015941832214594],[-0.070405967533588,-0.010340755805373,0.0021407853346318],[0.046288002282381,-0.014867451973259,0.0066260281018913]],[[-0.0047184280119836,0.017662344500422,0.025753691792488],[0.016443928703666,-0.0087576434016228,-0.0039730183780193],[-0.030714118853211,0.003021732205525,-0.013023995794356]],[[0.034066196531057,0.032559733837843,0.017090199515224],[-0.026774657890201,-0.043613627552986,0.025092802941799],[0.053375847637653,-0.03003066778183,0.0091159008443356]],[[-0.035224255174398,-0.1067893654108,0.047646082937717],[-0.031415671110153,0.069246657192707,0.0054170382209122],[0.020976293832064,0.012511791661382,-0.036403585225344]],[[-0.04122282192111,0.040161222219467,0.0101926503703],[0.0052907895296812,-0.025768633931875,0.025341134518385],[0.029294740408659,-0.044886916875839,-0.042910423129797]],[[0.016802506521344,-0.0057441112585366,-0.034586969763041],[-0.032582487910986,0.0257309358567,0.013513840734959],[-0.028092812746763,0.054696526378393,0.020319288596511]],[[0.030797181650996,0.05297526717186,0.055556446313858],[0.0026496222708374,-0.024393448606133,-0.033003188669682],[0.034826293587685,-0.066476851701736,0.039048407226801]],[[0.014163914136589,-0.0095130624249578,-0.0091653512790799],[4.9040725571103e-05,0.027531379833817,0.026255222037435],[-0.052090555429459,0.046072572469711,0.054422996938229]],[[-0.053071223199368,0.008381387218833,0.044578820466995],[-0.037572991102934,0.057908233255148,0.058671671897173],[-0.051022604107857,-0.039987564086914,0.049684472382069]],[[0.0075656087137759,-0.046530839055777,-0.01989952288568],[-0.019494628533721,-0.027650527656078,0.086551241576672],[-0.001993328332901,0.062391929328442,0.10326915234327]],[[0.020625036209822,-0.04242105036974,-0.014685011468828],[-0.00060835829935968,0.08588907122612,0.033656485378742],[0.0025788941420615,-0.032075837254524,-0.00078062620013952]],[[0.056075394153595,-0.058795861899853,0.013573691248894],[-0.035670064389706,-0.045759152621031,-0.022718938067555],[0.020763613283634,0.030025567859411,0.0013932822039351]],[[-0.022342579439282,-0.015400399453938,0.028973154723644],[0.027050215750933,-0.039194457232952,-0.018043417483568],[0.014271892607212,-0.041142530739307,-0.01520779542625]],[[-0.016490779817104,-0.058644730597734,-0.054090779274702],[0.064862765371799,0.046318087726831,0.026383385062218],[0.0019764879252762,0.0098504992201924,0.010654709301889]],[[0.0072226948104799,0.038168732076883,0.040463007986546],[0.031379364430904,0.020633174106479,-0.059201594442129],[-0.026236185804009,-0.078102260828018,0.046850848942995]],[[0.050732724368572,-0.028355188667774,-0.025707414373755],[-0.021338388323784,-0.00091236300067976,0.05832589790225],[-0.020867429673672,0.067280933260918,0.0037816478870809]],[[0.040446229279041,-0.047651380300522,-0.0055627478286624],[-0.051415257155895,-0.020253280177712,0.024457214400172],[0.039199274033308,0.014191404916346,-0.044912446290255]],[[0.011223215609789,0.03149500861764,-0.0094744628295302],[-0.032433722168207,-0.10970636457205,0.010284347459674],[-0.060464229434729,0.057637587189674,0.046197883784771]],[[0.030924310907722,0.019999142736197,-0.070963576436043],[0.084576971828938,-0.030807815492153,0.014485253952444],[-0.091020621359348,-0.019314466044307,0.031296674162149]],[[-0.05488295853138,-0.0078402617946267,0.033148199319839],[-0.090220175683498,0.0064056157134473,0.054648749530315],[-0.067707128822803,0.070757009088993,0.046525247395039]],[[-0.031022068113089,-0.0042829960584641,0.03631280362606],[0.065448403358459,-0.026167148724198,0.031747933477163],[-0.007562093436718,-0.0071273911744356,0.035292431712151]],[[0.036040302366018,0.066122025251389,0.073940016329288],[-0.066533662378788,0.0070775835774839,0.0096056424081326],[-0.0097245527431369,0.040039524435997,0.026692235842347]],[[0.0027198477182537,-0.021821362897754,-0.016818286851048],[-0.015663681551814,-0.015806250274181,-0.01851774379611],[0.077310219407082,0.0027846160810441,0.041054628789425]],[[-0.031243400648236,-0.052313908934593,-0.015128349885345],[0.031930088996887,-0.0039736102335155,-0.0017789355479181],[-0.033560253679752,0.040800336748362,-0.020792612805963]],[[0.019163951277733,-0.00077547290129587,-0.035821713507175],[-0.015818007290363,0.029957786202431,0.0046346429735422],[0.019463609904051,0.04961371421814,-0.019030833616853]],[[-0.001186800072901,-0.010003209114075,0.064549349248409],[0.027831137180328,0.012058981694281,-0.039825566112995],[-0.043771896511316,-0.013138041831553,-0.043025348335505]],[[0.020719660446048,-0.025866353884339,-0.026704164221883],[-0.0077807898633182,-0.033285792917013,-0.0068467645905912],[-0.034811854362488,0.0051636332646012,0.021907398477197]],[[0.036243941634893,0.04028208553791,-0.037213142961264],[-0.018037974834442,-0.064374327659607,0.058730479329824],[-0.052357260137796,-0.051632139831781,-0.011415369808674]],[[0.033062130212784,-0.062058292329311,-0.052207168191671],[-0.020538315176964,-0.062019091099501,0.010071378201246],[-0.051466424018145,-0.14444486796856,-0.095413379371166]],[[0.0094835814088583,-0.018485277891159,-0.043610922992229],[0.040243614464998,0.029274689033628,0.081506684422493],[-0.059953704476357,0.024243788793683,0.020507493987679]],[[0.0011532481294125,0.0033758480567485,-0.0079719144850969],[0.034800857305527,-0.020843839272857,0.010959695093334],[-0.034272063523531,-0.040458187460899,0.10381174087524]],[[-0.061988446861506,-0.0033994533587247,0.012681708671153],[-0.036961484700441,0.01470804028213,-0.021078294143081],[0.0022255980875343,0.007723358925432,-0.039055373519659]],[[0.00036949923378415,-0.042466260492802,0.050790145993233],[0.055887226015329,0.0088575314730406,0.054882004857063],[-0.0037373583763838,-0.003273987211287,-0.016011161729693]],[[-0.037257555872202,-0.072629377245903,0.018034048378468],[-0.014614544808865,0.073699869215488,-0.032116711139679],[0.059151705354452,-0.021811863407493,-0.018040921539068]],[[-0.010129787027836,-0.052656132727861,-0.041955593973398],[-0.020614271983504,0.031950078904629,-0.11112701892853],[0.052052773535252,0.033835902810097,-0.017076279968023]],[[-0.015909191220999,-0.00075392791768536,-0.01630736514926],[0.068660281598568,0.047394223511219,-0.027160231024027],[-0.035032384097576,-0.032605033367872,-0.10233369469643]],[[-0.045449707657099,-0.049816716462374,0.028084009885788],[-0.060118947178125,0.042215835303068,0.0075167617760599],[-0.00020556010713335,-0.0066803344525397,0.043448582291603]],[[0.0056477272883058,0.055260512977839,0.0076268669217825],[0.038932301104069,-0.081211306154728,0.050600670278072],[0.035269435495138,-0.004377406090498,0.032387211918831]],[[0.040426999330521,0.096492648124695,0.061362355947495],[-0.059466361999512,0.035335641354322,0.044626098126173],[0.037809621542692,0.10566350072622,0.074742279946804]],[[0.0013533118180931,0.039804078638554,0.016822658479214],[0.011822349391878,0.013483150862157,0.045171409845352],[0.094278231263161,0.029241537675261,-0.073011808097363]],[[-0.015544886700809,0.069610938429832,0.025270707905293],[-0.058337230235338,0.039858933538198,0.021140307188034],[0.0060798660852015,-0.13935917615891,0.052734319120646]],[[0.011541285552084,0.012685356661677,-0.02939822152257],[-0.066261678934097,0.0039766160771251,0.034048933535814],[0.028397569432855,0.023696184158325,0.027666669338942]],[[-0.021924294531345,-0.0041459449566901,0.02722598053515],[0.013986435718834,0.051579181104898,-0.091041147708893],[0.080281421542168,-0.043284527957439,-0.017170777544379]],[[-0.022351851686835,-0.023753169924021,0.046882469207048],[0.043583579361439,0.025097534060478,0.020572930574417],[-0.0079833781346679,-0.068884551525116,0.017806647345424]],[[-0.05595563724637,-0.0045720809139311,-0.024934131652117],[0.01645415276289,-0.023502433672547,0.0041248006746173],[0.0047420798800886,0.045310385525227,0.035520274192095]],[[-0.036272868514061,0.04939978197217,0.039807446300983],[-0.049913890659809,0.010710462927818,-0.012351229786873],[-0.0091316597536206,-0.060309641063213,0.05108779296279]]],[[[0.025951331481338,0.051974311470985,0.082269810140133],[0.044951103627682,0.040228027850389,0.054858673363924],[-0.081470660865307,-0.071841701865196,0.053745113313198]],[[-0.050894130021334,-0.0075563085265458,0.0048788925632834],[0.0064613120630383,0.0084237344563007,-0.030519252642989],[0.044753953814507,0.098323792219162,0.002562357345596]],[[0.014037616550922,0.068561568856239,0.18858532607555],[-0.017569975927472,-0.095772981643677,0.0038968338631094],[-0.060431260615587,-0.0023736211005598,0.015097579918802]],[[0.036508847028017,0.026252014562488,0.039571300148964],[0.015727901831269,0.021173482760787,-0.0050585474818945],[0.13961105048656,0.15050473809242,-0.018951268866658]],[[0.01694861985743,0.060721080750227,0.026453724130988],[0.082613989710808,0.025788141414523,0.03142587095499],[-0.0098590245470405,-0.044483698904514,0.079363457858562]],[[0.053485758602619,-0.0079706208780408,0.058818887919188],[0.061354752629995,-0.035874094814062,-0.053480606526136],[0.00240528723225,0.020256670191884,0.031637821346521]],[[0.022214729338884,0.039554581046104,-0.091733932495117],[-0.012197348289192,-0.0018062723102048,0.0041201417334378],[0.12496592849493,0.16785414516926,-0.02236701361835]],[[-0.0042806253768504,-0.027083363384008,-0.0092255752533674],[-0.019600169733167,-0.039900541305542,-0.11337231099606],[0.034802295267582,0.024595441296697,0.035056374967098]],[[0.08555543422699,-0.019347231835127,0.073246657848358],[-0.066705211997032,0.011871349997818,0.013997388072312],[0.055859595537186,-0.0081678749993443,-0.012447672896087]],[[-0.0042584859766066,0.10679183155298,0.11144579201937],[-0.045483540743589,0.016727408394217,-0.0097683500498533],[-0.11662115156651,0.010366039350629,0.039071779698133]],[[0.053659111261368,-0.019014259800315,0.077684476971626],[0.01843998208642,-0.027220504358411,0.050606466829777],[0.072830349206924,0.02701286226511,0.14712643623352]],[[0.041869804263115,0.089135386049747,0.041193705052137],[0.087716780602932,0.039889968931675,-0.047320906072855],[-0.022205019369721,0.097229354083538,0.025658870115876]],[[0.045196309685707,0.02010484598577,0.011381158605218],[0.020146934315562,0.016219858080149,0.0091231390833855],[-0.10944048315287,-0.0091889593750238,0.022676941007376]],[[0.022288436070085,0.00934346485883,0.043852459639311],[0.0044167009182274,-0.049921654164791,-0.039318438619375],[-0.059574376791716,-0.0074544860981405,-0.054001152515411]],[[-0.13320051133633,-0.11486899852753,0.027761926874518],[-0.064382709562778,0.082666680216789,0.019719490781426],[-0.058802958577871,-0.05177791044116,-0.022042477503419]],[[0.067874550819397,0.083763785660267,0.028382955119014],[-0.018794510513544,0.01220827922225,0.013230144046247],[-0.020606698468328,-0.036273445934057,-0.031259834766388]],[[-0.0507647767663,-0.030167378485203,0.024882754310966],[-0.1174419298768,0.042825430631638,0.10602202266455],[-0.13731995224953,0.05603726580739,-0.045757029205561]],[[-0.0059752226807177,-0.0039852638728917,-0.22771887481213],[0.086732797324657,-0.019937731325626,-0.073236808180809],[0.26798951625824,0.024613613262773,-0.19738049805164]],[[0.10733045637608,0.014749217778444,-0.033511865884066],[0.032548200339079,-0.10871161520481,0.11005186289549],[0.0015743781113997,0.076494172215462,0.049639664590359]],[[0.080212779343128,-0.095450550317764,0.027398455888033],[-0.026279391720891,0.072072684764862,0.11867242306471],[0.095615208148956,0.051391843706369,0.029233068227768]],[[-0.0071382354944944,-0.08210875838995,0.032627981156111],[-0.011292767710984,0.030094165354967,-0.014064234681427],[-0.065624795854092,0.0053186253644526,-0.039107039570808]],[[0.075552254915237,-0.069256566464901,-0.060461424291134],[0.077895537018776,0.048097107559443,0.010587499476969],[0.0019490470876917,0.097860373556614,0.0015554637648165]],[[0.025613276287913,-0.031738478690386,-0.11386795341969],[0.038233775645494,0.010951779782772,0.047692522406578],[0.032120365649462,-0.076908014714718,0.05538783967495]],[[0.017592618241906,-0.039594005793333,0.025992194190621],[-0.05669553950429,0.01830830425024,-0.015584348700941],[-0.015632128342986,0.049210794270039,0.032415010035038]],[[-0.067813016474247,-0.0009309418965131,0.039280571043491],[0.0084491474553943,0.1195610165596,-0.016115460544825],[0.091838620603085,0.06045563146472,0.095537208020687]],[[0.0051844567060471,-0.037965457886457,0.043882347643375],[0.046522241085768,0.089662864804268,-0.036978933960199],[0.054348263889551,-0.056217595934868,-0.0087684439495206]],[[0.050028454512358,-0.00053939397912472,0.031283590942621],[-0.020521016791463,-0.021990094333887,0.01815296895802],[-0.0082845268771052,0.076651692390442,-0.0077687059529126]],[[0.028797470033169,-0.035746708512306,0.01358612254262],[-0.048698142170906,0.041909947991371,0.070693522691727],[0.02110063098371,0.06792950630188,0.025509145110846]],[[-0.068853691220284,0.073413327336311,-0.024593742564321],[-0.052385207265615,0.023380106315017,-0.0697256103158],[0.067312888801098,0.09914118796587,0.095630265772343]],[[-0.0067856260575354,0.029969895258546,-0.061687655746937],[-0.030620293691754,-0.017111573368311,-0.0067578782327473],[-0.0078883329406381,0.11827164888382,-0.024133944883943]],[[0.063144721090794,-0.01641109585762,-0.09296740591526],[-0.1249445527792,0.022491639479995,0.12955896556377],[-0.013309729285538,0.046583294868469,-0.0071428213268518]],[[0.0083008520305157,0.01004795730114,0.076675295829773],[0.027331991121173,0.037543278187513,-0.027408106252551],[0.086147651076317,-0.030394941568375,0.0063006156124175]],[[0.054559081792831,0.057644505053759,0.14383405447006],[0.064387552440166,-0.024764189496636,-0.065197937190533],[-0.010828102938831,0.023788889870048,0.027307771146297]],[[0.032853551208973,-0.050746787339449,-0.015879694372416],[-0.028394006192684,0.073869585990906,0.039423316717148],[0.015325874090195,0.0091716824099422,0.036324594169855]],[[0.0025005012284964,-0.023971606045961,-0.034817490726709],[-0.038605559617281,-0.060187112540007,0.088321663439274],[-0.0082247667014599,-0.018031362444162,0.014938991516829]],[[0.039599686861038,-0.01338669937104,-0.071605794131756],[-0.11728207021952,0.0752267614007,0.00060581933939829],[0.068123400211334,-0.04267281293869,0.046639956533909]],[[0.029545873403549,0.036800850182772,0.019855003803968],[-0.021326703950763,0.020284567028284,-0.056142192333937],[0.05642069876194,0.015188946388662,0.070778474211693]],[[0.015592819079757,0.0364750623703,-0.023157032206655],[0.069411508738995,-0.081053532660007,-0.019332898780704],[0.02647678181529,0.020966365933418,0.0030884090811014]],[[0.0019573776517063,0.074610136449337,0.065077021718025],[-0.03860005736351,-0.03060775436461,0.028595326468349],[0.036178439855576,-0.052845902740955,-0.023269398137927]],[[-0.049644742161036,0.069274269044399,-0.057829409837723],[-0.056791178882122,0.0015168688260019,0.015685059130192],[0.058225598186255,0.11443836987019,-0.011630548164248]],[[0.00073840795084834,-0.065440818667412,-0.024556770920753],[-0.044655989855528,0.021354630589485,-0.004940090700984],[0.089289605617523,-0.010996007360518,0.047135580331087]],[[0.039378602057695,-0.025091372430325,0.021574538201094],[-0.0027176083531231,-0.062581241130829,-0.00081270333612338],[0.0099884970113635,0.02809901535511,-0.018171196803451]],[[-0.01350318454206,0.037620596587658,0.02115061506629],[0.038965117186308,0.041700057685375,-0.019369395449758],[-0.025118976831436,0.06860288977623,0.027263814583421]],[[0.050284806638956,0.029029954224825,-0.02187355607748],[-0.0056344205513597,-0.11107566207647,-0.0030614263378084],[0.073109984397888,0.01361052878201,0.01159255951643]],[[0.10331241041422,0.077632486820221,-0.024184480309486],[-0.0087314657866955,0.14887303113937,0.0090247476473451],[0.064624801278114,0.053523000329733,0.15219502151012]],[[0.056029222905636,0.0047066900879145,-0.028844093903899],[0.043948002159595,-0.036794804036617,0.0051564001478255],[0.036360543221235,0.0034235420171171,0.039216667413712]],[[0.032592967152596,0.010795598849654,0.024918243288994],[0.035927776247263,0.064540766179562,0.050385411828756],[0.017403233796358,-0.015290228649974,-0.0081518059596419]],[[0.011929823085666,0.094152353703976,-0.060649182647467],[-0.040230102837086,-0.093085065484047,-0.0096083581447601],[0.056500103324652,-0.062164612114429,-0.090580783784389]],[[0.0068568671122193,-0.040252070873976,0.024931916967034],[-0.027063066139817,0.016011191532016,-0.0042301258072257],[-0.095363460481167,-0.078783243894577,-0.0085049355402589]],[[-0.022875649854541,-0.035295069217682,-0.0017083213897422],[-0.0020176377147436,0.0065365382470191,0.084511019289494],[0.013181331567466,0.0018272649031132,-0.0043386868201196]],[[-0.012705991975963,0.017731184139848,-0.02660795301199],[-0.072133339941502,0.056301023811102,-0.10240788757801],[0.084909610450268,0.0021591580007225,0.058890245854855]],[[0.06429760158062,-0.034116432070732,0.15373781323433],[0.039880868047476,-0.051744259893894,0.028756132349372],[0.040076453238726,0.046997416764498,0.13235047459602]],[[-0.013857120648026,0.0035955673083663,0.048105083405972],[-0.098701193928719,-0.0053791431710124,-0.11528065800667],[-0.057927377521992,0.0022233994677663,-0.06905709207058]],[[0.013850421644747,0.048385065048933,0.065762355923653],[-0.1037273183465,0.14501146972179,0.079756781458855],[0.14517179131508,0.024447007104754,0.019907657057047]],[[0.083373613655567,0.016733434051275,0.069793872535229],[-0.0069046160206199,0.058083921670914,0.012318615801632],[0.023090843111277,0.028517751023173,0.01682366989553]],[[-0.046093225479126,0.027749579399824,-0.021557426080108],[0.04940889030695,0.0065676490776241,0.081720463931561],[0.086209006607533,0.05817512050271,-0.012978647835553]],[[0.13708648085594,0.072051212191582,0.063785143196583],[0.12243318557739,-0.066165030002594,-0.0087019391357899],[0.040793169289827,-0.063607580959797,0.036830686032772]],[[-0.032709814608097,0.17083257436752,-0.036109659820795],[0.01863501034677,-0.038484841585159,0.095787316560745],[0.019888404756784,0.022895760834217,0.12316733598709]],[[0.02487083338201,0.075839892029762,0.029535312205553],[0.045790426433086,0.010093307122588,0.080567874014378],[0.021407624706626,-0.052389144897461,0.02280168235302]],[[0.086817033588886,-0.017646072432399,-0.038931708782911],[0.0090970303863287,0.10983395576477,0.0010442524217069],[-0.02746270224452,-0.063426062464714,0.019813135266304]],[[-0.06025954335928,0.037624828517437,0.054409179836512],[0.024844452738762,0.032074894756079,0.10075321793556],[0.024364089593291,-0.01635861210525,0.024823317304254]],[[0.07295224070549,-0.11510153114796,-0.021764263510704],[-0.0057357079349458,0.014585293829441,-0.003866309998557],[0.077085182070732,0.029699455946684,-0.089991845190525]],[[0.048761680722237,-0.070128858089447,-0.14929057657719],[0.0070407334715128,-0.0011497053783387,-0.056035507470369],[0.019282316789031,0.045758835971355,0.091979034245014]],[[0.02928120829165,0.045836888253689,0.084459856152534],[0.099556639790535,0.06668184697628,0.073945105075836],[0.11416669934988,0.1841079890728,0.056778267025948]],[[-0.024904211983085,0.027930084615946,0.069005273282528],[0.019946999847889,0.055771503597498,-0.017387259751558],[0.042780846357346,-0.01333112642169,0.0054256608709693]],[[0.11169110238552,-0.036028899252415,-0.052946574985981],[0.034091040492058,-0.095957443118095,0.0087945079430938],[0.021286815404892,-0.053268395364285,-0.059073720127344]],[[0.072330564260483,0.066746942698956,-0.0064566633664072],[-0.049339916557074,-0.012307487428188,0.023997092619538],[-0.054031908512115,-0.029180862009525,0.10222215205431]],[[-0.034367013722658,-0.036588404327631,0.082867883145809],[-0.043657273054123,0.016366355121136,-0.026527618989348],[0.0078581823036075,0.069823786616325,0.070166401565075]],[[-0.057265188544989,0.20609103143215,0.056193474680185],[0.00867975410074,-0.066401548683643,0.028617762029171],[0.075946152210236,0.0055263321846724,0.043989166617393]],[[-0.021032555028796,0.013870861381292,-0.032656271010637],[0.045875184237957,0.079943403601646,0.093970939517021],[0.05971734970808,-0.02474850974977,-0.036443848162889]],[[0.11274045705795,0.05922781676054,0.061038170009851],[0.047446388751268,0.18251429498196,0.006201081443578],[0.11531101167202,0.044845227152109,0.062646977603436]],[[0.0793232396245,0.087447509169579,0.1033122241497],[-0.0047114994376898,0.061446014791727,-0.057538896799088],[-0.042208477854729,-0.10503838211298,-0.040588717907667]],[[0.024824535474181,-0.092341467738152,-0.052560783922672],[-0.076117731630802,0.02869450673461,0.024635517969728],[0.041765037924051,-0.082193911075592,-0.005555187817663]],[[0.093049168586731,-0.0081569580361247,0.092275306582451],[0.045303776860237,0.024769175797701,0.082476392388344],[0.067217133939266,-0.078634791076183,-0.084724880754948]],[[-0.029916860163212,-0.0071088778786361,0.016784030944109],[0.038248542696238,-0.010444981977344,0.019785361364484],[-0.059617165476084,-0.043997447937727,0.035357613116503]],[[-0.037473239004612,-0.0069157616235316,-0.050236515700817],[0.027049023658037,-0.077658146619797,-0.056058332324028],[0.08201340585947,0.0091059068217874,0.0052055637352169]],[[-0.083841525018215,-0.040510054677725,-0.02764680236578],[0.12546601891518,0.036786649376154,0.043327543884516],[-0.060776136815548,-0.077162049710751,-0.070430904626846]],[[0.051910009235144,0.12417949736118,0.026446301490068],[0.00075195351382717,-0.058201860636473,0.055681012570858],[0.054137300699949,0.10517135262489,0.0021139159798622]],[[-0.010438420809805,0.0050785117782652,0.033874616026878],[-0.011640697717667,0.047941945493221,-0.0048620896413922],[0.065412372350693,0.018594739958644,0.091987505555153]],[[-0.043214604258537,0.083409152925014,0.12133927643299],[-0.05752157792449,0.045946873724461,-0.038036443293095],[0.0097019383683801,0.0097116017714143,0.083962611854076]],[[0.095970340073109,-0.054308779537678,0.022501327097416],[0.0083175152540207,0.047384269535542,0.001242178841494],[0.0073729334399104,0.019466154277325,0.0081763193011284]],[[-0.0072365291416645,-0.024299912154675,0.1273717135191],[0.17219860851765,0.19885754585266,-0.053142115473747],[0.17952947318554,-0.070005685091019,0.12720754742622]],[[0.18389381468296,-0.0056507186964154,0.0032040767837316],[0.064406722784042,0.054403573274612,0.082145638763905],[0.017764812335372,0.049674496054649,-0.16601745784283]],[[-0.071233667433262,0.04923839494586,-0.03602210059762],[0.0060865366831422,0.073229059576988,0.087525561451912],[0.042437344789505,0.0021820371039212,0.029190057888627]],[[0.097197197377682,0.039242338389158,-0.00034651081659831],[-0.023260712623596,-0.017791278660297,-0.02097811549902],[-0.014804587699473,0.059993855655193,0.038410045206547]],[[0.075984679162502,-0.031610950827599,0.019764533266425],[0.06284074485302,-0.022854266688228,0.030062021687627],[0.011555097065866,0.0028551558498293,0.0086856661364436]],[[-0.017348943278193,-0.038906008005142,0.028312426060438],[0.037854690104723,0.062893666327,0.077702336013317],[0.062847353518009,0.13591606914997,0.087793409824371]],[[-0.032325107604265,0.0068929656408727,-0.0055554956197739],[-0.16714517772198,-0.0094803534448147,0.029481753706932],[-0.039375849068165,0.13099773228168,-0.012906650081277]],[[0.036933198571205,-0.014861697331071,0.0038678147830069],[0.098352029919624,0.08952596783638,0.053740762174129],[0.20100405812263,-0.060068655759096,0.054662495851517]],[[0.0026747973170131,-0.0062266103923321,0.018810724839568],[-0.11179888248444,0.024906523525715,0.07281432300806],[-0.057525187730789,0.00053480156930164,-0.080828905105591]],[[-0.030602185055614,-0.00062024954240769,-0.048460856080055],[-0.014858095906675,0.019161300733685,0.069819889962673],[0.025606818497181,0.05782438442111,0.046653617173433]],[[-0.0220797508955,-0.00080963328946382,-0.016867280006409],[0.013872275128961,-0.072850160300732,0.03314395993948],[-0.036432076245546,-0.05861459672451,-0.022084672003984]],[[-0.033406767994165,0.041964150965214,-0.019413301721215],[0.091777749359608,0.030878338962793,-0.015151225961745],[0.12662002444267,0.037670228630304,0.084645964205265]],[[-0.13157323002815,-0.15457344055176,-0.10055330395699],[-0.058356858789921,-0.027493361383677,0.085629567503929],[0.088570348918438,-0.056154187768698,0.030692100524902]],[[-0.0087186098098755,0.02411481179297,-0.020564222708344],[0.031598065048456,-0.0027211087290198,0.076481506228447],[0.048653516918421,-0.096217051148415,-0.10359168052673]],[[0.028111135587096,-0.046116542071104,-0.00082988943904638],[-0.026445660740137,-0.019079227000475,0.014452857896686],[-0.026070315390825,-0.0045397337526083,0.020187642425299]],[[0.077806085348129,0.0013144614640623,0.034800309687853],[0.11362229287624,-0.0026374293956906,-0.091860890388489],[0.068835467100143,0.050285372883081,0.053948890417814]],[[0.033703669905663,0.012911041267216,0.027634903788567],[0.096757121384144,-0.0083685135468841,-0.002235991647467],[0.093800015747547,0.0064894040115178,0.026054861024022]],[[-0.074816159904003,0.046822410076857,0.062315095216036],[0.027233915403485,0.099163345992565,0.037748444825411],[-0.021963123232126,0.10721212625504,0.050449669361115]],[[-0.0022384119220078,-0.0074725020676851,0.029224373400211],[-0.0042375717312098,0.067805528640747,0.035008084028959],[-0.051436759531498,0.038842614740133,-0.029544094577432]],[[-0.10366020351648,0.071799762547016,0.054908666759729],[0.066453330218792,-0.1214407980442,-0.038160376250744],[-0.053950726985931,-0.050033796578646,0.083039797842503]],[[-0.028657291084528,-0.024590186774731,0.089988954365253],[0.017596755176783,-0.046610120683908,0.086881726980209],[0.091312579810619,0.026291072368622,0.066445536911488]],[[0.020089680328965,0.037382539361715,-0.040145646780729],[-0.019450481981039,-0.031016318127513,-0.0411182269454],[0.017941307276487,-0.085111796855927,0.0035225360188633]],[[-0.035254165530205,-0.035907912999392,-0.012250792235136],[-0.02535954862833,-0.033777847886086,0.061856839805841],[0.032825347036123,-0.026601165533066,0.029907850548625]],[[-0.024544946849346,0.049580913037062,-0.010667617432773],[0.042297579348087,-0.013742866925895,0.041456360369921],[0.027285477146506,0.04428880661726,0.017763886600733]],[[-0.019664339721203,-0.055071491748095,0.16607902944088],[-0.21471625566483,0.032994408160448,0.06605264544487],[-0.016922784969211,0.013703145086765,0.039394985884428]],[[0.028967199847102,-0.062232699245214,0.063033625483513],[0.020964598283172,-0.0032965738791972,-0.0058060339652002],[-0.039599232375622,-0.038577016443014,0.016879288479686]],[[-0.033914379775524,0.0069444025866687,0.065269760787487],[0.007392056286335,-0.075864337384701,0.041673682630062],[-0.0077604097314179,-0.037529096007347,0.12334960699081]],[[0.050554901361465,-0.066144727170467,0.018007602542639],[-0.021792560815811,0.064523190259933,0.029833287000656],[-0.055952202528715,0.055892411619425,0.0051745469681919]],[[-0.017002046108246,0.071863114833832,0.017000444233418],[-0.00048772661830299,0.035117462277412,-0.021940693259239],[0.011945623904467,0.040868084877729,-0.014745879918337]],[[-0.021261807531118,-0.0093896063044667,-0.067928284406662],[-0.0035559537354857,0.040513195097446,-0.05097284168005],[0.02288119867444,-0.0013689212501049,0.097565077245235]],[[-0.0069428472779691,-0.10019697993994,-0.025789026170969],[-0.09483990073204,0.065059646964073,0.0053622014820576],[-0.019447332248092,0.082983650267124,-0.0081540131941438]],[[-0.016509264707565,0.064264059066772,0.030356768518686],[0.046484269201756,0.050895377993584,0.014029463753104],[0.021918589249253,-0.0034189641010016,0.085952796041965]],[[-0.021129406988621,0.068091385066509,0.073887802660465],[-0.020229509100318,0.073945671319962,0.034581962972879],[0.055398643016815,-0.051864929497242,0.039244592189789]],[[0.037824776023626,-0.048170186579227,0.040152013301849],[0.077585488557816,-0.13868992030621,0.06361485272646],[-0.052103079855442,-0.024499531835318,-0.011621021665633]],[[0.006107886787504,0.03128058463335,-0.071888066828251],[0.015695950016379,-0.03877367451787,-0.17582440376282],[0.027168650180101,0.024053279310465,0.089712217450142]],[[0.037990249693394,0.048314351588488,-0.022231440991163],[-0.051880728453398,0.059513092041016,0.054174546152353],[-0.030483990907669,0.12348549813032,0.087775722146034]],[[0.019313968718052,0.0040644048713148,0.012181041762233],[0.043860107660294,0.023303689435124,0.043904807418585],[-0.030607542023063,-0.0055819377303123,0.070899583399296]],[[-0.098760232329369,-0.072485588490963,-0.032524675130844],[0.092267863452435,0.034515682607889,-0.065345980226994],[-0.010020714253187,0.054133750498295,-0.0091128395870328]],[[0.021380439400673,0.033574502915144,0.059230536222458],[0.012578906491399,-0.032159231603146,0.030820768326521],[0.041755527257919,0.03837813064456,0.17079804837704]],[[0.0040399320423603,0.05838867649436,0.10860171914101],[0.090339817106724,-0.061253130435944,-0.088059224188328],[-0.077375002205372,-0.034203868359327,-0.072007171809673]],[[0.051207538694143,0.011775617487729,-0.0053286980837584],[0.039707347750664,-0.016541246324778,0.067108333110809],[0.025879139080644,0.11468314379454,-0.065565556287766]],[[0.074552372097969,0.019706623628736,0.088781468570232],[-0.0053990809246898,-0.07156828045845,-0.00025199924129993],[0.030995054170489,0.10315133631229,-0.015632249414921]],[[-0.088901586830616,-0.088075824081898,-0.082852713763714],[-0.0034708769526333,0.030443670228124,0.0053776944987476],[-0.025871532037854,-0.0090621868148446,-0.019784830510616]],[[0.033525735139847,-0.028806615620852,-0.10381723195314],[0.00039332511369139,-0.075433909893036,0.019388657063246],[-0.034424178302288,0.0099592246115208,0.082918345928192]],[[-0.091356419026852,0.082385294139385,-0.04469745606184],[0.013833010569215,-0.049873098731041,0.016836989670992],[0.00080390844959766,0.025956144556403,-0.084787771105766]],[[0.057439163327217,0.073766402900219,0.0386673361063],[0.06850803643465,0.032770451158285,-0.05483840405941],[0.042391445487738,-0.089962095022202,0.028507744893432]],[[-0.057489857077599,0.088271155953407,-0.03731906041503],[0.13363538682461,-0.056783191859722,-0.0045749563723803],[-0.013070546090603,-0.086716309189796,0.025939831510186]]],[[[0.018027417361736,0.048607468605042,0.0004571930912789],[0.06172264367342,0.043222114443779,0.016083590686321],[-0.01734939776361,0.052965056151152,0.017306109890342]],[[0.086403012275696,-0.087072305381298,-0.094796843826771],[-0.060667887330055,-0.046319305896759,-0.012656470760703],[-0.031535357236862,-0.031427640467882,0.040089722722769]],[[-0.015992280095816,-0.056867700070143,-0.088945485651493],[-0.027823626995087,-0.0064841690473258,-0.02803055383265],[-0.062925681471825,0.031825888901949,0.028167229145765]],[[0.058809783309698,0.04510310292244,0.12104960530996],[0.025560267269611,-0.014776326715946,-0.078827656805515],[-0.017612820491195,-0.027378771454096,0.031557705253363]],[[-0.048945143818855,0.056382343173027,0.025329321622849],[-0.025771429762244,-0.05612812563777,0.043502356857061],[-0.11562100052834,-0.061787247657776,-0.024883242323995]],[[-0.0033412699121982,0.049551874399185,-0.058910239487886],[0.0030972922686487,-0.070839546620846,-0.028955455869436],[0.017528655007482,-0.019867783412337,-0.034775238484144]],[[0.037946127355099,0.048045702278614,0.13067092001438],[0.071888327598572,0.0053631742484868,-0.11183342337608],[-0.010203128680587,0.036208439618349,-0.032188415527344]],[[0.061796329915524,0.13980154693127,0.055136248469353],[0.0053859511390328,-0.039729844778776,0.095360279083252],[0.11470429599285,0.090764939785004,-0.046509064733982]],[[-0.036677625030279,0.034465711563826,0.030530709773302],[0.012636505067348,-0.033865485340357,0.004015174228698],[0.069217249751091,0.046353351324797,0.030706075951457]],[[0.042693495750427,0.0097137000411749,0.052497766911983],[0.02653138898313,0.073569297790527,0.050327505916357],[0.0041499133221805,-0.04157792404294,-0.029631495475769]],[[0.043755389750004,0.076985530555248,0.053582947701216],[-0.021706299856305,0.003711569821462,-0.024430766701698],[-0.048598721623421,-0.020813340321183,0.0049475058913231]],[[-0.077290028333664,-0.057857912033796,-0.01187602058053],[0.012339128181338,0.02751381509006,0.057640094310045],[-0.040633913129568,0.047283887863159,0.028265187516809]],[[-0.027284266427159,-0.10625575482845,0.01368104480207],[0.010678816586733,-0.031128505244851,-0.06860389560461],[-0.036338955163956,-0.0033002197742462,-0.12533138692379]],[[-0.06461725383997,-0.023711739107966,0.038077306002378],[-0.028363967314363,0.035254944115877,-0.016358248889446],[0.0078007318079472,-0.01667845249176,0.11251623928547]],[[0.018294032663107,0.060756158083677,-0.068985134363174],[0.015400275588036,-0.0073727429844439,-0.024829203262925],[-0.025809181854129,-0.011243482120335,0.10369700193405]],[[0.02522949129343,0.0013222086708993,0.045562401413918],[0.031133009120822,-0.02113725990057,-0.088245145976543],[-0.0090691968798637,0.028042366728187,-0.043037805706263]],[[0.031937964260578,0.0643440335989,0.051635585725307],[0.036250747740269,0.071616671979427,0.025384895503521],[0.0060540093109012,-0.011962823569775,-0.0039202393963933]],[[-0.042348492890596,-0.072008080780506,-0.091955713927746],[-0.06343686580658,-0.016875755041838,-0.018478428944945],[-0.044511415064335,0.0041597653180361,-0.0082413172349334]],[[-0.051779489964247,-0.0025355394463986,0.022012740373611],[0.007870489731431,-0.0060628191567957,-0.049881409853697],[0.038257297128439,0.0061841038987041,0.029172103852034]],[[0.096115484833717,0.016991719603539,0.011557410471141],[0.060417339205742,-0.0070876181125641,0.016783501952887],[-0.023199293762445,-0.055879812687635,0.048780806362629]],[[-0.059520643204451,-0.031391471624374,-0.060525208711624],[-0.10054600983858,-0.075718879699707,0.011866788379848],[-0.10767754167318,-0.034318026155233,0.030418433248997]],[[0.07545018941164,-0.012039680033922,0.041427448391914],[-0.041992470622063,0.050841838121414,-0.014765338972211],[0.082905516028404,0.040889818221331,-0.037737365812063]],[[-0.028964847326279,-0.0062169712036848,-0.082187227904797],[-0.020147552713752,0.015618969686329,0.08831986784935],[-0.023406965658069,0.069349832832813,0.0054956865496933]],[[0.0049056741409004,0.011996125802398,-0.021812491118908],[-0.0098339663818479,-0.032330632209778,-0.065146096050739],[0.0082401093095541,-0.050617553293705,-0.17287287116051]],[[0.058221086859703,0.067637927830219,-0.074529238045216],[-0.018372172489762,0.013570294715464,0.032306708395481],[-0.0087553029879928,-0.0081510292366147,-0.094619609415531]],[[0.059505056589842,-0.028077885508537,-0.032468616962433],[0.056638240814209,-0.031171528622508,0.055361218750477],[0.025208957493305,-0.047272525727749,-0.092758759856224]],[[0.040470473468304,-0.014639868400991,0.0021699152421206],[-0.089890949428082,-0.024633565917611,-0.019343938678503],[0.023563669994473,-0.034955941140652,-0.0098859230056405]],[[-0.058693245053291,-0.0083970259875059,0.056267809122801],[0.064259596168995,-0.034205824136734,-0.12558664381504],[-0.0049310871399939,0.025355855002999,0.0048598712310195]],[[-0.036551520228386,0.072946481406689,-0.064744286239147],[0.029845476150513,-0.050569530576468,0.061819903552532],[-0.053021945059299,7.5838317570742e-05,0.026859831064939]],[[0.02560362406075,0.027606835588813,0.066286534070969],[-0.012390620075166,-0.02348137460649,-0.021919876337051],[0.032885644584894,0.035592183470726,-0.037486109882593]],[[0.052997846156359,0.060573801398277,0.018540872260928],[0.034104682505131,0.00053303642198443,0.0044081127271056],[0.066399395465851,0.066691517829895,-0.022962421178818]],[[0.023326244205236,0.059632528573275,-0.00082421331899241],[0.040959153324366,0.051057234406471,-0.0058441306464374],[-0.087336555123329,0.05095935985446,-0.1092603802681]],[[0.0044470774009824,-0.10646825283766,0.077223367989063],[-0.0078206267207861,0.0068006459623575,-0.12416452914476],[-0.018336746841669,0.04488580673933,0.086591377854347]],[[-0.00088701583445072,0.0011392431333661,-0.044508963823318],[0.022503659129143,0.018508115783334,0.00017336134624202],[-0.048669964075089,-0.027604071423411,-0.0074422159232199]],[[0.051326472312212,-0.007736240979284,0.035518947988749],[-0.013420171104372,0.011939543299377,0.045490492135286],[-0.067109622061253,-0.05392973870039,-0.067967809736729]],[[0.0028185513801873,-0.023405905812979,-0.03288646042347],[0.024793490767479,-0.0077172722667456,-0.044482950121164],[-0.023022184148431,-0.0045756283216178,0.028018733486533]],[[0.12852492928505,-0.048445012420416,-0.049982745200396],[0.053462918847799,-0.014913157559931,0.09685979783535],[-0.007085457444191,0.039921678602695,0.093206994235516]],[[0.03118984401226,-0.0025588625576347,-0.10443207621574],[0.050407152622938,-0.041454002261162,-0.059967018663883],[0.01950404420495,-0.07973551005125,0.038398653268814]],[[0.043880842626095,-0.019951013848186,-0.0122379232198],[-0.088106423616409,-0.062425646930933,-0.040460169315338],[0.064216129481792,-0.043737851083279,0.025717193260789]],[[-0.00025036293664016,0.0015270080184564,0.093745075166225],[0.092669226229191,0.014722566120327,-0.03267015889287],[0.026471776887774,-0.074049554765224,-0.01221530046314]],[[-0.093206815421581,0.0011040378594771,-0.060646861791611],[0.092153489589691,0.0089177740737796,-0.02193646505475],[0.032279659062624,-0.012889694422483,0.13734376430511]],[[0.020387196913362,-0.010649965144694,0.078767448663712],[0.0026177032850683,0.065255925059319,0.009161020629108],[0.16621930897236,0.023305146023631,-0.015016223303974]],[[-0.018579108640552,-0.010441789403558,0.092898227274418],[0.033192299306393,0.060988999903202,0.097052708268166],[0.040505815297365,-0.024603394791484,-0.093951530754566]],[[-0.071790881454945,-0.04222571477294,0.014682508073747],[0.052251823246479,-0.016081053763628,0.0032585964072496],[0.018458977341652,0.00064143392955884,0.066654473543167]],[[-0.036669123917818,0.050625257194042,0.042957164347172],[0.057773780077696,0.05704290792346,0.028129424899817],[0.012089650146663,-0.0064985952340066,0.077732086181641]],[[0.045688953250647,0.10557233542204,-0.0067489123903215],[0.15463057160378,0.052192848175764,0.044672414660454],[-0.0060798223130405,-0.063959822058678,0.13861724734306]],[[-0.038937419652939,0.032481949776411,-0.053128615021706],[-0.060615416616201,-0.033586580306292,-0.031891513615847],[0.013932432048023,-0.043553043156862,0.0048778359778225]],[[-0.037539910525084,-0.015543145127594,-0.027758387848735],[-0.059988476336002,0.028582789003849,-0.013136035762727],[-0.06627444177866,0.0033624428324401,-0.021692482754588]],[[0.021452993154526,-0.041339736431837,0.011618070304394],[-0.023312387987971,-0.018790462985635,0.025067463517189],[0.026706470176578,-0.043039459735155,-0.042366206645966]],[[-0.061013802886009,0.056800831109285,-0.0095643624663353],[-0.047745749354362,-0.030874958261847,-0.012616412714124],[0.043906833976507,-0.039786521345377,-0.093703210353851]],[[-0.017609480768442,-0.042115151882172,0.034021273255348],[-0.071989171206951,-0.094272553920746,-0.068733192980289],[0.0071415356360376,0.0330607034266,-0.075445801019669]],[[0.036474771797657,-0.049952980130911,0.004848173353821],[-0.072807058691978,-0.018180269747972,0.010956756770611],[0.068641841411591,0.032840244472027,0.076953656971455]],[[-0.040024396032095,-0.024470264092088,0.033627729862928],[-0.012141779065132,0.032608672976494,0.042478933930397],[0.091075778007507,-0.057645913213491,-0.0062512261793017]],[[0.06300888210535,0.01457526627928,-0.004774899687618],[0.043449971824884,-0.028370523825288,0.028560301288962],[-0.0095602190122008,-0.0030247478280216,-0.03823958337307]],[[-0.01571873575449,0.050620499998331,0.072208307683468],[0.020018415525556,0.038398280739784,-0.0051310756243765],[0.077521987259388,0.13079825043678,0.075304217636585]],[[0.0046271649189293,0.018146798014641,-0.047429285943508],[0.0045405607670546,-0.027144292369485,-0.0078936303034425],[0.013927540741861,0.018940987065434,-0.01469181664288]],[[-0.065144024789333,0.0011151803191751,0.11121353507042],[0.046664003282785,0.030988389626145,0.017838936299086],[0.10587348043919,0.0031480505131185,0.032185774296522]],[[0.067275017499924,0.033648371696472,-0.059372674673796],[0.034311212599277,0.064145930111408,-0.018723953515291],[0.014274883083999,-0.067178875207901,0.0049113724380732]],[[-0.034607999026775,0.030298355966806,0.089511953294277],[0.041731558740139,0.057157546281815,-0.015961335971951],[0.031405411660671,0.090148821473122,0.099866941571236]],[[-0.064389862120152,0.038917358964682,-0.014967147260904],[-0.02897291071713,-0.011889325454831,0.031238377094269],[0.038856003433466,0.029426764696836,0.10120079666376]],[[-0.099112384021282,0.015625298023224,-0.021095031872392],[-0.016842501237988,0.011199896223843,0.051880929619074],[-0.096721418201923,-0.031787175685167,-0.05721340328455]],[[-0.058363527059555,-0.042625837028027,-0.077567242085934],[0.041729141026735,-5.086691089673e-05,-0.091785155236721],[-0.052172474563122,-0.04836181551218,0.069825418293476]],[[0.0036681133788079,0.021597778424621,-0.0030715558677912],[-0.00095147173851728,-0.020937118679285,-0.00209906604141],[0.047972850501537,0.011419896036386,0.023003218695521]],[[0.051760885864496,0.075351916253567,0.10539254546165],[0.16508468985558,-0.078049294650555,0.061689373105764],[0.051370687782764,0.06794285774231,0.032679971307516]],[[-0.064046874642372,-0.070690095424652,-0.058287363499403],[-0.085817292332649,-0.017885390669107,-0.04501299187541],[0.0046550245024264,0.065474852919579,0.063129484653473]],[[0.081144541501999,0.056438282132149,-0.0086765103042126],[-0.039972875267267,-0.032268520444632,0.00064486800692976],[-0.047760553658009,-0.015738984569907,-0.064630031585693]],[[0.0050267432816327,0.048173137009144,0.011059058830142],[0.052809379994869,-0.0083548575639725,-0.039779800921679],[-0.0055903913453221,0.088579714298248,0.029246289283037]],[[0.044596221297979,0.072522655129433,-0.027884909883142],[0.012414401397109,0.016158832237124,0.0053223869763315],[0.028148509562016,-0.0035776414442807,0.038892474025488]],[[0.055351320654154,0.018220135942101,0.029477285221219],[0.060888104140759,0.064387619495392,-0.022926989942789],[0.059252321720123,-0.014451561495662,0.12040071934462]],[[-0.067444108426571,0.024480301886797,0.023012146353722],[-0.041517458856106,0.03272931650281,0.031047370284796],[0.071606017649174,0.06360837072134,0.0059878011234105]],[[0.044201370328665,0.10940111428499,-0.020721009001136],[-0.014943454414606,0.14221982657909,0.044767756015062],[0.094907753169537,0.086497411131859,0.01043058373034]],[[-0.047283735126257,-0.14784474670887,-0.088849551975727],[0.010863400995731,-0.029173478484154,-0.020882457494736],[-0.02026866003871,0.019697809591889,0.041497569531202]],[[-0.028695141896605,0.038596350699663,-0.069407626986504],[-0.011179546825588,0.013132008723915,-0.044834744185209],[-0.052797731012106,-0.033874455839396,-0.058966718614101]],[[-0.02553434856236,-0.033205438405275,-0.014060292392969],[0.053274810314178,0.017898581922054,0.042533148080111],[-0.0069055557250977,0.026078445836902,0.062988042831421]],[[0.043960459530354,0.052659157663584,-0.034795373678207],[0.08685627579689,0.036699201911688,0.019427880644798],[0.035440638661385,-0.026543216779828,-0.016497708857059]],[[-0.02362515591085,-0.020340383052826,-0.012923523783684],[0.052112095057964,0.0067623597569764,-0.030048996210098],[0.066427417099476,0.011906649917364,-0.11802972108126]],[[-0.05492552369833,-0.082465663552284,0.085518151521683],[-0.063031099736691,-0.011415261775255,-0.0061635538004339],[-0.015945443883538,-0.034948084503412,-0.013056945987046]],[[-0.0074383015744388,0.042170692235231,0.17043688893318],[0.087676644325256,0.13970355689526,0.061445210129023],[0.0011839470826089,0.055403593927622,0.045260682702065]],[[0.046897232532501,0.0013384271878749,-0.027974165976048],[-0.11752547323704,-0.057544685900211,-0.046487390995026],[0.021592728793621,-0.051897402852774,0.068090066313744]],[[-0.036588709801435,0.013592338189483,-0.02171946503222],[-0.0017180274007842,-0.074936278164387,-0.076806403696537],[0.02134545147419,0.047904036939144,0.058583937585354]],[[-0.016315117478371,-0.094205126166344,-0.011658537201583],[0.0086045870557427,-0.022832751274109,-0.011491136625409],[-0.018945783376694,-0.034718152135611,0.036061849445105]],[[0.017311871051788,-0.044914521276951,-0.023973958566785],[-0.011366637423635,-0.074392691254616,-0.040602274239063],[0.0095505397766829,0.061139799654484,0.061166241765022]],[[-0.023316692560911,0.020789973437786,0.11002351343632],[-0.033691622316837,0.018334085121751,-0.051039986312389],[0.10092779994011,0.036985039710999,-0.0027171517722309]],[[-0.0063346247188747,0.02607686072588,0.025760533288121],[-0.02438653446734,-0.02816097997129,-0.074667401611805],[0.075721547007561,0.045637797564268,0.04634041339159]],[[0.011710193008184,0.071829967200756,0.15995651483536],[-0.011696877889335,-0.083678349852562,0.034926917403936],[-0.01935575902462,0.048875000327826,-0.0066108624450862]],[[0.090646103024483,0.037495445460081,0.093537971377373],[0.0519251935184,-0.013405404984951,0.073826715350151],[-0.015057388693094,-0.0056751221418381,-0.02468734793365]],[[0.044167529791594,0.12764130532742,0.1162923797965],[0.085996389389038,0.076547510921955,0.11881187558174],[-0.060159847140312,-0.047765772789717,0.080142438411713]],[[-0.12048194557428,-0.01061253529042,0.024299932643771],[0.025444122031331,0.086895346641541,0.073651172220707],[-0.11674300581217,0.019723808392882,0.048974066972733]],[[0.084209837019444,0.10038141161203,0.15915550291538],[0.024200232699513,0.021561522036791,-0.07453753054142],[0.14391852915287,0.038667634129524,-0.061257004737854]],[[-0.079152584075928,0.035277791321278,0.045707438141108],[0.076815791428089,0.065749399363995,0.0013495658058673],[0.02992463670671,-0.0027790286112577,-0.048402562737465]],[[-0.062812283635139,0.016633529216051,0.0073596769943833],[0.025938935577869,0.11310502141714,-0.043795835226774],[0.045585408806801,-0.052797760814428,0.1450751721859]],[[0.078466229140759,0.055170219391584,-0.099931746721268],[0.0066446959972382,0.019179239869118,-0.08169836550951],[0.033621836453676,-0.044371794909239,-0.027432160452008]],[[0.01589847356081,0.059226356446743,0.051321588456631],[-0.020743837580085,0.029691025614738,0.033088535070419],[0.015073692426085,0.031043002381921,-0.079446986317635]],[[0.037236899137497,-0.034649319946766,-0.036826089024544],[-0.0070100924931467,0.065652638673782,0.02308913692832],[0.065931111574173,0.044270295649767,0.05974043533206]],[[-0.12368469685316,-0.052332405000925,-0.035870354622602],[0.05631909519434,-0.04513131454587,-0.064740791916847],[0.028869669884443,-0.1719309091568,0.02477422170341]],[[0.073094353079796,0.060146011412144,-0.083583042025566],[0.043254241347313,-0.10635989904404,0.020433669909835],[0.035178620368242,0.041455991566181,-0.0059885582886636]],[[-0.021240457892418,-0.029728109017015,-0.016487348824739],[0.0044472189620137,-0.053410708904266,-0.017872083932161],[0.071098938584328,0.012301889248192,-0.0055596721358597]],[[-0.038492746651173,0.0022895995061845,0.036400925368071],[0.069063194096088,0.03849209472537,0.0041292170062661],[0.063565723598003,0.014650930650532,-0.10858332365751]],[[-0.0096734287217259,0.0038579413667321,-0.011919348500669],[-0.0052884365431964,0.03533012419939,-0.019208265468478],[0.06739454716444,0.035999204963446,-0.042696014046669]],[[0.063011921942234,0.034779623150826,0.041817557066679],[-0.0092994216829538,-0.040379025042057,-0.003199654398486],[0.021626381203532,-0.047262813895941,-0.023976780474186]],[[-0.062685325741768,-0.031557839363813,-0.069475159049034],[0.0024419114924967,-0.092671893537045,-7.8202814620454e-05],[0.02736228145659,0.040497492998838,0.041607711464167]],[[-0.0041352338157594,-0.0058482093736529,0.065940618515015],[0.05531270802021,0.10384405404329,0.069835186004639],[-0.053413800895214,0.043286994099617,-0.078884243965149]],[[-0.03594958409667,-0.016997275874019,-0.0030264433007687],[-0.067871145904064,-0.069537147879601,-0.024899933487177],[0.002751243300736,-0.039426013827324,0.022242546081543]],[[-0.028828471899033,-0.0036876080557704,-0.085259564220905],[-0.06464821845293,-0.085214629769325,-0.065156675875187],[0.019275717437267,0.0093063153326511,-0.064852856099606]],[[-0.068434491753578,0.012549816630781,0.021896135061979],[0.025502705946565,0.0091958614066243,-0.010244463570416],[0.11657259613276,-0.030596133321524,0.07919355481863]],[[0.00048200329183601,-0.057986874133348,0.061183478683233],[0.041705790907145,0.0096381632611156,0.015246580354869],[-0.02924937941134,0.029263084754348,-0.056502040475607]],[[0.0044672470539808,0.055437318980694,0.060219079256058],[0.017863295972347,0.0059849419631064,0.031235722824931],[0.00364048499614,-0.094840385019779,-0.0677784755826]],[[-0.12616780400276,-0.08940402418375,0.015463770367205],[0.0464095659554,-0.0092663755640388,-0.013143092393875],[-0.010891301557422,0.058855570852757,0.054094310849905]],[[0.011122906580567,-0.035545967519283,-0.026702174916863],[0.012706528417766,0.0082958471029997,-0.0016160086961463],[0.084889300167561,0.013188478536904,-0.03367093577981]],[[-0.056510038673878,-0.0028510394040495,0.067600205540657],[-1.6081998182926e-05,-0.053917367011309,0.078643679618835],[0.046876154839993,-0.060375466942787,-0.0071709589101374]],[[-0.019752059131861,0.12637534737587,0.0087917782366276],[0.016443032771349,-0.018103117123246,-0.038015548139811],[-0.058438796550035,-0.020624898374081,-0.010906155221164]],[[0.075996659696102,-0.0026345469523221,0.13751703500748],[0.020557414740324,0.020128712058067,-0.026205811649561],[-0.071031861007214,-0.082178436219692,0.051205649971962]],[[0.15680778026581,-0.027351751923561,-0.044691924005747],[0.048706512898207,0.054844189435244,-0.038255106657743],[0.077520333230495,0.025600155815482,-0.0076545155607164]],[[0.074478983879089,-0.0013763030292466,0.0423364341259],[-0.010430287569761,0.018206870183349,0.015998130664229],[-0.053767304867506,0.032814439386129,-0.068783931434155]],[[-0.030869327485561,-0.080629758536816,-0.038767289370298],[0.06744496524334,0.074747286736965,-0.046867690980434],[-0.01923743262887,-0.025915589183569,0.012698306702077]],[[-0.050427179783583,0.001691200886853,-0.027796648442745],[0.014983062632382,-0.068116329610348,-0.020601926371455],[0.0049396925605834,-0.022901335731149,-0.013397829607129]],[[0.006958597805351,0.018398700281978,0.13286158442497],[0.022611543536186,0.02243796736002,0.029689060524106],[0.044212717562914,0.06236868724227,0.045998685061932]],[[-0.050056573003531,-0.0013674378860742,0.0020062669645995],[-0.051002807915211,0.051510315388441,-0.059263553470373],[-0.010538086295128,0.042793542146683,0.010857836343348]],[[0.086384385824203,-0.034587133675814,-0.0099172201007605],[-0.015959402546287,-0.05169564858079,0.036458153277636],[-0.029175011441112,-0.07217563688755,0.10407737642527]],[[-0.077266745269299,0.0041393861174583,0.093278244137764],[-0.00492974370718,-0.045114737004042,0.04037307202816],[0.094424434006214,0.045320227742195,0.062125328928232]],[[-0.055553808808327,0.025742614641786,0.035159073770046],[-0.024587403982878,0.0080345859751105,-0.00032179252593778],[0.031603895127773,-0.0060445186682045,-0.046292096376419]],[[-0.05168442428112,0.011869478970766,-0.059616535902023],[-0.019539019092917,0.031377855688334,-0.0070292293094099],[0.022415721789002,-0.089988023042679,0.027842985466123]],[[-0.069814257323742,-0.065737403929234,0.020182006061077],[-0.037693340331316,0.038382466882467,0.0069764535874128],[0.0062753618694842,0.0089062247425318,0.080290943384171]],[[0.041263848543167,0.05342797935009,-0.10028104484081],[0.015229649841785,0.025860648602247,0.047324568033218],[-0.054338693618774,-0.043203342705965,-0.082910671830177]],[[0.0052590961568058,0.012328008189797,-0.008982727304101],[0.059393871575594,0.067687749862671,0.0090481359511614],[0.017253933474422,0.023353165015578,-0.071404382586479]],[[0.01211997680366,-0.057769317179918,0.072776131331921],[-0.026505788788199,-0.034230824559927,-0.0035721054300666],[0.012577678076923,0.0179412830621,-0.081372067332268]],[[0.036112114787102,0.12971174716949,0.098652511835098],[-0.087489284574986,0.0090243648737669,-0.00044898837222718],[0.011321446858346,-0.062563449144363,-0.077206276357174]],[[-0.075027853250504,-0.084402091801167,-0.14921300113201],[-0.038808416575193,-0.022834215313196,-0.079189747571945],[0.016442168504,-0.0040487637743354,-0.0857278034091]]],[[[-0.013534596189857,-0.050164230167866,0.025613754987717],[0.058232959359884,-0.01104835793376,0.037153489887714],[-0.013168410398066,0.041047681123018,-0.03003160096705]],[[-0.033244755119085,-0.040465068072081,-0.077853284776211],[-0.014423793181777,-0.0058517693541944,0.057954732328653],[0.018441841006279,0.014513713307679,-0.05521908774972]],[[0.050055388361216,-0.025899430736899,0.022233907133341],[-0.039917837828398,-0.071012198925018,-0.023419378325343],[-0.041402079164982,-0.027055388316512,-0.0053420602343976]],[[0.047446511685848,0.052513752132654,-0.1078033670783],[-0.070945180952549,0.036929968744516,0.035395495593548],[-8.1223857705481e-05,-0.057532045990229,0.020879557356238]],[[0.013170224614441,-0.029759665951133,-0.030924657359719],[-0.077264755964279,0.045394759625196,-0.037542581558228],[-0.0017474315827712,0.042866066098213,-0.094442419707775]],[[0.027005359530449,0.050863105803728,0.013752616010606],[-0.027201775461435,0.065311588346958,-0.03514363989234],[0.044305555522442,0.024542214348912,0.0084682526066899]],[[0.0015592300333083,0.024095600470901,0.079369008541107],[-0.02089049294591,0.039049170911312,-0.0035863628145307],[-0.048150438815355,0.011930732056499,-0.012212567962706]],[[0.04956879094243,0.032574910670519,0.014236135408282],[-0.01494462788105,0.011820806190372,0.034063581377268],[0.0011266281362623,0.021618578583002,-0.084878861904144]],[[0.046343602240086,0.054187305271626,0.015828786417842],[0.016215672716498,0.060726955533028,0.017052132636309],[-0.067363157868385,-0.034816555678844,-0.03559822961688]],[[-0.056008156388998,0.021068660542369,-0.03410691767931],[0.0043349983170629,0.049004249274731,0.029164578765631],[-0.021862516179681,-0.04491638764739,0.0032380577176809]],[[0.047776728868484,-0.063092097640038,0.034958299249411],[-0.094927348196507,-0.0018434060038999,-0.026975374668837],[0.0083942916244268,0.029144182801247,-0.03457222878933]],[[0.015805177390575,0.01873829588294,0.05534091591835],[0.12054324895144,0.052540514618158,0.053704243153334],[0.02660721167922,0.0011662481119856,-0.0046432623639703]],[[0.051316238939762,0.023365681990981,0.053800653666258],[-0.0044011399149895,0.083323642611504,0.036100514233112],[0.025927595794201,-0.049562431871891,-0.0018599798204377]],[[-0.038055796176195,-0.020919235423207,-0.022244827821851],[-0.035915575921535,0.073283918201923,-0.099912531673908],[0.051212519407272,-0.013315349817276,3.6357188946567e-05]],[[-0.028036594390869,-0.074527345597744,-0.048342939466238],[0.0078470464795828,-0.040282171219587,0.068641409277916],[0.069179937243462,0.014989023096859,0.010993993841112]],[[-0.01458871550858,-0.075300559401512,-0.040444597601891],[-0.011531142517924,0.00086222577374429,0.036699846386909],[-0.0072364252991974,0.027521945536137,-0.091114714741707]],[[0.030575847253203,0.062970079481602,-0.055149424821138],[-0.011597677133977,-0.066098228096962,-6.9338027969934e-05],[-0.060372162610292,-0.040644589811563,-0.010545969940722]],[[0.022410530596972,-0.01950217038393,0.046821143478155],[0.016234392300248,-0.029876004904509,0.015477383509278],[0.044853832572699,-0.10127909481525,-0.044372279196978]],[[0.047607660293579,-0.056463543325663,-0.051866315305233],[-0.040064200758934,-0.013056189753115,0.017740525305271],[-0.027280654758215,-0.063205160200596,0.056575793772936]],[[0.045767318457365,-0.012206180021167,0.030000096186996],[0.0012846129247919,0.035978619009256,0.078275069594383],[-0.031178656965494,-0.036972600966692,-0.053154654800892]],[[-0.037548147141933,-0.07383980602026,0.040574409067631],[-0.053051885217428,0.072811760008335,-0.031976241618395],[0.0015187219250947,-0.061206307262182,0.05672175437212]],[[0.0071194223128259,-0.0043763117864728,-0.010271149687469],[0.046780131757259,0.11436029523611,0.058501005172729],[-0.058152049779892,0.04052709788084,-0.005077273119241]],[[0.0095851859077811,-0.057646345347166,0.034108765423298],[0.019199034199119,0.049945931881666,0.10251956433058],[0.00092225288972259,-0.035260077565908,-0.046085581183434]],[[0.041400752961636,-0.046453449875116,0.040140230208635],[-0.061345614492893,-0.072468899190426,-0.013598056510091],[0.026608424261212,-0.079436436295509,-0.071297653019428]],[[0.088899806141853,-0.088556744158268,0.013943845406175],[0.038183815777302,0.06759787350893,-0.081040218472481],[0.03296722471714,0.054471969604492,0.066925339400768]],[[0.036004595458508,-0.017507096752524,0.027593212202191],[0.029844658449292,0.037201710045338,-0.013431904837489],[-0.041719816625118,-0.039419539272785,-0.075844094157219]],[[0.01756945066154,-0.010785356163979,0.028594279661775],[0.039818774908781,-0.010952915064991,-0.024474255740643],[0.02805413864553,-0.032018590718508,0.011575532145798]],[[0.043299529701471,0.10318651795387,0.071853868663311],[0.043163321912289,0.0048600933514535,-0.029724920168519],[-0.050246242433786,-0.0013894804287702,0.043900240212679]],[[-0.0072231446392834,0.0069334260188043,0.084777638316154],[0.0056899366900325,-0.022980300709605,-0.04757022112608],[-0.049491830170155,0.019590057432652,-0.0035725980997086]],[[-0.013317516073585,-0.018258199095726,-0.022496828809381],[-0.0060876053757966,-0.014704954810441,0.034569375216961],[0.029410069808364,0.020298464223742,0.015332772396505]],[[-0.02514486014843,-0.032657884061337,0.05651942640543],[0.021040555089712,-0.030770182609558,0.016830679029226],[0.056909453123808,0.021469172090292,0.030750773847103]],[[0.019292488694191,0.023802474141121,0.066648051142693],[-0.059921368956566,-0.012870439328253,-0.066946409642696],[0.040218211710453,-0.013499102555215,-0.089056566357613]],[[-0.004051020834595,0.03442196175456,0.035643611103296],[0.036661494523287,0.0039693545550108,-0.01906356215477],[0.075051732361317,0.0351289100945,-0.041474062949419]],[[-0.014764663763344,-0.046645626425743,-0.040229476988316],[-0.019120972603559,-0.006043020170182,-0.012674308381975],[0.047040563076735,0.025585940107703,0.014011517167091]],[[0.051530338823795,0.014280069619417,0.00065371952950954],[0.059063423424959,0.046998560428619,0.058690447360277],[-0.08079931139946,0.013313620351255,-0.040451999753714]],[[-0.050277758389711,0.022333908826113,-0.010532372631133],[0.04795790836215,-0.038151506334543,-0.02581531740725],[0.032092712819576,0.043710015714169,-0.011769607663155]],[[0.0079015959054232,-0.055841539055109,-0.036082964390516],[0.050553034991026,-0.075510986149311,-0.0063369935378432],[0.0042296987958252,0.041725136339664,-0.0075158844701946]],[[-0.075707487761974,0.028577597811818,-0.020111775025725],[-0.050891637802124,-0.11090497672558,0.013743312098086],[0.036199897527695,0.03099611774087,-0.0054819220677018]],[[-0.0036210597027093,-0.049970678985119,0.03207178786397],[0.019546227529645,0.027098326012492,-0.022946948185563],[-0.038790229707956,-0.0099054165184498,0.0012605867814273]],[[-0.064881436526775,0.020381156355143,-0.026916181668639],[0.027416117489338,-0.026460727676749,0.035061411559582],[0.070779487490654,-0.041313502937555,-0.031568922102451]],[[0.0075179431587458,0.025577113032341,-0.0048033823259175],[-0.04144636169076,-0.011258704587817,-0.027344323694706],[0.076039418578148,-0.0052245524711907,0.041660916060209]],[[-0.016482124105096,0.017852790653706,-0.027844177559018],[0.0054175951518118,0.016885498538613,0.03869217261672],[-0.014111476950347,0.025189001113176,-0.0091211162507534]],[[-0.066333763301373,0.012024085968733,-0.0047472752630711],[0.03450994938612,-0.02592652104795,-0.0055857766419649],[-0.015554619021714,0.065181739628315,-0.064870096743107]],[[-0.037620630115271,-0.014281435869634,0.0055142631754279],[0.03187557682395,-0.080182440578938,-0.03378052264452],[-0.0093529131263494,-0.041142463684082,-0.051622483879328]],[[-0.018419828265905,0.043675746768713,-0.01179816480726],[0.00095235806657001,0.015698742121458,-0.024577528238297],[0.063454128801823,0.046376649290323,0.11804594099522]],[[-0.12176614999771,0.011478302069008,-0.078490562736988],[0.0018766495632008,0.0013136480702087,0.016849249601364],[-0.0109938737005,0.011809128336608,-0.021993815898895]],[[-0.052138462662697,0.057336114346981,-0.083779074251652],[-0.046925880014896,-0.014912565238774,-0.0079761072993279],[-0.029353583231568,0.062771409749985,0.02951374463737]],[[0.029563212767243,-0.094764269888401,0.085104405879974],[-0.0026207659393549,-0.0068034832365811,-0.0088447909802198],[0.039629224687815,0.055534958839417,-0.044902216643095]],[[-0.033722378313541,-0.010615115985274,0.067098632454872],[-0.0085420403629541,-0.10279341042042,0.031380172818899],[0.034521639347076,0.035991471260786,0.004100407473743]],[[-0.012843066826463,-0.014543810859323,-0.014161479659379],[-0.036041684448719,-0.00058050232473761,0.042245205491781],[0.040835000574589,0.017777619883418,-0.027900099754333]],[[-0.024543145671487,0.056380081921816,-0.0702009126544],[-0.031416542828083,-0.09271402657032,-0.040509164333344],[0.073095366358757,0.05137899890542,-0.01061449572444]],[[0.0099397143349051,0.011330436915159,0.042758788913488],[-0.0015585474902764,-0.016683932393789,0.019564144313335],[0.04047804698348,-0.0079045575112104,0.021948024630547]],[[-0.03662807866931,-0.048464819788933,-0.066649287939072],[-0.037723727524281,-0.027622478082776,-0.015399144031107],[-0.013501027598977,-0.029333621263504,0.015363151207566]],[[-0.0488834194839,-0.017016617581248,0.015703096985817],[-0.042699120938778,0.025152713060379,-0.0062268902547657],[0.0063070980831981,0.032411236315966,0.061561085283756]],[[0.038065426051617,0.029801653698087,0.01225892920047],[-0.063833557069302,-0.012445864267647,-0.092499420046806],[-0.07099162787199,0.0027125622145832,-0.014402023516595]],[[0.029831063002348,0.045158453285694,0.088184930384159],[0.037190318107605,-0.016810534521937,-0.045283824205399],[0.075298696756363,-0.006621325854212,-0.011788277886808]],[[-0.034508254379034,0.074991077184677,0.0054683927446604],[0.014766618609428,0.004357764031738,-0.006568243727088],[0.0064130648970604,-0.018436830490828,-0.060206931084394]],[[0.045303385704756,0.031101871281862,-0.034245725721121],[-0.022366888821125,-0.0057382956147194,0.094864301383495],[-0.028580728918314,-0.030121501535177,-0.0074141267687082]],[[0.0023867890704423,-0.013193265534937,-0.037235230207443],[-0.013086365535855,-0.012667268514633,0.011073858477175],[0.0075781722553074,-0.019746152684093,0.077993795275688]],[[-0.0041254432871938,0.013118864968419,0.017898049205542],[-0.041498690843582,0.015132104046643,-0.06080361828208],[0.036719180643559,-0.01763909868896,0.012195048853755]],[[0.0057576377876103,0.0009100598981604,0.12851831316948],[-0.072603948414326,-0.073416136205196,0.060626201331615],[-0.16011726856232,-0.0084980893880129,0.0243622045964]],[[0.092072151601315,0.0067887390032411,-0.0029462464153767],[-0.030622702091932,-0.053233843296766,0.014786290936172],[0.020948745310307,0.0063604465685785,0.038305148482323]],[[0.026378661394119,-0.069808177649975,0.054006386548281],[0.003239358542487,0.013661233708262,-0.035060249269009],[-0.016125550493598,0.0015317352954298,0.037221118807793]],[[0.064980164170265,0.038915894925594,0.012704651802778],[-0.024692742154002,-0.021091533824801,-0.040201414376497],[0.0022531643044204,0.013540605083108,0.014624238014221]],[[-0.020502928644419,-0.066906057298183,-0.0048500089906156],[-0.0098093217238784,0.0032956555951387,-0.017034994438291],[0.022030176594853,0.072110146284103,0.049459293484688]],[[0.0065294471569359,-0.024381291121244,0.042523808777332],[0.026561062783003,-0.1104993224144,-0.054494608193636],[-0.041065771132708,0.039803862571716,-0.045467644929886]],[[-0.035261683166027,0.049870561808348,0.029121151193976],[0.056816529482603,-0.095232658088207,0.021604653447866],[-0.014802091754973,0.032272070646286,0.039265144616365]],[[0.023710381239653,0.011972880922258,0.016017092391849],[-0.082376390695572,0.012869413942099,0.067272737622261],[0.0015011462382972,0.051729705184698,0.008560081012547]],[[-0.013634667731822,0.028616361320019,0.0034416350536048],[0.0083641959354281,-0.07590052485466,0.027643585577607],[-0.061344731599092,0.056711308658123,0.087608508765697]],[[-0.029243027791381,0.014128526672721,0.00047014065785334],[-0.063619911670685,-0.04927859082818,0.044241223484278],[0.035165920853615,0.029901804402471,0.042791094630957]],[[0.0046395412646234,-0.053403716534376,-0.0090261548757553],[0.029343558475375,0.031292397528887,0.0073150796815753],[-0.01999325491488,-0.10090462863445,0.044704519212246]],[[0.0074460753239691,0.011815429665148,-0.0051896781660616],[-0.074217192828655,-0.021509705111384,0.023283580318093],[-0.0087448814883828,0.048607181757689,-0.03032991103828]],[[0.050980858504772,0.0013573457254097,0.0079738423228264],[0.054635431617498,0.092920228838921,-0.10509087890387],[-0.067396730184555,0.021016472950578,-0.012278510257602]],[[0.030989199876785,-0.0018211380811408,-0.033580899238586],[0.037158194929361,0.028266368433833,-0.047737646847963],[0.010926964692771,0.063208252191544,0.026578759774566]],[[-0.01746216788888,0.0099037764593959,0.038674641400576],[0.026507133617997,0.046020340174437,0.037098668515682],[0.13565535843372,0.025243114680052,0.021055299788713]],[[0.018154639750719,-0.018621530383825,-0.0011679833987728],[-0.050258547067642,0.11010216921568,-0.040315866470337],[-0.0088569894433022,-0.043003510683775,-0.0087954932823777]],[[-0.022218769416213,-0.017263447865844,0.065834760665894],[-0.010974625125527,0.042357254773378,-0.049271594733],[-0.01012410223484,-0.053383305668831,-0.044739317148924]],[[0.0080316988751292,0.056231867522001,0.017455713823438],[-0.032204817980528,0.0117650590837,-0.06041843816638],[-0.016581393778324,-0.022448597475886,-0.046273715794086]],[[-0.029248928651214,0.02805832028389,0.042906332761049],[0.018936276435852,0.054268889129162,-0.0078155482187867],[-0.026436811313033,-0.035307727754116,0.041644096374512]],[[0.0040660421364009,0.063073195517063,0.026531996205449],[0.081004336476326,0.028133003041148,-0.034349620342255],[0.058884784579277,0.0075518353842199,0.086912542581558]],[[0.03157339990139,-0.019860664382577,-0.0048709171824157],[-0.088453449308872,0.017252817749977,0.027592530474067],[-0.04156655818224,-0.041977871209383,-0.041810367256403]],[[-0.066863588988781,0.0052509238012135,0.01514602266252],[0.001417338848114,-0.075220830738544,0.035664733499289],[0.060350894927979,0.03638519346714,0.027191208675504]],[[0.0062583666294813,-0.078510381281376,0.062593013048172],[0.082861624658108,0.013310461305082,-0.018619948998094],[-0.009633757174015,0.030390551313758,0.029136193916202]],[[-0.036192759871483,-0.035377532243729,-0.0091958530247211],[0.016488401219249,-0.080150000751019,0.0080065056681633],[0.0087046194821596,0.031542915850878,-0.057340420782566]],[[-0.11369577050209,-0.015508229844272,0.032143205404282],[-0.011600704863667,-0.026114162057638,0.00067944737384096],[-0.060530327260494,-0.020197365432978,0.027584632858634]],[[0.0028390528168529,0.043899465352297,0.002529775025323],[0.0098149934783578,0.028719866648316,0.021497160196304],[0.025569725781679,0.029631713405252,-0.019593285396695]],[[-0.011265560984612,-0.017598604783416,0.033597536385059],[-0.043298579752445,-0.061384290456772,-0.016674015671015],[-0.0041161132976413,0.020444175228477,-0.0061241071671247]],[[-0.10302823781967,0.018975680693984,-0.0069794137962162],[0.010342430323362,0.016641084104776,0.042007803916931],[0.027971742674708,0.005704574752599,-0.0068877306766808]],[[0.039183080196381,0.032098866999149,-0.026639811694622],[-0.030666785314679,0.0047147609293461,-0.026616625487804],[-0.044849120080471,-0.034290336072445,-0.021222254261374]],[[0.095598146319389,-0.012417878955603,-0.0062585757113993],[-0.021065136417747,-0.025463158264756,-0.094080798327923],[-0.060703661292791,0.016005918383598,0.061811715364456]],[[0.021503394469619,-0.039615746587515,-0.012120445258915],[0.023124773055315,-0.062411345541477,0.030562689527869],[-0.095385335385799,-0.067151114344597,-0.018041711300611]],[[-0.0073777050711215,0.041116733103991,0.0089774848893285],[-0.045411966741085,0.005062447860837,-0.045614533126354],[0.010238749906421,-0.00032172101782635,-0.021591303870082]],[[-0.051093835383654,-0.04922704398632,-0.016719853505492],[-0.013912945985794,0.041616160422564,-0.01227712072432],[-0.039041522890329,-0.020185444504023,-0.02891637198627]],[[0.036238241940737,0.08985835313797,0.042140629142523],[0.055648319423199,-0.055177431553602,-0.040175471454859],[0.0084079084917903,0.029283540323377,0.01565158367157]],[[0.0081010665744543,0.011954453773797,-0.0046126386150718],[-0.020703183487058,-0.027886701747775,0.0072223730385303],[0.01168320607394,0.020493872463703,0.004200370516628]],[[0.083955161273479,-0.048578854650259,0.079138159751892],[0.048587877303362,0.083160147070885,-0.0098077086731791],[-0.00058380281552672,-0.067538700997829,-0.063261449337006]],[[0.040277026593685,-0.012796405702829,-0.041020791977644],[-0.00041887647239491,-0.061176612973213,-0.012538486160338],[0.0024982807226479,0.043159730732441,0.007400584872812]],[[0.050293419510126,-0.0026187603361905,-0.085017457604408],[0.025765884667635,0.089768595993519,0.0047465753741562],[-0.054015014320612,0.0091533791273832,-0.018498132005334]],[[0.090299651026726,0.02722916379571,0.028649371117353],[-0.022612506523728,-0.067951641976833,0.0046648280695081],[-0.021040454506874,-0.018801644444466,0.0042600627057254]],[[0.00040757298120297,-0.084267780184746,-0.042332541197538],[0.026009345427155,0.058018546551466,-0.014281446114182],[0.023867275565863,-0.035647928714752,-0.015664611011744]],[[-0.0060965572483838,0.046277590095997,-0.040445320308208],[-0.051985364407301,-0.090492121875286,-0.066318579018116],[-0.033364254981279,0.0064355782233179,-0.032039023935795]],[[-0.019398521631956,0.089584298431873,-0.11192681640387],[0.018261585384607,0.058112226426601,-0.0088076060637832],[0.048916231840849,0.019619857892394,-0.016138933598995]],[[0.020065711811185,0.036612570285797,0.027730090543628],[-0.070368394255638,0.0094746937975287,-0.013756534084678],[0.034103069454432,-0.091519452631474,0.036477871239185]],[[0.0020572578068823,-0.014937634579837,0.013515598140657],[0.028093310073018,0.010901877656579,0.051070749759674],[-0.055007990449667,0.012358935549855,-0.073213063180447]],[[0.024244813248515,-0.017040643841028,0.00091072235954925],[-0.059531427919865,0.021338125690818,-0.012999598868191],[-0.063438147306442,-0.037439852952957,0.048812016844749]],[[-0.0048259282484651,-0.035522691905499,0.032774087041616],[0.013307151384652,-0.022028632462025,0.033806581050158],[-0.0054827029816806,-0.021688615903258,-0.023897524923086]],[[0.060421288013458,-0.0097722467035055,-0.02062825858593],[-0.000747911632061,0.038327142596245,-0.028202157467604],[-0.041525200009346,-0.047243639826775,-0.038328986614943]],[[-0.064253032207489,-0.082251653075218,0.00568569265306],[-0.021340727806091,0.0090006971731782,-0.028230622410774],[0.010577470064163,0.018279647454619,-0.0034943644423038]],[[0.042421150952578,0.035091113299131,-0.025119481608272],[-0.004794055595994,0.048761453479528,0.0030619562603533],[-0.0286700502038,-0.089224457740784,0.013775648549199]],[[-0.024525877088308,-0.030274704098701,-0.0098210172727704],[0.027752675116062,-0.016172779724002,-0.017081435769796],[-0.090153843164444,0.029723262414336,0.055149208754301]],[[0.024417988955975,0.051302172243595,0.037470355629921],[0.026326034218073,0.048809122294188,0.0030932810623199],[0.055632792413235,-0.039041146636009,-0.001447930932045]],[[0.0095079988241196,0.033823452889919,0.026950389146805],[-0.0087989252060652,0.028806252405047,0.029619934037328],[0.033650733530521,0.10364453494549,-0.021511042490602]],[[-0.058867499232292,-0.068199470639229,0.037916041910648],[0.090429738163948,0.013801493681967,0.0024104139301926],[-0.0020746842492372,-0.035138141363859,-0.0033306907862425]],[[-0.068462237715721,0.07585459202528,-0.068269953131676],[0.094651408493519,-0.034329805523157,0.024015381932259],[-0.029064944013953,0.050493780523539,-0.076418533921242]],[[-0.037892814725637,0.016972299665213,0.0083976350724697],[-0.044644765555859,-0.020334780216217,-0.017304228618741],[-0.053781047463417,0.027832467108965,-0.028674948960543]],[[0.035589467734098,0.077115476131439,0.087421216070652],[0.000556543644052,-0.060721639543772,-0.045204717665911],[0.027009295299649,-0.0062941275537014,0.053434543311596]],[[0.013282340019941,0.068913698196411,-0.0067425114102662],[-0.09797964990139,-0.0094361137598753,-0.020013991743326],[0.04107404127717,-0.040179472416639,0.053164716809988]],[[-0.036446701735258,-0.083122953772545,-0.032421942800283],[-0.0028233830817044,-0.02487320266664,-0.013880357146263],[-0.010018701665103,-0.035318315029144,0.0091295083984733]],[[0.048222728073597,0.059333447366953,-0.00652567576617],[0.036686223000288,-0.071618407964706,-0.043452419340611],[-0.13066485524178,-0.012206352315843,0.00059275951934978]],[[-0.0049329735338688,0.007725739851594,-0.044805124402046],[-0.026758657768369,0.0016140601364896,-0.0017692239489406],[-0.0038893993478268,0.010367471724749,-0.03759727627039]],[[-0.081250704824924,-0.032034110277891,-0.013761986047029],[-0.041758511215448,-0.00012888667697553,-0.029243122786283],[0.002255322644487,0.028362648561597,0.0067096729762852]],[[0.015526582486928,0.025450700893998,-0.021111827343702],[0.11353121697903,-0.021020855754614,0.011069169268012],[-0.0043800626881421,0.070321388542652,-0.041150387376547]],[[-0.03110484033823,0.055951528251171,0.060570895671844],[0.029358403757215,-0.015611107461154,0.047312531620264],[0.009575909934938,0.026314873248339,0.040136333554983]],[[-0.064849369227886,0.0045908764004707,-0.012910074554384],[0.020660517737269,-0.06815842539072,-0.015930455178022],[-0.0021334949415177,-0.097635298967361,0.020098805427551]],[[-0.010573321022093,0.021290961652994,-0.062886580824852],[-0.016254466027021,0.079852655529976,-0.0076521351002157],[0.019215265288949,0.0024255299940705,0.0059002484194934]],[[-0.0060407035052776,-0.052889499813318,0.075404159724712],[0.064875580370426,-0.018519472330809,0.0096444981172681],[-0.012384865432978,0.0087334578856826,-0.011671613901854]],[[-0.029524210840464,0.024238891899586,-0.012713545002043],[-0.021223751828074,0.016187762841582,-0.0096589149907231],[-0.045261323451996,0.04973828420043,-0.024024914950132]],[[-0.021172421053052,0.037392359226942,-0.011975523084402],[-0.042059142142534,0.0079064350575209,-0.023704683408141],[0.0078422334045172,0.036405108869076,0.027186965569854]]],[[[-0.052054591476917,-0.032260216772556,0.059430807828903],[-0.0099726729094982,-0.039197973906994,0.044108703732491],[0.048819433897734,-0.0068387784995139,0.014015506953001]],[[0.035960126668215,-0.050820663571358,-0.020830092951655],[-0.01901233009994,-0.0026695800479501,0.022031802684069],[-0.04154696315527,0.0013932435540482,0.019510416314006]],[[-0.030044883489609,-0.04613421112299,-0.06550394743681],[0.10862965881824,-0.024156559258699,0.00049928930820897],[0.025078499689698,0.047362636774778,0.14628714323044]],[[-0.086998142302036,0.017478220164776,0.04015913233161],[-0.05944599211216,-0.0090098166838288,-0.032340865582228],[0.00051838014042005,-0.029357010498643,0.039106603711843]],[[0.014456512406468,0.049721736460924,-0.028515880927444],[0.032174132764339,-0.0012885053874925,-0.051511600613594],[-0.019293880090117,0.048422537744045,-0.066440559923649]],[[0.077980488538742,0.0024818039964885,0.010249897837639],[-0.008877957239747,-0.016575949266553,0.021783651784062],[0.052966613322496,-0.026840860024095,0.06837422400713]],[[-0.016878690570593,0.035591080784798,0.069198802113533],[-0.14891986548901,0.032477207481861,0.031924799084663],[-0.0014061933616176,-0.012629964388907,0.12979477643967]],[[0.076371058821678,-0.02062738314271,-0.034048486500978],[0.017922054976225,0.067055284976959,0.083818227052689],[-0.02023577131331,-0.017806930467486,0.011772253550589]],[[-0.029010949656367,-0.12567268311977,0.038031611591578],[-0.023547176271677,-0.043430898338556,-0.033156424760818],[-0.025546617805958,0.0056890095584095,-0.016954753547907]],[[0.040310513228178,-0.046420402824879,-0.00088979420252144],[0.0062761064618826,0.041830781847239,-0.0097377160564065],[-0.078820630908012,0.034494668245316,-0.04607480019331]],[[-0.0055088149383664,0.012016925960779,-0.063492864370346],[0.01654851436615,-0.043506171554327,0.064992003142834],[-0.016907311975956,0.0031018808949739,-0.050509553402662]],[[-0.041174773126841,-0.0040028453804553,-0.027895448729396],[-0.021445356309414,0.028378522023559,-0.045827329158783],[0.004153186455369,-0.055508106946945,-0.0060467356815934]],[[0.10014731436968,0.046352233737707,0.010740150697529],[-0.011098544113338,-0.11449389904737,0.061734188348055],[0.083849869668484,0.017234710976481,0.079568535089493]],[[0.046817272901535,0.013578073121607,-0.021956142038107],[-0.014168925583363,-0.024096483364701,0.010715846903622],[0.0037594581954181,0.13654686510563,0.028446020558476]],[[0.0068477890454233,-0.076421238481998,0.025184923782945],[-0.015903750434518,-0.024190474301577,-0.030115405097604],[0.025652833282948,0.081117555499077,0.0092774527147412]],[[0.065839722752571,0.028725415468216,-0.0023061255924404],[-0.045909944921732,0.027237299829721,0.022162575274706],[0.06137578189373,-0.06054811924696,0.074796818196774]],[[0.049447789788246,-0.044069327414036,0.060124766081572],[0.0053700255230069,0.076131604611874,-0.12750189006329],[-0.010434309020638,0.039420284330845,-0.0069928644225001]],[[0.060275867581367,0.043259970843792,0.05595438554883],[0.0096352770924568,-0.02708725631237,-0.018174236640334],[-0.04511746391654,-0.0093113677576184,0.0050410600379109]],[[-0.042923152446747,0.041720438748598,-0.048012491315603],[0.059676583856344,8.7866115791257e-05,0.042387515306473],[0.07313284277916,-0.013836779631674,0.028994586318731]],[[-0.017986780032516,0.098220437765121,-0.0020407524425536],[0.0065914699807763,0.012954710051417,0.019976623356342],[0.060352526605129,0.0088254194706678,0.029820322990417]],[[-0.072215773165226,-0.0076257069595158,0.059618063271046],[-0.012599671259522,-0.014433595351875,0.065462037920952],[-0.043596986681223,-0.054695207625628,-0.020264131948352]],[[-0.01431196834892,-0.026750229299068,-0.043533124029636],[-0.014820438809693,0.033377133309841,0.024367453530431],[0.059413198381662,0.042950287461281,0.0023260749876499]],[[-0.018652884289622,-0.0021964199841022,0.07313460111618],[-0.019091596826911,0.011493131518364,-0.00072219071444124],[0.032724775373936,-0.018138520419598,-0.0645991563797]],[[-0.065876789391041,-0.011844313703477,-0.036911852657795],[-0.028124768286943,0.0068746493197978,0.018823122605681],[0.041757415980101,0.011424670927227,-0.0091953380033374]],[[-0.027279576286674,0.0016055076848716,0.047124937176704],[-0.053507354110479,-0.05509564653039,-0.022988630458713],[0.011972028762102,0.052420366555452,0.032142668962479]],[[0.027714805677533,-0.019409086555243,0.028020272031426],[-0.065198183059692,0.039359144866467,0.07045815885067],[0.054714635014534,0.014110308140516,0.03510582074523]],[[-0.097683809697628,-0.052514169365168,-0.02825640887022],[0.025933936238289,0.11616054922342,0.040788680315018],[0.02609546855092,-0.030351521447301,-0.054175850003958]],[[-0.031042985618114,0.023820141330361,0.026608990505338],[0.0091796517372131,0.0025598786305636,-0.016388865187764],[0.036638129502535,-0.059234578162432,-0.07976520806551]],[[-0.00013314870011527,0.029618427157402,-0.043027333915234],[-0.083417117595673,0.080781295895576,0.003398914122954],[0.017154091969132,0.025696104392409,-0.042321775108576]],[[-0.085346713662148,0.046496503055096,0.025747265666723],[0.013962629251182,-0.10115500539541,0.028999019414186],[-0.036462195217609,-0.056642923504114,0.048562906682491]],[[0.0018881008727476,-0.0035500708036125,-0.045586075633764],[0.028170106932521,-0.0074704047292471,0.021818852052093],[0.019987815991044,-0.013194292783737,0.046327386051416]],[[0.089281193912029,-0.036142196506262,-0.0016819710144773],[-0.0060852617025375,-0.067434899508953,-0.030570887029171],[0.060686808079481,-0.041337713599205,-0.0033025594893843]],[[-0.005883299279958,-0.016637405380607,-0.059219133108854],[-0.034456424415112,-0.038420937955379,0.0027274889871478],[0.0097855823114514,-0.064027018845081,0.054790005087852]],[[0.018142081797123,0.0099602853879333,0.029751744121313],[-0.045328859239817,-0.0079988241195679,-0.018573945388198],[0.10517261922359,0.079073160886765,0.053508341312408]],[[0.060533411800861,0.018953612074256,0.0083953244611621],[0.0071576219052076,0.01402354054153,0.036815337836742],[0.046913836151361,0.017009630799294,-0.0015753549523652]],[[0.014742932282388,0.069056466221809,0.019330395385623],[-0.035543292760849,0.030403977259994,0.013550260104239],[0.042283967137337,0.030177626758814,0.067206621170044]],[[-0.061289317905903,0.045028258115053,0.015549878589809],[0.0050977976061404,0.1097693964839,-0.0069672679528594],[-0.0018858397379518,-0.019596954807639,-0.0050127077847719]],[[-0.039550203830004,0.0052257352508605,-0.010384414345026],[0.030313713476062,0.018376983702183,0.057351030409336],[-0.052343931049109,0.0016877228626981,0.017734088003635]],[[-0.0016043945215642,0.048061817884445,0.048232488334179],[-0.030262632295489,-0.038539297878742,-0.022120991721749],[-0.0094244703650475,0.061168286949396,-0.0066626574844122]],[[-0.048366095870733,0.00094647449441254,-0.06175446882844],[-0.012175777927041,-0.0080404439941049,-0.0079850386828184],[0.034262448549271,0.016720259562135,0.055200710892677]],[[-0.060490548610687,-0.002054997254163,-0.089921928942204],[0.0027627656236291,-0.02985861338675,-0.028021272271872],[0.058799244463444,0.048395272344351,-0.005676235537976]],[[-0.038366749882698,0.016899144276977,0.054892674088478],[0.030556492507458,-0.02716532163322,0.015015088021755],[0.097990326583385,0.01105260848999,0.054430261254311]],[[0.047369536012411,0.0012700139777735,0.025823313742876],[-0.031653471291065,-0.0068528088741004,0.011243688873947],[0.031863253563643,0.072410777211189,0.04224094375968]],[[-0.026932213455439,-0.012056795880198,-0.0083423191681504],[0.040933195501566,0.019270498305559,0.033326156437397],[0.10211520642042,-0.05140084028244,-0.065935030579567]],[[-0.035817608237267,-0.018515320494771,0.025107828900218],[-0.058345727622509,-0.013790319673717,0.033484127372503],[-0.0070096682757139,0.036298867315054,0.085010923445225]],[[0.0939105078578,0.010849699378014,-0.081340551376343],[0.082709349691868,0.11428936570883,-0.027567042037845],[-0.011009514331818,-0.0036548741627485,0.016474390402436]],[[-0.028058841824532,-0.012949395924807,0.072450801730156],[-0.020022531971335,-0.050577264279127,-0.021627262234688],[0.00060673872940242,-0.0027369146700948,0.10000960528851]],[[0.014846153557301,0.053079646080732,-0.046120095998049],[0.034665435552597,-0.066047914326191,-0.062191013246775],[0.1070162653923,-0.088922902941704,-0.072045058012009]],[[0.027882574126124,-0.025662632659078,0.01222647447139],[0.020167347043753,-0.039675641804934,-0.022956233471632],[0.027786750346422,-0.036151245236397,-0.011243505403399]],[[-0.032915320247412,-0.056350339204073,-0.02152899093926],[-0.055269159376621,-0.0066708540543914,0.021136848255992],[-0.051319167017937,0.062760770320892,0.11388978362083]],[[-0.064008004963398,0.0056758094578981,0.030680349096656],[-0.022781396284699,-0.0093983551487327,-0.014504517428577],[-0.00059490714920685,0.069407619535923,-0.0053671239875257]],[[0.0076770526356995,0.020055759698153,0.12787273526192],[0.036077577620745,-0.055018369108438,-0.016323266550899],[0.047913614660501,-0.04218090698123,0.0059743886813521]],[[0.028848864138126,-0.012490313500166,0.05459026992321],[0.0026433339808136,-0.07024310529232,-0.065734513103962],[-0.042345181107521,0.066597789525986,0.0049974475987256]],[[0.044859576970339,-0.042005885392427,-0.025726247578859],[0.022644588723779,0.020296901464462,0.11304999142885],[-0.079490676522255,0.0083841290324926,0.066714160144329]],[[-0.037546571344137,-0.030119055882096,0.00034268721356057],[0.025698367506266,-0.015659289434552,0.070855051279068],[0.055695556104183,-0.035056419670582,-0.045212265104055]],[[0.0357914455235,-0.06034154817462,-0.045620784163475],[0.057270020246506,0.01934852078557,0.0098173189908266],[0.02064611390233,0.019115312024951,0.056108374148607]],[[0.083714216947556,-0.010286667384207,0.00052970182150602],[0.080889843404293,0.067676462233067,0.045629799365997],[-0.021864159032702,0.043044604361057,-0.013035140000284]],[[-0.050153456628323,-0.0036160219460726,0.059871736913919],[-0.0023601928260177,-0.0062336716800928,0.03765531629324],[-0.020542053505778,0.010134883224964,0.008354976773262]],[[0.035271182656288,0.048420581966639,-0.071501202881336],[0.01373677328229,0.0030302326194942,0.0046724900603294],[0.047024883329868,0.021833753213286,-0.034396480768919]],[[0.0094143841415644,0.017121084034443,0.053651969879866],[0.048788141459227,0.021713191643357,-0.026380330324173],[0.031886089593172,0.030288811773062,0.010432280600071]],[[0.050135832279921,-0.008569460362196,-0.044877335429192],[-0.13012740015984,0.036853898316622,-0.014501247555017],[-0.069930821657181,-0.021708663552999,-0.050156123936176]],[[0.065240330994129,0.01446970552206,0.071124352514744],[0.002918632235378,-0.024033224210143,-0.036867290735245],[0.036735817790031,-0.042650830000639,-0.040540274232626]],[[-0.057873748242855,-0.015071623027325,0.024389991536736],[0.079125434160233,-0.033472720533609,0.080639056861401],[-0.061408407986164,0.05198996886611,0.023177394643426]],[[0.079389497637749,-0.060443814843893,-0.072926372289658],[-0.029257584363222,0.010770130902529,0.015855865553021],[-0.020276362076402,0.0044908015988767,0.047938987612724]],[[0.036265656352043,-0.0051454468630254,0.047213453799486],[-0.00096190063050017,0.041892323642969,0.019369119778275],[0.043433852493763,0.0010294315870851,-0.0092188306152821]],[[0.07321459800005,0.023106431588531,0.040984105318785],[0.092235058546066,0.058267671614885,0.074605964124203],[0.024109695106745,0.035483494400978,0.028362523764372]],[[0.070589229464531,0.049825001507998,-0.014723741449416],[-0.0046915463171899,-0.050439238548279,-0.026888977736235],[0.057379029691219,0.035320177674294,0.013743621297181]],[[-0.054560124874115,-0.0084357252344489,0.029523659497499],[-0.047093410044909,-0.03031605668366,-0.059891685843468],[0.027575451880693,-0.043666642159224,0.057613272219896]],[[0.12376229465008,-0.016678147017956,0.096608184278011],[-0.058547403663397,0.0098860999569297,0.082428283989429],[0.0029533174820244,0.056266501545906,0.012974904850125]],[[0.0054131965152919,-0.039358861744404,0.028681222349405],[0.080262564122677,-0.0020086956210434,0.0055256974883378],[0.0045697344467044,-0.015640195459127,0.033476080745459]],[[0.03509172424674,0.07502419501543,0.052440531551838],[0.074993468821049,0.01423385925591,0.051416635513306],[0.011430606245995,0.0078709488734603,0.015045626088977]],[[0.021425040438771,0.076586790382862,-0.0086106890812516],[-0.025614913552999,-0.042395796626806,0.0034099502954632],[-0.013406376354396,-0.082846768200397,0.041150011122227]],[[-0.021476363763213,-0.015989312902093,0.058414127677679],[0.059884905815125,-0.0052974610589445,-0.017260782420635],[0.034983098506927,-0.011219187639654,-0.022493787109852]],[[0.056722454726696,-0.0064552086405456,0.010630265809596],[-0.014807919040322,-0.027105798944831,0.042983911931515],[0.0086314976215363,-0.076610781252384,0.0021172987762839]],[[0.013091239146888,0.011132970452309,-0.013791195116937],[-0.038025911897421,-0.010846288874745,0.048521317541599],[0.02266526222229,0.099542930722237,0.065793238580227]],[[-0.035772800445557,0.0083622206002474,-0.028740936890244],[0.0086482558399439,-0.0097252810373902,-0.023014826700091],[-0.037477668374777,-0.021948158740997,0.019193882122636]],[[0.077550381422043,0.028768163174391,0.043392479419708],[-0.029563125222921,-0.051016572862864,-0.0070939622819424],[-0.043904211372137,-0.014391624368727,0.010121532715857]],[[-0.019871091470122,0.093834303319454,0.016137244179845],[0.095017567276955,0.060814533382654,0.029164552688599],[-0.018026646226645,0.033026408404112,0.075975842773914]],[[0.026565939188004,-0.033530905842781,0.021858939900994],[0.06016168743372,0.027998212724924,-0.023587832227349],[-0.0015554734272882,0.033598601818085,-0.093415595591068]],[[0.038758788257837,0.031610928475857,0.031228885054588],[0.031403079628944,0.05012484267354,-0.065942421555519],[-0.034644681960344,0.037060339003801,0.10531140863895]],[[0.032030019909143,0.016146576032043,-0.018668489530683],[-0.00030773822800256,0.027083357796073,-0.010538422502577],[-0.00045196211431175,0.02177026309073,-0.025003913789988]],[[-0.13228623569012,-0.021931691095233,-0.032585352659225],[-0.035877235233784,0.0093795666471124,0.056246422231197],[0.025281364098191,0.050032205879688,0.038973238319159]],[[0.06140698119998,-0.038859665393829,0.036800105124712],[-0.0057587833143771,-0.022413104772568,-0.040647700428963],[0.12447698414326,-0.062449112534523,0.037093687802553]],[[-0.00010158825898543,-0.027869950979948,-0.0015138712478802],[0.066270999610424,0.10340990126133,-0.026032572612166],[-0.018055822700262,0.039817053824663,0.084349945187569]],[[0.10313416272402,0.023295508697629,-0.049233615398407],[-0.072337977588177,0.055094670504332,0.076064340770245],[-0.032936975359917,0.039063073694706,0.025234406813979]],[[0.019625732675195,-0.040084965527058,-0.061765637248755],[0.003353686304763,0.050752442330122,-0.03050190769136],[-0.029735798016191,0.072768419981003,0.0017806633841246]],[[0.054856728762388,0.078579291701317,-0.0081955092027783],[0.076501555740833,0.033806651830673,-0.0018064613686875],[-0.0055134873837233,0.045182354748249,0.046364367008209]],[[0.018610937520862,0.058843098580837,-0.010348029434681],[0.022016180679202,0.029196806252003,0.026504451408982],[-0.061058208346367,-0.022790037095547,0.0099064707756042]],[[0.014996364712715,0.043657090514898,0.0076479408890009],[-0.028110738843679,-0.040832415223122,0.042519208043814],[0.032162562012672,-0.037481430917978,0.033141475170851]],[[-0.023377196863294,0.049257382750511,-0.047370206564665],[0.12336145341396,-0.014958279207349,0.0023995856754482],[0.030096460133791,-0.028368404135108,-0.04785342887044]],[[-0.041262544691563,0.0065648518502712,0.085215270519257],[0.00026487134164199,0.011500022374094,0.0048805437982082],[-0.02486358396709,-0.02943279966712,0.0074421064928174]],[[0.045286182314157,0.0014678360894322,-0.030956344678998],[-0.015157667919993,-0.032159857451916,0.0077516194432974],[-0.091115616261959,-0.011501836590469,-0.02510922215879]],[[-0.063722364604473,0.020785940811038,-0.0096469521522522],[-0.037970554083586,0.017450733110309,-0.043404918164015],[-0.034348633140326,0.024387914687395,-0.0068415561690927]],[[0.11287614703178,0.012751416303217,-0.022915048524737],[0.040872067213058,-0.031196290627122,-0.032581977546215],[0.037704478949308,0.046489100903273,0.019182473421097]],[[0.0098957717418671,-0.0049702594988048,0.0063385856337845],[-0.073149345815182,0.0042065735906363,-0.0046690772287548],[0.096058249473572,-0.12371079623699,0.0039853104390204]],[[0.0069541032426059,-0.033517114818096,-0.021930089220405],[0.00033729479764588,0.00065175461350009,-0.010932385921478],[0.028474375605583,0.019215965643525,0.022986009716988]],[[0.088802516460419,0.019806519150734,-0.018573112785816],[0.019081711769104,-0.01911317370832,0.012263827957213],[-0.04300507158041,0.045238628983498,-0.040920708328485]],[[0.067500606179237,-0.0043535381555557,-0.0055753942579031],[-0.03071092069149,0.0076552350074053,0.0046328869648278],[0.056185711175203,0.015542042441666,0.055992104113102]],[[0.040646977722645,0.063592806458473,0.016525164246559],[-0.054974038153887,0.00434515113011,-0.0098663503304124],[0.0028333077207208,-0.046353582292795,-0.033418331295252]],[[-0.035810086876154,0.02759070135653,0.12397937476635],[-0.0014499280368909,0.026612248271704,-0.008415600284934],[0.0088984062895179,0.0022877459414303,0.034480184316635]],[[0.03341094776988,0.04889615252614,-0.024997809901834],[0.043388236314058,-0.020975846797228,-0.026537127792835],[0.085525199770927,-0.0022748445626348,0.019680343568325]],[[-0.070559412240982,-0.024558754637837,0.00453200051561],[0.027784610167146,-0.020419431850314,-0.050704043358564],[0.054258368909359,-0.047214306890965,0.0090708043426275]],[[0.015937523916364,-0.037318270653486,0.0021462780423462],[0.0054634194821119,0.0025931575801224,0.00057392509188503],[0.00095891661476344,-0.003175831399858,0.013546735979617]],[[-0.05596062541008,-0.031284980475903,-0.044975332915783],[-0.0066218380816281,-0.055265109986067,0.0095865968614817],[0.0030056892428547,-0.067613832652569,-0.046925593167543]],[[0.053387083113194,0.076590783894062,0.0013374967966229],[-0.0040859687142074,0.075409196317196,-0.042224235832691],[0.043699257075787,0.042367808520794,-0.084834523499012]],[[-0.051142673939466,-0.052659891545773,0.068937987089157],[-0.0045060263946652,0.045743845403194,-0.027123177424073],[0.046402588486671,0.042808998376131,0.07474722713232]],[[0.017807358875871,-0.021021276712418,0.024248601868749],[0.070451110601425,-0.0042196186259389,0.017299331724644],[0.05799650773406,0.072318248450756,0.095048747956753]],[[-0.060657851397991,0.04611337557435,0.080438271164894],[-0.042677752673626,-0.025098018348217,-0.01485744304955],[0.062302846461535,-0.0020062804687768,0.01009448710829]],[[0.0043602497316897,0.037633158266544,-0.008533887565136],[0.060296773910522,-0.011371355503798,-0.029164249077439],[0.077065534889698,-0.02589437738061,0.034422248601913]],[[0.027415227144957,-0.0019690284971148,0.040040340274572],[-0.00529202260077,-0.0011604302562773,0.038371507078409],[-0.014285313896835,0.0019367672502995,0.0049913818947971]],[[0.030142191797495,0.062200389802456,-0.050911072641611],[-0.026178548112512,-0.02895649895072,0.026104938238859],[-0.018099393695593,-0.0084815295413136,0.017863985151052]],[[0.013459918089211,0.028709448873997,-0.090351514518261],[-0.04527310654521,0.012404640205204,0.016453616321087],[0.029757015407085,-0.036486849188805,0.038994982838631]],[[-0.083516962826252,-0.047801285982132,-0.050602972507477],[-0.0085987970232964,-0.019217109307647,-0.017310874536633],[-0.086547531187534,-0.028328828513622,0.020571233704686]],[[0.0085318898782134,-0.042970325797796,-0.030757775530219],[-0.036950565874577,-0.065771110355854,-0.020974151790142],[-0.040151339024305,-0.047347117215395,0.0091242045164108]],[[-0.00076137203723192,-0.012222283519804,0.0047601209953427],[0.0081680985167623,-0.020560031756759,0.032104443758726],[0.041875049471855,-0.0031067780219018,-0.058410972356796]],[[-0.015808513388038,-0.033044822514057,-0.038548689335585],[0.028415840119123,-0.088446564972401,-0.009613623842597],[-0.0022869664244354,-0.049289416521788,0.053472351282835]],[[-0.032670229673386,0.10891410708427,0.010595162399113],[-0.0017346238018945,0.022263681516051,-0.013719981536269],[-0.073426552116871,0.074496611952782,0.014771929010749]],[[-0.012343388982117,-0.011852418072522,0.010465598665178],[0.012972839176655,0.06153579801321,-0.051687814295292],[-0.039381325244904,-0.026125749573112,-0.00038832452264614]],[[-0.053797382861376,-0.10068412125111,-0.07512678951025],[-0.0054208138026297,0.015401623211801,0.054003354161978],[-0.063036516308784,-0.01798883639276,-0.057774037122726]],[[-0.022948086261749,0.081957504153252,0.040783919394016],[-0.039687290787697,0.050781417638063,-0.019864790141582],[0.058107871562243,0.15054050087929,-0.047788869589567]],[[-0.02560499869287,0.026427770033479,-0.0064830905757844],[0.032601594924927,-0.032490212470293,-0.041305914521217],[-0.0048523205332458,-0.01848778873682,0.011905202642083]],[[-0.026047976687551,-0.046106237918139,0.017373569309711],[-0.023139145225286,0.0028049058746547,-0.033368822187185],[0.0098207369446754,-0.050929881632328,0.070648677647114]],[[0.043638367205858,0.00471011409536,-0.030371641740203],[-0.020246392115951,0.014118488878012,0.024439536035061],[-0.050899147987366,0.0027064338792115,-0.02033756300807]],[[0.032336417585611,-0.024359663948417,-0.015174384228885],[0.020302753895521,-0.038014799356461,-0.010557853616774],[-0.0066843843087554,-0.0084304390475154,-0.086341850459576]],[[0.00033045629970729,-0.024231737479568,-0.0074393409304321],[0.043860550969839,-0.0067781344987452,0.036075953394175],[-0.0080230804160237,0.057719796895981,-0.071273982524872]],[[-0.0060855099000037,0.018324436619878,-0.025293234735727],[-0.036473665386438,-0.00017365871462971,-0.029360990971327],[-0.050914574414492,0.046179849654436,-0.0021556762512773]],[[0.037373077124357,0.019068036228418,0.0058563966304064],[0.067404702305794,8.7105960119516e-05,-0.049929335713387],[-0.028526578098536,-0.013060703873634,-0.0058779618702829]],[[-0.010949579998851,0.023855706676841,-0.033016119152308],[0.084518633782864,0.067504748702049,-0.084644138813019],[0.019683191552758,0.0058327876031399,-0.056070420891047]]],[[[-0.030116502195597,0.0027167724911124,0.040804445743561],[-0.039042022079229,-0.0051484652794898,0.012852613814175],[-0.0049856100231409,0.0027668478433043,-0.01980965398252]],[[0.057184621691704,-0.003621659707278,-0.024004312232137],[-0.087308034300804,0.032237824052572,-0.01396245136857],[-0.032289702445269,-0.028267454355955,0.005940938834101]],[[-0.010089742951095,0.042576961219311,0.093272604048252],[-0.0022369613870978,0.042321272194386,-0.0074591161683202],[-0.033726412802935,-0.0059825549833477,0.058646015822887]],[[-0.040964085608721,0.075800508260727,0.044942978769541],[-0.014882523566484,-0.023513777181506,-0.010472430847585],[-0.035918544977903,0.051855627447367,-0.008599397726357]],[[0.016555638983846,0.013322927057743,0.072464697062969],[-0.0094239600002766,-0.012051034718752,0.0037952638231218],[0.11329484730959,-0.021541435271502,0.017333175987005]],[[0.040962617844343,0.048254169523716,0.015016818419099],[0.024393040686846,-0.00031960714841262,-0.02748554572463],[-0.016949905082583,0.01958841830492,0.011650976724923]],[[0.046397943049669,-0.012966119684279,0.026861842721701],[0.011003255844116,0.019188791513443,0.066121086478233],[0.030466234311461,0.0017026826972142,0.044023439288139]],[[0.18213441967964,0.026144845411181,-0.01232395786792],[-0.0088045811280608,-0.035482611507177,0.064016617834568],[-0.010916016064584,-0.013377488590777,-0.022539867088199]],[[0.091327957808971,0.011549465358257,0.080799154937267],[0.008699961937964,-0.031272996217012,0.087734661996365],[0.05332001298666,0.017070386558771,0.026160210371017]],[[0.072262123227119,-0.027985904365778,0.035573419183493],[-0.018597364425659,0.0033784555271268,0.024032458662987],[0.040171541273594,0.0075036138296127,-0.010862362571061]],[[0.0018622950883582,-0.032983113080263,-0.019281243905425],[-0.034189946949482,0.014358518645167,-0.0070539866574109],[0.029470559209585,0.0397919267416,-0.0034174534957856]],[[-0.011578530073166,0.0017869175644591,0.035967197269201],[-0.036727819591761,-0.012357360683382,0.076160661876202],[0.012712330557406,0.053817082196474,-0.047533750534058]],[[0.052360933274031,-0.0039181336760521,-0.0086206560954452],[-0.0012267207494006,0.030373333021998,0.018442798405886],[0.094101816415787,0.030170334503055,0.096692271530628]],[[0.04514204710722,0.0085800951346755,-0.0084118088707328],[-0.03808132186532,0.035205107182264,0.01900202780962],[0.10462142527103,-0.024890840053558,-0.014210735447705]],[[0.0096111986786127,0.038943067193031,-0.011967081576586],[0.0091989878565073,-0.0031668667215854,-0.033374361693859],[0.0060224020853639,-0.021096207201481,0.016092834994197]],[[-0.037297442555428,-0.0042436853982508,0.010258288122714],[-0.079029902815819,0.023000966757536,-0.014427708461881],[-0.0079162055626512,-0.010558797046542,0.11051357537508]],[[0.043422412127256,0.053098566830158,0.060806266963482],[0.05406216531992,0.040723606944084,-0.013856914825737],[-0.014295490458608,-0.036494147032499,-0.0025081329513341]],[[0.0054660732857883,0.0094783613458276,-0.039502635598183],[-0.039907049387693,-0.019189624115825,-0.029746450483799],[0.034595862030983,-0.0084249302744865,-0.052298694849014]],[[-0.04241818189621,0.032548166811466,-0.088959060609341],[0.05819384381175,-0.01102211792022,0.02757122553885],[0.0096130426973104,0.052810184657574,0.013169500976801]],[[0.020857939496636,0.044656828045845,-0.032482516020536],[-0.065942004323006,0.026666546240449,-0.035179939121008],[0.013787222094834,0.00082812627078965,0.061434023082256]],[[0.0030894270166755,0.0030788606964052,0.03208950906992],[0.025564532727003,0.028055138885975,-0.045718807727098],[0.0016796493437141,-0.00048482196871191,0.019414182752371]],[[0.095510765910149,0.041613508015871,-0.038755644112825],[-0.055179584771395,-0.053584612905979,0.049937359988689],[-0.0042634732089937,0.065847717225552,0.096742734313011]],[[-0.020698793232441,-0.069593027234077,0.018228901550174],[-0.033744979649782,-0.01760845258832,0.0070487237535417],[-0.05252929776907,-0.010217513889074,-0.088727787137032]],[[-0.0051665566861629,0.040954150259495,0.015651734545827],[-0.046877786517143,0.042531490325928,0.0054949321784079],[-0.080405920743942,-0.0059357928112149,0.022053549066186]],[[-0.12850491702557,0.037057038396597,-0.036530312150717],[0.020120425149798,0.054053079336882,0.0092980032786727],[-0.014826322905719,-0.038675509393215,-0.0071601010859013]],[[0.053851973265409,-0.030400156974792,0.052008911967278],[-0.042281839996576,-0.027479413896799,-0.057416595518589],[-0.034577187150717,0.05609642714262,0.022838700562716]],[[-0.023895116522908,-0.053749650716782,0.027569316327572],[0.057859547436237,-0.017245475202799,0.0166353918612],[0.061749372631311,-0.013505309820175,-0.046111568808556]],[[-0.021078398451209,0.084786251187325,0.054635096341372],[0.028037408366799,0.024998692795634,0.051323588937521],[0.029225669801235,-0.053102813661098,-0.065599873661995]],[[0.022257812321186,-0.070427544414997,-0.079986862838268],[0.018536813557148,0.044516537338495,0.0077570346184075],[-0.080370098352432,-0.041025053709745,0.032779641449451]],[[-0.074126720428467,-0.017294866964221,-0.012770988978446],[0.02721281349659,0.028154304251075,0.017727138474584],[0.011725535616279,0.001842871424742,0.018630333244801]],[[-0.041697539389133,0.023350689560175,0.024624675512314],[0.00072227575583383,0.065490573644638,0.050570875406265],[0.016134914010763,0.026548322290182,0.013628119602799]],[[-0.0056564244441688,0.054258808493614,-0.053321190178394],[0.074228897690773,-0.096139311790466,0.10650841891766],[-0.11810649931431,0.014988413080573,0.0030235629528761]],[[0.038670927286148,-0.0091669149696827,0.0205048173666],[-0.015301928855479,-0.069147154688835,0.022056670859456],[0.061868447810411,0.066792778670788,0.0089175095781684]],[[0.077236406505108,-0.03963977843523,-0.030918197706342],[-0.026824783533812,-0.09270042181015,0.0029642502777278],[-0.0057526514865458,0.040625341236591,-0.038058452308178]],[[-0.10058140009642,-0.019252659752965,0.0015254329191521],[0.0032420579809695,-0.061678726226091,0.024217141792178],[0.078683987259865,0.050544183701277,0.014534246176481]],[[-0.036721896380186,0.037149004638195,0.0085644014179707],[0.012602356262505,0.064273722469807,0.020496958866715],[-0.028313459828496,0.020068453624845,0.015489044599235]],[[-0.020405113697052,0.01050447486341,-0.015908848494291],[0.068299680948257,-0.052498172968626,-0.014291825704277],[-0.035206571221352,0.049229390919209,-0.010643330402672]],[[0.0031724742148072,-0.020186088979244,0.018307961523533],[-0.10116722434759,0.073899388313293,0.02719365619123],[0.034780539572239,0.029407421126962,0.093276008963585]],[[0.0083255656063557,-0.034214999526739,-0.00063733721617609],[-0.027844117954373,-0.050054844468832,-0.036279980093241],[0.04894607514143,-0.063248053193092,-0.021701226010919]],[[0.042873065918684,0.092028558254242,0.019534584134817],[0.01457913313061,0.0096369264647365,-0.05569950863719],[0.054756179451942,0.016572142019868,0.0037823673337698]],[[0.042992394417524,0.079214759171009,-0.036076966673136],[-0.0065182028338313,-0.064353488385677,0.005627769511193],[-0.089902445673943,0.029039276763797,-0.015013990923762]],[[0.016753304749727,-0.077582061290741,0.090323396027088],[0.049532372504473,-0.01622511819005,0.084010176360607],[-0.021114999428391,-0.018248958513141,-0.026381853967905]],[[0.099974453449249,0.037483420222998,-0.0070973373949528],[-0.0048576476983726,0.060546569526196,0.033429451286793],[0.051543697714806,0.082241073250771,0.03094451315701]],[[0.038834892213345,-0.078414164483547,0.086323440074921],[0.020396569743752,-0.0043242634274065,-0.035838525742292],[0.064913459122181,-0.09569351375103,-0.02321376465261]],[[-0.014279983006418,0.038679856806993,0.055278368294239],[-0.051554277539253,-0.038963560014963,-0.041191849857569],[0.035342078655958,0.11529682576656,0.054578125476837]],[[0.10508036613464,-0.027808839455247,0.048966087400913],[0.017605591565371,-0.0074125328101218,-0.034496795386076],[0.0042346338741481,0.060308381915092,-0.014853358268738]],[[-0.026230989024043,-0.036118730902672,0.026731841266155],[-0.018520573154092,0.060576323419809,-0.010701122693717],[0.024551739916205,-0.03043569624424,0.034382902085781]],[[-0.01856517791748,-0.054448049515486,-0.01243282109499],[-0.017774280160666,-0.048873469233513,-0.027271674945951],[0.0017234053229913,0.0080683864653111,-0.026507243514061]],[[-0.088511623442173,0.011753432452679,-0.075029648840427],[0.0094420677050948,-0.01576729491353,-0.073149062693119],[-0.043816134333611,-0.021930320188403,-0.015751946717501]],[[-0.04159801453352,0.014224675484002,0.072756923735142],[-0.092183142900467,-0.006306909956038,-0.049984775483608],[-0.10406419634819,-0.039533901959658,0.041712634265423]],[[0.0087042888626456,0.030107265338302,0.019551146775484],[-0.015596115030348,0.043549075722694,-0.014631333760917],[-0.026647979393601,0.017472287639976,-0.010396260768175]],[[-0.0044234981760383,-0.038567673414946,0.089900687336922],[0.036935426294804,0.030910179018974,0.0080127585679293],[-0.028707221150398,0.016893155872822,-0.012586459517479]],[[0.031675886362791,-0.095587968826294,0.014077550731599],[-0.02460815757513,-0.028247449547052,-0.061638813465834],[-0.0048616835847497,-0.035482622683048,0.11211307346821]],[[0.066531233489513,0.037999782711267,0.013486213050783],[0.033122811466455,0.043338168412447,0.011693204753101],[-0.00064462987938896,0.035987608134747,0.074862226843834]],[[-0.0077760685235262,-0.037060979753733,0.018705537542701],[-0.00072005717083812,0.01665760949254,-0.0062140827067196],[0.09130847454071,-0.0055432906374335,-0.0097763426601887]],[[0.022460604086518,-0.13636089861393,-0.052521169185638],[-0.031267490237951,0.088384002447128,0.0093037160113454],[0.066536158323288,-0.035214722156525,-0.012135541066527]],[[-0.015592311508954,0.014989843592048,0.075682401657104],[0.025782443583012,0.064357399940491,0.073202937841415],[-0.036870684474707,0.060558628290892,0.020700862631202]],[[-0.00041673818486743,0.028536234050989,-0.014991600066423],[-0.020426154136658,-0.027116069570184,-0.049641963094473],[-0.038995686918497,0.03592636808753,-0.048015505075455]],[[-0.0072091077454388,0.021584041416645,0.063674204051495],[-0.0056092301383615,0.033968329429626,0.062379874289036],[0.081689961254597,0.037969071418047,-0.023267926648259]],[[0.026610612869263,0.086881496012211,-0.016310961917043],[0.0039780205115676,0.007401613984257,-0.012846194207668],[0.053261633962393,0.087069623172283,0.019161302596331]],[[-0.021047305315733,0.047608237713575,-0.022006807848811],[-0.016383346170187,0.052116893231869,0.02523947507143],[0.013082609511912,-0.0016634203493595,-0.017868772149086]],[[-0.00057844782713801,-0.0049341195262969,-0.11152628064156],[-0.028316361829638,-0.021239873021841,-0.034587439149618],[-0.040978841483593,-0.056201256811619,-0.08144836127758]],[[-0.039050783962011,-0.022506155073643,0.034826833754778],[0.039588879793882,0.045978382229805,0.03504791110754],[0.099805638194084,-0.018341563642025,-0.0068517429754138]],[[0.043121710419655,0.046118509024382,0.021268984302878],[-0.060923997312784,0.040359076112509,0.0075318291783333],[-0.021289555355906,-0.094651155173779,-0.0094824191182852]],[[0.052051521837711,-0.030781349167228,-0.056571088731289],[-0.0085133435204625,-0.018439203500748,0.099446900188923],[0.032198511064053,-0.024614572525024,0.021691834554076]],[[-0.017594419419765,0.13358642160892,0.0033632398117334],[-0.001969083910808,0.067886538803577,-0.048727244138718],[0.048552166670561,-0.020347194746137,0.082050763070583]],[[0.10528168827295,0.012999579310417,-0.044659100472927],[-0.019717404618859,-0.016329687088728,0.063575595617294],[0.005596982780844,0.054202936589718,-0.0048880903050303]],[[-0.02408117428422,0.0071671498008072,0.0099885696545243],[-0.034186743199825,-0.059240885078907,-0.030000828206539],[0.083739534020424,0.050922490656376,0.017945300787687]],[[0.026037734001875,-0.026024803519249,0.05391925573349],[0.0049463100731373,0.064500048756599,0.040476579219103],[-0.062589280307293,0.17302952706814,0.00062569609144703]],[[-0.03026882186532,0.018079733476043,-0.0058489805087447],[0.090853750705719,-0.067671559751034,0.061416048556566],[0.025773495435715,0.052418675273657,-0.042056683450937]],[[-0.029868779703975,0.041323758661747,0.085966862738132],[0.012625461444259,-0.0084261503070593,-0.028055243194103],[0.066126421093941,0.021079750731587,0.030964940786362]],[[-0.00024162675254047,0.0015755912754685,-0.025055166333914],[0.00011800898209913,-0.01965169981122,0.10467191785574],[0.0056424681097269,0.018057994544506,-0.074932083487511]],[[-0.023336477577686,0.00035274346009828,0.057511892169714],[-0.0031187429558486,0.020268283784389,-0.045866120606661],[0.023136617615819,-0.067990683019161,-0.0073437429964542]],[[0.024612924084067,0.050332117825747,0.013075186870992],[-0.041972268372774,-0.0070011792704463,0.044824525713921],[-0.0045392960309982,0.048411622643471,0.03019717335701]],[[-0.021819652989507,0.0064732800237834,0.005720975343138],[0.0068113836459816,0.0023946056608111,0.008292960934341],[0.010311522521079,0.046498119831085,0.083409704267979]],[[0.090521946549416,0.0094173345714808,0.015133715234697],[-0.022236932069063,-0.014963779598475,-0.01242755446583],[-0.043839912861586,0.015518868342042,0.054229512810707]],[[0.05389141663909,-0.038934782147408,-0.07646918296814],[-0.039401162415743,0.00077280460391194,0.068102158606052],[-0.073280572891235,-0.10582438856363,0.022062242031097]],[[0.039296358823776,0.058800913393497,0.0017763590440154],[0.04077173396945,0.11651182174683,0.030667740851641],[0.054094199091196,0.088030904531479,0.079094924032688]],[[0.066258661448956,0.0010983077809215,0.064341455698013],[-0.027231384068727,0.078757308423519,-0.04211413860321],[-0.015411106869578,-0.013016325421631,-0.061816476285458]],[[0.034234326332808,-0.055082980543375,0.093024559319019],[0.0097045572474599,-0.069748379290104,-0.02818900719285],[-0.031202860176563,0.013491955585778,-0.037103895097971]],[[-0.040946509689093,-0.0077211046591401,-0.045369442552328],[0.005956060718745,-0.029135627672076,-0.0028015931602567],[-0.025001600384712,-0.020377065986395,-0.019080076366663]],[[0.030258044600487,0.0096450438722968,-0.014121972024441],[0.0052441037259996,-0.0097474278882146,0.12544572353363],[-0.022579180076718,0.035461865365505,0.0026237822603434]],[[-0.01366863027215,0.043015614151955,0.0025857319124043],[0.037633378058672,0.0084038861095905,0.0605672262609],[-0.013239252381027,-0.013853914104402,0.054253820329905]],[[0.0038759778253734,-0.01445540972054,0.008728139102459],[0.035257283598185,0.039153277873993,-0.034250933676958],[-0.073751129209995,-0.0084194773808122,0.016384180635214]],[[0.049644466489553,0.033336035907269,-0.012552432715893],[-0.04251815751195,0.0741301253438,-0.029366079717875],[-0.056462217122316,-0.028112690895796,-0.05654476955533]],[[-0.013615392148495,-0.038188584148884,-0.028206752613187],[0.02662674896419,-0.094613537192345,0.014633768238127],[-0.038885366171598,0.0091317696496844,-0.023606760427356]],[[0.075080759823322,0.023780247196555,0.0006714157643728],[0.052920661866665,0.080045595765114,0.08618138730526],[0.027683751657605,0.0087325368076563,0.027246657758951]],[[0.097785227000713,-0.013011931441724,-0.025706032291055],[0.034818306565285,-0.054727025330067,-0.0064543928019702],[0.01572229899466,0.022278152406216,-0.077971287071705]],[[-0.038599126040936,0.044599074870348,0.06543181091547],[0.062255248427391,-0.0039161727763712,0.077784918248653],[-0.007316071074456,0.058326568454504,0.048817627131939]],[[-0.066762514412403,0.0074935173615813,-0.0058606807142496],[0.0077622677199543,-0.040195111185312,-0.011950389482081],[0.018704526126385,0.06169779971242,0.00016655593935866]],[[0.050748713314533,0.045367404818535,-0.022664567455649],[0.030387395992875,0.078167207539082,-0.022890483960509],[0.070091940462589,-0.0095814010128379,0.011449282057583]],[[-0.059976849704981,-0.0001716110855341,-0.073055602610111],[0.039982255548239,-0.042057026177645,-0.02753365598619],[-0.051274091005325,0.051395710557699,0.033362321555614]],[[0.06531485915184,0.046666465699673,-0.02145679667592],[-0.045155931264162,-0.062880091369152,0.026111293584108],[0.02391691878438,-0.056650128215551,0.029025757685304]],[[0.059672333300114,-0.011286712251604,-0.034088294953108],[0.028027245774865,0.01966667175293,-0.057902865111828],[0.099630370736122,0.0207409709692,0.0071408520452678]],[[0.014941425994039,0.011005827225745,-0.044979829341173],[-0.075977191329002,0.034385908395052,0.028169361874461],[0.068960912525654,-0.058753684163094,-0.01538709923625]],[[-0.03235662728548,0.030225273221731,-0.068653836846352],[-0.058645848184824,0.054912243038416,-0.030743286013603],[0.031019683927298,0.080292753875256,-0.0024225378874689]],[[0.031427640467882,-0.01838287897408,0.0082243103533983],[0.031596008688211,-0.010597301647067,0.016360506415367],[-0.060822069644928,-0.045272573828697,0.011809088289738]],[[0.027237990871072,0.075771450996399,0.020287675783038],[0.028616286814213,-0.017903260886669,0.057393353432417],[0.065661877393723,0.067223288118839,0.027750303968787]],[[0.050726838409901,0.060133349150419,-0.025382146239281],[0.0040540155023336,-0.014286176301539,-0.044605605304241],[0.036661598831415,0.023139927536249,-0.014328513294458]],[[-0.010725635103881,-0.016245791688561,0.057812429964542],[-0.023629210889339,-0.030587939545512,0.0084638856351376],[0.026094179600477,-0.021048439666629,-0.017053604125977]],[[-0.020146384835243,-0.061415154486895,0.037836063653231],[-0.0096091032028198,-0.011250977404416,-0.021699348464608],[-0.027832593768835,-0.028910169377923,-0.0092838983982801]],[[-0.020659279078245,0.079588800668716,-0.043726284056902],[0.046203069388866,0.035146504640579,-0.010856248438358],[0.044414967298508,0.042869962751865,0.018952187150717]],[[-0.00034611998125911,-0.025147311389446,0.060807593166828],[0.0089407535269856,-0.074098668992519,0.077369809150696],[0.058836288750172,0.030570538714528,0.013883377425373]],[[-0.062468882650137,-0.036583039909601,-0.045143093913794],[-0.011004316620529,-0.04988220334053,0.062164261937141],[-0.042535744607449,-0.088521026074886,-0.040126226842403]],[[-0.040725965052843,0.0040746848098934,0.079569481313229],[0.051972381770611,0.018352318555117,0.033418390899897],[0.013667241670191,0.0262013040483,0.0045908954925835]],[[0.076844803988934,-0.032856725156307,-0.0099608032032847],[-0.040094930678606,0.015175610780716,-0.032275307923555],[-0.036930371075869,-0.042816981673241,-0.021429294720292]],[[0.092588171362877,0.029310652986169,0.053816832602024],[0.02670924179256,0.018673392012715,0.048864513635635],[-0.012512949295342,-0.020743599161506,0.074335664510727]],[[-0.0034795519895852,0.014089846052229,-0.11830639839172],[-0.024929504841566,0.032027762383223,0.049738153815269],[0.083900727331638,0.0059889256954193,0.030484523624182]],[[0.0049057663418353,0.028522444888949,0.064787812530994],[0.0089158629998565,-0.013907209038734,-0.022759603336453],[0.072910621762276,-0.050378125160933,0.061044752597809]],[[-0.036130372434855,0.022291798144579,-0.01091555505991],[-0.011271346360445,-0.049716211855412,0.054695136845112],[-0.0062890667468309,0.040425568819046,-0.10050738602877]],[[0.011837277561426,-0.00036495746462606,-0.07090101391077],[0.0083543621003628,0.033828731626272,0.058274235576391],[-0.059972926974297,-0.022603826597333,0.019717633724213]],[[-0.013938230462372,-0.078549340367317,0.013651493936777],[-0.027999963611364,0.012666816823184,-0.0439083725214],[-0.067555472254753,-0.0056379963643849,-0.10380245745182]],[[-0.082916103303432,-0.0017930306494236,0.010482930578291],[-0.035715255886316,-0.038101695477962,-0.017939433455467],[0.035787884145975,-0.041920568794012,0.04720351472497]],[[0.039592657238245,0.0065223197452724,-0.050195645540953],[-0.011330752633512,-0.024514682590961,-0.0073157446458936],[-0.047156170010567,0.039943501353264,-0.059319641441107]],[[-0.079505130648613,-0.03651962056756,-0.0046072928234935],[-0.011287255212665,-0.090123325586319,-0.055896449834108],[-0.052666448056698,0.0040329624898732,0.027899973094463]],[[0.055724713951349,-0.0017076740041375,0.0040538618341088],[-0.048624601215124,-0.020686073228717,0.080546349287033],[-0.069823950529099,-0.035504564642906,0.016249150037766]],[[0.066371761262417,0.058625098317862,0.001615843269974],[-0.027118312194943,0.12989549338818,0.019508237019181],[0.062378402799368,0.073766686022282,0.015712082386017]],[[0.048084069043398,-0.068143106997013,-0.020507132634521],[0.015538014471531,0.015786819159985,-0.045312020927668],[0.028880452737212,0.014610279351473,-0.0037500876933336]],[[0.005201555788517,-0.10311642289162,-0.1117819622159],[-0.050551697611809,-0.025440495461226,-0.010015790350735],[-0.0080707333981991,0.046236138790846,0.060972161591053]],[[0.079341992735863,-0.0026188585907221,-0.053298648446798],[0.084902495145798,-0.010463201440871,0.09855130314827],[0.054819457232952,0.052644528448582,0.017015863209963]],[[0.0046052085235715,-0.033895045518875,-0.0024636038579047],[-0.060628797858953,-0.013705364428461,-0.026744946837425],[0.057221528142691,0.017418626695871,-0.011761567555368]],[[0.0091222319751978,-0.092133961617947,0.035766255110502],[-0.031410381197929,0.012543521821499,-0.031627878546715],[-0.030836181715131,0.065350376069546,-0.026711996644735]],[[0.024447739124298,-0.073850132524967,-0.027215447276831],[-0.011183978058398,-0.067265719175339,-0.041488990187645],[-0.039882823824883,0.0041795745491982,-0.051460437476635]],[[0.036178573966026,0.012022280134261,0.033813267946243],[0.023995094001293,-0.014857890084386,0.030506441369653],[0.0092788711190224,0.018571564927697,0.061628088355064]],[[-0.0015545093920082,-0.025025704875588,-0.027588052675128],[0.055917635560036,0.0064153363928199,0.047129638493061],[0.10839641094208,0.0056595974601805,0.065092995762825]],[[-0.018776088953018,-0.04251391813159,0.004508170299232],[-0.011119109578431,-0.013709126040339,-0.043537434190512],[-0.038285829126835,0.052687808871269,0.018165545538068]],[[0.0043619819916785,0.089611083269119,0.054706700146198],[0.068849936127663,0.050018597394228,-0.013547290116549],[0.015482353046536,0.055279940366745,0.09739612787962]],[[0.057886749505997,-0.029072429984808,0.060174476355314],[-0.042192235589027,0.028567351400852,0.11081691086292],[0.086005948483944,0.0015706743579358,0.0065804435871542]]],[[[-0.032908629626036,-0.095943242311478,-0.012055315077305],[-0.065686658024788,0.0055046151392162,-0.091158926486969],[0.12981244921684,0.055900976061821,-0.013598253019154]],[[-0.058944389224052,0.046228241175413,-0.026537185534835],[0.047739379107952,-0.11383086442947,-0.071073889732361],[-0.086844868957996,-0.082204014062881,-0.10335202515125]],[[0.081112511456013,-0.044843152165413,-0.086142264306545],[-0.056245222687721,-0.12313359975815,0.061070192605257],[0.062034454196692,-0.041948910802603,-0.013859812170267]],[[0.014352734200656,-0.029326386749744,-0.023287506774068],[-0.052074424922466,0.11840879172087,0.20894913375378],[-0.12187061458826,0.022192671895027,-0.016332382336259]],[[0.012557274661958,0.15437541902065,-0.057413849979639],[0.032251115888357,-0.088845327496529,0.044069174677134],[-0.015970913693309,0.041640017181635,-0.10004383325577]],[[0.028330767527223,-0.073886841535568,-0.057393498718739],[0.0086058899760246,0.010035228915513,0.042758278548717],[0.008591846562922,0.0014387272531167,0.039661627262831]],[[-0.064528375864029,-0.082722522318363,-0.017929185181856],[0.14631077647209,0.15661469101906,0.011694938875735],[0.015122921206057,0.038613818585873,0.011953601613641]],[[0.016513425856829,0.12684962153435,-0.13678728044033],[-0.042881835252047,-0.045889083296061,-0.033109340816736],[0.075463943183422,-0.031984452158213,-0.14921157062054]],[[0.022020250558853,0.098133452236652,0.069224461913109],[0.032696265727282,-0.070883989334106,0.0093470979481936],[-0.13205115497112,-0.071906849741936,-0.11266376078129]],[[0.031757734715939,-0.0026694715488702,0.014166129752994],[-0.077257066965103,0.029140245169401,-0.058346204459667],[-0.0036754044704139,-0.052504293620586,0.030855821445584]],[[-0.043914657086134,0.12866635620594,-0.096262030303478],[0.0058174398727715,-0.01270795520395,-0.030795257538557],[-0.012024586088955,-0.10448397696018,-0.18146523833275]],[[0.018643459305167,0.024984762072563,-0.12140254676342],[0.053201839327812,-0.077457427978516,0.0063943108543754],[0.03863025829196,0.040504321455956,0.0087463045492768]],[[0.062498968094587,-0.049107868224382,-0.040882341563702],[-0.012650239281356,-0.16499356925488,-0.085984081029892],[0.059756234288216,-0.073470048606396,0.0085451127961278]],[[-0.071677267551422,-0.092010721564293,-0.11083120107651],[0.020459767431021,0.18514184653759,-0.069107189774513],[0.043020594865084,-0.046148527413607,0.03459795191884]],[[0.14904983341694,0.10066170245409,0.10107006132603],[-0.14020033180714,-0.033323064446449,0.11715891212225],[0.10075820237398,0.022891748696566,-0.0077444082126021]],[[-0.055912353098392,-0.072244055569172,-0.01180433947593],[-0.04360905662179,0.11560285836458,-0.046376716345549],[-0.032253161072731,-0.11800511926413,-0.075999140739441]],[[-0.090893462300301,-0.10646995902061,-0.17279481887817],[0.11718901246786,-0.031484182924032,0.033378597348928],[-0.067950822412968,0.009861727245152,0.063484638929367]],[[-0.056843239814043,-0.064758718013763,0.11145389080048],[0.012435205280781,-0.002462794771418,-0.0060609742067754],[-0.20095904171467,0.037528116255999,-0.01414061896503]],[[-0.075588665902615,-0.011399656534195,0.10882233083248],[0.052988771349192,0.18033657968044,0.11760167777538],[-0.040393438190222,-0.014981317333877,-0.031686134636402]],[[0.07819339632988,0.18944065272808,0.049089659005404],[0.042004190385342,0.028290523216128,0.093995198607445],[0.014616777189076,-0.002913105301559,-0.15975481271744]],[[0.0017155935056508,-0.056686464697123,0.0078100683167577],[0.016305547207594,0.10669379681349,0.049763940274715],[-0.13095551729202,-0.15514811873436,-0.021074738353491]],[[0.015482408925891,0.016111159697175,0.1578528881073],[0.10424233973026,0.044040370732546,0.020036485046148],[0.018569653853774,0.008820379152894,-0.012166308239102]],[[0.043308507651091,-0.0022565959952772,-0.0086182337254286],[-0.032051023095846,0.029332907870412,0.029516637325287],[-0.062315687537193,-0.078198581933975,-0.007093105930835]],[[0.02561997435987,-0.068661399185658,0.018228985369205],[0.0051895431242883,0.096096284687519,0.066089764237404],[-0.012883869931102,-0.0075284265913069,-0.033052369952202]],[[-0.18904690444469,-0.21493801474571,-0.088425904512405],[-0.1138297393918,-0.20171079039574,-0.10254329442978],[-0.12672911584377,-0.098642952740192,-0.033258970826864]],[[0.024391705170274,-0.011163989081979,-0.0099650425836444],[-0.087872996926308,-0.025786897167563,-0.031483620405197],[0.10208214074373,0.053088564425707,0.022420765832067]],[[-0.017144065350294,0.096150197088718,0.039841562509537],[0.034195020794868,-0.03190678358078,-0.011643803678453],[0.006465629208833,0.040656305849552,-0.067014992237091]],[[0.065317235887051,0.12098599970341,-0.0017653612885624],[-0.098799325525761,0.057364922016859,0.078787937760353],[0.15119504928589,-0.096377022564411,0.088602647185326]],[[0.11580383777618,0.0046337693929672,-0.023477079346776],[0.016225339844823,0.00038587031303905,-0.03436441719532],[0.035738579928875,0.0072139608673751,0.0026754438877106]],[[0.0020515127107501,0.039919190108776,0.016502313315868],[-0.021791998296976,0.083763554692268,-0.093776226043701],[-0.0073873559013009,-0.056632310152054,-0.047999244183302]],[[-0.02545477822423,0.0007600185344927,-0.069627925753593],[-0.076509647071362,-0.035399939864874,0.013825346715748],[0.15641464293003,0.036713097244501,-0.029579492285848]],[[0.04673583433032,-0.10703967511654,0.012500199489295],[-0.083739772439003,-0.0291553940624,-0.01622399315238],[-0.00039911142084748,-0.021393457427621,-0.012569880113006]],[[-0.018066445365548,-0.02891493961215,-0.051274575293064],[-0.0025600644294173,-0.059511229395866,0.043266639113426],[0.041940629482269,0.088830217719078,0.061783786863089]],[[-0.074434772133827,-0.0075388089753687,-0.055561695247889],[-0.039644822478294,-0.038857743144035,-0.11064215749502],[0.031023662537336,0.0033119702711701,-0.016835013404489]],[[-0.089272610843182,-0.040066793560982,-0.078525960445404],[-0.026612848043442,-0.070270270109177,-0.024553069844842],[-0.025813698768616,-0.0017285968642682,-0.10266248881817]],[[0.11130380630493,-0.10924150794744,0.096928775310516],[0.0038813850842416,-0.051550939679146,-0.0035505946725607],[-0.10986060649157,0.044583629816771,0.046142268925905]],[[-0.05823989957571,-0.019161265343428,0.16033793985844],[-0.019670492038131,-0.090074174106121,-0.059448700398207],[-0.0074731595814228,-0.062684677541256,-0.067293904721737]],[[-0.054223258048296,-0.062857240438461,0.076335519552231],[-0.001558932592161,-0.013473992235959,-0.018922498449683],[0.080716118216515,-0.077630333602428,0.069960385560989]],[[-0.014967504888773,0.010466746985912,-0.039605233818293],[-0.027964703738689,0.16995847225189,0.17689529061317],[-0.053916290402412,0.040223531424999,-0.0024853192735463]],[[-0.076551832258701,-0.089642532169819,-0.098921895027161],[-0.043750662356615,0.065224260091782,0.037718933075666],[-0.1306075155735,-0.016251679509878,0.22281631827354]],[[-0.019687753170729,0.091439291834831,0.055065803229809],[0.008782354183495,0.018802884966135,0.096379064023495],[0.086766794323921,-0.031350191682577,-0.071487136185169]],[[-0.019599894061685,0.0077533908188343,0.01556290127337],[0.10855041444302,0.04803528636694,0.084652610123158],[0.0082235839217901,0.048652395606041,-0.0079304194077849]],[[0.032366272062063,-0.034521266818047,-0.043610032647848],[0.081138134002686,0.075130350887775,-0.012262825854123],[0.08096519857645,0.059557061642408,-0.066027425229549]],[[0.0031959265470505,-0.11234930157661,-0.040524784475565],[0.027593616396189,-0.0040961871854961,-0.034218847751617],[0.022329078987241,0.078819632530212,-0.0051408871077001]],[[-0.025814743712544,-0.062449336051941,0.072566673159599],[0.15722264349461,-0.04700618237257,0.099406257271767],[0.0097795128822327,-0.098215751349926,0.032374497503042]],[[-0.025548761710525,-0.10178637504578,-0.0720394551754],[-0.031736705452204,-0.096736744046211,-0.015358606353402],[-0.064149081707001,0.095036424696445,-0.044086690992117]],[[0.039368346333504,0.012985185720026,0.26790949702263],[-0.018942601978779,-0.076751112937927,-0.13143070042133],[-0.16546569764614,-0.094334065914154,0.0044490648433566]],[[-0.05193480104208,0.18977020680904,-0.022886717692018],[0.0025264052674174,0.092275895178318,-0.0831248909235],[-0.0030620833858848,0.037879087030888,-0.019013188779354]],[[-0.0032823034562171,-0.066086187958717,-0.14803291857243],[-0.10191152244806,-0.019630569964647,-0.024185018613935],[-0.086207516491413,-0.089055053889751,-0.085104592144489]],[[0.061074402183294,-0.018864814192057,-0.057705331593752],[0.066523812711239,0.026413163170218,0.023707959800959],[0.0021575447171926,0.0024956683628261,-0.087433755397797]],[[0.039217822253704,-0.0045985756441951,-0.044971998780966],[-0.10865023732185,-0.0022686803713441,0.11566468328238],[0.062200739979744,-0.11689892411232,-0.016136005520821]],[[0.041836481541395,0.10258101671934,0.073027946054935],[-0.034202374517918,0.04468847066164,0.03798021748662],[-0.01530753262341,-0.031490165740252,-0.11715482920408]],[[0.017880670726299,-0.060696795582771,-0.01115217898041],[0.039721015840769,-0.027246946468949,-0.030486973002553],[0.016241976991296,0.063741005957127,-0.055751759558916]],[[0.059609953314066,0.024424355477095,0.020284527912736],[0.0087801842018962,0.033189743757248,0.0137933883816],[-0.0013223569840193,0.23410624265671,-0.025167845189571]],[[0.0044542411342263,0.14174887537956,0.047124404460192],[0.11371402442455,0.085961028933525,-0.13891439139843],[-0.13394871354103,0.018047677353024,0.010192709043622]],[[-0.096544019877911,-0.078586757183075,-0.071629405021667],[0.15621760487556,-0.0062672509811819,-0.056571573019028],[-0.026227369904518,-0.0073711844161153,-0.067542836070061]],[[0.1024916023016,-0.11048693954945,-0.10845897346735],[0.098915494978428,-0.08008348941803,0.086041510105133],[-0.010434436611831,0.16883639991283,-0.035995479673147]],[[0.02335561439395,-0.026897700503469,-0.0007223536958918],[-0.086511172354221,-0.06775127351284,-0.1058891043067],[0.096759028732777,0.069502405822277,-0.043618436902761]],[[-0.15896093845367,-0.14749166369438,-0.17197060585022],[0.031133526936173,-0.010219406336546,0.13046565651894],[-0.21778470277786,0.0054751103743911,0.032686874270439]],[[0.030526062473655,0.052949395030737,0.040791120380163],[-0.14082823693752,-0.048891462385654,-0.0096935713663697],[-0.034360270947218,0.017594318836927,-0.0042705233208835]],[[0.075571484863758,-0.052196122705936,-0.072290860116482],[0.15017265081406,0.057440284639597,-0.0059432252310216],[-0.053734838962555,0.044770441949368,0.013584277592599]],[[-0.067296028137207,0.16197404265404,0.1384252756834],[0.12599062919617,0.062493905425072,0.096127934753895],[-0.0053157145157456,0.086995184421539,0.019012616947293]],[[0.11431888490915,0.054637208580971,0.15955924987793],[-0.016360415145755,0.043757904320955,-0.070007167756557],[-0.0030963341705501,0.11401882022619,0.1145004183054]],[[0.067634239792824,0.014348596334457,0.16460911929607],[0.044019438326359,0.040934436023235,0.052301563322544],[-0.0010299085406587,-0.1077916175127,0.049076817929745]],[[-0.0058632181026042,0.10279711335897,0.041377138346434],[-0.012222645804286,-0.041127614676952,-0.078262105584145],[-0.080259203910828,-0.031094469130039,0.0056830602698028]],[[0.020421477034688,0.056931249797344,0.00131081615109],[0.0018761125393212,0.011491836979985,0.040511660277843],[0.052798982709646,0.036727767437696,-0.015755426138639]],[[-0.0053648524917662,0.027036370709538,0.022270763292909],[-0.0055609410628676,0.015062168240547,-0.10151013731956],[-0.02784912660718,-0.044796206057072,0.0073788790032268]],[[-0.063147604465485,-0.1565246284008,0.016974236816168],[0.042662125080824,0.085592530667782,-0.058265764266253],[-0.0065453965216875,0.018363650888205,-0.021991750225425]],[[-0.07579942047596,0.058285117149353,0.049888223409653],[0.015689143911004,-0.0056378501467407,-0.037958420813084],[0.042707990854979,0.054720394313335,0.0023721519391984]],[[0.092829719185829,0.094537287950516,-0.044482093304396],[0.017100913450122,-0.037725351750851,-0.057472482323647],[-0.046641763299704,-0.0020814607851207,-0.024653349071741]],[[0.07077518850565,0.15216061472893,0.097412265837193],[0.041925944387913,-0.056079711765051,0.08764661103487],[-0.033834360539913,0.055119480937719,0.041007570922375]],[[0.0021848373580724,0.086987189948559,0.11187037080526],[-0.018524933606386,0.013644956983626,-0.1421485543251],[-0.00016572441381868,0.013080378063023,-0.10577439516783]],[[-0.013843237422407,-0.17971806228161,-0.036876853555441],[-0.080355033278465,-0.082449294626713,-0.016813760623336],[-0.078454650938511,0.07638230919838,-0.02900156006217]],[[0.0404332280159,0.053596615791321,0.071422338485718],[-0.049078229814768,0.056956429034472,-0.062327951192856],[0.053628344088793,0.013654805719852,-0.077662579715252]],[[-0.16760562360287,-0.23737463355064,-0.10418912768364],[-0.083782628178596,0.017152734100819,-0.073876209557056],[-0.055387400090694,-0.027700010687113,-0.071778953075409]],[[0.082810774445534,0.0097031742334366,0.01119021885097],[-0.032317206263542,0.050541400909424,0.071498058736324],[-0.07138653844595,-0.0041814870201051,0.015351751819253]],[[0.057423304766417,0.073830284178257,0.010969937779009],[-0.010880084708333,-0.044192668050528,-0.056725848466158],[-0.023098468780518,0.030455930158496,0.058701813220978]],[[-0.20253516733646,-0.098477959632874,-0.11829567700624],[0.134157076478,0.021818520501256,-0.075541816651821],[-0.022777009755373,0.11169723421335,0.027674781158566]],[[0.051096443086863,0.1176061630249,0.058700695633888],[0.019779136404395,0.025695864111185,-0.030472597107291],[-0.069199375808239,-0.058127846568823,-0.03004520945251]],[[-0.018600972369313,-0.13293965160847,-0.084000155329704],[0.075184650719166,-0.11174780130386,-0.059808656573296],[-0.025552529841661,-0.10830041021109,0.038763884454966]],[[0.015045495703816,-0.057261493057013,0.085289433598518],[-0.090389735996723,-0.081406228244305,-0.12666910886765],[-0.023881390690804,-0.01505540125072,-0.046045046299696]],[[0.072989635169506,0.17917896807194,0.13730730116367],[0.11498937010765,0.0092608947306871,-0.060970559716225],[0.021524315699935,0.13428442180157,0.082102574408054]],[[0.017840430140495,0.0097127817571163,-0.00568942213431],[0.11625499278307,0.055498048663139,-0.0620899759233],[-0.0060434518381953,-0.10071971267462,-0.01872393488884]],[[-0.096756659448147,-0.030384033918381,-0.062886640429497],[0.0063385856337845,0.0021558883599937,0.098064199090004],[-0.006974779535085,-0.037464305758476,0.097187198698521]],[[-0.0057429540902376,-0.02061565965414,0.026022961363196],[0.027093132957816,0.0066017922945321,-0.0032945317216218],[0.032320082187653,-0.031639035791159,-0.11634816229343]],[[0.0096798790618777,0.047342963516712,0.049708765000105],[-0.027900692075491,-0.079294480383396,-0.072111524641514],[0.0749287083745,0.0074962181970477,-0.039913453161716]],[[-0.029281172901392,-0.10898008197546,0.0383031219244],[-0.042313564568758,0.14411832392216,0.11781054735184],[-0.0447828322649,0.031593780964613,-0.0066331401467323]],[[0.20932380855083,-0.058371409773827,0.011630656197667],[-0.01534953340888,-0.072086073458195,-0.013404311612248],[0.080155692994595,0.055190827697515,-0.0053285588510334]],[[0.039526667445898,-0.10119121521711,-0.024601295590401],[-0.016167398542166,-0.0015029803616926,0.031282629817724],[-0.14328618347645,-0.052173122763634,0.0014825176913291]],[[0.018828453496099,0.010216386057436,-0.11619380116463],[0.088032461702824,0.025755900889635,0.046751212328672],[0.002912558382377,0.032381355762482,-0.039013482630253]],[[0.082505382597446,-0.014825152233243,0.028734900057316],[0.075166247785091,0.065287813544273,0.058760821819305],[-0.11961479485035,-0.10484945774078,-0.033369451761246]],[[-0.051239404827356,-0.058760344982147,-0.05442189052701],[-0.005394141189754,0.013998816721141,-0.045313458889723],[-0.019178196787834,0.021342987194657,0.044569410383701]],[[0.019871840253472,-0.010057565756142,-0.16740849614143],[0.039721999317408,-0.061334423720837,0.038692507892847],[-0.078714340925217,-0.0091912848874927,0.10497234016657]],[[0.0097620440647006,0.09348202496767,0.08603698015213],[0.043447989970446,0.061357654631138,-0.035568688064814],[-0.092361278831959,-0.069982469081879,0.042823057621717]],[[-0.13401040434837,0.033109415322542,-0.0017373383743688],[0.078612990677357,-0.094779796898365,-0.081545941531658],[0.12508128583431,-0.12352998554707,-0.021961111575365]],[[0.10771314054728,0.1578386425972,-0.028936622664332],[-0.24979484081268,-0.048322420567274,-0.026948666200042],[-0.0065321316942573,-0.026175666600466,-0.020742544904351]],[[0.12682671844959,0.12092991173267,0.016451047733426],[-0.028615275397897,-0.010440670885146,0.047890402376652],[-0.069205671548843,0.0053123538382351,-0.031737316399813]],[[0.018439054489136,0.0074415309354663,-0.030736476182938],[0.14641132950783,0.025116812437773,-0.068246439099312],[-0.06232837587595,-0.030945220962167,-0.016460103914142]],[[-0.047500606626272,-0.11475194245577,-0.0064558829180896],[0.0042809508740902,0.011762936599553,-0.0073819952085614],[0.025676293298602,0.05600855499506,0.14623712003231]],[[-0.019405972212553,-0.028416942805052,-0.074595846235752],[-0.137894064188,-0.050807561725378,-0.17417213320732],[0.02234092913568,-0.076581597328186,-0.052334614098072]],[[0.10049310326576,0.23266053199768,-0.036904945969582],[-0.0046632317826152,0.10775372385979,-0.02269809320569],[0.028542675077915,0.09794158488512,0.015639010816813]],[[-0.048227328807116,0.022200539708138,-0.089610651135445],[-0.013853210955858,-0.0038825019728392,-0.085644498467445],[0.013594981282949,0.071255296468735,0.15944761037827]],[[0.049320712685585,0.11966419965029,0.083770491182804],[0.058000482618809,-0.006832767277956,-0.020174192264676],[-0.11377843469381,-0.035920284688473,-0.064961098134518]],[[0.075446978211403,-0.012313481420279,-0.07758242636919],[0.016206882894039,-0.049595650285482,0.00069296080619097],[0.0078852782025933,-0.025823589414358,-0.012547060847282]],[[0.0089106326922774,-0.0046278815716505,-0.038176849484444],[-0.094542004168034,-0.08154221624136,0.036063060164452],[-0.079611591994762,0.032594330608845,0.02782660163939]],[[-0.11371171474457,-0.11735574156046,-0.039091605693102],[0.023970870301127,0.037919878959656,-0.0057628331705928],[-0.011607516556978,0.010991827584803,0.0600950345397]],[[-0.023894069716334,-0.083732679486275,0.044578339904547],[-0.0001917880581459,0.058712113648653,-0.035241760313511],[-0.013001907616854,-0.12949268519878,-0.036754589527845]],[[-0.051837287843227,0.018572069704533,0.0084506617859006],[0.017262039706111,0.12075064331293,-0.0082371784374118],[0.087763912975788,-0.032405789941549,-0.018085110932589]],[[-0.047450747340918,0.022834537550807,-0.0011407181154937],[-0.092303864657879,-0.042654428631067,0.073208473622799],[-0.012248983606696,0.16263099014759,0.026195954531431]],[[-0.061273798346519,-0.11989834904671,-0.083047911524773],[-0.0078960033133626,-0.008386941626668,0.027864990755916],[0.09477723389864,0.014297273941338,0.04607130214572]],[[0.005299614276737,0.055098030716181,0.00750443758443],[-0.025561030954123,-0.0059918607585132,-0.012594469822943],[-0.018518965691328,-0.052106641232967,0.0059845284558833]],[[-0.092214547097683,0.067338898777962,0.048041012138128],[0.019791632890701,0.062725350260735,-0.0026511959731579],[0.033011130988598,-0.043803505599499,0.14328090846539]],[[-0.035281851887703,-0.016966102644801,-0.066412381827831],[0.040061376988888,-0.030271561816335,-0.00065743119921535],[0.0047793556004763,0.027694016695023,-0.0690733268857]],[[-0.137511074543,-0.090214572846889,-0.027977673336864],[-0.012223742902279,-0.023502832278609,0.022932801395655],[-0.027239987626672,0.049391962587833,-0.014218738302588]],[[-0.054284907877445,0.034538622945547,-0.038430571556091],[-0.033896833658218,-0.081331647932529,0.10661171376705],[0.030881894752383,0.014332495629787,0.12638448178768]],[[0.037269398570061,0.10766689479351,0.0028813118115067],[0.036699324846268,0.062908746302128,0.089765459299088],[-0.025571785867214,-0.17001074552536,-0.10862288624048]],[[-0.14671993255615,-0.21613815426826,0.08450773358345],[-0.054528675973415,-0.2252225279808,-0.025187194347382],[0.062652759253979,-0.051742419600487,-0.037960018962622]],[[-0.05772302672267,0.089741244912148,0.1274781525135],[0.027950434014201,-0.17286424338818,-0.016371298581362],[-0.15873205661774,-0.043292135000229,-0.034691914916039]],[[-0.06695369631052,-0.11085887253284,-0.097457908093929],[-0.0017430773004889,-0.073550663888454,0.019455274567008],[0.028695851564407,-0.052120506763458,-0.0072941770777106]],[[-0.07478854060173,0.12784472107887,-0.060146927833557],[-0.035214088857174,-0.0032316299621016,0.0054502156563103],[0.091129057109356,0.058727409690619,0.0082730976864696]],[[0.029078451916575,0.11475583165884,0.0046094912104309],[-0.0035557395312935,-0.025797126814723,-0.0025121164508164],[-0.079979836940765,-0.042642828077078,0.010642860084772]],[[-0.0077972188591957,-0.028442598879337,0.055045444518328],[0.092995658516884,0.12540438771248,0.095422834157944],[0.042609833180904,-0.025429490953684,-0.12317131459713]],[[-0.093044191598892,0.13366582989693,-5.0144619308412e-05],[-0.028125951066613,-0.082890331745148,0.049004051834345],[0.046606291085482,0.0031789531931281,-0.057450335472822]],[[0.062787339091301,0.05347928032279,-0.0053034848533571],[0.0065660602413118,-0.034600183367729,-0.10989233106375],[0.028932126238942,0.0082967560738325,0.084528714418411]],[[-0.075318567454815,-0.13505564630032,-0.08574090898037],[-0.0242058057338,-0.098632797598839,0.034906007349491],[0.10678594559431,0.13961221277714,0.071984961628914]],[[0.060876656323671,-0.041241608560085,-0.17519615590572],[0.041689302772284,-0.10974563658237,-0.013632161542773],[0.10738509148359,0.06265414506197,0.016046589240432]],[[0.013533159159124,-0.0076925531029701,-0.037552244961262],[0.15904998779297,0.1497800797224,-0.04062357544899],[-0.17273247241974,0.12469226121902,0.070276446640491]],[[0.02564824745059,0.10520546883345,-0.044151473790407],[-0.037597898393869,-0.027028372511268,-0.022797372192144],[-0.083870366215706,-0.00969323143363,-0.057843517512083]]],[[[0.021697919815779,0.012991135008633,-0.0020009705331177],[0.028795711696148,0.020240847021341,-0.015383678488433],[-0.032410677522421,-0.022178012877703,0.033777490258217]],[[-0.02417697943747,-0.0013794163241982,0.012429757043719],[-0.044226549565792,0.068859562277794,-0.02000099606812],[-0.03868081048131,-0.070921249687672,0.014111296273768]],[[0.020507048815489,-0.015016013756394,0.072787895798683],[0.039759375154972,0.022238930687308,0.057054564356804],[0.036108355969191,0.064981900155544,-0.037804432213306]],[[-0.01573515124619,0.042822532355785,-0.032194569706917],[0.062613300979137,-0.026542214676738,-0.067942157387733],[-0.0076590152457356,0.026165729388595,0.016701163724065]],[[-0.033202957361937,-0.016694642603397,-0.0066753132268786],[-0.029867023229599,0.056692156940699,-0.016855219379067],[-0.015698708593845,-0.0071317963302135,-0.00070907536428422]],[[0.012323086149991,-0.0033761619124562,0.062163818627596],[0.012546861544251,0.057744577527046,0.0369883030653],[-0.011475639417768,-0.016390517354012,-0.043996840715408]],[[0.037173766642809,0.043544664978981,0.031706213951111],[-0.0044457172043622,0.0057110423222184,-0.020250901579857],[0.0047843367792666,-0.024413179606199,-0.021399807184935]],[[0.04117001965642,-0.0076524415053427,0.0049687069840729],[-0.039918970316648,0.021249480545521,0.022672882303596],[0.037795398384333,0.05506170168519,0.037562634795904]],[[0.037278722971678,-0.0025082391221076,0.0080660730600357],[-0.1027060598135,-0.0082084285095334,-0.037387985736132],[0.091480582952499,0.043462213128805,-0.019025716930628]],[[0.0078452536836267,0.013648649677634,0.0086110448464751],[-0.0098925400525331,0.0070358170196414,0.038665194064379],[0.03696271032095,0.015456482768059,0.0039271325804293]],[[0.078313417732716,0.024013329297304,0.025651305913925],[0.0213219858706,-0.060061126947403,0.013361776247621],[-0.00098537642043084,0.058890733867884,-0.038938838988543]],[[0.093210391700268,-0.037315897643566,-0.054487716406584],[0.0039092716760933,0.048904519528151,0.0081909038126469],[-0.023527456447482,0.00017606634355616,0.013634317554533]],[[0.043955206871033,0.040296882390976,-0.021196167916059],[0.071295991539955,0.040257647633553,0.053243070840836],[-0.0041411565616727,0.077257663011551,-0.071409076452255]],[[0.094204403460026,0.015163986943662,-0.071557655930519],[0.064125947654247,-0.024648193269968,-0.045923069119453],[-0.0026855433825403,0.039657462388277,-0.090044274926186]],[[0.010331524536014,0.027210265398026,-0.00672801816836],[-0.0043859486468136,0.073363922536373,-0.026169227436185],[-0.036872923374176,0.014096204191446,0.015254604630172]],[[0.0034812714438885,0.0095243770629168,0.02490371838212],[-0.027554269880056,0.030828209593892,-0.0025764082092792],[0.063616432249546,-0.021567199379206,0.050107378512621]],[[0.05016727745533,-0.029619257897139,0.060745034366846],[0.019536435604095,-0.005981333553791,-0.034442607313395],[0.0074965036474168,0.031856212764978,0.034583114087582]],[[-0.027359180152416,-0.026267804205418,-0.028418228030205],[0.023641940206289,0.014432227239013,0.0057585998438299],[-0.060368873178959,0.011779909953475,0.00068081560311839]],[[0.00058400986017659,0.0055363886058331,0.018774235621095],[0.029972553253174,0.042836952954531,0.051295854151249],[0.0029100792016834,-0.01477293856442,0.013464115560055]],[[0.063297994434834,0.038613028824329,0.041184470057487],[-0.008559700101614,-0.010132018476725,-0.0019582875538617],[0.041860464960337,0.023144023492932,0.06316214799881]],[[0.05995462462306,-0.075959503650665,-0.031892653554678],[-0.049349840730429,-0.050646457821131,0.0040397392585874],[-0.014461039565504,-0.021610585972667,0.00089942361228168]],[[0.034445863217115,0.031140210106969,0.037842124700546],[0.035334095358849,0.046818375587463,-0.037262227386236],[0.0012690769508481,-0.020121498033404,0.0051236459985375]],[[-0.018290638923645,0.031813662499189,0.013562818057835],[0.018933648243546,-0.046378318220377,-0.082394786179066],[-0.019534055143595,-0.073518648743629,0.018580209463835]],[[-0.018339598551393,-0.017393125221133,0.0085706925019622],[-0.035281993448734,0.012236963957548,0.027844224125147],[0.0817701369524,-0.027570201084018,0.013700707815588]],[[0.034819606691599,-0.05899365991354,0.05368909984827],[0.089516423642635,-0.013831915333867,-0.0014457285869867],[-0.0033946863841265,0.012859712354839,-0.086302541196346]],[[-0.03464862704277,-0.023388106375933,0.037051018327475],[0.006099168676883,0.0516835488379,-0.014383343979716],[-0.051854372024536,-0.0017645793268457,-0.056394550949335]],[[0.0056142038665712,0.021052189171314,0.0051934598013759],[0.002524031791836,-0.0032249644864351,0.025435669347644],[0.025565605610609,-0.027639653533697,0.0091996854171157]],[[0.0021955948323011,0.10475040227175,0.0081863850355148],[0.053028047084808,-0.0063648312352598,-0.016247032210231],[0.013721694238484,0.080433450639248,-0.0025821181479841]],[[-0.028371576219797,-0.022206945344806,-0.079081378877163],[0.031396623700857,-0.067529380321503,0.050481699407101],[0.060680951923132,0.018663633614779,-0.010897233150899]],[[-0.022381499409676,0.036781016737223,0.039851367473602],[-0.011449117213488,0.061010979115963,0.073495902121067],[0.043063011020422,-0.04637847840786,-0.0019303386798128]],[[0.027709674090147,0.033039700239897,-0.0096020950004458],[-0.037873741239309,0.0027005830779672,0.058391541242599],[-0.015901291742921,0.022095965221524,0.021349564194679]],[[0.05763403698802,-0.044640097767115,0.013953820802271],[0.027524799108505,0.014825275167823,-0.012711100280285],[0.0065535106696188,-0.0031430684030056,0.076889768242836]],[[0.03033384308219,0.045041047036648,0.0020583861041814],[-0.050611902028322,0.037748243659735,0.031400449573994],[0.0096759330481291,0.033833280205727,0.0902940928936]],[[-0.0060070361942053,-0.027761789038777,0.029537115246058],[0.035326566547155,0.0091140447184443,0.024754785001278],[-0.0065768947824836,-0.027160309255123,-0.016092484816909]],[[0.0015179559122771,-0.019668778404593,-0.0020592347718775],[-0.024106414988637,0.016209367662668,-0.028866544365883],[-0.0073091615922749,-0.023175053298473,0.0022424205671996]],[[0.053321458399296,-0.0034685721620917,-0.01519903447479],[0.052287440747023,0.025217525660992,-0.010741089470685],[0.041004940867424,0.016569387167692,0.026833971962333]],[[-0.044150877743959,0.082341946661472,-0.023614771664143],[0.026098608970642,0.02705935202539,-0.010560240596533],[-0.058432467281818,0.0038018759805709,0.043923262506723]],[[-0.017189465463161,-0.064468048512936,0.043950345367193],[-0.042889151722193,-0.049031138420105,-0.012482663616538],[0.0045688548125327,-0.031647186726332,-0.067204535007477]],[[-0.034508656710386,-0.0088651878759265,-0.052495703101158],[0.021441077813506,-0.029463801532984,0.010738539509475],[0.054330248385668,0.084973588585854,-0.055625226348639]],[[0.043353103101254,-0.054148886352777,-0.0575319416821],[0.0066814236342907,-0.03157851845026,-0.0072685778141022],[0.054537940770388,0.042977202683687,-0.066349431872368]],[[0.054694816470146,0.010169244371355,0.0095140561461449],[0.017581384629011,-0.033833246678114,0.013701758347452],[-0.001872853259556,0.0063448613509536,0.08444219827652]],[[-0.044626362621784,0.031821966171265,-0.015991382300854],[0.0069370921701193,0.047430869191885,-0.0094018531963229],[0.023577179759741,0.06984656304121,0.02325096540153]],[[0.014442986808717,0.015775145962834,-0.038869380950928],[-0.0084013305604458,0.063791051506996,0.081571869552135],[0.011919153854251,0.016451328992844,-0.074755668640137]],[[0.013253725133836,-0.0099102985113859,0.0086116278544068],[0.0051043829880655,-0.01195724029094,0.0036354260519147],[0.010187675245106,0.014413523487747,0.013520361855626]],[[0.040915369987488,-0.026256674900651,0.0036040656268597],[0.048867527395487,-0.012062253430486,-0.014597178436816],[0.014611987397075,0.0083402935415506,0.019136469811201]],[[-0.0067104152403772,0.0091209039092064,0.05755228176713],[-0.028161201626062,-0.0056811505928636,-0.0044780853204429],[0.0062024756334722,0.047803964465857,-0.0065262401476502]],[[-0.039778213948011,0.0091516654938459,-0.036938481032848],[0.0073770401068032,-0.014395670965314,0.065005086362362],[0.022506834939122,0.0068458244204521,0.020935330539942]],[[0.011635033413768,-0.0098133878782392,-0.084194548428059],[-0.0067672822624445,-0.0060604666359723,-0.019134851172566],[-0.0063778874464333,0.018282810226083,0.020708920434117]],[[-0.025414744392037,-0.015763837844133,0.010538943111897],[-0.0064850561320782,-0.025674091652036,0.0013126076664776],[0.033474627882242,-0.0015727888094261,-0.025506494566798]],[[-0.013648675754666,0.0036546592600644,0.0091904699802399],[-0.053325116634369,0.024860901758075,0.022819751873612],[-0.0095922816544771,-0.029696566984057,0.0044871312566102]],[[0.044795870780945,-0.037776615470648,-0.017419455572963],[-0.0057209418155253,-0.093782797455788,0.057251997292042],[0.054381508380175,0.017700202763081,-0.024512149393559]],[[-0.037035740911961,0.043165381997824,0.014970464631915],[-0.04017474129796,0.015578845515847,0.056778315454721],[0.032211974263191,0.0068192384205759,0.092708401381969]],[[0.0054045137949288,-0.034908875823021,-0.062968462705612],[0.048177629709244,0.011172771453857,-0.014089868403971],[-0.092722162604332,-0.041834142059088,-0.016304725781083]],[[-0.017006175592542,0.0034952517598867,-0.05338591337204],[-0.0030260924249887,0.015728987753391,0.0060983034782112],[0.094608284533024,-0.035333249717951,0.065094098448753]],[[0.032945457845926,0.041898932307959,-0.0072778319008648],[-0.024684814736247,-0.016167797148228,0.037096630781889],[0.032595526427031,0.01425491925329,0.060241848230362]],[[-0.040132392197847,-0.00083594559691846,0.077036067843437],[0.092503920197487,0.0076211299747229,0.02308252453804],[0.048349868506193,0.055409803986549,-0.012935936450958]],[[0.082833670079708,-0.048844937235117,0.020071782171726],[0.029817912727594,-0.019098974764347,-0.020414683967829],[-0.01213962584734,-0.015419655479491,-0.032205730676651]],[[-0.044298097491264,0.017115443944931,-0.040065590292215],[-0.0032688966020942,0.075553886592388,-0.0079059926792979],[0.031404543668032,0.031972602009773,-0.058026578277349]],[[-0.0064863129518926,0.010136640630662,-0.045402675867081],[0.021397862583399,0.039697397500277,0.016353847458959],[0.11425578594208,0.057439185678959,-0.027764404192567]],[[0.059990618377924,-0.0067996201105416,0.058606773614883],[0.017305493354797,0.057508368045092,-0.074340179562569],[-0.036849424242973,0.015269202180207,-0.021939167752862]],[[0.042571622878313,0.0012013193918392,0.063026651740074],[0.0060162572190166,0.026654366403818,0.044785026460886],[-0.020752741023898,0.025474255904555,0.020160628482699]],[[-0.029991000890732,-0.04892336577177,0.0027905029710382],[-0.072082117199898,-0.023183161392808,-0.012020298279822],[-0.041572686284781,-0.015387509018183,-0.010990232229233]],[[0.036280147731304,-0.014806935563684,0.05567628890276],[0.0085424119606614,-0.00025809032376856,0.021153967827559],[-0.025996346026659,0.056381568312645,0.028533574193716]],[[0.050477880984545,0.065313123166561,-0.0051534688100219],[-0.01537097338587,-0.018095534294844,-0.0057127745822072],[0.0079900594428182,0.0028366092592478,-0.00049043004401028]],[[0.013039448298514,-0.06912437826395,0.035079348832369],[-0.020779483020306,-0.048040360212326,-0.0037508315872401],[-0.01572529412806,0.0062750703655183,-0.039088372141123]],[[0.049166787415743,0.0080839721485972,0.014426492154598],[0.03665167465806,0.01495944801718,0.026989635080099],[0.044988758862019,0.037186156958342,0.034671664237976]],[[-0.013002160936594,-0.0017814565217122,0.023776290938258],[0.048093054443598,-0.0063252812251449,-0.0014743899228051],[-0.0046579483896494,-0.077551506459713,-0.011241952888668]],[[0.0012735599884763,-0.027481369674206,-0.010583281517029],[0.058085817843676,0.031243912875652,-0.03453278914094],[-0.054165951907635,0.010945807211101,-0.010749420151114]],[[0.094083398580551,-0.046389240771532,0.022971447557211],[0.026196690276265,0.040348559617996,-0.067263886332512],[0.015176961198449,-0.061845142394304,-0.015771901234984]],[[-0.0092724235728383,0.029919985681772,-0.04379703104496],[0.039677757769823,0.02063805423677,0.02530368976295],[-0.043624877929688,0.010018086060882,-0.036382365971804]],[[-0.0029822047799826,-0.015423648990691,0.039434749633074],[0.0044129006564617,-0.015468447469175,0.051829919219017],[0.033989515155554,0.046104036271572,0.047110944986343]],[[-0.015692507848144,-0.029908953234553,0.0022584891412407],[-0.019751884043217,-0.026630956679583,-0.02768786251545],[-0.023730784654617,0.0019402935868129,-0.0302077177912]],[[-0.02647015824914,0.01978006772697,-0.010927047580481],[0.011834140866995,0.083248093724251,0.037819009274244],[-0.054901707917452,0.0056654126383364,0.029840998351574]],[[0.076801761984825,0.0027666434179991,-0.026719441637397],[-0.043077640235424,-0.013983608223498,0.027053479105234],[-0.019355984404683,-0.034533709287643,0.0084507968276739]],[[0.00020226085325703,0.035293709486723,-0.013060529716313],[0.0093965204432607,-0.0022102033253759,-0.041530419141054],[0.0094177043065429,0.062493667006493,-0.0045865699648857]],[[0.049939345568419,-0.039790216833353,-0.02855746820569],[0.045572336763144,-0.031239353120327,-0.0037929306272417],[0.011744160205126,0.022288091480732,-0.017638832330704]],[[-0.043658267706633,-0.018262267112732,-0.0093752071261406],[-0.033036407083273,-0.0056755486875772,0.013471866957843],[-0.024666059762239,-0.0034507401287556,-0.044129699468613]],[[0.043726727366447,-0.0023761391639709,0.061123508960009],[0.0094990776851773,0.042815990746021,0.011192061007023],[0.026088220998645,0.039837878197432,-0.026441933587193]],[[0.04355001822114,0.0021668081171811,-0.059090726077557],[-0.017271131277084,-0.015298492275178,-0.017730619758368],[0.057945571839809,0.043227963149548,0.0056527578271925]],[[0.012996934354305,-0.057523272931576,0.0079186484217644],[0.010980256833136,-0.022205574437976,-0.075615875422955],[0.022465251386166,-0.043427757918835,0.039136484265327]],[[0.0092634139582515,-0.037703808397055,0.072602465748787],[-0.012235043570399,-0.010996061377227,0.037992741912603],[0.0065331654623151,0.04500687122345,-0.0056797093711793]],[[0.010402648709714,-0.011522465385497,0.018355643376708],[0.030271530151367,0.04581255838275,-0.0095344660803676],[0.0080307284370065,0.055880732834339,0.029191644862294]],[[-0.056328047066927,0.032203502953053,-0.01820725761354],[0.031731657683849,0.03061586804688,0.040111169219017],[0.00020320093608461,0.029385972768068,0.033890873193741]],[[-0.092713803052902,0.023716362193227,-0.009332406334579],[0.022642849013209,-0.0010402271291241,0.054385557770729],[-0.0095194568857551,0.032412234693766,-0.028847685083747]],[[-0.0061158007010818,0.0052720927633345,0.042544290423393],[-0.02162972278893,-0.025770088657737,0.0034612729214132],[0.0060155834071338,0.0050662057474256,0.017919475212693]],[[-0.011708000674844,0.029640091583133,0.0015187740791589],[-0.08745089918375,0.0067217783071101,0.0094427755102515],[0.023506512865424,0.028512230142951,-0.0148481791839]],[[-0.035688184201717,-0.032640516757965,0.046487912535667],[0.06043703481555,0.035876013338566,-0.026653651148081],[-0.016050426289439,-0.029429299756885,0.016694031655788]],[[-0.037562657147646,-0.048454951494932,0.034674629569054],[0.0051073334179819,0.012445604428649,0.051679067313671],[0.010976276360452,-0.017275661230087,0.0034015255514532]],[[0.01866758055985,-0.017454706132412,0.030191643163562],[0.030348746106029,0.011812309734523,-0.060079257935286],[0.05289276316762,-0.042522169649601,-0.015012910589576]],[[0.00027242177748121,0.01296579092741,-0.066534020006657],[-0.04983364418149,0.061672292649746,-0.010320802219212],[0.0069881957024336,-0.04865999892354,-0.024181921035051]],[[-0.018891327083111,0.013854512013495,-0.010400147177279],[0.049239594489336,0.017459388822317,0.017091244459152],[0.0033353783655912,0.025969084352255,-0.06983870267868]],[[-0.017350982874632,-0.11835142970085,0.063839174807072],[0.01990233361721,-0.014803159050643,0.0040303766727448],[0.075671873986721,0.038503754884005,0.087802700698376]],[[-0.015970246866345,-0.0032824680674821,-0.03847573697567],[0.029347324743867,0.012600708752871,-0.030220532789826],[0.017659014090896,-0.011397331953049,0.010562132112682]],[[0.0089176688343287,-0.00079905957682058,-0.01489389128983],[0.054582327604294,-0.00674510281533,0.03143160790205],[0.0067653763107955,0.018689436838031,-0.0036926742177457]],[[-0.05109866335988,-0.052999004721642,0.0005916974041611],[0.04146846011281,-0.06185119971633,-0.038900624960661],[-0.049848113209009,-0.038646850734949,-0.023283272981644]],[[0.064465694129467,0.030901221558452,0.0072227460332215],[-0.031420391052961,0.0048846020363271,0.012949916534126],[-0.005396940279752,0.029577638953924,-0.007070112042129]],[[-0.0054178824648261,-0.098369218409061,-0.011397901922464],[0.043384991586208,-0.0073986500501633,5.6825276260497e-05],[0.01053723320365,-0.0049783363938332,0.0027088432107121]],[[0.063601270318031,0.10312257707119,-0.0070431036874652],[0.048208646476269,-0.0076117590069771,-0.027097379788756],[0.067173734307289,0.014031075872481,0.021906405687332]],[[0.0029642551671714,0.0084772100672126,0.067111164331436],[0.0031664408743382,0.02079750597477,-0.010164586827159],[-0.0055525726638734,0.079247787594795,-0.049727961421013]],[[0.030704148113728,0.0047790785320103,0.019406139850616],[0.023850498721004,-0.079516679048538,0.0021035268437117],[0.067033641040325,0.045532070100307,0.029464101418853]],[[0.071243315935135,0.0060853641480207,-0.017168091610074],[0.095954567193985,-0.023929487913847,-0.017772473394871],[-0.029902627691627,0.0031572415027767,0.021524652838707]],[[0.0075902580283582,0.047468319535255,0.033203236758709],[0.034687589854002,0.092721596360207,-0.016606980934739],[0.040282346308231,0.042964778840542,-0.03066261857748]],[[0.066946066915989,0.012165216729045,0.0071554705500603],[0.022686891257763,-0.016511766240001,-0.021568465977907],[-0.039756145328283,0.02521125972271,0.024555431678891]],[[-0.032387524843216,-0.039100877940655,-0.028656087815762],[-0.015854122117162,0.0070120119489729,-0.0033286917023361],[0.072008118033409,0.0097012864425778,-0.039712868630886]],[[0.035790983587503,0.093469448387623,0.0012092497199774],[0.0059159612283111,0.0082397861406207,-0.014599956572056],[0.026207908987999,0.061621647328138,0.0058754491619766]],[[0.02706403285265,0.047102484852076,0.021528966724873],[0.0021331645548344,0.035498537123203,-0.0086031183600426],[-0.020990943536162,0.039042931050062,0.021314539015293]],[[0.029179453849792,0.082179740071297,0.049138806760311],[-0.02359938621521,0.0013287315377966,0.064378179609776],[0.11302302777767,-0.057169865816832,0.099992007017136]],[[0.035649430006742,0.042846985161304,0.020190229639411],[0.039102338254452,-0.039311684668064,-0.0075507205910981],[0.0045470530167222,-0.0036586944479495,0.014063675887883]],[[0.047102689743042,-0.032076247036457,-0.0060223522596061],[-0.025989273563027,0.015963478013873,-0.024339554831386],[0.044892463833094,-0.051877900958061,0.015286483801901]],[[0.092555075883865,-0.021867722272873,-0.0065366239286959],[0.044321082532406,0.007499654777348,-0.02287832275033],[-0.019561190158129,0.0057993703521788,-0.047921270132065]],[[0.051038414239883,0.056927517056465,-0.054014164954424],[-0.019699212163687,0.0016524941893294,0.0056186858564615],[-0.05152715742588,0.058962158858776,-0.012758821249008]],[[-0.075868181884289,0.011754238046706,-0.052319139242172],[-0.068066313862801,0.028102327138186,-0.022777825593948],[-0.0055477065034211,-0.011278274469078,0.017600620165467]],[[0.0114526161924,0.090940207242966,-0.0022514518350363],[-0.014515096321702,-0.024276467040181,-0.022379392758012],[0.020841795951128,0.012686510570347,-0.066334396600723]],[[-0.041358083486557,-0.0052483859471977,-0.025031980127096],[-0.015159760601819,0.0098095890134573,0.052968934178352],[-0.068753339350224,0.04128510132432,-0.080765046179295]],[[-0.084233708679676,-0.040922425687313,-0.050196271389723],[0.018145453184843,-0.032394271343946,0.029002608731389],[-0.051821779459715,0.016916241496801,-0.020540822297335]],[[0.0040219817310572,-0.0074160574004054,-0.026777766644955],[-0.027455734089017,0.0029422154184431,0.014732591807842],[-0.029910566285253,0.014492869377136,-0.012842409312725]],[[0.080792441964149,0.057684786617756,-0.05400001257658],[0.033940304070711,0.036368865519762,-0.076692439615726],[0.057531990110874,0.030456092208624,0.005613868124783]],[[0.024251686409116,0.035090573132038,0.0223434176296],[0.023969167843461,0.071624740958214,0.023797841742635],[-0.051368445158005,-0.019526490941644,0.0031407033093274]],[[-0.036806914955378,-0.0050817504525185,-0.004654775839299],[-0.055160909891129,0.0206144079566,-0.016407767310739],[-0.0127666098997,0.042167510837317,0.069777645170689]],[[0.015228719450533,0.038718946278095,-0.044471260160208],[0.025332545861602,0.012697223573923,0.045255344361067],[0.081500746309757,0.054627574980259,0.07226737588644]],[[-0.091475009918213,-0.022584592923522,0.050846897065639],[0.12491473555565,-0.0080945948138833,0.054571438580751],[-0.053274169564247,-0.019073110073805,0.054544761776924]],[[0.010677522048354,-0.020468128845096,-0.0077276919037104],[-0.0033421730622649,-0.056256022304296,-0.019586246460676],[-0.06745433807373,-0.038818303495646,-0.014478514902294]],[[-0.016578665003181,0.0084966542199254,0.039263039827347],[-0.011521679349244,-0.020704785361886,-0.035524070262909],[0.0048393686302006,-0.010985848493874,0.0094047756865621]],[[0.028950208798051,0.018751539289951,-0.053498774766922],[-0.0044468734413385,0.061904534697533,-0.007243771571666],[0.019095776602626,-0.0034573031589389,-0.0021937524434179]],[[0.0071370457299054,0.023099606856704,0.029441179707646],[0.017798017710447,0.012770994566381,-0.0030998243018985],[-0.028529344126582,-0.0027120159938931,-0.0070669972337782]],[[-0.02240757457912,0.057112451642752,-0.037814140319824],[-0.024044072255492,0.00046263326657936,0.017613777890801],[0.012298920191824,0.032040972262621,0.037528492510319]],[[-0.019462492316961,0.082357354462147,0.01837444677949],[-0.041089691221714,0.060638483613729,0.020968379452825],[0.027693644165993,-0.01392010692507,0.041157491505146]],[[-0.016611529514194,0.014151042327285,0.029814230278134],[-0.0062706344760954,0.048125620931387,0.015888687223196],[0.0047286082990468,0.017952658236027,0.0038637625984848]]],[[[-0.0011275368742645,-0.00061812734929845,-0.036693587899208],[-0.0069212056696415,-0.020912799984217,0.041685562580824],[-0.0022988345008343,-0.0041579720564187,0.039892766624689]],[[0.00050570862367749,-0.019146891310811,-0.0054285731166601],[0.02473090775311,0.015078153461218,0.070387825369835],[-0.026409417390823,0.011084181256592,-0.0023174788802862]],[[-0.032894395291805,0.088960833847523,-0.010531566105783],[-0.026625733822584,0.048781454563141,0.025186650454998],[-0.039921250194311,0.036566235125065,-0.040586818009615]],[[-0.022177336737514,-0.056372031569481,-0.060377046465874],[0.010669637471437,0.030447687953711,0.057026337832212],[-0.024898067116737,0.01771872676909,0.088778555393219]],[[-0.020636588335037,-0.0014671819517389,0.022356379777193],[-0.026553731411695,0.02188847027719,-0.079729877412319],[0.048780757933855,0.03126759454608,0.084922775626183]],[[0.047158669680357,0.020759306848049,0.064041368663311],[0.046581353992224,-0.073276147246361,0.034914642572403],[-0.002695074537769,-0.0015479383291677,0.00080133666051552]],[[0.072539255023003,0.0021121453028172,0.0032910516019911],[-0.038869507610798,0.041754983365536,-0.03350605070591],[-0.037185374647379,-0.13044507801533,0.055905025452375]],[[0.056882828474045,-0.051649369299412,-0.013233023695648],[-0.0029385362286121,-0.013686741702259,-0.078209653496742],[0.015600922517478,0.1055276915431,-0.020498922094703]],[[0.053662769496441,0.030101289972663,-0.0068405573256314],[0.0021803821437061,0.055031903088093,0.027238506823778],[0.0018285867990926,-0.084803715348244,-0.020349089056253]],[[-0.035831093788147,0.061854939907789,0.014406185597181],[-0.002801580587402,-0.031248604878783,0.012829619459808],[-0.090764090418816,-0.021562838926911,0.032540038228035]],[[-0.018127286806703,0.021775033324957,-0.011473594233394],[-0.042947720736265,-0.0034687446895987,-0.031935065984726],[0.03340020775795,0.0071444222703576,0.024992445483804]],[[0.0037194415926933,0.041633531451225,0.019717920571566],[-0.0019170879386365,0.014709538780153,-0.095037527382374],[0.0095196692273021,-0.0086176590994,-0.022488122805953]],[[0.018746130168438,0.032322484999895,-0.044102445244789],[0.043102793395519,-0.051208440214396,-0.017970770597458],[0.0097586028277874,0.0097253527492285,0.043719511479139]],[[0.016665082424879,0.076288618147373,0.007635110989213],[0.021015204489231,-0.0076373023912311,-0.043859522789717],[0.030221842229366,0.068592771887779,-0.03063584305346]],[[-0.031044228002429,-0.011398977600038,0.011017491109669],[-0.031724203377962,0.066180467605591,0.039065439254045],[-0.017026187852025,-0.024563709273934,-0.038920007646084]],[[-0.011346518993378,-0.003922002390027,0.021393893286586],[0.017356446012855,-0.018304800614715,0.01283947005868],[0.037312913686037,-0.025974180549383,-0.010791847482324]],[[0.032016783952713,0.06051217019558,-0.025498613715172],[0.02985611744225,-0.058947272598743,-0.033449195325375],[0.029768399894238,-0.0080931130796671,0.039334356784821]],[[-0.010300662368536,0.022972032427788,0.01655288785696],[-0.056406103074551,-0.014337791129947,-0.062855131924152],[-0.059993706643581,-0.032891184091568,-0.0040107700042427]],[[0.047441188246012,-0.0041924226097763,0.0090585127472878],[0.017336994409561,-0.028452420607209,0.050586346536875],[0.037058357149363,-0.023447681218386,-0.0060568787157536]],[[-0.020011872053146,0.02616323158145,0.05348739400506],[0.0015963059850037,-0.090880200266838,0.044554062187672],[-0.0081941531971097,0.092900775372982,-0.091229803860188]],[[0.019653346389532,-0.00056207907618955,-0.030036313459277],[0.014328647404909,0.038716733455658,-0.044862013310194],[0.060817286372185,0.01750966720283,-0.033629462122917]],[[0.01310212071985,0.019857972860336,0.013270013034344],[0.03366794064641,-0.051755379885435,-0.02447996661067],[0.040511891245842,-0.037871852517128,-0.0056161298416555]],[[-0.0074702301062644,0.010251789353788,0.036642823368311],[0.029097661375999,0.016958445310593,0.00075423758244142],[-0.024558989331126,-0.047737915068865,0.028985584154725]],[[-0.025224674493074,0.035950839519501,-0.024323841556907],[0.025897791609168,0.03285450860858,0.10355443507433],[0.021142473444343,0.0045618643052876,0.020413434132934]],[[0.021612986922264,-0.028374470770359,0.094733640551567],[-0.045789830386639,-0.06687293201685,0.0055726482532918],[0.096647568047047,0.04977760463953,-0.0085751432925463]],[[-0.035439874976873,-0.028795164078474,-0.0049784830771387],[-0.039574451744556,0.088040895760059,0.04174005240202],[0.02275237813592,0.0043219993822277,0.059998616576195]],[[-0.012389928102493,-0.059576317667961,0.079893231391907],[-0.03932498767972,0.05901600047946,0.0037863817997277],[0.051752563565969,0.035251624882221,0.011577734723687]],[[-0.019773012027144,0.013175769709051,-0.026162590831518],[0.018572730943561,-0.09143503755331,-0.036081425845623],[-0.056510996073484,-0.013663729652762,0.0075015979819]],[[0.016832545399666,-0.034717459231615,0.063031204044819],[-0.0093852942809463,-0.049156624823809,-0.037528280168772],[-0.054733898490667,-0.013946762308478,0.012583650648594]],[[-0.079253785312176,0.029606342315674,-0.0083708809688687],[-0.046253073960543,-0.081296615302563,-0.051070168614388],[-0.0045110494829714,-0.052482023835182,0.07012002915144]],[[-0.01477596256882,0.029040584340692,0.020172977820039],[-0.062153611332178,0.025674549862742,0.014153707772493],[0.070761688053608,0.056100506335497,-0.022176397964358]],[[-0.065353110432625,-0.0097556440159678,0.0099248299375176],[-0.04194512963295,-0.038296829909086,-0.092786058783531],[0.034777913242579,-0.031141808256507,0.025182606652379]],[[-0.016348116099834,0.056851342320442,0.052741900086403],[-0.079438202083111,0.011073556728661,0.050919525325298],[0.018939772620797,0.090682052075863,-0.039846822619438]],[[0.023167746141553,0.028732776641846,-0.03501209244132],[-0.073957212269306,-0.085585862398148,0.01073756814003],[0.030553139746189,0.051379822194576,0.14205704629421]],[[-0.011869878508151,-0.01852129586041,0.054350096732378],[0.016477471217513,-0.037832338362932,0.029223846271634],[0.059905715286732,0.021511094644666,0.049874097108841]],[[0.025527220219374,0.063063196837902,-0.016673054546118],[0.022891148924828,0.0063824225217104,0.059160925447941],[-0.017620161175728,-0.039268955588341,-0.029828341677785]],[[0.009220770560205,-0.022213092073798,0.018445432186127],[-0.025686383247375,0.016891926527023,0.004475072491914],[-0.0055596730671823,0.02792658470571,0.018205692991614]],[[-0.1059302687645,0.0282525382936,0.083226256072521],[0.017438508570194,-0.011785317212343,-0.083781100809574],[0.016214139759541,-0.045430831611156,0.013352698646486]],[[0.0087235793471336,-0.027725569903851,-0.012074475176632],[0.042711578309536,-0.045515518635511,0.0055181691423059],[0.02636375464499,-0.09955433011055,0.012871243990958]],[[0.017679633572698,-0.018320791423321,0.014766791835427],[0.032412130385637,-0.0092902071774006,0.036387447267771],[-0.018970614299178,0.008611804805696,0.040614631026983]],[[0.0025763174053282,0.047454535961151,0.019093904644251],[-0.0097633469849825,0.070959582924843,0.082093879580498],[-0.07141787558794,-0.099845014512539,-0.042618166655302]],[[-0.038865223526955,0.005043760407716,0.012945454567671],[0.032043993473053,0.02686426229775,0.046646047383547],[0.048587195575237,-0.10724923759699,0.075417414307594]],[[-0.056023128330708,0.062801212072372,0.098235376179218],[0.027923287823796,0.062254693359137,0.014535471796989],[-0.0033479649573565,0.091734230518341,0.10001674294472]],[[0.048648875206709,0.0059448364190757,-0.00020633143140003],[0.035134334117174,-0.011758523993194,-0.030932860448956],[0.025884352624416,0.0013362511526793,-0.066499479115009]],[[-0.019535731524229,0.077761933207512,-0.033737748861313],[0.0033188906963915,0.022215344011784,0.012324398383498],[0.018290800973773,0.010861586779356,-0.034041054546833]],[[0.076784834265709,0.063743598759174,0.016788564622402],[0.040585968643427,0.0097140045836568,0.00015841468120925],[-0.044495776295662,0.072671987116337,0.074437119066715]],[[-0.0024424279108644,-0.025239631533623,0.039301034063101],[0.10099305957556,0.034024674445391,0.01882098056376],[-0.054253283888102,0.073329091072083,-0.014593475498259]],[[0.0023647020570934,-0.056056391447783,-0.080728240311146],[-0.020842591300607,0.022017525509,-0.021028527989984],[-0.0026993185747415,0.0055245342664421,-0.078928396105766]],[[-0.081118457019329,-0.0097090229392052,-0.035572867840528],[-0.022972784936428,0.031328864395618,-0.078410044312477],[0.010271587409079,-0.06739604473114,0.026714146137238]],[[-0.017418712377548,-0.0095604797825217,-0.049168098717928],[0.0021472065709531,-0.020402833819389,0.016734447330236],[-0.046597789973021,0.035270638763905,0.018317326903343]],[[0.028252920135856,0.04516215249896,-0.05818498134613],[0.09696476906538,0.033544931560755,-0.010189659893513],[0.087055072188377,-0.0023299835156649,0.027476646006107]],[[0.065201692283154,0.020629046484828,0.020209245383739],[0.056495260447264,-0.023545563220978,-0.053865659981966],[0.017520815134048,0.02502185665071,-0.027485629543662]],[[-0.023975353688002,-0.056392103433609,0.039967782795429],[-0.1269636452198,0.0200668964535,0.024404108524323],[-0.055300429463387,-0.0089159235358238,-0.059488166123629]],[[0.064750112593174,-0.028205424547195,0.037558499723673],[-0.014418012462556,0.051807776093483,0.038195554167032],[0.042423464357853,0.094208262860775,0.070450469851494]],[[0.040424227714539,0.024396806955338,-0.037735156714916],[0.083987556397915,0.046569533646107,-0.0067852730862796],[0.050092231482267,0.010480700060725,0.01161715388298]],[[0.045358434319496,-0.036613676697016,-0.11676982790232],[0.030159736052155,0.017885724082589,0.00056357547873631],[0.051148448139429,-0.051037065684795,0.045643746852875]],[[-0.04253239557147,0.10959260910749,-0.034426543861628],[0.02466737665236,0.078193478286266,0.054392918944359],[0.012513488531113,0.03805997222662,0.019862277433276]],[[-0.063680849969387,-0.038339141756296,0.0053678825497627],[0.0075856442563236,-0.060165449976921,-0.035453416407108],[0.039015721529722,0.0060280719771981,-0.033472631126642]],[[-0.0093586314469576,-0.078938640654087,-0.025911429896951],[0.050201088190079,0.073169268667698,0.017543947324157],[-0.00074223265983164,0.0091797187924385,0.010513843968511]],[[0.075918026268482,0.051994130015373,0.079168818891048],[0.0025919540785253,0.02392054349184,-0.0018698297208175],[0.021244270727038,0.027307044714689,0.010387638583779]],[[-0.040674801915884,-0.083642810583115,0.062496446073055],[0.016978723928332,-0.0062857773154974,-0.044357217848301],[0.010936027392745,-0.026111928746104,-0.05263514071703]],[[0.029909120872617,-0.017384445294738,0.056259922683239],[0.018192825838923,-0.021324068307877,0.026485932990909],[0.030036585405469,-0.033006239682436,-0.0039701024070382]],[[-0.021484328433871,-0.017430577427149,-0.019957443699241],[-0.033640027046204,0.028706546872854,0.063356086611748],[0.043129663914442,-0.051767367869616,-0.042622949928045]],[[0.001470270100981,-0.071016401052475,-0.076141446828842],[0.034737404435873,0.022389994934201,-0.032993663102388],[-0.015536209568381,-0.027877394109964,0.0055504580959678]],[[0.05108954384923,0.024683235213161,0.024734407663345],[-0.043420072644949,-0.016794433817267,0.029774146154523],[-0.036386612802744,0.064306266605854,0.026799008250237]],[[0.04861781001091,-0.04449500516057,0.11227624118328],[0.057781834155321,0.022151915356517,0.020945662632585],[0.0067141936160624,0.022858275100589,0.069704599678516]],[[0.036422226577997,-0.0089231980964541,-0.012667738832533],[0.049956686794758,-0.019554598256946,-0.040466662496328],[0.041277050971985,0.079486757516861,0.0058092777617276]],[[-0.059898640960455,-0.00040994133451022,-0.0050391927361488],[-0.050423197448254,-0.0208476241678,-0.014890105463564],[-0.00027474531088956,-0.0079265162348747,-0.0013692363863811]],[[-0.014006664045155,0.067290782928467,0.060813896358013],[-0.02690595202148,0.050704948604107,0.0091563034802675],[0.0094074700027704,-0.019404504448175,0.04843320697546]],[[0.078512638807297,0.022840129211545,-0.029509328305721],[0.065364137291908,0.0056764734908938,0.074730582535267],[0.0063007976859808,0.0057909325696528,-0.039122685790062]],[[0.093326762318611,0.050789758563042,0.081816181540489],[-0.011197848245502,-0.00090374046703801,-0.002276323037222],[0.056392658501863,0.04231108725071,0.016981577500701]],[[0.047459803521633,0.037171583622694,0.015334442257881],[0.052664503455162,-0.078859619796276,-0.10719130933285],[-0.026508903130889,0.028998631983995,-0.019025344401598]],[[-0.079850442707539,-0.066294148564339,-0.013718262314796],[-0.0082294773310423,-0.082907974720001,-0.033410247415304],[0.017945116385818,-0.029951773583889,0.033464159816504]],[[-0.014250960201025,0.0027467331383377,-0.0058144014328718],[-0.00087242876179516,0.00065933377481997,-0.07189579308033],[0.023668691515923,-0.020470762625337,-0.052191816270351]],[[0.011230473406613,0.02535399235785,-0.0036038078833371],[-0.030555412173271,-0.0059940167702734,-0.037310138344765],[-0.0049090185202658,0.01983211748302,0.024754630401731]],[[0.065309785306454,-0.040085081011057,-0.0092972936108708],[0.040547426789999,-0.039171170443296,-0.060477178543806],[0.023581130430102,-0.081307493150234,-0.037355605512857]],[[0.017865845933557,-0.020318174734712,0.012005773372948],[-0.0060194977559149,-0.077084228396416,-0.050514247268438],[-0.040965661406517,-0.0055109127424657,-0.0091417394578457]],[[0.056549992412329,0.07808218896389,-0.033261839300394],[-0.033249668776989,0.0023705798666924,0.015858074650168],[-0.0092155989259481,0.020189052447677,0.066034071147442]],[[0.049778129905462,0.025765597820282,0.070495575666428],[0.11258883029222,-0.019731692969799,-0.00064532354008406],[0.05670302733779,-0.064872942864895,0.0099391108378768]],[[0.037239737808704,0.0067087612114847,0.042504478245974],[0.057902198284864,-0.058257486671209,0.025412445887923],[-0.0043958839960396,-0.040904108434916,-0.042605277150869]],[[-0.050312958657742,-0.0074821142479777,0.01754873432219],[-0.014219663105905,-0.03441496193409,-0.0094967028126121],[0.00056725268950686,0.012519456446171,-0.042854841798544]],[[0.022501200437546,0.013199239969254,0.041764583438635],[-0.0034189671278,0.097582720220089,0.035421747714281],[-0.026310319080949,0.011729594320059,-0.0028076816815883]],[[-0.09402334690094,-0.052304368466139,0.026551872491837],[0.025069462135434,0.0021873272489756,-0.053350292146206],[-0.014357915148139,0.035584278404713,0.04140231013298]],[[-0.03620083630085,0.023942243307829,-0.049332976341248],[-0.012612062506378,0.0020136549137533,0.032566368579865],[0.044129773974419,0.097989588975906,0.029559370130301]],[[0.0052163912914693,0.014661159366369,0.040632538497448],[-0.0056821908801794,0.035243902355433,-0.026840088889003],[0.08049663156271,0.024252261966467,0.01695260219276]],[[-0.026220396161079,0.0073643936775625,0.032441828399897],[-0.057783234864473,-0.015324039384723,-0.018286183476448],[-0.048911634832621,0.015088424086571,0.070535697042942]],[[0.10240313410759,0.11758707463741,0.022887270897627],[-0.012185941450298,-0.028146350756288,-0.039452288299799],[0.034075312316418,0.0804153829813,-0.010722115635872]],[[-0.019327383488417,0.015382764860988,-0.012961708940566],[0.03219610825181,0.070360325276852,-0.0264684073627],[-0.068335175514221,0.016968790441751,-0.033622212707996]],[[0.030172690749168,0.068979561328888,0.046041678637266],[-0.027721641585231,0.028644390404224,-0.012688597664237],[-0.010593159124255,-0.012645661830902,0.084852531552315]],[[-0.031141418963671,0.052163649350405,-0.02961940318346],[-0.0091595211997628,0.028103530406952,-0.0059989099390805],[-0.015908401459455,0.00036662965430878,-0.012213403359056]],[[0.025349227711558,-0.0012792701600119,-0.035596553236246],[0.042430236935616,0.029263513162732,0.019748516380787],[-0.050674069672823,0.0053008757531643,-0.024248572066426]],[[-0.051876995712519,-0.12353108823299,0.021606802940369],[0.03277949988842,0.05222337692976,-0.012504203245044],[-0.030967758968472,-0.028607277199626,-0.048710267990828]],[[-0.049233481287956,-0.053155761212111,0.027532048523426],[0.045516978949308,0.015498531982303,0.026358032599092],[0.0015572218690068,-0.010242572054267,-0.077178217470646]],[[-0.023681914433837,0.0027271972503513,0.040652986615896],[0.022241147235036,0.0014560871059075,0.040883556008339],[0.032208397984505,-0.01188038289547,0.019817208871245]],[[-0.034679602831602,-0.0045487391762435,-0.041096694767475],[0.019554223865271,-0.019426707178354,-0.033604688942432],[0.0059499908238649,-0.06485491245985,0.010738671757281]],[[-0.036472909152508,-0.032902229577303,0.027641016989946],[-0.0078634144738317,-0.0018645266536623,0.019832907244563],[-0.018573148176074,-0.021691132336855,-0.014246395789087]],[[0.049705117940903,0.083246566355228,-0.016498098149896],[-0.011577087454498,-0.026518659666181,-0.029274752363563],[0.035778660327196,0.05112861096859,0.0057215858250856]],[[0.019487867131829,-0.045139268040657,0.070352859795094],[0.018384465947747,-0.019749965518713,0.036933470517397],[-0.017419748008251,0.03267178311944,0.088343821465969]],[[0.071282662451267,0.023407161235809,0.047382019460201],[-0.017640488222241,-0.011810225434601,-0.026951219886541],[0.022844891995192,-0.026681086048484,-0.010995124466717]],[[0.036969352513552,-0.019074350595474,0.0056645316071808],[0.11745688319206,0.084486939013004,0.042753301560879],[-0.0037115912418813,-0.069636702537537,-0.018917767331004]],[[-0.059212706983089,0.0064471168443561,0.024814801290631],[0.010985634289682,-0.085352972149849,-0.045796319842339],[-0.02504968829453,0.019800053909421,0.016318308189511]],[[0.016965312883258,-0.042029768228531,-0.043150551617146],[0.013490366749465,-0.055757459253073,0.081330053508282],[0.00059947528643534,0.0031998704653233,0.054096914827824]],[[-0.038125738501549,0.018412401899695,0.015791930258274],[0.004765696823597,0.074110224843025,-0.019717546179891],[0.012046056799591,0.021548518911004,0.012013781815767]],[[-0.11940317600965,-0.046991392970085,-0.011063265614212],[-0.012094366364181,0.00029052639729343,-0.029384909197688],[-0.014915077015758,0.0012770482571796,-0.02723185531795]],[[0.0064364224672318,0.022779230028391,0.037419237196445],[0.069127939641476,-0.0094149885699153,0.026973310858011],[0.050552919507027,-0.032099656760693,0.024002274498343]],[[-0.017586192116141,0.049006562680006,-0.018016822636127],[-0.049926616251469,-0.044699065387249,0.0057171313092113],[-0.017346806824207,-0.0033902944996953,0.013893174938858]],[[0.049538169056177,0.064885035157204,-0.029989536851645],[0.093380443751812,0.02770865522325,-0.012069622986019],[0.0020879197400063,-0.066600322723389,0.041997782886028]],[[-0.070786483585835,-0.045288719236851,0.054783806204796],[-0.019113777205348,-0.0048407423309982,0.01999787800014],[0.010316411033273,-0.01216556597501,-0.042463131248951]],[[-0.039431009441614,-0.00445899926126,-0.041277889162302],[0.047307912260294,-0.035021763294935,-0.047365188598633],[-0.026527093723416,-0.04538194835186,-0.024235378950834]],[[-0.051387000828981,0.021926870569587,0.0044953017495573],[0.051296155899763,0.065519519150257,0.045386783778667],[0.012354634702206,0.016077894717455,0.0061487331986427]],[[-0.071404188871384,-0.020565968006849,0.010144107043743],[-0.044533330947161,0.010345477610826,0.047878473997116],[0.0062191621400416,0.027049519121647,-0.011809733696282]],[[-0.064128272235394,-0.05113772675395,0.010162524878979],[-0.037158939987421,0.012217943556607,0.097976744174957],[0.034586776047945,0.068054884672165,-0.045851528644562]],[[-0.029517695307732,-0.049823742359877,-0.075769692659378],[-0.034168548882008,0.022325752303004,0.0043432894162834],[-0.00021572937839665,-0.15663631260395,-0.026101898401976]],[[-0.078883893787861,-0.069560833275318,-0.031712051481009],[-0.046268198639154,-0.025186205282807,0.09670327603817],[0.021137619391084,0.0050923433154821,-0.036322608590126]],[[-0.0045592142269015,-0.02319023385644,-0.00076306820847094],[-0.011003280058503,0.02561960183084,-0.049114320427179],[0.010659356601536,-0.050398748368025,-0.032192025333643]],[[0.015668818727136,-0.036439828574657,0.079002365469933],[-0.022968713194132,0.033503513783216,-0.064325101673603],[0.017220977693796,-0.041987095028162,-0.031826667487621]],[[-0.029686653986573,0.011749680154026,-0.004518901463598],[0.010156631469727,0.034980498254299,-0.0033418405801058],[-0.0090225804597139,-0.047807201743126,0.014788630418479]],[[-0.031640015542507,0.019265597686172,-0.041914399713278],[0.026719672605395,-0.027777906507254,-0.085718661546707],[-0.028897123411298,-0.029088292270899,-0.010483387857676]],[[-0.077509365975857,-0.057280752807856,-0.036083921790123],[-0.064632371068001,0.051888193935156,0.027696052566171],[0.01713733933866,0.05678191408515,-0.010690638795495]],[[0.048853941261768,0.026060696691275,0.0086857872083783],[0.031130524352193,0.035344164818525,0.069317653775215],[0.024538978934288,0.0059433151036501,0.034401036798954]],[[0.0017976295202971,0.01026841904968,-0.049700003117323],[-0.0082557843998075,-0.02754639275372,-0.022617859765887],[-0.049932766705751,0.01846931502223,0.0063717607408762]],[[-0.061876103281975,-0.0096003552898765,-0.036382392048836],[0.0061799571849406,-0.0059999534860253,-0.018362961709499],[0.0013948518317193,0.010277712717652,0.034321919083595]],[[-0.021333836019039,-0.00068227417068556,0.014902899041772],[0.020763738080859,-0.037590052932501,-0.096944026648998],[-0.0050628236494958,0.0088034216314554,-0.0096290884539485]],[[0.019931605085731,0.019581664353609,0.024938220158219],[0.005648750346154,-0.036776077002287,-0.07873310893774],[0.041797406971455,-0.035860989242792,-0.0097087444737554]],[[-0.022536013275385,-0.10807315260172,0.052118502557278],[0.015120105817914,-0.0086944047361612,0.044623456895351],[0.074876263737679,0.019166270270944,0.043172009289265]],[[0.031791664659977,0.034189727157354,0.0040761125274003],[-0.048496793955564,0.046036373823881,0.032922022044659],[0.017969239503145,0.050667699426413,0.01089318934828]],[[-0.10086899995804,0.0037432899698615,0.0024547160137445],[0.032934013754129,0.0029465903062373,-0.034298729151487],[0.020685588940978,0.081159301102161,-0.057823557406664]],[[0.008342070505023,-0.0030304864048958,0.026891076937318],[0.072150513529778,0.084143251180649,-0.007022253703326],[0.033301789313555,-0.020487988367677,0.0052700312808156]]],[[[0.057665392756462,-0.025771209970117,0.080668888986111],[0.034705005586147,0.076501071453094,-0.04753427952528],[0.069102227687836,-0.068430006504059,0.060709532350302]],[[-0.077236361801624,0.01849746145308,0.010102080181241],[-0.01973937638104,-0.098397061228752,-0.048753887414932],[0.066608659923077,-0.035994838923216,-0.13842782378197]],[[0.0090791042894125,-0.12529630959034,0.0077503314241767],[0.05324424803257,-0.007249919231981,-0.089435175061226],[0.040430784225464,-0.013623996637762,0.00090499612269923]],[[0.098643891513348,0.043242000043392,0.064370535314083],[0.011682366020977,-0.013929483480752,-0.08195736259222],[0.022013677284122,-0.03377228602767,-0.012308927252889]],[[-0.025916242972016,0.048237182199955,0.035262402147055],[-0.054331757128239,0.029409678652883,0.0038922079838812],[-0.12394639849663,-0.049755278974771,0.044722072780132]],[[0.0024613887071609,0.0060024508275092,0.018049795180559],[-0.0058409818448126,-0.0064880577847362,0.038909517228603],[0.014889621175826,0.090123362839222,-0.036534987390041]],[[0.02242130972445,-0.0078658722341061,0.050766255706549],[0.013913008384407,-0.025542734190822,-0.020894631743431],[-0.074030503630638,0.013660371303558,0.016137842088938]],[[-0.093807093799114,0.12637677788734,-0.001255382434465],[-0.010547749698162,0.04297174140811,0.053648330271244],[-0.0088041583076119,0.022453842684627,0.071620017290115]],[[-0.099057391285896,0.008430459536612,0.025714321061969],[-0.017300529405475,-0.017034480348229,-0.038272578269243],[-0.012076407670975,0.035977229475975,0.035860236734152]],[[-0.074240922927856,-0.0062421052716672,0.045593347400427],[-0.058083642274141,0.022669857367873,-0.0025571659207344],[0.0035719047300518,0.037477277219296,0.047599241137505]],[[0.028129655867815,0.040961880236864,0.044950950890779],[-0.037396732717752,0.10279186069965,-0.079241245985031],[-0.025302033871412,-0.068992614746094,-0.024680269882083]],[[-0.065386034548283,0.016780540347099,-0.12254289537668],[-0.054391231387854,-0.03172517940402,0.041018772870302],[0.038130044937134,0.097401693463326,0.02560561709106]],[[-0.044112771749496,0.2228442132473,-0.0095354281365871],[0.0077378959394991,-0.021351497620344,0.035830676555634],[-0.029935235157609,-0.094031967222691,0.060922633856535]],[[0.020882740616798,-0.098737582564354,0.015070049092174],[0.027749320492148,-0.092966094613075,0.066804505884647],[-0.033949602395296,0.008955342695117,-0.023863729089499]],[[-0.073558554053307,0.00087342510232702,0.014705922454596],[-0.012647778727114,0.0019867457449436,-0.0018118418520316],[-0.024182867258787,0.021459488198161,-0.0086585087701678]],[[0.14886862039566,-0.070050500333309,0.0011140544665977],[-0.023342333734035,0.031915310770273,-0.049592949450016],[0.045064572244883,-0.015423157252371,0.0013892947463319]],[[-0.039235163480043,-0.085494659841061,-0.039271499961615],[0.01440195646137,-0.076264254748821,-0.036429740488529],[0.043777536600828,0.049371249973774,0.011945612728596]],[[-0.012288855388761,-0.0014956707600504,-0.049004141241312],[-0.088148601353168,-0.007266987580806,0.013396332040429],[-0.12381653487682,-0.049965184181929,-0.057305604219437]],[[-0.086171932518482,-0.089530423283577,-0.016309313476086],[-0.045408103615046,0.10728706419468,-0.061571087688208],[0.10800724476576,0.004420320969075,0.03778924420476]],[[-0.031878300011158,0.028178146108985,0.045728791505098],[-0.01537164952606,-0.0020986709278077,-0.019491109997034],[0.031025556847453,-0.10238273441792,0.054615207016468]],[[0.07958184927702,-0.094779297709465,-0.017065331339836],[0.021933363750577,-0.017955178394914,-0.10749018937349],[-0.016142131760716,0.018126599490643,-0.016987703740597]],[[0.063646979629993,-0.01020425837487,0.034232538193464],[-0.0052454005926847,0.02203119546175,0.0060555101372302],[0.033329613506794,-0.012869230471551,-0.12968887388706]],[[0.090148761868477,0.13389773666859,-0.086115524172783],[0.037668578326702,-0.09676156193018,-0.017930950969458],[0.010108539834619,-0.0072963614948094,0.026946375146508]],[[0.062574580311775,0.069557256996632,-0.031801849603653],[0.013049990870059,-0.090900041162968,0.014705735258758],[-0.070926986634731,-0.056458864361048,0.035101898014545]],[[0.050845306366682,-0.016185380518436,-0.048564091324806],[0.061187893152237,0.04980243742466,0.031037658452988],[0.0063958410173655,-0.057632077485323,-0.010538420639932]],[[-0.034069363027811,0.029750278219581,0.060869034379721],[0.010856023989618,0.033218059688807,-0.015370164066553],[-0.037526316940784,-0.0080170957371593,0.046231374144554]],[[0.055964011698961,0.11723877489567,-0.059025928378105],[0.068932250142097,0.0027073565870523,-0.045369576662779],[-0.083618834614754,0.072605818510056,-0.0031454681884497]],[[0.034268420189619,0.036068677902222,0.045905388891697],[0.024164551869035,-0.029657470062375,0.023498250171542],[0.018207870423794,0.081996127963066,-0.031151602044702]],[[-0.022707790136337,-0.076073333621025,-0.011814971454442],[0.020033927634358,-0.10239595174789,0.031677462160587],[0.014142788015306,-0.036324176937342,0.045299418270588]],[[0.023759497329593,-0.018683368340135,0.023963443934917],[0.07594433426857,-0.022158490493894,-0.0037726261653006],[0.010015862993896,-0.044228628277779,-0.097166001796722]],[[-0.0023086767178029,-0.030496859923005,0.033050391823053],[0.035415183752775,-0.0056868116371334,-0.0031406243797392],[-0.043694905936718,0.011410376057029,0.084119901061058]],[[-0.023524608463049,-0.011014930903912,0.037701729685068],[0.0052421456202865,-0.035460315644741,0.051815669983625],[0.050552412867546,0.0062890849076211,0.012134878896177]],[[0.081326529383659,0.1162828579545,-0.03791668638587],[0.011897520162165,-0.058466076850891,0.018929924815893],[-0.072524793446064,0.017963543534279,-0.059388771653175]],[[0.047833472490311,0.088908948004246,0.079148918390274],[0.065124966204166,-0.0096440780907869,0.092579446732998],[0.020907025784254,-0.0039743450470269,0.02361430041492]],[[0.031055202707648,-0.0056686871685088,-0.050390496850014],[0.00040208437712863,-0.10648592561483,0.089862734079361],[-0.022574154660106,0.067314706742764,-0.096227809786797]],[[0.081242360174656,-0.059826046228409,-0.070132240653038],[-0.11040034890175,0.0071685081347823,0.029673133045435],[-0.035261258482933,0.027648726478219,-0.018896343186498]],[[0.054836340248585,0.022992206737399,0.066068649291992],[0.090459533035755,-0.037687741219997,0.039073836058378],[0.01070782635361,-0.05190147459507,0.032083209604025]],[[0.063678652048111,0.033815912902355,0.064892329275608],[0.047391545027494,-0.055015537887812,-0.014665842056274],[-0.035918530076742,-0.055836893618107,0.023161446675658]],[[0.035626821219921,0.085116945207119,0.029501482844353],[-0.026380883529782,-0.0026841491926461,-0.10965346544981],[0.071048431098461,-0.011865466833115,-0.17149224877357]],[[0.030007025226951,-0.014199163764715,0.081776283681393],[0.089823603630066,0.035923060029745,0.062603063881397],[0.040497075766325,0.031785972416401,0.044092956930399]],[[0.12218515574932,-0.073869705200195,-0.00066966516897082],[-0.038196481764317,-0.0046643679961562,-0.028352215886116],[-0.048968106508255,0.04837392270565,0.033412333577871]],[[0.0065155597403646,0.07791406661272,0.089279152452946],[0.005988544318825,-0.008158759213984,0.031648069620132],[0.097184360027313,0.12674117088318,0.013475671410561]],[[0.1390855461359,-0.040149364620447,0.0081483954563737],[0.07483483850956,0.085056409239769,0.010836206376553],[0.10403524339199,0.010219197720289,0.044235538691282]],[[-0.042457658797503,0.019518297165632,-0.0017507909797132],[-0.034510351717472,0.054256252944469,0.019025214016438],[-0.037480022758245,0.0027945179026574,0.026986308395863]],[[0.10391065478325,-0.016838613897562,-0.01636578887701],[0.022637363523245,-0.013705087825656,0.016559030860662],[0.03252487257123,0.018761675804853,0.082817539572716]],[[-0.011617498472333,0.051141154021025,0.040411781519651],[-0.022746030241251,-0.039424806833267,-0.00827472563833],[-0.040848452597857,0.10016307979822,0.028959574177861]],[[0.060992613434792,-0.00079927779734135,-0.013510978780687],[0.049453899264336,-0.059129316359758,-0.020618665963411],[-0.04314760863781,-0.097304806113243,0.028009185567498]],[[-0.043052859604359,-0.082022652029991,-0.087902136147022],[-0.028073862195015,-0.06142470240593,-0.067390330135822],[-0.048783432692289,0.0064454665407538,-0.069274492561817]],[[0.018361680209637,-0.084713846445084,-0.065872810781002],[-0.068988598883152,-0.076251998543739,-0.024426655843854],[-0.0066354800947011,-0.00036155874840915,0.011205806396902]],[[-0.036655135452747,0.048857998102903,-0.013360847719014],[-0.074790984392166,-0.1235002502799,-0.011503593996167],[-0.024753719568253,0.030985534191132,-0.028215538710356]],[[0.076722577214241,-0.11819033324718,-0.013754732906818],[0.047614272683859,-0.050019592046738,-0.011125940829515],[0.013588231988251,-0.04936034604907,0.028243420645595]],[[0.036870017647743,0.03755072504282,0.072470769286156],[-0.012842213734984,-0.038545686751604,0.016731053590775],[-0.0090598063543439,0.04856450855732,0.055802676826715]],[[-0.063699461519718,0.019321082159877,0.028261970728636],[0.041896712034941,0.087660223245621,0.019887717440724],[-0.036793865263462,0.0288892891258,-0.0013110905420035]],[[-0.14390075206757,-0.029432777315378,0.083705820143223],[0.054903548210859,0.012849105522037,-0.0081767290830612],[-0.034980963915586,0.035177923738956,-0.030134148895741]],[[0.090787589550018,0.021044852212071,0.0065795560367405],[-0.013987218029797,-0.019800821319222,0.047246724367142],[-0.073858328163624,-0.063308134675026,0.046363972127438]],[[-0.045824512839317,-0.059299651533365,-0.042223609983921],[0.15960980951786,-0.048784509301186,0.08861818164587],[-0.022020697593689,-0.039346061646938,0.0072029032744467]],[[0.047016087919474,0.030041033402085,0.050256378948689],[-0.075233027338982,0.013162149116397,-0.011990056373179],[0.070508792996407,0.055734019726515,0.04428444057703]],[[0.01463015191257,-0.020051553845406,-0.035753473639488],[-0.03843754529953,-0.045467406511307,-0.086756773293018],[0.037674132734537,0.010503208264709,-0.074444308876991]],[[0.039332833141088,-0.0048196385614574,0.045021273195744],[-0.11810518801212,-0.019468786194921,0.017261274158955],[-0.0069337226450443,0.039733689278364,0.04890788346529]],[[-0.037370145320892,0.03582352399826,0.02533165551722],[-0.0055061969906092,0.068789057433605,0.02208149805665],[0.091362483799458,0.11529876291752,0.086753636598587]],[[0.13438327610493,0.057763334363699,0.035162139683962],[-0.061745375394821,-0.055898506194353,-0.056506145745516],[-0.0076246284879744,0.035560127347708,-0.030528636649251]],[[-0.046724800020456,-0.0038056385237724,0.056515481323004],[-0.018274279311299,-0.012045578099787,-0.050288219004869],[-0.041959520429373,-0.099498450756073,-0.044773202389479]],[[0.020817041397095,-0.0069116302765906,0.0027301306836307],[0.091731935739517,0.037057068198919,-0.03645209223032],[0.070716373622417,0.088293544948101,0.013564147986472]],[[0.093925677239895,-0.032397139817476,0.10047170519829],[-0.042446993291378,0.0073687415570021,0.038978587836027],[0.014487176202238,-0.037712201476097,-0.036614123731852]],[[-0.091244839131832,-0.0063990657217801,-0.051057107746601],[-0.053985211998224,0.019601700827479,0.037501685321331],[-0.017033567652106,-0.014740162529051,0.091540150344372]],[[0.014871292747557,0.025785926729441,0.016128761693835],[0.11090963333845,0.003653856460005,0.006364384200424],[0.0038730793166906,0.045811504125595,0.035670720040798]],[[-0.024030840024352,0.017482532188296,0.066492825746536],[0.0028724609874189,0.072564467787743,-0.012707913294435],[0.014509418047965,0.0053741568699479,-0.048592116683722]],[[0.0047216354869306,0.013469115830958,0.007817436940968],[0.085725538432598,0.004042387008667,-0.026202788576484],[0.043565578758717,-0.0079080704599619,-0.057464975863695]],[[0.065817095339298,-0.042125556617975,-0.01958198659122],[0.0012964369961992,0.0096425004303455,0.096312008798122],[0.059607461094856,0.042172860354185,-0.068155340850353]],[[-0.049644775688648,0.049160409718752,0.047809097915888],[-0.014134110882878,0.054727416485548,0.040012564510107],[0.032370667904615,-0.044465143233538,0.10564412176609]],[[0.025838449597359,-0.0069378381595016,0.099544622004032],[-0.015608297660947,0.04921467974782,0.11675360053778],[-0.060818932950497,-0.018196783959866,-0.003184657311067]],[[-0.085750453174114,-0.12731955945492,-0.046600643545389],[-0.016356013715267,0.049233794212341,0.091700300574303],[-0.15839105844498,-0.03668137639761,0.014663291163743]],[[0.050383120775223,-0.02114113047719,-0.007737381849438],[-0.085682637989521,0.088213533163071,0.010468781925738],[-0.025478912517428,-0.093040011823177,0.002372446237132]],[[0.075928322970867,0.0054217954166234,-0.019470049068332],[0.027200553566217,-0.051923923194408,0.098372057080269],[-0.055838644504547,0.032885741442442,0.035891465842724]],[[0.10319527238607,0.059897020459175,-0.05451150983572],[0.054463051259518,0.012693788856268,-0.010149681009352],[0.027899162843823,-0.012023591436446,0.024177173152566]],[[-0.041043046861887,-0.029317053034902,0.029419966042042],[0.007967640645802,-0.018958719447255,-0.041426677256823],[-0.015200255438685,0.012955420650542,-0.053389463573694]],[[-0.09293457120657,-0.018353855237365,0.090995520353317],[-0.070964217185974,-0.00070762174436823,0.031928062438965],[-0.031523708254099,-0.020932799205184,0.017944386228919]],[[0.12280222773552,0.021328782662749,-0.014103831723332],[0.024309407919645,0.022203413769603,0.039228409528732],[0.11619006842375,0.051496762782335,0.035673398524523]],[[-0.057503893971443,-0.078761503100395,-0.062296349555254],[-0.043356951326132,-0.02569842711091,0.041912093758583],[-0.01379141304642,0.045816019177437,0.004162494558841]],[[-0.068524464964867,0.042767196893692,-0.025650423020124],[0.080310992896557,0.073706284165382,0.0082296188920736],[-0.0039344201795757,-0.036829978227615,-0.07466396689415]],[[0.0075504253618419,-0.036359053105116,-0.045923870056868],[0.060742162168026,-0.065261028707027,-0.040099442005157],[0.027029391378164,-0.017968695610762,-0.01710008457303]],[[0.0053214579820633,0.018757693469524,-0.019449425861239],[0.03273218870163,-0.014570573344827,0.060876790434122],[-0.018437491729856,0.0022123348899186,0.0059473142027855]],[[-0.010264748707414,0.049020603299141,0.076540023088455],[-0.056032948195934,-0.059618432074785,0.057685539126396],[-0.0058562601916492,0.088188536465168,-0.037820886820555]],[[-0.023322582244873,0.02855084836483,0.0059719225391746],[0.051533497869968,-0.0061101769097149,0.054295357316732],[0.0018416329985484,0.028536070138216,0.05231973528862]],[[0.010680175386369,-0.018823936581612,-0.015476034022868],[-0.043903488665819,0.02035003900528,-0.043241281062365],[0.069725878536701,-0.088366642594337,-0.053937491029501]],[[-0.017211711034179,-0.018881157040596,0.13240361213684],[-0.010051496326923,0.041158638894558,0.052331443876028],[-0.040215469896793,-0.029705952852964,-0.052687659859657]],[[-0.025834944099188,0.057788029313087,0.0022838131990284],[0.034816063940525,0.062363170087337,0.087804183363914],[0.03508385643363,0.02154085598886,0.072830520570278]],[[0.032445713877678,-0.045058906078339,0.031055241823196],[-0.011273790150881,-0.11342153698206,0.012899385765195],[0.035683944821358,0.068713188171387,0.02694096416235]],[[0.083426721394062,-0.0064037330448627,-0.001750263152644],[0.024894060567021,0.012927842326462,-0.0066302390769124],[0.0091610504314303,-0.029687510803342,-0.012029373086989]],[[0.04456764087081,0.0144736263901,-0.0029070295859128],[-0.024674501270056,-0.056248486042023,-0.021026825532317],[-0.057798776775599,-0.010200574994087,-0.0030854132492095]],[[0.01726788841188,0.1077514514327,-0.083286613225937],[-0.043308604508638,-0.0018470875220373,-0.037572912871838],[0.079188860952854,0.0027206693775952,0.062594071030617]],[[0.011611991561949,0.048424277454615,-0.023128438740969],[-0.037296667695045,-0.013608251698315,-0.017662424594164],[-0.10484609752893,-0.017506062984467,0.030505737289786]],[[0.029594300314784,0.022887455299497,0.067099176347256],[-0.017082678154111,0.0095889307558537,0.0044802716001868],[-0.081738099455833,-0.017891155555844,-0.0054391580633819]],[[-0.10175827145576,0.0079372031614184,-0.0030012708157301],[-0.031385734677315,-0.0025260229595006,0.062066238373518],[0.015541398897767,-0.083676099777222,0.01519713178277]],[[-0.095414087176323,-0.014209553599358,-0.03215829282999],[-0.20609094202518,-0.099186934530735,-0.031656112521887],[0.031412251293659,-0.086491659283638,-0.023302661255002]],[[0.00025446247309446,0.05154725164175,0.025092115625739],[0.083092920482159,0.025980308651924,0.053144197911024],[0.048265732824802,-0.036162402480841,0.0096704363822937]],[[-0.11429208517075,-0.029610564932227,-0.02833210490644],[-0.027568850666285,0.18199348449707,-0.080372586846352],[-0.018821373581886,0.018183266744018,0.064199283719063]],[[0.037030022591352,-0.016984289512038,0.023676544427872],[-0.024770287796855,0.15690088272095,0.045470286160707],[0.078873783349991,0.063452757894993,0.044098641723394]],[[-0.067956954240799,-0.042828194797039,0.017673561349511],[0.036099620163441,-0.02707670070231,0.063837215304375],[-0.031508587300777,-0.14885257184505,0.042575247585773]],[[-0.027201272547245,-0.031039284542203,0.061972878873348],[0.0037742629647255,0.029546428471804,0.044866390526295],[-0.03265942633152,0.018197471275926,-0.00050921703223139]],[[-0.015686586499214,-0.072624921798706,-0.011681593954563],[0.088396705687046,-0.10395391285419,-0.039637979120016],[0.0029760228935629,0.0022140487562865,-0.041302014142275]],[[0.082233533263206,-0.014138147234917,0.087746180593967],[-0.0087738493457437,-0.026265349239111,0.082170091569424],[0.04460559040308,-0.063720293343067,-0.068083755671978]],[[-0.012505793944001,0.069574482738972,-0.049831125885248],[0.01808956451714,0.053002960979939,0.03551073372364],[-0.038992039859295,0.012219117023051,0.11032612621784]],[[0.015355126000941,-0.066643185913563,-0.070159986615181],[-0.037805736064911,-0.032069459557533,-0.023747529834509],[0.0035121717955917,-0.0098863746970892,0.12209228426218]],[[-0.05913058668375,-0.071333490312099,-0.043333429843187],[-0.014297669753432,-0.083107903599739,-0.087454542517662],[-0.025062330067158,0.047177445143461,-0.051758270710707]],[[-0.066996335983276,0.0034780018031597,0.15939195454121],[0.063253186643124,-0.024069914594293,-0.052614066749811],[0.099481120705605,0.094783894717693,-0.00034041079925373]],[[-0.016834823414683,0.0325558334589,0.06898145377636],[-0.044925220310688,0.13003864884377,-0.036246631294489],[0.048853240907192,0.019917864352465,-0.0003046480123885]],[[0.043292954564095,0.0026483198162168,0.014085929840803],[-0.039696909487247,0.00073658704059198,-0.0071956180036068],[-0.066362962126732,0.0058352262713015,-0.026265377178788]],[[-0.10838704556227,0.019373994320631,0.10494834184647],[-0.15460389852524,-0.014088678173721,-0.065197415649891],[-0.034042432904243,-0.043812099844217,0.07366993278265]],[[0.035066552460194,-0.051494807004929,0.046320799738169],[0.019600180909038,-0.0072231427766383,-0.07475758343935],[0.041912686079741,0.056268379092216,-0.019122501835227]],[[-0.036878284066916,0.05882516503334,0.030160492286086],[0.045097872614861,-0.015305243432522,-0.026598734781146],[0.038457527756691,-0.03288733586669,-0.070078417658806]],[[-0.06464359909296,-0.034434374421835,0.0071494593285024],[-0.037484508007765,-0.065162539482117,0.0044196941889822],[-0.041528727859259,-0.02038143016398,0.041740041226149]],[[-0.0030118757858872,-0.0094585111364722,0.00091910688206553],[0.050230160355568,-0.019792303442955,0.074239693582058],[-0.079846397042274,-0.0041912016458809,0.050658565014601]],[[0.037694446742535,-0.020924305543303,-0.0026708750519902],[-0.035398662090302,0.063072912395,-0.045870549976826],[-0.07603196054697,-0.08038180321455,-0.027358496561646]],[[-0.082200728356838,-0.005895096808672,0.017422450706363],[-0.064936935901642,-0.047701269388199,-0.071683168411255],[0.015444466844201,0.029673052951694,-0.030619109049439]],[[-0.035315457731485,-0.092654071748257,-0.0032005636021495],[-0.070590957999229,-0.11533387005329,-0.083600588142872],[-0.02696081250906,0.021987780928612,0.025488901883364]],[[-0.016430268064141,0.0094382595270872,0.096373058855534],[0.0041640442796052,0.01957056671381,0.020440008491278],[0.022486157715321,0.02431002818048,-0.060545716434717]],[[-0.033137939870358,-0.017642743885517,-0.0011566616594791],[0.061677806079388,-0.080197118222713,-0.13880325853825],[-0.08559388667345,-0.05343159288168,-0.0042100739665329]],[[-0.038705617189407,0.070631690323353,-0.033496122807264],[0.0077684773132205,0.00080038828309625,-0.039216279983521],[-0.028472799807787,0.038752060383558,0.026760483160615]],[[0.047050580382347,0.060925219208002,0.011157265864313],[0.001126294140704,0.021816028282046,-6.6583204898052e-05],[-0.024663144722581,0.07258003205061,0.028104204684496]],[[-0.054152328521013,-0.034237772226334,-0.056592505425215],[0.074094288051128,0.124287776649,-0.06433542817831],[-0.027744419872761,-0.033329635858536,0.081544831395149]],[[-0.0029594809748232,-0.032874636352062,0.024709109216928],[-0.02004361897707,-0.038386330008507,-0.051344342529774],[-0.029106453061104,-0.074726082384586,-0.13752838969231]],[[-0.018840759992599,0.013513679616153,-0.046022105962038],[-0.064312748610973,0.082081489264965,0.054193653166294],[-0.030284909531474,-0.032747112214565,0.10416793823242]],[[-0.004334238357842,0.026530688628554,0.051513459533453],[0.035653859376907,0.036351427435875,0.0021145418286324],[-0.01699048653245,0.030764736235142,0.13760280609131]],[[0.021514108404517,0.024272549897432,-0.018782233819366],[-0.056055795401335,0.053931288421154,0.026651641353965],[-0.069368742406368,0.029499175027013,-0.059579528868198]],[[0.11985975503922,0.08774670958519,0.073004953563213],[-0.033075165003538,0.019765181466937,-0.021842354908586],[0.024305641651154,0.020350579172373,0.0089656943455338]],[[0.078353047370911,-0.013644592836499,0.0043567018583417],[0.060366880148649,-0.016863726079464,0.033532254397869],[-0.04509524255991,-0.079290136694908,-0.0055446997284889]],[[-0.014625831507146,-0.10753629356623,0.012550016865134],[-0.033306732773781,-0.070704497396946,-0.10385766625404],[-0.065232135355473,0.038777105510235,0.0022797966375947]]],[[[0.074044212698936,-0.029602490365505,0.16895058751106],[0.14714384078979,-0.06537177413702,0.05256275087595],[0.064307548105717,-0.033477585762739,0.049393936991692]],[[0.13201071321964,0.080978095531464,0.042048793286085],[-0.038733273744583,0.10589569807053,-0.051240261644125],[0.0015835774829611,-0.09044374525547,-0.027593284845352]],[[0.013401290401816,0.071352176368237,0.019545836374164],[-0.099536962807178,-0.13752116262913,0.0026122373528779],[0.14823766052723,0.058056358247995,-0.067891605198383]],[[0.027650082483888,0.026557756587863,0.08024900406599],[0.023940302431583,0.017507407814264,-0.0084316600114107],[0.078427352011204,0.045727204531431,0.031585115939379]],[[0.11107551306486,-0.12089567631483,0.085638582706451],[0.015733178704977,-0.22461819648743,0.045682106167078],[-0.0058297039940953,0.14753526449203,0.06230740621686]],[[0.016152529045939,0.0050339614972472,0.1166842058301],[0.0084647685289383,0.033288817852736,-0.065109498798847],[0.10442344099283,0.03319438174367,0.079074926674366]],[[0.032898895442486,-0.10444604605436,0.018751122057438],[-0.048723727464676,-0.030353298410773,0.039177864789963],[-0.024075428023934,-0.08416373282671,-0.0015567288501188]],[[0.0057956683449447,0.043553024530411,-0.10955350846052],[-0.0053692082874477,0.085112646222115,0.0011428771540523],[0.054186470806599,0.091657809913158,-0.044869538396597]],[[-0.1124851629138,-0.088762007653713,0.10248747467995],[-0.044701728969812,-0.010822112672031,-0.016785735264421],[0.027954483404756,0.097555883228779,0.11259682476521]],[[-0.052430972456932,-0.10804009437561,-0.091750673949718],[-0.075280286371708,0.11100938171148,0.076364658772945],[-0.029469627887011,-0.025027804076672,0.075264111161232]],[[0.11595280468464,-0.065030880272388,0.011592471972108],[0.060840271413326,-0.049149051308632,0.067547351121902],[-0.048109080642462,-0.029288813471794,-0.020588330924511]],[[0.10467454791069,-0.10883316397667,-0.06154365837574],[-0.090664759278297,-0.030507383868098,-0.09148170799017],[-0.090753927826881,-0.047619268298149,0.15530316531658]],[[-0.046396967023611,0.06770421564579,0.054131552577019],[-0.025180649012327,-0.075682252645493,0.022474363446236],[-0.21275450289249,0.077692687511444,-0.011343537829816]],[[0.10184369236231,0.1393566429615,-0.0040570092387497],[-0.17108835279942,-0.02155103161931,-0.097814351320267],[-0.084533542394638,0.091604515910149,-0.091337762773037]],[[-0.044330280274153,0.064851149916649,-0.080812968313694],[-0.029263032600284,-0.089365541934967,-0.14514829218388],[0.11080206185579,-0.036384698003531,-0.039960239082575]],[[-0.043092709034681,0.041799187660217,0.0090686036273837],[-0.09707210958004,0.0047560795210302,0.01903036236763],[-0.077785655856133,-0.077473290264606,-0.014282983727753]],[[0.02044440060854,0.03561994433403,-0.059247545897961],[0.00048128631897271,-0.029395371675491,-0.14144790172577],[-0.14720457792282,-0.011324006132782,-0.13859769701958]],[[-0.072165578603745,0.12628142535686,0.11779554188251],[-0.073105961084366,0.062641777098179,-0.11600407212973],[0.090389162302017,0.090640768408775,-0.18798586726189]],[[0.018356319516897,0.14562380313873,-0.093379974365234],[-0.03298269584775,-0.083008542656898,-0.055457852780819],[-0.14670972526073,-0.043611016124487,-0.036535449326038]],[[-0.0034365826286376,0.0060647106729448,0.010112384334207],[-0.18588404357433,-0.022740738466382,-0.1147775053978],[-0.19097031652927,-0.060639601200819,-0.020515466108918]],[[0.039423204958439,-0.021111097186804,-0.17592962086201],[0.016547001898289,-0.1237136721611,-0.087134823203087],[-0.070654526352882,-0.051365118473768,-0.043206293135881]],[[0.019169377163053,-0.0041599543765187,-0.028665654361248],[-0.030314762145281,-0.042085371911526,0.11562249064445],[0.020885949954391,0.084897272288799,-0.042305242270231]],[[0.012157184071839,-0.016141025349498,0.079295098781586],[0.027185223996639,-0.01024391502142,-0.11619194597006],[0.0087254429236054,-0.047998130321503,0.011294328607619]],[[0.029141305014491,0.024765929207206,0.0054377298802137],[-0.0071591851301491,-0.13997238874435,-0.077194087207317],[-0.012451988644898,0.054340273141861,-0.025620521977544]],[[-0.038935638964176,-0.01706081815064,-0.0085860406979918],[-0.022027378901839,-0.0029371513519436,0.013137448579073],[-0.017326261848211,0.038254000246525,-0.10017763078213]],[[-0.034697279334068,-0.081415213644505,-0.050865948200226],[-0.039265982806683,-0.022671207785606,0.028702793642879],[-0.0096272639930248,-0.032946091145277,-0.0086864046752453]],[[-0.14235737919807,-0.13662575185299,-0.10041339695454],[-0.0060771503485739,0.051533780992031,-0.026413468644023],[0.023894030600786,-0.0052438783459365,-0.05089096352458]],[[0.11417210102081,0.044823825359344,-0.036435820162296],[0.075376264750957,0.053658343851566,0.028074910864234],[-0.0030136827845126,-0.019338315352798,-0.040615551173687]],[[-0.06728845089674,0.0043635470792651,-0.12349332869053],[0.043193966150284,0.015464400872588,0.050128974020481],[-0.040044862776995,-0.032988000661135,-0.043685641139746]],[[0.095925353467464,-0.04557329043746,-0.090993031859398],[-0.046637684106827,-0.06831568479538,-0.096314564347267],[-0.0036939652636647,-0.069211393594742,0.018441582098603]],[[-0.035226494073868,0.086319617927074,0.087621167302132],[0.11788255721331,0.015731371939182,0.011899251490831],[0.047152023762465,-0.037081375718117,0.034373380243778]],[[-0.030602248385549,-0.0091371983289719,0.0087310587987304],[0.032684024423361,-0.10409492999315,-0.075100034475327],[-0.02103922329843,-0.031151801347733,0.074018374085426]],[[0.033127956092358,0.0096820564940572,0.034094538539648],[0.06460889428854,-0.11024008691311,-0.062066022306681],[0.055036183446646,0.088531970977783,-0.16569784283638]],[[-0.089833930134773,0.0032352351117879,0.043319657444954],[-0.059548944234848,-0.0016806152416393,0.1442649513483],[0.044730365276337,0.045204810798168,-0.0059420797042549]],[[-0.048646491020918,0.1101937443018,0.051264703273773],[-0.032315950840712,0.031492605805397,0.13163132965565],[-0.044410333037376,-0.142145216465,-0.12685073912144]],[[-0.043360404670238,-0.020656742155552,0.0032235435210168],[-0.17676021158695,-0.028916260227561,-0.079267010092735],[0.043643668293953,0.0063192248344421,0.027040142565966]],[[0.10320836305618,0.031762562692165,-0.093081168830395],[0.071227200329304,0.037052232772112,0.030494699254632],[-0.18373902142048,-0.04825422167778,-0.068450629711151]],[[-0.020224116742611,-0.043314751237631,-0.16419631242752],[-0.090139180421829,0.13601692020893,0.03523101657629],[-0.071984902024269,-0.13662415742874,0.060862321406603]],[[0.16541963815689,-0.019518900662661,-0.014393686316907],[-0.058963876217604,-0.062017779797316,-0.060157708823681],[-0.050869718194008,-0.013507024385035,0.0063427267596126]],[[-0.061782985925674,0.065205149352551,0.13948756456375],[-0.0076992460526526,0.04625466838479,0.0099605415016413],[-0.067023202776909,-0.087380461394787,0.068900503218174]],[[-0.00080607697600499,-0.040100872516632,0.047923300415277],[-0.091455571353436,0.055048901587725,0.13502961397171],[-0.0053225597366691,0.072806879878044,0.065000265836716]],[[0.022671589627862,0.051984056830406,-0.1312193274498],[-0.019146010279655,0.034995350986719,0.10318506509066],[0.061556246131659,0.018915258347988,-0.090062081813812]],[[0.013459083624184,0.064250878989697,-0.0830202922225],[0.070612169802189,-0.0097596943378448,0.026699518784881],[0.029679358005524,0.00062578823417425,0.043685797601938]],[[-0.019346093758941,-0.052134815603495,0.0035700618755072],[-0.0088331140577793,-0.012354085221887,-0.0038381183985621],[0.034177228808403,-0.0021933233365417,0.005116225220263]],[[-0.09460860490799,-0.10295552015305,-0.092317290604115],[0.084245912730694,0.035250138491392,0.037090923637152],[0.096462577581406,-0.010434877127409,0.13866160809994]],[[0.045456267893314,0.075381480157375,0.089298084378242],[0.077251628041267,0.0061388844624162,-0.014498157426715],[-0.042167589068413,0.018340807408094,0.059223517775536]],[[0.012010057456791,0.076631620526314,0.078923627734184],[-0.095245003700256,0.010811678133905,-0.015579798258841],[-0.033526577055454,0.033757802098989,0.090705640614033]],[[-0.10594723373652,0.04946756362915,0.013159195892513],[-0.097189083695412,-0.091010257601738,-0.029459672048688],[-0.054206900298595,0.082496285438538,-0.045584604144096]],[[-0.17887464165688,-0.068790517747402,0.12353276461363],[-0.042216334491968,-0.10683940351009,0.082928255200386],[0.040365047752857,-0.019357910379767,0.037048108875751]],[[-0.11099241673946,-0.035709317773581,0.004374239128083],[0.030454171821475,-0.058320041745901,0.0029328314121813],[-0.019791753962636,0.048021264374256,-0.096756815910339]],[[-0.12209530174732,0.087067306041718,0.032847233116627],[0.084212705492973,0.0028889630921185,-0.013656091876328],[0.048375956714153,0.04141503199935,0.18227529525757]],[[0.06634883582592,0.0088563077151775,0.033349517732859],[0.058231819421053,-0.10946756601334,0.0055061560124159],[0.035822939127684,0.17322915792465,0.033894047141075]],[[-0.063453748822212,-0.0096280556172132,-0.067928969860077],[-0.091463580727577,-0.0097205992788076,0.024503752589226],[-0.013412864878774,-0.10566008836031,0.050855461508036]],[[-0.0090419678017497,0.013156116940081,0.1099491044879],[0.16921396553516,-0.069493129849434,0.053776994347572],[-0.0088837593793869,0.021886037662625,0.022031996399164]],[[-0.04757908731699,-0.028554279357195,-0.070959001779556],[0.08209016919136,-0.037876632064581,-0.037577532231808],[-0.088330052793026,0.023388376459479,0.15025943517685]],[[-0.030729571357369,0.16695791482925,-0.0021713168825954],[0.023032080382109,-0.06926017999649,-0.027201354503632],[0.031021373346448,0.014370106160641,-0.10374242067337]],[[0.00028750984347425,0.0049269977025688,0.018281126394868],[0.022479601204395,0.071789316833019,0.090557344257832],[-0.045483533293009,0.044317189604044,0.032602436840534]],[[-0.066561013460159,0.051239561289549,0.064132794737816],[-0.018132911995053,0.051963176578283,-0.010279544629157],[-0.033906865864992,-0.37245100736618,-0.045137442648411]],[[0.097582407295704,0.068911522626877,-0.011146207340062],[-0.065967164933681,0.057442981749773,0.0079605989158154],[-0.043966140598059,-0.00038923384272493,-0.045602884143591]],[[-0.084224008023739,-0.033902373164892,-0.047819867730141],[-0.10658220201731,-0.041746284812689,-0.037134099751711],[0.072431348264217,0.027931736782193,0.064190909266472]],[[-0.054657682776451,0.01625556871295,0.067306585609913],[-0.004239896312356,0.021572997793555,0.092089980840683],[0.054106473922729,0.0072031156159937,-0.0073341927491128]],[[0.011810284107924,-0.08133627474308,-0.19606217741966],[0.088680021464825,0.017901293933392,0.010412619449198],[-0.014117078855634,-0.02107572555542,-0.041395895183086]],[[0.072649858891964,-0.036443747580051,0.17991131544113],[-0.060344256460667,0.0009314026683569,0.092532642185688],[0.007563937921077,0.081880807876587,0.049733377993107]],[[0.044218670576811,-0.049316417425871,-0.00086076481966302],[-0.016244379803538,-0.052274756133556,-0.11965411901474],[0.0055358684621751,0.020705813542008,0.078072875738144]],[[0.024463271722198,-0.073635838925838,0.012466851621866],[-0.012663566507399,-0.00029828760307282,-0.15482157468796],[0.22369188070297,-0.084101110696793,-0.063391350209713]],[[-0.0070855491794646,0.079173065721989,0.015774592757225],[0.090172059834003,-0.025046836584806,0.068421080708504],[-0.05535701662302,0.15965068340302,0.048602312803268]],[[0.07841844856739,0.091001942753792,0.074553787708282],[0.077193588018417,-0.037154342979193,-0.018683206290007],[-0.013537776656449,0.044777054339647,-0.045963771641254]],[[0.023251265287399,-0.051030043512583,0.032264843583107],[-0.095289930701256,0.054631914943457,0.075497150421143],[0.040506854653358,-0.07199527323246,-0.086758203804493]],[[-0.0092306602746248,-0.10731367766857,-0.080946683883667],[-0.035943925380707,-0.074784338474274,0.028495144098997],[0.10218560695648,0.1133891120553,0.11987134814262]],[[-0.11983734369278,-0.036205191165209,-0.061870332807302],[0.060077887028456,0.17244450747967,0.11953075230122],[0.073496498167515,0.071761503815651,0.22121757268906]],[[0.031720690429211,0.10964230448008,0.092415675520897],[-0.0071605513803661,0.014278185553849,0.020184019580483],[0.11495558172464,0.0093744052574039,0.042457360774279]],[[0.061630442738533,-0.056827642023563,-0.036942221224308],[-0.030119610950351,0.10597638040781,-0.032573685050011],[-0.0058390754275024,-0.04010683298111,-0.038425695151091]],[[-0.0058004343882203,-0.015766691416502,0.029531026259065],[0.084716022014618,0.0011023520492017,-0.079106107354164],[-0.057693924754858,-0.0027694222517312,-0.047369446605444]],[[-0.051007982343435,-0.012309398502111,0.12722346186638],[-0.0060475296340883,-0.039103209972382,0.019003238528967],[0.051323227584362,-0.036096554249525,0.058991849422455]],[[-0.087807916104794,-0.023744558915496,0.12660972774029],[-0.050786953419447,-0.099343076348305,-0.0057871644385159],[0.041960824280977,-0.064782552421093,0.10485716164112]],[[-0.16945740580559,-0.014120407402515,-0.035779517143965],[-0.052375197410583,-0.12143587321043,0.075475506484509],[-0.093514524400234,-0.040920071303844,-0.031678259372711]],[[-0.056715738028288,0.016566619277,-0.0012253298191354],[0.02705323509872,-0.003475496545434,0.096834771335125],[0.063452318310738,0.019647490233183,0.03943632543087]],[[0.0013112782035023,0.0024062558077276,0.042303908616304],[0.057394430041313,0.13640989363194,0.069993786513805],[0.041844218969345,0.053309742361307,0.058829467743635]],[[0.0036103716120124,-0.045133896172047,0.0059519624337554],[-0.021479193121195,0.03042621165514,0.043775025755167],[0.060770317912102,0.010050556622446,-0.021717246621847]],[[-0.16172525286674,-0.014426856301725,-0.080561086535454],[0.014053371734917,0.043987408280373,0.067524120211601],[0.10700110346079,0.072440609335899,0.12930579483509]],[[-0.054473903030157,-0.085832417011261,-0.072533994913101],[-0.013780669309199,-0.0056670014746487,0.035167556256056],[0.037146732211113,-0.11921415477991,-0.067263431847095]],[[0.05783274769783,-0.054523132741451,0.0051758359186351],[-0.030900444835424,-0.033783629536629,-0.11805175989866],[-1.1146623364766e-05,-0.099335104227066,0.05444360896945]],[[0.11601328104734,0.036741610616446,-0.021940648555756],[0.01444236934185,-0.0074222045950592,-0.027809934690595],[0.04526498913765,0.028244020417333,0.038581281900406]],[[-0.018602134659886,-0.0051451097242534,-0.068508140742779],[0.0037030226085335,0.013999118469656,-0.0015913777751848],[0.023052766919136,0.072818115353584,0.012782369740307]],[[-0.017599640414119,-0.03652324154973,-0.15011844038963],[-0.082976162433624,-0.0096992291510105,-0.1880142390728],[-0.015505339019001,-0.01624140329659,-0.018659844994545]],[[0.057872552424669,0.20038397610188,-0.036718133836985],[-0.071174778044224,-0.14652571082115,0.068791732192039],[0.034045156091452,-0.10239721089602,-0.050141666084528]],[[-0.0015206219395623,-0.081435538828373,0.010627431795001],[-0.0095455721020699,0.0045685973018408,0.026399804279208],[0.033790305256844,0.026204222813249,-0.034472987055779]],[[-0.13092340528965,-0.11249022185802,0.014011424966156],[-0.068625077605247,0.082113832235336,-0.017595561221242],[-0.01492730434984,0.21432627737522,-0.01029443461448]],[[-0.021769061684608,0.077564187347889,-0.043326366692781],[-0.046899273991585,0.043926436454058,0.0020072713959962],[0.050076447427273,-0.17973193526268,0.048457164317369]],[[-0.059431437402964,-0.00832898914814,0.0017133619403467],[0.055256258696318,-0.024909414350986,-0.10030790418386],[0.10724378377199,-0.020991379395127,0.033654317259789]],[[0.11754740029573,0.072897985577583,-0.051458582282066],[-0.023798571899533,-0.045930620282888,0.010772166773677],[-0.12540012598038,-0.12001876533031,0.10512071102858]],[[0.042785864323378,0.16515415906906,0.087429858744144],[0.13388228416443,0.013586368411779,0.2125897705555],[-0.034731209278107,-0.15654394030571,-0.12010218948126]],[[-0.011633727699518,-0.047840461134911,0.016292182728648],[0.0018398035317659,-0.12819841504097,0.13657096028328],[-0.088379673659801,0.024547340348363,0.024035772308707]],[[0.022924223914742,0.025050794705749,-0.0029408677946776],[-0.078730531036854,0.2961103618145,0.16714225709438],[-0.0087613649666309,-0.089152537286282,0.048128314316273]],[[0.076436936855316,0.016372116282582,0.066117458045483],[0.060196477919817,0.012592571787536,-0.096584424376488],[-0.034169107675552,0.022423524409533,-0.069867342710495]],[[0.070231325924397,-0.20260395109653,-0.040268894284964],[0.067954011261463,0.016317695379257,-0.09127489477396],[0.092230625450611,-0.048778340220451,0.095031395554543]],[[0.0034312950447202,0.045234654098749,-0.11572305858135],[0.111114166677,0.027959322556853,0.10412729531527],[0.0023180975113064,-0.040508460253477,-0.028848085552454]],[[-0.1204097121954,0.097827382385731,-0.056113921105862],[-0.022857300937176,0.12080108374357,0.075025573372841],[-0.08928656578064,-0.023841874673963,0.0015757788205519]],[[-0.13594642281532,-0.0033347008284181,-0.047748059034348],[-0.0060625039041042,0.10554065555334,0.065495513379574],[-0.063924573361874,-0.20725753903389,-0.054014854133129]],[[0.022542126476765,0.049510676413774,-0.024640208110213],[0.0041889655403793,0.018305337056518,-0.058755654841661],[0.039422765374184,0.0091638518497348,0.051734406501055]],[[0.060572523623705,-0.053896017372608,-0.089168772101402],[-0.058030113577843,-0.065473482012749,0.01436382997781],[-0.024783750995994,0.0015717756468803,-0.028826167806983]],[[-0.031855281442404,0.041751015931368,-0.078972771763802],[0.062427528202534,0.03861253336072,0.020198306068778],[0.071024909615517,0.00078107963781804,-0.0050046159885824]],[[0.018839465454221,0.022359345108271,-0.062939114868641],[-0.07007809728384,0.0046079196035862,0.043701890856028],[-0.044456470757723,0.051098093390465,0.023504555225372]],[[0.0061489506624639,-0.019121266901493,0.0028361992444843],[0.02817714214325,-0.047096513211727,0.0007081656367518],[0.073700517416,-0.089240275323391,0.048252198845148]],[[0.093463853001595,0.14985778927803,-0.0094373561441898],[-0.023016273975372,-0.13006022572517,0.01912484690547],[0.018208848312497,0.0097037851810455,-0.073140688240528]],[[0.024917954578996,0.08368705958128,0.012135977856815],[-0.061937615275383,0.022324230521917,-0.024152042344213],[0.014083176851273,-0.048477526754141,-0.015133872628212]],[[-0.11176954954863,-0.04776144400239,0.030319655314088],[-0.039642203599215,-0.07135159522295,-0.17287592589855],[-0.045988105237484,-0.052004396915436,0.0076029389165342]],[[0.12969516217709,0.19677114486694,-0.016387294977903],[0.072599656879902,-0.057317465543747,0.07530851662159],[-0.069285020232201,-0.083377249538898,0.085666425526142]],[[-0.027706563472748,0.059689950197935,-0.010269401594996],[0.053667586296797,0.15021625161171,-0.10769595205784],[-0.027450174093246,-0.054780397564173,-0.074692204594612]],[[0.099653169512749,0.079889521002769,-0.097763083875179],[0.090087696909904,-0.055041145533323,-0.01309825014323],[0.00076341233216226,-0.11381304264069,0.021428460255265]],[[0.015869051218033,-0.005825087428093,-0.039771892130375],[-0.006947570014745,-0.046453200280666,-0.0011049980530515],[0.078619256615639,-0.071630910038948,0.028241984546185]],[[0.026573235169053,-0.12874791026115,0.018380165100098],[-0.092795066535473,0.036319676786661,-0.029218016192317],[-0.020545709878206,0.061207126826048,-0.029219387099147]],[[-0.17738096415997,-0.094783328473568,0.027587158605456],[-0.052697155624628,0.033997464925051,-0.020520897582173],[0.022060256451368,0.053088769316673,0.10037978738546]],[[-0.0053436663001776,-0.052604295313358,0.045022305101156],[-0.0087861754000187,-0.03596768155694,0.0032970129977912],[0.050555020570755,-0.10805753618479,0.032224897295237]],[[-0.04452458769083,-0.057469964027405,-0.11023707687855],[0.054137833416462,-0.079984068870544,-0.028664806857705],[0.0025128778070211,0.098228730261326,0.1013747677207]],[[0.039356224238873,0.091240838170052,-0.086415395140648],[-0.045726042240858,-0.040216509252787,-0.10426221042871],[-0.106371127069,0.061793185770512,0.14508798718452]],[[-0.095218576490879,0.078734800219536,-0.18482464551926],[-0.019774246960878,0.15769785642624,0.0095534380525351],[0.030866229906678,-0.0043355976231396,0.11361359804869]],[[-0.092420034110546,-0.15039302408695,-0.057095292955637],[-0.16173249483109,-0.023395918309689,-0.089300274848938],[-0.021150354295969,0.14055418968201,-0.068317972123623]],[[-0.078476019203663,-0.03636721149087,-0.0069922436960042],[-0.090005435049534,-0.043194387108088,0.14202462136745],[0.059746108949184,-0.18828131258488,0.035663217306137]],[[0.1881677955389,0.0034785701427609,0.031622909009457],[0.064763560891151,0.1041966304183,0.11132626235485],[-0.029753973707557,0.031096396967769,-0.019670473411679]],[[0.014395855367184,-0.12704157829285,0.00276128645055],[0.012840366922319,-0.08486882597208,0.01074268296361],[0.12888164818287,-0.032918807119131,0.022034635767341]],[[-0.10376863181591,-0.10918866842985,0.020166547968984],[-0.1388331502676,-0.022032516077161,-0.0011211126111448],[-0.12119146436453,-0.028991870582104,0.062717877328396]],[[-0.016946455463767,-0.13948822021484,0.0039098397828639],[0.074230454862118,0.098247416317463,-0.087016135454178],[-0.038455318659544,-0.030589992180467,0.18325865268707]],[[0.08175090700388,0.0038193990476429,0.021792184561491],[0.07561869174242,-0.021613201126456,-0.081000223755836],[-0.11563614010811,0.017477264627814,-0.0017893421463668]],[[-0.076939836144447,-0.078684784471989,-0.049861643463373],[0.028015207499266,-0.021489446982741,0.11168516427279],[0.08246948570013,0.10261575877666,0.053554527461529]],[[-0.026449184864759,-0.0093234274536371,-0.032087959349155],[-0.056376755237579,-0.010931666940451,-0.18772877752781],[0.069488398730755,0.012197556905448,0.17302732169628]],[[-0.11837847530842,-0.029340913519263,0.073307059705257],[-0.023928048089147,0.063135549426079,0.055027771741152],[0.0033199898898602,0.032869052141905,0.068004205822945]],[[0.24914179742336,-0.15254317224026,-0.085263296961784],[-0.16248343884945,0.11793694645166,-0.033147674053907],[0.033049829304218,-0.019501322880387,0.075176678597927]]],[[[-0.043923396617174,0.014939423650503,-0.032999824732542],[-0.015110792592168,-0.068036146461964,-0.0028845660854131],[0.035465985536575,-0.053118243813515,-0.024490723386407]],[[-0.067360103130341,-0.16874703764915,-0.020716672763228],[-0.12357442826033,-0.046664882451296,0.0097243851050735],[0.038692843168974,0.065990179777145,0.069808006286621]],[[-0.060792945325375,-0.010153623297811,0.10352113097906],[0.053932014852762,-0.074580617249012,-0.02110374160111],[-0.013805089518428,-0.043863240629435,0.0547727458179]],[[0.053106304258108,0.033188495784998,0.017315227538347],[-0.022583624348044,-0.0072291707620025,0.10047879815102],[-0.0081590684130788,-0.048040345311165,0.076821550726891]],[[0.0014037383953109,-0.036160837858915,-0.014865014702082],[0.090541325509548,-0.017626482993364,-0.07831484079361],[0.19271552562714,-0.012586132623255,-0.12895447015762]],[[-0.087208159267902,-0.06085205450654,-0.046987138688564],[0.052573751658201,-0.020576138049364,-0.117292329669],[-0.022679546847939,-0.082767590880394,-0.071442201733589]],[[0.039499294012785,-0.08572956174612,-0.046019162982702],[0.027581578120589,-0.086674079298973,0.0025738254189491],[0.13860903680325,0.06730192899704,-0.045748576521873]],[[-0.066267982125282,0.11278630048037,0.060216780751944],[-0.022107977420092,0.07632128149271,-0.035016074776649],[0.031761139631271,-0.053773567080498,0.026675552129745]],[[0.074895985424519,0.047136712819338,-0.043588392436504],[-0.043745297938585,-0.011400911025703,0.13881433010101],[-0.0088288271799684,-0.0067906016483903,0.045600529760122]],[[0.032448165118694,-0.036172799766064,-0.038547191768885],[-0.057307478040457,-0.08024899661541,-0.052498422563076],[0.012891416437924,0.077606573700905,0.029539488255978]],[[-0.024896185845137,0.086418785154819,-0.064667336642742],[0.029419582337141,0.038854666054249,-0.074644729495049],[0.092211604118347,-0.092859961092472,-0.078780181705952]],[[0.010081806220114,0.069495640695095,0.13362608850002],[-0.099764809012413,0.010587058030069,0.015711320564151],[-0.052295431494713,-0.03822223842144,0.11375712603331]],[[0.046128772199154,0.029690841212869,-0.018319886177778],[0.18049769103527,0.0014824357349426,-0.046195451170206],[0.082392305135727,-0.053319659084082,0.040737025439739]],[[0.053115129470825,-0.0095648299902678,-0.018073603510857],[0.15989805757999,-0.091844893991947,0.0030177186708897],[0.13427817821503,-0.03571205586195,0.020790547132492]],[[0.0040218257345259,-0.041433952748775,-0.038776379078627],[0.010408951900899,-0.022679969668388,-0.026693116873503],[-0.063203364610672,-0.044252410531044,-0.045802600681782]],[[0.13014164566994,-0.077317073941231,0.036261864006519],[0.16018369793892,-0.064710088074207,0.00096744886832312],[-0.050506118685007,0.026774987578392,-0.014005881734192]],[[0.14341314136982,-0.011701283045113,-0.1415606290102],[-0.007458770647645,-0.016108628362417,-0.081916056573391],[0.11071426421404,0.048652689903975,0.068386591970921]],[[-0.088698662817478,0.029432473704219,0.030717186629772],[-0.0096490057185292,0.092461995780468,0.031934928148985],[-0.028389321640134,-0.053478349000216,0.014006667770445]],[[0.032979786396027,-0.046989526599646,0.10626431554556],[-0.053740032017231,-0.055708535015583,0.061175279319286],[-0.019772730767727,0.049133040010929,0.063062034547329]],[[-0.081201754510403,-0.070019140839577,0.083697438240051],[0.12224765121937,0.019562171772122,-0.0089560123160481],[0.0089005809277296,-0.029015680775046,0.043186910450459]],[[-0.031475272029638,-0.06350140273571,0.016046496108174],[0.030468611046672,-0.00050601514521986,0.00028231853502803],[-0.06636780500412,-0.0018692220328376,0.013423797674477]],[[0.057634241878986,-0.05551353469491,-0.1250483840704],[0.012856662273407,-0.052128363400698,0.057921580970287],[-0.033742796629667,0.11061195284128,-0.029500845819712]],[[0.038385570049286,0.10930587351322,-0.0014856648631394],[-0.1304150223732,0.096859961748123,-0.10901837050915],[-0.014220479875803,-0.014699604362249,-0.1399239897728]],[[0.030296543613076,-0.040677901357412,-0.066693998873234],[0.0030539215076715,-0.14963907003403,-0.023381123319268],[-0.089431382715702,-0.058793909847736,0.023095047101378]],[[0.060919348150492,-0.0036501088179648,-0.041002579033375],[-0.11475022137165,0.045194298028946,-0.01566662825644],[0.034439437091351,0.013785442337394,-0.11683592945337]],[[0.022282162681222,0.0043634483590722,-0.074612371623516],[-0.023196497932076,-0.018396994099021,-0.043318755924702],[-0.01478588860482,-0.11500852555037,-0.11765652149916]],[[-0.086216256022453,0.032810904085636,-0.051579941064119],[0.049943927675486,-0.061173383146524,-0.071249827742577],[0.06341714411974,0.00065194431226701,-0.034748628735542]],[[0.044238660484552,-0.13678446412086,0.0031514598522335],[-0.20780356228352,0.1124555170536,-0.10773112624884],[-0.076549239456654,0.13842594623566,-0.00077870505629107]],[[-0.086494460701942,0.051350068300962,-0.0043531954288483],[0.036992896348238,0.028149975463748,0.019828733056784],[0.018709182739258,0.020307643339038,0.045016929507256]],[[-0.0012366729788482,0.0099722584709525,-0.036658525466919],[0.044065598398447,-0.020576713606715,-0.002639761660248],[-0.0040467581711709,0.14552710950375,0.058823674917221]],[[0.02144661359489,-0.031830854713917,-0.11300477385521],[0.12506225705147,-0.047614056617022,-0.022441234439611],[0.0089168399572372,-0.12684246897697,-0.084567047655582]],[[-0.019746851176023,0.13315676152706,-0.02722879499197],[0.038406331092119,-0.017138129100204,0.0041033453308046],[-0.062645480036736,-0.03748569637537,0.037628978490829]],[[0.019146403297782,0.0093377130106091,0.0094385975971818],[0.061635352671146,0.094824008643627,0.051327887922525],[0.05429370328784,-0.1099920347333,-0.040976524353027]],[[0.070337124168873,0.077391892671585,-0.014169791713357],[-0.046932984143496,0.019398974254727,0.0045022056438029],[-0.012244523502886,0.070311412215233,0.0044056922197342]],[[-0.042814657092094,-0.095098830759525,0.10476591438055],[-0.0088806077837944,-0.083276577293873,0.050800498574972],[-0.010324899107218,-0.080761596560478,0.05599782243371]],[[0.047725714743137,-0.035479731857777,0.011950100772083],[0.15506179630756,-0.04513980448246,0.045540604740381],[0.099066950380802,-0.043392084538937,-0.014562703669071]],[[-0.03600425645709,0.010196757502854,0.0097800903022289],[-0.050088681280613,0.056079495698214,-0.019105670973659],[-0.075387328863144,0.041538957506418,-0.052280526608229]],[[0.13617470860481,-0.059858687222004,0.05779242888093],[0.16462141275406,0.021608356386423,-0.017785897478461],[0.14941731095314,-0.031906615942717,-0.0048796236515045]],[[0.0241634901613,0.041273213922977,-0.044519253075123],[-0.01374903973192,0.090794332325459,-0.10764621943235],[-0.13646203279495,-0.00022769422503188,-0.074936464428902]],[[-0.062573589384556,-0.060271088033915,0.0027557695284486],[-0.045328240841627,0.0043203001841903,0.073390923440456],[-0.023165699094534,0.10181679576635,0.029695995151997]],[[0.024509157985449,0.027232803404331,-0.023972168564796],[-0.066709041595459,0.090033508837223,-0.0011833652388304],[0.01507683377713,-0.024526355788112,-0.051351103931665]],[[0.095044948160648,0.037218160927296,-0.036842953413725],[0.062718480825424,0.048459675163031,0.02265490218997],[-0.051100805401802,0.075004681944847,-0.086713686585426]],[[-0.039861083030701,-0.064259201288223,0.021760489791632],[0.070211872458458,0.011321653611958,-0.068354949355125],[0.039024081081152,0.0069559654220939,0.023568181321025]],[[0.088453039526939,-0.0090266894549131,-0.026719072833657],[0.1472904831171,0.002751890802756,-0.048065729439259],[0.026851734146476,-0.037921659648418,-0.014538574963808]],[[0.030260818079114,0.11185748875141,0.044535405933857],[0.032734572887421,0.017770476639271,0.010517310351133],[-0.041772425174713,-0.06796508282423,0.014313464984298]],[[0.08185226470232,-0.010501396842301,0.013109539635479],[0.043803747743368,-0.031173761934042,-0.018707469105721],[0.028898866847157,-0.050579346716404,0.042405281215906]],[[-0.053130477666855,-0.070006527006626,-0.014847851358354],[0.0083216745406389,0.037247378379107,0.084560804069042],[-0.07201474159956,0.083908326923847,0.058632731437683]],[[0.078526005148888,-0.14241650700569,-0.026423428207636],[0.060171689838171,-0.012294450774789,-0.015931349247694],[0.049403566867113,-0.011354505084455,-0.031088082119823]],[[0.06373693048954,-0.021466871723533,-0.062708757817745],[0.023786330595613,-0.021584060043097,-0.10405723750591],[0.084387481212616,-0.16766673326492,-0.10483554750681]],[[0.11999592930079,-0.01407216116786,-0.017680682241917],[0.056108165532351,0.029813108965755,-0.077214367687702],[-0.025143351405859,-0.12608084082603,-0.052956230938435]],[[-0.037024788558483,-0.00046835880493745,0.01066102925688],[-0.025095937773585,0.048784140497446,-0.03822385892272],[0.05917102470994,-0.13167636096478,-0.048758301883936]],[[-0.012367280200124,-0.014877483248711,-0.020621044561267],[-0.0066393231973052,-0.043684013187885,0.055167812854052],[-0.078887715935707,-0.073240414261818,0.014135939069092]],[[-0.018897222355008,0.023535395041108,-0.020281126722693],[0.055247001349926,-0.019595930352807,-0.037359688431025],[0.050475761294365,-0.037995427846909,-0.012258479371667]],[[-0.012142013758421,0.012326564639807,0.015432769432664],[0.045833703130484,0.023691119626164,0.0040802196599543],[0.022575171664357,-0.0030150269158185,-0.033511202782393]],[[-0.023210547864437,0.067198432981968,0.029610391706228],[0.052122730761766,-0.046955432742834,0.022131234407425],[-0.071569435298443,0.049711517989635,-0.0057022557593882]],[[-0.079745166003704,0.078410863876343,-0.016331374645233],[0.00303900311701,0.019718578085303,0.050126049667597],[0.052414838224649,-0.066664516925812,0.022068915888667]],[[-0.1043863222003,0.039315804839134,-0.039342615753412],[0.063058450818062,0.026060804724693,0.04089455679059],[0.23158514499664,-0.07377952337265,0.12238830327988]],[[-0.063907809555531,0.031862664967775,-0.069482736289501],[-0.045725893229246,-0.060421980917454,0.043815534561872],[-0.0063364305533469,-0.046344187110662,-0.061215855181217]],[[0.034384019672871,-0.056153044104576,0.016202168539166],[0.097971491515636,-0.067546777427197,0.016164300963283],[0.15063144266605,0.028766702860594,0.076095439493656]],[[-0.07001593708992,-0.13003794848919,0.1273825019598],[0.10805971175432,-0.035904463380575,-0.034083049744368],[-0.063238337635994,-0.10025522112846,0.00075168209150434]],[[-0.051387697458267,-0.021618904545903,-0.014318263158202],[0.03476594761014,0.053049419075251,-0.0047934241592884],[-0.17683757841587,0.028102319687605,-0.004267047625035]],[[-0.085116982460022,0.034068539738655,-0.089779563248158],[0.032070208340883,-0.13903786242008,0.027778951451182],[0.0013199273962528,-0.028312399983406,-0.056636307388544]],[[-0.0090210530906916,-0.056952472776175,0.017811449244618],[0.01187627390027,-0.080108039081097,-0.049103938043118],[0.086798004806042,0.11190127581358,-0.0076453941874206]],[[0.0033711877185851,-0.024100193753839,0.011557703837752],[0.03175088763237,0.054670959711075,0.026985544711351],[0.0436732172966,0.034677844494581,0.13601738214493]],[[-0.10032325983047,0.060009147971869,-0.0036343841347843],[-0.022919937968254,0.069350615143776,0.10406755656004],[0.04184278100729,0.11258367449045,-0.019019750878215]],[[0.11019363999367,0.059657081961632,-0.0029791020788252],[0.050091747194529,-0.015405922196805,-0.024665465578437],[-0.10210491716862,0.086275145411491,0.074377879500389]],[[-0.055404417216778,0.048436123877764,0.01851356215775],[0.046986147761345,-0.067110374569893,-0.09845245629549],[-0.03187470138073,0.056529246270657,0.0021340774837881]],[[-0.0022301601711661,-0.081385366618633,0.073415488004684],[-0.067469887435436,-0.047618847340345,0.048521555960178],[-0.039444983005524,0.069437906146049,0.054071772843599]],[[0.013826505281031,0.011766242794693,-0.053910650312901],[0.088762044906616,0.011427033692598,0.003445468377322],[-0.074048645794392,-0.10234641283751,0.05621836706996]],[[-0.089402459561825,0.15161556005478,0.052864771336317],[-0.048853702843189,0.025918126106262,0.049210213124752],[0.086380697786808,0.019857220351696,0.02483499981463]],[[0.00019395089475438,-0.072934105992317,-0.098414823412895],[0.10872356593609,-0.050831191241741,0.034517951309681],[0.040545806288719,0.18387289345264,0.037287130951881]],[[0.035670418292284,0.030245702713728,0.0084435883909464],[0.01717846468091,-0.024297317489982,0.035167906433344],[0.021130805835128,0.10053807497025,0.045376680791378]],[[0.041316315531731,0.053019464015961,0.0061236661858857],[0.180549710989,0.00090369005920365,-0.01780747808516],[0.077754303812981,-0.040728453546762,0.012048476375639]],[[-0.11188565194607,0.009630155749619,0.03652074560523],[-0.031166765838861,0.074343957006931,0.0091401664540172],[-0.053813677281141,0.079003371298313,0.081219635903835]],[[0.053607195615768,-0.042985092848539,0.0054548527114093],[-0.068343535065651,-0.099521018564701,0.072457000613213],[-0.03940025344491,-0.031612135469913,0.0050485022366047]],[[0.0055743749253452,0.017588969320059,-0.012049176730216],[0.0032113578636199,0.072830349206924,-0.1314567476511],[0.067535988986492,0.05327170342207,-0.030533824115992]],[[-0.068291611969471,-0.022485574707389,0.063655234873295],[-0.044301174581051,0.027696665376425,0.016599096357822],[-0.018889369443059,0.055779401212931,0.064812950789928]],[[-0.017277268692851,0.020508006215096,-0.060788080096245],[0.10990684479475,0.052371565252542,-0.046068269759417],[0.036016695201397,-0.053212195634842,0.052445281296968]],[[-0.01165694091469,-0.03150886297226,0.043385233730078],[-0.047358624637127,0.052823528647423,0.034205932170153],[0.043177533894777,-0.10791317373514,0.0076512708328664]],[[-0.061779204756021,-0.096608459949493,0.057520106434822],[-0.07069219648838,0.013550710864365,0.044940959662199],[0.087938100099564,0.15506584942341,-0.0054917791858315]],[[-0.039363153278828,0.054661203175783,-0.050204463303089],[0.12260360270739,-0.14353127777576,0.040702790021896],[0.061213947832584,-0.11576465517282,-0.099912002682686]],[[0.047106135636568,-0.011966792866588,-0.033463921397924],[-0.074500977993011,-0.026951998472214,0.093077220022678],[0.12532244622707,0.10772068053484,-0.011136933229864]],[[0.04192591458559,0.03498288616538,-0.08167764544487],[0.056377656757832,0.0063680508174002,-0.012358045205474],[-0.044054873287678,-0.035615630447865,0.06969092041254]],[[-0.0078559704124928,0.057899851351976,0.0011525504523888],[0.1259557902813,-0.096483215689659,0.01900034211576],[-0.034364446997643,0.060517378151417,-0.020039666444063]],[[-0.017052475363016,0.070141665637493,-0.039611849933863],[-0.078471980988979,0.14043042063713,-0.068582817912102],[0.073968805372715,-0.02625361084938,-0.029855325818062]],[[-0.072524480521679,-0.0039359931834042,0.0088820522651076],[0.035109773278236,0.021002523601055,0.027424233034253],[-0.0081568425521255,-0.044897507876158,0.047013618052006]],[[0.10918648540974,0.048917215317488,0.083150796592236],[0.041028641164303,-0.026546830311418,0.029314193874598],[-0.052681673318148,0.00055196415632963,-0.05534677579999]],[[0.050392150878906,0.066497467458248,0.072342336177826],[0.11125921458006,-0.0039219125173986,-0.085283435881138],[0.092969886958599,0.0028748100157827,0.0043875589035451]],[[-0.029243096709251,-0.0023869981523603,-0.0091548059135675],[0.025264825671911,0.052132606506348,0.0069275517016649],[0.032313220202923,0.042202014476061,0.060192801058292]],[[-0.034688413143158,-0.04902520775795,-0.12430921196938],[-0.037938926368952,-0.041456069797277,0.0026394384913146],[-0.14566734433174,0.10434425622225,0.049305208027363]],[[-0.0007946538971737,-0.0082769570872188,-0.043202854692936],[-0.047516595572233,0.039538387209177,0.11490719765425],[-0.10889849811792,0.042728878557682,0.11364234238863]],[[-0.06658810377121,0.14712262153625,0.0016453264979646],[-0.078826025128365,-0.061834361404181,0.011662508361042],[0.038383007049561,0.025957636535168,0.0041240495629609]],[[0.036996781826019,0.0091546168550849,-0.016344755887985],[-0.018103115260601,0.0073220827616751,0.013062176294625],[-0.011067037470639,0.062323279678822,0.02431764267385]],[[-0.030796663835645,-0.11988365650177,-0.01672306843102],[-0.10521071404219,0.08575339615345,0.0096043199300766],[0.0051882360130548,0.092532530426979,-0.010652246885002]],[[0.068474553525448,0.050938181579113,0.027345018461347],[-0.087541230022907,-0.0067252167500556,0.024134088307619],[-0.048638142645359,0.08326430618763,0.021889336407185]],[[-0.085448950529099,0.097657643258572,-0.049100242555141],[0.010524762794375,0.11731354892254,0.0080592902377248],[-0.0027441496495157,0.080196596682072,-0.037277448922396]],[[0.041611157357693,0.032584983855486,0.03402342274785],[0.14311407506466,0.0029646584298462,0.0012877370463684],[-0.027218213304877,-0.0073033212684095,0.051193222403526]],[[0.0062007284723222,-0.066616594791412,-0.041551273316145],[-0.025067480280995,0.048531964421272,0.033337034285069],[0.11557070165873,0.0089856302365661,0.0054077599197626]],[[-0.0055821458809078,0.16056577861309,-0.10777916014194],[0.037002645432949,-0.042554616928101,-0.038607526570559],[0.018062714487314,-0.061563421040773,0.003239965531975]],[[-0.047450628131628,0.11367660015821,-0.011417480185628],[-0.016016285866499,-0.026304084807634,-0.014544825069606],[-0.097443453967571,-0.065457701683044,0.10612967610359]],[[-0.074715457856655,0.039190132170916,0.076044239103794],[-0.0032992151100188,0.15614837408066,0.0050013018772006],[0.11325289309025,-0.018729196861386,0.0038889416027814]],[[0.068212099373341,0.0081962393596768,-0.06933057308197],[-0.1575867831707,0.22129668295383,-0.11689798533916],[0.12780214846134,0.22068464756012,0.089728817343712]],[[-0.00045148658682592,0.031851705163717,0.0001176189398393],[-0.047315072268248,-0.055253881961107,0.015519990585744],[-0.18807515501976,0.0087043568491936,0.042763590812683]],[[0.15869204699993,0.094713173806667,0.055465437471867],[0.091077759861946,0.046402744948864,0.068173035979271],[0.14574538171291,-0.005497835110873,0.061752364039421]],[[0.051407720893621,-0.046546000987291,0.09187838435173],[-0.068763270974159,-0.01135185174644,-0.0037216662894934],[0.045222796499729,0.10549464821815,-0.044410444796085]],[[0.0031402665190399,-0.16046863794327,-0.0030605173669755],[-0.040833044797182,-0.021053582429886,-0.05539508536458],[-0.049125209450722,0.047254636883736,0.051832992583513]],[[-0.045040879398584,-0.023924035951495,0.062581732869148],[-0.12885211408138,-0.072718732059002,0.030119743198156],[-0.08526585996151,0.12449404597282,-0.043197799474001]],[[0.09320467710495,-0.080473959445953,0.025246012955904],[0.057881478220224,0.029326979070902,0.044357161968946],[-0.16150332987309,0.011046546511352,-0.023366330191493]],[[-0.043835576623678,-0.025736130774021,-0.04438728094101],[-0.033263321965933,0.01425851136446,0.013065934181213],[-0.03262048214674,-0.0032119217794389,0.056196622550488]],[[0.051412172615528,0.019101912155747,-0.1317326426506],[0.0042776302434504,-0.060963913798332,-0.072220787405968],[-0.0028805930633098,-0.11945774406195,0.036250744014978]],[[0.03190129250288,-0.075467832386494,-0.026704689487815],[0.071723356842995,-0.13326984643936,0.033880267292261],[-0.037416275590658,-0.0076621351763606,0.013445665128529]],[[0.0469088293612,-0.05580210313201,0.0069800093770027],[-0.10226671397686,0.0043778773397207,0.049234170466661],[-0.085376158356667,0.037208721041679,-0.036525398492813]],[[-0.016927948221564,-0.046479858458042,0.0074407192878425],[-0.023462714627385,0.023321941494942,0.078563585877419],[0.092984057962894,0.10860724002123,0.035688459873199]],[[-0.018225740641356,-0.069954864680767,0.085433311760426],[-0.023029573261738,-0.066180646419525,-0.076318643987179],[0.080178022384644,0.050910592079163,0.045483626425266]],[[0.011924365535378,-0.071670241653919,-0.052958209067583],[0.042174398899078,0.008589562959969,-0.037138268351555],[0.089569710195065,0.048343397676945,0.021150717511773]],[[-0.0049314349889755,-0.087829828262329,-0.020131345838308],[0.12488283962011,-0.04068161174655,-0.014699936844409],[-0.17872931063175,0.11338393390179,-0.0095805916935205]],[[-0.010149967856705,-0.10089242458344,0.04471841827035],[-0.014826202765107,-0.040093969553709,-0.038857609033585],[-0.016744198277593,0.024871515110135,0.0094359507784247]],[[-0.019755268469453,-0.065548829734325,-0.0054314862936735],[0.04760167747736,0.014197167009115,0.056132331490517],[0.037203181535006,-0.032235074788332,0.060955580323935]],[[-0.06899680942297,-0.048902876675129,-0.065439336001873],[0.0018102012109011,0.039422806352377,-0.030711648985744],[0.05034015327692,-0.045546259731054,0.012431479990482]],[[-0.037070583552122,-0.02571495436132,0.020727276802063],[2.6667144993553e-05,0.027227992191911,0.017217699438334],[0.076988250017166,0.069582022726536,-0.033565804362297]],[[-0.13224467635155,0.069366738200188,0.02623438835144],[-0.19422470033169,0.12736366689205,0.087659992277622],[0.033793084323406,0.017717344686389,-0.0014761675847694]],[[0.02547494135797,0.024605385959148,-0.049571238458157],[0.028443727642298,-0.0426230058074,0.081366427242756],[-0.047066353261471,-0.004060938488692,0.026269169524312]],[[-0.021421279758215,0.074029184877872,-0.060972187668085],[-0.04854129999876,-0.07535407692194,0.091187655925751],[-0.0247404538095,-0.13447524607182,0.045380655676126]],[[-0.098438873887062,0.0017690709792078,0.084254525601864],[-0.038332041352987,0.001848995918408,-0.020701372995973],[0.057999853044748,0.023980503901839,-0.010976756922901]],[[0.12426315248013,0.046761550009251,-0.014735456556082],[0.034070365130901,0.067612983286381,-0.073553368449211],[-0.072718299925327,-0.18289330601692,-0.060754515230656]],[[-0.018033530563116,0.06074370443821,-0.044137105345726],[0.095624580979347,-0.013239885680377,-0.080038912594318],[-0.072350792586803,-0.098967723548412,-0.00043563221697696]],[[-0.018184166401625,-0.029898291453719,-0.0077770887874067],[-0.005311047192663,-0.071304492652416,-0.060925282537937],[-0.065701723098755,0.1075284704566,0.018007971346378]],[[0.15476544201374,-0.1213908046484,-0.01233291067183],[-0.15290215611458,0.052259549498558,0.059611473232508],[-0.060327127575874,0.11179406940937,0.10693054646254]]],[[[0.025139585137367,-0.0071288240142167,-0.087598465383053],[-0.045222334563732,-0.0016961264191195,0.025569537654519],[0.084088340401649,-0.11374010890722,-0.096391215920448]],[[0.018396601080894,0.034104898571968,0.035291831940413],[-0.05666359141469,0.020677056163549,0.054543316364288],[-0.053798779845238,-0.067574486136436,0.069710731506348]],[[0.00055337330559269,0.021252969279885,-0.010306116193533],[0.057174246758223,0.015224372968078,0.071561343967915],[0.037378624081612,-0.020740564912558,-0.046224735677242]],[[0.03109741024673,-0.038786869496107,-0.18662868440151],[-0.10875851660967,0.030632879585028,-0.0057134781964123],[0.039966225624084,0.0040740072727203,0.070361725986004]],[[-0.024634623900056,-0.083021074533463,0.011229496449232],[0.022862236946821,0.044158056378365,0.014912256039679],[-0.11774488538504,0.063079886138439,0.067930765450001]],[[-0.066112324595451,-0.075475841760635,-0.0221794154495],[0.080568663775921,0.10974062979221,0.082703538239002],[0.014683574438095,-0.009104685857892,-0.041685469448566]],[[-0.046865928918123,-0.068236440420151,-0.035367846488953],[0.043963946402073,0.022024167701602,-0.036652695387602],[-0.06892617046833,0.071272879838943,0.0027316985651851]],[[0.079146690666676,-0.071321845054626,-0.14295019209385],[0.0092988200485706,0.006177019327879,-0.022632380947471],[0.11797784268856,-0.0047768382355571,-0.00012388052709866]],[[-0.18084888160229,-0.054613877087831,-0.029305193573236],[-0.011733867228031,-0.087570376694202,0.05865166708827],[0.024809651076794,-0.065336599946022,-0.17147532105446]],[[-0.080920472741127,-0.027368810027838,-0.06399767100811],[-0.010125072672963,0.027885746210814,-0.068516775965691],[0.016095189377666,0.038510166108608,-0.018946245312691]],[[-0.01985059864819,0.13273061811924,0.09036735445261],[0.02297799475491,0.028833236545324,0.0089797871187329],[0.063824377954006,0.14534825086594,-0.012076610699296]],[[0.10687581449747,0.046213407069445,0.052309066057205],[-0.095893211662769,-0.037256069481373,-0.032653145492077],[0.16108293831348,0.046425130218267,-0.037357315421104]],[[-0.076204933226109,-0.0020980385597795,0.11031283438206],[-0.11044280230999,-0.13299724459648,-0.03275803104043],[0.16799613833427,-0.0303072668612,-0.087278127670288]],[[0.068428568542004,-0.026154860854149,-0.069095432758331],[0.010412988252938,0.11826518923044,0.028281733393669],[-0.029443450272083,-0.13308861851692,0.0042052585631609]],[[0.0099322609603405,0.11107445508242,-0.058187615126371],[-0.075392790138721,0.035150431096554,0.068760901689529],[-0.016182627528906,-0.01905969530344,0.048304315656424]],[[-0.063427060842514,-0.0096752857789397,-0.073967814445496],[-0.041050631552935,0.0062843984924257,-0.016186121851206],[0.1762512922287,0.083299420773983,0.0098270624876022]],[[-0.035135086625814,0.051267694681883,0.033506885170937],[0.11261289566755,-0.030922366306186,0.040898777544498],[-0.063566476106644,-0.055120650678873,0.02812160179019]],[[0.017592523247004,0.040603376924992,-0.041040532290936],[-0.053680449724197,0.013138423673809,-0.047146629542112],[-0.0074397572316229,0.074215039610863,-0.0090397456660867]],[[0.019672324880958,0.013254859484732,-0.042987428605556],[0.0124028082937,-0.059861894696951,-0.0076012038625777],[0.092095032334328,0.097135759890079,0.010316150262952]],[[0.18026147782803,0.085886672139168,0.012375589460135],[0.023101586848497,0.031159279868007,-0.06436225771904],[0.073408044874668,0.097284346818924,0.040228594094515]],[[0.048466935753822,-0.087677426636219,-0.056158225983381],[0.013690597377717,-0.02271668612957,0.097205087542534],[-0.11636475473642,-0.14767478406429,0.01854114793241]],[[-0.0064517855644226,0.10486190021038,0.054116196930408],[-0.050852756947279,0.01915972866118,-0.11244859546423],[0.092070579528809,0.034708902239799,-0.0073156687431037]],[[-0.015947986394167,0.012900795787573,0.091867804527283],[-0.12172871083021,-0.032181303948164,0.037252485752106],[-0.030663447454572,0.012641243636608,0.038119360804558]],[[0.024819362908602,0.11569508165121,0.087188325822353],[-0.048113975673914,0.072885267436504,-0.0032653948292136],[0.12542441487312,0.036289665848017,-0.015559587627649]],[[-0.036765526980162,-0.15648432075977,-0.20237626135349],[-0.018940286710858,-0.075136132538319,0.00026053466717713],[0.033551398664713,-0.20577892661095,-0.17768362164497]],[[0.067343853414059,0.05119090154767,0.053175121545792],[-0.011169743724167,0.046394743025303,0.042279988527298],[0.21293048560619,0.046367332339287,0.013550709933043]],[[-0.21853344142437,0.057189505547285,0.18721315264702],[0.065714552998543,-0.047167394310236,-0.085664555430412],[-0.0056158350780606,-0.0071733430959284,0.028104092925787]],[[-0.059811189770699,0.13478069007397,-0.077703647315502],[0.059727534651756,0.053819514811039,0.15492588281631],[0.11605548113585,-0.024069139733911,-0.011666471138597]],[[0.047742683440447,0.057290058583021,-0.051452599465847],[0.064063742756844,0.13183544576168,-0.025895206257701],[0.025340082123876,-0.05510227009654,-0.02514391951263]],[[-0.082055039703846,0.054874017834663,0.026444023475051],[0.10637757182121,0.043441511690617,0.051788751035929],[0.11292214691639,0.099982909858227,0.12757210433483]],[[-0.11454164981842,0.0011362332152203,-0.0083138234913349],[0.063276529312134,0.017925705760717,0.016655856743455],[0.030919149518013,-0.056775137782097,-0.034460432827473]],[[0.010315151885152,-0.064159825444221,0.052888106554747],[0.027747878804803,0.11615102738142,-0.0037323641590774],[-0.023108525201678,0.15866023302078,0.11901395022869]],[[-0.041373606771231,-0.012030256912112,0.02143288217485],[-0.04296201467514,-0.016953386366367,0.019233766943216],[0.05108368396759,-0.11619938164949,0.0025280718691647]],[[0.060020800679922,0.10720586031675,0.10686665773392],[-0.043401535600424,-0.079086542129517,-0.022690640762448],[-0.024806160479784,0.034793321043253,-0.0052662347443402]],[[0.013383949175477,-0.022545734420419,0.02949514426291],[-0.058092623949051,0.0056611527688801,-0.037506341934204],[0.076712667942047,0.038379289209843,0.015161204151809]],[[0.093453250825405,-0.015209205448627,-0.045145206153393],[-0.036273527890444,0.13605237007141,-0.077688537538052],[-0.17218554019928,0.042702313512564,0.024732932448387]],[[0.065945237874985,-0.065006501972675,-0.03987380489707],[0.018930964171886,-0.036451805382967,0.027861721813679],[0.031242270022631,0.02388459444046,0.15367455780506]],[[0.066442281007767,-0.029378643259406,-0.057900562882423],[-0.028320569545031,0.021971948444843,0.039109818637371],[-0.014517329633236,0.035166025161743,0.04462867602706]],[[0.0076061519794166,-0.0096528055146337,0.08476098626852],[-0.099797911942005,0.027896882966161,-0.012125478126109],[-0.035675186663866,-0.01569957472384,0.087810836732388]],[[0.092398926615715,-0.043463934212923,-0.024229990318418],[0.023448495194316,0.051700733602047,0.044683422893286],[0.21744312345982,-0.032456874847412,0.032106142491102]],[[0.015537964180112,0.026915770024061,0.074293777346611],[-0.0013089032145217,0.0052933194674551,0.014107838273048],[-0.023824498057365,0.021325517445803,-0.10160734504461]],[[0.053235206753016,0.042195409536362,0.089079618453979],[-0.026031056419015,-0.013544080778956,0.031778812408447],[0.032065913081169,0.0048369807191193,0.077630199491978]],[[-0.037801641970873,0.074596293270588,-0.10256595164537],[0.06853162497282,-0.0054066986776888,0.040216024965048],[0.19435419142246,0.11195282638073,0.022341065108776]],[[0.039394281804562,0.04668503254652,0.080833934247494],[-0.024540096521378,0.086776904761791,0.046135745942593],[-0.094452619552612,-0.10554514080286,-0.074797324836254]],[[0.048924561589956,-0.059817250818014,0.083630353212357],[0.049791730940342,-0.023567266762257,0.082453802227974],[-0.027184562757611,-0.10519082844257,-0.05320705845952]],[[0.02966826967895,0.07028041779995,0.092692196369171],[0.05143041908741,0.080759897828102,0.05231961607933],[0.11276113986969,0.070240192115307,0.089302875101566]],[[0.020777683705091,0.14183561503887,-0.1098854765296],[0.12382523715496,0.029529148712754,-0.024767719209194],[-0.15070593357086,-0.035197034478188,0.078541599214077]],[[-0.17501176893711,-0.28971564769745,-0.15889194607735],[-0.20584560930729,-0.28890725970268,-0.18502695858479],[-0.23832359910011,-0.40675032138824,-0.1505041718483]],[[-0.029717549681664,-0.043793220072985,-0.031430572271347],[-0.0039450200274587,-0.018806289881468,0.037112925201654],[-0.0019714783411473,0.059280022978783,0.0440873503685]],[[0.074427016079426,0.014621280133724,-0.039373721927404],[-0.0061877076514065,0.057002227753401,0.017963023856282],[-0.11861553043127,0.0074502527713776,0.014290704391897]],[[-0.089012175798416,-0.029524229466915,0.034765485674143],[-0.028901455923915,0.086840324103832,0.057577636092901],[-0.15876503288746,0.0091815330088139,-0.08026797324419]],[[-0.014498425647616,0.049455907195807,0.077249646186829],[-0.008466949686408,-0.039868544787169,-0.046418275684118],[0.063165061175823,0.048497784882784,0.036810886114836]],[[0.017365025356412,0.007972220890224,0.022178711369634],[0.032524157315493,0.0089881923049688,0.010806183330715],[-0.048866346478462,-0.052045699208975,-0.013737658038735]],[[0.0064326617866755,-0.013053178787231,0.035003080964088],[0.070602536201477,0.12427635490894,-0.094403795897961],[-0.22384838759899,-0.097662344574928,0.053584158420563]],[[-0.053029268980026,-0.13003249466419,-0.043590687215328],[-0.06022285670042,-0.060237061232328,-0.025121698155999],[-0.056687586009502,0.051545556634665,-0.10958664119244]],[[-0.067832134664059,0.11402598023415,0.01818217150867],[0.062213134020567,0.012999431230128,-0.096404351294041],[0.077121764421463,0.033991079777479,0.015210338868201]],[[-0.060266651213169,0.021999690681696,0.096398629248142],[0.17295974493027,0.18120464682579,0.099082827568054],[0.096677169203758,0.084054216742516,0.17670021951199]],[[0.055852714926004,0.088348411023617,0.048536766320467],[-0.01752339117229,-0.026246748864651,-0.09337155520916],[0.088362269103527,0.024840835481882,-0.032143626362085]],[[-0.026411762461066,-0.024403996765614,0.035996597260237],[0.12588994204998,0.12846376001835,0.097691528499126],[0.046334154903889,0.081768102943897,0.08106617629528]],[[-0.0713110268116,-0.11889983713627,-0.022334855049849],[-0.083099663257599,0.10105354338884,0.060512773692608],[-0.023801440373063,0.047189112752676,0.065302662551403]],[[0.069108709692955,0.044132854789495,0.046595066785812],[-0.0031792263034731,0.014698590151966,0.071833714842796],[-0.18614146113396,-0.12692587077618,0.022386493161321]],[[-0.17985811829567,-0.20988936722279,0.11740863323212],[-0.077838927507401,-0.067812874913216,-0.14947855472565],[-0.22407339513302,-0.22057165205479,-0.031568195670843]],[[-0.051942318677902,0.0068157953210175,0.06977517157793],[-0.03888027369976,-0.11811593174934,-0.10252109915018],[-0.045292723923922,-0.12624752521515,-0.042922023683786]],[[-0.032999806106091,-0.049501061439514,-0.004727880936116],[0.074637159705162,-0.013485673815012,0.029939135536551],[0.051851838827133,0.077053017914295,-0.0088082486763597]],[[0.017885541543365,-0.03312548622489,0.018157187849283],[0.0053541334345937,-0.093361936509609,-0.090050503611565],[-0.064202435314655,-0.046596504747868,0.029455436393619]],[[-0.063929446041584,0.11485221982002,0.13856907188892],[-0.05824813246727,-0.10940854996443,-0.048849415034056],[0.12433379888535,0.040701359510422,0.095195114612579]],[[-0.046095617115498,-0.026621332392097,-0.012650404125452],[-0.065136715769768,-0.020415550097823,0.0076827700249851],[-0.022799864411354,-0.079698242247105,0.077871590852737]],[[-0.092057205736637,0.070939570665359,-0.004761063028127],[0.12731213867664,0.055222984403372,-0.035314690321684],[-0.045605774968863,0.11341553926468,0.066820092499256]],[[0.056099992245436,-0.063425436615944,-0.076052501797676],[0.15377037227154,0.005539137404412,-0.052420478314161],[0.086629368364811,0.0087523981928825,-0.13364680111408]],[[0.016885481774807,-0.033137325197458,0.041163522750139],[-0.02341441065073,0.079636782407761,0.082097969949245],[-0.098225258290768,0.016126673668623,0.044152300804853]],[[-0.031127240508795,0.15987706184387,-0.052647780627012],[0.1098915413022,0.043049823492765,0.042359262704849],[0.05759909376502,0.055817950516939,0.066720433533192]],[[-0.0025009212549776,0.12326373904943,0.012759464792907],[0.15239587426186,0.019385058432817,-0.13282755017281],[0.02132480032742,0.11837116628885,-0.1500491797924]],[[0.062451120465994,0.039216067641973,0.072029322385788],[-0.011708626523614,0.13283485174179,0.019385386258364],[0.076458424329758,0.027750121429563,-0.0077108270488679]],[[0.011917255818844,0.055015724152327,-0.064986251294613],[-0.11271928995848,-0.023099381476641,-0.0018729036673903],[0.046925488859415,-0.044830661267042,0.067555218935013]],[[0.048185586929321,0.065215893089771,-0.032517891377211],[0.023891508579254,-5.2035662520211e-05,-0.0079311821609735],[-0.025215893983841,0.024916905909777,0.02890095859766]],[[0.080338381230831,0.05794532969594,-0.048982247710228],[0.02644107490778,0.068754464387894,-0.05011996999383],[-0.072708763182163,-0.089856959879398,-0.020714092999697]],[[-0.006837697699666,-0.017713265493512,-0.024244543164968],[-0.10081444680691,0.048186186701059,0.040404826402664],[0.050136983394623,-0.056221548467875,0.031182384118438]],[[0.015582795254886,-0.16118557751179,0.061186611652374],[0.066405408084393,0.03820763155818,0.11049514263868],[0.077139347791672,0.16586378216743,-0.057132016867399]],[[0.046424314379692,-0.02247422747314,0.0035614052321762],[0.084233239293098,-0.011567532084882,-0.10753377526999],[0.026761036366224,0.085246361792088,0.079278521239758]],[[0.039284002035856,-0.036759741604328,-0.01207285374403],[-0.025244200602174,-0.097287692129612,0.019626960158348],[-0.062792800366879,-0.082361705601215,0.083318263292313]],[[-0.050027549266815,-0.10416845977306,0.050825584679842],[0.042357571423054,-0.023890886455774,-0.057458929717541],[0.0071634449996054,0.037310764193535,0.054057754576206]],[[0.10119712352753,0.14310428500175,-0.046914327889681],[0.024099411442876,0.029105324298143,0.11510536819696],[-0.11830419301987,-0.08175178617239,-0.03418231382966]],[[-0.14166885614395,0.037984177470207,0.018004970625043],[-0.015750551596284,-0.025638364255428,-0.013317099772394],[-0.07065723836422,0.052204590290785,0.053502842783928]],[[0.083888217806816,-0.040414124727249,0.0090746833011508],[-0.017904501408339,0.031331673264503,-0.00092556595336646],[-0.02508438937366,0.01306529995054,-0.10976307094097]],[[-0.0085727581754327,-0.06729781627655,0.053373992443085],[0.043574772775173,0.084168188273907,0.030554762110114],[-0.0099673755466938,-0.0062806243076921,-0.065328381955624]],[[-0.039689235389233,-0.019243158400059,-0.0027165345381945],[-0.0015517092542723,-0.11065772920847,-0.039030726999044],[-0.062166031450033,0.045634545385838,0.057531539350748]],[[-0.017382830381393,0.068328015506268,-0.030656773597002],[0.024278677999973,-0.038530308753252,-0.030684072524309],[-0.13404095172882,-0.020013719797134,-0.00419144006446]],[[-0.036696020513773,0.075035057961941,0.091544225811958],[-0.046331636607647,-0.011913134716451,-0.0010464632650837],[-0.050156008452177,-0.051340255886316,0.020982068032026]],[[0.097602732479572,0.14496001601219,0.089026138186455],[0.016737205907702,-0.031461756676435,-0.013400399126112],[0.057282663881779,0.11144296824932,0.080671474337578]],[[0.010930017568171,0.044172629714012,-0.085720576345921],[0.00013709279301111,0.069926023483276,0.066352009773254],[-0.059939730912447,-0.071960642933846,-0.10276224464178]],[[0.016721848398447,0.056115612387657,-0.00046073540579528],[0.066871210932732,-0.0054291007108986,0.007116662338376],[-0.098014578223228,0.02926336042583,0.093519017100334]],[[0.057304356247187,-0.057403042912483,-0.030868206173182],[0.0074848057702184,-0.031245579943061,0.0080444039776921],[0.10012414306402,0.0018296663183719,0.081181094050407]],[[-0.077785186469555,-0.081772945821285,0.055539101362228],[0.051482569426298,0.053565945476294,0.055797681212425],[0.013200763612986,-0.090074516832829,0.050659466534853]],[[-0.015604049898684,0.01519253756851,-0.049393609166145],[0.090929366648197,-0.012750942260027,-0.11739295721054],[-0.076854176819324,0.024964183568954,-0.020477371290326]],[[-0.0567024089396,0.0066747539676726,0.030203126370907],[0.095339648425579,0.017407279461622,-0.024291841313243],[-0.060357250273228,-0.015638636425138,0.038018181920052]],[[0.027062345296144,0.008335811085999,-0.021762756630778],[-0.036510095000267,-0.083661861717701,-0.044101029634476],[0.091555789113045,0.029229681938887,0.048727698624134]],[[0.062644317746162,0.082719162106514,0.038137063384056],[-0.12782774865627,0.003171359654516,0.0039033947978169],[-0.01114274840802,-0.0054175974801183,-0.025505855679512]],[[-0.033876493573189,-0.05710157379508,0.016450909897685],[0.11523803323507,0.032254315912724,-0.033903632313013],[-0.017382165417075,0.011573694646358,0.014153274707496]],[[0.035227954387665,-0.015442401170731,0.029477585107088],[0.026501543819904,0.027850173413754,0.041558112949133],[-0.0021979564335197,0.061099380254745,0.067757621407509]],[[0.020775819197297,-0.21208618581295,0.023910097777843],[-0.097865626215935,-0.068266838788986,0.10730118304491],[0.015849849209189,0.19574338197708,0.077628172934055]],[[0.072289995849133,-0.069566249847412,-0.21962162852287],[-0.14161506295204,0.015823144465685,-0.17274868488312],[-0.18785932660103,-0.29204905033112,-0.16835333406925]],[[-0.0072499741800129,0.06730118393898,0.10147265344858],[-0.071854092180729,0.14312079548836,-0.0052210502326488],[0.03156329318881,0.042500391602516,0.014361975714564]],[[0.0044727749191225,-0.010401300154626,0.0011918067466468],[-0.018410002812743,-0.083548560738564,0.022791899740696],[0.091828696429729,0.1005284935236,0.051625683903694]],[[-0.046708930283785,-0.01835067011416,0.012502364814281],[0.029930012300611,-0.020120238885283,-0.012752962298691],[0.0033415749203414,0.070380955934525,0.009526695124805]],[[0.018251044675708,0.039780650287867,-0.083252660930157],[-0.041213694959879,-0.0065585831180215,-0.070620514452457],[0.075942881405354,0.055974338203669,-0.014361659064889]],[[-0.016293715685606,-0.13721203804016,-0.076461344957352],[0.08706846088171,0.063452899456024,0.033343873918056],[-0.0037557932082564,-0.00042636616853997,0.00016296675312333]],[[-0.001855353708379,0.048891231417656,0.021489357575774],[-0.0090108960866928,0.014715137891471,-0.067348569631577],[0.14871063828468,0.0079790409654379,-0.026053622364998]],[[0.10611686110497,-0.031508136540651,-0.091399997472763],[0.075907573103905,0.026944894343615,0.00083375204121694],[0.18468277156353,-0.032877083867788,-0.035837981849909]],[[-0.036261204630136,-0.0305080935359,-0.016639050096273],[-0.056324727833271,0.0090419240295887,0.059755250811577],[0.12454106658697,0.048362512141466,-0.0095816059038043]],[[0.095090635120869,0.016290705651045,-0.046653222292662],[0.062698930501938,0.0054812706075609,-0.029093023389578],[-0.010680768638849,-0.064869895577431,0.030574152246118]],[[-0.083859734237194,-0.096406720578671,-0.12479384988546],[0.013444095849991,0.0081344842910767,0.0014385492540896],[0.10659399628639,0.12233032286167,0.055785823613405]],[[-0.024618841707706,-0.027952462434769,0.032432500272989],[0.012006367556751,-0.10531630367041,-0.002381099620834],[0.00037849953514524,-0.082468368113041,0.091281324625015]],[[-0.10020971298218,-0.073119059205055,-0.026377188041806],[-0.032786503434181,-0.052978411316872,-0.03901944309473],[0.08667703717947,0.069133818149567,-0.015135925263166]],[[-0.044805362820625,0.018890529870987,0.057647615671158],[0.042518343776464,0.054734077304602,-0.039644535630941],[-0.11592520773411,0.046999577432871,-0.0035224058665335]],[[-0.026594592258334,0.052464298903942,0.059159025549889],[0.0057741710916162,0.024277163669467,0.1029240116477],[-0.034732557833195,-0.096651218831539,0.036521919071674]],[[-0.017657626420259,0.19472862780094,-0.02243878506124],[-0.021001253277063,0.01170460972935,-0.049478195607662],[-0.068755745887756,-0.060767564922571,-0.02936889603734]],[[0.025495562702417,-0.017639804631472,-0.16641756892204],[0.021890627220273,0.00079660024493933,-0.014095019549131],[0.011932777240872,-0.020669145509601,0.058173216879368]],[[0.13421596586704,0.16589006781578,0.05890729278326],[0.083439737558365,0.014594106934965,-0.075547531247139],[0.06923846155405,0.060317300260067,-0.024260919541121]],[[-0.11457250267267,-0.046572417020798,-0.093583896756172],[-0.0095139713957906,-0.11324936896563,-0.027041129767895],[0.062435496598482,0.0046212105080485,0.0012292041210458]],[[-0.00078229536302388,0.013061532750726,0.057210013270378],[0.086119741201401,0.018274310976267,-0.015551840886474],[0.1011331230402,0.10648638010025,0.03857809305191]],[[-0.18718561530113,-0.12870129942894,0.026102408766747],[0.02015089429915,-0.073799461126328,0.015720512717962],[-0.011619552969933,-0.025234322994947,0.062186017632484]],[[-0.022507175803185,0.049254614859819,0.072374582290649],[0.16915054619312,-0.041416272521019,-0.037144780158997],[-0.017002992331982,-0.23226901888847,-0.058038931339979]],[[-0.19815923273563,0.10092927515507,0.19855371117592],[-0.03270261362195,-0.13208001852036,0.08455465734005],[-0.010812595486641,0.13288037478924,-0.091790907084942]],[[-0.053986452519894,-0.036998827010393,-0.070604801177979],[0.0010686998721212,-0.028397040441632,-0.06488211452961],[-0.057263061404228,-0.012862483039498,-0.013408181257546]],[[-0.04476261138916,-0.02666381187737,0.043200131505728],[-0.11817394942045,-0.071070559322834,0.017003389075398],[0.10792306065559,0.044869765639305,-0.027659682556987]],[[0.13853418827057,-0.049102704972029,-0.017456352710724],[0.050739042460918,-0.0032585649751127,0.054295919835567],[0.026699367910624,-0.044420689344406,-0.0025773379020393]],[[-0.012397643178701,0.0095153572037816,-0.017088541761041],[-0.040319923311472,0.14488086104393,-0.021424129605293],[-0.10812117904425,0.0035485154949129,0.15715444087982]],[[-0.10548017919064,0.099433518946171,0.03530453145504],[0.01605280674994,-0.049283087253571,0.031813386827707],[0.067679569125175,-0.073695629835129,0.013144372962415]]],[[[-0.0045614358969033,-0.0456767603755,0.18947823345661],[0.022464612498879,0.014992678537965,0.0030168895609677],[-0.034517627209425,-0.011333337053657,-0.026230920106173]],[[0.080247655510902,0.10025552660227,-0.069173991680145],[-0.090922735631466,-0.00023173305089585,0.087851755321026],[0.034805983304977,-0.031757384538651,-0.033218249678612]],[[0.018250284716487,0.0012477268464863,-0.027737323194742],[-0.0029507833532989,-0.010653957724571,0.020150674507022],[-0.022645618766546,-0.11839028447866,0.036956194788218]],[[0.067109197378159,-0.00094024400459602,-0.038014467805624],[-0.11181602627039,-0.049090407788754,0.080594912171364],[0.067957155406475,-0.053788218647242,0.054264187812805]],[[-0.095418520271778,0.041769590228796,0.034520123153925],[0.02984412945807,0.027399079874158,-0.08520844578743],[-0.016440063714981,0.016211038455367,0.010719458572567]],[[0.02579920552671,0.043125793337822,-0.01819983124733],[0.015966491773725,0.041006647050381,0.0096485037356615],[0.04597220569849,-0.0015859032282606,0.10717505216599]],[[0.023633936420083,-0.10096912831068,-0.0063458210788667],[0.020247232168913,0.045662466436625,-0.025827519595623],[-0.018289651721716,0.12059488147497,-0.04258494079113]],[[-0.049651511013508,0.0094827925786376,-0.058630544692278],[0.036072324961424,-0.011205116286874,-0.043977629393339],[-0.11323923617601,-0.051912534981966,-0.00072414387250319]],[[-0.035830657929182,-0.052007831633091,0.046980377286673],[-0.01123246923089,-0.12550330162048,-0.064547121524811],[-0.032207176089287,-0.041809484362602,-0.039062850177288]],[[-0.039299361407757,-0.014749913476408,0.029860006645322],[0.041688341647387,-0.017238292843103,0.018926408141851],[-0.11011832952499,0.0023913327604532,-0.016456983983517]],[[0.030698463320732,0.0052181733772159,-0.019682805985212],[0.069909684360027,-0.023711504414678,-0.010750736109912],[-0.036907948553562,0.042677629739046,0.015596845187247]],[[0.065652534365654,0.0076945964246988,0.028121685609221],[-0.043975707143545,0.057916756719351,0.001481975778006],[0.10163172334433,-0.02234173193574,-0.018923040479422]],[[0.029763899743557,0.021446926519275,-0.086944848299026],[0.049309127032757,-0.026057599112391,-0.063960358500481],[0.0067712254822254,-0.10038801282644,-0.047649368643761]],[[-0.0013577004428953,0.10137071460485,-0.0050706281326711],[-0.010830410756171,0.079400740563869,0.050930246710777],[-0.051578391343355,-0.094773456454277,0.11700091511011]],[[0.072479940950871,0.062656410038471,-0.040018260478973],[0.01018384937197,-0.13126157224178,0.15786352753639],[0.21606512367725,-7.949308201205e-05,-0.036675073206425]],[[-0.043600529432297,0.032723415642977,-0.053181868046522],[-0.076341852545738,-0.041009116917849,0.17562468349934],[0.018062751740217,0.02234310656786,-0.04809395596385]],[[-0.04423489049077,-0.020912788808346,0.0038246433250606],[-0.068419314920902,-0.03252400457859,0.062324076890945],[-0.087103351950645,-0.094530157744884,-0.095665447413921]],[[-0.046717509627342,-0.094482995569706,-0.04899087920785],[0.0328748524189,-0.053162712603807,-0.061016619205475],[-0.0046010534279048,-0.018374480307102,0.047518409788609]],[[-0.077288828790188,0.013213527388871,0.048463765531778],[0.15240842103958,-0.10480369627476,-0.081411123275757],[-0.10821431875229,0.051725290715694,-0.068120613694191]],[[-0.059039298444986,0.024693852290511,-0.073071800172329],[-0.12575264275074,-0.065572425723076,-0.02894034050405],[-0.044785212725401,-0.085163414478302,-0.013028386048973]],[[0.010689981281757,-0.029740018770099,-0.1156183257699],[-0.068844117224216,0.034114450216293,-0.0053018177859485],[0.0050639775581658,-0.064837507903576,0.093620948493481]],[[0.026037205010653,-0.051705088466406,-0.016160201281309],[0.046102654188871,0.038975581526756,-0.14239370822906],[-0.052750866860151,0.0019647593144327,-0.12067627906799]],[[0.010931173339486,-0.024614311754704,-0.044553674757481],[-0.030317159369588,0.036542821675539,-0.01693064160645],[0.0004372081020847,-0.060372982174158,0.035590998828411]],[[0.031056279316545,-0.011700983159244,-0.053146451711655],[-0.04226129502058,0.036717087030411,-0.03938851505518],[-0.071593508124352,-0.052752390503883,-0.030492193996906]],[[0.24949690699577,-0.12514455616474,-0.066216595470905],[-0.034139059484005,0.24698694050312,-0.13305555284023],[-0.0085360817611217,0.02930616773665,0.20650768280029]],[[0.041694741696119,0.086346715688705,-0.023959657177329],[-0.14899353682995,0.025821542367339,0.031243354082108],[-0.071156322956085,-0.031021555885673,-0.10537949204445]],[[-0.0058922348544002,-0.017009759321809,-0.025568444281816],[-0.063006110489368,0.028382338583469,-0.12668907642365],[-0.10762266814709,-0.03050553612411,0.083510719239712]],[[-0.017783617600799,0.15155544877052,-0.011485058814287],[0.099254719913006,-0.032887175679207,0.12055566906929],[0.066715605556965,-0.081310160458088,0.041820622980595]],[[-0.019677812233567,0.092166319489479,-0.055969685316086],[0.041376005858183,0.063750520348549,0.027176726609468],[-0.0445790104568,0.10236851125956,0.03319001942873]],[[0.054132547229528,0.054834231734276,-0.076148070394993],[0.044186308979988,0.065855287015438,0.019654581323266],[-0.053245130926371,0.076175391674042,-0.081579454243183]],[[0.030916368588805,-0.066602416336536,-0.023482410237193],[0.056221049278975,-0.054583918303251,-0.052300423383713],[-0.054845698177814,-0.059754777699709,-0.0070503172464669]],[[-0.065830655395985,-0.080987438559532,-0.015633916482329],[-0.023165917024016,-0.0017606966430321,-0.02011171169579],[-0.027512144297361,-0.025728654116392,0.038656480610371]],[[0.043415870517492,0.15867075324059,0.069414220750332],[-0.038074918091297,0.078170508146286,0.14909315109253],[0.021357160061598,-0.16143441200256,-0.015126412734389]],[[0.032401785254478,0.083533801138401,-0.009890042245388],[-0.040828514844179,0.10956927388906,-0.0018612768035382],[0.041539330035448,-0.0082331812009215,-0.10965449362993]],[[-0.0080919992178679,0.05623622238636,-0.060871716588736],[-0.024579513818026,-0.03219947963953,0.078907109797001],[0.13158839941025,-0.026427844539285,0.099704593420029]],[[0.023363165557384,-0.033877938985825,-0.054155595600605],[-0.033988066017628,0.041165940463543,-0.031401932239532],[0.0025073704309762,-0.041377626359463,-0.03323033452034]],[[-0.13116256892681,0.1122680157423,-0.070013210177422],[-0.040410403162241,0.058700174093246,-0.004153857473284],[-0.037526253610849,-0.080737389624119,-0.064889162778854]],[[0.064576268196106,0.11588392406702,-0.032158527523279],[-0.064628355205059,0.082708358764648,0.10820702463388],[0.19191198050976,-0.04442461207509,-0.027691530063748]],[[0.042285811156034,0.033049508929253,-0.1053821593523],[-0.018491495400667,0.020304398611188,0.10885844379663],[0.1457926183939,0.0019691160414368,0.062608852982521]],[[0.11434353888035,0.080231085419655,-0.017500173300505],[0.013113071210682,-0.10660926252604,-0.05677454918623],[0.047753907740116,0.069308012723923,-0.035981606692076]],[[-0.067741870880127,-0.090237408876419,0.032910291105509],[0.060902960598469,-0.082091741263866,-0.044830068945885],[0.04247559607029,-0.12187015265226,-0.041104320436716]],[[-0.053845655173063,0.018911560997367,0.029029389843345],[0.067329369485378,-0.086904391646385,-0.078827209770679],[-0.088237397372723,0.051435220986605,-0.037458598613739]],[[-0.064911417663097,0.051698252558708,-0.066711984574795],[0.036296505481005,-0.010175628587604,0.22063188254833],[0.039116155356169,0.04502160102129,-0.11178636550903]],[[-0.013530574738979,-0.044500950723886,-0.017231836915016],[0.0055356025695801,0.078584678471088,-0.041616931557655],[-0.0093082645907998,-0.050273586064577,-0.023515027016401]],[[0.013644284568727,0.021528093144298,-0.0010595598723739],[0.086814373731613,-0.066565364599228,-0.13137948513031],[-0.011562495492399,-0.01369384676218,-0.064277395606041]],[[-0.1070404946804,0.085916243493557,-0.036097284406424],[0.055575463920832,-0.018529681488872,0.12793520092964],[0.0088007422164083,0.09804318100214,-0.11963342130184]],[[-0.040288992226124,-0.11426986008883,-0.010896465741098],[-0.081495679914951,0.039158340543509,0.017800468951464],[-0.069014385342598,-0.14522230625153,-0.040041286498308]],[[-0.068647861480713,-0.024974510073662,-0.034674823284149],[-0.15917280316353,0.10306207090616,-0.10125943273306],[-0.040841594338417,-0.064551822841167,-0.11359179764986]],[[0.039795972406864,0.015990974381566,-0.054898127913475],[-0.098944783210754,0.10246878117323,-0.045324523001909],[-0.024688629433513,0.0007341702003032,-0.036646045744419]],[[0.060541536659002,-0.0089031578972936,0.066877298057079],[-0.012889353558421,0.053594522178173,-0.073083952069283],[0.10561151057482,-0.016271766275167,-0.0086552165448666]],[[0.10807725042105,0.075925506651402,0.0042447447776794],[0.05351922288537,-0.045506466180086,0.038155525922775],[-0.021331418305635,0.028523543849587,0.002433592453599]],[[0.063633255660534,0.045400623232126,0.00020994080114178],[-0.022471059113741,-0.046319149434566,-0.018020195886493],[-0.064402438700199,0.0048870225436985,-0.0044050747528672]],[[0.083816088736057,-0.011395408771932,0.058301232755184],[-0.016079412773252,-0.086202472448349,0.067536987364292],[0.024537488818169,-0.035564072430134,-0.068049386143684]],[[-0.088810354471207,0.092740997672081,0.13397334516048],[-0.095003999769688,0.020756797865033,-0.050658993422985],[0.022564955055714,0.01622698828578,0.014567810110748]],[[0.097680225968361,-0.092837698757648,-0.040094289928675],[0.01141120120883,0.13969619572163,-0.032700106501579],[-0.044446334242821,-0.057864472270012,-0.039722867310047]],[[-0.037451956421137,-0.061897028237581,0.060845304280519],[-0.069819323718548,-0.013364410959184,-0.059605315327644],[0.05748588219285,0.051664035767317,-0.074238158762455]],[[0.10374727100134,0.0052201463840902,0.099902287125587],[-0.078292489051819,0.0087762288749218,0.10159410536289],[0.00055632158182561,0.09212589263916,-0.049387633800507]],[[-0.029934832826257,0.044297333806753,0.0070193279534578],[0.05320855230093,-0.059864617884159,0.014520825818181],[-0.022509010508657,-0.054990973323584,-0.093694791197777]],[[0.030474338680506,-0.016253819689155,-0.015901315957308],[0.028866792097688,-0.077255874872208,-0.077706731855869],[0.041527021676302,0.1382260620594,-0.038533888757229]],[[0.046238757669926,-0.017736352980137,-0.03956738486886],[-0.03415659815073,-0.10593823343515,-0.0081267692148685],[0.016272185370326,-0.00075513869524002,0.013890834525228]],[[-0.010037024505436,-0.039794072508812,0.15823769569397],[-0.0045163952745497,-0.096182934939861,0.020399985834956],[-0.11766186356544,0.082259856164455,-0.045008271932602]],[[0.082640171051025,-0.051024004817009,-0.0013403980992734],[0.010911118239164,0.093538321554661,-0.14867913722992],[-0.059127487242222,-0.070583246648312,0.16565963625908]],[[0.049159817397594,-0.041724901646376,0.089742697775364],[0.015315819531679,-0.0095932446420193,0.012029791250825],[0.041213124990463,0.07291667163372,0.092020399868488]],[[-0.015207686461508,0.028135301545262,-0.19705203175545],[-0.022367855533957,0.022212876006961,0.0080096153542399],[-0.11982744187117,-0.0082721365615726,-0.017344979569316]],[[-0.028979886323214,-0.076614581048489,-0.0094220191240311],[-0.036137845367193,-0.12233496457338,-0.013631691224873],[0.049267202615738,0.10378167033195,-0.0069168144837022]],[[0.07853227108717,0.011988669633865,-0.0047683049924672],[0.11258931457996,-0.026311667636037,0.039611794054508],[0.10754694789648,-0.060053832828999,0.052103560417891]],[[-0.010495110414922,0.014212097972631,-0.00036566911148839],[-0.13361851871014,0.062308680266142,0.034567631781101],[-0.030551413074136,-0.070011019706726,-0.062161304056644]],[[0.10435556620359,-0.032085075974464,0.015476387925446],[0.048220910131931,0.027593174949288,-0.023275814950466],[-0.12692387402058,-0.044045004993677,-0.045881595462561]],[[-0.034815177321434,0.099865168333054,-0.062208719551563],[0.040421616286039,0.050059244036674,-0.0010677282698452],[0.091253116726875,-0.04507302492857,-0.028226753696799]],[[-0.05597735196352,0.051358971744776,0.11573674529791],[0.13771739602089,0.055596061050892,-0.046548098325729],[-0.093428894877434,0.089996822178364,-0.048365958034992]],[[0.0075222025625408,-0.040276397019625,-0.015121763572097],[0.032392900437117,-0.035027269273996,0.06355693936348],[-0.087511233985424,0.073120050132275,-0.011317034251988]],[[-0.019318163394928,-0.081650838255882,0.040916867554188],[-0.032706826925278,-0.023116650059819,0.019493859261274],[-0.060857981443405,-0.072981536388397,-0.023181544616818]],[[-0.052393238991499,-0.028554001823068,-0.046151258051395],[-0.026672789826989,0.068001560866833,-0.031238516792655],[0.019753882661462,-0.10476317256689,-0.081043295562267]],[[-0.044200666248798,0.010991335846484,0.05148983374238],[0.029040919616818,-0.03037478774786,0.0058163129724562],[0.092327289283276,-0.16091756522655,-0.071582362055779]],[[-0.0011403971584514,-0.030476853251457,-0.0787133872509],[-0.10302399843931,0.00080135132884607,0.071013547480106],[-0.013934112153947,-0.20866951346397,-0.13442499935627]],[[0.043319884687662,-0.036937464028597,-0.12254340201616],[-0.038318071514368,0.11149721592665,-0.010954276658595],[0.016777791082859,-0.029846724122763,0.013547702692449]],[[-0.030327808111906,0.061285972595215,-0.15526248514652],[0.023836864158511,-0.013947935774922,0.030707206577063],[0.16363526880741,-0.069254912436008,-0.0093603488057852]],[[0.037593100219965,-0.068786770105362,0.043224014341831],[0.038574613630772,0.1424148529768,-0.0028617021162063],[-0.010954029858112,0.068673461675644,0.040572766214609]],[[-0.0086375866085291,-0.076214760541916,0.047147624194622],[-0.043219018727541,0.063793040812016,-0.042167898267508],[0.076138108968735,0.034282628446817,-0.031603030860424]],[[0.065266385674477,0.041432239115238,0.14167723059654],[-0.075304850935936,0.067309036850929,0.052883915603161],[-0.048533260822296,-0.020499849691987,-0.1765008866787]],[[0.052102480083704,-0.063350468873978,-0.056958615779877],[-0.025297977030277,-0.053401000797749,-0.13281819224358],[0.0083257462829351,0.009488433599472,0.08504968136549]],[[0.027844538912177,0.077643729746342,-0.058905303478241],[-0.056087713688612,0.018519373610616,-0.033393125981092],[0.038438323885202,-0.04922865703702,0.0593326613307]],[[-0.063487038016319,-0.035644996911287,-0.093026854097843],[-0.066373981535435,-0.055999863892794,-0.024869749322534],[-0.055991154164076,0.028892945498228,0.047022264450788]],[[0.10271885246038,0.019124858081341,0.080136157572269],[0.022474179044366,0.0063852109014988,-0.01926320232451],[0.022177662700415,-0.013083410449326,0.0035799336619675]],[[-0.025360679253936,0.010903783142567,0.038328364491463],[-0.0005828138673678,0.012444880791008,-0.032445557415485],[-0.071557395160198,-0.022337313741446,0.0056584379635751]],[[-0.051858298480511,-0.056065905839205,0.062723115086555],[0.0028801739681512,0.036189831793308,-0.090920671820641],[0.13348151743412,0.080113358795643,-0.044864561408758]],[[0.22221687436104,-0.059699393808842,0.0051116016693413],[-0.0095166815444827,-0.094657674431801,0.039783518761396],[0.0082989381626248,0.018079807981849,-0.10299657285213]],[[-0.12007913738489,0.12786594033241,0.0088062323629856],[0.10055931657553,0.020451880991459,0.096614830195904],[-0.07774942368269,-0.065273948013783,0.016273252665997]],[[-0.049821931868792,0.09774748980999,0.011204922571778],[0.12013250589371,-0.0014246271457523,-0.10685367137194],[0.035348668694496,-0.06389494240284,-0.087196581065655]],[[-0.0016592416213825,0.030692469328642,0.070772081613541],[-0.073654852807522,0.08799821138382,0.036657061427832],[-0.021249121055007,-0.053933810442686,-0.038600835949183]],[[0.005695132073015,-0.053376946598291,0.0015509617514908],[-0.0063970689661801,0.016325768083334,-0.095848344266415],[0.058737803250551,0.046216614544392,0.021784339100122]],[[-0.074557445943356,0.050242647528648,0.014912779442966],[-0.031965356320143,0.026759117841721,0.012614120729268],[-0.0069124246947467,0.070846654474735,0.078048974275589]],[[0.0062501858919859,0.13072085380554,0.084286354482174],[0.033413156867027,0.021126413717866,-0.018451303243637],[0.0017445811536163,-0.034895226359367,0.023433435708284]],[[-0.0037329182960093,-0.021779211238027,-0.069112382829189],[-0.075606971979141,-0.10528623312712,-0.054683092981577],[-0.01028311252594,-0.036795198917389,-0.0068465475924313]],[[-0.050920378416777,-0.077254951000214,-0.0061643961817026],[-0.021846001967788,0.035460207611322,-0.068970233201981],[-0.027705466374755,0.042414765805006,-0.0018801155965775]],[[0.0072540687397122,-0.045738719403744,-0.074394099414349],[0.0071862363256514,-0.1057448759675,0.012414363212883],[-0.028131786733866,-0.041114807128906,0.031321156769991]],[[0.021995717659593,0.09937322884798,-0.08986060321331],[0.060844708234072,0.036076918244362,0.049513049423695],[0.041996687650681,-0.07073563337326,-0.05686279386282]],[[0.030404744669795,-0.080220878124237,0.0026524777058512],[0.020500896498561,0.02266738563776,-0.041094321757555],[0.0079702967777848,-0.059424683451653,0.040087632834911]],[[-0.060424625873566,0.023985229432583,0.026634015142918],[0.067224681377411,0.026946501806378,0.0063418983481824],[-0.061359975486994,0.0055899787694216,-0.050346776843071]],[[0.28448307514191,-0.02022404037416,0.12285573780537],[-0.11478362977505,0.18828037381172,-0.094606891274452],[0.19689247012138,-0.0071891816332936,0.16549083590508]],[[-0.047629781067371,-0.11140805482864,-0.020728670060635],[-0.095507591962814,-0.067342080175877,-0.052027732133865],[0.015447672456503,-0.083034530282021,-0.064143881201744]],[[-0.011201363988221,0.030693480744958,0.098814345896244],[0.020949566736817,0.042403154075146,0.026255307719111],[-0.010891116224229,0.05892264470458,0.048464510589838]],[[-0.040645882487297,0.0010231191990897,-0.040590785443783],[-0.089950300753117,0.0012790161417797,-0.070640668272972],[-0.0026674563996494,-0.0072662848979235,-0.025708762928843]],[[-0.019294271245599,0.098597422242165,-0.0084068737924099],[-0.0012066269991919,0.030811827629805,0.039497017860413],[-0.055373668670654,-0.043783891946077,0.0072236261330545]],[[-0.043394330888987,-0.022949634119868,0.015842882916331],[0.031378380954266,0.13741062581539,-0.067292794585228],[0.039901845157146,0.031328581273556,-0.042140435427427]],[[0.07640478014946,-0.030164908617735,0.079123437404633],[-0.077553868293762,0.028087297454476,-0.013368918560445],[-0.0044853575527668,-0.049058392643929,-0.12919548153877]],[[-0.038695700466633,-0.05601704120636,0.089042320847511],[0.0358632132411,0.041359420865774,0.00034059025347233],[-0.076922662556171,-0.01691116951406,-0.0024139252491295]],[[-0.021327897906303,0.042816773056984,-0.0273860655725],[-0.041565876454115,-0.047482866793871,0.00085254292935133],[-0.00027700213831849,0.012204108759761,-0.018444648012519]],[[0.057245127856731,-0.050226632505655,-0.16166645288467],[-0.04606843367219,-0.10983499139547,0.090393245220184],[-0.027977334335446,0.022092312574387,0.033757846802473]],[[0.10340573638678,0.022529985755682,0.13938924670219],[0.11508671939373,-0.0055010160431266,-0.065823435783386],[-0.041672565042973,0.020416518673301,-0.053249575197697]],[[-0.021215392276645,-0.0014958844985813,-0.059281270951033],[-0.028020152822137,0.034286841750145,-0.016317084431648],[0.048887182027102,-0.037649836391211,0.028674209490418]],[[0.05974467471242,0.1237865164876,0.10474682599306],[-0.094648353755474,0.020410927012563,0.099264174699783],[-0.097409911453724,0.062018323689699,0.044322516769171]],[[-0.077195785939693,0.049146354198456,0.04494396597147],[-0.042925640940666,0.018193865194917,-0.060246255248785],[-0.037135697901249,-0.056731838732958,-0.016940705478191]],[[-0.010225807316601,-0.013110429979861,-0.060936205089092],[0.050833005458117,-0.058774683624506,0.0021432538051158],[0.034045550972223,-0.042622704058886,-0.023692166432738]],[[0.16082878410816,0.095208533108234,-0.030457727611065],[0.0008028952870518,-0.011276736855507,-0.10086781531572],[-0.05052125453949,0.0022457099985331,0.036950491368771]],[[-0.040076706558466,-0.012152997776866,0.021858049556613],[0.016504907980561,0.045762773603201,-0.054292909801006],[-0.059931799769402,-0.085160374641418,0.02385114133358]],[[-0.09696801006794,-0.081515409052372,0.0076207723468542],[-0.092158116400242,-0.011723697185516,-0.016593337059021],[-0.099735386669636,0.059842377901077,0.016377525404096]],[[-0.046921476721764,-0.082680605351925,0.032302912324667],[0.045114435255527,-0.093766458332539,-0.06469938158989],[0.01693231984973,-0.014068022370338,-0.060499168932438]],[[-0.058195739984512,-0.011501839384437,-0.069007687270641],[0.013637915253639,-0.14260038733482,0.095629706978798],[0.14917360246181,0.035861253738403,0.12328945845366]],[[0.096015393733978,-0.020055817440152,0.027022436261177],[-0.013978140428662,0.011780953034759,-0.082310199737549],[0.024412970989943,0.082822181284428,0.048588495701551]],[[-0.088856518268585,-0.067062735557556,-0.077950842678547],[-0.036117564886808,-0.055095214396715,-0.091910928487778],[-0.096675045788288,-0.084961533546448,-0.06244719773531]],[[-0.09121748059988,0.088255397975445,-0.10917452722788],[0.047912504523993,-0.061481930315495,-0.07402665168047],[0.01428050827235,-0.058783631771803,-0.0058525912463665]],[[-0.021706022322178,-0.11435043811798,-0.01653379201889],[-0.028094256296754,0.051046125590801,-0.049359496682882],[-0.079494796693325,-0.011011926457286,-0.014350763522089]],[[0.035772226750851,0.067014329135418,-0.063296400010586],[0.0013950288994238,0.040705095976591,-0.083496741950512],[-0.090122394263744,-0.10295674949884,0.051997926086187]],[[0.041095905005932,0.14387425780296,0.013914419338107],[-0.11922786384821,-0.0061953547410667,-0.092813156545162],[0.048739794641733,0.048756834119558,-0.10053704679012]],[[0.057028762996197,0.049074716866016,0.010770999826491],[-0.019154826179147,0.017485352233052,0.012873808853328],[-0.13977387547493,-0.0066007222048938,-0.051797300577164]],[[-0.036091007292271,-0.10294990241528,-0.0034895536955446],[0.11388013511896,0.090318717062473,-0.046226728707552],[0.029475726187229,0.0026974538341165,0.043415758758783]],[[-0.025779206305742,-0.039076186716557,-0.084810145199299],[0.0040254644118249,0.061801720410585,0.01253009121865],[0.00075611576903611,-0.09268119931221,0.040061254054308]]],[[[-0.085758782923222,0.01166816521436,0.03416983038187],[-0.14460577070713,-0.038375586271286,-0.080141589045525],[-0.04012094065547,-0.025781067088246,-0.0039947810582817]],[[0.0015672699082643,0.13624586164951,0.004369409289211],[0.061584711074829,-0.15922793745995,0.036503337323666],[-0.065330363810062,0.066747032105923,0.013003443367779]],[[-0.051037192344666,-0.008222671225667,0.066093377768993],[-0.051222484558821,-0.01882111094892,0.12114766985178],[0.00073296547634527,-0.038051340728998,0.10055384784937]],[[0.068982683122158,0.0035898888017982,0.029968410730362],[0.045920770615339,0.0195308085531,-0.089243873953819],[0.15503232181072,0.122025847435,0.01320634316653]],[[0.030394250527024,-0.042105864733458,0.10060002654791],[-0.12805812060833,0.064471505582333,0.078452102839947],[0.1072878241539,0.12214674800634,-0.057704523205757]],[[0.031445991247892,0.082596883177757,-0.016493815928698],[-0.11673497408628,-0.0019202661933377,-0.13541355729103],[-0.015915801748633,-0.0021503525786102,-0.00030237145256251]],[[-0.051696736365557,0.013175432570279,-0.012675099074841],[0.039111949503422,0.12690265476704,0.01670921035111],[-0.072269812226295,-0.062038369476795,-0.049622714519501]],[[0.12813918292522,-0.11975612491369,-0.27040913701057],[0.045384753495455,0.0994728282094,-0.18347288668156],[0.14065673947334,-0.022210540249944,0.011060294695199]],[[0.021160095930099,0.14884242415428,-0.065649285912514],[-0.14517515897751,-0.05425788462162,0.078004471957684],[-0.0020635628607124,-0.04920619353652,0.0047644516453147]],[[-0.088402606546879,-0.081333883106709,-0.043005801737309],[0.131412088871,0.0089575629681349,0.077348150312901],[0.17707432806492,0.047330897301435,0.055403102189302]],[[0.022447943687439,0.062254749238491,0.028037529438734],[0.0576431453228,0.070222713053226,0.019299617037177],[0.0061198244802654,-0.08213048428297,0.08708318322897]],[[-0.026108646765351,0.010082125663757,0.10611606389284],[-0.01347927749157,0.025394484400749,-0.098967894911766],[0.0077404594048858,-0.028575636446476,-0.0094198184087873]],[[-0.037250760942698,-0.096792943775654,0.019742894917727],[0.053851071745157,-0.11025885492563,-0.040995009243488],[-0.023229224607348,0.12457840144634,0.15987280011177]],[[-0.10814303904772,0.013187697157264,0.19014459848404],[0.086881622672081,-0.046201724559069,-0.11515755206347],[0.11107331514359,-0.11136022955179,0.0080895246937871]],[[-0.034966509789228,0.035875245928764,-0.13601271808147],[-0.069664970040321,0.0097142485901713,-0.106460288167],[0.061453223228455,-0.052699662744999,0.10421495884657]],[[0.075500279664993,-0.062442317605019,0.14686469733715],[-0.097941339015961,-0.063935406506062,0.050567749887705],[-0.082404278218746,-0.15880873799324,0.16057285666466]],[[-0.021385241299868,-0.011019094847143,0.18549624085426],[0.034495044499636,-0.051048789173365,0.077541157603264],[-0.22696916759014,-0.20830038189888,0.09257747232914]],[[0.068888381123543,0.037585757672787,-0.32502710819244],[-0.025981869548559,0.072661951184273,-0.089568950235844],[-0.067082695662975,0.014259233139455,-0.048312667757273]],[[0.070513859391212,0.053452789783478,-0.137600466609],[0.055618591606617,0.016722809523344,0.043363716453314],[0.056625224649906,0.08838564157486,0.047088611871004]],[[0.057824052870274,-0.012350578792393,-0.087372742593288],[0.11738580465317,0.097469188272953,-0.082980535924435],[-0.016666004434228,-0.04077585414052,-0.043140307068825]],[[-0.059202305972576,-0.028423186391592,-0.093766622245312],[-0.18307048082352,-0.15807904303074,-0.17101414501667],[-0.22103260457516,-0.13139978051186,0.0010058364132419]],[[0.070045121014118,0.055758610367775,-0.14724484086037],[0.053263451904058,0.065542727708817,0.15692156553268],[0.026717588305473,0.079393319785595,-0.022543899714947]],[[-0.090243741869926,-0.083380028605461,0.040097497403622],[0.058244813233614,0.064253836870193,0.03442570567131],[0.014335394836962,-0.095315180718899,0.0099284127354622]],[[0.050508666783571,0.025900632143021,-0.025321163237095],[0.031108368188143,0.071053370833397,0.043087996542454],[-0.096772901713848,0.052385780960321,0.1412236392498]],[[0.0044253338128328,-0.12040676921606,0.13626755774021],[-0.084546655416489,0.044950522482395,-0.061877697706223],[-0.13723114132881,-0.026033092290163,0.010420760139823]],[[-0.20194226503372,-0.08493261039257,0.048427820205688],[-0.16509583592415,-0.23759900033474,-0.023180121555924],[-0.062027614563704,-0.030452279374003,-0.07079566270113]],[[-0.03412713482976,0.14546672999859,0.029612047597766],[-0.025083556771278,-0.068370372056961,-0.038158293813467],[-0.011238120496273,-0.056739449501038,0.13242493569851]],[[-0.28320199251175,0.11423282325268,-0.15891781449318],[0.15925151109695,-0.061762813478708,-0.17700834572315],[0.10236240923405,0.33520743250847,0.039800893515348]],[[-0.068116873502731,0.085613951086998,-0.082042865455151],[-0.026240173727274,-0.17092111706734,0.095919266343117],[-0.03331932798028,-0.061140470206738,0.089065492153168]],[[-0.061276324093342,0.014269879087806,0.14074274897575],[0.0019274072255939,-0.0087750041857362,-0.13510937988758],[-0.06505224853754,-0.1831342279911,0.076476886868477]],[[-0.19543738663197,-0.12336906790733,-0.045798692852259],[0.16208863258362,0.084797993302345,-0.02268822491169],[-0.052431914955378,-0.11871646344662,0.0048958333209157]],[[-0.062694758176804,0.035496819764376,-0.035635396838188],[-0.05482354387641,-0.047670625150204,-0.06126619502902],[0.020508298650384,0.012761667370796,0.022760024294257]],[[0.048601619899273,0.15484338998795,0.014813329093158],[0.097177088260651,-0.060879644006491,-0.11575723439455],[0.054080553352833,0.040370497852564,0.02478982321918]],[[-0.15141129493713,-0.17690640687943,0.075872600078583],[0.051742479205132,-0.054126836359501,0.086800426244736],[0.06583209335804,-0.14236055314541,0.053293071687222]],[[0.11077496409416,0.041530523449183,0.041514698415995],[0.03990051150322,-0.051051951944828,-0.067694559693336],[-0.015263145789504,-0.019253758713603,0.081308789551258]],[[-0.00051858520600945,-0.035328730940819,-0.022964261472225],[-0.083789646625519,-0.081261202692986,0.034412052482367],[0.0012757448712364,0.072550274431705,-0.066252917051315]],[[0.23190993070602,0.06534931063652,-0.030447002500296],[-0.087789975106716,0.085780844092369,0.044100861996412],[-0.057141985744238,-0.034498855471611,-0.0077706668525934]],[[-0.088458336889744,0.08358259499073,0.051839221268892],[-0.058538503944874,0.21133562922478,-0.038160748779774],[-0.2152041643858,-0.086844444274902,-0.0035057531204075]],[[-0.0082253608852625,-0.036005690693855,0.069119922816753],[0.010084422305226,0.041630961000919,0.048899378627539],[0.066926084458828,-0.032645922154188,-0.075042366981506]],[[0.23404993116856,0.063391923904419,0.056271944195032],[-0.026419697329402,0.20204629004002,-0.12880784273148],[0.086047105491161,0.295754134655,-0.028968919068575]],[[0.048546869307756,-0.072426788508892,-0.029993768781424],[0.049247041344643,0.0417111068964,0.036077290773392],[0.16853086650372,-0.12565465271473,0.038039494305849]],[[0.10302301496267,0.16156208515167,-0.00033298303605989],[0.054336179047823,0.028161214664578,-0.023284325376153],[0.025862842798233,0.04772362858057,-0.10702546685934]],[[0.023311903700233,0.10090696811676,0.23795711994171],[0.069232821464539,-0.10476014763117,0.058708857744932],[0.020102521404624,0.20591704547405,0.24022620916367]],[[-0.016100727021694,0.061016157269478,-0.009436834603548],[0.00061489397194237,0.01224319729954,-0.033005233854055],[0.042418871074915,-0.048483245074749,-0.051326274871826]],[[-0.10685164481401,-0.072977766394615,-0.094838254153728],[-0.11724531650543,0.11857188493013,-0.058472625911236],[-0.20515823364258,0.023908622562885,0.041334368288517]],[[0.016420787200332,0.035384744405746,0.19519740343094],[0.11102247983217,0.031710758805275,0.084040425717831],[0.051707405596972,0.1471811234951,0.1077169701457]],[[0.052696008235216,-0.043913144618273,-0.16986288130283],[0.10069707781076,-0.18460580706596,-0.0905781686306],[-0.29550737142563,0.0025569391436875,-0.2262909412384]],[[-0.07951632142067,-0.2095912694931,-0.04548104852438],[-0.086284331977367,-0.059886354953051,-0.2349398881197],[0.058189999312162,-0.057472862303257,-0.09615121036768]],[[-0.14520291984081,-0.086859829723835,0.060520239174366],[-0.19246177375317,-0.0015248901909217,-0.010312072001398],[-0.063733354210854,-0.018917094916105,0.0034892640542239]],[[-0.032823037356138,0.063266605138779,-0.081094600260258],[-0.067989602684975,-0.059678725898266,-0.0054031806066632],[0.043887976557016,0.051105499267578,-0.051251452416182]],[[-0.0038859872147441,-0.097361825406551,0.1446917206049],[-0.028033215552568,0.019466258585453,-0.15458463132381],[0.022003624588251,-0.14917615056038,-0.018257975578308]],[[0.074945993721485,0.12527652084827,0.16049054265022],[0.03730658069253,0.10877399891615,0.11835575848818],[0.061938669532537,0.044091708958149,0.061565686017275]],[[-0.07712011039257,-0.031591638922691,-0.014839185401797],[-0.03865409642458,-0.017398554831743,-0.070968888700008],[-0.063099592924118,0.017363250255585,0.02770921215415]],[[-0.046619240194559,0.089627370238304,-0.02483337931335],[0.048644807189703,-0.12873011827469,-0.0036364737898111],[0.10724676400423,0.096143469214439,-0.071950569748878]],[[0.087229609489441,-0.080396816134453,-0.012479465454817],[0.18271541595459,0.021252298727632,-0.056158781051636],[-0.0121288029477,-0.060092680156231,-0.052086915820837]],[[0.049500782042742,-0.18416787683964,-0.070085488259792],[0.18418216705322,-0.12797962129116,-0.074016571044922],[0.051435362547636,-0.013845584355295,-0.018054010346532]],[[-0.058603957295418,0.17633600533009,0.20970785617828],[-0.039378006011248,0.10492931306362,0.27200323343277],[0.094132512807846,0.12037187814713,-0.037735540419817]],[[-0.014061235822737,-0.080131091177464,0.027700796723366],[-0.1554881632328,0.018800377845764,0.024495014920831],[-0.032524481415749,0.029701070860028,0.091781541705132]],[[0.12637905776501,0.040610671043396,0.19882187247276],[0.042203463613987,0.064776480197906,0.13212943077087],[0.046888265758753,-0.11359925568104,0.24398091435432]],[[0.078189209103584,-0.027809180319309,-0.042180676013231],[0.073121175169945,0.0072982078418136,0.023629203438759],[0.0073614828288555,-0.0048789414577186,0.035779464989901]],[[-0.067806929349899,0.15829560160637,-0.047967374324799],[-0.088465817272663,-0.040087223052979,-0.016378283500671],[-0.17356444895267,-0.084616929292679,-0.011255744844675]],[[0.16285732388496,-0.16164092719555,0.03955177590251],[0.13325905799866,0.056104116141796,-0.13107088208199],[0.046229213476181,0.11412403732538,0.044256411492825]],[[-0.072264857590199,-0.009515855461359,0.017677603289485],[0.075995892286301,0.14795698225498,0.023010771721601],[0.17748560011387,-0.04230684414506,-0.060727328062057]],[[0.16455772519112,-0.074266135692596,-0.11177177727222],[0.14472615718842,0.15713050961494,-0.046214994043112],[-0.029821271076798,-0.089376762509346,0.182632625103]],[[-0.041030138731003,-0.011870421469212,0.061708938330412],[0.007330818567425,0.032017696648836,0.053109861910343],[-0.13971418142319,0.034166850149632,-0.037060622125864]],[[0.13497021794319,-0.11411479115486,-0.095870412886143],[-0.039541870355606,0.073697812855244,0.25236114859581],[0.22478069365025,0.19174061715603,-0.016823487356305]],[[-0.09752144664526,-0.030310226604342,-0.069434136152267],[-0.08700443059206,0.079773612320423,-0.11164506524801],[-0.0055364719592035,-0.037339799106121,0.053229514509439]],[[0.088002398610115,0.017584845423698,0.095367729663849],[0.019965168088675,-0.0015956442803144,0.03781733289361],[0.040559936314821,-0.0032779313623905,0.12526693940163]],[[-0.035810552537441,0.02990398555994,-0.014518378302455],[-0.10699568688869,0.17201055586338,0.17038279771805],[0.095500998198986,-0.022129599004984,0.076517723500729]],[[0.038310125470161,0.09514282643795,0.034142635762691],[-0.12408731132746,0.041217491030693,-0.053452327847481],[0.094184279441833,0.06909716874361,0.065478280186653]],[[-0.082223899662495,0.022195005789399,0.04663460329175],[0.079612568020821,-0.082162410020828,0.032011818140745],[-0.068193234503269,0.13635830581188,0.023694740608335]],[[-0.057423327118158,-0.059738740324974,0.02683855034411],[-0.00051185756456107,-0.093003340065479,0.11112725734711],[-0.022378496825695,-0.14121247828007,-0.15837988257408]],[[-0.13671523332596,-0.11750069260597,-0.030034666880965],[-0.081109561026096,-0.21251393854618,-0.045780818909407],[0.060831405222416,-0.2636843919754,-0.014407336711884]],[[-0.0048864497803152,-0.080670371651649,0.038649454712868],[-0.11055497825146,-0.00494394171983,0.16251870989799],[0.28594020009041,0.073218882083893,0.066295638680458]],[[0.052791222929955,-0.13291294872761,-0.0010167153086513],[-0.15988174080849,0.011178953573108,0.010887051001191],[0.017820468172431,0.01572073623538,0.0018243060912937]],[[0.058072488754988,-0.061261679977179,-0.12333396077156],[0.043865919113159,-0.14598019421101,-0.030185878276825],[-0.064261093735695,0.1502650231123,-0.083168067038059]],[[-0.043149825185537,0.15796063840389,-0.0086306082084775],[-0.052425347268581,0.070536740124226,-0.055841874331236],[0.082724273204803,0.08596058934927,-0.036209672689438]],[[0.0061146812513471,-0.14435465633869,-0.037092786282301],[0.12442223727703,0.24291008710861,0.088447079062462],[0.065781593322754,-0.041507411748171,0.07891258597374]],[[0.090181842446327,0.025915330275893,0.011090870015323],[-0.071649216115475,-0.020448457449675,0.038886729627848],[-0.132144972682,-0.024962956085801,-0.030079575255513]],[[0.080472066998482,-0.19676668941975,-0.069430068135262],[0.021885143592954,0.0049269115552306,0.044944025576115],[-0.087345995008945,0.15206333994865,-0.10891921073198]],[[-0.11295979470015,0.069204576313496,0.012498956173658],[-0.036286640912294,0.075388319790363,0.08085610717535],[0.0070931301452219,0.037533644586802,0.016959661617875]],[[0.12176838517189,0.05214524269104,0.20311403274536],[0.067185133695602,0.12023478746414,0.14370064437389],[-0.00018865076708607,-0.060325637459755,-0.055927667766809]],[[-0.048647619783878,-0.019841283559799,0.014681312255561],[0.11150844395161,-0.013038058765233,0.047862399369478],[-0.09128750115633,0.023494994267821,0.1164387986064]],[[0.15057875216007,0.044663906097412,-0.071849063038826],[-0.035090878605843,-0.077673941850662,-0.033072747290134],[0.029358498752117,0.067774571478367,0.024506965652108]],[[-0.16815024614334,-0.19725838303566,-0.070005662739277],[0.050503540784121,-0.015281978063285,-0.030151391401887],[0.10750146210194,0.16293203830719,0.17713584005833]],[[-0.17723008990288,0.04583927989006,0.021686928346753],[-0.013448974117637,0.027230961248279,0.08209702372551],[-0.06979725509882,-0.052833121269941,0.14094151556492]],[[0.20839203894138,0.17074799537659,0.051626592874527],[-0.059825818985701,0.080837927758694,-0.071454592049122],[0.026061439886689,0.097876116633415,-0.027345595881343]],[[-0.10471617430449,-0.048314746469259,-0.14790230989456],[0.036504365503788,0.003924495074898,0.1492515206337],[0.072858102619648,0.10429532825947,0.12562450766563]],[[0.027565801516175,-0.044568959623575,0.0077654309570789],[-0.016225550323725,0.06145853549242,0.0089647546410561],[0.01031706854701,0.15774336457253,0.075833857059479]],[[0.14731118083,0.13280585408211,0.0090240705758333],[-0.080471262335777,0.085706800222397,0.094495572149754],[-0.025202702730894,-0.10854937881231,0.0058709592558444]],[[-0.0018022860167548,-0.072746470570564,0.097472570836544],[-0.063056960701942,-0.062005985528231,0.085316434502602],[-0.038208067417145,-0.090903386473656,-0.20443575084209]],[[-0.093151606619358,-0.1542593985796,0.001450221054256],[-0.012046609073877,0.077286764979362,-0.13626374304295],[-0.034836325794458,0.070828542113304,0.013813814148307]],[[0.090017132461071,0.19263038039207,0.018499800935388],[0.16392776370049,0.011510943993926,-0.046763088554144],[-0.21232210099697,0.13286960124969,0.10357565432787]],[[0.044631462544203,0.00091426377184689,0.2558012008667],[0.10597129911184,0.1068324521184,0.22209604084492],[-0.039544951170683,0.068022064864635,0.035657282918692]],[[0.11239347606897,0.094939611852169,-0.033731173723936],[0.16449858248234,-0.00106088782195,0.038866888731718],[0.10137341916561,0.22333420813084,0.057002183049917]],[[-0.0051735234446824,0.12309050559998,0.10329215973616],[-0.071864269673824,0.11585434526205,-0.013944764621556],[0.056661933660507,0.050468780100346,0.068474166095257]],[[0.11258076131344,-0.036762326955795,0.0043676332570612],[0.0078374147415161,-0.21811623871326,-0.027426216751337],[0.11969000846148,0.045223142951727,0.17081767320633]],[[0.039553783833981,-0.089616730809212,-0.093530647456646],[-0.10774275660515,-0.05893387272954,0.17149774730206],[-0.04078933224082,-0.0027452576905489,0.078927777707577]],[[-0.037386775016785,0.078841969370842,0.048849489539862],[-0.16024738550186,0.093756929039955,0.12821242213249],[0.07329834997654,-0.045660197734833,0.081908576190472]],[[-0.074527837336063,0.075254149734974,0.24464166164398],[-0.18395458161831,-0.0055179987102747,0.13962110877037],[0.015065957792103,-0.0087989699095488,0.036844056099653]],[[0.058627545833588,-0.00011303498467896,0.053853962570429],[-0.095668375492096,0.0094283679500222,-0.31153565645218],[-0.027658069506288,-0.17125545442104,-0.10741651803255]],[[-0.066312022507191,-0.027196273207664,0.088339097797871],[0.093796886503696,-0.1019271761179,0.051669359207153],[0.1138601526618,-0.050653349608183,0.046471811830997]],[[0.15436108410358,0.017639812082052,0.010886234231293],[0.12481286376715,0.03935943543911,0.026150655001402],[-0.063247546553612,-0.020965531468391,0.05560964345932]],[[-0.029219433665276,-0.034091744571924,-0.060590125620365],[-0.037289544939995,-0.055324640125036,0.048749852925539],[0.038960471749306,0.073280081152916,-0.0038101254031062]],[[-0.086809694766998,-0.024975391104817,0.080853313207626],[-0.14512903988361,0.071684494614601,0.095311157405376],[0.013666272163391,0.15299470722675,0.011981779709458]],[[0.01002649590373,-0.0029514310881495,-0.016565078869462],[0.069430552423,0.037306867539883,-0.050955761224031],[-0.00079714303137735,-0.034757129848003,-0.19664354622364]],[[0.050122186541557,0.015440996736288,-0.16005271673203],[-0.0098540307953954,0.009972183033824,0.023207997903228],[0.086997225880623,-0.061244685202837,0.1905362457037]],[[-0.049689888954163,-0.15607529878616,-0.11191798746586],[0.017335606738925,-0.019066285341978,0.050030879676342],[-0.028966709971428,0.044864140450954,-0.047246638685465]],[[0.094260133802891,0.011927553452551,0.060803193598986],[-0.0031840393785387,-0.023206518962979,-0.084279239177704],[0.028269512578845,-0.079110272228718,-0.11440118402243]],[[-0.11789567023516,-0.063146486878395,0.076304547488689],[-0.057279072701931,0.072020478546619,0.17438846826553],[-0.0091363601386547,0.060626015067101,0.057994343340397]],[[-0.034453943371773,-0.041581947356462,0.036089070141315],[-0.10000665485859,-0.0078567005693913,0.0080662239342928],[0.024478349834681,0.036296151578426,0.058206092566252]],[[-0.17818993330002,0.036967750638723,0.049780428409576],[-0.10520591586828,-0.072527155280113,0.049114007502794],[0.00095917732687667,0.13929097354412,-0.15057593584061]],[[-0.067084573209286,0.038060311228037,-0.040345542132854],[-0.03278711438179,-0.023059925064445,-0.052541483193636],[0.034592468291521,0.053887628018856,-0.048947583884001]],[[-0.035188436508179,-0.12312164902687,0.14246875047684],[-0.081464916467667,0.037474639713764,0.086210012435913],[-0.082888811826706,0.066206976771355,0.018355038017035]],[[-0.16167071461678,-0.032316390424967,-0.076077625155449],[-0.03036691993475,0.0054030837491155,-0.075932376086712],[-0.12386978417635,0.20077319443226,0.0078800339251757]],[[-0.062749020755291,0.019542627036572,0.017157459631562],[-0.012776395305991,-0.10170667618513,0.01577328145504],[-0.097583867609501,-0.1230197250843,-0.00068958487827331]],[[0.042434934526682,-0.031112812459469,-0.19488756358624],[-0.04092900082469,0.03628833219409,-0.11962518841028],[0.017133377492428,-0.01022092346102,-0.06168706715107]],[[0.040193129330873,-0.16952113807201,0.071553587913513],[0.020514234900475,-0.018418442457914,-0.0032813064754009],[-0.041995018720627,-0.15955811738968,0.050533927977085]],[[-0.13360750675201,-0.096434213221073,0.02312333881855],[0.0080841798335314,-0.026660103350878,-0.00034555833553895],[-0.13853941857815,-0.05855118855834,-0.014775699004531]],[[0.12627865374088,0.095831274986267,0.1711248010397],[-0.0050952518358827,0.15313759446144,-0.017128124833107],[-0.015709217637777,0.07338135689497,0.12111409008503]],[[-0.068012401461601,-0.11134641617537,0.0036204864736646],[-0.045862916857004,-0.15730820596218,-0.035256609320641],[-0.11550702154636,-0.13119870424271,-0.1259653866291]],[[-0.014411062933505,0.032358098775148,-0.011052765883505],[0.14193381369114,0.00068281928543001,0.10615459084511],[0.0142015600577,0.11991063505411,0.044034034013748]],[[-0.053319707512856,0.049530185759068,-0.023999588564038],[0.088076129555702,-0.037604827433825,0.12457400560379],[0.024189276620746,0.10348267108202,-0.016887234523892]],[[-0.043028794229031,0.033982113003731,0.099709197878838],[-0.046375129371881,-0.13356141746044,-0.10809052735567],[0.011480389162898,0.008331204764545,-0.0031566461548209]],[[0.024230476468801,-0.16435255110264,-0.06468104571104],[-0.04439577460289,-0.04353117197752,0.018439183011651],[0.068214736878872,0.15242779254913,0.088063955307007]],[[-0.087445810437202,0.073941454291344,0.24191211163998],[0.049168236553669,-0.014205160550773,-0.11071232706308],[-0.070270903408527,-0.099451594054699,0.13942749798298]],[[-0.12646052241325,-0.0018896622350439,0.075874924659729],[-0.11135134100914,-0.19472198188305,0.0047846669331193],[0.066800236701965,-0.11527679115534,0.087719082832336]],[[-0.062422528862953,0.080208450555801,0.033405046910048],[-0.017484251409769,-0.19482733309269,0.048770006746054],[0.027873000130057,0.046966310590506,-0.1258644759655]]],[[[0.007775355130434,0.056588675826788,0.0028742912691087],[-0.0083725498989224,0.026618514209986,-0.0078503536060452],[0.16300073266029,0.089676067233086,0.067218996584415]],[[-0.040642607957125,-0.10047093778849,0.05201444029808],[-0.11282297968864,-0.090551398694515,-0.051174364984035],[-0.018935307860374,-0.070538245141506,-0.1082648485899]],[[0.019654395058751,0.075077742338181,0.023858461529016],[-0.12446121126413,0.0087286364287138,0.090877689421177],[0.00032613208168186,0.0041206832975149,-0.21764312684536]],[[0.026208920404315,0.073147103190422,0.12628792226315],[0.00075894105248153,0.055742781609297,0.13501664996147],[-0.003378001274541,0.13720935583115,0.04913542047143]],[[-0.036391660571098,0.0067221494391561,-0.0082218796014786],[-0.045572686940432,0.052761949598789,0.018187886103988],[-0.051214307546616,0.021554416045547,0.03730608522892]],[[0.0095951119437814,0.046374205499887,-0.063334174454212],[0.023540649563074,0.060399830341339,0.010305934585631],[-0.026679990813136,-0.0074295713566244,-0.098464623093605]],[[0.011419891379774,0.013132899999619,0.033758752048016],[0.013689559884369,-0.10836240649223,0.021814074367285],[0.094385020434856,0.013175437226892,0.057719945907593]],[[0.03379300609231,-0.066456213593483,-0.11381392925978],[0.030593350529671,0.002988938242197,0.023913491517305],[0.069759681820869,0.077907256782055,-0.023265017196536]],[[-0.11590647697449,0.0080490168184042,0.083543941378593],[-0.002962470985949,-0.056126236915588,-0.061618186533451],[0.028544798493385,-0.016397392377257,0.036340583115816]],[[-0.0027771817985922,0.030258456245065,-0.010581294074655],[-0.040808234363794,0.016948331147432,-0.046947870403528],[0.13343107700348,-0.027829073369503,0.083661869168282]],[[0.012182069011033,0.06209409609437,0.053617287427187],[-0.035527478903532,0.098470747470856,-0.057097498327494],[0.11493285000324,0.10549943894148,-0.024517508223653]],[[-0.015669338405132,-0.085082516074181,-0.010356375947595],[0.024563603103161,-0.03989002853632,0.036323077976704],[0.014053436927497,-0.0042752306908369,0.06420074403286]],[[-0.0040418333373964,0.027668925002217,0.011126377619803],[-0.034011941403151,0.043894980102777,0.075275361537933],[0.050103262066841,0.020653549581766,-0.048055704683065]],[[0.010364646092057,0.0091666774824262,-0.026331216096878],[-0.078284405171871,0.033437862992287,0.0082998527213931],[-0.11593373119831,0.037146046757698,-0.021378742530942]],[[-0.13240443170071,0.056033302098513,0.13016077876091],[0.053986724466085,0.038206659257412,0.06524995714426],[-0.14181964099407,0.0383275821805,0.024077678099275]],[[0.070410333573818,0.0036941189318895,0.00092100165784359],[-0.14335469901562,-0.0044301482848823,-0.046083722263575],[0.030542498454452,0.0060180905275047,0.050539705902338]],[[0.058422520756721,-0.056907508522272,-0.096698671579361],[0.096603721380234,-0.026309203356504,0.022222010418773],[0.14705756306648,0.10953781753778,0.19363881647587]],[[-0.0014653489924967,0.0004077555204276,-0.052224881947041],[-0.059448249638081,0.067330792546272,-0.00074905331712216],[-0.078722737729549,0.11688266694546,0.061180513352156]],[[-0.0039943773299456,0.045194573700428,0.1211459711194],[-0.031156186014414,-0.010889851488173,0.033164750784636],[-0.045129492878914,0.10613206773996,-0.0075495904311538]],[[-0.062452115118504,-0.038550578057766,-0.0046933661215007],[0.011193905025721,0.048492580652237,0.067339539527893],[0.086392916738987,-0.097788773477077,0.03697095811367]],[[-0.020392274484038,-0.052273847162724,-0.055259149521589],[-0.11735540628433,-0.0075910636223853,0.00072227884083986],[0.050455003976822,0.028163835406303,-0.11471472680569]],[[0.033616323024035,-0.0002403909311397,0.13526684045792],[-0.0054002436809242,0.093767546117306,0.090694516897202],[-0.023323865607381,-0.045982234179974,0.17961840331554]],[[-0.016397915780544,-0.00070658209733665,0.02276174351573],[-0.091167896986008,0.001334193861112,0.076299324631691],[0.030097477138042,-0.1059528067708,-0.12039925158024]],[[0.026450561359525,0.046328093856573,0.12343475222588],[0.022525679320097,-0.0021367934532464,0.022093085572124],[0.072181068360806,0.0009757683146745,0.020119184628129]],[[0.033602569252253,-0.084417372941971,0.016984002664685],[0.01974162645638,0.037898439913988,0.023760674521327],[-0.10900738090277,0.12760005891323,-0.099452793598175]],[[0.083003170788288,-0.041840020567179,0.042927887290716],[0.10054617375135,0.035701744258404,0.033813919872046],[0.12342244386673,0.089772164821625,0.060839828103781]],[[-0.042506288737059,-0.14223623275757,0.011287790723145],[-0.040454216301441,-0.018044799566269,-0.037598133087158],[0.034758660942316,-0.042633138597012,-0.10527314245701]],[[-0.073699831962585,0.065349251031876,0.017440186813474],[-0.037295751273632,0.065429896116257,0.06990809738636],[0.0034956466406584,-0.018285006284714,-0.0050170770846307]],[[-0.075739353895187,0.041296165436506,-0.025318535044789],[0.093666657805443,-0.032165713608265,-0.0042786253616214],[0.10951162874699,0.08211425691843,0.034966040402651]],[[-0.042182773351669,0.039545122534037,-0.034131214022636],[-0.007825231179595,-0.040492054075003,-0.14301326870918],[-0.0061432751826942,-0.066597059369087,-0.020246731117368]],[[-0.044250994920731,-0.042955435812473,-0.048750385642052],[-0.068318516016006,-0.035636637359858,-0.0053770402446389],[-0.0063202907331288,0.065102703869343,-0.070595003664494]],[[0.096726223826408,-0.13571974635124,-0.0925522595644],[0.10119021683931,-0.056752402335405,-0.029388643801212],[-0.0046734837815166,-0.071063712239265,0.037608038634062]],[[0.1247528269887,-0.041781436651945,-0.060570277273655],[0.092518158257008,-0.10032719373703,-0.01115454826504],[0.027655800804496,0.037080526351929,0.0065638399682939]],[[-0.084037818014622,-0.0183021184057,-0.038115911185741],[-0.0089017348363996,0.09878783673048,0.0056499931961298],[-0.012231231667101,0.048479203134775,0.044194273650646]],[[-0.0096337776631117,-0.14372627437115,-0.062638454139233],[0.045288104563951,-0.057923164218664,-0.054013751447201],[0.0078588053584099,-0.063072271645069,-0.014896353706717]],[[0.042285773903131,0.0051111397333443,0.051382251083851],[-0.048318166285753,0.0047896434552968,0.070051446557045],[-0.037913680076599,-0.010019542649388,0.077712893486023]],[[0.094901762902737,-0.078212738037109,-0.081251829862595],[0.040553342550993,-0.091627970337868,0.029530396685004],[0.077961906790733,0.025369437411427,0.05454620718956]],[[0.12426166236401,0.033581264317036,0.023198902606964],[0.1338128298521,-0.0035961645189673,-0.15601961314678],[-0.029610441997647,-0.15044121444225,-0.050373941659927]],[[-0.033908579498529,0.09368247538805,0.08094510436058],[-0.14126789569855,-0.1136326789856,0.064322605729103],[-0.081175044178963,-0.022406084463,0.032261751592159]],[[-0.055314868688583,0.0094617502763867,0.0015574276912957],[0.001468671951443,0.031653694808483,0.087670639157295],[0.02074590139091,0.01801878772676,0.071457304060459]],[[0.043401837348938,0.0079687368124723,0.08434596657753],[-0.011082962155342,0.034973334521055,-0.10378392785788],[-0.01654333807528,-0.0090490700677037,0.10314433276653]],[[0.068675920367241,-0.011831304058433,-0.12264040857553],[0.089110478758812,-0.056902073323727,-0.025176726281643],[-0.069305501878262,-0.04653749242425,-0.015070813708007]],[[-0.018507504835725,0.10528033971786,0.155173137784],[0.077021203935146,-0.030805822461843,0.043934687972069],[0.099010966718197,0.15520086884499,0.087748602032661]],[[-0.021451108157635,-0.0016186591237783,-0.055056132376194],[-0.020312154665589,0.012689799070358,0.073117069900036],[-0.018780488520861,-0.047668371349573,-0.025353491306305]],[[0.04328766092658,0.01656243763864,-0.092633627355099],[-0.048179056495428,-0.061784844845533,-0.030684724450111],[-0.08347675204277,-0.066712878644466,-0.041131787002087]],[[-0.0026920894160867,0.10483186691999,0.083301045000553],[0.19584031403065,0.038355074822903,0.17547129094601],[0.1190731972456,0.28230863809586,0.24395915865898]],[[0.0073882210999727,-0.066245138645172,0.06989636272192],[0.098996959626675,-0.082259967923164,0.063615143299103],[0.056962881237268,-0.058366104960442,0.097659081220627]],[[-0.026081994175911,-0.06656901538372,-0.15969054400921],[-0.21601112186909,-0.035521250218153,0.041853990405798],[-0.13597355782986,-0.11402391642332,-0.13493967056274]],[[-0.10986784845591,-0.04601039364934,-0.043075505644083],[-0.077638611197472,-0.15140217542648,-0.12818670272827],[-0.086098276078701,-0.093203850090504,-0.17237851023674]],[[0.0078224781900644,0.10785768181086,0.029286187142134],[-0.083666257560253,-0.033924356102943,-0.00025957167963497],[0.027600638568401,0.0037023122422397,0.074524730443954]],[[0.043498132377863,0.035759415477514,0.010188722983003],[-0.15748792886734,0.086764320731163,0.051786195486784],[-0.067497119307518,-0.045552738010883,0.037519127130508]],[[-0.13413587212563,-0.10058628767729,0.081011272966862],[0.0061468626372516,-0.085939414799213,-0.023135263472795],[-0.023301286622882,-0.073234714567661,-0.041286591440439]],[[0.0021625161170959,-0.040990468114614,-0.040096871554852],[-0.017916886135936,0.0031919665634632,0.05708160251379],[0.0037157239858061,-0.053188800811768,-0.0045091388747096]],[[-0.072763189673424,0.033567704260349,0.068564049899578],[-0.044803142547607,-0.028278432786465,0.13516898453236],[-0.095794856548309,-0.038156565278769,0.11033000797033]],[[-0.024764759466052,0.1275486946106,-0.0061708209104836],[-0.0092494115233421,-0.049406252801418,0.041979294270277],[0.073287695646286,-0.031565390527248,0.028560964390635]],[[-0.048495907336473,0.032971136271954,-0.022057520225644],[0.028438374400139,-0.0037100510671735,-0.080243438482285],[0.045428033918142,0.034202508628368,-0.11218448728323]],[[-0.02923821285367,-0.037364970892668,0.029696831479669],[0.03394977375865,0.097244650125504,0.15043519437313],[-0.0539710521698,0.046930119395256,0.043193589895964]],[[-0.069233223795891,0.010375272482634,-0.058386269956827],[-0.026587372645736,0.085831217467785,-0.075117751955986],[-0.010911117307842,0.070962302386761,-0.06547699868679]],[[0.10695560276508,-0.070903122425079,0.16099151968956],[0.014689164236188,-0.0045747072435915,-0.075337596237659],[0.28478837013245,0.01324154343456,0.058207217603922]],[[0.002020129468292,-0.043943230062723,0.013696807436645],[-0.058885306119919,0.072856977581978,-0.014883550815284],[-0.052256271243095,-0.084130145609379,0.08548092097044]],[[-0.061492696404457,0.086531616747379,0.042049612849951],[-0.11139725893736,-0.083640486001968,-0.011987492442131],[-2.0473707991187e-05,-0.16628317534924,-0.096385635435581]],[[-0.017554571852088,-0.054204627871513,0.058402106165886],[-0.056381464004517,-0.012173539027572,-0.045525763183832],[-0.14137256145477,-0.077970765531063,0.074397161602974]],[[0.087001733481884,0.04947941750288,0.016915943473577],[0.017045484855771,0.095883131027222,0.16011981666088],[-0.021351903676987,0.0047274976968765,-0.011863777413964]],[[0.0011643766192719,-0.066071905195713,0.033481419086456],[0.0010755327530205,-0.0935263261199,0.087565690279007],[0.13076189160347,0.12274165451527,-0.068219281733036]],[[0.010871096514165,-0.035651370882988,0.023779306560755],[-0.020869959145784,0.034772746264935,0.03753299638629],[-0.017118107527494,-0.015259507112205,0.038455039262772]],[[0.032242614775896,-0.040418267250061,0.1336969435215],[-0.010115646757185,0.0094483224675059,0.008013273589313],[0.087648645043373,0.045997470617294,0.079351037740707]],[[0.02201147004962,0.092106223106384,-0.2148555368185],[-0.039125647395849,-0.020153207704425,0.088735200464725],[0.044726945459843,0.019349375739694,-0.033607259392738]],[[0.011592637747526,-0.017866816371679,0.092849664390087],[-0.020908718928695,0.057438842952251,-0.047342665493488],[-0.146648645401,-0.0024331717286259,-0.03452767431736]],[[0.062041088938713,0.016355536878109,-0.081318192183971],[0.063483901321888,0.096887603402138,0.08512794226408],[-0.004305160138756,-0.026905659586191,0.1177839115262]],[[0.045098781585693,0.073580875992775,0.11844044178724],[-0.023518824949861,-0.043504271656275,0.035875611007214],[-0.034029174596071,-0.12724781036377,0.0056908028200269]],[[0.062984474003315,0.056987091898918,0.025540847331285],[0.040369760245085,0.0057419491931796,-0.0013557018246502],[0.064057685434818,0.01897974871099,-0.010539771988988]],[[-0.11173801124096,-0.014870109967887,0.0054821274243295],[-0.033520627766848,-0.073060095310211,0.046185202896595],[-0.0083508510142565,-0.062430128455162,-0.065793059766293]],[[0.018952377140522,0.010965040884912,-0.056202106177807],[-0.043525535613298,0.026204293593764,0.041029907763004],[-0.14448802173138,0.10107365250587,0.023827815428376]],[[0.011945518665016,0.028929920867085,0.042328380048275],[-0.0074653280898929,0.025528203696012,-0.0006969355745241],[0.23640310764313,-0.021308453753591,0.034577250480652]],[[-0.12885162234306,-0.095058314502239,-0.064970999956131],[-0.073386035859585,0.12115783989429,-0.016257433220744],[-0.02405689842999,-0.074144326150417,-0.051956348121166]],[[-0.016185456886888,0.047690331935883,-0.0047491928562522],[0.030911307781935,-0.10388676077127,0.084655292332172],[-0.072681620717049,-0.060272578150034,-0.088399864733219]],[[0.0036496135871857,0.031596668064594,0.09996385127306],[0.05823951587081,-0.070152536034584,0.10475677251816],[0.015547325834632,0.10048302263021,0.11547282338142]],[[0.028344191610813,-0.10404988378286,-0.10980279743671],[0.13046261668205,0.046890631318092,0.048516847193241],[0.032356880605221,0.12772950530052,0.091330423951149]],[[0.049016047269106,0.0083963172510266,0.002495918655768],[-0.016384026035666,0.025279628112912,-0.014317668043077],[0.0027710604481399,0.067889474332333,-0.0090726753696799]],[[0.026318937540054,0.010282088071108,-0.040231473743916],[-0.003345642471686,0.11260933429003,-0.042400039732456],[-0.050672814249992,-0.11846243590117,-0.021038513630629]],[[-0.083849914371967,-0.10763922333717,-0.041261088103056],[-0.08962956815958,-0.033837523311377,-0.016625894233584],[-0.038229957222939,-0.10470571368933,-0.037487953901291]],[[-0.011090798303485,0.070856764912605,0.088484175503254],[-0.083460107445717,-0.1018383949995,-0.030734460800886],[-0.087941594421864,0.070940650999546,-0.059101779013872]],[[0.0032791949342936,-0.091729640960693,-0.13287515938282],[0.12344560772181,-0.094140291213989,-0.045948337763548],[0.13589653372765,-0.11018291860819,0.079687736928463]],[[0.11316819489002,-0.056301970034838,-0.049133401364088],[-0.01295786164701,-0.056489087641239,0.054331596940756],[0.031845632940531,0.081713058054447,0.017885571345687]],[[0.028401905670762,-0.063713416457176,-0.044545255601406],[0.026168871670961,0.039590284228325,-0.10474227368832],[-0.074134513735771,-0.016032196581364,-0.030626578256488]],[[-0.025415513664484,0.0007415009313263,0.062666527926922],[-0.078192800283432,0.012558857910335,0.12366461008787],[-0.10313251614571,-0.03996555134654,0.068687200546265]],[[0.11546083539724,-0.0090606240555644,0.071840360760689],[-0.012022881768644,0.15706232190132,0.093876197934151],[-0.066498808562756,0.060971405357122,-0.016873028129339]],[[0.13829417526722,-0.036333471536636,-0.0028558608610183],[-0.12215402722359,-0.014321074821055,0.077140800654888],[0.083504408597946,-0.024284809827805,-0.073502689599991]],[[-0.072822242975235,0.021011905744672,-0.014677567407489],[-0.055162087082863,-0.030802924185991,-0.071706682443619],[0.061356034129858,-0.045182462781668,-0.0012364144204184]],[[0.053492233157158,0.037491906434298,-0.18385541439056],[-0.11668325215578,0.0094188703224063,0.038801822811365],[-0.088081695139408,0.0038143245037645,-0.044302329421043]],[[0.053801599889994,-0.019986594095826,0.14272490143776],[0.0350625179708,0.0079784886911511,0.053789291530848],[0.060223635286093,0.0078359888866544,0.19287271797657]],[[0.097971506416798,-0.024606760591269,-0.019841354340315],[-0.075582318007946,-0.0014469312736765,-0.062893815338612],[-0.032616555690765,-0.11541976034641,-0.028847243636847]],[[0.016889560967684,0.045307360589504,-0.075984917581081],[0.096864968538284,-0.01086706854403,-0.0030368082225323],[0.26177608966827,-0.038668025285006,0.17801946401596]],[[0.10368762910366,0.061500988900661,0.10555271059275],[0.10220335423946,-0.069092132151127,-0.15487053990364],[-0.15145349502563,-0.096482448279858,-0.088267996907234]],[[-0.012013797648251,-0.029055379331112,0.0092646032571793],[-0.063126973807812,-0.01420078240335,0.030707933008671],[0.041998725384474,-0.081234581768513,-0.010108545422554]],[[-0.13566139340401,-0.061736654490232,-0.010258916765451],[-0.09528486430645,0.16444544494152,0.0023382364306599],[-0.036658875644207,-0.064491219818592,-0.043558329343796]],[[0.026523526757956,-0.014808507636189,0.034181203693151],[-0.065842032432556,-0.019507776945829,-0.11931236088276],[-0.020418146625161,0.01444146502763,-0.010329570621252]],[[0.092862047255039,0.072616547346115,-0.019523045048118],[0.050392229110003,-0.064691349864006,-0.016838014125824],[0.041754234582186,0.048318058252335,0.076787807047367]],[[0.10812316834927,-0.099857121706009,0.016319818794727],[0.10761797428131,-0.0050236736424267,0.05850288271904],[0.035009104758501,0.081523098051548,0.068603701889515]],[[0.091988503932953,0.054804962128401,-0.072950415313244],[-0.037084612995386,0.074486501514912,0.13482071459293],[-0.022675232961774,-0.014747968874872,0.14330092072487]],[[-0.042725246399641,0.09653677791357,-0.0029238134156913],[-0.099023602902889,0.012968122959137,-0.030165938660502],[0.026107704266906,0.054014042019844,-0.1868412643671]],[[0.034016091376543,0.045936897397041,-0.075174652040005],[-0.0076102344319224,-0.0017691075336188,0.045263022184372],[-0.073553115129471,0.023124027997255,0.081955291330814]],[[0.034195978194475,0.070450246334076,0.045105550438166],[0.030429091304541,0.026222594082355,-0.068299300968647],[-0.14725084602833,-0.0038568181917071,-0.055256046354771]],[[-0.079641774296761,-0.001679448178038,-0.029778029769659],[-0.018855284899473,-0.046006318181753,-0.017052926123142],[0.039603617042303,-0.057417716830969,0.041921243071556]],[[-0.072354339063168,0.035970352590084,0.015236354433],[-0.011985772289336,0.081816665828228,-0.029051618650556],[-0.039363712072372,-0.0015724106924608,-0.039853990077972]],[[0.02788707986474,0.071324564516544,0.026608325541019],[0.011549889110029,0.035327859222889,-0.041633572429419],[-0.1618953794241,-0.055608052760363,-0.0015623153885826]],[[0.032502360641956,-0.070133775472641,-0.038843646645546],[0.066588588058949,0.12244794517756,0.023835541680455],[0.1166203469038,0.017749898135662,0.077121689915657]],[[0.078334994614124,0.05654202029109,-0.018930234014988],[0.022490482777357,0.0451550334692,-0.060228172689676],[0.11554688215256,0.057057838886976,-0.016563726589084]],[[0.00025081867352128,0.019078481942415,-0.02386486902833],[-0.046790897846222,0.059591878205538,0.025453291833401],[-0.0095007168129086,-0.020635718479753,0.055692315101624]],[[-0.021999003365636,-0.035578597337008,-0.066686920821667],[-0.040810037404299,0.050851970911026,0.0042433673515916],[0.014693026430905,0.02099865861237,0.1181540414691]],[[-0.047569580376148,0.0010043849470094,0.0010332104284316],[-0.0011696376604959,-0.012188469991088,-0.047544419765472],[0.019547831267118,0.022535054013133,0.033538699150085]],[[0.016618438065052,-0.093651033937931,-0.038270559161901],[0.050081931054592,0.059009682387114,-0.0036416568327695],[-0.14525637030602,-0.1037867590785,0.079730443656445]],[[-0.17657299339771,0.077195890247822,-0.018879799172282],[0.0076002306304872,-0.043248448520899,-0.091545663774014],[-0.0019089633133262,-0.079197853803635,-0.076413504779339]],[[-0.019082643091679,-0.040404886007309,-0.12371318042278],[0.037632837891579,-0.10722362995148,0.054794285446405],[0.12712670862675,0.027827003970742,0.06171778216958]],[[-0.00023810597485863,-0.02717555500567,-0.028266346082091],[0.02512532286346,-0.056482590734959,0.032636918127537],[-0.022568402811885,-0.0096452999860048,0.071084626019001]],[[-0.030803073197603,0.16858485341072,0.20902483165264],[0.045385699719191,-0.14717020094395,0.030071856454015],[-0.0041105183772743,-0.11815299838781,-0.017281582579017]],[[0.078221969306469,0.090622305870056,-0.13689720630646],[0.012882594950497,0.13129881024361,-0.018892291933298],[-0.043667811900377,0.062534682452679,0.057098582386971]],[[-0.10751851648092,-0.099992521107197,0.061896394938231],[0.049840498715639,-0.024323221296072,0.0049701714888215],[-0.011631360277534,-0.048985540866852,-0.06651247292757]],[[-0.1792216449976,-0.045205872505903,-0.13663910329342],[-0.1206194460392,-0.12054348737001,-0.046645164489746],[-0.030839620158076,-0.032769449055195,0.076290771365166]],[[0.18296703696251,0.099596060812473,0.058528631925583],[0.20492027699947,0.01768739707768,-0.028327634558082],[0.12169280648232,0.082216672599316,-0.025972332805395]],[[-0.10788722336292,0.012808813713491,0.068887569010258],[-0.05458951741457,0.065533757209778,-0.038677755743265],[-0.055310405790806,-0.094286806881428,0.065341830253601]],[[0.011559525504708,0.035277258604765,-0.019182054325938],[0.038364797830582,0.054617624729872,0.028069952502847],[-0.055897928774357,-0.21569247543812,-0.0048593082465231]],[[-0.07445502281189,0.0023508805315942,0.1252529323101],[0.035049736499786,-0.074957862496376,-0.025653980672359],[-0.079259224236012,-0.063421338796616,-0.086226239800453]],[[0.049909345805645,0.12179014831781,0.057807184755802],[0.09105958789587,0.06834527105093,-0.0023535969667137],[-0.12095969170332,0.054911814630032,0.025570560246706]],[[-0.046767357736826,-0.012340813875198,-0.0057463739067316],[-0.048116471618414,-0.056321814656258,0.11401706933975],[0.017146637663245,0.048792324960232,-0.12787537276745]],[[-0.12178203463554,0.012451277114451,-0.20562864840031],[0.050269354134798,0.036684636026621,-0.073589324951172],[0.065055973827839,0.11638882011175,-0.052468191832304]],[[-0.047788109630346,0.0080277323722839,0.0099470065906644],[-0.009990394115448,-0.075790457427502,0.049012646079063],[0.12009886652231,-0.079938307404518,0.080646730959415]],[[-0.049419179558754,0.044321794062853,0.029738746583462],[0.032298430800438,0.0085733821615577,0.019473733380437],[0.031130855903029,-0.017653040587902,0.030958773568273]]],[[[0.079932011663914,-0.001345221651718,-0.06488561630249],[-0.11752785742283,-0.0041920570656657,0.043905578553677],[0.055116824805737,0.033751353621483,-0.051307749003172]],[[-0.072632350027561,-0.00083582813385874,0.012435346841812],[0.01356521807611,-0.10687576979399,0.040671177208424],[0.0078410552814603,-0.1631029099226,0.019226025789976]],[[0.13070093095303,0.02327973768115,-0.028977898880839],[0.084843941032887,-0.040460307151079,-0.022365106269717],[0.12163351476192,0.0032170251943171,-0.017339466139674]],[[0.075463093817234,0.030036896467209,0.0062991525046527],[0.059595942497253,0.016573356464505,0.0012581152841449],[0.044226251542568,0.031150335446,0.055943753570318]],[[-0.081018179655075,-0.022611292079091,0.12426951527596],[0.0006676857592538,-0.062764629721642,0.09366299957037],[-0.064590744674206,0.004694648552686,0.023391289636493]],[[-0.0075762616470456,-0.0090013677254319,0.012525019235909],[0.043503824621439,0.070883505046368,-0.045517522841692],[0.0077618844807148,-0.051045581698418,-0.080667652189732]],[[-0.044412851333618,0.044462315738201,-0.14115639030933],[-0.002017937367782,-0.18158535659313,-0.001589258434251],[-0.059937741607428,0.08763587474823,0.020281439647079]],[[-0.063167698681355,0.088943086564541,-0.051017884165049],[0.052607115358114,0.06058556213975,-0.063470363616943],[0.070476226508617,0.036810968071222,-0.026069520041347]],[[-0.19249458611012,0.10935254395008,-0.087541960179806],[-0.18887685239315,-0.015982097014785,-0.030761417001486],[-0.030714744701982,0.20124959945679,0.067335546016693]],[[0.052160494029522,-0.0088930306956172,0.048649940639734],[0.015699800103903,-0.18811331689358,0.0066107446327806],[0.02442024089396,0.066642850637436,0.031745675951242]],[[0.053242474794388,0.065364316105843,-0.021742779761553],[0.068374499678612,0.039166532456875,0.014211949892342],[-0.040157377719879,-0.081942021846771,0.11528009921312]],[[0.11789345741272,0.060280576348305,-0.096371985971928],[-0.10736402124166,-0.014669700525701,0.026150578632951],[-0.12117797881365,-0.090228587388992,-0.094449169933796]],[[0.052231412380934,0.18809147179127,-0.0011779024498537],[0.073202632367611,-0.0042572193779051,0.18825140595436],[-0.01595763489604,-0.16044439375401,-0.020476387813687]],[[0.024686589837074,-0.012511453591287,-0.087673090398312],[0.033781558275223,0.010488528758287,-0.0060260142199695],[-0.12955828011036,-0.047554805874825,0.058447882533073]],[[0.069851540029049,-0.009553368203342,0.064163520932198],[0.11928506195545,-0.08836854249239,0.015556244179606],[0.0084646362811327,-0.070969142019749,-0.026489950716496]],[[0.082552902400494,-0.16407051682472,-0.082493059337139],[-0.1465800255537,0.0073057156987488,-0.037991248071194],[-0.034221917390823,0.14924129843712,-0.051913794130087]],[[0.026416195556521,-0.08743941783905,0.11449940502644],[0.016951158642769,-0.051971528679132,-0.03532375395298],[0.039635851979256,0.03085152246058,-0.030476761981845]],[[-0.085498832166195,-0.069342598319054,-0.03601423278451],[-0.065652877092361,-0.033164270222187,-0.060816615819931],[0.034716702997684,-0.14851854741573,0.021707220003009]],[[-0.14520879089832,0.015572869218886,0.0237109772861],[-0.093670465052128,0.094821378588676,0.050824839621782],[-0.029751690104604,0.021082956343889,-0.043747413903475]],[[0.019212879240513,-0.012848574668169,-0.069412037730217],[0.018551519140601,-0.090083889663219,-0.020784754306078],[-0.0031918070744723,0.13427485525608,-0.0023395377211273]],[[0.099038697779179,-0.017034402117133,-0.056030217558146],[-0.20258177816868,0.014141307212412,-0.1066468283534],[0.020484637469053,0.071852207183838,-0.17017529904842]],[[0.02829709276557,0.030632561072707,0.013348146341741],[0.011390684172511,0.096430189907551,-0.029887134209275],[0.085915088653564,-0.058206554502249,0.040784500539303]],[[-0.033791076391935,0.20008820295334,0.011427872814238],[0.04822875931859,0.066163040697575,-0.024672152474523],[-0.063231445848942,-0.028019620105624,-0.074902720749378]],[[-0.041953388601542,-0.07256842404604,-0.067624986171722],[0.26551523804665,0.039341796189547,0.011351670138538],[-0.055757325142622,0.22937560081482,-0.034727856516838]],[[-0.056567039340734,-0.065674938261509,0.0014269761741161],[-0.035443160682917,0.048963949084282,0.028922280296683],[-0.0010217959061265,0.046635564416647,0.0083925761282444]],[[0.088592261075974,0.046355318278074,0.067248821258545],[-0.012799979187548,0.0011477272491902,0.015279699116945],[0.044131383299828,-0.078643545508385,0.033956859260798]],[[0.040073409676552,-0.028016643598676,0.045931220054626],[-0.12009375542402,-0.0032214608509094,0.11435656249523],[0.05950990691781,0.1204774081707,-0.11715592443943]],[[-0.00026272956165485,0.030100524425507,0.020727945491672],[0.036936637014151,-0.033096246421337,0.0011073790956289],[-0.044211305677891,0.036407236009836,-0.012597070075572]],[[0.047521021217108,-0.086129270493984,0.058394767343998],[-0.041497949510813,-0.015132453292608,0.05399963632226],[-0.11986914277077,-0.085325434803963,-0.052624817937613]],[[-0.14699196815491,0.065580561757088,-0.074396334588528],[-0.072976291179657,0.049695312976837,-0.11222025752068],[0.10568631440401,-0.15579970180988,0.030110560357571]],[[-0.074777968227863,0.058542527258396,0.057366292923689],[0.0051116026006639,0.075214870274067,-0.030871611088514],[0.038341872394085,-0.02500499971211,0.024803759530187]],[[-0.050069320946932,-0.12915779650211,-0.0031364914029837],[-0.068215817213058,-0.044176071882248,0.073387652635574],[-0.07804623991251,-0.11255740374327,0.012766251340508]],[[0.056144047528505,0.08797724545002,-0.059920746833086],[0.043869972229004,-0.054987855255604,0.03849121183157],[-0.049779668450356,0.11626988649368,0.15783086419106]],[[-0.046955540776253,-0.097746528685093,0.16030134260654],[-0.0039028010796756,0.049809865653515,-0.1117075830698],[0.075181283056736,-0.064948245882988,0.12758556008339]],[[-0.063097380101681,0.045694313943386,0.053537741303444],[0.0011906560976058,-0.14886893332005,0.052905719727278],[-0.036082979291677,-0.015366714447737,-0.0025352467782795]],[[-0.033734172582626,-0.074014015495777,0.010874837636948],[-0.14786747097969,-0.048523705452681,0.048870887607336],[-0.10318260639906,0.077879004180431,0.024126656353474]],[[0.035893879830837,0.046359427273273,0.1746269017458],[0.16777351498604,0.040999297052622,-0.012037214823067],[-0.048528097569942,-0.046003036201,-0.013025952503085]],[[-0.12085554748774,0.026405246928334,-0.052449341863394],[-0.048636522144079,0.071128264069557,0.094050817191601],[-0.015862476080656,-0.041697613894939,0.011662512086332]],[[-0.071698181331158,0.050348199903965,-0.060813345015049],[0.16133418679237,0.042421773076057,-0.065454162657261],[0.21701322495937,-0.20589834451675,-0.1765196621418]],[[-0.0051747658289969,0.06828611344099,0.13557542860508],[0.059648010879755,0.067183665931225,0.05623484775424],[-0.019205495715141,0.068493701517582,0.093336671590805]],[[0.028818311169744,0.058134708553553,-0.036152146756649],[0.11830106377602,-0.0038216537795961,-0.026156730949879],[0.0079508749768138,0.085147388279438,0.013613441959023]],[[0.029896449297667,0.040249530225992,-0.042362123727798],[-0.039588950574398,0.12077586352825,0.018103649839759],[0.06531672924757,0.078405611217022,-0.054057996720076]],[[0.013097934424877,-0.022475929930806,0.059809565544128],[0.034433417022228,-0.026349475607276,0.03078781068325],[0.015047826804221,0.041057735681534,0.027605155482888]],[[0.00066882494138554,-0.028335513547063,-0.084784433245659],[-0.010509317740798,0.090117037296295,-0.07088141143322],[-0.024826385080814,0.060718093067408,-0.086089439690113]],[[-0.088700190186501,0.031337141990662,0.12366314977407],[-0.21116645634174,0.01282200589776,0.057256571948528],[-0.029318423941731,0.042015444487333,-0.0074518253095448]],[[0.13971550762653,0.071470901370049,0.016706924885511],[0.066878162324429,0.0042608617804945,0.021056104451418],[0.0034882433246821,0.1305940002203,0.026865592226386]],[[-0.0041846185922623,-0.066235706210136,-0.0023870365694165],[-0.107511729002,-0.054335687309504,-0.01819085329771],[-0.087761245667934,-9.9010314443149e-05,0.048838157206774]],[[0.13615109026432,-0.087810009717941,-0.20308443903923],[-0.089042834937572,-0.19623304903507,0.085119806230068],[0.010975605808198,0.086111314594746,-0.14001443982124]],[[0.09919685125351,0.011816009879112,-0.0045361123047769],[0.066102154552937,-0.14190666377544,0.0058303331024945],[0.079083673655987,-0.1062590777874,-0.020269213244319]],[[-0.0080204736441374,-0.0049039386212826,-0.077496208250523],[-0.065889477729797,-0.043550547212362,0.016832312569022],[-0.099683746695518,0.055473066866398,0.0071504330262542]],[[-0.00079191627446562,0.0078689521178603,-0.018404208123684],[-0.085675105452538,-0.014848311431706,0.11693163961172],[0.062147974967957,0.1123436614871,-0.013780074194074]],[[0.11519485712051,-0.0075326906517148,-0.0030724878888577],[0.039624106138945,-0.10127771645784,-0.051356669515371],[0.06592333316803,-0.13463217020035,0.13331052660942]],[[-0.0037251757457852,0.0090289609506726,0.054873026907444],[0.029061317443848,0.025828244164586,0.050067905336618],[-0.081488609313965,-0.087922260165215,-0.015172781422734]],[[0.032689958810806,-0.089230112731457,0.040220472961664],[0.032618310302496,-0.042944490909576,0.094971552491188],[0.064153797924519,0.010078299790621,0.069924615323544]],[[0.078889861702919,-0.097032904624939,0.019204339012504],[-0.049324546009302,-0.065964862704277,-0.067083165049553],[-0.11650271713734,0.0059019988402724,-0.045467313379049]],[[0.13913397490978,-0.022994088009,-0.031113924458623],[-0.04408885166049,0.064781755208969,-0.29613927006721],[-0.09059464931488,0.12943504750729,0.041561670601368]],[[-0.047832150012255,-0.048654947429895,-0.045119155198336],[0.062079537659883,0.033951811492443,0.078953377902508],[-0.011760696768761,0.020542323589325,0.13852646946907]],[[0.011365512385964,0.039573699235916,-0.027841446921229],[0.11025656759739,-0.084694497287273,-0.052210353314877],[-0.088974699378014,0.15580688416958,0.027604784816504]],[[0.17172195017338,0.12813131511211,-0.0097432686015964],[-0.062871262431145,-0.010997232981026,-0.1076377555728],[-0.060773197561502,-0.017991695553064,-0.035589393228292]],[[-0.091191075742245,-0.085062205791473,0.1713285446167],[-0.04789562150836,0.075807847082615,-0.041827723383904],[0.10915380716324,0.026353906840086,-0.013538483530283]],[[0.00073759368387982,-0.014433174394071,-0.047070968896151],[0.034160882234573,-0.038179464638233,0.0231977943331],[0.203265234828,0.066590040922165,-0.069692961871624]],[[0.013234906829894,-0.11452157050371,-0.082680270075798],[0.025843426585197,0.044139422476292,0.12057273834944],[0.017200337722898,0.042556192725897,-0.067832514643669]],[[-0.21520507335663,0.030732585117221,-0.0057964855805039],[0.0076291752047837,-0.020832244306803,-0.22596316039562],[-0.015759211033583,0.057737275958061,-0.13014467060566]],[[0.024212174117565,0.016580292955041,-0.055403489619493],[-0.025647109374404,0.036652110517025,0.096637815237045],[-0.16584697365761,-0.1085217744112,-0.036690328270197]],[[-0.016207633540034,0.13440690934658,0.05491641908884],[-0.14977064728737,-0.080077961087227,0.012718798592687],[0.066165924072266,-0.11697386205196,-0.074127785861492]],[[-0.013073914684355,0.077395126223564,0.10031282901764],[-0.0030044585000724,-0.048243090510368,0.014209737069905],[0.028966654092073,0.071852475404739,0.0077659385278821]],[[-0.078261487185955,0.0092620411887765,0.039622187614441],[0.14465083181858,0.043240588158369,0.076804012060165],[-0.012709135189652,-0.060793295502663,-0.0071242828853428]],[[0.016142331063747,0.00034231171594001,0.017827343195677],[0.050558794289827,-0.10975186526775,0.17728014290333],[0.012965831905603,0.05451763048768,0.14431519806385]],[[0.10517607629299,-0.01474376115948,0.048805963248014],[-0.064039930701256,-0.029473062604666,0.12041669338942],[0.037715159356594,0.080214403569698,0.17939096689224]],[[-0.22895762324333,0.045860141515732,0.012674179859459],[-0.13354754447937,0.036284774541855,0.085589930415154],[0.061949852854013,0.044543597847223,-0.0092172333970666]],[[0.10410067439079,-0.039404861629009,0.040465701371431],[0.017258148640394,-0.0083534549921751,-0.012294941581786],[-0.036667946726084,0.045624542981386,0.054992761462927]],[[-0.084906578063965,-0.04552798718214,0.056819193065166],[0.06000842154026,0.071029812097549,0.031318828463554],[0.036844991147518,-0.015625987201929,0.073312155902386]],[[0.085631422698498,-0.060366034507751,-0.0015892265364528],[-0.059651620686054,-0.073939144611359,-0.082462623715401],[0.025593068450689,-0.04635464400053,-0.078980445861816]],[[-0.018563786521554,-0.019464768469334,0.035394489765167],[0.01035475358367,-0.049794238060713,0.13061602413654],[-0.036254718899727,-0.06967967748642,0.024721834808588]],[[-0.040565211325884,-0.01974319294095,0.083755925297737],[-0.0080225644633174,0.062923893332481,0.036601908504963],[-0.1056285277009,-0.034877192229033,0.041674643754959]],[[-0.029734207317233,0.13029393553734,0.051122598350048],[-0.10410476475954,-0.10020197927952,-0.0039858883246779],[0.042290356010199,-0.14428701996803,0.038041308522224]],[[0.076406620442867,0.026480806991458,-0.010052093304694],[0.072401650249958,-0.071545533835888,0.067621350288391],[-0.025710344314575,0.01498069241643,0.10042587667704]],[[-0.056828677654266,0.0031193937174976,0.012060336768627],[0.06740215420723,0.093801140785217,0.015597747638822],[0.018553406000137,0.077491208910942,0.15226073563099]],[[0.088305585086346,0.036692049354315,0.031687151640654],[0.046932499855757,-0.013238714076579,0.0083792665973306],[-0.052170287817717,0.039712503552437,0.023751573637128]],[[0.0062194657512009,-0.090834692120552,-0.018859455361962],[-0.21902354061604,0.002143690828234,-0.087365612387657],[-0.067959308624268,0.011784076690674,-0.11971741914749]],[[0.1208984926343,0.0053560947999358,0.09759858250618],[-0.025527680292726,-0.06515821069479,0.032078765332699],[-0.053878381848335,-0.21533460915089,0.1010365486145]],[[0.019591968506575,-0.11439515650272,-0.04388689622283],[-0.053581740707159,-0.058404386043549,0.12392877787352],[0.075491979718208,-0.0065778237767518,-0.019407391548157]],[[-0.012524078600109,-0.023139722645283,-0.073227912187576],[-0.019246969372034,-0.0065516671165824,-0.19424872100353],[-0.080113597214222,0.054147358983755,0.031919952481985]],[[0.036586713045835,0.14944475889206,-0.046905528753996],[0.010319280438125,0.062780559062958,-0.038194414228201],[0.014782721176744,0.10919732600451,-0.078502327203751]],[[0.041544675827026,-0.0013476164313033,0.017828261479735],[0.22482548654079,-0.16104827821255,-0.023422155529261],[-0.23867607116699,-0.1087547019124,0.01998321339488]],[[-0.010117794387043,-0.039047878235579,0.045263357460499],[-0.10181634873152,0.0022808618377894,0.030960701406002],[-0.061351243406534,-0.012069719843566,0.094808265566826]],[[-0.049537070095539,-0.010906282812357,0.16727775335312],[-0.017202768474817,0.059991054236889,-0.10152726620436],[0.041263211518526,0.078096225857735,0.10574471205473]],[[0.084673687815666,0.067470386624336,-0.046214263886213],[-0.048091422766447,0.01422718167305,-0.072397038340569],[0.05526765063405,-0.032770816236734,-0.054998409003019]],[[-0.048096995800734,0.098652929067612,-0.071459211409092],[-0.043172005563974,0.075272284448147,0.019385758787394],[-0.011661383323371,0.053943779319525,-0.077968053519726]],[[0.0062771295197308,-0.013266362249851,0.062230180948973],[0.051785338670015,-0.091091640293598,-0.074155546724796],[0.12947559356689,-0.15187276899815,-0.07353176176548]],[[0.057735212147236,-0.10438556969166,0.12751518189907],[-0.028713408857584,0.035469710826874,0.12718643248081],[-0.07996067404747,-0.13530516624451,0.072346970438957]],[[0.08975663036108,0.050577539950609,0.0037840695586056],[0.020570220425725,-0.01064829248935,-0.065642677247524],[-0.012852981686592,-0.11942425370216,-0.075032584369183]],[[-0.016730258241296,0.0017717162845656,0.11742834746838],[-0.054060950875282,0.010479646734893,0.030672082677484],[-0.035654474049807,-0.011644344776869,-0.0048312190920115]],[[-0.092760354280472,0.11634968966246,-0.016207728534937],[-0.0014500319957733,0.1663466989994,-0.085516773164272],[-0.015630261972547,0.087626159191132,0.037546247243881]],[[-0.054737586528063,0.0079274130985141,-0.15192593634129],[-0.18301317095757,-0.014721752144396,-0.096818141639233],[0.052834987640381,-0.058515444397926,-0.083957701921463]],[[0.0056563569232821,0.018706049770117,0.023533891886473],[0.011272677220404,-0.020856073126197,-0.10532393306494],[0.044091373682022,0.056454624980688,0.031817466020584]],[[-0.029763041064143,0.092734403908253,-0.064229816198349],[-0.018908796831965,0.0032287058420479,0.039099529385567],[0.0033111881930381,0.22005192935467,-0.14803226292133]],[[0.090296484529972,-0.057405564934015,0.015274224802852],[0.098246522247791,-0.0011289301328361,-0.011702517978847],[0.010245548561215,0.1576372385025,0.066089496016502]],[[-0.018026493489742,-0.091196320950985,0.008881276473403],[-0.04751155897975,-0.094563215970993,0.36038705706596],[-0.023049728944898,-0.12610630691051,-0.046725668013096]],[[-0.015903336927295,0.0043306071311235,-0.0024856014642864],[-0.087328933179379,-0.026408074423671,0.031466975808144],[-0.0438302308321,0.10942407697439,0.01264885533601]],[[-0.13549676537514,-0.023946721106768,-0.0049576163291931],[0.033936776220798,-0.012182410806417,-0.13025127351284],[-0.10726141184568,0.017739225178957,0.0015963814221323]],[[0.0083648962900043,-0.064904317259789,-0.0151427378878],[-0.062367614358664,-0.01905570551753,0.021782970055938],[-0.026655048131943,0.05749012902379,-0.0077339657582343]],[[0.053669907152653,0.026720082387328,-0.0095741003751755],[0.2992502450943,-0.059974458068609,0.0017826864495873],[-0.095671638846397,0.093662090599537,0.040660630911589]],[[0.19690756499767,-0.00054664484923705,0.12285195291042],[-0.077815294265747,-0.025449616834521,0.03744013607502],[-0.05499554425478,-0.054825637489557,-0.0054169395007193]],[[0.043416194617748,0.080741249024868,-0.020157383754849],[-0.010507714003325,-0.021976809948683,0.022794786840677],[-0.02316103130579,0.059540245682001,-0.086781695485115]],[[0.033338267356157,-0.006310966797173,0.031473781913519],[-0.049684558063745,-0.042695138603449,0.026612659916282],[0.043853003531694,0.00096666318131611,0.037422940135002]],[[-0.094449542462826,0.09441090375185,0.14662733674049],[0.010666076093912,-0.10212925076485,0.055923264473677],[-0.073454983532429,0.076320827007294,0.020507328212261]],[[0.03355823084712,0.073486424982548,-0.013923179358244],[-0.056379213929176,-0.038836594671011,0.081703394651413],[-0.06971438229084,0.068462669849396,0.0782405808568]],[[-0.1092192530632,0.050877299159765,0.034996379166842],[-0.063658632338047,-0.034788079559803,-0.006870286539197],[-0.048209086060524,-0.047310300171375,-0.10329459607601]],[[0.039089929312468,0.046204447746277,0.026224799454212],[-0.0097791450098157,0.10182970017195,-0.041725773364305],[0.086535200476646,0.047574307769537,-0.0213822722435]],[[-0.028053902089596,0.0083308853209019,-0.10653609782457],[0.071129970252514,-0.085856556892395,0.070812560617924],[0.052247576415539,-0.082342430949211,0.049312628805637]],[[-0.070708185434341,-0.091500118374825,0.019384618848562],[-0.14629206061363,-0.056261841207743,0.10763961821795],[-0.11026450246572,-0.052834890782833,-0.074996054172516]],[[0.048512112349272,0.0063394280150533,-0.089053772389889],[-0.093206606805325,-0.096139281988144,0.012926237657666],[-0.0088975867256522,0.04788950458169,0.0011199819855392]],[[0.07137543708086,-0.10664495080709,-0.13829091191292],[-0.033047556877136,-0.033555798232555,-0.021120551973581],[-0.085394971072674,-0.10230401903391,0.0067296754568815]],[[-0.1000318005681,-0.05346404761076,0.029179180040956],[-0.06868539005518,-0.055255327373743,0.049005128443241],[-0.03974162042141,0.021770935505629,-0.077354095876217]],[[-0.039739597588778,-0.16046087443829,0.023490395396948],[-0.074448697268963,0.01853309944272,-0.1384616792202],[0.055304035544395,0.061129309237003,-0.080822624266148]],[[-0.029154116287827,-0.096526108682156,0.11060424149036],[0.013367778621614,-0.044942401349545,-0.057194042950869],[0.0072695040144026,-0.070827998220921,0.0094057833775878]],[[-0.072691537439823,-0.28147038817406,0.015208028256893],[-0.056840308010578,-0.080439247190952,0.033171135932207],[-0.077809117734432,-0.092364735901356,0.0036836466751993]],[[0.0012042812304571,-0.11573829501867,-0.20184741914272],[-0.022732311859727,0.061112180352211,-0.05099031329155],[0.02816266939044,-0.14156554639339,0.08594673871994]],[[-0.12404782325029,-0.018827123567462,0.1021231636405],[0.018139051273465,0.025191528722644,-0.096073843538761],[-0.035168185830116,0.077309124171734,-0.069604113698006]],[[0.045108329504728,-0.0086437547579408,0.0013729702914134],[-0.053880367428064,0.045817539095879,-0.062552526593208],[0.081483595073223,0.16994376480579,-0.029824396595359]],[[0.054826207458973,0.024945437908173,-0.024987274780869],[-0.030443672090769,-0.0090382797643542,-0.059566333889961],[0.051631521433592,-0.18154898285866,0.017976101487875]],[[-0.015738610178232,0.015561424195766,-0.052274189889431],[-0.10836458951235,0.040743049234152,-0.02811754308641],[0.036635592579842,-0.058526135981083,-0.097888424992561]],[[0.034323427826166,0.012611024081707,0.034973185509443],[-0.15002970397472,-0.024781331419945,-0.087009698152542],[-0.039076991379261,-0.050637703388929,0.018728448078036]],[[0.054444693028927,0.11910597980022,0.055306974798441],[0.0095602255314589,0.061542980372906,-0.045226957648993],[-0.11817266047001,0.0014037467772141,-0.11902273446321]],[[-0.0066051371395588,0.041671652346849,0.17702162265778],[0.021422974765301,5.7356675824849e-05,-0.060673329979181],[0.016195148229599,-0.011772519908845,-0.0023588710464537]],[[-0.11056862771511,-0.011171201243997,-0.071028657257557],[0.030755085870624,-0.073236897587776,0.043259017169476],[0.1272380053997,0.050372868776321,0.10536608099937]],[[-0.058451071381569,-0.024716952815652,-0.015118986368179],[-0.091990120708942,-0.16403348743916,-0.097628757357597],[0.12843282520771,-0.17869110405445,0.13378459215164]]],[[[-0.038090109825134,0.10596009343863,-0.0025221428368241],[-0.12251903116703,0.056567009538412,0.018711823970079],[0.049891024827957,-0.021207133308053,0.045271430164576]],[[-0.053366512060165,0.15299853682518,-0.10976521670818],[-0.091604985296726,0.0095890471711755,0.071569174528122],[-0.10291337221861,0.081828124821186,-0.095719046890736]],[[0.053457658737898,0.017922189086676,-0.21751353144646],[-0.10070689022541,-0.065142869949341,0.016147593036294],[0.046232234686613,-0.049400836229324,0.024011272937059]],[[0.032777030020952,-0.031882256269455,0.1407292932272],[0.0033872732892632,0.024031955748796,0.12500880658627],[0.15615378320217,0.067967750132084,0.010389197617769]],[[0.017419995740056,0.056555535644293,-0.077992424368858],[0.090448372066021,-0.037372756749392,-0.058625113219023],[0.027164068073034,-0.035557448863983,-0.060395292937756]],[[0.088504284620285,0.03767391294241,0.015301293693483],[0.059393644332886,0.028291134163737,-0.082978092133999],[0.081496112048626,0.042320128530264,-0.063107147812843]],[[0.055888406932354,-0.030616821721196,-0.056649386882782],[-0.048053558915854,0.029159687459469,0.018838120624423],[-0.016883857548237,0.03684226423502,0.040000203996897]],[[-0.048715006560087,-0.078283958137035,0.10599471628666],[0.048315305262804,-0.092736549675465,0.11148729920387],[-0.039694231003523,0.0015005769673735,0.035164721310139]],[[0.018593318760395,-0.020365707576275,-0.10403569042683],[-0.077134922146797,0.021352348849177,0.01643269136548],[-0.10423211753368,-0.002475003246218,-0.011131571605802]],[[-0.10128262639046,-0.038896720856428,-0.20413261651993],[0.0076507972553372,0.074691541492939,0.090958580374718],[0.10199473798275,0.17934566736221,-0.027364693582058]],[[-0.026264583691955,-0.030723944306374,0.13534703850746],[0.032615344971418,-0.027463924139738,0.045038141310215],[0.082944445312023,0.14821393787861,-0.010274166241288]],[[0.11044803261757,0.35664474964142,-0.043093930929899],[-0.11495400965214,-0.079403772950172,-0.01815814897418],[0.062106363475323,0.081299640238285,0.013840204104781]],[[0.11599313467741,0.087292462587357,-0.0088374949991703],[0.022272249683738,0.12801937758923,-0.10989425331354],[0.016003601253033,0.013991247862577,-0.067455723881721]],[[0.10412692278624,0.00091352226445451,-0.068488083779812],[-0.054735958576202,-0.14643180370331,-0.028604477643967],[-0.033165082335472,-0.14663238823414,0.0080638937652111]],[[0.061069838702679,-0.062843531370163,0.058842696249485],[0.048472989350557,-0.11216340214014,-0.094595305621624],[0.0054450570605695,-0.0800666436553,0.041299659758806]],[[0.18849551677704,0.0035835639573634,-0.060004502534866],[0.094668306410313,0.015538929961622,0.034890506416559],[0.099162317812443,0.037210039794445,-0.027408383786678]],[[0.025995058938861,0.019405886530876,-0.03661946952343],[-0.068169951438904,0.14318008720875,-0.092621333897114],[0.1382392346859,-0.027520053088665,-0.15421149134636]],[[-0.091286435723305,0.018247783184052,0.050904560834169],[-0.021261179819703,-0.0010453697759658,0.11992090195417],[0.093958586454391,-0.00034432570100762,0.0640973970294]],[[-0.018177820369601,-0.035983797162771,0.10739733278751],[-0.19718015193939,0.083113104104996,0.00027424917789176],[-0.028444526717067,-0.065215706825256,0.010166417807341]],[[-0.07007697224617,-0.018874345347285,-0.045348685234785],[-0.0032271365635097,0.039078965783119,0.011770261451602],[-0.021397151052952,0.03192500397563,-0.032283842563629]],[[0.066715642809868,-0.013428948819637,-0.019988162443042],[0.0057014054618776,-0.017950363457203,-0.022021172568202],[0.029694994911551,0.071070700883865,-0.11404908448458]],[[0.0097146704792976,-0.0026428997516632,0.038496010005474],[0.068232052028179,-0.049388784915209,0.09185491502285],[0.021342815831304,-0.12023219466209,-0.068870641291142]],[[-0.1089950427413,0.046189650893211,0.09055669605732],[0.058708053082228,0.0098566487431526,-0.086513102054596],[-0.078147940337658,0.11894235759974,-0.025844473391771]],[[0.095541678369045,0.027781046926975,0.094578206539154],[-0.030596302822232,0.11663313210011,0.051775556057692],[-0.16429407894611,0.095394186675549,0.043285697698593]],[[-0.014505484141409,-0.089359693229198,0.095874533057213],[0.028975583612919,-0.016515769064426,-0.01846039481461],[0.11706442385912,0.051921054720879,0.16781356930733]],[[0.011501391418278,-0.022788563743234,-0.01736856251955],[0.01943745650351,-0.011961908079684,-0.049915045499802],[-0.11547363549471,-0.038294840604067,-0.087586596608162]],[[0.056792203336954,0.053564827889204,0.031132400035858],[0.12744329869747,0.015409249812365,-0.053408894687891],[0.053631253540516,0.056443747133017,-0.03466385602951]],[[-0.096464730799198,0.026348678395152,-0.035035226494074],[0.018232418224216,0.040531329810619,0.094696030020714],[0.058478780090809,0.065553471446037,-0.027036599814892]],[[0.082522079348564,0.060706317424774,-0.11443641036749],[0.045682709664106,-0.047761630266905,0.040904182940722],[-0.015208594501019,0.048267345875502,0.019053358584642]],[[-0.052680298686028,-0.067656278610229,-0.039803937077522],[-0.030089382082224,0.15354077517986,0.080182299017906],[0.079918712377548,0.077021755278111,-0.040937673300505]],[[0.012584250420332,-0.037171009927988,0.052692331373692],[0.17537574470043,0.087898939847946,0.15921288728714],[0.13877250254154,-0.029882602393627,0.0079476265236735]],[[-0.15336157381535,-0.005168255418539,0.13833352923393],[-0.12220818549395,-0.037993278354406,0.088005773723125],[0.03601186349988,0.082141794264317,-0.03549563139677]],[[0.11279714852571,0.19312603771687,-0.14555668830872],[-0.076304599642754,0.16675016283989,-0.03119327314198],[0.1365363150835,-0.010246867313981,0.055142063647509]],[[0.082151897251606,0.060190267860889,-0.0096424203366041],[-0.015578538179398,-0.077716939151287,0.0031883132178336],[-0.026982819661498,0.020767044275999,0.084960900247097]],[[0.088680304586887,-0.068004198372364,0.057321701198816],[-0.090146616101265,-0.059507381170988,0.033275276422501],[0.016711503267288,0.10874714702368,0.10090805590153]],[[0.17000062763691,-0.10159783810377,-0.11220759153366],[0.039136596024036,-0.070774115622044,0.038730256259441],[-0.084377445280552,-0.019482582807541,0.053800936788321]],[[-0.0056102517992258,0.16090129315853,-0.023365398868918],[-0.050733271986246,0.061204198747873,0.020236464217305],[0.042604193091393,0.026946330443025,0.12182931602001]],[[0.033075854182243,-0.089830040931702,0.0041084093973041],[-0.14888186752796,-0.092323482036591,-0.089082710444927],[-0.12288706749678,-0.035879626870155,-0.040084958076477]],[[-0.052551008760929,0.072863854467869,-0.063089400529861],[-0.035279706120491,0.016242643818259,0.02138077840209],[-0.039912678301334,-0.041131276637316,-0.055566906929016]],[[0.058476611971855,0.02431308850646,-0.0052971900440753],[-0.028818026185036,-0.0057607209309936,0.079789228737354],[0.10161882638931,-0.0045374594628811,0.051502257585526]],[[0.02201690711081,-0.0021914918906987,-0.065847188234329],[-0.018292229622602,-0.042296811938286,-0.060570534318686],[-0.030900903046131,0.0670051202178,-0.036468725651503]],[[0.17254960536957,0.020436285063624,-0.013660359196365],[-0.0033271084539592,0.062662273645401,-0.0066292653791606],[-0.00026177795371041,-0.039153158664703,0.029243631288409]],[[0.026468945667148,0.043555591255426,-0.044342566281557],[0.082561738789082,-0.051607597619295,-0.056457202881575],[-0.068937405943871,0.04894508048892,0.065222643315792]],[[-0.016525702551007,0.064984731376171,0.031179191544652],[-0.069521076977253,-0.015773244202137,-0.00068304390879348],[-0.055169340223074,0.010414648801088,0.03713446483016]],[[0.10373223572969,-0.0067303427495062,0.061760697513819],[0.08501810580492,0.070532448589802,0.0016822416801006],[0.10859885066748,0.047466576099396,0.01083526480943]],[[-0.060870811343193,-0.07184461504221,-0.019782220944762],[0.080515049397945,0.04042960703373,0.008340205065906],[0.17465244233608,-0.027632934972644,0.12131278961897]],[[-0.052958194166422,0.0610984377563,0.099375136196613],[-0.057977251708508,0.14029364287853,-0.050270166248083],[0.20176163315773,-0.17464008927345,-0.097468316555023]],[[-0.068862058222294,-0.01221832446754,-0.06827549636364],[-0.072694905102253,-0.018157579004765,0.033242177218199],[-0.017451485618949,-0.019398767501116,0.0084757814183831]],[[0.065519623458385,-0.074209213256836,-0.029717234894633],[-0.037150699645281,-0.056737929582596,-0.062639541924],[-0.053673710674047,-0.027422880753875,-0.064583897590637]],[[0.0033876562956721,0.034476697444916,-0.074108935892582],[0.024329429492354,-0.074240945279598,-0.052646737545729],[0.0058461069129407,-0.058017335832119,-0.052075397223234]],[[0.049174200743437,0.00010190642205998,0.083085916936398],[-0.023662468418479,0.040974792093039,0.030811602249742],[0.029665898531675,-0.01618853956461,0.22286818921566]],[[-0.0050855362787843,0.0094266356900334,0.097696401178837],[-0.072997115552425,0.02621248178184,0.035185988992453],[0.020151531323791,-0.06732764095068,0.044874656945467]],[[0.031804542988539,-0.076625891029835,-0.02970602363348],[0.054810628294945,-0.015569624491036,-0.037802692502737],[-0.014051487669349,-0.044060941785574,0.0031255988869816]],[[-0.0551030151546,0.091126412153244,-0.010535813868046],[0.010186466388404,-0.012953813187778,0.038819991052151],[-0.015170338563621,0.010244704782963,0.17706377804279]],[[0.058180369436741,0.0011015564668924,-0.11960071325302],[0.1127346009016,0.028758078813553,-0.025958279147744],[0.071045003831387,-0.065610803663731,0.015656910836697]],[[-0.06635619699955,0.12235921621323,0.0085830837488174],[0.030551612377167,0.067690394818783,0.023602981120348],[-0.0024176638107747,0.088725559413433,0.0091359596699476]],[[-0.027198335155845,0.069957859814167,-0.044928304851055],[0.067196935415268,0.0073900427669287,0.10792727023363],[-0.034580837935209,0.037798307836056,0.060242027044296]],[[-0.014076069928706,0.038370404392481,-0.03471727669239],[-0.0011205086484551,-0.02099821344018,0.0038826924283057],[-0.00038697404670529,-0.02239047922194,-0.10741025954485]],[[-0.030429599806666,-0.10072677582502,-0.042257267981768],[0.17231242358685,-0.0091394120827317,0.0054370919242501],[-0.056947160512209,0.032092250883579,-0.01418433431536]],[[0.13290986418724,0.043787889182568,0.044363297522068],[-0.15190882980824,-0.081954330205917,0.030191995203495],[-0.095867589116096,-0.050995443016291,-0.0022140122018754]],[[0.01192825473845,-0.025178398936987,-0.040174458175898],[0.12321892380714,0.027065986767411,0.011356110684574],[-0.040066350251436,0.0052317176014185,-0.047596391290426]],[[0.010751499794424,-0.044072136282921,0.068415053188801],[-0.066539734601974,-0.0017877734499052,0.0019207420991734],[-0.018256915733218,-0.036691129207611,-0.022342963144183]],[[0.033628847450018,-0.041866317391396,-0.075858801603317],[0.053677748888731,-0.026598419994116,-0.049941636621952],[-0.036565586924553,-0.011359056457877,-0.06712730973959]],[[0.0065356469713151,-0.016360335052013,0.07243923842907],[0.12761996686459,0.066752322018147,-0.0331777818501],[0.017929112538695,-0.05221613496542,-0.0022796972189099]],[[-0.044842395931482,-0.044323053210974,0.048745665699244],[-0.013338461518288,0.10985653102398,0.017149848863482],[0.04798961058259,0.0052658007480204,0.067820385098457]],[[0.08305948972702,-0.083332762122154,-0.0025102766230702],[0.045163746923208,-0.016922270879149,-0.049867980182171],[0.017843155190349,0.053583152592182,0.054842360317707]],[[-0.027204260230064,-0.012819461524487,-0.035524118691683],[0.028650335967541,-0.027100846171379,-0.02248041331768],[0.070746272802353,-0.066705077886581,0.062913075089455]],[[-0.016486059874296,-0.0740807056427,0.026556421071291],[-0.02655285038054,-0.072359971702099,-0.14480736851692],[0.067524954676628,0.12615305185318,0.10261943936348]],[[0.048176899552345,-0.018568897619843,-0.15350835025311],[0.023817628622055,-0.043378114700317,0.10037715733051],[-0.057895798236132,0.06674013286829,0.023014187812805]],[[0.058498285710812,0.14296698570251,0.016680017113686],[0.05004869773984,-0.074101649224758,-0.0052348370663822],[-0.070762291550636,0.13787107169628,0.017435947433114]],[[-0.083692587912083,0.080353304743767,0.0029370747506618],[-0.063733153045177,0.057096906006336,0.34496647119522],[0.31216463446617,0.057824872434139,0.026031013578176]],[[-0.018084768205881,0.10255572199821,0.0097769815474749],[0.018666861578822,-0.080025114119053,0.089618563652039],[0.1258250027895,-0.11608589440584,-0.013666102662683]],[[0.07001556456089,0.030805848538876,-0.019151780754328],[0.13262693583965,0.014087896794081,-0.01644535176456],[-0.056704737246037,0.04267829656601,0.085502199828625]],[[0.025174060836434,-0.068232104182243,-0.071252405643463],[0.0087581994011998,-0.0643195733428,0.057136107236147],[-0.058424398303032,0.093455009162426,-0.054934334009886]],[[0.017091965302825,-0.0014608288183808,-0.038283754140139],[-0.0040470845997334,0.0022112755104899,-0.047176364809275],[0.016897281631827,-0.0091514736413956,-0.10715299099684]],[[-0.027033507823944,0.040610078722239,-0.0013496128376573],[-0.027881344780326,-0.094308584928513,-0.0039292969740927],[0.057870827615261,0.057890579104424,0.10436976701021]],[[0.035369895398617,0.11171086132526,0.010132130235434],[0.011389386840165,0.026646550744772,0.026275891810656],[0.17201659083366,0.087195068597794,0.042906958609819]],[[0.076042599976063,-0.017962479963899,0.014795197173953],[0.0018551852554083,-0.018083659932017,-0.068654090166092],[0.028696984052658,0.085202805697918,0.049683276563883]],[[-0.018245814368129,0.10434734076262,-0.0036887626629323],[0.099497593939304,-0.069889575242996,0.028115345165133],[-0.065297730267048,-0.02293006144464,0.013977490365505]],[[-0.061845544725657,0.061031080782413,0.023556331172585],[-0.085852362215519,0.1145868897438,0.13936622440815],[0.0094690266996622,0.067134529352188,-0.11435680836439]],[[-0.03700727969408,-0.036048889160156,-0.082130759954453],[-0.062182072550058,-0.021350292488933,-0.019137542694807],[-0.070690669119358,-0.090674705803394,-0.048306409269571]],[[-0.057506628334522,0.02573112770915,0.10703198611736],[-0.011625683866441,0.032816432416439,-0.043093837797642],[0.079399526119232,0.062253911048174,0.11147055029869]],[[0.16174504160881,-0.042953711003065,0.067268021404743],[0.13331338763237,0.021078022196889,0.14476774632931],[-0.034699730575085,0.045461289584637,-0.012104480527341]],[[-0.035769529640675,0.11166290193796,0.040617078542709],[-0.069588966667652,-0.035949792712927,-0.076266266405582],[3.9440819818992e-05,0.057419292628765,0.0006794054643251]],[[-0.036542374640703,0.05647661164403,0.081727676093578],[0.0017490865429863,0.029646286740899,0.067796602845192],[0.070296809077263,0.024392204359174,-0.039691433310509]],[[-0.025074664503336,0.20260073244572,-0.02433574385941],[0.094791255891323,-0.07323544472456,0.0080653019249439],[-0.035377737134695,0.038704670965672,-0.049144152551889]],[[-0.0322125852108,-0.011681085452437,-0.066619776189327],[0.012566504999995,-0.06658436357975,0.020065620541573],[0.04978184401989,0.10374063253403,0.077475555241108]],[[-0.019887190312147,-0.1196499094367,-0.20568476617336],[-0.063534319400787,-0.018252650275826,-0.012696331366897],[0.086510173976421,-0.026408087462187,0.11621053516865]],[[-0.00451480736956,0.10328128188848,0.00022771990916226],[0.05618254840374,-0.056614775210619,-0.033337540924549],[-0.014891379512846,-0.013559208251536,0.0028514573350549]],[[-0.010122136212885,-0.13302473723888,-0.11150456219912],[-0.084089577198029,-0.19509083032608,0.077822610735893],[-0.012877458706498,-0.033414468169212,0.13690297305584]],[[0.022640524432063,0.01403421163559,0.010221503674984],[0.0044696596451104,-0.044068846851587,0.0025899584870785],[-0.067558236420155,0.03710426017642,-0.099582858383656]],[[-0.1466973721981,-0.048519734293222,0.027118181809783],[0.018488824367523,0.01465105637908,0.076880566775799],[0.053536627441645,0.018293008208275,-0.052250850945711]],[[0.042582008987665,-0.015793522819877,-0.016123978421092],[0.0042800828814507,0.076993927359581,0.0077560627833009],[0.075473994016647,-0.010460196062922,-0.038481622934341]],[[-0.084656812250614,-0.021987190470099,-0.029312172904611],[0.053302761167288,0.063551299273968,-0.0056652594357729],[0.050410844385624,0.077188976109028,0.028387783095241]],[[0.011458442546427,-0.038683410733938,-0.027272092178464],[-0.042180355638266,0.0139842024073,-0.10357091575861],[-0.040569227188826,-0.21381314098835,0.03440323844552]],[[0.025141660124063,0.16053764522076,-0.099721297621727],[0.033037073910236,0.015173561871052,0.07749355584383],[0.019545843824744,0.12305221706629,-0.0078402729704976]],[[0.037679228931665,0.061489388346672,-0.034328948706388],[0.025333039462566,0.084294028580189,0.050574526190758],[-0.14116524159908,-0.038430701941252,0.073188595473766]],[[-0.036191679537296,0.028616214171052,0.02161131426692],[0.14125999808311,0.014437541365623,-0.055393103510141],[0.12765525281429,-0.067358560860157,0.0052772592753172]],[[-0.055984005331993,0.037966161966324,0.0059873936697841],[-0.02766290679574,-0.087336741387844,0.047532167285681],[-0.037693556398153,-0.049959633499384,0.11987042427063]],[[0.081878155469894,0.033718410879374,-0.06069753319025],[-0.034230053424835,-0.014798696152866,0.14254185557365],[0.052621558308601,-0.1127698123455,-0.098641932010651]],[[-0.063948594033718,0.07286311686039,0.079404644668102],[0.12453892081976,-0.022604648023844,0.022363040596247],[-0.0053619528189301,-0.0479108504951,0.13216508924961]],[[0.057184223085642,0.054344438016415,-0.011272471398115],[-0.010911988094449,0.11986021697521,-0.070793502032757],[0.028936184942722,0.11107663810253,0.022026930004358]],[[-0.0081379022449255,0.042899921536446,-0.051694523543119],[0.078651145100594,0.10638438910246,0.11748933047056],[-0.013839087449014,0.025885311886668,0.035559009760618]],[[0.095685981214046,-0.037619967013597,-0.031598646193743],[-0.015282862819731,-0.078255526721478,-0.011229719035327],[-0.075192950665951,0.097759805619717,-0.014812872745097]],[[-0.033499989658594,0.0044315098784864,-0.11475560814142],[-0.098040126264095,0.010016143321991,-0.0070231333374977],[-0.096383042633533,-0.088153101503849,0.030983692035079]],[[0.004501196090132,0.064932987093925,-0.060859456658363],[-0.095579721033573,0.078567579388618,0.069244794547558],[0.00051680603064597,0.16193088889122,-0.06513736397028]],[[-0.0068915640003979,-0.064478062093258,0.086820870637894],[0.034139614552259,-0.041190471500158,0.0051975934766233],[-0.016943840309978,-0.0037502418272197,0.017535757273436]],[[0.10592848062515,-0.054115440696478,0.090385682880878],[-0.021597096696496,-0.03026345744729,0.12161123752594],[0.042493656277657,-0.16038703918457,0.03692938759923]],[[-0.021186832338572,0.01844204030931,-0.10123840719461],[0.044218078255653,-0.12093665450811,0.068307057023048],[0.0027035113889724,0.11005499213934,0.10964769124985]],[[0.00085127039346844,-0.060843594372272,-0.031824998557568],[-0.054342623800039,-0.047799937427044,0.032787803560495],[0.10041649639606,-0.0096787419170141,0.022358493879437]],[[0.019678497686982,-0.057622518390417,0.0057236887514591],[0.0092096719890833,0.10304172337055,-0.0034989102277905],[0.011104854755104,-0.019887750968337,-0.044370200484991]],[[-0.0047414605505764,-0.10320057719946,-0.041567735373974],[-0.021513614803553,-0.049645744264126,-0.010782093741],[-0.057396907359362,-0.0045245215296745,0.017324460670352]],[[0.0026320829056203,-0.0075092129409313,-0.18577633798122],[-0.044913459569216,0.037829533219337,-0.051443062722683],[0.024776022881269,0.016985312104225,0.0061330492608249]],[[-0.010114204138517,0.055817116051912,-0.003066707868129],[0.086944244801998,-0.0084250243380666,0.0099986810237169],[0.015945892781019,0.070444770157337,-0.07158163189888]],[[0.06619581580162,0.064122669398785,-0.0021026085596532],[0.069167166948318,-0.058160364627838,-0.11814143508673],[0.10235527902842,0.0011358296032995,-0.061693657189608]],[[-0.048126600682735,-0.029571952298284,0.041256293654442],[-0.045530632138252,0.038186553865671,-0.028690734878182],[-0.019293310120702,-0.08537532389164,-0.02674469538033]],[[-0.0019001167966053,-0.010957546532154,-0.024784198030829],[0.10825438052416,-0.027905104681849,-0.052413407713175],[0.091278433799744,-0.027924856171012,-0.079524889588356]],[[0.040264163166285,0.012165711261332,0.079079806804657],[-0.02161961235106,-0.092886157333851,-0.048118006438017],[-0.029904553666711,-0.092206984758377,-0.017745701596141]],[[-0.072248235344887,-0.053289156407118,0.053886093199253],[0.0055357897654176,-0.030373083427548,0.068457677960396],[0.066916011273861,0.066853627562523,0.045941632241011]],[[0.024498084560037,0.033911094069481,-0.20265644788742],[-0.018619297072291,-0.050156496465206,0.0029353140853345],[0.0064481501467526,-0.009994407184422,0.14801156520844]],[[-0.045187421143055,-0.052590843290091,0.052552942186594],[-0.033320233225822,0.021446699276567,0.079309836030006],[-0.014688272960484,0.10395476967096,-0.02183111384511]],[[-0.029595643281937,0.0041580647230148,-0.020639015361667],[-0.024944445118308,0.11809457093477,-0.02197627723217],[0.017266035079956,0.074162222445011,0.048333249986172]],[[-0.011795281432569,0.051548395305872,0.014553654007614],[-0.024961236864328,0.0060587250627577,-0.045216903090477],[-0.027620371431112,0.038833264261484,-0.061409015208483]],[[-0.076418593525887,-0.010877433232963,0.055432878434658],[0.025464318692684,0.11982519179583,-0.049620755016804],[0.03154668956995,-0.17894676327705,-0.063173890113831]],[[0.10044676810503,0.15211714804173,-0.039795093238354],[0.066529549658298,0.010446385480464,0.058171287178993],[0.033657915890217,0.0447749607265,0.087870843708515]],[[0.1572687625885,-0.095701724290848,-0.10803651064634],[-0.042420100420713,-0.14367640018463,-0.038101717829704],[-0.102154918015,-0.064950317144394,-0.064597249031067]],[[0.13666522502899,-0.00023309864627663,-0.040477223694324],[0.018763130530715,0.09837743639946,-0.044989425688982],[0.075712710618973,-0.0040086070075631,-0.19032402336597]],[[0.046213835477829,0.099299110472202,-0.12791894376278],[-0.027089443057775,0.061327040195465,0.1274266242981],[-0.034354582428932,-0.00053200090769678,-0.040531244128942]]],[[[0.035613033920527,-0.023122871294618,0.048701453953981],[-0.072691515088081,0.0056124720722437,-0.014241732656956],[0.097020104527473,-0.005097390152514,0.049891337752342]],[[-0.082468703389168,0.016093265265226,0.020258828997612],[0.03790170699358,-0.034095231443644,0.011075967922807],[-0.084109291434288,-0.00039690497214906,-0.038709469139576]],[[-0.042877566069365,0.0041853948496282,0.027912452816963],[-0.015813980251551,-0.037381794303656,0.004396291449666],[0.027404746040702,-0.021137587726116,0.035364378243685]],[[0.085094600915909,0.036232810467482,0.047667868435383],[0.062047488987446,0.055921971797943,0.060853250324726],[-0.045860003679991,0.046249803155661,-0.1289931088686]],[[-0.02967020496726,0.081528790295124,-0.053637932986021],[0.027843989431858,-0.009133031591773,0.087276257574558],[0.052606895565987,0.039814498275518,-0.019458433613181]],[[-0.0053203515708447,0.055091299116611,0.069142758846283],[0.047517396509647,-0.062371600419283,0.05702681094408],[0.075367145240307,-0.043321006000042,-0.014041987247765]],[[-0.032506264746189,0.064819365739822,0.0086379973217845],[-0.0037652999162674,-0.070660531520844,0.057209104299545],[-0.0027202540077269,0.0644476339221,-0.024534594267607]],[[-0.0030787147115916,0.021742587909102,-0.039314337074757],[-0.040162362158298,-0.052657973021269,0.069640085101128],[0.074567437171936,0.0048457020893693,0.048676174134016]],[[-0.025304326787591,0.077954463660717,0.067959666252136],[0.069272480905056,-0.043185636401176,0.052997197955847],[0.021334964782,0.037358209490776,-0.061520434916019]],[[-0.0058557698503137,0.023273702710867,-0.008391885086894],[0.022411487996578,0.031639564782381,-0.015319329686463],[0.048603851348162,0.012073470279574,0.023697735741735]],[[0.052096240222454,-0.0092565799131989,-0.045192316174507],[0.010745506733656,0.11885652691126,0.036289755254984],[0.013509314507246,-0.087876014411449,0.060401663184166]],[[0.046559829264879,0.045693390071392,-0.01108040753752],[-0.029097566381097,0.0024173704441637,0.021173626184464],[0.056632567197084,0.036776475608349,-0.015511259436607]],[[0.0737614184618,0.02647615596652,0.030207917094231],[0.042723502963781,-0.004616264719516,-0.018769018352032],[0.018048970028758,0.097184419631958,0.032089326530695]],[[0.041987288743258,0.084301382303238,0.029192298650742],[0.019563993439078,0.010841142386198,-0.059762015938759],[0.005771086551249,0.010864178650081,0.038971271365881]],[[-0.037446480244398,0.063222587108612,-0.028972392901778],[0.014774925075471,-0.081904791295528,0.019580150023103],[-0.056895863264799,0.060598388314247,0.0018325253622606]],[[-0.067404553294182,-0.012093680910766,0.062301486730576],[-0.10724020004272,-0.044873308390379,-0.039710175246],[-0.02306336723268,-0.080423273146152,-0.0041653164662421]],[[0.016215067356825,0.1023680716753,0.003065585391596],[-0.045794643461704,-0.052454113960266,0.066145926713943],[0.021712830290198,-0.016714483499527,0.00930857937783]],[[-0.013221521861851,-6.1239719798323e-05,-0.047863613814116],[0.0062667317688465,-0.014681960456073,0.0013771302765235],[-0.083205424249172,-0.08415399491787,-0.0052587552927434]],[[0.065648667514324,-0.036682274192572,-0.019948350265622],[0.039849765598774,0.0051236967556179,-0.043306060135365],[0.013271254487336,0.026040745899081,-0.036052364856005]],[[-0.016957130283117,0.043391384184361,0.057663436979055],[-0.011348445899785,0.010067345574498,0.047403857111931],[0.022908555343747,0.040169388055801,-0.045584630221128]],[[0.0065194265916944,-0.039630398154259,0.048380501568317],[-0.0053045833483338,-0.0047754375264049,-0.030750323086977],[0.04275880381465,-0.0049010682851076,-0.02257608063519]],[[0.055048111826181,0.079164318740368,0.039343848824501],[0.09618902951479,0.032794117927551,0.087445206940174],[0.028833650052547,0.023038594052196,-0.0384122133255]],[[0.089931927621365,-0.02507203258574,-0.015595895238221],[-0.098050132393837,-0.074962213635445,-0.0033648174721748],[0.05098820105195,0.0020299272146076,0.053240433335304]],[[0.050938535481691,0.018083482980728,0.022501768544316],[-0.054996944963932,0.077534385025501,0.038266517221928],[-0.058640141040087,-0.0027772162575275,0.0019865487702191]],[[0.066902324557304,-0.019698038697243,-0.089295335114002],[0.042108774185181,0.055695883929729,0.039748802781105],[-0.021531194448471,0.02825621329248,0.092683888971806]],[[-0.016001196578145,0.01330235414207,0.065187506377697],[-0.0070493267849088,-0.0019446808146313,0.00092964328359812],[0.015189185738564,-0.0090460851788521,0.1447124928236]],[[-0.021593876183033,0.0097112553194165,0.027962168678641],[0.052526872605085,-0.017047453671694,0.07219797372818],[-0.031537290662527,0.021926851943135,0.070875935256481]],[[0.075397245585918,-0.017857378348708,0.029308466240764],[-0.031852226704359,-0.079442776739597,0.037407994270325],[-0.064757704734802,-0.014474656432867,-0.041904151439667]],[[0.0063386913388968,-0.046510521322489,0.033903200179338],[-0.08333620429039,0.054278392344713,-0.023738540709019],[0.10734181106091,-0.019364878535271,0.045191127806902]],[[-0.027977349236608,0.028437312692404,0.0064207720570266],[0.039030317217112,-0.014775765128434,0.0640609562397],[-0.0041996049694717,-0.1229013800621,-0.053313836455345]],[[-0.01652317494154,0.066195018589497,-0.033404987305403],[-0.044073347002268,-0.029543759301305,0.031603086739779],[0.059162180870771,0.028944818302989,-0.009683933109045]],[[-0.0068204710260034,-0.024607127532363,-0.019880140200257],[-0.04541103169322,0.0071262158453465,0.0512710288167],[0.060284648090601,0.034419771283865,-0.038264058530331]],[[0.02635651640594,0.0073537728749216,0.15214432775974],[-0.028099164366722,0.10318456590176,0.0034986194223166],[0.061873469501734,0.095646925270557,0.034513294696808]],[[-0.022349530830979,0.099405206739902,0.029012056067586],[0.03946303203702,-0.041612844914198,0.01489741448313],[0.11218553781509,-0.070074513554573,0.046779729425907]],[[-0.045861519873142,0.026752717792988,-0.044550888240337],[0.01907117664814,-0.056459121406078,0.027426475659013],[-0.030101601034403,0.027094839140773,0.038227684795856]],[[-0.060645915567875,-0.029115408658981,0.019681591540575],[-0.050147633999586,0.0032689007930458,-0.0069506848230958],[0.063459366559982,-0.018312839791179,0.027976064011455]],[[0.036418724805117,-0.025536829605699,0.03637308254838],[-0.0090068997815251,0.01683896407485,0.055094949901104],[-0.042699035257101,0.065674021840096,-0.053359296172857]],[[0.012022200040519,-0.043632928282022,-0.019303679466248],[0.041959095746279,0.085888110101223,0.015530698932707],[-0.028664095327258,0.021946599707007,0.045382626354694]],[[0.048003882169724,-0.034186955541372,-0.04416437074542],[0.029779400676489,0.004823187366128,-0.035352930426598],[-0.040312059223652,-0.037528742104769,-0.04348436743021]],[[-0.05848940089345,0.10127425938845,0.046981785446405],[-0.0031197092030197,0.003138353349641,-0.00090784073108807],[0.015884326770902,0.21327497065067,0.064172931015491]],[[-0.009719735942781,0.019955532625318,0.030733434483409],[-0.059550050646067,0.011829062364995,0.072129756212234],[0.010577480308712,0.058239605277777,-0.063679493963718]],[[0.057104419916868,0.12111255526543,0.11340176314116],[0.0043201697990298,0.0093134706839919,0.057227708399296],[0.030874093994498,0.024658769369125,0.018453681841493]],[[0.048920296132565,-0.024945141747594,-0.011887243948877],[-0.037586592137814,0.049815788865089,0.022889548912644],[0.082631580531597,-0.10096061229706,0.011231527663767]],[[0.035123556852341,-0.042078454047441,0.090578824281693],[0.10740545392036,-0.027764493599534,-0.022726710885763],[0.0032908082939684,-0.093094676733017,-0.043934442102909]],[[0.068418219685555,-0.02101487852633,0.055567819625139],[0.023639483377337,0.041728042066097,-0.078526131808758],[0.082297377288342,0.027771824970841,0.019097361713648]],[[0.0094430707395077,0.10462287068367,-0.014496000483632],[-0.012182716280222,-0.11035116016865,0.020457843318582],[0.024025542661548,0.055766571313143,0.077192381024361]],[[0.023918719962239,-0.00024190876865759,-0.020248888060451],[0.082539245486259,-0.022308766841888,-0.039598673582077],[-0.041678544133902,0.019683215767145,-0.028147852048278]],[[0.0315250903368,-0.04416623711586,0.0020830046851188],[-0.025239743292332,-0.042966332286596,-0.10370442271233],[-0.00010939784988295,-0.010218225419521,-0.065820604562759]],[[0.05761456489563,-0.028308382257819,-0.077203065156937],[-0.11278495937586,0.018860165029764,-0.029200613498688],[0.0060189999639988,-0.019027499482036,-0.0031852899119258]],[[0.039226870983839,0.032672792673111,0.039937898516655],[-0.082291878759861,0.00091179471928626,0.045336674898863],[-0.032061446458101,-0.023418886587024,0.0027449042536318]],[[-0.01113192923367,0.042048405855894,-0.066264688968658],[0.016642710193992,-0.0021914928220212,-0.026789128780365],[-0.0037484846543521,0.027200376614928,-0.0021213572472334]],[[-0.0003810643684119,0.087333999574184,0.04607642069459],[0.027689605951309,0.03095405548811,-0.015563381835818],[-0.017759365960956,-3.1660605600337e-05,-0.038532432168722]],[[-0.0077795679681003,-0.038705673068762,-0.0075077712535858],[-0.040778696537018,0.085399456322193,-0.0004142377874814],[0.041854217648506,0.010333114303648,-0.0090063475072384]],[[-0.046611595898867,0.041496586054564,0.013792794197798],[0.10029374063015,-0.0077884783968329,0.038950812071562],[0.095760591328144,0.085143432021141,0.038809400051832]],[[0.037034474313259,-0.047098319977522,0.02207419835031],[0.098680876195431,-0.055962163954973,0.023726673796773],[0.044022615998983,0.012944722548127,-0.014590059407055]],[[-0.074350476264954,0.11188738793135,-0.037893272936344],[0.089261397719383,-0.11511597782373,-0.018283825367689],[0.035121358931065,0.03834593296051,0.03899335488677]],[[0.13937699794769,0.0024355142377317,0.074063770473003],[-0.077656425535679,0.074757844209671,-0.018634082749486],[0.12138566374779,-0.072735249996185,0.042924553155899]],[[0.033040974289179,0.02402557618916,-0.013922000303864],[0.036075316369534,0.012983353808522,-0.090982049703598],[-0.0019320182036608,-0.034589670598507,-0.0078401835635304]],[[0.002279601758346,0.055045735090971,0.016289968043566],[0.070383742451668,0.020593116059899,0.081539772450924],[0.074284598231316,0.079827077686787,-0.033151779323816]],[[0.0037125160451978,0.00021557172294706,0.0050710742361844],[-0.075818963348866,0.029265087097883,-3.4160424547736e-05],[0.010804506018758,0.050999131053686,0.027280712500215]],[[0.014494627714157,0.039562355726957,0.063243329524994],[-0.065356276929379,-0.012701756320894,-0.055055677890778],[-0.0065903295762837,0.0010919575579464,0.038756772875786]],[[-0.0069394945167005,-0.11959449201822,-0.0084437066689134],[-0.011679447256029,0.051697108894587,-0.013894378207624],[-0.014369249343872,-0.031058885157108,-0.11312329024076]],[[0.027473019436002,-0.010163356550038,0.007546822540462],[0.016781741753221,-0.030927866697311,0.028554206714034],[-0.018613234162331,-0.0048818592913449,-0.052191592752934]],[[0.076080642640591,0.097046740353107,0.10142651945353],[-0.0052309725433588,-0.027445748448372,-0.016106219962239],[0.03693013265729,0.050963491201401,-0.039181392639875]],[[0.0079493504017591,0.0072815460152924,-0.099677354097366],[-0.030951630324125,-0.056268077343702,0.0014913642080501],[-0.0065475264564157,-0.045668642967939,-0.02152762003243]],[[0.061880741268396,-0.015716126188636,-0.049358531832695],[-0.072765357792377,0.05847480520606,0.088207416236401],[-0.0023424231912941,0.017109809443355,-0.016680167987943]],[[0.032447315752506,0.1248519346118,0.03824657946825],[0.029675932601094,0.016955440863967,-0.051293723285198],[0.031088657677174,-0.02207950502634,-0.020401688292623]],[[0.025055462494493,-0.011052448302507,-0.0084474524483085],[0.14042976498604,-0.0039236028678715,0.04722660779953],[-0.023231552913785,0.059391994029284,-0.018817344680429]],[[-0.075452081859112,0.017325757071376,-0.055187907069921],[0.036402400583029,0.047648146748543,0.086919687688351],[-0.024599255993962,0.089967131614685,-0.051161233335733]],[[-0.017845794558525,0.090032055974007,0.021278506144881],[-0.033953119069338,0.020477037876844,-0.012910312972963],[0.049614191055298,-0.033247407525778,0.035953368991613]],[[-0.030078997835517,0.0031069710385054,0.0077940034680068],[0.07173065841198,0.0245994143188,0.056376274675131],[0.042019087821245,0.059472594410181,0.052536610513926]],[[-0.074307717382908,-0.053840007632971,-0.028364676982164],[0.02775133959949,-0.075484909117222,0.019388243556023],[0.036139860749245,0.04906302690506,-0.058769136667252]],[[0.017488883808255,-0.076449565589428,0.030555445700884],[-0.062394920736551,-0.070238173007965,-0.044178683310747],[0.042103111743927,-0.0077223442494869,0.0017822360387072]],[[-0.0070232744328678,0.019010001793504,0.044854063540697],[0.071084342896938,-0.059750534594059,-0.043953746557236],[1.9369814253878e-05,0.012620512396097,0.037932731211185]],[[0.038317237049341,0.012650939635932,-0.032440476119518],[-0.0075532901100814,-0.010607847012579,-0.023727474734187],[0.074252359569073,0.041938666254282,0.038798853754997]],[[-0.0039429171010852,0.080524802207947,-0.0010381034808233],[0.0039231711998582,0.024919690564275,0.048812001943588],[-0.086428970098495,0.046505179256201,0.06292486935854]],[[0.061144020408392,-0.045102953910828,0.042318534106016],[-0.020671973004937,0.01718083769083,0.022123519331217],[-0.022829053923488,-0.025643769651651,-0.053872659802437]],[[0.094654612243176,0.018661666661501,0.03340021520853],[0.097785256803036,-0.077895417809486,0.014946662820876],[0.041099663823843,-0.0089738480746746,0.045238386839628]],[[0.044014930725098,-0.046735599637032,0.070271722972393],[-0.073323555290699,-0.031767044216394,-0.015654638409615],[-0.07744313031435,-0.016077749431133,-0.0051550227217376]],[[-0.05240947380662,0.0047586150467396,-0.048979755491018],[0.027961069718003,-0.0580641515553,-0.058082971721888],[-0.030191499739885,0.028027242049575,-0.12362036854029]],[[-0.04661025851965,0.060037143528461,-0.052138071507215],[-0.008338994346559,-0.020746394991875,-0.046512544155121],[-0.056779813021421,0.065215639770031,0.0062649711035192]],[[-0.019856600090861,0.054875295609236,0.039792213588953],[0.054240144789219,0.0038557066582143,-0.0044198841787875],[0.026588540524244,0.0075963754206896,0.014322300441563]],[[-0.0012340904213488,-0.0080627948045731,-0.080467894673347],[0.12818920612335,-0.058916825801134,0.06809064000845],[-0.031843867152929,0.086610957980156,-0.094984978437424]],[[-0.032165717333555,0.063568644225597,0.039208468049765],[0.011721165850759,0.024867383763194,0.022454556077719],[-0.018063969910145,0.086246952414513,0.020095886662602]],[[0.078681714832783,-0.049193825572729,0.026188956573606],[-0.016572682186961,0.077454477548599,-0.024988392367959],[-0.024356255307794,0.0098875751718879,-0.012691427022219]],[[0.0068309386260808,-0.014351569116116,-0.061618514358997],[0.019789315760136,-0.0016250832704827,-0.0049753137864172],[0.010197449475527,-0.0012403615983203,-0.041386343538761]],[[0.055996645241976,0.061651043593884,-0.045030977576971],[0.023123929277062,0.011837851256132,0.032466381788254],[0.083207815885544,0.14802365005016,0.016876867040992]],[[-0.070372588932514,-0.057101145386696,-0.037893328815699],[0.0090662306174636,-0.060300037264824,-0.016082497313619],[0.055807147175074,-0.040135078132153,0.042481128126383]],[[0.070748582482338,0.0070695425383747,-0.075493261218071],[0.077380880713463,-0.029643090441823,0.093101806938648],[0.0087099373340607,0.033013842999935,0.002067044377327]],[[-0.014081149362028,0.073370754718781,-0.0035572573542595],[-0.014278002083302,0.066810213029385,0.039417926222086],[-0.055943254381418,0.0095352726057172,0.041316092014313]],[[-0.01856024004519,0.0080387126654387,0.046392690390348],[-0.038556784391403,0.10476500540972,0.069644100964069],[-0.0052422462031245,0.01152385212481,0.027199618518353]],[[0.026899522170424,-0.06577255576849,-0.053735051304102],[-0.06652308255434,0.019188577309251,0.025397282093763],[-0.081539958715439,-0.010636531747878,-0.12662081420422]],[[-0.024068638682365,0.024658497422934,-0.11055735498667],[-0.022080441936851,-0.049235973507166,-0.030235569924116],[0.025951730087399,0.013562806881964,-0.0045021749101579]],[[-0.021695375442505,0.032646380364895,-0.0025379415601492],[0.070410564541817,-0.013411463238299,0.028833448886871],[-0.013670503161848,-0.07722695171833,-0.01332644931972]],[[-0.009309571236372,-0.0569170974195,0.046807527542114],[-0.060628887265921,-0.024483298882842,-0.035146921873093],[0.033101383596659,0.064634792506695,-0.026171240955591]],[[0.082139439880848,0.09033264964819,0.038909528404474],[-0.072420038282871,0.012025772593915,-0.028730507940054],[0.027126345783472,-0.021972842514515,0.013608128763735]],[[-0.015575085766613,-0.0067451451905072,0.056799292564392],[0.014160675927997,0.067236818373203,0.017244122922421],[-0.076329156756401,-0.086276277899742,0.015045456588268]],[[-0.011542078107595,0.051469102501869,0.034490928053856],[0.013499310240149,0.0088717984035611,0.080455772578716],[0.054731145501137,0.057028658688068,0.10216391086578]],[[0.0081192208454013,-0.078807480633259,-0.00032127549638972],[0.0051199672743678,0.021930875256658,0.092455014586449],[-0.011510201729834,0.020552035421133,0.042430706322193]],[[-0.019395297393203,0.01876350864768,-0.049728248268366],[0.066636629402637,0.035180926322937,0.043148640543222],[0.0002296788879903,0.065695896744728,-0.038577061146498]],[[0.0089767994359136,-0.021871941164136,-0.016506228595972],[0.083655141294003,-0.030615635216236,0.020438883453608],[-0.041578765958548,-0.053828321397305,-0.043527815490961]],[[0.057728998363018,0.0083202878013253,-0.070204980671406],[-0.060470562428236,0.035329408943653,0.015060563571751],[0.094876900315285,-0.040021572262049,-0.039954904466867]],[[-0.0021453362423927,0.10533630102873,0.031550344079733],[0.027125898748636,0.034703250974417,0.056558925658464],[0.02682676166296,-0.026579732075334,-0.027304038405418]],[[-0.031289432197809,0.0081560993567109,-0.0020870370790362],[-0.053471498191357,-0.03604057431221,-0.038911584764719],[0.024377664551139,-0.00081791641423479,-0.10936730355024]],[[-0.013786521740258,0.04111372679472,0.054063726216555],[0.096344880759716,0.034746017307043,0.098813004791737],[-0.0049671144224703,0.10843642055988,0.019061684608459]],[[0.040395002812147,0.063120327889919,0.038200572133064],[-0.047628056257963,-0.042501758784056,0.073231995105743],[0.03996903449297,0.087111704051495,0.022338427603245]],[[0.0028030851390213,0.039935167878866,-0.0080307880416512],[-0.018823659047484,0.014401437714696,-0.010158674791455],[0.080697782337666,-0.0062735327519476,0.049879584461451]],[[0.055725306272507,0.0014775688759983,0.079242892563343],[-0.036562509834766,0.068419694900513,-0.030577555298805],[-0.011577571742237,-0.049389388412237,-0.023779813200235]],[[0.037971198558807,-0.0055726440623403,-0.062614627182484],[-0.0043882713653147,-0.031825125217438,-0.016281245276332],[0.044401459395885,0.001898838672787,0.056816253811121]],[[0.050751861184835,0.016662074252963,0.12655673921108],[0.037048786878586,-0.01668736897409,-0.030180351808667],[0.13400226831436,0.071519657969475,-0.011640484444797]],[[0.044389005750418,0.025317708030343,0.0046507325023413],[-0.038826502859592,0.020766032859683,-0.007402419578284],[-0.013892946764827,-0.047824144363403,0.0052574137225747]],[[-0.064737901091576,0.01139407325536,-0.088394597172737],[-0.053853984922171,-0.014680410735309,-0.031194601207972],[-0.07683040201664,0.05574744567275,-0.15076200664043]],[[-0.02781075052917,0.029976401478052,-0.062776707112789],[0.019391477108002,-0.087702855467796,0.02718367613852],[0.017141466960311,0.052304409444332,-0.024560585618019]],[[-0.069891639053822,-0.038429487496614,-0.055108465254307],[0.014971663244069,-0.031008018180728,-0.014212754555047],[0.030087847262621,0.018919894471765,0.045674674212933]],[[-0.037066385149956,-0.0192243270576,-0.063901215791702],[-0.004830616991967,0.017261756584048,0.041756026446819],[0.0047674952074885,-0.0078556770458817,-0.083173722028732]],[[-0.039929699152708,0.081619009375572,-0.036309752613306],[-0.065379038453102,-0.084733508527279,0.0082852896302938],[-0.019724192097783,0.0080079901963472,-0.07016932964325]],[[0.016454096883535,0.07853539288044,0.062446743249893],[-0.02674214169383,0.097409553825855,-0.032486706972122],[0.040734075009823,0.059291668236256,-0.0099370824173093]],[[-0.035771101713181,-0.019973289221525,-0.0034298289101571],[-0.0047860690392554,-0.049710053950548,-0.020637067034841],[0.01504183281213,0.0057238526642323,0.020019261166453]],[[-0.016581231728196,-0.011551503092051,-0.077876701951027],[0.045533020049334,0.092097923159599,0.032223455607891],[-0.043701197952032,0.025561630725861,-0.019524531438947]],[[0.016432832926512,-0.010552993044257,0.058160342276096],[0.071450777351856,0.03669747710228,0.029962612316012],[0.012450920417905,0.00016819997108541,0.042233675718307]],[[-0.088937997817993,0.042258396744728,-0.057943563908339],[0.029686570167542,0.023336129263043,-0.027538016438484],[-0.032724738121033,0.09260543435812,-0.031933106482029]],[[0.00021003777510487,0.022246871143579,0.050946142524481],[0.025482129305601,-0.070957832038403,-0.012282004579902],[-0.042495880275965,0.060510218143463,0.0060760397464037]],[[0.013596905395389,-0.0053281225264072,0.033687550574541],[-0.030563587322831,0.050932630896568,-0.11227179318666],[0.0030917432159185,-0.034462086856365,0.0047316923737526]],[[-0.045228857547045,-0.045766487717628,-0.041680227965117],[0.019222466275096,-0.013738150708377,0.062576949596405],[0.053256776183844,0.05781976506114,-0.023266017436981]],[[0.0002935350057669,0.056225407868624,0.022934813052416],[0.042845241725445,0.050643227994442,-0.014945501461625],[0.055667392909527,0.12978057563305,0.047671161592007]],[[0.002184962388128,-0.020217573270202,0.049373719841242],[-0.020394278690219,-0.0067419563420117,-0.06311547011137],[0.016930753365159,0.059622373431921,0.08713772892952]],[[-0.037351567298174,0.078170634806156,-0.067786552011967],[0.13160280883312,0.021053370088339,0.012377259321511],[0.02028395421803,0.027562035247684,0.04987046122551]],[[-0.058070007711649,0.068150885403156,0.05101165547967],[0.018913850188255,-0.047753192484379,0.016980508342385],[-0.027242494747043,-0.036568455398083,-0.11818427592516]]],[[[0.013324774801731,-0.0063061504624784,0.052045430988073],[0.042288322001696,0.074604906141758,0.063091032207012],[-0.040893346071243,-0.030378084629774,-0.07954028993845]],[[-0.03226313367486,0.0058054095134139,0.027586407959461],[0.066512122750282,0.019683182239532,0.034488063305616],[0.020944407209754,0.068157233297825,-0.037817310541868]],[[0.010458150878549,-0.051206488162279,0.015106399543583],[-0.017866421490908,-0.03877255320549,-0.068974308669567],[-0.061073336750269,-0.056063190102577,0.0049491846002638]],[[-0.1004194766283,0.042760156095028,-0.0094741778448224],[-0.075541228055954,-0.081578239798546,0.019123334437609],[0.0071306996978819,-0.032480295747519,0.042050678282976]],[[-0.0016386226052418,-0.092237234115601,0.034014970064163],[-0.0093210786581039,-0.061367969959974,-0.018397804349661],[0.018507467582822,0.0035543015692383,0.033381972461939]],[[-0.00072060711681843,-0.028295921161771,-0.028305768966675],[0.067980639636517,-0.06726335734129,0.014937731437385],[-0.05417600646615,-0.076413422822952,0.054775103926659]],[[-0.0047282595187426,0.031119352206588,0.01327823381871],[0.023773679509759,0.0049743577837944,0.0049069849774241],[0.015820421278477,0.020262286067009,0.053582709282637]],[[-0.063343144953251,-0.022085359320045,-0.057633295655251],[0.10024831444025,0.044387374073267,-0.021638412028551],[-0.047350324690342,-0.0076116747222841,-0.067371658980846]],[[-0.020721416920424,-0.055119965225458,-0.02637055143714],[-0.018074387684464,-0.02644070237875,0.053767655044794],[-0.0033196178264916,0.032031342387199,-0.103151910007]],[[-0.054968953132629,0.003455420024693,-0.054320510476828],[0.070926398038864,0.037931896746159,0.0016112748999149],[-0.033281397074461,0.0070035802200437,0.055113255977631]],[[0.00056464970111847,-0.014486965723336,0.039146147668362],[-0.057012382894754,0.017446007579565,-0.002445321297273],[-0.03343503549695,0.029088694602251,-0.070713587105274]],[[-0.013570420444012,-0.011352363973856,-0.064345896244049],[-0.0039744698442519,0.020710023120046,0.039087232202291],[-0.036794353276491,-0.096511639654636,-0.016395952552557]],[[-0.037785403430462,-0.012235588394105,0.15154433250427],[0.089529603719711,-0.040072832256556,0.069411665201187],[-0.036740742623806,-0.021836329251528,-0.019759984686971]],[[0.066607117652893,-0.025305552408099,-0.018683083355427],[0.06577717512846,-0.020440336316824,0.01239191647619],[-0.053478755056858,0.013355427421629,0.031955398619175]],[[-0.026105940341949,-0.024767354130745,0.029796045273542],[-0.0082173431292176,-0.030389275401831,0.0034971535205841],[-0.0051690670661628,-0.017687464132905,0.001795676886104]],[[-0.094157561659813,0.045220017433167,0.027716539800167],[0.041833225637674,-0.03982500359416,0.0079406620934606],[-0.0047020185738802,-0.084248557686806,0.062424328178167]],[[-0.056580379605293,0.057969782501459,-0.0059707993641496],[0.014483907260001,-0.054962795227766,0.016102056950331],[-0.058795563876629,0.015827341005206,0.03084728308022]],[[-0.047740083187819,0.10263381153345,-0.043979480862617],[-0.023347122594714,0.027337869629264,-0.0041423356160522],[0.042056277394295,0.090707369148731,-0.056666165590286]],[[-0.032235667109489,0.057433031499386,0.0077359895221889],[0.095351174473763,0.067662559449673,-0.018027069047093],[-0.053374033421278,-0.015931626781821,-0.053740400820971]],[[0.027811681851745,-0.0092285862192512,-0.022431371733546],[-0.086911536753178,0.08351919054985,0.03716741129756],[-0.061742380261421,0.018518818542361,-0.016380140557885]],[[-0.0043116249144077,0.032309532165527,-0.017453426495194],[0.040212664753199,0.043507285416126,0.064093358814716],[0.046450417488813,-0.029964046552777,-0.041598949581385]],[[0.011294912546873,0.015437032096088,0.056668926030397],[0.074355103075504,0.069549582898617,0.061749760061502],[0.046855207532644,-0.036397956311703,-0.018047673627734]],[[0.019657708704472,0.041313286870718,-0.011552951298654],[-0.014887400902808,0.05750784650445,0.033781323581934],[-0.017191756516695,-0.015118103474379,-0.0062157739885151]],[[0.0011693530250341,-0.025465806946158,-0.0034187845885754],[0.013930350542068,-0.068196125328541,-0.049156278371811],[0.12347737699747,-0.043078243732452,-0.056199345737696]],[[-0.04641080647707,-0.03559360280633,-0.042430136352777],[0.002830485580489,-0.029215293005109,-0.0066944430582225],[0.04829740151763,0.036639917641878,-0.074792616069317]],[[-0.01244371663779,0.015914155170321,-0.024165742099285],[-0.063139945268631,0.031793393194675,0.060461550951004],[-0.082195550203323,0.033680640161037,0.038004625588655]],[[0.038677722215652,-0.0037542791105807,-0.0040229125879705],[0.029901023954153,0.065798446536064,0.028880188241601],[-0.0070936065167189,0.0065781818702817,0.028718827292323]],[[0.015936953946948,0.038422618061304,0.071472726762295],[0.043699894100428,-0.048689503222704,-0.032186534255743],[-0.048711780458689,0.058749582618475,0.025650026276708]],[[-0.02347269654274,-0.030633378773928,0.016176050528884],[-0.047344662249088,-0.062422063201666,0.041083462536335],[-0.011284688487649,-0.03565214574337,0.12157521396875]],[[0.029113933444023,0.03312124311924,-0.031443350017071],[-0.013843852095306,-0.023361183702946,-0.085269309580326],[0.062768876552582,-0.074328951537609,0.0052779316902161]],[[-0.0083744889125228,0.074232637882233,0.077523022890091],[-0.022175578400493,0.00043520695180632,-0.019670028239489],[-0.00017464383563492,0.073427967727184,0.0099411746487021]],[[0.012465866282582,0.016418969258666,0.034052807837725],[0.073166109621525,-0.034408573061228,-0.013357227668166],[-0.035980168730021,0.0093610445037484,0.01127681042999]],[[0.006905188318342,-0.032151095569134,0.00040501763578504],[0.0081604048609734,-0.05904433131218,-0.00046313210623339],[0.029972534626722,-0.062009576708078,0.027088690549135]],[[-0.013138690032065,-0.019435703754425,-0.0084575125947595],[-0.018183210864663,-0.058067098259926,0.025610337033868],[0.005856575910002,-0.0080609153956175,0.0026939613744617]],[[-0.052238810807467,-0.012314428575337,0.055530987679958],[0.049652215093374,0.0926453769207,-0.022052707150578],[-0.0034924489445984,0.033010728657246,0.012559531256557]],[[-0.037236999720335,-0.0029611382633448,0.024070840328932],[0.030787020921707,0.00023928555310704,0.013447849079967],[0.15238061547279,0.01896570622921,-0.031964514404535]],[[0.03179282695055,0.022301154211164,0.061628211289644],[-0.0043908548541367,0.070980653166771,0.0088459569960833],[0.029261482879519,-0.041517037898302,0.032354202121496]],[[0.026257410645485,0.03427566960454,0.0018286117119715],[-0.010871675796807,-0.0073782452382147,-0.066001534461975],[0.0042338450439274,-0.034419175237417,0.021421743556857]],[[0.029978582635522,0.010684944689274,-0.021245507523417],[-0.020094495266676,0.071183644235134,0.029556797817349],[0.029351847246289,-0.023594813421369,-0.076108552515507]],[[-0.067798115313053,-0.0074943001382053,-0.035020906478167],[0.0060913353227079,0.024683624505997,0.048656184226274],[-0.084369607269764,0.010722226463258,-0.0004246773023624]],[[-0.073656357824802,0.0078824972733855,0.020475585013628],[0.028414195403457,0.031903181225061,0.050741817802191],[0.036473505198956,-0.027949780225754,-0.015913270413876]],[[0.015720020979643,-0.089441023766994,0.021638389676809],[-0.057506676763296,-0.052958272397518,0.065886087715626],[0.044632121920586,-0.027969988062978,0.0092201018705964]],[[0.037460420280695,-0.047127321362495,0.067322842776775],[-0.037824187427759,0.027551440522075,0.053940620273352],[0.061696756631136,-0.046060353517532,-0.03171930834651]],[[-0.019232818856835,-0.10638987272978,-0.020824244245887],[-0.037932187318802,-0.051876697689295,-0.017591711133718],[-0.026977010071278,-0.075304582715034,-0.055419232696295]],[[-0.025252571329474,-0.042380783706903,0.025748061016202],[-0.045957062393427,0.08959236741066,-0.014908428303897],[-0.0030982887838036,0.064200282096863,-0.057946357876062]],[[-0.039507694542408,-0.027995387092233,-0.010181820951402],[0.0038480663206428,0.0058407257311046,0.02908687479794],[0.0088326120749116,0.053254291415215,0.049064464867115]],[[-0.092470169067383,-0.071230612695217,0.038929287344217],[-0.033111412078142,0.051053915172815,0.0059712375514209],[0.075215846300125,0.01555579341948,-0.0041447295807302]],[[0.026525357738137,0.0080194100737572,-0.046761590987444],[0.03023356385529,-0.02329040132463,-0.052007157355547],[-0.036294527351856,0.024765074253082,0.01855000667274]],[[0.032370775938034,-0.010917915962636,-0.020920816808939],[0.039255477488041,0.031415782868862,-0.028854357078671],[0.026237962767482,0.019997434690595,-0.013196548447013]],[[0.0025721355341375,-0.04649705067277,0.045606475323439],[0.046386681497097,0.0028495995793492,-0.0041803400963545],[-0.098744563758373,-0.033264175057411,-0.020032983273268]],[[0.016470652073622,-0.02338151447475,0.039046823978424],[0.031764972954988,-0.025501577183604,-0.00168044003658],[-0.0033783500548452,0.022378664463758,-0.013583527877927]],[[-0.045641448348761,-0.027147544547915,0.0033938456326723],[0.023362103849649,-0.011222781613469,-0.056690622121096],[-0.0021155069116503,0.031626272946596,0.034654688090086]],[[-0.037156410515308,-0.014996161684394,-0.04941313713789],[0.0021423944272101,-0.019386446103454,0.010183608159423],[-0.042569559067488,0.015879526734352,-0.011755454353988]],[[0.015919329598546,-0.035954609513283,0.032524507492781],[0.025117950513959,-0.057874623686075,0.031921193003654],[0.052810732275248,0.034798044711351,0.029705431312323]],[[0.015373195521533,-0.053226463496685,0.01924947462976],[-0.044468261301517,0.010785659775138,0.05867213010788],[-0.028794026002288,-0.029056904837489,-0.0085398145020008]],[[0.012512275949121,0.059980627149343,-0.0017927397275344],[-0.025679178535938,-0.016602888703346,0.0060079353861511],[0.065466940402985,-0.095213733613491,0.035005539655685]],[[-0.010430403053761,-0.018761424347758,-0.016327049583197],[0.070123963057995,0.043824829161167,0.027591571211815],[-0.0056090778671205,0.035099305212498,-0.045190781354904]],[[0.048616211861372,0.025596410036087,-0.06088400259614],[0.053784396499395,-0.016647275537252,-0.0095942886546254],[-0.078065551817417,0.011865142732859,-0.0027110276278108]],[[-0.054581832140684,-0.021685771644115,-0.036105621606112],[-0.03466185182333,-0.0012554916320369,0.067578434944153],[-0.023612963035703,0.036605957895517,0.073260806500912]],[[0.033827766776085,0.057064455002546,0.052173156291246],[-0.037772104144096,0.038093492388725,0.071699239313602],[-0.072572626173496,-0.033158287405968,-0.00057821610243991]],[[0.040103428065777,-0.014151606708765,-0.022396560758352],[0.004619428422302,-0.017212385311723,0.027918400242925],[0.0054982043802738,-0.012822734192014,0.029213335365057]],[[0.019538408145308,-0.031008893623948,-0.037659782916307],[0.003745716996491,0.062198612838984,-0.0071092573925853],[0.0040557226166129,0.02025899477303,-0.057633828371763]],[[0.047578513622284,0.018488788977265,-0.062011227011681],[-0.082931064069271,-0.013211851008236,0.052985392510891],[-0.013723390176892,0.037179104983807,-0.058095689862967]],[[-0.018364513292909,-0.023346051573753,0.043462079018354],[0.023210098966956,-0.043146401643753,0.0086346631869674],[-0.0088173365220428,0.025502402335405,-0.048810921609402]],[[-0.0035314655397087,-0.07769089192152,0.017122590914369],[0.02521943487227,-0.071258150041103,-0.0068860538303852],[-0.0055018435232341,0.03597754240036,0.061172686517239]],[[0.019208382815123,-0.0073584434576333,-0.053260292857885],[0.041920848190784,0.0041148043237627,0.0020521588157862],[0.011908448301256,-0.0093565871939063,-0.074585109949112]],[[-0.014603233896196,0.052354533225298,0.063495248556137],[-0.0037105376832187,0.0043288860470057,-0.039916150271893],[0.030856087803841,-0.028704598546028,0.10237743705511]],[[0.031434006989002,-0.03733142837882,0.013337855227292],[0.092136539518833,-0.045636426657438,0.0070106661878526],[-0.033169813454151,-0.01069634500891,-0.027035722509027]],[[-0.052615061402321,0.039371345192194,0.040217913687229],[0.040043499320745,0.0036294749006629,0.012108068913221],[0.014229232445359,0.029619598761201,0.040506314486265]],[[0.019247364252806,-0.031938966363668,0.032354697585106],[0.006645361892879,0.022186821326613,0.0097210220992565],[-0.029887270182371,0.10343940556049,0.0017656337004155]],[[0.036184020340443,0.025357406586409,-0.090043120086193],[-0.064672999083996,-0.060223050415516,-0.054425429552794],[-0.00033914431696758,0.0027356839273125,0.0033743022941053]],[[0.013550949282944,0.032453678548336,0.034359633922577],[0.074574448168278,0.0020369105041027,-0.042915321886539],[-0.042481061071157,0.0034466274082661,0.015397785231471]],[[0.0088599994778633,0.019070932641625,-0.0070104668848217],[0.0072142346762121,-0.028657682240009,0.045746773481369],[0.088663190603256,-0.0077279144898057,-0.03835055232048]],[[0.051493231207132,0.044477928429842,-0.007477018982172],[-0.011618511751294,-0.025371076539159,-0.032476782798767],[-0.026091035455465,-0.039552252739668,-0.00091299862833694]],[[-0.020201509818435,-0.0771454423666,-0.068073078989983],[-0.024169323965907,-0.03293389081955,0.0190305467695],[-0.023034416139126,-0.056920487433672,-0.039944868534803]],[[0.038247186690569,0.0098834885284305,-0.054548487067223],[-0.023273756727576,-0.069971352815628,-0.059809148311615],[-0.06468503177166,0.024146990850568,0.028756711632013]],[[0.087317079305649,-0.013331862166524,0.030112294480205],[-0.06143107265234,0.063922382891178,0.069859214127064],[0.040607456117868,0.023648837581277,-0.035439163446426]],[[0.00069375656312332,0.0062383101321757,-0.024461219087243],[-0.0057301679626107,0.014409656636417,0.070709064602852],[-0.078391931951046,-0.027196036651731,0.0053354022093117]],[[0.027931977063417,-0.021219024434686,-0.051075395196676],[-0.040348883718252,-0.11042704433203,-0.0079747019335628],[-0.050083111971617,0.0092899901792407,-0.03432209789753]],[[0.035438273102045,0.031213574111462,0.056903969496489],[0.011837140657008,0.038362015038729,0.038369279354811],[-0.018507055938244,0.016586380079389,-0.00027057266561314]],[[0.067328944802284,-0.082207791507244,-0.039970815181732],[0.012421521358192,-0.056783001869917,-0.034032788127661],[0.039209190756083,-0.014143980108202,0.0091270385310054]],[[-0.043786402791739,0.0063598193228245,0.035000927746296],[-0.013372598215938,0.029994821175933,-0.037045538425446],[0.11441319435835,0.079285226762295,-0.080663599073887]],[[0.066538289189339,0.057937368750572,0.027425719425082],[0.030485784634948,-0.015754083171487,-0.022285433486104],[0.031448863446712,-0.031307026743889,-0.013365968130529]],[[-0.049757536500692,-0.02924232557416,-0.0051330840215087],[0.02766427770257,-0.049782004207373,0.02336085960269],[0.0043144673109055,0.024987882003188,-0.021014677360654]],[[-0.031814858317375,0.024084266275167,0.036073766648769],[-0.027718299999833,-0.021161096170545,-0.0620002374053],[-0.018921088427305,-0.034215670078993,0.024385886266828]],[[0.017962453886867,0.11403489112854,-0.036921285092831],[0.024400107562542,0.019138995558023,-0.028469774872065],[-0.01798146776855,-0.067509017884731,-0.027585864067078]],[[0.05318970233202,-0.0088073341175914,-0.038748178631067],[0.032588128000498,0.022524761036038,-0.043708626180887],[0.0012784758582711,0.026278248056769,0.042345210909843]],[[-0.037428297102451,-0.063841097056866,0.028379261493683],[0.071033343672752,0.014610632322729,-0.05427473410964],[-0.027269786223769,-0.03117429278791,0.048309545964003]],[[-0.031505800783634,-0.034647714346647,0.02751437202096],[0.065363243222237,0.036001570522785,0.037612643092871],[0.038164880126715,0.0021903866436332,0.023465698584914]],[[-0.023920629173517,0.036162223666906,-0.052995637059212],[-0.031992271542549,0.063919462263584,0.11451075971127],[0.061045572161674,-0.059839446097612,-0.11821066588163]],[[-0.049167558550835,0.025330372154713,0.025220330804586],[-0.028257882222533,0.058103818446398,-0.046068053692579],[-0.019366333261132,0.05982518568635,0.0013152771862224]],[[0.012828208506107,0.026316460222006,0.018115440383554],[-0.035649240016937,-0.034081909805536,-0.030435219407082],[0.021694054827094,-0.00063695100834593,-0.01253851223737]],[[-0.074566498398781,-0.029624098911881,0.017903378233314],[-0.0073376046493649,-0.030190911144018,-0.010762259364128],[0.071523331105709,-0.038271237164736,0.069250650703907]],[[0.068411074578762,-0.050326887518167,-0.011772342957556],[-0.055291838943958,-0.056881066411734,0.014128630049527],[0.10075165331364,-0.0042216889560223,-0.024922983720899]],[[-0.053785338997841,-0.024532550945878,0.051949985325336],[0.0040815849788487,-0.045167282223701,0.048692293465137],[-0.069218255579472,0.034977070987225,0.02810606919229]],[[-0.038092575967312,-0.02538531832397,0.013827629387379],[0.055238474160433,0.0018363036215305,-0.030874783173203],[0.0030301255173981,0.029253786429763,-0.01699317060411]],[[-0.056993961334229,0.012790243141353,0.0002952256181743],[-0.011492590419948,-0.0058182668872178,0.080354362726212],[-0.044873580336571,0.050945229828358,0.013434992171824]],[[0.008112289942801,-0.046338673681021,-0.011475156992674],[-0.089215829968452,0.098103143274784,0.0028606045525521],[-0.078579396009445,0.076064795255661,-0.023519003763795]],[[0.022842947393656,0.033461276441813,-0.050142582505941],[0.046235378831625,-0.096265979111195,-0.034455552697182],[-0.037198901176453,0.027643507346511,-0.0017215276602656]],[[0.10989386588335,0.04359282925725,0.071478098630905],[-0.086049899458885,-0.019971396774054,0.0081808278337121],[0.01059634052217,0.026762330904603,0.011454692110419]],[[0.018327824771404,0.00084903091192245,-0.069660343229771],[-0.016471233218908,0.046268567442894,0.014698883518577],[-0.037503205239773,-0.039489135146141,0.047246545553207]],[[-0.023135621100664,-0.026452645659447,-0.0024884112644941],[-0.013929613865912,-0.0063970610499382,-0.0045849024318159],[-0.011126863770187,-0.066612534224987,-0.027141509577632]],[[0.043744273483753,-0.014968059957027,0.0069905649870634],[0.021967021748424,0.037815317511559,0.0085914712399244],[0.0079869367182255,-0.0055053802207112,-0.023874595761299]],[[0.061300560832024,-0.01786732673645,-0.091284550726414],[-0.023174105212092,0.086452081799507,0.039881382137537],[-0.022665098309517,0.035660866647959,0.01882659457624]],[[0.057602144777775,0.0098742246627808,-0.049983441829681],[0.037505615502596,-0.0028534079901874,0.010493171401322],[0.035401068627834,-0.050114277750254,-0.019060634076595]],[[0.0020223811734468,0.034690286964178,0.024164756760001],[0.0033133907709271,0.050519730895758,0.023762635886669],[0.059359319508076,-0.018445435911417,0.047114528715611]],[[-0.001170908100903,0.080073639750481,-0.057604420930147],[0.011687714606524,0.11570219695568,-0.0043656071648002],[-0.024834644049406,-0.036767110228539,-0.00046674790792167]],[[0.014744432643056,-0.028753774240613,-0.025033634155989],[-0.059846695512533,0.046021778136492,-0.082106709480286],[-0.0061101200990379,-0.035491045564413,-0.05352146551013]],[[-0.03306320682168,-0.065374381840229,0.066511549055576],[0.038403399288654,-0.017032479867339,0.018678547814488],[0.038590807467699,0.022685993462801,0.014178116805851]],[[-0.019914714619517,-0.055528454482555,0.011449101381004],[0.035327233374119,-0.019129779189825,-0.03213295340538],[0.10687611252069,-0.00086524919606745,0.023194510489702]],[[0.036524210125208,-0.046216517686844,0.038923915475607],[0.011164306662977,0.067808337509632,0.057057067751884],[0.021980309858918,-0.010200931690633,0.04273022711277]],[[-0.061455871909857,-0.0355603992939,-0.017414813861251],[-0.030001483857632,0.030821433290839,-0.011023741215467],[0.014164056628942,6.3340266933665e-05,-0.0016415767604485]],[[-0.043630119413137,-0.013382214121521,-0.031467832624912],[-0.026148172095418,0.01749000325799,0.044223863631487],[0.030516143888235,0.01192032545805,-0.003781974548474]],[[-0.034431092441082,0.010614296421409,-0.06908030807972],[-0.014473434537649,0.087751045823097,-0.027653787285089],[0.030521804466844,-0.011333188042045,-0.013997533358634]],[[-0.030659483745694,0.004296354483813,0.056383967399597],[0.04732870310545,-0.032960813492537,0.061335470527411],[0.033018741756678,0.030148386955261,-0.013805813156068]],[[0.037694942206144,0.03913963586092,0.034006830304861],[-0.019507208839059,0.038427829742432,0.021552311256528],[0.021614154800773,0.0085364785045385,-0.11105354130268]],[[0.067519523203373,0.022122416645288,0.020762572064996],[-0.058652598410845,-0.021816084161401,0.012656808830798],[0.028250686824322,-0.042352996766567,-0.022826999425888]],[[-0.030361946672201,0.012749866582453,0.0074431570246816],[0.014369999058545,0.036121670156717,-0.02409865707159],[-0.045144911855459,-0.061037089675665,0.019238609820604]],[[-0.0093590952455997,0.0047446927055717,-0.03498463332653],[-0.0045329136773944,-0.10370597243309,-0.004320225212723],[-0.034404251724482,0.01808949932456,-0.037929587066174]],[[0.088192477822304,-0.050545111298561,0.0024630764964968],[-0.091286599636078,-0.0014815544709563,0.030485756695271],[-0.017236331477761,0.0098552890121937,0.040657669305801]],[[-0.026122646406293,-0.010258533991873,0.012673967517912],[-0.01273235771805,-0.092074155807495,-0.028536129742861],[-0.071762159466743,0.067295126616955,0.040339637547731]],[[0.041025642305613,0.080307617783546,0.045104671269655],[-0.03490549698472,0.018624048680067,0.0082647847011685],[0.022061446681619,0.030269766226411,-0.018311513587832]],[[0.069803096354008,0.00010739505523816,-0.018863953649998],[-0.037805061787367,-0.081497691571712,-0.059680424630642],[0.015192768536508,0.051605880260468,-0.013221950270236]],[[-0.031734697520733,7.8141092672013e-05,0.02253669500351],[-0.0060048401355743,0.010787458159029,-0.0025200163945556],[0.082194305956364,-0.058745887130499,0.017933433875442]],[[0.019230140373111,0.070005729794502,0.0096749747171998],[-0.074019573628902,-0.0083170235157013,0.024576233699918],[-0.0015765927964821,-0.012750319205225,-0.0094302063807845]],[[-0.071862138807774,-0.034900356084108,0.031383860856295],[-0.0047226925380528,-0.035556748509407,-0.00631871400401],[0.051734130829573,-0.017008839175105,-0.00087565334979445]],[[-0.050986502319574,0.032024677842855,-0.042360249906778],[0.037521783262491,0.038113087415695,-0.0018151944968849],[0.090075865387917,0.069704219698906,0.032693527638912]],[[0.042912807315588,0.061652686446905,0.051464784890413],[0.035336207598448,-0.026483939960599,0.042125165462494],[-0.039061792194843,-0.041793495416641,-0.05060301721096]]],[[[0.02160937525332,-0.014106481336057,0.019760228693485],[0.0088188964873552,-0.017099309712648,0.018422758206725],[-0.029055008664727,-0.0097386091947556,-0.033492077142]],[[-0.095781654119492,0.017115807160735,-0.033255204558372],[-0.047458980232477,0.1079226732254,0.0059627774171531],[0.028233092278242,-0.027867158874869,0.034009911119938]],[[0.0036593538243324,-0.006020066794008,0.096614137291908],[-0.029914947226644,0.011842000298202,0.047529265284538],[-0.038717340677977,0.014369197189808,0.0016107806004584]],[[-0.039145965129137,-0.017478551715612,0.0060711810365319],[0.071164682507515,-0.067718751728535,0.03032953850925],[0.0026448569260538,0.010015446692705,-0.036397118121386]],[[0.037812702357769,-0.034902021288872,-0.0098227020353079],[0.017303634434938,-0.0038621437270194,0.05090007185936],[0.026578176766634,0.055270910263062,0.066107586026192]],[[-0.039485651999712,0.043444950133562,0.067698188126087],[-0.00083142751827836,-0.03270610049367,-0.0068832603283226],[0.097981758415699,0.049374658614397,-0.073655419051647]],[[0.0054928474128246,-0.00094046350568533,-0.00063688179943711],[0.04898115247488,-0.02353810146451,-0.0017936093499884],[0.011835404671729,-0.017199041321874,0.050702914595604]],[[0.0038386972155422,0.0099904146045446,0.043010234832764],[-0.0025876085273921,0.027857607230544,-0.0030311392620206],[-0.046517685055733,0.043822098523378,0.01444061845541]],[[-0.0025996300391853,0.003458478488028,-0.059221286326647],[0.057538352906704,-0.013999083079398,-0.022750560194254],[0.01906094700098,-0.067459113895893,0.064890339970589]],[[0.015104427933693,-0.042111799120903,0.052497938275337],[-0.057515636086464,-0.023794570937753,0.042247582226992],[-0.034266427159309,-0.0012199083575979,0.044034592807293]],[[-0.031396917998791,0.033999420702457,0.0027066168840975],[-0.055651269853115,0.022070618346334,0.055985346436501],[0.0080754021182656,-0.010276752524078,0.019603006541729]],[[-0.023262903094292,-0.037567768245935,-0.0085457824170589],[-0.036205910146236,0.063972644507885,0.065010830760002],[0.089502304792404,0.094563581049442,-0.04327705129981]],[[0.0024851558264345,0.056832537055016,0.087043829262257],[0.0026957546360791,0.074514329433441,-0.024619419127703],[0.036268260329962,-0.059033073484898,-0.0045499219559133]],[[-0.051586955785751,-0.051431726664305,-0.060440082103014],[0.0030384969431907,-0.04760730266571,0.0054389536380768],[-0.099985793232918,-0.01397473923862,0.0052993386052549]],[[0.043529611080885,0.084112748503685,0.017855774611235],[0.023055462166667,-0.015695318579674,-0.038227248936892],[-0.060397814959288,0.03951571136713,-0.021906450390816]],[[-0.062879577279091,0.039902027696371,-0.019958080723882],[-0.014697482809424,-0.083680957555771,-0.038193043321371],[0.037513058632612,-0.010100524872541,-0.0274394210428]],[[-0.020225005224347,-0.042599752545357,-0.055339887738228],[-0.056962963193655,0.020375460386276,-0.016263078898191],[-0.01091206073761,0.016159944236279,-0.022789346054196]],[[-0.048023570328951,-0.040971674025059,0.0050887824036181],[0.029525481164455,-0.052605226635933,-0.018096331506968],[0.060702662914991,0.064156115055084,0.04082415625453]],[[-0.017107428982854,-0.062831602990627,-0.013743796385825],[0.039026658982038,-0.074986897408962,-0.031414907425642],[-0.0076962695457041,0.030163161456585,-0.024783125147223]],[[-0.080329537391663,0.0049590039998293,-0.0081177847459912],[-0.075807638466358,-0.061760399490595,-0.0024875800590962],[-0.067778401076794,-0.075335562229156,-0.0075643979944289]],[[-0.025910779833794,-0.031599655747414,-0.0094256289303303],[0.028643099591136,0.00611502956599,0.021805098280311],[0.041730508208275,0.024307321757078,-0.040826018899679]],[[0.023998269811273,-0.021863391622901,0.081083260476589],[-0.033262927085161,0.054033622145653,-0.0097312387079],[-0.038448713719845,-0.026972912251949,0.014862766489387]],[[-0.10970631241798,0.010708102025092,0.065213643014431],[0.018493041396141,-0.020261712372303,-0.026114214211702],[0.014935220591724,-0.0034212481696159,0.0011218659346923]],[[0.00015907605120447,-0.023741703480482,-0.070299305021763],[0.022643147036433,0.010054281912744,-0.052056901156902],[-0.05946758762002,-0.0041060443036258,-0.037236589938402]],[[-0.070843413472176,-0.00068161665694788,0.069879330694675],[0.02903987839818,0.034978356212378,-0.021002240478992],[-8.3864215412177e-05,0.011165959760547,-0.030128752812743]],[[-0.046624232083559,-0.045353181660175,-0.027413509786129],[0.16456291079521,0.066497415304184,0.03667014092207],[0.032004747539759,0.023529630154371,0.054736971855164]],[[0.09475927054882,0.043141905218363,-0.0054984828457236],[0.026968471705914,0.00216468796134,0.072215758264065],[0.037233829498291,-0.034703504294157,0.067979790270329]],[[-0.0028740197885782,-0.023570140823722,0.091424815356731],[0.049236584454775,-0.0326843932271,0.012749966233969],[-0.057822611182928,-0.037134505808353,-0.028634713962674]],[[-0.02581400796771,-0.032555148005486,0.00032152849598788],[-0.067842461168766,0.039074491709471,-0.005444164853543],[0.015354061499238,0.0080535039305687,-0.0054436330683529]],[[-0.0192880500108,-0.0067755323834717,0.026309307664633],[-0.10172664374113,-0.013908291235566,-0.019202437251806],[0.034143544733524,0.033945340663195,0.04902695119381]],[[-0.067035771906376,0.082040749490261,-0.048992715775967],[-0.029656678438187,-0.029238592833281,-0.013896069489419],[0.052969574928284,0.012943234294653,0.044678028672934]],[[-0.072374373674393,-0.0053501813672483,0.023788245394826],[-0.027262710034847,-0.028077123686671,0.041020736098289],[-0.023200089111924,0.01809555105865,-0.053155291825533]],[[0.050269827246666,-0.013969700783491,-0.042745642364025],[0.0076894997619092,-0.074993044137955,0.0014192812377587],[0.061010841280222,-0.0019272783538327,-0.041721414774656]],[[-0.027594115585089,-0.067910581827164,0.094707123935223],[0.039669342339039,0.046806905418634,0.059785202145576],[-0.036682642996311,-0.025492025539279,-0.0043207630515099]],[[-0.0084645990282297,-0.020159669220448,-0.048070792108774],[0.065403647720814,0.0035714735276997,-0.0089701162651181],[0.055524636059999,-0.094398334622383,0.020223472267389]],[[0.0063909338787198,0.053415935486555,0.00086171092698351],[0.054321944713593,0.0067378180101514,-0.01986450329423],[0.045613396912813,0.017930911853909,-0.044809401035309]],[[0.039280235767365,-0.015755793079734,0.035445231944323],[0.049689844250679,-0.036319747567177,-0.0094194887205958],[-0.044498991221189,-0.065147459506989,0.035841170698404]],[[-0.036396227777004,-0.043920420110226,0.026394700631499],[-0.031450711190701,-0.042115397751331,-0.028546635061502],[-0.0033019876573235,-0.015730736777186,0.072955697774887]],[[-0.043257392942905,-0.030753962695599,0.0004374553100206],[0.0054447269067168,-0.024548036977649,0.084906592965126],[-0.017771527171135,0.061855606734753,-0.020150821655989]],[[-0.015800230205059,0.04569324478507,0.035064939409494],[0.025294374674559,-0.026561811566353,-0.037839338183403],[0.017584327608347,-0.0061137899756432,-0.039537340402603]],[[0.007217304315418,-0.00504444912076,0.063573285937309],[0.00072563497815281,0.0003568708198145,-0.062548719346523],[-0.050985969603062,0.046419709920883,-0.046261675655842]],[[0.045330837368965,0.00048907892778516,-0.013528919778764],[-0.019455619156361,-0.029618673026562,0.013132391497493],[-0.014736195094883,-0.05488383024931,-0.019331086426973]],[[0.015631597489119,-0.0025910974945873,0.029915573075414],[-0.03657341748476,0.054698534309864,-0.051805920898914],[-0.056092601269484,-0.011959169991314,-0.036698948591948]],[[0.027689168229699,0.026370376348495,0.013959900476038],[-0.047071691602468,-0.079707816243172,-0.13097850978374],[-0.066752783954144,-0.014832707121968,-0.018182767555118]],[[-0.021794214844704,0.035633709281683,-0.025919239968061],[0.082244649529457,-0.02803966589272,0.016164915636182],[-0.024679420515895,-0.021067012101412,-0.017889631912112]],[[0.0027063991874456,-0.0062040891498327,-0.05024016648531],[0.074790544807911,0.047479216009378,-0.03726327046752],[-0.044812556356192,0.031541433185339,0.0022091681603342]],[[-0.02746220305562,0.00020417531777639,-0.0062574394978583],[-0.031422358006239,-0.02356898970902,0.024292415007949],[-0.021090283989906,-0.01565745472908,0.053439635783434]],[[0.0010926236864179,0.053939908742905,-0.039112698286772],[-0.028136750683188,0.051597911864519,0.039151079952717],[-0.015972459688783,-0.039893623441458,0.0043690078891814]],[[-0.019090889021754,-0.032365847378969,-0.04448751732707],[-0.039330169558525,-0.00084312714170665,-0.024428743869066],[-0.024364303797483,0.04276754334569,-0.031285181641579]],[[-0.069169625639915,0.02796140126884,-0.033108167350292],[-0.030018987134099,0.059987787157297,0.024598695337772],[-0.06952939927578,0.026033306494355,-0.023782599717379]],[[-0.013617748394608,-0.065811067819595,-0.015491287223995],[-0.03963041305542,0.021432330831885,0.022179959341884],[0.029306154698133,0.024627953767776,0.03306519985199]],[[0.018666187301278,0.02804671227932,-0.028962375596166],[-0.066729560494423,0.041261587291956,0.051884397864342],[-0.04720851406455,-0.050440024584532,-0.0080548645928502]],[[0.013509722426534,0.036562032997608,-0.022091366350651],[0.15202915668488,0.0094125233590603,0.0022715663071722],[0.043267387896776,-0.10915426909924,-0.06554064899683]],[[0.073238544166088,0.023319557309151,0.020751316100359],[0.025230662897229,-0.051130276173353,0.044819492846727],[-0.020506698638201,-0.0073997550643981,-0.034676805138588]],[[-0.047655861824751,0.016253309324384,-0.024471241980791],[0.039158776402473,-0.0090754330158234,-0.077200807631016],[-0.0076388153247535,0.01998944953084,-0.06383178383112]],[[-0.0070330970920622,0.029466655105352,0.046787589788437],[0.042514868080616,0.020762166008353,-0.030723622068763],[0.014403312467039,-0.037616260349751,0.013929164037108]],[[-0.018940791487694,0.016895279288292,0.020530560985208],[-0.019190166145563,0.0464923158288,0.022842682898045],[-0.031248688697815,0.036659356206656,-0.010730558075011]],[[0.0086479894816875,-0.0081099281087518,0.017673715949059],[0.022068785503507,-0.052188944071531,0.0040092607960105],[0.0074483593925834,-0.020268812775612,-0.011119638569653]],[[-0.020011972635984,0.019203089177608,-0.022909961640835],[-0.094804294407368,-0.054300557821989,0.012690807692707],[-0.065517544746399,0.02738505974412,0.055653840303421]],[[0.0055439998395741,-0.019550329074264,0.028445022180676],[-0.034286629408598,-0.023553546518087,0.022803083062172],[0.0070628258399665,-0.0051051350310445,-0.033869463950396]],[[0.025841567665339,0.053672805428505,0.066136166453362],[-0.017199786379933,-0.034045729786158,0.024687420576811],[0.03203796222806,0.05525366589427,0.05846119299531]],[[-0.013113529421389,0.015164658427238,0.037081878632307],[0.011663718149066,-0.0023294612765312,0.022027524188161],[-0.038008909672499,-0.020876048132777,0.072276726365089]],[[0.039210833609104,-0.0043292101472616,0.054698910564184],[0.011386564932764,-0.01829082891345,-0.021788129583001],[-0.025801168754697,-0.030477860942483,0.036547251045704]],[[-0.0034014391712844,-0.048100315034389,-0.013978189788759],[-0.091758713126183,-0.026304135099053,0.0061047114431858],[-0.0015591761330143,0.012160429731011,0.030117884278297]],[[-0.038626752793789,0.046914234757423,0.074169993400574],[0.037009879946709,-0.045301277190447,-0.012760985642672],[0.0010183992562816,0.065372221171856,-0.025319125503302]],[[-0.002372627845034,-0.0080786682665348,0.049021780490875],[-0.010016114450991,-0.003474032972008,0.016471467912197],[-0.011015400290489,-0.056606978178024,-0.022950187325478]],[[-0.062693931162357,0.12001936137676,-0.0336624532938],[-0.066366262733936,0.046676523983479,-0.015416758134961],[0.03017876856029,0.009328244253993,-0.036429304629564]],[[-0.011786578223109,-0.0043512540869415,0.025396248325706],[-0.031776588410139,-0.044127203524113,-0.019789488986135],[0.01416581030935,0.12765255570412,0.026730947196484]],[[-0.016762549057603,0.0088426368311048,0.018803445622325],[0.022384490817785,-0.021055934950709,0.023707693442702],[0.020821422338486,-0.0098977461457253,0.01199116744101]],[[-0.045283123850822,-0.013340920209885,-0.091655842959881],[-0.1147595718503,-0.059861313551664,0.007843978703022],[-0.01733979023993,0.010212411172688,-0.0300865303725]],[[0.027256410568953,0.036881297826767,0.065932221710682],[0.027657464146614,-0.019362377002835,0.014490409754217],[0.0056568193249404,-0.070552334189415,-0.027847666293383]],[[0.065357111394405,0.024208763614297,0.034381788223982],[-0.04762839153409,-0.087784625589848,0.064456060528755],[0.050812799483538,-0.105198957026,-0.016276590526104]],[[-0.003428376512602,0.083626143634319,-0.023206571117043],[-0.012015240266919,-0.010067643597722,0.011997811496258],[-0.14814323186874,0.055181562900543,-0.055997863411903]],[[-0.073274351656437,-0.0022327147889882,0.037565469741821],[-0.0018874688539654,-0.0123704187572,0.067702315747738],[0.0095611019060016,-0.020809885114431,0.025746788829565]],[[-0.044879395514727,-0.069147348403931,-0.039935443550348],[0.035252928733826,0.013658742420375,-0.0072954725474119],[0.015379901975393,-0.049605261534452,0.00070480915019289]],[[0.059404939413071,0.050181914120913,-0.026601281017065],[-0.0048524704761803,-0.030274068936706,0.081303760409355],[-0.011420874856412,-0.0096807824447751,0.020974166691303]],[[0.077376946806908,-0.0022955778986216,0.043906986713409],[-0.045585196465254,-0.0068208985030651,0.045326206833124],[-0.064389437437057,0.038506180047989,-0.043518982827663]],[[0.02724052220583,0.091762021183968,0.040925543755293],[0.037490833550692,0.037893246859312,-0.043884091079235],[0.07184936106205,-0.042722467333078,0.020150326192379]],[[-0.0061447732150555,0.0050058080814779,-0.0044375783763826],[0.022512821480632,0.034225407987833,0.024066157639027],[0.062978446483612,0.036631777882576,-0.0079764816910028]],[[-0.01294423174113,0.060774464160204,-0.022052060812712],[-0.014140380546451,-0.0044837738387287,-0.0094227697700262],[0.070137947797775,-0.042176064103842,-0.030436119064689]],[[-0.013527411036193,-0.014804147183895,0.051372233778238],[-0.055811367928982,0.01758386567235,-0.0087141543626785],[-0.023111067712307,0.056198347359896,-0.049295701086521]],[[0.00634781178087,0.0089739738032222,-0.010795818641782],[0.021120626479387,-0.0067383265122771,0.0033486925531179],[-0.037598349153996,0.0024960325099528,-0.010736240074039]],[[0.023882698267698,-0.06356094032526,0.011461100541055],[-0.054147835820913,0.032117944210768,-0.037182748317719],[-0.012862363830209,0.074217312037945,0.013519574888051]],[[0.047528598457575,0.0329026915133,0.047629959881306],[0.015320047736168,-0.065141342580318,-0.095086805522442],[-0.047523133456707,-0.015216374769807,0.038797933608294]],[[-0.054590202867985,0.0084210466593504,0.015286686830223],[-0.0045861015096307,0.12246135622263,-0.01102449465543],[-0.017224386334419,-0.042517818510532,0.020336432382464]],[[-0.0033090233337134,0.0073730279691517,-0.017980352044106],[0.010225040838122,0.019254617393017,0.060772679746151],[0.037269607186317,0.02456090413034,0.017260272055864]],[[-0.040774080902338,0.079408951103687,-0.010753115639091],[-0.0066112433560193,0.099300429224968,-0.048251807689667],[-0.01220987457782,0.02593594416976,0.033342275768518]],[[0.079832807183266,-0.051120340824127,0.079749219119549],[-0.067430563271046,0.033466909080744,0.012731022201478],[-0.011200774461031,0.026733545586467,-0.027130369096994]],[[0.053181082010269,0.025353526696563,-0.056439399719238],[0.016544973477721,-0.083792626857758,-0.022286122664809],[0.024185601621866,-0.034652277827263,-0.071601755917072]],[[0.041323617100716,0.026806129142642,-0.11988534778357],[-0.068552523851395,0.018663810566068,-0.04030817002058],[-0.076390765607357,0.006102233659476,0.015953529626131]],[[0.060209486633539,-0.043699830770493,0.034509118646383],[-0.061611108481884,0.05844385176897,0.037433795630932],[0.0438267365098,-0.00068310153437778,-0.014760891906917]],[[-0.015902115032077,0.001025018747896,0.053654514253139],[0.016044965013862,0.025064710527658,0.076615132391453],[0.013445474207401,0.039886303246021,-0.012671831995249]],[[0.0078679984435439,0.020137798041105,0.013913032598794],[-0.057974215596914,-0.00055924413027242,0.017807746306062],[0.031864441931248,0.0047518629580736,0.018537245690823]],[[-0.0012530662352219,0.0059205684810877,0.010779722593725],[-0.045644260942936,0.0049458644352853,-0.013211774639785],[-0.021906243637204,0.036775007843971,-0.0070159784518182]],[[0.025709670037031,0.059826634824276,-0.027904633432627],[0.010208467021585,0.0086442492902279,0.0046882308088243],[0.083226971328259,0.013890519738197,0.0034001267049462]],[[-0.049113284796476,-0.011746107600629,0.021424429491162],[0.039476975798607,0.03716941550374,0.011681233532727],[0.016160681843758,-0.022092686966062,0.073468036949635]],[[0.026455689221621,-0.045110315084457,0.0073543419130147],[-0.037411075085402,-0.023186502978206,-0.03698531165719],[-0.087186366319656,-0.045304253697395,-0.04061758890748]],[[0.054505344480276,-0.098214499652386,0.024063009768724],[0.035983692854643,-0.019827336072922,0.048924226313829],[-0.072127640247345,-0.054452195763588,0.021907094866037]],[[-0.033552754670382,-0.018804201856256,0.05931618437171],[0.088519394397736,-0.0050796833820641,0.050128169357777],[-0.0093807429075241,0.031441546976566,-0.057091936469078]],[[-0.057673193514347,0.032767556607723,0.011585735715926],[0.026983691379428,-0.028416309505701,0.072099804878235],[0.093397825956345,-0.052632324397564,-0.079020500183105]],[[0.054076060652733,-0.033770658075809,0.010386357083917],[0.010931806638837,-0.070727564394474,-0.0089258104562759],[-0.071909084916115,-0.010664322413504,0.046837836503983]],[[0.026441948488355,0.029158774763346,0.065480135381222],[-0.064203873276711,0.036537602543831,0.060764901340008],[-0.031874272972345,-0.068634495139122,0.0070167216472328]],[[-0.034744910895824,-0.10613822937012,0.044231072068214],[-0.041711930185556,0.0077024614438415,-0.094253987073898],[-0.13057778775692,0.031932398676872,-0.047733135521412]],[[0.04279487580061,0.042228445410728,-0.027121493592858],[-0.0039794738404453,-0.027358651161194,-0.036155514419079],[-0.0030783184338361,0.0045296400785446,-0.011735285632312]],[[0.011922854930162,0.050906665623188,-0.026801194995642],[-0.04403979331255,0.032806858420372,-0.012887093238533],[0.0069063142873347,0.03597667068243,0.012215614318848]],[[0.067032612860203,-0.019078237935901,-0.06812459975481],[-0.0068267779424787,0.0020445799455047,0.03402478992939],[0.02005635201931,0.0063150571659207,0.018650723621249]],[[0.047566369175911,-0.021503802388906,-0.043376602232456],[-0.04235502332449,0.034368928521872,0.016110226511955],[-0.063978306949139,0.018763633444905,-0.016777960583568]],[[0.081007473170757,0.035968724638224,0.01921121776104],[-0.066069483757019,0.017180934548378,-0.0043565374799073],[-0.0043334173969924,0.029535258188844,0.067618295550346]],[[-0.042797960340977,-0.03130741044879,0.015979714691639],[0.068177595734596,0.010594488121569,0.021334566175938],[-0.032339550554752,-0.085372097790241,-0.061077892780304]],[[-0.068355455994606,-0.062852554023266,0.026806924492121],[-0.029492259025574,-0.037031728774309,-0.032794117927551],[-0.0099859517067671,0.053193412721157,-0.044606193900108]],[[0.007051388733089,0.094631731510162,0.031223103404045],[0.041142381727695,0.023567657917738,0.0057710269466043],[0.019263900816441,0.0087127042934299,0.022009000182152]],[[0.026637991890311,0.011817323043942,-0.040859516710043],[0.0081001901999116,-0.021040117368102,-0.034352257847786],[0.010522074997425,-0.0068519781343639,0.12401250004768]],[[-0.047195293009281,0.012845968827605,0.031370636075735],[0.029452273622155,0.056096747517586,-0.026309529319406],[-0.02834016084671,-0.0067531312815845,-0.063508540391922]],[[-0.069602109491825,0.064677409827709,-0.0038824863731861],[-0.00082439638208598,0.02013024315238,-0.024017529562116],[-0.040373045951128,-0.024816391989589,-0.022744912654161]],[[0.038338679820299,-0.046371545642614,0.015940995886922],[-0.054850690066814,-0.074843063950539,0.065893642604351],[-0.040640059858561,0.075698859989643,0.070437617599964]],[[0.032247822731733,-0.022283591330051,-0.051400147378445],[0.030421009287238,0.055338986217976,-0.027489611878991],[0.024478066712618,-0.014133613556623,-0.046370331197977]],[[0.082803763449192,-0.023126073181629,0.014324984513223],[0.026163337752223,-0.041283812373877,-0.0065307938493788],[-0.012760767713189,0.0048211752437055,0.017160972580314]],[[-0.060614418238401,-0.039977546781301,0.034517593681812],[-0.023158499971032,-0.056859623640776,0.027975773438811],[-0.0031209292355925,0.062010459601879,-0.056844640523195]],[[0.0062731862999499,0.043941870331764,-0.10685300827026],[-0.017120582982898,0.024944672361016,0.012494531460106],[-0.00053533108439296,-0.043271120637655,-0.044884450733662]],[[0.00025509827537462,0.005605767481029,-0.036792226135731],[-0.028303045779467,0.016899166628718,0.029273416846991],[0.0045620603486896,0.074328355491161,0.0042483974248171]],[[0.0093438709154725,-0.03046103194356,0.02299134992063],[0.0073445783928037,-0.011821554042399,0.025871027261019],[-0.039589256048203,-0.0026260248851031,-0.0091435210779309]],[[-0.027881637215614,0.04622545465827,0.070354856550694],[0.0072773485444486,-0.033640757203102,0.010944299399853],[0.071160040795803,-0.045175895094872,0.0033802972175181]],[[-0.01593954116106,0.060729127377272,-0.090912863612175],[-0.014241462573409,-0.022789631038904,-0.059665314853191],[0.00735431490466,-0.028748612850904,0.01117941737175]],[[0.0071534523740411,-0.052376605570316,-0.028013575822115],[0.022270383313298,0.063770979642868,0.013983752578497],[-0.047492995858192,-0.050425615161657,0.037689428776503]],[[0.00091640499886125,-0.030064841732383,0.058516066521406],[-0.049357656389475,-0.031501989811659,-0.0029951147735119],[-0.022819926962256,-0.032825205475092,0.051505718380213]],[[0.023262646049261,0.041060693562031,-0.033798474818468],[-0.0043612695299089,0.030896132811904,0.057527106255293],[-0.045538283884525,-0.00042062386637554,0.0055928258225322]],[[-0.0054549970664084,0.0025546194519848,0.0036958286073059],[0.02544249035418,0.064683258533478,0.0078664720058441],[-0.079308018088341,-0.041349925100803,0.01125749759376]],[[-0.031504828482866,-0.030370760709047,0.037223421037197],[-0.016112683340907,0.083961918950081,0.052649743855],[-0.015135762281716,-0.0066363792866468,0.020054433494806]]],[[[0.063231140375137,0.010887255892158,0.020799539983273],[0.013442230410874,0.055849261581898,-0.047945946455002],[0.07951682060957,0.0021164426580071,0.019130304455757]],[[-0.04279275983572,0.054649028927088,-0.019678633660078],[0.0056258207187057,0.086833626031876,0.011410053819418],[0.013208220712841,0.02101475559175,-0.10413687676191]],[[-0.057482950389385,0.087711572647095,0.018347194418311],[0.039996393024921,0.040971547365189,0.022429520264268],[0.055926352739334,0.064610108733177,-0.05869048833847]],[[0.068038150668144,-0.0069224671460688,-0.036152936518192],[0.02636862359941,0.03822048380971,0.031145617365837],[0.052810102701187,0.023239614441991,-0.0036162140313536]],[[-0.069479048252106,0.0065192985348403,-0.0066779810003936],[0.053599420934916,0.048574902117252,0.11607970297337],[0.015583802945912,0.0050087915733457,0.016365209594369]],[[0.075504988431931,0.0091649414971471,0.026248849928379],[0.026775099337101,-0.0066617447882891,0.005870699416846],[0.060511518269777,0.023895114660263,0.053295738995075]],[[0.035379149019718,0.022332703694701,0.06886400282383],[-0.032287865877151,0.019136127084494,-0.0026289995294064],[0.067973755300045,-0.021163770928979,0.027186911553144]],[[0.08522405475378,-0.026805916801095,0.040375210344791],[0.019562896341085,-0.0095325289294124,0.049753587692976],[0.081334702670574,0.040721293538809,0.058681406080723]],[[0.081958875060081,0.049531560391188,0.018300229683518],[0.045561507344246,-0.019302243366838,0.043457787483931],[0.077598862349987,-0.0084389457479119,-0.037327583879232]],[[0.079749390482903,0.045549225062132,0.077657982707024],[-0.021830836310983,0.018156880512834,0.070124208927155],[-0.02349229902029,-0.055793803185225,0.076322078704834]],[[-0.044233445078135,0.055619116872549,-0.032464563846588],[-0.012866207398474,-0.1224040389061,0.059332866221666],[0.049730580300093,0.049855794757605,-0.021747732535005]],[[0.023301986977458,0.0064037404954433,0.039718225598335],[0.053784515708685,0.043452490121126,0.055886004120111],[-0.071142844855785,-0.00017453730106354,0.04685078188777]],[[0.058270998299122,0.079536825418472,0.079825930297375],[-0.032219100743532,0.031186727806926,0.025615658611059],[0.056372366845608,0.050637479871511,0.042571846395731]],[[0.073035463690758,-0.0038663160521537,-0.040592432022095],[0.011127347126603,-0.043123535811901,0.028461009263992],[-0.037306319922209,0.011683967895806,0.0034207594580948]],[[-0.01401022542268,-0.031116243451834,-0.0839664041996],[-0.00064229912823066,0.031114839017391,0.0039791064336896],[-0.026670439168811,-0.097183026373386,0.019557897001505]],[[-0.050642974674702,0.013302330859005,0.0082982247695327],[-0.051834344863892,-0.0031987382099032,0.017202608287334],[-0.030561519786716,-0.0068863243795931,-0.051545683294535]],[[0.054603207856417,-0.0067554102279246,0.04408635944128],[0.078384675085545,0.049040533602238,0.037826649844646],[0.035181656479836,-0.024696873500943,0.0072304145433009]],[[0.00045428314479068,-0.0071749174967408,-0.024116337299347],[0.040227897465229,0.011526945047081,-0.0083000529557467],[0.073255859315395,-0.017904879525304,0.0097948834300041]],[[0.062692746520042,0.026071952655911,-0.022953951731324],[-0.049867060035467,0.048671618103981,0.041725751012564],[-0.0032567344605923,-0.076816610991955,-0.0089508080855012]],[[0.048161190003157,0.059053305536509,0.051207832992077],[0.026606002822518,0.010037872940302,-0.08683206140995],[-0.050643909722567,0.070295907557011,0.019727293401957]],[[-0.023499205708504,-0.058000162243843,-0.0065118679776788],[0.031055938452482,-0.041435051709414,0.031263407319784],[0.076557993888855,-0.0438322275877,0.0003126515657641]],[[0.06513224542141,0.060963019728661,0.05088672414422],[0.049910895526409,0.10676676779985,0.05754616484046],[0.025324661284685,0.018729638308287,0.029738014563918]],[[-0.016479471698403,0.028173254802823,0.058483563363552],[-0.010700883343816,-0.012559643946588,0.010272910818458],[0.045125726610422,-0.01092690974474,0.026591857895255]],[[0.043188370764256,-0.025398908182979,0.054167926311493],[0.0036215817090124,0.10678038746119,0.035113159567118],[0.072289451956749,0.016151903197169,0.053529262542725]],[[0.13734650611877,0.0085714543238282,0.073772564530373],[-0.034919068217278,0.0090876910835505,0.025396998971701],[0.013894944451749,0.058502621948719,0.025116661563516]],[[0.063244938850403,-0.02664883621037,0.036878041923046],[0.081983633339405,0.0010634497739375,0.01364800799638],[0.080012142658234,-0.062139824032784,0.031095761805773]],[[-0.0011882557300851,-0.0033757656347007,0.02046444453299],[0.061934731900692,0.049163229763508,0.00025715923402458],[0.038800578564405,0.032488472759724,-0.0089651960879564]],[[0.054328113794327,0.014775305986404,0.017375733703375],[0.066436484456062,0.043913252651691,0.061855643987656],[0.022845817729831,0.073005087673664,0.084756299853325]],[[-0.065715812146664,-0.01319788955152,-0.044119171798229],[0.054710790514946,-0.058091029524803,0.029760064557195],[0.050975456833839,-0.0085622146725655,-0.022842755541205]],[[-0.0098617793992162,-0.047336544841528,0.0048700524494052],[-0.011760094203055,-0.035275839269161,0.061210103332996],[0.063226170837879,0.072167403995991,0.054762672632933]],[[0.068286083638668,0.039048835635185,-0.03804986923933],[0.089719921350479,0.037044800817966,0.074405625462532],[0.00044259274727665,0.052961502224207,0.037301763892174]],[[0.019139315932989,0.062511302530766,0.091587655246258],[0.011867435649037,0.029167655855417,0.040804147720337],[-0.011711601167917,-0.019377324730158,0.012186290696263]],[[0.017813885584474,0.054289482533932,-0.009850419126451],[-0.0071821552701294,0.053139448165894,0.045865539461374],[0.02288056537509,0.062053870409727,0.031597901135683]],[[0.087790824472904,0.049792136996984,-0.04147931560874],[0.057052936404943,-0.065123207867146,0.017895860597491],[0.041392706334591,-0.038985773921013,0.0098110577091575]],[[0.0093971844762564,-0.0091222999617457,-0.031187012791634],[-0.016468979418278,0.017833000048995,0.015258410945535],[-0.089012801647186,-0.0074441018514335,-0.05472045764327]],[[-0.01893631927669,-0.0027321828529239,-0.02449606359005],[0.051367361098528,-0.0013986944686621,-0.020899204537272],[-0.036653336137533,-0.05697562918067,0.0035909204743803]],[[-0.025805611163378,-0.00035139848478138,-0.010820528492332],[0.033560547977686,0.053045049309731,0.066974021494389],[0.059785690158606,0.054542887955904,-0.076056718826294]],[[-0.032231617718935,0.048335608094931,-0.01831441372633],[0.0071157901547849,0.053872037678957,0.026688721030951],[0.0253796428442,-0.03971578925848,0.016452334821224]],[[0.058323413133621,0.056814964860678,0.010475338436663],[0.11986688524485,-0.013869757764041,0.02390712313354],[-0.0075616110116243,0.0088806860148907,0.060959234833717]],[[0.022865887731314,0.083461992442608,-0.006887917406857],[0.0077586900442839,0.049825686961412,0.0093146460130811],[0.0039126113988459,0.054506752640009,-0.01738272421062]],[[0.0078991055488586,0.04496681317687,-0.027387633919716],[-0.0070955939590931,0.070253409445286,-0.012536068446934],[-0.019147165119648,0.0060466467402875,-0.023757126182318]],[[0.099831692874432,0.053672254085541,0.031679209321737],[0.05559354275465,0.041675794869661,0.079381048679352],[0.12754771113396,0.039642702788115,0.04999989643693]],[[-0.017688177525997,0.054200746119022,0.088566184043884],[-0.00066129403421655,0.077412143349648,0.083385452628136],[0.053237516433001,0.071323730051517,-0.010924389585853]],[[-0.048391841351986,-0.0095919100567698,-0.092311814427376],[-0.0066034751944244,0.09942240267992,-0.00024432913050987],[-0.05011248216033,-0.048384979367256,-0.040964815765619]],[[0.034128475934267,0.07876193523407,0.0059410650283098],[-0.013501116074622,0.11036255955696,0.095791757106781],[0.047013722360134,0.061557650566101,0.047715228050947]],[[0.073379635810852,0.096769750118256,0.0071910540573299],[0.04078246280551,0.04541277885437,0.073556073009968],[-0.0085189072415233,0.042203463613987,-0.03875820338726]],[[0.030212899670005,-0.055865958333015,-0.00037661771057174],[-0.0011061746627092,0.027008695527911,0.006946568377316],[0.10193563252687,0.064108476042747,0.0072325603105128]],[[0.080509178340435,-0.024758864194155,-0.0035353053826839],[-0.02945320494473,0.017926603555679,-0.0051949629560113],[0.01476086769253,-0.053180061280727,-0.032319467514753]],[[-0.0097634885460138,0.0097876638174057,0.080997593700886],[-0.018342368304729,0.046678896993399,0.016231628134847],[-0.0028148628771305,-0.062499046325684,-0.028082385659218]],[[0.016660260036588,0.012798639014363,0.0024466910399497],[0.044115103781223,-0.028080834075809,0.031341828405857],[-0.014591794461012,-0.0082822609692812,-0.011688289232552]],[[-0.013063970021904,0.040174689143896,-0.023111935704947],[0.029832903295755,-0.00049860024591908,0.00083977199392393],[-0.075709544122219,0.0634491071105,-0.013058719225228]],[[-0.046103958040476,0.033468939363956,0.074978440999985],[-0.019439555704594,0.085087560117245,0.041846435517073],[-0.0026186720933765,0.025190606713295,0.0045097251422703]],[[-0.10030241310596,-0.0034585315734148,-0.076566830277443],[-0.064565904438496,0.016868336126208,-0.013313811272383],[-0.093403808772564,-0.014333128929138,-0.094557754695415]],[[0.13539029657841,0.080290824174881,0.053978323936462],[-0.0066324332728982,0.050821926444769,0.077838696539402],[0.0038103647530079,-0.025241920724511,0.024684388190508]],[[0.064665526151657,0.039566792547703,0.012394327670336],[-0.025361735373735,-0.017390351742506,0.006577214691788],[0.022479511797428,-0.01842588186264,-0.033521730452776]],[[0.0356908403337,-0.048165146261454,-0.065107971429825],[0.02027796022594,0.037769950926304,0.0004489986167755],[0.044723335653543,-0.054411355406046,0.045745402574539]],[[0.030847495421767,-0.0082097370177507,-0.053361251950264],[0.010543271899223,0.0665228292346,0.0048072789795697],[0.013995879329741,-0.0084377536550164,0.060576651245356]],[[0.12407478690147,0.10329630225897,0.021448949351907],[0.035664591938257,0.039455037564039,0.017761938273907],[-0.026783289387822,0.037654057145119,0.040747731924057]],[[-0.053761783987284,0.07643635571003,0.0042299614287913],[-0.0046136933378875,0.063907101750374,0.042091406881809],[-0.019487956538796,0.028130004182458,0.015614297240973]],[[0.0019751125946641,0.046875763684511,0.064407415688038],[0.077056340873241,0.020101388916373,0.0071538905613124],[0.061653703451157,-0.021762339398265,0.050760559737682]],[[-0.032097723335028,0.037303000688553,0.023033477365971],[0.069119825959206,0.047498367726803,-0.054809506982565],[0.055809576064348,0.0072145825251937,0.048344407230616]],[[-0.035856924951077,-0.067121483385563,-7.7605109254364e-05],[-0.039255101233721,-1.2161044651293e-05,0.0081362929195166],[0.024610554799438,0.030228847637773,0.0057631065137684]],[[0.035482067614794,0.041694633662701,0.066455639898777],[0.037437919527292,0.035890985280275,-0.011765813454986],[0.0033447125460953,-0.053344920277596,0.064597383141518]],[[0.010683060623705,-0.036314401775599,0.06682825088501],[0.0072817988693714,0.078981205821037,0.065082639455795],[0.018827941268682,0.0029575496446341,0.017074432224035]],[[-0.074443750083447,0.030908854678273,-0.045947138220072],[0.022536067292094,0.036843553185463,0.077944926917553],[-0.069162331521511,0.077588342130184,0.027349963784218]],[[0.011341194622219,0.024039544165134,0.02268373593688],[0.065841369330883,-0.024521308019757,0.035455625504255],[0.015405959449708,0.012626417912543,-0.059780791401863]],[[0.074874244630337,0.051209475845098,0.015403177589178],[-0.0017772007267922,-0.079565137624741,0.055431865155697],[0.013157876208425,-0.013798948377371,0.02223545871675]],[[0.064728803932667,0.085086390376091,0.035571977496147],[0.097943291068077,0.067889496684074,-0.01652429997921],[0.057918567210436,0.044113978743553,0.017267353832722]],[[0.01801354251802,0.095090471208096,-0.036221131682396],[0.046046696603298,0.035187743604183,0.033269535750151],[0.039635110646486,-0.018807604908943,0.017647318542004]],[[0.089384719729424,-0.0053728083148599,0.050809517502785],[0.015209309756756,-0.017467265948653,0.095747500658035],[0.069578289985657,0.020239157602191,-0.011283993721008]],[[0.0011608606437221,0.10283225029707,0.016625385731459],[0.099097207188606,-0.0075873336754739,0.056855943053961],[0.033562194555998,0.023479277268052,0.028693202883005]],[[0.066304579377174,0.0005696946172975,-0.0040738987736404],[0.007065094076097,0.022257367148995,-0.029589621350169],[0.034163277596235,-0.0081073213368654,-0.01134573109448]],[[-0.00036565863410942,0.020296031609178,0.001197557314299],[-0.00075655407272279,-0.051962289959192,-0.023870909586549],[0.037069894373417,-0.062864318490028,0.069845445454121]],[[-0.015781296417117,0.02434722520411,0.023037269711494],[-0.0026996182277799,0.021642131730914,0.0025149611756206],[-0.01835267804563,0.098947063088417,0.027965908870101]],[[0.028465736657381,0.039898537099361,0.042990539222956],[0.050882667303085,0.051481086760759,0.042068313807249],[-0.063209049403667,-0.041120026260614,-0.035813607275486]],[[-0.032722920179367,0.053819999098778,-0.016509780660272],[-0.01609698869288,-0.0063279061578214,0.097961224615574],[0.0077371587976813,0.038161300122738,-0.0089378682896495]],[[-0.014440137892962,-0.024144323542714,0.095583088696003],[0.099863268435001,-0.019690152257681,-0.092423930764198],[0.11194744706154,-0.0055758818052709,0.02366198413074]],[[0.050260044634342,-0.042208388447762,0.039924282580614],[0.053856562823057,0.017121102660894,0.067517898976803],[-0.062622100114822,0.049176789820194,0.017134642228484]],[[-0.00090703729074448,-0.052369147539139,0.0080705881118774],[0.052530977874994,0.0055883955210447,-0.0043115513399243],[-0.098384611308575,0.064468622207642,0.015975534915924]],[[0.047164905816317,0.00074371340451762,0.019034028053284],[-0.063461475074291,0.077020674943924,0.06339068710804],[0.012425573542714,0.052240010350943,0.021344652399421]],[[0.07520567625761,0.018228048458695,-0.00029817485483363],[-0.033665712922812,-0.02024027146399,0.034934416413307],[0.021595863625407,-0.010713971219957,-0.071784853935242]],[[-0.0072364094667137,0.099813677370548,0.020389867946506],[-0.015607371926308,0.022516820579767,0.047272868454456],[0.0013172015314922,0.0072088553570211,0.021384021267295]],[[-0.0033257592003793,0.077547393739223,-0.0044164881110191],[0.018326302990317,-0.030577851459384,0.038593381643295],[0.0122513724491,-0.051324035972357,0.092134453356266]],[[-0.020441699773073,0.067366912961006,0.10364900529385],[0.063551157712936,-0.0029786205850542,-0.019494026899338],[0.039664033800364,0.013629280030727,-0.0092537961900234]],[[0.053830280900002,0.013319045305252,-0.011034955270588],[0.042431250214577,0.0073850122280419,0.011242250911891],[-0.025168182328343,0.083038136363029,0.025742741301656]],[[-0.017741439864039,0.11132326722145,0.052200835198164],[-0.0052480716258287,-0.0091252848505974,0.027901466935873],[0.08174891769886,-0.019625971093774,0.059902258217335]],[[-0.014545663259923,0.059071753174067,0.088172599673271],[0.16380667686462,0.057925850152969,0.044906079769135],[0.071795023977757,0.0013257990358397,-0.0010664848377928]],[[-0.027315698564053,0.058231677860022,0.0040157502517104],[0.017732074484229,0.075596995651722,-0.0093976017087698],[-0.028962107375264,-0.032627012580633,0.039304368197918]],[[0.095242112874985,0.032180741429329,0.036254890263081],[0.031392775475979,0.032895162701607,0.097081109881401],[0.028659000992775,0.065217912197113,0.087520517408848]],[[0.075594797730446,0.049237865954638,-0.086027778685093],[0.017385156825185,0.0060860952362418,-0.015889823436737],[0.053559672087431,-0.010861190035939,0.0015543076442555]],[[0.03256806358695,-0.043482232838869,-0.028721626847982],[0.088322460651398,-0.016555642709136,0.057064544409513],[0.0054741268977523,-0.022663420066237,0.044260565191507]],[[0.027770863845944,0.014495172537863,-0.031324584037066],[-0.030205387622118,0.077745124697685,0.097751595079899],[0.010594267398119,-0.034558527171612,0.0013370031956583]],[[0.038601476699114,0.0097619360312819,-0.055386617779732],[0.0043295929208398,-0.044634804129601,0.068008720874786],[0.045313697308302,-0.032762058079243,-0.072410099208355]],[[0.034003879874945,0.090401709079742,-0.031856972724199],[0.032828215509653,0.020172346383333,0.070401258766651],[0.10524418205023,0.076302602887154,0.031017556786537]],[[-0.023743225261569,0.0019616619683802,0.01267391256988],[-0.024991976097226,0.016643626615405,0.0084417285397649],[-0.045230124145746,0.095321804285049,0.023519787937403]],[[0.077428966760635,0.03312074393034,0.063817277550697],[0.078040540218353,0.056166876107454,0.038007754832506],[-0.0022476105950773,0.067771196365356,0.026716457679868]],[[0.10902390629053,0.054515846073627,-0.033526048064232],[-0.0076530389487743,-0.0016736739780754,0.079497560858727],[0.029120847582817,0.020816177129745,0.051147639751434]],[[0.02319355122745,0.008107372559607,0.082095012068748],[0.003451214870438,0.019774796441197,0.016912275925279],[0.055198207497597,0.036593280732632,0.062604360282421]],[[-0.0070260451175272,-0.092726245522499,0.076582752168179],[-0.018030090257525,-0.024246076121926,0.049047142267227],[-0.018565710633993,-0.035965863615274,0.025022907182574]],[[0.0053963093087077,-0.011788443662226,0.043751835823059],[0.081516392529011,0.019940286874771,0.083764761686325],[-0.018158122897148,0.099385596811771,-0.05750110372901]],[[-0.052100088447332,-0.019571704789996,0.05649197474122],[0.031246468424797,0.032045215368271,0.04194026812911],[-0.035188585519791,0.059141054749489,0.053412824869156]],[[0.046012535691261,0.043408934026957,0.03603183478117],[0.058851350098848,0.0021267128176987,0.081865064799786],[0.10936259478331,0.048039145767689,0.078815646469593]],[[-0.060761723667383,0.0050945426337421,-0.01932961307466],[0.015267206355929,0.016241589561105,0.051496494561434],[0.060443270951509,0.06452688574791,0.045627508312464]],[[0.047661155462265,-0.035204410552979,-0.038992360234261],[0.0028579789213836,-0.0006595118320547,0.041356705129147],[0.043180972337723,-0.054183956235647,0.06317562609911]],[[0.082683704793453,0.015191099606454,-0.020168747752905],[0.033041745424271,0.029772086068988,-0.019798615947366],[-0.013675756752491,0.05114408954978,0.048920080065727]],[[0.055033456534147,-0.004382265266031,-0.015016486868262],[-0.011240668594837,-0.0057642795145512,-0.02243478782475],[-0.013119443319738,0.016024943441153,0.023266280069947]],[[-0.003546497784555,0.024731559678912,0.081898465752602],[0.08109575510025,-0.010918986052275,0.048462729901075],[-0.01536977570504,-0.0035667594056576,0.053204283118248]],[[0.043041545897722,0.025730066001415,-0.0097736902534962],[-0.025748677551746,-7.5541633123066e-05,-0.003267161315307],[0.054255563765764,-0.046186313033104,-0.044709760695696]],[[-0.071542307734489,-0.026542283594608,0.015189726836979],[-0.028378758579493,0.046703442931175,-0.0010664428118616],[0.046102788299322,0.061905108392239,-0.033874601125717]],[[0.0036847766023129,-0.014090192504227,0.010338357649744],[-0.057347174733877,-0.055776067078114,0.00014371429278981],[0.061849068850279,0.051151238381863,0.051817137748003]],[[-0.10142592340708,-0.13237781822681,-0.057709310203791],[-0.12199500948191,-0.17121094465256,-0.1668077558279],[-0.11275894939899,-0.13118426501751,-0.16430781781673]],[[0.00065519101917744,0.031939893960953,0.055713649839163],[-0.00074411608511582,0.027480697259307,-0.10876979678869],[0.04348624125123,0.0029967124573886,0.0056244069710374]],[[0.042126856744289,0.09155148267746,0.040489267557859],[0.018016261979938,0.030022202059627,0.19298560917377],[-0.024247152730823,0.012922400608659,0.017015438526869]],[[-0.037439160048962,0.019598919898272,0.0079424949362874],[-0.017110904678702,-0.03695984557271,0.051562178879976],[-0.041930366307497,-0.024134531617165,-0.0094569623470306]],[[0.019151609390974,0.0010538586648181,-0.05270379036665],[0.043731436133385,-0.038453161716461,0.013763304799795],[-0.021877313032746,0.027291068807244,-0.0027127920184284]],[[-0.036561865359545,0.0073592257685959,-0.0077826860360801],[-0.018510261550546,0.041019063442945,-0.022058224305511],[-0.010274110361934,-0.02135131508112,-0.026441533118486]],[[0.028947537764907,0.074575267732143,-0.041415497660637],[0.057109605520964,-0.027635771781206,-0.039352584630251],[0.057112514972687,0.096672438085079,0.022866932675242]],[[-0.03101159632206,0.06169656291604,-0.026304742321372],[-0.016705511137843,0.026233736425638,-0.063504911959171],[-0.016522025689483,-0.0057745999656618,-0.036547295749187]],[[0.035831186920404,0.071959771215916,0.026608727872372],[0.0021759588271379,0.087386451661587,-0.01005401648581],[-0.037535462528467,0.033268690109253,0.008818568661809]],[[0.042914859950542,0.045491933822632,0.034251850098372],[0.09028947353363,0.027754118666053,0.10639497637749],[0.073227591812611,0.10149168968201,0.038825437426567]],[[-0.035340908914804,0.0022623343393207,-0.012418133206666],[-0.049973614513874,0.059862557798624,-0.033066220581532],[-0.015142074786127,-0.036152794957161,-0.016812050715089]],[[0.074581019580364,0.046557694673538,-0.040717538446188],[-0.034488946199417,-0.0088489633053541,-0.010561036877334],[-0.032896533608437,0.0032412649597973,-0.06227882951498]],[[0.0016128820134327,0.030912883579731,-0.042985636740923],[0.036291006952524,-0.0024595928844064,0.048706840723753],[0.050918869674206,0.050733271986246,0.079331383109093]],[[-0.010756672360003,-0.00082650955300778,-0.0026422538794577],[0.039468310773373,-0.032914988696575,0.039035342633724],[0.018023427575827,-0.028413416817784,-0.044979389756918]],[[0.029621193185449,0.077019408345222,0.041311502456665],[0.08478682488203,0.029540009796619,-0.023946447297931],[0.038275428116322,0.02427583001554,0.027256563305855]],[[0.0064984760247171,0.072742193937302,0.0083539113402367],[0.028035866096616,-0.021684061735868,-0.018626151606441],[0.077547185122967,0.070119492709637,-0.055366203188896]],[[0.053681816905737,0.016551531851292,0.042024228721857],[0.078970596194267,0.0091311298310757,0.010999327525496],[0.040057275444269,0.052574705332518,-0.0064563355408609]],[[-0.0022066989913583,-0.031522914767265,-0.056484248489141],[-0.0087064206600189,-0.031807202845812,0.079861737787724],[0.016226490959525,-0.063838049769402,-0.0021374067291617]]],[[[-0.061306640505791,-0.044966410845518,-0.06587640941143],[0.071204736828804,-0.073853693902493,-0.02975046262145],[0.055042948573828,-0.012044304050505,-0.027008565142751]],[[0.012804265134037,-0.057094186544418,-0.021651117131114],[0.069452457129955,0.073349311947823,0.046279430389404],[-0.17924475669861,0.079019919037819,-0.11084623634815]],[[0.12589858472347,0.041817668825388,-0.18463826179504],[-0.086220450699329,-0.046211872249842,-0.21102611720562],[0.029946928843856,-0.00069031672319397,-0.090151973068714]],[[0.035734504461288,0.054426092654467,0.06602181494236],[-0.037035394459963,0.096350938081741,0.016485603526235],[-0.010820248164237,0.041685700416565,0.075859151780605]],[[0.032780021429062,-0.061143644154072,-0.043544542044401],[0.030112642794847,0.090501718223095,-0.0029023170936853],[0.079685509204865,-0.029510920867324,0.05060313269496]],[[0.097295016050339,-0.10198305547237,-0.088052682578564],[-0.026386469602585,0.066451720893383,-0.080595880746841],[0.050144735723734,0.0019617027137429,0.086831584572792]],[[0.021602317690849,-0.051992934197187,0.049521531909704],[-0.0093765687197447,-0.0030331308953464,-0.047276340425014],[-0.082770578563213,-0.084419772028923,-0.069035306572914]],[[-0.00118873862084,-0.084742210805416,0.065828830003738],[-0.0068748625926673,0.031611461192369,0.082607589662075],[-0.024663381278515,-0.035254810005426,0.092467740178108]],[[-0.11150409281254,-0.047585006803274,-0.048987906426191],[0.01251467783004,-0.067830286920071,0.024747427552938],[-0.062255948781967,0.052003245800734,0.054344143718481]],[[-0.013490694575012,0.13735401630402,0.023340500891209],[0.0022334600798786,0.021008824929595,-0.090926826000214],[0.04938131198287,-0.042676649987698,0.035597778856754]],[[0.023194937035441,-0.094678461551666,-0.0076408674940467],[0.078065976500511,0.024876371026039,-0.076603978872299],[0.015303115360439,0.044570591300726,-0.12879948318005]],[[0.12132551521063,0.038602568209171,-0.0057703531347215],[-0.12494399398565,-0.053653795272112,0.0090677915140986],[0.29987791180611,-0.025503437966108,-0.12794862687588]],[[-0.016905749216676,-0.029417080804706,-0.062318705022335],[0.09785058349371,-0.10243130475283,0.0076466244645417],[-0.023307923227549,-0.029036393389106,-0.047827735543251]],[[-0.077820234000683,-0.059578660875559,-0.093178652226925],[0.14453360438347,0.049835439771414,-0.26581636071205],[0.19299271702766,-0.10577062517405,-0.078692570328712]],[[0.061542574316263,0.014419741928577,0.011414532549679],[-0.011328104883432,0.0046748165041208,-0.019078120589256],[-0.041676722466946,-0.083601348102093,-0.013225459493697]],[[0.031242962926626,0.13250301778316,-0.013832378201187],[-0.088521599769592,0.0046758358366787,-0.038705710321665],[-0.14668133854866,-0.01455135922879,0.0083306794986129]],[[0.030308352783322,-0.0014099989784881,-0.023758443072438],[-0.02650354988873,-0.00042052296339534,0.047946192324162],[0.0085234045982361,0.025030238553882,0.083157546818256]],[[-0.0024049791973084,-0.11487098783255,0.12163586914539],[0.015023052692413,-0.066015481948853,0.0779774710536],[-0.15676525235176,-0.073967106640339,-0.0858254134655]],[[-0.063244327902794,0.026453448459506,-0.1196320950985],[-0.025799170136452,-0.0815424695611,-0.057563226670027],[-0.0044992621988058,0.031800448894501,0.10719063133001]],[[0.14852675795555,0.038634300231934,-0.050222411751747],[-0.039354111999273,-0.022940279915929,0.075109384953976],[-0.038507558405399,0.042258061468601,-0.00014914697385393]],[[0.02940203435719,0.024730589240789,-0.046785406768322],[-0.014078761450946,-0.013936081901193,-0.012514069676399],[0.057082161307335,0.063200734555721,0.031707212328911]],[[0.086698219180107,-0.029579676687717,0.065090969204903],[0.10596260428429,0.048657223582268,0.047723058611155],[0.0058311210013926,-0.048488542437553,0.092236593365669]],[[-0.085785701870918,-0.037373244762421,0.13023681938648],[0.05542029812932,-0.015614136122167,-0.034329131245613],[0.028792886063457,-0.06366840004921,-0.053909990936518]],[[0.023007992655039,-0.030923578888178,-0.046001892536879],[-0.03745448961854,-0.0083880443125963,0.11132423579693],[-0.12063159793615,-0.033853109925985,0.02763869613409]],[[-0.011397470720112,-0.034262642264366,-0.065108582377434],[-0.023762019351125,0.080500833690166,0.0018625430529937],[-0.032823890447617,0.065895013511181,0.017365491017699]],[[0.021519858390093,0.0032416970934719,0.037769336253405],[-0.015710990875959,-0.0087229367345572,0.0095984265208244],[-0.07578856498003,0.015588705427945,0.0094882296398282]],[[0.047709286212921,-0.098272234201431,-0.063935801386833],[0.017298988997936,0.10005185753107,-0.074909009039402],[0.11519545316696,0.044242605566978,-0.11701335012913]],[[-0.029533850029111,-0.0082166651263833,-0.039402466267347],[0.093566961586475,-0.10796415805817,-0.027774399146438],[0.019053999334574,-0.098510131239891,-0.044490057975054]],[[-0.041584920138121,-0.102070979774,-0.14014053344727],[0.067382298409939,0.097090899944305,-0.084481187164783],[0.12306355684996,0.0384541451931,-0.090837195515633]],[[0.0071405777707696,-0.030190842226148,0.017185065895319],[-0.073334231972694,0.13769169151783,-0.066595770418644],[-0.067526139318943,-0.057073339819908,-0.067622564733028]],[[-0.090753197669983,-0.067096255719662,0.065596260130405],[0.12291220575571,0.03679096326232,-0.026383902877569],[-0.12285750359297,0.0025205051060766,0.0052066813223064]],[[-0.14478571712971,-0.097335778176785,-0.060900326818228],[0.051832482218742,-0.035490736365318,-0.097406826913357],[-0.15719386935234,0.0304652210325,0.095132999122143]],[[0.057187516242266,0.15946544706821,-0.027790896594524],[-0.071859665215015,-0.062440197914839,0.047967985272408],[0.00046521879266948,0.02525095269084,-0.14979714155197]],[[-0.077134191989899,-0.023825941607356,-0.023662958294153],[-0.082839637994766,-0.065742321312428,0.052824094891548],[0.047493636608124,-0.016237284988165,0.056976206600666]],[[-0.015318010933697,-0.0020574426744133,-0.018623178824782],[-0.020822171121836,-0.047208026051521,-0.0071826418861747],[0.060762919485569,0.072116680443287,0.13199563324451]],[[-0.020663859322667,0.023977154865861,-0.073891550302505],[0.013001325540245,-0.15125241875648,-0.0077881356701255],[-0.003489441704005,0.02772125788033,-0.063172608613968]],[[0.12224225699902,0.11125342547894,0.07923287153244],[0.043123155832291,-0.028755949810147,0.089904747903347],[0.052722420543432,-0.044628731906414,0.051064677536488]],[[-0.048089973628521,-0.05781077593565,0.0076871425844729],[0.046483281999826,0.0033086086623371,-0.12369641661644],[0.063461892306805,0.040834218263626,0.0097512938082218]],[[-0.082199946045876,0.053244981914759,-0.03216478228569],[-0.031865455210209,0.0081532904878259,-0.094172574579716],[-0.12888027727604,0.093231111764908,0.073881760239601]],[[0.014573190361261,-0.081269957125187,-0.089528158307076],[0.14013680815697,-0.026680020615458,-0.048776779323816],[0.023296600207686,0.20973041653633,0.19344756007195]],[[0.0038186653982848,-0.020747810602188,0.0098525071516633],[-0.052591059356928,-0.073624901473522,0.10294276475906],[-0.055387835949659,-0.0064353873021901,0.064136929810047]],[[0.15806737542152,0.023485591635108,5.6939952628454e-05],[0.016249069944024,-0.013210126198828,-0.064671561121941],[-0.044746823608875,0.066058732569218,0.093372464179993]],[[0.00019552101730369,0.087434507906437,-0.04424636438489],[0.05125555023551,-0.064001649618149,0.011474192142487],[0.03938901796937,0.085530065000057,0.093392349779606]],[[0.027898836880922,0.014340914785862,0.015424760058522],[-0.035151593387127,0.069852247834206,-0.052263490855694],[0.077382035553455,-0.057865358889103,-0.047773089259863]],[[0.1040616184473,0.022935578599572,-0.014779807068408],[0.028260117396712,0.020417639985681,-0.020036363974214],[0.017643380910158,0.058073509484529,0.040811154991388]],[[-0.010656802915037,0.0036763513926417,0.026225164532661],[-0.029324293136597,0.024224167689681,-0.016329890117049],[-0.019629880785942,0.043455474078655,0.054323758929968]],[[0.078299261629581,0.0031860964372754,0.10865830630064],[-0.039326127618551,0.048721794039011,-0.09553025662899],[0.012111583724618,-0.038258869200945,0.0252132024616]],[[-0.011311573907733,0.0019546095281839,-0.085526145994663],[-0.056174974888563,-0.039771981537342,0.0016587920254096],[0.044052522629499,-0.033137775957584,0.0041569331660867]],[[0.031966123729944,-0.0084743341431022,-0.16482980549335],[0.078663818538189,0.048063598573208,-0.026759939268231],[0.024116279557347,-0.049394551664591,-0.085717163980007]],[[-0.056584849953651,-0.0093763545155525,0.01214550063014],[0.15610188245773,0.061681855469942,-0.05039931461215],[-0.1058853790164,0.086728163063526,-0.0092515954747796]],[[0.027055542916059,0.056755550205708,0.086270958185196],[0.080649003386497,0.022453160956502,0.077963203191757],[-0.0024965186603367,-0.15783509612083,-0.079167313873768]],[[-0.0078977411612868,-0.067968957126141,0.066525235772133],[-0.025736311450601,-0.064675956964493,-0.06080836430192],[0.054060868918896,-0.14004020392895,-0.2752434015274]],[[0.016819100826979,0.0425167940557,0.059662070125341],[0.027474289759994,0.034771710634232,-0.015612977556884],[0.054815620183945,0.00070687726838514,0.039925128221512]],[[0.044177703559399,-0.10925096273422,-0.010108176618814],[-0.019571024924517,0.02604965865612,0.079812973737717],[0.062910571694374,0.033247143030167,0.12465570122004]],[[-0.085218735039234,0.016983766108751,-0.11007283627987],[0.050467807799578,-0.013299643062055,0.010408466681838],[-0.11888284981251,-0.046411395072937,0.055201966315508]],[[0.088794119656086,-0.11487993597984,0.064060568809509],[0.016467958688736,0.14645382761955,-0.16842050850391],[0.096453167498112,0.022003786638379,-0.070987939834595]],[[0.030648447573185,0.016444275155663,-0.01829799823463],[-0.026140954345465,0.096391476690769,-0.072035297751427],[0.029954191297293,0.063529819250107,-0.052097983658314]],[[-0.036576416343451,-0.033397138118744,-0.043897163122892],[-0.040154006332159,0.041025042533875,-0.067176707088947],[-0.011959049850702,-0.051164694130421,0.014809562824667]],[[-0.00044729403452948,0.026968756690621,-1.3274413504405e-05],[-0.037780940532684,0.20638583600521,-0.041634306311607],[-0.0036280711647123,-0.043775275349617,-0.076671905815601]],[[0.0011948611354455,-0.083236739039421,0.0010273354128003],[-0.026307061314583,0.084567986428738,0.07476457208395],[-0.010687870904803,-0.0082820076495409,0.060124341398478]],[[-0.038453947752714,-0.035293616354465,-0.12081488966942],[-0.044569794088602,-0.040748808532953,-0.025566695258021],[0.049446940422058,-0.0065580261871219,0.042648751288652]],[[-0.15488334000111,0.0068394159898162,-0.016842311248183],[-0.026393694803119,-0.009898791089654,0.12786802649498],[-0.018915103748441,-0.035502534359694,-0.015326098538935]],[[0.20663940906525,0.054427016526461,0.044275030493736],[-0.09078910946846,-0.15186131000519,0.027364803478122],[-0.025215085595846,0.049082402139902,-0.029017208144069]],[[-0.034189943224192,-0.004366984590888,0.080551698803902],[0.039489924907684,0.040259905159473,0.060134708881378],[0.10413421690464,-0.016504092141986,-0.0073864706791937]],[[-0.030483778566122,-0.073628723621368,0.061746835708618],[-0.049381043761969,-0.079735666513443,-0.092031568288803],[-0.031076705083251,0.10027282685041,-0.12153682112694]],[[0.031639039516449,0.070740535855293,0.032217368483543],[-0.059942163527012,0.028605381026864,0.11839548498392],[0.072251342236996,0.070079579949379,0.03209151700139]],[[0.11762579530478,-0.087853983044624,0.059938225895166],[0.081642962992191,-0.020110992714763,-0.017274651676416],[0.031780373305082,0.019643481820822,0.083118632435799]],[[-0.095056384801865,0.028801238164306,0.0086757028475404],[-0.10115691274405,0.065708607435226,0.21778021752834],[0.041281770914793,-0.059576701372862,-0.03420427441597]],[[0.12986087799072,-0.035239238291979,0.044790253043175],[0.083716109395027,-0.019925640895963,0.012908007949591],[0.020285964012146,-0.0014060819521546,-0.053971458226442]],[[-0.061387706547976,0.10131874680519,0.09414080530405],[-0.010925458744168,0.1472437530756,0.093216881155968],[-0.070569813251495,-0.079751342535019,0.097043238580227]],[[0.037398815155029,-0.1276498734951,0.11306668817997],[0.053909569978714,0.078776106238365,0.0021609116811305],[0.032364748418331,-0.055679522454739,0.0089507484808564]],[[-0.099848717451096,0.03054128959775,0.048727560788393],[-0.11742771416903,-0.10099057853222,-0.0053447778336704],[0.022816164419055,-0.023632749915123,-0.07441870123148]],[[-0.047910276800394,0.023360770195723,-0.12423197925091],[0.10134942084551,-0.21826526522636,0.041096184402704],[-0.091409757733345,-0.11091810464859,-0.1393591016531]],[[-0.16548070311546,-0.0047526373527944,-0.062084004282951],[-0.082763306796551,0.043774239718914,-0.0096920998767018],[-0.0080209458246827,0.026484537869692,0.025856738910079]],[[-0.043175086379051,0.048760522156954,0.035100094974041],[-0.05432004109025,0.016567884013057,-0.074907906353474],[-0.043016728013754,0.021856833249331,0.081834696233273]],[[0.11401096731424,-0.033864859491587,0.0019802686292678],[-0.048596072942019,-0.023631839081645,-0.067689724266529],[-0.026327567175031,0.055234745144844,0.026817901059985]],[[-0.016077795997262,0.060624778270721,0.090050399303436],[0.06930098682642,-0.10994438827038,-0.0059725428000093],[-0.025444038212299,-0.17997817695141,-0.095617651939392]],[[0.030470035970211,-0.043286837637424,0.094263948500156],[0.1154875010252,0.13014775514603,0.040753554552794],[0.0081275422126055,0.071217767894268,0.093985393643379]],[[-0.018739406019449,0.032539587467909,0.087972544133663],[-0.03525123000145,0.051945313811302,-0.068170249462128],[-0.086811453104019,-0.08593887835741,-0.069323472678661]],[[-0.081004574894905,-0.045679483562708,-0.1016546562314],[-0.0091448733583093,-0.032142702490091,0.032753635197878],[-0.087362825870514,-0.093787550926208,-0.18208560347557]],[[-0.11738841235638,-0.083853170275688,-0.036936204880476],[-0.0331528224051,0.013510156422853,0.033311355859041],[0.037715051323175,0.054162457585335,-0.025433661416173]],[[0.025286914780736,0.11361342668533,0.071825757622719],[0.018875889480114,0.023814158514142,0.01785453595221],[-0.068392589688301,-0.046813800930977,-0.010594892315567]],[[0.22278901934624,-0.06989599019289,0.0035763473715633],[0.010551043786108,0.079450905323029,-0.0034677544608712],[0.17105098068714,-0.067581012845039,-0.16282747685909]],[[0.022657418623567,-0.033148091286421,-0.06589213758707],[-0.075213529169559,0.092818520963192,-0.026829292997718],[0.01639224216342,-0.083118185400963,0.017316626384854]],[[0.0093337092548609,-0.10053658485413,-0.072408445179462],[-0.17738871276379,0.16822156310081,0.060587152838707],[0.21739727258682,0.097340792417526,-0.085985921323299]],[[0.18539121747017,0.057414025068283,0.0032444773241878],[-0.077777944505215,-0.026969844475389,0.0047911573201418],[0.041859194636345,-0.003632053732872,0.10061302036047]],[[-0.0036223398055881,-0.051682081073523,0.0085443602874875],[-0.0039894003421068,0.049223449081182,-0.0072291227988899],[0.042219031602144,0.038876432925463,-0.036200389266014]],[[-0.033357627689838,-0.12526281177998,-0.20745067298412],[-0.046526778489351,0.081863753497601,-0.029782023280859],[0.06310249119997,0.075060360133648,-0.056180622428656]],[[0.0040452075190842,0.023327531293035,0.050278279930353],[0.0068049086257815,0.050405856221914,0.083086714148521],[-0.10619436949492,-0.044762823730707,-0.040829066187143]],[[0.10289415717125,-0.043072436004877,0.030953586101532],[0.10733933001757,-0.079620733857155,0.023970510810614],[0.040948495268822,0.0064562340267003,-0.0039616245776415]],[[0.091134138405323,-0.0029780354816467,-0.049769159406424],[0.0040311757475138,-0.096469514071941,-0.0051973015069962],[0.011319546028972,-0.010604587383568,-0.063559465110302]],[[-0.017094733193517,-0.046145290136337,0.099176689982414],[-0.061516206711531,-0.04400086030364,-0.011028125882149],[-0.086143389344215,-0.038177236914635,0.0032596183009446]],[[0.082268208265305,0.029904650524259,-0.027147267013788],[0.01870528422296,-0.10636126995087,-0.024743512272835],[0.058261632919312,0.029729422181845,0.01993721537292]],[[0.0519700050354,-0.12022488564253,-0.068547278642654],[0.010575376451015,0.011390176601708,-0.0098780384287238],[-0.016801100224257,0.11075779050589,0.042472034692764]],[[0.0062641175463796,-0.042808778584003,-0.0054288082756102],[-0.01024920027703,-0.0024177026934922,-0.033431049436331],[-0.047816749662161,-0.13048176467419,-0.020157093182206]],[[-0.037043213844299,0.069097407162189,-0.10629051178694],[-0.020565578714013,0.041201323270798,-0.024844201281667],[0.11829160153866,0.039935879409313,0.014331746846437]],[[0.083219297230244,-0.0001503479143139,-0.048442758619785],[-0.10423594713211,-0.15564219653606,-0.074389331042767],[-0.15978389978409,-0.062512680888176,-0.10682891309261]],[[0.050923027098179,0.069752871990204,0.028627609834075],[0.002352574840188,0.072624176740646,-0.047564897686243],[0.018882540985942,0.024373959749937,0.0007655315566808]],[[-0.012805725447834,-0.10267999768257,-0.079564772546291],[0.01642763055861,-0.046362839639187,-0.10292414575815],[0.029950553551316,-0.038831651210785,-0.10782621055841]],[[-0.033092323690653,0.16683751344681,-0.036230605095625],[-0.00012026708282065,0.0088190045207739,-0.021325539797544],[0.01650458201766,0.037002883851528,0.029482817277312]],[[-0.15430292487144,0.032076083123684,-0.003089876845479],[-0.14530554413795,0.074517488479614,-0.050030946731567],[0.035813070833683,-0.067684262990952,-0.019754091277719]],[[-0.0038191829808056,-0.11658771336079,0.0064021139405668],[0.012619190849364,-0.044055007398129,-0.075011119246483],[0.040277920663357,-0.10354967415333,0.094987377524376]],[[0.016537200659513,-0.011177052743733,-0.043829876929522],[0.074555136263371,0.058270715177059,0.0012545289937407],[0.09396144002676,0.13459829986095,0.015667648985982]],[[-0.0074708731845021,-0.015978641808033,0.050685789436102],[-0.03662134334445,-0.0027336517814547,-0.083581693470478],[-0.084688015282154,-0.046662546694279,0.043652467429638]],[[-0.0042482577264309,0.015043489634991,-0.011632169596851],[-0.034032788127661,0.036655619740486,-0.029597282409668],[-0.020657723769546,-0.12149941921234,-0.058259665966034]],[[0.017744557932019,-0.0375418625772,-0.081614397466183],[0.060563817620277,-0.013104935176671,0.064548335969448],[0.041626624763012,0.045628938823938,0.041092567145824]],[[0.040006969124079,-0.0074960240162909,-0.007340946700424],[0.0294508934021,-0.037217859178782,-0.0048319608904421],[0.051526993513107,0.030093232169747,0.083034619688988]],[[0.088647939264774,0.01460081897676,-0.035621266812086],[0.12587562203407,0.030796505510807,-0.039872944355011],[0.026483844965696,0.029288930818439,-0.023546123877168]],[[0.12765726447105,-0.016693886369467,0.079685926437378],[0.056569904088974,-0.21721622347832,-0.071001298725605],[-0.051445461809635,0.03973426669836,0.16867274045944]],[[-0.01366454642266,0.040504086762667,0.069709718227386],[-0.023929953575134,0.014672219753265,0.0074190669693053],[-0.051128529012203,-0.14604890346527,-0.057584051042795]],[[-0.069622792303562,-0.047843765467405,0.057771474123001],[0.036626689136028,-0.040583919733763,0.03728199377656],[0.027164464816451,-0.0091798845678568,-0.019897008314729]],[[-0.14684773981571,-0.14262799918652,-0.037830289453268],[0.070377930998802,-0.11383982002735,0.10597804933786],[0.02976992353797,0.077665515244007,0.026608346030116]],[[-0.026513608172536,-0.050630804151297,0.24667812883854],[0.0029496666975319,0.0049173105508089,0.058709230273962],[-0.10166224092245,-0.0024535523261875,0.12274198979139]],[[-0.079318657517433,-0.18441320955753,-0.0022869165986776],[0.0097088348120451,-0.016391625627875,0.05524892359972],[0.021742885932326,-0.031015906482935,0.026057647541165]],[[0.078236244618893,0.037330590188503,0.10177376121283],[-0.048359461128712,-0.021454870700836,-0.024514980614185],[-0.19182994961739,0.015418350696564,0.13122846186161]],[[0.078618273139,-0.067980840802193,-0.03731669858098],[0.0011723169591278,0.071907050907612,-0.094076782464981],[-0.070976607501507,-0.1460525393486,-0.072050355374813]],[[-0.023171143606305,0.019408484920859,-0.10754612088203],[0.007910936139524,0.0085062328726053,-0.030724544078112],[0.018435938283801,0.026949256658554,0.069501161575317]],[[0.02652420476079,0.038385469466448,0.068328037858009],[-0.10732565820217,0.11127136647701,-0.14750237762928],[0.056423522531986,0.045701071619987,-0.099715143442154]],[[-0.022623816505075,-0.17340913414955,-0.17829610407352],[-0.058662440627813,0.057595763355494,0.0074841431342065],[-0.013721362687647,-0.07386876642704,-0.11674483865499]],[[0.16370536386967,0.039241157472134,0.088741309940815],[0.035667717456818,0.082598008215427,0.11166150122881],[0.023897865787148,-0.028753833845258,0.061026446521282]],[[-0.096498221158981,0.078841976821423,0.1128516420722],[-0.063072048127651,0.02811455540359,-0.028068238869309],[-0.07229670137167,0.0012279717484489,0.016518216580153]],[[-0.044740311801434,-0.059298500418663,-0.019152771681547],[-0.04533552005887,0.019451849162579,-0.030586445704103],[0.022296044975519,-0.018379727378488,-0.05683159455657]],[[0.017659826204181,-0.10466976463795,0.0041158380918205],[0.02732309140265,0.010906454175711,0.0014245315687731],[0.018783681094646,-0.011440171860158,0.07836127281189]],[[-0.044728089123964,-0.11256117373705,0.032738015055656],[0.04729737341404,-0.020960973575711,-0.019140359014273],[0.018657639622688,0.052179556339979,0.082818396389484]],[[0.022190183401108,-0.04659691080451,0.011684107594192],[-0.070732347667217,-0.068603582680225,0.026962134987116],[0.10594027489424,0.047562647610903,0.13594894111156]],[[-0.025919558480382,-0.0010485698003322,0.070239178836346],[0.020735276862979,0.069843947887421,0.028540255501866],[-0.042246963828802,-0.012876369990408,0.086156405508518]],[[0.031999137252569,0.11119782924652,0.05681287124753],[-0.054731894284487,1.9458442693576e-05,0.0055956966243684],[-0.053598403930664,-0.10086692869663,0.090342544019222]],[[-0.15831470489502,0.034261208027601,-0.10783857852221],[0.11028607189655,0.012388484552503,-0.1183505281806],[-0.17250630259514,0.0065694064833224,0.032297100871801]]],[[[0.05620714277029,0.067745715379715,-0.040445309132338],[-0.011986912228167,0.022246938198805,0.052247289568186],[-0.026252856478095,0.045849099755287,0.06501591950655]],[[-0.035582758486271,-0.001322133350186,-0.030007313936949],[-0.0032231730874628,-0.016044139862061,-0.015578025951982],[-0.11588690429926,-0.041245102882385,0.011254742741585]],[[0.0049106506630778,-0.024921225383878,0.0049464707262814],[-0.092813678085804,0.076739795506001,0.035143252462149],[0.0044948440045118,-0.044587779790163,0.016133476048708]],[[-0.0039103492163122,0.041904978454113,0.042794179171324],[-0.023672889918089,-0.076166719198227,-0.011503257788718],[0.0014777086907998,0.029622813686728,0.054465502500534]],[[-0.10874802619219,-0.0061807809397578,-0.02311010286212],[0.027801569551229,0.019942948594689,-0.089937895536423],[-0.0020371684804559,0.08385156840086,0.066813006997108]],[[0.0088363839313388,-0.044635079801083,0.019707746803761],[0.074477173388004,0.069634608924389,0.0078812688589096],[0.034562058746815,0.04067001491785,0.009575811214745]],[[0.019729200750589,-0.046457752585411,-0.019534388557076],[-0.083339758217335,0.049515031278133,0.0015692870365456],[-0.024327788501978,0.025495918467641,-0.028121357783675]],[[0.038506433367729,0.055627670139074,0.082416109740734],[0.030219586566091,0.026069624349475,0.098392702639103],[0.041898995637894,0.007255288772285,0.027162188664079]],[[-0.015295213088393,0.0036483069416136,0.047727737575769],[-0.042066339403391,0.058278206735849,-0.07661410421133],[0.019646681845188,-0.018612392246723,-0.021168859675527]],[[-0.02643882855773,-0.084634274244308,0.04752204567194],[0.028988461941481,0.00047876214375719,-0.024766085669398],[0.024671617895365,0.0035769243258983,-0.016799559816718]],[[-0.0038810654077679,-0.01635299064219,-0.034955188632011],[0.0019863462075591,-0.055369570851326,0.080738708376884],[0.031710676848888,-0.013861160725355,-0.050326876342297]],[[0.02293330989778,-0.03993409126997,0.039877261966467],[-0.0090612722560763,-0.01378917042166,0.0021443124860525],[-0.019069923087955,0.010079112835228,0.0045525636523962]],[[0.014192886650562,-0.066896714270115,-0.048061106353998],[-0.0075515569187701,0.066951140761375,0.053893577307463],[1.5439691196661e-06,-0.03781545907259,-0.019787730649114]],[[-0.028967898339033,0.0026887319982052,-0.0052733533084393],[-0.022522110491991,-0.063273996114731,0.019027326256037],[0.036977879703045,-0.026098046451807,-0.0041788253001869]],[[0.028125246986747,-0.031541608273983,0.048885315656662],[-0.012140607461333,-0.017804283648729,-0.014608227647841],[-0.1399200707674,0.05302307754755,0.037039708346128]],[[-0.026096079498529,-0.0058858380652964,0.027560273185372],[-0.038410037755966,0.033924452960491,-0.026206420734525],[-0.068780735135078,0.034153766930103,-0.082875870168209]],[[-0.00038848543772474,-0.0011505348375067,0.02387335896492],[-0.002948671579361,0.013121855445206,0.015243152156472],[0.042322229593992,0.038575574755669,0.027578338980675]],[[-0.092314302921295,-0.0049781738780439,-0.07957711815834],[0.021206321194768,-0.052917245775461,-0.011204310692847],[0.00099313771352172,-0.093273289501667,0.0097967525944114]],[[0.094154670834541,-0.060291841626167,-0.016589624807239],[-0.00083446578355506,0.082259967923164,-0.00028694610227831],[0.0056896470487118,-0.0010999487712979,0.098068781197071]],[[-0.04584277048707,-0.077392853796482,-0.047375902533531],[0.014008701778948,0.015536261722445,-0.030834998935461],[0.0048472350463271,-0.017517019063234,0.028992190957069]],[[-0.029907738789916,-0.025639101862907,-0.075106345117092],[-0.05554237216711,-0.069820739328861,0.045001540333033],[-0.11923132836819,0.0026918959338218,-0.072438277304173]],[[-0.015589108690619,0.081421941518784,0.015777627006173],[-0.01870777644217,0.037427973002195,0.083313450217247],[-0.018159918487072,0.04898614063859,0.0025431092362851]],[[-0.0094723710790277,0.02814350835979,0.031881477683783],[-0.022454811260104,-0.01812650077045,0.076468288898468],[0.028834002092481,-0.063902877271175,0.061739936470985]],[[-0.017556140199304,-0.027072770521045,-0.065991275012493],[-0.007061802316457,0.065670236945152,0.022291598841548],[-0.099383592605591,-0.024715015664697,-0.031416300684214]],[[0.021844668313861,0.027311889454722,-0.015407214872539],[-0.00067269935971126,0.042536851018667,0.021829929202795],[-0.0011081119300798,-0.0035700604785234,-0.019016679376364]],[[-0.0015562288463116,-0.0063731740228832,0.018616130575538],[0.04010271653533,0.024035101756454,0.032914433628321],[-0.011618086136878,0.0089427018538117,-0.033663012087345]],[[0.042235184460878,-0.042149994522333,0.013300385326147],[0.105255022645,0.0040533989667892,0.0098681161180139],[-0.03578295186162,0.040392074733973,-0.046693988144398]],[[-0.0012587554519996,0.0028376157861203,-0.032134015113115],[-0.0075189098715782,-0.0030016447417438,0.016841096803546],[-0.053522612899542,0.040237460285425,0.0090776681900024]],[[-0.018193295225501,0.07780259847641,0.010980283841491],[-0.049563203006983,-0.0014304065844044,-0.040093705058098],[0.047653704881668,-0.033341459929943,0.008150439709425]],[[0.065419636666775,0.016875024884939,-0.016645627096295],[0.042281415313482,0.0077144117094576,-0.027088766917586],[0.094216361641884,-0.13799388706684,0.019645996391773]],[[-0.0033150780946016,0.019274029880762,0.072324208915234],[0.050660986453295,0.0018465670291334,-0.015571426600218],[0.084230199456215,0.053748480975628,0.022212509065866]],[[0.060375493019819,0.019754137843847,-0.023816032335162],[-0.0092700654640794,-0.067532017827034,-0.021141190081835],[0.087910398840904,0.09098756313324,-0.047689817845821]],[[0.0096939643844962,0.029071493074298,0.022814551368356],[-0.037855196744204,0.042451415210962,0.051159743219614],[0.073076494038105,0.024530705064535,0.13154584169388]],[[0.030122438445687,-0.025217762216926,0.018433446064591],[-0.035440023988485,0.0058147902600467,0.045871425420046],[0.0029205833561718,-0.025905400514603,0.062891088426113]],[[-0.0096746757626534,0.076731503009796,0.040864549577236],[0.01799738779664,0.024776855483651,0.028861053287983],[-0.01149704772979,-0.094292044639587,-0.01608781516552]],[[-0.04239047318697,0.051292862743139,0.039445038884878],[0.025280708447099,-0.027575714513659,0.019554316997528],[-0.036104302853346,0.013261754997075,-0.03759390860796]],[[0.00097855553030968,0.015421827323735,0.019302504137158],[0.0068964692763984,-0.02459653839469,0.068314746022224],[-0.0061722728423774,0.018199747428298,0.046315684914589]],[[-0.0080255009233952,0.038207076489925,-0.015016160905361],[-0.0018678155029193,0.0032528210431337,-0.057308983057737],[0.02879442460835,0.037568263709545,-0.095205217599869]],[[0.033035051077604,0.035343073308468,-0.040750458836555],[-0.036090966314077,-0.027321171015501,-0.087392345070839],[-0.064961791038513,-0.025403715670109,-0.024039017036557]],[[0.038857873529196,0.061289485543966,0.069541096687317],[0.01761469990015,-0.003507167333737,0.031622119247913],[0.051593173295259,-0.089523762464523,-0.071055665612221]],[[-0.014845407567918,-0.012507570907474,0.00077283679274842],[-0.050267782062292,0.018127094954252,-0.041574452072382],[0.06831406056881,0.066960647702217,0.065046779811382]],[[0.06496799737215,0.047416716814041,0.065944842994213],[0.060967665165663,0.053506277501583,0.049491252750158],[0.044339966028929,0.039632525295019,0.024383384734392]],[[0.0354143679142,-0.0020993978250772,0.0090801762416959],[0.054105062037706,0.0062430752441287,0.056167088449001],[0.061122950166464,0.017243076115847,-0.037852317094803]],[[0.034935969859362,0.0043372861109674,0.015441463328898],[-0.029638830572367,-0.089411236345768,0.012494625523686],[0.042765151709318,0.028587186709046,0.0018627988174558]],[[0.010571194812655,0.0672747194767,0.028045332059264],[0.030706258490682,-0.038012277334929,0.0097435265779495],[-0.0024703009985387,0.037699770182371,0.053350858390331]],[[0.13649922609329,0.048464171588421,-0.011883161962032],[0.11845970898867,-0.03285425901413,-0.038589794188738],[-0.042754851281643,0.037235889583826,-0.031868856400251]],[[-0.0035410523414612,-0.020294420421124,-0.064215116202831],[-0.0074649550952017,-0.016672799363732,-0.042521309107542],[-0.072425819933414,-0.028142411261797,0.047517269849777]],[[-0.041885655373335,-0.043800286948681,-0.00042538015986793],[-0.057437624782324,0.063903741538525,0.020511228591204],[-0.076719976961613,0.019119556993246,0.0030638601165265]],[[-0.030123844742775,-0.068874090909958,0.051856931298971],[0.023292172700167,-0.065262466669083,-0.08786091953516],[0.016406465321779,0.027434287592769,-0.053027920424938]],[[-0.042519092559814,-0.097373798489571,-0.038887269794941],[-0.064862720668316,0.03578070178628,0.016847623512149],[0.0059085739776492,-0.017462521791458,-0.026726746931672]],[[-0.073123745620251,0.029860133305192,0.00200723297894],[0.0039705354720354,-0.041949868202209,0.0029539864044636],[-0.029099674895406,0.0057978616096079,0.0062109264545143]],[[-0.0068527180701494,-0.11785495281219,0.054562717676163],[0.060040738433599,-0.016324523836374,0.015501934103668],[-0.046845801174641,0.03729884698987,0.040153328329325]],[[0.04626577720046,0.030838968232274,0.017000446096063],[-0.024161467328668,-0.04730861634016,-0.038433723151684],[-0.016518913209438,0.0050498116761446,-0.0047985105775297]],[[0.035328440368176,-0.0020498854573816,-0.056327942758799],[-0.018153036013246,0.041906889528036,0.027164427563548],[-0.039203815162182,-0.028255827724934,0.0088650407269597]],[[-0.038919985294342,0.036825690418482,0.0096707949414849],[0.019629618152976,0.010955337435007,0.028827967122197],[0.049182150512934,0.073938138782978,0.052072998136282]],[[0.040015880018473,-0.0019865513313562,0.043622005730867],[-0.058330103754997,0.014842823147774,-0.097441464662552],[0.067207388579845,0.055182222276926,-0.0087872501462698]],[[0.026900751516223,-0.050218895077705,0.050059992820024],[0.021643348038197,0.046151805669069,-0.062288150191307],[-0.070679411292076,0.096425019204617,0.004081211052835]],[[-0.021774919703603,-0.004905070643872,-0.034312352538109],[0.080128036439419,-0.00014022739196662,-0.080441489815712],[0.0016909491969272,-0.060119461268187,-0.09770318120718]],[[0.016355603933334,0.030065963044763,0.095662161707878],[-0.032645363360643,-0.0052068536169827,0.032209545373917],[0.057725574821234,0.057572260499001,-0.0049639344215393]],[[0.060843829065561,0.018720293417573,-0.007541443221271],[-0.038219667971134,-0.047804173082113,-0.011117620393634],[-0.017220743000507,0.0021508119534701,-0.027711989358068]],[[0.02012019790709,-0.0060421046800911,0.015001562424004],[0.015447525307536,0.064052261412144,0.046867582947016],[-0.04428818821907,-0.0149290189147,0.026927322149277]],[[0.031470708549023,-0.033088579773903,0.049399606883526],[0.072176799178123,-0.072472684085369,-0.01244078669697],[-0.03147704154253,-0.0059968368150294,0.021581763401628]],[[0.092259660363197,-0.0078050498850644,0.017091609537601],[0.016541687771678,-0.0028108509723097,-0.0074689495377243],[0.010674648918211,-0.080800242722034,0.068640612065792]],[[0.027127239853144,0.086020216345787,0.024598514661193],[0.066211044788361,0.010002383030951,0.066968269646168],[0.028309335932136,0.01208832859993,0.048038862645626]],[[0.0042311889119446,-0.030475202947855,0.0053363828919828],[-0.0079554812982678,0.065246611833572,-0.027318552136421],[-0.089015953242779,-0.034544423222542,0.024208376184106]],[[0.028786793351173,0.05901649966836,0.016642853617668],[0.064453691244125,0.055700823664665,0.01352926902473],[0.023005468770862,0.038570668548346,-0.02715333737433]],[[0.0203628949821,-0.04197982698679,-0.036770228296518],[0.040381886065006,0.012098968960345,0.019823923707008],[-0.050769247114658,0.057023514062166,-0.056487414985895]],[[0.029085882008076,0.046682976186275,-0.036503225564957],[0.0061137420125306,0.012356470339,0.019259184598923],[-0.0030904284212738,-0.046125058084726,0.083717420697212]],[[0.0071834679692984,0.010270833037794,0.015862964093685],[0.048799481242895,0.04848862439394,0.0092477966099977],[0.021810118108988,0.11166451126337,-0.082933805882931]],[[-0.0033629785757512,0.094042219221592,-0.053840342909098],[0.019372437149286,-0.022893991321325,0.039993181824684],[0.060521673411131,0.16489678621292,0.014767019078135]],[[0.028507817536592,0.034271713346243,-0.0026396054308861],[0.014632425270975,0.028138939291239,0.12635953724384],[0.022167593240738,0.0071361535228789,-0.015848442912102]],[[-0.0056459689512849,0.014215731061995,0.057861432433128],[0.053995959460735,-0.057629998773336,-0.0096002481877804],[0.061256233602762,0.0071193082258105,-0.035756539553404]],[[-0.060007505118847,0.0046653277240694,0.0066795032471418],[0.026234710589051,-0.042924970388412,0.02370416931808],[-0.054773543030024,-0.032416526228189,0.032387852668762]],[[-0.045854203402996,0.031923022121191,-0.025715062394738],[0.013511435128748,0.019743388518691,0.04537895694375],[0.040553484112024,-0.072032228112221,0.062063053250313]],[[0.033420529216528,-0.022308651357889,-0.060773469507694],[0.0062700542621315,-0.012132960371673,0.011682074517012],[0.023176813498139,0.025834212079644,-0.028753306716681]],[[-0.038108717650175,-0.0014676722930744,-0.048079743981361],[0.011276764795184,0.051741674542427,-0.088759534060955],[0.10495875775814,0.010844184085727,-0.078946374356747]],[[-0.027507303282619,0.04070633277297,-0.037139520049095],[-0.053507331758738,0.012129831127822,-0.058564595878124],[-0.03174102678895,-0.016427591443062,0.048593785613775]],[[0.049608688801527,0.052334357053041,0.11086754500866],[0.048001427203417,0.047491248697042,-0.02282452583313],[0.12590681016445,-0.032584741711617,0.014940828084946]],[[0.0030611506663263,-0.0074102547951043,0.074161201715469],[-0.0061669014394283,-0.094285190105438,-0.0034751479979604],[-0.048682752996683,0.047425482422113,0.025094324722886]],[[0.080841571092606,0.017331749200821,0.042359352111816],[0.12076885998249,-0.07499835640192,-0.023199412971735],[0.079985857009888,-0.014447868801653,0.011498358100653]],[[-0.028098443523049,-0.05460487678647,0.024059750139713],[-0.013080287724733,0.05045010894537,0.039953969419003],[0.021377021446824,-0.03333218023181,-0.0064466209150851]],[[-0.035903498530388,-0.055574804544449,-0.079998269677162],[-0.030359670519829,-0.022601762786508,-0.0088447881862521],[-0.02363877184689,0.014782456681132,0.042417541146278]],[[0.037035476416349,0.00028402148745954,-0.0019867185037583],[-0.018477899953723,0.011760702356696,0.060593798756599],[0.069288298487663,-0.083957105875015,0.04297286272049]],[[-0.034476201981306,0.11341600865126,0.037371970713139],[0.018806988373399,0.0098754605278373,-0.050355233252048],[0.0023842791561037,0.02594661898911,-0.064540408551693]],[[0.095506109297276,0.044790502637625,0.0059454212896526],[0.03383707255125,0.027368729934096,0.077053926885128],[0.065863862633705,-0.051410883665085,0.029614310711622]],[[0.034145563840866,0.0031644920818508,-0.0093426229432225],[0.058632645756006,0.018641464412212,-0.032861474901438],[-0.0025276192463934,-0.017204336822033,-0.12422681599855]],[[0.067285634577274,-0.072511114180088,0.016794640570879],[-0.012630666606128,-0.036815460771322,0.039251878857613],[0.021535018458962,0.07088290899992,0.046197909861803]],[[0.056093126535416,0.078100897371769,0.069041915237904],[0.082232251763344,0.059493146836758,0.0037121518980712],[-0.025715785101056,0.058323219418526,0.066970504820347]],[[-0.005063715390861,0.048147678375244,0.019672762602568],[0.025514367967844,0.013216852210462,0.067558147013187],[0.0001530278386781,0.014975651167333,-0.0047106649726629]],[[-0.048570860177279,0.024430472403765,0.020018182694912],[-0.058260671794415,-0.0063857827335596,-0.040355004370213],[0.090391784906387,0.0085614761337638,-0.061398737132549]],[[-0.0026532867923379,-0.011124812066555,0.068360738456249],[-0.0054746363312006,0.047167789191008,0.025672797113657],[0.049931235611439,0.021142553538084,-0.023074077442288]],[[-0.046657741069794,0.013779970817268,0.070345968008041],[0.011886620894074,0.01313587743789,-0.026125678792596],[0.048881985247135,-0.047679238021374,0.011012399569154]],[[0.016281984746456,0.043748907744884,0.0090733263641596],[0.069379277527332,-0.013447485864162,0.013142248615623],[-0.082589969038963,0.0052514309063554,0.056483075022697]],[[0.063511893153191,-0.010027497075498,-0.022103635594249],[-0.020322347059846,-0.021977679803967,-0.040493402630091],[0.015074851922691,0.020306196063757,0.059836335480213]],[[-0.0047288900241256,0.024533409625292,0.012114898301661],[-0.037983886897564,0.019814418628812,0.018859097734094],[0.10123632103205,-0.087396115064621,0.10345997661352]],[[0.039218060672283,0.010371273383498,-0.018721919506788],[-0.0040299268439412,-0.015951419249177,0.076937608420849],[-0.0077138021588326,0.047351516783237,0.039596632122993]],[[-0.023139977827668,0.041651744395494,0.023824337869883],[-0.019233575090766,-0.017122415825725,0.065013013780117],[-0.03695322573185,-0.028883721679449,-0.029376888647676]],[[0.076230719685555,0.044472519308329,0.037587318569422],[0.072424881160259,-0.018861420452595,0.065502569079399],[0.038968406617641,0.077602975070477,0.053525742143393]],[[0.022973276674747,-0.00089582049986348,0.016298232600093],[0.052063331007957,-0.02069042250514,-0.040506675839424],[0.10720263421535,0.0027113689575344,-0.03274067491293]],[[-0.068086080253124,0.036810874938965,-0.0067364554852247],[-0.015359819866717,0.075792640447617,0.065247610211372],[0.0086331674829125,0.045851025730371,-0.027997957542539]],[[-0.031245075166225,-0.12275642901659,-0.013168124482036],[-0.028903394937515,0.015649540349841,-0.017360154539347],[-0.050906531512737,0.075276039540768,0.030813962221146]],[[0.056962713599205,0.029005398973823,0.024581430479884],[0.033971443772316,0.075038492679596,0.01833038777113],[-0.03174177184701,-0.014324758201838,0.00014907777949702]],[[0.043968040496111,0.0010048133553937,0.021476035937667],[0.049040019512177,-0.019881024956703,-0.0059662698768079],[0.053163196891546,0.025383854284883,0.02480137348175]],[[-0.019800636917353,-0.056132726371288,-0.063096411526203],[-0.11022020876408,0.024318896234035,-0.0091016264632344],[-0.093853116035461,0.061658322811127,0.022764589637518]],[[-0.017445573583245,0.0021371194161475,0.061700183898211],[-0.040620297193527,-0.0039589339867234,-0.05340301245451],[0.057034078985453,-0.018373696133494,0.10947224497795]],[[0.025544723495841,-0.054755337536335,-0.033514842391014],[0.071205109357834,0.0063090184703469,0.043954908847809],[-0.044696677476168,0.050678953528404,0.0010338420979679]],[[0.13535389304161,-0.0076733068563044,0.017712393775582],[-0.035507950931787,0.027278957888484,-0.039065327495337],[0.090658515691757,-0.045853722840548,-0.044617045670748]],[[0.033559698611498,0.048290658742189,-0.049952927976847],[-0.010343136265874,0.011478858068585,-0.02168994396925],[-0.095011591911316,-0.032010942697525,0.0058048968203366]],[[0.0067291124723852,-0.059221364557743,0.028846058994532],[-0.0012250660220161,-0.038922961801291,-0.062748432159424],[0.0027049784548581,0.022496473044157,-0.084930814802647]],[[0.057790420949459,-0.029905552044511,-0.042884197086096],[0.013203821144998,0.0042947502806783,0.074708074331284],[0.11152210831642,0.045843370258808,-0.013317117467523]],[[0.063368022441864,-0.033901106566191,0.004181104246527],[0.0025394291151315,0.081287674605846,-0.0083868820220232],[-0.047304432839155,-0.035316053777933,-0.020963219925761]],[[0.014926339499652,-0.072229757905006,-0.012970784679055],[-0.01941192895174,-0.047278586775064,-0.010010745376348],[-0.032916761934757,-0.021165346726775,0.080352015793324]],[[-0.015083823353052,0.011446063406765,-0.023891279473901],[-0.029640544205904,0.042444534599781,-0.027711881324649],[0.053815323859453,-0.018397009000182,-0.1044764816761]],[[0.07655893266201,-0.010968648828566,0.030615413561463],[0.041820637881756,-0.029262913390994,-0.0056053935550153],[0.057826917618513,0.03533698245883,0.016080910339952]],[[-0.051523018628359,0.020689910277724,-0.00094532693037763],[-0.032263293862343,0.015484698116779,-0.045221883803606],[-0.10019683837891,-0.046796075999737,-0.074014127254486]],[[-0.049270950257778,-0.0157963745296,0.018866097554564],[-0.023106863722205,-0.023618588224053,0.0076637105084956],[-0.03983810916543,-0.063331283628941,-0.0043104398064315]],[[0.095895856618881,0.034753147512674,0.04343469440937],[0.012927686795592,-0.038841668516397,0.02973654307425],[0.014599688351154,0.030949965119362,0.071815229952335]],[[-0.017788995057344,-0.056250851601362,0.1031408905983],[-0.025696244090796,0.016008943319321,-0.053672552108765],[-0.018066190183163,-0.0043597696349025,-0.082010477781296]],[[0.040192726999521,-0.10844050347805,0.012276593595743],[-0.07548450678587,-0.050979979336262,0.0077957953326404],[0.018061364069581,-0.013237786479294,0.054855614900589]],[[-0.064686097204685,0.058510567992926,0.011236651800573],[0.034679464995861,0.065215304493904,0.069922916591167],[0.024476576596498,-0.020723747089505,0.036005489528179]],[[0.031078580766916,-0.025644386187196,0.0087509229779243],[-0.067971274256706,-0.066217847168446,-0.084884323179722],[0.0587168186903,-0.047051008790731,0.019032642245293]],[[0.055800341069698,-0.040734633803368,0.025497326627374],[-0.0048970854841173,0.084937259554863,-0.00765939662233],[-0.033221926540136,-0.045285530388355,0.058574866503477]],[[0.0068436563014984,-0.041548725217581,-0.042521610856056],[0.0040883659385145,-0.078716605901718,-0.024686941877007],[-0.01306825876236,-0.10509766638279,0.033665966242552]],[[-0.033648766577244,-0.0077991560101509,0.044634971767664],[0.0095376819372177,0.080906003713608,0.019477812573314],[-0.01732574775815,0.023398438468575,0.0015168088721111]],[[0.038608852773905,-0.022872930392623,0.029126783832908],[-0.038388799875975,0.012810687534511,0.025939466431737],[0.050796143710613,0.024699268862605,0.050343215465546]],[[0.063295103609562,-0.032941214740276,-0.025534929707646],[-0.022187482565641,-0.023015327751637,-0.059737205505371],[0.010813479311764,-0.050323098897934,-0.01097833365202]],[[0.015018649399281,-0.0056575876660645,0.05319831520319],[0.075905717909336,-0.031538110226393,0.0081931576132774],[-0.026582304388285,0.023265738040209,0.037964269518852]],[[-0.015321883372962,0.008756804279983,0.028328852728009],[-0.020431803539395,-0.045140296220779,-0.0031726222950965],[0.053946435451508,-0.0085383281111717,-0.053040381520987]]],[[[0.043775554746389,0.014094026759267,0.0035528615117073],[-0.074001058936119,0.013152084313333,0.044314824044704],[-0.031024860218167,-0.033097084611654,-0.022358166053891]],[[0.038623929023743,-0.030658986419439,0.0061340974643826],[0.0018426498863846,-0.0039163888432086,-0.068751230835915],[-0.0039057289250195,-0.076519444584846,-0.076790682971478]],[[-0.0042318976484239,-0.03483260422945,0.035826977342367],[0.025897081941366,0.043596912175417,-0.017400054261088],[0.011867512017488,-0.094054758548737,-0.0091120405122638]],[[-0.0055560488253832,0.0060844258405268,-0.059355411678553],[0.071520984172821,-0.028746334835887,-0.066245257854462],[0.02438847720623,0.0058281277306378,-0.048038754612207]],[[-0.055385030806065,-0.016093289479613,-0.042935840785503],[-0.030439699068666,-0.0030667204409838,0.047862086445093],[0.011006226763129,0.015945985913277,0.10307908803225]],[[-0.0016994705656543,0.055275544524193,0.027293773368001],[0.011323895305395,0.053667310625315,-0.011856791563332],[-0.054537612944841,-0.0088901510462165,0.080940589308739]],[[0.019383300095797,0.062554925680161,-0.033502887934446],[0.037011753767729,-0.024131109938025,0.0079262191429734],[-0.01731625944376,-0.023787217214704,-0.0040796650573611]],[[0.018998434767127,0.037361703813076,0.0061173029243946],[0.0052795214578509,0.050943735986948,0.0093285329639912],[-0.031098000705242,-0.00035437705810182,0.05444672703743]],[[0.015874374657869,-0.030130933970213,-0.084897361695766],[0.0061098500154912,-0.026513453572989,0.034921064972878],[-0.025708897039294,0.02546701207757,0.03183613345027]],[[0.085729815065861,-0.023835772648454,0.025153936818242],[0.038747940212488,-0.061798982322216,-0.026755776256323],[0.038738775998354,0.00047354304115288,0.028810789808631]],[[0.00029486184939742,-0.036371000111103,-0.01183910574764],[0.033385314047337,0.020974766463041,-0.078384637832642],[0.017243089154363,-0.0034715787041932,-0.017257584258914]],[[-0.026966642588377,-0.016167478635907,-0.0016696538077667],[0.02963974699378,-0.041527781635523,-0.063655376434326],[-0.05339428037405,-0.012917847372591,0.063996948301792]],[[-0.053029380738735,-0.11905262619257,-0.023221598938107],[-0.031151592731476,0.059358589351177,-0.025401778519154],[0.0014968935865909,0.032146260142326,-0.0091656651347876]],[[-0.021820867434144,-0.0081197088584304,-0.06820922344923],[-0.026168594136834,-0.060960967093706,0.057087924331427],[0.077946618199348,0.023696711286902,0.018997117877007]],[[-0.020191699266434,-0.014148619957268,0.018035238608718],[-0.012327347882092,0.0022434720303863,0.03792255744338],[-0.0094400430098176,0.027389211580157,0.022183416411281]],[[0.033433694392443,0.078583508729935,-0.040654484182596],[-0.025963854044676,0.014948681928217,0.0092547675594687],[-0.0084734950214624,0.027130208909512,-0.024095820263028]],[[-0.0030559867154807,0.11776882410049,-0.023263446986675],[-0.0088755255565047,-0.026318192481995,0.018963990733027],[-0.036958873271942,0.0220035482198,-0.055667456239462]],[[0.044537525624037,0.027216104790568,-0.069909684360027],[0.0075337085872889,-0.0020597078837454,-0.016670871526003],[0.030148651450872,0.070358335971832,-0.040329977869987]],[[0.15237709879875,0.022738624364138,-0.0095625044777989],[0.0061249719001353,-0.051643222570419,-0.052937462925911],[-0.0049871550872922,-0.062616243958473,-0.037276178598404]],[[-0.024395579472184,-0.065607026219368,-0.088518567383289],[-0.0017667297506705,0.0083563709631562,0.0036254925653338],[-0.0017945310100913,-0.0013006926747039,0.016578951850533]],[[0.063315764069557,-0.020496437326074,0.0403021723032],[0.018946904689074,0.025456542149186,0.11746443063021],[-0.031907275319099,0.0040116556920111,-0.0080860694870353]],[[-0.03543334081769,-0.0039531118236482,0.054613959044218],[-0.041354399174452,-0.010223729535937,0.025438381358981],[0.0024305279366672,-0.0010791142703965,0.0078747421503067]],[[-0.056088659912348,-0.053074438124895,-0.02506441809237],[-0.051633182913065,-0.0090218484401703,0.050304420292377],[0.053922664374113,0.024530719965696,-0.027421025559306]],[[-0.030899154022336,-0.018115509301424,0.026878004893661],[-0.056600656360388,-0.02365006133914,-0.0072296722792089],[0.015178049914539,-0.03882709518075,-0.0041495701298118]],[[0.038802023977041,0.019494071602821,-0.057339936494827],[0.013745443895459,0.013513015583158,-0.030436210334301],[0.07671182602644,0.036011453717947,-0.018226752057672]],[[-0.040818922221661,0.01221006270498,-0.031183961778879],[0.015794549137354,0.021721171215177,0.10050482302904],[0.024274248629808,0.05805841833353,0.018842941150069]],[[-0.027233622968197,0.071984305977821,-0.062670685350895],[-0.026164410635829,0.0056721880100667,0.097176268696785],[0.011313790455461,0.017056230455637,0.014200954698026]],[[0.050038561224937,-0.022434029728174,0.065165519714355],[0.031632866710424,-0.019949980080128,-0.064325585961342],[-0.0065225311554968,-0.012054722756147,0.00094697362510487]],[[0.027460783720016,-0.027835216373205,-0.00041237878031097],[0.006511184386909,-0.052301857620478,0.043150220066309],[0.022113626822829,-0.04254088550806,0.042436324059963]],[[0.043215833604336,-0.043447989970446,0.021547745913267],[0.027288872748613,-0.0021925179753453,-0.026806585490704],[-0.035077273845673,0.030332274734974,0.01182671263814]],[[-0.043079301714897,-2.7746455089073e-05,-0.0037390494253486],[0.01660792529583,-0.02712769806385,-0.01476919837296],[0.0017080584075302,0.044140323996544,-0.037113308906555]],[[0.05537848174572,-0.07317553460598,-0.056082859635353],[-0.02050974778831,-0.014543617144227,0.098975643515587],[-0.055194083601236,0.063290499150753,0.0063406629487872]],[[-0.055124584585428,0.015741236507893,-0.066615916788578],[-0.020569482818246,-0.018922217190266,0.045060459524393],[-0.0074069621041417,0.019369384273887,0.071658864617348]],[[0.0068613295443356,-0.050049427896738,-0.023223524913192],[0.030021535232663,-0.0028633363544941,-0.016746196895838],[0.09246664494276,0.051989957690239,-0.020817151293159]],[[0.038638900965452,-0.03936517611146,-0.082502402365208],[0.0035196784883738,-0.00063064298592508,-0.022898843511939],[0.013030357658863,-0.084954753518105,-0.081663362681866]],[[-0.040225978940725,-0.05482080951333,-0.038628950715065],[0.093240574002266,-0.01553107611835,0.0027216742746532],[-0.033186659216881,-0.031941018998623,0.053161777555943]],[[-0.065861865878105,0.004310023970902,0.0030762508977205],[-0.0025808345526457,-0.017137162387371,0.024755971506238],[0.078248202800751,0.015279604122043,-0.0026503247208893]],[[-0.036210175603628,0.038238681852818,0.0019655041396618],[0.00029205804457888,-0.14001907408237,-0.009913794696331],[0.09353057295084,-0.057288210839033,-0.020307196304202]],[[0.048504132777452,0.016962857916951,0.024056971073151],[-0.039821077138186,-0.038602169603109,-0.0050772652029991],[0.012507062405348,0.01958723179996,-0.031861826777458]],[[0.047945119440556,-0.031672980636358,-0.017468735575676],[-0.045295417308807,-0.0010864576324821,-0.030263721942902],[0.012957599014044,-0.10121283680201,0.032238531857729]],[[0.011161992326379,0.016897981986403,0.051200542598963],[-0.018689583986998,4.433134017745e-05,0.020793255418539],[-0.016221657395363,-0.052811287343502,-0.01517700124532]],[[0.047196924686432,0.018187941983342,0.0083121582865715],[0.043573752045631,-0.018685938790441,-0.041974987834692],[-0.062210250645876,-0.059869509190321,-0.051770184189081]],[[-0.065191775560379,0.066430933773518,-0.032978586852551],[0.028173800557852,0.040842954069376,0.015581717714667],[-0.024014955386519,-0.070614971220493,0.02673620916903]],[[-0.086239442229271,-0.053156275302172,-0.021528979763389],[-0.077213883399963,-0.024370277300477,0.040406759828329],[-0.08155483007431,-0.00028388612554409,-0.040232330560684]],[[0.034010078758001,0.05732100084424,0.012721501290798],[-0.063036821782589,-0.0092189833521843,0.052207056432962],[-0.00018338150402997,0.02819805406034,0.013596693985164]],[[0.002776192734018,0.02619656547904,-0.045061625540257],[-0.033083330839872,0.083475425839424,0.0060165729373693],[-0.0099026840180159,0.045808367431164,-0.04160013794899]],[[0.00162517814897,0.0099091865122318,0.013816692866385],[0.064990989863873,-0.026495987549424,-0.089501567184925],[0.054388668388128,-0.0077252802439034,0.0032892518211156]],[[0.014088872820139,0.019797384738922,0.015078249387443],[-0.0061813443899155,-0.10054410994053,0.045463014394045],[0.016060231253505,0.020952498540282,0.042745802551508]],[[-0.039141584187746,0.032882638275623,-0.063059121370316],[0.019122315570712,-0.020093968138099,0.012483689002693],[0.044451080262661,0.017804622650146,-0.018213773146272]],[[0.019848154857755,-0.039750661700964,-0.023944232612848],[-0.018601402640343,0.038467019796371,-0.038343794643879],[0.075101904571056,0.040041241794825,-0.0023154423106462]],[[0.0063365511596203,-0.020716991275549,-0.01423473097384],[0.017123676836491,0.11289060115814,0.040605593472719],[0.027608245611191,0.033920973539352,0.028345070779324]],[[-0.066524937748909,0.033767201006413,0.036737661808729],[-0.063436813652515,-0.0086525408551097,0.035221513360739],[-0.0068496260792017,-0.04559975489974,0.01976147480309]],[[-0.078141912817955,0.014736358076334,-0.028485529124737],[0.086097031831741,-0.049045994877815,-0.006371608003974],[0.042991779744625,0.015018045902252,0.044766742736101]],[[-0.024725375697017,0.016718044877052,0.0043074027635157],[-0.0033599475864321,-0.047009989619255,-0.0094182658940554],[0.0026802821084857,0.076673127710819,-0.080808512866497]],[[-0.039477914571762,-0.0086185839027166,0.0049078450538218],[-0.0044291689991951,0.051699589937925,0.056656241416931],[0.0012308307923377,0.00060701463371515,-0.023303395137191]],[[0.0026422759983689,-0.003664183197543,-0.01614928804338],[-0.0079783294349909,0.042735692113638,-0.0078894477337599],[-0.026190971955657,0.062559798359871,-0.011337644420564]],[[-0.0012879887362942,-0.026618968695402,0.038574177771807],[0.026636080816388,-0.058293201029301,0.023364955559373],[0.015499669127166,-0.0089908363297582,-0.06648413091898]],[[-0.12189335376024,0.01856343075633,-0.019949005916715],[-0.052027206867933,-0.047489430755377,-0.001584830111824],[0.053678762167692,0.025010703131557,-0.004587163683027]],[[0.0063265962526202,-0.015836069360375,0.073791041970253],[-0.0047237845137715,-0.0026889694854617,-0.048653587698936],[-0.064577996730804,-0.036871809512377,0.0467499345541]],[[-0.089410655200481,-0.0028191835153848,0.03797971457243],[-0.038436774164438,-0.05469885468483,-0.018271053209901],[0.031948957592249,0.0088667180389166,0.087520338594913]],[[0.021762194111943,-0.060277253389359,0.023198338225484],[-0.068675197660923,0.029353043064475,-0.029833463951945],[-0.033891715109348,-0.11456043273211,0.13857872784138]],[[-0.092041850090027,0.045750949531794,-0.05711666867137],[0.023477414622903,0.011991043575108,-0.029176967218518],[0.052927669137716,0.077645815908909,-0.083319090306759]],[[0.036725893616676,0.021114395931363,-0.0034009118098766],[-0.0092837736010551,-0.0017123735742643,0.016678672283888],[0.044074799865484,0.095280103385448,0.039812456816435]],[[0.028700774535537,0.041381154209375,-0.054462615400553],[-0.023124346509576,0.017413789406419,0.015968447551131],[-0.029674319550395,-0.0099871372804046,0.046590145677328]],[[-0.039425559341908,-0.038545548915863,-0.048885833472013],[-0.060140330344439,-0.010215737856925,0.0276491176337],[0.02181394957006,0.016720492392778,-0.022673506289721]],[[0.020481051877141,-0.038560781627893,-0.051533676683903],[0.0063313287682831,-0.0065397117286921,0.0032360625918955],[0.00067591428523883,0.052739918231964,0.026329182088375]],[[0.031725838780403,-0.014687246643007,0.001402864116244],[0.015679940581322,-0.073963545262814,0.012547028250992],[-0.0072418171912432,-0.017401954159141,-0.069051958620548]],[[-0.009607806801796,-0.035691622644663,0.014593923464417],[-0.028199896216393,0.038499847054482,0.01147235929966],[-0.051189340651035,-0.0013567195273936,0.078769981861115]],[[0.037826299667358,0.015639828518033,0.074402689933777],[0.07335402816534,-0.0040156422182918,-0.0038157294038683],[-0.020552095025778,-0.031818777322769,0.0014764160150662]],[[0.0060996082611382,-0.078531034290791,0.029853878542781],[-0.021044785156846,-0.042573098093271,-0.0365932546556],[0.012244361452758,-0.023687964305282,0.00068477191962302]],[[-0.021143294870853,0.045336127281189,0.040034845471382],[-0.069403924047947,0.053611177951097,0.022506061941385],[0.0095645096153021,0.025740994140506,-0.013942033983767]],[[-0.031328316777945,-0.014741756953299,-0.053821917623281],[-0.047085419297218,0.036577872931957,-0.014818610623479],[-0.065245673060417,-0.015259171836078,-0.00049102224875242]],[[0.019946340471506,0.05948369204998,0.067934565246105],[0.0066821309737861,-0.02960598655045,-0.032240301370621],[-0.028060218319297,0.042416974902153,-0.0060753133147955]],[[-0.013533605262637,0.083159483969212,-0.051721423864365],[-0.013869665563107,-0.020184349268675,0.004076125100255],[-0.051547449082136,-0.065504007041454,0.025089364498854]],[[0.076981484889984,0.060040820389986,0.047957293689251],[0.047400683164597,-0.026873277500272,0.076394736766815],[0.041174009442329,0.034135311841965,0.0099173067137599]],[[0.016237298026681,-0.017294626682997,0.0057316585443914],[-0.019186954945326,0.032933793962002,-0.0045081106945872],[0.049835834652185,0.024064712226391,-0.03824395686388]],[[-0.024067420512438,-0.028145492076874,0.022532818838954],[-0.013931537047029,-0.0055701821111143,-0.015728272497654],[0.060519780963659,-0.013234793208539,-0.060812726616859]],[[-0.014352488331497,-0.0053879534825683,-0.010175577364862],[0.0014399290084839,-0.072656013071537,-0.0095505136996508],[-0.023358773440123,0.037511941045523,0.012847393751144]],[[-0.046972922980785,0.0053893732838333,0.01984528824687],[-0.071997344493866,0.019135139882565,0.022089537233114],[0.074785277247429,0.02899025939405,0.029103649780154]],[[-0.017979554831982,-0.047009345144033,-0.043430868536234],[0.029076311737299,0.1138553917408,-0.053552884608507],[-0.029090233147144,-0.017217501997948,0.037667337805033]],[[-0.066842794418335,-0.0088982004672289,0.0081541277468204],[0.017439652234316,-0.092751368880272,0.02967800758779],[0.011856607161462,-0.024692857638001,0.053989719599485]],[[0.00093620119150728,0.019580150023103,-0.044820722192526],[-0.042620878666639,-0.021275186911225,0.048123966902494],[0.01677618548274,-0.043302983045578,0.069255627691746]],[[0.028488790616393,-0.043499451130629,-0.065760105848312],[0.040051225572824,0.029552793130279,0.072866916656494],[0.024900939315557,-0.12249993532896,0.015314675867558]],[[0.02868383564055,0.11050097644329,-0.0072640799917281],[0.040177583694458,-0.085387662053108,0.02322000823915],[-0.006050581112504,-0.03091287612915,-0.096690461039543]],[[0.022996978834271,0.04592240229249,-0.0038221953436732],[0.036319024860859,-0.021819965913892,0.059102993458509],[-0.050459504127502,0.0028477660380304,0.040916547179222]],[[0.025757839903235,-0.020192278549075,0.0060082944110036],[-0.054940816015005,-0.0042055891826749,0.04176277667284],[-0.075572319328785,0.021392289549112,0.033232629299164]],[[-0.012245140969753,0.034486897289753,-0.0032924064435065],[0.021026659756899,-0.015534355305135,0.0045663109049201],[-0.1299659460783,-0.030207825824618,0.017764030024409]],[[-0.084714278578758,0.014648493379354,0.0251455437392],[0.0044797612354159,0.04901921376586,0.039578214287758],[-0.011229602620006,0.069337204098701,-0.024981860071421]],[[0.038081247359514,-0.022511668503284,0.079362347722054],[-0.041703771799803,0.075320579111576,0.0076170545071363],[0.056411143392324,0.010520005598664,-0.031961761415005]],[[0.022633014246821,-0.010145278647542,0.098415076732635],[-0.032180331647396,0.036585379391909,0.038341905921698],[-0.0093639772385359,0.043237943202257,0.0099094482138753]],[[-0.0050357710570097,-0.060456026345491,-0.021645737811923],[-0.01636783964932,0.034040626138449,0.013395074754953],[0.026175580918789,-0.015655955299735,0.036676675081253]],[[0.024512954056263,-0.0069290995597839,-0.052883382886648],[-0.0019623686093837,0.025053692981601,-0.089981190860271],[-0.0054720845073462,0.0061670322902501,0.038343913853168]],[[-0.045192778110504,-0.020924361422658,0.089173100888729],[-0.037207845598459,0.080794371664524,-0.017059782519937],[-0.040293492376804,-0.0091132987290621,-0.034871898591518]],[[0.050453741103411,-0.039775282144547,-0.053119737654924],[0.01127681042999,-0.035178303718567,-0.029709685593843],[0.021959329023957,-0.023019786924124,-0.01805454865098]],[[0.01367540564388,-0.067116372287273,0.010359612293541],[0.038607873022556,0.084813334047794,0.022634755820036],[0.017960073426366,0.030637608841062,-0.0097633777186275]],[[-0.0074111307039857,-0.052365411072969,0.0554089397192],[-0.032525137066841,0.032360889017582,0.013283725827932],[0.014696940779686,0.031217852607369,-0.011712991632521]],[[-0.074785351753235,-0.026734227314591,0.010252988897264],[0.016938099637628,-0.0035583954304457,-0.027724590152502],[-0.059800002723932,0.09728667140007,-0.10692238807678]],[[0.027233719825745,-0.0085650477558374,0.050586581230164],[-0.057676531374454,0.0011318419128656,0.061945576220751],[-0.092325821518898,-0.02417603880167,0.039633624255657]],[[-0.030506426468492,0.078088991343975,-0.054467551410198],[0.015715468674898,0.011653370223939,-0.011040143668652],[0.04353841766715,0.061361007392406,-0.0209288187325]],[[0.0136115308851,-0.02848195284605,-0.0091710705310106],[-0.053088322281837,0.0097442334517837,0.0245057400316],[0.032267361879349,-0.027252515777946,-0.013744981959462]],[[-0.0115746865049,0.0257468521595,-0.018735645338893],[-0.003821121994406,0.0014486863510683,-0.049727026373148],[-0.035553131252527,0.05006817355752,0.034062571823597]],[[-0.002588122850284,-0.060754109174013,0.029043048620224],[0.017659841105342,-0.084313206374645,-0.021535912528634],[-0.01130083668977,-0.049267217516899,-0.07658364623785]],[[0.031210988759995,0.011879519559443,0.021414874121547],[0.029846543446183,0.0028742721769959,-0.046715658158064],[-0.10009084641933,-0.02789119631052,0.0049997395835817]],[[-0.0032067629508674,-0.0032209341879934,0.11032526195049],[-0.047332562506199,-0.017740655690432,-0.046226006001234],[-0.061505869030952,0.019568517804146,0.045793119817972]],[[-0.010950884781778,0.00079769309377298,-0.0042685982771218],[-0.067734219133854,0.011920473538339,0.024425055831671],[0.029342046007514,-0.014803093858063,-0.0076777692884207]],[[-0.014467571862042,0.040860421955585,-0.082297630608082],[-0.024678399786353,-0.008296218700707,0.018115917220712],[0.039009921252728,0.05034800991416,0.028652297332883]],[[-0.085140250623226,-0.021772505715489,-0.035226657986641],[0.00048083861474879,0.01018582470715,0.074569851160049],[-0.0038765030913055,-0.0012571706902236,-0.071203105151653]],[[0.015480121597648,0.036710973829031,-0.015713756904006],[0.011669428087771,-0.055096287280321,0.012941874563694],[-0.076669543981552,-0.0038587630260736,0.0072705270722508]],[[0.022630145773292,-0.070157691836357,0.0017028818838298],[-0.024194290861487,-0.060849495232105,-0.084858767688274],[0.00053077266784385,-0.079499378800392,-0.08398824930191]],[[-0.005777211394161,0.059866070747375,0.012315289117396],[0.03775928914547,-0.018889078870416,0.054661098867655],[-0.063467964529991,-0.0035979219246656,-0.0043488326482475]],[[-0.039477191865444,0.04827881231904,0.082758851349354],[0.058275356888771,-0.021101968362927,0.011863028630614],[0.041212499141693,0.00067649525590241,0.026987647637725]],[[0.061405379325151,0.037506364285946,-0.0059121833182871],[0.030576435849071,-0.04696786031127,0.0058906930498779],[-0.056913111358881,-0.015555915422738,-0.017131062224507]],[[0.0054913982748985,0.0031566973775625,0.0076999636366963],[0.017636865377426,-0.021692827343941,-0.015645854175091],[-0.032710500061512,-0.033358324319124,0.01111457683146]],[[0.0068474761210382,0.057653591036797,0.0084012513980269],[-0.041080884635448,-0.06676359474659,0.070238776504993],[0.082843504846096,-0.075045771896839,-0.013244333676994]],[[0.053460411727428,0.075334675610065,-0.014499727636576],[-0.038062691688538,0.042297411710024,0.012189193628728],[-0.049465697258711,-0.045577514916658,0.0039621088653803]],[[0.013514550402761,0.014795228838921,-0.025361614301801],[0.022063836455345,0.078721553087234,0.013657809235156],[-0.005628555547446,-0.03353725746274,-0.0094514414668083]],[[0.025996293872595,-0.036855109035969,0.0016104448586702],[-0.0056420373730361,-0.026539526879787,-0.016661839559674],[-0.025679068639874,-0.031913552433252,0.0010594304185361]],[[-0.010306734591722,-0.035664919763803,0.056572545319796],[-0.086927838623524,-0.022899826988578,0.0029698852449656],[0.0021904446184635,-0.05422143265605,0.040221981704235]],[[0.077258475124836,0.01486256532371,0.033102463930845],[-0.087553136050701,-0.026433154940605,0.0078352931886911],[-0.040440015494823,-0.00017524436407257,-0.061455547809601]],[[-0.0044866753742099,0.032511305063963,-0.078896142542362],[0.023569462820888,-0.016005015000701,0.042423669248819],[0.045255657285452,-0.024077160283923,-0.011578644625843]],[[0.054667629301548,0.02644257247448,-0.043681498616934],[0.0073108626529574,-0.087244279682636,0.085659556090832],[0.0046642068773508,-0.024631839245558,-0.041857853531837]],[[-0.04069733992219,0.033331274986267,0.084370546042919],[0.014661114662886,0.024042308330536,-0.035217735916376],[0.0040171509608626,-0.050199385732412,-0.025661623105407]],[[-0.065904542803764,0.040701780468225,0.062019616365433],[-0.0034250447060913,0.0090196896344423,-0.084166012704372],[0.077046170830727,-0.020212810486555,0.046819072216749]],[[0.0059284772723913,-0.022717220708728,-0.053659994155169],[-0.022045386955142,-0.032409340143204,-0.011456280015409],[-0.048576876521111,-0.0032233477104455,-0.081335306167603]],[[-0.022984106093645,0.034502875059843,0.010379378683865],[-0.0084649082273245,-0.047159101814032,0.011545623652637],[-0.0095018371939659,-0.025910671800375,0.043580416589975]],[[0.058868736028671,-0.022756325080991,-0.065217353403568],[0.024868277832866,0.010442793369293,0.0093723777681589],[0.018860844895244,-0.037970274686813,0.060649178922176]],[[-0.038149815052748,0.050244685262442,0.081877537071705],[-0.044156417250633,0.066828832030296,0.013376713730395],[-0.04036757722497,-0.020475732162595,-0.06462038308382]],[[-0.010524048469961,0.036234728991985,0.050657670944929],[-0.046441588550806,-0.076426796615124,0.039042912423611],[0.046451278030872,-0.01561011467129,-0.0034301006235182]]],[[[-0.035258021205664,0.0043174843303859,0.049143642187119],[0.013272750191391,0.0043898546136916,-0.038860592991114],[-0.00037153804441914,-0.029883649200201,-0.014204571954906]],[[0.025997959077358,-0.0039532110095024,0.0074174790643156],[0.012611947953701,-0.051088724285364,0.0077110254205763],[-0.037857703864574,-0.00055593799334019,0.034390199929476]],[[-0.017060250043869,0.053615432232618,-0.018148714676499],[-0.02762714214623,-0.030730444937944,-0.010605175048113],[-0.0083249323070049,0.014588994905353,-0.050951819866896]],[[-0.045539397746325,-0.016044281423092,-0.026250408962369],[-0.013830578885972,0.042015708982944,-0.066073551774025],[0.0029627927578986,-0.04734456166625,0.01973538659513]],[[0.0012880689464509,-0.013503236696124,0.0069281994365156],[0.013047501444817,-0.047580249607563,-0.032106716185808],[0.021144339814782,-0.013367518782616,-0.019946170970798]],[[-0.058877367526293,-0.012164600193501,0.018241494894028],[-0.00141038489528,-0.099043734371662,-0.061027333140373],[1.382172376907e-05,0.10043217986822,0.017683358862996]],[[-0.062794364988804,0.021469401195645,0.0021260227076709],[0.01632802374661,-0.0081227459013462,0.021903784945607],[-0.010400841012597,0.05319344624877,-0.072013445198536]],[[-0.026004862040281,0.0094057749956846,0.0067180916666985],[0.001696084975265,-0.014657584019005,0.0099828485399485],[-0.0048599173314869,0.046054638922215,0.029327088966966]],[[0.0063463291153312,0.071305610239506,0.012504709884524],[-0.030916830524802,-0.016687117516994,-0.045887913554907],[-0.054416913539171,-0.0044665466994047,0.028634143993258]],[[0.024712895974517,0.027852641418576,-0.036425985395908],[0.00049010891234502,-0.059895735234022,-0.019983572885394],[0.030934179201722,-0.0023889329750091,-0.0046851211227477]],[[0.056563943624496,-0.034896779805422,0.021961254999042],[-0.098966181278229,0.013665179722011,0.062899142503738],[-0.012360610999167,-0.084514506161213,0.028963230550289]],[[-0.036104682832956,0.0028211146127433,-0.0086618131026626],[-0.0048600328154862,0.015510247088969,-0.060302842408419],[0.026262849569321,-0.047035187482834,0.0055177402682602]],[[0.0017958508105949,0.027019495144486,-0.0012624930823222],[0.0090185320004821,0.097696505486965,-0.032519493252039],[-0.079627238214016,0.011865988373756,-0.035470310598612]],[[0.048015464097261,-0.044630896300077,-0.0094035947695374],[-0.029798386618495,-0.097445294260979,0.026352727785707],[-0.012432833202183,-0.024598073214293,0.0047558303922415]],[[0.07269648462534,0.0099440282210708,-0.043067831546068],[-0.024289522320032,0.055824965238571,0.00056720990687609],[-0.080530487000942,0.012866117991507,-0.051443189382553]],[[-0.018739337101579,-0.089214228093624,-0.027690645307302],[0.028819601982832,0.088537208735943,-0.061001341789961],[-0.001693056547083,0.039472214877605,0.013612876646221]],[[-0.0018611134728417,-0.09050676971674,-0.050043221563101],[0.0033952745143324,0.0012517457362264,-0.031598221510649],[-0.01244952250272,0.058024279773235,0.042103197425604]],[[0.027653453871608,0.085704922676086,-0.0095951864495873],[-0.015120149590075,0.03121118620038,0.027712995186448],[-0.070273190736771,-0.01795482262969,-0.027430200949311]],[[-0.025819482281804,0.0045713954605162,0.072593726217747],[-0.00046415728866123,-0.038596469908953,-0.074274085462093],[0.028566565364599,-0.086223416030407,0.026859110221267]],[[-0.019247360527515,-0.0055678808130324,0.04338751360774],[-0.014147077687085,-0.066499300301075,0.054970685392618],[0.01894180290401,-0.038705971091986,-0.014049850404263]],[[0.0035148893948644,0.04472653567791,-0.026450650766492],[0.0064902235753834,0.12648469209671,0.037548866122961],[0.032538741827011,-0.13349582254887,-0.0028533474542201]],[[-0.044419180601835,0.017907379195094,0.020624544471502],[-0.013186366297305,-0.022648122161627,-0.014478543773293],[0.10336571931839,0.0047023468650877,-0.026112284511328]],[[0.001877004862763,-0.05057867616415,0.052176237106323],[0.012083053588867,0.020836625248194,-0.023372190073133],[-0.058378998190165,-0.035478882491589,0.053745660930872]],[[0.0072496952489018,0.051416721194983,-0.0064299223013222],[0.072898618876934,0.093174576759338,-0.041546206921339],[0.021268587559462,0.0318010635674,-0.081931799650192]],[[-0.051347780972719,-0.033624265342951,0.033287834376097],[0.029698122292757,-0.056698113679886,-0.10162004828453],[-0.081885911524296,-0.0058144335635006,0.032989144325256]],[[0.016140904277563,-0.036813639104366,-0.056584648787975],[0.028031012043357,0.012282079085708,0.016562029719353],[0.017835395410657,-0.0030782672110945,0.042433120310307]],[[0.0098515255376697,-0.03137718513608,0.066879279911518],[-0.018586557358503,0.043274451047182,-0.033581763505936],[-0.005460427608341,0.0066355396993458,0.01019156165421]],[[0.013169446960092,0.0087868943810463,0.0045167631469667],[-0.06134045124054,-0.011608379893005,0.022302370518446],[-0.0011357525363564,-0.025703884661198,-0.0031294720247388]],[[0.013706989586353,-0.064531810581684,-0.028520870953798],[-0.017902445048094,-0.041680172085762,-0.0080050537362695],[0.0063219834119081,0.066980607807636,0.067852929234505]],[[-0.044482477009296,0.03461791202426,0.025075033307076],[0.041799675673246,-0.069349318742752,-0.014463854022324],[0.039608523249626,-0.053502958267927,0.010543464682996]],[[0.034615762531757,-0.013906860724092,-0.095330625772476],[-0.014921395108104,0.034509249031544,0.017907559871674],[0.0019792097155005,0.0050218370743096,-0.021464366465807]],[[0.042982414364815,-0.091048911213875,-0.0091646900400519],[0.024123599752784,-0.0045669805258512,-0.075202748179436],[0.010062114335597,-0.02490477450192,0.039060596376657]],[[-0.0087611265480518,0.03318777680397,0.070119947195053],[-0.014310635626316,-0.0025969315320253,-0.063033044338226],[-0.012891981750727,-0.01031331717968,-0.079084634780884]],[[0.033754047006369,0.014167162589729,0.03666665405035],[0.012804369442165,-0.037354949861765,-0.027637716382742],[-0.050215624272823,0.022845068946481,0.029890483245254]],[[-0.016228850930929,-0.057345330715179,-0.02908936329186],[0.0055180205963552,0.077895388007164,-0.034223362803459],[-0.0085780955851078,-0.017050439491868,-0.0075504081323743]],[[0.013834169134498,-0.028545802459121,0.077456429600716],[0.0069766617380083,0.091158956289291,-0.028284976258874],[-0.00030618012533523,0.046078342944384,-0.021477932110429]],[[0.00089334062067792,0.01905625872314,-0.027647145092487],[-0.029073970392346,-0.013672612607479,-0.00046850435319357],[-0.0049639535136521,0.046877037733793,0.0059893052093685]],[[-0.01225321739912,-0.010797046124935,0.058190666139126],[0.044370222836733,-0.037436123937368,-0.052440267056227],[0.055220119655132,-0.038660123944283,0.0044433958828449]],[[-0.028085831552744,0.046251244843006,-0.03918918594718],[0.020789092406631,-0.0021504387259483,0.02044116333127],[-0.018178671598434,-0.035005360841751,-0.0038399705663323]],[[0.01856479793787,0.0039373505860567,0.055295780301094],[0.00093073549214751,-0.00048727498506196,-0.056978307664394],[-0.007658495567739,-0.041545793414116,0.043152514845133]],[[-0.011109146289527,-0.018066396936774,-0.00016262220742647],[0.035458344966173,-0.051755785942078,0.0038286948110908],[0.013103345409036,0.024262640625238,-0.062187511473894]],[[-0.0014760403428227,0.032650511711836,-0.028399862349033],[0.022912316024303,-0.020671918988228,-0.0032260459847748],[0.013789603486657,-0.062602423131466,-0.00071224145358428]],[[0.012233112938702,0.02266351133585,-0.04740896448493],[0.048953879624605,-0.0010454938746989,-0.0063920519314706],[-0.024101024493575,0.024092553183436,0.014587846584618]],[[0.10096669197083,0.068129636347294,0.01184335257858],[0.14184966683388,0.0065649771131575,0.12298874557018],[0.015187406912446,0.039782058447599,-0.0039823707193136]],[[0.046082906424999,0.035270411521196,-0.0041068089194596],[-0.029214860871434,-0.016513941809535,0.028625525534153],[-0.067919202148914,0.033693615347147,-0.059284307062626]],[[-0.10739574581385,0.026953939348459,0.0044320686720312],[-0.027355862781405,0.0093326382339001,0.018773997202516],[-0.029734831303358,0.11736480891705,-0.041584096848965]],[[0.015781296417117,0.049095030874014,-0.01012168917805],[-0.018718080595136,0.032952640205622,0.013858665712178],[-0.075318656861782,-0.019065983593464,-0.067416109144688]],[[-0.058145612478256,-0.1081879734993,-0.081105448305607],[-0.0012069513322785,0.02856476791203,0.031992767006159],[0.021022966131568,0.065722674131393,0.037777654826641]],[[-0.015899607911706,0.031899552792311,-0.011007272638381],[0.038889031857252,-0.048159688711166,0.039383012801409],[-0.037005975842476,0.0024952290114015,-0.027632582932711]],[[0.011919475160539,-0.046312309801579,-0.0028928550891578],[-0.0094779264181852,0.05906131118536,-0.052751708775759],[0.050672393292189,0.040221601724625,0.027744807302952]],[[-0.019774211570621,-0.0097278095781803,0.0086398888379335],[-0.0060292878188193,-0.10678879916668,0.042617447674274],[0.1259321719408,-0.041879676282406,-0.0023781543131918]],[[0.022254832088947,0.0041846698150039,0.031496491283178],[-0.033521693199873,0.017567584291101,-0.0031227967701852],[-0.026569616049528,0.00097699218895286,0.04205285385251]],[[-0.077857047319412,-0.023723512887955,-0.045593000948429],[-0.0084022218361497,0.06438272446394,-0.04037344828248],[0.011774386279285,0.018756842240691,0.019815638661385]],[[-0.03576285764575,0.069481737911701,-0.028657589107752],[-0.02284119091928,-0.0044336384162307,-0.002711565233767],[-0.025685610249639,0.034573771059513,0.001751659438014]],[[0.022940956056118,0.053030278533697,0.0052149603143334],[-0.0099733369424939,0.042032841593027,-0.050432939082384],[0.013229944743216,-0.027947645634413,-0.05337592586875]],[[0.0025992628652602,0.020924357697368,-0.013244862668216],[0.047965437173843,0.027241269126534,-0.04082453623414],[-0.0016727537149563,0.048735268414021,-0.041760358959436]],[[-0.038163233548403,-0.026086421683431,0.015565619803965],[-0.040257375687361,-0.060662794858217,0.048819478601217],[0.024507464841008,0.046305626630783,-0.040720529854298]],[[-0.0048742275685072,-0.06358639895916,0.012902752496302],[0.040261942893267,-0.028179423883557,0.037419892847538],[0.012251518666744,-0.031789146363735,-0.056307055056095]],[[-0.05263464525342,-0.051296193152666,-0.055211052298546],[-0.075649470090866,0.012436837889254,0.0043006464838982],[0.080648578703403,-0.078697681427002,0.043325260281563]],[[0.015542020089924,0.029083156958222,-0.01011582929641],[-0.028034782037139,-0.077169992029667,0.055249202996492],[0.0048039080575109,-0.016982296481729,0.037305273115635]],[[-0.033269807696342,-0.069055415689945,0.03985845670104],[0.032111462205648,0.0046314699575305,0.031783569604158],[-0.012729840353131,-0.046673126518726,0.051480781286955]],[[-0.0034954722505063,0.04907563701272,0.031783223152161],[0.001644256291911,0.12583847343922,0.061219818890095],[0.03867681697011,-0.083514049649239,-0.0084778172895312]],[[-0.050086595118046,-0.008230903185904,0.010760810226202],[-0.0304722674191,0.0020771569106728,-0.04493074119091],[0.015989936888218,-0.045846581459045,0.03453978523612]],[[0.013826170004904,-0.039024394005537,0.0073043419979513],[0.0051911580376327,0.013114417903125,0.030669322237372],[-0.007776943501085,0.04161598533392,-0.0090626953169703]],[[0.0033639904577285,-0.065988779067993,0.024304002523422],[-0.05718295276165,0.03150999546051,0.022619714960456],[-0.013931042514741,0.065554551780224,-0.033268768340349]],[[0.033720962703228,-0.049824248999357,-0.022574434056878],[-0.010743628256023,0.0047463197261095,-0.044351816177368],[-0.0080279968678951,-0.0064317937940359,-0.038116570562124]],[[0.015579880215228,-0.042288102209568,0.074898682534695],[0.036124959588051,-0.037276357412338,-0.043873086571693],[0.0099706267938018,-0.055399142205715,0.0052013299427927]],[[0.02026110701263,-0.025450496003032,-0.018836596980691],[0.01401498913765,-0.072313010692596,0.066073819994926],[-0.014512943103909,0.026299664750695,0.035770457237959]],[[0.0097277667373419,0.0026802143547684,0.0052282284013927],[0.094026125967503,0.0023065044078976,-0.078150257468224],[0.0010259923292324,-0.042721383273602,-0.013217460364103]],[[0.020307688042521,-0.037382338196039,0.030541965737939],[-0.079658232629299,0.0469342879951,0.046964515000582],[-0.0083636175841093,0.0264901984483,-0.01819696649909]],[[0.009867100045085,-0.0073444112204015,-0.097994603216648],[-0.012399133294821,-0.00423489138484,0.050614982843399],[-0.052145291119814,0.018418392166495,0.061377868056297]],[[-0.027755111455917,-0.0089212628081441,-0.023067573085427],[0.02989805303514,0.045698791742325,-0.037464287132025],[-0.016640594229102,-0.042741149663925,0.030325505882502]],[[-0.084922507405281,-0.018233766779304,-0.018082352355123],[-0.11085869371891,0.018808506429195,0.025785425677896],[-0.10220507532358,0.12894287705421,0.020866505801678]],[[0.034085847437382,0.028067979961634,-0.098163552582264],[-0.064467079937458,0.05628352239728,0.01536547858268],[0.014103126712143,-0.06566971540451,0.050872463732958]],[[0.0012193478178233,-0.030031394213438,0.028303530067205],[-0.048659898340702,0.013751302845776,-0.0015834568766877],[-0.014919007197022,0.046665441244841,0.022490290924907]],[[0.055779386311769,0.0016153366304934,-0.019178003072739],[-0.058658890426159,0.051315046846867,0.0057819429785013],[-0.031424548476934,-0.027402348816395,-0.014523766934872]],[[-0.006664234213531,-0.016745459288359,-0.013929185457528],[-0.052724506705999,-0.0038416085299104,0.0025271233171225],[0.0034830835647881,0.018288077786565,-0.0083711035549641]],[[0.0077167614363134,0.0046397149562836,-0.087503179907799],[0.020156411454082,0.015718355774879,0.028292061761022],[-0.11909036338329,0.022548917680979,-0.059150189161301]],[[0.13935780525208,0.04359770193696,0.051905356347561],[-0.076805628836155,0.1026484593749,-0.062786482274532],[-0.045933589339256,-0.010918683372438,-0.060805443674326]],[[-0.027113951742649,-0.032300855964422,0.044173184782267],[0.018636329099536,0.0047796298749745,-0.011034809052944],[-0.040666360408068,0.031378883868456,0.029789946973324]],[[-0.0028265314176679,0.007448791526258,0.084702007472515],[-0.036111507564783,-0.003537169424817,0.027437312528491],[-0.047604832798243,0.040097750723362,-0.10234376043081]],[[-0.010908394120634,0.061903916299343,0.043707381933928],[-0.083192326128483,-0.0062205498106778,0.016388537362218],[0.0056088985875249,-0.054579973220825,-0.041086371988058]],[[-0.034391950815916,-0.027961064130068,-0.03728748485446],[-0.064221113920212,0.058288723230362,0.023447344079614],[0.0042024622671306,0.0091795558109879,-0.054752059280872]],[[0.071392849087715,-0.09462159126997,0.0025589258875698],[-0.019304072484374,-0.020208502188325,0.035204958170652],[-0.036896944046021,-0.0037092277780175,0.02112090587616]],[[0.030313646420836,-0.022456763312221,-0.021518031135201],[-0.039099328219891,-0.026771700009704,0.026103436946869],[0.037709444761276,0.0061995382420719,-0.059534095227718]],[[-0.072416827082634,0.019037719815969,-0.027668783441186],[0.004570955876261,-0.017093209549785,0.074741743505001],[0.063800752162933,-0.028828604146838,0.0022376936394721]],[[0.037644952535629,0.018964949995279,-0.034572038799524],[0.012913103215396,-0.01492268498987,-0.063370749354362],[0.0072629009373486,0.028127294033766,0.0085129989311099]],[[0.023775046691298,0.0042989612556994,-0.060383025556803],[0.042160831391811,-0.018242301419377,-0.022253161296248],[0.0081412382423878,-0.01529114227742,-0.00015333892952185]],[[-0.011930135078728,0.040010508149862,-0.029578639194369],[-0.048316512256861,0.031689208000898,0.063611276447773],[0.092591196298599,-0.014192915521562,-0.12081745266914]],[[-0.030567519366741,-0.0090424297377467,-0.029079556465149],[0.013492913916707,0.058153875172138,-0.036648981273174],[0.0022787093184888,0.019018772989511,-0.018524682149291]],[[-0.059001833200455,0.0047982460819185,-0.0061938259750605],[-0.018908705562353,-0.0022664272692055,0.053184699267149],[-0.022539364174008,-0.0077697904780507,-0.029890405014157]],[[0.014288830570877,-0.0070273499004543,-0.040489107370377],[0.0065434067510068,0.044946432113647,0.025968367233872],[-0.044278901070356,-0.066126950085163,0.012318931519985]],[[0.10240319371223,-0.076858341693878,0.0062426184304059],[-0.023874765262008,0.077191323041916,-0.036618709564209],[-0.034786868840456,-0.0033845494035631,0.020110040903091]],[[-0.046796653419733,0.041663479059935,-0.016404351219535],[-0.038443844765425,-0.024997174739838,0.021161913871765],[-0.011690032668412,-0.0091224741190672,-0.033188764005899]],[[0.088723219931126,0.02506298199296,0.012782686389983],[0.052077908068895,0.032452922314405,-0.047711506485939],[0.052121784538031,-0.13610351085663,-0.03799681738019]],[[-0.03608775883913,-0.026110077276826,0.021919392049313],[-0.021546963602304,-0.01699473708868,0.056480512022972],[-0.075208425521851,0.011388165876269,0.047737956047058]],[[0.028908681124449,-0.0044241202995181,0.01136358268559],[0.011495327576995,0.075768306851387,-0.056076642125845],[-0.01094086561352,0.003328844672069,0.058696288615465]],[[-0.005610482301563,-0.091039039194584,-0.049334567040205],[-0.048372205346823,0.029534608125687,-0.019817564636469],[0.013571597635746,-0.0043621570803225,0.030044702813029]],[[0.044644471257925,0.070335306227207,-0.023557899519801],[0.021684097126126,0.048323102295399,0.034316826611757],[0.013775524683297,-0.029235849156976,-0.05508454144001]],[[-0.014689766801894,-0.019646229222417,-0.075029730796814],[-0.021701466292143,-0.070064358413219,0.020865207538009],[0.034542765468359,0.02755780890584,0.030802216380835]],[[0.017430189996958,-0.10813817381859,-0.059754863381386],[-0.027044121176004,-0.018416279926896,-0.033034093677998],[-0.039770640432835,0.019843768328428,-0.0077998442575336]],[[0.023530321195722,-0.094305075705051,-0.0055081387981772],[-0.02794454805553,-0.015566666610539,-0.022854059934616],[0.010127144865692,-0.020742734894156,0.075665637850761]],[[-0.063215412199497,0.013117634691298,0.042352940887213],[0.029456237331033,-0.02735036239028,0.006041478831321],[-0.032701589167118,0.033166959881783,-0.093265973031521]],[[-0.067497223615646,-0.034533467143774,0.051826350390911],[-0.0015849506016821,-0.013190349563956,0.015871053561568],[0.0016378439031541,-0.032623879611492,0.016008879989386]],[[-0.011926397681236,-0.010659579187632,-0.015435798093677],[0.048918262124062,-0.087051324546337,0.044846467673779],[-0.0058107608929276,-0.038013637065887,0.043951001018286]],[[-0.0024488826747984,-0.091551996767521,-0.010374930687249],[0.024939265102148,-0.0063222702592611,-0.043712522834539],[-0.053752388805151,0.032741654664278,0.040371555835009]],[[0.051794603466988,-0.022022007033229,-0.010249251499772],[-0.024167075753212,0.00046138840843923,0.0010418498422951],[0.024840209633112,-0.049520727247,-0.0059980018995702]],[[0.024041324853897,-0.0036932225339115,0.038554862141609],[0.0589859187603,0.094272598624229,-0.082320280373096],[-0.029097024351358,-0.054851461201906,-0.019801599904895]],[[0.028106331825256,-0.083722524344921,-0.026800846680999],[-0.055524788796902,0.0067882584407926,0.012780285440385],[-0.0010928274132311,0.01570999622345,0.0096619408577681]],[[0.020151084288955,0.010682512074709,-0.024681977927685],[0.0028947871178389,-0.056542307138443,0.010790727101266],[-0.0039412197656929,0.077067352831364,-0.049369338899851]],[[-0.056878380477428,-0.17611199617386,-0.085108429193497],[-0.047319166362286,-0.083775632083416,-0.035811640322208],[-0.082865171134472,-0.088854618370533,-0.11541250348091]],[[0.0047958241775632,0.0068087200634181,-0.028524581342936],[-0.027292495593429,0.024986792355776,-0.020899912342429],[-0.024004232138395,0.049621995538473,-0.022051811218262]],[[5.9346595662646e-05,-0.01388546731323,0.022587480023503],[-0.11659744381905,0.019547615200281,-0.0028635303024203],[0.061747439205647,0.018080299720168,0.022397698834538]],[[-0.057613540440798,0.028642291203141,0.013278470374644],[0.034609232097864,-0.014392660930753,-0.0089945467188954],[-0.041295602917671,0.035525094717741,0.0042188768275082]],[[-0.019154764711857,-0.00014422732056119,0.025607701390982],[-0.0082903923466802,0.026066333055496,-0.095020323991776],[-0.017127171158791,-0.017871486023068,0.049861144274473]],[[0.023529872298241,-0.0092810159549117,0.012200533412397],[-0.031395431607962,0.0080938655883074,0.0037205377593637],[-0.039905212819576,0.039893694221973,0.012080513872206]],[[-0.022590590640903,-0.013541388325393,-0.010798404924572],[-0.027989530935884,0.030684834346175,0.01220138091594],[0.0088518783450127,0.020794447511435,0.033178377896547]],[[0.073887839913368,0.031848099082708,-0.016372675076127],[0.072608433663845,-0.092123001813889,0.080607227981091],[-0.067910477519035,0.007503645028919,-0.065758973360062]],[[-0.12675656378269,0.027662733569741,-0.013554995879531],[-0.052827872335911,0.056701883673668,0.086617842316628],[-0.023251172155142,0.080196619033813,-0.028801765292883]],[[-0.0019283067667857,0.03267702460289,0.021698663011193],[-0.042307313531637,-0.020764311775565,0.017043320462108],[-0.021545358002186,-0.048740025609732,0.049961015582085]],[[-0.004163830075413,0.048808544874191,0.02721226029098],[0.028559604659677,-0.068984620273113,0.053213708102703],[-0.022159766405821,0.070337221026421,0.020213734358549]],[[-0.028538424521685,0.0091324951499701,-0.027518844231963],[0.14292719960213,0.10439205169678,0.1074767485261],[-0.028848569840193,-0.10730784386396,-0.05791037529707]],[[0.0034886391367763,-0.058454681187868,0.051912147551775],[-0.069536648690701,0.027755791321397,0.11840483546257],[0.073234930634499,-0.082878232002258,0.036137729883194]],[[-0.027817653492093,-0.029123779386282,-0.011488039046526],[0.025744685903192,-0.016692640259862,-0.048249181360006],[0.039352249354124,0.024089174345136,-0.075481370091438]],[[-0.013322525657713,0.049864951521158,-0.025927616283298],[-0.056213449686766,-0.015787191689014,-0.022341880947351],[-0.029901234433055,0.042783468961716,0.010988815687597]],[[-0.024773605167866,0.079519726336002,-0.0031628021970391],[0.0025764130987227,0.031229447573423,-0.022813936695457],[-0.012279540300369,-0.061891220510006,-0.010063254274428]],[[0.014838551171124,-0.064973101019859,-0.015419301576912],[0.014064186252654,-0.033975515514612,-0.025962794199586],[0.0052818031981587,0.068741902709007,-0.021913643926382]],[[0.017163665965199,0.052552703768015,-0.041910938918591],[-0.0069101741537452,-0.036039918661118,-0.027186091989279],[-0.047534145414829,-0.032197862863541,0.0075021954253316]]],[[[-0.0086411759257317,-0.055269759148359,-0.045509956777096],[-0.018110295757651,0.070120215415955,0.058303475379944],[0.0079101016744971,0.068083271384239,0.073555618524551]],[[0.00025972296134569,-0.051373101770878,-0.0042653335258365],[0.025461176410317,-0.053734984248877,0.04083950817585],[-0.00054304458899423,0.0061511839739978,-0.040234617888927]],[[-0.049017168581486,0.095917448401451,0.0086871823295951],[-0.025794867426157,-0.016738498583436,-0.021675869822502],[-0.040696453303099,0.089855641126633,0.018114982172847]],[[0.019187642261386,0.058201156556606,0.042366594076157],[0.0040884548798203,-0.04067462682724,-0.035943906754255],[-0.031785316765308,-0.020732345059514,0.06625460088253]],[[0.04570622369647,-0.027492364868522,0.053223200142384],[0.0612150169909,0.00028108266997151,0.089143246412277],[0.01394853554666,0.042002815753222,-0.046942997723818]],[[0.016793318092823,0.028865046799183,0.0072748553939164],[-0.011654359288514,0.0026463335379958,0.013741327449679],[0.018407236784697,0.025720810517669,0.0031865139026195]],[[0.034408152103424,-0.0019634182099253,0.044697050005198],[0.048436485230923,0.10253569483757,0.024040263146162],[-0.012771394103765,-0.018395069986582,0.020842863246799]],[[0.10551476478577,0.073450833559036,0.001500203856267],[0.098547853529453,0.0058879088610411,-0.0060966610908508],[-0.023438971489668,0.0067869233898818,-0.058332722634077]],[[-0.043959595263004,-0.02497817017138,0.069038346409798],[-0.0054939524270594,0.056250244379044,-0.013246424496174],[0.0086519997566938,-0.027732167392969,-0.0072778803296387]],[[0.00037734062061645,-0.043559700250626,0.0063444063998759],[-0.018278669565916,0.031876429915428,0.026342103257775],[0.061245426535606,-0.00053256552200764,-0.0061974641866982]],[[0.12348160892725,0.0069929156452417,0.059918913990259],[0.024376241490245,-0.012187625281513,0.029164398089051],[-0.10131593793631,0.012838808819652,0.02413934469223]],[[0.029202979058027,-0.033078953623772,-0.0044881138019264],[-0.013106516562402,0.0047237193211913,-0.067105136811733],[0.032939784228802,-0.029432635754347,-0.02288025803864]],[[0.053422503173351,-0.036393340677023,0.0064430059865117],[0.071617372334003,-0.01607577688992,-0.033563915640116],[-0.068107202649117,0.046901389956474,0.087245307862759]],[[0.01991386897862,0.034568130970001,-0.040179245173931],[-0.081576444208622,0.060959622263908,0.022280773147941],[0.011343971826136,0.031389225274324,-0.023954415693879]],[[0.060290917754173,0.066650614142418,-0.061469834297895],[-0.012108192779124,0.023711796849966,-0.058487929403782],[-0.052174419164658,0.022085644304752,-0.0099109280854464]],[[0.058240134268999,-0.036728363484144,0.055591981858015],[-0.022854145616293,-0.023878524079919,0.041752524673939],[-0.029911007732153,0.017098404467106,-0.062857143580914]],[[-0.016829980537295,-0.07107038795948,0.015989916399121],[0.040182542055845,-0.06434491276741,-0.036432024091482],[0.045647550374269,-0.021133758127689,-0.011977487243712]],[[0.066094651818275,0.012039803899825,0.0018089778022841],[0.026748629286885,-0.0094436360523105,0.0030923874583095],[-0.07658676803112,0.046975903213024,0.034058138728142]],[[-0.055443465709686,0.0096953837200999,0.045499157160521],[-0.018480660393834,0.021353043615818,0.016300251707435],[-0.055136989802122,0.025730468332767,0.013492209836841]],[[-0.026946907863021,0.0062468028627336,-0.027974173426628],[-0.019532885402441,-0.020452996715903,-0.087769985198975],[-0.031355999410152,-0.00013563709217124,0.002317450940609]],[[-0.046929370611906,-0.010218560695648,0.027758911252022],[-0.032199513167143,-0.087042883038521,-0.014843768440187],[-0.024288274347782,0.0078910961747169,0.033699635416269]],[[-0.0041668144986033,0.013115229085088,0.011131684295833],[-0.0084723010659218,0.012043681927025,-0.041832037270069],[0.02068243548274,0.097483173012733,0.035639066249132]],[[0.03346948698163,0.0096994396299124,-0.0011833771131933],[0.0038094636984169,0.017206212505698,0.0039077657274902],[-0.052687391638756,-0.046048782765865,-0.0068631563335657]],[[-0.051414091140032,0.0042795706540346,-0.033835094422102],[-0.0084810853004456,0.022794254124165,-0.0052106427028775],[-0.024755163118243,-0.043496061116457,-0.0075393198058009]],[[-0.090756550431252,0.058992441743612,-0.029794240370393],[0.058026231825352,0.023621547967196,0.040279880166054],[-0.016836678609252,-0.068285390734673,-0.024748915806413]],[[0.039788577705622,-0.017038084566593,0.028705960139632],[0.0090175112709403,0.0038718692958355,0.048424623906612],[-0.029431132599711,-0.037742480635643,0.066012002527714]],[[0.033574257045984,0.046465042978525,0.028681607916951],[0.086391367018223,0.049643665552139,0.035800028592348],[-0.010090594179928,0.0052381595596671,-0.028631580993533]],[[-0.13220252096653,-0.043831411749125,0.011269907467067],[0.054655998945236,-0.052827578037977,-0.063211612403393],[0.061233554035425,-0.046477928757668,0.031345441937447]],[[0.010866763070226,-0.034653853625059,-0.0058009224012494],[-0.038756802678108,0.020862182602286,0.011774704791605],[-0.030043307691813,-0.0094398027285933,0.036465346813202]],[[-0.054339099675417,-0.017791578546166,-0.0080202165991068],[-0.082344524562359,-0.031857613474131,0.053685735911131],[-0.033498410135508,-0.036318831145763,-0.00391895044595]],[[-0.015432203188539,0.042633447796106,-0.0095974477007985],[0.023884519934654,0.019705826416612,0.064756095409393],[-0.0022300679702312,-0.0048894104547799,-0.011172567494214]],[[0.05788854137063,-0.023875752463937,-0.043013364076614],[-0.021974364295602,-0.036656387150288,-0.013760851696134],[-0.077174723148346,-0.05015704408288,-0.012597317807376]],[[0.070778779685497,-0.021766902878881,0.076459281146526],[0.040726810693741,-0.025303734466434,0.032579977065325],[-0.023181553930044,0.042860418558121,-0.067536763846874]],[[-0.054029103368521,0.019690597429872,0.079527229070663],[-0.0084836930036545,-0.034419368952513,0.036365516483784],[0.067410089075565,0.010118843056262,0.030595809221268]],[[-0.0056153163313866,-0.097648911178112,-0.0025184082332999],[0.10313396155834,-0.0014105103909969,0.081429913640022],[-0.01225108653307,-0.010189267806709,0.020414926111698]],[[0.02268572896719,-0.0026690049562603,0.081596113741398],[0.011578189209104,0.068781346082687,-0.035825535655022],[-0.059015087783337,0.02612104639411,-0.010282708331943]],[[0.010309514589608,0.02277148514986,0.046135697513819],[0.063372887670994,-0.011305467225611,-0.011148384772241],[0.020130209624767,-0.012813229113817,0.085564076900482]],[[0.034643143415451,0.035478252917528,-0.042185515165329],[-0.057636626064777,0.061471838504076,0.047021258622408],[0.056633412837982,-0.096041090786457,0.0036180349998176]],[[-0.061855532228947,0.037082765251398,-0.071503512561321],[-0.0068026552908123,0.029281739145517,0.031739637255669],[0.030721811577678,0.036309219896793,-0.056868847459555]],[[-0.047190826386213,0.034060284495354,0.046741038560867],[0.01591488160193,-0.017115361988544,0.054989479482174],[0.0056300456635654,0.051723588258028,-0.019134763628244]],[[-0.029189541935921,-0.029225330799818,0.0044477167539299],[-0.00082982273306698,-0.017640218138695,-0.01837844774127],[-0.0086078122258186,-0.027030473574996,0.086353570222855]],[[-0.026120889931917,-0.0090688737109303,0.11424135416746],[0.070445820689201,0.049721349030733,-0.018200054764748],[-0.0082402490079403,0.023128524422646,0.0079639386385679]],[[0.024026550352573,-0.01469830237329,0.024488048627973],[-0.081933401525021,0.050182342529297,0.025816176086664],[-0.04720938205719,0.0066362791694701,-0.074854284524918]],[[0.041082583367825,0.041879095137119,0.0022497568279505],[0.0078644901514053,0.019033884629607,-0.054054167121649],[0.067984282970428,0.015901107341051,-0.013462150469422]],[[-0.10166373848915,0.060783084481955,-0.032948426902294],[-0.077424645423889,-0.050688534975052,0.021837811917067],[-0.018239850178361,0.017727730795741,0.046115811914206]],[[0.0079023605212569,-0.013919161632657,-0.027478190138936],[-0.021188272163272,0.0096898684278131,0.064796082675457],[-0.011680011637509,0.034552861005068,0.091019630432129]],[[-0.068611018359661,0.041443679481745,-0.038066703826189],[0.053673893213272,-0.0042617935687304,-0.05805667117238],[0.01305225212127,-0.04156818985939,0.0045607541687787]],[[0.02518954873085,0.04720950499177,-0.040897373110056],[0.0065900241024792,-0.024684319272637,0.031238818541169],[0.040975723415613,-0.065043486654758,0.051566556096077]],[[-0.024036714807153,-0.0065091019496322,0.022080758586526],[-0.02346607670188,-0.03089464828372,-0.0032286189962178],[0.02566671743989,-0.087978772819042,-0.085134595632553]],[[0.011312041431665,-0.0089615806937218,-0.053485427051783],[-0.058695167303085,0.016223527491093,-0.018195481970906],[-0.026781341060996,0.023329610005021,-0.022873558104038]],[[-0.02066364698112,-0.039797428995371,0.087878338992596],[0.047861192375422,0.051014170050621,0.031858261674643],[0.015997596085072,0.064216583967209,-0.041628193110228]],[[0.098461151123047,0.071295090019703,-0.0012183906510472],[0.040975600481033,0.048782717436552,0.060468126088381],[-0.009776514954865,-0.050795651972294,-0.0030399987008423]],[[-0.016685171052814,-0.01243238709867,-0.0040888842195272],[-0.02911658026278,0.038842171430588,-0.00046623317757621],[-0.069881357252598,-0.052225030958652,-0.059308130294085]],[[0.087248735129833,-0.037944912910461,0.055689133703709],[0.035118538886309,-0.024829188361764,0.015300017781556],[0.049779057502747,0.023240825161338,0.038744688034058]],[[0.031922023743391,-0.017834195867181,-0.070981353521347],[0.00047190193436109,0.065537765622139,-0.06952953338623],[0.014181490987539,-0.01786264963448,-0.045493967831135]],[[0.049767278134823,-0.015599383041263,0.020960837602615],[-0.016214579343796,0.021066714078188,0.015300335362554],[-0.020021485164762,0.025107849389315,-0.042509239166975]],[[0.0031470556277782,-0.06356904655695,0.04130332171917],[-0.014959583990276,0.067853927612305,0.022111847996712],[0.012008517049253,0.1043469235301,-0.11102706193924]],[[-0.048424068838358,-0.012987280264497,-0.0028011212125421],[0.023815801367164,0.025400523096323,-0.033130943775177],[0.042341068387032,0.036031872034073,0.056726079434156]],[[-0.010604866780341,0.020544985309243,-0.082219742238522],[-0.022362189367414,-0.0055194613523781,0.035953067243099],[-0.052404168993235,0.050382141023874,-0.088802464306355]],[[-0.02861151471734,0.021187905222178,0.0040922635234892],[-0.016698930412531,0.030439836904407,0.030863763764501],[0.017316088080406,-0.012079400010407,0.038498289883137]],[[-0.0094928545877337,0.040287271142006,-0.0090040182694793],[-0.045982409268618,0.045252338051796,0.017029168084264],[-0.010828567668796,-0.038656819611788,0.011160779744387]],[[-0.051527433097363,-0.0082886638119817,-0.020220508798957],[0.027744792401791,-0.041324697434902,0.029970260336995],[0.045305836945772,-0.054318357259035,0.051512312144041]],[[0.027020530775189,-0.035058151930571,0.001662956783548],[-0.025222450494766,0.051338255405426,-0.036688968539238],[0.0042017321102321,-0.062540374696255,0.0608124807477]],[[0.018772965297103,0.030822494998574,-0.018390757963061],[-0.023354038596153,-0.0091690057888627,-0.026838701218367],[0.032013021409512,0.016886435449123,0.067447081208229]],[[0.025211002677679,-0.022765256464481,-0.020720375701785],[-0.011109058745205,0.00085085694445297,0.02136342972517],[0.052627991884947,0.027037236839533,-0.081595361232758]],[[-0.048084292560816,0.013431708328426,0.048149064183235],[0.01727450452745,0.060996778309345,0.030096191912889],[-0.02045439556241,-0.011633975431323,0.00069752836134285]],[[0.055368430912495,0.017607497051358,0.040101673454046],[0.01218397449702,0.016838010400534,0.012249763123691],[0.026560541242361,0.047484517097473,-0.01686136610806]],[[-0.017163624987006,0.035369671881199,0.085898958146572],[-0.0067294384352863,0.033806625753641,-0.0021876716054976],[-0.001563893049024,0.033861801028252,-0.060711722820997]],[[0.018427040427923,-0.021581266075373,0.047020919620991],[0.027336431667209,0.060268461704254,-0.03175849840045],[-0.017859030514956,-0.016578044742346,0.04649979621172]],[[0.064915046095848,0.0083216363564134,-0.055598739534616],[-0.031550724059343,0.057692535221577,0.013536476530135],[-0.08382560312748,-0.019721677526832,-0.023398950695992]],[[0.063091896474361,0.071502581238747,0.025245269760489],[-0.046520330011845,0.048641707748175,0.0050409641116858],[0.045418687164783,-0.046729404479265,0.026532799005508]],[[0.0036816617939621,0.0064283278770745,0.024029046297073],[-0.016252469271421,-0.0049091386608779,-0.040686428546906],[0.017006948590279,0.032184023410082,0.017995985224843]],[[0.018518451601267,0.03568797186017,0.024894734844565],[0.085860848426819,0.061802066862583,0.023213492706418],[-0.022231668233871,0.021436039358377,-0.021839184686542]],[[0.029311696067452,0.045091606676579,0.032732509076595],[-0.029917296022177,-0.059839531779289,0.060564447194338],[0.01683802343905,0.0097881080582738,-0.013782118447125]],[[-0.011417341418564,-0.035564750432968,0.0073616309091449],[0.013996076770127,-0.022712768986821,0.040118131786585],[0.00035207220935263,0.032314952462912,0.072626106441021]],[[0.062240276485682,0.024772567674518,0.03258366510272],[-0.0069839172065258,-0.014503739774227,0.038392178714275],[-0.036946810781956,-0.0012879079440609,-0.047298118472099]],[[0.077411815524101,0.00087510631419718,-0.0027069943025708],[0.032404005527496,0.018119759857655,0.076964810490608],[-0.042955812066793,-0.0038845592644066,0.012000379152596]],[[-0.050920691341162,0.056691654026508,0.01803894340992],[0.00086270913016051,0.0077375085093081,-0.030870476737618],[0.069569192826748,-0.056500788778067,0.082585461437702]],[[0.038798432797194,0.041620030999184,-0.01508585177362],[-0.02488268725574,0.069731451570988,0.0033743320964277],[0.091328740119934,0.021711314097047,-0.022334702312946]],[[0.018885960802436,0.025451067835093,0.027669358998537],[-0.014415361918509,0.0048969993367791,0.014540815725923],[0.00472108181566,0.0031491029076278,0.016496751457453]],[[-0.036956574767828,-0.034529484808445,0.02958613075316],[0.041266329586506,-0.067931830883026,0.034102734178305],[-0.0071205808781087,0.063371002674103,0.076164215803146]],[[0.023585040122271,0.010805794037879,0.0050467583350837],[-0.082477383315563,-0.016913762316108,0.039574161171913],[0.00068365701008588,0.092464819550514,0.020243426784873]],[[-0.10953902453184,-0.0087853260338306,-0.059785813093185],[0.0039387736469507,-0.087420985102654,-0.012416562996805],[-0.014934970065951,0.032274663448334,0.013406002894044]],[[0.046136055141687,-0.032775182276964,0.041120074689388],[0.010776041075587,-0.030430369079113,0.022401014342904],[-0.018266221508384,0.017441662028432,-0.045224938541651]],[[-0.06086277961731,-0.040579207241535,0.0033479330595583],[-0.039551854133606,0.04490477964282,0.080701150000095],[0.047205440700054,0.065213695168495,-0.084828741848469]],[[0.018342303112149,-0.0081013888120651,-0.070081889629364],[-0.021885994821787,0.0090272473171353,-0.042037844657898],[0.01529021281749,0.019196795299649,-0.030821081250906]],[[0.039922893047333,-0.037298370152712,0.016028732061386],[0.048098843544722,0.016258575022221,0.068372070789337],[-0.0022743802983314,0.024452028796077,0.028979504480958]],[[0.070558816194534,0.012054135091603,0.024629171937704],[-0.0099369566887617,0.036368973553181,-0.0010980971856043],[-0.024652795866132,0.036215454339981,-0.020293181762099]],[[-0.045534588396549,0.057105462998152,-0.068656742572784],[-0.022265756502748,0.017908832058311,0.056034546345472],[-0.011962786316872,0.043720915913582,0.012244185432792]],[[-0.031259510666132,0.024412535130978,0.0012664439855143],[0.029530705884099,-0.011213063262403,-0.0059774299152195],[-0.0050988658331335,0.050411362200975,0.020975701510906]],[[-0.031373284757137,-0.025468043982983,0.014057711698115],[0.066649451851845,0.017509719356894,0.024252751842141],[-0.085724651813507,0.014326967298985,-0.017347559332848]],[[-0.022673754021525,-0.0074958885088563,0.034965079277754],[-0.060062870383263,-0.0047735241241753,-0.034061744809151],[-0.026731014251709,0.027739768847823,-0.0024426199961454]],[[0.036842331290245,0.0047465646639466,0.023708328604698],[0.01383213698864,0.023005792871118,0.0038324613124132],[-0.03208877146244,0.0067291134037077,-0.0023426508996636]],[[-0.060620673000813,-0.049655321985483,0.02570278942585],[0.030342804268003,0.10313230752945,0.031332328915596],[-0.015445277094841,0.043910712003708,0.046896249055862]],[[0.015423099510372,-0.00090173480566591,-0.057033285498619],[-0.035216875374317,-0.044449787586927,-0.0056410534307361],[0.040106516331434,-0.035452157258987,0.00044032203732058]],[[-0.0062289363704622,0.02583377994597,0.035638451576233],[-0.022098476067185,0.0041593834757805,0.062357734888792],[-0.003143762005493,-0.019973777234554,-0.10484604537487]],[[0.0059105497784913,0.07434669137001,0.0073046172037721],[0.027525242418051,-0.026827000081539,0.023351872339845],[-0.035392720252275,0.021991258487105,0.0070519498549402]],[[-0.045393474400043,0.11845271289349,-0.040563851594925],[0.047958217561245,-0.018445130437613,-0.026377147063613],[-0.05052636936307,-0.017161641269922,-0.022594232112169]],[[0.0053521106019616,-0.029394088312984,-0.024042665958405],[-0.04211762174964,0.056260827928782,-0.063231311738491],[0.019195437431335,0.039836499840021,0.028309512883425]],[[0.012167307548225,0.045221962034702,0.00018492004892323],[-0.011255649849772,-0.0080816755071282,-0.0029441714286804],[-0.015748562291265,0.0062710344791412,-0.022727524861693]],[[-0.0023911071475595,0.022970272228122,0.034784685820341],[0.035908561199903,0.082559265196323,0.0089078871533275],[0.047483891248703,0.027511704713106,0.016768474131823]],[[-0.005468288436532,0.019722901284695,0.023360658437014],[-0.04303677380085,-0.057972151786089,-0.042012173682451],[-0.0016307011246681,-0.084061771631241,0.039626643061638]],[[-0.033210407942533,-0.015564765781164,-0.018652822822332],[0.027407564222813,0.024048883467913,0.03008727170527],[-0.026374069973826,0.062670491635799,0.011297672055662]],[[0.0019102429505438,0.0023370734415948,-0.066244311630726],[-0.028255648910999,-0.043786991387606,-0.0094905719161034],[0.010471239686012,0.045642200857401,0.00062038702890277]],[[0.051107786595821,0.035970538854599,-0.0095267426222563],[-0.029120866209269,-0.03028653934598,0.035337600857019],[0.031630504876375,0.07661347836256,-0.022847199812531]],[[0.0076741524972022,0.049617029726505,-0.0021004346199334],[-0.027022704482079,-0.046715762466192,0.025807669386268],[-0.026287717744708,0.0063608614727855,0.042456828057766]],[[0.028917388990521,0.009530721232295,0.0019310136558488],[-0.0075923106633127,0.045303110033274,0.027133734896779],[0.034482382237911,-0.021299999207258,-0.030720986425877]],[[0.0036810205783695,0.063513241708279,-0.0076854657381773],[-0.055628564208746,0.053970500826836,0.051177360117435],[-0.012846822850406,0.014452014118433,0.0013408430386335]],[[0.0096090761944652,0.034153301268816,0.082416221499443],[0.058162197470665,-0.079770177602768,-0.079555712640285],[0.033056508749723,-0.0062419199384749,-0.012434524483979]],[[-0.032339677214622,-0.023042052984238,0.011826824396849],[-0.014318755827844,-0.070357866585255,-0.017554480582476],[0.0064711053855717,0.044836904853582,-0.028653874993324]],[[0.032452810555696,0.075095683336258,-0.050374008715153],[-0.053922731429338,0.041209120303392,-0.025619577616453],[0.0044830027036369,0.0074673118069768,0.019132202491164]],[[-0.0032262757886201,-0.032826758921146,-0.0070248912088573],[0.053501162678003,0.02649263292551,-0.00063123169820756],[-0.08475948125124,0.058153230696917,0.013334181159735]],[[-0.0016330933431163,-0.026248794049025,-0.032659988850355],[-0.00016416367725469,-0.093911409378052,0.011098124086857],[0.034043349325657,-0.04810493439436,-0.0035932906903327]],[[-0.034535475075245,-0.021176818758249,0.0022581189405173],[-0.029150145128369,-0.049070671200752,0.086815662682056],[0.0033842257689685,0.024089559912682,0.0051160329021513]],[[0.046153217554092,0.030148983001709,0.010971341282129],[0.022294871509075,-0.0039012243505567,-0.023281171917915],[-0.012350539676845,0.0096877831965685,0.0064970660023391]],[[0.055081814527512,-0.012328818440437,-0.020151620730758],[0.013074270449579,0.076972797513008,-0.0089393528178334],[-0.0099621145054698,-0.0030232060234994,0.051295261830091]],[[-0.023605920374393,0.04793032631278,-0.036149069666862],[-0.0066331163980067,0.043293971568346,-0.027449475601315],[0.00019127273117192,0.091645710170269,-0.027827357873321]],[[0.016639096662402,0.059047132730484,0.011446680873632],[0.017425458878279,0.055854219943285,-0.060168873518705],[-0.024232730269432,-0.026449389755726,-0.065739996731281]],[[-0.11475037038326,0.022959962487221,-0.062523283064365],[-0.033663123846054,-0.052721191197634,-0.010809443891048],[-0.031836155802011,-0.010005882941186,-0.024399800226092]],[[-0.00012450598296709,0.024561492726207,0.011310451664031],[0.070477291941643,-0.027233794331551,0.0037620237562805],[-0.084786973893642,-0.0087457671761513,-0.025610422715545]],[[-0.0071684964932501,-0.052027836441994,-0.044571690261364],[-0.086290664970875,-0.053634695708752,0.018595481291413],[-0.10552067309618,-0.053734626621008,-0.057090736925602]],[[-0.05250633507967,-0.0008765030070208,0.0055960854515433],[0.060597516596317,-0.0169896800071,0.010577463544905],[0.033495031297207,-0.061545353382826,-0.066623210906982]],[[0.0050586559809744,-0.071280062198639,0.01336960028857],[-0.011976878158748,0.032028287649155,0.017725421115756],[-0.004889789968729,0.058103814721107,-0.0057776970788836]],[[-0.017176641151309,0.053146030753851,0.0044784597121179],[0.041251078248024,-0.017986077815294,-0.014841889031231],[0.05253766104579,0.054453510791063,-0.01610129326582]],[[0.031375672668219,-0.027014337480068,0.084588937461376],[0.0505978949368,-0.019176507368684,0.066387169063091],[-0.017884913831949,0.054770644754171,0.025150805711746]],[[0.015506251715124,0.033091690391302,-0.066700913012028],[-0.022940184921026,-0.048438619822264,0.011349678970873],[0.062997415661812,0.040841091424227,-0.022964159026742]],[[0.037727542221546,-0.04200429096818,-0.025610050186515],[0.031714465469122,0.00019642943516374,-0.0021877950057387],[0.064188912510872,0.0019505646778271,0.032903026789427]],[[0.0056638750247657,0.00037289666943252,0.044858541339636],[-0.030667198821902,0.026773683726788,-0.017515746876597],[0.012563729658723,-0.0071998625062406,0.02538332901895]]],[[[-0.043435849249363,0.0093614105135202,-0.021454481408],[-0.026669785380363,0.020761929452419,0.018118051812053],[0.03104599379003,0.027500614523888,-0.036666598170996]],[[-0.012912075035274,0.012307499535382,0.025880536064506],[-0.014552092179656,-0.0052412743680179,-0.013167280703783],[0.037859741598368,-0.017117466777563,-0.036986958235502]],[[-0.086974062025547,-0.024791168048978,-0.018376190215349],[-0.0061207697726786,-0.054250057786703,0.0064415740780532],[0.054013341665268,0.032713431864977,0.022011434659362]],[[-0.012903754599392,-0.018690649420023,-0.098668336868286],[0.049401592463255,0.057526256889105,0.026055166497827],[0.030997587367892,0.065184570848942,0.10872536152601]],[[-0.014115730300546,0.018127037212253,0.0066883405670524],[0.0080952756106853,0.025312334299088,-0.0089636351913214],[-0.014789051376283,-0.029619373381138,-0.040060050785542]],[[-0.0047140335664153,-0.05064420774579,0.027261584997177],[0.040822334587574,0.015485776588321,-0.04179747402668],[0.014905248768628,0.026153879240155,-0.0072174891829491]],[[-0.015396814793348,0.019933586940169,-0.026191150769591],[0.020513838157058,0.0016570122679695,-0.05771155282855],[-0.0064431931823492,-0.025681404396892,0.0038844845257699]],[[-0.0079866936430335,0.028868256136775,-0.033667057752609],[-0.048958621919155,0.064294636249542,-0.041940819472075],[0.0083555951714516,0.021998895332217,0.024048903957009]],[[0.095044426620007,0.0286585688591,0.058669786900282],[0.033861022442579,-0.039725180715322,0.067393764853477],[-0.022744081914425,0.012966131791472,0.031887661665678]],[[0.0015848709736019,-0.013579181395471,0.044213488698006],[-0.033214550465345,0.02359352633357,-0.013497180305421],[-0.019948279485106,0.041527878493071,0.0051326584070921]],[[-0.050131376832724,0.014499821700156,-0.05976814031601],[0.040056135505438,0.024845454841852,0.0033025573939085],[-0.037414863705635,-0.01409921143204,-0.025291759520769]],[[-0.0017564388690516,-0.041889280080795,0.020064510405064],[-0.0061311274766922,0.086811274290085,-0.0088042672723532],[-0.027169046923518,0.0052025537006557,-0.073849394917488]],[[0.066159829497337,0.071316383779049,0.023552801460028],[0.098990760743618,0.042159292846918,0.070723123848438],[0.032251473516226,0.067387484014034,0.19469930231571]],[[0.040817994624376,0.010097757913172,-0.029469573870301],[0.082022592425346,-0.0064646257087588,-0.052772805094719],[-0.040408905595541,0.13821844756603,0.013370202854276]],[[0.034410037100315,0.0072675221599638,0.062295150011778],[0.11160416156054,0.11656802147627,0.048040561378002],[0.12737646698952,0.01071307156235,-0.0012414107332006]],[[0.0024011400528252,0.0044429856352508,0.023426717147231],[0.030791729688644,0.033545851707458,-0.034017760306597],[0.080963999032974,0.0041470201686025,0.084377266466618]],[[-0.0076538808643818,0.046596258878708,0.0050918818451464],[-0.059062652289867,-0.0002517721732147,0.027157684788108],[0.029290016740561,-0.075951181352139,0.0031425296328962]],[[0.027697369456291,-0.035084813833237,-0.035334747284651],[-0.027552610263228,0.015483054332435,-0.048557676374912],[0.014001688919961,0.040799919515848,-0.026710104197264]],[[0.020076522603631,-0.0051870751194656,-0.0012993997661397],[0.014691466465592,-0.0056088105775416,-0.014453195035458],[0.0082287956029177,-0.01395760755986,0.038460671901703]],[[0.06033344194293,0.022330325096846,-0.012134623713791],[0.079170256853104,0.011955040507019,-0.052176222205162],[-0.011177092790604,0.066125057637691,-0.050458829849958]],[[0.0017526347655803,0.016247104853392,0.0042739231139421],[-0.00051969749620184,0.015006796456873,0.0050431513227522],[0.017779443413019,-0.013212447986007,0.016319805756211]],[[0.0549556016922,0.022833170369267,0.0076226023957133],[0.051545932888985,-0.019229805096984,0.0088442387059331],[-0.0024866701569408,0.013153566047549,0.062512584030628]],[[-0.047928467392921,0.0003161400090903,0.065904460847378],[-0.043343085795641,-0.018812417984009,0.046105492860079],[0.038665041327477,0.039428897202015,-0.0056666936725378]],[[-0.046238210052252,-0.021929703652859,0.044579777866602],[-0.051512561738491,0.031346309930086,0.002711811568588],[0.0058060926385224,-0.059536676853895,0.093063145875931]],[[0.026577923446894,-0.056159801781178,0.049198493361473],[0.089349962770939,-0.0034495773725212,0.018691157922149],[0.086397789418697,0.085998527705669,-0.057390246540308]],[[0.012419536709785,0.014949569478631,-0.00093906797701493],[-0.028165981173515,-0.07414934784174,-0.015418353490531],[-0.017806297168136,-0.025450037792325,0.032482016831636]],[[0.080119237303734,0.045147959142923,0.039000552147627],[0.054906342178583,0.090219482779503,0.096888437867165],[0.043094910681248,0.053974248468876,0.073148876428604]],[[-0.0041020084172487,-0.0052321697585285,-0.0022215710487217],[-0.015508634969592,-0.036657977849245,-0.015124733559787],[0.0035962136462331,-0.0091694993898273,0.01000580471009]],[[0.095238044857979,0.13405391573906,-0.011546081863344],[-0.014421727508307,-0.026059037074447,0.083118863403797],[0.013242991641164,0.062390293926001,0.0040515474975109]],[[-0.063000239431858,0.039818540215492,0.0091916089877486],[0.025060076266527,-0.013184922747314,0.052054904401302],[0.020745562389493,-0.016823841258883,-0.032312676310539]],[[0.0063042738474905,0.034252166748047,-0.015798965469003],[-0.00085184985073283,0.050270233303308,-0.0134022757411],[0.008972474373877,0.02098055370152,0.029198845848441]],[[0.05117042735219,0.010553800500929,0.011487416923046],[-0.050329755991697,-0.012651433236897,0.014020094648004],[0.078520506620407,0.017167372629046,0.047636929899454]],[[-0.019126458093524,0.044600285589695,0.037571620196104],[-0.038903295993805,0.040381249040365,0.041191201657057],[0.027489308267832,-0.015410902909935,-0.048407949507236]],[[-0.016345800831914,-0.024940984323621,0.10123393684626],[9.2357295216061e-06,-0.0078076743520796,0.013506853953004],[-0.019493240863085,0.034060377627611,-0.018885027617216]],[[-0.035733137279749,-0.020727012306452,0.056910216808319],[0.025639476254582,-0.026162164285779,-0.015843601897359],[0.032299499958754,-0.032234773039818,0.05290324613452]],[[0.035485669970512,-0.043499130755663,0.011320468038321],[-0.048625528812408,-0.018040493130684,-0.036321315914392],[-0.006811220664531,0.0030828074086457,0.031801264733076]],[[-0.012017311528325,0.042924523353577,0.072000794112682],[-0.04549602791667,0.016153499484062,0.041432071477175],[-0.019124794751406,-0.045402128249407,0.029288563877344]],[[-0.14273951947689,-0.03845301643014,0.034113790839911],[-0.012643745169044,0.024047622457147,-0.028622806072235],[-0.0032353808637708,-0.042203966528177,0.023015350103378]],[[-0.051144350320101,0.055087465792894,-0.020122788846493],[-0.09131184220314,0.10945719480515,-0.0022815293632448],[0.025561440736055,-0.067921742796898,-0.045200388878584]],[[-0.043146908283234,0.019584219902754,0.0023946303408593],[-0.0040959143079817,0.032838765531778,-0.0066219330765307],[0.023362625390291,0.040282744914293,0.036932963877916]],[[0.14310726523399,0.013923751190305,0.048112887889147],[0.05185130611062,-0.002796912798658,0.067534163594246],[0.069572985172272,-0.013078537769616,-0.12805923819542]],[[-0.063665881752968,0.050031840801239,-0.022405114024878],[0.02931010723114,-0.0024667079560459,-0.0012830388732255],[-0.041818775236607,-0.040591258555651,0.045835487544537]],[[-0.0059023615904152,0.02636525593698,0.026664491742849],[0.045813992619514,0.029769307002425,-0.019081436097622],[0.025579612702131,-0.024961745366454,0.07947102189064]],[[0.0098606962710619,0.0029739630408585,-0.045726630836725],[-0.0085040312260389,0.0014744522050023,0.032109580934048],[-0.013511096127331,0.019395273178816,-0.033951748162508]],[[0.047670099884272,0.102175809443,0.068500891327858],[-0.14635297656059,0.019560033455491,0.086274549365044],[-0.020310901105404,-0.0024504174944013,0.031938664615154]],[[0.02084905654192,-0.080321401357651,0.069689184427261],[-0.011163407936692,0.04669551551342,-0.037365712225437],[-0.034095302224159,0.036672260612249,-0.024756867438555]],[[0.050031684339046,-0.017571985721588,-0.037827838212252],[0.035597711801529,0.021466152742505,0.083404123783112],[-0.0032936260104179,-0.0005407800199464,-0.011757431551814]],[[0.024288225919008,0.019872879609466,-0.01271206792444],[-0.088378541171551,0.0033602460753173,-0.079405151307583],[-0.025968506932259,0.055843025445938,-0.0069353403523564]],[[-0.029397552832961,-0.063877515494823,0.010799075476825],[-0.048515129834414,-0.039195090532303,-0.037227056920528],[0.023617813363671,-0.092424221336842,-0.05814054608345]],[[-0.070566244423389,-0.035109736025333,-0.031761612743139],[0.0038563774432987,0.0054236240684986,-0.036109954118729],[0.016666857525706,-0.0020504426211119,0.03062536008656]],[[0.042802795767784,0.05880668759346,0.031002642586827],[0.0082107782363892,0.032345239073038,0.082996807992458],[-0.0089750671759248,-0.014836846850812,-0.039506074041128]],[[0.0045919353142381,-0.043120063841343,0.0076406607404351],[0.04834521189332,-0.013835633173585,0.033645369112492],[-0.022039946168661,-0.0028388297650963,-0.052072357386351]],[[0.015946265310049,0.009010692127049,-0.063572019338608],[-0.026226675137877,-0.078481458127499,0.0055630966089666],[-0.058309845626354,0.0078276880085468,-0.0064412802457809]],[[-0.015419604256749,0.062540307641029,0.0029601193964481],[0.046502683311701,-0.059244658797979,0.021791623905301],[-0.019906824454665,0.10715088993311,0.00083304429426789]],[[-0.023031651973724,-0.030259856954217,-0.0010505396639928],[0.12620317935944,0.0028117869514972,0.045941483229399],[0.16043031215668,0.06263479590416,-0.0013527936534956]],[[-0.088251106441021,-0.0082809776067734,0.011752065271139],[0.091790199279785,0.0024482505396008,-0.02316509373486],[-0.012437084689736,0.055006310343742,0.0055905836634338]],[[-0.017569264397025,0.046094201505184,-0.054814863950014],[0.055495020002127,0.06363433599472,0.045424491167068],[-0.018787072971463,-0.0089016268029809,0.02960941940546]],[[0.010730741545558,0.035615973174572,0.020885610952973],[0.015587037429214,0.016906468197703,-0.031419266015291],[0.025239268317819,-0.043067153543234,-0.064169071614742]],[[0.016819547861814,0.055192030966282,0.0050416430458426],[-0.04282583296299,0.10162661969662,0.027209399268031],[0.02965628169477,-0.044486459344625,0.015347188338637]],[[0.074065953493118,0.042825229465961,0.044282212853432],[-0.070537246763706,0.0089192474260926,-0.027758797630668],[0.079662851989269,-0.024118479341269,0.022557264193892]],[[0.0075232344679534,-0.046098526567221,-0.014290704391897],[0.055970497429371,0.026355965062976,0.020941406488419],[0.00087837153114378,0.037507865577936,0.069204770028591]],[[0.028214488178492,-0.021152034401894,0.043474555015564],[0.080085568130016,-0.015595871955156,0.02898296713829],[0.083060286939144,0.029103951528668,-0.07574562728405]],[[0.017572635784745,0.008976299315691,0.0089697623625398],[0.037792827934027,0.0050379671156406,0.020180314779282],[0.016397170722485,-0.019555630162358,0.046594370156527]],[[0.01937891729176,0.032560683786869,-0.067550957202911],[-0.052371203899384,0.028234036639333,0.074990049004555],[0.0015343968989328,-0.017445743083954,-0.0049634897150099]],[[0.023784335702658,0.039184466004372,0.00063594605308026],[-0.019912354648113,-0.031207112595439,0.0043155970051885],[0.0048978002741933,0.060549613088369,0.062301594763994]],[[0.020770289003849,0.022700794041157,0.044001575559378],[-0.011868849396706,0.0085491435602307,-0.014869015663862],[0.042955379933119,0.043126508593559,0.026158381253481]],[[-0.002553757512942,-0.053115602582693,0.018768560141325],[0.037966396659613,0.068139962852001,-0.01295424811542],[-0.012005049735308,-0.043915931135416,0.083204850554466]],[[-0.063137345016003,-0.011260661296546,0.012737769633532],[-0.013514835387468,0.05924990400672,0.0083923861384392],[-0.022029278799891,0.066879794001579,-0.026658440008759]],[[-0.015337995253503,-0.1122399866581,0.028833720833063],[0.0092241587117314,0.12971480190754,-0.0067320596426725],[0.045418202877045,0.053239561617374,0.082153484225273]],[[-0.037427876144648,0.022210085764527,-0.0086535774171352],[0.0014693943085149,0.020828975364566,-0.077197551727295],[-0.012610553763807,0.06653555482626,0.0023723999038339]],[[-0.027795970439911,0.085253350436687,-0.010026560164988],[0.015339352190495,0.0074541862122715,-0.049860384315252],[0.027185842394829,0.031296592205763,0.069224946200848]],[[0.029917990788817,0.071742989122868,0.02414982393384],[-0.0014515875373036,-0.10656019300222,-0.018991287797689],[0.011107516475022,-0.0064090108498931,-0.079977042973042]],[[-0.023739017546177,0.017525222152472,0.0084272855892777],[0.040690336376429,-0.069732703268528,-0.016535108909011],[-0.024334257468581,-0.0085990931838751,-0.027142036706209]],[[0.03100379742682,0.0059477086178958,0.0037446874193847],[0.023952644318342,0.0036641403567046,-0.0095392717048526],[-0.026503033936024,-0.039775267243385,0.0523193590343]],[[-0.030846234411001,-0.036031313240528,0.01873654872179],[0.025298239663243,-0.040245000272989,-0.019103871658444],[0.076217852532864,-0.0025473546702415,0.073084138333797]],[[0.024926109239459,0.00235814624466,-0.0054585142061114],[-0.049529880285263,-0.020041497424245,0.084787115454674],[-0.068673357367516,0.032463669776917,0.018631586804986]],[[0.058653056621552,0.0020083552226424,-0.0012666814727709],[0.03016434237361,0.022258082404733,0.049098040908575],[0.024156445637345,0.029029432684183,0.050771526992321]],[[-0.098666206002235,0.080798909068108,0.020233310759068],[0.014554151333869,0.0050172051414847,-0.089830547571182],[0.063953377306461,0.058283571153879,-0.0041453302837908]],[[-0.0054663899354637,0.017348602414131,-0.025892406702042],[0.019621420651674,0.023294491693377,-0.039965201169252],[0.025595296174288,-0.0089965825900435,0.010078703053296]],[[0.039277467876673,-0.034809187054634,0.018983336165547],[0.076321609318256,-0.016115238890052,-0.016779335215688],[-0.012440732680261,0.044815011322498,-0.00050399143947288]],[[0.12321990728378,0.056733168661594,0.036272875964642],[0.082344599068165,0.051226850599051,-0.053955923765898],[-0.015697680413723,-0.017028871923685,-0.0087069384753704]],[[-0.0086483648046851,0.077104270458221,-0.018229722976685],[0.058726113289595,0.090452745556831,0.076038330793381],[-0.0080298101529479,0.042889885604382,0.028776248916984]],[[-0.079453207552433,0.032414633780718,0.040048014372587],[0.039335004985332,-0.016643669456244,0.026598634198308],[0.043638043105602,0.0034847685601562,-0.025811960920691]],[[-0.087246924638748,0.0038665854372084,-0.013537351973355],[0.062602050602436,-0.013442681171,0.042404219508171],[-0.022375779226422,0.067267797887325,0.059228327125311]],[[0.010411855764687,0.067719712853432,0.05530483648181],[-0.055429734289646,-0.0060126478783786,-0.045580204576254],[-0.00426682876423,0.0025624989066273,-0.13146509230137]],[[-0.063834436237812,-0.055118601769209,-0.045025873929262],[0.033281289041042,-0.042946584522724,-0.014994439668953],[0.024012304842472,-0.011365180835128,0.039961036294699]],[[-0.012962864711881,-0.013841778039932,0.055301479995251],[0.081107757985592,-0.023372728377581,-0.043079350143671],[0.034236669540405,0.095295168459415,0.040767434984446]],[[-0.019508019089699,-0.0083780139684677,0.030027439817786],[-0.042190484702587,-0.052335541695356,0.015847872942686],[-0.068040043115616,-0.025710791349411,0.0001772892428562]],[[0.0052347923628986,-0.019276237115264,-0.043582074344158],[0.067866787314415,0.077861964702606,0.058189421892166],[-0.005186871625483,-0.058677677065134,0.027784563601017]],[[0.027242127805948,0.057421404868364,-0.080886878073215],[-0.017784120514989,0.040229078382254,-0.0070589557290077],[-0.039976723492146,-0.071925692260265,0.0061488091014326]],[[-0.0053987363353372,0.04220812395215,0.045351903885603],[-0.048173394054174,0.046229973435402,0.051804732531309],[0.019994039088488,-0.0067632705904543,0.046191029250622]],[[-0.049275498837233,-0.059005204588175,0.028508827090263],[-0.035156197845936,-0.016067054122686,-0.04090553149581],[-0.055299613624811,-0.039971277117729,-0.021733999252319]],[[0.035342309623957,-0.053053695708513,0.057309370487928],[0.042389534413815,-0.0057843853719532,-0.012601599097252],[-0.0074853585101664,0.034236270934343,0.01903304643929]],[[0.01879309117794,-0.0044202418066561,-0.026032591238618],[-0.078226089477539,0.004703433252871,0.014612911269069],[-0.013210708275437,0.022488271817565,-0.028315175324678]],[[-0.0082355998456478,0.0044060875661671,0.033218465745449],[0.00041841226629913,-0.030494680628181,-0.0074637336656451],[-0.015795923769474,0.0021226084791124,-0.022601064294577]],[[-0.042224954813719,0.0090519795194268,0.0011712601408362],[-0.019741412252188,0.055406536906958,-0.030816560611129],[-0.035026852041483,-0.002838522195816,-0.023493172600865]],[[0.030199863016605,0.097489431500435,0.043273702263832],[0.022637881338596,-0.088095381855965,0.027231007814407],[0.028888845816255,0.010831130668521,0.051179736852646]],[[0.074918553233147,0.052513103932142,-0.00013071353896521],[-0.00022983978851698,-0.0043215788900852,0.061315797269344],[0.079257406294346,0.003692889586091,0.13440573215485]],[[0.02650965936482,-0.0011342306388542,0.043935503810644],[-0.060033090412617,-0.0015243840171024,0.010470932349563],[-0.023666143417358,-0.062339920550585,-0.034722320735455]],[[0.014424102380872,0.08930154889822,0.028839202597737],[0.081150881946087,0.022273169830441,-0.014761599712074],[0.047749757766724,-0.029197506606579,0.11789671331644]],[[0.072184346616268,-0.044288769364357,0.010871272534132],[-0.025154873728752,-0.0051876036450267,-0.04886632412672],[-0.036187473684549,0.0059096976183355,-0.061597999185324]],[[-0.013592121191323,0.015126713551581,0.04799072816968],[-0.055516842752695,-0.0022764354944229,0.0025706051383168],[0.059702899307013,-0.0013731402577832,0.011866887100041]],[[0.021026700735092,0.028474893420935,-0.037684932351112],[0.04867247864604,0.019515695050359,0.0037364093586802],[0.051928907632828,-0.07109310477972,0.025817787274718]],[[-0.039940506219864,-0.037892483174801,0.012254933826625],[0.021608242765069,-0.002890671370551,-0.0081032244488597],[-0.041939463466406,-0.027488961815834,-0.0015164003707469]],[[0.019033020362258,0.040272951126099,0.022401766851544],[-0.02212155610323,-0.074630990624428,-0.001443832879886],[0.041362889111042,-0.011890473775566,0.0027356061618775]],[[0.026792826130986,0.056096196174622,-0.050806239247322],[-0.023565091192722,0.023830533027649,0.026735058054328],[0.021236771717668,0.038683760911226,-0.0053622899577022]],[[0.007102532312274,0.0033555577974766,0.0054419068619609],[0.013824512250721,-0.011254063807428,0.064225405454636],[0.083400897681713,-0.0010899191256613,0.073296822607517]],[[-0.0052371104247868,-0.010701142251492,-0.029810395091772],[0.024616532027721,-0.047074988484383,-0.0015283287502825],[0.051132414489985,0.0028729857876897,0.053914956748486]],[[0.0080534052103758,-0.014335357584059,-0.028034549206495],[-0.020942263305187,0.0055101974867284,-0.052996505051851],[-0.066777497529984,-0.013615191914141,0.049514926970005]],[[-0.077016711235046,0.071722507476807,0.0093547757714987],[0.01675832644105,-0.023425506427884,0.0017828634008765],[-0.018692536279559,0.014087803661823,-0.030527206137776]],[[0.013705370947719,-0.0077387876808643,-0.008769016712904],[-0.057859670370817,0.04190431162715,-0.021907607093453],[0.011584689840674,-0.033082745969296,0.039064735174179]],[[-0.081971295177937,-0.0076473653316498,-0.014996074140072],[-0.021276909857988,-0.019153608009219,-0.019770592451096],[-0.010697487741709,0.11369769275188,0.05393373593688]],[[0.027253279462457,-0.013655968941748,-0.029205866158009],[-0.063703373074532,-0.085752449929714,-0.084662236273289],[0.066867083311081,0.064518764615059,0.038793221116066]],[[-0.037461128085852,0.011343342252076,-0.0021271805744618],[-0.0081234220415354,-0.071667477488518,0.010333855636418],[-0.024347359314561,-0.042801469564438,-0.011793506331742]],[[0.038750518113375,-0.0054150121286511,0.014940171502531],[-0.00080186111154035,-0.06470875442028,0.0093761924654245],[0.064108304679394,-0.05683221668005,-0.04247747734189]],[[-0.0038118853699416,-0.020989339798689,-0.038678959012032],[-0.08060597628355,-0.013117913156748,0.0098942145705223],[-0.013166535645723,-0.07313048094511,0.016977371647954]],[[0.016637505963445,-0.018570946529508,-0.057219561189413],[-0.022458942607045,0.027839876711369,-0.026742959395051],[0.021223748102784,0.062971130013466,-0.031712222844362]],[[-0.016409074887633,0.011521756649017,-0.010966776870191],[0.055685121566057,0.014489341527224,-0.029946953058243],[-0.008206794038415,0.049133792519569,0.047808807343245]],[[-0.066391564905643,-0.0090673072263598,-0.021674668416381],[-0.055055037140846,-0.010797432623804,0.0019680960103869],[-0.0093575706705451,-0.010763772763312,-0.035188309848309]],[[0.079947285354137,-0.00061956379795447,-0.022857459262013],[0.053441133350134,-0.035262789577246,0.004071035888046],[0.033827934414148,0.027776828035712,-0.024718947708607]],[[0.03520930185914,0.028790825977921,0.032319363206625],[-0.036917079240084,-0.046261485666037,-0.052890289574862],[0.098305746912956,-0.009128013625741,-0.0052841161377728]],[[-0.089177794754505,0.0028638776857406,0.0095887258648872],[0.028238942846656,-0.00026108769816346,-0.038536459207535],[-0.088145978748798,-0.030742578208447,-0.014171761460602]],[[-0.003783309366554,-0.031764719635248,-0.04113482311368],[0.04083664342761,-0.075131297111511,0.053743086755276],[0.0037876269780099,-0.014568719081581,-0.017294118180871]],[[0.0045110317878425,0.082920156419277,-0.023580122739077],[-0.049312446266413,-0.0084894234314561,0.025036867707968],[-0.070064134895802,-0.025229496881366,-0.039796996861696]],[[0.076158165931702,-0.023518994450569,0.0046116504818201],[0.035526763647795,-0.0076305088587105,0.012019456364214],[-0.044162709265947,-0.041719991713762,-0.058962114155293]],[[0.041200719773769,-0.063834741711617,-0.038685668259859],[0.0029451299924403,0.082831956446171,-0.051643952727318],[0.021314565092325,0.02616318129003,0.021897479891777]],[[0.031470399349928,0.008621146902442,0.071399964392185],[0.077909640967846,0.00071896583540365,-0.047844864428043],[0.018689557909966,0.030004434287548,0.051460146903992]],[[-0.11652965843678,0.021376023069024,0.0066662547178566],[0.051349256187677,-0.042586233466864,0.027841551229358],[0.079631395637989,0.034906137734652,0.010139608755708]]],[[[0.1046447455883,-0.011740357615054,-0.089948780834675],[0.034622643142939,0.093335323035717,0.048736363649368],[-0.021727032959461,0.026710014790297,-0.0976457670331]],[[0.0087792547419667,-0.094433344900608,0.046655640006065],[-0.042935881763697,-0.014285312965512,-0.035667769610882],[-0.046796772629023,0.0038097717333585,-0.012709994800389]],[[0.077761821448803,0.0086999600753188,-6.8912973802071e-05],[-0.016252167522907,0.10747481137514,0.032501488924026],[0.0062310732901096,0.10606381297112,-0.18370279669762]],[[0.0019734611269087,-0.0072962711565197,0.05540069937706],[-0.036311957985163,0.055755667388439,-0.029077537357807],[-0.077055528759956,-0.0091670388355851,-0.041094116866589]],[[-0.015325141139328,0.027849145233631,-0.0017056778306141],[-0.089832581579685,0.01232987921685,0.016788115724921],[-0.0539311170578,0.09108380228281,-0.091712817549706]],[[-0.009513477794826,-0.015123365446925,0.070123128592968],[-0.049516592174768,-0.053596597164869,0.032578572630882],[0.013585553504527,-0.034986302256584,0.016919378191233]],[[-0.017094485461712,-0.0074490462429821,0.093471519649029],[0.021877612918615,0.05648223683238,-0.098231621086597],[-0.054737165570259,-0.036384843289852,-0.22334471344948]],[[0.055218324065208,0.073067538440228,-0.0065327230840921],[0.03529542312026,-0.054732248187065,-0.023155957460403],[0.022869357839227,0.003633355954662,-0.018462965264916]],[[0.010198574513197,-0.094982266426086,-0.059171829372644],[0.030082648620009,-0.10833042114973,0.087226338684559],[-0.014971283264458,-0.016966024413705,0.040306698530912]],[[0.035060130059719,0.06197614967823,0.018481455743313],[-0.008721879683435,-0.06074545159936,-0.075995095074177],[-0.021797738969326,-0.087352968752384,-0.044614091515541]],[[-0.052574995905161,-0.046155277639627,0.1179892718792],[-0.053610436618328,0.0010965339606628,0.0044294549152255],[-0.010258393362164,-0.097142860293388,-0.068090684711933]],[[0.076491557061672,0.053452521562576,-0.01996966637671],[-0.0023503766860813,-0.012360809370875,0.069136396050453],[-0.035402283072472,0.069766953587532,0.18531706929207]],[[0.1028024405241,0.013408774510026,0.057828426361084],[0.080540560185909,0.054402116686106,-0.035559114068747],[-0.015204189345241,-0.11381124705076,-0.141527146101]],[[0.012749104760587,0.0083943149074912,0.013942101970315],[-0.05934814363718,-0.012107672169805,-0.054614070802927],[0.020248448476195,-0.083160236477852,0.18680097162724]],[[-0.075962498784065,-0.031535271555185,0.0094065451994538],[-0.032678779214621,-0.099437639117241,0.02125065587461],[-0.010079123079777,0.043397504836321,-0.02076649479568]],[[-0.0024277751799673,0.053933225572109,0.054802518337965],[0.10164270550013,-0.028479728847742,-0.058725841343403],[0.027744444087148,-0.029092287644744,-0.071232907474041]],[[0.045207694172859,-0.0033045178279281,-0.083061262965202],[-0.032063324004412,0.08819530159235,-0.10302311182022],[-0.072605527937412,0.074882537126541,0.0069709881208837]],[[0.02838291041553,-0.0049571408890188,0.092604875564575],[0.080148279666901,0.078704498708248,-0.019987374544144],[-0.065947033464909,-0.018230652436614,-0.094557002186775]],[[0.07675363868475,-0.071559138596058,-0.12639875710011],[-0.11974085867405,-0.019024377688766,-0.011540281586349],[0.084737822413445,0.027454501017928,0.099602900445461]],[[0.10478898882866,0.15950952470303,-0.041734922677279],[0.045542526990175,0.035673994570971,0.09671837836504],[0.021371820941567,-0.0869160592556,-0.048103109002113]],[[0.069043815135956,-0.11048649996519,0.02546831779182],[-0.045496769249439,-0.071541003882885,-0.063645578920841],[-0.047627694904804,0.076778344810009,0.087209723889828]],[[0.060038413852453,0.01560356747359,0.11815354973078],[0.024462101981044,0.066350929439068,0.070097401738167],[0.024370240047574,-0.071847729384899,-0.02594742923975]],[[-0.11845841258764,-0.038078173995018,0.094438754022121],[-0.097728312015533,0.066425785422325,0.068082503974438],[-0.12760877609253,0.076975211501122,-0.02314991876483]],[[0.036692507565022,-0.055157117545605,0.015811186283827],[0.033449348062277,0.0023939695674926,0.083789922297001],[0.016833251342177,-0.12545144557953,-0.14863955974579]],[[-0.12940460443497,-0.020404029637575,0.18616622686386],[0.054048955440521,0.22745999693871,-0.043061163276434],[0.093365222215652,-0.024464940652251,0.29991713166237]],[[-0.024771127849817,-0.0048050452023745,-0.048218879848719],[-0.018183495849371,-0.11356649547815,-0.020081918686628],[-0.027585426345468,0.012665717862546,-0.095980018377304]],[[0.018205046653748,-0.035307440906763,-0.0081631997600198],[-0.00769426766783,-0.093537472188473,0.014653909951448],[-0.024016663432121,-0.02363532781601,0.041331235319376]],[[-0.014041158370674,0.061049237847328,0.048668127506971],[0.017404109239578,-0.055636018514633,-0.073610730469227],[-0.045089427381754,-0.022340405732393,-0.023667303845286]],[[0.013192627578974,0.06337509304285,0.089190237224102],[-0.084665633738041,0.081715181469917,0.10494212061167],[-0.12984852492809,0.017237111926079,0.038077984005213]],[[-0.058196168392897,-0.046966049820185,-0.042419262230396],[-0.20375363528728,-0.011402434669435,-0.013296860270202],[-0.00083135161548853,0.058825496584177,-0.075536176562309]],[[0.073800817131996,0.03134623169899,-0.11502902954817],[0.17425936460495,0.16104625165462,0.015516128391027],[0.043470125645399,0.09390202909708,-0.048466440290213]],[[-0.036329656839371,-0.021148012951016,0.014440625905991],[-0.0061858440749347,-0.082662351429462,0.019093943759799],[-0.11732094734907,0.087546356022358,-0.027898132801056]],[[0.05384037643671,0.026238273829222,0.062714822590351],[-0.02368931658566,-0.037893187254667,0.22490426898003],[0.11111110448837,-0.10709190368652,0.052403137087822]],[[-0.016327943652868,-0.031137440353632,-0.07268388569355],[-0.0062632984481752,-0.084821298718452,0.026379870250821],[-0.11322500556707,0.1398212313652,-2.4136665160768e-05]],[[-0.026647347956896,0.0084118470549583,-0.0074555776081979],[0.0065947081893682,-0.11747441440821,0.048958942294121],[-0.07980664819479,0.035589121282101,-0.042967163026333]],[[0.032635621726513,-0.044158719480038,0.028793210163713],[0.037191923707724,-0.04118986427784,-0.0088748307898641],[0.023212535306811,-0.11505655199289,-0.019492149353027]],[[-0.011221945285797,0.113067060709,-0.0067380047403276],[-0.026676410809159,-0.035336721688509,-0.055261664092541],[-0.05816338956356,0.0064556458964944,-0.067917548120022]],[[-0.092026017606258,0.033165048807859,-0.23187007009983],[-0.079939357936382,-0.055846814066172,-0.0096749095246196],[0.014643877744675,0.10773607343435,0.076556071639061]],[[0.017756847664714,0.0015418267576024,-0.083570048213005],[-0.065736494958401,0.067147523164749,0.10377089679241],[-0.088766828179359,-0.048588238656521,-0.24064925312996]],[[-0.07486467063427,0.13734413683414,-0.070060655474663],[-0.039672691375017,0.10878747701645,-0.040188625454903],[0.028240714222193,-0.07993870973587,0.12926098704338]],[[0.013708094134927,0.046019401401281,0.0018699276261032],[0.020071715116501,0.052981026470661,0.052521117031574],[0.10579992830753,-0.086087636649609,0.025655278936028]],[[0.0094238091260195,-0.029406173154712,-0.041194148361683],[-0.002055628458038,0.028728295117617,-0.083918005228043],[0.038768790662289,0.022785861045122,-0.1540894061327]],[[0.062377978116274,0.13669115304947,-0.062966778874397],[0.10497114807367,-0.063887864351273,0.059330094605684],[-0.027641978114843,-0.009933146648109,-0.063692927360535]],[[0.088056772947311,0.03561470285058,-0.0036356027703732],[0.055403798818588,0.014501786790788,0.019048860296607],[0.0082957586273551,-0.020362762734294,-0.042844664305449]],[[-0.040688045322895,-0.0013898678589612,-0.008018484339118],[0.053280025720596,-0.034097481518984,0.0084038656204939],[-0.0037480390165001,-0.041779842227697,0.13424298167229]],[[-0.038413628935814,0.088835574686527,0.01657253690064],[0.11175480484962,-0.009136569686234,0.022947728633881],[0.071172654628754,-0.0063909804448485,-0.0010038093896583]],[[0.019940383732319,-0.065241537988186,0.0028881342150271],[0.053491733968258,-0.022313725203276,-0.10155164450407],[-0.032699216157198,-0.045538637787104,-0.030867112800479]],[[-0.12934276461601,-0.10125090181828,0.077502727508545],[-0.02040340937674,-0.038070842623711,0.059732764959335],[0.062578365206718,-0.11763777583838,-0.006646073423326]],[[-0.028522884473205,-0.01105940528214,-0.10021430999041],[0.040759604424238,-0.039283849298954,-0.005779623053968],[-0.019430106505752,0.018056383356452,0.036770191043615]],[[-0.067532166838646,0.10151169449091,-0.0017537942621857],[0.092866443097591,-0.067611537873745,-0.070291697978973],[-0.23427584767342,-0.12087175250053,0.10597214102745]],[[0.046160224825144,-0.0099473102018237,0.10401054471731],[-0.042698040604591,-0.11767377704382,0.024220345541835],[-0.070365332067013,0.046771381050348,-0.010335161350667]],[[0.046866901218891,0.025990672409534,0.082407481968403],[0.022526549175382,-0.037253648042679,0.071663752198219],[-0.018810754641891,0.00049491808749735,-0.097855821251869]],[[0.0074114692397416,-0.028971239924431,-0.018142115324736],[0.018912306055427,-0.071385227143764,0.034601222723722],[-0.0019697665702552,-0.027864448726177,0.1968636661768]],[[0.13935595750809,-0.012209182605147,-0.014987451955676],[0.008390748873353,-0.053377404808998,-0.0080800214782357],[-0.003785707289353,-0.016751833260059,-0.026615627110004]],[[0.042947374284267,0.0018067207420245,0.00560840126127],[0.054643489420414,0.090986847877502,-0.094454757869244],[-0.066492520272732,-0.070263251662254,0.064638257026672]],[[0.027834432199597,-0.06796357780695,-0.1106149405241],[-0.046273373067379,-0.041668199002743,0.059475213289261],[0.043128747493029,-0.00086439988808706,0.03599014505744]],[[-0.13196249306202,0.17727352678776,-0.043294198811054],[0.21517109870911,-0.16634956002235,0.057668715715408],[0.077789142727852,0.037753615528345,0.18945817649364]],[[-0.048854228109121,-0.071440808475018,0.0049853888340294],[-0.069717936217785,0.049174174666405,-0.0099298106506467],[-0.021866438910365,0.009364147670567,0.056619010865688]],[[0.066911555826664,0.0058320877142251,-0.038773816078901],[-0.043468378484249,0.10220670700073,0.057445853948593],[-0.060294587165117,0.17146170139313,-0.15896719694138]],[[0.10906508564949,-0.056922998279333,-0.092976845800877],[-0.032996743917465,0.026925025507808,-0.074774287641048],[-0.045103937387466,0.0087380800396204,-0.066029623150826]],[[-0.022736778482795,0.009093152359128,0.014035953208804],[0.096340410411358,-0.047234483063221,0.0066080032847822],[-0.032282453030348,-0.00094958348199725,0.051668550819159]],[[0.15222235023975,-0.022995619103312,-0.0046707941219211],[0.027322148904204,0.078575201332569,-0.012529665604234],[0.021980570629239,-0.0049915127456188,0.063502252101898]],[[0.12904880940914,0.0054356181062758,-0.010071789845824],[0.042972590774298,-0.031934831291437,-0.020119028165936],[0.21872469782829,0.046447657048702,-0.12821507453918]],[[-0.049943029880524,0.029040409252048,0.12294983863831],[0.048999682068825,0.0061703319661319,0.047005467116833],[-0.091953910887241,-0.10067818313837,-0.00805420614779]],[[-0.0043399212881923,-0.049834441393614,-0.075144402682781],[-0.0040054460987449,-0.048427518457174,-0.024649847298861],[-0.099464505910873,0.0032211130019277,0.11522078514099]],[[0.12054025381804,0.0033660104963928,-0.033816106617451],[0.037337377667427,0.018722699955106,-0.023697070777416],[0.063874423503876,-0.059641499072313,-0.1068132519722]],[[-0.054256930947304,-0.041210871189833,0.029777247458696],[0.05020035803318,0.0062558357603848,-0.00060283625498414],[0.074517510831356,-0.032885916531086,0.097402162849903]],[[0.016864171251655,-0.0035349347162992,0.14999608695507],[-0.04219951108098,0.051348190754652,-0.11615573614836],[-0.014374416321516,0.14499001204967,0.033817056566477]],[[0.046739973127842,0.054362960159779,0.10405928641558],[0.020789440721273,0.010634141042829,-0.057043544948101],[0.0022967651020736,0.006705863866955,-0.008680216036737]],[[0.14809539914131,0.0579699203372,0.032659143209457],[-0.097503617405891,0.097678117454052,0.091417923569679],[-0.07527070492506,0.0078302742913365,-0.072936072945595]],[[-0.037471123039722,0.0082058198750019,0.15587201714516],[0.14313341677189,0.065479651093483,-0.031770590692759],[0.11065094172955,0.03365782648325,0.070302873849869]],[[-0.065644934773445,0.11244288831949,0.033137310296297],[0.093366354703903,-0.073357157409191,-0.11009675264359],[-0.16085137426853,0.030720144510269,0.053356479853392]],[[-0.011956588365138,-0.15659055113792,-0.085729166865349],[0.018209256231785,0.004851111676544,0.054745197296143],[0.035176511853933,-0.066230893135071,-0.023689465597272]],[[-0.079130277037621,0.061866715550423,-0.0013344715116546],[-0.016096815466881,0.031860806047916,0.058401457965374],[-0.00090420950436965,0.035325422883034,-0.067733749747276]],[[0.12170216441154,0.032002128660679,-0.052537929266691],[-0.1113371476531,-0.015874614939094,-0.070840433239937],[-0.12048207223415,-0.043295603245497,0.0070394068025053]],[[0.02323473803699,-0.093962013721466,-0.034531477838755],[0.037039145827293,-0.026356462389231,-0.017324544489384],[0.060629561543465,0.029866956174374,-0.053375702351332]],[[0.023101268336177,-0.0013909199042246,-0.1103570535779],[-0.069102942943573,0.035928532481194,0.036882638931274],[-0.017033638432622,0.018176574259996,0.020517949014902]],[[0.05934938788414,0.059603434056044,-0.0036744892131537],[0.21038337051868,-0.071745730936527,0.073602259159088],[0.10623117536306,0.066728375852108,0.12527997791767]],[[0.017596311867237,0.14621217548847,0.11190532892942],[-0.015402871184051,-0.011060955934227,0.0035782675258815],[0.023446528241038,0.013950208202004,0.075402840971947]],[[0.021370524540544,0.054465338587761,0.03373609110713],[0.014448260888457,0.00024005208979361,-0.010861850343645],[-0.035883035510778,0.030919305980206,-0.061230950057507]],[[0.0035920313093811,-0.055148683488369,-0.049845475703478],[-0.011742883361876,-0.024948941543698,-0.03605567663908],[0.036481600254774,0.024557838216424,0.0081787165254354]],[[-0.0023911430034786,0.054397102445364,0.077619440853596],[0.03575012460351,0.038523979485035,0.035392452031374],[-0.019624408334494,-0.05585040897131,0.03520243242383]],[[0.077673994004726,0.12724600732327,0.043367311358452],[-0.075256198644638,0.057703126221895,0.045871470123529],[0.029516587033868,-0.082165569067001,0.069271869957447]],[[0.0020309539977461,-0.088054940104485,-0.021722162142396],[0.0047128787264228,0.0024011842906475,-0.070938102900982],[0.064936637878418,-0.10343276709318,-0.034505732357502]],[[-0.016481921076775,-0.0077975187450647,0.062374994158745],[-0.021255198866129,-0.015834299847484,-0.18537513911724],[0.053387403488159,0.0061668530106544,-0.076719649136066]],[[-0.046611927449703,-0.0045721209608018,-0.099895901978016],[-0.15123127400875,-0.066568218171597,-0.11659500002861],[0.11174497008324,-0.021500639617443,0.03500384837389]],[[0.034543689340353,0.050961531698704,0.078447066247463],[0.042711969465017,-0.038674131035805,0.030932832509279],[0.012432512827218,-0.023771511390805,0.089009255170822]],[[-0.07627709209919,0.064712934195995,-0.069307215511799],[-0.16810616850853,-0.052863940596581,-0.01392940338701],[-0.012261092662811,-0.075773812830448,0.035604432225227]],[[0.01977625861764,-0.075857535004616,0.052563451230526],[-0.022052735090256,0.019475804641843,-0.069659933447838],[-0.033048022538424,0.0062011335976422,0.057499188929796]],[[0.12520553171635,-0.068461552262306,-0.20649614930153],[0.046915169805288,0.018702341243625,-0.17485536634922],[-0.078862302005291,0.0073827169835567,-0.19712892174721]],[[-0.03545368462801,-0.065186120569706,-0.055538780987263],[-0.089416980743408,-0.0098124835640192,-0.11793977767229],[0.062299139797688,0.018562408164144,-0.14711558818817]],[[0.0049546672962606,0.02697236277163,-0.068841010332108],[-0.025797922164202,0.072659328579903,0.047135498374701],[0.0029316744767129,-0.0060654925182462,0.068649843335152]],[[0.030189828947186,-0.047194223850965,0.051461111754179],[-0.029034197330475,-0.065986692905426,-0.051581129431725],[0.094179235398769,-0.08997668325901,-0.0040337713435292]],[[0.0028048374224454,0.01013589091599,0.13409411907196],[0.062728226184845,-0.0048113139346242,-0.038231607526541],[0.031720831990242,0.048836320638657,-0.016888445243239]],[[-0.036397162824869,0.023750239983201,0.0161491073668],[0.027213277295232,0.018290609121323,-0.05019074305892],[0.1143302321434,-0.041818514466286,0.0032906972337514]],[[-0.0034642487298697,0.13071618974209,-0.0463528893888],[0.01013997849077,0.10898531228304,-0.041067980229855],[-0.022685019299388,-0.094607330858707,0.11447141319513]],[[0.095523998141289,0.017654927447438,-0.016996316611767],[0.078120097517967,-0.073121055960655,-0.015036556869745],[-0.042111899703741,-0.17163281142712,-0.124626070261]],[[-0.050823818892241,0.040296401828527,-0.079645976424217],[-0.048162296414375,0.021010205149651,-0.076674230396748],[-0.018387693911791,-0.0059009939432144,-0.026410365477204]],[[-0.070397272706032,-0.02653606981039,-0.032129339873791],[0.028568902984262,-0.074687317013741,-0.048278421163559],[-0.0783556625247,-0.0074864267371595,0.04572631791234]],[[0.021926544606686,0.048759669065475,-0.026515707373619],[-0.055505491793156,-0.14848151803017,0.00041408330434933],[0.0032654153183103,-0.090669147670269,0.091049045324326]],[[-0.073519267141819,0.042104072868824,0.04686301201582],[-0.020574245601892,-0.011060657911003,0.021072460338473],[-0.12702399492264,-0.067095369100571,0.025751013308764]],[[-0.11557413637638,-0.039132162928581,0.13455042243004],[-0.09016964584589,-0.11912850290537,0.021876059472561],[-0.023883705958724,-0.0044024819508195,-0.093416482210159]],[[-0.027405221015215,-0.052635725587606,-0.11341966688633],[-0.0054341522045434,-0.032197743654251,-0.077920511364937],[0.053528372198343,0.045742113143206,-0.15174180269241]],[[0.03076933324337,-0.09885485470295,-0.043758861720562],[0.011142581701279,-0.019987244158983,0.045788861811161],[-0.077362276613712,0.065735131502151,0.06656214594841]],[[0.13043855130672,0.063046649098396,0.022571496665478],[-0.017182530835271,-0.011312373913825,0.1361583173275],[0.14324526488781,-0.019834283739328,0.044139537960291]],[[0.023014418780804,0.0086145754903555,0.033475574105978],[-0.044910214841366,-0.083622939884663,0.040411334484816],[0.15002630650997,0.17676152288914,-0.067034371197224]],[[-0.0064208949916065,0.0086416527628899,0.046804092824459],[0.011358186602592,-0.049072213470936,0.067386768758297],[-0.01128763705492,0.095907315611839,-0.062071237713099]],[[-0.065033748745918,0.024591069668531,-0.081976667046547],[0.066894084215164,-0.13286155462265,0.073731005191803],[0.0057374238967896,0.078211694955826,-0.15603093802929]],[[0.040455494076014,-0.022171394899487,-0.094455853104591],[0.027667421847582,-0.0082073612138629,-0.034201044589281],[-0.06442579627037,-0.084452390670776,-0.11833473294973]],[[0.036668870598078,0.074547193944454,0.060968782752752],[0.009656366892159,-0.14079833030701,0.077095910906792],[0.021388383582234,-0.064638175070286,0.051425401121378]],[[-0.023570917546749,-0.0053839506581426,-0.020756561309099],[0.023329544812441,0.015732521191239,-0.015232311561704],[-0.0037311839405447,0.045283194631338,0.01485157199204]],[[-0.021749706938863,-0.10271180421114,-0.14447730779648],[0.034367855638266,-0.13972961902618,-0.06841191649437],[0.0049916645511985,-0.044113475829363,0.12893863022327]],[[-0.037784814834595,-0.080943405628204,-0.097569413483143],[0.027420802041888,0.068368807435036,0.060782846063375],[0.11424826085567,0.0085468087345362,-0.046560328453779]],[[-0.0034060240723193,-0.1951005011797,0.0082316566258669],[-0.11375156790018,-0.0087804663926363,-0.038727831095457],[-0.094878293573856,-0.067678563296795,0.0046163452789187]],[[0.19581693410873,0.071937553584576,0.11256726831198],[0.05814940482378,0.072677463293076,-0.13296101987362],[0.051015388220549,-0.050717230886221,-0.073768869042397]],[[-0.053142294287682,-0.054385557770729,0.064075253903866],[0.04807311668992,-0.0049624899402261,-0.018781634047627],[0.044679969549179,0.066916912794113,-0.058017559349537]],[[-0.066311433911324,-0.024693226441741,0.026019025593996],[-0.00025464384816587,-0.00053116818889976,-0.076318308711052],[-0.021257875487208,0.0061129699461162,0.019373757764697]],[[-0.012084111571312,0.046013738960028,-0.025951644405723],[-0.0093634938821197,-0.086614869534969,0.059852305799723],[0.01626012660563,-0.062659941613674,0.042877171188593]],[[-0.059580538421869,-0.020013641566038,-0.088571190834045],[0.015777956694365,0.010877186432481,-0.04913167655468],[-0.039145287126303,-0.032010655850172,0.0532531067729]],[[-0.022281302139163,0.14981973171234,-0.021886302158237],[-0.14609867334366,-0.013141420669854,0.17487372457981],[-0.10086920112371,0.072576753795147,0.044185698032379]],[[-0.17881245911121,-0.00041758484439924,-0.13657283782959],[-0.12882405519485,-0.1957848072052,0.051293075084686],[-0.063566520810127,-0.052922837436199,0.085695125162601]],[[-0.076233677566051,-0.06089087203145,0.019970864057541],[-0.0029403357766569,0.012340484187007,-0.0074922475032508],[0.048975419253111,0.021431004628539,-0.037927772849798]],[[0.018713165074587,-0.0085486564785242,-0.021750945597887],[-0.030739899724722,0.068447731435299,0.048929020762444],[0.058971926569939,-0.036075845360756,0.093011930584908]],[[-0.16026523709297,0.020518751814961,0.0021960688754916],[-0.0046702581457794,0.025961775332689,-0.057947758585215],[0.022747943177819,-0.056398082524538,-0.10929176956415]],[[-0.020492738112807,-0.013422351330519,-0.017391653731465],[-0.050415683537722,-0.019149795174599,0.078589424490929],[-0.0037391604855657,-0.0040626605041325,0.1021207049489]],[[-0.033112615346909,0.062734797596931,0.077969051897526],[0.051289048045874,0.10575801879168,0.044851522892714],[-0.12058982253075,-0.025658531114459,-0.11724348366261]],[[0.12296362966299,0.026907367631793,-0.0049413978122175],[-0.062939554452896,0.013431769795716,-0.034503571689129],[0.09171599149704,-0.072077952325344,-0.011150103993714]],[[0.19659546017647,-0.12134171277285,-0.055137485265732],[-0.10072875767946,-0.029957450926304,-0.014066169969738],[-0.075550399720669,-0.0021633021533489,0.022349702194333]]],[[[-0.078589200973511,0.015600394457579,0.062337644398212],[-0.00085714110173285,-0.12854953110218,0.0535928606987],[-0.047894757241011,-0.098293304443359,0.064286932349205]],[[-0.077105768024921,0.045017328113317,-0.0016669341130182],[-0.05541030690074,-0.021124495193362,-0.057925455272198],[-0.039007324725389,-0.019123811274767,-0.0068715149536729]],[[0.18187446892262,0.020544160157442,-0.125353500247],[0.13598853349686,-0.091137692332268,-0.11111276596785],[-0.055371571332216,-0.046694058924913,-0.042483147233725]],[[-0.083764135837555,0.053524024784565,0.034505765885115],[0.079118803143501,0.067371591925621,0.10343977063894],[-0.083411194384098,-0.0030665635131299,0.081446200609207]],[[-0.0078363521024585,0.0487275198102,0.022057138383389],[0.061330463737249,-0.066223882138729,0.024182122200727],[-0.0460514575243,0.040355876088142,-0.0018573278794065]],[[-0.03665703907609,-0.047673478722572,0.073740638792515],[0.06370797008276,0.022314414381981,0.063134402036667],[0.046125799417496,-0.013979319483042,0.037531215697527]],[[0.035075217485428,0.1335067898035,-0.02032302506268],[-0.091482728719711,0.014850122854114,-0.011166793294251],[0.13404436409473,-0.042397484183311,0.046172004193068]],[[-0.033213932067156,0.10195644944906,-0.064478896558285],[0.12884026765823,0.055556684732437,0.031864505261183],[-0.10455397516489,0.048163700848818,0.07878415286541]],[[0.031773112714291,-0.025333473458886,-0.18817937374115],[-0.018584771081805,-0.022325368598104,0.067199893295765],[-0.1734411418438,-0.029353329911828,-0.030715558677912]],[[0.0064640971831977,-0.15321139991283,0.087965704500675],[0.071250058710575,-0.029446234926581,-0.082362852990627],[0.059342090040445,-0.027551205828786,0.046034783124924]],[[0.037862256169319,0.13672561943531,0.13806253671646],[0.025821510702372,0.17342527210712,-0.024963228031993],[-0.10865086317062,-0.038068890571594,-0.060755588114262]],[[0.021947741508484,0.071581795811653,-0.015029521659017],[-0.072635136544704,-0.097258292138577,0.032314352691174],[0.049097444862127,0.07969094067812,0.056385010480881]],[[0.046063538640738,0.087810099124908,-0.10593123733997],[0.13495011627674,-0.064627893269062,0.062556244432926],[-0.04276891425252,0.055754244327545,-0.036143455654383]],[[-0.044257018715143,-0.07702425122261,0.061564199626446],[-0.074165433645248,-0.030081164091825,-0.11234422773123],[0.16523997485638,-0.017124203965068,0.020141948014498]],[[-0.0028639046940953,0.023883290588856,0.043336745351553],[0.050638295710087,-0.05179213732481,0.017246959730983],[-0.024581711739302,-0.05665610358119,0.0069206529296935]],[[-0.0024136197753251,0.012845997698605,-0.045539412647486],[0.037178911268711,-0.034330800175667,-0.016240881755948],[-0.017316088080406,-0.15161062777042,-0.11367502063513]],[[-0.073618046939373,-0.040549367666245,0.12275715917349],[-0.11908692121506,0.023901270702481,0.0049988990649581],[0.12027268111706,0.02532297000289,-0.031898722052574]],[[0.11149761080742,0.016673248261213,0.064788974821568],[-0.081658147275448,-0.033853866159916,-0.024246199056506],[-0.043230313807726,-0.074738636612892,-0.023445503786206]],[[0.00069336185697466,0.041032996028662,0.048338554799557],[0.1156113371253,0.0062857270240784,0.011418939568102],[0.17345224320889,0.064957827329636,0.0065152607858181]],[[-0.14234113693237,-0.058281224220991,0.059534445405006],[0.048288725316525,0.011408883146942,0.015353859402239],[0.19720250368118,-0.098319962620735,-0.00059662951389328]],[[-0.001986009767279,0.11741787195206,-0.040199439972639],[-0.072826057672501,-0.013416422531009,-0.042312853038311],[0.063892230391502,-0.0015088627114892,-0.11917312443256]],[[0.12524384260178,-0.053619522601366,-0.013238541781902],[-0.0040596150793135,0.13360856473446,-0.02569049037993],[-0.11655607074499,0.046006862074137,-0.06065184995532]],[[0.14626911282539,0.1909427344799,-0.025087937712669],[0.084977202117443,-0.050273679196835,0.0082186227664351],[-0.1107587441802,-0.13372308015823,0.017319621518254]],[[-0.047155264765024,-0.031854096800089,-0.037683799862862],[-0.032570984214544,-0.10646316409111,0.1083527803421],[-0.11282985657454,-0.12395510822535,-0.064088821411133]],[[0.042053274810314,0.031582746654749,-0.10407455265522],[-0.073858045041561,-0.0044058146886528,0.030219381675124],[-0.011807628907263,-0.043742567300797,-0.02085168659687]],[[0.082975968718529,0.022895734757185,-0.033338092267513],[-0.017066126689315,-0.064544849097729,0.0049403659068048],[-0.043613385409117,-0.022869868203998,0.069582439959049]],[[-0.081731513142586,-0.063969075679779,-0.005393436178565],[-0.0060688643716276,0.084062203764915,0.054466426372528],[0.004786538425833,0.012407137081027,-0.019884252920747]],[[0.079334087669849,0.014776381663978,-0.032656013965607],[0.024614676833153,-0.061816271394491,-0.029269205406308],[-0.05983505398035,-0.062782511115074,0.033006671816111]],[[0.0119324978441,0.18453989923,0.019702220335603],[-0.035012379288673,0.012620741501451,-0.058786224573851],[0.078477591276169,-0.13703934848309,0.12774778902531]],[[-0.049301508814096,-0.047608379274607,0.0090029593557119],[-0.11246762424707,0.075100928544998,-0.12937481701374],[-0.022597070783377,-0.036153070628643,-0.11684936285019]],[[0.020714120939374,0.11226422339678,0.013561242260039],[-0.021039664745331,0.0040024616755545,0.020628988742828],[0.0066470094025135,0.0089164152741432,-0.02492636628449]],[[0.033011842519045,-0.12483137845993,-0.014066262170672],[-0.054332904517651,0.12808245420456,0.039901375770569],[-0.093835785984993,-0.046263590455055,0.038737684488297]],[[-0.0017319368198514,0.11700657755136,0.13495524227619],[0.24641706049442,0.06786522269249,-0.015289420261979],[-0.17977049946785,-0.11889554560184,0.0002071785274893]],[[0.012954413890839,-0.063167966902256,0.049476731568575],[-0.12697106599808,-0.10262267291546,0.10528412461281],[-0.030680762603879,0.0031612084712833,0.11114101111889]],[[-0.06505574285984,0.062056265771389,0.035588562488556],[-0.096147246658802,-0.054537706077099,-0.037441063672304],[0.067991681396961,0.11724691838026,0.13259346783161]],[[-0.005801860243082,0.005824544467032,0.032777346670628],[-0.027094250544906,0.065884009003639,-0.105921626091],[-0.017637079581618,0.027417404577136,-0.009875800460577]],[[0.082574352622032,0.10990768671036,0.086913526058197],[0.10142496228218,0.054030179977417,-0.0080396216362715],[0.057321395725012,-0.012046474032104,0.11051970720291]],[[0.041170570999384,0.013578412123024,0.073347464203835],[-0.054191272705793,-0.016857843846083,-0.056213043630123],[-0.05606572329998,0.035004895180464,0.042395308613777]],[[0.0984026491642,0.039142109453678,0.034774404019117],[0.0028450982645154,-0.060593634843826,-0.040806382894516],[-0.12957349419594,-0.10165220499039,-0.052567381411791]],[[0.16078467667103,0.11853884905577,0.10117842257023],[0.06362846493721,-0.10110225528479,0.017787827178836],[-0.088018134236336,-0.0019450053805485,0.037147723138332]],[[0.024807490408421,0.029021747410297,0.006403736770153],[-0.12933018803596,-0.067270062863827,0.0021995129063725],[-0.12101795524359,0.094787076115608,-0.045681659132242]],[[0.059177171438932,-0.023441420868039,0.12078765779734],[0.010312258265913,0.012793353758752,0.035800706595182],[-0.010506982915103,0.0087821492925286,0.021890604868531]],[[0.10733369737864,0.0055901096202433,0.079121172428131],[-0.0029817854519933,0.012740372680128,-0.021987905725837],[-0.089988224208355,-0.0063971201889217,-0.017298294231296]],[[-0.019186738878489,-0.028805242851377,-0.0046865763142705],[0.01021236833185,0.00083268317393959,-0.009649446234107],[0.038902327418327,0.024023167788982,0.016620395705104]],[[-0.0050719529390335,-0.055182885378599,-0.00049693725304678],[0.1050816103816,0.098739326000214,-0.043515995144844],[0.031291149556637,0.10407999902964,0.025378176942468]],[[0.04801669716835,0.11673521995544,0.065822169184685],[0.11212653666735,0.098431468009949,0.036709632724524],[-0.0091891176998615,0.075042851269245,0.003210132708773]],[[-0.087465405464172,-0.14469268918037,0.0079215401783586],[0.014502536505461,-0.063047163188457,-0.062178641557693],[0.087659507989883,0.017742399126291,0.00073287734994665]],[[0.014189657755196,-0.063142895698547,-0.13686266541481],[0.053680818527937,-0.08613970130682,-0.04581543803215],[0.016376491636038,0.027872057631612,-0.059131149202585]],[[-0.01289691682905,0.00015090804663487,0.084537841379642],[-0.079987712204456,-0.087147198617458,0.071936711668968],[0.0011639017611742,-0.027301216498017,0.027546793222427]],[[0.047586277127266,-0.10918094962835,-0.019625889137387],[0.0019930412527174,0.045634865760803,-0.0092335250228643],[-0.13801059126854,0.0084588844329119,0.058654740452766]],[[0.032206606119871,0.08634315431118,-0.0088404072448611],[-0.0048418766818941,0.019285602495074,0.088975839316845],[0.057402636855841,-0.025940224528313,-0.050836950540543]],[[0.010000504553318,-0.049082919955254,0.044249426573515],[0.039980344474316,0.067794784903526,-0.071223519742489],[0.019011812284589,-0.022844506427646,0.04470432177186]],[[0.046691320836544,0.033042017370462,-0.090648882091045],[-0.054348334670067,-0.030004765838385,0.046380210667849],[-0.044769264757633,0.021184770390391,0.1218613088131]],[[0.067473478615284,0.011075560003519,0.057660717517138],[0.036814738065004,-0.015420903451741,0.018835330381989],[-0.012250344268978,0.024689979851246,0.099669009447098]],[[0.091801606118679,-0.12020941078663,0.03708678856492],[-0.057216931134462,0.010868331417441,-0.051969565451145],[0.088827766478062,0.042139284312725,0.044013731181622]],[[-0.22529681026936,0.08486020565033,-0.0039111990481615],[-0.052012857049704,-0.078474216163158,0.0065141483210027],[0.26402738690376,0.042585775256157,0.010720442980528]],[[0.0830447524786,0.012765139341354,-0.041142154484987],[-0.089869119226933,0.050078768283129,0.028417171910405],[-0.15484641492367,0.062373127788305,-0.035419709980488]],[[-0.10874458402395,0.047427870333195,-0.024916015565395],[-0.20224267244339,-0.097293041646481,-0.099136956036091],[-0.012288578785956,0.046287789940834,0.042483169585466]],[[-0.036758780479431,-0.13381426036358,-0.010622397996485],[-0.14704188704491,0.056387901306152,-0.066527388989925],[-0.027432156726718,-0.011891626752913,0.02237905934453]],[[-0.064493834972382,0.0040160398930311,0.010761798359454],[0.080100141465664,0.10292337089777,0.054463922977448],[-0.034693963825703,-0.072849899530411,-0.055790916085243]],[[-0.012562296353281,-0.04268766567111,0.037190098315477],[0.08435794711113,0.0064943763427436,0.019471980631351],[-0.063201487064362,0.065695837140083,-0.032323811203241]],[[-0.023923601955175,-0.048603646457195,0.040220156311989],[0.10856912285089,-0.073808029294014,-0.072422012686729],[0.0091382544487715,-0.0262461733073,0.022598091512918]],[[-0.016085654497147,-0.048481740057468,-0.034849215298891],[0.015359241515398,-0.014914412982762,-0.10393966734409],[-0.089748531579971,-0.14923644065857,-0.18992415070534]],[[-0.067196689546108,-0.079415902495384,0.058803178369999],[-0.09572859108448,-0.13710926473141,-0.016958102583885],[0.16074807941914,0.10193543881178,-0.064186625182629]],[[0.0045279311016202,0.015123578719795,0.050456304103136],[0.088590435683727,0.0017222377937287,-0.046936877071857],[0.15975172817707,0.05516404286027,-0.069744154810905]],[[0.13287435472012,0.047662287950516,0.04675342515111],[0.047878175973892,0.08462655544281,-0.032095853239298],[-0.085365578532219,0.017221247777343,0.016946801915765]],[[0.17356742918491,0.0062426840886474,0.016040395945311],[0.034146212041378,0.074931398034096,0.049648441374302],[-0.02895031683147,0.030160399153829,-0.0018634574953467]],[[0.050120938569307,0.14715312421322,0.005730445496738],[-0.022625816985965,0.095884442329407,0.062988169491291],[-0.070238582789898,0.0028868764638901,0.072836972773075]],[[0.039202965795994,0.040955368429422,0.073126882314682],[-0.018097868189216,0.083604596555233,-0.083375357091427],[-0.015327023342252,0.0032211104407907,-0.028061117976904]],[[-0.024286460131407,0.0098562762141228,-0.01195449847728],[-0.031998846679926,-0.050388667732477,0.02461008913815],[-0.10468207299709,-0.050110939890146,0.18504333496094]],[[0.015022179111838,0.13745048642159,-0.028871849179268],[-0.17948691546917,-0.0057267271913588,-0.013578654266894],[-0.00051364250248298,-0.067369408905506,0.090637594461441]],[[-0.0059624002315104,-0.068345740437508,-0.0049296738579869],[-0.10287448018789,-0.098010942339897,0.09975641220808],[-0.053637973964214,0.028764009475708,-0.0026389027480036]],[[-0.034411996603012,0.015413059853017,-0.046413794159889],[-0.0040082819759846,0.075962081551552,0.038756303489208],[-0.04150527343154,0.0023742169141769,-0.0046189995482564]],[[0.040078420192003,-0.02706016227603,0.072212137281895],[-0.096666596829891,0.057026971131563,-0.0040279063396156],[-0.10354223102331,0.0063247345387936,0.13188955187798]],[[-0.048873171210289,0.034383125603199,-0.028340177610517],[0.059082459658384,3.0692681320943e-05,0.036773540079594],[0.02566396817565,0.012365870177746,-0.027492050081491]],[[-0.067937210202217,0.10185161978006,-0.065663225948811],[0.01853116042912,0.081871017813683,-0.031412240117788],[-0.0083531243726611,0.068629838526249,-0.023563977330923]],[[0.029705489054322,-0.0035889281425625,0.018069565296173],[0.0041722860187292,0.027975650504231,0.084728009998798],[0.012729998677969,-0.00037508460809477,0.11358376592398]],[[0.059001080691814,0.030995478853583,0.083837307989597],[-0.070294819772243,0.03799007460475,0.16650776565075],[0.040985763072968,-0.11757963895798,0.092641144990921]],[[-0.06585455685854,0.013238782063127,-0.041374888271093],[0.12766958773136,0.0041992007754743,-0.013267454691231],[0.052857615053654,0.048251587897539,0.02933806180954]],[[-0.12179359048605,0.063354149460793,0.055276326835155],[0.052178122103214,-0.1445709913969,0.036796253174543],[0.15105408430099,0.0016239414690062,-0.041143760085106]],[[0.098257184028625,0.019224436953664,-0.10150872915983],[-0.08984611928463,0.20986977219582,-0.057565674185753],[-0.092060513794422,0.18286167085171,-0.043202638626099]],[[-0.0008807021076791,-0.14532643556595,-0.046674288809299],[0.013322738930583,0.023188756778836,0.10887181013823],[0.11206063628197,0.030756121501327,-0.093039385974407]],[[-0.067150145769119,0.047145761549473,-0.061158619821072],[-0.043491650372744,-0.051102969795465,0.02259467728436],[0.026436546817422,0.01542289648205,-0.0024118304718286]],[[0.052880380302668,-0.016407763585448,0.0034427877981216],[0.0012096936115995,-0.14836595952511,-0.0419090539217],[-0.004405097104609,0.093697302043438,-0.016824316233397]],[[-0.068457037210464,0.10011913627386,0.02753228507936],[-0.018105214461684,-0.10212537646294,-0.017208471894264],[0.039577204734087,0.018405046314001,-0.065291583538055]],[[-0.15378355979919,-0.015035756863654,-0.046352490782738],[0.15491189062595,0.046662457287312,-0.01730103045702],[-0.036013379693031,-0.068181827664375,0.044569663703442]],[[0.10092027485371,0.070017799735069,-0.0084507521241903],[-0.038745105266571,0.057685170322657,-0.070960707962513],[0.053659044206142,0.030703226104379,-0.020252032205462]],[[0.12552407383919,0.047007340937853,0.13824647665024],[0.040848806500435,-0.079922810196877,-0.083486117422581],[0.002723126905039,-0.0040576877072453,-0.072144694626331]],[[0.019097650423646,0.076013065874577,-0.023127662017941],[-0.17139922082424,-0.12142617255449,0.054187722504139],[-0.033447563648224,-0.022691017016768,0.085160978138447]],[[0.082953400909901,-0.084350734949112,-0.17550836503506],[0.019689736887813,-0.0015658552292734,-0.020496536046267],[-0.12035239487886,-0.052436731755733,0.04057963937521]],[[-0.089210376143456,0.0081562735140324,0.12351740151644],[-0.032340511679649,-0.038118574768305,0.085387095808983],[-0.067208178341389,-0.10431917011738,0.019857564941049]],[[0.028665894642472,0.0025965317618102,-0.05992229282856],[0.11058723926544,-0.102812923491,0.018467262387276],[-0.076958946883678,-0.10088885575533,0.072368808090687]],[[0.047341227531433,-0.061254467815161,-0.066230751574039],[0.051424890756607,-0.041480857878923,0.10576152056456],[0.090822875499725,-0.054125595837831,-0.0050069144926965]],[[0.02989224717021,-0.079245053231716,-0.022895272821188],[-0.06403061747551,-0.075695857405663,0.015441042371094],[0.10177432000637,0.052145656198263,-0.008797587826848]],[[-0.056591782718897,-0.05345793440938,-0.011983000673354],[-0.08108277618885,-0.07541099190712,-0.035539399832487],[0.088705405592918,-0.11458187550306,-0.027838930487633]],[[0.092017501592636,0.024816354736686,-0.13944475352764],[0.034217402338982,0.043346986174583,-0.0024363896809518],[-0.05379419028759,0.012469102628529,0.037067174911499]],[[-0.0077438103035092,-0.073640309274197,0.021571477875113],[0.19813014566898,0.024108307436109,-0.075883343815804],[-0.056442465633154,-0.13405185937881,0.022263443097472]],[[-0.027208408340812,0.0022657949011773,0.004330207593739],[-0.082780212163925,0.14555981755257,-0.053690370172262],[0.12297160923481,-0.046491418033838,-0.042221292853355]],[[0.0084112081676722,0.036133591085672,0.025113221257925],[-0.055051621049643,-0.01721247844398,0.001765794120729],[-0.078563578426838,-0.083129420876503,0.056172050535679]],[[0.10039967298508,0.059779822826385,0.043316528201103],[0.013839651830494,0.059908039867878,0.019538950175047],[-0.017242170870304,0.0031799406278878,-0.032780788838863]],[[0.11446949839592,0.092298172414303,-0.048011016100645],[0.07727012783289,-0.014149652794003,-0.026872860267758],[-0.093854822218418,-0.017928630113602,-0.004088175483048]],[[0.03521728143096,0.061871632933617,0.060542188584805],[-0.046957712620497,0.082336641848087,0.030583195388317],[-0.12202999740839,-0.14391447603703,0.10036513954401]],[[0.03566899523139,-0.15258039534092,-0.023733872920275],[0.0010488939005882,-0.020739417523146,-0.070984363555908],[-0.062436770647764,0.16537976264954,0.061322823166847]],[[0.09861746430397,-0.037843510508537,0.02068324200809],[0.057517629116774,-0.15082557499409,0.023708894848824],[0.090376116335392,-0.12389151751995,0.050695136189461]],[[-0.049207411706448,0.16641227900982,0.025427501648664],[-0.035989183932543,0.050433225929737,0.075487785041332],[-0.097082987427711,0.015520641580224,-0.006367155816406]],[[-0.060071676969528,-0.17647355794907,-0.23638765513897],[-0.032318238168955,0.050839297473431,-0.029432879760861],[0.2676874101162,0.097772680222988,0.057995241135359]],[[0.029882647097111,0.039408929646015,0.083532206714153],[0.00093606772134081,-0.095936492085457,0.011267525143921],[0.037961304187775,-0.010077108629048,-0.015810681506991]],[[-0.11238704621792,-0.0016688158502802,-0.018796302378178],[-0.15752637386322,-0.072591632604599,-0.10780698806047],[-0.079189702868462,0.12608782947063,0.0014040900859982]],[[-0.06634970754385,-0.078126944601536,-0.023820584639907],[-0.067253053188324,-0.013354446738958,-0.024684933945537],[0.0089236460626125,0.10375674068928,0.04062694311142]],[[-0.044584400951862,-0.070131152868271,-0.058350559324026],[-0.099732883274555,-0.066426299512386,-0.020213507115841],[0.0060401493683457,0.22044466435909,-0.13292761147022]],[[0.10318126529455,-0.044171378016472,-0.13986544311047],[-0.069092467427254,0.049312762916088,0.0519680082798],[-0.075178138911724,0.11153238266706,0.018011359497905]],[[0.11044216901064,0.017479211091995,-0.11293763667345],[-0.042569573968649,-0.073172301054001,0.05078174546361],[-0.15478087961674,-0.0006269087898545,-0.024100264534354]],[[-0.20804853737354,-0.049501918256283,-0.0082022398710251],[0.0012466519838199,-0.0077691413462162,-0.036549009382725],[0.038922868669033,-0.072855338454247,-0.0035385505761951]],[[-0.1201293617487,-0.10118765383959,0.019489414989948],[0.052644919604063,0.041214901953936,-0.079369187355042],[-0.10696516185999,-0.02164307795465,-0.0085553247481585]],[[0.04890164360404,-0.03428228572011,0.030318390578032],[-0.13669171929359,-0.076008081436157,0.063139252364635],[-0.035457652062178,-0.043490998446941,-0.093655727803707]],[[-0.028638558462262,-0.19017870724201,0.064084887504578],[-0.078112900257111,0.14799971878529,0.1714248508215],[0.081545919179916,-0.15314166247845,-0.14693313837051]],[[0.096110016107559,0.11134856194258,-0.051007706671953],[-0.080235689878464,0.087927289307117,-0.19688886404037],[-0.15226501226425,-0.011494142003357,-0.026401141658425]],[[-0.0024641181807965,-0.10024500638247,0.018188759684563],[0.1175025627017,0.050553169101477,-0.018067933619022],[-0.075376637279987,0.0016644529532641,-0.13007768988609]],[[-0.21192821860313,0.02249519340694,-0.054055038839579],[-0.17335139214993,-0.032332979142666,-0.12295903265476],[-0.11824795603752,0.058795262128115,0.17482949793339]],[[-0.31782746315002,0.19515785574913,0.019322540611029],[0.201844856143,-0.038697212934494,0.037380371242762],[-0.014023598283529,-0.02234560623765,0.050017520785332]],[[-0.08321125805378,-0.033005762845278,0.0536446608603],[-0.030863273888826,0.019842574372888,-0.0054881675168872],[-0.0049027865752578,-0.025527911260724,-0.0046877884306014]],[[0.015340853482485,0.056960623711348,-0.047009829431772],[-0.12109190225601,-0.14111819863319,0.038678500801325],[0.21323272585869,-0.0082584880292416,-0.12684804201126]],[[0.0065141748636961,-0.032484889030457,0.019855512306094],[-0.091674514114857,-0.022751430049539,-0.080984905362129],[0.021214369684458,-0.011535901576281,-0.017565384507179]],[[0.0034519748296589,-0.026691982522607,0.019057929515839],[-0.066987752914429,-0.087106347084045,-0.0040759025141597],[-0.034891534596682,0.061737027019262,0.011097921989858]],[[0.064678035676479,-0.017694799229503,0.024908982217312],[0.13085654377937,-0.043688073754311,-0.023555250838399],[0.0037263364065439,-0.035113405436277,-0.026678197085857]],[[-0.13710744678974,-0.027485834434628,0.017691098153591],[0.048679739236832,0.089514389634132,0.043078884482384],[0.017046084627509,0.076214857399464,0.037692200392485]],[[0.02068568021059,0.071503952145576,0.089143477380276],[-0.093786843121052,-0.0048304749652743,0.030343117192388],[-0.069161407649517,0.0093150129541755,0.0010785292834044]],[[0.024286871775985,0.06684548407793,0.023692613467574],[-0.094606824219227,-0.087135374546051,-0.033397626131773],[0.084281727671623,0.010624287649989,-0.060014016926289]]],[[[-0.046946790069342,-0.0090332422405481,-0.054100085049868],[-0.010781002230942,-0.014744709245861,-0.0068070567212999],[-0.049228958785534,0.013466309756041,0.017061080783606]],[[0.018507855013013,0.016357073560357,0.017443023622036],[-0.0021548289805651,-0.044936940073967,-0.058128830045462],[0.0044743451289833,-0.0058641373179853,0.013896558433771]],[[-0.0091285118833184,0.056069362908602,0.019463600590825],[0.03861616179347,-0.027337480336428,-0.046703081578016],[-0.08651265501976,0.0095015522092581,0.024454392492771]],[[-0.045185785740614,0.033938068896532,0.007416826672852],[-0.038953725248575,0.05868373811245,-0.0054720691405237],[0.0060157491825521,0.047431882470846,0.035080149769783]],[[0.028824279084802,-0.053946021944284,-0.017741410061717],[0.037654723972082,-0.026616664603353,-0.027898378670216],[0.016109708696604,-0.0020773014985025,-0.0086800213903189]],[[0.022690817713737,0.015725873410702,0.017488786950707],[0.025591434910893,-0.030466835945845,-0.058761969208717],[0.025126816704869,0.036405313760042,0.030338427051902]],[[0.0033486292231828,-0.031450979411602,0.01418508309871],[-0.052700612694025,0.00048821393284015,0.017591372132301],[0.063686594367027,0.038578022271395,0.032790865749121]],[[0.051152024418116,-0.035829652100801,0.012760510668159],[-0.012649317272007,0.010832938365638,0.002018861239776],[-0.068757630884647,-0.008333939127624,0.0766781270504]],[[0.0030071164947003,0.031276095658541,0.11103586107492],[0.0029988915193826,-0.058177687227726,0.0027300543151796],[0.052489623427391,0.0051320758648217,0.077375203371048]],[[-0.023961098864675,-0.090021573007107,0.064033098518848],[-0.0012793127680197,0.027047598734498,0.011517597362399],[0.015361956320703,0.017735127359629,0.10071983933449]],[[0.0075988559983671,0.084045186638832,0.006064279936254],[0.034816332161427,-0.025051716715097,-0.025568168610334],[-0.01229958422482,-0.069689698517323,0.045076251029968]],[[-0.059328515082598,-0.023932853713632,0.084270186722279],[0.007976702414453,-0.014547574333847,-0.0015544808702543],[-0.076962530612946,-0.0302161462605,-0.0057612312957644]],[[-0.064317211508751,-0.024525405839086,-0.0070015252567828],[-0.074557274580002,0.0036313910968602,0.0031519657932222],[0.033261600881815,0.086652420461178,-0.092856839299202]],[[-0.030743086710572,-0.016180692240596,0.0280173830688],[-0.080180943012238,0.030007155612111,-0.096635334193707],[0.062490407377481,0.035504877567291,0.017298508435488]],[[-0.084023743867874,0.0047808093950152,0.016880910843611],[-0.0055505717173219,-0.048601504415274,-0.034626502543688],[-0.091526307165623,-0.071583077311516,0.00023322469496634]],[[-0.018863590434194,0.044475726783276,0.024129966273904],[-0.04304938018322,-0.042758427560329,0.050204955041409],[-0.047322131693363,0.054458681493998,0.066693626344204]],[[-0.013048272579908,-0.015186033211648,-0.010298673063517],[0.00011706551595125,-0.02778297290206,-0.071042649447918],[0.027046909555793,-0.03144970536232,0.0055907536298037]],[[-0.0056993667967618,0.035186927765608,-0.055777572095394],[-0.0041339676827192,0.043987099081278,-0.052869066596031],[-0.058205541223288,0.081984631717205,0.052387982606888]],[[0.099390864372253,0.0073351031169295,0.0032569805625826],[0.093805983662605,-0.050324451178312,-0.044049527496099],[0.026968879625201,0.024544510990381,-0.00062873360002413]],[[-0.033346801996231,0.0482497215271,-0.0071529690176249],[0.017424326390028,0.067158818244934,-0.038100030273199],[-0.017655292525887,0.026241451501846,-0.05412357673049]],[[0.030053304508328,-0.02181282825768,-0.010125571861863],[0.070458061993122,0.039474166929722,0.021600352600217],[-0.0037169938441366,-0.011909987777472,-0.031687051057816]],[[-0.0035664548631757,-0.048044338822365,-0.00099985580891371],[0.0061398562975228,-0.052236899733543,-0.088907390832901],[0.0011069832835346,0.025811180472374,-0.0081679979339242]],[[-0.033526249229908,0.045376315712929,0.024248026311398],[-0.01056941319257,-0.024544464424253,-0.01175581663847],[0.093050062656403,-0.012578408233821,-0.052643749862909]],[[-0.018728327006102,0.0068253572098911,0.075591519474983],[-0.0056272302754223,0.00060439732624218,0.030603373423219],[0.012412570416927,-0.03286374732852,0.0031728881876916]],[[0.035029802471399,-0.014981480315328,-0.055717520415783],[-0.018219854682684,0.00064666394609958,-0.028224255889654],[0.033071309328079,-0.045057404786348,0.029321450740099]],[[-0.013408150523901,0.043310333043337,0.035112615674734],[-0.04435571283102,0.054481245577335,-0.006425067782402],[0.026590509340167,-0.029824299737811,-0.044489312916994]],[[-0.044517990201712,-0.086771413683891,-0.038575209677219],[0.038647819310427,-0.034807588905096,-0.016178263351321],[0.053175862878561,-0.049864135682583,0.053689692169428]],[[-0.015002519823611,-0.023710681125522,0.048733670264482],[0.043364718556404,-0.017852451652288,0.033134717494249],[-0.048094380646944,0.049196928739548,0.015582866966724]],[[0.04427844658494,0.00459756096825,0.013075370341539],[-0.10622130334377,-0.0026439842768013,0.044719353318214],[-0.031354192644358,-0.020503545179963,-0.010914046317339]],[[0.030186174437404,0.022774698212743,0.021725988015532],[0.03857009485364,-0.093017503619194,-0.025524197146297],[-0.016636142507195,-0.031634524464607,0.078275226056576]],[[0.018593810498714,0.02038842998445,0.011769357137382],[-0.023716356605291,-0.047753699123859,-0.024958183988929],[-0.03174364566803,0.028840232640505,-0.028077436611056]],[[-0.036742962896824,-0.010236371308565,-0.023556245490909],[0.02069092169404,0.034696109592915,0.10409297794104],[0.016833979636431,-0.066989198327065,-0.036429855972528]],[[0.025769716128707,-0.048077560961246,0.024423956871033],[0.0027475596871227,-0.013273805379868,-0.029951198026538],[-0.017574885860085,0.012907541356981,0.030263798311353]],[[0.057584807276726,0.0072831916622818,-0.04283582046628],[0.019205518066883,0.0034905360080302,0.0097152944654226],[-0.0036021727137268,-0.021154269576073,-0.020103756338358]],[[0.038644216954708,-0.025089027360082,0.044034015387297],[0.0080772638320923,-0.030930675566196,-0.023638997226954],[0.017541797831655,0.001491874223575,0.032791748642921]],[[-0.024206167086959,-0.05925203114748,0.026581779122353],[0.030663853511214,0.016522746533155,0.047616805881262],[-0.043934099376202,-0.0096301734447479,0.012203072197735]],[[-0.063685871660709,-0.01670490577817,0.035720858722925],[-0.026664404198527,0.061164781451225,0.01090937294066],[0.058373123407364,-0.038169637322426,-0.03351304680109]],[[-0.013991692103446,0.025585496798158,-0.060346849262714],[0.01622473821044,-0.06555288285017,-0.086295828223228],[-0.022994926199317,0.0081764329224825,0.01939987950027]],[[-0.001749410526827,0.047370433807373,0.055902935564518],[-0.048652928322554,-0.017009124159813,0.042666360735893],[0.020194135606289,-0.021496860310435,0.010910574346781]],[[-0.027052991092205,0.00089013471733779,-0.050921227782965],[-0.0088004544377327,0.050297025591135,0.0047346306964755],[0.038581851869822,-0.019875094294548,-0.0056593483313918]],[[0.01396494731307,-0.11388515681028,-0.014993482269347],[0.0293486174196,0.039250455796719,-0.0066957813687623],[0.027681086212397,-0.056810829788446,0.073536120355129]],[[0.0030005001462996,0.03150412067771,-0.023811213672161],[-0.013919586315751,0.026207165792584,0.070053085684776],[-0.034989863634109,0.020374163985252,-0.019555868580937]],[[-0.0029698791913688,0.098434314131737,-0.082977995276451],[0.0059128464199603,0.0077085313387215,0.039751030504704],[-0.031474769115448,0.047621831297874,-0.024121733382344]],[[0.063265524804592,-0.055826589465141,0.0038442846853286],[0.037504490464926,-0.090030893683434,-0.041567388921976],[-0.072370901703835,-0.047932896763086,-0.0019913036376238]],[[-0.051546301692724,0.044318906962872,-0.045389428734779],[-0.013563557527959,-0.062716022133827,0.02013778872788],[-0.10327654331923,0.026911128312349,0.016456358134747]],[[0.031338047236204,-0.0035002343356609,0.013338551856577],[-0.021112240850925,0.025728961452842,0.019490452483296],[0.049139689654112,0.069952182471752,0.063336461782455]],[[0.003600359428674,-0.01387597899884,0.0055395029485226],[-0.036004681140184,0.046067170798779,-0.032111849635839],[0.037126269191504,-0.012388003990054,0.019583649933338]],[[0.014829273335636,-0.030887469649315,0.0015032765222713],[-0.0093098618090153,-0.018498841673136,-0.076630167663097],[-0.048960816115141,-0.0075347791425884,0.0034121349453926]],[[0.013348293490708,-0.012996264733374,-0.069313883781433],[-0.035069156438112,0.018304407596588,-0.030078463256359],[0.062309090048075,0.026528440415859,0.032565474510193]],[[0.029765063896775,-0.039747327566147,0.031795632094145],[-0.0022042747586966,0.011741989292204,0.021994389593601],[0.039103791117668,-0.023532915860415,-0.072293020784855]],[[-0.028834104537964,-0.07837863266468,0.01233393792063],[-0.045830857008696,-0.024161824956536,-0.062768392264843],[0.017132902517915,-0.0074577978812158,0.038424540311098]],[[-0.037968039512634,-0.039853923022747,0.0033261205535382],[0.098285064101219,-0.027821037918329,-0.020241308957338],[-0.0054553993977606,0.016386138275266,-0.041321031749249]],[[0.097753830254078,0.014422500506043,-0.021166775375605],[-0.02585357427597,-0.0023911376483738,0.033480275422335],[0.030222095549107,-0.010339242406189,0.048113480210304]],[[-0.012543698772788,-0.041799273341894,-0.016340875998139],[0.038219045847654,0.10150097310543,0.029363993555307],[-0.038336455821991,-0.039765696972609,0.042214259505272]],[[0.00077545584645122,0.063344515860081,0.034759517759085],[0.028424568474293,-0.0044428403489292,-0.00076510669896379],[-0.044048395007849,0.04448426514864,0.00044143307604827]],[[0.077714778482914,-0.042175684124231,0.0046647503040731],[-0.034799747169018,-0.004563121125102,0.0024592615664005],[0.0083778817206621,-0.049853593111038,-0.024474645033479]],[[0.0080614173784852,-0.008514023385942,0.064379267394543],[-0.053253475576639,0.044870492070913,-0.021172372624278],[0.085492134094238,-0.03796648979187,-0.0067389090545475]],[[0.059666391462088,0.07737073302269,-0.022853469476104],[0.058494828641415,-0.05737229436636,-0.070890575647354],[-0.020375553518534,-0.023707387968898,0.083232887089252]],[[-0.0018726231064647,0.038069393485785,0.050946831703186],[0.00693927006796,-0.046447087079287,0.052469562739134],[0.041931189596653,0.068914465606213,0.0173863414675]],[[-0.01051380019635,-0.029145987704396,-0.010879465378821],[0.04440113902092,-0.003255789866671,0.055711295455694],[0.018831660971045,0.071762159466743,0.0078246826305985]],[[0.07351915538311,-0.09134204685688,-0.031304035335779],[-0.010675242170691,-0.053208824247122,-0.036211423575878],[0.012649977579713,-0.052216406911612,0.069776557385921]],[[0.041196133941412,-0.050172217190266,-0.0053763715550303],[0.056493014097214,-0.05147597566247,0.0070400713011622],[0.0047417636960745,-0.031003132462502,-0.043653175234795]],[[-0.061405260115862,-0.058136183768511,0.028984740376472],[0.02736746892333,-0.017321834340692,-0.050442546606064],[-0.11216355860233,0.048036862164736,-0.016498520970345]],[[0.067469626665115,0.0036494839005172,0.01468981988728],[0.012848714366555,0.041386108845472,-0.025254333391786],[-0.050576470792294,0.053310558199883,-0.034604839980602]],[[0.0031565837562084,-0.067202337086201,0.010968736372888],[-0.037595089524984,-0.030971771106124,0.0020742339547724],[-9.5494833658449e-05,-0.027928661555052,-0.079909019172192]],[[-0.06946512311697,0.022024121135473,0.022335538640618],[-0.0051019783131778,-0.0022946833632886,-0.024023978039622],[-0.027241613715887,-0.060531627386808,-0.014329702593386]],[[-0.041849095374346,-0.045432355254889,0.0095839444547892],[0.03084978275001,0.0024899661075324,-0.063261963427067],[-0.044339522719383,0.046619307249784,-0.040915295481682]],[[-0.019099608063698,0.029746510088444,-0.011093316599727],[0.0016313045052812,0.094029702246189,0.024565713480115],[-0.025631666183472,-0.060989316552877,-0.035634934902191]],[[-0.039051502943039,-0.022292179986835,0.0094044804573059],[-0.10708729177713,-0.025622548535466,-0.056774031370878],[-0.0038119782693684,-0.015904188156128,-0.019571421667933]],[[0.072338201105595,-0.026307867839932,-0.03557239100337],[-0.084693908691406,-0.028827054426074,0.083652190864086],[0.057174865156412,-0.012808584608138,-0.04834970459342]],[[-0.062643371522427,-0.02053358219564,0.045570593327284],[0.0022363730240613,0.020193247124553,-0.020306348800659],[0.0029950537718832,0.044940747320652,0.02079770155251]],[[0.073347143828869,0.020844049751759,0.0094776768237352],[0.0055935783311725,-0.03123258240521,-0.031108304858208],[-0.030044620856643,-0.021875446662307,0.013047519139946]],[[0.072425045073032,-0.03447624668479,0.012736851349473],[0.0080834776163101,-0.024480771273375,-0.020921314135194],[-0.02677839808166,-0.13276527822018,-0.056864596903324]],[[0.055242460221052,0.026973854750395,-0.013121273368597],[-0.055068951100111,0.042071226984262,-0.050233379006386],[-0.042768765240908,0.018759807571769,0.062784515321255]],[[0.016257118433714,0.07871451228857,-0.0411441847682],[0.014192285947502,0.008258500136435,0.026738503947854],[0.050049282610416,0.059284821152687,-0.053344909101725]],[[0.0072889933362603,-0.0048108375631273,-0.0030482965521514],[-0.042375706136227,0.084825173020363,0.031865779310465],[-0.010369023308158,0.0023636205587536,-0.04261652380228]],[[-0.043803934007883,-0.054838199168444,-0.053271494805813],[-0.038370810449123,0.0010439034085721,-0.025094669312239],[-0.01551145222038,-0.096918568015099,-0.0067936768755317]],[[0.045532934367657,-0.033038802444935,0.08942786604166],[0.0012586732627824,0.035339847207069,-0.017860684543848],[-0.027425711974502,-0.032312143594027,0.010921780951321]],[[0.0082093868404627,0.00013679126277566,-0.0054909810423851],[0.046817321330309,0.037373520433903,0.071607768535614],[0.046499762684107,-0.037525825202465,0.0075561152771115]],[[0.03198380023241,0.013401265256107,-0.01221552491188],[-0.01654258929193,-0.074924483895302,0.07308954000473],[0.055777013301849,-0.084955580532551,-0.030734308063984]],[[-0.051203224807978,-0.027944568544626,0.01527682878077],[0.066896609961987,0.025600178167224,-0.0063577052205801],[-0.049248147755861,0.037607211619616,-0.014485979452729]],[[-0.034695457667112,0.078519605100155,-0.059583958238363],[-0.0043429573997855,0.024298790842295,-0.04133765026927],[-0.038403820246458,-0.034747108817101,0.06068355217576]],[[-0.087448090314865,0.00055886636255309,0.047972109168768],[-0.025632094591856,0.022567741572857,0.034590110182762],[0.0057476139627397,0.0148989809677,-0.018744859844446]],[[-0.015674544498324,0.00083319121040404,-0.012624882161617],[0.037911083549261,-0.025216775014997,0.027787478640676],[0.048682846128941,-0.032033171504736,0.1032133474946]],[[-0.057518791407347,-0.034163139760494,0.078634947538376],[-0.045651942491531,-0.024473167955875,-0.065834783017635],[0.028404368087649,-0.030641194432974,0.026833958923817]],[[-0.034143202006817,-0.014720492064953,-0.027516754344106],[0.022599142044783,-0.015285245142877,0.0062254001386464],[0.020112255588174,-0.0088865347206593,0.035837158560753]],[[0.001096578896977,-0.027799444273114,0.025594484061003],[0.020189298316836,-0.0056161158718169,0.035604670643806],[0.04187623783946,0.018573885783553,-0.0040571289137006]],[[-0.052299153059721,-0.076682314276695,-0.057426773011684],[-0.043971955776215,0.064989142119884,0.025323072448373],[-0.036355815827847,0.032426405698061,0.0081043131649494]],[[-0.020165357738733,-0.019242553040385,0.00052822678117082],[0.092229731380939,0.026804046705365,-0.032135184854269],[-0.016327811405063,0.074494570493698,-0.0014149722410366]],[[-0.00053125683916733,-0.0086501864716411,-0.0091154864057899],[0.017141355201602,-0.0045381947420537,-0.01909152045846],[-0.041577890515327,0.00058926787460223,-0.037806186825037]],[[-0.035035412758589,-0.025784105062485,-0.0054720649495721],[0.015686584636569,-0.0067631755955517,-0.047526385635138],[0.0085715735331178,-0.027238462120295,0.014667714014649]],[[-0.0015590082621202,0.065632589161396,-0.011367953382432],[-0.072220988571644,-0.042390771210194,-0.0038767263758928],[-0.0034659239463508,-0.004104498308152,0.0028563959058374]],[[-0.084432378411293,-0.0026787577662617,0.018483685329556],[-0.015580832026899,-0.073431760072708,0.030446514487267],[-0.0039118360728025,0.022442171350121,-0.06575008481741]],[[0.020845578983426,0.056016575545073,-0.0090899467468262],[-0.11122395843267,0.040009025484324,-0.0017809136770666],[-0.04281459748745,0.075819700956345,-0.022329391911626]],[[-0.043022256344557,-0.024140521883965,0.02982821688056],[-0.091015636920929,0.0042085438035429,0.071474954485893],[0.024578122422099,-0.052585136145353,0.0031787031330168]],[[0.01246926560998,0.02558415196836,0.055954650044441],[0.075937986373901,-0.042665615677834,0.062387969344854],[-0.030320109799504,0.015351828187704,0.066164568066597]],[[-0.044148050248623,-0.01588754542172,0.0029516771901399],[0.034408677369356,-0.010854416526854,-0.050768412649632],[-0.039337646216154,-0.052978493273258,-0.019588122144341]],[[-0.010412620380521,-0.039687652140856,0.086875811219215],[-0.010738228447735,0.042497891932726,0.01001735124737],[-0.01807926595211,-0.029664913192391,0.03085464797914]],[[-0.018317580223083,0.060077857226133,-0.022603357210755],[0.021426193416119,0.021872159093618,-0.022166144102812],[-0.081027574837208,0.11030907928944,0.030794631689787]],[[-0.050454515963793,-0.01543078571558,0.0045782960951328],[0.084700129926205,-0.021039670333266,-0.014528870582581],[0.015009441412985,0.022297352552414,-0.014301059767604]],[[-0.0063469926826656,-0.03943695500493,0.044115964323282],[-0.067928351461887,-0.022121479734778,-0.02705349214375],[0.035858064889908,-0.085975311696529,-0.061439979821444]],[[-0.0795908421278,0.044174879789352,0.063782431185246],[-0.01300001423806,0.052128750830889,0.066399991512299],[-0.05598446726799,-0.032916456460953,-0.0056571415625513]],[[-0.023739278316498,-0.015305808745325,0.02058095857501],[-0.011450067162514,0.022034835070372,0.032926820218563],[0.058253135532141,-0.067737862467766,0.012017399072647]],[[-0.019173247739673,-0.021232575178146,-0.0035192221403122],[0.011012660339475,0.032786067575216,-0.013792727142572],[-0.028730237856507,-0.024900689721107,0.015254967845976]],[[0.018905218690634,-0.017985867336392,0.010006339289248],[0.005183266941458,-0.014160267077386,-0.01896109431982],[0.057035751640797,0.0081304712221026,-0.056809477508068]],[[0.047777060419321,0.020085537806153,0.030540430918336],[-0.024407854303718,0.0077961385250092,-0.032608650624752],[0.014397637918591,-0.10037074238062,-0.076680526137352]],[[-0.04901796579361,-0.025486897677183,-0.00097331136930734],[-0.00046901233145036,0.015140395611525,0.079458720982075],[0.03011661209166,-0.089670039713383,-0.0035130793694407]],[[-0.057927403599024,-0.016796739771962,-0.085732512176037],[-0.022986186668277,-0.016903577372432,0.045200046151876],[0.0082891536876559,0.068690627813339,-0.033074092119932]],[[0.00076216942397878,0.0047212643548846,0.0005663579213433],[-0.0066391010768712,0.038621615618467,-0.090017475187778],[-0.010834735818207,-0.010927912779152,-0.078968867659569]],[[-0.011311993002892,0.038089439272881,0.042983669787645],[-0.044086810201406,0.03949610888958,0.016735162585974],[0.023262171074748,0.034013397991657,-0.064846269786358]],[[-0.041588239371777,-0.027400171384215,0.035074464976788],[0.059006955474615,0.054586086422205,0.033005177974701],[0.030273457989097,0.047635849565268,0.054955925792456]],[[0.014420569874346,-0.042993061244488,0.030578449368477],[0.0067890691570938,0.029053099453449,0.043387550860643],[0.025323826819658,0.0089317569509149,-0.094118937849998]],[[-0.017716089263558,0.018804881721735,0.017260195687413],[-0.013796404004097,0.0071839550510049,-0.019155038520694],[0.0099785104393959,0.0055041112937033,0.068146772682667]],[[0.033213056623936,0.029730727896094,-0.0040863575413823],[0.032618753612041,0.087517447769642,0.018916103988886],[-0.02826850861311,0.0086082303896546,-0.0078803012147546]],[[0.10799804329872,0.014557611197233,0.035842396318913],[-0.028841203078628,-0.046013135462999,-0.042130116373301],[0.0045369802974164,-0.021395411342382,-0.036390289664268]],[[-0.015489689074457,-0.0038534346967936,-0.0051414193585515],[0.0010572819737718,-0.0066756121814251,0.045336179435253],[0.046647798269987,-0.00029710165108554,-0.038989339023829]],[[0.035249497741461,-0.024336336180568,-0.10217905044556],[-0.030683180317283,-0.014476935379207,-0.014701720327139],[0.038834050297737,0.013904520310462,0.053070295602083]],[[0.011866448447108,-0.12575305998325,0.042699251323938],[0.026268592104316,0.0055579328909516,-0.065725728869438],[-0.014421447180212,-0.024192603304982,0.031609985977411]],[[0.026835601776838,-0.057094037532806,0.018992399796844],[-0.042681064456701,-0.016767367720604,-0.060111917555332],[0.027151400223374,0.01814391836524,0.0022871133405715]],[[0.10673709958792,0.045817136764526,0.011330405250192],[-0.039428979158401,-0.027833592146635,-0.00038209857302718],[0.012534506618977,0.017017586156726,-0.026121452450752]],[[-0.011865721084177,-0.049887858331203,-0.061365470290184],[-0.059922695159912,0.019828006625175,-0.040840186178684],[0.024803249165416,0.010879617184401,0.059330329298973]],[[-0.020152168348432,0.034646529704332,0.067056924104691],[0.040231645107269,0.061563991010189,0.030008731409907],[-0.030962958931923,-0.060355313122272,0.0077046528458595]],[[0.021304758265615,-0.019115507602692,-0.051187813282013],[-0.073248408734798,-0.012377869337797,-0.010900671593845],[0.013996213674545,0.031207259744406,-0.026248412206769]],[[0.0067920293658972,0.017830746248364,-0.038816496729851],[0.00012474988761824,-0.063811868429184,0.032609034329653],[-0.033813174813986,0.0042774365283549,-0.032348044216633]],[[0.10041221231222,-0.051454674452543,-0.10375591367483],[0.0077106370590627,0.040174685418606,0.079419635236263],[-0.034596379846334,0.031636264175177,-0.056164033710957]],[[0.014536478556693,-0.049856994301081,0.054465547204018],[-0.077959075570107,0.043106768280268,0.049561616033316],[0.0035114730708301,-0.0062064500525594,0.066050581634045]],[[-0.012929709628224,-0.0023262146860361,0.068930715322495],[-0.056857723742723,0.044361591339111,-0.078007809817791],[0.0259357560426,-0.030171720311046,-0.017805814743042]],[[0.055129155516624,-0.034698225557804,0.046654429286718],[0.032874241471291,-0.0050663114525378,-0.047299783676863],[0.044912952929735,-0.017508631572127,-0.072676546871662]]],[[[-0.003452249802649,0.0095228552818298,0.052903085947037],[0.0015131016261876,0.0088717695325613,0.02523828484118],[0.059610601514578,-0.10483228415251,0.028190448880196]],[[0.014959597028792,-0.068680040538311,0.0059881908819079],[-0.068438410758972,-0.016515888273716,-0.045560136437416],[0.050274100154638,-0.012523582205176,0.0029393713921309]],[[-0.051625497639179,0.015461407601833,-0.041696842759848],[0.019531663507223,0.040280114859343,-0.05953161790967],[0.008288056589663,0.017394371330738,-0.031941082328558]],[[0.027426404878497,0.0088007757440209,0.048900671303272],[0.0030841957777739,0.041967153549194,-0.0078939637169242],[-0.012558857910335,0.0097330221906304,-0.096406243741512]],[[0.12412490695715,-0.086999356746674,-0.025874944403768],[0.042805317789316,-0.035416875034571,-0.028613125905395],[-0.075937926769257,-0.019292451441288,-0.030559990555048]],[[0.05757138133049,-0.0033353890758008,-0.018329814076424],[-0.071887753903866,-0.076321795582771,-0.010514126159251],[-0.026182362809777,-0.031710419803858,0.0089203147217631]],[[-0.020737310871482,-0.016312405467033,0.10821879655123],[-0.036035496741533,-0.029573526233435,0.034416675567627],[-0.11019002646208,0.03986070305109,0.027016915380955]],[[0.025875590741634,0.0093663251027465,0.030542012304068],[0.1150766685605,-0.0032198447734118,0.051522754132748],[-0.12245954573154,0.0055665434338152,0.090155519545078]],[[-0.0014381953515112,0.055113106966019,-0.018411429598927],[0.017851242795587,-0.02446660771966,-0.0062656598165631],[-0.021756803616881,0.093062475323677,-0.06049745157361]],[[-0.037338394671679,-0.006843370385468,-0.010442161001265],[-0.053577046841383,0.02749439701438,0.022864639759064],[-0.045370612293482,-0.065207771956921,0.12609297037125]],[[0.028181698173285,0.040251944214106,0.041632551699877],[-0.079587303102016,-0.048842187970877,0.0094483681023121],[-0.012556862086058,0.0068315686658025,-0.067688778042793]],[[-0.03049641661346,-0.063194744288921,-0.082805640995502],[-0.07662458717823,-0.0060443445108831,0.081931240856647],[0.030514232814312,-0.02922985330224,0.077088601887226]],[[-0.040203753858805,-0.088379055261612,0.0041606021113694],[-0.039376772940159,0.0060666748322546,0.054270029067993],[0.047653455287218,-0.03563517332077,-6.2801642343402e-05]],[[-0.02186357229948,0.047771032899618,0.082912184298038],[0.035059802234173,-0.0005620209267363,0.028156656771898],[-0.045724686235189,-0.051625210791826,0.063523605465889]],[[-0.040107663720846,-0.08226566016674,0.017317684367299],[0.018695237115026,-0.044153105467558,-0.0097128506749868],[0.041730474680662,-0.024149933829904,-0.049202285706997]],[[0.067537330091,0.027757788076997,-0.027354996651411],[0.058464087545872,-0.057442292571068,-0.036312196403742],[0.035682249814272,0.123928129673,-0.054526198655367]],[[-0.0066458978690207,0.0083896862342954,0.010056695900857],[0.10817313939333,0.055309377610683,-0.0070005832239985],[0.029531745240092,0.026165418326855,0.032292604446411]],[[-0.017523612827063,-0.039468344300985,-0.028429485857487],[-0.12383618950844,-0.051220271736383,0.0018750004237518],[-0.065560936927795,-0.1017901301384,0.033545948565006]],[[0.017668783664703,0.047179136425257,-0.00037814490497112],[-0.010018728673458,0.088582292199135,-0.083221904933453],[-0.008889309130609,-0.056503560394049,-0.013838535174727]],[[0.024422416463494,-0.064746417105198,0.14049133658409],[-0.06463360786438,0.051060233265162,0.04826583340764],[0.0067243603989482,-0.042440623044968,-0.0094622708857059]],[[0.031371936202049,-0.017003767192364,-0.040794104337692],[-0.06534980237484,-0.020264901220798,-0.0078572994098067],[-0.0038455857429653,-0.074404962360859,-0.034698527306318]],[[0.016783136874437,0.11144304275513,0.039382237941027],[-0.035391326993704,-0.055105444043875,0.03826466947794],[0.035164948552847,0.057282045483589,0.014389744959772]],[[-0.022862900048494,0.040860589593649,-0.097823977470398],[-0.083335116505623,-0.039099767804146,-0.062143534421921],[0.047831382602453,0.015463242307305,0.04341858997941]],[[0.080169796943665,-0.033906817436218,0.012148573994637],[-0.088386245071888,0.018065743148327,-0.016830381006002],[0.089965261518955,0.028850307688117,-0.068924702703953]],[[0.040177803486586,0.00027970073278993,-0.021726548671722],[0.021427806466818,0.0073780603706837,0.0400708951056],[0.017784034833312,-0.058532383292913,0.0051576583646238]],[[0.030300378799438,0.076138496398926,0.01942415907979],[-0.01223545242101,-0.061123844236135,-0.027837080881],[0.017406038939953,-0.0062720621936023,-0.08278526365757]],[[0.03702225908637,0.043482847511768,-0.073832459747791],[0.046661980450153,-0.071853153407574,0.018611067906022],[0.10059558600187,-0.0057953200303018,0.016043523326516]],[[-0.0066942078992724,0.01640248671174,-0.082688599824905],[-0.0016107875853777,0.039703078567982,-0.058780919760466],[0.020272467285395,-0.0041336314752698,0.030666969716549]],[[-0.083042375743389,-0.0027539818547666,-0.010605806484818],[0.010443388484418,-0.032450821250677,-0.02714147977531],[0.02639888972044,-0.080910094082355,-0.0054324148222804]],[[0.0096791470423341,-0.0074101812206209,0.062414385378361],[-0.050129406154156,-0.047837447375059,-0.05944112688303],[-0.05579436570406,0.037441372871399,0.047015283256769]],[[-0.0058070048689842,0.02675873041153,0.046123683452606],[-0.032182764261961,0.051829647272825,0.0049786767922342],[-0.0099205151200294,0.024611053988338,0.02288943529129]],[[-0.020972972735763,-0.021274976432323,0.030564619228244],[-0.00089187535922974,-0.03110864199698,0.0054057752713561],[0.036709524691105,0.017306998372078,0.0050964173860848]],[[-0.039643872529268,0.025697361677885,-0.024897359311581],[0.11921368539333,0.027956223115325,-0.099885888397694],[0.030350549146533,-0.028270242735744,-0.028605200350285]],[[0.028445227071643,0.019259762018919,-0.047772582620382],[0.039858631789684,-0.00018614070722833,0.0027617951855063],[-0.044238671660423,-0.001174523262307,0.017677130177617]],[[0.084677040576935,-0.017650792375207,0.0089846691116691],[0.02215600758791,0.060336761176586,0.032365463674068],[-0.085239835083485,-0.012711848132312,-0.040331397205591]],[[-0.04285467043519,-0.05597086250782,-0.018027437850833],[-0.01567772962153,-0.033133316785097,-0.067706763744354],[0.1067667901516,-0.024833308532834,0.045967657119036]],[[0.041416175663471,-0.0456309504807,0.0152278970927],[0.0058327461592853,0.082217112183571,0.034152936190367],[-0.0031085158698261,0.08013641089201,0.0094871176406741]],[[0.018880954012275,-0.045340705662966,-0.00068937439937145],[0.068633064627647,0.022559486329556,0.055298656225204],[-0.051501598209143,0.0365822724998,-0.019375056028366]],[[-0.13926632702351,0.023949757218361,-0.047675780951977],[-0.057444185018539,-0.024916714057326,-0.056265752762556],[0.032455421984196,0.089179717004299,-0.017711725085974]],[[0.025032136589289,-0.072184793651104,-0.023857560008764],[0.081006184220314,-0.027278130874038,0.079717352986336],[0.048794690519571,0.025524068623781,0.0259352568537]],[[-0.049779232591391,-0.029189523309469,0.0021106137428433],[0.028928052634001,-0.0013982908567414,-0.024102918803692],[0.070197358727455,0.013272508047521,-0.036170404404402]],[[0.011443154886365,0.070570714771748,-0.020137945190072],[0.012805453501642,-0.02131381444633,0.011673180386424],[0.21189793944359,0.1373488008976,-0.050675414502621]],[[0.065211430191994,0.046375256031752,0.014418910257518],[0.087865568697453,0.10937017202377,0.10427778214216],[0.15172059834003,-0.048458427190781,0.019517913460732]],[[-0.036860074847937,-0.0032229262869805,-0.097582250833511],[-0.0034503822680563,0.039126817137003,0.032790865749121],[-0.0020610422361642,0.030698066577315,0.039609614759684]],[[0.010149934329093,-0.029950208961964,0.015268151648343],[0.03462890535593,-0.012616267427802,0.020125716924667],[0.069379583001137,0.0099562397226691,0.019786227494478]],[[-0.036959949880838,0.063378177583218,0.033292423933744],[0.0043855314143002,0.094397433102131,0.053741481155157],[0.11320240050554,0.0018801972037181,-0.071968451142311]],[[0.040197189897299,-0.032859578728676,-0.067715220153332],[0.0021609223913401,0.01200377382338,0.035484850406647],[0.016643553972244,0.041111532598734,-0.063963502645493]],[[-0.043956357985735,-0.03399271145463,-0.01957474835217],[-0.048988245427608,-0.0095815351232886,0.0034392785746604],[-0.021780554205179,0.057660326361656,-0.063947938382626]],[[0.0057714711874723,-0.046884093433619,-0.086386136710644],[-0.045632161200047,0.0038572715129703,-0.01975635252893],[0.026142796501517,-0.052501704543829,0.044225540012121]],[[-0.015964468941092,0.067631520330906,0.061158083379269],[-0.094236232340336,-0.0020491555333138,-0.033723119646311],[0.06278532743454,0.024806775152683,0.013277089223266]],[[-0.048516843467951,0.0085646621882915,-0.036206312477589],[0.016188630834222,-0.083865247666836,-0.0056039332412183],[-0.083278082311153,-0.041158761829138,-0.079607270658016]],[[0.05884438380599,-0.01068951934576,-0.039915043860674],[-0.050030950456858,-0.040683910250664,0.0051396191120148],[0.063056081533432,0.0046747820451856,0.04661813005805]],[[-0.016177603974938,0.0023616943508387,-0.013619215227664],[-0.003783272812143,0.060481779277325,0.014757750555873],[0.017141478136182,-0.045028626918793,0.098282441496849]],[[-0.04973179101944,0.06990160793066,0.039699200540781],[0.012905380688608,0.0026418454945087,0.010600854642689],[-0.015602075494826,0.017565419897437,0.1083148419857]],[[0.039201892912388,0.065196096897125,0.086898237466812],[0.02909598685801,0.01851124688983,0.017441965639591],[-0.010702354833484,0.020636493340135,-0.039161775261164]],[[0.048992060124874,-0.021442299708724,0.0024625472724438],[0.013937467709184,0.034243661910295,-0.050699010491371],[-0.12066677957773,0.022628938779235,-0.033533833920956]],[[0.044936701655388,0.11700451374054,0.097889870405197],[0.1015498265624,-0.01626337133348,0.035522785037756],[0.05149745196104,0.11288294941187,-0.019832359626889]],[[0.054538279771805,-0.01743271574378,0.038124512881041],[0.042281109839678,0.02882893383503,-0.0185706038028],[-0.077625900506973,-0.099474750459194,0.033192280679941]],[[0.018076974898577,0.0047839554026723,0.044899992644787],[-0.023055247962475,0.044967655092478,0.00012360002438072],[0.0074560777284205,0.019578041508794,0.10256651043892]],[[-0.020386012271047,-0.0043823774904013,0.043648779392242],[-0.036490648984909,0.028385559096932,-0.069975085556507],[0.015334172174335,0.011557651683688,0.05469162017107]],[[-0.089355893433094,-0.025328084826469,-0.023791663348675],[-0.038495291024446,-0.074498705565929,-0.020116619765759],[0.0053667742758989,-0.069059446454048,-0.079678945243359]],[[-0.0023746234364808,-0.030690889805555,-0.07419965416193],[-0.021569984033704,-0.056380283087492,-0.088064163923264],[-0.092508412897587,-0.062427438795567,-0.036304280161858]],[[0.033410497009754,-0.026407852768898,0.010100388899446],[0.024134904146194,0.01770355924964,-0.0043699340894818],[0.0030203540809453,0.02036883495748,0.028374446555972]],[[0.048172380775213,0.053908318281174,0.069267570972443],[0.021433724090457,0.011816401034594,-0.016525831073523],[0.038740161806345,0.014172293245792,0.01242430973798]],[[-0.092986017465591,-0.097689159214497,-0.014073156751692],[-0.025205459445715,0.011432161554694,0.036574903875589],[-0.0014496224466711,-0.0063148578628898,-0.011189023964107]],[[-0.057123590260744,-0.039732899516821,0.039870727807283],[-0.029718734323978,-0.016110537573695,-0.037178169935942],[0.043403178453445,-0.014874285086989,-0.042682752013206]],[[-0.04926448315382,0.0057646878995001,0.036477603018284],[-0.1115373596549,0.046381078660488,-0.0040177763439715],[-0.026770206168294,0.0056362533941865,-3.5346420190763e-05]],[[0.017925165593624,-0.010928828269243,0.053033035248518],[0.042172998189926,-0.012209071777761,0.028597742319107],[-0.054110016673803,0.017576355487108,-0.063924789428711]],[[-0.013508391566575,-0.0063870372250676,0.096670411527157],[-0.019236797466874,0.05037159845233,0.072517514228821],[0.0069591156207025,0.030407914891839,0.013058514334261]],[[-0.095313787460327,0.014426716603339,-0.014664736576378],[0.02974234893918,-0.04753240570426,-0.051793772727251],[0.046493619680405,0.0023289769887924,0.004530240315944]],[[0.0073023340664804,0.035991292446852,0.020916346460581],[0.065663166344166,0.10050109773874,-0.025947887450457],[0.036253966391087,0.041413746774197,0.11226209998131]],[[-0.018635550513864,-0.082145527005196,-0.051148734986782],[0.017407326027751,0.05116007104516,-0.044543407857418],[-0.067185513675213,0.0044663860462606,-0.0066024735569954]],[[0.0073447930626571,0.0026487784925848,-0.00023412556038238],[-0.047700699418783,0.042166456580162,-0.04929718375206],[-0.015782261267304,0.035824045538902,-0.001497003249824]],[[0.06680303812027,0.010697244666517,0.0054958262480795],[-0.025212809443474,0.045332826673985,-0.045875929296017],[-0.014094308018684,0.083558984100819,-0.0027035500388592]],[[0.06932120770216,0.018839072436094,0.027680201455951],[0.047315258532763,0.0092570083215833,0.066049672663212],[0.037561479955912,-0.049966279417276,0.013674284331501]],[[-0.008359088562429,0.079861156642437,-0.034436743706465],[-0.03737984597683,0.004847299773246,-0.041627623140812],[-0.096745222806931,0.026632025837898,0.079439952969551]],[[-0.10119642317295,0.0065265060402453,-0.044915433973074],[0.012348682619631,0.0031398681458086,-0.056219276040792],[-0.071632996201515,-0.010972533375025,0.022328142076731]],[[0.024390179663897,-0.022715197876096,0.025962501764297],[0.14941340684891,0.0026785105001181,0.076619394123554],[-0.019151633605361,0.039760246872902,0.072683431208134]],[[0.070172660052776,-0.015418090857565,-0.011613745242357],[-0.04146371036768,-0.11206671595573,0.05300335586071],[-0.039191659539938,-0.021427411586046,-0.046959575265646]],[[0.04203324764967,0.01342052500695,-0.033782988786697],[0.028100669384003,0.0077481572516263,0.04081167653203],[0.056644789874554,-0.042250495404005,0.030060008168221]],[[0.021938994526863,-0.081754237413406,-0.00090999208623543],[-0.025556420907378,-0.093433521687984,-0.054297998547554],[0.046408802270889,0.010908856987953,-0.065934479236603]],[[0.05668118968606,-0.000763253076002,-0.0088408458977938],[0.01646844483912,0.041473552584648,0.051832992583513],[-0.038696151226759,0.008430109359324,-0.022236742079258]],[[0.036068979650736,-0.009758492000401,0.053916078060865],[0.0032375175505877,0.003905248362571,-0.0080640083178878],[0.099776118993759,0.024757228791714,-0.01260619983077]],[[-0.012050881050527,-0.02211925201118,-0.00097713875584304],[0.020438447594643,0.030417080968618,-0.0201854724437],[0.063556618988514,0.052090786397457,0.10296445339918]],[[0.016514714807272,0.062986239790916,0.044651385396719],[0.042386692017317,-0.035946048796177,-0.025075651705265],[-0.021100267767906,-0.031932700425386,0.034398905932903]],[[-0.012822638265789,0.060271095484495,0.004610360134393],[0.022795664146543,-0.010300074703991,0.026587918400764],[0.029470110312104,-0.027857111766934,-0.02989474311471]],[[0.078595899045467,0.0065613798797131,0.07160934060812],[0.10882452130318,0.033169306814671,0.10279171168804],[-0.044720061123371,-0.052738081663847,0.077638320624828]],[[-0.03822623565793,0.032735802233219,0.0061761867254972],[-0.039362698793411,0.0039802552200854,0.01450558938086],[-0.034246407449245,-0.029749140143394,-0.0062300353311002]],[[0.087777256965637,-0.0091412765905261,0.066580712795258],[0.033510588109493,0.018212839961052,-0.0047923508100212],[0.05640621855855,-0.028673440217972,0.059220653027296]],[[0.052393361926079,-0.08679760992527,0.069109871983528],[-0.059220742434263,-0.0091027896851301,0.041746910661459],[0.069760337471962,-0.021874506026506,0.01082812063396]],[[-0.063480406999588,0.026379927992821,0.031971286982298],[-0.037110067903996,-0.036340147256851,0.011487348936498],[0.0055167451500893,-0.045532073825598,0.053299598395824]],[[0.096620626747608,0.05487373098731,0.010856477543712],[0.012426699511707,-0.083483494818211,-0.081381186842918],[-0.099614523351192,-0.078161954879761,-0.010456321761012]],[[-0.0081059830263257,0.060986287891865,0.01815634034574],[-0.059999778866768,-0.010025691241026,-0.0055264630354941],[-0.064660921692848,0.045163098722696,0.05300011113286]],[[0.029884528368711,0.0026727640070021,0.0040031359530985],[0.11782394349575,0.056359067559242,0.024111056700349],[-0.0084787867963314,0.12467651814222,-0.039352238178253]],[[-0.04814225435257,-0.017437256872654,-0.047813639044762],[0.012545985169709,0.010723201557994,-0.011225428432226],[-0.10154582560062,-0.03166476637125,-0.056199956685305]],[[-0.052437201142311,-0.0046074325218797,0.036289963871241],[0.069710291922092,0.010222884826362,-0.081857450306416],[0.13147492706776,-0.032466124743223,0.018468344584107]],[[-0.060191161930561,0.00090840755729005,-0.0061861150898039],[-0.021194946020842,-0.027104686945677,0.088937252759933],[-0.010835117660463,0.045325577259064,0.019498204812407]],[[0.14916421473026,0.060704059898853,-0.063541576266289],[-0.0059128068387508,0.0015478858258575,0.046501901000738],[-0.01503446791321,0.077538475394249,0.16911447048187]],[[0.0010734868701547,-0.0042955963872373,-0.029482837766409],[-0.059181068092585,-0.025806818157434,-0.00070672063156962],[-0.039781745523214,0.010425780899823,0.075419925153255]],[[0.0068512889556587,0.017095621675253,0.022548884153366],[0.019839394837618,-0.035161927342415,-0.030520467087626],[0.073811702430248,0.066858738660812,0.013263391330838]],[[0.017160713672638,-0.06458555161953,0.0053394413553178],[-0.011903955601156,-0.034420628100634,0.040909975767136],[0.026271615177393,0.02018148265779,-0.0025870003737509]],[[-0.03923886269331,-0.032312545925379,-0.025863483548164],[0.056033208966255,0.087090089917183,0.02413497492671],[-0.023275492712855,0.071840986609459,-0.12993323802948]],[[0.090187899768353,0.021558843553066,0.06158035993576],[-0.049610443413258,-0.0089909145608544,-0.091547280550003],[-0.033409595489502,0.038685351610184,-0.056025564670563]],[[0.021485514938831,-0.092503078281879,-0.08609239757061],[-0.02726118825376,-0.0044578863307834,-0.036701761186123],[-0.071203008294106,0.03645009920001,-0.044613465666771]],[[-0.057194285094738,-0.1017766520381,-0.076509140431881],[0.13539327681065,0.05187651515007,0.046449650079012],[0.015535113401711,0.13221248984337,0.088183455169201]],[[-0.026792116463184,0.0025906395167112,0.064118273556232],[-0.068177558481693,0.068864859640598,0.039549734443426],[-0.023696161806583,0.084471836686134,-0.023183027282357]],[[0.062811240553856,0.10582415759563,0.083941146731377],[-0.0076022702269256,0.010734866373241,0.0074353637173772],[-0.031158512458205,0.033291600644588,0.019794961437583]],[[0.034133035689592,-0.068768113851547,0.045046057552099],[0.027365565299988,-0.096141390502453,-0.0070392088964581],[-0.0086432453244925,-0.035224005579948,-0.13561142981052]],[[0.0039481618441641,0.053767058998346,-0.035225562751293],[-0.039211511611938,0.030209273099899,0.004279631190002],[-0.08481302857399,0.040332306176424,-0.0022655823267996]],[[0.11937642842531,0.0037202765233815,0.076945677399635],[0.084905557334423,0.028871636837721,0.025999125093222],[-0.037439309060574,-0.0049147759564221,0.15390323102474]],[[-0.023132806643844,0.017137344926596,0.11137603968382],[-0.029092241078615,-0.0011069141328335,-0.020837942138314],[0.02677913941443,-0.023405190557241,-0.082695841789246]],[[0.0071259192191064,0.031597714871168,0.10279839485884],[0.019324222579598,-0.034736070781946,0.0035093971528113],[-0.015754517167807,-0.019949795678258,-0.043672293424606]],[[0.010992216877639,-0.08566415309906,0.032870940864086],[0.035178855061531,0.0086990464478731,0.053168907761574],[0.027297738939524,0.0076909894123673,-0.023471746593714]],[[-0.020630955696106,0.060829970985651,0.029204582795501],[0.026279672980309,0.019122058525681,0.0166398845613],[0.011539593338966,-0.10033986717463,0.029670506715775]],[[0.0028936655726284,-0.043426875025034,0.034055516123772],[0.004252883605659,-0.049586992710829,-0.026224663481116],[0.04659041389823,0.095227584242821,0.049910623580217]],[[-0.01651618257165,-0.026819251477718,-0.029367730021477],[0.034812342375517,-0.030117936432362,-0.078659944236279],[0.027645671740174,0.01427922770381,0.015800021588802]],[[0.021821720525622,0.035710178315639,0.077166981995106],[0.069068513810635,0.0072707403451204,0.0350701212883],[-0.027047332376242,-0.015185517258942,0.051645576953888]],[[-0.01005154196173,-0.043899156153202,-0.0023776129819453],[-0.037192869931459,-0.027150614187121,-0.048528000712395],[-0.06036989018321,-0.059828612953424,0.022431544959545]],[[0.038801368325949,0.048812612891197,0.038494691252708],[-0.032632701098919,0.014256587252021,-0.040273755788803],[-0.055921122431755,0.047355368733406,-0.00026171450736001]],[[0.053410984575748,0.097475327551365,-0.034834954887629],[0.0422438159585,0.082659743726254,-0.031723041087389],[-0.022718649357557,0.095617264509201,0.074898950755596]],[[-0.059450633823872,-0.044299956411123,-0.030110122635961],[-0.046832282096148,-0.070908933877945,-0.0025438859593123],[0.085978098213673,0.10546004772186,0.044489547610283]],[[0.0048832134343684,-0.068616718053818,0.064090415835381],[-0.010558066889644,-0.084360606968403,-0.053602661937475],[0.016853019595146,-0.064930059015751,-0.045754663646221]],[[-0.042135965079069,0.045618582516909,-0.07242551445961],[-0.034529790282249,-0.034315817058086,-0.017733864486217],[0.052950941026211,0.01596312597394,0.050165634602308]],[[0.065729700028896,-0.041422750800848,-0.027757845818996],[0.063685365021229,0.058306209743023,-0.0075141880661249],[0.030380755662918,-0.025410871952772,0.0031181995291263]],[[0.057959709316492,-0.046169441193342,0.021974822506309],[0.029746158048511,0.014192385599017,-0.059708442538977],[-0.064294159412384,-0.023346934467554,-0.02894327044487]],[[-0.031665030866861,0.024814628064632,-0.020759269595146],[-0.07393142580986,-0.027913337573409,-0.049322534352541],[-0.020826116204262,0.029190704226494,-0.024764735251665]],[[0.058225307613611,-0.048504367470741,0.084220074117184],[5.4171221563593e-05,0.033811122179031,0.046096883714199],[-0.1011510565877,0.088588871061802,0.040389347821474]],[[-0.0084384204819798,-0.061293005943298,-0.055368468165398],[0.011289030313492,-0.1020595729351,0.025378059595823],[-0.021005656570196,0.033858194947243,0.0036548925563693]]],[[[0.076688945293427,0.040444489568472,0.022797089070082],[-0.0010778304422274,-0.021240901201963,-0.016831312328577],[-0.049935478717089,-0.041359912604094,-0.053781874477863]],[[-0.032143384218216,0.048740841448307,-0.0059881592169404],[0.01192353758961,-0.020680002868176,-0.1349912583828],[0.0085792252793908,0.020637344568968,-0.047018192708492]],[[0.12423215806484,0.024276215583086,-0.061570752412081],[0.18178535997868,0.11848893016577,0.086188361048698],[-0.17242416739464,-0.056649848818779,0.11957217007875]],[[0.016049973666668,-0.1182923913002,0.047181781381369],[-0.21109676361084,0.05166682600975,0.068090945482254],[0.030089382082224,0.22979578375816,-0.015223013237119]],[[-0.013537168502808,-0.0075547331944108,-0.17838425934315],[0.096669085323811,0.16202883422375,-0.20160683989525],[0.048599362373352,0.064278624951839,-0.18386985361576]],[[0.086043611168861,-0.019680490717292,0.045091558247805],[-0.041514001786709,-0.018631767481565,-0.074271693825722],[-0.010950867086649,-0.060240343213081,0.0065138493664563]],[[-0.0027676492463797,-0.03674840927124,0.019765749573708],[0.0044836346060038,0.063326731324196,0.035710904747248],[-0.12617807090282,0.025322590023279,0.029391329735518]],[[0.18273313343525,0.11159700900316,-0.23238334059715],[0.077703066170216,0.068945273756981,-0.25673744082451],[0.14900302886963,-0.13763077557087,0.12698404490948]],[[-0.010931484401226,-0.075167410075665,0.0027420299593359],[-0.10143348574638,0.077888935804367,0.021151937544346],[-0.016309287399054,0.023278942331672,-0.074678346514702]],[[0.033669784665108,0.071026705205441,0.16735346615314],[-0.0076103582978249,0.010154343210161,0.03484608232975],[-0.15810269117355,0.057683918625116,-0.031683094799519]],[[-0.11323452740908,-0.13102918863297,-0.10495279729366],[-0.087491370737553,-0.12831369042397,-0.019388128072023],[0.042870059609413,0.0066309827379882,0.1043946146965]],[[-0.059685334563255,-0.011944071389735,0.039399024099112],[-0.038497611880302,0.14195090532303,-0.0020683603361249],[-0.092065066099167,-0.022700190544128,-0.023933190852404]],[[0.18370135128498,0.13248614966869,0.053796797990799],[0.059400256723166,-0.011286149732769,-0.046716384589672],[-0.0022874886635691,0.013143363408744,0.00015638310287613]],[[0.026577657088637,-0.063924916088581,0.037578497081995],[0.034627728164196,0.017936719581485,-0.20418319106102],[0.093311704695225,-0.072089344263077,0.072676226496696]],[[-0.053306557238102,-0.05361009016633,-0.039757806807756],[-0.084542974829674,0.081981547176838,0.056746888905764],[0.13247211277485,-0.13875760138035,-0.22404910624027]],[[0.064127415418625,0.078270494937897,0.093718327581882],[-0.007030020467937,0.0086266752332449,0.054060745984316],[-0.10052654147148,-0.11067329347134,0.1777231991291]],[[0.0086336694657803,0.035028290003538,0.074733719229698],[-0.016877420246601,0.0044859652407467,0.067216396331787],[-0.081703178584576,0.070347279310226,0.073525808751583]],[[0.011796798557043,-0.029307330027223,-0.0504828132689],[-0.045427821576595,-0.039358794689178,-0.026896657422185],[0.10864119231701,-0.095358185470104,-0.0027118218131363]],[[0.05468812957406,0.13775803148746,0.0900719165802],[0.049093250185251,0.18645283579826,-0.012511880137026],[-0.034584723412991,-0.017784610390663,0.028105406090617]],[[-0.0025400521699339,-0.022635901346803,0.0071674264036119],[-0.069465190172195,0.0039535975083709,-0.092955648899078],[-0.0012201712233946,0.042701005935669,0.11630007624626]],[[0.0169169716537,-0.072335124015808,-0.061806373298168],[-0.011862816289067,0.04586286842823,-0.039355028420687],[-0.078238651156425,-0.098145738244057,0.10390819609165]],[[-0.0044573373161256,-0.1052058339119,0.027197696268559],[0.0047549423761666,0.077091157436371,0.058356631547213],[0.032784782350063,-0.032348472625017,0.065789386630058]],[[-0.02328391559422,-0.016304034739733,-0.16762848198414],[0.095749489963055,-0.046247232705355,0.018855400383472],[0.013006718829274,0.025652285665274,0.0092181088402867]],[[-0.0089778024703264,0.026507928967476,-0.036762610077858],[0.017180729657412,0.078560762107372,0.037193037569523],[-0.027179138734937,-0.038487952202559,0.038880504667759]],[[0.36251220107079,-0.12046867609024,0.26592817902565],[-0.17271421849728,0.081561163067818,-0.01681100577116],[0.085558459162712,-0.0068034739233553,-0.095249466598034]],[[-0.083369553089142,-0.07468082010746,-0.14652426540852],[-0.035944346338511,-0.12882627546787,-0.18321593105793],[0.0030537617858499,-0.12156692147255,-0.022136924788356]],[[-0.0071742758154869,0.028615724295378,0.11483155190945],[-0.12403619289398,-0.10410641878843,-0.16716574132442],[-0.069022826850414,-0.13544952869415,-0.13691501319408]],[[-0.065710254013538,-0.082366317510605,-0.10735963284969],[0.072324253618717,-0.14413630962372,0.07441246509552],[-0.0027610552497208,0.006504088640213,-0.041586425155401]],[[0.0028210352174938,0.03285114094615,0.063846930861473],[-0.075230918824673,0.043709494173527,-0.045965015888214],[0.077862843871117,-0.072656646370888,0.0010253981454298]],[[-0.098212189972401,-0.021300528198481,-0.1061977148056],[-0.063478603959084,0.054497625678778,-0.028561111539602],[0.021195752546191,0.14803110063076,0.063357576727867]],[[0.13560344278812,0.066984489560127,-0.14685051143169],[0.11057525128126,-0.11535443365574,-0.12026949971914],[-0.059348706156015,0.11921755969524,-0.042165189981461]],[[0.064007259905338,0.035906594246626,-0.046627283096313],[0.00063934904756024,-0.023187253624201,0.077606230974197],[0.097518362104893,-0.12437220662832,0.15697763860226]],[[0.092362500727177,-0.011075204238296,-0.0045451275072992],[0.01736662723124,-0.19997709989548,-0.071156568825245],[-0.085023485124111,0.011274980381131,0.060583792626858]],[[0.010512078180909,0.028460524976254,0.019850045442581],[0.02182350307703,0.016662027686834,-0.063940204679966],[0.012737534940243,0.041545778512955,-0.025958780199289]],[[-0.29962068796158,-0.14834506809711,-0.033701870590448],[-0.067793749272823,-0.2041043639183,0.045570887625217],[-0.16026009619236,-0.063572309911251,0.028604123741388]],[[0.023518938571215,0.049838028848171,0.071480236947536],[0.0049258316867054,-0.067783683538437,0.03009058535099],[-0.024425685405731,0.011585128493607,-0.049001056700945]],[[0.023001078516245,0.073707684874535,-0.18867006897926],[0.17492792010307,0.047786980867386,0.021055534482002],[0.079411558806896,-0.010767990723252,0.013329948298633]],[[0.0088945757597685,-0.14695307612419,-0.02236327342689],[-0.035603791475296,0.0069054132327437,0.032262086868286],[0.06416118144989,0.041107848286629,-0.12908215820789]],[[0.00027111862436868,0.056931708008051,-0.022440768778324],[-0.10980889201164,-0.12908855080605,0.065687820315361],[0.033478755503893,0.0097547965124249,0.044040322303772]],[[-0.025385158136487,0.013208017684519,-0.038770001381636],[-0.023283353075385,0.047119826078415,-0.04070084169507],[0.024724526330829,0.055914830416441,-0.051072802394629]],[[-0.092237696051598,-0.083001554012299,-0.087124794721603],[-0.063129603862762,0.087817028164864,0.024202113971114],[-0.087470173835754,0.046656429767609,-0.079174220561981]],[[0.033288650214672,0.022858627140522,-0.10251743346453],[0.064770124852657,-0.0046000122092664,0.087500780820847],[0.090846575796604,0.010921631008387,0.041045933961868]],[[0.014951437711716,-0.051486570388079,-0.10986290127039],[-0.086551241576672,-0.030092723667622,0.11731193214655],[0.11452050507069,-0.012198206968606,-0.13799768686295]],[[-0.048232086002827,0.024776637554169,0.041644260287285],[-0.059266280382872,0.046106349676847,-0.058436390012503],[0.021901942789555,-0.034622192382812,0.0048669502139091]],[[-0.11667069792747,-0.17888422310352,-0.063041545450687],[-0.17010043561459,-0.040386971086264,-0.083605729043484],[-0.035968668758869,0.13676722347736,0.039109073579311]],[[-0.066312722861767,0.028839804232121,-0.16490744054317],[0.065138414502144,-0.12081675231457,0.068582892417908],[-0.042222294956446,0.05804617702961,-0.11282201856375]],[[-0.095055155456066,0.046177253127098,0.19226475059986],[-0.14123344421387,0.23810398578644,0.15900330245495],[0.11712973564863,0.21228961646557,-0.055804640054703]],[[0.020408255979419,-0.071490623056889,0.05281250551343],[0.041653204709291,0.014511064626276,-0.043104168027639],[-0.039217993617058,0.017780382186174,-0.060554016381502]],[[-0.0031906068325043,0.077972538769245,-0.033020012080669],[0.048851508647203,-0.094618126749992,-0.16874122619629],[-0.092459425330162,-0.19584235548973,-0.21875821053982]],[[0.0121836271137,-0.017555519938469,-0.019549926742911],[0.0073673999868333,0.02071856148541,0.0089074308052659],[-0.040867436677217,-0.022917237132788,0.10666672885418]],[[0.052062548696995,0.027796845883131,-0.10912687331438],[0.088453717529774,-0.024928929284215,0.042213778942823],[0.009291572496295,-0.065401040017605,0.025030758231878]],[[-0.16733485460281,-0.11046832799911,-0.0030149596277624],[-0.040327433496714,0.0072850002907217,0.13702324032784],[-0.11540380865335,0.018293675035238,0.05865665152669]],[[0.035187710076571,-0.0098253823816776,-0.054449107497931],[-0.0012453220551834,0.013768183998764,0.046808041632175],[-0.017662150785327,-0.041071735322475,0.0050523225218058]],[[0.068217255175114,0.0064424746669829,-0.0065036350861192],[0.031827956438065,-0.02704506739974,-0.0067490446381271],[-0.084533467888832,-0.072256967425346,-0.1697573363781]],[[-0.019160026684403,0.068141207098961,0.15953940153122],[0.071976311504841,0.049257546663284,-0.11900293827057],[-0.032723255455494,0.072372913360596,0.15159480273724]],[[-0.037107992917299,-0.065788589417934,0.10232271254063],[0.031013008207083,-0.013990897685289,-0.0020516121294349],[-0.023566240444779,-0.01995899528265,0.032585401087999]],[[-0.058902382850647,-0.049881510436535,-0.01513094175607],[-0.068542636930943,0.048388827592134,-0.063128255307674],[0.10081011801958,-0.11279877275229,-0.031443178653717]],[[-0.062930501997471,0.016153397038579,0.075842171907425],[0.067346297204494,0.0014870357699692,0.012379471212626],[-0.15267494320869,-0.0012536941794679,-0.066484317183495]],[[0.017468705773354,0.092184878885746,0.067716635763645],[-0.11883932352066,0.15795719623566,-0.10339562594891],[0.059234291315079,0.068918041884899,0.073537357151508]],[[0.096695721149445,0.061803013086319,0.060939460992813],[0.0026951669715345,0.03314695879817,-0.16042146086693],[-0.09425513446331,-0.038130283355713,0.038226902484894]],[[-0.027737583965063,0.00055577541934326,-0.062453627586365],[0.001273809815757,0.0068512824364007,-0.085912644863129],[-0.21870018541813,-0.014881174080074,0.027306390926242]],[[0.01390000898391,-0.08847451210022,-0.057319398969412],[-0.016677986830473,-0.17357312142849,-0.079814419150352],[-0.14663226902485,-0.10916911065578,0.011290802620351]],[[0.0011074190260842,0.14118257164955,0.17746916413307],[0.043435022234917,-0.0046615535393357,0.048957716673613],[-0.033854130655527,-0.041678056120872,0.016314400359988]],[[-0.024388607591391,-0.11873604357243,0.017221743240952],[-0.067085698246956,0.11024471372366,0.099558115005493],[-0.025975029915571,-0.092840671539307,0.02590174973011]],[[0.020210092887282,0.064190573990345,0.05603926628828],[0.018303230404854,0.076196663081646,-0.022610876709223],[0.059212047606707,0.00091407995205373,-0.11489030718803]],[[0.06133421510458,-0.079062826931477,-0.026630403473973],[-0.04090329259634,0.033434018492699,0.095937214791775],[0.11173445731401,0.086563169956207,0.085828222334385]],[[0.14043726027012,0.071255326271057,0.072089336812496],[0.070709258317947,-0.031686797738075,-0.089585244655609],[0.078722387552261,-0.077918857336044,-0.14890091121197]],[[-0.013852274045348,0.079655833542347,0.058278657495975],[-0.063573092222214,0.064138688147068,0.024827448651195],[-0.02774808742106,0.089692257344723,0.050059773027897]],[[0.10740070044994,-0.040463209152222,0.13088104128838],[0.076388075947762,0.12354949861765,-0.15337085723877],[-0.00077979586785659,-0.1282821893692,-0.16520693898201]],[[-0.052788097411394,0.027718732133508,-0.053365468978882],[0.036965079605579,-0.055921372026205,-0.11201079189777],[0.10758000612259,-0.0012220037169755,-0.039375893771648]],[[0.019843135029078,-0.0084501346573234,-0.0085771037265658],[0.061045031994581,-0.17888309061527,-0.02468641102314],[0.00024663002113812,0.092109031975269,0.042801570147276]],[[-0.063438788056374,-0.037564221769571,0.076618060469627],[-0.14140771329403,-0.040645677596331,0.21111139655113],[-0.0091390367597342,0.18609870970249,-0.032073341310024]],[[0.10566277801991,0.0026413071900606,-0.064369231462479],[0.12773491442204,-0.065762080252171,-0.00012058637366863],[0.09285306930542,0.042867578566074,-0.0041851429268718]],[[0.071366362273693,-0.14482846856117,-0.0053447438403964],[0.037758771330118,-0.0075563383288682,-0.11623830348253],[0.042803522199392,-0.012274689041078,-0.018774420022964]],[[-0.10211585462093,-0.097432315349579,-0.0024870852939785],[-0.086229905486107,-0.020607205107808,-0.032023914158344],[-0.097089923918247,-0.024863930419087,-0.056360755115747]],[[-0.059422440826893,0.052204754203558,0.017988638952374],[-0.069609843194485,0.027752306312323,-0.062164701521397],[0.098213396966457,0.080043986439705,0.04758159071207]],[[0.0096705621108413,0.11942659318447,0.042379591614008],[-0.02249169908464,0.12904182076454,-0.023882376030087],[0.034237559884787,0.0081788981333375,0.008887923322618]],[[0.17366851866245,-0.086560450494289,0.12804289162159],[-0.0040023596957326,0.17932692170143,-0.19630636274815],[0.0026231410447508,0.041537269949913,0.077291361987591]],[[-0.005271440371871,0.066483475267887,-0.046076744794846],[-0.10904301702976,-0.037963002920151,-0.082637593150139],[-0.029473828151822,0.035016629844904,0.022844862192869]],[[-0.049570932984352,0.0067963316105306,0.17006315290928],[0.043456707149744,-0.0018620559712872,-0.09177166223526],[-0.067301444709301,0.067733876407146,-0.10769732296467]],[[-0.049845196306705,0.015360576100647,-0.036351814866066],[-0.03123489767313,-0.12940146028996,0.040523171424866],[-0.20949250459671,-0.12107061594725,-0.21808987855911]],[[0.04272723197937,0.029278971254826,0.092275597155094],[0.12132558971643,0.13473330438137,0.17370946705341],[0.054754547774792,0.027981733903289,0.054794002324343]],[[0.1585463732481,0.11233413219452,-0.028024127706885],[0.0060803522355855,-0.1605229228735,0.039820268750191],[0.0022920812480152,0.039051577448845,0.026014626026154]],[[-0.022418951615691,-0.054290328174829,0.0078222202137113],[0.060696870088577,0.039134986698627,-0.016415668651462],[0.0017288983799517,-0.0058393515646458,-0.032393116503954]],[[-0.0046053407713771,-0.032001435756683,0.011222395114601],[-0.10496983677149,-0.11602775007486,-0.00027040473651141],[-0.11670710146427,0.057843755930662,0.12136244773865]],[[-0.044800203293562,0.054443396627903,-0.02110960893333],[0.11776362359524,-0.048280466347933,-0.15276257693768],[0.099932551383972,0.022956570610404,-0.032463740557432]],[[0.10336460918188,0.051341488957405,0.058621495962143],[0.026342626661062,0.051059376448393,-0.11099297553301],[0.037166148424149,-0.034963700920343,-0.068065881729126]],[[0.1026765704155,0.033577337861061,0.054273098707199],[0.018638851121068,-0.031363394111395,0.095099650323391],[-0.084292232990265,0.02383872680366,0.035306442528963]],[[-0.13511411845684,-0.032414872199297,-0.016021000221372],[-0.022633051499724,0.0078896265476942,-0.096691332757473],[0.042569663375616,0.090130127966404,0.18489466607571]],[[0.070946231484413,-0.031095173209906,-0.025648316368461],[0.040452338755131,0.01566369831562,0.01276814006269],[-0.0042942445725203,-0.0046158223412931,-0.011552391573787]],[[0.13725563883781,0.073877044022083,0.10476812720299],[0.08584688603878,-0.015311190858483,0.015292624942958],[-0.024448223412037,-0.047922618687153,-0.18173426389694]],[[-0.087939530611038,-0.085372999310493,-0.050606045871973],[0.030682347714901,0.12417128682137,0.055953472852707],[-0.061078779399395,-0.086896933615208,-0.044157523661852]],[[0.034724351018667,0.015703858807683,-0.049912482500076],[-0.029516903683543,0.02813064865768,0.04199929907918],[-0.24123957753181,0.18779468536377,0.049188248813152]],[[0.0076140561141074,0.075099542737007,0.13547475636005],[0.060729097574949,0.065527573227882,0.10064050555229],[0.045475646853447,-0.04008412733674,-0.025788728147745]],[[-0.10360591858625,-0.019379315897822,-0.015592432580888],[-0.028064819052815,0.10547112673521,-0.010817888192832],[-0.13386160135269,0.1214834600687,-0.0043804198503494]],[[-0.089552074670792,0.063372477889061,0.16797883808613],[-0.032920747995377,-0.061091437935829,0.11088670790195],[0.16008128225803,0.014632191509008,0.0042667905800045]],[[0.13893823325634,0.076098307967186,-0.010431995615363],[-0.16128630936146,-0.024537168443203,0.028151152655482],[0.14715513586998,-0.01665697619319,-0.075910940766335]],[[-0.021530961617827,-0.0070806429721415,0.16432802379131],[0.089750587940216,-0.0084082819521427,0.061399798840284],[-0.0029123327694833,0.079528741538525,0.01362057775259]],[[0.054399788379669,-0.065810069441795,-0.097625851631165],[-0.0075887446291745,0.065383099019527,-0.046942289918661],[-0.013232364319265,0.035755265504122,0.024729592725635]],[[0.093589253723621,-0.13993208110332,0.037093225866556],[-0.222860917449,0.14882987737656,-0.14716197550297],[0.17799715697765,-0.21365855634212,0.11651965230703]],[[0.1072713136673,0.23637808859348,0.11948238313198],[0.14480911195278,0.12623761594296,-0.027623075991869],[0.099363297224045,0.00052559550385922,0.095615603029728]],[[-0.079898647964001,0.066428355872631,0.055226679891348],[-0.14054258167744,-0.045102212578058,0.065461307764053],[0.02237556502223,-0.034173060208559,-0.0008879845845513]],[[-0.056680824607611,-0.023874485865235,0.04793257266283],[-0.010837100446224,0.25305762887001,0.18829703330994],[0.062179904431105,0.11954287439585,-0.11194621026516]],[[0.068519614636898,-0.024897675961256,-0.11064528673887],[0.029848484322429,0.023756267502904,0.034735403954983],[-0.032011434435844,0.063192747533321,-0.090458795428276]],[[0.014565827324986,0.086240768432617,0.1055593341589],[-0.0046731759794056,-0.10803905874491,-0.02732022292912],[-0.0039069280028343,0.022632448002696,-0.023466508835554]],[[0.14121150970459,-0.087127216160297,0.1531545817852],[0.0038825569208711,-0.088780410587788,0.14536461234093],[-0.11502783745527,-0.024465685710311,0.063622891902924]],[[-0.062755763530731,0.0025338206905872,0.062447596341372],[0.03283878415823,0.011370188556612,0.16188043355942],[-0.046061381697655,-0.0098513923585415,0.10597860068083]],[[0.028223430737853,0.015631087124348,-0.1085923537612],[0.096204005181789,-0.032694708555937,0.022771768271923],[-0.017401212826371,0.0050356788560748,-0.011547774076462]],[[-0.19958198070526,0.076019540429115,-0.11227009445429],[0.059556007385254,-0.088725127279758,-0.0068985973484814],[-0.012855973094702,0.0088401660323143,0.080539137125015]],[[-0.017915142700076,0.057127736508846,-0.0431137830019],[-0.0094060366973281,0.020027872174978,-0.04211138188839],[0.020210452377796,0.020907886326313,0.019432267174125]],[[0.054309364408255,-0.022397324442863,-0.03395427390933],[-0.037423938512802,-0.043407630175352,0.032743617892265],[-0.068534918129444,0.016299759969115,0.046947155147791]],[[-0.16281943023205,-0.013670161366463,-0.06020025536418],[-0.077811390161514,0.015406768769026,-0.10945465415716],[-0.13897655904293,-0.11421723663807,-0.074120856821537]],[[0.019800404086709,-0.020357379689813,-0.18137922883034],[0.015204223804176,0.049069672822952,0.071743465960026],[0.03221258148551,-0.057400867342949,-0.038239318877459]],[[-0.14198653399944,0.025491716340184,-0.030281756073236],[-0.040521010756493,-0.05464019626379,0.013056189753115],[0.010624312795699,0.13226330280304,0.014054494909942]],[[-0.040032170712948,-0.014285271987319,0.056068483740091],[0.0039829183369875,-0.056737769395113,-0.097161792218685],[0.040765229612589,0.029916575178504,-0.018412288278341]],[[0.04906890168786,-0.10200102627277,0.020243767648935],[0.023708933964372,-0.086541093885899,0.040747672319412],[0.025933038443327,0.023942936211824,-0.00092691177269444]],[[-0.097187168896198,0.05745779722929,-0.067747183144093],[-0.12085577100515,0.015629947185516,-0.054323319345713],[-0.095632866024971,0.026595329865813,-0.073607370257378]],[[0.011162934824824,0.044356673955917,-0.048973690718412],[0.033628806471825,0.10659443587065,-0.026021745055914],[0.033088132739067,0.076962873339653,-0.024112798273563]],[[-0.047552466392517,-0.041627168655396,0.0096200192347169],[-0.080096408724785,-0.020706489682198,-0.015055359341204],[-0.074179388582706,0.018614934757352,0.12373016774654]],[[0.072066098451614,0.16271075606346,0.084732785820961],[0.10558771342039,-0.057755190879107,-0.0039168964140117],[-0.031493537127972,-0.038356993347406,-0.13926365971565]],[[0.097314193844795,-0.070409364998341,0.0048694969154894],[-0.061402194201946,-0.052743665874004,-0.14153759181499],[-0.046240296214819,-0.088799692690372,-0.05331764370203]],[[-0.050889071077108,-0.0030180353205651,-0.076116301119328],[-0.09472843259573,0.025888023898005,0.10720309615135],[0.026905277743936,0.17057791352272,0.10978317260742]],[[-0.012966372072697,-0.10648634284735,0.00266630994156],[0.010901696048677,-0.22176690399647,0.01593860052526],[-0.0091732032597065,-0.10034091770649,0.081413887441158]],[[-0.11393304169178,0.041844483464956,-0.10366731137037],[-0.0071352496743202,0.095984905958176,-0.02907838113606],[0.073930978775024,0.080300763249397,-0.11504112184048]],[[0.069276928901672,-0.0081695085391402,0.0035385051742196],[0.071593187749386,-0.042412977665663,0.058821689337492],[-0.028949145227671,0.11102639138699,0.05045223981142]],[[-0.0069008180871606,0.071510963141918,0.05692108348012],[-0.026249973103404,-0.095509268343449,-0.04737227037549],[-0.040696162730455,-0.020646201446652,0.018059680238366]],[[0.1236519291997,0.011792700737715,-0.14717763662338],[0.068417094647884,0.022314894944429,0.028495356440544],[0.12841632962227,0.023502992466092,0.0041916752234101]],[[0.021312950178981,-0.0018498547142372,-0.15216068923473],[-0.075602680444717,-0.017867999151349,0.22633844614029],[-0.088237881660461,0.054675195366144,-0.14428186416626]]],[[[-0.079159639775753,0.018304543569684,-0.011873597279191],[-0.0051750116981566,0.060139931738377,-0.034540168941021],[-0.043168488889933,-0.043809477239847,0.0067386953160167]],[[0.005124356597662,0.053782530128956,0.0036621592007577],[-0.073789693415165,0.043157659471035,0.0083108814433217],[0.043745219707489,0.017324209213257,0.039298195391893]],[[-0.009412718936801,0.0025660279206932,0.00322859082371],[-0.0088215563446283,0.027962313964963,0.045545056462288],[0.038668401539326,0.022296575829387,0.071593225002289]],[[0.059083204716444,-0.040865957736969,0.059393860399723],[0.0021761467214674,-0.024864109233022,-0.046115897595882],[-0.070029698312283,0.034501854330301,0.054643154144287]],[[-0.065785698592663,0.011755472049117,0.017677633091807],[0.014599815011024,0.053707156330347,0.0024394900538027],[-0.059867158532143,-0.066964209079742,-0.037966419011354]],[[0.088955283164978,0.011803326196969,0.006870161741972],[7.6887372415513e-05,0.017961191013455,0.036941472440958],[-0.026783972978592,-0.0070577953010798,-0.07439499348402]],[[0.030580351129174,-0.0054233181290329,0.085054092109203],[-0.0027954841498286,-0.016726614907384,-0.0082500763237476],[-0.051694296300411,-0.017842881381512,0.044493366032839]],[[0.085298635065556,0.046052727848291,0.00065908668329939],[0.036887858062983,0.027299787849188,-0.02744604088366],[0.0041121845133603,-0.0095588555559516,0.040454220026731]],[[0.056628812104464,0.033838957548141,-0.023372007533908],[-0.049979720264673,-0.13279922306538,-0.02630627900362],[0.04853306338191,-0.00040636127232574,-0.0081267980858684]],[[-0.025166181847453,-0.048055876046419,0.099712923169136],[0.012851435691118,-0.014454088173807,-0.011633602902293],[-0.011397067457438,-0.032482832670212,0.061570458114147]],[[-0.015003402717412,0.020886337384582,-0.05087324231863],[0.043467681854963,0.076268278062344,0.012595481239259],[-0.0269342251122,-0.0019864856731147,0.014689638279378]],[[-0.047287240624428,0.00042011693585664,-0.046090416610241],[-0.021642940118909,0.012383412569761,0.033247403800488],[0.0075585981830955,0.050165057182312,-0.11787809431553]],[[0.11293712258339,0.087202697992325,-0.016106197610497],[-0.0062108687125146,-0.017308484762907,-0.028904879465699],[0.070777855813503,0.03560758382082,-0.028599420562387]],[[0.11388652026653,0.028865847736597,0.0065644457936287],[0.023510672152042,0.031104471534491,0.017350537702441],[0.029757061973214,-0.038861278444529,0.03709451854229]],[[-0.045545145869255,0.026482725515962,0.031211523339152],[0.054825995117426,-0.060755666345358,-0.021445164456964],[-0.015487202443182,-0.0075294706039131,-0.0083849672228098]],[[-0.041328672319651,-0.013933123089373,0.02295171841979],[0.012909648008645,-0.0032426675315946,-0.013090918771923],[0.045867171138525,-0.032698936760426,0.038634933531284]],[[-0.042961504310369,0.0090770069509745,0.041560515761375],[-0.00406350241974,0.033509783446789,-0.026503713801503],[0.0088456617668271,-0.028749605640769,0.0089953532442451]],[[-0.014352823607624,-0.026067301630974,-0.046474173665047],[0.00870256498456,0.090002708137035,0.047083243727684],[-0.0055076442658901,-0.052351474761963,-0.0099994605407119]],[[-0.0018390255281702,0.022326750680804,0.0081327026709914],[0.064131565392017,0.027661330997944,-0.021540498360991],[-0.039448574185371,0.12636281549931,0.049091190099716]],[[-0.0030973306857049,0.03213720023632,0.026059640571475],[-0.011791958473623,-0.004560065921396,0.0044695036485791],[-0.029941754415631,-0.012030157260597,0.017786668613553]],[[0.011265324428678,0.029032539576292,-0.094305880367756],[-0.0029467414133251,0.010698179714382,-0.040567137300968],[-0.064627438783646,-0.0049924291670322,-0.036658309400082]],[[-0.0013930663699284,0.14068709313869,-0.0041784634813666],[-0.0027246007230133,0.0066198762506247,0.019231367856264],[0.036410227417946,-0.071478441357613,0.043028559535742]],[[0.08712412416935,-0.034967128187418,-0.044456779956818],[0.02612205222249,-0.029199881479144,0.057348120957613],[-0.056145146489143,-0.037149008363485,-0.04112720489502]],[[-0.030599212273955,-0.026910679414868,0.0078735034912825],[0.058774963021278,-0.013464463874698,0.0069327233359218],[-0.016628529876471,0.06414157897234,0.015081027522683]],[[-0.018789622932673,0.035937089473009,-0.14334474503994],[-0.066067039966583,-0.01312046404928,0.098387710750103],[0.044275145977736,-0.028997931629419,0.021162336692214]],[[0.034428182989359,0.026182923465967,0.00018272150191478],[-0.089893691241741,-0.070848286151886,0.10682599246502],[0.028264841064811,-0.083542682230473,-0.019892213866115]],[[-0.084670297801495,-0.0016801696037874,-0.072783179581165],[0.046212375164032,0.018915122374892,0.007195689715445],[0.066399052739143,-0.027011681348085,0.065440595149994]],[[-0.041933666914701,-0.0055903689935803,0.0554194226861],[0.051532186567783,0.013685308396816,0.025459993630648],[0.055248774588108,-0.0042873173952103,-0.013366815634072]],[[0.00067836232483387,-0.033662367612123,-0.029736924916506],[-0.041910778731108,-0.066510945558548,-0.05806976929307],[-0.0019545252434909,0.048662561923265,0.0045123137533665]],[[-0.07121903449297,-0.06732489168644,0.013857297599316],[-0.079277992248535,0.044147785753012,0.029682476073503],[-0.046106997877359,-0.052585422992706,0.0079839937388897]],[[0.0022763011511415,-0.035087630152702,0.031639728695154],[0.041171826422215,-0.0244749058038,-0.0090515064075589],[-0.039213668555021,0.024884823709726,0.00039030378684402]],[[0.019872123375535,-0.0099598821252584,-0.029436647891998],[-0.013575739227235,0.015911161899567,0.023239348083735],[0.060169622302055,0.042293313890696,-0.063653074204922]],[[0.037511263042688,-0.025765553116798,-0.0059469346888363],[-0.046785589307547,-0.010615859180689,-0.029342548921704],[-0.012771994806826,-0.043847054243088,0.075433701276779]],[[0.016976974904537,-0.05306737869978,-0.038162272423506],[0.025522140786052,0.07340357452631,0.029834289103746],[0.059375446289778,0.0099480003118515,0.014866374433041]],[[-0.026735471561551,-0.038397692143917,0.065090008080006],[0.069182313978672,0.062467206269503,0.0083855148404837],[0.0031542787328362,0.072667583823204,-0.012623202055693]],[[-0.069578804075718,-0.0066976076923311,0.02604241296649],[0.043642971664667,0.081548362970352,0.048653703182936],[0.010810001753271,0.0020084171555936,0.0047876290045679]],[[-0.052892744541168,-0.012842307798564,0.041127793490887],[0.069805614650249,0.054391894489527,0.0058921785093844],[0.010262636467814,-0.030199924483895,-0.054830402135849]],[[-0.022461835294962,-0.041738130152225,0.024256283417344],[0.015927080065012,0.018033901229501,0.023232828825712],[-0.03151336684823,0.037604715675116,0.11002371460199]],[[0.078995563089848,-0.035736616700888,0.028119115158916],[-0.026697648689151,0.086290761828423,0.0013899066252634],[-0.075897172093391,0.011752930469811,-0.08063643425703]],[[0.023456806316972,0.099937297403812,0.0041749412193894],[0.049872923642397,-0.028739785775542,0.026297781616449],[0.0028160852380097,-0.058020263910294,0.028572974726558]],[[-0.030639754608274,-0.0054827793501318,-0.024882555007935],[0.025510773062706,-0.074818670749664,-0.02547824382782],[-0.034552536904812,0.048908580094576,-0.028363818302751]],[[-0.050939451903105,0.050392329692841,0.064125210046768],[0.0086336685344577,-0.037686012685299,0.053977224975824],[0.018253291025758,0.029563179239631,0.016092991456389]],[[0.079503387212753,0.020774880424142,-0.042537212371826],[-0.056708037853241,0.11510536074638,0.097584821283817],[-0.0088126389309764,-0.080070324242115,0.023939330130816]],[[0.08590692281723,0.03980628401041,-0.027650162577629],[0.033361561596394,-0.034138090908527,-0.0550237596035],[0.066249571740627,-0.016195576637983,0.0064013265073299]],[[-0.09839078783989,0.050146117806435,0.028122568503022],[0.021691389381886,0.034235954284668,0.0072821630164981],[-0.029029909521341,0.038048356771469,0.058343134820461]],[[-0.010095928795636,0.0023962978739291,-0.045311894267797],[0.021875774487853,-0.0052081728354096,0.018182042986155],[0.024440076202154,0.11651884019375,0.043025698512793]],[[0.010216671973467,-0.019067797809839,-0.0053502758964896],[0.051984701305628,0.0338383205235,-0.047122456133366],[0.0029538413509727,0.049379654228687,0.001980310305953]],[[0.010872583836317,-0.018477229401469,-0.025587109848857],[0.090356804430485,-0.075821362435818,-0.077895604074001],[0.068360462784767,-0.068446330726147,0.029794041067362]],[[-0.010403675958514,-0.03272783011198,-0.084495738148689],[0.02056491188705,-0.035413835197687,0.025675678625703],[-0.044290736317635,-0.0014981272397563,-0.020448062568903]],[[-0.00079981901217252,-0.014040224254131,0.058913074433804],[-0.028631499037147,-0.070464834570885,0.0099205560982227],[-0.019959684461355,-0.045871734619141,0.031381618231535]],[[-0.0086991544812918,0.10165726393461,-0.0091560482978821],[0.0016408069059253,0.046487227082253,-0.004267246928066],[0.10057902336121,-0.015838507562876,-0.096090652048588]],[[0.038144491612911,-0.028900433331728,-0.043828915804625],[0.060286823660135,-0.0225276555866,0.031129684299231],[0.039055828005075,-0.0052704513072968,-0.06881333142519]],[[-0.037495821714401,0.043551545590162,-0.056154258549213],[-0.079581044614315,-0.023079104721546,0.016163157299161],[-0.06259261071682,0.0024216684978455,-0.071183070540428]],[[0.044288240373135,0.013239501044154,-0.019719379022717],[0.069854624569416,0.0097247548401356,0.055772319436073],[-0.049049757421017,0.084883786737919,0.069388851523399]],[[-0.0055802008137107,-0.044395130127668,0.010775794275105],[-0.11905996501446,0.035340219736099,-0.013086222112179],[0.034986026585102,-0.036856830120087,-0.055323105305433]],[[0.049988139420748,0.015149195678532,-0.055091198533773],[0.071245796978474,0.03545293956995,-0.053541082888842],[0.006955030374229,0.065111473202705,-0.030732646584511]],[[-0.051082666963339,0.053665161132812,-0.022320527583361],[0.0037814131937921,0.017083682119846,-0.04674906283617],[0.030635120347142,0.028360398486257,0.012411762960255]],[[-0.04063143581152,-0.094025023281574,-0.05519525706768],[0.0049609798006713,0.042156919836998,-0.014923223294318],[0.065310396254063,0.057649090886116,0.074183091521263]],[[0.0038188425824046,0.023107981309295,-0.029274998232722],[-0.07089301943779,-0.017227133736014,-0.068457469344139],[0.00015228377014864,-0.04729039222002,0.043872699141502]],[[0.0023376003373414,0.044254820793867,0.021597990766168],[0.0080197574570775,-0.028916791081429,0.01409434620291],[0.012351249344647,-0.01631847396493,-0.047242771834135]],[[0.047700047492981,-0.019382651895285,-0.012106728740036],[-0.022789940237999,-0.04070508107543,-0.049603454768658],[-0.036790505051613,-0.033128995448351,-0.013157390058041]],[[-0.018355060368776,-0.025543972849846,-0.020172262564301],[-0.0035833253059536,-0.021789059042931,-0.008250686340034],[-0.062804937362671,-0.078026458621025,-0.073752395808697]],[[-0.033355228602886,0.017865151166916,0.017526203766465],[-0.038896385580301,0.025412648916245,0.074605450034142],[-0.021806813776493,-0.010428508743644,-0.040117178112268]],[[-0.017457975074649,0.052291598170996,-0.049790870398283],[0.0021725445985794,-0.062586314976215,-0.020609021186829],[0.041593488305807,-0.022395309060812,0.028741128742695]],[[0.093682534992695,-0.035141356289387,-0.04040265083313],[-0.011736674234271,-0.021231362596154,0.081163793802261],[0.0052293781191111,0.027578197419643,-0.032214529812336]],[[0.039778407663107,0.035545285791159,0.14117221534252],[-0.008106485940516,0.016229417175055,0.086192265152931],[-0.017447285354137,-0.0057579460553825,0.11645223200321]],[[0.095958977937698,0.015354341827333,0.014136399142444],[0.018780622631311,-0.044154606759548,0.026066133752465],[0.074039824306965,0.028167802840471,0.014831271022558]],[[-0.076991640031338,0.017599767073989,0.011206445284188],[-0.0044823074713349,-0.0090133044868708,-0.022501930594444],[-0.031190766021609,0.043045919388533,0.030932603403926]],[[-0.034104485064745,-0.038670551031828,-0.024467080831528],[-0.0013806323986501,-0.0032528673764318,0.036307532340288],[0.024678006768227,-0.034454330801964,0.0718634724617]],[[0.014822983182967,0.05685818195343,-0.033635620027781],[0.013424695469439,0.054235402494669,-0.011686157435179],[-0.0058119930326939,0.0071251634508371,-0.0026057108771056]],[[0.07546741515398,0.049844842404127,0.010713636875153],[-0.060194239020348,-0.028877038508654,0.039379172027111],[-0.06349640339613,0.066033273935318,0.032447837293148]],[[-0.004809323232621,0.043362785130739,-0.036578219383955],[-0.041816722601652,0.0037907501682639,-0.018452022224665],[0.058896359056234,-0.011576725170016,-0.0019692140631378]],[[-0.02932958304882,-0.033581003546715,0.039078094065189],[0.0079623330384493,-0.069274246692657,-0.029340436682105],[0.0077312057837844,0.065029002726078,-0.063377112150192]],[[0.010398482903838,0.058327127248049,-0.069578483700752],[-0.0083517646417022,-0.013736427761614,-0.0046514514833689],[0.034705128520727,-0.017171420156956,-0.010959926992655]],[[-0.018138132989407,-0.0024629416875541,-0.038509156554937],[0.037735600024462,0.016608254984021,0.03605629503727],[0.0063034663908184,-0.0056124543771148,0.049321446567774]],[[0.00015983010234777,0.024157440289855,0.012757829390466],[0.093874998390675,0.061025410890579,-0.0083165634423494],[-0.015859058126807,0.025610286742449,0.089776545763016]],[[0.082057550549507,0.023260533809662,-0.026034519076347],[-0.074815586209297,-0.10226075351238,-0.013386775739491],[-0.05240385979414,-0.01652810908854,-0.028597535565495]],[[-0.056548420339823,0.079114519059658,0.039965130388737],[0.0045525748282671,0.16935223340988,0.12214523553848],[0.042539030313492,-0.00069993874058127,-0.010242020711303]],[[0.015005200169981,0.0015399567782879,-0.024135481566191],[0.086432591080666,0.090254679322243,0.026185858994722],[0.010620466433465,-0.015334744937718,0.044431291520596]],[[0.041938867419958,-0.0030183403287083,0.050808183848858],[0.061978723853827,-0.0039686192758381,0.041119083762169],[0.026672426611185,0.0072220326401293,-0.028567431494594]],[[0.020292993634939,-0.04294415563345,0.039687316864729],[-0.013265457004309,0.042684204876423,0.081242024898529],[0.00054737669415772,-0.072737745940685,0.015920873731375]],[[0.10243766009808,-0.015288182534277,0.039497371762991],[0.012390191666782,-0.035514742136002,0.092182606458664],[-0.068382725119591,0.01122547313571,0.035661108791828]],[[-0.12448154389858,0.0039994148537517,-0.0087146665900946],[-0.067866541445255,0.02536179497838,0.069589734077454],[-0.062521554529667,0.031937230378389,-0.032224345952272]],[[0.062830895185471,0.0097328629344702,0.087137781083584],[-0.008204223588109,0.025191115215421,0.044432263821363],[-0.062309235334396,0.047672752290964,-0.0089162699878216]],[[-0.0013605827698484,-0.045546341687441,0.026008281856775],[-0.062563426792622,0.078583225607872,0.10373257100582],[0.0041146348230541,0.023552106693387,0.0030324680265039]],[[0.097935825586319,-0.019195199012756,0.019297372549772],[-0.023053381592035,0.040428828448057,0.022578991949558],[0.013069281354547,-0.035338092595339,-0.03951034322381]],[[0.032801732420921,0.0071849105879664,0.029923742637038],[0.028942193835974,0.11263235658407,0.014524487778544],[-0.0036234937142581,0.017695739865303,0.031335741281509]],[[0.02866811864078,0.044739603996277,0.091043882071972],[-0.016203356906772,0.078735418617725,0.069810263812542],[-0.042327839881182,-0.062492728233337,0.027597829699516]],[[0.0056455619633198,0.14377787709236,-0.018163239583373],[0.0090084951370955,0.078745737671852,-0.029189120978117],[0.075209721922874,-0.032141953706741,0.11007633805275]],[[-0.022253347560763,0.051899582147598,0.0069896350614727],[0.0028978111222386,0.071881495416164,-0.018949758261442],[0.022876156494021,0.034285373985767,0.026464052498341]],[[-0.05860872939229,0.086519911885262,0.044578161090612],[-0.049638878554106,-0.016356844455004,0.035708706825972],[0.03424035012722,-0.029844332486391,0.028463331982493]],[[0.013397379778326,-0.017685245722532,-0.057577021420002],[0.079825915396214,0.011014704592526,0.039020631462336],[-0.035496659576893,-0.0040050162933767,0.031557768583298]],[[0.039672244340181,0.009920041076839,0.0091486489400268],[0.03483447059989,0.016238572075963,0.049652609974146],[-0.041128221899271,0.020377324894071,-0.0067378631792963]],[[0.012416314333677,-0.011456156149507,-0.0088443690910935],[0.044553145766258,0.065052516758442,-0.017904276028275],[0.061115615069866,-0.054417595267296,-0.0065583004616201]],[[0.027285322546959,0.011225821450353,-0.071925960481167],[0.060434859246016,-0.023441694676876,-0.043651230633259],[0.012190632522106,0.0076354285702109,0.020914666354656]],[[-0.0044623925350606,0.053100243210793,-0.072620399296284],[0.04145198687911,0.021470762789249,0.03740768134594],[0.059578120708466,0.050483971834183,-0.051629610359669]],[[0.094244621694088,0.044877640902996,-0.012862974777818],[0.035349443554878,-0.01655462756753,0.0032183616422117],[0.0024688332341611,0.016266867518425,0.0068845860660076]],[[0.048275854438543,-0.043601773679256,0.030773121863604],[-0.052183885127306,-0.07648877799511,0.0071924184449017],[0.035748790949583,0.06425216794014,0.043897390365601]],[[0.051794167608023,-0.039096780121326,-0.066793940961361],[0.030652165412903,0.0080682439729571,0.012045818381011],[-0.00059264962328598,0.0021353384945542,0.016856478527188]],[[0.038888178765774,0.0066683641634881,0.0082210134714842],[-0.073915041983128,0.090348176658154,-0.01138062030077],[0.0052957651205361,-0.010833547450602,0.027562502771616]],[[-0.014127926900983,0.061650980263948,-0.020353171974421],[0.06106486544013,0.028225811198354,0.064710400998592],[0.022746847942472,0.0022638549562544,0.054599154740572]],[[-0.012707307003438,-0.056532576680183,-0.0962018892169],[-0.032539408653975,-0.035110510885715,0.0048543028533459],[-0.07398846000433,-0.0019573515746742,-0.059200018644333]],[[-0.024508966132998,0.0059889508411288,-0.068276576697826],[-0.004114952404052,-0.042704407125711,0.051510773599148],[0.040691416710615,0.027546776458621,-0.013283574022353]],[[-0.073087207973003,-0.038211070001125,0.023703187704086],[-0.045634649693966,0.0013201080728322,-0.057787071913481],[0.027668425813317,-0.070606127381325,-0.015431667678058]],[[0.0026736008003354,0.062688708305359,0.0032030984293669],[0.059043515473604,0.073315188288689,0.065565824508667],[0.013129668310285,0.030519718304276,0.015350523404777]],[[0.026428952813148,0.093461193144321,0.0059638521634042],[-0.018410738557577,-0.0080320537090302,-0.032917659729719],[0.014427546411753,0.042936500161886,0.014962121844292]],[[0.067583546042442,0.054256811738014,0.034774415194988],[0.0065552708692849,0.0046929637901485,0.069551683962345],[0.069473832845688,0.0062312819063663,0.094174109399319]],[[-0.036538951098919,0.035629697144032,0.074499987065792],[0.019058883190155,-0.013384892605245,0.042579434812069],[0.026636889204383,0.015156275592744,0.021317945793271]],[[-0.0050873924046755,0.047712717205286,-0.0014198947465047],[0.083557836711407,-0.12004088610411,0.022718304768205],[0.02457008883357,-0.072831653058529,-0.036458920687437]],[[-0.0015958037693053,0.05278642848134,-0.028417348861694],[0.084930524230003,0.054618287831545,0.043508909642696],[-0.020002100616693,0.012596985325217,-0.11001861840487]],[[0.022330611944199,0.0069398796185851,0.010269636288285],[-0.02761579118669,0.017693085595965,-0.020484030246735],[-0.024633964523673,-0.037587713450193,0.06402326375246]],[[-0.047202218323946,-0.035502664744854,-0.056894648820162],[-0.023553734645247,0.017252339050174,0.06987189501524],[0.0066902246326208,0.003529173322022,0.062018021941185]],[[0.011272157542408,0.016837818548083,0.068000487983227],[0.034634552896023,-0.074741579592228,-0.093281522393227],[0.016536502167583,-0.075011909008026,-0.039522401988506]],[[0.042257603257895,0.011313188821077,-0.10589350014925],[-0.025344233959913,-0.055286563932896,-0.052791070193052],[-0.047131426632404,0.034975625574589,0.017426453530788]],[[0.0065009570680559,-0.010555190034211,0.0074027804657817],[-0.034955058246851,-0.020607303828001,0.0046753222122788],[0.071486435830593,-0.0011792172444984,0.017214316874743]],[[0.046249784529209,-0.010933234356344,0.03099294193089],[0.017620325088501,0.0096460925415158,0.053183525800705],[-0.030911210924387,0.0038196013774723,-0.122752584517]],[[-0.06873544305563,0.045173145830631,0.013063747435808],[0.028692318126559,0.0012894461397082,-0.0082986056804657],[-0.04634740203619,0.040232542902231,-0.024691523984075]],[[-0.051724418997765,0.014194261282682,0.0053839730098844],[-0.027810813859105,-0.041969638317823,-0.031327493488789],[-0.03437128290534,-0.073886223137379,0.0047241877764463]],[[-0.051795814186335,-0.062713705003262,-0.021208208054304],[-0.13769407570362,-0.056143939495087,-0.0020473268814385],[-0.027609262615442,0.054885286837816,0.071940578520298]],[[0.042082604020834,0.028609624132514,0.088181838393211],[0.032850790768862,-0.05128675699234,0.055191978812218],[0.036920059472322,-0.030583068728447,0.04542651027441]],[[-0.081480629742146,0.033932067453861,-0.0024898673873395],[-0.047790125012398,-0.005353738553822,-0.05773688852787],[-0.056836351752281,-0.049051810055971,0.0054976465180516]],[[-0.10016630589962,-0.0019341956358403,0.029752152040601],[-0.013344136998057,-0.023320313543081,-0.016182785853744],[0.048982545733452,0.047200664877892,-0.05280078202486]],[[0.044865287840366,-0.010109421797097,-0.013698477298021],[0.07607801258564,0.035976145416498,-0.044522006064653],[0.0052472837269306,-0.058975834399462,-0.01146246958524]],[[0.06156949698925,-0.055497150868177,-0.010354712605476],[-0.078163824975491,0.033771403133869,0.012602098286152],[0.066229216754436,0.014613168314099,-0.015762029215693]],[[-0.010637794621289,0.0092021282762289,0.036455970257521],[0.0078135374933481,-0.03392917662859,-0.0024454512167722],[0.022483490407467,0.013390095904469,0.026358189061284]],[[-0.0080557717010379,-0.009514844045043,0.039286445826292],[0.077026650309563,0.0073620500043035,0.011545104905963],[0.038326021283865,-0.078138902783394,0.004387691617012]],[[0.061645366251469,-0.036078993231058,0.058897566050291],[0.020392697304487,-0.012555353343487,-0.092321678996086],[-0.037680458277464,0.0372504144907,0.09004245698452]],[[-0.0070357345975935,-0.096016615629196,-0.040323249995708],[0.0015304220141843,0.065192654728889,-0.062639147043228],[0.0017144024604931,-0.065401673316956,-0.0065649072639644]]],[[[-0.040834069252014,-0.031987529247999,0.031350161880255],[-0.029064850881696,0.023098016157746,0.063372269272804],[-0.025470526888967,0.025162955746055,0.072365380823612]],[[-0.0018871739739552,0.050854243338108,0.00082228699466214],[-0.036839842796326,-0.015907801687717,-0.0062977047637105],[0.06108395382762,0.018906157463789,0.065516240894794]],[[0.0071385311894119,0.025736089795828,0.056862991303205],[-0.018530387431383,0.033435579389334,0.051396645605564],[0.087760359048843,0.053590908646584,-0.017828494310379]],[[-0.0081438301131129,-0.068180337548256,-0.0026065532583743],[-0.067499928176403,0.032359909266233,-0.032017197459936],[0.065715327858925,0.016423031687737,0.054959986358881]],[[0.0093392431735992,-0.072873167693615,0.047639235854149],[-0.040468789637089,-0.042047154158354,-0.10081975162029],[-0.016552643850446,-0.01952900364995,-0.0334860868752]],[[0.031024729833007,0.027463585138321,-0.045146536082029],[-0.015525954775512,-0.012378703802824,0.039857599884272],[0.013428089208901,0.04984275251627,0.04193776473403]],[[-0.08577673882246,-0.022620784118772,0.021278657019138],[0.038363222032785,-0.060928072780371,0.014665568247437],[-0.037281803786755,-0.019301554188132,-0.023324321955442]],[[0.060816187411547,0.046190991997719,0.035619597882032],[-0.0045331851579249,0.051570676267147,-0.023357901722193],[0.028413141146302,-0.0028570096474141,0.025163849815726]],[[-0.033157963305712,-0.009714818559587,0.0089664934203029],[-0.068466611206532,0.0020309356041253,-0.0054559973068535],[0.0035101366229355,0.13986760377884,0.074927642941475]],[[0.026218850165606,0.045717503875494,-0.017312776297331],[0.0079072769731283,0.0072756349109113,-0.046856705099344],[0.0065489946864545,0.0041264062747359,0.025783255696297]],[[0.0064942799508572,0.042675126343966,-0.074867121875286],[-0.0019139982759953,-0.054852172732353,0.017688430845737],[0.064992554485798,-0.021330991759896,-0.026952071115375]],[[0.0055782431736588,-0.027036277577281,0.028537597507238],[0.033838387578726,0.005379599519074,0.049106050282717],[-0.013589677400887,-0.033512782305479,0.013859648257494]],[[0.00938771199435,-0.0010888481047004,0.096651837229729],[0.079951718449593,-0.046336803585291,0.058927215635777],[0.06091595441103,-0.022556958720088,-0.051586151123047]],[[0.019591005519032,0.071432165801525,0.072641387581825],[0.037058155983686,0.12138441205025,-0.019785093143582],[0.075407616794109,-0.029026061296463,-0.026199977844954]],[[-0.03869079425931,-0.0082052061334252,-0.016304748132825],[-0.0060016894713044,0.022753208875656,-0.023470079526305],[-0.042934164404869,-0.022434094920754,-0.068597011268139]],[[0.0063790194690228,0.021296134218574,-0.025726240128279],[0.0085939848795533,-0.057537987828255,0.063183024525642],[0.077137961983681,0.024350179359317,-0.022791689261794]],[[0.049681466072798,0.010649163275957,-0.031009141355753],[0.077168941497803,-0.025216244161129,-0.046939961612225],[0.026631819084287,0.065081007778645,0.023644983768463]],[[0.036093525588512,0.023654915392399,0.0066903061233461],[0.043892413377762,0.037632863968611,0.063746124505997],[-0.11732421815395,-0.0039227828383446,0.0091707715764642]],[[0.0095060532912612,0.023522114381194,0.068287096917629],[0.037140477448702,-0.0050582108087838,0.13026505708694],[-0.052086751908064,0.0020517338998616,-0.010423054918647]],[[0.019162157550454,-0.07413811981678,0.059950157999992],[0.016131356358528,-0.0068101920187473,0.0028753578662872],[0.046251866966486,-0.045786160975695,0.042729258537292]],[[-0.045298006385565,-0.070736572146416,0.032355360686779],[0.070262618362904,-0.024367474019527,-0.049189936369658],[-0.058160476386547,0.012454826384783,-0.036618415266275]],[[0.1003897190094,0.041535336524248,0.056381892412901],[0.053972221910954,0.022345092147589,0.027742613106966],[0.026608124375343,-0.042347714304924,0.042774274945259]],[[0.039902660995722,-0.051628537476063,-0.0045408215373755],[-0.027845045551658,0.03943370655179,-0.028819762170315],[-0.062277901917696,-0.008068947121501,-0.01299199834466]],[[-0.047897294163704,0.054611567407846,0.047731138765812],[0.012591778300703,0.042892318218946,-0.012969497591257],[0.05281338468194,0.011274375021458,-0.018094765022397]],[[-0.095231510698795,0.0033468112815171,-0.041022270917892],[-0.012527420185506,0.056960728019476,-0.0020995303057134],[-0.016392963007092,0.02672628313303,0.022557424381375]],[[-0.024625528603792,-0.042017661035061,0.026111256331205],[0.0072646881453693,0.010091778822243,-0.0018598815659061],[0.018466133624315,-0.014522210694849,0.069469854235649]],[[0.03855099901557,0.011134231463075,0.045899126678705],[0.031387161463499,0.075435996055603,-0.037127621471882],[0.064553320407867,-0.0010689853224903,0.0029974551871419]],[[0.031870849430561,-0.016556642949581,0.0042900913394988],[0.0021529607474804,-0.013989681378007,0.00029260810697451],[0.032795239239931,0.020835774019361,-0.032197445631027]],[[0.024707898497581,0.025502888485789,0.026691623032093],[-0.041758839040995,-0.011266453191638,0.035455942153931],[-0.028694225475192,-0.0608837492764,0.047378599643707]],[[-0.016117565333843,0.0034948918037117,0.074753820896149],[0.033021003007889,-0.043352849781513,-0.031080720946193],[0.01473552454263,0.033035524189472,-0.017311293631792]],[[-0.02264541387558,0.022685395553708,-0.039316486567259],[-0.016669185832143,0.027954438701272,0.074702978134155],[0.0094037046656013,0.023261021822691,0.082022987306118]],[[0.0014098540414125,-0.042568225413561,0.0080603724345565],[-0.020439656451344,0.0032686095219105,0.024556186050177],[0.059360478073359,-0.13743342459202,0.056506220251322]],[[0.0043790070340037,-0.0059142983518541,0.080175250768661],[0.033753231167793,-0.0385667309165,0.10873673856258],[0.020131846889853,0.077915340662003,0.015891740098596]],[[-0.051900647580624,-0.071205019950867,0.07544532418251],[0.024776745587587,0.039564125239849,0.05608781799674],[0.013402208685875,0.061445239931345,-0.082533799111843]],[[0.0219103153795,0.025155303999782,-0.03896975889802],[-0.041833322495222,0.015400602482259,0.016322458162904],[0.0059059276245534,-0.0047107455320656,0.063690528273582]],[[0.036013375967741,0.011795156635344,0.031054008752108],[-0.052159994840622,-0.013600712642074,-0.019355867058039],[0.016690639778972,-0.066454224288464,0.056031655520201]],[[-0.029133129864931,0.02532778121531,-0.054206512868404],[0.054008651524782,0.015966504812241,-0.047499466687441],[0.0029530071187764,0.048392176628113,-0.058744858950377]],[[-0.024430463090539,0.035092629492283,0.011178378015757],[-0.051476906985044,0.084321312606335,-0.013548377901316],[-0.039080467075109,0.010298465378582,0.051458206027746]],[[0.013136216439307,0.067757524549961,-0.033116664737463],[0.0052405307069421,-0.031379710882902,-0.0446792319417],[0.041260380297899,0.072993718087673,-0.070240952074528]],[[0.073739498853683,-0.056496579200029,-0.070651084184647],[-0.0044625238515437,-0.0097492272034287,0.018302917480469],[0.05796804279089,0.040505722165108,0.026646122336388]],[[-0.021124865859747,-0.016150757670403,-0.0015442509902641],[-0.041792839765549,-9.7560259746388e-05,-0.0093995714560151],[0.012202280573547,-0.018125550821424,-0.011611784808338]],[[0.034282233566046,-0.052723191678524,0.051330398768187],[-0.025416495278478,-0.005295155569911,-0.00018732839089353],[0.09114883095026,0.014770588837564,0.03153120726347]],[[-0.090960629284382,0.14474976062775,0.052426766604185],[0.010264315642416,0.10624372959137,0.03279397636652],[0.030350647866726,0.087485730648041,0.073231182992458]],[[0.049626871943474,-0.021481689065695,-0.043242771178484],[0.10493405163288,0.011466064490378,-0.12486244738102],[0.029458992183208,-0.016166085377336,-0.00081523117842153]],[[0.018745696172118,0.054082911461592,0.039833027869463],[-0.018550053238869,0.018319766968489,0.04917585849762],[-0.079362504184246,-0.027752226218581,-0.058238387107849]],[[-0.024498973041773,-0.035309430211782,0.092851124703884],[-0.011701276525855,0.03216665238142,0.058390758931637],[0.0086580868810415,0.023518169298768,0.035552054643631]],[[0.065806455910206,0.046900819987059,0.029925806447864],[0.043476272374392,-0.023855555802584,0.039747819304466],[0.046150740236044,0.037516180425882,-0.01131550502032]],[[0.029846854507923,-0.0226098485291,-0.079636685550213],[0.016020927578211,-0.045659512281418,-0.029825935140252],[-0.016374383121729,0.028657093644142,-0.1078178435564]],[[0.005908798892051,-0.01057609077543,0.0049943793565035],[0.054537776857615,-0.0040146037936211,0.0030673206783831],[-0.021198373287916,-0.055449642241001,0.0043575805611908]],[[-0.12808178365231,-0.05425975471735,-0.039244070649147],[-0.046342182904482,-0.023039534687996,-0.034099135547876],[0.11366786807775,-0.011756640858948,-0.043399844318628]],[[-0.039855383336544,0.0418810993433,-0.033118940889835],[0.019204469397664,-0.007803036365658,0.016698831692338],[0.052541885524988,0.0035946334246546,0.0091870259493589]],[[0.023917522281408,-0.0023378459736705,-0.017444159835577],[0.066812478005886,-0.029317243024707,-0.004349120426923],[0.065388604998589,-0.028756495565176,-0.067859008908272]],[[-0.10454943776131,0.043516356498003,0.057847615331411],[-0.052453730255365,-0.060177352279425,0.0029019720386714],[-0.045862391591072,0.047520995140076,-0.029811067506671]],[[0.040346749126911,-0.0035670869983733,-0.005290265660733],[0.066927835345268,0.013141034170985,0.028710402548313],[-0.011733281426132,0.076762691140175,0.061627998948097]],[[-0.0086983628571033,0.01698661968112,-0.016337426379323],[-0.0035165236331522,-0.029513543471694,0.0030582144390792],[-0.014372419565916,0.007558673620224,0.032117009162903]],[[-0.038992989808321,-0.017085313796997,-0.034157935529947],[-0.0050229779444635,0.0054825427941978,-0.028515988960862],[-0.0070690242573619,0.070575937628746,0.050506737083197]],[[0.05889954417944,0.029210135340691,-0.031661994755268],[0.025752751156688,0.064539514482021,0.025108702480793],[0.092182375490665,0.0040092011913657,0.064672566950321]],[[-0.067731812596321,-0.059443559497595,0.080418556928635],[0.0032854890450835,0.061164375394583,0.023221025243402],[0.041852861642838,-0.035320624709129,-0.012652393430471]],[[-0.015933126211166,0.046595312654972,0.010712309740484],[0.034024331718683,0.07012128084898,-0.010548285208642],[0.076700314879417,0.0058684144169092,0.097640998661518]],[[0.042629841715097,0.079098396003246,0.067972645163536],[0.016178853809834,0.034950856119394,-0.019293697550893],[0.048724640160799,-0.0024940622970462,-0.025577062740922]],[[-0.044353704899549,0.0024373054038733,0.039118528366089],[-0.025955960154533,-0.030934937298298,-0.022516215220094],[-0.052386589348316,-0.043194394558668,-0.025660196319222]],[[-0.052104201167822,-0.057629488408566,-0.01624083891511],[0.012390330433846,-0.047117784619331,-0.10134245455265],[-0.0003687352873385,-0.034372255206108,0.00082662148633972]],[[-0.038981027901173,0.032647881656885,0.030934235081077],[0.018283160403371,-0.015015220269561,0.05274523049593],[-0.022937400266528,0.041126526892185,0.11036859452724]],[[0.036519519984722,0.039172749966383,-0.02110219374299],[0.041486326605082,0.020798875018954,-0.076875381171703],[0.0068805473856628,0.034971658140421,-0.0067445556633174]],[[-0.010425994172692,0.0071076983585954,-0.025946138426661],[0.043087024241686,-0.032951191067696,0.022220401093364],[-0.036832083016634,-0.077437154948711,-0.0721580311656]],[[0.012253446504474,0.027143329381943,0.021686863154173],[-0.026563823223114,0.033901277929544,0.081690333783627],[-0.018134437501431,0.032024662941694,0.03105903044343]],[[0.10904736816883,0.0063259187154472,0.1231275498867],[0.025710700079799,-0.050785128027201,-0.014456775039434],[0.015178888104856,0.053686566650867,0.080565832555294]],[[-0.00059494900051504,-0.017989939078689,0.022790931165218],[0.022787841036916,0.0081330537796021,0.0096880411729217],[-0.012081293389201,0.051245678216219,-0.042050920426846]],[[0.060609120875597,0.026802873238921,-0.049152594059706],[0.015243067406118,0.052205853164196,0.089183285832405],[0.047689910978079,-0.034442320466042,0.051392950117588]],[[-0.022658141329885,0.037108719348907,0.040171720087528],[-0.039396245032549,-0.02503839507699,-0.015506389550865],[0.080357924103737,-0.045123249292374,0.019552603363991]],[[-0.062000337988138,0.054159615188837,0.041959408670664],[0.0016974088503048,0.07855661213398,-0.034114576876163],[0.038630004972219,-0.036764837801456,-0.029421996325254]],[[-0.021565457805991,-0.061168402433395,-0.10057476907969],[0.02220606058836,-0.057910483330488,-0.05702992528677],[0.036850124597549,-0.005494630895555,-0.035422760993242]],[[-0.044710613787174,-0.092439025640488,-0.028291068971157],[-0.03614779561758,-0.027124909684062,0.00036430062027648],[-0.036530986428261,-0.081705704331398,-0.0067286547273397]],[[0.02819599956274,-0.010384954512119,-0.028704086318612],[0.027380649000406,0.021405575796962,-0.0042271753773093],[0.0095512140542269,-0.024176072329283,-0.020856026560068]],[[-0.071313492953777,0.067598260939121,0.01104015763849],[0.035635352134705,0.030018648132682,-0.0071985824033618],[-0.01392737403512,0.012314972467721,0.05654551461339]],[[0.06868477165699,-0.0058398898690939,-0.0032878485508263],[-0.001172665739432,0.067538566887379,-0.026491174474359],[0.0071874409914017,0.045380502939224,-0.015628751367331]],[[-0.041695948690176,-0.11180617660284,0.019465819001198],[-0.11986815184355,-0.00077169726137072,-0.00022458758030552],[-0.089487820863724,-0.096874386072159,-0.06511177867651]],[[-0.025510527193546,0.030005088075995,0.0036821798421443],[0.043549668043852,-0.015154454857111,0.036270018666983],[0.0057421852834523,0.085771039128304,-0.024617565795779]],[[-0.039400603622198,0.11639245599508,0.026340605691075],[0.053082842379808,0.0050875907763839,-0.017464900389314],[0.023227289319038,0.038854345679283,-0.043223921209574]],[[-0.019688816741109,-0.040408734232187,-0.020989950746298],[0.082701504230499,0.046215903013945,0.0069535714574158],[-0.018957870081067,0.041970852762461,-0.023566260933876]],[[-0.047752045094967,0.02102435939014,-0.066066600382328],[0.0068198218941689,0.022856269031763,-0.043614320456982],[-0.068557217717171,0.01877910271287,-0.014688274823129]],[[-0.032145023345947,0.065923385322094,0.068204700946808],[-0.019511945545673,0.057097159326077,0.089643485844135],[0.028778549283743,-0.030704565346241,0.027232527732849]],[[-0.085003517568111,-0.021492555737495,-0.0042594340629876],[0.024156337603927,-0.013198363594711,0.033227179199457],[-0.033535566180944,0.062216207385063,0.095015600323677]],[[-0.012446686625481,0.046077609062195,0.0099799279123545],[0.03131602704525,0.11495511233807,0.075682707130909],[-0.019498653709888,0.059964708983898,0.076374351978302]],[[0.057471245527267,0.0018091212259606,0.11040398478508],[0.0062194187194109,0.055060356855392,-0.017774485051632],[0.018688321113586,-0.028401345014572,-0.03095461986959]],[[0.013666216284037,-0.040559779852629,0.032355550676584],[-0.020443415269256,-0.0095906155183911,0.038313541561365],[-0.066371448338032,-0.010299116373062,0.068249322474003]],[[-0.019527757540345,0.06197252869606,0.072445370256901],[0.039723042398691,0.014962108805776,0.085721112787724],[0.05599706619978,0.010233913548291,0.065767712891102]],[[-0.0039650262333453,0.015053438022733,0.065310761332512],[-0.07897812128067,-0.049181364476681,0.060024634003639],[0.017403161153197,-0.033155549317598,0.020361911505461]],[[0.10779939591885,0.056045312434435,0.097702637314796],[0.015857500955462,0.0541464202106,0.070385478436947],[0.056570895016193,-0.08133690059185,0.11129509657621]],[[0.031204620376229,0.079025134444237,-0.032445412129164],[0.085727207362652,-0.0075125209987164,0.03100030682981],[-0.05384398624301,0.020451799035072,-0.0087412782013416]],[[0.079559311270714,0.052958451211452,0.037279717624187],[-0.036768551915884,0.024042740464211,-0.040589340031147],[-0.028221420943737,0.014736267738044,0.11649861186743]],[[0.018897622823715,-0.0035940096713603,-0.00010727927292464],[-0.077191591262817,-0.069746196269989,0.058611944317818],[0.0093870647251606,-0.034139327704906,-0.0082901353016496]],[[-0.080740556120872,-0.0086315777152777,-0.045413468033075],[0.043845281004906,0.019349861890078,0.027962917461991],[-0.023795133456588,-0.0081698931753635,-0.0567327439785]],[[0.047537598758936,0.025585137307644,0.011618409305811],[0.043542262166739,0.0166533049196,0.071968235075474],[0.11047460883856,0.001411669771187,0.023752324283123]],[[-0.069411464035511,0.0079555250704288,-0.026804195716977],[0.025036882609129,-0.011260074563324,-0.048555996268988],[0.06418140232563,0.018186843022704,-0.029243702068925]],[[0.026786807924509,-0.047830350697041,0.044113822281361],[0.036932870745659,0.00054391683079302,-0.066372245550156],[0.021537184715271,0.039477720856667,-0.0051513845100999]],[[0.054583966732025,-0.021047744899988,-0.028619544580579],[-0.0070922607555985,0.0063481112010777,-0.079459108412266],[-0.031228210777044,0.042884726077318,-0.1033121868968]],[[-0.01537673547864,0.051092386245728,0.0064458777196705],[0.0029034500475973,0.075396314263344,0.023004418238997],[0.061220932751894,-0.0064152269624174,0.045261330902576]],[[-0.027583967894316,0.017323458567262,0.016278022900224],[0.029974538832903,-0.015319352969527,0.00056323228636757],[-0.031761478632689,0.027973227202892,-0.012947089970112]],[[0.019425395876169,-0.034206710755825,0.032821100205183],[0.1016279309988,-0.045209348201752,0.077628955245018],[-0.019726408645511,0.025476586073637,0.16449427604675]],[[0.043553583323956,0.027617005631328,-0.032424341887236],[-0.040564753115177,-0.054140951484442,-0.0060400925576687],[0.025666981935501,-0.041255343705416,-0.044074613600969]],[[-0.055352758616209,-0.060336019843817,-0.052103601396084],[0.050859816372395,-0.0051893219351768,-0.023618895560503],[0.093832284212112,-0.026154261082411,-0.024350503459573]],[[-0.0043041310273111,-0.037793517112732,0.056594658643007],[-0.058358386158943,0.0053959195502102,0.04406364262104],[0.046901047229767,0.014638846740127,-0.023924382403493]],[[-0.045860879123211,-0.016625821590424,-0.0064009944908321],[-0.0034203650429845,0.032234147191048,-0.013478142209351],[0.035488098859787,-0.012347320094705,-0.060601737350225]],[[0.029692532494664,0.09788616746664,-0.0037350980564952],[0.024005061015487,-0.0081178462132812,-0.083608657121658],[0.068253889679909,0.029238382354379,0.028382463380694]],[[-0.035246100276709,0.019169023260474,0.021207582205534],[0.029621716588736,0.010505631566048,0.0036341985687613],[0.04112895578146,-0.064460255205631,0.0045638424344361]],[[-0.036453112959862,0.066666461527348,-0.0031188924331218],[0.038360442966223,0.03910930082202,0.051833055913448],[0.030093807727098,0.029008593410254,-0.023479228839278]],[[0.013205979950726,0.039771616458893,0.051003113389015],[-0.041464295238256,0.080569624900818,0.024632796645164],[0.017252661287785,-0.044094908982515,0.027880484238267]],[[0.058154635131359,-0.020993551239371,0.00013160829257686],[-0.006469736341387,-0.070064216852188,-0.054435305297375],[0.00084109202725813,-0.10110770910978,0.071384117007256]],[[-0.0029254464898258,0.062416635453701,-0.0098118735477328],[0.043437879532576,-0.054597299546003,0.046748153865337],[-0.054896909743547,0.054407835006714,0.002851759083569]],[[-0.085779085755348,0.0041357944719493,0.034849550575018],[-0.096291206777096,0.020946303382516,0.057731922715902],[0.058907125145197,-0.048939388245344,0.0078730816021562]],[[-0.02364582195878,0.028447981923819,0.05716584995389],[-0.025769919157028,-0.069723695516586,-0.0068313227966428],[0.0075245718471706,0.0099597349762917,-0.13495078682899]],[[0.026922389864922,0.0078387912362814,-0.017021140083671],[-0.033436395227909,0.052862349897623,0.020304979756474],[-0.054699458181858,-0.057169187813997,0.054262205958366]],[[-0.029561087489128,-0.098967708647251,0.019133023917675],[-0.042335890233517,-0.0089523419737816,-0.015471248887479],[-0.08830800652504,-0.042856231331825,0.010961833409965]],[[-0.056371364742517,-0.056651100516319,0.0040943082422018],[0.031077980995178,-0.043043859302998,0.027037054300308],[0.057530447840691,0.011291005648673,0.0084234522655606]],[[0.017569465562701,-0.042044524103403,-0.044360537081957],[-0.048771575093269,-0.057785782963037,-0.044245585799217],[0.013436100445688,0.0094702998176217,-0.08734180778265]],[[-0.007257011719048,0.12049767374992,-0.059969823807478],[-0.0040040905587375,0.036246716976166,0.074907347559929],[-0.027105517685413,-0.026560572907329,0.052461113780737]],[[-0.029629491269588,0.021685587242246,0.047564171254635],[0.0055196741595864,0.017156494781375,-0.019827814772725],[-0.0089709116145968,-0.0350221991539,0.0065119424834847]],[[-0.003859743475914,-0.0095902476459742,0.098605237901211],[-0.036741200834513,0.031254421919584,0.018712177872658],[0.010576505213976,0.023451695218682,-0.0030406869482249]],[[0.062126293778419,-0.021917939186096,0.04706634953618],[0.072766155004501,0.039680358022451,0.032294444739819],[0.094995133578777,0.027148114517331,0.048105835914612]],[[-0.01142115611583,-0.02540217153728,0.0028116016183048],[-0.015444288961589,-0.04085136950016,0.048852115869522],[-0.019209269434214,0.028280830010772,-0.034999720752239]],[[-0.022262474521995,0.045598302036524,0.0048072137869895],[0.050353739410639,0.051651798188686,-0.014281658455729],[0.033247377723455,-0.074221812188625,-0.042197454720736]],[[-0.032262947410345,-0.013595028780401,-0.078324571251869],[-0.034876480698586,0.025920901447535,0.038999311625957],[-0.052623696625233,0.012689753435552,-0.048197273164988]],[[0.0044311471283436,-0.0138153238222,-0.020139822736382],[0.0064241508953273,0.028302328661084,0.059870265424252],[0.021214434877038,-0.065202005207539,-0.080429293215275]],[[-0.009669492021203,0.0350844822824,0.077804744243622],[0.011880375444889,0.00021193618886173,0.049043335020542],[0.016916010528803,0.034979097545147,-0.026623424142599]],[[0.053268272429705,-0.037443153560162,-0.027730938047171],[-0.0038605500012636,-0.038977757096291,0.041574262082577],[-0.063842684030533,0.025575701147318,-0.0025293331127614]],[[0.074261873960495,0.010641462169588,0.059701457619667],[-0.035163700580597,0.05234557762742,0.11136878281832],[0.016860714182258,0.010434065945446,0.03568858653307]],[[0.057286024093628,0.011127829551697,-0.06419925391674],[0.060251079499722,-0.049998674541712,-0.080374300479889],[-0.0075714909471571,0.019710849970579,-0.029016191139817]]],[[[0.06266587972641,0.022050116211176,0.05802384018898],[-0.0737169906497,-0.036398824304342,0.066142462193966],[-0.008108171634376,0.023269515484571,-0.013057313859463]],[[0.026479749009013,-0.033163547515869,0.014347027055919],[-0.0067704953253269,0.05332351103425,-0.029467882588506],[-0.054771352559328,0.024831825867295,0.013652849942446]],[[0.011744159273803,0.0016956399194896,0.038349561393261],[-0.011085418052971,0.011096996255219,0.059830479323864],[0.01994176954031,-0.032812438905239,-0.07055626064539]],[[-0.0054068649187684,0.059953145682812,0.0087490044534206],[-0.0065817395225167,0.036477115005255,0.12531048059464],[0.013855670578778,0.0028305200394243,-0.068127490580082]],[[-0.0040200860239565,0.0076104993931949,-0.06119566783309],[0.041937034577131,0.041105825453997,-0.024137759581208],[0.027191324159503,0.04081742092967,0.03051782771945]],[[0.037036795169115,0.020547466352582,0.018380872905254],[0.048665478825569,-0.033372607082129,0.048305820673704],[0.029690768569708,-0.016152404248714,0.048681508749723]],[[0.045526120811701,0.014531649649143,-0.010852426290512],[-0.029269775375724,-0.017726181074977,-0.058597907423973],[-0.014176112599671,0.0043160975910723,-0.020424528047442]],[[0.028935318812728,-0.032928813248873,0.00041518043144606],[0.040023803710938,-0.0007847665110603,-0.00062298332341015],[0.044812716543674,0.036028042435646,0.028182249516249]],[[0.010530989617109,-0.044149339199066,-0.046610172837973],[0.010919930413365,0.00058198225451633,0.082513995468616],[-0.02212473936379,-0.021885197609663,0.086825340986252]],[[0.031666781753302,-0.020008211955428,0.065045073628426],[-0.01428365893662,0.021914023905993,0.033757846802473],[0.021183706820011,0.017533412203193,0.049711391329765]],[[0.025732507929206,-0.010674341581762,-0.044781889766455],[0.039083924144506,0.051342841237783,0.041122648864985],[0.068903103470802,-0.049211639910936,0.03393193334341]],[[-0.108363725245,0.02390718087554,-0.01002490427345],[-0.012060859240592,0.030865432694554,-0.044455174356699],[-0.041083984076977,0.051276307553053,0.0065836408175528]],[[0.084381178021431,0.063149109482765,0.017176313325763],[-0.012003452517092,0.018888246268034,0.052576199173927],[-0.0055259242653847,0.024869890883565,0.15639570355415]],[[0.034347273409367,0.030946362763643,-0.054780021309853],[0.011004751548171,-0.01784442178905,-0.077871210873127],[-0.045619148761034,-0.066732972860336,-0.068993896245956]],[[-0.033776499330997,0.048538878560066,-0.058490477502346],[0.051588233560324,0.022504201158881,0.01729286275804],[0.017962319776416,0.038771856576204,-0.065346010029316]],[[-0.03856335952878,0.0075166467577219,-0.011093430221081],[0.026203524321318,-0.10673350840807,0.024449530988932],[-0.051283121109009,-0.02971507422626,0.010725130327046]],[[0.08275318145752,0.040224190801382,0.020082077011466],[-0.031269103288651,0.037145722657442,0.014949471689761],[-0.0032884248066694,0.032977350056171,0.060523051768541]],[[-0.0080202566459775,-0.044369012117386,0.067196555435658],[0.11117229610682,-0.01467049587518,-0.041111148893833],[-0.033199913799763,0.0029764880891889,-0.09185341745615]],[[-0.014244838617742,0.0012787415180355,-0.056944370269775],[0.11699534952641,-0.018193908035755,-0.011114846915007],[0.03647505864501,-0.015895625576377,0.0090341223403811]],[[-0.0051391832530499,0.042792037129402,0.044563323259354],[-0.074434846639633,-0.008330169133842,-0.085385106503963],[0.051036760210991,0.0402279086411,-0.013519884087145]],[[-0.079326659440994,0.01598446816206,-0.013801480643451],[-0.033345270901918,-0.049042403697968,-0.028893170878291],[-0.00075618957635015,0.0080238645896316,0.055153824388981]],[[0.026578677818179,-0.031469862908125,0.0086420988664031],[0.067457668483257,0.10009595751762,0.012944051995873],[0.020253030583262,0.082788035273552,0.039033502340317]],[[-0.0086803967133164,0.035375837236643,0.00075501750689],[0.16400684416294,-0.04833947122097,0.0064941910095513],[-0.0074852048419416,0.0026361297350377,0.052603386342525]],[[0.0012035893741995,0.010329057462513,0.030000600963831],[-0.0055720182135701,0.039203364402056,0.062979802489281],[-0.096861377358437,0.056429747492075,0.067996926605701]],[[0.032103165984154,-0.074186414480209,-0.025253936648369],[-0.031572692096233,-0.027670592069626,-0.065782807767391],[0.022425955161452,-0.015309358015656,0.010320507921278]],[[-0.0049128835089505,-0.032784983515739,-0.033146299421787],[-0.037718944251537,0.038015179336071,0.034601669758558],[0.094544395804405,-0.0087356781587005,0.012233084067702]],[[-0.013781951740384,-0.01911055482924,-0.012563614174724],[0.046126503497362,-0.029606096446514,-0.061926901340485],[0.025504434481263,-0.0037692685145885,-0.023326491937041]],[[0.041905742138624,0.037477988749743,-0.038815155625343],[-0.02856901474297,0.078847587108612,0.022914338856936],[-0.035508677363396,0.0088992798700929,-0.042921613901854]],[[0.063156500458717,0.0075920755043626,-0.019308933988214],[0.032684102654457,0.051030706614256,0.045089472085238],[-0.021311117336154,-0.064146220684052,0.021669128909707]],[[-0.082745298743248,-0.068203121423721,-0.035838712006807],[0.0062770936638117,0.021746614947915,0.020193841308355],[-0.050175700336695,0.0012724784901366,0.015434170141816]],[[-0.04062482342124,0.022900130599737,0.074861936271191],[0.024495864287019,-0.040669288486242,0.026582790538669],[-0.04227352887392,0.079993523657322,0.047079741954803]],[[-0.031143141910434,-0.015162416733801,0.00040937715675682],[-0.029859615489841,0.050426948815584,-0.085955493152142],[0.079273946583271,0.053075633943081,0.030792756006122]],[[0.10699765384197,0.064189307391644,0.06683624535799],[0.04899387806654,0.093122728168964,0.05889130756259],[0.01828303001821,0.16493399441242,-0.085413567721844]],[[0.034897532314062,0.023286875337362,0.047227893024683],[-0.017319766804576,0.010381652973592,0.01099821832031],[0.090572744607925,0.038059793412685,0.034311909228563]],[[-0.079115085303783,0.0244031380862,0.0017140138661489],[0.032358154654503,-0.015657544136047,-0.0086283814162016],[0.0084096509963274,0.048621859401464,-0.045676350593567]],[[0.030984189361334,0.056605834513903,0.044780664145947],[-0.01852916367352,-0.023305280134082,-0.041809368878603],[0.1021768078208,0.045836381614208,-0.00061640731291845]],[[0.13850770890713,-0.00017318474419881,-0.03380336612463],[-0.028063558042049,0.1102936938405,-0.00069059227826074],[-0.063992992043495,0.015614056028426,-0.068984732031822]],[[0.0085275946184993,0.026329847052693,0.036638516932726],[0.12213266640902,-0.017415666952729,0.083669893443584],[0.010426752269268,0.056026231497526,0.02067500911653]],[[0.010725111700594,-0.12566469609737,-0.049831375479698],[0.13166634738445,0.023797059431672,-0.0039520598948002],[0.0043432139791548,-0.024000750854611,-0.012194378301501]],[[0.012005527503788,0.058189187198877,0.0042822621762753],[-0.024053487926722,0.075109384953976,0.11480972915888],[-0.10997829586267,0.025626562535763,0.032051920890808]],[[0.035321172326803,0.041702937334776,0.035569313913584],[0.0021916385740042,-0.010824495926499,0.021589528769255],[-0.044250633567572,0.041216190904379,-0.091481529176235]],[[-0.037714567035437,0.070346586406231,0.0091652991250157],[0.029058767482638,0.019388183951378,0.069188937544823],[-0.012102646753192,0.035130951553583,0.042263336479664]],[[0.099701784551144,0.058090589940548,0.024020094424486],[0.036095939576626,0.053226575255394,0.062912851572037],[0.12104030698538,0.014402346685529,0.14897876977921]],[[0.079619191586971,-0.061947148293257,0.0005266732769087],[-0.049585919827223,0.02923545986414,0.087280683219433],[-0.031926587224007,-0.043265588581562,-0.042625904083252]],[[-0.026417186483741,0.034562762826681,0.030783528462052],[-0.085812084376812,-0.015302340500057,-0.0074186809360981],[0.0032315987627953,-0.056210447102785,-0.00020171412324999]],[[-0.042537052184343,0.083353392779827,0.065374754369259],[0.10612966120243,0.07234176248312,0.047417066991329],[0.1301061809063,0.079696469008923,0.042765308171511]],[[-0.075445763766766,0.019011817872524,0.011226845905185],[-0.016571650281549,0.022751487791538,-0.08213447034359],[-0.070321425795555,-0.033273939043283,-0.014236655086279]],[[0.02912399917841,-0.11707431077957,-0.036294147372246],[-0.028219128027558,-0.0050090947188437,0.016915457323194],[-0.076318360865116,-0.019697578623891,-0.044633109122515]],[[-0.071762882173061,-0.056759420782328,-0.00087365391664207],[-0.020492190495133,0.030499400570989,-0.002822078531608],[-0.038868814706802,-0.019295921549201,-0.033726241439581]],[[-0.011654638685286,-0.046975288540125,0.013357046991587],[0.0050072357989848,0.013273306190968,0.02893140912056],[0.01639374345541,0.0046464083716273,-0.0084110591560602]],[[0.036280579864979,0.033816795796156,-0.032175291329622],[-0.021617718040943,0.043490346521139,0.056067295372486],[0.043591931462288,0.04642978310585,0.018391905352473]],[[-0.035876046866179,-0.05909875780344,0.047075942158699],[0.039932489395142,-0.0051656947471201,-0.052221059799194],[-0.056545853614807,0.07376928627491,0.063065081834793]],[[0.0016944670351222,0.04801432788372,-0.0016957371262833],[0.054766405373812,0.013110601343215,-0.0020464141853154],[0.044990580528975,-0.048908680677414,-0.079722218215466]],[[0.0096856849268079,-0.0089235650375485,0.0018375501967967],[0.031417105346918,0.060963653028011,0.04506504535675],[0.044712796807289,0.11263566464186,0.084162652492523]],[[-0.022334365174174,-0.083827070891857,0.041969045996666],[0.035255320370197,-0.031961008906364,-0.0046567241661251],[-0.0069232187233865,-0.025285786017776,0.018216285854578]],[[-0.0045797135680914,0.038910526782274,0.0038582901470363],[-0.012990155257285,0.038261380046606,0.037719622254372],[-0.026245657354593,0.010462830774486,0.017452416941524]],[[0.027008840814233,0.060180589556694,-0.013663504272699],[0.061650093644857,0.045375682413578,0.044907737523317],[0.014647448435426,0.012858260422945,0.040732972323895]],[[-0.02058962546289,-0.022753598168492,0.023652361705899],[-0.025504566729069,-0.12296817451715,-0.07360016554594],[0.020924374461174,-0.0065422062762082,0.0056128376163542]],[[-0.026900216937065,0.10587753355503,0.061859682202339],[-0.019803442060947,-0.019933998584747,0.016751706600189],[-0.015195244923234,-0.055370416492224,-0.027319226413965]],[[0.028958385810256,0.10685390979052,-0.079338476061821],[-0.036404881626368,0.013361094519496,0.0037472131662071],[-0.043857980519533,-0.0077840192243457,-0.015200141817331]],[[-0.047482132911682,-0.04971069842577,-0.0036935531534255],[-0.028999334201217,0.072299793362617,0.053935613483191],[0.0089626926928759,0.056759405881166,-0.04918859899044]],[[-0.017920110374689,-0.022305311635137,0.039220951497555],[-0.05273662507534,0.004153675865382,0.056538537144661],[-0.035981588065624,-0.072656996548176,-0.037983410060406]],[[0.017667377367616,-0.018481971696019,0.023047659546137],[0.028077872470021,0.024207998067141,-0.078559391200542],[-0.0051530241034925,-0.0092496508732438,-0.022960470989347]],[[-0.089482665061951,0.013752068392932,-0.054119128733873],[-0.054633893072605,-0.04465526714921,0.10970229655504],[0.015022421255708,-0.074638068675995,-0.04261265322566]],[[-0.0084187863394618,-0.049186252057552,0.074921660125256],[-0.015377988107502,0.018088087439537,0.10711238533258],[0.013714144937694,-0.018000928685069,-0.05255426838994]],[[0.034157872200012,0.014126431196928,0.050362043082714],[0.016387486830354,0.02835332043469,-0.011862313374877],[-0.099038168787956,0.10774151235819,0.062413215637207]],[[0.078875184059143,-0.059850215911865,-0.0099957603961229],[0.081603333353996,0.0087000904604793,0.02096320874989],[0.042246803641319,-0.011995948851109,0.02343125641346]],[[0.010885692201555,0.062868565320969,-0.00018977414583787],[-0.010900384746492,-0.048365578055382,0.050880394876003],[-0.010975269600749,-0.018907921388745,0.090370737016201]],[[0.021160624921322,-0.066546343266964,0.01828883215785],[0.027654143050313,-0.08814687281847,0.038283679634333],[0.096150614321232,0.053575541824102,-0.014657191000879]],[[-0.023950921371579,-0.0099400831386447,-0.024186847731471],[-0.024417042732239,0.024215947836637,0.01413301192224],[-0.044879883527756,-0.040684316307306,-0.021486779674888]],[[0.1307518184185,0.010239527560771,-0.002208978170529],[0.067454524338245,-0.0017952431226149,-0.06917305290699],[0.013242733664811,0.029663342982531,0.05026164278388]],[[-0.0085247131064534,0.0019825424533337,0.093876577913761],[-0.019465943798423,0.0099057331681252,0.025737712159753],[-0.016077948734164,-0.047472458332777,0.0033625597134233]],[[-0.054505690932274,0.0088665373623371,0.023308536037803],[0.04518286511302,0.046149499714375,0.012213340960443],[-0.0021700055804104,0.02704618871212,0.024953184649348]],[[-0.0069669033400714,0.021867889910936,-0.006179426331073],[0.013057130388916,-0.012808137573302,-0.070829957723618],[0.016410483047366,0.0092285312712193,0.041905742138624]],[[-0.029238214716315,-0.041755747050047,-0.09175606071949],[-0.03466672077775,-0.013110117055476,-0.034867078065872],[0.027567649260163,0.082659505307674,0.010260824114084]],[[0.007435729727149,-0.073751404881477,-0.039927620440722],[0.048486333340406,-0.050199780613184,-0.022603550925851],[0.029355788603425,0.038925055414438,-0.013153301551938]],[[0.019940925762057,-0.0040674558840692,-0.076205350458622],[0.054681457579136,0.0079632280394435,0.0035683123860508],[0.036994073539972,-0.0026108650490642,0.043517205864191]],[[-0.036953557282686,0.047904897481203,-0.044942609965801],[0.047207541763783,0.056422356516123,0.010541924275458],[0.22654117643833,0.0065565854310989,0.047838054597378]],[[0.028261745348573,-0.027253007516265,0.038331232964993],[-0.038328245282173,0.028021346777678,0.0047610672190785],[-0.059375572949648,-0.027138601988554,-0.10121461004019]],[[0.052463363856077,0.013580731116235,0.014582637697458],[-0.04366459697485,-0.026595486328006,0.020607732236385],[0.013769469223917,0.020096214488149,-0.075027585029602]],[[0.012543360702693,-0.045334134250879,-0.061094891279936],[0.057729624211788,0.057290870696306,-0.051073547452688],[0.024430429562926,0.030100421980023,-0.14831088483334]],[[0.039061937481165,0.015005765482783,0.013549553230405],[-0.010892482474446,0.028994105756283,-0.027210487052798],[0.076526179909706,-0.01076599676162,-0.078629530966282]],[[0.055128742009401,-0.0046618827618659,0.029898757115006],[0.02454143948853,0.019802374765277,-0.00044944349792786],[0.024651372805238,-0.028646418824792,0.045611549168825]],[[0.070026464760303,0.10162024945021,0.090040504932404],[0.047394458204508,0.0079073226079345,0.034272320568562],[-0.011579320766032,-0.03141487762332,0.067468516528606]],[[-0.067454323172569,-0.034101281315088,-0.012984259985387],[0.040021020919085,0.027976598590612,-0.0063954978249967],[0.01739034242928,0.035072211176157,0.002157935872674]],[[-0.031890261918306,-0.070535272359848,-0.092756316065788],[-0.047440506517887,0.0046652867458761,0.026850769296288],[0.0336569622159,0.067846156656742,0.017049727961421]],[[0.045875489711761,0.047722350805998,-0.0047476477921009],[0.080115579068661,-0.0039182584732771,-0.045633465051651],[0.12778720259666,0.08674406260252,-0.021122664213181]],[[-0.041790146380663,0.00054752069991082,0.018829483538866],[-0.050810068845749,-0.068961024284363,-0.079888850450516],[-0.027207670733333,0.0037381539586931,-0.0069380970671773]],[[0.077890977263451,-0.041820958256721,-0.110889069736],[0.026454482227564,0.036734707653522,0.037618760019541],[-0.00066371069988236,0.023801283910871,-0.018323071300983]],[[-0.022040253505111,-0.05908827483654,-0.12873031198978],[-0.032964911311865,-0.0055728545412421,-0.0023675251286477],[-0.0075395382009447,-0.026034338399768,-0.020848659798503]],[[0.00082348939031363,0.074968427419662,-0.0070604630745947],[0.04467174783349,-0.0098865050822496,0.048509210348129],[-0.015437074936926,0.013036279939115,0.027962062507868]],[[-0.090097859501839,-0.074450455605984,-0.060759551823139],[0.014094310812652,0.010147354565561,0.022945791482925],[0.07136807590723,0.0065999049693346,0.041675932705402]],[[0.019184660166502,0.002669254085049,-0.048337638378143],[-0.026637576520443,0.04461732506752,0.014841329306364],[-0.018164740875363,0.017494136467576,0.027182342484593]],[[0.028260413557291,-0.032158456742764,0.038103241473436],[0.044896252453327,0.016244856640697,-0.032721158117056],[0.059559173882008,0.055162813514471,-0.027823692187667]],[[-0.013519084081054,-0.04434659704566,-0.018618579953909],[0.072082571685314,-0.0096785807982087,-0.03437514975667],[-0.01979617215693,-0.0098235094919801,-0.024426117539406]],[[0.063695572316647,-0.042426392436028,-0.052793204784393],[0.034470677375793,0.095304749906063,0.014094451442361],[-0.02197321690619,0.00047238427214324,0.058246217668056]],[[0.084185667335987,0.012018792331219,-0.0012899057473987],[0.016090171411633,-0.067116320133209,0.015780918300152],[0.060803066939116,0.053490091115236,0.057275887578726]],[[0.010533586144447,0.033556193113327,0.058384962379932],[-0.026929702609777,0.064230874180794,0.049217231571674],[0.024753065779805,-0.021846119314432,0.11213677376509]],[[-0.067640252411366,-0.04378866404295,0.05225320905447],[0.032832562923431,-0.018254129216075,-0.041429705917835],[-0.00045047342428006,-0.0037138822954148,-0.026483077555895]],[[0.053665649145842,-0.016657704487443,0.010185332968831],[0.019546950235963,-0.049207769334316,0.051009144634008],[0.0080032926052809,0.033432558178902,0.077901549637318]],[[-0.031327191740274,0.018418809399009,0.01495264749974],[0.011554633267224,-0.023495186120272,0.0070844618603587],[-0.0078962100669742,-0.012749487534165,-0.08029093593359]],[[-0.039204351603985,0.05022295191884,0.043989777565002],[-0.054828785359859,0.0097368061542511,0.0074505200609565],[0.04195211827755,0.069545336067677,0.15500184893608]],[[-0.01533454656601,0.061505690217018,0.010675959289074],[-0.014884105883539,0.053358271718025,0.033015877008438],[0.04739061743021,0.026516251266003,-0.031860239803791]],[[-0.039419677108526,0.053019292652607,0.042160201817751],[-0.048989180475473,-0.034284006804228,-0.045113611966372],[-0.028885005041957,-0.051570970565081,-0.022395299747586]],[[0.11322129517794,0.066622346639633,-0.0016737318364903],[0.0062236366793513,-0.0096269659698009,-0.014672356657684],[0.025371542200446,-0.057803340256214,-0.020710909739137]],[[0.05412282794714,0.050989709794521,-0.12193724513054],[0.0073604714125395,0.025561548769474,0.050812806934118],[-0.012159795500338,0.10890905559063,0.059366036206484]],[[0.0021831763442606,0.047791160643101,0.00040066058863886],[0.11575943976641,0.10042519122362,0.065845020115376],[0.047806292772293,0.065693065524101,0.11664059758186]],[[6.4685846155044e-06,0.0018585220677778,0.0086085088551044],[0.039478331804276,-0.016609020531178,-0.033506948500872],[0.032747615128756,-0.068366482853889,0.10089468210936]],[[-0.04801956191659,-0.0090758726000786,0.032246775925159],[-0.058259177953005,-0.051362901926041,0.013724287040532],[0.01804793253541,0.0011072620982304,-0.028957730159163]],[[0.043331671506166,0.011619968339801,-0.064975269138813],[0.083246447145939,0.04660975933075,0.077232837677002],[0.11121057718992,0.092027500271797,0.019605744630098]],[[-0.065739579498768,-0.050861664116383,-0.063331358134747],[0.08259666711092,0.017958680167794,-0.037542078644037],[-0.016775727272034,0.09859711676836,-0.018604192882776]],[[-0.045113790780306,-0.10475806891918,-0.11542964726686],[-0.010552394203842,0.0096008209511638,-0.089387483894825],[0.022491643205285,0.029755653813481,0.045379817485809]],[[-0.044214971363544,-0.021038684993982,-0.0061537441797554],[-0.054918080568314,-0.064255848526955,0.010185116901994],[-0.0086986497044563,-0.07006573677063,-0.064245387911797]],[[-0.049683731049299,-0.10560653358698,-0.08198819309473],[0.037818036973476,0.027446364983916,-0.031234847381711],[0.017864309251308,-0.050779089331627,0.0060111191123724]],[[0.038541071116924,0.022107802331448,0.052058972418308],[-0.091101884841919,0.041966337710619,-0.023342879489064],[-0.08171185106039,-0.0044977311044931,-0.01906412653625]],[[-0.072878696024418,-0.029319377616048,-0.00013340378063731],[-0.018995342776179,0.042015131562948,-0.015274903737009],[-0.023540357127786,-0.12343894690275,-0.051903583109379]],[[-0.016365712508559,-0.10343223065138,-0.015881206840277],[-0.01225399505347,0.00051713135326281,0.004333927296102],[0.021099161356688,-0.0040899096056819,-0.053703151643276]],[[0.0032924183178693,-0.04734530672431,0.014191290363669],[-0.034530363976955,-0.041061360388994,0.0097597967833281],[0.11961641162634,-0.038638383150101,0.015456136316061]],[[-0.025905970484018,-0.12943249940872,-0.071387208998203],[-0.05108218640089,0.023922219872475,-0.099922426044941],[0.048980940133333,-0.028168547898531,0.035306930541992]],[[0.063643224537373,0.0056074969470501,0.012031864374876],[-0.030500026419759,-0.011187517084181,0.051108323037624],[0.031753245741129,0.0011554511729628,0.049238681793213]],[[0.049821469932795,-0.0083176996558905,0.026548562571406],[-0.032822202891111,-0.083291612565517,0.0018000168493018],[-0.010754692368209,-0.072667442262173,-0.023651083931327]],[[0.011217328719795,0.033280972391367,-0.0060176816768944],[-0.032949384301901,0.0011074298527092,0.014272831380367],[0.019738739356399,-0.053195890039206,0.016053032130003]],[[-0.037548258900642,0.010393167845905,0.086413837969303],[0.05511512607336,0.0098980022594333,-0.079225435853004],[-0.035913784056902,-0.031838215887547,-0.11924979835749]],[[0.013468046672642,-0.035500343888998,0.062475971877575],[-0.050903219729662,-0.11120048165321,0.024010308086872],[0.017855843529105,0.064817100763321,0.013853971846402]],[[-0.020108448341489,-0.0059552509337664,0.062967605888844],[0.042868420481682,-0.003398505738005,0.017866460606456],[0.023675058037043,0.035534378141165,0.024213880300522]],[[-0.068192832171917,-0.00069435749901459,-0.0085918186232448],[0.14672926068306,0.082517527043819,-0.096599295735359],[0.030280593782663,0.015674214810133,0.074692025780678]],[[-0.026222696527839,-0.017818721011281,-0.042794641107321],[0.082487560808659,0.06086303293705,-0.024829803034663],[0.066181391477585,0.092238925397396,0.056738335639238]],[[0.073347888886929,-0.03842955827713,0.077533297240734],[-0.036212734878063,0.038762383162975,0.072056703269482],[0.083825908601284,-0.043110597878695,0.071133017539978]]],[[[0.0071416590362787,-0.034587051719427,-0.050530113279819],[-0.013652676716447,0.10626736283302,0.027827983722091],[-0.012972296215594,0.0030910233035684,-0.049413442611694]],[[0.070924431085587,0.048112254589796,-0.035747233778238],[-0.0092198364436626,-0.046541061252356,-0.0030463708098978],[-0.087429605424404,0.018723422661424,0.013841239735484]],[[-0.0063593108206987,0.050106305629015,-0.0041308840736747],[0.017476093024015,-0.012647527270019,0.064372390508652],[-0.0041351434774697,-0.0037094857543707,0.047322362661362]],[[0.013763353228569,0.044934563338757,-0.027350291609764],[-0.019287705421448,0.020670544356108,-0.024880673736334],[0.01922102086246,-0.03294188156724,0.036496039479971]],[[0.021936850622296,0.011116535402834,0.058696005493402],[0.055455330759287,-0.078127168118954,0.012931036762893],[0.042667631059885,-0.022816201671958,0.0071013499982655]],[[-0.016514886170626,-0.021113820374012,-0.028911210596561],[0.016376338899136,-0.024810746312141,-0.0083267511799932],[0.037203054875135,0.0099595701321959,0.017891205847263]],[[-0.0023640261497349,0.032528065145016,0.012881126254797],[0.087591283023357,-0.040387786924839,0.097876809537411],[-0.016496093943715,0.028766242787242,0.0013962727971375]],[[-0.053460463881493,0.022172996774316,0.083607561886311],[-0.061550315469503,-0.055946722626686,0.041401565074921],[-0.014345518313348,-0.00095365493325517,0.014728893525898]],[[-0.013436284847558,0.007137993350625,0.0088628847151995],[0.063011154532433,-0.019528906792402,-0.040185663849115],[0.013592711649835,0.02577898837626,-0.065451748669147]],[[0.026266539469361,0.0033562881872058,0.088398478925228],[0.016202740371227,0.0024555788841099,-0.057608630508184],[0.022993955761194,-0.062101226300001,-0.038329679518938]],[[0.031030045822263,-0.0062286048196256,-0.018064014613628],[-0.023388564586639,0.014751787297428,0.019640604034066],[0.0011125832097605,0.021533653140068,0.01177763659507]],[[0.093638323247433,0.063372611999512,0.019846864044666],[-0.066492043435574,-0.0082096355035901,-0.056813459843397],[0.030791597440839,-0.05388468503952,-0.019539050757885]],[[0.014418845064938,0.0025192545726895,-0.028386870399117],[-0.0077825980260968,-0.0593550093472,-0.025736879557371],[-0.019416652619839,-0.074952654540539,0.025339934974909]],[[0.044737730175257,0.068694494664669,-0.0065676015801728],[0.01353142503649,0.032936725765467,-0.023736365139484],[0.0037845147307962,-0.028293864801526,0.0013487285468727]],[[-0.055157274007797,0.015232302248478,0.026062207296491],[0.028972009196877,0.069371797144413,-0.02287183329463],[0.035666979849339,-0.0071206246502697,0.0088119320571423]],[[-0.022626975551248,0.010129005648196,0.051965892314911],[0.016886340454221,-0.015956480056047,-0.028447614982724],[-0.011892767623067,0.0074762185104191,0.0041036731563509]],[[0.028677843511105,-0.060931939631701,0.00088294217130169],[-0.041816297918558,0.010350016877055,0.00010151218884857],[0.032205123454332,0.01395121961832,0.0026423977687955]],[[0.0045109707862139,0.053240355104208,0.067930467426777],[0.055806692689657,0.006100794300437,-0.019311271607876],[0.00096041517099366,0.0084541970863938,0.012962917797267]],[[0.050958320498466,0.0085161523893476,-0.040482245385647],[0.03335190564394,0.057892587035894,-0.048349995166063],[-0.067930839955807,-0.0048936158418655,0.025692775845528]],[[-0.024762615561485,-0.0045758574269712,0.014413165859878],[-0.035928651690483,0.048213493078947,-0.038678299635649],[0.046847570687532,-0.018167987465858,-0.067174233496189]],[[-0.029242791235447,0.051986079663038,0.015151111409068],[-0.016602426767349,-0.014566992409527,0.058125972747803],[-0.05355516821146,-0.069093987345695,-0.026634804904461]],[[-0.0031748220790178,-0.015020666643977,-0.027628406882286],[0.0026821559295058,0.024866167455912,0.0067827575840056],[0.036346893757582,-0.027422208338976,0.04477608948946]],[[-0.0068033766001463,-0.033928744494915,-0.010174537077546],[-0.052085507661104,0.00081014027819037,-0.027728199958801],[0.045610476285219,-0.020984744653106,-0.029760995879769]],[[0.013185963965952,-0.002435889095068,-0.0010413225973025],[0.044809706509113,0.034452605992556,-0.019217288121581],[0.0056633343920112,0.0087488992139697,0.047648761421442]],[[-0.032043516635895,-0.086090676486492,-0.028640549629927],[0.066260814666748,0.027005132287741,-0.042059443891048],[0.00086279580136761,-0.0062561286613345,-0.030495673418045]],[[-0.044630534946918,0.066805079579353,0.036283560097218],[-0.017941607162356,0.04588969796896,-0.0061139166355133],[-0.065380848944187,0.030546052381396,-0.014653661288321]],[[-0.0040860106237233,-0.054439295083284,0.039144776761532],[-0.025319073349237,-0.05437021329999,-0.045051358640194],[-0.026355208829045,-0.090283811092377,-0.0061100828461349]],[[0.0054211323149502,-0.035379033535719,0.026766395196319],[0.068527743220329,-0.022955507040024,0.069724775850773],[0.042806558310986,0.017744772136211,0.019972242414951]],[[0.037019729614258,-0.027395693585277,0.040662746876478],[0.022820489481091,0.0030775177292526,-0.024258997291327],[-0.044503577053547,0.051013041287661,-0.0062281605787575]],[[0.023501561954618,0.043409261852503,-0.047122500836849],[-0.027230342850089,0.044602982699871,0.029668673872948],[-0.027952136471868,-0.00011029129382223,0.018329121172428]],[[-0.057349607348442,0.0042852303013206,0.047900475561619],[-0.014964500442147,-0.011100012809038,0.024383453652263],[-0.006806805729866,-0.0044314367696643,0.040593061596155]],[[-0.013844018802047,-0.082583539187908,0.046058770269156],[0.023275496438146,-0.029489325359464,-0.0064746700227261],[0.023640813305974,0.0044283377937973,0.0060891611501575]],[[-0.10616619884968,-0.0055659813806415,0.063355952501297],[-0.030011903494596,-0.002224431373179,0.0068110199645162],[0.068253129720688,0.079200349748135,0.026493011042476]],[[0.045580647885799,0.014728225767612,-0.011746725067496],[0.023391285911202,0.023899892345071,0.01273528393358],[0.0029218832496554,-0.039971575140953,0.026999516412616]],[[0.049636274576187,0.077507957816124,-0.042705323547125],[0.017873922362924,-0.042052716016769,0.0086145251989365],[-0.019969983026385,-0.022384295240045,-0.02547044865787]],[[0.068414822220802,0.051471773535013,0.048654798418283],[0.061762064695358,0.004909067414701,-0.0081389518454671],[-0.012395142577589,-0.045839015394449,-0.032567739486694]],[[0.052809629589319,-0.04472242295742,-0.024508774280548],[0.0011961057316512,0.0091993724927306,0.036115076392889],[0.072734527289867,-0.012123943306506,-0.042224001139402]],[[-0.0068935099989176,-0.07126209884882,-0.041162315756083],[-0.014704904519022,0.0081294476985931,0.016579393297434],[-0.012836493551731,0.0052142501808703,0.01870926655829]],[[0.05987311527133,0.034622475504875,-0.064628027379513],[0.00093729386571795,-0.048957359045744,-0.050309363752604],[-0.075206182897091,-0.013521373271942,0.0051944809965789]],[[-0.0090213064104319,0.01467265561223,0.013717885129154],[-0.0034552079159766,-0.079946741461754,-0.036517340689898],[-0.033140677958727,0.06304294615984,0.02328833937645]],[[-0.0038905004039407,0.033043447881937,0.028496194630861],[0.021972332149744,0.011062412522733,0.0027045742608607],[0.011905775405467,-0.041674803942442,-0.037465956062078]],[[0.021345367655158,-0.003489266615361,0.05803395062685],[0.082144923508167,0.0019176879432052,0.054410740733147],[-0.037322852760553,0.0024731771554798,0.0375283844769]],[[-0.0080422339960933,-0.03199078515172,0.071797713637352],[-0.027992090210319,0.026706105098128,0.025573913007975],[-0.013521450571716,0.022892186418176,0.00026456170598976]],[[-0.024996761232615,-0.0065007079392672,-0.030947394669056],[-0.029301445931196,-0.14389804005623,-0.090113773941994],[-0.067267149686813,0.022527970373631,-0.11044219881296]],[[0.033105112612247,-0.046005181968212,0.00028526762616821],[0.012453924864531,-0.026018662378192,-0.012174702249467],[0.017620354890823,-0.078056707978249,0.01768739707768]],[[0.020522380247712,0.074371963739395,-0.091748431324959],[0.022757809609175,0.016498504206538,-0.013512187637389],[0.0066496427170932,0.015864780172706,-0.0057468242011964]],[[0.067770190536976,0.037970717996359,-0.01838063262403],[-0.047059640288353,-0.02080287411809,0.035505048930645],[0.12557569146156,0.010359722189605,0.046431992202997]],[[0.012692834250629,-0.053683631122112,-0.033933851867914],[-0.053111486136913,-0.06901840120554,-0.004026310518384],[-0.026413021609187,0.05725759640336,0.019541716203094]],[[0.0078865559771657,0.07840371131897,-0.017845584079623],[-0.0088574727997184,-0.049708899110556,-0.033605005592108],[0.019061118364334,0.028829477727413,0.043730430305004]],[[0.017726315185428,-0.02013779245317,0.036901962012053],[0.021731570363045,-0.014114424586296,0.0041887098923326],[-0.027011577039957,-0.005298042204231,-0.079019315540791]],[[0.088749811053276,-0.078828655183315,-0.029939716681838],[-0.045890785753727,-0.019980598241091,-0.0050060218200088],[0.078640557825565,-0.05319831520319,0.03602321818471]],[[0.0013107699342072,0.017204223200679,-0.051406797021627],[-0.06418127566576,0.026204964146018,0.061023090034723],[-0.0058199372142553,-0.02799023501575,0.025419307872653]],[[0.056785441935062,-0.077168650925159,-0.0058207274414599],[-0.049170888960361,-0.04592115432024,0.030461959540844],[-0.036213755607605,-0.033542554825544,0.049426414072514]],[[-0.013240844011307,0.0763149112463,0.055906608700752],[-0.01465218141675,-0.012542015872896,0.12927676737309],[-0.041784830391407,-0.046495195478201,0.023066055029631]],[[-0.052105240523815,-0.028151808306575,0.0067917401902378],[0.019232450053096,0.024024687707424,0.07049074023962],[-0.023849243298173,0.03002249635756,-0.052732665091753]],[[0.032533127814531,0.033307246863842,0.04353267326951],[0.0028510277625173,-0.023975815623999,0.044055730104446],[-0.099803492426872,-0.010867699049413,-0.053390517830849]],[[0.02151770144701,-0.060045059770346,0.01306074578315],[-0.021882120519876,0.07293114066124,-0.010142057202756],[0.058520719408989,-0.0026445663534105,-0.049092210829258]],[[-0.038240905851126,0.12799383699894,0.10988236963749],[0.012544794939458,0.028018493205309,0.03910144418478],[-0.054792184382677,0.003504675347358,-0.043070711195469]],[[0.05003934726119,0.039287626743317,0.0045865960419178],[0.046922411769629,-0.033124823123217,-0.038303960114717],[0.073067277669907,0.0032369773834944,0.022809496149421]],[[0.024877849966288,0.028190648183227,-0.041558653116226],[0.011879373341799,-0.036724489182234,0.040512263774872],[0.021495053544641,-0.069474443793297,-0.063195280730724]],[[0.04517088085413,0.056134294718504,0.049551002681255],[-0.074373580515385,0.044791907072067,0.021268963813782],[0.081542707979679,-0.099524855613708,-0.095665290951729]],[[0.01047008484602,0.05951514095068,0.081944398581982],[-0.0055348752066493,0.012614662759006,-0.039129767566919],[0.042141996324062,0.070643819868565,-0.071219526231289]],[[-0.044340074062347,-0.093807823956013,0.02525426261127],[0.026134731248021,-0.025040473788977,0.067924804985523],[-0.038736388087273,0.037972640246153,0.004321401938796]],[[0.011474811471999,0.0011575795942917,0.0037511689588428],[-0.017757479101419,0.045605596154928,-0.023745499551296],[-0.076652012765408,0.037606325000525,0.072939336299896]],[[0.0023404981475323,0.08277527987957,0.020451180636883],[0.04430665448308,0.0075537418015301,0.025374073535204],[0.0062549891881645,-0.025729142129421,-0.0040080188773572]],[[0.019883565604687,0.0012363120913506,0.039625305682421],[-0.043397504836321,0.0079072499647737,-0.019495859742165],[0.046321641653776,-0.062213964760303,0.048333670943975]],[[0.020670479163527,0.049293484538794,-0.043421998620033],[0.02152325026691,-0.069701001048088,0.062198337167501],[0.043510884046555,-0.026910081505775,-0.00067199469776824]],[[0.030033254995942,-0.041749320924282,0.033123504370451],[0.0017407441046089,0.0089187677949667,-0.048025272786617],[-0.0099888499826193,0.0018617443274707,-0.022067354992032]],[[-0.020610794425011,-0.016687799245119,-0.021711362525821],[0.037727739661932,0.060518361628056,0.037189297378063],[-0.010834239423275,0.018462054431438,-0.078848384320736]],[[-0.027946680784225,0.038797322660685,0.0045274924486876],[0.054979540407658,0.051969572901726,0.036487814038992],[0.0028460519388318,-0.0024085724726319,0.02756311930716]],[[0.0020373379811645,0.0062732682563365,0.031462285667658],[0.026078263297677,0.043275736272335,-0.0241030883044],[-0.031622298061848,0.10690850764513,-0.090116016566753]],[[-0.05280602350831,0.017801009118557,-0.050464645028114],[-0.055685613304377,0.041544303297997,0.02564143948257],[0.0012632503639907,0.0021886713802814,0.042281057685614]],[[0.058463368564844,-0.0062890439294279,0.030450042337179],[0.019816799089313,-0.040123239159584,0.0046833446249366],[-0.03075092472136,0.020145239308476,-0.019429633393884]],[[0.0029154997318983,0.0024169303942472,0.014158296398818],[-0.022412676364183,0.039058580994606,0.0067376149818301],[0.01207878254354,0.019813908264041,-0.018116522580385]],[[-0.034511137753725,-0.020614989101887,-0.029663873836398],[0.070730067789555,-0.016529906541109,-0.036527823656797],[0.021621147170663,0.030986569821835,-0.070325993001461]],[[-0.009429007768631,0.016365366056561,-0.017433712258935],[-0.00079594209091738,0.01422974653542,-0.020237503573298],[-0.034021001309156,0.022114409133792,0.025445338338614]],[[-0.023496687412262,0.0022808054927737,0.032964251935482],[0.011727941222489,-0.020077032968402,-0.018934436142445],[-0.00033600840833969,-0.018195325508714,0.03194722533226]],[[0.021237682551146,0.01762242987752,0.058649219572544],[-0.089089386165142,-0.0062240092083812,-0.066645883023739],[0.039527215063572,0.0086453538388014,0.0096512772142887]],[[-0.043758653104305,0.033530961722136,0.06201645731926],[-0.051708161830902,0.029682664200664,-0.00084046501433477],[0.046668406575918,0.087118275463581,0.012143670581281]],[[-0.057500869035721,-0.0053502134978771,0.051245491951704],[-0.012159926816821,-0.028484040871263,-0.056553658097982],[1.8486367480364e-05,0.023007301613688,0.0045207776129246]],[[-0.023982144892216,0.014024348929524,0.061431974172592],[-0.066444292664528,0.037724711000919,0.052207224071026],[-0.009849401190877,-0.083018451929092,0.038262732326984]],[[0.0035123834386468,0.02657525986433,0.021640386432409],[0.016452366486192,-0.0948246717453,0.027620064094663],[0.076568096876144,0.049121085554361,-0.046269457787275]],[[-0.033932060003281,0.050097513943911,-0.015725301578641],[0.030943717807531,-0.011191030032933,-0.01237884350121],[-0.016513727605343,-0.022511750459671,0.083693288266659]],[[-0.015386367216706,0.0039108111523092,0.036947697401047],[-0.010601881891489,0.0095930136740208,0.041644975543022],[-0.044330637902021,-0.031008524820209,0.069685131311417]],[[-0.047833487391472,-0.0033247363753617,0.083038039505482],[0.0030685283709317,0.014530638232827,-0.024410754442215],[-0.068987250328064,0.048568785190582,0.014189025387168]],[[-0.008349284529686,0.03367879614234,0.055653478950262],[0.0016452509444207,0.0031214887276292,-0.060644965618849],[-0.0084717208519578,0.06739266961813,0.019390985369682]],[[0.098017103970051,0.00085842929547653,-0.0022247647866607],[-0.036192432045937,-0.0097460951656103,0.032364256680012],[-0.0044660721905529,-0.034121960401535,0.079953737556934]],[[-0.0031363011803478,0.0027333574835211,0.040924601256847],[-0.019747486338019,0.030438974499702,0.0037849359214306],[-0.0015980949392542,0.043791923671961,0.015848450362682]],[[0.0080241886898875,-0.12477891147137,-0.034932427108288],[0.045003268867731,-0.0080749560147524,0.0027363006956875],[0.031200094148517,0.048522043973207,-0.041924398392439]],[[0.015428819693625,0.036144033074379,-0.017923980951309],[-0.083504624664783,0.023410148918629,0.063213765621185],[-0.014218349941075,0.054164137691259,-0.061519660055637]],[[-0.0076404176652431,0.029999168589711,0.033712062984705],[0.038692258298397,0.02571914345026,-0.0074728764593601],[0.029116144403815,-0.04378841817379,-0.048426195979118]],[[0.011505551636219,0.0078051812015474,0.024076443165541],[0.018523931503296,-0.0052373199723661,-0.029272628948092],[-0.073591850697994,-0.0096913613379002,-0.015187729150057]],[[0.015728775411844,-0.0070063546299934,0.048790872097015],[-0.055580321699381,0.07073301076889,-0.023723190650344],[-0.055409658700228,0.04931828379631,-0.019683692604303]],[[-0.019474603235722,-0.0060527361929417,-0.024514829739928],[-0.037386942654848,0.074318058788776,-0.025472881272435],[0.027644274756312,-0.037616729736328,0.0020709312520921]],[[-0.0047813267447054,-0.046012420207262,0.061813984066248],[0.032378658652306,0.021922826766968,0.015126706101],[-0.042750913649797,0.029147943481803,-0.013289872556925]],[[0.056853752583265,0.0061575747095048,-0.00029176799580455],[-0.01165406871587,-0.060052819550037,-0.010156542062759],[-0.047971788793802,0.055469695478678,-0.014067972078919]],[[0.023258617147803,-0.010433752089739,-0.01228860206902],[0.033104512840509,-0.020232317969203,0.070440374314785],[0.036730270832777,-0.0040059126913548,-0.0095216641202569]],[[-0.035236325114965,0.0037082554772496,0.014418923296034],[-0.034182626754045,0.012081033550203,0.05124880746007],[0.10068829357624,-0.014946720562875,0.012065131217241]],[[0.029356848448515,-0.03713671118021,0.057131227105856],[0.00095089169917628,-0.07142598181963,-0.01773832924664],[0.0066331401467323,0.01680907048285,0.01568784378469]],[[-0.011911728419363,0.067396193742752,-0.037315513938665],[-0.091179832816124,0.013468506745994,-0.010967643000185],[0.054856527596712,0.052529990673065,0.0093986354768276]],[[-0.037691455334425,0.058050338178873,-0.023908715695143],[0.030427735298872,0.055148396641016,0.026239860802889],[0.025029553100467,0.018095392733812,0.03319663926959]],[[-0.01940163038671,0.029159650206566,-0.024570876732469],[0.028475444763899,-0.045979369431734,0.01442061830312],[-0.015405121259391,-0.018355315551162,-0.051042847335339]],[[-0.010515323840082,0.01107198279351,0.022758506238461],[0.014376769773662,0.025544133037329,-0.070945434272289],[-0.048188831657171,0.029684063047171,0.017721120268106]],[[0.052576001733541,0.022100711241364,0.044570285826921],[-0.02911800891161,0.024498023092747,-0.037436656653881],[0.016786521300673,-0.019274037331343,0.02214870415628]],[[-0.058538351207972,0.016189249232411,0.0010905822273344],[0.01096179895103,0.048586439341307,-0.0070460215210915],[-0.049453873187304,0.026578191667795,0.036487597972155]],[[-0.021043101325631,0.0047989194281399,-0.010901954956353],[0.030409559607506,2.0000767108286e-05,-0.0022792727686465],[0.053876169025898,-0.01442644931376,0.024505401030183]],[[0.046541444957256,0.029529148712754,-0.0072968997992575],[-0.073261670768261,0.067063346505165,-0.020402926951647],[-0.014901912771165,0.017652118578553,-0.016714131459594]],[[0.012653332203627,0.041564095765352,0.040368214249611],[0.042136061936617,0.063497766852379,0.0040197297930717],[-0.078865699470043,-0.013799290172756,-0.012598698958755]],[[-0.00068342935992405,-0.046007841825485,-0.03307655826211],[-0.028622368350625,-0.018579786643386,0.02474014274776],[0.0087011661380529,-0.04124816134572,-0.040206808596849]],[[-0.020426528528333,0.022641053423285,0.023923641070724],[-0.02234548330307,-0.042193606495857,0.053417515009642],[-0.0086737275123596,0.028945172205567,-0.009563366882503]],[[0.015203991904855,-0.034135352820158,0.063459888100624],[-0.011809697374701,0.072393260896206,0.042137198150158],[0.013318490236998,0.041872873902321,0.0098373889923096]],[[-0.057138651609421,-0.0116200838238,0.02724215388298],[0.024572750553489,-0.046639002859592,0.022330677136779],[-0.04589581489563,-0.0058019640855491,0.068523667752743]],[[0.0051829502917826,-0.036186117678881,0.034216716885567],[0.090500317513943,-0.0070588802918792,-0.059816803783178],[-0.022955093532801,-0.010216563008726,0.012105721980333]],[[0.0029530196916312,-0.054438136518002,-0.052268736064434],[-0.099099352955818,0.009036872535944,0.013921367935836],[-0.022881992161274,-0.028244161978364,0.034539941698313]],[[-0.062480550259352,0.021890195086598,-0.077305309474468],[-0.013152338564396,0.079382590949535,-0.026893191039562],[-0.018279146403074,0.040585104376078,0.0182078871876]],[[0.045014765113592,0.003649631049484,0.020277842879295],[0.0079736160114408,0.0019767170306295,0.046037007123232],[-0.032618030905724,-0.032884530723095,0.0095676733180881]],[[0.065435975790024,0.083197705447674,-0.020058942958713],[-0.010207320563495,-0.033402051776648,0.0068025114014745],[-0.029433673247695,0.0031046820804477,0.031151007860899]],[[-0.013207363896072,-0.0033277857583016,0.018211301416159],[0.010944393463433,-0.0090422183275223,0.0028898289892823],[-0.034734509885311,0.050958666950464,-0.039493594318628]],[[0.012829153798521,-0.044102426618338,0.018888121470809],[0.032993789762259,0.01506688632071,0.12489932775497],[0.044350579380989,-0.035317245870829,0.0080147897824645]],[[-0.025928476825356,0.026867136359215,0.023574849590659],[-0.021826796233654,0.011214257217944,0.021036615595222],[0.054867118597031,0.029595984145999,-0.039857003837824]],[[0.076328665018082,-0.016620747745037,-0.040769953280687],[0.031453285366297,0.018065053969622,-0.018180826678872],[-0.050890024751425,0.014018796384335,-0.044161535799503]],[[-0.0082977060228586,-0.030743388459086,-0.062940269708633],[0.021323131397367,0.049972556531429,0.052835162729025],[-0.012465119361877,0.065306164324284,0.046531226485968]],[[-0.0054571651853621,-0.042039733380079,-0.0024515953846276],[0.0018495836993679,0.010410025715828,0.024944880977273],[0.031828638166189,0.090911485254765,0.058127883821726]],[[-0.011433241888881,-0.00065658352104947,0.070619806647301],[-0.0060400106012821,-0.013974575325847,0.017660671845078],[0.023411761969328,0.01334169972688,-0.0011752297868952]],[[0.0077900835312903,0.042269214987755,0.010323815979064],[-0.026519676670432,-0.0068457596935332,-0.036738339811563],[0.10307927429676,-0.053244523704052,0.069865234196186]],[[-0.010524781420827,-0.033686362206936,0.002628109883517],[0.010333873331547,-0.089595586061478,-0.01920966245234],[0.057347383350134,-0.044840402901173,0.042180005460978]],[[-0.053805500268936,0.015579734928906,0.0062582571990788],[0.01126023568213,-0.088262744247913,0.043088026344776],[-0.0066598495468497,-0.01110010035336,0.0039797103963792]],[[-0.061597395688295,-0.034881882369518,0.054344542324543],[-0.055421926081181,0.067902714014053,0.060042109340429],[0.0239929985255,-0.029335234314203,-0.11010769754648]]],[[[0.00092284299898893,0.0015470365760848,-0.021933317184448],[0.057377342134714,-0.012087464332581,-0.055859010666609],[0.013648932799697,0.089890971779823,0.0021140701137483]],[[0.03929590433836,-0.04111709445715,0.051613420248032],[0.053070124238729,-0.013826216571033,-0.018040170893073],[-0.037764132022858,0.091856330633163,-0.052861824631691]],[[-0.065412051975727,0.01427108142525,0.017130116000772],[0.01965837366879,-0.026621667668223,-0.10966518521309],[-0.055212706327438,-0.11097130924463,-0.074043944478035]],[[-0.19518913328648,-0.091671764850616,-0.21550215780735],[0.11682426929474,-0.083237834274769,-0.11135768145323],[-0.040393061935902,-0.026535529643297,-0.2133990675211]],[[-0.049904316663742,0.0020074548665434,0.044337052851915],[0.023486139252782,0.068990580737591,0.06359139829874],[0.070329174399376,-0.018667291849852,0.028277836740017]],[[0.048084583133459,-0.028752671554685,-0.043930277228355],[-0.057116575539112,0.013647534884512,-0.0022024584468454],[0.0023314540740103,0.060030415654182,-0.095709502696991]],[[-0.019684869796038,0.078718565404415,-0.089364245533943],[0.065027758479118,0.047992497682571,0.10243650525808],[-0.029149182140827,-0.1201313957572,0.12273600697517]],[[-0.0022011913824826,0.13248874247074,0.015479077585042],[0.014454896561801,0.053801394999027,0.073110669851303],[0.094467885792255,0.05995474383235,-0.00015794156934135]],[[-0.14662477374077,-0.13136301934719,-0.061620503664017],[-0.027058759704232,0.02047311142087,-0.014383161440492],[0.066315777599812,0.033058300614357,0.025250267237425]],[[0.013409599661827,0.045021254569292,-0.15608771145344],[0.044400282204151,0.072934508323669,-0.10017313808203],[0.081439517438412,0.021488865837455,-0.013051426038146]],[[0.070307061076164,0.13316316902637,0.0068386700004339],[0.0027615029830486,0.047432780265808,0.017868319526315],[-0.0040890974923968,0.037021685391665,-0.061952594667673]],[[0.091930896043777,-0.015454994514585,0.020546374842525],[-0.019075999036431,-0.089122824370861,0.020472915843129],[0.040901429951191,-0.030942721292377,-0.052981968969107]],[[-0.015179028734565,0.039309605956078,0.014841487631202],[-0.016586523503065,0.0081059457734227,0.12968423962593],[0.18878982961178,0.17864468693733,0.075174897909164]],[[0.0021229099947959,0.019752623513341,-0.017002841457725],[0.069445677101612,0.12979178130627,-0.034234646707773],[0.04993948340416,0.024458324536681,-0.051158707588911]],[[-0.14566585421562,-0.1847371160984,0.096276246011257],[-0.025091048330069,-0.076134487986565,-0.12563766539097],[0.033429209142923,0.026281349360943,-0.15021400153637]],[[-0.0018454897217453,0.060949563980103,0.023172795772552],[0.12113366276026,-0.05016628280282,0.11028203368187],[0.06822495162487,-0.14493942260742,-0.10774441063404]],[[0.097218446433544,-0.033870149403811,-0.37054324150085],[0.16625244915485,-0.072024323046207,-0.12745685875416],[0.012630574405193,-0.15767967700958,0.0064229071140289]],[[0.028357066214085,-0.11648658663034,0.21339708566666],[-0.072115890681744,-0.051635172218084,0.15673576295376],[-0.14569438993931,-0.091307625174522,0.039753802120686]],[[-0.024406455457211,-0.020019013434649,0.063741579651833],[0.029261808842421,0.0061570219695568,-0.019744465127587],[0.07048624753952,0.010949736461043,0.043764874339104]],[[-0.069215334951878,-0.023155871778727,-0.072094149887562],[0.036409251391888,-0.070895709097385,-0.11492945253849],[0.030834374949336,0.073521099984646,-0.05865578353405]],[[0.035135086625814,0.066159747540951,0.048007804900408],[-0.044336915016174,-0.12275138497353,0.11777129769325],[-0.15189395844936,-0.33657225966454,-0.26129218935966]],[[-0.0092359911650419,-0.15365013480186,-0.062813855707645],[-0.095750153064728,-0.092697493731976,0.039646491408348],[0.017109028995037,-0.079541146755219,0.075330898165703]],[[0.13183537125587,-0.0049479752779007,0.022736391052604],[-0.027961017563939,-0.027454275637865,0.034980643540621],[0.076676338911057,-0.0016641126712784,-0.038413044065237]],[[-0.029150646179914,0.023039216175675,-0.0054048388265073],[0.11615755409002,0.032918594777584,0.078147873282433],[-0.0009298735531047,-0.032363705337048,-0.081000909209251]],[[-0.092061214148998,-0.10758543759584,-0.096246853470802],[-0.035424701869488,-0.13547860085964,0.051923390477896],[-0.0092457449063659,0.0058787502348423,-0.2623299062252]],[[0.021984769031405,0.079605869948864,0.038513280451298],[-0.046408992260695,-0.053503919392824,0.039541218429804],[0.048602536320686,0.0086097186431289,0.07417169958353]],[[-0.067361168563366,-0.083515979349613,-0.11084129661322],[-0.026487873867154,0.0054190745577216,-0.13801763951778],[0.0082750571891665,0.099135957658291,-0.12535513937473]],[[0.10796874761581,-0.046887803822756,0.062950745224953],[0.063795693218708,0.083615608513355,-0.013652441091835],[0.0016133286990225,0.080615743994713,-0.049640461802483]],[[-0.011790806427598,0.00018781586550176,0.023308359086514],[-0.090587668120861,-0.0062278779223561,-0.026495380327106],[-0.033941317349672,0.018957024440169,-0.061242219060659]],[[-0.0025043142959476,-0.026570249348879,-0.059524614363909],[0.031254582107067,-0.054450958967209,0.069201096892357],[0.0048178238794208,0.037834297865629,-0.13566675782204]],[[-0.027650753036141,0.072275288403034,0.045715615153313],[0.048690617084503,-0.01382549200207,-0.03803925216198],[-0.04134526848793,0.039470501244068,-0.044936493039131]],[[-0.0044180885888636,0.048050656914711,-0.18779841065407],[0.058356519788504,-0.051892288029194,0.065785206854343],[-0.033633563667536,0.029083754867315,-0.028592258691788]],[[0.065051175653934,-0.028439171612263,-0.13120838999748],[0.072743341326714,0.064703240990639,-0.027014747262001],[-0.024192333221436,0.027979591861367,-0.047170463949442]],[[0.060177933424711,0.060158796608448,0.023127719759941],[0.0026017772033811,-0.0032604727894068,-0.027158575132489],[-0.016475453972816,0.034694988280535,-0.093211099505424]],[[0.088763013482094,-0.034791737794876,-0.03039145283401],[0.19202327728271,0.10757254809141,-0.0042561427690089],[0.21990916132927,-0.0059049618430436,0.045411761850119]],[[-0.093620114028454,-0.019930580630898,0.022481938824058],[-0.085726238787174,-0.033291440457106,0.12158045172691],[-0.035115230828524,-0.034394651651382,0.031099429354072]],[[0.0049105011858046,-0.035296771675348,0.12510795891285],[-0.022859275341034,0.0091740470379591,0.035389125347137],[0.14456854760647,-0.023334370926023,-0.025999389588833]],[[-0.0067200306802988,0.032529700547457,-0.013763027265668],[-0.090814240276814,0.01957930251956,-0.04345852509141],[0.035518262535334,-0.15668803453445,0.038044080138206]],[[0.017932979390025,0.036980431526899,0.048499625176191],[0.016955576837063,5.1167244237149e-06,0.016465995460749],[-0.05549443885684,-0.13254752755165,-0.0584906488657]],[[-0.06772868335247,0.062657833099365,0.15652750432491],[0.0078102299012244,0.025394586846232,0.097546450793743],[-0.081206865608692,0.15296997129917,0.096833370625973]],[[-0.060667298734188,-0.029744859784842,-0.054057791829109],[0.096900887787342,-0.051441058516502,-0.078881241381168],[0.030888622626662,0.037561256438494,-0.028166215866804]],[[-0.00012329743185546,-0.076930053532124,0.032863527536392],[-0.0057582017034292,0.020582130178809,0.037506893277168],[-0.046615738421679,-0.0095901023596525,0.021291900426149]],[[0.069449290633202,-0.075859293341637,-0.008016487583518],[-0.10201448947191,0.12354702502489,-0.16434082388878],[0.037790942937136,0.01567336730659,0.071388408541679]],[[0.038826890289783,-0.061682660132647,0.0094737475737929],[-0.0077626225538552,-0.034375872462988,-0.014605523087084],[0.030724734067917,0.017132980749011,0.020849967375398]],[[-0.24972984194756,0.12611016631126,0.057101018726826],[-0.086636953055859,-0.11564406007528,0.044436909258366],[0.014966931194067,-0.047106131911278,-0.019977532327175]],[[0.12180519104004,-0.030969275161624,0.06980811804533],[-0.12920068204403,-0.047823172062635,-0.0034358538687229],[0.086140163242817,-0.070113718509674,0.10873392224312]],[[-0.084857322275639,-0.17399927973747,0.056906301528215],[-0.11666651815176,-0.16859915852547,-0.010811286978424],[-0.16051390767097,-0.10948270559311,0.027665762230754]],[[0.013312264345586,0.15201751887798,-0.033577058464289],[-0.064817167818546,0.0085539240390062,-0.031756408512592],[0.0493523478508,0.012934728525579,0.045653034001589]],[[0.011548016220331,0.019556844606996,-0.011465192772448],[0.061119269579649,-0.076677896082401,-0.023394925519824],[-0.063388966023922,0.11306469887495,0.080752968788147]],[[-0.019185712561011,-0.029376864433289,-0.020977647975087],[-0.05168154835701,-0.018126673996449,-0.017408851534128],[0.069950737059116,-0.086060911417007,-0.051881439983845]],[[-0.074940286576748,0.092824898660183,-0.030562970787287],[-0.045671138912439,0.11914973706007,0.081011407077312],[0.0081438003107905,0.047083627432585,0.086353287100792]],[[0.049008443951607,0.015534999780357,0.0099488776177168],[0.039805170148611,0.031145973131061,-0.02664852514863],[0.017533356323838,0.02580401673913,0.059488896280527]],[[0.13947600126266,-0.03860941529274,-0.023229151964188],[-0.017539003863931,0.043199069797993,0.01603146083653],[-0.050159595906734,-0.020029967650771,0.077238872647285]],[[0.11470001190901,0.12468329071999,-0.038627628237009],[0.036485191434622,0.059569105505943,0.061273254454136],[0.020664794370532,-0.0040963711217046,-0.026811877265573]],[[0.13019506633282,0.12176992744207,-0.044468473643064],[0.034205984324217,0.035257440060377,-0.0087037244811654],[0.0022831971291453,0.092299818992615,-0.067836992442608]],[[0.12147628515959,-0.0062332102097571,0.0042989877983928],[-0.077318258583546,0.06628442555666,-0.026613416150212],[0.0075881127268076,0.0041119731031358,-0.0013883931096643]],[[-0.076995000243187,0.098534904420376,0.0061428574845195],[-0.10564134269953,-0.0085825426504016,0.01122699957341],[0.11113350093365,-0.0082857077941298,0.10686652362347]],[[-0.03478828817606,-0.056790217757225,0.013343706727028],[0.028439963236451,0.014357784762979,-0.030333813279867],[0.024281302466989,0.077481493353844,0.10065723955631]],[[0.076507531106472,0.017356760799885,-0.0079166116192937],[0.0083889374509454,-0.10008919984102,-0.009798115119338],[0.052581682801247,0.035489521920681,0.057830538600683]],[[0.023006254807115,-0.017029916867614,0.011819556355476],[0.049763929098845,0.087694525718689,0.033879667520523],[0.12407782673836,0.0014632277889177,-0.093079522252083]],[[-0.015341961756349,-0.02636831253767,-0.014858745038509],[-0.030363580211997,0.042786598205566,0.0059564393013716],[0.031823132187128,-0.10131139308214,0.049941550940275]],[[0.029280478134751,0.020504822954535,-0.11581706255674],[0.037119623273611,0.095316812396049,0.077614039182663],[0.050886284559965,0.017516892403364,-0.093983538448811]],[[0.028051789849997,-0.10901887714863,-0.034300290048122],[0.033205702900887,-0.049962051212788,-0.0028387194033712],[-0.010474624112248,-0.042497605085373,-0.0023191871587187]],[[-0.069650262594223,0.05608045309782,0.040406655520201],[0.0034243348054588,0.027308724820614,-0.079029463231564],[-0.013787468895316,0.087766528129578,0.00053554063197225]],[[0.062114551663399,0.063634999096394,0.048827659338713],[-0.011973973363638,-0.039538405835629,0.064112178981304],[-0.086562737822533,0.085711650550365,-0.08205272257328]],[[-0.048833131790161,-0.017374077811837,0.084747537970543],[-0.021090019494295,0.053387336432934,0.018838375806808],[-0.1308121830225,-0.17320288717747,-0.0002897790109273]],[[0.11554843187332,0.052172966301441,0.023761393502355],[0.027690770104527,0.13564413785934,0.10506313294172],[0.048912540078163,0.056330848485231,-0.11611068993807]],[[0.0926863104105,-0.023270156234503,0.073916047811508],[0.017286725342274,0.010192569345236,0.05520137399435],[-0.076916240155697,-0.05464905500412,0.10953350365162]],[[0.067605577409267,-0.029189016669989,-0.03657303377986],[0.10248237848282,-0.08501960337162,0.067797161638737],[0.048099089413881,0.00020535768999252,-0.0085096219554543]],[[-0.18873633444309,0.0090644424781203,-0.051115602254868],[-0.11828104406595,-0.1082165017724,-0.029168235138059],[0.045532766729593,0.08107054233551,0.037480641156435]],[[-0.088923908770084,-0.044692069292068,0.021257610991597],[-0.039872515946627,-0.0088278409093618,0.073197759687901],[-0.062248233705759,0.036680277436972,0.051746983081102]],[[-0.041220646351576,-0.13177365064621,-0.039038825780153],[-0.074154034256935,-0.10661317408085,-0.040172901004553],[-0.065074756741524,-0.048688065260649,0.048820205032825]],[[0.10194998979568,-0.0010279105044901,-0.0015996667789295],[0.018116990104318,-0.009686129167676,-0.024155460298061],[-0.10366966575384,0.015923179686069,0.043269563466311]],[[-0.0015047404449433,-0.0013891039416194,-0.053691606968641],[-0.038386292755604,0.056922990828753,-0.012832991778851],[-0.002596240490675,0.047030288726091,0.0059731444343925]],[[-0.03038758225739,-0.023272305727005,0.082297846674919],[-0.062769502401352,-0.064020775258541,0.019608037546277],[0.030318742617965,0.12456254661083,0.09265099465847]],[[-0.060990933328867,-0.0023423808161169,-0.014866785146296],[-0.068753145635128,-0.062623016536236,0.054495580494404],[-0.099487952888012,-0.05795419216156,0.10663129389286]],[[0.017361240461469,-0.0083519220352173,-0.020876549184322],[0.0036245540250093,-0.066178016364574,0.022218653932214],[-0.12067231535912,-0.094516046345234,0.0092083159834146]],[[-0.044345181435347,0.057732909917831,0.047878231853247],[0.10455100238323,-0.049073059111834,0.038385264575481],[0.10372713208199,0.057376354932785,-0.030048837885261]],[[-0.044911954551935,0.051388718187809,0.039425082504749],[-0.020309530198574,0.039937678724527,0.012589521706104],[-0.038440484553576,-0.019687907770276,0.026444768533111]],[[-0.0614571608603,-0.01104277279228,-0.10251417756081],[0.033680360764265,0.056819599121809,0.023323403671384],[-0.049902897328138,-0.0050494745373726,-0.025469265878201]],[[0.1394948810339,0.015058443881571,0.0035751031246036],[-0.017751008272171,-0.063994213938713,0.007975285872817],[-0.085625357925892,-0.039677459746599,0.09038084000349]],[[-0.098483338952065,-0.011292529292405,-0.11267863959074],[0.0096808420494199,-0.038186147809029,0.12711153924465],[-0.096438385546207,0.0050294063985348,0.080997288227081]],[[-0.058861140161753,0.056521978229284,0.040380567312241],[-0.036122001707554,0.05593029409647,-0.041895046830177],[-0.074991270899773,0.015774173662066,0.029651384800673]],[[-0.075711891055107,-0.026505207642913,-0.016793329268694],[0.1131874397397,0.051027465611696,-0.014966815710068],[0.055216953158379,0.053225431591272,-0.081429146230221]],[[0.036897238343954,0.044325906783342,-0.010006781667471],[0.020771536976099,-0.024388795718551,-0.042984787374735],[0.040089748799801,-0.037766799330711,-0.12417781352997]],[[0.024360159412026,0.036435186862946,-0.00070594192948192],[-0.054546415805817,-0.010085216723382,0.084379412233829],[-0.015072653070092,0.067906506359577,0.027214674279094]],[[0.021362069994211,0.074841916561127,-0.026495607569814],[0.0075525166466832,0.078613512217999,0.076581709086895],[-0.088025264441967,-0.0079497527331114,0.051833186298609]],[[0.0077624288387597,-0.067393198609352,-0.0035228368360549],[-0.02128435857594,-0.019988873973489,-0.0074046500958502],[0.046351194381714,-0.014425315894186,0.055139347910881]],[[0.048939507454634,0.016805309802294,0.042664803564548],[-0.031865317374468,-0.0017847436247393,0.039747849106789],[-0.02280636318028,-0.025494901463389,0.019559260457754]],[[0.00038615230005234,-0.000871712109074,0.024691708385944],[-0.053682290017605,0.039141390472651,-0.11527922749519],[-0.04780549928546,0.080302312970161,-0.036061685532331]],[[-0.074259579181671,-0.10695837438107,0.048836223781109],[-0.080725312232971,-0.073807097971439,0.10303239524364],[-0.11036712676287,0.14926098287106,0.12508299946785]],[[0.040943969041109,0.017016865313053,0.018289336934686],[0.047994751483202,-0.029300827533007,-0.047364983707666],[-0.00095333368517458,0.0057941740378737,-0.091328456997871]],[[0.11607340723276,-0.03208664059639,-0.047767098993063],[0.16620875895023,0.019398065283895,0.022515058517456],[0.087053500115871,-0.034701872617006,0.039339195936918]],[[-0.0082293376326561,-0.10316559672356,0.031658861786127],[-0.020047312602401,0.038127142935991,-0.0061753815971315],[0.0068575870245695,0.0020749215036631,-0.0057440884411335]],[[-0.014741796068847,0.066188313066959,0.04336054623127],[0.057652775198221,0.043376173824072,-0.062361411750317],[-0.00053571059834212,0.036099784076214,-0.086530052125454]],[[-0.016550574451685,0.053833156824112,-0.078101873397827],[-0.075149513781071,0.003944861702621,-0.022170668467879],[-0.086643405258656,0.073075227439404,0.0084414426237345]],[[0.019949501380324,-0.042379830032587,0.066426895558834],[0.1108571216464,-0.0027428651228547,-0.083064749836922],[-0.0060508865863085,0.10283384472132,-0.022635824978352]],[[-0.10008892416954,-0.018658455461264,-0.0089176893234253],[-0.040430553257465,0.042710080742836,-0.012071495875716],[0.033508516848087,0.11784741282463,0.14205828309059]],[[0.10517904162407,-0.024339908733964,0.023694468662143],[-0.12660393118858,0.027667310088873,-0.04745489358902],[0.10856798291206,-0.028295481577516,-0.056087300181389]],[[-0.16848428547382,0.075610876083374,-0.10552076250315],[0.083938330411911,-0.144929215312,-0.053466200828552],[-0.058787681162357,0.057469677180052,0.03844340890646]],[[-0.0024429680779576,0.016002865508199,-0.0024630210828036],[-0.089230433106422,0.051929883658886,0.11889124661684],[-0.014335314743221,-0.0015895725227892,-0.030113806948066]],[[-0.023219967260957,-0.036170680075884,-0.12366976588964],[-0.15249203145504,-0.0084849828854203,-0.056575555354357],[0.075983010232449,0.079710282385349,0.076964758336544]],[[-0.12555432319641,-0.15356995165348,-0.091535344719887],[-0.16928921639919,-0.087144255638123,-0.15517073869705],[-0.096942074596882,-0.057367149740458,-0.1600307226181]],[[-0.039220433682203,-0.093147717416286,0.068247243762016],[-0.00094139360589907,-0.072176069021225,-0.01779548637569],[-0.073899500072002,-0.054757371544838,0.041237946599722]],[[-0.044088035821915,0.04352955520153,0.034384351223707],[-0.052457921206951,0.03321784734726,-0.021656047552824],[-0.0044340630993247,0.02464765496552,-0.034336820244789]],[[-0.040711462497711,0.11059339344501,0.0025359138380736],[0.044338051229715,-0.015580874867737,-0.071744680404663],[0.07518182694912,-0.016331505030394,0.010916376486421]],[[0.045787006616592,-0.082846648991108,0.0463623739779],[-0.038017261773348,-0.019842103123665,-0.031186558306217],[-0.014423516578972,-0.056177232414484,-0.0086989291012287]],[[-0.13646775484085,0.081634499132633,0.019579790532589],[-0.0096754282712936,0.079723969101906,0.041922610253096],[-0.0016113929450512,0.018133709207177,-0.010590682737529]],[[0.040114067494869,0.052150148898363,-0.010172300972044],[0.065880589187145,-0.07527782022953,-0.058308936655521],[0.038128320127726,-0.08289061486721,-0.041211266070604]],[[0.035494722425938,0.001667121425271,0.042690888047218],[-0.020118521526456,0.062735885381699,-0.014086573384702],[6.9175475800876e-05,0.013811467215419,0.01953431405127]],[[-0.0028219057712704,0.10108993202448,-0.051350306719542],[-0.028028145432472,0.02561735548079,0.013791684992611],[-0.030112002044916,-0.071530804038048,-0.00056691275676712]],[[0.054712507873774,-0.0053858542814851,-0.027778876945376],[-0.048929627984762,0.030983325093985,0.065965056419373],[0.076856292784214,0.05746215954423,0.088063731789589]],[[0.064319610595703,0.0048411637544632,-0.053591802716255],[0.015494532883167,-0.07997403293848,-0.0023847057018429],[0.033570729196072,-0.0065930713899434,-0.052747126668692]],[[-0.027564812451601,0.0015780765097588,-0.023819979280233],[-0.078426219522953,-0.12610603868961,-0.025227773934603],[0.0058143902570009,0.078246720135212,0.0297273080796]],[[-0.046028427779675,0.077445067465305,0.091013923287392],[-0.0059082452207804,-0.0791871920228,0.063026748597622],[0.006460530217737,0.044505834579468,0.011760542169213]],[[-0.064205460250378,-0.035759147256613,-0.076865881681442],[-0.00048766125109978,-0.06761172413826,0.0074388673529029],[-0.056446749716997,-0.1095105111599,-0.033199567347765]],[[0.035908635705709,0.054212085902691,0.1612192094326],[0.01874378696084,-0.053469359874725,0.015313389711082],[-0.034943737089634,-0.026069711893797,-0.057705342769623]],[[-0.014469253830612,0.020009120926261,-0.0022388615179807],[-0.036791998893023,0.06651558727026,-0.030386220663786],[0.01331964880228,-0.028892816975713,0.090802662074566]],[[-0.030271178111434,-0.029306177049875,-0.024894397705793],[-0.12554509937763,-0.026054779067636,0.0070161274634302],[-0.091108419001102,0.052460860460997,0.017088428139687]],[[0.071845889091492,0.029050063341856,-0.024279993027449],[-0.076082929968834,-0.036493454128504,-0.072941482067108],[0.10634552687407,0.031403936445713,0.0070852334611118]],[[0.024988384917378,-0.029146710410714,-0.012463732622564],[0.04816010594368,0.051336221396923,0.018374565988779],[0.040035475045443,0.05560290440917,0.11095746606588]],[[0.032614402472973,-0.054253093898296,-0.030435603111982],[-0.025898160412908,-0.19719050824642,-0.032759059220552],[-0.35852777957916,-0.3126021027565,-0.12592758238316]],[[0.08538718521595,-0.034737836569548,-0.085854798555374],[0.031626023352146,0.073527812957764,-0.0092101190239191],[0.0190619379282,-0.060309939086437,-0.023776080459356]],[[0.11168751865625,-0.010963188484311,0.0067225252278149],[-0.03247119858861,0.071415074169636,0.0208182875067],[0.060310792177916,0.038786917924881,0.042939424514771]],[[-0.084680452942848,-0.023471435531974,0.020516121760011],[0.026049135252833,0.051252387464046,-0.040807846933603],[-0.08477096259594,-0.051287677139044,0.074183903634548]],[[-0.044083926826715,-0.10317169129848,-0.070505931973457],[0.047125492244959,-0.083269856870174,0.06969041377306],[0.032410573214293,-0.057673759758472,0.0086445119231939]],[[0.027356719598174,0.010960566811264,0.10700535029173],[-0.0072240312583745,0.003931081853807,0.085881166160107],[-0.013127455487847,0.02166698500514,-0.0075172861106694]],[[0.073042951524258,-0.087155885994434,0.0656758248806],[-0.0016706021269783,-0.031331971287727,-0.031918682157993],[-0.092829562723637,0.049183946102858,0.0036958805285394]]],[[[-0.0055656684562564,0.069974735379219,-0.012722980231047],[0.14857843518257,-0.14728011190891,-0.034084986895323],[0.088647417724133,0.092600800096989,0.045427117496729]],[[-0.0099073518067598,0.067685969173908,-0.043510150164366],[-0.060039281845093,-0.24139833450317,-0.21269926428795],[0.088393934071064,0.04549228772521,-0.034736059606075]],[[-0.044610965996981,-0.03660948574543,-0.061619035899639],[-0.15535315871239,0.0033163791522384,0.051546648144722],[0.12765251100063,0.074729204177856,-0.040890198200941]],[[0.013746787793934,0.057977497577667,0.097634248435497],[0.025529945269227,0.075434289872646,0.021986866369843],[0.0033860967960209,-0.014513733796775,0.090092286467552]],[[0.03584561124444,-0.06046449393034,-0.040250301361084],[0.00302964146249,-0.041298817843199,0.074504144489765],[0.34958079457283,-0.073527410626411,0.031008133664727]],[[-0.0049969130195677,0.048534870147705,-0.14502374827862],[0.014149568043649,0.039678413420916,0.079436607658863],[-0.016850693151355,-0.15430065989494,0.034825883805752]],[[-0.10146971046925,-0.04877906665206,0.086836829781532],[0.019807290285826,0.0081819463521242,-0.089086785912514],[0.12541580200195,-0.056873254477978,0.13596928119659]],[[0.074024029076099,-0.05515456572175,0.066478341817856],[0.078247487545013,-0.065973617136478,0.10697671771049],[-0.15679715573788,0.054046176373959,0.046805936843157]],[[-0.14616161584854,-0.12250535190105,0.2493661493063],[-0.034942865371704,-0.014889037236571,8.4884472016711e-05],[-0.079290851950645,0.14472499489784,0.21971854567528]],[[0.0072347223758698,-0.026806557551026,-0.096739433705807],[-0.054518532007933,0.037719644606113,-0.039020109921694],[0.058464121073484,0.041063271462917,0.029427696019411]],[[0.059669781476259,-0.019317355006933,0.14798575639725],[0.0842419937253,-0.011875523254275,0.10739486664534],[-0.062104888260365,-0.095579899847507,0.059247594326735]],[[0.058693755418062,-0.11727620661259,0.20501333475113],[-0.084798447787762,-0.052582494914532,-0.057791393250227],[-0.18644361197948,0.0001070951402653,-0.11836175620556]],[[-0.082620605826378,0.071251906454563,0.011715142987669],[-0.15264429152012,0.073017574846745,0.041246797889471],[0.037714254111052,-0.013109066523612,0.17731913924217]],[[-0.072322435677052,-0.058307848870754,0.029087752103806],[0.10555244237185,0.14087815582752,-0.030826400965452],[0.19842906296253,-0.13794068992138,-0.24062117934227]],[[0.0094058811664581,0.072413243353367,-0.021166687831283],[0.064010336995125,0.0038307525683194,-0.079752996563911],[-0.024475706741214,-0.1382865011692,-0.0082703623920679]],[[-0.053085081279278,0.062727972865105,0.023921899497509],[-0.030122455209494,-0.092740446329117,-0.015549297444522],[-0.072048082947731,-0.032270412892103,-0.026688922196627]],[[-0.046021431684494,-0.012012235820293,0.021849248558283],[-0.021087739616632,0.091713011264801,-0.094779931008816],[-0.0080131329596043,-0.047121960669756,0.11500834673643]],[[0.031966667622328,-0.034531876444817,0.01754086650908],[-0.056578539311886,0.09573757648468,-0.091336205601692],[0.0016328467754647,0.03889949247241,-0.036654740571976]],[[-0.058092813938856,0.0073739555664361,0.0017576027894393],[-0.07425083220005,-0.060198914259672,-0.054235119372606],[-0.096052676439285,-0.016773816198111,-0.09229202568531]],[[-0.057689171284437,-0.066426500678062,0.014182019978762],[-0.093997001647949,0.043131936341524,-0.11305917799473],[-0.028666561469436,0.12103873491287,-0.10882807523012]],[[-0.11994181573391,-0.0053031267598271,0.080928012728691],[0.040238309651613,-0.12458968162537,-0.0049252761527896],[-0.20444066822529,0.045467048883438,0.071038223803043]],[[0.079147584736347,-0.021946910768747,0.019188981503248],[0.080336041748524,0.029637712985277,0.081255167722702],[-0.050880551338196,0.0726198554039,-0.030659046024084]],[[0.19292958080769,0.059044055640697,0.16437934339046],[-0.13044404983521,0.016573829576373,0.0038595912046731],[-0.19028994441032,-0.11293682456017,-0.043036192655563]],[[0.040716379880905,-0.052734721451998,-0.021674470975995],[0.32449322938919,-0.082744292914867,-0.053114790469408],[0.056297548115253,-0.070984832942486,0.062281329184771]],[[-0.035748790949583,0.024481613188982,-0.04178212210536],[0.082462400197983,0.01150721963495,-0.071011021733284],[-0.028779473155737,-0.031498584896326,-0.063968122005463]],[[0.039766453206539,0.064325392246246,0.11576578021049],[0.1072119474411,-0.077578976750374,-0.011735539883375],[0.023750439286232,-0.051294699311256,0.11412619799376]],[[-0.065814472734928,0.14114315807819,0.085270270705223],[0.053861990571022,-0.022617781534791,-0.14500966668129],[-0.01088391058147,0.044881664216518,0.081410817801952]],[[0.096706099808216,-0.074109017848969,0.078907586634159],[-0.20061798393726,-0.025520125404,0.064439445734024],[0.033294826745987,-0.096417233347893,0.0035174821969122]],[[-0.0058308597654104,-0.071735121309757,0.12104748934507],[0.055901169776917,0.03970068693161,-0.0038473550230265],[-0.12784397602081,-0.0094588436186314,-0.028754707425833]],[[0.085188060998917,0.095663748681545,-0.021028928458691],[-0.18115611374378,-0.14046186208725,0.070372484624386],[0.039958454668522,-0.026816671714187,-0.15807582437992]],[[-0.049414619803429,-0.014876769855618,0.024985577911139],[-0.040236938744783,-0.059231761842966,0.097720198333263],[0.14332078397274,0.061052959412336,-0.0030444536823779]],[[-0.046332739293575,0.18150947988033,0.014138960279524],[0.072222083806992,0.019375383853912,-0.040259577333927],[-0.17502655088902,-0.028796575963497,-0.072006031870842]],[[-0.21008731424809,0.12873947620392,-0.20915293693542],[-0.17740203440189,0.2465113401413,0.065246276557446],[0.041956316679716,-0.14102007448673,0.028144773095846]],[[-0.087711490690708,0.072309151291847,-0.016121830791235],[0.0010409291135147,-0.054691635072231,-0.0028282350394875],[0.030994514003396,0.033634476363659,-0.053364541381598]],[[-0.023571712896228,-0.013147524558008,0.10884906351566],[-0.04474176466465,-0.10986520349979,-0.053396746516228],[-0.039001002907753,0.040890075266361,0.15823864936829]],[[-0.058979149907827,-0.015902850776911,0.09211066365242],[0.059726264327765,-0.10928349196911,-0.055105980485678],[0.045802302658558,-0.14839078485966,0.060173217207193]],[[0.050041798502207,0.098656751215458,0.1114389076829],[0.081718847155571,0.22399100661278,-0.026764007285237],[0.028840942308307,-0.015078987926245,-0.22584736347198]],[[0.017344489693642,0.075915664434433,-0.033759482204914],[-0.0045686438679695,-0.013586523942649,-0.039473477751017],[-0.00088982394663617,0.021871689707041,-0.088656462728977]],[[0.052302211523056,-0.098167553544044,0.088364578783512],[-0.1647290289402,-0.041880082339048,-0.067996218800545],[0.07518558204174,0.20006470382214,-0.059842854738235]],[[-0.066692993044853,0.12953412532806,0.071160443127155],[0.11059965193272,0.0078434888273478,0.002259842120111],[-0.044367756694555,-0.014029679819942,0.050740338861942]],[[0.034816399216652,-0.0036020111292601,0.17564660310745],[-0.062789313495159,0.074302986264229,0.027719955891371],[-0.037961792200804,0.022187570109963,-0.18781080842018]],[[0.061476796865463,-0.003256163559854,0.05402097851038],[-0.010634063743055,-0.10025556385517,0.045785747468472],[0.039065018296242,-0.020843388512731,-0.023726284503937]],[[-0.043568000197411,0.015903966501355,0.094127684831619],[0.024668594822288,0.0349245890975,0.027312897145748],[0.11355089396238,0.093296118080616,0.11450295895338]],[[-0.088366113603115,-0.047433350235224,-0.037163555622101],[0.0098922681063414,0.076541818678379,0.054793298244476],[-0.049591809511185,0.020595237612724,-0.050055898725986]],[[-0.057196594774723,-0.11347488313913,-0.0067637311294675],[0.030405201017857,0.048220936208963,-0.082194544374943],[0.19454082846642,-0.016310287639499,0.079441666603088]],[[0.021867621690035,-0.032527569681406,0.10892412811518],[-0.0041461912915111,0.023932697251439,-0.029297119006515],[-0.017376761883497,0.0011266738874838,0.062639012932777]],[[-0.013736013323069,0.02220482006669,-0.030287314206362],[0.050014950335026,-0.068777598440647,-0.027684291824698],[-0.0059979031793773,0.028749471530318,-0.018081985414028]],[[-0.24658082425594,0.071465820074081,0.0091806929558516],[0.073686704039574,-0.083038285374641,-0.26646581292152],[0.0073796543292701,-0.068781636655331,0.11813642829657]],[[0.036060329526663,-0.054399404674768,-0.10222816467285],[-0.0043984157964587,-0.078395821154118,-0.097513638436794],[0.18206560611725,0.0012852905783802,0.03934707865119]],[[0.066852882504463,0.074020236730576,0.003656406654045],[-0.10874252766371,-0.01216012891382,-0.032124724239111],[0.13483153283596,-0.0016657074447721,-0.10614348948002]],[[-0.10227602720261,-0.06987202167511,-0.17454728484154],[0.035985860973597,-0.048919212073088,-0.036692515015602],[0.060001898556948,-0.084041073918343,0.041170559823513]],[[0.13775768876076,-0.11233606934547,0.20535670220852],[-0.037122070789337,0.050225183367729,-0.022390091791749],[0.032549329102039,-0.027282707393169,-0.10908866673708]],[[-0.079042762517929,-0.052768617868423,-0.0085852229967713],[0.017532939091325,-0.048792749643326,0.076682031154633],[-0.14777064323425,-0.015047278255224,-0.052836813032627]],[[-0.044707946479321,0.064011707901955,0.1440307945013],[0.0013650285545737,-0.036618702113628,-0.007732599042356],[0.057701606303453,0.028085306286812,0.028315994888544]],[[0.030160702764988,0.043973583728075,-0.061666984111071],[-0.0034133389126509,-0.0066226292401552,-0.12956061959267],[-0.071395002305508,-0.076125860214233,-0.024784218519926]],[[0.076029844582081,0.019319649785757,-0.21269997954369],[-0.093586206436157,-0.14978435635567,0.28976571559906],[0.068784534931183,-0.12250124663115,0.067068167030811]],[[-0.17935016751289,0.035994298756123,0.035890713334084],[-0.16282753646374,0.13985332846642,0.086475543677807],[-0.053302481770515,-0.031717799603939,0.052969604730606]],[[0.14944517612457,0.027520649135113,-0.021231884136796],[0.041000463068485,-0.12706838548183,-0.24092522263527],[-0.029752068221569,-0.07083523273468,0.24368923902512]],[[-0.036176823079586,0.23679430782795,-0.072109878063202],[-0.034926313906908,-0.17094026505947,-0.31341052055359],[0.17646898329258,-0.026294963434339,0.014069663360715]],[[-0.10924570262432,0.15265516936779,-0.11640572547913],[-0.14217658340931,0.011288463138044,0.025617619976401],[-0.10442626476288,0.09047881513834,-0.086474500596523]],[[0.11583901196718,0.019561948254704,-0.10384520888329],[0.13530659675598,-0.17179791629314,-0.098512150347233],[-0.043624211102724,0.11197111010551,-0.077219180762768]],[[0.0021763774566352,-0.0039046360179782,-0.22061449289322],[-0.03709764778614,0.03809954598546,-0.080749005079269],[0.013131566345692,0.076489180326462,0.038908898830414]],[[0.036855444312096,-0.16355961561203,-0.048092287033796],[-0.011074095964432,0.12378371506929,-0.079716734588146],[-0.071721404790878,-0.067181378602982,-0.028458476066589]],[[-0.025894353166223,0.092772275209427,0.05355104804039],[-0.071552366018295,-0.076434664428234,0.092632666230202],[-0.08772249519825,-0.040278147906065,-0.25037962198257]],[[0.11140479147434,-0.016634821891785,-0.092694886028767],[-0.023386167362332,-0.11714947223663,-0.00024931368534453],[-0.086591966450214,-0.091770425438881,-0.12063132971525]],[[-0.038675609976053,-0.0045859185047448,0.064570508897305],[0.11556846648455,0.012522763572633,0.030643053352833],[0.067818015813828,0.08740645647049,0.04561934620142]],[[-0.13558883965015,0.0029451698064804,0.041390631347895],[-0.021189579740167,0.047202911227942,0.22300611436367],[0.094655185937881,-0.023052871227264,-0.010126924142241]],[[-0.12635536491871,-0.11081083118916,-0.088301002979279],[0.049020703881979,-0.045644525438547,-0.094964601099491],[0.13008780777454,-0.11075498908758,0.010070357471704]],[[0.034702189266682,-0.051676020026207,-0.0086935386061668],[-0.046498473733664,-0.033924087882042,0.019822411239147],[0.066185653209686,0.071281529963017,0.036028239876032]],[[-0.056927938014269,0.081413067877293,-0.043197460472584],[0.049844354391098,-0.051854733377695,0.082221299409866],[0.073012612760067,0.074630469083786,0.10646153986454]],[[-0.10042000561953,-0.0049702571704984,-0.23889108002186],[0.080356299877167,0.098885886371136,-0.13114604353905],[-0.14889179170132,-0.062571696937084,0.077927708625793]],[[-0.035458464175463,-0.078653730452061,-0.092021413147449],[-0.069224260747433,0.074717625975609,0.038872677832842],[0.17903779447079,-0.097344920039177,-0.12159502506256]],[[-0.29961520433426,0.087432250380516,-0.044477444142103],[0.010803829878569,-0.07840596139431,-0.0033900081180036],[-0.013403573073447,0.085751906037331,0.034940302371979]],[[0.020030384883285,0.17719595134258,-0.0020066315773875],[-0.21522589027882,0.0029921005479991,0.0089844120666385],[-0.19104398787022,0.10574164241552,-0.0053079933859408]],[[0.17242974042892,0.13289166986942,0.10336544364691],[-0.05906168743968,-0.078726433217525,0.065816789865494],[0.018958898261189,-0.0060926359146833,0.025908380746841]],[[0.066973000764847,-0.055820699781179,0.034653093665838],[-0.15375711023808,-0.045565836131573,0.14532555639744],[0.13058419525623,-0.01862046122551,-0.091675400733948]],[[-0.1912457793951,0.029972851276398,0.036870751529932],[-0.10507047176361,0.16909436881542,0.002892651129514],[-0.12238942831755,0.045217625796795,-0.035833902657032]],[[0.07181204855442,-0.0074732853099704,0.063270807266235],[0.075919836759567,-0.017948007211089,0.18302856385708],[0.089488781988621,0.12255331873894,0.10658038407564]],[[-0.022295691072941,-0.028356453403831,0.0012954098638147],[-0.069034166634083,-0.0047962642274797,0.042392570525408],[-0.085746437311172,-0.069146424531937,0.013594602234662]],[[0.082059748470783,-0.12240643054247,-0.25310632586479],[-0.0054256455041468,0.020683128386736,0.061539236456156],[-0.042473111301661,-0.0078487703576684,-0.048853620886803]],[[-0.11522581428289,0.16795875132084,0.065925501286983],[-0.012908354401588,0.0093887057155371,0.027168359607458],[0.080366335809231,-0.10198631882668,-0.015718836337328]],[[0.025322278961539,0.022605760022998,0.058838631957769],[-0.06859827786684,-0.038398277014494,-0.070814423263073],[-0.015113006345928,-0.048789724707603,-0.018256887793541]],[[0.15846505761147,-0.080095089972019,-0.075785227119923],[-0.054769549518824,-0.059586584568024,0.057709626853466],[0.11744469404221,-0.026088550686836,-0.055582277476788]],[[0.083672426640987,0.048306725919247,0.0091685829684138],[0.0032688160426915,-0.068194031715393,-0.10901807248592],[0.021311914548278,-0.032188896089792,-0.085264608263969]],[[-0.090576641261578,-0.061019781976938,-0.044704750180244],[0.04236213862896,0.21940749883652,-0.096758686006069],[0.15265725553036,0.09215272963047,-0.22017884254456]],[[-0.0025302597787231,-0.068641021847725,0.012568225152791],[0.068911507725716,-0.082383498549461,-0.038183085620403],[-0.041812155395746,0.18075883388519,-0.081785053014755]],[[0.06925155967474,-0.0012149211252108,-0.15067887306213],[0.11468650400639,0.03446327522397,0.12297637760639],[0.12366233021021,0.077560499310493,0.010830819606781]],[[-0.045597538352013,-0.10520321875811,-0.012677377089858],[-0.00090986146824434,-0.054687980562449,0.0695980489254],[0.12175311893225,0.024976307526231,0.003436274593696]],[[0.081561580300331,0.012420743703842,0.079139612615108],[0.081179916858673,0.039156503975391,-0.034295376390219],[0.025713754817843,-0.0086990501731634,0.0086583280935884]],[[-0.068103894591331,0.075888976454735,0.12712976336479],[-0.085171341896057,-0.035059228539467,-0.01785777695477],[-0.13057391345501,-0.012386314570904,-0.11727245897055]],[[-0.035404529422522,0.11557037383318,0.14502619206905],[-0.052564989775419,-0.023153726011515,-0.017592130228877],[-0.029043819755316,-0.096587114036083,-0.16212965548038]],[[0.14306640625,0.243542060256,0.16155664622784],[-0.13925340771675,-0.15681591629982,0.080581404268742],[0.039815042167902,-0.05945198610425,-0.042584281414747]],[[-0.0759496986866,-0.016723599284887,-0.0069912578910589],[0.091480918228626,-0.041828595101833,0.1530422270298],[0.062031790614128,0.010951329022646,-0.024911077693105]],[[0.044932171702385,-0.031321831047535,-0.049375306814909],[0.073624461889267,0.0013972442829981,0.024775924161077],[0.030177250504494,-0.047389324754477,-0.0043666642159224]],[[0.047045923769474,-0.043957740068436,0.090854965150356],[-0.31937232613564,-0.43838754296303,-0.05893087387085],[-0.11779320240021,0.14064620435238,-0.060110688209534]],[[0.09632895886898,-0.021433921530843,0.033762767910957],[-0.038284912705421,-0.10049720108509,-0.12472275644541],[0.090882547199726,-0.11498892307281,0.054685603827238]],[[-0.019459441304207,-0.083149038255215,-0.023269060999155],[-0.055086474865675,-0.23485107719898,0.1335986405611],[0.079454883933067,-0.13466612994671,0.022757617756724]],[[0.044343840330839,0.046469755470753,-0.024082494899631],[0.043592691421509,0.19860672950745,-0.049887556582689],[0.016075629740953,-0.00014184019528329,0.099891468882561]],[[-0.041415460407734,0.33720484375954,-0.094700135290623],[-0.022727118805051,-0.060022514313459,-0.14204195141792],[-0.0069182221777737,-0.01725928671658,-0.24424023926258]],[[-0.061320275068283,0.10258765518665,0.070150226354599],[-0.041443094611168,0.034937281161547,-0.010848146863282],[-0.058987867087126,-0.11929860711098,0.10866801440716]],[[0.029038362205029,-0.11434905230999,-0.087700054049492],[-0.13080415129662,0.018097944557667,-0.092165306210518],[0.060393635183573,-0.045587960630655,0.0043218550272286]],[[0.015864614397287,0.10667674988508,0.067919343709946],[-0.10539914667606,-0.027223659679294,0.049254536628723],[0.006197274196893,0.14065413177013,0.15075771510601]],[[0.064932577311993,0.078962780535221,-0.086727894842625],[-0.040842022746801,-0.10270995646715,-0.067031368613243],[0.057001352310181,-0.20821440219879,0.21502740681171]],[[0.15491084754467,-0.0051399106159806,0.14762723445892],[0.0014512450434268,-0.040651697665453,-0.23154245316982],[0.055629145354033,0.046690203249454,-0.065887324512005]],[[-0.041361715644598,-0.070770382881165,0.055604610592127],[0.033838704228401,0.0006947664078325,0.028813673183322],[0.036087419837713,0.066880434751511,0.012523399665952]],[[-0.14186857640743,-0.024161139503121,-0.14192922413349],[0.0026355909649283,-0.12057345360518,-0.046022996306419],[-0.0013066080864519,0.024613885208964,-0.011505470611155]],[[0.032134033739567,-0.010644629597664,0.12540474534035],[-0.090796299278736,0.029649220407009,-0.022393567487597],[-0.10348305851221,-0.019388010725379,0.27209007740021]],[[-0.056604579091072,-0.094539858400822,-0.038563840091228],[0.024120673537254,-0.022089701145887,-0.029924102127552],[0.0079882740974426,-0.11580872535706,0.097076907753944]],[[-0.049587357789278,-0.094519540667534,0.22974774241447],[0.066294506192207,-0.11694394052029,-0.11686623841524],[-0.095359869301319,-0.01216634362936,0.1104134246707]],[[-0.00023220625007525,0.031088840216398,-0.091420963406563],[0.13304647803307,0.044852137565613,0.0153191043064],[-0.010635221377015,0.028391040861607,-0.13806296885014]],[[0.017733411863446,-0.04047142714262,0.06675973534584],[-0.013786039315164,0.03888339176774,-0.025705324485898],[-0.02627625502646,0.062973149120808,-0.061020892113447]],[[-0.1122809201479,-0.1868102401495,-0.004666589666158],[0.083983667194843,-0.085862144827843,0.056268520653248],[-0.081019133329391,-0.045732386410236,0.10212931036949]],[[-0.13406851887703,-0.10255301743746,0.053831532597542],[-0.17684234678745,0.021082429215312,-0.0034497755113989],[-0.072540789842606,0.0400753878057,0.16981044411659]],[[-0.068960122764111,0.10284142941236,0.076758585870266],[0.0041834893636405,-0.09938433021307,0.038784883916378],[-0.15131393074989,0.097505897283554,-0.092751048505306]],[[-0.012365030124784,-0.037477388978004,-0.12540961802006],[-0.077117845416069,0.038446728140116,0.10509189218283],[0.021571561694145,0.099284522235394,-0.041041940450668]],[[0.029513388872147,-0.064987979829311,-0.043735906481743],[-0.043836582452059,-0.043806921690702,0.1070117354393],[0.010830475948751,-0.12410985678434,-0.14273442327976]],[[-0.060954630374908,0.035989094525576,-0.055010017007589],[-0.070909969508648,-0.010115938261151,0.28222864866257],[0.045641146600246,-0.051780890673399,0.015873933210969]],[[-0.024597156792879,0.11367968469858,-0.17915987968445],[0.082169525325298,-0.097003370523453,0.015965402126312],[0.15408048033714,-0.027361910790205,-0.08367145806551]],[[-0.10423810780048,-0.025530951097608,-0.1209924146533],[-0.027136707678437,-0.10738924890757,0.064494766294956],[0.13857451081276,0.079056866466999,-0.12420073151588]],[[-0.10731177031994,-0.0082615250721574,-0.15992110967636],[-0.040564730763435,-0.038402780890465,0.0071246447041631],[0.073697194457054,-0.030957274138927,-0.045090228319168]],[[-0.01170402020216,0.12487532198429,-0.10524981468916],[0.06523572653532,-0.10356958210468,0.0061900238506496],[0.077559061348438,0.10327149927616,0.012174936942756]],[[0.035698644816875,0.081304877996445,-0.014690252020955],[-0.10044118762016,-0.028065973892808,-0.061801828444004],[-0.1679829955101,0.07070667296648,-0.025047026574612]],[[0.010810630396008,-0.089144334197044,-0.051849871873856],[-0.08461195230484,-0.10813707113266,-0.20773865282536],[-0.096353009343147,-0.14299203455448,-0.045414622873068]],[[-0.080912880599499,0.039659697562456,-0.028255475685],[-0.017771305516362,-0.18012894690037,-0.17649240791798],[0.061114132404327,0.12627711892128,0.030708586797118]],[[0.0077177621424198,-0.15458980202675,0.084300741553307],[0.076837457716465,-0.024309914559126,-0.0070427060127258],[0.073521293699741,0.044666033238173,-0.041654493659735]],[[0.0084206517785788,0.016284145414829,0.011746642179787],[-0.10099473595619,-0.08199355751276,0.05172199010849],[-0.050065640360117,-0.066282607614994,-0.063397571444511]],[[-0.23035007715225,-0.044726151973009,-0.046195048838854],[0.089100740849972,-0.016296984627843,0.031512904912233],[-0.17252267897129,0.34625005722046,-0.069989375770092]],[[0.13305830955505,-0.099516846239567,-0.10687510669231],[-0.0596166215837,-0.18195241689682,-0.038388680666685],[-0.016333797946572,0.12803985178471,-0.18756306171417]]],[[[-0.047713119536638,-0.03799544647336,-0.058392211794853],[0.019473453983665,0.06397008150816,0.0113679273054],[0.030989311635494,-0.026570674031973,0.0025880429893732]],[[-0.012823079712689,0.014918896369636,0.0064003020524979],[-0.040793314576149,-0.042298786342144,0.0099098412320018],[-0.072705499827862,0.0079402597621083,0.050487276166677]],[[0.0047590979374945,0.001681910129264,-0.0025306737516075],[-0.00073813926428556,-0.020881645381451,0.049867577850819],[-0.003190248971805,0.047762338072062,-0.091448299586773]],[[-0.042683534324169,0.011109668761492,-0.11517962068319],[0.015782302245498,-0.043021950870752,-0.024933196604252],[0.023738013580441,0.010911446064711,0.082717947661877]],[[0.067723952233791,0.077404640614986,-0.043741308152676],[-0.022482862696052,0.063482135534286,0.09019148349762],[-0.02473671361804,-0.043957564979792,0.057319067418575]],[[-0.031278058886528,0.012483080849051,0.040334090590477],[0.034254759550095,0.011967524886131,0.052187472581863],[0.092810086905956,-0.032821118831635,-0.0030405330471694]],[[-0.0050903400406241,0.072233393788338,-0.037322726100683],[0.036265142261982,0.012935070320964,0.027882372960448],[-0.016192849725485,0.023968491703272,-0.0073103853501379]],[[-0.023487523198128,0.0067503126338124,0.021251557394862],[0.010287635028362,0.072586730122566,0.0090665984898806],[0.030521236360073,0.027511268854141,0.011019338853657]],[[-0.023430252447724,0.024254187941551,-0.039901230484247],[0.0055293827317655,0.038368962705135,0.01022154185921],[0.076347783207893,-0.0076200542971492,-0.068506993353367]],[[0.012079536914825,-0.050536319613457,0.085915260016918],[-0.0098890755325556,0.014930826611817,0.02113557048142],[0.08589893579483,0.043482564389706,-0.02713999338448]],[[0.050743404775858,-0.011077176779509,0.019323132932186],[-0.02509237639606,0.0075076934881508,0.056829303503036],[0.051157183945179,-0.013252083212137,-0.038549676537514]],[[0.0087283384054899,-0.017725186422467,0.01049324683845],[-0.011015461757779,0.056680094450712,0.03752750903368],[0.057452622801065,0.069328144192696,-0.065289787948132]],[[0.1311980932951,0.044971946626902,0.051108777523041],[-0.045675981789827,-0.01177966594696,-0.038940370082855],[0.088702514767647,0.14424991607666,0.06510253995657]],[[0.056699253618717,0.022916922345757,0.061591431498528],[-0.0025402801111341,0.066639088094234,0.022160798311234],[0.034697394818068,0.084086671471596,0.031666848808527]],[[0.014132231473923,0.037602566182613,-0.073261387646198],[-0.019121080636978,0.02224032394588,-0.03683577477932],[0.03736536949873,0.044881865382195,0.024234395474195]],[[-0.032495245337486,-0.0064634815789759,0.020365938544273],[-0.011919313110411,-0.01285701058805,-0.032740265130997],[-0.083385542035103,0.01660567522049,0.017564363777637]],[[0.033169340342283,-0.017362838611007,-0.053168326616287],[-0.019159495830536,0.018894350156188,-0.042147845029831],[-0.046133764088154,0.029747512191534,-0.037947405129671]],[[0.0201805382967,-0.034776858985424,-0.02448695525527],[0.070971995592117,-0.036560300737619,0.0082652680575848],[-0.00027238772599958,0.048496920615435,0.014576005749404]],[[-0.0095793576911092,-0.020490199327469,0.028206387534738],[0.0016760816797614,-0.0071678296662867,0.04423476755619],[0.023173438385129,-0.037289414554834,0.016497779637575]],[[-0.012721798382699,-0.014061415567994,0.036306742578745],[-0.011695334687829,0.01473677996546,0.034459497779608],[0.036493610590696,-0.052196033298969,0.010511415079236]],[[0.010136020369828,0.045035343617201,-0.10251402109861],[-0.012204395607114,-0.011758076027036,-0.015814933925867],[-0.075506985187531,-0.03413188830018,0.043082129210234]],[[0.0071793375536799,-0.0096899075433612,-0.01589192263782],[0.079805143177509,0.079975463449955,0.012894773855805],[-0.026686174795032,0.089400723576546,-0.026981975883245]],[[0.0087735159322619,-0.043005306273699,-0.00096795067656785],[-0.022938780486584,0.021592523902655,0.018651241436601],[-0.016062958166003,-0.007062332239002,0.018144490197301]],[[0.059143055230379,-0.0080746412277222,0.10269366204739],[0.025825183838606,0.018046651035547,-0.011069386266172],[0.024964926764369,0.0084831714630127,0.035009648650885]],[[-0.066555313766003,0.0070272134616971,0.014411925338209],[-0.019699823111296,0.026890363544226,-0.034836299717426],[0.036007039248943,-0.0022990510333329,-0.061131875962019]],[[0.07105678319931,0.027819974347949,-0.036619946360588],[-0.034622054547071,-0.0069543621502817,-0.025376848876476],[0.053827088326216,0.054799783974886,0.003813931485638]],[[0.0081901187077165,0.024359712377191,0.056882914155722],[-0.023067960515618,-0.012792294844985,0.043778855353594],[0.02549003623426,0.018847526982427,0.0101313656196]],[[-0.028578231111169,0.061035372316837,0.026620678603649],[0.038804218173027,0.011366067454219,0.024083212018013],[0.040716432034969,-0.041791874915361,-0.00023203861201182]],[[0.01841651275754,0.043849818408489,-0.040714379400015],[-0.067059025168419,-0.01151682715863,0.017197955399752],[0.037709411233664,0.056527871638536,-0.02314331009984]],[[0.070174247026443,0.0083019090816379,-0.0043213726021349],[0.051227163523436,0.050347931683064,0.07457110285759],[-0.03085514716804,-0.063375383615494,-0.0029562611598521]],[[0.017944294959307,-0.018675653263927,0.072698906064034],[0.049154933542013,-0.052408952265978,0.020141547545791],[-0.0049482388421893,0.051664371043444,0.0035066660493612]],[[0.0041724164038897,0.060205839574337,0.011574540287256],[-0.019754871726036,-0.016048446297646,-0.068243466317654],[-0.0081391138955951,0.031038561835885,-0.0032603861764073]],[[0.019559701904655,-0.010960313491523,-0.021941993385553],[0.0067945728078485,0.036032419651747,-0.039955165237188],[0.062687903642654,-0.0056669507175684,0.039614956825972]],[[-0.042896408587694,-0.10025503486395,-0.010203494690359],[-0.054605275392532,0.0078597292304039,0.0048350738361478],[0.085884004831314,-0.015419749543071,-0.00030897051328793]],[[-0.044865742325783,-0.017145408317447,-0.025989001616836],[-0.033200372010469,-0.051178604364395,-0.053836204111576],[0.063898421823978,0.027975764125586,-0.030010908842087]],[[-0.019149973988533,0.067498199641705,-0.017868177965283],[-0.012202527374029,-0.058049224317074,-0.021749285981059],[-0.0098320627585053,0.023970520123839,0.0071050333790481]],[[0.046607859432697,-0.018761238083243,-0.065286949276924],[-0.0014910135651007,-0.037939202040434,-0.0036022372078151],[0.082987435162067,0.039249420166016,0.01150359865278]],[[-0.0088069289922714,-0.0021701520308852,-0.022189643234015],[0.043407279998064,-0.013121996074915,0.01335627771914],[0.062750481069088,-0.062659956514835,-0.010913167148829]],[[-0.034905254840851,-0.036448184400797,-0.0066211447119713],[-0.043824899941683,0.086314000189304,-0.0049884747713804],[-0.11224990338087,-0.012907945550978,0.032308675348759]],[[-0.026139087975025,-0.0043557020835578,-0.01535217743367],[-0.024287698790431,0.0049586747772992,0.00023492134641856],[0.03936630487442,0.021391365677118,-0.057432495057583]],[[0.037295073270798,-0.0070906803011894,0.050393521785736],[0.00017438514623791,0.030307065695524,-0.059390816837549],[-0.0049329525791109,0.014681121334434,-0.022404871881008]],[[0.030968502163887,0.11055415868759,0.026945350691676],[-0.0049424064345658,0.068142421543598,0.020532852038741],[-0.030849266797304,0.070110082626343,-0.0088711567223072]],[[0.0152851305902,0.02806238271296,0.040336206555367],[-0.025845896452665,0.067963540554047,0.1087910681963],[0.078284054994583,0.11367252469063,0.05820856615901]],[[-0.014028190635145,-0.019747488200665,-0.0039260983467102],[-0.028957661241293,-0.075250707566738,0.058604832738638],[0.10359915345907,-0.080763302743435,0.019718701019883]],[[0.092031069099903,-0.028812736272812,0.027077035978436],[0.0097227562218904,0.018903374671936,0.00738984066993],[0.033485021442175,0.08233555406332,-0.043156553059816]],[[0.054223448038101,0.17346841096878,0.04541327804327],[0.14963485300541,-0.03902293369174,0.052965510636568],[0.018765619024634,0.074064210057259,0.11014498770237]],[[-0.031235560774803,-0.0088917203247547,0.017839530482888],[0.038129232823849,-0.0073726554401219,-0.026263078674674],[-0.044684048742056,-0.0019225716823712,0.012412863783538]],[[-0.019676644355059,-0.07093371450901,-0.035639874637127],[-0.044381357729435,-0.012471763417125,0.0029980109538883],[-0.01116859074682,0.013252786360681,0.048927910625935]],[[-0.013550505973399,0.0029545503202826,0.051477294415236],[0.014376611448824,-0.06314093619585,0.059166088700294],[-0.034846980124712,-0.02405434474349,-0.059768255800009]],[[-0.011153834871948,-0.022057151421905,-0.030092319473624],[-0.0080683333799243,0.010926358401775,-0.088988699018955],[-0.084909811615944,-0.036368481814861,-0.012610742822289]],[[0.079600945115089,0.011284964159131,0.044241543859243],[-0.052854731678963,0.010428536683321,-0.019063638523221],[0.034791488200426,-0.063572980463505,0.017133850604296]],[[0.020706340670586,-0.055549375712872,0.037323724478483],[0.050576642155647,0.036632016301155,-0.012546397745609],[-0.066890455782413,-0.0020456411875784,0.029466325417161]],[[0.046881087124348,0.02763831615448,0.044840108603239],[-0.04565030708909,-0.064254432916641,-0.025054289028049],[-0.004634571261704,0.027214569970965,0.046391125768423]],[[0.01741817034781,0.023181403055787,-0.030040629208088],[0.013657229021192,-0.010381314903498,0.069148607552052],[0.031736988574266,0.089381389319897,0.068985983729362]],[[0.010442652739584,-0.0079583786427975,-0.038480263203382],[-0.01239391695708,0.017293781042099,0.042854316532612],[0.067208848893642,0.0848498493433,-0.03132813051343]],[[-0.0037712636403739,0.027988914400339,0.0050065657123923],[-0.045292600989342,-0.023472869768739,-0.042544901371002],[-0.0071057886816561,-0.10100881010294,-0.0061287237331271]],[[0.040900066494942,-0.024254564195871,0.0057425983250141],[0.084628716111183,0.00090153550263494,0.17777687311172],[0.0061196782626212,-0.047118183225393,0.031034614890814]],[[0.074853643774986,-0.045947898179293,0.011015647090971],[0.0062021315097809,0.1103477627039,-0.082174971699715],[0.024636110290885,0.0020416823681444,-0.05161864310503]],[[0.033056654036045,0.090916305780411,0.04211262986064],[0.010312797501683,-0.053616896271706,0.0067757475189865],[0.044556651264429,-0.028888961300254,-0.035604182630777]],[[-0.033809911459684,0.029627520591021,-0.034319665282965],[0.040783796459436,0.029800288379192,0.050944693386555],[0.082219831645489,-0.0051723229698837,-0.0010909012053162]],[[0.0035591004416347,0.02740889787674,0.024361616000533],[-0.0067970706149936,0.023755418136716,0.068524472415447],[-0.004790301900357,0.012416258454323,-0.027837250381708]],[[-0.083437114953995,-0.02671192586422,-0.0085460618138313],[-0.021747451275587,-0.04590056091547,0.01714401692152],[0.03072046674788,0.0008273072890006,-0.033722262829542]],[[-0.012398644350469,-0.039513535797596,-0.02071494795382],[0.035206720232964,0.040603213012218,0.011688903905451],[-0.024924261495471,0.046139359474182,0.010605291463435]],[[-0.025829834863544,0.035571914166212,0.0021120188757777],[0.026361875236034,0.00084937090286985,0.069431141018867],[0.023333149030805,0.012839013710618,-0.0067152618430555]],[[-0.024344714358449,-0.0076289493590593,0.026268852874637],[-0.080517917871475,-0.0039311423897743,-0.029222486540675],[0.027836747467518,0.057708028703928,-0.050373647361994]],[[0.0053794393315911,0.043865188956261,0.056625183671713],[-0.017609877511859,-0.034061275422573,0.058452896773815],[0.028506530448794,-0.012084705755115,0.0097512975335121]],[[0.073500223457813,-0.0084039615467191,-0.003400755347684],[0.018727138638496,0.0095987422391772,-0.053442861884832],[0.027329249307513,-0.035804405808449,-0.018021080642939]],[[-0.020594453439116,0.038324225693941,0.027722883969545],[0.11381410062313,-0.01628702506423,0.00039527175249532],[0.046253487467766,0.055652197450399,0.044985491782427]],[[0.05265985429287,-0.0096001885831356,0.031323835253716],[-0.026203453540802,0.10185606777668,0.024438554421067],[0.095608420670033,0.076296254992485,-0.041691012680531]],[[0.046787559986115,0.067611210048199,-0.0012553571723402],[0.0080517465248704,0.067535854876041,0.033001661300659],[0.03166451305151,0.0018281423253939,0.076632894575596]],[[-0.074436493217945,0.11567946523428,-0.036295883357525],[0.059353154152632,0.045708917081356,0.032803382724524],[0.03841956704855,0.022209266200662,0.03317978233099]],[[0.020305540412664,-0.0054481886327267,0.010773829184473],[0.028679942712188,-0.029304578900337,-0.016680488362908],[-0.0069356178864837,-0.067719921469688,0.01536934543401]],[[0.034567873924971,-0.0079035153612494,-0.032191094011068],[-0.00030719835194759,0.032834615558386,0.049546290189028],[-0.068787410855293,0.055190283805132,0.028572546318173]],[[0.023075686767697,-0.020241215825081,0.074928745627403],[-0.059088621288538,0.021533530205488,0.010160620324314],[0.014657306484878,-0.050849802792072,-0.041730992496014]],[[-0.097860902547836,0.020827716216445,-0.022430263459682],[-0.0097460383549333,-0.019241930916905,0.030809080228209],[0.054634772241116,0.057243049144745,-0.0078345090150833]],[[0.042789645493031,0.014048950746655,-0.066243097186089],[0.024370979517698,-0.0268235784024,-0.098546162247658],[-0.0083325281739235,0.011462381109595,0.011035772971809]],[[-0.070389680564404,0.087863802909851,-0.0109619833529],[-0.0072722490876913,0.058097124099731,0.049735710024834],[0.075582668185234,-0.00063623930327594,-0.01707555167377]],[[-0.065112687647343,0.086095750331879,-0.021157745271921],[0.0026584323495626,0.089321881532669,0.026894951239228],[0.033087883144617,0.033876538276672,0.075481444597244]],[[-0.03560808300972,0.036358367651701,0.025570064783096],[0.060616221278906,-0.030186513438821,0.011884579434991],[-0.017266156151891,-0.023203732445836,-0.046996276825666]],[[0.002695101313293,-0.044656749814749,0.022432180121541],[-0.051998566836119,0.022778660058975,-0.065753929316998],[0.053279489278793,0.011754034087062,-0.042509943246841]],[[-0.00055791466729715,-0.07815232872963,-0.027578350156546],[-0.0010958084603772,-0.052001368254423,0.033762343227863],[0.0012619550107047,-0.023601338267326,0.02521120198071]],[[0.004561257082969,-0.07404026389122,-0.0010643146233633],[0.039830278605223,0.069815583527088,0.012621489353478],[-0.01780110411346,-0.056410577148199,-0.065367683768272]],[[0.025292357429862,0.016442423686385,0.08821789175272],[0.024156490340829,0.094711244106293,0.055582355707884],[-0.004564986564219,0.048014592379332,0.002361198188737]],[[0.031132033094764,0.01431833487004,0.053706757724285],[0.027009949088097,0.018525257706642,0.0074652289040387],[-0.0505784265697,0.076136291027069,0.043027799576521]],[[0.0049619418568909,-0.034854657948017,-0.031213767826557],[0.03855474665761,-0.012786420062184,0.058783691376448],[0.10246759653091,-0.052922200411558,0.019007500261068]],[[0.0056055034510791,-0.031085221096873,-0.011957717128098],[0.067155346274376,-0.085092633962631,0.042442761361599],[-0.06343175470829,0.043908931314945,-0.06385837495327]],[[-0.019858552142978,0.0064980480819941,-0.022083738818765],[-0.0063636968843639,0.011584005318582,-0.001590782427229],[0.080238126218319,0.042428962886333,0.0023301120381802]],[[0.066977381706238,0.0022782038431615,-0.020998997613788],[-0.026550928130746,-0.00066754018189386,0.008166485466063],[0.060386303812265,0.055577166378498,-0.0091582974418998]],[[0.029262134805322,0.015440158545971,0.047338329255581],[0.045326042920351,0.020791927352548,-0.025141801685095],[-0.0069352961145341,-0.014576150104403,0.0044612516649067]],[[0.018506582826376,-0.023358460515738,0.029268467798829],[0.025014124810696,0.0069350046105683,-0.024016790091991],[-0.068714328110218,0.056860163807869,-0.039196208119392]],[[0.03051788918674,0.043657299131155,0.039425700902939],[0.049543041735888,0.0023420352954417,-0.0022182539105415],[0.018795004114509,-0.022182142361999,0.056548748165369]],[[0.048316575586796,-0.011295796371996,0.036484219133854],[-0.086161598563194,0.0042741596698761,0.012309520505369],[0.0057746791280806,-0.010274922475219,0.037440672516823]],[[0.0092209009453654,0.0027253422886133,0.002369070192799],[0.027788864448667,0.038932044059038,0.0062740324065089],[-0.020116440951824,-0.07298181951046,0.015530681237578]],[[0.03239619359374,-0.0023066133726388,0.039689656347036],[-0.024030826985836,-0.030415035784245,-0.0038443857338279],[0.039221368730068,-0.0071678138338029,0.037264917045832]],[[-0.021770918741822,0.018277958035469,-0.019043065607548],[-0.022918151691556,-0.025704568251967,-0.013298911042511],[0.035341683775187,-0.06862485408783,0.014497930184007]],[[-0.0032266355119646,0.018750449642539,0.032758306711912],[0.0036637240555137,0.052055578678846,0.062862396240234],[-0.0039426144212484,0.011957952752709,-0.022064886987209]],[[-0.014177653007209,-0.046685557812452,0.035817090421915],[-0.056761234998703,0.005899126175791,-0.035597130656242],[-0.018733058124781,-0.077390931546688,0.049258649349213]],[[0.0099570248275995,0.016416370868683,0.046538140624762],[0.051688931882381,-0.011698869988322,0.014150836504996],[0.053065627813339,-0.0036457430105656,-0.026840697973967]],[[-0.0078264679759741,0.030142949894071,-0.021023465320468],[-0.061424620449543,-0.010241481475532,0.0086829382926226],[0.077006861567497,0.0033689995761961,-0.075911678373814]],[[0.082147769629955,0.011615212075412,0.045755866914988],[0.0048406040295959,0.025439631193876,0.03156516700983],[0.031158404424787,0.034959021955729,0.031433597207069]],[[-0.052214946597815,-0.025083081796765,-0.073635660111904],[-0.097096137702465,0.052988294512033,-0.037207346409559],[-0.0036834187339991,0.031724810600281,0.0049927150830626]],[[-0.018234459683299,0.072619356215,0.10497258603573],[0.005571823567152,0.044070847332478,0.023943634703755],[-0.053703606128693,0.065617203712463,0.0025109120178968]],[[0.042082455009222,0.011507839895785,-0.00010870792903006],[0.0059050740674138,0.035265486687422,0.030720246955752],[-0.03190940618515,-0.014503365382552,-0.0063794679008424]],[[-0.003897761926055,0.029999958351254,0.0092382533475757],[-0.0099243130534887,-0.037062752991915,-0.08072354644537],[-0.014985859394073,0.00067600485635921,0.021924465894699]],[[0.027227399870753,-0.015734311193228,0.050392426550388],[-0.04253464192152,-0.012381063774228,0.015877190977335],[0.010561021976173,-0.015695506706834,0.11736675351858]],[[0.060513503849506,0.0017063932027668,-0.016697125509381],[-0.0021825078874826,0.013248646631837,0.024344293400645],[-0.0022166953422129,0.030003910884261,0.03693451359868]],[[-0.033382385969162,0.068297892808914,0.037634763866663],[0.025433463975787,0.046887904405594,0.055115278810263],[0.046287730336189,0.018915245309472,0.041533336043358]],[[0.0052769132889807,-0.028817925602198,0.0020629211794585],[-0.02017287351191,-0.013104128651321,-0.0312569886446],[-0.049925785511732,0.049340911209583,0.024529995396733]],[[-0.038197111338377,-0.063243620097637,0.024627059698105],[-0.039978377521038,-0.04851495474577,-0.062086839228868],[-0.022174991667271,0.022920824587345,0.018431045114994]],[[-0.036126244813204,0.066306136548519,0.078179322183132],[0.0083754761144519,-0.0096270153298974,0.13833951950073],[-0.0062023992650211,-0.020553240552545,0.035345681011677]],[[-0.026031993329525,-0.022437978535891,-0.046613022685051],[0.064867876470089,0.05091355741024,0.070310577750206],[-0.014634785242379,0.013499942608178,-0.086247399449348]],[[0.011954544112086,-0.08155233412981,0.0083125000819564],[-0.097272403538227,-0.012878987938166,0.031830664724112],[0.044195923954248,-0.034695725888014,0.084134206175804]],[[0.072015166282654,0.029259610921144,-0.033283963799477],[-0.016625292599201,0.0047198096290231,-0.062409088015556],[0.02925238199532,0.078961327672005,0.039127591997385]],[[-0.0047076866030693,-0.025761719793081,-0.082014545798302],[0.082200489938259,-0.013136994093657,0.0075532430782914],[0.025094134733081,0.065857984125614,0.0093627097085118]],[[0.0083379726856947,0.095890499651432,0.015667974948883],[-0.077835783362389,0.030467178672552,-0.015096340328455],[-0.0078542800620198,-0.046071171760559,0.010405985638499]],[[-0.054923575371504,0.0058314008638263,0.023661302402616],[0.010735400021076,-0.059915151447058,-0.053727749735117],[0.012269888073206,0.042343612760305,0.034710578620434]],[[0.034004274755716,0.058121856302023,0.01209643855691],[-0.015458155423403,0.032100427895784,-0.022515254095197],[0.050162941217422,0.10951542109251,0.063347965478897]],[[-0.0045268186368048,-0.039531979709864,0.0018320828676224],[0.064662747085094,-0.029252361506224,0.027466718107462],[0.065744154155254,0.13951225578785,-0.046151135116816]],[[-0.027481604367495,-0.04491163417697,-0.06203892454505],[0.093426294624805,0.019418409094214,0.0094754006713629],[0.042034182697535,-0.04779464006424,-0.015242679975927]],[[-0.00051168771460652,0.13103277981281,-0.022192871198058],[0.0046380874700844,0.03364234790206,0.066869892179966],[0.041111271828413,-0.0041698003187776,0.012350247241557]],[[0.051096249371767,-0.023395288735628,-0.063102416694164],[-0.068194851279259,-0.044119995087385,0.02388764731586],[0.026188470423222,0.032355219125748,-0.0034315744414926]],[[-0.018386110663414,-0.043834052979946,0.015146556310356],[0.029837952926755,0.087680146098137,-0.10046498477459],[-0.021211691200733,-0.043542787432671,0.02953739091754]],[[-0.028056241571903,-0.031633239239454,0.021691236644983],[0.02777305804193,0.081392861902714,-0.012527142651379],[-0.05920871719718,-0.053407624363899,-0.03001905977726]],[[0.023722037672997,-0.028907999396324,-0.078331500291824],[0.038632936775684,-0.018827756866813,0.037210170179605],[-0.031639110296965,-0.057679150253534,0.086258471012115]],[[0.086902119219303,-0.029424488544464,0.029646817594767],[-0.00057766155805439,-0.013910393230617,0.081463739275932],[0.0017589849885553,0.052103318274021,-0.017067505046725]],[[0.020491449162364,0.014689999632537,0.0021971962414682],[0.058570150285959,0.012972135096788,-0.035943560302258],[0.094230815768242,0.049255050718784,0.042651537805796]],[[0.082348302006721,-0.043137010186911,0.023744182661176],[-0.017069268971682,-0.012685930356383,0.024519430473447],[-0.031894110143185,0.0038394867442548,0.008526093326509]],[[-0.011901555582881,0.050842579454184,-0.0057416008785367],[-0.018210932612419,-0.048403814435005,-0.0084979506209493],[0.001643766881898,0.044648084789515,0.01427293382585]]],[[[-0.050038997083902,0.061047859489918,-0.026824902743101],[0.039828427135944,-0.093420423567295,0.064570248126984],[0.058874845504761,-0.021968236193061,-0.0053660925477743]],[[0.045027483254671,0.051515277475119,0.070467010140419],[-0.054615013301373,-0.027461277320981,0.0012837051181123],[0.011160597205162,-0.019957570359111,-0.0038784591015428]],[[0.064306892454624,-0.033089607954025,-0.050114613026381],[-0.01517026592046,0.017550928518176,-0.056641921401024],[0.085801526904106,0.063550852239132,-0.026455061510205]],[[-0.1548730134964,-0.06181413680315,0.10161872208118],[-0.063395522534847,-0.033901933580637,-0.0026517175137997],[0.010924143716693,-0.019828660413623,-0.072605617344379]],[[0.028037216514349,-0.0099970456212759,0.0048598293215036],[-0.013210573233664,-0.033696614205837,0.0055363783612847],[0.046025771647692,-0.011061057448387,-0.0090153096243739]],[[0.013664230704308,0.045783683657646,-0.057432718575001],[0.020869502797723,-0.047117244452238,0.0077944984659553],[-0.022881630808115,-0.009944923222065,-0.024291530251503]],[[-0.014102479442954,-0.025727393105626,0.016490435227752],[0.0078669954091311,0.0057331379503012,-0.018762933090329],[-0.00068251439370215,-0.036975242197514,-0.03540712594986]],[[0.01121080853045,5.1924580475315e-06,-0.056317798793316],[-0.052845008671284,-0.022320706397295,0.052708115428686],[0.010775176808238,0.070401556789875,0.00011361507495167]],[[-0.015118656679988,-0.061006560921669,0.0041152648627758],[-0.02501923404634,0.050387766212225,-0.006559569388628],[-0.035351425409317,-0.024360284209251,0.04764723777771]],[[0.033444885164499,-0.04055954888463,-0.0752162784338],[0.057313613593578,-0.032170332968235,-0.11466667056084],[0.10130253434181,0.091293774545193,-0.062560267746449]],[[0.0049884347245097,0.0071203811094165,0.0010219370014966],[-0.030149614438415,-0.018805649131536,0.040601272135973],[0.0025462803896517,-0.042225290089846,0.075137086212635]],[[-0.0072271088138223,-0.0041389348916709,-0.0034432790707797],[-0.039787575602531,-0.044336024671793,0.018379608169198],[-0.0049595427699387,0.05169552564621,-0.047301657497883]],[[-0.028937576338649,-0.030347054824233,-0.021342987194657],[-0.0092091793194413,0.021380240097642,0.047837290912867],[-0.055808961391449,0.014556759037077,0.1181348413229]],[[-0.034647099673748,0.082524850964546,-0.018400629982352],[-0.015923943370581,0.0054514724761248,-0.12837615609169],[-0.0063282893970609,0.010456159710884,-0.021856667473912]],[[-0.047067776322365,0.0044919615611434,0.085463024675846],[0.11070185154676,-0.027250986546278,-0.06089036911726],[0.04386967420578,-0.021492302417755,-0.059526074677706]],[[0.014278707094491,-0.088416948914528,-0.026416774839163],[-0.024764155969024,-0.068219214677811,-0.013612162321806],[0.013783490285277,0.08166391402483,-0.014968731440604]],[[-0.0070860935375094,-0.0035645561292768,-0.044799897819757],[0.034310907125473,0.026989798992872,0.019574815407395],[-0.017363082617521,0.028375739231706,0.048139318823814]],[[0.0072289099916816,0.046079818159342,-0.03811801970005],[0.0062086535617709,-0.0069212489761412,0.027228269726038],[-0.064977467060089,-0.093710169196129,0.0002132686204277]],[[-0.003141105407849,0.022348860278726,0.066446296870708],[-0.030845079571009,-0.00072635139804333,-0.0076304660178721],[0.0073098759166896,-0.026084868237376,-0.0040979692712426]],[[-0.0050631747581065,-0.01099116448313,-0.035362619906664],[0.021890951320529,-0.050162382423878,-0.051886323839426],[0.044015634804964,-0.0073461690917611,-0.0049508796073496]],[[0.02493885345757,0.0098075019195676,0.065791733562946],[0.0061688278801739,-0.022880084812641,0.048660296946764],[-0.027005529031157,-0.037868335843086,-0.081145614385605]],[[-0.011641330085695,0.021846620365977,-0.064042888581753],[0.02727440930903,-0.038332667201757,-0.041852697730064],[-0.0053890137933195,-0.028258359059691,0.019624074921012]],[[0.0024011023342609,-0.001613354193978,0.074690654873848],[0.0087515134364367,-0.020075472071767,0.015598548576236],[-0.078559391200542,-0.057622902095318,-0.056048989295959]],[[0.030074961483479,-0.017728084698319,-0.0065206382423639],[0.050575777888298,-0.012252966873348,-0.048845659941435],[0.050407592207193,0.048221413046122,-0.11763142049313]],[[-0.20051649212837,0.0062363990582526,-0.083693489432335],[-0.02180259861052,0.0011361401993781,-0.054111756384373],[0.052500300109386,-0.19636246562004,0.074654601514339]],[[0.028271296992898,0.02483550272882,0.070135436952114],[0.036424446851015,-0.052100669592619,-0.022372307255864],[0.028938325121999,-0.0066788801923394,-0.069272421300411]],[[-0.038075119256973,-0.030510017648339,-0.0083526326343417],[0.023343509063125,-0.017477627843618,-0.05996972694993],[-0.0053777932189405,0.033455081284046,0.053816452622414]],[[-0.020705407485366,-0.068499267101288,0.06693447381258],[-0.034367375075817,0.014606574550271,-0.020918730646372],[0.058211978524923,0.0047554243355989,-0.0083358529955149]],[[0.022695479914546,-0.0187301132828,0.063320718705654],[-0.017617590725422,-0.0053246328607202,-0.03786014392972],[-0.02635346353054,0.0016734451055527,0.0044704526662827]],[[0.024114534258842,-0.076412044465542,0.094959892332554],[-0.0047666751779616,0.1088897511363,0.017293035984039],[0.010054991580546,-0.010894765146077,-0.028036465868354]],[[0.020244991406798,-0.083897516131401,-0.016762373968959],[-0.039251949638128,0.067509829998016,0.067062586545944],[-0.049177214503288,-0.0062897461466491,-0.029767476022243]],[[0.030254313722253,-0.0030075316317379,-0.0015826922608539],[-0.038601689040661,-0.055486779659986,0.0772315710783],[0.0044580036774278,-0.0095566315576434,0.017630472779274]],[[-0.033873349428177,-0.041467562317848,-0.062370974570513],[-0.039329081773758,0.059077076613903,0.067344173789024],[0.08534599840641,-0.022512773051858,-0.018529998138547]],[[-0.14070245623589,-0.080196291208267,-0.053414944559336],[0.04739486426115,0.089035481214523,0.021964577957988],[0.057002924382687,0.061667155474424,0.044348366558552]],[[0.030385255813599,-0.01201419532299,0.016846792772412],[-0.010872810147703,-0.012991027906537,-0.052378468215466],[0.0010379892773926,-0.010771381668746,-0.027819022536278]],[[0.022218322381377,0.022438909858465,0.055610530078411],[0.012683805078268,0.09971584379673,-0.0045437845401466],[0.025968579575419,0.001319236936979,0.0057185408659279]],[[0.025778342038393,0.10422915965319,0.03692976757884],[-0.080161273479462,-0.01961961388588,0.056865267455578],[-0.032490123063326,-0.008902145549655,-0.073607638478279]],[[-0.014357404783368,0.010784680955112,-0.033595487475395],[-0.020218815654516,0.025584707036614,0.032131016254425],[0.027502143755555,0.013222286477685,-0.013077487237751]],[[-0.0099522024393082,0.033821016550064,0.044093232601881],[-0.057622328400612,-0.043421491980553,0.004358472302556],[-0.065098166465759,0.018861846998334,-0.030690688639879]],[[-0.011864836327732,0.086084887385368,-0.028022926300764],[0.053272724151611,-0.012083612382412,-0.028072169050574],[0.0031427498906851,0.022379966452718,-0.047622568905354]],[[-0.088402450084686,-0.041205737739801,0.021308256313205],[0.021909758448601,-0.0097541138529778,-0.047747533768415],[0.061378970742226,-0.00084918219363317,-0.08687761425972]],[[0.0099737737327814,0.032789710909128,0.069753617048264],[-0.0016786741325632,-0.040577869862318,-0.031190987676382],[0.00073285837424919,-0.02686920017004,-0.079883098602295]],[[-0.0717608705163,0.030312011018395,-0.031428664922714],[-0.03036436997354,-0.0039362031966448,0.041808743029833],[-0.037617828696966,-0.043748021125793,0.10160698741674]],[[-0.011377402581275,-0.038179133087397,-0.0092733027413487],[-0.015708945691586,-0.019147906452417,0.056375496089458],[-0.0070072906091809,0.014168599620461,-0.038213700056076]],[[-0.033419124782085,0.085779003798962,0.0085528194904327],[-0.060922540724277,-0.019569193944335,0.082792609930038],[0.040992118418217,-0.10226595401764,-0.033940859138966]],[[0.11976502090693,-0.0030016826931387,0.063457898795605],[0.018438886851072,0.095774166285992,0.039255023002625],[0.12818394601345,-0.0080989673733711,0.02375365793705]],[[-0.033415760844946,-0.049809280782938,-0.093699604272842],[-0.0046460232697427,-0.017384890466928,-0.16567832231522],[-0.011006202548742,-0.02224000915885,-0.088479548692703]],[[-0.021450659260154,0.023878782987595,-0.11882044374943],[0.016606913879514,0.04899837821722,0.038990329951048],[0.020768661051989,-0.015055720694363,0.030032774433494]],[[0.0672342851758,0.00043848366476595,-0.065379276871681],[0.00083700771210715,-0.0090233832597733,0.0039679505862296],[0.037577886134386,-0.010317876003683,-0.0064000133424997]],[[-0.050081301480532,-0.002418844262138,0.0038059409707785],[-0.042995449155569,-0.0060550086200237,0.020867921411991],[0.0012571898987517,-0.031979709863663,-0.032730244100094]],[[0.022664148360491,-0.085242748260498,0.055472042411566],[0.015049827285111,0.045488510280848,0.0098986271768808],[-0.0034231697209179,0.040875293314457,-0.016284620389342]],[[0.021331060677767,-0.019230527803302,-0.020123220980167],[0.0049613658338785,-0.0013079133350402,-0.07233427464962],[0.023146664723754,-0.02173020131886,-0.039864894002676]],[[-0.028459914028645,-0.038137167692184,0.02900393679738],[-0.0087540792301297,0.030503431335092,-0.055570233613253],[0.026750473305583,0.075934536755085,0.021275449544191]],[[0.034384038299322,-0.019594209268689,0.021847223863006],[0.042964652180672,-0.022784613072872,-0.010073902085423],[-0.039304807782173,0.033367529511452,-0.029062878340483]],[[-0.052355848252773,-0.011485191062093,-0.048609506338835],[0.058610137552023,0.062027372419834,0.030078835785389],[0.016182785853744,-0.032262854278088,-0.048576690256596]],[[-0.037174303084612,0.12208446860313,-0.039174728095531],[0.023043714463711,0.071093238890171,-0.096956662833691],[0.0026768303941935,0.018503660336137,-0.030018640682101]],[[-0.1225001886487,0.055828381329775,0.010128075256944],[0.067830920219421,-0.12068352103233,0.067314088344574],[-0.069444961845875,0.018691582605243,0.0030183289200068]],[[0.02190107665956,0.026232765987515,0.028563756495714],[0.011735208332539,-0.049636270850897,-0.026852464303374],[0.065745994448662,-0.0072895381599665,-0.039457593113184]],[[0.04000611230731,0.018879640847445,-0.072743304073811],[-0.016817644238472,0.05999518558383,-0.088238418102264],[-0.0084746619686484,-0.0091581325978041,-0.021751059219241]],[[0.0068864417262375,-0.027571473270655,-0.077871166169643],[0.05995487421751,-0.078494712710381,0.087869100272655],[-0.052645724266768,-0.046934261918068,-0.021870674565434]],[[0.037037078291178,0.001743053435348,0.0021758128423244],[-0.020846832543612,0.036115344613791,-0.021982606500387],[0.020976783707738,-0.0026757968589664,0.060156770050526]],[[0.041796468198299,0.010905785486102,-0.079178333282471],[-0.031317513436079,-0.016609087586403,0.030040452256799],[0.0036259205080569,-0.059804584830999,0.028583256527781]],[[-0.059354592114687,-0.015447965823114,-0.050664231181145],[-0.021247589960694,-0.011470916680992,-0.0697031468153],[-0.021790843456984,-0.057452563196421,0.053590465337038]],[[-0.020757785066962,0.015628047287464,0.070997186005116],[-0.047205328941345,-0.039429519325495,0.041076306253672],[0.0081313690170646,0.043046534061432,0.076424270868301]],[[0.010543178766966,0.070044532418251,0.00090396811719984],[-0.00099463108927011,0.037887431681156,0.043216362595558],[-0.003167626215145,-0.027744011953473,0.026329623535275]],[[-0.0025031042750925,0.053820602595806,-0.016399385407567],[-0.029843240976334,-0.015987819060683,0.075145691633224],[-0.10371217876673,-0.029673513025045,0.052380539476871]],[[-0.057212665677071,-0.030134065076709,-0.021251283586025],[0.043205358088017,-0.035648334771395,0.04555382579565],[0.015512652695179,-0.01207787450403,-0.02055724337697]],[[-0.020077187567949,-0.021671919152141,-0.044677998870611],[-0.015934579074383,-0.023639256134629,-0.0012547285296023],[0.045802667737007,-0.0034351523499936,-0.026953326538205]],[[-0.025959923863411,0.097418770194054,-0.073099203407764],[0.0056499326601624,-0.073797680437565,0.077154844999313],[-0.023137295618653,0.0034815946128219,0.0044657178223133]],[[-0.055701848119497,-0.024852121248841,0.041737597435713],[-0.074876502156258,-0.033671010285616,0.021899614483118],[-0.0049859946593642,-0.003385771997273,0.058709032833576]],[[-0.06281478703022,-0.057323571294546,0.0061031747609377],[0.0068195392377675,0.079348981380463,0.017966043204069],[0.0048995357938111,-0.039861936122179,-0.048922557383776]],[[-0.001377759501338,-0.024223914369941,-0.0010966800618917],[0.029956975951791,0.002137252362445,0.01208237465471],[0.020410729572177,0.027866847813129,0.018135828897357]],[[-0.022300947457552,-0.0032362800557166,0.087370559573174],[0.020962622016668,-0.029616648331285,0.063593432307243],[0.02264860086143,0.043313689529896,0.022081330418587]],[[0.0016557049239054,-0.0057421028614044,-0.024261377751827],[-0.027413628995419,-0.040899321436882,-0.00014574790839106],[-0.039320435374975,-0.0001145734131569,0.025946049019694]],[[-0.041802637279034,0.066961191594601,-0.038914453238249],[0.027058171108365,0.047063499689102,0.03335340693593],[0.10796008259058,-0.011913334019482,0.084040902554989]],[[-0.043798103928566,0.033792216330767,0.040928639471531],[-0.03086755797267,0.023403864353895,-0.010950767435133],[-0.015577214770019,-0.0048344600945711,0.0092556923627853]],[[0.018184820190072,-0.0032777662854642,0.043858643621206],[-0.0057926038280129,-0.026605971157551,-0.0068393955007195],[0.010345738381147,0.008388701826334,-0.023035690188408]],[[-0.049021624028683,0.09068388491869,-0.028086328878999],[-0.069668643176556,0.039391726255417,-0.05453922227025],[0.064419530332088,-0.045620527118444,0.05495523661375]],[[-0.076902225613594,-0.014773156493902,-0.0033783172257245],[0.04009772837162,-0.028002904728055,-0.0056572137400508],[0.020631300285459,-0.021014139056206,-0.044680405408144]],[[-0.015665199607611,-0.0044147996231914,-0.072596445679665],[-0.0066791195422411,-0.0099476668983698,0.06359001994133],[0.046081192791462,0.00076517130946741,0.036322671920061]],[[0.0474540181458,-0.10507293045521,0.035504717379808],[-0.027512235566974,-0.0023946925066411,-0.034003391861916],[-0.0057461955584586,-0.0072342250496149,-0.021040169522166]],[[-0.0050625107251108,0.011976555921137,0.029171995818615],[-0.062684305012226,-0.1315485984087,-0.10996536910534],[-0.09834436327219,-0.015952218323946,0.052863631397486]],[[-0.01947064884007,-0.050257343798876,-0.020152520388365],[-0.056663330644369,0.050346057862043,0.057839773595333],[0.040164943784475,-0.10152419656515,-0.0059453332796693]],[[-0.004712768830359,-0.010499875992537,0.047189462929964],[-0.029113594442606,0.035508863627911,0.036818414926529],[0.023683546110988,-0.0027910347562283,-0.047675300389528]],[[0.060968026518822,-0.063449524343014,0.024732194840908],[0.030750349164009,0.027721457183361,0.045352697372437],[0.01946378685534,0.01629870198667,-0.091286234557629]],[[0.0052733831107616,0.00035141449188814,-0.067811407148838],[0.023113897070289,0.047804117202759,0.060176577419043],[-0.022973230108619,0.0054215239360929,-0.022064313292503]],[[-0.062470447272062,-0.034489300101995,0.0068560438230634],[0.0060224328190088,0.005063044372946,0.004178530536592],[0.043963626027107,0.035625223070383,0.021699981763959]],[[-0.044485233724117,0.022547459229827,0.014831558801234],[-0.038275994360447,-0.036990281194448,-0.018428547307849],[0.036488771438599,0.066336207091808,-0.036642797291279]],[[0.0011195802362636,0.051299948245287,-0.018216570839286],[0.052973590791225,0.051669962704182,-0.071561135351658],[0.012094599194825,-0.0086699323728681,0.044678747653961]],[[0.0031994585879147,0.0016730623319745,-0.052511267364025],[0.033320665359497,-0.055749893188477,-0.061535898596048],[0.053241606801748,0.057955481112003,-0.06257201731205]],[[0.015676438808441,0.053110059350729,0.030776105821133],[-0.004768927115947,0.020304163917899,0.024615556001663],[-0.042695190757513,-0.030268432572484,0.035561710596085]],[[0.072785295546055,-0.0091239362955093,0.020514074712992],[-0.051949571818113,-0.071161799132824,-0.029917338863015],[0.033144060522318,-0.031776033341885,-0.012380794622004]],[[-0.024961592629552,-0.00038257494452409,-0.0054956623353064],[-0.038752246648073,0.0078337891027331,0.011340463533998],[-0.056124892085791,0.04412842169404,0.030959028750658]],[[0.0060329879634082,0.03260524943471,-0.011680396273732],[0.032701313495636,0.044291485100985,-0.00014120207924861],[0.0079747205600142,-0.016165880486369,-0.0044839400798082]],[[0.030881717801094,-0.0024137292057276,-0.051309198141098],[0.041561234742403,-0.046388760209084,-0.081788301467896],[-0.024981817230582,-0.040846969932318,-0.044085714966059]],[[0.043778195977211,-0.027115745469928,0.017968103289604],[0.068793304264545,-0.010657173581421,-0.0051302001811564],[0.041333459317684,-0.023370673879981,0.0024266405962408]],[[0.050161492079496,-0.029813701286912,-0.024579642340541],[0.019368540495634,-0.023114735260606,-0.039432477205992],[0.0047733555547893,-0.020112985745072,0.0079311775043607]],[[-0.011262403801084,-0.0034791333600879,-0.088098123669624],[-0.0012791668996215,0.0069948863238096,-0.062366660684347],[0.013090405613184,0.010938978753984,0.083880394697189]],[[-0.013973200693727,0.010496023111045,0.028155209496617],[0.047696188092232,0.01033537555486,0.036901693791151],[-0.0067150434479117,-0.061701793223619,-0.028906721621752]],[[-0.13433262705803,0.049806762486696,-0.087815344333649],[0.11991014331579,-0.08644026517868,0.066950879991055],[0.012867949903011,0.10274413228035,-0.050131760537624]],[[-0.040194496512413,-0.012374611571431,-0.078265443444252],[-0.011884389445186,-0.10073215514421,-0.03289944678545],[0.024003464728594,0.015696093440056,-0.0038055428303778]],[[-0.014013337902725,-0.019454808905721,0.063144400715828],[-0.00034677336225286,-0.013054581359029,0.011475778184831],[0.033538065850735,0.035475123673677,0.040784630924463]],[[-0.037512224167585,-0.0085179870948195,0.029722502455115],[-0.05949904024601,-0.061582189053297,0.025341322645545],[0.032326679676771,0.0049574505537748,0.033986877650023]],[[0.0034075386356562,-0.010136114433408,0.0050280909053981],[0.080953910946846,-0.03544619679451,-0.074651964008808],[0.065166041254997,0.061385747045279,-0.020038705319166]],[[-0.01146933902055,-0.013169168494642,-0.023032285273075],[0.058043919503689,0.003974842838943,-0.0017971766646951],[0.074746005237103,0.016829648986459,0.074446476995945]],[[-0.028843743726611,0.015133360400796,-0.027564456686378],[-0.076116517186165,-0.0044937245547771,0.030119052156806],[0.041563473641872,0.053457736968994,0.034901708364487]],[[0.062171872705221,0.086386300623417,-0.068758681416512],[0.010142430663109,0.024146802723408,-0.096331670880318],[-0.037267290055752,-0.018392827361822,0.0051417499780655]],[[0.030034516006708,0.00097993982490152,-0.029849112033844],[-0.063983514904976,-0.05231910571456,0.092162281274796],[-0.021991768851876,-0.022704441100359,-0.091538913547993]],[[0.023138837888837,0.0070109707303345,-0.052129689604044],[-0.018652839586139,0.052196234464645,-0.071433417499065],[-0.032009199261665,0.0011030123569071,0.012215836904943]],[[-0.05159118399024,-0.031835354864597,0.049155466258526],[0.044318675994873,-0.023363808169961,0.015472261235118],[0.03445652499795,0.013949363492429,0.0039501842111349]],[[0.0056632766500115,0.049150947481394,-0.038602419197559],[-0.010429637506604,-0.0075655463151634,-0.0952472910285],[0.018480747938156,0.007830198854208,-0.0071027083322406]],[[-0.023173475638032,0.069298438727856,-0.017152793705463],[-0.013893062248826,0.043769095093012,-0.070410311222076],[0.069476373493671,0.020795380696654,-0.025568732991815]],[[0.025522854179144,-0.061982870101929,-0.021770158782601],[0.039173718541861,-0.0036295265890658,-0.0038307984359562],[0.038424085825682,0.027184700593352,0.042223032563925]],[[0.0021350446622819,-0.079294137656689,0.0095641314983368],[-0.041202291846275,0.027308478951454,0.018172262236476],[0.015224752016366,0.031939830631018,0.016722900792956]],[[-0.018415424972773,-0.0029353559948504,-0.050809729844332],[0.054555885493755,0.0083448961377144,0.0037707486189902],[-0.0028982465155423,-0.0040233144536614,0.035531919449568]],[[-0.0042449277825654,0.0067315963096917,-0.0070259547792375],[-0.030960781499743,-0.02419750764966,-0.0018996513681486],[0.0053944163955748,0.019693061709404,-0.0098061729222536]],[[-0.012599291279912,0.043325338512659,0.018810758367181],[0.014681471511722,-0.012478380464017,-0.0088354563340545],[0.025978792458773,0.077687859535217,0.0079029016196728]],[[-0.010986281558871,0.024973241612315,0.0065177399665117],[0.029348419979215,0.02569249458611,0.019551696255803],[0.015327911823988,0.032958153635263,0.015477356500924]],[[0.012197097763419,-0.057816620916128,0.027649525552988],[0.0017889695009217,0.062492422759533,-0.073900766670704],[0.032992411404848,0.012718381360173,-0.0034170234575868]],[[-0.043591231107712,0.011396740563214,0.025189267471433],[0.052653767168522,0.036310169845819,-0.035217955708504],[-0.02636507153511,0.009403470903635,0.0091742007061839]],[[-0.016059620305896,-0.059310417622328,-0.015673130750656],[0.065386436879635,-0.086825452744961,-0.018662296235561],[0.034064583480358,-0.025911066681147,0.0512450709939]],[[-0.033530786633492,0.021344346925616,-0.030451619997621],[-0.010138235986233,0.020726546645164,-0.058150433003902],[-0.018362475559115,-0.031414959579706,-0.12273506820202]],[[-0.0071771387010813,-0.066986002027988,0.0017843621317297],[-0.017747268080711,0.050354886800051,-0.006748013664037],[-0.021072275936604,-0.036871798336506,0.0060368808917701]],[[0.024253016337752,0.013180995360017,0.059355102479458],[0.016510786488652,0.011698707938194,-0.0028407659847289],[-0.037960734218359,-0.0075657516717911,-0.055552236735821]],[[0.054779469966888,0.051887273788452,0.038237307220697],[-0.0025412745308131,-0.061290133744478,0.016891958191991],[-0.035331089049578,0.040643848478794,0.01350215729326]],[[-0.062556058168411,-0.025901470333338,0.025245107710361],[0.0050478056073189,0.024939058348536,0.082151785492897],[-0.074479132890701,0.015922151505947,-0.048764526844025]],[[0.01773383282125,-0.028934353962541,0.042155027389526],[0.031236669048667,-0.046056400984526,-0.011856907047331],[0.0062112445011735,0.056562129408121,-0.060333706438541]],[[0.039163801819086,-0.036661215126514,-0.02932645753026],[-0.0068831159733236,0.017900943756104,-0.034302048385143],[-0.023025773465633,0.045801486819983,0.016485061496496]]],[[[-0.061126586049795,0.053569935262203,-0.011078740470111],[-0.017540378496051,0.039539180696011,0.00087173213250935],[0.034472662955523,0.094592228531837,-0.047872383147478]],[[0.027264967560768,0.019881030544639,-0.017332958057523],[-0.029699994251132,-0.019492320716381,-0.05883864313364],[0.026659809052944,0.0033400086686015,0.037720002233982]],[[0.031927209347486,-0.0098653100430965,0.0037478934973478],[-0.023061934858561,0.016986463218927,-0.036570094525814],[-0.031875189393759,0.040337596088648,-0.037104677408934]],[[0.034786656498909,0.039125677198172,0.048445545136929],[0.011479654349387,0.0073257344774902,-0.041019853204489],[0.036015801131725,-0.0085261454805732,0.028522023931146]],[[0.052956860512495,-0.036921739578247,-0.022383578121662],[-0.021645050495863,-0.023999037221074,0.017455298453569],[0.030215281993151,-0.019884034991264,-0.0028340280987322]],[[0.039545103907585,0.091122753918171,0.067992717027664],[-0.051473006606102,-0.011056764051318,0.012593944557011],[-0.035587601363659,0.016228817403316,0.041967146098614]],[[0.00066941336262971,0.014667467214167,-0.013579762540758],[-0.065328665077686,-0.0049633458256721,0.063440389931202],[0.008000161498785,0.058711260557175,-0.053782567381859]],[[0.020907903090119,-0.065678745508194,0.01189542375505],[-0.0093907006084919,-0.018326729536057,0.039102610200644],[-0.035634882748127,0.029487801715732,0.0015559636522084]],[[-0.048596937209368,0.021946536377072,0.090855941176414],[0.010067656636238,0.072552196681499,-0.014896214939654],[0.0025082975625992,0.0074711763300002,-0.046938981860876]],[[-0.0030994624830782,-0.0075833001174033,-0.00011040378012694],[0.0078943111002445,-0.047413289546967,0.053277920931578],[-0.038710560649633,-0.0051534785889089,-0.0057687829248607]],[[0.010716677643359,0.020582471042871,0.084384962916374],[-0.010567096993327,-0.030562851577997,-0.011945284903049],[-0.014374840073287,0.013698453083634,0.023302363231778]],[[0.028450649231672,-0.0061464924365282,0.019941363483667],[0.027642164379358,-0.017261626198888,0.072032541036606],[-0.025105535984039,-0.063249565660954,-0.011044232174754]],[[0.043631576001644,0.021026642993093,-0.00077440752647817],[0.056095261126757,0.050873652100563,0.021911460906267],[-0.004769038874656,-0.02037656493485,-0.064577475190163]],[[-0.017627434805036,0.021439801901579,-0.06650897860527],[-0.014420256018639,0.027847344055772,0.0082194358110428],[0.027074910700321,-0.046930238604546,0.013608770444989]],[[0.02160732075572,-0.022613106295466,0.016676148399711],[0.013859861530364,-0.055761948227882,-0.044468346983194],[0.03786713629961,0.015576438046992,-0.040874991565943]],[[-0.030635613948107,0.067736618220806,0.0014051520265639],[-0.0046183643862605,0.016757665202022,0.017473747953773],[-0.026717826724052,0.035477742552757,0.02542425878346]],[[0.11471214145422,-0.014822431840003,0.037425432354212],[0.030609292909503,0.038048803806305,0.022968042641878],[0.038938026875257,-0.016366070136428,-0.010088942945004]],[[-0.036526266485453,-0.042066287249327,-0.019135676324368],[-0.016952512785792,0.081948950886726,0.013442602939904],[-0.022726243361831,-0.083070553839207,-0.00052899197908118]],[[0.010380274616182,-0.025397930294275,-0.022768640890718],[-0.10352402925491,0.0073457639664412,0.054493363946676],[-0.014366509392858,0.020775772631168,0.03162208199501]],[[-0.0097359782084823,0.020867396146059,-0.057207267731428],[0.033912815153599,0.039444483816624,0.026066428050399],[0.037806235253811,0.02827363461256,0.00051447248551995]],[[0.015443216077983,0.014306664466858,0.0013164894189686],[0.012934675440192,0.035157039761543,-0.056580618023872],[-0.07280757278204,0.0025296385865659,0.061008509248495]],[[-0.0046208878047764,0.025184277445078,0.016483712941408],[0.039483681321144,0.087500020861626,0.069171898066998],[-0.021679271012545,0.0030569571536034,-0.034177869558334]],[[0.049463957548141,0.1096251681447,-0.03519156947732],[0.048998489975929,0.02959406748414,-0.0073027559556067],[-0.047928310930729,-0.006200497969985,-0.012756274081767]],[[0.013239942491055,-0.039073906838894,-0.046623405069113],[0.055557955056429,-0.019655879586935,-0.016426660120487],[0.031522441655397,0.11755234003067,0.025046486407518]],[[0.021386591717601,0.014045747928321,0.0045486427843571],[0.050689201802015,0.033835612237453,-0.081107400357723],[-0.017161287367344,0.013418652117252,0.00032366919913329]],[[-0.030891662463546,0.043199226260185,0.056880615651608],[-0.017600081861019,-0.10061755031347,-0.047556705772877],[0.0070176473818719,-0.0016652988269925,0.0019911755807698]],[[0.031598456203938,0.030103087425232,-0.01072315685451],[0.037402879446745,0.00031938473694026,0.016097513958812],[0.016058083623648,-0.036029245704412,-0.012616119347513]],[[0.061521101742983,-0.094626776874065,-0.048335805535316],[0.054264403879642,0.066503711044788,0.0034566642716527],[0.053001064807177,0.015507170930505,-0.054943896830082]],[[-0.016475217416883,-0.02267337962985,-0.027596097439528],[0.019163075834513,-0.014558843336999,-0.01449482049793],[0.022033795714378,0.10358600318432,-0.020774321630597]],[[0.079972520470619,-0.021216189488769,-0.061109941452742],[-0.0035566710866988,0.0025883303023875,-0.029071783646941],[-0.078376792371273,0.04505717381835,0.0035056280903518]],[[0.050672702491283,-0.091618612408638,-0.041493538767099],[0.031746599823236,-0.0043770475313067,0.043065123260021],[-0.058207973837852,-0.029632490128279,-0.021438840776682]],[[0.038668263703585,-0.045112282037735,-0.064714893698692],[-0.064574532210827,-0.031753361225128,-0.0039653521962464],[0.089923799037933,-0.013831707648933,-0.03318303078413]],[[0.090672194957733,0.0357447527349,-0.054148271679878],[-0.0054740943014622,0.095334827899933,-0.025155628100038],[-6.5926928073168e-05,-0.0028969421982765,0.0093724317848682]],[[0.0082620345056057,0.0036565116606653,0.010094979777932],[0.047328051179647,-0.033645763993263,-0.097727179527283],[0.0024153955746442,0.018457224592566,0.066958352923393]],[[0.051276247948408,0.0025400663726032,-0.033897157758474],[-0.0068971584551036,0.084631614387035,0.0097683239728212],[0.047370437532663,-0.0082787740975618,0.011747697368264]],[[0.039639480412006,0.077845804393291,-0.075339764356613],[-0.024115882813931,0.057426374405622,0.024607989937067],[0.078184433281422,-0.0097049521282315,-0.033488396555185]],[[0.07498575001955,-0.041940215975046,-0.046745803207159],[-0.074982389807701,0.028053976595402,0.080203026533127],[0.042427636682987,-0.021300407126546,-0.072573490440845]],[[-0.032288238406181,0.024712555110455,0.02684978581965],[-0.025157529860735,0.028039339929819,0.08317905664444],[0.021990597248077,0.035004679113626,0.03836028650403]],[[-0.053522616624832,-0.0017732998821884,-0.020557241514325],[-0.07016134262085,0.026032762601972,-0.030582390725613],[0.092236123979092,0.036335073411465,-0.015160820446908]],[[0.046703960746527,-0.012919164262712,0.019132919609547],[0.092700503766537,0.02208916656673,0.0081553710624576],[-0.051323048770428,-0.0026105432771146,0.041267339140177]],[[0.068881295621395,0.063315875828266,-0.09236953407526],[-0.012507369741797,-0.029391219839454,-0.091390244662762],[0.032694227993488,-0.056294795125723,-0.026091575622559]],[[0.029139874503016,0.072449274361134,0.010680889710784],[0.015429988503456,-0.039674200117588,-0.032204899936914],[0.061091780662537,-0.062844686210155,0.11247128993273]],[[-0.027722561731935,-0.013933185487986,0.061097946017981],[0.028488963842392,-0.009841219522059,0.026799207553267],[0.043137811124325,0.046764019876719,0.042203743010759]],[[0.0065430449321866,-0.031007332727313,-0.031492218375206],[0.014908292330801,-0.042646821588278,-0.055909790098667],[0.0029930968303233,0.00089898507576436,-0.01893475279212]],[[-0.042185325175524,0.0035198254045099,0.0014976728707552],[0.017043147236109,0.034584429115057,0.01179775968194],[0.061912231147289,-0.066015131771564,0.024563055485487]],[[0.034378975629807,0.0049409377388656,0.023028127849102],[-0.067264154553413,0.044328104704618,-0.066048763692379],[-0.023712888360023,0.010514783672988,0.022603852674365]],[[0.048205446451902,-0.051187634468079,-0.0065848948433995],[-0.018731810152531,-0.017183100804687,0.057070501148701],[0.07272220402956,0.033148467540741,-0.026045432314277]],[[-0.040172513574362,-0.031775124371052,0.021857030689716],[0.038269840180874,0.044916912913322,-0.024433676153421],[-0.097712986171246,-0.056754119694233,0.069924965500832]],[[0.00075334153370932,0.013096854090691,0.032113119959831],[0.058421045541763,0.045391477644444,-0.014167510904372],[0.06489622592926,0.0065103811211884,0.066977635025978]],[[0.038310490548611,0.084176577627659,-0.10828952491283],[-0.0073893368244171,-0.030084203928709,0.018674204126],[0.04325245320797,-0.080473408102989,-0.11521008610725]],[[0.039885450154543,-0.071225851774216,-0.024461327120662],[-0.069342724978924,0.035129446536303,-0.034299802035093],[0.03137680888176,0.01109001878649,0.038969751447439]],[[-0.0096887294203043,0.087628878653049,-0.032466236501932],[0.034512862563133,0.00043575547169894,-0.0056544579565525],[0.026700733229518,-0.0057923165149987,0.089469403028488]],[[0.033506061881781,-0.010652677156031,-0.015719586983323],[-0.031260866671801,0.043550431728363,-0.0054310094565153],[0.027040854096413,0.036857828497887,-0.0083095291629434]],[[-0.029564902186394,-0.025332281365991,-0.026143115013838],[0.035043023526669,0.0044913804158568,-0.031614817678928],[-0.047034595161676,-0.020933523774147,0.057680118829012]],[[0.081791073083878,-0.045636106282473,0.038391388952732],[0.041904293000698,-0.031936913728714,0.0082317581400275],[-0.061600476503372,0.09239586442709,-0.025659386068583]],[[0.0035374604631215,-0.034536384046078,0.045769441872835],[-0.016791917383671,0.022233188152313,-0.11289162933826],[0.14202140271664,-0.06078602746129,0.02841130271554]],[[0.019770883023739,0.032804653048515,0.0020968394819647],[0.01044796500355,0.02104614302516,-0.014255496673286],[0.018166108056903,0.060275975614786,-0.052199307829142]],[[0.036841779947281,-0.015399261377752,-0.032979983836412],[0.028335740789771,0.0084358807653189,0.0020656336564571],[0.02426927909255,-0.031736366450787,-0.026385998353362]],[[-0.068786315619946,0.039221849292517,0.057332150638103],[-0.075495555996895,0.020751209929585,0.042340781539679],[0.029290912672877,0.013446467928588,-0.058452609926462]],[[-0.013328454457223,0.040586929768324,-0.0058861500583589],[0.12933380901814,0.063916087150574,0.040387958288193],[0.070471994578838,-0.065841630101204,-0.030284240841866]],[[-0.057139798998833,0.06657325476408,0.032601792365313],[-0.022929187864065,0.013260847888887,0.021930193528533],[-0.028836330398917,0.033346615731716,-0.039627753198147]],[[0.051821753382683,0.00030407091253437,0.011729978956282],[-0.023740280419588,-0.024776889011264,-0.0094855753704906],[-0.021914323791862,0.058231372386217,0.034549556672573]],[[0.0097552351653576,0.013833597302437,0.073520980775356],[-0.01779399253428,0.0041939024813473,-0.0074941217899323],[0.00082024658331648,0.047719299793243,0.069321401417255]],[[-0.044831976294518,-0.0036570471711457,0.038066782057285],[0.0087736183777452,-0.022148812189698,-0.027474680915475],[0.01522855181247,0.0026632680092007,0.010739075951278]],[[-0.0066938493400812,-0.043058600276709,-0.034551575779915],[0.096770361065865,0.058610580861568,-0.0078986966982484],[0.006439995020628,0.013382541947067,-0.041826941072941]],[[0.0016774480463937,0.053510501980782,-0.03369140997529],[-0.10943192243576,0.060140449553728,0.0031717447564006],[0.021467814221978,0.0042889760807157,0.095218770205975]],[[-0.052647221833467,-0.009632402099669,0.028191851451993],[-0.057395540177822,-0.05454184487462,-0.079369634389877],[-0.018112564459443,0.0055356691591442,0.026530534029007]],[[0.010129022412002,-0.033061824738979,-0.034867532551289],[-0.03392493352294,-0.017368257045746,-0.01122734695673],[0.012073047459126,0.038724090903997,-0.025152705609798]],[[0.0018151707481593,0.0083822160959244,0.038937047123909],[-0.03228472545743,-0.029196372255683,0.02195093780756],[-0.01449353992939,-0.039340373128653,0.04269814491272]],[[-0.01561385486275,0.0029331997502595,0.018695862963796],[-0.077384427189827,-0.0029003969393671,0.017699914053082],[0.015561887994409,-0.025294106453657,-0.031658761203289]],[[0.0084902578964829,-0.045951388776302,0.035922680050135],[-0.023291982710361,-0.021659752354026,0.038483109325171],[-0.015021828003228,-0.01748345606029,-0.032940354198217]],[[-0.003043599659577,-0.04609689861536,0.028783056885004],[0.028208333998919,0.035753227770329,0.030553741380572],[-0.063189104199409,0.059356402605772,-0.043203435838223]],[[0.020629271864891,0.024560743942857,0.019123809412122],[-0.017433078959584,-0.075069516897202,0.048866398632526],[-0.044206812977791,-0.013963310047984,-0.064487293362617]],[[-0.027146643027663,-0.054355222731829,-0.055656272917986],[-0.016741221770644,0.028227165341377,-0.037363164126873],[-0.033660724759102,0.073300890624523,0.036158002912998]],[[0.037700686603785,-0.0083921058103442,0.089024752378464],[0.076697111129761,-0.0070582092739642,-0.010243114084005],[-0.023789094761014,-0.026739785447717,-0.0093914484605193]],[[-0.021228980273008,0.019887348636985,-0.021225174888968],[-0.023782193660736,0.011233928613365,-0.035498913377523],[-0.041404515504837,-0.016483759507537,0.025456918403506]],[[0.018006253987551,-0.025096775963902,-0.011056547984481],[-0.038361087441444,0.014717547222972,-0.035376776009798],[-0.036679472774267,0.038812056183815,-0.021202182397246]],[[-0.022245481610298,0.054551105946302,0.021170830354095],[-0.0081026209518313,0.0023843611124903,-0.021850869059563],[0.01748775318265,-0.026122458279133,0.049203235656023]],[[0.0030081206932664,-0.05154712870717,-0.0083883441984653],[-0.034509863704443,-0.0035944455303252,-0.036598823964596],[0.028133921325207,0.0085949087515473,-0.0055923955515027]],[[0.016562281176448,0.025158051401377,-0.023679103702307],[0.007827770896256,0.014434775337577,-0.024618377909064],[0.024444755166769,-0.060061033815145,0.0086593246087432]],[[-0.069162502884865,-0.048489674925804,0.040345028042793],[0.019871693104506,-0.017594953998923,-0.0054513136856258],[-0.0059989830479026,0.00073823699494824,-0.0039475313387811]],[[0.043923731893301,0.0073836729861796,0.073161534965038],[-0.012181189842522,-0.07931150496006,0.0012265860568732],[-0.1199344843626,-0.0290313847363,0.031144965440035]],[[0.014933138154447,-0.0094981491565704,0.048482723534107],[-0.01264660526067,-0.041486468166113,0.026893896982074],[0.013578939251602,-0.0014243596233428,0.040585156530142]],[[0.080724857747555,0.066248156130314,-0.0014381285291165],[0.027122220024467,-0.02077511139214,0.035902041941881],[0.021030977368355,-0.051926530897617,0.053780376911163]],[[-0.0016162972897291,-0.014468719251454,-0.023238511756063],[0.011694046668708,-0.10840670019388,0.088403508067131],[-0.020851340144873,0.015342456288636,0.053847309201956]],[[-0.066560186445713,0.019278263673186,0.041585572063923],[0.010044330731034,0.029523199424148,-0.043637119233608],[0.0089296316727996,0.041955340653658,0.030132813379169]],[[-0.01597348228097,0.02429173886776,-0.028967482969165],[-0.034325886517763,-0.022011859342456,0.039884921163321],[-0.023886578157544,0.072233602404594,-0.00072303152410313]],[[0.0045890435576439,0.028540754690766,-0.086747944355011],[-0.035720802843571,0.027224184945226,-0.0015455007087439],[0.037125892937183,0.037323247641325,0.041527424007654]],[[0.09051825106144,-0.013212381862104,-0.064700126647949],[-0.025424862280488,0.0064132413826883,0.035234563052654],[0.053692031651735,-0.050136275589466,0.042153619229794]],[[-0.019526552408934,0.010143043473363,-0.06969315558672],[0.046829111874104,0.0024082271847874,-0.037439167499542],[0.018541172146797,-0.0031869916711003,0.0078822607174516]],[[0.0018705558031797,-0.0068303365260363,0.0087218526750803],[-0.0025514776352793,0.096618980169296,0.054605573415756],[0.052354283630848,-0.00016777153359726,0.054396487772465]],[[0.013024010695517,0.032255198806524,-0.036727242171764],[-0.051025658845901,0.025347108021379,-0.016187051311135],[-0.090932816267014,0.025895839557052,0.057517927139997]],[[-0.022228138521314,0.0097197368741035,-0.00017777846369427],[-0.051413610577583,0.011427552439272,0.01223879866302],[-0.022180469706655,-0.048624519258738,0.029600016772747]],[[-0.054336309432983,0.043281480669975,0.0024736549239606],[0.030364019796252,-0.040677588433027,-0.050379313528538],[0.034260232001543,-0.060415178537369,-0.0016193278133869]],[[-0.016794092953205,-0.018826693296432,-0.044085070490837],[-0.073210023343563,0.028829120099545,-0.087805040180683],[-0.02580731920898,0.065071821212769,-0.034305606037378]],[[0.0029704938642681,-0.0034109579864889,-0.0096263848245144],[0.053117983043194,0.004192422144115,0.032003078609705],[0.011951084248722,0.092564381659031,0.01523285266012]],[[0.0076175956055522,0.012691766023636,-0.033657174557447],[0.06710658967495,0.0064939497970045,-0.0040983110666275],[0.07499648630619,0.038179781287909,-0.013699212111533]],[[0.017672300338745,-0.08413103222847,0.056063111871481],[-0.08260390907526,-0.049066293984652,-0.021130634471774],[0.096729636192322,-0.013312083669007,-0.030785599723458]],[[-0.047678902745247,-0.044093575328588,0.017558431252837],[0.018800349906087,0.048198074102402,-0.0035573770292103],[-0.001424339832738,0.030886590480804,-0.01250356528908]],[[-0.047600980848074,-0.049369223415852,0.032814517617226],[-0.017592946067452,-0.017245320603251,-0.021852884441614],[-0.037034749984741,-0.0010610549943522,0.0074513051658869]],[[0.012250665575266,0.038873367011547,0.036362744867802],[-0.082782737910748,-0.058969717472792,-0.0044256313703954],[0.057698640972376,0.071886591613293,1.0172361726291e-05]],[[-0.027908651158214,-0.047415945678949,0.028915582224727],[0.0076018911786377,-0.065147340297699,0.0059368507936597],[-0.045349948108196,-0.014319164678454,0.017004380002618]],[[0.009239406324923,0.02351788431406,0.074887730181217],[-0.033678572624922,0.0082141477614641,0.0064897695556283],[-0.057116348296404,-0.0694230645895,0.0030634345021099]],[[-0.00074675842188299,-0.0079704383388162,-0.051812283694744],[0.025438081473112,0.015480161644518,-0.023212365806103],[-0.041511684656143,-0.086361557245255,0.020498527213931]],[[0.01023658271879,0.066048592329025,-0.037923242896795],[-0.0052603236399591,0.060020923614502,-0.024911796674132],[-0.043689057230949,0.025679664686322,-0.0036701592616737]],[[-0.033327221870422,-0.022831466048956,-0.0091504473239183],[-0.059714544564486,-0.062937118113041,-0.079249739646912],[0.0083148153498769,-0.042636856436729,-0.026623785495758]],[[-0.047609858214855,0.02837635949254,0.067519851028919],[0.0031799282878637,-0.025432230904698,0.013726675882936],[-0.047998759895563,0.08190481364727,-0.0097276968881488]],[[-0.01149495691061,-0.069667793810368,0.052536495029926],[0.057025872170925,-0.031419735401869,0.02940527908504],[0.0018521354068071,-0.044160101562738,0.0044126943685114]],[[0.026447415351868,0.0038126187864691,0.013512783683836],[0.020150225609541,0.071009837090969,-0.01595801115036],[-0.055182080715895,0.045372318476439,-0.064881131052971]],[[-0.04232844337821,0.008398350328207,0.0010574763873592],[0.0026981455739588,0.0068992762826383,0.03593859449029],[0.006319587584585,0.0072419266216457,-0.028895650058985]],[[0.036938052624464,0.021344181150198,0.084286198019981],[0.0068734246306121,-0.031198455020785,0.032824423164129],[0.0097123058512807,0.064170733094215,0.02244389615953]],[[-0.025311533361673,0.0075512086041272,-0.0036224089562893],[-0.03410442173481,0.084470085799694,-0.014543636702001],[-0.013411187566817,-0.0073709040880203,-0.041126776486635]],[[0.017562698572874,0.04086359590292,-0.038109574466944],[0.014710800722241,0.0051095439121127,-0.053753145039082],[0.091114394366741,-0.024367373436689,-0.011274099349976]],[[0.023284709081054,-0.044866055250168,0.00090875977184623],[0.025021687150002,-0.015904482454062,-0.00076740683289245],[0.036973889917135,-0.049654047936201,0.027143998071551]],[[-0.0025308497715741,0.028773637488484,-0.013121169060469],[0.0036237866152078,0.036018256098032,-0.045107070356607],[0.025028087198734,-0.0033214201685041,-0.016499506309628]],[[-0.047621291130781,-0.042828932404518,-0.058838985860348],[0.063670113682747,-0.0080349976196885,-0.026410505175591],[-0.13890251517296,-0.099117487668991,0.023927748203278]],[[0.015635969117284,0.010850630700588,0.0087138647213578],[-0.0071910158731043,-0.044464770704508,0.061334166675806],[0.0025843845214695,0.045287504792213,0.0096853822469711]],[[0.046637423336506,-0.020439274609089,-0.015706889331341],[0.025435725226998,-0.040139649063349,0.027381671592593],[-0.012038166634738,-0.0023385714739561,0.025052243843675]],[[0.027943000197411,-0.012694496661425,0.0087982341647148],[-0.059890914708376,0.00031386970658787,0.013339689932764],[-0.050770744681358,0.0019091548165306,-0.019618047401309]],[[0.066813252866268,-0.06006034091115,-0.023091495037079],[-0.0046133133582771,0.049518764019012,0.060733821243048],[0.035836834460497,-0.031404282897711,0.010421336628497]],[[0.022299589589238,-0.03506039455533,-0.012764084152877],[0.052417181432247,0.07157015055418,0.038392975926399],[-0.012305379845202,-0.025418847799301,-0.072971358895302]],[[-0.068659424781799,0.02530900016427,0.11312821507454],[0.069538474082947,-0.0015848061302677,0.064258836209774],[-0.019227089360356,-0.026872156187892,0.026065928861499]],[[-0.0074776918627322,0.042878597974777,0.029470946639776],[-0.05377584695816,0.011735966429114,-0.030781960114837],[0.015872456133366,0.072330832481384,0.032402161508799]],[[0.075967684388161,-0.0046307006850839,-0.078285813331604],[-0.05480995029211,-0.038820821791887,0.015158542431891],[0.022838739678264,0.010978550650179,-0.050963569432497]],[[0.018976531922817,0.028566919267178,0.012248787097633],[-0.019240621477365,-0.024932656437159,-0.076223231852055],[-0.016402600333095,-0.02837879024446,0.020398749038577]],[[-0.025978859513998,-0.043489214032888,0.06327410787344],[-0.074570178985596,0.0013597296783701,0.016332691535354],[-0.013999950140715,0.039117354899645,-0.0014929480385035]],[[-0.048934355378151,-0.0041391332633793,0.013055413030088],[-0.010816996917129,0.035963132977486,-0.12530283629894],[-0.0014227589126676,-0.046348545700312,0.0020457848440856]],[[0.040682755410671,-0.0448357462883,0.013449617661536],[0.056422732770443,-0.037084776908159,-0.048479955643415],[0.018723869696259,-0.030292863026261,-0.087379463016987]]],[[[-0.00070305331610143,-0.098556831479073,-0.28271010518074],[0.0068134944885969,-0.048162862658501,-0.016707630828023],[-0.0057796034961939,0.057926390320063,0.0027602093759924]],[[-0.14893689751625,-0.035304099321365,0.012458242475986],[-0.027269272133708,0.16864231228828,0.0040879677981138],[0.039602447301149,0.061972208321095,-0.043505862355232]],[[-0.030217533931136,-0.073118470609188,0.0021139727905393],[0.16477818787098,0.018341371789575,-0.052913259714842],[0.051500681787729,0.0014889676822349,0.0023162344004959]],[[0.087375789880753,0.053878083825111,0.024974655359983],[0.035235434770584,-0.069855682551861,-0.11716421693563],[0.06548535078764,0.12978817522526,0.015289769507945]],[[0.25747212767601,-0.17869351804256,0.052332952618599],[0.13996900618076,-0.058048073202372,0.081733666360378],[-0.045958574861288,-0.028576198965311,-0.012818360701203]],[[-0.086327262222767,0.03443307057023,0.096409775316715],[0.0054235900752246,-0.052721720188856,0.19739492237568],[-0.0029500115197152,-0.020827896893024,0.10059869289398]],[[0.025191692635417,-0.051561489701271,-0.011711203493178],[-0.029742343351245,0.002955564064905,-0.067752823233604],[-0.05914719030261,0.034490033984184,0.040658548474312]],[[0.29962056875229,0.097557581961155,0.28491735458374],[-0.0089981779456139,0.056130144745111,0.081629939377308],[-0.12377074360847,-0.041834946721792,-0.16762463748455]],[[-0.24122588336468,-0.08226627856493,0.25267985463142],[-0.072637967765331,0.021529570221901,0.11891232430935],[0.057111244648695,-0.078229114413261,0.12248273938894]],[[-0.060799289494753,0.054821468889713,-0.16484659910202],[-0.029769863933325,0.0023917627986521,-0.078416548669338],[-0.071013405919075,0.069903612136841,-0.060460668057203]],[[0.16608934104443,0.077979601919651,0.11398677527905],[0.063007675111294,-0.0041169766336679,0.045604102313519],[-0.061520617455244,-0.023543084040284,-0.15473482012749]],[[0.10915891081095,-0.054020762443542,0.07235237210989],[-0.12810821831226,-0.026320172473788,0.099383242428303],[0.047446183860302,-0.0036654088180512,-0.096333093941212]],[[0.013763280585408,-0.013587596826255,0.0018320466624573],[0.098358437418938,-0.029640953987837,0.090530976653099],[-0.049394890666008,-0.0036646574735641,0.12585580348969]],[[0.017289279028773,0.05085114389658,0.010312067344785],[0.0015209657140076,0.11139243841171,0.015301410108805],[0.019382519647479,-0.012597306631505,0.011322818696499]],[[-0.10992431640625,-0.072645932435989,-0.02661550976336],[-0.046346820890903,0.08671996742487,0.10032992810011],[0.076944723725319,-0.030732719227672,-0.10502745956182]],[[-0.093624800443649,-0.039945635944605,0.021234676241875],[-0.070578292012215,-0.21326665580273,-0.10243967920542],[0.31218108534813,-0.12768906354904,-0.038128077983856]],[[-0.077256135642529,-0.098070897161961,0.0028137709014118],[0.043917313218117,-0.028635930269957,-0.0085782501846552],[0.31207105517387,0.1828857511282,-0.014807543717325]],[[-0.0083124050870538,0.25934213399887,0.094393022358418],[-0.03222880512476,0.010832254774868,-0.077392548322678],[-0.30998262763023,-0.085188798606396,0.062068335711956]],[[0.12309445440769,0.24766273796558,-0.10121947526932],[-0.046547338366508,0.130460485816,-0.094981074333191],[-0.0099634621292353,-0.14522659778595,-0.032056387513876]],[[0.014826570637524,0.044182326644659,0.078258961439133],[-0.096562288701534,-0.11770267784595,-0.068169109523296],[0.035316832363605,0.10377375781536,-0.007193913217634]],[[-0.072508186101913,0.052499085664749,0.089655265212059],[-0.22758251428604,-0.012752380222082,0.10547571629286],[0.10278584808111,-0.25954174995422,-0.016138564795256]],[[-0.12668824195862,0.057491086423397,0.066895835101604],[-0.19748774170876,0.082031928002834,-0.042352113872766],[-0.12272153794765,0.064618766307831,0.14576950669289]],[[-0.012645959854126,-0.0020367468241602,0.036031901836395],[-0.025362590327859,-0.0054024569690228,0.12835364043713],[-0.013959676958621,-0.051785182207823,-0.012197851203382]],[[-0.029675817117095,-0.034542724490166,0.059407308697701],[-0.12437693029642,0.064963638782501,-0.025654701516032],[0.097314953804016,-0.053603425621986,-0.11464408040047]],[[-0.048245169222355,-0.024494813755155,0.025949278846383],[-0.10324776917696,0.040661063045263,-0.018404753878713],[0.07960606366396,0.0078596705570817,-0.11656524986029]],[[-0.12729381024837,-0.087484754621983,-0.016482803970575],[-0.046086400747299,-0.04357261583209,0.027658207342029],[-0.05829343944788,-0.086221717298031,0.0034931509289891]],[[-0.094628319144249,0.24181887507439,0.071244671940804],[-0.15759015083313,0.10504603385925,0.011675134301186],[0.029017325490713,0.067881777882576,-0.18137216567993]],[[0.13740032911301,0.031880129128695,-0.098142459988594],[-0.014871495775878,-0.0023220111615956,-0.10539558529854],[-0.039694759994745,0.010055528022349,-0.043682616204023]],[[-0.025188146159053,0.018360523506999,0.056277923285961],[-0.14212520420551,-0.036300398409367,0.14358422160149],[0.03782432153821,-0.12052626907825,-0.047637041658163]],[[0.030766198411584,-0.11092111468315,-0.0027565690688789],[0.19091719388962,-0.08404703438282,-0.0027180453762412],[-0.011056868359447,-0.098088704049587,0.085937693715096]],[[0.18032690882683,-0.17258164286613,-0.11880034953356],[-0.1223935931921,-0.24266722798347,-0.060086440294981],[-0.19166314601898,-0.39899006485939,-0.056250441819429]],[[-0.078803688287735,0.07906299829483,0.15817488729954],[0.021986482664943,0.14213544130325,-0.05005894228816],[-0.059808395802975,0.17415164411068,-0.093069724738598]],[[-0.097566522657871,0.23896306753159,0.080505922436714],[-0.072276376187801,0.028946226462722,0.10829944163561],[-0.1076559945941,-0.017813166603446,-0.047063417732716]],[[0.12424147874117,-0.015669159591198,-0.10322519391775],[0.096106372773647,-0.11560681462288,-0.052977841347456],[0.10334013402462,-0.033753227442503,0.085888400673866]],[[-0.092179991304874,-0.043516755104065,-0.099042974412441],[-0.012109524570405,0.065019018948078,-0.1167618855834],[-0.044852338731289,0.1049528196454,-0.027328722178936]],[[-0.093883313238621,0.02727104909718,-0.085462935268879],[-0.19612807035446,0.20110940933228,-0.021138295531273],[-0.068116538226604,0.13702562451363,-0.017826227471232]],[[-0.14084273576736,0.18685165047646,-0.036134097725153],[0.019346665591002,0.057929564267397,0.043402899056673],[-0.01540469750762,-0.25831043720245,-0.083626002073288]],[[-0.058533865958452,0.060038838535547,0.11107283085585],[-0.095516890287399,0.11099178344011,-0.12331592291594],[-0.026217127218843,0.085116229951382,0.043883837759495]],[[-0.042758665978909,-0.016124365851283,0.054141264408827],[0.093960717320442,-0.046842966228724,-0.019542181864381],[0.16340592503548,-0.080028235912323,-0.12846331298351]],[[-0.13371105492115,-0.010207139886916,-0.024541299790144],[-0.044949296861887,0.1048590913415,0.06822207570076],[0.090650245547295,0.18737733364105,0.13685278594494]],[[-0.11016470193863,0.012958757579327,-0.044627707451582],[0.066722504794598,-0.047723278403282,-0.022884152829647],[-0.10225854814053,0.03476857021451,0.026762492954731]],[[0.014905855059624,0.049318719655275,0.071975365281105],[0.087286196649075,-0.023305157199502,0.088749662041664],[0.057298194617033,0.1031484156847,0.030935879796743]],[[0.051778361201286,0.05722177401185,0.017138205468655],[0.057017479091883,-0.060008630156517,-0.013081866316497],[0.027473274618387,0.0078149288892746,0.033132743090391]],[[-0.19003854691982,0.0076350644230843,0.090797610580921],[-0.17657466232777,0.077325999736786,0.099620327353477],[-0.080115772783756,0.12826818227768,-0.01169113535434]],[[-0.15306727588177,-0.11975651234388,-0.047600541263819],[-0.14491671323776,-0.13645385205746,0.0031305553857237],[-0.019356098026037,-0.003671069862321,0.082412302494049]],[[0.14446502923965,0.10135837644339,0.044012572616339],[0.13674288988113,0.09485599398613,0.087782248854637],[0.051127448678017,0.18271107971668,0.072703897953033]],[[-0.032259725034237,-0.0047923317179084,-0.34700900316238],[0.070909112691879,-0.0718142837286,-0.081084564328194],[0.24274398386478,0.11173091828823,0.023155603557825]],[[0.031012520194054,-0.24075630307198,-0.019906280562282],[-0.2491801828146,0.015273754484951,0.065488710999489],[-0.10929951071739,0.098554410040379,-0.009156646206975]],[[0.10173181444407,-0.15559330582619,-0.059646807610989],[-0.054134156554937,-0.014646887779236,-0.024121316149831],[-0.1175125837326,-0.055276583880186,-0.0014851315645501]],[[-0.070186428725719,-0.012122531421483,0.0046064546331763],[0.025090448558331,-0.051002245396376,-0.048414312303066],[-0.02549365721643,-0.022231046110392,0.090848565101624]],[[-0.047410625964403,0.15425202250481,-0.022644786164165],[-0.12003134191036,0.029030028730631,-0.033435575664043],[0.0018317558569834,0.0097344303503633,0.14458835124969]],[[0.012709309346974,0.10119223594666,-0.072003051638603],[-0.035627283155918,0.064909547567368,-0.11019137501717],[-0.11117728054523,-0.06981935352087,-0.036937087774277]],[[-0.075820751488209,0.019577985629439,-0.017547447234392],[-0.088732570409775,0.020116640254855,0.01109067350626],[0.033434823155403,0.059880297631025,0.028955053538084]],[[0.019141158089042,0.0042724930681288,0.024484571069479],[0.081460259854794,-0.022033467888832,0.059930998831987],[-0.018866797909141,0.023143386468291,-0.019852383062243]],[[0.15677514672279,0.067615546286106,-0.11997830867767],[0.075675912201405,0.075222805142403,0.01839666441083],[-0.098747074604034,-0.17450971901417,0.0012114117853343]],[[-0.084789603948593,0.079353496432304,0.090663589537144],[-0.033987153321505,0.022295542061329,0.0024440954439342],[0.11550698429346,-0.052378032356501,-0.078055076301098]],[[-0.063566327095032,0.067586421966553,0.02856233716011],[0.005693472456187,0.067953705787659,-0.039118718355894],[0.10932583361864,0.0028617652133107,-0.089298233389854]],[[0.085914254188538,0.16279174387455,-0.0039977035485208],[-0.057143040001392,-0.031722161918879,-0.050806526094675],[-0.16565605998039,0.042368840426207,-0.050608318299055]],[[0.22912137210369,-0.1600508838892,0.16566073894501],[0.1892656236887,-0.032363586127758,-0.036162637174129],[0.018742522224784,-0.11563134938478,0.20988658070564]],[[0.17279526591301,-0.026381947100163,-0.02162859775126],[-0.12088613957167,0.14506374299526,-0.08583977073431],[0.010695641860366,-0.065281197428703,0.00081337580922991]],[[0.059091120958328,-0.28968232870102,0.062970198690891],[0.15989948809147,-0.12462517619133,0.079526126384735],[0.019297081977129,-0.086550533771515,0.12164806574583]],[[-0.30112808942795,-0.018552346155047,-0.084335148334503],[-0.10566192120314,-0.049944683909416,-0.17641346156597],[-0.085577145218849,-0.097062438726425,-0.34503757953644]],[[0.1272320151329,0.024123180657625,-0.010796815156937],[0.10312233120203,-0.15325720608234,0.0025694284122437],[-0.11171663552523,0.17974714934826,0.14330489933491]],[[-0.017779299989343,0.00058998307213187,-0.052377067506313],[-0.029555108398199,0.033232517540455,-0.079267919063568],[-0.13100242614746,-0.11002585291862,-0.18871280550957]],[[0.036775846034288,-0.12005878984928,-0.016131708398461],[0.11536572128534,-0.072610773146152,-0.054647680372],[0.028177656233311,-0.0099015617743134,0.080123536288738]],[[-0.016681022942066,0.074794717133045,-0.02115092612803],[-0.066164262592793,-0.025244396179914,0.010054085403681],[-0.026983175426722,0.023877583444118,0.12064532935619]],[[0.014026075601578,0.10111393779516,0.019049240276217],[0.054670874029398,-0.034748360514641,-0.045406363904476],[0.0084155490621924,-0.034017596393824,0.036139246076345]],[[0.061771031469107,0.065520964562893,-0.007844447158277],[-0.045597597956657,0.033479142934084,-0.11825429648161],[0.088332638144493,-0.088080130517483,-0.13252364099026]],[[0.053132750093937,-0.088434517383575,-0.025391530245543],[-0.093267358839512,0.10255394876003,0.10489927232265],[0.02234804444015,0.11445695161819,-0.085939295589924]],[[0.088659353554249,-0.076585106551647,0.061421047896147],[-0.046904046088457,-0.037067718803883,0.15969362854958],[-0.035572998225689,-0.13171149790287,0.025263020768762]],[[-0.06067269295454,-0.10364759713411,-0.19825661182404],[0.055918324738741,-0.04182281345129,0.094755828380585],[0.033832307904959,-0.015511445701122,-0.0099128000438213]],[[-0.11468683928251,-0.21472230553627,-0.053783662617207],[0.088027626276016,0.22998106479645,-0.11624959856272],[0.1536553800106,0.1266958117485,-0.03864398598671]],[[0.11803694069386,0.077581912279129,0.063014715909958],[-0.11793527752161,0.16948294639587,0.026135981082916],[-0.16784892976284,0.23410597443581,-0.10879468172789]],[[0.084155313670635,-0.059280417859554,-0.23802080750465],[-0.13443075120449,0.044361896812916,0.0090452739968896],[-0.033564411103725,0.059250745922327,0.011587182059884]],[[-0.12613999843597,-0.050204109400511,-0.01214428152889],[-0.028837008401752,0.019846331328154,-0.021861778572202],[-0.042536646127701,-0.01935863494873,-0.0026710426900536]],[[0.17442941665649,0.050937794148922,-0.082262702286243],[0.047398060560226,-0.19231040775776,-0.079019129276276],[-0.045595142990351,0.042639575898647,0.095113225281239]],[[0.052565332502127,-0.076040551066399,-0.0036833768244833],[-0.056166548281908,-0.095881178975105,0.011580729857087],[-0.19640062749386,-0.17530807852745,0.31723633408546]],[[-0.03744463250041,0.036464892327785,0.067574381828308],[0.00089070928515866,0.09920147061348,0.067386530339718],[0.092912517488003,-0.0082279415801167,0.066925249993801]],[[0.00065269030164927,-0.034902926534414,-0.088845558464527],[-0.011149496771395,-0.049201332032681,-0.051875784993172],[0.018897656351328,-0.040371667593718,0.06383939832449]],[[0.058058381080627,0.16931706666946,0.074135318398476],[-0.09942914545536,-0.0070451940409839,0.11555156111717],[-0.0037512383423746,-0.01400768943131,-0.099714830517769]],[[-0.12847377359867,-0.034052044153214,-0.015170389786363],[-0.09835284948349,0.067452736198902,-0.076840981841087],[-0.082939483225346,0.038290560245514,0.0032513912301511]],[[-0.14433041214943,-0.032566905021667,-0.24273094534874],[0.032552599906921,-0.051547568291426,0.098211131989956],[-0.0093240020796657,0.0091469939798117,0.11281266063452]],[[0.040508851408958,0.1522115021944,0.0042714229784906],[-0.11196656525135,0.0031103433575481,-0.15231853723526],[-0.0058901649899781,-0.06783214956522,-0.086895525455475]],[[0.071071282029152,0.013867534697056,-0.0075355297885835],[-0.028278028592467,0.066625729203224,0.038434773683548],[-0.050974287092686,-0.057112563401461,-0.11375487595797]],[[0.032804448157549,-0.20412160456181,0.01966437138617],[-0.11216076463461,-0.016654966399074,-0.028261328116059],[0.014913990162313,-0.105727866292,-0.055952548980713]],[[0.021477287635207,-0.01242658495903,-0.12260576337576],[0.078019328415394,-0.08509973436594,-0.00091883807908744],[-0.034389890730381,0.044062547385693,0.072523608803749]],[[-0.02992826141417,-0.09769793599844,-0.05530409142375],[-0.015424306504428,-0.041419245302677,-0.017104640603065],[0.011515278369188,0.099839635193348,0.085498511791229]],[[0.43003642559052,0.11927612870932,-0.14130887389183],[0.19243006408215,-0.098891347646713,-0.11219269782305],[-0.088582262396812,0.068511039018631,-0.096673741936684]],[[-0.038086637854576,0.07291279733181,0.021687217056751],[0.0021503467578441,-0.00387541227974,-0.0016993252793327],[0.12282137572765,-0.10498470067978,0.002556910738349]],[[0.020122723653913,0.0057996748946607,-0.085366502404213],[-0.062731757760048,0.03118190728128,0.05595038831234],[0.019831808283925,-0.10559371113777,0.10690466314554]],[[0.015630921348929,-0.050190806388855,0.016614645719528],[0.13665680587292,0.041860766708851,-0.013587298803031],[-0.11804225295782,-0.10379131883383,-0.06107447296381]],[[0.0061585395596921,-0.023662846535444,0.074578337371349],[-0.054351065307856,-0.051653232425451,-0.20211251080036],[-0.055406026542187,-0.047552496194839,0.21806114912033]],[[-0.095450073480606,-0.077607706189156,-0.0068692653439939],[0.07857646048069,-0.00010931611905107,-0.042416013777256],[0.2699861228466,0.12111426889896,-0.050240777432919]],[[-0.11075242608786,0.035529214888811,-0.015827944502234],[-0.21831727027893,-0.074289560317993,0.068275310099125],[-0.16696332395077,0.015810165554285,0.12441947311163]],[[0.01903985440731,0.052347429096699,-0.010052894242108],[0.0044593294151127,-0.088886238634586,-0.051287218928337],[0.11072631925344,-0.083019442856312,0.06355844438076]],[[-0.10188830643892,0.11681108921766,0.028406428173184],[-0.10064554959536,-0.04235190525651,0.0057650520466268],[-0.075878851115704,-0.027629313990474,-0.01275092177093]],[[0.070608295500278,0.19248621165752,-0.074189253151417],[0.084071442484856,-0.13268329203129,-0.099967978894711],[0.033349670469761,0.086189404129982,-0.025205362588167]],[[0.042584028095007,0.34300181269646,-0.045532312244177],[0.19744583964348,0.13932053744793,-0.15374973416328],[-0.0080665852874517,-0.090105168521404,-0.10188359767199]],[[-0.12904511392117,-0.073402404785156,-0.048761125653982],[0.035228721797466,-0.033315815031528,-0.05920410528779],[0.12661072611809,-0.092464305460453,-0.084862791001797]],[[0.060528490692377,0.13758426904678,-0.0034843157045543],[0.035938132554293,-0.041663460433483,-0.022894948720932],[-0.0056322263553739,0.088863089680672,-0.034307327121496]],[[0.06287482380867,-0.14966888725758,-0.054930441081524],[0.17281912267208,-0.0989920347929,0.065386146306992],[-0.14232768118382,0.11031775176525,-0.082049861550331]],[[0.081091091036797,-0.023757837712765,-0.013722425326705],[-0.0054626297205687,-0.020977204665542,-0.050722494721413],[0.018833056092262,-0.0038071738090366,-0.0046071740798652]],[[-0.095303609967232,0.08177450299263,-0.064734220504761],[0.035722017288208,0.0192731320858,0.00074781413422897],[0.052238862961531,-0.10176675766706,0.017651550471783]],[[0.084559798240662,-0.121192663908,0.032603085041046],[-0.03740194439888,-0.19600069522858,-0.12882894277573],[0.016875728964806,-0.0926658436656,-0.067855387926102]],[[0.044362295418978,-0.016956785693765,0.11205881088972],[0.031228268519044,-0.033939637243748,-0.027109041810036],[0.01359879411757,0.014688582159579,-0.04866100102663]],[[-0.025991147384048,-0.0085385357961059,-0.050775695592165],[-0.028943587094545,0.051208477467299,0.015730168670416],[0.15086300671101,0.014802769757807,-0.0012941883178428]],[[-0.022523809224367,0.14146065711975,0.11732545495033],[0.0093032168224454,0.15507757663727,-0.065568082034588],[0.11101588606834,0.048746570944786,-0.0027633183635771]],[[0.13561251759529,0.073615297675133,-0.013567175716162],[0.10389887541533,-0.07126297801733,0.036987245082855],[-0.10479987412691,-0.062126308679581,0.039682984352112]],[[-0.053808387368917,-0.062866643071175,0.019460001960397],[0.026091875508428,-0.031459148973227,-0.017162244766951],[-0.086125582456589,0.018557250499725,0.015885276719928]],[[-0.10439973324537,-0.001230297377333,-0.002907422138378],[-0.050511788576841,0.087991334497929,-0.07221607863903],[-0.064992360770702,-0.0040960572659969,0.025762423872948]],[[0.12814247608185,-0.00060340063646436,-0.048931490629911],[0.056258127093315,-0.097941987216473,-0.085418939590454],[0.11005686223507,-0.13927827775478,0.040738914161921]],[[-0.096754372119904,-0.00090187473688275,0.015516703948379],[-0.067440003156662,0.058083817362785,-0.013313229195774],[-0.12504757940769,-0.006725627463311,0.065427482128143]],[[-0.19559307396412,-0.083855032920837,-0.091158524155617],[0.013607109896839,0.016570311039686,0.059460926800966],[-0.03199801966548,0.11363199353218,0.072510257363319]],[[0.039730932563543,-0.068637043237686,-0.037218287587166],[-0.02088856883347,-0.023384615778923,0.089137263596058],[-0.044635374099016,-0.0042326427064836,-0.046196211129427]],[[-0.071700967848301,0.11011712253094,-0.097415030002594],[-0.071264989674091,-0.02251148968935,-0.015081680379808],[-0.023237841203809,0.19270412623882,-0.037381835281849]],[[-0.086078897118568,0.1193418353796,0.18551521003246],[0.023594718426466,0.057231467217207,0.050632573664188],[-0.013737484812737,-0.15414792299271,-0.10485059022903]],[[-0.030667912214994,0.13366006314754,0.092848435044289],[-0.014255926012993,0.065589986741543,-0.097400724887848],[-0.023007735610008,0.041882041841745,-0.04278676956892]],[[0.060170222073793,0.22057881951332,-0.04263761267066],[0.027852807193995,-0.034279655665159,-0.12758058309555],[-0.11850241571665,0.083858162164688,-0.053874723613262]],[[-0.0094813583418727,0.013320387341082,0.070732109248638],[-0.16700509190559,-0.11108869314194,-0.086195930838585],[-0.012662349268794,0.035781048238277,-0.0095622465014458]],[[0.015247792005539,-0.026149431243539,0.13770079612732],[-0.0052188439294696,-0.0044975527562201,0.033418081700802],[-0.039604071527719,-0.033474702388048,0.062803156673908]],[[-0.093189366161823,0.048948962241411,0.035996444523335],[-0.02764842659235,0.062402788549662,0.0084956623613834],[-0.049510560929775,-0.0036170557141304,0.078241661190987]],[[-0.16165335476398,0.054170526564121,-0.046339184045792],[-0.20883265137672,-0.082386687397957,-0.15674310922623],[0.05414130166173,-0.22101929783821,-0.17412376403809]],[[0.18041983246803,0.029229037463665,0.24862314760685],[0.049087546765804,-0.035505965352058,0.15168379247189],[0.029155377298594,-0.033477108925581,-0.029093764722347]],[[0.0051787937991321,-0.13554601371288,0.019608227536082],[0.077343471348286,-0.014546901918948,0.046684663742781],[-0.002599585801363,-0.1085766851902,-0.013753255829215]],[[0.093516789376736,-0.059483308345079,0.096057943999767],[0.067609645426273,-0.093643888831139,0.024488842114806],[0.053716372698545,-0.18147628009319,-0.066515080630779]],[[-0.022624293342233,-0.12985146045685,-0.094041682779789],[0.098556950688362,0.10431577265263,0.1107314452529],[0.16015574336052,0.18901787698269,-0.15311197936535]],[[-0.059291258454323,0.023141922429204,0.065295137465],[0.02570872195065,0.18103857338428,-0.048265483230352],[0.13984695076942,-0.066156320273876,-0.031854778528214]],[[0.055036976933479,-0.10770966857672,-0.014080873690546],[0.039484489709139,-0.05481943115592,-0.068868398666382],[0.28096976876259,0.0022869405802339,-0.036054644733667]]],[[[-0.0070609208196402,-0.0071012005209923,0.01373007427901],[-0.043269548565149,0.0060907248407602,-0.019466251134872],[0.020604072138667,-0.074666954576969,-0.019479038193822]],[[-0.060086518526077,0.001409808639437,-0.068274758756161],[-0.015802348032594,-0.015986377373338,0.016112059354782],[-0.043196894228458,-0.036855045706034,-0.035509962588549]],[[0.019576339051127,-0.064919598400593,-0.062947690486908],[0.052866086363792,0.034169986844063,-0.0038703389000148],[-0.026774616912007,-0.10171256959438,0.07660136371851]],[[0.10887512564659,-0.039027977734804,-0.018211673945189],[-0.10384178161621,-0.11217338591814,-0.038606610149145],[-0.080869287252426,-0.029650373384356,0.07366094738245]],[[-0.051794223487377,-0.019927985966206,0.049514621496201],[0.019679835066199,-0.043273653835058,0.030018722638488],[-0.011838397011161,0.059773188084364,-0.10833455622196]],[[0.054138977080584,0.019736964255571,0.035541765391827],[-0.0088509852066636,0.00027317443164065,-0.034924972802401],[-0.01005451194942,0.0044797039590776,-0.054316401481628]],[[-0.012278937734663,0.01347793918103,0.0051014204509556],[0.02714198641479,-0.021144552156329,-0.026835223659873],[0.024374840781093,0.032843209803104,-0.033841367810965]],[[0.0061896927654743,0.12057390809059,0.036173649132252],[0.015408323146403,0.065131105482578,-0.013629049062729],[0.025195490568876,-0.093509286642075,0.011814657598734]],[[-0.01502495072782,-0.055173855274916,-0.0060147391632199],[-0.011297424323857,-0.020439991727471,0.067936025559902],[0.021281033754349,-0.036834668368101,0.027102053165436]],[[0.0016924299998209,0.0012914566323161,0.044001162052155],[0.035197462886572,-0.043026983737946,0.011828721500933],[0.025445982813835,0.019521420821548,0.017804624512792]],[[-0.043206121772528,0.071106933057308,0.054335411638021],[-0.0095241731032729,-0.024550266563892,-0.023544682189822],[-0.010595086961985,0.010760811157525,0.00072265736525878]],[[0.019459400326014,-0.024229526519775,-0.026701817288995],[0.029322201386094,0.059399891644716,-0.0017897330690175],[0.07529953122139,0.054352503269911,-0.096555806696415]],[[-0.022202048450708,-0.069176010787487,-0.025913977995515],[-0.021515199914575,-0.034003332257271,-0.021335408091545],[0.043186165392399,-0.024946441873908,0.0520324036479]],[[-0.058520525693893,-0.025758298113942,-0.0016394731355831],[0.031825676560402,-0.07028766721487,0.036642290651798],[-0.017514141276479,0.028394112363458,0.15424740314484]],[[0.082768067717552,-0.053249023854733,-0.12349615246058],[-0.07530015707016,0.097657471895218,0.069432385265827],[0.033347483724356,-0.051495883613825,-0.036037441343069]],[[-0.03444442152977,-0.029380548745394,0.036618959158659],[0.040873847901821,0.0047926167026162,-0.13750374317169],[-0.0065475613810122,-0.0087875807657838,0.064926624298096]],[[0.04925686866045,0.003811692353338,-0.085571065545082],[0.048101503401995,0.0723020657897,0.053221456706524],[-0.023385552689433,0.061433557420969,0.063864335417747]],[[0.0039250161498785,-0.019223894923925,0.062907233834267],[0.011464083567262,0.02093081921339,0.033140357583761],[-0.0010297455592081,-0.022390373051167,0.012751099653542]],[[-0.010477058589458,-0.043095525354147,0.0095382416620851],[0.016626283526421,-0.027482140809298,-0.033535793423653],[-0.023539377376437,-0.038198091089725,-0.020940348505974]],[[0.0093188984319568,0.023885160684586,-0.00087595888180658],[-0.059976238757372,-0.079780340194702,0.04924638196826],[-0.047224100679159,0.02493136934936,-0.021048549562693]],[[-0.017548868432641,-0.065047986805439,0.0020186556503177],[-0.016407122835517,-0.018441284075379,-0.1606263667345],[-0.038383960723877,-0.12087777256966,0.0031302133575082]],[[-0.0048042661510408,-0.038400467485189,-0.032073009759188],[0.032361533492804,0.0025388053618371,0.083050057291985],[0.033468849956989,0.0077085522934794,0.039813544601202]],[[0.0028210622258484,0.024000380188227,0.012691502459347],[-0.075981572270393,0.025355754420161,-0.079625092446804],[-0.037148665636778,-0.0085087595507503,0.12227285653353]],[[-0.0080375866964459,-0.025722663849592,-0.052771408110857],[0.0081071574240923,-0.032562833279371,-0.0064050024375319],[-0.0060528740286827,0.047781944274902,0.021059801802039]],[[0.096069619059563,-0.21852578222752,-0.0047386912629008],[-0.24313765764236,0.0011444306001067,-0.17003473639488],[-0.30300018191338,0.015860751271248,-0.069875568151474]],[[-0.035476393997669,-0.033220041543245,-0.060646787285805],[-0.11110352724791,0.016408046707511,-0.042682234197855],[-0.021766170859337,-0.066974349319935,-0.064012862741947]],[[0.021682737395167,0.1032749414444,-0.03710750490427],[-0.037164963781834,-0.022691391408443,0.05497907474637],[0.068705633282661,-0.021680414676666,0.0041903220117092]],[[-0.022806035354733,0.098337106406689,-0.031078489497304],[0.062498029321432,0.028595937415957,0.054549936205149],[0.10058705508709,-0.019794259220362,0.041331116110086]],[[0.062390245497227,-0.021097091957927,0.028341479599476],[0.039371620863676,-0.0098649449646473,-0.027649972587824],[-0.039932541549206,0.018193412572145,-0.016955107450485]],[[0.017135081812739,-0.0017854822799563,-0.04600065946579],[-0.018859030678868,-0.06691437214613,-0.015470727346838],[-0.075387626886368,-0.11462687700987,-0.028698364272714]],[[-0.044702049344778,0.049436744302511,-0.0079686911776662],[0.11621935665607,-0.027906736359,0.023598806932569],[0.046119578182697,-0.038889370858669,0.042698197066784]],[[0.0063804797828197,0.025865271687508,0.038866896182299],[0.014253571629524,0.0097382245585322,-0.080325946211815],[-0.022529112175107,0.042833555489779,0.0018893466331065]],[[0.043334949761629,-0.0058967168442905,-0.11731669306755],[0.050892196595669,-0.039617512375116,0.05530709028244],[0.050763301551342,-0.083892211318016,-0.029563769698143]],[[-0.030015766620636,0.050920769572258,-0.055916622281075],[-0.040126789361238,0.062209561467171,-0.011540625244379],[-0.044539500027895,0.012699644081295,0.0081887254491448]],[[-0.030375260859728,-0.010239522904158,-0.045331165194511],[-0.0098336329683661,-0.082338221371174,-0.097544595599174],[-0.019278306514025,-0.063850827515125,-0.063724160194397]],[[0.0034695283975452,-0.00066090957261622,-0.0077712936326861],[-0.039632767438889,0.054780036211014,-0.055185452103615],[0.006039063911885,0.058959789574146,-0.0367236956954]],[[-0.020273899659514,0.094246998429298,0.099491998553276],[0.045108314603567,0.038669884204865,0.11102695763111],[0.021372659131885,-0.011754772625864,0.056932225823402]],[[-0.044231191277504,-0.00096259341808036,-0.12728337943554],[0.015918372198939,0.021451640874147,-0.0010814238339663],[0.037446666508913,-0.013715787790716,-0.024471823126078]],[[0.0042997938580811,0.024530623108149,-0.069673053920269],[0.017333900555968,-0.0037583627272397,0.012809165753424],[0.0038738748989999,-0.035710196942091,0.017522612586617]],[[0.013980637304485,0.028798036277294,0.01779150031507],[-0.036915238946676,0.084795869886875,0.072029538452625],[-0.017734317108989,0.044588226824999,0.081615716218948]],[[0.021935245022178,-0.040040027350187,0.0034774178639054],[0.071991495788097,-0.016643017530441,0.021161852404475],[0.030591340735555,-0.030363118276,0.048602405935526]],[[-0.026897368952632,0.028024451807141,-0.0030168511439115],[-0.027886832132936,0.037802066653967,0.020842676982284],[-0.053199362009764,0.0085255252197385,-0.025903202593327]],[[-0.062992669641972,0.019946195185184,-0.14137831330299],[0.058649122714996,-0.015217655338347,0.045869305729866],[-0.0037052128463984,0.064701534807682,-0.081421948969364]],[[0.050383891910315,-0.048288226127625,-0.083121724426746],[0.04289024323225,-0.071641035377979,-0.18432991206646],[-0.0096933115273714,0.055006474256516,-0.016598572954535]],[[-0.019078264012933,-0.10874005407095,0.023963313549757],[0.099186956882477,-0.019671721383929,0.022887840867043],[-0.023793501779437,0.10071972757578,0.031887117773294]],[[-0.099783048033714,0.051073495298624,-0.15215444564819],[-0.048005677759647,-0.04760879278183,0.12072234600782],[-0.14608995616436,0.054765783250332,-0.089275054633617]],[[0.062570862472057,-0.014519049786031,0.0036979746073484],[0.0013211123878136,-0.057340320199728,0.10333491116762],[-0.078135766088963,0.030884029343724,0.1333774626255]],[[0.012247021310031,0.014654716476798,-0.017469024285674],[-0.048883818089962,-0.037803839892149,-0.063670866191387],[-0.006913005374372,0.003965170122683,-0.01707261428237]],[[-0.049711007624865,0.044121701270342,0.0039542242884636],[-0.037409231066704,0.065613970160484,-0.013464879244566],[-0.029122373089194,-0.0063380463980138,-0.067882195115089]],[[0.02723627910018,-0.0033905426971614,-0.0019702161662281],[0.056060865521431,0.048386011272669,0.023775074630976],[-0.018735207617283,-0.023349031805992,0.0061446209438145]],[[-0.12412339448929,-0.018147805705667,-0.016640176996589],[-0.062022913247347,0.055342730134726,0.046013589948416],[0.04961147531867,-0.053059078752995,-0.010175880044699]],[[0.045074220746756,-0.032988399267197,-0.02452595718205],[0.046271961182356,-0.0018776331562549,-0.040641501545906],[0.027332417666912,0.070851922035217,-0.050270922482014]],[[0.0008230326930061,0.061982978135347,-0.053794357925653],[0.01307360548526,0.062691211700439,0.0045745032839477],[-0.034694451838732,0.053549524396658,-0.048011742532253]],[[-0.024234412238002,0.025240946561098,0.0013742584269494],[-0.012548382394016,-0.04516339674592,0.0082485070452094],[-0.017077853903174,-0.075761087238789,-0.0020266838837415]],[[0.055554188787937,-0.0067069488577545,0.10987325012684],[0.11715164035559,-0.02172146178782,-0.06102866306901],[0.072118565440178,0.096342720091343,0.057710491120815]],[[0.013515179976821,0.082219824194908,0.058548178523779],[0.008061483502388,-0.080125607550144,-0.074974335730076],[-0.05694967508316,0.042055457830429,-0.025649258866906]],[[0.070489704608917,-0.051978334784508,0.020363539457321],[-0.062565304338932,0.085435301065445,-0.046202544122934],[-0.053141754120588,-0.069817461073399,-0.070583090186119]],[[-0.061754066497087,-0.025789545848966,-0.047563213855028],[0.024150304496288,-0.055071663111448,0.071166999638081],[0.012286147102714,-0.050486050546169,-0.08431688696146]],[[0.056478567421436,-0.058104485273361,0.094723790884018],[0.059261057525873,0.010590292513371,0.06220693513751],[0.01522709056735,0.065726473927498,-0.046443738043308]],[[-0.052132368087769,-0.035019092261791,0.04983938112855],[0.0051827309653163,0.022098889574409,-0.009682934731245],[0.044472243636847,0.057258803397417,0.055313166230917]],[[0.0040409327484667,-0.041361082345247,-0.046482738107443],[0.018454110249877,-0.004500980488956,0.01945379935205],[-0.0076785483397543,0.059155151247978,-0.044571343809366]],[[0.040208093822002,-0.029629360884428,0.059498108923435],[0.036965310573578,-0.011440813541412,-0.052767857909203],[-0.021670717746019,0.029591523110867,-0.012853916734457]],[[0.0427565574646,-0.004689721390605,0.047662708908319],[0.12396548688412,0.04334756731987,0.070083640515804],[0.037257947027683,0.018930424004793,-0.094227910041809]],[[0.05587849766016,-0.015017255209386,-0.025163730606437],[0.033504359424114,0.054565470665693,0.0049802823923528],[-0.059906661510468,-0.042500261217356,0.064987622201443]],[[-0.032713830471039,0.0091229882091284,-0.015068076550961],[0.006830545142293,-0.023670464754105,-0.0052272393368185],[0.0059334957040846,-0.023449836298823,0.0044506718404591]],[[-0.016548458486795,0.028543516993523,0.031814232468605],[0.024967717006803,0.022866768762469,0.10928032547235],[-0.10903639346361,0.030468218028545,0.018021203577518]],[[0.036508247256279,-0.05337630584836,-0.0055880732834339],[0.027230309322476,0.02799766138196,-0.1076136380434],[-0.0047405199147761,-0.040246292948723,-0.024135729297996]],[[0.059506721794605,0.038023918867111,0.11785709112883],[0.062678888440132,-0.047430422157049,0.074403703212738],[-0.10320427268744,0.041817855089903,0.10334807634354]],[[0.0097037572413683,-0.03254722058773,0.028369281440973],[-0.015430993400514,0.055549949407578,-0.0409743078053],[0.011211374774575,-0.0033922260627151,0.013812964782119]],[[-0.084701478481293,-0.044094163924456,0.034212078899145],[0.05756688863039,-0.073734983801842,0.0078951371833682],[0.066510677337646,0.04548355191946,-0.010462532751262]],[[0.032043930143118,0.020586462691426,-0.022448964416981],[-0.0021182128693908,-0.071215011179447,0.08198768645525],[-0.01095175743103,0.037136800587177,-0.04031178727746]],[[-0.0036730798892677,-0.03364048153162,-0.050745517015457],[0.043535251170397,-0.024367632344365,0.0050338953733444],[0.03895902261138,-0.024134894832969,0.011925026774406]],[[0.0089720198884606,0.0067678885534406,-0.0090212738141418],[0.044233348220587,0.099486760795116,-0.031341414898634],[0.045255586504936,0.031635738909245,-0.045316964387894]],[[-0.029164958745241,0.023387737572193,0.071444116532803],[0.02808728069067,0.042364776134491,0.018761938437819],[0.0095470491796732,0.0027417959645391,-0.03712522238493]],[[-0.0048350347205997,-0.056412614881992,-0.076371669769287],[-0.060454897582531,-0.0045028124004602,-0.06585680693388],[-0.042341347783804,-0.026587832719088,-0.015243095345795]],[[0.032262217253447,0.010191178880632,0.019096564501524],[-0.0019364827312529,-0.014269816689193,0.0015292454045266],[-0.058498304337263,-0.029356015846133,0.080990195274353]],[[0.035904657095671,0.073472045361996,-0.063034906983376],[0.018157538026571,0.047249041497707,0.030545154586434],[0.081955291330814,-0.023272749036551,-0.027179107069969]],[[0.032842934131622,-0.044048361480236,0.11566103249788],[-0.056625947356224,0.030420692637563,-0.021583525463939],[-0.10031904280186,-0.007030576467514,0.030355341732502]],[[-0.046808294951916,-0.055326417088509,0.0092270839959383],[-0.049972087144852,-0.0047187181189656,0.10226058214903],[-0.013234979473054,-0.028779743239284,0.020312102511525]],[[-0.049696058034897,-0.0008986146422103,0.015856569632888],[-0.055078033357859,-0.050477266311646,0.0431411229074],[-0.05398315936327,0.059064783155918,-0.041616555303335]],[[0.017794983461499,0.038670167326927,-0.027508106082678],[-0.021535387262702,-0.07812163233757,-0.068209461867809],[0.01859899237752,0.035194404423237,0.031114466488361]],[[0.036611802875996,-0.060283709317446,-0.12458512932062],[-0.033019158989191,-0.0024886364117265,0.058761768043041],[0.079673998057842,0.038771875202656,-0.021494822576642]],[[-0.012159160338342,0.048581205308437,-0.023490244522691],[0.086325258016586,-0.060409996658564,-0.0060550095513463],[-0.045276682823896,0.044308051466942,0.066609308123589]],[[0.01354712061584,0.00012580220936798,-0.055632490664721],[0.019278712570667,0.037231627851725,0.058823525905609],[0.024982091039419,-0.046050384640694,-0.022680517286062]],[[0.0077454959973693,-0.020321685820818,0.012688026763499],[-0.032670963555574,-0.066940113902092,-0.020655330270529],[0.0076112179085612,-0.009638262912631,0.00032593955984339]],[[-0.024274280294776,0.0043431711383164,0.022712856531143],[-0.036731146275997,0.011884077452123,0.0056102215312421],[-0.024880452081561,-0.0021516992710531,0.02587791159749]],[[0.047261860221624,0.016952279955149,-0.049757085740566],[0.047163773328066,0.085489258170128,0.063767828047276],[-0.0075887963175774,0.093400701880455,0.028711432591081]],[[0.039889827370644,0.15510678291321,0.0021098449360579],[0.091218933463097,0.042582679539919,-0.07508884370327],[-0.032887782901525,0.026445683091879,0.00021881832799409]],[[0.015716521069407,0.027856281027198,0.039132498204708],[0.02254743874073,-0.0030206213705242,0.035620234906673],[-0.048977054655552,0.027857329696417,0.040621269494295]],[[0.012853907421231,-0.010144951753318,-0.030120722949505],[-0.020202709361911,0.036012746393681,-0.01432450208813],[0.039158586412668,0.031515467911959,0.032082252204418]],[[-0.053040221333504,-0.025700390338898,-0.016874879598618],[0.0260298717767,-0.12259294092655,0.0029805244412273],[-0.048243157565594,0.03193885833025,0.10707890987396]],[[-0.020678130909801,-0.021466730162501,-0.028754817321897],[0.0055784471333027,0.089820541441441,-0.033922433853149],[0.018040604889393,0.055443830788136,0.04156756028533]],[[0.0070080594159663,0.025260807946324,-0.030772712081671],[0.090156629681587,0.072647824883461,0.0037908160593361],[0.10882443189621,-0.049216154962778,0.045913722366095]],[[0.0041530374437571,0.0013033869909123,0.021811012178659],[-0.017850114032626,-0.033349242061377,0.1118124499917],[0.039751891046762,0.052703741937876,0.024501442909241]],[[0.034166242927313,0.019616393372416,0.031722232699394],[0.088538698852062,-0.027943355962634,0.022817941382527],[0.051905933767557,0.0042505897581577,0.083386488258839]],[[-0.028741018846631,0.048897836357355,-0.055304244160652],[-0.028867039829493,0.095575265586376,0.059358723461628],[-0.089885473251343,0.00080984871601686,-0.038475342094898]],[[-0.004972230643034,0.049014814198017,-0.014208126813173],[-0.036162223666906,0.045766085386276,0.022125221788883],[-0.019876677542925,-0.021929807960987,-0.062890402972698]],[[-0.023440884426236,-0.059439100325108,0.046311918646097],[-0.011547867208719,-0.034456834197044,0.031238421797752],[0.032976906746626,0.10266394913197,0.0085956994444132]],[[-0.053763937205076,-0.019106194376945,0.083340138196945],[0.017757713794708,-0.028634054586291,-0.060127321630716],[0.046992551535368,-0.0067030768841505,0.060445204377174]],[[-0.067564316093922,-0.22332102060318,0.029258666560054],[-0.13684193789959,0.19951258599758,-0.12794850766659],[0.026349976658821,-0.19546036422253,0.08136897534132]],[[-0.014315084554255,-0.010739356279373,0.057316657155752],[-0.030728964135051,0.080239504575729,-0.038905546069145],[0.027014469727874,-0.036305386573076,-0.068124696612358]],[[0.011267485097051,-0.078037478029728,0.065312333405018],[-0.085247285664082,0.032910753041506,0.07960832118988],[-0.049299735575914,-0.062914244830608,-0.073376722633839]],[[0.055106163024902,-0.020343326032162,0.0055133304558694],[0.040077790617943,0.029609218239784,0.06904436647892],[0.0098099848255515,0.026784155517817,-0.090808168053627]],[[-0.016743931919336,0.00021667627152056,-0.032803576439619],[-0.045246325433254,-0.046612568199635,-0.039491087198257],[-0.038819581270218,-0.049858678132296,-0.08687262237072]],[[0.012736708857119,-0.067024208605289,0.0013256991514936],[-0.016760854050517,0.083661660552025,0.056469310075045],[-0.015046535991132,0.057534884661436,0.05596686899662]],[[0.048294737935066,0.014005710370839,-0.029092468321323],[0.01129745785147,0.01494328211993,-0.037905927747488],[0.0053100795485079,0.068856187164783,-0.018162913620472]],[[-0.0098591465502977,0.076211206614971,-0.010014710947871],[0.0038919781800359,-0.0046031214296818,-0.041055962443352],[0.020355049520731,-0.025651507079601,0.0025961536448449]],[[-0.028776869177818,0.034836664795876,0.048148363828659],[-0.032318759709597,0.06753496825695,0.060083579272032],[0.040315072983503,-0.016626531258225,0.016931688413024]],[[0.030186409130692,-0.0026747682131827,0.038465831428766],[-0.0030630549881607,0.035522382706404,-0.0097568798810244],[-0.036372110247612,-0.053925387561321,-0.11009899526834]],[[-0.040163341909647,-0.076509401202202,0.029971141368151],[-0.029133213683963,0.016257137060165,0.0049612242728472],[0.0017753716092557,-0.010445242747664,-0.020637359470129]],[[-0.039780020713806,0.033402640372515,0.034364614635706],[-0.046063855290413,0.021634951233864,-0.017804335802794],[0.029372634366155,-0.028139794245362,-0.034408904612064]],[[0.0046972590498626,0.064369812607765,-0.043505262583494],[-0.0073070474900305,-0.024947836995125,0.019089275971055],[-0.00035067735007033,0.024636251851916,-0.02633292041719]],[[-0.00072690920205787,0.085332542657852,-0.071320176124573],[-0.016585478559136,0.021989684551954,0.045848339796066],[0.0031486030202359,-0.04333833232522,2.4488319468219e-05]],[[-0.07232192158699,0.024003272876143,0.016013009473681],[-0.032541140913963,-0.021779732778668,-0.034015417098999],[-0.024422908201814,-0.0050937491469085,-0.079011887311935]],[[-0.010832824744284,-0.039714451879263,0.058125831186771],[-0.040605053305626,-0.057872883975506,0.022932276129723],[-0.069909393787384,-0.043198816478252,0.051659312099218]],[[0.015314352698624,-0.0036147369537503,0.03315694257617],[0.022994318976998,-0.0093101402744651,-0.032912410795689],[-0.0039380397647619,0.0457983314991,0.054067209362984]],[[-0.0019856174476445,0.018639422953129,0.055151373147964],[-0.029046783223748,0.031999759376049,-0.040386114269495],[-0.018062811344862,-0.0061814277432859,-0.039571225643158]],[[-7.7030301326886e-05,-0.020579870790243,0.02822507917881],[0.021547993645072,-0.073812924325466,0.026309076696634],[-0.00022190058371052,-0.037220541387796,-0.0061805099248886]],[[0.011322441510856,0.057584092020988,-0.032341867685318],[0.032359424978495,-0.043534271419048,-0.10268295556307],[0.014776884578168,-0.060515850782394,-0.15377214550972]],[[-0.053612135350704,0.0028331975918263,0.11010035127401],[-0.038189481943846,-0.095316559076309,0.051242288202047],[0.003064040094614,-0.093310557305813,-0.053457856178284]],[[0.0088348127901554,0.067824684083462,0.081231892108917],[0.013978958129883,-0.0046127256937325,0.076296463608742],[0.035648591816425,-0.027141099795699,-0.024431655183434]],[[0.013823615387082,0.0041657602414489,-0.044235732406378],[-0.0077044321224093,-0.11128716915846,-0.01289798785001],[-0.03053673915565,0.023788668215275,0.011498472653329]],[[-0.021680908277631,0.045730419456959,0.063586287200451],[0.065691344439983,-0.009532755240798,0.029552631080151],[0.045821767300367,0.01388896163553,-0.045939296483994]],[[-0.044153451919556,0.0045939208939672,0.041508015245199],[-0.088758707046509,0.0062165050767362,0.031058458611369],[-0.05957755446434,-0.00484738079831,-0.037328664213419]],[[-0.017015906050801,-0.0200863070786,0.022195758298039],[-0.024582607671618,0.078209444880486,-0.054410468786955],[0.008386692032218,-0.032604765146971,0.010872904211283]],[[-0.029103793203831,0.040702939033508,0.030971558764577],[-0.0032304008491337,0.005292525049299,-0.0099591938778758],[0.065587185323238,0.0057079652324319,0.0022074377629906]],[[-0.012112359516323,0.015026951208711,0.015546457841992],[-0.070200972259045,0.057959645986557,-0.047927185893059],[-0.0069626048207283,0.043992590159178,0.005811186041683]],[[-0.012969891540706,0.046372890472412,-0.10680898278952],[-0.06425079703331,-0.069820009171963,0.044473957270384],[-0.041712064296007,-0.051915556192398,0.046805161982775]]],[[[-0.060419447720051,-0.11036266386509,0.028882127255201],[-0.11233505606651,-0.10753618180752,0.10105785727501],[0.091527558863163,0.067544214427471,0.24452669918537]],[[-0.26777443289757,0.26802548766136,0.081035450100899],[0.028405372053385,-0.12530875205994,0.045283816754818],[0.018423421308398,0.02398344501853,-0.1673863530159]],[[0.0017993056681007,-0.14266861975193,-0.27088534832001],[0.1008717045188,-0.17134849727154,-0.33460277318954],[0.0085392743349075,-0.089998014271259,-0.10398273169994]],[[-0.10521935671568,-0.093467846512794,-0.32147073745728],[0.021101383492351,-0.31380131840706,-0.077083632349968],[-0.10851582884789,-0.13867515325546,-0.040662486106157]],[[0.33781865239143,-0.05901250988245,-0.085123762488365],[-0.045993756502867,-0.20342963933945,0.11048034578562],[-0.30720108747482,-0.1292640119791,0.11880562454462]],[[-0.037917010486126,-0.19063547253609,-0.057452209293842],[-0.14481887221336,-0.054329730570316,0.26500681042671],[-0.049274235963821,0.073071546852589,0.27181166410446]],[[-0.16149087250233,0.17125578224659,0.055528502911329],[0.068479619920254,0.0034667672589421,-0.17894162237644],[0.047541312873363,-0.13544838130474,0.023671146482229]],[[0.14824189245701,-0.096576832234859,0.22480300068855],[0.14171154797077,0.0095415338873863,0.031170424073935],[0.14390487968922,0.1679071187973,-0.0095529528334737]],[[-0.24710305035114,0.1009009629488,0.25989532470703],[0.036914493888617,-0.16474743187428,0.10584628582001],[-0.023928109556437,0.033470526337624,0.1564776301384]],[[-0.0024082660675049,-0.033509269356728,-0.037792764604092],[0.20027139782906,-0.10650195926428,9.2930655227974e-05],[0.073159568011761,0.076577618718147,-0.11634750664234]],[[-0.043961990624666,-0.21125574409962,0.23868826031685],[-0.050017409026623,0.14983026683331,-0.092019841074944],[0.0035094863269478,0.15595734119415,-0.015668349340558]],[[0.11786411702633,-0.18141333758831,0.019562810659409],[0.18688569962978,-0.087203651666641,0.017818251624703],[-0.067715279757977,0.10726161301136,-0.10212580114603]],[[-0.12396991997957,0.18309345841408,-0.14065392315388],[-0.011769646778703,0.089016154408455,0.076566062867641],[0.071309797465801,0.1214474439621,0.15242378413677]],[[0.16963416337967,0.07198877632618,-0.14414854347706],[0.071515165269375,0.037685982882977,-0.077407553792],[-0.17565609514713,0.16524821519852,-0.11731868237257]],[[-0.046360000967979,-0.19275952875614,-0.023548729717731],[-0.2484946846962,-0.05196724832058,-0.017105713486671],[-0.15293064713478,-0.092930391430855,-0.24391813576221]],[[0.040566544979811,-0.010212031193078,0.056345593184233],[0.039302464574575,-0.21346697211266,-0.055949047207832],[0.15907625854015,-0.22513388097286,0.13295716047287]],[[-0.087621904909611,-0.13171125948429,0.28888785839081],[0.12787558138371,0.20719979703426,0.014345825649798],[0.18378251791,0.017468310892582,-0.010233666747808]],[[-0.046633113175631,0.14620949327946,0.25358346104622],[-0.09946946054697,0.024795886129141,0.046300951391459],[-0.17019833624363,-0.048561111092567,-0.16536331176758]],[[0.020974531769753,0.1544137597084,-0.010361595079303],[-0.0042285076342523,0.2421061694622,-0.15305280685425],[0.055825658142567,-0.18878600001335,-0.083379484713078]],[[-0.35280305147171,0.036595694720745,-0.054921519011259],[0.19305217266083,-0.097048923373222,-0.21947309374809],[-0.12256918102503,0.12191477417946,-0.082923270761967]],[[0.22804632782936,-0.16437029838562,-0.042103234678507],[-0.23854218423367,-0.11010517179966,-0.086338199675083],[0.00058284151600674,-0.19373863935471,0.04624555259943]],[[0.010930805467069,-0.048172120004892,0.1772018969059],[0.17204384505749,0.12997098267078,0.039755865931511],[-0.067720457911491,0.070701099932194,0.0010207010200247]],[[0.08670537173748,-0.067397400736809,0.18535551428795],[-0.12468402832747,0.070323012769222,-0.086121156811714],[0.089248776435852,-0.086626663804054,-0.17668958008289]],[[-0.21361549198627,0.021281812340021,-0.11598432064056],[0.0026398801710457,0.025579558685422,-0.21421964466572],[0.20568525791168,-0.17126002907753,-0.26941341161728]],[[-0.27332839369774,-0.18766501545906,-0.064662754535675],[-0.16043299436569,-0.099421016871929,-0.069725915789604],[0.063475921750069,-0.023273915052414,-0.32021552324295]],[[-0.27037805318832,-0.12151523679495,-0.19295494258404],[-0.24386022984982,-0.23958815634251,0.012373422272503],[-0.22624644637108,-0.21891574561596,0.057314086705446]],[[-0.21490050852299,0.050792790949345,-0.039762772619724],[-0.015597518533468,0.11249569058418,-0.036471992731094],[-0.099497430026531,-0.095866821706295,-0.14869444072247]],[[-0.066625326871872,0.14977064728737,-0.22969616949558],[0.054606478661299,-0.15259318053722,0.023141540586948],[-0.25256031751633,-0.020748257637024,-0.12200941890478]],[[0.36875766515732,0.13598001003265,0.036718145012856],[-0.2068380266428,-0.20620673894882,0.11235632002354],[-0.032520033419132,-0.055771481245756,-0.11513943225145]],[[0.08616229146719,-0.046315506100655,-0.044810384511948],[0.45607829093933,-0.11235214024782,-0.0641103759408],[0.0170884039253,-0.12743191421032,0.17581467330456]],[[-0.12479991465807,-0.027235524728894,-0.042218595743179],[-0.21604239940643,-0.16986593604088,-0.099622368812561],[-0.3376250565052,-0.099019318819046,-0.23835019767284]],[[0.042432073503733,0.094693221151829,0.20852530002594],[-0.24315749108791,0.21358561515808,-0.0071520428173244],[-0.077110484242439,-0.03063664957881,-0.015023508109152]],[[-0.13131678104401,0.12827405333519,-0.061454381793737],[-0.23467215895653,0.087586842477322,0.085943192243576],[-0.10755541175604,0.11543774604797,-0.036482993513346]],[[0.068988598883152,-0.03627547621727,-0.078639149665833],[-0.00057025480782613,-0.02795834839344,-0.10447213053703],[0.034336816519499,0.070655308663845,0.047976206988096]],[[-0.30146163702011,0.08630958199501,-0.0049204034730792],[-0.16044475138187,-0.063740611076355,-0.016754947602749],[-0.14205628633499,0.0083368392661214,0.05446369946003]],[[0.088565409183502,-0.014033642597497,0.04778091236949],[-0.34673908352852,0.29151323437691,-0.085852719843388],[-0.19170078635216,0.033195659518242,0.042366068810225]],[[0.027293439954519,-0.013251446187496,-0.057313494384289],[-0.11464926600456,-0.29374915361404,-0.1088927462697],[0.19618245959282,-0.00048221187898889,-0.14879570901394]],[[-0.088089779019356,-0.054944835603237,0.10561947524548],[-0.040788237005472,0.15112268924713,-0.019608292728662],[-0.089045062661171,-0.047809448093176,0.1389647424221]],[[0.01304133888334,-0.34799385070801,0.13268974423409],[0.11337777972221,-0.10547637194395,-0.13038210570812],[0.1633867174387,0.0049639432691038,-0.062995485961437]],[[0.024498598650098,-0.037829138338566,-0.25575134158134],[0.11395736783743,0.0097548756748438,-0.097874596714973],[0.0073991557583213,0.063915714621544,-0.045899786055088]],[[-0.21215552091599,0.070423848927021,-0.012061899527907],[0.061141315847635,-0.09676206856966,0.13336674869061],[-0.1161837130785,-0.19271077215672,-0.011949952691793]],[[-0.13462089002132,-0.004009060561657,-0.049655802547932],[0.10335206240416,0.073434539139271,0.12159811705351],[0.0043145264498889,0.12331642955542,0.18119287490845]],[[0.055185429751873,-0.023886209353805,0.034960303455591],[-0.14181646704674,0.02856520190835,-0.016664130613208],[0.021187260746956,-0.03085901401937,0.080033622682095]],[[0.045063532888889,-0.07403264939785,-0.040113728493452],[-0.19146417081356,-0.032277852296829,0.039798069745302],[-0.038986917585135,0.00018036675464828,0.052635204046965]],[[0.02776151150465,-0.0090479487553239,0.11184122413397],[-0.14506091177464,-0.17906159162521,-0.086416363716125],[0.050672389566898,-0.21738997101784,-0.1336966753006]],[[-0.024863202124834,0.050737492740154,-0.061415880918503],[-0.078172273933887,-0.11005414277315,0.052792064845562],[0.021781140938401,0.13954111933708,-0.011331673711538]],[[0.24414351582527,0.16660319268703,-0.16286611557007],[0.4517334997654,0.15998351573944,-0.16382464766502],[0.053241230547428,0.0014185183681548,0.18350794911385]],[[0.064053267240524,-0.1973118185997,0.0059152254834771],[-0.18249705433846,0.0097572458907962,-0.1174291819334],[-0.014488543383777,-0.036883607506752,-0.0064732278697193]],[[-0.19625069200993,-0.22924137115479,0.14157947897911],[-0.10522423684597,-0.22810094058514,-0.058985080569983],[-0.066349640488625,-0.062336344271898,-0.14622983336449]],[[-0.17743319272995,0.063073553144932,-0.066204488277435],[0.049635030329227,-0.099563375115395,0.020490502938628],[-0.054716017097235,0.01982525922358,-0.009630985558033]],[[-0.054868351668119,0.035510677844286,-0.079646617174149],[-0.29636400938034,0.038227155804634,0.13335198163986],[-0.056135505437851,0.065814062952995,-0.12976956367493]],[[0.1533227711916,0.26564490795135,0.0026858942583203],[-0.20334319770336,-0.1653305888176,-0.16046914458275],[-0.15139521658421,-0.11215108633041,-0.29321995377541]],[[0.016645384952426,0.010744264349341,-0.074088409543037],[-0.052811849862337,-0.07667537778616,0.022692028433084],[-0.073506779968739,-0.17322671413422,-0.00081941357348114]],[[-0.092164278030396,-0.043278682976961,0.031354915350676],[-0.028334446251392,-0.0260269343853,0.0034520151093602],[0.024328388273716,-0.081246629357338,0.05635767057538]],[[0.19984892010689,0.078061074018478,-0.046683005988598],[0.12826631963253,0.26886561512947,-0.11185774207115],[-0.084399610757828,0.017210595309734,-0.12286497652531]],[[0.010777521878481,0.14969164133072,-0.12330671399832],[0.15541830658913,-0.12828962504864,-0.12029705941677],[-0.054660297930241,-0.19308197498322,-0.13154867291451]],[[-0.17611676454544,-0.17247106134892,-0.100376740098],[-0.14384989440441,0.028077088296413,-0.11382938921452],[0.025655545294285,0.047024112194777,-0.18499627709389]],[[-0.31137427687645,-0.0076476130634546,-0.053074963390827],[-0.066541239619255,-0.092034429311752,0.094234332442284],[-0.0042052869684994,0.32758241891861,-0.014116832055151]],[[0.15630231797695,-0.31469509005547,0.011430061422288],[0.32577070593834,0.033177252858877,0.063869930803776],[0.0068825865164399,-0.015704121440649,0.039065711200237]],[[0.15242150425911,-0.027289317920804,-0.04431090131402],[-0.17230096459389,0.10151829570532,0.0079845348373055],[0.025619966909289,-0.042765036225319,0.039807207882404]],[[-0.14241850376129,-0.17312353849411,-0.023394392803311],[-0.14122168719769,-0.25931918621063,0.10266520828009],[0.23080058395863,-0.035637557506561,0.052809536457062]],[[0.061118543148041,-0.034660890698433,0.025987945497036],[-0.084209494292736,-0.05171712487936,-0.18756346404552],[-0.17001254856586,-0.2800487279892,-0.10887153446674]],[[-0.010878015309572,-0.032793149352074,0.18094466626644],[0.080840520560741,-0.16700698435307,-0.11103723198175],[-0.10378437489271,0.010880802758038,0.015884082764387]],[[0.12678548693657,-0.0084132282063365,0.060720708221197],[0.035791102796793,0.023389462381601,-0.065809190273285],[0.10324610024691,-0.032304309308529,-0.17698015272617]],[[0.13312549889088,-0.056778524070978,0.2836052775383],[0.28038993477821,-0.066132158041,-0.021174473688006],[-0.089230336248875,-0.097196713089943,0.1089016571641]],[[0.067799843847752,0.069768592715263,0.35133823752403],[-0.040310986340046,-0.0038782279007137,-0.18861949443817],[0.050729300826788,-0.14161409437656,-0.10658510029316]],[[0.15612572431564,-0.10909795761108,0.09632670134306],[0.093376971781254,0.015432325191796,0.004129046574235],[-0.070329084992409,0.045657448470592,-0.018707621842623]],[[0.14614652097225,0.15318076312542,-0.071707263588905],[0.060430493205786,-0.10023219138384,-0.15170684456825],[0.16666941344738,0.064511351287365,0.087956853210926]],[[-0.14356949925423,-0.10011916607618,0.046415776014328],[0.087653271853924,0.0068415477871895,0.17890480160713],[0.041353311389685,-0.079845108091831,-0.089493058621883]],[[0.092992298305035,0.095490455627441,0.06061502546072],[-0.20072849094868,0.01160233374685,0.15544831752777],[0.033618990331888,-0.090919375419617,0.19264702498913]],[[-0.18952319025993,0.32437270879745,0.056011170148849],[0.14532436430454,-0.062653377652168,0.074091158807278],[-0.1746398806572,0.12977337837219,-0.10704480111599]],[[-0.15325337648392,0.007240611128509,-0.037192035466433],[0.17816299200058,0.17034927010536,-0.22078241407871],[-0.061285734176636,0.22002467513084,0.0073721115477383]],[[-0.053116664290428,-0.060649700462818,0.08417797088623],[-0.064405597746372,0.21071708202362,-0.038536414504051],[-0.1814432144165,0.063689887523651,-0.016271060332656]],[[0.057698171585798,0.11641570925713,0.083920568227768],[0.072698473930359,0.015993675217032,-0.16145543754101],[0.11587495356798,-0.10471696406603,-0.13100810348988]],[[-0.18390606343746,-0.016058256849647,0.15417593717575],[-0.11365695297718,-0.24014227092266,0.10595487058163],[0.041420370340347,-0.13073691725731,-0.0077842082828283]],[[-0.029997216537595,0.029557602480054,-0.089352943003178],[0.34958192706108,-0.11061096936464,0.051181890070438],[-0.037693064659834,0.1455193310976,-0.051195453852415]],[[0.11692764610052,0.091048158705235,0.11198280006647],[-0.13305635750294,-0.10905900597572,-0.0040132873691618],[-0.24059104919434,-0.058603622019291,0.18720293045044]],[[-0.024931821972132,0.18268457055092,-0.027886835858226],[-0.0041011483408511,0.037539251148701,-0.01114493701607],[0.1185145303607,-0.12986189126968,0.15639950335026]],[[0.050869416445494,0.040101103484631,-0.13558821380138],[-0.038840621709824,0.050136607140303,0.012993796728551],[0.078943200409412,0.060077764093876,-0.10676620900631]],[[0.074590511620045,0.11827649921179,0.033252999186516],[0.052620444446802,0.092380203306675,0.13606092333794],[-0.063672333955765,-0.088208541274071,-0.0057957177050412]],[[-0.10823104530573,0.0068363309837878,-0.024419452995062],[-0.20841062068939,0.16238924860954,0.043715298175812],[-0.21726629137993,0.035114891827106,0.20154905319214]],[[-0.093024522066116,0.47597452998161,0.15316116809845],[0.12207523733377,-0.047605630010366,0.064122170209885],[-0.088232547044754,0.26764714717865,0.21250602602959]],[[-0.11990676820278,0.0079192370176315,0.0017431488959119],[0.15286412835121,0.010570853948593,-0.12894833087921],[0.0013665688456967,-0.20672352612019,-0.034783951938152]],[[0.081377945840359,-0.13423827290535,-0.082619868218899],[-0.0093242954462767,0.003065662458539,-0.029481319710612],[-0.0033864586148411,-0.022523878142238,-0.0098936688154936]],[[-0.056029882282019,0.0077611804008484,0.26080760359764],[0.03573340550065,0.079927690327168,0.04908299446106],[0.041719261556864,-0.24717307090759,-0.029168361797929]],[[0.075802162289619,0.049587611109018,-0.14519445598125],[0.030963353812695,-0.048600096255541,-0.0042960122227669],[-0.15154026448727,0.0097158113494515,0.15070059895515]],[[-0.053920105099678,-0.14656494557858,0.099131867289543],[-0.037911355495453,-0.042061850428581,-0.067149482667446],[-0.0067397812381387,-0.11023108661175,-0.041797183454037]],[[0.0798674300313,-0.05564396455884,-0.091534897685051],[0.21651244163513,-0.017488243058324,-0.017097763717175],[0.099385172128677,-0.011739617213607,0.021734748035669]],[[0.092043250799179,-0.081852041184902,0.0096518574282527],[-0.06039834395051,-0.047859512269497,-0.0059538744390011],[0.019055027514696,0.064528256654739,-0.0044444161467254]],[[-0.076570838689804,-0.0028220803942531,-0.18393307924271],[-0.15925198793411,-0.11188923567533,0.10158985108137],[0.068217188119888,0.06695917993784,-0.041259407997131]],[[-0.040599927306175,-0.11234920471907,0.022922672331333],[-0.052569501101971,-0.088991783559322,-0.11995784193277],[0.070592887699604,0.1475640386343,0.27590864896774]],[[-0.09248998016119,-0.011582183651626,0.13680851459503],[-0.10250113159418,-0.18806266784668,-0.13669541478157],[-0.023291034623981,-0.34153512120247,0.016929807141423]],[[0.1724524050951,-0.1553560346365,0.039979804307222],[0.11454458534718,0.16045497357845,-0.064831584692001],[0.20990243554115,0.19616243243217,-0.12474028766155]],[[0.27333748340607,0.15626415610313,-0.043275140225887],[-0.19127684831619,-0.18928544223309,-0.16096086800098],[-0.066619239747524,-0.08114293217659,0.069498740136623]],[[0.05103812739253,0.15796619653702,-0.020948803052306],[0.041704710572958,0.069871068000793,-0.042540248483419],[0.017286693677306,-0.17661049962044,0.054184522479773]],[[-0.014184256084263,0.20700173079967,-0.093043066561222],[-0.14632032811642,0.069172970950603,-0.19329556822777],[-0.11171270906925,0.045185174793005,0.00059779739240184]],[[0.074506364762783,-0.017057307064533,-0.079715132713318],[0.055855564773083,0.070089064538479,-0.070764198899269],[0.053175304085016,0.16768033802509,0.066395163536072]],[[-0.018643638119102,0.11389265954494,-0.18734483420849],[0.07264681905508,0.050835825502872,0.046450115740299],[0.029061302542686,0.010990273207426,0.1268265247345]],[[-0.14177456498146,-0.07973725348711,0.12845887243748],[-0.01012447476387,-0.014977199956775,-0.083323985338211],[0.04342595487833,-0.19804455339909,-0.19570276141167]],[[0.037437211722136,-0.020754907280207,0.017577270045877],[0.022671975195408,-0.099961332976818,-0.083603568375111],[0.012520772404969,0.0088261310011148,-0.035254616290331]],[[0.23297166824341,-0.053321730345488,0.019459612667561],[-0.03601410984993,-0.039220165461302,0.16383175551891],[-0.17242388427258,0.26681447029114,0.14223466813564]],[[0.1246203482151,0.058596856892109,0.079947732388973],[-0.015031726099551,0.043562013655901,0.10398168116808],[0.14337162673473,0.02431314624846,-0.096009030938148]],[[0.1723491102457,0.066080495715141,0.054687470197678],[0.11807833611965,-0.14887183904648,0.030654173344374],[0.00047049109707586,0.019914377480745,-0.014241431839764]],[[0.16973753273487,-0.037215899676085,0.098283484578133],[-0.0067836293019354,-0.036479506641626,-0.2421290576458],[0.14195093512535,-0.18185336887836,-0.16681359708309]],[[-0.06260622292757,-0.059689082205296,-0.19602024555206],[0.06249787658453,-0.085461974143982,0.033725704997778],[0.071182556450367,0.093779340386391,0.10254812240601]],[[0.20758208632469,0.021735554561019,-0.16678689420223],[0.038311649113894,-0.035615619271994,-0.018977198749781],[-0.082039602100849,0.022445509210229,-0.092469222843647]],[[0.017000691965222,0.10354022681713,0.031656369566917],[-0.03763972222805,0.26982486248016,0.19212348759174],[0.10723514854908,0.029308125376701,0.13899701833725]],[[0.076547011733055,0.018228396773338,-0.23698173463345],[-0.12592424452305,-0.013329559937119,-0.068703562021255],[-0.07194646447897,-0.066138602793217,0.066423922777176]],[[-0.14290443062782,-0.053467515856028,-0.10393910109997],[-0.02407218515873,0.060173142701387,0.1563536375761],[0.15353952348232,-0.011728496290743,0.097774691879749]],[[-0.10163135826588,-0.18509683012962,0.052439004182816],[-0.099916763603687,-0.14839595556259,0.060180529952049],[0.12512212991714,0.25834739208221,-0.13689997792244]],[[-0.017693962901831,-0.050071112811565,0.016185803338885],[-0.040621604770422,-0.044892366975546,-0.0070478189736605],[0.030901804566383,0.036545395851135,-0.031037393957376]],[[-0.11969240009785,-0.073424518108368,0.013423124328256],[-0.00066319119650871,-0.18929059803486,-0.029620623216033],[-0.17937256395817,-0.20956362783909,0.15567052364349]],[[-0.29999098181725,-0.16525326669216,-0.059067081660032],[0.10824055224657,-0.027264453470707,0.22638618946075],[-0.21516214311123,0.41045293211937,0.2246947735548]],[[-0.088965713977814,-0.017109060660005,0.098209545016289],[0.19058793783188,-0.15391072630882,0.10144935548306],[-0.14421379566193,0.058015942573547,0.084872744977474]],[[-0.0067275809124112,0.14505057036877,-0.081021256744862],[-0.20224064588547,0.16859383881092,-0.14376154541969],[0.10969629883766,0.22572766244411,-0.17843741178513]],[[-0.089447692036629,0.26502805948257,0.17287208139896],[0.092633448541164,0.098933525383472,0.044165007770061],[-0.083394691348076,0.047981455922127,-0.27065262198448]],[[0.0014654952101409,0.10424967855215,0.12242238223553],[-0.088253512978554,0.16430868208408,0.063315764069557],[-0.30586615204811,0.076239310204983,0.1130450591445]],[[-0.066473081707954,0.21502065658569,0.16662161052227],[0.24267184734344,0.101302690804,-0.220370054245],[-0.17994524538517,-0.16697092354298,-0.10841847211123]],[[-0.2855504155159,0.044706963002682,0.078157745301723],[-0.25694471597672,-0.064762428402901,0.095807835459709],[-0.18594239652157,0.18595442175865,0.10701363533735]],[[0.12383792549372,0.15955691039562,0.009056992828846],[0.12945759296417,-0.21428316831589,0.069383509457111],[0.0076017607934773,-0.025873076170683,-0.001183387124911]],[[-0.30872827768326,-0.085086293518543,0.032687608152628],[-0.0074249822646379,0.1457527577877,-0.16627329587936],[-0.12663358449936,-0.029516803100705,0.055960316210985]],[[-0.057410378009081,0.08774434030056,0.082507990300655],[0.15015923976898,0.20643453299999,0.024506622925401],[0.038031913340092,-0.20958179235458,-0.033199392259121]],[[-0.04247410595417,-0.043237771838903,0.012038172222674],[0.05156197398901,-0.026520421728492,0.094914555549622],[-0.25998792052269,-0.0090173007920384,0.013398507609963]],[[0.022514667361975,-0.0087118027731776,-0.034585811197758],[-0.21301686763763,-0.0042718383483589,-0.1033164486289],[0.18909767270088,-0.11457484215498,0.016036450862885]],[[-0.13764542341232,-0.041579376906157,0.036105047911406],[-0.0052506770007312,0.04800171032548,-0.034864567220211],[0.18972326815128,0.14111004769802,-0.11168642342091]],[[0.018004709854722,-0.18399992585182,0.077522464096546],[-0.17290389537811,0.15077142417431,0.085290491580963],[0.053882721811533,0.011918279342353,-0.28820368647575]],[[0.12206882238388,0.23978373408318,-0.11421681940556],[-0.16555804014206,0.083896413445473,-0.12193392962217],[-0.092920988798141,0.027943082153797,0.035443220287561]],[[0.020512795075774,0.011783800087869,0.04424961283803],[0.34239733219147,0.069183006882668,0.036344908177853],[0.13191895186901,0.10955349355936,-0.036449149250984]]],[[[0.0840919688344,0.083779104053974,-0.040872175246477],[0.045746251940727,0.030089296400547,-0.045943964272738],[0.070667907595634,0.17036554217339,0.042557746171951]],[[-0.079556025564671,-0.027798468247056,0.11134925484657],[0.073664128780365,-0.20165701210499,-0.12326754629612],[-0.12412732839584,-0.11105009168386,-0.078294403851032]],[[-0.0089711649343371,-0.00076704460661858,0.036136653274298],[0.16370636224747,0.12211126089096,-0.018652198836207],[-0.13880299031734,0.169877409935,0.08401570469141]],[[0.080392882227898,0.040140390396118,-0.003399400273338],[-0.025061164051294,-0.012504372745752,0.011798115447164],[0.011406748555601,-0.022265762090683,0.0084471199661493]],[[0.11748875677586,0.0088851135224104,0.043826643377542],[0.10872811824083,0.013094808906317,0.033753633499146],[0.054737024009228,0.059520479291677,-0.012210503220558]],[[-0.037553686648607,0.073845319449902,-0.03421700745821],[-0.033842336386442,0.098537400364876,0.057280417531729],[0.10967582464218,0.10220827162266,-0.012893236242235]],[[0.043731193989515,0.0028960281051695,0.0044072498567402],[0.0057297837920487,-0.038763660937548,-0.032770149409771],[-0.024139434099197,-0.02532347291708,0.056929834187031]],[[0.29677772521973,0.02146902680397,-0.022172786295414],[0.1284706890583,0.11011414974928,0.037405554205179],[0.1402862071991,0.024073569104075,0.020326538011432]],[[-0.02170642465353,-0.20511277019978,0.018769916146994],[0.093984417617321,-0.022601647302508,-0.111338801682],[-0.11810845881701,0.0090992068871856,0.057964216917753]],[[0.080394111573696,-0.032904632389545,-0.055094957351685],[-0.034704685211182,-0.060239899903536,-0.13387258350849],[-0.022245166823268,-0.11724682897329,0.037269834429026]],[[0.075373187661171,-0.024477431550622,0.038248538970947],[0.077124610543251,0.087257191538811,-0.01230857335031],[-0.04560587182641,-0.00092417327687144,-0.052854411303997]],[[0.04323972761631,0.024211706593633,-0.049118965864182],[0.049435008317232,0.098670914769173,-0.014934506267309],[-0.085915863513947,-0.10656236857176,-0.040018994361162]],[[0.0056077381595969,0.089136533439159,0.013570805080235],[-0.1160841807723,0.001341519295238,-0.064217008650303],[-0.15035936236382,-0.029932744801044,0.048269659280777]],[[0.024321831762791,-0.020447760820389,-0.089777357876301],[0.048942163586617,0.040783040225506,-0.056689523160458],[0.0061371116898954,-0.13040333986282,-0.015915067866445]],[[0.014078516513109,-0.00019352507661097,0.10439612716436],[-0.058684021234512,0.065502800047398,-0.055896878242493],[-0.16537526249886,-0.095830291509628,-0.16966055333614]],[[-0.026310516521335,-0.012068248353899,0.069684073328972],[0.27221068739891,0.082731232047081,0.13546745479107],[0.054924741387367,-0.0074317576363683,0.0072745252400637]],[[0.11671733111143,-0.11874438077211,0.15833878517151],[0.048712722957134,-0.043877832591534,0.051005143672228],[0.057995297014713,0.094074122607708,0.074566625058651]],[[-0.12328006327152,0.029848901554942,0.11339657753706],[-0.20827800035477,0.056482952088118,0.073556646704674],[-0.1956132799387,-0.060547322034836,-0.002811090555042]],[[0.072421759366989,-0.068802490830421,0.032052297145128],[0.095767304301262,0.07547590136528,0.044459041208029],[-0.038264743983746,-0.18507367372513,-0.043033339083195]],[[-0.028225710615516,-0.06440881639719,0.055580485612154],[0.009778861887753,0.022692419588566,-0.20882418751717],[-0.094053961336613,0.02364225499332,0.018660390749574]],[[0.0039881188422441,0.06382143497467,0.021110320463777],[-0.025203850120306,0.021379640325904,0.15583452582359],[0.015256406739354,0.011043869890273,0.0064881052821875]],[[-0.044103682041168,-0.035753149539232,0.12621226906776],[0.021503204479814,-0.014828816056252,-0.083328805863857],[-0.066609859466553,-0.12245717644691,0.018534194678068]],[[-0.049363270401955,-0.030243894085288,0.041131049394608],[-0.019135231152177,-0.050414372235537,0.091151088476181],[-0.10197477042675,-0.059603855013847,0.035047974437475]],[[-0.027587629854679,0.020771974697709,-0.03378564119339],[0.079933807253838,0.12256440520287,-0.067876502871513],[-0.00023984165454749,0.046073686331511,-0.10981933772564]],[[0.011640882119536,-0.151670768857,-0.013568380847573],[-0.053573541343212,-0.051201481372118,-0.085594236850739],[-0.061061926186085,0.0228784494102,-0.047366313636303]],[[0.047146875411272,-0.029585875570774,0.045117743313313],[0.058595314621925,0.068447396159172,0.041321564465761],[-0.14892861247063,0.0065247877500951,0.077950291335583]],[[0.027454668655992,-0.1379929035902,0.096199631690979],[-0.17671766877174,-0.1268068253994,-0.10603710263968],[0.17820928990841,-0.019442729651928,0.056492544710636]],[[-0.054225116968155,0.017076445743442,0.13283345103264],[-0.022788088768721,-0.10122892260551,0.0027486886829138],[0.060874979943037,-0.10257469117641,0.064457379281521]],[[-0.0092810597270727,0.044234868139029,0.10406439006329],[-0.03909857198596,-0.080199092626572,-0.067675597965717],[0.054231528192759,0.0082538332790136,-0.018689449876547]],[[0.0029511854518205,-0.064803190529346,0.00048868026351556],[0.0049058725126088,0.069189809262753,-0.06722766906023],[0.033590607345104,-0.047441441565752,-0.012067744508386]],[[0.13544553518295,0.03161858767271,-0.010703515261412],[-0.093762591481209,0.048372033983469,-0.061437640339136],[0.024738647043705,0.15870423614979,0.031836960464716]],[[0.11781545728445,-0.089469246566296,0.12502348423004],[-0.0063408114947379,-0.0031988064292818,-0.08867946267128],[0.24408036470413,0.14298024773598,0.18927752971649]],[[-0.059025298804045,0.078930750489235,0.043402820825577],[-0.038704473525286,0.035920824855566,0.11302442848682],[0.058728005737066,-0.018401440232992,-0.013102108612657]],[[0.075571067631245,0.11126044392586,0.142507776618],[0.13011890649796,0.077909789979458,0.13080210983753],[-0.0080009736120701,-0.041713427752256,-0.077535562217236]],[[-0.030232409015298,0.0049100951291621,-0.01545484084636],[-0.0014930964680389,0.05199758335948,7.3578979936428e-05],[0.027837553992867,0.086105972528458,-0.087148420512676]],[[0.043699976056814,0.086787149310112,0.015045174397528],[-0.13051269948483,0.0056256079114974,0.028488488867879],[0.1131766885519,0.052879210561514,-0.049009006470442]],[[0.14301808178425,0.14142583310604,0.066235065460205],[0.090852543711662,-0.022951040416956,-0.014929637312889],[-0.082110457122326,-0.052052039653063,-0.018745547160506]],[[0.043633613735437,-0.042870055884123,0.072958014905453],[0.1237915456295,-0.029111055657268,-0.016258616000414],[-0.032329335808754,-0.0038209387566894,-0.038632467389107]],[[0.01079472899437,0.038437716662884,0.21118670701981],[0.10967734456062,0.073802262544632,0.087034612894058],[0.046207692474127,0.059901729226112,0.058716159313917]],[[-0.021535642445087,-0.038443695753813,-0.049030981957912],[-0.052509564906359,0.045607767999172,-0.063720040023327],[0.027533864602447,0.035053439438343,-0.016863122582436]],[[0.027146367356181,-0.074954830110073,0.044874034821987],[-0.17266841232777,0.025929734110832,0.092254780232906],[0.055006917566061,-0.13669183850288,-0.018480565398932]],[[-0.037288535386324,0.01858539134264,-0.087471485137939],[0.068252295255661,0.016459126025438,0.03312211856246],[-0.12171701341867,-0.015146225690842,0.0024234475567937]],[[0.025249134749174,-0.017947290092707,0.027230957522988],[0.098087295889854,-0.0015037183184177,0.0095684751868248],[0.022118287160993,-0.046429723501205,0.10482310503721]],[[0.012352698482573,-0.01836434751749,0.047876264899969],[-0.11219428479671,0.01773989200592,-0.0043338402174413],[-0.014774223789573,0.07414648681879,-0.083695530891418]],[[-0.028283243998885,-0.059379424899817,0.050551824271679],[0.098421394824982,-0.042087726294994,-0.037806201726198],[0.076302923262119,0.19930920004845,0.016972184181213]],[[0.028326507657766,0.069879442453384,0.11070667952299],[0.042268972843885,0.029965734109282,0.049407951533794],[0.052344150841236,0.061031498014927,0.042222298681736]],[[-0.20504407584667,0.055032152682543,0.15843960642815],[-0.07872599363327,0.062768764793873,-0.053209703415632],[-0.12881326675415,0.087512165307999,0.024980556219816]],[[-0.032230373471975,-0.060276973992586,-0.067769974470139],[-0.17519146203995,-0.06467267870903,-0.0025266984011978],[0.047770079225302,-0.058760162442923,-0.049873277544975]],[[-0.061127856373787,-0.067398525774479,-0.027017362415791],[-0.052300557494164,-0.097806967794895,-0.064036406576633],[-0.043332606554031,-0.011478964239359,0.021306561306119]],[[0.011750727891922,-0.047327868640423,0.053522754460573],[0.036832369863987,-0.0051182573661208,-0.079640276730061],[-0.060095023363829,-0.10070264339447,0.10630382597446]],[[0.12277880311012,0.110490642488,-0.039274197071791],[-0.13570107519627,-0.039661757647991,-0.015730131417513],[-0.10762073844671,0.078683689236641,0.022137710824609]],[[0.015172137878835,0.044751975685358,-0.16815847158432],[-0.014198560267687,-0.018076930195093,-0.081850402057171],[0.029815066605806,-0.0053852801211178,0.050320375710726]],[[-0.083186164498329,-0.060854502022266,-0.080385975539684],[-0.082845441997051,-0.04479493945837,0.10200937092304],[-0.046388458460569,0.0014416972408071,0.035929195582867]],[[0.015431728214025,-0.025380961596966,0.050224035978317],[0.08115354180336,0.036914467811584,0.03959920629859],[0.063167594373226,-0.057546325027943,0.021715903654695]],[[-0.14582169055939,0.079428896307945,0.017700748518109],[-0.013681098818779,0.059631768614054,0.098121263086796],[0.028375314548612,-0.022242253646255,0.1380812972784]],[[0.15831948816776,0.0071055223233998,0.060005359351635],[-0.10374980419874,0.084784552454948,0.075542271137238],[-0.041209444403648,-0.028926432132721,-0.094230346381664]],[[0.030971260741353,0.041416477411985,-0.016160905361176],[-0.028751457110047,0.0041598379611969,0.11159311980009],[0.029753951355815,0.035658422857523,0.017844665795565]],[[0.064207389950752,0.0078130718320608,0.0073727983981371],[0.098470538854599,-0.043884076178074,-0.024860585108399],[0.11903022229671,0.047354713082314,0.070190116763115]],[[0.027491955086589,0.016460344195366,-0.080908618867397],[0.13449831306934,0.22340832650661,0.16154463589191],[-0.11746370047331,-0.030098728835583,0.03601461648941]],[[0.046703908592463,0.073600172996521,-0.076837159693241],[-0.21858927607536,-0.067101091146469,0.034337636083364],[0.013693721964955,0.06444438546896,0.058235410600901]],[[-0.063604898750782,-0.092742919921875,-0.050172604620457],[-0.073894307017326,-0.065490648150444,-0.065082997083664],[-0.034399829804897,-0.086151488125324,-0.032175630331039]],[[0.12056666612625,0.12119973450899,0.034050490707159],[-0.037798129022121,-0.15872427821159,-0.070613116025925],[0.087437905371189,-0.09183757007122,-0.157510638237]],[[0.099562205374241,0.086569018661976,0.059832625091076],[-0.013469095341861,0.043621473014355,0.030175890773535],[-0.012186321429908,0.12166620790958,0.11799780279398]],[[0.045109171420336,0.24854481220245,0.044925387948751],[-0.049364920705557,0.0069815488532186,0.0020240005105734],[-0.036539260298014,-0.014011821709573,0.04176339879632]],[[0.19541642069817,-0.093554064631462,0.0069421869702637],[-0.041803542524576,0.020812038332224,-0.063117690384388],[0.034314464777708,0.038661252707243,-0.029613368213177]],[[-0.0095542594790459,0.046528771519661,0.14973410964012],[0.065723650157452,-0.024006571620703,-0.023342836648226],[0.021372593939304,-0.10732135921717,0.10342343151569]],[[0.052046686410904,-0.070692874491215,-0.036866337060928],[-0.12552601099014,0.012585144490004,0.063042610883713],[-0.065143063664436,-0.03314096480608,1.5705367331975e-05]],[[-0.096732601523399,-0.073258586227894,-0.14254447817802],[0.12417696416378,0.046942077577114,0.0071449400857091],[0.046178866177797,-0.00033549751969986,-0.10591386258602]],[[0.16138848662376,-0.059241656213999,-0.14034786820412],[0.12879312038422,0.06152181699872,-0.049200270324945],[-0.00038220273563638,-0.13112723827362,0.015915980562568]],[[0.054847598075867,-0.054607536643744,0.0085426680743694],[0.035672836005688,0.0039287698455155,0.092084556818008],[0.073482759296894,0.096094280481339,0.18415260314941]],[[0.13952730596066,0.17933386564255,0.011902159079909],[0.022520150989294,0.025218496099114,0.10942728072405],[0.031753342598677,0.089442223310471,0.10697823762894]],[[0.063936963677406,0.1501273214817,0.11755163967609],[-0.041560113430023,-0.22674344480038,-0.09119988232851],[0.062776163220406,-0.031243715435266,0.078717917203903]],[[0.031626887619495,0.0042071458883584,0.099606357514858],[-0.12292896211147,0.073478534817696,0.075698047876358],[0.016465211287141,-0.0095983557403088,-0.089264698326588]],[[0.075177401304245,-7.2374117735308e-05,0.023433763533831],[-0.0092969862744212,-0.12944127619267,-0.099152721464634],[-0.087916240096092,-0.029804246500134,-0.068195678293705]],[[-0.1139966621995,0.104398265481,0.0041540819220245],[0.039143566042185,-0.043298967182636,0.046495672315359],[-0.044130638241768,0.014059604145586,0.017502352595329]],[[0.041735678911209,0.08711951225996,-0.029736436903477],[0.18360123038292,0.052185598760843,0.17042353749275],[0.016657296568155,-0.11709439009428,0.0857223123312]],[[-0.038790248334408,-0.0099087757989764,-0.047872930765152],[-0.037057980895042,-0.012155042029917,0.0018338869558647],[-0.033539056777954,0.12312087416649,0.15215475857258]],[[-0.038369100540876,-0.023592656478286,0.020311439409852],[0.03746423125267,-0.028317734599113,0.019848275929689],[0.018846515566111,0.011786110699177,0.056524466723204]],[[-0.001696381601505,-0.062461920082569,-0.11007444560528],[-0.088974937796593,-0.009395026601851,0.034051537513733],[-0.060065306723118,-0.018917396664619,-0.062294367700815]],[[-0.093427143990993,-0.0523841381073,-0.12075198441744],[-0.095504231750965,-0.10863602906466,0.0053289956413209],[-0.059257917106152,-0.10601259768009,-0.1061189994216]],[[-0.074681393802166,-0.063421562314034,0.030744997784495],[0.016127184033394,0.073261670768261,-0.014535433612764],[0.063845880329609,0.071273125708103,-0.034838069230318]],[[-0.062711536884308,-0.076423615217209,0.00088878173846751],[-0.054772146046162,0.024514820426702,0.022908858954906],[-0.013237562030554,0.056103151291609,0.057216495275497]],[[-0.093176998198032,-0.12732599675655,-0.083123244345188],[-0.19732701778412,-0.10936243087053,-0.0072319735772908],[0.015711242333055,-0.026928439736366,0.034066170454025]],[[-0.14499309659004,-0.098165743052959,0.099036760628223],[-0.0046229111030698,0.13668283820152,0.15443487465382],[-0.057897455990314,0.035449985414743,-0.013295378535986]],[[0.14157377183437,0.084494389593601,0.13490445911884],[-0.024490239098668,0.063498958945274,0.054745994508266],[-0.0019313036464155,-0.018208654597402,-0.09400350600481]],[[-0.08992999792099,-0.11622899025679,-0.10454417020082],[0.083361357450485,-0.033777665346861,-0.091645501554012],[0.061821926385164,-0.088103599846363,-0.019355053082108]],[[0.081927105784416,0.020524643361568,0.083452045917511],[0.087261378765106,0.18632814288139,-0.051763322204351],[-0.042287364602089,-0.020010519772768,0.01110843103379]],[[0.026801792904735,-0.024552848190069,0.061420492827892],[-0.038652583956718,0.027578376233578,-0.048026263713837],[-0.080860041081905,0.043772425502539,0.042604796588421]],[[0.010491132736206,-0.036779880523682,0.058448798954487],[-0.0035703186877072,0.017531650140882,-0.08392708748579],[0.064461603760719,-0.09281200915575,-0.0015231813304126]],[[-0.13024793565273,-0.11877528578043,-0.16123077273369],[0.075105212628841,-0.11152806133032,-0.0088542280718684],[-0.011710445396602,-0.019031753763556,-0.088401414453983]],[[0.014559778384864,0.049208667129278,-0.010801454074681],[-0.099751807749271,0.068822585046291,0.1179112419486],[-0.077544786036015,-0.014324054121971,-0.023004868999124]],[[0.0019362126477063,0.034007325768471,-0.011883989907801],[0.059882331639528,0.054595421999693,-0.052108388394117],[0.11611418426037,0.31201648712158,0.091389305889606]],[[0.18110653758049,-0.044578321278095,0.041419114917517],[0.073917657136917,0.11846429109573,0.024508785456419],[0.088664919137955,-0.02060261555016,-0.053983900696039]],[[-0.031742095947266,0.031258974224329,-0.061368010938168],[0.018065476790071,0.014899853616953,-0.069826439023018],[0.19241474568844,0.078041404485703,0.10035661607981]],[[0.051550976932049,-0.0064467038027942,-0.074211053550243],[0.053266540169716,0.033611882477999,-0.097960963845253],[0.14581161737442,-0.015389272011817,0.064390018582344]],[[0.10102423280478,0.090765044093132,0.087283752858639],[0.075934521853924,-0.1717384159565,-0.039208926260471],[0.22890797257423,0.14136675000191,0.16786201298237]],[[0.015250044874847,0.058943428099155,0.058233562856913],[0.13680462539196,-0.15742999315262,-0.060731593519449],[-0.027203150093555,0.03123876452446,-0.024028794839978]],[[0.076487429440022,0.031640838831663,0.094512492418289],[0.10806999355555,0.010229174979031,0.092261739075184],[0.11147838830948,0.064763024449348,0.043702982366085]],[[0.066232845187187,-0.0053797094151378,0.0095360269770026],[0.076175026595592,0.074813894927502,-0.093958422541618],[0.023562734946609,0.039396654814482,-0.017140299081802]],[[0.076654531061649,0.016463156789541,-0.0046595325693488],[0.050309304147959,0.04857387766242,-0.073422722518444],[0.046757467091084,0.02780875749886,-0.0047072651796043]],[[-0.05031830444932,-0.016991863027215,-0.10226193070412],[-0.18677593767643,-0.14301931858063,-0.062065646052361],[-0.092828668653965,0.024438675493002,-0.16788619756699]],[[0.036801263689995,-0.056987911462784,0.1213329359889],[0.0093727810308337,-0.12293693423271,0.20082932710648],[0.029897129163146,-0.070268154144287,0.018713453784585]],[[0.002313616219908,0.0092983273789287,-0.032070085406303],[0.012469216249883,0.019558237865567,0.016877228394151],[0.052588161081076,0.026770381256938,-0.065338283777237]],[[0.0031123044900596,-0.020858693867922,-0.023388212546706],[-0.075183779001236,-0.044963661581278,0.042073305696249],[0.054086815565825,0.017404746264219,0.11579692363739]],[[-0.0091671738773584,0.061282888054848,-0.053257901221514],[-0.057965259999037,-0.011608303524554,0.0074532357975841],[-0.02262713573873,0.055352203547955,-0.019705168902874]],[[0.023148683831096,0.0013022413477302,-0.085467591881752],[0.043040998280048,-0.18272598087788,0.024113539606333],[0.12651559710503,0.010321531444788,0.055985666811466]],[[-0.024382926523685,0.096955694258213,0.030690580606461],[0.038510646671057,0.0060211112722754,0.10996770858765],[0.032727140933275,-0.067123465240002,-0.020664039999247]],[[-0.032381907105446,0.050592631101608,0.044277545064688],[0.082450337707996,0.019650341942906,-0.084125138819218],[-0.038681142032146,-0.024136247113347,-0.071530036628246]],[[-0.059003956615925,-0.049857255071402,0.079399302601814],[-0.073256306350231,-0.044730897992849,0.024599285796285],[0.026668399572372,-0.11595966666937,-0.03489300981164]],[[-0.066890977323055,-0.022704539820552,-0.084708951413631],[-0.063990406692028,-0.047234300523996,-0.0386026725173],[-0.0205850712955,0.057376611977816,0.038929011672735]],[[-0.0030961828306317,0.037322208285332,-0.10552925616503],[0.012546516954899,0.0027034236118197,0.0021471090149134],[-0.089126445353031,0.018587412312627,0.051950227469206]],[[0.071224004030228,0.016498548910022,0.016220377758145],[0.050861999392509,0.0089216688647866,-0.059625953435898],[0.038321517407894,0.063950538635254,-0.005568528547883]],[[-0.1065232232213,-0.018664140254259,-0.070073023438454],[-0.099182553589344,-0.081949278712273,0.00033123858156614],[0.047011468559504,0.08547855168581,-0.046070359647274]],[[-0.066415265202522,-0.0087405201047659,-0.034509416669607],[0.06657187640667,0.040742319077253,0.21428608894348],[-0.013253449462354,0.047927707433701,0.00059069780400023]],[[-0.05053236708045,-0.075919479131699,-0.015553088858724],[-0.089315965771675,-0.079357117414474,-0.060081094503403],[-0.14809291064739,-0.12657837569714,0.014357552863657]],[[-0.051567077636719,0.045448668301105,0.032706316560507],[0.00097313342848793,0.092984549701214,0.048854924738407],[-0.081396333873272,-0.2033716738224,-0.21340779960155]],[[0.010151539929211,0.1438006311655,-0.0027103440370411],[0.027552947402,-0.025707298889756,-0.053728580474854],[0.086703881621361,0.10835641622543,0.0046046795323491]],[[-0.016639363020658,-0.1574117988348,-0.032354105263948],[-0.036655645817518,-0.061662305146456,-0.16786746680737],[0.12101834267378,-0.053878411650658,0.080987095832825]],[[0.032097440212965,-0.11649571359158,0.034285385161638],[0.047149743884802,-0.0025983080267906,-0.065061926841736],[-0.054713301360607,-0.045026578009129,-0.0085424100980163]],[[0.079149059951305,0.033800840377808,-0.017440849915147],[-0.015696708112955,-0.035183407366276,-0.0037801379803568],[-0.017408197745681,0.033748388290405,-0.078913629055023]],[[-0.06453238427639,-0.10938496142626,-0.033151421695948],[-0.1823256611824,-0.04430915042758,-0.024490399286151],[-0.039995085448027,-0.087971672415733,-0.089616216719151]],[[0.0050235958769917,0.022202551364899,0.028628889471292],[0.017177859321237,-0.044996194541454,-0.063780553638935],[-0.037561796605587,0.062850132584572,-0.10465835779905]],[[-0.062778376042843,-0.045327227562666,0.054062500596046],[-0.13040891289711,-0.12124581634998,0.061068631708622],[-0.1408517062664,-0.051051493734121,-0.079501196742058]],[[-0.062536969780922,-0.083861745893955,-0.11288474500179],[0.041079200804234,0.0033569498918951,-0.082696504890919],[-0.12808659672737,-0.035073589533567,-0.13683424890041]],[[0.072323098778725,0.071722403168678,0.13505266606808],[0.10459625720978,0.030563564971089,0.088599875569344],[0.072156518697739,0.048487823456526,0.027536662295461]],[[0.0065586930140853,-0.13688623905182,-0.049562282860279],[-0.077584467828274,-0.097980067133904,0.041415829211473],[-0.0062992223538458,-0.055333983153105,-0.010288478806615]],[[-0.022002348676324,-0.060109611600637,-0.0065367906354368],[0.029274314641953,-0.045494008809328,-0.036174569278955],[0.032109912484884,-0.010585406795144,-0.088429465889931]],[[-0.066873677074909,0.0072562638670206,0.00015968375373632],[0.037817686796188,0.048310212790966,-0.034858647733927],[0.00032715700217523,0.086470149457455,0.024566385895014]]],[[[0.091845311224461,-0.02155676484108,0.060409422963858],[-0.021901289001107,-0.0094346981495619,0.019496532157063],[-0.075567223131657,0.030978556722403,-0.041024722158909]],[[-0.048561166971922,-0.0035542533732951,-0.0096032517030835],[0.015905570238829,-0.048081398010254,0.050438854843378],[0.067385479807854,0.066413924098015,0.091419637203217]],[[-0.045339964330196,0.055356174707413,0.033949658274651],[0.080243416130543,0.004261979367584,-0.051629304885864],[0.015868030488491,-0.054339703172445,-0.0043968856334686]],[[0.065779529511929,-0.036428477615118,-0.012293788604438],[-0.060408890247345,0.038688313215971,0.037114284932613],[0.039349216967821,0.041186966001987,-0.025396222248673]],[[-0.087148956954479,-0.04477509111166,0.050717279314995],[0.078492626547813,-0.059710416942835,-0.0062530059367418],[-0.0070134969428182,-0.0091319484636188,-0.022370195016265]],[[-0.022910432890058,0.047927543520927,-0.042816918343306],[0.030564397573471,-0.04626390337944,0.018673775717616],[0.0006770261679776,0.016325168311596,0.069128528237343]],[[-0.016324914991856,0.046281948685646,-0.0091913416981697],[0.0021600057370961,0.0027755664195865,-0.014095790684223],[-0.0028749846387655,0.0033685099333525,-0.016254335641861]],[[-0.063259027898312,-0.0096332719549537,0.008024400100112],[-0.014749815687537,0.093615934252739,0.0077213202603161],[-0.0065493006259203,0.028541112318635,0.032369628548622]],[[0.059561885893345,-0.051675703376532,0.054026771336794],[0.012937125749886,0.051464587450027,0.00016077843611129],[0.0097605232149363,-0.045719485729933,0.034402385354042]],[[-0.05982244759798,-0.0088756997138262,0.021350676193833],[-0.064621530473232,0.048802156001329,0.018478030338883],[-0.0049369847401977,0.02470919303596,0.044980183243752]],[[0.006507215090096,-0.014938370324671,0.035307738929987],[-0.042170323431492,-0.058178033679724,0.047191552817822],[-0.016629515215755,-0.016705796122551,-0.039063639938831]],[[-0.015108588151634,0.056545834988356,-0.055493604391813],[0.012136313132942,0.040636111050844,0.00014615373220295],[0.037560202181339,-0.025618094950914,0.026515467092395]],[[0.018327305093408,0.054178349673748,0.0074380831792951],[-0.054034102708101,0.01176305487752,-0.010529279708862],[-0.015953009948134,0.037138950079679,0.0071732462383807]],[[-0.035059954971075,0.051372341811657,0.038712717592716],[0.016614332795143,0.0020526794251055,0.04040427878499],[0.031941510736942,0.047676265239716,-0.047197181731462]],[[0.070788182318211,0.0075420262292027,-0.023490848019719],[-0.039459362626076,0.10580538958311,-0.027370387688279],[-0.049518100917339,0.078373946249485,0.0076048658229411]],[[-0.051914725452662,-0.028111405670643,0.071195989847183],[-0.015561990439892,0.03247594460845,0.013751642778516],[0.0057693608105183,0.0027903306763619,-0.03967272862792]],[[0.011180921457708,0.0022662538103759,-0.077266104519367],[0.056427970528603,0.0054393233731389,-0.051181733608246],[-0.0070572686381638,0.010950806550682,0.065958797931671]],[[0.010940589010715,-0.0026113875210285,0.028265057131648],[-0.0045779380016029,-0.012377766892314,-0.02582729794085],[-0.041113778948784,-0.027165522798896,-0.054324775934219]],[[0.039412539452314,-0.033168088644743,0.042275343090296],[0.020578399300575,0.062947072088718,-0.008478962816298],[0.018372045829892,0.025377465412021,0.019750388339162]],[[0.0046135145239532,0.0060335327871144,0.0019910247065127],[0.036505099385977,0.015435543842614,-0.028406230732799],[0.02287208661437,0.059647463262081,0.024197939783335]],[[-0.041069146245718,-0.027716815471649,0.012392566539347],[-0.059225935488939,0.010960905812681,-0.015944331884384],[-0.0058568036183715,-0.072894670069218,0.037611406296492]],[[0.06037824228406,0.090141370892525,-0.020463122054935],[-0.08344579488039,0.013990384526551,-0.047717154026031],[-0.032568145543337,-0.072735898196697,0.018338097259402]],[[-0.078275665640831,0.11047254502773,-0.05474229156971],[0.043438091874123,0.034184101969004,0.02125951834023],[-0.077829569578171,0.035921148955822,0.0035421913489699]],[[0.020970797166228,-0.040681552141905,0.049029335379601],[0.041694790124893,-0.0089904824271798,-0.049870099872351],[0.095661602914333,0.034700870513916,0.037219367921352]],[[-0.020683875307441,-0.03114908002317,0.057748895138502],[0.006486854981631,0.038712222129107,-0.0034900333266705],[-0.047459416091442,-0.0033054337836802,0.028956791386008]],[[0.015537604689598,0.0092028984799981,0.098948180675507],[0.011685756035149,-0.047894310206175,0.044021680951118],[-0.0018521066522226,-0.028353303670883,0.056654922664165]],[[0.072948582470417,0.015163173899055,-0.083280861377716],[-0.080765686929226,-0.009016290307045,-0.020219333469868],[-0.010744234547019,-0.00016489179688506,-0.083408333361149]],[[-0.022558989003301,-0.065178908407688,-0.0034230994060636],[0.0065954416058958,0.03465997427702,-0.024159986525774],[0.06571439653635,0.077314458787441,-0.026797624304891]],[[-0.04187098518014,-0.036334965378046,0.017456626519561],[-0.044605027884245,0.016841061413288,-0.012124337255955],[0.078230790793896,0.012261835858226,-0.019290523603559]],[[-0.033261843025684,-0.06101831048727,-0.022373801097274],[-0.026848150417209,0.022512521594763,-0.022026473656297],[-0.0050932615995407,0.061982993036509,-0.05497607961297]],[[0.044431511312723,0.026901012286544,0.0077805500477552],[0.035916693508625,-0.036711592227221,-0.026742512360215],[-0.02110568806529,0.041810229420662,-0.0098686870187521]],[[-0.046415694057941,0.01784504763782,-0.077355802059174],[0.044621370732784,-0.01857915520668,-0.028987852856517],[-0.014247412793338,0.0020443266257644,0.00030094728572294]],[[-0.019892804324627,0.009001424536109,-0.0018974671838805],[-0.0032358882017434,0.034058399498463,-0.046374551951885],[0.012174879200757,0.029470957815647,-0.032275661826134]],[[0.060563273727894,0.010699046775699,0.014558627270162],[0.044966794550419,-0.056620236486197,0.026843840256333],[0.019184375181794,-0.0021201681811363,-0.017946364358068]],[[0.0099975755438209,-0.0043118721805513,0.0158706959337],[0.071362681686878,0.049184527248144,0.028985608369112],[0.040489941835403,-0.010478426702321,-0.097149260342121]],[[0.012400542385876,-0.0017240688903257,-0.011108489707112],[0.01457345765084,-0.039945043623447,0.047070518136024],[0.01868075504899,-0.036170944571495,-0.04732084274292]],[[-0.0095925917848945,-0.034589026123285,0.030458627268672],[-0.031928326934576,0.014849375933409,0.051049385219812],[0.033825874328613,-0.023206470534205,-0.04659528285265]],[[0.068817980587482,0.013823298737407,0.013085231184959],[0.030634677037597,-0.061947889626026,0.0031376464758068],[0.012173946946859,-0.0057579539716244,0.0032863121014088]],[[-0.053476341068745,-0.01666902936995,-0.040788002312183],[0.073299780488014,-0.035479426383972,0.049052957445383],[-0.017902130261064,0.037018187344074,0.054255917668343]],[[-0.023460924625397,-0.043875049799681,0.0075612063519657],[-0.017623545601964,0.034122966229916,-0.016447730362415],[-0.02200117520988,-0.037637360394001,-0.039025235921144]],[[0.015783445909619,-0.00053595204371959,0.031514566391706],[-0.020710308104753,-0.031250018626451,0.050274811685085],[-0.0031346667092294,-0.021839072927833,-0.012925310991704]],[[0.0022514350712299,0.060520522296429,-0.07172480225563],[-0.027888834476471,-0.032918933779001,0.066009141504765],[-0.019367421045899,-0.0079315202310681,-0.0099321017041802]],[[0.09275645762682,-0.0099988300353289,0.030271908268332],[0.014024029485881,0.032334085553885,-0.075896024703979],[0.0085095409303904,-0.097687467932701,0.10495540499687]],[[-0.053344115614891,-0.042716331779957,-0.0012721971143037],[-0.11307954788208,-0.1005063354969,-0.080864377319813],[-0.015148372389376,-0.084075108170509,-0.038318667560816]],[[-0.023735763505101,0.0020832282025367,-0.011171178892255],[0.01652617380023,-0.059841655194759,0.062544718384743],[0.022016912698746,0.013578152284026,0.0040996526367962]],[[0.051359985023737,0.016272874549031,0.065285742282867],[-0.054798249155283,0.00066604622406885,-0.045377776026726],[0.064365066587925,0.041350189596415,0.039345927536488]],[[0.03443293645978,-0.015539262443781,-0.038450792431831],[0.018206462264061,0.047126855701208,-0.013174782507122],[-0.0019551580771804,0.025526138022542,0.026260145008564]],[[-0.0085972053930163,-0.015022957697511,-3.7257144867908e-05],[0.093104340136051,0.034223556518555,0.054316937923431],[0.012986111454666,0.012745751999319,-0.0063341544009745]],[[0.024713484570384,0.0020197953563184,0.042954705655575],[-0.073757752776146,-0.072016321122646,0.010259930975735],[-0.018847147002816,0.048066906630993,0.0071032112464309]],[[0.005987458396703,0.04902209341526,-0.042966160923243],[-0.0047188573516905,-0.0022210020106286,0.083863347768784],[0.043848849833012,0.029029790312052,0.0045105651952326]],[[0.00231659039855,0.0073472582735121,0.025930307805538],[0.0024958809372038,0.044773053377867,0.033441137522459],[0.040378756821156,-0.03676875680685,0.00030458040419035]],[[-0.084415145218372,0.018243106082082,0.0078229960054159],[-0.03870365768671,0.033197514712811,0.029480215162039],[0.042492091655731,-0.031810838729143,0.030104307457805]],[[0.067002892494202,-0.037069607526064,0.04636488109827],[0.023377425968647,0.045455798506737,-0.034970197826624],[-0.051793526858091,-0.018132109194994,-0.02522929571569]],[[-0.016306856647134,-0.011740060523152,0.030092028900981],[-0.011434162035584,0.01883645914495,0.011403150856495],[0.010004950687289,-0.013115206733346,-0.058294259011745]],[[0.12843592464924,-0.01869641058147,-0.043008483946323],[0.03964664414525,0.079652696847916,-0.029686806723475],[0.073525346815586,-0.0037711733020842,-0.0029908705037087]],[[-0.028397841379046,0.056055035442114,-0.014788360334933],[-0.050772350281477,-0.050226572901011,-0.044665396213531],[-0.042038038372993,0.0074686878360808,0.046880479902029]],[[-0.0011796116596088,0.053455404937267,0.022228265181184],[-0.046408984810114,-0.014306213706732,-0.050062101334333],[-0.016414899379015,-0.0073235714808106,0.0063723847270012]],[[0.028968442231417,0.055631879717112,0.0564982034266],[0.04664309322834,0.0039184782654047,-0.035078592598438],[-0.026412468403578,-0.062934376299381,0.038211792707443]],[[0.089175514876842,0.026075383648276,-0.079746626317501],[-0.012082109227777,-0.016135359182954,0.018096104264259],[0.02407312206924,-0.043418999761343,-0.0079599497839808]],[[-0.00089835998369381,-0.033171072602272,-0.05290812253952],[-0.03067409619689,-0.0027212807908654,-0.056676518172026],[-0.024624478071928,0.0095889223739505,0.10246086865664]],[[0.055350635200739,0.020953040570021,0.022357907146215],[-0.020132379606366,0.0071923425421119,0.0044614588841796],[-0.035158019512892,-0.11327324807644,0.039673246443272]],[[0.021442722529173,0.069398358464241,-0.0066067683510482],[-0.10712270438671,0.042335968464613,0.0071991416625679],[0.013546358793974,-0.018187275156379,0.02541222423315]],[[0.023859707638621,0.0079474141821265,0.025240128859878],[0.0016742862062529,0.0059813838452101,-0.0053741112351418],[0.021856108680367,-0.0058343899436295,0.0039676460437477]],[[-0.092598058283329,-0.04476810246706,0.035168301314116],[0.052650455385447,0.031275376677513,-0.066181868314743],[0.056964475661516,0.0024114712141454,0.023141356185079]],[[-0.087147630751133,-0.031350050121546,0.062510713934898],[-0.0040980102494359,0.052019964903593,0.039005506783724],[0.004067178349942,-0.047793578356504,0.054232835769653]],[[-0.068837396800518,-0.024287344887853,0.10197702795267],[0.00094457267550752,-0.017003580927849,-0.0019902565982193],[0.056089751422405,0.05394346639514,-0.012364830821753]],[[-0.012624789960682,-0.043808821588755,0.01664474606514],[-0.0024219793267548,-0.0212067887187,-0.014036201871932],[0.024129819124937,-0.064164839684963,0.06148124486208]],[[-0.00052949867676944,0.027530102059245,-0.084467589855194],[-0.024140512570739,-0.056275214999914,-0.023789661005139],[0.03652061149478,0.0252232439816,0.016523042693734]],[[-0.0034203834366053,-0.051978372037411,0.03089814260602],[0.024188559502363,-0.015030633658171,-0.024285400286317],[-0.014294065535069,0.0098648741841316,0.031228480860591]],[[-0.010330936871469,-0.02526861615479,-0.027739956974983],[-0.015368334949017,0.033082816749811,-0.084171749651432],[-0.049328461289406,-0.11386989802122,0.035580657422543]],[[0.030023222789168,-0.027922624722123,-0.014529781416059],[0.031013879925013,-0.0088695390149951,0.02312770485878],[-0.042472004890442,0.074735037982464,-0.039774149656296]],[[0.00091431540204212,0.022191563621163,-0.04164207354188],[0.048133943229914,0.047720707952976,-0.068144209682941],[-0.021750800311565,0.020808907225728,0.029194597154856]],[[0.045038305222988,0.08733095228672,0.013572477735579],[-0.059513062238693,0.04680360481143,-0.051360812038183],[0.019302040338516,0.059460744261742,0.013305895961821]],[[-0.050075568258762,0.0064438804984093,0.00072674703551456],[-0.034114997833967,-0.018265169113874,-0.0064394976943731],[-0.01896301843226,0.013243857771158,-0.07698930054903]],[[0.072957158088684,-0.046677485108376,0.05896282568574],[-0.040489081293344,-0.039120398461819,0.030420746654272],[0.0087165487930179,-0.03793091699481,0.030919052660465]],[[-0.025526223704219,0.0054638329893351,-0.03632390126586],[-0.054822336882353,-0.039000984281301,-0.033137232065201],[-0.12376856058836,-0.014069923199713,-0.052807435393333]],[[-0.058766849339008,-0.0035947284195572,0.012237102724612],[0.049122296273708,0.050745785236359,0.011627352796495],[0.043363824486732,-0.00473687145859,-0.0070954812690616]],[[-0.0072292285040021,-0.011924473568797,0.04507702589035],[0.024401796981692,-0.053812436759472,-0.056509848684072],[0.033004745841026,0.051357861608267,-0.024075550958514]],[[0.037573534995317,-0.043221812695265,0.0075338985770941],[0.032889597117901,-0.014849870465696,-0.063240483403206],[-0.024609779939055,0.027237694710493,-0.027235796675086]],[[0.038324344903231,-0.038269236683846,0.027726281434298],[-0.019588105380535,0.0098529495298862,-0.013747787103057],[-0.0041564209386706,-0.0098581928759813,-0.044178158044815]],[[-0.016354370862246,0.044751938432455,0.031396418809891],[-0.041705477982759,-0.0055674873292446,-0.0074005243368447],[0.049995172768831,-0.011008003726602,0.040677458047867]],[[0.087966658174992,0.086679972708225,0.091480225324631],[0.014989893883467,0.03194410726428,-0.084467709064484],[-0.0047783479094505,-0.062898769974709,0.061073038727045]],[[-0.10781993716955,0.0070035038515925,-0.038588296622038],[0.037113189697266,0.012021261267364,-0.044158451259136],[-7.4207171564922e-05,-0.0076984260231256,0.011520026251674]],[[0.027239374816418,-0.0018703020177782,-0.015488931909204],[0.03039631433785,-0.019528890028596,0.020168287679553],[-0.0093786977231503,0.037738725543022,0.002868372015655]],[[-0.0546132363379,0.0303909573704,0.05621450766921],[0.079276368021965,-0.0091444179415703,-0.032078616321087],[-0.0013580730883405,0.017502222210169,-0.0026470243465155]],[[-0.008242511190474,-0.0050542536191642,-0.07729809731245],[-0.065444000065327,0.045752990990877,-0.038244303315878],[0.0020108872558922,0.080395124852657,-0.033279146999121]],[[-0.034558784216642,-0.02213878184557,-0.041578847914934],[-0.030964314937592,-0.090062186121941,0.031064067035913],[0.028768992051482,0.11089757829905,0.0080885672941804]],[[-0.055490992963314,-0.035965863615274,0.074779376387596],[0.0226716902107,0.010773774236441,-0.084573566913605],[-0.016627609729767,-0.015531927347183,0.00081658887211233]],[[0.025693960487843,-0.0059980000369251,0.079722300171852],[-0.0061978148296475,-0.027886526659131,0.029969301074743],[0.015456823632121,-0.014495017006993,0.038542248308659]],[[0.00026864738902077,-0.043793756514788,-0.038778204470873],[-0.046633705496788,-0.027865927666426,0.0027069104835391],[0.062102913856506,0.020433763042092,-0.029208052903414]],[[-0.071983017027378,-0.022580362856388,-0.065582416951656],[0.038076795637608,-0.046140119433403,-0.01267222687602],[-0.0012027325574309,-0.0043477588333189,0.012104542925954]],[[-0.049696806818247,0.039406146854162,-0.04084512963891],[0.024558406323195,-0.047958470880985,-0.057700954377651],[-0.072231583297253,-0.016220944002271,0.020349379628897]],[[-0.017795089632273,-0.004021255299449,0.013459425419569],[0.081046856939793,-0.0095381010323763,-0.053503420203924],[0.00039791438030079,-0.068432375788689,-0.021701967343688]],[[-0.038752511143684,-0.0089210495352745,-0.014688440598547],[0.046308908611536,-0.028979344293475,0.011224213987589],[-0.024040749296546,0.03470578789711,-0.082895435392857]],[[0.0091104805469513,0.0033360577654094,-0.067623816430569],[-0.071049697697163,-0.018683258444071,0.037607654929161],[0.074722066521645,0.017978040501475,0.012974445708096]],[[-0.031752061098814,0.0063774394802749,0.064818225800991],[0.021423831582069,-0.0009107377845794,0.050263281911612],[-0.037171069532633,-0.034160550683737,0.036182731389999]],[[-0.043227601796389,0.026172401383519,0.027084819972515],[-0.12768043577671,-0.021441260352731,0.014956974424422],[-0.025729764252901,-0.013612430542707,0.026892635971308]],[[0.08992975205183,0.017921194434166,-0.033514551818371],[0.0052792294882238,0.025811869651079,0.030021714046597],[0.048456802964211,0.017039239406586,-0.16782569885254]],[[-0.023389533162117,-0.028964517638087,0.049759145826101],[-0.012819235213101,-0.01770881190896,-0.034608338028193],[0.015396903268993,-0.0261568762362,-0.010643783025444]],[[0.090522259473801,-0.025081371888518,-0.028176976367831],[0.059592064470053,0.035479586571455,-0.0041324635967612],[-0.027618451043963,-0.00020282457990106,-0.058754619210958]],[[0.054138604551554,-0.045691840350628,-0.020138682797551],[0.034396611154079,-0.020260140299797,-0.022943763062358],[0.065355844795704,-0.04032776877284,0.0035441699437797]],[[0.021075885742903,0.027887906879187,0.0080304173752666],[0.005603501573205,0.10004460066557,-0.035153560340405],[-0.033648628741503,0.0028867560904473,-0.0053695808164775]],[[0.033393476158381,0.035559993237257,-0.00032331584952772],[0.026788987219334,-0.073549017310143,0.041577883064747],[-0.079146131873131,-0.0075503843836486,-0.057544607669115]],[[0.042370829731226,-0.06622339785099,-0.021418824791908],[0.03224641084671,-0.0017926007276401,0.018023066222668],[0.058310098946095,-0.026615345850587,-0.061347354203463]],[[0.028941540047526,-0.056991927325726,0.045198623090982],[-0.062169317156076,-0.074708595871925,-0.0044647036120296],[0.0074434285052121,0.068543024361134,0.013460793532431]],[[0.025473531335592,0.019658030942082,0.032195702195168],[0.04558952152729,-0.026531985029578,0.033135253936052],[-0.025986263528466,0.032994106411934,-0.017234707251191]],[[0.039171051234007,0.043085034936666,0.015629170462489],[-0.0037556204479188,0.054412961006165,-0.041669987142086],[-0.014595341868699,-0.0034527641255409,0.01058661006391]],[[-0.042692761868238,-0.015268892981112,-0.020556788891554],[0.0040317894890904,-0.040401544421911,0.035914976149797],[-0.027567414566875,0.0075214472599328,0.070917509496212]],[[0.032022681087255,-0.005080820992589,0.077852018177509],[0.0093263741582632,-0.036090649664402,0.0052019678987563],[-0.04638846218586,0.076737262308598,-0.06509954482317]],[[-0.067004628479481,-0.018759351223707,-0.015722254291177],[-0.00771455001086,-0.012170877307653,0.064027324318886],[-0.018510319292545,0.025254864245653,0.025128191336989]],[[0.053928971290588,0.051010578870773,0.013234206475317],[0.016256552189589,0.067592561244965,0.020864024758339],[0.029273714870214,0.0020545262377709,0.0027022727299482]],[[-0.0094848936423659,-0.065697997808456,-0.042147766798735],[0.00097579363500699,0.0034752851352096,-0.036593373864889],[-0.0038799168542027,-0.0052944319322705,0.040666781365871]],[[-0.097789995372295,0.014792121946812,0.0083990655839443],[-0.0056184772402048,-0.026630191132426,-0.0064508500508964],[-0.045742835849524,0.040124572813511,0.020076788961887]],[[-0.00048193251132034,-0.040266089141369,-0.01530079357326],[0.08076436817646,0.0137476073578,0.055704563856125],[-0.0042526908218861,-0.046097032725811,-0.025851704180241]],[[0.039770592004061,-0.013707457110286,-0.015546911396086],[0.01678254455328,-0.0068958685733378,0.014183945953846],[0.071152076125145,-0.014861326664686,-0.010165056213737]],[[0.056719306856394,0.015342964790761,-0.05207534506917],[-0.050301983952522,-0.018977930769324,0.062636435031891],[0.058197110891342,0.049270994961262,0.033947091549635]],[[-0.026758635416627,0.0074092145077884,0.045440644025803],[-0.055611159652472,0.050769310444593,0.0068093128502369],[0.020494375377893,0.015290535986423,0.026848074048758]],[[0.062534369528294,0.031206863000989,0.0070373695343733],[-0.051574178040028,0.079091899096966,-0.059617012739182],[-0.068240106105804,-0.08598568290472,0.017674265429378]],[[-0.014601873233914,0.047359768301249,0.039121516048908],[0.0076555558480322,0.033193681389093,-0.018158262595534],[-0.036707453429699,0.042513515800238,0.039318189024925]],[[-0.027425289154053,-0.040494617074728,-0.048316333442926],[0.028026925399899,-0.040712729096413,-0.014018230140209],[-0.089680187404156,-0.0083830058574677,0.030872102826834]],[[-0.024903748184443,-0.017389474436641,0.0079871164634824],[-0.017365386709571,-0.034712050110102,0.04181307554245],[-0.018355628475547,-0.010463367216289,0.03807358071208]],[[-0.0061156842857599,-0.016017721965909,-0.047919873148203],[0.012696939520538,-0.0026295715942979,-0.012742326594889],[0.045790292322636,0.099865823984146,0.021960848942399]],[[-0.0033165195491165,-0.059890195727348,0.056669343262911],[0.012553783133626,-0.038163650780916,-0.10191123187542],[0.058467969298363,-0.0082235457375646,0.02412111312151]],[[-0.012479219585657,-0.006026188377291,0.033056486397982],[-0.00099277507979423,-0.049520742148161,-0.014173667877913],[-0.01109229400754,0.010093268938363,0.051043558865786]],[[0.033408150076866,-0.083884067833424,0.040628898888826],[-0.051234733313322,-0.0073963347822428,-0.04394843801856],[0.019794594496489,0.084402441978455,-0.030638912692666]],[[-0.032232671976089,-0.07297956943512,-0.0099649075418711],[0.042238615453243,-0.029766568914056,0.0089484341442585],[0.084785357117653,0.006637544836849,-0.016837377101183]],[[-0.023095566779375,0.016712289303541,0.074175916612148],[0.0091989599168301,0.044803146272898,0.035169567912817],[-0.032794341444969,0.015398042276502,0.0010935304453596]],[[-0.059598255902529,0.030454538762569,-0.028804015368223],[0.040717095136642,0.032805718481541,-0.013590238057077],[-0.017562093213201,-0.033799458295107,-0.04277428239584]]],[[[0.0037718217354268,0.085487395524979,0.0060592610388994],[-0.00085986632620916,0.01069069840014,-0.082743361592293],[0.1091940253973,0.031380105763674,0.072169311344624]],[[-0.059794206172228,0.023474501445889,-0.091326348483562],[-0.0014349011471495,0.008032669313252,0.057775661349297],[-0.0074812429957092,0.053428255021572,-0.130605712533]],[[0.0043779378756881,0.019837833940983,-0.040204342454672],[-0.11124561727047,-0.0041405851952732,0.0042821452952921],[-0.051510240882635,-0.038082957267761,0.04130981490016]],[[-0.0085519505664706,0.0083893751725554,-0.0025075033772737],[0.0082814814522862,0.0042800516821444,0.0036543463356793],[-0.0071801822632551,0.0013199181994423,0.11050519347191]],[[-0.044725801795721,-0.057385738939047,-0.034274205565453],[-0.049139406532049,0.057530250400305,0.094294361770153],[-0.038017224520445,-0.001022087992169,0.063785068690777]],[[0.033912062644958,0.036820996552706,0.06580213457346],[0.097908996045589,-0.0086449831724167,0.025058692321181],[0.036068771034479,0.0045417188666761,-0.012933289632201]],[[-0.022837096825242,0.065724030137062,-0.046460714191198],[-0.060874052345753,0.063084118068218,-0.068164885044098],[-0.0078366659581661,-0.039639469236135,0.0049515198916197]],[[0.034895643591881,-0.0043850634247065,0.073099538683891],[0.093770742416382,-0.041766040027142,0.072441302239895],[0.065010569989681,-0.0056043085642159,-0.10820335149765]],[[-0.073619239032269,-0.13817772269249,-0.044387567788363],[-0.03674953058362,0.0042405114509165,0.056440029293299],[0.039291456341743,0.080916605889797,0.027366273105145]],[[-0.0312674716115,-0.0012892823433504,0.017555514350533],[-0.0064109284430742,-0.03599339351058,-0.037141945213079],[0.068657487630844,-0.039387758821249,-0.046625901013613]],[[0.062831729650497,0.01079483050853,-0.0014464744599536],[-0.015771077945828,0.043081313371658,-0.080686673521996],[0.011370232328773,0.039357539266348,0.010627786628902]],[[0.027403105050325,-0.018090663477778,0.048079129308462],[-0.051243886351585,-0.010232044383883,-0.015296415425837],[0.049729205667973,0.075203955173492,-0.066292777657509]],[[0.17469203472137,-0.083106592297554,0.051074184477329],[0.0026709535159171,0.016588389873505,0.08973391354084],[-0.00097783177625388,0.088916644454002,-0.019051004201174]],[[-0.076585583388805,0.053307864814997,0.0098561905324459],[-0.024446073919535,0.055440202355385,-0.026031637564301],[-0.037436835467815,0.011840200982988,0.010261246934533]],[[0.016709474846721,-0.083080433309078,-0.067896775901318],[0.01065856590867,-0.032084945589304,0.034548986703157],[0.044335663318634,-0.0044573480263352,-0.037972707301378]],[[-0.04524052515626,-0.038953319191933,-0.019936723634601],[-0.0023065952118486,0.025441393256187,-0.008177931420505],[-0.041717078536749,0.073004491627216,-0.05268857255578]],[[-0.0038993409834802,0.027767825871706,0.069888405501842],[0.020382596179843,0.019338509067893,-0.084419652819633],[-0.02247634716332,0.014531728811562,0.081002794206142]],[[0.0098814480006695,0.023042051121593,-0.026212995871902],[-0.094632960855961,-0.070337355136871,-0.036594178527594],[-0.020711353048682,-0.054566316306591,0.0010547254933044]],[[-0.038106087595224,0.090898811817169,-0.073324672877789],[0.016184501349926,0.0065341326408088,0.048352602869272],[0.023112436756492,-0.0013433527201414,0.029263567179441]],[[0.020254420116544,0.047895587980747,-0.08994946628809],[0.035449150949717,0.033386569470167,0.012617629021406],[-0.0074583133682609,0.043086912482977,-0.022094342857599]],[[-0.032780401408672,-0.04558090493083,-0.0035143026616424],[0.0091927284374833,-0.038803592324257,0.10681857913733],[-0.012464979663491,-0.07422786206007,0.0046330778859556]],[[0.092886179685593,0.057122945785522,0.026107937097549],[0.033748492598534,0.085103638470173,0.042131382972002],[0.021480277180672,0.052994899451733,-0.0025443388149142]],[[-0.090402476489544,-0.039020545780659,-0.028456648811698],[0.12130878865719,-0.01726814173162,0.040508568286896],[-0.012642392888665,-0.12814040482044,0.022624157369137]],[[-0.091533415019512,0.016448775306344,-0.017225129529834],[-0.003135863924399,0.071035489439964,0.083432622253895],[-0.096915580332279,-0.084994368255138,-0.084262005984783]],[[0.11453434079885,-0.055331744253635,-0.023231046274304],[0.06415992975235,-0.028325131163001,0.041276410222054],[-0.010241067036986,0.013709598220885,0.014609286561608]],[[-0.010320203378797,-0.069995708763599,0.030360098928213],[0.01883009262383,0.034121382981539,0.040608193725348],[-0.0068628955632448,0.015292326919734,0.0039331400766969]],[[-0.047524940222502,0.039617408066988,0.1279524564743],[0.0045848493464291,-0.046193853020668,0.014752610586584],[-0.053279470652342,0.025216018781066,0.012069563381374]],[[-0.023723926395178,0.017627460882068,0.028952369466424],[-0.064512982964516,0.035044964402914,-0.0045539410784841],[0.032957524061203,-0.054816655814648,-0.007231489289552]],[[0.032266180962324,-0.026183422654867,-0.067555151879787],[-0.054399956017733,-0.01815365627408,0.07909569144249],[0.020614888519049,0.00052857369882986,0.033440314233303]],[[0.072798684239388,0.024749862030149,0.032801512628794],[-0.050124041736126,-0.054806109517813,0.051569204777479],[-0.016675274819136,-0.09742946177721,0.049875974655151]],[[0.02089892886579,0.095868788659573,-0.026406038552523],[-0.052525069564581,0.03895140811801,-0.0019123209640384],[-0.02124654315412,0.027105594053864,0.0059388065710664]],[[0.041665855795145,-0.04404104501009,-0.011913276277483],[-0.02952660433948,0.0067813452333212,0.0039424942806363],[0.00071078212931752,0.010183262638748,0.0044036004692316]],[[0.0037633255124092,0.038037065416574,-0.0001774354459485],[-0.038907621055841,0.15771181881428,-0.033148560672998],[0.11136777698994,0.088540464639664,0.088416509330273]],[[-0.00051511329365894,0.028417548164725,0.0038475012406707],[0.032722529023886,-0.024933133274317,0.0051331338472664],[0.013751494698226,-0.055927213281393,0.042865909636021]],[[-0.0028465113136917,-0.069314658641815,0.018914755433798],[-0.0015990294050425,0.03545630723238,0.016005447134376],[-0.031495869159698,-0.070171877741814,-0.024046085774899]],[[-0.11556089669466,0.046617023646832,-0.041621614247561],[-0.0090313022956252,0.060279194265604,-0.015818554908037],[0.010073219425976,0.040001533925533,0.045459199696779]],[[-0.05473018810153,-0.018258903175592,0.11127082258463],[-0.052380997687578,0.094607338309288,-0.082214772701263],[-0.058189570903778,-0.022647662088275,-0.068171553313732]],[[0.042203977704048,0.1107212677598,0.0011177056003362],[0.083061553537846,0.099656015634537,-0.066323719918728],[-0.010117578320205,0.0020176852121949,-0.054165404289961]],[[0.026145244017243,-0.089669033885002,-0.10914721339941],[-0.011868296191096,-0.055529315024614,-0.052169982343912],[-0.010247611440718,-0.04459186643362,0.014597363770008]],[[-0.040886268019676,0.062699735164642,-0.00014853321772534],[0.056682892143726,0.0094349663704634,-0.053069818764925],[-0.019042229279876,0.010709455236793,0.026913870126009]],[[0.021579811349511,0.038376022130251,-0.034456543624401],[0.00048541335854679,0.057624287903309,-0.047187462449074],[-0.031827352941036,-0.057517722249031,0.054003439843655]],[[0.0010094427270815,0.060834996402264,0.16642485558987],[0.048325512558222,0.029784556478262,0.048541136085987],[-0.020270131528378,-0.0072757373563945,0.10418064147234]],[[-0.0029874928295612,0.092375479638577,0.09753479808569],[0.1164814978838,0.063726618885994,-0.096554093062878],[0.037277419120073,-0.013736392371356,0.0002606114721857]],[[-0.019133325666189,-0.021029323339462,0.23620757460594],[0.0069659175351262,-0.13607840240002,0.00010148627188755],[-0.0081845503300428,0.0009027537307702,-0.052804335951805]],[[0.035496558994055,-0.04395417869091,0.047186329960823],[0.0036554085090756,0.031693693250418,0.034597836434841],[-0.021375045180321,0.029254639521241,0.050314735621214]],[[0.039239831268787,0.059783630073071,-0.049580499529839],[0.00081710208905861,-0.02097818814218,0.061023335903883],[0.069533757865429,0.13228110969067,-0.0091972975060344]],[[0.0011876608477905,-0.0032605740707368,-0.02490303479135],[0.021991021931171,-0.031048582866788,-0.026532938703895],[-0.04945232719183,0.00034679716918617,0.035000421106815]],[[-0.032471910119057,-0.064060769975185,-0.1407188475132],[-0.065582066774368,-0.091105110943317,-0.011706462129951],[-0.011385962367058,0.036495227366686,-0.12542530894279]],[[-0.016492802649736,-0.01690998673439,-0.051063898950815],[-0.020720129832625,-0.024773987010121,-0.025373071432114],[-0.036870699375868,0.064776867628098,-0.07819651812315]],[[-0.040127586573362,-0.035846527665854,-0.0087274936959147],[-0.045001402497292,-0.097040802240372,0.024738572537899],[0.056832209229469,-0.070115596055984,-0.073840118944645]],[[-0.016373569145799,-0.0041021895594895,0.038253001868725],[-0.018105404451489,-0.053233150392771,0.013120700605214],[-0.0037018535658717,0.017371447756886,0.051709596067667]],[[0.0068812253884971,-0.043993026018143,0.047045662999153],[0.0051960130222142,0.018272509798408,-0.063861601054668],[0.024200636893511,0.098254807293415,-0.00051770632853732]],[[-0.076903223991394,0.066665910184383,-0.003850354347378],[-0.043118093162775,0.0059985662810504,0.08244764059782],[0.084323734045029,-0.070392496883869,-0.065676175057888]],[[0.010427866131067,-0.0032856003381312,-0.073805272579193],[0.026031710207462,-0.029033599421382,0.081994004547596],[0.076934359967709,0.016382846981287,0.020953657105565]],[[0.043437741696835,-0.0096609191969037,-0.039247594773769],[-0.020891727879643,-0.0072187399491668,-0.0038558992091566],[0.021738758310676,0.0049605802632868,0.069776311516762]],[[0.010268063284457,0.022913575172424,0.035906258970499],[0.071983188390732,-0.095714017748833,0.0010106130503118],[0.046784348785877,0.061182223260403,-0.048399452120066]],[[0.037536006420851,0.031891260296106,0.057805817574263],[-0.064096130430698,0.079009383916855,-0.042930092662573],[0.0040502897463739,-0.014639505185187,0.041411694139242]],[[-0.018488137051463,-0.013901828788221,0.0082164024934173],[0.026369100436568,-0.010804799385369,-0.020196137949824],[0.02571053430438,-0.053439676761627,-0.012960431165993]],[[0.047268755733967,-0.053548097610474,0.023585623130202],[0.030044220387936,0.025506477802992,0.0088268937543035],[0.085948400199413,0.085141129791737,-0.051888026297092]],[[0.021097203716636,0.044028606265783,-0.041509374976158],[0.075651049613953,-0.012083682231605,0.055385954678059],[0.059869088232517,0.048592008650303,0.062081657350063]],[[0.094919383525848,0.014960910193622,0.057138539850712],[0.03742540627718,0.021255388855934,0.069797284901142],[-0.075593084096909,-0.0049064252525568,0.045593816787004]],[[-0.023126985877752,-0.064130574464798,-0.01274336874485],[-0.054010152816772,-0.066023357212543,-0.040030799806118],[-0.050886958837509,-0.063225097954273,-0.049896087497473]],[[0.011089791543782,-0.013649474829435,0.12020867317915],[-0.049642942845821,-0.018443182110786,-0.04935809597373],[0.0078484192490578,-0.065430670976639,0.097470588982105]],[[0.022559136152267,0.027221815660596,0.010794367641211],[0.092906773090363,-0.018987793475389,0.043847117573023],[0.06295307725668,0.066770605742931,0.030244598165154]],[[0.036564007401466,-0.0071795932017267,-0.0021156938746572],[-0.0032721785828471,0.094962663948536,-0.021833557635546],[0.13448703289032,0.08048453181982,-0.011214192956686]],[[0.07840433716774,-0.022052448242903,0.039381619542837],[0.10365819185972,0.020057519897819,0.019300347194076],[0.0086737144738436,0.037782367318869,-0.047387391328812]],[[0.069244876503944,-0.026963513344526,0.055053789168596],[-0.0084894318133593,-0.082954399287701,-0.051651511341333],[0.071466669440269,0.014578180387616,-0.05357064679265]],[[0.03506937250495,0.033693373203278,-0.066544257104397],[0.13894161581993,0.17246451973915,0.0683723539114],[0.0089130755513906,0.15542632341385,0.18752688169479]],[[0.016101894900203,0.08466100692749,-0.095525838434696],[0.0011096830712631,-0.017779989168048,-0.036662913858891],[-0.019180590286851,0.037733744829893,-0.0093257408589125]],[[0.030996520072222,-0.0075787361711264,-0.045450028032064],[-0.012541427277029,0.068511255085468,0.12078455835581],[0.038942705839872,-0.027766406536102,0.063624925911427]],[[0.038664158433676,-0.01320986635983,-0.074529156088829],[0.043210498988628,0.053885776549578,0.12871438264847],[-0.013142116367817,-0.024408482015133,0.046670358628035]],[[0.0044474392198026,-0.093300059437752,0.090821124613285],[-0.05233321711421,-0.080479368567467,-0.058900441974401],[0.047344781458378,0.055946379899979,0.044472377747297]],[[-0.020335188135505,0.0032732400577515,0.013556377030909],[0.032104529440403,-0.032707508653402,-0.011272246949375],[-0.032955151051283,-0.027582995593548,0.025722892954946]],[[0.035689368844032,0.08895668387413,0.015218985266984],[-0.086718872189522,-0.038979023694992,-0.0050242245197296],[0.063003875315189,0.035767659544945,-0.04170198366046]],[[-0.0013189079472795,0.010584755800664,-0.017305973917246],[-0.010602443479002,-0.0095538562163711,0.01679652556777],[-0.019270122051239,0.12139142304659,-0.0019454301800579]],[[-0.049386281520128,-0.024073088541627,0.026456346735358],[0.012355359271169,0.036877334117889,0.053312212228775],[0.0030263531953096,-0.07192251086235,0.07598140090704]],[[-0.021053750067949,0.048408072441816,0.057626478374004],[-0.0021520110312849,0.0023234349209815,-0.042382448911667],[0.017851153388619,-0.015226799063385,0.017626898363233]],[[0.12027201801538,0.010644821450114,0.10545674711466],[0.0091686425730586,-0.059585187584162,0.052870165556669],[0.04945744946599,-0.07134223729372,0.034997206181288]],[[0.011970506049693,-0.015708450227976,-0.038291618227959],[-0.0037479775492102,8.3120161434636e-05,0.053611792623997],[-0.064481869339943,0.037880178540945,0.15419383347034]],[[0.012147911824286,-0.024275785312057,0.042470496147871],[-0.0041865240782499,-0.050877522677183,-0.0040158955380321],[-0.074208252131939,-0.079345710575581,-0.05876162648201]],[[0.045092027634382,0.014215532690287,-0.013727218843997],[0.019556399434805,-0.034452721476555,0.015300210565329],[-0.069745607674122,-0.020953424274921,0.05267534032464]],[[-0.0090979477390647,0.036634728312492,0.079223245382309],[0.042828738689423,0.019990105181932,-0.0030513016972691],[0.087628081440926,0.017128080129623,0.0078582148998976]],[[0.092242255806923,-0.020843736827374,-0.10130251199007],[0.032626897096634,-0.08049564063549,0.020681723952293],[0.008296636864543,-0.056887999176979,0.04406450688839]],[[0.018386259675026,-0.072750896215439,-0.029113413766026],[0.035824608057737,0.046354193240404,0.019920969381928],[0.025692977011204,0.065807491540909,-0.063865102827549]],[[0.094469487667084,-0.010053393431008,0.072547420859337],[0.0019024618668482,0.028467917814851,0.023931615054607],[0.041686791926622,-0.025247853249311,-0.0041211121715605]],[[0.0025438077282161,0.022484058514237,0.037330746650696],[-0.091727524995804,-0.077211514115334,-0.016390763223171],[-0.049237962812185,-0.031219193711877,-0.01732312887907]],[[-0.018294736742973,0.080189123749733,-0.059521943330765],[-0.0279291998595,-0.0033064384479076,-0.025935044512153],[-0.011684387922287,0.013599280267954,0.077004887163639]],[[-0.024107096716762,-0.018830271437764,0.020453045144677],[0.0022221424151212,-0.11203088611364,-0.0080007407814264],[0.034491006284952,-0.032644525170326,0.099826134741306]],[[0.070057094097137,-0.018091924488544,0.059976872056723],[0.020467298105359,0.015244393609464,0.032990779727697],[0.075905047357082,0.062810160219669,0.010007140226662]],[[-0.013045650906861,-0.027355479076505,0.041497729718685],[-0.007873548194766,-0.021583050489426,0.061051551252604],[-0.06571314483881,0.030946718528867,0.082135811448097]],[[-0.019145872443914,0.091533437371254,0.015952810645103],[0.06566546857357,-0.058002114295959,0.072026059031487],[-0.06483306735754,0.14853292703629,0.2112418115139]],[[-0.041779659688473,0.02577037923038,0.035662665963173],[-0.11109352111816,0.013928961008787,0.029735166579485],[-0.0019723677542061,0.031548820436001,-0.0014787103282288]],[[0.0062995357438922,-0.058496717363596,-0.052215568721294],[-0.072707049548626,0.060673762112856,0.035104036331177],[-0.019541973248124,0.0099440505728126,0.025900574401021]],[[0.022790849208832,-0.018536183983088,-0.01727594062686],[0.04210551828146,-0.031076766550541,0.086364224553108],[-0.017717396840453,0.023828057572246,0.02355139516294]],[[-0.047997988760471,-0.038159117102623,-0.028489302843809],[-0.015978200361133,-0.044520918279886,0.042635194957256],[-0.043488271534443,-0.048225808888674,0.062410555779934]],[[0.032209552824497,0.041944831609726,-0.14702039957047],[-0.016571328043938,-0.021531756967306,0.034736581146717],[0.00010381887841504,0.0019329802598804,0.011745860800147]],[[-0.030187642201781,0.078235186636448,-0.041884567588568],[0.016248682513833,-0.037218883633614,-0.037744827568531],[-0.03023031167686,0.016408514231443,-0.066140107810497]],[[-0.038881219923496,0.0035335912834853,-0.0050277072004974],[0.066724233329296,0.042812157422304,0.051038093864918],[0.097422763705254,0.0046547655947506,0.010189147666097]],[[-0.12525354325771,0.021277574822307,0.0027624638751149],[-0.073252022266388,-0.14184077084064,-0.058490019291639],[0.0034109493717551,0.038302268832922,0.12599651515484]],[[-0.0046425317414105,0.020741494372487,-0.014153963886201],[0.047844428569078,-0.034665927290916,0.026625340804458],[-0.0054105566814542,0.008079407736659,-0.10558656603098]],[[-0.01864299364388,0.0094366418197751,-0.01549478340894],[0.067551791667938,-0.042209610342979,-0.006934407632798],[-0.022562263533473,-0.041120123118162,-0.014842133969069]],[[-0.048085808753967,0.068240076303482,0.001720285625197],[-0.0025463216006756,0.043886765837669,0.00014065287541598],[0.0097046252340078,0.0057182707823813,0.011594421230257]],[[-0.012744346633554,-0.037576716393232,0.0018802947597578],[0.050444293767214,0.026398483663797,0.032000508159399],[0.024302845820785,0.078767754137516,-3.9100006688386e-05]],[[-0.13256375491619,-0.036008361726999,-0.0022397625725716],[-0.057199828326702,-0.0043211947195232,-0.061478860676289],[-0.0069309151731431,-0.027759168297052,-0.002777008805424]],[[-0.089287057518959,-0.011672073975205,-0.013070864602923],[0.0012026668991894,-0.046836707741022,0.062998369336128],[0.04668889939785,0.030213745310903,-0.046283107250929]],[[-0.0026136976666749,0.044016510248184,0.029768761247396],[0.033723462373018,-0.0019363195169717,-0.019164966419339],[-0.076709650456905,0.047233767807484,0.02445755712688]],[[0.087277360260487,0.016446193680167,0.029083909466863],[0.015990929678082,-0.058696787804365,0.075701840221882],[0.056093472987413,0.038722757250071,-0.095429204404354]],[[-0.016104251146317,-0.0016940175555646,0.074624128639698],[0.089460529386997,0.047995150089264,0.0047571775503457],[0.011908142827451,-0.056783091276884,0.035448741167784]],[[0.0021478803828359,-0.057514753192663,-0.027947947382927],[0.018215078860521,-0.062497992068529,-0.061312135308981],[-0.02808466181159,0.0056695868261158,-0.064576923847198]],[[-0.043371822685003,0.0073729301802814,-0.011285845190287],[0.018094586208463,0.0058059385046363,0.096417084336281],[0.022952193394303,0.01797154173255,-0.019251849502325]],[[0.088357023894787,-0.011809661984444,-0.058691099286079],[-0.0549709610641,0.012182008475065,0.076728194952011],[-0.081020936369896,0.050086628645658,-0.015465109609067]],[[-0.006730092689395,-0.052483722567558,-0.085513271391392],[0.0036179632879794,0.011887785047293,-0.068670988082886],[-0.12625095248222,-0.046162206679583,-0.0064736353233457]],[[-0.079552516341209,-0.081168800592422,0.014503905549645],[-0.068277478218079,-0.032188702374697,-0.056335065513849],[-0.0087497066706419,-0.078715749084949,0.033877395093441]],[[-0.069320753216743,-0.094270154833794,0.011390119791031],[-0.10699446499348,-0.037570014595985,0.14187183976173],[0.040419012308121,-0.047751121222973,0.015302295796573]],[[0.012067823670805,-0.072869628667831,0.042029172182083],[-0.019962649792433,0.050015266984701,0.05040268227458],[0.038578193634748,0.056271471083164,-0.090693421661854]],[[-0.075601696968079,0.10310927778482,0.0053274319507182],[-0.028319558128715,-0.085196636617184,0.01688215136528],[-0.073111087083817,-0.037419028580189,-0.052094366401434]],[[0.10870788991451,0.0014315048465505,0.035222608596087],[0.030002918094397,0.0059692421928048,-0.021036960184574],[0.028678761795163,0.030663784593344,0.01140571013093]],[[0.10201961547136,-0.058820571750402,-0.061706434935331],[0.024354884400964,-0.045300159603357,-0.14163239300251],[-0.025594957172871,0.037459917366505,-0.067195564508438]],[[-0.054919317364693,-0.027253055945039,-0.028731618076563],[0.024540521204472,0.00014987283793744,0.024269508197904],[-0.080875247716904,0.0084537034854293,0.02359551563859]],[[0.097249507904053,-0.016909359022975,0.069613240659237],[-0.0072587840259075,0.036278173327446,-0.0087853418663144],[0.13661606609821,-0.072854027152061,-0.039965156465769]],[[0.01651112921536,0.035764466971159,-0.015632605180144],[-0.047304324805737,-0.069462463259697,-0.014757848344743],[-0.069286704063416,-0.0033602276816964,-0.0095362290740013]],[[-0.042197827249765,-0.012957798317075,0.033047407865524],[-0.017618533223867,-0.0021911652293056,-0.063905246555805],[-0.044017437845469,0.020621232688427,0.025548486039042]],[[-0.064164333045483,-0.043199278414249,-0.018289091065526],[-0.042422037571669,-0.013715171255171,-3.5020471841563e-05],[0.028440935537219,0.0080739948898554,0.0080718593671918]],[[0.05984116718173,0.038620453327894,-0.0076533164829016],[0.034567672759295,-0.025507159531116,0.020850045606494],[0.04735342040658,0.015075419098139,-0.082452423870564]],[[-0.064526334404945,0.085347905755043,0.064557477831841],[0.0080397156998515,0.05973357707262,-0.022830275818706],[0.016735188663006,0.013329203240573,-0.062355428934097]],[[0.011626443825662,0.094465047121048,-0.062444776296616],[-0.063825204968452,-0.025778954848647,0.013918409124017],[0.039795726537704,-0.060678493231535,-0.038226313889027]],[[0.073553375899792,0.082526549696922,-0.066140785813332],[-0.0031048303935677,-0.023037908598781,0.041947696357965],[-0.010863102972507,0.055699802935123,-0.064807236194611]],[[-0.047640834003687,0.0088772838935256,0.0010494801681489],[0.10747914016247,-0.082674540579319,0.01918626204133],[0.012322584167123,0.074758872389793,0.0085304165259004]]],[[[-0.058768853545189,0.037409376353025,-0.039321929216385],[0.046109206974506,-0.052213039249182,0.04909947887063],[0.015186652541161,0.022998178377748,0.091201350092888]],[[-0.088477335870266,0.057328201830387,-0.011875249445438],[-0.011842360720038,-0.052357129752636,-0.02707744948566],[-0.0035946741700172,-0.021085942164063,0.02541140280664]],[[0.019814059138298,0.03525223955512,-0.0047880173660815],[-0.010184987448156,0.013925861567259,0.022949974983931],[-0.024679746478796,-0.013020547106862,-0.026415534317493]],[[0.006621927022934,-0.017849821597338,0.043479014188051],[-0.062663175165653,-0.01480582728982,0.0065442039631307],[-0.042148821055889,0.0070791272446513,0.053483132272959]],[[0.042094264179468,-0.024127887561917,0.0037114259321243],[0.024881826713681,-0.042370617389679,-0.018013698980212],[-0.045288510620594,-0.0064900214783847,-0.061053894460201]],[[-0.033515732735395,0.023987889289856,-0.058790937066078],[-0.016334360465407,-0.037790853530169,-0.019334673881531],[-0.039346091449261,-0.056536868214607,0.029165368527174]],[[0.015767801553011,-0.0027057721745223,0.091934390366077],[0.025871282443404,-0.0045298459008336,-0.0086234081536531],[-0.10419970750809,0.015397286042571,0.0067638410255313]],[[0.020246153697371,0.011745536699891,0.013382787816226],[-0.031749922782183,0.014392225071788,0.0012832983629778],[-0.034783624112606,0.013825322501361,-0.044952999800444]],[[-0.065128542482853,-0.043561957776546,-0.012527416460216],[0.041450753808022,0.020478267222643,-0.065139405429363],[-0.10661927610636,-0.033167961984873,0.04943323135376]],[[0.020235052332282,0.0073694544844329,0.028282463550568],[-0.04743417724967,-0.037088520824909,0.043161112815142],[-0.058917511254549,-0.059833709150553,-0.042475894093513]],[[-0.076085932552814,0.0061324164271355,0.049751337617636],[-0.0056690541096032,0.012970763258636,0.021497460082173],[-0.005248396191746,0.072411328554153,-0.048887327313423]],[[0.025722991675138,-0.016791487112641,-0.0083653442561626],[-0.0012883415911347,-0.022972293198109,0.005556607618928],[-0.00078339868923649,0.029382672160864,-0.011178196407855]],[[-0.011873909272254,0.092442639172077,0.01020189281553],[0.035636518150568,-0.0063169528730214,-0.0134680531919],[0.029304744675756,-0.026958893984556,-0.046566311269999]],[[0.043350040912628,-0.041523866355419,-0.0085916202515364],[0.039586927741766,-0.0088167134672403,-0.038346111774445],[-0.011024543084204,0.015324052423239,-0.021682221442461]],[[0.059876073151827,-0.031675823032856,0.049192119389772],[0.021664729341865,-0.062414325773716,0.020523699000478],[0.040112920105457,0.032092347741127,0.0066535696387291]],[[-0.018630938604474,0.031721346080303,0.072604417800903],[0.038191631436348,0.063629165291786,-0.035520479083061],[0.017852170392871,0.045227248221636,-0.019079580903053]],[[0.11562824994326,-0.013137573376298,-0.017808204516768],[-0.037702929228544,0.0087073259055614,-0.041278604418039],[0.079654552042484,0.0046440088190138,0.02219364233315]],[[-0.090753190219402,0.023777958005667,0.033570069819689],[-0.023154465481639,-0.024277688935399,-0.016499696299434],[-0.10498430579901,-0.059711668640375,0.060063954442739]],[[0.0037453742697835,-0.011656224727631,-0.035993687808514],[-0.021151402965188,-0.031806219369173,0.066919952630997],[0.0054283137433231,-0.025335039943457,0.00011444847041275]],[[0.022097688168287,0.0067184926010668,-0.019763706251979],[-0.068456746637821,-0.0083612641319633,0.038815405219793],[-0.0036233745049685,0.0013477224856615,0.0024160121101886]],[[0.018677175045013,-0.02016737870872,-0.0069252466782928],[0.00084193184738979,-0.010388209484518,-0.0083877518773079],[0.0026507042348385,0.0069773811846972,-0.0061413305811584]],[[0.064541131258011,0.035869788378477,0.066044330596924],[0.019278399646282,0.012731562368572,-0.044345006346703],[0.056977789849043,0.064271911978722,0.0053138518705964]],[[0.030626343563199,-0.13172461092472,0.0092914057895541],[-0.081527277827263,-0.098752342164516,-0.03353176638484],[0.033510342240334,-0.0053080054931343,0.055716749280691]],[[-0.0058039142750204,0.010361480526626,0.053489439189434],[-0.021513324230909,-0.02341016754508,0.055353976786137],[0.039427127689123,0.035077910870314,-0.0068794158287346]],[[-0.053197141736746,0.010821951553226,0.038584157824516],[0.050013530999422,0.0037498755846173,0.066842570900917],[-0.012702484615147,0.015635764226317,-0.011227402836084]],[[0.050149481743574,-0.013664201833308,0.05140732973814],[-0.025793362408876,-0.01501589268446,-0.021749814972281],[-0.046892147511244,-0.066550806164742,-0.022320576012135]],[[0.026581114158034,0.10721393674612,-0.0026809968985617],[0.067006997764111,-0.021940717473626,0.073675192892551],[0.049926873296499,0.071803413331509,-0.020916206762195]],[[-0.0093877017498016,-0.054845150560141,-0.036842044442892],[0.0059768450446427,-0.014913166873157,0.032115705311298],[-0.070549987256527,-0.0045820232480764,0.048233136534691]],[[-0.037348087877035,-0.10654058307409,-0.073268435895443],[0.039561226963997,-0.00060933490749449,0.0035936944186687],[-0.0023169168271124,0.022774741053581,0.034161910414696]],[[-0.099700681865215,-0.053314067423344,0.010124219581485],[-0.08550038933754,-0.013293204829097,-0.0047748629003763],[-0.00044952219468541,-0.062336847186089,-0.019157718867064]],[[-0.077791310846806,0.019768023863435,-0.038422215729952],[0.029702041298151,0.035782050341368,0.032116517424583],[0.0013330186484382,0.0001994950871449,-0.031466901302338]],[[-0.0057095945812762,0.008879036642611,0.019273553043604],[0.061774656176567,-0.0063984752632678,0.065889909863472],[0.035077024251223,-0.00017349580593873,-0.072688214480877]],[[0.069027692079544,0.035023771226406,0.0038122867699713],[-0.0080909701064229,-0.021385969594121,0.044794533401728],[0.038355477154255,-0.019799459725618,-0.05291198566556]],[[0.057086389511824,0.034196097403765,-0.0163987390697],[0.046532079577446,0.038541626185179,0.0063366889953613],[0.0022766701877117,0.03985109180212,-0.04365087673068]],[[0.033458545804024,0.037446476519108,0.0249083340168],[0.1109816133976,-0.011913300491869,-0.0015931556699798],[-0.075495041906834,-0.026310814544559,-0.070441126823425]],[[-0.043423276394606,-0.019356358796358,0.013948983512819],[-0.029509792104363,-0.0099097108468413,0.022938726469874],[0.024143172428012,-0.035663370043039,0.059393640607595]],[[-0.00017038721125573,-0.0079795978963375,0.098400503396988],[-0.018490808084607,0.0025948411785066,0.036076784133911],[0.020075699314475,-0.052338674664497,0.024726919829845]],[[-0.0043976996093988,0.016906566917896,-0.0006521157338284],[-0.036661416292191,0.0090056285262108,-0.036683186888695],[0.076612830162048,-0.036872614175081,0.038635708391666]],[[-0.047196581959724,-0.0080541260540485,0.010686401277781],[-0.0047964509576559,-0.039477534592152,-0.076156057417393],[0.078228153288364,-0.058435048907995,-0.031923979520798]],[[-0.13414087891579,-0.027935951948166,0.060943990945816],[-0.0057483995333314,-0.025596011430025,0.052363913506269],[-0.015021542087197,0.024716982617974,0.029943883419037]],[[-0.043950941413641,0.086779110133648,-0.029090719297528],[0.039948750287294,0.062760278582573,-0.0087779788300395],[0.00063578353729099,0.054029982537031,-0.023888684809208]],[[0.055923983454704,-0.061659850180149,-0.0072583043947816],[0.073889791965485,0.02688997797668,0.010187615640461],[0.047607980668545,-0.03385804221034,0.056584157049656]],[[0.033996101468801,0.038144692778587,0.0056049111299217],[-0.029668400064111,0.061749815940857,0.095130324363708],[0.080309875309467,-0.0096627352759242,0.049308132380247]],[[-0.018131159245968,-0.011369965039194,0.0077631534077227],[0.037781830877066,0.041417349129915,0.018373670056462],[0.00086310767801479,0.019693179056048,-0.019563829526305]],[[0.047713134437799,0.017724877223372,-0.0056034652516246],[0.011227743700147,0.050464410334826,0.02450954541564],[-0.046837631613016,-0.002753441920504,-0.013167968951166]],[[-0.017932314425707,0.025815155357122,0.011418960988522],[-0.024642737582326,0.024434352293611,0.061975546181202],[0.069610767066479,0.003556513460353,0.07854101061821]],[[0.065068237483501,-0.022930508479476,-0.030765747651458],[0.023540770635009,0.017256220802665,-0.012183882296085],[0.007490610703826,0.091097958385944,-0.029794882982969]],[[-0.023342432454228,-0.063445955514908,-0.027283200994134],[0.0085303569212556,-0.03854251280427,-0.050994325429201],[0.0043609701097012,-0.013950638473034,-0.074018448591232]],[[0.051570620387793,0.048562109470367,-0.00080362276639789],[0.014544609934092,-0.0073452242650092,-0.012789932079613],[-0.0055553722195327,0.041196584701538,0.029116069898009]],[[-0.028705831617117,0.015686355531216,-0.025635130703449],[-0.029273184016347,0.0089081209152937,-0.060723505914211],[0.0068948306143284,-0.014006865210831,-0.087126277387142]],[[-0.0069856527261436,0.046123202890158,-0.05369059741497],[0.058907866477966,-0.053025986999273,-0.02839201502502],[-0.00055326812434942,0.048151057213545,0.025295177474618]],[[0.001003795186989,0.013509415090084,-0.035793751478195],[-0.056534692645073,-0.0072258613072336,-0.059738550335169],[0.087522886693478,0.0059131262823939,0.041869275271893]],[[-0.023400338366628,-0.029513642191887,0.020008366554976],[-0.036243855953217,-0.018097646534443,-0.01949536986649],[-0.074542053043842,-0.012233419343829,-0.008275618776679]],[[0.033082731068134,0.032565049827099,-0.017405377700925],[0.019380491226912,0.050591051578522,-0.0073925042524934],[-0.036749128252268,0.061153341084719,0.032256714999676]],[[0.052553042769432,0.017948882654309,-0.012055923230946],[-0.017842788249254,-0.022112416103482,0.04148468002677],[-0.10322424769402,0.044370345771313,-0.050945818424225]],[[0.046450775116682,0.080509066581726,0.044216949492693],[0.038923043757677,0.01336810644716,0.026848891749978],[-0.0096917143091559,0.033380962908268,-0.044645056128502]],[[0.050075873732567,0.086955942213535,0.018660081550479],[0.050432574003935,-0.050664588809013,0.025201799347997],[-0.0078669730573893,0.010162965394557,0.013574046082795]],[[0.052752241492271,0.017511701211333,-0.047686390578747],[-0.063035249710083,0.018244158476591,0.025458408519626],[-0.068497590720654,-0.080034255981445,-0.010946406051517]],[[-0.0088251000270247,0.020831488072872,0.070605024695396],[0.0076020108535886,-0.054008007049561,-0.010839084163308],[-0.055110085755587,-0.049482308328152,0.051716808229685]],[[0.020007045939565,0.0087774563580751,-0.10088232904673],[0.036087781190872,-0.048532523214817,-0.0068030077964067],[0.025926331058145,-0.018736371770501,0.0098515953868628]],[[0.026203669607639,-0.0086252363398671,-0.037846438586712],[-0.018296780064702,0.010621859692037,-0.021592263132334],[-0.046185128390789,-0.030002746731043,-0.03732093423605]],[[-0.0013628182932734,0.029362166300416,-0.037946198135614],[-0.0018779523670673,-0.071262054145336,-0.018511164933443],[0.0072578834369779,0.063202381134033,0.04539218172431]],[[0.039704088121653,-0.024095268920064,-0.016057362779975],[0.05283185839653,-0.011593290604651,0.025883045047522],[0.006439910735935,-0.056611992418766,0.037904221564531]],[[0.080205164849758,0.057374387979507,-0.0090787960216403],[0.064809828996658,0.074727386236191,-0.085760042071342],[0.031076727434993,-0.019429078325629,0.048156104981899]],[[-0.070093773305416,0.050949659198523,-0.026229912415147],[-0.019376646727324,0.025120045989752,0.0071812169626355],[0.002545244526118,0.025801289826632,-0.023867473006248]],[[-0.019056065008044,-0.047091215848923,-0.031285293400288],[0.026985917240381,0.033812765032053,-0.019486591219902],[-0.0057826633565128,-0.01080413069576,-0.039589714258909]],[[-0.013147187419236,-0.054565656930208,0.038434121757746],[0.068421646952629,0.0075541553087533,0.020490895956755],[-0.071909934282303,0.01074737124145,-0.022949930280447]],[[0.026790587231517,-0.073229655623436,-0.040399290621281],[0.10376480966806,0.036443531513214,0.051148429512978],[-0.023501643911004,-0.0063896123319864,-0.0063522630371153]],[[0.049538809806108,-0.01581659168005,0.022712038829923],[0.01161883585155,0.014798815362155,0.11629988998175],[-0.02638285793364,-0.026348941028118,-0.016196317970753]],[[-0.083253540098667,0.015271014533937,0.040938928723335],[-0.046979662030935,-0.0226811747998,0.010184942744672],[-0.082400791347027,-0.090107858181,-0.024286644533277]],[[0.019549377262592,-0.029771793633699,-0.044653993099928],[-0.0072538801468909,0.016738574951887,0.035339049994946],[-0.0033252667635679,-0.028713515028358,0.017130590975285]],[[0.051986083388329,0.019056083634496,0.021667595952749],[-0.028280649334192,0.009110614657402,0.029853414744139],[-0.021433781832457,0.00030339724617079,-0.011887266300619]],[[0.00091790652368218,-0.037844385951757,-0.058292631059885],[-0.083636730909348,0.034194342792034,-0.10301411151886],[0.021390805020928,0.0034635064657778,-0.015714950859547]],[[0.005537033546716,-0.02468528598547,-0.046069398522377],[0.022668704390526,-0.0060507161542773,-0.026787895709276],[-0.063267104327679,0.042300470173359,0.0087198447436094]],[[0.005311390850693,-0.036911442875862,0.052818261086941],[0.030986627563834,0.045723732560873,0.0251992829144],[-0.012262620963156,-0.015468133613467,0.05025515332818]],[[-0.0059046889655292,0.017362166196108,-0.014445426873863],[-0.019951513037086,-0.050094395875931,-0.069892704486847],[0.086557060480118,-0.01514745131135,0.0065640085376799]],[[-0.0032497167121619,-0.0056552370078862,-0.0086718974635005],[-0.041148833930492,-0.015398356132209,0.052890937775373],[-0.022497236728668,0.045926440507174,-0.049086634069681]],[[0.026160474866629,0.04707869514823,0.007542320061475],[0.083765998482704,0.021400297060609,0.040624219924212],[0.030140494927764,0.035810023546219,0.058623135089874]],[[0.010584798641503,-0.04100289195776,0.022306799888611],[0.02284961566329,-0.030992191284895,-0.014114584773779],[0.054143846035004,0.055056255310774,0.031120231375098]],[[0.0037359870038927,-0.005089033395052,-0.028256233781576],[0.075950711965561,0.069320961833,0.032719239592552],[0.051950499415398,-0.0055117546580732,0.07321921736002]],[[0.030253538861871,-0.051280207931995,-0.028185892850161],[0.0047076023183763,0.004977676551789,-0.016809493303299],[-0.0027538849972188,0.00204470125027,-0.026593564078212]],[[0.017429679632187,0.021115448325872,0.035601168870926],[0.0032442002557218,0.026394737884402,0.039754312485456],[0.019662693142891,0.083759739995003,0.01528104301542]],[[0.0098924012854695,0.010550018399954,0.013196888379753],[-0.064673632383347,-0.005300301592797,0.027690740302205],[0.044565822929144,0.013259816914797,0.038827434182167]],[[0.0037945297081023,0.029378551989794,-0.0073626125231385],[-0.017807541415095,-0.0045634247362614,0.066542074084282],[0.042708750814199,0.026224616914988,0.025021970272064]],[[0.053401757031679,0.0012367715826258,0.098750419914722],[-0.044769730418921,-0.0057865288108587,-0.0050384206697345],[0.0087858624756336,-0.035604994744062,0.020975543186069]],[[0.095474898815155,-0.011792302131653,0.0024767641443759],[0.019004192203283,0.035442143678665,0.010541047900915],[-0.07853177189827,0.052821800112724,0.023540934547782]],[[-0.028285278007388,0.011538071557879,0.0160913746804],[0.10972678661346,0.05540855973959,0.067756228148937],[0.032209292054176,0.02414907515049,0.017254274338484]],[[-0.019237305969,-0.031219897791743,0.092146426439285],[0.0034760464914143,0.018791073933244,0.00089820846915245],[0.045265041291714,-0.0093447305262089,0.092722818255424]],[[0.022925155237317,-0.023980366066098,0.023015577346087],[0.010146831162274,0.058760095387697,0.080354727804661],[-0.033414661884308,0.065955810248852,0.07270573079586]],[[-0.031842723488808,0.091622449457645,0.016551155596972],[0.0044906074181199,0.0052694855257869,-0.039557348936796],[0.029265535995364,0.03886641561985,0.0025259745307267]],[[-0.038612555712461,-0.02305755764246,-0.059000238776207],[0.055739901959896,0.072763450443745,-0.060924123972654],[0.05424615368247,-0.010527452453971,-0.069428205490112]],[[0.015932692214847,0.011202468536794,-0.013814839534461],[0.0054562101140618,0.032714791595936,-0.025889599695802],[-0.033855177462101,0.0074325641617179,-0.016440721228719]],[[-0.064253032207489,0.11479450762272,0.0059860157780349],[-0.052535876631737,0.058187112212181,-0.021869963034987],[-0.098418734967709,0.022652516141534,0.035282906144857]],[[0.013321069069207,-0.013118766248226,0.019999196752906],[0.048686902970076,-0.038863148540258,0.009138154797256],[0.004664046689868,0.012630553916097,0.04211712628603]],[[-0.050321117043495,0.0098377950489521,-0.0069143744185567],[-0.006690741982311,0.019068460911512,0.065696947276592],[-0.015356315299869,-0.024518376216292,-0.002941912971437]],[[0.011405942030251,-0.01241893414408,0.050137355923653],[-0.00084684393368661,0.021434245631099,0.051700096577406],[0.093499481678009,0.038222264498472,-0.019507180899382]],[[-0.048291720449924,0.010617785155773,-0.059358295053244],[0.057976067066193,0.06304657459259,0.072381004691124],[0.0091693000867963,0.078611515462399,-0.096641816198826]],[[-0.039176844060421,0.021403493359685,0.078256644308567],[0.016336768865585,0.070042937994003,0.033338308334351],[0.018568269908428,0.034329060465097,-0.013948484323919]],[[0.026086140424013,0.0015121486503631,-0.00079208181705326],[0.012424192391336,0.038507368415594,0.017048204317689],[-0.0081945834681392,0.006286340765655,0.074364461004734]],[[-0.010297582484782,0.038908883929253,-0.041634645313025],[0.042688723653555,-0.0090856226161122,-0.032717492431402],[-0.0021887733601034,-0.016709914430976,-0.010002285242081]],[[0.025719596073031,-0.040572330355644,0.033483721315861],[0.059195954352617,-0.016007296741009,-0.022815426811576],[0.099657624959946,0.024930875748396,-0.026866007596254]],[[-0.0059565147385001,-0.057738095521927,0.08011107891798],[0.018067101016641,0.046992745250463,-0.023614812642336],[0.034702837467194,-0.0470863096416,0.038181576877832]],[[-0.0038337965961546,0.044386733323336,0.058226924389601],[0.017707595601678,0.098652571439743,-0.033969536423683],[-0.02398387901485,-0.060920417308807,-0.0047439807094634]],[[0.068422935903072,-0.034478519111872,-0.01082248147577],[0.0046151620335877,-0.088244825601578,0.0032195304520428],[0.015343517065048,0.0062786927446723,-0.047845307737589]],[[-0.025180730968714,0.062821589410305,-0.011221607215703],[0.053737483918667,-0.03754898160696,0.090663872659206],[-0.018817419186234,0.0017598626436666,-0.026685990393162]],[[0.0051352758891881,-0.017129793763161,0.066628329455853],[-0.0036102035082877,-0.02683038637042,-0.013862992636859],[0.015250341966748,-0.037178561091423,-0.012669161893427]],[[0.010208582505584,0.016104362905025,0.086126804351807],[0.0038706669583917,0.011234084144235,-0.019086427986622],[-0.015268695540726,-0.039686940610409,0.037938222289085]],[[-0.002223334973678,-0.031430352479219,0.077744103968143],[-0.03692738711834,-0.010189236141741,-0.0025537100154907],[-0.031689312309027,-0.029628086835146,0.013596910052001]],[[-0.013107066042721,0.059125047177076,0.030898155644536],[-0.085304692387581,-0.078604087233543,0.050661981105804],[-0.096264995634556,0.029858751222491,-0.031865939497948]],[[0.046892169862986,0.0047032525762916,0.0073741716332734],[0.00042048841714859,0.10102669149637,-0.044310625642538],[-0.023371616378427,-0.017504183575511,0.05021058768034]],[[-0.043059010058641,0.024295931681991,0.052860856056213],[-0.027027068659663,0.023040931671858,-0.033817477524281],[-0.013173500075936,-0.013896194286644,0.046003557741642]],[[-0.02744716592133,0.0097308456897736,0.02691512554884],[0.025864394381642,0.019587967544794,0.021132953464985],[-0.04299209266901,-0.066961772739887,0.022217616438866]],[[-0.070292495191097,-0.025255272164941,-0.053515307605267],[0.007726700976491,-0.01570344902575,0.0011853686301038],[0.022709529846907,-0.021673139184713,-0.054348967969418]],[[-0.042636178433895,-0.063129045069218,0.0029005450196564],[0.0060298531316221,-0.0066181570291519,0.063356786966324],[-0.0032774605788291,-0.014395093545318,-0.0071086576208472]],[[0.007803721819073,-0.020297853276134,0.053476583212614],[0.006006836425513,0.048700999468565,-0.038859147578478],[0.098168790340424,0.055306904017925,0.033176470547915]],[[-0.046252556145191,-0.035402160137892,0.031310264021158],[-0.014347654767334,0.037924479693174,0.030973855406046],[0.060185633599758,-0.1050460934639,-0.087711535394192]],[[0.044582702219486,0.051853973418474,-0.0011994354426861],[0.0072287041693926,0.021566968411207,0.080048143863678],[-0.064023539423943,-0.14668941497803,0.066701725125313]],[[-0.030294144526124,0.0119150262326,0.044763844460249],[-0.026884090155363,0.033251523971558,-0.042261209338903],[-0.014780906960368,-0.010449930094182,-0.047607488930225]],[[-0.052766844630241,0.053999029099941,-0.00055377575336024],[-0.022290430963039,-0.073765449225903,0.046518862247467],[-0.055926084518433,-0.052985809743404,0.054684162139893]],[[0.048692427575588,-0.015405350364745,-0.070111736655235],[0.0092173023149371,0.023625373840332,-0.019735429435968],[-0.036292809993029,0.099240645766258,-0.072353683412075]],[[-0.036901921033859,-0.015038376674056,-0.042132373899221],[-0.043946553021669,-0.036236990243196,0.012354116886854],[-0.01317077409476,-0.07106190174818,-0.029360352084041]],[[0.079571187496185,0.0066997990943491,-0.0086015770211816],[0.0081340381875634,0.030367899686098,0.011706557124853],[0.025514842942357,-0.026386210694909,-0.021391026675701]],[[0.027214664965868,0.018232360482216,-0.033718574792147],[0.0049409745261073,-0.011933529749513,-0.069616198539734],[0.045744381844997,-0.0073637301102281,0.055679343640804]],[[-0.037485361099243,0.0031980127096176,-0.014412174932659],[0.046239253133535,-0.00095649145077914,-0.014065848663449],[-0.084649845957756,-0.034646943211555,0.013406218960881]],[[0.041957385838032,0.019767798483372,-0.0532421246171],[-0.018427403643727,0.022920109331608,0.064549662172794],[-0.025304663926363,-0.030844788998365,-0.0078465566039085]],[[-0.011473213322461,0.1096143424511,-0.02177763544023],[0.0072483532130718,-0.01094504352659,0.01427061483264],[-0.038297243416309,0.015329223126173,0.060257833451033]],[[-0.08673457801342,0.055845815688372,0.0020166772883385],[-0.013082339428365,-0.07632490247488,0.011649081483483],[-0.034241139888763,0.065161809325218,-0.018303288146853]],[[0.03225639462471,-0.065900959074497,-0.047494929283857],[-0.01646189764142,0.0277965888381,0.021682970225811],[0.055955611169338,-0.0028619312215596,-0.0019451174885035]]],[[[-0.06392727047205,-0.033371191471815,-0.033372417092323],[0.033154662698507,-0.0068341786973178,0.085024386644363],[0.077204890549183,0.050680965185165,-0.023803826421499]],[[0.07566449791193,-0.070292577147484,-0.039142865687609],[-0.034404400736094,-0.046122260391712,-0.092424362897873],[0.019470768049359,-0.04832286387682,0.0081035392358899]],[[0.054486501961946,-0.029934836551547,0.094106175005436],[0.094357319176197,0.029929580166936,0.0038442318327725],[-0.034972302615643,0.036077369004488,-0.10967171937227]],[[0.021241074427962,0.080975584685802,0.049773786216974],[0.084062591195107,0.11353827267885,0.11967820674181],[0.040365051478148,-0.0013267784379423,0.025738030672073]],[[0.091883979737759,0.064767584204674,0.04255011305213],[0.033748399466276,-0.11836054176092,0.03213419765234],[0.080961711704731,-0.089761853218079,-0.10644403845072]],[[-0.011525960639119,0.049479253590107,0.075066678225994],[0.038480363786221,-0.062816455960274,0.027689473703504],[-0.027214417234063,-0.036547675728798,0.060155980288982]],[[0.077447563409805,0.027256520465016,0.023872433230281],[-0.092871479690075,0.069055080413818,0.089323595166206],[-0.0067433873191476,-0.026720682159066,0.046519726514816]],[[0.017173895612359,-0.072285883128643,0.022661026567221],[0.13167685270309,0.081689029932022,0.067867130041122],[-0.047296300530434,-0.0063957097008824,-0.017247978597879]],[[-0.039870399981737,-0.0080388812348247,-0.085095539689064],[-0.0020318131428212,0.019101548939943,0.012039606459439],[-0.040244318544865,0.0021125068888068,0.017404895275831]],[[-0.082109272480011,0.0003611504798755,-0.0017147599719465],[-0.017042128369212,0.1062780097127,-0.032005880028009],[0.020798414945602,-0.11560760438442,0.035415783524513]],[[-0.017256934195757,0.0066475407220423,0.091771468520164],[-0.02585631236434,0.0013015503063798,0.092353761196136],[0.0054039945825934,-0.062654323875904,0.0028596909251064]],[[-0.01161583699286,-0.014474602416158,-0.013304832391441],[0.017180679365993,-0.15139532089233,-0.037501692771912],[-0.038229629397392,-0.039015233516693,-0.036760691553354]],[[0.020174771547318,0.018438262864947,0.042491860687733],[-0.0020028797443956,-0.0032709145452827,-0.027745688334107],[0.024207625538111,0.066837288439274,-0.088723555207253]],[[0.0052146515809,0.033384349197149,0.063664950430393],[-0.01425842102617,-0.12833954393864,-0.14185233414173],[0.095518447458744,-0.007665004581213,0.025912448763847]],[[0.03558337315917,0.024014124646783,-0.0013655174989253],[-0.013695874251425,0.063853353261948,-0.019764229655266],[-0.041224155575037,0.051353275775909,0.0085608027875423]],[[0.066108547151089,0.00063565268646926,-0.026131734251976],[-0.070756047964096,-0.031816061586142,0.031336508691311],[-0.012850162573159,-0.0022110636346042,-0.0078794378787279]],[[0.021284243091941,-0.12251944094896,-0.117655582726],[-0.0017584441229701,-0.039872225373983,-0.022246787324548],[-0.1028750538826,0.13364516198635,0.0042739538475871]],[[0.058431372046471,0.065607808530331,0.035555981099606],[-0.019442418590188,0.0025191225577146,0.030672386288643],[-0.014874249696732,-0.12788118422031,-0.10516478121281]],[[-0.035388968884945,0.031564030796289,-0.050656091421843],[0.013264429755509,0.018136456608772,0.19497764110565],[-0.065689638257027,0.1299954354763,0.0079912282526493]],[[0.028249310329556,0.013814957812428,-0.019351119175553],[-0.1230923384428,0.028442643582821,0.0041471640579402],[0.023072181269526,-0.013326278887689,0.064448766410351]],[[-0.037167899310589,0.035163264721632,-0.056471921503544],[-0.015220784582198,-0.079581767320633,0.1871088296175],[-0.015573811717331,-0.038368094712496,-0.058007128536701]],[[0.10805122554302,0.015260714106262,0.10465624183416],[-0.03024628572166,-0.048786133527756,0.042753078043461],[0.033449403941631,0.073025092482567,0.087040148675442]],[[0.12989808619022,-0.019219573587179,0.056214269250631],[-0.048812299966812,-0.14589290320873,0.025974115356803],[-0.038415733724833,-0.05819558724761,-0.067213915288448]],[[-0.030209066346288,0.0017789332196116,0.00435132952407],[0.0072809862904251,0.0046555213630199,0.020150920376182],[-0.08424200117588,-0.037011504173279,-0.048787392675877]],[[-0.036551248282194,0.076801180839539,-0.037486657500267],[-0.02428100630641,-0.062475506216288,0.040768761187792],[0.02633243240416,-0.021018356084824,0.05070586502552]],[[0.011095602996647,0.056278467178345,0.067935578525066],[0.004359467420727,0.0014989873161539,-0.0075188772752881],[-0.029676679521799,-0.035822123289108,-0.049657713621855]],[[0.067508347332478,0.020908541977406,0.08603797107935],[0.036616623401642,0.046223949640989,0.07505689561367],[0.044743943959475,-0.048379119485617,0.037541970610619]],[[0.084472797811031,0.047035377472639,0.11849018186331],[-0.09022206813097,0.057585522532463,0.0035845700185746],[0.06873944401741,-0.083317644894123,0.068848565220833]],[[-0.012514504604042,0.083661057054996,-0.0047928206622601],[0.040537029504776,-0.048576921224594,-0.073919802904129],[-0.013078030198812,0.079155638813972,-0.056042078882456]],[[-0.01609955355525,0.041068706661463,0.0043604453094304],[-0.029999310150743,-0.045410163700581,-0.029037283733487],[0.051197029650211,0.010603094473481,-0.0093249715864658]],[[0.096521623432636,0.1509824693203,0.12698291242123],[0.13332763314247,-0.0048123467713594,0.023474004119635],[0.032453067600727,-0.006967366207391,-0.043544564396143]],[[0.033769782632589,0.022860260680318,-0.007651343010366],[0.027771312743425,-0.02129035256803,-0.071960143744946],[-0.087543651461601,0.028584711253643,-0.023193087428808]],[[0.081297777593136,0.016471173614264,0.077338024973869],[0.099601477384567,0.042381346225739,-0.034706313163042],[0.039476249366999,0.1017856374383,0.0060636666603386]],[[0.05693494156003,0.024416266009212,-0.10006979107857],[0.01123421639204,0.037186820060015,0.055377751588821],[0.068006336688995,0.014119040220976,-0.075786061584949]],[[0.070864833891392,0.002775982953608,0.039162322878838],[0.002096741925925,0.034310597926378,-0.0025976656470448],[-0.045011028647423,-0.068620234727859,-0.0038934119511396]],[[-0.049076780676842,-0.043307293206453,-0.046619545668364],[0.023050896823406,-0.071774132549763,0.084299139678478],[-0.051118560135365,-0.0332768894732,-0.14159978926182]],[[-0.040166791528463,0.00093153276247904,0.029513992369175],[0.010107703506947,-0.003902159165591,0.10721845924854],[-0.015349747613072,-0.031307443976402,0.1195517629385]],[[0.01366313174367,0.0084383366629481,-0.0028043880593032],[-0.088983863592148,0.0046035246923566,0.033738389611244],[0.091619566082954,0.031328178942204,0.030089054256678]],[[-0.018720842897892,0.04769504442811,-0.044193919748068],[-0.085004813969135,-0.016759684309363,0.15723378956318],[-0.061683312058449,0.084027260541916,-0.018863189965487]],[[0.09887907654047,0.056717220693827,0.087330222129822],[-0.018781438469887,0.051006022840738,0.040542498230934],[0.030830550938845,0.033100392669439,0.10399223864079]],[[0.028715657070279,-0.029012024402618,-0.027151953428984],[-0.020587081089616,0.10428696870804,-0.0011566487373784],[0.033040467649698,-0.017696613445878,-0.00011730872211047]],[[0.12233300507069,0.093464061617851,0.054223209619522],[0.060727175325155,-0.011715102009475,0.019875477999449],[0.054360430687666,0.12975507974625,0.078920744359493]],[[0.036335602402687,0.064313530921936,-0.072753846645355],[0.068201415240765,0.12106717377901,-0.022400449961424],[0.015620174817741,0.042409438639879,0.02881589345634]],[[-0.043114762753248,-0.020012628287077,0.035775721073151],[-0.027832726016641,-0.016789330169559,0.075311325490475],[0.01831073872745,0.014204850420356,0.035201378166676]],[[0.015531565994024,0.11746668815613,-0.062057193368673],[0.13557554781437,0.043940249830484,-0.063186772167683],[-0.019105415791273,0.088511250913143,0.024900671094656]],[[0.034191772341728,-0.057498015463352,0.043236922472715],[-0.082216121256351,-0.0085181314498186,0.016101244837046],[-0.029706884175539,0.011729086749256,-0.019583957269788]],[[0.041482906788588,-0.014203968457878,0.095770172774792],[-0.05452237278223,0.026040997356176,-0.063670888543129],[0.010139821097255,0.069839894771576,0.079193919897079]],[[-0.084548160433769,0.0047562001273036,-0.071111224591732],[-0.09775048494339,-0.11814294010401,0.040293339639902],[0.020497219637036,0.01120906509459,-0.11179329454899]],[[0.0072685466147959,0.013372654095292,-0.0596893876791],[0.18260936439037,-0.011117635294795,-0.052845671772957],[0.12020070850849,-0.058329932391644,-0.11577408015728]],[[0.013316531665623,0.034700494259596,-0.050088070333004],[0.023107619956136,-0.026913363486528,-0.017728894948959],[0.014199437573552,0.012574981898069,0.0079465564340353]],[[0.061667133122683,-0.018136389553547,0.043500982224941],[-0.035751946270466,0.017564363777637,-0.049992620944977],[0.012732812203467,-0.027198078110814,-0.050133269280195]],[[0.064044244587421,-0.072998285293579,-0.036798253655434],[0.067140907049179,0.093170814216137,-0.040634714066982],[-0.013072083704174,0.012729791924357,0.13219034671783]],[[-0.04874224960804,0.09921658039093,-0.0032082716934383],[0.025552030652761,-0.020585685968399,0.054624900221825],[-0.049270782619715,-0.034858386963606,0.0085829282179475]],[[0.078459039330482,-0.055659200996161,0.0013350415974855],[0.062848001718521,0.042595487087965,0.021954532712698],[-0.091440781950951,-0.00079442444257438,0.031646382063627]],[[-0.0010110748698935,0.015331410802901,-0.02881776727736],[-0.085136212408543,-0.041834957897663,0.0061161764897406],[0.066289938986301,0.030445277690887,0.023384571075439]],[[0.026305997744203,0.073675952851772,-0.0069633387029171],[-0.070302464067936,0.078300572931767,-0.038027349859476],[-0.10936287790537,0.011858907528222,-0.0096517847850919]],[[0.0071816015988588,-0.021990003064275,0.030195850878954],[0.014050982892513,0.04426621645689,-0.037710431963205],[-0.070516586303711,0.093258827924728,-0.026773691177368]],[[0.062390200793743,-0.10738898068666,-0.079296559095383],[0.030766891315579,-0.016943914815784,0.10624534636736],[-0.12471320480108,0.044205266982317,-0.015563995577395]],[[-0.034464292228222,0.0081763165071607,-0.035286903381348],[-0.065529100596905,-0.07614454627037,0.035161826759577],[0.04840612411499,0.083094604313374,-0.014682093635201]],[[-0.084973469376564,0.000142882738146,0.0095270099118352],[-0.033300951123238,-0.074967637658119,-0.022071342915297],[-0.098471708595753,0.14736871421337,-0.06313818693161]],[[0.01300023496151,0.06621378660202,0.0045547145418823],[0.040716215968132,0.038892671465874,0.091634437441826],[-0.0028982490766793,0.0088019473478198,-0.056873604655266]],[[-0.058923404663801,-0.0046128602698445,0.037806410342455],[-0.017425857484341,-0.029184848070145,0.020917076617479],[-0.0023559255059808,0.040194753557444,0.045081771910191]],[[-0.023409908637404,-0.017003417015076,0.023587927222252],[-0.017484810203314,0.043865725398064,-0.08694214373827],[-0.011929415166378,-0.085811458528042,0.18413724005222]],[[0.030933048576117,-0.044635269790888,0.081335246562958],[-0.049405533820391,0.016017321497202,0.012986369431019],[-0.03261161968112,0.01638862118125,0.089325152337551]],[[-0.060125015676022,-0.023113433271646,0.23157212138176],[-0.088715881109238,-0.030761269852519,-0.053489033132792],[0.031607337296009,-0.01819958165288,-0.038856204599142]],[[0.0093869566917419,0.071692205965519,-0.018655261024833],[0.085172191262245,-0.053506959229708,0.068248279392719],[0.024321649223566,-0.0010489624692127,-0.061831381171942]],[[0.077402181923389,0.10077654570341,0.034149758517742],[0.058597404509783,0.071123138070107,-0.011466939002275],[-0.030603146180511,-0.016149634495378,0.026238311082125]],[[-0.04426184669137,0.00689867278561,0.04920294508338],[0.0016750941285864,0.022661492228508,-0.054815884679556],[0.018722638487816,-0.042409580200911,0.0017718832241371]],[[0.033054359257221,0.036700267344713,0.043082397431135],[0.054896920919418,0.0036836261861026,-0.090017981827259],[0.032218180596828,-0.027759427204728,0.022757396101952]],[[0.018756289035082,0.019617291167378,0.030584970489144],[0.046993087977171,0.0097679095342755,0.039218604564667],[-0.019975295290351,0.032245740294456,-0.025121189653873]],[[-0.078353486955166,0.073639020323753,0.10934019833803],[0.036953780800104,0.047544669359922,0.086174167692661],[-0.055417276918888,0.02110175602138,-0.12319421768188]],[[0.051993239670992,0.01572871953249,-0.023229870945215],[-0.091942310333252,-0.056364424526691,-0.059816848486662],[-0.10109966993332,-0.0079125221818686,-0.00037037770380266]],[[0.0073327892459929,0.0082008996978402,0.0017611214425415],[-0.020437786355615,-0.035195205360651,0.12236819416285],[0.025869216769934,-0.047851014882326,-0.096249900758266]],[[-0.12689012289047,-0.019513400271535,-0.02769978903234],[0.024389073252678,0.068058133125305,0.046141654253006],[-0.073555126786232,-0.042437460273504,-0.0011796627659351]],[[0.13083550333977,0.017213197425008,0.017421565949917],[-0.085643783211708,0.070884391665459,0.053024940192699],[0.0035541479010135,-0.051015794277191,-0.026210650801659]],[[-0.039499163627625,0.061686955392361,-0.025097353383899],[0.066643461585045,0.021003771573305,0.00071728532202542],[-0.0077991578727961,0.027911694720387,-0.026767019182444]],[[-0.0733492821455,-0.022213196381927,-0.012225010432303],[-0.022805219516158,0.021753275766969,0.090656876564026],[-0.083174332976341,0.048785150051117,-0.017893055453897]],[[0.090316325426102,0.011218619532883,0.019175108522177],[0.072368621826172,0.082578331232071,0.10949150472879],[0.03789147734642,0.041717141866684,0.053587436676025]],[[-0.10193188488483,0.0085473703220487,-0.046943116933107],[0.055395182222128,-0.032357435673475,-0.001115407096222],[0.053245529532433,0.020756240934134,0.037515439093113]],[[-0.058728378266096,0.039236076176167,0.0072334646247327],[-0.062070980668068,-0.04843832179904,-0.067183665931225],[-0.021179495379329,0.023729266598821,0.054094545543194]],[[0.021083317697048,0.10659316927195,-0.0030109975486994],[0.054808393120766,0.026460142806172,-0.00039994373219088],[0.029670123010874,0.10648307204247,0.072480045258999]],[[0.055055812001228,0.00078495795605704,-0.0050854636356235],[-0.037212092429399,0.069841034710407,0.040494937449694],[-0.047180190682411,0.018074359744787,0.016841826960444]],[[0.06825065612793,-0.04427045583725,-0.044552654027939],[-0.022182121872902,0.12702068686485,0.029833385720849],[-0.012022357434034,-0.0073018544353545,-0.0051642172038555]],[[-0.012279270216823,0.078259408473969,0.071849592030048],[0.093538708984852,-0.00605259090662,0.018114788457751],[-0.027292184531689,0.017098963260651,0.024585282430053]],[[0.055111654102802,-0.0030700271017849,-0.037831254303455],[0.037831418216228,-0.0061494167894125,-0.043944600969553],[-0.043527621775866,0.030050216242671,0.076941594481468]],[[-0.040630858391523,0.053059756755829,0.0023606852628291],[-0.020183399319649,0.024106802418828,0.032019302248955],[-0.023808861151338,-0.087205268442631,-0.026663813740015]],[[0.093287661671638,-0.049140393733978,-0.080084703862667],[-0.013163359835744,0.20143137872219,0.063058063387871],[0.044992927461863,-0.011633486486971,-0.032374884933233]],[[0.017742378637195,-0.064213335514069,-0.0096769845113158],[0.078040711581707,-0.046242736279964,0.053922493010759],[-0.0090545602142811,-0.042842321097851,-0.055491339415312]],[[0.0017548599280417,0.071282722055912,0.059393521398306],[0.0061816722154617,-0.020397076383233,-0.10419598221779],[0.048790618777275,-0.10455568879843,-0.0076333791948855]],[[0.035445254296064,-0.031869933009148,0.024615040048957],[0.028677428141236,-0.041729006916285,-0.00095012865494937],[0.043709844350815,-0.026892034336925,0.08417684584856]],[[0.014249870553613,-0.015589687041938,0.017926746979356],[0.084927387535572,0.02577099762857,-0.036913964897394],[-0.043806798756123,-0.0059108659625053,-0.014018186368048]],[[0.010791244916618,0.061620585620403,-0.01756938174367],[0.014598566107452,-0.039055563509464,0.025599416345358],[-0.046599134802818,-0.036890987306833,-0.044923279434443]],[[-0.020570816472173,-0.0020674995612353,0.18970812857151],[0.011231335811317,0.018943229690194,0.033997152000666],[-0.0059588304720819,-0.1106950044632,-0.10187217593193]],[[-0.0015228486154228,0.0093081146478653,0.030876241624355],[-0.0019334509270266,-0.014717912301421,0.0023259606678039],[0.050468768924475,-0.064075440168381,0.0098014092072845]],[[0.031842343509197,-0.10656270384789,0.13550037145615],[-0.005868187174201,0.018188687041402,0.078146412968636],[0.077500879764557,0.00028591556474566,-0.13534134626389]],[[0.0081100482493639,-0.007503118366003,0.031646002084017],[0.11037426441908,0.056463897228241,0.0094408961012959],[0.030113577842712,0.025417538359761,-0.0050820768810809]],[[-0.055839747190475,-0.028882360085845,0.12333401292562],[0.032163135707378,-0.097261309623718,-0.043075364083052],[-0.042753756046295,-0.039896577596664,-0.027763068675995]],[[0.10561673343182,-0.011696272529662,-0.052147105336189],[-0.01895110681653,0.031323052942753,0.16458758711815],[-0.0029358328320086,0.12845614552498,0.025047173723578]],[[0.0068026972003281,0.016554586589336,-0.0090289600193501],[0.011428785510361,-0.018388031050563,-0.076509766280651],[-0.03293464332819,0.070662423968315,-0.017887905240059]],[[0.048432789742947,0.039488185197115,-0.017865994945168],[-0.034991193562746,-0.054959669709206,-0.029192309826612],[-0.023590615019202,0.072686024010181,0.014292346313596]],[[-0.065741553902626,-0.035276781767607,-0.020597141236067],[-0.09172248840332,0.030771072953939,-0.056463275104761],[0.0001642242714297,-0.084558129310608,0.11927209049463]],[[0.061263862997293,-0.022826239466667,-0.01941161789],[0.012269594706595,-0.013222160749137,0.058611951768398],[0.042320564389229,0.042425740510225,0.0046009365469217]],[[0.024033987894654,-0.08548004925251,0.050939798355103],[0.070903427898884,-0.054907854646444,-0.014449348673224],[-0.053611237555742,-0.052847169339657,0.016358405351639]],[[0.12540605664253,0.028069213032722,-0.10146149992943],[-0.00087400799384341,-0.050755992531776,0.032216478139162],[0.051856700330973,-0.053098522126675,-0.058484088629484]],[[-0.096838213503361,0.084880515933037,-0.018399471417069],[0.041125204414129,0.0052605220116675,-0.063780099153519],[0.056432280689478,-0.032295044511557,0.034911826252937]],[[0.091247960925102,-0.018253915011883,1.0928495612461e-05],[0.02870393358171,0.0074675432406366,-0.0095223234966397],[0.071088671684265,0.031519420444965,0.18429075181484]],[[0.032246716320515,-0.057413317263126,0.041525859385729],[-0.072057262063026,-0.0031343156006187,0.18803414702415],[-0.04430541023612,-0.057021841406822,0.025223510339856]],[[-0.077313624322414,-0.037718255072832,0.024892937391996],[0.013574266806245,-0.11546579748392,-0.0024685605894774],[-0.011472947895527,-0.039555110037327,-0.03848048299551]],[[0.0081001510843635,-0.056158594787121,-0.025516895577312],[-0.0099046742543578,-0.0027498505078256,-0.015989895910025],[-0.070120118558407,-0.016068397089839,0.0056591802276671]],[[0.10794981569052,0.027913469821215,0.11403284221888],[-0.0088842716068029,-0.029821028932929,0.023362200707197],[0.052193630486727,0.015893928706646,0.027567848563194]],[[-0.018966486677527,-0.0085861422121525,0.027479782700539],[0.012271413579583,0.0214589163661,-0.052485540509224],[-0.027679465711117,0.049176469445229,0.054175764322281]],[[-0.050102706998587,0.015098786912858,-0.090832494199276],[-0.018640663474798,-0.039971828460693,-0.019782124087214],[-0.04974203556776,-0.0095891188830137,-0.028614152222872]],[[0.007916234433651,-0.075536049902439,-0.017626570537686],[-0.044233962893486,0.020849816501141,0.021807169541717],[-0.016298983246088,-0.0024073030799627,0.070444986224174]],[[-0.05170464143157,-0.04733457788825,0.06252433359623],[0.014526166953146,-0.0043055559508502,0.039456143975258],[0.064852982759476,0.0014034500345588,-0.043728351593018]],[[0.010771452449262,0.019442958757281,-0.029387999325991],[-0.002601349260658,0.033069461584091,0.028214197605848],[-0.035916142165661,0.062529683113098,0.028021786361933]],[[-0.072340741753578,0.032523658126593,0.017878163605928],[0.0020700006280094,-0.060913078486919,0.027225099503994],[-0.059372141957283,-0.14572477340698,-0.027937775477767]],[[-0.0012344554997981,0.0064498139545321,0.0057934084907174],[0.031311437487602,0.040467251092196,-0.0044042868539691],[-0.071898393332958,0.068018391728401,0.04211775586009]],[[0.084648296236992,-0.06732252240181,0.01230358146131],[-0.064506195485592,-0.0702855437994,-0.065696984529495],[-0.0077486424706876,0.045218739658594,0.063175886869431]],[[-0.005952519364655,-0.039345450699329,-0.06657762825489],[-0.055183939635754,-0.058748871088028,-0.021846301853657],[-0.050054244697094,-0.060960046947002,-0.032172735780478]],[[0.023532837629318,0.021067595109344,0.039502419531345],[-0.02831987477839,0.054899744689465,-0.01132317725569],[0.0044258595444262,-0.029868125915527,0.0084152529016137]],[[0.040388032793999,-0.08653949201107,0.12841753661633],[-0.020446676760912,-0.07165864855051,0.11956026405096],[0.074816547334194,0.018452668562531,-0.030570080503821]],[[0.043863724917173,-0.078700341284275,0.030091995373368],[-0.099931463599205,0.0059416173025966,-0.027507914230227],[0.010476601310074,0.025468934327364,0.0042663621716201]],[[-0.01041143015027,0.0092194033786654,-0.035454660654068],[-0.050436969846487,-0.054361302405596,0.097042098641396],[-0.0028204291593283,-0.033330004662275,-0.022617440670729]],[[0.0045917704701424,0.030617265030742,-0.022875631228089],[-0.0017515134532005,-0.017855117097497,0.05433102324605],[-0.019672513008118,0.028027372434735,-0.053803715854883]],[[0.12449841201305,0.032673995941877,0.031275220215321],[0.097186699509621,-0.0076267723925412,-0.0082186246290803],[0.033958204090595,0.01352795958519,0.036557875573635]],[[0.0073737185448408,0.032375477254391,-0.061143506318331],[-0.12038850039244,0.0047900583595037,0.0048570446670055],[-0.065266512334347,-0.021774217486382,-0.019696030765772]],[[0.021694907918572,-0.018674416467547,-0.019411973655224],[-0.11585146933794,0.0063468841835856,-0.16073140501976],[-0.05717484280467,0.048242673277855,0.009194428101182]],[[-0.059809118509293,0.0083599276840687,-0.067165948450565],[-0.094120062887669,0.02804159745574,0.028203083202243],[0.0097172148525715,-0.058587670326233,0.037697624415159]]],[[[-0.051368918269873,-0.020104782655835,-0.041692491620779],[-0.045222077518702,-0.0082937218248844,-0.059344917535782],[-0.013465561904013,-0.02066202647984,-0.039890058338642]],[[0.058382224291563,-0.077062129974365,0.037903286516666],[0.0046211923472583,0.019695015624166,0.014890746213496],[0.081794790923595,-0.0016018826281652,-0.017384247854352]],[[-0.021730521693826,-0.0093729123473167,0.011796745471656],[0.0020035279449075,0.013650323264301,-0.10133983939886],[0.023162383586168,0.03998289629817,-0.011392596177757]],[[0.037049632519484,0.025453478097916,0.061889987438917],[0.060909297317266,-0.020520955324173,-0.066138230264187],[0.032088384032249,-0.044074308127165,0.025139857083559]],[[-0.0026409383863211,-0.01087448745966,0.014515468850732],[-0.01210605353117,0.077636912465096,-0.060457024723291],[-0.0091172168031335,0.013094803318381,-0.04090878739953]],[[-0.022302919998765,-0.0047236578539014,0.072841763496399],[0.0047274604439735,0.0644556209445,-0.047739751636982],[0.0091722719371319,0.056208394467831,-0.043058775365353]],[[-0.012834363617003,0.017490124329925,-0.0073978547006845],[-0.05015691369772,0.032844845205545,0.014896849170327],[-0.027311952784657,-0.0091760568320751,0.012431021779776]],[[0.0097773652523756,-0.014102905988693,-0.01146671269089],[0.035922396928072,-0.0027090949006379,0.023705221712589],[0.031958684325218,0.011738375760615,0.0028978097252548]],[[0.039169508963823,-0.014079720713198,-0.056274518370628],[0.023981085047126,0.0065175821073353,-0.018701389431953],[-0.064158909022808,0.014975840225816,0.10273495316505]],[[0.014575493521988,0.021371984854341,-0.076376304030418],[-0.0068042958155274,-0.032345175743103,-0.038365364074707],[-0.016758915036917,0.032896496355534,0.019103704020381]],[[0.085608087480068,0.017247069627047,-0.0045680585317314],[-0.034567467868328,-0.05168778821826,-0.065836660563946],[-0.035351596772671,0.026799432933331,0.0086928112432361]],[[0.054118029773235,0.043290726840496,-0.0038062965031713],[-0.019039096310735,0.024709057062864,-0.031047657132149],[-0.11775591224432,-0.078866571187973,-0.0060472693294287]],[[0.033925481140614,0.015888361260295,-0.036330059170723],[-0.017299178987741,0.01627934910357,0.019998800009489],[-0.028341906145215,-0.0079498337581754,-0.04792758077383]],[[0.025006134063005,0.011441865004599,-0.003536500968039],[-0.017339657992125,0.027913535013795,-0.005737901199609],[0.016604788601398,-0.044522076845169,-0.004717736504972]],[[0.019595572724938,-0.011599501594901,0.019421067088842],[0.066269114613533,0.01615584641695,0.019597051665187],[0.01332441624254,-0.035820946097374,0.033787157386541]],[[-0.041834570467472,0.0033816539216787,0.0058913691900671],[-0.056156557053328,-0.060484167188406,-0.039763435721397],[-0.014159932732582,0.036202110350132,-0.044891387224197]],[[-0.016817277297378,0.023655891418457,-0.034340143203735],[0.038987819105387,-0.0044547473080456,-0.020821783691645],[-0.014552571810782,0.017231974750757,-0.020468305796385]],[[0.038914047181606,-0.019315756857395,0.042941581457853],[0.0046859616413713,-0.0043677529320121,0.032254122197628],[-0.028778053820133,0.011721552349627,0.059377886354923]],[[0.072975434362888,-0.02133434638381,0.037807062268257],[0.033746019005775,-0.019889354705811,0.025659969076514],[0.036073755472898,-0.09139010310173,-0.022136252373457]],[[0.049102090299129,0.06513362377882,0.0023276819847524],[0.0017959396354854,0.021818779408932,0.00010776688577607],[0.043050102889538,0.091915383934975,0.021394543349743]],[[0.033578097820282,-0.039020955562592,0.020925533026457],[0.02333464846015,0.027451660484076,-0.014797716401517],[0.043890673667192,0.064147174358368,-0.059677645564079]],[[-0.0038240654394031,-0.022417895495892,-0.014637586660683],[0.0058613778091967,-3.3037904358935e-06,0.0042538279667497],[0.030319936573505,0.089057318866253,-0.015180982649326]],[[0.020417094230652,0.020791290327907,-0.0046454407274723],[0.018629973754287,-0.062901325523853,0.063292294740677],[0.011122005060315,0.01409291755408,-0.0075377528555691]],[[-0.028829708695412,-0.029308749362826,-0.05210031196475],[-0.016672728583217,0.0013851003022864,-0.065525949001312],[-0.045980732887983,-0.075277052819729,-0.068581894040108]],[[-0.095422700047493,-0.00028171163285151,-0.045535542070866],[0.037388049066067,-0.013636137358844,-0.0066035469062626],[0.00040264803101309,0.0063394196331501,0.019904201850295]],[[-0.034090403467417,-0.049248538911343,0.025169020518661],[-0.035053130239248,0.011702746152878,0.023383812978864],[-0.0083293542265892,-0.022239431738853,-0.0051764757372439]],[[-0.0099160922691226,0.020573327317834,-0.040973611176014],[0.01334682572633,0.017220880836248,-0.019003286957741],[0.00018872735381592,-0.03982512280345,-0.015734322369099]],[[-0.0036200315225869,-0.020404774695635,-0.027304816991091],[-0.025690618902445,0.034266520291567,-0.030445791780949],[-0.059637185186148,0.058239743113518,0.0057720090262592]],[[-0.037409253418446,-0.080942399799824,0.01110643427819],[-0.057494934648275,-0.036792621016502,0.069798678159714],[0.045349035412073,0.022324785590172,-0.055725436657667]],[[0.032723192125559,0.018530499190092,0.0011037944350392],[-0.018285246565938,-0.070345722138882,0.023795073851943],[-0.0015342601109296,0.03074293024838,0.047099601477385]],[[0.0087773008272052,-0.0083207730203867,0.0011040279641747],[-0.026130799204111,-0.047422081232071,0.059977225959301],[-0.026970278471708,-0.041876599192619,0.030692730098963]],[[-0.0016217506490648,0.0043469658121467,-0.02980182133615],[0.083154559135437,0.045003104954958,0.0045850998722017],[-0.051697224378586,-0.030093340203166,-0.0079639600589871]],[[0.0062850113026798,0.026725210249424,0.015463228337467],[-0.019032767042518,-0.096098072826862,0.014525771141052],[-0.092662125825882,0.040738541632891,0.011615619063377]],[[-0.019145039841533,0.016621973365545,0.00044483417877927],[-0.047164596617222,0.054402198642492,0.019752593711019],[-0.06297205388546,-0.0052397893741727,-0.0043213022872806]],[[0.017264103516936,-0.01073114015162,0.0055132461711764],[-0.036221362650394,0.0059869694523513,0.029401058331132],[0.0043466142378747,0.019558310508728,-0.049597065895796]],[[0.04535835981369,-0.0088909612968564,-0.021038996055722],[0.096378341317177,0.088000744581223,-0.0066868560388684],[-0.014773387461901,0.021773625165224,-0.012744380161166]],[[0.079984664916992,-0.037962347269058,0.042156554758549],[-0.080358274281025,-0.027174588292837,-0.0065578622743487],[-0.01021318230778,-0.034720219671726,-0.0021926134359092]],[[-0.026553919538856,-0.06966844201088,0.046074811369181],[0.066007666289806,-0.03611372038722,-0.021208574995399],[-0.04902096837759,0.018929993733764,0.066113315522671]],[[0.013116738758981,-0.07730233669281,-0.008730455301702],[-0.0034529468975961,-0.052910793572664,-0.02648519538343],[-0.013630375266075,0.010565687902272,0.0041412455029786]],[[-0.10530439019203,0.00025946029927582,-0.029816308990121],[-0.039572115987539,0.0021928711794317,-0.022863978520036],[-0.033952787518501,0.015658773481846,-0.02402563393116]],[[0.021406054496765,0.021284755319357,-0.0098821064457297],[0.0039289467968047,0.026723550632596,-0.068555727601051],[-0.0052845696918666,0.015310529619455,0.0046520982868969]],[[0.0016134401084855,-0.020521635189652,0.051099214702845],[0.0089632701128721,0.064629219472408,0.007515124976635],[0.043971598148346,-0.049573455005884,-0.025180591270328]],[[0.049669951200485,-0.05273512750864,0.074360936880112],[-0.012394558638334,0.026423634961247,-0.037464331835508],[0.026604164391756,-0.038303662091494,-0.016637075692415]],[[-0.019610814750195,-0.03698942065239,-0.0016389022348449],[0.0089799640700221,-0.016816053539515,-0.033254101872444],[-0.067574679851532,0.022689348086715,-0.010524292476475]],[[-0.010765552520752,-0.030317351222038,-0.012426674365997],[0.00046794477384537,0.011314039118588,0.019477143883705],[-0.043878760188818,0.037499081343412,-0.043275389820337]],[[0.0097819957882166,0.028280353173614,-0.014275772497058],[0.0085252588614821,0.0014943606220186,-0.012362881563604],[-0.016758948564529,0.0040359976701438,-0.01088809967041]],[[-0.041498832404613,-0.011390006169677,-0.042538963258266],[0.00035393063444644,0.012922984547913,-0.017481248825788],[-0.010546672157943,-0.0066009941510856,0.040858004242182]],[[0.034748274832964,-0.027634177356958,0.04010134935379],[-0.043575629591942,-0.062123242765665,0.011245703324676],[0.060235783457756,0.031968545168638,0.0059721060097218]],[[0.018858233466744,-0.018016569316387,-0.0087382942438126],[0.029924932867289,-0.015852456912398,-0.0029083907138556],[0.014733616262674,-0.028052683919668,0.016669681295753]],[[-0.010619906708598,0.00056024576770142,0.00068263203138486],[0.061223715543747,0.017794044688344,-0.005599326454103],[-0.090069562196732,0.034420683979988,0.016498811542988]],[[-0.033648919314146,0.0060916743241251,-0.078955605626106],[0.03561807051301,0.045081581920385,-0.026242697611451],[-0.00055330194300041,0.035120822489262,-0.021260065957904]],[[0.038115199655294,-0.028780162334442,0.01383475586772],[-0.0081022754311562,0.039288032799959,0.027494322508574],[-0.014150760136545,0.035421654582024,0.068097800016403]],[[-0.0033860811963677,0.063833318650723,0.042725626379251],[0.036326486617327,-0.061605740338564,-0.022234711796045],[0.005405236966908,0.045443419367075,-0.011024873703718]],[[-0.028004696592689,0.011382783763111,-0.012343447655439],[-0.033614549785852,-0.034145098179579,0.077353663742542],[-0.087999068200588,0.055356286466122,-0.021124752238393]],[[0.028073349967599,-0.072829559445381,0.017988512292504],[-0.025183856487274,-0.072754241526127,0.049375090748072],[0.0148004014045,-0.036306671798229,-0.036790169775486]],[[0.034719452261925,0.015958169475198,-0.045084193348885],[-0.017375454306602,-0.012089579366148,0.023347862064838],[0.024839758872986,-0.017272517085075,0.023054925724864]],[[-0.057661451399326,0.012184094637632,-0.017354404553771],[0.080480262637138,0.029370682314038,0.013734053820372],[-0.009858027100563,0.033747605979443,0.056439053267241]],[[0.048385988920927,-0.026928959414363,0.045392345637083],[-0.0019654727075249,0.0031626191921532,0.026442723348737],[-0.045458521693945,0.012821827083826,-0.0035213022492826]],[[-0.019212117418647,-0.0646688118577,-0.087612852454185],[-0.071684464812279,0.053836461156607,-0.0066716787405312],[-0.11451943963766,0.0098424777388573,-0.017767403274775]],[[-0.030412547290325,0.030474178493023,-0.02346976287663],[0.02346390299499,0.031921703368425,-0.034539215266705],[0.0028610120061785,-0.015346045605838,-0.013557830825448]],[[-0.022874658927321,-0.037587810307741,0.051839042454958],[0.094936653971672,-0.0074627124704421,-0.012626260519028],[0.030032193288207,0.03282568231225,-0.00096389761893079]],[[-0.0040347320027649,-0.045788872987032,-0.018659824505448],[0.016752546653152,-0.032083366066217,0.017023310065269],[-0.054203946143389,0.019987424835563,-0.0040165344253182]],[[-0.0024556207936257,0.043968297541142,-0.033160995692015],[-0.033935714513063,0.045381870120764,0.057494968175888],[0.0017343400977552,0.0081422682851553,0.025121334940195]],[[-0.023329662159085,0.060340531170368,-0.0079162288457155],[-0.004903550259769,0.0062673939391971,0.063347823917866],[-0.023404708132148,0.073170937597752,-0.031575802713633]],[[-0.033768981695175,0.0070018754340708,-0.0033020097762346],[-0.059250831604004,0.06057733297348,0.0093735381960869],[-0.0070361946709454,-0.071364939212799,-0.02789843082428]],[[0.022874822840095,-0.036758407950401,-0.048672925680876],[-0.031554266810417,-0.028923718258739,-0.029011251404881],[-0.039753690361977,-0.011926122941077,-0.018569363281131]],[[-0.029729498550296,0.057433549314737,-0.044293902814388],[-0.034276861697435,0.051129229366779,-0.029381383210421],[0.026074320077896,-0.017417728900909,-0.083699308335781]],[[0.037223242223263,-0.0085180755704641,0.0041913073509932],[-0.11619292199612,-0.05853945761919,0.045666057616472],[-0.0068187769502401,0.0030735833570361,-0.0078297071158886]],[[-0.006904877256602,0.0069034523330629,-0.0058072204701602],[0.028573401272297,0.083185657858849,0.09341798722744],[0.011177690699697,-0.033510014414787,-0.1518886089325]],[[0.014611820690334,-0.0080218426883221,-0.040812078863382],[0.017028419300914,-0.0060979132540524,0.045919857919216],[0.0011847676942125,0.014136014506221,0.077248521149158]],[[0.014270243234932,0.026821246370673,0.055086158216],[0.045182697474957,0.057771891355515,-0.069640293717384],[-0.027308721095324,-0.032354731112719,0.0014039821689948]],[[0.017218912020326,0.0079114492982626,0.052102975547314],[-0.026041548699141,-0.033251509070396,-0.010119086131454],[0.085186697542667,0.014058282598853,0.092107608914375]],[[0.027710136026144,-0.038477879017591,0.042655318975449],[-0.00405064644292,0.046116843819618,-0.0031838188879192],[-0.096389517188072,0.070930413901806,-0.03530940413475]],[[-0.040533948689699,-0.013152261264622,0.017344072461128],[-0.019467633217573,0.0025004793424159,0.055835627019405],[0.017818873748183,-0.057175636291504,-0.0011977270478383]],[[0.029687905684114,0.00028460170142353,0.06072735786438],[0.044339153915644,0.032024104148149,0.029388001188636],[-0.071364842355251,-0.018655592575669,0.032790515571833]],[[-0.06107796356082,-0.0067235683090985,0.012093369849026],[0.010269421152771,0.00405791727826,0.07200875878334],[-0.025857450440526,-0.024672573432326,0.026026651263237]],[[0.041490815579891,-0.039773870259523,0.009852428920567],[-0.026924885809422,0.011013387702405,0.02126532420516],[-0.10513914376497,0.0061727282591164,0.050884965807199]],[[-0.086724326014519,0.015288333408535,-0.10839596390724],[0.013380794785917,-0.052375804632902,-0.0095246201381087],[0.032233532518148,0.017129309475422,0.05002811178565]],[[0.047706443816423,0.062490858137608,0.019629266113043],[-0.049517173320055,-0.037949375808239,-0.035312943160534],[-0.12849271297455,-0.039456617087126,0.097867637872696]],[[-0.021741440519691,0.040096834301949,0.025260360911489],[0.037671536207199,-0.085386484861374,0.048981584608555],[-0.013629306107759,-0.074207976460457,-0.0008794481982477]],[[-0.06200297549367,0.04837978631258,-0.013002389110625],[-0.0026704561896622,-0.0011322813807055,0.068407997488976],[0.013461495749652,-0.025252735242248,0.020549723878503]],[[-0.027409402653575,-0.00059349555522203,0.011289270594716],[0.02300713956356,-0.077920377254486,-0.031662225723267],[0.0042323740199208,-0.0071354364044964,0.070840537548065]],[[-0.030363768339157,0.020970717072487,0.032294798642397],[-0.0037876735441387,0.027532374486327,-0.032702978700399],[-0.037889294326305,0.038996648043394,0.0089214676991105]],[[-0.015257312916219,0.0122897811234,0.01140543539077],[0.032685577869415,0.015529543161392,0.027946665883064],[0.014649114571512,-0.029933890327811,0.043431367725134]],[[-0.0015665119281039,0.055788785219193,-0.020594703033566],[-0.00027808925369754,-0.018154930323362,-0.082266286015511],[0.028732500970364,-0.017897086217999,-0.0020692138932645]],[[0.084648869931698,0.052091397345066,-0.010807577520609],[-0.019830340519547,-0.045400585979223,-0.025611221790314],[-0.0013295935932547,0.065240189433098,0.00092873210087419]],[[-0.06335823982954,-0.028498597443104,-0.03147316724062],[0.030937120318413,-0.013028123416007,-0.029340138658881],[-0.054004423320293,-0.014453943818808,-0.030067631974816]],[[-0.017728393897414,0.026392426341772,0.0067827850580215],[0.01815534196794,0.051100868731737,-0.021811593323946],[0.027324765920639,0.097292765974998,-0.062482491135597]],[[-0.0029238637071103,-0.0068730381317437,0.021468341350555],[0.052780654281378,0.036173943430185,-0.033434111624956],[0.038660481572151,-0.007638743147254,-0.012897823005915]],[[-0.050517451018095,0.0056773303076625,-0.007682082708925],[0.018788540735841,0.014390463940799,-0.0026777628809214],[0.02870867960155,0.026522053405643,-0.012535572983325]],[[-0.027854401618242,-0.065446063876152,-0.021311700344086],[-0.020497621968389,0.018853204324841,0.01244437135756],[-0.08950936794281,-0.022328604012728,0.055641863495111]],[[0.025292534381151,-0.010761821642518,0.022040821611881],[0.01393813919276,0.0019332715310156,-0.012464770115912],[-0.018901530653238,-0.029713317751884,-0.039413001388311]],[[-0.055518761277199,-0.013099351897836,0.043594654649496],[-0.011808187700808,-0.0021328695584089,0.068937122821808],[-0.040596831589937,0.0043064928613603,0.0096537414938211]],[[0.015012915246189,0.055999353528023,-0.089098334312439],[-0.0044698775745928,0.0080061256885529,0.0094984592869878],[-0.015575474128127,-0.012684657238424,-0.018110580742359]],[[0.022804981097579,-0.012154766358435,-0.00035147910239175],[0.039375830441713,-0.011197990737855,0.025442903861403],[-0.012202954851091,-0.051016915589571,0.023323113098741]],[[0.0083116870373487,-0.015024133957922,0.020683413371444],[-0.017871908843517,0.014973469078541,-0.032109417021275],[-0.036564629524946,-0.073629282414913,0.033536601811647]],[[-0.021694486960769,-0.05487996339798,0.0081267133355141],[-0.028147211298347,0.0081830061972141,0.082839623093605],[-0.029513090848923,0.020255142822862,0.02659197896719]],[[0.028590843081474,-0.038050372153521,0.030315903946757],[0.046062536537647,-0.05566319078207,0.026014562696218],[-0.060917537659407,-0.024317223578691,-0.015203368850052]],[[0.014207314699888,0.024873618036509,0.0079338448122144],[0.057730488479137,-0.078207992017269,0.017808839678764],[0.031590182334185,0.045431084930897,-0.005347206722945]],[[-0.014200329780579,-0.045604377985001,0.016997089609504],[-0.002803465584293,-0.034898985177279,0.043973799794912],[0.033447206020355,0.054126087576151,0.020351314917207]],[[0.031529381871223,-0.0067405384033918,0.013107359409332],[0.034119263291359,0.0072404518723488,0.050889614969492],[-0.016464097425342,-0.011589552275836,-0.0086306668817997]],[[-0.0016008603852242,-0.038691014051437,-0.040989644825459],[-0.049656741321087,-0.1246522217989,-0.0076422262936831],[-0.0020873686298728,-0.03283392265439,0.030077740550041]],[[0.00097056914819404,-0.023150308057666,0.037128046154976],[-0.0092066023498774,0.037278335541487,-0.0055040335282683],[-0.034416481852531,-0.047832790762186,-0.042286407202482]],[[-0.010207260027528,0.027968719601631,0.0041603064164519],[0.0067162322811782,0.019540004432201,-0.00074843870243058],[-0.026488449424505,-0.021879244595766,-0.017899682745337]],[[0.02907570451498,-0.013288697227836,0.01434881053865],[-0.062206074595451,0.069179020822048,0.023528851568699],[-0.11360964179039,-0.056053854525089,-0.041062261909246]],[[0.00074529577977955,0.035264533013105,0.0023169787600636],[0.067434348165989,-0.006059005856514,-0.061080262064934],[-0.031036263331771,0.04085511341691,-0.012707898393273]],[[0.014198279008269,0.0061327908188105,0.072089217603207],[0.04902858287096,0.0074611119925976,0.05928049236536],[0.012028461322188,-0.027496583759785,0.029429759830236]],[[-0.023715261369944,-0.048618044704199,0.069813527166843],[0.063563615083694,-0.045731157064438,-0.0059523996897042],[-0.028651043772697,-0.010443115606904,0.014486586675048]],[[-0.057062681764364,0.015615560114384,0.034850597381592],[0.0016469382680953,-0.023563070222735,0.023481300100684],[-0.027939096093178,0.00031050245161168,0.011755931191146]],[[0.014095381833613,-0.044155456125736,-0.028008785098791],[0.03677099198103,-0.034072779119015,-0.033398296684027],[0.026318466290832,-0.022588802501559,-0.035792842507362]],[[0.0053271758370101,-0.0025741271674633,-0.045259196311235],[-0.061413377523422,-0.082855105400085,-0.030965944752097],[-0.15929175913334,-0.11593379080296,-0.017820786684752]],[[0.022990759462118,-0.008607629686594,0.0035891977604479],[0.020621215924621,-0.0089904079213738,-0.053347453474998],[-0.046019360423088,-0.034592159092426,0.072746947407722]],[[-0.086272813379765,-0.05093277990818,-0.0024718607310206],[-0.009135514497757,-0.064432479441166,0.0053757140412927],[-0.026387736201286,0.010150534100831,-0.0414182767272]],[[-0.13237777352333,0.042074713855982,0.018774438649416],[-0.10002636164427,0.023071464151144,0.0043229917064309],[-0.025859840214252,0.062151581048965,0.01714088767767]],[[0.019257804378867,0.0187728703022,-0.014948379248381],[-0.067324131727219,-0.0017394977621734,-0.10944487899542],[0.034033171832561,-0.057300806045532,-0.029169924557209]],[[0.058488044887781,-0.0044369036331773,-0.020895160734653],[0.053630862385035,-9.4699698820477e-06,0.013494054786861],[-0.030780881643295,-0.049677360802889,-0.08145459741354]],[[0.044267073273659,0.033529054373503,-0.036116871982813],[-0.0079411957412958,-0.074257865548134,-0.011170005425811],[0.016474774107337,-0.022330036386847,-0.054674196988344]],[[-0.033681895583868,0.01068396307528,-0.031491223722696],[-0.0062166727147996,-0.027275513857603,-0.017805544659495],[0.011813620105386,-0.053667787462473,0.021494911983609]],[[0.037081256508827,-0.024759018793702,-0.010206536389887],[0.038561277091503,-0.00544094434008,0.0057534440420568],[0.036461047828197,-0.007141372654587,-0.0075464462861419]],[[0.018310435116291,-0.03555491194129,-0.065095290541649],[0.093160398304462,-0.0026847717817873,0.055228345096111],[-0.0063462220132351,-0.016026079654694,0.052368246018887]],[[-0.00065058830659837,0.012956640683115,0.016949281096458],[0.063433036208153,-0.03571580722928,0.046494923532009],[0.011775818653405,-0.0094397496432066,0.067619636654854]],[[-0.0049737035296857,0.005970187485218,-0.022900260984898],[0.014290473423898,0.086080573499203,-0.024353107437491],[-0.0022979436907917,0.072253167629242,-0.014666071161628]],[[0.00341513636522,0.047387003898621,0.020494390279055],[-0.019142046570778,0.10236228257418,0.025134403258562],[-0.0231718942523,0.0017528861062601,0.096599169075489]],[[0.00069251848617569,0.0075857345946133,-0.015853764489293],[0.02280168607831,-0.014041219837964,-0.017373947426677],[0.039678532630205,-0.054129626601934,-0.048630833625793]],[[-0.016278397291899,0.061073772609234,0.0058326139114797],[-0.013746335171163,0.092368304729462,-0.033754967153072],[-0.1037168353796,0.043401647359133,0.033180721104145]],[[0.018795674666762,-0.023690216243267,0.0052484828047454],[0.00092390296049416,-0.0061472184024751,-0.0078996745869517],[0.053065773099661,0.062336131930351,-0.040420398116112]],[[-0.0020948385354131,-0.026809530332685,-0.026082269847393],[0.0046873157843947,-0.071147851645947,-0.032365802675486],[0.034409694373608,-0.0050859581679106,-0.059075750410557]],[[-0.020202958956361,-0.022119667381048,-0.067628689110279],[0.028458742424846,0.034485444426537,-0.016917577013373],[-0.019299542531371,-0.044192310422659,-0.035547431558371]]],[[[-0.022690281271935,0.0070617478340864,0.0047127767466009],[0.028370739892125,0.033304065465927,-0.0095186093822122],[-0.063477285206318,-0.009173977188766,-0.075249090790749]],[[0.0076062185689807,0.061773329973221,0.045048579573631],[0.0099092843011022,-0.037494976073503,0.05729067325592],[-0.052157070487738,-0.028997542336583,-0.060708574950695]],[[-0.013452156446874,-0.0001302105083596,0.1078797057271],[-0.033953852951527,-0.0938840508461,-0.059022258967161],[-0.052516173571348,-0.053713615983725,0.014901704154909]],[[-0.0092869205400348,-0.017014916986227,0.050618216395378],[-0.023608330637217,-0.012814477086067,0.0047900737263262],[0.0017869959119707,-0.0099281594157219,-0.072130806744099]],[[-0.023321310058236,-0.050433680415154,0.037145730108023],[-0.054845001548529,-0.062021106481552,0.02399168163538],[-0.0029061795212328,0.030151832848787,-0.037509724497795]],[[0.017953772097826,0.022569969296455,0.0060833436436951],[-0.059950206428766,-0.0077766142785549,0.039112955331802],[-0.085207998752594,-0.0047393604181707,-0.012342342175543]],[[0.023475946858525,-0.030139748007059,-0.027876205742359],[0.014656695537269,0.024467268958688,0.061589919030666],[-0.069549076259136,0.018218455836177,0.045020755380392]],[[0.025903725996614,0.0085474792867899,-0.0048296898603439],[-0.0080872476100922,0.044802196323872,0.040873445570469],[-0.060521446168423,0.0091296434402466,-0.013970407657325]],[[-0.077540658414364,-0.068073250353336,0.049195725470781],[0.0022401921451092,-0.017379751428962,-0.02224281989038],[0.0016743026208133,0.036239448934793,-0.080969125032425]],[[0.011096253059804,0.019031025469303,-0.045933146029711],[-0.0069630644284189,0.0012204381637275,-0.0018037226982415],[0.0033717665355653,0.036552999168634,0.027244418859482]],[[0.03792741894722,0.10484034568071,0.010874486528337],[0.014781291596591,0.00077219132799655,0.025608163326979],[-0.016207251697779,-0.10439215600491,-0.0068221678957343]],[[0.034188311547041,0.0083618313074112,0.0036503146402538],[0.021516351029277,-0.082481428980827,-0.035271998494864],[-0.051244057714939,-3.517372533679e-05,0.038142260164022]],[[-0.012279731221497,-0.031070183962584,-0.0065149422734976],[0.022655621170998,-0.058853521943092,0.0094851469621062],[-0.005738609470427,0.044319100677967,-0.01728749461472]],[[-0.042846422642469,0.045793198049068,-0.045368116348982],[0.024445120245218,-0.063690386712551,-0.049002457410097],[-0.011210040189326,-0.033207565546036,-0.015810523182154]],[[0.03697345405817,-0.02649325504899,-0.0068051461130381],[-0.083214640617371,0.038780566304922,-0.067792139947414],[0.055548265576363,0.014022673480213,-0.024122674018145]],[[-0.0095535386353731,-0.005519503261894,-0.027113977819681],[0.032195702195168,0.048067688941956,0.044415466487408],[-0.039539955556393,0.013833498582244,0.028681652620435]],[[0.010937357321382,0.041798073798418,0.023653915151954],[0.070825360715389,-0.030501613393426,-0.042648412287235],[0.036203850060701,0.012188126333058,-0.045928921550512]],[[0.029789404943585,0.00309485103935,-0.042771629989147],[0.01210770662874,-0.047512367367744,-0.069728434085846],[-0.030714776366949,0.032669488340616,0.01028155721724]],[[0.079816497862339,0.004394169896841,0.0011782820802182],[-0.0091384183615446,-0.018304195255041,-0.0026846861001104],[0.0045420001260936,-0.030602768063545,0.028809905052185]],[[-0.015462584793568,-0.010282123461366,0.00050612818449736],[0.090035371482372,0.04244676977396,-0.010461535304785],[0.012355827726424,-0.018463110551238,-0.032534159719944]],[[-0.0034604743123055,0.013481875881553,-0.0058537982404232],[0.014322690665722,0.014587950892746,-0.09111949801445],[0.064168617129326,0.032687086611986,0.035858448594809]],[[0.060568194836378,-0.019514087587595,0.032335210591555],[0.0017865637782961,0.018014220520854,0.046509943902493],[-0.025022702291608,0.045692462474108,0.025018259882927]],[[-0.03146243840456,-0.018593035638332,0.025077352300286],[-0.003447653260082,0.028203019872308,0.049401309341192],[0.029474802315235,-0.0071310070343316,0.010016565211117]],[[0.0094665624201298,0.050771176815033,0.11149766296148],[-0.045012347400188,0.0069704367779195,0.041649423539639],[-0.086449421942234,-0.00068147206911817,-0.063266463577747]],[[-0.0066765644587576,-0.0012369278119877,0.082661099731922],[-0.016267506405711,-0.06542082875967,0.010441067628562],[0.043755788356066,-0.046278011053801,0.021056961268187]],[[0.073808915913105,0.013431029394269,0.058554425835609],[-0.034008227288723,0.024018283933401,0.080740854144096],[0.0035148782189935,0.015920760110021,-0.044813584536314]],[[-0.015873281285167,-0.021817721426487,-0.030243597924709],[-0.018456425517797,0.080658666789532,0.056254796683788],[-0.022952111437917,0.07825468480587,0.033501490950584]],[[0.010216145776212,-0.013666014187038,0.15025529265404],[0.0023670960217714,0.019298626109958,0.0091652171686292],[-0.00031120982021093,-0.0068999682553113,0.024401389062405]],[[0.01035036239773,-0.051343772560358,0.013747676275671],[-0.054760929197073,0.020046768710017,0.020385293290019],[-0.061490561813116,-0.093665882945061,0.1038501188159]],[[0.065654210746288,-0.024000059813261,-0.033398762345314],[0.0039411946199834,-0.073881775140762,-0.07048187404871],[-0.0033864935394377,0.055239610373974,-0.026408491656184]],[[-0.0046466337516904,-0.031178886070848,0.096539340913296],[-0.0029340796172619,0.0024204375222325,0.065485320985317],[-0.020958475768566,0.01148565672338,-0.021817313507199]],[[0.023326450958848,-0.0074954726733267,-0.049076851457357],[-0.053419314324856,0.021508691832423,0.070621021091938],[-0.054336126893759,0.037747636437416,0.061070658266544]],[[-0.0052221626974642,0.0026438103523105,0.073596268892288],[0.020917309448123,0.0097354929894209,0.0040402431041002],[0.02023901604116,0.044679515063763,-0.06418514996767]],[[0.050812777131796,-0.054285179823637,0.02991502918303],[0.014747388660908,0.00053919793572277,-0.033799469470978],[0.061618633568287,0.0099777588620782,-0.024097325280309]],[[-0.0071981213986874,-0.032406430691481,-0.0049963099882007],[0.034627914428711,0.055119503289461,0.010608407668769],[0.053362496197224,-0.025189697742462,0.032787777483463]],[[0.027317864820361,-0.02688030153513,0.011224606074393],[-0.074470929801464,-0.049504924565554,-0.040694646537304],[0.039143674075603,0.018836883828044,0.066323533654213]],[[-0.0076377638615668,0.075983472168446,-0.017374468967319],[0.010826638899744,-0.050810471177101,-0.02716863900423],[-0.018548056483269,-0.055107451975346,0.046793255954981]],[[0.035257082432508,-0.065476953983307,0.027722518891096],[0.010937014594674,0.0088423015549779,0.026518503203988],[0.024992948397994,-0.038723975419998,0.036888599395752]],[[-0.043920785188675,0.051302645355463,-0.022919736802578],[0.078956365585327,-0.070113554596901,0.025969531387091],[-0.045068453997374,-0.075466930866241,-0.011139877140522]],[[-0.052365239709616,0.073103941977024,-0.015030721202493],[0.031347025185823,0.048968583345413,-0.046523008495569],[0.018181713297963,0.08491325378418,-0.017355201765895]],[[0.0012018665438518,-0.013397760689259,-0.0011175837134942],[-0.016021590679884,0.01370248105377,0.054865263402462],[0.009843410924077,0.029740916565061,0.003767219837755]],[[-0.053211461752653,0.10377817600965,0.0021987902000546],[0.017442753538489,0.070802815258503,-0.0065146111883223],[-0.027725225314498,-0.031893346458673,-0.049671191722155]],[[0.025849062949419,0.029652958735824,-0.011058223433793],[-0.0005113193183206,-0.087644219398499,0.016754243522882],[0.04587334394455,0.015181720256805,-0.021246451884508]],[[0.044521532952785,-0.0066186049953103,-0.069714657962322],[-0.042089134454727,0.026802821084857,-0.024608682841063],[-0.020534662529826,0.001943722483702,-0.056386604905128]],[[0.022293865680695,-0.033526074141264,0.044928640127182],[0.019087094813585,0.016562921926379,0.036039583384991],[0.003704478032887,-0.04484398663044,0.048150554299355]],[[-0.0701003074646,-0.02330157160759,0.083413004875183],[0.026410793885589,0.006040520966053,-0.018341636285186],[-0.039086919277906,0.019829668104649,0.04584551602602]],[[-0.0089867832139134,-0.048030868172646,-0.024666277691722],[0.014247324317694,0.0148796280846,-0.016493847593665],[-0.015898583456874,-0.039538167417049,0.016901563853025]],[[0.0029253605753183,-0.040825057774782,0.011862155050039],[-0.064920090138912,-0.056366216391325,-0.032545190304518],[0.0026156888343394,-0.014288008213043,0.010468601249158]],[[0.0065083252266049,-0.071160763502121,-0.050367273390293],[0.023265764117241,-0.036438468843699,-0.074318662285805],[-0.060075595974922,0.012626629322767,0.007684491109103]],[[-0.023684721440077,0.014211231842637,0.0013052863068879],[0.017198715358973,0.044322494417429,0.066150240600109],[-0.027678431943059,-0.0062355371192098,-0.06062414124608]],[[0.047663077712059,-0.049217473715544,0.0051643499173224],[0.044029925018549,0.001944575458765,-0.10099827498198],[-0.036491576582193,0.00077135802712291,0.045671537518501]],[[0.026341918855906,-0.04139544442296,-0.015133775770664],[0.052444513887167,0.01730502769351,0.027559664100409],[0.030328910797834,0.0011542512802407,0.028575601056218]],[[0.061124041676521,-0.0085376007482409,0.017404779791832],[0.023155596107244,0.037765823304653,-0.082946792244911],[0.029150258749723,-0.066592007875443,-0.044004119932652]],[[-0.027223853394389,0.013507118448615,0.053663838654757],[-0.11077814549208,0.093048483133316,0.035426672548056],[-0.052894901484251,0.057111293077469,-0.084551684558392]],[[-0.01678116992116,-0.023567333817482,0.034136362373829],[0.031420882791281,-0.063398905098438,0.0051287356764078],[-0.022326236590743,0.058616664260626,-0.0059888395480812]],[[-0.038689862936735,-0.0030171575490385,-0.0031242882832885],[0.010301279835403,0.04448314383626,0.033682961016893],[0.027970844879746,0.006763297598809,-0.018664596602321]],[[0.0036489486228675,0.030699286609888,-0.039838813245296],[-0.041971743106842,-0.011518100276589,0.031469956040382],[0.038519211113453,-0.020930355414748,-0.035458318889141]],[[0.04717542976141,-0.0054145907051861,-0.044508822262287],[0.006491778884083,-0.051161833107471,0.010533626191318],[0.0061405496671796,-0.052886258810759,-0.030601156875491]],[[-0.039164710789919,0.023076755926013,0.037879399955273],[-0.022618997842073,-0.031386252492666,0.029175193980336],[0.071035273373127,0.0082190986722708,-0.052142277359962]],[[0.011982499621809,0.10966227948666,0.0062234764918685],[0.0035767229273915,0.07223978638649,-0.058309536427259],[-0.02667948231101,0.057398475706577,0.010591275058687]],[[0.068380072712898,0.068235345184803,-0.021146189421415],[0.0062399515882134,0.048980321735144,0.0057285679504275],[-0.011300917714834,-1.8014079614659e-05,-0.037062905728817]],[[-0.023766560479999,-0.072077296674252,-0.042031023651361],[0.0078645851463079,-0.055680867284536,-0.0054408698342741],[-0.021552124992013,-0.037991408258677,0.0092046586796641]],[[-0.066167443990707,0.035533241927624,-0.062197886407375],[-0.0086026014760137,-0.06014595925808,-0.036777127534151],[0.010170171968639,-0.017760924994946,-0.01811720058322]],[[-0.023618003353477,0.0091829216107726,0.020856058225036],[-0.0020642676390707,0.060762785375118,-0.074051901698112],[0.01245195325464,-0.015704847872257,-0.039545122534037]],[[-0.017793126404285,-0.0031166835688055,-0.02557030133903],[0.033334761857986,-0.013286233879626,0.018576145172119],[0.0099905906245112,0.06043990328908,-0.06113101541996]],[[-0.041381280869246,-0.014813823625445,0.072645358741283],[-0.074608184397221,0.017092121765018,-0.079017922282219],[0.041614223271608,0.0360320918262,-0.045719802379608]],[[-0.0018526420462877,-0.014890344813466,0.066164396703243],[0.04735879227519,-0.072698839008808,0.0061007915064692],[0.039917226880789,0.0031833811663091,-0.019097696989775]],[[0.072152733802795,0.055130589753389,0.031051645055413],[0.074701480567455,0.061995338648558,0.015714282169938],[0.054617542773485,-0.03061455488205,-0.0052186651155353]],[[0.012876160442829,0.032627660781145,-0.078537799417973],[-0.013634934090078,0.048726122826338,-0.038782186806202],[-0.073855899274349,-0.00045738558401354,-0.025223409757018]],[[0.10600847005844,0.027212264016271,0.019799310714006],[-0.018619708716869,-0.022522933781147,0.041545767337084],[0.08706583827734,-0.054765798151493,0.034314341843128]],[[0.012618098407984,0.011726112104952,0.0032996281515807],[-0.0027447070460767,0.069723732769489,0.033448077738285],[-0.024059625342488,0.023668708279729,0.0072043407708406]],[[0.018880734220147,-0.06655515730381,0.035708744078875],[-0.024784419685602,0.011182812973857,0.064950831234455],[-0.039275042712688,0.036962851881981,-0.087574496865273]],[[0.060222670435905,-0.049819801002741,0.023499816656113],[0.054655410349369,-0.061100400984287,0.0039894222281873],[-0.05345044657588,0.012042075395584,-0.029987318441272]],[[0.041569318622351,-0.051016636192799,0.027643498033285],[-0.016133861616254,0.029504626989365,0.069652788341045],[-0.01421307399869,-0.028288666158915,-0.05934476852417]],[[0.021740173920989,-0.0040324679575861,-0.030492752790451],[-0.022383572533727,0.0066296411678195,-0.0069225709885359],[0.012733788229525,0.041437808424234,0.066183649003506]],[[0.091692112386227,-0.033734392374754,-0.037567123770714],[0.037047475576401,0.0082350540906191,-0.015287100337446],[0.0047880536876619,0.0453583560884,-0.026174871250987]],[[-0.015767224133015,-0.017705617472529,-0.0030365874990821],[0.016177091747522,-0.062711633741856,-0.1166158169508],[-0.057821001857519,0.013760394416749,-0.020967287942767]],[[0.011137714609504,0.067153990268707,0.033093474805355],[0.026369873434305,-0.082697153091431,0.027671808376908],[-0.084761016070843,-0.015102511271834,-0.053929220885038]],[[-0.0026061302050948,0.046447191387415,-0.03898411989212],[-0.02094965800643,-0.0069789057597518,0.08188770711422],[0.034419894218445,0.024338647723198,0.0042062350548804]],[[-0.031907558441162,-0.032354027032852,-0.075930021703243],[-0.018349599093199,-0.063737474381924,-0.04346850886941],[0.042269520461559,0.10160601139069,-0.056394390761852]],[[0.031675178557634,-0.084764003753662,-0.076582327485085],[0.020327808335423,-0.013357485644519,0.00776979746297],[-0.081785343587399,0.064110100269318,0.039066307246685]],[[0.0076570007950068,0.011753177270293,-0.0031485666986555],[0.0029970232862979,0.0048904484137893,-0.053549163043499],[0.043649595230818,0.0026643446180969,0.054555054754019]],[[-0.0097340838983655,-0.010085152462125,-0.062129881232977],[0.0018781983526424,-0.078776016831398,-0.043462675064802],[-0.054218336939812,0.025947201997042,-0.001982505666092]],[[0.00066585338208824,-0.075716905295849,-0.011171441525221],[0.039403729140759,-0.025929933413863,0.074320003390312],[0.090831063687801,0.019721059128642,-0.036649368703365]],[[0.0011789853451774,0.081367433071136,0.068625055253506],[-0.036916974931955,0.028877949342132,0.050293475389481],[0.020486600697041,0.026391435414553,-0.022366492077708]],[[-0.0080723725259304,-0.10665635764599,-0.052926629781723],[0.041182395070791,-0.047622840851545,-0.018837232142687],[0.015451130457222,0.065188623964787,0.074769504368305]],[[0.015385184437037,-0.039551585912704,-0.054165154695511],[0.051324058324099,0.023156452924013,-0.074595421552658],[-0.0097804013639688,-0.0088131753727794,-0.019552439451218]],[[0.045006234198809,-0.04945395514369,0.054016586393118],[-0.034188345074654,-0.0072414185851812,-0.045071989297867],[0.007882515899837,0.056426141411066,0.0046237707138062]],[[0.087773814797401,-0.036033309996128,0.02038212120533],[0.064493745565414,-0.0080843726173043,-0.010659604333341],[-0.057632278650999,0.025254029780626,0.0054016169160604]],[[-0.036847531795502,-0.0079231606796384,-0.023789307102561],[-0.018752971664071,0.061229970306158,0.0062843295745552],[0.067987971007824,-0.011153198778629,0.040833249688148]],[[-0.020676909014583,0.017954433336854,-0.032036293298006],[0.030016079545021,-0.029942100867629,0.029010903090239],[-0.0014366901014,0.03200239688158,0.05252081528306]],[[-0.047179661691189,0.023394597694278,0.026914443820715],[-0.077240012586117,-0.0067701190710068,0.066406942903996],[-0.044372372329235,0.025811217725277,0.038213431835175]],[[0.047839120030403,0.051470551639795,-0.011411920189857],[-0.016581969335675,-0.011936691589653,0.013475587591529],[0.05211241170764,-0.044903561472893,-0.0026910610031337]],[[-0.032873377203941,0.0088509311899543,0.04911856725812],[0.079824924468994,0.026579782366753,-0.031603276729584],[-0.050784409046173,0.079592369496822,0.0042032841593027]],[[0.045423477888107,-0.069880843162537,-0.044147230684757],[-0.087641477584839,-0.025508334860206,-0.018269354477525],[0.054011557251215,0.057816728949547,0.0058042779564857]],[[-0.016256475821137,0.034245062619448,0.029561446979642],[-0.040472019463778,-0.037038691341877,0.026733445003629],[-0.071314185857773,-0.061819717288017,0.0019800900481641]],[[0.025618188083172,-0.0050831786356866,-0.069005034863949],[-0.087237671017647,0.034908480942249,0.022516364231706],[0.056759629398584,0.040479630231857,-0.037209697067738]],[[-0.045265760272741,0.080184124410152,-0.046842627227306],[-0.039718739688396,-0.025820896029472,0.0061408211477101],[-0.025601780042052,-0.032886609435081,-0.06677334010601]],[[0.038923792541027,-0.014816605485976,0.030823588371277],[-0.061718165874481,0.026534505188465,0.0028785190079361],[0.056041479110718,0.0019689137116075,-0.0042118104174733]],[[0.021558137610555,0.017933167517185,-0.065350331366062],[-0.041608177125454,-0.0088513055816293,0.015105190686882],[-0.00399931659922,-0.018877442926168,0.0091972751542926]],[[-0.037355370819569,-0.035127799957991,-0.023998672142625],[0.038691245019436,0.019995182752609,-0.0018568427767605],[-0.045518808066845,-0.031617406755686,0.023625450208783]],[[0.013724927790463,-0.018113536760211,0.050479624420404],[-0.032876491546631,-0.026057319715619,0.0064929774962366],[-0.024814693257213,4.3225802073721e-05,0.03385666012764]],[[0.0066332379356027,0.012145731598139,0.033783573657274],[-0.020873932167888,-0.055796016007662,0.036121744662523],[-0.022010555490851,-0.062319342046976,0.02820379845798]],[[0.035430699586868,-0.039658971130848,0.024382403120399],[-0.023464653640985,0.032751001417637,0.026650438085198],[-0.0021157434675843,-0.052303485572338,-0.017175020650029]],[[0.072312466800213,0.078431561589241,-0.043239135295153],[0.0051348777487874,-0.03515899553895,0.012475606054068],[0.024051925167441,-0.0024974357802421,-0.075621597468853]],[[0.043575823307037,0.04048814997077,0.0050617577508092],[-0.0040827235206962,-0.026205746456981,-0.016189778223634],[-0.033414267003536,-0.022772260010242,0.064203105866909]],[[-6.2116032495396e-06,0.0088398735970259,0.029987219721079],[0.0059526567347348,0.00010812615801115,-0.039748497307301],[0.051836546510458,0.011695140041411,0.037268068641424]],[[0.021579956635833,-0.0043335594236851,0.016192635521293],[-0.045883301645517,-0.043660886585712,-0.002879673615098],[0.088893823325634,0.015135392546654,-0.017788175493479]],[[-0.054992821067572,0.016758123412728,-0.05655849352479],[0.056712027639151,-0.035020899027586,0.00053413410205394],[0.03764209523797,0.031080162152648,-0.02840299718082]],[[0.058472145348787,-0.022865606471896,0.00020316080190241],[-0.0086888959631324,-0.054196428507566,0.034530069679022],[-0.066832527518272,0.010362640023232,0.028452413156629]],[[0.0047594229690731,0.038195468485355,-0.01749299839139],[0.0010620333487168,0.072515711188316,0.010105268098414],[0.027605472132564,0.099990181624889,-0.040385186672211]],[[-0.041598696261644,-0.0251330062747,-0.01908577978611],[-0.017052115872502,0.011191567406058,0.03130804002285],[0.0022320279385895,-0.022786371409893,0.027197813615203]],[[5.5757886002539e-05,-0.058579362928867,-0.0065967524424195],[0.069955475628376,0.067644782364368,0.048309210687876],[-0.019979173317552,0.050320398062468,-0.029919153079391]],[[0.0046854866668582,-0.014851167798042,0.033109698444605],[0.072104454040527,-0.020390456542373,-0.04204735904932],[0.007761103566736,0.01236133929342,-0.065501011908054]],[[0.053162205964327,0.023450223729014,0.010944874957204],[-0.039161667227745,0.056979328393936,-0.092822581529617],[-0.050595037639141,-0.06212604790926,0.0039017691742629]],[[0.014285304583609,0.01253396179527,-0.010445268824697],[-0.11602709442377,0.0068262950517237,-0.002148793078959],[0.033211696892977,-0.07130228728056,0.017187749966979]],[[-0.067282140254974,0.046971913427114,-0.079709313809872],[0.040158752351999,0.045425713062286,0.040214087814093],[0.000257042091107,-0.014656133949757,0.023111436516047]],[[-0.017517210915685,-0.039577096700668,0.018315684050322],[-0.012282892130315,0.019183401018381,-0.0028371207881719],[-0.068484626710415,0.067166030406952,0.019320512190461]],[[0.03506987541914,0.011416845954955,-0.057248517870903],[0.10534524172544,0.0011096651433036,-0.081701442599297],[-0.050343874841928,-0.021067036315799,-0.04756635427475]],[[-0.10851643979549,0.0098707852885127,-0.024239173159003],[0.0085304323583841,-0.10618549585342,0.072648033499718],[-0.097525209188461,0.019261153414845,0.066014863550663]],[[0.057967651635408,-0.020624103024602,-0.0071275918744504],[-0.024072464555502,-0.01927850022912,-0.010662885382771],[-0.027118911966681,-0.015962870791554,0.0057447580620646]],[[-0.040506847202778,0.040448918938637,0.022906389087439],[-0.025128873065114,-0.0089422091841698,0.034985888749361],[0.019209321588278,-0.020075239241123,-0.0059748431667686]],[[0.06817139685154,-0.036464516073465,-0.031149646267295],[0.0068496647290885,-0.023175477981567,-0.061265837401152],[-0.034320842474699,-0.021753584966063,0.04693429172039]],[[0.008887117728591,-0.089404672384262,0.032718613743782],[0.038466844707727,0.019305560737848,-0.037273425608873],[-0.0073186894878745,-0.067640021443367,0.022386882454157]],[[-0.05296416208148,-0.013243301771581,0.017743786796927],[-0.053458724170923,-0.016838166862726,-0.082547053694725],[-0.036644231528044,0.014762976206839,-0.065176270902157]],[[0.027604790404439,0.027239819988608,0.017827020958066],[0.035566981881857,0.010994585230947,-0.053439594805241],[-0.027493180707097,-0.032168593257666,-0.040336329489946]],[[0.017464833334088,0.021748043596745,0.012097216211259],[0.0022222811821848,0.0025650395546108,-0.0089762415736914],[-0.038124732673168,0.04244489222765,0.027423413470387]],[[0.036201450973749,0.035390291363001,-0.063738390803337],[0.00064819777617231,-0.022037256509066,0.053566806018353],[0.079871088266373,0.025446327403188,-0.09466540813446]]],[[[0.081018045544624,0.075535111129284,0.056541614234447],[-0.12152056396008,-0.072918199002743,0.078313082456589],[-0.28591924905777,0.022052731364965,0.12726885080338]],[[0.059329226613045,-0.061448007822037,-0.16872724890709],[-0.0304219648242,-0.099478207528591,-0.039057914167643],[-0.048915237188339,-0.05150955170393,0.066889561712742]],[[0.012856921181083,-0.044776052236557,0.024660315364599],[-0.066327087581158,-0.16706214845181,-0.022263009101152],[-0.13589285314083,-0.19569911062717,-0.093011423945427]],[[0.049047421664,-0.079451464116573,0.045380145311356],[-0.022999718785286,0.16255682706833,0.011674142442644],[-0.025711433961987,0.13200119137764,-0.0545938834548]],[[0.035119142383337,0.26871213316917,-0.25443679094315],[-0.088408447802067,0.13561192154884,-0.15060284733772],[0.14239791035652,0.16606937348843,-0.134556889534]],[[0.053875014185905,-0.051626566797495,-0.011895183473825],[0.099534496665001,-0.052457273006439,-0.16943711042404],[0.086550332605839,-0.13036707043648,-0.081291280686855]],[[0.025818960741162,0.078791782259941,-0.19424472749233],[0.12668681144714,-0.083015501499176,0.089998692274094],[0.027373360469937,0.035780906677246,-0.033715803176165]],[[-0.036888144910336,0.32099506258965,0.083560787141323],[0.13002145290375,0.052845243364573,0.043464750051498],[0.17376661300659,0.27008005976677,0.15923112630844]],[[-0.041373398154974,-0.13739119470119,-0.090848319232464],[0.00077540933853015,0.071600802242756,-0.072663687169552],[0.049722000956535,-0.025954194366932,-0.16189180314541]],[[0.058130450546741,-0.11655293405056,0.038071393966675],[-0.071729637682438,0.0036559535656124,-0.023447284474969],[-0.17233507335186,-0.0030304507818073,-0.065932892262936]],[[-0.035838562995195,0.027173912152648,-0.21848033368587],[0.046216949820518,0.089425064623356,-0.027421312406659],[0.1084263920784,0.11921021342278,0.066144622862339]],[[-0.15385176241398,0.2013421356678,0.017847122624516],[-0.077187456190586,0.093360461294651,-0.0028208643198013],[-0.14645318686962,-0.10416220128536,0.06305693089962]],[[0.041472479701042,0.047873456031084,-0.11969467252493],[0.025107316672802,0.032891888171434,-0.045501530170441],[-0.074023835361004,-0.028392404317856,-0.075251802802086]],[[0.10321294516325,-0.019923949614167,0.11558569222689],[-0.019278047606349,-0.35929131507874,0.14661966264248],[-0.039752840995789,-0.028259743005037,-0.1880070567131]],[[-0.038221869617701,-0.04193914309144,0.13733008503914],[0.060769531875849,0.029045650735497,-0.094818636775017],[-0.019914591684937,0.17427478730679,-0.00072120956610888]],[[0.093605861067772,-0.0082687456160784,-0.082215413451195],[-0.11562678962946,-0.032340582460165,-0.1249718144536],[-0.095727294683456,0.039266183972359,-0.11489416658878]],[[0.11272358894348,-0.14764440059662,0.0088840089738369],[0.11550930887461,0.095517739653587,0.12735207378864],[-0.00026961695402861,-0.11774422228336,0.024030098691583]],[[-0.12198749929667,-0.16696582734585,0.032004587352276],[0.11510213464499,-0.10726611316204,0.15805742144585],[0.33196130394936,0.0925547555089,-0.080332234501839]],[[0.062759473919868,0.0015558631857857,0.2081177085638],[-0.025739248842001,-0.028971051797271,0.0028611493762583],[0.052425164729357,-0.13239309191704,-0.052135951817036]],[[-0.13328111171722,-0.050874568521976,-0.010178444907069],[0.011085846461356,-0.060955468565226,0.083663746714592],[-0.10691556334496,-0.19025824964046,-0.03286886587739]],[[-0.044021189212799,0.063670560717583,-0.079334624111652],[-0.048577457666397,-0.067538656294346,-0.014355750754476],[-0.15467070043087,0.0046816770918667,-0.08704836666584]],[[0.074467428028584,-0.11805199831724,-0.0097325434908271],[0.07711423188448,0.15046218037605,0.13260355591774],[0.20715962350368,-0.1841212362051,-0.035808015614748]],[[0.014980169944465,0.18917240202427,-0.12355971336365],[-0.023955935612321,0.081650525331497,0.041852261871099],[0.039605308324099,0.056390635669231,-0.097162768244743]],[[-0.053599275648594,-0.059242196381092,-0.058473918586969],[0.010256594978273,-0.072292149066925,0.0058076293207705],[-0.061433579772711,0.092535741627216,-0.13334600627422]],[[-0.088875308632851,0.043312206864357,0.28680434823036],[0.01976397074759,0.13125415146351,0.23967128992081],[0.27762517333031,-0.11535943299532,-0.0042650466784835]],[[0.18923506140709,-0.11424537748098,-0.16575944423676],[0.11626493930817,-0.1360981464386,-0.098950944840908],[0.018702080473304,-0.026893295347691,-0.15369501709938]],[[-0.0638098269701,-0.15241208672523,-0.15085582435131],[-0.090416356921196,-0.048170439898968,0.13009829819202],[0.0016116218175739,-0.010717895813286,-0.1161010786891]],[[0.038562912493944,-0.0037322696298361,-0.090104714035988],[-0.028487164527178,0.042002201080322,-0.083944298326969],[-0.037457812577486,0.035057496279478,-0.10236325860023]],[[0.033502880483866,-0.030316511169076,-0.085731200873852],[0.013292114250362,0.13074937462807,0.080012209713459],[0.087192550301552,0.024860946461558,0.049818251281977]],[[-0.094925507903099,0.19130855798721,-0.058921780437231],[-0.053735230118036,0.29737129807472,-0.024629084393382],[0.12888868153095,0.017048859968781,-0.10730546712875]],[[0.12689052522182,0.024312181398273,-0.092832110822201],[0.031552243977785,-0.008772486820817,-0.023495230823755],[0.067078411579132,0.26522567868233,-0.025477726012468]],[[0.059686250984669,0.14682674407959,-0.1586299687624],[-0.017470005899668,0.029951259493828,0.067008063197136],[-0.050860099494457,-0.045431509613991,-0.050222367048264]],[[0.050799634307623,-0.0020574210211635,0.063164815306664],[0.013763116672635,-0.024433936923742,0.086464524269104],[-0.14005833864212,-0.010059100575745,-0.028021426871419]],[[-0.012828868813813,-0.014447495341301,0.051980767399073],[0.042223121970892,0.087914735078812,0.011164207011461],[0.086289077997208,0.10585466772318,-0.12154642492533]],[[-0.050551272928715,-0.14644023776054,-0.057879522442818],[0.015415962785482,-0.11136890202761,0.21317802369595],[-0.028934590518475,0.0080744093284011,0.12949785590172]],[[0.0029473740141839,-0.3136148750782,0.16123256087303],[-0.18072775006294,-0.065766237676144,0.1123218536377],[-0.13974864780903,-0.081287391483784,-0.064477175474167]],[[-0.13612611591816,0.044607929885387,0.123311676085],[0.014355955645442,-0.054676953703165,0.19186662137508],[-0.042588293552399,0.1286728233099,0.18565380573273]],[[-0.11666220426559,-0.021145490929484,0.26972860097885],[0.13294610381126,0.082921952009201,-0.017840107902884],[-0.015298690646887,-0.10154674202204,-0.12341565638781]],[[0.029908603057265,0.070354431867599,-0.15283006429672],[0.070803806185722,0.024444838985801,-0.13095243275166],[0.20805977284908,0.077283576130867,-0.10417138040066]],[[-0.095809392631054,0.10592016577721,0.036452598869801],[0.032708261162043,0.1612900942564,-0.084119752049446],[-0.14277110993862,0.035015396773815,0.021049516275525]],[[0.038718566298485,-0.066401213407516,0.07004527002573],[-0.024718603119254,-0.010346645489335,-0.066989123821259],[-0.035132803022861,0.057029888033867,-0.032571047544479]],[[0.071049489080906,0.043334741145372,-0.0088186413049698],[0.048803482204676,0.019848207011819,-0.1437640786171],[0.094779394567013,0.036261115223169,-0.11416818201542]],[[0.077891208231449,-0.085786670446396,0.25740963220596],[-0.0843291208148,0.066589586436749,-0.13013833761215],[0.10710058361292,-0.018667353317142,0.092062443494797]],[[0.013091539032757,0.037603944540024,-0.09224147349596],[0.028187794610858,0.02890644967556,-0.018556335940957],[0.040769591927528,0.023167172446847,0.0022025052458048]],[[0.00084566889563575,-0.11738606542349,-0.088804177939892],[-0.21841835975647,0.014114364981651,-0.088237427175045],[-0.055310055613518,0.044306211173534,-0.088499404489994]],[[0.076041162014008,0.056470707058907,0.10756623744965],[-0.002322010230273,0.1223012059927,-0.14341947436333],[0.096586257219315,0.01149626262486,-0.027339302003384]],[[-0.1338562220335,-0.20958761870861,0.32412034273148],[0.0097960736602545,0.16366946697235,0.028429312631488],[-0.062943212687969,0.1522071659565,-0.049783691763878]],[[-0.099193155765533,0.090896189212799,-0.1673341691494],[-0.081569857895374,-0.15902850031853,-0.023560721427202],[-0.013677580282092,-0.021611345931888,0.011319874785841]],[[0.012375993654132,0.08977647870779,0.029011435806751],[-0.031512681394815,0.010429888963699,0.085888221859932],[0.087150298058987,0.071388207376003,0.04363476485014]],[[-0.0078457091003656,0.098155200481415,0.079523734748363],[-0.056231286376715,0.159278601408,0.006785346660763],[-0.10375364869833,0.080880999565125,-0.11870770901442]],[[0.033751793205738,-0.044636346399784,0.036842424422503],[-0.069709837436676,-0.077209047973156,-0.11449139565229],[0.12085240334272,-0.030264833942056,-0.027871571481228]],[[-0.19040334224701,-0.14715884625912,-0.010950786061585],[-0.063901826739311,-0.18312045931816,0.060104891657829],[-0.13934816420078,-0.17129726707935,0.15571947395802]],[[0.17716687917709,-0.053083341568708,0.073431827127934],[0.021978659555316,-0.04832911118865,0.0056343581527472],[-0.013824632391334,-0.036703199148178,0.098374933004379]],[[0.23658174276352,0.15751546621323,-0.20232072472572],[0.085425980389118,0.12133085727692,-0.051951598376036],[0.069427981972694,-0.051629077643156,-0.080568671226501]],[[0.10700245946646,0.16369184851646,-0.038184080272913],[-0.044677656143904,-0.024601409211755,0.18244333565235],[-0.055119134485722,0.11571503430605,0.12015351653099]],[[0.010976963676512,-0.07657116651535,0.14336203038692],[0.0143520263955,-0.036626845598221,0.11405919492245],[-0.051526520401239,-0.13657896220684,0.0090033141896129]],[[-0.010129537433386,0.12642239034176,0.15208020806313],[0.19147928059101,0.013185883872211,-0.004985008854419],[-0.011072007007897,-0.03868168964982,0.30967012047768]],[[-0.12728831171989,0.0078135319054127,0.075157560408115],[-0.032012593001127,-0.019958429038525,0.077855013310909],[0.057490531355143,-0.096407368779182,-0.1717227101326]],[[-0.097008928656578,0.043229229748249,-0.057938072830439],[-0.083290480077267,0.20647563040257,0.013144104741514],[-0.10962896794081,-0.098327346146107,-0.05011485144496]],[[0.004395226482302,-0.1087648421526,0.0027095843106508],[0.063819065690041,-0.054041791707277,0.083422124385834],[-0.11119093745947,-0.022272266447544,0.039554912596941]],[[-0.081115677952766,-0.10454897582531,-0.06806705892086],[-0.25825920701027,-0.012741324491799,0.0096938805654645],[-0.040841661393642,0.010326842777431,0.044849637895823]],[[-0.0044076787307858,-0.0016378549626097,-0.042091522365808],[0.069439768791199,-0.16516903042793,0.29651334881783],[0.10905940830708,-0.0068876147270203,-0.05843348801136]],[[0.016302848234773,-0.080342769622803,0.095902636647224],[0.036265704780817,0.011503728106618,-0.096659898757935],[0.087200485169888,-0.16894072294235,-0.17267635464668]],[[-0.20963197946548,0.018043931573629,0.059524796903133],[-0.060015980154276,-0.018472451716661,0.16169604659081],[-0.035603050142527,-0.10211961716413,0.060027379542589]],[[0.065643586218357,0.055046178400517,-0.12817443907261],[-0.08864289522171,0.20164984464645,0.0052845641039312],[-0.068905003368855,0.23200836777687,-0.16165636479855]],[[0.045941393822432,-0.017232919111848,-0.00994389411062],[0.10477031767368,0.01005092728883,-0.0041893301531672],[0.10916176438332,0.11578619480133,-0.11590937525034]],[[-0.088886193931103,-0.0044888430275023,0.11186321824789],[0.013487435877323,-0.023351589217782,-0.035681936889887],[-0.037577915936708,0.15274646878242,-0.12077602744102]],[[0.0031023109331727,-0.037570618093014,0.15967701375484],[-0.064176104962826,0.01752402074635,0.11239392310381],[0.078581176698208,-0.053472805768251,0.077393777668476]],[[-0.019085317850113,0.085615180432796,-0.019756697118282],[0.1740777939558,-0.097399152815342,-0.20111918449402],[0.075434021651745,-0.061098076403141,0.022865045815706]],[[0.075854435563087,0.074108332395554,-0.22373682260513],[-0.07246657460928,0.029508247971535,-0.13556689023972],[0.025342112407088,0.08921156078577,-0.12914767861366]],[[0.13694183528423,0.04469957575202,0.0090905940160155],[0.0092853540554643,-0.02672079205513,0.022540153935552],[0.0092210536822677,0.072015479207039,0.071221001446247]],[[-0.099786624312401,-0.081564038991928,-0.16193597018719],[-0.089181713759899,-0.027880629524589,0.17977014183998],[-0.014108704403043,0.012316185981035,0.092102162539959]],[[0.11420756578445,0.16477887332439,-0.14398327469826],[0.29701885581017,0.0080332048237324,-0.076839402318001],[-0.003409223863855,0.19274780154228,-0.06231589987874]],[[-0.0043485523201525,-0.029813192784786,0.035147447139025],[0.13031452894211,0.065449982881546,0.058678202331066],[0.13304081559181,0.11726887524128,0.032078217715025]],[[-0.26169115304947,-0.026615127921104,0.22345969080925],[-0.029958879575133,0.11236175149679,-0.066692568361759],[0.14075772464275,-0.016476590186357,-0.10767807811499]],[[-0.099236287176609,0.16350056231022,-0.014536895789206],[-0.12523528933525,0.021959604695439,-0.015993606299162],[0.072845153510571,0.098635494709015,0.087198704481125]],[[0.024077108129859,0.17336194217205,-0.075089104473591],[0.13050130009651,0.031678695231676,-0.13151830434799],[-0.076921157538891,-0.13088497519493,-0.029240289703012]],[[-0.032331943511963,0.093071542680264,-0.059731408953667],[0.18553674221039,0.23378191888332,0.016629660502076],[0.29162737727165,-0.063389532268047,0.012447874061763]],[[-0.044371105730534,0.084290623664856,-0.003620668547228],[-0.066357977688313,0.170982375741,-0.030222278088331],[0.010100899264216,0.017991673201323,0.069423779845238]],[[0.001430754782632,0.074173897504807,0.02122001722455],[-0.084511771798134,-0.05702668428421,-0.0093277906998992],[-0.14218616485596,-0.012081494554877,0.029790975153446]],[[0.10704085975885,-0.077121049165726,0.0009507475188002],[-0.11518687009811,-0.043678965419531,0.13232751190662],[-0.11818018555641,-0.010253676213324,-0.15326462686062]],[[-0.042688634246588,-0.059656146913767,0.070453435182571],[0.10502427071333,-0.046907905489206,-0.06319921463728],[-0.28442081809044,-0.050763737410307,0.10737282782793]],[[0.088498890399933,-0.12802256643772,0.12695424258709],[-0.11597272008657,0.067658379673958,0.11931120604277],[0.056408766657114,0.17026689648628,-0.088795572519302]],[[-0.088086888194084,0.097207903862,-0.028297277167439],[0.0072040157392621,-0.049265049397945,0.056376531720161],[-0.082885675132275,0.14333528280258,0.090609289705753]],[[0.028692271560431,-0.015348457731307,-0.057145401835442],[-0.074690595269203,-0.026986895129085,0.029020071029663],[-0.10409948974848,-0.12702690064907,-0.018970772624016]],[[0.035918720066547,0.10928586125374,0.16538666188717],[0.019410824403167,0.0027397270314395,-0.13905391097069],[0.11559345573187,-0.1374274045229,-0.096546724438667]],[[-0.024624045938253,0.0055807582102716,0.22328655421734],[0.024054290726781,0.070572294294834,0.076082371175289],[0.11610294878483,-0.064092591404915,0.025420485064387]],[[0.13058660924435,-0.069488659501076,-0.036604177206755],[0.022242866456509,-0.13266478478909,0.13401651382446],[0.040492281317711,0.063060291111469,0.032447583973408]],[[0.050869226455688,0.065280400216579,-0.0071967896074057],[-0.066003315150738,0.032684743404388,-0.077487289905548],[0.031904142349958,0.1706862449646,0.011405744589865]],[[0.0098692551255226,-0.15573671460152,-0.086231991648674],[0.13155503571033,-0.09578125923872,-0.24302883446217],[-0.10047743469477,0.040482226759195,-0.071315862238407]],[[-0.012646548449993,-0.059188175946474,-0.13353669643402],[-0.0068745873868465,-0.010631427168846,-0.07449346780777],[0.072664819657803,0.21692961454391,-0.039622377604246]],[[-0.040438577532768,0.20591926574707,-0.0095911473035812],[-0.16466736793518,0.096552059054375,0.053539495915174],[0.018864471465349,0.10820183902979,0.079704649746418]],[[0.22219516336918,-0.10786162316799,-0.10072159022093],[0.020595282316208,-0.050461497157812,0.059648714959621],[-0.098533317446709,0.086163207888603,0.10519783943892]],[[-0.16762380301952,-0.046517305076122,0.02432276494801],[-0.02509668469429,0.12307021766901,0.022395186126232],[0.11024781316519,-0.042098835110664,-0.21942184865475]],[[-0.011430518701673,0.15068989992142,0.1283977329731],[-0.020146103575826,0.10906025022268,0.19473972916603],[0.012446398846805,0.097121842205524,0.046131264418364]],[[0.0027290626894683,0.02280193939805,0.056951262056828],[-0.19353184103966,0.016986332833767,-0.025175286456943],[-0.039746396243572,0.048728782683611,0.030898546800017]],[[-0.030050637200475,-0.053176108747721,0.029052333906293],[0.04844718053937,0.099139332771301,0.11006762832403],[0.0044905636459589,-0.13976019620895,-0.031845740973949]],[[-0.089584790170193,-0.0017677226569504,0.18616223335266],[0.056272607296705,0.045171774923801,0.17116548120975],[0.099215164780617,-0.11682902276516,0.17708379030228]],[[0.016661817207932,0.019427562132478,-0.039333932101727],[-0.0021933452226222,0.096140205860138,0.019711678847671],[0.048920154571533,-0.066689409315586,-0.21776229143143]],[[-0.14151060581207,0.10880414396524,-0.085143156349659],[0.26913014054298,-0.13357186317444,-0.03593871742487],[0.034951526671648,0.061278980225325,-0.12236990779638]],[[0.043676819652319,0.22083887457848,0.078452914953232],[-0.022577943280339,-0.070158608257771,-0.041004974395037],[-0.208022326231,-0.12259574979544,0.25570687651634]],[[0.047866992652416,0.16119940578938,-0.066204033792019],[-0.046634703874588,-0.056749522686005,-0.042222261428833],[-0.14839063584805,0.035257928073406,-0.06574123352766]],[[0.008963119238615,0.026782253757119,-0.05446270853281],[0.018947247415781,-0.081411793828011,0.021130112931132],[-0.18861925601959,-0.061423379927874,-0.051928225904703]],[[-0.13191431760788,-0.15768778324127,-0.0074242339469492],[-0.11558383703232,-0.049013238400221,-0.0025963489897549],[-0.10019694268703,0.027393709868193,-0.11017445474863]],[[-0.045447245240211,0.10583908855915,-0.077511474490166],[0.096086055040359,0.043951418250799,-0.068843975663185],[-0.11889426410198,-0.11698616296053,-0.071079574525356]],[[0.14336623251438,-0.0049824668094516,0.22356973588467],[0.11899723112583,0.13811220228672,0.045842260122299],[-0.016863819211721,-0.12187649309635,-0.035382580012083]],[[0.042124733328819,0.050589505583048,0.16868463158607],[0.030382234603167,-0.073274292051792,-0.024253949522972],[0.081847675144672,-0.14306533336639,-0.038044437766075]],[[0.055196937173605,-0.052974309772253,0.21039262413979],[0.086032390594482,0.10134409368038,0.053120899945498],[0.054415069520473,0.025539357215166,0.020262073725462]],[[-0.11423744261265,0.03261535987258,-0.059743169695139],[0.0057111755013466,-0.015717580914497,-0.018112257122993],[0.082675583660603,0.10481734573841,0.130330696702]],[[-0.016598764806986,-0.029900984838605,-0.048513226211071],[-0.000998146366328,0.043098602443933,-0.00045007324661128],[0.057262487709522,0.022704608738422,0.049372728914022]],[[0.036026332527399,0.0020286112558097,0.003812741721049],[0.0089752385392785,0.098926775157452,-0.028028000146151],[-0.042561911046505,0.034759912639856,-0.095869570970535]],[[0.0061259889043868,0.14800497889519,0.064627394080162],[-0.029402690008283,0.099917136132717,0.072631135582924],[-0.0093741929158568,0.069697640836239,-0.20035387575626]],[[-0.033193215727806,0.1756450086832,-0.0051434277556837],[-0.058847993612289,0.10832614451647,-0.23733013868332],[-0.13385611772537,-0.087980821728706,-0.082117758691311]],[[0.11602025479078,-0.094206251204014,0.027265124022961],[-0.10400947928429,0.043083362281322,0.043637551367283],[-0.040693357586861,-0.030063753947616,-0.091333888471127]],[[-0.094473086297512,-0.00084639235865325,0.059766750782728],[0.038258332759142,0.057511106133461,0.103535823524],[-0.10486813634634,0.08418670296669,0.1553180962801]],[[-0.096451558172703,-0.085796825587749,0.0023166453465819],[0.054916672408581,0.068960636854172,0.0053033363074064],[-0.025638492777944,0.019879061728716,0.054641734808683]],[[-0.036256827414036,-0.14079035818577,0.030739827081561],[-0.092545568943024,-0.01171297300607,-0.11556361615658],[-0.077360190451145,-0.062429212033749,-0.23523785173893]],[[0.0060218391008675,0.030642602592707,0.086639314889908],[0.074220731854439,0.079536400735378,-0.10103783756495],[-0.066137418150902,-0.015243332833052,0.13694863021374]],[[-0.047348529100418,-0.20704925060272,-0.030505135655403],[-0.10194676369429,-0.0229771155864,-0.089185036718845],[-0.068516813218594,0.040947943925858,0.021548734977841]],[[-0.02822489105165,-0.039884563535452,0.032652739435434],[-0.060094829648733,0.09624756872654,-0.038346815854311],[0.054221216589212,-0.044124253094196,0.0013236727099866]],[[0.0047285044565797,-0.001587848062627,-0.03048687800765],[0.10474313050508,-0.040371172130108,-0.11031565070152],[0.035206560045481,0.038549412041903,-0.11523162573576]],[[0.035170428454876,-0.10839660465717,-0.13651266694069],[-0.018255809322,-0.14124368131161,-0.013809448108077],[-0.14669105410576,0.09595613181591,-0.12873503565788]],[[-0.20299361646175,-0.15181446075439,-0.031442064791918],[-0.092351637780666,0.028585372492671,-0.083632193505764],[-0.10352995991707,-0.10958668589592,-0.1502755433321]],[[0.084969572722912,0.060633666813374,-0.027287770062685],[-0.041151266545057,0.1049000993371,-0.10364014655352],[0.076014436781406,0.1080823764205,0.070151604712009]],[[0.018484788015485,-0.015331245027483,0.057402048259974],[0.099577084183693,-0.030058246105909,-0.084811314940453],[0.013737319037318,-0.014632410369813,0.045184165239334]],[[0.075030066072941,0.17714589834213,-0.074174076318741],[0.16986827552319,-0.097479477524757,-0.0081345643848181],[-0.077440090477467,0.0097035448998213,0.12472688406706]],[[0.026270883157849,-0.087142795324326,-0.1174728050828],[0.030146757140756,-0.062273982912302,-0.023727901279926],[0.081202246248722,-0.025747179985046,-0.10446182638407]],[[-0.016507724300027,-0.16890500485897,-0.04395791888237],[0.011712913401425,0.08554083108902,-0.035812880843878],[-0.11228485405445,-0.012772434391081,-0.051156792789698]]],[[[-0.029243739321828,0.065938048064709,-0.080627076327801],[0.069288067519665,-0.016771778464317,0.023935547098517],[-0.0032544452697039,0.030970472842455,0.10157912969589]],[[0.021676430478692,-0.058862634003162,-0.10608441382647],[-0.039311811327934,0.0018328134901822,0.034428611397743],[0.051573649048805,0.011384515091777,-0.0025796666741371]],[[-0.045943357050419,-0.021992085501552,-0.055436186492443],[-0.017770083621144,0.013508406467736,0.0046445010229945],[-0.085315689444542,-0.0030316871125251,-0.019219297915697]],[[0.011161280795932,-0.023067923262715,0.0018580337055027],[-0.052339974790812,0.049989584833384,-0.020078292116523],[0.020710159093142,-0.0041035627946258,0.066267512738705]],[[-0.061276018619537,0.054755479097366,0.011889680288732],[-0.022989405319095,0.023910399526358,-0.034222569316626],[-0.073623903095722,-0.077248826622963,-0.0088039701804519]],[[-0.013611998409033,0.000869462674018,0.061883334070444],[-0.007237893063575,-0.031387913972139,-0.067763179540634],[0.061617229133844,0.0077589228749275,0.033161211758852]],[[0.025833398103714,0.021282758563757,0.037672605365515],[0.0016266223974526,0.021507434546947,-0.019236501306295],[0.023013880476356,-0.055840373039246,0.0003637584450189]],[[-0.04002345725894,-0.0042799222283065,0.095371775329113],[0.13033954799175,0.034742463380098,0.11330227553844],[-0.011156817898154,-0.016668882220984,-0.029142348095775]],[[-0.0073824808932841,-0.069925844669342,-0.013253444805741],[-0.0062415166758001,0.0051312614232302,0.0036736796610057],[0.009969144128263,0.0011801823275164,0.020050780847669]],[[0.02477989718318,0.014515322633088,0.045570883899927],[0.009652771987021,-0.057387184351683,0.051691722124815],[-0.009209263138473,-0.015756394714117,0.0083511443808675]],[[-0.0044767474755645,0.05318271741271,-0.028919314965606],[-0.14333771169186,-0.093100979924202,-0.01201790664345],[0.032838221639395,0.050941914319992,0.012180771678686]],[[-0.026780592277646,-0.078218072652817,0.044673096388578],[0.014688334427774,0.021784650161862,-0.056000724434853],[-0.00091615377459675,0.012617059983313,0.053217943757772]],[[0.035512197762728,-0.035696730017662,-0.02239690348506],[0.038183249533176,0.066196456551552,0.0082352589815855],[-0.048476967960596,0.016800658777356,-0.037976678460836]],[[-0.022356674075127,0.016269009560347,0.0063289967365563],[0.019831458106637,0.0086934696882963,0.0032868580892682],[0.057077433913946,-0.036952905356884,0.0036344930995256]],[[0.011555506847799,-0.087872505187988,-0.016955528408289],[0.047424729913473,-0.015137466602027,-0.015744157135487],[-0.03214942663908,-0.043575152754784,0.0032614960800856]],[[-0.02949870750308,-0.046379871666431,-0.073680877685547],[-0.0023689172230661,-0.022020941600204,0.028202868998051],[0.022586921229959,-0.017925618216395,-0.059164676815271]],[[-0.0054601826705039,0.082856327295303,0.028332838788629],[-0.012307170778513,-0.026617608964443,0.0014166809851304],[0.040393952280283,-0.00026324644568376,0.045231811702251]],[[-0.023366820067167,-0.037398543208838,-0.095655232667923],[-0.061680238693953,-0.03442482277751,-0.046511285007],[0.011664907447994,0.023816151544452,0.019297540187836]],[[0.068436600267887,-0.010139649733901,-0.056184288114309],[-0.023873154073954,-0.021508917212486,-0.0025896513834596],[0.0034264295827597,0.0043909437954426,0.056854449212551]],[[-0.0036174559500068,-0.029544565826654,0.059975735843182],[-0.00083884631749243,0.026479460299015,-0.014713721349835],[-0.0059592588804662,0.04227178171277,0.10446680337191]],[[-0.020014086738229,0.021629141643643,0.010068641975522],[0.041763603687286,-0.018023500218987,-0.035927105695009],[-0.10557429492474,-0.00084293511463329,-0.081332184374332]],[[0.029650835320354,0.014994904398918,0.037407100200653],[0.056638833135366,-0.036642894148827,0.046075873076916],[0.021639809012413,0.018952790647745,-0.070140324532986]],[[-0.061110492795706,-0.073138572275639,0.024026310071349],[0.043074488639832,0.031614929437637,0.043981410562992],[0.036973431706429,-0.074471086263657,0.053362958133221]],[[0.0024127804208547,-0.027257895097136,-0.0052264640107751],[0.05899403244257,-0.035299375653267,0.018957952037454],[0.011149973608553,-0.0052557568997145,-0.067572802305222]],[[0.063685551285744,0.0078776758164167,0.014673355966806],[-0.039846286177635,-0.073028720915318,0.011438910849392],[0.033166665583849,0.011999068781734,-0.055651593953371]],[[-0.0054414989426732,-0.011669787578285,-0.042838145047426],[-0.048177421092987,-0.011882507242262,-0.043125439435244],[0.010253455489874,0.029533563181758,-0.04159514978528]],[[-0.064647890627384,0.038156345486641,0.097502686083317],[-0.011208796873689,0.032554488629103,0.012523478828371],[0.080332584679127,-0.06034954637289,-0.046814288944006]],[[0.026096429675817,0.014089802280068,-0.008408272638917],[0.018855882808566,0.088351428508759,-0.014887222088873],[0.054244317114353,-0.024386130273342,0.024659488350153]],[[0.08582815527916,0.045506928116083,-0.065058261156082],[0.068326808512211,0.0314707942307,0.012106434442103],[-0.0679697021842,-0.013218576088548,-0.036697041243315]],[[0.010805185884237,-0.034432407468557,0.04343668743968],[-0.043726548552513,-0.065165087580681,-0.068610586225986],[-0.020944079384208,0.028961520642042,0.023195503279567]],[[0.042449217289686,-0.0059453104622662,0.060813304036856],[0.010988423600793,0.041683211922646,0.016975620761514],[0.069239117205143,0.044956002384424,-0.0081010228022933]],[[0.029839986935258,-0.000621335755568,0.072985023260117],[0.020379321649671,0.012763176113367,0.019223826006055],[-0.016022859141231,0.055066641420126,-0.079565517604351]],[[0.033982966095209,0.048958901315928,0.0016912082210183],[0.019440416246653,0.082355409860611,0.036874782294035],[0.02216562256217,-0.028079118579626,0.052453853189945]],[[-0.028085732832551,0.029242629185319,0.029972214251757],[-0.026444116607308,0.010976225137711,0.033649045974016],[-0.0035852717701346,0.034652125090361,0.060269463807344]],[[0.074885308742523,0.0011129754129797,0.062582656741142],[0.033363524824381,-0.0066140741109848,-0.018155515193939],[0.0081152794882655,-0.062157183885574,-0.13919325172901]],[[-0.015846159309149,0.024608042091131,-0.021143579855561],[-0.039379641413689,-0.087927229702473,-0.019276849925518],[-0.047040913254023,0.03549075871706,0.021402675658464]],[[-0.026309845969081,0.035911504179239,0.040084134787321],[0.076780714094639,0.037886921316385,-0.047807361930609],[0.020369945093989,0.096572004258633,0.053006362169981]],[[0.028122132644057,-0.00065336271654814,0.0096238506957889],[0.041008852422237,-0.030838035047054,-0.023900864645839],[-0.051427364349365,-0.074137724936008,-0.063197053968906]],[[0.0030090622603893,-0.08069708943367,-0.091601505875587],[-0.014580662362278,0.031319253146648,-0.041603960096836],[0.033837586641312,0.029898535460234,-0.0064201350323856]],[[0.0044975425116718,0.0028609889559448,-0.035714957863092],[-0.0042012417688966,0.036077350378036,0.061912100762129],[-0.013332395814359,0.014052911661565,-0.041545331478119]],[[-0.064583152532578,-0.0096309343352914,-0.087100885808468],[0.058429941534996,0.055378902703524,-0.013506171293557],[-0.026255235075951,0.036642499268055,0.039103515446186]],[[0.0098861623555422,0.028924703598022,0.04005554318428],[0.070112995803356,-0.017876010388136,0.044357564300299],[0.06970851123333,0.0063310959376395,0.028213886544108]],[[0.06569454818964,0.021040113642812,0.027588909491897],[0.070809662342072,0.054167620837688,0.067380152642727],[-0.036176882684231,0.059832096099854,0.05523943156004]],[[-0.0042545576579869,-0.042844228446484,0.073258966207504],[-0.072403237223625,-0.058381430804729,0.025561168789864],[-0.003484919667244,0.056112792342901,0.043147828429937]],[[0.0841930732131,0.028244080021977,-0.021668247878551],[0.057236194610596,0.08959287405014,0.099780112504959],[-0.035943038761616,-0.0281370151788,0.067311994731426]],[[0.077552631497383,0.074320435523987,-0.021693013608456],[0.051322098821402,-0.051430061459541,0.12084897607565],[0.044969100505114,0.088001251220703,0.00053214957006276]],[[0.033044774085283,-0.012665879912674,0.012839407660067],[-0.032663352787495,0.052591122686863,-0.026371883228421],[-0.050955597311258,-0.058823172003031,0.034947153180838]],[[-0.0021722672972828,-0.087534330785275,-0.049461551010609],[-0.039780583232641,-0.072630241513252,-0.03662072122097],[-0.033587291836739,-0.071840234100819,-0.043627817183733]],[[-0.0085458867251873,-0.042044293135405,0.044472150504589],[-0.062193766236305,0.032241400331259,0.027146546170115],[-0.050633169710636,-0.0069554368965328,-0.050124831497669]],[[-0.14429026842117,-0.053013533353806,-0.013102634809911],[0.025852968916297,0.0049137552268803,-0.064830221235752],[0.021169247105718,0.030280055478215,-0.096963167190552]],[[-0.0053587909787893,0.004873750731349,0.018827667459846],[-0.039340250194073,-0.027235897257924,-0.038186758756638],[-0.070618040859699,-0.019198974594474,-0.013794131577015]],[[-0.017681464552879,0.016064522787929,0.037193112075329],[-0.018968440592289,-0.065184213221073,0.042112004011869],[0.063470587134361,-0.029699450358748,0.097754344344139]],[[-0.021945215761662,-0.014795484952629,0.00062932807486504],[0.019908482208848,-0.013085244223475,-0.015445763245225],[0.018606698140502,0.0034964461810887,0.099368959665298]],[[0.086198881268501,-0.015795251354575,-0.0077926157973707],[0.015129845589399,-0.042759962379932,0.084415726363659],[0.029436243698001,-0.033404510468245,-0.034786231815815]],[[0.081944346427917,0.0026242875028402,0.047667376697063],[0.07534921169281,0.019759748131037,-0.022167889401317],[0.030946565791965,0.02133877389133,0.079385697841644]],[[0.026598835363984,-0.04249019920826,-0.0014058910310268],[-0.03399833291769,-0.044530011713505,0.042568076401949],[-0.10784648358822,0.048860497772694,-0.07727687805891]],[[0.012437474913895,0.0086450045928359,0.0026849922724068],[0.02359070815146,0.068155989050865,0.041993413120508],[0.05150181800127,-0.0073806140571833,0.0090442430227995]],[[0.10323082655668,-0.044517293572426,0.06407380849123],[-0.0026469528675079,-0.0067488928325474,0.042299050837755],[-0.027334839105606,-0.088282629847527,0.02204385958612]],[[0.04599392414093,-0.045625187456608,-0.05551490560174],[-0.033085968345404,0.028781451284885,-0.054839063435793],[0.019255327060819,0.11604051291943,0.033249709755182]],[[-0.017915088683367,0.034182775765657,-0.007930819876492],[0.014367070049047,0.037561275064945,-0.02627575583756],[0.12003793567419,0.0012371898628771,0.068193487823009]],[[0.033568479120731,-0.097658634185791,0.051898438483477],[-0.034260123968124,-0.068861313164234,0.0555634573102],[-0.066772773861885,0.037568960338831,0.11652754992247]],[[-0.033346395939589,-0.082429341971874,-0.02937575429678],[-0.030130220577121,-0.066216364502907,-0.039144117385149],[-0.062931403517723,-0.0088257743045688,0.0091229295358062]],[[0.027823571115732,-0.024498960003257,0.092522040009499],[0.01389466971159,0.022521715611219,-0.021187949925661],[-0.031270917505026,0.094048120081425,0.089373879134655]],[[0.040339894592762,0.046796690672636,-0.031435821205378],[0.030870322138071,-0.00035341293551028,0.039990901947021],[0.027382032945752,0.013021777383983,0.056922107934952]],[[-0.030953861773014,-0.057970102876425,0.018295258283615],[-0.027878256514668,-0.0041119186207652,-0.052142892032862],[0.014416428282857,0.031096156686544,0.11423810571432]],[[0.062290661036968,-0.0019027524394915,0.047148436307907],[0.036988560110331,0.04259904101491,-0.03364185616374],[0.12148788571358,-0.038934160023928,-0.033855136483908]],[[-0.030692558735609,0.017644410952926,-0.027800627052784],[0.032585605978966,0.062105420976877,0.0064008445478976],[0.0013851046096534,0.053048901259899,-0.018293257802725]],[[0.0023801908828318,0.066748663783073,-0.010644317604601],[0.027361599728465,-0.016958728432655,0.014809165149927],[-0.00020462844986469,-0.058599546551704,0.061734598129988]],[[0.13942475616932,0.0037942246999592,0.0084033533930779],[-0.051512155681849,0.042738750576973,0.0050595449283719],[0.043647911399603,0.042947594076395,-0.010123564861715]],[[0.034143324941397,-0.06277384608984,-0.033365707844496],[0.054722033441067,0.036094307899475,0.010890368372202],[0.010248589329422,0.085115760564804,0.040889371186495]],[[0.093071483075619,0.012215751223266,-0.025384787470102],[-0.065135546028614,0.083933636546135,0.072769187390804],[0.10045959800482,-0.0015814473154023,-0.032349538058043]],[[0.053160641342402,-0.014095226302743,0.090361699461937],[0.026231622323394,0.013520188629627,-0.086377590894699],[-0.039222415536642,0.035840835422277,0.018546838313341]],[[-0.046900104731321,0.038081541657448,-0.024513784796],[-0.010781338438392,-0.025112893432379,-0.014523422345519],[0.025195084512234,-0.0294503942132,-0.043691091239452]],[[0.01722170598805,0.036240484565496,-0.044433835893869],[0.033893767744303,0.022660609334707,0.060453590005636],[0.037499696016312,-0.013875374570489,0.038708321750164]],[[0.068308979272842,0.027632741257548,0.019724616780877],[-0.0096386326476932,0.021470768377185,-0.02881838940084],[-0.0028003354091197,0.023626931011677,-0.082448065280914]],[[0.039780009537935,-0.025131685659289,-0.037145681679249],[0.0025289964396507,-0.04013105481863,0.045200414955616],[0.069310426712036,0.0035234799142927,-0.015397634357214]],[[-0.045279081910849,-0.019191851839423,0.0020384828094393],[-0.046504039317369,0.030241627246141,-0.043295580893755],[-0.032367985695601,-0.01651444658637,0.0097668953239918]],[[0.10323169827461,0.072007797658443,0.11274457722902],[0.010873474180698,0.016230138018727,0.056767366826534],[-0.0021158652380109,-0.08896816521883,0.0018407580209896]],[[0.041486315429211,-0.0053264084272087,-0.018506120890379],[-0.043191030621529,-0.0062165167182684,-0.031745243817568],[0.0059488536790013,0.053615063428879,0.047956805676222]],[[-0.032607786357403,0.016644651070237,-0.022211454808712],[-0.038835126906633,0.015815841034055,-0.078532122075558],[-0.035657159984112,-0.06304245442152,0.052007179707289]],[[-0.0099596697837114,-0.016259122639894,0.068718418478966],[0.016285924240947,-0.094675846397877,-0.023431770503521],[0.012983463704586,-0.031666062772274,0.025415934622288]],[[0.0010669267503545,0.080766879022121,0.021039424464107],[-0.01517491787672,0.038210146129131,5.2325682190713e-05],[0.016853280365467,-0.0085412403568625,0.073496364057064]],[[0.048008318990469,0.019418260082603,-0.078460037708282],[0.018736971542239,0.026586091145873,-0.018860936164856],[0.097892820835114,0.027543127536774,0.020942835137248]],[[0.086077377200127,-0.014365302398801,0.0016180922975764],[0.027308685705066,0.062077078968287,-0.064567193388939],[0.015276959165931,0.028119582682848,0.034095842391253]],[[-0.0084045231342316,-0.044214423745871,0.061264116317034],[0.0068963998928666,0.050216522067785,-0.023587493225932],[0.015664821490645,0.0015480133006349,-0.0033819847740233]],[[0.062293358147144,0.0058044362813234,0.11366498470306],[-0.05648048222065,0.05511213093996,-0.023569997400045],[0.051780935376883,0.031241692602634,-0.039108704775572]],[[-0.0082950871437788,0.046494081616402,-0.012491999194026],[0.11553598195314,-0.039697390049696,0.006565107498318],[-0.095978945493698,-0.073055446147919,0.034269079566002]],[[0.018966156989336,-0.026595352217555,0.036945633590221],[0.0013224713038653,0.047193229198456,0.066917285323143],[0.010027637705207,-0.045460537075996,0.047670733183622]],[[0.054860442876816,-0.01274286583066,0.037731789052486],[-0.038923460990191,0.038746789097786,-0.0081424098461866],[0.027347849681973,0.035750906914473,0.048706945031881]],[[0.033998358994722,0.029696587473154,-0.0073641040362418],[0.008873057551682,0.028363540768623,-0.057597987353802],[-0.012659788131714,-0.0092901261523366,-0.070469565689564]],[[-0.1016192138195,0.034939005970955,-0.04383646696806],[0.025626949965954,-0.0072955279611051,0.044878821820021],[0.053699392825365,-0.071682676672935,-0.039098985493183]],[[-0.0084875412285328,-0.06134545058012,0.026839742437005],[-0.062629014253616,0.033139925450087,0.041305676102638],[0.038100626319647,-0.020054969936609,0.02064261212945]],[[0.036895912140608,0.028959067538381,-0.037772830575705],[-0.012897490523756,0.073031932115555,0.090438224375248],[-0.026273753494024,-0.081019967794418,-0.058443613350391]],[[0.05268981307745,-0.034537427127361,0.048391088843346],[0.056950818747282,0.0574956163764,0.0024769611191005],[0.0077461255714297,-0.013569087721407,0.033708438277245]],[[-0.077045872807503,-0.045572146773338,-0.087028838694096],[-0.062361240386963,-0.078868098556995,0.021623663604259],[-0.02727672085166,-0.12257971614599,-0.005734144244343]],[[-0.0044578369706869,0.052936464548111,0.011439144611359],[-0.047178242355585,0.0026806639507413,0.026253195479512],[0.1015260964632,0.015769129619002,0.024848518893123]],[[-0.030477533116937,0.12713812291622,0.016503168269992],[-0.074575155973434,-0.067447558045387,0.004391620401293],[0.069570034742355,0.059011038392782,-0.011979842558503]],[[-0.024895748123527,0.083082988858223,-0.029028436169028],[0.0348807759583,0.044280599802732,0.056181937456131],[-0.026046195998788,-0.04688261076808,0.017731290310621]],[[0.0031846107449383,0.037039067596197,-0.08565890789032],[0.0078651448711753,0.012153413146734,-0.029026325792074],[-0.051673375070095,-0.041942268610001,0.0026174953673035]],[[0.029090417549014,-0.0044348989613354,-0.015817930921912],[-0.021707544103265,-0.021869735792279,0.10922740399837],[-0.0096732834354043,0.038779031485319,-0.054524064064026]],[[-0.022003432735801,-0.045361626893282,0.039278496056795],[0.014099911786616,-0.0033839647658169,-0.026474533602595],[-0.015528013929725,-0.04843844473362,0.039976313710213]],[[-0.0071695470251143,0.11234993487597,0.10270892083645],[-0.051751304417849,0.06449493765831,-0.041096784174442],[-0.076147727668285,0.12557229399681,0.071687296032906]],[[-0.066022150218487,-0.02286078594625,0.03356483951211],[-0.023612400516868,-0.016084060072899,0.017428945749998],[0.0021123201586306,-0.011352259665728,0.0031412427779287]],[[-0.033578407019377,-0.04297960922122,0.025305461138487],[-0.048965003341436,-0.080475881695747,-0.067283533513546],[-0.043287925422192,-0.06386724114418,0.030381519347429]],[[0.031886927783489,-0.0406813621521,0.038282100111246],[0.098842307925224,-0.0013112606247887,-0.0012563515920192],[0.021890951320529,-0.0074051436968148,-0.046273410320282]],[[-0.044971492141485,-0.025021811947227,-0.0063211866654456],[0.00083243695553392,0.080614119768143,0.03817105665803],[-0.044516585767269,-0.082031555473804,-0.012456942349672]],[[0.00090041407383978,-0.027871672064066,-0.043478291481733],[0.035352692008018,-0.050083186477423,0.0084682274609804],[-0.010311506688595,0.040600966662169,-0.098190821707249]],[[-0.045608978718519,0.070228464901447,-0.068062208592892],[0.014565961435437,0.048994090408087,0.027527414262295],[-0.036487877368927,0.060753498226404,-0.071727685630322]],[[0.015794744715095,0.011062434874475,0.031495969742537],[-0.064018897712231,-0.019975176081061,0.0087308343499899],[-0.019705174490809,-0.088130056858063,-0.10433799773455]],[[0.090918213129044,-0.037027359008789,0.076419949531555],[0.040801148861647,0.05044599249959,-0.020619234070182],[0.063429825007915,-0.052188977599144,-0.014166343957186]],[[0.057661049067974,-0.023506850004196,-0.020200906321406],[-0.0053561395034194,0.0099774738773704,-0.03718788549304],[-0.076028771698475,0.090161718428135,0.020225254818797]],[[-0.027902720496058,0.051630098372698,0.0014642025344074],[0.030178101733327,0.022274361923337,0.023711387068033],[-0.10070081055164,-0.0040539754554629,-0.021169174462557]],[[0.023782493546605,-0.099169053137302,-0.024795595556498],[0.052962120622396,-0.052658151835203,-0.022209100425243],[0.005233196541667,0.030523836612701,-0.017451241612434]],[[-0.0071831867098808,-0.019636871293187,0.0012093250406906],[0.012942871078849,0.015955099835992,0.066165685653687],[-0.028258604928851,-0.023875370621681,-0.031732227653265]],[[-0.0022838439326733,-0.038894817233086,-0.066290587186813],[0.019963415339589,0.04878506064415,0.032541688531637],[-0.0081190001219511,-0.021882269531488,-0.0085212737321854]],[[-0.03033110126853,-0.018029939383268,-0.046138547360897],[-0.055185467004776,-0.022366853430867,-0.002693694550544],[-0.023068830370903,-0.037579368799925,0.12467392534018]],[[0.057376507669687,0.047038666903973,-0.0047823735512793],[0.043970678001642,-0.022419597953558,-0.080069251358509],[-0.0025185029953718,0.10301246494055,-0.0021250005811453]],[[-0.054935216903687,-0.026638524606824,-0.0599161721766],[-0.023044934496284,0.052271462976933,-0.002225219970569],[-0.010772526264191,0.051046073436737,-0.027655631303787]],[[-0.041725657880306,0.0541977211833,0.011240341700613],[0.0053507904522121,0.055660523474216,-0.083253391087055],[-0.004679418168962,-0.0032653165981174,0.060872729867697]],[[-0.023599933832884,0.024992663413286,0.062117144465446],[0.032250087708235,0.03212857991457,0.11350541561842],[0.11168684065342,0.014428189024329,0.12288579344749]],[[-0.035093583166599,0.025015218183398,-0.034524150192738],[-0.0027758211363107,0.0070758746005595,0.033544518053532],[0.039478361606598,-0.0027346627321094,-0.095395691692829]],[[0.030251435935497,0.017635680735111,-0.047728378325701],[-0.087526544928551,-0.014093553647399,-0.00029801938217133],[-0.032430063933134,-0.11715695261955,0.049856048077345]],[[0.016159527003765,0.0039387140423059,0.090009786188602],[-0.060295473784208,-0.0071738730184734,0.0040465113706887],[0.029061840847135,0.0096184117719531,0.10272058844566]],[[-0.027225056663156,-0.0062616430222988,0.010527774691582],[0.065818659961224,0.013967050239444,0.026399029418826],[-0.04766783118248,-0.014319789595902,-0.14232397079468]],[[0.071670666337013,0.09364315122366,-0.018346877768636],[-0.0030100452713668,0.02743742801249,0.060146499425173],[-0.023454144597054,-0.052561648190022,-0.040403835475445]],[[-0.10691918432713,0.029571045190096,-0.071718774735928],[-0.066369526088238,0.025164434686303,-0.026531845331192],[0.031696557998657,0.00031238762312569,0.0077017266303301]],[[0.0044816760346293,0.023775529116392,-0.022281765937805],[0.016715245321393,0.038476154208183,-0.0067311488091946],[0.023433336988091,0.086062483489513,-0.0018643267685547]],[[-0.050111535936594,-0.03047719784081,-0.10270217061043],[0.012800285592675,-0.030735399574041,-0.072817482054234],[-0.026907114312053,0.016015084460378,0.01127701997757]]],[[[0.035881776362658,-0.036097221076488,0.077494844794273],[-0.013222033157945,0.0091085461899638,0.028925621882081],[0.013925208710134,0.020033748820424,-0.069413058459759]],[[0.05782388523221,-0.046424463391304,0.0082732178270817],[0.0078568691387773,0.10814399272203,0.043730426579714],[-0.01175192464143,-0.0094056893140078,0.035242263227701]],[[-0.003070731414482,-0.029197270050645,-0.012144858948886],[0.05343060567975,0.039893195033073,-0.066019900143147],[-0.030936449766159,0.0058569135144353,0.049728952348232]],[[-0.063969060778618,-0.021896954625845,0.011430694721639],[0.01688170991838,-0.080378375947475,0.044192954897881],[-0.032742090523243,-0.033906418830156,-0.012882181443274]],[[0.064756155014038,0.036199737340212,0.024880496785045],[-0.026347732171416,0.033831208944321,0.023181540891528],[0.027379298582673,-0.022631481289864,0.033033229410648]],[[-0.013748639263213,0.041097573935986,-0.032260674983263],[-0.026444066315889,-0.039281282573938,-0.10758287459612],[-0.015890073031187,0.092759877443314,0.03510370105505]],[[0.06148499250412,0.022970888763666,-0.044310856610537],[-0.033772367984056,-0.011029428802431,-0.042179472744465],[0.030460497364402,-0.02306155487895,0.10969972610474]],[[-0.050350718200207,0.0070784543640912,-0.041025925427675],[-0.022905232384801,0.0064164744690061,0.065003246068954],[-0.014799993485212,0.068081341683865,0.021731534972787]],[[-0.0094480803236365,0.021029153838754,-0.00032394635491073],[0.03338224068284,0.036584138870239,-0.02948559448123],[-0.070089533925056,-0.010211371816695,0.00066515157232061]],[[0.035929530858994,-0.0402737185359,0.097271278500557],[0.040974494069815,0.0062256986275315,0.014883391559124],[0.020499460399151,-0.014790375716984,-0.083545729517937]],[[-0.014878205023706,-0.022671293467283,0.026965854689479],[0.0099914893507957,-0.043616082519293,0.010035920888186],[0.074321582913399,0.01310308277607,-0.027182970196009]],[[-0.0041535892523825,0.0051867291331291,0.023617252707481],[-0.0047865151427686,-0.079050816595554,0.025233183056116],[-0.045289147645235,0.035878792405128,0.059356939047575]],[[0.088100768625736,0.0065067587420344,0.022202249616385],[0.057480238378048,0.0595493465662,0.048893112689257],[-0.020289860665798,-0.030331827700138,-0.019593745470047]],[[-0.026211280375719,-0.014853562228382,-0.026577308773994],[0.039022520184517,0.0067513566464186,-0.0036026407033205],[-0.036181211471558,0.057023741304874,-0.03625126183033]],[[-0.039111785590649,-0.015669045969844,-0.0017714471323416],[0.062412697821856,0.020013643428683,0.0011932749766856],[-0.0049568312242627,-0.039758183062077,-0.032158091664314]],[[-0.015086649917066,0.014917811378837,-0.015313738957047],[0.014104974456131,-0.010792094282806,-0.075132384896278],[0.00020227250934113,0.052854992449284,-0.09848278015852]],[[-0.031969118863344,0.024940099567175,-0.04472604393959],[-0.055862203240395,-0.035632099956274,0.031305972486734],[-0.081345044076443,0.031421024352312,0.0079990569502115]],[[-0.019786909222603,-0.0031757191754878,0.038164913654327],[-0.034286174923182,-0.020752981305122,-0.034425590187311],[0.04652114957571,-0.0026118245441467,-0.05051339045167]],[[0.065799303352833,0.058913569897413,0.048813179135323],[0.041211735457182,0.011589022353292,0.021998846903443],[-0.023395977914333,0.001079129287973,-0.080807343125343]],[[0.023445980623364,0.059503246098757,-0.027570018544793],[-0.062928192317486,0.010209382511675,-0.0092156184837222],[-0.022850796580315,0.027115058153868,0.051818575710058]],[[-0.038299866020679,0.030212262645364,0.026930246502161],[0.053839042782784,0.022786119952798,0.065485119819641],[-0.0036514196544886,0.010615737177432,0.017494685947895]],[[-0.009101745672524,0.039545733481646,0.0083643458783627],[0.00806331820786,0.039063822478056,-0.037014860659838],[0.049715761095285,0.066572435200214,0.031322795897722]],[[0.039945855736732,0.033908732235432,0.034145765006542],[0.071326650679111,0.085093393921852,0.070921778678894],[0.0041508376598358,-0.054063152521849,-0.046322282403708]],[[0.029933022335172,0.034655272960663,0.0061213937588036],[0.053480856120586,-0.010810158215463,0.036483231931925],[0.075461521744728,0.018388485535979,0.051814381033182]],[[-0.08464989811182,0.079782880842686,-0.017697500064969],[-0.046418394893408,0.017789088189602,-0.028576327487826],[0.060933791100979,-0.0059881280176342,-0.0062057636678219]],[[0.00010039981134469,0.089396402239799,-0.012139618396759],[0.019645990803838,0.10500895231962,0.024751706048846],[-0.053445674479008,0.017855836078525,-0.080867700278759]],[[0.016522707417607,0.015595396980643,0.032213438302279],[-0.033330660313368,-0.12208124995232,0.02943779155612],[0.028611928224564,0.037716679275036,-0.027749275788665]],[[0.074933476746082,0.021822396665812,0.053176324814558],[0.018252106383443,-0.0038888975977898,-0.04916101321578],[0.079115249216557,0.016047161072493,-0.049163792282343]],[[-0.00095566373784095,-0.011274360120296,0.033492263406515],[-0.013973214663565,0.050465278327465,-0.033961743116379],[0.011715068481863,0.027402445673943,-0.04881352186203]],[[0.027484633028507,-0.051125202327967,-0.012431204319],[-0.0061807245947421,0.0082856919616461,-0.025104882195592],[0.010401302948594,0.036204043775797,-0.0814263895154]],[[-0.077292576432228,0.034495543688536,0.061579763889313],[0.036869399249554,-0.025906439870596,-0.0820482224226],[0.092999130487442,-0.019224591553211,-0.062623925507069]],[[-0.064568780362606,0.078306309878826,-0.04496830701828],[-0.043107371777296,-0.058611355721951,-0.048949178308249],[-0.030475465580821,0.0079898778349161,0.034267961978912]],[[0.029954688623548,0.044834598898888,0.020324654877186],[-0.012831961736083,0.042891908437014,0.014493118971586],[0.054735027253628,0.040606167167425,-0.0023532987106591]],[[-0.019495669752359,-0.069389164447784,-0.025608697906137],[0.082528918981552,0.0036416398361325,0.019730664789677],[-0.016402807086706,-0.03462752327323,0.01824982278049]],[[0.02060030028224,0.041795700788498,-0.035032797604799],[0.033492878079414,0.04064678773284,-0.060965176671743],[-0.0074543734081089,0.055683072656393,0.0061821518465877]],[[0.073735639452934,-0.001220187288709,0.0042875842191279],[-0.023142024874687,-0.040931325405836,-0.0055868858471513],[0.027509896084666,-0.089858204126358,0.0016174812335521]],[[-0.011602034792304,-0.011531131342053,0.056306269019842],[-0.053867626935244,-0.045864839106798,-0.022547958418727],[-0.029332902282476,0.017799198627472,0.042203657329082]],[[-0.020495617762208,0.042779393494129,0.00063340441556647],[0.001038427464664,0.0045359772630036,0.062740847468376],[-0.052876356989145,-0.054447881877422,-0.04036420583725]],[[0.0083542289212346,0.0044816578738391,0.073224790394306],[-0.024724405258894,0.036088533699512,-0.065289326012135],[0.020448006689548,-0.019004540517926,0.010824938304722]],[[-0.01163084898144,0.011177936568856,0.027989318594337],[-0.040933284908533,-0.020912854000926,0.016405196860433],[-0.06269022077322,-0.081307880580425,0.080694198608398]],[[0.0025067280512303,0.051371898502111,-0.028618583455682],[-0.021984858438373,-0.026660462841392,0.020712558180094],[0.013556730002165,-0.041419513523579,-0.071290910243988]],[[0.029739098623395,-0.0055950861424208,-0.030215347185731],[0.026984073221684,0.054080732166767,-0.028993902727962],[-0.018218513578176,-0.047969743609428,-0.066438093781471]],[[0.02757453545928,0.0012966084759682,0.047223217785358],[-0.081814132630825,-0.041764624416828,0.039312325417995],[0.019944738596678,0.044684324413538,-0.077243484556675]],[[0.030496066436172,-0.068193852901459,0.016383808106184],[-0.014907023869455,-0.0042200135067105,-0.021280290558934],[-0.038928080350161,-0.036527246236801,-0.01952089369297]],[[-0.016820857301354,0.066640950739384,-0.0094322534278035],[0.0060852612368762,0.0087546659633517,0.063529998064041],[-0.032183643430471,-0.042959351092577,0.0095196301117539]],[[0.019424682483077,0.00013367585779633,-0.021505005657673],[0.077170558273792,0.062570139765739,-0.016357688233256],[0.039509143680334,-0.084093302488327,0.071455143392086]],[[-0.031649619340897,0.075413696467876,0.0018614946166053],[0.06036751717329,-0.0094192214310169,-0.069866389036179],[0.0034457191359252,0.059512611478567,-0.018116515129805]],[[0.055696416646242,0.019983513280749,0.020594947040081],[0.037418860942125,-0.040755126625299,-0.060388304293156],[0.043370760977268,-0.019980313256383,-0.08208966255188]],[[-0.072174772620201,-0.0095010194927454,0.030025681480765],[0.0069231796078384,0.0069417259655893,-0.026771325618029],[0.016124689951539,0.0053239143453538,0.058135971426964]],[[0.025034960359335,0.0036228932440281,0.048026781529188],[-0.037971876561642,0.018169641494751,-0.00085833889897913],[0.075922094285488,-0.0087360152974725,0.0498255379498]],[[0.041081100702286,0.024638643488288,0.078330360352993],[0.032523419708014,0.0087884990498424,-0.029496254399419],[0.023261334747076,0.031258687376976,0.016076292842627]],[[-0.016062958166003,-0.075620606541634,0.011225380934775],[0.0087071489542723,-0.043559860438108,0.048083957284689],[0.03920141980052,0.050162766128778,0.022454304620624]],[[0.01541506499052,-0.013823555782437,0.053944651037455],[-0.0048599550500512,0.010615451261401,-0.049750670790672],[0.04015389084816,-0.0024648355320096,0.020698485895991]],[[-0.057709395885468,0.057141099125147,0.024801570922136],[0.023635927587748,-0.0096710892394185,0.070457823574543],[-0.09191171079874,-0.0073668477125466,0.10758879780769]],[[0.0034308191388845,0.07077768445015,0.0015775979263708],[0.015002258121967,-0.057624816894531,-0.055334992706776],[-0.038261067122221,0.073040530085564,0.002845743438229]],[[-0.044604800641537,0.03527370467782,-0.048451241105795],[0.027921374887228,0.022477358579636,-0.022983161732554],[0.02052616328001,0.060736477375031,0.0044537605717778]],[[0.041734453290701,-0.0066149942576885,0.0848228931427],[-0.02496487274766,-0.073886230587959,0.070104286074638],[-0.0086292186751962,-0.041838899254799,0.0098007507622242]],[[0.017248263582587,-0.045865144580603,0.03898436576128],[-0.012761685065925,0.030366810038686,-0.053601436316967],[0.062567017972469,0.004864658229053,0.024641942232847]],[[0.0068931500427425,-0.055479787290096,0.031210428103805],[-0.055594757199287,0.024445997551084,0.024614786729217],[-0.017953854054213,-0.083440892398357,0.011391423642635]],[[-0.008205640129745,0.014912339858711,0.021254913881421],[-0.069152548909187,0.070170432329178,0.054959516972303],[-0.04967388510704,0.019440280273557,0.014917388558388]],[[-0.061384499073029,0.026545852422714,-0.0022992470767349],[-0.0068980972282588,-0.0074236849322915,0.012410505674779],[-0.053634740412235,-0.0077521372586489,0.049010563641787]],[[-0.023098785430193,-0.056681737303734,-0.046144161373377],[0.061868287622929,-0.013634026050568,0.1102028042078],[0.010418215766549,-0.00018049489881378,0.023964457213879]],[[0.018055498600006,0.037260092794895,-0.038399171084166],[-0.026427526026964,0.036037396639585,-0.013900192454457],[-0.0089811515063047,-0.020082185044885,-0.011737626977265]],[[-0.040589347481728,0.036412224173546,-0.040091164410114],[0.10821062326431,-0.025784332305193,-0.0085865026339889],[-0.0020734872668982,0.03950335457921,-0.042120635509491]],[[0.054954547435045,0.012961082160473,0.064149357378483],[0.03158438578248,-0.010312102735043,-0.068572126328945],[-0.0033608598168939,0.055957872420549,0.014879785478115]],[[0.029496360570192,0.012447205372155,0.010409594513476],[-0.018219286575913,0.00041052707820199,0.060199096798897],[-0.037517134100199,-0.096963204443455,-0.033471520990133]],[[0.032484080642462,-0.00573770981282,-0.06646154820919],[0.035797365009785,-0.00079299369826913,-0.067037552595139],[-0.0017865314148366,-0.0077455737628043,0.0039168153889477]],[[-0.032136108726263,0.013982256874442,0.061033360660076],[0.028296256437898,-0.028492828831077,-0.051556967198849],[0.050343364477158,0.008966532535851,0.011836672201753]],[[-0.045747119933367,-0.015916354954243,0.016983345150948],[0.02695881947875,0.027255203574896,0.028134793043137],[-0.018046531826258,0.0081555936485529,-0.00033070260542445]],[[0.012787325307727,-0.02539280988276,0.033027537167072],[-0.04254388064146,-0.012126765213907,-0.030965778976679],[-0.046277359127998,-0.032543577253819,0.051394090056419]],[[0.03689806163311,0.022168107330799,-0.068915843963623],[-0.036646153777838,0.015816260129213,-0.015943201258779],[-0.068835318088531,0.013649760745466,0.048251267522573]],[[0.087581053376198,-0.0687400624156,0.01572715677321],[0.01982494816184,-0.03330834954977,0.011425012722611],[-0.030399452894926,-0.093865118920803,0.021809147670865]],[[0.05730377137661,0.083502054214478,0.086016543209553],[0.086173564195633,0.031181236729026,-0.064001210033894],[0.026001811027527,0.064561814069748,-0.0056279255077243]],[[0.051124386489391,0.0074016265571117,0.021696569398046],[0.0047516720369458,0.0048621180467308,0.055381771177053],[0.059044718742371,-0.010409962385893,0.039577227085829]],[[-0.043366406112909,-0.021514436230063,0.022850623354316],[0.0061264587566257,-0.016582211479545,0.1058449447155],[0.010220206342638,0.080404877662659,0.020004840567708]],[[0.069070756435394,0.036184247583151,0.00043077269219793],[0.060573663562536,0.052822913974524,-0.017019031569362],[0.0075559094548225,-0.014350602403283,0.030772797763348]],[[0.020366251468658,0.056228559464216,0.024242915213108],[0.069719076156616,0.029124557971954,-0.022715570405126],[-0.013186319731176,0.028835818171501,0.017048360779881]],[[-0.021109880879521,0.052224420011044,0.010770454071462],[-0.049017511308193,-0.052134405821562,-0.010958798229694],[0.02708762139082,0.011429412290454,0.024900080636144]],[[0.028646778315306,-0.01409799605608,-0.050221331417561],[0.00045885308645666,-0.050093114376068,0.023215847089887],[-0.044896673411131,0.060334406793118,-0.071258567273617]],[[-0.038921684026718,0.083913750946522,0.034106284379959],[-0.018520798534155,0.006131611764431,0.029238833114505],[-0.088735744357109,0.063519179821014,-0.021644778549671]],[[-0.0069951456971467,0.0046212398447096,-0.03569757193327],[0.022928025573492,-0.033917911350727,-0.017429722473025],[0.0020692944526672,-0.014180604368448,-0.042329240590334]],[[-0.021229213103652,0.061885640025139,0.015172281302512],[-0.013262159191072,-0.036474354565144,0.031579587608576],[-0.010486607439816,0.053831864148378,-0.046700686216354]],[[-0.086557276546955,0.012964782305062,-0.034880757331848],[0.043971199542284,-0.078533887863159,-0.060617808252573],[0.10259330272675,0.05381478369236,-0.082126036286354]],[[-0.040908128023148,0.0009768515592441,-0.0083673438057303],[-0.00097376928897575,0.060063842684031,0.034972090274096],[-0.010166104882956,-0.045146256685257,0.079120554029942]],[[-0.001280962722376,0.063567854464054,0.010618064552546],[-0.050112664699554,0.017024431377649,-0.015846524387598],[0.00073559430893511,0.032821387052536,0.014639985747635]],[[0.040420684963465,-0.033136289566755,0.028747126460075],[-0.039448779076338,-0.10729093104601,0.010394040495157],[0.010706138797104,0.009829985909164,-0.019602674990892]],[[0.089261434972286,0.030837835744023,-0.046733025461435],[-0.037166982889175,0.040794260799885,0.045964680612087],[0.034274164587259,-0.033372204750776,-0.0039052066858858]],[[0.022811314091086,0.013285342603922,-0.021094765514135],[0.057898379862309,-0.046997841447592,0.036549527198076],[0.015253177843988,0.016427826136351,-0.011814791709185]],[[-0.002009499585256,-0.033106941729784,-0.043484799563885],[-0.084648728370667,0.058954931795597,0.020020753145218],[0.049567729234695,0.067732565104961,0.016873370856047]],[[-0.078169159591198,0.034502308815718,-0.0076665002852678],[-0.036733783781528,0.081663280725479,0.042909428477287],[-0.016989214345813,0.0186039917171,0.0043088076636195]],[[-0.0064406604506075,-0.014416381716728,0.071362495422363],[0.052405763417482,-0.0014764808584005,-0.043278880417347],[0.0098429955542088,-0.043753050267696,-0.012797981500626]],[[0.0487454906106,0.086020961403847,-0.06846559792757],[-0.073955126106739,0.078549295663834,-0.032245803624392],[-0.05083404481411,0.010838842019439,0.03926769271493]],[[0.03330310061574,-0.021502366289496,-0.012030589394271],[0.049457646906376,0.016959670931101,-0.020748196169734],[-0.0041450099088252,0.023782566189766,0.039548743516207]],[[-0.0071158157661557,0.01734796538949,0.010631036013365],[0.039122730493546,-0.0058817896060646,0.015267594717443],[0.026591774076223,-0.043008591979742,0.044847425073385]],[[0.041139900684357,0.10825850069523,-0.021163677796721],[0.036091215908527,-0.0026421742513776,-0.085665233433247],[-0.043912794440985,0.012029260396957,0.021777708083391]],[[0.052290927618742,0.034538380801678,0.04308794438839],[-0.033669348806143,-0.025196094065905,0.015354285016656],[-0.065714344382286,0.0056180278770626,0.00092243775725365]],[[-0.021641751751304,0.048301845788956,0.1180614605546],[-0.065429799258709,0.003563966602087,0.007727081887424],[-0.074093528091908,0.050522334873676,0.027995003387332]],[[-0.036479238420725,0.060191474854946,-0.0057487012818456],[0.020532291382551,-0.10683197528124,0.009624901227653],[0.099803030490875,0.0095909144729376,0.058083690702915]],[[0.010999451391399,-0.032399997115135,0.03112661652267],[0.032649833709002,-0.032030217349529,-0.023189149796963],[-0.048511926084757,0.068286061286926,0.014302328228951]],[[-0.0052532311528921,-0.04774996638298,-0.051357544958591],[-0.055940598249435,0.047268431633711,0.013741692528129],[0.057120092213154,0.057887300848961,-0.019611984491348]],[[0.072429776191711,0.04340984672308,-0.001006685430184],[0.086634531617165,-0.0061757597140968,-0.017540294677019],[0.016612689942122,-0.0052099404856563,0.038581229746342]],[[-0.027161598205566,-0.043770588934422,-0.021952852606773],[0.082096979022026,0.064630649983883,-0.032151434570551],[-0.0032769839745015,0.067490644752979,-0.0030270554125309]],[[-0.067134998738766,0.0025580278597772,-0.0045241834595799],[0.0017632187809795,-0.00074625603156164,0.041131120175123],[0.058143202215433,0.0329943113029,-0.043314557522535]],[[-0.0051269535906613,-0.079605430364609,0.013614873401821],[0.046666081994772,-0.011997536756098,-0.083610713481903],[-0.069281898438931,0.040008883923292,-0.036682311445475]],[[-0.010125025175512,-0.0014675174606964,-0.030244098976254],[-0.13687641918659,0.014646983705461,0.029010532423854],[0.069450750946999,0.021395420655608,0.045424725860357]],[[0.040084920823574,0.060755178332329,0.042600497603416],[-0.035406738519669,0.0040696142241359,0.11732617020607],[0.034733090549707,0.038021709769964,-0.069090902805328]],[[0.060964427888393,0.029595548287034,-0.013507732190192],[0.060224384069443,0.001749298768118,0.049825202673674],[0.02879492752254,0.034502137452364,0.069082207977772]],[[0.016700452193618,0.053881853818893,0.0072006522677839],[-0.012836345471442,0.094084888696671,-0.043737579137087],[-0.042141813784838,0.023030484095216,-0.041926454752684]],[[0.018792359158397,-0.030892135575414,0.068892203271389],[-0.040681757032871,-0.013492848724127,0.030897706747055],[0.011081869713962,0.017742922529578,0.0024414097424597]],[[-0.0081421546638012,-0.012709910981357,-0.040269564837217],[0.062664866447449,-0.0056961458176374,-0.054582398384809],[-0.095852196216583,-0.040280662477016,0.010945953428745]],[[-0.0016821615863591,0.015080743469298,0.042951714247465],[0.041479505598545,0.021396117284894,0.037199858576059],[0.03363598510623,-0.020995587110519,0.021832298487425]],[[0.034996144473553,-0.051915653049946,-0.0063569713383913],[-0.023807849735022,-0.0075558214448392,0.057119194418192],[0.057564713060856,-0.024015743285418,-0.008241212926805]],[[0.037541791796684,0.0091147674247622,0.045456137508154],[0.013064020313323,-0.02098473533988,0.0077089597471058],[0.0032484622206539,0.020989838987589,-0.021544523537159]],[[0.030432919040322,-0.038225386291742,-0.0086926613003016],[-0.015944456681609,0.06154740229249,-0.06281989812851],[0.0037559771444649,-0.032155439257622,-0.022355167195201]],[[-0.016150472685695,-0.046315286308527,-0.014378501102328],[-0.024464979767799,-0.00054326973622665,-0.018686069175601],[0.037935893982649,0.052354525774717,-0.021931761875749]],[[0.017119472846389,0.055512733757496,0.033934891223907],[0.027833666652441,-0.016341466456652,0.039504140615463],[-0.00087949383305386,0.0092376312240958,-0.08488280326128]],[[-0.025270344689488,-0.044804468750954,-0.0084093557670712],[-0.0071032610721886,0.0034972240682691,-0.027803970500827],[0.035768605768681,0.014315660111606,0.0033354142215103]],[[-0.067260652780533,-0.059003710746765,0.039699047803879],[-0.014095366932452,-0.014999960549176,0.021129515022039],[-0.024029387161136,0.038390681147575,0.024131800979376]],[[0.028337398543954,0.026144713163376,-0.023043027147651],[-0.026155548170209,0.015336872078478,-0.045930445194244],[-0.017593761906028,-0.092762850224972,-0.015810674056411]],[[0.066467300057411,0.047438256442547,0.050570428371429],[-0.035925682634115,0.011978163383901,0.050043813884258],[-0.043660819530487,-0.053621545433998,0.00027920986758545]],[[-0.003573969239369,-0.018720733001828,0.02861450612545],[-0.084519773721695,-0.024522583931684,-0.0075597860850394],[-0.043359890580177,0.041746292263269,-0.043450806289911]],[[0.0063403905369341,-0.039397999644279,0.010431903414428],[0.067491851747036,-0.012797459959984,-0.002226164098829],[0.0063811829313636,-0.078602410852909,-0.02595591172576]],[[0.0010201883269474,0.020438499748707,-0.026744043454528],[-0.066364243626595,0.060211572796106,0.012216564267874],[0.049556657671928,0.012172352522612,0.0054884008131921]],[[-0.010511914268136,0.044470831751823,0.038071230053902],[-0.064622208476067,-0.023942353203893,-0.0083651505410671],[0.037388123571873,-0.03173416852951,-0.081444792449474]],[[0.014672760851681,0.029188521206379,-0.036331240087748],[0.027463467791677,-0.021246353164315,0.015435353852808],[0.073190554976463,0.036853354424238,0.0075700711458921]],[[0.050370659679174,-0.032686751335859,0.00040195917245001],[0.014046874828637,-0.012552364729345,0.021328402683139],[0.024306310340762,0.042068019509315,0.040486361831427]],[[-0.024568157270551,0.066079437732697,-0.016402989625931],[0.031940970569849,0.01747484318912,0.07656405121088],[-0.021504597738385,0.039204996079206,-0.02546314150095]],[[0.0086389416828752,0.026950752362609,-0.050024408847094],[0.035795379430056,0.036985013633966,0.032826006412506],[0.0038898091297597,-0.037608530372381,0.082772247493267]]],[[[-0.037550952285528,0.037795938551426,0.11152362823486],[0.14518941938877,-0.096229813992977,-0.0074159642681479],[0.040304388850927,-0.01795507222414,0.012341145426035]],[[0.017701769247651,-0.22750130295753,0.10228130966425],[0.12812595069408,0.13566574454308,-0.14162661135197],[0.06880309432745,-0.049404814839363,-0.10604597628117]],[[-0.055369019508362,-0.073417223989964,-0.056756138801575],[0.11003111302853,-0.10224641114473,-0.10841223597527],[-0.035478617995977,0.061290204524994,-0.034990429878235]],[[-0.066270284354687,-0.15950086712837,0.030486864969134],[-0.00079251895658672,-0.10816895216703,-0.19642895460129],[-0.054928164929152,0.15765365958214,-0.10736609995365]],[[0.027413934469223,0.078755162656307,-0.051304705440998],[0.011613724753261,-0.0032494103070349,-0.022132085636258],[0.11624974757433,-0.17599436640739,0.0085537731647491]],[[0.0017019083024934,-0.0010232796194032,0.019030369818211],[0.012227885425091,-0.018524218350649,-0.12771463394165],[0.066162966191769,-0.069646179676056,0.0039937593974173]],[[0.010643900372088,0.038720551878214,0.1252316981554],[-0.12042213231325,-0.051578443497419,0.088439121842384],[0.031085789203644,-0.087017774581909,0.01791825145483]],[[0.017303138971329,0.14085647463799,-0.048559419810772],[-0.0045759156346321,-0.022472558543086,0.064613275229931],[-0.12626788020134,-0.033008061349392,-0.0074505074881017]],[[-0.17956687510014,-0.0032162023708224,0.048678457736969],[-0.12309620529413,0.11017556488514,0.068459779024124],[0.019661761820316,0.050841987133026,0.033085595816374]],[[-0.026263032108545,-0.051630910485983,-0.031056696549058],[0.007639376912266,-0.0066553400829434,-0.016386738047004],[-0.00072851777076721,0.1047612503171,0.10295221954584]],[[0.10401333868504,0.12844860553741,-0.032452844083309],[0.0099053289741278,-0.0092448070645332,0.04082103073597],[-0.11161303520203,-0.10323584079742,-0.11238771677017]],[[-0.050913594663143,-0.032144792377949,0.063554145395756],[0.043824285268784,0.097616575658321,-0.17080974578857],[-0.014874015934765,-0.10720284283161,-0.070421256124973]],[[-0.10974550247192,-0.027073252946138,0.029009496793151],[0.13328729569912,0.079181008040905,-0.055562820285559],[0.028814166784286,0.1290353089571,-0.040884468704462]],[[0.16022752225399,-0.017435779795051,0.013882259838283],[0.0098908599466085,0.0057411468587816,-0.039642702788115],[0.020665302872658,0.0039223260246217,0.015087042935193]],[[-0.086463242769241,-0.16054394841194,0.064054988324642],[0.020226841792464,0.014978528954089,-0.18705299496651],[-0.21386680006981,-0.045388676226139,0.043393544852734]],[[0.16424359381199,0.021731715649366,0.050131555646658],[0.17916455864906,-0.19460244476795,-0.026254251599312],[-0.086972333490849,0.17775456607342,0.07140938937664]],[[-0.056550949811935,-0.046621587127447,-0.091367594897747],[0.033375788480043,0.12320851534605,0.0061858803965151],[0.045165941119194,0.086687617003918,-0.035584837198257]],[[-0.01708821579814,0.070667937397957,0.14728537201881],[-0.085129119455814,-0.040312591940165,0.12094823271036],[-0.10580044239759,-0.19350530207157,-0.036730565130711]],[[-0.079154491424561,-0.025893684476614,0.081778146326542],[0.0067337462678552,0.054444216191769,0.11434323340654],[-0.0064012911170721,0.1251275986433,-0.11722192913294]],[[0.0093517377972603,-0.10006759315729,0.043564133346081],[-0.004622237291187,0.14220276474953,0.027860056608915],[0.069041632115841,0.05578650534153,0.072171919047832]],[[-0.109409481287,-0.0073705753311515,-0.0096555463969707],[-0.087877236306667,-0.14812390506268,-0.093968167901039],[0.13454106450081,0.19998648762703,-0.089394263923168]],[[-0.033046938478947,-0.17731761932373,-0.039956871420145],[-0.041899126023054,0.00098525150679052,0.11685977131128],[0.033563293516636,0.01038527674973,0.015883447602391]],[[0.086628802120686,0.060106258839369,0.060488156974316],[0.06637866795063,-0.11151978373528,-0.013551705516875],[-0.090763844549656,0.087978594005108,0.012219728901982]],[[-0.16471630334854,-0.20747826993465,-0.10460384190083],[0.044909313321114,-0.16331031918526,-0.060771487653255],[0.10578562319279,0.18430463969707,0.03120538033545]],[[-0.1621909737587,-0.048896823078394,0.043903056532145],[-0.082714982330799,-0.16210028529167,-0.1194436326623],[0.068483412265778,-0.075782231986523,-0.11529213190079]],[[-0.016754684969783,-0.052593838423491,0.057981979101896],[-0.0152826635167,-0.072863273322582,-0.017596321180463],[-0.27077329158783,-0.063458047807217,-0.012841001152992]],[[0.11051688343287,-0.17116720974445,-0.10357107967138],[-0.064188659191132,-0.0020107587333769,0.094894327223301],[-0.11664215475321,0.0016697292448953,0.093463324010372]],[[0.13203449547291,-0.20548321306705,0.028062656521797],[-0.071569122374058,0.087934717535973,-0.13051173090935],[-0.091368593275547,-0.057786718010902,-0.071483172476292]],[[-0.071432553231716,0.10020986199379,0.051308304071426],[0.083298236131668,-0.084665276110172,-0.048558585345745],[-0.058804828673601,0.022119471803308,-0.03392006456852]],[[0.038293212652206,0.031551238149405,-0.031959947198629],[0.028103247284889,0.084114380180836,0.011817040853202],[-0.020155888050795,-0.085978016257286,-0.12637138366699]],[[0.13522177934647,0.13474003970623,-0.038137272000313],[0.0074799694120884,-0.057779092341661,-0.013626178726554],[-0.17617376148701,0.0031642783433199,-0.015266601927578]],[[0.055348291993141,0.16981612145901,-0.027517715469003],[0.040131472051144,-0.21013630926609,0.082674562931061],[-0.0081055108457804,-0.045848354697227,0.0035739976447076]],[[0.035610217601061,-0.029436541721225,0.0046286769211292],[0.034030608832836,0.2087667286396,-0.044815421104431],[-0.14555831253529,0.019131172448397,0.058522116392851]],[[-0.042095068842173,0.025018529966474,-0.12835493683815],[0.0414261482656,-0.0011992653599009,0.058003030717373],[-0.024083681404591,-0.062333460897207,0.030716264620423]],[[-0.13048757612705,-0.054642073810101,-0.10860551893711],[-0.22109632194042,-0.0015445541357622,-0.08308968693018],[-0.21425427496433,-0.14568303525448,0.10833586007357]],[[-0.18638834357262,-0.072517931461334,0.033433232456446],[0.062247436493635,-0.11723262071609,0.044008478522301],[0.18295587599277,-0.16741690039635,-0.050701569765806]],[[-0.027228742837906,-0.030332000926137,0.031311511993408],[0.054338052868843,-0.007132959086448,-0.029002385213971],[-0.15823517739773,-0.066499419510365,-0.074896343052387]],[[-0.042422823607922,-0.066934362053871,0.03905788436532],[0.035152982920408,0.065410986542702,0.026717931032181],[-0.05567292496562,-0.058916814625263,0.012840371578932]],[[0.096475385129452,-0.061596103012562,-0.0020593686494976],[0.030578782781959,-0.19572554528713,-0.082934342324734],[0.031389206647873,0.081741221249104,-0.00075175712117925]],[[-0.10247317701578,0.0033752345480025,0.12864507734776],[0.016987735405564,0.022889262065291,-0.061563607305288],[0.082393832504749,0.13897503912449,-0.029195377603173]],[[-0.080223836004734,-0.1077203899622,0.013767716474831],[-0.060602948069572,-0.044864788651466,0.030740410089493],[0.0021160515025258,0.031048091128469,0.15759971737862]],[[-0.011469418182969,0.018015258014202,0.0011277878656983],[-0.060520347207785,-0.10815876722336,0.0031534091103822],[0.050558976829052,-0.010973806492984,-0.0047726058401167]],[[0.10480511188507,-0.18415279686451,0.043263152241707],[-0.16281393170357,0.14311935007572,-0.11547622829676],[0.11510160565376,-0.093898124992847,0.07991835474968]],[[-0.041393488645554,0.12725664675236,-0.026610570028424],[-0.13486523926258,0.081487894058228,-0.067849516868591],[-0.063669845461845,-0.11198031157255,-0.011078515090048]],[[-0.19400531053543,0.08685190230608,0.067060731351376],[-0.134392157197,0.020969389006495,0.022226808592677],[0.054453365504742,0.10696478933096,-0.013229491189122]],[[0.1162968724966,-0.15300171077251,0.064094625413418],[-0.091232299804688,0.21258673071861,-0.15589170157909],[0.13191705942154,-0.11755606532097,0.10627750307322]],[[-0.20796808600426,-0.16754119098186,0.058314248919487],[-0.16256909072399,0.0091743934899569,0.00075156975071877],[-0.048503208905458,0.018610473722219,-0.11885204911232]],[[0.041961513459682,0.2834058701992,0.076840855181217],[-0.10234884172678,-0.16835884749889,0.0947105884552],[-0.081097893416882,-0.123928360641,-0.012004806660116]],[[-0.049891620874405,-0.067211255431175,-0.058017212897539],[0.047918245196342,0.048151377588511,0.0097384871914983],[0.081314660608768,0.0045049139298499,0.033194199204445]],[[-0.011239320039749,-0.096739292144775,0.020060198381543],[0.21955472230911,-0.16008052229881,-0.061310902237892],[0.073293156921864,-0.066982567310333,-0.030265944078565]],[[-0.14908105134964,-0.017455257475376,-0.047947812825441],[0.1719733774662,0.039393771439791,-0.079714670777321],[0.012645084410906,0.070396557450294,-0.0031140041537583]],[[0.012021725066006,0.063393875956535,-0.026149470359087],[0.042911894619465,0.16745615005493,-0.025956137105823],[0.020100861787796,-0.04344130679965,0.098048411309719]],[[-0.036558847874403,-0.0088806748390198,-0.043006345629692],[-0.15633048117161,0.048145659267902,-0.010545578785241],[-0.059157826006413,-0.056363627314568,-0.067737177014351]],[[-0.019001420587301,-0.073916494846344,0.011976166628301],[-0.024723412469029,0.090023778378963,-0.065503269433975],[-0.089105188846588,0.040136009454727,-0.060482658445835]],[[0.0037058340385556,0.206862449646,-0.0062726950272918],[-0.030647540464997,-0.12143807113171,0.064774177968502],[0.092748463153839,-0.025916330516338,-0.071033269166946]],[[0.1267596334219,0.044950481504202,-0.041285239160061],[-0.13669934868813,0.058195948600769,-0.037805546075106],[0.063517995178699,0.028449757024646,-0.048455469310284]],[[-0.096053428947926,-0.049700532108545,-0.016544433310628],[0.019963622093201,-0.015673005953431,0.08238522708416],[0.092698790132999,-0.22603802382946,0.087545737624168]],[[-0.017510794103146,-0.02286583930254,0.090575434267521],[-0.046269606798887,0.017587581649423,0.044821474701166],[-0.056154023855925,-0.23756465315819,0.21209964156151]],[[0.005843079648912,0.15847918391228,-0.023357721045613],[0.053243491798639,0.043774206191301,0.079828128218651],[0.12641207873821,-0.11143621057272,0.037622295320034]],[[0.0090787736698985,0.0414033010602,0.1273679882288],[0.028188521042466,-0.080352962017059,-0.021875044330955],[0.10882107913494,0.045899458229542,0.044411294162273]],[[0.056968744844198,-0.00422986689955,-0.058341927826405],[0.045035246759653,-0.095411740243435,-0.13341319561005],[0.24301396310329,0.15033599734306,-0.081546202301979]],[[-0.099821843206882,0.0068852100521326,0.047931220382452],[-0.28262054920197,-0.15476109087467,0.14736585319042],[0.040759351104498,-0.19198082387447,-0.011193088255823]],[[-0.074238233268261,-0.057308133691549,-0.0058511751703918],[0.064185224473476,0.093703173100948,-0.041482072323561],[0.012557618319988,-0.031063683331013,-0.037667449563742]],[[-0.024102976545691,0.12194778770208,0.0067586773075163],[0.055753745138645,-0.13773150742054,-0.050322264432907],[-0.001307007856667,0.043295931071043,-0.11283139139414]],[[0.014800013974309,0.10997326672077,-0.01059952750802],[-0.025895465165377,0.19987821578979,-0.10799206793308],[-0.008938480168581,-0.051418282091618,-0.1394270658493]],[[-0.055268030613661,-0.0095980186015368,-0.095310047268867],[-0.049773558974266,0.042952496558428,0.08524015545845],[-0.059705182909966,-0.036743696779013,-0.037587445229292]],[[0.021359011530876,0.1232675164938,0.12939079105854],[-0.011495545506477,0.065110191702843,-0.12887911498547],[-0.0042698723264039,-0.012201823294163,-0.13466927409172]],[[-0.050236336886883,-0.071788638830185,0.0079967891797423],[-0.057444356381893,-0.054935026913881,0.15887694060802],[0.016773534938693,-0.043305031955242,-0.072547949850559]],[[0.050595816224813,-0.010957569815218,0.11082853376865],[0.0019545604009181,-0.040432866662741,-0.039311848580837],[-0.058269917964935,0.0023097810335457,0.059929855167866]],[[-0.026604160666466,0.07969019562006,-0.057809717953205],[-0.077021740376949,0.08884434401989,0.057611096650362],[-0.089744590222836,-0.022658739238977,0.088104553520679]],[[-0.056203696876764,0.016680218279362,0.05204950645566],[0.009971016086638,0.16069012880325,-0.097075529396534],[-0.016905790194869,-0.038818549364805,0.076579056680202]],[[0.0074584954418242,-0.25802379846573,-0.1552402973175],[0.022906800732017,0.085332997143269,0.18705502152443],[-0.031799424439669,-0.06507732719183,0.085204787552357]],[[0.084571868181229,-0.054674532264471,-0.073526583611965],[0.24547486007214,-0.26479059457779,-0.06879223883152],[0.035656683146954,-0.070893563330173,0.036494709551334]],[[0.045632440596819,0.072268918156624,0.15871649980545],[-0.062083639204502,-0.054775457829237,0.0078292405232787],[-0.093266829848289,0.00020080481772311,-0.0071953535079956]],[[-0.19221864640713,-0.061897806823254,0.17675611376762],[-0.039362102746964,-0.10768397152424,-0.056075196713209],[0.0093115856871009,-0.092950075864792,-0.023120729252696]],[[-0.069777101278305,0.031810503453016,0.075737126171589],[0.0060599795542657,-0.021508337929845,0.0033813503105193],[0.028106825426221,-0.11401779949665,0.021957062184811]],[[-0.10481277853251,-0.12326258420944,-0.024099824950099],[0.1343260705471,0.0058844024315476,0.014453219249845],[-0.057822186499834,-0.061068341135979,-0.03207766264677]],[[-0.047787073999643,0.16834942996502,-0.05582594498992],[-0.011865735054016,0.042434621602297,0.11720506846905],[-0.049027409404516,-0.12373795360327,0.025258580222726]],[[-0.11915495991707,0.038872111588717,0.044527597725391],[-0.020358275622129,0.022256772965193,0.021813929080963],[-0.050784468650818,0.027015093713999,-0.079948477447033]],[[-0.14772965013981,-0.10863732546568,-0.019027540460229],[-0.087197668850422,0.1737856566906,0.014536301605403],[0.10267470031977,-0.085219137370586,0.075884632766247]],[[0.13469409942627,-0.10085535049438,-0.018198920413852],[0.064253933727741,-0.14361509680748,0.050383530557156],[0.065624982118607,-0.053312860429287,0.010459620505571]],[[-0.14850774407387,-0.23736031353474,0.056959934532642],[-0.043638054281473,0.17925253510475,-0.054559223353863],[0.0093637071549892,-0.20410799980164,-0.016621531918645]],[[0.17382173240185,-0.088287092745304,-0.056577757000923],[-0.17181867361069,-0.0055057145655155,-0.0088631976395845],[-0.013270962052047,0.073008455336094,-0.085973612964153]],[[0.16789525747299,0.1059144064784,0.048474248498678],[0.085502125322819,-0.060501553118229,0.028226587921381],[-0.094555921852589,-0.11180244386196,0.088619634509087]],[[0.016003113240004,0.03210735693574,-0.083081312477589],[0.018210405483842,0.037367183715105,0.054843835532665],[-0.0015220914501697,-0.047977481037378,0.064054027199745]],[[0.013967577368021,0.027781505137682,-0.043486818671227],[0.036121807992458,0.069676861166954,0.024023316800594],[-0.1606097817421,0.013847704045475,-0.028611900284886]],[[-0.058162774890661,-0.061476062983274,-0.070804931223392],[-0.027469744905829,0.054778195917606,0.021301094442606],[-0.053799707442522,0.094025455415249,0.1180704459548]],[[0.1765012294054,-0.0053208051249385,-0.10092730820179],[0.13270637392998,-0.14598512649536,-0.051066718995571],[0.00094329827697948,-0.053210381418467,-0.023153586313128]],[[-0.0045064836740494,-0.066831678152084,0.021300069987774],[-0.017849195748568,-0.020117998123169,-0.018596690148115],[-0.018958194181323,0.064983241260052,0.027909083291888]],[[-0.0345772318542,-0.11754305660725,0.00022850444656797],[0.011737103573978,-0.10787664353848,-0.075329385697842],[0.069414779543877,0.10212071985006,0.053296830505133]],[[-0.03678497672081,0.078747041523457,-0.0027851806953549],[-0.03969344124198,0.0012354721548036,-0.00253413640894],[-0.040369957685471,0.080920979380608,0.090494759380817]],[[0.018633484840393,0.16160015761852,-0.088864989578724],[0.063040226697922,-0.026663405820727,-0.059027750045061],[-0.064124554395676,-0.040999412536621,-0.15533210337162]],[[0.0034055227879435,-0.0084628127515316,-0.066827565431595],[-0.083941571414471,-0.073357567191124,0.033074919134378],[-0.0090156197547913,0.059875771403313,0.046936642378569]],[[0.03166901320219,0.021289924159646,0.070452228188515],[-0.095924727618694,0.074841842055321,0.087880954146385],[0.024912536144257,-0.0057370965369046,-0.031979162245989]],[[-0.059887580573559,0.026059584692121,0.054828073829412],[-0.14853325486183,0.030898436903954,0.024710558354855],[-0.060266382992268,0.27243629097939,-0.032484121620655]],[[-0.043329078704119,-0.053449608385563,0.084867186844349],[0.037334304302931,0.10743260383606,-0.078317083418369],[-0.10477440059185,0.046423591673374,-0.056556824594736]],[[-0.046235483139753,-0.049391463398933,0.010532779619098],[0.098797291517258,0.053938869386911,0.026774022728205],[-0.14598590135574,-0.02119973115623,0.094192020595074]],[[-0.096228137612343,-0.029182258993387,0.016094751656055],[-0.026713700965047,0.10406152158976,-0.019002830609679],[-0.034788403660059,-0.00022686952434015,-0.055415622889996]],[[0.20281568169594,0.16588141024113,-0.055852521210909],[0.054515939205885,-0.06902901083231,-0.033941365778446],[0.0067663504742086,-0.035638466477394,-0.082624532282352]],[[-0.16189081966877,0.012945999391377,-0.073308020830154],[0.048857513815165,-0.12392870336771,-0.071730338037014],[-0.12975516915321,0.087739855051041,-0.099306590855122]],[[0.023369872942567,0.15728703141212,-0.026138281449676],[0.13157126307487,-0.010760200209916,-0.20219151675701],[0.092919334769249,-0.19732603430748,0.041585694998503]],[[0.14310309290886,-0.024284422397614,-0.090521611273289],[0.13162367045879,-0.11405417323112,-0.011421606875956],[0.045122995972633,-0.12458358705044,-0.12468154728413]],[[-0.050129011273384,-0.036978460848331,0.063222840428352],[-0.1074298247695,0.046956423670053,-0.0029149518813938],[-0.013237641192973,-0.11074074357748,-0.034844417124987]],[[0.12699736654758,0.058098036795855,-0.022774929180741],[0.10000068694353,-0.022761696949601,-0.05313964933157],[-0.012592281214893,-0.0092222783714533,-0.060531470924616]],[[-0.047842256724834,0.067884966731071,0.037278890609741],[0.057167880237103,-0.031042812392116,0.069193579256535],[0.18362064659595,0.051648773252964,-0.058210223913193]],[[0.0245859362185,-0.12261027097702,-0.030506864190102],[-0.013353241607547,-0.090283162891865,-0.030978845432401],[0.086346626281738,-0.004393529612571,-0.027579752728343]],[[-0.11377850919962,-0.029787072911859,0.093526408076286],[-0.12712998688221,-0.16154533624649,0.23975463211536],[-0.067256473004818,0.12940643727779,0.025939816609025]],[[-0.027413405478001,0.105867870152,0.067427024245262],[0.038957353681326,-0.079365715384483,-0.0097287436947227],[-0.15176865458488,0.099052526056767,-0.04011220112443]],[[-0.031450569629669,-0.043220441788435,-0.046768229454756],[-0.002568966941908,-0.10280123353004,-0.18337680399418],[-0.064006842672825,0.027358926832676,0.19429455697536]],[[0.020315969362855,0.089355923235416,-0.11608083546162],[0.02511597238481,-0.020886734127998,-0.0867018699646],[-0.001630186685361,0.045826844871044,0.085450142621994]],[[-0.016270244494081,0.27442583441734,-0.0012527678627521],[0.035529222339392,0.27372473478317,-0.023136772215366],[-0.0304921194911,0.061737291514874,-0.027203179895878]],[[0.10977009683847,-0.078513629734516,-0.017316045239568],[0.014518613927066,-0.011192480102181,-0.021385265514255],[0.036649376153946,0.0139822345227,-0.16338063776493]],[[-0.038874540477991,-0.027696656063199,0.09120474755764],[-0.12960864603519,0.1423501521349,0.00033353516482748],[-0.15880842506886,0.011275037191808,0.23180727660656]],[[-0.0048447768203914,-0.10100562125444,0.070496797561646],[0.059761229902506,-0.030590137466788,-0.0078239711001515],[-0.049642596393824,-0.16183367371559,0.034229170531034]],[[-0.087515287101269,0.017136970534921,0.050303731113672],[0.023968474939466,0.018592284992337,-0.049465022981167],[-0.050780046731234,0.07116212695837,0.053890604525805]],[[-0.013298881240189,-0.03912715613842,0.14535421133041],[-0.18723399937153,-0.0020006350241601,0.10335904359818],[0.032234936952591,0.019799673929811,-0.093008629977703]],[[0.00024693045997992,-0.046690747141838,0.075164720416069],[0.04070945084095,-0.018188124522567,0.043490193784237],[-0.079889081418514,-0.016815107315779,-0.06147750839591]],[[-0.060325942933559,0.0055192839354277,0.11384052038193],[-0.038364481180906,0.18290624022484,0.12630105018616],[-0.0077438745647669,-0.20613272488117,0.046810079365969]],[[0.058504093438387,-0.074982725083828,-0.091958597302437],[-0.032257743179798,0.026139173656702,-0.18002347648144],[-0.061345189809799,-0.10718950629234,-0.032428827136755]],[[0.086914651095867,0.032127309590578,-0.0054295710287988],[-0.084996454417706,0.21830214560032,0.072796121239662],[-0.15961134433746,-0.0775331184268,0.014528990723193]],[[0.14899455010891,0.069270476698875,0.075003139674664],[0.079283088445663,0.10427781939507,-0.0088477246463299],[0.10300149768591,-0.051168788224459,0.025482170283794]],[[-0.0090816067531705,-0.091822609305382,-0.026954354718328],[-0.13636852800846,-0.19220687448978,-0.00308543513529],[0.037606582045555,0.2704838514328,0.057835217565298]],[[0.10707903653383,-0.014348128810525,-0.1973667293787],[0.024442272260785,0.1339076757431,-0.16028366982937],[-0.061452008783817,0.00039850891334936,0.12026900053024]],[[-0.044268518686295,0.13635958731174,-0.068484984338284],[-0.013944637961686,0.046022087335587,-0.030339390039444],[0.073135197162628,0.02248652279377,0.0090512940660119]],[[0.11082881689072,0.046440105885267,-0.03984696790576],[-0.015700044110417,-0.068858556449413,-0.12389462441206],[-0.10816550254822,0.018612459301949,0.084799692034721]],[[0.06031608954072,0.056572861969471,-0.016429366543889],[-0.030948543921113,-0.14909973740578,-0.099249444901943],[0.011830109171569,0.068177953362465,-0.009786194190383]],[[-0.092529252171516,0.059399235993624,0.013469368219376],[0.037026677280664,-0.098012819886208,0.032569881528616],[0.16201165318489,0.089953415095806,-0.012347659096122]],[[0.13853326439857,-0.18106612563133,-0.023320345208049],[-0.085914127528667,0.16182279586792,-0.078459098935127],[-0.044133692979813,0.1527686715126,-0.0041891406290233]]],[[[-0.016887353733182,-0.059507679194212,0.036099757999182],[-0.015884814783931,0.12517234683037,-0.0021470575593412],[0.097687244415283,0.12226209044456,-0.083807520568371]],[[-0.012541722506285,-0.037592586129904,-0.043916404247284],[0.12090450525284,0.12636275589466,0.11324064433575],[0.0012023001909256,0.020641904324293,-0.21111252903938]],[[-0.01353476382792,0.033824145793915,0.065867520868778],[-0.02666949853301,0.029144430533051,-0.011268828064203],[-0.084064766764641,0.060382232069969,-0.061169508844614]],[[0.027800131589174,0.044075723737478,-0.06228381767869],[0.011267001740634,0.045042704790831,0.050715949386358],[0.066302411258221,0.011927752755582,0.069138906896114]],[[0.07852128893137,-0.015161151066422,-0.071683123707771],[-0.058400042355061,0.038072817027569,0.14667418599129],[-0.0064836884848773,0.11182797700167,0.045132178813219]],[[0.085274390876293,-0.027690205723047,-0.040742602199316],[0.0061295577324927,-0.035961873829365,-0.038088593631983],[0.026323586702347,0.048912201076746,-0.044482510536909]],[[-0.013897841796279,-0.050429478287697,0.030778830870986],[-0.084937788546085,0.00094406120479107,0.063024766743183],[-0.11231855303049,-0.046767123043537,0.065698340535164]],[[-0.066987536847591,-0.13525113463402,0.15303756296635],[-0.089420348405838,0.11895279586315,0.067914873361588],[-0.096836574375629,0.033980891108513,0.022155530750751]],[[-0.11651675403118,0.031100369989872,-0.1004840284586],[-0.0028438626322895,0.05973432213068,0.058591742068529],[0.031928084790707,-0.047207441180944,0.1444106400013]],[[-0.0030356626957655,0.068363375961781,-0.045243825763464],[0.074377812445164,-0.028076164424419,-0.066356338560581],[-0.0076994486153126,-0.15675017237663,-0.091099314391613]],[[-0.037346985191107,0.019264565780759,0.085519649088383],[-0.011948052793741,0.10867986083031,-0.0088602043688297],[0.0023763738572598,-0.032917346805334,-0.036832176148891]],[[-0.004238654859364,0.006506368983537,0.1063132584095],[-0.033941131085157,-0.17460452020168,0.018450981006026],[0.060686487704515,-0.032715033739805,-0.026428649201989]],[[0.028681227937341,-0.038412936031818,0.025104302912951],[-0.062903977930546,0.16405011713505,0.099261544644833],[-0.032250445336103,-0.016869911924005,-0.076826296746731]],[[-0.017323732376099,-0.059416808187962,0.045359786599874],[-0.030032662674785,-0.061106029897928,0.060918360948563],[0.10906110703945,0.034478548914194,-0.14886355400085]],[[-0.0093147614970803,-0.034875709563494,0.014157740399241],[0.015461944043636,0.0020009493455291,0.0054776235483587],[-0.073945075273514,0.037729702889919,-0.046160772442818]],[[-0.029098253697157,0.098925404250622,-0.098297663033009],[-0.019074726849794,0.15979543328285,-0.15338650345802],[0.024032112210989,-0.049186959862709,0.18713670969009]],[[-0.13880616426468,0.02584383636713,0.0053922962397337],[0.052407328039408,0.0024965796619654,0.055520065128803],[0.080952636897564,-0.022247960790992,0.039694163948298]],[[0.036920372396708,0.067180499434471,0.015055365860462],[-0.085328668355942,-0.046444810926914,0.019371790811419],[0.027227371931076,-0.10829093307257,-0.037756334990263]],[[-0.026978949084878,0.039322920143604,0.049890533089638],[-0.0071690264157951,0.061156790703535,-0.0055623375810683],[-0.071874029934406,0.0066048405133188,0.079225100576878]],[[-0.031011743471026,0.038649380207062,-0.10021038353443],[-0.014858369715512,-0.0031286031007767,-0.13864597678185],[0.073957338929176,0.062011297792196,-0.069633185863495]],[[0.072086751461029,0.0451271943748,-0.048946212977171],[-0.057915218174458,0.056081634014845,0.0045939614064991],[-0.040538106113672,-0.063807316124439,0.11163884401321]],[[-0.021813394501805,-0.096279263496399,-0.019185237586498],[-0.010325089097023,0.064377024769783,0.044588036835194],[0.022503828629851,0.018084563314915,-0.037658251821995]],[[-0.016050888225436,0.10621435195208,0.049570273607969],[0.0049999416805804,0.076357789337635,-0.097889073193073],[0.0024754027836025,-0.0090524712577462,-0.04384732618928]],[[0.046647872775793,0.039527259767056,-0.052195195108652],[0.053214851766825,-0.011624844744802,0.0091133899986744],[-0.043112255632877,-0.036596938967705,0.042174328118563]],[[0.017652880400419,-0.075279198586941,0.11911879479885],[-0.038780558854342,-0.074995525181293,0.017721090465784],[0.058383855968714,-0.14729176461697,0.038889411836863]],[[-0.020917125046253,0.04293617233634,-0.0080491518601775],[0.051847957074642,-0.021492831408978,0.01161592733115],[0.041918203234673,-0.057796414941549,0.024574752897024]],[[0.061177909374237,0.024876870214939,-0.023991428315639],[-0.01014940533787,-0.026899933815002,-0.0053551574237645],[-0.058054130524397,0.0076872250065207,0.012887147255242]],[[-0.038405328989029,0.012778848409653,-0.063356563448906],[-0.046187721192837,0.031670987606049,0.11516886204481],[-0.097608894109726,-0.043957132846117,0.014486633241177]],[[0.05033740773797,0.0096011962741613,0.026396794244647],[0.057291436940432,-0.0095216324552894,0.011358265765011],[-0.00085806875722483,0.023404320701957,0.003348363796249]],[[0.016688102856278,-0.01466813031584,0.02189202606678],[0.094121851027012,-0.050967898219824,-0.048837274312973],[-0.00058072607498616,0.074718430638313,-0.1015984043479]],[[-0.014917020685971,-0.0001017365793814,-0.034508787095547],[-0.044632531702518,-0.069281958043575,-0.032720733433962],[0.14936944842339,-0.10220541059971,-0.024317381903529]],[[0.082818813621998,-0.016649719327688,0.10691966116428],[-0.079922370612621,0.064508780837059,0.035762462764978],[0.04873901233077,0.01665124297142,-0.010148718953133]],[[0.10916725546122,0.044049695134163,-0.089617803692818],[0.13173964619637,0.1144220456481,-0.11029757559299],[-0.024955034255981,0.020132699981332,-0.04764561355114]],[[0.0095817511901259,-0.064893953502178,0.085175134241581],[0.079218856990337,-0.10089157521725,0.048407480120659],[-0.0026632356457412,0.011027973145247,0.0029055126942694]],[[0.020674794912338,0.047377545386553,0.045469801872969],[0.0074886516667902,0.050649352371693,-0.046019479632378],[-0.070041246712208,-0.0040305312722921,-0.110272154212]],[[0.079413883388042,-0.066656090319157,-0.073695234954357],[-0.029774850234389,0.1090981811285,-0.03262971714139],[0.016223641112447,-0.01636079698801,0.0052670007571578]],[[0.047284588217735,0.11887856572866,0.064231865108013],[0.014802239835262,0.10031511634588,-0.0078917611390352],[0.003205691697076,0.062677852809429,-0.0015264778630808]],[[0.094560153782368,0.031926393508911,0.016946209594607],[0.014680528081954,0.034030441194773,0.062128074467182],[-0.034710817039013,0.026918785646558,-0.024215372279286]],[[0.10352976620197,0.00018126959912479,0.029946634545922],[0.016000078991055,0.055631417781115,-0.052328586578369],[0.0072950669564307,-0.023181514814496,-0.0052017993293703]],[[0.0044172210618854,-0.10277415812016,-0.01454708725214],[-0.05113584920764,-0.028508028015494,0.06186306849122],[-0.021376494318247,0.017203209921718,0.082990489900112]],[[0.014227638952434,-0.00066300947219133,-0.03844628483057],[0.061523772776127,0.0041408981196582,0.013548905961215],[-0.10308633744717,-0.059438232332468,-0.048202943056822]],[[0.025410659611225,0.027841283008456,0.054563332349062],[0.054714720696211,-0.021536169573665,0.079151183366776],[0.10469325631857,0.133376121521,0.034020572900772]],[[-0.016767451539636,-0.0066195530816913,0.053299397230148],[0.095774710178375,-0.058040902018547,-0.0037320316769183],[-0.057567395269871,0.069257475435734,0.052285201847553]],[[-0.041328739374876,0.051777001470327,0.007829018868506],[-0.03397773578763,-0.0077529503032565,0.11165362596512],[-0.026317797601223,-0.066889464855194,-0.028870604932308]],[[0.11479809880257,0.08419831097126,-0.063482291996479],[0.034295909106731,-0.090176485478878,0.014938360080123],[0.075461097061634,0.015237553976476,0.011757373809814]],[[-0.049905925989151,0.17679347097874,0.032233782112598],[0.062438517808914,0.0090300356969237,0.11363194137812],[0.16430267691612,0.03995343670249,0.084449589252472]],[[0.02645480260253,0.067077897489071,0.0076696346513927],[0.13373433053493,-0.026388138532639,0.022676235064864],[0.099030397832394,0.0084480820223689,0.019064934924245]],[[-0.0085572171956301,-0.08196733891964,-0.087791301310062],[-0.022948648780584,0.01341497246176,0.059100940823555],[-0.051589515060186,-0.078265927731991,-0.018858933821321]],[[0.055710978806019,-0.005947622936219,-0.088679239153862],[-0.044521570205688,0.051488671451807,-0.00018386110605206],[-0.0032186305616051,-0.038449797779322,-0.050525840371847]],[[0.0010671087075025,-0.0016707719769329,-0.084347352385521],[0.0027129927184433,0.0070324228145182,-0.00033897254616022],[-0.028214300051332,0.10277763009071,0.10129861533642]],[[0.034525364637375,0.10220539569855,-0.10349993407726],[-0.0061251390725374,-0.021015454083681,-0.11092542111874],[-0.0032596446108073,0.039663322269917,0.03870901465416]],[[0.14014700055122,0.080083034932613,0.067385889589787],[0.039702571928501,-0.022283187136054,-0.028296120464802],[0.042271792888641,-0.068820141255856,-0.028376843780279]],[[-0.067979641258717,-0.043392341583967,-0.032967254519463],[0.087216839194298,0.027881966903806,-0.010580538772047],[0.033114913851023,0.028752811253071,-0.059126924723387]],[[0.043016243726015,-0.022805728018284,0.073175981640816],[0.099630549550056,0.063541226089001,-0.0082071088254452],[0.11775896698236,0.063033699989319,0.038023479282856]],[[-0.01566918566823,-0.043553486466408,-0.021134519949555],[-0.026778576895595,0.15791015326977,0.053603488951921],[0.0028356667608023,-0.055152405053377,-0.0097708310931921]],[[0.0090225590392947,0.015034672804177,0.038359865546227],[0.13309647142887,0.046103116124868,0.0021756137721241],[-0.19447164237499,0.26681470870972,-0.017866088077426]],[[0.11187693476677,-0.037002146244049,-0.026785723865032],[-0.0031392415985465,0.11201614886522,0.054709933698177],[-0.014863391406834,-0.050921965390444,0.068237878382206]],[[0.015775382518768,0.017409374937415,0.025778211653233],[-0.058823462575674,-0.03347247466445,0.02572226524353],[0.080574616789818,0.11570960283279,0.023753954097629]],[[0.03726190328598,-0.032051265239716,0.0032659168355167],[0.055789239704609,0.071470595896244,0.11914119124413],[-0.0018028090707958,-0.17572286725044,0.039924018085003]],[[0.041836600750685,-0.077218674123287,0.044978894293308],[-0.042696747928858,0.024114953354001,0.020906910300255],[0.013877098448575,0.045004297047853,-0.08150689303875]],[[-0.022326601669192,-0.022294944152236,-0.044262010604143],[-0.033526055514812,0.055988598614931,-0.051325149834156],[0.16407500207424,0.0061346981674433,0.021321088075638]],[[-0.10991257429123,0.06206201761961,-0.0024941477458924],[-0.038223210722208,0.026718378067017,0.014229981228709],[-0.045859947800636,0.021926952525973,0.0077708456665277]],[[0.03960756957531,0.00096396933076903,-0.041044533252716],[-0.057986255735159,-0.0002018670347752,-0.014816365204751],[-0.06245869025588,-0.089727982878685,-0.13234859704971]],[[-0.070012040436268,0.035212013870478,0.018990203738213],[0.024117587134242,0.076591782271862,0.0068392721004784],[0.0066746324300766,-0.015061758458614,-0.034297272562981]],[[0.0050047230906785,-0.085710488259792,0.051048595458269],[0.055176872760057,-0.055252198129892,0.0050938832573593],[0.019173478707671,-0.063513860106468,-0.034674532711506]],[[-0.026029175147414,-0.037913471460342,0.022721979767084],[0.023819113150239,0.076036542654037,-0.056198928505182],[0.027583003044128,0.040116745978594,0.0050960201770067]],[[-0.084410198032856,-0.077643297612667,0.18029229342937],[-0.034910395741463,0.070348396897316,0.056335669010878],[0.054363083094358,0.078411616384983,0.055684603750706]],[[0.029729954898357,0.084576569497585,-0.025369329378009],[0.012851502746344,0.016932150349021,-0.10696246474981],[0.12636917829514,-0.029389144852757,0.080186121165752]],[[-0.039371456950903,-0.042938087135553,0.11757085472345],[-0.07438050955534,-0.043942213058472,0.0082548465579748],[0.070413194596767,-0.036570146679878,0.041307877749205]],[[0.00053277495317161,-0.042734835296869,-0.016911026090384],[-0.10486481338739,-0.043698348104954,0.060754746198654],[-0.017965683713555,0.11510507017374,0.010700263082981]],[[0.030997632071376,-0.10267239063978,-0.023425593972206],[0.031496342271566,0.012042632326484,0.064317189157009],[-9.8026648629457e-05,-0.051932416856289,0.0047308378852904]],[[0.099817156791687,0.040468949824572,-0.015162089839578],[-0.043412432074547,0.044747233390808,0.0035613542422652],[-0.13400486111641,-0.08133540302515,0.0076795374043286]],[[0.010693240910769,0.051055662333965,0.07104554772377],[-0.060338504612446,0.10994520783424,-0.063780307769775],[0.05492702499032,0.027025755494833,0.054300710558891]],[[-0.015322706662118,-0.08345077931881,-0.048840660601854],[-0.02501854300499,-0.0097243171185255,0.0046221148222685],[-0.045286972075701,-0.0494374781847,0.02640144340694]],[[0.1369718760252,0.031191756948829,-0.036435917019844],[0.043704200536013,-0.087100222706795,0.015002143569291],[0.016413062810898,-0.034290935844183,-0.047907683998346]],[[-0.020459610968828,-0.01613792963326,-0.050585128366947],[0.016377046704292,-0.12210909277201,-0.02337995916605],[0.020483868196607,-0.14271435141563,0.015549904666841]],[[-0.068947054445744,0.0017332269344479,-0.0060836258344352],[-0.11390726268291,-0.075783148407936,0.031544122844934],[-0.025547262281179,0.03874284029007,0.11918340623379]],[[0.016735952347517,0.085068240761757,-0.097168050706387],[0.034912075847387,-0.069689117372036,-0.030970657244325],[0.036418039351702,0.013158439658582,0.031907133758068]],[[0.027718268334866,-0.06260684132576,0.059090241789818],[-0.013721615076065,-0.088232353329659,0.032758213579655],[0.0040999283082783,-0.027151059359312,-0.00084819691255689]],[[-0.040049020200968,-0.096573904156685,0.088878639042377],[0.00045896452502348,-0.0092315087094903,0.095989346504211],[-0.063904173672199,-0.0218575168401,-0.030039260163903]],[[0.015610806643963,-0.00097984436433762,0.024181354790926],[0.054564692080021,-0.015617138706148,-0.0018821592675522],[0.032948896288872,0.032898865640163,-0.066257260739803]],[[-0.020778054371476,0.024877198040485,-0.067215338349342],[0.11522025614977,-0.0057308180257678,-0.043683975934982],[-0.097565926611423,-0.079599671065807,-0.088070407509804]],[[-0.05246689543128,-0.007061846088618,-0.063852891325951],[0.18174767494202,0.026381306350231,-0.013461076654494],[0.048695717006922,0.023132711648941,-0.01459089294076]],[[0.1146511733532,-0.094249434769154,0.098539598286152],[-0.027629742398858,-0.0067134597338736,-0.0087348129600286],[-0.063119381666183,0.089842766523361,-0.0043068453669548]],[[-0.10062237083912,-0.015450905077159,0.040436659008265],[-0.0694300532341,-0.038698226213455,-0.028186585754156],[0.00069135439116508,0.026036905124784,-0.027904085814953]],[[-0.018695404753089,0.062680825591087,-0.055740121752024],[-0.047393564134836,-0.012311579659581,-0.088397905230522],[-0.069209769368172,-0.051533531397581,-0.082278952002525]],[[-0.029670564457774,0.029775204136968,0.001150329480879],[-0.02975813485682,-0.021711869165301,0.015134766697884],[0.026070225983858,0.0095893125981092,0.046453829854727]],[[0.02136074192822,0.028333649039268,0.019024422392249],[0.13496363162994,-0.097488813102245,0.010111412964761],[0.011495694518089,-0.080025911331177,0.12278045713902]],[[0.11413289606571,-0.031883325427771,-0.022779474034905],[0.10712292045355,-0.076793126761913,0.035553961992264],[0.0098435841500759,0.097802922129631,-0.038658794015646]],[[-0.10115108639002,-0.057696755975485,-0.0065536568872631],[-0.028863575309515,0.033710349351168,-0.052809234708548],[0.058175954967737,0.11013222485781,0.071338251233101]],[[0.015164798125625,-0.055589471012354,-0.12146740406752],[-0.0085215540602803,-0.024559527635574,0.058064125478268],[0.1058836504817,-0.1010023355484,0.073565497994423]],[[0.10126024484634,0.02592614851892,0.053371302783489],[-0.034819185733795,-0.0032109871972352,0.026693487539887],[-0.06505873799324,-0.026113841682673,0.076035499572754]],[[-0.009679819457233,-0.033504299819469,0.19369803369045],[0.022730896249413,-0.010626167990267,0.047237798571587],[0.18033799529076,-0.070710457861423,0.063888788223267]],[[-0.042287386953831,0.10139544308186,0.043358288705349],[0.052089493721724,0.031767476350069,0.017824387177825],[0.0068894289433956,0.08145060390234,-0.25171744823456]],[[-0.037733532488346,0.03522727265954,-0.013020164333284],[0.065355777740479,-0.081191025674343,0.029046373441815],[-0.11009024828672,-0.089271791279316,-0.038797028362751]],[[0.023287549614906,0.017208153381944,0.073312111198902],[0.029761830344796,-0.052894297987223,0.088363416492939],[-0.069135136902332,0.058645412325859,0.15719100832939]],[[0.048140458762646,0.069662600755692,0.081444837152958],[-0.0050771031528711,0.019785782322288,-0.060570832341909],[0.021002251654863,-0.0032451648730785,-0.075833775103092]],[[0.0024514689575881,-0.072882167994976,-0.02618108317256],[0.088979348540306,0.019823558628559,0.11114033311605],[-0.036880787461996,0.0034376354888082,0.097239695489407]],[[0.020141433924437,0.04868546128273,0.076493106782436],[0.074466571211815,-0.083070985972881,0.015601005405188],[0.04548854008317,0.040042143315077,-0.0017485948046669]],[[0.0083886310458183,-0.11551393568516,-0.030852291733027],[-0.092312887310982,-0.055679243057966,0.079613521695137],[0.08489978313446,-0.049422364681959,0.016786316409707]],[[-0.066785208880901,-0.014825936406851,-0.024885294958949],[0.019578881561756,-0.0046864855103195,0.11411581933498],[-0.071757845580578,0.10392759740353,0.0061357989907265]],[[-0.078401327133179,0.12584328651428,-0.012505327351391],[-0.0083112688735127,0.11212249100208,-0.098246462643147],[-0.073802106082439,0.027356149628758,0.032662209123373]],[[0.054278209805489,-0.0045983055606484,-0.01883403211832],[0.062931552529335,0.00043393761734478,0.065407030284405],[0.041163865476847,0.069816894829273,0.067276693880558]],[[0.04493348672986,0.02093848772347,-0.012149968184531],[0.057659886777401,-0.081777848303318,0.0276591014117],[-0.072913490235806,0.079003259539604,-0.0023393041919917]],[[-0.038947019726038,0.083748050034046,0.080634586513042],[0.016937654465437,-0.063481502234936,-0.085286505520344],[-0.08454629778862,0.028938004747033,0.033882420510054]],[[-0.14307759702206,-0.03938952460885,-0.0055886320769787],[0.034223135560751,-0.00092617952032015,-0.10050371289253],[0.097960196435452,-0.0060218726284802,0.040586162358522]],[[-0.026997087523341,-0.069980226457119,-0.049771293997765],[0.0072451159358025,-0.065422996878624,0.055068958550692],[-0.016578931361437,-0.09158780425787,0.0808385014534]],[[-0.051029581576586,-0.034601848572493,-0.02105962485075],[-0.046540260314941,0.030458182096481,-0.041870839893818],[0.05894398316741,0.030848629772663,0.028655296191573]],[[-0.013199750334024,-0.0074092377908528,-0.10433258861303],[-0.033632170408964,-0.032482646405697,0.027682539075613],[-0.055789671838284,-0.041475988924503,0.033087931573391]],[[0.029117237776518,0.042220294475555,0.038589272648096],[0.046357415616512,-0.018293442204595,0.085925057530403],[0.042405594140291,-0.030162245035172,-0.069327339529991]],[[0.022119220346212,-0.084995239973068,0.080959804356098],[0.046498015522957,-0.02636344730854,0.011422068811953],[0.011257326230407,-0.00034432037500665,-0.059673313051462]],[[-0.0093641532585025,0.03869004920125,-0.062497064471245],[0.069386079907417,0.07584960013628,0.047589991241693],[-0.022770863026381,0.051102954894304,-0.1118800342083]],[[-0.029605694115162,-0.063042402267456,-0.022798245772719],[-0.092743486166,-0.13517825305462,-0.05451337620616],[-0.010127856396139,-0.072462342679501,-0.031974170356989]],[[-0.088186360895634,0.15218816697598,0.01113648712635],[-0.016534941270947,-0.0037446282804012,-0.043796181678772],[0.086766757071018,0.047980207949877,0.11857911199331]],[[0.075014129281044,-0.033971264958382,-0.037296310067177],[0.057765603065491,-0.086805894970894,0.0086897546425462],[-0.062015160918236,-0.0721425563097,0.017172522842884]],[[-0.040623012930155,-0.052773840725422,-0.098544090986252],[0.0088249677792192,-0.04648420587182,-0.010227739810944],[-0.03653621673584,-0.042980745434761,-0.043372072279453]],[[-0.0062563810497522,-0.091641709208488,-0.029264910146594],[0.080372117459774,-0.13160549104214,0.020096231251955],[0.036216422915459,0.0062903757207096,0.034773092716932]],[[0.036921981722116,-0.10339272767305,-0.093805864453316],[0.025176558643579,0.056446343660355,-0.039606418460608],[0.024780178442597,-0.094323739409447,0.049467351287603]],[[0.01702094450593,0.00028963116346858,0.045247104018927],[0.0769417360425,0.025858011096716,0.054788112640381],[0.0084841856732965,-0.015954179689288,-0.044318672269583]],[[0.068391770124435,0.10032337903976,-0.085920058190823],[0.059961255639791,-0.07152646780014,0.030818762257695],[0.001940930611454,-0.019667703658342,0.0059838909655809]],[[0.030162435024977,-0.027787555009127,0.043663237243891],[0.060211859643459,-0.0033192418050021,-0.001669698045589],[-0.017906434834003,0.022233091294765,0.11487194895744]],[[-0.025545021519065,0.075928866863251,-0.051026657223701],[0.0646668151021,-0.092236161231995,-0.0083189606666565],[-0.16062061488628,0.057970106601715,-0.0859285145998]],[[0.002124274848029,0.0017055828357115,-0.033198494464159],[0.015085723251104,-0.029740741476417,-0.060473494231701],[0.0047199055552483,0.011731138452888,0.012371513992548]],[[0.010691023431718,0.040532823652029,-0.017891876399517],[-3.5410477721598e-05,0.13888001441956,-0.011337366886437],[0.0084176203235984,-0.13115528225899,0.034315124154091]],[[-0.026899440214038,0.019166819751263,-0.028449522331357],[-0.10560597479343,-0.032604284584522,0.016132839024067],[0.087351508438587,0.048930138349533,0.044835012406111]],[[0.037590328603983,-0.022838842123747,0.095221169292927],[0.041169300675392,-0.035701185464859,0.043357316404581],[-0.033785160630941,0.031358506530523,0.028862545266747]],[[0.007074864115566,0.063217587769032,-0.031993925571442],[0.0065240152180195,0.020150160416961,-0.035449605435133],[0.072880707681179,0.01910238340497,-0.062694355845451]],[[-0.069503054022789,0.061267655342817,-0.12163427472115],[0.06165637075901,-0.039090264588594,0.18728703260422],[-0.048920832574368,-0.022007873281837,-0.077542781829834]]],[[[0.043117992579937,0.0050069475546479,-0.036927349865437],[0.026433592662215,0.051844149827957,-0.012431318871677],[-0.047648802399635,0.022867390885949,0.042699534446001]],[[0.0018133765552193,-0.04567189142108,-0.034775193780661],[-0.024398170411587,-0.01941292360425,-0.034027516841888],[0.04416324198246,-0.053811866790056,-0.047431014478207]],[[0.045871861279011,-0.0061735515482724,0.054630450904369],[0.041265778243542,-0.064049050211906,-0.012440976686776],[-0.0095298998057842,0.030311919748783,-0.068575449287891]],[[0.094520457088947,0.038047481328249,-0.096817992627621],[-0.027352405712008,0.029617896303535,0.031066570430994],[0.027906164526939,0.02016282081604,0.008925867266953]],[[-0.028904814273119,-0.027565110474825,-0.013255979865789],[-0.080285720527172,-0.099851302802563,0.019382392987609],[-0.029905766248703,-0.031320065259933,-0.015943858772516]],[[0.070149503648281,0.067727811634541,0.039198003709316],[0.00070314825279638,0.065310046076775,-0.033252455294132],[0.069678232073784,0.10402395576239,0.032314222306013]],[[0.048407029360533,0.079765409231186,-0.034183856099844],[-0.033642753958702,-0.078542985022068,-0.068528264760971],[0.036542382091284,0.033198740333319,-0.023085599765182]],[[-0.039320465177298,0.052849844098091,0.028185334056616],[-0.035219702869654,-0.0071545797400177,0.058289099484682],[0.032303564250469,0.059442158788443,0.035230305045843]],[[0.018288629129529,-0.12506009638309,0.01804630830884],[0.067795895040035,0.015700547024608,0.01998415030539],[0.060692299157381,-0.0070070158690214,0.023341089487076]],[[0.013357249088585,0.062111832201481,-0.0046100658364594],[0.021913789212704,-0.0021837004460394,0.035325832664967],[-0.073116719722748,0.049876846373081,0.024739997461438]],[[-0.0030625660438091,-0.0056278086267412,0.045956443995237],[-0.014788121916354,-0.045508466660976,0.074431359767914],[-0.035590633749962,-0.023083280771971,0.034987356513739]],[[0.065356627106667,0.045445639640093,0.075591325759888],[-0.023768737912178,-0.074844837188721,-0.018640074878931],[0.040580429136753,-0.017627278342843,0.089261896908283]],[[-0.08527584373951,-0.0042198090814054,-0.00042327828123234],[0.042616702616215,-0.04450860992074,0.050453018397093],[-0.00053285493049771,0.014822695404291,-0.0042351083829999]],[[-0.061569023877382,0.034732930362225,-0.074847914278507],[-0.042725753039122,-0.015889899805188,-0.029367286711931],[-0.007299714256078,0.038639694452286,-0.089865371584892]],[[0.029374895617366,0.0434165969491,-0.08180109411478],[-0.041955333203077,0.0066439043730497,-0.039660699665546],[0.032757911831141,0.046302203088999,0.01757088676095]],[[0.051046654582024,0.073567695915699,0.036364499479532],[-0.04415437951684,0.072823978960514,-0.029594590887427],[0.031021874397993,-0.026127906516194,-0.03254384920001]],[[-0.0085685616359115,-0.082931987941265,-0.053061105310917],[0.085715629160404,0.059335306286812,-0.043408345431089],[-0.02830052934587,0.03076272085309,-0.0015114853158593]],[[-0.022413937374949,0.0038521280512214,0.059736654162407],[0.066718719899654,-0.10632494837046,-0.01934677362442],[0.0067006764002144,-0.025543196126819,0.073308639228344]],[[-0.0084811309352517,-0.03329499438405,0.045672915875912],[0.046802654862404,0.0047963745892048,0.040242671966553],[-0.035100199282169,0.046169929206371,0.074254930019379]],[[0.001009427360259,0.043765772134066,-0.029492875561118],[-0.086350224912167,0.012001696042717,-0.098753988742828],[-0.055913362652063,-0.033467940986156,-0.081953406333923]],[[-0.0017650625668466,-0.051675848662853,0.0076337680220604],[-0.048001665621996,0.077510975301266,-0.047292739152908],[0.013845670036972,-0.025996077805758,-0.0021525996271521]],[[0.037410445511341,-0.0023969179019332,0.091567434370518],[0.095123149454594,0.037457037717104,0.052270706743002],[0.034050699323416,0.10037646442652,-0.021003600209951]],[[0.05593441054225,0.019763384014368,0.042390897870064],[-0.02054232917726,0.029726399108768,-0.015807438641787],[0.015500953420997,0.0061362092383206,-0.0099794110283256]],[[0.080675937235355,0.036946278065443,-0.06311509013176],[0.039058264344931,0.023874057456851,0.074297174811363],[0.072785645723343,0.02742531336844,-0.073741219937801]],[[0.034546654671431,-0.026421150192618,0.076279409229755],[-0.030290819704533,-0.03203684464097,-0.093583427369595],[0.023986998945475,0.01392640452832,-0.025020249187946]],[[-0.014719786122441,0.048839692026377,0.064421072602272],[-0.044878780841827,0.065472163259983,-0.044522289186716],[0.10102540254593,-0.056700836867094,-0.018593175336719]],[[0.10688284784555,-0.010239373892546,-0.019708843901753],[0.0097122890874743,0.021652240306139,-0.0012081442400813],[0.034337002784014,0.0014720158651471,0.07590139657259]],[[0.039880979806185,0.058815818279982,0.026706870645285],[0.0083253961056471,0.070574931800365,0.076267637312412],[-0.047969844192266,-0.006327364128083,0.11216247081757]],[[0.072876892983913,0.015373919159174,-0.0089342845603824],[0.015359718352556,-0.086557611823082,-0.0059776892885566],[0.0069818124175072,0.03699354082346,0.013825374655426]],[[0.0047312770038843,-0.025281837210059,-0.040212370455265],[0.07390782982111,-0.022404823452234,-0.061617106199265],[-0.057396490126848,-0.030585655942559,0.070823818445206]],[[-0.023315386846662,-0.024169132113457,0.00018461277068127],[0.0060540945269167,0.077095173299313,0.068457596004009],[0.0099918432533741,0.0059029464609921,0.04667891189456]],[[0.022389212623239,-0.012479132972658,0.025401739403605],[-0.0094536524266005,-0.024047907441854,-0.061377849429846],[0.0013673382345587,-0.0041621159762144,0.043681591749191]],[[0.054287422448397,0.094425342977047,-0.00084703182801604],[0.067430280148983,-0.034161258488894,0.003804792650044],[0.023095278069377,0.074081227183342,-0.038966335356236]],[[0.063535667955875,0.065823785960674,0.017318833619356],[0.061336297541857,0.020816065371037,0.087941877543926],[-0.07220159471035,-0.071013830602169,-0.03184712305665]],[[-0.018139496445656,0.030932294204831,-0.10744868963957],[0.018770594149828,0.001237399992533,-0.018114039674401],[0.057035695761442,-0.043815687298775,-0.03630019724369]],[[0.067895136773586,-0.024636944755912,-0.079904355108738],[-0.0071859275922179,-0.041473168879747,0.069631703197956],[-0.014124774374068,-0.075020335614681,0.05187988653779]],[[0.0074257352389395,0.077833525836468,0.023392762988806],[-0.0059973616153002,0.020921299234033,0.0054835663177073],[0.071497730910778,-0.077771261334419,0.075098529458046]],[[-0.048588361591101,-0.013846310786903,-0.071141839027405],[0.031413417309523,-0.053451273590326,-0.17357708513737],[0.049642473459244,-0.0018216676544398,0.0071031493134797]],[[-0.038431838154793,-0.02203893661499,0.017312165349722],[-0.015834541991353,0.0038432313594967,-0.065688662230968],[-0.060130208730698,0.021457936614752,0.089214749634266]],[[-0.031513996422291,-0.076665788888931,0.069430269300938],[0.042892280966043,0.098847039043903,0.096725061535835],[0.052724450826645,0.0094962399452925,-0.040784738957882]],[[0.012984617613256,-0.028679501265287,-0.024786952883005],[0.00018996231665369,-0.0076548587530851,0.024822356179357],[0.012630427256227,0.033951066434383,0.049041442573071]],[[0.09935512393713,0.064711153507233,0.063790492713451],[0.037458326667547,0.093990877270699,0.0020499820820987],[0.11000273376703,0.0073916353285313,0.058353077620268]],[[-0.019086964428425,0.072264388203621,0.13032369315624],[0.19469986855984,0.033507131040096,-0.0057362169027328],[0.042022217065096,0.075275219976902,0.016209315508604]],[[-0.06977379322052,0.106718711555,-0.077043198049068],[-0.010213167406619,0.033096361905336,0.0065333233214915],[-0.086671188473701,0.037435960024595,0.019793529063463]],[[0.050379540771246,0.019828571006656,0.12327048927546],[0.027472635731101,-0.020905900746584,0.03090526163578],[0.048578873276711,0.043968345969915,-0.023281082510948]],[[0.12399995326996,0.064509600400925,0.14031201601028],[0.056736886501312,-0.0056269019842148,0.097057953476906],[0.02904025092721,0.041695229709148,-0.021876461803913]],[[0.08452008664608,-0.0060506113804877,-0.013244562782347],[-0.027594359591603,-0.031030703336,0.015983667224646],[-0.045659974217415,-0.008798411116004,-0.027693435549736]],[[-0.063474953174591,-0.036343898624182,0.013234193436801],[-0.052556794136763,0.052678845822811,-0.026231344789267],[-0.10169512778521,-0.031036581844091,-0.012064168229699]],[[0.019824573770165,-0.0045832693576813,0.036319606006145],[0.0040906700305641,-0.0011367360129952,0.030460862442851],[-0.078638806939125,0.05542940273881,0.030226353555918]],[[-0.0016513845184818,0.072160735726357,-0.074904955923557],[0.0053119603544474,-0.054516475647688,-0.03858594596386],[-0.017514906823635,0.053276263177395,0.027541922405362]],[[0.047146379947662,-0.069930195808411,-0.0063780657947063],[-0.0084420647472143,-0.076385140419006,0.010307757183909],[-0.056789770722389,-0.040514167398214,-0.0039552464149892]],[[-0.0033779903315008,0.052985731512308,-0.052299521863461],[0.065511472523212,0.013150596059859,0.00022625119891018],[0.019270222634077,-0.014212658628821,-0.0085995811969042]],[[-0.0086245248094201,0.093056745827198,0.04288462549448],[0.0075145815499127,-0.030910085886717,0.032480012625456],[0.11779065430164,-0.052830167114735,0.019317213445902]],[[0.064196690917015,0.018381370231509,0.028380189090967],[-0.010857415385544,0.10846521705389,0.026289187371731],[0.083606898784637,-0.020339777693152,0.025011172518134]],[[0.02007514052093,0.008758045732975,0.020504027605057],[-0.049064066261053,0.0036453390493989,-0.00046778193791397],[-0.040495064109564,-0.00087346060900018,0.014190793968737]],[[-0.09648858755827,-0.040372129529715,0.030656218528748],[0.097032688558102,0.074573017656803,-0.0074970345012844],[-0.044253468513489,0.051524367183447,-0.0057572452351451]],[[0.010283282957971,-0.0085083758458495,0.034424968063831],[0.080419301986694,0.046689607203007,0.024596782401204],[0.042869474738836,0.0039695678278804,0.014906267635524]],[[0.01387532427907,-0.0271324403584,-0.031663179397583],[-0.057788293808699,0.025846751406789,0.10239835828543],[-0.014911810867488,-0.085444502532482,-0.0061992825940251]],[[-0.060802169144154,-0.0039762211963534,0.031560845673084],[0.047252275049686,0.035343401134014,0.083956368267536],[0.045898836106062,0.07613180577755,0.014454176649451]],[[-0.089557319879532,-0.099868811666965,0.055161777883768],[-0.0065100332722068,0.055620517581701,0.0032185795716941],[0.045171838253736,-0.019409336149693,0.01660393178463]],[[0.065989308059216,0.030962655320764,-0.017563020810485],[0.041641436517239,0.010166774503887,0.030494986101985],[0.053445901721716,0.048077236860991,-0.019189056009054]],[[-0.020167272537947,-0.014566366560757,-0.062493983656168],[-0.017191490158439,-0.025485266000032,-0.014821883291006],[-0.022895993664861,-0.074008077383041,0.095172539353371]],[[0.016790026798844,-0.018371822312474,-0.043303042650223],[0.049194693565369,0.026873173192143,0.016036355867982],[-0.084996096789837,0.047127071768045,0.032344359904528]],[[0.035561449825764,0.044595215469599,0.056554917246103],[0.042021881788969,0.062424018979073,-0.03587893396616],[-0.027129651978612,0.019274432212114,0.026154451072216]],[[-0.078839659690857,-0.0038447512779385,0.076193921267986],[0.024520836770535,-0.047967948019505,-0.015105656348169],[-0.0027105822227895,-0.046817667782307,0.018439190462232]],[[0.013557486236095,0.070309214293957,0.061022531241179],[0.065828673541546,0.098429344594479,-0.012953733094037],[-0.070538319647312,0.069178611040115,0.035318490117788]],[[-0.11400168389082,-0.069019414484501,0.055671162903309],[-0.018970044329762,0.0051812548190355,0.073516741394997],[-0.0070173805579543,0.012397793121636,0.062838777899742]],[[0.048004560172558,0.027504252269864,-0.081650421023369],[0.038068171590567,-0.019586587324739,0.017661660909653],[0.037993177771568,0.030249305069447,-0.084232658147812]],[[0.072195366024971,0.011292591691017,-0.0031786714680493],[0.066245876252651,-0.085558705031872,0.06521550565958],[0.086331553757191,-0.045498952269554,0.0010280570713803]],[[-0.043586060404778,0.018217995762825,0.020763672888279],[0.031773198395967,0.015258976258337,0.032437648624182],[0.048302557319403,0.017090506851673,-0.042256888002157]],[[0.0037051739636809,0.10357689857483,0.048827104270458],[0.02574092335999,0.057277321815491,0.096830666065216],[-0.010651312768459,0.079848051071167,-0.0093672964721918]],[[0.10093988478184,-0.025030931457877,0.011581865139306],[0.0026591161731631,-0.025914238765836,0.0176807846874],[-0.060564152896404,-0.051043782383204,0.10501230508089]],[[0.037247251719236,0.0046051358804107,-0.027642495930195],[-0.050837144255638,-0.0034990254789591,-0.017293894663453],[-0.049418319016695,0.036385055631399,0.068271927535534]],[[0.045139037072659,0.064741395413876,-0.040245991200209],[0.04814762249589,0.0091588450595737,0.043815262615681],[-0.040586058050394,0.0095363622531295,-0.0017117034876719]],[[-0.026698738336563,0.019342325627804,0.075537346303463],[0.00064193928847089,0.02562359534204,0.012576368637383],[0.026654679328203,0.0025015890132636,-0.042886342853308]],[[0.038200490176678,0.03295374661684,0.0095661748200655],[0.068272821605206,-0.01760813780129,0.079694867134094],[0.0062062162905931,0.035388492047787,-0.023232223466039]],[[-0.0069612707011402,0.015526605769992,0.035792868584394],[0.0377092435956,-0.016010081395507,-0.070964060723782],[-0.0251484233886,0.052774555981159,0.036071803420782]],[[0.062425129115582,0.054366797208786,-0.013470884412527],[0.10731422156096,0.092589527368546,-0.027144836261868],[0.10522753000259,-0.016544867306948,-0.0059408149681985]],[[-0.055559609085321,0.028726330026984,0.022594822570682],[-0.035125575959682,0.0049891695380211,0.045592661947012],[-0.056537520140409,0.031160276383162,0.039710380136967]],[[0.012810510583222,0.00088408694136888,-0.054670594632626],[0.0091879572719336,-0.020885270088911,0.11271993070841],[-0.0038338846061379,-0.056517340242863,0.071882307529449]],[[0.0047005605883896,-0.038886222988367,-0.10129954665899],[0.030890861526132,-0.010161817073822,0.050296876579523],[-0.10927284508944,0.0049910955131054,-0.0071491971611977]],[[-0.028946220874786,0.021123424172401,0.014891709201038],[0.044484820216894,0.004425214137882,-0.00066326704109088],[0.055918637663126,0.0031503704376519,0.01532072480768]],[[0.02059574984014,-0.032375011593103,0.12036518752575],[0.081163480877876,-0.10419944673777,0.032049212604761],[-0.044244341552258,0.015352903865278,-0.021858245134354]],[[-0.059224259108305,0.0046543558128178,-0.031836573034525],[-0.017068523913622,0.024035081267357,0.016747962683439],[-0.001755544450134,-0.072442121803761,0.022403106093407]],[[-0.011486428789794,0.089603289961815,0.0061190468259156],[-0.033170390874147,0.040113002061844,0.0083956131711602],[0.041460912674665,0.039567302912474,0.043716441839933]],[[-0.020982142537832,0.082660175859928,0.015566658228636],[0.049685500562191,-0.079976066946983,0.017027448862791],[-0.033115901052952,0.002215061802417,-0.063002035021782]],[[-0.063540138304234,-0.016845298931003,0.0179950799793],[0.033624611794949,-0.013456616550684,-0.016845945268869],[0.014044148847461,0.015167973935604,0.048663273453712]],[[-0.0038481818046421,-0.010891153477132,-0.043087143450975],[0.016263661906123,-0.074488028883934,0.02912675589323],[-0.038757797330618,0.07279309630394,0.038884341716766]],[[0.10970176011324,-0.035729989409447,0.05398129299283],[0.013287696987391,-0.003995890263468,0.060159865766764],[0.032867681235075,0.0095634125173092,0.0025446664076298]],[[0.0014316277811304,-0.12604941427708,-0.060086376965046],[0.065325029194355,-0.10233386605978,0.038314029574394],[0.025426747277379,0.043374739587307,0.019628267735243]],[[-0.023595111444592,-0.04084711894393,0.016360308974981],[0.037604097276926,0.058245159685612,0.056952033191919],[-0.0058955163694918,0.11016280204058,0.069054923951626]],[[-0.10924682021141,0.026398181915283,-0.036918938159943],[0.086344681680202,-0.069791533052921,-0.090525522828102],[-0.024315403774381,-0.019554324448109,0.0069143031723797]],[[0.034548159688711,-0.0082427393645048,0.075455963611603],[-0.0052516967989504,-0.0053687910549343,0.086884632706642],[-0.0075826696120203,0.012219564989209,-0.057084731757641]],[[-0.0031339873094112,0.11677579581738,0.049786295741796],[-0.064507126808167,-0.04947592318058,0.019541306421161],[0.028438868001103,-0.037181153893471,0.078189738094807]],[[-0.13841980695724,0.0007175225764513,-0.01512449234724],[0.024556843563914,-0.010287159122527,0.023400563746691],[-0.05560515448451,-0.066549576818943,-0.025737289339304]],[[-0.068769067525864,-0.0097871301695704,0.030768964439631],[0.05249547958374,0.064708523452282,0.026961671188474],[0.045323830097914,0.04561061039567,0.058502543717623]],[[-0.036288119852543,0.037055928260088,-0.028121707960963],[-0.015895770862699,-0.0050427354872227,0.0021848587784916],[-0.00056632590712979,0.052023489028215,0.017226377502084]],[[0.070272505283356,0.048398658633232,0.108992010355],[0.034022837877274,-0.0091936308890581,0.048254426568747],[0.12168511003256,0.065253287553787,-0.027081497013569]],[[-0.0019319532439113,-0.012499336153269,0.0091846268624067],[0.024641219526529,-0.079014927148819,-0.035053946077824],[0.023218352347612,-0.020077532157302,-0.010140615515411]],[[0.046796850860119,0.0052649369463325,-0.0042544128373265],[-0.024668173864484,-0.013936225324869,0.052963502705097],[0.045190084725618,-0.071602545678616,0.036111325025558]],[[0.033543955534697,-0.063724093139172,-0.046937942504883],[-0.036494117230177,-0.012424285523593,-0.0093907685950398],[-0.068082094192505,0.015884581953287,0.013671462424099]],[[0.10172535479069,0.064280904829502,-0.039191283285618],[0.033122897148132,-0.0081047611311078,0.080630831420422],[0.046643555164337,-0.023566862568259,0.039196193218231]],[[0.00056306441547349,0.011161932721734,0.10584633797407],[-0.0069890785962343,-0.091070763766766,0.016499079763889],[0.078563429415226,-0.034680251032114,0.08296575397253]],[[-0.018271569162607,0.03303824737668,-0.064667105674744],[0.014757040888071,-0.078619837760925,-0.052684705704451],[-0.085767291486263,-0.037857364863157,0.011238122358918]],[[-0.038969669491053,-0.047264445573092,-0.0055821361020207],[0.020945880562067,0.090003617107868,-0.019478121772408],[-0.051042210310698,0.022026503458619,-0.0059465323574841]],[[0.055148713290691,0.0069851623848081,-0.024227282032371],[0.13682422041893,0.033022660762072,-0.045570343732834],[0.025688705965877,0.035239782184362,-0.076546095311642]],[[0.060481462627649,0.011160420253873,0.068330809473991],[-0.062809005379677,-0.0015178284374997,-0.061274323612452],[0.046411730349064,-0.020975587889552,-0.049570515751839]],[[0.011624194681644,0.0017714332789183,-0.10793823748827],[-0.040260046720505,0.0084799807518721,0.034095961600542],[-0.013015551492572,-0.059372615069151,0.02775046415627]],[[-0.0061995894648135,-0.012337950058281,-0.033741787075996],[-0.0063529047183692,5.6922304793261e-05,0.041430968791246],[-0.033552344888449,-0.087116874754429,-0.10130248963833]],[[0.1030340641737,0.041174855083227,-0.050250992178917],[0.0169170293957,-0.021248834207654,-0.032930877059698],[0.030130881816149,0.057653218507767,0.060692064464092]],[[0.0098162647336721,0.013619133271277,-0.059315394610167],[0.078280121088028,-0.078272268176079,-0.032435361295938],[0.052595723420382,0.00034987617982551,-0.021671270951629]],[[-0.084259897470474,-0.062401901930571,-0.0095167718827724],[0.093340866267681,-0.052840132266283,-0.075087331235409],[0.022623540833592,-0.048670951277018,0.0078707421198487]],[[-0.0091146416962147,-0.051196355372667,-0.065299607813358],[-0.035539600998163,0.014144987799227,0.067905090749264],[0.031571555882692,0.063028387725353,-0.050761912018061]],[[-0.0012918198481202,0.02926186285913,0.025314075872302],[0.038485866039991,-0.035563606768847,-0.0096994368359447],[0.018793065100908,0.008772543631494,-0.0008948264294304]],[[-0.018909901380539,0.031516019254923,-0.028076203539968],[-0.036941517144442,0.066471844911575,-0.079300679266453],[0.0041979257948697,-0.069662690162659,-0.088901683688164]],[[-0.0024414989165962,0.083562187850475,-0.11379764974117],[-0.057403068989515,0.044384513050318,-0.086997292935848],[-0.025682399049401,-0.0060798609629273,0.090251788496971]],[[0.048796765506268,-0.090360641479492,0.015028825961053],[-0.022272093221545,0.017474414780736,0.01320568099618],[0.059524916112423,-0.013082748278975,0.032766036689281]],[[-0.072005674242973,0.01183479744941,-0.038379676640034],[-0.037766188383102,-0.05550130084157,0.037958696484566],[0.0034546696115285,-0.11792960762978,0.067796654999256]],[[0.048526238650084,-0.055401723831892,-0.071838922798634],[-0.019531011581421,-0.076192885637283,-0.025144366547465],[-0.092260673642159,-0.038114674389362,0.0066799591295421]],[[0.04916563257575,0.063444547355175,-0.011676734313369],[0.036695826798677,-0.027804693207145,0.030312715098262],[-0.024161547422409,-0.0019569490104914,-0.044817395508289]],[[-0.037803780287504,0.082957722246647,0.038677901029587],[0.038447786122561,0.033819530159235,0.0078949853777885],[0.01412495970726,0.038600493222475,0.097283884882927]],[[-0.038567792624235,0.046487435698509,9.2564201622736e-05],[0.017565390095115,0.023559406399727,-0.0048187961801887],[-0.031514156609774,-0.1095255240798,0.021798223257065]],[[0.037727996706963,0.038982126861811,0.061350546777248],[-0.0038709784857929,-0.065504290163517,0.0098301591351628],[-0.019793421030045,-0.010001296177506,0.014782004058361]],[[0.0060739433392882,0.0074123223312199,0.039117529988289],[-0.041854485869408,0.034637838602066,-0.049367371946573],[-0.082447938621044,-0.018788073211908,-0.10863003879786]],[[0.031796485185623,0.014408093877137,0.049508772790432],[0.0099569782614708,0.04899225383997,-0.021142026409507],[-0.021586710587144,0.060942865908146,-0.055525951087475]],[[-0.042017601430416,0.02895649895072,-0.0074508362449706],[0.003140062559396,-0.078381337225437,0.0034054417628795],[0.019231220707297,0.051545467227697,-0.047556456178427]],[[0.048817738890648,-0.0015273729804903,0.13022704422474],[0.013931008987129,0.013637932948768,0.064325504004955],[0.031483966857195,0.030142106115818,-0.029021302238107]],[[-0.018356891348958,-0.10109493136406,-0.027660032734275],[0.048790119588375,0.026027824729681,0.099550671875477],[-0.072507575154305,-0.0048009096644819,-7.5073927291669e-05]]],[[[0.092056892812252,0.080966949462891,0.08480154722929],[-0.018318112939596,0.044321820139885,0.0077604232355952],[-0.0064646988175809,0.080294482409954,0.021433109417558]],[[0.048067901283503,0.041693147271872,0.075029216706753],[-0.0029425870161504,0.0075840265490115,0.11257823556662],[-0.027053920552135,-0.012730011716485,-0.04510260745883]],[[-0.013190812431276,0.12455821782351,-0.08345053344965],[-0.023053478449583,-0.052458856254816,-0.018324166536331],[0.03967696800828,0.15328943729401,-0.089264333248138]],[[-0.20834754407406,0.22523674368858,0.17997461557388],[0.0062667401507497,-0.0081850001588464,0.12486553192139],[0.18557657301426,-0.1056105569005,-0.22078405320644]],[[0.028416883200407,0.047937016934156,-0.00028662162367254],[0.011391975916922,0.035810522735119,0.0043175490573049],[0.084958262741566,-0.034612044692039,0.094575360417366]],[[-0.057717598974705,-0.035378441214561,0.055906523019075],[-0.012786774896085,0.059270743280649,0.074259303510189],[0.058600340038538,-0.057804346084595,-0.020738638937473]],[[0.095042407512665,-0.0052106501534581,0.063250347971916],[-0.07836952060461,0.010021112859249,0.037430621683598],[-0.13963255286217,-0.12959088385105,0.072253651916981]],[[-0.0016062472714111,0.026759805157781,-0.11801803857088],[-0.076001346111298,-0.028818618506193,-0.10831455886364],[-0.075696587562561,0.035002671182156,0.0531359128654]],[[-0.032190531492233,0.092876851558685,0.087878495454788],[-0.13156844675541,0.069552674889565,-0.13470886647701],[0.12580993771553,-0.034192133694887,0.046957671642303]],[[-0.02244670689106,0.0018585057696328,-0.10366573929787],[0.11746392399073,0.069428145885468,-0.0053000366315246],[0.065461345016956,0.10819062590599,-0.042138192802668]],[[0.077569112181664,-0.011131345294416,0.045536175370216],[0.014460981823504,0.02071487903595,0.098385512828827],[0.0044663650915027,0.021115396171808,0.017096918076277]],[[-0.046146120876074,0.075877770781517,0.11674300581217],[0.071560248732567,-0.027525432407856,-0.068304792046547],[-0.038752660155296,0.010106933303177,-0.087846912443638]],[[-0.033168934285641,-0.11208149790764,-0.045572433620691],[0.0063626193441451,-0.061111319810152,0.11647541821003],[-0.084384426474571,-0.0025046004448086,0.0873718932271]],[[0.083186008036137,0.010395693592727,-0.19621808826923],[0.087039522826672,0.10393463075161,-0.019103154540062],[-0.055645648390055,-0.08761166036129,0.049572959542274]],[[-0.21384112536907,0.07293263822794,0.071711346507072],[0.0023062049876899,-0.22508937120438,0.098820298910141],[0.070359848439693,0.026806369423866,-0.30323114991188]],[[0.035347107797861,0.11091163754463,0.014791564084589],[-0.056701224297285,0.045383129268885,0.083656571805477],[0.032028585672379,-0.040725711733103,-0.090909503400326]],[[-0.028907461091876,-0.0082305707037449,-0.096542581915855],[0.0010922498768196,0.0032362183555961,-0.0079244319349527],[-0.014045180752873,0.063422381877899,0.035286270081997]],[[0.020899446681142,0.038038901984692,-0.0071583767421544],[-0.04570635035634,-0.054499708116055,0.12107211351395],[-0.079777091741562,-0.12512418627739,0.12927943468094]],[[-0.0035081554669887,0.18720243871212,0.10977653414011],[0.013258730992675,0.0097353309392929,0.01421576179564],[-0.047331534326077,-0.10584332048893,0.086308233439922]],[[0.0093110995367169,0.027567388489842,-0.052134063094854],[0.0099104531109333,0.085678577423096,0.037478666752577],[0.050425484776497,0.14528401196003,-0.081938445568085]],[[0.040515411645174,0.031300954520702,0.068327099084854],[-0.073865823447704,-0.026356162503362,0.15600790083408],[-0.030457871034741,-0.17849619686604,-0.17030660808086]],[[0.047514446079731,-0.01115436013788,0.047704882919788],[0.017596004530787,0.033131506294012,0.039070919156075],[-0.11261948943138,0.021029388532043,0.024438556283712]],[[0.038290981203318,0.11104572564363,0.031714659184217],[0.058673903346062,0.099026180803776,0.09089220315218],[-0.10963103920221,-0.11424261331558,-0.1248407959938]],[[0.060744851827621,0.021523101255298,0.091114811599255],[0.02402713149786,0.12468887120485,-0.062415681779385],[0.070376046001911,-0.10973413288593,-0.10718779265881]],[[0.38021421432495,0.24498738348484,-0.27305275201797],[-0.11091398447752,-0.085934065282345,0.25015842914581],[-0.18759995698929,-0.03959583491087,-0.055576551705599]],[[-0.0031642443500459,0.050505254417658,0.097048193216324],[0.19416365027428,-0.055990245193243,-0.062730543315411],[0.057149142026901,0.050924137234688,-0.036227475851774]],[[-0.062585592269897,0.078040309250355,-0.049798086285591],[-0.065832108259201,-0.099278181791306,-0.13820350170135],[-0.0080368565395474,0.052685391157866,0.023054074496031]],[[-0.079811863601208,-0.053530547767878,0.080442100763321],[-0.058429349213839,-0.14726980030537,-0.17919108271599],[-0.18819123506546,0.045393116772175,-0.2183653563261]],[[-0.088049001991749,0.026498105376959,0.039881255477667],[0.035762686282396,0.039745148271322,0.002728400984779],[-0.11939637362957,0.0014201099984348,-0.032963175326586]],[[-0.10718593001366,-0.040186461061239,-0.0064249755814672],[-0.046093802899122,0.099495083093643,0.018988884985447],[-0.0097595425322652,-0.10871808230877,0.013142885640264]],[[-0.049649775028229,-0.093527749180794,-0.033537410199642],[-0.073793061077595,-0.023550419136882,0.079756215214729],[-0.069975964725018,0.15152558684349,0.092114567756653]],[[0.0028968162368983,-0.071948185563087,0.028915548697114],[-0.025497289374471,-0.021555686369538,-0.017694426700473],[0.0093572176992893,-0.16688878834248,-0.021926272660494]],[[-0.062109757214785,-0.023081131279469,0.009506918489933],[0.0089161889627576,0.057929109781981,0.16881433129311],[-0.076857581734657,-0.0085631469264627,0.030002448707819]],[[-0.028038768097758,-0.056179635226727,0.018753910437226],[0.051028560847044,0.0091287009418011,0.18448336422443],[0.051459476351738,-0.084254302084446,0.07005313783884]],[[-0.035056717693806,0.0014440577942878,0.069007731974125],[-0.061890423297882,-0.01304226834327,-0.03533985838294],[-0.042410872876644,-0.013911576941609,0.012672828510404]],[[-0.085838221013546,0.043522384017706,0.0011760002234951],[-0.060329414904118,-0.070848613977432,0.13321721553802],[-0.044995553791523,-0.18255496025085,0.08585873991251]],[[-0.067154958844185,0.16197054088116,-0.016859866678715],[-0.045656617730856,0.011127907782793,0.035701628774405],[0.013690356165171,0.041361223906279,-0.12844027578831]],[[0.026957027614117,0.018682220950723,-0.080677203834057],[-0.037963502109051,-0.0039659603498876,0.044499628245831],[-0.050308082252741,0.12633337080479,-0.054314028471708]],[[0.040134571492672,0.063019894063473,-0.065193712711334],[0.062610775232315,-0.040659874677658,-0.062461018562317],[-0.071508623659611,-0.024803344160318,-0.043773971498013]],[[-0.022501856088638,0.054911505430937,-0.083909243345261],[-0.0047545842826366,0.048702906817198,-0.008188926614821],[0.094734683632851,-0.013087298721075,0.044075228273869]],[[0.022680958732963,0.011051150970161,-0.0093340259045362],[-0.061017800122499,0.008879710920155,-0.027100345119834],[-0.14633399248123,0.023083426058292,0.10575820505619]],[[0.04639295488596,0.10074661672115,-0.042531110346317],[0.024305030703545,-0.029626205563545,0.10532750934362],[-0.020831249654293,-0.075042873620987,-0.00072179775452241]],[[-0.032602399587631,0.03222294151783,-0.085417203605175],[0.050789635628462,-0.14175742864609,0.3337567448616],[-0.14689919352531,0.24294777214527,-0.050791803747416]],[[-0.0081549407914281,-0.013801787048578,0.15627770125866],[-0.0071112224832177,0.069597788155079,0.19439266622066],[0.0069448594003916,0.024371968582273,0.124381698668]],[[-0.058235052973032,0.017466887831688,-0.021862968802452],[-0.044304419308901,0.063774332404137,0.015546691603959],[-0.0043267337605357,-0.043054699897766,-0.086127564311028]],[[0.010662510059774,0.02343468926847,0.022864995524287],[0.083691619336605,-0.11436276137829,0.040824748575687],[-0.010425535961986,0.11338836699724,-0.04880091920495]],[[-0.13997228443623,-0.00028631457826123,0.035346165299416],[0.07609398663044,0.0097739137709141,-0.18417897820473],[0.052547667175531,0.0079214796423912,-0.1421665251255]],[[-0.078671537339687,-0.12285956740379,-0.02407400496304],[0.0040798182599247,0.00046956940786913,0.17862936854362],[0.0021367291919887,0.038228038698435,0.059413220733404]],[[0.14870272576809,-0.0055689020082355,0.078070394694805],[0.020145501941442,0.018623964861035,-0.057825930416584],[0.087560750544071,-7.6106152846478e-05,0.024320339784026]],[[-0.060236874967813,0.028549632057548,0.0053504747338593],[-0.024588171392679,-0.17181190848351,-0.033410292118788],[-0.076688922941685,-0.064672708511353,-0.12195735424757]],[[0.020287791267037,-0.023569900542498,-0.058246582746506],[0.032936315983534,0.11635822057724,0.005641832947731],[-0.03101853094995,0.03369253501296,-0.050384514033794]],[[0.0151851112023,0.076764978468418,-0.055084738880396],[0.077341377735138,-0.035125181078911,-0.021533492952585],[0.060290422290564,0.014849600382149,0.06548336148262]],[[-0.019877010956407,-0.069634400308132,-0.030636191368103],[-0.088878601789474,-0.068648122251034,0.01120506413281],[-0.11687231808901,0.047108415514231,0.011002765037119]],[[-0.02377936989069,-0.057277347892523,-0.018104923889041],[-0.012599333189428,0.025897236540914,0.025153959169984],[0.018427073955536,-0.004589784424752,0.13651722669601]],[[-0.051362968981266,-0.13918617367744,-0.13700371980667],[-0.078553587198257,0.060724295675755,-0.097750172019005],[-0.0764230042696,-0.054277639836073,0.033330760896206]],[[-0.15703426301479,-0.074540674686432,-0.10807585716248],[0.10042831301689,0.018822014331818,-0.021635264158249],[-0.0022863612975925,0.019842423498631,0.0082812905311584]],[[-0.015110743232071,-0.086634926497936,0.00042704399675131],[-0.20111884176731,-0.16103067994118,-0.0069806291721761],[0.1046535000205,0.039833232760429,-0.10713872313499]],[[0.019884092733264,0.035521108657122,0.10134541988373],[0.10285096615553,0.040996164083481,-0.11349418759346],[0.10261592268944,0.023919012397528,-0.076152384281158]],[[0.033710148185492,-0.050668936222792,-0.087650716304779],[-0.020495222881436,0.069589532911777,-0.063110440969467],[0.059479970484972,0.15381720662117,-0.020573230460286]],[[0.0068736355751753,-0.077465713024139,0.0047763050533831],[0.07843817025423,0.12810207903385,0.13072310388088],[0.052051700651646,-0.14796425402164,-0.21453370153904]],[[-0.070978164672852,-0.055405747145414,0.048666164278984],[-0.081809774041176,-0.04532254114747,-0.06030485033989],[-0.072220146656036,-0.21508587896824,-0.18555116653442]],[[0.014106673188508,0.032240893691778,0.029277823865414],[-0.0038741738535464,-0.064035579562187,-0.097543053328991],[-0.023044170811772,-0.053519409149885,0.0044536488130689]],[[-0.10519658774137,-0.046530704945326,-0.12252476811409],[-0.10486457496881,-0.31692719459534,-0.1496404260397],[0.038841124624014,-0.019199427217245,0.15847451984882]],[[0.010909712873399,0.057410936802626,0.053298037499189],[-0.043732091784477,-0.012103943154216,-0.0089802984148264],[-0.0025233712513,0.014398837462068,0.016041381284595]],[[-0.089328311383724,-0.13125631213188,-0.0022222734987736],[0.0046503413468599,0.0052496171556413,-0.085383057594299],[0.0021449609193951,0.0017284869682044,0.077344246208668]],[[-0.08962793648243,0.006458280608058,-0.097176000475883],[-0.064543187618256,-0.16134533286095,-0.021001109853387],[-0.1511255800724,-0.01795962639153,0.097106128931046]],[[-0.1322370916605,0.010671955533326,-0.11205739527941],[0.10052345693111,-0.043449502438307,0.14660093188286],[-0.030518636107445,0.11141420155764,0.005686828866601]],[[-0.03025933355093,-0.15315696597099,-0.081721052527428],[-0.089534588158131,0.01309802941978,-0.037332713603973],[0.10101279616356,-0.0030916347168386,-0.023179668933153]],[[0.060588452965021,-0.049658827483654,-0.14975062012672],[0.051528710871935,0.02274120785296,0.049947287887335],[0.020309010520577,-0.051431395113468,0.013400178402662]],[[-0.11028028279543,-0.11294314265251,0.1895859092474],[-0.23338186740875,0.024437056854367,-0.029657362028956],[0.10525247454643,0.070927746593952,0.11215825378895]],[[-0.029384518042207,-0.13638079166412,-0.026149369776249],[-0.02592627517879,0.026886345818639,0.065679989755154],[-0.0079823508858681,0.032188944518566,0.093997612595558]],[[0.06352324783802,0.047924216836691,0.10481041669846],[0.098057329654694,0.079530820250511,-0.056403402239084],[0.053338948637247,0.16357961297035,-0.1189126893878]],[[-0.022789424285293,-0.089882127940655,0.0043885810300708],[-0.028662079945207,-0.041152745485306,0.071581020951271],[-0.058079279959202,-0.14464338123798,0.11063723266125]],[[0.020643036812544,-0.091197341680527,0.010182064957917],[0.050617091357708,0.066899836063385,0.098194606602192],[0.039285209029913,0.052424427121878,0.059700772166252]],[[0.056248921900988,0.11050375550985,0.0045577292330563],[-0.07383020222187,0.014386699534953,-0.03037585131824],[0.0051546595059335,-0.038555219769478,-0.01082250289619]],[[-0.0964425355196,-0.038099389523268,0.0023472893517464],[-0.033129267394543,-0.11654749512672,0.024267196655273],[0.0088475747033954,0.01675402931869,-0.055367063730955]],[[-0.076066076755524,-0.068803764879704,-0.042528584599495],[-0.065922439098358,-0.16905556619167,-0.030690064653754],[-0.017055222764611,-0.10299225151539,0.030216842889786]],[[0.24048951268196,-0.0026531096082181,0.26824632287025],[-0.14871446788311,0.15252669155598,0.0190774127841],[0.14948202669621,0.12660220265388,0.028718002140522]],[[-0.045745249837637,0.019589284434915,-0.038177620619535],[-0.037120461463928,0.046629626303911,0.10240094363689],[0.10274664312601,0.08331173658371,0.040159415453672]],[[0.056761369109154,0.080103062093258,-0.075197242200375],[-0.038133595138788,-0.084354422986507,-0.063681095838547],[0.041622284799814,0.028805861249566,0.021960470825434]],[[-0.10599830001593,-0.10109634697437,0.13055491447449],[-0.065442942082882,0.021206758916378,0.029650507494807],[0.024331131950021,-0.0034657169599086,0.046210873872042]],[[-0.081547982990742,0.0069390367716551,-0.16180288791656],[-0.14966620504856,-0.14815108478069,-0.026793610304594],[-0.13289351761341,0.026589166373014,0.042418956756592]],[[-0.11216041445732,0.01659363694489,-0.018743224442005],[-0.0082508129999042,0.0034329409245402,0.099219724535942],[-0.064714893698692,0.013758886605501,0.012419121339917]],[[0.0077186990529299,0.13454496860504,0.0092808688059449],[0.038407284766436,-0.065961822867393,0.028125561773777],[0.039004012942314,0.032894160598516,0.036314129829407]],[[0.042964059859514,0.019245615229011,0.15405297279358],[0.078703925013542,0.10953473299742,0.080763317644596],[0.057029880583286,0.12409824132919,0.02431551553309]],[[-0.00029079604428262,-0.043523099273443,-0.10572889447212],[0.0065545286051929,0.058062806725502,-0.017616353929043],[-0.065160647034645,-0.045055873692036,-0.026535397395492]],[[0.17161214351654,0.068531423807144,0.039468061178923],[-0.016205867752433,-0.045119848102331,0.091031044721603],[-0.039861686527729,-0.010652912780643,0.022815074771643]],[[-0.071773938834667,-0.037890840321779,0.091341607272625],[-0.014171244576573,0.040298044681549,0.17772901058197],[0.016411824151874,0.16406007111073,0.0054970122873783]],[[0.023683529347181,0.075595818459988,-0.013479852117598],[0.03244560956955,0.10745807737112,-0.11789167672396],[0.034650895744562,-0.072382442653179,-0.087162703275681]],[[0.046717021614313,-0.0070718000642955,0.032868452370167],[-0.10973206162453,-0.023711757734418,0.11296639591455],[-0.07781832665205,-0.018202615901828,-0.032744530588388]],[[0.030111161991954,0.042421761900187,-0.013788710348308],[-0.013305577449501,-0.019780293107033,6.8023087806068e-05],[-0.042516868561506,-0.0043578804470599,0.053522769361734]],[[0.07950334250927,0.096712209284306,0.098944596946239],[0.00463633146137,-0.034677855670452,-0.090358436107635],[-0.05789402872324,-0.086233802139759,0.035451471805573]],[[-0.033673699945211,0.010560315102339,-0.043812047690153],[-0.021037118509412,0.027290226891637,-0.0023629998322576],[-0.14038686454296,0.084840551018715,-0.070990100502968]],[[0.056423094123602,0.033532168716192,0.034411381930113],[0.074998207390308,0.044211614876986,-0.0010133484611288],[0.046641383320093,-0.12039357423782,0.05358636751771]],[[-0.012044630944729,0.015317529439926,0.043761670589447],[-0.0881372615695,0.033277180045843,-0.12388934195042],[-0.076052077114582,0.022111056372523,-0.11831829696894]],[[0.03451370075345,-0.02814756333828,0.079378969967365],[-0.00041095257620327,0.068694524466991,-0.001583484117873],[0.14089180529118,0.075118489563465,0.13638970255852]],[[-0.042698882520199,0.050514508038759,0.00813018810004],[-0.0046203238889575,-0.0098315812647343,-0.017232786864042],[-0.029853528365493,0.1198498532176,-0.039357710629702]],[[-0.019220914691687,0.014088796451688,0.044501271098852],[-0.030902706086636,0.023763781413436,-0.053707949817181],[-0.053219642490149,0.068510964512825,-0.043796814978123]],[[-0.049389075487852,-0.031168172135949,0.036566093564034],[0.024435445666313,0.037648107856512,0.0039195064455271],[-0.0048869987949729,0.12457349896431,-0.025340991094708]],[[0.048157773911953,-0.20841068029404,-0.060462437570095],[-0.18629150092602,0.37235566973686,-0.20855258405209],[0.27075019478798,-0.17081420123577,-0.042702589184046]],[[0.0098674586042762,-0.09839178621769,-0.043974664062262],[0.037410974502563,-0.10461977124214,0.045764900743961],[-0.052048847079277,0.13728258013725,0.19140376150608]],[[-0.022930333390832,-0.087085388600826,-0.076974675059319],[-0.053074050694704,0.017342835664749,-0.1229582875967],[-0.030682386830449,0.03650039806962,0.069928519427776]],[[0.02563407830894,0.017756761983037,-0.014850086532533],[-0.066312320530415,-0.01844054274261,-0.048696085810661],[0.034187134355307,-0.050959695130587,-0.039994765073061]],[[0.15502202510834,-0.002468385733664,-0.021699372678995],[0.078659296035767,-0.028473475947976,-0.06636418402195],[0.1201676428318,0.038326255977154,0.087663248181343]],[[0.11970460414886,0.043519292026758,0.042976390570402],[0.12379455566406,-0.025903031229973,0.03091168217361],[0.089042484760284,-0.039979536086321,0.0037169388961047]],[[-0.075630821287632,0.19630588591099,0.18962804973125],[-0.064091749489307,0.087866328656673,-0.0079951602965593],[-0.12511280179024,-0.0056545287370682,-0.08547642827034]],[[0.04452321305871,0.045312754809856,0.032759059220552],[-0.0067563611082733,0.039647947996855,-0.012077415362],[0.021453760564327,-0.077071405947208,0.012712747789919]],[[0.05064769089222,-0.042968425899744,0.053548377007246],[-0.050524599850178,-0.067370712757111,0.20621418952942],[-0.15339118242264,0.021518412977457,-0.047679577022791]],[[0.02819998562336,-0.023884199559689,0.08962044864893],[-0.013300700113177,-0.032335199415684,0.11191865056753],[0.025902209803462,-0.056459534913301,0.042258374392986]],[[-0.078212030231953,0.035576481372118,0.076999850571156],[0.027895648032427,0.062536403536797,0.010194822214544],[-0.02605920098722,-0.077527329325676,-0.035233534872532]],[[-0.0070795696228743,-0.046689063310623,0.095788188278675],[0.009083915501833,-0.045129738748074,0.19030426442623],[0.031197557225823,-0.11038601398468,-0.013118492439389]],[[0.03242165595293,0.03152434155345,-0.056868389248848],[0.00093762984033674,-0.046088170260191,-0.1235716342926],[0.031951200217009,-0.056335940957069,0.015588719397783]],[[-0.053811583667994,-0.016275469213724,-0.00044800713658333],[0.072302110493183,-0.16389542818069,0.017974209040403],[-0.018342984840274,0.14211465418339,0.058860652148724]],[[0.044825777411461,-0.055178474634886,-0.10332255810499],[-0.05563373118639,0.10717091709375,-0.11358145624399],[0.13457565009594,-0.10715975612402,0.10496713221073]],[[-0.1175646930933,0.019982406869531,-0.072988040745258],[-0.066901654005051,-0.045418340712786,0.044383753091097],[0.05440404638648,0.1298343539238,0.082593061029911]],[[-0.0034404825419188,0.090667113661766,0.040893763303757],[0.014805121347308,0.032679785043001,-0.08932014554739],[-0.01865977793932,0.051201306283474,-0.10865734517574]],[[-0.0022973162122071,-0.049053512513638,-0.12016221135855],[-0.033306550234556,0.09203178435564,-0.0026868481654674],[0.030220231041312,0.08064241707325,0.095082834362984]],[[0.061158049851656,0.053879328072071,-0.061483427882195],[-0.057278010994196,0.034613158553839,-0.02614364773035],[0.12487515807152,-0.0024828484747559,0.014029688201845]],[[-0.12844976782799,-0.1235479041934,-0.14265049993992],[-0.089013636112213,-0.018243290483952,-0.066021800041199],[-0.0039680013433099,-0.10291413217783,0.014269463717937]],[[-0.10679367929697,-0.048096459358931,-0.054550118744373],[0.11273903399706,-0.051262885332108,-0.13975423574448],[-0.010342793539166,0.095511004328728,0.048320453613997]],[[0.066175140440464,-0.042950451374054,-0.065273799002171],[0.092757403850555,-0.075128018856049,-0.080613866448402],[0.18904034793377,-0.03246521577239,-0.098047889769077]],[[-0.065727688372135,-0.0016250740736723,0.022433258593082],[-0.023024959489703,-0.062070362269878,-0.0032938090153039],[-0.017188476398587,-0.015113550238311,-0.19296012818813]],[[-0.021996911615133,-0.049791011959314,-0.10581534355879],[0.1143573820591,-0.021535003557801,-0.056085303425789],[-0.080600634217262,0.08867160230875,-0.077829882502556]],[[-0.019013294950128,0.039078239351511,0.005445265211165],[0.044936902821064,0.063027396798134,0.048721060156822],[0.050560299307108,0.020364619791508,0.012369377538562]],[[-0.05849427357316,0.022771060466766,0.0022874497808516],[-0.024325013160706,0.045414753258228,0.098773472011089],[-0.10432271659374,-0.065624319016933,-0.18814727663994]],[[-0.012147253379226,-0.075710542500019,0.10688678920269],[-0.030494645237923,0.15022547543049,0.0011111840140074],[0.025513442233205,-0.068226091563702,-0.0034300163388252]],[[0.027700101956725,-0.033909685909748,0.052998296916485],[0.038504801690578,-0.014841894619167,0.072862185537815],[0.085950776934624,-0.093158788979053,-0.042875237762928]],[[-0.013412301428616,0.11364148557186,-0.028626320883632],[0.013482445850968,-0.19104158878326,0.05018450319767],[0.01662802696228,-0.023711564019322,-0.0080737508833408]]],[[[0.064344152808189,-0.024005174636841,0.0083425035700202],[0.014661061577499,-0.047453608363867,0.026366516947746],[0.0082428110763431,-0.011645973660052,-0.035345282405615]],[[0.0043539819307625,-0.0085283555090427,0.024392252787948],[0.017370691522956,0.081247046589851,-0.023989425972104],[0.028738779947162,0.015293668024242,-0.025598682463169]],[[0.056714773178101,0.024374242872,-0.019624711945653],[0.080169126391411,-0.0066530341282487,0.0048879091627896],[0.019400898367167,0.01715013384819,-0.0024612403940409]],[[-0.029082832857966,-0.017788061872125,0.015964349731803],[0.062247358262539,0.028285820037127,0.075792148709297],[0.077647112309933,-0.036263983696699,-0.086153700947762]],[[0.014390152879059,0.0076778405345976,0.041139714419842],[0.023982994258404,0.034410081803799,-0.028719458729029],[0.015636280179024,-0.067678682506084,0.051244545727968]],[[-0.00075811607530341,0.016209902241826,0.0024075352121145],[0.058318693190813,-0.012584432028234,-0.021721571683884],[0.053773667663336,-0.010953490622342,-0.010140775702894]],[[0.029110934585333,-0.059535291045904,-0.016720814630389],[-0.0081916712224483,0.0017446633428335,0.016451550647616],[0.014550513587892,-0.03728024661541,-0.039910856634378]],[[-0.0073243053629994,-0.019922833889723,-0.10811484605074],[-0.015476558357477,0.021310020238161,-0.036090359091759],[0.029496623203158,0.058458182960749,-0.026742994785309]],[[-0.035557128489017,-0.047902591526508,-0.024978911504149],[-0.038333971053362,-0.038041818886995,-0.0028092477004975],[-0.02043866738677,0.035172455012798,-0.0035884599201381]],[[-0.051615260541439,0.0082295928150415,-0.020579565316439],[0.00063345534726977,0.021724110469222,-0.028711063787341],[-0.019361620768905,0.033968903124332,0.00083946029189974]],[[-0.025381958112121,-0.024561293423176,-0.04377231746912],[0.034555342048407,0.025302048772573,-0.074791096150875],[0.030262276530266,0.010890882462263,0.086729384958744]],[[0.016572661697865,-0.0049879406578839,-0.050401799380779],[0.010862782597542,-0.010983450338244,-0.04480879753828],[0.01475352793932,-0.074674040079117,-0.025739526376128]],[[-0.051689397543669,-0.020086882635951,-0.033476900309324],[0.094156555831432,0.0069557521492243,-0.0034208113793284],[0.071786895394325,0.078789137303829,0.031933143734932]],[[-0.0046023982577026,-0.0310278236866,0.0028598615899682],[0.069205574691296,0.039008006453514,-0.0076338201761246],[0.029373731464148,0.038794968277216,-0.094632811844349]],[[-0.11043673753738,-0.01685874350369,0.043960560113192],[-0.001339815906249,-0.0066074691712856,0.016991071403027],[0.011640128679574,0.044069908559322,-0.016959493979812]],[[-0.0057948082685471,-0.044812951236963,-0.02858123742044],[0.002353552961722,-0.12346936762333,-0.023707838729024],[-0.055596854537725,-0.035949744284153,-0.025846462696791]],[[-0.034478954970837,-0.040114384144545,0.065449595451355],[-0.017939435318112,0.033779662102461,0.02057371661067],[-0.053839717060328,0.074166662991047,0.027805604040623]],[[-0.025975810363889,0.031970053911209,-0.020137833431363],[-0.041654422879219,-0.010054007172585,-0.068722441792488],[-0.011850552633405,-0.020847028121352,0.082291767001152]],[[0.048470459878445,-0.0013629872119054,-0.028855342417955],[0.017695628106594,-0.042243130505085,0.011183861643076],[-0.014072633348405,0.011014713905752,0.0095711965113878]],[[-0.01398242264986,-0.0030872467905283,-0.032188083976507],[0.093477457761765,0.093079835176468,0.16123692691326],[-0.01511028315872,0.077480420470238,-0.0045171231031418]],[[-0.039684742689133,0.051711056381464,-0.030638137832284],[-0.029961811378598,0.0031462856568396,0.018963569775224],[-0.024952780455351,-0.0022336104884744,-0.059979874640703]],[[0.01918139308691,0.049151126295328,-0.026530859991908],[-0.020462334156036,-0.023598097264767,-0.017444718629122],[-0.02808097191155,-0.04388216137886,0.033903520554304]],[[-0.080016627907753,-0.0068114819005132,-0.034417480230331],[0.087021075189114,0.032241906970739,0.074035421013832],[-0.006659522652626,-0.018246419727802,-0.064071528613567]],[[0.013027167879045,-0.039106529206038,-0.052302051335573],[0.023926537483931,-0.009373502805829,-0.041163519024849],[0.073555059731007,0.0091866739094257,-0.055334679782391]],[[-0.008623018860817,-0.026352327316999,-0.067508541047573],[-0.075491480529308,0.026211235672235,0.036509029567242],[0.037876047194004,0.0097962636500597,0.039737217128277]],[[0.013245847076178,0.0070585017092526,0.072811476886272],[0.010330153629184,-0.019797230139375,-0.027789033949375],[-0.010997170582414,-0.01079731900245,-0.014794654212892]],[[-0.022248947992921,-0.087721347808838,-0.045003823935986],[0.06498022377491,0.029122460633516,-0.12015157192945],[0.020911665633321,-0.020721798762679,0.0061425743624568]],[[0.035721153020859,0.054522227495909,0.016886124387383],[-0.015320603735745,-0.00098212365992367,0.042775347828865],[0.003488841932267,0.018621457740664,0.035636007785797]],[[-0.073471963405609,-0.012538976036012,0.045729856938124],[0.034627176821232,-0.048559445887804,0.0002304938971065],[0.033617295324802,-0.023192515596747,-0.070588693022728]],[[-0.018271211534739,0.071733377873898,-0.0054714777506888],[0.044738881289959,-0.031281743198633,-0.013852546922863],[0.035185776650906,0.026291249319911,0.098557204008102]],[[0.022705394774675,0.072004340589046,0.042168103158474],[-0.033512204885483,0.058922920376062,0.0058788289315999],[-0.064630754292011,-0.047828368842602,-0.029617609456182]],[[0.025528369471431,0.053808599710464,0.02019483037293],[-0.13126111030579,-0.1420164257288,0.096757709980011],[-0.044361487030983,-0.031948857009411,0.013792032375932]],[[0.011055145412683,0.076409012079239,-0.013869169168174],[0.056219156831503,-0.052671797573566,0.049965936690569],[-0.0050578927621245,-0.003273333190009,-0.070078745484352]],[[-0.10266604274511,-0.053205080330372,-0.0072966576553881],[-0.071965433657169,-0.032294046133757,0.0029383744113147],[0.022068053483963,0.0025188068393618,-0.013768921606243]],[[-0.0017843865789473,0.041412822902203,-0.030352765694261],[-0.084989696741104,-0.0084464224055409,-0.0049576386809349],[-0.017598196864128,0.05149594694376,0.052058573812246]],[[-0.04583640396595,-0.025366084650159,-0.0094476584345102],[0.064335212111473,0.0035139336250722,0.013645170256495],[0.031481713056564,-0.049166470766068,-0.021388452500105]],[[-0.01710819080472,0.026883587241173,0.0061721475794911],[-0.016022818163037,-0.039193715900183,0.056883417069912],[0.0068829050287604,0.0037344419397414,0.050208136439323]],[[-0.038333266973495,0.0010513049783185,0.044861041009426],[0.0021922255400568,-0.057964533567429,0.04458337649703],[0.016977271065116,0.065382070839405,0.026770323514938]],[[0.068385675549507,-0.047627724707127,-0.02476042881608],[0.067239135503769,-0.046220641583204,0.031736422330141],[0.038391344249249,-0.018057471141219,-0.039794851094484]],[[0.0040091765113175,0.072033241391182,-0.015160284005105],[0.011797018349171,-0.014818602241576,-0.025713209062815],[-0.076294980943203,-0.046187151223421,0.045509867370129]],[[0.014268493279815,0.022428708150983,0.0022272360511124],[-0.0037791728973389,-0.02318805642426,0.024571556597948],[-0.038208998739719,0.011858182959259,-0.073883377015591]],[[-0.0028017982840538,-0.019226141273975,-0.043483044952154],[0.037082493305206,0.018554866313934,-0.050224158912897],[-0.034696213901043,-0.004289441742003,-0.050599932670593]],[[0.012913083657622,-0.048675782978535,-0.047027640044689],[-0.073538318276405,-0.046478603035212,-0.012239839881659],[0.056393776088953,0.11366454511881,0.034947887063026]],[[-0.023536019027233,-0.037412375211716,-0.02964617870748],[0.011240308173001,0.0072231879457831,-0.092976041138172],[-0.043067004531622,-0.012294602580369,0.013099036179483]],[[-0.043842371553183,0.066773936152458,0.081247046589851],[0.00022674247156829,0.017043922096491,0.10102769732475],[0.12985627353191,-0.025963269174099,0.032176371663809]],[[-0.022092813625932,-0.011523338034749,0.020953897386789],[0.014591874554753,0.03363011777401,-0.035583063960075],[0.042636275291443,-0.0052127181552351,-0.031129777431488]],[[0.0044147819280624,-0.0554742179811,0.030752899125218],[-0.027627307921648,0.051948241889477,0.013280246406794],[0.0018696195911616,0.11868814378977,-0.0035994392819703]],[[-0.0089329537004232,0.015455858781934,-0.038922563195229],[0.011091587133706,0.014570340514183,0.049346011132002],[0.01508099399507,-0.037847623229027,-0.00093231431674212]],[[-0.0045437077060342,-0.03692027926445,-0.0063980324193835],[0.04420930147171,-0.006842324975878,0.026854807510972],[-0.0066306926310062,0.045217610895634,-0.012503990903497]],[[-0.042723778635263,-0.021077306941152,0.028386190533638],[0.010579431429505,-0.089267618954182,-0.03893980383873],[0.0016456579323858,0.051359411329031,-0.010177338495851]],[[0.16541732847691,-0.024414138868451,-0.056315936148167],[-0.033703528344631,0.077123947441578,0.055027697235346],[-0.02184266038239,-0.072580918669701,0.037340171635151]],[[0.019520491361618,0.0082814758643508,0.00060339382616803],[0.092938251793385,-0.046312466263771,-0.0046139946207404],[0.044551745057106,0.0047655343078077,-0.015991657972336]],[[-0.028803702443838,0.026669450104237,0.0077017201110721],[-0.040531188249588,-0.015218028798699,-0.017749473452568],[0.033407356590033,-0.041683979332447,-0.0029428072739393]],[[-0.038528725504875,0.022649759426713,0.074050508439541],[0.046887595206499,-0.023484719917178,-0.016052510589361],[-0.035249907523394,0.069915570318699,0.10342147946358]],[[-0.0078497407957911,-0.031087376177311,-0.029987221583724],[0.049658298492432,-0.0099812876433134,-0.027456240728498],[0.035490483045578,0.024650778621435,-0.056901711970568]],[[0.060136344283819,0.081437215209007,-0.013062686659396],[-0.043732553720474,-0.027011880651116,-0.029859876260161],[-0.0015513472026214,-0.047994274646044,-0.011057619005442]],[[0.02818345092237,-0.00070083903847262,-0.076401092112064],[0.067717790603638,0.0060818297788501,0.049559313803911],[0.027958177030087,-0.012403563596308,0.01950877904892]],[[0.026024470105767,0.022264670580626,0.024724330753088],[0.0023781228810549,-0.017809372395277,-0.030523370951414],[0.025771923363209,-0.043850470334291,-0.029355730861425]],[[-0.076086021959782,0.0026972088962793,-0.045747578144073],[-0.09250171482563,-0.045984793454409,-0.046213861554861],[-0.012159308418632,0.0078770387917757,0.078421726822853]],[[-0.012808259576559,0.027564600110054,0.023988282307982],[-0.028237011283636,-0.049407746642828,-0.016060454770923],[-0.04516189545393,0.041231736540794,-0.079653069376945]],[[-0.031430285423994,-0.0061701247468591,-0.036413051187992],[0.0010239835828543,0.019769137725234,-0.026318466290832],[0.059211444109678,-0.049722578376532,0.01986744068563]],[[0.028388323262334,0.050993446260691,-0.057075317949057],[0.020892569795251,0.079961210489273,-0.018151745200157],[0.068900145590305,-0.016696332022548,0.072438560426235]],[[0.0017853180179372,-0.04101038724184,-0.083245366811752],[-0.069520480930805,-0.0072095119394362,-0.044093657284975],[-0.038674671202898,-0.022691387683153,-0.019472701475024]],[[0.0062654665671289,0.064041137695312,0.10239378362894],[-0.040039569139481,-0.056115098297596,0.018960637971759],[-0.008044003508985,-0.0831558406353,-0.0068001952022314]],[[-0.028286393731833,0.0076099564321339,-0.073102124035358],[-0.033684752881527,0.025924319401383,0.002288862131536],[-0.048782933503389,-0.012325005605817,0.040105257183313]],[[-0.064229905605316,-0.015037794597447,0.012723348103464],[-0.015106106176972,-0.047413237392902,-0.0274278819561],[-0.030558090656996,-0.0091365901753306,0.023371562361717]],[[-0.023147270083427,0.071576900780201,-0.087364763021469],[0.0036714777816087,-0.037208188325167,0.02765822969377],[-0.012393402867019,-0.019017091020942,-0.038185387849808]],[[-0.055622491985559,-0.035236001014709,-0.010997200384736],[0.0074362852610648,0.032223124057055,0.059755425900221],[0.0093621117994189,-0.0105668194592,-0.033564370125532]],[[-0.0088795311748981,0.013190196827054,-0.030673466622829],[0.048511404544115,-0.018074881285429,-0.05398028716445],[-0.0091559886932373,-0.03695809468627,0.018717154860497]],[[-0.1256897598505,-0.020847821608186,0.070435382425785],[-0.052692901343107,-0.0097092501819134,0.026913218200207],[-0.045066513121128,0.017205329611897,0.064225539565086]],[[-0.043677352368832,-0.025632340461016,0.039815686643124],[-0.06158247590065,0.060294840484858,-0.012730997055769],[-0.063787624239922,-0.030031690374017,-0.03118085488677]],[[0.065736778080463,0.038240343332291,-0.027791118249297],[0.05341824516654,-0.078170835971832,0.013616543263197],[-0.0054882359690964,-0.020982638001442,-0.022076118737459]],[[0.056025177240372,0.019073754549026,-0.029018938541412],[0.050337225198746,-0.0029619890265167,-0.018866894766688],[-0.021234994754195,0.067664206027985,-0.049412056803703]],[[-0.057177748531103,0.04459360986948,-0.017877548933029],[-0.077253311872482,0.012385129928589,-0.0032511500176042],[-0.018789384514093,0.046006396412849,0.048861589282751]],[[-0.028153892606497,0.005329183768481,-0.0049741207621992],[-0.021687753498554,-0.040256083011627,0.032663114368916],[-0.021502057090402,-0.017868841066957,0.025132842361927]],[[-0.00096725032199174,-0.051677495241165,-0.045462746173143],[-0.018470311537385,-0.049636464565992,0.021391874179244],[0.00051997974514961,-0.08295015245676,0.039186712354422]],[[0.044884648174047,-0.016711017116904,-0.018175458535552],[0.023041568696499,0.041840549558401,0.060213685035706],[-0.031654741615057,0.063213847577572,0.025315601378679]],[[-0.039105694741011,0.016428757458925,-0.020624784752727],[-0.027728060260415,0.0066630411893129,-0.045671626925468],[0.085867546498775,-0.036816328763962,-0.019036415964365]],[[0.043284747749567,-0.017120532691479,-0.052771411836147],[-0.030596021562815,-0.065665252506733,-0.0082860309630632],[0.017659338191152,-0.04068323969841,0.087291568517685]],[[0.037430800497532,-0.020502654835582,-0.063987143337727],[-0.039295457303524,-0.062712430953979,0.047165650874376],[0.049912448972464,0.0045123994350433,-0.017749570310116]],[[-0.00042197361472063,-0.011509052477777,-0.064818039536476],[0.022657277062535,0.013729867525399,-0.011646864935756],[0.020095724612474,0.0082737831398845,0.049160812050104]],[[0.030437445268035,-0.012058871798217,-0.02990291826427],[-0.03884419798851,0.030063152313232,-0.047105364501476],[0.0099464477971196,-0.082260623574257,0.014790926128626]],[[0.053187169134617,-0.037152968347073,0.053874336183071],[0.016339430585504,0.0076110134832561,0.022136574611068],[-0.020163748413324,0.048721566796303,-0.0011838874779642]],[[-0.024632055312395,0.036664504557848,0.026017075404525],[-0.0016244072467089,-0.016166368499398,-0.0052399546839297],[-0.028437923640013,-0.023670487105846,-0.044834144413471]],[[-0.046331785619259,-0.0014125755988061,-0.027267638593912],[0.035589464008808,0.027239944785833,-0.079541601240635],[0.0091938329860568,-0.013516147620976,-0.033628288656473]],[[0.0063086682930589,-0.045725308358669,0.011390871368349],[-0.057839043438435,-0.0084345377981663,-0.0080380020663142],[-0.011451035737991,0.039619978517294,0.0018372758058831]],[[-0.052012592554092,-0.066035196185112,0.030618956312537],[0.027621442452073,-0.1186621338129,0.010994678363204],[0.071294546127319,-0.053107909858227,0.0027613192796707]],[[0.065248213708401,-0.0075138863176107,0.011111838743091],[0.024897562339902,-0.0072583248838782,-0.052442703396082],[-0.059098061174154,-0.030717032030225,-0.015050234273076]],[[0.010616389103234,0.053230881690979,0.02807835675776],[-0.10655884444714,0.010665766894817,0.016642680391669],[-0.019887810572982,-0.0053101009689271,-0.031473986804485]],[[0.024224625900388,0.04513281583786,0.0089481212198734],[0.0075434925965965,-0.024161687120795,-0.030402397736907],[0.016377368941903,0.011889478191733,-0.0055372072383761]],[[-0.039663210511208,0.090497016906738,0.03358643501997],[-0.028735065832734,-0.0020520354155451,0.062891624867916],[-0.009268993511796,-0.03971241414547,0.017673553898931]],[[0.068667054176331,0.0085103157907724,-0.079431012272835],[0.068640068173409,0.039862595498562,0.019887171685696],[-0.015941627323627,0.0055178022012115,-0.0098445909097791]],[[0.027609216049314,-0.0017890396993607,-0.029827009886503],[0.0085552148520947,0.071282297372818,0.014427874237299],[-0.013200541958213,0.045708704739809,-0.059441510587931]],[[-0.027968768030405,0.0066980537958443,-0.0058577144518495],[-0.027742492035031,-0.0002830219164025,-0.0076642464846373],[0.00051558413542807,-0.02794074639678,-0.024065298959613]],[[0.015155475586653,0.03955677524209,-0.016711510717869],[-0.032956846058369,-0.067813940346241,0.022945713251829],[-0.015447564423084,0.00065254641231149,-0.03773957490921]],[[-0.010292659513652,-0.036272205412388,0.010663005523384],[-0.015043636783957,-0.036955256015062,-0.050345607101917],[0.024025972932577,-0.024972226470709,0.00046338801621459]],[[-0.023901676759124,0.0077937939204276,0.024000722914934],[0.062433455139399,0.064546406269073,0.025897627696395],[0.030675120651722,0.0050559369847178,0.035531900823116]],[[-0.044672466814518,-0.03377166762948,0.02359214797616],[0.0016139480285347,0.048843435943127,0.025921354070306],[-0.05202504619956,0.098775818943977,0.080119669437408]],[[-0.073143310844898,0.081363119184971,-0.079226128757],[0.039568621665239,-0.051438570022583,-0.12515966594219],[-0.030767759308219,-0.06196378916502,-0.038559768348932]],[[-0.075981043279171,0.075265131890774,-0.012058455497026],[-0.010061798617244,0.027167180553079,0.09356515109539],[0.034429244697094,0.09744867682457,0.024886501953006]],[[-0.037489507347345,-0.029119284823537,0.02822320535779],[-0.0054673398844898,0.033826399594545,0.054680120199919],[0.06531573086977,0.0031582461670041,0.0031373396050185]],[[0.021076684817672,-0.035713400691748,0.049913849681616],[-0.04832649230957,-0.0097371097654104,-0.048718988895416],[0.037406302988529,0.035902317613363,0.02273784019053]],[[0.017977965995669,-0.084239900112152,-0.042597476392984],[0.01573895290494,0.0093065472319722,0.01533143222332],[-0.015624803490937,0.011164630763233,0.01153243612498]],[[0.11878829449415,0.019701281562448,-0.00095738802338019],[-0.0061064008623362,0.027867686003447,-0.071505323052406],[0.0078067909926176,0.0021835081279278,-0.021832628175616]],[[0.05303455889225,0.023274399340153,0.0088605070486665],[-0.028266282752156,0.030804881826043,-0.0047996947541833],[0.048615220934153,0.0033750240691006,0.028379550203681]],[[-0.035276852548122,0.018862657248974,-0.0091915540397167],[0.045163031667471,0.032971423119307,0.016867361962795],[0.038635708391666,-0.023166883736849,0.0024276471231133]],[[0.021755110472441,-0.07894392311573,-0.034825023263693],[0.011227451264858,0.049739368259907,-0.005989933386445],[-0.013832428492606,-0.0091463569551706,-0.052678778767586]],[[0.0034041870385408,-0.005517412442714,-0.011440934613347],[-0.02160070464015,-0.080034390091896,0.035510521382093],[0.0091020753607154,0.090144969522953,0.035792507231236]],[[-0.0051678926683962,-0.064471177756786,-0.018670029938221],[0.013752629049122,-0.011100799776614,0.015144117176533],[-0.041104640811682,-0.0013036922318861,-0.036361407488585]],[[0.082324288785458,0.027967305853963,0.045343317091465],[-0.036293052136898,-0.015551131218672,-0.069992043077946],[0.048884004354477,-0.059027962386608,-0.014983368106186]],[[0.031527791172266,-0.041274312883615,0.0099544590339065],[0.024880537763238,-0.042987689375877,-0.043781761080027],[-0.012078107334673,-0.028855796903372,-0.037437949329615]],[[-0.016093650832772,-0.042353846132755,0.050579741597176],[0.0029412326402962,0.032311856746674,-0.045470252633095],[-0.00034789662458934,0.0068852743133903,0.083789244294167]],[[-0.013744989410043,-0.066093102097511,0.0054795742034912],[-0.054600797593594,-0.0023343241773546,0.00065787532366812],[0.02973966114223,0.017836470156908,0.071414321660995]],[[-0.01333777885884,-0.029717342928052,0.026227233931422],[-0.066792286932468,0.07004302740097,-0.037868224084377],[0.1148778423667,-0.045908395200968,0.053091268986464]],[[-0.050008840858936,-0.029206454753876,-0.010263342410326],[-0.041081845760345,-0.032102271914482,0.059604194015265],[-0.041208352893591,0.040809538215399,0.014038632623851]],[[0.0092669818550348,-0.045544922351837,0.011063266545534],[-0.031939327716827,-0.003659361274913,0.0080486545339227],[0.023506874218583,-0.0053078439086676,-0.018557015806437]],[[-0.015573552809656,0.0031942438799888,0.043373867869377],[-0.052152872085571,0.028168577700853,-0.04448751360178],[0.010544827207923,-0.049536012113094,-0.012531611137092]],[[-0.063611231744289,-0.0076407832093537,-0.14286114275455],[0.03921177983284,0.013088870793581,-0.032530304044485],[0.057846609503031,-0.016785845160484,0.00037883952609263]],[[-0.069276839494705,0.068752698600292,-0.0377561673522],[-0.016884531825781,0.014009709469974,-0.028850100934505],[0.013716924935579,-0.031542349606752,0.016889087855816]],[[0.043914068490267,-0.031821224838495,-0.016236392781138],[-0.022477652877569,-0.023452505469322,0.046737942844629],[0.03978569060564,-0.025896072387695,0.046241961419582]],[[0.064580574631691,0.048641804605722,-0.006646285764873],[0.078205801546574,0.0060370764695108,-0.00095127028180286],[-0.0026621143333614,0.088545933365822,0.021746262907982]],[[0.028506845235825,-0.022923860698938,-0.00097428838489577],[-0.023995807394385,-0.079532079398632,-0.033013366162777],[-0.019469708204269,-0.033950205892324,-0.073624923825264]],[[0.039476647973061,0.0063956412486732,-0.066890224814415],[-0.046090573072433,-0.017545590177178,-0.022868709638715],[-0.027239628136158,-0.04326868802309,-0.029387297108769]],[[-0.047113046050072,0.045149005949497,0.066455081105232],[0.061284761875868,-0.0064575565047562,-0.015311767347157],[-0.032787967473269,0.00068160804221407,-0.058861613273621]],[[0.00470100203529,-0.062354918569326,0.073879428207874],[0.017623532563448,0.010555830784142,-0.0085024060681462],[-0.078581072390079,0.05173622071743,-0.037846125662327]],[[0.080166772007942,0.021445328369737,-0.049466490745544],[0.015247005969286,0.09340476244688,0.041976924985647],[-0.043645169585943,-0.025288289412856,-0.035051882266998]],[[-0.050456929951906,-0.021563094109297,0.096204154193401],[0.006395966745913,-0.09670864790678,-0.033657807856798],[-0.028838908299804,0.0081547033041716,0.044378481805325]],[[0.039398021996021,-0.012048688717186,0.03679221868515],[0.025039564818144,0.062416754662991,-0.047140318900347],[-0.0004770023515448,0.013214382342994,0.00422407919541]]],[[[-0.024499764665961,-0.035132512450218,0.020731881260872],[0.013740801252425,0.096588164567947,-0.074727892875671],[-0.011137062683702,0.10713621973991,-0.006523400079459]],[[-0.028623588383198,-0.011958599090576,-0.058368027210236],[-0.06932694464922,-0.10238526016474,-0.14451810717583],[-0.13566511869431,0.030555814504623,-0.042448498308659]],[[0.018752193078399,-0.042229872196913,-0.05899915844202],[0.047343861311674,-0.0035180428531021,0.21702535450459],[-0.02966221421957,-0.027727661654353,-0.0077986363321543]],[[0.010347261093557,0.10726998001337,-0.076380982995033],[0.032211512327194,0.050116550177336,0.066542610526085],[0.052158705890179,0.032420068979263,-0.0048133223317564]],[[-0.071483753621578,-0.085001826286316,0.036081302911043],[-0.093596704304218,-0.038869883865118,0.04844718053937],[-0.072935536503792,-0.024054136127234,-0.020694576203823]],[[0.022581964731216,0.077535435557365,0.055418223142624],[0.11862750351429,0.070712596178055,0.019826302304864],[0.10991851240396,0.022302411496639,-0.064209587872028]],[[0.073620311915874,-0.079154215753078,-0.037976663559675],[-0.002701164688915,0.084313057363033,-0.0044943653047085],[0.011749046854675,0.057729817926884,0.0042841513641179]],[[-0.036135122179985,0.017714042216539,0.0022048717364669],[-0.015857934951782,-0.069189451634884,0.095820412039757],[0.05525778979063,0.048267897218466,0.024947604164481]],[[-0.028043562546372,-0.072009362280369,0.030407605692744],[0.075402863323689,0.0098105436190963,-0.044829092919827],[0.10545388609171,-0.0020596953108907,0.015373825095594]],[[-0.00096660363487899,0.032586470246315,-0.049204342067242],[-0.034085616469383,-0.014420745894313,0.014176869764924],[-0.028326869010925,0.018870769068599,0.028631253167987]],[[0.10737835615873,-0.015798635780811,0.008720419369638],[0.0074243280105293,-0.040823630988598,-0.027956504374743],[0.06534980982542,0.069555729627609,0.087280683219433]],[[0.0007440775516443,-0.045163806527853,0.038419593125582],[0.072874829173088,-0.00022408690711018,-0.057934030890465],[0.055707972496748,-0.11896803975105,0.090421132743359]],[[0.045404750853777,0.021833773702383,0.1096884906292],[0.051956713199615,0.164311632514,0.027085376903415],[-0.025349488481879,0.057999942451715,0.083873122930527]],[[-0.0074768280610442,-0.029942007735372,-0.022969264537096],[-0.0091175148263574,-0.062566325068474,-0.0098642418161035],[-0.056413169950247,0.031495530158281,0.061684418469667]],[[-0.057036362588406,0.015177158638835,-0.0043260944075882],[-0.0014824053505436,0.035825613886118,-0.054515641182661],[-0.038369063287973,0.099710203707218,0.056503780186176]],[[0.048129618167877,0.10743948817253,-0.1356418132782],[-0.024757081642747,0.01031662337482,0.027135841548443],[-0.0092239668592811,0.025095801800489,0.014916467480361]],[[0.032947722822428,0.027241639792919,-0.092346929013729],[-0.024407902732491,-0.051221583038568,0.039736535400152],[0.035710982978344,0.11595658957958,0.048541370779276]],[[0.03685762360692,-0.046717792749405,0.018893225118518],[-0.033358782529831,-0.0157231669873,-0.058159600943327],[-0.047427803277969,0.0095294248312712,-0.051995109766722]],[[0.058471828699112,0.029187545180321,-0.059547945857048],[-0.02253457531333,0.045301023870707,-0.018595837056637],[0.018489157781005,-0.022559793666005,0.10364719480276]],[[0.061151243746281,0.05630786344409,-0.008782684803009],[-0.058785535395145,0.080523885786533,-0.065150514245033],[-0.0035714388359338,0.022198462858796,0.15475504100323]],[[0.04053432866931,-0.025919746607542,0.029393119737506],[0.054552782326937,-0.0085981301963329,0.043291933834553],[-0.072662562131882,-0.017895638942719,0.03291617706418]],[[0.072150863707066,-0.016503976657987,0.05621325597167],[0.11878811568022,0.094160869717598,-0.010211065411568],[0.088213503360748,0.053995430469513,-0.0018620752962306]],[[0.0011737681925297,0.041147619485855,0.10229300707579],[-0.034364592283964,0.013357880525291,-0.0068391337990761],[-0.053212113678455,-0.036231208592653,0.029839754104614]],[[-0.0096293315291405,0.027396459132433,0.10806055366993],[0.023148823529482,0.049645829945803,-0.02211756631732],[-0.0027088841889054,-0.1379202902317,-0.094823785126209]],[[0.073817081749439,-0.035423032939434,0.040013693273067],[0.0071204854175448,-0.082495704293251,-0.12079851329327],[0.036508295685053,0.036392152309418,-0.024947902187705]],[[-0.013524128124118,0.074065111577511,0.025254022330046],[-0.010897863656282,0.0074868686497211,0.035326667129993],[-0.054499696940184,-0.024115726351738,0.056156061589718]],[[0.080453723669052,0.093411289155483,0.074881553649902],[0.074772842228413,0.073160603642464,-0.078097604215145],[0.038901075720787,-0.026096334680915,-0.017934510484338]],[[-0.054001089185476,0.017290312796831,0.033306941390038],[0.0070622349157929,0.08108201622963,0.051768120378256],[0.03516536578536,0.034416332840919,0.032897211611271]],[[0.066819079220295,-0.11036489903927,0.13904756307602],[-0.0049621714279056,-0.016125598922372,0.09512934833765],[0.018508084118366,0.069961883127689,-0.012827277183533]],[[0.058786474168301,-0.0057053058408201,-0.11644472926855],[0.018374284729362,0.053576678037643,0.17466077208519],[-0.00595348700881,0.013697138987482,0.06921573728323]],[[0.01844759657979,0.056048918515444,0.052943293005228],[-0.069032408297062,-0.060138277709484,1.6656318621244e-05],[0.015717804431915,0.0010030773701146,0.050755184143782]],[[0.013739597052336,-0.039977625012398,-0.0036240820772946],[0.089083842933178,0.025072118267417,0.068669132888317],[0.043058671057224,-0.0055164019577205,0.025099162012339]],[[0.016583796590567,0.16412426531315,-0.04462831094861],[0.050933357328176,-0.013657334260643,-0.092695437371731],[-0.030155962333083,-0.011833543889225,0.072698064148426]],[[0.012978033162653,-0.047446496784687,0.034419197589159],[0.011828522197902,-0.032099097967148,0.0185975600034],[0.031469617038965,0.016848878934979,0.023477431386709]],[[-0.036115754395723,0.0019009991083294,-0.14530715346336],[-0.019586026668549,0.0018882206641138,-0.052778504788876],[0.0069871218875051,-0.038445916026831,-0.12051625549793]],[[0.045126520097256,0.052774902433157,-0.034657593816519],[0.00829943921417,-0.0045113046653569,-0.043827038258314],[0.0016230623004958,0.0018912382656708,0.015482068993151]],[[-0.0093184858560562,0.031502578407526,-0.0017546139424667],[0.036630868911743,0.030415533110499,-0.01368113886565],[0.052463445812464,-0.02186669036746,-0.0014477418735623]],[[-0.02517538331449,-0.014915989711881,-0.041340712457895],[0.06601594388485,-0.068222917616367,0.017361480742693],[0.12161335349083,0.017210952937603,0.019881626591086]],[[0.013184901326895,-0.092494003474712,-0.074878841638565],[-0.050445690751076,-0.037495546042919,-0.13550539314747],[0.025702986866236,-0.075938165187836,0.0876404941082]],[[0.032225396484137,0.024155518040061,0.072742074728012],[-0.00026948019512929,0.016122583299875,-0.014892012812197],[0.0072318841703236,0.12846000492573,-0.001227677683346]],[[-0.016984224319458,-0.039677906781435,-0.062999181449413],[-0.0015728208236396,0.081036664545536,-0.0061098071746528],[-0.091719217598438,0.065637849271297,-0.060703456401825]],[[0.14068415760994,0.13545273244381,0.047821298241615],[0.023842850700021,0.12350212037563,0.16066823899746],[0.03122247941792,0.087835885584354,0.016198147088289]],[[-0.060341209173203,0.068129777908325,0.17148214578629],[0.097129508852959,0.024053379893303,0.011714852415025],[0.059901162981987,0.063281141221523,0.042620666325092]],[[-0.050783637911081,0.051239930093288,-0.0034707933664322],[-0.089627534151077,-0.0094557320699096,-0.015988225117326],[-0.082467749714851,0.035021506249905,0.069245979189873]],[[0.01587781868875,0.026170102879405,0.0051646023057401],[-0.0029260539449751,-0.026767712086439,-0.041663557291031],[0.084838576614857,0.1404891461134,0.034918274730444]],[[0.023018965497613,0.011493241414428,0.003767944406718],[0.1002558618784,0.063246563076973,0.082017630338669],[0.064832419157028,0.062719896435738,0.035593461245298]],[[-0.011070353910327,-0.055871490389109,0.018796334043145],[0.0080826291814446,0.053907427936792,-0.010136923752725],[-0.038021612912416,-0.10237955302,-0.046393752098083]],[[-0.047996155917645,-0.050890889018774,0.049540940672159],[-0.053819742053747,0.053674444556236,-0.048782896250486],[-0.012261807918549,-0.034216292202473,-0.039483487606049]],[[-0.074205242097378,-0.00081626826431602,-0.038944307714701],[-0.073967404663563,-0.091102816164494,0.011857817880809],[-0.081239975988865,-0.016650365665555,0.011281325481832]],[[-0.068459674715996,-0.022998617962003,-0.037331249564886],[0.0022122550290078,-0.035169623792171,-0.075354106724262],[0.082463182508945,0.028336329385638,-0.038052216172218]],[[-0.052838172763586,-0.019516039639711,-0.10751003026962],[-0.0099612167105079,0.031632054597139,-0.053531128913164],[-0.064721636474133,-0.10598784685135,0.069320343434811]],[[-0.041782084852457,-0.0061171525157988,-0.032640401273966],[0.026399435475469,0.029021393507719,-0.030769536271691],[0.055790141224861,-0.0014082227135077,-0.014308623969555]],[[-0.00035052906605415,-0.034058846533298,-0.037299782037735],[-0.018937189131975,-0.078273013234138,0.081460811197758],[-0.010073463432491,0.016850845888257,0.058803532272577]],[[-0.038947939872742,0.050998140126467,0.06384215503931],[0.03840309008956,0.075032062828541,0.040119752287865],[0.077091127634048,-0.015949131920934,0.0091530624777079]],[[-0.011801881715655,-0.0565399043262,0.034497000277042],[-0.080883108079433,-0.10271086543798,-0.063708312809467],[0.01722170598805,0.11772389709949,0.049637090414762]],[[-0.096893519163132,-0.0087738446891308,0.078034847974777],[-0.052349921315908,-0.088511802256107,-0.012089617550373],[0.043390102684498,-0.059852279722691,0.09063720703125]],[[0.07191476225853,0.035995051264763,0.0093487417325377],[0.039422392845154,-0.030702125281096,-0.0015117734437808],[-0.017206067219377,0.014792890287936,0.02106125280261]],[[-0.013663301244378,-0.010095046833158,-0.041720405220985],[-0.030076015740633,-0.0089627169072628,-2.874343044823e-05],[-0.027849623933434,-0.089770346879959,-0.065533764660358]],[[-0.068939596414566,0.036727745085955,0.082318760454655],[0.0064651621505618,-0.018216839060187,0.0030370734166354],[0.026272347196937,-0.016642296686769,0.06303009390831]],[[0.011370581574738,0.0040478054434061,-0.01191695407033],[0.053948599845171,0.096395835280418,-0.030527073889971],[0.01025702059269,-0.041291080415249,0.063911586999893]],[[0.047638431191444,0.044638145714998,0.024188416078687],[0.042069975286722,0.031896226108074,0.026276530697942],[0.030478378757834,-0.057146538048983,0.005380833055824]],[[-0.09430930018425,0.011179833672941,-0.085087731480598],[-0.056636039167643,-0.09363067895174,-0.098740540444851],[-0.012845708988607,-0.1233863607049,0.043142765760422]],[[-0.029647320508957,-0.0099981818348169,0.094213224947453],[0.034508384764194,-0.0046174330636859,0.067089386284351],[0.021977519616485,-0.016817390918732,0.05283235758543]],[[0.024841004982591,-0.062956564128399,-0.0095588797703385],[-0.037073973566294,0.054453976452351,0.014356400817633],[0.051579691469669,-0.00045978539856151,0.055459704250097]],[[-0.05513283982873,0.01214836165309,0.052524078637362],[-0.07462078332901,-0.074485935270786,-0.044083178043365],[-0.021564206108451,-0.028710100799799,-0.016430275514722]],[[0.077904172241688,0.1552816927433,0.086469486355782],[0.055209420621395,0.067909628152847,0.05276507511735],[-0.11177007108927,0.046674326062202,0.00075493147596717]],[[-0.045784518122673,-0.019875878468156,-0.049842029809952],[0.064775310456753,0.042538736015558,-0.0049246163107455],[0.018598994240165,0.040348619222641,0.058327481150627]],[[0.074007973074913,0.039299126714468,0.012342484667897],[0.0334064476192,0.014159743674099,-0.042127054184675],[0.031947489827871,0.080629341304302,-0.098246060311794]],[[0.048750247806311,-0.064097814261913,-0.021347671747208],[0.021883524954319,-0.014075910672545,0.020096950232983],[0.014816362410784,0.053363382816315,-0.097838222980499]],[[-0.032870937138796,-0.10101897269487,-0.030471136793494],[-0.02578991279006,-0.0074655935168266,-0.029551930725574],[0.037895988672972,-0.024138459935784,-0.045759666711092]],[[0.09411833435297,0.097259506583214,-0.03214705735445],[0.0076160533353686,0.065184950828552,0.013362253084779],[0.13707323372364,0.045192826539278,0.11858224123716]],[[0.028912151232362,0.061060894280672,0.070735663175583],[-0.056867152452469,0.028904730454087,-0.075198717415333],[-0.046345200389624,0.081031084060669,-0.024916529655457]],[[-0.042597100138664,-0.051524862647057,-0.010069146752357],[-0.069290645420551,0.038108799606562,0.032653655856848],[-0.022723816335201,-0.050546959042549,0.084100253880024]],[[0.032431859523058,0.094264164566994,-0.11165945976973],[-0.055553343147039,0.033635299652815,0.18784591555595],[-0.0052421712316573,-0.0079436432570219,-0.078562021255493]],[[-0.06745234131813,0.087872602045536,0.03395377099514],[-0.0082504758611321,0.049917735159397,0.01355264429003],[-0.081173941493034,0.037733558565378,0.018903583288193]],[[0.038712251931429,-0.065147250890732,-0.063008442521095],[0.078401573002338,0.0028070772532374,0.022962534800172],[0.0069179669953883,-0.13221643865108,0.015087763778865]],[[-0.11334501951933,0.061401538550854,0.02436757273972],[0.02482289634645,-0.064276039600372,0.0055318521335721],[-0.063321724534035,-0.0072322157211602,0.024167500436306]],[[0.081521213054657,0.093446776270866,-0.075781054794788],[0.042163912206888,0.092775784432888,-0.054117374122143],[0.073295123875141,0.016721848398447,-0.064249761402607]],[[-0.027591252699494,-0.039653480052948,0.01495077367872],[0.10625010728836,0.0063698054291308,-0.054080124944448],[-0.038028851151466,0.055236879736185,-0.02404959499836]],[[0.012965720146894,0.030052637681365,-0.016195975244045],[0.16393612325191,0.15449687838554,-0.094886422157288],[-0.00021318990911823,-0.076299615204334,0.096017569303513]],[[0.00012150936527178,-0.045871313661337,-0.1179676502943],[0.022975692525506,-0.020945020020008,-0.050607904791832],[-0.0010154200717807,-0.04370230063796,-0.018397696316242]],[[0.060206010937691,-0.027664862573147,-0.043494839221239],[0.054762721061707,-0.057916551828384,-0.038656033575535],[-0.038704477250576,-0.07788872718811,-0.0025774643290788]],[[0.050687987357378,-0.022657658904791,0.12065213173628],[0.027949577197433,-0.027125528082252,-0.016944114118814],[0.072492271661758,0.063981361687183,-0.016237355768681]],[[0.00055610039271414,0.011852578260005,-0.026179745793343],[0.06444787979126,-0.0072366427630186,0.028020473197103],[0.078620634973049,0.099178172647953,-0.050399333238602]],[[0.019032219424844,0.021070793271065,0.0025279538240284],[-0.021184673532844,0.025027262046933,0.021587133407593],[0.016405617818236,-0.011538231745362,0.010187074542046]],[[-0.084764659404755,0.014654640108347,0.096265777945518],[-0.017881756648421,-0.035251084715128,-0.03245659917593],[-0.086127482354641,-0.06184708699584,-0.04790435358882]],[[0.0019258855609223,0.041487582027912,0.098970219492912],[0.069692492485046,0.041079469025135,-0.06128228828311],[0.047436237335205,0.035391081124544,-0.066128395497799]],[[0.06374829262495,-0.072499848902225,0.21291296184063],[0.015183994546533,-0.020883427932858,0.10828687995672],[-0.061519995331764,-0.0035239581484348,0.02892436645925]],[[0.012525671161711,-0.045386280864477,0.0090691512450576],[-0.0019748557824641,-0.0055515272542834,0.011233912780881],[0.053612437099218,-0.024440394714475,0.043340127915144]],[[0.10274515300989,-0.036173149943352,-0.048486586660147],[0.034259025007486,-0.034888602793217,-0.063921056687832],[0.021108333021402,0.11848679929972,-0.024763122200966]],[[0.15109026432037,0.010115231387317,-0.0052722957916558],[-0.01691628433764,-0.0082504684105515,0.027449999004602],[0.049844827502966,0.055741708725691,-0.037412140518427]],[[-0.025579797104001,-0.017424223944545,0.0099500212818384],[-0.077467106282711,-0.12210325151682,0.090313196182251],[0.026340361684561,-0.077776074409485,0.016510516405106]],[[-0.0083659756928682,-0.08430490642786,0.075194403529167],[0.015996444970369,0.018720354884863,0.045133844017982],[0.066507712006569,-0.06805045902729,0.10196302831173]],[[-0.024729197844863,0.036261279135942,0.010280995629728],[-0.037074867635965,-0.020249500870705,-0.12244460731745],[0.0086305467411876,-0.0051984675228596,-0.014301563613117]],[[-0.057954270392656,-0.030083622783422,-0.052390817552805],[-0.019876271486282,-0.03934259340167,-0.065070427954197],[-0.0027400255203247,-0.033973075449467,0.043528702110052]],[[-0.00452098576352,0.087985083460808,0.024142369627953],[0.00066609116038308,0.055987898260355,-0.06454049795866],[0.060832306742668,0.10763612389565,-0.0013308627530932]],[[-0.082863412797451,-0.0016212263144553,0.031036844477057],[0.16593161225319,0.0096310172230005,-0.043511103838682],[-0.089844532310963,0.10882664471865,-0.014762854203582]],[[-0.008370048366487,0.11112736165524,0.099221989512444],[-0.017447160556912,0.077819660305977,0.031375363469124],[0.1077212318778,0.03999362513423,0.029788188636303]],[[0.11115910857916,-0.054622210562229,-0.049506273120642],[-0.066561862826347,-0.051071304827929,0.034988962113857],[0.076179891824722,0.10873088985682,-0.015631085261703]],[[0.10347601771355,0.037899900227785,-0.031966157257557],[0.0051048356108367,0.015866231173277,0.0079003097489476],[-0.041030619293451,0.030585046857595,-0.051542386412621]],[[-0.084969565272331,-0.11411084234715,-0.048055291175842],[0.01546155847609,0.051022756844759,0.19964994490147],[-0.01149769499898,-0.064991049468517,0.052849538624287]],[[0.060629319399595,0.072434730827808,0.049135182052851],[0.1338859051466,0.067389607429504,-0.013767811469734],[0.12849117815495,0.012151126749814,0.050546672195196]],[[-0.040510680526495,0.082274220883846,0.072371229529381],[0.041526969522238,-0.043204858899117,0.020458929240704],[0.096861883997917,-0.090660020709038,-0.0058106742799282]],[[-0.00018506406922825,0.076403990387917,-0.04521843418479],[-0.015885818749666,-0.064785979688168,-0.079797141253948],[0.011987291276455,-0.033849116414785,0.035752099007368]],[[-0.069710746407509,-0.032777350395918,-0.070136390626431],[0.0092697907239199,-0.12857910990715,0.083767347037792],[0.034564562141895,-0.087533853948116,-0.053385823965073]],[[0.12326897680759,-0.018017208203673,-0.068107664585114],[0.12722869217396,0.015885824337602,0.0043735797517002],[0.0093054939061403,-0.047085881233215,-0.038708705455065]],[[0.065470770001411,0.024371061474085,0.074529252946377],[-0.015823720023036,0.026703514158726,0.099341422319412],[0.017406096681952,0.071016050875187,0.027448730543256]],[[0.024152677506208,0.065180085599422,0.039815559983253],[-0.030853955075145,-0.052468195557594,0.01233097165823],[-0.051839977502823,0.078581817448139,0.07631416618824]],[[0.0086754988878965,0.063137292861938,-0.029733654111624],[0.012296387925744,-0.0082602128386497,-0.10843077301979],[-0.0089412741363049,0.0077364388853312,-0.12474627047777]],[[0.04070496186614,-0.011007295921445,-0.016215935349464],[0.062247350811958,0.039752077311277,-0.037746477872133],[0.078882679343224,-0.0066598048433661,0.132896900177]],[[-0.025244308635592,-0.086264409124851,-0.063929565250874],[0.087369292974472,0.09894160926342,-0.061178497970104],[-0.0039068469777703,0.049669556319714,-0.076251111924648]],[[-0.019316071644425,-0.088426657021046,-0.088838592171669],[-0.064114585518837,-0.062414765357971,-0.072843201458454],[0.012655636295676,-0.076242856681347,-0.008488099090755]],[[-0.036591410636902,-0.016227895393968,0.049699176102877],[-0.083700180053711,-0.0072744865901768,0.074816048145294],[0.062192749232054,-0.062032748013735,0.013014297932386]],[[-0.0096178147941828,0.021736131981015,0.0052406145259738],[0.079014137387276,0.024403324350715,0.023313134908676],[0.047527585178614,-0.004990846849978,-0.008793861605227]],[[-0.066369913518429,-0.0084508918225765,-0.069966949522495],[0.12427215278149,0.025222765281796,-0.022819949313998],[-0.048080757260323,-0.013319901190698,-0.049208596348763]],[[0.024401284754276,0.011501170694828,-0.028294960036874],[-0.080655135214329,0.03240642696619,0.051003351807594],[-0.022748477756977,-0.0089822430163622,0.0014958988176659]],[[-0.053563550114632,-0.08203300088644,-0.052843529731035],[0.069019488990307,0.047486506402493,-0.059009920805693],[0.083856053650379,0.062390320003033,-0.0031629870645702]],[[-0.081389628350735,-0.077926531434059,-0.11635820567608],[-0.057303909212351,-0.033066380769014,-0.10198812931776],[0.014523935504258,-0.037816047668457,-0.01490368321538]],[[0.027319652959704,-0.0016113652382046,-0.019549014046788],[0.065290972590446,-0.037505492568016,-0.099366299808025],[-0.033557951450348,-0.054994605481625,0.051984168589115]],[[0.051535855978727,0.0026091991458088,0.16899651288986],[-0.034822333604097,-0.12836214900017,0.15410633385181],[0.029679635539651,0.1191923469305,0.049726169556379]],[[-0.015664549544454,-0.028800586238503,0.092878811061382],[-0.13368006050587,-0.021834533661604,-0.050837211310863],[-0.063467770814896,-0.019150272011757,-0.07062353938818]],[[-0.025728605687618,-0.054296437650919,-0.037729352712631],[-0.10258373618126,0.0016528174746782,-0.032011207193136],[-0.023353390395641,0.042970113456249,0.048115573823452]],[[0.011821293272078,0.071030929684639,0.055490292608738],[-0.045636847615242,-0.0058023552410305,-0.012495579198003],[0.11641716957092,-0.012414793483913,-0.047176904976368]],[[0.065603703260422,-0.082469023764133,0.10302041471004],[-0.036658987402916,0.0071722082793713,0.03929091617465],[-0.13317547738552,0.017692010849714,-0.011751149781048]],[[-0.024221612140536,0.078590132296085,0.096256375312805],[-0.044643186032772,0.058904998004436,0.085826776921749],[-0.027674717828631,0.020170960575342,0.063433147966862]],[[0.019191730767488,-0.040880233049393,-0.044147804379463],[0.059843011200428,0.0061883926391602,-0.02447421848774],[-0.020313208922744,0.033708300441504,0.011816608719528]],[[0.11628996580839,0.11192293465137,0.06261307746172],[0.040890358388424,0.029757536947727,0.068781845271587],[0.054846111685038,-0.014348807744682,0.018052950501442]],[[0.049065243452787,0.0091974390670657,0.058089219033718],[-0.0080337319523096,-0.022094877436757,0.027754366397858],[-0.04695563018322,-0.018991366028786,0.00081303040497005]]],[[[-0.028652654960752,-0.0022236057557166,0.027994403615594],[0.00012566935038194,-0.017355870455503,0.011736976914108],[-0.033815700560808,0.027443267405033,0.079532235860825]],[[0.040152959525585,-0.0028790854848921,-0.078776650130749],[-0.11193327605724,-0.0071331216022372,0.012229445390403],[0.0056235147640109,-0.013390643522143,0.033674638718367]],[[-0.031768709421158,-0.039631761610508,-0.075273796916008],[0.02892099507153,-0.057813007384539,-0.078239686787128],[-0.061834204941988,-0.027780516073108,-0.0036731276195496]],[[0.029641347005963,0.062822349369526,0.051051031798124],[-0.033926792442799,-0.050585940480232,-0.032158747315407],[0.015665594488382,-0.067687086760998,0.0074887098744512]],[[-0.041629280894995,0.02762370929122,-0.041345182806253],[0.0098134055733681,0.049937900155783,0.056053165346384],[-0.07254159450531,0.051468830555677,0.011775334365666]],[[0.037788461893797,0.043073438107967,0.04471118748188],[0.016561148688197,0.062827341258526,0.095404528081417],[0.019208936020732,-0.021982632577419,0.00039566052146256]],[[0.022684594616294,-0.010400430299342,0.01272566895932],[0.096100397408009,-0.051987390965223,-0.042788453400135],[-0.010355816222727,-0.018711132928729,-0.0073666297830641]],[[-0.056972172111273,-0.036675825715065,0.00042372188181616],[0.058488134294748,0.048470973968506,0.047156799584627],[-0.039170678704977,0.060863293707371,0.015536921098828]],[[-0.028243776410818,-0.04450611397624,0.045144002884626],[0.021735936403275,-0.019749600440264,-0.047685489058495],[0.051480531692505,0.055449873209,0.029355701059103]],[[-0.036005470901728,0.031969420611858,0.055677939206362],[0.017888503149152,0.0066360672935843,0.0096040992066264],[0.13047967851162,-0.0081393560394645,0.00052263087127358]],[[-0.0077013610862195,-0.015264043584466,0.034814700484276],[-0.05780465900898,0.058289732784033,0.034996494650841],[-0.040093511343002,0.012921293266118,0.021595694124699]],[[0.046342048794031,-0.096540778875351,-0.0049214516766369],[-0.034065343439579,-0.072681702673435,0.030498845502734],[-0.011219031177461,0.012946956790984,0.0025330660864711]],[[0.053160507231951,-0.024887409061193,0.014238422736526],[-0.0081720855087042,0.0088652260601521,-0.045445382595062],[-0.01097019482404,-0.00200648419559,0.063732944428921]],[[0.074827648699284,0.053854640573263,-0.085934430360794],[-0.063019476830959,-0.035832576453686,-0.061915535479784],[-0.00079969182843342,-0.015018335543573,0.030110184103251]],[[0.085495509207249,0.077993705868721,0.050285141915083],[-0.039576970040798,-0.013063083402812,-0.043030887842178],[-0.0094367153942585,0.07349394261837,0.031136710196733]],[[0.017997715622187,-0.0025649631861597,-0.021347003057599],[-0.0032292418181896,0.048335235565901,-0.05510263517499],[0.0084958467632532,-0.016248689964414,-0.04336941242218]],[[0.026902511715889,-0.017511986196041,0.084168843924999],[0.051686700433493,-0.0060185641050339,0.06538974493742],[-0.012113803066313,0.0095594031736255,-0.06113089248538]],[[0.018009599298239,-0.0059423870407045,-0.064043685793877],[-0.016398573294282,-0.03812250494957,-0.083667375147343],[-0.035661574453115,0.034545570611954,-0.077819794416428]],[[0.029703065752983,-0.041829876601696,0.066643767058849],[0.036216758191586,-0.088702917098999,-0.035841297358274],[-0.027391817420721,-0.047350879758596,0.058433949947357]],[[-0.018314832821488,-0.011799141764641,-0.053268413990736],[-0.0032740421593189,-0.033917427062988,0.066375136375427],[-0.007644263561815,-0.030591359362006,0.00095043051987886]],[[0.052178602665663,-0.031816776841879,0.063865087926388],[-0.060996476560831,0.011001555249095,-0.082488544285297],[0.096307724714279,0.044169742614031,-0.048638127744198]],[[0.11767306923866,-0.0025737872347236,-0.014844011515379],[0.049929607659578,0.040312007069588,0.066147662699223],[0.042509887367487,0.10374753177166,0.027851276099682]],[[0.021778089925647,-0.020515102893114,-0.029816700145602],[-0.056772246956825,-0.0030942354351282,-0.06602044403553],[-0.031293492764235,-0.082588501274586,0.045209176838398]],[[0.01270017772913,0.057535506784916,-0.044780239462852],[-0.035850360989571,0.083831332623959,0.026931351050735],[0.044355813413858,-0.0089479917660356,0.041844077408314]],[[0.042755115777254,0.036026686429977,-0.045809593051672],[0.084899261593819,-0.022645957767963,0.0056818346492946],[-0.010405327193439,-0.037501692771912,0.028058247640729]],[[-0.016037138178945,0.086689792573452,0.061638280749321],[0.0083515467122197,0.063375055789948,-0.01784148439765],[0.0035209115594625,-0.073582507669926,-0.0080804144963622]],[[0.050780907273293,-0.028107382357121,-0.04270076751709],[0.0048883142881095,0.0089411651715636,0.044843655079603],[-0.042417388409376,0.070701636373997,0.016320824623108]],[[0.03066086769104,0.061009973287582,-0.0037783039733768],[0.022680198773742,-0.012919972650707,-0.028016664087772],[0.072059527039528,0.068943366408348,-0.010162533260882]],[[-0.090522766113281,-0.015667453408241,0.024556241929531],[-0.0004023679648526,-0.066451169550419,0.072916336357594],[0.040858253836632,0.093308731913567,0.010299821384251]],[[0.019852103665471,-0.020328694954515,-0.016890285536647],[-0.04563594609499,0.040624875575304,0.064457550644875],[-0.0022601035889238,0.044002011418343,-0.03913813829422]],[[-0.016304280608892,-0.0066305832006037,-0.033372592180967],[0.040964607149363,0.04799460247159,-0.059756942093372],[-0.015464334748685,0.035541050136089,0.004442089702934]],[[0.086267583072186,0.060973968356848,-0.050428047776222],[-0.0051993583329022,0.03637058660388,-0.0071049500256777],[0.065475434064865,0.042899776250124,-0.032003693282604]],[[0.054737787693739,0.032530263066292,-0.0055874423123896],[0.0035977165680379,-0.00030045380117372,-0.0070230308920145],[0.033416710793972,0.087020479142666,0.0037026144564152]],[[0.017409486696124,0.056924618780613,-0.016378086060286],[-0.0056398441083729,-0.031627248972654,-0.051215991377831],[0.032843351364136,-0.0084482226520777,0.011835894547403]],[[0.065310180187225,-0.029377227649093,-0.0018005856545642],[0.016844561323524,0.0996925085783,-0.033058524131775],[-0.046692557632923,-0.091635003685951,0.043167479336262]],[[-0.0065013263374567,0.05045685172081,0.043386232107878],[-0.032907258719206,-0.017826601862907,-0.017716409638524],[-0.0015792335616425,0.0096709104254842,-0.0063978633843362]],[[0.045561455190182,0.00029193522641435,0.014361358247697],[0.053026761859655,-0.028715809807181,0.072270318865776],[0.023265248164535,0.041912820190191,0.0091917794197798]],[[0.01772484369576,-0.043744225054979,0.015602038241923],[-0.0058419303968549,0.012605433352292,-0.027354504913092],[0.052928991615772,0.016039662063122,-0.039184395223856]],[[-0.013300257734954,-0.032539878040552,0.0093834642320871],[-0.029006885364652,0.030514968559146,-0.070450447499752],[0.02945290133357,-0.017253110185266,-0.029590401798487]],[[0.055592399090528,-0.0064801694825292,0.076773017644882],[-0.054245211184025,0.038940597325563,0.045878034085035],[0.0041286768391728,0.068456672132015,0.042837586253881]],[[-0.035317171365023,0.044235289096832,0.012280368246138],[0.016714809462428,-0.013916467316449,-0.013170425780118],[0.039381042122841,0.0046478374861181,0.062280885875225]],[[0.030369123443961,0.013543960638344,0.053012680262327],[-0.0019586693961173,0.079429924488068,-0.018932016566396],[0.051359634846449,0.076325975358486,0.036653742194176]],[[0.031049447134137,0.073410898447037,0.057535376399755],[0.05622823536396,0.019055902957916,0.1040225699544],[0.085249409079552,0.064071998000145,0.081201612949371]],[[-0.011700090952218,0.083823338150978,-0.011465910822153],[-0.02102473564446,0.035387519747019,-0.02831556648016],[0.0091868853196502,-0.0047543770633638,-0.0022639345843345]],[[0.043275814503431,0.083977557718754,0.018275020644069],[-0.039435517042875,0.0019630251917988,-0.034004807472229],[0.079634942114353,0.035430315881968,0.08412292599678]],[[0.021203653886914,0.012548657134175,0.025683214887977],[0.051440801471472,0.010794520378113,-0.00356061081402],[0.091004237532616,-0.11151181161404,0.0037718652747571]],[[0.033990133553743,0.016107881441712,-0.019304489716887],[0.064520724117756,-0.072629444301128,-0.025532392784953],[0.016281105577946,0.059113472700119,-0.028041750192642]],[[-0.066163651645184,-0.018026957288384,-0.028599042445421],[0.032731287181377,0.097869880497456,-0.086221270263195],[-0.013677271082997,-0.006530930288136,0.050341889262199]],[[0.050415154546499,-0.036623988300562,-0.0068115382455289],[0.078177355229855,-0.057981941848993,0.003224776359275],[0.0668029114604,-0.025663740932941,0.04873413592577]],[[-0.049431886523962,-0.0323879532516,0.017178826034069],[-0.015123349614441,0.049787569791079,0.018129579722881],[0.012667007744312,0.031008856371045,0.02151669934392]],[[0.061010800302029,-0.0035256969276816,0.02939161658287],[-0.028241133317351,-0.022719433531165,0.016260797157884],[0.0096337804570794,0.038474503904581,0.021454742178321]],[[0.0045063644647598,-0.0025895365979522,-0.069106869399548],[0.050317618995905,-0.054901987314224,0.021919079124928],[0.052614543586969,0.007483571767807,0.013167636469007]],[[0.05211042240262,-0.015213570557535,-0.073109276592731],[-0.072998039424419,-0.024419035762548,-0.073033630847931],[0.0062100943177938,-0.035139493644238,-0.01250628195703]],[[0.035681676119566,0.028319140896201,-0.016450699418783],[0.013381972908974,0.015792412683368,0.0035352306440473],[0.048228360712528,0.021887812763453,0.0018691535806283]],[[0.049000445753336,0.039001353085041,-0.047947261482477],[0.018472583964467,-0.030948776751757,-0.056605517864227],[-0.018032057210803,0.028538748621941,0.025094479322433]],[[-0.035554759204388,-0.0067251278087497,0.056881543248892],[0.046575970947742,0.012221599929035,0.027709988877177],[-0.0048736049793661,-0.039972867816687,-0.011878251098096]],[[0.067803129553795,0.037830233573914,0.1078267171979],[0.0096754506230354,0.028877038508654,0.04119661077857],[-0.035589952021837,0.010145967826247,-0.022940682247281]],[[0.022647986188531,-0.072728857398033,0.082310684025288],[0.018756628036499,0.00075585179729387,-0.029319809749722],[-0.036428663879633,-0.099406383931637,-0.021394956856966]],[[0.037885740399361,0.023276126012206,0.046016406267881],[0.01436651404947,0.0029672204982489,-0.043930429965258],[0.043110072612762,-0.10298835486174,0.01597298309207]],[[0.04547306895256,-0.045485902577639,-0.079158112406731],[0.00043917656876147,-0.024050418287516,0.029577007517219],[-0.036754328757524,-0.051969345659018,0.00059868767857552]],[[0.047266777604818,0.01397867873311,-0.043514065444469],[0.022252924740314,0.041721519082785,0.019864743575454],[-0.055866092443466,0.037556651979685,0.0034000424202532]],[[0.034982226788998,0.08434721827507,-0.049725290387869],[-0.060011554509401,0.022881578654051,0.057627085596323],[0.025708258152008,-0.0016530209686607,-0.083978578448296]],[[0.050906665623188,-0.045099813491106,0.010975341312587],[-0.020670814439654,-0.017000740393996,-0.014539146795869],[0.046865157783031,-0.017465563490987,-0.080890841782093]],[[-0.0051572164520621,0.060943759977818,0.054097171872854],[0.045162945985794,0.060010977089405,0.027195984497666],[0.054649975150824,0.032419092953205,6.070426752558e-05]],[[-0.041162140667439,-0.050636373460293,-0.0029942512046546],[-0.10500876605511,-0.080246269702911,-0.016386596485972],[0.003641051473096,-0.010352454148233,-0.056346699595451]],[[-0.03018643707037,0.05321404337883,-0.057749532163143],[0.061512466520071,0.036737445741892,-0.029101705178618],[0.11900226771832,-0.0019532083533704,0.014371925964952]],[[-0.042046006768942,0.020443711429834,0.032645598053932],[-0.013707912527025,-0.052189011126757,-0.010946393013],[0.042070705443621,0.079511404037476,-0.020878333598375]],[[-0.024496840313077,0.021166369318962,0.013511531054974],[0.09222212433815,0.0059816078282893,-0.033849872648716],[-0.061807680875063,0.064627669751644,0.021956047043204]],[[0.053392309695482,0.021108794957399,0.068307593464851],[-0.0049094930291176,0.012479050084949,0.0076251327991486],[0.030872011557221,0.03738334774971,0.022600321099162]],[[0.12885144352913,0.01296722702682,0.0390440300107],[-0.018344461917877,0.0086862305179238,0.046695351600647],[-0.010908144526184,-0.010514945723116,0.045033525675535]],[[-0.0046856733970344,0.033523250371218,0.041918553411961],[0.01072411891073,0.059162627905607,0.0096454089507461],[-0.034142185002565,0.065406776964664,0.054535716772079]],[[0.031080421060324,0.0077430391684175,0.013233128003776],[-0.13209861516953,0.040715884417295,0.0097683258354664],[-0.066957496106625,-0.033465649932623,-0.044252600520849]],[[0.012927253730595,0.05164585262537,-0.0047695999965072],[0.02129996009171,0.10919748991728,0.029821423813701],[-0.034084964543581,0.026446433737874,-0.0033255070447922]],[[-0.014684257097542,-0.045624561607838,0.056380424648523],[0.0081917913630605,0.056402642279863,0.031830888241529],[-0.026338439434767,0.034053765237331,0.030962470918894]],[[0.0039270836859941,0.12233554571867,-0.044139474630356],[0.018445989117026,-0.0080429185181856,-0.026551650837064],[0.080008208751678,-0.0033391965553164,0.057956043630838]],[[-0.054387971758842,-0.062037784606218,0.032317690551281],[-0.0022601285018027,-0.0076110037043691,0.012908970937133],[-0.0538663379848,0.029941314831376,0.037312120199203]],[[-0.043846141546965,-0.081798128783703,0.074576534330845],[-0.046599008142948,0.045003846287727,0.076525926589966],[-0.016020659357309,-0.036211121827364,-0.072821363806725]],[[0.076918609440327,-0.030881410464644,0.046267159283161],[0.044217210263014,0.036272715777159,0.024352358654141],[-0.022516001015902,0.014347895048559,-0.0049515548162162]],[[-0.095757737755775,-0.0046373433433473,0.021399915218353],[-0.016564374789596,0.031550753861666,-0.039173770695925],[0.012829451821744,0.013883854262531,0.0074263988062739]],[[-0.018627885729074,0.060188893228769,0.067948535084724],[0.03381722420454,-0.025191333144903,0.0014569262275472],[0.041805479675531,-0.0050278380513191,0.026687560603023]],[[-0.05886048078537,0.055862359702587,0.0013904753141105],[0.052894115447998,-0.056894220411777,-0.029506478458643],[0.002276323037222,-0.054364219307899,0.07724279910326]],[[-0.011072256602347,0.10829170048237,0.055871706455946],[0.015803938731551,-0.041748229414225,-0.017861252650619],[0.047755874693394,0.052210867404938,-0.0025079066399485]],[[-0.079897686839104,-0.057759124785662,0.1314412355423],[0.010273749008775,0.095489174127579,-0.019530916586518],[0.039096664637327,-0.015553107485175,-0.017269317060709]],[[-0.0049575204029679,0.029490415006876,0.063075728714466],[0.02187729999423,0.038573164492846,0.0010681218700483],[-0.074969820678234,0.044332858175039,0.068288862705231]],[[-0.0081461286172271,0.021419394761324,-0.0021105716004968],[0.033988904207945,0.038881175220013,0.05937922373414],[-0.042783442884684,-0.03504528477788,0.0098548587411642]],[[0.045707833021879,0.0095378318801522,-0.022581819444895],[0.032599605619907,-0.019739151000977,-0.00091651815455407],[-0.039138935506344,-0.053232077509165,0.035928577184677]],[[0.0071900961920619,0.00036208025994711,-0.012029186822474],[0.043913289904594,0.044607724994421,0.0026170713827014],[-0.020010696724057,0.03059396892786,0.0025956614408642]],[[-0.023397447541356,0.037977419793606,0.043236222118139],[-0.020782368257642,0.043343096971512,-0.011935853399336],[-0.025307221338153,-0.010549218393862,0.020154187455773]],[[0.0325922742486,-0.025304956361651,0.045162532478571],[0.030433773994446,0.0057459007948637,0.011488165706396],[-0.038838323205709,0.011115617118776,0.010888613760471]],[[0.028861589729786,0.002841527108103,0.066933251917362],[0.029195344075561,-0.047818966209888,0.0078210178762674],[0.037952270358801,0.033149342983961,-0.067895352840424]],[[0.00096123211551458,0.01151563692838,-0.033521112054586],[-0.05813043564558,0.0064018256962299,0.05539333820343],[0.054946471005678,-0.0050343205220997,0.13230909407139]],[[-0.013200870715082,0.018108246847987,-0.011020745150745],[0.020463457331061,-0.0014003928517923,0.032404918223619],[-0.018131408840418,0.028556538745761,-0.05379518866539]],[[0.016074793413281,-0.01188032887876,0.0076365410350263],[0.02227570861578,-0.044828169047832,0.059045787900686],[0.048204191029072,0.060170270502567,0.043407499790192]],[[0.068221747875214,0.0014357351465151,0.038430508226156],[-0.021592965349555,-0.0037016042042524,0.002936385339126],[0.016671020537615,0.049495298415422,0.073231652379036]],[[-0.062590561807156,0.033784650266171,0.029511503875256],[-0.023773588240147,-0.019344341009855,-0.075670458376408],[0.03631304949522,0.075089551508427,0.0044570337049663]],[[0.023594211786985,-0.02139138430357,0.0099573042243719],[0.0011082217097282,0.031797222793102,0.020961536094546],[-0.013643346726894,0.030578656122088,-0.0030575678683817]],[[-0.12221869081259,-0.053678333759308,-0.0017963338177651],[0.020153613761067,0.044911362230778,0.021145228296518],[0.044591948390007,-0.068528987467289,-0.0047786356881261]],[[-0.006624155677855,0.013327088207006,-0.0094631351530552],[0.051116187125444,-0.011978861875832,0.011575938202441],[0.02900218218565,-0.0095678390935063,0.064185038208961]],[[-0.065330073237419,0.0687615275383,-0.018154669553041],[-0.011100871488452,0.054499845951796,0.063356421887875],[0.025954384356737,0.059025879949331,-0.059262812137604]],[[0.040057964622974,0.094454653561115,0.048552457243204],[-0.040898308157921,-0.061183013021946,0.0014621120644733],[0.042837884277105,0.13385589420795,0.026199886575341]],[[-0.064524695277214,0.053062118589878,-0.01505630556494],[-0.041394423693419,-0.038418736308813,0.067437246441841],[-0.01440323330462,-0.10999841988087,-0.0099797714501619]],[[-0.039784617722034,-0.012647243216634,-0.040084514766932],[0.10437670350075,0.054559879004955,-0.027370968833566],[0.013003216125071,0.031718347221613,-0.019613100215793]],[[0.10717578977346,0.029376352205873,0.021533865481615],[0.025607021525502,-0.040890354663134,0.066165395081043],[-0.0068908534012735,0.020137852057815,-0.0070344698615372]],[[0.076721891760826,0.011096595786512,-0.03840459138155],[-0.04476322978735,-0.08550263941288,-0.046025972813368],[-0.047840211540461,-0.0072425408288836,0.00039159247535281]],[[-0.039586152881384,-0.054320979863405,0.027348432689905],[0.026978900656104,-0.0051680323667824,0.024532256647944],[0.029460409656167,0.059125863015652,0.023673316463828]],[[0.02736696228385,-0.036482766270638,0.011456374078989],[0.10599078983068,0.076339535415173,-0.064816512167454],[0.062358759343624,0.021431546658278,0.01973713003099]],[[-0.0024753084871918,0.0429920963943,-0.0031949130352587],[-0.036897651851177,0.062018778175116,0.026405278593302],[0.0026222709566355,0.024731984362006,-0.045591771602631]],[[0.076554194092751,-0.046598538756371,-0.020315518602729],[0.042665880173445,0.14782343804836,-0.043077278882265],[0.043069541454315,0.0092975441366434,-0.061384208500385]],[[0.020999137312174,0.056894868612289,-0.040798146277666],[0.022376408800483,-0.04078896343708,0.019668696448207],[-0.025826515629888,-0.063742756843567,0.049760021269321]],[[0.10893969237804,0.10482782125473,0.033391539007425],[-0.03528980910778,-0.025796180590987,0.007948599755764],[-0.020974727347493,0.11985551565886,0.059965584427118]],[[0.01930858194828,0.081799380481243,0.00077572144800797],[0.025610737502575,-0.042973961681128,-0.026177821680903],[-0.014547606930137,0.012195305898786,-0.039653636515141]],[[0.025074668228626,0.024394186213613,-0.022018995136023],[-0.0054847025312483,-0.029316443949938,-0.01069235149771],[-0.024303952232003,0.049858540296555,6.2794279074296e-05]],[[-0.058213282376528,-0.074528455734253,-0.042449083179235],[-0.087068349123001,0.079372704029083,0.089086897671223],[-0.012629576958716,-0.04365548864007,0.048964206129313]],[[-0.087144158780575,0.060171198099852,0.0036879293620586],[0.0089968936517835,0.067251048982143,0.012499819509685],[0.021856578066945,-0.053926851600409,0.063934400677681]],[[-0.046199701726437,0.056744158267975,-0.02622994594276],[0.036606378853321,0.016536695882678,0.0096660768613219],[0.0056482246145606,0.0056462250649929,0.016210086643696]],[[-0.034213420003653,0.020104341208935,-0.1016378775239],[-0.041550140827894,-0.056874517351389,0.058332141488791],[-0.016072785481811,0.028951726853848,0.028196776285768]],[[-0.045857280492783,0.023473121225834,0.0085246926173568],[0.08075712621212,0.080528028309345,0.030427698045969],[0.0096555212512612,0.0091985706239939,-0.018251178786159]],[[-0.037334877997637,0.031960103660822,-0.072769016027451],[-0.011329653672874,-0.0073560327291489,-0.036070790141821],[8.2740683865268e-05,0.028432609513402,0.0061405235901475]],[[0.039776246994734,-0.011555914767087,-0.083325140178204],[0.026909481734037,-0.020886177197099,-0.012263550423086],[-0.013197347521782,-0.092777661979198,-0.053419817239046]],[[0.039449617266655,0.055734757333994,0.015837535262108],[-0.027615727856755,0.007681502494961,-0.061513435095549],[-0.022085934877396,0.0019020923646167,0.010768007487059]],[[-0.059643782675266,-0.096452042460442,0.014009260572493],[-0.060590412467718,0.0050375708378851,-0.052160065621138],[0.00048882176633924,0.0050278040580451,-0.00093228288460523]],[[-0.07256893068552,-0.0040733199566603,0.03248568624258],[-0.053983382880688,-0.01960126683116,0.052440315485001],[-0.03102208673954,0.037156939506531,-0.047113265842199]],[[0.024443434551358,-0.028008105233312,0.0072218617424369],[0.0031019554007798,0.032764535397291,0.046207275241613],[0.067734956741333,-0.011143512092531,0.037493154406548]],[[-0.015687113627791,-0.064139381051064,-0.082950182259083],[-0.06147725880146,-0.018983796238899,0.045336227864027],[0.044310841709375,0.043872140347958,-0.033480457961559]],[[0.036832232028246,0.0035952145699412,0.052691947668791],[-0.0080861886963248,0.0038221725262702,-0.0043013859540224],[-0.034065056592226,-0.042868535965681,0.08104569464922]],[[-0.0083969896659255,-0.026750667020679,-0.039755403995514],[0.011365316808224,0.005170991178602,-0.0097392117604613],[-0.014698068611324,0.058193009346724,0.049796402454376]],[[0.080286845564842,0.0030081479344517,-0.012229931540787],[-0.047376576811075,0.0015614378498867,0.060191299766302],[0.026085315272212,0.0021587449591607,0.018643531948328]],[[0.019982656463981,0.03378001973033,0.01138145942241],[-0.010627954266965,-0.083864346146584,-0.037959296256304],[-0.01942297630012,0.030295472592115,-0.039959441870451]]],[[[-0.031555201858282,0.0022287981119007,-0.056668136268854],[0.010613762773573,0.041680749505758,0.015518147498369],[0.018968505784869,-0.0031736649107188,-0.039799422025681]],[[-0.00043155910680071,-0.076609425246716,-0.04344030469656],[0.016121879220009,-0.035141799598932,-0.13533255457878],[-0.011471967212856,-0.069610446691513,0.035253994166851]],[[-0.0017607131740078,-0.0078465221449733,-0.018922168761492],[-0.0091306678950787,0.010684227570891,-0.03487491607666],[-0.07891034334898,-0.045769263058901,0.066114284098148]],[[0.017876885831356,0.016137192025781,0.017208103090525],[0.0030120124574751,0.085689432919025,0.02670482173562],[0.080526120960712,0.045353755354881,0.050964880734682]],[[-0.063269019126892,-0.01712879166007,-0.046914838254452],[0.029873019084334,-0.0039420002140105,0.06305980682373],[-0.11504770815372,-0.041873149573803,-0.010461420752108]],[[0.070396140217781,0.068668819963932,-0.056246947497129],[0.036982789635658,-0.0016425084322691,0.0014254635898396],[0.093728184700012,0.0042512705549598,-0.0019724334124476]],[[0.024517178535461,-0.015614670701325,-0.075135119259357],[-0.026086192578077,0.037593431770802,-0.037109203636646],[0.010644202120602,0.020426439121366,0.063716188073158]],[[-0.050704546272755,0.042651768773794,0.06761310249567],[0.030478408560157,-0.0043795425444841,0.073753200471401],[-0.0089883664622903,0.039916168898344,0.10563073307276]],[[-0.04245413467288,0.0046366020105779,0.068163901567459],[0.011767306365073,-0.050294313579798,-0.075473479926586],[0.094151876866817,0.066663429141045,-0.0066317087039351]],[[0.075106173753738,-0.078334778547287,0.00618637772277],[0.020680543035269,-0.024272346869111,0.082460232079029],[0.00037560245255008,-0.043617222458124,0.025277201086283]],[[-0.063386492431164,0.014434918761253,-0.016034759581089],[-0.019515659660101,-0.048686731606722,-0.0090556787326932],[0.04966451972723,0.012756945565343,0.008884359151125]],[[-0.043656904250383,-0.014262360520661,0.03755821287632],[0.024302458390594,-0.070285685360432,-0.083366051316261],[0.062585681676865,0.051654014736414,0.03018463589251]],[[0.0081977471709251,0.0050956360064447,0.11403715610504],[0.03752476349473,0.046651873737574,0.038196299225092],[0.043645173311234,0.12329811602831,0.041369292885065]],[[0.012386037968099,-0.056735672056675,0.025387847796082],[-0.047574538737535,-0.085882373154163,0.012983154505491],[-0.05035312473774,0.016527742147446,0.03536407276988]],[[0.011806628666818,-0.031284935772419,-0.084992505609989],[-0.0079114232212305,0.021241057664156,-0.074543558061123],[0.053715549409389,-0.015051779337227,-0.037637632340193]],[[-0.026981741189957,0.025899186730385,-0.014096933417022],[-0.048526953905821,0.02648039907217,-0.018166517838836],[0.052460331469774,0.10720447450876,-0.065107330679893]],[[0.018778035417199,-0.019881587475538,0.052162740379572],[0.044447954744101,0.016780953854322,-0.01213772315532],[0.029778432101011,-0.0027860507834703,0.04069134965539]],[[-0.023051513358951,-0.079572379589081,0.011513779871166],[-0.027181969955564,-0.1345029771328,-0.084486827254295],[0.0050411564297974,0.02569543197751,0.010261921212077]],[[0.02547824382782,0.015037751756608,0.069194950163364],[0.074877992272377,0.0016624015988782,-0.012596611864865],[0.093315742909908,-0.0017408956773579,-0.040249545127153]],[[-0.0081768417730927,0.043813604861498,-0.033336911350489],[0.035258233547211,0.064770102500916,-0.046824537217617],[-0.01585865393281,-0.05679102614522,-0.072438769042492]],[[0.0051598660647869,-0.024510098621249,-0.056617014110088],[-0.023956298828125,-0.022364761680365,-0.04766508191824],[0.024203725159168,-0.03194385766983,-0.037158593535423]],[[0.037784747779369,0.0063570025376976,0.038243103772402],[0.062805436551571,0.019114268943667,-0.018209490925074],[-0.0059495461173356,-0.035902705043554,-0.0057628815993667]],[[0.0056025320664048,0.073148861527443,-0.039718419313431],[-0.080717831850052,0.019820259884,-0.048544451594353],[0.011028598062694,-0.016527533531189,0.082118287682533]],[[-0.0084238108247519,0.023826675489545,-0.019018054008484],[0.0058268196880817,-0.0047180503606796,-0.028526080772281],[0.051903456449509,-0.043103199452162,-0.036266628652811]],[[0.010981660336256,-0.026298252865672,0.060433629900217],[0.036276999861002,-0.019418442621827,-0.082832783460617],[0.0079639097675681,-0.021160254254937,-0.11267459392548]],[[0.015660202130675,-0.0083008967339993,0.062273189425468],[0.0027361519169062,0.083528988063335,-0.0063411421142519],[-0.061958879232407,-0.022498099133372,-0.016201235353947]],[[-0.019527485594153,0.10029246658087,0.030507303774357],[0.081763722002506,0.0020075398497283,-0.045126520097256],[-0.01322081964463,0.081644169986248,-0.055114254355431]],[[0.039485074579716,0.0092629445716739,0.059542994946241],[0.051719486713409,0.025165807455778,0.041588723659515],[0.030357798561454,-0.021774163469672,0.041431926190853]],[[0.0023179543204606,0.01871988736093,-0.041612528264523],[0.085787229239941,-0.030732039362192,-0.092415668070316],[-0.012035973370075,0.029434248805046,-0.010558859445155]],[[0.043253380805254,-0.027171913534403,0.014914806932211],[-0.0045420709066093,0.023491824045777,0.017844932153821],[0.014157861471176,-0.014242379926145,0.050078835338354]],[[0.042297210544348,0.046355944126844,0.0041105258278549],[0.013917345553637,-0.01660292968154,0.065224833786488],[0.060222558677197,0.04017486050725,0.01597355119884]],[[0.039787415415049,0.016175637021661,0.047533132135868],[0.0025565498508513,0.013444001786411,-0.013334681279957],[-0.0036895896773785,0.047170646488667,-0.0045147160999477]],[[0.029515080153942,0.081554129719734,-0.023481389507651],[0.16508983075619,0.02970065549016,-0.024057047441602],[0.03010075353086,0.091998353600502,0.0031813969835639]],[[0.051914785057306,0.049253057688475,0.078990556299686],[0.00181989884004,-0.063420116901398,0.056946285068989],[-0.02142247185111,0.023030206561089,0.012678362429142]],[[-0.0037244693376124,-0.020111372694373,-0.062509588897228],[0.0059187770821154,-0.061846110969782,-0.051444448530674],[-0.0068253697827458,-0.084908947348595,-0.10821723937988]],[[-0.084996372461319,0.023995570838451,-0.043391026556492],[0.027739496901631,-0.078589126467705,-0.020324060693383],[0.069462195038795,0.044125836342573,0.036275759339333]],[[-0.043432373553514,0.011697304435074,-0.018235625699162],[0.035049505531788,-0.064131543040276,-0.03750778362155],[-0.016527626663446,-0.03909420594573,0.070333480834961]],[[0.060479998588562,-0.011494375765324,0.026496808975935],[0.10576338320971,-0.0048245745711029,0.016565991565585],[-0.033671911805868,-0.050838448107243,-0.010754941962659]],[[-0.060986313968897,-0.036271002143621,0.050908457487822],[-0.17569847404957,-0.10310011357069,-0.032622985541821],[-0.020549917593598,0.059499248862267,0.066436626017094]],[[0.01959484629333,0.0075980518013239,-0.0056156036444008],[-0.007350686006248,0.081675797700882,0.0090455301105976],[0.0460559502244,0.066971734166145,-0.041550435125828]],[[0.026204215362668,-0.086632154881954,-0.045400775969028],[0.0052085616625845,-0.017731186002493,0.0015706672566012],[0.029838202521205,-0.036269724369049,0.0070251896977425]],[[0.084094017744064,0.069379091262817,-0.0045033902861178],[0.066498942673206,0.13336339592934,0.010570691898465],[0.083627574145794,0.024666607379913,0.010695933364332]],[[0.04650754109025,0.01484801620245,0.011851730756462],[0.10129168629646,0.0048822690732777,-0.0036627964582294],[0.088046289980412,0.088725462555885,-0.043438103049994]],[[-0.07510669529438,0.038924936205149,-0.046315636485815],[-0.042683213949203,0.021837016567588,0.051472526043653],[-0.036016695201397,0.00468321563676,0.052850805222988]],[[0.016260031610727,-0.0032595223747194,0.044173520058393],[0.04503171145916,0.05444810539484,0.017364725470543],[-0.020959870889783,0.018166448920965,-0.094256013631821]],[[0.061480101197958,0.010851870290935,-0.0026346184313297],[0.068771652877331,0.090554878115654,0.023058172315359],[-0.040400564670563,-0.051760479807854,0.02717337012291]],[[0.0041742334142327,-0.022155791521072,0.0059722284786403],[-0.053354602307081,-0.056876212358475,-0.10282047092915],[0.0080406339839101,-0.013052089139819,0.012561107054353]],[[-0.027465496212244,-0.0080358842387795,-0.0042080502025783],[-0.031825494021177,0.024949572980404,0.039503030478954],[-0.020716762170196,-0.004485952667892,-0.030325530096889]],[[-0.096001215279102,-0.091775149106979,-0.02590037882328],[-0.043996445834637,-0.082269683480263,0.028619684278965],[-0.081565625965595,0.022537907585502,-0.014274073764682]],[[0.035983551293612,-0.0049723479896784,-0.016048079356551],[-0.026553347706795,-0.0160181671381,0.052964370697737],[-0.026878692209721,0.0029658337589353,-0.037120528519154]],[[0.037321392446756,-0.011496411636472,-0.058572195470333],[-0.0066886655986309,0.040849175304174,-0.0059279003180563],[0.016463864594698,0.02949277125299,0.096505746245384]],[[-0.0086754690855742,-0.040742978453636,-0.012118982151151],[-0.081526435911655,0.056233711540699,-0.011145834811032],[0.062778957188129,-0.036589041352272,0.058063052594662]],[[0.061586927622557,0.028305759653449,0.026662562042475],[0.022916479036212,0.0047337976284325,0.081327334046364],[0.074619933962822,0.024010898545384,-0.053217470645905]],[[0.0058588921092451,0.052820447832346,0.081378743052483],[0.065135471522808,0.084279976785183,-0.010994117707014],[0.076478280127048,-0.095107421278954,-0.014928622171283]],[[-0.013008982874453,0.080990262329578,0.11120003461838],[-0.094983153045177,-0.017764596268535,0.069245487451553],[-0.0016228886088356,0.042734324932098,-0.050162047147751]],[[-0.066830188035965,-0.0025033915881068,-0.040462326258421],[-0.13281871378422,-0.055692330002785,-0.015169251710176],[0.016125094145536,0.050375036895275,-0.011681110598147]],[[0.025402490049601,0.013819478452206,0.025080574676394],[0.051618665456772,0.092424437403679,0.099770270287991],[-0.00045966342440806,0.00035906935227104,0.071652717888355]],[[0.036312069743872,0.08021903783083,0.027683421969414],[0.099249511957169,-0.041497122496367,-0.046272289007902],[0.022286312654614,-0.054132506251335,-0.018396139144897]],[[-0.0010194578208029,0.054850313812494,0.065425887703896],[0.036220699548721,-0.028803519904613,0.051318734884262],[0.012265258468688,0.097052522003651,0.068910695612431]],[[-0.014910630881786,-0.0087370276451111,0.075909718871117],[0.011028515174985,-0.027607725933194,-0.020019875839353],[0.082596227526665,0.0031792623922229,0.00083701265975833]],[[0.028129292652011,0.036516956984997,0.027289653196931],[-0.024611255154014,-0.011867926456034,0.018226616084576],[0.086215123534203,0.016977727413177,0.027996709570289]],[[0.0036656258162111,-0.011169707402587,0.01625682041049],[-0.018184060230851,-0.072837978601456,0.023705817759037],[-0.042272798717022,-0.0062315161339939,-0.023935157805681]],[[0.025098888203502,-0.014119799248874,-0.0077732321806252],[0.07555440813303,-0.020588681101799,0.068458594381809],[0.09301245957613,-0.039522171020508,0.066863611340523]],[[0.0025833079125732,0.014812368899584,-0.024353876709938],[0.097161427140236,-0.026856571435928,0.025984497740865],[-0.050728421658278,0.068118177354336,0.015974348410964]],[[-0.049624789506197,-0.0019948771223426,-0.041935931891203],[0.041768811643124,-0.028414243832231,0.078410178422928],[-0.069933645427227,-0.080504775047302,-0.0077730040065944]],[[0.052111115306616,0.067764960229397,0.018523612990975],[0.012921743094921,-0.0034501869231462,-0.0040966211818159],[0.013302338309586,0.053003698587418,-0.0064530251547694]],[[-0.10160148888826,0.054198928177357,0.054958716034889],[0.08960884809494,0.01526094507426,0.02108365483582],[0.053872492164373,0.050258509814739,-0.028828501701355]],[[-0.017696443945169,0.00031283049611375,0.042125452309847],[0.11343927681446,0.079137794673443,-0.02224381454289],[0.010632397606969,-0.018807558342814,0.0094417817890644]],[[0.055646553635597,-0.003013092558831,-0.038166165351868],[0.031843174248934,0.036991465836763,-0.017224699258804],[0.11528366804123,-0.028359267860651,-0.010284749791026]],[[-0.0028519099578261,-0.01137022767216,0.042749710381031],[0.081083610653877,-0.018826398998499,-0.0033579189330339],[0.056934185326099,0.043803613632917,-0.021142370998859]],[[0.083794631063938,0.099426083266735,0.13061237335205],[0.02452801913023,0.05531357601285,0.045004598796368],[0.018585849553347,0.01253277156502,0.16634561121464]],[[-0.078038044273853,0.05481805279851,-0.035968668758869],[-0.015833454206586,-0.061589680612087,0.049475692212582],[-0.0064296717755497,0.047146342694759,0.17538997530937]],[[-0.044965341687202,-0.012739541940391,-0.048956252634525],[-0.014649159274995,0.0057761645875871,0.026907717809081],[-0.047094851732254,0.020497776567936,0.021918112412095]],[[0.0015264020767063,-0.0097368396818638,0.027018075808883],[-0.022808104753494,0.0098786745220423,0.091931544244289],[-0.043423682451248,0.059185232967138,0.086426265537739]],[[-0.035610672086477,-0.010042522102594,0.055274397134781],[-0.0098988767713308,0.023225864395499,0.037248957902193],[-0.04364326223731,0.014125540852547,-0.0064391172491014]],[[-0.0070712631568313,-0.0049505634233356,0.029965274035931],[0.0073282015509903,-0.012787828221917,0.027007929980755],[-0.010145124979317,-0.063458554446697,-0.053240064531565]],[[-0.005785618443042,-0.017371455207467,0.061017021536827],[0.020032819360495,0.0071998904459178,0.048890046775341],[-0.021030543372035,0.033396605402231,0.030393768101931]],[[0.026789261028171,-0.0024504153989255,-0.015326971188188],[-0.03137207403779,0.036242730915546,0.051197655498981],[-0.0029882686212659,0.12202358990908,0.084516443312168]],[[-0.0068354248069227,-0.041849069297314,0.019036985933781],[-0.043728020042181,-0.01799526438117,0.059702422469854],[0.011731928214431,0.05167094618082,-0.063545100390911]],[[-0.039883587509394,0.0012838619295508,-0.064088575541973],[0.01085024420172,0.082096442580223,0.10927425324917],[-0.059977106750011,-0.051200088113546,0.052760779857635]],[[0.088466882705688,-0.062001820653677,-0.037813920527697],[-0.018999060615897,0.0014194152317941,0.038735017180443],[0.029020067304373,-0.048160888254642,-0.0092729646712542]],[[0.063764676451683,-0.02514386177063,0.0056159142404795],[0.064019076526165,-0.011248613707721,-0.014978658407927],[-0.0042512007057667,0.054292503744364,0.052857089787722]],[[0.072655290365219,0.013726157136261,0.069365113973618],[0.015194041654468,0.022163037210703,0.060720294713974],[0.020705813542008,0.012634485028684,0.028221141546965]],[[0.047568384557962,-0.036245789378881,-0.029981365427375],[0.017892025411129,-0.035887379199266,0.041274610906839],[0.071088150143623,-0.039365764707327,-0.0077566676773131]],[[-0.01049077231437,0.073052540421486,0.096636041998863],[-0.051708772778511,-0.043199151754379,0.0049266535788774],[0.013424853794277,-0.073182247579098,0.012315606698394]],[[0.11736635863781,0.064526990056038,0.055860046297312],[-0.041906889528036,-0.0081705329939723,0.035484325140715],[-0.016313806176186,-0.039571609348059,-0.067311279475689]],[[0.0083109959959984,-0.042945899069309,0.053080596029758],[0.069120936095715,0.0099401269108057,0.065740704536438],[0.046380612999201,-0.031844031065702,-0.0050457357428968]],[[-0.016762513667345,-0.023945260792971,-0.016168454661965],[-0.053236033767462,-0.015075392089784,-0.0051402258686721],[-0.030247647315264,0.021667843684554,0.082396298646927]],[[0.01325343362987,-0.044596072286367,-0.032630566507578],[0.042919490486383,0.057901617139578,0.013974910601974],[0.061092339456081,0.04405764862895,-0.0068981721997261]],[[-0.025184113532305,-0.10493513941765,-0.037337481975555],[0.06457681208849,-0.02042543143034,-0.049001730978489],[-0.011213390156627,-0.070998847484589,-0.021335199475288]],[[0.084212854504585,-0.012646798975766,0.052513211965561],[0.049904227256775,0.0081297094002366,-0.032246563583612],[0.046378035098314,0.05979847162962,0.029969779774547]],[[-0.097091682255268,0.021590014919639,0.043401401489973],[-0.0094376429915428,-0.046552516520023,-0.081431053578854],[-0.01466606464237,0.022669227793813,0.023638293147087]],[[-0.04953870922327,-0.027388034388423,0.046077325940132],[0.019535332918167,0.068454511463642,0.017557628452778],[-0.0050579318776727,-0.062101189047098,-0.026129050180316]],[[-0.0010833559790626,-0.032516118139029,0.069578565657139],[0.1045668721199,0.035955987870693,0.048916168510914],[0.0024919472634792,-0.052851103246212,0.13057416677475]],[[-0.019172001630068,-0.052260648459196,-0.039248000830412],[-0.026057595387101,-0.065110951662064,-0.0029377981554717],[-0.10063294321299,-0.066862858831882,0.006127692759037]],[[-0.033230058848858,0.024626992642879,0.030837344005704],[0.14619901776314,0.020754940807819,0.04495008289814],[0.015581003390253,0.0048775225877762,-0.02909174002707]],[[0.013413678854704,-0.040450930595398,-0.053974699229002],[0.067902483046055,-0.063060902059078,0.06231651827693],[0.11061026901007,-0.0046043745242059,-0.014106121845543]],[[0.054049104452133,0.048396535217762,0.16290038824081],[0.0053851106204093,0.11144460737705,0.071761980652809],[0.094814717769623,-0.0054530072957277,-0.048680245876312]],[[0.047409877181053,0.024203475564718,-0.0088135860860348],[0.078225709497929,-0.11391197890043,-0.043529622256756],[0.044756893068552,0.050504539161921,-0.054297104477882]],[[0.072755351662636,0.049191635102034,-0.032741084694862],[0.0093112466856837,0.06865119189024,0.0061540217138827],[0.10242529213428,0.034379500895739,-0.0077210455201566]],[[-0.048947088420391,-0.11069007217884,-0.013916905038059],[-0.036812674254179,-0.0063403020612895,-0.06253457069397],[-0.016504107043147,-0.0039272080175579,0.02377962321043]],[[0.11287953704596,-0.030642168596387,0.0028291358612478],[0.034500010311604,-0.0079845506697893,-0.039707213640213],[0.083758004009724,-0.045408401638269,0.0060775731690228]],[[-0.0028783611487597,0.045165747404099,-0.033219669014215],[-0.072342284023762,-0.030074220150709,-0.054834008216858],[-0.0025478014722466,0.11029770225286,0.059915084391832]],[[0.031202167272568,0.041271343827248,-0.069305777549744],[-0.069217406213284,-0.043004292994738,-0.080622971057892],[-0.082248948514462,-0.011084307916462,0.082758061587811]],[[0.013951091095805,0.017736585810781,0.054246459156275],[0.042636346071959,0.02649499475956,-0.043909687548876],[-0.075241975486279,0.088271051645279,-0.0092883529141545]],[[0.061439640820026,0.014444114640355,-0.031571708619595],[0.084186054766178,-0.050896864384413,-0.0055391807109118],[0.038243435323238,0.031819172203541,0.008939815685153]],[[0.035712126642466,0.022410832345486,0.032157812267542],[0.0054811886511743,0.059661846607924,0.034074176102877],[-0.048292271792889,0.0244663041085,-0.010581178590655]],[[0.016816115006804,-0.0021332702599466,-0.02473965100944],[-0.0017600927967578,-0.04797400161624,0.05677642673254],[-0.035936150699854,-0.030310040339828,0.0023139866534621]],[[0.018294921144843,-0.010561413131654,0.008593344129622],[-0.019224701449275,0.017891593277454,-0.062693320214748],[-0.077733278274536,-0.01086685154587,-0.084712229669094]],[[-0.057875324040651,-0.0015809291508049,0.009217981249094],[-0.043373540043831,0.053649686276913,0.03378438949585],[-0.0060658301226795,-0.011926226317883,0.061210181564093]],[[0.048656482249498,-0.030577963218093,0.024481019005179],[0.0059592719189823,0.065779335796833,-0.04698633775115],[0.030125400051475,-0.038869395852089,-0.066241681575775]],[[-0.04441737383604,-0.071033746004105,-0.041455898433924],[-0.027294639497995,-0.071975849568844,-0.057229589670897],[-0.047301318496466,-0.032418429851532,-0.022182118147612]],[[0.029538867995143,0.13741706311703,0.059725478291512],[-0.056323859840631,-0.010283601470292,0.077592492103577],[-0.030091399326921,0.014105690643191,-0.0012859794078395]],[[-0.015306007117033,0.012051365338266,-0.0023311679251492],[0.062274124473333,0.0011461725225672,0.040241219103336],[-0.02987302094698,-0.024461342021823,-0.013534956611693]],[[0.0011223966721445,-0.078992404043674,-0.07169733196497],[-0.019637800753117,0.011097794398665,-0.045035999268293],[-0.014557482674718,-0.10437408089638,-0.047173473984003]],[[0.058615211397409,0.022475248202682,-0.011115277186036],[-0.057181853801012,-0.0043218964710832,-0.11018753051758],[-0.072101593017578,-0.04023664444685,-0.011281114071608]],[[-0.047600317746401,-0.02826602011919,-0.0046377354301512],[0.056585859507322,-0.004182371776551,0.020681554451585],[0.083506904542446,0.046092852950096,0.059050980955362]],[[0.0017852851888165,-0.057934623211622,-0.011285608634353],[0.035915233194828,-0.045964580029249,0.01097203977406],[0.0030228008981794,-0.069516591727734,-0.021158741787076]],[[0.0026647800114006,-0.056194491684437,-0.006911201402545],[-0.0077326176688075,0.013154038228095,-0.066190913319588],[-0.0082247890532017,-0.034164849668741,-0.01529523357749]],[[0.012759015895426,0.10804460942745,0.10900912433863],[0.14122992753983,0.0095746740698814,0.041841942816973],[0.0045341784134507,0.071041360497475,0.10507066547871]],[[-0.019267553463578,-0.066408082842827,0.0023615134414285],[-0.021404774859548,-0.0041561648249626,-0.00020742871856783],[-0.015231758356094,-0.053124777972698,0.022039450705051]],[[0.0078937215730548,-0.043179996311665,-0.0063541079871356],[-0.027271885424852,-0.03905163705349,-0.021756112575531],[-0.044662460684776,-0.055520687252283,0.012644945643842]],[[-0.068672366440296,0.0046431221999228,0.057597361505032],[0.088957265019417,-0.068114288151264,0.024146994575858],[0.0018202603096142,0.063998863101006,0.080263458192348]],[[0.055093441158533,0.020095970481634,0.10434164851904],[-0.029445979744196,0.086007758975029,0.043685186654329],[-0.021390974521637,-0.053270813077688,0.028375035151839]],[[0.0095021147280931,0.080445393919945,0.074813485145569],[0.051355559378862,-0.028132680803537,-0.00015968913794495],[0.056710563600063,0.014039778150618,0.066918209195137]],[[-0.018236462026834,-0.058437578380108,-0.062802687287331],[0.020770378410816,-0.040259193629026,0.030764952301979],[0.031670290976763,-0.025507291778922,-0.038199029862881]],[[0.025861378759146,0.027138888835907,0.022688567638397],[-0.010197636671364,0.05855867266655,0.067380644381046],[0.22017249464989,-0.075078934431076,0.028969652950764]],[[-0.07218986749649,0.019492894411087,-0.0043086218647659],[0.012356200255454,-0.01508807297796,0.0052967122755945],[-0.016970269382,0.013276962563396,0.043344333767891]]],[[[-0.057160973548889,-0.0051648914813995,0.016913793981075],[-0.046353492885828,-0.034841816872358,-0.10320372879505],[-0.13309320807457,-0.031903691589832,0.030679056420922]],[[-0.012170907109976,0.11975168436766,0.044570792466402],[0.077679850161076,-0.030470637604594,-0.059239119291306],[0.010167740285397,-0.10306491702795,-0.14917640388012]],[[-0.023535307496786,0.05025515332818,-0.0624690502882],[-0.033938232809305,0.020550733432174,-0.018902387470007],[0.0066446466371417,0.13350991904736,0.048006016761065]],[[0.068487390875816,0.099909916520119,0.020765725523233],[0.29819995164871,0.0053886999376118,0.17650218307972],[0.0074219759553671,-0.048686124384403,0.094875514507294]],[[0.06075681000948,0.026466907933354,-0.052108082920313],[-0.081410050392151,0.051342934370041,0.057682536542416],[-0.033759605139494,-0.091579727828503,0.071108967065811]],[[0.040481649339199,0.028255941346288,0.057210266590118],[0.030786994844675,0.041809298098087,0.13102295994759],[0.035831987857819,-0.010217666625977,0.10666365921497]],[[-0.015406139194965,0.059886809438467,0.055465642362833],[-0.028836326673627,-0.021908706054091,-0.067578412592411],[0.015280661173165,-0.046423994004726,0.045794758945704]],[[-0.092287436127663,-0.011685716919601,-0.083597056567669],[-0.0099947340786457,-0.0033242604695261,0.020830299705267],[0.10138408094645,-0.032342180609703,0.037540785968304]],[[0.042561504989862,0.038965214043856,0.03908509016037],[0.047564953565598,0.0055535528808832,-0.051605936139822],[0.069579049944878,0.11374363303185,0.060190852731466]],[[-0.022079249843955,0.04180259257555,-0.04965702444315],[-0.065928928554058,0.025515452027321,-0.066203959286213],[0.0083477552980185,-0.0066894455812871,-0.066604159772396]],[[-0.062590509653091,-0.15787070989609,-0.0054097287356853],[-0.0014584485907108,-0.012238590978086,0.011603579856455],[-0.096759989857674,0.038019731640816,-0.066263355314732]],[[0.006851518061012,0.028026780113578,0.1021432057023],[-0.042756851762533,-0.17426787316799,-0.034274000674486],[-0.091668084263802,0.034229882061481,-0.032583974301815]],[[0.13336256146431,0.041255079209805,-0.03700016066432],[0.20458097755909,0.11057934165001,0.12003269046545],[0.054178062826395,0.14202357828617,0.119070969522]],[[0.021111454814672,0.0099937077611685,-0.049218278378248],[0.055988535284996,-0.023877933621407,0.0031554645393044],[0.029645852744579,0.0055055394768715,-0.015818309038877]],[[0.16482397913933,0.095218479633331,0.15094155073166],[0.070384845137596,0.057127337902784,0.060230772942305],[-0.012372069060802,0.072304151952267,-0.03453154489398]],[[0.08593612164259,-0.025564860552549,-0.067098014056683],[0.058841120451689,-0.09318919479847,0.061479281634092],[0.087264090776443,-0.0018053852254525,0.11474780738354]],[[-0.033582184463739,-0.046555463224649,-0.054839428514242],[0.011795195750892,0.031951986253262,0.0016792045207694],[-0.0093094073235989,0.052311636507511,-0.056731276214123]],[[0.045391872525215,0.022486234083772,-0.011037779971957],[-0.027210673317313,0.058930154889822,-0.021800339221954],[-0.10030239075422,-0.047311518341303,-0.0079376893118024]],[[0.003166685346514,0.026521349325776,0.076400838792324],[-0.079622529447079,-0.17715242505074,-0.0071164006367326],[0.098358049988747,0.09115556627512,-0.040152866393328]],[[-0.0041473675519228,-0.057735823094845,-0.096877858042717],[-0.018757794052362,0.013651964254677,-0.017057817429304],[0.084588035941124,0.027476605027914,-0.037301424890757]],[[-0.073778212070465,0.073725134134293,-0.0088574700057507],[0.044505693018436,-0.018992254510522,0.16542913019657],[0.1079760491848,0.11325693130493,-0.01716317795217]],[[0.069403752684593,0.002611244795844,-0.0057262782938778],[-0.10692519694567,-0.00071374245453626,-0.0077364630997181],[-0.056113131344318,0.076125293970108,-0.0040722247213125]],[[0.027931870892644,-0.021318219602108,0.096797369420528],[-0.020942831411958,-0.020363358780742,0.003747719572857],[-0.03790045902133,-0.050187569111586,0.011286465451121]],[[0.015632452443242,0.025895282626152,0.028884572908282],[0.050222642719746,0.035476587712765,0.060382761061192],[0.01127094309777,0.059747692197561,0.0097169131040573]],[[-0.18928551673889,0.02647421695292,-0.041230041533709],[0.029428580775857,-0.092759624123573,-0.072620868682861],[0.048262782394886,-0.016116896644235,0.027666963636875]],[[0.046460967510939,0.088922448456287,0.05586114898324],[0.079075329005718,0.0070361527614295,0.052334848791361],[0.076317250728607,0.031530946493149,-0.011455773375928]],[[0.096083804965019,0.16133935749531,0.093350984156132],[0.040720973163843,0.10149709135294,0.10275228321552],[0.01183502189815,0.07940237224102,0.10071825236082]],[[-0.13709585368633,0.0049605667591095,0.23380084335804],[-0.18993133306503,0.0053105093538761,-0.12266682833433],[0.0021215202286839,-0.18689616024494,-0.17248344421387]],[[0.023102851584554,0.043138422071934,0.034591298550367],[0.015290904790163,-0.040528044104576,-0.067851074039936],[0.025419509038329,-0.022884402424097,-0.057979501783848]],[[0.035797577351332,0.095693819224834,0.099298164248466],[-0.010101806372404,0.11148478835821,-0.037369001656771],[0.13066194951534,-0.15951380133629,0.034415867179632]],[[0.03720586001873,0.018276588991284,-0.00078734080307186],[-0.026876043528318,-0.15955071151257,-0.084444649517536],[-0.088466487824917,-0.037292651832104,0.024994257837534]],[[0.033703904598951,-0.033198073506355,-0.040240909904242],[0.020601304247975,0.096663936972618,-0.020965667441487],[-0.029045691713691,0.12862692773342,-0.024393949657679]],[[-0.10423970967531,0.081513531506062,0.058485936373472],[-0.027582231909037,0.050517585128546,0.0024324269033968],[0.086185440421104,0.044150471687317,-0.0042852209880948]],[[0.13239026069641,0.062317594885826,0.045796822756529],[0.03732106089592,-0.074399411678314,-0.030161157250404],[0.02204655110836,-0.03507649153471,0.06358341127634]],[[0.019249144941568,0.014884816482663,-0.020588681101799],[0.019716018810868,0.059431690722704,0.0085191978141665],[-0.075475379824638,-0.0030000433325768,0.033474635332823]],[[-0.1173977330327,0.012779785320163,-0.018912663683295],[0.036458916962147,-0.00087408133549616,0.10952538251877],[0.033797305077314,-0.068735264241695,0.11053789407015]],[[-0.18776558339596,-0.010439376346767,-0.036348272114992],[-0.01430341321975,-0.013459364883602,0.023091463372111],[0.13355101644993,0.049153160303831,-0.052504662424326]],[[-0.092115700244904,-0.075194239616394,0.059970665723085],[0.06828498840332,-0.050164900720119,-0.05786619335413],[0.11943797767162,0.059272676706314,-0.07145644724369]],[[0.04246537014842,0.020259307697415,-0.013038526289165],[-0.026935061439872,0.0030158222652972,-0.097334966063499],[0.07040686160326,-0.089418776333332,-0.065077066421509]],[[-0.061086315661669,0.046335510909557,-0.061633720993996],[0.086902037262917,-0.02918304502964,0.05232060700655],[0.065967381000519,-0.17378006875515,-0.088504493236542]],[[-0.045915171504021,0.026934677734971,0.024829007685184],[-0.040962718427181,-0.017613101750612,-0.16136352717876],[-0.027309527620673,0.049233350902796,-0.15910512208939]],[[0.044248919934034,-0.021583689376712,0.11797162145376],[0.014967107214034,0.018884712830186,0.05955483391881],[0.16025196015835,-0.067136980593204,0.049729466438293]],[[0.087483078241348,-0.051160231232643,-0.063348978757858],[0.1076338738203,0.051206570118666,0.022470062598586],[0.095709003508091,0.01501009054482,0.16679365932941]],[[-0.072819359600544,-0.047928243875504,0.07780284434557],[-0.080730982124805,0.023226242512465,0.14822044968605],[-0.060470182448626,-0.037705421447754,0.098911620676517]],[[-0.08390474319458,0.10826591402292,0.053559675812721],[-0.11689949035645,-0.041957940906286,0.055741500109434],[0.15134714543819,-0.0011339512420818,-0.02342870272696]],[[0.15606947243214,0.095601946115494,0.17444474995136],[0.14810821413994,0.19144120812416,0.16402705013752],[0.20148988068104,0.14481134712696,0.13947063684464]],[[0.071971453726292,0.013310275971889,-0.22004652023315],[-0.13304610550404,-0.088874414563179,0.14644493162632],[-0.1291488558054,0.0061083328910172,-0.015152251347899]],[[-0.024364825338125,0.027714462950826,-0.15349812805653],[-0.015845436602831,0.036857005208731,-0.0043562697246671],[-0.063739463686943,-0.026490170508623,0.083746962249279]],[[0.050872936844826,-0.085862807929516,-0.016183840110898],[0.0043313335627317,-0.037016555666924,0.049532983452082],[0.06925968080759,0.071376956999302,0.00014548601757269]],[[-0.073446661233902,-0.050417114049196,0.039981972426176],[-0.09611102938652,-0.22446070611477,-0.059088826179504],[-0.031820360571146,-0.15194524824619,-0.0065325666218996]],[[-0.039398480206728,0.03446763381362,0.04585599526763],[-0.024542693048716,-0.0034084662329406,-0.043428149074316],[0.056838646531105,0.074656471610069,0.044707212597132]],[[-0.014580242335796,0.026111617684364,-0.13689658045769],[-0.073745809495449,0.075291872024536,-0.10895163565874],[0.025544257834554,0.023567158728838,-0.10969590395689]],[[-0.061333443969488,-0.016436032950878,-0.020373916253448],[0.045077454298735,0.031371407210827,0.029788088053465],[-0.019236084073782,-0.16235476732254,0.03642563521862]],[[0.13332031667233,-0.10069242119789,-0.05050515383482],[0.010380221530795,0.034795809537172,0.023834798485041],[-0.013979555107653,-0.027208598330617,0.24227534234524]],[[0.031956292688847,-0.018594652414322,0.018613601103425],[-0.0017893244512379,-0.085942551493645,0.039437778294086],[0.023754812777042,0.095182552933693,0.11849164962769]],[[0.00054075266234577,0.11155535280704,0.042626161128283],[-0.012139094993472,0.051576711237431,-0.12159242480993],[-0.084289647638798,-0.025446496903896,0.034082148224115]],[[0.076910443603992,-0.051391363143921,-0.040631141513586],[0.066508151590824,0.0084693590179086,0.14475250244141],[-0.041020002216101,0.06511528044939,-0.074570573866367]],[[0.041207291185856,0.055244505405426,-0.023196622729301],[0.040713027119637,0.066378779709339,-0.055727317929268],[-0.013557938858867,0.036484576761723,-0.002433190587908]],[[0.050742968916893,-0.033707719296217,0.16937828063965],[-0.055384062230587,-0.011174554936588,0.040056318044662],[0.14890603721142,-0.078749388456345,0.21477116644382]],[[0.10854294896126,0.13482908904552,-0.089601717889309],[-0.057319354265928,-0.098438009619713,0.034018389880657],[-0.065153494477272,-0.1527037769556,-0.031697478145361]],[[0.00017228396609426,-0.052757773548365,0.047751609236002],[0.14830143749714,-0.076060406863689,0.016281662508845],[0.070549845695496,-0.12899117171764,-0.022692980244756]],[[-0.26008543372154,-0.0090196933597326,0.047121476382017],[-0.12892559170723,-0.040907196700573,-0.12553638219833],[0.079346157610416,0.01430223044008,-0.062095407396555]],[[0.082582004368305,-0.017451381310821,0.0031110292766243],[0.027047114446759,0.030386289581656,-0.14640308916569],[-0.032417438924313,-0.083914302289486,0.16343067586422]],[[-0.1096103861928,-0.021220993250608,0.080893985927105],[-0.086789458990097,-0.0072992793284357,-0.014298497699201],[0.02278876490891,0.043428760021925,-0.16684487462044]],[[-0.10233912616968,-0.07736087590456,-0.086812205612659],[0.012061364017427,-0.085274569690228,0.0030566870700568],[0.019976045936346,0.062979891896248,0.01247023511678]],[[-0.024439772590995,0.098145827651024,0.085134603083134],[-0.020445264875889,-0.021287400275469,-0.020870491862297],[0.049197245389223,0.015918463468552,0.029340548440814]],[[0.0060861073434353,-0.040878836065531,0.018903370946646],[0.15448467433453,0.05534940212965,0.10875515639782],[0.026552937924862,0.068853124976158,0.061798915266991]],[[0.029650768265128,-0.022477822378278,0.028115313500166],[-0.070868596434593,0.095263287425041,-0.011527862399817],[-0.051728472113609,0.0069020232185721,-0.23685768246651]],[[0.086771227419376,-0.058196488767862,0.016807656735182],[0.097084999084473,-0.0041363555938005,0.035834524780512],[0.0085342796519399,0.022713433951139,-0.071975596249104]],[[-0.028215348720551,-0.030410362407565,-0.028298715129495],[-0.076334893703461,-0.023225836455822,-0.060816444456577],[0.0082104671746492,0.02595255151391,0.1247257143259]],[[0.037505835294724,-0.0011336044408381,-0.00015472211816814],[-0.032451312988997,0.10368328541517,0.031325593590736],[-0.042255237698555,0.018911538645625,-0.0052003837190568]],[[0.030664680525661,-0.11483243107796,0.067776434123516],[0.016676252707839,-0.055059146136045,-0.012729937210679],[0.023975813761353,0.0010601190151647,0.035112116485834]],[[-0.030504075810313,-0.09957741945982,-0.024890821427107],[0.031078113242984,-0.096746407449245,0.0315499342978],[0.018908711150289,-0.051951121538877,0.10924325883389]],[[0.034599870443344,-0.083238005638123,-0.063878163695335],[-0.066665463149548,0.052301149815321,0.0065767136402428],[-0.10418588668108,-0.0040426538325846,0.066036604344845]],[[-0.048207383602858,0.032569788396358,-0.054765187203884],[-0.020616393536329,0.030420882627368,0.044096268713474],[0.045503165572882,0.08395092189312,0.089790858328342]],[[0.10990893095732,0.056284740567207,0.022609762847424],[0.10389946401119,0.11880902200937,0.06960391253233],[0.0097071528434753,0.015800811350346,-0.0044737760908902]],[[0.0040040924213827,0.035326790064573,0.046904221177101],[0.15670190751553,-0.098660044372082,0.01865852996707],[0.12181358039379,-0.030512619763613,0.027810098603368]],[[0.076043762266636,0.067996561527252,-0.028754705563188],[0.10058387368917,0.060839522629976,0.0080498764291406],[-0.035310879349709,0.03924897685647,-0.027277648448944]],[[0.0015445206081495,-0.071192264556885,-0.061662282794714],[-0.071464516222477,-0.00049317121738568,-0.086341708898544],[0.10898637026548,0.0646947696805,0.0043440801091492]],[[0.022210421040654,0.0095909610390663,-0.0098325842991471],[0.037099968641996,-0.056233197450638,-0.077795892953873],[0.025669040158391,-0.038533683866262,-0.022074384614825]],[[0.21658442914486,-0.012315322645009,-0.047308668494225],[0.018209800124168,0.046525295823812,0.029176549986005],[0.028119992464781,-0.10336669534445,0.13979898393154]],[[0.020890880376101,0.0290448050946,-0.012793097645044],[0.0043838880956173,-0.024832209572196,-0.006678253877908],[0.10161266475916,0.069909043610096,0.054704278707504]],[[-0.0015935669653118,-0.02092457935214,-0.010672840289772],[0.026725623756647,0.017431663349271,0.029708111658692],[-0.011457570828497,0.032605923712254,0.0044726394116879]],[[-0.13874219357967,-0.12744875252247,0.13971494138241],[0.034615531563759,-0.096134439110756,-0.0045765382237732],[0.042374543845654,-0.02205166220665,-0.010831590741873]],[[0.036659557372332,-0.022231198847294,0.048473048955202],[-0.055614527314901,-0.050191327929497,-0.087996296584606],[-0.0050096358172596,-0.042220368981361,-0.071002848446369]],[[0.051527556031942,0.034739606082439,0.046495638787746],[0.037356816232204,-0.043733056634665,-0.033898703753948],[-0.076226145029068,0.0046930122189224,0.11857895553112]],[[-0.098267428576946,-0.0051159039139748,-0.12704396247864],[-0.087691843509674,-0.027169317007065,-0.025255585089326],[0.012278869748116,0.036432173103094,0.10421362519264]],[[0.13008469343185,0.012847458943725,0.099737174808979],[0.147575750947,0.028790401294827,0.092445120215416],[0.076073944568634,-0.013141801580787,0.053358871489763]],[[-0.13182343542576,0.0026799363549799,0.053673304617405],[0.025838442146778,-0.028497613966465,-0.010419655591249],[0.047119844704866,-0.22002239525318,-0.10938905179501]],[[0.0015298458747566,-0.034776348620653,0.0054208631627262],[-8.8155327830464e-05,-0.015769582241774,0.038027036935091],[0.040918868035078,-0.046867713332176,-0.090302675962448]],[[-0.019003294408321,0.018856400623918,0.050849083811045],[0.036510486155748,0.038188520818949,0.084265701472759],[-0.0028780351858586,-0.035012397915125,-0.017150061205029]],[[-0.15055184066296,-0.081356391310692,-0.17999120056629],[0.12860378623009,0.028716634958982,-0.039902295917273],[0.091294944286346,-0.0050972872413695,0.016710966825485]],[[0.013692286796868,-0.012486259452999,-0.11515378206968],[0.047476254403591,0.052355863153934,-0.00055440771393478],[-0.29834282398224,0.027238830924034,-0.030283503234386]],[[-0.002531724749133,-0.017176760360599,-0.09425950050354],[-0.027500497177243,0.04473515227437,-0.044972326606512],[-0.0009325080900453,0.066739149391651,0.0098807318136096]],[[-0.1928291618824,-0.23622813820839,-0.10876802355051],[-0.2753182053566,-0.30340772867203,-0.013461595401168],[-0.34334668517113,-0.38814190030098,-0.10273136943579]],[[-0.050207789987326,0.0063149933703244,0.0077079795300961],[0.05979447811842,0.067260041832924,-0.12736365199089],[-0.038160469383001,0.0064539136365056,-0.10582344979048]],[[-0.023458126932383,0.015422909520566,0.069106489419937],[0.051871672272682,0.018715130165219,0.019722921773791],[0.015343945473433,-0.0029291133396327,0.0032468035351485]],[[0.048482775688171,0.17144578695297,-0.0099252173677087],[0.03486742079258,0.11862554401159,0.035679146647453],[0.021395836025476,0.22657862305641,0.00060958217363805]],[[-0.078294649720192,-0.1047628223896,-0.037472784519196],[0.07661958783865,-0.015191162005067,-0.13353942334652],[0.058062806725502,0.0073908595368266,-0.015675721690059]],[[0.11777445673943,0.11556691676378,0.037871025502682],[0.18619950115681,0.085345380008221,-0.047935176640749],[0.10167744755745,-0.051167350262403,-0.038248304277658]],[[-0.081964962184429,0.080432914197445,0.013737123459578],[-0.014057506807148,0.077460840344429,-0.13128416240215],[0.036600545048714,-0.11714514344931,0.1111618205905]],[[0.084337532520294,0.067194521427155,0.011001043953001],[0.029961064457893,-0.0022780189756304,-0.07285363972187],[-0.083546049892902,0.0044650989584625,0.011891312897205]],[[-0.16273437440395,0.0096190189942718,0.12324471026659],[-0.053916551172733,-0.029208989813924,-0.074698820710182],[0.073384463787079,0.028280628845096,-0.14136058092117]],[[-0.0029612658545375,-0.014233467169106,0.025707153603435],[-0.00053011230193079,0.029655518010259,-0.055500525981188],[0.034123752266169,-0.035811223089695,0.00032566505251452]],[[-0.13948251307011,-0.013553684577346,-0.082164332270622],[0.043014977127314,-0.002460538642481,-0.035303518176079],[0.027194311842322,0.047713033854961,0.010434054769576]],[[0.026023704558611,-0.0038884845562279,0.056660484522581],[0.0018994311103597,0.10696122050285,0.073611557483673],[-0.00044396877638064,0.0015517853898928,-0.016397828236222]],[[0.022024277597666,0.081241622567177,-0.07992497831583],[-0.0027233564760536,-0.0035667684860528,0.04313151165843],[0.05887234583497,-0.071317099034786,0.073168888688087]],[[-0.089282520115376,-0.029538873583078,0.040220938622952],[-0.035110764205456,-0.059860285371542,0.0050456817261875],[-0.072948701679707,-0.047205053269863,-0.082446411252022]],[[0.028481636196375,0.0055042244493961,-0.052242558449507],[0.030141558498144,-0.17084774374962,-0.061995815485716],[-0.13791736960411,-0.069021001458168,0.071109667420387]],[[-0.069558970630169,0.065231464803219,-0.065543606877327],[0.089909262955189,0.024076582863927,-0.10348163545132],[-0.051075577735901,0.038499888032675,-0.052571572363377]],[[0.036133412271738,0.084009163081646,-0.059792637825012],[-0.022979302331805,0.013553714379668,-0.072976782917976],[0.035958349704742,0.057769618928432,-0.068834602832794]],[[-0.035638604313135,-0.0375503487885,0.01421729568392],[0.063256442546844,-0.029145000502467,-0.025758132338524],[-0.015845159068704,-0.074951387941837,0.01987318508327]],[[-0.032844491302967,-0.072622232139111,0.072936832904816],[-0.060348726809025,-0.12632328271866,-0.024726804345846],[-0.020365424454212,-0.004987817723304,0.089476712048054]],[[0.06895600259304,-0.03279485553503,0.0083528608083725],[0.023533394560218,-0.0069251977838576,0.049708366394043],[0.094939187169075,-0.018877919763327,0.026296135038137]],[[-0.0095930490642786,0.0540133677423,-0.038372043520212],[-0.083650395274162,0.079590253531933,-0.0047833882272243],[0.073680713772774,0.006604028865695,-0.06263429671526]],[[-0.056997157633305,-0.023877767845988,-0.081516452133656],[0.0016923776129261,-0.10498865693808,-0.023951241746545],[0.093113765120506,0.11597912013531,-0.031643711030483]],[[-0.081378020346165,-0.011434151791036,-0.034715812653303],[0.023930238559842,-0.13307201862335,-0.035515677183867],[-0.058467715978622,-0.019848776981235,-0.021497432142496]],[[0.062345035374165,0.067946366965771,-0.022118424996734],[-0.016764501109719,0.040504030883312,-0.038870953023434],[0.0072143897414207,-0.041491620242596,0.0034711139742285]],[[0.044590212404728,-0.13391163945198,-0.056793343275785],[-0.045968227088451,-0.010770137421787,-0.013124848715961],[-0.0064710276201367,0.071045599877834,-0.10954812914133]],[[0.010515133850276,0.002876166254282,-0.03234950825572],[-0.19043973088264,0.057756319642067,-0.091468214988708],[-0.038362886756659,0.032786305993795,0.11026464402676]],[[0.07170706987381,0.015470231883228,-0.030839027836919],[-0.060846392065287,-0.011395080015063,-0.059131719172001],[0.017332762479782,-0.026949634775519,0.026718363165855]],[[0.01912783831358,0.049231488257647,0.027475710958242],[-0.16212490200996,-0.093158550560474,-0.028618456795812],[-0.16175006330013,-0.11952542513609,-0.046169128268957]],[[0.13617262244225,0.048416383564472,-0.00022347706544679],[-0.066418781876564,0.10076121985912,-0.13264119625092],[-0.14843112230301,-0.0017607416957617,-0.14855264127254]],[[0.0019378036959097,-0.055734343826771,-0.0075525483116508],[-0.016191501170397,0.032212194055319,-0.024688843637705],[-0.033509980887175,0.076068431138992,0.020546877756715]],[[0.070385113358498,0.023321529850364,0.076492935419083],[0.0020746276713908,0.051910053938627,0.043765064328909],[-0.05842611938715,-0.087588347494602,-0.059535302221775]],[[-0.050081208348274,-0.030466148629785,0.044066209346056],[-0.0092739630490541,-0.0052879145368934,0.032762825489044],[0.10615284740925,-0.025071820244193,0.015756262466311]],[[0.029933286830783,-0.063315339386463,-0.019782470539212],[0.073095448315144,0.12212590873241,-0.018178468570113],[-0.0047487723641098,0.0043518864549696,0.17935410141945]],[[0.050614133477211,-0.091726236045361,0.12591041624546],[0.075904868543148,-0.038908321410418,-0.0024044304154813],[-0.065993584692478,-0.0071124155074358,-0.01130005158484]]],[[[0.021690642461181,0.071263864636421,-0.036275573074818],[0.040030177682638,-0.084489792585373,0.014525728300214],[0.00024130934616551,0.02705411426723,0.014761661179364]],[[-0.012909143231809,-0.10531962662935,-0.061693608760834],[-0.073757737874985,0.00068071729037911,0.083195701241493],[-0.091578885912895,-0.068825498223305,-0.037383027374744]],[[0.027258902788162,-0.086643926799297,-0.057609912008047],[-0.048928871750832,-0.029809990897775,0.019243886694312],[0.0042432169429958,0.0080424165353179,-0.070685312151909]],[[0.036962110549212,0.019600789994001,-0.072299771010876],[0.041093405336142,0.0079635689035058,-0.037630826234818],[0.024278977885842,0.084504060447216,0.050947066396475]],[[0.019588988274336,-0.069717608392239,0.029576318338513],[-0.023492723703384,-0.08169274777174,0.071251846849918],[0.085003338754177,-0.0010923020308837,-0.00034619879443198]],[[0.040508504956961,-0.012813057750463,0.0094070639461279],[0.0022006283979863,-0.070176906883717,-0.019285220652819],[0.017128685489297,0.0053465701639652,0.068769700825214]],[[0.028841324150562,-0.016355631873012,-0.03367118164897],[0.0044520841911435,0.054102946072817,0.020523607730865],[0.080807097256184,-0.018954938277602,0.0091802002862096]],[[0.071880452334881,0.10656163096428,0.034173902124166],[-0.01050450000912,0.019238654524088,-0.0017302881460637],[0.044132146984339,0.017269164323807,0.085031650960445]],[[0.031412173062563,-0.033362600952387,0.044046513736248],[0.012282487004995,0.070995055139065,0.099023222923279],[0.0040396344847977,0.022356459870934,0.084287159144878]],[[0.072029359638691,-0.017330329865217,0.041774343699217],[0.0058279791846871,0.060846883803606,-0.024476597085595],[0.075152598321438,-0.03506912663579,0.0098697980865836]],[[-0.052123352885246,0.011242468841374,-0.027366133406758],[0.078867301344872,-0.028284562751651,0.054690916091204],[0.012523080222309,0.010679963044822,0.020575711503625]],[[0.0029388112016022,0.015081709250808,0.095080085098743],[0.020971287041903,0.026748657226562,-0.11397031694651],[0.081146277487278,-0.027693029493093,0.024812990799546]],[[-0.027063991874456,0.050579942762852,0.11729200184345],[0.082044154405594,0.10585889220238,0.12203244864941],[0.055529557168484,0.048632990568876,0.11310299485922]],[[-0.029487891122699,-0.0052722510881722,-0.098084710538387],[-0.034545797854662,-0.025371257215738,-0.018189717084169],[-0.039060026407242,0.13094516098499,-0.083957821130753]],[[0.0011589628411457,-0.024969097226858,-0.0074572018347681],[0.041909150779247,-0.016119619831443,-0.039557728916407],[0.070587165653706,-0.046226635575294,0.0060924338176847]],[[-0.13954456150532,0.035148158669472,-0.082693733274937],[-0.090389892458916,-0.037457898259163,0.035870462656021],[-0.032775588333607,-0.0842065513134,0.14599364995956]],[[0.038460317999125,-0.065728925168514,0.010061065666378],[-0.025619136169553,-0.048296056687832,-0.019099244847894],[0.017822798341513,0.037712920457125,-0.048023663461208]],[[-0.079557999968529,0.0063379593193531,0.006372612901032],[0.070028707385063,-0.10351202636957,-0.056604668498039],[0.015126223675907,0.015546188689768,-0.044363524764776]],[[0.033301748335361,0.052786495536566,-0.0093660680577159],[0.00071372737875208,0.018489416688681,0.027256378903985],[0.0037329448387027,0.0087356511503458,0.0019729717168957]],[[0.033076722174883,0.034999471157789,-0.075241453945637],[0.0095474002882838,-0.021279867738485,-0.018050007522106],[-0.031969971954823,0.022248277440667,0.030974125489593]],[[-0.082158088684082,0.060900330543518,-0.008286913856864],[0.10299194604158,0.02537383697927,-0.029415557160974],[-0.13214117288589,-0.037509698420763,0.056772042065859]],[[0.011387733742595,-0.0074224765412509,0.072956256568432],[0.047022484242916,-0.061148043721914,-0.021490691229701],[0.053013514727354,0.061375349760056,0.083156228065491]],[[-0.075064845383167,-0.019347002729774,-0.039862506091595],[0.059339385479689,0.019147738814354,0.07822372764349],[-0.020258203148842,-0.024976346641779,-0.053427956998348]],[[-0.0087101832032204,0.022294722497463,-0.019916258752346],[0.012985513545573,0.013768778182566,0.047087110579014],[-0.011150682345033,-0.01229798514396,-0.00022940870258026]],[[-0.13298052549362,-0.007790831848979,0.031123256310821],[-0.029692444950342,-0.017383016645908,-0.065563648939133],[-0.018371876329184,0.022304199635983,-0.024331506341696]],[[0.057161495089531,-0.045052319765091,-0.0045911390334368],[-0.010199717245996,0.015645034611225,-0.045347776263952],[-0.016973854973912,0.0075072585605085,0.021748155355453]],[[0.0050416844896972,-0.0017440059455112,0.13332560658455],[0.025199273601174,0.015157616697252,0.0084596900269389],[-0.011061139404774,0.077134035527706,0.021612280979753]],[[-0.063252948224545,0.039962790906429,-0.011387746781111],[0.02043054625392,-0.0026393465232104,0.021847773343325],[0.045180063694715,-0.056256417185068,-0.028547078371048]],[[-0.017187153920531,-0.0077903331257403,-0.014631723053753],[-0.02076955512166,-0.020493764430285,-0.00072106212610379],[0.035215381532907,0.025490636005998,0.00055880640866235]],[[0.020720595493913,-0.051885832101107,0.081930704414845],[-0.06419725716114,0.033118903636932,0.081462219357491],[0.069647565484047,-0.013208529911935,0.050260648131371]],[[0.0015450876671821,-0.047043543308973,0.014662501402199],[0.096536085009575,-0.0058564296923578,0.029813475906849],[0.015532176010311,0.062972791492939,0.038965199142694]],[[-0.03795001655817,0.036220517009497,-0.001778106437996],[0.089527636766434,-0.025990365073085,0.0060240691527724],[0.062941871583462,-0.058326251804829,0.076632894575596]],[[0.11130072176456,-0.0050134845077991,-0.022446196526289],[0.082400187849998,0.05158057436347,0.043066546320915],[-0.018431477248669,0.018044861033559,0.019409935921431]],[[0.046938464045525,-0.054087683558464,0.016071502119303],[-0.054076753556728,-0.052749089896679,-0.0069766119122505],[0.031408477574587,0.029694249853492,0.0063625597395003]],[[-0.0093786660581827,-0.0091001894325018,-0.055302415043116],[-0.043417051434517,0.032865736633539,-0.1420855820179],[0.029105981811881,-0.0051940958946943,-0.01268090121448]],[[0.04465688765049,0.036772169172764,-0.010099972598255],[-0.051929298788309,0.04198469594121,0.020819896832108],[0.016753580421209,0.067847870290279,0.0017493221675977]],[[0.012418560683727,0.12359311431646,-0.026698200032115],[0.027293372899294,-0.0011939888354391,-0.018065627664328],[0.047386709600687,-0.041568130254745,0.024924498051405]],[[-0.03346823900938,-0.052906729280949,-0.10410253703594],[0.017472572624683,0.051889035850763,-0.039360951632261],[-0.027895094826818,-0.049466155469418,-0.045972071588039]],[[-0.0039252699352801,-0.026765134185553,-0.018795797601342],[0.03230220451951,0.0017869796138257,0.1159120798111],[-0.07686747610569,-0.08737875521183,0.04148667678237]],[[0.033199850469828,-0.034438002854586,0.055290784686804],[-0.028110265731812,0.026101192459464,0.0089338710531592],[0.012027363292873,-0.0066755404695868,-0.029249340295792]],[[-0.096215344965458,-0.046408571302891,-0.030331913381815],[-0.011865429580212,0.03519693762064,0.067500479519367],[0.03821811825037,0.098834529519081,-0.06422071903944]],[[0.066812947392464,0.059195522218943,-0.030995290726423],[0.11227033287287,0.093099005520344,0.046762999147177],[-0.10780124366283,0.072256229817867,0.0049586710520089]],[[-0.022158317267895,0.056748282164335,0.048583898693323],[0.057574193924665,0.0047373133711517,0.033355083316565],[-0.0026659222785383,0.073974430561066,0.013218711130321]],[[-0.055947970598936,0.039834134280682,-0.038298599421978],[-0.125204205513,0.12343417853117,0.015355563722551],[-0.011657590977848,-0.00068568380083889,0.0086506493389606]],[[-0.002757775131613,0.05412419885397,0.037251006811857],[-0.052062951028347,0.00052026950288564,-0.0048492602072656],[0.013169206678867,-0.029120279476047,0.037297833710909]],[[-0.092281453311443,-0.004471190739423,0.0035027198027819],[0.089826598763466,0.083821691572666,-0.051814589649439],[-0.032566543668509,0.033671166747808,0.047984406352043]],[[0.0023966382723302,-0.073414154350758,-0.028174344450235],[-0.083059906959534,0.028223710134625,-0.10117017477751],[0.030693076550961,-0.10624252259731,0.044752798974514]],[[-0.040974650532007,-0.014352954924107,-0.040201757103205],[-0.048008542507887,-0.011200285516679,0.0024879162665457],[-0.047666314989328,0.024567436426878,-0.11660972237587]],[[-0.081076249480247,-0.050861701369286,0.022375395521522],[-0.092223308980465,-0.07597328722477,-0.044951405376196],[0.014629853889346,-0.032558772712946,-0.0074141793884337]],[[-0.087422408163548,0.038236379623413,-0.074068188667297],[-0.02078047208488,-0.030921531841159,0.015305239707232],[-0.095071017742157,0.031922843307257,-0.062366586178541]],[[-0.065683156251907,0.063747674226761,-0.079604156315327],[0.0058098412118852,0.046116195619106,0.11080580204725],[-0.0046137413010001,-0.014663865789771,0.039999850094318]],[[-0.012182159349322,0.032012239098549,-0.04516814276576],[-0.014067669399083,-0.054864961653948,0.018590768799186],[0.052881885319948,-0.015295185148716,0.027747103944421]],[[0.040639363229275,0.067345999181271,0.04151638224721],[0.062191747128963,0.09295367449522,0.050030048936605],[0.010144700296223,0.023814944550395,-0.0080942930653691]],[[0.042541582137346,-0.036212656646967,0.033511854708195],[0.0064532952383161,0.048490274697542,0.0068722576834261],[0.026404920965433,0.0066209230571985,-0.019916610792279]],[[0.0022421390749514,0.057460468262434,0.0057745692320168],[0.10537716001272,-0.069172188639641,-0.001306815771386],[0.012089309282601,0.070916794240475,0.014320554211736]],[[-0.028592206537724,-0.012054576538503,0.03511381521821],[-0.063599437475204,0.045764148235321,-0.081905581057072],[0.06798629462719,-0.010735305957496,0.029074233025312]],[[-0.025991376489401,0.11538974940777,0.049016293138266],[0.032384030520916,0.100192733109,0.063449434936047],[-0.070133417844772,0.017417311668396,0.047520831227303]],[[0.048309005796909,-0.019518567249179,-0.091165527701378],[0.032479360699654,-0.0033038919791579,-0.013843788765371],[0.012415126897395,-0.0091015724465251,-0.074044235050678]],[[0.025329435244203,0.0014216508716345,0.11406117677689],[0.032834995537996,0.072722472250462,0.043726243078709],[0.012084193527699,0.050989363342524,-0.03169684484601]],[[0.026795905083418,-0.01223829202354,1.8994371203007e-05],[-0.056997884064913,-0.044789787381887,-0.0032339228782803],[0.068316914141178,-0.0062400158494711,0.039918515831232]],[[-0.0028264080174267,0.045488495379686,0.0040583233349025],[-0.060881100594997,-0.0365886464715,-0.014242965728045],[0.031878903508186,0.077419854700565,-0.0091887740418315]],[[-0.011741653084755,-0.042598810046911,-0.12342826277018],[-0.03381996229291,0.014749553054571,-0.074448965489864],[0.0047499556094408,-0.019501931965351,0.014441857114434]],[[0.0073466375470161,0.10154969990253,0.035638969391584],[0.031633753329515,-0.011817284859717,-0.0065964441746473],[0.020209988579154,-0.026210851967335,0.031998489052057]],[[-0.068147152662277,-0.052983704954386,-0.0087701296433806],[-0.055452838540077,-0.027116186916828,0.0060311192646623],[0.045006148517132,0.060042321681976,0.050968337804079]],[[0.025794330984354,0.04176602512598,0.007703407201916],[-0.031227212399244,-0.071487374603748,0.087620340287685],[0.0024487327318639,0.019492704421282,0.011997783556581]],[[0.070136718451977,0.024258818477392,0.045416489243507],[0.04536036029458,0.10229266434908,0.016953140497208],[0.062013573944569,0.10142026096582,0.012636939994991]],[[-0.086282588541508,0.002813104307279,0.03670235350728],[-0.0020896126516163,-0.052351102232933,0.02820791862905],[-0.045208606868982,0.0031039614696056,0.068548463284969]],[[-0.026255156844854,-0.028812380507588,-0.008635587990284],[-0.0035131818149239,0.062285214662552,-0.026769526302814],[0.05206361040473,0.046644926071167,-0.050659697502851]],[[0.081313155591488,-0.010602276772261,0.11116705089808],[-0.018430661410093,-0.022153597325087,-0.012002445757389],[-0.011645521037281,-0.028376361355186,0.08992575854063]],[[-0.0083304718136787,0.015959810465574,0.10478164255619],[0.039034444838762,0.052938055247068,-0.036283198744059],[0.035514980554581,0.081740893423557,-0.033979013562202]],[[-0.021648975089192,0.071543358266354,0.10844159126282],[0.05667557567358,0.014910584315658,0.026113232597709],[0.031727444380522,0.039787076413631,-0.016596756875515]],[[-0.007717396132648,0.0024704071693122,-0.051123291254044],[-0.10113071650267,-0.076617307960987,0.092767760157585],[-0.0022848213557154,-0.016594868153334,0.019756140187383]],[[-0.069288663566113,-0.010272251442075,-0.014212086796761],[0.062689311802387,0.057742267847061,-9.1616013378371e-05],[0.05896082893014,-0.0047896378673613,-0.02352430485189]],[[0.026821780949831,0.074664086103439,0.012748984619975],[-0.033079214394093,-0.02726573869586,0.041166238486767],[0.068892739713192,-0.044333893805742,0.073422215878963]],[[-0.0054121022112668,0.0149458469823,0.037821590900421],[0.061980713158846,0.001610514242202,0.0077452887780964],[-0.037824463099241,0.09236828237772,-0.044769708067179]],[[0.015487981960177,-0.0052071390673518,0.042302247136831],[-0.014874315820634,0.057159319519997,0.057435765862465],[-0.1206414103508,-0.047412920743227,-0.049110468477011]],[[0.059807416051626,-0.0071046808734536,0.047924537211657],[0.015261325985193,0.059691246598959,0.066965103149414],[0.03790470585227,0.09037422388792,-0.0043664211407304]],[[-0.088542893528938,0.079696498811245,-0.0006424177554436],[-0.004880144726485,0.018033798784018,-0.0028427769429982],[0.10520518571138,0.016648307442665,0.046488370746374]],[[0.0048892660997808,0.02895382232964,-0.05785496532917],[-0.020247114822268,-0.059506271034479,0.0052123442292213],[-0.029849009588361,0.032881382852793,0.049545954912901]],[[-0.010529331862926,-0.019918963313103,0.021029489114881],[-0.066422201693058,-0.075359724462032,-0.04231484234333],[-0.048644904047251,-0.036238182336092,0.024403978139162]],[[-0.0050897938199341,0.015381157398224,-0.038028344511986],[-0.0012892330996692,-0.01138458494097,-0.018853958696127],[0.014023550786078,-0.021828670054674,-0.012738804332912]],[[0.074171483516693,0.040615763515234,0.029947333037853],[-0.054145839065313,-0.01617812179029,0.016249839216471],[-0.020086362957954,0.020888920873404,-0.04182917997241]],[[0.035171627998352,-0.10060849040747,0.018736433237791],[-0.034613359719515,0.065055280923843,0.058369789272547],[0.039572216570377,0.10706124454737,0.032578866928816]],[[0.077222794294357,0.10270940512419,0.045588694512844],[-0.017839729785919,0.0083028757944703,0.075645737349987],[-0.078242458403111,0.030637735500932,0.057042744010687]],[[-0.0040658432990313,-0.027452839538455,0.027819158509374],[-0.0086235497146845,-0.035557311028242,0.074369125068188],[-0.025393452495337,-0.024199761450291,-0.028843665495515]],[[-0.02104963734746,-0.024173356592655,0.047663252800703],[-0.038846414536238,-0.025406423956156,-0.077278897166252],[0.015604879707098,0.016036996617913,-0.031921125948429]],[[0.019091906026006,-0.031866107136011,0.085688151419163],[0.031523134559393,0.044482577592134,0.09984914213419],[0.042376130819321,-0.025569956749678,0.091578483581543]],[[0.065307728946209,0.046222273260355,0.04019633308053],[-0.012305137701333,-0.023738116025925,0.027885366231203],[-0.018872728571296,0.060773093253374,-0.030194725841284]],[[-0.058875739574432,-0.020901307463646,-0.015793923288584],[0.058273807168007,0.098740465939045,0.036100678145885],[-0.061689287424088,-0.00059831287944689,-0.017126105725765]],[[-0.03188356384635,-0.055077891796827,-0.070475310087204],[0.0065906615927815,0.013522421941161,0.0366525426507],[-0.086734436452389,-0.026327218860388,0.10842110961676]],[[-0.016073383390903,-0.030075315386057,0.043610852211714],[0.031960938125849,-0.035990785807371,-0.010180303826928],[-0.059136994183064,-0.01271331589669,-0.048021659255028]],[[0.0075299576856196,-0.044857613742352,-0.053994029760361],[-0.024729650467634,0.062799893319607,-0.016481142491102],[-0.008249388076365,0.037746943533421,-0.017092933878303]],[[0.063069567084312,-0.022280031815171,0.012721410952508],[0.14262324571609,-0.055208224803209,-0.062757439911366],[-0.012810621410608,0.011413077823818,-0.024789791554213]],[[0.052082050591707,0.018185768276453,0.053686827421188],[-0.0083153797313571,0.047226268798113,0.021675415337086],[0.029182374477386,0.010050070472062,-0.048698030412197]],[[-0.055043660104275,-0.029418693855405,-0.070451371371746],[-0.063011467456818,0.013654001057148,0.050338447093964],[-0.052754342556,-0.010755209252238,-0.020248105749488]],[[-0.027900131419301,0.0072576049715281,0.065142445266247],[-0.021869283169508,-0.059909425675869,-0.039978679269552],[0.01644510962069,0.00042244599899277,-0.037325706332922]],[[-0.031061284244061,0.057413700968027,0.03112412057817],[-0.020263882353902,-0.088106893002987,0.021949613466859],[-0.047026507556438,0.019474983215332,0.0644735917449]],[[-0.0059902868233621,0.027410438284278,0.03990064561367],[-0.072736352682114,0.066777214407921,-0.012169907800853],[0.099237211048603,-0.015789916738868,-0.058298725634813]],[[0.0095400670543313,-0.012920890934765,-0.014235468581319],[-0.031484190374613,-0.042146295309067,0.033049017190933],[-0.033974673599005,-0.020170604810119,-0.052573699504137]],[[-0.025992903858423,0.045208465307951,0.057416718453169],[-0.0024252911098301,-0.01128486264497,-0.027106216177344],[-0.023595960810781,-0.00039095978718251,-0.012227330356836]],[[-0.064511992037296,0.022900862619281,0.026785956695676],[-0.0072472603060305,-0.051034864038229,-0.023657144978642],[-0.080200269818306,-0.055891375988722,-0.026919038966298]],[[-0.0056721707805991,0.070365831255913,0.055768214166164],[0.048827923834324,-0.020002545788884,0.022224565967917],[0.10103390365839,0.052569672465324,0.062133848667145]],[[0.048310711979866,-0.013334446586668,0.028854565694928],[0.061442233622074,0.067161202430725,0.036271881312132],[-0.034373708069324,-0.054245889186859,-0.0061187222599983]],[[-0.035786356776953,-0.027905806899071,-0.038781329989433],[0.0044105411507189,-0.048196353018284,0.035641636699438],[-0.011712598614395,0.0026954687200487,-0.046068664640188]],[[0.086056314408779,-0.031080067157745,0.064648076891899],[-0.085189297795296,-0.073893398046494,-0.0043971589766443],[0.0031063379719853,0.00018301216186956,0.034877561032772]],[[0.062264241278172,0.01238152384758,-0.097859129309654],[0.027102027088404,0.028179937973619,0.0087316315621138],[0.061995387077332,0.027646895498037,0.065035603940487]],[[0.012153740972281,-0.013008360750973,0.04929606243968],[-0.035963293164968,-0.014350572600961,-0.068333141505718],[0.067369118332863,-0.041092053055763,0.058639019727707]],[[-0.053300004452467,0.016241051256657,-0.11824744939804],[-0.017028782516718,-0.019340291619301,-0.021106392145157],[0.002462854841724,0.011808168143034,0.12134630233049]],[[0.016415728256106,-0.031293347477913,-0.082654036581516],[-0.083425618708134,0.075553394854069,-0.091596052050591],[-0.031974539160728,0.0081706652417779,0.0061057549901307]],[[-0.014448562636971,0.062221273779869,0.00055521086324006],[-0.0076301065273583,-0.037354666739702,0.026133183389902],[0.01675908267498,-0.0031701764091849,0.036199867725372]],[[0.010522125288844,0.037649653851986,-0.055458974093199],[-0.038156855851412,-0.0033950263168663,-0.08745127171278],[0.057451199740171,0.032828278839588,0.032393280416727]],[[0.012677581980824,-0.070524416863918,-0.089828245341778],[0.0030530653893948,-0.074620760977268,-0.041942920535803],[-0.0028307610191405,-0.034615874290466,0.072568245232105]],[[-0.03561893850565,-0.083224944770336,0.041303887963295],[-0.043432500213385,-0.038722489029169,-0.014016666449606],[-0.030107546597719,0.0025759090203792,-0.015248468145728]],[[0.0019204795826226,0.00060933380154893,0.039184741675854],[-0.051896750926971,0.057673647999763,-0.04796451702714],[0.027407361194491,0.032561995089054,-0.053985439240932]],[[0.036080967634916,-0.025008801370859,0.034793701022863],[0.02064260840416,-0.057681623846292,-0.06778696924448],[-0.0047395676374435,-0.027935521677136,-0.056455183774233]],[[-0.035153746604919,-0.027366202324629,-0.023654356598854],[-0.068282894790173,-0.047480739653111,-0.0024544871412218],[0.0059040798805654,-0.063150867819786,0.091397523880005]],[[0.07000844180584,-0.012923084199429,-0.056265525519848],[0.065758004784584,-0.032054170966148,-0.068473398685455],[0.04910883679986,0.025972405448556,0.0011241299798712]],[[-0.061379078775644,-0.045492313802242,-0.026831589639187],[0.032610733062029,-0.036652386188507,0.019249400123954],[-0.065086722373962,-0.043744973838329,-0.02358291298151]],[[0.011941122822464,-0.026157820597291,-0.046003594994545],[-0.019271701574326,-0.069824442267418,0.026694742962718],[-0.034475106745958,-0.041027974337339,-0.028769265860319]],[[0.02701792307198,0.13942548632622,0.10370495915413],[0.0077763176523149,-0.028865681961179,0.10849702358246],[0.029249764978886,0.049617938697338,0.028213711455464]],[[-0.04321027547121,0.0072334283031523,0.047907758504152],[-0.03264057636261,-0.066731378436089,0.0026019832585007],[0.0031886401120573,-0.035241231322289,0.029849356040359]],[[-0.017176432535052,-0.023121304810047,-0.017710201442242],[-0.060384750366211,0.0010828773956746,-0.069447934627533],[-0.036359187215567,0.015995543450117,0.052149087190628]],[[-0.013481643982232,0.024318819865584,0.061894904822111],[0.0055533875711262,-0.051304895430803,0.035227511078119],[-0.014761916361749,0.02484811283648,-0.060788154602051]],[[0.006723546423018,-0.034835331141949,0.073230370879173],[-0.025541812181473,0.040782678872347,-0.022105803713202],[-0.044319871813059,-0.00088786846026778,0.042549829930067]],[[0.045254152268171,0.053087331354618,-0.019227603450418],[-0.065526030957699,-0.03477231413126,0.11789903789759],[0.031197320669889,-0.052022505551577,0.037706200033426]],[[0.0023358501493931,0.019916774705052,-0.0092724440619349],[0.057019043713808,0.052544090896845,0.089974299073219],[0.0090626794844866,0.0072409347631037,0.046580765396357]],[[-0.016990201547742,-0.047578923404217,-0.0094356248155236],[0.05802495777607,0.0010268809273839,0.077052742242813],[-0.033160980790854,-0.0054949312470853,0.032711591571569]],[[0.053754437714815,-0.0029574024956673,0.028971603140235],[-0.10298456996679,0.0083086024969816,0.12546530365944],[0.09541168063879,-0.074244558811188,0.093270227313042]]],[[[-0.068239897489548,0.022105662152171,0.0047607184387743],[0.017635786905885,-0.031514011323452,-0.036450460553169],[0.035703547298908,-0.016444923356175,0.050283741205931]],[[-0.02235221862793,0.012042910791934,0.093096435070038],[-0.014589786529541,0.061294548213482,-0.027201836928725],[0.088917151093483,-0.021405532956123,-0.024274231866002]],[[0.020568674430251,0.016809897497296,-0.026761122047901],[-0.045561708509922,0.009650026448071,-0.025748198851943],[-0.069109745323658,0.016581809148192,0.04086697474122]],[[-0.061717942357063,-0.025051748380065,-0.0087818698957562],[0.033825613558292,-0.028419505804777,-0.074503637850285],[-0.04255598038435,0.096044957637787,-0.092776462435722]],[[-0.10922718048096,-0.030402518808842,0.030028151348233],[-0.027750868350267,0.027352726086974,-0.033179461956024],[-0.06280080229044,0.011565741151571,0.065362840890884]],[[-0.015595163218677,0.039172824472189,0.066040098667145],[-0.025484059005976,-0.048326957970858,0.052633263170719],[-0.089632801711559,-0.046504072844982,-0.015978626906872]],[[0.023685712367296,0.0677235648036,0.0046356040984392],[0.014357949607074,0.010373959317803,0.0035787795204669],[-0.032939594238997,-0.060910061001778,0.025338029488921]],[[0.015372879803181,0.0051918355748057,0.0068042986094952],[0.057623472064734,0.019221259281039,0.008789568208158],[0.0038320168387145,0.0053753983229399,-0.055544663220644]],[[0.053294986486435,-0.062407076358795,0.0049243289977312],[0.018896156921983,0.0068367677740753,0.025777984410524],[0.010802133008838,-0.039079170674086,0.052773386240005]],[[0.088402263820171,-0.041994780302048,-0.025202998891473],[0.039104498922825,0.022924138233066,-0.076758235692978],[-0.051660139113665,-0.042013723403215,0.055662173777819]],[[-0.014034466817975,0.071187615394592,-0.074348174035549],[-0.0034743063151836,0.0026577210519463,-0.083935104310513],[0.05585964769125,-0.014877254143357,0.031788662075996]],[[-0.0090486109256744,-0.023938685655594,0.029138531535864],[0.052158191800117,-0.037852466106415,0.00014691206160933],[-0.0056511834263802,-0.050848122686148,-0.038143519312143]],[[-0.040715917944908,-0.0067291711457074,0.039922721683979],[0.0074072876013815,0.015540706925094,0.049252923578024],[-0.058466460555792,0.080767646431923,-0.041930820792913]],[[0.037923008203506,0.021807018667459,0.015028078109026],[0.002278788946569,0.034405075013638,0.028589373454452],[-0.055003918707371,-0.08162958920002,-0.015437921509147]],[[-0.064331479370594,0.0028381876181811,0.034658394753933],[0.12516483664513,-0.0082646608352661,0.025746526196599],[-0.0068368054926395,-0.0063309674151242,-0.010145214386284]],[[-0.044379062950611,-0.025719117373228,0.077754303812981],[0.055588729679585,-0.0018958162982017,0.017823293805122],[0.032829642295837,0.096288308501244,-0.021183235570788]],[[0.10006645321846,0.043119937181473,0.005422639194876],[-0.033877465873957,-0.018302300944924,-0.062356270849705],[0.10353600978851,0.016882590949535,-0.0067327003926039]],[[0.022039420902729,0.027783216908574,-0.050964418798685],[-0.084219798445702,0.016550593078136,0.04102411493659],[0.028589291498065,-0.010410418733954,-0.063509210944176]],[[-0.090631209313869,-0.055492043495178,0.023115061223507],[0.044482834637165,0.10236819833517,0.051949068903923],[0.066988080739975,0.040879189968109,-0.023618135601282]],[[-0.024107407778502,-0.08107902854681,-0.074068069458008],[0.063577510416508,0.040731206536293,-0.014926671981812],[-0.031820382922888,0.037917703390121,-0.014591245912015]],[[0.04406888410449,-0.096266061067581,0.0090075526386499],[0.0038823154754937,-0.018131712451577,-0.01996230147779],[0.023909235373139,0.10713261365891,-0.016378428786993]],[[-0.012540206313133,0.0041742380708456,-0.019115699455142],[0.04184515029192,0.020857710391283,-0.028323382139206],[-0.035541724413633,-0.039247557520866,0.047422256320715]],[[0.020465293899179,0.040745608508587,0.022182585671544],[-0.025970719754696,0.037935230880976,0.01132589392364],[0.030627783387899,0.013338548131287,0.099631763994694]],[[0.010181576944888,-0.029539650306106,-0.041541010141373],[-0.043055132031441,0.0070222783833742,-0.061191510409117],[0.0054447031579912,-0.024137331172824,0.0058485795743763]],[[0.066974177956581,0.0086585376411676,-0.031397841870785],[0.01058566197753,0.02075082436204,-0.010378410108387],[-0.036232553422451,-0.0034445296041667,0.092573575675488]],[[-0.067877434194088,0.006148882675916,-0.0057019274681807],[0.040721382945776,0.0099148405715823,0.0027052101213485],[0.012757260352373,0.063922978937626,0.043476287275553]],[[-0.020061058923602,-0.04371277987957,0.034927558153868],[-0.0068167136050761,0.049300640821457,0.034803804010153],[0.031526304781437,-0.057038713246584,-0.0032018469646573]],[[0.11766417324543,-0.040990021079779,0.016172042116523],[0.12768578529358,0.0076809176243842,-0.049860086292028],[-0.00041825853986666,0.044447306543589,-0.049405265599489]],[[-0.040799554437399,0.067104801535606,0.00939757283777],[0.001379833323881,0.021900050342083,-0.059492357075214],[0.00028491599368863,0.022787498310208,0.033543314784765]],[[-0.046342261135578,-0.038905322551727,0.016749897971749],[-0.041273765265942,0.010194232687354,-0.04415313526988],[-0.023767286911607,0.00012644482194446,0.051477625966072]],[[-0.041407562792301,-0.031103333458304,-0.012174177914858],[-0.039665699005127,0.070063196122646,0.072974018752575],[-0.0083552431315184,0.012355530634522,-0.0034908978268504]],[[0.060291513800621,-0.10486163944006,0.012880129739642],[-0.019774975255132,0.090374872088432,-0.026363056153059],[0.015622055158019,0.045742157846689,-0.028005562722683]],[[-0.0071245208382607,-0.092484578490257,0.0069259544834495],[-0.090137578547001,0.0014170778449625,-0.018559975549579],[-0.12238412350416,-0.089688844978809,0.023750832304358]],[[0.0031756334938109,0.05793110281229,0.031893081963062],[0.028198983520269,-0.033129710704088,0.013987830840051],[-0.042031262069941,-0.0036147937644273,-0.014268863014877]],[[0.058352291584015,-0.0043990891426802,-0.034151166677475],[0.027652557939291,0.0024329274892807,-0.047612309455872],[-0.042953412979841,0.019866177812219,-0.031890418380499]],[[-0.030376745387912,0.022677982226014,-0.022667832672596],[0.0093717267736793,-0.071253530681133,-0.015423339791596],[0.1413027793169,0.0048956442624331,0.0058469283394516]],[[0.03836003318429,-0.077623665332794,-0.071353927254677],[-0.0010974720353261,-0.046893417835236,0.031011447310448],[0.024851342663169,-0.057702928781509,0.035575699061155]],[[-0.025849727913737,-0.050956234335899,0.0013814183184877],[-0.046421833336353,-0.037506025284529,-0.028940817341208],[0.038665805011988,-0.075094878673553,0.026226237416267]],[[0.019041113555431,-0.034032218158245,0.027002165094018],[0.017983991652727,0.033818393945694,-0.01513216085732],[0.02480361610651,0.044236086308956,0.029516471549869]],[[-0.0089192492887378,-0.012814622372389,0.025753103196621],[-0.013443903066218,0.010386867448688,0.0013283654116094],[0.03843642771244,-0.083802565932274,0.030330963432789]],[[0.04013741388917,0.0066402424126863,0.023656221106648],[0.040352262556553,0.031572870910168,-0.045058973133564],[-0.018190458416939,-0.036341696977615,-0.050943113863468]],[[0.014267821796238,0.095667280256748,-0.054936479777098],[0.0089372135698795,0.035513289272785,-0.081691399216652],[0.098259605467319,0.011037736199796,0.0276402477175]],[[-0.035066410899162,-0.14803560078144,0.050762381404638],[0.045460727065802,0.035679332911968,0.010661248117685],[-0.043193463236094,-0.034838195890188,-0.067699082195759]],[[-0.036275882273912,0.018565913662314,-0.044459860771894],[-0.017481671646237,0.012863767333329,0.038521252572536],[-0.037517666816711,-0.14828802645206,-0.028145307675004]],[[-0.030136041343212,-0.020450809970498,-0.020467817783356],[0.046043213456869,0.006346182897687,0.068278774619102],[0.082580000162125,-0.063542321324348,0.050447806715965]],[[0.0075815278105438,0.026821358129382,-0.0036429851315916],[0.026821913197637,-0.0201117079705,0.0053574512712657],[0.05331838876009,0.0099012088030577,0.0052268928848207]],[[0.0066729998216033,0.067032590508461,-0.034836083650589],[-0.019407011568546,-0.060470979660749,0.056650891900063],[0.065790504217148,-0.0067621925845742,-0.11280433088541]],[[0.037612836807966,0.016105730086565,0.072389967739582],[-0.070864781737328,-0.075073346495628,0.050639767199755],[-0.055700074881315,0.0012439856072888,0.0041244416497648]],[[0.022381227463484,0.03223679214716,-0.085562847554684],[0.068015806376934,-0.016632430255413,0.039012756198645],[-0.0604840926826,0.077068366110325,0.018017396330833]],[[-0.12015859782696,0.0051154759712517,-0.046541664749384],[0.0035453205928206,0.0068590482696891,-0.021820435300469],[0.049795910716057,-0.031536255031824,0.015960523858666]],[[-0.0060258144512773,-0.060936152935028,0.023394208401442],[0.047231312841177,-0.049789257347584,-0.053743045777082],[-0.047077462077141,0.0281085614115,0.010649493895471]],[[-0.019751816987991,-0.0086243497207761,-0.022388208657503],[0.03361464291811,-0.046979509294033,0.042272046208382],[-0.063924983143806,0.0041579455137253,0.017752792686224]],[[-0.052476469427347,0.012784229591489,0.009021058678627],[0.080013237893581,0.07813549041748,0.099842354655266],[-0.048684943467379,-0.023945383727551,-0.069665357470512]],[[-0.021051647141576,0.057442653924227,0.065792411565781],[-0.032282259315252,-0.031561691313982,-0.013337763957679],[-0.047670122236013,0.042195163667202,0.0099493404850364]],[[0.0041397167369723,0.0179756693542,0.059857126325369],[-0.075846694409847,0.056397616863251,-0.01802035421133],[-0.037233483046293,-0.074871383607388,0.050935342907906]],[[0.064209029078484,0.12458173185587,-0.011166057549417],[0.073175668716431,0.046986192464828,0.0044159907847643],[-0.015095975250006,-0.031596202403307,-0.00039570263470523]],[[-0.027637442573905,0.023117898032069,-0.044482719153166],[0.024053988978267,-0.023964671418071,0.00090351584367454],[0.033024325966835,-0.036488134413958,-0.0052312258630991]],[[0.039665248245001,0.044813051819801,0.01784709841013],[-0.036852646619081,-0.047291301190853,0.030468108132482],[0.0081238048151135,-0.030199740082026,0.010416344739497]],[[-0.042883731424809,-0.018098453059793,0.056680161505938],[-0.088508471846581,-0.061929166316986,-0.038404271006584],[-0.032114464789629,0.021567167714238,0.0073849428445101]],[[0.039109114557505,-0.032484386116266,0.0027965023182333],[0.011489947326481,0.036742649972439,0.062242098152637],[0.016814026981592,-0.096152879297733,0.063287973403931]],[[-0.0044369967654347,0.012629360891879,-0.0085590602830052],[0.068259879946709,0.019568430259824,0.066396914422512],[0.14097253978252,-0.065673433244228,0.020205333828926]],[[-0.076963789761066,0.054794140160084,-0.029531555250287],[0.02151863463223,-0.020770248025656,0.076756581664085],[0.048610437661409,-0.044437296688557,0.056263219565153]],[[-0.0056693130172789,-0.054978732019663,0.018152391538024],[-0.042182840406895,-0.061110612004995,0.029339818283916],[-0.011767164804041,0.020475707948208,0.055717267096043]],[[0.042739037424326,-0.052918709814548,-0.05879495665431],[-0.022248519584537,-0.031272046267986,-0.041056171059608],[0.024353079497814,-0.01435062661767,-0.011002134531736]],[[0.0035247679334134,0.049361925572157,0.032774228602648],[-0.00025278615066782,0.0012605057563633,0.032115004956722],[-0.038005203008652,-0.035437241196632,-0.036797072738409]],[[-0.029575010761619,0.036902155727148,0.066623494029045],[0.018598865717649,-0.032339304685593,-0.0043478035368025],[-0.028853548690677,-0.031290795654058,-0.032735101878643]],[[0.022661594673991,-0.0052855489775538,0.0379060767591],[0.051612298935652,-0.034790683537722,-0.022791553288698],[-0.028344830498099,0.017516547814012,-0.0259058624506]],[[-0.013738163746893,0.021958217024803,0.017563065513968],[-0.043884634971619,0.027251852676272,0.0059774429537356],[-0.010176671668887,-0.049642406404018,0.025007793679833]],[[0.099013403058052,0.037159211933613,0.0069901272654533],[0.084689736366272,-0.011520995758474,-0.02769647911191],[-0.047674607485533,-0.0095768067985773,0.058346390724182]],[[0.045410647988319,-0.018180254846811,-0.037228003144264],[0.024222295731306,-0.014995963312685,0.058224633336067],[-0.020016029477119,0.040651455521584,-0.045761376619339]],[[-0.048033233731985,-0.0045358762145042,-0.036842327564955],[0.029371622949839,-0.0018354586791247,0.032939951866865],[0.07522651553154,0.052240885794163,-0.001592292683199]],[[-0.080513618886471,0.025905091315508,0.053191211074591],[-0.022250441834331,0.030608961358666,0.020854283124208],[0.048140019178391,0.021499255672097,0.01301546394825]],[[0.10717460513115,-0.05974330380559,0.010831554420292],[0.048527747392654,0.071617178618908,-0.027477949857712],[0.086087040603161,0.019523927941918,0.02183323353529]],[[-0.0010443119099364,0.033221479505301,-0.040353536605835],[0.080250039696693,0.014638635329902,0.076609872281551],[-0.036639560014009,0.033802319318056,-0.030629301443696]],[[0.038279883563519,-0.017071450129151,-0.022708592936397],[0.0033842320553958,-0.086774840950966,0.0068806810304523],[-0.034728441387415,-0.032156452536583,-0.05408776178956]],[[-0.017086699604988,0.029216397553682,0.021395303308964],[0.036889534443617,0.04635751247406,-0.095891393721104],[-0.019747618585825,0.036604586988688,0.003627881873399]],[[-0.070728480815887,0.061800710856915,0.018369572237134],[0.06753259152174,0.021455500274897,0.071026235818863],[-0.054968729615211,0.046344861388206,-0.0094659859314561]],[[-0.02595691755414,0.022522682324052,-0.053310725837946],[-0.014270674437284,0.021919939666986,-0.0026885534171015],[0.040007118135691,-0.012951968237758,-0.086753003299236]],[[0.068801820278168,0.031136902049184,0.022099081426859],[-0.06459329277277,-0.066303797066212,0.0064991330727935],[0.0037962729111314,0.036654092371464,-0.015899743884802]],[[0.049923319369555,0.00053984904661775,-0.039668466895819],[0.077187582850456,0.012455420568585,0.057282395660877],[-0.030202144756913,-0.013039479963481,0.0056141773238778]],[[-0.041763491928577,-0.041822165250778,0.036160595715046],[-0.0094835013151169,0.030381456017494,-0.016754262149334],[-0.055790416896343,-0.086314797401428,0.050827454775572]],[[-0.073504433035851,0.058049540966749,-0.041892722249031],[-0.021422553807497,-0.057085316628218,0.035458717495203],[-0.010738558135927,-0.018693679943681,-0.0097541948780417]],[[0.11918990314007,-0.00041277435957454,0.053360428661108],[-0.064552634954453,0.038095083087683,0.022969901561737],[0.096748821437359,0.040307596325874,-0.021554449573159]],[[0.028048176318407,0.084039978682995,0.055988699197769],[-0.095145732164383,-0.05036998167634,0.019318804144859],[0.023290872573853,0.023658853024244,-0.071183167397976]],[[0.014522145502269,-0.11291322112083,-0.019695565104485],[-0.017040295526385,-0.040906108915806,0.010093910619617],[-0.0099387615919113,0.0088590951636434,0.0052789011970162]],[[0.0023670790251344,0.0079712243750691,0.014512280933559],[-0.014895118772984,-0.032193649560213,-0.0012081027962267],[-0.057156134396791,0.03312399238348,0.020726542919874]],[[-0.037680305540562,-0.068696454167366,-0.034015912562609],[-0.034808252006769,-0.0070608044043183,0.0015439555281773],[-0.00211057276465,0.048362977802753,-0.071512565016747]],[[0.0025305852759629,-0.074870944023132,-0.04002146422863],[-0.081798762083054,0.052110314369202,0.028442438691854],[0.017428325489163,0.070367351174355,-0.03136396035552]],[[-0.014427498914301,0.0119858244434,-0.0029007727280259],[-0.022657549008727,0.013977992348373,0.014571596868336],[0.031256597489119,0.063684657216072,-0.012247575446963]],[[0.027233814820647,0.014426643960178,0.067740879952908],[-0.0030860628467053,0.046993993222713,-0.028796514496207],[0.016217501834035,0.035703249275684,0.00015144633653108]],[[-0.027692079544067,-0.070167317986488,-0.018581867218018],[-0.025517746806145,-0.090197518467903,0.01382639631629],[-0.022767679765821,0.048533946275711,0.011920733377337]],[[0.068079926073551,-0.017574463039637,0.027314245700836],[0.0038006464019418,0.020243491977453,-0.037826955318451],[-0.00057910184841603,0.013201103545725,-0.038238823413849]],[[0.01069254335016,0.032822702080011,0.06969103962183],[-0.003005153266713,0.015582144260406,0.026788478717208],[-0.032294284552336,-0.011244481429458,-0.023291924968362]],[[0.055558558553457,0.0092598320916295,0.037687972187996],[0.0033233920112252,-0.024005388841033,-0.081493347883224],[-0.023740813136101,0.018982242792845,-0.012952176854014]],[[-0.033255286514759,-0.034844104200602,-0.0013850076356903],[0.042407788336277,0.058980334550142,-0.048478975892067],[0.013354887254536,-0.025687014684081,0.026935225352645]],[[-0.02667037025094,-0.023297119885683,0.050443690270185],[0.038682013750076,-0.029684202745557,0.096087843179703],[-0.11654042452574,0.0090710641816258,-0.0024824650026858]],[[0.020569244399667,0.023308841511607,-0.058828759938478],[0.067690834403038,0.054632849991322,-0.070225320756435],[0.016664488241076,0.0048273648135364,0.038539074361324]],[[0.024280019104481,-0.094026580452919,0.0084922928363085],[-0.061253979802132,-0.020107323303819,-0.05590733513236],[-0.032487858086824,-0.063721753656864,0.06311047822237]],[[0.012279683724046,0.0853401273489,0.012701325118542],[0.028829053044319,0.058572132140398,0.04908425360918],[-0.00093244819436222,0.090139210224152,0.072436764836311]],[[0.12011507153511,-0.0080183381214738,-0.056389696896076],[-0.0089070238173008,0.025150382891297,-0.01312860660255],[0.011300833895802,-0.082441285252571,0.0096327913925052]],[[0.076659552752972,-0.0025707380846143,-0.020826937630773],[-0.024455994367599,-0.010658785700798,-0.029860569164157],[0.029501680284739,0.023822179064155,-0.026257053017616]],[[0.012989805079997,0.0054357042536139,0.034814924001694],[0.023256508633494,0.025220360606909,0.044695597141981],[-0.027814798057079,-0.0016059090849012,-0.013448184356093]],[[-0.014177521690726,-0.010787408798933,0.057704318314791],[-0.025782385841012,-0.032030817121267,-0.048307627439499],[-0.014564755372703,-0.018260916694999,-0.047085333615541]],[[-0.02284568361938,0.025596395134926,-0.033713582903147],[0.048607423901558,0.034493450075388,0.010134070180357],[0.0072334208525717,-0.0066022300161421,0.019709959626198]],[[0.06155102327466,-0.019000269472599,0.014685398899019],[-0.051895417273045,0.00091390562010929,0.0016060038469732],[0.015286901965737,0.012424379587173,-0.016051763668656]],[[0.021685751155019,0.0030509526841342,0.019342428073287],[0.037433762103319,0.062214884907007,0.049177203327417],[0.036532059311867,-0.0042596091516316,-0.043326448649168]],[[0.006925952155143,0.012822827324271,-0.05522995442152],[0.027233911678195,0.008912798948586,0.061353322118521],[-0.024495463818312,0.027777979150414,0.037519861012697]],[[-0.015627395361662,-0.037979513406754,-0.025376684963703],[0.0075335972942412,-0.024031274020672,0.11114340275526],[0.0066020307131112,-0.0044364272616804,0.023467563092709]],[[0.0023736464791,0.036140482872725,-0.06132435053587],[0.079627834260464,-0.010073219425976,0.022083010524511],[-0.01079627033323,0.0085705211386085,0.02888398617506]],[[-0.01638688147068,-0.015747489407659,0.0086913397535682],[0.020139273256063,-0.010748829692602,0.011562181636691],[-0.028251456096768,-0.062421329319477,0.027700308710337]],[[-0.01257505454123,0.067789971828461,0.055378288030624],[0.020427577197552,-0.0078375786542892,0.053680490702391],[0.032324340194464,0.03153995424509,-0.010829603299499]],[[0.026582401245832,-0.0044269389472902,0.018786335363984],[-0.00016132747987285,0.082207776606083,-0.063362076878548],[0.0012120179599151,0.03568783774972,-0.035852380096912]],[[0.017254682257771,-0.0015422772848979,-0.082027152180672],[-0.10081998258829,0.025369171053171,0.018987946212292],[-0.011050553992391,-0.015991844236851,0.020459873601794]],[[0.053219825029373,0.0027050212956965,0.045270670205355],[-0.063396356999874,-0.039916947484016,-0.018086079508066],[-0.0049080769531429,-0.031095804646611,-0.0040083895437419]],[[-0.0061258161440492,0.045540869235992,0.05526027828455],[0.0096270758658648,-0.018573133274913,-0.030924361199141],[0.012788142077625,-0.07543259114027,-0.017011027783155]],[[0.020641496405005,-0.010883347131312,0.068850390613079],[0.067691132426262,-0.0050218715332448,0.025910675525665],[0.022230725735426,0.00018467514018994,-0.042687054723501]],[[0.027320651337504,0.019366370514035,0.056790061295033],[0.0064612468704581,0.087952099740505,-0.001074256724678],[-0.058042336255312,-0.017030416056514,0.011132401414216]],[[0.022755464538932,0.028579441830516,0.036630384624004],[0.030381165444851,-0.016264021396637,0.043845798820257],[-0.062428221106529,-0.05321016907692,-0.0058640358038247]],[[-0.057407326996326,-0.035504300147295,0.029129687696695],[0.034054841846228,0.038905929774046,0.015162380412221],[-0.10209734737873,-0.027049675583839,0.017893295735121]],[[0.014257615432143,0.036559458822012,-0.0070888199843466],[-0.020957937464118,-0.0044468156993389,-0.03521304577589],[0.047529451549053,-0.027480041608214,-0.0036599072627723]],[[-0.0045924470759928,-0.042768467217684,0.029174238443375],[-0.032401517033577,-0.12397710233927,-0.0029068593867123],[0.049988321959972,0.036743603646755,-0.0021883135195822]],[[0.06216911226511,-0.093727558851242,0.015702465549111],[0.0012360577238724,-0.024631464853883,-0.0019846609793603],[0.0034215294290334,-0.0077538499608636,-0.0054525244049728]],[[0.19593738019466,0.0043240240775049,-0.0093005504459143],[-0.037386234849691,0.17601004242897,-0.053471196442842],[-0.032340381294489,0.032705292105675,0.063362389802933]],[[0.029236238449812,0.018665459007025,0.032940436154604],[-0.050494596362114,-0.020772950723767,-0.0027482020668685],[-0.014114576391876,0.095445685088634,0.0078176390379667]],[[0.00028122449293733,0.0074675194919109,0.0014534967485815],[0.035100877285004,0.036268595606089,0.0051344451494515],[0.086776882410049,-0.048466991633177,-0.0020256841089576]],[[0.053115710616112,-0.066785216331482,0.048921957612038],[-0.0092108035460114,-0.018207652494311,0.020819962024689],[0.011793507263064,-0.059546604752541,0.05657697468996]],[[-0.070147156715393,0.00099640246480703,-0.0092854369431734],[0.068333007395267,-0.0047038923949003,0.037783276289701],[0.063208520412445,0.0087963324040174,-0.072443634271622]],[[0.029765017330647,-0.014143456704915,-0.051889143884182],[-0.0582036934793,0.038546454161406,0.0046398281119764],[0.00084706384222955,-0.020323302596807,-0.03491884469986]]],[[[0.015765989199281,-0.024846956133842,0.059659741818905],[0.096220232546329,0.0049118543975055,-0.060007207095623],[-0.037164937704802,-0.051225051283836,0.045924425125122]],[[0.0089462967589498,-0.012385350652039,0.028437733650208],[-0.054802354425192,-0.043372541666031,-0.035239558666945],[0.012138203717768,-0.018855556845665,0.014924987219274]],[[-4.1488896385999e-05,0.011642111465335,0.065400995314121],[0.024159666150808,0.012779397889972,-0.059139333665371],[-0.014174318872392,-0.040385764092207,0.081113018095493]],[[0.015027893707156,0.081823945045471,0.038595642894506],[0.0062966085970402,-0.013339942321181,0.027569092810154],[0.026801062747836,0.040413707494736,-0.017008848488331]],[[-0.0043436666019261,-0.0077054761350155,-0.030954169109464],[0.00040518087917008,-0.0048383013345301,-0.016542494297028],[-0.00015289982547984,-0.027150800451636,-0.004266852978617]],[[0.0065940711647272,0.0038426970131695,0.033293735235929],[0.005437608808279,0.034182742238045,0.021526267752051],[0.069839045405388,-0.0012187415268272,0.057736709713936]],[[0.02643833309412,-0.0087546808645129,0.014272179454565],[0.00801757350564,0.03353064879775,-0.0064837099052966],[-0.055906306952238,0.0031544147059321,0.0014989613555372]],[[-0.0022754496894777,-0.013540914282203,0.026295900344849],[0.063529588282108,0.04004879295826,0.049334440380335],[0.02265896461904,-0.078484706580639,0.082581743597984]],[[0.052418027073145,0.00015041315054987,0.078563421964645],[0.026641827076674,0.013504485599697,0.072114318609238],[-0.068954087793827,-0.045085944235325,-0.065806537866592]],[[0.019952705129981,-0.042690139263868,0.075558871030807],[0.0074269594624639,0.060011364519596,-0.02327137440443],[-0.022431502118707,-0.01278845500201,0.02224532328546]],[[0.030866680666804,-0.028521507978439,0.082125641405582],[0.034094236791134,0.090696521103382,0.00070539233274758],[-0.0072587258182466,-0.025005120784044,0.021989852190018]],[[0.0046416372060776,-0.0093803582713008,-0.068675182759762],[0.044327396899462,0.11289131641388,0.045580942183733],[0.019987540319562,-0.0046371049247682,-0.049923963844776]],[[0.11712051182985,0.034245349466801,0.034496657550335],[-0.089724898338318,0.12178880721331,0.057357750833035],[0.017758645117283,0.034646980464458,-0.043810520321131]],[[0.01296809501946,-0.033805329352617,-0.012741701677442],[0.012888649478555,0.087381541728973,-0.018381208181381],[0.013140172697604,-0.03121973760426,0.047925613820553]],[[-0.046131826937199,0.01238567661494,-0.022666512057185],[0.067103140056133,-0.064981691539288,0.0056839999742806],[-0.0053317216224968,0.016276866197586,-0.082108125090599]],[[-0.090401709079742,0.022278467193246,-0.071672879159451],[0.066947020590305,-0.081525079905987,0.024128766730428],[-0.045173078775406,-0.0064237206242979,-0.02354240603745]],[[-0.014864449389279,0.018890803679824,0.087741687893867],[-0.045002553611994,0.038999617099762,0.011732103303075],[0.042669456452131,0.0060976427048445,0.031917411834002]],[[0.007911479100585,-0.05254490673542,-0.024928426370025],[-0.084176585078239,-0.053858157247305,0.022208718582988],[0.026246508583426,0.016674214974046,-0.035607915371656]],[[-0.0095269307494164,0.02767550945282,-0.0051439953967929],[-0.039339479058981,0.032348819077015,0.016976684331894],[0.017967343330383,0.03715106472373,0.037385389208794]],[[-0.0046677812933922,0.015299360267818,-0.004961047321558],[0.02878400310874,0.040763355791569,7.4314455559943e-05],[-0.014683093875647,-0.05290013179183,0.085272662341595]],[[0.021062983199954,0.022603990510106,0.010078461840749],[-0.11184635013342,0.0056576984934509,0.0010810946114361],[0.069110922515392,-0.036801844835281,-0.08410570025444]],[[0.050016336143017,0.075233452022076,-0.015777761116624],[0.018140491098166,-0.030020767822862,0.063064947724342],[0.10698223859072,0.058204673230648,0.047562543302774]],[[-0.14430025219917,0.030062915757298,-0.052965916693211],[-0.026967544108629,0.0034892517141998,0.039407137781382],[-0.014787419699132,0.0050474349409342,-0.0035173851065338]],[[-0.039668638259172,-0.017998874187469,-0.025569882243872],[0.0060593839734793,0.04381500184536,0.040424104779959],[-0.053495597094297,0.0014342948561534,-0.0061960201710463]],[[0.041953019797802,-0.036846309900284,-0.045262534171343],[0.041382748633623,-0.017092918977141,0.050935044884682],[-0.032875224947929,-0.0013032119022682,0.014752722345293]],[[-0.021384488791227,-0.0089947897940874,0.021309725940228],[0.0051655517891049,-0.025074535980821,0.022465299814939],[0.0063146213069558,0.09462421387434,-0.069150328636169]],[[-0.0023678299039602,0.037831645458937,-0.0079341297969222],[0.0017725047655404,0.055064026266336,0.027627844363451],[0.030289862304926,0.010001364164054,0.025484837591648]],[[0.050595603883266,0.066153064370155,0.022837821394205],[-0.025525977835059,0.044047672301531,0.044060774147511],[0.0018757187062874,0.028970170766115,-0.0084680505096912]],[[-0.086761206388474,-0.013973334804177,0.027096820995212],[-0.014474340714514,0.071781404316425,-0.018732385709882],[0.0010264661395922,-0.087133280932903,0.090106934309006]],[[-0.0028245868161321,-0.092046119272709,0.03012859262526],[0.047001585364342,0.01636016741395,-0.008829434402287],[-0.0088429236784577,0.06153442338109,0.043400824069977]],[[0.032765179872513,-0.0035127073060721,0.041865799576044],[-0.0012887861812487,0.0076954355463386,-0.0023109039757401],[-0.010603605769575,0.091550014913082,0.016610819846392]],[[-0.019046168774366,0.023697664961219,0.016216401010752],[0.0098542841151357,-0.02508894726634,0.056987948715687],[0.07954653352499,-0.01520914118737,-0.0070231012068689]],[[0.013910155743361,-0.020987030118704,0.039758242666721],[-0.070836439728737,0.084355100989342,0.011461487971246],[-0.009128606878221,0.056010641157627,0.010891905985773]],[[-0.028955329209566,0.0083340015262365,-0.019439687952399],[0.018584337085485,0.10240029543638,-0.0070504005998373],[-0.020577531307936,-0.016837861388922,-0.016074568033218]],[[-0.0057741282507777,-0.015154305845499,0.070677660405636],[0.023766005411744,0.053408704698086,-0.01719381287694],[-0.026238506659865,0.045697666704655,0.02420843206346]],[[0.0056486702524126,0.018124952912331,0.0063454462215304],[0.024650631472468,0.016576699912548,0.054303485900164],[-0.017191087827086,-7.7930344559718e-05,0.026726726442575]],[[0.021293817088008,0.0018870810745284,0.070558041334152],[-0.0029034451581538,0.025485273450613,-0.019079055637121],[-0.095395930111408,-0.014689517207444,0.041335944086313]],[[0.0062172678299248,0.053752306848764,-0.0067688459530473],[0.03401406109333,0.010009185411036,0.074490010738373],[-0.025925694033504,-0.020526917651296,0.047191970050335]],[[-0.111817099154,-0.057749710977077,-0.014893246814609],[0.055221617221832,0.054793313145638,0.015224586240947],[0.03946889564395,-0.028765128925443,0.11535319685936]],[[0.018018109723926,0.0046020159497857,0.00078606599709019],[0.0034642529208213,0.08192902058363,0.017422262579203],[-0.039213661104441,0.005588186904788,0.023303970694542]],[[0.022858740761876,0.032559633255005,0.032924517989159],[-0.043784733861685,0.058233812451363,0.039574928581715],[-0.0095043675974011,0.015210060402751,-0.13236655294895]],[[-0.013494268059731,0.038902945816517,0.057572193443775],[0.031600072979927,0.0025264360010624,0.037771444767714],[0.07752151787281,-0.027543816715479,0.056538332253695]],[[0.045849658548832,-0.0036470873747021,0.014686997979879],[-0.05128600820899,0.015229360200465,0.055432789027691],[0.13462659716606,-0.019906284287572,0.045170020312071]],[[-0.014301006682217,0.01810253597796,0.07364884018898],[0.00068574235774577,-0.049120623618364,-0.0062110899016261],[-0.057273298501968,-0.018835160881281,-0.008079401217401]],[[0.076121360063553,0.0078585930168629,0.005752463825047],[-0.045891959220171,-0.023890437558293,0.015322288498282],[0.026447417214513,-0.047651648521423,0.016237739473581]],[[0.10314685106277,0.038612477481365,-0.0088116843253374],[0.036666620522738,0.12196373939514,0.13158418238163],[0.15030112862587,0.037441898137331,-0.055211070924997]],[[0.0023272160906345,-0.040209237486124,0.00024236318131443],[0.027257231995463,-0.02584120631218,-0.013482690788805],[-0.034677665680647,-0.016473094001412,0.0073257423937321]],[[-0.01490063033998,-0.0056737759150565,-0.02001147903502],[-0.0822634100914,-0.037350088357925,-0.090085156261921],[-0.0095547940582037,-0.027048325166106,-0.016609018668532]],[[0.049869060516357,0.0010477879550308,0.0091957943513989],[-0.081466846168041,-0.063418947160244,0.0031393594108522],[0.0060539888218045,-0.008015226572752,-0.018876934424043]],[[0.08103634417057,-0.10204833745956,0.017487188801169],[0.070954978466034,-0.099403381347656,0.0065272240899503],[-0.046942315995693,-0.095980040729046,0.030333941802382]],[[0.059341493993998,0.0077201789245009,-0.052409894764423],[-0.0073107327334583,0.03877941146493,0.0027552009560168],[-0.070759147405624,0.058803237974644,0.040083322674036]],[[-0.059840150177479,-0.010175187140703,0.017956025898457],[0.028841279447079,-0.0062875659205019,-0.0090284636244178],[0.0014014138141647,0.031292974948883,0.055427018553019]],[[-0.0087363990023732,-0.037869639694691,-0.043528947979212],[-0.041182700544596,-0.013164574280381,0.0672507584095],[0.028569225221872,-0.0012948079966009,-0.053389899432659]],[[0.012349423021078,0.062950119376183,0.049348600208759],[0.042449831962585,-0.031433925032616,0.02758246473968],[-0.02422521263361,0.034560956060886,0.082665108144283]],[[-0.0072022918611765,-0.054630696773529,0.040367610752583],[0.024787371978164,0.00033276423346251,-0.027101961895823],[-0.027093008160591,-0.020396567881107,-0.0011551722418517]],[[0.021958541125059,-0.034364569932222,-0.0045632147230208],[-0.052482541650534,0.029115367680788,-0.10068719089031],[-0.0032480815425515,0.058937180787325,-0.0068005239591002]],[[0.063772425055504,0.039316799491644,0.066943943500519],[-0.018431255593896,-0.044217795133591,0.0069619407877326],[-0.0073394561186433,-0.061529085040092,-0.029622847214341]],[[-0.024671135470271,0.005243381485343,-0.017602615058422],[-0.010485202074051,0.018362643197179,-0.11136696487665],[-0.046213179826736,-0.028715303167701,-0.034486051648855]],[[0.010991454124451,0.010756593197584,0.055064804852009],[-0.02744197845459,-0.011010523885489,0.014606596902013],[0.036449305713177,0.012599371373653,0.014582780189812]],[[-0.0072055510245264,0.019522005692124,-0.030177410691977],[0.026683555915952,0.12822824716568,0.08500574529171],[0.070939548313618,-0.0099159982055426,0.035083569586277]],[[0.0016327807679772,-0.059519443660975,0.027064630761743],[0.068382680416107,-0.047186981886625,0.044106151908636],[-0.089377485215664,0.026923004537821,-0.014752042479813]],[[-0.019681176170707,-0.059443037956953,0.030788077041507],[-0.025014227256179,-0.082397058606148,-0.010583456605673],[-0.12150490283966,-0.12258774787188,-0.10538690537214]],[[-0.015159228816628,0.027348728850484,0.011971117928624],[-0.017554335296154,-0.031866196542978,0.015026890672743],[0.018798233941197,0.021589105948806,0.011417058296502]],[[0.0072561297565699,0.010127345100045,-0.017010122537613],[0.060466758906841,0.080928638577461,-0.014401949942112],[0.030445029959083,-0.007511992007494,-0.041846960783005]],[[-0.01862077228725,0.035193383693695,0.07294650375843],[-0.0026455295737833,0.027770595625043,-0.058167543262243],[-0.01086157746613,0.0038450846914202,-0.0010687665781006]],[[0.086815625429153,0.045490425080061,-0.0021838650573045],[0.059526905417442,0.0030697635374963,0.058300171047449],[0.022748243063688,0.017568469047546,0.069848567247391]],[[0.054521333426237,-0.053725089877844,0.0017841544467956],[-0.038970626890659,0.0046299048699439,0.022219680249691],[-0.046964768320322,-0.014289071783423,0.006851474288851]],[[0.026221290230751,0.080699995160103,0.021859478205442],[-0.022138893604279,0.045043502002954,0.068305589258671],[0.05906405672431,-0.073270499706268,0.041473712772131]],[[0.015411314554513,0.020574005320668,0.066994346678257],[0.076501309871674,0.042007118463516,0.0057914154604077],[0.099381491541862,-0.018873149529099,-0.02528565749526]],[[0.039728779345751,0.013183801434934,0.0081414859741926],[0.025444682687521,-0.044933348894119,0.086403377354145],[0.0091995159164071,0.028392115607858,0.053420439362526]],[[0.063808172941208,0.071526952087879,0.087614946067333],[-0.036147639155388,0.049189474433661,0.033713944256306],[0.06906720250845,-0.041441962122917,0.0020585169550031]],[[-0.047941956669092,0.020406033843756,0.0063040913082659],[-0.088727593421936,0.014020126312971,-0.027749916538596],[-0.0070413164794445,-0.012721586972475,-0.044840935617685]],[[-0.063676483929157,0.039830230176449,-0.023861665278673],[-0.07490636408329,0.072760090231895,0.015692608430982],[0.0052146464586258,0.041179459542036,-0.0055098542943597]],[[-0.0093772644177079,-0.013229809701443,0.025334116071463],[0.032073646783829,0.064264081418514,-0.0027540936134756],[-0.026872355490923,0.0023085649590939,0.039230491966009]],[[-0.036273304373026,-0.016186779364944,-0.048129212111235],[0.014976484701037,-0.0074515654705465,0.0042933449149132],[0.0054919952526689,0.044515155255795,0.046046942472458]],[[0.0038615737576038,0.048653092235327,-0.090954385697842],[0.0075210160575807,0.0017105635488406,-0.021626247093081],[0.056390788406134,0.0043261088430882,0.01938808336854]],[[0.031459987163544,-0.0607022754848,0.013267273083329],[0.069072671234608,-0.044530611485243,-0.043831255286932],[0.012651144526899,0.035892646759748,0.078372687101364]],[[0.048906143754721,-0.02692955173552,-0.0037147917319089],[0.0076482091099024,0.024902168661356,0.053391095250845],[0.039236344397068,-0.030905226245522,0.076676055788994]],[[0.032340671867132,-0.034301850944757,0.0031429252121598],[-0.015370542183518,0.031409107148647,0.10508005321026],[-0.031749375164509,-0.04447678476572,0.0053929416462779]],[[0.0072700325399637,-0.038820546120405,0.06288306415081],[0.014286426827312,-0.050984129309654,0.055444333702326],[0.013092137873173,-0.077384531497955,0.021623969078064]],[[0.048178385943174,-0.014385282061994,-0.022510973736644],[0.038012523204088,0.029946815222502,-0.035024784505367],[-0.0033179800957441,-0.090492591261864,-0.043461363762617]],[[0.062130816280842,-0.015955895185471,0.02018790319562],[-0.0039195539429784,0.003632890060544,-0.0046795117668808],[-0.016730112954974,0.030340237542987,-0.074391834437847]],[[0.0062476880848408,0.019465064629912,0.081611432135105],[-0.016433661803603,-0.032607607543468,0.00088441284606233],[0.02905460074544,-0.04094697907567,0.087370216846466]],[[0.058898642659187,-0.082951754331589,0.086078785359859],[-0.0076262485235929,0.0065441997721791,0.057465612888336],[0.024234147742391,0.072196215391159,0.00098311481997371]],[[0.02293904311955,0.036830704659224,0.040731754153967],[0.0013656825758517,0.039424303919077,-0.029483569785953],[0.053523570299149,0.043294467031956,-0.018506780266762]],[[0.0025829386431724,0.023227464407682,-0.052699021995068],[0.069234102964401,-0.014992327429354,0.039384681731462],[0.044432517141104,-0.036237109452486,0.019134167581797]],[[0.057975348085165,0.014313905499876,0.010794905014336],[0.011808277107775,0.066465377807617,-0.019700724631548],[-0.0048426007851958,0.03203384205699,0.032142832875252]],[[0.043964419513941,-0.017501451075077,-0.0065655838698149],[0.015994103625417,0.055768445134163,-0.052761763334274],[0.024324174970388,-0.044621869921684,0.035595126450062]],[[0.057879902422428,-0.0091512119397521,-0.027126094326377],[0.013680882751942,-0.01790352538228,0.060915477573872],[-0.020828822627664,0.044440802186728,0.043845903128386]],[[0.037281055003405,0.035265654325485,-0.0104561727494],[-0.0031473806593567,-0.047484651207924,0.017585283145308],[0.016220957040787,-0.029346155002713,-0.022565819323063]],[[-0.059912901371717,-0.0027121142484248,-0.034721579402685],[0.022740827873349,0.010657660663128,0.0087081817910075],[0.047197632491589,-0.039087396115065,0.0050691096112132]],[[0.010068094357848,-0.0087860319763422,-0.018825959414244],[0.031617909669876,0.067530281841755,0.051169253885746],[0.058797158300877,0.096719600260258,-0.068668849766254]],[[-0.035335756838322,-0.033637993037701,0.033689118921757],[0.027604632079601,0.051431152969599,-0.07959671318531],[-0.029674669727683,0.042765587568283,-0.012655233964324]],[[-0.0094009563326836,0.0010657631792128,-0.024870337918401],[0.032061826437712,0.013745538890362,0.0356077067554],[0.073778092861176,0.037691108882427,-0.023440055549145]],[[-0.035563733428717,-0.086416199803352,-0.065163262188435],[-0.070461101830006,0.0029356109444052,0.013445627875626],[-0.060910951346159,-0.032307650893927,0.029002889990807]],[[0.0022945229429752,0.030916640534997,-0.027704499661922],[0.028000172227621,-0.058981563895941,0.00912478659302],[-0.0082309357821941,0.00093047902919352,-0.035349629819393]],[[-0.022002082318068,-0.044709946960211,0.046659104526043],[-0.031236236914992,0.03880638256669,0.028637129813433],[0.028450470417738,-0.043140325695276,0.036366544663906]],[[0.052645299583673,-0.023638341575861,0.02269478701055],[0.024977762252092,0.062666580080986,-0.037896763533354],[0.065039984881878,0.036321002990007,0.098958477377892]],[[0.065174907445908,-0.015424305573106,-0.051422592252493],[0.035187885165215,0.010284641757607,0.040070321410894],[-0.01871756836772,0.012349274009466,-0.039158713072538]],[[0.01087237149477,0.0301010645926,-0.044276099652052],[0.022579548880458,-0.0088920509442687,0.0014145551249385],[0.01495243050158,0.036535140126944,0.0096364598721266]],[[-0.0067106243222952,-0.053688328713179,-0.025792293250561],[0.0091116325929761,0.097114518284798,-0.007798277772963],[-0.084513507783413,-0.049258187413216,-0.032898426055908]],[[0.0093984911218286,0.034127555787563,0.068831190466881],[0.025012511759996,0.056377112865448,0.010330588556826],[-0.052867237478495,0.04941313713789,0.042574845254421]],[[-0.0094187557697296,0.0047600129619241,0.0092194816097617],[0.077180951833725,0.010095247998834,0.057831063866615],[0.055817876011133,0.046090137213469,0.01831709779799]],[[-0.010738343000412,-0.07273230701685,-0.0059735155664384],[-0.015549604780972,-0.045849721878767,-0.034489847719669],[-0.042924199253321,-0.049765273928642,-0.024161737412214]],[[0.048116646707058,0.043824966996908,-0.020757177844644],[-0.062627263367176,-0.048279978334904,0.091930821537971],[-0.044003028422594,0.00084886240074411,0.020794957876205]],[[0.0072353924624622,-0.046248462051153,0.0076272590085864],[0.020314458757639,0.013994882814586,0.039686966687441],[-0.01794464699924,0.045691542327404,-0.033310707658529]],[[0.07488626986742,-0.034209225326777,-0.038858868181705],[-0.0031314613297582,0.098452374339104,0.0027192328125238],[0.088369444012642,-0.025082133710384,0.14799854159355]],[[0.030519442632794,0.011515688151121,-0.029225340113044],[-0.015184512361884,-0.00096222257707268,0.021565498784184],[-0.011832640506327,0.078498877584934,-0.052269130945206]],[[-0.015310492366552,0.076664187014103,-0.023001041263342],[-0.039624866098166,-0.033421091735363,-0.0077968146651983],[-0.096159785985947,0.01449522562325,-0.071716792881489]],[[-0.047585468739271,0.028698498383164,-0.01641183719039],[-0.005080240778625,0.071922138333321,0.015911936759949],[0.058716185390949,-0.0011339901247993,0.088077045977116]],[[0.024351393803954,-0.035352230072021,-0.056640140712261],[0.059365328401327,0.02537377551198,-0.033039920032024],[-0.061087962239981,0.01858707331121,0.013623679988086]],[[-0.064847372472286,-0.039275031536818,-0.062781348824501],[0.03381335362792,-0.020711172372103,0.0013640359975398],[-0.026403957977891,-0.047335065901279,0.002936499658972]],[[-0.057864245027304,-0.0086702546104789,-0.030172120779753],[0.024476451799273,0.023789530619979,0.052335701882839],[0.01807364448905,-0.069797873497009,-0.056255377829075]],[[-0.0057435450144112,-0.029233587905765,-0.028076922520995],[-0.060501027852297,-0.046570476144552,-0.068528458476067],[0.072955675423145,-0.024915600195527,0.031248992308974]],[[0.0022434012498707,-0.034155886620283,0.056976918131113],[-0.046431161463261,0.0063312873244286,-0.096232198178768],[0.0010189877357334,-0.032861206680536,0.028977919369936]],[[-0.036604229360819,-0.082177765667439,-0.058106355369091],[0.018739907070994,-0.0071249138563871,0.022879222407937],[-0.0047858161851764,-0.037208147346973,-0.066915571689606]],[[-0.007655740249902,-0.024462716653943,-0.01988760381937],[0.017655532807112,0.035930637270212,0.045778907835484],[0.0110919540748,0.068946972489357,-0.029311530292034]],[[0.02656839415431,-0.08739610761404,-0.025554738938808],[-0.051428213715553,-0.041018594056368,0.00027741293888539],[0.024564057588577,-0.0038298019208014,-0.047547031193972]],[[-0.01582451350987,-0.0017592528602108,-0.04928432404995],[-0.016658611595631,0.058399587869644,0.0042963097803295],[-0.025784276425838,0.072061508893967,-0.049858666956425]],[[0.046897020190954,0.075855657458305,0.099265746772289],[0.0069726738147438,-0.022338517010212,0.053802993148565],[0.0078939395025373,0.021171579137444,0.10247696191072]],[[0.016558023169637,0.044393554329872,0.046207934617996],[-0.059389851987362,0.017322912812233,-0.036143492907286],[-0.0091413678601384,-0.026061510667205,0.039951097220182]],[[-0.010797220282257,-0.023009285330772,-0.02444844506681],[-0.065115347504616,0.031692676246166,-0.013918999582529],[0.0061075976118445,-0.0014087659073994,-0.042702484875917]],[[-0.010369051247835,-0.025823013857007,0.096808150410652],[-0.026190172880888,-0.058163296431303,-0.057163707911968],[-0.0023103200364858,-0.0045066806487739,-0.044929154217243]],[[-0.055806126445532,0.019199524074793,0.012232252396643],[0.060691088438034,-0.10628941655159,0.0002437042130623],[0.055806994438171,-0.025669382885098,0.05679028481245]],[[-0.011881043203175,0.041891243308783,-0.01558031141758],[0.034034535288811,0.048713471740484,0.026209371164441],[0.029120730236173,0.0042213359847665,0.0041272374801338]],[[-0.035965628921986,0.020934041589499,0.02570959366858],[0.014734295196831,0.001984556671232,-0.083692513406277],[0.023948652669787,-0.011846169829369,0.026982843875885]],[[0.0080233281478286,0.022744417190552,0.032345056533813],[0.045433472841978,0.040589939802885,0.0028148053679615],[-0.036060266196728,0.036386650055647,0.037073284387589]],[[0.014011699706316,0.0006490129744634,0.023429617285728],[0.047779012471437,0.036870025098324,-0.016641093418002],[-0.054480977356434,0.06134882196784,0.017437154427171]]],[[[0.027509169653058,0.030206119641662,0.00060219963779673],[0.0094283828511834,-0.020203942433,-0.034328568726778],[-0.033249441534281,-0.02619388513267,-0.0037065595388412]],[[0.053287982940674,0.00058360630646348,-0.0165692307055],[-0.019381770864129,-0.059094306081533,0.026525920256972],[-0.024152267724276,-0.0055214115418494,-0.019450206309557]],[[0.01621905900538,0.054331298917532,-0.050459247082472],[0.069967314600945,-0.016146916896105,0.012949079275131],[0.0605623498559,-0.074481070041656,-0.0076808049343526]],[[0.017867224290967,-0.021737556904554,0.029086278751493],[0.014172585681081,-0.011188670992851,-0.051722161471844],[0.010544707067311,-0.017656775191426,0.0041267611086369]],[[0.061536379158497,-0.014263772405684,0.055627625435591],[-0.06158747151494,-0.064055204391479,0.054778676480055],[-0.017130872234702,0.06330119818449,-0.012095873244107]],[[0.00066645670449361,0.037523869425058,-0.075675338506699],[0.004398126155138,-0.070861637592316,-0.0073655913583934],[0.029695529490709,0.035770386457443,-0.099260181188583]],[[-0.026078954339027,0.011016448028386,-0.02295963652432],[-0.028760420158505,-0.028103081509471,-0.022960333153605],[-0.0072306315414608,-0.013157877139747,-0.016327450051904]],[[0.015252160839736,-0.0085450215265155,0.018730934709311],[0.030638542026281,0.0089643690735102,0.036770723760128],[0.04563083127141,0.06107884645462,-0.0039023847784847]],[[-0.050899881869555,0.072007656097412,0.024684527888894],[-0.0023553518112749,0.0042391372844577,-0.052177526056767],[-0.062180452048779,0.057525150477886,0.038506221026182]],[[0.020334973931313,0.012082363478839,0.015886675566435],[0.040295708924532,0.0057923626154661,-0.0080423345789313],[-0.0010841549374163,0.025444436818361,-0.021418219432235]],[[-0.024362348020077,-0.010036698542535,0.036561027169228],[0.010343790054321,0.030491687357426,0.042380753904581],[0.079382725059986,0.060836356133223,-0.016426650807261]],[[-0.038371779024601,0.00057932222262025,0.11897519230843],[-0.015867192298174,0.0064020240679383,0.10660561174154],[-0.044757377356291,-0.025985201820731,-0.072256773710251]],[[0.067208342254162,0.013721570372581,-0.066153109073639],[-0.013085084035993,0.11068771034479,0.053535245358944],[0.047993205487728,0.034834899008274,0.048252135515213]],[[-0.031396009027958,0.013792968355119,-0.043553076684475],[0.017360456287861,-0.074617303907871,0.016457915306091],[0.081523142755032,0.02469621039927,-0.012909176759422]],[[0.027484487742186,-0.022734355181456,0.050488147884607],[-0.030861999839544,-0.031442619860172,0.0083613554015756],[-0.049826253205538,0.046503651887178,0.014340601861477]],[[0.0023622789885849,0.025906788185239,0.069188840687275],[-0.0384879745543,0.024097353219986,-0.038781583309174],[0.086895249783993,-0.02697472833097,0.017443602904677]],[[0.0033346328418702,0.026005491614342,-0.027580499649048],[0.050990864634514,0.064353518188,0.041879594326019],[0.028004754334688,-0.070144668221474,0.041741635650396]],[[0.02924813143909,0.066071234643459,-0.040285475552082],[-0.011367694474757,0.01966343075037,-0.0059567843563855],[-0.055467654019594,0.02302360907197,0.043088432401419]],[[0.042936611920595,-0.062001138925552,-0.058306630700827],[-0.032619819045067,-0.017726980149746,0.0017119647236541],[0.0080527765676379,0.050472799688578,-0.005778731778264]],[[0.097628690302372,0.02730461768806,0.02934954315424],[0.034627381712198,-0.029552910476923,-0.028969412669539],[0.027108618989587,0.11860650777817,0.019183892756701]],[[-0.0033399234525859,-0.021758873015642,-0.037234645336866],[-0.041029840707779,0.062081109732389,-0.0038967907894403],[0.04660988599062,0.01140408590436,-0.030775915831327]],[[-0.015487617813051,0.019684428349137,0.010817329399288],[0.072633184492588,0.06970888376236,-0.0094981677830219],[0.013035199604928,0.018874812871218,-0.052241157740355]],[[-0.026991909369826,0.05490355938673,-0.0029288984369487],[-0.045754354447126,0.04270238801837,-0.027546990662813],[-0.033219281584024,-0.042119491845369,-0.045038387179375]],[[0.07854175567627,0.028097059577703,-0.010881932452321],[0.0017980135744438,0.053864318877459,-0.017788099125028],[-0.064126960933208,-2.8252747142687e-05,0.053583439439535]],[[0.055203475058079,-0.023226449266076,0.042787414044142],[-0.022273300215602,-0.050353139638901,-0.011624289676547],[-0.050622053444386,-0.029621446505189,0.067556351423264]],[[-0.013093918561935,0.038191922008991,0.023327428847551],[-0.062399126589298,-0.054337341338396,0.012176832184196],[0.0044423579238355,-0.0060797780752182,-0.025520619004965]],[[-0.028816970065236,-0.030173854902387,0.013331746682525],[0.018363106995821,0.029036048799753,0.0078786984086037],[0.0089375078678131,0.062586292624474,-0.03601998090744]],[[0.0085466653108597,-0.0070364866405725,0.018881475552917],[-0.02454105950892,-0.013561960309744,-0.041566394269466],[0.066932789981365,-0.021739283576608,-0.00020799055346288]],[[0.083877004683018,-0.03342579677701,-0.01232719887048],[0.032642100006342,-0.0015596924349666,-0.01956300996244],[0.0061498750001192,0.026027219370008,0.098093144595623]],[[0.0047720205038786,0.061688147485256,0.047563653439283],[0.099780216813087,0.048741210252047,-0.007714977953583],[0.034132428467274,0.078680507838726,0.093154229223728]],[[-0.005262647755444,-0.01578619889915,-0.029471745714545],[-0.12027237564325,-0.050154644995928,0.0066794920712709],[-0.0084504475817084,0.05824901163578,0.0062478426843882]],[[0.037351377308369,0.0092950463294983,0.080670863389969],[0.026422902941704,0.057151533663273,0.10168828070164],[-0.029826566576958,0.05226293951273,-0.037349469959736]],[[0.049543142318726,0.063100837171078,0.010826905258],[0.040160838514566,0.044369887560606,0.012259440496564],[0.0015159178292379,0.086641050875187,0.0092393746599555]],[[-0.00070261483779177,0.050341732800007,-0.039091691374779],[0.072080798447132,0.029529612511396,0.078743360936642],[0.038673669099808,-0.015417118556798,-0.026587521657348]],[[-0.078616045415401,0.0083818128332496,-0.011540676467121],[0.0036602234467864,0.031849101185799,-0.014944466762245],[-0.031018923968077,-0.022607054561377,-0.025559030473232]],[[0.02656015753746,-0.019683130085468,-0.043470747768879],[-0.074968129396439,0.034670040011406,0.0054070120677352],[-0.0088017117232084,0.0032555088400841,0.0012183749349788]],[[0.12953895330429,0.013021462596953,0.025468604639173],[-0.010979604907334,-0.066696591675282,0.055074069648981],[0.01873155683279,0.020879182964563,-0.0088464645668864]],[[-0.0063311015255749,-0.062283907085657,-0.011414545588195],[0.14026662707329,-8.7783526396379e-05,0.034603212028742],[0.0024793122429401,-0.030908238142729,0.015875024721026]],[[-0.024620089679956,-0.0609210729599,-0.031063348054886],[0.016707815229893,-0.039117339998484,-0.01433087605983],[-0.052142333239317,0.016366209834814,0.070249646902084]],[[0.036299198865891,0.048102684319019,-0.0073802834376693],[-0.0016715981764719,-0.011679760180414,0.024515578523278],[0.033549908548594,0.014555002562702,0.070562601089478]],[[0.019654778763652,0.033651296049356,-0.0019730285275728],[0.019237499684095,-0.031538553535938,-0.014462439343333],[-0.031478583812714,0.054021995514631,0.013244202360511]],[[0.057946462184191,0.074827171862125,0.032443404197693],[0.031320340931416,0.017585802823305,0.044391348958015],[-0.027581820264459,0.026791859418154,0.023008530959487]],[[0.056025374680758,0.040103308856487,0.017622135579586],[0.092771500349045,-0.0047321491874754,-0.037913620471954],[-0.0066620125435293,0.081843160092831,0.04556730389595]],[[-0.017522403970361,0.0030934675596654,-0.030026556923985],[-0.044659875333309,0.030512476339936,0.0083511350676417],[-0.011099533177912,0.0071697924286127,-0.0035146293230355]],[[0.06495376676321,0.046189043670893,0.041736014187336],[0.0070780660025775,0.058498464524746,-0.039614960551262],[-0.044461257755756,-0.018747169524431,0.096195690333843]],[[0.041140977293253,-0.026330849155784,0.0056355302222073],[0.13757102191448,0.041804779320955,0.059769049286842],[0.060094948858023,0.066214576363564,-0.08835469186306]],[[0.031261011958122,-0.0040138796903193,-0.033107507973909],[0.023395085707307,-0.048305045813322,0.049551881849766],[-0.014775618910789,0.026426607742906,0.021304439753294]],[[-0.030331199988723,-0.041719194501638,-0.031424775719643],[0.0060759489424527,0.036819066852331,-0.0014869685983285],[0.010215278714895,0.034595847129822,-0.07543607801199]],[[0.045335318893194,0.049779482185841,0.019306724891067],[-0.022315707057714,-0.037925723940134,-0.0025022511836141],[-0.04384621232748,0.0045391796156764,0.051726069301367]],[[0.022157354280353,0.017996763810515,-0.053666405379772],[-0.023792296648026,0.044057197868824,0.09904845058918],[0.009373183362186,0.024462852627039,-0.03915723785758]],[[0.066569849848747,0.04208480194211,-0.085950896143913],[0.010872412472963,0.037046458572149,0.031938418745995],[-0.052526548504829,-0.013806373812258,-0.003032693406567]],[[-0.039877410978079,0.02478869445622,-0.012865277938545],[0.079447582364082,-0.0083735939115286,0.0055287173017859],[-0.012029910460114,0.016466954723001,-0.016837656497955]],[[-0.12761752307415,-0.034943301230669,-0.054472990334034],[0.02006478048861,-0.018744083121419,-0.048450350761414],[0.0042521194554865,0.015589661896229,0.03581316396594]],[[0.016241243109107,-0.0075964056886733,0.029935033991933],[0.024416921660304,-0.015241698361933,0.064199551939964],[0.034575629979372,-0.020832514390349,-0.017819354310632]],[[-0.0033165295608342,-0.029964245855808,0.01949810795486],[0.0061458633281291,0.007188627962023,-0.03493532538414],[0.0036237593740225,0.048766758292913,0.016420410946012]],[[-0.016351731494069,-0.017835754901171,-0.044707328081131],[0.12114564329386,0.059245493263006,0.025164194405079],[0.051146559417248,0.0099849896505475,-0.019511492922902]],[[0.031858209520578,0.046851251274347,-0.010114092379808],[-0.031038757413626,0.043530732393265,0.0036091555375606],[0.049925643950701,0.035631164908409,0.029289135709405]],[[0.048642672598362,-0.0062571875751019,-0.042090870440006],[0.032189313322306,-0.03800904750824,-0.091372974216938],[0.050703421235085,-0.020745320245624,-0.032313790172338]],[[0.11337307095528,0.082354329526424,0.097804017364979],[0.012915509752929,-0.079906113445759,-0.06765279173851],[0.084073081612587,0.1711927652359,0.071835041046143]],[[0.035442166030407,0.014556428417563,0.023959245532751],[-0.091957680881023,0.098598904907703,0.018724851310253],[0.027142470702529,0.04023140668869,-0.014267549850047]],[[0.03454539552331,0.033889852464199,0.059331092983484],[0.01461342535913,-0.020119499415159,0.011884466744959],[-0.011335165239871,0.046253371983767,0.0086911786347628]],[[-0.073009245097637,-0.047876246273518,-0.018250353634357],[0.031888525933027,-0.032575014978647,-0.027519619092345],[-0.059627439826727,-0.022550484165549,-0.0072335675358772]],[[0.10093744844198,0.099706642329693,0.063992783427238],[-0.093686982989311,0.054077234119177,-0.0048557496629655],[0.062551185488701,0.053838893771172,0.11655551940203]],[[-0.062597505748272,-0.0046040844172239,-0.014487431384623],[-0.03267328441143,0.018747791647911,-0.0070332833565772],[0.075054362416267,0.072125770151615,0.063082970678806]],[[0.034436408430338,0.023806257173419,-0.0077676889486611],[-0.058702267706394,-0.071753442287445,-0.052531853318214],[0.011200535111129,-0.014800273813307,0.0033273319713771]],[[-0.034735359251499,-0.007012749556452,-0.015686772763729],[0.015015549957752,0.070047438144684,0.040877901017666],[0.0058331871405244,0.024062465876341,0.088726624846458]],[[-0.017641980201006,-0.074338391423225,-0.051634714007378],[0.023859892040491,0.014894644729793,-0.0031842384487391],[-0.012072532437742,-0.050827920436859,0.019709350541234]],[[-0.026460692286491,-0.04083800688386,0.014940172433853],[-0.0026971339248121,-0.015684386715293,-0.05596774071455],[0.018818022683263,-0.058318242430687,0.054769948124886]],[[0.030916016548872,0.053361639380455,-0.0088263610377908],[-0.025213662534952,0.038060262799263,0.060175064951181],[0.10418279469013,0.030339723452926,-0.024664869531989]],[[-0.039029270410538,0.091134779155254,0.085713267326355],[0.029057756066322,0.052169442176819,0.050151772797108],[-0.062203276902437,0.0070442506112158,-0.052193060517311]],[[0.10028220713139,-0.014818698167801,0.018624944612384],[0.077138818800449,0.060658853501081,0.0024372865445912],[0.057913444936275,0.084852620959282,0.063529700040817]],[[0.019405778497458,0.06033693253994,0.049156557768583],[-0.0017326575471088,0.034765426069498,-0.019156947731972],[-0.0093266563490033,-0.025904064998031,-0.0090286936610937]],[[-0.056483291089535,-0.0085908928886056,0.062903344631195],[0.034564927220345,0.025369625538588,-0.016382396221161],[-0.038865201175213,-0.032965153455734,0.014914338476956]],[[0.0024647898972034,0.018966685980558,0.019132459536195],[-0.013829842209816,-0.047981854528189,-0.0025507602840662],[-0.014153426513076,-0.086046352982521,-0.0050187730230391]],[[-0.046174190938473,0.028507668524981,0.027569932863116],[0.073401518166065,0.046413950622082,0.033292531967163],[0.012407130561769,-0.041288759559393,0.090468607842922]],[[0.058807838708162,0.045053947716951,-0.054659061133862],[0.040176682174206,-0.064673759043217,0.01608837582171],[0.037216920405626,-0.048523850739002,-0.064941942691803]],[[-0.04010421410203,-0.034107927232981,0.023213099688292],[-0.0033490960486233,0.045114561915398,0.013369712978601],[-0.031721711158752,0.012192429974675,0.063352778553963]],[[0.027611721307039,-0.024759979918599,0.014396579936147],[-0.0015449530910701,0.052333984524012,0.053482197225094],[0.047656357288361,0.061263561248779,0.083719730377197]],[[-0.078952349722385,-0.031091684475541,-0.095095828175545],[0.083354882895947,0.059157617390156,-0.029902929440141],[-0.052377842366695,-0.014267574995756,-0.036935321986675]],[[0.0078080995008349,0.013749361038208,-0.057985324412584],[-0.033903650939465,-0.026253530755639,0.016217444092035],[0.0077509810216725,-0.021109245717525,-0.023352516815066]],[[0.010610109195113,0.0021262429654598,0.025966573506594],[0.039874374866486,-0.013504470698535,-0.074454069137573],[0.016496231779456,-0.011416246183217,-0.034403461962938]],[[-0.014603246934712,0.046722412109375,-0.0019069656264037],[0.022771257907152,0.035351518541574,0.017556544393301],[-0.021630864590406,0.0091595808044076,0.066674210131168]],[[-0.12823325395584,-0.069638907909393,-0.019057812169194],[-0.017352847382426,0.014013172127306,0.0035711394157261],[0.018366504460573,0.00017495213251095,0.0030977476853877]],[[0.10487499088049,0.058835458010435,0.011287524364889],[0.032607033848763,-0.018399612978101,-0.048527561128139],[0.02875730022788,0.0063997805118561,-0.0099535323679447]],[[0.063877366483212,-0.01698424294591,0.021002564579248],[-0.023291688412428,-0.01784604601562,0.047930680215359],[0.038395639508963,-0.0088184615597129,-0.012417843565345]],[[0.032206062227488,-0.011596959084272,0.045476850122213],[0.0024465911556035,-0.025834262371063,0.084887519478798],[-0.045135803520679,0.04717680066824,0.0071444427594543]],[[-0.037609618157148,0.064681075513363,-0.058367237448692],[0.01655750721693,0.023889636620879,-0.039626158773899],[0.0061697391793132,-0.019699582830071,0.064977310597897]],[[7.6000378612662e-07,-0.023372435942292,-0.051078911870718],[0.10828128457069,-0.023521538823843,-0.034234706312418],[0.056793097406626,-0.078433655202389,-0.0075489436276257]],[[0.02146883495152,0.019857503473759,-0.012730911374092],[0.01053349673748,-0.056609313935041,0.071996591985226],[0.0094862151890993,0.083293229341507,-0.022753458470106]],[[0.044515572488308,0.014157149940729,-0.085553526878357],[0.074657514691353,-0.017590008676052,0.0051817549392581],[-0.020999601110816,0.043228335678577,-0.0027255699969828]],[[0.056027218699455,0.026495849713683,0.042113646864891],[0.053465146571398,0.027666809037328,0.012033712118864],[-0.046874541789293,-0.066215351223946,-0.027122430503368]],[[0.02973772957921,-0.029540609568357,0.021036349236965],[-0.020803244784474,-0.028815966099501,0.0088610667735338],[-0.007075231987983,0.040090277791023,-0.034592762589455]],[[-0.019741624593735,0.063404969871044,0.023191029205918],[-0.008365529589355,-0.0073247556574643,-0.033989038318396],[0.062602013349533,-0.013413543812931,0.0082355439662933]],[[0.056163221597672,-0.03071222640574,-0.060417074710131],[-0.042701222002506,-0.021400174126029,0.0042196726426482],[-0.093011550605297,0.038328554481268,0.02616024762392]],[[-0.016975516453385,0.016508765518665,-0.028186732903123],[0.016874162480235,-0.020670097321272,0.033723596483469],[0.062011074274778,0.020015740767121,-0.010182498954237]],[[-0.048704136162996,-0.060501113533974,-0.051054123789072],[0.13054695725441,0.074735909700394,-0.0010123933898285],[-0.0065448475070298,-0.016807412728667,-0.069532386958599]],[[-0.033369243144989,0.03078880533576,-0.044781014323235],[0.027229312807322,0.011862535960972,-0.015411648899317],[-0.0075720832683146,0.021683206781745,0.043124128133059]],[[0.029666747897863,0.0035771229304373,-0.029477741569281],[0.018549188971519,-0.03027268871665,0.039679534733295],[0.018472889438272,0.022765647619963,0.089276947081089]],[[0.00010927970288321,-0.060272954404354,0.064408726990223],[0.099023789167404,0.056041732430458,-0.024220049381256],[-0.019533012062311,0.035756323486567,-0.005579779855907]],[[0.02486602589488,0.015256810002029,0.025896517559886],[-0.016574488952756,-0.022910948842764,-0.020255198702216],[-0.0067890798673034,-0.04165231063962,0.027897551655769]],[[0.04937269538641,-0.024470651522279,0.028254272416234],[0.0029940046370029,-0.04545982927084,-0.026543298736215],[-0.025095466524363,-0.0035839108750224,-0.054257217794657]],[[0.0078545976430178,-0.057191856205463,0.015076791867614],[-0.043744523078203,-0.028626607730985,0.048764493316412],[-0.04181769862771,-0.062579862773418,-0.058052033185959]],[[0.051918171346188,0.023143094033003,0.026272689923644],[-0.045749202370644,0.051408402621746,-0.069524854421616],[0.03547403588891,-0.0095201749354601,0.034193530678749]],[[-0.04000922665,-0.02747561968863,0.018561497330666],[0.015501025132835,0.020467318594456,0.061353828758001],[-0.057578731328249,-0.020730786025524,-0.059225175529718]],[[0.055167257785797,0.042990021407604,0.054523792117834],[-0.0012298853835091,0.0083932662382722,0.11958939582109],[-0.083963334560394,0.0050104451365769,0.04866898432374]],[[-0.026788299903274,-0.064142465591431,0.020605031400919],[0.058474615216255,-0.048829738050699,-0.019490780308843],[0.067866735160351,-0.06343100219965,-0.037018284201622]],[[0.01457620318979,-0.045019902288914,-0.024623991921544],[0.033764313906431,0.036523781716824,0.028546830639243],[0.066062174737453,0.024551577866077,0.037302900105715]],[[0.013350059278309,-0.025471104308963,-0.016556531190872],[-0.0045084939338267,0.024358401075006,-0.007652394939214],[0.021589590236545,0.033299755305052,-0.0014811758883297]],[[-0.042217507958412,-0.036068823188543,-0.031694464385509],[-0.0013536112383008,-0.043783940374851,-0.0055931457318366],[0.016503248363733,0.041593655943871,-0.029724910855293]],[[0.004602381028235,0.017706710845232,-0.086819469928741],[0.099831998348236,-0.010940533131361,-0.046380870044231],[-0.055110037326813,0.016114767640829,-0.077822349965572]],[[0.009078748524189,-0.034508183598518,0.035771440714598],[-0.048229467123747,0.015362384729087,-0.07633675634861],[0.016973312944174,-0.00092449033400044,0.050546936690807]],[[-0.019909683614969,-0.010144405066967,0.035094261169434],[-0.054291792213917,-0.075712136924267,-0.016183018684387],[-0.04155183210969,-0.000579415820539,0.038879968225956]],[[-0.066196978092194,0.0071617099456489,-0.0098480386659503],[-0.050385527312756,-0.10878809541464,0.056107185781002],[-0.012190109118819,0.018836092203856,-0.00053291645599529]],[[-0.017568530514836,-0.013608953915536,-0.070532321929932],[0.073996938765049,-0.10000893473625,0.11603619903326],[-0.007362874224782,0.0030819431412965,-0.021215625107288]],[[-0.040752418339252,-0.094167925417423,0.0054504536092281],[0.031366806477308,0.056341025978327,0.064705327153206],[0.13815103471279,0.055043812841177,0.071857199072838]],[[-0.0051160943694413,-0.019284728914499,-0.036646578460932],[0.043905951082706,0.076509781181812,-0.013239427469671],[0.033811707049608,-0.036232605576515,0.033954948186874]],[[0.022836249321699,0.0024223295040429,-0.032841481268406],[-0.0024484465830028,0.019197320565581,-0.044252924621105],[0.056231416761875,0.022138690575957,-0.001796787371859]],[[-0.01821806281805,0.0053608911111951,0.00057770335115492],[0.069631896913052,-0.00087879277998582,0.033849012106657],[-0.033567972481251,0.074149586260319,-0.023388281464577]],[[-0.016140177845955,-0.029441175982356,-0.026263019070029],[-0.017955200746655,0.036058507859707,-0.037353977560997],[-0.024052271619439,0.038055952638388,-0.060250379145145]],[[-0.012117264792323,0.004957368131727,-0.002551132813096],[0.043316967785358,-0.061195015907288,0.048198629170656],[0.063041619956493,0.099735900759697,0.064992509782314]],[[-0.010993137955666,0.033802457153797,0.021413806825876],[0.014777277596295,-0.032625399529934,-0.059210572391748],[-0.044590033590794,0.0034492753911763,-0.010218381881714]],[[-0.041423805058002,0.026261020451784,0.0064316210336983],[0.014038676396012,0.030706869438291,-0.040750049054623],[0.019437482580543,-0.0052905837073922,-0.029312133789062]],[[0.053751073777676,0.010890137404203,0.055782061070204],[-0.04199006408453,0.013302890583873,-0.009083854034543],[-0.012548137456179,-0.02589713409543,-0.0076144640333951]],[[-0.015149993821979,-0.015877334401011,0.019449463114142],[0.0047173742204905,-0.0043357638642192,-0.046342808753252],[-0.022236021235585,0.002214245731011,0.061987031251192]],[[-0.041851714253426,-0.04471019282937,0.051802817732096],[0.056952271610498,-0.010363342240453,-0.018907969817519],[-0.028229711577296,-0.04020481929183,0.038653790950775]],[[0.045689802616835,-0.00095102825434878,-0.052744809538126],[-0.019767425954342,-0.031950481235981,-0.042853005230427],[0.061153884977102,0.001497101970017,-0.049386437982321]],[[-0.0052625723183155,-0.027179466560483,-0.0074656456708908],[0.047217208892107,0.01482848264277,0.012416413985193],[0.0018208600813523,0.03253423795104,0.030991237610579]],[[-0.046003255993128,0.046405706554651,0.00060688331723213],[0.069932334125042,-0.0040842955932021,0.028769781813025],[-0.028752334415913,-0.017826251685619,0.044971108436584]]],[[[0.012553700245917,0.0010812849504873,-0.032811760902405],[0.024589886888862,-0.00088654988212511,0.044581521302462],[-0.031748056411743,0.0060296873562038,-0.044492710381746]],[[0.0010984322289005,-0.060083951801062,-0.037361472845078],[0.019842749461532,0.030184185132384,0.026573983952403],[0.038304574787617,0.018091659992933,-0.00088537472765893]],[[0.026288976892829,-0.017231585457921,0.03340657055378],[-0.00017086644947995,-0.016553334891796,-0.00094386062119156],[0.013529156334698,0.0086065819486976,0.037910878658295]],[[0.024950524792075,-0.0051673837006092,-0.027921190485358],[-0.04395979642868,0.0043098530732095,0.045685332268476],[-0.0096804760396481,0.047894854098558,0.016328070312738]],[[0.073128119111061,-0.010995890013874,0.0091047631576657],[-0.034443903714418,0.036489617079496,0.01331330742687],[-0.016779968515038,-0.0069862939417362,0.023533787578344]],[[-0.10399779677391,-0.0061009260825813,-0.050532292574644],[-0.038890168070793,0.016447758302093,0.020329087972641],[-0.11345419287682,0.054842665791512,-0.01603227853775]],[[0.012240633368492,-0.047404538840055,0.085659086704254],[-0.083638601005077,0.05274997651577,-0.0038624526932836],[-0.00070528825744987,-0.0059162769466639,-0.0055703422985971]],[[-0.046949591487646,-0.086566805839539,0.061540342867374],[0.10577550530434,0.0093240346759558,0.015095206908882],[-0.037704158574343,-0.0043638446368277,0.0073306802660227]],[[-0.046050526201725,-0.060879766941071,-0.027132228016853],[-0.0081931799650192,0.020026683807373,0.002870457014069],[-0.033105589449406,-0.063290633261204,-0.029038989916444]],[[-0.035928383469582,-0.0015023314626887,-0.00248944433406],[0.058371692895889,0.0046396595425904,0.020673720166087],[-0.031836103647947,0.017597917467356,0.049103654921055]],[[-0.013161369599402,-0.039688851684332,0.024028286337852],[-0.026481563225389,-0.062073387205601,-0.028218498453498],[0.003627268364653,-0.063290886580944,0.062806494534016]],[[0.068446107208729,0.035547759383917,0.026339668780565],[0.010208262130618,-0.063807658851147,-0.017948042601347],[-0.077668517827988,-0.026973500847816,0.045559793710709]],[[0.088711075484753,0.031803593039513,0.040603172034025],[0.0083419596776366,-0.045348942279816,-0.038238566368818],[-0.0083118993788958,-0.070195764303207,-0.059980366379023]],[[-0.069813691079617,0.043854970484972,-0.012772463262081],[0.069472961127758,-0.029064076021314,-0.034423943608999],[-0.054234355688095,-0.016500432044268,-0.00066634162794799]],[[-0.011648117564619,0.019327649846673,-0.066449448466301],[-0.064515754580498,-0.050204534083605,0.083940714597702],[0.012495300732553,0.052686754614115,-0.0090855378657579]],[[0.033975824713707,0.020135294646025,0.01454053632915],[0.043289329856634,-0.015528370626271,-0.033125590533018],[-0.052833013236523,0.01161365583539,-0.087268449366093]],[[-0.0044671669602394,-0.0019624368287623,-0.00059492251602933],[0.039529573172331,-0.029786940664053,-0.010864359326661],[0.044737935066223,0.0088445516303182,0.049746036529541]],[[-0.015388643369079,-0.032911084592342,-0.042500253766775],[0.020247569307685,-0.046709563583136,0.017977623268962],[-0.018051305785775,-0.0012845185119659,-0.056809172034264]],[[-0.044719148427248,0.018431834876537,0.023443948477507],[0.04487594217062,-0.028747050091624,0.015583708882332],[0.064818166196346,0.047186650335789,0.025223940610886]],[[-0.023499993607402,-0.084786295890808,-0.010891011916101],[0.0010716313263401,-0.049813389778137,0.066721208393574],[0.062410570681095,-0.025318890810013,0.00094544049352407]],[[-0.04733818769455,0.0054356134496629,0.11330403387547],[-0.0060483664274216,-0.020379673689604,-0.0082379635423422],[0.069287195801735,0.010614832863212,0.022020559757948]],[[0.0087466444820166,0.01698680408299,0.079877324402332],[0.053603246808052,-0.0010358588770032,0.0073376884683967],[0.00076236785389483,-0.020008826628327,0.0092060742899776]],[[-0.041609171777964,0.06405633687973,0.028806431218982],[0.015300491824746,-0.017685415223241,-0.006810124963522],[-0.031584870070219,-0.062190141528845,-0.020218586549163]],[[0.059316568076611,0.043994721025229,0.059702567756176],[0.06907793879509,-0.0038913113530725,0.071675799787045],[-0.022704496979713,-0.046488888561726,-0.015324800275266]],[[0.001843610429205,0.03838799521327,-0.021107679232955],[0.011463389731944,0.043684605509043,0.01062161847949],[0.0020983333233744,0.042465720325708,-0.035389617085457]],[[0.077976055443287,-0.031673684716225,0.030471287667751],[-0.057128697633743,-0.018973264843225,-0.011611267924309],[-0.092983312904835,-0.066365197300911,0.074967175722122]],[[0.0097718955948949,-0.058369047939777,-0.0055498029105365],[0.0029642300214618,-0.018582670018077,0.043100453913212],[-0.052428983151913,0.081587307155132,0.070402637124062]],[[-0.12268149107695,-0.0504798181355,0.056142117828131],[0.063783429563046,-0.035377778112888,-0.051521755754948],[-0.00052627304103225,0.01808575540781,-0.025614412501454]],[[0.0092325545847416,0.010490971617401,-0.042261783033609],[-0.018916370347142,0.00010651443881216,0.064603440463543],[0.0065402588807046,0.006970576941967,-0.010239866562188]],[[-0.031499139964581,0.047586109489202,0.063894607126713],[-0.053281057626009,0.0064843823201954,0.036449212580919],[0.028890497982502,-0.028048444539309,0.029186800122261]],[[0.023166066035628,0.049287535250187,0.02532765828073],[-0.04962420463562,0.035976581275463,0.023314544931054],[-0.093974307179451,-0.06726898252964,0.043363984674215]],[[0.054205823689699,0.079395860433578,0.020744560286403],[0.007940866984427,-0.012541049160063,-0.048100855201483],[-0.01108343526721,0.039852850139141,-0.079295873641968]],[[0.0009706913260743,-0.02592889405787,0.051445424556732],[0.070117257535458,0.035290867090225,-0.055601228028536],[-0.028371201828122,-0.068208761513233,0.0052233557216823]],[[-0.089070156216621,0.037221919745207,0.067533880472183],[-0.016959559172392,0.027829278260469,-0.017762783914804],[-0.032383881509304,0.0054779727943242,0.014175680465996]],[[0.045576542615891,0.040331769734621,0.030754903331399],[0.052093561738729,0.039617396891117,-0.076344549655914],[0.068658657371998,0.021770061925054,-0.01749318651855]],[[-0.0047703343443573,-0.0097387880086899,0.036685016006231],[-0.0021645550150424,-0.0094809159636497,-0.044987518340349],[-0.059797216206789,-0.052897956222296,0.066218085587025]],[[-0.0393789075315,0.010178592987359,0.032932136207819],[0.015092812478542,-0.049732312560081,-0.013934960588813],[-0.072374135255814,-0.043095663189888,-0.0046413452364504]],[[0.015483882278204,-0.028051327914,0.050328012555838],[0.065677486360073,-0.039536885917187,0.0018162220949307],[0.00040603120578453,-0.049251891672611,-0.086507953703403]],[[0.013859283179045,-0.014599962159991,-0.082054562866688],[-0.0065561477094889,0.021951176226139,0.014250804670155],[0.021467324346304,-0.092446655035019,0.048823844641447]],[[0.021877218037844,-0.00096548825968057,0.039545956999063],[-0.065266482532024,-0.0055496590211987,0.020735865458846],[-0.019238315522671,0.056097541004419,0.069173067808151]],[[-0.085938915610313,-0.037018731236458,-0.012078954838216],[-0.024894662201405,-0.045779440551996,0.052644710987806],[0.034823302179575,0.056300677359104,0.022437546402216]],[[0.010485909879208,0.025265036150813,0.019141180440784],[-0.0055877636186779,-0.036476325243711,0.015013976953924],[0.011742325499654,0.02873433381319,-0.021150428801775]],[[0.021823547780514,-0.062469761818647,-0.011283001862466],[0.018253952264786,-0.018272096291184,-0.0051048472523689],[-0.0030564004555345,0.044002339243889,0.070414640009403]],[[0.058377604931593,-0.025662735104561,-0.089322060346603],[-0.057571232318878,-0.079262666404247,-0.04686226323247],[-0.049122005701065,0.0035565427970141,-0.053552020341158]],[[0.022485544905066,-0.098497159779072,0.0044929767027497],[-0.071014098823071,-0.029658818617463,0.063555814325809],[0.023910228163004,0.00094357086345553,-0.014087157323956]],[[0.043681666254997,0.16228958964348,0.034300781786442],[-0.0081881349906325,0.019450563937426,0.025261625647545],[-0.043374929577112,-0.049348827451468,-0.018458982929587]],[[0.030602250248194,-0.041134156286716,0.036600150167942],[0.099281065165997,-0.0054658860899508,-0.010926436632872],[0.097599171102047,0.13412861526012,-0.012175994925201]],[[-0.075648047029972,-0.015104045160115,-0.07279048115015],[-0.11730909347534,-0.015176800079644,-0.023488201200962],[-0.0061059421859682,-0.012505288235843,0.0033595163840801]],[[-0.052501104772091,0.01956682652235,0.036108713597059],[-0.011488686315715,0.035737667232752,0.0063726045191288],[0.035971041768789,0.020315539091825,-0.049514327198267]],[[0.029343890026212,0.013920601457357,0.084286414086819],[0.078785754740238,-0.037212930619717,0.026603342965245],[-0.030324842780828,-0.0056236619129777,-0.033669397234917]],[[-0.014768523164093,-0.044682078063488,-0.055436812341213],[0.0030148939695209,0.032856926321983,0.038049563765526],[0.0363351367414,0.086372666060925,0.023859802633524]],[[-0.086512729525566,0.032563574612141,-0.057841327041388],[-0.011272887699306,-0.068471401929855,-0.017938662320375],[0.052606396377087,0.0097056906670332,0.047074291855097]],[[-0.041582759469748,0.0244907643646,-0.0060673016123474],[0.040251467376947,0.034151963889599,-0.042849633842707],[0.027461348101497,9.6463765657973e-05,-0.051107492297888]],[[-0.036326486617327,-0.063218504190445,0.0032929056324065],[-0.0077416943386197,-0.030439838767052,-0.057149056345224],[-0.03680033609271,-0.0072935461066663,0.015563545748591]],[[0.052500110119581,-0.028338035568595,-0.022325670346618],[-0.019013335928321,0.046870999038219,0.048033233731985],[-0.004535224288702,-0.033172473311424,-0.023582009598613]],[[0.076699376106262,-0.023570436984301,-0.0068089817650616],[0.035836298018694,-0.013355025090277,0.057345770299435],[0.038883179426193,-0.03164703771472,0.091093771159649]],[[-0.00018737446225714,0.032709185034037,0.024324081838131],[-0.03094227053225,-0.071229688823223,-0.00023040165251587],[0.027157774195075,-0.036063499748707,0.051315244287252]],[[-0.0083826053887606,0.06911239027977,-0.013082761317492],[-0.050799272954464,0.035408232361078,-0.029478803277016],[0.056862689554691,0.0020920529495925,0.086931295692921]],[[0.056843381375074,0.014491914771497,0.043293818831444],[-0.043562110513449,-0.027112036943436,-0.024271987378597],[0.033387470990419,-0.083648681640625,0.033003997057676]],[[0.059620007872581,0.066968180239201,-0.016634186729789],[-0.027521401643753,-0.034773729741573,0.067299969494343],[0.01104168407619,0.094302542507648,-0.096665449440479]],[[0.010079899802804,-0.047427073121071,0.0575314424932],[0.021932583302259,0.006124067120254,-0.03391171246767],[0.018534954637289,0.055265173316002,0.014739564619958]],[[-0.03119776956737,-0.069307014346123,0.017447022721171],[0.011946668848395,-0.0095017300918698,-0.016196357086301],[-0.0027515103574842,-0.057387743145227,-0.028425818309188]],[[-0.031296201050282,0.039522461593151,-0.13872845470905],[-0.051238048821688,0.035804733633995,0.013926364481449],[-0.04524552449584,-0.098224014043808,0.0039226743392646]],[[0.013490349985659,-0.052229046821594,0.07319038361311],[0.023054134100676,-0.034655883908272,-0.016759898513556],[-0.10598443448544,0.066167145967484,-0.084001503884792]],[[0.095744326710701,0.01302320882678,-0.010458488948643],[-0.036308638751507,-0.054423909634352,0.091830737888813],[-0.026059729978442,0.0021762880496681,-0.013861267827451]],[[0.032608132809401,0.0023778153117746,0.015781989321113],[-0.035114906728268,0.0090328250080347,0.012864467687905],[0.088982418179512,-0.038505051285028,-0.0065382472239435]],[[-0.06431533396244,0.042530406266451,-0.010360902175307],[0.078511662781239,0.047797068953514,0.038206938654184],[-0.0068377396091819,0.0092565529048443,0.030065599828959]],[[0.030485978350043,-0.047728020697832,0.012629065662622],[0.0092103201895952,0.024132950231433,0.011185114271939],[-0.020618006587029,0.033833533525467,-0.058853253722191]],[[-0.019819954410195,-0.030806878581643,-0.0089734122157097],[0.083161234855652,0.071442246437073,0.014571212232113],[0.041326474398375,-0.020514847710729,0.026737196370959]],[[0.030979219824076,-0.00066506391158327,0.046166632324457],[-0.038149006664753,0.010559938848019,0.01812606677413],[0.073609255254269,0.026168400421739,-0.022128853946924]],[[-0.010037966072559,0.010280659422278,-0.043781209737062],[0.024325590580702,-0.024941513314843,0.0070350267924368],[-0.054236643016338,-0.021037397906184,0.014792480506003]],[[-0.047504886984825,-0.062533393502235,0.04204561188817],[-0.020289845764637,-0.032946012914181,-0.027721541002393],[0.019242957234383,-0.023848066106439,0.006765881087631]],[[0.031855743378401,-0.092399835586548,0.027246110141277],[0.0084104612469673,-0.075466901063919,0.0063748424872756],[0.025476040318608,-0.027801832184196,-0.058942444622517]],[[0.053327452391386,-0.022136975079775,-0.010055065155029],[-0.077666960656643,0.0069729844108224,0.054356437176466],[-0.012174163945019,-0.070776745676994,-0.013757870532572]],[[-0.0567337423563,-0.012246181257069,-0.0064244237728417],[0.047857593744993,0.060587808489799,0.011177937500179],[-0.071566052734852,0.0022619755472988,0.0082058971747756]],[[0.019799709320068,-0.060358591377735,0.010514097288251],[-0.014162831008434,-0.030118612572551,-0.011321570724249],[0.0035056010819972,0.010753566399217,0.0077909384854138]],[[0.00023986193991732,-0.075017437338829,-0.056489422917366],[0.039978388696909,0.01624645665288,0.023628912866116],[-0.059453744441271,-0.00720135262236,-0.047411851584911]],[[0.019723452627659,-0.013295218348503,-0.0033546725753695],[-0.0059456848539412,-0.0016752437222749,0.017299329861999],[0.0066885682754219,-0.013831912539899,-0.0096670277416706]],[[0.019293079152703,-0.061371814459562,-0.089731425046921],[-0.025565460324287,0.011231893673539,-0.034724425524473],[-0.053087584674358,0.001868020510301,-0.031922161579132]],[[0.083018444478512,-0.06968579441309,0.02225905098021],[0.0020353246945888,-0.010128328576684,0.05146286636591],[0.055360171943903,0.015302409417927,-0.065958715975285]],[[0.00038275413680822,-0.023821245878935,0.0029760049656034],[-0.063140034675598,0.06164176762104,0.011979502625763],[-0.050204582512379,-0.019146371632814,-0.037401136010885]],[[-0.0068232552148402,0.028643241152167,0.0081973653286695],[0.049621194601059,0.030211897566915,-0.025166699662805],[0.062386881560087,0.036608785390854,0.034335002303123]],[[0.038960117846727,0.034311790019274,0.0097895674407482],[0.025705143809319,0.017056377604604,0.027830196544528],[0.077846392989159,-0.040288992226124,-0.028609180822968]],[[0.043541669845581,-0.040341451764107,0.079319439828396],[-0.031759783625603,0.014955651946366,-0.010920306667686],[-0.049315068870783,-0.0041518951766193,-0.0049878279678524]],[[0.050004601478577,-0.0092831533402205,0.019965052604675],[0.025533368811011,-0.044742628931999,0.00063459819648415],[-0.00067491072695702,-0.0024089619982988,-0.069185048341751]],[[0.00925263017416,-0.029964838176966,-0.016156697645783],[-0.0024237595498562,0.051590010523796,-0.01597555167973],[-0.0019185210112482,0.039097055792809,0.02702646329999]],[[-0.040185052901506,0.011450065299869,0.057089049369097],[-0.0014762140344828,0.023427218198776,-0.022799205034971],[-0.015517809428275,0.065630398690701,-0.078848123550415]],[[0.010281701572239,-0.034250903874636,-0.050355762243271],[0.017431732267141,0.050992585718632,-0.055071331560612],[0.09256324917078,-0.016418039798737,0.0020654785912484]],[[-0.0059096948243678,-0.074593126773834,0.036891933530569],[0.025712966918945,-0.001974465791136,-0.045758221298456],[-0.0085427854210138,-0.042637098580599,0.0081475265324116]],[[-0.10909616202116,0.0096051692962646,0.019183352589607],[-0.037160508334637,0.0050144190900028,0.059737619012594],[0.060602802783251,-0.028905555605888,0.10784042626619]],[[0.0054891728796065,0.025769736617804,-0.0076711736619473],[0.00054721400374547,-0.028150629252195,0.060483269393444],[-0.0068350215442479,-0.041640188544989,0.018505711108446]],[[0.011386042460799,-0.0081694927066565,0.066383272409439],[0.0038531681057066,0.00498570734635,0.016306543722749],[-0.011704987846315,-0.053119819611311,0.01191408932209]],[[-0.003747325623408,0.057586025446653,-0.092064522206783],[0.050392810255289,-0.020457098260522,0.056370340287685],[0.026659362018108,0.056390836834908,-0.053743675351143]],[[0.0072105471044779,0.018167374655604,-0.074219658970833],[-0.031557694077492,-0.040129091590643,0.049094136804342],[0.044985730201006,0.058341052383184,-0.016452701762319]],[[0.033849541097879,-0.055396538227797,-0.054284673184156],[0.0060028596781194,-0.018141316249967,-0.013138798065484],[0.061053369194269,0.011405270546675,0.015610390342772]],[[-0.016611712053418,-0.040877297520638,0.031422153115273],[0.038968026638031,-0.03108804486692,-0.036739431321621],[0.034370649605989,0.027962809428573,-0.0087034264579415]],[[0.060463164001703,0.0063070175237954,0.0087484801188111],[-0.037759132683277,-0.075493395328522,0.027726722881198],[0.00046543619828299,0.0069899107329547,0.020159335806966]],[[0.0074754916131496,0.037084612995386,-0.082699693739414],[-0.048217184841633,-0.022164853289723,-0.038240037858486],[-0.013455734588206,0.021786130964756,-0.020136522129178]],[[-0.014798758551478,-0.036720339208841,0.0021231665741652],[0.0242112390697,-0.071582093834877,-0.0028615947812796],[0.0411934889853,-0.019746817648411,0.038302838802338]],[[-0.051910940557718,-0.031949948519468,0.037408802658319],[0.017306338995695,0.0302579626441,0.015113876201212],[0.038155432790518,0.012178236618638,-0.037883970886469]],[[0.024486962705851,0.034131556749344,-0.0041174688376486],[-0.0050553036853671,0.054314516484737,0.016976522281766],[0.00098463927861303,0.027838269248605,-0.067123331129551]],[[-0.0098404828459024,0.051392696797848,-0.0077995439060032],[0.053126484155655,0.073380343616009,0.037895079702139],[-0.036344218999147,-0.039935953915119,-0.067747861146927]],[[-0.025952510535717,-0.051659774035215,0.06893865019083],[0.0095926430076361,0.0064798458479345,-0.019000269472599],[-0.10214250534773,0.051621358841658,0.013944459147751]],[[0.015293899923563,0.025723125785589,0.013392030261457],[0.03936243057251,-0.0047826222144067,0.066299021244049],[-0.01696889474988,-0.01980840973556,-0.0017423782264814]],[[0.0059720734134316,-0.1051534563303,-0.017011821269989],[-0.043005857616663,0.043900769203901,-0.020803950726986],[0.10202429443598,0.036965880542994,0.0073683015070856]],[[0.016959898173809,0.037488985806704,0.029372299090028],[-0.034047652035952,-0.017776923254132,0.031119158491492],[-0.004259014967829,0.064312040805817,-0.054779391735792]],[[0.028820727020502,-0.039418965578079,-0.023404989391565],[-0.047843653708696,0.049038153141737,0.029651971533895],[0.0031048671808094,0.0070056077092886,0.025764193385839]],[[-0.023542342707515,0.016602158546448,0.066286839544773],[0.12605239450932,-0.027681538835168,0.035025894641876],[0.035445921123028,-0.060095716267824,-0.043341729789972]],[[0.085936546325684,0.0066804508678615,-0.014792563393712],[0.052198980003595,0.029434219002724,-0.035085618495941],[0.041927233338356,0.02846821770072,-0.042998604476452]],[[-0.029197011142969,0.045511867851019,0.018706899136305],[-0.0415173843503,0.01843024045229,-0.032606277614832],[0.01272679772228,0.018109953030944,0.020742889493704]],[[0.071972504258156,0.026400526985526,-0.06832130253315],[0.0056962566450238,0.043993499130011,0.015276798978448],[0.026068117469549,0.11944326758385,-0.012524676509202]],[[0.012328363023698,0.038643732666969,-0.08070033043623],[0.00059330061776564,0.016824269667268,-0.013314516283572],[0.024056166410446,0.076602928340435,-0.0097456388175488]],[[0.0027137852739543,-0.060699436813593,0.046712204813957],[-0.0010056289611384,-0.023124471306801,-0.011801524087787],[-0.040895026177168,-0.047886580228806,0.052018128335476]],[[-0.061768691986799,0.072410315275192,0.0042019137181342],[0.0013784959446639,-0.0039527518674731,0.01140068192035],[-0.050319269299507,-0.060178853571415,-0.047636833041906]],[[0.050605110824108,-0.035065997391939,-0.012744332663715],[0.040296360850334,0.053169012069702,-0.029980069026351],[-0.028239918872714,0.040925335139036,0.070644602179527]],[[-0.013683635741472,0.00022316568356473,0.00016895201406442],[0.0010794141562656,-0.02531661093235,0.033352311700583],[-0.020113669335842,-0.040675844997168,0.0359858982265]],[[0.034103408455849,1.7300691979472e-05,-0.017793696373701],[-0.04644414037466,0.066077291965485,0.037400104105473],[-0.054375950247049,-0.030030390247703,0.030733482912183]],[[0.078709952533245,-0.080523744225502,-0.0098172249272466],[0.019263861700892,-0.066031202673912,0.044691629707813],[0.063757807016373,0.037865605205297,0.052908480167389]],[[0.0021432966459543,-0.013248916715384,-0.028051193803549],[-0.051657766103745,0.036131668835878,-0.0038952557370067],[-0.00033377460204065,-0.011160437949002,-0.041915602982044]],[[0.044149346649647,-0.027077844366431,0.030167734250426],[0.029428832232952,0.033486977219582,0.049879889935255],[-1.3082353689242e-05,0.06135143712163,0.012699536047876]],[[-0.0042036981321871,0.0016421333421022,-0.009064044803381],[-0.035895708948374,0.055315546691418,-0.0024395203217864],[-0.034570831805468,-0.018640523776412,0.02131032012403]],[[0.023269729688764,0.054354649037123,-0.058936268091202],[0.042113896459341,-0.013378170318902,0.04556780308485],[-0.071030035614967,-0.030776966363192,-0.082272581756115]],[[-0.080012232065201,0.032885149121284,-0.056450497359037],[-0.068341717123985,0.073109038174152,-0.016694074496627],[0.033603847026825,-0.0072334785945714,0.034231957048178]],[[0.077578105032444,-0.013854247517884,-0.038944240659475],[-0.018705496564507,0.020985133945942,-0.084424078464508],[-0.0085155507549644,-0.0010417847661301,-0.032940581440926]],[[0.050353270024061,0.014068838208914,-0.019179025664926],[0.0058036576956511,0.037982475012541,-0.080153778195381],[0.03575224429369,-0.060506656765938,0.013431459665298]],[[0.010291659273207,0.0057896613143384,0.055047810077667],[-0.0085446070879698,-0.0010983344400302,-0.0036707825493068],[0.012171528302133,-0.0992326810956,0.02715758793056]],[[0.074051894247532,0.0009064584155567,0.058673895895481],[-0.012610618956387,0.0048657590523362,0.034192189574242],[0.025338288396597,-0.059251703321934,-0.011917697265744]],[[0.033807199448347,-0.0024223441723734,0.041337568312883],[-0.074940875172615,0.048336066305637,0.030681543052197],[0.021206138655543,0.025189157575369,0.064026296138763]]],[[[0.029233049601316,0.056328117847443,-0.032844047993422],[-0.080190286040306,-0.02074315212667,0.042046751827002],[0.01937323063612,0.021559942513704,-0.054235894232988]],[[0.073175370693207,-0.015866713598371,-0.032445382326841],[-0.0086546968668699,0.075981482863426,-0.035429414361715],[-0.019196078181267,-0.066938534379005,-0.060252025723457]],[[0.021269341930747,0.10177568346262,-0.021294360980392],[0.0047576972283423,-0.020006403326988,0.082263633608818],[0.060812920331955,-0.1345216780901,-0.16456836462021]],[[0.27517035603523,-0.32271689176559,0.076993197202682],[0.083975970745087,0.32274776697159,-0.19706892967224],[-0.13541369140148,0.22860524058342,0.22353364527225]],[[0.079280480742455,-0.054743841290474,-0.10452439635992],[0.10624790936708,-0.11691723763943,-0.036044519394636],[-0.010899977758527,-0.083515800535679,-0.085800565779209]],[[-0.098294280469418,-0.0646857842803,0.056657399982214],[-0.00088828336447477,-0.11432798951864,-0.0046196295879781],[-0.12523399293423,-0.093430861830711,0.16534051299095]],[[-0.019560350105166,-0.0080114938318729,0.0065805092453957],[0.045290894806385,-0.010069918818772,0.028859378769994],[0.14039327204227,0.029158579185605,-0.15479715168476]],[[0.01284431759268,-0.055498424917459,0.0090583013370633],[0.069127514958382,-0.13055680692196,0.15535758435726],[-0.049125198274851,0.0085541484877467,-0.083924390375614]],[[0.10370243340731,0.050408776849508,-0.093200959265232],[-0.060169849544764,0.0091926399618387,0.11858872324228],[-0.020965216681361,-0.075003914535046,-0.057370509952307]],[[0.010494258254766,0.008668078109622,-0.0070178532041609],[-0.062637023627758,0.015798645094037,-0.079733572900295],[0.034927036613226,-0.040465291589499,0.01958012022078]],[[-0.033902909606695,-0.039344232529402,0.066902622580528],[-0.088670164346695,0.039917267858982,0.057200767099857],[-0.082345984876156,-0.0268200840801,0.0023663151077926]],[[-0.035057362169027,0.022137699648738,-0.025410957634449],[-0.01158825866878,-0.0077121667563915,0.11268601566553],[0.00028353810193948,-0.066602230072021,0.027784636244178]],[[-0.07312223315239,-0.093441225588322,0.0052281017415226],[-0.042676847428083,-0.039835769683123,-0.010642696171999],[0.050132252275944,0.07030638307333,0.096718035638332]],[[0.054665621370077,0.00933279376477,0.072162121534348],[0.059554282575846,-0.060522127896547,-0.15873850882053],[0.12479831278324,0.0076639787293971,-0.026773035526276]],[[0.15896464884281,0.0041987653821707,-0.034886140376329],[-0.11189793050289,0.29461672902107,-0.11229803413153],[-0.31264153122902,-0.091640636324883,0.23356135189533]],[[-0.0097809480503201,-0.0052006551995873,-0.040973514318466],[0.027427688241005,0.012757970020175,-0.11727080494165],[-0.13541562855244,0.048133656382561,0.099835991859436]],[[-0.065750241279602,-0.021817343309522,0.10540371388197],[0.020675977692008,-0.071627490222454,0.11786627024412],[-0.066176235675812,0.052594676613808,-0.013652768917382]],[[-0.046227533370256,0.12952828407288,0.091918081045151],[0.012330329045653,0.031738057732582,0.080377340316772],[-0.055550333112478,-0.017367789521813,-0.1075394153595]],[[0.11052273213863,0.068518035113811,-0.020654190331697],[0.032408609986305,-0.054351646453142,-0.096913188695908],[0.0020905989222229,-0.034990575164557,-0.10742194950581]],[[-0.055113669484854,-0.094479523599148,-0.02751730568707],[0.051105640828609,-0.029620183631778,-0.095954574644566],[0.052525065839291,0.094970479607582,0.02742887660861]],[[0.0011531143682078,-0.053273748606443,-0.0081931790336967],[0.17967574298382,0.029694341123104,-0.031942758709192],[-0.11675720661879,0.27346020936966,-0.0095245856791735]],[[-0.031134543940425,-0.0599320307374,0.074808649718761],[-0.014271722175181,0.039261389523745,0.063422009348869],[0.064277105033398,-0.0013454323634505,-0.08346775919199]],[[-0.026557296514511,-0.03419678658247,0.020920634269714],[0.0091097261756659,0.061698101460934,0.0041840332560241],[-0.1335286796093,-0.021129945293069,0.060258656740189]],[[0.098118774592876,-0.045158036053181,-0.0019266131566837],[0.06566260010004,0.044819906353951,0.040139026939869],[-0.041068758815527,-0.012204366736114,-0.167495906353]],[[-0.3480162024498,-0.11481282860041,0.42841172218323],[0.3764736354351,-0.084035776555538,-0.222263276577],[0.077778890728951,0.11249037832022,-0.24656355381012]],[[-0.013051832094789,-0.012572282925248,0.031424045562744],[-0.073642298579216,0.019478242844343,0.036931127309799],[-0.14542660117149,-0.067102432250977,0.070689387619495]],[[0.11428351700306,0.11137352883816,0.017394891008735],[-0.033893417567015,-0.062699720263481,0.018507389351726],[-0.068117462098598,0.052303615957499,-0.17176297307014]],[[-0.095592550933361,0.076108150184155,-0.093481414020061],[-0.17262546718121,0.14556361734867,-0.0037900283932686],[0.0061585991643369,-0.13695380091667,0.17821751534939]],[[0.015123923309147,-0.079971008002758,0.027303971350193],[-0.06737045198679,0.031977038830519,0.065099500119686],[-0.093723885715008,-0.010309688746929,0.038574859499931]],[[-0.054864134639502,0.08479717373848,-0.007710728328675],[0.03228385746479,0.060157995671034,0.0097952866926789],[0.051357109099627,-0.043551817536354,0.024463990703225]],[[0.024156756699085,0.051297422498465,-0.044058926403522],[-0.037445098161697,-0.12044766545296,-0.025213479995728],[0.086517862975597,0.075388096272945,-0.074166558682919]],[[-0.036396771669388,-0.11897545307875,0.036968111991882],[0.066407471895218,-0.016048477962613,0.1277769356966],[-0.17079383134842,0.0010613166959956,0.049142438918352]],[[-0.077271968126297,-0.0015393905341625,0.016153378412127],[0.028865775093436,0.090536154806614,-0.074575915932655],[-0.0038541525136679,0.00067467911867425,-0.009394041262567]],[[-0.016895828768611,0.050318527966738,-0.04013217613101],[-0.015885259956121,-0.12994399666786,0.032784018665552],[0.06123448163271,-0.015643194317818,0.0056655746884644]],[[-0.092175804078579,-0.0146843791008,0.0081249913200736],[-0.034428138285875,0.053582169115543,-0.036151137202978],[0.042284768074751,0.032880250364542,-0.019963359460235]],[[0.050876591354609,0.020951226353645,-0.091096997261047],[0.14799438416958,0.011109219864011,-0.12118028104305],[-0.09900163859129,0.23569875955582,-0.049964733421803]],[[0.1113338470459,-0.13729570806026,0.029534043744206],[0.16405612230301,-0.045719083398581,-0.061590548604727],[-0.036477483808994,0.055407542735338,-0.034767672419548]],[[0.044990714639425,-0.083742551505566,0.029384609311819],[0.066882960498333,0.037012171000242,-0.18866761028767],[0.013288690708578,0.0078632533550262,0.050401128828526]],[[-0.02247828617692,-0.022275066003203,0.020987147465348],[0.10613984614611,0.032827470451593,-0.0099484808743],[-0.054789241403341,0.012786460109055,0.059129167348146]],[[-0.0047191474586725,-0.07863187789917,0.063512064516544],[-0.031225316226482,-0.09530833363533,0.055130854249001],[0.002139228163287,0.016051011160016,-0.024173691868782]],[[0.042894925922155,0.066954798996449,0.0054375105537474],[0.042904045432806,0.020666817203164,0.04960872605443],[0.15168428421021,-0.21257890760899,-0.12483766674995]],[[-0.015824750065804,-0.007261258084327,0.014191787689924],[-0.085889734327793,-0.020136140286922,0.083536945283413],[-0.072552867233753,-0.016837224364281,0.074073553085327]],[[0.049616549164057,-0.14417853951454,0.11009396612644],[-0.24262243509293,0.20542402565479,-0.2249701321125],[0.14565786719322,-0.20717519521713,0.14898081123829]],[[0.078786924481392,0.057669945061207,0.071905821561813],[0.12586216628551,0.097492545843124,0.13572023808956],[0.14288540184498,0.16938026249409,0.055694404989481]],[[-0.02884110249579,-0.025628795847297,0.050535429269075],[0.096693120896816,-0.03281607106328,-0.051634751260281],[0.034762922674417,0.034563027322292,0.020720101892948]],[[0.032570108771324,-0.080320574343204,-0.0019935928285122],[-0.16592985391617,0.048834074288607,-0.15977263450623],[0.031375344842672,-0.14151908457279,0.0043745515868068]],[[0.060085449367762,0.13015875220299,-0.018792886286974],[0.033495906740427,0.18769654631615,-0.034967534244061],[0.35834109783173,-0.33171170949936,-0.010248905047774]],[[-0.081594176590443,-0.0025864229537547,-0.015019321814179],[-0.0108258780092,-0.24966929852962,-0.17264373600483],[0.13769306242466,0.11723167449236,-0.019375938922167]],[[0.11830331385136,0.16093876957893,0.090505510568619],[-0.049072097986937,-0.16671933233738,0.021706748753786],[-0.16478981077671,-0.14384768903255,-0.084567584097385]],[[-0.091970905661583,0.0062088314443827,-0.065594255924225],[0.065017715096474,0.090050339698792,0.017966751009226],[-0.043069444596767,0.085940286517143,-0.038645803928375]],[[0.02593176998198,-0.037919480353594,0.022650109604001],[0.021356223151088,0.00032667562481947,-0.030414482578635],[0.061121754348278,0.037632599473,-0.099557034671307]],[[-0.014305589720607,0.02055642567575,0.043048888444901],[-0.06241512671113,-0.06010852009058,0.16883490979671],[-0.071710854768753,-0.20914706587791,0.018398797139525]],[[0.07322183996439,0.018792139366269,-0.0081136040389538],[0.047096841037273,-0.039595510810614,-0.022777855396271],[0.0072196982800961,0.019961955025792,-0.0087242815643549]],[[-0.0083674332126975,0.05062784999609,0.079933397471905],[-0.017311641946435,-0.13444294035435,0.046321339905262],[-0.030788889154792,-0.087285093963146,0.026259809732437]],[[-0.091112323105335,0.0096511673182249,0.054508034139872],[-0.038378842175007,-0.18150241672993,-0.053028486669064],[0.075056150555611,0.23400743305683,-0.058579429984093]],[[-0.044314846396446,0.067025288939476,-0.018709173426032],[-0.075266167521477,-0.049349304288626,-0.0035739350132644],[0.10208945721388,-0.094585105776787,0.057940952479839]],[[-0.011968865059316,-0.039893262088299,0.012957746163011],[0.073672495782375,-0.004618345759809,-0.021924294531345],[-0.092804878950119,-0.10139634460211,0.0044339476153255]],[[-0.039943359792233,-0.00031999684870243,-0.0064962841570377],[-0.029972366988659,-0.015202828682959,0.044423460960388],[0.023195428773761,-0.020691923797131,-0.041626680642366]],[[-0.031189318746328,-0.019750168547034,-0.047872167080641],[0.02714136429131,-0.08204448223114,0.029415169730783],[0.08449898660183,-0.041623912751675,-0.012090827338398]],[[-0.047580014914274,0.010507476516068,0.065319880843163],[0.058040656149387,-0.097692139446735,0.060076173394918],[-0.058749731630087,0.051284290850163,-0.01287579908967]],[[0.025680158287287,0.0070607205852866,-0.073827244341373],[0.014378356747329,0.047038871794939,0.099451497197151],[-0.086605057120323,-0.15016248822212,0.042820896953344]],[[-0.06817951798439,-0.053830865770578,0.16953434050083],[0.15650513768196,-0.24541842937469,0.18729667365551],[0.14885297417641,0.032519869506359,-0.20404800772667]],[[0.036295849829912,0.064999669790268,0.12398531287909],[-0.051550395786762,-0.18319986760616,0.00013629737077281],[-0.033334635198116,-0.11759928613901,-0.058835137635469]],[[-0.0002811087470036,-0.034921482205391,-0.0098690241575241],[-0.044106587767601,0.016614938154817,0.033963851630688],[-0.022560570389032,0.076854549348354,-0.032763298600912]],[[0.0080222133547068,0.020989844575524,0.082795985043049],[-0.082766979932785,-0.052473168820143,0.1057982891798],[0.021018350496888,-0.083579063415527,0.0066888285800815]],[[-0.033025242388248,0.0063165808096528,-0.10018786787987],[0.002274802653119,-0.024208793416619,0.03677287325263],[0.042302716523409,0.0047276611439884,0.028727760538459]],[[0.019635552540421,0.031671222299337,0.13942930102348],[-0.12137489765882,0.00223887572065,-0.053195729851723],[-0.093355737626553,-0.034664507955313,-0.033884480595589]],[[0.00010220243711956,0.06830807775259,0.035364586859941],[0.0054513672366738,-0.041638448834419,-0.10151097923517],[0.068299032747746,0.073711380362511,-0.061592001467943]],[[-0.064379937946796,0.036491271108389,0.1031277179718],[0.11655205488205,-0.082788407802582,-0.082228437066078],[-0.06773054599762,0.087689988315105,-0.071445927023888]],[[-0.015504946000874,-0.024256194010377,0.051943562924862],[0.062647834420204,-0.069672584533691,0.091025792062283],[-0.048589523881674,-0.027772719040513,0.032229922711849]],[[-0.081923730671406,0.027202188968658,0.03455239161849],[-0.05851186439395,-0.033094115555286,-0.090372212231159],[0.016597533598542,0.10398375988007,0.068790107965469]],[[0.067368723452091,0.11996471136808,0.08737525343895],[-0.040988229215145,-0.034243013709784,-0.083839081227779],[0.08077722042799,-0.14808271825314,-0.13383197784424]],[[-0.061199482530355,0.00457464158535,0.059561111032963],[-0.142623513937,-0.013385863043368,0.074310772120953],[-0.36042964458466,0.25613540410995,-0.057005617767572]],[[-0.015970267355442,0.069956958293915,0.089440710842609],[0.032839298248291,0.05538222938776,-0.030878188088536],[-0.21768446266651,-0.10858357697725,0.071152910590172]],[[-0.020107610151172,0.017314648255706,0.017051938921213],[0.14298975467682,-0.012539093382657,-0.1127160564065],[-0.092832714319229,-0.12471801042557,-0.038034971803427]],[[-0.045464355498552,-0.031167099252343,0.056191045790911],[0.11429180204868,0.065571293234825,-0.073476478457451],[-0.10291048139334,0.03745411708951,0.0018828044412658]],[[-0.022011090070009,-0.061051305383444,0.0059895711019635],[-0.063125655055046,0.064914934337139,-0.058877069503069],[-0.20895241200924,0.024480067193508,0.08845742046833]],[[-0.18221487104893,0.14981676638126,-0.13340345025063],[0.088480994105339,-0.15717636048794,0.018886066973209],[0.11925917118788,-0.040321182459593,-0.085117816925049]],[[0.049298301339149,0.041567746549845,0.017780283465981],[0.0003094824787695,-0.035127133131027,-0.030984524637461],[-0.011601068079472,-0.087158337235451,-0.0050110989250243]],[[0.046104524284601,0.094630338251591,0.10448225587606],[-0.00032400654163212,-0.084866084158421,-0.1239403411746],[0.024543561041355,-0.12196829915047,0.097342535853386]],[[0.05339065939188,0.050482723861933,-0.0026762997731566],[-0.029459433630109,0.080850720405579,-0.028777558356524],[-0.16283839941025,0.23848789930344,-0.18747055530548]],[[-0.050079774111509,-0.087435834109783,0.19518975913525],[0.041130475699902,0.052603378891945,0.0096896896138787],[-0.049390658736229,-0.2692229449749,-0.053045619279146]],[[0.030591389164329,-0.031740438193083,0.063926674425602],[-0.14075256884098,-0.052722603082657,-0.039461504667997],[0.18897938728333,0.11688663065434,-0.04149341583252]],[[0.04563982412219,-0.039717901498079,0.040902283042669],[0.0017009440343827,0.066673964262009,0.00037003715988249],[-0.095785938203335,0.047798689454794,-0.073467403650284]],[[0.0035624820739031,-0.0080049317330122,0.0015889678616077],[-0.13844580948353,-0.019731460139155,0.0692398250103],[0.04850235581398,-0.011143237352371,-0.035000964999199]],[[0.027901092544198,-0.040168955922127,-0.044165723025799],[0.14168418943882,-0.046548709273338,-0.088537871837616],[-0.014624328352511,0.089626133441925,0.029688553884625]],[[0.0027986352797598,0.0088150845840573,0.039822924882174],[0.049522012472153,0.052268758416176,-0.12192294001579],[0.056571941822767,0.019544158130884,-0.09120087325573]],[[0.13479256629944,-0.010461220517755,0.049861520528793],[-0.067967228591442,-0.0028316855896264,-0.013608166947961],[-0.047623209655285,-0.014074264094234,-0.0048749032430351]],[[0.021780429407954,-0.00014030524471309,-0.06919564306736],[0.069181770086288,0.00042433149064891,0.063772864639759],[0.039810258895159,-0.056367546319962,-0.12139222025871]],[[0.0099008055403829,0.021860541775823,-0.15256978571415],[0.02338394895196,-0.0071730515919626,0.017085989937186],[-0.13172163069248,0.075233899056911,0.084105052053928]],[[-0.0053152348846197,0.036576598882675,0.029140401631594],[-0.071911945939064,0.023902386426926,-0.042355060577393],[-0.040431547909975,0.021946644410491,8.1141806731466e-05]],[[-0.016222737729549,0.069476246833801,0.025017807260156],[0.083005279302597,-0.018354868516326,0.10402169078588],[-0.14843951165676,-0.058816600590944,0.012198470532894]],[[0.048355098813772,-0.022756606340408,-0.079531691968441],[0.050713423639536,0.0090930117294192,0.0055696088820696],[0.12078196555376,-0.048786368221045,-0.050154704600573]],[[-0.021754387766123,0.027456130832434,0.14834305644035],[0.12773443758488,-0.061160422861576,-0.025120748206973],[-0.040189769119024,-0.12705889344215,-0.055702615529299]],[[0.026300789788365,-0.072676010429859,-0.070936739444733],[0.18302355706692,-0.10379680991173,-0.14292167127132],[0.44960871338844,-0.22362026572227,-0.12728726863861]],[[-0.060166273266077,-0.053577531129122,0.011798411607742],[-0.058420706540346,0.14221154153347,0.025339141488075],[-0.15260948240757,-0.077603757381439,0.10024806857109]],[[0.011049182154238,0.020735470578074,-0.017405854538083],[-0.015334943309426,0.067718133330345,-0.0574891269207],[-0.089934289455414,0.03727912902832,-0.066606514155865]],[[0.039998035877943,-0.067394115030766,-0.097318515181541],[0.1109986230731,-0.027241976931691,-0.10569243878126],[0.13783782720566,-0.0060648070648313,-0.10975817590952]],[[0.088220298290253,0.078346364200115,-0.05870283767581],[0.045446757227182,0.0084276041015983,-0.0042719431221485],[-0.051530946046114,-0.059153433889151,0.020924294367433]],[[-0.18659381568432,0.025886727496982,0.025872841477394],[0.27270632982254,-0.15487438440323,-0.045089211314917],[-0.35346364974976,0.20042414963245,0.0012079365551472]],[[0.002899365965277,0.071392945945263,-0.083438903093338],[0.12828876078129,0.02424300648272,-0.00093478569760919],[-0.20262266695499,-0.17713318765163,0.27358436584473]],[[-0.026864161714911,0.065851747989655,0.025586450472474],[-0.053523667156696,0.027451174333692,0.0060375579632819],[-0.0018869909690693,-0.076080970466137,-0.024042015895247]],[[-0.022802053019404,-0.023452918976545,0.074997305870056],[0.050033360719681,0.14359575510025,-0.005146065261215],[-0.0069467308931053,-0.25021541118622,-0.056664098054171]],[[-0.090507611632347,-0.06528902053833,0.06939885020256],[-0.15760593116283,-0.13071483373642,-0.0014909006422386],[-0.18211422860622,-0.18623957037926,-0.071408495306969]],[[0.038133312016726,0.0048593743704259,0.0018054293468595],[0.14078943431377,-0.014299740083516,-0.026644954457879],[-0.13513427972794,-0.016148801892996,-0.001241022371687]],[[-0.0063620405271649,0.040113292634487,-0.052454091608524],[0.071625359356403,-0.018551856279373,0.0031013714615256],[-0.021743064746261,0.049439523369074,-0.062134794890881]],[[0.08336565643549,0.057624820619822,-0.039879471063614],[-0.014004995115101,0.064191952347755,0.0084580974653363],[-0.20332555472851,-0.065296731889248,0.0044851056300104]],[[0.031099842861295,0.05977151170373,-0.021493330597878],[0.05924080312252,-0.0078185126185417,0.0048478315584362],[-0.10861580818892,0.081699691712856,-0.0679000467062]],[[-0.10330843180418,-0.14965710043907,0.068344287574291],[-0.037838827818632,-5.2699506341014e-06,0.0090827587991953],[-0.035232055932283,0.10281175374985,0.12345989048481]],[[-0.029544496908784,-0.0050855162553489,-0.096009477972984],[-0.013334843330085,0.056712847203016,0.018445417284966],[0.033276859670877,0.16033597290516,-0.065013855695724]],[[-0.0085756555199623,-0.041733581572771,0.02127124555409],[-0.05098032951355,0.065578795969486,0.0082206921651959],[-0.10963398218155,0.042149022221565,-0.017009735107422]],[[0.042514182627201,0.036582257598639,-0.091771364212036],[-0.001477136160247,-0.038207810372114,0.095424167811871],[-0.039768468588591,0.039280921220779,0.021701144054532]],[[-0.051629584282637,0.037372075021267,0.057531856000423],[-0.057714834809303,0.044097170233727,0.017979521304369],[-0.061899524182081,-0.061351235955954,0.11972414702177]],[[-0.11636454612017,-0.11541189998388,0.012266784906387],[-0.16031949222088,0.046887949109077,-0.0077615836635232],[0.068249963223934,0.094901621341705,0.13855250179768]],[[0.036548167467117,-0.060209088027477,0.006784678902477],[0.021423440426588,-0.023779604583979,-0.0419478751719],[0.11485480517149,-0.084818728268147,0.021754747256637]],[[-0.0042960229329765,0.041634533554316,0.10678754746914],[0.0096153393387794,0.083618193864822,-0.021526431664824],[-0.081089280545712,0.02584589831531,-0.10479623824358]],[[0.0014620637521148,-0.052920334041119,-0.057340487837791],[-0.029628546908498,0.13230822980404,-0.22884595394135],[0.020760601386428,0.079296410083771,-0.05236491933465]],[[-0.036705065518618,-0.080478332936764,0.024485344067216],[0.02334182523191,0.05447955057025,-0.015620232559741],[0.016782477498055,0.0055998382158577,-0.014153425581753]],[[-0.10859023779631,-0.10752838850021,-0.089426182210445],[-0.056151103228331,0.0097027104347944,0.028043203055859],[0.11731462925673,0.2189506739378,0.12720572948456]],[[-0.04229898005724,0.11235377937555,0.051222078502178],[-0.080408297479153,-0.063590288162231,0.024083463475108],[0.034216430038214,-0.088791951537132,-0.034410629421473]],[[0.061217091977596,0.018327917903662,0.046313818544149],[-0.0053762439638376,-0.010488110594451,-0.08556179702282],[0.045128878206015,-0.08638459444046,0.021890556439757]],[[0.02051872946322,-0.0085852239280939,0.035683419555426],[-0.085178427398205,0.2552504837513,0.08514679223299],[0.32397496700287,0.12992249429226,-0.066359020769596]],[[-0.033166866749525,0.11301375180483,0.061791386455297],[-0.016150087118149,-0.058395273983479,0.1117425635457],[0.031502354890108,-0.11208779364824,-0.11829495429993]],[[0.060131877660751,-0.074122674763203,-0.016146244481206],[0.02081485837698,-0.054412215948105,0.06840392947197],[-0.059219405055046,0.028367917984724,0.040661476552486]],[[-0.037565514445305,-0.025950912386179,-0.0051113548688591],[0.10990635305643,-0.017260739579797,0.074741251766682],[-0.10916768014431,0.038108915090561,-0.014867180027068]],[[-0.020335583016276,0.020972438156605,-0.01826879568398],[-0.02476661093533,-0.0519097186625,0.09574144333601],[0.012604192830622,0.048453342169523,-0.00096098223002627]],[[0.036010541021824,-0.02276455424726,-0.079160124063492],[-0.068234145641327,0.027804046869278,-0.0095562050119042],[-0.0090259406715631,0.079811215400696,-0.045909482985735]],[[-0.00026839453494176,0.036446828395128,0.043876394629478],[-0.035789489746094,0.12213126569986,-0.013221804052591],[-0.013103338889778,-0.10357382148504,-0.053502943366766]]],[[[0.0086181089282036,0.016953209415078,0.030523408204317],[0.010839132592082,0.0083786090835929,0.037285324186087],[0.022376406937838,-0.11250009387732,0.0023320429027081]],[[0.062151532620192,-0.01820638589561,0.065630398690701],[0.075669966638088,-0.058990634977818,-0.046015933156013],[-0.12076806277037,-0.082794658839703,-0.044123146682978]],[[-0.0070760701783001,-0.057242900133133,-0.037772569805384],[-0.0063584097661078,0.020286394283175,-0.070952080190182],[-0.052131369709969,-0.036921299993992,0.17205855250359]],[[-0.032129727303982,0.0068464749492705,-0.10992369055748],[-0.20133602619171,-0.0021792470943183,0.0022746070753783],[-0.029055064544082,-0.31499114632607,-0.05792036652565]],[[-0.028747348114848,-0.053724199533463,0.050118785351515],[0.051116093993187,0.076757155358791,0.02999259904027],[0.021707028150558,-0.01055961009115,-0.063083574175835]],[[-0.022247884422541,-0.057175181806087,-0.031667917966843],[0.051531609147787,0.19032895565033,0.062358014285564],[0.027388945221901,-0.0038028019480407,-0.069194369018078]],[[0.052600130438805,0.01892501115799,0.0020177415572107],[0.052431035786867,0.038331624120474,0.03707417473197],[-0.096060559153557,0.06855534017086,0.03881922736764]],[[0.091655492782593,-0.054612029343843,-0.073850311338902],[0.10812844336033,0.0054221232421696,0.061894752085209],[0.1066435649991,-0.095303907990456,0.00099642493296415]],[[-0.047956816852093,-0.049397189170122,0.07563566416502],[-0.055466007441282,-0.030141709372401,0.031220994889736],[0.032074742019176,0.025352731347084,-0.04211563616991]],[[-0.028723200783134,0.035898830741644,-0.13844013214111],[0.014090686105192,0.071520403027534,-0.035868663340807],[0.081591069698334,0.0096759088337421,-0.059148319065571]],[[0.057681363075972,0.077889017760754,0.076281532645226],[0.083894178271294,0.052682392299175,-0.0039859861135483],[0.056799583137035,0.019574483856559,-0.053630039095879]],[[-0.0059621473774314,0.087212070822716,-0.056802801787853],[0.085245691239834,-0.040148288011551,-0.00079224962973967],[0.025444410741329,0.007116402965039,-0.010651285760105]],[[-0.04067537933588,-0.060415644198656,-0.015564689412713],[0.027711754664779,-0.051192209124565,0.033855531364679],[0.052926208823919,0.064229264855385,0.041940081864595]],[[0.01782195456326,-0.0020796651951969,-0.022006802260876],[-0.079630441963673,0.042574569582939,0.035601072013378],[0.011864916421473,-0.079102464020252,0.047075424343348]],[[-0.0059471167623997,-0.0041120233945549,-0.11963718384504],[-0.18045324087143,-0.20360992848873,0.0031741834245622],[0.013333746232092,-0.10648849606514,-0.24566122889519]],[[0.057010862976313,-0.015706738457084,0.04440825805068],[-0.022804662585258,-0.011411160230637,0.037468671798706],[-0.060822725296021,-0.0064381062984467,-0.02821371331811]],[[0.0046099727042019,-0.1371950507164,0.03772646188736],[0.11746878921986,0.0089350966736674,0.070719391107559],[-0.0095806838944554,0.016548981890082,0.053412411361933]],[[0.012876329943538,-0.0031399156432599,0.0064698229543865],[0.052592851221561,0.116563975811,-0.081477999687195],[-0.011676476337016,0.10537965595722,0.026948908343911]],[[-0.073769450187683,-0.079636499285698,0.03023517690599],[0.042221516370773,-0.030084207653999,-0.079868726432323],[0.04808497428894,-0.0047261784784496,0.045974466949701]],[[0.016205862164497,0.031854305416346,-0.023054480552673],[0.028571767732501,-0.035458039492369,0.040144819766283],[-0.019458699971437,-0.025637742131948,-0.05771753564477]],[[-0.0061872838996351,-0.03406123444438,0.013251602649689],[-0.073660910129547,0.032353926450014,-0.024318994954228],[0.016527414321899,-0.11778953671455,-0.10134320706129]],[[-0.01991730183363,-0.00083183328388259,0.061724614351988],[0.017207300290465,-0.0888866558671,0.043649524450302],[0.041819345206022,0.023545973002911,-0.03265355527401]],[[0.020552968606353,-0.070336014032364,0.0692955031991],[-0.087251454591751,-0.049198251217604,-0.012376978993416],[0.025048945099115,-0.020176958292723,0.032411191612482]],[[0.060437180101871,-0.01822429522872,0.020652251318097],[0.033039461821318,0.031896408647299,-0.017965467646718],[-0.10509952902794,-0.016168894246221,0.031264632940292]],[[0.095809042453766,-0.15200598537922,0.030503815039992],[-0.16352406144142,0.096514329314232,-0.019568080082536],[0.035916723310947,-0.10047072917223,-0.16558554768562]],[[0.063734367489815,0.022738279774785,0.044165350496769],[-0.043832797557116,-0.057118445634842,0.068187683820724],[0.021247733384371,-0.060747168958187,-0.026226999238133]],[[-0.0024289223365486,-0.0046517038717866,-0.049193225800991],[-0.041873216629028,-0.024179009720683,-0.13651974499226],[0.040471855551004,-0.024880347773433,-0.061201930046082]],[[-0.057904787361622,-0.25214695930481,-0.044539514929056],[-0.05335259437561,-0.12140595912933,0.08558115363121],[-0.049057729542255,-0.25508999824524,0.10825730860233]],[[0.047457687556744,-0.0046745873987675,-0.034538798034191],[0.022653996944427,-0.058439310640097,-0.04881365224719],[-0.0056832022964954,0.027119044214487,-0.043132800608873]],[[-0.020618865266442,0.08708768337965,0.084783509373665],[0.017975511029363,0.075134761631489,0.049702569842339],[-0.037998840212822,-0.01851986348629,0.00055019737919793]],[[-0.062977239489555,-0.034285802394152,-0.015648441389203],[0.021916009485722,-0.063369370996952,-0.02916425652802],[0.10200577974319,-0.0053140576928854,0.12239910662174]],[[0.026036174967885,0.00045773893361911,-0.001444719848223],[-0.049462296068668,-0.050602529197931,0.0019201358081773],[0.0028254031203687,0.088822819292545,0.078218102455139]],[[0.072707027196884,-0.10968372225761,0.00027286366093904],[0.0020041468087584,-0.010355088859797,-0.046512816101313],[0.015822310000658,0.092724800109863,-0.026982672512531]],[[-0.0091951601207256,-0.061382845044136,-0.041262183338404],[-0.056957118213177,0.082419782876968,-0.025845944881439],[0.078612215816975,0.095223665237427,0.016248526051641]],[[0.012947077862918,0.050070978701115,-0.013102299533784],[0.12304593622684,0.098573684692383,-0.014043493196368],[0.13862973451614,0.079248011112213,-0.042229242622852]],[[-0.093445144593716,-0.012599192559719,-0.029150350019336],[-0.081247828900814,0.038894336670637,-0.024838110432029],[-0.11811818927526,-0.030297435820103,-0.0074285920709372]],[[-0.023143464699388,0.16784471273422,0.061271656304598],[-0.033704273402691,0.030531227588654,-0.019252998754382],[0.026237487792969,-0.13403050601482,0.0049516879953444]],[[0.025091527029872,0.025381160899997,0.063596300780773],[0.035212371498346,0.0089209638535976,-0.059557538479567],[0.049559462815523,-0.079966671764851,-0.01202782522887]],[[0.039105292409658,0.061150815337896,0.072389028966427],[-0.01865790784359,-0.0283716134727,-0.0064449794590473],[-0.0036103834863752,0.020448883995414,0.020712211728096]],[[-0.046354964375496,0.039116241037846,-0.04235965013504],[-0.030906796455383,0.11999396979809,0.091740839183331],[-0.1235012114048,0.13989944756031,0.25528603792191]],[[-0.11172132194042,-0.021649235859513,0.041172809898853],[0.0092224515974522,-0.0034567087423056,0.0083894124254584],[-0.016651872545481,-0.11521705985069,-0.085861310362816]],[[0.021564479917288,0.12586534023285,0.16281661391258],[-0.0049438397400081,0.05583143979311,0.058379616588354],[-0.068217702209949,0.053724713623524,0.0010393928969279]],[[0.05972471088171,-0.076467923820019,0.049753434956074],[0.0097080208361149,0.059506636112928,0.024639498442411],[0.15407936275005,0.097393214702606,0.014012783765793]],[[-0.03152072802186,0.012598848901689,-0.0046241777017713],[0.0043482598848641,-0.021163303405046,-0.04141878336668],[-0.012693879194558,0.052663430571556,0.010175094008446]],[[-0.098247669637203,-0.093063078820705,0.017091942951083],[-0.06867703795433,0.0045009641908109,-0.035438060760498],[0.11301230639219,0.027824785560369,0.062424007803202]],[[0.030286045745015,0.036404199898243,0.047488927841187],[0.022833701223135,0.060858692973852,0.01314161811024],[0.089226022362709,0.053755965083838,0.076600797474384]],[[0.040557041764259,0.05648847669363,0.067635498940945],[0.0013289072085172,0.054213747382164,0.056853502988815],[-0.0028336108662188,0.078571856021881,-0.067041888833046]],[[0.035291690379381,-0.09677417576313,-0.10612501204014],[-0.037002641707659,-0.11926008760929,-0.10271802544594],[0.017614267766476,-0.029159095138311,-0.020150896161795]],[[0.015255155973136,-0.04519023373723,-0.064542755484581],[-0.0039992569945753,-0.039885710924864,-0.056080691516399],[0.020544376224279,0.013051749207079,0.053073849529028]],[[0.026889532804489,-0.024841737002134,0.060109984129667],[0.0041444203816354,0.058250028640032,0.065825991332531],[-0.094460777938366,-0.10853987187147,0.041214853525162]],[[-0.027247415855527,-0.013349360786378,-0.12022496014833],[0.070678785443306,0.064381398260593,-0.019231071695685],[0.057089768350124,-0.035457644611597,-0.051951561123133]],[[0.066553123295307,0.068347334861755,0.1002180352807],[0.069063127040863,-0.0021648542024195,-0.054032538086176],[0.017010638490319,-0.052074830979109,-0.096052795648575]],[[-0.075334310531616,-0.05394396558404,-0.024337871000171],[0.020635955035686,0.038409490138292,0.069930545985699],[0.040560100227594,0.076793983578682,0.01039588265121]],[[-0.060311920940876,-0.18283227086067,-0.03689106926322],[-0.0016759230056778,0.018660079687834,-0.020308347418904],[-0.081871546804905,0.10104326158762,-0.045052617788315]],[[0.045805830508471,-0.13452050089836,-0.1113915592432],[0.087533093988895,0.081742487847805,-0.062749691307545],[-0.032315041869879,0.03676138445735,0.041118260473013]],[[-0.00354835530743,0.11795751750469,-0.0067942379973829],[-0.011199032887816,0.0036010080948472,-0.054821647703648],[-0.059321615844965,-0.087588749825954,-0.065761685371399]],[[-0.015956928953528,-0.024122009053826,0.061652198433876],[0.036476857960224,-0.0011210946831852,0.028331805020571],[0.025851637125015,-0.14608427882195,0.11998346447945]],[[0.034344613552094,-0.0043431012891233,0.03824619948864],[-0.010244631208479,0.0064665442332625,-0.037437163293362],[0.033286094665527,0.026067350059748,0.011518779210746]],[[-0.0082894144579768,-0.12960331141949,-0.12413029372692],[0.012719562277198,0.0027195948641747,-0.08748235553503],[0.0030730639118701,0.0097662527114153,-0.052516747266054]],[[0.011174158193171,-0.072533845901489,-0.11879748851061],[-0.055688079446554,0.0054733767174184,0.1423536837101],[-0.03818803653121,0.027368972077966,-0.0077311820350587]],[[-0.024213107302785,-0.033421758562326,0.0043842867016792],[0.01020834594965,0.056282505393028,-0.10177529603243],[-0.025073146447539,0.04040739685297,-0.033815260976553]],[[0.040594711899757,0.03509621322155,-0.10573657602072],[0.010059309192002,0.011524543166161,-0.17606496810913],[-0.0043472554534674,-0.015230723656714,-0.17746658623219]],[[-0.014328897930682,-0.06667136400938,-0.040949735790491],[-0.041267409920692,-0.052578680217266,-0.08253937214613],[0.0017827448900789,-0.0066203796304762,0.036406189203262]],[[0.036420118063688,0.072818741202354,0.076266720890999],[0.018605520948768,-0.0036556753329933,-0.0059288647025824],[0.0054974872618914,-0.021111235022545,-0.0013959454372525]],[[0.071491822600365,-0.068128772079945,0.014820265583694],[-0.047118671238422,-0.0070255110040307,-0.070818178355694],[0.061219252645969,-0.021599436178803,0.053895607590675]],[[0.033564474433661,0.12769588828087,0.081706002354622],[-0.16464388370514,-0.08107802271843,0.12738490104675],[-0.028007779270411,0.028655026108027,0.0050953705795109]],[[0.042825616896152,0.092142380774021,-0.10437081754208],[0.052146077156067,0.043372571468353,0.10143068432808],[0.025521459057927,-0.077261358499527,-0.042144794017076]],[[0.09551340341568,-0.0012946913484484,0.015702661126852],[0.039250515401363,0.01761613227427,0.047038301825523],[0.0046154973097146,0.084513671696186,0.0080730048939586]],[[0.037085942924023,0.034235388040543,-0.040117003023624],[0.016290633007884,-0.015719143673778,0.072902835905552],[-0.015182101167738,-0.061410203576088,0.051170378923416]],[[-0.05901075899601,0.025274164974689,0.032441046088934],[-0.13098227977753,0.042725041508675,0.13262356817722],[0.091223865747452,0.03344576433301,0.0069470885209739]],[[0.10047455132008,-0.0026172236539423,0.13226023316383],[-0.032564014196396,0.048548448830843,-0.012489955872297],[0.0065933801233768,0.023570410907269,0.011686021462083]],[[-0.032546903938055,-0.072167955338955,-0.069805629551411],[-0.042326524853706,-0.1004381403327,-0.023514168336987],[-0.018569085747004,-0.075645722448826,0.028790881857276]],[[0.0054017119109631,-0.12909196317196,0.040932811796665],[0.01405842974782,0.0028453671839088,0.015097064897418],[0.017849301919341,0.090076237916946,-0.046877775341272]],[[0.055786963552237,-0.011732213199139,0.03539802134037],[-0.043731223791838,-0.040091417729855,-0.01183395460248],[-0.037830907851458,0.019380744546652,0.016257386654615]],[[0.039791382849216,-0.006955751683563,-0.04612635448575],[-0.042250394821167,0.012500782497227,0.029689172282815],[0.040677540004253,0.0039095962420106,0.045851971954107]],[[-0.00062432221602648,0.034830424934626,0.063824661076069],[-0.045335903763771,-0.079627029597759,0.05157271400094],[-0.054324921220541,0.02412355877459,-0.032016381621361]],[[0.018983118236065,-0.02247634716332,-0.011979488655925],[0.054622080177069,0.014433142729104,0.047588989138603],[0.011834658682346,0.063249990344048,0.0032222184818238]],[[0.077819056808949,0.03672281652689,0.13148076832294],[-0.07193586230278,0.07315968722105,0.01020716689527],[0.071521617472172,0.0273456890136,0.099413119256496]],[[0.036141857504845,0.062023278325796,-0.077791094779968],[-0.006555253174156,0.0086783301085234,0.024779783561826],[-0.046392105519772,-0.022231314331293,-0.026858225464821]],[[-0.048693526536226,-0.1177733540535,0.045216251164675],[-0.032284531742334,-0.048523381352425,0.023226192221045],[-0.018509797751904,0.01654108427465,0.17991006374359]],[[-0.030737306922674,0.048365097492933,-0.0066733830608428],[-0.012329906225204,-0.021385507658124,-0.054671254009008],[0.019501697272062,0.029046462848783,-0.070876650512218]],[[3.6016026569996e-05,0.0008541542920284,-0.02968873269856],[0.013194117695093,0.043651945888996,0.17600989341736],[0.047849450260401,-0.074329107999802,-0.055723622441292]],[[0.065499685704708,0.016888650134206,-0.0015138633316383],[-0.033979095518589,0.038977313786745,0.12831218540668],[0.055064924061298,0.0037497971206903,0.007036566734314]],[[0.071489997208118,-0.012522932142019,-0.0010806083446369],[0.066629745066166,0.030865343287587,0.0019117523916066],[-0.013682486489415,-0.018227377906442,-0.054632764309645]],[[-0.015141430310905,0.014000697992742,0.029566466808319],[0.059945847839117,-0.049605656415224,-0.081845805048943],[0.09238937497139,0.045180905610323,-0.066238410770893]],[[-0.057036980986595,-0.055631369352341,-0.045051492750645],[-0.10742424428463,0.0068234545178711,0.058277003467083],[0.019510578364134,-0.019223028793931,0.060210846364498]],[[-0.0061756428331137,-0.024335267022252,-0.11305080354214],[0.024158397689462,0.0074184620752931,-0.090223208069801],[0.041429042816162,-0.019308952614665,0.056151822209358]],[[0.054681520909071,-0.13834366202354,-0.067397341132164],[-0.0080563062801957,-0.055339574813843,0.028493899852037],[-0.0032640984281898,0.0048028402961791,-0.034719485789537]],[[-0.057910434901714,0.15417346358299,0.078759111464024],[-0.088922813534737,0.098796740174294,0.14808993041515],[-0.11227871477604,0.070353038609028,0.10574098676443]],[[0.051849573850632,0.02767776325345,-0.038507647812366],[-0.041604917496443,-0.0086654024198651,0.073540568351746],[0.012835861183703,0.0055101495236158,-0.018516376614571]],[[-0.028910266235471,0.077672250568867,-0.0060883592814207],[-0.14444160461426,-0.023535314947367,0.019949035719037],[-0.014583751559258,-0.0031417259015143,0.053274519741535]],[[0.078202903270721,0.00033655966399238,-0.010126110166311],[0.01384293474257,-0.010451388545334,-0.059570837765932],[0.020952891558409,0.01291514467448,-0.073117077350616]],[[0.021722408011556,0.032291162759066,-0.11656906455755],[0.067394264042377,-0.028945840895176,-0.039703872054815],[0.076586082577705,0.10794797539711,0.10017742216587]],[[0.0093812318518758,-0.012428669258952,-0.029287572950125],[-0.0083353593945503,-0.023777002468705,-0.10581174492836],[0.0069422596134245,-0.032285682857037,0.015707992017269]],[[-0.021092968061566,0.0095828203484416,-0.082955189049244],[-0.036759283393621,0.011575722135603,-0.016957357525826],[-0.0064011141657829,-0.15902900695801,0.11025656759739]],[[0.081015981733799,0.014958824031055,0.036540240049362],[-0.00031302074785344,-0.082016162574291,0.01968452706933],[0.036741733551025,-0.035992428660393,-0.02834708057344]],[[-0.030085027217865,-0.0462984777987,-0.0835802257061],[0.047096658498049,0.012367000803351,-0.017716016620398],[-0.025778938084841,-0.070600815117359,0.0031518558971584]],[[0.057235229760408,-0.030461236834526,-0.0043058916926384],[0.0594682097435,-0.0098909623920918,0.0035953894257545],[-0.12791135907173,-0.056327644735575,-0.014841288328171]],[[-0.10203133523464,-0.086802922189236,0.025167195126414],[-0.081059016287327,-0.059709504246712,0.0081616127863526],[0.035866715013981,0.012765689752996,0.12345112115145]],[[-0.049918234348297,-0.0088621620088816,0.034775577485561],[0.0095442133024335,0.043255470693111,-0.054830402135849],[0.16670279204845,0.038739297538996,0.043523799628019]],[[-0.025966618210077,0.026778295636177,0.081687197089195],[-0.092793121933937,0.080368049442768,-0.060627918690443],[0.060687880963087,-0.048948984593153,0.015414501540363]],[[-0.065057791769505,-0.027081083506346,-0.015106087550521],[0.059051271528006,-0.04728639498353,-0.14322777092457],[0.019039448350668,0.034911088645458,0.11167991906404]],[[-0.0092308185994625,0.039305903017521,-0.024078311398625],[-0.03121298737824,-0.048986360430717,0.0031586110126227],[0.015093315392733,0.014799725264311,0.03174976631999]],[[-0.06322219222784,-0.076099969446659,-0.023525580763817],[-0.025034748017788,-0.04639321193099,-0.036951158195734],[-0.091790750622749,-0.093290574848652,0.045544154942036]],[[-0.045409880578518,0.032125379890203,0.0077471118420362],[-0.038316201418638,0.0198885332793,-0.018012324348092],[0.010367324575782,0.076527461409569,0.06736946105957]],[[0.098020412027836,0.0087689282372594,-0.021952277049422],[0.093859851360321,0.12964105606079,0.054556593298912],[0.053144447505474,0.082333914935589,-0.02943778783083]],[[0.065517365932465,0.14009444415569,0.040303524583578],[0.053550288081169,0.066368073225021,-0.053748667240143],[0.034859664738178,-0.031139571219683,-0.013235408812761]],[[0.072722993791103,0.043479945510626,0.010056871920824],[-0.052910890430212,-0.070126622915268,0.013249981217086],[0.0009021982550621,-0.11084831506014,-0.00043421387090348]],[[-0.063592471182346,0.01787231490016,0.027977015823126],[0.10069010406733,0.0051607098430395,-0.023855792358518],[0.025315156206489,-0.034009445458651,-0.0496338121593]],[[-0.0052200742065907,-0.023708751425147,0.034348681569099],[0.0021212282590568,-0.036520946770906,-0.042194046080112],[0.10653244704008,-0.059909377247095,0.01484115049243]],[[0.051394805312157,0.0087812263518572,-0.037829857319593],[-0.045343525707722,-0.032414987683296,0.043297361582518],[0.021860169246793,-0.040884397923946,0.012509511783719]],[[-0.083640120923519,0.063280962407589,0.053366024047136],[0.049838524311781,0.0095303989946842,-0.022338813170791],[-0.033259980380535,0.036652620881796,-0.10388176143169]],[[0.10799122601748,0.086152479052544,-0.053783014416695],[0.0028598513454199,-0.12962846457958,-0.063387423753738],[-0.0058511812239885,-0.037268925458193,0.091781564056873]],[[-0.0035060723312199,0.027941524982452,-2.5765530153876e-05],[0.031802009791136,0.017058731988072,-0.036451000720263],[-0.049662530422211,0.024026948958635,0.040507528930902]],[[0.010976084508002,-0.0095561118796468,0.061419483274221],[0.039930123835802,-0.098576307296753,0.025376860052347],[-0.084383510053158,0.072329856455326,0.068524613976479]],[[0.093741558492184,-0.017765309661627,-0.060989256948233],[-0.00076807785080746,0.012692903168499,0.055258262902498],[0.0099894879385829,-0.011202499270439,-0.048392910510302]],[[0.04024351760745,0.047912996262312,0.070391982793808],[0.065880827605724,-0.012777397409081,-0.052228279411793],[-0.070083744823933,-0.025121273472905,-0.05872567743063]],[[0.0047955764457583,-0.11028624325991,-0.062980443239212],[-0.064338132739067,-0.092513881623745,-6.980375474086e-05],[-0.014953395351768,0.0011965589364991,0.034517511725426]],[[0.054158311337233,0.0017946496373042,-0.04132666811347],[0.0061351787298918,0.041082851588726,-0.0021040032152086],[0.10373425483704,-0.041671831160784,-0.0024172086268663]],[[0.094741635024548,0.015480324625969,-0.081276267766953],[0.033923074603081,0.10903695970774,-0.075433939695358],[-0.03191102668643,0.015249750576913,-0.11344011873007]],[[0.011211956851184,-0.081233948469162,-0.01635641977191],[-0.054413944482803,0.019410444423556,-0.022248482331634],[0.013310885056853,0.014870352111757,-0.034287378191948]],[[-0.010287255048752,0.015198683366179,0.087471194565296],[-0.059683155268431,0.034084495157003,-0.0091854874044657],[-0.018851809203625,-0.042686257511377,-0.056182686239481]],[[0.0074975327588618,-0.075388617813587,-0.02783302590251],[-0.062420926988125,-0.17721255123615,-0.10431262105703],[-0.01591669768095,-0.054553408175707,-0.12518770992756]],[[-0.035155173391104,0.038988817483187,0.0075669181533158],[0.067154437303543,0.0063126785680652,-0.015067186206579],[-0.0055266609415412,0.014336519874632,0.012991342693567]],[[-0.035049498081207,0.02778042294085,0.013029235415161],[-0.040812749415636,-0.011094496585429,0.057519931346178],[-0.011530347168446,0.040818825364113,-0.021840158849955]],[[-0.029285566881299,-0.045030578970909,0.05832152813673],[0.08218064904213,0.086194984614849,0.083851777017117],[0.049328420311213,0.06040721014142,0.091940455138683]],[[0.0019947160035372,0.020414208993316,-0.0035142316482961],[0.023744434118271,0.020446119830012,0.016966385766864],[-0.11058317869902,-0.06995315104723,0.049556840211153]],[[-0.03209425881505,-0.10024678707123,0.001701972563751],[-0.048895508050919,-0.010775537230074,0.003992575686425],[-0.0025857409927994,0.022418763488531,0.021058736369014]]],[[[-0.02673751488328,0.049708716571331,0.097849898040295],[0.12011361122131,-0.0023370415437967,-0.071787253022194],[0.038262888789177,0.020344700664282,-0.0016727953916416]],[[0.0027096339035779,-0.055222019553185,-0.022357236593962],[-0.0065918988548219,-0.016208026558161,0.07811526954174],[-0.024560023099184,0.071514047682285,0.0382712893188]],[[0.013817983679473,0.033218387514353,-0.039620507508516],[0.044934041798115,0.038898579776287,0.016239719465375],[-0.020095501095057,0.006940015591681,0.014513945207]],[[0.0092581892386079,-0.030409967526793,0.0013805183116347],[0.023830950260162,-0.012562327086926,-0.041422087699175],[-0.00024458020925522,0.016080541536212,0.0036729832645506]],[[-0.012278512120247,0.0066867778077722,-0.001400753390044],[0.072248518466949,-0.050808064639568,0.021314794197679],[0.043899022042751,0.10509158670902,-0.055003583431244]],[[0.0010612152982503,-0.012955429032445,0.04060285910964],[-0.045300744473934,0.012005039490759,0.0011736957821995],[-0.017584249377251,-0.025586580857635,-0.0080478554591537]],[[0.027193220332265,-0.062619052827358,-0.0036924690939486],[-0.041509870439768,0.071076720952988,-0.010278362780809],[-0.037200152873993,0.079270228743553,-0.075015544891357]],[[-0.010628364980221,0.025811526924372,-0.025866147130728],[-0.026739472523332,0.00085024326108396,-0.11373957246542],[0.0080881314352155,0.04772637039423,0.017711708322167]],[[-0.046052891761065,0.030249733477831,-0.033732414245605],[0.059316422790289,-0.025237260386348,-0.013023521751165],[-0.01586758159101,0.011078671552241,0.029798807576299]],[[-0.031063664704561,0.061988983303308,0.03519931063056],[0.028631336987019,0.0047486876137555,-0.022827722132206],[-0.021195845678449,-0.050373192876577,0.065669871866703]],[[0.088490262627602,0.015679579228163,-0.062704153358936],[0.064704224467278,-0.020547416061163,-0.043353971093893],[-0.010650488547981,-0.083642445504665,-0.061825782060623]],[[-0.038134254515171,0.067116715013981,0.013394273817539],[-0.051880329847336,0.047867156565189,0.032105527818203],[-0.010953483171761,0.033413115888834,0.060030996799469]],[[-0.020673321560025,-0.004120534285903,0.017006544396281],[0.037505269050598,0.0061949179507792,-0.049619011580944],[0.042500957846642,0.023717468604445,-0.026691183447838]],[[0.031711172312498,0.011144229210913,-0.064823493361473],[0.063121229410172,-0.054925214499235,0.0051975748501718],[-0.0053505310788751,0.018343597650528,-0.022033289074898]],[[-0.1102512255311,-0.010639094747603,0.0029027147684246],[-0.10829295217991,-0.011823726817966,-0.0049116164445877],[0.0075657814741135,-0.029076104983687,0.049138575792313]],[[-0.044010557234287,0.046319164335728,0.0025676370132715],[-0.083231002092361,0.068756066262722,-0.0084765432402492],[-0.047270581126213,-0.076035529375076,0.11002770811319]],[[-0.025015154853463,-0.010929325595498,0.036864787340164],[0.085303097963333,0.0091966828331351,-0.039366684854031],[0.060542475432158,0.075679875910282,0.082495391368866]],[[-0.014031833037734,0.11819548904896,0.025836331769824],[0.051612127572298,0.099379934370518,0.028602661564946],[-0.056708764284849,-0.04907962679863,0.010723391547799]],[[0.020990600809455,0.047068186104298,-0.022701794281602],[0.0025905482470989,-0.059983614832163,-0.080543532967567],[-0.012986274436116,-0.055499583482742,0.061914052814245]],[[0.06559406965971,-0.034479167312384,-0.085701338946819],[0.032229512929916,0.014307755976915,-0.033575002104044],[-0.027644880115986,-0.045133981853724,-0.072055697441101]],[[-0.029082264751196,-0.029744321480393,-0.026645729318261],[0.041465073823929,-0.038528941571712,-0.015144421719015],[-0.11292758584023,-0.069939792156219,0.08201315253973]],[[-0.048539366573095,0.074244849383831,-0.016021553426981],[0.0030853219795972,-0.048235010355711,-0.068376153707504],[0.075298756361008,-0.023695878684521,-0.032210160046816]],[[-0.039177168160677,0.06066757440567,0.027907311916351],[0.0021589749958366,0.012069556862116,-0.0026589839253575],[0.017070846632123,0.0043720775283873,0.021563161164522]],[[0.04282857850194,-0.091259077191353,-0.091816909611225],[-0.017145903781056,-0.00130450935103,-0.074108012020588],[-0.089661940932274,0.013810694217682,0.0013081453507766]],[[0.033275187015533,-0.046824369579554,0.061777770519257],[-0.027582693845034,-0.024127064272761,0.039081618189812],[0.0041031059809029,0.043754797428846,0.07294075191021]],[[0.038176916539669,-0.015407435595989,0.030749449506402],[-0.015565850771964,0.10029132664204,-0.03635736182332],[0.048915266990662,-0.0054272208362818,-0.016316775232553]],[[0.047005336731672,0.046003799885511,0.039221063256264],[0.053111765533686,-0.052846901118755,-0.0088951298967004],[0.0032303619664162,0.026796715334058,0.081795558333397]],[[0.033295460045338,0.0059211347252131,-0.0060535529628396],[-0.032534800469875,0.018943835049868,-0.037007816135883],[-0.063713110983372,-0.019247846677899,0.050792690366507]],[[0.0040002381429076,-0.065659381449223,0.0032451816368848],[0.049842558801174,0.031233074143529,0.052818242460489],[-0.0087678916752338,-0.023049581795931,0.074126578867435]],[[-0.045370846986771,-0.00052769354078919,-0.097484648227692],[0.013526843860745,-0.059866461902857,0.001482100924477],[-0.02383884601295,-0.0084443567320704,-0.044258520007133]],[[-0.052157416939735,0.089568741619587,0.021907929331064],[0.013972904533148,-0.0088918088003993,-0.023313263431191],[0.067361138761044,-0.088652729988098,-0.043802864849567]],[[-0.087496370077133,0.018157573416829,0.06203880906105],[0.003772130003199,-0.054008886218071,-0.015520241111517],[-0.018058706074953,-0.038173582404852,0.015673873946071]],[[-0.044119786471128,-0.047505147755146,-0.025975443422794],[0.02482170984149,0.018890380859375,0.042466923594475],[0.02016082033515,0.01572516001761,0.05319107323885]],[[-0.016835667192936,-0.067844085395336,-0.0043859062716365],[0.0026640824507922,0.0098257325589657,-0.046605452895164],[-0.0030839815735817,0.012847842648625,0.0089605087414384]],[[0.062143392860889,0.035353887826204,0.024764537811279],[0.0195481646806,-0.068465165793896,-0.052682459354401],[0.011361450888216,-0.096004910767078,-0.043572720140219]],[[0.039284370839596,-0.0053638070821762,-0.077278085052967],[-0.0031325817108154,0.11731829494238,-0.011135626584291],[-0.021408315747976,0.14193953573704,-0.033578652888536]],[[-0.011184954084456,0.060949269682169,0.012586449272931],[-0.01641059666872,-0.084745861589909,-0.063748881220818],[-0.090908452868462,0.035419933497906,-0.077019549906254]],[[0.031722858548164,-0.016249412670732,-0.034632336348295],[0.060466140508652,-0.011877430602908,-0.023287937045097],[0.019778234884143,-0.038545243442059,0.0043616690672934]],[[-0.066049657762051,0.10748334974051,-0.087410792708397],[-0.03591088950634,-0.048774562776089,0.064162880182266],[-0.054959736764431,-0.019538838416338,0.01524711586535]],[[-0.05199620872736,0.0051906867884099,-0.05732785910368],[-0.035569131374359,-0.015555740334094,0.076606519520283],[0.036317486315966,-0.0024988646619022,-0.0615214407444]],[[-0.021070824936032,-0.028179893270135,0.0015948571963236],[0.02337802015245,-0.043256010860205,-0.0031041451729834],[-0.0065404903143644,-0.010224212892354,0.068292260169983]],[[-0.036246929317713,-0.02729076333344,-0.002820234047249],[-0.028862534090877,0.049944590777159,0.027529142796993],[0.031713791191578,-0.0027396909426898,0.034065425395966]],[[-5.4275038564811e-05,-0.02058039791882,0.042016234248877],[0.015022282488644,0.059218343347311,-0.037250354886055],[0.046411231160164,-0.044271640479565,-0.031455174088478]],[[0.016412386670709,-0.10035198926926,-0.023505223914981],[0.051947738975286,-0.04914940148592,0.0089837005361915],[-0.057782329618931,-0.030135104432702,-0.072521924972534]],[[-0.014696468599141,-0.055496335029602,-0.070600248873234],[0.028019599616528,0.016087533906102,-2.275293081766e-05],[-0.019983580335975,0.0051745343953371,-0.0050507234409451]],[[0.0079875690862536,0.048638936132193,0.0010746532352641],[-0.011063534766436,0.0042230822145939,0.0060920775867999],[-0.012240940704942,-0.055837206542492,-0.066272601485252]],[[0.010391344316304,-0.079831875860691,-0.11446143686771],[0.024158347398043,-0.093801327049732,0.19095841050148],[0.046309370547533,0.10458412021399,0.24451811611652]],[[-0.033834431320429,0.056072283536196,0.10360677540302],[0.022818222641945,-0.022983476519585,-0.015098844654858],[-0.046557143330574,-0.026087807491422,-0.10992255806923]],[[-0.047529485076666,0.082993142306805,0.092162944376469],[-0.060233566910028,-0.027890963479877,0.042190864682198],[-0.081377506256104,-0.049159903079271,-0.081803597509861]],[[0.073801286518574,0.061397276818752,-0.078746825456619],[0.056951683014631,0.012226228602231,0.026913560926914],[-0.04436568915844,-0.017117502167821,-0.011616080068052]],[[-0.015725802630186,-0.084356635808945,-0.010471129789948],[0.012622370384634,0.032345876097679,0.0026702533941716],[-0.023526595905423,-0.021545363590121,-0.096775472164154]],[[0.10841569304466,0.017915645614266,-0.038096375763416],[0.00084841891657561,-0.057280547916889,-0.066920213401318],[-0.023733036592603,-0.080445863306522,0.061157066375017]],[[0.005099942907691,0.041263002902269,-0.026932893320918],[0.0049843029119074,-0.05575056001544,-0.0098126102238894],[-0.00094764970708638,-0.020201886072755,-0.013678034767509]],[[0.015328612178564,-0.074653282761574,0.020325042307377],[0.0070341802202165,-0.011110576801002,0.0066248695366085],[-0.025664664804935,0.0026170518249273,-0.076214000582695]],[[-0.1219530031085,-0.060163330286741,-0.020945973694324],[0.028685681521893,-0.028180876746774,-0.022680170834064],[0.082088783383369,-0.016860632225871,0.068081393837929]],[[-0.028142957016826,-0.041231360286474,-0.051762290298939],[0.03381297364831,0.034960426390171,-0.01763790845871],[0.044731143862009,0.022970756515861,-0.022022608667612]],[[0.071581318974495,-0.065504640340805,-0.019033268094063],[0.0082721598446369,0.062798589468002,0.014874561689794],[-0.057424154132605,0.011336161755025,-0.019376799464226]],[[-0.051275320351124,-0.0094972858205438,-0.026486771181226],[0.022012364119291,0.065517015755177,0.0044353399425745],[0.076843559741974,-0.087156675755978,-0.062456410378218]],[[-0.068613812327385,-0.033395059406757,-0.01602135039866],[-0.0090425303205848,-0.058862186968327,-0.00083080166950822],[-0.021255979314446,0.074309282004833,0.015108573250473]],[[0.0022816865239292,0.040596596896648,-0.017111150547862],[-0.05145175755024,-0.016241863369942,0.045106250792742],[0.014763806015253,-0.014230407774448,-0.0071683349087834]],[[0.041952129453421,0.019583601504564,-0.032698012888432],[-0.011946705169976,0.035553973168135,-0.089216858148575],[-0.10209265351295,0.045919448137283,0.066937960684299]],[[0.040174633264542,-0.0024043435696512,-0.088738225400448],[0.0040640723891556,-0.058423921465874,-0.036287236958742],[0.00199244171381,0.054423693567514,-0.023638373240829]],[[-0.032793786376715,0.01240208465606,-0.038163736462593],[0.003829154651612,-0.0060700490139425,-0.020651699975133],[-0.0053108590655029,-0.058761581778526,-0.0096422052010894]],[[-0.01559017971158,-0.031960390508175,-0.0096032954752445],[0.00069951987825334,-0.082931645214558,-0.060460314154625],[-0.026098158210516,-0.082740552723408,-0.0073273493908346]],[[-0.099651142954826,-0.011227233335376,-0.002386974869296],[-0.091631896793842,-0.037150427699089,-0.027475960552692],[-0.11413751542568,0.12057060003281,0.066292084753513]],[[0.011989565566182,0.03352190181613,-0.068819433450699],[0.0040989136323333,0.031832750886679,-0.017782656475902],[0.055466581135988,0.02844550833106,0.029906250536442]],[[0.028658088296652,0.010465327650309,0.035096116364002],[0.040166825056076,-0.042826168239117,0.014814940281212],[0.0040501016192138,-0.03891184926033,-0.041163742542267]],[[0.037558816373348,0.020029390230775,0.065855614840984],[0.056605257093906,0.010582469403744,0.0060755503363907],[0.049215707927942,-0.024348214268684,0.020392324775457]],[[0.015898765996099,-0.049833696335554,0.014942719601095],[0.049439989030361,0.0092361615970731,0.01118478178978],[0.046463377773762,-0.0064935707487166,0.023621140047908]],[[-0.0083466004580259,-0.0038376788143069,-0.0053119277581573],[0.10026668012142,0.068669624626637,-0.099911503493786],[-0.016169818118215,-0.023410029709339,-0.10705012083054]],[[-0.066378623247147,0.037459891289473,-0.095880895853043],[-0.040757358074188,-0.042167760431767,-0.057008426636457],[-0.030781416222453,-0.028274884447455,-0.0072863330133259]],[[-0.026644947007298,0.06313644349575,-0.0076929787173867],[-0.030167466029525,0.072117671370506,0.035743400454521],[0.040444541722536,0.035928159952164,-0.013186533004045]],[[-0.067961789667606,0.019677944481373,-0.054134853184223],[0.011067315004766,0.059868738055229,-0.093561843037605],[0.02983695268631,0.084835968911648,-0.090989924967289]],[[-0.0002082004211843,0.02645300142467,0.0031015910208225],[0.079502210021019,0.077042855322361,-0.012582762166858],[0.013123985379934,-0.057544901967049,0.025890652090311]],[[0.019364431500435,-0.08948377519846,-0.027927167713642],[-0.019075682386756,-0.054389134049416,-0.17639416456223],[0.051027189940214,-0.015748236328363,-0.021221881732345]],[[-0.062082182615995,0.034420117735863,0.10375138372183],[0.083563275635242,0.068325348198414,-0.043148696422577],[-0.049836069345474,-0.091174103319645,0.013560609892011]],[[-0.057076793164015,-0.055162381380796,-0.01082110311836],[0.016298770904541,0.0033457071986049,-0.02891849167645],[0.047038048505783,0.027611786499619,-0.12467107921839]],[[0.024579428136349,0.011940089054406,-0.017289066687226],[-0.045713689178228,-0.11107583343983,-0.00096381304319948],[-0.012323465198278,-0.029786987230182,-0.042399164289236]],[[0.037295930087566,-0.017479384317994,-0.035329528152943],[-0.046471484005451,-0.034851975739002,-0.020549830049276],[0.048536904156208,0.087631031870842,-0.0013399565359578]],[[-0.11171729117632,-0.054839391261339,-0.026427309960127],[0.028247093781829,0.0034227862488478,0.046233754605055],[-7.6400319812819e-06,-0.0064340964891016,0.0072955009527504]],[[0.026472175493836,-0.054773546755314,-0.023660494014621],[-0.01843842677772,-0.03472300991416,-0.027812832966447],[0.018146947026253,0.058017123490572,-0.0089208176359534]],[[0.047584228217602,-0.049381867051125,-0.076643966138363],[0.051433108747005,-0.10403901338577,0.06205890327692],[-0.010671247728169,0.04650504142046,-0.14264310896397]],[[0.0037089511752129,0.13423135876656,0.028618760406971],[0.050160381942987,-0.012038361281157,-0.059397336095572],[0.0066694999113679,0.032524671405554,0.030054219067097]],[[-0.0082354871556163,-0.038411572575569,0.041595239192247],[-0.018195239827037,0.01665854640305,-0.032095972448587],[0.025779346004128,-0.011498144827783,0.047311946749687]],[[-0.026687258854508,-0.07683152705431,0.034295480698347],[-0.028386084362864,0.031564924865961,0.028405217453837],[-0.011334516108036,0.0055610635317862,-0.023542605340481]],[[-0.10249419510365,-0.029942039400339,-0.052337009459734],[0.075132124125957,-0.029025930911303,0.0056536821648479],[0.070408910512924,-0.061800561845303,0.037552066147327]],[[0.026648620143533,-0.017406927421689,0.03063103556633],[-0.019321449100971,-0.039934974163771,-0.0099777290597558],[0.06451441347599,-0.035365480929613,-0.033399727195501]],[[-0.024769064038992,-0.029672788456082,-0.070570886135101],[0.02397664822638,-0.063614383339882,0.0084005231037736],[0.031178822740912,-0.07159211486578,-0.014819181524217]],[[0.0058289314620197,-0.036314886063337,-0.022870736196637],[-0.0012517006834969,-0.036304257810116,0.027279710397124],[0.012280330993235,0.025764374062419,-0.087371304631233]],[[0.00036226990050636,0.094178289175034,-0.077629655599594],[0.02646316960454,-0.0060958317480981,-0.064891614019871],[-0.0045826933346689,-0.0087033370509744,-0.041853234171867]],[[-0.045613277703524,0.077466920018196,0.048575587570667],[-0.013227654621005,0.030662678182125,-0.066936194896698],[-0.059420421719551,-0.029330521821976,0.016649732366204]],[[0.051785655319691,-0.039952088147402,0.0041036293841898],[-0.035962041467428,0.028600046411157,-0.031286526471376],[0.0019980825018138,-0.0089838746935129,-0.0083965146914124]],[[0.047463003546,-0.010542935691774,0.034667789936066],[0.067145183682442,0.010407823137939,-0.050982352346182],[0.029730459675193,-0.043565467000008,-0.030135668814182]],[[-0.049038037657738,0.043818909674883,-0.0042296564206481],[0.017408885061741,-0.048340149223804,0.029684813693166],[0.027075799182057,-0.013239853084087,0.031877137720585]],[[-0.038925088942051,0.076479181647301,-0.085733287036419],[-0.03286012634635,0.044195983558893,-0.0021806524600834],[-0.054460149258375,-0.040225710719824,0.23999853432178]],[[0.0074697895906866,-0.012103707529604,-0.045157864689827],[0.014291112311184,0.052491292357445,-0.010778957046568],[-0.053017966449261,0.012782109901309,0.058957427740097]],[[0.08993111550808,-0.11406829208136,0.027612900361419],[-0.050753820687532,-0.023049922659993,-0.037672135978937],[0.055620457977057,0.043112799525261,0.072141543030739]],[[0.067204065620899,-0.030227897688746,-0.010714293457568],[0.016470344737172,-0.056080225855112,0.045660395175219],[-0.017592966556549,-0.045249495655298,-0.05037534981966]],[[0.11085556447506,-0.058903075754642,0.1054143384099],[-0.017919577658176,0.013006074354053,0.0013013079296798],[-0.025985602289438,0.044036172330379,-0.045202281326056]],[[-0.050579190254211,0.027436269447207,-0.0028222468681633],[0.015547497197986,-0.027983151376247,-0.0042685265652835],[-0.0012487866915762,-0.011502487584949,-0.029829418286681]],[[0.046561453491449,0.019220158457756,0.16963766515255],[-0.067355312407017,0.059862330555916,-0.069030895829201],[-0.020908337086439,0.051938373595476,-0.082933336496353]],[[-0.015741003677249,0.012664667330682,0.012267716228962],[0.035882040858269,0.070743538439274,0.021863035857677],[0.0055414284579456,0.058498632162809,0.026233673095703]],[[0.036968994885683,0.011814411729574,0.04438067227602],[0.013832286931574,0.059839434921741,0.015937298536301],[-0.024014614522457,0.032282844185829,-0.12633417546749]],[[-0.011115447618067,0.055788774043322,-0.034959483891726],[0.030203143134713,0.031173605471849,-0.022320574149489],[0.0095535926520824,0.0048939352855086,0.011605830863118]],[[0.047568894922733,-0.037357728928328,-0.001465636654757],[0.015716556459665,-0.07614129781723,0.085497543215752],[-0.015848524868488,0.0079942373558879,0.064798608422279]],[[0.070539183914661,-0.044001258909702,-0.071820072829723],[0.14212574064732,-0.02837329544127,-0.00066469906596467],[-0.063433475792408,-0.010954922996461,-0.047474402934313]],[[-0.0088372444733977,-0.10542001575232,-0.019046558067203],[0.011283907108009,-0.023743476718664,-0.0548858307302],[-0.027133919298649,-0.042995039373636,-0.031536091119051]],[[-0.031056357547641,0.028181890025735,-0.028955865651369],[-0.050121616572142,0.10374020785093,0.038959536701441],[-0.069794028997421,0.016556857153773,0.007121535949409]],[[0.031000949442387,0.063294343650341,-0.041281934827566],[0.066578395664692,0.030016524717212,-0.009719580411911],[0.013781170360744,-0.020255986601114,-0.010487383231521]],[[-0.034532342106104,0.050275303423405,0.076196372509003],[0.03928005322814,0.013123771175742,0.049434415996075],[0.071796551346779,-0.011891624890268,-0.047778107225895]],[[0.074215725064278,0.078004315495491,0.059274345636368],[0.0010880547342822,-0.085159294307232,0.0073087839409709],[0.032990217208862,-0.0077428077347577,0.0016342519083992]],[[0.047375913709402,-0.080652683973312,-0.090008817613125],[0.038947053253651,0.011035043746233,-0.0070697069168091],[-0.021456869319081,-0.049826066941023,-0.016056576743722]],[[-0.010851518251002,0.0022076175082475,0.04289023950696],[0.053624644875526,-0.018065044656396,0.080906085669994],[-0.0061953859403729,0.070352129638195,0.031276125460863]],[[-0.031988672912121,0.030664499849081,-0.020089266821742],[0.033251877874136,0.028366152197123,-0.008102660998702],[-0.069479674100876,0.017169089987874,0.0026782243512571]],[[-0.0018556985305622,0.028215445578098,-0.065277941524982],[0.035005241632462,0.023062480613589,0.067185319960117],[-0.031107315793633,-0.01879963837564,0.058847486972809]],[[-0.0089786918833852,0.012477756477892,-0.033794973045588],[0.029989352449775,0.015532813966274,-0.012715852819383],[-0.032620511949062,-0.029286095872521,-0.016862295567989]],[[0.028863674029708,-0.041582219302654,-0.10444813966751],[-0.026637773960829,-0.0073492755182087,0.054096251726151],[0.0052565825171769,0.0042601656168699,0.031240779906511]],[[-0.015128241851926,-0.054386027157307,0.033671390265226],[0.011461325921118,-0.010944043286145,-0.015578308142722],[0.021118013188243,0.003334112232551,-0.044065989553928]],[[-0.025707360357046,-0.035035975277424,0.0092521877959371],[-0.018480621278286,-0.025081822648644,-0.030376257374883],[0.03377503529191,0.012938206084073,-0.013348740525544]],[[0.083061829209328,-0.052698854357004,0.00088265002705157],[-0.0070881438441575,-0.003838422242552,0.01325414236635],[-0.021043675020337,0.029688315466046,-0.13295470178127]],[[-0.13201747834682,-0.035491608083248,0.00028704514261335],[-0.030730281025171,-0.0038246100302786,-0.020574677735567],[-0.043409083038568,0.048279743641615,-0.030808512121439]],[[0.07862464338541,-0.052355844527483,0.010286594741046],[-0.10803870856762,0.019348541274667,-0.080337300896645],[-0.037868563085794,0.025938766077161,0.3463434278965]],[[0.030188294127584,-0.01233814842999,0.00064364593708888],[-0.055850967764854,-0.14445647597313,-0.106446005404],[0.058498118072748,-0.034454997628927,0.015864960849285]],[[0.04308844730258,-0.020177628844976,0.041498988866806],[0.010450326837599,-0.053183581680059,0.019590899348259],[-0.069186016917229,0.023684322834015,-0.038038786500692]],[[-0.0043425583280623,0.062178380787373,-0.046201188117266],[-0.011784861795604,0.028230214491487,0.067561782896519],[-0.0047993273474276,-0.021645557135344,-0.04650916159153]],[[-0.026945689693093,-0.023331377655268,-0.13067445158958],[0.01285005081445,0.0025269167963415,-0.10294464975595],[0.018327983096242,-0.040574364364147,0.035858001559973]],[[0.029610747471452,0.016161870211363,-0.0063021895475686],[0.025315972045064,-0.10040340572596,-0.050715897232294],[0.05704478174448,0.048100482672453,0.067715547978878]],[[0.014998575672507,0.062303353101015,0.057234656065702],[0.084991604089737,0.056425590068102,-0.013286768458784],[0.057146165519953,0.039824217557907,0.031089479103684]]],[[[-0.057961732149124,-0.0035543444100767,0.019174812361598],[-0.063941925764084,0.048887599259615,0.0046453904360533],[0.028089614585042,0.034071020781994,0.01447540987283]],[[-0.08018346875906,-0.026056161150336,-0.042678851634264],[0.070172473788261,-0.078184463083744,0.031150108203292],[0.0051238751038909,-0.040184687823057,0.011112094856799]],[[-0.0089480904862285,0.028372770175338,0.042693920433521],[0.029695849865675,-0.031099569052458,0.0098030343651772],[0.040262136608362,0.015840331092477,-0.025790844112635]],[[0.01396557316184,-0.032591082155704,-0.077472113072872],[-0.031749788671732,0.096248582005501,-0.026208359748125],[0.00060897547518834,-0.014394896104932,0.040650654584169]],[[0.043247055262327,0.037819255143404,-0.047099806368351],[-0.065229564905167,-0.034000780433416,0.085660129785538],[0.014230391010642,-0.014231648296118,0.031316049396992]],[[0.091972760856152,0.020668966695666,0.032096546143293],[0.070792861282825,0.046727571636438,-0.017439464107156],[0.059285156428814,0.048809614032507,0.01718944311142]],[[0.076237730681896,-0.030425246804953,0.018509047105908],[0.044114008545876,-0.017529873177409,0.057311199605465],[0.068524494767189,0.015908151865005,-0.070499807596207]],[[0.020647663623095,0.07113204151392,0.012655548751354],[-0.0089624170213938,-0.050165109336376,0.054136238992214],[0.058128010481596,0.033405117690563,0.031416792422533]],[[-0.058423303067684,-0.016318021342158,-0.031210459768772],[0.027668006718159,0.026248939335346,0.0036012260243297],[-0.068433009088039,0.042083065956831,0.098327964544296]],[[-0.015060428529978,0.013961690478027,-0.064188234508038],[0.027952702715993,-0.014510661363602,0.0089624207466841],[0.040522642433643,0.07450870424509,-0.022540444508195]],[[0.0042016683146358,-0.013384655117989,-0.042089838534594],[0.0081551624462008,-0.016656711697578,0.0035509138833731],[0.048069305717945,0.026925256475806,0.080463878810406]],[[-0.018886610865593,0.0073850015178323,0.05126266553998],[0.0082030557096004,-0.044227212667465,-0.012915118597448],[0.0077168885618448,-0.011566555127501,0.039546739310026]],[[-0.065504774451256,0.081592172384262,0.089575342833996],[0.058517027646303,0.00087947596330196,0.010927890427411],[-0.034916341304779,-0.02821565233171,0.10178718715906]],[[-0.0077081057243049,0.10502044856548,-0.029917616397142],[0.031573787331581,0.0013212832855061,0.021632261574268],[0.010914386250079,0.016699342057109,0.0066263969056308]],[[-0.027542138472199,-0.0594537332654,0.0094905626028776],[-0.03548414260149,0.069951720535755,0.039765942841768],[-0.0043866629712284,-0.0012423024745658,-0.053815700113773]],[[0.049197096377611,-0.0075653195381165,0.0058653457090259],[-0.12099000811577,0.033948939293623,-0.060334227979183],[-0.0068402527831495,0.061230227351189,-0.060406591743231]],[[0.023169405758381,0.020120821893215,-0.032832052558661],[-0.062396582216024,0.06144231185317,-0.0094827972352505],[0.060586489737034,0.017361802980304,0.053057804703712]],[[0.018596209585667,-0.060824420303106,0.076153233647346],[0.036688752472401,-0.016965446993709,0.017968313768506],[-0.0030799387022853,-0.01745530217886,-0.063510932028294]],[[0.0033887911122292,0.061311170458794,0.048641018569469],[0.0099947117269039,-0.024241883307695,0.057451847940683],[-0.005188996437937,-0.073384754359722,-0.066946439445019]],[[-0.042694397270679,-0.066228315234184,0.055494092404842],[-0.020153494551778,-0.012387341819704,-0.0066331261768937],[-0.05795368924737,0.059395633637905,0.04913717135787]],[[-0.057750187814236,-0.029427887871861,-0.016209421679378],[-0.0092005794867873,-0.01470135524869,0.035239197313786],[0.0066183893941343,-0.090397417545319,0.052887499332428]],[[-0.040118761360645,-0.08541601151228,-0.044326730072498],[0.078662656247616,0.074445180594921,0.055795550346375],[0.0034521990455687,-0.029825957491994,0.050923652946949]],[[-0.018470130860806,-0.040750674903393,0.0067757903598249],[-0.0037876137066633,0.087298460304737,-0.039697859436274],[0.047438982874155,-0.065150640904903,-0.046327918767929]],[[0.058270130306482,0.019464349374175,-0.02170092985034],[0.045162588357925,0.001695686718449,-0.014618050307035],[0.044614847749472,-0.019633652642369,-0.063235104084015]],[[0.020148815587163,0.032368514686823,0.059626542031765],[-0.08015850931406,0.0055131358094513,-0.12020061910152],[0.010889638215303,0.07807095348835,-0.036712680011988]],[[-0.022831944748759,-0.044245548546314,-0.0012210869463161],[0.0075248372741044,0.04305486753583,0.019677618518472],[0.007703528739512,-0.041972041130066,0.011832198128104]],[[0.003188269212842,-0.0024396635126323,0.056644182652235],[0.06223426014185,-0.0082461312413216,0.021014334633946],[0.02386605553329,0.003671052865684,-0.006020525470376]],[[-0.019512251019478,0.060153923928738,-0.029474232345819],[-0.086929075419903,0.051301959902048,0.053130831569433],[-0.013671523891389,0.056357093155384,0.011177816428244]],[[0.025379274040461,-0.050345033407211,0.023856123909354],[-0.046361390501261,-0.01776584610343,0.0046351156197488],[0.093142785131931,0.096341863274574,0.0025796762201935]],[[-0.061609257012606,-0.033098232001066,-0.11501683294773],[-0.053501412272453,-0.072588317096233,0.018112789839506],[-0.048328053206205,-0.030125046148896,0.018134746700525]],[[-0.0024093706160784,0.051853273063898,0.03877092897892],[-0.057562902569771,-0.012741687707603,0.12461489439011],[0.0237095952034,0.0032559563405812,-0.0078052463941276]],[[0.030939385294914,-0.0054011880420148,0.027687091380358],[0.032964628189802,0.010202250443399,0.0023896740749478],[-0.033288016915321,0.10883047431707,0.011846538633108]],[[0.015402824617922,0.024230355396867,0.012995389290154],[-0.0095686130225658,0.068174190819263,0.02994248829782],[-0.020144037902355,0.080541841685772,0.05946072191]],[[0.019464652985334,-0.032032202929258,-0.011336880736053],[0.00015870972129051,-0.017316212877631,0.028566060587764],[-0.023988869041204,0.022381218150258,-0.027221236377954]],[[-0.029556136578321,0.0013161776587367,-0.056639730930328],[-0.059427157044411,-0.024278165772557,-0.011471309699118],[0.066207468509674,-0.013196786865592,-0.061407070606947]],[[0.017895629629493,-0.021567428484559,-0.015855800360441],[-0.043831624090672,-0.065017074346542,-0.06270057708025],[0.073654316365719,-0.073872648179531,0.025910258293152]],[[0.0075118117965758,0.068984247744083,0.10490749031305],[0.063871867954731,0.0067938775755465,-0.012087781913579],[-0.075075633823872,0.0072404239326715,0.056797534227371]],[[0.0062930583953857,0.056164488196373,-0.039693269878626],[0.04705922305584,-0.051912914961576,0.0011161066358909],[0.048065669834614,-0.001188604044728,-0.04290709644556]],[[-0.053162027150393,0.015473396517336,-0.059796467423439],[0.0049255695194006,0.01930389739573,0.024580121040344],[-0.030504932627082,0.027542578056455,-0.0074707651510835]],[[0.051559157669544,-0.03593935072422,0.012605186551809],[-0.079901345074177,0.015110312961042,-0.0029757376760244],[0.0013408127706498,-0.10348453372717,-0.012553792446852]],[[-0.0039206305518746,0.071927309036255,0.027428986504674],[0.027868580073118,-0.035947866737843,0.0063626850023866],[0.030909020453691,0.001881718984805,0.024374483153224]],[[0.010602700524032,0.079581052064896,0.014714887365699],[0.049762796610594,0.11022064089775,0.062008704990149],[-0.033875454217196,0.055731203407049,0.048650152981281]],[[0.0056280791759491,0.036184150725603,0.027398224920034],[0.046010937541723,-0.033617254346609,0.026324095204473],[0.016776796430349,0.061314329504967,0.021912449970841]],[[-0.0065303891897202,0.02113220654428,-0.059575263410807],[-0.081371515989304,0.093321219086647,0.072364911437035],[-0.0037706994917244,0.0044798352755606,-0.06340729445219]],[[0.0024136819411069,0.042364154011011,0.027182817459106],[-0.10391441732645,-0.03084328584373,-0.022685052827001],[0.037125237286091,-0.025335371494293,-0.033785540610552]],[[0.042620897293091,-0.0086215371266007,0.084058590233326],[0.051434155553579,0.016842689365149,0.03932786360383],[0.042324371635914,-0.00049433077219874,0.012073216959834]],[[0.070497132837772,-0.049377769231796,-0.028390847146511],[-0.035326283425093,-0.007462230976671,-0.0040362081490457],[-0.038722440600395,-0.021335100755095,0.0078259408473969]],[[0.018063241615891,-0.023325527086854,0.0077747460454702],[-0.028189025819302,0.040982395410538,0.0076802619732916],[-0.072651155292988,-0.053194504231215,-0.019169310107827]],[[0.05380030721426,-0.0063276006840169,0.071188017725945],[0.0089004402980208,-0.037175372242928,-0.036504857242107],[-0.025339467450976,-0.019469082355499,-0.046367444097996]],[[0.014658567495644,-0.0066362763755023,-0.025938393548131],[0.018827864900231,-0.042622815817595,0.02382193505764],[-0.028161687776446,-0.035867102444172,-0.031097399070859]],[[0.039401493966579,-0.060391165316105,-0.047665003687143],[-0.021340109407902,-0.03126410767436,-0.049090776592493],[0.017534973099828,0.0094965798780322,0.083385474979877]],[[0.024759192019701,0.012365593574941,-0.045898295938969],[0.017131583765149,-0.00065966183319688,0.043894082307816],[-0.010150774382055,0.031267147511244,0.0020005241967738]],[[0.021370405331254,-0.0078931273892522,0.053623057901859],[0.026523584499955,0.022230004891753,-0.05898679420352],[0.052424907684326,0.013649050146341,-0.016511356458068]],[[0.0057052387855947,0.018674340099096,0.004329273942858],[-0.0013148160651326,0.0083227036520839,0.013264595530927],[0.037473700940609,-0.021391697227955,0.039220340549946]],[[-0.047219805419445,0.049775969237089,-0.011337078176439],[0.017659058794379,0.029422929510474,0.017808442935348],[-0.066042639315128,0.028463954105973,-0.024726338684559]],[[-0.094941027462482,0.0071158548817039,0.059439353644848],[0.02545079216361,0.00070594763383269,0.023791611194611],[0.048623282462358,-0.03552982583642,0.034219954162836]],[[-0.03573202714324,0.044178377836943,0.041855815798044],[0.064123272895813,0.021443329751492,0.053227659314871],[-0.038444019854069,-0.0053091193549335,0.049509271979332]],[[-0.033193446695805,-0.0069785369560122,0.01042402535677],[-0.083838425576687,-0.068833239376545,0.042554788291454],[0.071966014802456,-0.00062095740577206,0.013405746780336]],[[-0.016075432300568,0.026303054764867,-0.038035877048969],[8.7859974883031e-05,-0.019661033526063,0.08801457285881],[0.041476354002953,0.012414038181305,0.02287195250392]],[[0.053755365312099,-0.022313559427857,-0.017399193719029],[-0.015432682819664,0.048306804150343,-0.074808284640312],[-0.029379226267338,-0.073671296238899,0.028980823233724]],[[-0.018304781988263,0.024538680911064,0.028745830059052],[0.073461204767227,0.026691498234868,-0.024238515645266],[-0.036846153438091,0.038016505539417,0.059181313961744]],[[-0.030453654006124,0.13566283881664,0.03320350497961],[0.050711493939161,0.0097115440294147,-0.02959842979908],[0.022051295265555,-0.067104615271091,0.054934144020081]],[[-0.061212413012981,-0.013226799666882,0.0052871108055115],[0.1094746440649,-0.090197034180164,-0.031985949724913],[-0.022663876414299,0.039125498384237,0.0069176289252937]],[[0.014641140587628,-0.048661772161722,0.019968191161752],[0.017827929928899,-0.060046657919884,0.097062647342682],[0.012389184907079,0.021253285929561,-0.00026764476206154]],[[0.040558028966188,0.015600933693349,0.096221208572388],[0.015639238059521,-0.025083720684052,0.0027074867393821],[-0.024445051327348,-0.0018796456279233,0.0021666898392141]],[[0.054690275341272,0.013922591693699,0.054295863956213],[0.00017281259351876,0.03187433257699,0.091536939144135],[-0.0201993342489,0.059565734118223,0.033977635204792]],[[-0.015281136147678,-0.028113355860114,0.048084121197462],[-0.083109200000763,0.064179167151451,-0.03888238966465],[0.086715325713158,0.021192204207182,0.012522114440799]],[[-0.04141715914011,0.055312313139439,-0.017912782728672],[0.0078354747965932,0.042475242167711,0.019151091575623],[0.043678790330887,0.040645185858011,0.036218699067831]],[[0.030726607888937,-0.0052298647351563,-0.00054818735225126],[-0.010814927518368,0.041591763496399,0.063507623970509],[-0.035872239619493,-0.020895261317492,-0.016400033608079]],[[0.034798629581928,0.024601535871625,0.010571434162557],[0.021998954936862,0.074568033218384,-0.041949085891247],[0.022562373429537,0.0039190240204334,0.082837775349617]],[[-0.042944438755512,0.016354214400053,0.043024532496929],[0.038550239056349,0.050264660269022,0.0065221446566284],[0.048985976725817,0.059867650270462,0.024200037121773]],[[0.040693193674088,0.03246907889843,0.003014761256054],[-0.014726554043591,-0.04322113469243,0.048302330076694],[-0.06797944009304,0.038971640169621,0.051827426999807]],[[0.040878936648369,0.030759731307626,-0.049273118376732],[0.022062135860324,-0.0085869627073407,-0.04229074716568],[-0.0032863619271666,-0.019183151423931,0.037743777036667]],[[-0.017459189519286,0.046632379293442,-0.0057949302718043],[0.015761181712151,-0.014813457615674,-0.028519980609417],[-0.033396072685719,0.07150649279356,-0.028936266899109]],[[-0.025430962443352,-0.10628494620323,0.012134430930018],[0.01260095462203,-0.029888303950429,0.039459217339754],[0.11159565299749,0.0053633628413081,0.031784079968929]],[[-0.040967833250761,-0.036462713032961,-0.037803817540407],[-0.089197896420956,-0.071361362934113,-0.017323879525065],[-0.017247227951884,0.021556397899985,-0.10970023274422]],[[0.0025219745002687,0.069631062448025,0.078344650566578],[0.047318339347839,0.030368570238352,0.013213042169809],[0.015741020441055,0.029905183240771,-0.019361227750778]],[[-0.0094663491472602,-0.0088876271620393,-0.079531446099281],[0.1531987041235,-0.0011570033384487,0.031161867082119],[0.025834750384092,0.11181279271841,0.025215039029717]],[[0.0327376909554,0.038409914821386,0.047794036567211],[-0.024304827675223,-0.052262809127569,-0.031894888728857],[-0.124407812953,0.029958412051201,-0.0058132335543633]],[[-0.043843656778336,0.027286337688565,0.026939976960421],[-0.039467446506023,0.032844308763742,-0.066737487912178],[0.029315836727619,0.0030290114227682,0.026343276724219]],[[-0.0095543060451746,0.01153900846839,-0.013803312554955],[-0.0075374636799097,0.0041487864218652,0.033653039485216],[0.011784726753831,-0.050693333148956,0.030769104138017]],[[0.0086122928187251,-0.013343837112188,0.046630531549454],[-0.0082812337204814,0.057961188256741,-0.047269895672798],[-0.030602792277932,0.014917506836355,0.025814268738031]],[[0.019107328727841,-0.0010263615986332,0.051871117204428],[0.042591653764248,0.026833534240723,0.026017801836133],[-0.018948486074805,0.047859564423561,-0.0093098180368543]],[[0.019217409193516,0.074616156518459,0.024274986237288],[-0.053876608610153,-0.014057451859117,0.041558593511581],[0.046649593859911,0.0015969900414348,0.020818443968892]],[[-0.033306654542685,-0.01734634116292,0.050372686237097],[0.00037336701643653,-0.022932585328817,0.041902564466],[0.057755347341299,-0.069938935339451,-0.030348362401128]],[[0.019709382206202,-0.0069505674764514,-0.035069454461336],[0.0053809657692909,-0.016819521784782,-0.045111227780581],[0.01762362010777,0.022281968966126,0.035362582653761]],[[0.030132215470076,0.092841401696205,0.08808159083128],[0.048015948385,-0.041142482310534,-0.018992446362972],[0.014761438593268,0.066130630671978,0.020872378721833]],[[-0.058310780674219,0.10570471733809,0.0033661061897874],[0.052844565361738,0.01937610283494,-0.035558022558689],[0.034640081226826,-0.0059521365910769,-0.038765780627728]],[[0.057776611298323,0.04454305768013,-0.070261582732201],[-0.010378876700997,0.020102733746171,0.01228837762028],[0.11161343753338,0.030761925503612,0.031139772385359]],[[-0.015300420112908,-0.0066761178895831,-0.027211567386985],[0.030979895964265,0.0055438503623009,-0.0025458980817348],[-0.0024195038713515,0.00014167184417602,0.027956625446677]],[[0.092650234699249,0.0046247993595898,-0.017257243394852],[0.049116421490908,-0.0080543532967567,-0.011515198275447],[0.013935974799097,-0.011305690743029,0.0032174503430724]],[[-0.053388085216284,-0.035305202007294,-0.086160697042942],[0.025439674034715,-0.069109581410885,0.001624749507755],[0.055494897067547,-0.050958923995495,-0.012722590006888]],[[0.036257356405258,0.040869325399399,-0.049391772598028],[-0.026331650093198,0.019772196188569,0.054467845708132],[-0.0073790000751615,-0.057155281305313,0.051311448216438]],[[0.0040337573736906,0.0077748144976795,0.01264741178602],[0.016899824142456,0.046368695795536,-0.029503559693694],[0.0086543513461947,-0.023834962397814,0.0346485003829]],[[-0.035628292709589,0.0010534279281273,0.060490127652884],[-0.021884463727474,0.030735777691007,0.0024420791305602],[0.0070731234736741,-0.041580762714148,-0.045317500829697]],[[0.048686474561691,-0.030337139964104,0.041806515306234],[0.02368325740099,-0.078751623630524,-0.092864103615284],[-0.017123339697719,-0.00071383686736226,-0.015542157925665]],[[0.04427207633853,-0.022868167608976,0.022573374211788],[0.032232496887445,0.039605345577002,-0.020296616479754],[-0.015578110702336,0.099786050617695,-0.035675745457411]],[[0.0069294888526201,-0.056615374982357,0.059561215341091],[0.020638359710574,0.01554414909333,0.10156575590372],[-0.019132323563099,0.064238138496876,-0.0074292439967394]],[[0.02151152305305,0.0030536430422217,-0.044158346951008],[0.014216663315892,-0.074288249015808,0.037849251180887],[0.025016516447067,0.036430805921555,-0.033286944031715]],[[-0.004787293728441,-0.021006828173995,0.006701294798404],[0.027667952701449,0.039238799363375,0.038077913224697],[0.0088861593976617,0.032088629901409,0.036050397902727]],[[-0.025309786200523,-0.03211097791791,-0.020754421129823],[-0.035102382302284,-0.019927700981498,-0.060161702334881],[-0.0073321401141584,0.021143320947886,0.036169044673443]],[[-0.033979319036007,0.028897006064653,0.12211710959673],[-0.070546619594097,0.06910016387701,-0.019278230145574],[0.035245910286903,0.0023816528264433,-0.015224224887788]],[[0.014648737385869,-0.034973554313183,0.078526072204113],[-0.043278560042381,0.062805488705635,0.039107825607061],[0.0042106476612389,-0.068750113248825,0.10868705064058]],[[-0.030401246622205,0.041417259722948,0.038434557616711],[-0.060232032090425,-0.053217597305775,0.040402710437775],[-0.046936582773924,-0.048537757247686,-0.075444467365742]],[[0.028525216504931,0.0010889584664255,-0.022825511172414],[-0.014029261656106,0.0041075013577938,-0.063148707151413],[0.022114591673017,0.0054267551749945,-0.016216669231653]],[[0.024488229304552,0.060694810003042,-0.02837092615664],[0.0056509282439947,0.029508715495467,-0.041599456220865],[-0.067246705293655,0.021220242604613,0.051234971731901]],[[-0.019590497016907,0.12519027292728,0.087704859673977],[-0.015351916663349,-0.01671963557601,0.033814702183008],[0.073194727301598,0.021729225292802,-0.063735283911228]],[[0.020817680284381,0.08568350225687,-0.020150171592832],[-0.025784963741899,-0.0063035828061402,-0.004828026983887],[0.028815496712923,-0.020275626331568,0.0068161194212735]],[[0.015625240281224,-0.059783220291138,-0.043425250798464],[-0.052277453243732,-0.015170789323747,0.02770135179162],[0.049325842410326,-0.00029427206027322,-0.038599882274866]],[[0.051879022270441,0.062383066862822,-0.032799798995256],[0.080844476819038,-0.046462889760733,0.03599688410759],[0.060299307107925,0.051278308033943,-0.0083707068115473]],[[-0.03118708729744,-0.036595653742552,0.027025148272514],[0.0022455295547843,-0.047685150057077,0.04827967658639],[0.06659272313118,0.020306073129177,-0.055838461965322]],[[-0.065457679331303,-0.042528890073299,-0.0057996017858386],[-0.033801704645157,0.028260581195354,0.01495074108243],[-0.02729800902307,-0.033494554460049,0.059521846473217]],[[0.0085554104298353,-0.025645503774285,-0.027496134862304],[-0.016744460910559,0.014939714223146,-0.021215924993157],[-0.026227181777358,-0.046414449810982,0.018067380413413]],[[0.022512292489409,0.0034260773099959,-0.069943286478519],[-0.0066293552517891,0.036831501871347,0.054092921316624],[-0.021964790299535,0.054839797317982,0.0016287950566038]],[[-0.039675567299128,-0.040099699050188,-0.0091451480984688],[-0.029054051265121,-0.0019536474719644,0.035569179803133],[0.0039541819132864,-0.012158717028797,-0.053437702357769]],[[-0.025329004973173,-0.035721238702536,-0.029482822865248],[0.0022803565952927,0.035014815628529,-0.060674510896206],[-0.043970659375191,-0.065198823809624,-0.012776589952409]],[[-0.058780740946531,-0.025267379358411,0.023268066346645],[0.045423604547977,-0.0074047180823982,0.011927805840969],[0.10402720421553,-0.079651616513729,0.022369228303432]],[[0.011501708999276,0.0082481922581792,0.013843857683241],[-0.067483134567738,0.090841121971607,0.026388183236122],[0.013986391946673,-0.033758640289307,0.10333395004272]],[[-0.039331506937742,-0.056521888822317,-0.053197801113129],[-0.012520191259682,-0.060257952660322,-0.038520894944668],[0.015694646164775,0.0010194049682468,-0.026683434844017]],[[-0.042316738516092,0.0056419102475047,-0.040451806038618],[0.037450853735209,0.049092467874289,0.090206608176231],[0.017482900992036,0.067991495132446,0.069276757538319]],[[-0.016875248402357,-0.040238939225674,-0.002765683690086],[0.011750412173569,0.0054593249224126,-0.029970828443766],[-0.013382180593908,-0.0030356289353222,-0.038616992533207]],[[0.07090999186039,0.0069804112426937,-0.0065781241282821],[-0.036850389093161,0.050532907247543,-0.011946374550462],[-0.0057242852635682,0.006083641666919,-0.020732399076223]],[[-0.045584835112095,-0.0144412079826,0.037795562297106],[-0.0046549211256206,0.036725733429193,-0.022473119199276],[0.018328992649913,0.024595979601145,0.013727094978094]],[[-0.0044695464894176,-0.062445964664221,0.015639252960682],[-0.0625359416008,0.016776707023382,-0.00025115930475295],[-0.011075667105615,-0.10757522284985,0.020831383764744]],[[0.060102712363005,0.0089768627658486,0.036114096641541],[-0.021487560123205,-0.051307111978531,0.033471096307039],[0.047721996903419,-0.048235680907965,0.020797785371542]],[[0.032805748283863,0.00066810025600716,-0.011971777305007],[0.051868591457605,-0.054083090275526,0.066620588302612],[0.0079925255849957,0.055285442620516,-0.07186570763588]],[[-0.011616699397564,0.0072557153180242,-0.0089495200663805],[0.050266195088625,0.02904624119401,0.006037917919457],[-0.029095735400915,0.04860145971179,0.015261025168002]],[[-0.017704162746668,0.059194933623075,0.038457479327917],[-0.019426578655839,0.026514669880271,-0.038686756044626],[-0.024838820099831,0.041559714823961,-0.017418522387743]]],[[[0.018401814624667,0.090708136558533,0.12108455598354],[-0.045669451355934,-0.013800786808133,-0.04223558306694],[-0.08844456076622,0.026337256655097,-0.012127283029258]],[[-0.01436220575124,-0.080883778631687,-0.020456079393625],[-0.10759353637695,-0.059553723782301,-0.12865480780602],[-0.084605753421783,-0.040564242750406,0.010018507950008]],[[-0.16569817066193,-0.12020621448755,-0.026720179244876],[-0.049919161945581,0.012124833650887,-0.082053616642952],[0.057966448366642,0.076403364539146,-0.0016725836321712]],[[0.046820338815451,0.092241309583187,0.097095906734467],[0.056081932038069,0.098787948489189,-0.010939564555883],[0.076351679861546,0.0038254207465798,-0.018570778891444]],[[-0.069043926894665,0.088976755738258,0.10039081424475],[0.034961555153131,0.055627256631851,-0.052538357675076],[0.027574561536312,-0.021332271397114,-0.02968830242753]],[[0.023594435304403,-0.033848732709885,-0.10543854534626],[-0.025849875062704,-0.007967671379447,-0.055557459592819],[-0.037124540656805,0.028302950784564,0.094008445739746]],[[-0.054965056478977,-0.0041461195796728,0.0071771801449358],[0.0035822046920657,-0.12575195729733,-0.038468558341265],[-0.093874357640743,-0.097918696701527,-0.10683491826057]],[[-0.070008829236031,0.14579901099205,-0.15225611627102],[0.030154379084706,-0.00088148395298049,0.12147157639265],[0.081682212650776,0.075347140431404,0.076661564409733]],[[0.016268603503704,0.062206923961639,0.047418396919966],[0.0042577525600791,-0.10937266796827,0.06031521037221],[0.0058346246369183,-0.031917937099934,-0.0053053284063935]],[[-0.087358996272087,-0.0089094182476401,0.10692416131496],[-0.050269421190023,0.042729128152132,-0.072809010744095],[-0.078979417681694,-0.001509431633167,0.00095395307289436]],[[0.11835064738989,0.064308159053326,-0.0096432222053409],[0.025684211403131,0.10099096596241,0.087789341807365],[-0.059400264173746,-0.01259957998991,0.042390186339617]],[[0.029112812131643,-0.1004648655653,-0.012403890490532],[-0.014238590374589,-0.077061846852303,-0.016868818551302],[0.073166891932487,-0.12319694459438,-0.023631459102035]],[[0.1963783800602,0.12983676791191,0.18904282152653],[0.17011816799641,0.071260124444962,0.052937693893909],[0.077268518507481,0.11987079679966,0.014416658319533]],[[0.10933678597212,0.15207836031914,0.060163524001837],[-0.020918186753988,0.11273949593306,0.013954753056169],[0.016130778938532,-0.01686867326498,-0.078240789473057]],[[-0.096097581088543,0.030218666419387,-0.016144521534443],[0.022990450263023,-0.0059618526138365,-0.037654463201761],[0.091399155557156,0.0035862524528056,0.050246015191078]],[[0.039278510957956,-0.020617440342903,0.028619773685932],[-0.035929217934608,-0.060488313436508,-0.031260810792446],[0.0044397870078683,-0.097851417958736,-0.1074355468154]],[[0.036595560610294,0.061602842062712,-0.097233556210995],[0.014450572431087,0.13367208838463,0.039728730916977],[0.0077060903422534,0.001437577418983,0.039102729409933]],[[-0.033973898738623,-0.15668839216232,-0.039559047669172],[0.048650398850441,-0.01646176353097,0.070958189666271],[-0.042967338114977,-0.046132370829582,0.038792759180069]],[[0.00515739293769,-0.033284828066826,-0.0065666777081788],[0.064970195293427,0.044694762676954,-0.096798099577427],[0.080621257424355,0.0084534911438823,-0.040431033819914]],[[-0.024901289492846,-0.0020219404250383,-0.00049846986075863],[-0.047029051929712,-0.10008216649294,-0.011137201450765],[-0.039696399122477,-0.043816279619932,0.03747134655714]],[[-0.060745570808649,-0.038856148719788,-0.089752331376076],[-0.15250119566917,-0.1117328107357,-0.048598498106003],[-0.02636861987412,-0.11371641606092,-0.14950217306614]],[[0.013326146639884,-0.0079153859987855,0.063143648207188],[-0.061112273484468,0.034049555659294,0.12453785538673],[-0.03512192890048,0.035295329988003,-0.1327248364687]],[[0.014773262664676,-0.077217362821102,0.029694678261876],[-0.11039204150438,-0.17506872117519,0.029351705685258],[-0.013144173659384,0.068253055214882,-0.0082450918853283]],[[0.017734494060278,0.070294491946697,0.049874804913998],[-0.030450711026788,0.0074249189347029,0.028166083618999],[-0.025787647813559,-0.065829694271088,-0.26075601577759]],[[0.10186773538589,-0.095580115914345,-0.16653047502041],[0.02300470508635,-0.059407591819763,-0.064370818436146],[-0.074797928333282,0.0025675112847239,-0.051927950233221]],[[0.069915682077408,0.040134619921446,0.0031856084242463],[0.042470578104258,-0.097871169447899,-0.04684853926301],[0.0054290858097374,-0.097780600190163,-0.091353751718998]],[[-0.060200523585081,-0.052752643823624,0.10717313736677],[0.038911070674658,0.033308476209641,0.044834766536951],[0.067650392651558,0.03684614226222,0.0092564886435866]],[[0.2469292730093,-0.042041026055813,0.066832914948463],[0.089043132960796,0.018532196059823,-0.034773658961058],[-0.016310982406139,-0.12123966962099,-0.030817961320281]],[[0.039828766137362,-0.034230638295412,0.0018076100386679],[-0.028568649664521,-0.10603430867195,0.00082682952051982],[-0.062912002205849,0.015168479643762,0.028796032071114]],[[-0.088119611144066,-0.072083584964275,0.015666974708438],[-0.077491641044617,-0.046242151409388,-0.068444140255451],[0.0033448212780058,-0.14315004646778,-0.018864061683416]],[[0.074072368443012,-0.011940924450755,-0.011168274097145],[0.011269657872617,-0.028139594942331,0.055377494543791],[0.01011267863214,0.1494374871254,0.019795160740614]],[[-0.02577331662178,0.092003732919693,0.011506215669215],[0.0059252553619444,0.0091239269822836,0.096988223493099],[0.054460447281599,-0.021983852609992,-0.0017508553573862]],[[0.1934023052454,-0.01967603340745,0.048447746783495],[0.093913115561008,-0.0012259419308975,-0.065472848713398],[-0.046691190451384,0.041743777692318,0.24829685688019]],[[-0.0027312631718814,-0.053843662142754,-0.074166685342789],[0.060619130730629,0.022012934088707,-0.019394403323531],[0.10754851251841,0.030257567763329,2.3525328288088e-05]],[[-0.017875092104077,-0.016708262264729,0.00090132048353553],[0.0073041650466621,0.02189289405942,-0.078299276530743],[0.017085427418351,0.018113814294338,-0.16107460856438]],[[-0.072071775794029,-0.043013036251068,0.049450326710939],[-0.03739831969142,-0.017784932628274,0.020557260140777],[-0.039380040019751,0.11441899836063,0.0041828835383058]],[[-0.084211222827435,0.17770405113697,0.083909057080746],[-0.15734557807446,-3.2350129913539e-05,0.092482231557369],[-0.023798245936632,-0.010483157821,-0.076281204819679]],[[0.14020159840584,0.0079941004514694,-0.081543825566769],[0.017322987318039,0.060007631778717,-0.13449966907501],[-0.093038663268089,-0.027551453560591,-0.038350809365511]],[[-0.089037925004959,-0.025519331917167,-0.013769681565464],[-0.0026513400953263,-0.060684386640787,-0.10323821753263],[-0.063356518745422,0.050793923437595,-0.075144343078136]],[[0.0074075344018638,0.19290201365948,0.067728132009506],[0.024512743577361,0.032608672976494,0.077752619981766],[0.017810260877013,-0.089354053139687,0.011359421536326]],[[-0.025394514203072,0.0840068385005,-0.061781171709299],[-0.072206690907478,-0.10659009218216,-0.01532004121691],[-0.055920772254467,-0.11386338621378,-0.12067983299494]],[[8.0881800386123e-06,-0.067849017679691,0.0074206432327628],[0.070188999176025,-0.019624244421721,0.027567949146032],[0.031232653185725,0.042218334972858,0.12840799987316]],[[0.010661945678294,0.11163570731878,0.031803671270609],[0.16621407866478,0.087459579110146,-0.098793536424637],[0.1337983161211,0.013298556208611,0.040567882359028]],[[-0.086256556212902,-0.052966691553593,0.022076096385717],[-0.057788792997599,0.024735761806369,0.018234070390463],[0.003253576811403,0.085637554526329,-0.036946438252926]],[[-0.08555181324482,0.074351757764816,0.036716740578413],[-0.14678902924061,-0.041388403624296,-0.0058298837393522],[-0.050447814166546,-0.17268718779087,-0.095119990408421]],[[-0.0015349590685219,0.080734767019749,0.066591016948223],[0.091168083250523,0.061381876468658,0.090734526515007],[0.11623250693083,0.025285378098488,0.1067890226841]],[[-0.080557182431221,-0.088543243706226,0.16460055112839],[-0.07514276355505,0.031629290431738,0.0093489680439234],[-0.1078150421381,-0.071412831544876,0.043095517903566]],[[0.0027904745656997,-0.054941315203905,-0.24430891871452],[-0.042502906173468,-0.017009010538459,-0.037545934319496],[0.0099417455494404,0.031038153916597,0.028846815228462]],[[0.0036911403294653,0.065040402114391,0.051759477704763],[0.047900274395943,0.010799414478242,0.052613481879234],[0.027896016836166,-0.0060082012787461,0.057201530784369]],[[-0.010209841653705,-0.059233844280243,-0.0071898722089827],[-0.07142436504364,-0.041596204042435,0.0016471876297146],[-0.07465872913599,-0.037739872932434,0.00049886287888512]],[[0.0072481036186218,0.028886189684272,0.065308079123497],[-0.0067432979121804,0.14613534510136,-0.10038419812918],[-0.0036499027628452,0.16468757390976,0.016389736905694]],[[0.045462734997272,-0.046912129968405,-0.075631484389305],[-0.024611907079816,-0.085007205605507,-0.15751819312572],[-0.084466107189655,-0.12180724740028,-0.071999207139015]],[[-0.014551104046404,-0.044569548219442,-0.090094029903412],[0.076374650001526,0.025356456637383,-0.083044365048409],[0.01361265219748,-0.075086914002895,-0.0042041996493936]],[[0.18179480731487,0.077093407511711,-0.057190123945475],[0.15103277564049,0.057551063597202,0.0055598034523427],[0.12471217662096,0.020183108747005,-0.11878553032875]],[[0.097774691879749,0.0062243798747659,-0.016868021339178],[0.0010027232347056,-0.10434348881245,-0.083514839410782],[-0.011419591493905,0.218665599823,0.12930858135223]],[[0.1775811612606,0.01987755484879,0.035246130079031],[-0.063929922878742,0.049657169729471,0.035663388669491],[0.0094544542953372,-0.059519730508327,-0.029612917453051]],[[0.16761776804924,0.015763567760587,0.20494690537453],[-0.018330527469516,0.019757626578212,0.04068648815155],[0.013162926770747,0.046486627310514,0.07959521561861]],[[0.008900074288249,0.037075854837894,-0.060800351202488],[-0.0044772503897548,0.10672112554312,-0.053710293024778],[-0.046179492026567,0.061567787081003,-0.14252458512783]],[[0.037805616855621,0.036251433193684,0.19385099411011],[0.12818369269371,0.019839692860842,0.086405262351036],[0.064301803708076,-0.0063449954614043,0.094000563025475]],[[0.069835275411606,0.020935025066137,-0.079033620655537],[-0.0008470849134028,0.060884319245815,0.16640511155128],[0.028183562681079,0.01434691529721,0.14255727827549]],[[0.0075120604597032,-0.095597498118877,-0.064921848475933],[-0.041395705193281,-0.10389145463705,0.050041347742081],[0.032859724014997,-0.13685961067677,-0.033185627311468]],[[0.024112362414598,0.055749274790287,-0.12576103210449],[-0.060881860554218,-0.0045828763395548,-0.088865138590336],[-0.052463784813881,0.025533899664879,-0.11041874438524]],[[-0.024982459843159,-0.039221614599228,-0.06052041053772],[-0.073854602873325,-0.031566273421049,-0.12633366882801],[0.010792938061059,-0.043152689933777,0.12305324524641]],[[0.040237158536911,0.010836366564035,0.12456698715687],[0.0055445139296353,-0.028284719213843,0.097908042371273],[0.054134979844093,-0.13426181674004,-0.034808542579412]],[[0.12487778067589,0.080464005470276,-0.010085456073284],[0.058359380811453,0.083831816911697,-0.017483303323388],[0.031909875571728,0.045570377260447,0.0079787978902459]],[[0.022849533706903,0.031700544059277,0.0266795437783],[0.065758734941483,0.18726190924644,0.12931433320045],[0.06397407501936,0.014148634858429,-0.017688589170575]],[[0.035873528569937,-0.029998000711203,-0.069773763418198],[-0.023181416094303,-0.0030555529519916,-0.030521832406521],[-0.05600780621171,0.033297784626484,-0.044946242123842]],[[-0.0049466621130705,-0.13657611608505,0.13969480991364],[-0.042171828448772,0.054082099348307,-0.016149768605828],[0.027478534728289,0.033988639712334,0.011937973089516]],[[0.10690474510193,-0.034057751297951,-0.013715990819037],[0.07240080088377,0.064336597919464,0.034338265657425],[0.062459472566843,0.07576410472393,-0.015925593674183]],[[0.03079180046916,0.0028232906479388,0.012340305373073],[0.038200952112675,-0.002579894149676,0.062890350818634],[0.011982901021838,0.0043029738590121,0.15073396265507]],[[0.098485738039017,-0.0059917629696429,-0.1440127491951],[0.038962982594967,-0.041535507887602,-0.078824050724506],[0.0031281195115298,0.11144427210093,0.0223383679986]],[[-0.029411274939775,0.0023818796034902,0.015828179195523],[-0.083876989781857,-0.096699990332127,-0.0027739277575165],[0.021874165162444,-0.083465084433556,0.047422040253878]],[[0.14274981617928,0.06937650591135,0.0083266291767359],[0.16847355663776,0.017203835770488,0.089800745248795],[0.018963729962707,0.22252202033997,-0.064459085464478]],[[-0.097530618309975,-0.043117295950651,-0.059812847524881],[0.027547253295779,0.0073066866025329,-0.053044863045216],[0.017759643495083,0.10945628583431,-0.0041895392350852]],[[-0.080849327147007,-0.027663312852383,0.052592527121305],[-0.089350119233131,-0.016484797000885,0.006962479557842],[0.051290400326252,-0.086400680243969,0.083352088928223]],[[0.037439607083797,0.048293206840754,0.053971089422703],[0.045533835887909,0.084881752729416,-0.0077738687396049],[0.048802137374878,0.038531791418791,0.10686630010605]],[[0.15727688372135,0.015224470756948,-0.027480183169246],[0.10730478167534,0.069224983453751,0.073602318763733],[0.038573578000069,0.11769554764032,0.15241646766663]],[[0.25939574837685,0.020638298243284,-0.039284888654947],[0.098987244069576,-0.032208919525146,0.15583437681198],[-0.066429659724236,-0.006006533280015,0.028285514563322]],[[0.0015038455603644,-0.064363792538643,0.01664231903851],[0.041872579604387,-0.061602115631104,-0.057056542485952],[0.019566474482417,-0.094941653311253,0.08852081745863]],[[0.041448589414358,0.0099647920578718,-0.047910518944263],[-0.011623210273683,0.02024782449007,-0.040338989347219],[-0.073557943105698,-0.054632846266031,0.072875052690506]],[[0.0465451143682,-0.01862945407629,0.0087295630946755],[0.066447168588638,-0.063023157417774,0.0063617047853768],[0.044512815773487,0.023482630029321,-0.084774054586887]],[[0.072588942945004,-0.070909731090069,-0.063046164810658],[-0.031352903693914,0.08684066683054,-0.083154201507568],[-0.0046064150519669,-0.13744536042213,0.1849490404129]],[[-0.042777620255947,-0.12172415852547,0.033733524382114],[-0.14917321503162,0.022529689595103,0.084256395697594],[0.09368933737278,-0.048813279718161,0.074359335005283]],[[0.11566197127104,0.08934760838747,-0.0045424778945744],[0.023884994909167,-0.047420587390661,-0.057577028870583],[0.045303735882044,0.025984590873122,-0.0043630823493004]],[[0.059590477496386,-0.1342288851738,-0.039729457348585],[0.066162206232548,0.096512034535408,0.050642348825932],[-0.044674567878246,-0.16028282046318,-0.21662609279156]],[[0.044705219566822,0.0042132954113185,0.076213963329792],[0.0094570033252239,0.04500737786293,0.02124978415668],[0.0019883748609573,0.035607226192951,0.054504502564669]],[[0.065923444926739,0.10909360647202,0.13767336308956],[0.062253557145596,0.01488730777055,0.026489734649658],[-0.054456282407045,0.059874124825001,0.018030844628811]],[[0.043025564402342,-0.012170703150332,-0.082704357802868],[-0.12636283040047,0.064007721841335,0.071441076695919],[-0.038992200046778,0.0340406447649,0.03769875317812]],[[-0.03105685301125,-0.04340111091733,0.092393532395363],[0.0035924217663705,-0.035651478916407,-0.0055826157331467],[0.0087682800367475,-0.071627855300903,0.074539549648762]],[[-0.071963965892792,0.041188072413206,0.078608304262161],[-0.08276142179966,-0.061942968517542,0.082866862416267],[-0.10404388606548,-0.005711433943361,-0.027416795492172]],[[-0.0078377090394497,0.008911119773984,0.090168997645378],[0.00098993594292551,-0.13644954562187,-0.020651230588555],[0.01670909114182,0.0056765074841678,0.087842158973217]],[[0.012839871458709,0.04700668156147,-0.056333806365728],[-0.0585997402668,-0.045694824308157,0.050597306340933],[-0.011919578537345,-0.048554461449385,-0.15645730495453]],[[0.14078789949417,0.075127050280571,-0.046504564583302],[-0.004092182032764,0.074376121163368,0.076576940715313],[-0.0224718619138,0.0075254184193909,0.049592483788729]],[[-0.014260440133512,-0.088717922568321,-0.11530433595181],[0.0089850248768926,-0.046603869646788,-0.1635545194149],[0.070044130086899,-0.0095228189602494,-0.014943728223443]],[[-0.048440020531416,0.0040818359702826,0.083597123622894],[-0.18852126598358,-0.0062907603569329,0.059615124017],[-0.034994851797819,-0.10992080718279,-0.069068595767021]],[[-0.010248446837068,-0.0078920982778072,0.037780348211527],[0.015416041016579,0.0047068521380424,0.010556928813457],[-0.032485015690327,-0.033398393541574,0.14047792553902]],[[-0.0081227626651525,0.040679462254047,0.11109796911478],[0.092453464865685,0.07172716408968,-0.067815944552422],[0.090714007616043,0.059998981654644,0.02382642775774]],[[0.03845002502203,0.10334493219852,0.071240425109863],[0.1626875847578,0.093022540211678,0.013052891008556],[0.14316239953041,0.19880886375904,0.12960812449455]],[[0.012445976957679,0.0059976326301694,0.066213741898537],[0.046902816742659,-0.0059085474349558,-0.091431602835655],[0.07422848790884,0.037802238017321,-0.0357725918293]],[[0.13026742637157,-0.031993925571442,0.10018292814493],[-0.018660746514797,0.086973108351231,0.0015164676588029],[0.065790265798569,-0.029813764616847,-0.034944791346788]],[[-0.20483966171741,-0.06766651570797,-0.18542712926865],[-0.1601294875145,-0.11504512280226,-0.011716402135789],[-0.17782264947891,0.049450810998678,0.19562052190304]],[[0.091234520077705,0.05189822986722,0.13794568181038],[0.16035145521164,-0.0097435796633363,-0.035155698657036],[0.085637845098972,-0.028899852186441,-0.021144639700651]],[[-0.16856607794762,-0.0038783545605838,0.11341464519501],[-0.046188402920961,0.059562440961599,0.15274955332279],[-0.024354910477996,0.060659691691399,0.036238636821508]],[[-0.090818122029305,-0.11367327719927,0.052831709384918],[-0.13387893140316,-0.23953796923161,0.012343786656857],[-0.038857374340296,0.012370197102427,0.0099203577265143]],[[-0.077410690486431,-0.060545276850462,0.13240011036396],[-0.070614755153656,-0.071673415601254,0.12630520761013],[0.0014307899400592,-0.034820050001144,0.042014166712761]],[[-0.0014471058966592,0.020349431782961,0.17999422550201],[-0.054658655077219,-0.00072252901736647,0.11806257069111],[-0.092631630599499,0.049807157367468,0.092940665781498]],[[0.020831702277064,0.024392887949944,0.16425517201424],[-0.032133933156729,0.014837215654552,-0.05211166664958],[0.019112348556519,0.052931576967239,-0.16819559037685]],[[0.0072826510295272,0.052399437874556,0.12890736758709],[-0.017116881906986,-0.053899671882391,-0.024767242372036],[-0.037276443094015,0.048778191208839,-0.1049066260457]],[[0.055605735629797,0.039646483957767,-0.038819942623377],[-0.02460265532136,-0.02749140560627,-0.099079057574272],[-0.032358035445213,0.088614769279957,-0.012730990536511]],[[0.11734589189291,-0.10021231323481,-0.0449921451509],[0.0055146203376353,0.019742680713534,0.044753666967154],[-0.001258147880435,0.023874690756202,0.002151663415134]],[[0.056059911847115,0.035061787813902,0.023370683193207],[0.021407276391983,-0.013338628225029,-0.0487453751266],[-0.0039519062265754,-0.089072957634926,-0.0065587409771979]],[[0.046334695070982,0.070337571203709,0.031067276373506],[-0.12650828063488,-0.0022529475390911,-0.16403266787529],[-0.092271082103252,-0.11169161647558,-0.18124276399612]],[[-0.047479666769505,-0.016951885074377,0.013816026970744],[-0.024791408330202,-0.0028309407643974,0.025340672582388],[0.030336320400238,0.043164901435375,0.058344941586256]],[[-0.12416949123144,-0.030421262606978,0.03835329785943],[-0.054040346294641,-0.034003954380751,-0.036945622414351],[0.020048409700394,0.026108520105481,-0.037077594548464]],[[0.040390465408564,0.019056284800172,-0.0294483974576],[-0.058476079255342,-0.0066476101055741,-0.048648715019226],[-0.059341803193092,0.056448999792337,-0.012592832557857]],[[0.07277125120163,-0.071364276111126,-0.12491679936647],[0.011938071809709,-0.045066919177771,0.031170392408967],[0.022596810013056,0.0017146239988506,-0.049551013857126]],[[-0.055666573345661,0.019400212913752,0.072164840996265],[-0.0093623707070947,0.0020013530738652,0.065061189234257],[-0.0029050896409899,0.041843723505735,0.041562888771296]],[[-0.018284004181623,-0.050412733107805,0.08006901293993],[0.016949083656073,-0.087923176586628,-0.089915156364441],[0.0022311783395708,-0.045777551829815,-0.075726799666882]],[[-0.091438427567482,-0.0090902913361788,-0.067211516201496],[-0.077869310975075,-0.074723161756992,-0.1371243596077],[-0.014020862989128,-0.076999709010124,-0.065348751842976]],[[0.092210583388805,0.070571467280388,0.090476810932159],[0.011621334590018,0.0043215341866016,0.051085870712996],[-0.050888542085886,-0.15921521186829,0.035830974578857]],[[-0.07992984354496,-0.10830101370811,-0.05800649151206],[-0.028418440371752,-0.039647310972214,0.002596000675112],[-0.060380041599274,0.017427301034331,0.047995839267969]],[[-0.0086374301463366,-0.18922990560532,-0.22473596036434],[-0.21482308208942,-0.12302658706903,0.011317542754114],[-0.18889339268208,-0.10435498505831,-0.13813117146492]],[[0.11403930187225,0.050807405263186,-0.20256073772907],[0.046056933701038,0.0046607227995992,-0.14671595394611],[-0.016829313710332,-0.091714516282082,-0.15186674892902]],[[-0.011333591304719,-0.012494351714849,-0.12001956254244],[0.023176582530141,-0.18710438907146,-0.08809170871973],[0.12995278835297,-0.097316287457943,0.012464441359043]],[[0.072772055864334,0.017294814810157,-0.038300983607769],[0.048273712396622,0.042843993753195,-0.00029637821717188],[-0.084588326513767,0.076616622507572,-0.010672806762159]],[[0.024722779169679,-0.054102655500174,-0.26442500948906],[0.028727632015944,-0.044665217399597,0.036883398890495],[-0.093076206743717,0.090688794851303,0.11230970919132]],[[-0.049483928829432,0.13114137947559,0.058776564896107],[0.031486492604017,0.069116078317165,0.10792669653893],[0.14758135378361,0.073353096842766,0.027877599000931]],[[-0.072482034564018,0.080601960420609,0.063848219811916],[-0.031853571534157,0.019054815173149,-0.065528683364391],[-0.048095721751451,0.0031835902482271,0.025662003085017]]],[[[0.0041132383048534,-0.021198054775596,0.046949043869972],[-0.0032494815532118,0.03359642252326,0.047677990049124],[-0.0014928283635527,-0.019587168470025,0.086462073028088]],[[0.0055214590393007,0.004998495336622,-0.074280381202698],[-0.027568552643061,-0.085580267012119,0.030660403892398],[0.023285374045372,-0.031027238816023,0.0073117935098708]],[[0.029282551258802,0.056614305824041,0.0065393620170653],[0.12100199609995,-0.0043194615282118,0.011607106775045],[0.022485040128231,-0.030860617756844,-0.096139632165432]],[[-0.047059949487448,0.018067747354507,0.073762930929661],[-0.011742177419364,-0.011329632252455,-0.027344120666385],[0.0097950417548418,-0.010996702127159,0.017982762306929]],[[0.014286770485342,0.055975016206503,-0.026274742558599],[-0.0030541273299605,-0.017240736633539,-0.037207785993814],[-0.021799020469189,-0.0005829141009599,0.0046950355172157]],[[-0.033824164420366,-0.038513503968716,-0.039341252297163],[-0.028507394716144,0.058827511966228,0.012571359053254],[0.0029309696983546,0.040168318897486,-0.040400754660368]],[[0.034801200032234,0.007797128520906,-0.0034099956974387],[-0.0044246511533856,-0.076588608324528,-0.028603171929717],[-0.070217333734035,-0.041348118335009,-0.042156688868999]],[[-0.0236492510885,0.03305945545435,-0.01092707272619],[0.074618995189667,-0.024618519470096,-0.050196941941977],[-0.023333456367254,0.053540278226137,0.0081496713683009]],[[0.029061447829008,0.013589388690889,0.0099997138604522],[-0.053802657872438,-0.016102775931358,0.020015377551317],[0.039482235908508,-0.020734144374728,0.020497778430581]],[[0.024682901799679,-0.0063395835459232,0.017727069556713],[0.05284946039319,0.0074130306020379,0.047581098973751],[-0.026544960215688,-0.011114869266748,-0.046535953879356]],[[-0.048950728029013,0.038833200931549,0.048404633998871],[0.052547924220562,-0.1051142886281,0.031081810593605],[0.082694165408611,-0.049110401421785,0.02861949428916]],[[-0.0091560622677207,-0.0028689184691757,0.054303571581841],[-0.050204124301672,0.0036584043409675,-0.035370878875256],[0.064601682126522,-0.027732526883483,0.085740730166435]],[[-0.035654678940773,0.080450475215912,0.038122545927763],[0.0479338131845,-0.0068625127896667,0.066827468574047],[-0.046453580260277,0.025347825139761,-0.013960820622742]],[[-0.0022932649590075,0.016433773562312,0.032992426306009],[0.066213227808475,0.042629819363356,-0.051072333008051],[-0.068698205053806,-0.009942164644599,0.012539309449494]],[[-0.047058537602425,-0.068763352930546,-0.036854851990938],[-0.01857740432024,0.0392991527915,0.011093387380242],[0.013269052840769,0.0066955052316189,-0.07217912375927]],[[0.015897385776043,-0.022719951346517,0.040194436907768],[0.021433694288135,-0.035028554499149,-0.0066590094938874],[0.076030261814594,0.043852027505636,-0.032442837953568]],[[0.015371192246675,2.731514723564e-05,-0.0052991551347077],[0.061937440186739,-0.01252441201359,-0.020668486133218],[0.010553047060966,0.030326500535011,-0.0018158967141062]],[[-0.064398095011711,0.037441708147526,-0.033778440207243],[-0.0015568290837109,-0.082628160715103,0.021315660327673],[0.032462999224663,0.0091262655332685,-0.0015887421322986]],[[0.018789837136865,0.057859372347593,0.10994632542133],[-0.043379250913858,-0.053661085665226,0.06670469045639],[0.022554671391845,-0.067275032401085,-0.09073269367218]],[[-0.080534808337688,0.079050697386265,0.067701883614063],[-0.019983261823654,0.025017915293574,-0.015844210982323],[0.051379915326834,0.083842612802982,-0.070457562804222]],[[-0.023101126775146,-0.030085323378444,0.02494939789176],[0.020048245787621,0.031433321535587,0.0034529177937657],[0.022418718785048,-0.081738419830799,-0.055584378540516]],[[0.045173790305853,0.012296460568905,0.0047494266182184],[0.039167866110802,-0.030251370742917,0.0076131783425808],[-0.013873378746212,-0.033370357006788,0.0042408253066242]],[[-0.058245278894901,-0.02283900231123,0.046386543661356],[-0.089696176350117,-0.016410000622272,-0.014518621377647],[-0.078842505812645,-0.038014832884073,0.095066472887993]],[[-0.023787165060639,-0.015210787765682,0.027588920667768],[0.053395878523588,-0.037845436483622,0.011782605201006],[0.032340921461582,-0.013952617533505,-0.03301590681076]],[[0.03187907487154,0.020780522376299,0.0071512055583298],[-0.0048229601234198,0.0026974484790117,-0.0050365827046335],[-0.0050971480086446,0.068624250590801,0.059468135237694]],[[0.022670982405543,-0.016453674063087,-0.022030461579561],[-0.039298593997955,-0.024118114262819,0.0087295090779662],[0.057032190263271,0.05491029843688,0.0052399300038815]],[[0.069343633949757,0.0092170191928744,-0.03435456007719],[0.0024216398596764,0.059697732329369,-0.0054854638874531],[0.1383348107338,0.037770420312881,-0.033242117613554]],[[0.0038314182311296,0.02024001441896,0.050118871033192],[0.069786310195923,-0.035852700471878,-0.032805319875479],[0.063154019415379,0.098892837762833,-0.022007213905454]],[[0.066290162503719,0.084980219602585,0.12630547583103],[0.14874039590359,0.10082317143679,0.051518656313419],[-0.085757575929165,0.069437444210052,0.0053171892650425]],[[-0.0032315254211426,0.03689506649971,0.015468558296561],[-0.090761959552765,-0.014515686780214,-0.01218943297863],[-0.0013933933805674,-0.057049911469221,-0.043280284851789]],[[0.027459375560284,0.073166891932487,-0.010162169113755],[0.06174349412322,0.0027856554370373,-0.065688714385033],[-0.031318590044975,0.033139828592539,0.020972218364477]],[[-0.036179564893246,-0.010927759110928,0.0064366655424237],[-0.038376964628696,-0.071083195507526,0.050489656627178],[0.015730185434222,-0.04858323186636,-0.070061460137367]],[[0.006094038952142,-0.059953927993774,-0.0571612380445],[0.12350849062204,0.0073316297493875,0.090508840978146],[0.038622718304396,0.13867916166782,0.01870434731245]],[[-0.050884377211332,-0.039680708199739,-0.046997103840113],[-0.0041612633503973,0.0036176105495542,-0.053970459848642],[0.013237678445876,0.085727848112583,0.021629523485899]],[[0.033527743071318,0.011083481833339,0.058767087757587],[-0.019291117787361,-0.0065333866514266,0.021886914968491],[-0.010812349617481,0.063709780573845,0.025121096521616]],[[-0.078828498721123,-0.062891080975533,-0.036199286580086],[0.07604056596756,0.026927378028631,0.015761315822601],[-0.066947370767593,-0.058340687304735,0.018045922741294]],[[-0.025328988209367,0.064768433570862,0.028790572658181],[0.046779192984104,-0.046990182250738,-0.03892419859767],[0.040206220000982,0.060763314366341,-0.067481592297554]],[[-0.066152520477772,-0.050791077315807,0.024349927902222],[-0.030223168432713,0.011199578642845,0.059051990509033],[-0.10776600241661,-0.038802795112133,0.051209267228842]],[[-0.018122743815184,-0.024634612724185,0.013868077658117],[0.032097764313221,-0.071488857269287,-0.043393470346928],[0.06110192835331,0.0124048627913,-0.064173854887486]],[[-0.041665144264698,0.0095731867477298,-0.0017925326246768],[-0.011039618402719,-0.011189953424037,0.050776787102222],[0.01030966732651,0.01488718483597,0.053390376269817]],[[-0.012454614043236,-0.04352006316185,0.046355564147234],[0.059514742344618,0.0021762724500149,0.071211814880371],[0.084972336888313,0.027102921158075,-0.026086993515491]],[[-0.0046182167716324,0.011807705275714,-0.021000053733587],[-0.015078417025506,-0.04945882409811,0.051329776644707],[0.10588672012091,0.039184965193272,0.11545287817717]],[[0.090889491140842,-0.047591675072908,0.048099525272846],[-0.02451135404408,0.061117731034756,0.1211434006691],[0.071940869092941,-0.019807726144791,0.016451539471745]],[[0.030508441850543,-0.043412905186415,0.052870992571115],[-0.01369034871459,0.012004177086055,-0.050138041377068],[0.018720483407378,0.05809273198247,-0.055025618523359]],[[-0.002167298225686,-0.033348120748997,0.030860895290971],[-0.034796670079231,0.049207642674446,0.073380641639233],[-0.053722765296698,0.02691594325006,0.015520268119872]],[[-0.019017681479454,0.042685884982347,0.070737458765507],[-0.048834443092346,0.057176008820534,0.095758467912674],[-0.00066464208066463,0.033758856356144,0.025751654058695]],[[0.024570044130087,0.0084200883284211,0.014293654821813],[-0.029716439545155,-0.023759331554174,0.0074659804813564],[0.072189845144749,0.076626896858215,-0.041369244456291]],[[-0.0099145686253905,0.063779130578041,-0.038980722427368],[0.047228083014488,-0.028332909569144,-0.099405825138092],[0.025555901229382,-0.053207240998745,-0.054297763854265]],[[-0.01491979137063,-0.049717627465725,-0.02932108938694],[0.0048896754160523,-0.0043960004113615,-0.074237287044525],[-0.0049976212903857,0.036820851266384,0.013626367785037]],[[-0.06187217310071,-0.028294835239649,-0.053532052785158],[0.013456623069942,0.056601874530315,-0.018471255898476],[0.026675825938582,-0.024795357137918,0.061835672706366]],[[-0.075617551803589,0.10166369378567,-0.015981851145625],[0.0043248799629509,-0.062967948615551,0.0081353140994906],[0.08972293138504,0.018383605405688,-0.065054409205914]],[[0.034452691674232,-0.01490612514317,-0.016520561650395],[0.0040729963220656,-0.020011618733406,-0.041218902915716],[0.096134066581726,0.035633247345686,0.014219142496586]],[[-0.05236329510808,0.0046891318634152,-0.061923358589411],[-0.035483945161104,-0.044105708599091,-0.0029561913106591],[-0.042042333632708,-0.015031045302749,0.0078896917402744]],[[0.040804464370012,0.054596018046141,0.016641661524773],[0.0012977193109691,0.038583539426327,0.011001585051417],[0.030209820717573,-0.017184795811772,-0.0057016531936824]],[[0.014590981416404,0.042636997997761,0.020024193450809],[-0.011637524701655,-0.030972899869084,0.017175270244479],[0.016415482386947,-0.034701526165009,0.051921579986811]],[[0.036092095077038,-0.021842941641808,-0.0018362998962402],[0.015545078553259,0.0096286218613386,0.0072182756848633],[-0.04778303951025,0.022848177701235,-0.051796961575747]],[[-0.085926465690136,0.027963666245341,-0.058018330484629],[-0.019430227577686,0.0075558456592262,0.028684148564935],[0.025706980377436,0.10034171491861,-0.021522972732782]],[[-0.011922071687877,0.032982956618071,-0.0083992201834917],[-0.026423430070281,0.020738646388054,0.014930216595531],[-0.012895492836833,-0.048619322478771,0.026606254279613]],[[0.0046101887710392,0.020776258781552,0.013763860799372],[0.015949001535773,0.033406637609005,-0.057701300829649],[-0.041484601795673,0.035557337105274,0.02861631847918]],[[-0.038716945797205,-0.0021940008737147,-0.025789275765419],[-0.088639408349991,0.019727937877178,0.094660274684429],[0.007669678889215,-0.0048680491745472,0.057183291763067]],[[-0.037781368941069,-0.061436638236046,0.0097308438271284],[-0.035140115767717,0.062180049717426,-0.012843838892877],[-0.01060330402106,0.051704317331314,-0.044326327741146]],[[-0.048907272517681,-0.031770169734955,-0.058776590973139],[-0.027829704806209,0.038548581302166,-0.021149720996618],[-0.020573910325766,0.038977649062872,-0.03329898789525]],[[-0.026066955178976,-0.0085460189729929,-0.091175779700279],[-0.0018397794337943,0.0017797129694372,0.091898947954178],[0.041218120604753,-0.015318980440497,0.046715315431356]],[[0.061308160424232,-0.0063083777204156,0.023195302113891],[0.041066143661737,0.052996713668108,-0.065000280737877],[-0.049979589879513,0.0090260673314333,0.046791523694992]],[[0.044066961854696,-0.042867045849562,0.077894479036331],[0.023904541507363,0.060825608670712,0.041978869587183],[-0.043644327670336,0.0098599931225181,-0.055849615484476]],[[-0.022086987271905,0.0065212552435696,0.014605258591473],[0.059264671057463,0.04160862416029,-0.017970001325011],[0.031365614384413,0.074685603380203,0.027129678055644]],[[-0.048021260648966,-0.030444871634245,-0.012427907437086],[0.10183919221163,-0.018111828714609,-0.02030267752707],[0.062077172100544,0.017884878441691,-0.014503636397421]],[[-0.0029400929342955,-0.004465349484235,-0.02987464517355],[-0.00078863184899092,-0.0053852051496506,0.023623311892152],[0.015216151252389,0.00102072826121,-0.047381494194269]],[[0.00092535285511985,0.014660367742181,0.060958106070757],[0.033227108418941,0.10467402637005,0.010236290283501],[0.039724782109261,0.023813864216208,-0.024383965879679]],[[-0.017061861231923,-0.04462431371212,0.035307012498379],[-0.062263213098049,0.023936782032251,-0.040084287524223],[-0.0088343024253845,-0.0025164256803691,-0.040009029209614]],[[0.019545489922166,-0.051100425422192,-0.0064282696694136],[0.14595854282379,0.027712048962712,0.029847227036953],[0.073654994368553,-0.038259837776423,-0.0072254724800587]],[[0.040983241051435,-0.024242917075753,-0.01331935916096],[0.0016625763382763,0.02690270729363,-0.080326169729233],[-0.013235479593277,0.043519895523787,0.11197412014008]],[[-0.0030758429784328,-0.13431000709534,-0.003982690628618],[-0.049686785787344,-0.029935117810965,0.017252366989851],[0.00026612012879923,0.0076277237385511,-0.094573453068733]],[[0.00097586930496618,0.039837457239628,0.043796844780445],[0.048698887228966,-0.063128858804703,-0.083359532058239],[-0.00098936341237277,-0.018564086407423,-0.062683187425137]],[[0.013926835730672,-0.018705505877733,0.052757926285267],[0.046278961002827,0.019668402150273,0.049580551683903],[0.01154759246856,0.0071797226555645,-0.034664656966925]],[[-0.056710001081228,-0.05601143091917,0.038085095584393],[0.0080574518069625,-0.028708498924971,0.051118422299623],[0.021926363930106,0.0033825985156,-0.045508109033108]],[[-0.013895468786359,0.009133099578321,-0.044375516474247],[0.027345495298505,0.016498938202858,-0.011851204559207],[-0.0022867578081787,-0.065913327038288,0.044824507087469]],[[0.019908668473363,0.016237994655967,-0.0019428500672802],[0.053213976323605,0.020933931693435,0.084352970123291],[-0.007036333438009,-0.0192940402776,-0.018587443977594]],[[0.021662119776011,0.041134390980005,-0.0093929041177034],[-0.060923732817173,0.032254356890917,0.014107218012214],[0.1217011064291,-0.009681367315352,0.027025066316128]],[[0.068746097385883,0.068088620901108,-0.0042524030432105],[0.06150708347559,0.044930566102266,0.011625961400568],[0.11891178041697,0.0037130834534764,-0.0069233789108694]],[[-0.057201396673918,0.03932748734951,0.0047411294654012],[-0.065607942640781,-0.016659636050463,0.0011384405661374],[-0.057648584246635,0.016581488773227,-0.081125304102898]],[[-0.022798845544457,0.0053514721803367,0.056364957243204],[-0.017436215654016,0.055298238992691,0.09091978520155],[-0.07817867398262,-0.043589435517788,0.021179059520364]],[[0.063423372805119,0.026620954275131,-0.013895944692194],[-0.029818305745721,-0.007326565682888,-0.0007639077375643],[0.11255982518196,-0.0050325230695307,0.023242777213454]],[[0.07365844398737,0.0062243109568954,-0.0099278278648853],[0.03494431450963,-0.027978910133243,0.02693753503263],[0.028901502490044,-0.040485791862011,0.021880969405174]],[[0.11084504425526,-0.015967747196555,0.02032164297998],[-3.2961284887278e-05,0.055894702672958,-0.0046449545770884],[-0.025407502427697,0.0029195265378803,-0.04101238399744]],[[-0.0243204459548,-0.039427138864994,0.018485184758902],[-0.032555609941483,-0.065594755113125,0.067607663571835],[-0.034721352159977,0.086466617882252,-0.026607614010572]],[[-0.001022418611683,0.12814517319202,0.021850273013115],[0.023668007925153,0.010032933205366,0.031688913702965],[0.014174146577716,0.046793069690466,-0.05651031434536]],[[-0.010998167097569,0.078834183514118,-0.0039901812560856],[-0.0027971302624792,0.031086340546608,0.0043674507178366],[-0.0028632904868573,-0.034857209771872,0.046018689870834]],[[-0.06572088599205,-0.022146221250296,0.057404171675444],[-0.046229787170887,-0.069723166525364,0.12655152380466],[0.059969998896122,0.033154714852571,0.074187688529491]],[[0.066648319363594,0.033795963972807,-0.040688615292311],[-0.028311710804701,0.05808449909091,-0.097553625702858],[0.044518433511257,0.015711704269052,-0.015629166737199]],[[-0.014745404012501,0.015570395626128,-0.02722967416048],[0.088774420320988,0.045212242752314,0.029230892658234],[-0.031813468784094,-0.011103940196335,-0.038992580026388]],[[-0.011161509901285,0.1138354241848,-0.020321419462562],[-0.0066461632959545,0.0049006585031748,0.050285585224628],[-0.0037115255836397,-0.042771462351084,0.00011102845746791]],[[0.024437144398689,-0.028941133990884,-0.0058286460116506],[0.0055669085122645,0.083506464958191,0.030684703961015],[0.0027943626046181,-0.0056774327531457,-0.051655329763889]],[[0.082831919193268,-0.028544498607516,0.0052596917375922],[0.098067820072174,0.02843808196485,3.5825360100716e-06],[0.046805083751678,0.020789619535208,-0.015829937532544]],[[-0.044264651834965,-0.021272366866469,-0.070551812648773],[0.029483538120985,-0.093094237148762,-0.0044974996708333],[-0.039561871439219,-0.01481384690851,-0.0083002345636487]],[[0.037698946893215,0.065886646509171,0.11018691956997],[0.073222316801548,-0.057318225502968,-0.026487644761801],[-0.009194316342473,0.013419597409666,0.03248243033886]],[[-0.012361659668386,-0.014750882051885,-0.0075357281602919],[-0.012863229028881,-0.062841817736626,-0.10679311305285],[0.042396418750286,-0.03486043214798,0.045400395989418]],[[0.095662146806717,0.0013015172444284,-0.11228768527508],[0.13795834779739,-0.0057050986215472,0.026287274435163],[-0.01077869720757,0.018916355445981,-0.009784048423171]],[[-0.0020790898706764,-0.024664249271154,-0.040609661489725],[-0.022163968533278,-0.00016730178322177,0.019602613523602],[-0.019457470625639,-0.00064012373331934,0.025169089436531]],[[0.044604104012251,0.039473053067923,-0.10127529501915],[0.06299065798521,0.08918546885252,-0.013721957802773],[0.057686116546392,0.071637243032455,0.037336193025112]],[[-0.012168113142252,-0.083272404968739,-0.028087267652154],[-0.00029159238329157,0.057248309254646,-0.011720254085958],[-0.0082539794966578,0.05542054772377,-0.10343848913908]],[[-0.019561052322388,-0.0097761619836092,-0.014261459000409],[0.059673722833395,-0.040284916758537,0.072429083287716],[0.020471962168813,-0.011096332222223,0.046170637011528]],[[-0.097914591431618,0.067005030810833,0.044815968722105],[-0.052955683320761,-0.059388738125563,0.02742438390851],[0.0013297873083502,0.011055772192776,0.004332703538239]],[[-0.066076777875423,0.014527287334204,0.018427617847919],[0.018688645213842,-0.15792237222195,-0.002020396059379],[-0.035259865224361,-0.052629582583904,0.0029489318840206]],[[0.12261172384024,0.027826156467199,-0.023271933197975],[0.039500869810581,-0.019218062981963,-0.038846760988235],[0.066726990044117,-0.017736164852977,-0.065271034836769]],[[-0.0097359362989664,-0.0066111613996327,0.0022209389135242],[-0.02220855653286,-0.018309092149138,0.072043307125568],[-0.010067135095596,-0.072818301618099,-0.0036421879194677]],[[-0.0037324929144233,0.0051427162252367,0.012356803752482],[0.024587797001004,0.058539733290672,0.025900842621922],[0.061961099505424,0.031569991260767,0.056243948638439]],[[-0.013841233216226,0.059976782649755,0.0041299480944872],[-0.0021767010912299,-0.024394918233156,0.016299717128277],[0.14942832291126,0.047629501670599,-0.030415603891015]],[[0.057863347232342,-0.020932784304023,-0.031429588794708],[-0.0090577946975827,-0.02552318200469,0.010751599445939],[-0.049837321043015,-0.035909838974476,-0.012793431989849]],[[0.020029909908772,0.0081432890146971,-0.016995579004288],[-0.0010975834447891,0.023598559200764,-0.043125189840794],[-0.020524533465505,0.027721527963877,0.074404127895832]],[[-0.058266956359148,0.045670885592699,0.017307268455625],[-0.053258378058672,-0.012347812764347,0.041094209998846],[-0.0014587370678782,-0.0088627310469747,0.0039154700934887]],[[-0.018665773794055,0.055010113865137,-0.031681772321463],[0.01029615290463,-0.0073014260269701,-0.043439764529467],[-0.032087862491608,0.04119860753417,-0.089489087462425]],[[0.032968379557133,-0.0087084751576185,-0.064922906458378],[-0.033708058297634,0.010711629875004,0.041985940188169],[-0.057144701480865,-0.13426752388477,0.0093557499349117]],[[-0.070964485406876,-0.08553309738636,-0.04579009488225],[-0.056322362273932,-0.033557184040546,-0.0017390722641721],[-0.066017061471939,-0.051802519708872,-0.018692081794143]],[[-0.0029436750337481,0.0049080369062722,-0.10436394810677],[0.072413302958012,0.031108025461435,-0.036162476986647],[-0.0025653208140284,-0.095058433711529,0.03480751812458]],[[-0.017989272251725,-0.15224391222,-0.035435147583485],[-0.038212008774281,-0.046256441622972,0.056689910590649],[-0.050681747496128,-0.085343509912491,-0.059773165732622]],[[0.00027922680601478,0.0032644555903971,0.0016714270459488],[-0.037752147763968,-0.054206784814596,0.032666765153408],[0.026330519467592,0.02402414008975,0.0082044303417206]],[[0.010881004855037,0.02999653108418,-0.0076138032600284],[-0.057316090911627,0.021069778129458,0.103669911623],[-0.017710374668241,-0.031350262463093,0.12733179330826]],[[-0.020486949011683,0.094533815979958,-0.0060090553015471],[-0.044530618935823,-0.048513904213905,-0.056477084755898],[-0.0080171208828688,0.050797544419765,0.11122293770313]],[[0.067413069307804,0.05194528773427,0.10624539852142],[0.038025096058846,-0.053407687693834,0.048553273081779],[-0.015286575071514,-0.022652065381408,-0.018897462636232]],[[0.021082274615765,-0.053766541182995,0.016544768586755],[-0.034047462046146,-0.054155368357897,-0.049837157130241],[0.015004351735115,0.038195766508579,0.001392662175931]],[[0.040678080171347,-0.0093425698578358,-0.011154854670167],[-0.035589285194874,-0.026815766468644,0.031153237447143],[-0.025103766471148,-0.050346158444881,-0.074822753667831]],[[-0.074462033808231,-0.039085805416107,-0.09487184882164],[-0.061313044279814,-0.024953860789537,-0.027144975960255],[0.014000804163516,-0.028847765177488,-0.034517236053944]],[[-0.026488231495023,0.041719172149897,0.030793454498053],[-0.0095815062522888,0.070053406059742,-0.061963841319084],[-0.028450565412641,-0.017073158174753,-0.050685223191977]],[[-0.0020306981168687,0.028936721384525,-0.03679333627224],[-0.031593784689903,-0.019656727090478,0.0095485942438245],[0.03218686580658,-0.010275858454406,-0.026373228058219]],[[-0.030037142336369,0.033216867595911,0.0036151090171188],[-0.065828405320644,-0.0075082005932927,-0.07460743188858],[0.0098026823252439,0.074898444116116,0.022224560379982]],[[0.061129115521908,0.04113483056426,0.047005623579025],[0.041800819337368,0.086602181196213,-0.023461053147912],[0.035193175077438,-0.025620967149734,-0.011602880433202]],[[0.0082151833921671,-0.050489187240601,-0.02201521769166],[-0.080278128385544,-0.040412686765194,-0.065469615161419],[-0.029511937871575,-0.021832708269358,-0.020132699981332]]],[[[-0.0088370759040117,-0.014958185143769,-0.0095363631844521],[0.052537512034178,-0.079097986221313,-0.10630165040493],[-0.047448825091124,-0.052700001746416,-0.10291162878275]],[[0.0079843802377582,-0.034985717386007,0.072320833802223],[-0.025426030158997,0.0042163706384599,-0.030795235186815],[0.1573970913887,-0.072502605617046,-0.10400810837746]],[[-0.062766350805759,-0.02864670753479,-0.093770459294319],[-0.084935814142227,-0.065333567559719,0.044530041515827],[-0.11806105077267,-0.12998335063457,-0.13671708106995]],[[0.21348978579044,0.089001081883907,-0.012732135131955],[-0.14425684511662,0.039185427129269,0.085025064647198],[-0.019295049831271,-0.018592868000269,-0.27349081635475]],[[-0.064992837607861,0.05779542028904,0.0004927046247758],[-0.079199559986591,0.024823805317283,-0.063983611762524],[-0.11790480464697,-0.039949640631676,-0.010420401580632]],[[0.0077533558942378,0.016896188259125,-0.059912849217653],[-0.032765779644251,-0.073646672070026,0.052304551005363],[-0.020660085603595,-0.081520222127438,-0.066845364868641]],[[-0.099128849804401,-0.030676672235131,-0.040072452276945],[0.147914275527,0.11771938949823,-0.015215849503875],[-0.3144012093544,-0.068404793739319,0.0079353544861078]],[[-0.17817240953445,-0.0015120320022106,-0.0092005701735616],[-0.070181414484978,0.0060528996400535,-0.016338808462024],[0.039004530757666,0.064247384667397,0.075220480561256]],[[0.14879880845547,0.099022187292576,-0.061296585947275],[0.0062348614446819,0.010259266011417,-0.058811511844397],[-0.039083611220121,0.031543500721455,0.0012965024216101]],[[-0.19115895032883,-0.040041849017143,-0.00093187612947077],[0.079692214727402,-0.14592219889164,-0.040712278336287],[0.11642480641603,0.21959893405437,-0.030269857496023]],[[-0.20170238614082,0.32706627249718,-0.14119565486908],[-0.076225019991398,0.023270284757018,-0.061949476599693],[-0.021236680448055,0.0020150209311396,0.27334713935852]],[[0.040609613060951,0.13058237731457,-0.00081513490295038],[0.093744337558746,-0.042720481753349,-0.0062188878655434],[0.11947126686573,-0.029183717444539,-0.1094634309411]],[[0.095021992921829,0.19315929710865,0.21003387868404],[-0.044685360044241,0.061204638332129,0.21473781764507],[-0.036670792847872,0.09829556196928,0.032024774700403]],[[-0.057369779795408,0.030211431905627,0.057674929499626],[0.069547720253468,-0.050727464258671,0.03030270524323],[0.0052987849339843,-0.044321812689304,-0.006928205024451]],[[0.11491484194994,0.088794402778149,-0.049650762230158],[-0.12361597269773,-0.059598729014397,-0.07710163295269],[0.01662752777338,0.089360274374485,-0.14889499545097]],[[-0.086341373622417,0.032132610678673,0.017712146043777],[-0.079944171011448,0.0005598995485343,-0.080615177750587],[0.019907426089048,-0.11194407194853,-0.11455153673887]],[[0.013160895556211,-0.0013896834570915,-0.1485933214426],[-0.005923239979893,0.006658919621259,-0.13465046882629],[-0.13492152094841,0.074707008898258,-0.15492503345013]],[[-0.072784930467606,-0.19847469031811,-0.23281942307949],[0.023136630654335,-0.10043436288834,-0.094002239406109],[-0.13925091922283,-0.20092023909092,0.033253531903028]],[[0.032222077250481,-0.060191098600626,-0.062025126069784],[0.0044649210758507,-0.036973658949137,-0.034449260681868],[0.010082442313433,0.1047710031271,0.086923152208328]],[[0.071171395480633,0.037591073662043,0.17788501083851],[-0.012001152150333,0.007415063213557,0.035386398434639],[0.037775356322527,-0.062314175069332,0.0075310338288546]],[[-0.066542737185955,-0.28758645057678,0.014366975054145],[0.060467276722193,-0.049473021179438,-0.059192214161158],[-0.058975905179977,-0.047621909528971,-0.28241348266602]],[[0.038871522992849,-0.06673701107502,-0.033730234950781],[0.073015004396439,0.02999279089272,-0.046338174492121],[0.01730222441256,-0.039130419492722,0.10439223051071]],[[-0.040927611291409,0.024209192022681,-0.033920411020517],[-0.057086903601885,-0.049298416823149,0.022570576518774],[0.0047891288995743,0.074824422597885,0.068771421909332]],[[0.056860219687223,-0.044099133461714,0.018400840461254],[0.0087625561282039,0.035538140684366,0.10954430699348],[-0.015361439436674,0.010062952525914,-0.26445150375366]],[[-0.017776308581233,0.049615941941738,-0.075217492878437],[-0.089823208749294,0.04282059147954,0.10506692528725],[0.022277131676674,-0.038978073745966,0.07831584662199]],[[-0.057866953313351,0.13296960294247,0.01201803330332],[-0.11723379790783,-0.16425387561321,0.0017003798857331],[-0.012983874417841,0.099568828940392,0.042137194424868]],[[0.021822992712259,-0.10001102089882,-0.20079413056374],[-0.033088888972998,-0.021609757095575,-0.037298519164324],[0.037878561764956,-0.16546204686165,0.070527009665966]],[[0.050050996243954,0.15198294818401,0.060035608708858],[0.048064492642879,0.058790728449821,0.12178988754749],[0.10521672666073,0.11651834845543,0.0808986723423]],[[-0.030911086127162,0.075088411569595,0.0015964946942404],[-0.040558077394962,0.0022628998849541,0.024564368650317],[0.022292954847217,-0.029955031350255,-0.12703602015972]],[[-0.042195681482553,-0.063276804983616,0.050101183354855],[-0.0092242378741503,0.023150889202952,0.018036028370261],[-0.030052755028009,0.014024942182004,0.014221332967281]],[[0.15911187231541,-0.04391960054636,0.033025022596121],[0.099673539400101,-0.13259214162827,0.0057831662707031],[-0.03606366366148,0.19974271953106,-0.053474750369787]],[[0.027380470186472,-0.0086230710148811,-0.12472139298916],[-0.10823299735785,0.075980015099049,-0.034800548106432],[-0.064311683177948,-0.023206051439047,-0.019217424094677]],[[0.15802225470543,-0.13572655618191,-0.02014765329659],[0.04524402692914,0.032625272870064,0.023895688354969],[0.023042080923915,0.19890904426575,-0.0035148079041392]],[[-0.11027895659208,0.23547740280628,0.12857772409916],[-7.4822186434176e-05,0.031102906912565,0.045685663819313],[-0.04247810319066,-0.086286433041096,-0.010181235149503]],[[-0.06276723742485,-0.11571272462606,-0.081643886864185],[0.044676505029202,-0.050560414791107,-0.19323259592056],[0.014139193110168,0.039571851491928,0.03774693608284]],[[0.24191384017467,0.028869500383735,0.040931608527899],[0.015511451289058,0.17836207151413,0.0090215113013983],[0.0027039279229939,-0.14125517010689,0.077184170484543]],[[0.22035218775272,-0.2102365642786,0.27545621991158],[0.03649627417326,0.05678728595376,0.026277426630259],[-0.0076398230157793,0.01997890882194,-0.0040197223424911]],[[0.084235727787018,-0.009475770406425,-0.05852222815156],[0.010276575572789,0.032902739942074,-0.12205977737904],[0.014442399144173,-0.02261570468545,-0.045413102954626]],[[-0.13812811672688,0.011251166462898,-0.035318724811077],[-0.035782285034657,0.06214889138937,-0.01085842680186],[-0.070949032902718,-0.062169842422009,0.011251352727413]],[[0.0009555253200233,-0.22613944113255,0.2021596878767],[0.1712536662817,0.06383889913559,-0.059391472488642],[0.074729472398758,0.030728654935956,0.037609346210957]],[[0.024716874584556,-0.13058412075043,-0.023337127640843],[0.02811224013567,-0.029967688024044,-0.19765986502171],[0.031677063554525,0.049679942429066,-0.023103721439838]],[[-0.002391014713794,0.14103424549103,0.069086246192455],[-0.090053826570511,0.10595025867224,-0.065181352198124],[-0.016448896378279,0.010699423030019,-0.043013516813517]],[[0.12242325395346,0.075834140181541,0.093620926141739],[0.024043785408139,0.0011301067424938,0.063569411635399],[0.070435799658298,0.089691020548344,0.019325111061335]],[[-0.026454545557499,-0.0041417479515076,0.068580649793148],[-0.0059532523155212,0.006638762075454,-0.047365967184305],[-0.035269182175398,-0.028356168419123,-0.028898201882839]],[[0.10807559639215,-0.27944788336754,-0.024660313501954],[0.23911719024181,-0.097706869244576,-0.14320170879364],[0.028804315254092,-0.012742904014885,-0.11108377575874]],[[0.17289979755878,0.084127493202686,0.14778123795986],[-0.054255232214928,0.041134659200907,0.077705562114716],[0.06433729827404,0.061588935554028,0.08807235956192]],[[0.020149435847998,0.030199149623513,-0.015858625993133],[0.037618968635798,-0.021584279835224,-0.04049476608634],[-0.060334905982018,-0.061297092586756,0.026476375758648]],[[-0.18418516218662,-0.15179014205933,-0.1817946434021],[-0.051826365292072,-0.0047605601139367,-0.1215767338872],[-0.0023390091955662,-0.051999676972628,0.021013913676143]],[[-0.031104719266295,-0.11580647528172,0.054426964372396],[-0.090983122587204,-0.10393282771111,-0.094124920666218],[0.047525145113468,-0.046223726123571,-0.027598695829511]],[[0.0086473990231752,-0.058833368122578,-0.13621969521046],[-0.029991082847118,0.040532335639,0.004646965302527],[-0.012687399983406,-0.019254378974438,0.10410220175982]],[[-0.14638586342335,0.038411729037762,0.10913879424334],[-0.075059108436108,-0.036011945456266,0.18181665241718],[0.072951719164848,0.021372115239501,0.13459330797195]],[[-0.010920590721071,0.083884082734585,0.059440933167934],[0.039745133370161,0.079494349658489,0.0035202731378376],[0.047373320907354,0.094981417059898,0.054226879030466]],[[0.16043628752232,0.014397257007658,0.0035688260104507],[-0.048936031758785,0.069175660610199,-0.070546396076679],[-0.065214112401009,-0.027319947257638,-0.0047986465506256]],[[-0.044199392199516,0.20977628231049,0.14515151083469],[-0.029493972659111,-0.035434160381556,0.079921811819077],[-0.02794505469501,0.041517477482557,0.035476353019476]],[[-0.015061995014548,-0.029978530481458,0.053758393973112],[0.092913322150707,0.066888377070427,-0.038588866591454],[0.026790073141456,0.12051539123058,-0.0090862084180117]],[[-0.20372821390629,-0.081729561090469,0.0016303793527186],[-0.055504720658064,0.019045578315854,0.092370882630348],[-0.024780100211501,0.0075519592501223,0.13618205487728]],[[-0.086279205977917,0.14115917682648,0.11229279637337],[0.10996855050325,-0.064902156591415,0.039910327643156],[0.086762428283691,0.11533879488707,-0.081379726529121]],[[-0.18523573875427,0.05028573051095,-0.0051456871442497],[-0.041159715503454,-0.12967896461487,-0.050761386752129],[-0.06221879273653,-0.17340944707394,-0.03324144333601]],[[-0.028252495452762,0.046014353632927,0.028172556310892],[0.0037623627576977,0.06225373223424,-0.038682609796524],[0.09294743090868,0.012786109931767,0.237110003829]],[[-0.16677752137184,-0.066206827759743,-0.032242812216282],[-0.047190248966217,-0.016608092933893,0.057735525071621],[-0.061177846044302,-0.082313351333141,0.060129154473543]],[[0.055000983178616,0.1133805513382,0.028950393199921],[0.01562630571425,0.21615171432495,0.010600159876049],[-0.012738773599267,-0.04273484274745,-0.0065765301696956]],[[-0.039026543498039,-0.054815299808979,0.13556033372879],[0.12032077461481,0.045628536492586,0.013276346959174],[0.068744510412216,0.060609150677919,0.26531934738159]],[[0.10972983390093,0.045486744493246,-0.073228135704994],[-0.088361188769341,0.11996319890022,0.0098285768181086],[0.028382511809468,-0.048617534339428,-0.11820747703314]],[[0.07570044696331,0.0005576871917583,0.038572818040848],[0.06670293211937,0.08583378046751,-0.06858915835619],[-0.020913438871503,0.11595224589109,0.016427835449576]],[[-0.18362855911255,0.11441943794489,0.048534397035837],[-0.061531905084848,-0.015056741423905,0.036346692591906],[0.008989698253572,-0.039311073720455,-0.019387109205127]],[[-0.067237883806229,0.016383742913604,0.012241499498487],[0.0098175564780831,-0.0039384067058563,0.051534410566092],[0.1590169519186,0.11347699910402,-0.037311602383852]],[[-0.058805406093597,0.036257211118937,0.068592064082623],[-0.040912855416536,-0.0029603664297611,0.21260789036751],[0.07052405923605,-0.034259684383869,0.0012012695660815]],[[0.11532229930162,-0.058077678084373,0.022460946813226],[-0.067325830459595,-0.084601312875748,0.0061909728683531],[-0.0080929044634104,0.047718808054924,0.054680317640305]],[[0.029015397652984,-0.0012550567043945,0.036059439182281],[-0.031462606042624,0.026284167543054,0.14814998209476],[0.056825868785381,0.054593607783318,0.11855816841125]],[[0.2502276301384,0.12095234543085,-0.10996229946613],[-0.10099045932293,0.037026926875114,-0.14134798943996],[-0.072498343884945,-0.04153648018837,-0.068890973925591]],[[0.10264538228512,0.17082877457142,0.021313168108463],[0.041372753679752,0.014332069084048,0.10160572081804],[0.067223578691483,-0.042946580797434,-0.049180638045073]],[[0.085204869508743,-0.097570396959782,-0.15441925823689],[0.060548577457666,-0.067032232880592,-0.039628367871046],[0.0046676523052156,0.040172778069973,-0.11364735662937]],[[0.054738432168961,0.040959838777781,-0.06862049549818],[-0.079455934464931,-0.1390171200037,-0.0096147442236543],[-0.10176862776279,-0.15300381183624,0.080346114933491]],[[0.046608414500952,0.046707212924957,0.038917124271393],[0.046651780605316,-0.028646234422922,0.0061046215705574],[0.0210389085114,-0.0816460698843,0.021277526393533]],[[-0.0030797210056335,0.021943252533674,-0.11341258138418],[-0.025784166529775,0.0066013159230351,0.055822461843491],[0.12201600521803,-0.028405727818608,0.083094656467438]],[[-0.28408101201057,-0.018240792676806,-0.020059848204255],[-0.06693672388792,-0.016813792288303,0.028456926345825],[-0.038164392113686,-0.056750193238258,-0.24494861066341]],[[-0.010135435499251,0.012692369520664,0.018654456362128],[0.02430478297174,-0.034554779529572,-0.0094286510720849],[0.078057073056698,-0.063266918063164,0.05144964158535]],[[0.13224640488625,0.1495423167944,0.14026400446892],[-0.039538487792015,0.051215119659901,0.012761539779603],[0.20887157320976,-0.0075937574729323,0.12417230755091]],[[-0.039576530456543,0.011324138380587,0.01629226282239],[-0.011023130267859,0.029103253036737,0.044297702610493],[-0.043684534728527,0.0006380231352523,0.047133263200521]],[[0.024320686236024,-0.074088558554649,-0.042125392705202],[-0.040047146379948,0.13976728916168,0.056320756673813],[0.13559402525425,-0.2115990370512,0.12001766264439]],[[0.052709054201841,0.056009989231825,0.039361014962196],[0.041436418890953,-0.028850801289082,-0.016642861068249],[0.073160171508789,-0.079262934625149,-0.12842704355717]],[[0.10056486725807,0.066557534039021,0.057841833680868],[0.14333130419254,0.043764676898718,0.13116379082203],[0.04771014302969,0.11398282647133,0.049298912286758]],[[0.074787989258766,-0.11465898156166,0.049780420958996],[0.033833529800177,-0.048251137137413,-0.00010405026841909],[0.00362016283907,-0.0074285040609539,0.13391208648682]],[[-0.028585439547896,0.00544557813555,0.09980109333992],[-0.074232220649719,0.075488522648811,-0.030613739043474],[-0.053954727947712,0.1102294921875,0.057780437171459]],[[-0.097588658332825,-0.14643549919128,-0.10121582448483],[0.024578496813774,0.0028332548681647,-0.20877157151699],[-0.057162143290043,-0.077546186745167,-0.041749451309443]],[[-0.039328828454018,0.039122853428125,0.030228482559323],[-0.044403366744518,0.019366359338164,0.058131936937571],[-0.13206036388874,-0.011015147902071,0.050302337855101]],[[0.0092499740421772,-0.066377937793732,-0.094226494431496],[-0.045739434659481,0.052385434508324,0.034849368035793],[0.025519367307425,0.043031614273787,0.17135804891586]],[[0.049923494458199,0.053530037403107,-0.097531370818615],[-0.042115487158298,-0.036391951143742,0.031238507479429],[-0.13773941993713,-0.05695366114378,-0.019875576719642]],[[0.17139700055122,0.098024487495422,0.014664814807475],[0.029289627447724,0.031151741743088,-0.086172960698605],[0.049746744334698,0.025234032422304,0.015516092069447]],[[0.089076280593872,0.043179843574762,-0.1383358836174],[0.050061270594597,-0.0014057323569432,-0.0080289728939533],[0.021530322730541,0.017141330987215,-0.16535674035549]],[[-0.046918846666813,-0.00084774586139247,0.018610097467899],[-0.030507383868098,-0.063006557524204,0.0032361096236855],[-0.094888605177402,0.01393658015877,-0.036109894514084]],[[-0.079474486410618,-0.20334070920944,-0.001496457029134],[-0.12523487210274,-0.086230628192425,0.028486939147115],[-0.115498714149,-0.018914366140962,0.063937000930309]],[[-0.043631125241518,0.054856840521097,0.12077929079533],[0.028531614691019,-0.055922869592905,0.078017003834248],[-0.070039242506027,-0.068914830684662,-0.11884563416243]],[[-0.22300805151463,-0.16241560876369,-0.061800979077816],[-0.076723016798496,0.078905202448368,-0.0057879257947206],[-0.049002449959517,0.0027467769104987,-0.029288528487086]],[[-0.11095267534256,-0.097483359277248,0.0501728951931],[-0.035260863602161,-0.12498644739389,0.047546464949846],[0.010381638072431,-0.09255638718605,-0.11089414358139]],[[0.03149776533246,0.17810529470444,0.11009936779737],[-0.030669424682856,0.12240055948496,-0.0089851804077625],[0.11308188736439,0.066325359046459,-0.058498945087194]],[[0.1310720294714,-0.082097299396992,-0.05104885995388],[-0.08852843940258,-0.14211356639862,-0.0025423804763705],[0.106440320611,0.068399846553802,0.050789147615433]],[[-0.0089847454801202,-0.069773480296135,-0.027265375480056],[-0.12105191498995,0.049024827778339,0.17940999567509],[-0.053520806133747,0.19565737247467,0.18608552217484]],[[0.0471366122365,0.09317484498024,0.024150509387255],[-0.080268457531929,0.080112606287003,-0.010008173063397],[0.020494556054473,0.047017849981785,-0.021019419655204]],[[0.015856279060245,-0.035735629498959,0.062446404248476],[-0.10070947557688,-0.052088722586632,0.12515848875046],[0.086895234882832,-0.034551247954369,0.029239598661661]],[[-0.045228112488985,0.010303778573871,-0.001773739582859],[-0.041744492948055,-0.061549577862024,-0.062001526355743],[-0.097839616239071,0.015906918793917,-0.028789229691029]],[[0.075429268181324,-0.040336817502975,0.15370340645313],[0.048959296196699,-0.068778440356255,0.026954017579556],[-0.025057015940547,0.055109404027462,0.11179134994745]],[[0.019637105986476,-0.084040373563766,-0.082467786967754],[-0.010094398632646,0.070555083453655,-0.096899665892124],[-0.040833801031113,0.026386097073555,0.065353065729141]],[[-0.026481453329325,0.0022329133935273,-0.23821769654751],[0.021542053669691,-0.07948199659586,-0.07694599032402],[-0.024866720661521,-0.078388571739197,-0.012871799059212]],[[0.17781047523022,0.082032576203346,-0.09254539757967],[0.053442109376192,0.034707881510258,-0.077067501842976],[0.0065408139489591,-0.097845412790775,0.14673800766468]],[[0.036923114210367,-0.24279724061489,-0.073355086147785],[0.070753112435341,-0.2276469618082,-0.14424605667591],[0.11792727559805,-0.13698019087315,0.027771474793553]],[[0.057167526334524,-0.0030738820787519,0.052094303071499],[0.0056950217112899,0.0038782190531492,0.080951251089573],[0.076309137046337,-0.045178312808275,0.031150110065937]],[[0.014742218889296,-0.11067560315132,-0.15617111325264],[-0.014975933358073,0.0731086358428,-0.057913135737181],[0.092138931155205,-0.1533167809248,-0.035819746553898]],[[-0.047123461961746,-0.18357886373997,-0.045266814529896],[-0.11451493948698,0.024183820933104,-0.1449316740036],[-0.037184823304415,0.037494078278542,0.024172781035304]],[[0.010389591567218,0.072854734957218,0.16312426328659],[0.021536635234952,0.025731706991792,0.025638367980719],[-0.035454135388136,0.10702144354582,0.083464667201042]],[[-0.0034302428830415,0.036231968551874,-0.058256220072508],[-0.036819141358137,0.037245471030474,-0.033366944640875],[0.026033982634544,-0.025599379092455,-0.011323670856655]],[[0.1327600479126,0.0093385335057974,-0.077755033969879],[-0.028333120048046,-0.038487154990435,0.055933635681868],[0.021393690258265,-0.11412008106709,0.15190996229649]],[[0.1205517500639,0.14505738019943,0.0084627857431769],[0.031415294855833,-0.047981280833483,-0.048540879040956],[-0.054258052259684,0.052058488130569,0.044098515063524]],[[-0.016059227287769,0.014922038652003,-0.017463888972998],[-0.099904887378216,-0.072183839976788,-0.014615435153246],[0.018767600879073,0.045176785439253,0.024460464715958]],[[-0.11732931435108,0.023865902796388,-0.033944495022297],[0.032540813088417,-0.097314678132534,-0.0072658332064748],[-0.018901808187366,0.10772748291492,-0.20981578528881]],[[-0.020073493942618,0.11102476716042,-0.097893431782722],[0.063707418739796,0.074000030755997,-0.04131443053484],[0.05603726580739,0.040427960455418,-0.16405121982098]],[[-0.040705751627684,-0.12611083686352,0.090133585035801],[-0.0079267015680671,-0.033517807722092,-0.075577847659588],[0.023589588701725,0.029777335003018,-0.042299773544073]],[[0.097042545676231,-0.066234290599823,-0.032374210655689],[-0.013497001491487,0.09146886318922,-0.096472203731537],[-0.025777140632272,0.0030086734332144,-0.083415284752846]],[[0.024863436818123,-0.20307107269764,-0.074155606329441],[-0.035465635359287,-0.081213176250458,-0.13390293717384],[0.15722642838955,-0.15978242456913,0.022239031270146]],[[-0.1049570441246,-0.0032929177395999,0.061509978026152],[0.0012136574368924,-0.090378940105438,0.03917395696044],[0.029538417235017,-0.030715066939592,-0.026408368721604]],[[0.0060834819450974,0.0017151781357825,0.021329309791327],[-0.034470308572054,-0.079408250749111,-0.11247865855694],[-0.043099448084831,0.028563246130943,0.086097829043865]],[[0.069759093225002,-0.032152228057384,-0.0077230990864336],[0.019276482984424,-0.28881311416626,-0.098566889762878],[0.057590525597334,-0.078239776194096,-0.061004091054201]],[[-0.10119899362326,0.1090974137187,0.14656968414783],[-0.031604401767254,-0.051768954843283,0.0030407023150474],[0.058146275579929,0.16155113279819,0.10527650266886]],[[0.024574154987931,-0.05100180208683,0.021527569741011],[0.050739038735628,-0.082005433738232,-0.028749577701092],[-0.022292273119092,0.10786711424589,-0.10934788733721]],[[-0.089748755097389,-0.027397144585848,-0.01517216488719],[0.061980582773685,-0.062360569834709,-0.10406271368265],[-0.068076692521572,0.16349741816521,-0.042521949857473]],[[0.12532587349415,0.057473540306091,0.060118217021227],[0.092674620449543,0.11310464888811,-0.034224171191454],[0.0068802954629064,0.019085362553596,0.078242667019367]],[[0.18505127727985,0.19458693265915,0.093925520777702],[-0.066227145493031,0.13740235567093,0.044459566473961],[-0.099594108760357,-0.16101458668709,0.093526557087898]],[[-0.17707712948322,-0.054331738501787,-0.10042726248503],[0.061216119676828,0.018001761287451,-0.031653773039579],[0.035743977874517,-0.10857331752777,-0.082142747938633]]],[[[-0.13692347705364,-0.075040839612484,0.022185478359461],[0.021830597892404,0.012875746004283,0.022367242723703],[0.0049561220221221,0.088337667286396,0.036041270941496]],[[0.066323086619377,-0.020971922203898,-0.025005478411913],[-0.045323956757784,0.031766600906849,0.028223052620888],[-0.01599876396358,-0.088545419275761,0.024740308523178]],[[-0.024266637861729,0.03966261819005,-0.022474093362689],[0.039507169276476,0.048262968659401,0.0068991351872683],[0.048094939440489,-0.035555247217417,0.0071690939366817]],[[0.0016536979237571,0.071453772485256,-0.1140917763114],[-0.011868728324771,0.078358165919781,-0.027170982211828],[-0.0029601058922708,-0.030670693144202,-0.053361531347036]],[[-0.049882225692272,-0.061831783503294,-0.011934801004827],[-0.050601899623871,0.04951448366046,-0.0031088241375983],[0.0054553174413741,-0.059240128844976,-0.0019533517770469]],[[-0.036082364618778,0.0015823873691261,-0.060567431151867],[-0.014059322886169,0.018412228673697,-0.12090212851763],[-0.037352826446295,-0.0091597875580192,0.025408901274204]],[[-0.0017985353479162,-0.0087112439796329,-0.006599944550544],[-0.00034723104909062,-0.023934051394463,0.048051476478577],[-0.05876998603344,0.064716316759586,-0.046745643019676]],[[-0.013384074904025,-0.04968761280179,0.0055862637236714],[-0.043618638068438,0.07685287296772,-0.0036540310829878],[-0.0022640530951321,-0.020302455872297,0.0076208966784179]],[[-0.036297712475061,-0.023242730647326,0.068688198924065],[0.053561370819807,0.079598270356655,-0.017906369641423],[-0.027653235942125,0.019043799489737,0.00047193624777719]],[[0.028694586828351,0.025759467855096,-0.0075488812290132],[0.046626608818769,-0.021260572597384,-0.05448842048645],[-0.014471668750048,0.00027459205011837,0.036205481737852]],[[-0.0092121316120028,-0.0064623225480318,-0.023612761870027],[-0.042925797402859,0.010178974829614,0.011414264328778],[0.037020858377218,-0.055202804505825,-0.014096333645284]],[[-0.0068823234178126,0.0096498765051365,-0.031812466681004],[0.028825784102082,-0.040091294795275,-0.032559737563133],[0.036819871515036,-0.048463687300682,0.017682425677776]],[[-0.021659532561898,0.0073835584335029,-0.011286909691989],[0.0352803170681,-0.063581690192223,-0.08926635235548],[-0.024435168132186,0.10738947242498,0.070826202630997]],[[0.02403305657208,0.028268707916141,0.0075619495473802],[-0.037678923457861,-0.016761591657996,-0.013634825125337],[0.020426955074072,-0.041588626801968,0.025191219523549]],[[0.015072115696967,-0.00071714841760695,-0.072777830064297],[0.041181102395058,-0.031543169170618,-0.030791012570262],[-0.0085384799167514,-0.017817810177803,-0.066255308687687]],[[-0.025751570239663,0.011167869903147,0.0081256357952952],[-0.040735874325037,0.017448229715228,0.069999776780605],[0.0037737893871963,-0.07197455316782,-0.034661814570427]],[[-0.0062493467703462,-0.045593623071909,0.019464673474431],[0.069391041994095,0.008980643004179,0.012191104702652],[-0.025030296295881,0.0041221724823117,-0.012058121152222]],[[0.031421612948179,0.018785141408443,0.0048074433580041],[0.081326834857464,0.00011383698438294,0.0022441549226642],[-0.0049654343165457,0.0063238474540412,-0.0046455767005682]],[[-0.056639820337296,0.035791698843241,-0.055051028728485],[-0.052170947194099,0.045343805104494,0.00075798307079822],[0.015686390921474,-0.060382913798094,0.016737578436732]],[[0.11295503377914,-0.057227689772844,-0.087482996284962],[0.091060362756252,-0.04601900652051,-0.068998701870441],[0.057446282356977,0.053928665816784,-0.046983525156975]],[[-0.0011527184396982,0.0084125222638249,0.0092701986432076],[-0.068310759961605,0.044350184500217,0.093190617859364],[0.023207603022456,0.039272919297218,0.017359226942062]],[[0.067584052681923,0.028089126572013,-0.021028362214565],[-0.094865046441555,-0.029861131682992,-0.019916281104088],[-0.069187231361866,-0.027534587308764,-0.0031041754409671]],[[-0.04613771289587,0.032745279371738,0.037814229726791],[0.030615827068686,-0.019011804834008,0.077582940459251],[-0.049991097301245,0.0015591359697282,-0.0044309003278613]],[[-0.02355894446373,-0.0047574732452631,-0.02042243257165],[-0.016633525490761,0.073870584368706,0.013589705340564],[-0.11131899803877,-0.02595529332757,-0.022723430767655]],[[0.06299951672554,-0.048287164419889,-0.0011129447957501],[-0.03208227828145,0.073426201939583,0.040054313838482],[-0.022990928962827,-0.067080922424793,0.059698976576328]],[[-0.085823155939579,-0.0069796810857952,0.013578329235315],[-0.033746264874935,-0.0594821870327,0.03585834056139],[-0.065239384770393,-0.042226679623127,-0.017650289461017]],[[-0.057920824736357,-0.025213107466698,-0.042084440588951],[0.019470343366265,0.010786036960781,0.022156255319715],[-0.034092579036951,0.050819844007492,-0.0059659876860678]],[[-0.084773004055023,0.082792930305004,-0.028605211526155],[-0.048531241714954,-0.057797431945801,0.017180733382702],[0.051969766616821,-0.041225139051676,-0.027029862627387]],[[0.0044580330140889,0.031589161604643,0.0040090708062053],[-0.092309795320034,-0.040104802697897,0.062987834215164],[0.0003746040747501,-0.0039196279831231,-0.02043248899281]],[[0.028148466721177,-0.028713656589389,0.01178399194032],[-0.0028214179910719,-0.045768205076456,0.03490623831749],[-0.037952657788992,-0.02330618724227,0.05193105712533]],[[0.026331773027778,-0.03183064237237,0.040555149316788],[0.019151367247105,0.0040732519701123,-0.05356403440237],[0.0038206393364817,-0.062669642269611,0.068095937371254]],[[-0.075265936553478,0.010503991506994,-0.00095395836979151],[0.03403503075242,0.0070322253741324,-0.055011589080095],[0.059878781437874,0.033056929707527,-0.030906790867448]],[[-0.077129445970058,-0.05110665038228,-0.051450632512569],[-0.036896161735058,0.024097505956888,0.0025837714783847],[-0.0042022839188576,0.042865235358477,0.075727969408035]],[[0.003526444779709,0.0002349534915993,-0.0058710486628115],[-0.039050802588463,-0.0093270260840654,-0.0022127879783511],[0.011984997428954,0.031184243038297,-0.01093490421772]],[[0.045163378119469,-0.029660224914551,-0.060093060135841],[0.0088646439835429,-0.040789235383272,-0.052925992757082],[-0.11796965450048,-0.10202465206385,0.081524580717087]],[[-0.029587475582957,0.034757647663355,-0.08351144939661],[-0.094923309981823,0.078159973025322,-0.032305724918842],[-0.11771143972874,0.092617362737656,0.020933488383889]],[[-0.022603824734688,0.048756923526525,-0.041881572455168],[-0.028072929009795,-0.005216212477535,0.020312761887908],[-0.077414400875568,0.048224899917841,-0.041508864611387]],[[-0.055540692061186,-0.031471349298954,-0.037265706807375],[-0.04108639061451,0.0032098356168717,-0.038989920169115],[0.017100669443607,0.044853769242764,0.046169139444828]],[[-0.02947516925633,0.038570556789637,-0.053350571542978],[-0.072064518928528,0.044561624526978,0.001316522131674],[-0.025461118668318,0.029118783771992,-0.035988867282867]],[[-0.0027418828103691,0.011319564655423,0.00055255240295082],[0.0030124797485769,-0.05114534497261,0.0024827357847244],[-0.00086487527005374,0.047289453446865,-0.011837747879326]],[[0.037278350442648,-0.0090829888358712,0.018342262133956],[0.010874395258725,-0.055449206382036,-0.068166561424732],[-0.024688892066479,0.017672749236226,0.010671238414943]],[[0.018082400783896,-0.055550631135702,0.067581154406071],[0.016671365126967,-0.0036952625960112,0.026492178440094],[0.0013280444545671,-0.055213343352079,0.023712445050478]],[[-0.022998856380582,-0.040437527000904,-0.030186919495463],[-0.052277028560638,0.025613935664296,0.014928180724382],[0.03641652315855,0.029325487092137,0.039028067141771]],[[0.024535186588764,0.044799890369177,-0.026477618142962],[0.080428093671799,0.07893692702055,-0.032811161130667],[0.065525494515896,0.033407431095839,0.091751277446747]],[[-0.079047165811062,0.038664720952511,0.00040641007944942],[-0.086987845599651,0.046861488372087,-0.02949876897037],[-0.02707052975893,0.036788817495108,0.035673506557941]],[[0.029188022017479,-0.047656275331974,-0.047952763736248],[-0.037193607538939,-0.0015034435782582,-0.0011133018415421],[-0.016144961118698,-0.0091328471899033,0.031897008419037]],[[0.004968099296093,0.0093917604535818,0.010730003006756],[0.016234766691923,-0.032082796096802,-0.011218019761145],[-0.037636116147041,0.012748829089105,-0.057567194104195]],[[0.02675555460155,-0.084324657917023,0.0026033057365566],[-0.0094804260879755,0.074800878763199,-0.020261563360691],[0.047993753105402,0.0086232926696539,0.073376804590225]],[[-0.03704309463501,-0.00082353223115206,0.014798269607127],[-0.017839759588242,0.044581722468138,-0.044750038534403],[-0.0062219831161201,-0.021746769547462,-0.021227983757854]],[[-0.022513775154948,0.054673098027706,-0.052015829831362],[-0.012248051352799,0.10345289856195,-0.081906147301197],[-0.091816887259483,0.0040712994523346,-0.007836333476007]],[[-0.065707005560398,0.034683141857386,-0.011644311249256],[-0.030190251767635,-0.0040214550681412,-0.010455088689923],[0.021745795384049,0.023050365969539,0.028691316023469]],[[0.016891796141863,-0.011990760453045,0.032952580600977],[-0.010803830809891,0.042226232588291,-0.0078532295301557],[-0.027538226917386,-0.024765333160758,0.031590711325407]],[[-0.017516925930977,-0.021103462204337,0.0084087932482362],[0.032283443957567,-0.047659650444984,0.10198253393173],[-0.055825561285019,-0.0011853952892125,0.029730660840869]],[[-0.028164315968752,0.0020732136908919,-0.091506935656071],[0.038461875170469,0.050589270889759,-0.016283966600895],[0.028286077082157,-0.016632625833154,0.058464247733355]],[[-0.039285354316235,-0.017410472035408,0.032543756067753],[-0.0076057128608227,0.0319654494524,0.04239946603775],[-0.049722261726856,-0.037529695779085,-0.012055732309818]],[[-0.095251955091953,-0.0086321234703064,0.012696570716798],[0.0018432781798765,0.064976669847965,-0.0050272718071938],[0.081039816141129,0.037734340876341,-0.043962612748146]],[[0.0022181798703969,0.06304494291544,0.032666213810444],[0.0049536325968802,-0.031460493803024,-0.029396707192063],[0.016763657331467,-0.044066578149796,-0.02665476873517]],[[-0.041623882949352,-0.014471191912889,-0.012850634753704],[0.0018650725251064,0.037458036094904,-0.0062340414151549],[0.06256652623415,-0.028002610430121,0.016721531748772]],[[0.048881981521845,0.015373394824564,0.019521491602063],[-0.044920369982719,-0.047485116869211,-0.030592616647482],[0.036202576011419,-0.048096925020218,-0.073147319257259]],[[0.010353543795645,0.032754633575678,0.058021582663059],[-0.0067594274878502,-0.067129760980606,-0.0662726983428],[-0.071735456585884,0.05644067376852,0.044057667255402]],[[-0.017376888543367,-0.035416103899479,0.037518113851547],[-0.065118469297886,0.060954980552197,0.064518287777901],[-0.16003939509392,-0.030774073675275,0.074069045484066]],[[0.028870599344373,-0.059763506054878,0.0036324174143374],[0.0013770480873063,0.025633851066232,-0.060242366045713],[-0.0096610505133867,0.012665587477386,-0.10156823694706]],[[-0.030408073216677,-0.014349682256579,-0.034933399409056],[-0.0258275475353,0.063811101019382,-0.011199165135622],[-0.01263643335551,0.00042156950803474,0.032421488314867]],[[-0.018082987517118,0.0013027911772951,-0.04833760112524],[-0.0265296921134,-0.006067203823477,0.025508372113109],[-0.030291594564915,0.012265287339687,-0.064708083868027]],[[0.0090384399518371,-0.027904340997338,-0.0035666795447469],[-0.017671728506684,-0.0082506351172924,-0.026871681213379],[-0.042826756834984,0.025693422183394,0.05868449062109]],[[0.041831817477942,0.025477906689048,0.032806552946568],[-0.08381076157093,-0.043092958629131,-0.015044373460114],[0.03698069229722,-0.049441926181316,0.025775531306863]],[[-0.031488578766584,0.0082499608397484,-0.028497660532594],[0.023559145629406,-0.037452060729265,0.050491143018007],[-0.0081430776044726,-0.0091046132147312,0.082267433404922]],[[0.033034585416317,-0.02804496884346,-0.038868669420481],[0.046523962169886,-0.01554189901799,0.022459598258138],[0.036719374358654,-0.053778294473886,-0.00034033716656268]],[[0.010835092514753,-0.0092276781797409,-0.020534746348858],[-0.0022129570133984,0.0052267010323703,0.035236489027739],[-0.029034812003374,0.03405999392271,0.019141795113683]],[[-0.023473635315895,-0.05491204559803,0.0068354387767613],[0.071053229272366,0.033230323344469,0.00038296193815768],[-0.0017290855757892,0.044908814132214,0.01259209215641]],[[0.036784790456295,-0.033967383205891,-0.011898718774319],[0.036904983222485,0.044315323233604,-0.013464613817632],[-0.044629260897636,-0.0061761043034494,0.013802141882479]],[[-0.0082509014755487,0.043739676475525,0.044381275773048],[-0.026172237470746,-0.074605204164982,0.0083384672179818],[-0.0024615540169179,0.054526895284653,-0.027236130088568]],[[-0.062840014696121,0.081434667110443,0.022183490917087],[-0.10423586517572,-0.0025496820453554,-0.014984695240855],[-0.073166392743587,0.15447527170181,0.038281716406345]],[[-0.067612074315548,0.092979356646538,-0.019339768216014],[-0.052001148462296,0.053679276257753,0.015815325081348],[0.011012186296284,-0.024756787344813,0.023455386981368]],[[-0.034119762480259,-0.093743689358234,-0.0017987012397498],[-0.049602992832661,0.08726716786623,-0.089303888380527],[-0.061907865107059,0.063027940690517,0.059886656701565]],[[-0.027461597695947,0.007141575217247,-0.029671862721443],[-0.0073074554093182,0.048915378749371,0.028400840237737],[0.026882393285632,0.02402519248426,-0.0095766894519329]],[[0.04985050112009,-0.025605073198676,0.0095146484673023],[0.010949148796499,-0.021583160385489,0.020862961187959],[0.0041855438612401,0.0030360631644726,0.040222592651844]],[[-0.023682916536927,0.11336047947407,0.033799175173044],[0.061578340828419,0.031586684286594,-0.052756439894438],[0.0095368213951588,-0.090418204665184,-0.13712754845619]],[[-0.0073917172849178,0.012001750990748,0.057766284793615],[-0.026392340660095,0.013209740631282,0.010531879030168],[-0.017815025523305,0.0075674573890865,-0.015559151768684]],[[0.017986193299294,-0.099428951740265,0.013393236324191],[0.053212229162455,-0.015034884214401,-0.030369414016604],[-0.024734662845731,0.058914709836245,0.0087070679292083]],[[0.078884042799473,0.040566403418779,0.0016522969817743],[0.016290538012981,0.0086754830554128,-0.068688966333866],[-0.03175587952137,0.047366909682751,-0.040539477020502]],[[-0.0096563147380948,-0.021940080448985,-0.0051268539391458],[-0.037814997136593,-0.002139538526535,0.020683052018285],[-0.051168717443943,-0.038502860814333,0.0075498023070395]],[[-0.03993658348918,0.026013934984803,0.069213211536407],[0.037936024367809,-0.016324087977409,0.020092975348234],[0.019950749352574,-0.0059983679093421,-0.031307708472013]],[[-0.0011476792860776,-0.0015192971331999,0.037597823888063],[0.0026972014456987,0.0071121379733086,-0.045332841575146],[0.037844683974981,-0.03838337957859,-0.0066249440424144]],[[0.048129241913557,0.046546164900064,0.0031507073435932],[-0.060784235596657,0.041225273162127,-0.080794706940651],[-0.0081818960607052,-0.076682850718498,-0.0010614052880555]],[[-0.0010539060458541,0.039566293358803,-0.011931815184653],[0.065170302987099,0.0018138262676075,-0.10060356557369],[0.063706927001476,0.040158558636904,-0.046862475574017]],[[-0.015903731808066,0.03414399549365,0.0045845191925764],[-0.0063921664841473,-0.015969410538673,0.010226928628981],[-0.021414164453745,0.040622841566801,-0.035136766731739]],[[-0.042327094823122,0.031004939228296,0.03021970205009],[-0.022958701476455,0.014353443868458,-0.029191602021456],[0.044840134680271,0.0085267731919885,-0.0036998183932155]],[[-0.028098272159696,0.024957360699773,0.040184784680605],[0.0064409296028316,-0.071340695023537,-0.018193271011114],[0.048705354332924,-0.029069365933537,0.079995714128017]],[[-0.0053158164955676,0.042352307587862,-0.027170043438673],[-0.0013942285440862,0.058363076299429,-0.011507479473948],[-0.011875249445438,0.055965173989534,-0.033727258443832]],[[0.021912669762969,0.019411394372582,0.03581403195858],[0.0062634074129164,-0.01680900529027,-0.066893726587296],[-0.080007694661617,0.0031637889333069,0.044347066432238]],[[0.031528353691101,-0.050106335431337,0.0096198143437505],[0.0006045147893019,0.0035279630683362,-0.0044203228317201],[-0.07006036490202,0.0050059086643159,0.010792121291161]],[[-0.061870660632849,-0.040043417364359,-0.011401180177927],[0.0010130476439372,-0.047120157629251,-3.7661367969122e-05],[-0.07080714404583,0.022104626521468,0.046254847198725]],[[0.017868686467409,0.027912262827158,-0.012805973179638],[-0.045838970690966,0.02261009067297,-0.039842687547207],[-0.0023786309175193,-0.0020002259407192,0.044406693428755]],[[0.031346134841442,-0.0025733108632267,-0.088103868067265],[0.077903889119625,-0.12389219552279,-0.058673582971096],[-0.028714869171381,-0.074998140335083,-0.071530438959599]],[[0.018564004451036,0.026911912485957,-0.0012960599269718],[-0.042086638510227,-0.012656513601542,-0.017084324732423],[-0.031414687633514,0.00020729517564178,-0.03448898717761]],[[0.07002679258585,-0.021613910794258,-0.0063998084515333],[0.023099543526769,-0.038858227431774,-0.0026858286000788],[-0.051550999283791,-0.040283028036356,0.026430295780301]],[[-0.043322905898094,-0.046204328536987,-0.015707209706306],[0.029705485329032,-0.020666671916842,-0.0074702403508127],[0.053365178406239,-0.029194159433246,0.02666237950325]],[[-0.013264704495668,0.065215811133385,0.037041127681732],[0.0064437026157975,-0.046810545027256,-0.049247734248638],[0.0018336462089792,-0.0070708841085434,-0.00019251428602729]],[[-0.028430068865418,0.035532739013433,-0.031813837587833],[-0.034828033298254,-0.021699707955122,0.053092688322067],[-0.031071275472641,-0.020887929946184,-0.0085660126060247]],[[0.017340172082186,0.012021765112877,0.030057730153203],[-0.015366397798061,-0.0087484177201986,-0.018549386411905],[0.078252829611301,0.028000393882394,-0.0025980020873249]],[[-0.058842569589615,0.046112231910229,0.038874316960573],[-0.038316942751408,-0.020128520205617,0.040917228907347],[-0.04541327431798,-0.019440336152911,0.015295039862394]],[[0.049818988889456,-0.032714147120714,0.0026825901586562],[0.066368706524372,-0.02850659750402,0.0053709424100816],[-0.078392378985882,-0.039367388933897,0.023995362222195]],[[-0.062285609543324,-0.082243166863918,-0.0079490067437291],[-0.0030497328843921,0.027938270941377,-0.065902218222618],[-0.024479875341058,-0.056028988212347,0.062096834182739]],[[-0.055202446877956,-0.074148736894131,0.0039669214747846],[-0.037018984556198,-0.020486196503043,0.021310061216354],[0.028665140271187,0.042641393840313,0.097094796597958]],[[-0.013468274846673,0.034132461994886,-0.065312579274178],[-0.0077410927042365,0.0063043190166354,0.064300619065762],[0.030078047886491,-0.057291306555271,0.01795475371182]],[[0.0049509857781231,-0.019533196464181,-0.015995742753148],[-0.054399583488703,0.03796298801899,-0.045188769698143],[0.0088121006265283,0.057742562144995,-0.019550697878003]],[[-0.030866341665387,-0.0079877898097038,-0.06818825751543],[0.037975873798132,0.0015849398914725,0.054475761950016],[0.0099209817126393,0.00079646951053292,-0.037969395518303]],[[-0.017653116956353,-0.016929870471358,-0.042660754173994],[-0.036272462457418,0.06225823611021,-0.0082808844745159],[0.016391972079873,0.00039305764948949,0.023913227021694]],[[0.0048840418457985,-0.013032373972237,-0.0091125825420022],[-0.012064749374986,-0.030891893431544,0.060364812612534],[0.017640141770244,-0.064285986125469,0.088390775024891]],[[-0.042687147855759,-0.016322825103998,-0.049405384808779],[-0.065656065940857,-0.09099280834198,-0.0132538061589],[-0.12512998282909,-0.054129332304001,-0.0339744836092]],[[-0.038003515452147,-0.017822563648224,-0.053311381489038],[-0.042973071336746,0.0089118564501405,0.0039549241773784],[0.0026580283883959,0.014442869462073,0.0067933215759695]],[[-0.041247561573982,-0.0063778185285628,0.0398093983531],[-0.0055337441153824,-0.041562154889107,0.017153199762106],[0.090799264609814,-0.042841468006372,0.044874515384436]],[[-0.028301738202572,0.062360372394323,0.013940223492682],[-0.05685056746006,0.032936241477728,0.014516576193273],[-0.0026625702157617,-0.0060041230171919,-0.013681466691196]],[[-0.041196566075087,-0.067157611250877,-0.024393877014518],[0.012181746773422,0.051818784326315,0.024838507175446],[0.015519665554166,0.0021755350753665,-0.038331493735313]],[[-0.039272356778383,0.020190889015794,-0.031179096549749],[-0.0056427554227412,0.05205399915576,-0.047194179147482],[0.046870943158865,-0.0049813436344266,0.050242349505424]],[[0.0030909234192222,0.041902016848326,-0.058237720280886],[-0.036099161952734,0.043095290660858,-0.073847897350788],[0.052035491913557,0.096212074160576,-0.095022886991501]],[[0.068242266774178,0.0096245426684618,-0.084513999521732],[-0.0013616905780509,0.024207405745983,-0.059123162180185],[-0.0060027600266039,0.077011875808239,0.0098745217546821]],[[0.015043254941702,0.0068620797246695,-0.010560241527855],[-0.0026986529119313,-0.011197029612958,-0.048026498407125],[0.015768928453326,0.079147048294544,0.036063708364964]],[[-0.045221265405416,0.030209952965379,0.025998240336776],[0.023949636146426,-0.05100966617465,-0.00012746939319186],[-0.013424758799374,-0.032327085733414,-0.0095632039010525]],[[-0.038700424134731,0.053664356470108,0.022319199517369],[-0.034976609051228,-0.015399192459881,-0.06420112401247],[0.048326719552279,0.057722169905901,-0.030604135245085]],[[0.0057060653343797,0.0046742558479309,0.079070709645748],[-0.029004009440541,-0.098167985677719,0.0034795093815774],[0.060131594538689,0.019577644765377,-0.0078382836654782]],[[0.0066732121631503,-0.088637135922909,0.035556893795729],[-0.007563766092062,-0.051976874470711,0.043323174118996],[0.099542900919914,-0.051713421940804,0.037837941199541]],[[0.018923606723547,-0.071256741881371,0.0046926913782954],[-0.0021867558825761,0.0243358053267,0.01552427560091],[-0.0069532957859337,-0.023433590307832,-0.0047629284672439]],[[-0.045129556208849,-0.006081382278353,-0.012883217073977],[-0.027669304981828,0.022820387035608,-0.0042496710084379],[-0.044000923633575,0.027162991464138,0.036972556263208]],[[-0.050559781491756,-0.064050033688545,0.042371816933155],[0.030351538211107,-0.016320131719112,0.034893192350864],[-0.020361734554172,0.042539577931166,-0.015163958072662]],[[0.0033196078147739,-0.011831223033369,0.041676335036755],[0.013323287479579,0.047289997339249,-0.0095708128064871],[-0.03448785468936,-0.031708978116512,-0.055194590240717]],[[0.043313290923834,0.046707428991795,-0.019947957247496],[-0.066379770636559,-0.065218329429626,-0.027601575478911],[-0.1060378998518,0.031713843345642,0.11158062517643]]],[[[0.044792272150517,0.047237779945135,-0.049060951918364],[0.078279174864292,-0.016249457374215,0.013700652867556],[-0.0022449928801507,-0.021360278129578,-0.048968650400639]],[[0.015227695927024,0.059404723346233,-0.017638724297285],[-0.015793010592461,0.068345732986927,0.0074873734265566],[-0.0036107613705099,0.040445286780596,0.015020021237433]],[[-0.0089193293824792,-0.038329221308231,-0.048547755926847],[0.062060095369816,-0.00038537409272976,-0.031040728092194],[-0.026875581592321,-0.016252785921097,0.0029115432407707]],[[-0.048224486410618,0.036734957247972,0.066123574972153],[-0.036494612693787,0.02747568488121,-0.037030790001154],[-0.027862258255482,-0.10975958406925,-0.041089035570621]],[[0.03515811637044,-0.012685034424067,0.019036941230297],[-0.00013028961257078,0.10787412524223,-0.04358559474349],[-0.0053361277095973,-0.017844162881374,0.057058047503233]],[[0.0051901377737522,0.15591189265251,-0.042859591543674],[-0.023929368704557,0.045272763818502,-0.03188805654645],[0.029759023338556,0.053999356925488,-0.031537309288979]],[[-0.013006732799113,0.0013335675466806,0.037588268518448],[0.00049294700147584,0.020484810695052,-0.017675179988146],[-0.025134909898043,-0.034407060593367,-0.017846973612905]],[[0.049837652593851,0.027590457350016,-0.019666578620672],[0.064719699323177,0.074949309229851,-0.035855036228895],[-0.015278119593859,-0.019262438639998,-0.037311390042305]],[[0.026260267943144,0.020064609125257,0.05609717220068],[0.019209455698729,-0.065855003893375,0.052032291889191],[-0.057095970958471,0.015352415852249,0.047100696712732]],[[-0.01443353202194,-0.030389251187444,0.020859016105533],[0.0030831047333777,0.0573970079422,-0.028959842398763],[-0.042245525866747,-0.041940577328205,-0.0078763654455543]],[[-0.07551583647728,-0.0076193297281861,-0.057041622698307],[-0.029523449018598,-0.021144652739167,-0.032444313168526],[0.0026840332429856,-0.01912766136229,-0.059421591460705]],[[-0.028298260644078,0.0019498617621139,0.065566562116146],[-0.035316172987223,-0.01314024720341,0.011837898753583],[-0.036859858781099,-0.01599651016295,0.11363454908133]],[[0.03348895162344,0.0068700225092471,-0.025236522778869],[0.030118750408292,0.028514681383967,-0.008383140899241],[0.026031594723463,-0.082340784370899,-0.13202945888042]],[[0.02398000843823,-0.020839121192694,-0.020600451156497],[0.020266043022275,-0.093671850860119,-0.01672843657434],[0.020775441080332,-0.048900075256824,0.0078592821955681]],[[0.020713154226542,0.082432836294174,-0.07180692255497],[0.045199427753687,0.08726405352354,0.092631220817566],[-0.0043718153610826,0.0074874046258628,0.085581459105015]],[[-0.016185756772757,-0.033934541046619,0.01725871488452],[0.043833408504725,-0.065789848566055,0.0001250802888535],[0.0017802042420954,0.060771238058805,0.038374666124582]],[[-0.044652342796326,-0.0088670402765274,-0.067390717566013],[0.036024909466505,0.043241858482361,-0.035101447254419],[0.016200916841626,-0.040968026965857,0.017587330192327]],[[0.041883118450642,-0.020283158868551,-0.03432509675622],[-0.0188631657511,0.084194950759411,-0.053390268236399],[0.0014670199016109,0.01109510101378,0.0048032798804343]],[[-0.053188890218735,0.053975187242031,-0.0094616869464517],[-0.011948516592383,-0.020519264042377,-0.076128490269184],[-0.031490139663219,-0.047712106257677,0.018305076286197]],[[0.0099513810127974,-0.10848279297352,-0.0037769873160869],[0.057459224015474,0.0021428624168038,-0.082119919359684],[-0.037970632314682,-0.051389906555414,-0.0078849755227566]],[[0.022396124899387,0.018448175862432,-0.0061119045130908],[-0.031988576054573,-0.037967897951603,0.079008385539055],[-0.049498803913593,0.0044133849442005,-0.030442178249359]],[[0.032329373061657,-0.023678496479988,0.02602525241673],[-0.049361295998096,0.0073570818640292,0.0082648107782006],[0.080027692019939,-0.0030354841146618,-0.026485377922654]],[[-0.034214794635773,0.019335532560945,-0.083529137074947],[-0.065188035368919,0.06637617200613,0.071950674057007],[-0.052034176886082,-0.049400895833969,0.032455153763294]],[[-0.0017786163371056,-0.029333988204598,-0.05567529052496],[0.026464125141501,0.097281470894814,0.040588267147541],[0.10955031961203,-0.086536854505539,-0.015283961780369]],[[0.041899930685759,0.037937790155411,-0.0044891973957419],[-0.052218709141016,-0.065754249691963,-0.029826274141669],[-0.012115528807044,-0.022592207416892,-0.032536841928959]],[[-0.077854432165623,0.043851751834154,-0.038011994212866],[0.04194437712431,0.038872543722391,0.0042193583212793],[-0.00062842183979228,-0.070296458899975,-0.0706837028265]],[[0.06376913189888,0.029980583116412,0.058767538517714],[0.10222587734461,-0.015521279536188,0.047102320939302],[0.01729947142303,-0.017600949853659,-0.0099201323464513]],[[-0.023805350065231,-0.018061313778162,-0.076202176511288],[-0.06172065064311,0.0047079427167773,0.024276746436954],[0.037529241293669,0.0024567898362875,-0.04271887242794]],[[0.04127699509263,0.060732468962669,-0.012604489922523],[0.053838480263948,0.066751375794411,0.025838064029813],[-0.046086233109236,-0.038941763341427,0.020797129720449]],[[0.043404869735241,-0.037998430430889,-0.033853691071272],[-0.047748498618603,0.028871048241854,0.043003968894482],[-0.088489376008511,-0.040959592908621,0.028858816251159]],[[0.027643183246255,0.054340772330761,0.038086015731096],[-0.025377316400409,0.015764264389873,-0.020987410098314],[0.0010640810942277,0.050845291465521,0.00050323846517131]],[[0.027191769331694,-0.038422290235758,-0.016184408217669],[0.013436158187687,0.045676615089178,0.039491567760706],[-0.02095128968358,0.077035181224346,0.0077470182441175]],[[-0.044291820377111,0.019135065376759,0.0014022922841832],[0.013619090430439,-0.027983296662569,0.0031456365250051],[-0.028083415701985,0.085668295621872,0.02851521037519]],[[-0.031007835641503,0.016537260264158,0.054737005382776],[0.062874600291252,0.050667785108089,0.012634550221264],[0.034364558756351,-0.043983172625303,-0.057460356503725]],[[0.0015220447676256,-0.019672907888889,-0.092298716306686],[0.043662745505571,-0.018146989867091,-0.062866538763046],[-0.033583492040634,-0.066617101430893,-0.011492173187435]],[[0.0085504818707705,-0.020909037441015,0.0032173059880733],[0.002819191198796,-0.030302694067359,0.013546979054809],[-0.0021939733996987,-0.031066874042153,-0.015191597864032]],[[-0.036069188266993,0.0038785052020103,-0.011727835051715],[0.040574088692665,0.02743830345571,0.018420994281769],[-0.0014461945975199,0.01210561580956,0.044869162142277]],[[0.0063364105299115,-0.10963279753923,-0.095317371189594],[0.00014133783406578,0.031695600599051,0.0023399980273098],[0.02542214654386,-0.022199919447303,-0.069520018994808]],[[0.058582965284586,0.047102887183428,0.054021190851927],[0.042781122028828,0.09638174623251,0.048847828060389],[0.014233408495784,0.039505209773779,0.041879080235958]],[[0.034989237785339,0.048605900257826,0.027190988883376],[-0.013236734084785,0.027342200279236,0.017357433214784],[0.024729045107961,0.0015831380151212,-0.025185177102685]],[[0.0019728492479771,0.038678344339132,-0.036534432321787],[-0.025595366954803,0.0047321608290076,0.037195019423962],[-0.019573329016566,-0.022477254271507,0.059941947460175]],[[0.0023441405501217,0.058517191559076,-0.031648084521294],[-0.022234227508307,-0.0041525783017278,-0.046054519712925],[0.038251403719187,-0.033956412225962,0.012636392377317]],[[3.404848757782e-05,0.044096019119024,-0.12079203128815],[-0.037206988781691,0.030724760144949,0.022275371477008],[0.031788282096386,-0.041410505771637,-0.055782545357943]],[[0.03404301032424,0.0047632236965001,-0.076395981013775],[-0.051505424082279,0.015795102342963,-0.0066575496457517],[-0.12051888555288,-0.067064307630062,-0.025205876678228]],[[0.034558314830065,0.03711299598217,-0.025550696998835],[0.02118301205337,-0.062695823609829,-0.016724703833461],[0.058250818401575,0.029603946954012,0.014104017987847]],[[-0.015939695760608,-0.072587981820107,-0.014446182176471],[0.068285167217255,-0.055395063012838,-0.0077684996649623],[-0.017345136031508,-0.02970365434885,0.05489656329155]],[[0.025152251124382,0.043561030179262,-0.022840602323413],[0.042944353073835,-0.11837292462587,0.0015157503075898],[0.014734193682671,-0.063505880534649,-0.01082818582654]],[[0.016078455373645,0.092298120260239,0.10245671868324],[-0.075591072440147,-0.14464536309242,0.011573204770684],[-0.13305555284023,-0.018668185919523,0.022792557254434]],[[0.089265242218971,0.023559909313917,-0.056740410625935],[0.0092413909733295,2.5101704522967e-05,-0.055752336978912],[0.040141932666302,-0.0049271495081484,0.018366347998381]],[[-0.036896038800478,0.0067380866967142,0.011780918575823],[0.015548234805465,0.048540119081736,0.034302372485399],[-0.062192615121603,0.03881860896945,0.04891411960125]],[[-0.11798924952745,0.0026639145798981,-0.043778669089079],[0.046995881944895,0.012690072879195,-0.064041785895824],[0.0090764630585909,-0.028234899044037,-0.045437678694725]],[[-0.081928558647633,0.019792595878243,-0.026293948292732],[-0.063252225518227,-0.069608874619007,-0.044105175882578],[-0.01141170412302,-0.059320010244846,-0.014909234829247]],[[0.0091855982318521,-0.028797687962651,-0.0075115440413356],[0.044906836003065,0.019173664972186,-0.020445797592402],[0.025922743603587,-0.006517207249999,-0.00046225468395278]],[[-0.020546155050397,0.056301731616259,-0.0089211501181126],[-0.018856694921851,0.041930954903364,-0.0051985834725201],[-0.0018382743000984,0.06593968719244,-0.02920607663691]],[[-0.0025589379947633,-0.0057438989169896,-0.029901318252087],[0.017908332869411,-0.037325765937567,-0.0040311212651432],[-0.086228378117085,-0.011208674870431,0.063174679875374]],[[-0.061105731874704,-0.02730331197381,0.082882948219776],[0.0015233135782182,-0.046823222190142,-0.036706682294607],[0.008126319386065,0.078012205660343,0.061538446694613]],[[-0.010337770916522,-0.03491124138236,0.033608857542276],[-0.026627033948898,0.025289824232459,0.0069140777923167],[-0.077150262892246,0.062553502619267,-0.021907199174166]],[[0.017495239153504,0.065201260149479,-0.0027650217525661],[0.015516834333539,-0.051711726933718,-0.011255612596869],[-0.073146983981133,0.015811368823051,-0.020802738144994]],[[0.048884432762861,-0.020930832251906,0.00019515799067449],[0.10185881704092,-0.033084150403738,0.040984522551298],[-0.018964651972055,0.031211508437991,0.032801426947117]],[[-0.0069912183098495,0.0045060962438583,-0.072344332933426],[-0.020415278151631,0.017508462071419,0.025204313918948],[0.052805528044701,0.042865749448538,0.0030067530460656]],[[-0.032642759382725,-0.045308299362659,-0.042580798268318],[-0.019227482378483,0.0095504932105541,-0.06775388866663],[0.036463048309088,0.0078091369941831,0.012456457130611]],[[0.038325447589159,0.10978665947914,-0.012167358770967],[0.0068016811273992,0.03337712213397,-0.0041734767146409],[-0.030727047473192,-0.073561049997807,0.047871820628643]],[[0.058754567056894,0.060955267399549,0.045625437051058],[-0.051952119916677,0.041001174598932,0.038831699639559],[0.045913245528936,0.056020941585302,-0.031457509845495]],[[-0.0023837657645345,0.03264669328928,0.064983181655407],[-0.016736585646868,-0.026522617787123,-0.021558789536357],[-0.023052282631397,0.059118840843439,-0.010606588795781]],[[-0.036679871380329,-0.019940936937928,-0.0091984774917364],[0.014886754564941,0.033160753548145,0.024296963587403],[-0.1140324473381,0.0064162779599428,0.039567936211824]],[[0.028802320361137,0.0024838596582413,-0.025079110637307],[-0.00025198969524354,-0.030996564775705,0.0092408806085587],[-0.022009879350662,0.01203300524503,-0.040993336588144]],[[0.0055522765032947,-0.029788179323077,0.061132602393627],[-0.013284715823829,0.020657390356064,-0.00090604939032346],[0.045705541968346,-0.072727255523205,-0.055329896509647]],[[0.070251509547234,0.01294834446162,-0.022707061842084],[0.0037829554639757,-0.010984883643687,-0.04227314889431],[-0.048681832849979,0.031678538769484,0.064049586653709]],[[0.065147288143635,0.0069672912359238,-0.064136438071728],[-0.044201891869307,-0.044669285416603,-0.047336280345917],[-0.067966878414154,0.018909899517894,0.031223593279719]],[[-0.022726533934474,-0.044601630419493,-0.041119445115328],[0.0030516744591296,0.068978898227215,-0.07332019507885],[-0.017248038202524,0.10772880166769,0.084190629422665]],[[0.020549623295665,-0.038367044180632,0.017483748495579],[0.018431508913636,0.045425795018673,0.056331086903811],[-0.020963024348021,0.048401292413473,-0.045683216303587]],[[-0.02942069619894,0.100442096591,0.057005729526281],[-0.10779520869255,-0.022735934704542,-0.013522970490158],[0.036488749086857,-0.04717093333602,0.0027029172051698]],[[-0.02095590531826,-0.035286739468575,-0.020792916417122],[-0.053128752857447,0.06579165905714,0.079793691635132],[-0.042136557400227,-0.079017773270607,0.036816071718931]],[[-0.034721564501524,0.049504566937685,0.043738976120949],[-0.0090535283088684,-0.006719877012074,0.015325428918004],[-0.00051954766968265,0.020327987149358,-0.020443389192224]],[[0.0092919925227761,0.026821242645383,0.078197002410889],[0.058476943522692,-0.011445038951933,-0.031042231246829],[-0.010206434875727,0.0093052657321095,-0.0799875035882]],[[0.039666406810284,0.051152866333723,0.02214221470058],[-0.042674615979195,-0.021516613662243,0.027794059365988],[-0.011494590900838,0.030177919194102,0.0071934880688787]],[[0.0089589199051261,0.036943763494492,-0.023849265649915],[-0.022707192227244,-0.0074605816043913,-0.0077961324714124],[-0.053493145853281,0.062567286193371,0.018354399129748]],[[-0.025765627622604,-0.010061969980597,0.02650754712522],[-0.061587177217007,0.076214522123337,-0.047873001545668],[0.037739977240562,0.024726720526814,-0.051606860011816]],[[-0.033440351486206,-0.0037106384988874,0.0010388114023954],[0.016054470092058,-0.052340522408485,-0.029100837185979],[-0.030590835958719,-0.060090012848377,-0.025703087449074]],[[0.034942131489515,-0.017565041780472,0.06119903549552],[0.041224859654903,-0.050216764211655,0.047922346740961],[0.030177095904946,-0.030668757855892,0.034977048635483]],[[0.065874487161636,0.068771444261074,0.022809576243162],[-0.0090759489685297,-0.024742158129811,-0.0040969140827656],[0.032525654882193,-0.024155763909221,0.030585575848818]],[[0.060556396842003,0.09731787443161,-0.060693230479956],[-0.045024063438177,-0.025229575112462,0.092782758176327],[-0.054490529000759,-0.041131395846605,0.077619604766369]],[[0.0025462503544986,0.021002227440476,0.047122176736593],[-0.069269619882107,0.016966147348285,-0.029658868908882],[-0.014340540394187,-0.005426777061075,0.0051678973250091]],[[0.0077834455296397,-0.047821417450905,0.039617374539375],[0.0066780271008611,0.029256654903293,-0.0082029579207301],[-0.00012238346971571,-0.077348113059998,-0.0083980700001121]],[[-0.044364862143993,-0.0043295007199049,0.0069602727890015],[-0.03608950600028,0.010085959918797,0.0080566825345159],[0.041013285517693,0.0065145860426128,0.092716135084629]],[[-0.0034384822938591,0.061934672296047,-0.015597983263433],[0.002366284141317,-0.020800670608878,-0.018993088975549],[-0.038809195160866,-0.034428607672453,-0.007741040084511]],[[0.025302682071924,-0.082660973072052,-0.0066827302798629],[-0.0026176346000284,-0.016940275207162,-0.076290093362331],[0.018722295761108,-0.037506740540266,-0.056934390217066]],[[-0.00037335703382269,0.015016221441329,0.0048867291770875],[-0.024568730965257,-0.066740721464157,-0.017537303268909],[0.020856292918324,0.047640133649111,0.040819190442562]],[[0.030971782281995,0.010198119096458,-0.010830607265234],[-0.0089021343737841,0.0065741622820497,0.003337336005643],[0.068913824856281,0.11044342815876,-0.017395455390215]],[[-0.056749004870653,-0.0044368784874678,-0.037996578961611],[-0.025457873940468,-0.046033412218094,0.035270735621452],[0.009585790336132,-0.03368902951479,0.025107692927122]],[[0.019530141726136,0.0033014849759638,-0.047512643039227],[0.017824418842793,-0.005054394248873,0.056801076978445],[-0.031690876930952,-0.032561417669058,0.047130785882473]],[[0.016306784003973,-0.032369300723076,0.0061937891878188],[-0.043333612382412,0.06451104581356,-0.036315873265266],[-0.0065201953984797,0.049228064715862,0.0077700880356133]],[[-0.048074427992105,0.049502976238728,0.0239223446697],[0.017707137390971,0.0082065463066101,0.0024571102112532],[0.050540998578072,-0.074646636843681,0.009756937623024]],[[0.0067898114211857,-0.0017553844954818,-0.052814263850451],[0.024419503286481,-0.067130297422409,-0.013109023682773],[-0.039266258478165,-0.018365554511547,-0.069911397993565]],[[-0.033240210264921,0.0059629431925714,0.024728901684284],[-0.015711868181825,0.012109126895666,0.0079899895936251],[-0.0083511220291257,-0.0013603307306767,0.010422619059682]],[[0.029739988967776,-0.02693397551775,0.028136949986219],[0.033103786408901,0.053697817027569,0.063625521957874],[0.014449456706643,-0.026130896061659,0.068819686770439]],[[-0.029424395412207,-0.025081731379032,0.002380033954978],[0.0035436353646219,0.032475929707289,0.04743878915906],[-0.063291765749454,-0.038635279983282,0.062098652124405]],[[-0.019267316907644,-0.040747687220573,-0.0097012426704168],[0.060762230306864,0.049215212464333,0.073067411780357],[0.0070075006224215,-0.063989013433456,-0.074876219034195]],[[0.017839772626758,0.027172921225429,-0.050085429102182],[0.002944475505501,-0.024910103529692,-0.055221129208803],[0.0086315525695682,0.0044137961231172,-0.027516169473529]],[[-0.021503617987037,-0.018282009288669,0.052259765565395],[-0.089549452066422,-0.060224376618862,0.024206912145019],[-0.014232310466468,-0.03516848757863,-0.02194076217711]],[[0.0046282582916319,-0.02631701529026,0.0027061351574957],[-0.014456267468631,-0.047542840242386,-0.0556346103549],[0.010899626649916,0.042069118469954,0.055651213973761]],[[-0.024606537073851,-0.098778367042542,0.079014897346497],[0.021663673222065,0.044095113873482,-0.062620088458061],[-0.084363467991352,0.034663379192352,0.071427032351494]],[[0.015601159073412,0.040586210787296,0.032795839011669],[0.020124834030867,0.0038457126356661,-0.015903120860457],[0.0060160895809531,0.068952299654484,-0.045506060123444]],[[0.067940138280392,-0.0086972024291754,0.041906345635653],[-0.0091546606272459,-0.01019574701786,0.056620296090841],[-0.05880269035697,0.079946704208851,-0.043165538460016]],[[-0.017674887552857,0.0037346000317484,0.050914380699396],[-0.026974691078067,0.035030875355005,-0.014481169171631],[0.06943229585886,0.032667096704245,-0.035652160644531]],[[-0.021916823461652,0.035493105649948,-0.020539639517665],[-0.014969232492149,-0.084609091281891,-0.049471981823444],[-0.043323904275894,0.038575239479542,-0.049047790467739]],[[0.0046369703486562,-0.076927617192268,0.015722561627626],[0.0076665440574288,-0.03410942107439,-0.0066441330127418],[0.025571558624506,-0.019124204292893,0.063678860664368]],[[0.010123305954039,0.015658561140299,0.0097888819873333],[-0.085507519543171,-0.0022970975842327,0.0062537463381886],[0.0040150713175535,0.024307111278176,-0.012973293662071]],[[-0.029599076136947,0.0015207469696179,-0.092995554208755],[-0.046366639435291,-0.080853395164013,-0.062848806381226],[-0.037618167698383,-0.10626411437988,-0.064076736569405]],[[-0.078124389052391,0.039749942719936,0.020903643220663],[-0.02988912537694,-0.013925153762102,0.026230551302433],[-0.026792602613568,-0.024707118049264,0.033325545489788]],[[0.049789421260357,0.020198950544,-0.0082054557278752],[0.006338944658637,-0.015470585785806,0.094466008245945],[0.07289719581604,-0.033592324703932,0.023729061707854]],[[0.015527030453086,-0.11840172857046,-0.093104630708694],[0.023350020870566,0.0045049986802042,-0.062250670045614],[-0.066011905670166,-0.063502870500088,-0.03460455685854]],[[-0.042982123792171,-0.028389705345035,0.083411492407322],[0.045399833470583,-0.040527425706387,0.11488223075867],[-0.067202806472778,0.035174895077944,0.060699760913849]],[[-0.0077428352087736,0.064628206193447,0.03897001221776],[0.049974098801613,-0.047145135700703,-0.02406164072454],[-0.002835278166458,-0.052018962800503,0.058857511729002]],[[0.035206019878387,0.041901588439941,-0.020630300045013],[0.032707013189793,-0.0048032770864666,0.039861597120762],[-0.013933824375272,-0.019695743918419,-0.03475734218955]],[[-0.020883575081825,-0.040748484432697,-0.084193989634514],[-0.019246440380812,-0.041763123124838,-0.045399460941553],[-0.026831727474928,0.065540373325348,0.050401352345943]],[[-0.01014643535018,-0.026580404490232,-0.064016692340374],[0.0045716408640146,0.063526406884193,0.067909643054008],[0.016079153865576,-5.6413860875182e-05,0.058891132473946]],[[0.06191061809659,-0.023873910307884,0.031505178660154],[-0.066194705665112,-0.013393605127931,0.0130700385198],[0.056307759135962,0.005123286973685,0.066334553062916]],[[-8.010463352548e-05,-0.0016749675851315,-0.04012494161725],[-0.036700755357742,-0.012366808019578,-0.044686064124107],[-0.025794342160225,0.004813794977963,-0.0037280737888068]],[[0.062527850270271,-0.025161787867546,0.025985054671764],[-0.0068854270502925,0.0017028532456607,0.0071593732573092],[-0.0096764275804162,0.036916378885508,0.014150183647871]],[[-0.011411668732762,-0.0046046753413975,0.0091907400637865],[-0.008675436489284,-0.052574750036001,-0.0038647977635264],[0.0037526283413172,-0.061948210000992,-0.030060291290283]],[[-0.018776927143335,0.021846732124686,0.0035645966418087],[0.035231564193964,0.0061370437033474,0.065724097192287],[-0.014065742492676,0.015762407332659,0.018679443746805]],[[-0.052862521260977,-0.070524029433727,0.11130443960428],[-0.08890076726675,0.0071978680789471,0.031830545514822],[0.064268164336681,-0.035842344164848,-0.0036326413974166]],[[0.07412277162075,-0.062584795057774,-0.045133292675018],[-0.011091645807028,-0.027337227016687,-0.0087362695485353],[-0.0018319719238207,-0.026479665189981,-0.051601357758045]],[[0.039597153663635,0.0794408172369,0.048702761530876],[0.0070678470656276,-0.099079631268978,-0.00061908102361485],[-0.06859328597784,-0.043011225759983,-0.0046107079833746]],[[0.064350552856922,-0.016107581555843,0.016724184155464],[-0.018627665936947,0.0035439045168459,-0.025234604254365],[0.012506885454059,-0.010597852058709,0.063839197158813]],[[-0.009326764382422,0.030165692791343,-0.018670557066798],[-0.0017671070527285,0.081443339586258,0.022285910323262],[0.016726786270738,-0.046572774648666,0.069742552936077]],[[0.046359207481146,-0.022453997284174,0.035480462014675],[0.0020600825082511,-0.0058755408972502,-0.0065277572721243],[-0.062213752418756,-0.025608936324716,0.057884819805622]]],[[[-0.085888475179672,0.040858056396246,-0.09888081997633],[-0.0040285042487085,-0.013622909784317,0.016343273222446],[0.02124460414052,0.064181484282017,0.050999622792006]],[[0.031861700117588,-0.0065865172073245,0.026350436732173],[0.031304590404034,-0.008721680380404,-0.022514024749398],[-0.001364771858789,-0.029981896281242,-0.029870878905058]],[[-0.0025805963668972,-0.0065201446413994,0.051298186182976],[-0.062955036759377,-0.019804894924164,0.031385879963636],[0.044057119637728,0.020062768831849,-0.032301507890224]],[[0.019075298681855,-0.026165630668402,-0.039155464619398],[0.018474126234651,-0.023821953684092,0.030843188986182],[-0.035186812281609,-0.0041731703095138,0.074159674346447]],[[-0.078477308154106,0.064856074750423,0.039746910333633],[0.037304379045963,0.019119536504149,0.01373905595392],[-0.080170206725597,-0.066092394292355,0.10751857608557]],[[0.077945202589035,-0.0087267691269517,0.034287191927433],[-0.034008875489235,0.032694090157747,-0.0072633372619748],[0.030248733237386,0.014884309843183,-0.025015035644174]],[[-0.03494630381465,0.034318868070841,-0.041136100888252],[0.017229646444321,0.036672543734312,0.061252303421497],[0.032472688704729,-0.0030346519779414,0.0012678682105616]],[[0.050377704203129,0.012252782471478,-0.010792239569128],[0.046142872422934,0.0056028622202575,0.072492860257626],[0.019142126664519,0.03378190100193,-0.02504731528461]],[[-0.033327713608742,-0.012806002981961,0.048007473349571],[-0.041940361261368,0.03185985609889,-0.013883936218917],[-0.049861222505569,-0.062457405030727,0.035066287964582]],[[0.065105192363262,0.10506845265627,0.070464499294758],[0.044003620743752,0.017716152593493,0.014647184871137],[-0.029230318963528,-0.043161530047655,-0.046807605773211]],[[0.058101903647184,0.0066664307378232,0.053368631750345],[-0.042915266007185,-0.015457848086953,0.13239549100399],[0.023857809603214,0.015166629105806,0.071567237377167]],[[0.030462486669421,0.065492697060108,-0.0075047677382827],[-0.034845314919949,-0.05955508351326,-0.0015650311252102],[0.043673329055309,0.061997395008802,0.035710338503122]],[[-0.083810642361641,0.0016446331283078,0.0057543702423573],[0.037746906280518,0.045636046677828,0.020601222291589],[0.056044090539217,0.029509793967009,0.00036560592707247]],[[0.024662589654326,-0.0049945879727602,0.0094804596155882],[-0.024241527542472,0.025219859555364,0.023804603144526],[0.066393822431564,0.067056074738503,-0.0190897770226]],[[-0.080179303884506,0.042316950857639,0.026828920468688],[-0.060438755899668,-0.067799016833305,-0.033678133040667],[0.0097039360553026,-0.050426952540874,-0.0046961922198534]],[[-0.045015871524811,-0.0033548774663359,0.080875568091869],[0.018840447068214,0.045412585139275,-0.025879617780447],[-0.014072059653699,-0.02068898268044,0.030906345695257]],[[0.018196415156126,0.058316759765148,-0.026302268728614],[0.02529020793736,-0.060492023825645,0.058764562010765],[0.030985726043582,0.069038078188896,0.044891312718391]],[[-0.033033534884453,-0.05056182295084,-0.021812481805682],[-0.0077048712410033,0.049803256988525,-0.048613823950291],[-0.031896315515041,-0.026928359642625,-0.01969395019114]],[[-0.023206459358335,0.055444397032261,-0.0076623973436654],[0.011462986469269,0.0099554415792227,-0.053202942013741],[-0.0059087532572448,-8.4246275946498e-05,-0.063066959381104]],[[0.071840226650238,0.0091811679303646,0.022041264921427],[0.10402727127075,0.020988028496504,-0.042694773525],[0.0016895248554647,0.022532353177667,0.031154712662101]],[[-0.043086674064398,-0.0283058937639,0.059677846729755],[-0.021983472630382,-0.021636398509145,-0.057685736566782],[-0.038845025002956,0.019514709711075,-0.033088225871325]],[[0.073024861514568,0.054099142551422,0.058659698814154],[0.065606854856014,-0.031740669161081,0.045459814369678],[-0.031063586473465,0.07941010594368,0.090053357183933]],[[0.050923306494951,-0.095371104776859,-0.022498317062855],[-0.027635391801596,-0.052154757082462,-0.066254802048206],[-0.033161647617817,-0.012660395354033,0.01572347804904]],[[0.084065206348896,0.11941825598478,0.009726082906127],[0.011035832576454,0.011783770285547,0.031992994248867],[0.040658857673407,-9.9327160569374e-05,0.13292267918587]],[[0.0097624156624079,0.0070751812309027,-0.046538252383471],[-0.039119400084019,0.044080469757318,0.1112787425518],[-0.055932115763426,-0.015268569812179,0.011279359459877]],[[-0.05227217450738,-0.030450139194727,0.052972353994846],[-0.010033232159913,-0.028433453291655,0.0071536931209266],[-0.069317415356636,-0.046370577067137,0.066728383302689]],[[0.030846023932099,0.0086115309968591,0.037465870380402],[-0.11098375171423,0.037315644323826,0.019191773608327],[-0.012099893763661,0.0058269924484193,0.016937093809247]],[[-0.020467814058065,0.051827818155289,-0.03271646425128],[0.11249662190676,0.023451261222363,0.0028887279331684],[-0.0024077892303467,0.051189836114645,-0.079306855797768]],[[-0.0046612410806119,0.070703268051147,-0.016151072457433],[-0.055779755115509,0.032711811363697,-0.029379840940237],[0.12770290672779,-0.0037008412182331,-0.022325018420815]],[[-0.046392329037189,0.066045835614204,-0.063400939106941],[0.086861997842789,-0.05968689545989,-0.027097098529339],[-0.09552763402462,-0.04347812756896,-0.049580488353968]],[[0.041035328060389,-0.0052937110885978,-0.029841231182218],[0.022901155054569,0.051196083426476,0.052827849984169],[-0.02716569788754,0.055295810103416,-0.0060505475848913]],[[0.037092830985785,-0.045474339276552,0.026701264083385],[-0.037522286176682,0.093823924660683,-0.08886581659317],[0.046090852469206,-0.013131481595337,0.084546111524105]],[[0.001916071982123,0.014877195470035,0.025008387863636],[-0.0038507729768753,-0.011887584812939,0.0062496531754732],[-0.084816403687,0.01166082918644,-0.071857452392578]],[[-0.014393375255167,-0.029332084581256,0.088559195399284],[0.014430808834732,0.0032852084841579,-0.0062055299058557],[0.014459324069321,0.031973864883184,-0.012935961596668]],[[0.07904651761055,0.059145666658878,-0.039697408676147],[-0.018440390005708,-0.019847486168146,-0.03082025423646],[0.080129511654377,-0.013275817967951,-0.029061233624816]],[[-0.059219289571047,0.015739737078547,0.029935397207737],[0.044688299298286,0.046410176903009,-0.021122191101313],[0.048590794205666,-0.0011466159485281,0.019013822078705]],[[-0.060626406222582,-0.0019814828410745,-0.065756849944592],[-0.079742006957531,0.067771963775158,0.069680579006672],[-0.016022650524974,-0.063096925616264,-0.034605424851179]],[[-0.03784703835845,-0.043486729264259,-0.021439665928483],[-0.039056736975908,-0.07527507096529,0.11103422194719],[-0.047764040529728,0.021876765415072,-0.0012451179791242]],[[0.0092475721612573,-0.029795866459608,0.12863184511662],[0.038569293916225,0.033404916524887,0.009592778980732],[0.050149265676737,-0.056855160742998,0.026832407340407]],[[-0.088191278278828,0.10702789574862,-0.011840579099953],[-0.038757756352425,0.048218585550785,0.04881452023983],[-0.012770617380738,0.025244235992432,0.053393051028252]],[[-0.0041506863199174,0.015052891336381,-0.059263817965984],[-0.0091108866035938,-0.0085142413154244,0.020842721685767],[0.017922868952155,-0.058268174529076,0.035462319850922]],[[0.013717081397772,-0.028260434046388,0.076187752187252],[0.027781449258327,0.070697538554668,0.032775394618511],[0.024745972827077,0.022981183603406,0.014187359251082]],[[-0.098261043429375,-0.059613909572363,0.030905922874808],[-0.076017208397388,0.041861593723297,-0.045665860176086],[0.0081352367997169,-0.016487373039126,0.04907713830471]],[[0.093993656337261,-0.032638888806105,0.01420184969902],[0.047525867819786,0.017413970082998,0.055529549717903],[0.06321357935667,0.0089533068239689,0.028464507311583]],[[-0.019843665882945,0.017785431817174,-0.054019346833229],[0.022242415696383,0.068474248051643,-0.03830411285162],[-0.01216434314847,0.079468473792076,0.11692656576633]],[[-0.0057414211332798,0.051473326981068,-0.086994327604771],[0.023088177666068,0.0007958157802932,0.0088524296879768],[0.049301348626614,0.00068528734846041,-0.029020149260759]],[[-0.045019038021564,0.007518504280597,-0.061812315136194],[0.025351880118251,-0.093810141086578,0.077471740543842],[-0.0017301776679233,-0.011759829707444,0.03166788071394]],[[-0.016950795426965,-0.047444026917219,-0.020943460986018],[-0.00064855412347242,-0.022245915606618,-0.050852172076702],[0.035548720508814,-0.056890986859798,-0.074309937655926]],[[-0.14062131941319,-0.034487921744585,-0.065680347383022],[-0.0082675572484732,-0.0054150717332959,-0.016865873709321],[0.014892685227096,0.0033376275096089,0.031534925103188]],[[0.041998352855444,-0.016227724030614,0.083356991410255],[-0.11606802046299,-0.075799480080605,0.012448340654373],[-0.08759380877018,-0.083153896033764,0.0064331809990108]],[[-0.004328197799623,-0.062794484198093,0.047851722687483],[-0.095272421836853,0.0066871796734631,0.00041369590326212],[0.041874658316374,-0.038041140884161,-0.058960009366274]],[[0.039319839328527,-0.010902815498412,0.033718049526215],[-0.0018501712474972,-0.015215301886201,0.01166910212487],[-0.036017816513777,-0.020346680656075,-0.02125309407711]],[[0.054528351873159,0.019702250137925,0.079050958156586],[-0.056104905903339,0.052778299897909,0.045913707464933],[-0.04743354767561,0.02171410061419,-0.06359988451004]],[[0.005325370002538,0.12944766879082,0.0090745175257325],[0.01440173946321,0.13877287507057,0.060988646000624],[0.062994211912155,0.048449821770191,-0.011312009766698]],[[-0.038920879364014,-0.086904741823673,0.046474289149046],[0.019387982785702,-0.046489093452692,0.029284616932273],[0.011003308929503,-0.013013730756938,-0.02829778380692]],[[0.018444674089551,-0.0039571509696543,-0.0087466659024358],[0.039065957069397,-0.0080385766923428,-0.042965572327375],[0.037469990551472,-0.013145989738405,0.02201678417623]],[[-0.027468154206872,0.016593467444181,0.01301865465939],[-0.047804735600948,0.019151091575623,0.060820899903774],[0.07179731875658,-0.093534491956234,0.069038659334183]],[[-0.049332071095705,0.051826078444719,-0.023708930239081],[-0.056653756648302,0.019708370789886,0.0084568085148931],[-0.04466075822711,0.024139419198036,0.0020147522445768]],[[-0.032146476209164,-0.016241900622845,-0.01693413220346],[-0.056469738483429,-0.049069803208113,-0.07257305085659],[0.025476951152086,-0.049104087054729,0.061201825737953]],[[0.013427650555968,0.041303034871817,0.025025060400367],[-0.044415853917599,0.066081218421459,0.036481894552708],[-0.072649702429771,-0.020336272194982,-0.079914346337318]],[[0.0098159592598677,0.12087923288345,-0.057838391512632],[0.03435143828392,0.024761052802205,-0.012697333469987],[-0.029750611633062,-0.0040889363735914,-0.021746477112174]],[[-0.0047538354992867,-0.041551776230335,0.05802971124649],[0.0373848490417,-0.015521508641541,0.061582952737808],[0.03642014414072,-0.018401119858027,-0.0601726770401]],[[0.0511324852705,-0.015829395502806,0.037874482572079],[0.057840045541525,-0.036048889160156,-0.020838625729084],[-0.026930505409837,-0.042898166924715,-0.005871431902051]],[[0.033640753477812,-0.035970844328403,-0.063272923231125],[0.014542300254107,-0.073583208024502,0.002386765787378],[-0.032492373138666,0.024230848997831,0.0028557276818901]],[[0.069121904671192,-0.041365414857864,0.05256325379014],[-0.03510894626379,-0.12121524661779,-0.083876743912697],[0.048282992094755,0.064599201083183,-0.039791353046894]],[[0.042840048670769,0.033466782420874,0.039989463984966],[0.018818149343133,0.00054991815704852,0.061791215091944],[-0.0066514010541141,-0.07662670314312,0.065690465271473]],[[-0.0067969239316881,0.057719767093658,0.059268340468407],[-0.011980837211013,-0.069849595427513,-0.0063818958587945],[0.020536184310913,-0.11846013367176,-0.055784579366446]],[[-0.013010432943702,0.0458614975214,-0.025764182209969],[0.055575899779797,0.090222537517548,0.0071330107748508],[-0.020743085071445,-0.054903298616409,-0.043883211910725]],[[0.036066006869078,-0.046104785054922,-0.031357556581497],[0.052601877599955,-0.049287289381027,-0.09291822463274],[-0.060305248945951,-0.058319799602032,-0.017237961292267]],[[-0.016661671921611,0.010770721361041,0.064216986298561],[-0.053917862474918,0.060410007834435,-0.021570656448603],[0.021267903968692,-0.044054303318262,0.047977771610022]],[[-0.094448059797287,0.020225921645761,-0.021080262959003],[-0.0021585919894278,0.010308709926903,0.017909115180373],[-0.05091406032443,-0.020630460232496,-0.031268641352654]],[[0.0021983867045492,-0.097833313047886,0.043885346502066],[0.015776008367538,0.064893461763859,-0.05595875531435],[-0.079902514815331,-0.052501242607832,-0.030269464477897]],[[0.020291281864047,-0.070525042712688,0.043422359973192],[0.03730833157897,-0.065790429711342,0.010044059716165],[0.065080672502518,-0.073233850300312,-0.0050674718804657]],[[0.00048737577162683,-0.010391784831882,0.014111182652414],[-0.03596917539835,-0.0035938729997724,0.048122551292181],[-0.0015268615679815,0.030101019889116,0.012826264835894]],[[0.0097152953967452,0.021738119423389,0.064346849918365],[-0.049955528229475,-0.0036527207121253,-0.062268823385239],[-0.038927372545004,0.081621050834656,0.038393367081881]],[[0.016675462946296,0.10526098310947,0.049494288861752],[0.072433687746525,0.0092335371300578,-0.053550060838461],[-0.037036214023829,-0.020326836034656,0.022035973146558]],[[0.0049515306018293,-0.087392292916775,-0.046194911003113],[-0.010150551795959,0.053093053400517,0.044088743627071],[0.029945651069283,0.040842089802027,-0.033659137785435]],[[0.0036493912339211,0.011439349502325,-0.05036972463131],[-0.079567037522793,-0.029554139822721,-0.10708842426538],[0.061383258551359,-0.0096670761704445,-0.0204804148525]],[[0.0058072158135474,-0.026582047343254,-0.051928512752056],[0.10535062104464,0.0013501821085811,0.072941467165947],[-0.0077246502041817,-0.040162537246943,-0.036078967154026]],[[0.022135583683848,0.063412360846996,-0.01548236515373],[-0.0012537573929876,0.054212890565395,0.016790363937616],[-0.050684995949268,0.078780718147755,-0.016924757510424]],[[-0.027678830549121,0.0076190885156393,-0.025364564731717],[0.0065415147691965,0.057188268750906,-0.0043214969336987],[0.038814309984446,0.041562601923943,0.035877387970686]],[[-0.0059737069532275,0.072114333510399,0.091632850468159],[0.027063665911555,-0.027351085096598,-0.05935737118125],[-0.055066872388124,0.030725624412298,-0.038828395307064]],[[-0.047454670071602,0.032007552683353,-0.02127736620605],[-0.065066367387772,-0.015531953424215,-0.03566388040781],[0.072824865579605,0.065863974392414,0.019243609160185]],[[0.031256262212992,-0.031300641596317,-0.048484805971384],[0.055719342082739,0.070238642394543,-0.035269722342491],[-0.0029876141343266,-0.00074563000816852,0.04588970169425]],[[-0.008223912678659,-0.012684998102486,0.018873188644648],[-0.0034164804965258,-0.024885410442948,-0.049792841076851],[-0.012299785390496,0.017708299681544,-0.028906447812915]],[[0.017560990527272,0.011312555521727,0.0014476784272119],[0.0006246478878893,-0.01984473131597,-0.054356783628464],[0.068773657083511,0.01067213807255,0.061184823513031]],[[-0.022115429863334,0.029402172192931,-0.049231946468353],[0.022190073505044,0.056838598102331,-0.042497221380472],[0.035980440676212,0.0023839664645493,0.033059060573578]],[[0.029596848413348,-0.055257022380829,-0.042112741619349],[-0.037205260246992,0.0055874246172607,-0.0030129763763398],[0.073961704969406,0.057302813977003,-0.033917345106602]],[[0.018642885610461,-0.057976707816124,-0.00012245078687556],[-0.086167804896832,0.062319047749043,-0.06686620414257],[-0.035677574574947,0.0041944859549403,0.052510004490614]],[[0.049239404499531,-0.067273534834385,0.0034066932275891],[0.0058074509724975,0.033481251448393,-0.024863436818123],[0.075493335723877,0.0080873453989625,-0.04872627556324]],[[-0.017790941521525,-0.0070408307947218,0.012014660984278],[-0.020618341863155,0.027300594374537,0.01329933386296],[-0.092969797551632,0.031022014096379,-0.059902869164944]],[[-0.044412191957235,0.0010552230523899,-0.047801181674004],[-0.075302176177502,0.030549332499504,0.049964442849159],[-0.014023565687239,-0.022998131811619,-0.024236397817731]],[[0.056675113737583,0.0046990937553346,-0.044649124145508],[0.048471163958311,0.033299382776022,-0.042282376438379],[0.071485549211502,-0.0062054214067757,-0.0017893414478749]],[[-0.0033371148165315,0.033674746751785,0.03580005839467],[0.032363690435886,-0.035762939602137,-0.067846268415451],[-0.072861224412918,0.028227150440216,-0.059849821031094]],[[-0.041303485631943,-0.012765367515385,-0.0035594082437456],[0.065654948353767,-0.031210154294968,0.03107488900423],[-0.055237662047148,-0.019037913531065,-0.0083296466618776]],[[-0.031501095741987,-0.026463892310858,0.036916833370924],[0.00014866951096337,0.005189610645175,0.042250446975231],[-0.011280031874776,-0.12070499360561,-0.023102333769202]],[[-0.020955307409167,-0.035279214382172,0.022429184988141],[0.06374279409647,0.054521627724171,-0.10268698632717],[0.012214322574437,0.025311347097158,0.029718551784754]],[[0.021677197888494,-0.054201647639275,-0.070587731897831],[0.021506970748305,-0.048270672559738,-0.069117479026318],[-0.023712139576674,0.019726052880287,0.023519955575466]],[[-0.015365418978035,0.054088644683361,0.0054968944750726],[0.065106362104416,-0.010815023444593,-0.00662891427055],[0.021156191825867,-0.084942765533924,0.014308796264231]],[[0.049088340252638,0.033831275999546,0.065080039203167],[0.0010538275819272,0.10668486356735,-0.055040799081326],[-0.05586713925004,-0.049612183123827,0.050508517771959]],[[0.055077724158764,-0.023559113964438,-0.063057795166969],[0.01235640514642,0.011495660990477,0.11132315546274],[0.076567843556404,-0.059040777385235,0.028219327330589]],[[0.014918203465641,0.049220386892557,0.038818351924419],[0.0031890769023448,-0.010895112529397,0.1000782251358],[0.027840688824654,-0.060587085783482,0.0079423552379012]],[[0.03520567342639,0.001858944655396,-0.080812521278858],[-0.00027002961724065,-0.0040743923746049,0.026181682944298],[0.0042016515508294,-0.0031033412087709,-0.039575804024935]],[[-0.040832504630089,-0.0045083458535373,-0.040308680385351],[-0.016259638592601,0.010189487598836,0.093031734228134],[-0.035456616431475,-0.084053531289101,0.0021316325291991]],[[-0.017791859805584,-0.034623645246029,-0.003552814014256],[-0.0047301566228271,0.054564960300922,0.0137032661587],[0.08821801841259,0.013949511572719,-0.013062752783298]],[[0.009489968419075,-0.023237993940711,-0.011435736902058],[0.052246190607548,0.04855190590024,0.042224630713463],[0.017724219709635,0.0047050812281668,0.039470471441746]],[[0.059320006519556,0.034023556858301,0.03148640692234],[0.0959677323699,-0.020479900762439,0.055524758994579],[0.070812605321407,-0.04427981749177,-0.022196771577001]],[[0.011947839520872,0.052361764013767,-0.038912888616323],[0.077574104070663,0.0458671040833,-0.029762057587504],[-0.062553785741329,-0.035247966647148,-0.0087548932060599]],[[0.02593114040792,0.041125427931547,-0.051581747829914],[0.079501643776894,0.033477205783129,0.10591656714678],[0.080655992031097,-0.033420883119106,-0.01254013646394]],[[-0.10707445442677,0.020924778655171,0.005096975248307],[-0.07430811226368,0.060702666640282,0.050907243043184],[0.056689281016588,-0.014211687259376,-0.025554019957781]],[[0.034289449453354,0.0089608589187264,0.043403662741184],[0.042486470192671,-0.016198396682739,0.012145195156336],[-0.054603934288025,0.0077351341024041,0.016118727624416]],[[0.064434304833412,-0.02061839401722,-0.10995360463858],[-0.029854141175747,0.036329325288534,-0.02841779589653],[0.11315897852182,0.00051380100194365,-0.0030076676048338]],[[-0.03222705796361,0.02880853228271,-0.02962389960885],[-0.0055540539324284,-0.049215126782656,-0.041569419205189],[-0.051577493548393,0.0013587899738923,0.059982273727655]],[[-0.0082637351006269,-0.022899521514773,-0.0072015197947621],[-0.077843226492405,-0.0077907699160278,-0.030544813722372],[-0.013939684256911,0.046619191765785,0.022849760949612]],[[-0.045529495924711,-0.041488230228424,-0.025908906012774],[8.1670819781721e-05,-0.042794350534678,0.016542177647352],[-0.074752986431122,-0.003232424845919,0.031218312680721]],[[0.022862935438752,0.035402443259954,-0.031730119138956],[-0.025483295321465,-0.079815857112408,-0.029829613864422],[-0.045477341860533,-0.055580742657185,-0.036216840147972]],[[0.025070065632463,-0.058217458426952,-0.02339044585824],[0.005620151758194,0.068012058734894,0.0097964983433485],[0.0055120419710875,0.0557751506567,0.039346698671579]],[[-0.069950275123119,0.058893017470837,-0.016298715025187],[-0.1002634614706,-0.038754291832447,-0.012820612639189],[-0.034792933613062,-0.022558791562915,-0.02609440498054]],[[-0.052680723369122,-0.054908983409405,0.070244506001472],[0.045547686517239,-0.01671876385808,-0.11351688951254],[0.026571543887258,-0.044208377599716,0.018061770126224]],[[-0.015887521207333,-0.00012481736484915,0.097875669598579],[0.052297495305538,0.013366179540753,-0.037562038749456],[0.029004361480474,0.0052279373630881,-0.0052205179817975]],[[-0.035234849900007,-0.061297900974751,-0.088778868317604],[-0.063294671475887,0.030193690210581,0.0049205552786589],[0.00253209262155,-0.084520652890205,-0.041866507381201]],[[-0.011473037302494,0.025217540562153,0.084696874022484],[-0.044052582234144,0.012627011165023,-0.067879244685173],[0.020031934604049,0.058083046227694,0.027637111023068]],[[0.040815804153681,0.042165957391262,-0.044795509427786],[0.021239703521132,0.026194930076599,-0.050427868962288],[-0.025817070156336,-0.021728005260229,-0.0069000916555524]],[[0.021549476310611,-0.032156735658646,-0.071610845625401],[-0.018054177984595,-0.046356298029423,0.011833283118904],[-0.002972322748974,-0.016402330249548,0.001265675527975]],[[-0.069301672279835,0.0015598087338731,0.054805308580399],[-0.019676638767123,0.02888129465282,0.01306947786361],[-0.049510154873133,-0.035712748765945,0.10838694870472]],[[0.00012473974493332,-0.071002945303917,-0.0026561967097223],[-0.0092235896736383,-0.0031006555072963,0.02950182557106],[0.010935411788523,0.02518211863935,-0.01192310359329]],[[0.03754847496748,0.011334924958646,0.069281652569771],[-0.021243561059237,-0.072673738002777,0.062174417078495],[0.020531928166747,-0.02601214312017,0.074220158159733]],[[-0.035103403031826,0.030891241505742,0.018689524382353],[-0.016396069899201,0.013124919496477,-0.030233567580581],[-0.012591647915542,-0.056066945195198,-0.083171814680099]]],[[[-0.036882050335407,0.019183849915862,-0.037432819604874],[0.0013984281104058,0.043809201568365,0.028723357245326],[-0.04681184142828,0.054761346429586,0.010706488974392]],[[-0.021115034818649,0.024840138852596,0.077345497906208],[-0.017769508063793,-0.046729221940041,0.0066870711743832],[-0.073817230761051,-0.020814811810851,-0.01228501368314]],[[0.0040131388232112,-0.034090209752321,0.017934948205948],[-0.019800901412964,0.043013665825129,0.048879291862249],[-0.015698038041592,-0.0025253852363676,-0.00013715302338824]],[[-0.0042957863770425,-0.070562519133091,0.0083892196416855],[-0.037392672151327,0.07299643009901,0.041766457259655],[-0.0061854934319854,-0.0045675225555897,0.069412782788277]],[[-0.045776817947626,-0.002442609751597,-0.023148618638515],[0.004230382386595,0.051670733839273,-0.012200595811009],[-0.013525859452784,0.071579128503799,0.0079485476016998]],[[-0.046690840274096,-0.011540741659701,0.020943645387888],[-0.0014879103982821,0.032109759747982,-0.089368239045143],[0.05378220975399,0.041427168995142,-0.059091821312904]],[[0.0077709406614304,0.033494606614113,0.050067123025656],[0.035725865513086,0.0017257713479921,-0.041976042091846],[0.0041502206586301,0.031208837404847,0.032978590577841]],[[0.00057011551689357,-0.078763984143734,-0.0085446666926146],[0.027094066143036,-0.016539115458727,0.0076708593405783],[-0.069447554647923,-0.0015744999982417,0.057943269610405]],[[-0.045010723173618,-0.038450922816992,-0.0065032355487347],[-0.022428767755628,-0.060641799122095,-0.0014121491694823],[0.0045372038148344,-0.01664899289608,-0.052668772637844]],[[-0.091344356536865,0.0047504380345345,0.038245186209679],[-0.01867813616991,0.048923660069704,0.0076842159032822],[0.073682971298695,0.038097411394119,0.030023612082005]],[[-0.010290758684278,0.006694451905787,0.088123008608818],[-0.019795019179583,0.028957469388843,-0.026933670043945],[-0.0018519051373005,-0.026348089799285,-0.052612129598856]],[[-0.012975689023733,-0.02020307816565,0.00015753442130517],[-0.00010656887025107,0.052983660250902,0.045094162225723],[-0.058174341917038,-0.023797564208508,-0.029363468289375]],[[0.037254765629768,0.077307321131229,0.012483701109886],[-0.089096777141094,0.035555582493544,0.075310483574867],[0.084016278386116,0.07003265619278,-0.0048661394976079]],[[0.00077469769166782,-0.029195763170719,-0.038283258676529],[-0.015532565303147,0.041383028030396,-0.050290938466787],[0.009293251670897,0.020516686141491,-0.024391751736403]],[[0.05772964656353,0.056906335055828,0.055267281830311],[0.0055805556476116,-0.0076623326167464,0.0080860462039709],[0.050707805901766,0.018322322517633,-0.025738732889295]],[[-0.069988273084164,0.0020038841757923,-0.035810180008411],[0.046864479780197,0.062493290752172,0.041282910853624],[0.023674070835114,-0.017618432641029,-0.029289558529854]],[[-0.079951904714108,-0.016047993674874,0.016162632033229],[0.073125444352627,-0.034423679113388,0.018125768750906],[-0.017719846218824,-0.036651737987995,0.0050530745647848]],[[-0.0042273360304534,-0.021211432293057,-0.024696856737137],[-0.029199393466115,0.032144289463758,-0.052369378507137],[-0.025878312066197,-0.030125575140119,0.050440419465303]],[[0.031661503016949,0.031024813652039,-0.060676574707031],[0.038139447569847,0.031036173924804,-0.011638480238616],[-0.021829344332218,0.033386822789907,0.035907492041588]],[[0.066113941371441,0.021947585046291,0.0031557090114802],[0.08240557461977,-0.022621605545282,-0.061415169388056],[-0.030746242031455,0.0044236127287149,0.031286485493183]],[[-0.0075988913886249,-0.052250023931265,0.014687568880618],[0.032664161175489,0.04661412909627,0.0089323502033949],[-0.030860468745232,-0.16348749399185,-0.032166365534067]],[[-0.0092037254944444,0.032511007040739,-0.038615774363279],[0.0097173852846026,0.050330474972725,-0.021715231239796],[-0.00081770349061117,-0.036076851189137,-0.035904724150896]],[[-0.0580850020051,-0.0047556571662426,-0.040877431631088],[-0.061010394245386,-0.013761992566288,-0.0041686850599945],[0.039136584848166,-0.066358335316181,0.034996170550585]],[[0.087109848856926,0.097435899078846,0.091302283108234],[0.027633685618639,0.054507572203875,-0.02659010887146],[-0.054101075977087,-0.18400599062443,-0.028871178627014]],[[-0.0083885500207543,-0.042284972965717,0.03033210709691],[0.054036863148212,0.071264117956161,-0.08589993417263],[-0.11926879733801,0.010340598411858,0.066228054463863]],[[0.0035177019890398,0.020133594051003,0.065646730363369],[0.039202369749546,0.011320942081511,0.041458789259195],[0.019073236733675,0.027963917702436,-0.012974438257515]],[[0.014486353844404,-0.0014208981301636,0.041356835514307],[0.016476187855005,2.2845051717013e-07,-0.0059814634732902],[-0.01275987457484,0.029049633070827,-0.052979934960604]],[[0.029527669772506,0.038772877305746,-0.030378380790353],[-0.049263130873442,0.027042772620916,0.036152981221676],[0.035230554640293,0.043642595410347,0.021070227026939]],[[0.043728489428759,0.012989513576031,-0.03410566970706],[-0.0085535999387503,-0.015656152740121,0.0087093086913228],[0.07455837726593,-0.013866512104869,0.0066328151151538]],[[0.096452109515667,-0.0073683285154402,-0.028706533834338],[0.015262895263731,-0.066764406859875,-0.017037248238921],[0.012642088346183,0.00042045608279295,0.033723052591085]],[[-0.074520736932755,-0.037521220743656,-0.0041832234710455],[0.0068454304710031,-0.027636552229524,0.064520105719566],[0.073560684919357,0.049550089985132,0.028148092329502]],[[-0.038616180419922,-0.0027598007582128,0.05459363758564],[0.030098317191005,0.026636397466063,-0.039923079311848],[-0.058287385851145,0.056526273488998,0.045081581920385]],[[-0.043392796069384,-0.0023627616465092,-0.046200904995203],[-0.068502895534039,-0.040116157382727,-0.002345920773223],[-0.015718679875135,0.023861089721322,0.060384187847376]],[[0.031334549188614,0.0056486274115741,-0.042080350220203],[-0.012350048869848,0.0045468541793525,0.024814022704959],[0.040506467223167,0.060479108244181,-0.08762189000845]],[[-0.012113034725189,-0.062203347682953,-0.0077465125359595],[-0.007048521656543,0.057328291237354,0.017742952331901],[0.081518732011318,0.057490359991789,-0.043296501040459]],[[-0.026138508692384,0.036049596965313,-0.044967282563448],[0.061211138963699,-0.033169988542795,-0.030184434726834],[-0.0058993818238378,0.04121421277523,-0.01069881953299]],[[0.050236023962498,0.031811024993658,0.014746960252523],[0.0027798069640994,-0.015976216644049,-0.044524990022182],[-0.074526727199554,0.053292877972126,0.037715084850788]],[[0.046228867024183,0.066001407802105,-0.063725329935551],[0.034609593451023,0.019773572683334,-0.042458597570658],[-0.028661835938692,-0.001114055630751,-0.073693342506886]],[[0.0057538328692317,0.026987910270691,0.060584109276533],[-0.079300604760647,0.040108446031809,-0.0092740692198277],[-0.093176320195198,-0.043671160936356,0.042313877493143]],[[0.044071737676859,-0.090230979025364,0.011736172251403],[0.032579112797976,-0.037554305046797,0.0035398497711867],[0.041608974337578,-0.021151449531317,-0.0018981583416462]],[[0.0120485778898,-0.025560520589352,0.023633413016796],[0.021210908889771,-0.017559271305799,0.00020314939320087],[-0.0048827473074198,-0.018822785466909,-0.015629097819328]],[[-0.039578881114721,-0.061622761189938,-0.039757460355759],[0.0085665257647634,-0.024057812988758,-0.0044482103548944],[-0.035537499934435,-0.045545991510153,0.075288563966751]],[[0.052908658981323,0.030620759353042,-0.047916527837515],[-0.067199409008026,0.030558908358216,-0.0068993954919279],[0.042374141514301,-0.051008697599173,0.011697834357619]],[[-0.037602689117193,0.037889152765274,0.10364946722984],[0.025357285514474,0.0034210223238915,0.048486407846212],[-0.025535009801388,0.022828614339232,0.032194092869759]],[[0.017496414482594,-0.00012359535321593,-0.02658018656075],[0.016633151099086,-0.020435988903046,0.0035753271076828],[-0.029590053483844,0.01870228163898,0.035640574991703]],[[0.070001326501369,-0.06610094755888,-0.039106249809265],[-0.052148781716824,0.0088355876505375,0.047271944582462],[-0.081925600767136,-0.017458815127611,-0.017248395830393]],[[0.043505351990461,-0.0011272636475042,-0.026439106091857],[0.021517965942621,0.036126632243395,0.0042324811220169],[0.00037676907959394,-0.054561268538237,-0.070878557860851]],[[-0.03526808694005,-0.067574024200439,-0.00082631100667641],[-0.008491538465023,0.052482377737761,0.0067296586930752],[0.022786663845181,0.10333260148764,0.019444849342108]],[[0.0035092136822641,0.10093750804663,0.061956666409969],[-0.04508663713932,0.0031317987013608,0.0095034213736653],[0.070472307503223,0.057569697499275,0.04442535713315]],[[-0.021326607093215,0.010636067017913,0.010376579128206],[-0.019611235707998,0.0096349343657494,0.063738025724888],[-0.034433823078871,0.013761046342552,0.062954440712929]],[[-0.020204834640026,0.028551276773214,-0.00029394752345979],[-0.017076892778277,-0.00011831540905405,0.0075292265973985],[0.015142578631639,0.02340785972774,0.055739011615515]],[[0.070073381066322,0.013189969584346,0.015804752707481],[0.021747751161456,-0.005227786488831,-0.0061691822484136],[0.03446976095438,-0.065361365675926,-0.08500050753355]],[[0.039264865219593,-0.0094113517552614,-0.050984188914299],[0.02231851965189,-0.02510093152523,0.060294717550278],[0.024451008066535,0.0053643295541406,0.058654595166445]],[[0.013827418908477,0.030542572960258,0.04342183098197],[0.048445921391249,-0.0095797488465905,-0.020500399172306],[-0.027818374335766,-0.08983463793993,-0.0041708331555128]],[[0.0076058581471443,-0.024491995573044,-0.0094492463395],[-0.044977262616158,0.030459087342024,0.031489849090576],[0.019912792369723,0.033012039959431,0.082174949347973]],[[-0.0056472960859537,0.029560875147581,0.012615529820323],[0.045807406306267,-0.059285957366228,-0.045454457402229],[0.050760518759489,0.023128096014261,0.022340247407556]],[[-0.015321228653193,0.052502498030663,0.0061135529540479],[0.015498160384595,-0.0075594335794449,0.013260333798826],[-0.0040643671527505,0.071328699588776,-0.030615419149399]],[[-0.033482115715742,0.001594745204784,-0.051209878176451],[0.019027445465326,0.0093298004940152,-0.047997988760471],[0.062567003071308,-0.017899811267853,-0.00029158397228457]],[[0.020063910633326,-0.043729387223721,-0.051135778427124],[0.058643650263548,0.0042978166602552,-0.039522960782051],[-0.045287996530533,0.041616033762693,-0.022138372063637]],[[0.0013784548500553,-0.0059846341609955,-0.0050925128161907],[-0.019705686718225,-0.0037280356045812,-0.053429841995239],[-0.036744698882103,0.026641761884093,0.005024041980505]],[[0.019287316128612,-0.027493281289935,-0.025530990213156],[-0.014785156585276,0.074223190546036,0.0191869456321],[-0.074662610888481,-0.039314307272434,-0.0039846496656537]],[[-0.026447569951415,0.011031932197511,0.035162784159184],[-0.012138206511736,-0.0016335175605491,-0.045752562582493],[-0.041194014251232,0.10242258012295,-0.0086045498028398]],[[0.017434746026993,0.04940202459693,0.0097206402570009],[-0.045023530721664,0.010948515497148,-0.0095398323610425],[0.01171712204814,-0.020878039300442,-0.0032893284223974]],[[0.028721136972308,-0.040919557213783,-0.0250299051404],[0.015233275480568,0.037219006568193,0.040631949901581],[-0.033825989812613,-0.043251074850559,0.014173750765622]],[[-0.010554055683315,0.022898243740201,-0.0057616387493908],[0.035610873252153,-0.047876533120871,-0.051938988268375],[-0.011354807764292,0.037631340324879,0.0046012289822102]],[[0.002399823628366,-0.040491655468941,-0.0058001214638352],[-0.029977716505527,0.013789977878332,-0.026184126734734],[0.03476220369339,-0.021339556202292,0.0039535025134683]],[[-0.042228508740664,-0.055739171802998,-0.00056089751888067],[-0.069643571972847,-0.033171691000462,0.0018336898647249],[0.089671567082405,-0.0038946454878896,0.053690146654844]],[[-0.050169233232737,0.0011765512172133,0.0022202481050044],[-0.035791244357824,0.033497679978609,0.028675733134151],[-0.06163227558136,-0.033260677009821,0.010648158378899]],[[0.059526365250349,0.0051921135745943,-0.035610735416412],[-0.0071727349422872,0.017943605780602,-0.04652601853013],[0.054581087082624,0.054046493023634,0.011138504371047]],[[-0.037536647170782,-0.02610562928021,-0.051961626857519],[0.053535133600235,-0.065685950219631,0.044792264699936],[-0.027895817533135,-0.029626434668899,0.011234224773943]],[[0.011585017666221,0.050766292959452,-0.043077606707811],[-0.02102273888886,0.029339618980885,-0.045335918664932],[0.0054123639129102,-0.03681667894125,0.032890375703573]],[[0.032317742705345,-0.00098611484281719,0.0150106260553],[-0.030454773455858,-0.068145111203194,-0.023559493944049],[0.027071941643953,-0.038573820143938,-0.0056598554365337]],[[-0.011840015649796,-0.010940317064524,0.022129192948341],[-0.16024474799633,0.090348489582539,0.01888825558126],[-0.076776877045631,0.034613151103258,0.014685725793242]],[[-0.00082487869076431,0.12875306606293,0.05045099183917],[-0.082887716591358,0.075332447886467,0.01539056841284],[0.0083715450018644,-0.0030956440605223,0.022779259830713]],[[-0.017913978546858,-0.020282421261072,-0.065493904054165],[0.033588200807571,0.028102686628699,0.059518188238144],[0.010843029245734,-0.032551534473896,0.035849504172802]],[[-0.00032994858338498,-0.012173404917121,-0.04524115473032],[-0.021413514390588,0.045783966779709,0.0050242780707777],[0.0017231903038919,0.10400035232306,0.024045739322901]],[[0.0055106235668063,0.093543082475662,-0.010621988214552],[0.0015141540206969,0.048385966569185,-0.0055270711891353],[0.026954578235745,-0.012942339293659,0.031615994870663]],[[-0.045236080884933,0.04259616881609,-0.021380335092545],[0.00095871888333932,-0.020155729725957,0.032151397317648],[-0.043626628816128,-0.021746451035142,0.030713964253664]],[[0.011135297827423,-0.011770471930504,0.00088487425819039],[0.016359062865376,-0.015650972723961,0.005176258739084],[0.024644976481795,0.015490872785449,0.021629000082612]],[[0.045394390821457,-0.0091248126700521,0.025451395660639],[0.04518073797226,-0.044760458171368,-0.014778957702219],[-0.048131238669157,-0.063404597342014,0.0098409540951252]],[[0.068640373647213,0.065143257379532,-0.068698741495609],[0.056330721825361,-0.033448379486799,-0.015296653844416],[-0.0015169006073847,-0.046312212944031,-0.042460512369871]],[[0.025422295555472,0.058195672929287,-0.049456607550383],[0.021372713148594,-0.0080513022840023,0.032069161534309],[0.024041287600994,0.037405762821436,-0.014583375304937]],[[-0.031256772577763,0.0059645376168191,-0.017235664650798],[0.033328708261251,-0.017286026850343,-0.045611917972565],[0.0028979922644794,0.036570005118847,0.089896231889725]],[[-0.00065348885254934,-0.053618557751179,-0.0026915143243968],[0.057499960064888,-0.023437233641744,0.015565081499517],[-0.0053838393650949,0.024016872048378,-0.10760540515184]],[[0.0056297150440514,-0.065026521682739,-0.040238469839096],[0.036177232861519,-0.028625974431634,0.021720269694924],[0.036022093147039,-0.02668746933341,-0.081504657864571]],[[-0.057786516845226,0.032854788005352,0.011443952098489],[0.0038033497985452,0.011434307321906,0.037902191281319],[0.027986038476229,0.026906592771411,0.0025137602351606]],[[-0.044229745864868,-0.0039655594155192,-0.052134208381176],[-0.022554749622941,-0.019255362451077,-0.03918644785881],[-0.011099656112492,-0.0042510316707194,0.078877650201321]],[[-0.12442324310541,0.0040239095687866,-0.010892985388637],[-0.015863709151745,0.13056997954845,0.0059857019223273],[-0.045900631695986,0.063285231590271,0.00076890538912266]],[[0.0078931488096714,-0.042913604527712,0.038016643375158],[0.0090860808268189,-0.032566793262959,0.017304245382547],[-0.014659686945379,-0.024369953200221,-0.078898653388023]],[[0.013561773113906,0.012975907884538,0.02928538993001],[-0.041144460439682,-0.0071970061399043,0.048120517283678],[-0.033350128680468,-0.027470199391246,0.032171130180359]],[[-0.020548326894641,-0.01950248517096,-0.0037136455066502],[0.077191837131977,-0.072816774249077,0.034962270408869],[-0.024905757978559,-0.025730479508638,-0.029344720765948]],[[-0.0069409464485943,-0.045540846884251,0.076202124357224],[0.018641710281372,-0.032677799463272,0.073391653597355],[0.014660969376564,-0.028512051329017,0.041469607502222]],[[0.013043833896518,0.0032596045639366,0.027744917199016],[0.11193593591452,0.061651073396206,0.07287459820509],[-0.011979817412794,-0.045432988554239,0.010193078778684]],[[-0.019930403679609,0.0076923402957618,-0.0039400663226843],[0.02852070517838,0.014920920133591,0.02642266266048],[-0.039135660976171,0.078030861914158,-0.018275875598192]],[[0.039593253284693,0.021027971059084,0.024247488006949],[0.12696433067322,-0.047351662069559,-0.014235462062061],[-0.0070565016940236,-0.052167098969221,0.067977398633957]],[[-0.007435979321599,-0.062514513731003,-0.014874278567731],[0.089116908609867,-0.016735607758164,-0.047476056963205],[0.058342836797237,-0.086955793201923,-0.0019347912166268]],[[0.015375046990812,0.0017088650492951,0.022268902510405],[-0.084781982004642,-0.050647709518671,0.061087176203728],[-0.0038842025678605,-0.053992230445147,-0.022168105468154]],[[0.030365951359272,0.030094953253865,-0.0011142698349431],[-0.02506572753191,-0.061849761754274,-0.025849528610706],[0.074022836983204,0.035386327654123,0.038878582417965]],[[0.048516694456339,-0.0056302305310965,-0.045964576303959],[0.058259528130293,0.029900593683124,0.027943026274443],[0.022713549435139,-0.0064511741511524,-0.073939174413681]],[[0.02819399908185,0.029876321554184,-0.031191157177091],[0.015101036988199,0.097668647766113,0.02686751075089],[-0.0245590955019,-0.031439241021872,0.049956895411015]],[[0.0076398979872465,-0.10442271083593,0.0004130880406592],[-0.08625602722168,-0.023816950619221,0.052006203681231],[-0.032033361494541,0.03216952085495,0.08924662321806]],[[-0.017296286299825,0.097708344459534,0.038747921586037],[-0.079268150031567,0.054818004369736,0.073556832969189],[-0.09544350206852,0.014662397094071,0.064189478754997]],[[0.025800632312894,0.015868987888098,-0.026348834857345],[0.023718504235148,0.0523921251297,-0.0027821785770357],[-0.075179249048233,0.043998923152685,-0.0054255970753729]],[[-0.038899213075638,0.01181516982615,0.027723681181669],[-0.047959297895432,0.0025069168768823,0.041100103408098],[-0.006491887383163,-0.0032832440920174,-0.034907419234514]],[[0.066653557121754,0.052879512310028,-0.02239496819675],[-0.047136373817921,-0.072061143815517,-0.013103602454066],[0.036565437912941,-0.076566621661186,-0.042870510369539]],[[0.01410142891109,0.07785302400589,0.046814493834972],[0.011179050430655,-0.018321085721254,0.029399668797851],[-0.064220681786537,0.01760027371347,0.0015081193996593]],[[0.00927759334445,0.032103154808283,-0.013635293580592],[0.05308835208416,0.074272952973843,-0.050136640667915],[-0.00313660944812,-0.088151320815086,-0.051358714699745]],[[0.011239741928875,0.030991829931736,-0.023782268166542],[0.077946953475475,0.035617757588625,-0.042855262756348],[0.042375802993774,-0.10160014033318,0.024922182783484]],[[-0.019321603700519,0.016278041526675,-0.010747882537544],[-0.032343048602343,-0.043796595185995,-0.010316664353013],[-0.017979476600885,0.01262332033366,-0.075207374989986]],[[0.026474250480533,-0.03972177579999,-0.0061093708500266],[0.021344443783164,-0.064179435372353,0.047173608094454],[0.02374678850174,-0.054824825376272,-0.031826823949814]],[[-0.0033817803487182,-0.067914083600044,0.017183309420943],[-0.022032368928194,-0.0087265679612756,0.027160428464413],[-0.030412700027227,-0.073305867612362,-0.017123863101006]],[[0.011366381309927,0.078393399715424,0.011213825084269],[0.027205221354961,-0.014363552443683,-0.035228010267019],[-0.081478998064995,0.038991447538137,0.017090523615479]],[[0.011100496165454,-0.039834134280682,-0.01727063395083],[0.018408393487334,-0.017769323661923,0.0043069166131318],[0.091766446828842,0.048747252672911,-0.010096395388246]],[[-0.011929037049413,0.026754969730973,0.0024427797179669],[-0.011400979943573,0.025808213278651,0.054995108395815],[-0.066694051027298,0.022315127775073,0.019466878846288]],[[-0.028830422088504,-0.029350893571973,-0.028479496017098],[-0.046390943229198,0.019498830661178,-0.034944772720337],[-0.012003728188574,-0.03497950732708,-0.013144015334547]],[[-0.0058351783081889,-5.3685595048591e-05,-0.053635574877262],[0.015059682540596,0.0058876615948975,-0.014112833887339],[0.0064404709264636,-0.018268100917339,-0.0051025822758675]],[[0.00012638288899325,0.0091786962002516,-0.097614333033562],[-0.00044662918662652,0.0046663773246109,-0.082795403897762],[0.02270626090467,0.05845732241869,0.027258209884167]],[[0.020658256486058,0.090279400348663,-0.079716682434082],[0.0090081999078393,0.026234837248921,-0.048739660531282],[0.069084517657757,0.039089415222406,-0.082392320036888]],[[0.033653188496828,-0.01329333242029,-0.07854525744915],[0.023924570530653,-0.032264724373817,-0.031669247895479],[0.028215290978551,0.017612494528294,0.038065444678068]],[[-0.067853078246117,-0.086475409567356,-0.01843649148941],[0.063864439725876,-0.033809967339039,0.01133384834975],[0.11948014050722,0.022776201367378,0.058946132659912]],[[-0.12493401020765,-0.0046642003580928,0.0033919604029506],[-0.12768815457821,-0.036938767880201,-0.022488435730338],[-0.044987265020609,-0.0092492457479239,0.029282512143254]],[[0.063638992607594,0.003474457655102,-0.0077306325547397],[0.031742766499519,0.044284898787737,-0.054271724075079],[-0.047767829149961,-0.13128024339676,-0.033244349062443]],[[-0.027885410934687,0.00079859746620059,0.021290238946676],[0.012267967686057,-0.10755751281977,0.044705085456371],[0.023785926401615,-0.020709896460176,0.026496160775423]],[[0.019553339108825,0.017746090888977,-0.022546546533704],[0.0085228187963367,0.0113126616925,-0.011296391487122],[-0.03141750022769,-0.033834088593721,0.023006491363049]],[[-0.059837576001883,0.047787830233574,-0.012172164395452],[0.011923133395612,-0.01921477727592,-0.04359257593751],[0.025171812623739,0.026701161637902,0.02460615709424]],[[0.036220334470272,-0.0035781259648502,-0.010433360002935],[-0.051231183111668,0.023244842886925,0.027544835582376],[0.017649421468377,0.0097972331568599,0.02434597723186]],[[0.0074699074029922,0.071772389113903,0.067169539630413],[0.0016312550287694,-0.036192391067743,-0.042360480874777],[-0.016944400966167,-0.020410355180502,0.086580060422421]],[[-0.050418954342604,0.016840159893036,0.014919554814696],[0.010641970671713,0.011462571099401,0.0097969556227326],[0.042095094919205,0.026473412290215,-0.062153462320566]]],[[[0.057848405092955,-0.035303134471178,0.011091839522123],[-0.020414033904672,-0.044100392609835,-0.0067443405278027],[-0.0062231747433543,-0.015903271734715,0.050497930496931]],[[0.11130610108376,-0.044047422707081,0.026227479800582],[0.013410637155175,-0.037930365651846,0.061165012419224],[0.013104719109833,0.034850921481848,-0.01331590488553]],[[0.040340777486563,-0.060950394719839,0.011871666647494],[-0.0094063188880682,0.061087287962437,0.020205345004797],[0.06114375218749,-0.018931787461042,0.0014852127060294]],[[0.0025720186531544,0.033066857606173,0.070351041853428],[0.019593983888626,0.0013595892814919,0.022341361269355],[-0.024262994527817,0.047192845493555,0.028031583875418]],[[-0.01830693334341,-0.022397523745894,-0.017829593271017],[0.040141191333532,0.016288369894028,0.042097188532352],[-0.040212422609329,-0.026879444718361,0.0032172072678804]],[[-0.034533776342869,-0.008656213991344,0.012487744912505],[-0.00089884485350922,-0.0091261565685272,-0.0080734295770526],[-0.060050245374441,0.065015003085136,-0.053081296384335]],[[0.02181376889348,-0.054100096225739,-0.038854911923409],[-0.019752817228436,-0.024403376504779,0.011150189675391],[0.052368368953466,-0.025453265756369,-0.014516990631819]],[[0.01984747685492,-0.0081695141270757,0.022357065230608],[-0.013339252211154,0.0047368970699608,-0.0010619821259752],[-0.022547606378794,0.013494234532118,0.028894439339638]],[[0.020745478570461,0.019752411171794,0.0085620041936636],[-0.014881758950651,-0.090161815285683,0.035082202404737],[0.0059048729017377,0.086066745221615,0.032034207135439]],[[-0.037754729390144,0.13521787524223,-0.01433034427464],[-0.04261402413249,-0.019595958292484,0.041020181030035],[0.001344199758023,0.043243523687124,0.032810568809509]],[[0.011230078525841,0.045939467847347,-0.0068075493909419],[0.04718841984868,-0.034243684262037,-0.046177171170712],[-0.023491283878684,0.033079296350479,0.017200915142894]],[[-0.015280672349036,0.053134329617023,0.025672763586044],[0.01530007366091,0.046016689389944,0.018946850672364],[-0.013233656994998,0.02903907187283,-0.015120322816074]],[[0.01907766237855,-0.047759685665369,0.026723368093371],[0.053682249039412,0.065502889454365,-0.005543686915189],[-0.0082972012460232,-0.023325476795435,0.0025804187171161]],[[0.054460201412439,0.037325039505959,0.047568861395121],[0.05970311164856,0.032694898545742,0.032851733267307],[-0.043915994465351,0.026866983622313,0.01897550933063]],[[0.06371233612299,0.031451597809792,0.02898770943284],[0.052255962044001,0.0054214266128838,-0.013647425919771],[0.02692399173975,0.079882875084877,-0.0029105241410434]],[[0.036285411566496,0.0088094463571906,-0.01828264631331],[-0.02359371073544,-0.004639376886189,-0.023188898339868],[-0.052452605217695,0.063213117420673,0.04471630603075]],[[0.066473506391048,0.0039794268086553,0.00097997288685292],[-0.039706707000732,0.00010207373270532,-0.040235128253698],[-0.068111099302769,0.065084509551525,-0.037526182830334]],[[0.033915147185326,0.045505285263062,0.018946291878819],[-0.011728595010936,0.070976577699184,0.0037052794359624],[0.00093711854424328,-0.020079469308257,6.2480146880262e-05]],[[-0.034631483256817,0.0045282281935215,0.018322514370084],[-0.014989342540503,-0.067515805363655,0.0099787730723619],[-0.0034032044932246,0.0049054473638535,0.063357263803482]],[[0.0047585922293365,0.066734872758389,-0.040553018450737],[-0.024158077314496,0.042495828121901,-0.0035787329543382],[0.049698796123266,0.0012018930865452,-0.072236642241478]],[[-0.081246979534626,0.044129427522421,0.076538018882275],[-0.026031654328108,-0.033307623118162,0.0036017228849232],[0.095740050077438,-0.031718712300062,-0.059539247304201]],[[0.023205123841763,-0.0521708317101,0.026476543396711],[0.0079067554324865,0.0080494312569499,-0.011070413514972],[0.073101587593555,0.010530498810112,-0.020735224708915]],[[-0.014658763073385,-0.05522657558322,-0.014436289668083],[0.016685640439391,-0.0041909171268344,-0.039331581443548],[-0.034790392965078,0.039783757179976,-0.0056236214004457]],[[-0.019149864092469,0.013662716373801,-0.029236486181617],[-0.07512167096138,0.076155506074429,-0.0017939624376595],[-0.076498188078403,0.0057285036891699,-0.00020004356338177]],[[0.0024801252875477,-0.0012371628545225,0.046607386320829],[-0.046561881899834,0.039615102112293,0.021076284348965],[0.028619185090065,0.041646666824818,0.06243746727705]],[[0.016962377354503,0.096678629517555,-0.0097591057419777],[-0.037127919495106,0.035440169274807,0.049419268965721],[0.033067755401134,0.032801788300276,0.0016831497196108]],[[-0.022790426388383,0.055485017597675,-0.013513663783669],[0.0067552230320871,0.035925049334764,-0.023144325241446],[0.042238980531693,-0.071911841630936,0.011306351050735]],[[-0.050656359642744,-0.080822840332985,0.016455445438623],[0.0022520306520164,0.046443819999695,-0.054876327514648],[-0.014365675859153,-0.051187835633755,0.012084977701306]],[[0.019640162587166,0.023194994777441,-0.054251905530691],[0.089740559458733,-0.0064562503248453,-0.026379199698567],[-0.036985028535128,0.001462756539695,0.0014811813598499]],[[-0.1035688444972,0.072791889309883,-0.0066122710704803],[0.039138365536928,-0.042246431112289,0.0091104405000806],[-0.034874927252531,0.076515324413776,-0.036471776664257]],[[-0.0037908744998276,-0.057738374918699,0.021561006084085],[-0.028299167752266,-0.022596661001444,0.0016694610239938],[-0.038311719894409,0.070325404405594,0.014208395965397]],[[-0.045437827706337,0.026506219059229,0.046145305037498],[0.038553528487682,-0.011459379456937,-0.060805723071098],[0.029185615479946,-0.086412779986858,0.017913138493896]],[[0.032735828310251,0.01001416798681,0.06250786781311],[-0.038148272782564,0.00019386413623579,0.048898760229349],[0.031967394053936,-0.031325299292803,-0.018081791698933]],[[-0.043210707604885,0.051385935395956,0.04326730966568],[0.014933913014829,0.0050640706904233,0.054153688251972],[-0.030831625685096,0.031146196648479,-0.054369997233152]],[[0.041846856474876,0.036238204687834,0.018664702773094],[0.05366088822484,0.040644574910402,-0.026695508509874],[-0.032441988587379,0.031303383409977,0.014281331561506]],[[0.031868472695351,-0.017859064042568,-0.022898521274328],[0.021264841780066,0.03343328088522,-0.011148307472467],[-0.054853055626154,0.065954893827438,-0.0036434251815081]],[[-0.068538337945938,0.038546647876501,-0.032411053776741],[0.012802361510694,-0.11679684370756,0.0053343973122537],[-0.036889981478453,0.061869975179434,0.0095074661076069]],[[-0.087840765714645,-0.029311386868358,0.02509661950171],[0.0049058035947382,0.055864609777927,0.064739361405373],[0.042821183800697,0.017415374517441,-0.0030304868705571]],[[-0.026861133053899,0.020265556871891,-0.028236489742994],[0.026791363954544,-0.010975957848132,0.022331582382321],[0.0018533116672188,-0.0066902060061693,0.032357834279537]],[[-0.062375128269196,-0.071596018970013,0.012383951805532],[-0.065205283463001,-0.0026134529616684,0.0096866404637694],[0.00074796692933887,0.044747825711966,0.011775387451053]],[[-0.041265234351158,-0.0024116383865476,-0.039927262812853],[-0.0015298873186111,0.059234626591206,0.045196212828159],[-0.014040324836969,0.070254229009151,-0.081039614975452]],[[0.016817085444927,-0.011528178118169,-0.0030700706411153],[0.017062462866306,-0.040422040969133,-0.062274403870106],[0.0037519151810557,-0.010348290205002,0.032578509300947]],[[-0.03392318636179,0.099856540560722,-0.0016654392238706],[0.040358252823353,0.0054993792437017,0.034044831991196],[0.028716370463371,0.0022131146397442,-0.063606195151806]],[[-0.026292145252228,-0.058964151889086,-0.028256753459573],[-0.0064577292650938,0.027962632477283,-0.10527660697699],[-0.035700894892216,0.069086126983166,-0.042638540267944]],[[-0.00061621761415154,0.095863930881023,-0.0028430793900043],[-0.023936253041029,0.05308872833848,-0.078678846359253],[-0.011703490279615,0.050380956381559,0.097526714205742]],[[-0.0057615009136498,-0.043948408216238,0.0079056257382035],[-0.014377801679075,-0.092201508581638,0.03697507083416],[0.058260191231966,0.01256303396076,0.041405510157347]],[[0.06347431242466,-0.017682945355773,-0.01737123914063],[-0.051487572491169,-0.0058153606951237,0.0089892232790589],[-0.011507794260979,-0.014952341094613,0.051293727010489]],[[-0.0026985562872142,0.042609710246325,0.036900959908962],[-0.0093539301306009,0.058590568602085,-0.04823936522007],[-0.036374036222696,0.027753014117479,0.065715491771698]],[[-0.05588847771287,0.032563045620918,0.016730576753616],[0.029478631913662,-0.083154931664467,0.0043829353526235],[-0.013265620917082,-0.055743396282196,0.0053151082247496]],[[-0.039614051580429,0.016735959798098,0.032031528651714],[-0.061933819204569,0.019658472388983,-0.0112463561818],[-0.054337073117495,-0.037351809442043,-0.049274448305368]],[[-0.001293905894272,0.05236578732729,0.039615668356419],[0.020736217498779,0.0092504527419806,-0.0032411175779998],[-0.026246318593621,0.051704291254282,-0.065673835575581]],[[-0.077024377882481,0.042702317237854,0.041362501680851],[-0.048643592745066,-0.016475420445204,0.024415256455541],[0.050611164420843,-0.076994962990284,-0.073277197778225]],[[-0.030474554747343,-0.043315701186657,-0.015471891500056],[0.0033346293494105,0.0174838937819,-0.031082384288311],[-0.045719720423222,0.033912025392056,0.02665613219142]],[[0.05033602938056,0.022711593657732,-0.058370362967253],[0.08523216098547,-0.11202547699213,0.048831958323717],[-0.019737044349313,0.022444400936365,-0.0086808456107974]],[[0.0061267744749784,-0.045444879680872,-0.016099726781249],[-0.024628080427647,-0.0052364598959684,0.054126963019371],[0.0068108648993075,-0.022896789014339,-0.030452560633421]],[[-0.0983522310853,-0.014556085690856,0.0059822699986398],[-0.0058609703555703,0.036260761320591,0.051161576062441],[0.0087162032723427,0.032721858471632,0.0027634971775115]],[[0.081375196576118,-0.00087288283975795,-0.019088411703706],[0.029944581910968,-0.064085461199284,-0.03422237932682],[0.0028869449160993,0.028397319838405,0.071770250797272]],[[0.018682951107621,-0.017767628654838,-0.017623391002417],[-0.046431828290224,0.021143231540918,-0.0090049868449569],[-0.047958478331566,-0.012452652677894,-0.019544389098883]],[[-0.019856574013829,0.067016623914242,0.015881126746535],[-0.017735082656145,0.018554762005806,-0.019499640911818],[-0.0016698212129995,0.021138537675142,0.058773197233677]],[[-0.038395885378122,0.010334693826735,0.0013315529795364],[-0.028609441593289,0.014252227731049,0.049186170101166],[0.0216627959162,-0.049393590539694,-0.028930960223079]],[[-0.0089777512475848,0.044853620231152,0.078264340758324],[0.058708276599646,0.01302510779351,0.097892224788666],[-0.028662420809269,0.036559443920851,0.017257153987885]],[[-0.08446504175663,0.044259045273066,0.026027223095298],[-0.05166669562459,0.0037412813398987,0.010279236361384],[0.0022955713793635,-0.073911227285862,0.028042806312442]],[[0.01483562681824,0.035628445446491,0.024010792374611],[-0.028228187933564,-0.020038088783622,0.0073845214210451],[0.017693160101771,0.12329965829849,0.042765259742737]],[[-0.0496562756598,0.0055038328282535,-0.013239087536931],[0.013099789619446,0.085118263959885,0.020053215324879],[0.016905626282096,0.031119944527745,0.010271344333887]],[[0.060554184019566,0.0096446825191379,-0.033534251153469],[0.021386843174696,0.017878174781799,0.021593369543552],[-0.088526532053947,0.0082167182117701,0.039475351572037]],[[-0.099677406251431,0.0076709543354809,0.13569967448711],[-0.057437568902969,0.083447933197021,0.035653166472912],[-0.06680916249752,0.035847924649715,0.04041063785553]],[[0.050435502082109,0.05561576411128,-0.062083747237921],[0.068741612136364,-0.029994398355484,0.06912138313055],[-0.039904318749905,-0.039908073842525,0.066688142716885]],[[0.013750473037362,0.012981738895178,0.10760653018951],[0.024237386882305,8.7728440121282e-06,0.027161715552211],[0.018754532560706,0.014669619500637,-0.00095349049661309]],[[0.035644434392452,-0.013818002305925,0.0034777082037181],[-0.050290569663048,0.004437196534127,-0.026038464158773],[-0.0053429836407304,0.060180678963661,0.0328100733459]],[[0.05388567596674,0.06568256020546,0.053748425096273],[0.0033234073780477,-0.040382068604231,-0.0008153123781085],[-0.042131714522839,0.043152265250683,-0.064913295209408]],[[0.01418375223875,0.00076024956069887,0.024687372148037],[-0.054672788828611,0.059972953051329,-0.0024697163607925],[0.078932568430901,0.0014006104320288,0.040356885641813]],[[-0.041418075561523,-0.057798516005278,-0.010048498399556],[0.017003312706947,0.064815290272236,0.057956844568253],[-0.029395505785942,-0.0054706283845007,-0.023801129311323]],[[-0.072349719703197,0.021808652207255,0.06487949192524],[0.018577111884952,-0.015573254786432,0.029588811099529],[-0.0069748610258102,0.0092411553487182,0.049180880188942]],[[0.05965481325984,-0.067411758005619,0.026390988379717],[0.040467087179422,0.016699261963367,0.0027968320064247],[0.084727898240089,0.0035814528819174,0.057132236659527]],[[0.021343952044845,-0.0093180481344461,-0.085157744586468],[-0.058393839746714,-0.044861331582069,0.029100347310305],[0.029838297516108,0.029832364991307,0.028327452018857]],[[-0.048962131142616,0.0087829204276204,0.068492524325848],[-0.026507439091802,0.099666818976402,-0.036466255784035],[-0.0085079874843359,0.0035579779651016,0.053748190402985]],[[0.0083293179050088,0.003201070940122,0.015339440666139],[-0.008742923848331,-0.037259690463543,-0.019618287682533],[0.037598229944706,0.10981716215611,0.018893742933869]],[[-0.018417906016111,0.029297837987542,-0.078636102378368],[-0.059070758521557,-0.012935840524733,-0.011757852509618],[-0.049356274306774,0.021501153707504,0.077572450041771]],[[-0.075940363109112,0.030114073306322,-0.030676422640681],[0.042767703533173,-0.034506715834141,-0.04695500433445],[0.10089953988791,0.011651311069727,0.045949716120958]],[[-0.00078857532935217,0.028610015287995,0.035036347806454],[-0.050711948424578,0.033805046230555,0.073505163192749],[0.028510997071862,-0.11913128942251,0.066009268164635]],[[-0.043214306235313,0.0052157654426992,-0.048931244760752],[-0.020622400566936,-0.020633533596992,0.012767774052918],[-0.018424868583679,-0.067857570946217,0.022979680448771]],[[0.0011263651540503,0.032212596386671,-0.0014410237781703],[-0.029968541115522,-0.089734829962254,0.049984157085419],[-0.0095824403688312,0.017013916745782,0.031671229749918]],[[0.031409602612257,-0.0082800816744566,0.035670600831509],[0.015921875834465,-0.026634097099304,-0.0049000475555658],[-0.043850213289261,0.081452421844006,0.05122260376811]],[[0.011010987684131,0.037752356380224,0.052281849086285],[-0.0011689984239638,-0.080663368105888,-0.045170929282904],[-0.061853189021349,0.029758790507913,0.010856878012419]],[[-0.061884339898825,-0.032678451389074,-0.0025557789485902],[0.020673586055636,-0.10439176112413,0.033475037664175],[0.037238601595163,0.025861322879791,-0.0374556183815]],[[0.090416789054871,-0.01353448908776,-0.0078538917005062],[0.03429751098156,-0.040059454739094,-0.061799984425306],[-0.045791041105986,0.07945254445076,0.077572718262672]],[[-0.026615289971232,-0.026783388108015,0.061432242393494],[0.015718605369329,0.061689868569374,0.023193458095193],[0.020918175578117,-0.031239211559296,-0.001040298724547]],[[0.014073737896979,0.060527563095093,-0.07634662091732],[-0.072540573775768,0.0087497513741255,-0.031949333846569],[0.0037097495514899,0.02346570417285,0.01965095475316]],[[-0.0073173879645765,-0.0025307857431471,0.026634134352207],[-0.052778217941523,-0.0042045321315527,-0.00064530316740274],[-0.032594904303551,-0.0018087814096361,0.02039903216064]],[[0.034267127513885,-0.031144767999649,0.023582834750414],[0.0015574459685013,-0.069640293717384,0.052175171673298],[-0.012456311844289,0.031745690852404,-0.035876967012882]],[[-0.013160564936697,0.010256564244628,-0.084613412618637],[-0.00024105233023874,0.015886122360826,0.016770081594586],[0.038479771465063,0.021439354866743,-0.0050773560069501]],[[-0.0051861512474716,-0.015190236270428,0.038214672356844],[0.0016505678649992,0.00091691286070272,0.042765330523252],[0.035956088453531,0.0076493290252984,0.023629372939467]],[[0.030822966247797,-0.030611405149102,0.030877998098731],[0.034975346177816,0.048459023237228,-0.015283371321857],[-0.061408162117004,0.0021400889381766,0.037738353013992]],[[0.067524120211601,0.025431698188186,0.090152509510517],[-0.036120522767305,0.060694444924593,-0.0038392120040953],[0.0051712826825678,0.012090084142983,0.0060303132049739]],[[0.018425906077027,-0.006509920116514,0.041516236960888],[-0.0068478267639875,0.047095254063606,0.034172873944044],[0.013742280192673,0.0015995391877368,0.024120561778545]],[[-0.017286293208599,0.031834624707699,0.038549557328224],[-0.054376170039177,-0.0012014905223623,-0.03108368627727],[0.010579185560346,0.0236457567662,0.048127342015505]],[[0.032934211194515,0.0065323850139976,0.03080040588975],[-0.0043748165480793,0.01729579642415,-0.0083077158778906],[0.033487323671579,-0.035701885819435,0.035953357815742]],[[0.021126728504896,0.015854561701417,-0.024056505411863],[-0.034834016114473,0.018719907850027,0.01618355512619],[-0.005692495033145,0.020955571904778,0.039284825325012]],[[0.04675130546093,-0.012091975659132,-0.03713645786047],[-0.046078648418188,0.038287468254566,-0.031701546162367],[0.051402647048235,0.012472077272832,-0.030001986771822]],[[0.024337165057659,0.0075830393470824,0.0039409566670656],[-0.0078221978619695,0.029024261981249,-0.016948416829109],[0.035259041935205,-0.018368935212493,-0.0044025257229805]],[[0.023660717532039,0.032450594007969,-0.01442748401314],[-0.0052896365523338,-0.081922799348831,-0.049401093274355],[0.027428466826677,-0.013283342123032,0.023611485958099]],[[-0.078389339148998,-0.049291349947453,-0.012696349993348],[0.065450921654701,0.023179933428764,0.020080238580704],[-0.0046512265689671,-0.013936037197709,-0.0020782339852303]],[[0.02689572609961,-0.041003942489624,0.017570251598954],[-0.029122451320291,-0.0087885102257133,0.060596596449614],[-0.10771802067757,-0.0037185410037637,-0.021891182288527]],[[-0.076134420931339,0.0046329507604241,0.0039858175441623],[-0.014477826654911,-0.030224803835154,0.017010416835546],[-0.031967513263226,0.048467185348272,-0.084789164364338]],[[-0.00012598383182194,0.063803069293499,0.0075470418669283],[-0.021253108978271,0.010481378994882,-0.044152211397886],[0.05798352509737,-0.053430117666721,-0.0062427194789052]],[[0.013402161188424,-0.011380773037672,0.054647106677294],[0.028222393244505,0.044599700719118,-0.08601039648056],[-0.062007058411837,-0.038757529109716,-0.04518198594451]],[[0.05564196407795,0.0070111127570271,-0.070968776941299],[-0.023027433082461,0.060284975916147,0.0075966361910105],[0.028915705159307,0.0077283107675612,0.036744549870491]],[[-0.014253832399845,0.051975935697556,-0.071566440165043],[0.0012899517314509,-0.01940606534481,-0.030938278883696],[-0.012990221381187,-0.041984509676695,-0.010953576304018]],[[0.030992431566119,0.044494278728962,-0.011248216964304],[0.082288771867752,-0.021893696859479,-0.017371989786625],[-0.028317116200924,0.015931995585561,-0.076998896896839]],[[0.020255582407117,-0.00011763436486945,0.050838951021433],[-0.033982843160629,0.061819680035114,-0.056702069938183],[0.12555687129498,0.0036943748127669,-0.052668951451778]],[[-0.027367383241653,-0.0025980691425502,0.041112039238214],[0.064444154500961,0.016098879277706,0.0069528920575976],[0.09742197394371,0.0056503326632082,0.0024529157672077]],[[-0.053572714328766,0.015775851905346,-0.01133967936039],[-0.012539001181722,-0.0030560111626983,-0.075450636446476],[-0.0013696763198823,-0.025841951370239,0.070298999547958]],[[-0.071223013103008,-0.054594092071056,0.039891444146633],[-0.031186046078801,-0.038554165512323,0.049869481474161],[0.025345295667648,0.06485553830862,-0.018906850367785]],[[-0.075458735227585,0.065805420279503,0.013122744858265],[-0.007360199932009,-0.020821914076805,0.0098245209082961],[0.04020943120122,-0.0044968179427087,0.043006896972656]],[[-0.068184353411198,0.016220141202211,0.0024236391764134],[0.035043757408857,-0.019613260403275,-0.028040558099747],[0.0049104639329016,-0.041728686541319,-3.1824471079744e-05]],[[-0.026931224390864,0.034477815032005,0.018307007849216],[-0.050419963896275,-0.019335018470883,0.019960422068834],[0.0066366582177579,0.061503808945417,0.022802578285336]],[[-0.0060243280604482,-0.0098676150664687,-0.024444514885545],[0.046014130115509,0.020769964903593,-0.015464747324586],[0.02069178968668,0.039322979748249,-0.017773672938347]],[[0.039618592709303,-0.031262595206499,0.017970772460103],[-0.063729144632816,0.0019986594561487,-0.028469098731875],[-0.014963845722377,-0.0013041237834841,-0.0045842695981264]],[[-0.031865794211626,0.10965938866138,-0.06999946385622],[0.052183985710144,-0.0048276521265507,0.0053601106628776],[0.047542251646519,-0.024082325398922,-0.020231936126947]],[[-0.047659087926149,-0.026209065690637,-0.0033567361533642],[0.029409220442176,0.03885006532073,0.011084004305303],[0.005470072850585,0.03912902623415,-0.042177304625511]],[[-0.081565901637077,-0.03474872559309,0.027381600812078],[0.029603831470013,-0.006531230174005,0.0026050540618598],[0.0012524224584922,-0.015275909565389,0.019476370885968]],[[-0.019589260220528,0.090255476534367,0.018665032461286],[0.00086843955796212,-0.016325388103724,0.028439447283745],[0.041080418974161,-0.0057692052796483,0.048517733812332]],[[-0.027225572615862,-0.023493343964219,-0.017265699803829],[-0.0077150226570666,0.0023788106627762,-0.051489669829607],[0.0025051012635231,-0.056305274367332,-0.046710319817066]],[[-0.017701638862491,-0.032382883131504,0.012097926810384],[-0.051542289555073,0.071709357202053,-0.022831572219729],[0.054129432886839,0.046311933547258,0.045975528657436]],[[-0.051445759832859,-0.026266951113939,0.034780964255333],[-0.040096875280142,-0.019834389910102,0.082387201488018],[-0.023311000317335,-0.023842776194215,0.092507489025593]],[[0.044592414051294,0.066208489239216,-0.012303792871535],[0.0051557337865233,-0.0009364818688482,0.054985947906971],[-0.051845986396074,-0.020087828859687,0.048934124410152]],[[0.015633910894394,0.0013131453888491,0.015866806730628],[0.10570307821035,-0.010441818274558,0.059921536594629],[-0.016075864434242,-0.04473739862442,-0.031600892543793]],[[0.048567619174719,0.049526017159224,-0.012695705518126],[0.037564437836409,-0.027275523170829,0.0020442213863134],[-0.058601379394531,-0.029865887016058,-0.051572609692812]]],[[[-0.0043848203495145,0.049943339079618,-0.08493310958147],[0.016444100067019,0.010571691207588,0.061342865228653],[0.017322821542621,0.03674253448844,-0.043378476053476]],[[-0.031568083912134,0.063335113227367,-0.001110827899538],[0.027202140539885,0.013051157817245,-0.045062929391861],[0.074945375323296,0.1246759518981,0.052323136478662]],[[-0.05549381300807,0.018805606290698,0.040318284183741],[0.06350488960743,0.040919158607721,0.034457057714462],[-0.02146028727293,-0.081144310534,-0.0014390285359696]],[[-0.02924595400691,0.029029957950115,0.072611421346664],[0.11667785048485,-0.010025250725448,0.011517166160047],[0.19034460186958,0.15563474595547,-0.083264201879501]],[[0.018388671800494,0.030605763196945,0.0042192284017801],[-0.054035920649767,-0.065377369523048,-0.017291508615017],[-0.018597638234496,0.0040417169220746,-0.002670275978744]],[[-0.024363046512008,-0.073868706822395,0.0077163153328001],[-0.093537166714668,-0.057736188173294,0.079519405961037],[0.088932499289513,0.06412785500288,0.049288529902697]],[[-0.024266475811601,-0.044060632586479,0.016307204961777],[-0.083705104887486,0.00092038698494434,-0.033475525677204],[-0.11542761325836,-0.054823879152536,-0.043782889842987]],[[0.069835476577282,0.068479023873806,0.087489418685436],[0.02816055342555,0.067607462406158,0.036215502768755],[-0.012056317180395,0.039413914084435,0.10909278690815]],[[0.038440715521574,-0.040571339428425,0.094945996999741],[0.054749775677919,0.024636810645461,-0.0563222207129],[-0.081792838871479,-0.13995483517647,-0.11108489334583]],[[0.030247710645199,0.040461853146553,0.099676840007305],[0.014764538034797,0.044891051948071,0.096410721540451],[-0.11135008186102,-0.015883337706327,0.11288310587406]],[[-0.064164832234383,0.025922175496817,-0.049682214856148],[-0.020027441903949,-0.031168349087238,-0.032926890999079],[-0.041303806006908,0.076545603573322,0.030833523720503]],[[0.032109379768372,0.064439974725246,0.08260402828455],[0.031598720699549,-0.032814454287291,0.01779423840344],[-0.0076432386413217,0.014677232131362,-0.010408054105937]],[[0.073076784610748,0.078556045889854,0.035083528608084],[0.16561618447304,0.10603862255812,-0.042251899838448],[0.035444803535938,-0.0043320208787918,-0.097127333283424]],[[-0.11362450569868,-0.10808181017637,0.032042257487774],[0.00043185363756493,-0.090153209865093,-0.090155772864819],[-0.025395799428225,0.054206807166338,-0.012699483893812]],[[0.028441706672311,-0.074034944176674,-0.084319971501827],[0.044968992471695,0.082091860473156,-0.05055945366621],[-0.01629943959415,0.12566518783569,0.10928592830896]],[[-0.0094048976898193,0.0096957786008716,0.16540983319283],[0.097993418574333,-0.015051406808197,-0.033412288874388],[0.067402102053165,0.019573528319597,-0.019448325037956]],[[-0.023024393245578,-0.044811051338911,0.06372857093811],[-0.012660527601838,-0.070305220782757,-0.040314320474863],[0.014253368601203,0.0576984398067,-0.034556951373816]],[[-0.069930486381054,0.0012584705837071,-0.036381125450134],[-0.17702470719814,-0.013042936101556,-0.06105624884367],[0.0051912497729063,-0.029728615656495,-0.13203658163548]],[[0.10871953517199,0.13592392206192,-0.093317747116089],[-0.10371676832438,-0.02183229662478,0.1067713201046],[0.10303245484829,0.026944305747747,-0.062644302845001]],[[-0.0077426163479686,-0.071208409965038,-0.00074107467662543],[-0.048250950872898,-0.015836725011468,-0.0098867323249578],[0.023956313729286,-0.035965550690889,0.073313064873219]],[[0.055948704481125,0.12937785685062,-0.0050375629216433],[0.13114488124847,-0.045424312353134,0.0037923350464553],[0.072599358856678,0.12681949138641,-0.050239890813828]],[[0.058089330792427,0.037341970950365,-0.056007865816355],[-0.013839116320014,0.071869373321533,0.043976347893476],[0.026437474414706,-0.027853092178702,0.046883556991816]],[[0.031685724854469,0.051119640469551,0.0057328925468028],[-0.0046190628781915,-0.012918839231133,-0.032759234309196],[0.069070920348167,-0.091451235115528,0.036094762384892]],[[-0.071444623172283,0.081242769956589,-0.038085084408522],[-0.011585833504796,0.025084691122174,0.042585227638483],[-0.059542004019022,-0.0072695221751928,0.010190860368311]],[[0.048882216215134,-0.023676004260778,0.0095027768984437],[-0.013766358606517,-0.063481964170933,-0.029778344556689],[0.076880790293217,0.067502610385418,0.04866961017251]],[[-0.017970532178879,-0.11744245886803,-0.12063077837229],[-0.032345063984394,-0.06118480488658,-0.042155958712101],[0.050441734492779,0.077006459236145,0.025732142850757]],[[0.11424022912979,0.16397294402122,0.076871789991856],[-0.082255870103836,0.10663361847401,0.10833280533552],[0.016745582222939,0.024290412664413,0.048900961875916]],[[-0.032501995563507,0.024187888950109,0.030494995415211],[0.029137654229999,-0.031243728473783,0.015254368074238],[0.013357240706682,0.047209724783897,-0.019900357350707]],[[-0.066026389598846,-0.026569059118629,0.16538754105568],[-0.028958110138774,-0.090087175369263,-0.002105759922415],[0.040632102638483,0.043733678758144,0.019657578319311]],[[0.11611260473728,-0.027545234188437,-0.059932511299849],[0.041708312928677,0.022764015942812,0.024200307205319],[0.0058809197507799,0.022997153922915,-0.05879220739007]],[[0.10951931774616,0.032940022647381,-0.06335074454546],[0.013567400164902,0.047821160405874,0.024040583521128],[-0.045893616974354,-0.0029321021866053,0.034262731671333]],[[-0.0084561156108975,0.0073994728736579,0.012072212994099],[-0.0019141234224662,0.023387894034386,-0.0023834777530283],[-0.058041896671057,0.019168579950929,-0.023113507777452]],[[-0.0089407125487924,0.017983639612794,0.10095801204443],[0.050487987697124,-0.018275439739227,-0.02174961566925],[-0.019433815032244,0.0091982334852219,-0.019167978316545]],[[-0.00061258842470124,-0.051814008504152,-0.088804200291634],[0.023290133103728,0.004087639041245,0.039402939379215],[-0.083628833293915,-0.013045873492956,0.013761151582003]],[[-0.04563781991601,-0.0011057207593694,0.16457679867744],[-0.026918739080429,-0.017019353806973,-0.04228387773037],[-0.057515986263752,0.03158251568675,-0.0082532707601786]],[[0.0793297290802,0.12196127325296,0.037230279296637],[-0.062085103243589,0.011543755419552,-0.044482029974461],[0.068915955722332,0.059172466397285,-0.049273643642664]],[[-0.047373689711094,-0.10604028403759,0.010852699168026],[-0.020509930327535,0.097687289118767,0.080205045640469],[0.076451748609543,-0.023953324183822,0.096085481345654]],[[0.03550036251545,-0.0095024267211556,0.11649325489998],[0.053151931613684,0.020291430875659,0.014373547397554],[0.017600975930691,0.0011893340852112,0.014268081635237]],[[0.034723076969385,-0.10308902710676,0.036227867007256],[0.01260974816978,0.0048544947057962,-0.031484883278608],[-0.0075082699768245,-0.0030328508000821,0.08169399946928]],[[0.049833938479424,0.034671634435654,0.032753385603428],[0.02697834558785,-0.032730102539062,-0.091254040598869],[0.017714293673635,0.013428496196866,-0.079653099179268]],[[0.11802491545677,-0.043849971145391,-0.066679760813713],[0.062660872936249,0.047356840223074,-0.036302130669355],[-0.024992788210511,0.040148951113224,0.062078684568405]],[[0.051917053759098,0.013620789162815,-0.025059636682272],[0.11931949853897,0.064813755452633,0.096350498497486],[0.1326596736908,0.033392623066902,-0.0016686008311808]],[[0.091948717832565,0.090047158300877,0.10131219774485],[0.012827351689339,-0.077878713607788,0.077406823635101],[0.059447590261698,-0.035291109234095,0.0078064859844744]],[[-0.0023337481543422,0.053363930433989,0.027985241264105],[-0.012501342222095,-0.093432739377022,0.030210519209504],[-0.029045300558209,-0.011196904815733,-0.03972977027297]],[[0.10437977313995,0.060397639870644,-0.03831983730197],[0.013976435177028,-0.0608243457973,-0.0078132366761565],[0.046667616814375,0.097099795937538,-0.17004024982452]],[[-0.0094745000824332,0.012490786612034,-0.036254618316889],[0.014164100401103,0.14349539577961,0.055747881531715],[0.050752330571413,0.045748427510262,0.066498391330242]],[[0.04565617442131,0.012223040685058,-0.028973989188671],[0.065598279237747,0.075125902891159,-0.022351982071996],[-0.036874879151583,0.010065126232803,-0.012243579141796]],[[-0.025193277746439,0.08738762140274,0.029419982805848],[-0.035283304750919,-0.0091319242492318,-0.012069996446371],[-0.039066705852747,-0.0056728245690465,-0.066085964441299]],[[-0.015088042244315,0.024581171572208,0.073967769742012],[-0.1222140416503,-0.085584484040737,0.04159053042531],[-0.036582734435797,-0.022576821967959,-0.06122225150466]],[[0.0098329959437251,0.0041908868588507,0.038047164678574],[0.072537660598755,-0.02784120105207,0.019813824445009],[0.028641566634178,0.0092157870531082,0.0376191213727]],[[-0.040647815912962,-0.084855042397976,-0.011282814666629],[-0.027814326807857,-0.015496039763093,-0.057323582470417],[-0.032772097736597,-0.051692102104425,-0.050258841365576]],[[-0.079748623073101,0.037743326276541,0.093236602842808],[-0.0033607478253543,0.047357689589262,0.068142026662827],[-0.026469565927982,-0.067391939461231,0.056233257055283]],[[-0.040438186377287,0.094036281108856,0.025012619793415],[0.013128356076777,0.017047345638275,-0.022099388763309],[0.072606116533279,-0.016999473795295,-0.023847725242376]],[[0.13349193334579,0.071722909808159,0.12661473453045],[-0.029052916914225,-0.033923950046301,0.014427715912461],[-0.073632963001728,0.014558881521225,-0.016699092462659]],[[0.020365385338664,0.13439847528934,0.11969695240259],[-0.025855707004666,0.013819732703269,0.097550705075264],[0.18186581134796,0.064063139259815,-0.018958544358611]],[[0.013260873034596,0.11335911601782,0.057057727128267],[-0.0099047655239701,-0.079004056751728,0.18548092246056],[0.056935481727123,0.081691384315491,0.042082220315933]],[[0.012094773352146,0.026948533952236,0.072596229612827],[0.20232316851616,0.057183217257261,-0.053301237523556],[0.026970824226737,-0.0098110260441899,0.064188368618488]],[[0.0022942542564124,0.0060213250108063,-0.0046541853807867],[0.026718957349658,0.16432785987854,-0.05685193836689],[-0.019699305295944,-0.062562569975853,0.0578324906528]],[[0.17111368477345,0.044409036636353,0.078557699918747],[-0.05241122096777,-0.0068397051654756,0.098000451922417],[0.072252437472343,0.091171249747276,0.10126726329327]],[[0.087108001112938,0.13744580745697,0.0056733069941401],[-0.070657461881638,0.0083515997976065,0.0054685557261109],[0.011174346320331,-0.019215010106564,0.027680551633239]],[[-0.010002729482949,-0.022725258022547,0.067523062229156],[-0.026048980653286,-0.05246964097023,0.029552588239312],[0.059598419815302,0.080614052712917,0.16046100854874]],[[0.029279910027981,0.053500235080719,-0.049131143838167],[-0.031249349936843,0.10282833874226,0.0097080375999212],[-0.042374670505524,-0.10136733204126,-0.064976342022419]],[[-0.019139217212796,-0.009335620328784,0.13275784254074],[0.074380174279213,0.12504835426807,0.069968692958355],[0.046439036726952,-0.0026088773738593,0.01298851147294]],[[-0.047352217137814,0.0022738920524716,-0.026151655241847],[0.052703801542521,-0.040317840874195,0.03358306363225],[0.038902450352907,0.016042748466134,-0.04997631534934]],[[0.047935139387846,0.050770074129105,-0.027886608615518],[-0.084802351891994,-0.044501755386591,0.02046069689095],[-0.035676851868629,-0.06091234087944,-0.032227728515863]],[[-0.046417757868767,0.01551503315568,0.02028732933104],[0.067320495843887,-0.00043150980491191,0.057784121483564],[0.08397438377142,0.059977550059557,-0.080758273601532]],[[-0.09606060385704,0.001453444478102,0.016571896150708],[0.014969808980823,-0.063593789935112,0.047133915126324],[0.037863977253437,0.015977149829268,-0.0016433103010058]],[[0.10535212606192,0.046886086463928,0.029388871043921],[-0.075683370232582,-0.050444442778826,0.032190527766943],[0.056890163570642,-0.018393022939563,0.026293765753508]],[[0.052236933261156,0.025555951520801,0.052176132798195],[0.090653814375401,0.079449519515038,-0.047431088984013],[0.054502096027136,0.0025250695180148,-0.01052354555577]],[[0.073404803872108,0.017756992951035,-0.069432355463505],[0.036175217479467,0.03523313626647,-0.10313330590725],[0.059882003813982,0.025926621630788,-0.083160646259785]],[[0.0034920596517622,-0.17250874638557,-0.01487007457763],[-0.089974254369736,0.014346706680954,-0.036606259644032],[0.045764777809381,0.043285079300404,0.009939581155777]],[[0.041699275374413,0.065451428294182,0.057072162628174],[-0.028872177004814,0.045019809156656,-0.15264527499676],[0.057619534432888,-0.064735107123852,-0.052722536027431]],[[-0.062144070863724,0.072804607450962,0.054155010730028],[0.025947475805879,0.045432761311531,0.0026233200915158],[0.0046584466472268,0.074684008955956,0.00045579951256514]],[[-0.034528698772192,-0.010691562667489,-0.030775625258684],[0.027847409248352,0.037868350744247,0.0032970595639199],[0.022667091339827,0.10361354798079,0.11929968744516]],[[0.012660008855164,0.13554501533508,0.096702463924885],[-0.073048666119576,0.012305391952395,0.053134400397539],[-0.11887779086828,-0.018996523693204,-0.020406205207109]],[[0.045536410063505,0.068290188908577,-0.013092827983201],[0.027101680636406,-0.013485961593688,-0.080076523125172],[0.01400460768491,0.060047131031752,-0.0082347514107823]],[[-0.05865953117609,-0.053823456168175,0.021517999470234],[0.090015292167664,-0.034924354404211,0.019047360867262],[-0.013154407031834,0.033535167574883,0.0033659033942968]],[[-0.068997010588646,0.022936746478081,-0.043792605400085],[0.031254749745131,-0.015243105590343,0.03778088465333],[0.032519318163395,-0.035716887563467,0.004466372076422]],[[0.042701382189989,-0.020195703953505,0.07086543738842],[0.0062250108458102,-0.030455075204372,-0.036477211862803],[-0.0034704960417002,-0.034142047166824,0.02621273137629]],[[0.0027509424835443,-0.0080962032079697,-0.012171071022749],[-0.11366204172373,0.079108320176601,0.064223006367683],[-0.048846993595362,-0.044137757271528,-0.070222496986389]],[[0.032713353633881,0.02996739372611,-0.080609738826752],[-0.10074643790722,-0.073620557785034,0.076096087694168],[-0.062754087150097,-0.12501953542233,-0.070814333856106]],[[-0.027310322970152,0.031334649771452,-0.0039561851881444],[0.018495880067348,0.038406010717154,-0.016740368679166],[-0.014659464359283,0.029527166858315,0.033955227583647]],[[0.12387982010841,-0.010272390209138,0.058777220547199],[-0.053330667316914,0.043542928993702,-0.0010642397683114],[0.021211145445704,0.043532520532608,-0.090636789798737]],[[-0.0030445787124336,-0.0038579432293773,0.034156281501055],[-0.036857392638922,0.13073873519897,0.080897226929665],[0.035822365432978,-0.010235218331218,0.088596269488335]],[[0.085175909101963,0.044181101024151,-0.02853955514729],[-0.050578206777573,0.15617582201958,0.056959919631481],[0.059752613306046,-0.010834520682693,-0.048035398125648]],[[0.031293582171202,-0.038918439298868,0.0081444466486573],[0.072919689118862,0.040303390473127,-0.090764030814171],[-0.081649273633957,0.037816628813744,-0.089039124548435]],[[-0.099668800830841,0.0063488576561213,0.023137325420976],[0.035585727542639,-0.033106666058302,0.07486730068922],[0.0080079585313797,0.049841661006212,-0.063142664730549]],[[-0.044539265334606,0.03797996416688,0.02087364718318],[0.10378908365965,0.0067981132306159,0.041342504322529],[0.0037513715215027,-0.0033284018281847,0.067027896642685]],[[-0.028803674504161,0.062199380248785,0.080132164061069],[0.029269611462951,-0.033780846744776,-0.096271775662899],[0.099641583859921,-0.016571646556258,-0.011613229289651]],[[-0.065249912440777,0.01111158169806,0.034401927143335],[0.024289079010487,-0.14460973441601,-0.075260736048222],[-0.016788607463241,-0.00872952491045,-0.059755183756351]],[[0.041098885238171,-0.06181425601244,0.018450727686286],[0.10216961801052,-0.035340167582035,0.0063651115633547],[0.18657596409321,0.014830348081887,-0.16928622126579]],[[0.0063211093656719,0.013595389202237,0.066841810941696],[-0.12877650558949,0.031837627291679,0.081317186355591],[-0.14454729855061,-0.071979746222496,-0.053934324532747]],[[-0.029117733240128,0.026514548808336,-0.045461483299732],[-0.018683280795813,-0.041241273283958,-0.0081421360373497],[0.018371846526861,-0.15416207909584,0.031333968043327]],[[0.010611372999847,0.12378458678722,0.048354506492615],[-0.067977838218212,0.013308640569448,0.082732312381268],[-0.037829831242561,-0.10255928337574,-0.06644132733345]],[[0.022607568651438,0.023567287251353,0.042799066752195],[0.0095197167247534,-0.093024909496307,0.078183874487877],[-0.016651142388582,-0.026343015953898,-0.016769219189882]],[[-0.015689097344875,0.11590110510588,0.089638821780682],[0.011669519357383,0.029798677191138,0.079106189310551],[-0.047617688775063,-0.067878186702728,-0.039378721266985]],[[0.027250044047832,-0.013518136925995,0.0011298954486847],[0.033955976366997,-0.0013281133724377,-0.030515471473336],[0.12686365842819,0.054565411061049,-0.038910765200853]],[[-0.02156626060605,0.016084039583802,-0.037139393389225],[0.0079373214393854,-0.066233083605766,-0.053207572549582],[0.19160345196724,-0.020167425274849,0.03142349794507]],[[0.07885617017746,0.0084871826693416,-0.026779148727655],[-0.0079423682764173,0.06870660930872,0.031649142503738],[0.045105304569006,0.0020252326503396,-0.020172152668238]],[[0.048455093055964,0.032111816108227,-0.045524969696999],[-0.061913929879665,0.010256922803819,0.079409278929234],[-0.059036072343588,0.069516003131866,-0.060436721891165]],[[0.039919577538967,0.01490568369627,0.1351080685854],[0.017310168594122,0.08680921792984,0.051206804811954],[0.03530265390873,0.028633505105972,0.066892303526402]],[[-0.062093775719404,-0.048321560025215,0.039539832621813],[0.044856030493975,0.027075974270701,0.05549318343401],[0.012087619863451,-0.0076521392911673,-0.065168395638466]],[[-0.013679627329111,0.0539327301085,0.024930013343692],[-0.058374051004648,-0.015968298539519,-0.0076626827940345],[0.057880096137524,-0.04970221593976,0.0661451369524]],[[0.024166274815798,0.034311577677727,0.041802924126387],[0.055023897439241,-0.029361175373197,0.18885140120983],[0.13577951490879,0.053111381828785,0.079178221523762]],[[0.068131573498249,-0.13638518750668,-0.035130806267262],[0.034317411482334,-0.073710441589355,0.024660371243954],[0.0043643582612276,0.13580480217934,-0.026193849742413]],[[-0.066792018711567,-0.023548329249024,0.10058876127005],[-0.026775928214192,-0.024523990228772,-0.021658996120095],[0.0141057735309,-0.050038050860167,-0.0042339833453298]],[[0.065615922212601,0.087059430778027,0.040242560207844],[-0.0024776926729828,-0.013882745988667,0.050375238060951],[0.014628991484642,0.058134220540524,0.18883775174618]],[[0.0012975588906556,-0.055135130882263,-0.050811294466257],[-0.054905895143747,-0.030410826206207,0.02014185488224],[0.021489072591066,-0.063279025256634,-0.011416562832892]],[[0.04171783849597,0.068804875016212,0.029705580323935],[0.064229294657707,-0.028151370584965,-0.015313145704567],[0.0042823953554034,0.0024844389408827,0.039343498647213]],[[0.012992949225008,0.083371117711067,-0.023880556225777],[-0.043550956994295,-0.026574136689305,-0.045273490250111],[0.030649024993181,0.059955295175314,-0.00040719902608544]],[[-0.084935285151005,0.010514877736568,0.012129753828049],[0.08275642991066,0.016992067918181,-0.082534536719322],[-0.034239508211613,0.06183922663331,-0.072848923504353]],[[-0.11371407657862,-0.062156289815903,0.065702587366104],[-0.026443278416991,-0.084385007619858,-0.043143078684807],[-0.018572550266981,-0.029201390221715,0.023542601615191]],[[-0.0073016919195652,-0.048775382339954,0.061474326997995],[0.019075587391853,0.04487232118845,-0.072486408054829],[0.08491688221693,-0.00047748934593983,-0.036931321024895]],[[-0.011737930588424,0.062620177865028,-0.094852566719055],[-0.0098676662892103,-0.0031476111616939,-0.030490029603243],[-0.021676665171981,-0.0034743612632155,-0.042704578489065]],[[0.10201655328274,-0.041025780141354,-0.0091653689742088],[0.025918148458004,0.11895199120045,-0.10664666444063],[0.091527439653873,-0.0059699486009777,-0.024204518646002]],[[-0.024388143792748,-0.078100517392159,-0.020711055025458],[0.033895194530487,0.080631040036678,0.047023247927427],[-0.0058139432221651,-0.056668717414141,-0.013323922641575]],[[0.0097250584512949,0.14089564979076,-0.066291160881519],[-0.011465326882899,-0.013278134167194,0.058495432138443],[0.042076926678419,-0.030284347012639,-0.042230039834976]],[[0.062441103160381,-0.050841856747866,-0.073083773255348],[-0.0057886471040547,0.11090438812971,-0.060370128601789],[0.025778505951166,-0.061717618256807,-0.0004990323795937]],[[-0.047913011163473,0.04604622349143,0.02478875592351],[-0.094733983278275,0.0070548304356635,0.012731137685478],[-0.010256678797305,-0.030690491199493,-0.020530860871077]],[[0.12158577144146,0.088889621198177,0.066525675356388],[0.0077959396876395,-0.0012424839660525,0.069890268146992],[-0.031844653189182,-0.014023675583303,0.031523007899523]],[[-0.028742367401719,-0.087583430111408,-0.13297079503536],[-0.032291848212481,-0.033069610595703,-0.0045307776890695],[-0.10339076817036,-0.037708390504122,-0.0042896238155663]],[[0.0081753497943282,0.044713400304317,-0.024339962750673],[-0.069268986582756,0.018303386867046,-0.024593094363809],[-0.041870065033436,0.0036376556381583,-0.088282518088818]],[[0.12020270526409,-0.048978537321091,-0.0032525470014662],[0.061371713876724,0.10379132628441,-0.01477343775332],[0.043441224843264,-0.031314536929131,0.088938683271408]],[[-0.027749435976148,0.0041938875801861,-0.014841225929558],[0.015018510632217,-0.095164902508259,0.10318845510483],[-0.042249217629433,0.057601056993008,-0.024019408971071]],[[-0.014387391507626,0.0032781162299216,-0.030698820948601],[0.065282560884953,-0.044772293418646,0.0066020688973367],[-0.0371088758111,-0.067520745098591,-0.095676496624947]],[[-0.03195471689105,-0.011782292276621,0.016703885048628],[-0.013125413097441,-0.033267084509134,-0.047270186245441],[0.11015164107084,0.015462310984731,0.0139384213835]],[[-0.0064698113128543,0.1155162230134,0.0086344853043556],[0.01808306761086,-0.02577943354845,-0.06867354363203],[0.12431009113789,0.064860165119171,-0.085546351969242]],[[0.07044081389904,-0.056093737483025,-0.010927935130894],[-0.0076969764195383,0.086110696196556,0.12082924693823],[0.0063611017540097,0.088105529546738,0.026248514652252]]],[[[0.021230878308415,-0.00073504546890035,-0.040225144475698],[0.020917568355799,-0.0059784478507936,0.045238416641951],[0.021025961264968,-0.02610925771296,0.019502632319927]],[[-0.067723847925663,0.051063153892756,-0.00047089721192606],[0.020832939073443,0.036922913044691,-0.061880119144917],[0.0079146148636937,0.0047025140374899,0.01032533403486]],[[0.0047342991456389,-0.0011858934303746,-0.022065775468946],[0.052783530205488,0.0086245639249682,-0.05393061414361],[0.013892728835344,-0.0054104044102132,-0.011148502118886]],[[-0.058880157768726,0.053494464606047,0.036986324936152],[0.022951999679208,0.015407183207572,0.024658231064677],[0.036864999681711,0.064001768827438,-0.023138986900449]],[[-0.041702449321747,-0.029245678335428,0.066261738538742],[0.065666668117046,0.086512289941311,-0.021159363910556],[0.014296199195087,-0.0076068332418799,-0.032075371593237]],[[-0.0079679964110255,0.038178708404303,-0.025167921558022],[-0.026687623932958,-0.00072745874058455,0.029660824686289],[0.045999359339476,0.053835835307837,0.0029206485487521]],[[-0.0083990273997188,0.021465055644512,0.0074149216525257],[0.046219907701015,0.016927789896727,0.011869444511831],[-0.1088050827384,0.0091885235160589,0.010189396329224]],[[0.029021495953202,-0.0077610514126718,0.033969834446907],[-0.027708726003766,-0.0010946900583804,-0.0078628193587065],[0.055528450757265,-0.084070853888988,0.017976060509682]],[[-0.051900204271078,0.019478272646666,-0.031781941652298],[0.0038832786958665,-0.027578305453062,0.10632596164942],[-0.021180272102356,-0.067366808652878,0.012637124396861]],[[0.039915859699249,-0.062474146485329,-0.0071344771422446],[0.0035665666218847,-0.028263146057725,0.019053194671869],[-0.020551158115268,-0.0045537473633885,0.0013862090418115]],[[-0.0098226023837924,-0.029649136587977,-0.0081647820770741],[-0.021768087521195,0.024686897173524,0.015431877225637],[0.0041543571278453,-0.023282371461391,0.09273374825716]],[[-0.079527765512466,-0.033815797418356,0.039010249078274],[0.010046392679214,-0.060064740478992,0.031428191810846],[0.036074787378311,0.073556311428547,0.0015527151990682]],[[-0.020665250718594,-0.06542095541954,-0.028644092381001],[-0.021730287000537,0.019643880426884,0.062438458204269],[0.027003511786461,-0.0034225210547447,-0.04518361389637]],[[-0.00077127199620008,-0.0059018163010478,-0.049278657883406],[0.022978277876973,0.047285337001085,0.06150458753109],[0.020786717534065,-0.039874996989965,-0.019884815439582]],[[0.04855103045702,0.062157992273569,0.020297402516007],[0.032316170632839,-0.077661402523518,0.001781398546882],[-0.016481893137097,0.028590170666575,-0.0048126145265996]],[[0.036542806774378,-0.0096205407753587,0.0068147648125887],[-0.0080357799306512,-0.016482695937157,0.027107913047075],[-0.011684287339449,0.015942862257361,-0.024832803755999]],[[0.045011915266514,0.021434381604195,-0.0033937697298825],[-0.039947926998138,0.013616325333714,-0.056505616754293],[0.03030451759696,-0.013484762050211,0.019850332289934]],[[-0.0028937857132405,-0.04257794842124,-0.0050206026062369],[-0.025971628725529,0.00030726680415682,-0.029477931559086],[-0.0092055043205619,0.01612881757319,0.013621930964291]],[[0.087237738072872,-0.034704279154539,0.049939319491386],[0.016857387498021,0.022479245439172,-0.01852217502892],[0.064590066671371,-0.0087336851283908,-0.063658691942692]],[[-0.0084840264171362,-0.020438922569156,0.023006057366729],[0.058164361864328,-0.028515577316284,0.030159508809447],[0.015708127990365,-0.0043004797771573,0.024578239768744]],[[0.014574794098735,-0.044852338731289,-0.0056527405977249],[-0.030541704967618,0.032389439642429,-0.021831747144461],[-0.048588082194328,0.069470196962357,-0.043996639549732]],[[0.024155538529158,0.0057336939498782,-0.028615105897188],[0.027151854708791,0.08270201086998,0.028373891487718],[0.05463645234704,-0.0078567583113909,-0.083813227713108]],[[0.020916566252708,0.005799796897918,-0.025529142469168],[-0.0028231325559318,-0.009415308944881,0.0132443793118],[-0.01763772405684,0.015143684111536,-0.015131233260036]],[[0.017369125038385,0.029268953949213,-0.033957302570343],[-0.05943551659584,0.036567710340023,0.023536747321486],[-0.05637713521719,-0.040636371821165,0.0077169137075543]],[[0.026534553617239,-0.005843938793987,-0.061453897505999],[0.022901343181729,-0.01427829824388,0.032172046601772],[0.052545636892319,-0.017929140478373,0.075534820556641]],[[0.035202238708735,-0.030169615522027,-0.016151856631041],[0.055088296532631,0.0089825494214892,0.059248860925436],[0.077715165913105,0.025388415902853,-0.05721952021122]],[[-0.03272083774209,0.03455638885498,-0.065299548208714],[-0.016169797629118,0.042957749217749,-0.0080877356231213],[0.040835026651621,0.062543883919716,-0.023105094209313]],[[-0.00089925015345216,-0.031557116657495,-0.025771580636501],[0.013911980204284,0.087576076388359,-0.041164182126522],[0.0072310813702643,0.0027283173985779,0.050685025751591]],[[-0.0098623186349869,-0.037397120147943,-0.070820666849613],[0.035239540040493,0.023572931066155,0.0028828291688114],[-0.023865930736065,0.047085147351027,0.033744309097528]],[[0.031414095312357,0.0089904135093093,-0.0099486988037825],[-0.024630067870021,0.053374968469143,-0.010990545153618],[0.0051504387520254,-0.072265818715096,0.032183408737183]],[[0.020409274846315,-0.05978649482131,0.0143724642694],[-0.041193433105946,0.016644703224301,0.03579330816865],[-0.019996313378215,0.051720183342695,-0.019462827593088]],[[-0.005066504701972,-0.020276490598917,0.031896948814392],[-0.038797583431005,0.014448169618845,0.015630286186934],[-0.044634476304054,0.010755750350654,0.011527033522725]],[[0.020480200648308,0.056854758411646,0.039268359541893],[0.050062015652657,0.016250347718596,-0.029602298513055],[0.039496444165707,-0.024228131398559,-0.044931691139936]],[[-0.073647744953632,0.03406697884202,-0.036774922162294],[-0.033830363303423,-0.038398921489716,0.12276405841112],[-0.047402814030647,0.046671148389578,-0.013922186568379]],[[-0.071469739079475,0.035277020186186,-0.011718919500709],[0.060845710337162,0.00046869873767719,0.093545667827129],[-0.0030744164250791,0.026322638615966,-0.095506004989147]],[[0.046358287334442,0.037336070090532,0.041553169488907],[-0.0021937417332083,-0.014360081404448,0.016282103955746],[-0.076204769313335,0.01955795660615,-0.027664873749018]],[[0.030294565483928,0.017021857202053,0.013700406067073],[0.02626471593976,0.011330502107739,-0.010031715035439],[-0.0095214182510972,-0.022222807630897,-0.0095653645694256]],[[-0.039142709225416,0.015763545408845,-0.050417006015778],[0.062530219554901,0.050076249986887,0.086440205574036],[-0.019871743395925,-0.021453002467752,0.017100404947996]],[[-0.0003467776987236,-0.026545930653811,0.065416976809502],[0.018600527197123,-0.032830562442541,0.063971728086472],[0.0030660931952298,0.043275855481625,0.0067078387364745]],[[-0.030005188658834,0.02580283395946,-0.012487953528762],[-0.019458716735244,-0.014743656851351,-0.012492434121668],[-0.026166340336204,0.03079167753458,0.045747771859169]],[[0.021159183233976,-0.03278162330389,-0.0049403309822083],[0.015027044340968,-0.00052654062164947,0.019759073853493],[0.046786788851023,0.0039352271705866,0.032906468957663]],[[0.0033069592900574,-0.0070984424091876,0.047971811145544],[0.012552347034216,-0.021779742091894,-0.033245090395212],[-0.042998436838388,-0.0068909409455955,0.048319708555937]],[[0.015011003240943,0.030061012133956,0.022423231974244],[0.022696472704411,0.0005293475696817,-0.039508614689112],[0.00010844103962881,0.0076005053706467,-0.01495414879173]],[[0.012436573393643,0.035620264708996,-0.0087921917438507],[0.008753071539104,0.023234453052282,0.058108180761337],[-0.0068300613202155,0.069474600255489,0.062446426600218]],[[0.0084973871707916,0.048153471201658,0.0027393151540309],[0.0060647670179605,-0.029248153790832,-0.037649977952242],[-0.01160457637161,0.011773330159485,0.0039182803593576]],[[-0.0064574875868857,0.017955908551812,-0.0089901033788919],[-0.034184977412224,-0.082839675247669,0.022968877106905],[-0.023196903988719,0.035751484334469,0.046524945646524]],[[-0.026238998398185,0.044595070183277,0.013795167207718],[-0.04402294382453,0.012481020763516,0.025501042604446],[0.019787857308984,0.032135639339685,-0.028801897540689]],[[0.043169431388378,0.0085832979530096,-0.04432724416256],[0.0036455795634538,-0.18358619511127,-0.017065547406673],[-0.014689997769892,0.10085871070623,0.014094759710133]],[[0.042952567338943,0.017713041976094,-0.028271120041609],[0.042601156979799,-0.038507699966431,-0.034176614135504],[0.014891879633069,-0.026844115927815,-0.0096697695553303]],[[-0.01241016574204,-0.025630440562963,-0.016302058473229],[0.050463162362576,0.080041795969009,-0.065714173018932],[0.041787389665842,-0.0423544049263,0.0018551594112068]],[[0.021505763754249,-0.013767709955573,-0.0071936184540391],[-0.034047652035952,0.056367613375187,-0.056123077869415],[0.0027771161403507,0.11283595860004,-0.043695650994778]],[[-0.062848053872585,0.012786440551281,-0.017436938360333],[0.016712132841349,-0.057125575840473,0.02178779989481],[-0.03516036644578,-0.018904259428382,0.022137202322483]],[[-0.03931625559926,-0.02700287103653,-0.025932818651199],[0.043622471392155,0.040607258677483,0.014299657195807],[-0.034045618027449,-0.00258957920596,0.003377438755706]],[[0.011548222973943,0.00848039239645,0.043682981282473],[-0.059361327439547,-0.016954900696874,0.03710400313139],[0.037427134811878,-0.014241309836507,-0.016786586493254]],[[0.01776459813118,-0.0012737479992211,-0.014035449363291],[-0.043248489499092,-0.061571799218655,-0.0030294742900878],[-0.055195067077875,0.034950491040945,0.065431773662567]],[[0.037805911153555,0.027116648852825,-0.046120434999466],[-0.0027637991588563,-0.050571534782648,0.01880138553679],[0.044698886573315,-0.047408815473318,0.026688246056437]],[[-0.092448689043522,-0.010391486808658,0.047527965158224],[-0.0021603722125292,0.044026497751474,-0.063661135733128],[0.018444495275617,0.048846945166588,0.035886310040951]],[[-0.045402329415083,0.029161656275392,-0.047409530729055],[-0.041225038468838,0.044475175440311,-0.016656197607517],[0.04074165597558,0.023640925064683,-0.022891042754054]],[[0.0028933039866388,0.055130369961262,0.031767133623362],[0.054209023714066,0.043427485972643,0.045466907322407],[0.058294549584389,0.00500817457214,-0.034723319113255]],[[0.00483308872208,-0.022293185815215,0.0033443830907345],[0.035529542714357,-0.052982844412327,0.022203905507922],[-0.051882639527321,0.029496235772967,-0.0061360141262412]],[[-0.0054644891060889,0.069759897887707,0.016009533777833],[0.033558703958988,0.0026021557860076,0.0075201042927802],[-0.071175388991833,0.016771672293544,0.046697597950697]],[[0.02932914532721,0.044393435120583,0.066856473684311],[-0.0095006981864572,0.023054664954543,0.062139272689819],[0.065253086388111,-0.038326069712639,-0.072941161692142]],[[-0.026354005560279,-0.016119433566928,0.031294446438551],[0.0080495858564973,0.019822785630822,-0.037557553499937],[0.031767059117556,0.035067591816187,0.014335292391479]],[[0.028275817632675,-0.028722396120429,0.0030888239853084],[-0.070247463881969,-0.0015997900627553,-0.037628326565027],[0.079422682523727,-0.0010642643319443,0.075190126895905]],[[0.00040590579737909,0.050608620047569,0.044916775077581],[0.0030649248510599,-0.02384726703167,-0.062629543244839],[0.017360880970955,0.0016599475638941,0.008088493719697]],[[0.0048511573113501,-0.063686721026897,0.0059708682820201],[0.038275800645351,-0.013325358740985,0.0041056107729673],[0.033484756946564,0.051064752042294,0.044590558856726]],[[-0.057473797351122,-0.0088933445513248,0.014288865961134],[0.057726457715034,-0.0018316209316254,-0.0054702186025679],[-0.064846888184547,-0.042198222130537,0.017239144071937]],[[-0.046650361269712,-0.037351317703724,-0.018578764051199],[0.010530062019825,0.036104910075665,-0.019156653434038],[0.045291654765606,-0.012563413009048,0.042344436049461]],[[0.015779219567776,-0.00088554550893605,-0.031969644129276],[-0.046030677855015,0.010888977907598,0.013927159830928],[0.068722896277905,0.017687864601612,0.0031625172123313]],[[-0.027889784425497,-0.01539911981672,-0.0046314722858369],[-0.024882623925805,0.063719965517521,0.023804182186723],[-0.046861924231052,0.0084593622013927,-0.0046806810423732]],[[-0.013745073229074,-0.0131142931059,0.028279103338718],[-0.03641564399004,-0.043638493865728,-0.036509595811367],[0.013818868435919,0.029875012114644,-0.023005537688732]],[[-0.04205209389329,-0.0076002022251487,0.043528441339731],[0.0095124263316393,0.082620456814766,0.031697887927294],[0.0025377124547958,0.0067893001250923,-0.010635817423463]],[[-0.0056304247118533,0.03462628275156,-0.040363281965256],[-0.071877710521221,0.015170132741332,0.024516401812434],[-0.085319988429546,0.053013224154711,-0.027296802029014]],[[-0.073905892670155,0.031571887433529,-0.042755972594023],[0.032339937984943,-0.038328863680363,-0.034881174564362],[-0.029533438384533,-0.0062502124346793,0.0046872650273144]],[[0.0019014136632904,0.015801656991243,0.056858688592911],[0.033427130430937,-0.041535589843988,0.0349848754704],[-0.0057409578002989,0.013421299867332,-0.004987308755517]],[[0.03246758878231,-0.011484181508422,-0.0043316972441971],[-0.04582716152072,-0.016654990613461,-0.063761733472347],[-0.015580055303872,0.052450768649578,0.033349052071571]],[[-0.044628728181124,-0.010203919373453,-0.00015459509450011],[-0.028100945055485,0.03896264731884,0.018829692155123],[-0.018293939530849,0.0023042517714202,0.0010098969796672]],[[0.0058201970532537,-0.00025367451598868,-0.039358958601952],[0.050397273153067,0.015290562063456,-0.024539088830352],[0.045334476977587,-0.013449512422085,0.014253352768719]],[[0.047328803688288,-0.0022336661349982,-0.007995636202395],[-0.01325105316937,0.026917839422822,0.0017180647701025],[-0.066905543208122,-0.036698423326015,-0.073632918298244]],[[0.066436983644962,-0.088997378945351,-0.020470043644309],[0.054011471569538,0.013633005321026,0.016067648306489],[0.056929737329483,-0.021633313968778,0.020129289478064]],[[0.019936529919505,-0.0014339195331559,-0.0023212961386889],[-0.04204286634922,0.016798306256533,-0.014528635889292],[-0.0021615047007799,0.017694497480989,0.010194088332355]],[[-0.067696519196033,0.015959260985255,-0.0058411215431988],[-0.026412684470415,0.0090907299891114,0.032513782382011],[0.029256287962198,-0.057007655501366,0.055648177862167]],[[0.019016023725271,-0.015989046543837,-0.04710616543889],[0.017917675897479,-0.045031886547804,0.047927245497704],[-0.02332803234458,0.029567994177341,-0.010337982326746]],[[0.046838611364365,-0.019828462973237,-0.035939566791058],[-0.04612660780549,0.017692353576422,0.038183968514204],[-0.014736015349627,-0.0068748877383769,0.013239752501249]],[[0.011686274781823,0.0082456720992923,0.027035806328058],[-0.015917154029012,-0.048691909760237,0.0059008235111833],[0.0431610904634,-0.069580733776093,0.10365525633097]],[[-0.029504761099815,-0.069326460361481,0.018711466342211],[0.017068652436137,0.052718464285135,-0.04541777074337],[-0.012769317254424,0.021186400204897,0.046663157641888]],[[0.0033870129846036,0.01402073726058,-0.047968756407499],[-0.015742899850011,-0.050987031310797,-0.0040884362533689],[0.022692771628499,0.095022931694984,-0.0073020337149501]],[[0.018612772226334,-0.023613728582859,-0.028782423585653],[-0.012520457617939,-0.014540637843311,-0.029539400711656],[0.02567663602531,0.0090464493259788,-0.039063949137926]],[[-0.015844751149416,-0.067340329289436,-0.0057286475785077],[0.069764964282513,-0.00026037340285257,0.0074445670470595],[0.018028575927019,-0.014441178180277,-0.0074089542031288]],[[-0.0047141024842858,0.02801757492125,-0.013573851436377],[-0.017167784273624,0.0027555560227484,-0.035283237695694],[-0.038733027875423,0.011855580843985,-0.026091219857335]],[[0.04175628349185,-0.032732866704464,0.03558598831296],[0.00059203919954598,-0.033250294625759,0.025010779500008],[0.0014022309333086,0.036369368433952,0.0056191305629909]],[[-0.018788123503327,-0.01708204858005,-0.024819267913699],[-0.02102523855865,-0.0260259360075,0.06007207557559],[-0.016451276838779,0.069600507616997,0.029386024922132]],[[0.082249917089939,-0.0273710899055,0.04676353931427],[-0.0019763219170272,-0.0087904753163457,-0.047385074198246],[0.022197453305125,0.027527451515198,-0.003052523592487]],[[-0.0021064970642328,-0.0014436385827139,0.032527945935726],[0.0013745508622378,0.0091291842982173,-0.044774271547794],[0.075151577591896,0.0082919355481863,0.0091474214568734]],[[0.036767836660147,0.057686302810907,-0.0037915587890893],[0.013142739422619,0.050536718219519,0.085547052323818],[0.088936753571033,-0.010653872042894,0.044459458440542]],[[0.039706360548735,-0.039605144411325,0.018480140715837],[-0.036180756986141,0.00087585306027904,0.0092957317829132],[0.0057947658933699,0.025874774903059,-0.010946900583804]],[[-0.0017200886504725,0.082691162824631,-0.060706786811352],[0.031252518296242,-0.03515513241291,0.033816572278738],[0.0088162664324045,-0.045244500041008,0.013258568011224]],[[0.011992312036455,0.0083022648468614,-0.037368133664131],[-0.0062483283691108,-0.0060354326851666,-0.05019573867321],[0.050974823534489,0.040521539747715,-0.037001449614763]],[[0.015532895922661,-0.023495445027947,-0.013241418637335],[0.044629011303186,-0.043818239122629,0.051302038133144],[0.030316356569529,-0.019112136214972,-0.071519084274769]],[[0.0032652600202709,-0.014419417828321,0.027891635894775],[0.012360728345811,0.034032315015793,0.034190371632576],[0.091436937451363,-0.048052877187729,0.018334476277232]],[[0.064405046403408,-0.0043376353569329,-0.045160360634327],[0.076592162251472,-0.07952918112278,-0.0060662711039186],[-0.058145083487034,-0.011950246058404,0.077925860881805]],[[-0.015555175021291,-0.0077140666544437,0.034942869096994],[-0.041389487683773,-0.02020382322371,0.010668327100575],[-0.0097577730193734,0.082784287631512,0.04990017414093]],[[0.0015164955984801,0.0089164413511753,0.043823543936014],[0.015332056209445,-0.073159486055374,0.097802735865116],[-0.0071730646304786,0.018092961981893,-0.019923653453588]],[[0.0035090090241283,-0.034793671220541,0.061722293496132],[-0.041493330150843,0.058672405779362,-0.028173677623272],[0.034307096153498,-0.078957639634609,0.043627835810184]],[[0.064500667154789,-0.025838891044259,-0.020326921716332],[-0.00024546176427975,0.0019663216080517,0.071244157850742],[-0.017304345965385,-0.025195015594363,-0.055444840341806]],[[-0.0032709792722017,-0.055833104997873,-0.0081850476562977],[0.082397192716599,-0.0059657441452146,0.067372255027294],[-0.014141517691314,0.032355528324842,0.018940631300211]],[[-0.052435860037804,0.066781125962734,-0.031431969255209],[-0.063292965292931,-0.029077056795359,-0.029962690547109],[0.019720550626516,0.064649544656277,0.024976225569844]],[[0.018443927168846,0.0097164791077375,0.014726660214365],[0.012054810300469,0.078689701855183,-0.038461659103632],[0.012235433794558,-0.055701520293951,0.065755479037762]],[[0.055097330361605,-0.031241908669472,-0.016407376155257],[-0.081351935863495,-0.020931582897902,-0.049301363527775],[-0.033108197152615,0.027133388444781,0.089021474123001]],[[0.033463411033154,0.018507346510887,-0.043057799339294],[-0.019641190767288,-0.0044758557341993,0.033796466886997],[-0.044378001242876,0.069540701806545,0.0059254826046526]],[[0.07329948246479,-0.055444724857807,-0.033223237842321],[-0.07014986872673,-0.11923828721046,-0.0029061320237815],[-0.02761747315526,-0.085021771490574,-0.058836419135332]],[[0.0527080334723,0.020852314308286,-0.036014538258314],[-0.044868364930153,-0.034488931298256,0.035312116146088],[-0.0072814645245671,-0.034864578396082,0.018654976040125]],[[-0.063080355525017,-0.021508120000362,0.071813620626926],[-0.064123764634132,0.024091299623251,0.0086852675303817],[-0.022872976958752,-0.064706593751907,0.03880699723959]],[[0.0074512124992907,0.0089652137830853,-0.029488731175661],[0.0051207677461207,0.010193563997746,-0.094569377601147],[0.019771035760641,0.060787387192249,0.015419363975525]],[[-0.03059321269393,-0.014389781281352,-0.0044076484628022],[-0.036121316254139,-0.038436099886894,0.085104078054428],[-0.023295423015952,0.048543650656939,0.039831899106503]],[[0.026212768629193,0.034822504967451,-0.022970031946898],[-0.020589219406247,0.030367229133844,-0.016392445191741],[-0.0096441386267543,0.044030770659447,-0.059002332389355]],[[0.037087921053171,0.0039213742129505,-0.052996277809143],[-0.043880555778742,-0.012696350924671,-0.081727176904678],[0.048411771655083,-0.023617293685675,0.0034833191893995]],[[0.062675908207893,0.016016760841012,-0.033955998718739],[-0.023342961445451,0.058180913329124,-0.010087345726788],[0.0016455809818581,0.007875332608819,-0.066244170069695]],[[-0.079579971730709,0.018611630424857,-0.0083091091364622],[-0.010626723989844,-0.035579606890678,-0.010776471346617],[0.036986958235502,0.019001999869943,-0.010656881146133]],[[-0.010222385637462,0.046940088272095,-0.0065777101553977],[-0.019978545606136,-0.086723044514656,0.06925567984581],[0.017952233552933,-0.019232202321291,0.04054557159543]],[[-0.028854010626674,0.074030913412571,0.056425776332617],[-0.06243073195219,0.052586674690247,0.060507826507092],[-0.031091507524252,0.10326774418354,0.087711974978447]],[[-0.010066458024085,-0.0027537939604372,-0.013278367929161],[-0.00070297316415235,0.0082434797659516,-0.017082668840885],[0.016188777983189,0.028402047231793,-0.064472272992134]],[[-0.0011494259815663,-0.030617458745837,0.029545677825809],[-0.018368676304817,-0.028267061337829,0.048363719135523],[0.05006742849946,-0.096577748656273,0.007490221876651]],[[0.058555047959089,-0.048515636473894,0.073744893074036],[-0.049845151603222,-0.001972968922928,-0.050527062267065],[0.065816782414913,0.035657819360495,-0.037853967398405]],[[0.035670638084412,0.022799303755164,0.0088839884847403],[0.091418892145157,-0.081991203129292,-0.035789530724287],[0.081055738031864,0.018452906981111,0.023788681253791]],[[0.00080246804282069,0.024563597515225,0.054832879453897],[-0.028393628075719,-0.0038810251280665,0.032868765294552],[0.03592736646533,-0.092394761741161,-0.031987838447094]],[[-0.024683659896255,0.015269012190402,-0.033201862126589],[-0.00096981972455978,-0.048152271658182,0.039701052010059],[0.006795656401664,-0.0074965008534491,0.0081843100488186]],[[-0.025303941220045,0.030303057283163,0.076683551073074],[-0.049400571733713,0.011331019923091,0.05690398439765],[0.063666462898254,-0.051290605217218,0.021511614322662]]],[[[-0.064101167023182,-0.013545647263527,-0.00043860205914825],[-0.03803689032793,-0.012428475543857,0.059775348752737],[-0.018738785758615,0.033142730593681,0.013169632293284]],[[0.023106792941689,0.039892360568047,0.0095775034278631],[0.087021470069885,0.01611016690731,-0.078946731984615],[0.0066932970657945,0.044143386185169,-0.025257132947445]],[[0.0088565116748214,0.0495272167027,0.024875206872821],[-0.014803430996835,0.087101668119431,-0.021788457408547],[0.015105073340237,-0.057108327746391,0.014197282493114]],[[-0.019349806010723,0.030619252473116,0.0041633942164481],[0.0029237407725304,-0.024671647697687,0.033526331186295],[0.03184711560607,0.061187528073788,-0.035726979374886]],[[-0.037519700825214,0.057390466332436,-0.068675875663757],[-0.035278171300888,-0.046595264226198,0.018849002197385],[-0.02552343159914,-0.033193290233612,-0.086103193461895]],[[0.011485314927995,-0.030570765957236,0.037676729261875],[-0.015492306090891,0.0047184498980641,0.037830695509911],[-0.12203308194876,-0.021970031782985,-0.020258383825421]],[[0.029267586767673,-0.0076854568906128,0.051196895539761],[-0.016157228499651,0.0092357192188501,0.038665011525154],[-0.15036725997925,0.013007229194045,-0.0084265861660242]],[[0.072658039629459,-0.020616883412004,0.043233308941126],[0.045284453779459,0.12257051467896,-0.063755020499229],[-0.039787266403437,0.0016622364055365,0.020770059898496]],[[-0.0088805463165045,-0.020773433148861,0.11435434967279],[-0.0041750459931791,0.04184827208519,-0.05273912101984],[0.012535376474261,0.028001019731164,0.071889579296112]],[[0.035372760146856,0.026121659204364,0.02019046805799],[-0.0032699792645872,-0.013083496131003,0.013294017873704],[0.026951810345054,-0.0084152696654201,-0.01829532161355]],[[0.00028832635143772,0.037250284105539,0.045185588300228],[0.011165409348905,0.011582394130528,-0.056251246482134],[-0.032050024718046,-0.024474713951349,-0.032850086688995]],[[0.015854516997933,0.064588598906994,0.10263341665268],[-0.007715065497905,0.047530986368656,-0.092585161328316],[-0.021764401346445,0.049119044095278,-0.04418708384037]],[[0.043592754751444,-0.0053520952351391,0.032070174813271],[0.01370195299387,0.045958634465933,-0.0053838999010623],[0.031716518104076,0.10339838266373,0.018906926736236]],[[0.0032672781962901,0.060393888503313,0.033061299473047],[0.06935965269804,0.018238792195916,-0.02893191203475],[0.01370348315686,0.031987302005291,0.044188264757395]],[[-0.061684641987085,0.01010204013437,0.050274714827538],[-0.0051917722448707,0.0015174755826592,-0.031085971742868],[-0.072009243071079,-0.068151660263538,-0.0063743568025529]],[[-0.016837563365698,-0.023786036297679,-0.037025820463896],[0.028004953637719,0.0017325370572507,-0.022414352744818],[0.017694137990475,-0.036479059606791,-0.050720766186714]],[[0.04682020097971,0.028993453830481,-0.02608604170382],[0.037594422698021,-0.0099216438829899,-0.010071220807731],[0.045295186340809,-0.0082505727186799,0.019099364057183]],[[-0.03672855719924,-0.0045661125332117,0.0037727279122919],[-0.061864469200373,-0.025799529626966,0.00031507198582403],[-0.03218437731266,-0.031500358134508,-0.022988613694906]],[[-0.015743276104331,-0.00020199324353598,0.031385041773319],[-0.031149342656136,0.040529411286116,-0.047234311699867],[0.011147846467793,-0.024248447269201,-0.014069029130042]],[[0.0086429193615913,-0.021683348342776,0.033217824995518],[0.021504597738385,0.068420320749283,0.07650800049305],[-0.035872273147106,0.0015575985889882,-0.0011853219475597]],[[-0.025715719908476,0.021087393164635,-0.072098717093468],[0.0164391156286,-0.023170828819275,-0.014250974170864],[-0.012961938045919,-0.02025998942554,0.015836250036955]],[[0.090770214796066,-0.02840856090188,-0.01802415214479],[0.021547641605139,0.024669604375958,-0.038893528282642],[0.032439041882753,-0.0017062454717234,0.083855286240578]],[[-0.025882875546813,0.014489848166704,0.034190159291029],[-0.023778529837728,-0.04612647742033,-0.012933041900396],[0.051631290465593,-0.067065045237541,0.030593283474445]],[[-0.042650729417801,0.0034764891024679,0.08548890799284],[0.026105146855116,-0.042851381003857,0.027948766946793],[0.028328182175756,0.10532528907061,0.040145922452211]],[[0.06115610525012,-0.040583156049252,0.013691916130483],[-0.059293925762177,0.021952660754323,0.094423532485962],[-0.013230741024017,-0.0040653818286955,0.046246577054262]],[[-0.092915259301662,0.015738567337394,0.054283712059259],[-0.055012587457895,0.063289910554886,0.027261987328529],[0.032268654555082,-0.016534941270947,0.037706449627876]],[[0.053618054836988,0.0046359822154045,0.05535226687789],[0.043754603713751,-0.0017105485312641,-0.078543566167355],[0.051453053951263,0.041843108832836,0.077296152710915]],[[0.043367572128773,-0.010823322460055,-0.04573718085885],[-0.0064168013632298,-0.025304140523076,-0.087155006825924],[0.06306441873312,-0.058798082172871,-0.01257117651403]],[[-0.061191532760859,0.024589808657765,-0.00053170102182776],[-0.0017197701381519,-0.035638030618429,0.014581674709916],[0.014470838941634,-0.031996466219425,-0.028289031237364]],[[-0.00084153306670487,0.063074089586735,0.012464040890336],[-0.0099169462919235,-0.034031439572573,-0.00022336309484672],[-0.052043907344341,0.027150465175509,0.020674744620919]],[[0.026779295876622,-0.0080260559916496,0.034299954771996],[-0.057164158672094,0.012207829393446,-0.001014263369143],[-0.042040299624205,-0.035771418362856,0.10385343432426]],[[-0.04732296988368,-0.044494025409222,0.028872564435005],[0.059040937572718,-0.070398822426796,-0.02749428153038],[-0.055737685412169,0.037466149777174,-0.0078379167243838]],[[-0.1217949539423,0.011739881709218,0.032911378890276],[0.043493792414665,-0.0016171662136912,-0.052539762109518],[0.014815953560174,0.051229756325483,0.019736079499125]],[[-0.012837971560657,0.055350486189127,-0.045707896351814],[0.10447436571121,-0.051853597164154,-0.01448383089155],[-0.07153245806694,0.048187036067247,0.050606038421392]],[[0.054972805082798,-0.022573167458177,0.045589309185743],[-0.066480197012424,0.069544658064842,-0.0076218280009925],[0.0073451627977192,0.037826292216778,-0.014536180533469]],[[0.073557935655117,0.039849162101746,-0.032876458019018],[-0.057513300329447,-0.060074623674154,0.010020184330642],[-0.02175061032176,0.0094703296199441,0.065462909638882]],[[-0.046155467629433,-0.015712384134531,0.036705929785967],[0.015682179480791,0.014199403114617,0.022906074300408],[-0.071411453187466,0.069837272167206,0.04905828461051]],[[0.066792920231819,0.048688981682062,0.036869842559099],[-0.020049521699548,-0.00081094162305817,0.11539950966835],[0.013095373287797,0.019704230129719,0.15993143618107]],[[-0.066490091383457,-0.040969051420689,-0.060119636356831],[0.013012107461691,-0.020960735157132,-0.032714188098907],[0.036783311516047,0.10301001369953,-0.029473388567567]],[[0.04770689457655,-0.019210888072848,0.028452968224883],[-0.019632745534182,0.00089702440891415,-0.024155052378774],[0.068255633115768,0.04913442581892,0.0253373272717]],[[0.008203730918467,0.046098947525024,0.032874464988708],[0.017885116860271,0.0040049953386188,-0.0058991876430809],[0.010853008367121,-0.0086110234260559,0.036380007863045]],[[-0.00611353199929,0.046389114111662,0.090050712227821],[0.04323149099946,-0.032892916351557,0.013110435567796],[0.082597300410271,-0.00021302286768332,0.099087908864021]],[[0.018789974972606,0.08980069309473,0.024012325331569],[0.031311616301537,0.033356759697199,0.052942592650652],[0.032829433679581,0.017863819375634,0.099483877420425]],[[0.11782278120518,0.0051095141097903,-0.078450933098793],[0.036186825484037,-0.02558097243309,-0.094995655119419],[0.03566537424922,0.03032499179244,-0.023057321086526]],[[0.027324266731739,-0.024281658232212,0.0084882518276572],[0.0093682920560241,-0.072832107543945,0.07560707628727],[-0.075480416417122,-0.070731192827225,0.054720472544432]],[[-0.033932235091925,0.008416629396379,0.031176852062345],[0.031303524971008,-0.0023933600168675,0.11289864778519],[0.063205800950527,0.047189109027386,0.057806305587292]],[[0.028724199160933,-0.041794937103987,-0.023193186149001],[-0.011047445237637,-0.0050418637692928,-0.041332058608532],[-0.0030159479938447,0.02917025052011,0.015526778064668]],[[-0.075926192104816,-0.11685935407877,-0.032240379601717],[0.024663655087352,-0.035916615277529,-0.018309384584427],[0.038615498691797,-0.0082252267748117,-0.090587414801121]],[[0.036686547100544,-0.080945737659931,0.035384837538004],[-0.024159042164683,-0.012079889886081,0.0045686713419855],[0.028112789615989,-0.057514067739248,-0.017797296866775]],[[-0.098207756876945,-0.078773967921734,-0.024560052901506],[0.032932363450527,-0.13390423357487,0.017024334520102],[0.063111200928688,-0.019942445680499,-0.042602129280567]],[[0.033462729305029,0.059012245386839,-0.11974266171455],[0.14137947559357,0.024418221786618,-0.009597267024219],[0.031284403055906,-0.014913501217961,-0.092715784907341]],[[0.090903423726559,0.048411693423986,-0.035279631614685],[0.02477927878499,0.027373885735869,-0.065409362316132],[0.082855060696602,-0.00026758364401758,0.01662934012711]],[[-0.02913961187005,0.0057043503038585,0.0091647272929549],[-0.054796364158392,-0.044364620000124,-0.046873267740011],[-0.049347653985023,-0.035000912845135,-0.051691569387913]],[[0.052811820060015,0.026650553569198,0.035231184214354],[0.090520173311234,-0.028313424438238,0.066898211836815],[0.0076795895583928,0.085578911006451,0.085296913981438]],[[0.03630854934454,0.032501082867384,0.033994801342487],[-0.012968830764294,0.025339869782329,0.061109207570553],[0.022891774773598,0.055052652955055,-0.016001576557755]],[[0.019490415230393,-0.052457626909018,-0.014388848096132],[-0.011043180711567,-0.010640027932823,0.0064733144827187],[-0.043589517474174,0.039168108254671,-0.085906393826008]],[[0.060536667704582,0.058483999222517,-0.0042488863691688],[0.068534709513187,0.046272005885839,-0.031598825007677],[0.043741438537836,-0.021852657198906,0.044794734567404]],[[0.0050415229052305,0.029858339577913,0.035857271403074],[-0.047799132764339,0.010167824104428,-0.029948737472296],[-0.02065990306437,-0.069569580256939,0.012899147346616]],[[0.0042900587432086,0.024171760305762,-0.044128675013781],[0.065980821847916,0.026250150054693,0.039056558161974],[0.041813492774963,0.074879817664623,0.093968287110329]],[[0.051676750183105,0.012298136018217,0.052776105701923],[0.040507923811674,0.026081882417202,0.00093017419567332],[0.010578730143607,0.031084036454558,-0.11473583430052]],[[0.0019347766647115,-0.09328393638134,-0.0090449675917625],[-0.089644677937031,0.0043835174292326,-0.023024283349514],[-0.033928517252207,-0.0021933207754046,-0.10447155684233]],[[0.047498650848866,0.0047958791255951,-0.034605599939823],[-0.042305525392294,-0.0004627209273167,0.0083961756899953],[-0.081439286470413,-0.065712183713913,-0.0092761758714914]],[[0.040497444570065,-0.013472532853484,0.080975227057934],[0.030298614874482,-0.056151580065489,-0.059323508292437],[-0.017158253118396,-0.015492665581405,0.083494283258915]],[[0.057979434728622,0.08851532638073,0.0093375062569976],[0.042868003249168,0.026216868311167,0.023136822506785],[0.051990818232298,0.029675865545869,-0.016015743836761]],[[-0.035212490707636,0.019079642370343,-0.11666141450405],[0.017673777416348,0.017331514507532,-0.052044313400984],[0.042263206094503,-0.079131424427032,0.050185929983854]],[[0.055707544088364,-0.085788726806641,0.10599580407143],[-0.011878442019224,-0.010725957341492,0.0041478923521936],[-0.011366478167474,0.020590184256434,0.001834889408201]],[[0.032211270183325,-0.0069284923374653,0.0074157924391329],[-0.034450110048056,0.034647352993488,0.0064528444781899],[0.03332981839776,0.0043408395722508,-0.034516766667366]],[[0.029727917164564,-0.036557625979185,0.017675388604403],[-0.016289312392473,0.025719271972775,-0.029675494879484],[-0.041112694889307,0.033672660589218,0.024569354951382]],[[-0.077679067850113,0.11459589004517,-0.021159790456295],[0.008993674069643,0.056882534176111,0.04254812374711],[0.07246483117342,-0.05616245046258,0.03096260689199]],[[0.015680216252804,0.091660335659981,-0.066873304545879],[0.076475344598293,0.037276100367308,-0.070290341973305],[0.076568730175495,-0.0041630337946117,-0.015116524882615]],[[0.064437851309776,-0.0084497211501002,0.035508181899786],[0.02074196562171,-0.082164861261845,0.018537240102887],[-0.0058014765381813,0.059116698801517,-0.044830061495304]],[[0.064308352768421,0.029476419091225,-0.097786851227283],[-0.031633928418159,0.094680033624172,-0.09491752833128],[0.01400700584054,0.0236910674721,-0.024408411234617]],[[-0.1360285282135,-0.034554693847895,-0.050476081669331],[-0.077136561274529,-0.045246202498674,-0.029946045950055],[0.0067610237747431,-0.028823783621192,-0.036054152995348]],[[-0.011008293367922,-0.011261343024671,0.017009759321809],[0.0057566580362618,-0.035429738461971,-0.022528141736984],[-0.025989081710577,-0.075924552977085,0.00017792863945942]],[[-0.049569603055716,-0.00014129745250102,0.028703387826681],[0.074711628258228,0.021598041057587,0.040506072342396],[0.14757212996483,-0.073468707501888,0.076068535447121]],[[-0.02631969936192,-0.0027845583390445,-0.043572373688221],[0.089010089635849,-0.081473998725414,0.0013867026427761],[-0.0025598730426282,0.0062997988425195,-0.039244640618563]],[[-0.021875651553273,-0.11284970492125,-0.026840720325708],[-0.053577903658152,-0.10981962829828,-0.0307253357023],[-0.012908591888845,-0.034056149423122,0.043288733810186]],[[0.10406128317118,0.08881201595068,0.09525203704834],[-0.010855855420232,-0.031226307153702,0.084912806749344],[0.046413272619247,-0.064402855932713,0.060242380946875]],[[0.026572423055768,0.10861117392778,0.011121643707156],[0.047170039266348,0.041609544306993,-0.0013412804109976],[0.029184112325311,0.040364511311054,-0.0081634363159537]],[[0.079618379473686,-0.043219532817602,-0.0025667140726],[0.022421708330512,0.0048196059651673,-0.065814189612865],[0.052467428147793,-0.037731938064098,-0.020520210266113]],[[-0.053929898887873,0.0027972413226962,0.0065878252498806],[-0.0079653868451715,0.013990177772939,-0.004543558228761],[-0.021981168538332,0.021213989704847,0.017992498353124]],[[0.0028354325331748,0.11115134507418,0.03132900595665],[0.072079390287399,0.1008920148015,0.047719873487949],[-0.027704006060958,0.066180177032948,0.0085353832691908]],[[-0.012472524307668,-0.059356592595577,-0.046680051833391],[0.005782101303339,0.0036664439830929,0.03508684784174],[0.072711780667305,-0.080065198242664,0.037006214261055]],[[-0.017203701660037,0.035146050155163,0.0058054700493813],[0.01178971119225,0.10635978728533,0.02889128960669],[0.10122399777174,-0.026129702106118,-0.032427851110697]],[[0.065581984817982,0.070876516401768,-0.019694484770298],[0.038869976997375,0.028668103739619,-0.059216544032097],[-0.023117579519749,-0.061743460595608,-0.043552327901125]],[[0.045017402619123,-0.0011901577236131,0.11215423047543],[-0.035850588232279,0.0038771908730268,0.019607469439507],[-0.056976906955242,-0.022023374214768,0.054635040462017]],[[0.038948446512222,0.075382463634014,0.059273704886436],[-0.024715542793274,0.041897669434547,0.11314010620117],[-0.036178294569254,-0.0011574944946915,0.085316680371761]],[[-0.020719213411212,-0.0005162360612303,0.036565970629454],[0.022922098636627,-0.042799092829227,-0.00096671405481175],[-0.014401809312403,-0.0954629778862,0.0081050526350737]],[[0.030721323564649,0.066707611083984,0.064482033252716],[-0.019552566111088,0.021125921979547,0.0092305485159159],[0.018993947654963,0.04766358435154,0.083772987127304]],[[0.046462118625641,0.058700766414404,0.031083613634109],[0.016722444444895,-0.017438663169742,0.001961437985301],[0.062405325472355,0.0046500051394105,-0.010487210005522]],[[0.018511371687055,0.038290191441774,-0.016975115984678],[0.055044088512659,0.021709743887186,0.026848779991269],[-0.039775028824806,0.045960053801537,-0.018802845850587]],[[-0.020756013691425,-0.0018483482999727,-0.043976336717606],[-0.02692967094481,-0.0005233291303739,0.037192650139332],[-0.0010046621318907,-0.038097757846117,-0.084420695900917]],[[-0.0032285617198795,0.028935065492988,-0.10012294352055],[0.03587881103158,0.0044242856092751,-0.021619137376547],[-0.015582319349051,0.061196092516184,-0.095699720084667]],[[0.067374341189861,0.0032775504514575,0.053625900298357],[0.028004806488752,0.014416882768273,0.037076223641634],[0.078249469399452,0.052137836813927,0.09867238253355]],[[-0.027994807809591,0.010563761927187,-0.033990044146776],[0.016789216548204,-0.070377022027969,-0.098664067685604],[0.027626825496554,-0.039615727961063,0.035060722380877]],[[0.046235173940659,-0.017561562359333,-0.016279313713312],[0.058823324739933,0.034147698432207,0.021257573738694],[0.0096590304747224,-0.0099479621276259,0.0046096043661237]],[[0.0032338637392968,0.021378632634878,-0.061081942170858],[0.016066689044237,0.012772176414728,-0.049115262925625],[0.010135492309928,0.0051545202732086,-0.11064400523901]],[[0.056975934654474,0.058618020266294,0.0061394479125738],[0.10483012348413,0.031057115644217,0.060741234570742],[0.037402503192425,0.04261214658618,0.049624528735876]],[[0.092658773064613,0.020892797037959,-0.0024368029553443],[-0.019628684967756,-0.0013415570138022,-0.11155370622873],[0.067570887506008,-0.025304324924946,0.032116521149874]],[[-0.00090478785568848,0.0036057245451957,0.07500571757555],[0.082748174667358,-0.031457901000977,0.043170437216759],[-0.050437342375517,0.013241365551949,0.019222805276513]],[[-0.05373914912343,-0.024293007329106,-0.011050034314394],[-0.00092797639081255,-0.01377119217068,-0.042836859822273],[-0.035766113549471,-0.0092993322759867,-0.027245968580246]],[[-0.046187929809093,-0.022231264039874,-0.035960536450148],[0.010017869994044,-0.015152697451413,-0.035393491387367],[0.024184163659811,-0.022305503487587,-0.051985390484333]],[[0.0054545737802982,-0.039744794368744,0.034734036773443],[-0.011581419967115,0.032580990344286,-0.019316297024488],[-0.017247574403882,0.0086557259783149,-0.003254913026467]],[[-0.069187618792057,-0.03083511069417,-0.045360289514065],[0.0090705640614033,-0.023486625403166,-0.032085631042719],[-0.0018679873319343,-0.030202779918909,-0.011943144723773]],[[0.043939270079136,-0.024038199335337,-0.032809946686029],[0.023507991805673,0.028888341039419,0.052131105214357],[0.023791644722223,0.12303310632706,-0.019385077059269]],[[-0.026079334318638,-0.054474852979183,-0.041571255773306],[-0.020263966172934,-0.0504688359797,0.0066999536938965],[-0.026577305048704,0.014045650139451,0.022132726386189]],[[0.033235251903534,0.037749294191599,-0.040197644382715],[0.04423214122653,-0.014974740333855,-0.061590887606144],[-0.030243385583162,0.013140898197889,-0.038179710507393]],[[-0.02111760340631,0.00077466899529099,0.0029459369834512],[-0.013320912607014,0.022616650909185,-0.045636132359505],[-0.045477159321308,-0.048887349665165,-0.021737471222878]],[[0.056617151945829,-0.053158052265644,0.0031201434321702],[0.026831213384867,0.021094454452395,-0.032057031989098],[0.014526977203786,-0.024934105575085,-0.016543336212635]],[[0.017584290355444,0.041605848819017,-0.0074444157071412],[0.011701404117048,0.070468828082085,0.026352180168033],[0.0052896658889949,0.0030288191046566,-0.0040222629904747]],[[-0.08280149102211,0.048562776297331,0.07632277905941],[-0.042811296880245,-0.010428285226226,-0.030321108177304],[-0.0093025676906109,0.018467616289854,-0.0044241151772439]],[[-0.031871404498816,-0.030880657956004,0.049198668450117],[-0.077165596187115,-0.026280775666237,-0.0059814509004354],[0.0064257346093655,0.044187471270561,-0.030802300199866]],[[-0.0076503986492753,-0.069920942187309,0.0096072508022189],[0.019767774268985,-0.050164069980383,-0.015729984268546],[0.011931118555367,-0.063095793128014,0.054423473775387]],[[-0.062668420374393,-0.0079501168802381,-0.0093767503276467],[-0.048896044492722,0.041127175092697,-0.031595673412085],[-0.05456455796957,-0.029829137027264,-0.0028031710535288]],[[-0.06228993833065,-0.0085875960066915,0.055325694382191],[-0.025389282032847,0.037628244608641,-0.061447143554688],[0.033570323139429,-0.03214118629694,0.072615407407284]],[[0.008593806065619,-0.035846129059792,-0.011751436628401],[-0.019691329449415,-0.015547500923276,-0.027946824207902],[0.03920429572463,-0.066638320684433,0.07389160990715]],[[-0.043377120047808,-0.035826198756695,-0.052768256515265],[-0.031575180590153,0.0025329920463264,0.070291042327881],[-0.0065133813768625,-0.010130176320672,0.010338534601033]],[[-0.020620046183467,0.041742891073227,0.013742436654866],[0.0085429474711418,0.065859787166119,-0.001224197098054],[-0.0081666568294168,-0.026851253584027,-0.0074522420763969]],[[-0.018981484696269,0.020672470331192,0.048623617738485],[-0.10498471558094,-0.011103467084467,0.025322899222374],[-0.11142396181822,0.097126439213753,-0.018900234252214]],[[0.020110636949539,0.019038334488869,0.077773742377758],[0.027070702984929,0.087564401328564,0.02481304295361],[0.14036411046982,0.032405264675617,0.021731035783887]],[[0.012975448742509,-0.0017859807703644,-0.036358784884214],[-0.021371910348535,-0.00086268875747919,-0.0038269578944892],[0.021556032821536,-0.022490724921227,-0.050073347985744]],[[0.010305689647794,-0.0089895036071539,0.053081274032593],[0.0060628722421825,-0.046365201473236,-0.043604057282209],[-0.038630343973637,-0.085034169256687,-0.04547156020999]],[[-0.035486727952957,-0.019299563020468,-0.10493576526642],[0.014569986611605,-0.037293191999197,-0.046330142766237],[0.046987075358629,0.029610469937325,-0.020466323941946]],[[0.0094229551032186,0.015008352696896,0.062765762209892],[0.035887859761715,-0.032159574329853,0.0059409770183265],[0.011288974434137,0.0012767502339557,-0.0018158191815019]],[[0.00020197840058245,0.031275738030672,-0.0650440081954],[0.051080085337162,-0.039873458445072,-0.021344618871808],[0.019486103206873,-0.021485472097993,-0.075531728565693]],[[0.0019595299381763,0.034799955785275,0.04134814068675],[-0.081753000617027,-0.029374368488789,0.050267498940229],[0.066603310406208,-0.027335472404957,0.00043887415085919]],[[0.018805289641023,0.0053865392692387,-0.012506385333836],[-0.029308142140508,0.051323428750038,0.029373858124018],[-0.085104256868362,0.018941655755043,0.012311056256294]],[[0.018890915438533,0.0083151776343584,0.036812018603086],[0.075358420610428,-0.047723706811666,-0.031365964561701],[-0.034522239118814,0.060165170580149,-0.0069056367501616]]],[[[-0.11170262098312,-0.044067986309528,-0.0028890876565129],[-0.14596699178219,0.022907773032784,0.095501229166985],[-0.050931468605995,-0.0389742590487,-0.091985635459423]],[[-0.012987744994462,-0.016528006643057,-0.070940211415291],[0.043631948530674,-0.011509424075484,-0.034896161407232],[-0.040834255516529,0.045754313468933,0.118766233325]],[[-0.089304119348526,0.024651171639562,0.0042607174254954],[0.0065796817652881,0.07338359951973,0.060077328234911],[0.051029145717621,0.086886361241341,-0.080142579972744]],[[-0.023648900911212,-0.064783595502377,0.066928893327713],[0.012964735738933,-0.080465517938137,-0.079530529677868],[-0.096617706120014,-0.074415124952793,-0.091696172952652]],[[0.059175662696362,0.0681257173419,-0.058140747249126],[0.0018060867441818,0.069743074476719,0.063476704061031],[-0.13944530487061,-0.063882738351822,-0.015604882501066]],[[-0.076188333332539,-0.056805565953255,-0.020514838397503],[0.077150233089924,-0.049967914819717,0.0086954487487674],[-0.0065915915183723,0.0058258487842977,-0.028454838320613]],[[-0.0056709195487201,0.10027503222227,-0.11560137569904],[-0.097633816301823,-0.043312717229128,-0.023728065192699],[-0.055365134030581,-0.025580929592252,0.10238333791494]],[[0.04201453179121,0.0016877392772585,0.038291424512863],[-0.087572894990444,-0.027794370427728,-0.040266968309879],[-0.054808337241411,-0.052070386707783,0.056295361369848]],[[0.058041501790285,-0.0097798090428114,-0.015836315229535],[-0.020441584289074,0.0037439258303493,0.012282654643059],[-0.056441307067871,0.080685041844845,0.079111464321613]],[[-0.10107934474945,0.0029212133958936,0.036727476865053],[-0.04520295932889,0.0231843739748,0.11325242370367],[-0.080470651388168,0.015479410067201,0.020646322518587]],[[-0.022745603695512,-0.015602011233568,0.036756183952093],[0.05529972165823,0.0042387079447508,0.040239211171865],[-0.071331344544888,0.053775083273649,0.0054498505778611]],[[0.00332992663607,0.027317365631461,0.030339708551764],[-0.025931062176824,-0.035297751426697,0.0066193705424666],[0.030760614201427,0.04612609744072,-0.047189429402351]],[[0.045386034995317,0.10767903923988,0.098934076726437],[-0.005831278860569,0.043793208897114,0.03453715890646],[-0.027926431968808,-0.019007520750165,0.036537185311317]],[[-0.0044241617433727,-0.017323581501842,0.032435547560453],[0.10100530087948,0.0091698290780187,-0.10844700038433],[-0.028787910938263,0.011779779568315,0.023155862465501]],[[0.062354791909456,-0.10152332484722,-0.06414520740509],[-0.011808062903583,0.065726257860661,-0.062071863561869],[0.094172775745392,-0.093689471483231,-0.013905560597777]],[[0.013604287058115,-0.077308170497417,0.078900173306465],[0.12852166593075,0.059691067785025,-0.048413991928101],[-0.012257324531674,0.013418565504253,0.11339094489813]],[[-0.053045630455017,0.019872708246112,0.021177949383855],[-0.020784744992852,-0.038734827190638,-0.0238705445081],[0.0071226954460144,0.043626450002193,0.017897734418511]],[[-0.097178503870964,-0.0035415298771113,-0.049416698515415],[-0.031026383861899,0.043664053082466,-0.032334517687559],[0.090815044939518,-0.048242677003145,-0.054983519017696]],[[-0.0034193566534668,0.010542332194746,-0.041156899183989],[-0.024903438985348,-0.040969111025333,-0.051437184214592],[0.0052565531805158,0.087629809975624,-0.0040742596611381]],[[0.010468731634319,0.046410262584686,0.053166352212429],[-0.068852841854095,-0.076988950371742,0.026104150339961],[0.036539442837238,0.024879837408662,0.011186305433512]],[[-0.023070966824889,0.010291993618011,0.11786591261625],[-0.026239616796374,-0.0071255778893828,-0.063942350447178],[-0.063944965600967,-0.070980124175549,-0.008680447936058]],[[0.097737446427345,0.09176629036665,0.046313233673573],[0.067983224987984,-0.047149509191513,-0.1080621406436],[0.0071189696900547,0.069597259163857,0.11441239714622]],[[0.016923204064369,0.072933055460453,0.0064738439396024],[0.075526900589466,0.022040899842978,-0.11420590430498],[-0.039797477424145,0.0012894760584459,-0.052256803959608]],[[-0.051993392407894,-0.042005747556686,-0.014386904425919],[-0.065147459506989,-0.065183684229851,-0.048665419220924],[0.044141605496407,-0.02333465591073,0.012697883881629]],[[-0.021583767607808,0.18974724411964,-0.045835912227631],[0.25464925169945,-0.10399232804775,0.053499277681112],[-0.040111623704433,0.25923588871956,0.006248920224607]],[[0.060074478387833,-0.1119689643383,-0.10655619204044],[-0.052271649241447,0.060339223593473,-0.027983758598566],[-0.047897420823574,-0.11803942173719,0.017698900774121]],[[0.080242574214935,-0.0142119275406,-0.011016965843737],[0.022935902699828,0.091804355382919,-0.074089087545872],[-0.0072326241061091,-0.042236249893904,-0.024564325809479]],[[-0.030460441485047,0.043954085558653,-0.12470753490925],[-0.018041163682938,0.0090611111372709,-0.028540523722768],[0.059902288019657,0.098431698977947,-0.041949450969696]],[[-0.012507492676377,-0.0088452640920877,0.067095756530762],[0.00015191468992271,-0.15491001307964,0.030235815793276],[0.03643586859107,0.049194477498531,0.072112582623959]],[[-0.087152570486069,0.087030120193958,-0.006482245400548],[0.031879883259535,-0.091629803180695,0.01883402094245],[-0.0057315463200212,0.058152757585049,-0.0112479114905]],[[0.1032305136323,-0.035569570958614,-0.040304843336344],[-0.064231604337692,0.11063124239445,-0.13804058730602],[0.17617572844028,-0.04560187831521,-0.06598924100399]],[[0.045213013887405,-0.028828209266067,0.070353724062443],[-0.023484624922276,0.0035827122628689,-0.08593063056469],[-0.026369901373982,-0.0099695017561316,0.043721649795771]],[[0.055625766515732,-0.043138284236193,0.013873453252017],[-0.034443184733391,0.015027654357255,0.085953623056412],[-0.017673710361123,-0.029684275388718,0.04289835691452]],[[0.047193367034197,-0.033326227217913,-0.053387187421322],[0.035462852567434,-0.021783262491226,0.02952941134572],[-0.070813603699207,0.014351491816342,0.04894856736064]],[[-0.05597036331892,-0.027706675231457,0.027256378903985],[-0.10737017542124,-0.046106014400721,-0.025039860978723],[-0.072392322123051,-0.13271866738796,0.03435817733407]],[[-0.019389847293496,0.056339405477047,0.12911108136177],[0.023748124018312,-0.097340494394302,-0.0091967592015862],[0.039202552288771,-0.079009786248207,-0.01422347035259]],[[-0.00431491388008,-0.088843606412411,-0.0084276357665658],[-0.0078214518725872,-0.0031716267112643,-0.0071745710447431],[0.0099634872749448,0.038702987134457,0.05653640255332]],[[0.040380403399467,-0.03731931000948,-0.11659505963326],[0.1086739897728,0.099671185016632,0.056876674294472],[0.052574057132006,0.033919140696526,-0.041787289083004]],[[-0.023780018091202,-0.092716135084629,0.029333243146539],[0.037133868783712,0.13519836962223,-0.033549971878529],[0.051693294197321,-0.064140975475311,0.026227938011289]],[[0.13269913196564,-0.029455004259944,-0.0048392424359918],[0.081447027623653,0.021899534389377,0.033299420028925],[-0.067323975265026,0.01426097098738,0.042537618428469]],[[0.068050742149353,0.039471391588449,-0.046859618276358],[-0.084134161472321,-0.04987769946456,-0.078117199242115],[0.037948284298182,-0.038326792418957,0.040420897305012]],[[0.048957224935293,0.015337604098022,-0.030538734048605],[0.02212287299335,0.033239904791117,-0.060700092464685],[0.06831356883049,-0.015659887343645,0.10232837498188]],[[-0.018599273636937,0.007283752784133,-0.097539886832237],[0.066244527697563,0.0036005333531648,-0.094566442072392],[0.029355704784393,0.038645304739475,-0.097658671438694]],[[0.003799291793257,-0.0015437876572832,0.066892817616463],[-0.071662537753582,0.065001256763935,0.014612040482461],[0.023635987192392,-0.0016756758559495,-0.011470397934318]],[[0.079521909356117,0.0058698398061097,-0.026475833728909],[0.0296560395509,0.1054031252861,0.11110412329435],[0.028593305498362,-0.08906377106905,0.043285828083754]],[[0.026087114587426,0.010365425609052,-0.032665111124516],[-0.0044513796456158,-0.019868101924658,0.1081432774663],[-0.051859457045794,0.026908565312624,-0.055102396756411]],[[-0.07049971818924,-0.035013433545828,-0.046950399875641],[-0.095448523759842,-0.042474154382944,-0.26426911354065],[-0.004037391860038,-0.00076298200292513,0.062310341745615]],[[-0.073425203561783,0.046161528676748,0.11193254590034],[-0.012047780677676,0.062437251210213,-0.030372383072972],[-0.03126111254096,-0.033315259963274,0.019383031874895]],[[-0.016532510519028,-0.051056940108538,-0.057428020983934],[0.034027829766273,-0.09884911775589,-0.029019026085734],[-0.020500607788563,0.018374048173428,-0.048334967344999]],[[0.027389569208026,0.033178441226482,-0.11862169206142],[0.027952974662185,0.074037946760654,0.0020286648068577],[-0.073906801640987,-0.065246276557446,0.08089492470026]],[[0.048950705677271,0.0087920073419809,-0.062327340245247],[-0.0040823868475854,-0.0056913024745882,0.0091975219547749],[0.053290545940399,0.10642200708389,-0.051124293357134]],[[0.024365788325667,0.051177572458982,-0.052802558988333],[-0.033776182681322,-0.089226670563221,0.077612787485123],[0.030914090573788,-0.034479051828384,0.042246285825968]],[[0.0022355399560183,0.056190006434917,0.081165716052055],[0.05453772097826,0.043410040438175,0.014274343848228],[0.093934506177902,0.060264021158218,-0.033287856727839]],[[0.022136071696877,-0.020291624590755,0.1007491350174],[0.02905660867691,-0.0053800260648131,-0.049926854670048],[0.02271712012589,-0.043580800294876,-0.010124703869224]],[[-0.046609349548817,0.085000857710838,0.020592205226421],[0.12317594140768,0.03044749982655,0.035671450197697],[0.082611665129662,0.14148671925068,0.036423236131668]],[[0.049100484699011,-0.038224007934332,-0.051768973469734],[0.00051993748638779,-0.051228042691946,0.073453053832054],[-0.080059126019478,0.0097020454704762,0.07035955786705]],[[0.12552045285702,-0.060570642352104,-0.027935922145844],[-0.010865108110011,0.057332508265972,0.2153072655201],[0.17724686861038,0.02134626545012,-0.052716419100761]],[[0.10567768663168,0.028701439499855,0.0055254553444684],[-0.02657332457602,0.14174698293209,-0.14383798837662],[0.06742338091135,-0.015669230371714,0.09370593726635]],[[-0.053080789744854,0.044602155685425,-0.010668070986867],[0.098016895353794,0.096029296517372,0.067220874130726],[-0.022170262411237,-0.014062373898923,-0.0016162869287655]],[[0.10246646404266,-0.041622556746006,0.1544034332037],[-0.043227635324001,-0.064532294869423,0.022484747692943],[0.1221354752779,0.013128628954291,-0.055718090385199]],[[-0.056114971637726,0.098767787218094,-0.11324076354504],[0.054329358041286,-0.046642109751701,0.028735607862473],[-0.11605098098516,0.038535311818123,-0.03875906765461]],[[-0.018056908622384,0.06590873003006,-0.012419521808624],[0.028550332412124,-0.012907765805721,-0.096680514514446],[-0.041995115578175,-0.014779394492507,-0.087692052125931]],[[-0.027441039681435,0.060429517179728,-0.020407507196069],[0.069097526371479,0.058054909110069,0.02047023922205],[-0.12473548203707,0.00011316744348733,-0.027600809931755]],[[0.084569841623306,-0.021778639405966,0.011749679222703],[0.003994211088866,0.017296899110079,0.046958107501268],[-0.013878537341952,-0.024542527273297,0.08300019800663]],[[-0.040641084313393,0.0077276513911784,-0.060954816639423],[-0.046167224645615,0.051944304257631,-0.0085570085793734],[-0.037164647132158,-0.012175241485238,-0.015023873187602]],[[0.14954890310764,0.096217900514603,-0.033449683338404],[-0.0059818187728524,0.02883829548955,-0.075907178223133],[0.021505579352379,0.079158328473568,0.016512190923095]],[[-0.0015885095344856,-0.07352638989687,-0.0093954289332032],[-0.038340475410223,-0.0043646930716932,-0.02910527959466],[-0.011073119938374,-0.10724079608917,-0.16559338569641]],[[-0.088590815663338,0.0058338902890682,-0.071234166622162],[0.19214463233948,-0.045336183160543,-0.034842621535063],[-0.06459528952837,0.012630117125809,0.0093615893274546]],[[0.018877165392041,0.0035490952432156,-0.11856010556221],[0.14244985580444,0.071562878787518,-0.00052909919759259],[0.015024081803858,0.082358159124851,-0.026450546458364]],[[0.079247519373894,0.0027382688131183,-0.028563482686877],[-0.095171965658665,-0.022416967898607,0.041186440736055],[0.046021550893784,0.053972002118826,-0.026377452537417]],[[0.030565215274692,-0.034066464751959,0.0010948862181976],[0.090147666633129,0.019645756110549,0.13116507232189],[-0.062321148812771,-0.044943194836378,-0.01939619332552]],[[0.0053219776600599,0.069788403809071,-0.050848707556725],[0.019891105592251,-0.050733238458633,0.002875404432416],[-0.058626420795918,0.036565337330103,-0.019764048978686]],[[0.089763723313808,-0.075388215482235,0.045803532004356],[-0.1327973306179,0.013034489937127,0.051350422203541],[-0.0065762270241976,-0.023912917822599,-0.17048524320126]],[[-0.017548982053995,-0.079181507229805,8.390897710342e-05],[-0.035435505211353,0.019084356725216,-0.063815139234066],[0.034778602421284,-0.051927879452705,0.085571266710758]],[[0.022421041503549,0.081811495125294,-0.12047312408686],[-0.030668590217829,-0.13791593909264,-0.010825339704752],[-0.061238568276167,0.029784947633743,0.05468763038516]],[[0.0055274735204875,-0.036307614296675,0.047313641756773],[-0.022130355238914,-0.070679150521755,-0.068927302956581],[0.080518335103989,0.010003598406911,-0.11001636087894]],[[0.030079236254096,-0.09369907528162,-0.0052960473112762],[-0.12156308442354,0.029421372339129,0.025802509859204],[0.029406893998384,0.097501486539841,-0.029160555452108]],[[-0.041140373796225,0.10091840475798,0.036961674690247],[0.061440009623766,0.034209936857224,0.11910759657621],[0.064914301037788,0.1428610086441,0.082446038722992]],[[0.0049086795188487,0.010250312276185,-0.071619480848312],[-0.035185046494007,0.06601245701313,0.024110874161124],[-0.030713621526957,-0.065014198422432,-0.015747580677271]],[[0.0035115112550557,-0.069209590554237,0.0073040965944529],[-0.0037855529226363,0.0066709094680846,-0.01186296902597],[-0.07860192656517,-0.034354489296675,-0.15469138324261]],[[0.090058743953705,-0.0052387095056474,0.028166770935059],[0.023504367098212,-0.033260721713305,0.009858856908977],[0.027780340984464,-0.053998786956072,-0.083604350686073]],[[0.096294067800045,0.04102360829711,-0.10969121009111],[0.055227562785149,-0.081749193370342,0.22109411656857],[0.1239396110177,0.17389200627804,-0.040911488234997]],[[-0.17898474633694,0.045439269393682,0.074061930179596],[0.025315875187516,0.029527021571994,0.047065392136574],[-0.017194788902998,-0.11036820709705,0.093301810324192]],[[-0.056294437497854,-0.024533512070775,-0.014278496615589],[-0.079322993755341,-0.012312086299062,0.065099373459816],[-0.017040230333805,-0.13330838084221,-0.0317602455616]],[[0.015426155179739,0.036670800298452,0.0045020366087556],[0.057674206793308,-0.080968402326107,-0.0070477020926774],[-0.021396650001407,-0.015515704639256,-0.15327228605747]],[[0.042706269770861,-0.077644012868404,-0.042255654931068],[-0.098820835351944,-0.017671298235655,-0.010327000170946],[-0.05495248362422,0.15867307782173,0.10038578510284]],[[0.018067821860313,0.00056264898739755,0.020645564422011],[0.077340357005596,0.012837655842304,-0.025112116709352],[0.050837237387896,0.13208198547363,0.087596461176872]],[[-0.011480199173093,0.054405923932791,0.10445134341717],[0.10337667912245,0.12509517371655,-0.014113012701273],[-0.0031379412394017,-0.064552135765553,0.10233670473099]],[[-0.015832509845495,0.030726389959455,-0.023953009396791],[0.030573815107346,-0.0050536855123937,0.019432378932834],[0.14699594676495,0.031683538109064,0.094868063926697]],[[0.052320834249258,0.061242587864399,0.12639781832695],[-0.065876178443432,0.0052748997695744,-0.073652192950249],[-0.063103936612606,-0.1322456151247,0.046322327107191]],[[0.072996072471142,0.12611953914165,0.034689873456955],[0.10039251297712,0.12849715352058,0.010255112312734],[0.019059430807829,0.01354222279042,-0.062689580023289]],[[-0.04535810649395,0.067040018737316,-0.047201350331306],[-0.058490972965956,-0.15361702442169,-0.079531125724316],[0.078229852020741,0.0079466495662928,-0.063715100288391]],[[0.029603520408273,-0.085354767739773,0.061623021960258],[-0.039467114955187,-0.056496858596802,0.033988501876593],[-0.063022159039974,0.045199640095234,-0.073188185691833]],[[0.024599766358733,-0.07761312276125,0.0053351880051196],[-0.067950524389744,-0.036524809896946,0.045013625174761],[0.069674454629421,0.061234287917614,-0.031273636966944]],[[-0.010711761191487,-0.030459867790341,-0.040476024150848],[-0.013793103396893,0.054837707430124,-0.058045752346516],[-0.02655023522675,-0.089599080383778,0.0063466345891356]],[[0.06091358140111,-0.040736120194197,0.04563881829381],[0.17343370616436,-0.04691044986248,-0.13372850418091],[0.0056071500293911,0.063236355781555,0.061854150146246]],[[-0.093410059809685,-0.063428424298763,0.07588604837656],[0.0054205441847444,-0.0046173329465091,-0.03695435076952],[0.0067680049687624,0.093792334198952,-0.092276021838188]],[[0.098695248365402,0.060472551733255,0.043513957411051],[-0.01716442592442,-0.10841643810272,0.098764441907406],[0.035524364560843,0.0075997039675713,0.040401935577393]],[[0.066411562263966,0.084782190620899,-0.032555229961872],[-0.0077486126683652,0.12148065119982,-0.0060594920068979],[0.038137599825859,0.11604405194521,-0.019367601722479]],[[0.13135030865669,-0.093587048351765,0.089545540511608],[-0.068408712744713,0.068515688180923,-0.096049346029758],[0.03068826906383,0.059533905237913,-0.024471908807755]],[[-0.0073172068223357,-0.052303619682789,-0.092145271599293],[-0.16435243189335,0.11163192987442,0.17682218551636],[-0.021243698894978,0.014594377949834,0.044595018029213]],[[-0.0027119207661599,-0.031197374686599,-0.055354293435812],[-0.012701444327831,-0.058294672518969,0.043385844677687],[-0.017824972048402,-0.02263299189508,0.072197549045086]],[[-0.024191550910473,0.035153437405825,-0.010953926481307],[-0.0080030085518956,0.007892114110291,0.039448294788599],[-0.087992064654827,-0.035049952566624,-0.095733553171158]],[[0.09735269099474,0.035331338644028,0.080527946352959],[-0.033341404050589,0.036079935729504,-0.028608860448003],[-0.017480557784438,-0.042938895523548,-0.0050222990103066]],[[-0.0044358419254422,-0.13363853096962,-0.053912784904242],[-0.013210587203503,-0.1052076742053,-0.012081240303814],[0.036281108856201,-0.11537699401379,0.047195140272379]],[[0.017372732982039,-0.0084737204015255,-0.029409661889076],[-0.099567323923111,-0.03102383390069,-0.086993977427483],[-0.11257693171501,0.015908196568489,-0.07988690584898]],[[0.047394663095474,-0.069086067378521,0.037761852145195],[-0.012130619026721,-0.0090151522308588,-0.072360396385193],[-0.0002327815600438,-0.038942687213421,-0.088963955640793]],[[0.11666873842478,-0.00606201402843,0.012586570344865],[-0.0051726438105106,0.075269363820553,-0.084855958819389],[0.0006277539068833,0.022258069366217,-0.077167451381683]],[[-0.067157201468945,-0.020034648478031,-0.015165751799941],[-0.0055294018238783,-0.035308532416821,0.063895732164383],[-0.075444035232067,-0.0031994504388422,0.039563111960888]],[[0.11525943875313,0.039034727960825,-0.052449032664299],[-0.036963313817978,0.0068064262159169,-0.032784227281809],[-0.01827903278172,-0.073261082172394,-0.062771648168564]],[[-0.0054134889505804,0.056288354098797,0.028822436928749],[-0.017452895641327,-0.026410080492496,0.0074357036501169],[-0.057793710380793,0.030257757753134,-0.027707042172551]],[[-0.13192276656628,0.038912799209356,0.12536863982677],[-0.010326934978366,0.030209319666028,0.010405858047307],[-0.11274798959494,-0.048210803419352,0.097465261816978]],[[0.077063590288162,-0.087274990975857,-0.00070236704777926],[0.0094372108578682,0.0045832674950361,0.076317027211189],[0.085372060537338,0.0058710896410048,-0.031007612124085]],[[-0.066578678786755,0.026911042630672,0.081590957939625],[-0.046410530805588,-0.040822844952345,0.044648259878159],[-0.0084479777142406,0.052291363477707,0.00010399570601294]],[[0.0045320633798838,-0.11068625748158,-0.0081909261643887],[-0.021659906953573,0.055153895169497,0.12965036928654],[-0.048232693225145,0.04076661914587,0.061001367866993]],[[-0.1124609708786,-0.061727833002806,0.027656063437462],[0.017464751377702,-0.027176521718502,0.08481539785862],[0.032048504799604,-0.034661844372749,-0.011910785920918]],[[0.017501661553979,0.025110382586718,-0.022027364000678],[0.069629810750484,0.11737318336964,0.039993491023779],[-0.010605273768306,0.085819162428379,0.034721937030554]],[[0.029658889397979,0.090609468519688,0.13518059253693],[0.012334001250565,-0.001091071520932,0.048577334731817],[0.039528172463179,0.0073717390187085,0.14345243573189]],[[-0.015175412409008,-0.030976496636868,0.10533586889505],[-0.096068069338799,-0.01158868521452,0.016069097444415],[-0.067631259560585,0.061132915318012,0.034247785806656]],[[0.0098694311454892,-0.032007798552513,-0.075581334531307],[-0.014732061885297,0.15021732449532,0.072026394307613],[-0.032764155417681,0.01762942969799,0.015455906279385]],[[-0.09983416646719,-0.012957432307303,-0.15101312100887],[-0.054252222180367,-0.06694719940424,-0.016924772411585],[-0.086016520857811,-0.14333735406399,-0.12355632334948]],[[-0.033978052437305,0.016561832278967,0.069725684821606],[-0.075166165828705,0.0084580332040787,0.034769870340824],[-0.086425311863422,-0.071877211332321,0.10308041423559]],[[-0.0503812097013,0.0068739037960768,-0.010734243318439],[-0.019703600555658,0.024953931570053,-0.093981683254242],[-0.007170494645834,0.048235040158033,0.04970458522439]],[[-0.053586356341839,-0.059721283614635,-0.035283867269754],[-0.0020573798101395,0.07484358549118,-0.013311724178493],[-0.075986921787262,-0.041191082447767,-0.042349141091108]],[[0.002493339125067,-0.03659126535058,0.026634339243174],[-0.055233735591173,-0.0024274662137032,0.0084562338888645],[0.032716002315283,-0.13101804256439,-0.11249697208405]],[[0.056768823415041,-0.028145993128419,0.089152626693249],[-0.15805667638779,0.097366541624069,0.052635878324509],[-0.059867348521948,-0.10679099708796,-0.06561403721571]],[[-0.025062179192901,0.037504725158215,-0.021568581461906],[0.088885851204395,-0.017812548205256,-0.035992633551359],[0.012857985682786,0.0077336123213172,-0.11495249718428]],[[-0.011702512390912,-0.04406851157546,-0.067235343158245],[-0.13933348655701,-0.11113066971302,-0.080875374376774],[0.031891856342554,-0.044747833162546,0.057937629520893]]],[[[0.034317184239626,-0.041736386716366,-0.0094099752604961],[-0.036630339920521,0.01450489461422,-0.00044733259710483],[0.029886424541473,-0.041928522288799,0.072106279432774]],[[0.078544735908508,0.041899532079697,-0.0041022072546184],[0.054605338722467,-0.10929485410452,0.01229698676616],[0.01007282640785,0.002299758605659,0.059528209269047]],[[-0.0059584770351648,0.040122091770172,0.011471509002149],[0.013050169683993,-0.012641046196222,0.10073105245829],[-0.10173323005438,-0.0409751906991,-0.0024233695585281]],[[0.0081987557932734,-0.0087174857035279,0.029162278398871],[0.062944479286671,-0.09278728812933,0.032663766294718],[-0.018896428868175,0.039948053658009,0.011969167739153]],[[0.03886329382658,0.023488786071539,-0.029455963522196],[0.11999137699604,0.061547927558422,0.17036464810371],[-0.013779642991722,0.0087924776598811,-0.0017016767524183]],[[0.031901776790619,-0.015765262767673,0.0013466265518218],[0.021207708865404,-0.02381775714457,0.053403034806252],[0.030861200764775,0.015211441554129,0.064697541296482]],[[-0.00097187742358074,0.04598380625248,-0.0077855684794486],[0.060873955488205,0.029756039381027,-0.014960466884077],[0.030309604480863,0.018638610839844,-0.045453120023012]],[[0.010755789466202,-0.013298406265676,0.066433191299438],[-0.012449021451175,-0.018471455201507,0.065462492406368],[0.025633800774813,0.059961125254631,0.0071649081073701]],[[0.035602502524853,0.024545811116695,0.044197358191013],[-0.10422683507204,-0.085741281509399,0.0037434487603605],[-0.060144174844027,0.045473091304302,-0.050493888556957]],[[0.036022830754519,-0.032543685287237,-0.018693421036005],[-0.02637555450201,-0.032678931951523,-0.013439863920212],[0.028522001579404,0.063563100993633,-0.026860015466809]],[[-0.088738784193993,-0.010458734817803,0.077603600919247],[-0.026716969907284,0.091433666646481,0.099002003669739],[-0.040017109364271,-0.050265036523342,0.0073623405769467]],[[0.03530053421855,0.10729057341814,0.050979595631361],[0.047816716134548,0.050867941230536,0.089617878198624],[0.064011767506599,0.11708377301693,-0.083561070263386]],[[0.054454993456602,0.15169137716293,-0.0910998955369],[-0.040376283228397,-0.038614831864834,0.037249997258186],[0.034816354513168,0.072981491684914,-0.034710388630629]],[[-0.0068997144699097,0.10800278931856,0.020579636096954],[-0.035810917615891,0.11147383600473,0.092729449272156],[0.01737554743886,-0.10257897526026,0.045285888016224]],[[0.098884344100952,-0.042697507888079,-0.034907650202513],[-0.01848017051816,-0.067579500377178,-0.028241362422705],[-0.00052567425882444,-0.0053366385400295,-0.00026403882657178]],[[0.082214623689651,-0.053277976810932,-0.04986659809947],[-0.021031385287642,0.1796265989542,0.031109901145101],[-0.095048628747463,-0.18326488137245,-0.025028366595507]],[[-0.040097434073687,0.00061107624787837,-0.14297656714916],[-0.0022804229520261,-0.00084369425894693,-0.021457934752107],[0.0089784879237413,0.0073565864004195,-0.024660656228662]],[[0.019458999857306,0.013844892382622,0.03130017966032],[-0.013865485787392,-0.044660784304142,0.014853054657578],[0.0057605351321399,-0.083360381424427,-0.0063169579952955]],[[-0.055869333446026,0.0079357177019119,0.058156102895737],[0.030737016350031,0.0031492859125137,-0.08327179402113],[-9.8462434834801e-05,-0.029778787866235,0.031161272898316]],[[-0.052054405212402,-0.05029496178031,0.019773432984948],[-0.066127307713032,-0.01572247967124,-0.027564328163862],[-0.0093333637341857,0.073254376649857,0.0049609816633165]],[[-0.012807289138436,-0.0011514184297994,0.034538641571999],[0.05471283197403,0.064411923289299,0.012515944428742],[0.0029451358132064,-0.018947696313262,-0.070946246385574]],[[0.0046417093835771,0.035517849028111,-0.08487481623888],[0.080281242728233,-0.001802466227673,0.046103600412607],[-0.093502126634121,-0.0037850681692362,0.14748466014862]],[[-0.042030069977045,0.11966096609831,-0.035167191177607],[-0.0066996226087213,-0.034835312515497,-0.12629532814026],[-0.011180810630322,0.013746392913163,-0.07210573554039]],[[-0.037569053471088,0.02092194929719,-0.023382229730487],[-0.045144639909267,-0.03168598935008,0.00057396583724767],[-0.036048498004675,-0.012425618246198,-0.015227281488478]],[[0.011280812323093,-0.0089746182784438,-0.042157661169767],[-0.0033071734942496,0.03239968046546,0.062469843775034],[0.028447277843952,0.0078616086393595,0.10799394547939]],[[0.021770374849439,-0.0039976146072149,0.064437918365002],[-0.0052084834314883,-0.083555176854134,-0.028560362756252],[-0.038703735917807,0.012169140391052,0.013152864761651]],[[-0.013821456581354,-0.029487101361156,0.12675119936466],[-0.069939978420734,0.012052637524903,0.025952331721783],[-0.036858707666397,0.04539430513978,-0.0034118976909667]],[[-0.030823718756437,0.10051061958075,-0.0003602810902521],[-0.030024997889996,-0.02683306671679,-0.018937386572361],[0.11320647597313,-0.064063392579556,0.071786224842072]],[[0.027083992958069,0.10570275038481,-0.051966786384583],[-0.04148617759347,0.052828516811132,0.03239618986845],[0.0086760688573122,-0.070637054741383,0.035748708993196]],[[-0.072771914303303,0.04263998940587,-0.016829591244459],[0.0028820601291955,0.087232500314713,0.042852971702814],[-0.099191203713417,-0.10741309821606,0.034814219921827]],[[-0.060475382953882,0.029123907908797,-0.033782597631216],[0.040607947856188,0.0039195301942527,-0.028516795486212],[0.041262831538916,0.029144253581762,0.032740294933319]],[[0.10279751569033,0.060749236494303,-0.020864959806204],[-0.022407138720155,-0.16961398720741,0.046763811260462],[0.046668816357851,0.0026988501194865,0.11197949200869]],[[-0.024155469611287,0.0017207426717505,0.039967305958271],[0.13772751390934,-0.063534051179886,0.10593115538359],[0.035835433751345,-0.082366824150085,0.046130776405334]],[[-0.07066435366869,0.025718059390783,-0.041448209434748],[-0.035194121301174,0.01460034865886,0.020632205531001],[0.0069107124581933,-0.023546364158392,0.059125959873199]],[[-0.065264515578747,-0.034657072275877,0.063677906990051],[0.06434141099453,-0.030840961262584,0.061709709465504],[0.02004487067461,0.0050403494387865,-0.016122158616781]],[[0.10188508778811,0.049957673996687,-0.026105234399438],[0.048275347799063,-0.041744392365217,0.079602941870689],[-0.19826562702656,0.072516292333603,0.0030854700598866]],[[0.01294875331223,0.0085562132298946,0.023980408906937],[-0.00054038478992879,-0.044482078403234,-0.069026321172714],[-0.032591722905636,-0.012221238575876,-0.1477367579937]],[[-0.018113166093826,-0.044198874384165,-0.070231594145298],[-0.005091511644423,0.12439922243357,0.075224824249744],[-0.047754768282175,0.00039739275234751,0.021250462159514]],[[0.07851792126894,0.14972004294395,-0.099892698228359],[-0.063764467835426,-0.061685506254435,-0.066027939319611],[-0.017960706725717,0.032776635140181,-0.011448109522462]],[[0.0090172188356519,0.014293795451522,-0.022995512932539],[-0.0045800670050085,-0.049004308879375,0.0013459689216688],[-0.011255341582,0.032571665942669,0.010183604434133]],[[-0.021075513213873,0.0020152535289526,-0.02874524332583],[0.066724769771099,-0.049438815563917,-0.020596561953425],[-0.007156225387007,0.02668622136116,0.044871281832457]],[[0.028770761564374,0.054383013397455,0.14674523472786],[0.037850428372622,0.1013346016407,-0.037444673478603],[-0.081042215228081,0.044161852449179,0.00049827684415504]],[[0.022486312314868,-0.050226360559464,-0.054842740297318],[0.038893572986126,0.068204030394554,0.11538106948137],[0.067627131938934,0.085423111915588,0.10952289402485]],[[-0.020297385752201,0.054864645004272,0.077328011393547],[0.0542903393507,-0.069610670208931,-0.055053196847439],[0.054827004671097,-0.03186122700572,-0.0020788938272744]],[[-0.031870547682047,-0.044662788510323,-0.044570542871952],[-0.10110780596733,0.013475950807333,-0.042311452329159],[0.006328022107482,0.085933066904545,0.095353752374649]],[[0.076295681297779,0.093146122992039,-0.10673773288727],[0.060067340731621,-0.025892939418554,0.028966976329684],[-0.058466959744692,0.09254927188158,0.079589314758778]],[[-0.030259964987636,-0.091820411384106,-0.025871023535728],[0.061509180814028,0.041427958756685,-0.049751330167055],[-0.045534901320934,0.015415384434164,-0.046716254204512]],[[0.029827171936631,-0.067279286682606,-0.12567175924778],[-0.045444071292877,-0.052473876625299,-0.017563108354807],[0.063017547130585,-0.041755020618439,-0.044945806264877]],[[-0.049684766680002,0.0038689265493304,0.030623389407992],[-0.076500996947289,-0.0056167682632804,-0.053107332438231],[-0.053487222641706,-0.060186818242073,-0.063058383762836]],[[0.059705838561058,-0.016412876546383,-0.10504158586264],[-0.018830547109246,0.01028017885983,-0.021024173125625],[0.066261067986488,0.0096643920987844,0.037390507757664]],[[-0.052360322326422,-0.040769409388304,-0.048263374716043],[-0.014889312908053,0.17771904170513,-0.02275188267231],[0.16259077191353,0.12490642815828,-0.11889612674713]],[[-0.032994035631418,-0.034844145178795,-0.0021531376987696],[0.031023602932692,0.077717423439026,-0.030669717118144],[0.083650723099709,0.0779884532094,-0.028613738715649]],[[0.1105070412159,0.027313578873873,-0.042961273342371],[-0.0060876621864736,0.059966906905174,-0.01826704852283],[-0.074614480137825,-0.069632038474083,0.026224223896861]],[[0.0079583059996367,0.00036272205761634,-0.015908107161522],[0.024600928649306,0.079841144382954,0.030295392498374],[0.034724932163954,0.046651158481836,0.14304752647877]],[[0.065252617001534,-0.061292983591557,0.0014391962904483],[-0.037425946444273,0.092695385217667,0.043421179056168],[0.0081409914419055,0.0053977640345693,0.11387460678816]],[[-0.073871277272701,-0.15577504038811,0.030202681198716],[0.062406498938799,0.0077296905219555,0.034009024500847],[0.03775292634964,0.013009854592383,-0.030327195301652]],[[0.11034850031137,-0.06134795024991,-0.028346909210086],[0.081806138157845,-0.013276220299304,-0.0038445445243269],[0.061658605933189,0.055778861045837,0.068453446030617]],[[-0.061372496187687,0.0050149587914348,-0.096610933542252],[-0.024137672036886,0.010307708755136,0.14345535635948],[0.083618678152561,-0.037775352597237,-0.035911615937948]],[[0.020563075318933,-0.015244522131979,0.016613649204373],[0.13747797906399,0.03395739197731,-0.011404071003199],[0.039628379046917,0.061239566653967,-0.0090591898187995]],[[-0.024015164002776,0.07106701284647,0.063658230006695],[-0.063674323260784,-0.13140095770359,0.11500405520201],[0.17547339200974,-0.030591901391745,-0.028963236138225]],[[0.022124189883471,-0.071141704916954,0.066062077879906],[-0.033115893602371,0.075609683990479,0.0043371445499361],[-0.058377273380756,-0.06458355486393,0.094905950129032]],[[-0.0051582572050393,-0.029778737574816,-0.028583211824298],[-0.034730195999146,-0.04641404747963,-0.072753995656967],[-0.028301000595093,-0.019736452028155,-0.03080970607698]],[[0.022654986009002,-0.011629538610578,0.0096719916909933],[0.051944345235825,0.048444878309965,-0.050836201757193],[0.043293412774801,-0.056052025407553,0.0441491343081]],[[-0.036534443497658,0.03104885481298,0.035775978118181],[-0.13526052236557,-0.026737472042441,0.065014317631721],[0.052962508052588,0.037722896784544,-0.030693305656314]],[[-0.035083502531052,-0.00035793398274109,-0.074532270431519],[0.010323324240744,-0.054164536297321,-0.095501571893692],[-0.08210427314043,0.16083468496799,0.0099962456151843]],[[0.015423176810145,0.064815975725651,0.014858520589769],[-0.010996793396771,0.018203176558018,0.069253116846085],[0.057985529303551,-0.014719964005053,0.029798267409205]],[[0.10440999269485,0.065853334963322,-0.07076208293438],[-0.041128370910883,0.030628945678473,-0.019723687320948],[0.044313881546259,0.0041521559469402,0.036483615636826]],[[0.091438069939613,0.10341158509254,-0.046013437211514],[0.085830524563789,0.069587141275406,0.047741945832968],[-0.014876505360007,0.034340381622314,0.059135720133781]],[[-0.0035668278578669,0.038654256612062,-0.018403502181172],[0.027984263375401,0.10711352527142,-0.11706164479256],[0.00031655089696869,0.016946053132415,-0.081052921712399]],[[0.041714251041412,0.081929557025433,-0.041020829230547],[-0.0058393687941134,0.090185813605785,0.021944135427475],[0.059267729520798,-0.011982973664999,0.039787918329239]],[[0.1048870459199,-0.059208501130342,-0.12827962636948],[-0.16557084023952,-0.031593210995197,0.024194585159421],[-0.087249755859375,0.11086761206388,-0.028815547004342]],[[-0.10998254269361,-0.11743851006031,-0.073682226240635],[0.054903741925955,0.099736988544464,0.11910154670477],[-0.065631434321404,-0.069595485925674,0.030393525958061]],[[0.099339947104454,0.019337920472026,0.01097737532109],[-0.019518550485373,-0.015082122758031,0.021144552156329],[-0.060094587504864,-0.013242486864328,-0.028603343293071]],[[-0.021703783422709,0.080594822764397,-0.00052238046191633],[-0.148063108325,-0.047745324671268,0.12031406909227],[0.04372725635767,-0.094110175967216,0.013972301967442]],[[-0.11033946275711,-0.066435307264328,-0.041071839630604],[-0.043831571936607,-0.013702645897865,0.070887453854084],[0.066453844308853,0.10217166692019,0.063504807651043]],[[0.030488107353449,0.10388115793467,0.076653398573399],[-0.030134681612253,0.0033184587955475,-0.071638025343418],[0.0092141972854733,-0.030855385586619,0.034884791821241]],[[-0.044414360076189,0.038940500468016,-0.011891349218786],[0.037649545818567,0.025095360353589,0.016183959320188],[-0.05873640999198,-0.034880500286818,0.013160944916308]],[[-0.055221375077963,0.044745877385139,-0.0006875975523144],[-0.016333783045411,0.025047581642866,0.070493653416634],[0.017182542011142,0.058186262845993,0.049472838640213]],[[0.063387088477612,0.12233480066061,-0.046790920197964],[0.016437700018287,0.05262391641736,0.015018372796476],[-0.014081632718444,0.016824450343847,0.044474542140961]],[[-0.055157169699669,-0.086355641484261,-0.0034599197097123],[0.1147557720542,0.12857089936733,0.12973703444004],[-0.03858920186758,-0.076616212725639,-0.0046892026439309]],[[-0.021344197914004,-0.11655563861132,-0.011269016191363],[0.00030739168869331,-0.0053586731664836,-0.028277300298214],[0.043687529861927,0.049158778041601,-0.01264529582113]],[[0.076953448355198,-0.015793537721038,-0.043234381824732],[-0.042775128036737,-0.038602761924267,0.096966192126274],[-0.016471106559038,-0.06610593944788,0.034195058047771]],[[-0.048865478485823,-0.064444415271282,-0.033125642687082],[-0.078913412988186,-0.0068845562636852,-0.0035705633927137],[-0.027426231652498,-0.020509298890829,0.029594779014587]],[[0.065510503947735,0.075441271066666,0.031210873275995],[0.065981954336166,-0.030705332756042,-0.095971897244453],[-0.025967421010137,0.007266809232533,-0.038810987025499]],[[0.0053619486279786,0.090179979801178,-0.061247006058693],[-0.041052725166082,-0.050943277776241,-0.068185873329639],[-0.038106374442577,0.0048904353752732,-0.017216440290213]],[[-0.033508595079184,-0.023662688210607,-0.050289191305637],[-0.009900625795126,0.050254359841347,0.0669234842062],[0.025055285543203,-0.012892761267722,-0.043028030544519]],[[0.17801614105701,0.053395926952362,-0.024417798966169],[0.069452188909054,0.044139560312033,0.016527984291315],[0.037092629820108,0.085866414010525,0.074971586465836]],[[-0.070791564881802,0.061014041304588,0.045995518565178],[0.0083464793860912,-0.064331829547882,-0.044548310339451],[0.01365883462131,0.11607958376408,0.021894242614508]],[[-0.11528524011374,0.061910409480333,0.11965120583773],[0.02643177844584,0.076706983149052,0.0042608994990587],[-0.035977933555841,0.021155994385481,-0.077020019292831]],[[-0.031041122972965,0.078454740345478,0.11226622015238],[-0.034722223877907,0.04607318341732,0.1525255292654],[-0.061020962893963,0.060716036707163,0.11907050013542]],[[0.064217798411846,2.5630808522692e-05,-0.012121070176363],[-0.0072140302509069,-0.037190981209278,0.01396559830755],[0.09546584635973,0.046503219753504,-0.1421096175909]],[[0.052547998726368,0.042616542428732,-0.0049097659066319],[-0.036224957555532,0.030993124470115,0.040591195225716],[0.048522006720304,-0.057910643517971,-0.10973234474659]],[[0.029843226075172,-0.016394283622503,-0.12555193901062],[-0.0097478218376637,0.15481558442116,-0.095213308930397],[0.032717376947403,0.03086170181632,-0.019409466534853]],[[0.026705447584391,-0.020920081064105,-0.02829516120255],[-0.071640826761723,0.086151137948036,-0.11127153038979],[0.1479070186615,0.021361254155636,-0.035063989460468]],[[0.040570583194494,0.024997731670737,-0.030130656436086],[0.042022168636322,0.040681861341,-0.052896328270435],[0.0084429746493697,0.057273231446743,0.059955701231956]],[[0.094947397708893,0.091734506189823,-0.09743408113718],[-0.0010431702248752,0.004229683894664,-0.013923481106758],[-0.0049879718571901,0.0079483157023787,-0.056850366294384]],[[0.064114764332771,0.078474603593349,0.0859130397439],[0.11936888098717,0.02504007704556,0.062697909772396],[-0.081045135855675,-0.082398645579815,-0.068309530615807]],[[-0.011977508664131,-0.010770563967526,-0.089362628757954],[0.075925007462502,-0.030920032411814,-0.056605398654938],[0.029775429517031,0.050335500389338,0.16983918845654]],[[0.020680403336883,-0.043576404452324,0.041097864508629],[0.082047514617443,0.095261096954346,-0.041277755051851],[0.090902723371983,0.060205016285181,0.018719794228673]],[[-0.024863475933671,0.022788973525167,0.060888610780239],[0.079387500882149,0.04965865239501,-0.03383457288146],[-0.018446233123541,-0.019005935639143,0.014622702263296]],[[0.024422541260719,0.023796729743481,0.021863088011742],[-0.096019744873047,0.01156239118427,0.056960176676512],[0.061813049018383,-0.040121972560883,-0.030180608853698]],[[-0.056560803204775,-0.04484298825264,-0.06362921744585],[0.09102538228035,0.012887359596789,0.0040197726339102],[-0.12634804844856,-0.030431292951107,0.083122409880161]],[[-0.041316226124763,-0.0066867843270302,-0.0097487876191735],[0.056298945099115,0.014560774900019,0.0042534936219454],[0.17770971357822,-0.015525411814451,-0.042188227176666]],[[-0.027709826827049,-0.05953473597765,0.030052563175559],[-0.081823833286762,-0.045853178948164,-0.016114328056574],[0.0019508462864906,-0.054175831377506,-0.11770366877317]],[[0.077970117330551,0.030837340280414,0.032896958291531],[0.074325256049633,0.01121234241873,-0.089973665773869],[-0.060232315212488,-0.017342178151011,0.038305275142193]],[[0.023401251062751,0.029269505292177,-0.042608022689819],[-0.10208831727505,0.032383218407631,0.048079326748848],[-0.086262755095959,0.027487773448229,0.02744940109551]],[[-0.047022700309753,0.05720528960228,0.053292948752642],[-0.019302561879158,-0.017957320436835,0.063092015683651],[0.080090701580048,0.10430552810431,0.079840302467346]],[[0.055847886949778,-0.043305557221174,0.050453096628189],[-0.023534655570984,0.029066050425172,0.055643104016781],[0.034374248236418,0.073496200144291,0.0043393685482442]],[[-0.014688826166093,-0.10293664038181,0.080840930342674],[0.014607375487685,0.032153509557247,0.010065471753478],[-0.03785964101553,-0.0063117882236838,0.01438095793128]],[[0.038931075483561,0.046610046178102,0.046621214598417],[0.030351025983691,0.021739844232798,0.090723052620888],[0.069142609834671,-0.033390607684851,0.0042163943871856]],[[-0.0084876418113708,0.030053747817874,-0.064919680356979],[-0.02104059420526,0.13353230059147,-0.0090957656502724],[-0.08070096373558,0.0026155733503401,0.031946044415236]],[[0.035635411739349,-0.033926080912352,-0.11277202516794],[-0.097827218472958,0.074665293097496,0.060816638171673],[0.010287557728589,-0.029045598581433,0.088171169161797]],[[-0.10828225314617,-0.022513266652822,-0.036900263279676],[-0.03329573944211,-0.12627577781677,-0.073270782828331],[-0.052216999232769,0.11558403819799,-0.059881813824177]],[[0.033202186226845,-0.011015586555004,-0.10941710323095],[0.015861140564084,-0.034026082605124,0.063399791717529],[-0.039580371230841,0.018108015879989,0.002997926203534]],[[-0.040834706276655,0.11411882936954,0.071099810302258],[-0.040108021348715,-0.069044999778271,0.026042893528938],[0.022282980382442,-0.075163625180721,-0.0018015063833445]],[[0.031248340383172,-0.051030706614256,0.012881844304502],[-0.055588725954294,-0.021334201097488,-0.0041356105357409],[-0.090382404625416,-0.10809129476547,0.020566709339619]],[[-0.00791279040277,-0.069369733333588,0.0085060801357031],[0.065462537109852,0.11276765167713,0.02963912114501],[-0.020703684538603,0.0604636259377,-0.084652692079544]],[[-0.048157665878534,-0.052092269062996,0.019258508458734],[-0.02374305576086,0.011096521280706,0.17707945406437],[-0.042541269212961,0.067405924201012,-0.042614761739969]],[[-0.0046670851297677,-0.10536281019449,-0.14063842594624],[-0.069506853818893,-0.0057868803851306,0.061765719205141],[0.022827791050076,0.015345619060099,-0.092488706111908]],[[0.035311788320541,0.014545454643667,-0.073616780340672],[0.011431816034019,-0.061687182635069,0.069116115570068],[0.086076334118843,0.066293649375439,0.028522379696369]],[[-0.021786943078041,-0.045183729380369,0.0026677106507123],[-0.0027604412753135,-0.010765726678073,0.018587101250887],[0.016190979629755,-0.15366984903812,-0.038157004863024]],[[-0.061974737793207,-0.04339736700058,-0.026267647743225],[-0.041610430926085,-0.087348915636539,-0.0633544921875],[0.084975861012936,0.012945766560733,0.043393366038799]],[[-0.0082791512832046,-0.028519319370389,-0.0063457917422056],[-0.010875036008656,-0.039742235094309,-0.021225837990642],[-0.016248043626547,0.008781872689724,-0.043851144611835]],[[-0.011345515958965,0.055004190653563,-0.1136716157198],[0.027153415605426,-0.030870361253619,-0.11117347329855],[0.028715321794152,-0.0067362212575972,-0.017121931537986]],[[0.03862128034234,0.01869098097086,0.030595380812883],[-0.012930589728057,0.038398399949074,-0.10791891813278],[0.067221872508526,-0.0097466381266713,0.034673765301704]],[[0.0055264621041715,-0.053700629621744,0.08502484112978],[0.025994716212153,-0.016608340665698,0.0074450112879276],[0.03835416957736,-0.004251157399267,0.05675882846117]],[[-0.0036887135356665,0.07489337772131,0.039736561477184],[-0.013988518156111,0.099785506725311,-0.020757500082254],[-0.096654087305069,-0.018845064565539,0.081527680158615]],[[0.13258974254131,0.14633572101593,0.054561339318752],[-0.10515886545181,0.01734328083694,-0.016305703669786],[-0.021525748074055,-0.016198100522161,0.030079754069448]]],[[[-0.039454709738493,0.047185473144054,-0.021427996456623],[-0.047710534185171,-0.037620205432177,-0.12000238150358],[-0.051636926829815,0.048411518335342,0.1244550049305]],[[0.043817684054375,0.08690620213747,-0.19217963516712],[0.099097743630409,0.036458350718021,-0.060203425586224],[-0.019800197333097,-0.056935340166092,0.055804073810577]],[[0.099775239825249,0.10564479231834,0.1184448376298],[-0.036786913871765,0.0072167385369539,0.12090439349413],[-0.0033714652527124,0.062723010778427,-0.011645785532892]],[[0.24245245754719,-0.073280476033688,0.072953552007675],[-0.033370081335306,-0.21372105181217,-0.10372081398964],[0.11892078816891,0.033577278256416,-0.042988765984774]],[[0.033542413264513,-0.10022909939289,0.1041758954525],[0.12064742296934,-0.032219279557467,0.046378526836634],[0.08720688521862,0.035292960703373,-0.1871225386858]],[[0.077370569109917,0.028202751651406,-0.081657111644745],[0.073132507503033,0.16609248518944,-0.022200014442205],[-0.028478151187301,-0.061741299927235,-0.016157707199454]],[[-0.15175722539425,0.025421818718314,-0.15286175906658],[-0.0092145055532455,0.016550034284592,0.0056071486324072],[0.020551197230816,-0.012465330772102,0.11252062767744]],[[0.080482371151447,-0.051817715167999,-0.046979546546936],[0.11257196217775,0.0071943351067603,0.068672671914101],[0.073992624878883,0.13069966435432,-0.023793742060661]],[[-0.21178694069386,-0.17229177057743,0.14161598682404],[-0.075928382575512,-0.043758723884821,-0.20678336918354],[0.073505878448486,0.077013865113258,0.029656782746315]],[[0.062926732003689,-0.030130071565509,0.089259631931782],[-0.10647720843554,-0.010040833614767,-0.043968006968498],[0.24912576377392,0.065944395959377,0.023532891646028]],[[0.044563859701157,-0.099103376269341,-0.041780892759562],[0.088024005293846,-0.03441459313035,-0.089369744062424],[-0.061027593910694,0.014038161374629,-0.017291244119406]],[[-0.16855652630329,0.076798722147942,0.10941058397293],[0.1253314614296,0.040216531604528,-0.19713400304317],[-0.062878958880901,0.0006276480271481,-0.0064025488682091]],[[0.15543402731419,0.20193855464458,0.16995075345039],[-0.089846566319466,0.013597154989839,0.15201273560524],[0.10660503804684,0.065370440483093,-0.051779754459858]],[[-0.0089587103575468,-0.19656050205231,-0.12239882349968],[0.042446151375771,0.086495146155357,0.13139383494854],[0.1102748811245,0.012719440273941,-0.051847904920578]],[[0.12132945656776,-0.1138671413064,-0.073349729180336],[0.024970751255751,0.023355398327112,-0.14613130688667],[0.004011619836092,0.010707915760577,-0.033432349562645]],[[0.034472450613976,0.13647238910198,-0.14714688062668],[0.053463350981474,0.02409203350544,0.22167843580246],[-0.089504852890968,-0.051251411437988,-0.11050639301538]],[[-0.13914704322815,-0.14041012525558,0.10924585908651],[-0.01603159494698,-0.083988405764103,0.13252045214176],[0.034446854144335,0.090297840535641,0.029563760384917]],[[0.014920001849532,0.017422754317522,0.12519980967045],[-0.085888773202896,0.062004316598177,0.0010838507441804],[-0.2095155864954,0.11652966588736,-0.012556789442897]],[[-0.18177792429924,0.10417956858873,0.08817146718502],[0.009164840914309,0.0074360962025821,0.098488859832287],[-0.048512980341911,0.0026654261164367,0.040100276470184]],[[-0.014568922109902,0.075688689947128,0.10071184486151],[-0.025436367839575,0.094382084906101,0.11953271180391],[-0.064486443996429,0.021309856325388,-0.10049226880074]],[[0.098698116838932,0.008718709461391,-0.065119870007038],[0.050046816468239,0.091811656951904,0.11486224830151],[-0.089243575930595,-0.083864979445934,-0.13734140992165]],[[-0.080635637044907,-0.063123613595963,0.14591439068317],[-0.038066100329161,-0.052423615008593,0.074335604906082],[-0.27636313438416,-0.14993196725845,0.030167806893587]],[[0.09432003647089,-0.02208062261343,0.0042698658071458],[-0.008433761075139,0.050083547830582,-0.052004706114531],[0.011801075190306,0.0082927057519555,-0.19488826394081]],[[-0.0034865087363869,-0.036727927625179,0.11333338171244],[-0.011560249142349,-0.053466539829969,0.038962591439486],[-0.074233375489712,-0.17642068862915,-0.17957462370396]],[[0.010035115294158,-0.061986975371838,-0.086044557392597],[-0.035622335970402,-0.13207377493382,-0.12247026711702],[-0.12994301319122,-0.055611453950405,-0.086702242493629]],[[-0.090321399271488,-0.23375695943832,-0.32911002635956],[-0.015770297497511,-0.121332205832,-0.095864921808243],[0.04865338280797,0.15411496162415,0.14734245836735]],[[0.06055161729455,-0.039187379181385,0.044249460101128],[-0.044469445943832,0.020069424062967,-0.22669564187527],[-0.031492877751589,0.10978776216507,0.15378415584564]],[[0.040220577269793,-0.051844667643309,-0.013241298496723],[-0.019643742591143,0.044096596539021,-0.059961717575788],[-0.10034224390984,-0.09600905328989,0.12494643777609]],[[0.0072646262124181,0.072517514228821,0.036249693483114],[0.052602559328079,0.10766054689884,0.094067625701427],[-0.064521156251431,-0.017633555456996,0.099390164017677]],[[-0.10008081793785,-0.29165256023407,0.073760487139225],[-0.043115843087435,0.14536170661449,-0.15423360466957],[0.064879760146141,-0.10021954774857,-0.011985655874014]],[[0.16256602108479,0.0058985720388591,-0.063966386020184],[0.094151251018047,0.090589813888073,-0.03660786896944],[-0.062070604413748,0.10774495452642,0.091284111142159]],[[0.015258120372891,-0.022630358114839,-0.0052700573578477],[-0.042097583413124,-0.099938362836838,-0.027270814403892],[0.0045877173542976,-0.017807289958,0.0024098306894302]],[[0.10056152194738,0.073282860219479,-0.11941014975309],[0.035498015582561,0.18008325994015,0.024186860769987],[-0.01335970684886,0.047856360673904,0.01022019982338]],[[0.0061666439287364,0.054390195757151,-0.017219372093678],[-0.15014374256134,-0.086588002741337,-0.12445452809334],[-0.023375606164336,0.13142375648022,0.025659523904324]],[[-0.18680669367313,-0.13056011497974,-0.32913193106651],[-0.044146209955215,-0.10122758150101,-0.10676600784063],[0.20085720717907,0.14428070187569,0.11667074263096]],[[0.20729805529118,0.0044942907989025,-0.16329424083233],[0.073282063007355,0.082042507827282,-0.13570725917816],[-0.034995935857296,-0.041192498058081,0.13545928895473]],[[0.04906116053462,-0.014187946915627,-0.14929017424583],[0.079182714223862,0.11164509505033,-0.027848102152348],[0.037850987166166,0.008573860861361,-0.079619169235229]],[[0.033946100622416,-0.02653993293643,0.015887685120106],[-0.01471580658108,0.083974353969097,-0.044680148363113],[-0.024081086739898,0.015583976171911,0.0049283090047538]],[[-0.053145453333855,0.051264852285385,-0.0096342694014311],[0.088197991251945,-0.33633148670197,0.16904029250145],[-0.032946974039078,-0.022866953164339,0.0065557220950723]],[[-0.079078413546085,-0.092779010534286,-0.16560220718384],[0.064097039401531,-0.018558323383331,-0.094504155218601],[-0.0160594265908,-0.0057507529854774,0.20065774023533]],[[-0.061326254159212,0.0038333290722221,0.032937254756689],[-0.11768613755703,0.22329841554165,-0.053023256361485],[-0.060662847012281,0.085793599486351,-0.035030737519264]],[[0.069664247334003,0.027344569563866,-0.031160300597548],[0.036426842212677,-0.046372357755899,0.044579058885574],[-0.15425427258015,-0.11392851918936,-0.070867575705051]],[[0.027168292552233,0.1568556278944,-0.13230049610138],[0.073979787528515,0.058520376682281,0.040491081774235],[-0.05074717104435,0.13873234391212,0.027752280235291]],[[-0.125348970294,-0.14088520407677,-0.13976383209229],[0.023652222007513,0.045241948217154,0.048589870333672],[0.056691966950893,0.055756874382496,0.040391515940428]],[[-0.1926117837429,-0.25713166594505,0.042359974235296],[-0.068674467504025,-0.05297565087676,-0.16598288714886],[-0.083703823387623,0.0034683868288994,-0.037645820528269]],[[-0.039495475590229,-0.0010521815856919,0.083012543618679],[0.13637107610703,-0.026165163144469,0.019653657451272],[-0.019160008057952,0.060203328728676,-0.0033788671717048]],[[-0.14215442538261,-0.12245715409517,-0.070724599063396],[-0.10923387855291,-0.21985051035881,-0.073288694024086],[-0.29180330038071,-0.27639156579971,0.06963112950325]],[[0.1046257764101,0.18578612804413,0.057933013886213],[0.080449432134628,0.031078360974789,0.059413507580757],[0.036824017763138,0.056455515325069,0.035617463290691]],[[-0.00049207493430004,0.10037294775248,-0.20574945211411],[-0.08780075609684,0.024023024365306,-0.15731091797352],[-0.09585840255022,-0.02356811799109,-0.018777702003717]],[[0.057574927806854,-0.036661218851805,-0.22872713208199],[0.050392422825098,0.022416722029448,0.047347594052553],[0.074076183140278,0.016262086108327,0.037891693413258]],[[-0.0041334549896419,0.025722768157721,-0.040995575487614],[-0.0102235712111,-0.0044415723532438,0.13845856487751],[-0.073805600404739,-0.0049141985364258,0.1594276279211]],[[0.048552315682173,-0.090471938252449,-0.037474572658539],[-0.016173092648387,-0.025151286274195,-0.12482294440269],[0.0019870228134096,0.010688913986087,-0.0025822424795479]],[[-0.049600105732679,-0.05521022900939,-0.15529181063175],[-0.069766223430634,-0.089350581169128,-0.066200517117977],[0.078406974673271,-0.01815951988101,0.0495365858078]],[[-0.11166418343782,0.125991538167,0.068436473608017],[-0.0073710749857128,0.035134769976139,-0.04490115866065],[0.13890907168388,0.049517501145601,0.0040969671681523]],[[-0.035616278648376,0.060917261987925,0.14164350926876],[0.023814240470529,0.16101975739002,-0.061507642269135],[-0.045720040798187,-0.051601443439722,0.036241009831429]],[[0.14520336687565,0.099546000361443,0.013516814447939],[0.075728736817837,0.07779723405838,0.092004127800465],[-0.15582105517387,-0.12976856529713,0.015355662442744]],[[-0.059492982923985,0.01383422408253,-0.17450399696827],[0.0064167366363108,0.068737603724003,-0.13232913613319],[-0.07694797962904,-0.11268642544746,-0.016333974897861]],[[0.0075256139971316,0.03322321549058,-0.070764265954494],[-0.13249008357525,-0.12098517268896,0.00067806558217853],[0.0072678718715906,0.1542854309082,0.12828692793846]],[[-0.2360347956419,-0.1911750882864,-0.11661493033171],[0.13051567971706,0.13613574206829,-0.01942921616137],[-0.087701141834259,-0.009027804248035,-0.015391605906188]],[[0.029578022658825,0.034261576831341,-0.010441171936691],[-0.15022592246532,0.1202819570899,-0.0013370445230976],[-0.13935616612434,-0.093671776354313,0.013202441856265]],[[0.057522337883711,-0.024237871170044,-0.1521125882864],[0.067220233380795,-0.021127155050635,-0.094173334538937],[-0.11015868932009,-0.28016740083694,-0.2623108625412]],[[0.0095628201961517,0.049660943448544,-0.1521127820015],[-0.063090972602367,0.027824802324176,0.053161848336458],[-0.034550167620182,-0.0069567393511534,0.11590576171875]],[[0.16891621053219,0.045327253639698,0.16470110416412],[0.17997118830681,0.20463678240776,0.21647526323795],[0.019037799909711,0.11605281382799,0.24398516118526]],[[0.13239367306232,-0.030845433473587,-0.14788445830345],[-0.061263788491488,-0.00066392251756042,0.037263263016939],[-0.084379911422729,-0.18614289164543,-0.16707280278206]],[[-0.095814935863018,-0.076765961945057,0.11267846077681],[0.076115861535072,-0.048782180994749,-0.022174187004566],[0.03964177146554,0.030307011678815,-0.0027991244569421]],[[-0.053367488086224,-0.019937330856919,0.31844621896744],[-0.043116547167301,-0.005680569447577,-0.043705981224775],[-0.070422321557999,-0.12228484451771,0.16987660527229]],[[0.12611317634583,0.067138023674488,0.17267127335072],[0.12134064733982,-0.027169117704034,-0.023574493825436],[0.033771544694901,-0.036103963851929,0.039914522320032]],[[-0.046873364597559,0.082212515175343,-0.012689240276814],[-0.036229372024536,0.049988228827715,0.1271820962429],[0.091301195323467,0.00067273061722517,-0.024694141000509]],[[0.13737854361534,0.037831228226423,0.026277711614966],[0.061996325850487,-0.070134721696377,-0.15544472634792],[-0.11636655032635,0.045457482337952,0.039158206433058]],[[0.10692451894283,-0.025473099201918,-0.10797172784805],[-0.18514077365398,0.07132151722908,-0.11837073415518],[-0.076195366680622,-0.037730101495981,0.24676208198071]],[[-0.07877954095602,0.044952683150768,0.092650286853313],[-0.051440604031086,-0.12932734191418,-0.033503543585539],[-0.0564901009202,0.043905533850193,0.024356123059988]],[[0.014355600811541,-0.13962748646736,0.14643153548241],[-0.11894097179174,-0.13369597494602,-0.029148511588573],[0.057419143617153,-0.031611602753401,-0.0032314988784492]],[[0.023005640134215,0.13817875087261,-0.0099981194362044],[-0.02194993570447,0.2495854049921,0.043710712343454],[-0.084734231233597,0.055405411869287,0.04840411990881]],[[-0.034019827842712,-0.0027738909702748,-0.041170790791512],[-0.055824711918831,-0.040842935442924,0.17774100601673],[0.10539445281029,0.034839201718569,-0.12607084214687]],[[-0.012594319880009,-0.081928446888924,-0.15351615846157],[-0.31035751104355,-0.35218560695648,-0.26814761757851],[-0.085412308573723,-0.13317140936852,0.0074898172169924]],[[0.024678939953446,0.087997868657112,0.083457447588444],[-0.041013296693563,0.067882470786572,0.25364911556244],[-0.014178873971105,-0.080709032714367,0.007674116641283]],[[0.15127508342266,0.14495927095413,0.086143225431442],[0.041287135332823,0.20044898986816,0.049197174608707],[-0.0022066335659474,0.12025730311871,0.29587164521217]],[[0.037410274147987,-0.10198368132114,-0.050366193056107],[0.076538525521755,0.060882266610861,0.11601474881172],[-0.28723043203354,0.076351352035999,-0.011101990006864]],[[0.004641710780561,0.049749542027712,0.038201417773962],[-0.13821676373482,0.079560406506062,0.017597407102585],[-0.017973262816668,0.027814719825983,0.030240198597312]],[[0.05079310759902,0.026410512626171,-0.15609265863895],[0.031963981688023,-0.050202921032906,0.030379926785827],[0.020370671525598,-0.13595432043076,-0.037189297378063]],[[-0.13213196396828,0.055145397782326,0.0016219913959503],[-0.041804615408182,-0.051049768924713,-0.10870049893856],[0.034676320850849,0.066503256559372,-0.098560556769371]],[[0.035717599093914,0.13441382348537,0.26701313257217],[0.047942396253347,0.081977382302284,0.068344324827194],[0.048995446413755,0.16973340511322,0.17293672263622]],[[0.044148206710815,0.098688378930092,0.05451250821352],[0.039558064192533,-0.011530060321093,-0.042786240577698],[-0.057297430932522,-0.2187629789114,-0.12649050354958]],[[0.0065937908366323,0.0048678917810321,-0.04638247936964],[0.13253073394299,-0.067675553262234,-0.063729397952557],[0.016331154853106,0.07908883690834,-0.014007077552378]],[[-0.21510437130928,-0.123142182827,-0.050643127411604],[0.035053174942732,0.050052560865879,0.080713145434856],[0.10906886309385,0.031864877790213,-0.12875904142857]],[[0.083668798208237,0.075163595378399,0.066378220915794],[0.012737176381052,0.071375340223312,-0.13829851150513],[-0.1021831035614,-0.0042726364918053,-0.11026740819216]],[[0.16120314598083,0.052626326680183,0.076191373169422],[0.097091540694237,-0.018365692347288,0.07622455060482],[-0.030355013906956,-0.008396646939218,0.046739496290684]],[[0.21723879873753,-0.016171908006072,0.121128693223],[-0.0038138278760016,0.01700459048152,0.028067994862795],[0.11198704689741,0.13155317306519,-0.13863590359688]],[[-0.024453802034259,-0.20914606750011,-0.1738278567791],[-0.081118114292622,-0.14448374509811,0.035084415227175],[-0.10816561430693,-0.11630206555128,0.091796942055225]],[[0.05726296454668,-0.041220031678677,-0.13959141075611],[0.021915765479207,-0.10543482005596,-0.11915469169617],[-0.10871823877096,-0.01902861520648,0.011778677813709]],[[0.20102502405643,0.11696104705334,-0.069341666996479],[0.12124717980623,0.047088708728552,0.058858301490545],[0.051928244531155,0.086352743208408,-0.089434631168842]],[[0.070604734122753,-0.1008195951581,-0.01620277762413],[0.038529753684998,0.093033000826836,0.06703744828701],[0.0039972341619432,-0.02319560572505,-0.068246200680733]],[[0.13814653456211,0.10870691388845,0.081249453127384],[0.083222016692162,0.088029265403748,-0.16825443506241],[-0.063270337879658,-0.284648001194,-0.078661553561687]],[[0.031933907419443,0.11279577761889,0.20581017434597],[0.067949518561363,0.050412110984325,-0.04515391215682],[0.15927930176258,-0.071159079670906,0.051545958966017]],[[-0.11589904874563,-0.11669411510229,0.070662707090378],[0.024414172396064,-0.016780896112323,-0.20744933187962],[0.10469588637352,-0.084609545767307,-0.1651651263237]],[[0.12224707007408,0.13220861554146,0.046727858483791],[-0.17643094062805,-0.11015895009041,0.12026181817055],[0.09759782999754,-0.0043159457854927,0.017842249944806]],[[0.1253369897604,0.10394944995642,0.050611138343811],[0.032051026821136,-0.0037050219252706,0.092547528445721],[-0.054602723568678,0.035516507923603,-0.069753803312778]],[[0.061683498322964,0.081528648734093,0.13091260194778],[0.042530044913292,0.09590819478035,-0.038239900022745],[-0.1138426810503,0.12870009243488,0.17077913880348]],[[-0.043533768504858,0.085634313523769,0.086038134992123],[-0.093894459307194,-0.081500127911568,-0.058986093848944],[-0.024327952414751,-0.072522327303886,0.079540722072124]],[[0.074673049151897,-0.031612932682037,-0.0024009626358747],[-0.089738786220551,-0.054009843617678,0.0010503571247682],[-0.062445856630802,-0.053797237575054,-0.12740862369537]],[[0.021391762420535,-0.087258584797382,0.110396489501],[0.015509910881519,0.17752867937088,0.042168457061052],[-0.012427939102054,0.071183979511261,0.085964538156986]],[[-0.10551488399506,0.029233606532216,-0.034263528883457],[0.12138193100691,0.017051389440894,-0.1667413264513],[-0.078532218933105,-0.11906193941832,0.23821827769279]],[[-0.05798526480794,0.14586260914803,0.18425688147545],[0.0046081035397947,0.17633767426014,-0.093181602656841],[-0.12407110631466,-0.077392376959324,-0.06892841309309]],[[0.095618657767773,0.099864237010479,-0.0044465870596468],[-0.036499459296465,-0.093368344008923,-0.24340461194515],[-0.041521709412336,-0.0060175820253789,-0.0090224118903279]],[[-0.13741809129715,-0.067450530827045,-0.012391407974064],[-0.01416913792491,-0.10072485357523,0.017198896035552],[-0.003969082608819,0.029508948326111,0.14774206280708]],[[-0.035711891949177,0.096511892974377,-0.085199870169163],[0.17519484460354,0.0810836404562,0.026779485866427],[0.049487438052893,0.07972090691328,0.05967665836215]],[[-0.036440141499043,-0.075480081140995,-0.05000277236104],[0.012674323283136,0.10899818688631,0.099752351641655],[0.071645177900791,0.055719379335642,0.075359329581261]],[[0.019646737724543,0.12218755483627,-0.13176041841507],[-0.052152872085571,0.020616693422198,0.049396224319935],[-0.14443016052246,0.11604212969542,-0.026830565184355]],[[-0.22860339283943,-0.023812675848603,-0.09172748029232],[-0.020993553102016,-0.04583552479744,0.16299366950989],[0.10375193506479,-0.029036901891232,0.031692858785391]],[[0.026194496080279,-0.0034524679649621,-0.097378924489021],[0.012698658742011,0.027085475623608,-0.0576709844172],[0.043445114046335,0.044271558523178,-0.024254094809294]],[[0.090478487312794,0.10630820691586,0.028947284445167],[-0.037397503852844,-0.06493653357029,-0.07933747023344],[-0.057643059641123,-0.040842797607183,-0.012754258699715]],[[-0.19452980160713,-0.15187032520771,-0.021164525300264],[0.054510399699211,0.03816831856966,-0.22412601113319],[-0.0099667441099882,0.049799367785454,0.20393447577953]],[[-0.0068779271095991,-0.010647999122739,-0.06179866194725],[0.12905895709991,-0.087871439754963,-0.10061259567738],[0.032950893044472,0.046411916613579,0.080175146460533]],[[0.13686873018742,0.10490427911282,-0.180459856987],[0.015636004507542,-0.11156883835793,-0.0074107353575528],[0.10786245763302,-0.014137633144855,-0.0066664526239038]],[[0.046919640153646,-0.042314697057009,-0.10004986077547],[0.04862155020237,-0.059372145682573,0.083228006958961],[-0.009324349462986,-0.12339478731155,-0.03220209851861]],[[-0.065430119633675,-0.11325085908175,0.13090804219246],[-0.017822006717324,0.06975094974041,0.18537297844887],[-0.088885799050331,-0.087162613868713,0.026008915156126]],[[-0.055702619254589,-0.065975360572338,-0.023297537118196],[-0.13716143369675,-0.14871363341808,-0.16031920909882],[0.088881142437458,0.11292597651482,0.17767319083214]],[[-0.0024502801243216,0.0010884518269449,0.15111434459686],[0.020668430253863,-0.15400186181068,-0.043306969106197],[-0.097485452890396,0.13874027132988,-0.036389224231243]],[[0.074399322271347,0.03496452793479,0.18831875920296],[-0.063969686627388,-0.076748564839363,-0.11079479008913],[-0.00075443973764777,0.049701992422342,-0.06962475925684]],[[-0.01838468760252,0.074613764882088,-0.072336800396442],[0.034519471228123,0.092791199684143,0.11308594793081],[-0.084878876805305,0.1403356641531,0.019625188782811]],[[0.087177991867065,-0.11974766105413,-0.025935681536794],[-0.043715242296457,-0.11377234756947,-0.069593206048012],[0.01466685347259,-0.012420455925167,-0.0053688543848693]],[[-0.035122502595186,-0.077914908528328,0.029032930731773],[-0.049373511224985,0.08307359367609,0.20178313553333],[-0.004602191504091,-0.25252914428711,-0.12651906907558]],[[0.045127805322409,-0.07774318754673,-0.12105828523636],[0.020047158002853,-0.097848631441593,-0.10456639528275],[0.003506506793201,0.023930877447128,-0.066399455070496]],[[-0.11772501468658,-0.041239243000746,-0.004599672742188],[0.11626373231411,0.0477649345994,-0.062247049063444],[0.12207743525505,0.12414093315601,-0.057335056364536]],[[-0.086930967867374,0.035420462489128,-0.036469217389822],[0.023686537519097,0.091673158109188,0.24744817614555],[-0.0059412466362119,-0.0046161985956132,0.053826238960028]],[[0.054843578487635,-0.063862696290016,-0.0086866235360503],[-0.032098386436701,0.085857093334198,-0.047322876751423],[-0.054534003138542,0.030471049249172,-0.081599935889244]],[[-0.04623107612133,-0.1047548353672,0.03087866678834],[0.063816644251347,0.088386885821819,-0.011521563865244],[-0.076781235635281,-0.049409490078688,-0.1002883836627]],[[0.0012395060621202,0.13019751012325,0.093651384115219],[0.066661216318607,0.071358785033226,0.091581739485264],[0.042292971163988,0.0090183801949024,0.071261122822762]]],[[[-0.043265391141176,-0.10646849870682,-0.071066074073315],[-0.03768365085125,-0.07880961894989,0.021873377263546],[-0.017423802986741,-0.010536518879235,-0.0083658965304494]],[[-0.058606889098883,-0.019979866221547,0.012208323925734],[-0.016832027584314,-0.0025444901548326,0.029160985723138],[0.033464808017015,-0.030050853267312,-0.055128067731857]],[[-0.047067355364561,0.021621817722917,0.026031592860818],[0.017412696033716,-0.067032642662525,-0.028116434812546],[0.021137796342373,0.029427221044898,-0.019617963582277]],[[-0.049379535019398,0.050086047500372,0.075907401740551],[-0.0038686292245984,-0.010326788760722,0.020187076181173],[-0.021563339978456,0.044508885592222,-0.0034094760194421]],[[0.0026844863314182,0.026275150477886,0.040174145251513],[-0.035136613994837,0.0062616220675409,-0.038994878530502],[-0.018486138433218,-0.018869752064347,0.0072551472112536]],[[-0.013668403960764,-0.050879653543234,0.090008072555065],[-0.020638894289732,0.038967896252871,-0.020876163616776],[-0.0086248312145472,-0.022978819906712,-0.006353163626045]],[[0.024724077433348,0.077334336936474,0.0064854333177209],[-0.0062422957271338,0.052983593195677,-0.0037278437521309],[-0.050287343561649,0.040359262377024,-0.067081943154335]],[[-0.023167572915554,0.025472775101662,0.013214753009379],[0.036366656422615,0.033263418823481,0.0025669541209936],[0.068719208240509,0.092315450310707,0.0057494160719216]],[[0.048093345016241,0.044705659151077,0.039487138390541],[-0.053619101643562,0.04740959405899,0.0021420726552606],[-0.018282983452082,-0.036070469766855,-0.008788226172328]],[[-0.055057138204575,-0.0018888300983235,0.0042819124646485],[0.049485504627228,-0.06930536031723,-0.013958264142275],[-0.0036507151089609,0.060287334024906,-0.023811651393771]],[[-0.0023049041628838,-0.0046075568534434,-0.015554087236524],[-0.054856069386005,0.010229484178126,0.0065844240598381],[0.0065848063677549,0.004044882953167,0.027810288593173]],[[-0.065923273563385,0.056342553347349,-0.054396659135818],[-0.011481617577374,-0.074855662882328,0.0021204191725701],[0.019626956433058,-0.050704255700111,0.061477769166231]],[[-0.074214197695255,0.032694634050131,0.052609767764807],[0.059176079928875,-0.10124040395021,-0.021379249170423],[-0.0089854514226317,-0.0068942690268159,0.0048631145618856]],[[0.049553751945496,0.0288788639009,-0.059758760035038],[0.029039198532701,-0.013717315159738,0.016142591834068],[-0.050630364567041,-0.020713772624731,-0.022881945595145]],[[-0.0042993538081646,0.034199327230453,0.0546003729105],[-0.014050816185772,0.03666415810585,-0.028888689354062],[-0.040679302066565,0.019599420949817,0.04495495185256]],[[-0.048675179481506,-0.0049031660892069,-0.018674602732062],[-0.061822861433029,-0.020697187632322,-0.035469934344292],[-0.070150747895241,0.043798144906759,0.0087193595245481]],[[-0.023199617862701,0.043235711753368,0.059904389083385],[-0.01974831148982,0.065185479819775,-0.017776906490326],[-0.013827948831022,-0.069019250571728,0.04925674572587]],[[0.0099356053397059,0.050916213542223,-0.038177967071533],[0.097410589456558,-0.024790378287435,-0.0069924723356962],[-0.048291396349669,0.068032041192055,-0.043480463325977]],[[-0.022507870569825,-0.014587783254683,-0.050594832748175],[-0.0327651463449,-0.015107786282897,0.033911917358637],[-0.087649196386337,0.01349987834692,0.060500152409077]],[[-0.045166030526161,0.017008578404784,-0.097597263753414],[0.044410277158022,0.020767891779542,0.027365114539862],[0.043453577905893,-0.0038884959649295,0.053400386124849]],[[-0.013316528871655,0.02111523412168,-0.041333381086588],[0.0020289733074605,-0.032251920551062,-0.040298886597157],[0.021085418760777,-0.10002283751965,0.0027033928781748]],[[0.040189281105995,-0.070378191769123,-0.01800075173378],[-0.075905680656433,-0.083864264190197,-0.019499046728015],[0.079802885651588,0.078433848917484,-0.046218249946833]],[[-0.015741040930152,0.046561233699322,-0.0091431485489011],[-0.087975673377514,-0.039425440132618,-0.002051203045994],[-0.04425336048007,-0.02021511271596,0.028316508978605]],[[0.014121258631349,0.0066820909269154,0.026211166754365],[0.0097640445455909,-0.013432871550322,0.018146039918065],[-0.022748451679945,0.03139316290617,-0.010990126989782]],[[-0.044925186783075,-0.064130701124668,-0.034003335982561],[0.018234439194202,-0.023934399709105,0.099186837673187],[0.054092761129141,-0.021808447316289,0.0011332612484694]],[[-0.051545366644859,0.019536502659321,0.00011146103497595],[0.017372794449329,0.066656149923801,0.029034836217761],[-0.061413705348969,0.03562119230628,0.054145433008671]],[[0.0046837613917887,-0.037559363991022,-0.024069664999843],[0.0049318834207952,0.035923540592194,0.083446152508259],[-0.045526824891567,-0.027665523812175,0.0060178027488291]],[[0.039777297526598,-0.0050490135326982,-0.045025110244751],[0.013321852311492,-0.046869438141584,-0.025029361248016],[0.086884170770645,0.048049174249172,0.10289650410414]],[[-0.024785170331597,0.0024558738805354,-0.031538810580969],[-0.027160121127963,0.045915104448795,0.11340510845184],[-0.13272452354431,-0.045331954956055,-0.0065917619504035]],[[-0.0057779927738011,-0.035643130540848,0.016573211178184],[-0.024415479972959,-0.045837204903364,-0.0076983189210296],[-0.030296308919787,0.034565627574921,0.021388353779912]],[[-0.0012345802970231,-0.044664591550827,-0.017055187374353],[0.001888029044494,-0.00056086044060066,-0.04094024002552],[0.029798990115523,0.025790818035603,0.035293783992529]],[[-0.010065408423543,-0.089003279805183,0.042313054203987],[0.021523619070649,-0.031223250553012,0.10909119993448],[-0.033904351294041,0.014313086867332,-0.055257502943277]],[[0.0030320612713695,-0.0010520077776164,-0.0018218937329948],[0.045061133801937,-0.027138043195009,-0.021263925358653],[-0.070651561021805,-0.034251838922501,0.033973440527916]],[[0.073965683579445,-0.027901846915483,-0.02070970274508],[-0.0098710050806403,0.075824245810509,0.052478596568108],[-0.028582001104951,0.0054379622451961,-0.031564224511385]],[[-0.041702121496201,-0.01646126806736,-0.096441954374313],[0.063334964215755,0.0058896909467876,-0.091230683028698],[-0.052762150764465,0.020131800323725,-0.0053619421087205]],[[0.049614317715168,0.083052925765514,0.0034634973853827],[-0.042042307555676,0.0070311287418008,-0.063173368573189],[-0.040485873818398,-0.0070594209246337,-0.021974619477987]],[[0.0035422842483968,-0.0040475837886333,0.0042079212144017],[-0.060740161687136,-0.088696666061878,-0.0063751460984349],[-0.097726568579674,0.050495319068432,-0.0025737744290382]],[[0.0034630473237485,-0.0100690536201,-0.028809826821089],[-0.10366635024548,0.026444990187883,0.039469618350267],[0.034788150340319,0.014109403826296,0.026022264733911]],[[-0.063684798777103,-0.065912164747715,0.006157748401165],[0.058509606868029,-0.060249093919992,-0.080327942967415],[-0.032566417008638,-0.03038826584816,0.0035716460552067]],[[-0.020109904929996,-0.017691029235721,0.018771849572659],[0.0076279495842755,0.01840541139245,-0.10555274784565],[-0.019730938598514,0.015818458050489,0.052800644189119]],[[-0.01006905734539,0.014431469142437,-0.040192425251007],[0.0025296623352915,-0.023462848737836,0.026626816019416],[-0.019601495936513,-0.026246273890138,0.084328897297382]],[[-0.012037573382258,-0.035249948501587,-0.072859033942223],[0.0096467733383179,0.013715552166104,0.010823091492057],[0.055989809334278,0.020580172538757,0.054129112511873]],[[0.0042049493640661,-0.0098077598959208,0.045991972088814],[-0.0069719096645713,-0.030807215720415,-0.01872324757278],[0.0075327097438276,0.036826491355896,-0.034061718732119]],[[-0.035480238497257,-0.052242163568735,-0.076536491513252],[-0.033445451408625,-0.060501538217068,0.044708050787449],[-0.14499405026436,-0.067231312394142,-0.020769549533725]],[[0.014869228005409,-0.089602418243885,0.0061663915403187],[-0.046584226191044,0.023692615330219,-0.0028500000480562],[0.028105493634939,-0.052919130772352,-0.018512712791562]],[[0.0074523612856865,-0.0075753591954708,0.037606317549944],[0.096619106829166,-0.030407490208745,0.019025141373277],[-0.001483365893364,0.068283371627331,-0.056656815111637]],[[0.027378115803003,0.0017662786412984,-0.053938921540976],[0.013164324685931,0.025360360741615,-0.04478107765317],[-0.013249540701509,0.034273002296686,0.038778305053711]],[[-0.0045127794146538,-0.0015899335267022,0.024458913132548],[-0.09426411986351,-0.011564840562642,0.12269352376461],[-0.014836040325463,-0.090284578502178,-0.060751240700483]],[[0.053433936089277,-0.067400045692921,0.017859764397144],[-0.083745636045933,0.061951514333487,0.043750856071711],[0.014586956240237,0.018367186188698,-0.017645357176661]],[[-0.0032307943329215,0.035105563700199,0.011173989623785],[0.033531457185745,0.0053478027693927,-0.014133778400719],[0.02248271368444,0.0010557563509792,0.0049766809679568]],[[-0.0014057394582778,0.029024619609118,0.032476872205734],[0.060645639896393,-0.033488988876343,0.1000727340579],[0.033185351639986,-0.013295347802341,0.036881592124701]],[[0.07035144418478,0.001357096596621,-0.056158982217312],[-0.024062164127827,0.028332429006696,0.036608010530472],[-0.013825765810907,-0.042102593928576,-0.11572755873203]],[[-0.020395005121827,-0.051097612828016,-0.027044339105487],[-0.039810255169868,0.018674002960324,0.025029107928276],[-0.028253739699721,0.00040896364953369,0.04342982545495]],[[-0.0095160901546478,-0.062738217413425,0.051070485264063],[-0.091600008308887,-0.067598193883896,0.00078946439316496],[-0.015182076953351,0.024349804967642,-0.037332318723202]],[[-0.023183204233646,-0.015331869013608,-0.064990125596523],[0.032623764127493,0.0084456084296107,0.0064321849495173],[-0.0025782373268157,-0.020898597314954,0.089390389621258]],[[-0.015606636181474,-0.029666412621737,0.030436046421528],[-0.025975748896599,-0.020573165267706,0.010207379236817],[-0.035135477781296,0.063816137611866,-0.046265576034784]],[[-0.0016372617101297,-0.0248705111444,0.068017363548279],[-0.0256313290447,-0.053708732128143,-0.023398807272315],[0.0096162920817733,-0.016507662832737,0.021083939820528]],[[-0.054496455937624,0.041683372110128,-0.041310980916023],[0.1122517362237,-0.030119817703962,0.0081548914313316],[0.016864124685526,0.018508752807975,0.026552928611636]],[[-0.045187622308731,0.024657303467393,0.004908848553896],[0.0051403674297035,-0.011179084889591,-0.037905924022198],[0.010535212233663,-0.012254854664207,0.0094485441222787]],[[-0.028951505199075,0.056767750531435,-0.033348761498928],[-0.048148836940527,0.017570991069078,-0.016680693253875],[0.0013173118932173,-0.016452748328447,0.028050636872649]],[[0.044513497501612,-0.032342128455639,-0.038032557815313],[0.030108714476228,-0.0045849941670895,-0.014782797545195],[-0.066097907721996,-0.036235351115465,0.0066179023124278]],[[0.041529279202223,-0.019041428342462,0.031622741371393],[0.017664039507508,-0.032599486410618,-0.0254265666008],[0.018738120794296,-0.066569052636623,0.018914187327027]],[[0.031595148146152,-0.060108438134193,-0.0079343430697918],[0.05005007982254,0.045584991574287,0.026556104421616],[-0.0053350459784269,-0.00054971058852971,0.027309915050864]],[[0.046290654689074,-0.026960805058479,0.066806741058826],[0.048827685415745,-0.058191440999508,0.081683270633221],[-0.01856336556375,-0.010861267335713,0.056266259402037]],[[-0.035874858498573,-0.052544958889484,0.0029628393240273],[0.035089295357466,-0.044511627405882,0.024649485945702],[-0.036963526159525,-0.034323994070292,-0.053960803896189]],[[0.015205239877105,0.067566052079201,-0.095618151128292],[0.0037988815456629,-0.060816805809736,0.01881100051105],[0.044578921049833,-0.025396514683962,0.10909685492516]],[[0.026730988174677,-0.024241333827376,-0.027965098619461],[-0.0067761107347906,0.060983788222075,0.035400737076998],[-0.011772350408137,0.004778734408319,0.01942640542984]],[[-0.069298014044762,-0.10896822810173,-0.013821854256094],[0.012047104537487,-0.029280871152878,0.020642234012485],[0.028863895684481,0.081932567059994,-0.017052857205272]],[[0.052875719964504,0.046277835965157,-0.006970651447773],[-0.072329051792622,-0.010435982607305,0.057158153504133],[-0.09844446927309,0.075779534876347,-0.011961289681494]],[[-0.013329369947314,0.053501266986132,0.082288347184658],[0.095513187348843,0.059195589274168,-0.012202773243189],[-0.041360951960087,0.071454420685768,0.019606972113252]],[[-0.027759058400989,-0.10242500901222,-0.028253741562366],[-0.011622090823948,-0.00075030932202935,0.08521842956543],[-0.030548298731446,0.018087537959218,0.07489138096571]],[[-0.11960487067699,0.048522770404816,-0.0059273191727698],[0.029897639527917,-0.0036542464513332,-0.033555090427399],[-0.083668693900108,-0.015649404376745,0.0078722611069679]],[[0.0086242752149701,0.020147128030658,0.012914068065584],[0.017509581521153,-0.030857371166348,-0.032842840999365],[0.0077754356898367,-0.078696519136429,-0.13399635255337]],[[-0.031803093850613,-0.017183249816298,0.029214693233371],[-0.026219330728054,-0.0035248324275017,0.058803033083677],[0.017972772940993,-0.046253699809313,-0.070849865674973]],[[-0.068873040378094,-0.061394296586514,-0.029522106051445],[0.035852778702974,-0.058247100561857,0.027956517413259],[-0.049401007592678,-0.02489516697824,-0.012376348488033]],[[0.014410297386348,0.018437173217535,-0.0032229523640126],[0.044103097170591,-0.050671324133873,0.1012309640646],[0.080924794077873,0.033598143607378,-0.048691641539335]],[[0.011935831978917,0.0084795709699392,0.065650515258312],[0.0085496762767434,0.0097152199596167,0.028545387089252],[-0.06113426014781,0.010661411099136,-0.011132032610476]],[[-0.012188256718218,0.019000738859177,0.015500329434872],[0.01966748945415,-0.014303667470813,-0.052002225071192],[-0.016137959435582,-0.068377926945686,0.070992462337017]],[[0.015081598423421,0.085222192108631,0.0070177428424358],[-0.029375525191426,0.042968235909939,0.01237340644002],[-0.021856103092432,-0.035852521657944,-0.054879270493984]],[[0.021026134490967,-0.027413859963417,0.068169876933098],[0.035882014781237,-0.059135984629393,0.026483280584216],[0.039269361644983,0.10106166452169,0.024523386731744]],[[0.060139618813992,-0.01416193973273,-0.04521893337369],[0.026696348562837,0.0093883350491524,-0.029931358993053],[-0.025122778490186,0.019513953477144,-0.02090322971344]],[[0.0037279454991221,-0.040690459311008,0.061664327979088],[0.055121224373579,0.052282460033894,0.0047539388760924],[-0.021431157365441,0.028939347714186,0.035382587462664]],[[-0.041272066533566,-0.068225644528866,0.028769636526704],[0.0069267353974283,-0.00403190869838,-0.034875769168139],[0.043949745595455,-0.00082414137432352,0.03587943315506]],[[-0.0032678747083992,0.08174005895853,0.11785395443439],[-0.068151399493217,0.028845071792603,-0.032667081803083],[0.025490958243608,0.065457493066788,0.065455175936222]],[[-0.048134680837393,-0.013086283579469,0.066083624958992],[-0.019678775221109,-0.010297987610102,-0.0052009602077305],[-0.0045515396632254,0.012705879285932,0.0061919176951051]],[[0.024652106687427,0.014405623078346,0.03742328286171],[-0.0074148452840745,0.10376182943583,-0.022514600306749],[0.067264713346958,-0.0057934331707656,-0.022424465045333]],[[-0.028655173256993,-0.016480635851622,-0.019921246916056],[0.019973669201136,0.062995567917824,0.021510902792215],[-0.03797335550189,0.015416977927089,0.037659682333469]],[[0.05087810382247,-0.09391238540411,0.016160406172276],[-0.028143811970949,-0.04514142498374,-0.012800442054868],[0.012523551471531,-0.04862504452467,-0.0074404710903764]],[[-0.02790167555213,0.045809775590897,0.053481590002775],[-0.043843358755112,0.016443988308311,-0.016899118199944],[-0.011649065651,0.0046918871812522,-0.015559010207653]],[[-0.042690105736256,0.010276497341692,-0.084207877516747],[0.043373569846153,-0.056063611060381,-0.024246722459793],[0.010381302796304,-0.039491672068834,0.01911261305213]],[[0.016273917630315,0.027781762182713,0.038041785359383],[-0.0061868708580732,0.020722893998027,0.018513472750783],[-0.04069746285677,-0.061429619789124,0.023418122902513]],[[0.054706141352654,0.031531523913145,-0.029752610251307],[-0.029855005443096,-0.028276825323701,-0.072904959321022],[-0.016629338264465,0.032543648034334,0.014930259436369]],[[0.022032668814063,-0.037889234721661,-0.0010301312431693],[-0.069006592035294,-0.023838190361857,-0.010386945679784],[-0.020662674680352,-0.094658724963665,0.014965419657528]],[[0.042578417807817,0.002549119759351,0.012956442311406],[0.00026573325158097,0.091820195317268,0.049766842275858],[0.0037865517660975,0.027890264987946,-0.10535068064928]],[[-0.048166338354349,-0.016982415691018,0.03973900154233],[0.035279761999846,-0.039397340267897,-0.057513117790222],[0.010676492005587,0.040850203484297,0.05869909375906]],[[-0.050210770219564,-0.044896800071001,-0.01181432697922],[-0.0057775871828198,0.0057549420744181,0.094076439738274],[0.063024200499058,-0.071887724101543,-0.029728006571531]],[[-0.038186863064766,0.054378375411034,0.019086880609393],[0.02090179361403,0.04050899669528,-0.071705125272274],[-0.015709286555648,-0.015566986985505,0.0097711142152548]],[[0.055732872337103,-0.016881465911865,0.0027194572612643],[0.011758402921259,0.072567693889141,0.050956226885319],[-0.051475368440151,0.11027830094099,0.052221234887838]],[[-0.011725032702088,-0.010002329014242,-0.0041517182253301],[-0.043681532144547,0.032563205808401,0.029989033937454],[0.016088308766484,0.015764223411679,0.062211334705353]],[[0.0055275238119066,0.015464748255908,0.093128465116024],[-0.014361691661179,0.015237572602928,-0.052631381899118],[0.034688621759415,-0.015222353860736,0.039157845079899]],[[0.020449230447412,0.0021079841535538,0.043495297431946],[0.061808321624994,0.0064887381158769,-0.027427460998297],[0.03734502196312,0.021744776517153,0.033395774662495]],[[0.042731590569019,0.059979159384966,0.051795776933432],[0.0057359430938959,0.0010721392463893,-0.059180948883295],[0.019856348633766,0.015510963276029,-0.022285843268037]],[[0.0093692615628242,-0.0093629276379943,0.016597867012024],[0.097367212176323,0.023918405175209,-0.040155712515116],[-0.027843052521348,0.015861803665757,0.014015675522387]],[[-0.010798455215991,0.04978559538722,-0.014158749952912],[-0.051587473601103,-0.049012761563063,0.029562907293439],[0.0013442564522848,0.026130516082048,-0.038704168051481]],[[0.055503323674202,0.097941853106022,-0.036109328269958],[0.032972507178783,0.0017089141765609,-0.039398021996021],[-0.0075192847289145,-0.06479649990797,-0.025909019634128]],[[0.066513553261757,-0.030450716614723,0.01663507334888],[-0.032507017254829,0.0051207267679274,0.0021797586232424],[-0.011428110301495,0.024128507822752,-0.043697346001863]],[[-0.0011897953227162,-0.098444685339928,0.030118694528937],[-0.00028409442165866,0.12932722270489,0.048448193818331],[0.023420182988048,-0.062151972204447,0.060357011854649]],[[-0.018079578876495,0.021206544712186,-0.086937591433525],[-0.018910674378276,-0.019048387184739,-0.0027448893524706],[-0.035384818911552,0.012970415875316,-0.034823507070541]],[[0.061343174427748,0.041009556502104,-0.014690047129989],[0.021485129371285,0.0089502548798919,0.0016688262112439],[-0.025382032617927,-0.0047980002127588,0.047205109149218]],[[-0.028529210016131,-0.05224559083581,-0.027110369876027],[0.048248928040266,-0.014531480148435,0.0077273859642446],[0.076506711542606,0.011158289387822,0.05290237814188]],[[0.055468861013651,0.014090904965997,0.032994728535414],[0.017986604943871,0.025348009541631,-0.022154398262501],[0.0024164249189198,0.058259598910809,0.046344179660082]],[[0.0080931773409247,-0.10573565214872,-0.064942799508572],[-0.053206853568554,-0.029148874804378,0.019841842353344],[-0.039047814905643,0.01525376085192,-0.0082561289891601]],[[0.012308133766055,-0.04999778047204,-0.0017026497516781],[0.0049060261808336,0.042048793286085,-0.012655763886869],[-0.0084432559087873,-0.05201930180192,-0.021918315440416]],[[-0.014296794310212,0.070900246500969,0.0071078184992075],[0.036704823374748,-0.062217775732279,0.062054976820946],[0.017646178603172,0.018840663135052,-0.068300686776638]],[[0.061773937195539,0.029655274003744,-0.049614973366261],[-0.045916128903627,-0.012809696607292,-0.0033613399136811],[-0.057021357119083,0.03120313771069,-0.0026999302208424]],[[0.038865774869919,0.084956720471382,0.03395264968276],[-0.059151541441679,0.0016477887984365,0.014008369296789],[0.0093487659469247,-0.023784710094333,0.028778566047549]],[[-0.010542106814682,0.031685516238213,-0.047285079956055],[-0.0089819226413965,0.075804777443409,0.03594645857811],[0.0076298876665533,0.019295481964946,0.045539982616901]],[[-0.034850791096687,-0.044702656567097,-0.026783624663949],[0.075703047215939,-0.0055792173370719,0.0027276366017759],[0.052271030843258,-0.014261446893215,0.020510835573077]],[[-0.0014963172143325,0.056908193975687,0.028724778443575],[-0.010650858283043,-0.012300481088459,-0.0052618230693042],[0.077604621648788,0.03874783962965,-0.011111302301288]],[[0.0080809378996491,-0.037472348660231,-0.031644832342863],[-0.0079026436433196,0.045048844069242,0.03776927292347],[-0.02062526345253,0.053837191313505,0.0026483919937164]],[[-0.040252506732941,-0.070152208209038,0.030243905261159],[0.0062838117592037,-0.019522832706571,0.034728787839413],[-3.565609222278e-05,0.052388798445463,0.0051941773854196]],[[0.054362054914236,0.044383604079485,-0.026512330397964],[0.00016358194989152,-0.0033792059402913,-0.084625750780106],[0.0019895636942238,-0.13301020860672,-0.0045986087061465]],[[-0.070893786847591,-0.046975165605545,-0.031478866934776],[-0.030136441811919,0.017060503363609,-0.027873126789927],[0.0122144902125,-0.020579775795341,0.064243197441101]],[[-0.0042858943343163,-0.031733117997646,0.011896052397788],[0.0079216491430998,-0.025408135727048,0.034085191786289],[-0.027122523635626,-0.10029520094395,-0.056759063154459]],[[-0.038933340460062,-0.019076013937593,-0.022147625684738],[0.003328129183501,0.04724445939064,0.07006973773241],[0.0023952717892826,0.057119142264128,-0.00089815788669512]],[[0.018885245546699,-0.0049156034365296,-0.022862683981657],[0.039339300245047,-0.05337955057621,0.062716893851757],[0.081601031124592,-0.011615430004895,-0.0036483297590166]],[[-0.00067097134888172,0.027509229257703,0.067035093903542],[-0.00421978905797,0.072665691375732,-0.05223223567009],[-0.014907687902451,-0.091002948582172,-0.03024092502892]],[[-0.017000721767545,-0.0063519892282784,-0.011981738731265],[0.045905914157629,-0.083939217031002,0.068450152873993],[-0.094965204596519,-0.0060700695030391,-0.075888574123383]]],[[[0.0069420421496034,-0.024084415286779,0.13697820901871],[0.032407280057669,-0.030564876273274,0.012064263224602],[-0.0078370375558734,-0.020103773102164,0.039367362856865]],[[0.0087364828214049,0.015434062108397,-0.031737733632326],[-0.090892881155014,-0.035206966102123,-0.10108607262373],[0.040685124695301,0.011636896058917,-0.15053926408291]],[[0.096136644482613,0.076956674456596,-0.019625544548035],[-0.057345114648342,-0.048995167016983,-0.0055579217150807],[0.080220870673656,0.024186424911022,0.075416222214699]],[[-0.031675599515438,-0.13100676238537,0.025590868666768],[-0.077612422406673,-0.053921658545732,-0.035746142268181],[-0.019186034798622,-0.011795811355114,-0.01210618019104]],[[0.063169799745083,-0.0074149593710899,0.12545400857925],[0.035782624036074,-0.065331175923347,-0.0016505122184753],[-0.0091623300686479,-0.078863978385925,-0.059818487614393]],[[0.047437101602554,0.034496176987886,-0.0099887298420072],[0.011696223169565,0.10269027203321,0.066951766610146],[-0.0059827943332493,-0.033428076654673,0.075655244290829]],[[-0.022003039717674,-0.0047457315959036,0.11583387106657],[-0.022390322759748,-0.043831896036863,0.0042950012721121],[-0.038199231028557,-0.062137898057699,0.05376797914505]],[[0.10130631178617,0.050170555710793,-0.038126692175865],[0.058686312288046,0.079894542694092,0.080319330096245],[0.026313919574022,-0.0029610365163535,-0.037039380520582]],[[-0.074287921190262,0.017261723056436,-0.014360030181706],[-0.087180890142918,-0.0061928280629218,-0.083970911800861],[0.0529401935637,0.018519455567002,-0.0081446878612041]],[[0.022723447531462,0.03959759324789,-0.012737049721181],[-0.049251101911068,0.0038187026511878,0.0044934549368918],[0.042033988982439,-0.0353047773242,0.020533531904221]],[[-0.006638694088906,0.0048903618007898,0.0033831091132015],[0.033188387751579,-0.044905561953783,-0.049522239714861],[-0.0098382821306586,0.087617985904217,-0.024246720597148]],[[0.034351032227278,-0.0032217283733189,-0.059176407754421],[-0.039557546377182,0.081082731485367,0.06275736540556],[-0.037219483405352,-0.0043671601451933,-0.031542759388685]],[[0.0090378923341632,0.068373471498489,0.046699799597263],[0.088986776769161,0.040517389774323,-0.0082277832552791],[0.020009476691484,-0.02561729028821,0.038423880934715]],[[-0.0082275755703449,0.0063964682631195,-0.059861198067665],[0.030736090615392,-0.0084977401420474,-0.01234277151525],[-0.024429935961962,0.0060576531104743,-0.0091464659199119]],[[-0.038639228790998,-0.040897313505411,0.021471805870533],[-0.030356511473656,-0.031027179211378,-0.0056194700300694],[-0.0079706525430083,0.037694048136473,-0.092238754034042]],[[-0.00071253895293921,0.021752899512649,0.019064662978053],[0.036611746996641,0.027710581198335,0.032914187759161],[-0.015049511566758,0.0012332267360762,-0.046571340411901]],[[0.011038077995181,-0.083407342433929,-0.063725374639034],[0.07897624373436,0.079997539520264,0.042087405920029],[0.047143913805485,0.058402702212334,0.0547955930233]],[[0.11992678791285,0.10464559495449,0.034557960927486],[-0.073719888925552,0.049425974488258,0.012865219265223],[-0.04675867035985,-0.052940845489502,-0.014252698048949]],[[-0.032718107104301,-0.034641567617655,-0.0060542500577867],[0.022092731669545,-0.029086504131556,0.029069321230054],[0.032048616558313,-0.038862660527229,-0.053867980837822]],[[0.1776949763298,0.050145708024502,-0.0045354552567005],[0.0037651273887604,0.060667533427477,-0.049005921930075],[0.0060625933110714,0.0036713974550366,0.065591759979725]],[[-0.0010716890683398,-0.035033535212278,0.08512868732214],[0.048856440931559,0.05527089163661,0.03366132080555],[0.12235432118177,-0.012016619555652,-0.024168040603399]],[[0.063926830887794,0.016627551987767,0.026447828859091],[0.054407756775618,0.032758522778749,0.0060436693020165],[0.021673766896129,-0.01378664933145,0.040166839957237]],[[0.016382317990065,-0.015379555523396,0.12319631129503],[0.00972462259233,-0.047028314322233,0.021809164434671],[-0.049835864454508,-0.068166665732861,0.078459665179253]],[[0.045450698584318,0.094645321369171,0.15591181814671],[0.079997502267361,-0.025466209277511,0.035428371280432],[-0.065167173743248,0.047898571938276,-0.10053585469723]],[[-0.1632139980793,-0.072031863033772,0.06738144159317],[0.017203085124493,-0.01769221201539,-0.046678133308887],[-0.04613634198904,0.012540774419904,0.02487388625741]],[[0.032010439783335,-0.076424889266491,-0.0092222858220339],[-0.093083508312702,0.061420727521181,0.031851731240749],[0.058319199830294,-0.034601014107466,0.056256849318743]],[[0.016233230009675,-0.030905738472939,0.0063153929077089],[0.020284941419959,-0.077346235513687,-0.0056492891162634],[0.060551304370165,0.09263277053833,0.010998227633536]],[[-0.0053988369181752,-0.075460687279701,0.034593522548676],[0.09943151473999,-0.037859309464693,-0.032916709780693],[0.0083837369456887,0.019567605108023,0.00072259572334588]],[[0.040258251130581,-0.062716625630856,0.011469036340714],[-0.026054093614221,0.04836717993021,0.065243504941463],[0.037889387458563,0.020766885951161,0.021701069548726]],[[0.074103452265263,0.047096770256758,0.076427459716797],[-0.10246270149946,-0.024154473096132,0.0075946249999106],[-0.029819874092937,0.08657781034708,0.027419552206993]],[[0.0013176236534491,0.055490471422672,-0.028876850381494],[-0.043889921158552,-0.11147150397301,0.049459606409073],[-0.01756114885211,0.037940438836813,0.011962316930294]],[[0.011160491965711,-0.013048530556262,0.0057908990420401],[0.025614956393838,-0.099900208413601,-0.080141738057137],[0.0037190141156316,-0.04786267131567,0.011493337340653]],[[-0.1734861433506,-0.081418476998806,0.0091603398323059],[0.086426302790642,0.068717457354069,0.049757372587919],[-0.05439829453826,-0.010375466197729,-0.029997201636434]],[[-0.049718972295523,0.058549787849188,0.00084433978190646],[0.038799650967121,0.059156358242035,0.044429458677769],[0.054910570383072,-0.034050296992064,0.062578819692135]],[[-0.012564986944199,-0.011837386526167,-0.066214367747307],[0.065266080200672,-0.028727300465107,-0.020052576437593],[0.046644408255816,0.044425074011087,0.076628290116787]],[[-0.0078196069225669,0.007481889333576,0.044456209987402],[0.0003038787690457,-0.11059312522411,-0.023268215358257],[0.026167893782258,-0.012015870772302,-0.063419930636883]],[[0.029124261811376,0.10787831246853,-0.0039595868438482],[0.058823507279158,-0.027051525190473,0.042375560849905],[-0.053188998252153,-0.0068223169073462,-0.058312024921179]],[[-0.096738420426846,-0.074177719652653,-0.0055640800856054],[0.062144834548235,0.013479602523148,0.049555584788322],[-0.043878529220819,0.034479424357414,0.04942600056529]],[[-0.046652376651764,-0.056594304740429,-0.099331490695477],[0.039057038724422,-0.034131001681089,-0.010475400835276],[0.039917130023241,0.0010911431163549,0.0060931108891964]],[[0.0035948681179434,-0.0062140170484781,-0.090567640960217],[0.017984736710787,-0.020159434527159,0.060807067900896],[0.038604468107224,-0.0040028961375356,0.098791778087616]],[[-0.083114020526409,-0.025969300419092,-0.0028474074788392],[0.045530185103416,-0.032970856875181,-0.033992286771536],[-0.023542849346995,-0.048839565366507,-0.099389158189297]],[[0.0016537033952773,0.055677317082882,0.12242174893618],[-0.024837272241712,0.010273652151227,0.10019655525684],[-0.007995031774044,-0.013782919384539,-0.0015540402382612]],[[0.0062358733266592,-0.0066594160161912,0.035111226141453],[0.032045383006334,0.013968615792692,0.055677734315395],[-0.031450413167477,0.016525946557522,-0.024234287440777]],[[0.077616490423679,-0.042865749448538,-0.024505605921149],[0.028731541708112,0.040717281401157,0.026674898341298],[0.015879990532994,-0.055038332939148,0.0075604296289384]],[[0.047633938491344,0.017139786854386,-0.013639339245856],[-0.0079258996993303,0.010505001991987,-0.031702965497971],[-0.040031168609858,0.019643008708954,-0.020367406308651]],[[0.0055443155579269,0.067381590604782,0.045693814754486],[-0.050726931542158,-0.015743931755424,0.044133502990007],[0.046948086470366,0.056887958198786,0.071150928735733]],[[0.020855976268649,-0.031832430511713,0.035587221384048],[-0.019896609708667,-0.094234891235828,-0.06461975723505],[-0.032171070575714,0.059318039566278,-0.018314236775041]],[[-0.059299398213625,-0.037105925381184,0.084983885288239],[0.028378563001752,-0.077731169760227,0.046564094722271],[0.016596855595708,0.053487230092287,-0.012529806233943]],[[-0.0058905491605401,-0.093878492712975,-0.074642226099968],[-0.021793624386191,-0.03658327832818,-0.047293063253164],[0.0024349819868803,-0.051364380866289,0.061195179820061]],[[0.004708519205451,-0.060039322823286,0.1126267388463],[-0.0086059728637338,-0.049688011407852,-0.058416739106178],[-0.0080771427601576,-0.0040561757050455,0.068744279444218]],[[0.041158549487591,-0.11724346131086,-0.064890213310719],[0.045452937483788,0.022071288898587,-0.052878674119711],[0.13839186728001,-0.037095978856087,0.035493467003107]],[[0.08528083562851,-0.10473459213972,-0.069450877606869],[-0.0065322536975145,-0.0035331777762622,-0.10547537356615],[-0.023541495203972,0.035891074687243,-0.013312178663909]],[[-0.0014186608605087,-0.029526611790061,0.015036669559777],[0.075402371585369,0.0037860926240683,0.058467790484428],[0.069480925798416,0.013887350447476,0.033190563321114]],[[0.029030682519078,0.035939145833254,-0.10277338325977],[0.051961958408356,0.054104622453451,0.028598656877875],[-0.066524252295494,0.097416549921036,0.058354545384645]],[[0.013441685587168,-0.088625699281693,-0.056384932249784],[0.081224128603935,-0.022367423400283,0.010666496120393],[0.06197115406394,0.043260801583529,0.041721686720848]],[[0.089238494634628,-0.0045330412685871,-0.086885489523411],[0.12715931236744,0.029517311602831,0.093630783259869],[-0.024378238245845,-0.033118560910225,-0.017643213272095]],[[0.0370202511549,-0.034331530332565,-0.077034302055836],[0.040830656886101,0.071951627731323,0.0706817060709],[0.0041786264628172,0.00087807682575658,0.09019897133112]],[[-0.054518923163414,0.0084833446890116,0.031860422343016],[-0.0015279242070392,0.073682978749275,0.058525491505861],[-0.026737503707409,0.048435993492603,-0.085993424057961]],[[0.0060877380892634,0.058339547365904,-0.028601689264178],[0.033670235425234,0.08994347602129,0.066988453269005],[0.044041387736797,0.095425441861153,-0.0036252418067306]],[[-0.037507127970457,-0.03698705136776,-0.021222345530987],[-0.01707785576582,-0.067784175276756,0.085172727704048],[-0.066897235810757,0.015852980315685,0.023964837193489]],[[-0.050886034965515,0.026218641549349,-0.075819320976734],[-0.080756910145283,-0.11394131183624,-0.095517493784428],[-0.0035176905803382,-0.039232902228832,-0.080549746751785]],[[0.036458767950535,-0.048206951469183,-0.069459572434425],[-0.0052221273072064,-0.020502716302872,-0.09041166305542],[0.020696582272649,-0.094432763755322,-0.029891390353441]],[[0.10424526035786,0.051840979605913,0.10720692574978],[0.013493253849447,-0.013900309801102,-0.0088476380333304],[-0.027528297156096,-0.049165461212397,-0.019032264128327]],[[0.1419200450182,0.031306639313698,0.016951683908701],[0.12826544046402,-0.056058380752802,-0.077123358845711],[-0.0098130702972412,-0.057604685425758,-0.042263798415661]],[[0.027845336124301,0.051893018186092,0.0083317020907998],[-0.013584708794951,-0.086870118975639,0.027130715548992],[-0.024101175367832,0.052247323095798,-0.081303484737873]],[[-0.099323302507401,0.076087117195129,0.12751993536949],[-0.13939252495766,-0.0060243108309805,-0.0068472581915557],[0.04881301894784,0.049426395446062,0.17831920087337]],[[0.041981462389231,0.01312983315438,-0.131954818964],[0.0076414765790105,-0.027825925499201,-0.011242088861763],[-0.012854926288128,0.05876100435853,0.015471551567316]],[[-0.040085628628731,0.037005811929703,-0.021021898835897],[-0.08923564851284,0.09511898458004,-0.047217786312103],[-0.013681260868907,0.012071226723492,0.010152084752917]],[[0.038853842765093,0.0070929792709649,0.065600261092186],[-0.03973938152194,0.026171365752816,-0.049583703279495],[0.082691803574562,0.072069458663464,-0.063919045031071]],[[-0.053499512374401,-0.13390427827835,-0.1032444909215],[-0.054523453116417,0.053648751229048,0.023291734978557],[-0.021001420915127,0.081478647887707,0.1413394510746]],[[-0.0014109414769337,0.030881032347679,0.10006935149431],[0.030685935169458,-0.0051939594559371,0.015535002574325],[-0.05570163205266,0.0086275245994329,0.012593568302691]],[[0.019006181508303,0.036756046116352,0.016171384602785],[-0.084806874394417,-0.087764382362366,-0.087786488234997],[0.04899463057518,0.036824323236942,-0.022273885086179]],[[-0.0033461302518845,0.010174414142966,0.072242133319378],[-0.026576327160001,0.013566458597779,-0.014812449924648],[0.066130578517914,0.025191269814968,0.043266113847494]],[[0.072421558201313,0.083377368748188,-0.02184502966702],[-0.045963764190674,0.016392935067415,-0.031230563297868],[0.013772690668702,0.031845293939114,0.045862454921007]],[[0.06537688523531,0.031885553151369,0.0078173130750656],[-0.020859075710177,-0.019831255078316,0.063965663313866],[0.071624808013439,-0.018047718331218,0.03686548769474]],[[-0.0066526322625577,0.062301877886057,-0.062088266015053],[0.072475232183933,-0.01332498434931,0.013678072951734],[-0.10119094699621,-0.1165274232626,-0.022501923143864]],[[0.085746891796589,-0.020604066550732,0.098358631134033],[-0.027457220479846,-0.016251023858786,-0.02646754309535],[-0.09703204780817,-0.0064482865855098,0.012074807658792]],[[0.0098290564492345,0.056579224765301,0.090776763856411],[0.030404699966311,-0.021358910948038,0.03174801543355],[-0.0053589008748531,-0.01841096393764,0.077862665057182]],[[0.16177235543728,-0.0081182429566979,0.024204773828387],[-0.018831232562661,0.0054385326802731,-0.070933721959591],[-0.06184858083725,-0.12263276427984,-0.034657586365938]],[[-0.034018311649561,-0.066142931580544,-0.0043100425973535],[-0.0060149230994284,0.039635051041842,-0.016708305105567],[-0.040472481399775,-0.013265196233988,0.011730661615729]],[[0.013059320859611,-0.011538858525455,-0.012869195081294],[0.14653393626213,0.050219140946865,0.026083305478096],[-0.023761488497257,-0.0084111597388983,-0.015533252619207]],[[-0.081675380468369,0.00024660670896992,-0.12290162593126],[-0.052703443914652,-0.047285988926888,0.033478442579508],[0.062127728015184,-0.003771445248276,-0.019877348095179]],[[-0.036375794559717,-0.0036802929826081,-0.085138082504272],[-0.0087204398587346,0.030999070033431,-0.017799997702241],[0.011753932572901,0.014103094115853,0.030441716313362]],[[0.027936628088355,-0.05812306329608,-0.015047994442284],[-0.030069606378675,-0.021944526582956,-0.0855652987957],[0.0777193531394,-0.03789147362113,-0.032253440469503]],[[0.012485241517425,-0.057305153459311,0.018024755641818],[0.076232969760895,-0.045091260224581,0.042520191520452],[-0.059365354478359,-0.095783278346062,0.01902511715889]],[[0.039323706179857,0.1055431291461,0.085114136338234],[0.039650790393353,0.038512468338013,0.026243180036545],[-0.01298932172358,-0.082269430160522,-0.003127142554149]],[[-0.03166201338172,0.041332568973303,-0.0075528807938099],[0.099038973450661,0.0026257068384439,0.14160272479057],[0.061158776283264,0.051566518843174,0.033498078584671]],[[0.09586351364851,0.14857219159603,-0.017562050372362],[-0.02040490321815,-0.040170162916183,-0.06290103495121],[0.040683563798666,0.021717974916101,-0.041810531169176]],[[0.015095161274076,0.079393319785595,-0.018986793234944],[0.071386717259884,-0.039204634726048,-0.020842585712671],[0.03177047893405,0.011529172770679,0.082669876515865]],[[-0.093757107853889,0.046274032443762,-0.12822549045086],[0.023996118456125,-0.0045494702644646,-0.042952436953783],[-0.046785581856966,-0.069840148091316,0.074787206947803]],[[0.051520463079214,0.054942864924669,0.059929966926575],[-0.13144634664059,0.090079881250858,-0.056316304951906],[-0.023754499852657,-0.10708481818438,-0.021440679207444]],[[0.056134324520826,0.13589827716351,0.095804981887341],[-0.10846945643425,-0.04057103022933,0.085148900747299],[-0.0058292644098401,-0.030789382755756,0.020101947709918]],[[0.057214576750994,0.070670016109943,0.027410546317697],[0.038913205265999,0.0023713654372841,-0.017669748514891],[0.01201093941927,0.052676077932119,-0.037644196301699]],[[-0.11321970075369,-0.053208015859127,0.10732150822878],[-0.04592003673315,-0.090619966387749,0.062528289854527],[0.03481661900878,-0.038251157850027,0.056123923510313]],[[0.018133604899049,0.0017276104772463,-0.072390802204609],[-0.057859394699335,0.009703541174531,-0.048247762024403],[0.036060139536858,-0.035367492586374,-0.0020426195114851]],[[0.084507800638676,-0.026396652683616,0.034625560045242],[-0.025395691394806,0.010587780736387,0.081275694072247],[-0.014197398908436,-0.061515539884567,0.02014072611928]],[[0.041331186890602,0.032336860895157,-0.061092335730791],[0.0080421064049006,-0.051129806786776,0.013113305903971],[-0.043855778872967,-0.022683618590236,0.052606798708439]],[[0.085616573691368,0.10305536538363,0.07265343517065],[0.00068075704621151,0.038740895688534,0.048250786960125],[0.055119756609201,0.098141543567181,0.092731222510338]],[[0.012051939964294,0.0052119055762887,-0.13485124707222],[-0.059884808957577,0.038164339959621,0.034109324216843],[0.034381818026304,0.041780237108469,-0.015420983545482]],[[-0.006117217708379,0.040505785495043,-0.023993965238333],[-0.0049482882022858,0.0024198179598898,0.022684685885906],[-0.034912142902613,-0.0039604897610843,-0.012781701050699]],[[0.026378840208054,0.056234940886497,-0.055602643638849],[-0.013815715909004,0.0554682277143,-0.0099164191633463],[0.0002162296732422,0.022166959941387,-0.045960031449795]],[[-0.028154199942946,-0.097158037126064,-0.021726122125983],[-0.072975993156433,-0.085982665419579,0.08411680907011],[0.018580615520477,0.018706640228629,0.020920101553202]],[[0.01341238245368,0.12941293418407,0.10755147784948],[-0.019151968881488,0.038721363991499,0.034977376461029],[0.084930635988712,0.097065128386021,0.03331570699811]],[[-0.024775803089142,-0.04111697524786,-0.11827972531319],[0.032430481165648,-0.0591173581779,0.016918897628784],[-0.008919782936573,-0.058398727327585,0.064933851361275]],[[-0.049398090690374,-0.008816909044981,-0.070174507796764],[0.072721734642982,-0.027529833838344,0.021105697378516],[0.053945168852806,0.10927047580481,-0.015146181918681]],[[0.0027471373323351,-0.065599851310253,-0.021614929661155],[-0.01436448097229,0.0059742107987404,0.060003757476807],[-0.026043554767966,0.033912818878889,0.04979320988059]],[[-0.012060417793691,-0.0054721473716199,-0.056362450122833],[0.073855876922607,0.1047486141324,-0.011144173331559],[0.0074785090982914,0.012266864068806,0.052675411105156]],[[-0.039939273148775,0.054191704839468,-0.027467815205455],[-0.056644018739462,-0.051976162940264,0.0078103076666594],[-0.011706234887242,-0.030666530132294,0.021739900112152]],[[-0.069120921194553,0.042296782135963,-0.034636538475752],[0.05864967033267,-0.017631936818361,-0.13217544555664],[0.0058624912053347,-0.011253654956818,0.13311821222305]],[[-0.071782514452934,-0.10894056409597,-0.011600600555539],[0.072093054652214,0.099168635904789,0.064145892858505],[0.048575956374407,0.042202685028315,0.0017318425234407]],[[-0.079821214079857,0.022917464375496,-0.0026255014818162],[0.025289978832006,-0.015480320900679,0.04718941450119],[0.044289078563452,-0.02199742756784,0.0079716565087438]],[[-0.04034911096096,-0.042665231972933,-0.033384945243597],[-0.10455476492643,0.0042368681170046,0.09002036601305],[-0.028971681371331,0.018126284703612,-0.059335954487324]],[[-0.057593043893576,-0.030451003462076,-0.010989689268172],[-0.066771529614925,0.0071203517727554,-0.034359909594059],[0.0098101478070021,-0.066599443554878,0.10634662955999]],[[-0.013779326342046,-0.01234245300293,0.024494456127286],[-0.0054254452697933,0.014165626838803,0.107222892344],[0.039063271135092,0.033279560506344,0.051229950040579]],[[-0.068407364189625,-0.072023563086987,-0.088635258376598],[0.020542761310935,-0.019948044791818,-0.017706498503685],[0.084723018109798,-0.035510141402483,0.014593256637454]],[[-0.065115839242935,0.030571674928069,-0.068433046340942],[0.053804066032171,0.18407133221626,0.16173052787781],[-0.059100084006786,-0.02846204303205,-0.029182897880673]],[[0.037905771285295,0.039810925722122,-0.017929928377271],[-0.087024539709091,0.011035790666938,0.066986106336117],[0.022178480401635,0.09716072678566,0.022354708984494]],[[0.030407350510359,-0.018692465499043,0.051425002515316],[-0.037857167422771,-0.0635771676898,-0.033904906362295],[-0.024353222921491,-0.037182800471783,0.052021369338036]],[[0.012226900085807,-0.053146582096815,-0.12626181542873],[-0.054403390735388,-6.7175911681261e-05,0.034245833754539],[-0.01834306679666,-0.025855308398604,-0.0017993306973949]],[[0.034405492246151,-0.085044927895069,0.034521784633398],[0.023793298751116,-0.0094432765617967,0.032805357128382],[0.030239524319768,0.031235175207257,0.021853160113096]],[[-0.08429953455925,-0.0039108074270189,0.036102741956711],[0.022849638015032,-0.048994299024343,-0.020248010754585],[-0.056266568601131,-0.016934275627136,-0.024680942296982]],[[-0.04779964312911,0.0091015957295895,0.014411603100598],[0.1271675080061,0.11110052466393,-0.082053422927856],[0.020265879109502,0.035873558372259,0.027490643784404]],[[-0.028561232611537,0.015791494399309,-0.10647611320019],[-0.051918782293797,0.0094702821224928,-0.048091720789671],[-0.02110381051898,-0.050063952803612,-0.014687348157167]],[[-0.057520490139723,-0.033127315342426,-0.074096940457821],[0.03032448142767,0.058442272245884,-0.043576810508966],[0.065380491316319,-0.029427114874125,0.0045777661725879]],[[0.015600367449224,0.10673410445452,0.052618596702814],[0.096139430999756,0.017587024718523,0.027106700465083],[0.15515573322773,-0.058621764183044,0.082163512706757]],[[0.0589878000319,-0.023273006081581,-0.046775374561548],[-0.023106846958399,0.043505404144526,-0.006022013258189],[0.095847405493259,-0.064475372433662,-0.027982395142317]],[[-0.049767311662436,0.055583696812391,0.13993254303932],[0.091324202716351,-0.11991754919291,0.06208598613739],[0.047209907323122,-0.010741625912488,-0.0038927546702325]],[[0.054157752543688,-0.024280251935124,-0.045439042150974],[0.019146669656038,0.035918634384871,-0.039516754448414],[0.0095937810838223,-0.019673241302371,-0.057115323841572]]],[[[0.040219314396381,-0.048698630183935,0.031198374927044],[0.091776669025421,0.13474866747856,0.052081443369389],[-0.051907226443291,0.0080149443820119,0.018511286005378]],[[0.030935985967517,-0.026456151157618,0.19420087337494],[-0.04041850939393,-0.02677882835269,-0.092977032065392],[-0.013826069422066,0.023152096197009,-0.15187881886959]],[[-0.04821564629674,-0.038467694073915,0.0013852956471965],[-0.14730389416218,0.0077533083967865,0.024297388270497],[0.0080121336504817,-0.033014915883541,0.046584066003561]],[[-0.051409658044577,-0.065739475190639,-0.020443880930543],[-0.068993486464024,-0.089564800262451,-0.12357738614082],[-0.013986026868224,-0.10471713542938,0.0033934914972633]],[[-0.063208311796188,-0.07958398014307,-0.10125195980072],[-0.014461582526565,-0.024320058524609,-0.055791396647692],[0.015624530613422,0.02652838267386,0.017580905929208]],[[0.026086932048202,-0.025686476379633,-0.025131525471807],[-0.03190990164876,0.041671756654978,-0.10999263823032],[0.0068686972372234,-0.031113725155592,-0.014837190508842]],[[-0.02872359380126,-0.10787055641413,-0.018465295433998],[0.017493581399322,0.090726286172867,-0.049015384167433],[-0.27832761406898,-0.003729811636731,0.014738521538675]],[[-0.021109018474817,0.24957291781902,0.044065397232771],[0.02848288230598,0.0082027986645699,-0.018368769437075],[-0.012283376418054,-0.00089769723126665,0.072352282702923]],[[0.12110623717308,-0.036619652062654,-0.096466183662415],[-0.11377800256014,0.11402881145477,0.058747608214617],[-0.056234590709209,-0.068054206669331,0.052545715123415]],[[0.067355334758759,-0.032727193087339,0.087893627583981],[-0.045052010565996,-0.029843874275684,-0.10631597042084],[-0.12324860692024,-0.080807186663151,-0.036000359803438]],[[0.014532122761011,0.10605319589376,-0.13480915129185],[-0.020843029022217,-0.059449337422848,0.038153316825628],[-0.14149375259876,-0.041396919637918,-0.13490916788578]],[[0.042459208518267,0.043446753174067,0.10677436739206],[-0.079936288297176,-0.059856630861759,-0.016400899738073],[0.065031923353672,-0.012389088980854,-0.0075675235129893]],[[-0.023009091615677,-0.10401520133018,-0.094519563019276],[0.033312633633614,-0.080430455505848,-0.056964714080095],[-0.017855145037174,0.15837913751602,-0.076461121439934]],[[-0.040666554123163,-0.0027550109662116,-0.079130209982395],[0.0045243818312883,0.14414101839066,0.019698543474078],[-0.036218110471964,0.088574506342411,0.01525878533721]],[[0.018133401870728,-0.10219574719667,-0.037396363914013],[-0.049448013305664,0.003953579813242,-0.049543481320143],[-0.081133753061295,0.019576305523515,0.16541004180908]],[[0.14656476676464,-0.12511546909809,-0.021172316744924],[0.048372402787209,-0.090191245079041,-0.052456725388765],[0.14553669095039,0.065649315714836,0.10574818402529]],[[0.079839795827866,0.16464805603027,-0.17249488830566],[-0.066232666373253,0.1499247699976,-0.070129610598087],[0.15922395884991,0.13825419545174,-0.12435538321733]],[[-0.0065347878262401,0.039733223617077,0.04210776463151],[-0.049608986824751,-0.086912542581558,0.071212373673916],[0.052275814116001,-0.19164603948593,-0.0019802297465503]],[[-0.057529285550117,-0.193962469697,-0.055435501039028],[0.052580248564482,0.015217574313283,0.025133039802313],[0.059201315045357,0.16187192499638,-0.094312474131584]],[[0.06894563138485,0.017941862344742,-0.10225768387318],[0.029970427975059,0.095092199742794,0.0129374852404],[0.03566112741828,0.062507793307304,0.038472525775433]],[[-0.1248312741518,-0.074201866984367,-0.07739982008934],[0.069212004542351,-0.28775557875633,-0.12035252898932],[-0.071275554597378,-0.035834185779095,0.035546716302633]],[[0.0031971877906471,0.05121249333024,-0.10326224565506],[-0.025146797299385,-0.03027006238699,0.058877557516098],[-0.10410885512829,0.0067919916473329,-0.068776182830334]],[[0.076374858617783,0.027129620313644,0.013281881809235],[0.094612799584866,-0.02276667766273,0.0093078501522541],[0.0014987604226917,-0.031215958297253,-0.051245387643576]],[[-0.038262840360403,-0.086350411176682,0.00099097297061235],[0.015614131465554,0.045196175575256,-0.021733310073614],[0.031071899458766,0.0010605246061459,-0.005838715005666]],[[-0.0063761156052351,0.016423705965281,-0.090731561183929],[-0.0065826382488012,-0.065727099776268,-0.077456936240196],[-0.023727979511023,-0.11161635071039,-0.08017410337925]],[[-0.15748199820518,0.030882893130183,-0.013302398845553],[-0.04938655719161,-0.093744099140167,-0.024104308336973],[-0.14311540126801,-0.17507690191269,-0.0019856269937009]],[[-0.057249613106251,-0.070739686489105,-0.20991110801697],[0.029589466750622,-0.091143697500229,0.11280224472284],[0.026808306574821,0.10209247469902,-0.013379321433604]],[[0.034179322421551,-0.26230359077454,-0.033300273120403],[0.051721084862947,-0.0099859284237027,-0.038039281964302],[0.084530048072338,-0.12365821748972,0.11821004003286]],[[0.096741147339344,0.12643590569496,0.09373551607132],[-0.18773101270199,-0.095087833702564,0.053410194814205],[0.040330614894629,-0.036443669348955,-0.05364577844739]],[[-0.11943278461695,0.070450879633427,-0.031333893537521],[-0.029338980093598,-0.044511497020721,-0.087590970098972],[-0.067512281239033,-0.066537842154503,-0.022906567901373]],[[-0.029661180451512,0.085441023111343,0.0082003036513925],[0.089301533997059,-0.025311345234513,-0.087669670581818],[-0.1475792825222,-0.049285240471363,0.027376085519791]],[[0.0025669555179775,0.21911205351353,-0.22510561347008],[0.021638259291649,0.007851087488234,0.021105971187353],[0.02813645452261,-0.028800027444959,0.05292035266757]],[[-0.013995638117194,0.032004840672016,0.026518000289798],[0.1584744155407,0.077022939920425,0.061642408370972],[-0.041601181030273,-0.06123960763216,-0.030840346589684]],[[-0.10834378004074,0.055311098694801,-0.050449836999178],[-0.10725904256105,0.069723553955555,-0.045689225196838],[-0.13438642024994,0.07400107383728,0.048141703009605]],[[0.043931495398283,0.085804291069508,-0.082225129008293],[-0.061466004699469,-0.098751299083233,-0.06776038557291],[-0.039248883724213,-0.00021201469644438,0.036278251558542]],[[-0.2069977670908,-0.14272819459438,-0.057595703750849],[-0.061201579868793,-0.1970354616642,-0.025841573253274],[-0.042857754975557,-0.0090826768428087,-0.094377554953098]],[[0.034078143537045,-0.14312605559826,-0.051232386380434],[-0.017119240015745,-0.10030816495419,-0.044826701283455],[-0.16137117147446,-0.14627556502819,-0.14541463553905]],[[-0.088970601558685,0.072409071028233,0.042103167623281],[-0.0086612245067954,-0.016832903027534,-0.025220558047295],[-0.014845667406917,0.025733800604939,0.048309002071619]],[[-0.20509365200996,-0.014241288416088,-0.083369769155979],[0.096763268113136,0.049544610083103,-0.012377920560539],[0.046408712863922,-0.12014619261026,-0.04903919249773]],[[-0.055401343852282,0.074312038719654,-0.030290361493826],[-0.01306370459497,-0.065620727837086,-0.058499954640865],[-0.16446100175381,-0.20034903287888,0.05868611112237]],[[0.041435856372118,0.082235775887966,-0.021223358809948],[0.0093311024829745,-0.016573563218117,0.062040653079748],[0.052956379950047,0.026890153065324,0.10303068906069]],[[-0.028163688257337,-0.029598202556372,-0.063136458396912],[0.013663919642568,0.053629327565432,-0.11479742079973],[0.051488701254129,0.075348272919655,0.062616504728794]],[[-0.014127686619759,0.033523961901665,0.17687883973122],[0.091908060014248,0.065666735172272,0.044224850833416],[0.078389629721642,0.028925698250532,0.086157098412514]],[[0.044408813118935,-0.043650224804878,-0.040174271911383],[-0.054039768874645,-0.020924337208271,-0.056474722921848],[-0.016207661479712,0.0014525626320392,0.024188257753849]],[[-0.31389302015305,-0.0021588965319097,-0.014605139382184],[-0.013048018328846,0.072138927876949,-0.013483486138284],[-0.13884508609772,0.077479027211666,0.1395507901907]],[[0.10253503918648,0.04382698237896,0.12020277231932],[-0.068998038768768,0.058177597820759,-0.014157117344439],[-0.012953227385879,0.092003978788853,0.1560320109129]],[[0.087161250412464,0.096913352608681,0.20521734654903],[0.092833548784256,0.069916218519211,-0.012707490473986],[0.13143713772297,0.087693430483341,-0.017552806064487]],[[-0.083073154091835,-0.1296584457159,0.01137987524271],[-0.11051168292761,-0.15708240866661,-0.088054828345776],[-0.0380764529109,-0.045403402298689,-0.066218167543411]],[[0.032109271734953,0.036391258239746,0.0058871591463685],[-0.046272099018097,-0.048546280711889,-0.017015643417835],[0.038944624364376,0.0019781440496445,0.068802326917648]],[[-0.12948720157146,0.013298839330673,-0.0050206505693495],[-0.064300335943699,-0.077638313174248,-0.081611327826977],[0.057743400335312,0.0070189177058637,-0.028299761936069]],[[-0.13798487186432,-0.024997863918543,0.062621742486954],[0.033556222915649,0.080161966383457,0.049561854451895],[-0.014793183654547,-0.08212286233902,-0.0004278865235392]],[[-0.016338502988219,0.021563932299614,0.061526853591204],[0.037426766008139,0.17656840384007,0.074907407164574],[0.060707286000252,0.11091773211956,0.037596225738525]],[[-0.035723753273487,-0.029902873560786,0.069930166006088],[-0.1445749104023,-0.062044773250818,-0.071220591664314],[-0.022468250244856,-0.01146811619401,-0.015386578626931]],[[0.053766299039125,0.10391319543123,0.0030908358749002],[0.013452098704875,0.00054177676793188,-0.037942547351122],[0.068172559142113,0.14306956529617,-0.07084946334362]],[[-0.0034666999708861,-0.020305354148149,-0.11183097213507],[0.068183362483978,0.10665026307106,-0.044837713241577],[0.093455918133259,0.015452449209988,0.0050598802044988]],[[0.069544836878777,-0.024627462029457,-0.0035535043571144],[0.081511363387108,-0.099589429795742,-0.056570529937744],[0.10128481686115,0.011295075528324,0.020419631153345]],[[0.019735924899578,0.076045580208302,-0.012237723916769],[-0.11464235186577,0.018740847706795,-0.040437560528517],[0.031254176050425,0.08136197924614,0.090851858258247]],[[0.027283411473036,-0.11690854281187,-0.1487188488245],[0.012948986142874,0.050619121640921,-0.047731816768646],[-0.10505396127701,-0.078310407698154,0.045553006231785]],[[0.086793020367622,0.067958913743496,0.19480417668819],[-0.11674369126558,-0.026972306892276,-0.054855510592461],[0.03974213078618,-0.25530412793159,0.051491111516953]],[[-0.093089818954468,-0.18231208622456,-0.057939179241657],[0.034047815948725,-0.016156377270818,0.011641588062048],[0.031036768108606,-0.066954128444195,-0.014017014764249]],[[0.02073385566473,0.059335555881262,-0.032792285084724],[-0.097821362316608,0.17797473073006,0.0049852700904012],[-0.11109727621078,-0.080531232059002,-0.04623444005847]],[[-0.020843086764216,0.028938151896,0.0071451021358371],[0.038187630474567,-0.048200890421867,0.035421434789896],[-0.035629440099001,-0.043437927961349,-0.12182354927063]],[[-0.073293462395668,-0.15476486086845,0.0076030665077269],[-0.022406969219446,-0.047315742820501,-0.0015785901341587],[0.14463995397091,0.021391652524471,-0.064725652337074]],[[0.034439120441675,0.11688078939915,0.028194578364491],[-0.081470586359501,0.061265327036381,-0.017697827890515],[-0.01687783934176,-0.10492612421513,0.027945531532168]],[[-0.11818089336157,0.017477076500654,-0.0124800093472],[-0.016269225627184,-0.044586207717657,-0.022408530116081],[-0.0029566315934062,0.01168960891664,-0.077435553073883]],[[-0.0074469717219472,-0.01765382476151,0.026700796559453],[0.091488376259804,0.11962289363146,0.040678758174181],[-0.092972055077553,0.055184625089169,0.051622994244099]],[[-0.017554469406605,-0.048622626811266,0.072979733347893],[-0.050569247454405,-0.030911384150386,-0.10127830505371],[0.054448764771223,-0.029537715017796,0.0204584505409]],[[0.032070752233267,-0.10382194072008,0.091159798204899],[-0.083784446120262,0.080231495201588,-0.042107578366995],[0.082196116447449,0.13601398468018,0.0225470662117]],[[-0.043838605284691,0.0044296253472567,-0.031056324020028],[-0.0035345379728824,-0.050691343843937,0.20022539794445],[-0.058654021471739,0.02037282474339,0.041960548609495]],[[-0.013461392372847,0.043288938701153,-0.054877679795027],[-0.059871044009924,0.064314097166061,0.19488443434238],[-0.0014899651287124,0.031277619302273,0.0071205776184797]],[[-0.046590331941843,0.0027514065150172,0.058003012090921],[0.06738518178463,0.14158102869987,-0.014723739586771],[-0.0094459280371666,-0.11660632491112,-0.0090711796656251]],[[0.02349728345871,-0.16817846894264,0.11432422697544],[0.10377143323421,0.067029967904091,-0.029086595401168],[0.091327324509621,0.060708396136761,0.027412751689553]],[[-0.12530505657196,0.030223149806261,-0.1126429438591],[-0.049719244241714,-0.20514497160912,0.077942579984665],[-0.084212526679039,-0.13299365341663,0.046588070690632]],[[0.03632539883256,-0.0080576473847032,-0.0025768843479455],[-0.11749593913555,0.0029070782475173,0.055292569100857],[-0.12126640230417,0.040543507784605,-0.14028878509998]],[[0.010776546783745,-0.045550659298897,0.14816322922707],[0.00056085817050189,0.081674516201019,-0.062080305069685],[0.019541809335351,-0.001135362079367,0.014536871574819]],[[0.0070829004980624,-0.014140064828098,-0.024926939979196],[-0.080103009939194,-0.024666827172041,-0.10823884606361],[0.050892807543278,-0.06236170977354,0.073422230780125]],[[-0.047706063836813,0.08710702508688,0.01249354146421],[0.062816955149174,0.10988263040781,-0.052973654121161],[0.073355816304684,0.00011036629439332,0.089837998151779]],[[0.10368571430445,0.11348389834166,0.073101535439491],[0.090937063097954,-0.024303112179041,0.22762723267078],[0.098608076572418,0.081221356987953,0.03948886692524]],[[-0.055369421839714,-0.057660758495331,0.050366129726171],[0.018986718729138,0.0774846971035,0.060221914201975],[-0.023103706538677,-0.077290520071983,0.055246122181416]],[[0.013402829878032,0.025373063981533,0.0050865653902292],[0.048000510782003,-0.10050282627344,0.056328747421503],[0.095331788063049,-0.013808955438435,0.061367493122816]],[[0.19649378955364,0.012692546471953,-0.07903678715229],[-0.061888828873634,-0.01760177873075,0.013657535426319],[0.053015846759081,0.061417732387781,-0.026157224550843]],[[-0.030724607408047,-0.0035380492918193,0.072511091828346],[-0.052662171423435,-0.0030959923751652,-0.075199820101261],[-0.038586713373661,-0.092449687421322,0.0072973049245775]],[[0.059403195977211,0.042271144688129,-0.11572872847319],[-0.092174500226974,0.021632544696331,0.054681781679392],[-0.17934380471706,-0.099458277225494,-0.11002061516047]],[[0.079633958637714,-0.083505861461163,0.021851452067494],[0.051376096904278,-0.056846026331186,-0.073402613401413],[-0.035361431539059,0.11360840499401,0.039381068199873]],[[-0.027412809431553,0.069115966558456,-0.048624008893967],[-0.1034654006362,-0.048170279711485,-0.07845713943243],[0.11100166290998,-0.044215351343155,0.03058448061347]],[[0.047908410429955,-0.14391505718231,-0.031413521617651],[0.010467659682035,-0.11202211678028,-0.023990973830223],[-0.21872621774673,0.053696699440479,0.091918013989925]],[[0.0014828511048108,0.052145998924971,0.048387482762337],[-0.088210485875607,0.086028471589088,-0.040749706327915],[-0.14649495482445,0.062419731169939,0.00093554880004376]],[[-0.098974525928497,-0.01238271035254,-0.023062171414495],[-0.16567778587341,-0.0189527887851,-0.011954759247601],[-0.087805092334747,0.0012839920818806,-0.010589191690087]],[[0.076044715940952,0.034248612821102,-0.0095715271309018],[0.0043414947576821,0.03236935287714,-0.07159873098135],[0.16542637348175,-0.012195786461234,0.11034476011992]],[[0.021796867251396,-0.03654570505023,0.14071422815323],[-0.015700336545706,0.083997420966625,-0.063300877809525],[-0.052744228392839,0.016204982995987,0.093898020684719]],[[-0.056472230702639,0.076023861765862,0.12065093964338],[-0.18684490025043,-0.11142323166132,-0.028534028679132],[-0.085140913724899,-0.041793573647738,-0.019616093486547]],[[0.12679371237755,0.17605976760387,0.050923369824886],[0.025643162429333,0.11843717843294,-0.020901912823319],[-0.068600609898567,-0.13181911408901,-0.11527507007122]],[[0.037544380873442,-0.1078499853611,0.20204699039459],[-0.06015295535326,0.027237873524427,-0.0077119674533606],[0.17101526260376,0.21015229821205,-0.03430538251996]],[[-0.1123501509428,-0.094794824719429,-0.056865844875574],[0.027795853093266,0.07202760130167,-0.065565332770348],[-0.034754015505314,0.075492613017559,0.018360020592809]],[[-0.057357624173164,-0.058132652193308,0.082179486751556],[-0.11859644204378,0.022621750831604,-0.052597064524889],[0.019251465797424,0.029798606410623,-0.047016125172377]],[[0.010255046188831,-0.028649769723415,0.069869972765446],[-0.055265184491873,0.17158658802509,0.035494562238455],[0.082582235336304,-0.10979473590851,0.018738327547908]],[[0.094426095485687,-0.025597518309951,0.056935735046864],[-0.047139570116997,0.043845310807228,0.022572366520762],[0.036696128547192,0.11463694274426,0.030419336631894]],[[-0.056865096092224,-0.040843565016985,-0.038464609533548],[-0.047191936522722,0.010312086902559,-0.032032202929258],[-0.018675787374377,0.04247722029686,-0.0018987545045093]],[[-0.063449062407017,-0.027353143319488,-0.011464359238744],[0.1192465275526,0.00076026882743463,0.0014619998401031],[0.038584124296904,-0.074074678122997,-0.16377371549606]],[[0.025290172547102,0.1795253008604,-0.093046650290489],[0.11538206040859,0.0148223657161,0.033318269997835],[-0.054314233362675,0.023077622056007,-0.046318013221025]],[[0.041243135929108,0.027885647490621,-0.045190174132586],[0.072049453854561,-0.018783876672387,-0.055798906832933],[0.040885914117098,-0.020418390631676,0.032864570617676]],[[-0.23287999629974,-0.064807303249836,0.08613171428442],[0.049958880990744,0.074055753648281,-0.092306979000568],[-0.0014519090764225,-0.09743233025074,0.014822351746261]],[[0.22539430856705,0.034012190997601,-0.035097703337669],[-0.0086554670706391,-0.016257107257843,-0.090268157422543],[-0.089318580925465,-0.13706335425377,0.036178935319185]],[[0.019374631345272,-0.022255398333073,-0.01634942740202],[0.077343784272671,0.0056170751340687,0.048344574868679],[-0.06183310225606,-0.11275923252106,-0.017626354470849]],[[0.039554875344038,-0.055597733706236,-0.041233036667109],[0.15848940610886,0.0059129875153303,-0.037921503186226],[-0.032686583697796,0.10776910185814,-0.033732324838638]],[[-0.018393198028207,-0.17088836431503,-0.020091902464628],[-0.034815967082977,0.024978443980217,0.081190094351768],[0.12776760756969,0.0039551160298288,0.020863145589828]],[[0.15199294686317,-0.044184379279613,0.025591503828764],[-0.043822336941957,0.010079239495099,-0.012195573188365],[0.052676878869534,0.066407635807991,0.074154630303383]],[[-0.046587705612183,-0.016471762210131,0.10841806232929],[-0.10988546907902,0.087600454688072,0.12996728718281],[-0.15293218195438,0.20051491260529,0.061350107192993]],[[0.014225627295673,0.048125974833965,0.012834120541811],[-0.10949136316776,-0.054279569536448,-0.098684139549732],[0.10051179677248,-0.00099671341013163,0.06918115913868]],[[-0.011000127531588,-0.0080781728029251,-0.033677700906992],[-0.025334930047393,0.012652401812375,0.023482466116548],[-0.11811676621437,0.016526693478227,0.11668960005045]],[[-0.048346240073442,0.0088479230180383,0.018664704635739],[0.0041515063494444,-0.19442969560623,0.063685923814774],[0.08720014244318,-0.00079834670759737,0.0074781663715839]],[[0.014102566987276,0.0057738069444895,-0.042456034570932],[-0.01073604542762,0.015415932051837,0.016310708597302],[0.0016693727811798,0.0083798235282302,-0.12500803172588]],[[-0.27954405546188,-0.02382605150342,0.016805766150355],[-0.056388482451439,0.0087053868919611,-0.066763363778591],[0.049148499965668,0.094102784991264,-0.035073071718216]],[[-0.038610406219959,0.16207896173,0.17871959507465],[-0.16950923204422,-0.014969388954341,-0.035641841590405],[0.052800618112087,0.040808957070112,0.023536520078778]],[[-0.10560454428196,0.053688861429691,-0.021318767219782],[-0.089090436697006,-0.074450694024563,0.00097453128546476],[0.026070572435856,0.14724868535995,0.026442648842931]],[[0.18613117933273,-0.16879135370255,-0.15416485071182],[0.074731990695,-0.11626625061035,-0.074204251170158],[0.062038011848927,-0.014693386852741,0.086151018738747]],[[-0.058238074183464,-0.18490661680698,-0.073169775307178],[0.0003326658916194,-0.14207947254181,-0.11759505420923],[-0.054921582341194,-0.046487554907799,-0.077363289892673]],[[-0.026176076382399,-0.16065001487732,0.098134346306324],[-0.045602567493916,-0.0044714780524373,0.045237388461828],[-0.017329752445221,0.012446845881641,-0.1925627887249]],[[-0.15727093815804,-0.012870303355157,-0.042670357972383],[-0.12586277723312,-0.12369082123041,0.098054930567741],[-0.037405796349049,-0.070316977798939,0.056815885007381]],[[0.079946398735046,-0.21565873920918,0.044582761824131],[0.084370911121368,-0.050083987414837,-0.061427485197783],[0.022768447175622,-0.11550047248602,0.049542963504791]],[[0.027000309899449,0.044341493397951,0.049336731433868],[-0.043883390724659,0.0025684428401291,-0.024249523878098],[0.0758261308074,0.022064253687859,-0.038631774485111]],[[0.0215436629951,-0.039306830614805,-0.043198738247156],[-0.11760696023703,-0.0011194782564417,0.02624436467886],[0.0089505761861801,-0.081026650965214,0.057532440871]],[[-0.019818598404527,0.019022675231099,-0.28264260292053],[0.087305404245853,-0.095235772430897,0.081632897257805],[0.095259100198746,0.10385975986719,0.060608375817537]],[[-0.050632860511541,-0.097828187048435,-0.10116547346115],[-0.032823923975229,-0.011485615745187,0.045377045869827],[0.07405760884285,-0.080229394137859,0.030237769708037]],[[0.10779358446598,0.040342170745134,-0.013574125245214],[-0.044372655451298,0.075257919728756,0.063862562179565],[-0.10617889463902,-0.055987473577261,0.0020852305460721]],[[-0.025245094671845,-0.035850096493959,-0.15756157040596],[0.13679584860802,0.052405908703804,-0.080517917871475],[0.12020403891802,0.096266515552998,-0.015027660876513]],[[0.067763023078442,0.043990351259708,-0.039757009595633],[0.047347214072943,-0.05050752684474,0.019795959815383],[-0.058755528181791,-0.1010203063488,-0.084836594760418]],[[0.057775434106588,-0.027646044269204,0.020605290308595],[0.090605467557907,-0.06526954472065,-0.067866414785385],[0.04033736884594,0.12138126045465,-0.12403708696365]]],[[[0.0357551202178,0.013867367058992,0.031271036714315],[0.029660226777196,-0.033114973455667,0.011909996159375],[0.031821668148041,-0.051847618073225,0.03828701376915]],[[0.023588441312313,0.01735800690949,0.0088247796520591],[-0.028789328411222,0.032578133046627,0.0076551055535674],[-0.0088169500231743,0.070944063365459,-0.082203611731529]],[[0.024257738143206,0.0049222698435187,0.049193691462278],[0.016094515100121,0.016288800165057,0.0079361302778125],[0.010382959619164,0.03203671425581,-0.021894343197346]],[[0.019422652199864,0.089142389595509,0.053700320422649],[-0.019011141732335,0.047813396900892,-0.036985658109188],[0.03465973585844,0.0025675108190626,-0.0066218017600477]],[[-0.033942066133022,-0.0040817749686539,0.020838614553213],[0.034263856709003,0.046255242079496,0.021599158644676],[-0.010041818954051,-0.0058630425482988,-0.0039574345573783]],[[0.019002243876457,-0.028548924252391,-0.03134923055768],[0.0268211401999,-0.014221125282347,0.013147309422493],[0.0042146085761487,0.017350411042571,0.017006736248732]],[[0.018771922215819,0.0055390768684447,0.0026137928944081],[-0.0012945139314979,-0.018965600058436,0.032646499574184],[0.0012761846883222,-0.014993612654507,0.0092780413106084]],[[0.020719977095723,0.026568820700049,-0.065912358462811],[0.053101651370525,0.031381264328957,0.0012462574522942],[0.018057256937027,5.4725096561015e-05,-0.0068279900588095]],[[-0.057879984378815,-0.019020656123757,0.00309116858989],[-0.047765016555786,0.038567751646042,0.0072927391156554],[-0.0072499690577388,0.003213174873963,0.00091011164477095]],[[-0.035045456141233,0.029187213629484,0.025415284559131],[0.024810925126076,-0.028506426140666,0.054266627877951],[-0.018186200410128,0.036482624709606,-0.018650352954865]],[[0.02936253324151,0.0028220654930919,0.048376511782408],[-0.00076527788769454,-0.0042728441767395,-0.064143441617489],[0.0084442710503936,-0.0067352810874581,0.037751477211714]],[[0.0075422367081046,-0.031533010303974,-0.027741778641939],[-0.039827197790146,0.069069050252438,-0.011113313026726],[0.021262351423502,-0.023690780624747,-0.018556045368314]],[[0.054196231067181,0.039177808910608,0.070360369980335],[0.077169395983219,0.055820547044277,0.039201535284519],[0.037223313003778,0.04351194947958,0.017166927456856]],[[0.0071433051489294,-0.014061860740185,-0.0016145966947079],[-0.00904874317348,-0.028912432491779,-0.0028948436956853],[0.05798290297389,-0.054195396602154,0.049122653901577]],[[-0.042082838714123,0.033742297440767,-0.032485127449036],[0.00025223236298189,0.0053715631365776,0.04838714748621],[-0.021934971213341,-0.00024474790552631,0.0097198756411672]],[[-0.003838250413537,0.014240191318095,-0.02537988498807],[0.024942090734839,0.060895182192326,-0.019540403038263],[-0.049903966486454,0.026678770780563,0.050680946558714]],[[-0.018328327685595,0.016957018524408,-0.0040478217415512],[0.041784275323153,0.017787765711546,-0.042111467570066],[-0.023405507206917,0.035761475563049,0.016813077032566]],[[0.0052376911044121,-0.031835090368986,0.0078138764947653],[0.0064126555807889,0.0053305081091821,-0.075077056884766],[0.011227761395276,-0.026209244504571,-0.023355666548014]],[[0.0059612267650664,0.024439997971058,0.01718576066196],[0.0063076983205974,0.021603586152196,-0.057555593550205],[0.029291203245521,0.059417098760605,0.044512990862131]],[[0.062009155750275,0.01281238719821,0.022923808544874],[0.0038624603766948,-0.073199644684792,-0.0014454680494964],[0.052350983023643,0.0012656875187531,0.021966122090816]],[[-0.019765904173255,-0.084849081933498,0.029737072065473],[0.018498573452234,-0.062413088977337,0.013571562245488],[-0.02926180139184,-0.023049090057611,-0.061333376914263]],[[0.022047363221645,0.018998757004738,0.050603788346052],[0.034377042204142,0.059400856494904,0.045776728540659],[0.012946397066116,-0.0034640314988792,0.039072785526514]],[[0.027001542970538,0.046813275665045,-0.053166560828686],[0.0086827771738172,-0.010997414588928,0.048114068806171],[0.035363934934139,-0.054183658212423,-0.0031580496579409]],[[0.01526817958802,-0.012315522879362,0.053239192813635],[-0.00077229947783053,0.0021190936677158,0.03736624494195],[-0.0033302207011729,-0.048410013318062,0.014640424400568]],[[0.032974522560835,-0.0052997292950749,0.010578280314803],[0.025074126198888,0.0027795943897218,-0.0010330639779568],[0.011802948080003,-0.010085094720125,-0.0020880654919893]],[[-0.0251236371696,-0.013965823687613,0.0052245073020458],[-0.012693866156042,0.0089034335687757,0.019527304917574],[-0.011242237873375,0.003768460592255,0.0046859052963555]],[[0.011365824379027,0.041184309870005,-0.0062184249982238],[-0.018847607076168,0.085482016205788,0.023567073047161],[-0.018330359831452,0.040593840181828,0.029499622061849]],[[0.039832953363657,-0.015336187556386,0.036023367196321],[-0.053872417658567,-0.0011508094612509,-0.0072649549692869],[0.048144143074751,0.046683076769114,-0.02832836844027]],[[-0.02453632466495,0.013513255864382,0.035476543009281],[0.028695644810796,-0.027005296200514,-0.039609801024199],[0.013229114003479,-0.10726363956928,-0.019812958315015]],[[0.059208896011114,0.053828429430723,-0.027581114321947],[0.028024280443788,-0.056435201317072,0.005378027446568],[-0.032647870481014,0.10387358814478,0.015004918910563]],[[0.05075079202652,0.0093654925003648,-0.00072299590101466],[0.002085066633299,-0.016920991241932,0.034788191318512],[-0.037983018904924,0.027519749477506,-0.014330770820379]],[[-0.055648248642683,0.04698832705617,0.0016931534046307],[0.031302943825722,-0.021642010658979,0.049021754413843],[0.025593068450689,-0.036856912076473,0.03348645940423]],[[0.038631465286016,0.02350383810699,0.0089676575735211],[0.0038826856762171,0.12850488722324,-0.0058850166387856],[0.059000756591558,-0.067974746227264,0.0029555931687355]],[[-0.0082770418375731,0.037038207054138,-0.00029890213045292],[0.045731324702501,0.0092362556606531,0.038098979741335],[-0.015844823792577,-0.037603568285704,0.06098647788167]],[[-0.017830869182944,-0.028825480490923,-0.012294412590563],[0.01312265265733,-0.069288685917854,-0.028217781335115],[-0.051417570561171,-0.0209691375494,-0.010868838988245]],[[-0.028249334543943,-0.037285074591637,-0.018490908667445],[-0.011897165328264,-0.011413229629397,-0.020644210278988],[0.00084100686945021,0.023124441504478,-0.032120112329721]],[[0.014520835131407,0.017605874687433,0.01744850166142],[-0.0125711876899,0.0050088441930711,0.0024734055623412],[0.024203257635236,0.015338775701821,-0.018951861187816]],[[-0.01656174659729,0.023210888728499,0.0094846403226256],[0.048652447760105,0.014546424150467,0.029229730367661],[-0.03134211152792,-0.020346362143755,0.044384226202965]],[[0.0013800887390971,-0.022063508629799,-0.034210558980703],[-0.011922313831747,0.032655689865351,-0.07661210745573],[-0.055699143558741,-0.0013226346345618,-0.048718679696321]],[[-0.01455944776535,-0.030085382983088,0.0025546622928232],[0.024013390764594,0.050871524959803,-0.0034920282196254],[0.058751430362463,0.08022353798151,0.037005700170994]],[[0.024990107864141,-0.0011524998117238,0.031367473304272],[0.01832353323698,-0.0078783696517348,0.019355408847332],[0.026860440149903,0.035010252147913,0.0091459443792701]],[[0.056079290807247,0.0013896172167733,0.053358927369118],[0.018574010580778,0.020397141575813,0.034652393311262],[-0.0014842712553218,0.048261407762766,-0.038166347891092]],[[0.058623883873224,0.011612431146204,-0.0095725310966372],[0.015440125018358,0.017222987487912,0.0050362395122647],[-0.0041581219993532,0.082741461694241,0.018577316775918]],[[-0.065715126693249,0.030596017837524,-0.017299624159932],[0.0016621364047751,-0.0018372642807662,0.004898183979094],[-0.040167387574911,-0.020684756338596,0.018975520506501]],[[0.036338165402412,0.0070289950817823,0.048129949718714],[0.028860326856375,0.037924528121948,0.0078383525833488],[-0.01629713177681,0.094828173518181,0.033614076673985]],[[-0.0095649417489767,-0.02296999655664,0.041616797447205],[0.024502398446202,0.013455646112561,-0.049934413284063],[0.043152615427971,0.12641774117947,-0.006994211114943]],[[0.0034569911658764,0.0060457275249064,0.0077150999568403],[-0.024810139089823,-0.0006305740098469,0.0010525810066611],[0.019615050405264,0.041131842881441,-0.0013399235904217]],[[-0.051939453929663,-0.0072819516062737,-0.026572566479445],[0.0051707951352,0.0060821264050901,-0.063899777829647],[-0.00073564675403759,0.021527748554945,0.0035491820890456]],[[-0.012021289207041,0.034321673214436,-0.066412456333637],[-0.039238408207893,0.0018225978128612,0.0061089117079973],[0.015001298859715,-0.031248599290848,0.0028876443393528]],[[0.025584526360035,0.0042258389294147,0.028856333345175],[0.011242807842791,0.0071404883638024,0.031189922243357],[-0.014703438617289,0.036649785935879,-0.0085648018866777]],[[0.043833330273628,0.068619765341282,-0.0079524153843522],[0.036253225058317,-0.0030089146457613,-0.030796019360423],[-0.034256167709827,-0.00065566203556955,0.013463808223605]],[[0.064147062599659,0.018702631816268,0.020286375656724],[-0.018791031092405,0.060148071497679,0.0071776164695621],[-0.031607680022717,0.022310702130198,8.8100441644201e-06]],[[-0.015750471502542,0.016027988865972,-0.034914936870337],[-0.10354278981686,-0.072287030518055,0.044495042413473],[0.019158182665706,-0.037640307098627,-0.013846319168806]],[[-0.017521513625979,-0.064598120748997,-0.0077909412793815],[-0.0034754553344101,-0.03120026178658,0.0093951243907213],[0.053893115371466,0.010407309047878,0.0082930028438568]],[[-0.0027906231116503,0.016365136951208,0.011899849399924],[0.048274789005518,-0.012322878465056,-0.0042328257113695],[0.016989808529615,-0.0098648853600025,-0.049670904874802]],[[0.018993904814124,0.068357899785042,-0.024138571694493],[-0.039711304008961,-0.026156915351748,-0.02141553722322],[0.032036904245615,-0.015264549292624,-0.046425797045231]],[[0.011717044748366,0.047617297619581,0.0031579944770783],[0.023696897551417,0.078562751412392,0.045365888625383],[0.043058138340712,0.036524694412947,0.069518446922302]],[[0.025658996775746,0.065847158432007,0.023213682696223],[0.040354527533054,0.01987249776721,0.0099018746986985],[0.0047301598824561,-0.031490914523602,-0.052070360630751]],[[0.04738025739789,0.034668307751417,0.066634200513363],[0.015480584464967,-0.021723760291934,0.021966058760881],[-0.024727484211326,0.00061668391572312,0.054515089839697]],[[-0.015781052410603,0.030409216880798,0.063381478190422],[0.013739452697337,-0.029976150020957,0.0088606895878911],[-0.041132930666208,-0.021674184128642,0.023316232487559]],[[0.0547752417624,-0.011942448094487,0.016142837703228],[0.0091620683670044,0.040366761386395,-0.00091187725774944],[0.0078875599429011,0.0020675994455814,0.019955037161708]],[[0.01311968266964,0.038924656808376,0.020323803648353],[-0.0024629128165543,0.02872278355062,0.040022876113653],[0.012838079594076,-0.061609569936991,-0.055252052843571]],[[0.050600755959749,0.01571723818779,0.021140215918422],[-0.0032750440295786,-0.001408475684002,0.011969818733633],[0.01611939445138,-0.034972757101059,-0.025394417345524]],[[0.051583644002676,0.051086332648993,0.074096709489822],[0.012362137436867,0.04337901994586,0.0079565532505512],[-0.031867984682322,0.028953777626157,-0.024560704827309]],[[-0.015707433223724,-0.054500479251146,-0.00076581293251365],[-0.052545513957739,-0.0088731599971652,0.016909198835492],[-0.045700937509537,-0.030463585630059,-0.051851037889719]],[[-0.03817094117403,0.021244561299682,0.0090774716809392],[-0.001582553726621,-0.037664711475372,0.0027560531161726],[-0.043070949614048,0.067774571478367,0.010692899115384]],[[-0.040554076433182,0.060085918754339,-0.034578330814838],[0.016323354095221,-0.04186025634408,0.046711206436157],[0.022786805406213,-0.01009972114116,-0.010465729050338]],[[-0.00036404692218639,0.016625566408038,-0.024517755955458],[0.020156675949693,0.012334880419075,0.041002698242664],[-0.034269958734512,0.019701460376382,-0.010904596187174]],[[0.045306667685509,0.092178143560886,0.03254484385252],[0.052971366792917,0.031581062823534,0.084425464272499],[-0.027639713138342,0.030960474163294,-0.049024242907763]],[[-0.0209034178406,0.045515675097704,0.010768670588732],[0.0082833915948868,0.057349372655153,0.062083106487989],[-0.0034151580184698,0.027115041390061,0.0072579584084451]],[[0.035863369703293,0.01526852697134,0.010626497678459],[0.013690648600459,0.024221369996667,0.12738375365734],[0.011189195327461,0.070853032171726,0.018978932872415]],[[0.015694931149483,-0.023611672222614,0.0049954629503191],[0.02093661762774,-0.012539434246719,0.0018367661396042],[0.018200194463134,-0.06439957767725,-0.011647690087557]],[[-0.050138041377068,-0.010678868740797,0.001965444535017],[0.024269329383969,0.017611719667912,0.070023633539677],[-0.0045848512090743,0.00090711028315127,-0.010829068720341]],[[0.022840589284897,-0.014603963121772,0.020442191511393],[0.045183058828115,-0.005979438778013,0.034184094518423],[-0.01095093972981,0.076838158071041,0.010743139311671]],[[0.029329469427466,0.046743523329496,0.0039762421511114],[-0.020572114735842,-0.0021914904937148,-0.0032014253083616],[0.0099645927548409,0.0083496887236834,0.015802280977368]],[[-0.013833285309374,0.034551031887531,0.035053856670856],[0.022977212443948,-0.0084506934508681,-0.048488762229681],[-0.033931244164705,0.021627524867654,-0.028435153886676]],[[0.0075897928327322,0.0037972368299961,0.0077253766357899],[-0.013805797323585,-0.0070368591696024,-0.0067062065936625],[0.053793299943209,-0.023037893697619,0.016060676425695]],[[0.007185828872025,-0.06457445025444,-0.059105299413204],[0.066501744091511,0.016832197085023,0.019639333710074],[-0.070003725588322,-0.0062367748469114,0.0077695176005363]],[[-0.020113650709391,-0.020001532509923,0.026398714631796],[0.039105977863073,-0.078597329556942,-0.044438410550356],[0.0063281338661909,-0.029938075691462,-0.078186497092247]],[[-0.020695883780718,0.010648095048964,-0.04328877478838],[0.0050327405333519,0.011380659416318,-0.011987471953034],[0.0064897583797574,-0.042948111891747,-0.017761258408427]],[[-0.038782153278589,-0.037854094058275,-0.0088260378688574],[0.010774682275951,0.020688632503152,-0.057064302265644],[-0.0054490314796567,0.020782761275768,0.034402247518301]],[[0.011407112702727,0.030134424567223,0.020031681284308],[-0.0046190251596272,0.05521933734417,0.047042153775692],[0.039653912186623,0.0041565289720893,0.051909442991018]],[[0.028012081980705,0.048437245190144,-0.016759676858783],[0.013860456645489,-0.062083162367344,-0.015219489112496],[0.011940382421017,-0.015641834586859,0.050013542175293]],[[0.044351346790791,-0.044343844056129,-0.03602085635066],[-0.047802951186895,-0.017455549910665,0.023888647556305],[0.048030059784651,0.017015216872096,-0.029327612370253]],[[0.011221850290895,0.036506470292807,-0.022636003792286],[0.062153983861208,-0.014506707899272,0.050595160573721],[0.055648788809776,-0.052212242037058,0.020740298554301]],[[0.0081598581746221,-0.028184469789267,-0.030019061639905],[-0.068482778966427,-0.026984238997102,0.0070674228481948],[-0.026489943265915,-0.032167449593544,0.04737613722682]],[[-0.014414089731872,0.044403817504644,0.0031627845019102],[-0.012623062357306,0.092168398201466,-0.0057395994663239],[-0.0047773253172636,0.019419088959694,0.028723454102874]],[[0.0037378000561148,0.0017490901518613,0.01422124914825],[-0.04127860814333,0.0049765384756029,-0.039633471518755],[0.019521180540323,0.012891709804535,0.02900062687695]],[[-0.003842635313049,-0.0022698831744492,0.01147557515651],[-0.023156678304076,0.0019570759031922,-0.040770567953587],[0.057897984981537,-0.073582969605923,-0.030650077387691]],[[0.010998201556504,-0.029506595805287,0.026045758277178],[-0.0023968641180545,0.0092592360451818,0.016788169741631],[0.030263893306255,0.044161044061184,0.005779717117548]],[[0.024629596620798,0.015672842040658,0.0084129245951772],[0.019939070567489,-0.001599389128387,0.016454430297017],[0.0038438991177827,0.057488549500704,0.018765138462186]],[[-0.039509497582912,0.089258924126625,-0.0088007496669888],[-0.019784385338426,-0.0047054891474545,0.034952558577061],[0.0067315087653697,0.038350611925125,-0.024594407528639]],[[0.029775431379676,-0.0071522416546941,-0.021737845614552],[0.015253298915923,0.032681293785572,0.028881441801786],[-0.005439069122076,0.011619263328612,0.026917353272438]],[[0.00028472469421104,-0.003638049820438,0.0094447797164321],[0.025955285876989,0.026612998917699,0.004871531855315],[0.0057642553001642,0.049542251974344,-0.00077217788202688]],[[0.0028653591871262,0.033520188182592,-0.013475613668561],[-0.042348224669695,-0.035708922892809,0.00016871298430488],[0.00032139799441211,-0.066576018929482,-0.050581194460392]],[[0.015219721011817,-0.037669479846954,-0.055196519941092],[0.029692895710468,0.02068617194891,0.023215726017952],[-0.0051956232637167,0.072259835898876,0.013629777356982]],[[0.030008733272552,-0.016952933743596,0.026423346251249],[0.047474034130573,0.025083497166634,0.041359700262547],[-0.0087711680680513,0.021680446341634,0.017262205481529]],[[-0.021188028156757,-0.0069689429365098,0.10897734761238],[0.029421569779515,0.043646328151226,0.012949585914612],[0.012433080933988,-0.042687192559242,0.048067793250084]],[[-0.073472566902637,0.05062398687005,0.051084272563457],[0.055396623909473,-0.0090433889999986,-0.0038533674087375],[0.019832560792565,0.0075742043554783,0.026249032467604]],[[0.0051687574014068,0.030185403302312,-0.0094183012843132],[-0.028799347579479,0.035260256379843,0.0088988235220313],[-0.026827443391085,0.050501942634583,0.032444134354591]],[[-0.029501212760806,-0.015067332424223,-0.019268868491054],[-0.00073806924046949,-0.012378359213471,-0.022626858204603],[-0.0078676184639335,0.0018463531741872,-0.015084004029632]],[[0.061768785119057,0.01771754771471,-0.021079679951072],[-0.021610697731376,-0.035821788012981,-0.012049363926053],[-0.012015264481306,0.00167842337396,0.022137459367514]],[[0.035661172121763,-0.010008856654167,0.04024900123477],[0.025662509724498,0.00069148890906945,0.052285142242908],[0.0010904320515692,0.045541979372501,-0.01683309674263]],[[0.059414524585009,0.0078942570835352,-0.021470885723829],[-0.031420834362507,-0.031469471752644,-0.026115462183952],[-0.0048571480438113,0.014247566461563,0.01275029964745]],[[-0.015364711172879,-0.044361032545567,-0.02091309055686],[0.0082702273502946,-0.034917507320642,0.032654765993357],[-0.046345699578524,0.043884553015232,0.05564472079277]],[[0.0016640323447064,-0.056364174932241,-0.031226079910994],[0.042146317660809,0.023348672315478,-0.044678311794996],[-0.0028362795710564,0.037073317915201,0.021266460418701]],[[-0.0037748527247459,-0.022999214008451,-0.0062051550485194],[-0.053906816989183,0.024835653603077,-0.042974065989256],[0.037506628781557,-0.0013474650913849,-0.083645842969418]],[[0.029462052509189,-0.012462308630347,0.016380568966269],[0.028606530278921,-0.0062890704721212,0.0026514851488173],[-0.020089726895094,-0.029333226382732,0.044124633073807]],[[-0.027584901079535,0.027792261913419,-0.021393487229943],[0.053644672036171,0.0071107735857368,-0.02035347558558],[-0.054255984723568,0.022103244438767,-0.055244974792004]],[[-0.037177558988333,-0.01662895642221,0.0095341103151441],[0.092580921947956,-0.032177604734898,0.05067940428853],[-0.010485388338566,0.037947684526443,0.038962502032518]],[[-0.017704099416733,-0.033297128975391,0.015467599965632],[0.046641182154417,0.026695672422647,-0.02298541739583],[-0.025778187438846,0.044706933200359,-0.059722289443016]],[[-0.0055025699548423,-0.03406860306859,0.012770784087479],[-0.039074767380953,0.031771559268236,0.00022394898405764],[-0.064673885703087,-0.057924617081881,-0.0014087284216657]],[[-0.081872709095478,-0.070284932851791,0.023943040519953],[-0.025968201458454,-0.024061251431704,0.010174301452935],[0.016282269731164,-0.021245768293738,0.0038229173514992]],[[-0.0079691288992763,-0.037058904767036,-0.021447312086821],[-0.013718455098569,-0.041427623480558,-0.0016618727240711],[0.014540463685989,-0.03725615516305,-0.020930903032422]],[[0.013832900673151,-0.024463767185807,-0.021769834682345],[-0.015641340985894,-0.0094530815258622,-0.033611122518778],[0.026860283687711,0.029360797256231,-0.0028922010678798]],[[-0.0067089698277414,-0.0057484712451696,-0.031732257455587],[-0.041671521961689,-0.051545269787312,-0.034275021404028],[-0.053270939737558,-0.0047154133208096,-0.04017711058259]],[[0.0078594982624054,-0.032860212028027,0.048192013055086],[0.0080980695784092,-0.035801440477371,0.0072652567178011],[0.015636561438441,0.014774429611862,-0.022076839581132]],[[-0.029983786866069,0.029120001941919,-0.052177213132381],[0.040137074887753,-0.052222438156605,-0.038513980805874],[-0.024283656850457,0.039021033793688,0.031333897262812]],[[0.012610401958227,-0.048123098909855,-0.028646716848016],[-0.11221466958523,-0.058582097291946,-0.02868328243494],[-0.021527105942369,0.023230573162436,-0.015939824283123]],[[0.024242334067822,0.016474818810821,0.079258516430855],[-0.0031783247832209,0.10727684944868,0.014002955518663],[0.002600914100185,-0.045374289155006,0.031060202047229]],[[0.020947946235538,0.058272555470467,-0.005637118127197],[-0.0074588479474187,0.04454480111599,0.025880388915539],[0.0094810472801328,0.027659114450216,0.021849431097507]],[[-0.015354845672846,-0.0038480469956994,0.017818510532379],[-0.046698711812496,-0.0092450454831123,-0.009204039350152],[-0.0062902569770813,-0.037889435887337,-0.055348422378302]],[[-0.0057974080555141,0.010886312462389,0.029740359634161],[0.0083001907914877,0.010549210943282,0.044547319412231],[0.0020269248634577,-0.038185298442841,0.013879301957786]],[[-0.0056250691413879,0.04074689373374,0.023735905066133],[0.020266648381948,0.032443575561047,-0.056345257908106],[0.018148351460695,0.00072198640555143,0.024125140160322]],[[0.082081519067287,-0.022864839062095,-0.016833566129208],[0.038929302245378,0.022909039631486,-0.0032297358848155],[0.044868901371956,0.0084467167034745,0.018834348767996]],[[-0.054259326308966,-0.021797591820359,0.044677134603262],[-0.0068264864385128,0.042182110249996,0.060462724417448],[0.0010716086253524,0.035241648554802,-0.022138984873891]],[[-0.016290709376335,-0.0004996603820473,-0.011822700500488],[0.0031566717661917,-0.0085252579301596,0.0050718258135021],[0.0076821534894407,0.052042685449123,-0.018519517034292]],[[0.067074097692966,0.019212085753679,-0.046918660402298],[-0.056472599506378,0.040192171931267,-0.0015513392863795],[0.015801090747118,-0.006195024587214,-0.0039549963548779]]],[[[-0.038929253816605,-0.052192252129316,0.084806993603706],[0.017798878252506,0.045791305601597,-0.014548635110259],[0.015399404801428,0.022958474233747,-0.079656541347504]],[[-0.034858908504248,-0.016683395951986,-0.08885433524847],[-0.22670997679234,-0.084295734763145,0.011849668808281],[-0.15650829672813,-0.031697262078524,-0.033238686621189]],[[0.21605652570724,-0.015509072691202,-0.052278183400631],[-0.052576832473278,0.045883916318417,0.061680104583502],[-0.01332123298198,-0.0098009901121259,0.01459302380681]],[[0.11597016453743,0.069455496966839,0.076781511306763],[0.030193006619811,-0.020804286003113,0.017509197816253],[0.03291867300868,-0.034240923821926,0.027360079810023]],[[-0.081148289144039,0.027700742706656,0.062646195292473],[-0.17838083207607,-0.043861620128155,-0.012249492108822],[-0.007048605941236,-0.021675139665604,0.03650114685297]],[[0.046372845768929,0.080501958727837,0.19503350555897],[-0.0043575488962233,0.03314022347331,-0.012062919326127],[-0.033856716006994,-0.0080819521099329,-0.0077859223820269]],[[-0.078012026846409,-0.067429222166538,-0.015758497640491],[0.024720419198275,0.072044372558594,0.038156624883413],[0.11578543484211,0.0074126189574599,-0.03230918571353]],[[0.081404581665993,0.11983589828014,0.089802294969559],[0.042440947145224,0.023651542142034,0.063519217073917],[0.089356392621994,-0.016584448516369,0.040463492274284]],[[-0.092930935323238,-0.062062464654446,0.037539083510637],[0.072631753981113,-0.015388920903206,0.049225877970457],[-0.042402599006891,-0.038214296102524,0.03113866224885]],[[-0.041460048407316,0.087142400443554,-0.072076804935932],[0.032099284231663,0.026952078565955,0.096885196864605],[0.036822538822889,-0.034717716276646,-0.0059294081293046]],[[-0.018991800025105,0.05393011868,-0.0044885687530041],[0.029846034944057,0.035396549850702,-0.0020439713262022],[-0.06011438369751,0.04071044921875,0.03751527145505]],[[-0.059589572250843,0.045118067413568,0.097503192722797],[-0.084600113332272,-0.0028196095954627,-0.016231838613749],[-0.038247678428888,0.10152235627174,0.055105291306973]],[[-0.00062143831746653,0.043555155396461,-0.044924169778824],[-0.11074253171682,0.070586822926998,-0.0038918710779399],[-0.016297642141581,-0.04628562182188,-0.036089338362217]],[[0.026730226352811,0.073271691799164,-0.056640144437551],[-0.25108233094215,0.0026638463605195,0.050823535770178],[-0.039163887500763,0.053385365754366,-0.026612415909767]],[[0.038980066776276,0.079718351364136,-0.0074799144640565],[-0.017892429605126,-0.0066059594973922,0.0011393968015909],[-0.013185195624828,-0.026591960340738,0.042787823826075]],[[0.047378204762936,-0.044113334268332,0.074042640626431],[-0.12391027808189,0.00051317684119567,-0.14747260510921],[0.11870547384024,-0.086905546486378,-0.091466560959816]],[[-0.014369956217706,-0.045835185796022,0.060575496405363],[0.11431009322405,0.042366571724415,0.036842502653599],[-0.039121590554714,0.056062605232,0.015531572513282]],[[-0.074670307338238,-0.065853856503963,-0.08963431417942],[-0.17696741223335,0.15185309946537,0.039418362081051],[-0.075816959142685,0.031731370836496,0.050370454788208]],[[-0.025825804099441,-0.10294834524393,0.061793804168701],[-0.079310029745102,0.03623403981328,-0.028542215004563],[0.026920471340418,0.012703355401754,0.055497664958239]],[[-0.081402122974396,0.011788877658546,-0.12113378942013],[0.13148272037506,-0.036642886698246,-0.057845178991556],[0.023974616080523,0.010772118344903,0.013698910363019]],[[0.059597488492727,-0.11530019342899,0.012080210261047],[0.11404863744974,0.14090721309185,-0.30652797222137],[-0.077339112758636,-0.10228922963142,0.0002695971634239]],[[-0.03005363792181,0.063696458935738,0.06886450201273],[0.094872273504734,-0.019363081082702,-0.044482264667749],[0.080336689949036,-0.0042998632416129,-0.015674395486712]],[[0.025627709925175,-0.18847557902336,0.083868287503719],[-0.15720768272877,-0.043217185884714,0.098536938428879],[-0.050061963498592,-0.045307800173759,-0.14568065106869]],[[0.027276957407594,-0.3142529129982,0.22642379999161],[-0.017571315169334,0.089185498654842,0.028227629140019],[0.033461723476648,-0.05426562204957,0.075987368822098]],[[0.055390849709511,0.015293147414923,0.046399317681789],[-0.0196971911937,-0.019169429317117,-0.031902652233839],[0.014817298389971,-0.028727075085044,-0.027570987120271]],[[-0.03690842166543,0.08026546984911,0.085147097706795],[-0.11086611449718,-0.049186088144779,0.0053541325032711],[-0.022762944921851,0.077720120549202,0.058599714189768]],[[-0.0083926459774375,-0.006902031134814,-0.20070953667164],[0.097809098660946,0.097534291446209,0.048196762800217],[-0.026576707139611,0.026255575940013,0.06320059299469]],[[0.061261177062988,0.041664279997349,0.070575751364231],[0.094623073935509,-0.038418535143137,0.01375428121537],[0.036091171205044,-0.012516065500677,0.012422308325768]],[[-0.068055294454098,-0.15263959765434,-0.1483521014452],[-0.05907217040658,0.0049432488158345,0.026717741042376],[0.076655276119709,-0.028289014473557,0.065990008413792]],[[-0.05359610170126,0.11568884551525,0.023064913228154],[-0.04617752507329,-0.13270123302937,0.058507390320301],[0.058841038495302,0.060368407517672,0.018606603145599]],[[-0.036648388952017,-0.024026788771152,0.092542171478271],[0.053805246949196,-0.048395659774542,-0.020640192553401],[0.064823761582375,-0.019852735102177,0.006851997692138]],[[-0.016508568078279,-0.087252058088779,-0.036247957497835],[-0.026809120550752,-0.021426634863019,-0.018765546381474],[-0.034391287714243,-0.0071560614742339,-0.035919364541769]],[[-0.013792266137898,-0.017035948112607,0.083011694252491],[-0.032836511731148,0.062050756067038,0.030828971415758],[0.074521012604237,0.051903791725636,0.10299740731716]],[[-0.0095148403197527,0.090152807533741,0.094834052026272],[-0.037959430366755,0.067945532500744,-0.0076817367225885],[0.12266876548529,-0.032003536820412,-0.00798349827528]],[[0.045313883572817,-0.065925300121307,-0.084645204246044],[0.031543366611004,0.067969150841236,-0.049873873591423],[0.19077323377132,-0.05329042673111,-0.15785072743893]],[[-0.023277182132006,-0.048577174544334,0.07281843572855],[0.097433552145958,-0.033785406500101,0.12573654949665],[-0.062815748155117,0.019374275580049,-0.0074832532554865]],[[0.0056766197085381,-0.017964581027627,0.13824059069157],[0.042013417929411,0.042473696172237,0.022919500246644],[-0.027540128678083,0.029740273952484,-0.020014453679323]],[[0.06003824993968,0.0088048428297043,0.061392959207296],[0.026959603652358,0.0081658167764544,0.012967007234693],[-0.0050819930620492,-0.030665179714561,0.048109579831362]],[[0.14283372461796,-0.13660964369774,0.10355747491121],[0.031662188470364,-0.095858447253704,-0.09796891361475],[-0.015102547593415,-0.01645078137517,0.056367628276348]],[[0.010039824992418,0.15311893820763,0.044960640370846],[0.065567389130592,0.097977079451084,0.0050632786005735],[-0.0018444684101269,0.039194244891405,0.043056156486273]],[[-0.020715959370136,0.057103276252747,0.048079174011946],[0.039206627756357,-0.013396403752267,0.049347467720509],[-0.066197425127029,0.0041458387859166,0.085873149335384]],[[0.039076238870621,0.11202701181173,0.15774342417717],[0.10358102619648,0.079451262950897,0.11347974836826],[-0.071487367153168,0.044010143727064,0.0069708824157715]],[[-0.0069513879716396,0.066247470676899,0.01847979798913],[0.037800367921591,0.055549532175064,0.047118086367846],[0.025609340518713,0.034544415771961,0.11313427239656]],[[-0.050104230642319,0.056417427957058,0.071889989078045],[-0.0066500501707196,-0.080593772232533,-0.0056082471273839],[-0.041103772819042,-0.021032012999058,0.031607232987881]],[[0.12093048542738,-0.086892671883106,0.050792925059795],[0.034416578710079,0.071850553154945,-0.0027244079392403],[-0.031838089227676,0.015435820445418,0.055306259542704]],[[0.00044190208427608,-0.025262957438827,-0.020950768142939],[0.027875993400812,-0.020112695172429,0.049490459263325],[0.048042226582766,0.11797048896551,0.021983562037349]],[[-0.06904736161232,0.0057770628482103,-0.053241528570652],[-0.059771452099085,-0.01161989569664,0.069174446165562],[-0.041716054081917,-0.05377059802413,-0.028920097276568]],[[0.0077288737520576,-0.082807220518589,-0.044080708175898],[-0.060206945985556,-0.036891613155603,-0.0043358965776861],[0.026262022554874,0.041857991367579,-0.020170837640762]],[[-0.030788360163569,0.044555015861988,-0.056037671864033],[-0.00075950298923999,0.10703954845667,-0.0064101759344339],[-0.028498146682978,0.032610841095448,0.0085032414644957]],[[0.041147403419018,-0.02250337973237,0.018139358609915],[-0.060867920517921,-0.041240878403187,-0.11050092428923],[-0.031101368367672,-0.029174279421568,-0.024280609562993]],[[0.31505900621414,-0.13399977982044,0.049315650016069],[-0.075250320136547,0.0058060251176357,-0.1663640588522],[-0.10212734341621,0.097430668771267,0.060820993036032]],[[-0.043433487415314,0.017015838995576,-0.095801778137684],[0.17141070961952,0.027537241578102,0.032467849552631],[-0.049276158213615,-0.052626892924309,-0.042486820369959]],[[-0.020295817404985,0.052455000579357,0.022635668516159],[0.044049512594938,0.0090278927236795,-0.025310087949038],[0.033669866621494,0.085723020136356,0.11189395189285]],[[0.054868366569281,0.10160457342863,-0.047950744628906],[0.0060416283085942,0.019895659759641,-0.0051347715780139],[0.095217034220695,-0.059389136731625,0.045071627944708]],[[0.053389318287373,-0.06248901411891,0.25472527742386],[-0.073006875813007,0.15756513178349,0.077649131417274],[-0.13347864151001,-0.0040326463058591,0.013255001977086]],[[0.059774532914162,-0.081716634333134,-0.15714605152607],[0.12901625037193,0.00083309825276956,0.013435507193208],[-0.011524438858032,-0.079346157610416,-0.021524630486965]],[[-0.07084658741951,0.048144020140171,0.010225036181509],[-0.018169160932302,0.0729655995965,-0.019289778545499],[0.039649114012718,-0.05918338522315,0.028984712436795]],[[0.019700286909938,-0.14765787124634,-0.10665372759104],[-0.10492558777332,-0.0428426861763,-0.011390876024961],[-0.026504792273045,-0.014683016575873,-0.20687678456306]],[[-0.021745692938566,0.082440420985222,-0.026584872975945],[0.11380537599325,-0.11690685898066,0.14863772690296],[0.14598809182644,-0.051247715950012,-0.061296999454498]],[[-0.0067954547703266,-0.053726803511381,0.075599111616611],[-0.033979315310717,-0.057128593325615,-0.083006106317043],[-0.039660219103098,-0.03927418962121,0.0043537253513932]],[[0.0093848668038845,0.023182464763522,-0.01951047219336],[0.14134441316128,-0.021906174719334,0.044452328234911],[-0.044040843844414,0.0067213634029031,-0.025358077138662]],[[-0.031847987323999,0.017460886389017,-0.075825601816177],[-0.054237194359303,0.0012563228374347,-0.087275072932243],[-0.12830121815205,-0.068775936961174,0.00059469533152878]],[[0.085467822849751,-0.099851347506046,-0.13122196495533],[-0.033992927521467,-0.027015393599868,-0.021746195852757],[-0.023319315165281,0.055340655148029,-0.077722124755383]],[[-0.02096982486546,0.051301147788763,0.029060089960694],[-0.0092401392757893,-0.049085948616266,-0.057841826230288],[0.075487107038498,0.035756412893534,-0.010943561792374]],[[-0.18764974176884,0.15193636715412,0.012298936024308],[-0.087098397314548,-0.12562251091003,0.088699094951153],[-0.012705150060356,-0.092882990837097,0.063253127038479]],[[-0.11591845005751,-0.25476810336113,0.39753153920174],[0.0069388533011079,-0.0045985314063728,0.075114294886589],[0.055999778211117,0.16573439538479,0.027145078405738]],[[0.14826300740242,0.016357382759452,-0.043945804238319],[-0.094660371541977,0.052683763206005,-0.007390359416604],[0.040504325181246,0.019264105707407,-0.047324854880571]],[[-0.011050924658775,-0.064815245568752,-0.091053731739521],[0.034091766923666,-0.099232338368893,0.090105503797531],[0.033984292298555,0.067788228392601,0.04588832706213]],[[0.006647122092545,0.021043121814728,0.0009445667383261],[0.11127591878176,0.10347218811512,0.035451885312796],[-0.0037761998828501,0.012263824231923,-0.031422171741724]],[[0.023767404258251,-0.015138079412282,0.10424235463142],[0.0052819456905127,0.067523948848248,-0.013807515613735],[0.037626352161169,-0.19792574644089,0.053649868816137]],[[-0.11093669384718,-0.010903235524893,0.11771325021982],[0.037583097815514,0.057853061705828,0.13107714056969],[0.047163035720587,-0.023959206417203,-0.059389110654593]],[[-0.22348581254482,-0.17740862071514,0.026567317545414],[-0.026357324793935,-0.20928797125816,0.020488722249866],[-0.027233337983489,0.049068808555603,-0.0091250035911798]],[[-0.040082670748234,-0.063376799225807,0.13812392950058],[-0.072554402053356,-0.025544408708811,0.014527588151395],[-0.14492192864418,-0.013552056625485,-0.041530448943377]],[[-0.059965956956148,0.09911136329174,-0.075749166309834],[0.031214023008943,-0.0021360784303397,0.095590993762016],[0.088312655687332,-0.024348417297006,-0.052054382860661]],[[0.027116410434246,0.064628519117832,-0.075184114277363],[-0.021666884422302,-0.03309652581811,0.03949261456728],[-0.10460690408945,0.026176244020462,0.064558312296867]],[[-0.081365473568439,0.079253412783146,-0.064887456595898],[-0.050766248255968,-0.087235517799854,0.018289726227522],[-0.0054797399789095,0.0091657862067223,-0.022875420749187]],[[-0.051203832030296,-0.075623288750648,0.02201578579843],[0.087637946009636,0.0034750385675579,-0.015304567292333],[0.15535187721252,0.074081726372242,0.13360580801964]],[[0.12518641352654,-0.02733076363802,0.17625673115253],[0.095618098974228,0.057342074811459,0.09722163528204],[0.13516499102116,0.095298521220684,0.058977898210287]],[[0.084347859025002,0.029642626643181,-0.051291592419147],[-0.0081453202292323,-0.057694736868143,0.10618313401937],[0.074229136109352,0.03188718855381,0.058301035314798]],[[-0.039626777172089,-0.064213968813419,-0.12216340005398],[0.028517117723823,0.066378399729729,0.06016318872571],[-0.0020303265191615,0.099482528865337,0.0080320928245783]],[[-0.00075050082523376,0.10236243158579,0.034973695874214],[-0.062447030097246,0.030362179502845,-0.024860380217433],[0.036050461232662,0.06404685229063,0.08431688696146]],[[-0.13040371239185,-0.17531387507915,-0.0068716490641236],[0.05196563526988,-0.067556172609329,0.071056827902794],[0.013396747410297,-0.015387360937893,-0.018479892984033]],[[0.0052262544631958,-0.0087805464863777,-0.17225228250027],[0.070111833512783,-0.028129510581493,0.0044105006381869],[-0.088283486664295,0.02730624563992,-0.030148137360811]],[[0.016117399558425,0.077421277761459,0.016789671033621],[0.082963071763515,0.056025564670563,0.11321428418159],[-0.0072390954010189,0.048442631959915,-0.043248545378447]],[[0.064715333282948,-0.23101598024368,0.20128972828388],[0.060070291161537,-0.064549900591373,-0.015074077993631],[0.13575309514999,-0.027305772528052,0.088903002440929]],[[0.02483931556344,-0.029842151328921,-0.031410127878189],[-0.024499980732799,-0.081971667706966,0.06775951385498],[-0.038280170410872,-0.047047112137079,0.041036065667868]],[[-0.060060359537601,0.26252219080925,-0.075516253709793],[-0.065747119486332,-0.016802038997412,0.12842068076134],[-0.024536427110434,0.090843796730042,-0.012894372455776]],[[0.21439835429192,-0.08959686756134,0.010911006480455],[0.039079446345568,-0.001526192529127,0.00086921791080385],[0.049601409584284,0.05000864341855,0.034097995609045]],[[0.15030421316624,-0.13814526796341,0.042374990880489],[0.090448528528214,0.050619311630726,0.14274798333645],[-0.059929713606834,0.094740241765976,0.080910988152027]],[[-0.16914415359497,-0.0049962983466685,-0.044751547276974],[-0.035613674670458,-0.098496802151203,0.030226647853851],[-0.023396784439683,0.086633659899235,0.038298439234495]],[[0.034861333668232,0.14635516703129,-0.012406224384904],[-0.061952564865351,0.10921891778708,-0.14345996081829],[-0.10043409466743,-0.050686977803707,0.031944595277309]],[[-0.10064189136028,0.067257329821587,-0.047348011285067],[0.18783508241177,-0.031362056732178,-0.097025275230408],[0.052814327180386,-0.077986031770706,0.0028989389538765]],[[0.036448437720537,-0.00049556751037017,0.010639550164342],[0.081338375806808,0.11923190206289,0.10340648889542],[0.04499126970768,-0.028936309739947,-0.10538214445114]],[[-0.0063126157037914,-0.17011474072933,0.10828553885221],[0.034494023770094,-0.095466502010822,0.067346967756748],[0.027199754491448,-0.068189054727554,0.016296893358231]],[[-0.1566222012043,-0.037455096840858,-0.048570416867733],[-0.092124074697495,-0.033277779817581,-0.06258000433445],[-0.084038436412811,-0.1581787019968,0.041241399943829]],[[-0.020818082615733,-0.10412642359734,-0.11235490441322],[0.025128602981567,0.04650741443038,0.050011452287436],[0.077947720885277,0.15388834476471,0.04562346637249]],[[-0.0091506456956267,-0.026909587904811,0.078458324074745],[0.048373270779848,-0.10754403471947,-0.043919764459133],[-0.045961413532495,-0.11218863725662,-0.1111203879118]],[[0.036268502473831,-0.043983224779367,-0.00073969835648313],[0.0059314798563719,0.089353516697884,0.11243043839931],[0.10726759582758,0.055393651127815,0.027073714882135]],[[0.15199612081051,-0.067638769745827,-0.060831680893898],[-0.024153778329492,0.058656450361013,0.017514411360025],[-0.015927063301206,0.0040004877373576,0.14714074134827]],[[0.092070296406746,0.093967728316784,0.012804783880711],[0.0096029918640852,-0.0037553680595011,0.020074328407645],[-0.00029321596957743,0.036804918199778,0.024496680125594]],[[-0.16263815760612,0.041925169527531,0.015838576480746],[-0.045913960784674,-0.034125536680222,0.017575167119503],[-0.0027990646194667,-0.069164209067822,-0.051148697733879]],[[0.0030522102024406,0.0091492487117648,0.055074755102396],[0.058322090655565,-0.089886032044888,0.078332647681236],[0.05011236295104,0.044236615300179,0.11560242623091]],[[-0.15699411928654,0.080731399357319,0.05724149569869],[-0.012642565183342,0.11560460180044,0.12418241798878],[0.13958646357059,-0.029252542182803,-0.030325131490827]],[[-0.0044713257811964,-0.06712257117033,-0.040277987718582],[-0.079799078404903,-0.14405691623688,-0.12372117489576],[0.02290384285152,0.11568523943424,0.07013039290905]],[[-0.12876945734024,0.092266246676445,0.029590642079711],[-0.0086262952536345,0.10466288775206,-0.0072577884420753],[0.12962421774864,-0.012442278675735,-0.023388866335154]],[[0.13585379719734,-0.022572075948119,-0.027191765606403],[0.015953708440065,0.011964536271989,0.038793653249741],[0.0079392464831471,0.025662491098046,0.071316450834274]],[[0.038498867303133,0.030259652063251,-0.087324731051922],[-0.1603932082653,0.053111802786589,-0.035599302500486],[0.025920214131474,0.046591207385063,-0.052622761577368]],[[-0.10010222345591,-0.12926371395588,0.18969908356667],[-0.053231496363878,-0.040605239570141,-0.0072467010468245],[0.033017184585333,-0.13646237552166,-0.039700802415609]],[[0.041189894080162,-0.10205301642418,-0.21039986610413],[0.024510119110346,0.23548236489296,0.073569677770138],[0.086129859089851,0.040903691202402,-0.047721777111292]],[[-0.080735072493553,0.1192342042923,-0.11876185238361],[0.081890642642975,-0.018894968554378,-0.031617894768715],[-0.086115598678589,-0.030039805918932,0.046746671199799]],[[0.082779809832573,-0.022517438977957,-0.034766361117363],[0.0017705135978758,-0.054683677852154,-0.04985573142767],[-0.006901369895786,0.031877506524324,0.013757822103798]],[[-0.011629019863904,-0.043236095458269,-0.15476259589195],[-0.082562901079655,-0.03448049351573,0.0065816277638078],[-0.0041107703000307,-0.0047759721055627,-0.030744867399335]],[[-0.18167607486248,0.069256193935871,0.036245308816433],[-0.0090204868465662,-0.059597749263048,0.07237397134304],[0.03143598139286,0.095497220754623,0.021521452814341]],[[0.089132994413376,0.063003584742546,0.0035994495265186],[0.07220134884119,-0.047846425324678,-0.016201876103878],[-0.014183205552399,0.010752801783383,0.0076772402971983]],[[-0.03843667730689,-0.066321022808552,-0.034184269607067],[-0.039565369486809,-0.15088137984276,-0.02947854809463],[-0.0044288658536971,0.029047645628452,0.076414942741394]],[[-0.098983705043793,-0.23950761556625,0.16995589435101],[-0.15269826352596,-0.02536422200501,-0.030329195782542],[-0.095515921711922,-0.05299636349082,-0.0085778515785933]],[[0.069314181804657,0.062085915356874,-0.04491151124239],[-0.049251142889261,0.045692466199398,0.047315448522568],[-0.024735739454627,0.12172469496727,0.039278533309698]],[[0.034184493124485,0.057114165276289,-0.10000945627689],[-0.080228365957737,-0.061327915638685,0.03600974753499],[0.072814591228962,0.059501588344574,0.038888067007065]],[[0.056112118065357,-0.095250278711319,-0.085310012102127],[-0.0082995481789112,0.0092343371361494,0.09175430983305],[0.018874954432249,-0.066166833043098,0.04966888204217]],[[0.08393806219101,0.06365068256855,0.071066349744797],[-0.021742910146713,0.013052279129624,0.11567627638578],[-0.10837437212467,0.030763141810894,-0.031252402812243]],[[-0.042264997959137,0.061157640069723,0.11522904783487],[0.00086285726865754,0.017234768718481,0.050159074366093],[-0.10611315071583,-0.0052066873759031,-0.060655415058136]],[[-0.074042730033398,-0.061709173023701,0.037281945347786],[0.13817471265793,0.090241521596909,-0.19449520111084],[-0.21125471591949,-0.019506206735969,0.069508567452431]],[[0.010337065905333,-0.04279699921608,0.0081373490393162],[-0.033349443227053,-0.018882498145103,0.026125134900212],[-0.045172519981861,0.08172769099474,-0.022449936717749]],[[-0.0043500792235136,0.030259750783443,-0.0064007509499788],[0.094784647226334,0.11724234372377,-0.037491105496883],[0.023651948198676,0.10855824500322,-0.14273519814014]],[[0.05656722933054,0.052595734596252,0.077048450708389],[0.022430591285229,-0.10076940059662,-0.056563969701529],[0.026487708091736,0.066505022346973,-0.11626555025578]],[[0.023723676800728,0.0039334357716143,0.0086793722584844],[0.037359919399023,0.14206422865391,0.016789205372334],[-0.029625447466969,-0.041129991412163,0.055259294807911]],[[-0.02532803080976,-0.12816002964973,0.47693499922752],[0.1431971937418,-0.099374987185001,-0.03117273375392],[-0.012805777601898,-0.016534959897399,-0.12934938073158]],[[-0.18214520812035,0.056205317378044,0.020433047786355],[0.020304542034864,-0.091327466070652,-0.015257046557963],[0.020607255399227,-0.080912970006466,-0.067386701703072]]],[[[-0.073454685509205,-0.17221823334694,-0.077068440616131],[0.090029366314411,-0.03395651653409,0.049776829779148],[0.12626928091049,0.033889852464199,0.0068706851452589]],[[0.0043144132941961,0.11180754750967,0.18018010258675],[0.039921622723341,0.033895809203386,-0.15720139443874],[-0.094548992812634,-0.051325734704733,0.030102239921689]],[[0.059699267148972,0.021872771903872,-0.11935545504093],[-0.012056481093168,-0.073254510760307,-0.1250222325325],[-0.012929803691804,0.11299528926611,-0.046033676713705]],[[0.016792248934507,-0.0023268258664757,-0.010016522370279],[0.023827658966184,0.038422543555498,-0.036765802651644],[-0.026914529502392,-0.23318780958652,0.092854790389538]],[[-0.085911720991135,-0.1283318400383,0.038637056946754],[-0.034537822008133,0.0097674578428268,0.057815056294203],[0.0098421908915043,-0.0099989091977477,0.034912247210741]],[[-0.027729287743568,-0.015124100260437,-0.046632178127766],[-0.0031514011789113,0.048751160502434,-0.015842953696847],[-0.0263880956918,0.0094231590628624,-0.059168759733438]],[[-0.023497013375163,-0.029890256002545,0.0050964872352779],[-0.013266268186271,0.078487396240234,-0.085105270147324],[-0.0046447603963315,0.045835323631763,-0.0004966106498614]],[[-0.024392284452915,-0.10594795644283,-0.0090523716062307],[0.012868655845523,-0.014533662237227,-0.017479615285993],[-0.00029248557984829,-0.04142189770937,-0.1051349490881]],[[-0.030424343422055,-0.040005408227444,0.018697161227465],[0.017135705798864,-0.021422076970339,0.048469420522451],[0.0079454742372036,-0.062828026711941,0.073030680418015]],[[0.13945807516575,0.0075255590490997,-0.16835966706276],[0.01578495465219,-0.028807613998652,-0.10873771458864],[0.18353207409382,0.089906737208366,-0.0057579637505114]],[[0.02905391715467,0.068901114165783,0.019960146397352],[0.059300974011421,0.021277336403728,-0.047257740050554],[-0.025387741625309,-0.063952006399632,-0.18451473116875]],[[0.0075389235280454,0.0011674979468808,-0.03876518830657],[-0.019669873639941,0.071327023208141,-0.026348730549216],[0.064621061086655,0.0030628198292106,-0.098498545587063]],[[-0.075091347098351,0.03152409568429,0.0042591853998601],[-0.011109354905784,0.0011193386744708,-0.095699764788151],[-0.059235893189907,0.023366978392005,0.078655675053596]],[[-0.0080156978219748,0.0014132525539026,-0.12932729721069],[-0.076293110847473,-0.033941701054573,-0.097654327750206],[0.10830529779196,0.036950651556253,0.010695848613977]],[[0.041431296616793,0.070503577589989,-0.024191904813051],[-0.090183474123478,-0.089012414216995,-0.0050910338759422],[-0.03232391551137,-0.098252326250076,0.016555218026042]],[[0.097427524626255,0.11686599254608,-0.06811760365963],[-0.088049858808517,0.041160527616739,-0.036063440144062],[-0.017458261922002,-0.063599541783333,0.025609876960516]],[[-0.027852475643158,-0.029199667274952,0.10674306750298],[0.0057731997221708,-0.0079134609550238,0.027368841692805],[-0.017537923529744,0.017257463186979,0.018813328817487]],[[0.038246192038059,0.10555218160152,0.18048894405365],[-0.0077927936799824,-0.013085993938148,0.050397083163261],[-0.17680922150612,0.039168421179056,-0.00089480588212609]],[[-0.094335928559303,-0.11763513088226,0.10406175255775],[0.014351586811244,0.025984991341829,0.069650188088417],[-0.061008475720882,0.099763460457325,0.014155277982354]],[[0.06339155882597,0.027009900659323,-0.02824978530407],[0.089437015354633,0.039884343743324,-0.048706594854593],[0.042022626847029,0.078506790101528,-0.039644323289394]],[[0.016216978430748,-0.0015575459692627,0.030108442530036],[-0.090862274169922,-0.069391898810863,0.039022330194712],[-0.10992129892111,-0.23389372229576,0.032193560153246]],[[-0.019883669912815,0.11384358257055,-0.00413060747087],[0.066131353378296,0.08013104647398,-0.061182640492916],[0.07333105057478,-0.16617415845394,-0.0026432843878865]],[[0.12604403495789,0.065816663205624,0.17354016005993],[0.045566260814667,-0.01247710455209,-0.030545273795724],[-0.13408705592155,-0.02600684762001,-0.074661567807198]],[[-0.058239616453648,-0.018484748899937,0.0093563143163919],[0.15300638973713,0.03670097142458,-0.037851210683584],[0.06818626075983,-0.092986382544041,-0.026381187140942]],[[0.034423913806677,0.067787311971188,-0.33654886484146],[0.086122311651707,0.0055443691089749,-0.05730688944459],[-0.094209663569927,-0.059326462447643,0.070743627846241]],[[0.043572839349508,0.079804934561253,-0.066909648478031],[-0.073261216282845,-0.058426704257727,0.0331164970994],[-0.037345446646214,-0.035546932369471,-0.060712274163961]],[[-0.05823078006506,-0.14252735674381,0.033696345984936],[-0.068378143012524,-0.036255449056625,-0.05600930005312],[0.041744943708181,-0.063082963228226,-0.0082327993586659]],[[-0.11638107150793,-0.014799514785409,-0.028839951381087],[-0.093465015292168,-0.052255935966969,-0.045090243220329],[-1.4419219951378e-05,-0.13203845918179,0.08189407736063]],[[0.073290482163429,0.21833354234695,-0.0070666805841029],[0.049252346158028,0.046585608273745,0.0020988923497498],[-0.073936514556408,-0.085704028606415,-0.041286837309599]],[[0.024963160976768,0.025107441470027,0.1152887493372],[0.042705703526735,-0.027725651860237,0.0079313544556499],[-0.0088598886504769,-0.042842902243137,0.061248831450939]],[[0.023237800225616,-0.013583064079285,-0.031953360885382],[-0.018382981419563,-0.072430022060871,0.021685875952244],[0.036879982799292,0.037904374301434,0.063784457743168]],[[-0.036098044365644,-0.013421557843685,0.095584727823734],[-0.0087901828810573,-0.021375449374318,-0.089582800865173],[-0.060883831232786,-0.048186268657446,0.090882375836372]],[[-0.005163159687072,-0.083746537566185,-0.076185047626495],[0.085446141660213,-0.025159686803818,-0.01752326823771],[-0.033594392240047,0.054722331464291,-0.0067264246754348]],[[-0.16766862571239,-0.043367322534323,-0.02200348675251],[0.026472264900804,-0.038966719061136,0.032544832676649],[-0.0066654193215072,0.031252264976501,0.1391369998455]],[[0.045844756066799,-0.079550482332706,0.0090322159230709],[0.010581441223621,-0.028630865737796,-0.045518133789301],[0.075396828353405,0.060842148959637,0.01077083684504]],[[-0.0068721384741366,0.013148208148777,-0.017971009016037],[-0.021001996472478,-0.025062374770641,-0.008049514144659],[-0.12443731725216,0.0039865700528026,0.010934107936919]],[[0.15097874403,0.081315331161022,0.07082860916853],[-0.015353583730757,0.02775989100337,0.069170691072941],[-0.027135398238897,-0.099937327206135,-0.036168787628412]],[[0.024594731628895,0.0038930561859161,-0.18637536466122],[-0.0090038385242224,-0.042797077447176,0.042808830738068],[0.028803806751966,0.070333324372768,-0.083312295377254]],[[0.061621189117432,0.015129311010242,-0.0091061079874635],[0.029717827215791,-0.18346199393272,0.048319708555937],[-0.026791952550411,-0.13241176307201,-0.039169084280729]],[[-0.016056250780821,-0.011067945510149,0.0028492740821093],[0.017746182158589,0.040916658937931,-0.083500541746616],[-0.014712472446263,0.018662678077817,0.028684180229902]],[[-0.035142052918673,-0.005247903522104,-0.016861226409674],[-0.0089921681210399,-0.091630697250366,-0.00739606609568],[0.065395891666412,0.042982902377844,-0.020136890932918]],[[-0.06372094899416,0.0046776565723121,0.10960283130407],[0.024127542972565,0.093137256801128,0.04121970385313],[0.020647101104259,0.042942114174366,0.054731089621782]],[[-0.05261504650116,0.10504457354546,-0.16502384841442],[-0.051320116966963,-0.053241811692715,0.13297414779663],[-0.11038137972355,0.069554626941681,-0.13560868799686]],[[-0.030292296782136,-0.033536363393068,-0.023549001663923],[0.024143358692527,0.033274363726377,-0.080941289663315],[0.012561551295221,0.00048642672481947,-0.019472913816571]],[[-0.15221640467644,-0.016977995634079,-0.006612129509449],[-0.0093476306647062,0.010377569124103,0.012915131635964],[0.025526089593768,0.03169571980834,-0.037529069930315]],[[-0.15480454266071,0.072832249104977,-0.13444383442402],[0.054487068206072,-0.15319135785103,0.040689941495657],[-0.021428233012557,0.050923738628626,-0.13424815237522]],[[-0.013174950145185,0.044684555381536,-0.049123968929052],[0.063151381909847,-0.16498810052872,-0.069861456751823],[-0.075536027550697,-0.14219217002392,0.03363037481904]],[[-0.013953278772533,-0.1715120524168,-0.03721135109663],[-0.051296196877956,-0.065692327916622,0.028941126540303],[0.057585712522268,-0.0058783506974578,-0.019583100453019]],[[-0.070967689156532,-0.018569778650999,-0.030910203233361],[-0.083922825753689,-0.01358294673264,-0.064755417406559],[0.019825680181384,-0.02525107562542,-0.024314409121871]],[[-0.00030916347168386,-0.0022465863730758,0.054702013731003],[-0.093806713819504,-0.055710706859827,0.073468960821629],[-0.048461481928825,-0.029502145946026,0.052505418658257]],[[0.031513646245003,0.011575245298445,-0.029130214825273],[-0.013554733246565,0.015017630532384,-0.0072273076511919],[-0.026344543322921,-0.016119040548801,-0.11099481582642]],[[0.027246192097664,0.087554335594177,0.0072546117007732],[0.057857114821672,-0.040759779512882,-0.064224146306515],[0.00077305600279942,-0.045055765658617,-0.11129379272461]],[[-0.029194321483374,-0.0028831264935434,-0.05759884417057],[-0.10002414137125,0.094627648591995,-0.048612751066685],[-0.028521941974759,0.087971769273281,-0.052853431552649]],[[0.027234425768256,-0.0094916447997093,-0.014056950807571],[0.01448879763484,0.093411318957806,-0.021512063220143],[-0.0050329701043665,-0.022239942103624,-0.014517118223011]],[[0.053183190524578,0.013270941562951,-0.051271095871925],[-0.021401239559054,-0.0035546903964132,-0.029369451105595],[-0.048312790691853,0.046333201229572,0.079043708741665]],[[0.0289093144238,-0.080178625881672,0.1058614179492],[-0.015727968886495,0.040378406643867,-0.055737894028425],[0.0037001266609877,0.018534047529101,-0.031703647226095]],[[0.056715071201324,-0.040193572640419,-0.017148209735751],[-0.17128355801105,0.011064562015235,0.019572848454118],[-0.063889801502228,0.10200126469135,0.00035965366987512]],[[0.060380075126886,-0.11565856635571,0.051119085401297],[-0.017791636288166,-0.049551792442799,0.010587121360004],[0.11937166750431,0.08486171066761,-0.067849300801754]],[[-0.04320827126503,-0.086029037833214,-0.15342691540718],[-0.025932744145393,0.080256752669811,-0.07206404209137],[0.017796158790588,-0.063958257436752,-0.062748789787292]],[[-0.15119513869286,-0.0050993543118238,-0.038672648370266],[-0.016897710040212,0.024742180481553,-0.081410892307758],[0.12084662914276,-0.059814739972353,0.056069016456604]],[[0.033238101750612,0.016644256189466,-0.020019073039293],[0.037476491183043,-0.027797626331449,-0.07735238224268],[-0.11425574868917,-0.032585144042969,0.032006338238716]],[[0.023767193779349,-0.032070472836494,-0.012594717554748],[-0.01973931491375,0.024761350825429,-0.099000759422779],[-0.0083905085921288,-0.0056569296866655,-0.010644291527569]],[[-0.0023863657843322,0.020686101168394,-0.055537883192301],[-0.077173866331577,-0.21610574424267,-0.16507151722908],[0.079375006258488,0.031369987875223,-0.098729118704796]],[[0.074418567121029,0.016923662275076,0.02460465580225],[0.11945952475071,0.025974202901125,0.069705814123154],[-0.0030543126631528,0.01007523201406,-0.053439848124981]],[[-0.028777133673429,-0.05059252679348,0.036742009222507],[-0.02258369140327,-0.032988652586937,-0.0095092281699181],[0.06953588873148,0.074995085597038,0.076255694031715]],[[-0.10508427023888,0.012514796108007,0.10113836824894],[-0.016274074092507,-0.046732809394598,-0.050109218806028],[0.0616644769907,-0.029232041910291,0.067216448485851]],[[-0.029730757698417,-0.042273126542568,0.0067032813094556],[-0.05182734131813,-0.00089808815391734,0.04726891964674],[0.083960838615894,0.024030234664679,0.04199181124568]],[[0.0023187061306089,-0.020429929718375,-0.083029441535473],[-0.010343058034778,-0.0098561560735106,-0.0048468024469912],[0.023896753787994,-0.029675340279937,-0.025459058582783]],[[0.086798474192619,-0.071396738290787,-0.022247234359384],[-0.050924383103848,-0.042946998029947,0.028482524678111],[0.089492611587048,0.023289266973734,0.0081697655841708]],[[-0.10205484181643,-0.1010806709528,0.083330929279327],[0.035612683743238,0.034525312483311,0.10262948274612],[-0.02659852989018,-0.060212936252356,0.069811552762985]],[[-0.022843901067972,0.052603386342525,0.084941305220127],[-0.038725506514311,0.10522300004959,-0.0043060034513474],[0.016875453293324,0.075883418321609,-0.085275486111641]],[[0.067952811717987,-0.044000007212162,-0.051709767431021],[-0.028034949675202,-0.050797358155251,-0.0052930656820536],[0.039629515260458,-0.04214870557189,0.14486795663834]],[[-0.048906780779362,-0.12865127623081,-0.020091691985726],[-0.20909038186073,-0.054429698735476,-0.061958465725183],[-0.072051808238029,0.0021962353494018,0.030363934114575]],[[-0.0157665386796,0.0071969325654209,0.1071630269289],[-0.027289662510157,-0.074177928268909,-0.0048370789736509],[0.0345598757267,0.058481719344854,0.0021413150243461]],[[-0.045478913933039,-0.029412010684609,0.016172176226974],[-0.041726477444172,-0.055731281638145,0.042929597198963],[0.019998731091619,0.0051597212441266,0.010156862437725]],[[-0.053377382457256,0.011742070317268,0.067015685141087],[-0.038013733923435,0.020330220460892,0.031420741230249],[-0.024434458464384,-0.004037223290652,-0.083295360207558]],[[0.071038126945496,0.010127088055015,0.020453898236156],[-0.055532272905111,-0.037651501595974,0.0079104518517852],[0.0019754678942263,-0.041954312473536,-0.049162201583385]],[[0.0141730774194,-0.052529413253069,0.056682847440243],[0.024375379085541,0.014866378158331,-0.049993418157101],[0.029405068606138,0.087374597787857,0.010788920335472]],[[0.046859931200743,-0.061535313725471,0.010771906003356],[-0.048634316772223,-0.041114795953035,0.08257918804884],[-0.0082128802314401,0.043579645454884,-0.0045947209000587]],[[-0.063956446945667,-0.056412812322378,-0.064281411468983],[-0.02298204600811,-0.02151463739574,0.078391812741756],[0.11835385859013,0.083851903676987,-0.014579026959836]],[[-0.02759007550776,-0.014527483843267,-0.037053264677525],[-0.0090417265892029,-0.083004884421825,-0.070908896625042],[-0.012383364140987,-0.039141681045294,-0.091406650841236]],[[0.0062420265749097,0.07655968517065,0.037934418767691],[-0.043163605034351,-0.11939340829849,-0.060847483575344],[-0.2287650257349,-0.020109329372644,0.0025325957685709]],[[-0.050140660256147,-0.05792398005724,-0.067014664411545],[0.0094290468841791,0.0079537145793438,0.021401608362794],[0.071804404258728,0.050085242837667,0.050491560250521]],[[-0.0030838316306472,-0.07934695482254,-0.0069608991034329],[0.011723401024938,0.041095912456512,-0.11209301650524],[-0.0021946057677269,0.038397219032049,-0.011991676874459]],[[0.038299769163132,0.058812838047743,0.062216766178608],[0.016863638535142,-0.079138062894344,0.046582117676735],[0.021474335342646,-0.050576563924551,-0.08404216915369]],[[-0.0094839092344046,-0.17393735051155,0.042478021234274],[-0.0069909086450934,0.086779348552227,0.014788734726608],[0.031729206442833,0.080062292516232,0.04340873286128]],[[-0.065158866345882,0.012586497701705,-0.08647708594799],[0.071705274283886,-0.040430583059788,-0.045146498829126],[0.1486264616251,0.079111911356449,0.00082728080451488]],[[0.058305028825998,-0.041369158774614,0.018390936776996],[-0.0584925301373,0.003754181554541,-0.048272524029016],[0.0099057694897056,0.036166485399008,-0.043767660856247]],[[0.069944307208061,0.05973831191659,-0.036808263510466],[0.044914651662111,0.029946058988571,0.05335533246398],[-0.055564671754837,-0.05052262544632,0.033870957791805]],[[0.037250954657793,-0.016284516081214,-0.13986606895924],[0.068525277078152,0.065096914768219,-0.0081121996045113],[-6.3392231822945e-05,-0.017621899023652,0.029551411047578]],[[-0.019588459283113,0.0063324356451631,-0.0079074110835791],[-0.089144460856915,-0.0057057766243815,0.022210376337171],[-0.13915388286114,-0.039652213454247,0.067963466048241]],[[0.12067742645741,0.045908324420452,0.051985800266266],[0.027884311974049,-0.086299255490303,-0.18142968416214],[-0.091216966509819,0.0015954190166667,-0.071320258080959]],[[-0.038655005395412,-0.13893918693066,-0.084150351583958],[-0.025207214057446,-0.079463966190815,0.0023359919432551],[-0.012936599552631,0.017487054690719,0.0045069325715303]],[[0.078555308282375,-0.047760240733624,-0.005957739893347],[0.066806212067604,-0.060006938874722,-0.047250557690859],[0.011724757030606,0.036341216415167,-0.042351327836514]],[[0.022772755473852,-0.047070968896151,0.011942250654101],[0.00053287536138669,-0.10338106006384,-0.055873136967421],[-0.059109076857567,-0.19444777071476,0.12230776250362]],[[0.093171983957291,0.10042464733124,-0.0029617946129292],[-0.02888629026711,-0.065195441246033,-0.058231186121702],[0.04921518266201,-0.012755308300257,0.048929460346699]],[[0.052029766142368,-0.028189919888973,-0.055976122617722],[0.053850203752518,-0.045772578567266,-0.022290792316198],[-0.071160718798637,-0.056850146502256,0.0012487451313064]],[[0.0057237544097006,-0.056848861277103,0.0083289798349142],[-0.038858272135258,-0.021668896079063,0.073978304862976],[-0.0087207062169909,0.035142619162798,0.025918815284967]],[[-0.017704458907247,0.10995718836784,0.024509167298675],[-0.068320617079735,0.11526824533939,-0.075996182858944],[-0.059964746236801,-0.046513240784407,0.00041649481863715]],[[0.19746780395508,-0.061242144554853,0.030094090849161],[-0.091695390641689,0.15712594985962,-0.023277869448066],[0.090658210217953,-0.13613444566727,0.021528318524361]],[[0.023521589115262,-0.048549883067608,0.047335602343082],[-0.054441217333078,-0.073170222342014,0.036641608923674],[-0.061611033976078,0.028298674151301,-0.078598506748676]],[[-0.094216346740723,-0.21461220085621,-0.0023085246793926],[0.0089221689850092,0.02525625564158,-0.065898895263672],[0.19575317203999,-0.006757965311408,0.092060789465904]],[[-0.019392192363739,-0.052413277328014,-0.05386509001255],[0.0017688471125439,-0.084256134927273,0.067404970526695],[0.029759330675006,0.020433688536286,0.064789116382599]],[[0.097748689353466,0.034905727952719,-0.00574696296826],[-0.019735213369131,-0.033681694418192,-0.04537557810545],[0.083775624632835,0.093616902828217,-0.04366497322917]],[[-0.084374964237213,-0.083345055580139,-0.014759265817702],[0.033337198197842,-0.013779307715595,-0.023395244032145],[0.0050333989784122,0.044577740132809,0.018804647028446]],[[-0.066136658191681,0.04246086999774,-0.11253328621387],[0.058694791048765,-0.011807230301201,-0.070942811667919],[0.067178830504417,0.10918310284615,0.0099783549085259]],[[0.027865866199136,-0.026777485385537,-0.0085225850343704],[0.002068625530228,0.021144540980458,-0.012694372795522],[0.012690655887127,-0.15575455129147,0.0029145062435418]],[[-0.035724636167288,-0.053315505385399,0.032075222581625],[-0.16890187561512,0.13450901210308,-0.0070766257122159],[-0.015188496559858,-0.089681416749954,0.072212688624859]],[[0.027492014691234,0.079267710447311,-0.032416962087154],[-0.040268868207932,0.012235225178301,-0.10293459147215],[0.010084711946547,-0.078262001276016,-0.0647307112813]],[[-0.0068614766933024,0.0099109215661883,-0.058126993477345],[0.004210954066366,-0.0051621752791107,-0.0099263219162822],[-0.013889564201236,0.021612608805299,-0.021497510373592]],[[0.042811196297407,-0.060526970773935,-0.037071567028761],[-0.044205371290445,-0.12653629481792,0.040360052138567],[0.014521047472954,-0.038189724087715,0.012092430144548]],[[-0.015138561837375,0.023758394643664,0.0060470355674624],[0.01171191688627,-0.044426865875721,0.01409094594419],[0.0056987507268786,-0.039900965988636,-0.043420553207397]],[[-0.056928310543299,-0.13370023667812,0.020499533042312],[0.0068035516887903,-0.017484068870544,0.083971694111824],[-0.015000020153821,0.12082982808352,0.10017966479063]],[[0.020094059407711,-0.012775363400578,0.17049232125282],[0.04412804543972,0.02374804392457,-0.052902329713106],[-0.059786159545183,-0.041596777737141,0.042312797158957]],[[-0.035785231739283,-0.066781878471375,-0.0027868875768036],[0.0091988313943148,-0.033753037452698,-0.034964255988598],[-0.018149625509977,0.11710849404335,0.1118990033865]],[[0.060163892805576,0.029833959415555,-0.071787402033806],[-0.11226585507393,-0.10938888043165,0.033542226999998],[-0.029135994613171,-0.002070750342682,0.031341709196568]],[[0.03335590288043,-0.077725529670715,0.049394577741623],[0.041575852781534,0.041461914777756,-0.095178663730621],[-0.093206189572811,-0.028680920600891,-0.056163296103477]],[[0.032875970005989,0.028717920184135,0.020598821341991],[0.047431237995625,-0.040054108947515,0.066940896213055],[0.12180595844984,-0.044011626392603,0.13117769360542]],[[-0.031480293720961,-0.02789569273591,-0.060713969171047],[0.0033566418569535,-0.055188152939081,-0.011540007777512],[0.047875061631203,0.10410025715828,0.038250837475061]],[[0.054959915578365,0.029392639175057,0.0024768824223429],[-0.077942214906216,-0.0077719870023429,-0.056566596031189],[-0.0029045883566141,0.026827508583665,-0.023352799937129]],[[-0.030239623039961,-0.080215103924274,0.087323762476444],[0.010290808044374,-0.074546471238136,0.058538198471069],[0.0094571299850941,-0.0059368633665144,0.018529267981648]],[[0.02966514416039,0.04834808036685,0.052808556705713],[-0.0011948049068451,0.09171250462532,0.10517405718565],[0.0026074601337314,-0.23324964940548,0.013687830418348]],[[-0.068441711366177,-0.031415835022926,-0.077946111559868],[-0.064370043575764,-0.11895396560431,-0.049188613891602],[0.02717013284564,-0.073386006057262,-0.13022494316101]],[[0.026115888729692,0.037377085536718,0.025346402078867],[-0.052175935357809,-0.088692151010036,0.1497011333704],[-0.091437801718712,0.051451485604048,-0.018310574814677]],[[-0.025088254362345,0.039792750030756,0.030445463955402],[-0.01748013868928,0.02329476736486,-0.0042351949959993],[0.005125701893121,0.021095927804708,-0.011593885719776]],[[0.083746463060379,-0.0031003574840724,0.04528920724988],[-0.082175999879837,0.012709745205939,-0.058384381234646],[-0.025099476799369,0.068614363670349,-0.10687267035246]],[[-0.039128556847572,0.026042837649584,0.017756970599294],[-0.087467923760414,-0.060390930622816,0.028657162562013],[-0.024286011233926,-0.11902000755072,0.13102163374424]],[[0.062178988009691,0.13761828839779,-0.028312878683209],[-0.029403068125248,-0.093326687812805,0.038516104221344],[-0.081847943365574,-0.084602661430836,0.046661302447319]]],[[[-0.0045081796124578,0.10727776587009,-0.016918517649174],[0.057418540120125,0.069173231720924,-0.044784508645535],[-0.11801053583622,-0.011961276642978,-0.0064013246446848]],[[-0.053521942347288,-0.070313043892384,0.013828238472342],[-0.070353306829929,0.01568128913641,0.047537807375193],[-0.08053570240736,-0.12383739650249,-0.075804263353348]],[[-0.027215795591474,0.0059524099342525,0.030152546241879],[0.018209900707006,-0.14101508259773,-0.21714450418949],[-0.27370470762253,0.067799359560013,0.011383634060621]],[[0.095668226480484,0.013775915838778,-0.20288792252541],[0.016900299116969,-0.01429914496839,0.20566321909428],[-0.079764015972614,-0.15717315673828,0.11440819501877]],[[-0.20678693056107,0.012585450895131,-0.040105938911438],[-0.12788881361485,-0.0041188267059624,0.01917776837945],[-0.13656920194626,-0.1482744961977,0.0085366647690535]],[[-0.0091216377913952,0.10405439138412,-0.026278810575604],[-0.061456426978111,-0.036621063947678,0.032588191330433],[-0.040844917297363,-0.083674088120461,0.078338719904423]],[[0.028260491788387,0.045341454446316,0.0081604262813926],[-0.093070954084396,-0.011236046440899,0.047248285263777],[0.039382200688124,-0.047666773200035,-0.04326343908906]],[[0.0014848232967779,0.16599552333355,-0.16084738075733],[0.10068212449551,0.048274639993906,-0.0286845844239],[0.059292618185282,0.058937765657902,0.02882625721395]],[[-0.070324540138245,-0.1703884601593,-0.0011815963080153],[0.14457541704178,0.066792957484722,0.012232954613864],[0.11312730610371,0.10989964753389,-0.010808882303536]],[[-0.011303273029625,-0.0044855955056846,-0.0064097507856786],[-0.058177132159472,0.10076243430376,-0.051412537693977],[0.0025377871934325,0.020815562456846,0.057591952383518]],[[-0.068375252187252,-0.033071592450142,0.04600628465414],[-0.0068316464312375,-0.030210692435503,-0.04677440226078],[-0.18934214115143,-0.050660405308008,0.006371411960572]],[[-0.052317928522825,-0.051449682563543,-0.00041351467370987],[0.058747287839651,0.10488212108612,0.092297308146954],[-0.045702815055847,0.0030688273254782,-0.0096452627331018]],[[0.036283854395151,-0.029057590290904,-0.051433186978102],[0.013706296682358,0.048958972096443,-0.01029003970325],[0.036914873868227,0.0023829990532249,0.15277297794819]],[[-8.8056003733072e-05,0.028554480522871,0.023450657725334],[0.0040522539056838,0.057938616722822,-0.035378027707338],[-0.020965253934264,-0.0066812611185014,-0.082220114767551]],[[0.010144573636353,0.055807594209909,-0.06985055655241],[0.077194876968861,0.11910156905651,0.034817606210709],[-0.15169903635979,0.1319285184145,-0.091787025332451]],[[0.071494922041893,0.099736459553242,-0.12063375115395],[0.11326726526022,-0.050920002162457,-0.014327367767692],[-0.034454926848412,-0.0027596221771091,0.017996449023485]],[[0.11642142385244,-0.081364743411541,-0.024016039445996],[0.074389286339283,-0.066331580281258,-0.093999609351158],[0.25395402312279,0.037478607147932,-0.040536820888519]],[[-0.024986151605844,-0.064704455435276,0.027654016390443],[0.08402843028307,0.097318924963474,0.0023137112148106],[0.056279640644789,0.11977726221085,0.055854961276054]],[[-0.045067418366671,-0.13649828732014,0.0057639176957309],[-0.025722408667207,0.1497620344162,-0.013709654100239],[0.0088078379631042,0.040400851517916,0.032718531787395]],[[0.03770188242197,-0.037480343133211,-0.027894105762243],[-0.015906684100628,-0.085896760225296,-0.14804103970528],[-0.048874698579311,-0.050454679876566,0.13925901055336]],[[0.00018899259157479,-0.12884999811649,0.016994589939713],[-0.096737153828144,-0.095829084515572,-0.049584064632654],[-0.062310047447681,-0.12629474699497,-0.059002462774515]],[[-0.0053272573277354,0.0071505522355437,0.13912788033485],[0.10230976343155,0.072597786784172,0.15277534723282],[-0.033259734511375,0.0039161485619843,0.020349619910121]],[[-0.036134362220764,0.13147360086441,0.0056087407283485],[0.04017772898078,-0.00023473339388147,-0.038468737155199],[0.0067970207892358,-0.027371594682336,0.054574318230152]],[[-0.05653990060091,0.030054995790124,-0.051761958748102],[0.039909984916449,0.068153746426105,-0.044119045138359],[-0.041921820491552,-0.012932282872498,0.069873698055744]],[[-0.062727890908718,-0.14808730781078,-0.049552831798792],[-0.26368713378906,-0.08091413974762,-0.15780921280384],[-0.1247885376215,0.079171277582645,-0.035059940069914]],[[-0.0046316804364324,-0.059636250138283,0.018427336588502],[-0.0026305827777833,-0.0023050992749631,-0.076937414705753],[-0.21789215505123,-0.072140708565712,-0.018693113699555]],[[-0.11431729793549,0.061811104416847,0.082238525152206],[0.064632721245289,-0.023606665432453,-0.075455792248249],[-0.017329366877675,-0.061488166451454,-0.10121405869722]],[[-0.053790990263224,0.068842962384224,-0.10034864395857],[0.036371920257807,0.044549182057381,-0.049482014030218],[0.051133148372173,-0.045709539204836,0.0070570157840848]],[[0.041084725409746,-0.06191324442625,0.22083804011345],[0.071788273751736,0.068889603018761,0.092763982713223],[-0.078600615262985,-0.013947926461697,-0.037140559405088]],[[0.029208431020379,-0.084625832736492,0.009868691675365],[-0.13330465555191,-0.038287755101919,0.092816427350044],[-0.18540653586388,-0.084486797451973,0.0024045980535448]],[[0.14838060736656,0.017418954521418,-0.091561682522297],[-0.052988048642874,-0.039191033691168,-0.018196260556579],[-0.16946455836296,-0.02114625275135,-0.074446484446526]],[[-0.0025368102360517,0.1382309794426,0.0087663233280182],[0.066721849143505,-0.089160360395908,-0.026210548356175],[-0.060413643717766,-0.055852271616459,-0.025481881573796]],[[0.086461395025253,0.080775693058968,0.10646426677704],[-0.080820329487324,-0.038532808423042,0.034898299723864],[0.090075865387917,-0.061627388000488,0.053493306040764]],[[-0.19560942053795,-0.010956523939967,0.076848737895489],[-0.11729507893324,0.0418482683599,0.00069721299223602],[-0.10888981819153,0.06225448846817,0.031382013112307]],[[-0.049918673932552,0.012832227163017,-0.0064365467987955],[-0.024216232821345,-0.17434448003769,0.033868297934532],[-0.091628454625607,0.012078646570444,0.022535359486938]],[[-0.013271663337946,-0.12463094294071,-0.16843982040882],[-0.050103589892387,0.18654854595661,0.018551249057055],[-0.15214651823044,0.060428880155087,-0.067616209387779]],[[0.068715691566467,-0.077401347458363,-0.060913242399693],[-0.045827053487301,-0.15030324459076,-0.11587475240231],[-0.024706905707717,-0.16872844099998,0.03433258458972]],[[0.13214085996151,-0.073816120624542,-0.16865292191505],[0.057170502841473,0.0062805498018861,-0.057103648781776],[0.020611738786101,0.071481816470623,0.04446641728282]],[[0.056925855576992,-0.0075508840382099,0.053509082645178],[-0.10126914829016,-0.063853427767754,0.069436721503735],[-0.10814898461103,-0.060422733426094,0.064284637570381]],[[-0.13690365850925,-0.10907071083784,-0.050680920481682],[-0.15322402119637,-0.13675521314144,0.02205160073936],[-0.00050921645015478,-0.23578098416328,-0.0011600120924413]],[[0.086416617035866,0.079545967280865,-0.033697683364153],[0.032864782959223,-0.039936516433954,-0.15991823375225],[0.025412105023861,0.1253864467144,-0.083397381007671]],[[0.041180171072483,0.078810229897499,0.039400637149811],[-0.01942290738225,0.021461112424731,-0.035545028746128],[0.059698935598135,-0.064023606479168,-0.039917305111885]],[[0.019930908456445,-0.099686972796917,0.04929781332612],[-0.0059375767596066,0.06689490377903,0.11570461839437],[-0.043281383812428,0.10939682275057,0.089493945240974]],[[0.088388629257679,0.017470525577664,0.030317530035973],[-0.094627492129803,-0.054988265037537,0.022950554266572],[-0.082096755504608,-0.0030349045991898,0.008073496632278]],[[-0.10012604296207,-0.12980836629868,-0.0022135565523058],[-0.1223953589797,-0.18193066120148,-0.068921267986298],[0.070736221969128,-0.019415263086557,0.059173360466957]],[[-0.05120699852705,0.083419382572174,0.14152346551418],[0.10123523324728,0.050160605460405,0.056898038834333],[-0.061593547463417,0.10834834724665,0.078678399324417]],[[0.10392735898495,0.1025100722909,0.029359623789787],[0.089350081980228,0.04305175319314,0.009155067615211],[0.035331573337317,0.010225333273411,-0.005602371878922]],[[-0.041598964482546,0.00050119363004342,-0.041242823004723],[-0.075315088033676,0.011138253845274,0.0031085980590433],[-0.032202504575253,-0.012462527491152,-0.041437808424234]],[[-0.1135438606143,0.012885144911706,0.057603608816862],[-0.03078269213438,-0.04235128685832,0.02225648984313],[-0.098107658326626,-0.037022847682238,-0.01242068130523]],[[0.040343344211578,0.015917330980301,0.11283617466688],[-0.0017197013366967,-0.046137027442455,-0.15318880975246],[-0.026567114517093,0.026730844751,-0.0091277938336134]],[[-0.082145892083645,-0.034751631319523,0.036553207784891],[-0.0062096086330712,-0.0019333178643137,-0.044795006513596],[-0.062322646379471,-0.051824476569891,-0.023077255114913]],[[-0.087993361055851,0.051680397242308,0.14010284841061],[0.033056162297726,0.01473290193826,0.013929271139205],[-0.040589172393084,0.052830830216408,-0.22420774400234]],[[0.067869059741497,0.056946463882923,0.0076102428138256],[-0.028223944827914,0.025027498602867,0.0050326907075942],[-0.10678292810917,0.0019942850340158,0.0052589797414839]],[[-0.021546188741922,0.04603248462081,0.054246366024017],[-0.072665587067604,-0.055768050253391,0.07860853523016],[0.06138376519084,-0.021250441670418,0.058935824781656]],[[0.11651531606913,-0.037500627338886,-0.059941116720438],[-0.051238227635622,0.043774623423815,-0.062153309583664],[0.054423935711384,0.031723499298096,-0.0033331038430333]],[[-0.043047327548265,0.049169111996889,-0.092098325490952],[0.14927892386913,0.04444220662117,-0.093878328800201],[0.081045985221863,-0.072865836322308,-0.031431403011084]],[[0.062595278024673,-0.073153935372829,-0.017322439700365],[-0.058933898806572,0.10316682606936,0.18586239218712],[0.097106121480465,-0.13121522963047,-0.057550065219402]],[[-0.23562447726727,-0.04098330065608,-0.073454312980175],[0.029121587052941,-0.056898381561041,-0.034790076315403],[-0.10452618449926,0.1328783929348,-0.12020863592625]],[[0.0046557197347283,-0.11015459895134,0.13034138083458],[0.14430846273899,-0.19026218354702,0.16069665551186],[0.099529981613159,0.075009420514107,0.12254630029202]],[[0.050531096756458,-0.10416720807552,0.077296927571297],[0.18201281130314,0.094149321317673,0.04008361697197],[0.085541427135468,0.010484531521797,-0.027729224413633]],[[0.021428570151329,0.067799516022205,0.02308808080852],[-0.084386922419071,-0.26275125145912,0.036164380609989],[0.094093255698681,-0.18592546880245,-0.17686589062214]],[[-0.064167827367783,-0.14625711739063,-0.16088135540485],[-0.1162276044488,-0.084938891232014,-0.20333285629749],[-0.046204008162022,-0.0093370191752911,-0.058784652501345]],[[0.012864938937128,-0.072328582406044,-0.15291066467762],[-0.017450777813792,0.047742202877998,0.059370864182711],[-0.084275469183922,0.030009960755706,-0.029992364346981]],[[0.091148026287556,0.054455921053886,-0.026490233838558],[0.11014905571938,-0.046296987682581,0.0014642172027379],[0.040119040757418,-0.040337242186069,-0.1527377218008]],[[0.017440684139729,-0.19625477492809,-0.043856404721737],[0.080666996538639,0.032836135476828,-0.0010373563272879],[-0.084794901311398,-0.022051695734262,-0.0073691201396286]],[[-0.07219609618187,-0.042802099138498,-0.19932702183723],[0.082978792488575,0.034315790981054,-0.048896037042141],[0.14471852779388,0.17758968472481,0.13040456175804]],[[0.12946371734142,0.01962729357183,0.039328098297119],[0.09742671251297,0.042767461389303,0.04275968670845],[0.010416501201689,-0.070348754525185,0.11352676153183]],[[0.015864102169871,0.060905437916517,0.025068752467632],[0.053733941167593,-0.10094255954027,-0.039492968469858],[0.11146748811007,0.098960764706135,-0.036379311233759]],[[-0.062654219567776,0.10109851509333,0.079731866717339],[-0.052704561501741,0.073540277779102,-0.04123954474926],[-0.036267206072807,-0.094577297568321,0.0035161664709449]],[[-0.17958897352219,-0.042611762881279,-0.079596497118473],[0.0021786841098219,-0.022042259573936,0.092862583696842],[-0.018253283575177,-0.015512231737375,0.12358917295933]],[[-0.070130318403244,-0.12295804917812,-0.081189893186092],[0.0041842791251838,-0.0842509791255,-0.018595986068249],[0.0087528703734279,-0.033928405493498,-0.13713333010674]],[[0.15140368044376,-0.00034555926686153,-0.1827103048563],[-0.00049358466640115,0.0045081502757967,-0.0085268625989556],[0.04203587397933,-0.00023921029060148,0.019681349396706]],[[0.078703708946705,0.067768596112728,-0.023407759144902],[0.063483342528343,0.0096561368554831,0.015496106818318],[-0.10351617634296,0.076991483569145,0.070755921304226]],[[-0.04612098634243,0.046285167336464,0.026676762849092],[-0.0089411716908216,-0.037427175790071,0.10642250627279],[0.014864705502987,0.033075034618378,-0.092545554041862]],[[-0.028866577893496,-0.012743292376399,0.030071571469307],[-0.023041902109981,0.10213802754879,0.018955551087856],[-0.038360483944416,-0.0090039409697056,0.046555992215872]],[[-0.12594728171825,0.037479095160961,-0.14132225513458],[-0.084911815822124,-0.011296662501991,-0.036975659430027],[0.050635747611523,-0.0044033313170075,0.082442492246628]],[[0.056004386395216,0.030922709032893,-0.024634670466185],[0.12303557246923,0.11031437665224,0.02902789413929],[0.031310014426708,0.050227247178555,0.022991739213467]],[[0.033466868102551,-0.0095188906416297,0.076373837888241],[0.096384972333908,0.16490678489208,0.038851372897625],[-0.013642606325448,0.036926504224539,-0.009614298120141]],[[0.053853046149015,-0.030167834833264,0.022510472685099],[0.051515389233828,0.020677641034126,0.01194694172591],[0.047334272414446,0.026562299579382,0.0091840215027332]],[[0.075863033533096,-0.057875767350197,-0.10959085822105],[0.20042006671429,-0.01338869240135,-0.021128730848432],[-0.014356718398631,-0.098206132650375,-0.0011146814795211]],[[-0.0084636630490422,-0.0068428535014391,-0.056432973593473],[-0.077914610505104,-0.012635336257517,0.0057734549045563],[0.068497754633427,0.022099617868662,0.097448281943798]],[[0.022816555574536,-0.019603352993727,-0.019429136067629],[0.16959607601166,0.12529410421848,0.26369526982307],[0.060321658849716,-0.019025111570954,0.084769763052464]],[[-0.019012866541743,0.16043736040592,-0.057569533586502],[0.049971375614405,-0.13202391564846,-0.00072895630728453],[0.0084167588502169,-0.0038793322164565,0.033690292388201]],[[0.09938570857048,-0.099102668464184,0.054529096931219],[0.1027989089489,0.049857310950756,0.027740117162466],[0.069541431963444,-0.050069328397512,-0.15553811192513]],[[-0.10278183966875,-0.024287851527333,0.029141707345843],[-0.060277409851551,-0.13064889609814,0.039722967892885],[0.011953609995544,-0.0243836697191,0.14729538559914]],[[0.042571026831865,-0.022921973839402,-0.023355629295111],[-0.10370466858149,-0.024718638509512,-0.09714088588953],[-0.11023925989866,-0.09213549643755,0.020504621788859]],[[0.10752032697201,-0.14602839946747,0.073612816631794],[0.085714757442474,0.052365999668837,0.0070056384429336],[0.023228505626321,0.050733886659145,0.07118484377861]],[[0.16692991554737,0.080315157771111,0.035623051226139],[-0.12871268391609,-0.0019944086670876,-0.021654406562448],[-0.13440884649754,0.032947570085526,0.018282940611243]],[[0.11337949335575,-0.078508354723454,0.034790404140949],[0.086175106465816,0.024034263566136,-0.015149939805269],[0.011839588172734,-0.14268137514591,0.0009328217129223]],[[-0.0013488626573235,0.17298053205013,0.16734831035137],[-0.055397398769855,-0.011532889679074,0.13854958117008],[-0.099582977592945,-0.11765637248755,0.027596035972238]],[[0.10243840515614,-0.099948830902576,-0.047069426625967],[-0.04361966997385,0.11098609864712,0.14187921583652],[-0.075452156364918,-0.11335950344801,0.057889144867659]],[[-0.12685903906822,-0.052930306643248,-0.023840513080359],[0.061344001442194,-0.053864363580942,-0.10796029120684],[0.037083480507135,0.069973066449165,0.078510649502277]],[[0.097880482673645,0.018212098628283,-0.11583822220564],[-0.018375635147095,0.09013906866312,-0.10536364465952],[-0.0021478990092874,0.1041369587183,-0.04223096370697]],[[-0.028738498687744,-0.13035786151886,-0.17987163364887],[0.02063568122685,0.10110932588577,0.071640037000179],[0.050197262316942,0.0084743201732635,0.050262987613678]],[[-0.056067746132612,-0.051935460418463,-0.0066828364506364],[-0.043584790080786,-0.027436686679721,0.017692968249321],[0.06217909604311,0.0047905198298395,-0.1445422321558]],[[-0.079599015414715,0.076534524559975,-0.039110701531172],[-0.0031103368382901,0.014577824622393,0.10727156698704],[-0.027695911005139,0.085150621831417,-0.029641589149833]],[[-0.032517574727535,0.039980169385672,-0.032321415841579],[0.020884692668915,0.0049268128350377,0.02350096963346],[0.067976281046867,0.079177938401699,0.043434906750917]],[[-0.13995382189751,-0.007711214479059,0.026865568011999],[0.058691699057817,0.031614452600479,-0.02807953953743],[0.043857093900442,-0.085023149847984,-0.088955201208591]],[[-0.020485425367951,0.054970879107714,-0.006851255428046],[0.047210354357958,-0.012064320966601,0.0082057332620025],[-0.013638550415635,0.017492737621069,-0.17789289355278]],[[-0.037967186421156,-0.037041328847408,0.1039347872138],[0.032133545726538,-0.036478288471699,0.042875859886408],[0.044713161885738,0.051106013357639,-0.024343710392714]],[[-0.020089995115995,0.095557831227779,0.085881896317005],[0.069801241159439,0.044232420623302,0.028365159407258],[-0.056359373033047,0.0075836600735784,0.074309751391411]],[[0.080681689083576,-0.092235550284386,0.015895603224635],[0.030441254377365,0.033579520881176,0.047298401594162],[-0.025951536372304,-0.035542991012335,-0.0098527548834682]],[[-0.093639843165874,0.0045709344558418,0.068177573382854],[0.2277859300375,0.069923005998135,0.068536572158337],[0.025144232437015,0.07289581745863,0.031748723238707]],[[0.10917850583792,-0.072071447968483,-0.098574809730053],[-0.0097048236057162,0.018820991739631,0.032126292586327],[-0.028671169653535,-0.049966558814049,-0.03185810521245]],[[0.072222620248795,-0.040782701224089,0.13540948927402],[-0.0090691046789289,0.073571249842644,-0.029803067445755],[-0.0627681016922,-0.032142572104931,-0.10367575287819]],[[0.049425937235355,0.00094899063697085,0.046827182173729],[0.070950910449028,0.075966663658619,0.078448757529259],[0.040792565792799,-0.1307118833065,0.075097382068634]],[[-0.20157034695148,0.049949042499065,-0.011569522321224],[0.009988340549171,0.076030537486076,0.01545153465122],[0.05884912610054,0.11262463778257,0.061929985880852]],[[-0.095241948962212,0.02442117407918,0.060821197926998],[-0.064629010856152,0.12118040770292,0.047095119953156],[-0.15305444598198,0.051525443792343,-0.044033445417881]],[[0.0070689036510885,0.083030939102173,-0.032850556075573],[-0.025960674509406,-0.00057816033950076,-0.074233666062355],[0.08310779184103,0.056519150733948,0.13102348148823]],[[0.045124847441912,0.12167607992887,0.074153274297714],[-0.083184897899628,0.019343478605151,-0.040075369179249],[0.0071519711054862,0.038532920181751,0.015793595463037]],[[-0.077663518488407,0.027189109474421,-0.0262092910707],[0.0038402813952416,0.051922436803579,-0.0031146763358265],[0.0030091309454292,-0.022449258714914,-0.001904911827296]],[[-0.022936163470149,-0.079119928181171,-0.060628209263086],[0.10975033044815,0.0083902282640338,-0.024200681596994],[0.0060946247540414,-0.013656746596098,0.1236337274313]],[[-0.080679878592491,-0.01180565636605,0.035514891147614],[0.069154649972916,0.093416199088097,0.042412977665663],[0.059167262166739,0.054391730576754,0.036770261824131]],[[-0.090409249067307,0.019851557910442,0.040833454579115],[-0.016619801521301,0.028775716200471,0.061857022345066],[0.0085508590564132,0.020583374425769,0.077011719346046]],[[0.057133559137583,0.052762597799301,-0.042027555406094],[0.040691316127777,-0.043905321508646,-0.031517334282398],[0.1445267945528,-0.060973517596722,0.017937956377864]],[[-0.044475127011538,0.071452550590038,0.14876908063889],[-0.031389687210321,0.043152425438166,0.024911407381296],[0.1088864132762,-0.054232511669397,-0.080455206334591]],[[0.15543079376221,-0.020405862480402,-0.23087018728256],[-0.049346268177032,0.045640040189028,0.12982168793678],[-0.044373869895935,-0.032410800457001,0.086114004254341]],[[-0.14402070641518,0.041732762008905,0.15733428299427],[0.033578805625439,-0.085029266774654,-0.014300992712379],[0.04409771412611,0.015733528882265,-0.053680282086134]],[[-0.062144916504622,0.098960511386395,0.045138027518988],[-0.055175106972456,0.017197649925947,-0.034753281623125],[-0.069560758769512,-0.073406904935837,-0.028800256550312]],[[0.12307129055262,0.10928394645452,0.041103675961494],[-0.020045330747962,0.13994361460209,-0.0031929116230458],[-0.03510931506753,-0.11054971069098,0.055026333779097]],[[-0.072800114750862,0.038479134440422,-0.050540782511234],[-0.079238288104534,-0.030123429372907,-0.058040603995323],[0.050391301512718,0.057642210274935,0.011671169660985]],[[0.016009109094739,0.017923600971699,-0.018227025866508],[-0.024443408474326,-0.083293624222279,-0.027371359989047],[0.15077528357506,0.12932536005974,0.030330386012793]],[[-0.0040863608010113,-0.27687218785286,0.15439058840275],[-0.056349664926529,-0.1630237698555,-0.14411057531834],[-0.081082887947559,0.024845642969012,-0.13653209805489]],[[-0.057840436697006,0.0065573370084167,-0.020987145602703],[0.049479082226753,0.0039360849186778,-0.048236470669508],[0.075553327798843,-0.12805853784084,0.017588108778]],[[-0.11964339017868,0.0092638432979584,-0.070109494030476],[-0.031323153525591,-0.03094294667244,-0.039162538945675],[0.0018850341439247,-0.0064028571359813,-0.0042031370103359]],[[0.15998210012913,0.03905762732029,0.038879882544279],[0.085147716104984,0.019851062446833,-0.013019206002355],[-0.12130773812532,-0.028909573331475,0.034771472215652]],[[0.02685135602951,0.0017516650259495,-0.015343636274338],[0.017551228404045,-0.021718377247453,0.070608265697956],[-0.031121229752898,-0.00079067511251196,-0.045451793819666]],[[0.12898001074791,-0.17111691832542,0.10711237043142],[0.01584323681891,-0.01960719563067,0.093889713287354],[0.042677126824856,-0.031185349449515,0.032155409455299]]],[[[0.27469390630722,0.10945618897676,0.046788837760687],[0.12955646216869,-0.060922306030989,-0.055734388530254],[0.028534242883325,-0.054818980395794,-0.099318765103817]],[[-0.038367982953787,-0.20791845023632,-0.068301446735859],[0.060753703117371,-0.1650480479002,-0.15544834733009],[0.063722893595695,-0.029651695862412,0.042602065950632]],[[-0.057549245655537,0.088241390883923,0.028507465496659],[0.27441248297691,0.14739660918713,-0.059861317276955],[0.065915584564209,0.06020513176918,0.10037238895893]],[[-0.12816894054413,0.11057764291763,-0.012169381603599],[-0.13530254364014,0.094976149499416,-0.0043852413073182],[0.099431477487087,-0.02742750197649,0.22723595798016]],[[0.02277696877718,0.019545329734683,-0.077466867864132],[-0.08710540831089,-0.065433092415333,-0.085039153695107],[-0.04885245859623,-0.059804182499647,-0.039041139185429]],[[-0.052927881479263,-0.049124829471111,-0.040624585002661],[0.0086946673691273,0.0055521298199892,-0.15860886871815],[0.077229842543602,0.067447736859322,0.27188870310783]],[[0.0059765260666609,-0.069307684898376,0.038010243326426],[-0.028511345386505,0.028306758031249,-0.038864720612764],[-0.14253877103329,0.054759815335274,0.0024782759137452]],[[0.1260801255703,-0.0047840564511716,-0.0007782251923345],[-0.0060512954369187,-0.077516973018646,-0.0022575845941901],[-0.11489993333817,-0.0066321697086096,0.028538035228848]],[[0.035697523504496,-0.077156014740467,-0.019722064957023],[0.14997325837612,0.077981106936932,0.10469929128885],[-0.018658649176359,0.028086431324482,0.02233630977571]],[[-0.045695200562477,-0.015290511772037,0.080731943249702],[0.2254204005003,0.020953783765435,-0.032326173037291],[-0.030183536931872,-0.058844834566116,-0.054686862975359]],[[-0.14111268520355,-0.11250731348991,0.0017417639028281],[-0.006204120349139,-0.11845976114273,-0.012588106095791],[0.016662299633026,-0.050957653671503,0.11440162360668]],[[0.052228696644306,0.03678585588932,0.075084537267685],[-0.13180667161942,-0.00015215630992316,0.0056885275989771],[-0.10930896550417,-0.0055886660702527,-0.068366914987564]],[[-0.10620240867138,-0.027857933193445,-0.082041330635548],[0.076278388500214,0.0046622375957668,0.12119951099157],[0.1248872205615,-0.058345824480057,-0.037074632942677]],[[0.11145765334368,-0.043958857655525,-0.0004537291242741],[-0.097206376492977,-0.082230478525162,0.03113617375493],[0.1299624145031,-0.013248007744551,0.058962766081095]],[[-0.21517042815685,-0.018970038741827,-0.18492069840431],[0.13021646440029,0.04826532676816,0.11158704012632],[0.29443094134331,-0.17918962240219,0.029940843582153]],[[0.23816123604774,0.26263520121574,0.23930549621582],[-0.052404589951038,-0.076947681605816,0.15559883415699],[-0.016401436179876,-0.03262010961771,0.069193072617054]],[[-0.20891198515892,-0.02773535810411,-0.0048740659840405],[-0.13190357387066,0.024702914059162,0.090402230620384],[-0.077444478869438,-0.12394871562719,0.029913714155555]],[[-0.027832236140966,-0.13436055183411,-0.072675362229347],[-0.13575080037117,-0.018322315067053,-0.15005832910538],[-0.015523548237979,0.023887299001217,0.011904403567314]],[[-0.017268359661102,-0.2817200422287,-0.024569382891059],[0.063485823571682,0.052575539797544,0.21221390366554],[0.081775337457657,-0.048029091209173,0.061802394688129]],[[-0.079550586640835,0.076629720628262,0.085650578141212],[0.096387162804604,0.063300669193268,0.062733441591263],[-0.0286327265203,0.067408174276352,0.018557898700237]],[[0.13601464033127,0.18829271197319,-0.034914046525955],[-0.0518550388515,0.19088058173656,0.11967669427395],[0.080674827098846,-0.019262380897999,0.14944519102573]],[[-0.078631326556206,-0.24736680090427,-0.16207098960876],[0.060036513954401,0.048708029091358,0.037051882594824],[0.042362492531538,0.046462327241898,0.0239073690027]],[[-0.067244663834572,-0.13713981211185,-0.065062269568443],[-0.18508465588093,0.00022387501667254,-0.075446113944054],[0.0060491021722555,0.0044246399775147,0.054633568972349]],[[0.072919130325317,0.035466626286507,0.041323322802782],[-0.20178531110287,0.031229719519615,0.1250261515379],[0.13874891400337,0.11665826290846,0.021774683147669]],[[0.046647842973471,-0.12167355418205,0.0074455039575696],[-0.080897994339466,-0.056056421250105,-0.011752434074879],[-0.057482335716486,-0.042652789503336,-0.024378387257457]],[[-0.1451208293438,0.1592842489481,0.12380900233984],[0.03280821070075,-0.033847745507956,0.048317670822144],[0.074047721922398,-0.063976891338825,0.033885411918163]],[[0.075945012271404,-0.030462652444839,0.064198412001133],[0.22807484865189,0.19084432721138,0.137217476964],[0.12080320715904,0.14955417811871,0.15414273738861]],[[-0.036748293787241,-0.058341771364212,-0.054230522364378],[-0.059542823582888,-0.060805380344391,-0.077644199132919],[0.084711804986,-0.0046011195518076,-0.054931938648224]],[[-0.099244870245457,-0.041186057031155,-0.029170077294111],[-0.18010479211807,0.0020850717555732,0.016552703455091],[0.020960716530681,0.035181634128094,-0.040634971112013]],[[-0.07980427891016,0.035979695618153,0.077463120222092],[0.026133626699448,0.11875203996897,-0.080906435847282],[0.033403564244509,-0.16690862178802,0.19859556853771]],[[0.0056152548640966,-0.11057724803686,-0.035251446068287],[0.13013343513012,0.11780620366335,0.017942909151316],[0.011492676101625,-0.02195256575942,0.040912888944149]],[[0.15728487074375,0.091519013047218,0.033132933080196],[-0.018444688990712,-0.053775861859322,0.035459082573652],[-0.0096466094255447,0.061998095363379,0.11003038287163]],[[0.25019332766533,-0.26227253675461,-0.14255860447884],[-0.069391623139381,-0.096527442336082,-0.1182920858264],[0.0082844030112028,0.085704356431961,0.22355365753174]],[[-0.01207132358104,-0.017984783276916,0.07217626273632],[0.11455948650837,0.090077638626099,0.1277341991663],[0.043351892381907,-0.090840831398964,-0.062139134854078]],[[0.076889581978321,-0.084362678229809,0.010514899156988],[-0.0054095438681543,-0.067980445921421,0.025355832651258],[0.020037323236465,0.050340853631496,0.0084822922945023]],[[-0.080020420253277,-0.029081601649523,0.079918228089809],[-0.031623158603907,-0.16750754415989,0.10047441720963],[0.001298249932006,0.11010289937258,-0.044357005506754]],[[-0.094623453915119,0.11829239875078,0.046397436410189],[0.10065284371376,0.020650228485465,0.053825043141842],[0.055539976805449,-0.045232195407152,0.18706265091896]],[[0.055289588868618,0.019693771377206,-0.031204616650939],[-0.0092780143022537,0.046976093202829,0.086730815470219],[0.029766293242574,0.025715949013829,-0.015339748002589]],[[-0.016619296744466,0.061348330229521,-0.10560511052608],[-0.049474593251944,0.10718400776386,0.19325834512711],[0.035980589687824,-0.030505955219269,-0.1540801525116]],[[0.040346205234528,0.095696173608303,-0.11443620920181],[-0.096759602427483,0.04074690118432,-0.045088067650795],[-0.10479190945625,-0.025082942098379,-0.044779028743505]],[[0.21232752501965,-0.18933321535587,-0.095298357307911],[0.28656974434853,-0.038117162883282,0.49909391999245],[0.10397674888372,-0.15053531527519,-0.32919606566429]],[[-0.13847890496254,-0.032541841268539,-0.034409694373608],[0.011953979730606,0.11896536499262,0.079889252781868],[0.028859581798315,0.10669261962175,-0.02738880366087]],[[0.053815063089132,0.078139021992683,0.039436481893063],[0.075739204883575,0.0020181103609502,0.13552112877369],[0.044155452400446,0.085183322429657,-0.0057800794020295]],[[0.084370151162148,-0.0046477997675538,-0.010457055643201],[0.0027342743705958,-0.034958884119987,-0.031378138810396],[0.0060200360603631,-0.0026258914731443,0.021932935342193]],[[0.34637266397476,0.25371962785721,0.056284889578819],[-0.40159818530083,-0.0091030532494187,0.10207960009575],[0.045777402818203,-0.16823095083237,-0.21617467701435]],[[0.073135815560818,0.060891717672348,0.056718468666077],[0.0452218092978,0.09703815728426,0.18836432695389],[0.048193577677011,0.081579223275185,0.080535046756268]],[[-0.043468859046698,0.1337733566761,-0.12073287367821],[0.069686330854893,-0.058300621807575,-0.075851283967495],[-0.069577001035213,-0.079789869487286,-0.046227257698774]],[[0.17179995775223,0.014908640645444,-0.088334582746029],[0.13343980908394,0.06032232567668,-0.13036946952343],[-0.0067314212210476,0.065867312252522,0.029419142752886]],[[-0.021794999018312,0.069004200398922,0.071412168443203],[-0.013150047510862,0.010079185478389,0.11951057612896],[-0.0076098856516182,0.079951919615269,0.0049509215168655]],[[-0.046309411525726,-0.018989330157638,-0.082599848508835],[0.001019898452796,-0.13974937796593,0.038037933409214],[-0.0057634254917502,-0.043155312538147,-0.096504837274551]],[[0.093871101737022,0.047503836452961,-0.082874096930027],[0.14342744648457,-0.10991476476192,-0.086468078196049],[0.086763866245747,0.2035610973835,0.0085630547255278]],[[0.12172488123178,0.0074107828550041,0.18469280004501],[0.058066476136446,-0.02904112264514,0.11233413219452],[0.094353780150414,0.13360264897346,-0.024267600849271]],[[0.12790659070015,0.16958032548428,0.039635110646486],[-0.082823388278484,-0.08122993260622,-0.038911040872335],[-0.04106504842639,0.030579917132854,-0.027775434777141]],[[-0.079743325710297,-0.14225992560387,-0.19694368541241],[0.087272144854069,0.033374328166246,-0.34033510088921],[0.041219990700483,0.16212470829487,-0.12705700099468]],[[0.18766257166862,-0.10619592666626,0.066543839871883],[-0.02264841645956,0.030710631981492,-0.099052362143993],[-0.027495535090566,0.25027376413345,0.17111018300056]],[[-0.11687794327736,-0.019702756777406,0.12185154110193],[-0.078236743807793,0.051037471741438,-0.12400283664465],[-0.061003260314465,-0.10705403983593,0.050021078437567]],[[0.13792033493519,-0.0025146265979856,0.18564368784428],[0.26186320185661,0.1807376742363,0.0065536466427147],[-0.015526697970927,0.17992897331715,-0.0075548929162323]],[[0.044852711260319,-0.099114947021008,0.076529212296009],[0.038056500256062,-0.17446640133858,-0.14297810196877],[0.017791880294681,0.081182971596718,-0.055911637842655]],[[-0.065210327506065,0.106584854424,-0.023926764726639],[0.14609365165234,0.11079563945532,0.10330826044083],[-0.05863868445158,-0.032196905463934,-0.024712754413486]],[[0.11442613601685,0.076029352843761,-0.18564927577972],[-0.085184097290039,-0.2419740408659,-0.081655435264111],[-0.064168408513069,0.065142065286636,-0.043587286025286]],[[-0.17615333199501,-0.074761435389519,-0.088627837598324],[-0.1339665800333,0.050811935216188,-0.20713996887207],[-0.1383590400219,-0.043569844216108,0.059525430202484]],[[-0.029915122315288,-0.10425011068583,-0.095842003822327],[0.030229857191443,-0.13836732506752,-0.11638858914375],[0.058094955980778,0.0032510093878955,-0.21039862930775]],[[-0.094019547104836,0.15097491443157,0.36291241645813],[0.17489071190357,0.024497617036104,-0.24560648202896],[-0.072248138487339,-0.088729865849018,0.1737409979105]],[[-0.091558314859867,0.11733809858561,-0.02066264487803],[-0.032900270074606,0.079142786562443,0.15994411706924],[-0.15716247260571,-0.14529652893543,0.14318941533566]],[[0.0044420440681279,-0.021483771502972,-0.15127509832382],[0.15206409990788,0.0034395272377878,-0.19247700273991],[-0.052305165678263,-0.015890361741185,-0.098085179924965]],[[-0.027953362092376,-0.17457613348961,0.32927793264389],[-0.10919418185949,0.044692549854517,0.32439655065536],[-0.14258792996407,0.06469489634037,0.019769603386521]],[[0.097522012889385,-0.3208159506321,-0.22752729058266],[-0.0074701369740069,0.31998082995415,-0.10415014624596],[0.042489636689425,0.048707280308008,0.2561419904232]],[[0.078131176531315,0.025687133893371,-0.12721830606461],[-0.054054718464613,-0.088094875216484,-0.064294300973415],[0.0056516453623772,-0.10345818847418,-0.16159296035767]],[[-0.065862528979778,0.027894115075469,0.14733447134495],[0.10490590333939,0.09296078234911,0.037197608500719],[0.13662631809711,-0.059003286063671,0.14629569649696]],[[0.093070581555367,0.01504547521472,0.11853582412004],[0.14787571132183,-0.12747040390968,-0.062569446861744],[0.035245910286903,0.080127015709877,-0.043208945542574]],[[0.23709507286549,0.12430123239756,-0.055952187627554],[0.031009458005428,-0.038251969963312,-0.077342204749584],[-0.03481113165617,0.059596847742796,0.074393004179001]],[[-0.22542856633663,-0.23449411988258,0.038140118122101],[0.059905465692282,-0.13300916552544,0.073083244264126],[0.05912209302187,-0.063496589660645,-0.0937395170331]],[[-0.22194881737232,-0.24040149152279,-0.0033504790626466],[-0.019854353740811,-0.003343618940562,0.025123296305537],[0.010265881195664,0.15334038436413,0.073044888675213]],[[-0.087081260979176,0.025857320055366,-0.028785547241569],[-0.02360655926168,-0.033456448465586,-0.026995258405805],[-0.14143213629723,-0.021623307839036,-0.031603749841452]],[[0.054957736283541,0.056881114840508,0.16647452116013],[0.076824858784676,0.11870235204697,0.047844678163528],[0.063167370855808,0.05102726072073,0.11126116663218]],[[0.13482023775578,-0.19232013821602,-0.016811670735478],[0.16539213061333,0.043931182473898,-0.088669314980507],[-0.037373822182417,0.15320871770382,0.091827765107155]],[[-0.1517573595047,-0.1834451854229,-0.20025753974915],[-0.05943350866437,-0.0047844438813627,-0.053550776094198],[0.14930893480778,0.075875028967857,-0.040026694536209]],[[0.12810687720776,0.025018304586411,0.094107270240784],[0.17653006315231,0.08683218061924,0.11310844123363],[0.04547331854701,0.0031865171622485,0.1098959222436]],[[-0.064092338085175,0.098060376942158,0.12117044627666],[0.12183599919081,0.057447802275419,0.010409373790026],[0.060264300554991,-0.050671096891165,-0.044293683022261]],[[0.071328826248646,-0.062440566718578,-0.12621086835861],[0.019307009875774,0.045600026845932,-0.17617870867252],[-0.12613767385483,-0.070241503417492,-0.014946025796235]],[[0.10614342987537,-0.1252898722887,-0.014309332706034],[0.071085147559643,0.092068560421467,-0.056342732161283],[-0.067621350288391,0.067379087209702,-0.055273801088333]],[[-0.12808093428612,0.086050197482109,0.11922590434551],[-0.20946006476879,-0.01623859629035,-0.25988125801086],[0.080521263182163,-0.038190893828869,-0.03265542909503]],[[-0.051300909370184,-0.071024142205715,-0.054671231657267],[0.064414083957672,0.13873387873173,-0.074400097131729],[0.0020585989113897,0.023870976641774,-0.0066571370698512]],[[0.01100808288902,0.056881502270699,-0.12280622124672],[0.033727254718542,-0.13502079248428,-0.083380863070488],[0.063758082687855,0.050240442156792,0.066407240927219]],[[0.26350849866867,0.080148182809353,0.15594567358494],[0.054186835885048,0.05582482367754,0.19024668633938],[0.044297032058239,-0.0082002840936184,-0.018486030399799]],[[-0.035364367067814,0.03529966622591,-0.0010625869035721],[0.097325228154659,-0.062457628548145,-0.034694533795118],[-0.022470358759165,0.045557498931885,0.11734481155872]],[[-0.0014514728682116,0.10859321057796,0.31727266311646],[0.10167530179024,0.13245187699795,0.14235484600067],[0.14963780343533,0.046560697257519,-0.048513550311327]],[[-0.1353961378336,0.0025168899446726,0.12434688210487],[0.10267633199692,0.028611386194825,0.009702798910439],[0.072594232857227,-0.041481848806143,0.025847239419818]],[[-0.012077443301678,0.078778721392155,0.0097445901483297],[-0.11708377301693,-0.035672076046467,-0.092681460082531],[-0.10762555152178,-0.058597259223461,0.029014794155955]],[[0.057882379740477,-0.012603525072336,-0.26199087500572],[-0.010761003941298,0.033596735447645,0.0077419020235538],[0.096672467887402,-0.036692842841148,-0.054237015545368]],[[-0.12008003890514,0.051128000020981,-0.15363097190857],[-0.023746483027935,-0.035248629748821,-0.042208444327116],[0.12922233343124,-0.012597252614796,-0.031537819653749]],[[0.060118466615677,0.22207142412663,0.19574408233166],[0.015907185152173,-0.030236717313528,0.0012195581803098],[0.038118936121464,-0.039096165448427,-0.12028452008963]],[[0.044031918048859,-0.13803771138191,-0.098072707653046],[0.012012313120067,0.021598882973194,-0.048281315714121],[0.10139103233814,0.055767137557268,-0.055184919387102]],[[0.34482342004776,0.18525259196758,0.29280903935432],[0.033080413937569,0.080811873078346,-0.12825438380241],[-0.042353224009275,0.083398297429085,0.074572443962097]],[[-0.13982324302197,-0.05238788574934,-0.13803844153881],[-0.11839037388563,-0.1242868155241,-0.2925973534584],[-0.039499513804913,-0.27004286646843,0.12320960313082]],[[0.11974822729826,0.13006490468979,0.10241959989071],[0.038589086383581,0.021449755877256,0.13921898603439],[0.10292678326368,-0.090580351650715,0.033646494150162]],[[-0.10237520188093,-0.069900222122669,0.081243738532066],[-0.049214288592339,-0.10253246873617,0.10222315043211],[0.028963619843125,-0.13665705919266,-0.04774733632803]],[[0.28319948911667,0.082813538610935,0.0095312120392919],[0.0823043435812,0.11830339580774,0.21977631747723],[0.16134533286095,0.069078914821148,0.2255949229002]],[[-0.13317614793777,0.11886850744486,-0.00029414033633657],[0.13129889965057,0.011245793662965,0.037317849695683],[0.018780440092087,-0.1844467073679,-0.16396562755108]],[[0.082805708050728,0.090004041790962,0.091130651533604],[-0.077547393739223,0.094848841428757,0.089258059859276],[0.075038611888885,0.010121083818376,0.031784202903509]],[[-0.18683342635632,-0.20379142463207,-0.29301404953003],[0.0067007038742304,-0.097684197127819,-0.013287052512169],[0.12862400710583,0.057464338839054,0.043411962687969]],[[-0.023982705548406,0.0039466475136578,0.077344410121441],[0.19492839276791,0.2162076830864,0.057916164398193],[0.032799653708935,-0.038803022354841,0.017255108803511]],[[-0.076252982020378,-0.045117288827896,-0.0051125450991094],[-0.019411550834775,0.017796309664845,0.087423108518124],[0.08484523743391,-0.084182471036911,-0.12161941826344]],[[-0.00085569906514138,0.020099356770515,0.10655385255814],[0.021501677110791,0.0084126191213727,0.1051477715373],[-0.0031396842096001,-0.10029454529285,-0.0085221212357283]],[[0.088718600571156,0.12412691116333,0.0055179228074849],[-0.0043590199202299,-0.070689916610718,0.040493812412024],[-0.058896742761135,0.044820580631495,0.047041445970535]],[[-0.049286983907223,-0.0029666516929865,0.06334512680769],[-0.054003279656172,-0.017525494098663,0.044476244598627],[0.058346692472696,0.10878227651119,0.068131096661091]],[[-0.027962336316705,-0.013218068517745,0.095487147569656],[-0.20813417434692,0.09981170296669,0.038030557334423],[0.096703588962555,0.088628441095352,0.13505148887634]],[[0.038630224764347,-0.054080255329609,-0.18800693750381],[0.091742195188999,-0.062934935092926,-0.059599187225103],[0.22026345133781,-0.032122366130352,0.070553280413151]],[[0.027895895764232,-0.12219797074795,-0.12630878388882],[-0.089779235422611,-0.037656165659428,0.15186633169651],[-0.11645986884832,-0.040831338614225,-0.13954807817936]],[[0.11109418421984,0.0049361702986062,0.0031726025044918],[0.088995404541492,-0.074472166597843,0.020411564037204],[0.10665655881166,0.061334274709225,-0.11921959370375]],[[-0.092739939689636,0.063578933477402,0.014996065758169],[-0.03216652199626,0.03398097679019,0.022545294836164],[0.0014644240727648,0.0032120693940669,-0.0010991459712386]],[[-0.26046970486641,-0.069903992116451,0.051083702594042],[-0.061291910707951,-0.13733460009098,-0.16539545357227],[-0.097292169928551,0.26058757305145,0.015554768033326]],[[-0.27280578017235,0.0013236018130556,-0.036199010908604],[0.045081682503223,-0.078691944479942,-0.03859020024538],[-0.13316628336906,-0.11044919490814,0.0037242448888719]],[[0.12849174439907,0.00089134520385414,-0.0013379702577367],[0.035619955509901,0.07123377174139,-0.068915650248528],[-0.055123519152403,-0.016812972724438,0.00033976553822868]],[[0.1307759732008,-0.16582137346268,0.020387528464198],[-0.073743134737015,-0.11641734838486,-0.1516910046339],[0.12999849021435,-0.039658028632402,-0.14079362154007]],[[-0.02706540748477,-0.24922387301922,-0.20426915585995],[0.042141519486904,0.09493114054203,-0.081802889704704],[0.12207128107548,0.01979479379952,-0.012984644621611]],[[-0.097124628722668,-0.21974003314972,-0.36985197663307],[-0.010805855505168,-0.051807068288326,-0.17643594741821],[-0.013509447686374,-0.057263892143965,-0.043293911963701]],[[-0.053763207048178,0.069110848009586,0.049985505640507],[0.041252303868532,0.036068860441446,0.19365967810154],[0.033090107142925,-0.024737503379583,0.093792833387852]],[[0.11549714207649,0.069929592311382,-0.15052072703838],[0.068339474499226,0.11114104837179,-0.033952850848436],[0.069039061665535,0.088794864714146,0.048791982233524]],[[-0.18129131197929,-0.049773644655943,-0.073719829320908],[0.1617236584425,0.1944969445467,0.13115455210209],[-0.077979281544685,0.09949266910553,0.19399799406528]],[[-0.083513244986534,-0.17748728394508,-0.0004098993667867],[-0.10620550066233,-0.071984328329563,-0.090843200683594],[0.052072647958994,-0.047007817775011,-0.036070305854082]],[[0.012837030924857,-0.11891721189022,-0.054389324039221],[-0.26176163554192,-0.058976743370295,0.091273494064808],[-0.10331013053656,-0.021104294806719,-0.1347481906414]],[[-0.13585537672043,0.074594616889954,-0.26197129487991],[0.008738910779357,-0.072622828185558,0.15117539465427],[0.066969655454159,-0.011814915575087,-0.019239949062467]],[[-0.0046310876496136,-0.061582133173943,-0.20164559781551],[-0.10073762387037,0.020469352602959,-0.003168003866449],[0.054165162146091,0.20939761400223,0.094742074608803]],[[0.1791672706604,0.017926301807165,-0.0046123159117997],[0.26382002234459,0.073231555521488,0.29064667224884],[0.12784656882286,-0.018990311771631,-0.095311492681503]],[[-0.10163312405348,-0.091764099895954,-0.088091187179089],[-0.092098191380501,-0.048788249492645,0.019765917211771],[0.080648504197598,0.10708364844322,0.23649056255817]],[[-0.1777149438858,-0.054357327520847,-0.07745186239481],[-0.43037444353104,-0.088854685425758,-0.086856089532375],[0.068346776068211,0.15161903202534,0.069320701062679]],[[-0.19959758222103,0.0024681852664798,0.073193252086639],[0.087106235325336,0.01090082526207,0.088067136704922],[0.041979841887951,0.16572411358356,0.10479298233986]]],[[[0.012676387093961,0.0017139235278592,-0.041859325021505],[0.010556162334979,0.038507100194693,-0.021658578887582],[-0.016440497711301,0.0024779131636024,0.037366464734077]],[[0.015848457813263,-0.00051969441119581,-0.031167479231954],[-0.01819271966815,-0.064898997545242,-0.069497264921665],[0.02000349573791,0.035161051899195,0.0071142357774079]],[[-0.016525456681848,0.0044939704239368,0.052649240940809],[-0.049675423651934,-0.090343296527863,0.0059986324049532],[-0.0019235564395785,0.033590253442526,-0.053992580622435]],[[0.025894982740283,0.0043567423708737,-0.013753236271441],[-0.0045521436259151,-0.0024803238920867,0.028153827413917],[-0.074470177292824,-0.056314241141081,0.071711421012878]],[[0.0074345348402858,-0.090621918439865,-0.035957049578428],[-0.04094048961997,0.032006911933422,0.005955783650279],[-0.00022040569456294,0.0053248102776706,0.027672154828906]],[[0.056641224771738,0.013838490471244,0.044305980205536],[0.028228424489498,0.04845879971981,-0.0033320751972497],[-0.058627035468817,-0.05895859003067,0.03042858466506]],[[0.089740723371506,0.072489768266678,-0.033260121941566],[-0.089979447424412,0.047129396349192,-0.011878756806254],[-0.092898227274418,0.01457445230335,-0.066251486539841]],[[0.047771904617548,0.067260891199112,-0.094937458634377],[-0.033969841897488,-0.01865585707128,-0.020250506699085],[0.046717822551727,-0.042801260948181,-0.012128457427025]],[[0.00047027197433636,-0.011331185698509,0.03390995413065],[0.04460621997714,0.073629379272461,-0.0084044020622969],[-0.044668812304735,-0.093601427972317,-0.04149241745472]],[[-0.03267003968358,-0.0011398344067857,0.0099945804104209],[0.010308598168194,0.032084297388792,0.069556102156639],[-0.091643504798412,0.022301908582449,-0.0080598583444953]],[[0.038833424448967,-0.022960005328059,0.01679408736527],[-0.067984715104103,-0.054326586425304,-0.01424100715667],[0.028127256780863,-0.04718454927206,-0.014022645540535]],[[-0.00076099974103272,0.032040845602751,0.022955378517509],[0.027288760989904,0.0042296899482608,0.0052015096880496],[-0.059750340878963,0.015452472493052,-0.0668755620718]],[[0.042092986404896,0.084587506949902,0.019806863740087],[0.039185229688883,0.047562509775162,-0.01020974945277],[-0.011346964165568,0.045858290046453,-0.07546416670084]],[[0.020633686333895,0.01028635725379,-0.016470812261105],[0.00036090685171075,-0.03079205006361,0.0087306452915072],[0.030524672940373,0.027123063802719,0.025530610233545]],[[-0.0273720882833,0.00018033661763184,-0.017303934320807],[-0.0054202089086175,-0.062556587159634,-0.017346166074276],[-0.033137962222099,0.00065462110796943,-0.011843922547996]],[[-0.0094818044453859,-0.0091422069817781,0.015032122842968],[-0.076023422181606,-0.098981387913227,0.084379442036152],[0.016681952401996,0.042230132967234,0.028958553448319]],[[-0.026256280019879,-0.042421519756317,-0.019064081832767],[0.031467236578465,0.024755222722888,-0.042639266699553],[-0.029555827379227,0.016505740582943,0.055958341807127]],[[-0.059810034930706,0.040632601827383,-0.023125555366278],[-0.07527732104063,-0.016873767599463,0.0098046781495214],[-0.0098023461177945,0.00043350472697057,-0.067775830626488]],[[0.027311444282532,-0.017853200435638,-0.0020244682673365],[0.033599730581045,-0.063179574906826,0.024688871577382],[-0.044308073818684,0.00073898234404624,0.01705115661025]],[[0.047607485204935,0.026044799014926,0.085250295698643],[-0.049423173069954,0.022866535931826,0.019247353076935],[-0.036133531481028,0.01296538952738,0.10663016140461]],[[0.049351416528225,-0.046536013484001,-0.00095278880326077],[0.0089691830798984,0.002865995047614,-0.017622927203774],[-0.026279116049409,-0.065389335155487,0.041476279497147]],[[0.012724775820971,0.035469923168421,-0.072508037090302],[-0.0245246514678,-0.039264753460884,0.013274539262056],[0.024468742311001,-0.017789911478758,0.04713636264205]],[[-0.012953488156199,-0.070294812321663,-0.077775701880455],[-0.04820691794157,-0.02957265265286,-0.059728365391493],[0.02905835583806,0.0064837676472962,-0.02880721911788]],[[0.015482801944017,0.035846028476954,0.048657599836588],[-0.035948622971773,-0.07869778573513,0.05097857862711],[0.048227779567242,0.054693460464478,-0.022390404716134]],[[0.046349246054888,0.043558180332184,0.056688640266657],[0.033238332718611,0.0871277526021,0.017176596447825],[-0.082517512142658,-0.073987029492855,0.02859716117382]],[[-0.029003527015448,-0.031045058742166,-0.030438374727964],[-0.026640862226486,-0.0011807433329523,0.087457217276096],[0.014355367980897,-0.028226131573319,0.088102512061596]],[[0.019006632268429,0.043360028415918,0.076033808290958],[0.010288161225617,0.026001239195466,-0.013902802020311],[-0.014637530781329,-0.026806240901351,-0.030211161822081]],[[-0.023730576038361,-0.044806811958551,-0.013225080445409],[0.016618423163891,-0.0075270961970091,0.056807588785887],[-0.016563242301345,0.043469253927469,0.077444911003113]],[[-0.017275929450989,-0.036105062812567,0.0065629323944449],[-0.023396724835038,-0.023939354345202,0.11891280114651],[-0.065616726875305,0.054357700049877,0.014990653842688]],[[-0.0024244505912066,-0.014871922321618,0.043011479079723],[-0.025706954300404,-0.039472941309214,-0.084406442940235],[-0.042053926736116,-0.0090663209557533,0.03997154161334]],[[0.078085325658321,-0.013252614066005,-0.025203974917531],[-0.00053731584921479,0.038311529904604,0.03828189522028],[0.0085830390453339,0.029789436608553,-0.064181365072727]],[[0.0036973550450057,-0.055831015110016,0.015717390924692],[-0.0055379699915648,-0.023622507229447,-0.010840381495655],[-0.0071967565454543,-0.028262073174119,-0.0076386113651097]],[[0.03657815232873,0.019961673766375,-0.029135128483176],[0.013205502182245,0.018961802124977,0.012177566997707],[0.017319491133094,0.064893186092377,-0.10729612410069]],[[-0.025060890242457,0.0098909959197044,0.013138360343874],[-0.032248068600893,0.033459439873695,-0.0022586956620216],[-0.0073178121820092,-0.0028788009658456,-0.0046077892184258]],[[0.045804549008608,0.017535787075758,0.018579054623842],[0.04685228317976,0.048171643167734,0.04180534183979],[-0.070242390036583,0.063945770263672,-0.050648737698793]],[[0.032097183167934,0.050714623183012,-0.034420378506184],[0.010259050875902,-0.090298779308796,0.02447678335011],[-0.052224952727556,-0.047102358192205,0.053310818970203]],[[0.022334977984428,0.037789903581142,-0.0006517909350805],[-0.053202539682388,0.026821719482541,-0.0056086513213813],[0.048554874956608,-0.017317183315754,0.0043496894650161]],[[0.044148940593004,-0.0069613796658814,-0.020428160205483],[-0.023027312010527,-0.028102258220315,0.059253115206957],[-0.078551180660725,0.0061489189974964,0.003237760392949]],[[-0.009196256287396,0.030779480934143,-0.023422580212355],[0.037576712667942,-0.037069585174322,-0.057714980095625],[0.020480437204242,0.050910338759422,-0.054370533674955]],[[-0.012671654112637,-0.028796138241887,0.0086720902472734],[-0.0050830231048167,-0.028073620051146,0.092078745365143],[0.010556030087173,0.00018320088565815,0.001935497391969]],[[0.0110207432881,7.2676113632042e-05,-0.014901985414326],[-0.021208990365267,-0.032686378806829,-0.020120888948441],[0.018029822036624,0.052885510027409,0.01480221375823]],[[0.024896040558815,-0.061162516474724,-0.0048546562902629],[-0.020319314673543,-0.032151903957129,0.029813397675753],[0.0061021861620247,0.074274286627769,-0.0032936686184257]],[[0.017417194321752,-0.046011257916689,-0.056697864085436],[0.0063550150953233,0.030156968161464,-0.048516195267439],[-0.041964925825596,0.031198969110847,-0.0034693412017077]],[[-0.016082564368844,0.02589344419539,0.0068145464174449],[-0.03444192931056,-0.13597777485847,-0.04191192612052],[0.020340379327536,-0.072971403598785,-0.050154939293861]],[[-0.02592053823173,-0.016339212656021,-0.010368135757744],[0.021743681281805,0.092580318450928,0.079662628471851],[0.019429657608271,-0.057970821857452,-0.011217908002436]],[[-0.014035911299288,-0.0038769168313593,-0.029134722426534],[0.11876145750284,-0.020428739488125,0.023314975202084],[-0.013393989764154,-0.024134257808328,-0.016046613454819]],[[0.055272605270147,-0.023645300418139,0.0025633510667831],[0.010554689913988,-0.025587100535631,-0.022129526361823],[0.092695705592632,-0.053474307060242,0.019582869485021]],[[-0.019281765446067,-0.046425342559814,0.011430639773607],[-0.001559424563311,-0.0074985064566135,-0.062985844910145],[0.0064993179403245,0.016045017167926,-0.073891885578632]],[[0.042082354426384,2.3368957045022e-05,-0.011452237144113],[-0.016569003462791,0.0035910450387746,0.053357288241386],[0.034515827894211,-0.036676410585642,-0.0061738817021251]],[[-0.000113919886644,-0.019628247246146,0.03354600071907],[-0.045421436429024,0.043261870741844,0.010686465539038],[0.045237172394991,0.056484818458557,-0.032471287995577]],[[-0.010436906479299,0.055075578391552,-0.043322119861841],[0.044022846966982,0.029583480209112,-0.03935993462801],[0.0052430583164096,0.030470445752144,0.032033085823059]],[[-0.026603447273374,-0.035286657512188,0.031974468380213],[-0.033550512045622,0.03193562105298,0.074406497180462],[-0.054624237120152,-0.0070071760565042,0.022911394014955]],[[-0.031098119914532,-0.071385949850082,0.0039040620904416],[0.015456480905414,0.048078298568726,-0.039776299148798],[-0.021819895133376,0.089890122413635,0.032541383057833]],[[-0.034432467073202,-0.0045761223882437,0.052157554775476],[-0.00036367314169183,-0.053589187562466,-0.026653252542019],[0.052378557622433,0.0014978011604398,-0.030760779976845]],[[-0.0077346479520202,0.041316997259855,0.024074764922261],[-0.043753679841757,-0.034185986965895,0.068223647773266],[-0.075181595981121,-0.038361441344023,0.00066057842923328]],[[0.019136846065521,-0.0040156063623726,0.0056106126867235],[-0.005920841358602,-0.033928301185369,-0.0014489598106593],[0.029076727107167,-0.035865049809217,0.10761040449142]],[[-0.002441365737468,-0.00026296215946786,0.010414665564895],[0.0039252084679902,0.031072495505214,-0.099002085626125],[0.05383114144206,0.004733803216368,-0.056196089833975]],[[-0.050634734332561,0.090707324445248,-0.041245605796576],[0.034178707748652,-0.020125843584538,0.054399702697992],[-0.030236266553402,0.024083852767944,-0.017843559384346]],[[0.069212809205055,0.030957993119955,0.014558263123035],[0.0019180449889973,6.6651802626438e-05,0.022748874500394],[0.05660442635417,-0.015827612951398,-0.079906992614269]],[[0.03315082937479,-0.026821410283446,-0.028422625735402],[-0.011693758890033,-0.036063607782125,-0.051856722682714],[0.040552973747253,-0.012862077914178,0.017182361334562]],[[-0.093139976263046,-0.012585704214871,-0.032812390476465],[0.015480010770261,-0.051687076687813,-0.052468691021204],[0.014304965734482,0.05706138163805,0.01361268106848]],[[-0.095852322876453,-0.013851060532033,0.008481727913022],[-0.015015431679785,-0.066187731921673,0.023380495607853],[0.0078269802033901,0.067575871944427,-0.022283079102635]],[[0.018215537071228,-0.026239696890116,0.040478635579348],[0.075844466686249,0.047980062663555,0.005673318170011],[-0.061097957193851,0.046522613614798,0.021142844110727]],[[0.03462104126811,0.030542191118002,-0.024695137515664],[0.015468867495656,-0.095211647450924,0.056602369993925],[-0.043724182993174,-0.066746838390827,0.040027361363173]],[[-0.00038314471021295,-0.041032370179892,-0.0022701448760927],[0.09283234924078,0.040108326822519,-0.045141443610191],[-0.053664643317461,0.0040265670977533,0.02273883484304]],[[-0.075737819075584,-0.018190762028098,0.0089373076334596],[0.0034122839570045,0.022762471809983,-0.035414695739746],[-0.050544526427984,-0.0012101532192901,-0.0017467056168243]],[[-0.039750855416059,0.036922711879015,-0.027478247880936],[-0.028041392564774,-0.03277001157403,0.019456014037132],[-0.012630571611226,0.032792132347822,-0.030880192294717]],[[0.011731300503016,0.0059213102795184,0.013541198335588],[0.016880908980966,-0.010514956898987,0.080724030733109],[-0.02521413564682,0.025059342384338,-0.043746437877417]],[[2.4242708605016e-06,0.003063176991418,0.058306865394115],[-0.050753869116306,0.081453293561935,0.039303224533796],[-0.14031951129436,0.0052145984955132,0.062131464481354]],[[-0.026299325749278,0.057261798530817,0.077856488525867],[-0.058333300054073,0.003430315060541,0.076579257845879],[0.050170037895441,-0.067580692470074,0.042390462011099]],[[0.01531688682735,0.035765659064054,0.067104786634445],[-0.023925049230456,-0.010165513493121,0.010838849470019],[0.026378929615021,0.1119571775198,0.005138773471117]],[[0.058853831142187,0.053002692759037,0.038017887622118],[0.010627208277583,0.004880478605628,-0.012466388754547],[-0.014504631049931,0.074426047503948,0.042998176068068]],[[0.045610528439283,-0.09518188983202,0.0080187479034066],[-0.0007699309499003,0.10574778169394,-0.024745408445597],[-0.0012202671496198,-0.081210784614086,0.01631055213511]],[[0.048825707286596,-0.033843100070953,0.049826681613922],[-0.077869705855846,0.039047323167324,0.078788183629513],[0.046570435166359,0.051071990281343,-0.06691487878561]],[[0.15462383627892,0.0074062831699848,-0.033833634108305],[0.01476062182337,0.0098213599994779,0.074040569365025],[-0.014914765954018,-0.079346895217896,0.026581328362226]],[[-0.030587874352932,-0.046783424913883,0.030602673068643],[0.026439333334565,-0.071269832551479,0.016273217275739],[0.0071561168879271,-0.063681729137897,-0.041393499821424]],[[-0.013423862867057,-0.010438685305417,0.0033625748474151],[0.0042854296043515,0.039767026901245,-0.038329221308231],[0.0037155183963478,0.017869686707854,-0.02520745433867]],[[0.027520643547177,0.0021484189201146,0.078084424138069],[-0.023232825100422,0.03223418071866,-0.028644524514675],[0.039200458675623,-0.045835863798857,0.0068041859194636]],[[-0.017131574451923,-0.011982498690486,-0.0022708855103701],[0.0064586568623781,-0.01610647328198,0.029961679130793],[0.040414229035378,0.0074318707920611,0.0279376283288]],[[0.016500795260072,0.025882814079523,-0.016899403184652],[-0.0097210118547082,-0.027968812733889,-0.020291533321142],[-0.00054489175090566,0.013255474157631,0.01901438087225]],[[-0.03343278542161,0.030181156471372,-0.032021034508944],[0.0084451735019684,-0.0084638120606542,0.036966405808926],[0.03785365819931,0.010860209353268,0.083904877305031]],[[-0.020000660791993,0.051253132522106,0.0057697976008058],[-0.059957914054394,0.0028511448763311,0.084130823612213],[0.04853941872716,-0.035239167511463,0.037437193095684]],[[-0.0062348344363272,0.0040918225422502,0.024357905611396],[1.7062560800696e-05,0.066507838666439,-0.018773600459099],[-0.044525798410177,0.059629708528519,-0.043379530310631]],[[0.056748740375042,0.020798094570637,-0.020932801067829],[-0.034350901842117,-0.03748170286417,0.0024346043355763],[0.032531801611185,-0.00538579095155,0.038242042064667]],[[0.0069242450408638,-0.0097766648977995,-0.067050352692604],[0.023428704589605,-0.041001785546541,0.029539389535785],[-0.025563372299075,-0.045927572995424,0.096481740474701]],[[-0.058675598353148,-0.01291036605835,0.017163094133139],[-0.012792105786502,0.006667890585959,-0.024158019572496],[-0.048106491565704,-0.023127160966396,0.061481028795242]],[[-0.066490679979324,0.033742219209671,0.03617300465703],[-0.079257532954216,-0.019335282966495,0.072101593017578],[-0.020405719056726,0.0161746237427,0.073645479977131]],[[0.0079829385504127,-0.013386755250394,0.049888972193003],[-0.017427401617169,-0.0033207023516297,-0.00045490474440157],[-0.088209323585033,0.050262358039618,0.021201971918344]],[[-0.064544171094894,-0.048494789749384,-0.0043508112430573],[0.043873529881239,0.0077366740442812,0.023843536153436],[0.043994840234518,0.045274514704943,0.013487916439772]],[[0.060972861945629,-0.050204839557409,-0.053161639720201],[0.052469573915005,0.016559476032853,-0.025227632373571],[-0.012317581102252,-0.027070347219706,-0.016709933057427]],[[-0.0137854013592,-0.032735262066126,0.081399448215961],[-0.030649099498987,-0.026490461081266,-0.056159608066082],[0.044985745102167,0.045066803693771,-0.030148593708873]],[[-0.022433694452047,-0.023595537990332,0.087189987301826],[-0.0036974984686822,-0.070568688213825,0.049689058214426],[-0.014088865369558,-0.0071106678806245,0.063586749136448]],[[0.030309295281768,-0.048910446465015,-0.030711442232132],[-0.04424150288105,0.088602140545845,-0.0066930861212313],[-0.012735872529447,0.030150346457958,-0.049699231982231]],[[-0.043310359120369,-0.058574445545673,0.0075965765863657],[0.080101706087589,-0.050181355327368,-0.074072130024433],[0.0077774124220014,-0.017725044861436,-0.0032624821178615]],[[0.036672245711088,-0.041086997836828,-0.00069794023875147],[-0.0087993200868368,0.0046169734559953,0.0010995966149494],[-0.002401856938377,0.0023603134322912,-0.052812810987234]],[[-0.032000593841076,-0.024224523454905,0.0019930007401854],[0.060142047703266,0.012933946214616,-0.033406410366297],[-0.017046317458153,-0.0015674794558436,-0.038752865046263]],[[0.036754798144102,0.045000333338976,0.045139446854591],[-0.066377118229866,0.020752940326929,0.039636380970478],[-0.029132708907127,0.049973342567682,-0.02586780115962]],[[-0.0027362927794456,0.027129231020808,-0.048891544342041],[-0.024052454158664,-0.020276673138142,-0.047659359872341],[-0.059485509991646,0.098464176058769,0.0011320029152557]],[[-0.011579412035644,0.048950981348753,-0.0060279602184892],[0.060450714081526,-0.025832328945398,0.013023847714067],[-0.021693291142583,0.014697247184813,0.035291604697704]],[[0.04026859998703,-0.059047941118479,0.042794033885002],[-0.016293872147799,0.10300870239735,-0.0595688149333],[-0.016312496736646,-0.038807388395071,0.078745134174824]],[[0.012463746592402,0.039283882826567,-0.12166580557823],[0.042189154773951,0.0059473942965269,0.03279647603631],[-0.079448938369751,0.031580880284309,0.023787505924702]],[[-0.033813320100307,0.026532411575317,0.021027948707342],[0.0077296453528106,-0.095067895948887,0.055715929716825],[0.041457589715719,-0.057283993810415,-0.012960294261575]],[[-0.03173067048192,-0.062926381826401,0.062985777854919],[-0.0031140472274274,-0.012664545327425,-0.052059203386307],[-0.031579747796059,-0.025889923796058,0.013457327149808]],[[-0.005518885795027,0.026698367670178,0.08576849848032],[0.046293348073959,-0.024354171007872,-0.017128951847553],[-0.031540334224701,-0.0048013343475759,-0.048378359526396]],[[0.019796945154667,0.032651912420988,0.0017908639274538],[0.031726390123367,0.079083271324635,-0.054144389927387],[-0.053383126854897,0.049327924847603,0.0081413425505161]],[[0.01662278547883,-0.030030507594347,-0.0056212381459773],[-0.033418215811253,0.01787631213665,-0.00076520832953975],[0.053929530084133,0.051555469632149,-0.014783637598157]],[[-0.010433434508741,-0.008386149071157,0.0439657792449],[0.022136624902487,0.029972026124597,0.046646934002638],[-0.047434736043215,0.021526103839278,-0.078793987631798]],[[-0.0065329577773809,0.004111472517252,-0.062891185283661],[-0.015839643776417,0.053694181144238,0.034730404615402],[0.021068388596177,-0.0068342820741236,0.036464728415012]],[[0.0044002123177052,0.027620619162917,0.023907944560051],[-0.036763165146112,0.0074606635607779,-0.0095657370984554],[-0.032152891159058,-0.00063026393763721,-0.0068261725828052]],[[-0.059125617146492,-0.083741307258606,0.068913154304028],[0.08447677642107,-0.062283776700497,-0.012894262559712],[-0.0059214220382273,0.030771581456065,-0.019695473834872]],[[0.049915619194508,-0.043278247117996,0.01606635004282],[-0.0010202504927292,0.021122330799699,0.08994223177433],[0.0099168866872787,0.052659638226032,0.014294170774519]],[[-0.098216257989407,0.00010177653894061,-0.0077065015211701],[0.00015422989963554,-0.046948980540037,-0.0070685953833163],[-0.040788609534502,0.0016931894933805,-0.022918023169041]],[[-0.03642475605011,-0.019226524978876,-0.085218906402588],[-0.020791990682483,-0.018288439139724,0.0036354358308017],[0.021988593041897,-0.0075298054143786,0.0024414942599833]],[[0.039172541350126,0.024925801903009,0.045676410198212],[0.0030356699135154,0.027997184544802,0.018873039633036],[-0.057392574846745,0.019300922751427,0.035504389554262]],[[0.0052987029775977,0.018956735730171,-0.035827577114105],[-0.022181909531355,-0.024305775761604,0.055375017225742],[-0.00037789394264109,-0.02077392116189,-0.023066442459822]],[[-0.026726946234703,0.025935204699636,0.029485395178199],[0.030413435772061,-0.052263174206018,-0.0055748485028744],[0.026072030887008,-0.0013645685976371,-0.012842020019889]],[[0.00049191160360351,0.013077940791845,-0.017818911001086],[-0.068800449371338,-0.0050996579229832,-0.046956691890955],[-0.020178981125355,0.057712830603123,0.00023678797879256]],[[-0.0087718712165952,0.043359372764826,-0.050727657973766],[0.064607709646225,-0.071291364729404,0.033218398690224],[-0.010525234043598,-0.025035940110683,0.013580621220171]],[[-0.0099946670234203,-0.05248561128974,-0.044577270746231],[0.014575221575797,0.02818619273603,0.0120545681566],[-0.025736957788467,0.0082544675096869,-0.0041979374364018]],[[0.071630515158176,-0.031789984554052,0.04678788036108],[0.035720679908991,-0.017022622749209,0.010704373940825],[-0.022182375192642,-0.046407397836447,0.041421696543694]],[[-0.01417482830584,-0.065256580710411,-0.0015183967771009],[0.044214934110641,-0.042400270700455,0.0083184912800789],[0.00087695993715897,-0.068269401788712,-0.001662964001298]],[[0.012918786145747,0.054462168365717,-0.05470148473978],[0.022219842299819,0.10121008008718,0.053573217242956],[-0.018273994326591,-0.021353552117944,-0.066647432744503]],[[0.040798857808113,-0.042926337569952,0.015500846318901],[0.032865408807993,-0.0026786259841174,0.032587200403214],[0.068225219845772,0.12226940691471,0.034068144857883]],[[0.06388246268034,-0.0083393743261695,0.059387046843767],[0.032101318240166,0.085369244217873,-0.074142396450043],[-0.034886449575424,-0.0046646501868963,0.047859363257885]],[[0.034646742045879,0.0018337622750551,0.04757871851325],[-0.079245366156101,-0.017137717455626,-0.034405913203955],[-0.043726660311222,-0.011620114557445,-0.027257395908237]],[[-0.07378825545311,0.011294382624328,0.081358075141907],[-0.022951815277338,0.040514472872019,0.023270105943084],[0.046718172729015,-0.0016372834797949,-0.084562085568905]],[[0.0063527002930641,0.033940207213163,-0.018252439796925],[-0.019940741360188,-0.0156245296821,-0.042759731411934],[0.11016768217087,-0.028950229287148,0.025050448253751]],[[-0.045696705579758,-0.02016987092793,-0.027711087837815],[-0.031971473246813,0.016549939289689,0.022258898243308],[0.0088203186169267,0.042391005903482,-0.018245158717036]]],[[[0.10834587365389,-0.001616712892428,-0.24229435622692],[0.045732289552689,-0.060620665550232,-0.083053976297379],[0.060575667768717,-0.0084086386486888,0.068949855864048]],[[-0.069265089929104,-0.040105771273375,-0.020143371075392],[-0.05962285399437,0.017869524657726,-0.23657584190369],[0.21407502889633,0.060658950358629,-0.091752596199512]],[[0.1649336963892,0.071643561124802,-0.049320351332426],[0.39857724308968,0.15571227669716,-0.16196623444557],[0.4721243083477,0.05512784793973,-0.38811203837395]],[[0.092130869626999,0.1218901053071,-0.14001893997192],[-0.24889740347862,-0.13200068473816,-0.17736040055752],[0.023904597386718,0.066577710211277,-0.028329787775874]],[[0.078290320932865,-0.012605718336999,-0.1386696100235],[-0.1298960596323,-0.058037463575602,-0.1165013089776],[0.087825268507004,4.7911038564052e-05,0.0061091990210116]],[[-0.025782117620111,-0.034696880728006,-0.024354891851544],[0.10169596970081,0.11785876005888,0.03688258305192],[0.15560929477215,-0.095300704240799,-0.026574054732919]],[[-0.060584302991629,0.046370577067137,-0.083499193191528],[-0.10199439525604,-0.066475547850132,-0.061362538486719],[-0.030439401045442,-0.10451967269182,-0.19688619673252]],[[0.06770171970129,-0.043111406266689,-0.1034293025732],[0.0039203981868923,-0.07537192851305,-0.10454352945089],[0.020603528246284,-0.11047533899546,0.080241844058037]],[[-0.17028281092644,0.056728340685368,0.26375952363014],[-0.14499451220036,-0.097756743431091,0.10680033266544],[-0.13329562544823,-0.21929812431335,0.032064989209175]],[[-0.07085257768631,0.043764594942331,-0.1501235216856],[0.18491618335247,-0.040333572775126,0.0180146060884],[-0.069325186312199,-0.040217973291874,-0.1108730584383]],[[0.13763377070427,0.0070431726053357,0.24023120105267],[-0.054388631135225,-0.082356214523315,-0.023939292877913],[0.02259674295783,-0.042674329131842,-0.031890865415335]],[[-0.037889897823334,-0.026478657498956,0.046688813716173],[0.030357332900167,0.038306415081024,-0.026891052722931],[0.076064683496952,0.1324085444212,-0.00050304707838222]],[[-0.018286166712642,0.050506319850683,-0.14060558378696],[-0.053100612014532,-0.1346827596426,-0.20332282781601],[0.12478410452604,-0.062960550189018,-0.12242301553488]],[[0.036284700036049,-0.063151501119137,-0.02377307228744],[-0.054656740278006,-0.1357409209013,-0.090172842144966],[-0.031000101938844,0.091105543076992,-0.017931504175067]],[[-0.23898904025555,0.096590280532837,0.023739626631141],[-0.38695022463799,-0.13882870972157,-0.10110118240118],[0.10637274384499,0.19353625178337,0.22555910050869]],[[0.21120841801167,0.022930497303605,-0.16365329921246],[0.19722165167332,-0.12341363728046,-0.077854476869106],[0.24831256270409,0.055578004568815,0.10844963788986]],[[0.080428309738636,-0.075363524258137,-0.024749662727118],[0.12542247772217,-0.061006594449282,0.097942598164082],[-0.14710982143879,0.012935505248606,-0.016340842470527]],[[0.068461865186691,0.16061234474182,0.00057404191466048],[-0.11814801394939,0.0034287581220269,-0.070366725325584],[-0.40568900108337,-0.34255808591843,-0.16861329972744]],[[-0.13220359385014,-0.067213349044323,-0.23106290400028],[-0.17071636021137,-0.048204801976681,0.089032620191574],[-0.062637820839882,0.012526234611869,0.28855422139168]],[[-0.020569298416376,-0.047495894134045,0.064016133546829],[0.098895892500877,0.16540269553661,0.029226856306195],[0.0068345218896866,0.10350306332111,0.10869174450636]],[[0.032691933214664,-0.045704696327448,-0.1327511370182],[0.013064169324934,0.064575642347336,0.033568631857634],[0.13817410171032,0.038713961839676,-0.015899259597063]],[[-0.0050613256171346,-0.037657704204321,0.017433548346162],[0.0027579637244344,-0.049501307308674,0.044999439269304],[-0.011168980039656,0.010440342128277,0.14197535812855]],[[-0.048826556652784,-0.0034007700160146,0.013619814999402],[-0.21647670865059,-0.057431731373072,0.095762275159359],[-0.11334525793791,0.064960062503815,0.02328734099865]],[[-0.010878203436732,0.07735700905323,0.1653303951025],[-0.14445245265961,-0.11040215939283,-0.13176834583282],[0.044930595904589,-0.076486140489578,-0.1428856998682]],[[-0.15037846565247,-0.079034142196178,-0.10943492501974],[-0.098657339811325,0.0068050492554903,-0.12596718966961],[0.035386480391026,0.047530695796013,-0.076173014938831]],[[-0.11309608817101,-0.14329054951668,-0.0026833722367883],[-0.16873459517956,-0.18291276693344,-0.20567134022713],[0.017948957160115,0.14422452449799,0.015417383983731]],[[0.082406789064407,-0.065474569797516,-0.017478616908193],[0.16002948582172,0.063697502017021,0.1660642772913],[-0.33947321772575,-0.0072961482219398,0.12358102202415]],[[-0.0039253048598766,0.10049903392792,0.10679128021002],[-0.018788194283843,-0.097945660352707,0.032617766410112],[-8.6690059106331e-05,0.022963542491198,-0.016037562862039]],[[-0.19366554915905,-0.052972752600908,0.1474888920784],[0.034982316195965,-0.12314643710852,-0.056912548840046],[0.17945021390915,0.081591568887234,-0.11181949079037]],[[0.052276860922575,0.049940533936024,0.14454457163811],[0.012231467291713,0.066138379275799,-0.056061983108521],[-0.11857032775879,-0.060595043003559,0.02507471293211]],[[-0.15850038826466,-0.13901719450951,-0.040923330932856],[0.043867714703083,0.31816494464874,0.19161039590836],[-0.04753290116787,-0.20448672771454,-0.18799279630184]],[[-0.02075120061636,0.066590815782547,0.024972308427095],[-0.0052679944783449,-0.026267291978002,0.029339009895921],[0.029419479891658,-0.052472278475761,-0.14421306550503]],[[0.031212715432048,0.13747039437294,-0.072375513613224],[-0.046344812959433,0.065210923552513,0.061018068343401],[0.0030657525639981,-0.10167270153761,-0.09718368947506]],[[-0.031224966049194,0.025895591825247,0.23982983827591],[0.053529400378466,-0.0183987878263,0.12325015664101],[-0.12792305648327,-0.085045531392097,-0.007570767775178]],[[-0.028354298323393,-0.075459621846676,-0.12189776450396],[-0.1140609011054,-0.13993880152702,-0.21318726241589],[-0.2855452299118,-0.20246183872223,-0.30411985516548]],[[0.027783574536443,0.042297516018152,0.047108974307775],[0.0065162479877472,-0.19472596049309,0.25832903385162],[0.22604228556156,0.10203409194946,-0.26883298158646]],[[0.12323552370071,0.096380546689034,-0.03816632181406],[-0.028340687975287,-0.20174652338028,-0.035216331481934],[-0.089705169200897,0.16158084571362,0.14386227726936]],[[0.0025201430544257,-0.024434858933091,-0.023405272513628],[-0.086210004985332,0.01039229426533,0.021113406866789],[-0.095944002270699,0.12188520282507,0.1127192825079]],[[-0.085967555642128,-0.10407537221909,-0.077903293073177],[-0.0032538673840463,0.018833497539163,-0.01558790449053],[0.050959307700396,0.13603322207928,-0.17031802237034]],[[0.012079909443855,-0.1295767724514,0.028306970372796],[0.045799292623997,-0.022270640358329,-0.03751578181982],[0.12312411516905,-0.045980054885149,0.16019253432751]],[[-0.051573276519775,0.011340053752065,-0.010790017433465],[-0.034956332296133,0.002738201059401,-0.1539431810379],[-0.12541696429253,0.20142139494419,0.41773980855942]],[[0.01370981708169,0.098897829651833,0.013448975980282],[-0.0078202905133367,-0.032820172607899,0.032742291688919],[0.081650495529175,0.15817441046238,-0.0034947500098497]],[[0.068416625261307,0.02862810716033,0.098433397710323],[0.014413836412132,-0.0050479834899306,0.085944347083569],[-0.12728245556355,-0.10027515888214,-0.108935944736]],[[0.071879133582115,0.069104582071304,0.14901384711266],[-0.054255358874798,-0.087840408086777,-0.044320501387119],[0.0035679759457707,-0.14445817470551,-0.11738093197346]],[[0.13447399437428,0.051031343638897,-0.17123213410378],[0.05340313911438,0.30451086163521,0.11129714548588],[-0.12331592291594,0.082215666770935,0.25774243474007]],[[0.10701961070299,0.046472817659378,0.083377279341221],[0.080494739115238,0.13924746215343,0.1589777469635],[0.068879976868629,0.011608464643359,0.10827603936195]],[[-0.012473976239562,0.16940402984619,0.18271327018738],[0.047666549682617,0.061556965112686,0.055247616022825],[-0.018643278628588,-0.058984775096178,0.046961292624474]],[[0.062326077371836,-0.27988186478615,-0.24474430084229],[0.021737335249782,0.19534778594971,0.12330531328917],[-0.043106947094202,-0.12867660820484,-0.061135780066252]],[[-0.025770584121346,-0.28005456924438,-0.027438113465905],[-0.010224378667772,-0.041852194815874,-0.22402815520763],[-0.023452626541257,-0.026491288095713,-0.087587177753448]],[[0.05359098315239,0.10632665455341,0.11691385507584],[0.043000910431147,-0.0378099642694,-0.25241613388062],[0.2046392261982,0.02496219240129,0.0028208964504302]],[[-0.068233340978622,-0.13335710763931,-0.013569858856499],[-0.018452920019627,-0.022919585928321,0.020147753879428],[-0.16210669279099,-0.043225839734077,-0.023346433416009]],[[0.25365275144577,0.19566302001476,0.20284105837345],[0.09153874963522,0.020483138039708,-0.013560167513788],[0.042017955332994,0.10573394596577,-0.11026217788458]],[[0.02248820848763,0.033919524401426,0.005996941588819],[0.068957954645157,0.087069571018219,-0.081061989068985],[-0.04072181135416,-0.002458723494783,-0.030469805002213]],[[-0.31898191571236,-0.025360194966197,-0.045265682041645],[-0.137790620327,0.014348569326103,0.12338158488274],[0.05233907699585,-0.1360546797514,-0.15367443859577]],[[0.28400573134422,-0.13544134795666,-0.26954439282417],[0.058590918779373,0.37179118394852,0.2121104747057],[-0.0076476274989545,-0.1893395781517,-0.081361584365368]],[[0.24706280231476,-0.1310428828001,0.027847373858094],[0.20177653431892,0.20459970831871,-0.13707515597343],[0.0048063700087368,-0.25564709305763,-0.19968283176422]],[[-0.085479393601418,-0.0068929176777601,0.075345300137997],[-0.14963328838348,0.039532218128443,0.068371810019016],[-0.041648857295513,0.39124357700348,0.015437678433955]],[[-0.07002841681242,-0.0015691375592723,-0.028140801936388],[-0.068268366158009,-0.048361744731665,0.024344515055418],[-0.071907803416252,-0.25218787789345,-0.1341595351696]],[[0.22338892519474,0.083800233900547,0.042282205075026],[-0.33961975574493,-0.18116517364979,-0.080248221755028],[0.034774534404278,0.019661782309413,0.25738173723221]],[[-0.077313937246799,-0.10089180618525,-0.02515722438693],[-0.090048491954803,-0.11239380389452,0.23153886198997],[-0.10784347355366,0.048953413963318,0.071259438991547]],[[0.040539138019085,0.088215515017509,0.12537349760532],[-0.14303636550903,-0.058656726032495,-0.19715519249439],[0.05105946585536,-0.066164821386337,-0.22055324912071]],[[-0.18376016616821,-0.59390872716904,-0.11106704175472],[-0.092344127595425,0.027089146897197,-0.1789870262146],[-0.17589780688286,-0.3280434012413,-0.071116253733635]],[[-0.027252927422523,-0.12751454114914,0.029372779652476],[0.17885585129261,0.082066014409065,0.19954815506935],[0.069858185946941,0.13397261500359,0.23679476976395]],[[0.11108222603798,-0.016210736706853,-0.00060005154227838],[0.077072776854038,-0.072188191115856,-0.088373802602291],[0.095729500055313,0.25563511252403,-0.1640145778656]],[[-0.16231732070446,-0.21680223941803,-0.049833081662655],[-0.056147802621126,-0.12759938836098,-0.15285298228264],[0.005494792945683,0.058127980679274,0.029348792508245]],[[-0.098662301898003,0.053319565951824,0.36897292733192],[-0.062432605773211,0.10230121016502,0.27891743183136],[-0.21491742134094,-0.057050488889217,0.069032169878483]],[[-0.091765180230141,-0.27754187583923,-0.036648724228144],[0.065438829362392,-0.10681848227978,0.1211511194706],[0.078529588878155,-0.054631572216749,-0.30984172224998]],[[-0.058457341045141,0.10002660751343,-0.085765838623047],[0.054396271705627,0.016909994184971,0.069785863161087],[0.0061255381442606,0.11380606144667,0.014314718544483]],[[-0.014571946114302,0.047066301107407,0.11905777454376],[-0.045218121260405,-0.045810766518116,0.062019269913435],[0.21510933339596,0.10011684149504,-0.16243244707584]],[[-0.1181290820241,0.1045104265213,0.11448368430138],[-0.16358880698681,0.018362401053309,0.30263620615005],[-0.13227090239525,0.11858814954758,0.36816948652267]],[[0.019966525956988,0.11214371025562,0.11706560105085],[0.14572001993656,0.11774723976851,0.028548654168844],[-0.016132475808263,0.037091612815857,-0.084394678473473]],[[-0.012494250200689,0.028332278132439,-0.034370079636574],[-0.0053980993106961,0.079223684966564,0.047351863235235],[-0.15436840057373,-0.065440580248833,0.099089808762074]],[[-0.03372685611248,-0.037415266036987,-0.003597391070798],[-0.34907060861588,-0.031562257558107,0.05309909209609],[0.12694419920444,-0.10570975393057,-0.22596998512745]],[[-0.027720913290977,0.18791881203651,0.12923410534859],[-0.049636863172054,-0.092033378779888,-0.030380783602595],[-0.13851152360439,-0.15799896419048,-0.15909296274185]],[[0.21915566921234,0.14680802822113,0.11373563855886],[-0.12413863837719,-0.080591112375259,-0.024564027786255],[-0.27217355370522,-0.16165645420551,-0.18181397020817]],[[-0.16391423344612,0.13690216839314,0.014154507778585],[-0.18543861806393,-0.098694913089275,0.44745579361916],[0.044155359268188,0.038289304822683,0.026012530550361]],[[-0.18685275316238,0.0060223904438317,0.031324159353971],[-0.22968193888664,-0.19725020229816,-8.0192046880256e-05],[0.14172323048115,0.094079323112965,0.059380758553743]],[[0.043826788663864,-0.082297049462795,-0.081227511167526],[-0.017528370022774,0.14161238074303,-0.042475488036871],[0.096474096179008,0.0051484550349414,0.043484561145306]],[[-0.01212365925312,0.0076784258708358,-0.11384285986423],[0.12432906031609,0.14320610463619,0.020300948992372],[0.089059628546238,-0.010341527871788,-0.027902480214834]],[[-0.019131638109684,-0.10512891411781,-0.011275991797447],[-0.10847924649715,-0.015953840687871,0.082155227661133],[-0.012283987365663,0.10068587213755,0.26538401842117]],[[0.027521643787622,-0.12958711385727,0.22387160360813],[-0.023333806544542,-0.13290591537952,0.054853450506926],[-0.083071775734425,0.020373282954097,0.045201763510704]],[[-0.13139846920967,0.024235403165221,0.029341083019972],[-0.11221391707659,-0.082518354058266,-0.30285033583641],[0.18297816812992,0.077485166490078,0.0055156857706606]],[[-0.08265358954668,-0.3510739505291,-0.17295567691326],[0.2510167658329,0.087591990828514,-0.11751140654087],[-0.26198577880859,-0.16773180663586,-0.040020644664764]],[[0.0523033849895,0.072131089866161,0.029723120853305],[-0.21645712852478,-0.047631863504648,0.039518978446722],[0.037007514387369,0.030379520729184,0.092326194047928]],[[-0.13882450759411,-0.26404532790184,0.015936436131597],[0.050257097929716,0.17368166148663,-0.069338358938694],[-0.090187817811966,-0.17527857422829,0.284653455019]],[[-0.090318582952023,0.045256532728672,0.19372668862343],[-0.15779213607311,-0.08944033831358,0.0024889637716115],[0.03531413897872,-0.1162798628211,-0.054740678519011]],[[-0.15409982204437,-0.10790661722422,-0.10408610850573],[0.023583630099893,-0.045703046023846,-0.10400183498859],[0.051407963037491,0.17427924275398,0.023541091009974]],[[-0.16645313799381,-0.053472708910704,0.021042685955763],[0.19470490515232,0.026767168194056,0.050872102379799],[0.11766827851534,-0.084578983485699,0.0072859125211835]],[[-0.062761448323727,-0.025410568341613,0.1063592210412],[-0.0052053388208151,0.045708194375038,0.082427963614464],[0.0081038624048233,0.12345819920301,0.10391405969858]],[[0.036444593220949,0.069865368306637,0.0048373183235526],[0.067555390298367,-0.078927762806416,-0.087856203317642],[0.16246156394482,0.093416549265385,-0.16751912236214]],[[0.0036049140617251,0.030663093551993,-0.13729827105999],[0.18659161031246,-0.04789811372757,-0.31272459030151],[0.36513251066208,0.12817092239857,0.037311248481274]],[[0.14664189517498,0.017775366082788,0.00070903822779655],[-0.0024839430116117,0.097544558346272,-0.26565876603127],[0.10388945043087,-0.059276189655066,-0.090972304344177]],[[-0.084859676659107,-0.028172470629215,-0.098670400679111],[0.013880589045584,-0.073859706521034,-0.076149694621563],[-0.15234713256359,-0.040365617722273,0.023904429748654]],[[0.11979568004608,0.08168987929821,-0.41472578048706],[-0.075458861887455,0.042890533804893,0.077809281647205],[-0.35918840765953,0.0064359977841377,0.22594447433949]],[[0.16193687915802,0.026429288089275,0.013098638504744],[0.015986563637853,0.062116000801325,-0.021495437249541],[-0.24955347180367,-0.5105397105217,-0.26631230115891]],[[-0.012321980670094,-0.10012627393007,0.032763529568911],[0.14743420481682,0.17555592954159,0.083365969359875],[-0.25616902112961,-0.087939716875553,-0.013596789911389]],[[0.070888251066208,-0.11656510829926,0.11408877372742],[0.02726043201983,0.084379859268665,-0.12083247303963],[0.14740751683712,-0.076252803206444,-0.12793059647083]],[[-0.058049481362104,0.16006553173065,0.29005160927773],[-0.092319905757904,0.1281418800354,-0.055384755134583],[0.071056894958019,0.013782885856926,0.053974397480488]],[[0.072006873786449,-0.083415143191814,-0.1393658965826],[0.1403995603323,0.21359710395336,-0.031452592462301],[0.1020624563098,0.073163874447346,-0.070342838764191]],[[0.13535167276859,0.014967949129641,-0.028849873691797],[-0.10649412870407,-0.18049629032612,0.14275346696377],[-0.10317654907703,-0.040630418807268,-0.10519216954708]],[[-0.045428149402142,-0.22245243191719,-0.51271891593933],[-0.088607959449291,-0.1898635327816,-0.2127690911293],[0.14016212522984,0.050666742026806,-0.16555413603783]],[[0.092928357422352,0.094844438135624,0.0092110177502036],[-0.011385934427381,0.0063868970610201,-0.03812001645565],[0.070289745926857,-0.1512196213007,-0.084527589380741]],[[0.13461431860924,0.17197445034981,0.27132093906403],[-0.0083801466971636,-0.15291519463062,-0.072359763085842],[-0.026131201535463,-0.1237021163106,-0.10516384243965]],[[-0.010675811208785,-0.099596731364727,0.12735041975975],[0.17365945875645,0.19818465411663,0.034395296126604],[-0.010263943113387,-0.041311141103506,-0.23509718477726]],[[-0.034865282475948,0.045515775680542,-0.065829679369926],[0.035938058048487,0.023026842623949,-0.056271452456713],[-0.10583758354187,0.086082510650158,0.070192329585552]],[[-0.0073931915685534,-0.22018830478191,-0.3171581029892],[0.012665344402194,-0.014398995786905,-0.13280266523361],[0.13794827461243,0.047974690794945,0.040579125285149]],[[-0.051168169826269,0.09528710693121,0.18581189215183],[0.0030727260746062,0.068115502595901,0.015231065452099],[0.036849416792393,0.038319569081068,0.084449678659439]],[[0.16707664728165,0.070239529013634,-0.0094672664999962],[0.030935036018491,0.051951710134745,-0.17780132591724],[-0.0038122120313346,-0.068736687302589,-0.083175979554653]],[[-0.11461050063372,-0.052581734955311,-0.077403277158737],[-0.043785147368908,-0.048154227435589,-0.040520153939724],[-0.14949381351471,-0.074430271983147,-0.11075406521559]],[[0.13136929273605,0.096972107887268,0.038070909678936],[0.10911621153355,-0.0018712809542194,-0.17138609290123],[-0.14700762927532,-0.11454651504755,-0.013464994728565]],[[-0.093396127223969,-0.044274486601353,-0.12697219848633],[0.01185997389257,-0.066013500094414,-0.055499754846096],[0.075790077447891,0.049317292869091,0.13767720758915]],[[-0.07075173407793,0.077938593924046,0.12080512195826],[-0.15881544351578,-0.12035722285509,0.1270976215601],[-0.082477852702141,-0.2529736161232,-0.097555190324783]],[[-0.23121440410614,-0.047553971409798,-0.042555782943964],[0.04452084377408,-0.072920873761177,-0.0021170028485358],[-0.06551031768322,0.051456559449434,0.14176584780216]],[[0.0031254121568054,0.07583174854517,0.17385026812553],[0.062250092625618,-0.05782562494278,-0.049207679927349],[-0.12673822045326,-0.096537373960018,-0.15800251066685]],[[-0.18626606464386,-0.11608978360891,-0.005557426251471],[0.13390076160431,0.061970509588718,0.0026413735467941],[-0.016970114782453,0.24137124419212,0.0070598064921796]],[[-0.095639929175377,0.051067754626274,-0.035354528576136],[-0.064056918025017,-0.03840596228838,-0.11367174237967],[0.005527057684958,-0.14690987765789,0.090966448187828]],[[0.047547779977322,0.13403506577015,-0.1131342202425],[-0.050280649214983,-0.12605999410152,0.074517942965031],[-0.22269223630428,-0.05620313808322,-0.014613728970289]],[[-0.051240477710962,0.026294406503439,0.081124804913998],[-0.060035675764084,0.027135649695992,-0.054510768502951],[-0.031077839434147,-0.052926652133465,0.0787687972188]],[[0.062748096883297,-0.0073578110896051,-0.071800611913204],[0.24325558543205,0.035180568695068,0.027544653043151],[0.022852171212435,-0.21407169103622,-0.24727022647858]],[[-0.0065447455272079,-0.098704285919666,0.082651846110821],[-0.04367907717824,0.012287459336221,-0.14513617753983],[-0.079480968415737,0.30714198946953,0.20935912430286]],[[-0.022447913885117,-0.091351680457592,0.065398029983044],[0.066341005265713,0.087718151509762,0.018097897991538],[-0.092043057084084,-0.1531343460083,0.047392901033163]],[[-0.07239031791687,0.023814031854272,0.10355722159147],[0.094733782112598,0.10705012083054,0.034519325941801],[-0.13311043381691,-0.046314440667629,-0.12480439990759]],[[-0.11154285818338,0.017852880060673,0.30400231480598],[0.044808354228735,-0.1264404207468,-0.076923795044422],[-0.039779670536518,0.0053018131293356,-0.084302604198456]],[[-0.060288362205029,0.045377340167761,-0.090545281767845],[-0.2180153131485,-0.11636018007994,-0.072323448956013],[-0.17588612437248,-0.075604602694511,0.11684936285019]],[[-0.024021038785577,-0.038601890206337,0.2735558450222],[-0.31414607167244,-0.16235925257206,0.018044840544462],[-0.1452941596508,-0.10072936862707,-0.074509918689728]],[[0.087897501885891,0.017214998602867,-0.074598141014576],[0.10742748528719,0.013762190006673,-0.041339639574289],[0.035356897860765,0.029150426387787,-0.037673886865377]],[[0.07488901168108,0.088013477623463,0.11760011315346],[-0.076997615396976,-0.22059334814548,-0.23847275972366],[-0.024202700704336,-0.065714374184608,-0.2084703296423]],[[-0.084626108407974,-0.073280535638332,0.083971455693245],[0.079023197293282,-0.080180041491985,-0.030650120228529],[-0.027571326121688,0.081493899226189,-0.039922773838043]]],[[[-0.0051017715595663,0.040861189365387,0.024241048842669],[0.014912771992385,0.030600871890783,0.016014318913221],[0.091356411576271,-0.0076434011571109,-0.029383270069957]],[[-0.0044152331538498,0.042279906570911,0.061343614012003],[-0.069193862378597,-0.0039317165501416,-0.0089154550805688],[-0.078887820243835,-0.02402070723474,0.032992370426655]],[[0.051356684416533,-0.030053060501814,-0.0095971142873168],[-0.010323810391128,0.027843467891216,0.03638206794858],[0.094176724553108,0.0074178134091198,0.052840411663055]],[[-0.030962331220508,-0.0092084892094135,0.00094923068536445],[0.046252835541964,-0.047411475330591,0.048713952302933],[0.0054043992422521,0.0063103209249675,0.036707784980536]],[[0.067280061542988,-0.0021916681434959,0.018369479104877],[0.00034457203582861,-0.039707411080599,0.056620389223099],[0.083498105406761,-0.013206926174462,0.0023476826027036]],[[-0.0080722291022539,0.064243666827679,-0.0086539844051003],[0.11224946379662,-0.053300324827433,-0.037675756961107],[0.0071820826269686,0.024638889357448,0.026695393025875]],[[0.026740929111838,0.10668861865997,0.0091677652671933],[-0.010700606741011,0.022306932136416,0.12090077996254],[-0.017937414348125,0.046744268387556,-0.018621720373631]],[[0.10845451056957,-0.016366071999073,-0.015113078989089],[-0.0071615688502789,0.026584858074784,0.043338846415281],[0.099745728075504,0.036769095808268,-0.013313505798578]],[[0.00092264654813334,-0.025608161464334,0.007113722153008],[-0.017186922952533,-0.014356590807438,-0.089681431651115],[-0.071483813226223,0.010972373187542,-0.0025957163888961]],[[0.06943367421627,0.073003433644772,0.0559460259974],[-0.025364371016622,-0.052362203598022,0.062001556158066],[0.09496233612299,0.07637769728899,0.0035556755028665]],[[-0.037519078701735,-0.049856215715408,-0.044991731643677],[0.034641731530428,0.026455709710717,0.060618780553341],[0.11989740282297,-0.028083609417081,-0.02522400021553]],[[-0.0099661611020565,0.027973068878055,0.030779357999563],[0.093798384070396,-0.072679921984673,0.066853433847427],[0.077413618564606,0.0018501686863601,0.0062769912183285]],[[0.083309940993786,-0.0041262372396886,0.079421743750572],[-0.018604272976518,-0.028993947431445,0.076957523822784],[0.10153567045927,0.0040644723922014,0.011385012418032]],[[-0.021707240492105,-0.020504079759121,0.082041345536709],[0.041042726486921,0.011394768022001,-0.01389020588249],[0.050755586475134,0.0056658214889467,0.018453350290656]],[[-0.015246489085257,0.043438080698252,-0.089971162378788],[-0.025926319882274,-0.081423729658127,0.016228841617703],[-0.090810813009739,0.064875610172749,0.054069302976131]],[[-0.019121196120977,0.015054614283144,-0.066833637654781],[-0.0014269818784669,-0.0082293851301074,0.099760144948959],[-0.078293591737747,-0.052642665803432,-0.071010999381542]],[[0.087689369916916,0.00427829567343,0.045942671597004],[0.02757827565074,0.05000502243638,0.024786069989204],[0.023994160816073,-0.0063840942457318,-0.046481765806675]],[[0.0024356923531741,0.0083665456622839,-0.014781135134399],[-0.020465092733502,0.078641973435879,0.081576324999332],[-0.059260241687298,-0.13106000423431,-0.018376152962446]],[[-0.011415630578995,0.038136452436447,-0.017089411616325],[-0.040029615163803,0.021386779844761,0.071180455386639],[-0.0057199019938707,0.023889698088169,-0.021406078711152]],[[0.0067355586215854,-0.0069077154621482,0.011040553450584],[0.06568443775177,-0.00033278641058132,0.081185676157475],[0.07578743994236,0.0087882606312633,-0.070863977074623]],[[-0.0085529405623674,-0.03402441740036,0.08644662797451],[-0.035529159009457,-0.056812416762114,0.019473023712635],[-0.070127584040165,0.070943117141724,0.054366175085306]],[[0.089882604777813,0.059601478278637,-0.05250308662653],[0.03940487280488,0.054792162030935,0.069811642169952],[0.046777110546827,0.046080093830824,-0.0091308690607548]],[[0.03867295011878,0.053944822400808,-0.0090015847235918],[-0.011334231123328,0.0094546359032393,-0.025110585615039],[0.00442476850003,-0.041095972061157,0.048142749816179]],[[0.057202387601137,-0.026779260486364,0.085970439016819],[-0.0075747263617814,0.021064873784781,0.097695417702198],[-0.045987121760845,-0.034140899777412,0.026386857032776]],[[-0.092620067298412,0.016117857769132,-0.057122822850943],[-0.0064652916043997,0.087171085178852,-0.0096346950158477],[0.072482094168663,0.010270172730088,0.14585766196251]],[[-0.032130807638168,-0.072241052985191,0.024519687518477],[0.016875831410289,0.018495194613934,-0.020625472068787],[-0.031774323433638,-0.032141204923391,0.023897578939795]],[[0.0044279722496867,-0.061598889529705,0.023244820535183],[0.0068570454604924,0.021251620724797,-0.010283070616424],[0.086658947169781,-0.0094571225345135,0.12264189124107]],[[-0.046070367097855,-0.014009775593877,0.053965631872416],[-0.010896232910454,-0.097609385848045,0.036473304033279],[0.095778271555901,0.055836495012045,-0.11556398123503]],[[-0.052071798592806,0.05391027033329,0.032671917229891],[-0.06919277459383,0.053338520228863,0.051305700093508],[0.042183641344309,-0.072682619094849,-0.0083245411515236]],[[-0.059981860220432,-0.035404868423939,0.14960038661957],[-0.0050485585816205,0.021912705153227,-9.5987124950625e-05],[0.14307497441769,-0.082039006054401,-0.10613749176264]],[[0.001951138721779,-0.032616950571537,0.035355173051357],[0.050365522503853,0.051028273999691,0.037029653787613],[-0.084983348846436,-0.0091839246451855,-0.049087230116129]],[[0.0054553579539061,-0.0036772610619664,0.047990117222071],[0.0035160537809134,-0.0062914052978158,0.0061101447790861],[-0.02538381703198,0.043418873101473,-0.028995400294662]],[[0.086364448070526,0.043351888656616,0.054451230913401],[-0.030735146254301,-0.011073676869273,0.051121063530445],[-0.093247905373573,0.11335505545139,0.057747915387154]],[[0.010469022206962,0.01631679572165,-0.044776547700167],[-0.099010482430458,0.017243474721909,0.015560645610094],[0.051720961928368,0.00038200893322937,0.011336961761117]],[[-0.06416167318821,0.00090338592417538,-0.10709388554096],[-0.057284332811832,-0.080568008124828,0.015420734882355],[0.020114578306675,0.098405003547668,-0.014051785692573]],[[0.014691482298076,0.028033310547471,0.028836406767368],[-0.022828044369817,-0.017141789197922,0.0062630688771605],[0.013056450523436,-0.072179302573204,0.017954155802727]],[[0.05936898291111,-0.051459655165672,0.023736326023936],[0.024635329842567,-0.018891362473369,0.00048635859275237],[0.0029215284157544,0.051909022033215,0.067289225757122]],[[0.053506813943386,-0.078605189919472,-0.11375383287668],[-0.050753332674503,0.09576503932476,-0.066259525716305],[-0.098146207630634,0.090110674500465,-0.0090380720794201]],[[-0.024761687964201,0.042047679424286,0.0025292942300439],[0.013777266256511,0.015242331661284,-0.010458232834935],[-0.048696279525757,0.037450630217791,-0.085867881774902]],[[0.012277407571673,0.080685019493103,0.067682713270187],[-0.038747392594814,-0.005480554420501,0.0052828630432487],[0.12549638748169,0.07471664249897,-0.079368501901627]],[[0.053124248981476,0.007955982349813,0.024672226980329],[0.061730220913887,0.085789814591408,-0.059578146785498],[-0.00095607194816694,0.02049015276134,0.093691900372505]],[[0.010107819922268,0.025358073413372,0.044018611311913],[0.015755424275994,0.095243602991104,0.077637813985348],[-0.067868709564209,0.051559675484896,-0.032617028802633]],[[0.061020530760288,-0.01792411878705,-0.089441366493702],[0.065872058272362,0.028933947905898,0.019277067855],[-0.013760055415332,0.030891070142388,-0.054701626300812]],[[-0.026860199868679,-0.011285830289125,0.019778227433562],[0.054595198482275,-0.050056029111147,0.073299236595631],[0.051863200962543,-0.016288638114929,-0.083331242203712]],[[0.038932915776968,0.033507656306028,0.026561042293906],[0.031841568648815,0.10929170995951,-0.040452461689711],[0.025546612218022,0.021467290818691,0.023520942777395]],[[0.043112371116877,0.11236930638552,0.029526140540838],[-0.029019571840763,0.044262852519751,0.040753323584795],[0.085224568843842,0.035251639783382,0.0049164057709277]],[[0.0030353094916791,0.010737856850028,-0.014223395846784],[-0.032205179333687,-0.044048018753529,-0.035905290395021],[0.006823608186096,-0.043300807476044,-0.0058782338164747]],[[-0.014645266346633,-0.02630109526217,0.01302510406822],[-0.021667128428817,-0.033255103975534,-0.0070079648867249],[0.035169500857592,-0.0117291752249,-0.026048868894577]],[[-0.036086190491915,0.025348469614983,-0.077403515577316],[-0.00042509933700785,-0.11442486941814,-0.14821530878544],[0.10303474962711,0.042836185544729,-0.11209225654602]],[[0.055790096521378,0.051847014576197,-0.0028860445600003],[-0.046419259160757,0.0018395432271063,0.047025006264448],[-0.011626175604761,-0.042136512696743,0.084757775068283]],[[0.01032913569361,0.11963932961226,-0.001541780657135],[-0.012210859917104,0.059986859560013,0.051410347223282],[-0.049801096320152,-0.022938419133425,-0.069376550614834]],[[0.038226086646318,-0.043067868798971,0.02321420237422],[0.050037179142237,0.018973454833031,-0.015656169503927],[-0.066503919661045,0.022613868117332,0.076127916574478]],[[0.024726392701268,0.030466241762042,-0.11542085558176],[-0.018540546298027,-0.075062118470669,-0.10247354209423],[-0.055988568812609,0.014364829286933,0.04083188995719]],[[0.04524527490139,0.08185688406229,0.095361605286598],[0.014200454577804,-0.012207794934511,0.071486815810204],[0.085463345050812,-0.030141388997436,0.012535765767097]],[[0.062796346843243,0.0033470864873379,-0.01565832644701],[-0.02414689026773,0.088944144546986,-0.024424800649285],[0.01082615647465,-0.038746885955334,0.054967906326056]],[[0.0088300872594118,-0.076401382684708,0.057948268949986],[-0.032335676252842,0.12154342234135,-0.022268189117312],[-0.03154781460762,-0.0079763811081648,-0.044724985957146]],[[0.032172530889511,0.17032217979431,0.012833178974688],[0.04201190546155,-0.044697031378746,0.051476575434208],[0.07847860455513,0.013775671832263,0.039189931005239]],[[-0.0057644401676953,-0.046804513782263,-0.092233449220657],[0.012144828215241,-0.017848445102572,0.046537403017282],[0.010709735564888,0.06143257021904,0.05320543423295]],[[0.069435305893421,0.012130792252719,0.075218290090561],[0.094078466296196,-0.016424480825663,-0.018508391454816],[-0.0054656406864524,-0.045095223933458,0.0708938986063]],[[0.055781044065952,0.063459426164627,0.042739052325487],[0.041604686528444,0.074392981827259,0.067610532045364],[0.033468049019575,-0.015068605542183,0.014896438457072]],[[0.046517144888639,-0.00055764691205695,-0.025731544941664],[-0.019268395379186,0.069932766258717,0.050846990197897],[0.0049742544069886,-0.05117242410779,-0.033901251852512]],[[-0.0094515923410654,-0.067780077457428,-0.042398620396852],[-0.0097504826262593,0.022116111591458,-0.017624197527766],[0.074631534516811,-0.075255990028381,0.0486229211092]],[[0.002758156042546,0.030858485028148,-0.0696881711483],[0.12788836658001,0.0092349480837584,-0.03036611713469],[-0.045232441276312,0.021657034754753,-0.017482290044427]],[[-0.11107461154461,0.076248064637184,-0.010645143687725],[0.024825811386108,0.0043069012463093,0.041093353182077],[0.098421163856983,0.022279305383563,0.0021062798332423]],[[0.037923313677311,0.032817836850882,0.064021103084087],[-0.013461823575199,-0.023444933816791,-0.055695608258247],[0.062435634434223,-0.087830804288387,0.046581350266933]],[[0.035271368920803,0.028523057699203,-0.095618359744549],[0.11327645927668,-0.025722790509462,-0.049179341644049],[0.04957178607583,-0.055363945662975,-0.026388918980956]],[[0.0087160635739565,0.055528741329908,9.7362943051849e-05],[-0.0066449563018978,-0.083773761987686,0.07364447414875],[-0.01175622548908,-0.09319231659174,0.020263137295842]],[[0.018017560243607,0.024789169430733,-0.083753943443298],[-8.8223532657139e-05,-0.034111205488443,0.013884974643588],[0.033531427383423,0.030640322715044,0.028989560902119]],[[0.066215351223946,-0.025017827749252,0.013871738687158],[0.0092480964958668,0.10206836462021,0.058248996734619],[0.11125876009464,-0.036117609590292,0.02982378192246]],[[0.035534415394068,0.017751902341843,-0.039986610412598],[0.016337253153324,0.034892473369837,0.047087263315916],[-0.055149771273136,-0.0036467264872044,0.016709676012397]],[[0.019711449742317,0.095470674335957,0.043822109699249],[-0.020821031183004,0.090384304523468,-0.02238355204463],[0.048977237194777,-0.0049692234024405,0.092030912637711]],[[0.00095485686324537,-0.032501664012671,0.05845669656992],[-0.036839250475168,0.052204713225365,-0.029926965013146],[0.0048926454037428,0.078946344554424,-0.041938085108995]],[[0.0097709894180298,0.067080028355122,0.00081623095320538],[0.0042443131096661,-0.015073250047863,0.036235608160496],[-0.13884124159813,-0.028733054175973,0.015837205573916]],[[0.0093149691820145,-0.012574888765812,-0.0051566166803241],[0.04651391133666,0.00060875207418576,0.016811335459352],[0.059455063194036,0.07115426659584,-0.054225355386734]],[[-0.070426218211651,-0.026963239535689,0.031530544161797],[-0.074286818504333,-0.0025401529856026,-0.042373534291983],[-0.011012352071702,0.029692385345697,0.043568380177021]],[[0.033522840589285,-0.0074147130362689,-0.031204000115395],[-0.028372824192047,-0.056966375559568,-0.049234066158533],[-0.029795384034514,-0.015692252665758,-0.020247941836715]],[[0.011866902932525,0.089775957167149,-0.028522569686174],[0.0074689784087241,0.011722417548299,0.023175351321697],[-0.020749444141984,0.0036695699673146,-0.022437985986471]],[[0.037336464971304,-0.032431948930025,-0.08920419216156],[-0.0077099949121475,-0.054709911346436,-0.0068631190806627],[0.045638658106327,0.032071333378553,0.11701140552759]],[[-0.017492491751909,0.041797500103712,-0.0030359800439328],[0.087148994207382,-0.057997293770313,0.040446061640978],[0.0044097909703851,-0.061744946986437,0.054576713591814]],[[0.030684188008308,-0.040213368833065,0.069022513926029],[-0.021487571299076,0.079717211425304,0.043750591576099],[-0.076444834470749,0.0057574049569666,-0.071778677403927]],[[-0.074324749410152,-0.039684422314167,-0.003892571432516],[0.02711277268827,0.0161839928478,0.0080405091866851],[-0.044458471238613,0.0080769946798682,-0.009876967407763]],[[-0.011587443761528,0.050603363662958,0.037799865007401],[-0.069161236286163,-0.023600267246366,-0.0022491232957691],[0.083572432398796,0.039050679653883,0.10585851222277]],[[-0.0055525191128254,0.043437164276838,0.042375970631838],[0.0085033848881721,-0.046545226126909,0.0069099492393434],[-0.044470455497503,0.08222147077322,-0.018136778846383]],[[0.05278105288744,-0.033545471727848,0.00017525057774037],[-0.065560482442379,0.1116296350956,0.041329361498356],[-0.093813553452492,-0.0066669550724328,-0.037492502480745]],[[0.018772454932332,0.0019357319688424,0.031306456774473],[0.0096456194296479,0.021298447623849,0.04807087033987],[0.12171123921871,0.11152100563049,0.022567627951503]],[[0.027843121439219,-0.041324429214001,-0.064824998378754],[-0.037240445613861,0.10254360735416,0.020292792469263],[-0.092798262834549,0.038014903664589,-0.054823357611895]],[[0.12622426450253,0.0079072620719671,0.011463322676718],[-0.030382649973035,-0.02563202008605,0.01207163836807],[0.076886028051376,0.10754650086164,0.046390533447266]],[[0.073324307799339,-0.015660222619772,0.03560359030962],[-0.094153873622417,-0.048136372119188,0.062180787324905],[0.025563573464751,0.037791684269905,-0.013950753025711]],[[0.076827883720398,0.022568820044398,-0.006490093190223],[0.038947813212872,0.015102081000805,0.048323046416044],[-0.021268622949719,0.028667533770204,-0.023208472877741]],[[0.021024061366916,-0.052696142345667,0.013589298352599],[0.014421227388084,0.048596613109112,0.0031034660059959],[-0.0088613536208868,0.031049408018589,-0.0095101650804281]],[[0.047909568995237,0.0032766566146165,0.025724513456225],[0.070644296705723,0.060312557965517,-0.020943989977241],[-0.032815176993608,0.042546287178993,0.0062561659142375]],[[0.052697237581015,-0.099884785711765,-0.064209282398224],[-0.033394251018763,0.030440689995885,-0.0038211052305996],[0.032892897725105,0.059392798691988,0.047012142837048]],[[-0.026549216359854,0.00067974079865962,-0.032634936273098],[-0.017456153407693,0.028601991012692,0.01747858710587],[0.070423059165478,-0.026941945776343,0.071532398462296]],[[-0.014960402622819,-0.012035759165883,0.020054938271642],[-0.0021623719949275,0.028961591422558,0.0078401826322079],[-0.085982225835323,-0.072159089148045,0.077083192765713]],[[-0.055209957063198,0.0085491240024567,-0.088581748306751],[-0.012660192325711,-0.01134629920125,0.037599500268698],[0.075392454862595,0.079447828233242,0.0059725856408477]],[[-0.014192865230143,-0.0095559656620026,0.0054135359823704],[-0.017787514254451,0.046609070152044,-0.013581151142716],[0.023786965757608,-0.0029500564560294,-0.0041291690431535]],[[-0.021816086024046,0.050249945372343,0.019347282126546],[0.042851731181145,-0.031886585056782,0.010775439441204],[-0.076490521430969,-0.050759524106979,0.021451734006405]],[[-0.012214303947985,0.10573455691338,0.031263694167137],[-0.0030396599322557,-0.051979441195726,-0.0085920998826623],[0.048933494836092,0.082492724061012,0.068507164716721]],[[0.052081808447838,0.021870419383049,0.026334960013628],[0.072876244783401,-0.02747211791575,-0.046366214752197],[-0.024996351450682,0.062585957348347,-0.027010269463062]],[[-0.040186502039433,0.071023054420948,0.061489645391703],[0.011779117397964,-0.074443176388741,0.1355717331171],[-0.019444169476628,-0.057779833674431,-0.064820043742657]],[[0.010562602430582,0.092690415680408,-0.050361968576908],[-0.012142334133387,-0.092661887407303,-0.03678261116147],[-0.081161469221115,-0.03419229015708,-0.031537249684334]],[[-0.014673700556159,0.11552347242832,-0.0010525232646614],[0.049589317291975,-0.060014851391315,0.063442520797253],[-0.030676366761327,0.073816396296024,0.083501011133194]],[[0.05740862339735,-0.060047850012779,0.021732043474913],[0.046114008873701,0.015702113509178,-0.031316451728344],[0.026909166947007,-0.073998481035233,0.097260132431984]],[[-0.13465096056461,-0.026256842538714,0.0060525350272655],[-0.014998980797827,-0.053761791437864,-0.066343054175377],[-0.043543998152018,0.070858031511307,-0.082856066524982]],[[-0.0041269161738455,0.042196664959192,0.04728814214468],[-0.07180480659008,-0.04298148676753,0.033474329859018],[0.009574431926012,0.014313391409814,-0.03927993029356]],[[-0.0013219395186752,0.095250390470028,-0.025896064937115],[-0.017512241378427,-0.0060979789122939,-0.03530890494585],[-0.043763462454081,0.0024369489401579,-0.0049296892248094]],[[0.049110561609268,-0.00085891992785037,0.0058030029758811],[0.041686229407787,-0.038210064172745,-0.018131747841835],[0.054104179143906,-0.046743959188461,-0.0092554688453674]],[[0.0078153014183044,0.054442558437586,-0.18554873764515],[0.033709179610014,0.030735373497009,0.072989650070667],[0.034262914210558,0.037970561534166,0.03164941072464]],[[-0.00060556875541806,-0.013478705659509,0.0098855253309011],[-0.082012608647346,-0.0081898989155889,-0.018368298187852],[0.10087614506483,-0.013026454485953,0.08503108471632]],[[0.020618237555027,-0.0017363263759762,-0.028379991650581],[0.037669725716114,0.065415449440479,0.042146567255259],[0.046431727707386,-0.028483720496297,0.0080746859312057]],[[0.09210542589426,-0.00077682791743428,-0.12283737957478],[-0.072948932647705,-0.012144829146564,0.036137234419584],[-0.01282458472997,0.063687659800053,0.015570287592709]],[[-0.032672241330147,-0.10640548169613,-0.033639743924141],[-0.14114825427532,-0.032837152481079,0.0067499983124435],[-0.087974689900875,-0.0040762014687061,-0.036628175526857]],[[0.065926000475883,0.029304319992661,-0.015842678025365],[0.0092905610799789,0.03299505263567,-0.025258349254727],[-0.016086965799332,0.03045960702002,0.05502563342452]],[[0.0051377261988819,-0.046092160046101,0.06059992685914],[-0.030705412849784,0.085064895451069,-0.043002210557461],[-0.0097739771008492,-0.00010645105066942,0.026599377393723]],[[-0.051139622926712,0.097287207841873,-0.0090880766510963],[-0.051111910492182,-0.026866771280766,-0.033964365720749],[-0.037283282727003,0.024228496477008,-0.061286028474569]],[[-0.044642951339483,0.052842270582914,0.003870262298733],[-0.037828758358955,-0.062934659421444,0.044497147202492],[-0.032856348901987,0.058287966996431,0.049075700342655]],[[0.015054600313306,0.011496439576149,-0.053716029971838],[0.061150193214417,0.0091193187981844,0.005208931863308],[-0.045205984264612,0.13260661065578,0.023460572585464]],[[0.10127686709166,0.016057623550296,0.086628042161465],[0.090739659965038,0.044828362762928,0.014224245212972],[0.032313395291567,0.069500610232353,0.063366211950779]],[[0.040824051946402,-0.012377314269543,0.028345653787255],[-0.05923980101943,0.0011288226814941,-0.0027544375043362],[0.036495737731457,0.062329959124327,0.13037633895874]],[[0.016544809564948,0.09190945327282,0.056464619934559],[0.037964940071106,-0.027866706252098,0.019702130928636],[0.075764484703541,0.10467427223921,0.070801317691803]],[[-0.005257049575448,0.10067926347256,0.011604732833803],[-0.022068366408348,-0.062307540327311,0.065315261483192],[-0.072829179465771,0.0061032231897116,-0.072126381099224]],[[-0.12258303165436,0.026458479464054,-0.078686982393265],[-0.026257406920195,0.0086327213793993,-0.017196329310536],[-0.020986001938581,0.020696446299553,0.034809552133083]],[[-0.037809785455465,-0.031498577445745,0.031004566699266],[-0.035785265266895,-0.029596222564578,-0.020618775859475],[-0.015421319752932,-0.017659803852439,-0.026636091992259]],[[-0.023380493745208,-0.019546467810869,0.0030171589460224],[0.049253363162279,-0.064613863825798,-0.016131216660142],[0.05206548795104,-0.0098284520208836,0.029538316652179]],[[-0.02366130053997,-0.01539621502161,0.020230583846569],[-0.052919369190931,0.053669609129429,-0.060113988816738],[0.052395865321159,0.043942432850599,-0.01499286480248]],[[0.0019891113042831,0.044681753963232,0.061545107513666],[-0.035994850099087,0.044543657451868,0.044723227620125],[0.021223729476333,0.061635140329599,-0.064991235733032]],[[0.0099631175398827,-0.019033469259739,0.032834511250257],[0.037837628275156,0.067705690860748,-0.0148835927248],[-0.015839859843254,-0.0042849909514189,0.012155655771494]],[[-0.038083743304014,0.045169100165367,0.12554426491261],[-0.043781217187643,-0.049237657338381,0.0074851894751191],[0.014288816601038,0.026104731485248,0.031999256461859]]],[[[0.11509834975004,0.031639941036701,-0.12152206897736],[-0.034962810575962,0.11319038271904,0.036453295499086],[0.0056985653936863,-0.029252201318741,-0.085598096251488]],[[-0.0077636879868805,0.092404030263424,0.0030252072028816],[-0.1338706612587,0.005885458085686,-0.029908508062363],[-0.0057227862998843,0.14122925698757,-0.089861869812012]],[[0.19967685639858,-0.026044772937894,0.28440454602242],[0.066911026835442,-0.1087129637599,-0.094885900616646],[0.04374822229147,0.18012996017933,-0.11137663573027]],[[-0.071415551006794,-0.076872006058693,0.062540858983994],[0.078679397702217,-0.036102369427681,-0.056979570537806],[0.01071743760258,-0.017916874960065,-0.014544971287251]],[[0.080828033387661,-0.0067114438861609,0.014878857880831],[0.038254480808973,-0.18296629190445,-0.00325988070108],[-0.19223526120186,-0.10993152111769,-0.075831890106201]],[[-0.082706667482853,0.059487603604794,-0.0098018432036042],[0.0867874994874,-0.047830790281296,0.05149358138442],[0.035483058542013,0.045557551085949,0.14891238510609]],[[0.022243969142437,0.038578048348427,0.041388396173716],[0.018770262598991,-0.051034480333328,0.024501241743565],[0.072143316268921,0.043929617851973,-0.12714231014252]],[[-0.022383559495211,-0.063527397811413,-0.023740528151393],[-0.095231831073761,0.0028037200681865,-0.089236326515675],[-0.0091838417574763,0.044647898525,-0.13371130824089]],[[-0.057061649858952,-0.0055915750563145,-0.21688060462475],[-0.042562894523144,0.11173123121262,-0.10015469044447],[-0.069931447505951,-0.12469879537821,-0.15973395109177]],[[0.12206847965717,0.023259421810508,0.031726736575365],[-0.090581133961678,0.001740641426295,0.012045473791659],[0.068683385848999,0.084794923663139,0.04708831384778]],[[-0.030786320567131,0.12628050148487,0.065126746892929],[-0.023434380069375,-0.029247688129544,-0.019161134958267],[-0.087960816919804,-0.14478875696659,0.028725881129503]],[[-0.088358014822006,-0.11773499846458,-0.0053047924302518],[-0.031609497964382,0.032415073364973,0.0092030726373196],[0.06693159788847,0.002526318654418,-0.077552735805511]],[[0.0049969716928899,0.15249168872833,-0.041701935231686],[0.010395748540759,-0.1467023640871,-0.017503032460809],[-0.003995391074568,0.0040811034850776,-0.0080527272075415]],[[-0.16526725888252,0.055572245270014,0.045989315956831],[-0.05026787891984,-0.095941588282585,0.047133892774582],[0.0082877902314067,0.13324949145317,-0.13313527405262]],[[0.078229777514935,-0.082376420497894,0.034618984907866],[-0.050893791019917,0.1046045795083,-0.034126199781895],[-0.030810963362455,0.041074734181166,0.015744457021356]],[[-0.066722400486469,-0.17270159721375,0.0085179731249809],[0.093630015850067,0.11272066086531,-0.039860345423222],[-0.0071996208280325,-0.15843436121941,-0.099408835172653]],[[-0.1380298435688,-0.0019983621314168,-0.014750146307051],[-0.1654199808836,0.041811548173428,0.021257285028696],[-0.22791171073914,0.015986751765013,-0.010491210967302]],[[0.060912370681763,0.067712336778641,-0.046185109764338],[-0.22457250952721,-0.016241807490587,0.1911476701498],[-0.11826997995377,-0.11727138608694,-0.10003953427076]],[[0.049227200448513,-0.029359638690948,0.11394570767879],[0.10387635976076,-0.0059140329249203,0.10400245338678],[-0.015738639980555,-0.10698851197958,0.031414296478033]],[[0.21939097344875,-0.040883224457502,-0.022848030552268],[0.073092542588711,0.0084436889737844,-0.075811177492142],[0.0092648528516293,-0.020325032994151,0.089530631899834]],[[-0.080609492957592,0.011053539812565,0.091715790331364],[0.1343689262867,0.077698461711407,-0.030377622693777],[-0.021765414625406,-0.019311666488647,-0.010682760737836]],[[-0.071557812392712,0.057011753320694,-0.057509463280439],[-0.049974992871284,0.032852757722139,0.027467016130686],[0.019917912781239,0.018274122849107,0.17972931265831]],[[0.0085034798830748,-0.020754704251885,0.05297714844346],[0.093232147395611,-0.056738827377558,0.080865435302258],[-0.076275534927845,-0.05273637548089,-0.023035563528538]],[[0.034047555178404,-0.063691236078739,-0.1096338108182],[0.17671021819115,0.19325643777847,0.077333621680737],[-0.080085188150406,-0.15279135107994,-0.052821315824986]],[[-0.021727470681071,-0.13992753624916,0.027551589533687],[-0.050265073776245,-0.012942746281624,0.045442093163729],[-0.016752114519477,-0.00049696007044986,-0.0047440584748983]],[[0.04215157404542,-0.00014929324970581,-0.012472548522055],[-0.14339856803417,-0.10441505163908,-0.084628902375698],[0.022223213687539,0.0055020158179104,-0.14255258440971]],[[-0.12760336697102,-0.014519080519676,-0.017729355022311],[-0.037150107324123,0.0094064036384225,-0.014496977441013],[0.15012134611607,0.023731661960483,0.09851199388504]],[[0.0074017951264977,-0.047658983618021,0.058211114257574],[-0.062478743493557,-0.03761750087142,0.03138654306531],[0.072127863764763,0.06028913334012,0.048917938023806]],[[0.0310975369066,0.12369609624147,-0.012836736626923],[-0.052468296140432,-0.12032596021891,0.0094976546242833],[-0.025406438857317,0.028980964794755,0.06209884211421]],[[0.06317350268364,0.047161906957626,-0.014143225736916],[-0.065311498939991,-0.037782847881317,0.0082906018942595],[-0.097632676362991,-0.014608729630709,-0.070783831179142]],[[0.0023685593623668,-0.017405051738024,0.042112287133932],[0.058791488409042,0.0031018278095871,-0.0085394149646163],[0.12891875207424,0.18496726453304,0.0021784382406622]],[[0.016560792922974,-0.026338085532188,-0.072826378047466],[-0.088219948112965,0.0068249749019742,-0.10476796329021],[0.028026964515448,-0.14213411509991,-0.061624359339476]],[[0.049095012247562,0.18396179378033,0.12401924282312],[-0.058617688715458,0.093113847076893,-0.20220912992954],[0.043329481035471,0.076322108507156,-0.098342552781105]],[[0.11246941238642,0.0075617218390107,0.054901696741581],[0.0127824395895,0.022062754258513,0.14955788850784],[0.040709897875786,-0.027188571169972,0.078406110405922]],[[-0.051452796906233,-0.04669176414609,0.013800044544041],[-0.12496598064899,-0.15628056228161,-0.12117573618889],[0.10614467412233,0.060038983821869,-0.02368669398129]],[[-0.02637005224824,0.090643920004368,-0.064691372215748],[0.0018041013972834,-0.2118551582098,0.080418340861797],[-0.052560351788998,-0.054091405123472,-0.0021920860745013]],[[0.20061206817627,0.10949333012104,0.04386693239212],[-0.0012519062729552,0.0078604705631733,0.0041698678396642],[0.021358776837587,-0.049716372042894,0.0094630038365722]],[[0.061903648078442,0.089626230299473,0.056197926402092],[0.13168299198151,0.19896391034126,-0.054888192564249],[0.0027371847536415,-0.010027645155787,-0.002659322693944]],[[0.14270207285881,-0.014762649312615,-0.014649637043476],[0.0093632750213146,-0.0070098377764225,0.033064819872379],[-0.096370205283165,0.016578525304794,0.13834942877293]],[[-0.1173652857542,0.051288407295942,-0.01165040768683],[0.0051164417527616,0.10123011469841,-0.013242540881038],[0.031818442046642,0.21113379299641,0.036048356443644]],[[-0.017369026318192,0.00043497435399331,-0.11055311560631],[0.015498510561883,0.058247573673725,-0.023795519024134],[-0.040343660861254,0.13957439363003,0.19151285290718]],[[0.014822574332356,0.11728842556477,0.2038486301899],[0.047421433031559,0.019359901547432,0.1477542668581],[-0.046511229127645,-0.023016426712275,0.037063486874104]],[[0.029927084222436,-0.018789062276483,0.033809550106525],[0.10175135731697,0.0087063405662775,0.023695712909102],[0.059457201510668,-0.058957181870937,0.031220812350512]],[[0.09113521873951,0.16642183065414,0.069622352719307],[-0.080313816666603,-0.087552398443222,-0.081843607127666],[-0.040994845330715,0.023065209388733,0.044409111142159]],[[0.13627581298351,0.068127781152725,-0.20492485165596],[0.085675798356533,0.014555101282895,-0.12225965410471],[-0.0015724113909528,-0.052842278033495,-0.12260080873966]],[[-0.0092312740162015,0.061271950602531,-0.018641052767634],[0.0076311766169965,-0.015927514061332,-0.06379596889019],[-0.015070389956236,0.0048085059970617,0.0063204010948539]],[[-0.12044412642717,0.042533200234175,0.02296019718051],[-0.044558748602867,0.071898862719536,-0.10525723546743],[-0.040884450078011,0.017693638801575,-0.041541561484337]],[[-0.018234254792333,-0.058891229331493,0.0036741776857525],[-0.085819326341152,-0.074872694909573,-0.14760357141495],[-0.019087987020612,-0.029986375942826,0.0055761281400919]],[[-0.14749246835709,-0.17815010249615,-0.18579024076462],[-0.15082460641861,-0.12440372258425,0.031340658664703],[-0.075555108487606,-0.1170380115509,-0.047627426683903]],[[0.053929701447487,-0.0047243167646229,-0.19544020295143],[0.06207212805748,0.022083321586251,0.082510858774185],[-0.0048476103693247,0.015080447308719,-0.012535971589386]],[[0.15018352866173,0.024687049910426,0.086626105010509],[0.029796879738569,0.029150635004044,-0.042786754667759],[-0.046187877655029,0.087541356682777,-0.078715212643147]],[[0.18920795619488,-0.04227676987648,0.092770427465439],[0.057460326701403,-0.052621319890022,0.11079417914152],[-0.06039285287261,-0.091898277401924,-0.083670623600483]],[[0.095883175730705,-0.045764986425638,-0.011439845897257],[0.06023745983839,0.056426182389259,-0.056350007653236],[0.060153096914291,0.10495138913393,0.049328345805407]],[[-0.048029772937298,-0.031376164406538,-0.006735548377037],[0.088793136179447,0.0058229910209775,-0.019328076392412],[0.077423110604286,-0.025438670068979,0.11168076097965]],[[0.11136075854301,0.1341535449028,-0.1262816041708],[0.041943538933992,0.024447131901979,0.042194530367851],[-0.13452464342117,0.079502642154694,0.015786712989211]],[[0.16644491255283,-0.018898535519838,0.091007977724075],[0.060858573764563,0.069653809070587,-0.016201686114073],[0.086635053157806,-0.0028340860735625,0.0036369666922837]],[[0.055486503988504,0.016715070232749,0.060063142329454],[0.030979160219431,-0.0045779123902321,0.091435708105564],[0.080345876514912,0.012377104721963,0.075318202376366]],[[0.1825156211853,0.060019560158253,-0.1085420101881],[-0.082699738442898,-0.039790701121092,0.0098754549399018],[0.062526978552341,-0.13272139430046,0.050782971084118]],[[0.021124934777617,-0.16742572188377,-0.11653558909893],[-0.068301893770695,0.071991942822933,-0.10307101905346],[0.050583500415087,-0.076484553515911,0.043725535273552]],[[0.034973669797182,-0.086438417434692,0.041040007025003],[-0.14950406551361,0.096700802445412,-0.069860123097897],[-0.10490501672029,-0.058750286698341,-0.1281433403492]],[[-0.00085827760631219,-0.023830818012357,-0.024668233469129],[0.12796545028687,0.024580530822277,-0.022117169573903],[0.0033635622821748,0.030091129243374,-0.037479560822248]],[[-0.013038608245552,0.010690369643271,-0.078827574849129],[-0.088759712874889,-0.098058693110943,0.094684176146984],[-0.0441505163908,-0.033276602625847,0.013845355249941]],[[0.077321618795395,0.054017968475819,0.13334958255291],[-0.036577861756086,0.021665560081601,-0.052776217460632],[0.042758025228977,0.03628171235323,-0.052617657929659]],[[0.12260203063488,-0.0027780109085143,0.061108633875847],[-0.033058252185583,-0.062021300196648,0.019579226151109],[-0.130744561553,-0.062137328088284,0.040382847189903]],[[0.12074907869101,-0.12826922535896,-0.043312668800354],[-0.0043466780334711,-0.053303059190512,-0.0068351258523762],[0.047528386116028,-0.096275560557842,0.069252468645573]],[[0.13003918528557,0.07087180763483,0.03394491225481],[-0.01100205630064,-0.056821454316378,-0.060295920819044],[-0.096088379621506,-0.075052030384541,-0.00052527064690366]],[[0.10719358175993,0.21949324011803,0.15213431417942],[-0.028907982632518,-0.065874300897121,0.039736818522215],[-0.0080482410266995,-0.0082515412941575,-0.029032006859779]],[[0.070399232208729,0.071857526898384,0.12472681701183],[-0.068873405456543,-0.0065789758227766,0.11121582984924],[-0.01052977796644,0.045045241713524,0.022420743480325]],[[0.084249392151833,-0.00093975447816774,0.005448286421597],[-0.0057429894804955,-0.017819182947278,0.0066393539309502],[0.032847333699465,0.084549881517887,0.137496098876]],[[0.057175271213055,0.092007555067539,-0.084796831011772],[-0.02037245221436,-0.085323601961136,-0.060561552643776],[0.10508818179369,0.098096802830696,-0.0022312556393445]],[[0.077670902013779,-0.1163731738925,-0.078004725277424],[0.023440051823854,-0.053909715265036,0.026912683621049],[-0.036359291523695,0.051303252577782,0.0057924385182559]],[[0.096141919493675,0.11914616078138,0.094063073396683],[-0.036135133355856,-0.040282379835844,0.028909254819155],[-0.025194227695465,0.064626187086105,0.010480117984116]],[[0.026231100782752,0.11947222054005,-0.025713915005326],[-0.070611380040646,-0.081090524792671,-0.012290842831135],[-0.017309837043285,-0.0019793307874352,0.016090419143438]],[[-0.079866364598274,-0.088483810424805,-0.0075492626056075],[-0.082256108522415,0.029502091929317,-0.034423686563969],[-0.0052379071712494,-0.089156955480576,-0.046897873282433]],[[0.11738884449005,0.049012593924999,-0.0066590085625648],[0.017545064911246,0.027008734643459,0.031810466200113],[0.0041035222820938,0.037008516490459,-0.067636489868164]],[[-0.042604297399521,0.075411900877953,0.026300275698304],[-0.0025980067439377,-0.0077302502468228,0.067675344645977],[-0.094404332339764,0.19834493100643,0.16143037378788]],[[0.17918568849564,0.046609859913588,0.12113718688488],[-0.035251211374998,-0.046637505292892,0.04912094771862],[0.0063484101556242,-0.042715575546026,-0.037729918956757]],[[0.032520182430744,0.013006656430662,0.03317853063345],[-0.078484922647476,-0.064306855201721,0.025761030614376],[0.00022144413378555,-0.062922768294811,-0.0093945190310478]],[[0.030732445418835,0.02338957414031,0.066615164279938],[0.0092798806726933,0.01367396209389,0.097360864281654],[-0.10912722349167,-0.11857396364212,-0.16924683749676]],[[0.0068525322712958,0.054391626268625,0.066568680107594],[0.1045770868659,-0.068163275718689,-0.08995570987463],[0.093281596899033,0.043456256389618,-0.027168728411198]],[[-0.055528402328491,-0.021214481443167,-0.055043425410986],[0.052052270621061,-0.022860895842314,-0.0060752122662961],[-0.033273126929998,-0.037613686174154,-0.025336023420095]],[[-0.10848922282457,-0.09155336022377,-0.049754459410906],[-0.059979222714901,0.031789783388376,-0.037659831345081],[-0.027621876448393,-0.025751577690244,-0.019036460667849]],[[0.046048525720835,0.046220280230045,0.080448240041733],[0.084846869111061,0.07253360003233,0.081198275089264],[-0.043096378445625,0.062122490257025,-0.068638667464256]],[[-0.021876906976104,-0.051233496516943,0.013529920019209],[-0.044803086668253,0.085258260369301,0.051989324390888],[0.011221442371607,-0.011309781111777,-0.01349638029933]],[[0.04667355120182,0.0050982940010726,0.075521387159824],[-0.085411168634892,-0.061841335147619,0.12897892296314],[-0.048774056136608,-0.0093277795240283,0.13397064805031]],[[0.062185913324356,0.011245969682932,0.061152543872595],[-0.037748735398054,-0.0036124316975474,-0.028383698314428],[-0.13761080801487,-0.15974415838718,0.098428323864937]],[[0.046088427305222,-0.048619128763676,-0.13688963651657],[-0.062653534114361,0.061603911221027,-0.013575213961303],[0.094121031463146,-0.072378627955914,0.024955751374364]],[[0.060353636741638,0.0075928717851639,0.15151081979275],[0.023367077112198,-0.089505687355995,0.00075777620077133],[0.13856527209282,0.041557863354683,0.10830862820148]],[[0.14782191812992,0.13221400976181,0.003474616445601],[-0.051461800932884,-0.052777554839849,-0.039987917989492],[-0.10906859487295,-0.088264212012291,0.029725445434451]],[[0.04308845102787,-0.044455613940954,0.042264252901077],[0.13477545976639,-0.090978391468525,0.098966851830482],[0.093507431447506,-0.041011396795511,0.12182746082544]],[[0.15128506720066,0.027347119525075,-0.040160097181797],[0.11401458829641,-0.16960135102272,-0.069970726966858],[0.11747568845749,0.04062782600522,0.069188117980957]],[[-0.075666673481464,-0.02448058500886,0.18009948730469],[-0.0079917339608073,-0.074313044548035,0.09479159116745],[0.017811872065067,-0.079189106822014,0.0064688269048929]],[[-0.093202129006386,-0.058588415384293,0.14277173578739],[0.057892877608538,-0.011931438930333,-0.018726114183664],[-0.042762696743011,-0.018842143937945,-0.035787556320429]],[[0.056391775608063,0.042126934975386,0.001466357964091],[-0.19495177268982,0.26973715424538,-0.1301521062851],[0.052092466503382,-0.002184780780226,-0.03598303720355]],[[-0.10296539217234,-0.025850648060441,0.15388561785221],[-0.088620476424694,-0.0077105020172894,-0.030267756432295],[-0.064655967056751,-0.011516611091793,-0.079261608421803]],[[0.10430101305246,-0.036763802170753,0.12000523507595],[-0.028025154024363,0.014904133975506,0.0040883938781917],[-0.055694449692965,-0.096935734152794,-0.025564355775714]],[[0.23169158399105,0.10083506256342,-0.086866319179535],[0.048841930925846,0.078256994485855,0.14069405198097],[-0.078762374818325,0.006370254792273,0.040241900831461]],[[0.12655049562454,0.040823433548212,0.055293370038271],[0.076109647750854,-0.015568079426885,0.09593803435564],[0.025216698646545,-0.078501366078854,-0.030632877722383]],[[0.24698916077614,0.088068813085556,-0.019483001902699],[0.05166632682085,0.022185387089849,0.021830474957824],[0.081766232848167,0.074878446757793,0.071649335324764]],[[0.011999507434666,0.023627741262317,0.0020530861802399],[0.011678721755743,-0.11485348641872,0.087310172617435],[-0.037303142249584,-0.10550497472286,0.039992868900299]],[[0.10281273722649,-0.018526900559664,-0.083327263593674],[0.13454878330231,-0.013352645561099,-0.11382099241018],[-0.076238855719566,0.038003634661436,0.018774254247546]],[[-9.796262747841e-05,-0.042859770357609,-0.023721473291516],[-0.054529648274183,0.019612515345216,-0.0010485803941265],[-0.070866838097572,0.019254416227341,0.15047995746136]],[[0.077788390219212,0.076023831963539,-0.032758504152298],[-0.058338318020105,-0.11562311649323,0.058195281773806],[0.0065448633395135,-0.098774053156376,-0.10214614868164]],[[-0.014083394780755,0.050462726503611,0.025284830480814],[-0.029852336272597,0.003851925721392,-0.0064661735668778],[-0.12812936306,-0.12333484739065,-0.093143403530121]],[[-0.072225719690323,-0.016772085800767,-0.044143039733171],[-0.084183506667614,0.086045175790787,0.010198105126619],[0.18042701482773,-0.0066436533816159,-0.035850025713444]],[[-0.054851952940226,-0.073891140520573,0.19539047777653],[0.049480222165585,0.20983074605465,-0.099431157112122],[0.20744876563549,0.038532562553883,0.15119336545467]],[[0.0018771955510601,-0.094235226511955,0.12591338157654],[0.068775832653046,0.0056599876843393,0.024987816810608],[0.057640176266432,-0.14508303999901,0.014357833191752]],[[0.028218675404787,0.062374331057072,-0.1158746778965],[0.014493771828711,0.082102075219154,-0.080396004021168],[-0.054211366921663,0.017975037917495,0.052618898451328]],[[-0.11322750151157,0.021495599299669,-0.087086886167526],[0.10689591616392,0.10208022594452,-0.013498097658157],[-0.025890596210957,-0.2203321903944,-0.02494141086936]],[[-0.18985866010189,0.073139540851116,-0.070763975381851],[0.005383628886193,-0.067114748060703,-0.12946319580078],[0.11853206157684,-0.067770682275295,-0.0018654448213056]],[[0.034895233809948,0.16351090371609,-0.036344558000565],[0.04954307153821,-0.068146698176861,-0.075771927833557],[-0.0084042809903622,-0.0070616248995066,0.0047546583227813]],[[-0.091594323515892,-0.19846281409264,-0.02233581058681],[-0.031013092026114,-0.007513087708503,-0.16953912377357],[-0.081820495426655,-0.071960143744946,-0.041712883859873]],[[-0.075669229030609,-0.069224342703819,-0.07810814678669],[0.056133653968573,-0.038336846977472,-0.026762941852212],[-0.010398123413324,-0.16141158342361,0.027351731434464]],[[-0.048945970833302,0.048178974539042,0.012078731320798],[0.030245302245021,-0.095388308167458,0.014309942722321],[0.13345694541931,0.10586239397526,0.015845183283091]],[[0.0052989264950156,0.12955591082573,0.017510004341602],[0.025355709716678,0.065372996032238,-0.1378148496151],[-0.084261499345303,0.099749952554703,0.021391155198216]],[[-0.19162379205227,-0.02891644090414,0.031047271564603],[0.15152388811111,0.078484676778316,-0.076853364706039],[-0.15633048117161,-0.09434150159359,-0.002368007786572]],[[-0.016139948740602,0.0060908528976142,-0.097406446933746],[0.042414575815201,-0.039178185164928,-0.0015238093910739],[-0.045118153095245,-0.059554670006037,0.14594165980816]],[[-0.044202696532011,-0.096357673406601,-0.010958782397211],[0.0033450936898589,-0.12786470353603,-0.039541069418192],[-0.11682972311974,-0.072441756725311,-0.048547025769949]],[[0.075721226632595,0.076666936278343,-0.022428620606661],[-0.021997770294547,-0.032160807400942,-0.096887081861496],[0.040479585528374,0.015134567394853,-0.080497093498707]],[[0.0033915468957275,0.13891877233982,0.14393235743046],[0.003719441127032,0.0023581075947732,0.090723924338818],[0.036460533738136,0.068811826407909,0.021413791924715]],[[-0.20603863894939,-0.030685897916555,0.07332294434309],[-0.0905377343297,-0.034563265740871,0.16549810767174],[-0.098936296999454,-0.095585457980633,-0.0064399600960314]],[[0.028270652517676,-0.020365040749311,-0.084701351821423],[0.038749527186155,-0.0005810217699036,0.042844116687775],[0.019824795424938,-0.19501841068268,0.0014815338654444]],[[-0.1392307728529,-0.026965236291289,-0.14254233241081],[-0.0067887469194829,-0.031821340322495,0.039268173277378],[0.0733832269907,-0.014929197728634,0.11379680037498]],[[-0.068492606282234,0.0040541365742683,0.1019209548831],[-0.054669544100761,0.034663196653128,-0.11041878163815],[0.046741932630539,-0.13482883572578,-0.037238541990519]],[[0.0017994033405557,0.020112216472626,-0.0064715314656496],[0.058331806212664,0.040976576507092,0.11381658166647],[0.04660077393055,0.060455694794655,0.21695104241371]],[[-0.022911809384823,-0.03714145720005,0.0094588762149215],[-0.0094882259145379,-0.021804248914123,-0.05454570427537],[-0.041485171765089,0.051288835704327,0.039464190602303]],[[0.10794366151094,-0.045299131423235,-0.06586953997612],[0.046448208391666,-0.048496022820473,-0.033180098980665],[-0.03077389113605,0.014632598496974,-0.10482461750507]],[[0.007474753074348,0.037558868527412,-0.051196679472923],[0.029351230710745,-0.036998625844717,0.09236466139555],[-0.018115201964974,-0.084172651171684,0.043153461068869]]],[[[-0.023353895172477,0.018128203228116,-0.02373450435698],[0.015191749669611,0.036842245608568,0.045889522880316],[0.17707775533199,0.048680197447538,0.070733785629272]],[[0.05554312095046,0.049324706196785,-0.29243421554565],[0.056290272623301,0.03470005095005,-0.25224849581718],[0.071514785289764,-0.014709007926285,-0.1193241328001]],[[0.11194600909948,-0.023187855258584,-0.14064072072506],[0.12412053346634,0.18039989471436,-0.053022842854261],[-0.2243378162384,0.016383526846766,-0.029427863657475]],[[-0.13355652987957,-0.14543135464191,-0.15530025959015],[0.099524095654488,0.027490166947246,-0.027664193883538],[-0.28530412912369,0.079619117081165,0.010931089520454]],[[-0.019980268552899,-0.033044405281544,0.052073277533054],[-0.0080912429839373,-0.082894913852215,0.0069814771413803],[0.021460151299834,-0.062158364802599,0.040864784270525]],[[0.11162889748812,-0.039495985955,-0.045423455536366],[0.0077634672634304,-0.027699772268534,-0.055684052407742],[-0.092960342764854,0.036958310753107,0.2696231007576]],[[-0.065739311277866,-0.13755947351456,0.051986917853355],[-0.090201213955879,0.021501835435629,0.065813958644867],[0.069737121462822,0.090913951396942,0.05133106186986]],[[0.0092644263058901,0.1660797894001,0.032396342605352],[0.068665325641632,-0.046146862208843,-0.0080225421115756],[-0.084563098847866,-0.19854055345058,-0.18662546575069]],[[-0.11773786693811,0.066944986581802,-0.038136798888445],[0.055830836296082,0.042823918163776,0.036593344062567],[-0.022687604650855,0.022767517715693,0.11132634431124]],[[-0.0058480929583311,0.087811812758446,0.073315232992172],[-0.052512153983116,-0.049110397696495,-0.072880931198597],[0.10264351963997,0.21844153106213,-0.026617228984833]],[[0.082226999104023,0.0644511282444,0.010032181628048],[-0.019592029973865,-0.027249585837126,-0.098396129906178],[-0.015240422450006,0.041827481240034,-0.24048162996769]],[[-0.02958251349628,0.10929124057293,-0.0088142501190305],[0.047916125506163,-0.096621863543987,-0.060485102236271],[-0.077700652182102,-0.076624438166618,-0.044705182313919]],[[0.09765961766243,0.16006697714329,0.049310259521008],[0.048423536121845,0.19680680334568,0.081671454012394],[0.063206851482391,-0.016311252489686,0.030135910958052]],[[-0.062568813562393,-0.074594460427761,-0.0091733569279313],[0.034649930894375,-0.042242258787155,-0.0029154205694795],[0.1619645357132,-0.13632021844387,0.11220403015614]],[[0.14437857270241,-0.10851756483316,-0.17607368528843],[0.01109526772052,0.070014402270317,0.088880084455013],[-0.020818281918764,0.03555453941226,-0.14756445586681]],[[0.035598948597908,-0.15820214152336,-0.0024565134663135],[0.01114890165627,0.020196288824081,0.00573789793998],[0.0013203184353188,0.0057420865632594,0.048553202301264]],[[-0.042297702282667,-0.068965494632721,-0.13680575788021],[-0.0049120490439236,0.12836393713951,0.0074705402366817],[0.064482353627682,-0.07138879597187,0.036005154252052]],[[0.031237110495567,-0.034762546420097,0.1176947504282],[0.037035826593637,-0.0329355224967,0.08362291008234],[-0.13805912435055,-0.098695255815983,0.020409885793924]],[[-0.15183766186237,-0.17468400299549,0.062907636165619],[0.11510688066483,-0.0065197735093534,-0.014765435829759],[0.10971299558878,0.16807743906975,0.026985608041286]],[[0.047421392053366,-0.0058901757001877,-0.14085821807384],[-0.0054754698649049,-0.05132918804884,-0.12276769429445],[-0.035549212247133,0.0099816750735044,-0.13141718506813]],[[-0.0064325048588216,-0.046316370368004,0.016015445813537],[-0.033216811716557,-0.0083915861323476,0.014441239647567],[-0.050600834190845,-0.042114354670048,-0.0014304503565654]],[[-0.10042881965637,-0.14166624844074,0.21872454881668],[0.042780216783285,-0.0025294437073171,0.1100036278367],[0.01799089461565,0.046498280018568,-0.031742926687002]],[[0.023315908387303,-0.0087594036012888,-0.038140494376421],[0.022815411910415,0.13277795910835,-0.02454786002636],[-0.078287966549397,-0.10239381343126,-0.13078986108303]],[[-0.016821535304189,-0.045674853026867,-0.020519383251667],[-0.037245262414217,0.094851054251194,0.068355925381184],[-0.066492706537247,-0.015362853184342,-0.057674665004015]],[[0.17921125888824,0.1176036298275,0.24694366753101],[-0.058732774108648,0.12255224585533,0.054262798279524],[-0.07963202893734,-0.078403189778328,0.02375583909452]],[[0.0026703157927841,-0.11607917398214,-0.11130584031343],[-0.041202422231436,0.0093419775366783,-0.10006123781204],[-0.031421516090631,-0.080206491053104,0.027103681117296]],[[0.22493641078472,0.13821572065353,0.035254266113043],[0.049363918602467,-0.095935568213463,-0.097027197480202],[0.050042815506458,0.068737424910069,-0.070804364979267]],[[0.079273715615273,-0.1035316362977,-0.11224725842476],[0.1087881475687,-0.10762868076563,0.041969809681177],[0.089036181569099,-0.037962518632412,-0.08654148131609]],[[0.117531940341,0.041754130274057,0.00053482741350308],[0.0049230516888201,0.030910544097424,-0.10550309717655],[0.12368294596672,-0.058492708951235,0.098306365311146]],[[-0.10425366461277,0.015349140390754,-0.059841141104698],[-0.013170969672501,0.026710888370872,-0.12704879045486],[-0.092671900987625,-0.10978358238935,-0.13993099331856]],[[0.16718871891499,-0.021911161020398,-0.023220017552376],[-0.14047130942345,-0.18513920903206,-0.068027973175049],[0.083747409284115,0.049833241850138,-0.012867958284914]],[[-0.033374428749084,-0.0095881065353751,-0.081441134214401],[0.088081412017345,-0.037426739931107,0.18153394758701],[-0.013916226103902,-0.10379557311535,-0.060005724430084]],[[-0.12072217464447,0.10900568217039,-0.084701247513294],[-0.0053125713020563,0.14610609412193,-0.0058376491069794],[0.090621307492256,0.06807254999876,0.036289379000664]],[[0.04948004335165,-0.03158462792635,-0.067795552313328],[0.052061211317778,-0.068451888859272,-0.12127983570099],[0.051365256309509,0.03916810080409,0.0083682611584663]],[[-0.18189041316509,-0.17763519287109,-0.20798459649086],[-0.013108426705003,0.0117780957371,-0.11942365765572],[0.043822515755892,0.075402937829494,0.1235219091177]],[[0.048147864639759,-0.26557865738869,0.081735193729401],[0.17686370015144,-0.30043870210648,0.0063654631376266],[-0.11826116591692,0.0051175272092223,-0.031679268926382]],[[0.0027528416831046,0.0080287680029869,0.12121517211199],[-0.14062860608101,0.0034566705580801,-0.039709463715553],[0.033238921314478,-0.089897148311138,-0.085054039955139]],[[-0.022121202200651,-0.0031234554480761,0.022743366658688],[-0.066127121448517,-0.12239738553762,0.030808022245765],[0.07523337751627,0.070251353085041,0.041127923876047]],[[0.05544600263238,0.020637044683099,0.0059144091792405],[-0.094368115067482,-0.013682228513062,0.13453747332096],[0.0035284424666315,-0.096142381429672,0.13436222076416]],[[-0.2340197712183,-0.15883514285088,0.084938727319241],[-0.19164763391018,-0.14435018599033,0.063575826585293],[0.1087302416563,-0.03644946962595,0.12818022072315]],[[-0.10726567357779,-0.11090892553329,-0.072561904788017],[-0.086711585521698,0.039638161659241,0.046235159039497],[-0.074629008769989,0.05518352240324,-0.032441306859255]],[[0.10186526179314,0.028550755232573,-0.072114869952202],[0.12580581009388,0.10492108762264,0.0028250222094357],[-0.12036404013634,-0.1414185911417,0.13080282509327]],[[0.12107797712088,0.070032574236393,-0.019720293581486],[0.10031756013632,0.061118237674236,-0.016910281032324],[0.082285329699516,-0.090974442660809,0.068651095032692]],[[-0.13720621168613,-0.29861330986023,-0.081460691988468],[-0.020671926438808,-0.016013814136386,0.020638592541218],[0.098416350781918,0.16826048493385,0.21504290401936]],[[-0.34519505500793,0.073691345751286,0.1148993447423],[-0.052602048963308,-0.1564861536026,0.16672134399414],[0.17580680549145,-0.17517320811749,-0.14870807528496]],[[0.068891398608685,0.050937663763762,0.04768643155694],[0.10330054163933,0.028489762917161,-0.0037389802746475],[-0.030570833012462,0.024221425876021,-0.0018667331896722]],[[-0.39738976955414,-0.15015912055969,0.055048283189535],[0.070327363908291,0.04063730686903,-0.098691627383232],[0.023222589865327,-0.25430503487587,-0.11404924094677]],[[0.081967949867249,0.18898537755013,0.10504066944122],[-0.055123038589954,-0.18250575661659,-0.061971258372068],[0.013646512292325,0.230762347579,0.098394870758057]],[[0.02592720836401,0.050102215260267,0.058731365948915],[0.01434176042676,-0.01621294207871,-0.057815562933683],[-0.17498570680618,-0.11396336555481,-0.13164234161377]],[[-0.057142104953527,-0.10243435204029,-0.033588822931051],[0.02849043905735,0.10858698189259,-0.099154114723206],[0.17366206645966,-0.12618136405945,-0.015407716855407]],[[-0.02742956392467,0.020931705832481,-0.0020543972495943],[0.092823684215546,0.088332481682301,0.045196298509836],[-0.087134525179863,0.11281771212816,0.048685785382986]],[[0.042042169719934,-0.050795197486877,0.00074014195706695],[0.052352394908667,0.091901473701,0.02507896348834],[-0.032179962843657,-0.03198516741395,-0.25782543420792]],[[0.0059937038458884,-0.025205697864294,-0.026924297213554],[-0.046587396413088,-0.027194568887353,0.035171553492546],[0.049384705722332,0.050540830940008,0.040331419557333]],[[0.12389323115349,0.13372275233269,0.07502106577158],[0.0048230192624032,0.16510996222496,-0.0048411907628179],[-0.047796964645386,0.086245611310005,0.040758695453405]],[[-0.20674511790276,0.039632931351662,-0.10173440724611],[-0.051606699824333,-0.091436237096786,-0.096614688634872],[0.16743184626102,0.10985393822193,-0.015750261023641]],[[-0.10061893612146,0.12760947644711,0.060861483216286],[-0.17670279741287,-0.017094656825066,-0.13263742625713],[0.15424513816833,0.058703351765871,0.048895969986916]],[[0.074055150151253,0.11292897164822,0.080487236380577],[0.019443782046437,-0.011288475245237,0.017035519704223],[0.028870902955532,0.057703115046024,-0.154452085495]],[[-0.010001099668443,0.036936976015568,-0.069938875734806],[-0.0070870779454708,0.042546775192022,0.092467576265335],[-0.030921278521419,0.07393155246973,0.1209410354495]],[[-0.12955725193024,0.17092244327068,0.089347660541534],[-0.13493831455708,-0.12124969065189,0.041659124195576],[0.15778182446957,0.16945905983448,0.096407793462276]],[[0.17904427647591,0.04266994446516,0.047052513808012],[-0.044526897370815,0.052679538726807,-0.10419533401728],[-0.21931955218315,-0.12159772217274,-0.15170337259769]],[[-0.095596492290497,-0.067462109029293,-0.21407847106457],[0.11706690490246,0.070066705346107,-0.030472535640001],[-0.11881238222122,-0.070798203349113,0.055693089962006]],[[-0.1747355312109,0.14641524851322,0.063134163618088],[0.1068235039711,0.08878730982542,0.086399964988232],[0.030283721163869,0.1734826862812,-0.009401592426002]],[[0.020281886681914,0.0054761320352554,0.0057385037653148],[-0.10654617846012,-0.086993701756001,-0.012539545074105],[-0.13123258948326,-0.26266005635262,-0.1788614988327]],[[0.054916340857744,0.0056563522666693,0.083961486816406],[-0.024855349212885,-0.14411193132401,-0.032163444906473],[-0.17488352954388,-0.12294176965952,-0.23227092623711]],[[0.056370511651039,0.48303216695786,0.081069014966488],[-0.10421289503574,0.11471626907587,0.15571184456348],[0.019980924203992,-0.12558589875698,-0.076631270349026]],[[-0.036327678710222,0.022083885967731,-0.025661272928119],[0.12226904928684,0.22893777489662,0.22953642904758],[-0.002859816653654,-0.11181878298521,0.042516931891441]],[[0.27136495709419,0.16354338824749,0.042927399277687],[0.085223369300365,0.14648650586605,-0.0021496084518731],[0.050667185336351,-0.083279438316822,-0.075206026434898]],[[-0.13966916501522,-0.058099906891584,0.074696518480778],[0.050330366939306,-0.051295503973961,-0.24572685360909],[-0.11590196192265,-0.054795201867819,-0.12275267392397]],[[0.23603734374046,0.20218031108379,0.030826788395643],[0.063397370278835,0.044125452637672,0.071975104510784],[-0.080544508993626,-0.064875155687332,-0.060699068009853]],[[-0.022907571867108,-0.11720152944326,0.014758774079382],[0.019570622593164,-0.059596925973892,0.028578050434589],[-0.0076343277469277,0.033004805445671,0.058342285454273]],[[-0.027918037027121,0.14486010372639,-0.1308681666851],[-0.05640983581543,0.015172259882092,-0.19842873513699],[-0.0062441653572023,-0.01216143835336,-0.040056824684143]],[[-0.16798783838749,0.046998288482428,0.22705420851707],[-0.21808998286724,0.0069587524048984,0.24319566786289],[-0.027472535148263,-0.12481822818518,-0.030595667660236]],[[0.069097831845284,-0.18701337277889,-0.069696709513664],[0.034813236445189,-0.090728096663952,0.046426694840193],[-0.14078363776207,0.27147635817528,0.11781481653452]],[[0.09804593026638,0.034281242638826,0.11988136172295],[0.082998417317867,0.11498498916626,0.14380510151386],[0.02583822235465,-0.076905615627766,-0.12380915880203]],[[-0.13252572715282,-0.047849550843239,-0.031712971627712],[-0.051327355206013,-0.1105133742094,-0.24272722005844],[-0.17947170138359,-0.1839823871851,-0.20753893256187]],[[-0.12337692826986,-0.016205312684178,0.0037474581040442],[-0.019225986674428,0.096275180578232,0.0094863520935178],[-0.035437177866697,0.049849931150675,0.24181002378464]],[[0.1733043640852,0.084771275520325,0.0051077920943499],[0.060935579240322,-0.0084019498899579,-0.089616499841213],[-0.24108731746674,-0.072161540389061,0.034045044332743]],[[0.051033552736044,0.01830643042922,0.061607137322426],[-0.013024176470935,-0.0014906770084053,0.09897618740797],[-0.012702232226729,0.016141349449754,-0.060229498893023]],[[-0.0036750184372067,0.078764021396637,0.11591503769159],[-0.051458455622196,0.07716927677393,0.084641024470329],[-0.13711170852184,-0.14986300468445,-0.083179600536823]],[[0.043374892324209,0.22578002512455,0.070319928228855],[-0.0027170774992555,-0.16934055089951,-0.030136991292238],[0.065065510571003,-0.068052247166634,0.1334515362978]],[[0.12978042662144,-0.15179708600044,-0.0094588659703732],[-0.079687990248203,-0.042227134108543,-0.013707428239286],[-0.057702511548996,0.058336440473795,0.14417462050915]],[[-0.039152033627033,0.15476149320602,0.18066504597664],[0.18554404377937,-0.075230285525322,-0.15211802721024],[0.0057446290738881,-0.11283529549837,-0.038085378706455]],[[0.12543804943562,-0.096262164413929,-0.026148559525609],[-0.0026759805623442,0.11144087463617,0.027446487918496],[0.10642818361521,0.091542989015579,0.0084372386336327]],[[-0.10114871710539,0.046505931764841,-0.076257631182671],[-0.072933450341225,0.0024493711534888,0.044867128133774],[-0.017597880214453,0.014720715582371,-0.10810436308384]],[[-0.16864132881165,-0.059967823326588,0.077777914702892],[0.016868205741048,-0.03202947601676,0.11797924339771],[0.17550483345985,-0.037476234138012,0.030294131487608]],[[0.11410403996706,0.069214351475239,-0.01495467312634],[0.17379161715508,0.0174939353019,-0.10687728971243],[0.064554624259472,-0.022809626534581,0.0096806641668081]],[[-0.061521615833044,-0.019135611131787,-0.048270475119352],[0.16732011735439,0.21191382408142,0.15314845740795],[-0.049497101455927,0.045861132442951,0.028781048953533]],[[0.29002469778061,-0.14777052402496,-0.050013646483421],[0.0033626821823418,-0.084566876292229,-0.12185812741518],[0.15982364118099,-0.024910621345043,-0.12246974557638]],[[-0.13273087143898,-0.24762332439423,-0.23254038393497],[-0.048619154840708,-0.16953864693642,-0.118553198874],[0.18603186309338,-0.11382759362459,-0.027156142517924]],[[0.022551756352186,-0.15855325758457,-0.086796991527081],[0.18002684414387,0.09723949432373,-0.054690591990948],[0.11575468629599,0.081336088478565,0.1346460133791]],[[0.26020285487175,0.07756919413805,0.062232419848442],[0.12980711460114,-0.025873163715005,-0.052083499729633],[-0.084563501179218,-0.09920709580183,-0.11727016419172]],[[-0.0070169847458601,0.066339962184429,-0.088515996932983],[0.015588477253914,-0.0404062718153,-0.1294652223587],[-0.075164996087551,0.02351713553071,0.0055792136117816]],[[-0.077393919229507,-0.15165862441063,-0.034341581165791],[0.0011561722494662,-0.039821613579988,-0.012893874198198],[0.18806672096252,-0.069929838180542,-0.017254650592804]],[[-0.11075585335493,0.26997298002243,0.2591245174408],[-0.14929020404816,0.10679416358471,0.15212796628475],[-0.0039410693570971,-0.12420631200075,0.0020479497034103]],[[-0.3447345495224,-0.1366078555584,0.043912764638662],[-0.25602021813393,-0.095357485115528,-0.051818199455738],[0.16105297207832,-0.15519700944424,-0.021701658144593]],[[0.083013191819191,0.042812503874302,-0.068491816520691],[0.045116897672415,0.17275632917881,-0.046441670507193],[-0.22174720466137,-0.077005349099636,-0.067956119775772]],[[-0.00020309304818511,-0.012341558001935,-0.030123563483357],[-0.19340561330318,0.12435681372881,0.11044415086508],[-0.042349852621555,0.0067491489462554,0.17174965143204]],[[0.047486893832684,0.16868671774864,0.051354065537453],[0.10712327063084,-0.043522953987122,-0.026565531268716],[-0.063678681850433,0.039365027099848,0.065732635557652]],[[-0.00426692282781,-0.02659135684371,-0.087065525352955],[0.047568541020155,-0.043467126786709,-0.054713167250156],[0.055779412388802,-0.068808890879154,-0.067370660603046]],[[0.11383303999901,-0.082334414124489,0.087377645075321],[0.0046165105886757,0.066340424120426,0.047494236379862],[-0.056511595845222,0.12367653101683,0.056167993694544]],[[-0.0026192876975983,0.14543688297272,0.042275078594685],[-0.013021632097661,-0.0086866207420826,0.013970009982586],[-0.084097243845463,-0.047444570809603,0.02380409091711]],[[0.086210340261459,0.0034651719033718,-0.032223250716925],[0.094911485910416,0.021459396928549,0.081398196518421],[0.11787492781878,0.062049921602011,-0.010347345843911]],[[0.023286422714591,0.039506167173386,0.18967008590698],[0.18648074567318,0.17699480056763,0.091585770249367],[0.15924625098705,0.052286393940449,0.045330438762903]],[[0.136021271348,-0.16020166873932,-0.073515333235264],[-0.052925162017345,4.0433580579702e-05,-0.040046248584986],[-0.08512557297945,-0.06037088483572,-0.12773521244526]],[[0.13640689849854,0.15788619220257,-0.0061604660004377],[0.059485588222742,-0.11989858001471,0.0046498104929924],[-0.017666148021817,0.041099727153778,0.023316582664847]],[[-0.0043182196095586,0.19964015483856,0.2580483853817],[0.0060891793109477,0.057441189885139,0.035378251224756],[-0.13853472471237,-0.086817279458046,0.0090314820408821]],[[-0.091298423707485,-0.092382095754147,0.0051144547760487],[-0.05824276804924,-0.043280035257339,-0.069400250911713],[-0.16147616505623,0.10277670621872,-0.035902105271816]],[[-0.019142832607031,-0.069030076265335,0.023300968110561],[-0.04175753891468,0.0052577368915081,0.012579371221364],[0.10232147574425,-0.063001178205013,0.069898709654808]],[[-0.18083004653454,-0.058586020022631,0.042676348239183],[-0.081674993038177,0.050143323838711,0.1371856033802],[0.026520507410169,0.32874849438667,0.10632725805044]],[[-0.11176715046167,-0.016759755089879,-0.0085320733487606],[0.054812088608742,-0.0053357593715191,0.072209790349007],[0.0006514165434055,0.088640630245209,0.068941451609135]],[[0.12476854026318,0.065218538045883,0.14991834759712],[0.049016293138266,-0.046971518546343,-0.023825343698263],[-0.075157046318054,-0.18472570180893,-0.097858890891075]],[[-0.23985740542412,-0.33515447378159,-0.12461242824793],[0.028138456866145,-0.087415002286434,-0.23832906782627],[0.076208300888538,-0.028374196961522,0.070287011563778]],[[-0.082491755485535,0.092709146440029,-0.20077066123486],[-0.081994153559208,0.056111980229616,-0.0029902476817369],[-0.041198331862688,0.07972577214241,-0.14287777245045]],[[-0.021941628307104,-0.03565589338541,-0.092788644134998],[-0.0026827664114535,0.017101779580116,0.053045570850372],[-0.027020115405321,0.099921189248562,0.031951822340488]],[[-0.09366150945425,0.051278095692396,0.0027426488231868],[-0.078601464629173,-0.05987885594368,0.031449899077415],[0.0085567990317941,0.004699737764895,0.037128426134586]],[[-0.091633811593056,-0.10423573106527,0.024570852518082],[0.096913136541843,0.22018723189831,0.1442319303751],[-0.13979078829288,0.14383955299854,0.063682414591312]],[[-0.095696300268173,0.022589322179556,0.1207630187273],[-0.18169552087784,-0.2611029446125,-0.1718789935112],[-0.097778007388115,-0.18788492679596,-0.15904392302036]],[[-0.15612825751305,-0.066044628620148,0.11979063600302],[-0.096463039517403,-0.11105128377676,-0.024562370032072],[-0.19696581363678,-0.037008799612522,-0.056115433573723]],[[-0.016528839245439,-0.1083942502737,0.048040777444839],[-0.027519259601831,0.047413557767868,-0.02035378664732],[0.1452978849411,0.05364852771163,-0.038486752659082]],[[0.016192032024264,0.29169154167175,0.10384513437748],[-0.092563889920712,-0.061186227947474,0.046383187174797],[-0.043186943978071,-0.089170798659325,-0.13841904699802]],[[0.019713735207915,0.045455239713192,-0.011276038363576],[0.07696071267128,-0.0043103145435452,-0.038079656660557],[0.0077296197414398,-0.011178636923432,0.050425119698048]],[[-0.10589452087879,-0.10765659809113,0.017557945102453],[-0.0124785983935,0.012114659883082,0.06585767865181],[0.088536649942398,0.11247280985117,-0.074598528444767]],[[0.091748520731926,-0.023297276347876,-0.19772051274776],[-0.05682260543108,-0.024743994697928,0.027793494984508],[-0.04824198782444,-0.20259530842304,-0.32889768481255]],[[0.035943821072578,0.055154226720333,0.11150081455708],[0.071273200213909,-0.062164638191462,-0.043764527887106],[0.012382824905217,0.04174405708909,-0.16754518449306]],[[0.028507439419627,0.0024590990506113,-0.010997651144862],[-0.045056130737066,-0.11263697594404,0.29139098525047],[0.023068692535162,0.19149102270603,0.15971407294273]],[[0.14135281741619,0.090010672807693,-0.10614513605833],[-0.049798749387264,-0.0021190359257162,0.017964981496334],[-0.043169211596251,-0.038223348557949,-0.17918801307678]],[[-0.041076608002186,-0.092984803020954,-0.0058117737062275],[0.13247717916965,0.13079234957695,0.02285292558372],[0.056671123951674,0.036321502178907,0.15538477897644]],[[0.064550973474979,0.1131619438529,-0.12486415356398],[0.0011401523370296,0.13591760396957,0.062376357614994],[-0.062220454216003,-0.10377492010593,-0.0045820446684957]]],[[[-0.053232755511999,-0.10608668625355,0.023984802886844],[-0.061149246990681,0.013655801303685,0.0084219640120864],[-0.016834665089846,-0.01052238792181,0.10709447413683]],[[-0.013784549199045,0.030782591551542,-0.010108709335327],[0.039824862033129,-0.055213462561369,-0.02026154473424],[-0.023453528061509,0.082666076719761,0.11478414386511]],[[-0.026675470173359,-0.020086487755179,0.008822220377624],[0.021429659798741,0.021956708282232,-0.059854876250029],[-0.13834780454636,-0.020570615306497,0.031685244292021]],[[-0.035172261297703,-0.0025273386854678,0.018392058089375],[-0.050934974104166,-0.043346781283617,0.025127079337835],[0.10264780372381,0.048420988023281,0.011656972579658]],[[-0.0064807874150574,-0.032596960663795,-0.072656728327274],[-0.066058255732059,0.015668742358685,0.031036395579576],[-0.081278003752232,-0.015666926279664,-0.034149810671806]],[[-0.0014497180236503,0.024390606209636,-0.019493913277984],[-0.0016614984488115,-0.0065699685364962,8.5183564806357e-05],[-0.07599987834692,-0.050802152603865,-0.019717194139957]],[[0.012920164503157,0.024554703384638,-0.024566493928432],[0.059858433902264,0.028287416324019,-0.021675942465663],[0.04496805742383,0.064496241509914,-0.018281545490026]],[[0.013946637511253,-0.041393019258976,0.062357727438211],[-0.014814442954957,0.016347901895642,0.0011080119293183],[-0.066102750599384,-0.036721885204315,-0.021359071135521]],[[0.01208140142262,-0.012670195661485,-0.047848962247372],[0.0044682500883937,-0.025032974779606,0.056715123355389],[0.057382795959711,-0.014168472029269,-0.071592718362808]],[[0.054850585758686,0.10667111724615,0.03430112823844],[-0.0055245766416192,-0.053448121994734,0.062163654714823],[0.033003054559231,-0.020155537873507,0.073617301881313]],[[-0.028927899897099,0.054014932364225,0.01314230915159],[-0.001701166620478,-0.03877367824316,0.023094307631254],[0.051581855863333,0.012759787961841,-0.012361197732389]],[[-0.021312300115824,0.011791407130659,0.039663504809141],[-0.0343904979527,0.0011421274393797,-0.044951491057873],[-0.033245250582695,0.039239898324013,-0.010830353014171]],[[0.048652745783329,0.037176914513111,-0.011038600467145],[0.03357807174325,0.039179097861052,0.032383847981691],[-0.059374921023846,-0.00028225663118064,0.02012612298131]],[[0.046362061053514,0.015611288137734,0.060266751796007],[-0.087147690355778,0.0030709439888597,-0.068109169602394],[-0.082693055272102,0.042349863797426,0.013772494159639]],[[0.01772048138082,0.04204486310482,-0.056680623441935],[0.013912499882281,-0.060963589698076,0.035157054662704],[0.026139114052057,0.021040022373199,0.0088316714391112]],[[-0.0050945566035807,0.015856644138694,-0.0078693460673094],[0.0063861589878798,-0.037417728453875,0.047034796327353],[-0.017830841243267,0.055586528033018,-0.069126822054386]],[[0.030819682404399,0.053629849106073,0.10046944022179],[0.0021552415564656,0.0045738243497908,0.016460850834846],[0.0240283831954,-0.027424434199929,-0.056290362030268]],[[0.044841974973679,-0.05108580738306,-0.1120972186327],[0.016667626798153,-0.089801631867886,-0.058961920440197],[0.076258808374405,0.032257989048958,0.042145870625973]],[[0.0085093788802624,0.01459941174835,-0.014815473929048],[0.021762855350971,-0.0024033910594881,0.050163146108389],[-0.009471207857132,0.0090232938528061,0.002126389183104]],[[-0.039505295455456,0.027259675785899,0.053383145481348],[0.053263794630766,0.040529780089855,-0.071435332298279],[0.051637474447489,-0.011521724052727,-0.056705255061388]],[[0.014493400231004,-0.022915054112673,-0.022608678787947],[-0.011091095395386,-0.024078784510493,-0.045730248093605],[-0.03653820976615,-0.018442798405886,-0.025325804948807]],[[0.078769698739052,0.077205374836922,-0.01559817045927],[0.040867432951927,0.035243809223175,0.10865976661444],[0.021728483960032,0.1125840395689,0.09291011095047]],[[-0.039905913174152,-0.0061286091804504,-0.0076691792346537],[-0.072347022593021,-0.0021258604247123,0.020976547151804],[-0.0029888262506574,-0.091024577617645,0.0011199144646525]],[[-0.046926256269217,-0.035013519227505,-0.041386105120182],[0.0039267563261092,0.025475757196546,-0.010185670107603],[0.0064013837836683,0.04172471165657,0.012266900390387]],[[-0.01189087703824,-0.02302567102015,-0.050557684153318],[0.050980743020773,-0.030031777918339,0.022073125466704],[0.025325434282422,-0.035542488098145,-0.00070432771462947]],[[0.0079120043665171,-0.0029519258532673,-0.040851064026356],[0.029926037415862,-0.0083446959033608,0.022932559251785],[-0.0034008417278528,-0.050579231232405,-0.016580946743488]],[[0.014787912368774,0.018225500360131,0.0011728561948985],[0.0028468556702137,-0.049221213907003,-0.0040112873539329],[0.03622043132782,0.031456060707569,0.010335193015635]],[[-0.011893890798092,0.035942252725363,0.0019743209704757],[0.014033207669854,0.02270358428359,-0.0085094608366489],[0.046188317239285,0.016527187079191,-0.032523714005947]],[[0.0087600946426392,-0.043034687638283,-0.019005576148629],[0.019008085131645,0.036186140030622,-0.053321588784456],[-0.036308255046606,0.011717769317329,-0.01647661998868]],[[0.040861930698156,0.010404565371573,-0.017788397148252],[-0.060872241854668,0.049591582268476,0.026285611093044],[-0.11005355417728,-0.082892432808876,-0.0067162699997425]],[[-0.052221886813641,-0.042188871651888,0.031326893717051],[-0.07871986925602,-0.010193288326263,0.014277226291597],[-0.034321412444115,-0.027793055400252,0.0091440128162503]],[[-0.042741388082504,-0.061546180397272,0.019025592133403],[-0.05713751539588,0.0085143214091659,0.022020876407623],[-0.0064243287779391,0.0013069960987195,-0.0045688096433878]],[[0.0067823054268956,-0.048381775617599,-0.017074126750231],[-0.017035730183125,0.03298906236887,0.022175027057528],[0.07565900683403,0.078055128455162,-0.0035599935799837]],[[0.002178477589041,-0.066678874194622,0.0028732446953654],[0.025189569219947,-0.014783713966608,0.032983299344778],[-0.029725972563028,0.0246163867414,0.0061745252460241]],[[0.046139366924763,-0.0046560848131776,0.043969389051199],[-0.036503806710243,0.0044733281247318,-0.025548238307238],[-0.0066591729409993,-0.0026238837745041,-0.020895583555102]],[[0.011915922164917,0.0037757507525384,0.015765570104122],[-0.016139388084412,-0.066938921809196,0.044185481965542],[-0.078034080564976,-0.0001928812416736,-0.0093143656849861]],[[0.040633480995893,-0.01874571852386,0.027636660262942],[0.046184059232473,0.025802494958043,-0.087001338601112],[-0.074545197188854,0.015854023396969,0.08083014190197]],[[0.0099866380915046,-0.0055877701379359,-0.043526887893677],[-0.029618630185723,0.058362316340208,0.055356059223413],[-0.024321157485247,0.0031706914305687,-0.074738100171089]],[[-0.013670302927494,-0.039536647498608,-0.0088853510096669],[-0.031092330813408,-0.036555130034685,-0.045450937002897],[-0.097041063010693,-0.02636956050992,0.028294708579779]],[[0.06636805832386,-0.030499519780278,0.021431652829051],[0.027417482808232,-0.004675168544054,0.01981727220118],[-0.048898030072451,0.019489718601108,-0.071618840098381]],[[-0.063776880502701,-0.024188438430429,0.036295138299465],[-0.0062976735644042,0.055167965590954,-0.036404274404049],[0.056757170706987,-0.050769791007042,-0.059588301926851]],[[0.0082411412149668,0.034922361373901,0.083912841975689],[-0.022409867495298,0.057940110564232,0.065601877868176],[0.064083583652973,0.074337393045425,0.050743367522955]],[[0.061051856726408,-0.03512866795063,-0.028347497805953],[-0.051170218735933,0.039524134248495,0.079117588698864],[0.15037539601326,0.0011926607694477,0.057788845151663]],[[0.026471611112356,-0.00026374246226624,0.0066452212631702],[-0.028752841055393,0.00045040983241051,-0.046769164502621],[-0.055386748164892,-0.0027939528226852,0.002581624314189]],[[-0.044251248240471,0.039499063044786,-0.011632736772299],[0.032704014331102,0.021624514833093,-0.019949026405811],[-0.0073709241114557,-0.027205053716898,0.044448804110289]],[[-0.0095326323062181,0.14649952948093,-0.052269641309977],[0.090137310326099,0.032911032438278,0.12011252343655],[0.11764947324991,0.069594703614712,0.12222432345152]],[[0.056748948991299,0.017508454620838,-0.07431460916996],[0.015098826959729,-0.013128683902323,0.021892186254263],[0.12741215527058,0.043347079306841,0.027796814218163]],[[-0.027514655143023,-0.066059224307537,0.026211397722363],[-0.04066339507699,-0.035748295485973,-0.0011342744110152],[-0.038053996860981,-9.128860256169e-05,-0.021351333707571]],[[-0.0082231536507607,-0.097467482089996,0.0048261806368828],[-0.067456714808941,-0.00020494854834396,0.014813721179962],[-0.0045909145846963,0.019910641014576,0.078726761043072]],[[-0.041829008609056,-0.030995512381196,-0.0022105204407126],[-0.086692601442337,-0.028967093676329,-0.020501935854554],[0.032385256141424,0.020394288003445,0.0017993886722252]],[[0.043475184589624,0.052580114454031,-0.0043506580404937],[0.0085637550801039,0.0167375523597,-0.043664392083883],[-0.066795617341995,-0.055786594748497,0.003537961980328]],[[0.013494867831469,-0.025343913584948,0.029350131750107],[0.017081927508116,0.0031182102393359,-0.012790442444384],[0.029414527118206,-0.017705470323563,0.013863467611372]],[[-0.13465604186058,-0.047849822789431,0.02422946318984],[0.016261100769043,-0.008194393478334,-0.01998489163816],[-0.026591161265969,-0.025393268093467,-0.13346916437149]],[[0.045407216995955,0.0025775623507798,0.06683661788702],[0.071366891264915,0.053315006196499,0.030307235196233],[-0.013083222322166,0.03735014423728,-0.017738869413733]],[[-0.0026530304457992,-0.048968270421028,-0.0060492581687868],[0.005421138368547,-0.032751474529505,0.036872282624245],[0.019248446449637,0.019729007035494,-8.9089895482175e-05]],[[0.010476993396878,0.038708474487066,0.024896273389459],[0.0088461404666305,-0.011177686043084,0.07072427123785],[-0.019990926608443,0.027675969526172,0.023390108719468]],[[-0.0001799169840524,-0.0055248881690204,0.045770898461342],[0.019650710746646,0.062812454998493,0.039993986487389],[0.050236761569977,-0.0064534679986537,-0.042970385402441]],[[0.007847242988646,0.027132583782077,0.039339389652014],[0.02269584685564,-0.02110899426043,0.010290876962245],[-0.038682572543621,-0.0021150612737983,-0.038598775863647]],[[0.040435113012791,-0.014780174940825,-0.015633776783943],[0.037517912685871,0.061922162771225,0.040433395653963],[0.035523399710655,0.011833404190838,-0.043592482805252]],[[0.0011781638022512,0.026251694187522,-0.0044901547953486],[-0.01711586304009,-0.029042663052678,0.064015537500381],[0.06620779633522,-0.0045513319782913,-0.03833108022809]],[[0.0081868078559637,-0.02556836605072,0.029671542346478],[-0.040168579667807,0.025838414207101,0.012192364782095],[-0.016210852190852,-0.047410219907761,0.003927415702492]],[[-0.06356917321682,0.017925530672073,0.007906636223197],[0.023657852783799,-0.0044897366315126,0.069760479032993],[0.021564073860645,0.035192709416151,-0.078754298388958]],[[0.05482754856348,-0.0057209376245737,-0.082561105489731],[-0.047272592782974,-0.01067600492388,0.0147600537166],[0.0470080524683,-0.026183035224676,-0.027336951345205]],[[-0.012157449498773,0.021767236292362,0.017164766788483],[0.060663849115372,-0.022598238661885,-0.0016098426422104],[0.014122229069471,0.041635237634182,0.057629819959402]],[[0.050816763192415,-0.051827348768711,-0.024053612723947],[0.037917207926512,0.05746541172266,-0.040729943662882],[-0.046952228993177,-0.037103459239006,0.042495876550674]],[[0.057942364364862,0.00041458575287834,-0.089989930391312],[0.034455068409443,-0.012354394420981,0.018434097990394],[0.0042703561484814,0.044286463409662,0.074567288160324]],[[0.021191984415054,0.014014700427651,0.045430772006512],[-0.012337639927864,0.019695080816746,0.064879722893238],[0.018869301304221,0.0004527204146143,-0.046813432127237]],[[-0.010897951200604,-0.011334498412907,-0.032664693892002],[0.0011335930321366,-0.0096250623464584,0.076494298875332],[0.033457562327385,0.049884214997292,0.10682633519173]],[[0.014299693517387,-0.058381456881762,0.096239537000656],[0.020185861736536,0.017363434657454,-0.010473639704287],[0.054529279470444,-0.007077656686306,0.031083948910236]],[[-0.017458559945226,-0.082434080541134,0.03583961352706],[-0.076241128146648,0.017920425161719,0.11581744253635],[0.058140896260738,0.052109804004431,0.068313308060169]],[[0.026146344840527,0.072213619947433,0.017944872379303],[0.024559674784541,-0.041406039148569,0.072296023368835],[0.064955793321133,0.10362370312214,-0.022385446354747]],[[-0.0085275741294026,0.001895712222904,-0.015763159841299],[0.011935165151954,-0.050430987030268,0.08635202050209],[0.018462745472789,0.029156170785427,-0.021919630467892]],[[-0.014644352719188,-0.0043841167353094,0.019649840891361],[-0.0029522709082812,-0.036114793270826,-0.058823477476835],[-0.072479911148548,0.028375325724483,0.007998707704246]],[[0.082275480031967,-0.0067301304079592,0.016508704051375],[0.0091488528996706,-0.034579865634441,0.052233353257179],[-0.029134342446923,0.053451750427485,0.073062501847744]],[[0.065394029021263,0.06129464879632,0.011966305784881],[0.0066166897304356,-0.05606098100543,0.026094891130924],[0.044469472020864,-0.0020684369374067,-0.010796038433909]],[[-0.05839915946126,-0.050282377749681,-0.012205044738948],[-0.070306055247784,-0.054541315883398,0.022355182096362],[-0.071565985679626,-0.010798675939441,-0.0037634803447872]],[[-0.024971056729555,-0.038376607000828,0.025164799764752],[-0.010409551672637,0.064475975930691,0.054366867989302],[0.044171273708344,-0.01856429874897,-0.02635839022696]],[[0.024452392011881,0.047811415046453,0.052499234676361],[0.046306297183037,0.026301747187972,0.057664502412081],[0.096767023205757,-0.051380418241024,0.0076357773505151]],[[-0.032410357147455,-0.020261051133275,0.028187634423375],[0.011825376190245,-0.026610577479005,0.036378987133503],[0.098868303000927,0.01812688075006,-0.0046400404535234]],[[0.026075875386596,0.061359062790871,0.021304873749614],[0.031450532376766,-0.045231267809868,0.11477707326412],[0.0054744696244597,-0.028440892696381,0.042501628398895]],[[0.0077790692448616,-0.066341027617455,0.048165392130613],[-0.03153870254755,-0.079461932182312,-0.005163487046957],[-0.070841208100319,0.003960735630244,0.0018367419252172]],[[0.0080560017377138,0.034179743379354,-0.073364891111851],[0.032114163041115,0.07533010840416,0.077954068779945],[-0.032232701778412,-0.052751172333956,0.014945948496461]],[[-0.035793840885162,0.012473832815886,-0.019093798473477],[0.012487455271184,0.039280705153942,0.035739749670029],[0.045170851051807,0.055898983031511,0.076777137815952]],[[-0.027549080550671,0.028259295970201,0.013663218356669],[0.0039311829023063,0.018223004415631,0.0028272932395339],[-0.0040433900430799,-0.015676241368055,0.025479415431619]],[[0.0034950242843479,0.020972663536668,0.053179252892733],[0.070712774991989,-0.030968222767115,-0.0045325043611228],[-0.0099608823657036,-0.050044059753418,-0.03511855378747]],[[-0.025112530216575,0.07731831818819,0.075712837278843],[-0.026132389903069,0.0057545653544366,-0.011790629476309],[0.040395885705948,0.032545741647482,0.027219226583838]],[[-0.0037130762357265,0.036126829683781,-0.078435674309731],[0.055038351565599,-0.0051029762253165,-0.0016192122129723],[0.015675280243158,0.004239559173584,0.078367337584496]],[[-0.014175388030708,-0.012524124234915,-0.006332472898066],[-0.022551959380507,0.01463408023119,-0.0506491959095],[-0.073847644031048,0.018815625458956,0.082513928413391]],[[0.010271167382598,0.065823413431644,-0.060745760798454],[0.021510891616344,-0.005039896350354,-0.089451782405376],[-0.030097108334303,0.038101766258478,-0.0039052020292729]],[[0.046472080051899,0.022423593327403,0.12493697553873],[0.026956252753735,-0.0029093660414219,-0.0263751745224],[-0.0040931734256446,-0.026633709669113,-0.0156878400594]],[[-0.0083614941686392,0.042040042579174,0.010201289318502],[-0.013608054257929,0.029192609712481,-0.007551645860076],[0.036454640328884,0.028007660061121,-0.025740213692188]],[[-0.033433839678764,-0.077962554991245,0.10752003639936],[0.0036274534650147,-0.042016044259071,-0.0090276151895523],[-0.0026920286472887,-0.059274025261402,-0.040572807192802]],[[-0.0037676806095988,-0.045996021479368,0.016745025292039],[-0.036315217614174,0.050977107137442,-0.013150366023183],[-0.062715411186218,0.085797682404518,-0.071839921176434]],[[0.02155333943665,-0.12141254544258,-0.11049687862396],[-0.016860492527485,0.01755746267736,0.014198669232428],[0.028201317414641,0.0038570463657379,-0.012955320999026]],[[0.014112270437181,0.0021053501404822,-0.008112134411931],[0.010722651146352,0.055757146328688,-0.01994938775897],[-0.0049395714886487,-0.058058988302946,-0.019598800688982]],[[-0.016736779361963,0.007569863460958,-0.0013014691649005],[0.030713746324182,-0.069591946899891,0.01253517717123],[-0.0035388318356127,-0.011706217192113,-0.024247072637081]],[[0.022535728290677,-0.048944585025311,-0.078700736165047],[-0.051947329193354,0.011193176731467,-0.043173678219318],[0.024274170398712,-0.095135189592838,-0.0032233551610261]],[[-0.00067309371661395,0.072980411350727,0.011136420071125],[-0.022441320121288,0.068111680448055,0.018183195963502],[0.016406131908298,0.066805273294449,0.014257601462305]],[[0.0068034576252103,0.036225847899914,-0.029380613937974],[0.031622800976038,-0.037931587547064,-0.066817782819271],[0.0018779579550028,-0.018129091709852,0.036966826766729]],[[0.10545387119055,-0.022134868428111,0.061203081160784],[0.029409822076559,0.072067983448505,0.10245962440968],[0.010102702304721,0.029591282829642,0.039909832179546]],[[0.068201296031475,-0.1261510103941,0.072139851748943],[0.1215472817421,-0.0051718624308705,0.12730297446251],[-0.034218788146973,-0.090435326099396,0.054921362549067]],[[-0.078621335327625,-0.016875697299838,0.018059592694044],[-0.035238906741142,0.1096578836441,0.039543464779854],[-0.030511539429426,-0.0095643484964967,0.034792486578226]],[[-0.085340328514576,-0.049129959195852,-0.031858921051025],[0.035146661102772,-0.053825572133064,0.031036715954542],[-0.0073975655250251,0.042300697416067,0.04356987029314]],[[-0.02954389154911,0.022068116813898,0.016296429559588],[-0.093186356127262,0.031592883169651,-0.039033465087414],[-0.047526802867651,0.00012150519614806,0.024115240201354]],[[0.068790428340435,-0.036842949688435,-0.0077561126090586],[-0.0037600183859468,-0.048775594681501,0.0075364364311099],[0.072549782693386,0.019181726500392,0.053083814680576]],[[-0.028017247095704,0.082899183034897,0.12437716126442],[0.0059404256753623,0.040363509207964,-0.00024518449208699],[0.036730546504259,-0.0645597204566,-0.0117372199893]],[[0.079034805297852,0.084039635956287,0.032045785337687],[0.025733835995197,-0.0074980459176004,-0.013369141146541],[-0.016713859513402,-0.0083551267161965,-0.0056282305158675]],[[0.043789844959974,0.019598420709372,-0.087879784405231],[-0.037613414227962,-0.053457386791706,0.031540643423796],[0.029941787943244,-0.016381856054068,-0.078263714909554]],[[-0.030946398153901,0.01205185148865,-0.050939377397299],[-0.0038843881338835,-0.060024160891771,-0.025271670892835],[-0.088737279176712,-0.037653632462025,0.069431275129318]],[[-0.10844146460295,-0.0052830898202956,0.053890895098448],[0.018477723002434,-0.03600861504674,-0.049152739346027],[0.026626631617546,-0.036252703517675,0.049966190010309]],[[-0.021989600732923,0.026799838989973,-0.013638904318213],[-0.035949617624283,0.014951517805457,0.0008323373622261],[-0.0083260834217072,0.034308966249228,-0.010593703947961]],[[-0.031052203848958,0.018029034137726,-0.0098804337903857],[-0.032528057694435,-0.0014441934181377,-0.012209003791213],[0.012538604438305,-0.047930259257555,-0.035736784338951]],[[0.10224605351686,0.0036383788101375,-0.036786157637835],[-0.047530520707369,-0.12111685425043,0.075511537492275],[0.056968580931425,0.057030562311411,0.04018272459507]],[[-0.10785055160522,-0.0080061629414558,0.088930986821651],[0.045923437923193,-0.040882330387831,0.024356301873922],[0.015520169399679,-0.046397667378187,0.011610271409154]],[[-0.041785035282373,0.044453911483288,-0.032993566244841],[-0.0084891086444259,-0.025040671229362,-0.057790149003267],[-0.068601526319981,0.006709196139127,-0.033882517367601]],[[0.0053432262502611,-0.096918523311615,-0.033582128584385],[-0.037780001759529,-0.0075822430662811,-0.098530694842339],[-0.011590639129281,0.014467055909336,-0.020976493135095]],[[-0.025438519194722,-0.083073183894157,-0.012762447819114],[0.04395604133606,-0.056798193603754,-0.067563451826572],[-0.014962320216,-0.012228516861796,0.0051776035688818]],[[0.080277770757675,-0.0037408855278045,-0.067450895905495],[-0.048468660563231,0.042260557413101,-0.050395611673594],[-0.057277753949165,0.028131190687418,-0.023126380518079]],[[-0.062969096004963,-0.11516135931015,-0.013487614691257],[-0.02286983653903,0.010394338518381,-0.061241295188665],[-0.09112836420536,0.0092057399451733,-0.0032597093377262]],[[-0.0030205028597265,-0.016649229452014,-0.00062711053760722],[0.035136874765158,0.087332867085934,0.12552773952484],[0.06757752597332,0.065767101943493,0.067190863192081]],[[-0.024640763178468,0.032791312783957,0.09124244004488],[-0.010027093812823,-0.087604127824306,0.057049438357353],[-0.022876799106598,0.019747225567698,-0.0085761696100235]],[[-0.017343524843454,0.042496673762798,0.012050274759531],[-0.048085130751133,-0.049744829535484,0.015786793082952],[0.0069208606146276,0.02491245046258,0.047606498003006]],[[-0.033866669982672,-0.045142244547606,-0.075255632400513],[-0.034271080046892,-0.01075935550034,-0.023809686303139],[0.07016908377409,-0.046574365347624,0.0055053448304534]],[[-0.026253718882799,-0.052154399454594,0.13466782867908],[0.055901907384396,-0.024466605857015,0.01384608540684],[0.14986264705658,-0.01321678981185,-0.016641490161419]],[[0.023554410785437,-0.021090200170875,-0.00048595160478726],[-0.032529443502426,0.020131964236498,-0.0017121916171163],[0.011089525185525,-0.015418399125338,0.088960863649845]],[[0.036902472376823,-0.033697225153446,0.079128593206406],[0.11398658156395,0.070667870342731,-0.04185476526618],[0.11003697663546,-0.012853497639298,-0.065582744777203]],[[-0.023334573954344,0.0435183160007,-0.03729286044836],[-0.045936781913042,-0.036332320421934,0.012187007814646],[-0.048199959099293,0.011262461543083,0.021751394495368]],[[0.01795114018023,-0.021836189553142,-0.016024550423026],[-0.035037275403738,0.0047642248682678,0.037864781916142],[0.029831727966666,0.035885732620955,0.10656524449587]]],[[[-0.067789055407047,-0.052779369056225,0.017466815188527],[0.061014655977488,0.074867717921734,-0.096532493829727],[0.020087543874979,-0.016636371612549,0.069599136710167]],[[-0.055207807570696,-0.040543172508478,-0.015938786789775],[-0.077067419886589,-0.098163470625877,-0.076494164764881],[-0.056609779596329,0.011076755821705,0.039191585034132]],[[0.032786279916763,0.047319028526545,-0.015908231958747],[-0.037824511528015,-0.025467382743955,0.024236159399152],[-0.047509849071503,0.012694793753326,-0.012266110628843]],[[-0.0060221995227039,0.094204738736153,0.072422161698341],[-0.03946191072464,0.060735136270523,-0.042135175317526],[0.018787827342749,0.054906725883484,-0.053971156477928]],[[-0.071126125752926,0.03982850164175,-0.055787265300751],[-0.011981901712716,0.0042684143409133,0.082326903939247],[-0.046189431101084,-0.088967643678188,-0.0018069699872285]],[[0.010253909043968,0.060730945318937,0.070418804883957],[0.030935997143388,0.034723173826933,0.0023447095882148],[-0.038368925452232,0.0088753066956997,-0.045764725655317]],[[-0.01626948453486,0.12402233481407,0.010594574734569],[-0.0291598290205,-0.0089082289487123,0.0048675071448088],[0.040278818458319,-0.024237180128694,-0.04058850184083]],[[-0.025879129767418,0.071637764573097,0.088778667151928],[0.040593236684799,-0.01887228526175,0.091124847531319],[0.080908186733723,0.053672961890697,0.063496872782707]],[[-0.028015453368425,0.032724063843489,-0.095589570701122],[-0.036577053368092,0.020747549831867,0.024322910234332],[0.069029465317726,-0.047040410339832,-0.029904801398516]],[[-0.025156253948808,0.028010753914714,0.006115410476923],[-0.0062647494487464,0.048535283654928,0.044821970164776],[-0.05279678478837,-0.023319393396378,0.071084283292294]],[[0.025267161428928,-0.064440622925758,-0.0040072253905237],[-0.065491616725922,0.074650384485722,-0.021015731617808],[-0.0048305420204997,-0.0011780449422076,-0.0038346094079316]],[[-0.084293372929096,-0.0056045334786177,-0.014667450450361],[-0.06420761346817,-0.068081356585026,-0.040998265147209],[-0.027412923052907,0.032371778041124,0.047340590506792]],[[0.0021473104134202,-0.08611111342907,0.029800375923514],[-0.02405895665288,0.024891942739487,-0.031257785856724],[-0.040987875312567,0.048751048743725,0.025776494294405]],[[-0.0029436405748129,-0.098622933030128,0.017339015379548],[0.054460197687149,-0.063839502632618,-0.024743059650064],[0.030770357698202,-0.052180018275976,0.017358813434839]],[[-0.039418395608664,0.0064639043994248,-0.056632038205862],[0.050523173063993,-0.0089905504137278,-0.098382420837879],[-0.045536328107119,-0.020055530592799,0.02546820230782]],[[0.020010575652122,-0.015858763828874,0.038466468453407],[0.018648454919457,0.045012388378382,0.016263652592897],[0.0367776080966,-0.040934756398201,0.01598853059113]],[[-0.034752316772938,0.025416681542993,-0.01160376612097],[0.045083120465279,0.049242485314608,0.012099311687052],[0.052306335419416,0.023751588538289,-0.023278808221221]],[[-0.0098522966727614,-0.037781409919262,-0.064261607825756],[-0.040398132055998,-0.02113251760602,-0.011183293536305],[-0.044881168752909,-0.03791806101799,-0.029079545289278]],[[0.093352168798447,0.02974390797317,-0.040363933891058],[0.00011653971887426,-0.038181807845831,0.0062596038915217],[0.016569776460528,0.059145156294107,0.053883168846369]],[[-0.020672786980867,0.019873511046171,0.077177785336971],[0.010696592740715,0.051234818994999,-0.019760362803936],[-0.03980253636837,-0.070833496749401,-0.020806590095162]],[[0.039545472711325,-0.045411225408316,-0.015643773600459],[-0.030323436483741,0.021329071372747,0.018395487219095],[-0.012633019126952,0.016155481338501,-0.0010721901198849]],[[0.025452656671405,-0.0055064996704459,-0.073403745889664],[0.0029276374261826,-0.0030353139154613,0.059374786913395],[0.025937849655747,-1.1320698831696e-06,0.074990272521973]],[[-0.035822816193104,-0.03350368142128,-0.002995913149789],[-0.0027738926000893,-0.003669178346172,0.04792694747448],[0.018848178908229,-0.043863452970982,-0.011979677714407]],[[0.018274661153555,0.0011247597867623,0.073224261403084],[0.02474613301456,0.013976439833641,0.059770680963993],[-0.002427970757708,-0.051494769752026,-0.13575409352779]],[[0.11012996733189,-0.014630171470344,-0.14237894117832],[0.035385303199291,-0.00062195141799748,0.085586868226528],[-0.021089507266879,-0.056364733725786,0.0094410758465528]],[[-0.019564844667912,0.059237889945507,0.0036954197566956],[-0.035926770418882,-0.017840661108494,0.016865003854036],[0.06379522383213,-0.019224725663662,0.012298927642405]],[[0.0544193983078,0.041785582900047,-0.013859721831977],[-0.03994083404541,0.069407977163792,0.054132807999849],[-0.016105860471725,-0.0019220617832616,-0.072231285274029]],[[-0.008345628157258,0.044976528733969,0.059964407235384],[0.044056102633476,-0.027544315904379,0.0065458049066365],[0.030807740986347,-0.0026955655775964,0.014960222877562]],[[0.012397565878928,-0.068178460001945,-0.064683265984058],[-0.024194775149226,0.031619448214769,-0.037055145949125],[-0.042743477970362,-0.056481782346964,0.069469220936298]],[[0.067010074853897,0.081129714846611,0.082333751022816],[0.034020137041807,-0.083991475403309,0.0034687349107116],[0.01394974719733,-0.017333127558231,-0.018406564369798]],[[-0.017994264140725,0.029878932982683,0.067244656383991],[-0.069484226405621,-0.017358576878905,0.0023359088227153],[0.069436810910702,-0.026356926187873,0.034555867314339]],[[0.066290676593781,0.058376684784889,0.019176412373781],[-0.10843421518803,0.011290053837001,0.075159259140491],[0.044611677527428,-0.03625350445509,-0.042111344635487]],[[0.075989671051502,0.078560799360275,-0.026160974055529],[0.021753570064902,0.086622327566147,0.045917812734842],[0.080070339143276,-0.025469796732068,0.063702508807182]],[[0.055617060512304,0.077873289585114,0.032936252653599],[0.049666348844767,0.0012861988507211,0.029552578926086],[0.051875729113817,-0.074231445789337,-0.017974549904466]],[[0.031484469771385,-0.0099405217915773,-0.041066955775023],[0.030586343258619,-0.047417566180229,0.020546527579427],[-0.11561703681946,-0.088575065135956,-0.027317820116878]],[[-0.057904720306396,-0.075618706643581,0.054314482957125],[0.003922329749912,0.016783582046628,0.0035816300660372],[0.048801358789206,0.004510591737926,0.045620862394571]],[[-0.051030278205872,-0.031888194382191,0.019643504172564],[-0.020101886242628,-0.017706379294395,0.043680317699909],[0.02378262206912,0.037039633840322,-0.043260999023914]],[[0.098145082592964,0.056899778544903,0.022784303873777],[0.012118683196604,0.011320515535772,-0.016439056023955],[-0.095479801297188,0.016376389190555,-0.0056925783865154]],[[0.010600444860756,0.019013179466128,-0.057946354150772],[-0.04385307431221,-0.059930007904768,0.01777526922524],[0.033652883023024,-0.055529218167067,0.0055182706564665]],[[-0.00069475523196161,0.034506782889366,0.012583557516336],[-0.023866925388575,0.091597199440002,-0.059897411614656],[-0.014149663038552,0.062247306108475,0.077546060085297]],[[0.083057023584843,-0.027408804744482,-0.048790264874697],[-0.067483492195606,0.046284724026918,0.004501816816628],[0.0083661023527384,0.023848786950111,0.047089219093323]],[[0.078378409147263,0.075874283909798,0.11365635693073],[0.045576483011246,0.043802209198475,0.061696995049715],[0.071057476103306,-0.022325705736876,0.080319851636887]],[[0.11038149893284,0.043704181909561,0.04790036007762],[0.0012668065028265,0.062815122306347,-0.030754018574953],[0.039739739149809,-0.046549253165722,0.035583708435297]],[[-0.021924566477537,-0.077402606606483,0.08865712583065],[-0.050694677978754,-0.062502726912498,0.08448339253664],[-0.0031503480859101,0.025332406163216,0.0089965770021081]],[[0.092067763209343,-0.046005714684725,0.037324711680412],[0.00099903380032629,0.026610907167196,0.055487610399723],[0.021485051140189,0.032610442489386,0.062544152140617]],[[-0.033626608550549,0.078396514058113,-0.016673816367984],[0.12489951401949,0.015458542853594,-0.021342674270272],[0.034816600382328,0.015828017145395,0.018202353268862]],[[-0.021877408027649,-0.052393637597561,-0.039423428475857],[-0.035533126443624,0.0029271435923874,0.047558132559061],[0.011946680955589,-0.025096768513322,0.0079466076567769]],[[-0.077443920075893,-0.066126443445683,0.017249139025807],[-0.023408344015479,0.071849711239338,-0.09466190636158],[-0.083367526531219,-0.0056932508014143,0.026070863008499]],[[0.036241441965103,-0.02539723739028,0.030320860445499],[-0.014136530458927,-0.018127446994185,0.046754617244005],[-0.0085359970107675,0.06142945215106,-0.0017570117488503]],[[0.035799145698547,-0.087089121341705,0.059653505682945],[-0.010446573607624,-0.011935636401176,-0.02446318231523],[-0.026633558794856,0.047778856009245,0.013578096404672]],[[-0.038571238517761,0.04022228717804,0.10648730397224],[-0.051546730101109,-0.076121814548969,-0.015409333631396],[-0.082781031727791,-0.0094399768859148,0.038230065256357]],[[-0.029069196432829,0.055460259318352,0.055916085839272],[-0.051247369498014,-0.048218104988337,-0.023191316053271],[0.083964109420776,0.058036215603352,-0.00096332258544862]],[[-0.0083702988922596,0.0186299495399,0.0031149974092841],[-0.0051071238704026,0.034262135624886,0.032810736447573],[0.061379883438349,0.019314140081406,-0.056667186319828]],[[0.031608879566193,0.036896333098412,0.088039688766003],[0.065475299954414,0.011390456929803,0.016475319862366],[0.021420020610094,0.038344010710716,-0.068601854145527]],[[0.0073921415023506,0.044269286096096,0.082644999027252],[0.026257442310452,0.011948737315834,0.0057341465726495],[-0.072966486215591,-0.0045751053839922,0.069577254354954]],[[0.038854781538248,-0.014210868626833,-0.01034052670002],[-0.025045895949006,-0.1129078567028,0.0083064008504152],[0.043976355344057,-0.03408956900239,0.051669340580702]],[[0.098888136446476,0.056432373821735,0.053560588508844],[-0.0071203634142876,0.008092756383121,0.051454298198223],[0.061785183846951,0.05126877874136,0.022137682884932]],[[0.064488224685192,0.049847926944494,-0.064093127846718],[-0.028371660038829,0.032553508877754,-0.075614996254444],[-0.044982649385929,-0.0027614620048553,-0.017841989174485]],[[0.003650362836197,0.034265041351318,0.03101397678256],[0.040130939334631,-0.011148651130497,0.049845118075609],[0.032490383833647,0.034462086856365,0.033780246973038]],[[-0.049644228070974,-0.041159637272358,-0.035494677722454],[-0.02717861533165,-0.031812008470297,-0.044919971376657],[0.045409511774778,0.088634498417377,0.037660777568817]],[[0.02541964314878,-0.024597071111202,0.032852809876204],[0.005147026386112,0.048519805073738,0.037601113319397],[-0.074606575071812,0.046399176120758,-0.068405672907829]],[[-0.014332316815853,-0.054166480898857,-0.031124072149396],[-0.064672097563744,-0.04901060089469,-0.028895130380988],[-0.0051947385072708,-0.04758720472455,-0.052219782024622]],[[-0.024436570703983,-0.075327664613724,-0.0040020234882832],[0.041333265602589,-0.0075741657055914,0.0060219583101571],[0.026201922446489,0.014216906391084,-0.028239592909813]],[[0.045988660305738,0.063817240297794,0.11100984364748],[0.024352183565497,0.04642179608345,0.082114838063717],[0.084227323532104,0.060540415346622,0.0057077780365944]],[[0.044849287718534,-0.060813438147306,-0.0672592446208],[-0.033298466354609,0.0054707052186131,-0.011917350813746],[0.02048235014081,-0.087531201541424,0.014364554546773]],[[0.055703204125166,0.0045660506002605,0.045308254659176],[-0.0642314478755,0.025629347190261,-0.0010768694337457],[-0.02368644811213,-0.022777853533626,0.0099418880417943]],[[-0.010654381476343,-0.056469582021236,0.0012389306211844],[-0.077510446310043,-0.033093307167292,0.011643624864519],[0.022972911596298,0.034788958728313,-0.010555391199887]],[[0.0065887435339391,-0.019475830718875,-0.022964429110289],[-0.010494347661734,0.04365736618638,0.035224981606007],[0.017215145751834,0.031422708183527,0.0745018273592]],[[-0.0073474254459143,0.064590193331242,-0.016385784372687],[0.055902730673552,0.013769171200693,-0.029432639479637],[0.0749676451087,0.099441558122635,0.011172138154507]],[[0.034057799726725,-0.0054433699697256,0.0032900867518038],[-0.032741643488407,-0.06207375600934,0.022890206426382],[0.090416133403778,0.064890593290329,0.028132017701864]],[[0.0068775406107306,0.1309001147747,0.088261008262634],[0.090813189744949,0.028088072314858,0.02270501293242],[0.01075336150825,0.087245434522629,0.028404206037521]],[[0.0035024986136705,-0.022353133186698,-0.055773083120584],[-0.026671931147575,-0.010992825962603,-0.010911473073065],[-0.01283155195415,-0.024226015433669,-0.083708845078945]],[[0.019008729606867,-0.059171766042709,-0.053868476301432],[-0.021168535575271,-0.08981766551733,-0.0041896007023752],[0.0012314323103055,-0.053589683026075,-0.031298235058784]],[[0.02885309420526,0.015901546925306,-0.034861829131842],[0.065262541174889,0.067091323435307,0.050650231540203],[0.040710646659136,0.038983069360256,-0.02482851035893]],[[0.0072114751674235,0.011700791306794,-0.010906652547419],[-0.0096021052449942,-0.0090405931696296,0.031094241887331],[-0.03748769685626,0.015604089945555,0.02835932187736]],[[-0.067101813852787,-0.014103249646723,0.0092109311372042],[0.061308559030294,-0.092058464884758,0.047017082571983],[0.037826705724001,-0.021819153800607,0.040798798203468]],[[-0.0077052293345332,0.0043659918010235,0.048108410090208],[-0.00031870193197392,-0.013903842307627,-0.014377934858203],[-0.051746163517237,0.008652014657855,-0.0025353841483593]],[[0.13537929952145,-0.003993911202997,0.0086739426478744],[0.11764359474182,-0.07581639289856,0.10440555214882],[0.033592447638512,-0.035068191587925,0.077731154859066]],[[0.025251522660255,-0.054544441401958,-0.038922492414713],[-0.021512614563107,-0.0054127061739564,-0.020271550863981],[-0.02548305131495,-0.046457324177027,-0.02931659668684]],[[-0.029866401106119,-0.046169880777597,-0.025856491178274],[-0.063934363424778,-0.030591951683164,-0.015034794807434],[-0.053916539996862,0.041629213839769,0.020431565120816]],[[0.056543730199337,0.014471845701337,-0.055189333856106],[0.0068165417760611,0.0092327548190951,-0.021998949348927],[0.028211055323482,-0.039615489542484,-0.031064255163074]],[[0.042237918823957,-0.013195076957345,-0.016524851322174],[0.05577178299427,0.057622112333775,-0.0081028947606683],[0.049231264740229,-0.031234851107001,0.020258165895939]],[[-0.000269166106591,0.0072878417558968,-0.013862458989024],[0.090722315013409,0.031762406229973,-0.016672413796186],[-0.070908889174461,0.075456708669662,0.0097240833565593]],[[0.040014911442995,0.022126300260425,0.072861842811108],[0.00048680091276765,-0.010977989062667,-0.061096478253603],[0.020099489018321,0.0099847428500652,0.044769514352083]],[[0.047984983772039,0.04975376650691,0.046308055520058],[0.0053389081731439,0.017257338389754,0.068282596766949],[-0.059539385139942,0.038444768637419,-0.040070317685604]],[[-0.086672477424145,-0.011918403208256,-0.023351835086942],[0.015178315341473,0.030392844229937,0.067560531198978],[-0.10831009596586,-0.037066787481308,-0.051826313138008]],[[0.051160726696253,0.08925037831068,-0.014387425966561],[0.1402700394392,0.12893937528133,0.07678946852684],[-0.053616207093,0.067656263709068,-0.029895860701799]],[[0.040869988501072,-0.052046772092581,0.0094217611476779],[0.084764800965786,-0.020963778719306,0.01476885471493],[0.054687861353159,0.017626874148846,0.060135055333376]],[[0.07451094686985,0.036217477172613,0.086135856807232],[0.062384732067585,-0.0102843279019,0.15333330631256],[0.058028090745211,0.03433034196496,0.021445071324706]],[[0.046217054128647,0.060654170811176,0.0036201775074005],[0.032995488494635,0.041542693972588,-0.0011944007128477],[0.032572850584984,-0.0081552295014262,-0.022966492921114]],[[-0.023470494896173,0.058641027659178,0.05297003313899],[0.069873474538326,-0.075262956321239,0.03486268222332],[0.068077854812145,0.019113838672638,0.042180325835943]],[[0.052339855581522,-0.047656998038292,-0.027180856093764],[-0.042204476892948,0.011301903054118,-0.011175061576068],[-0.12495803833008,-0.056473147124052,0.013306151144207]],[[-0.0043085697107017,-0.021110190078616,-0.030839513987303],[-0.0020367449615151,0.033573862165213,0.050572667270899],[-0.019172720611095,-0.067131265997887,-0.038000606000423]],[[0.042392432689667,-0.022138848900795,-0.025454480201006],[0.020348209887743,0.11371586471796,-0.017847053706646],[0.023617468774319,0.057164516299963,-0.0099788131192327]],[[-0.065834239125252,-0.0095257963985205,-0.04876359924674],[-0.029756331816316,-0.088121704757214,0.042396049946547],[-0.10467923432589,-0.014904007315636,-0.038718488067389]],[[0.029155574738979,0.1265125721693,-0.018432401120663],[-0.03196070715785,0.0016788636567071,-0.032698471099138],[0.024109302088618,0.016333470121026,0.081846982240677]],[[0.0087164249271154,-0.054671619087458,0.060054395347834],[-0.00013341003796086,0.030395157635212,-0.033470638096333],[0.00073244568193331,-0.010997766628861,-0.011812012642622]],[[0.08449973911047,-0.011760137975216,-0.0032038548961282],[0.058091081678867,0.02552780136466,-0.039486519992352],[0.044103518128395,0.029719918966293,0.10180087387562]],[[-0.080890670418739,-0.11900082975626,-0.029476961120963],[0.024157367646694,-0.058687973767519,0.041810780763626],[0.036774639040232,-0.055272959172726,0.038265824317932]],[[0.0468256957829,-0.013077109120786,0.011078484356403],[-0.01297443639487,0.0014545985031873,0.08665257692337],[-0.08790572732687,0.0053270747885108,-0.0060028843581676]],[[0.031232113018632,-0.035541161894798,0.0081596169620752],[-0.046950116753578,-0.11085963994265,-0.019602688029408],[0.015154237858951,-0.079227291047573,0.019644450396299]],[[0.050965093076229,0.012593956664205,-0.048040397465229],[0.069289520382881,0.041490770876408,0.032643012702465],[0.028009722009301,-0.037715766578913,0.054950714111328]],[[0.046394612640142,0.080140493810177,0.032311450690031],[-0.016318425536156,0.034370694309473,-0.031464152038097],[-0.0046693333424628,-0.02619806677103,-0.0067788367159665]],[[0.0076763844117522,-0.10181090980768,-0.051020495593548],[-0.058716338127851,-0.045056603848934,0.050524491816759],[0.0004269864584785,-0.064140781760216,-0.035761080682278]],[[-0.069142855703831,-0.00073724985122681,0.061010789126158],[-0.081314116716385,-0.029341891407967,0.068839505314827],[-0.010767473839223,-0.010554078035057,-0.022654050961137]],[[-0.017049817368388,-0.011322438716888,0.073315173387527],[0.045011844485998,0.012351719662547,0.092706352472305],[0.063537493348122,-0.028797160834074,-0.054604064673185]],[[0.014305721968412,-0.040937189012766,-0.0053384900093079],[-0.01868550106883,0.028619172051549,0.092495262622833],[-0.002342842053622,0.070821821689606,0.028024716302752]],[[0.013452677987516,0.039109468460083,-0.012316799722612],[-0.023683201521635,0.0033869484905154,-0.016946515068412],[0.010415547527373,-0.030201874673367,0.01271443720907]],[[0.00046037277206779,-0.042050808668137,-0.035954628139734],[-0.025053830817342,-0.033070780336857,0.0050192601047456],[0.024220259860158,0.033610295504332,-0.061715468764305]],[[0.0058324281126261,0.032206114381552,0.027655279263854],[-0.026038004085422,0.11426842212677,-0.031857520341873],[-0.067991010844707,0.071177706122398,-0.001995985629037]],[[0.013498166576028,0.0064532514661551,0.0057973666116595],[0.031274922192097,0.05163211748004,-0.020101573318243],[-0.03705932572484,-0.069536849856377,0.026055727154016]],[[0.034824382513762,-0.03792779147625,-0.010211368091404],[0.0050648041069508,0.04076037928462,-0.078361622989178],[-0.075627222657204,-0.068293772637844,-0.049599058926105]],[[0.026886604726315,0.02536890283227,0.022227257490158],[0.0077199069783092,0.02582847699523,-0.0012452283408493],[-0.0007278835400939,0.087101027369499,-0.017952468246222]],[[0.03398210927844,0.016285037621856,0.028012728318572],[-0.018206341192126,0.020228631794453,0.086883127689362],[-0.04457713663578,0.0091745257377625,0.032417815178633]],[[-0.060915559530258,-0.10861228406429,-0.11757458746433],[-0.0041104150004685,-0.04881452023983,0.0040326463058591],[0.030057322233915,0.061004687100649,-0.099395073950291]],[[-0.1302572786808,-0.0036480440758169,-0.069328919053078],[-0.059289883822203,-0.029813062399626,0.0052669211290777],[-0.020530177280307,-0.056606873869896,0.067829921841621]],[[0.053675677627325,0.038721464574337,0.064363613724709],[0.039911299943924,0.02719833701849,0.0029113409109414],[0.02430528588593,0.088959038257599,0.0061023556627333]],[[0.017916487529874,-0.055831018835306,-0.03712398186326],[0.0036276015453041,0.0052458844147623,0.012310761958361],[-0.053748775273561,-0.028930211439729,0.0046604429371655]],[[-0.0023549657780677,-0.029594980180264,0.04171746596694],[0.0084204059094191,0.0069411331787705,-0.02529639005661],[-0.084563948214054,0.010719086974859,0.0030539529398084]],[[0.082148797810078,-0.049826342612505,0.058797359466553],[0.0046166297979653,-0.088269665837288,0.067780926823616],[0.095869928598404,0.039837725460529,0.065280094742775]],[[0.0071216933429241,0.041621264070272,-0.073436498641968],[0.015843447297812,-0.02346864156425,0.0055037755519152],[0.046725049614906,0.06857168674469,-0.029939755797386]],[[-0.037874363362789,-0.019406402483582,0.028887713328004],[-0.0038620380219072,-0.046394791454077,-0.039045635610819],[-0.083917237818241,-0.050323534756899,-0.049828439950943]],[[-0.0057290503755212,-0.03861716017127,0.038191046565771],[-0.016253184527159,-0.01720293238759,-0.086079977452755],[-0.0007191386539489,-0.015650758519769,0.065820053219795]],[[-0.0033585836645216,0.054251052439213,-0.037736643105745],[-0.033946577459574,0.073735594749451,0.038336046040058],[-0.042058456689119,-0.041528210043907,0.073951333761215]],[[0.010793568566442,0.023944584652781,0.041285403072834],[-0.013274703174829,0.036773633211851,0.095976173877716],[-0.016268279403448,-0.011480082757771,-0.08086770772934]],[[0.0020932981278747,-0.038559503853321,-0.057236924767494],[-0.019220411777496,0.026751302182674,-0.081620618700981],[-0.046136673539877,-0.051303457468748,-0.005035855807364]],[[0.078438282012939,0.071286775171757,-0.02873657271266],[0.066206827759743,0.00020816348842345,0.010829685255885],[0.0085783125832677,0.037581700831652,-0.013442225754261]],[[-0.07061704993248,0.029066517949104,-0.09614647179842],[0.0093766460195184,-0.088712550699711,0.0031059694010764],[-0.0012860101414844,0.033759854733944,-0.004736490547657]]],[[[-0.012418986298144,-0.032799392938614,0.003538592485711],[-0.0052015059627593,-0.026408275589347,0.0053724246099591],[-0.051682531833649,0.041394095867872,-0.026938935741782]],[[-0.034329663962126,0.016856418922544,0.0151447057724],[-0.04695638269186,-0.0030259019695222,0.069163553416729],[-0.050804495811462,0.10324609279633,0.041181873530149]],[[0.018606247380376,-0.048288706690073,-0.074968613684177],[0.020302819088101,0.0011757414322346,0.040514193475246],[0.093330264091492,0.10357037931681,0.0067046140320599]],[[0.070887304842472,0.078936904668808,0.068187870085239],[-0.011304141953588,-0.057402394711971,0.014605210162699],[-0.003902078140527,0.011543865315616,-0.022711779922247]],[[0.11054050177336,-0.034806989133358,-0.036952286958694],[-0.080862998962402,-0.031794063746929,0.022046890109777],[0.033752620220184,0.035143420100212,-0.052239291369915]],[[-0.0039688074029982,0.060530796647072,0.018892906606197],[0.010464975610375,-0.039986718446016,0.055272493511438],[-0.027429230511189,-0.013953061774373,0.0021286108531058]],[[-0.011265148408711,0.0045298249460757,0.041273944079876],[0.0094533581286669,0.023880144581199,-0.039836440235376],[0.011945139616728,-0.045423090457916,-0.024079388007522]],[[-0.018914554268122,-0.0062190773896873,0.011695424094796],[0.017180735245347,0.04013605043292,-0.033067338168621],[0.017867416143417,0.051657635718584,0.035434849560261]],[[0.017253449186683,0.055793181061745,-0.083464406430721],[0.04714136198163,-0.050609041005373,-0.022971989586949],[-0.04879204928875,-0.027873342856765,0.034972939640284]],[[0.014883972704411,-0.0099033853039145,0.054205249994993],[0.0033745402470231,-0.03548451140523,0.036001101136208],[0.0369375012815,0.0031892093829811,-0.008229810744524]],[[0.005076352506876,0.030882297083735,0.10791264474392],[-0.021144639700651,0.050067562609911,-0.019921386614442],[0.006361170206219,-0.0084034437313676,-0.029073951765895]],[[0.015407382510602,-0.062641702592373,-0.05383674800396],[-0.12515904009342,-0.047714382410049,0.090036131441593],[0.022330734878778,0.022744568064809,0.037057783454657]],[[-0.036828029900789,0.016983829438686,0.030946183949709],[0.061796329915524,0.054293785244226,0.094716548919678],[0.10714133828878,0.055099241435528,-0.035040680319071]],[[0.10129338502884,-0.0022200741805136,0.043421998620033],[0.019485341385007,0.0021445278543979,0.10034105181694],[-0.034684780985117,-0.051507990807295,-0.03787624835968]],[[0.024060539901257,-0.035037610679865,-0.07293401658535],[0.04938742518425,-0.039868827909231,-0.061663378030062],[0.0039163399487734,0.035273771733046,0.061086989939213]],[[0.070400886237621,-0.0078758960589767,0.03911454975605],[0.15397721529007,0.017930248752236,0.02634503878653],[-0.018920486792922,-0.038420535624027,-0.017950164154172]],[[0.0057687065564096,-0.041167799383402,-0.043800264596939],[0.0062027084641159,-0.0057981824502349,0.038522537797689],[-0.01507571619004,0.056289874017239,0.06848930567503]],[[-0.097937539219856,-0.017762526869774,0.085665047168732],[-0.040409088134766,0.026081580668688,0.0048249596729875],[-0.0079267555847764,-0.053984731435776,-0.017904045060277]],[[0.019734771922231,0.057059358805418,0.063186176121235],[-0.0340367667377,-0.080728739500046,0.021742656826973],[-0.076719164848328,0.015770485624671,0.004766599740833]],[[-0.045313164591789,-0.036497183144093,0.014088436029851],[0.1004575714469,-0.080573819577694,-0.017646882683039],[0.026589248329401,-0.047315198928118,-0.062211684882641]],[[0.052099477499723,0.0061791674233973,0.014377439394593],[0.054790649563074,-0.084830291569233,-0.028961131349206],[-0.054818272590637,0.04708843678236,-0.029493512585759]],[[0.11934155970812,0.045053701847792,0.045894958078861],[0.026223637163639,0.020706696435809,-0.027132203802466],[-0.034178636968136,0.063000880181789,0.077535197138786]],[[0.014758788980544,-0.04699569195509,0.011822229251266],[0.02488992549479,0.094904087483883,0.037078630179167],[-0.15915665030479,-0.076295033097267,-0.04746625572443]],[[0.043045181781054,0.015857828781009,0.026042619720101],[-0.087949566543102,-0.083947099745274,-0.011892064474523],[-0.021574864163995,-0.033399533480406,-0.065499238669872]],[[-0.060507945716381,0.033337417989969,-0.22418287396431],[-0.024020079523325,-0.028910623863339,0.047242477536201],[0.027884313836694,-0.080247513949871,-0.014188723638654]],[[-0.023531688377261,0.056185260415077,-0.038774702697992],[-0.02188503742218,0.0097921891137958,0.019705193117261],[-0.026580650359392,-0.010753395967185,-0.057823307812214]],[[0.028813075274229,0.036922045052052,0.028240812942386],[-0.065854355692863,0.073043689131737,0.03441321477294],[-0.0023055570200086,-0.035562466830015,-0.027051636949182]],[[-0.09096521884203,0.06218895316124,0.048725701868534],[-0.069963917136192,-0.025985434651375,0.018232353031635],[0.032498557120562,0.045237638056278,-0.0024467089679092]],[[-0.035675249993801,0.089595571160316,-0.040853466838598],[-0.0080978693440557,-0.017565688118339,-0.028042152523994],[-0.00017095083603635,0.06827736645937,0.077246859669685]],[[-0.052396446466446,0.029511742293835,0.048555191606283],[-0.048267919570208,-0.078687340021133,-0.10348916053772],[-0.017133709043264,-0.034384302794933,-0.030086221173406]],[[-0.064687192440033,0.023796180263162,0.013012879528105],[0.006690586451441,-0.02637092769146,0.030295973643661],[-0.01821949146688,-0.036486875265837,-0.033939853310585]],[[-0.031505446881056,0.084728203713894,-0.0018227945547551],[-0.037998281419277,0.0083007700741291,0.014671164564788],[-0.038906373083591,0.034354478120804,0.021321251988411]],[[0.0183139834553,0.034267611801624,0.05303044244647],[0.13594497740269,-0.022002033889294,0.042458195239305],[0.094788178801537,0.014259249903262,0.029690815135837]],[[-0.043074745684862,-0.060062650591135,0.071966096758842],[0.023138681426644,-0.017731642350554,-0.041409004479647],[0.061697859317064,0.05529497936368,0.034913904964924]],[[0.033538360148668,-0.03300291672349,-0.013105853460729],[0.014392221346498,0.0058706700801849,0.028814489021897],[-0.001546154730022,-0.019266063347459,-0.013170629739761]],[[0.04969384893775,0.015380509197712,0.051556162536144],[0.099669508635998,-0.056333895772696,0.0052930796518922],[0.02090041898191,-0.025595910847187,0.0064507708884776]],[[0.11665903031826,-0.060141362249851,-0.006379147991538],[-0.020383847877383,-0.10412418097258,-0.017830930650234],[0.11728870123625,-0.035080831497908,0.065884687006474]],[[-0.00025839396403171,0.11523585766554,-0.051220268011093],[-0.041814275085926,0.071086451411247,-0.031276389956474],[-0.0020157974213362,-0.011152303777635,-0.013889838941395]],[[0.00014413768076338,0.029210805892944,-0.0398367382586],[0.0177699085325,-0.010697405785322,-0.017307374626398],[-0.10386687517166,0.066779933869839,-0.022101787850261]],[[0.015263275243342,-0.037826895713806,-0.0051974155940115],[0.0054728924296796,-0.010705044493079,0.057210419327021],[0.064398713409901,0.044609379023314,0.0050007244572043]],[[-0.052681732922792,-0.020651137456298,-0.0045892465859652],[0.043432004749775,-0.025094756856561,-0.017833156511188],[-0.042325384914875,0.018707413226366,0.038711652159691]],[[0.0094049610197544,-0.016706705093384,0.029975097626448],[-0.040162410587072,0.074820548295975,0.066833220422268],[-0.0246542673558,-0.026699353009462,0.01754554361105]],[[0.11134621500969,0.050194650888443,-0.027443105354905],[-0.011442792601883,0.028182564303279,0.040505561977625],[0.10263955593109,-0.06495562940836,-0.045180134475231]],[[-0.052401214838028,-0.01794938929379,0.020208498463035],[-0.011263708584011,-0.028175057843328,0.035290207713842],[-0.033442132174969,0.011509431526065,-4.0338643884752e-05]],[[-0.0073803775012493,-0.027522316202521,0.093317866325378],[0.015289059840143,0.0022332039661705,-0.051832035183907],[-0.083115369081497,-0.039689656347036,-0.045210763812065]],[[0.0046267169527709,0.0076326243579388,-0.070647060871124],[0.011728886514902,-0.028743490576744,0.041825223714113],[0.054189898073673,0.0038051393348724,0.02581949532032]],[[-0.045509051531553,0.062518708407879,0.031170254573226],[-0.048039186745882,-0.057217851281166,0.031709033995867],[-0.049021910876036,-0.038641098886728,0.026980189606547]],[[0.0087133767083287,0.023449957370758,-0.0033236497547477],[0.02821890451014,-0.00026716574211605,-0.0043924110941589],[0.015732493251562,-0.02308020927012,0.038662154227495]],[[-0.037055358290672,-0.026294151321054,0.0002096583484672],[-0.025688597932458,0.048472303897142,-0.018524391576648],[-0.019902786239982,-0.061572302132845,-0.013899469748139]],[[0.0026219447609037,-0.027919648215175,-0.014582457952201],[-0.077427200973034,0.047295056283474,-0.012478327378631],[0.046900060027838,-0.069860950112343,-0.030766496434808]],[[-0.069542087614536,0.075768254697323,0.0126236313954],[-0.025523563846946,0.02925824560225,0.063528165221214],[-0.021263018250465,0.026262190192938,-0.0038777582813054]],[[0.047371163964272,0.045387540012598,-0.037782117724419],[0.03378252312541,-0.029614279046655,-0.032948084175587],[-0.043602038174868,-0.021790966391563,-0.021706445142627]],[[-0.013563397340477,-0.024632152169943,-0.083459042012691],[-0.094485580921173,-0.072170361876488,-0.069524563848972],[-0.057177260518074,0.012767649255693,-0.028025612235069]],[[0.058688476681709,0.058162819594145,-0.0060349311679602],[-0.014650739729404,0.033304408192635,0.035776007920504],[0.018873326480389,0.023127268999815,0.04991414770484]],[[-0.0054065580479801,0.04597806930542,0.018318509683013],[0.00083235744386911,0.0050521758385003,0.032880555838346],[0.057799030095339,-0.02295527793467,-0.048971302807331]],[[0.042413912713528,0.0085751302540302,-0.012953997589648],[-0.020976025611162,-0.048056218773127,-0.016008168458939],[-0.021623438224196,-0.083226352930069,-0.11376194655895]],[[0.11442139744759,0.079145766794682,0.030337687581778],[-0.044757880270481,0.043281596153975,0.081818386912346],[0.014574537985027,0.033192258328199,0.006582039874047]],[[0.026780780404806,-0.040506262332201,0.098434396088123],[0.013960638083518,-0.045528784394264,-0.018623514100909],[-0.0058108489029109,0.066906712949276,0.03882560133934]],[[0.026559509336948,0.063817836344242,0.047245897352695],[0.13249295949936,0.0046163271181285,0.11531761288643],[0.090365901589394,0.073840089142323,-0.021462447941303]],[[-0.11731661856174,-0.011785215698183,0.016158938407898],[0.10904828459024,-0.051706232130527,0.1079983189702],[0.015913819894195,0.04517163708806,0.00034621517988853]],[[-0.023417124524713,0.0049905255436897,-0.068826697766781],[-0.013170505873859,-0.018532574176788,0.0064339400269091],[-0.036328844726086,-0.064773343503475,-0.046717394143343]],[[0.056627124547958,-0.069422289729118,-0.01272108219564],[0.040306933224201,0.036887682974339,0.00019020971376449],[-0.073747642338276,-0.01231812313199,0.0083637358620763]],[[-0.050770245492458,-0.021182732656598,0.022971395403147],[-0.006473972927779,0.056689195334911,0.04552723094821],[0.043097667396069,-0.027076907455921,0.0051770126447082]],[[0.0519984588027,-0.041903141885996,-0.026013122871518],[0.043301437050104,-0.013307086192071,-0.030913347378373],[0.010653667151928,0.026348860934377,-0.05335059016943]],[[0.019886309280992,0.020789010450244,-0.03665005415678],[0.041232358664274,0.015671955421567,-0.0028997552581131],[-0.025293324142694,0.026561517268419,-0.023996736854315]],[[0.00010497531911824,-0.065438240766525,0.068530105054379],[0.09886185079813,0.06471136957407,0.16590224206448],[0.056810110807419,-0.079347193241119,0.088088542222977]],[[-0.033392086625099,-0.032756812870502,0.07993596047163],[-0.0078178690746427,0.084513485431671,0.078608855605125],[0.03839822486043,0.010369983501732,0.043110534548759]],[[0.024808583781123,0.1062017083168,-0.026244657114148],[0.11424628645182,0.091346725821495,0.041154514998198],[0.015596894547343,-0.030031513422728,-0.044566996395588]],[[0.0046387915499508,0.037591487169266,0.023238658905029],[0.048802878707647,0.020921619608998,0.00085290765855461],[-0.01025227829814,0.047930039465427,0.073678120970726]],[[0.027089536190033,-0.0058827945031226,0.021695554256439],[0.05896120518446,0.025341518223286,-0.051610354334116],[0.054339095950127,0.14752523601055,0.011002887971699]],[[-0.078716337680817,0.089535795152187,0.025823762640357],[0.053863737732172,0.07562904804945,0.064956456422806],[-0.0025263768620789,-0.01454421505332,0.001005231635645]],[[0.074011854827404,-0.033530227839947,-0.02822870016098],[-0.035606652498245,0.0075636608526111,-0.0050369850359857],[-0.060978978872299,-0.033612553030252,0.060044184327126]],[[-0.066250994801521,0.047344628721476,0.014189401641488],[-0.0093588223680854,0.011227861046791,-0.013797430321574],[0.052383366972208,-0.043439868837595,0.051702477037907]],[[-0.050255987793207,-0.064447142183781,-0.0031640196684748],[-0.013328793458641,0.0092780878767371,0.0077019589953125],[0.089218087494373,-0.039510652422905,0.067331425845623]],[[0.065742060542107,0.043512709438801,-0.039817724376917],[-0.055964820086956,-0.089735969901085,-0.019994145259261],[0.067008174955845,0.086808905005455,-0.02399224229157]],[[0.012982200831175,-0.027873439714313,0.0039170193485916],[-0.0052393712103367,0.047283601015806,-0.040507435798645],[-0.0025919997133315,0.0043900930322707,0.04434160143137]],[[0.043846771121025,0.056933049112558,-0.0287099853158],[-0.0039137336425483,-0.052845843136311,0.042487312108278],[0.011694064363837,0.088293604552746,-0.0013078415067866]],[[0.021420322358608,0.10224574804306,-0.0080599738284945],[0.034862361848354,0.016854997724295,-0.023468950763345],[0.024194305762649,0.043100155889988,-0.027666768059134]],[[0.055423896759748,-0.047920729964972,0.043666373938322],[0.035471480339766,-0.037897661328316,0.0033592947293073],[0.025849048048258,0.068987309932709,0.071628458797932]],[[-0.022011484950781,-0.029479810968041,-0.0034184129908681],[0.0065848976373672,0.0011840206570923,-0.1430452466011],[-0.029747437685728,0.057677492499352,0.02545172534883]],[[-0.036022156476974,0.017718300223351,-0.061468712985516],[0.12172496318817,0.053074091672897,0.0027681197971106],[0.011580081656575,0.018445426598191,-0.028496397659183]],[[0.024092279374599,0.0081557603552938,0.12683080136776],[0.022478738799691,0.06793837249279,0.065062664449215],[0.027395825833082,0.044375255703926,0.040012329816818]],[[-0.086671747267246,0.026992361992598,0.016698965802789],[-0.016135219484568,-0.014953166246414,-2.9223896490294e-05],[-0.086658880114555,0.0071476344019175,0.034938376396894]],[[-0.00055884313769639,0.029401432722807,0.044154733419418],[0.10300697386265,-0.017667263746262,0.13066025078297],[0.075564116239548,0.014717543497682,-0.019468270242214]],[[0.035637650638819,0.040369603782892,-0.020411688834429],[-0.032940369099379,0.032999597489834,0.025711372494698],[-0.036714617162943,-0.063306748867035,0.0083447052165866]],[[0.048203062266111,-0.016333859413862,0.03260700404644],[0.0033533808309585,0.040023192763329,-0.0063281329348683],[0.039452839642763,-0.035496432334185,-0.027831746265292]],[[0.04246836528182,-0.00027994491392747,-0.02021929807961],[0.0038485266268253,0.05138373747468,0.056358724832535],[0.020737919956446,0.056028064340353,-0.060260940343142]],[[-0.043721780180931,-0.040678162127733,0.041507359594107],[-0.023020310327411,0.072567343711853,0.015439891256392],[0.022570237517357,-0.058285523205996,-0.006700599566102]],[[0.026747405529022,-0.0020224987529218,0.053675297647715],[-0.026863243430853,-0.018207054585218,-0.021448517218232],[-0.0039593135006726,0.040404621511698,-0.0084592010825872]],[[-0.0046435804106295,0.012541890144348,0.083356440067291],[0.064273908734322,0.029264720156789,-0.033034905791283],[0.030478803440928,0.065717779099941,0.059420511126518]],[[0.0034142786171287,-0.024441776797175,0.016803614795208],[0.053550414741039,0.082555413246155,0.070997752249241],[0.067038998007774,0.042771801352501,0.0019862642511725]],[[0.037554580718279,0.02774347551167,-0.058047957718372],[-0.029514426365495,-0.06781429797411,0.06562028080225],[0.023870266973972,-0.00026149084442295,0.040722917765379]],[[0.066110789775848,0.069981649518013,0.042968116700649],[-0.031745009124279,-0.054374430328608,0.0084972912445664],[-0.04668303206563,-0.089552998542786,0.048034410923719]],[[0.039887394756079,0.044758047908545,0.082970082759857],[0.076423607766628,0.034208346158266,-0.10769755393267],[0.048036549240351,0.057031694799662,0.09509651362896]],[[-0.045621898025274,-0.061340264976025,-0.0028270864859223],[-0.026812193915248,-0.060759946703911,0.019880061969161],[-0.063116461038589,-0.096580624580383,-0.030160998925567]],[[0.036630567163229,0.047435894608498,-0.050880208611488],[0.025759886950254,0.074616998434067,-0.018232235684991],[0.0219412073493,0.12541253864765,0.047346167266369]],[[-0.027145594358444,-0.060628432780504,0.066023334860802],[0.060931354761124,-0.015083136968315,-0.021438142284751],[0.070627816021442,0.014092759229243,-0.013186878524721]],[[0.055362064391375,0.067288771271706,0.036744587123394],[-0.0048133856616914,0.054610934108496,-0.0085023855790496],[0.031803946942091,-0.0038617914542556,0.053437240421772]],[[-0.033217329531908,0.024546222761273,-0.05211803689599],[-0.017428072169423,0.07974524050951,-0.088716097176075],[0.091177850961685,0.10525973141193,-0.015007322654128]],[[-0.0078116236254573,0.012160581536591,0.0038451291620731],[0.020038526505232,0.043312676250935,0.073690041899681],[0.011424641124904,0.062002755701542,-0.036719236522913]],[[-0.015738422051072,7.2670736699365e-06,-0.027093136683106],[-0.075332254171371,0.024094810709357,-0.053041964769363],[0.022836351767182,-0.044912178069353,0.023255979642272]],[[0.0065540224313736,0.054462745785713,0.0069348574616015],[-0.029474996030331,0.021436918526888,-0.01307366695255],[0.12493159621954,0.04092575982213,-0.017515808343887]],[[0.033410429954529,0.085075087845325,-0.0015013307565823],[-0.0055671557784081,0.038050621747971,0.050543606281281],[0.013890378177166,0.0011299282778054,-0.00047915725735947]],[[-0.023830655962229,-0.088712081313133,-0.0072069549933076],[0.054268430918455,-0.011902340687811,-0.015702899545431],[0.060398895293474,0.032512914389372,-0.011138620786369]],[[0.019339632242918,-0.028755821287632,0.034496188163757],[-0.1240598410368,-0.021749790757895,-0.083793826401234],[0.043945152312517,0.039246674627066,0.080309368669987]],[[-0.063078865408897,0.06430322676897,-0.099553160369396],[0.065643206238747,-0.0092894872650504,0.023211603984237],[-0.055116042494774,0.044602334499359,0.040261723101139]],[[0.02847989089787,-0.028715321794152,0.030436171218753],[0.0049883215688169,0.009411864914,0.03609161823988],[-0.0064570042304695,0.0030012403149158,0.0062828715890646]],[[0.047126062214375,-0.064148604869843,0.030061507597566],[-0.021450310945511,0.023744851350784,-0.0019487870158628],[-0.044402398169041,-0.086340099573135,0.0010271404171363]],[[0.025821682065725,-0.045278038829565,-0.0050488659180701],[-0.0027180996257812,0.0089536858722568,-0.026198875159025],[-0.0074266041629016,-0.0068747377954423,-0.038036987185478]],[[0.096079871058464,0.063557252287865,-0.011808645911515],[0.0280786678195,-0.020656056702137,0.051007300615311],[0.02980425581336,0.01452018506825,-0.0089231003075838]],[[-0.008415381424129,0.018199833109975,0.0068649756722152],[0.027864558622241,-0.026725500822067,-0.035034414380789],[-0.0007608201703988,-0.034815937280655,0.025796523317695]],[[-0.036874383687973,-0.026098612695932,-0.0592504106462],[-0.056736100465059,-0.047133103013039,0.0027603397611529],[-0.051235664635897,-0.1578516960144,0.032479509711266]],[[-0.062764540314674,-0.10216514766216,0.027768928557634],[0.065286733210087,-0.010346035473049,0.01918469183147],[0.010656080208719,0.09750959277153,0.058385260403156]],[[-0.04463042318821,0.1105398312211,-0.024053456261754],[0.034952219575644,-0.011807180941105,-0.016988340765238],[0.072377756237984,0.035050868988037,0.045109167695045]],[[-0.0221311673522,-0.024553660303354,0.018771380186081],[-0.008450354449451,-0.0046119489707053,-0.044619392603636],[0.05695366859436,0.019416630268097,-0.026702798902988]],[[0.014077345840633,0.0030229059047997,0.034467939287424],[0.010270496830344,0.022139459848404,-0.066358678042889],[-0.10464942455292,-0.012795444577932,-0.031232437118888]],[[0.017148423939943,0.029249927029014,0.11846855282784],[-0.0077912346459925,-0.00039719717460684,0.077761113643646],[0.041418023407459,0.045497719198465,0.017884735018015]],[[-0.050709325820208,-0.10150323063135,-0.0032306611537933],[0.0078313564881682,-0.1053174212575,-0.039131119847298],[0.031878802925348,0.0053402408957481,0.025589622557163]],[[-0.038383040577173,0.031494054943323,-0.050024267286062],[0.053233433514833,-0.10840422660112,-0.098798640072346],[-0.068582683801651,0.047701075673103,0.0031683391425759]],[[0.25105133652687,0.097881250083447,0.011407513171434],[0.12519207596779,0.055615216493607,0.098592795431614],[-0.087579995393753,0.019045751541853,0.065895691514015]],[[-0.068638026714325,-0.059448037296534,0.01903099194169],[0.025139702484012,0.011880445294082,0.049661096185446],[-0.040969103574753,0.054144091904163,0.019150678068399]],[[0.020830973982811,-0.062842048704624,-0.011331190355122],[-0.025443768128753,-0.029384799301624,-0.0035556766670197],[-0.079519674181938,0.031114656478167,-0.0070497905835509]],[[-0.075896166265011,-0.0091068632900715,-0.010904518887401],[-0.00097487517632544,0.011470871977508,-0.046960439532995],[-0.026014180853963,-0.040773674845695,0.018393093720078]],[[0.040736969560385,0.022388042882085,0.019629618152976],[-0.060263562947512,0.083182215690613,-0.0031621812377125],[0.049184083938599,0.024624658748507,0.031856305897236]],[[0.033286586403847,0.0098641254007816,0.048436503857374],[0.04551861807704,0.020862437784672,0.014273305423558],[-0.014431087300181,0.0174152366817,-0.053149405866861]],[[-0.052734699100256,-0.089377783238888,-0.036950867623091],[0.036225184798241,-0.028638223186135,-0.022794492542744],[-0.024876056239009,0.02440377138555,-0.015000910498202]],[[0.099189519882202,0.035194247961044,0.08702552318573],[-0.021939733996987,0.020343331620097,0.045515298843384],[-0.048201125115156,-0.007897799834609,0.035499967634678]],[[0.10621929168701,0.014226998202503,0.011403792537749],[-0.013042086735368,0.041901417076588,0.022398959845304],[-0.00084191258065403,0.09283172339201,-0.03470915555954]]],[[[-0.045381754636765,0.046307850629091,0.0068729324266315],[-0.0011672757100314,0.014838254079223,-0.076811857521534],[-0.10214842110872,0.0075622987933457,-0.052346959710121]],[[-0.0047760275192559,-0.012459017336369,0.049463272094727],[-0.015820767730474,0.0065526650287211,-0.012248105369508],[0.096746906638145,-0.047078419476748,-0.034527137875557]],[[-0.030956968665123,0.0001399783504894,0.061258524656296],[0.047884479165077,0.068274296820164,-0.00035658231354319],[-0.037048641592264,0.02504432760179,-0.03882147371769]],[[-0.00042406682041474,0.027697457000613,-0.012251423671842],[-0.07488364726305,-0.076700255274773,-0.033940341323614],[-0.031613670289516,0.0018669597338885,-0.023308552801609]],[[-0.088282942771912,0.023419748991728,0.032475780695677],[-0.023444650694728,0.0057458095252514,-0.016141563653946],[-0.004030856769532,-0.080557525157928,0.041620537638664]],[[-0.085409641265869,-0.0049272095784545,0.016124764457345],[-0.027812901884317,-0.08944184333086,0.0082773389294744],[-0.050889257341623,-0.1027863919735,-0.083698004484177]],[[0.026946384459734,-0.0037192138843238,0.0031624410767108],[0.023626945912838,0.044736463576555,0.042939867824316],[-0.036618880927563,-0.022559577599168,-0.041902773082256]],[[-0.048896111547947,-0.014443254098296,0.066898420453072],[-0.081925816833973,-0.010568796657026,-0.040534451603889],[-0.031467776745558,0.031528364866972,0.032756980508566]],[[-0.015510967932642,0.03776566311717,0.0066440575756133],[0.003464592853561,-0.086936824023724,0.068651087582111],[-0.0071485303342342,0.052318759262562,-0.00051924696890637]],[[-0.033210825175047,0.018563529476523,0.01068845950067],[0.023306369781494,0.071262404322624,0.040211342275143],[0.015098616480827,0.0019138130592182,-0.034751616418362]],[[-0.0050764982588589,-0.006452864035964,0.005085832439363],[-0.039561491459608,-0.0054132142104208,0.020932633429766],[-0.043381325900555,-0.027381239458919,0.018816810101271]],[[-0.016354421153665,0.012560200877488,0.026170555502176],[-0.046273920685053,-0.085848785936832,0.005445403046906],[-0.034895349293947,0.0037502651102841,-0.00028403347823769]],[[0.011300893500447,-0.060278989374638,0.055490758270025],[-0.022758431732655,0.012952373363078,-0.0084590464830399],[0.031650375574827,-0.068886898458004,0.020225238054991]],[[0.0098514771088958,0.023895366117358,0.030176848173141],[0.036213885992765,0.029459921643138,-0.067835532128811],[-0.01901519112289,0.044474329799414,0.031977288424969]],[[-0.051119334995747,-0.010381392203271,-0.015008853748441],[-0.019625579938293,0.0089699570089579,-0.048689849674702],[0.01081832498312,-0.074734099209309,0.0040024807676673]],[[0.014260340481997,-0.0066895135678351,0.077349722385406],[0.048993058502674,-0.061765588819981,0.019390696659684],[0.026581512764096,0.058987908065319,0.031995724886656]],[[-0.024354880675673,-0.013233420439065,0.025317337363958],[0.00015836782404222,-0.080473624169827,-0.041166707873344],[-0.0066841868683696,0.10061921924353,-0.0022890181280673]],[[0.039310269057751,0.05620513856411,-0.013691920787096],[-0.031590580940247,-0.052775759249926,0.0052915005944669],[-0.076354652643204,0.033320091664791,0.014966543763876]],[[-0.037310928106308,0.0047844997607172,-0.025005588307977],[-0.094444274902344,-0.0018863558070734,-0.05180187523365],[-0.039268549531698,0.0073647946119308,-0.013593546114862]],[[0.0094945784658194,-0.027236776426435,-0.061311595141888],[0.027831971645355,0.048667453229427,0.043117005378008],[0.027917977422476,0.0041657323017716,0.019164994359016]],[[0.027314074337482,0.054528385400772,0.077961109578609],[0.053784724324942,0.021658943966031,-0.019146520644426],[-0.00071443023625761,0.013747226446867,0.079954020678997]],[[0.012799910269678,0.070592522621155,-0.1046848744154],[0.034678913652897,0.022672226652503,-0.0094467625021935],[0.01853914372623,0.046604577451944,0.11097012460232]],[[0.010103620588779,-0.0071760891005397,0.00633325567469],[-0.071764446794987,-0.066805839538574,-0.032703772187233],[0.02341883815825,0.01217366848141,0.035860996693373]],[[0.05475091189146,-0.018547881394625,0.070758871734142],[0.026337135583162,-0.0055221077054739,-0.042817130684853],[0.077097743749619,0.00095394777599722,-0.013025429099798]],[[0.035537075251341,-0.0029180983547121,-0.024039538577199],[0.08849773555994,0.030267808586359,-0.0075085172429681],[0.021831521764398,-0.051121298223734,0.048557374626398]],[[-0.015915544703603,0.060944743454456,-0.025258783251047],[-0.005839173682034,-0.064115174114704,0.019935589283705],[0.058917433023453,0.009027561172843,-0.035057831555605]],[[0.06924332678318,-0.044790357351303,-0.039092507213354],[0.031111827120185,-0.018025996163487,0.1407663077116],[0.013885576277971,0.041867848485708,0.01186525542289]],[[-0.0032514790073037,0.056323189288378,-0.028481418266892],[-0.012605150230229,0.001629636855796,-0.040581077337265],[-0.012105263769627,0.048328716307878,-0.012805938720703]],[[-0.022745875641704,-0.025263538584113,0.00816760212183],[0.040068447589874,0.0039694523438811,0.0035392455756664],[0.04181420430541,0.013159170746803,-0.01451470144093]],[[0.080127470195293,0.010749433189631,-0.020831856876612],[-0.0040173954330385,-0.052914340049028,0.02490103431046],[-0.011914679780602,0.081386014819145,0.059669349342585]],[[0.030933886766434,-0.032099839299917,-0.039276756346226],[0.06033556163311,-0.015574571676552,-0.0071717910468578],[-0.006889583542943,-0.047139137983322,0.0084861451759934]],[[0.048483427613974,-0.013029799796641,0.007328849285841],[-0.019055977463722,0.042382765561342,-0.014193798415363],[0.024748077616096,-0.093815825879574,0.079227887094021]],[[-0.064054898917675,-0.074917420744896,0.0038113719783723],[-0.0063954489305615,-0.023677941411734,-0.046861313283443],[-0.03380586206913,0.029566647484899,0.032594949007034]],[[0.064736351370811,0.026176312938333,0.067434348165989],[-0.029065739363432,0.072597168385983,-0.0052558640018106],[0.014755014330149,-0.098744280636311,0.049575965851545]],[[0.1170978397131,0.032118301838636,-0.015665527433157],[-0.01093593146652,-0.015682453289628,0.011141212657094],[-0.004025780595839,-0.055212818086147,0.022325679659843]],[[0.0054330779239535,-0.047189563512802,0.046803079545498],[0.014393229968846,0.050601493567228,-0.062855914235115],[-0.061152461916208,0.035373285412788,0.059123553335667]],[[0.035086404532194,0.0061355507932603,-0.027432296425104],[0.036468174308538,-0.052024900913239,-0.03386327624321],[0.076759368181229,-0.050824116915464,-0.017151778563857]],[[-0.002650469308719,-0.049990214407444,-0.0050181490369141],[0.074659183621407,-0.013681896030903,-0.0073555409908295],[-0.024562167003751,0.017822431400418,-0.035887081176043]],[[-0.03986881673336,0.015797974541783,0.008758096024394],[0.051726419478655,0.052667658776045,-0.0031968900002539],[0.046848766505718,-0.055123671889305,-0.026557164266706]],[[0.0015467588091269,-0.06965322047472,0.017211716622114],[0.040416851639748,-0.033064052462578,0.021983796730638],[-0.014459763653576,-0.036266785115004,0.065625578165054]],[[-0.014027822762728,-0.0092565175145864,0.058999042958021],[0.013016643933952,-0.033791594207287,0.019545590505004],[0.017209906131029,-0.03943920135498,-0.015128045342863]],[[-0.052844859659672,-9.8266020359006e-05,-0.012848492711782],[-0.027915293350816,-0.013457677327096,-0.0041689677163959],[0.07374282926321,0.068507254123688,0.056863270699978]],[[-0.022156670689583,0.023027405142784,-0.011719577945769],[0.026143096387386,0.0021383066195995,0.052243627607822],[0.037991899996996,-0.078130051493645,-0.012242550961673]],[[-0.0018454730743542,0.025668386369944,-0.045191913843155],[-0.016984425485134,-0.071522161364555,-0.051189739257097],[-0.040252264589071,0.025617564097047,-0.016840552911162]],[[-0.049382969737053,0.067415244877338,0.0054430775344372],[-0.0049326717853546,0.051860459148884,-0.043516777455807],[-0.057535193860531,0.04821927472949,0.02764643356204]],[[0.029181979596615,0.051311809569597,0.004896366968751],[0.0019330091308802,0.02296756953001,-0.02713468670845],[0.03220634162426,-0.0050933929160237,0.030997056514025]],[[0.051800169050694,-0.022534077987075,-0.016600163653493],[0.014189396053553,-0.00019063171930611,0.0097198281437159],[0.043296758085489,0.061288185417652,0.027171492576599]],[[0.042247116565704,-0.085707560181618,0.02231508679688],[0.045026488602161,-0.066138871014118,-0.017728237435222],[0.073755912482738,-0.011217541061342,-0.024762695655227]],[[0.058910112828016,-0.012274275533855,-0.0132104633376],[0.015177768655121,-0.0023815222084522,0.032050423324108],[0.020412791520357,-0.039672780781984,-0.0096828434616327]],[[-0.020845457911491,0.017312359064817,-0.033236999064684],[0.018645266070962,-0.04355901107192,-0.0028441222384572],[0.024337621405721,-0.030989099293947,-0.0040392633527517]],[[0.034373793751001,0.062536984682083,-0.019472675397992],[0.053234167397022,0.0057542803697288,0.083441153168678],[-0.046145338565111,0.030743751674891,-0.072902664542198]],[[0.00091265072114766,0.14321209490299,-0.054408099502325],[-0.067709878087044,0.0052865301258862,-0.019859140738845],[0.017038336023688,-0.0069571556523442,-0.074997946619987]],[[0.01271363068372,-0.070863611996174,-0.040475986897945],[0.048394318670034,-0.0417510420084,-0.014451232738793],[0.018160266801715,0.021780665963888,0.035798877477646]],[[0.057318344712257,0.046084295958281,-0.070808120071888],[0.0094652026891708,-0.017281593754888,-0.0027632669080049],[0.023699527606368,0.026551196351647,0.06784188747406]],[[0.0204844083637,-0.05645015090704,0.016003618016839],[0.049023523926735,-0.053084746003151,-0.0958536490798],[-0.068979069590569,0.022901045158505,-0.057681359350681]],[[0.0099159684032202,0.022447740659118,0.017957044765353],[0.039370898157358,0.027924854308367,-0.025048606097698],[-0.023132719099522,-0.049397204071283,0.0014972866047174]],[[0.013144100084901,-0.0040690512396395,-0.0097483452409506],[0.0064916489645839,0.00014026706048753,0.010446542873979],[0.0038853001315147,0.058196894824505,-0.060646176338196]],[[0.026263264939189,0.070913635194302,-0.033560458570719],[0.0053509175777435,-0.024667792022228,0.0060912449844182],[-0.016269609332085,0.028896767646074,-0.0096446201205254]],[[-0.086183689534664,0.035319488495588,-0.0086898738518357],[-0.01656430400908,0.030956923961639,-0.016036856919527],[-0.014099342748523,-0.0052303592674434,0.0090622846037149]],[[0.038141533732414,0.016454441472888,0.010596767067909],[0.043103273957968,-0.012649420648813,-0.020905671641231],[-0.043217297643423,0.054271705448627,-0.082929603755474]],[[-0.0084593156352639,0.0017002436798066,-0.022812517359853],[-0.010200425051153,0.028163373470306,0.023308604955673],[-0.010306688956916,0.017359346151352,0.060970287770033]],[[0.026647595688701,-0.0049906284548342,-0.074795268476009],[-0.0053040813654661,-0.045062318444252,0.02253832295537],[0.0046620527282357,0.010291235521436,-0.0058859740383923]],[[0.062105096876621,0.0028270736802369,-0.036841195076704],[-0.014855246990919,-0.0019867504015565,0.034302350133657],[0.03967447206378,-0.039537739008665,0.016169991344213]],[[0.05247300863266,-0.045469850301743,-0.074871838092804],[0.032461494207382,-0.025952275842428,0.00014719231694471],[0.047976598143578,0.0033031178172678,-0.009037546813488]],[[0.012758302502334,0.0098208375275135,-0.030369641259313],[-0.050437092781067,0.028226483613253,-0.041105333715677],[-0.0068986695259809,0.033730793744326,-0.079023212194443]],[[0.0098368683829904,-0.06712993979454,-0.016631437465549],[-0.0055601983331144,0.0048059592954814,0.0024754500482231],[0.03643237426877,-0.012434374541044,-0.050217870622873]],[[0.038176476955414,0.0078350882977247,-0.041062127798796],[-0.03981551527977,-0.0054887165315449,0.058159206062555],[0.046763528138399,-0.023098159581423,0.0010680158156902]],[[-0.021972380578518,-0.0033020819537342,0.034960128366947],[0.036385890096426,0.015683500096202,-0.010591194033623],[0.022231802344322,0.037205874919891,0.017361899837852]],[[-0.044903606176376,-0.026008008047938,-0.024202037602663],[-0.014117072336376,0.019378148019314,0.017538340762258],[0.058406215161085,0.007085558027029,0.11537531763315]],[[-0.0017334744334221,0.081515997648239,-0.027236564084888],[-0.0059154513292015,0.0081320656463504,0.022291285917163],[0.10274356603622,-0.0038446534890682,0.0016274040099233]],[[-0.055208671838045,0.0023350375704467,-0.032302133738995],[0.0078614540398121,-0.038336519151926,-0.011341058649123],[0.0082296682521701,0.060362804681063,0.029859524220228]],[[0.083803921937943,-0.057153835892677,-0.043722674250603],[0.034838058054447,0.0086947549134493,0.1081850156188],[0.023224804550409,-0.053447403013706,-0.019260384142399]],[[-0.069713607430458,0.054705150425434,0.015781419351697],[0.0073153227567673,0.11394672095776,0.01117835752666],[0.035324893891811,0.017082767561078,-0.046388905495405]],[[0.030701924115419,-0.01949330419302,0.072739496827126],[-0.046191535890102,-0.034953262656927,0.0098164267838001],[-0.026390658691525,-0.006318754516542,0.04457613825798]],[[0.069425381720066,0.0069749867543578,0.025576658546925],[0.065494827926159,0.086028806865215,0.063986957073212],[0.029110752046108,-0.054423857480288,-0.0034142048098147]],[[0.020564833655953,-0.025564171373844,-0.020692953839898],[0.051984865218401,-0.050871413201094,0.028343698009849],[0.001253682654351,0.099157072603703,0.015204211696982]],[[-0.066695690155029,-0.018895605579019,-0.0019166615093127],[-0.032611910253763,-0.065836206078529,0.01426000893116],[-0.021778473630548,0.0052342317067087,-0.016479140147567]],[[-0.017337745055556,0.018082588911057,0.029138136655092],[0.021257216110826,-0.005361545830965,0.0021879526320845],[0.0075854663737118,0.014154748059809,0.0029950875323266]],[[-0.013163715600967,0.1059144064784,0.026675248518586],[-0.076427094638348,0.0029466759879142,0.023258047178388],[-0.0017149748746306,0.061956495046616,0.038979582488537]],[[-0.062352605164051,-0.0050246668979526,-0.031363926827908],[0.041492994874716,0.030208135023713,-0.02199536934495],[-0.041820276528597,-0.011256779544055,0.0077686104923487]],[[-0.018560454249382,-0.014906566590071,-0.00085477129323408],[0.0051889331080019,0.017950810492039,-0.013427457772195],[-0.036531340330839,0.031329423189163,0.01684856787324]],[[0.002145780948922,0.024300899356604,0.036286376416683],[0.017808115109801,-0.016418976709247,0.014004518277943],[0.028261644765735,0.033675719052553,-0.042129173874855]],[[0.017191113904119,-0.0046599232591689,-0.032697774469852],[-0.012451713904738,-0.04679349437356,0.0493871755898],[0.050755068659782,0.090639524161816,-0.042856823652983]],[[-0.055411551147699,0.018689358606935,-0.0053689177148044],[0.051421444863081,-0.030179454013705,0.030735420063138],[-0.027424780651927,-0.011555238626897,0.0099229216575623]],[[-0.021591218188405,-0.018450874835253,0.083743318915367],[0.036594279110432,-0.015177987515926,0.055144477635622],[-0.072123818099499,-0.016786592081189,-0.061811253428459]],[[0.072275936603546,-0.0032563779968768,0.029236499220133],[0.028458481654525,-0.012642752379179,0.025887753814459],[0.01034698355943,0.028083572164178,0.034079059958458]],[[-0.03162507340312,0.056579913944006,0.02025181800127],[-0.050057046115398,-0.0028982132207602,-0.017774233594537],[0.019887637346983,-0.014655701816082,0.061030011624098]],[[-0.08333308249712,-0.010599416680634,0.091055989265442],[0.09374263882637,0.066336505115032,0.085054650902748],[-0.0084817931056023,0.079894803464413,-0.067826889455318]],[[-0.014238686300814,-0.0028745085000992,0.021364577114582],[0.036249078810215,-0.023272721096873,0.03725278750062],[0.015471651218832,-0.024445183575153,0.011515307240188]],[[0.078221745789051,-0.043515607714653,0.031796649098396],[0.057901650667191,0.067746065557003,0.011857745237648],[0.022673975676298,-0.0081855459138751,0.034234795719385]],[[-0.026639871299267,-0.032755859196186,-0.029015060514212],[-0.031936373561621,-0.018386669456959,-0.024931840598583],[-0.010124295949936,0.0072083245031536,-0.016978088766336]],[[0.053134016692638,-0.0067132408730686,0.0034252554178238],[-0.028900034725666,0.019035277888179,0.016145771369338],[0.024873062968254,-0.001924759359099,0.039407011121511]],[[0.025163654237986,0.028319660574198,-0.048636451363564],[0.02629816159606,-0.0038063675165176,0.035480305552483],[-0.001332959975116,0.0016278312541544,0.045578144490719]],[[-0.018201241269708,0.004153030924499,-0.010288109071553],[-0.013479251414537,0.13830432295799,-0.015840211883187],[-0.039111141115427,-0.10542039573193,-0.014966041781008]],[[-0.017445489764214,-0.031812224537134,-0.017799083143473],[0.017868302762508,-0.099057234823704,-0.08684153854847],[-0.050522316247225,0.13438552618027,-0.024852246046066]],[[-0.054162561893463,-0.022303126752377,0.027474934235215],[-0.025420427322388,-0.078310951590538,0.04196235165],[0.006389984395355,-0.02185014821589,0.065420880913734]],[[-0.040385168045759,-0.033295270055532,0.041661586612463],[0.078287377953529,-0.031475633382797,0.011471642181277],[-0.067912399768829,-0.013925392180681,-0.030690796673298]],[[-0.084320023655891,0.039598952978849,-0.0028109650593251],[-0.045870617032051,-0.032882027328014,0.056905828416348],[-0.025565294548869,-0.021660357713699,0.056568946689367]],[[0.0081077972427011,0.0012678197817877,-0.047239270061255],[0.012992531061172,-0.0053544384427369,-0.0084363911300898],[-0.078733615577221,-0.027515856549144,-0.014329232275486]],[[0.020754162222147,-0.063579112291336,0.017223166301847],[-0.017953177914023,-0.0032448412384838,-0.035503793507814],[-0.0065445452928543,0.038120277225971,-0.035553935915232]],[[0.039921659976244,-0.046894952654839,-0.067791052162647],[0.033838421106339,-0.075907111167908,0.018357368186116],[0.057238921523094,-0.081900291144848,0.0096952840685844]],[[0.0059324754402041,0.035296101123095,-0.03101659938693],[0.012767829932272,0.0028538324404508,-0.049591973423958],[-0.079857990145683,0.043149657547474,-0.054307233542204]],[[-0.04490764066577,0.030435079708695,0.00014264629862737],[0.008290221914649,-0.0019759165588766,-0.012927485629916],[0.016620250418782,-0.030644381418824,-0.042517360299826]],[[0.016203731298447,-0.093907900154591,0.050290446728468],[0.014667036943138,-0.010184173472226,0.059402514249086],[0.022210562601686,0.0241027045995,-0.034987423568964]],[[-0.043492633849382,-0.033788647502661,0.063603669404984],[0.08465101569891,-0.032623443752527,0.051918990910053],[-0.021851340308785,0.053550638258457,0.03689706325531]],[[-0.010051271878183,0.03221783041954,0.08195336908102],[0.029198450967669,0.012125318869948,0.056403893977404],[0.043467164039612,0.082013055682182,-0.012029192410409]],[[-0.00053153891349211,0.0070233065634966,0.0068597574718297],[0.046744495630264,-0.094185516238213,0.021566409617662],[-0.011840247549117,-0.011698309332132,-0.095712728798389]],[[-0.014159151352942,0.034661121666431,-0.0081247854977846],[0.025732858106494,-0.042594365775585,-0.05085426568985],[-0.0065546068362892,0.052771486341953,0.035609610378742]],[[0.029064515605569,0.0077659944072366,-0.016849586740136],[-0.029793169349432,0.068071916699409,0.064063459634781],[0.056713487952948,-0.0023977716919035,-0.0633744597435]],[[0.018028073012829,0.04516888037324,0.027220468968153],[0.016519879922271,-0.091668158769608,-0.015197860077024],[-0.056385096162558,0.010764547623694,0.050866674631834]],[[0.010817176662385,0.042206007987261,0.038719046860933],[0.0059670386835933,-0.010372652672231,0.027756802737713],[-0.022019501775503,0.012675101868808,0.022185066714883]],[[-0.039882656186819,0.033144496381283,-0.044576849788427],[0.043707359582186,-0.020569413900375,0.022527080029249],[-0.042646192014217,0.032757606357336,-0.014353836886585]],[[-0.029256800189614,-0.082425966858864,-0.003664537332952],[0.045616619288921,-0.034644734114408,0.057038903236389],[-0.0017488087760285,0.031524129211903,0.044075798243284]],[[-0.026533722877502,0.014394728466868,0.018397584557533],[0.046900134533644,-0.022657189518213,-0.10471636801958],[0.032455872744322,0.056541573256254,-0.076213993132114]],[[-0.019904442131519,-0.0006328786839731,0.0094394981861115],[-0.023869952186942,0.024564623832703,-0.018290802836418],[-0.018470335751772,0.075179174542427,0.021679604426026]],[[0.070973433554173,-0.062797509133816,0.010342743247747],[0.068160220980644,-0.002425993559882,-0.03567174449563],[0.035820063203573,0.023276042193174,-0.010660411790013]],[[0.034161973744631,0.1125393435359,-0.042918302118778],[-0.013770862482488,0.0036438477691263,0.032059922814369],[-0.014802295714617,0.023393776267767,0.055368863046169]],[[0.0050737354904413,-0.00027608723030426,0.040884025394917],[0.017332643270493,-0.038423985242844,-0.062435481697321],[0.030643155798316,0.0024126274511218,0.0094278659671545]],[[-0.050298027694225,-0.011318020522594,0.070586994290352],[0.00065516901668161,0.033242825418711,-0.021340576931834],[-0.083042353391647,-0.029260473325849,0.002462507924065]],[[0.057921122759581,-0.080938391387463,0.044922512024641],[0.071562930941582,0.0029331664554775,-0.032377891242504],[-0.033261846750975,-0.02982503734529,0.00018570097745396]],[[-0.029363963752985,-0.016964545473456,-0.0059313303790987],[-0.058463823050261,0.036987502127886,0.00030303804669529],[0.012983209453523,-0.049409914761782,-0.044072970747948]],[[-0.058439653366804,-0.0039773052558303,-0.0011587402550504],[-0.042470909655094,0.0075301812030375,0.03073957003653],[0.017864229157567,0.022624420002103,-0.0662826821208]],[[-0.029620533809066,0.041946969926357,-0.013445130549371],[-0.0023319339379668,0.008343062363565,-0.030727537348866],[-0.0061810617335141,0.020114112645388,0.071953259408474]],[[0.016754234209657,0.051241114735603,-0.017763806506991],[-0.0055040707811713,-0.034993954002857,-0.013911982066929],[-0.0063025788404047,-0.017613673582673,-0.0042425682768226]],[[0.063908524811268,0.080281905829906,-0.068966448307037],[-0.0043787388131022,-0.079197555780411,-0.024857532233],[-0.013745953328907,-0.074912033975124,0.014423231594265]],[[0.047548476606607,0.026910100132227,0.01416721381247],[0.043343283236027,-0.047649014741182,-0.048988543450832],[0.058658927679062,0.0055962852202356,-0.048912592232227]],[[0.0012868213234469,0.097276590764523,0.011864011175931],[-0.019458044320345,0.0003197209443897,-0.071021012961864],[-0.015662355348468,-0.047215275466442,-0.027727674692869]],[[-0.032904006540775,-0.0077445493079722,0.011654413305223],[-0.044295154511929,-0.039189375936985,-0.010332417674363],[0.041045669466257,-0.033100094646215,0.012301857583225]]],[[[-0.054758068174124,-0.028652215376496,-0.091143250465393],[0.12977872788906,-0.0904256477952,-0.056587595492601],[-0.047325205057859,0.012105725705624,-0.021134117618203]],[[-0.1096094250679,0.04188996553421,-0.075831696391106],[0.024119360372424,0.21602733433247,0.15218310058117],[-0.044840849936008,-0.14502501487732,-0.13763895630836]],[[0.069224402308464,-0.036917068064213,0.014657270163298],[0.067742496728897,-0.062948830425739,-0.024311080574989],[-0.0025201002135873,0.084738507866859,0.032914359122515]],[[-0.10073898732662,0.07229994982481,0.2083997130394],[0.01926513761282,-0.039502527564764,-0.070289753377438],[-0.011508164927363,-0.12867037951946,0.10986741632223]],[[0.072368577122688,-0.111811645329,-0.090567298233509],[0.056874912232161,-0.027594923973083,0.046875458210707],[0.0058487914502621,0.1709169447422,0.026481706649065]],[[-0.077078551054001,0.0074201449751854,-0.047880902886391],[-0.004552491940558,-0.0082671856507659,-0.045324079692364],[-0.1170035675168,-0.024571891874075,-0.15811470150948]],[[0.024689702317119,-0.0062654279172421,-0.00089248904259875],[0.015288106165826,0.030000500380993,0.0094303106889129],[-0.072041496634483,-0.017361322417855,0.064214162528515]],[[-0.019789464771748,0.057721953839064,0.035439610481262],[-0.040912508964539,0.067381411790848,0.037293441593647],[-0.048998679965734,0.013491624034941,-0.020964406430721]],[[0.037776049226522,0.027837727218866,-0.09597509354353],[0.063719913363457,0.0049567613750696,0.13253284990788],[-0.038360498845577,-0.13020075857639,0.0078043071553111]],[[0.057664517313242,-0.0055135553702712,-0.075872294604778],[-0.037999339401722,0.14594376087189,0.036731574684381],[0.021418690681458,-0.011498990468681,0.010256785899401]],[[0.024751016870141,0.080287516117096,0.060673985630274],[-0.0051401681266725,0.026078518480062,-0.048972558230162],[-0.047812692821026,-0.075791619718075,-0.0093779023736715]],[[-0.056572750210762,0.016721216961741,0.0078157735988498],[0.079673588275909,-0.088216550648212,-0.050650902092457],[0.094375029206276,-0.012588554061949,0.03100330196321]],[[0.022586798295379,-0.20624688267708,-0.086821608245373],[0.061265770345926,0.3016175031662,-0.069520473480225],[-0.030889259651303,-0.060051802545786,-0.020798856392503]],[[-0.025676878169179,0.025484783574939,0.16017816960812],[-0.018406292423606,0.071537546813488,0.0032489390578121],[0.091891370713711,-0.14436963200569,-0.0087295901030302]],[[-0.0014623928582296,-0.093226157128811,0.20063002407551],[-0.068642914295197,-0.039875023066998,-0.055370304733515],[-0.034959968179464,-0.060186482965946,0.049266785383224]],[[0.12035266309977,0.16385173797607,0.045419704169035],[-0.11138321459293,-0.020432494580746,-0.20674377679825],[0.017473891377449,0.061770096421242,0.20681814849377]],[[-0.0097030904144049,-0.07568833976984,0.07500497251749],[0.032080218195915,0.088730320334435,-0.04455566778779],[-0.012354633770883,-0.033908180892467,0.026164812967181]],[[0.049764133989811,-0.087248928844929,-0.0082670813426375],[-0.042245130985975,-0.10627688467503,0.078853450715542],[0.028972752392292,0.02427533455193,0.03779724240303]],[[-0.031931504607201,0.0011282253544778,0.071981340646744],[-0.026293016970158,-0.083037048578262,0.042420536279678],[0.031776316463947,-0.0079132420942187,-0.13125646114349]],[[-0.068723052740097,-0.029138322919607,0.20882777869701],[-0.016166508197784,-0.012064843438566,-0.11074161529541],[0.040422357618809,0.014913706108928,0.11690683662891]],[[-0.037167593836784,0.069447189569473,0.11020356416702],[-0.10150569677353,-0.01439855620265,-0.088543206453323],[-0.061246618628502,-0.032278727740049,0.089371718466282]],[[0.10477788746357,-0.053127095103264,-0.2095445394516],[0.0092100286856294,0.031917449086905,0.17187216877937],[0.015962891280651,0.0088173486292362,-0.054582424461842]],[[0.0044991760514677,-0.017397349700332,0.027739325538278],[0.054635435342789,0.039626836776733,0.0011546441819519],[-0.031890850514174,0.13073669373989,-0.116371139884]],[[-0.0098711056634784,-0.023849688470364,-0.032894611358643],[-0.016422387212515,0.045730795711279,0.035645492374897],[0.092289097607136,0.067256413400173,-0.092098094522953]],[[-0.059309985488653,0.047125220298767,0.25032940506935],[0.17658565938473,-0.020085815340281,-0.045747511088848],[0.02628537453711,0.14437498152256,0.017159670591354]],[[0.078987762331963,-0.026341577991843,-0.0011709816753864],[0.13462848961353,-0.072164006531239,0.035033006221056],[0.092988193035126,0.034350529313087,-0.073478393256664]],[[-0.063592545688152,-0.092055328190327,-0.065671063959599],[-0.049337062984705,0.032641477882862,-0.037772875279188],[-0.014822730794549,-0.058107871562243,-0.0048189824447036]],[[0.20261813700199,-0.076009161770344,-0.022217389196157],[-0.0048896027728915,0.18343317508698,0.14608900249004],[-0.066741719841957,0.067644841969013,-0.16601625084877]],[[-0.022608928382397,0.063675470650196,-0.005509618204087],[-0.091088235378265,-0.099029153585434,-0.020652955397964],[-0.042538989335299,-0.095733948051929,-0.015430617146194]],[[-0.039158277213573,-0.11792076379061,-0.044161591678858],[0.16178940236568,0.1832242757082,-0.10085614025593],[0.084813386201859,0.051760457456112,0.035339780151844]],[[0.027343787252903,-0.062959983944893,-0.10900188237429],[-0.075149536132812,0.16090996563435,-0.083371266722679],[0.030435472726822,0.010700470767915,-0.10726341605186]],[[0.11991436779499,0.0071810358203948,0.030234189704061],[-0.0065313214436173,-0.032993230968714,-0.077525295317173],[-0.020043946802616,0.0011455247877166,0.10486105084419]],[[-0.038768354803324,-0.076059751212597,-0.0077060512267053],[0.059982627630234,0.075883761048317,-0.24813210964203],[0.033502578735352,0.04320003464818,0.067523658275604]],[[0.036268923431635,-0.071925587952137,0.13231931626797],[0.020599255338311,0.017672931775451,-0.00070407427847385],[0.066362395882607,-0.013907387852669,-0.078754492104053]],[[0.096243157982826,-0.039406757801771,0.082969017326832],[-0.024274908006191,0.001452129217796,0.099342159926891],[-0.0079922312870622,0.06531248986721,0.074030190706253]],[[-0.037702951580286,-0.10339744389057,0.065735004842281],[-0.12840150296688,0.064180880784988,0.15336695313454],[-0.016073599457741,0.024137105792761,-0.14518970251083]],[[0.011177496053278,-0.011105491779745,-0.0089157465845346],[-0.036571554839611,0.044898327440023,-0.063878290355206],[6.1999671743251e-05,-0.065999880433083,0.015020775608718]],[[0.044634148478508,-0.055634267628193,0.040179993957281],[-0.036489561200142,0.018684677779675,-0.031496625393629],[0.11339472234249,0.033241156488657,0.12428303807974]],[[0.052611842751503,-0.042808067053556,0.014789205044508],[-0.012552096508443,0.10247495025396,-0.0025567659176886],[0.017251001670957,0.094181403517723,0.06125696003437]],[[0.030383380129933,-0.04223695397377,0.045689240098],[0.060234326869249,-0.035699628293514,-0.022727768868208],[-0.023149671033025,-0.14770495891571,0.056224182248116]],[[0.024196587502956,0.12075025588274,0.033479921519756],[0.092332519590855,0.048152025789022,-0.10792910307646],[-0.14625054597855,0.0046538230963051,0.0062206583097577]],[[0.055388554930687,0.0007528256974183,0.010849828831851],[0.032232228666544,0.044643737375736,-0.064030565321445],[-0.0077490294352174,0.0066206697374582,0.0070965839549899]],[[-0.11429991573095,0.10051693022251,-0.016073398292065],[-0.074124611914158,0.0023696566931903,-0.1369821280241],[-0.025087457150221,-0.065209358930588,0.22652195394039]],[[-0.022544410079718,0.01551344897598,-0.033351812511683],[-0.0059962957166135,-0.010249952785671,-0.0079716490581632],[-0.036864027380943,0.030884683132172,-0.017235228791833]],[[0.024329047650099,0.040866233408451,-0.056288484483957],[-0.12117771804333,0.12494943290949,0.076224856078625],[0.12422064691782,-0.13257911801338,-0.15040175616741]],[[-0.041485212743282,0.063983932137489,-0.033341716974974],[-0.037926815450191,0.012787917628884,-0.026440259069204],[0.051924351602793,-0.08205908536911,0.038832761347294]],[[-0.034966692328453,-0.041558727622032,-0.025826511904597],[-0.068346969783306,-0.018895089626312,-0.0011589756468311],[-0.095105372369289,0.038166373968124,-0.076040349900723]],[[-0.049924813210964,0.050573587417603,-0.10930992662907],[0.032472118735313,0.010421738959849,0.10557690262794],[-0.041601903736591,0.075900167226791,0.074080504477024]],[[-0.049600422382355,-0.078375779092312,-0.013633555732667],[0.14711710810661,-0.036883018910885,-0.093740612268448],[0.002353117801249,0.0031675421632826,-0.024847896769643]],[[0.011865786276758,0.0011719826143235,0.15910747647285],[-0.088037669658661,0.027854315936565,-0.015095191076398],[0.10273525118828,-0.073413655161858,0.076825127005577]],[[0.0948256701231,-0.0069857519119978,0.026046991348267],[0.037763308733702,0.1195774525404,-0.089566446840763],[-0.017053667455912,0.027755128219724,-0.050549082458019]],[[-0.034103456884623,-0.01481987722218,0.16394352912903],[0.079860918223858,-0.035439625382423,-0.14678752422333],[-0.065551191568375,-0.042406488209963,-0.062578119337559]],[[-0.031348582357168,-0.046705882996321,0.095273964107037],[-0.023995829746127,0.066077709197998,-0.080597460269928],[-0.038626227527857,-0.059771712869406,0.020182821899652]],[[-0.052502669394016,0.018382662907243,-0.00022547866683453],[0.077754564583302,0.12698802351952,0.097651787102222],[0.018053060397506,-0.0033459747210145,-0.0087245656177402]],[[-0.011191559955478,-0.062035590410233,0.10942324995995],[-0.027463482692838,-0.040758606046438,0.10892632603645],[0.035124782472849,0.013568124733865,-0.022582413628697]],[[0.023853745311499,-0.01468010712415,0.15723216533661],[0.0079560186713934,0.059443209320307,0.033316031098366],[0.03254134953022,-0.033953465521336,-0.1348407715559]],[[-0.073913440108299,-0.023907417431474,-0.0017088529421017],[0.16094847023487,0.15927423536777,0.078593358397484],[0.094724848866463,0.032126594334841,0.14790385961533]],[[0.0064423503354192,0.081320814788342,0.18484742939472],[-0.027584156021476,-0.074658617377281,0.037766151130199],[-0.0039569321088493,0.0086415782570839,-0.083895109593868]],[[-0.083180218935013,-0.030597729608417,-0.11587806046009],[-0.087482959032059,0.19200913608074,-0.117441624403],[-0.04192004352808,-0.03363499045372,0.013587730005383]],[[0.083923891186714,0.023883886635303,-0.00020279429736547],[-0.048476319760084,-0.06219919025898,-0.012428964488208],[0.021479584276676,-0.054624065756798,-0.082855507731438]],[[-0.020986136049032,-0.064669914543629,-0.15211813151836],[-0.10742180794477,-0.039405275136232,-0.080793939530849],[0.034534186124802,-0.057084135711193,0.041616771370173]],[[-0.014191597700119,0.0053759422153234,-0.038426131010056],[0.0014889417216182,-0.046527579426765,0.060848198831081],[0.038497686386108,-0.071112923324108,0.070941872894764]],[[0.065078273415565,0.0048460904508829,-0.079338558018208],[0.049353148788214,-0.074026539921761,-0.071607433259487],[0.040537104010582,-0.074345543980598,0.14233349263668]],[[0.035587213933468,0.02920144982636,0.011298838071525],[0.045816943049431,0.03488477692008,0.026845892891288],[0.043941408395767,0.073226623237133,-0.010503519326448]],[[-0.060582455247641,-0.055507630109787,-0.1308940500021],[-0.11415326595306,0.11933840066195,0.089440613985062],[0.075669914484024,0.054753534495831,-0.027732541784644]],[[0.047824576497078,-0.040127068758011,-0.025824783369899],[-0.041883245110512,0.034791529178619,-0.011071810498834],[-0.055659614503384,0.1028166115284,-0.033631455153227]],[[-0.092185825109482,-0.09185004979372,0.10124135017395],[-0.081128656864166,0.030015714466572,-0.083055146038532],[-0.15130335092545,-0.032819453626871,0.050913583487272]],[[-0.094631880521774,0.10635936260223,0.04801107198],[-0.026074295863509,-0.0018169640097767,-0.088244646787643],[-0.010875218547881,0.02576501108706,0.015892717987299]],[[0.0739950761199,0.019154762849212,-0.0040716836228967],[0.062384888529778,0.0092607149854302,0.067259207367897],[-0.04328728467226,-0.0035043433308601,-0.014913332648575]],[[0.0022354489192367,0.15941263735294,-0.099572911858559],[0.057574424892664,0.021307850256562,0.046604719012976],[-0.045511197298765,0.11488503962755,-0.020567430183291]],[[0.071652770042419,-0.12526075541973,0.0042048874311149],[-0.0051769698038697,0.088715322315693,0.01097458973527],[-0.051290288567543,-0.15701155364513,0.083280347287655]],[[-0.05247563123703,0.034307174384594,-0.12507225573063],[-0.0066461418755352,-0.01887652091682,-0.078254036605358],[-0.11493914574385,-0.0079724686220288,-0.065935246646404]],[[-0.031410697847605,-0.030162058770657,-0.026397472247481],[-0.0038072594907135,0.03703548759222,-0.035674054175615],[-0.1091071665287,-0.11516553908587,0.048172831535339]],[[0.067199945449829,-0.085570059716702,0.14229615032673],[-0.0041663241572678,-0.12965597212315,0.027124762535095],[0.035326670855284,-0.091311387717724,0.032326146960258]],[[0.039987374097109,0.08013554662466,0.042746361345053],[0.054502613842487,-0.091861926019192,-0.09022269397974],[-0.094558447599411,-0.12266006320715,0.059131048619747]],[[0.039882410317659,0.050974678248167,0.039966244250536],[-0.023369751870632,-0.014824160374701,-0.082333460450172],[-0.08202300965786,-0.080110438168049,0.026300329715014]],[[-0.038197793066502,-0.020041264593601,0.10059498250484],[-0.12053324282169,0.027119079604745,-0.085601910948753],[-0.14086255431175,-0.10597190260887,-0.11610619723797]],[[-0.034717239439487,0.064820028841496,-0.095045894384384],[0.014040666632354,-0.13418874144554,0.083748511970043],[-0.098970547318459,0.049917537719011,-0.086287617683411]],[[0.020100360736251,0.043063707649708,-0.057491809129715],[0.039842143654823,-0.13340418040752,-0.055446337908506],[-0.052880953997374,-0.033898141235113,0.04365473613143]],[[-0.059129308909178,-0.10605146735907,0.12011752277613],[0.083720915019512,-0.0048945182934403,0.13045780360699],[0.025123458355665,-0.093212835490704,-0.15118554234505]],[[-0.018206253647804,-0.033567365258932,-0.031574986875057],[0.065587125718594,-0.093793757259846,0.0083839474245906],[-0.02070152387023,-0.09379930049181,-0.06781480461359]],[[-0.045407440513372,-0.0068389601074159,-0.045773163437843],[0.14162655174732,0.041246917098761,-0.069570481777191],[-0.05802408233285,0.017855072394013,-0.016365371644497]],[[-0.0041380291804671,-0.10107728838921,0.074379578232765],[-0.064160369336605,0.096265628933907,0.052181303501129],[0.013777368701994,0.19742819666862,0.039090920239687]],[[-0.020611511543393,-0.028260705992579,0.17346478998661],[-0.025192564353347,-0.024624926969409,0.063667386770248],[0.05456442758441,-0.10449732095003,0.066803820431232]],[[-0.039729066193104,-0.022791316732764,-0.10814179480076],[-0.042194936424494,-0.13334782421589,0.13601145148277],[0.056270830333233,0.051227163523436,-0.13481904566288]],[[-0.014018155634403,0.075472623109818,0.068561285734177],[0.026072880253196,-0.090894244611263,0.0078006321564317],[-0.088974587619305,-0.005140284076333,-0.019783776253462]],[[0.050317995250225,-0.043589405715466,0.08695412427187],[0.067718476057053,0.11995502561331,0.022677823901176],[0.090101107954979,0.035776656121016,0.053821783512831]],[[-0.0010045288363472,-0.14605222642422,-0.042171895503998],[-0.12185595184565,0.017888147383928,0.024064786732197],[0.11923898756504,-0.046969804912806,0.04319990426302]],[[0.032079115509987,0.095234364271164,0.092396579682827],[-0.057211458683014,-0.009919079951942,0.016977075487375],[0.096385627985001,-0.15281191468239,-0.030660768970847]],[[0.046984035521746,-0.010432437993586,0.036239255219698],[-0.031356949359179,-0.099349193274975,-0.029288241639733],[0.010900029912591,-0.061802644282579,-0.053614441305399]],[[0.0016583994729444,-0.15028962492943,-0.079462416470051],[-0.13385626673698,0.032078377902508,-0.125150218606],[0.18816332519054,0.05921820178628,0.035481166094542]],[[-0.026615602895617,0.077198065817356,0.011069473810494],[-0.10134415328503,-0.00023927350412123,-0.029308322817087],[-0.065713159739971,0.031705740839243,-0.0610924474895]],[[0.003745055058971,-0.013362902216613,0.10584509372711],[-0.057864636182785,0.031320348381996,0.011337830685079],[0.025406109169126,0.096934236586094,-0.0091028735041618]],[[0.021201141178608,0.026394682005048,-0.027891764417291],[-0.07088877260685,0.021610284224153,-0.039838444441557],[-0.0046833134256303,-0.032331343740225,-0.034924779087305]],[[0.01305877789855,0.038871124386787,0.033743869513273],[0.032148685306311,-0.043556679040194,0.033230032771826],[0.058674365282059,-0.039649527519941,-0.10801011323929]],[[0.10991137474775,-0.10297565162182,0.22666515409946],[0.0068593951873481,-0.018547786399722,-0.063273809850216],[0.11207726597786,-0.040416494011879,0.055027026683092]],[[-0.004703791346401,-0.035319931805134,0.058376811444759],[0.058017536997795,0.15427951514721,-0.19664913415909],[-0.12133873999119,0.049354627728462,0.1452956199646]],[[0.059640724211931,0.056825984269381,0.085729368031025],[-0.0062763243913651,0.005165665410459,0.047534603625536],[0.0028517851606011,0.04393232986331,-0.054774530231953]],[[-0.002182490658015,0.048006813973188,-0.087204828858376],[-0.0065636234357953,-0.015309552662075,0.097439669072628],[0.043329782783985,0.030259683728218,0.012287269346416]],[[-0.010643099434674,-0.011542568914592,-0.051374055445194],[0.14170694351196,0.021490508690476,-0.061276320368052],[0.0035100614186376,0.19827021658421,0.051295042037964]],[[0.019626464694738,-0.0019906125962734,0.0012975165154785],[0.029497511684895,-0.028985977172852,2.3303018679144e-05],[-0.055992141366005,0.012737863697112,-0.040192477405071]],[[0.013126545585692,-0.055882405489683,-0.13248090445995],[-0.0012590056285262,-0.04857449606061,-0.052442353218794],[-0.029282588511705,0.032238088548183,-0.027226705104113]],[[0.011368723586202,-0.056507557630539,-0.031246289610863],[0.094447143375874,-0.10732369124889,0.25225308537483],[-0.053958460688591,-0.024493679404259,-0.037031903862953]],[[0.15889593958855,0.060042850673199,0.0082052648067474],[-0.0024537101853639,-0.039965413510799,0.1024481728673],[-0.0060982778668404,0.032611031085253,0.034458670765162]],[[0.010778562165797,0.051565088331699,0.049221578985453],[0.013610339723527,-0.0077561386860907,-0.022604355588555],[0.044372335076332,0.065112635493279,-0.05046196654439]],[[-0.095934733748436,-0.016907326877117,0.0065727615728974],[-0.030208311975002,0.12682762742043,0.088589377701283],[-0.026923313736916,-0.11880175024271,0.014399223029613]],[[0.059501010924578,-0.034113589674234,0.12307913601398],[-0.044079449027777,-0.054625771939754,0.045719426125288],[-0.045035198330879,0.048259317874908,-0.0032617312390357]],[[0.061813071370125,0.024245264008641,-0.07424233853817],[0.078443348407745,-0.049471378326416,-0.15855953097343],[-0.093232408165932,0.039892483502626,0.23555113375187]],[[-0.059892732650042,0.0078458590433002,0.065131276845932],[-0.10271703451872,-0.015554039739072,0.10643874853849],[-0.054543603211641,0.0054983734153211,-0.006582903675735]],[[-0.03655843809247,-0.015107565559447,0.010071512311697],[0.035408016294241,0.04345104470849,0.055716641247272],[-0.010581828653812,-0.0030922268051654,-0.077851578593254]],[[-0.012451072223485,0.040972530841827,0.10041877627373],[-0.024923479184508,-0.030749652534723,0.05260544270277],[-0.020735085010529,-0.08072891831398,-0.030115505680442]],[[0.0030187594238669,-0.078180611133575,-0.016272712498903],[0.0085659120231867,0.00052919058362022,0.16095077991486],[0.065679155290127,-0.0069031617604196,0.0024382444098592]],[[-0.012135492637753,0.051779039204121,0.020820720121264],[0.14345194399357,0.026596343144774,-0.12362799048424],[0.02688505128026,0.033482763916254,-0.014800518751144]],[[0.035975445061922,-0.028488231822848,-0.042742513120174],[0.022641140967607,-0.053753092885017,0.10658313333988],[-0.021154042333364,0.099891595542431,0.0007787654758431]],[[0.1337808817625,-0.038388002663851,-0.054106622934341],[0.073595516383648,0.048020474612713,-0.098151490092278],[-0.067836374044418,0.041006676852703,0.005102688446641]],[[-0.068891748785973,-0.087911047041416,0.07760014384985],[0.075532227754593,0.016517454758286,-0.067539475858212],[0.031362149864435,-0.064413540065289,-0.032685548067093]],[[0.010548164136708,0.01343200635165,0.082913145422935],[-0.094280511140823,0.051135666668415,0.033147372305393],[0.026449665427208,-0.13738162815571,-0.038792416453362]],[[-0.019559102132916,-0.0058326027356088,-0.036895975470543],[0.015382745303214,-0.042693145573139,0.030703976750374],[-0.0086467610672116,-0.002017080783844,0.043405938893557]],[[-0.068394064903259,0.0016603362746537,0.040342755615711],[-0.11033522337675,-0.023541275411844,0.099469751119614],[-0.043924670666456,-0.0011481216643006,0.018629886209965]],[[0.087217323482037,0.019449550658464,-0.16995023190975],[0.054657716304064,0.17489473521709,0.054958626627922],[-0.015547337941825,0.060127306729555,0.07338485121727]],[[-0.20625787973404,-0.19434784352779,-0.05970586836338],[0.095868021249771,-0.012215950526297,-0.081429228186607],[0.034955948591232,0.067304216325283,-0.0015819255495444]],[[-0.01322319265455,-0.0053006457164884,-0.024212772026658],[0.010321543551981,0.026303986087441,-0.084063827991486],[-0.042582154273987,-0.12888304889202,-0.054915983229876]],[[-0.061076950281858,-0.075908906757832,-0.13070243597031],[0.012595936655998,0.080653473734856,-0.1064802929759],[-0.043390039354563,0.00068777531851083,-0.061920832842588]],[[-0.049116984009743,0.011476038955152,-0.10468654334545],[0.071607060730457,0.24846261739731,-0.0063286875374615],[0.028810393065214,0.047710444778204,-0.067698903381824]],[[-0.063692085444927,-0.031163955107331,-0.16241693496704],[-0.059911675751209,-0.0082657597959042,-0.0045553501695395],[0.020505161955953,0.064141951501369,0.11690176278353]],[[-0.064077712595463,0.016712198033929,-0.0089453142136335],[-0.052864350378513,0.022715084254742,0.08790897578001],[-0.050124548375607,0.13432960212231,-0.029098242521286]],[[0.094824157655239,0.016510482877493,0.060695435851812],[0.11193990707397,-0.15114308893681,0.024153931066394],[0.085068970918655,0.022653330117464,0.031421724706888]],[[0.024423742666841,-0.20426213741302,-0.046304237097502],[0.046443741768599,0.01410539355129,0.26788601279259],[-0.015459697693586,0.1547224521637,-0.38580095767975]]],[[[0.071405068039894,-0.066209942102432,-0.0044453758746386],[-0.0076567316427827,0.013642022386193,0.024910865351558],[-0.058318290859461,0.027542155236006,0.0024473771918565]],[[-0.0070292372256517,0.012476528994739,0.11196599155664],[0.081705816090107,0.058510396629572,-0.010944063775241],[-0.019973879680037,-0.060707710683346,-0.072552971541882]],[[0.02716925740242,0.023528860881925,-0.041845254600048],[0.047533925622702,0.0639873072505,-0.021225726231933],[0.065010465681553,0.055916991084814,-0.037579096853733]],[[-0.076963059604168,-0.026551883667707,0.050751537084579],[-0.01265655644238,-0.074203297495842,0.051449235528708],[0.046894039958715,-0.0012964460765943,-0.081526666879654]],[[-0.016842951998115,0.0026076028589159,0.031222715973854],[0.034761235117912,0.014181484468281,-0.056642793118954],[-0.019908498972654,-0.10421393811703,0.029884791001678]],[[0.038815353065729,-0.0063711502589285,-0.010025491937995],[-0.0038687908090651,0.070866614580154,0.026345854625106],[0.011660640127957,0.045452691614628,0.02632724866271]],[[-0.01609230786562,-0.0061917500570416,0.035677950829268],[0.040895007550716,-0.028723472729325,0.0069308714009821],[0.015708286315203,-0.035816673189402,-0.068958200514317]],[[-0.036129958927631,-0.0072931852191687,-0.061198703944683],[-0.05518614500761,0.10141675174236,-0.0025191067252308],[-0.12761232256889,0.024204894900322,0.041996378451586]],[[-0.077664643526077,0.024826988577843,-0.00038238946581259],[-0.020667476579547,-0.061611775308847,0.008517149835825],[-0.02951412089169,0.0096038971096277,0.097178980708122]],[[-0.013454963453114,0.028346516191959,0.013868610374629],[0.0027046054601669,-0.040073499083519,-0.025913888588548],[-0.0077488329261541,0.012857699766755,0.026851458474994]],[[0.026257006451488,-0.038314867764711,0.062292344868183],[-0.016619026660919,-0.020772241055965,0.10461261868477],[-0.071210697293282,-0.13303308188915,-0.010063979774714]],[[-0.023914597928524,0.056371923536062,-0.10195147246122],[-0.049104046076536,0.08422577381134,-0.047080971300602],[-0.029220212250948,0.052276682108641,0.01393433380872]],[[0.019691610708833,-0.087178409099579,-0.00104113179259],[0.0053707100450993,-0.0055890581570566,0.011741740629077],[-0.023651856929064,-0.036547970026731,0.022036451846361]],[[0.040178041905165,0.0057308007963002,0.0314098931849],[-0.039503738284111,0.056749910116196,-0.1016636043787],[-0.025183958932757,-0.011772885918617,-0.092385731637478]],[[-0.065174445509911,0.023903876543045,0.12949480116367],[0.075817286968231,-0.069559819996357,-0.020886590704322],[-0.051283191889524,0.0072289942763746,-0.032329451292753]],[[0.035798635333776,-0.01099734287709,-0.048414617776871],[-0.019661005586386,-0.044459249824286,0.020263003185391],[0.039631303399801,-0.00099522690288723,-0.015824515372515]],[[-0.070464462041855,-0.015301568433642,0.10751784592867],[-0.097061567008495,-0.064314305782318,0.027883945032954],[-0.027386114001274,-0.043169651180506,-0.091154113411903]],[[-0.002849210286513,0.048329960554838,-0.11986416578293],[-0.0026194076053798,-0.029783301055431,0.027855338528752],[-0.10443276911974,-0.034531023353338,0.022707484662533]],[[0.019139803946018,-0.047331601381302,-0.039426736533642],[0.028788015246391,0.0076394244097173,-0.030327517539263],[-0.057006701827049,0.03606628626585,0.0081429993733764]],[[0.01490203756839,0.035394232720137,-0.04010246321559],[-0.0082403281703591,-0.048128843307495,0.0029752752743661],[0.021921699866652,-9.6129660960287e-05,-0.0020393012091517]],[[0.023658983409405,-0.084936112165451,0.021424220874906],[-0.0038331502582878,-0.037421982735395,0.023208629339933],[0.022580221295357,0.0034711782354861,-0.0247040130198]],[[0.025493087247014,0.019413271918893,-0.048254419118166],[0.040880046784878,0.047771815210581,-0.12137372046709],[0.010579374618828,0.025134677067399,0.025195525959134]],[[0.037209287285805,0.080243080854416,-0.093666240572929],[-0.11818035691977,-0.047842372208834,0.071712665259838],[5.1755854656221e-05,-0.020784920081496,-0.017911903560162]],[[-0.0055367350578308,-0.018579628318548,-0.022409936413169],[0.037815555930138,0.058784924447536,-0.025723611935973],[0.063833974301815,0.0052591394633055,-0.032647583633661]],[[-0.046169888228178,0.030859936028719,-0.13132308423519],[0.010747198015451,-0.034465555101633,0.023068467155099],[0.11053262650967,-0.15887609124184,-0.22526703774929]],[[-0.047545835375786,0.021980633959174,0.023554850369692],[0.036468416452408,-0.053491570055485,0.014940784312785],[-0.016767930239439,0.018679669126868,-0.03435492515564]],[[-0.021872462704778,-0.14201477169991,-0.078266195952892],[-0.012816581875086,-0.051279500126839,-0.030683267861605],[0.003725100075826,0.068746395409107,0.078346997499466]],[[0.073130615055561,-0.13596139848232,-0.0042573604732752],[0.013428227044642,-0.069763265550137,-0.16764184832573],[0.056590154767036,0.06084256619215,-0.09327432513237]],[[-0.036074448376894,-0.077776737511158,0.016807189211249],[0.075345776975155,-0.031326752156019,0.027303799986839],[0.078692317008972,-0.014737986028194,0.014452835544944]],[[-0.081098049879074,-0.027744431048632,0.075093679130077],[-0.021355489268899,0.056431401520967,0.058837182819843],[0.016103841364384,0.090932227671146,0.066053561866283]],[[0.0039822431281209,-0.052915625274181,-0.0041096708737314],[-0.049528200179338,0.031496614217758,0.094920761883259],[-0.020667677745223,0.011563474312425,-0.0052208388224244]],[[0.051343258470297,-0.098172783851624,0.079128623008728],[-0.011532183736563,-0.091306686401367,0.081122681498528],[0.020146066322923,-0.04074652120471,-0.014251386746764]],[[0.0052892304956913,-0.064528703689575,-0.0037788539193571],[0.034518361091614,-0.025700910016894,0.080641828477383],[0.087149515748024,0.012969072908163,0.013137704692781]],[[-0.070003151893616,0.0097447084262967,0.053819246590137],[0.00013560522347689,0.015607385896146,0.041375018656254],[0.035565845668316,0.032487522810698,0.05264437943697]],[[0.057842627167702,0.020665757358074,-0.030161932110786],[0.0082081602886319,0.05413518846035,-0.11080205440521],[-0.0261365249753,0.0058300695382059,0.050989627838135]],[[-0.043756432831287,0.0017084582941607,0.041081193834543],[-0.04213597998023,-0.010357275605202,0.0087358560413122],[0.072079949080944,0.0030645106453449,-0.019906459376216]],[[-0.045174960047007,-0.0061929984949529,-0.031972907483578],[-0.022209100425243,-0.065221928060055,-0.033076997846365],[-0.070968262851238,0.024700302630663,-0.18364661931992]],[[-0.011762267909944,0.025412455201149,-0.049578439444304],[0.012146879918873,-0.065836764872074,0.065531656146049],[0.053455475717783,0.051010113209486,-0.045889962464571]],[[0.036100182682276,0.0029873575549573,-0.028117371723056],[-0.059690069407225,-0.028203468769789,0.011337895877659],[0.0090322205796838,0.0083321183919907,-0.011106620542705]],[[-0.0099235726520419,0.016295380890369,0.036786779761314],[0.056394346058369,-0.026204526424408,-0.045210406184196],[0.064314737915993,0.031682439148426,-0.081265509128571]],[[0.028409011662006,0.050384230911732,0.043036308139563],[0.0029222792945802,0.022228289395571,-0.043256837874651],[-0.024395035579801,-0.019678100943565,0.051375146955252]],[[-0.00097441027173772,0.051593746989965,-0.025778084993362],[0.047342032194138,0.04013729095459,-0.030781604349613],[0.032978542149067,-0.010699005797505,0.03891271725297]],[[-0.067197561264038,-0.037236012518406,0.15847590565681],[-0.0010033389553428,-0.0092280264943838,0.0013154725311324],[0.0049247592687607,0.14669001102448,-0.076067164540291]],[[-0.031910020858049,0.021224388852715,-0.0079187853261828],[-0.019456870853901,-0.033637706190348,0.0016774001996964],[0.03394179046154,0.0033494385425001,-0.033976759761572]],[[0.08326455950737,0.0081645464524627,0.017505455762148],[-0.043479595333338,-0.014488162472844,0.040114875882864],[0.024543266743422,0.015990598127246,0.042064420878887]],[[0.071762248873711,-0.026015546172857,0.082380324602127],[-0.0020616005640477,0.022981790825725,-0.13317115604877],[0.01944269798696,-0.025138594210148,0.042797841131687]],[[-0.035269264131784,-0.030271165072918,-0.097933448851109],[0.0092685651034117,-0.072467938065529,-0.071387261152267],[0.0056683286093175,0.051315076649189,-0.015036444179714]],[[0.01927025616169,-0.10294577479362,-0.073154538869858],[0.032289490103722,0.072221167385578,0.048469483852386],[0.008189270272851,0.033209536224604,0.00010108851711266]],[[0.016542673110962,0.010237589478493,-0.035367045551538],[0.01302692387253,-0.054564643651247,-0.021412525326014],[-0.01442442741245,-0.041064355522394,-0.040594290941954]],[[0.024038186296821,-0.075450301170349,-0.043787609785795],[-0.025828197598457,0.02466437779367,-0.039188351482153],[0.013990881852806,-0.01171038299799,0.0035628762561828]],[[-0.008712325245142,0.053983770310879,0.02372458204627],[0.051739491522312,-0.017870699986815,0.012473241426051],[-0.0003488068759907,0.019995179027319,-0.021231509745121]],[[-0.0024163422640413,0.022968262434006,-0.077754721045494],[-0.01295408885926,0.044320654124022,-0.0078775333240628],[-0.017324324697256,-0.014490268193185,-0.024897338822484]],[[-0.10361670702696,-0.013611895032227,-0.061334852129221],[-0.01439290959388,-0.009073531255126,0.018857115879655],[-0.060688078403473,-0.021355973556638,0.026294581592083]],[[-0.027452681213617,0.003217495046556,0.049996208399534],[-0.069858834147453,0.099203281104565,0.037480674684048],[0.048729337751865,-0.024745997041464,0.088986024260521]],[[0.0037504124920815,0.033731579780579,0.010142443701625],[-0.054521564394236,-0.039421360939741,-0.0025466014631093],[0.0099796541035175,-0.014096598140895,-0.063906967639923]],[[0.062127783894539,0.14633856713772,-0.063108131289482],[0.011632543057203,-0.019030541181564,-0.075012914836407],[0.018649255856872,-0.011538431979716,-0.041764326393604]],[[-0.0097680119797587,0.017680322751403,0.046058636158705],[-0.017206782475114,-0.068574264645576,0.01750841178],[-0.0009966001380235,-0.0040854681283236,0.077237002551556]],[[0.031164705753326,0.019696805626154,0.072713695466518],[-0.018690461292863,0.019330590963364,-0.015960803255439],[0.013917844742537,-0.021409032866359,-0.027256054803729]],[[0.0042887651361525,0.035432927310467,0.049372896552086],[-0.027963563799858,-0.022697549313307,0.011170892976224],[0.058374680578709,-0.066595710813999,0.084271110594273]],[[-0.0057313721626997,-0.024175791069865,0.044291444122791],[-0.053258664906025,-0.046364471316338,-0.0066088773310184],[0.0071330699138343,0.022662118077278,-0.02506553567946]],[[0.055795591324568,0.052532002329826,-0.04718267545104],[0.058716792613268,0.036297895014286,0.0096145570278168],[-0.00031104875961319,-0.0074090412817895,-0.011013569310308]],[[0.021905677393079,0.038820613175631,-0.060502719134092],[-0.035304345190525,0.01906144618988,0.01136969961226],[0.030725372955203,-0.0093303788453341,0.047557201236486]],[[-0.01827846840024,0.0052345469594002,0.039579819887877],[-0.0062327464111149,-0.022682674229145,-0.073135577142239],[-0.009144825860858,-0.046083852648735,-0.015451020561159]],[[0.097425408661366,0.048127982765436,0.066449128091335],[-0.039298586547375,-0.038688346743584,0.0088866343721747],[-0.022025251761079,0.010031646117568,-0.017880087718368]],[[0.018340598791838,0.0016817946452647,-0.015037820674479],[-0.023555379360914,-0.088171996176243,-0.033304166048765],[-0.027756249532104,-0.044690269976854,-0.0029439881909639]],[[-0.11139208078384,0.046742901206017,0.0648278221488],[-0.097321748733521,-0.075820989906788,0.010619268752635],[-0.032688949257135,0.054042141884565,0.067598737776279]],[[-0.032793991267681,-0.0066393772140145,0.092845655977726],[-0.0031195550691336,-0.040179338306189,0.035752583295107],[0.080407410860062,-0.018846500664949,-0.080823659896851]],[[-0.10485739260912,-0.08537133783102,-0.041674457490444],[0.062209412455559,0.018615854904056,-0.026994604617357],[-0.00080803234595805,-0.023351818323135,0.029326997697353]],[[0.0044686961919069,-0.094745516777039,-0.038601938635111],[-0.023692581802607,0.013319433666766,0.080858923494816],[0.017506478354335,-0.023414544761181,-0.059706907719374]],[[-0.08311078697443,-0.032710019499063,0.034734055399895],[-0.099880233407021,-0.015609385445714,0.020259376615286],[-0.042888648808002,-0.0055511784739792,0.1368346363306]],[[-0.02181631885469,-0.0065986425615847,-0.0022425407078117],[0.01281500607729,0.085347972810268,0.051774069666862],[0.012943065725267,-0.069019816815853,-0.074421428143978]],[[-0.015869420021772,-0.042052697390318,0.075418896973133],[0.1313374787569,-0.023686984553933,0.0031615365296602],[-0.019254164770246,-0.0050850533880293,-0.0025633026380092]],[[-0.10167219489813,-0.0030322775710374,0.038139384239912],[-0.029685379937291,-0.021119287237525,0.033804457634687],[0.00053691276116297,-0.05217918753624,-0.010969240218401]],[[0.019620925188065,-0.075752533972263,-0.0088081210851669],[-0.0098841292783618,-0.057592730969191,0.028166579082608],[0.013892916962504,-0.017954731360078,0.06578467041254]],[[-0.011272230185568,0.024252418428659,-0.009985770098865],[0.034742295742035,-0.041875202208757,0.053664840757847],[-0.024739816784859,-0.031928580254316,0.086773701012135]],[[0.016163786873221,0.016609465703368,0.036312110722065],[-0.009859262034297,-0.019361076876521,0.0028380767907947],[0.022137202322483,0.033451270312071,-0.043132413178682]],[[-0.040087055414915,-0.013314390555024,-0.011149727739394],[-0.070733733475208,-0.079115353524685,0.045578353106976],[-0.01847886107862,-0.025723805651069,-0.0075143636204302]],[[0.040636982768774,0.076585374772549,-0.090828090906143],[0.033538874238729,0.015391023829579,-0.041563525795937],[-0.041982866823673,-0.022676242515445,0.093445047736168]],[[-0.0098397051915526,-0.063032753765583,0.070443384349346],[0.030541561543941,0.0143006388098,-0.0075667090713978],[0.018460618332028,-0.064766153693199,-0.026073027402163]],[[-0.035785764455795,0.0045684943906963,-0.051413781940937],[0.027304483577609,-0.11832062155008,0.018780045211315],[0.063485540449619,-0.010336173698306,-0.0086655309423804]],[[-0.0083290981128812,-0.048592764884233,-0.010697802528739],[0.027217524126172,-0.058762095868587,0.062714450061321],[0.016377938911319,-0.009967964142561,0.050017140805721]],[[-0.018495904281735,0.0037888812366873,-0.012718429788947],[-0.029275424778461,-0.096868932247162,-0.034913301467896],[-0.097151570022106,-0.0025349888019264,0.039623018354177]],[[0.021126044914126,0.015826174989343,0.054337196052074],[-0.072028644382954,0.026628892868757,-0.0040735476650298],[0.046111810952425,-0.0094630857929587,0.031521044671535]],[[0.060417730361223,0.0010759417200461,0.017912054434419],[0.070233352482319,0.055292241275311,0.054782640188932],[-0.014293941669166,0.014291225932539,-0.059660360217094]],[[-0.0012448229826987,0.0055757220834494,0.019063865765929],[-0.02401459403336,0.037189066410065,0.085316441953182],[-0.020411798730493,0.01865641027689,0.010462884791195]],[[-0.045717496424913,-0.013830924406648,0.037011925131083],[-0.083339221775532,-0.0023953642230481,0.081138007342815],[-0.072423323988914,-0.0031013337429613,0.02008936367929]],[[-0.052514117211103,0.036492682993412,-0.053812328726053],[-0.073355562984943,0.0059348703362048,0.031322073191404],[0.019857436418533,0.018711844459176,-0.051953781396151]],[[-0.013084234669805,0.020948903635144,0.037445157766342],[2.9208360956545e-06,0.012672986835241,-0.082365438342094],[-0.021662149578333,0.032610591500998,-0.041671063750982]],[[0.045243572443724,0.044334251433611,0.083969905972481],[-0.040607940405607,0.021416006609797,-0.016539767384529],[0.044992618262768,-0.032536592334509,0.038138084113598]],[[0.057004064321518,-0.034599933773279,-0.07499697804451],[-0.011623813770711,0.032764341682196,-0.051158025860786],[-0.047825813293457,-0.019775433465838,-0.034678969532251]],[[0.065611094236374,0.094178289175034,0.094873674213886],[-0.063800789415836,-0.027158452197909,-0.016749734058976],[-0.025100648403168,-0.053571444004774,-0.04003581777215]],[[0.036474466323853,0.010280009359121,0.0058690146543086],[0.04040552303195,0.015013537369668,-0.018440144136548],[-0.0065349461510777,0.0081743225455284,0.0020161108113825]],[[-0.052287980914116,0.0015592656563967,0.044195353984833],[-0.040798503905535,0.045850094407797,-0.050960838794708],[0.062705487012863,-0.034274779260159,-0.066230192780495]],[[0.0098046008497477,0.0111199086532,-0.039461590349674],[-0.0035641200374812,-0.028919566422701,-0.020919581875205],[-0.026945626363158,0.030469987541437,0.059286691248417]],[[0.052211128175259,-0.055376049131155,-0.064178600907326],[0.01433331053704,-0.22183658182621,-0.061964485794306],[0.027816718444228,-0.017023922875524,-0.15011177957058]],[[0.0057408674620092,-0.10248575359583,0.054462820291519],[0.1428197324276,-0.011512697674334,-0.12074895948172],[0.046941101551056,0.0043084365315735,0.0060220160521567]],[[-0.0056855105794966,-0.029799869284034,-0.12275961786509],[0.077537588775158,0.030675875023007,0.017251057550311],[0.028904996812344,-0.0016328463098034,0.039017397910357]],[[-0.0092941066250205,-0.0093878787010908,0.021010257303715],[0.0070879240520298,-0.0068809050135314,0.014326722361147],[0.023412469774485,0.031837962567806,0.067569896578789]],[[0.034697107970715,-0.022141991183162,-0.050383903086185],[0.12762230634689,-0.053204219788313,-0.034258078783751],[0.032365757972002,0.10731066763401,-0.072279810905457]],[[-0.14962251484394,0.088392235338688,-0.10306548327208],[0.053871806710958,-0.051725726574659,-0.021284874528646],[0.0360495634377,0.081809274852276,-0.0076499916613102]],[[-0.036358714103699,-0.030282696709037,-0.054647728800774],[-0.0096476720646024,-0.097222253680229,-0.0071064196527004],[-0.020676471292973,0.027285294607282,0.023104101419449]],[[-0.0048160566948354,0.035031046718359,0.029820581898093],[0.084981262683868,-0.024415204301476,0.05929559096694],[0.0016404469497502,-0.083992578089237,-0.046080838888884]],[[-0.046981304883957,-0.075830571353436,-0.021206989884377],[0.03857235237956,-0.023264342918992,0.056381691247225],[0.028339663520455,0.051987484097481,0.034142076969147]],[[-0.013971764594316,0.033731319010258,0.056802656501532],[0.024867679923773,0.022604499012232,0.011225445196033],[0.019028108566999,0.0311209410429,-0.025426017120481]],[[-0.030526490882039,0.029450135305524,-0.057325109839439],[0.029848393052816,0.035705167800188,0.072697311639786],[0.044799707829952,-0.009247837588191,0.020601145923138]],[[-0.075655370950699,0.025331269949675,0.051047697663307],[-0.023205449804664,-0.042019784450531,0.0070562455803156],[-0.016268871724606,-0.024935305118561,-0.00079640693729743]],[[-0.017658889293671,0.06335611641407,-0.094317838549614],[-0.020801210775971,-0.028340291231871,-0.060985498130322],[0.0071236896328628,0.070409700274467,-8.5875682998449e-05]],[[-0.085471838712692,0.031132942065597,-0.085662834346294],[-0.050739519298077,0.068307816982269,0.033794045448303],[-0.068195529282093,0.041987914592028,0.00083976780297235]],[[-0.011410099454224,-0.020596580579877,0.010202729143202],[-0.12387924641371,-0.020440179854631,-0.014212733134627],[-0.016687512397766,-0.038676492869854,-0.014514659531415]],[[0.022715227678418,-0.033356003463268,0.0075691938400269],[0.092598922550678,0.00823740568012,0.080462001264095],[-0.034945745021105,-0.082624487578869,0.05752307549119]],[[0.033645235002041,-0.067790858447552,0.023603411391377],[0.028539828956127,-0.028207313269377,-0.06271593272686],[-0.0036971673835069,0.044761467725039,-0.0060003958642483]],[[0.029077777639031,-0.0051297242753208,0.013990815728903],[0.020255258306861,0.024236630648375,0.035824004560709],[-0.0030773084145039,-0.028114285320044,0.0040264292620122]],[[-0.063916057348251,-0.029771398752928,-0.065282858908176],[-0.060454502701759,0.049597468227148,0.0036589102819562],[0.036011826246977,0.07572989910841,0.11258445680141]],[[-0.037354957312346,-0.023768797516823,0.13045956194401],[0.00096273585222661,0.088075026869774,-0.035180401057005],[-0.038047201931477,-0.11206736415625,0.037881504744291]],[[-0.033067997545004,-0.053717169910669,-0.034306388348341],[0.040429148823023,-0.043118551373482,0.069352254271507],[0.0076583484187722,0.087821327149868,0.087317377328873]],[[-0.019722916185856,-0.043644163757563,-0.049858320504427],[-0.058496061712503,0.016150815412402,-0.076722249388695],[0.008443652652204,0.032344371080399,0.00055604701628909]],[[-0.0051242364570498,-0.052489083260298,0.040515329688787],[-0.052384201437235,0.0015200772322714,0.031998574733734],[0.036387614905834,0.061852905899286,0.04140542820096]],[[-0.018905280157924,0.0063220332376659,-0.056498397141695],[0.037197459489107,0.065862558782101,-0.030238339677453],[0.019591506570578,0.056764077395201,0.034703508019447]],[[0.055572345852852,0.0019555874168873,0.0078139528632164],[0.018658895045519,0.013354490511119,-0.12966367602348],[0.043202113360167,0.021359264850616,0.005830873735249]],[[0.086714066565037,0.036882553249598,-0.0076066288165748],[0.033060312271118,0.024920081719756,-0.017595164477825],[0.020689036697149,0.024882629513741,0.010395889170468]],[[0.011812692508101,-0.022478280588984,-0.014744735322893],[0.065294168889523,-0.13357143104076,-0.095453009009361],[0.010386930778623,0.033058263361454,0.018978303298354]],[[-0.041332293301821,0.019652854651213,0.047535620629787],[0.036658894270658,0.027620865032077,-0.001993577927351],[0.0015273176832125,-0.040791139006615,-0.023213455453515]],[[-0.040674805641174,-0.045250289142132,-0.024502160027623],[-0.051631215959787,0.0038329027593136,-0.05690161138773],[-0.018633361905813,0.0011913437629119,0.057428892701864]],[[-0.032848071306944,-0.03257143497467,0.021398466080427],[0.042038939893246,-0.072446778416634,-0.010590344667435],[-0.02235109359026,-0.071655839681625,-0.036687590181828]],[[-0.040678143501282,0.077374577522278,-0.017353126779199],[-0.034280598163605,0.015317350625992,-0.012656067498028],[0.018996302038431,0.041568577289581,-0.024874217808247]],[[-0.02504033409059,0.04080493748188,0.042586654424667],[-0.056374035775661,0.020889541134238,0.072011791169643],[-0.049651652574539,-0.034530695527792,-0.076860971748829]],[[0.031008036807179,0.03308517858386,0.033059630542994],[0.028253072872758,-0.011811194010079,0.018896197900176],[0.025653993710876,-0.095469400286674,0.038822498172522]],[[0.062470607459545,0.16124427318573,0.0018012978835031],[0.0050925281830132,0.01164407748729,-0.027642019093037],[-0.030783135443926,-0.031365688890219,-0.041588872671127]]],[[[0.085405401885509,0.025728818029165,-0.013844922184944],[0.04029118642211,-0.065413944423199,0.086105637252331],[0.033448837697506,0.010389476083219,-0.032504297792912]],[[0.0054640416055918,-0.080214358866215,-0.054211847484112],[0.025813752785325,0.041000202298164,-0.055911332368851],[-0.041730165481567,0.023718390613794,-0.13356873393059]],[[-0.011471206322312,0.0038782129995525,-0.035941638052464],[-0.0074941064231098,-0.030235763639212,-0.045133460313082],[0.048629485070705,-0.0072967768646777,-0.014569700695574]],[[0.0018228499684483,0.046694230288267,0.065848216414452],[-0.027226660400629,0.01863981410861,0.030483201146126],[0.11774365603924,-0.0039922283031046,0.040260571986437]],[[-0.02224363014102,0.057612258940935,0.010099009610713],[-0.083117708563805,0.0084804678335786,-0.0817930996418],[-0.041159607470036,-0.049939163029194,6.1739163356833e-05]],[[0.037093106657267,-0.035210777074099,-0.033049423247576],[-0.011993383057415,0.00037072203122079,-0.0037416527047753],[0.054817952215672,0.022307351231575,0.02465889416635]],[[-0.030460627749562,0.093353480100632,-0.10568306595087],[0.0027300540823489,-0.016099419444799,-0.06546064466238],[-0.040973026305437,0.0097183855250478,0.011248379014432]],[[-0.0034911599941552,0.041249264031649,0.017780730500817],[-0.017624517902732,-0.031679704785347,0.085395745933056],[0.035977624356747,0.048139300197363,0.042994949966669]],[[-0.08179710060358,0.034918546676636,-0.044268690049648],[0.075552463531494,0.036205265671015,-0.067150861024857],[0.028366500511765,0.061299629509449,0.010553132742643]],[[0.028195993974805,-0.036280494183302,-0.057601388543844],[-0.00072569114854559,0.04739148914814,0.098494611680508],[0.080300278961658,-0.038295146077871,-0.01658127643168]],[[-0.016342928633094,0.033486846834421,0.01242533326149],[-0.095619812607765,-0.061944413930178,-0.0085057634860277],[0.02813944965601,0.057312995195389,-0.11585147678852]],[[-0.078775174915791,-0.00052542652701959,0.073795095086098],[-0.0060445684939623,0.014438847079873,-0.05357338860631],[-0.032075382769108,-0.032295949757099,0.067730203270912]],[[0.017075920477509,-0.037092439830303,0.065972670912743],[0.010774394497275,0.047652259469032,0.077479183673859],[-0.0126186106354,0.025169732049108,-0.062007308006287]],[[-0.074530810117722,-0.054298311471939,-0.040599286556244],[0.0073709660209715,-0.10345857590437,0.10364722460508],[-0.025080472230911,0.013681035488844,0.076981708407402]],[[0.023999866098166,-0.017387509346008,-0.028491521254182],[0.017376113682985,0.04242967441678,-0.065700605511665],[-0.12307827174664,-0.0062249796465039,0.035307630896568]],[[0.0019727440085262,0.12201303243637,-0.054970853030682],[-0.010870500467718,0.019777690991759,-0.018991092219949],[0.013851682655513,-0.0080896615982056,-0.023025644943118]],[[0.057261306792498,0.011571559123695,0.010092562064528],[-0.02174779959023,-0.061779256910086,0.0040042763575912],[0.016492770984769,-0.082484193146229,-0.0047404761426151]],[[-0.10328362882137,-0.092573679983616,-0.071414291858673],[-0.0051695401780307,0.02257464826107,-0.072783671319485],[-0.007216508500278,-0.086014740169048,-0.0060725123621523]],[[0.048361338675022,-0.005137899890542,-0.041872087866068],[0.0077901207841933,0.084952957928181,-0.018441086634994],[-0.012889339588583,-0.0059743165038526,0.063322104513645]],[[0.00084519397933036,-0.018760733306408,-0.0069219912402332],[-0.06375627219677,-0.065742947161198,-0.029875235632062],[-0.018173210322857,0.031577732414007,-0.074907593429089]],[[0.075019143521786,-0.05166844278574,0.011546353809536],[-0.013656171970069,0.0086626168340445,-0.051072683185339],[0.050605166703463,0.026551239192486,-0.048181135207415]],[[-0.025411274284124,-0.025916781276464,0.0070507214404643],[0.02692911401391,0.097790233790874,-0.021131986752152],[-0.061210040003061,0.053599007427692,-0.013081199489534]],[[0.099841833114624,-0.0014686965150759,-0.036372907459736],[-0.061155870556831,-0.044764563441277,-0.056301657110453],[0.019454102963209,-0.006382966414094,0.00086414092220366]],[[0.046244464814663,0.019837433472276,-0.00036722322693095],[-0.028796007856727,0.046365808695555,-0.082400947809219],[-0.044514093548059,0.0074552726000547,-0.021999284625053]],[[0.055311977863312,-0.065508671104908,-0.041848361492157],[0.062138918787241,0.021198028698564,-0.029374646022916],[-0.018542790785432,-0.042862623929977,-0.026359302923083]],[[-0.062473621219397,0.025493225082755,0.02851690351963],[-0.0036793169565499,0.0094067538157105,-0.004247791133821],[-0.017275812104344,-0.046588845551014,-0.0049089901149273]],[[-0.032374873757362,0.039962444454432,-0.058216068893671],[0.016785774379969,0.0056169428862631,-0.022922890260816],[-0.0081248646602035,0.012298331595957,0.020507663488388]],[[-0.03270622715354,0.01281394995749,0.036028869450092],[-0.018309971317649,-0.021184578537941,0.087508223950863],[0.015262147411704,0.061687227338552,0.067793034017086]],[[-0.020623084157705,-0.060928367078304,-0.06955998390913],[-0.0079574817791581,-0.052563332021236,0.055415391921997],[-0.05768895149231,0.0200290735811,0.018584338948131]],[[0.082687765359879,0.0055266986601055,-0.015411660075188],[0.037638571113348,0.06465195864439,-0.022177023813128],[-0.01165902428329,0.018504627048969,-0.033635847270489]],[[0.04517662525177,-0.029134646058083,0.019767308607697],[-0.051877066493034,0.014912570826709,0.036730334162712],[0.036367326974869,-0.033435087651014,0.03988666087389]],[[-0.043481171131134,0.0045678541064262,0.075738966464996],[0.086951211094856,0.05669803917408,0.0034329723566771],[0.047349497675896,0.028646500781178,0.012534656561911]],[[-0.061861678957939,0.092145897448063,-0.015810651704669],[0.052366066724062,0.072175897657871,-0.05085476487875],[-0.057248663157225,-0.01212770678103,0.059078626334667]],[[-0.028954910114408,0.10135693848133,-0.007622720208019],[0.042425286024809,0.038626477122307,0.08320165425539],[-0.036372944712639,0.058158006519079,0.013538367114961]],[[0.0097542041912675,-0.011248111724854,-0.0070749651640654],[-0.062343269586563,0.10878986865282,-0.0075538447126746],[-0.039121836423874,-0.035875130444765,-0.044745333492756]],[[0.10937368869781,-0.038116186857224,-0.035211350768805],[0.029416223987937,-0.10011231899261,-0.0062767593190074],[0.0043812962248921,0.025363627821207,-0.089935801923275]],[[0.013141279108822,-0.0034116413444281,0.016206327825785],[-0.0056933024898171,-0.019982507452369,-0.010706559754908],[-0.037861689925194,-0.055290892720222,-0.046134684234858]],[[-0.068699710071087,0.0071884817443788,-0.012585680931807],[-0.049720425158739,-0.019661726430058,-0.07261823117733],[-0.048431970179081,0.056492082774639,-0.024809425696731]],[[0.01205091457814,0.064009740948677,0.014190088957548],[0.088248759508133,-0.0098457541316748,0.020702246576548],[-0.13426028192043,-0.024535210803151,-0.017892761155963]],[[0.01218593493104,-0.011173217557371,-0.010346830822527],[0.067783862352371,0.12136798352003,0.023402590304613],[-0.050032626837492,0.072984494268894,-0.088757894933224]],[[-0.06625946611166,-0.069956891238689,-0.10094727575779],[-0.053332351148129,0.018569547683001,-0.085661046206951],[-0.065513044595718,0.02147775888443,-0.010169963352382]],[[0.13633085787296,0.049778815358877,0.09910037368536],[0.00040575317689218,0.072829879820347,-0.004121680278331],[0.032867856323719,0.076642960309982,0.017704805359244]],[[0.029241280630231,0.11496394127607,0.11298956722021],[0.071407072246075,-0.052313681691885,0.048748727887869],[0.02247710339725,0.057523611932993,0.10313554853201]],[[0.0027968843933195,-0.028278136625886,0.014362634159625],[-0.097778551280499,-0.012361414730549,0.058370761573315],[-0.066818237304688,0.091080404818058,0.04334370046854]],[[0.090039357542992,0.0086132241412997,-0.070186950266361],[0.050092931836843,0.053326699882746,0.01741311326623],[0.017102032899857,0.087069325149059,-0.019115107133985]],[[-0.1164306551218,0.22818829119205,0.051150169223547],[0.17721422016621,0.080059163272381,0.14396159350872],[-0.011392110958695,0.2067354619503,0.098339110612869]],[[0.02997406758368,-0.00037275906652212,-0.02942006289959],[0.004876684397459,-0.039210792630911,0.00094366580015048],[-0.0061325212009251,0.035932384431362,0.096567489206791]],[[-0.07283678650856,-0.066440761089325,0.035182621330023],[-0.060782719403505,0.075925834476948,-0.012589174322784],[-0.033256962895393,-0.013493876904249,-0.022370891645551]],[[0.037331219762564,-0.054867997765541,0.071570679545403],[-0.011291375383735,-0.060418374836445,-0.0048958868719637],[-0.028947664424777,-0.031739391386509,0.023448472842574]],[[-0.0065993973985314,-0.030172614380717,0.017952745780349],[-0.066721647977829,-0.030038502067327,-0.067770943045616],[0.011787906289101,-0.0023991707712412,-0.0046603512018919]],[[0.063169300556183,-0.026233522221446,-0.056528486311436],[0.0070349215529859,-0.041056793183088,0.028727017343044],[-0.065634101629257,0.028668023645878,0.033009517937899]],[[0.069217652082443,0.02826570905745,-0.021610930562019],[0.035322684794664,-0.011123344302177,-0.048374082893133],[-0.020618833601475,-0.073871403932571,-0.054663009941578]],[[0.060925014317036,-0.014360087923706,-0.015791377052665],[0.015859154984355,0.02789219468832,-0.066828183829784],[0.073553390800953,-0.014804808422923,-0.052036423236132]],[[0.043185941874981,-0.021760990843177,0.092267267405987],[-0.024188468232751,0.015077695250511,0.065342262387276],[-0.0033255119342357,0.0044179232791066,-0.0011413072934374]],[[0.040363896638155,0.00064808514434844,-0.0044474331662059],[0.050058104097843,0.03479765355587,0.010532990098],[0.069481216371059,-0.0073912083171308,-0.10425338149071]],[[0.0023434339091182,0.029144668951631,0.014695473015308],[0.0083179520443082,0.02050581201911,0.0093319984152913],[-0.004157792776823,-0.037067711353302,-0.09632583707571]],[[0.077897362411022,-0.030241977423429,0.22697131335735],[0.025427781045437,-0.0006409240886569,-0.058833982795477],[0.049935385584831,-0.002225189935416,0.093064837157726]],[[-0.038342073559761,0.093234188854694,0.056145437061787],[0.04889315366745,0.025816362351179,-0.00056667812168598],[0.076599918305874,-0.0013918476179242,0.0013600613456219]],[[0.061297543346882,0.093882188200951,0.077394396066666],[0.020794626325369,-0.059633143246174,0.10273560136557],[-0.0019477517344058,0.099214196205139,-0.029772331938148]],[[0.019652916118503,-0.040088754147291,0.036583174020052],[-0.0074777835980058,0.0076205017976463,-0.019447464495897],[-0.020784372463822,-0.051491063088179,-0.013707874342799]],[[0.042373545467854,0.011336855590343,0.090997010469437],[-0.00062130315927789,-0.040907982736826,0.099342972040176],[-0.0073448694311082,0.054686058312654,0.038137461990118]],[[-0.031292501837015,0.016813782975078,1.09410029836e-05],[-0.028680145740509,-0.046953104436398,0.010180347599089],[0.030089534819126,-0.022579872980714,0.00072386220563203]],[[-0.016982143744826,0.084742605686188,-0.021774902939796],[-0.0020642187446356,0.0044200979173183,-0.011382706463337],[0.012015277519822,-0.0099638123065233,-0.011768832802773]],[[-0.0039770193397999,0.034799721091986,0.052192442119122],[0.03569071367383,0.061889812350273,0.031829319894314],[0.053924046456814,0.043072059750557,0.081141427159309]],[[-0.0434610247612,-0.05985563993454,0.033658508211374],[0.0044590984471142,0.066198334097862,-0.0023753102868795],[-0.013806001283228,-0.016311768442392,-0.012136512435973]],[[-0.020970771089196,-0.025279354304075,-0.015928519889712],[0.020869640633464,-0.064789786934853,0.022075671702623],[0.066805444657803,0.029259605333209,0.018925556913018]],[[-0.065205737948418,-0.028599424287677,0.084573909640312],[-0.029361173510551,-0.053747713565826,0.015076910145581],[0.0086020482704043,0.011170230805874,-0.0053886342793703]],[[0.093099743127823,0.01604326441884,-0.074085272848606],[0.042114622890949,0.059757333248854,-0.011115781031549],[0.075804494321346,0.018900150433183,-0.00054163468303159]],[[0.049016799777746,0.022978600114584,-0.018076153472066],[0.011778505519032,0.024144833907485,0.087282814085484],[0.028695564717054,0.090823568403721,-0.052483934909105]],[[-0.088653549551964,-0.027350891381502,-0.012618809007108],[0.038335874676704,-0.023456832394004,0.0095164617523551],[-0.01901769079268,-0.087740331888199,0.0486482642591]],[[-0.046354111284018,-0.038010355085135,0.056425902992487],[0.06652969866991,0.025523938238621,0.094377860426903],[0.11013120412827,0.059851326048374,0.095880724489689]],[[0.018089838325977,-0.051672112196684,-0.015924416482449],[-0.022555027157068,-0.025523819029331,0.005283385515213],[-0.046773444861174,0.032110441476107,-0.063327021896839]],[[-0.028330199420452,0.020325725898147,0.011400078423321],[-0.035580944269896,-0.017816221341491,0.020842691883445],[-0.046442676335573,-0.079610154032707,-0.036564394831657]],[[-0.025368982926011,0.11646901071072,0.044634200632572],[0.040908008813858,-0.085521332919598,0.031711012125015],[-0.031664382666349,0.084884837269783,-0.0024690476711839]],[[0.062841266393661,-0.015090627595782,0.026242282241583],[-0.0060356920585036,0.041680075228214,-0.029188547283411],[0.040439657866955,-0.031900458037853,0.014242166653275]],[[-0.043920859694481,0.0071614398621023,0.0049051330424845],[-0.058363538235426,-0.096759386360645,-0.002427265746519],[-0.0066126696765423,-0.01475088018924,0.0022613741457462]],[[-0.079460285604,0.033678166568279,0.058001458644867],[-0.034676965326071,0.083398655056953,0.0010420331964269],[0.0029603065922856,-0.0086443303152919,0.013101291842759]],[[0.12989120185375,0.042450144886971,-0.027192490175366],[0.015263767912984,-0.0067887045443058,0.047652557492256],[0.069001756608486,0.048165090382099,0.0043685943819582]],[[-0.094178669154644,-0.099422067403793,-0.0052037951536477],[0.033773083239794,-0.007538094650954,-0.005674097687006],[-0.096580065786839,0.017448730766773,-0.059117712080479]],[[-0.027500810101628,-0.0087716011330485,-0.058854464441538],[0.013702593743801,0.026839939877391,0.0018480950966477],[-0.020037211477757,-0.0062784045003355,0.07555329054594]],[[-0.050141863524914,-0.021431541070342,-0.0033269920386374],[-0.012564499862492,-0.080705277621746,0.041238844394684],[-0.040472682565451,-0.0053735785186291,-0.020679701119661]],[[-0.037622161209583,0.060889165848494,0.034212041646242],[0.047605197876692,-0.021887110546231,-0.061584785580635],[0.0080772703513503,0.0017405251273885,0.014646047726274]],[[0.028672702610493,0.014696947298944,-0.030683880671859],[0.092570573091507,0.045390672981739,-0.00064571062102914],[0.015233257785439,-0.020713834092021,-0.071946777403355]],[[0.03366032242775,-0.049862142652273,-0.049020379781723],[0.008110829629004,0.019313678145409,0.015821816399693],[0.11703833937645,0.06168556958437,0.025012280791998]],[[0.067659825086594,-0.013261014595628,0.075845152139664],[-0.024071170017123,-0.021868051961064,-0.011913012713194],[-0.0091981831938028,-0.052850302308798,0.00019827009236906]],[[0.052147049456835,-0.042658381164074,0.036600839346647],[0.044374652206898,0.0041855596937239,0.038595978170633],[0.0029689786024392,-0.080710135400295,-0.014447196386755]],[[-0.0082427738234401,-0.092463739216328,-0.012999237515032],[-0.039992392063141,0.066012352705002,0.0023855248000473],[-0.055019084364176,-0.027005560696125,0.07588891685009]],[[-0.079371869564056,-0.025333009660244,0.052472531795502],[0.045376040041447,0.0035603907890618,0.019411202520132],[0.03669012337923,-0.0072062676772475,-0.024611061438918]],[[0.1259161233902,-0.070307463407516,-0.059562724083662],[0.0179458912462,0.031996887177229,0.057403180748224],[0.010439474135637,-0.014257094822824,-0.028354749083519]],[[-0.024943895637989,-0.023931151255965,-0.048073027282953],[-0.080866374075413,-0.014107508584857,-0.020429000258446],[-0.022485053166747,-0.03803014755249,0.0019057058962062]],[[0.059548135846853,0.035390540957451,-0.046795759350061],[-0.013254792429507,0.041903726756573,0.060059789568186],[-0.0058902078308165,0.010701030492783,0.00026198677369393]],[[-0.02319742180407,-0.054285380989313,0.094205558300018],[-0.018251866102219,0.060053665190935,0.04935884103179],[-0.048238825052977,0.038093321025372,-0.021958192810416]],[[0.028028355911374,0.041239276528358,0.030147813260555],[0.0034616757184267,0.020026929676533,-0.031899936497211],[0.03574974834919,-0.036656949669123,0.037479810416698]],[[0.010190684348345,0.0030092627275735,-0.04076324403286],[0.059108391404152,0.0016986354021356,0.01696396432817],[-0.035136297345161,0.019351588562131,0.0088816182687879]],[[-0.034039586782455,-0.019017320126295,0.012124624103308],[-0.0089125484228134,-0.095110237598419,-0.033715352416039],[-0.12111160904169,-0.019951291382313,0.0032811150886118]],[[-0.028921673074365,0.024742819368839,-0.028631204739213],[0.031849876046181,0.041504446417093,-0.0093323867768049],[-0.0045055928640068,-0.025449072942138,-0.056763906031847]],[[-0.036360461264849,-0.035594172775745,-0.12592913210392],[0.047833096235991,0.0092298304662108,-0.021338883787394],[-0.036505226045847,0.023431055247784,0.017119891941547]],[[-0.061669111251831,0.049949008971453,0.080702871084213],[0.10652156174183,-0.013723207637668,0.038418307900429],[0.064164690673351,0.03081114590168,0.10424517095089]],[[-0.039954829961061,-0.0078711789101362,0.045460794121027],[0.023807803168893,0.027119098231196,0.012004854157567],[0.017530392855406,-0.018348559737206,-0.10095032304525]],[[0.14243955910206,0.048503085970879,-0.0050731115043163],[0.067670382559299,0.053584154695272,-0.033149491995573],[-0.037999410182238,-0.043823387473822,-0.04593550413847]],[[-0.070027209818363,0.0074610132724047,-0.028266128152609],[-0.049259211868048,-0.043913457542658,-0.067925535142422],[-0.0080144507810473,-0.010086426511407,-0.0037373141385615]],[[0.12960478663445,-0.016274491325021,0.098360493779182],[0.046359673142433,0.053109131753445,0.025146992877126],[0.053576022386551,0.037432331591845,0.051699813455343]],[[-0.017081504687667,-0.0021144768688828,0.090659387409687],[-0.076044172048569,0.037055257707834,-0.021701712161303],[0.075905255973339,0.0029146752785891,0.071909300982952]],[[-0.029083136469126,-0.060083236545324,0.0078809792175889],[-0.12642240524292,0.087477572262287,0.068597249686718],[0.0062818531878293,0.020820261910558,0.025347152724862]],[[-0.052784562110901,-0.0084079606458545,0.028832923620939],[0.00065413623815402,-0.078739687800407,0.0097130555659533],[0.0077378759160638,0.0080163162201643,0.067091040313244]],[[-0.0024882322177291,-0.010222271084785,0.043128401041031],[0.023452026769519,0.015539268031716,-0.040782928466797],[0.0048768660053611,-0.017103424295783,-0.0021907126065344]],[[0.033470373600721,-0.033334836363792,0.032158132642508],[0.031993936747313,-0.071512885391712,0.020316857844591],[0.03966623172164,0.011613437905908,0.0037047213409096]],[[0.042285170406103,0.011585681699216,-0.0066032288596034],[-0.10128619521856,-0.072548165917397,-0.032756861299276],[-0.037499293684959,0.080943033099174,0.023441420868039]],[[-0.067413456737995,-0.066923506557941,-0.027492724359035],[-0.035054851323366,0.044010113924742,-0.0057013016194105],[0.0078528756275773,-0.015446442179382,-0.056720614433289]],[[0.04193576797843,-0.010313950479031,0.096945218741894],[0.00063438474899158,0.0081087071448565,-0.056485306471586],[0.056050207465887,0.0014635529369116,-0.029645159840584]],[[0.010466396808624,0.01688864082098,0.077643163502216],[0.0017943175043911,-0.052825164049864,-0.1228793784976],[0.032452933490276,0.06565710157156,-0.024934396147728]],[[0.077734604477882,0.023026127368212,0.042000979185104],[-0.00038088599103503,0.064836412668228,-0.12238971889019],[0.031756307929754,-0.073655188083649,-0.12516030669212]],[[0.034511711448431,-0.0065274499356747,0.0054930835030973],[-0.009075746871531,-0.06393975764513,0.01016226503998],[-0.075365714728832,-0.033752229064703,0.042576193809509]],[[-0.070218905806541,0.010269870050251,0.019752962514758],[-0.021274395287037,-0.059940464794636,0.071178063750267],[0.09613411128521,-0.007429591845721,0.03341917693615]],[[-0.017740128561854,0.0008182036690414,-0.00019647380395327],[-0.030687231570482,0.026172647252679,-0.012273351661861],[0.0020037344656885,-0.040520705282688,0.036057531833649]],[[-0.061825778335333,0.062454789876938,-0.027430653572083],[-0.018582424148917,-0.0095004942268133,-0.041100867092609],[0.0057696159929037,0.00040445721242577,0.088786527514458]],[[0.05569652095437,-0.035488311201334,-0.030683184042573],[0.059543777257204,-0.035354573279619,-0.019074147567153],[-0.050556696951389,-0.035212837159634,0.064196474850178]],[[0.055394843220711,-0.0074944184161723,0.065132647752762],[0.085146605968475,0.008429897017777,-0.0053059365600348],[-0.0077012297697365,0.036275275051594,-0.077912800014019]],[[-0.013596502132714,0.044739827513695,0.072247691452503],[-0.019896641373634,0.10647694766521,-0.061785902827978],[0.015571674332023,0.071208626031876,-0.01575187779963]],[[-0.019999114796519,0.00083858729340136,0.01769644767046],[-0.078394614160061,-0.025323510169983,-0.022030387073755],[0.0014117643004283,-0.0075129102915525,0.09473080188036]],[[-0.040295347571373,-0.0042472700588405,0.0049572703428566],[-0.0033656742889434,0.047434840351343,0.011227872222662],[0.00029015773907304,0.019415017217398,-0.033307127654552]],[[0.01832071505487,-0.032964710146189,0.016215236857533],[0.050193853676319,-0.042869422584772,-0.058920539915562],[-0.05804605036974,-0.065725147724152,-0.088430002331734]],[[-0.040055889636278,0.012629975564778,-0.014488126151264],[0.0012133343843743,-0.043620564043522,0.048225611448288],[-0.010666579939425,-0.023165453225374,0.049643099308014]],[[-0.021318033337593,-0.0078172860667109,0.015096552670002],[0.069954410195351,0.067526943981647,0.031428147107363],[-0.062240716069937,-0.040782120078802,-0.022407665848732]],[[-0.040847189724445,0.093125879764557,-0.074729397892952],[-0.15127694606781,-0.012141632847488,0.022481556981802],[-0.049523457884789,-0.014280679635704,-0.023743774741888]],[[-0.028353974223137,0.011127104051411,-0.024401048198342],[-0.0025554576423019,-0.020528610795736,0.028713148087263],[0.076633155345917,0.019708415493369,-0.096325024962425]],[[0.1499090641737,-0.025958912447095,0.12729512155056],[0.025341371074319,0.02743180654943,0.030820412561297],[0.055409751832485,-0.027085730805993,-0.035923179239035]],[[-0.11648589372635,0.14841900765896,0.012449429370463],[0.10363940894604,0.02910253405571,0.053078170865774],[-0.028938328847289,0.054507542401552,0.018294917419553]]],[[[0.051027193665504,0.0081629315391183,-0.043712358921766],[0.01659001968801,-0.03349044919014,0.10425586998463],[-0.044468931853771,0.050400540232658,0.0011346654500812]],[[0.054849538952112,-0.1292849779129,-0.028270650655031],[0.077643141150475,0.032814163714647,-0.026758093386889],[0.011927792802453,0.018254652619362,0.01275103725493]],[[-0.060614075511694,-0.084994100034237,-0.012200662866235],[0.00061351084150374,0.0072972169145942,-0.023566028103232],[0.034482210874557,-0.023433361202478,-0.0085182934999466]],[[0.010576500557363,0.004072445910424,-0.032604515552521],[-0.040489107370377,0.059778407216072,0.017657175660133],[0.15571346879005,-0.022257074713707,-0.019912658259273]],[[0.054845351725817,-0.06179366260767,0.012429861351848],[0.07582625746727,-0.035330146551132,0.0048283617943525],[0.0045489855110645,-0.01245712954551,-0.025052541866899]],[[0.056811816990376,0.0026236379053444,-0.078693844377995],[0.021921815350652,-0.00022269043256529,0.021409155800939],[0.075668081641197,0.010084145702422,-0.0071110678836703]],[[0.038055215030909,-0.013303886167705,-0.01297904830426],[0.038238406181335,0.0022653001360595,-0.051296886056662],[0.010715362615883,-0.0033455488737673,0.032526407390833]],[[-0.005626994650811,-0.005649670958519,0.047629527747631],[-0.0011923251440749,0.0040106242522597,0.018169604241848],[0.081842787563801,-0.023782474920154,0.049570642411709]],[[0.058153048157692,0.0059040072374046,0.032123070210218],[0.018929600715637,0.027471069246531,0.0027325011324137],[-0.038021087646484,0.038959417492151,0.030446851626039]],[[0.029638631269336,-0.088334158062935,-0.015156419016421],[-0.049297526478767,-0.018611032515764,0.043236151337624],[0.072580225765705,-0.019555794075131,0.064845606684685]],[[-0.093384690582752,0.032784402370453,-0.017723761498928],[-0.01370135974139,0.036244999617338,0.042123556137085],[0.029463768005371,-0.035569615662098,0.034306693822145]],[[0.015065055340528,-0.034434180706739,-0.018787292763591],[0.0041977358050644,-0.020170157775283,-0.03496927767992],[-0.0039312718436122,0.048869214951992,-0.068408742547035]],[[-0.036465380340815,0.035797368735075,0.0089729931205511],[0.0072755664587021,-0.0033088312484324,0.026722488924861],[0.074167504906654,0.083756692707539,0.073386304080486]],[[-0.010620876215398,-0.0098903579637408,-0.011470359750092],[-0.050991512835026,-0.010216900147498,0.034783210605383],[0.089694082736969,-0.053419440984726,-0.10264850407839]],[[0.013487396761775,-0.0035976120270789,0.0051390179432929],[0.053596947342157,0.081117056310177,0.00059821689501405],[-0.016111474484205,0.039497390389442,-0.01398815959692]],[[-0.085829809308052,-0.041046768426895,0.012554918415844],[0.039635371416807,-0.018161792308092,-0.063998371362686],[-0.023747365921736,0.010339997708797,-0.025395961478353]],[[0.052713666111231,-0.041461773216724,-0.075976319611073],[-0.018705297261477,0.037093371152878,0.017054915428162],[-0.026045618578792,0.016285805031657,-0.014822576195002]],[[0.021678645163774,-0.025554228574038,0.042538870126009],[-0.073434941470623,-0.013326398096979,0.0016138917999342],[-0.017172081395984,-0.019500119611621,-0.026181997731328]],[[0.0071419379673898,-0.10066173225641,-0.048870783299208],[0.034664113074541,-0.017456654459238,-0.041002478450537],[0.064611010253429,0.025979408994317,-0.042846750468016]],[[-0.017284585162997,-0.038114354014397,0.0049509978853166],[0.0079117501154542,0.11778136342764,0.031829375773668],[-0.020191201940179,0.083024613559246,-0.0545435808599]],[[-0.025186307728291,0.0056424126960337,-0.046712514013052],[0.028069378808141,-0.047037683427334,0.031502518802881],[0.0018195606535301,-0.031151968985796,0.030721729621291]],[[0.01203394588083,0.032133810222149,0.084909416735172],[0.036261782050133,0.0024427028838545,0.026747524738312],[0.05620301887393,0.12726061046124,0.018140641972423]],[[0.00085624150233343,0.016942864283919,0.076510459184647],[0.093580417335033,-0.0054909065365791,-0.026646595448256],[-0.049211863428354,0.002599545288831,-0.054663307964802]],[[0.066915072500706,0.012962094508111,-0.021557077765465],[0.021292205899954,-0.0010727257467806,-0.019492976367474],[0.024170691147447,0.01859332062304,0.059133727103472]],[[-0.082896441221237,0.014678927138448,0.077546387910843],[-0.022036733105779,0.0087455520406365,-0.068998418748379],[0.039594400674105,0.069084443151951,-0.032167918980122]],[[0.025343995541334,-0.0665662586689,0.062852673232555],[-0.050187263637781,-0.0088265668600798,-0.008934723213315],[0.023515123873949,-0.0023040038067847,0.04166642203927]],[[0.0074876821599901,0.080175019800663,-0.001030222279951],[0.09072932600975,0.030173514038324,-0.0085673443973064],[0.06741014122963,-0.016102831810713,0.048632822930813]],[[-0.0057003637775779,-0.0042060138657689,0.0035101647954434],[0.029583601281047,0.0012858849950135,0.066479057073593],[-0.0069707250222564,0.038569398224354,0.0068508344702423]],[[0.027948576956987,-0.040680076926947,-0.070712804794312],[0.069125905632973,-0.051927894353867,0.041688915342093],[-0.018647182732821,-0.0077839554287493,-0.077827915549278]],[[-0.0017881136154756,0.011279055848718,-0.072861075401306],[-0.077070735394955,0.00049415836110711,-0.0086800567805767],[-0.0081885056570172,0.014321146532893,0.033353570848703]],[[0.0084140179678798,0.059473965317011,0.035481855273247],[-0.049323540180922,0.010576985776424,0.023048888891935],[0.0072254622355103,0.0060008997097611,-0.037460453808308]],[[-0.068911708891392,0.036970395594835,0.044846441596746],[0.017080567777157,-0.079751618206501,-0.065927147865295],[0.06521462649107,0.011912590824068,0.046567436307669]],[[0.034553576260805,0.089841201901436,0.019928196445107],[0.10171749442816,-0.035708270967007,0.10215044021606],[0.033548835664988,0.075989902019501,-0.01184834446758]],[[-0.03900071978569,-7.0194721047301e-05,0.028768923133612],[-0.015272598713636,-0.028026506304741,0.038520682603121],[-0.041796624660492,0.050634942948818,-0.0088692111894488]],[[-0.020154867321253,-0.035781942307949,-0.039786819368601],[-0.039818421006203,-0.03595582395792,-0.0058522149920464],[0.078071624040604,-0.03919966891408,0.030200092121959]],[[0.056338913738728,-0.0082648666575551,0.039175614714622],[0.018361832946539,-0.0097131812945008,0.0012079828884453],[-0.021912468597293,0.044902671128511,-0.020591411739588]],[[-0.0076455026865005,-0.03170582279563,-0.029709961265326],[0.026020329445601,0.034472335129976,0.036750063300133],[-0.033662594854832,-0.097537130117416,-0.04245488718152]],[[-0.059425443410873,0.033154081553221,-0.030310472473502],[-0.022488225251436,-0.08173193782568,0.045913856476545],[0.086998634040356,0.033374961465597,-0.027523282915354]],[[-0.033709246665239,0.012341354042292,-0.041921600699425],[-0.012532103806734,0.050028197467327,0.012614638544619],[-0.063292995095253,0.072240196168423,0.016831519082189]],[[0.035099823027849,0.0020082690753043,0.067567311227322],[0.028854055330157,0.030864302068949,0.018301300704479],[0.023620767518878,0.0018276408081874,0.10849384218454]],[[0.0046925279311836,0.049937233328819,0.03505502268672],[0.032574154436588,-0.00052482780301943,-0.0073544210754335],[0.064066700637341,-0.062181547284126,-0.08193202316761]],[[0.040368471294641,0.060020342469215,0.029625650495291],[0.088497206568718,0.065861776471138,0.060079589486122],[-0.029921405017376,0.074258409440517,0.038685213774443]],[[0.06810151040554,-0.00041270712972619,0.032224379479885],[0.018711771816015,-0.022435488179326,0.076961874961853],[-0.01108849234879,0.031454723328352,0.016154985874891]],[[0.062921702861786,0.084502369165421,-0.098784767091274],[-0.048863172531128,0.021853223443031,0.0065585668198764],[0.018079349771142,-0.058059100061655,-0.025293976068497]],[[-0.0087043093517423,0.048921622335911,0.024907572194934],[-0.03390821814537,0.00038025545654818,0.084656171500683],[0.067501924932003,0.05431430414319,-0.047172252088785]],[[0.050566457211971,0.067501716315746,0.018899414688349],[0.05386370792985,0.047705322504044,0.014620375819504],[-0.024813234806061,-0.031389277428389,0.010670282877982]],[[-0.0050744311884046,-0.066681712865829,-0.018391633406281],[-0.010928833857179,0.026892939582467,-0.035530369728804],[-0.033910069614649,-0.042641710489988,-0.073411121964455]],[[-0.042563211172819,0.010425579734147,-0.078400008380413],[-0.038166008889675,-0.075364977121353,-0.087264060974121],[0.0086991274729371,-0.036205723881721,-0.051018338650465]],[[-0.016885915771127,0.030257385224104,-0.049387224018574],[-0.061863161623478,-0.029828445985913,-0.046560000628233],[-0.059147730469704,-0.067639909684658,0.041713614016771]],[[-0.020969899371266,0.048911549150944,0.0033866262529045],[0.049759808927774,-0.029376255348325,-0.023197906091809],[-0.07281668484211,0.04436719045043,-0.0032186962198466]],[[-0.020049447193742,-0.031779322773218,-0.016783962026238],[-0.023560049012303,0.03377291560173,0.037142984569073],[-0.075557768344879,0.073330119252205,-0.047211181372404]],[[-0.025795420631766,-0.033283900469542,0.053027514368296],[0.0072507821023464,0.0070218099281192,-0.0080720959231257],[-0.02650267444551,0.00064412294887006,-0.039897762238979]],[[-0.061274420469999,-0.0088034858927131,-0.048055630177259],[-0.045564517378807,-0.042474534362555,0.0040232609026134],[0.033429056406021,-0.03204758092761,-0.044347506016493]],[[0.012030748650432,0.01987606100738,0.025874933227897],[-0.032263081520796,0.050688941031694,-0.011223213747144],[0.063342273235321,0.091222174465656,0.031251825392246]],[[0.03826541826129,0.1067967414856,0.033161967992783],[0.081891976296902,0.042074400931597,-0.08618738502264],[0.028828321024776,0.036733668297529,-0.063703536987305]],[[0.049278732389212,-0.0048636998981237,0.032129388302565],[-0.0790014564991,0.0015276186168194,0.02842091396451],[-0.010321285575628,-0.030383700504899,0.0028212263714522]],[[-0.057864911854267,0.032220609486103,0.016785241663456],[0.073573559522629,0.0031948057003319,0.11912976950407],[-0.063733465969563,0.015106958337128,0.081885442137718]],[[0.0073246187530458,-0.056566201150417,0.045004688203335],[0.031938787549734,0.041255384683609,0.012283643707633],[0.037799347192049,-0.1088380664587,0.013823001645505]],[[0.053158357739449,0.039825595915318,0.031282130628824],[0.0791040584445,0.038530752062798,-0.025026433169842],[0.034404996782541,0.0052356109954417,0.043081235140562]],[[0.077227033674717,0.046214815229177,-0.091427057981491],[-0.030361643061042,-0.020677080377936,-0.019958281889558],[-0.035542488098145,0.014672572724521,0.087307266891003]],[[0.096955001354218,-0.019450601190329,-0.0062365080229938],[0.0063593573868275,-0.0027090839575976,-0.12087056040764],[0.022442869842052,0.039569031447172,-0.047537293285131]],[[-0.020628068596125,0.061499211937189,-0.019806755706668],[-0.044203832745552,-0.039218325167894,-0.0053202104754746],[-0.011244711466134,-0.069251589477062,0.013746965676546]],[[0.031466826796532,0.055916458368301,-0.0096106445416808],[-0.02264048345387,0.034676350653172,-0.0049062282778323],[0.014877932146192,0.0046562091447413,0.011172412894666]],[[-0.038382947444916,-0.058565218001604,-0.019418204203248],[0.044788382947445,0.058333665132523,0.02602906152606],[0.035466324537992,0.0058865253813565,-0.055381268262863]],[[0.053509421646595,0.049383442848921,0.0039233244024217],[0.029545268043876,-0.027959132567048,-0.023580744862556],[-0.056463662534952,-0.037078883498907,0.015998521819711]],[[0.018468379974365,0.062426935881376,0.032493654638529],[0.042161446064711,0.05583792552352,0.017535340040922],[0.041128430515528,0.0088880425319076,0.038830015808344]],[[-0.0090619567781687,0.028433980420232,-0.01500351075083],[0.071811743080616,-0.016587451100349,0.041610714048147],[-0.018789513036609,-0.085349313914776,0.011884890496731]],[[0.0053604245185852,-0.019090147688985,0.0069711725227535],[-0.018362237140536,0.01367626991123,-0.012974291108549],[-0.01017031352967,0.013901226222515,0.084764026105404]],[[0.093829229474068,-0.0067424857988954,0.055597957223654],[-0.01125138066709,0.010420808568597,0.074105605483055],[0.027617081999779,0.018720472231507,-0.019027397036552]],[[0.017543500289321,0.0079650450497866,0.021859407424927],[-0.023073280230165,0.037685979157686,-0.045635435730219],[-0.042666163295507,0.028363585472107,-0.0064607472158968]],[[-0.011040695011616,-0.0012077037245035,0.13593561947346],[0.079139150679111,-0.062331024557352,-0.082020081579685],[0.048161007463932,0.10209253430367,0.031182551756501]],[[-0.021689232438803,0.046865340322256,0.0071553704328835],[-0.04537620395422,-0.031173560768366,0.025348199531436],[0.0088112540543079,-0.039314769208431,0.0080880783498287]],[[0.02947461605072,-0.035107299685478,-0.037002932280302],[0.01885094307363,-0.021373812109232,0.0053367158398032],[-0.027709893882275,-0.023048613220453,0.042571477591991]],[[-0.045034341514111,-0.023270511999726,0.0088468566536903],[-0.053030535578728,-0.035773392766714,-0.04566502571106],[-0.020882280543447,-0.006836109329015,0.024263493716717]],[[-0.01868038251996,-0.022100800648332,0.048499934375286],[-0.0018671778962016,-0.019563760608435,-0.068077318370342],[0.061360064893961,-0.019944746047258,0.065995626151562]],[[0.0051657678559422,-0.020153479650617,-0.030009696260095],[0.012563397176564,-0.078340046107769,0.017342938110232],[0.0099161490797997,0.011704353615642,0.0093580847606063]],[[0.064288586378098,0.0081304796040058,-0.05692632496357],[0.026615479961038,-0.0017800779314712,-0.026431689038873],[-0.040609732270241,0.016235312446952,0.035284768790007]],[[-0.052571099251509,0.055894840508699,0.014544349163771],[0.048814851790667,0.027049655094743,0.090132214128971],[0.00590675836429,0.015750665217638,0.075708866119385]],[[0.027092574164271,0.0010566225973889,0.033584251999855],[0.081048019230366,0.023546168580651,-0.0065527562983334],[-0.0099259223788977,-0.0038268871139735,-0.067059114575386]],[[0.01041076425463,-0.049712490290403,-0.093421794474125],[0.037831801921129,-0.0086787734180689,-0.04016300663352],[-0.0034230793826282,-0.00034490373218432,-0.007345256395638]],[[0.037042412906885,-0.0016787585336715,-0.019332073628902],[-0.12819649279118,-0.062941998243332,0.02441687323153],[-0.090391308069229,0.049313120543957,0.023033231496811]],[[0.015600961633027,0.017927892506123,-0.06266775727272],[0.015247226692736,0.01975354552269,0.0041345399804413],[-0.072998069226742,0.019612897187471,-0.0030621972400695]],[[0.044706922024488,-0.016289250925183,0.069435387849808],[0.019487811252475,-0.014976480975747,0.040595125406981],[0.050601411610842,0.017640247941017,0.11314015835524]],[[0.03474709764123,0.016891568899155,0.020111734047532],[0.00034716835943982,0.022572822868824,0.0052011534571648],[0.067372031509876,0.056874256581068,0.036343794316053]],[[0.0050853681750596,0.031522147357464,-0.023867188021541],[0.023484019562602,0.030892487615347,0.032168570905924],[0.069520331919193,-0.013996782712638,0.017134649679065]],[[-0.059214547276497,-0.089303076267242,-0.034545436501503],[0.037102799862623,-0.01750985532999,-0.05896919965744],[0.035602942109108,0.0022905464284122,-0.0023804793599993]],[[0.0026098391972482,0.076752714812756,0.12486711144447],[-0.029947087168694,-0.053392566740513,0.071579776704311],[0.11339693516493,0.0011719772592187,0.056215032935143]],[[0.065737634897232,0.024809319525957,-0.052809190005064],[0.0068544973619282,0.0080733457580209,0.0027837944217026],[-6.6520246036816e-05,-0.015918169170618,-0.033445946872234]],[[0.021445898339152,-0.029859827831388,-0.073845311999321],[-0.011384258046746,0.053203668445349,0.058095153421164],[-0.011837153695524,0.048847734928131,0.048694241791964]],[[-0.021479712799191,-0.014266770333052,-0.12373560667038],[0.0071656452491879,0.013592226430774,0.024086743593216],[0.0047136484645307,-0.021060047671199,-0.044710081070662]],[[-0.013155632652342,-0.052129294723272,-0.05334410443902],[0.049141012132168,0.029552441090345,-0.0029761355835944],[0.07109871506691,0.0049920440651476,-0.0086190989241004]],[[-0.070871584117413,0.023113491013646,-0.055620312690735],[-0.029310302808881,-0.057121228426695,-0.040313132107258],[-0.0083207469433546,-0.088156647980213,0.013872245326638]],[[-0.012982943095267,0.065578974783421,0.020057326182723],[0.019990056753159,-0.085224196314812,-0.017874848097563],[-0.0075571411289275,0.087624996900558,0.10078850388527]],[[0.042002633213997,0.017090251669288,0.025861166417599],[-0.028939917683601,0.0671756118536,0.047193199396133],[-0.002450090367347,-0.052909355610609,0.012409768998623]],[[0.048759784549475,0.065687082707882,-0.020931530743837],[0.022235803306103,-0.021023003384471,-0.025536516681314],[-0.02349753677845,0.045175567269325,-0.039159964770079]],[[-0.029838643968105,0.044177886098623,0.019066359847784],[0.04662898927927,-0.037258476018906,0.052817117422819],[0.023374523967505,0.057148888707161,-0.04039428755641]],[[0.026561083272099,-0.041960299015045,-0.010512499138713],[-0.0015563280321658,-0.030490014702082,0.0081368694081903],[-0.0093486588448286,0.005107888020575,0.010342705063522]],[[0.068831726908684,0.033544860780239,-0.0062159667722881],[0.048380188643932,0.052759665995836,0.014304735697806],[0.031259324401617,0.055128592997789,0.032449640333652]],[[-0.051283068954945,-0.023765984922647,0.028733780607581],[0.041876584291458,-0.010763690806925,-0.0082163941115141],[-0.036034744232893,0.042112924158573,-0.058709066361189]],[[0.09754429012537,-0.0022042053751647,-0.033497199416161],[0.06116846576333,0.049307599663734,-0.018310477957129],[-0.015810174867511,-0.026678612455726,0.0085556441918015]],[[0.0061713680624962,-0.036622043699026,-0.050519436597824],[-0.064422830939293,0.049497075378895,-0.011624710634351],[-0.04026971757412,-0.00082658877363428,-0.051521703600883]],[[-0.051629796624184,0.031182637438178,0.039574556052685],[0.10402711480856,0.12388565391302,-0.037408743053675],[0.037873458117247,-0.0073132780380547,0.031112099066377]],[[-0.05929995700717,-0.036944065243006,0.027823597192764],[0.025728644803166,-0.027133721858263,-0.066988497972488],[-0.020349463447928,0.047571022063494,0.099576331675053]],[[-0.10828732699156,-0.015959734097123,-0.070003986358643],[-0.022413894534111,-0.029244123026729,0.0083407647907734],[-0.0081614693626761,0.037825606763363,-0.088452354073524]],[[0.058376312255859,-0.004248620942235,0.044249098747969],[-0.0083814840763807,0.044980142265558,-0.0047964467667043],[0.038297813385725,0.061704687774181,0.053473073989153]],[[-0.021310027688742,-0.018935119733214,-0.080771714448929],[0.042883675545454,0.026557140052319,-0.017258094623685],[0.058692269027233,-0.038003008812666,0.052592556923628]],[[-0.0038811750710011,-0.015761395916343,-0.010759779252112],[0.066399678587914,0.093592934310436,-0.015155605040491],[-0.022940764203668,-0.020146040245891,0.014261904172599]],[[-0.054526098072529,0.012028423137963,-0.040136810392141],[0.095378197729588,-0.091617852449417,0.063591249287128],[-0.02275114133954,-0.0059588253498077,-0.01433898601681]],[[0.029989723116159,-0.054417062550783,-0.024368427693844],[-0.013291552662849,0.029989972710609,-0.054637189954519],[-0.022655608132482,-0.011292750015855,0.015211758203804]],[[-0.019174968823791,-0.0096608884632587,-0.032860431820154],[0.1199546456337,-0.061543565243483,-0.034940425306559],[-0.0057430928573012,0.041552178561687,-0.024523450061679]],[[-0.034112725406885,-0.089812450110912,-0.0090476525947452],[0.032359667122364,0.0017608718480915,-0.022287158295512],[0.062843918800354,0.057611096650362,-0.030998485162854]],[[-0.068301416933537,-0.062935896217823,-0.086455665528774],[-0.022621091455221,-0.069412387907505,-0.0292739123106],[-0.033026084303856,0.0065462701022625,-0.014414033852518]],[[0.012750373221934,0.029850229620934,0.033319946378469],[-0.054440695792437,0.047041021287441,-0.096224173903465],[-0.042099706828594,-0.031368859112263,-0.12174283713102]],[[0.036699701100588,-0.051561795175076,0.0023512097541243],[-0.077513948082924,-0.021700263023376,-0.041419081389904],[0.040385235100985,0.050177030265331,-0.0096747484058142]],[[-0.0031256342772394,-0.03553793951869,0.02121626958251],[0.047700591385365,-0.044143501669168,-0.067165702581406],[0.087727725505829,-0.040101230144501,-0.0041940035298467]],[[0.026613090187311,-0.060836113989353,-0.034092959016562],[0.024314004927874,-0.024476297199726,-0.1459745913744],[-0.0025025652721524,0.038087926805019,-0.06742911785841]],[[-0.018769918009639,-0.065229929983616,0.03211484849453],[0.020735019817948,0.056422453373671,0.10903150588274],[0.10386002063751,-0.054671920835972,0.023039162158966]],[[-0.061446785926819,0.0066936197690666,0.046515703201294],[-0.0033339976798743,0.050542168319225,-0.017356432974339],[0.053615093231201,-0.10758453607559,0.087864562869072]],[[-0.014433923177421,-0.039658706635237,0.028589876368642],[-0.020003085955977,-0.010640540160239,-0.0039787227287889],[0.066043399274349,-0.006758360657841,-0.062072899192572]],[[0.10198201984167,0.091545708477497,0.05804393067956],[0.076521046459675,0.021679723635316,-0.03043301217258],[0.018508838489652,0.049633745104074,-0.0061704195104539]],[[0.003298579249531,0.077411241829395,0.043855167925358],[-0.027334067970514,-0.0037035273853689,-0.030477972701192],[0.01087614428252,-0.0578583329916,0.042898394167423]],[[0.051418021321297,-0.040703821927309,-0.016067668795586],[0.011778363958001,0.042941682040691,-0.02567707374692],[0.058668203651905,-0.037751920521259,0.0076683098450303]],[[0.051629703491926,0.06395697593689,-0.073201276361942],[-0.072339810431004,-0.061770286411047,0.041577089577913],[-0.062708355486393,-0.037005290389061,-0.033592965453863]],[[0.019117653369904,-0.038453351706266,0.032886456698179],[-0.0039404630661011,-0.049015894532204,0.0097135584801435],[-0.044918917119503,0.020477721467614,0.048677187412977]],[[0.040847212076187,0.013518461026251,-0.028983881697059],[-0.0031742614228278,-0.016751797869802,0.028146473690867],[0.014522603712976,0.097927868366241,-0.025649474933743]],[[0.09572971612215,-0.044134292751551,-0.048465203493834],[0.0038986660074443,0.020481660962105,-0.0012454502284527],[-0.038879379630089,0.021818974986672,-0.010624812915921]],[[-0.0095532210543752,-0.002384684747085,0.032843865454197],[-0.0064879045821726,0.011936463415623,-0.008963180705905],[0.067172676324844,0.080163270235062,-0.0028201511595398]],[[0.07467644661665,-0.060954470187426,-0.0058139055036008],[-0.051319293677807,0.061386253684759,0.024517087265849],[-0.074938431382179,-0.020486569032073,0.0014098586980253]]],[[[-0.034270361065865,-0.051771502941847,0.003655819222331],[0.00038428837433457,0.021757090464234,0.018965793773532],[-0.0019540046341717,-0.031653787940741,0.11505807191133]],[[-0.046142797917128,-0.014396280050278,0.090713173151016],[0.006049026735127,0.044918421655893,0.064582601189613],[0.049013629555702,0.067999742925167,0.02697959728539]],[[0.0086294477805495,6.8550740252249e-05,-0.019984615966678],[-0.048641096800566,-0.041941545903683,0.021664459258318],[-0.035534113645554,0.13899864256382,-0.029185589402914]],[[-0.0063868262805045,-0.040764156728983,0.031549710780382],[0.026950661092997,0.0025569282006472,-0.01595070399344],[-0.041691828519106,0.062343075871468,0.015929626300931]],[[0.0037817938718945,-0.017590798437595,0.076964393258095],[0.038655333220959,0.038762900978327,0.095803484320641],[0.03471814841032,-0.078323997557163,-0.027094393968582]],[[-0.018416482955217,0.022344060242176,0.033996094018221],[-0.0091004790738225,-0.07208401709795,-0.00010213845962426],[-0.016014635562897,-0.0054808082059026,-0.02181488648057]],[[0.037710439413786,0.025665791705251,-0.015748890116811],[0.096319794654846,0.0085996184498072,-0.015812210738659],[-0.017638960853219,-0.079176284372807,0.01273435074836]],[[0.046527028083801,-0.0090687302872539,0.017450893297791],[-0.0060577988624573,0.063214644789696,-0.0040834709070623],[-0.022572655230761,0.012451784685254,-0.019590359181166]],[[0.11954095959663,0.12480967491865,-0.055377010256052],[0.040423527359962,-0.0014490721514449,0.0085479393601418],[0.054356783628464,-0.00098666688427329,-0.0080376472324133]],[[0.051818713545799,0.051462713629007,-0.0063347346149385],[-0.048417385667562,-0.014624261297286,0.021628882735968],[0.043389476835728,0.009692664258182,0.039755575358868]],[[-0.028601750731468,0.034725349396467,-0.010911360383034],[-0.02779739908874,0.024639315903187,-0.0025525288656354],[-0.025407807901502,-0.026759117841721,-0.041749712079763]],[[0.056182969361544,0.0013157282955945,0.065009735524654],[-0.0057652033865452,0.080613821744919,-0.021910540759563],[-0.007273162715137,-0.084498278796673,-0.055730063468218]],[[0.09921495616436,-0.0051229605451226,0.082882814109325],[0.063145585358143,0.010687965899706,0.061025351285934],[0.1151435226202,-0.0017380827339366,0.04294453561306]],[[-0.026882445439696,0.067818395793438,0.020892290398479],[0.025541553273797,0.029664844274521,0.090637668967247],[0.024842634797096,-0.02807205170393,-0.043059233576059]],[[0.0872588083148,-0.026195732876658,0.027149420231581],[-0.035679455846548,-0.017426114529371,-0.023540578782558],[0.069520048797131,0.010632156394422,-0.094929113984108]],[[0.023032199591398,-0.097188524901867,0.042439602315426],[0.0095521239563823,-0.022022742778063,-0.027450891211629],[-0.033145431429148,0.023907097056508,-0.025895278900862]],[[0.025754550471902,-0.024919731542468,0.00029885346884839],[0.047038402408361,-0.016543015837669,-0.077040016651154],[-0.013023092411458,-0.0030794653575867,0.090471550822258]],[[0.023725487291813,-0.010977569967508,0.027910931035876],[-0.0042884135618806,-0.011846171692014,-0.0019669060129672],[-0.016734575852752,-0.074728399515152,-0.010856183245778]],[[0.027250787243247,0.017530372366309,0.063103623688221],[0.069779336452484,0.047135174274445,-0.0074726343154907],[-0.074102230370045,-0.0036766207776964,0.011554414406419]],[[-0.037251751869917,-0.068434871733189,0.047236334532499],[-0.038288168609142,0.062197331339121,0.0058244662359357],[0.01896827109158,0.01268850825727,0.087681017816067]],[[0.011293172836304,-0.043272409588099,-0.028998771682382],[-0.05688963085413,0.01548251695931,-0.045049592852592],[-0.028343066573143,-0.015381810255349,-0.052911676466465]],[[-0.011308024637401,-0.05178152397275,0.021738676354289],[0.059190034866333,-0.027308404445648,0.042968343943357],[0.047242868691683,-0.063652351498604,0.08822912722826]],[[-0.030374461784959,-0.009181666187942,0.077179305255413],[0.045803431421518,0.0024285153485835,-0.077017553150654],[0.045963864773512,0.045505803078413,-0.032835762947798]],[[0.0506940074265,0.042811438441277,-0.029765183106065],[0.0060290405526757,0.0065786908380687,-0.027427976951003],[0.090262211859226,0.07853015512228,0.093026638031006]],[[-0.014452668838203,0.015339772216976,0.0036910399794579],[0.040100019425154,0.034930713474751,0.039945252239704],[0.018278039991856,-0.020081654191017,0.013426689431071]],[[-0.010677678510547,0.02788090147078,-0.011514723300934],[-0.038174353539944,-0.026698200032115,0.0017578183906153],[0.014282820746303,-0.052632328122854,-0.01829388923943]],[[0.101228043437,0.01260441634804,-0.0095881139859557],[0.060835890471935,0.020034769549966,0.041997212916613],[0.016914883628488,0.042262367904186,0.075279720127583]],[[-0.032058019191027,-0.03554055467248,-0.021691590547562],[-0.01909295283258,-0.03082587942481,0.026133542880416],[-0.022555442526937,0.0086509110406041,-0.032461050897837]],[[-0.036128267645836,-0.029590407386422,-0.0021726887207478],[0.0008038803935051,-0.028367914259434,0.0017304655630141],[0.070236004889011,-0.056472234427929,-0.057484924793243]],[[-0.03804961591959,0.00069416244514287,-0.058568950742483],[-0.031082859262824,-0.037439577281475,-0.021712733432651],[-0.0022343411110342,0.025398293510079,-0.040731117129326]],[[-0.015126205980778,0.0072119813412428,0.00080390420043841],[0.0066396836191416,0.027311006560922,0.025241982191801],[-0.0057251127436757,0.045076828449965,0.020425358787179]],[[-0.091479815542698,-0.012216789647937,-0.073996625840664],[0.012914195656776,0.040486425161362,0.022696232423186],[0.073934130370617,-0.066722869873047,0.066521853208542]],[[-0.045478779822588,0.042168404906988,0.062877714633942],[-0.0047525861300528,0.025801641866565,0.058587960898876],[-0.0067917169071734,0.056422643363476,0.073704831302166]],[[-0.074070364236832,0.03052831068635,0.020321285352111],[0.013371334411204,0.015495723113418,0.025855479761958],[0.068223431706429,0.046693917363882,0.10821790248156]],[[0.035872597247362,0.0067069679498672,0.024161225184798],[0.0033319457434118,0.042389970272779,-0.024345051497221],[-0.0040331389755011,0.074425145983696,0.02795147523284]],[[-0.0039705862291157,0.0089093074202538,0.021375112235546],[-0.004783047363162,-0.0066789081320167,-0.027705019339919],[-0.023824697360396,-0.0043691769242287,-0.025702893733978]],[[-0.024261124432087,0.0328114554286,0.070035606622696],[-0.030690860003233,0.017980452626944,0.010961087420583],[-0.0147505691275,0.078911416232586,-0.062311001121998]],[[0.064386911690235,-0.038017343729734,0.030123354867101],[0.025500738993287,-0.077284306287766,0.052541632205248],[-0.024238910526037,-0.001644593779929,0.018691970035434]],[[-0.057329528033733,0.054422315210104,0.0098636215552688],[0.082706645131111,0.032472364604473,-0.0025993052404374],[0.01602808944881,-0.059645231813192,-0.059683155268431]],[[-0.0073354835622013,-0.0035734158009291,0.029300548136234],[0.072588190436363,-0.059653729200363,0.029654556885362],[-0.021139606833458,-0.017284661531448,0.080757118761539]],[[-0.017107576131821,0.041995074599981,0.041873812675476],[0.052002768963575,0.043190099298954,-0.034738820046186],[0.023891126736999,0.0034588086418808,-0.092914961278439]],[[-0.037292614579201,0.041856370866299,0.018482506275177],[0.068295799195766,0.028964469209313,-0.039669778198004],[0.062279395759106,-0.026873711496592,0.07029190659523]],[[0.044031046330929,0.041273400187492,-0.010493834502995],[0.029415028169751,0.10664761066437,0.053842503577471],[0.043102439492941,0.051656179130077,0.13657140731812]],[[0.057048190385103,-0.0426383651793,-0.00098452612292022],[0.039318516850471,0.030970169231296,-0.025994623079896],[-0.030685054138303,-0.0036130109801888,-0.044036872684956]],[[-0.023734524846077,0.078469656407833,-0.0083033591508865],[-0.04564805701375,0.034817922860384,0.0031630715820938],[0.046312414109707,0.016080524772406,0.025137774646282]],[[0.036776855587959,0.034901730716228,0.01304174028337],[0.00097757496405393,0.037898555397987,0.038131181150675],[0.054646879434586,0.086758658289909,0.017809998244047]],[[0.016657203435898,-0.019392274320126,0.001715180114843],[-0.0076345279812813,-0.026966575533152,0.0084791155532002],[-0.01487653888762,-0.035748202353716,-0.032997753471136]],[[-0.088282011449337,0.012112961150706,-0.057995032519102],[-0.022249730303884,0.011620035395026,-0.083139784634113],[0.031274899840355,-0.018900563940406,-0.055175799876451]],[[-0.057351853698492,0.003896628273651,0.035219702869654],[-0.090446203947067,0.015597929246724,-0.054215732961893],[0.012804689817131,0.0046956492587924,0.026901578530669]],[[-0.003586481558159,-0.01765438914299,0.0081691248342395],[-0.026417285203934,-0.064046338200569,0.046913407742977],[0.051911428570747,-0.029438141733408,0.0016655235085636]],[[0.048949867486954,0.029275065287948,-0.014183493331075],[0.0024771327152848,0.031583979725838,-0.066150709986687],[0.12031594663858,-0.0042874412611127,0.029703522101045]],[[0.057645369321108,0.078301675617695,-0.023163972422481],[0.0080098463222384,-0.022535821422935,0.011874248273671],[0.025217471644282,0.022090477868915,-0.023970315232873]],[[-0.090613678097725,-0.035329971462488,-0.0036330348812044],[-0.031750541180372,-0.072895720601082,-0.023981347680092],[-0.043588560074568,-0.089894905686378,0.023166434839368]],[[-0.0043570389971137,-0.04999990388751,-0.019930666312575],[0.020866107195616,0.0073264446109533,0.037016078829765],[-0.025553224608302,0.11674449592829,0.081731095910072]],[[-0.015820302069187,0.026952806860209,0.013135657645762],[-0.0012190897250548,-0.010117402300239,0.0094035789370537],[0.034627307206392,-0.042365420609713,-0.053273063153028]],[[0.21731126308441,0.074684396386147,0.018703946843743],[-0.029941940680146,-6.3807805418037e-05,0.0044419188052416],[0.060568992048502,-0.028691522777081,-0.085623145103455]],[[0.058159921318293,0.014996000565588,0.069554075598717],[-0.015528004616499,0.042634453624487,0.056871525943279],[0.025044977664948,0.075368016958237,0.0084093790501356]],[[-0.021597817540169,-0.062080930918455,0.089798822999001],[-0.036710571497679,-0.01888282969594,-0.078969217836857],[-0.010996988974512,-0.0055383197031915,-0.059643447399139]],[[0.048591431230307,0.13393896818161,0.013254725374281],[0.027987943962216,-0.031802497804165,-0.064421124756336],[-0.037565357983112,0.05016702786088,0.015669208019972]],[[0.07599700987339,0.059464648365974,0.03394203260541],[0.078134678304195,0.040935643017292,-0.0051234224811196],[-0.036253768950701,-0.037766944617033,0.030695121735334]],[[-0.053724639117718,-0.048016175627708,-0.0085467174649239],[0.014542249031365,-0.0088053802028298,0.015037389472127],[0.085797838866711,0.0027417128439993,-0.042534325271845]],[[-0.061238415539265,-0.0019824393093586,0.086036503314972],[-0.050951462239027,-0.050264202058315,-0.013553653843701],[-0.072646804153919,0.027189889922738,-0.040729876607656]],[[-0.040776766836643,0.092540957033634,0.069691322743893],[0.067614495754242,0.030129592865705,0.04599080607295],[-0.044601541012526,0.010976581834257,-0.0080588795244694]],[[-0.0019430249230936,0.042230699211359,0.050294142216444],[-0.027358593419194,-0.031649146229029,0.066592566668987],[0.035797048360109,-0.027247730642557,0.054668415337801]],[[-0.012131209485233,0.046940885484219,0.023924615234137],[0.035619899630547,0.025990534573793,-0.052113745361567],[0.0081437937915325,0.019539540633559,-0.0069925570860505]],[[0.10494109243155,-0.016649406403303,0.020427156239748],[0.029067682102323,-0.014487431384623,-0.087845854461193],[0.095764487981796,0.020446609705687,0.11822476238012]],[[-0.051627404987812,0.023056948557496,-0.072977960109711],[0.016180710867047,0.033016107976437,-0.042259741574526],[-0.059429191052914,0.03015218116343,-0.010594462044537]],[[0.053871348500252,0.072014980018139,-0.01937716640532],[0.0069160172715783,0.044865619391203,-0.0039099799469113],[0.044201131910086,0.011440753936768,0.041741274297237]],[[0.0066662561148405,0.032037351280451,-0.036056634038687],[0.020268740132451,0.069887392222881,0.018241291865706],[0.048873297870159,0.061935588717461,0.065740190446377]],[[-0.060712415724993,0.063686646521091,-0.023352282121778],[0.036686684936285,-0.01082762517035,-0.00051934458315372],[-0.01519067119807,-0.019408268854022,-0.049283489584923]],[[0.0016512952279299,0.021110244095325,0.025243895128369],[0.055386491119862,0.011697057634592,0.021190559491515],[-0.021835258230567,0.037593927234411,0.11535497754812]],[[-0.073110520839691,-0.039065148681402,-0.006954784039408],[-9.8580712801777e-06,0.10246334224939,0.085532568395138],[0.010088330134749,0.021214216947556,0.084959290921688]],[[0.020065724849701,-0.081611894071102,-0.046226054430008],[-0.03996817022562,0.0076748207211494,-0.025885066017509],[-0.046366047114134,0.020731955766678,0.0058715469203889]],[[-0.024359961971641,-0.053121365606785,0.0096370540559292],[-0.086474530398846,-0.058328531682491,0.038416091352701],[-0.053631898015738,-0.045279175043106,0.0056160250678658]],[[-0.087374277412891,-0.015835892409086,-0.012940858490765],[0.039469819515944,0.0037377020344138,-0.031224727630615],[0.10539910197258,-0.0070965848863125,0.03000202961266]],[[-0.026026576757431,0.027716532349586,-0.019167562946677],[-0.049057960510254,-0.017477327957749,0.018286697566509],[0.012633949518204,-0.032641835510731,-0.082356803119183]],[[0.012817651033401,-0.029278101399541,0.00013086340914015],[-0.066385008394718,-0.060233931988478,-0.020009810104966],[0.026123536750674,-0.032332200556993,0.044371664524078]],[[-0.063707172870636,-0.0024351850152016,0.012190882116556],[0.0043963193893433,0.014202716760337,0.061262063682079],[-0.015997618436813,0.038918737322092,-0.00088356819469482]],[[0.070602707564831,-0.0088057070970535,-0.035845167934895],[0.017418671399355,-0.020498864352703,-0.052149202674627],[0.011988355778158,-0.030221277847886,-0.032255578786135]],[[0.031310927122831,0.023214200511575,-0.052455000579357],[0.084819465875626,0.13777238130569,-0.0017822972731665],[-0.033613704144955,-0.032637123018503,-0.019550127908587]],[[0.0048881215043366,0.096860609948635,0.082134023308754],[-0.063985079526901,0.028578476980329,-0.048510503023863],[-0.12572957575321,-0.01428210735321,-0.046595826745033]],[[0.026845818385482,0.0081443805247545,0.07016584277153],[0.020734688267112,-0.0058267433196306,-0.0026547093875706],[0.0016559846699238,0.0083921225741506,-0.0045719551853836]],[[-0.10370101034641,-0.016163850203156,0.016636060550809],[-0.019578032195568,-0.021271299570799,-0.005971587728709],[0.017544627189636,-0.010966028086841,0.021858973428607]],[[-0.015914352610707,-0.047719791531563,0.042724590748549],[-0.049055311828852,-0.04344841465354,-0.017107885330915],[-0.032165445387363,0.030612865462899,-0.024818677455187]],[[0.068864367902279,0.049634367227554,0.057183306664228],[0.044876389205456,0.041765056550503,0.0083940522745252],[-0.022784331813455,-0.070853099226952,0.066608607769012]],[[0.023070635274053,0.021592916920781,-0.012663737870753],[-0.025842377915978,-0.0059519382193685,0.010457001626492],[-0.028127077966928,0.060203842818737,0.039177235215902]],[[0.076536625623703,-0.012702368199825,0.040454063564539],[-0.011827416718006,0.009569856338203,0.0072431792505085],[0.00031621771631762,0.12903292477131,0.086204826831818]],[[-0.083246663212776,0.01044294051826,-0.033569809049368],[0.041078131645918,-0.0069520948454738,-0.066132888197899],[0.039287708699703,-0.053530357778072,0.013618658296764]],[[0.031677044928074,-0.017418125644326,-0.00021205964731053],[0.053028915077448,0.020927045494318,0.056626658886671],[0.021903455257416,-0.028139790520072,0.019161788746715]],[[-0.023268179967999,-0.0010850140824914,-0.092955805361271],[0.0057474337518215,0.028886897489429,0.015809267759323],[0.0076364674605429,-0.028312603011727,-0.027205903083086]],[[0.01519247982651,-0.0053226002492011,0.011646439321339],[0.021065397188067,0.061430387198925,-0.0046988748945296],[-0.040829870849848,0.025286739692092,0.10958720743656]],[[-0.023166704922915,-0.00048873166088015,0.047659330070019],[-0.017674691975117,0.062667898833752,-0.00847312156111],[0.054508432745934,0.0081158541142941,-0.052010878920555]],[[-0.0054328897967935,-0.00085774005856365,0.079610034823418],[-0.044893510639668,0.024574860930443,-0.048834957182407],[0.035799272358418,0.038968030363321,0.019619202241302]],[[0.056335773319006,0.031467743217945,-0.038327742367983],[0.007919292896986,-0.024506228044629,0.0067479242570698],[-0.074007213115692,0.061579059809446,0.021680638194084]],[[-0.04049152135849,-0.020886851474643,-0.077673219144344],[-0.070870362222195,-0.030915042385459,-0.055943813174963],[-0.0029148897156119,-0.024343764409423,0.0052838828414679]],[[0.0027793091721833,-0.074378624558449,0.11276635527611],[-0.012493196874857,-0.045619659125805,0.035865277051926],[0.14248906075954,-0.003089525969699,0.029499217867851]],[[0.019136974588037,0.051022212952375,-0.03548427298665],[0.24428483843803,0.11318315565586,-0.012295695021749],[-0.077110856771469,0.024091113358736,0.039702314883471]],[[-0.038792248815298,-0.020245840772986,-0.010709017515182],[0.042608562856913,-0.014900663867593,-0.013843016698956],[0.10426352918148,0.016460806131363,0.017863880842924]],[[0.067110061645508,0.0062217134982347,0.015778835862875],[0.024684466421604,0.054531823843718,0.02520171739161],[0.059332326054573,0.0049465415067971,-0.030554050579667]],[[-0.072446390986443,0.054230991750956,0.065399691462517],[0.008894651196897,0.02518648840487,-0.011847579851747],[-0.030360128730536,-0.014379117637873,-0.014201510697603]],[[0.019299684092402,0.045265357941389,-0.010277863591909],[0.038323067128658,-0.0096544995903969,-0.028968453407288],[0.0013161508832127,0.021779486909509,-0.046994183212519]],[[-0.0050977896898985,-0.028946908190846,0.043452072888613],[-0.048382338136435,0.035045776516199,-0.0068043409846723],[0.076894849538803,0.0087490454316139,-0.043283358216286]],[[0.00024753925390542,-0.020173387601972,0.0029085064306855],[0.078774198889732,0.038158178329468,-0.0096509195864201],[-0.0076497178524733,0.0053398655727506,0.035956494510174]],[[-0.016343420371413,-0.002393796807155,-0.04669664055109],[0.0028946166858077,-0.040144164115191,-0.040504023432732],[-0.012589349411428,-0.041361298412085,-0.030508030205965]],[[-0.0064698122441769,0.029454162344337,-0.0042552724480629],[0.023622162640095,0.063429541885853,-0.012815405614674],[-0.025616938248277,0.089377894997597,0.022400779649615]],[[-0.040235474705696,0.020481687039137,-0.087024457752705],[-0.032970394939184,0.0090682907029986,0.016381174325943],[-0.025542596355081,0.081748135387897,0.012010252103209]],[[0.018396770581603,0.034377697855234,-0.045686662197113],[-0.019381027668715,-0.0036101676523685,-0.03133112937212],[0.13870140910149,-0.0098804589360952,0.037503484636545]],[[-0.0060397172346711,0.047880239784718,-0.0062600960955024],[-0.0084888869896531,-0.040717501193285,-0.0014144163578749],[-0.0070309364236891,-0.047611854970455,-0.010603950358927]],[[0.040011905133724,-0.014043686911464,-0.045353792607784],[0.030540430918336,-0.043522618710995,2.6087614969583e-05],[-0.035033646970987,0.0086234994232655,0.033786788582802]],[[0.018485819920897,0.0033838581293821,0.086363926529884],[-0.020830150693655,0.097810029983521,0.11376314610243],[0.028594750910997,0.084400996565819,-0.00028206856222823]],[[0.0098498994484544,-0.011063785292208,0.0014564610319212],[-0.067343860864639,0.0073991850949824,0.014913812279701],[-0.028944751247764,0.035658735781908,0.014713685028255]],[[0.016427839174867,-0.022195924073458,0.025379838421941],[-0.032259300351143,-0.00016041377966758,0.025224003940821],[0.064725294709206,0.027824534103274,-0.044987980276346]],[[0.07854138314724,0.058170881122351,-0.0047040395438671],[-0.063883788883686,0.0090140663087368,-0.0070732734166086],[0.039013866335154,0.027575958520174,-0.078796900808811]],[[-0.10873079299927,-0.136923417449,-0.023004531860352],[-0.086669489741325,0.035405118018389,0.010055692866445],[0.01300251763314,-0.053188614547253,-0.089989274740219]],[[0.05745330452919,-0.01063609495759,0.056497767567635],[-0.035262856632471,-0.068847805261612,0.030074570327997],[0.003107063472271,0.010845822282135,-0.016712257638574]],[[-0.0052001206204295,0.031329426914454,-0.046802870929241],[0.013024460524321,-0.038644623011351,-0.10724606364965],[0.0095351813361049,0.044708609580994,-0.0032989177852869]],[[-0.0032838790211827,-0.015202938579023,0.059952717274427],[0.053954895585775,0.0064817275851965,0.015156859531999],[0.033004242926836,0.014164430089295,-0.011017335578799]],[[0.032905098050833,0.023112010210752,-0.01066367700696],[-0.058806575834751,-0.0046626250259578,0.018146589398384],[0.038918510079384,-0.026876224204898,0.056464910507202]],[[-0.083897896111012,0.020550644025207,-0.0012130251852795],[-0.025835646316409,-0.012686165049672,0.035013645887375],[0.040840696543455,0.060004584491253,0.057751901447773]],[[0.093582078814507,0.12427164614201,-0.030386183410883],[0.11017724126577,0.052223421633244,0.034447785466909],[0.084472246468067,0.078585676848888,-0.018724521622062]],[[-0.048954755067825,-0.088850364089012,-0.03198316693306],[0.017549639567733,0.019724249839783,-0.018982427194715],[0.0025110519491136,0.043871514499187,-0.072508700191975]],[[0.038340002298355,-0.027520444244146,0.014566844329238],[0.044658288359642,-0.057328958064318,-0.0064017656259239],[0.042879447340965,0.052439335733652,0.023468581959605]],[[-0.083876989781857,-0.026638997718692,-0.010988300666213],[0.022981565445662,-0.01907086186111,-0.049021296203136],[0.012864150106907,-0.047261282801628,-0.087695211172104]],[[0.01052319444716,-0.0063070724718273,-0.027291277423501],[0.031501308083534,-0.0021512401290238,0.0089890267699957],[0.0013306397013366,0.063374094665051,0.039038226008415]],[[0.018023785203695,0.019314551725984,0.018436970189214],[-0.014069187454879,0.049366116523743,0.035291824489832],[-0.03229321166873,0.047675427049398,-0.021770613268018]],[[-0.075413092970848,-0.010594887658954,0.029298486188054],[-0.022774707525969,0.049589745700359,0.024341097101569],[-0.071024611592293,0.038995929062366,0.039661485701799]],[[0.014144993387163,0.016636984422803,-0.058864247053862],[0.043054830282927,0.059698894619942,0.045802913606167],[-0.090502642095089,0.081616632640362,0.023688020184636]],[[-0.076181024312973,-0.010206101462245,0.0090617509558797],[-0.08373437076807,-0.027735212817788,-0.0083518177270889],[0.021998731419444,0.023017672821879,-0.011856500990689]]],[[[0.010049267672002,0.057199485599995,0.030815988779068],[-0.02524153701961,-0.06029636412859,0.017310792580247],[-0.033814027905464,-0.020080406218767,-0.016666220501065]],[[-0.098514311015606,0.051289610564709,-0.093384616076946],[-0.019643560051918,-0.014507735148072,-0.04956366121769],[-0.0062663946300745,0.034130752086639,0.0124122640118]],[[0.017052864655852,-0.014897746965289,0.044351223856211],[-0.011800773441792,-0.038021925836802,0.0095944134518504],[0.001183008775115,0.013405116274953,-0.01107682287693]],[[-0.021583696827292,-0.0052136895246804,-0.020843861624599],[0.010365337133408,0.075710847973824,0.051745612174273],[-0.014165919274092,0.0045318896882236,-0.021190678700805]],[[0.02058663405478,0.048732239753008,-0.028806334361434],[0.052048649638891,-0.00065812288084999,-0.013806770555675],[0.0084509095177054,0.041984342038631,0.015256087295711]],[[-0.019121896475554,0.074634596705437,-0.011613745242357],[-0.0062010758556426,-0.036511227488518,0.014446074143052],[-0.0057822740636766,0.017979204654694,0.039239704608917]],[[0.065202824771404,0.0224075820297,-0.025849685072899],[0.070957735180855,0.034368764609098,-0.042364194989204],[0.017854643985629,-0.064430393278599,-0.010427029803395]],[[-0.031240329146385,0.016467075794935,0.016795849427581],[0.063583247363567,-0.013100945390761,0.014109908603132],[-0.0029068919830024,-0.026293016970158,-0.017756093293428]],[[0.0051913298666477,0.0095534548163414,-0.0091767674311996],[-0.052299108356237,-0.029260326176882,-0.04166004806757],[0.031499560922384,0.0031169047579169,0.046177864074707]],[[-0.040893949568272,0.014361034147441,0.0050958688370883],[-0.00030705484095961,0.023840056732297,0.021958027034998],[0.0015588166425005,-0.017426455393434,0.010405350476503]],[[-0.023139245808125,-0.024171765893698,0.037672471255064],[0.03950272500515,-0.030470613390207,0.064589127898216],[0.013562428764999,-0.073475152254105,0.015670606866479]],[[0.016175573691726,0.024036098271608,0.012643217109144],[-0.0086642531678081,-0.0026571999769658,0.051233418285847],[0.0482421182096,0.042880039662123,0.033182427287102]],[[0.11667699366808,-0.016764195635915,-0.032589107751846],[0.035780493170023,-0.020580697804689,0.06628093868494],[-0.031242411583662,-0.006816650275141,0.0045430744066834]],[[-0.0068430169485509,0.027507249265909,-0.019213018938899],[0.039701387286186,-0.053727701306343,-0.014518999494612],[0.063833884894848,0.0031736565288156,0.024647122249007]],[[-0.0019846868235618,0.028359096497297,-0.018432106822729],[-0.060438677668571,0.020164761692286,-0.048260875046253],[0.067876487970352,0.0079456204548478,0.027575608342886]],[[0.0038476430345327,0.047000020742416,-0.030435191467404],[-0.0085833296179771,0.0069239963777363,0.050272576510906],[0.075049862265587,-0.053183358162642,-0.02067151106894]],[[0.009490286000073,-0.023052042350173,-0.0038502451498061],[-0.039675433188677,0.076963908970356,0.040572289377451],[-0.02307746745646,-0.0031512971036136,0.0064258109778166]],[[-0.014695476740599,0.026268981397152,-0.0041537727229297],[-0.033919245004654,-0.097455397248268,-0.012399884872139],[0.034816835075617,0.017549788579345,0.019566766917706]],[[0.0034789547789842,0.017515880987048,-0.011150703765452],[0.0009825648739934,-0.044774249196053,0.027974033728242],[0.029703035950661,-0.01989353261888,0.001655116211623]],[[0.024308040738106,-0.021441539749503,0.013386411592364],[-0.063744112849236,0.010886961594224,0.070204250514507],[-0.019115906208754,-0.0026430443394929,0.032876282930374]],[[-0.0040581715293229,0.018619626760483,-0.01407007034868],[0.026752635836601,0.073793694376945,-0.025645323097706],[-0.051905907690525,-0.065401390194893,-0.064299613237381]],[[-0.022194115445018,-0.043767657130957,0.03586895391345],[0.010740444995463,-0.038750927895308,-0.010575123131275],[-0.003835600335151,0.0027838151436299,0.007610026281327]],[[0.040291480720043,0.055682878941298,-0.099020831286907],[0.0096457889303565,0.051798842847347,-0.049451768398285],[-0.011177746579051,-0.052581287920475,0.03512118011713]],[[0.049773998558521,0.0022124310489744,-0.0083969328552485],[0.058523919433355,0.0014336731983349,0.0055895540863276],[0.01940979808569,-0.048742976039648,-0.0042424174025655]],[[-0.056671623140574,-0.02782854065299,0.0027865439187735],[-0.024920467287302,-0.02132722735405,-0.030207632109523],[0.071963995695114,-0.061793502420187,-0.015656659379601]],[[-0.069933339953423,0.054273463785648,0.0091111110523343],[-0.0030938570853323,-0.020429830998182,9.3804912467021e-05],[-0.021324118599296,-0.025371825322509,0.021084554493427]],[[0.043682843446732,0.01966143026948,-0.046171262860298],[-0.033980447798967,0.016271565109491,-0.0066123986616731],[0.0094985123723745,-0.021194696426392,-0.019892077893019]],[[-0.020227815955877,-0.0023409940768033,-0.0097261779010296],[0.015427796170115,-0.019591258838773,-0.00059911410789937],[0.054682243615389,0.023363279178739,-0.028208071365952]],[[-0.0044642351567745,0.0035555795766413,0.0064230244606733],[-0.053180493414402,0.023838797584176,0.044716060161591],[0.0088950283825397,-0.025954838842154,-0.0004217405221425]],[[-0.0023688790388405,0.0012004844611511,-0.0084204962477088],[0.028784273192286,-0.011466464027762,0.010439288802445],[0.030925184488297,-0.015942791476846,0.0025916299782693]],[[0.070241279900074,0.01594472117722,-0.040652770549059],[0.018463769927621,-0.016356166452169,0.013719324022532],[0.068843483924866,-0.0036019885446876,-0.032493636012077]],[[0.080824233591557,-0.020443374291062,0.012557760812342],[-0.021123751997948,0.0075971311889589,0.015446256846189],[0.018488435074687,0.014327229931951,0.058303143829107]],[[0.0096220849081874,-0.042143952101469,0.055905610322952],[-0.0028643910773098,0.024571392685175,0.043027494102716],[-0.073209166526794,0.05985676124692,0.079997658729553]],[[0.03615502640605,0.05755153298378,-0.0064927330240607],[-0.016093192622066,0.051321011036634,-0.049314547330141],[0.026601349934936,-0.030208436772227,0.043750181794167]],[[0.00083312083734199,-0.021685656160116,-0.0025168715510517],[0.032519515603781,-0.036112785339355,0.021076273173094],[0.034829705953598,0.0011268969392404,0.050205431878567]],[[-0.0095845069736242,-0.062253657728434,0.0052210930734873],[-0.030344989150763,-0.038620643317699,-0.079102352261543],[-0.0045348922722042,0.04349060356617,0.0076783378608525]],[[-0.040017765015364,-0.017064865678549,0.00069342594360933],[0.077127449214458,0.0079104611650109,0.0044038803316653],[0.069470003247261,0.017208816483617,0.026519440114498]],[[-0.0036402251571417,0.066363908350468,-0.005226765293628],[-0.02168370038271,0.012349982745945,-0.018357207998633],[0.010284113697708,0.015811180695891,-0.062742739915848]],[[0.014577517285943,0.051640797406435,-0.031202044337988],[-0.012897637672722,0.024659641087055,-0.071923926472664],[2.7849528123625e-06,-0.039383742958307,-0.047350309789181]],[[0.035368911921978,-0.0043653273023665,0.054618570953608],[0.0018306071870029,-0.051310732960701,0.050913330167532],[0.054514177143574,-0.025219848379493,0.01441462431103]],[[0.052291847765446,0.0023864870890975,-0.013938842341304],[0.010741606354713,0.013485362753272,0.018901228904724],[0.015652325004339,-0.04271948710084,-0.036062207072973]],[[0.027512341737747,0.0056709419004619,0.00073806243017316],[0.050994072109461,-0.013556127436459,0.031152941286564],[-0.030543113127351,0.00035562244011089,-0.022489633411169]],[[0.026638777926564,-0.036347344517708,-0.023226780816913],[0.019138822332025,0.058549277484417,-0.0031977279577404],[0.065869338810444,-0.026614427566528,-0.040973585098982]],[[-0.027661997824907,0.038095973432064,0.030641458928585],[0.021440308541059,0.020980406552553,0.035531930625439],[0.0263951420784,0.010946502909064,-0.0067974654957652]],[[-0.024872787296772,0.056692469865084,0.03379537537694],[-0.018706262111664,0.0015145391225815,-0.037354130297899],[0.02476754039526,0.014147531241179,-0.02709618024528]],[[-0.038081228733063,0.013080550357699,-0.040872864425182],[0.060174960643053,0.0046941349282861,0.043943203985691],[-0.0055177127942443,0.046638712286949,0.040252480655909]],[[0.0020696942228824,-0.0041592875495553,0.020867850631475],[-0.0034919534809887,0.00066881743259728,-0.024606252089143],[0.012409038841724,-0.0056684128940105,0.039731532335281]],[[-0.083600096404552,-0.048788212239742,-0.0415960252285],[0.08322923630476,0.03434781730175,-0.0034408366773278],[0.039724782109261,-0.01956825517118,0.0025667038280517]],[[-0.01295102853328,-0.00060279731405899,0.020894216373563],[-0.04513768851757,-0.04194838181138,0.018055161461234],[0.017452457919717,-0.060224626213312,0.040165960788727]],[[-0.0050121415406466,0.016326379030943,-0.0061934157274663],[-0.034152545034885,0.0097641702741385,0.0071880756877363],[-0.031834337860346,-0.0013946136459708,-0.0050310641527176]],[[-0.0031222330871969,-0.026255587115884,0.052400268614292],[0.0444001480937,-0.0024004497099668,-0.0036813772749156],[0.05776995792985,-0.072241127490997,-0.01249647513032]],[[-0.023635912686586,-0.026373866945505,0.00031845315243118],[0.018565798178315,-0.04614470526576,0.016641123220325],[-0.010576695203781,-0.033697340637445,-0.0043417350389063]],[[0.047503050416708,0.014206911437213,-0.045414313673973],[0.030153352767229,0.04906453192234,0.0068099526688457],[0.035254407674074,-0.0071886330842972,-0.051292181015015]],[[0.053971104323864,-0.018599476665258,-0.0263078995049],[-0.042495485395193,0.029469832777977,-0.0033514671958983],[0.057388119399548,-0.022958900779486,-0.023984046652913]],[[-0.001322417287156,0.0071801533922553,0.0056590079329908],[0.082304432988167,-0.0065153082832694,-0.053648687899113],[-0.04176177456975,-0.045066636055708,0.024504363536835]],[[-0.070095844566822,0.015092994086444,0.059018142521381],[-0.011310638859868,0.0186587870121,0.055885206907988],[0.0038385998923331,-0.041934799402952,-0.021046405658126]],[[-0.021890414878726,-0.089688174426556,0.017314452677965],[0.066302783787251,-0.0026947152800858,-0.0049249385483563],[0.069600731134415,0.029480250552297,0.051582269370556]],[[-0.03112274967134,0.01598528586328,-0.016613863408566],[-0.0055336710065603,0.019132565706968,0.050136838108301],[-0.03146942332387,0.049987472593784,-0.063337124884129]],[[-0.025806192308664,-2.3693399270996e-05,0.059895314276218],[-0.018462497740984,-0.010518589988351,0.016875714063644],[0.05300235748291,0.0058848825283349,0.0027183284983039]],[[0.039701133966446,-0.015828406438231,-0.023603649809957],[-0.046293593943119,0.015283706597984,0.057346098124981],[0.01170174498111,-0.013156034052372,-0.00095308158779517]],[[0.0084526231512427,0.025680851191282,0.017139406874776],[-0.056425768882036,0.030460804700851,0.058224342763424],[-0.022739557549357,0.0039885262958705,0.012207533232868]],[[-0.018609872087836,-0.035162322223186,0.050576202571392],[0.029437029734254,-0.038312204182148,0.030841425061226],[-0.037464924156666,-0.038436144590378,-0.020417420193553]],[[0.044897384941578,0.021707409992814,0.021857807412744],[-0.034654349088669,0.014151247218251,0.02387854270637],[-0.00044906613766216,0.040647994726896,-0.013964273035526]],[[-0.0075313388369977,0.0028486526571214,0.025925805792212],[0.01390119921416,0.042360432446003,-0.043522037565708],[-0.041534874588251,-0.080211944878101,-0.024828318506479]],[[-0.0028792389202863,-0.019054304808378,-0.0079768588766456],[0.050046101212502,0.012437117286026,0.014688194729388],[0.065280206501484,0.022166412323713,-0.0018392932834104]],[[0.01781695522368,0.0044177304953337,-0.0067315134219825],[0.028826924040914,0.0470518656075,0.063624523580074],[0.040922187268734,-0.036471545696259,-0.023792846128345]],[[0.038637273013592,0.019212901592255,0.024567745625973],[-0.0020598056726158,-0.031199470162392,-0.035505995154381],[0.028274497017264,0.0057334187440574,-0.024759504944086]],[[-0.040226183831692,-0.014601743780077,0.060587786138058],[0.043861508369446,0.013102978467941,-0.037787925451994],[-0.019017281010747,0.0094766393303871,0.043300602585077]],[[0.0031354371458292,-0.045526769012213,0.0099356938153505],[0.060803819447756,-0.014447679743171,-0.07989239692688],[0.024596700444818,-0.0092578502371907,0.029261885210872]],[[0.013027500361204,0.025604570284486,-0.023054393008351],[-0.016940103843808,0.010162182152271,-0.01294157654047],[-0.0059040104970336,-0.03216552361846,-0.038093596696854]],[[0.06435964256525,-0.055880468338728,0.0037186546251178],[0.035293206572533,0.0029989753384143,0.027574092149734],[-0.063660763204098,0.0017141893040389,0.054898299276829]],[[0.0089595299214125,-0.023563450202346,-0.042382083833218],[-0.024589523673058,-0.052216533571482,-0.00028695067157969],[0.05997447296977,-0.043848175555468,0.043004550039768]],[[-0.069582290947437,0.066820964217186,0.032544914633036],[0.0017087932210416,0.0052103162743151,0.021752214059234],[0.036766197532415,0.037978459149599,0.042642291635275]],[[0.012260528281331,0.012282389216125,-0.059362135827541],[0.0042391885071993,0.084138035774231,-0.0057635251432657],[-0.041866157203913,-0.041311644017696,0.025968085974455]],[[-0.040134325623512,-0.044447556138039,-0.010610660538077],[-0.016050079837441,0.015773106366396,0.032492026686668],[0.014014506712556,0.035977598279715,0.023983046412468]],[[-0.023383799940348,0.0025614835321903,0.043742574751377],[0.016810150817037,-0.022796783596277,0.024132922291756],[0.0094233592972159,-0.0098369410261512,-0.013193141669035]],[[-0.024636024609208,0.0028061212506145,0.011574098840356],[-0.041318405419588,-0.0011902033584192,0.021684020757675],[0.023468282073736,0.027437141165137,0.068706750869751]],[[-0.033660627901554,0.046123862266541,-0.061900492757559],[0.03298307582736,0.033937372267246,0.0072577730752528],[0.071604087948799,0.00033537024864927,0.017620446160436]],[[0.0373545140028,-0.073303066194057,-0.015180923044682],[-0.0093718953430653,0.0097396392375231,-0.006696886382997],[0.03552158921957,-0.033004507422447,-0.03488889709115]],[[-0.038653183728456,0.036880679428577,0.037426970899105],[-0.080961264669895,-0.0043544601649046,0.0074120000936091],[-0.012049537152052,0.0062100514769554,-0.0065524773672223]],[[0.046900987625122,0.0039617093279958,0.017367394641042],[0.020959356799722,0.018091300502419,-0.024987453594804],[0.00040915934368968,0.054274465888739,-0.054076418280602]],[[-0.0051679238677025,0.015808282420039,0.022546106949449],[0.066763304173946,-0.03082905896008,-0.010252902284265],[0.054386980831623,-0.018070973455906,0.011863469146192]],[[0.031772464513779,0.0056056454777718,0.026096342131495],[0.053638342767954,-0.06566147506237,-0.016318082809448],[0.03507349267602,0.0072760675102472,-0.011421576142311]],[[0.039378467947245,0.047099873423576,-0.0085146287456155],[0.03525372967124,0.0034830903168768,-0.080119758844376],[-0.046217292547226,-0.0058098658919334,0.015492625534534]],[[-0.0081754885613918,-0.022840743884444,-0.053303919732571],[-0.013798338361084,0.025424033403397,0.027349961921573],[0.00081459275679663,0.02297936193645,0.018224008381367]],[[-0.025123318657279,-0.063452757894993,-0.032668843865395],[0.066831156611443,-0.012167613022029,0.0038578752428293],[0.063271030783653,-0.078522123396397,0.057523250579834]],[[0.019184099510312,0.012212928384542,-0.020143829286098],[0.014893490821123,0.032977648079395,-0.043615717440844],[0.031771138310432,-0.046020537614822,0.011290961876512]],[[0.086659319698811,-0.024029495194554,0.027928378432989],[-0.02813602052629,-0.0051331580616534,-0.0072359279729426],[0.0073620141483843,-0.014394193887711,0.010970715433359]],[[-0.0032604283187538,0.067008219659328,-0.016218427568674],[-0.0045485193841159,-0.051603805273771,-0.020162681117654],[0.066577173769474,-0.037248700857162,-0.018396498635411]],[[-0.00093442009529099,0.010202233679593,-0.005288653075695],[-0.00012949090159964,0.06103603169322,-0.021045904606581],[0.0040296358056366,0.0061886082403362,-0.02341034822166]],[[0.035932995378971,0.022367166355252,-0.044337432831526],[0.038923926651478,-0.046503163874149,0.0041911220178008],[0.0098628988489509,0.035958636552095,-0.032478060573339]],[[-0.071725584566593,-0.032076671719551,0.045812711119652],[-0.050046153366566,0.0060561560094357,0.059140171855688],[0.04110636562109,-0.023250097408891,-0.0071520451456308]],[[-0.023213149979711,0.072503760457039,-0.068719394505024],[-0.014049036428332,0.075994938611984,0.063193283975124],[0.0027092355303466,-0.015464194118977,-0.042287103831768]],[[-0.017219118773937,-0.019296761602163,-0.015572157688439],[-0.030121834948659,0.08135661482811,-0.024033343419433],[0.023241691291332,-0.014091682620347,-0.0083129154518247]],[[0.013679659925401,0.029322417452931,-0.045062523335218],[0.08229261636734,-0.031469330191612,0.010799519717693],[0.022473823279142,0.023351458832622,0.0021935252007097]],[[0.02093580365181,0.039836723357439,-0.043641179800034],[0.00084932730533183,-0.054888378828764,0.041343569755554],[-0.021035524085164,0.0086394725367427,0.034235633909702]],[[-0.037690956145525,-0.01844784617424,0.035153228789568],[-0.024060662835836,-0.0067879185080528,-0.01993210054934],[-0.0018383136484772,-0.051011770963669,0.017311157658696]],[[0.030080130323768,0.0040270839817822,0.010173168033361],[-0.012409709393978,0.028037568554282,0.042315497994423],[0.061444871127605,0.0004847401578445,0.021921068429947]],[[0.030466228723526,0.03927293419838,-0.066646367311478],[-0.027534477412701,0.0042278906330466,-0.052878051996231],[0.038112331181765,-0.016138048842549,0.018257778137922]],[[0.016619086265564,0.036243427544832,0.0050380062311888],[0.043805953115225,-0.0057886680588126,-0.0011583715677261],[0.044050719588995,-0.0377889983356,-0.070202775299549]],[[-0.0086040515452623,0.02915109321475,0.00055267877178267],[0.051845066249371,-0.0031947689130902,0.03186334297061],[0.029633808881044,-0.0052601285278797,0.013961296528578]],[[0.01131176110357,0.024696212261915,-0.011450871825218],[0.065683253109455,0.018293665722013,0.02993443608284],[-0.022313795983791,-0.0055697867646813,-0.067780010402203]],[[0.010784510523081,0.033014860004187,0.020468313246965],[0.016376288607717,0.04829603433609,0.048567719757557],[0.010043798945844,-0.007898555137217,0.0057754931040108]],[[-0.024800511077046,-0.097808219492435,0.069624289870262],[-0.027863636612892,-0.059652846306562,0.025311402976513],[0.019889457151294,-0.011588964611292,0.0083281463012099]],[[0.0075557879172266,0.059522986412048,0.016559179872274],[0.057561300694942,-0.059662126004696,0.036994721740484],[-0.034783806651831,-0.044202268123627,-0.017060728743672]],[[0.056507859379053,0.00041992418118753,0.0096137095242739],[-0.05906230583787,-0.069363676011562,-0.021497871726751],[-0.002077390672639,0.035094246268272,0.03113110922277]],[[-0.021434752270579,-0.022477900609374,0.017258208245039],[0.0025065504014492,0.0050641628913581,0.021028922870755],[0.032132964581251,0.048886716365814,0.076379261910915]],[[-0.029549254104495,-0.041727673262358,0.039757464081049],[-0.01501249987632,0.015756748616695,-0.012918967753649],[-0.024893078953028,0.0024843669962138,0.03256681188941]],[[0.0042434395290911,-0.0033826432190835,0.0015254593454301],[0.012667892500758,0.0076686232350767,0.070549845695496],[0.064229719340801,-0.028724409639835,0.022335972636938]],[[0.014740822836757,0.025229781866074,0.017739800736308],[-0.016920791938901,0.031383704394102,-0.022960280999541],[0.0018723823595792,-0.040224734693766,-0.049080740660429]],[[-0.12334985285997,-0.048702910542488,-0.031929388642311],[-0.087749488651752,-0.023608598858118,-0.079912759363651],[-0.010025347582996,-0.085620403289795,-0.054032407701015]],[[-0.0052831233479083,-0.053739540278912,-0.0019411121029407],[0.021627172827721,-0.025369931012392,0.076987326145172],[-0.022412268444896,0.056477077305317,-0.013250876218081]],[[0.011936551891267,0.036094035953283,-0.025053329765797],[0.0063956337980926,0.031549427658319,0.0056238966062665],[-0.019936334341764,0.066646963357925,0.010982089675963]],[[-0.0016953512094915,-0.057366922497749,0.0052034594118595],[0.010885367169976,0.050977371633053,-0.045175060629845],[-0.015181376598775,0.0056336270645261,0.00078038545325398]],[[0.077595487236977,-0.045069351792336,0.03687410056591],[0.055559173226357,0.01278671529144,-0.020936850458384],[0.011155361309648,-0.020095508545637,-0.014488028362393]],[[-0.02367983199656,0.079379171133041,-0.02024875767529],[-0.061644624918699,-0.011307473294437,0.062147997319698],[0.028281338512897,-0.038106609135866,0.020060973241925]],[[-0.032579410821199,-0.016376003623009,0.037100855261087],[0.040278881788254,0.024399060755968,-0.065680406987667],[-0.01798278465867,-0.016352096572518,0.066144295036793]],[[0.01716592349112,-0.031469833105803,-0.0029471071902663],[-0.0030892412178218,-0.030180666595697,0.0060297353193164],[0.027283800765872,-0.06724688410759,0.030180711299181]],[[-0.015568557195365,-0.013173956423998,-0.012345445342362],[0.067154921591282,-0.049673795700073,0.096572078764439],[-5.6142605899367e-05,-0.09252005815506,0.0073140659369528]],[[-0.026600262150168,-0.0033176238648593,0.031943347305059],[-0.014785991050303,-0.041243765503168,-0.048645406961441],[0.0085722822695971,0.051203206181526,0.0048572337254882]],[[-0.021125951781869,-0.017344171181321,-0.017347324639559],[-0.0055867107585073,0.021003844216466,-0.0075836423784494],[0.0089419763535261,0.033579766750336,-0.038242742419243]],[[0.006619883235544,-0.0485685095191,-0.003377222456038],[0.049927171319723,0.010004140436649,0.011955880559981],[-0.054239954799414,0.019211184233427,-0.011320671066642]],[[-0.028747119009495,-0.037974029779434,0.057221241295338],[-0.035829644650221,-0.071008704602718,0.037672601640224],[0.031758230179548,0.006398347672075,-0.0059494413435459]],[[0.038398142904043,-0.03320624679327,-0.035354062914848],[-0.020588686689734,0.014383541420102,-0.00047256343532354],[0.013726069591939,0.087826818227768,0.024275075644255]],[[0.020278807729483,-0.022426700219512,-0.017645115032792],[-0.015405520796776,0.016608348116279,-0.029563149437308],[0.056409824639559,0.014953448437154,0.0014534095535055]],[[0.031698886305094,0.0077707641758025,-0.033554490655661],[0.013847696594894,-0.015586492605507,-0.034175254404545],[-0.041833139955997,0.023576509207487,0.0001503107487224]],[[0.0002125593891833,0.046599749475718,-0.029320653527975],[-0.0092370836064219,0.049464177340269,0.022478150203824],[0.06368475407362,-0.021813832223415,0.065225087106228]],[[0.014659328386188,0.052362971007824,0.0052970279939473],[0.020434631034732,-0.035610321909189,-0.017427435144782],[-0.064573280513287,0.034589622169733,-0.019513729959726]]],[[[-0.038399282842875,-0.024977928027511,0.063467875123024],[-0.05273263156414,0.0039836196228862,0.11913126707077],[-0.0097629614174366,0.13456754386425,0.16367921233177]],[[0.00055012456141412,0.052955843508244,0.085262477397919],[-0.036718394607306,0.020693842321634,-0.00050262681907043],[-0.017465924844146,0.041774973273277,-0.045391045510769]],[[0.019109597429633,-0.076027795672417,-0.027424834668636],[-0.048079289495945,-0.089345030486584,-0.046947184950113],[-0.006361183244735,0.08857137709856,0.029261335730553]],[[-0.21480658650398,0.15148904919624,0.062437608838081],[-0.032756961882114,-0.094052888453007,-0.11087690293789],[0.03821787238121,-0.0062761143781245,-0.17867578566074]],[[0.049618247896433,-0.042642038315535,0.026889866217971],[-0.016729727387428,0.019248653203249,0.034352757036686],[-0.022733042016625,-0.040439736098051,0.05154437944293]],[[-0.060852475464344,-0.011304631829262,-0.007907128892839],[-0.046486180275679,-0.011454114690423,-0.067634761333466],[-0.011603794060647,-0.038604252040386,-0.10076660662889]],[[0.039609771221876,0.039527028799057,0.14359365403652],[-0.077663578093052,-0.025517897680402,0.12016463279724],[0.0047251549549401,-0.070206180214882,0.0095830569043756]],[[0.093517385423183,-0.065387755632401,-0.034436762332916],[-0.041050150990486,0.026463150978088,0.036508440971375],[-0.0044175186194479,-0.05503473430872,-0.026309881359339]],[[-0.064285799860954,0.0045050149783492,0.025062944740057],[-0.0074020498432219,-0.022682003676891,-0.11131389439106],[0.082518979907036,-0.017063848674297,0.052451938390732]],[[0.016039250418544,0.075156323611736,-0.052168909460306],[0.021749092265964,0.061632849276066,0.074675500392914],[0.079214923083782,0.10670920461416,0.02146977558732]],[[0.057677734643221,0.07761511951685,0.056193113327026],[0.021429972723126,-0.042499184608459,0.047535948455334],[-0.058624107390642,-0.047753509134054,-0.14179857075214]],[[0.040375620126724,0.065237678587437,0.012968708761036],[-0.045815702527761,-0.061705525964499,-0.063502103090286],[0.089201129972935,-0.0099229011684656,-0.072743229568005]],[[0.029809843748808,0.039042372256517,-0.11168324202299],[-0.0008181631565094,-0.052073590457439,-0.016065701842308],[0.063753023743629,0.01859475672245,0.10666682571173]],[[-0.012118625454605,-0.015992488712072,-0.10864793509245],[0.061657037585974,0.10345640033484,0.024830155074596],[-0.021643737331033,-0.034035474061966,0.014531470835209]],[[-0.070907317101955,0.0035762439947575,-0.040694270282984],[0.075190268456936,-0.033483255654573,-0.048942502588034],[-0.018128894269466,0.029493506997824,-0.0700424015522]],[[0.021094901487231,0.055316369980574,0.044801015406847],[-0.0017803033115342,-0.033820826560259,-0.037678837776184],[-0.035514000803232,0.021149475127459,0.043571680784225]],[[-0.015794299542904,-0.013160357251763,-0.06334874778986],[0.078076682984829,-0.038676187396049,-0.085853010416031],[0.038082081824541,0.0051445411518216,0.096318274736404]],[[0.0015972421970218,0.028910677880049,0.05844347551465],[-0.028068473562598,0.072144269943237,0.13456659018993],[-0.050568502396345,-0.036284875124693,0.074313275516033]],[[0.015464470721781,0.065515697002411,0.034774646162987],[-0.0082226525992155,0.043486207723618,-0.024684455245733],[-0.027578216046095,-0.00023394168238156,0.027499672025442]],[[-0.00074075296288356,0.031646765768528,0.0034876356367022],[-0.055015448480844,0.052408222109079,0.026229474693537],[0.057556863874197,-0.00096731097437441,-0.079560063779354]],[[-0.015878381207585,0.026478711515665,0.049652777612209],[-0.078982330858707,-0.026619138196111,-0.090171180665493],[0.0017618327401578,-0.15603959560394,-0.03770774975419]],[[0.053999271243811,0.053019437938929,0.054331105202436],[-0.019412169232965,0.0098104812204838,-0.0049641123041511],[-0.026595555245876,-0.029426859691739,-0.014232052490115]],[[0.025055298581719,0.037752576172352,0.0094101773574948],[0.012866604141891,-0.0027596480213106,-0.038195371627808],[-0.014391120523214,0.024717910215259,-0.06223726645112]],[[0.050454098731279,-0.032986264675856,0.059148691594601],[0.022821152582765,0.06080112978816,-0.019788298755884],[-0.0071637937799096,-0.01035216357559,-0.013073994778097]],[[0.13245443999767,0.081474259495735,-0.26080518960953],[0.10072499513626,-0.072696857154369,0.074890859425068],[-0.19973027706146,-0.043475579470396,0.065223798155785]],[[0.031979467719793,-0.03076034411788,0.1058149933815],[0.060464005917311,-0.019110655412078,0.031012296676636],[0.050547249615192,0.061115276068449,-0.015227808617055]],[[-0.035077452659607,-0.038659531623125,-0.051174979656935],[-0.037282172590494,-0.049561679363251,-0.036002732813358],[0.05384848639369,-0.012022264301777,-0.0058755213394761]],[[0.052073705941439,-0.060335449874401,0.010922655463219],[0.029091877862811,-0.049989808350801,-0.078950561583042],[-0.042855687439442,0.033497143536806,0.011200914159417]],[[-0.027956333011389,0.015343191102147,0.068037927150726],[0.0057426067069173,0.014713635668159,0.020890129730105],[-0.035120595246553,-0.10191178321838,-0.046740900725126]],[[0.028105748817325,-0.074162870645523,-0.021743452176452],[-0.047525353729725,0.089936695992947,0.039483610540628],[-0.09506694227457,-0.057638414204121,-0.082313500344753]],[[-0.022596379742026,-0.017572524026036,-0.020564325153828],[-0.024094447493553,-0.0058819479309022,-0.032972540706396],[-0.017170708626509,0.025581667199731,0.051774851977825]],[[0.028936250135303,-0.0024130614474416,0.04311079531908],[-0.068714782595634,0.012458443641663,-0.063854292035103],[0.0021910783834755,-0.044285006821156,-0.039887599647045]],[[-0.097031183540821,-0.10357338935137,-0.11660752445459],[-0.015919417142868,-0.0087416963651776,0.096187129616737],[0.076103515923023,0.13059104979038,0.043189931660891]],[[0.0054291794076562,-0.11323812603951,0.016918126493692],[-0.029508927837014,-0.020409611985087,-0.016552913933992],[0.03731369972229,0.09130984544754,0.060848325490952]],[[0.0609026029706,0.094184145331383,0.054739113897085],[0.016301391646266,0.1291528493166,0.018420884385705],[0.068998105823994,0.032254192978144,0.027181126177311]],[[-0.047293961048126,0.02105175703764,0.048256367444992],[-0.098761171102524,-0.05875351279974,-0.0030951681546867],[-0.064751043915749,-0.21712112426758,0.045099526643753]],[[0.011419284157455,0.14137469232082,0.016196234151721],[-0.041025936603546,0.06946288049221,-0.0039200778119266],[0.02735672518611,-0.029411245137453,-0.085797697305679]],[[-0.063855975866318,0.021747272461653,-0.12221106141806],[0.0049456688575447,-0.018431445583701,0.10453989356756],[-0.0098078586161137,-0.0012960797175765,0.061768483370543]],[[0.082962431013584,0.055437196046114,-0.05427136644721],[-0.02751930616796,-0.050915896892548,-0.0067246137186885],[-0.04274158552289,-0.06566146761179,0.031179886311293]],[[-0.080834358930588,-0.057862907648087,0.017030688002706],[0.055927101522684,-0.051091115921736,-0.037620488554239],[0.022350672632456,-0.050357006490231,0.055539947003126]],[[-0.057938229292631,0.047359392046928,-0.0047373566776514],[-0.027627941220999,-0.031414154917002,-0.017321115359664],[0.0063709900714457,0.07763884216547,0.039879839867353]],[[-0.045980647206306,0.01856491714716,-0.13069397211075],[-0.045368369668722,-0.084767691791058,-0.08340360969305],[-0.028408631682396,-0.022893050685525,0.024044321849942]],[[-0.068946495652199,-0.0025156873743981,-0.12243744730949],[0.11725626140833,-0.089221097528934,0.11560439318419],[0.06978465616703,0.061332155019045,-0.075184032320976]],[[-0.062764286994934,-0.016455953940749,-0.0080050872638822],[0.038970395922661,-0.036545440554619,0.019954610615969],[0.024877604097128,0.020065961405635,0.045145686715841]],[[-0.10947822779417,0.063831105828285,0.042577132582664],[-0.079648271203041,0.0067641865462065,0.052878674119711],[0.087041407823563,-0.047363456338644,-0.0056226681917906]],[[-0.095018185675144,0.073947057127953,-0.14595226943493],[0.03773545846343,-0.11246266961098,0.13731937110424],[-0.15932177007198,0.046312004327774,-0.068119592964649]],[[-0.0029189067427069,-0.00054366508265957,0.039558880031109],[0.035533014684916,0.060552451759577,-0.06824753433466],[0.037200048565865,0.0050245495513082,-0.037593439221382]],[[0.012086252681911,-0.048542086035013,-0.023077132180333],[0.05005582049489,-0.010421994142234,-0.019361322745681],[0.022473385557532,0.0037021867465228,0.058225147426128]],[[0.029752302914858,-0.027868760749698,0.0013605013955384],[0.051233187317848,-0.0079519106075168,0.016861233860254],[0.046747490763664,0.03400618955493,0.10404404252768]],[[-0.0074202325195074,-0.002005017362535,-0.041475765407085],[0.031714085489511,-0.043670069426298,-0.078450441360474],[0.026141947135329,0.053553774952888,-0.0019814288243651]],[[-0.041242375969887,0.0037593708839267,-0.048232212662697],[-0.069906987249851,0.081714868545532,-0.0030504793394357],[0.064158163964748,0.022074207663536,-0.027790505439043]],[[0.008288336917758,0.014187498018146,-0.012699321843684],[0.005783739965409,0.03464138135314,-0.089168973267078],[0.014464651234448,-0.02795734256506,-0.0071464539505541]],[[0.012884463183582,-0.0030030047055334,-0.072678990662098],[0.020884400233626,0.014892863109708,-0.010639402084053],[-0.058621007949114,-0.0022395085543394,0.033779580146074]],[[-0.051711022853851,-0.073293000459671,0.01721147634089],[0.0082255499437451,0.033757857978344,0.025411242619157],[-0.024089395999908,-0.020080029964447,0.060144081711769]],[[0.030262676998973,0.007468422409147,-0.060895558446646],[0.0036400302778929,0.14329758286476,0.12281946837902],[-0.054828569293022,-0.0076781711541116,-0.003584323450923]],[[0.078246019780636,-0.033111326396465,-0.032897334545851],[0.043268091976643,0.022566363215446,0.029253717511892],[-0.045965135097504,0.022520979866385,-0.10947758704424]],[[0.057281110435724,-0.011421115137637,-0.012901318259537],[-0.065129123628139,0.026361603289843,-0.0065565388649702],[0.026483654975891,0.090634934604168,-0.064699597656727]],[[0.0096661914139986,-0.035974495112896,-0.012544573284686],[0.0084230378270149,-0.037108708173037,0.049126412719488],[-0.026565913110971,0.00222412426956,0.004033321980387]],[[0.0090906890109181,-0.019949490204453,-0.034258924424648],[-0.057948026806116,0.016794262453914,-0.11738190799952],[0.036929663270712,0.059614643454552,0.058608587831259]],[[0.0028923936188221,0.074633993208408,-0.031653609126806],[-0.087024062871933,-0.011320158839226,-0.056829147040844],[0.028403285890818,0.06367477029562,-0.024465102702379]],[[-0.044295448809862,-0.019002037122846,-0.029406445100904],[0.0040120165795088,-0.12104492634535,-0.12261721491814],[-0.053818967193365,-0.0897261723876,-0.16407509148121]],[[-0.057370077818632,0.045257799327374,-0.11716510355473],[-0.019254287704825,0.084518186748028,-0.054795183241367],[-0.021191284060478,-0.010738719254732,0.043364714831114]],[[-0.0063998647965491,-0.037520173937082,-0.061092227697372],[0.0012342939153314,-0.068009316921234,0.038410987704992],[0.013045573607087,-0.049024861305952,0.064690761268139]],[[0.14564336836338,0.058451451361179,0.066259190440178],[-0.033004853874445,-0.012661878019571,-0.081902973353863],[0.036325048655272,-0.063096225261688,-0.048671316355467]],[[-0.0059415609575808,0.011492434889078,-0.093878321349621],[0.090526960790157,-0.048354856669903,0.031646464020014],[0.037106662988663,-0.010187975130975,0.00016900675836951]],[[-0.04824037104845,-0.088174901902676,-0.042244907468557],[0.043422151356936,-0.1040663421154,-0.070968948304653],[0.051705308258533,0.045730099081993,0.073775105178356]],[[-0.00079173629637808,0.028937216848135,-0.078513845801353],[0.028862504288554,-0.1006423458457,0.038866456598043],[0.0057702423073351,-0.0093362471088767,-0.062288347631693]],[[-0.095965646207333,-0.063965052366257,-0.040137968957424],[-0.044779900461435,-0.030195457860827,-0.00056276231771335],[0.041972003877163,0.011884578503668,0.071859881281853]],[[0.048479683697224,-0.06337533891201,-0.016713021323085],[0.039754565805197,-0.087255775928497,0.011611627414823],[0.064368836581707,-0.11037170886993,0.0091844368726015]],[[0.028160769492388,0.050069913268089,0.039052613079548],[-0.064134426414967,0.0016725077293813,0.010636001825333],[-0.017055155709386,0.025857508182526,0.001151179545559]],[[0.10190314799547,-0.067021586000919,-0.050160709768534],[-0.014307210221887,-0.044904105365276,-0.048966489732265],[-0.028263792395592,0.037796661257744,0.0060268053784966]],[[0.024378590285778,-0.038180138915777,-0.025693355128169],[0.0012836599489674,0.061431605368853,-0.049484074115753],[0.016364611685276,-0.026782985776663,0.072282947599888]],[[0.10175462067127,-0.061679892241955,0.0019844498019665],[-0.1038256958127,-0.099120043218136,-0.072334267199039],[-0.080920815467834,-0.034935295581818,0.032806444913149]],[[-0.035453405231237,-0.00083732232451439,0.044599689543247],[-0.034959070384502,0.028155999258161,0.033703431487083],[0.091885335743427,-0.020220883190632,0.051737938076258]],[[-0.027398355305195,0.055039923638105,0.073671840131283],[-0.082621827721596,-0.029448676854372,0.12565311789513],[0.095050506293774,0.077048070728779,0.057642005383968]],[[-2.4105062038871e-05,0.084468223154545,-0.020948762074113],[-0.017688192427158,0.0016807449283078,-0.075337424874306],[-0.046692527830601,-0.028367919847369,-0.0056843995116651]],[[0.045974634587765,0.01310707628727,-0.07884818315506],[-0.047925226390362,-0.036618947982788,-0.038677256554365],[-0.096125930547714,-0.048877313733101,-0.042130243033171]],[[0.14329582452774,0.016689153388143,-0.023347068578005],[0.03561607003212,0.0013452405110002,-0.060645684599876],[-0.068767003715038,0.038617931306362,-0.05631985142827]],[[-0.0050878338515759,-0.051958978176117,0.012594110332429],[-0.073340490460396,0.089660279452801,0.080038845539093],[0.071521818637848,-0.023410202935338,-0.039916135370731]],[[0.018962785601616,-0.11353472620249,-0.014626343734562],[-0.014315719716251,-0.072924099862576,-0.04203712195158],[0.074261948466301,0.02767495252192,0.053437627851963]],[[-0.083522461354733,-0.01123762037605,-0.060099393129349],[-0.0087321046739817,-0.012934201397002,0.020480923354626],[0.005183489061892,0.011523907072842,0.024081286042929]],[[0.079320706427097,0.13229128718376,-0.00052493327530101],[-0.015188683755696,-0.0027558843139559,0.056579947471619],[0.010187140665948,0.11226000636816,0.031657863408327]],[[0.032717425376177,0.074357621371746,-0.016878176480532],[0.064611539244652,-0.077428847551346,0.016458764672279],[0.038645129650831,0.015115279704332,0.078433386981487]],[[-0.067061044275761,0.0043571293354034,-0.062170889228582],[0.027553094550967,-0.014099455438554,0.014730548486114],[-0.0069207493215799,-0.015778353437781,0.035719744861126]],[[0.0054361755028367,0.025250762701035,0.018538916483521],[0.031497273594141,0.068068899214268,-0.054859597235918],[-0.032556708902121,-0.011197072453797,-0.0038537296932191]],[[-0.06652943789959,-0.068339943885803,-0.042725998908281],[-0.021607097238302,0.062322787940502,0.099809013307095],[0.056294996291399,0.010669366456568,0.011311995796859]],[[0.084031000733376,-0.00090074021136388,-0.091305881738663],[-0.074861042201519,0.016435317695141,0.099671073257923],[0.0093944855034351,-0.0081339152529836,0.095404237508774]],[[0.040378715842962,-0.048269111663103,0.019818155094981],[-0.021022506058216,-0.052908126264811,-0.0054447767324746],[0.0041913352906704,-0.013758595101535,0.032308977097273]],[[-0.10972804576159,-0.052263375371695,0.04831911996007],[-0.03710225597024,0.092686787247658,0.039770644158125],[-0.066036194562912,-0.030671710148454,-0.05100179836154]],[[-0.028380023315549,-0.042236942797899,0.15185238420963],[-0.058569487184286,-0.073785275220871,0.0058299279771745],[-0.054656777530909,0.072452418506145,-0.0386050529778]],[[0.0048332898877561,0.043854463845491,-0.030965970829129],[-0.02516283094883,-0.070922367274761,0.040193445980549],[-0.0099182361736894,0.010415420867503,0.045438095927238]],[[0.037800095975399,0.073465883731842,0.052724607288837],[-0.04932302236557,-0.035658538341522,-0.032817736268044],[0.011598006822169,-0.035370290279388,-0.038201574236155]],[[0.026173230260611,0.069661982357502,0.029075153172016],[0.0044215018860996,0.12021828442812,-0.13603983819485],[-0.028676996007562,-0.020613070577383,0.010812401771545]],[[0.044910222291946,0.076358668506145,0.015791445970535],[0.039985932409763,0.070237196981907,0.088546946644783],[0.088560827076435,0.071856021881104,0.020816536620259]],[[0.017113391309977,-0.021291771903634,-0.079619191586971],[-0.037925653159618,0.014106963761151,-0.02426864951849],[-0.0080386754125357,0.063877157866955,-0.096434623003006]],[[0.0083291167393327,-0.033952441066504,-0.0083911055698991],[0.052021335810423,0.022507257759571,-0.0841363966465],[0.12210468202829,0.0066487500444055,0.014035079628229]],[[-0.03604194894433,0.013297393918037,0.011853381991386],[-0.00607705488801,-0.032881300896406,0.0042885164730251],[-0.047057937830687,-0.0034936796873808,0.0097123449668288]],[[-0.10025072842836,-0.013981983065605,-0.096708901226521],[-0.04638347029686,0.079920783638954,0.031343098729849],[0.049172144383192,0.013384937308729,-0.069488510489464]],[[-0.12665444612503,0.03086506947875,0.064445234835148],[0.025022806599736,0.035283584147692,0.019253347069025],[0.036270804703236,0.013894870877266,-0.0038098325021565]],[[0.13054610788822,-0.060895208269358,-0.068030752241611],[-0.13675697147846,0.19645439088345,0.019674517214298],[0.14266331493855,-0.057190991938114,0.039187088608742]],[[0.015923164784908,0.020495880395174,0.11053236573935],[-0.017093190923333,-0.041394162923098,-0.0032693415414542],[0.026614844799042,0.10547957569361,0.052350018173456]],[[-0.043246328830719,0.025874212384224,-0.0079740975052118],[-0.033306404948235,0.047984048724174,-0.0044813766144216],[-0.02099147439003,-0.0079709244892001,0.043431296944618]],[[0.05029284954071,0.020343700423837,-0.057386327534914],[-0.013440131209791,-0.10672955960035,-0.036618918180466],[-0.08276492357254,0.0057040988467634,0.038559515029192]],[[0.02838022634387,0.053150951862335,0.024541519582272],[-0.042069740593433,-0.00051370717119426,-0.006776612251997],[0.005819134414196,-0.006227632984519,0.0068890051916242]],[[-0.0084490617737174,-0.0552928596735,-0.050490669906139],[-0.056096039712429,0.028576709330082,0.030504878610373],[0.02848987467587,0.040215082466602,0.0023475692141801]],[[-0.049273118376732,0.0087750982493162,0.12956343591213],[-0.0053030150011182,-0.031559072434902,0.022958736866713],[-0.082376286387444,-0.075646281242371,0.065000593662262]],[[0.0091497432440519,0.06708500534296,0.036346398293972],[-0.0070659816265106,-0.032707259058952,0.015477693639696],[0.0058808443136513,-0.11076364666224,-0.1099247187376]],[[-0.014318547211587,-0.016822706907988,0.015555500052869],[0.020885463804007,-0.056875307112932,0.039493594318628],[-0.043029543012381,0.076029159128666,-0.0021358395460993]],[[0.048199024051428,-0.0069435103796422,-0.028112847357988],[-0.0039162952452898,-0.030070556327701,0.057688008993864],[-0.039488863199949,0.028699362650514,0.027724519371986]],[[0.016838686540723,-0.035201460123062,-0.02369193919003],[-0.011057904921472,0.024675140157342,-0.043619759380817],[0.0031956760212779,0.026727506890893,0.041720606386662]],[[0.031658161431551,0.017245357856154,-0.00012898839486297],[0.0035748549271375,-0.001412843237631,0.015473422594368],[-0.016691850498319,-0.013899295590818,-0.024433122947812]],[[-0.023394867777824,0.042523495852947,0.039880685508251],[0.015697987750173,0.061750661581755,0.0079187843948603],[0.012568379752338,-0.089978612959385,0.029141953215003]],[[-0.10827144235373,-0.080838955938816,0.025599962100387],[-0.028604539111257,-0.055346608161926,-0.0019312511431053],[0.05673960223794,0.13555492460728,0.024575158953667]],[[0.03807195276022,-0.027887035161257,-0.019524104893208],[-0.1125992462039,-0.0088041881099343,0.033027738332748],[0.034615766257048,0.023883681744337,0.047460690140724]],[[-0.095235742628574,-0.020104272291064,-0.036892212927341],[-0.082617908716202,-0.0060994494706392,-0.061615277081728],[0.00088827591389418,0.13344305753708,0.055237103253603]],[[0.10866975784302,0.011562479659915,0.010609094053507],[-0.024850334972143,-0.054297383874655,-0.083169892430305],[0.0086284773424268,0.042741857469082,-0.060428697615862]],[[-0.062586717307568,0.024568805471063,0.0029277773573995],[-0.018919836729765,-0.048838064074516,0.031309798359871],[-0.017482275143266,-0.067849330604076,0.0066796750761569]],[[-0.034442361444235,0.045314364135265,-0.010071566328406],[0.013585987500846,0.022343471646309,-0.04997307062149],[0.033370785415173,0.016861801967025,-0.0075644296593964]],[[-0.015732988715172,0.056100767105818,-0.058577157557011],[0.040197778493166,0.096948198974133,-0.041347648948431],[0.04902046173811,-0.054003290832043,-0.021689319983125]],[[0.013668792322278,-0.0079042417928576,-0.045980498194695],[0.070162557065487,-0.018916258588433,-0.050912320613861],[0.033091235905886,0.0074557820335031,-0.090201057493687]],[[-0.0094059724360704,0.029617939144373,-0.0088741695508361],[-0.038182217627764,0.013772063888609,-0.030547574162483],[0.060756970196962,-0.00091831758618355,-0.0042320764623582]],[[0.01612401381135,-0.040765382349491,0.01918239146471],[0.04977398365736,-0.046718962490559,-0.04919096082449],[-0.052940186113119,-0.10014379024506,-0.0040238457731903]],[[-0.021880919113755,-0.047037582844496,-0.080051839351654],[-0.054300535470247,-0.052130721509457,-0.16449388861656],[0.023048363626003,-0.0041064037941396,-0.077570952475071]],[[0.090366579592228,0.070868827402592,-0.062732212245464],[-0.00505978660658,0.054799724370241,-0.0120868999511],[-0.013455685228109,-0.020069129765034,0.0019635930657387]],[[0.067550130188465,-0.038600143045187,-0.017505126073956],[-0.024277115240693,-0.017301073297858,-0.095121964812279],[-0.022297630086541,0.016858398914337,-0.0080409348011017]],[[0.00080646976130083,-0.043254129588604,0.045469161123037],[-0.042180866003036,-0.026446780189872,0.044422212988138],[0.012659650295973,-0.055953182280064,-0.091239266097546]],[[-0.023744652047753,0.045196104794741,0.049802489578724],[0.052059732377529,0.016990872099996,0.068072259426117],[-0.1271713078022,-0.0032645484898239,-0.016138594597578]],[[0.0028689985629171,-0.065692417323589,-0.078602507710457],[0.038454953581095,0.0037236961070448,-0.019124835729599],[0.00064227735856548,0.12254275381565,0.032289944589138]]],[[[-0.021797591820359,0.016557963564992,-0.0018562524346635],[-0.044933263212442,-0.033337719738483,0.015705317258835],[-0.051721572875977,0.050163891166449,0.10791675001383]],[[-0.017232311889529,-0.028870210051537,0.11313530057669],[0.076948791742325,0.080868616700172,-0.11291684955359],[0.06465844810009,-0.11696229875088,-0.038816515356302]],[[0.0863888412714,8.3359584095888e-05,0.0099468603730202],[0.048654101788998,0.0085288966074586,-0.077716998755932],[0.021138343960047,-0.069989174604416,-0.044209491461515]],[[0.0024077503476292,0.005603161174804,0.002661568345502],[-0.089542657136917,0.0015926753403619,0.065785519778728],[-0.077384769916534,-0.0063262041658163,0.026463313028216]],[[-0.043654929846525,-0.0065031824633479,-0.012342258356512],[0.010419443249702,-0.068110376596451,0.053853899240494],[0.029178755357862,-0.053484357893467,-0.010480405762792]],[[0.0044954800978303,-0.019812408834696,-0.057294521480799],[-0.010441152378917,0.10564293712378,-0.016651110723615],[-0.09833087772131,-0.094824157655239,-0.039777610450983]],[[0.029941441491246,-0.067522212862968,0.083583779633045],[0.031124949455261,-0.014311548322439,-0.028588561341166],[-0.089288838207722,-0.067502468824387,0.028917670249939]],[[0.087930552661419,-0.014997714199126,-0.043501447886229],[0.02996014803648,0.04104845225811,0.003593006869778],[-0.0060255052521825,-0.025618636980653,0.028042180463672]],[[-0.12534222006798,-0.01708297431469,0.043925669044256],[-0.058463390916586,-0.12997484207153,0.0010773409157991],[-0.0105917500332,0.00051513081416488,0.071212105453014]],[[0.0073371334001422,0.034879926592112,-0.01660543680191],[0.087184250354767,-0.059632357209921,-0.054831154644489],[-0.091767333447933,-0.093083918094635,0.02322973869741]],[[-0.095449581742287,-0.042817369103432,-0.030210096389055],[-0.037976052612066,0.053533677011728,0.029921546578407],[-0.062925890088081,-0.094671234488487,-0.029245575889945]],[[-0.055310472846031,-0.024244409054518,-0.029874159023166],[0.017060361802578,-0.076556392014027,0.078691780567169],[-0.1170619726181,-0.0044811726547778,-0.060867890715599]],[[0.095722272992134,0.12416289746761,0.112891882658],[-0.092283964157104,0.037201084196568,-0.023774884641171],[0.053908083587885,0.064401216804981,0.0759472027421]],[[-0.029965763911605,-0.043604865670204,0.017033895477653],[0.067787319421768,-0.01694455370307,-0.030753999948502],[0.082548655569553,0.08596708625555,-0.06593406945467]],[[-0.11566054075956,-0.0092255491763353,0.0075705740600824],[-0.068554073572159,0.066328920423985,0.046753767877817],[0.032365400344133,0.00037118641193956,-0.091809689998627]],[[0.067683085799217,-0.063269935548306,-0.06226934120059],[0.051936034113169,-0.045831445604563,-0.084544286131859],[-0.027620863169432,-0.024425849318504,-0.0370689406991]],[[0.018188055604696,0.016751999035478,0.07520267367363],[-0.025079851970077,-0.091414146125317,0.02189565077424],[0.0198711194098,0.012363342568278,-0.023416044190526]],[[0.031641360372305,-0.030169874429703,-0.026709545403719],[-0.031124332919717,-0.056689951568842,-0.025683855637908],[-0.058972924947739,-0.0325628221035,-0.0079160882160068]],[[-0.016449956223369,0.10168509185314,0.080869860947132],[0.064440235495567,0.034194350242615,0.00018190589617006],[0.019115185365081,0.17114715278149,0.010974547825754]],[[-0.015708222985268,0.055197227746248,-0.0085246106609702],[-0.03727975487709,0.039972681552172,0.023757873103023],[0.0012022738810629,0.058355007320642,0.13893730938435]],[[-0.044769383966923,-0.015367243438959,0.047616817057133],[0.032249700278044,0.075877495110035,-0.064091585576534],[0.15872691571712,-0.057602945715189,-0.019595490768552]],[[0.068985231220722,0.021238418295979,0.020886993035674],[0.082590967416763,-0.018790367990732,-0.014957282692194],[-0.013174364343286,0.052433785051107,0.03945904225111]],[[0.10293678939342,-0.15900135040283,0.046703435480595],[-0.061845056712627,-0.0064456891268492,-0.030646082013845],[0.051134195178747,-0.093977488577366,-0.012149265035987]],[[-0.014632400125265,-0.01406017318368,0.028183689340949],[0.043783120810986,-0.010468014515936,0.074644289910793],[-0.06458406150341,-0.14303411543369,-0.028292205184698]],[[-0.043619655072689,-0.024853993207216,-0.038699086755514],[-0.0023194269742817,0.062307339161634,0.042564254254103],[-0.015276730060577,0.038405947387218,0.067843034863472]],[[-0.013851287774742,-0.018451482057571,0.019699413329363],[-0.019474443048239,-0.096932969987392,0.021143047139049],[0.022186521440744,-0.0073197744786739,0.0021769502200186]],[[-0.19136098027229,0.010433794930577,0.076857797801495],[0.0024112926330417,-0.11915674805641,-0.028023518621922],[-0.0019840886816382,0.0051660351455212,-0.24252231419086]],[[-0.24177676439285,0.0026001846417785,0.092717438936234],[-0.039841040968895,-0.10980144888163,-0.0020280862227082],[-0.018604101613164,0.025856874883175,-0.0095450095832348]],[[0.015907859429717,0.16039863228798,-0.073607057332993],[-0.18293778598309,0.062346957623959,0.046272806823254],[-0.074424363672733,0.13214495778084,0.0033704871311784]],[[-0.11240008473396,-0.0053087142296135,0.02580276876688],[-0.046456079930067,-0.096048310399055,-0.1079703271389],[-0.030947903171182,-0.037665113806725,0.023964798077941]],[[0.059885457158089,-0.047198310494423,-0.046181321144104],[0.051869101822376,-0.020102959126234,0.048572082072496],[0.038104925304651,0.047598861157894,0.0011881815735251]],[[-0.20316852629185,-0.16454239189625,0.025693623349071],[0.12481165677309,-0.09757424145937,-0.064305365085602],[0.071103632450104,0.011888922192156,-0.0065568992868066]],[[0.085274823009968,0.087408542633057,0.060853563249111],[-0.060243666172028,-0.023309079930186,0.15811167657375],[0.021522918716073,-0.048355858772993,0.012020925991237]],[[0.025115257129073,0.0063482448458672,0.016415575519204],[-0.026968998834491,0.031904891133308,-0.013891195878386],[0.068016283214092,-0.093685388565063,0.0074786199256778]],[[-0.0050602117553353,0.011020194739103,0.013612637296319],[0.038127403706312,0.0040887743234634,-0.04870218783617],[0.020054049789906,0.029260100796819,-0.017644301056862]],[[-0.0056792623363435,0.0044567193835974,0.012910715304315],[-0.055318243801594,0.0017541850684211,0.062386550009251],[0.010859145782888,0.029412126168609,-0.034253392368555]],[[0.071747288107872,-0.057310115545988,0.01965400390327],[0.088603958487511,-0.00084868789417669,-0.030687153339386],[-0.03921764343977,0.01842693798244,-0.040215384215117]],[[0.19850945472717,0.047887966036797,-0.0092737134546041],[0.018288744613528,0.054825626313686,-0.084474474191666],[0.032443419098854,-0.0085836900398135,-0.049815583974123]],[[-0.043588254600763,-0.061348229646683,-0.020102581009269],[0.0098198922351003,0.045963659882545,0.11771786957979],[-0.028954043984413,0.013541797176003,-0.020613791421056]],[[0.0030731183942407,0.049315042793751,-0.11655174940825],[0.073461674153805,0.046709757298231,0.0075768078677356],[0.062318202108145,0.057054687291384,0.12891644239426]],[[0.1577784717083,0.082518115639687,0.057334922254086],[0.097952678799629,-0.086681388318539,0.10248016566038],[0.13036893308163,0.046949036419392,-0.020133169367909]],[[-0.016722260043025,0.055387757718563,0.097232431173325],[-0.054764769971371,0.038966860622168,0.057939793914557],[0.031881812959909,0.015027267858386,-0.017191147431731]],[[-0.012816614471376,0.045297466218472,-0.031342424452305],[-0.014485587365925,0.028915489092469,0.053375221788883],[0.078550279140472,-0.012097087688744,0.054697446525097]],[[0.0004284005262889,-0.007757905870676,0.035043712705374],[0.020459208637476,-0.023638235405087,-0.033802695572376],[0.07230781018734,-0.030849253758788,-0.043543837964535]],[[-0.11806584894657,-0.035356715321541,-0.020042732357979],[-0.00019122766389046,0.027588536962867,0.03754560276866],[-0.011885396204889,0.022099107503891,0.042233131825924]],[[-0.0054919486865401,0.056745976209641,0.076885178685188],[0.037685304880142,0.046396512538195,0.046457383781672],[0.0057669770903885,0.0074304612353444,0.014887692406774]],[[-0.033539056777954,0.0064576044678688,0.016866436228156],[0.02497742138803,0.00071927084354684,-0.013923323713243],[0.0049257534556091,0.034947153180838,-0.023996481671929]],[[0.018639281392097,0.10025881230831,-0.0058909123763442],[-0.088933490216732,-0.040962107479572,-0.0089424373582006],[-0.023842724040151,-0.041044224053621,-0.05833587422967]],[[-0.084015510976315,-0.064590767025948,-0.043801672756672],[0.016060983762145,-0.006575524341315,0.0071478812023997],[-0.067825153470039,-0.085801117122173,0.046218790113926]],[[-0.09639822691679,0.055843584239483,0.14591147005558],[0.12122697383165,-0.052612543106079,0.087965250015259],[0.14381477236748,-0.0038619213737547,-0.1224897429347]],[[0.029275145381689,0.020102044567466,0.00024423358263448],[0.012353395111859,0.1309397816658,0.014775269664824],[-0.046121697872877,0.19792574644089,0.15241435170174]],[[0.055569931864738,0.016998009756207,-0.033367738127708],[0.0040347967296839,0.18999101221561,-0.023791033774614],[-0.016700895503163,0.068417526781559,-0.012992583215237]],[[-0.051253944635391,-0.013494271785021,0.01541296299547],[-0.0079655228182673,0.0070529072545469,-0.022918183356524],[-0.080996587872505,-0.037713784724474,-0.032963771373034]],[[0.12740460038185,-0.10209772735834,0.012911797501147],[0.11233480274677,-0.032498579472303,-0.0041126143187284],[-0.11268831789494,-0.1930558681488,-0.024029497057199]],[[0.058806013315916,0.026352984830737,0.00075655133696273],[0.038151878863573,0.070913411676884,-0.090894907712936],[-0.056934278458357,-0.038238666951656,-0.019222229719162]],[[0.01627442240715,-0.13622005283833,0.087939783930779],[-0.034206263720989,-0.15758764743805,-0.0030719742644578],[0.11430652439594,-0.092841804027557,-0.2182991951704]],[[-0.058721911162138,0.10972595214844,0.047170143574476],[0.10062582045794,-0.027954099699855,0.003540817881003],[-0.020862307399511,-0.029986504465342,0.016515154391527]],[[-0.021650606766343,-0.073564015328884,-0.043743047863245],[-0.011642392724752,0.048779774457216,-0.0056709451600909],[0.016429591923952,-0.082490928471088,0.082706667482853]],[[-0.050711944699287,0.073426850140095,0.038455963134766],[0.047919012606144,-0.043654415756464,-0.19302132725716],[0.087905019521713,-0.065461322665215,-0.029206665232778]],[[0.02786167152226,0.0046919449232519,-0.10241015255451],[0.082908481359482,0.026059966534376,-0.098378978669643],[0.093581698834896,0.072348386049271,-0.01619229093194]],[[-0.032391760498285,-0.0343878865242,-0.022037237882614],[-0.0093851899728179,0.0014720364706591,0.052335720509291],[-0.047182828187943,-0.067802540957928,-0.06914459168911]],[[-0.07039799541235,0.011752334423363,-0.068078279495239],[-0.0048273210413754,-0.050822623074055,0.071459397673607],[0.030193673446774,-8.0333324149251e-05,-0.069686397910118]],[[0.042067240923643,-0.07519043982029,0.016780223697424],[0.13789667189121,-0.026021912693977,-0.077806673943996],[-0.058816235512495,0.029464866966009,0.12797212600708]],[[-0.015582744032145,0.044247407466173,-0.054999019950628],[-0.023982720449567,0.089862860739231,0.0072775967419147],[-0.0088132815435529,0.028912387788296,-0.047167751938105]],[[-0.0032808361575007,0.033972103148699,-0.041461762040854],[0.015866192057729,-0.045957393944263,-0.058456011116505],[-0.020398240536451,-0.093909166753292,-0.085678115487099]],[[-0.046605795621872,-0.014115597121418,0.10726969689131],[-0.081602744758129,-0.0085826404392719,0.0027971784584224],[0.065629325807095,0.052193708717823,0.028555393218994]],[[-0.035800915211439,-0.02494184859097,0.14765028655529],[-0.051667306572199,-0.056000731885433,-0.072972565889359],[-0.0025008881930262,-0.0069349338300526,0.012595620937645]],[[0.075481250882149,0.0099785551428795,-0.023256370797753],[0.070602774620056,-0.15485320985317,-0.1531637609005],[0.0061435382813215,-0.14346301555634,-0.074477933347225]],[[0.10238779336214,0.061429269611835,0.072463259100914],[-0.0070906244218349,-0.0063158678822219,-0.050345290452242],[0.041980654001236,-0.011163395829499,0.048634130507708]],[[0.083040483295918,0.020872980356216,-0.10010071098804],[-0.024738555774093,0.017199883237481,-0.071595840156078],[0.086877979338169,0.0044140522368252,0.014962007291615]],[[-0.0066785542294383,0.010051751509309,0.064891681075096],[-0.11489108204842,-0.046534661203623,0.063423559069633],[-0.0067373476922512,0.077424727380276,0.087528936564922]],[[-0.033700700849295,0.11539494991302,0.025774743407965],[-0.055105227977037,-0.11336109042168,0.11367116868496],[-0.019686616957188,0.070071659982204,-0.16783206164837]],[[-0.10214868187904,0.031320903450251,-0.0068275253288448],[-0.078557468950748,-0.064192913472652,-0.074349090456963],[-0.030888922512531,-0.070312358438969,-0.037911929190159]],[[-0.12523104250431,0.062239229679108,0.065384425222874],[0.17968727648258,-0.089685015380383,-0.0067952661775053],[-0.066037580370903,-0.026616718620062,0.1037267819047]],[[-0.0331817753613,-0.067161187529564,-0.0061948774382472],[0.0084813116118312,0.010031300596893,0.089563526213169],[0.049038175493479,0.011229918338358,0.090903051197529]],[[-0.0066424086689949,0.034788772463799,-0.017670365050435],[-0.062670812010765,-0.061450090259314,-0.051846910268068],[-0.016274334862828,0.054934725165367,0.020247070118785]],[[-0.028945531696081,-0.046833232045174,-0.039425358176231],[-0.023938346654177,0.0086276093497872,0.011292797513306],[-0.060548774898052,0.046142350882292,0.11306381970644]],[[0.0094297211617231,0.12225855141878,0.099542334675789],[-0.043281994760036,0.052345912903547,0.00015263832756318],[0.021795615553856,0.038216568529606,-0.00013894151197746]],[[0.025200817734003,0.023122183978558,-0.013968671672046],[0.046774480491877,0.022895481437445,-0.025236098095775],[-0.038919802755117,-0.069406397640705,0.035198964178562]],[[-0.011099183000624,0.065824866294861,0.05395270884037],[0.024133838713169,-0.15484766662121,0.078584462404251],[0.032251890748739,0.016355648636818,0.053136467933655]],[[-0.092813700437546,0.01485113427043,-0.150883436203],[0.017169242724776,0.023616870865226,-0.085617564618587],[-0.03130355104804,-0.015352237969637,-0.0093799941241741]],[[0.022220132872462,0.04905841127038,0.018743339926004],[0.018316090106964,0.058692671358585,0.052480384707451],[0.044920239597559,0.055930200964212,-0.024426715448499]],[[-0.036460507661104,-0.061809416860342,-0.060922250151634],[-0.10120252519846,-0.021511858329177,0.015646420419216],[0.036582518368959,-0.073438607156277,-0.037164557725191]],[[-0.055620238184929,0.11502420902252,0.076021067798138],[0.039844982326031,0.19277311861515,0.010718927718699],[-0.024831373244524,0.087232172489166,0.062640599906445]],[[0.099436357617378,-0.0083789005875587,0.097565822303295],[0.0026016910560429,0.18798398971558,-0.026831859722733],[0.088257417082787,0.045948024839163,0.046493425965309]],[[0.0058643319644034,0.070325300097466,0.0075011602602899],[0.025273902341723,0.0059526013210416,-0.069385312497616],[-0.077835001051426,-0.024948690086603,-0.041097719222307]],[[0.10161922127008,-0.0029248930513859,-0.0042857988737524],[0.019687434658408,0.058359738439322,0.080298349261284],[0.10374681651592,0.080792911350727,-0.049221556633711]],[[-0.038004022091627,-0.062167309224606,0.037759751081467],[-0.056378975510597,0.038256302475929,-0.0027676704339683],[-0.03743402287364,-0.036526426672935,0.075869910418987]],[[-0.022776382043958,0.030322335660458,0.077703714370728],[0.046289831399918,0.031748324632645,0.060808606445789],[0.035227354615927,0.096093662083149,0.025606801733375]],[[0.001103856950067,0.018785137683153,-0.029932359233499],[-0.017359690740705,0.0082279732450843,-0.031014055013657],[0.060062792152166,0.048645317554474,-0.003337224945426]],[[-0.050861246883869,0.052712503820658,0.011184893548489],[0.044612571597099,-0.0057070553302765,0.044413473457098],[0.023474898189306,0.098862871527672,0.1343831717968]],[[-0.014473524875939,-0.04835082218051,-0.021457068622112],[-0.048929560929537,0.0020317742601037,-0.10522724688053],[-0.060647156089544,-0.056728687137365,-0.043600752949715]],[[0.015855025500059,0.0516047924757,-0.0086629055440426],[0.035811562091112,0.043414119631052,-0.0066264537163079],[-0.029008058831096,-0.062988184392452,-0.0018510994268581]],[[0.015230105258524,0.027094842866063,0.048639766871929],[0.0043507614172995,-0.085997603833675,-0.044215597212315],[0.089817017316818,-0.0085419388487935,-0.078599520027637]],[[-0.009075646288693,-0.028412241488695,-0.063159741461277],[0.048535775393248,0.0459607206285,0.0089785810559988],[0.03656717389822,0.031404595822096,0.0099391741678119]],[[0.064285010099411,0.013251848518848,0.0933458507061],[-0.0047613983042538,0.056563850492239,0.055000320076942],[-0.0098460698500276,-0.027006713673472,0.0038591218180954]],[[0.042930424213409,-0.0038475606124848,0.029185203835368],[-0.017938923090696,0.11558878421783,0.14550584554672],[-0.015359250828624,-0.13619714975357,-0.076533734798431]],[[0.040847200900316,0.07801515609026,0.077347457408905],[0.024530882015824,-0.058517079800367,-0.04505604878068],[0.024406725540757,-0.0039549246430397,0.019991448149085]],[[-0.0021690996363759,0.066306032240391,-0.054646547883749],[-0.0026805642992258,0.074849523603916,0.089259058237076],[0.038291230797768,0.053953781723976,0.027415143325925]],[[0.051149055361748,0.038381319493055,0.0024858720134944],[-0.0062879314646125,0.047102823853493,-0.014892698265612],[0.011311145499349,0.036640923470259,0.065860517323017]],[[-0.03341955691576,-0.02109694480896,0.015596528537571],[-0.069227494299412,0.00024153385311365,0.0075177913531661],[0.028016475960612,-0.038366738706827,-0.062515281140804]],[[-0.19751247763634,-0.0050117811188102,0.009100248105824],[-0.099986396729946,-0.09605647623539,0.06595715880394],[0.093544743955135,-0.097097009420395,0.075726076960564]],[[-0.025816645473242,-0.060091134160757,-0.021808026358485],[0.048125486820936,-0.030411714687943,-0.036348015069962],[-0.046406630426645,-0.085428103804588,0.015869764611125]],[[-0.065482757985592,-0.034279800951481,-0.0078194979578257],[-0.053362265229225,0.040925327688456,-0.030811622738838],[-0.069412797689438,-0.033512637019157,0.084298849105835]],[[0.0040872702375054,0.027885407209396,0.18412241339684],[-0.042750809341669,0.017812976613641,0.038951493799686],[-0.032131608575583,-0.045768138021231,0.048612900078297]],[[0.0062264581210911,0.079965375363827,0.083375319838524],[-0.12690132856369,0.0019189823651686,-0.013434090651572],[0.010652077384293,-0.042490679770708,8.2324171671644e-05]],[[-0.031036365777254,0.024267934262753,0.13989441096783],[0.012346900999546,-0.014955387450755,0.12339528650045],[-0.024982688948512,0.10845448076725,0.032027959823608]],[[-0.059490840882063,-0.044488403946161,-0.075132682919502],[0.1480874568224,-0.014189714565873,-0.12002359330654],[0.019073009490967,0.10925666242838,0.12329165637493]],[[0.095655374228954,0.015432415530086,0.077868476510048],[0.081118881702423,-0.11021803319454,-0.076178081333637],[-0.016838043928146,-0.10143608599901,0.0052522215992212]],[[0.025944367051125,-0.017790421843529,0.088067226111889],[0.0045945481397212,-0.041919779032469,0.022524002939463],[0.0023959642276168,-0.037952080368996,0.031709514558315]],[[-0.051823247224092,-0.064158633351326,-0.028308421373367],[-0.083644852042198,0.095127396285534,-0.0018726311391219],[-0.056954097002745,0.021190326660872,0.050250422209501]],[[-0.077376112341881,0.01617619395256,-0.030830243602395],[0.029815258458257,-0.044496793299913,-0.086760282516479],[0.042781453579664,0.053694725036621,-0.10548814386129]],[[-0.089662507176399,-0.033091638237238,0.071372926235199],[-0.11588921397924,0.10698264092207,0.04106105864048],[-0.16193616390228,-0.13112425804138,0.17596112191677]],[[-0.03323233500123,-0.08320714533329,-0.055254407227039],[0.063574552536011,-0.069411724805832,-0.026110842823982],[-0.022340951487422,-0.0080702677369118,-0.063359811902046]],[[0.22965881228447,0.0010886929230765,0.0041072312742472],[0.1425541639328,-0.0041888668201864,-0.045285079628229],[0.029383858665824,-0.058907933533192,0.12473997473717]],[[-0.047218024730682,-0.080326497554779,0.083186723291874],[-0.082078240811825,-0.017045814543962,-0.038136504590511],[0.056744251400232,-0.090261392295361,-0.027812195941806]],[[-0.10527709871531,-0.042961120605469,-0.06769984215498],[-0.067127048969269,0.0094468127936125,0.035672854632139],[0.0047609666362405,0.014553556218743,-0.0095014004036784]],[[0.0281991828233,0.10709362477064,-0.048859350383282],[-0.032527275383472,-0.027855284512043,0.0697256103158],[0.028624210506678,-0.040843721479177,0.21066801249981]],[[0.017418770119548,0.025979025289416,-0.068069905042648],[-0.089568644762039,-0.0061335968784988,0.011980263516307],[-0.025584269315004,-0.0085113402456045,0.033652257174253]],[[0.13340836763382,-0.22399637103081,0.051869317889214],[0.083111800253391,-0.13470409810543,0.015446617268026],[0.045718461275101,-0.099306873977184,0.036529794335365]],[[-0.013563225977123,0.019274914637208,-0.013975295238197],[0.011678724549711,-0.066900834441185,0.0027587534859776],[0.088949523866177,-0.05394321680069,-0.00068718910915777]],[[0.0028825192712247,-0.018429111689329,0.0045268605463207],[0.0087779248133302,-0.02901297993958,0.015937777236104],[0.0057307952083647,-0.083744958043098,0.07042121887207]],[[-0.091269165277481,-0.1182631701231,-0.054497171193361],[-0.033235993236303,0.00082378333900124,-0.028151782229543],[0.0099443104118109,0.041814412921667,-0.032216403633356]],[[-0.0089699802920222,0.026267509907484,-0.023387636989355],[0.085762910544872,-0.050595380365849,-0.077877946197987],[0.030622877180576,0.064910054206848,0.02729107812047]],[[-0.033290043473244,-0.13081212341785,0.071066543459892],[0.032315153628588,-0.012404185719788,-0.0056828763335943],[0.066026538610458,-0.032623153179884,-0.00040282917325385]],[[-0.019562749192119,-0.02018123678863,0.1013188958168],[0.014399670995772,-0.0072993850335479,0.075792647898197],[0.050472784787416,0.049088206142187,0.063567914068699]],[[-0.048547450453043,0.065780460834503,0.051479145884514],[0.00014736289449502,-0.055914856493473,-0.018203092738986],[0.025798842310905,0.1426015496254,0.072921082377434]],[[0.021774306893349,-0.077203303575516,0.012959252111614],[0.058725140988827,-0.012567483820021,0.01822268217802],[0.015190637670457,-0.042535025626421,0.0045822057873011]]],[[[0.028855860233307,-0.0075004864484072,-0.043896701186895],[-0.084701992571354,-0.041207119822502,-0.064268484711647],[-0.046633969992399,-0.036591839045286,-0.15515837073326]],[[-0.00026897163479589,-0.038357865065336,-0.035253625363111],[-0.04313226416707,-0.063932843506336,-0.056481003761292],[0.0059979106299579,0.068707823753357,-0.086783923208714]],[[0.0042132111266255,0.068270035088062,-0.051824998110533],[-0.16514310240746,0.038454562425613,0.035632725805044],[-0.05585940182209,-0.059773210436106,-0.032761834561825]],[[0.054861657321453,0.055141750723124,-0.011167276650667],[-0.0072892997413874,0.024515185505152,0.018627539277077],[0.011348016560078,-0.090210683643818,0.017995905131102]],[[-0.081747680902481,-0.071751900017262,0.0079152174293995],[-0.084481060504913,-0.13135622441769,-0.063489690423012],[-0.01225277967751,-0.081602297723293,-0.039404541254044]],[[0.013327246531844,0.0576849617064,0.025755420327187],[0.13843049108982,0.098615445196629,0.031336095184088],[-0.080196529626846,-0.020768623799086,-0.026390288025141]],[[-0.012469435110688,0.051015704870224,-0.076931729912758],[-0.033589784055948,-0.04120446741581,0.022432215511799],[0.064425371587276,-0.01777359098196,-0.081966780126095]],[[0.014996175654233,-0.022166687995195,-0.0087613817304373],[0.007230085786432,0.062360160052776,-0.087493479251862],[0.046944223344326,-0.0025413108523935,0.09209331125021]],[[0.11318475008011,0.098015271127224,0.063771620392799],[0.013662043958902,-0.077931009232998,0.071037665009499],[0.066523998975754,-0.11154719442129,0.1234966814518]],[[-0.018673170357943,-0.1128438860178,-0.13768096268177],[-0.029590208083391,-0.065021820366383,-0.079398386180401],[0.081858597695827,0.026705229654908,0.080525755882263]],[[0.040182065218687,0.0038939251098782,0.16888201236725],[-0.020625468343496,-0.045581229031086,-0.012557243928313],[-0.038203001022339,-0.028637612238526,-0.058057963848114]],[[-0.097335308790207,0.033804543316364,-0.011675371788442],[-0.049286235123873,-0.087920635938644,-0.1450961381197],[0.11330250650644,-0.0090927453711629,-0.021083453670144]],[[0.11817146092653,0.12948271632195,0.18237727880478],[0.17147992551327,-0.052848555147648,0.0051621310412884],[0.133250400424,0.066288366913795,-0.022228140383959]],[[0.08522143214941,-0.054456193000078,-0.011928559280932],[0.031569886952639,0.0064700674265623,-0.046023368835449],[0.11472948640585,-0.023096824064851,-0.024307241663337]],[[0.17358648777008,0.043371289968491,0.00694549549371],[-0.030289983376861,0.074557282030582,0.094138570129871],[0.11630668491125,0.12442649900913,-0.0065448042005301]],[[-0.02130426466465,0.042140107601881,0.054111436009407],[0.019623711705208,0.076396204531193,-0.0051821814849973],[0.052235804498196,-0.04537745937705,0.076589621603489]],[[-0.043799269944429,0.0024972998071462,0.015142309479415],[-0.07617499679327,-0.039335269480944,-0.010180247947574],[-0.06668221950531,0.013432270847261,0.0021064623724669]],[[-0.1040795147419,-0.068555682897568,-0.0442108027637],[0.050727467983961,0.023814460262656,-0.054689705371857],[-0.15167266130447,-0.011436116881669,0.065572552382946]],[[-0.099904283881187,-0.104218095541,0.11420886218548],[0.058265939354897,-0.14201331138611,-0.055689118802547],[0.060209177434444,0.10869362950325,-0.054850116372108]],[[0.035929650068283,-0.00081695453263819,-0.02533514611423],[0.074660263955593,0.026104325428605,-0.093207381665707],[0.015104608610272,0.010444404557347,0.018955489620566]],[[-0.006261870265007,0.0016082663787529,0.016143471002579],[-0.028181271627545,0.036677923053503,-0.074948891997337],[-0.054629787802696,0.011656273156404,-0.057563003152609]],[[0.097069382667542,0.041547488421202,0.05263963341713],[0.022095276042819,0.072370514273643,-0.0043970560654998],[0.064568988978863,0.019341200590134,0.044510524719954]],[[-0.0047855055890977,0.011793463490903,2.0847965060966e-05],[0.10601665824652,-0.0059100612998009,0.0056193615309894],[0.053281713277102,-0.0051293661817908,-0.0021718551870435]],[[0.025464272126555,0.023509230464697,0.016408935189247],[-0.040618974715471,0.06299302726984,0.028985081240535],[-0.024801518768072,0.065319180488586,0.040135279297829]],[[0.073562175035477,0.036575987935066,-0.083400472998619],[-0.0031589262653142,-0.030171507969499,-0.0043730940669775],[0.047415941953659,-0.096866622567177,-0.036258190870285]],[[-0.03106402233243,0.076715692877769,0.077516876161098],[-0.10879402607679,0.028431240469217,-0.042320847511292],[0.0020643109455705,0.070718660950661,0.10545282065868]],[[0.062273006886244,0.14645826816559,0.07754448056221],[0.15072965621948,0.039145119488239,0.064328156411648],[0.049406472593546,0.076840966939926,0.11025188118219]],[[-0.14771023392677,-0.022406380623579,0.075453877449036],[0.059177093207836,-0.017882009968162,-0.01687228679657],[-0.08391397446394,0.08171358704567,0.012614344246686]],[[-0.12897723913193,0.071130275726318,0.03286761790514],[-0.015975389629602,-0.043017782270908,0.099854148924351],[0.13918720185757,0.068654373288155,0.019345318898559]],[[-0.014040508307517,-0.052760306745768,0.050118826329708],[-0.02028713747859,0.037375640124083,0.05003385618329],[-0.054587002843618,-0.11804110556841,-0.10540070384741]],[[-0.12087266147137,-0.023038448765874,-0.0061039784923196],[0.034560702741146,-0.050151832401752,-0.02636456489563],[0.048895739018917,-0.072603367269039,0.056729409843683]],[[0.049169320613146,0.089979723095894,0.034817785024643],[-0.090290553867817,0.054512001574039,0.094192408025265],[0.0017952747875825,0.030951200053096,-0.087729781866074]],[[0.054568145424128,0.097570575773716,0.019502863287926],[0.12130668759346,0.1021750792861,0.057972740381956],[-0.083277322351933,0.059047188609838,0.14191383123398]],[[-0.18708235025406,-0.071411088109016,0.16834084689617],[-0.056771878153086,-0.13942492008209,-0.097545750439167],[0.076442711055279,0.041857797652483,0.032194312661886]],[[-0.14299374818802,-0.11082135140896,-0.091924972832203],[-0.0035141191910952,-0.069119915366173,-0.12886844575405],[0.00041853115544654,-0.074754372239113,-0.0058844215236604]],[[0.01523707062006,-0.010648891329765,-0.059975016862154],[-0.023068444803357,0.06448133289814,-0.022872921079397],[0.047021090984344,-0.053848076611757,-0.026144342496991]],[[0.089485384523869,0.036893978714943,-0.12191708385944],[-0.11241691559553,0.066289059817791,0.032453864812851],[-0.12339679896832,0.0063169435597956,-0.0052070124074817]],[[-0.023563984781504,-0.060294087976217,0.0033208972308785],[-0.13400353491306,-0.038402289152145,-0.12351156771183],[-0.12232636660337,0.01921197399497,0.029877904802561]],[[0.052957691252232,-0.055662371218204,0.042823277413845],[-0.048599101603031,-0.10567200183868,0.074547149240971],[-0.15908844769001,-0.052284579724073,-0.046818777918816]],[[0.084436647593975,-0.046430736780167,-0.095669582486153],[-0.0065563581883907,0.047948326915503,-0.11701176315546],[-0.16480882465839,0.054908633232117,0.0038835927844048]],[[0.10081245750189,-0.041580721735954,0.12112082540989],[0.097179040312767,-0.011611774563789,-0.080977842211723],[0.05504135787487,0.13953572511673,0.15072816610336]],[[0.055241879075766,0.096607863903046,0.05056619271636],[0.050693936645985,0.013032643124461,0.046830616891384],[-0.021110462024808,0.04774546995759,0.086913354694843]],[[0.12921883165836,0.092057637870312,0.014766351319849],[-0.0044193146750331,0.14118480682373,0.039343528449535],[0.044297929853201,0.0075312335975468,0.01688551530242]],[[-0.075678624212742,-0.019096052274108,0.052297063171864],[-0.041147869080305,0.039529748260975,0.030114460736513],[-5.0241556891706e-05,0.0064713144674897,-0.038873448967934]],[[0.056762240827084,-0.10763926059008,0.061287194490433],[0.2589328289032,0.11359899491072,-0.030474966391921],[-0.088863462209702,0.10178395360708,0.13399328291416]],[[0.030840035527945,0.080992743372917,0.13194102048874],[0.045443385839462,0.07945042848587,0.039924517273903],[0.037900127470493,0.0078020743094385,0.015643013641238]],[[-0.043243251740932,0.01423800457269,0.0074995043687522],[-0.072864539921284,0.053200110793114,0.011176559142768],[-0.074062943458557,-0.0014263722114265,-0.021589253097773]],[[-0.18186828494072,-0.09527974575758,-0.07863213121891],[0.0018741305684671,0.019822206348181,0.091211289167404],[0.014613722451031,-0.013243929482996,-0.03068315051496]],[[-0.095643103122711,-0.077211007475853,-0.05214636027813],[-0.10302294790745,-0.056444935500622,-0.052009981125593],[-7.3256400355604e-05,0.01155786588788,0.017192808911204]],[[0.030779363587499,-0.026734985411167,0.012489955872297],[-0.083188496530056,-0.022023821249604,-0.028841432183981],[-0.044339407235384,-0.052810896188021,-0.020785616710782]],[[0.029608407989144,0.034760750830173,0.028186835348606],[0.11841432750225,-0.052013635635376,-0.033176902681589],[0.17003893852234,0.058120381087065,-0.044829402118921]],[[-0.0095082251355052,0.076554380357265,0.054910268634558],[-0.026032274588943,0.054042674601078,0.020401880145073],[0.059501077979803,0.091723330318928,-0.10646025836468]],[[-0.051828239113092,0.02242342568934,0.036135256290436],[-0.023686049506068,0.056570712476969,0.062705360352993],[0.070759795606136,-0.073121026158333,0.062939926981926]],[[-0.10233399271965,0.044774807989597,0.061690039932728],[-0.16763010621071,-0.08269239962101,0.14710266888142],[0.053778275847435,-0.12993234395981,0.080426864326]],[[-0.071687929332256,-0.078359566628933,0.088624335825443],[0.054579861462116,0.076287239789963,0.13500697910786],[0.085433147847652,0.085696510970592,0.070029549300671]],[[-0.015522439964116,0.049719847738743,0.042783536016941],[0.12417556345463,-0.060435060411692,-0.036205589771271],[-0.036927994340658,0.051408156752586,0.080354705452919]],[[0.12781012058258,0.060753215104342,0.12216238677502],[0.00080434326082468,0.0055359355174005,0.10883869230747],[0.09704977273941,0.098082683980465,0.14623069763184]],[[0.005624339915812,0.097653590142727,-0.0042021418921649],[0.073255181312561,0.059571132063866,-0.024647455662489],[0.085809499025345,0.047939229756594,0.044712495058775]],[[-0.091344714164734,-0.044250585138798,0.089320756494999],[0.036965683102608,-0.077582463622093,0.13182219862938],[-0.03975872322917,-0.055303916335106,-0.075199730694294]],[[0.13770262897015,0.0081393346190453,-0.093829870223999],[0.17135988175869,0.021168598905206,0.11841227859259],[-0.017149014398456,-0.019659209996462,0.16253964602947]],[[0.005718479398638,0.061603032052517,0.034902960062027],[-0.016506981104612,0.0074457149021327,0.058219883590937],[0.044367086142302,0.0083080818876624,-0.087407447397709]],[[0.041083015501499,-0.12173469364643,-0.033887520432472],[0.12615267932415,-0.0022554646711797,-0.064185582101345],[-0.047131516039371,-0.11585398763418,0.083134807646275]],[[-0.051186505705118,0.0076919412240386,-0.071253299713135],[-0.16664092242718,0.0055669583380222,0.0019520791247487],[-0.015571765601635,-0.04642802849412,-0.027382204309106]],[[0.27313086390495,0.072858244180679,-0.057197172194719],[0.0096496632322669,0.11706195771694,-0.04563919454813],[0.016945458948612,-0.025561302900314,0.10237438976765]],[[0.027038741856813,-0.047330103814602,-0.032391898334026],[0.050574637949467,-0.041458670049906,-0.15163266658783],[0.031678032130003,-0.10754877328873,-0.094686850905418]],[[0.1436312943697,0.01667321100831,0.05352920666337],[0.019376458600163,-0.091335259377956,-0.095663413405418],[0.050750963389874,-0.032270461320877,0.039423935115337]],[[0.090079367160797,-0.1039884313941,-0.049514219164848],[0.04847551882267,-0.10338240116835,-0.011691048741341],[0.0039073773659766,0.045737009495497,-0.14117407798767]],[[-0.13524883985519,0.029040936380625,-0.00030361552489921],[-0.044438622891903,-0.07176798582077,-0.0092950705438852],[-0.010154707357287,0.030055111274123,-0.12082135677338]],[[0.1288987249136,0.0036754824686795,-0.020425319671631],[0.087122172117233,0.023427652195096,0.056691490113735],[0.015238236635923,0.11076709628105,0.10730621963739]],[[0.11940045654774,-0.051289822906256,-0.05151703581214],[0.057275369763374,0.1509280949831,-0.093704476952553],[-0.067065082490444,-0.036651100963354,-0.1394084841013]],[[-0.014174237847328,0.03845177963376,-0.008712612092495],[0.041913159191608,0.056050971150398,-0.044381275773048],[0.1058941334486,0.007720751222223,0.029728664085269]],[[-0.095602221786976,-0.054318368434906,0.011872925795615],[-0.014206054620445,0.012168076820672,-0.0040603671222925],[0.010144987143576,-0.081115260720253,-0.079851694405079]],[[-0.058919433504343,0.006536175031215,0.033666878938675],[-0.002784758573398,0.058405894786119,0.056575104594231],[0.052054431289434,0.042310364544392,-0.028704062104225]],[[0.056636478751898,0.06124984100461,-0.017677586525679],[-0.014684981666505,0.016346478834748,0.007934438996017],[0.0047025545500219,0.0059538404457271,-0.16034460067749]],[[0.070108108222485,0.080148972570896,-0.031578950583935],[0.036111079156399,0.027810407802463,0.090713366866112],[-0.036396831274033,-0.010166027583182,0.074409380555153]],[[0.081654399633408,0.082780405879021,-0.012199343182147],[-0.10574877262115,0.068840116262436,0.16950367391109],[-0.001154437311925,-0.11131433397532,-0.24302069842815]],[[0.05093140900135,-0.060072276741266,0.046743262559175],[0.03374020382762,-0.040440917015076,0.021852964535356],[0.064922295510769,-0.075258031487465,0.023277660831809]],[[0.091900028288364,0.097982943058014,-0.028517642989755],[0.12069586664438,0.10466258227825,0.011730019003153],[0.12759853899479,0.030502898618579,0.0069976993836462]],[[0.066642813384533,-0.081887878477573,0.080644451081753],[-0.007314398419112,-0.0055084540508687,-0.064820379018784],[-0.030754223465919,-0.067876353859901,0.035511307418346]],[[-0.061203990131617,0.013415399007499,0.013580289669335],[0.016346482560039,0.019389102235436,-0.0044592195190489],[-0.13527601957321,-0.0099753681570292,0.034489378333092]],[[-0.14446982741356,0.010047717951238,0.046991884708405],[-0.03422511741519,-0.049844678491354,0.077745661139488],[0.054481822997332,0.034754939377308,0.0037902595940977]],[[0.038510341197252,0.024107063189149,0.080736726522446],[0.053404949605465,-0.045510645955801,0.049169279634953],[0.072118349373341,0.034152828156948,0.051838412880898]],[[0.040381446480751,-0.051622673869133,-0.061722755432129],[0.004947149194777,-0.0092794420197606,0.0075526968576014],[0.057503953576088,0.0044268886558712,-0.10650058090687]],[[-0.05353919044137,0.0070979292504489,0.058105118572712],[-0.078689835965633,-0.015481157228351,0.05863644182682],[-0.025778608396649,0.022041952237487,-0.062666721642017]],[[-0.1650111079216,0.021383576095104,0.02010671980679],[0.041405294090509,-0.13353714346886,0.022210607305169],[0.082893572747707,0.14927200973034,-0.074482619762421]],[[-0.11042028665543,-0.032617252320051,0.0053584049455822],[-0.033046633005142,-0.02037482522428,-0.021377077326179],[-0.05634455755353,0.004035288002342,-0.034140694886446]],[[0.08724969625473,0.05314464867115,-0.10335778445005],[-0.073484860360622,0.044779781252146,-0.029895411804318],[0.097699768841267,-0.0048790997825563,0.027993882074952]],[[-0.091944046318531,-0.0869405195117,-0.028078651055694],[-0.093988507986069,-0.11707009375095,-0.10531959682703],[-0.047352086752653,-0.073768608272076,-0.055451564490795]],[[0.068872608244419,0.065310657024384,0.087048299610615],[-0.02437542937696,-0.051963895559311,0.17266446352005],[-0.045062430202961,-0.057457000017166,-0.021496541798115]],[[-0.010633205994964,0.043884444981813,0.045601576566696],[-0.13015367090702,0.013194703496993,0.015696212649345],[-0.039867628365755,-0.12247037142515,-0.045947521924973]],[[0.15026852488518,0.099885709583759,0.053459703922272],[-0.094323441386223,-0.0023922745604068,-0.014165675267577],[-0.0082047786563635,0.052081976085901,0.010860576294363]],[[-0.039837464690208,-0.061512142419815,0.010748011991382],[-0.005985148716718,0.079457327723503,-0.095496825873852],[-0.072686597704887,0.011572350747883,0.0099131586030126]],[[0.045320194214582,-0.0940181016922,-0.025954594835639],[0.11759036034346,0.024320617318153,0.0107640363276],[0.097056150436401,0.08367296308279,0.098340950906277]],[[-0.09000501781702,-0.027876919135451,-0.075326099991798],[0.060287475585938,0.0030977970454842,-0.086263790726662],[-0.06224162504077,-0.081722296774387,-0.12878459692001]],[[-0.01628378033638,-0.039069510996342,-0.080592133104801],[-0.11390045285225,-0.04392708465457,-0.03439375013113],[-0.12490080296993,0.055849276483059,0.021802820265293]],[[0.011900230310857,0.040924660861492,0.033734258264303],[0.025861589238048,0.010642829351127,0.02254556491971],[0.14128956198692,0.079883687198162,0.062270887196064]],[[-0.075816415250301,0.009245291352272,0.016293805092573],[-0.058656349778175,-0.024603502824903,0.01213710103184],[0.089791916310787,-0.017363825812936,0.085262201726437]],[[0.092953033745289,-0.0041456869803369,0.11324097961187],[0.067641526460648,-0.065877735614777,-0.065427899360657],[0.05277843400836,0.083254165947437,0.087563522160053]],[[-0.083784021437168,0.028273770585656,-0.041986014693975],[-0.12278662621975,0.055352106690407,-0.035117004066706],[0.00063723989296705,-0.16900712251663,-0.074848182499409]],[[0.030521269887686,0.11758678406477,0.026528749614954],[0.121781244874,-0.038549780845642,0.13646392524242],[-0.0049944100901484,0.075078785419464,-0.02069291472435]],[[-0.026673022657633,-0.059030748903751,-0.12246438860893],[-0.095069624483585,-0.077352538704872,-0.068344406783581],[-0.036053687334061,-0.097303718328476,-0.15004540979862]],[[0.058822799474001,0.070294909179211,0.093625001609325],[0.045646369457245,-0.013181683607399,0.0067358585074544],[0.052151970565319,0.050524692982435,0.026167593896389]],[[0.026804056018591,-0.11655133217573,-0.013331074267626],[0.025116886943579,0.0098342131823301,-0.021924452856183],[-0.008158203214407,0.01901094801724,0.047600287944078]],[[-0.069054052233696,-0.013632181100547,-0.15037602186203],[-0.046838242560625,-0.09310095012188,-0.080902986228466],[-0.06109880656004,0.087611466646194,-0.1098498031497]],[[-0.0070015080273151,-0.025780241936445,0.053777437657118],[-0.01439759042114,-0.14921060204506,0.0093836132436991],[-0.016155740246177,0.0018810151377693,0.092796705663204]],[[0.11818110942841,-0.076195888221264,-0.092527866363525],[-0.025723177939653,-0.00021999712043907,-0.056308906525373],[0.035106550902128,0.08103384822607,0.013892690651119]],[[-0.00029763954808004,0.075901694595814,0.013014079071581],[0.015961008146405,0.042914059013128,0.12246938794851],[0.1061841994524,0.066490985453129,0.011635693721473]],[[0.084501773118973,0.0054506883025169,-0.0076310285367072],[-0.025920126587152,0.041641369462013,-0.027203898876905],[-0.028344340622425,-0.047275241464376,-0.026478111743927]],[[-0.025672802701592,0.041245482861996,-0.030960345640779],[-0.055623382329941,0.038320794701576,0.016209414228797],[0.03377091512084,-0.037529084831476,-0.039650533348322]],[[-0.075649730861187,0.050735477358103,0.035893682390451],[-0.018773525953293,-0.016605505719781,0.020177185535431],[0.083760380744934,0.049210794270039,0.098452441394329]],[[0.02350902184844,-0.039788216352463,-0.03482498973608],[-0.018418464809656,-0.056647129356861,0.046381916850805],[0.023637291043997,0.037227790802717,-0.022484146058559]],[[0.15492697060108,0.013430932536721,0.033132657408714],[-0.023621803149581,0.11197708547115,-0.004656694829464],[0.020055867731571,0.083869181573391,-0.16216194629669]],[[-0.029417742043734,0.012695015408099,-0.022520547732711],[-0.20508597791195,-0.070980876684189,-0.038043443113565],[-0.091985106468201,-0.060868877917528,-0.0056867464445531]],[[-0.027780896052718,0.10501306504011,0.019892165437341],[-0.027347007766366,-0.026026220992208,-0.055312488228083],[-0.010096754878759,0.11361964792013,-0.089519910514355]],[[0.074485324323177,0.011302437633276,0.014820865355432],[-0.018654678016901,-0.038415603339672,-0.019306747242808],[-0.0075385603122413,-0.030757801607251,-0.0093981847167015]],[[-0.035123117268085,-0.088396050035954,-0.055636860430241],[0.036503452807665,0.069972313940525,-0.06994953751564],[-0.026200938969851,-0.044142205268145,0.0084661012515426]],[[0.050623293966055,-0.01993353664875,-0.078534848988056],[-0.13447733223438,-0.070830754935741,-0.042530726641417],[0.0065718698315322,-0.11955212056637,-0.09348089993]],[[-0.16717213392258,0.017081243917346,-0.025890655815601],[-0.058057848364115,-0.031212436035275,-0.027795718982816],[0.029887765645981,0.0038586247246712,-0.022764584049582]],[[-0.016693983227015,0.0070488057099283,-0.018977876752615],[-0.047786206007004,-0.028677904978395,-0.079258851706982],[0.12889243662357,0.024990893900394,0.0080093769356608]],[[-0.10007707029581,0.037803277373314,0.12395198643208],[-0.11116340011358,-0.00044474902097136,-0.084617130458355],[0.15023531019688,0.035400558263063,-0.0092245582491159]],[[-0.059077955782413,0.081393361091614,0.020682467147708],[-0.012291974388063,-0.02196847461164,0.023576643317938],[-0.0098624229431152,-0.02756180986762,-0.061326552182436]],[[-0.093384690582752,-0.075636938214302,0.00027592896367423],[-0.084494963288307,-0.11083275079727,-0.040122795850039],[-0.00017617167031858,0.015039401128888,-0.036651350557804]],[[-0.13316150009632,0.0025776715483516,0.087290391325951],[0.040303159505129,-0.06308402121067,-0.059322934597731],[-0.043443720787764,-0.057095319032669,0.074996314942837]],[[-0.086131744086742,0.0047824382781982,0.14584246277809],[-0.079839870333672,0.0066142189316452,-0.012099864892662],[0.085544660687447,-0.017854167148471,-0.017114581540227]],[[-0.015655716881156,0.021920584142208,-0.0039928434416652],[-0.06289828568697,-0.09306263178587,-0.01464578602463],[0.055989969521761,-0.11246729642153,0.031023977324367]],[[0.086822241544724,0.0032579593826085,-0.012606132775545],[0.13661512732506,0.054197017103434,0.079229518771172],[-0.048348553478718,-0.045199207961559,0.050715353339911]],[[-0.034540466964245,0.02898626588285,0.026060311123729],[-0.048271931707859,-0.088556043803692,-0.04093150421977],[-0.0698047503829,0.02013861015439,0.011808744631708]],[[-0.00048602896276861,0.10131645947695,-0.011992746964097],[-0.11466298252344,0.083974957466125,0.030026776716113],[0.067012622952461,-0.10353253036737,-0.059998001903296]]],[[[0.01519379299134,-0.017702082172036,0.086124181747437],[-0.0053877788595855,0.033267475664616,-0.0069980374537408],[0.0036187646910548,-0.016374755650759,0.042693506926298]],[[-0.035063814371824,0.05409287661314,0.011433279141784],[0.012562806718051,0.056565992534161,-0.012937325052917],[0.018888760358095,-0.030571239069104,0.002601737389341]],[[-0.012974220328033,0.074970826506615,-0.046744823455811],[0.0086472602561116,-0.0070481332950294,0.0027043018490076],[0.093414060771465,0.034394960850477,-0.036309853196144]],[[0.021502166986465,0.031199479475617,0.08370765298605],[0.074999362230301,0.020396685227752,0.12914404273033],[0.053473323583603,-0.0058866767212749,0.0032651217188686]],[[-0.011114024557173,0.0251973439008,-0.0071495394222438],[-0.0018355486681685,0.022732496261597,0.027731101959944],[0.039850708097219,0.055294003337622,0.040945395827293]],[[0.016317082569003,0.022582968696952,0.048477321863174],[0.022715644910932,0.0024870266206563,-0.015458052046597],[0.014782167039812,-0.024131406098604,-0.057721070945263]],[[0.053377810865641,0.084382407367229,-0.072585538029671],[0.033698573708534,0.041443604975939,0.030317677184939],[-0.021750723943114,0.027271017432213,-0.039202407002449]],[[0.035669468343258,-0.035990819334984,0.0094846719875932],[0.043717566877604,-0.056823715567589,-0.0621038377285],[0.06112839654088,0.034902084618807,0.08566727489233]],[[-0.023936407640576,-0.020695516839623,0.0090027609840035],[-0.040215790271759,-0.026307245716453,0.014548235572875],[0.043721314519644,0.027561208233237,-0.016719931736588]],[[-0.03477206453681,0.051591943949461,-0.033571384847164],[0.041192941367626,0.018943516537547,0.011455927975476],[0.095841899514198,-0.0238734241575,0.034054514020681]],[[-0.006577389780432,0.023981302976608,-0.0081771155819297],[0.0095122940838337,0.06678432226181,0.06872471421957],[-0.10254809260368,-0.068151354789734,-0.015823485329747]],[[-0.023180082440376,-0.035548765212297,-0.016022235155106],[-0.049192760139704,-0.07914824783802,0.0058608665131032],[-0.023159356787801,-0.084537625312805,0.079343363642693]],[[0.026336623355746,0.15445166826248,0.029310727491975],[-0.0095289777964354,0.030582901090384,0.039561294019222],[0.034965079277754,-0.069381341338158,-0.042539175599813]],[[0.087829582393169,0.088882528245449,0.055842358618975],[-0.00030091649387032,-0.026930250227451,-0.015892792493105],[-0.034952666610479,-0.015092468820512,0.050466269254684]],[[0.0089710466563702,-0.0087084155529737,-0.042271673679352],[-0.081946916878223,0.074246384203434,0.0068877395242453],[-0.030970176681876,-0.0011740442132577,-0.016142522916198]],[[-0.017774876207113,-0.065537452697754,-0.061218716204166],[-0.027520464733243,-0.035098865628242,0.021734798327088],[0.039581544697285,0.05257036536932,0.034914880990982]],[[0.013005776330829,-0.022173592820764,0.049056157469749],[0.0076247351244092,0.040498290210962,-0.056980058550835],[0.054329335689545,-0.037287745624781,0.015250392258167]],[[-0.049467671662569,0.031549926847219,-0.012012802064419],[0.0338937304914,0.04196422547102,0.042477749288082],[0.042882397770882,0.01369166187942,-0.037141542881727]],[[0.048288486897945,0.0021735110785812,-0.011748580262065],[0.010972214862704,0.03985146805644,0.030306277796626],[0.0078699709847569,0.044649433344603,-0.039669748395681]],[[-0.020083419978619,-0.064239427447319,-0.077225044369698],[0.075148887932301,-0.013570268638432,0.040967665612698],[-0.02335449680686,0.057332400232553,-0.051828868687153]],[[0.010463838465512,-0.0059624924324453,-0.0077411928214133],[-0.0060843201354146,0.015752349048853,0.0049882596358657],[0.0048194974660873,-0.0035364381037652,-0.061483543366194]],[[-0.012307563796639,0.0028529183473438,0.094266787171364],[0.019118690863252,-0.078284345567226,-0.041665107011795],[0.0073398966342211,-0.08341009914875,0.070029623806477]],[[0.072848498821259,-0.029614944010973,-0.0013179248198867],[-0.023061856627464,-0.025415671989322,0.018436312675476],[0.051693882793188,0.005556667689234,-0.064384765923023]],[[-0.012095686048269,-0.070470474660397,-0.0058556669391692],[0.037982847541571,-0.04070795699954,0.019961882382631],[-0.0059940586797893,-0.0029794399160892,-0.022902984172106]],[[-0.038465537130833,0.040761563926935,0.016744019463658],[-0.013763288035989,0.024104019626975,0.035640124231577],[-0.013537376187742,0.039232712239027,0.013836566358805]],[[0.02494290843606,-0.012120535597205,-0.059668213129044],[0.070360533893108,0.0079195396974683,0.045073099434376],[0.061431769281626,-0.019340842962265,0.017875107005239]],[[0.059202186763287,0.012954008765519,0.037023913115263],[0.013820570893586,-0.077655471861362,-0.063540823757648],[-0.017953148111701,-0.036795914173126,-0.02460628375411]],[[0.067840896546841,0.046874560415745,0.055662766098976],[-0.049787741154432,-0.039365947246552,-0.016908558085561],[-0.0015650402056053,-0.066141225397587,-0.011470242403448]],[[0.0307458024472,0.027238855138421,0.0020027386490256],[-0.066295884549618,0.049338713288307,0.017817933112383],[-0.045098014175892,0.0089089367538691,0.0343335904181]],[[0.020336931571364,-0.091844312846661,-0.004429052118212],[0.029012469574809,-0.056424107402563,-0.0049028024077415],[0.030544374138117,0.030297206714749,-0.0089115956798196]],[[-0.064252354204655,-0.022398544475436,0.034488156437874],[-0.010763997212052,0.043033350259066,0.016708208248019],[-0.024686882272363,-0.023248331621289,-0.0042007537558675]],[[-0.058427728712559,0.068023182451725,0.041143674403429],[0.047783803194761,0.012443628162146,0.02753590978682],[-0.01909177750349,0.028400341048837,-0.012717312201858]],[[0.052966307848692,0.0074497424066067,-0.017722906544805],[0.088246546685696,0.0058205765672028,0.027494663372636],[3.9749658753863e-05,0.045482330024242,-0.087905876338482]],[[0.078865878283978,-0.042382203042507,0.064110413193703],[0.015144256874919,-0.026682330295444,-0.034383028745651],[-0.013068498112261,-0.02497529797256,-0.039538644254208]],[[-0.053010158240795,-0.020292479544878,0.043433483690023],[0.04873551428318,0.023576876148582,0.013316858559847],[0.072655223309994,0.01531290076673,0.040072083473206]],[[-0.024581454694271,-0.0069574131630361,0.039964973926544],[0.042919918894768,0.011942842975259,0.030658025294542],[0.053973704576492,-0.010995618067682,0.071984365582466]],[[0.021260676905513,-0.014754720963538,-0.029332457110286],[-0.054532628506422,-0.024035256356001,0.014078967273235],[-0.037174768745899,0.074214935302734,0.022293305024505]],[[0.056910373270512,-0.0068234601058066,-0.024851307272911],[0.032356955111027,0.020762590691447,0.045996505767107],[0.020360825583339,0.035128608345985,-0.024602407589555]],[[0.042443446815014,-0.05561351776123,0.026273548603058],[0.020247090607882,0.05468786880374,-0.077342249453068],[0.011844617314637,-0.057278268039227,0.0083480440080166]],[[-0.0097713069990277,0.012379226274788,0.035149578005075],[0.046974517405033,0.0036843731068075,0.063150517642498],[0.054358534514904,-0.0081315580755472,-0.016666550189257]],[[0.0043169208802283,0.05226194858551,0.051395338028669],[-0.0098795248195529,-0.073630526661873,-0.0025043173227459],[0.036986649036407,-0.06854359805584,-0.04046817496419]],[[0.051530230790377,-0.043474018573761,0.0066479286178946],[-0.016164405271411,-0.0077966791577637,-0.035236623138189],[0.010839964263141,0.014793459326029,-0.031339127570391]],[[0.067637078464031,0.0077089355327189,0.01439455524087],[-0.027842057868838,0.029703205451369,-0.029716767370701],[0.044216427952051,0.0025308427866548,0.0041257236152887]],[[-0.089489370584488,-0.071205250918865,-0.06318923830986],[-0.11345757544041,-0.045212879776955,-0.096221260726452],[-0.076723076403141,0.018402136862278,0.020401204004884]],[[0.05077301338315,-0.010457335971296,0.035999905318022],[-0.048417594283819,-0.025145333260298,0.011520611122251],[0.025197340175509,-0.052906781435013,0.022710088640451]],[[-0.018091460689902,-0.02702802605927,0.057526912540197],[-0.096023909747601,0.054232142865658,0.021357771009207],[-0.072483003139496,0.0012483446625993,-0.022982368245721]],[[0.045020166784525,0.043311472982168,0.00054002506658435],[-0.01761918514967,-0.1322168558836,0.0063588437624276],[0.036519940942526,-0.021479617804289,-0.0122648216784]],[[0.0044395946897566,0.004760192707181,-0.025564637035131],[0.015277422964573,-0.086998507380486,0.091445446014404],[-0.053856901824474,0.04237212985754,0.018211681395769]],[[-0.044833954423666,-0.021894291043282,-0.04763849824667],[0.074778698384762,-0.031295154243708,0.031615741550922],[0.027554776519537,0.0463184453547,0.04583615064621]],[[0.028521187603474,-0.021141370758414,-0.0094512952491641],[-0.036087710410357,-0.020042022690177,0.04432275518775],[0.0017503226408735,0.014991573058069,-0.034256342798471]],[[-0.088434413075447,0.027952978387475,0.0074976617470384],[0.069076679646969,-0.084906868636608,-0.052795402705669],[0.016392201185226,0.040298014879227,-0.058450266718864]],[[0.0080547854304314,0.031571384519339,0.017696391791105],[0.010477577336133,0.0019255881197751,-0.068682104349136],[0.017783863469958,0.0023065183777362,-0.029181275516748]],[[0.0093967439606786,0.039877165108919,0.14160729944706],[-0.021443922072649,0.024192465469241,-0.077082268893719],[-0.026357732713223,0.025825379416347,-0.015858288854361]],[[0.098780363798141,-0.0026713032275438,0.0099011026322842],[-0.035769701004028,0.065186731517315,0.024985989555717],[-0.066225133836269,0.058933474123478,0.010229340754449]],[[0.03465098887682,0.027916898950934,0.0024838671088219],[-0.03433832898736,-0.030760882422328,0.12199653685093],[0.049611084163189,-0.018933305516839,0.0069049797020853]],[[-0.054013717919588,-0.038966603577137,-0.038603454828262],[-0.0068342895247042,-0.07419091463089,-0.05710332095623],[0.034892190247774,-0.0020379181951284,0.038016118109226]],[[0.004519431386143,0.039024353027344,-0.0063257436268032],[0.027065388858318,0.049955073744059,0.064779110252857],[-0.0351920761168,0.0057013495825231,0.032973766326904]],[[0.047126069664955,0.014211546629667,-0.030219415202737],[-0.024002242833376,-0.00069109367905185,-0.023029306903481],[-0.0059279683046043,-0.0087856473401189,-0.015893889591098]],[[-0.026864236220717,-0.07570793479681,0.050719667226076],[-0.018696328625083,0.0037717134691775,-0.020359670743346],[0.074042320251465,0.064579844474792,-0.0078295227140188]],[[-0.041268635541201,-0.0027049691416323,-0.00058024318423122],[0.079300634562969,0.00038979976670817,0.052214320749044],[0.046425439417362,-0.086292512714863,0.054953891783953]],[[0.023318562656641,0.049776285886765,-0.11517976224422],[-0.039242830127478,-0.0010452929418534,0.038235954940319],[0.037465114146471,-0.033665139228106,-0.0036970297805965]],[[0.059657905250788,0.05904159322381,0.0071016736328602],[-0.043003529310226,-0.054195877164602,-0.034762911498547],[-0.012229496613145,0.024010980501771,0.071185179054737]],[[-0.015152904205024,-0.010956454090774,-0.039788421243429],[0.053959548473358,-0.038627196103334,-0.02323785610497],[-0.022699072957039,-0.020172631368041,0.055792164057493]],[[-0.02051162533462,0.030453076586127,-0.032492808997631],[-0.025400839745998,0.0058229058049619,0.0062369480729103],[-0.058822497725487,-0.010162652470171,-0.026036662980914]],[[0.063243016600609,0.024833181872964,0.058096613734961],[-0.011938192881644,-0.025126641616225,-0.029123105108738],[0.016766641288996,0.00040953975985758,-0.024752529338002]],[[-0.035295180976391,0.045836716890335,-0.099395431578159],[0.024503987282515,0.061603914946318,-0.031735599040985],[0.0036945822648704,0.0043723820708692,-0.11455188691616]],[[0.0030225133523345,0.033477943390608,-0.0069807218387723],[0.069871954619884,-0.006786395329982,0.01970386505127],[-0.0035900212824345,-0.026461074128747,-0.016616482287645]],[[0.018403166905046,0.014520046301186,0.0094192596152425],[0.055916324257851,-0.062309317290783,0.069692879915237],[-0.050652038305998,0.024004774168134,-0.024406196549535]],[[-0.016634725034237,0.0094644408673048,-0.020872605964541],[0.017166502773762,0.018121970817447,-0.03599613532424],[-0.038435731083155,-0.034389827400446,-0.014238582924008]],[[-0.039894618093967,-0.053305100649595,-0.027699584141374],[-0.028436820954084,-0.015304465778172,-0.014047534205019],[0.019937166944146,0.029920557513833,0.03701539337635]],[[-0.013249635696411,-0.035428255796432,-0.061716679483652],[-0.0098786074668169,0.051481418311596,-0.021069042384624],[0.046473778784275,0.031531270593405,-0.011461311019957]],[[0.027764201164246,-0.020225586369634,0.052532710134983],[0.0049041491001844,0.041164923459291,0.043604210019112],[0.022351065650582,-0.0011568266199902,-0.018525199964643]],[[-0.028557868674397,0.016293922439218,-0.01998383179307],[0.0046471324749291,-0.022616943344474,-0.020750069990754],[0.037209901958704,0.0011314088478684,-0.051542721688747]],[[-0.030859792605042,-0.023252414539456,-0.039467591792345],[-0.017379770055413,-0.0226378608495,-0.00039194754208438],[0.097871944308281,0.051876235753298,0.036711145192385]],[[0.013594491407275,-0.019846528768539,0.013920912519097],[0.0018661072244868,-0.064850755035877,-0.045232430100441],[-0.030729049816728,0.044535420835018,0.0004493277228903]],[[-0.073986940085888,-0.031266380101442,0.032754730433226],[-0.052339773625135,0.084927327930927,-0.035992335528135],[0.063296958804131,0.028057061135769,0.11366627365351]],[[0.070497252047062,0.032832123339176,0.005345341283828],[0.0024138118606061,0.034475263208151,0.040152240544558],[-0.10780414193869,0.041357703506947,0.0022618926595896]],[[0.020928915590048,0.037373907864094,0.026305697858334],[-0.043312851339579,0.023500936105847,0.016535690054297],[-0.026146100834012,0.01157058775425,0.0193383526057]],[[0.014226859435439,0.046433661133051,0.031156409531832],[-0.01035928633064,0.0024819744285196,0.038649119436741],[0.044828098267317,0.048006772994995,-0.00169995916076]],[[0.0021123064216226,-0.012535293586552,0.023937363177538],[-0.043915338814259,0.053684506565332,-0.037542127072811],[-0.020351557061076,-0.043824873864651,0.00092060072347522]],[[-0.046347223222256,0.0082533778622746,0.001214083400555],[0.03295598551631,0.0042371326126158,-0.084776043891907],[0.051833756268024,0.0053909830749035,0.024130629375577]],[[-0.025636604055762,-0.07748032361269,-0.012540544383228],[-0.0077498201280832,0.035917442291975,0.024956464767456],[-0.018418477848172,-0.055537708103657,0.040150608867407]],[[-0.038871295750141,-0.019306026399136,0.054089568555355],[-0.13693515956402,-0.033298812806606,0.017120778560638],[0.036143377423286,-0.00049797241808847,0.021684553474188]],[[-0.034381583333015,-0.0055197910405695,0.0077524958178401],[-0.048064969480038,0.044940423220396,0.02382954582572],[-0.0089420964941382,-0.020041616633534,0.013522766530514]],[[-0.024540880694985,0.067772157490253,0.060524012893438],[-0.02757766097784,0.006250518374145,-0.055322255939245],[0.023040696978569,-0.058733828365803,-0.038415867835283]],[[-0.027586989104748,0.0050268820486963,-0.046331871300936],[0.052121017128229,0.025885550305247,-0.017292084172368],[0.078495509922504,0.026305098086596,0.031373701989651]],[[-0.062928281724453,0.023195860907435,0.011524390429258],[0.023760134354234,-0.039949726313353,0.0063282460905612],[0.015239513479173,-0.0046862824819982,-0.025046030059457]],[[-0.079126432538033,0.028643118217587,0.031220644712448],[0.035018973052502,0.0026677111163735,-0.0044893003068864],[-0.007671152241528,-0.033176716417074,0.0048006782308221]],[[-0.019803823903203,0.029349036514759,0.012217624112964],[-0.026731073856354,0.002653163857758,-0.043920237571001],[0.048489920794964,0.0814094170928,0.021861214190722]],[[0.025161383673549,0.021000074222684,0.08999764919281],[-0.062460251152515,0.058866541832685,0.021763922646642],[-0.045498114079237,0.054914928972721,-0.050064537674189]],[[0.011439454741776,0.064134128391743,0.0046233246102929],[0.043502107262611,0.075678318738937,0.018703239038587],[0.032649762928486,0.01484966930002,0.013605935499072]],[[-0.031905986368656,0.018811028450727,-0.0019229515455663],[-0.023528959602118,-0.018407441675663,-0.040969558060169],[-0.013713510707021,0.063282050192356,0.021400228142738]],[[0.10509185492992,-0.010569747537374,0.0021057133562863],[-0.020915253087878,-0.0030626901425421,-0.0048761535435915],[0.017683954909444,0.011545545421541,0.031645938754082]],[[0.062619648873806,0.063726842403412,0.0017171589424834],[0.069422669708729,-0.042399425059557,0.070438481867313],[0.0014454857446253,0.049443151801825,-0.016584564000368]],[[-0.072375446557999,-0.058709144592285,-0.016012804582715],[-0.013217684812844,0.012126505374908,-0.019567245617509],[-0.014904770068824,-0.0056613888591528,-0.056604277342558]],[[-0.01220828294754,0.020964708179235,-0.071826227009296],[0.025114752352238,-0.049950987100601,-0.043391786515713],[0.046834398061037,-0.045054137706757,0.050120361149311]],[[0.004151773173362,0.05706425011158,-0.022078668698668],[0.032023057341576,-0.087590150535107,0.010165416635573],[0.03455712646246,0.005444994661957,0.088306993246078]],[[0.05637838691473,0.04026685282588,0.018042644485831],[-0.019392184913158,-0.014922599308193,-0.012953572906554],[0.077164016664028,0.014982668682933,-0.031802400946617]],[[0.023397563025355,0.061605852097273,-0.0090363975614309],[-0.07635073363781,-0.0093756457790732,0.087963454425335],[-0.051657259464264,0.037845574319363,0.054849788546562]],[[0.0063881850801408,0.051775150001049,-0.052835054695606],[0.049234800040722,-0.029869500547647,0.071943312883377],[-0.020383954048157,-0.086387194693089,0.11714024096727]],[[0.026851153001189,0.080113358795643,-0.059542953968048],[-0.021221172064543,0.061163380742073,-0.0037753030192107],[-0.0075777568854392,-0.04709880053997,-0.01388858538121]],[[-0.070158615708351,0.012245092540979,0.038707431405783],[0.02430540882051,0.029418081045151,-0.017347749322653],[0.014980427920818,0.011337175965309,-0.031119011342525]],[[0.034598182886839,0.037063118070364,-0.01361318398267],[0.032616898417473,0.083934687077999,0.046338189393282],[0.058326628059149,-0.026906276121736,0.032504137605429]],[[0.018410066142678,-0.035718340426683,-0.040309071540833],[0.019758759066463,-0.018708307296038,0.0331078954041],[0.060495764017105,-0.021575393155217,-0.02101331576705]],[[-0.016743883490562,0.088185429573059,-0.023452224209905],[-0.00090056727640331,-0.017821948975325,-0.014929190278053],[0.086442328989506,-0.029487470164895,-0.0033992379903793]],[[0.0073541714809835,0.0074501275084913,0.040630534291267],[-0.043526232242584,0.034128200262785,0.014772553928196],[-0.037687007337809,0.057013675570488,-0.036038272082806]],[[0.036589998751879,-0.052587889134884,0.01713346131146],[0.016304215416312,0.021790411323309,-0.074494041502476],[-0.040302973240614,0.011621965095401,-0.025828490033746]],[[-0.042731244117022,0.04392933100462,0.013615389354527],[0.077635258436203,0.035235024988651,0.035699721425772],[-0.010049887932837,-0.11240914463997,0.023974327370524]],[[0.043928273022175,-0.059998009353876,-0.013017125427723],[-0.0064214523881674,-0.0012342992704362,-0.024707306176424],[-0.0025198815856129,0.022267322987318,0.019972778856754]],[[0.090327024459839,-0.022551508620381,0.043479897081852],[-0.036343920975924,0.0040745753794909,0.037748504430056],[0.063388764858246,-0.037273671478033,-0.052762750536203]],[[-0.03454877436161,-0.021506477147341,0.022115455940366],[0.058751855045557,0.10582254081964,-0.048264402896166],[0.037558823823929,0.043023083359003,-0.0020424935501069]],[[0.072028376162052,0.035890497267246,-0.017644232138991],[-0.025239534676075,-0.0069897291250527,0.0015411274507642],[0.0070643853396177,0.084080673754215,0.022435054183006]],[[-0.046022031456232,0.083813317120075,-0.0074660363607109],[0.062495954334736,0.026626648381352,-0.02694102935493],[0.032748941332102,0.035666804760695,-0.0073072453960776]],[[0.0092765893787146,-0.065403692424297,0.020026296377182],[-0.015634097158909,0.055355828255415,-0.0072960313409567],[0.050546158105135,0.096888653934002,0.0063923080451787]],[[-0.0024051810614765,0.021453097462654,0.033472698181868],[0.052095673978329,-0.044005561619997,0.020001767203212],[-0.050422612577677,0.023308672010899,-0.031822107732296]],[[0.030993733555079,-0.019037259742618,-0.038384485989809],[-0.051021356135607,-0.0031013169791549,-0.0057561718858778],[-0.053292348980904,-0.026791237294674,0.10632933676243]],[[0.016089597716928,0.014321893453598,-0.015215792693198],[-0.068460188806057,-0.019065616652369,0.0089778192341328],[-0.023415692150593,0.057330444455147,0.078217007219791]],[[0.013811335898936,-0.023341629654169,0.008435407653451],[-0.037902779877186,0.020645858719945,0.088446222245693],[0.023032678291202,0.015004304237664,0.10031101107597]],[[-0.060372415930033,0.00050133484182879,-0.011765012517571],[-0.018643965944648,0.014626479707658,-0.045363944023848],[-0.0051109110936522,0.019866194576025,-0.03855587542057]],[[-0.034905273467302,-0.030052768066525,0.030037824064493],[0.012194082140923,-0.048145316541195,0.0082082943990827],[0.0070546199567616,-0.0063835801556706,0.039874661713839]],[[-0.023474657908082,0.01028586179018,0.033470433205366],[-0.00040465354686603,-0.0098468149080873,0.034940421581268],[0.0049096569418907,-0.025503795593977,0.060540419071913]],[[-0.043186590075493,-0.02875835262239,0.010182558558881],[-0.09318582713604,0.057629570364952,0.0011380570940673],[-0.03124195151031,-0.054407458752394,-0.099734954535961]],[[-0.043028172105551,-0.0079948510974646,0.0015971444081515],[-0.080356054008007,0.040973853319883,0.077399924397469],[0.01826873794198,0.064316771924496,0.059200681746006]],[[0.077604047954082,-0.038325920701027,0.028945099562407],[0.046599254012108,0.0013393906410784,0.033917259424925],[0.0035357186570764,0.050265051424503,0.03669747710228]],[[0.047648936510086,-0.044419273734093,0.032087448984385],[0.067234128713608,0.048534464091063,0.017741454765201],[0.080980084836483,0.0054026488214731,0.081831112504005]],[[-0.03226637467742,-0.008383471518755,0.089785739779472],[0.02774946205318,0.0043786163441837,-0.029325228184462],[0.02445125579834,0.027627747505903,0.01848591119051]],[[-0.029295148327947,-0.046858660876751,-0.043937388807535],[0.077264979481697,-0.023859445005655,-0.0095265600830317],[0.02968043461442,0.01053099706769,0.00098726397845894]],[[-0.017070723697543,-0.009603044949472,0.019355041906238],[-0.02268573641777,0.0039330557920039,0.038803942501545],[0.019647104665637,0.015826629474759,0.04923115298152]]],[[[-0.0049167899414897,0.06029037386179,0.053237654268742],[0.062060121446848,-0.046868696808815,0.059750162065029],[0.017808536067605,0.019151318818331,0.023259254172444]],[[0.020964382216334,-0.0026750129181892,-0.03904876485467],[0.026711478829384,0.044375844299793,0.01494506187737],[-0.017783664166927,0.00063567166216671,-0.033982992172241]],[[-0.082978136837482,-0.041905794292688,-0.030361833050847],[0.035597637295723,-0.011287164874375,0.040513474494219],[0.086463518440723,-0.011367430910468,-0.030941454693675]],[[0.014720278792083,-0.00019421993056312,-0.021147966384888],[0.055877778679132,0.045835699886084,0.0096434205770493],[-0.023578938096762,-0.049546729773283,0.034442253410816]],[[-0.059568274766207,-0.07717452943325,0.05574931576848],[0.054125010967255,0.077576048672199,0.013902732171118],[-0.010657418519258,-0.010781179182231,-0.019644226878881]],[[0.023233333602548,0.033748883754015,-0.044534880667925],[-0.0061469473876059,0.02547388151288,0.060875859111547],[0.07362088561058,0.047762386500835,0.023610010743141]],[[-0.023179724812508,-0.013758439570665,0.024861209094524],[0.042362466454506,0.020715538412333,-0.036544516682625],[0.018394850194454,0.023333352059126,0.051635429263115]],[[-0.10068867355585,0.042301204055548,0.02263480052352],[-0.031164769083261,0.039108596742153,-0.060561634600163],[-0.0061694951727986,0.093139454722404,0.063821986317635]],[[0.0058498694561422,-0.079724051058292,0.049584925174713],[-0.026065139099956,0.1826259046793,-0.0095828622579575],[-0.00091214635176584,0.048908121883869,0.10865979641676]],[[0.014811924658716,-0.0052273846231401,0.042516618967056],[0.01029425766319,0.044664110988379,-0.029017392545938],[-0.022676955908537,0.019819103181362,0.035918194800615]],[[-0.03784191980958,0.055691514164209,-0.0022860274184495],[0.04352917894721,-0.03812475502491,-0.023030439391732],[0.028190780431032,0.072973534464836,0.055690426379442]],[[-0.02347880974412,0.086682960391045,0.038952272385359],[0.024000909179449,-0.049127101898193,-0.091884218156338],[-0.035741280764341,0.06321344524622,-0.062787167727947]],[[0.0014527646126226,0.011314452625811,-0.03197580948472],[0.054221101105213,0.024938864633441,0.047712627798319],[0.015681859105825,0.016585191711783,0.048813886940479]],[[0.034384217113256,-0.031150409951806,-0.015007619746029],[-0.03650176525116,0.044323023408651,0.050223756581545],[0.010915181599557,-0.04861918464303,-0.0023283103946596]],[[-0.034190356731415,-0.056359015405178,-0.0060563017614186],[-0.039329770952463,-0.050599899142981,0.049052134156227],[-0.0049132159911096,0.011425114236772,0.019099049270153]],[[-0.023791326209903,-0.062466133385897,-0.087732739746571],[0.015584487468004,-0.018725737929344,-0.10035898536444],[0.05773551389575,-0.031671036034822,-0.017374891787767]],[[0.1180707141757,0.088827773928642,-0.077886819839478],[0.0076219225302339,0.0059652384370565,0.030412135645747],[-0.037000793963671,0.040810238569975,0.033181358128786]],[[-0.053313430398703,-0.02457207813859,0.021111350506544],[-0.034016828984022,-0.00047068655840121,-0.026535149663687],[0.1002811267972,0.03486568108201,-0.028083723038435]],[[-0.051654353737831,0.015853160992265,0.043479174375534],[-0.034904755651951,-0.079129822552204,-0.071288533508778],[0.037868842482567,-0.013478644192219,-0.0092204995453358]],[[0.04880004003644,0.037000335752964,0.017331158742309],[0.04469034075737,-0.053143795579672,-0.1002951040864],[-0.012306794524193,0.017681123688817,-0.008868201635778]],[[0.074089713394642,-0.14054194092751,-0.0019694198854268],[-0.069873191416264,0.018139565363526,0.027021119371057],[-0.043894361704588,0.010843062773347,-0.046698544174433]],[[-0.01212062779814,-0.00098801974672824,0.072488591074944],[0.0027983039617538,-0.0010870909318328,0.079507820308208],[0.072006486356258,0.10810102522373,0.046544879674911]],[[-0.035205505788326,0.011451493948698,0.045391224324703],[0.076937362551689,0.056227635592222,-0.07712259888649],[-0.033521454781294,0.0096888821572065,-0.08270600438118]],[[-0.014590105973184,0.033177450299263,-0.0060314759612083],[0.04630608856678,-0.025493504479527,0.043850991874933],[-0.026563961058855,-0.022301370278001,-0.007111213169992]],[[0.017714388668537,0.016252618283033,0.087326556444168],[-0.078052170574665,-0.018188247457147,-0.026419812813401],[0.026875464245677,0.054761499166489,-0.017660483717918]],[[-0.030692763626575,0.0025948632974178,-0.091100797057152],[-0.077521122992039,0.08512332290411,0.058549772948027],[-0.01284508779645,0.00041516177589074,0.0075433836318552]],[[0.029457181692123,0.11395788937807,-0.0015629167901352],[0.024313000962138,-0.047399468719959,0.026332907378674],[0.0051766536198556,0.057585582137108,0.030017018318176]],[[0.040764838457108,0.035683892667294,-0.0032795169390738],[0.055041987448931,0.070173546671867,0.011442595161498],[0.0074816658161581,-0.12784978747368,0.10577326267958]],[[0.062928199768066,-0.039525181055069,5.7696073781699e-05],[0.030724877491593,0.032922260463238,-0.049462594091892],[0.0083900466561317,0.040385153144598,-0.063575007021427]],[[-0.031547714024782,0.092135116457939,-0.073368608951569],[-0.01187401637435,0.0073820129036903,-0.063910245895386],[-0.00072637782432139,0.061203967779875,-0.037765398621559]],[[0.031105360016227,0.0034738616086543,-0.019804114475846],[0.02828636392951,0.042319346219301,0.0590880215168],[0.008094753138721,0.063234254717827,0.040265407413244]],[[-0.0038459517527372,-0.078165717422962,0.021717431023717],[0.002021954394877,0.050136458128691,-0.0032593640498817],[0.080520413815975,0.0061278021894395,-0.014607143588364]],[[0.0075142742134631,-0.026050632819533,-0.017274122685194],[0.028743786737323,0.064240999519825,0.094582349061966],[0.0082845762372017,0.052158173173666,0.089953899383545]],[[-0.055518638342619,0.11255440115929,0.017371175810695],[-0.0071610226295888,0.066342189908028,0.0080135185271502],[-0.018438294529915,0.017765467986465,0.036861434578896]],[[-0.012653505429626,-0.0045548207126558,-0.010859042406082],[-0.0052983043715358,-0.033570069819689,-0.073810607194901],[0.023597294464707,-0.020469022914767,0.003077216912061]],[[0.060766398906708,-0.0026756462175399,0.025059673935175],[-0.038773149251938,0.035710446536541,-0.0806939676404],[-0.029575631022453,0.02642610296607,0.019326621666551]],[[-0.060346700251102,0.00094986654585227,-0.0098115028813481],[0.029572231695056,-0.016269886866212,0.075696095824242],[0.00052710069576278,-0.018838793039322,-0.0013788669602945]],[[0.0055569000542164,-0.0045130951330066,-0.045421343296766],[0.048423435539007,-0.023114329203963,-0.042225033044815],[-0.016543928533792,0.011093609035015,-0.038909628987312]],[[-0.0020799492485821,0.032233219593763,-0.0071282787248492],[0.022405991330743,0.046995479613543,-0.0017856110353023],[-0.064442902803421,-0.021295826882124,-0.0069342399947345]],[[0.031386379152536,-0.035948995500803,-0.048692036420107],[0.045700147747993,0.043215308338404,0.041962251067162],[-0.020658304914832,-0.040461234748363,0.0092868423089385]],[[0.057401116937399,0.010165918618441,0.005867070518434],[0.030142530798912,0.017827734351158,-0.0064841066487134],[-0.017660388723016,0.0064267707057297,-0.072762377560139]],[[0.0068209511227906,-0.0054170414805412,-0.024367202073336],[0.070055738091469,0.11781187355518,0.043102256953716],[0.073101580142975,-0.030086701735854,0.080246955156326]],[[-0.10353244096041,0.063802771270275,0.037189196795225],[0.078711189329624,-0.055157773196697,0.018497124314308],[0.0022924616932869,0.070914424955845,0.030698612332344]],[[-0.020316721871495,0.066312298178673,-0.01896078325808],[-0.015611422248185,0.0017215427942574,-0.0080600287765265],[-0.036840472370386,-0.048106767237186,0.050377734005451]],[[-0.0031495708972216,0.060557659715414,0.064625613391399],[-0.039234526455402,0.05936773121357,0.0069856024347246],[0.039768431335688,-0.024670159444213,-0.01901638880372]],[[0.079461425542831,0.047737307846546,0.080582328140736],[0.056947410106659,-0.063370101153851,0.0016339110443369],[0.034176286309958,0.036098580807447,0.071577347815037]],[[0.049087557941675,-0.06041356921196,-0.032326940447092],[-0.049630917608738,-0.027350343763828,-0.085754200816154],[0.053806133568287,-0.0034626584965736,0.029986921697855]],[[-0.068037152290344,0.027748800814152,-0.043722670525312],[-0.031592167913914,0.0064878263510764,-0.07066472619772],[-0.083417013287544,-0.061123922467232,-0.03518221154809]],[[-0.018641866743565,-0.0066366204991937,-0.031215792521834],[0.019371844828129,0.0053244903683662,-0.048720229417086],[-0.12082070112228,-0.068740002810955,0.039201214909554]],[[-0.07326266169548,-0.043010015040636,-0.076362811028957],[-0.043088093400002,-0.039463777095079,0.01174717117101],[0.060774225741625,0.0091550024226308,-0.069114699959755]],[[-0.004579596221447,-0.063298404216766,-0.0077754543162882],[0.030481925234199,0.031539276242256,0.039957385510206],[-0.051380068063736,0.0016057912725955,-0.064693450927734]],[[0.0029502976685762,0.023677537217736,0.086556941270828],[-0.069906182587147,0.023324800655246,-0.0022935443557799],[0.050527948886156,0.099737137556076,0.032654695212841]],[[-0.053121659904718,-0.072454378008842,-0.065556645393372],[-0.025608545169234,-0.094569034874439,-0.077696815133095],[-0.072255700826645,-0.068727053701878,0.022888075560331]],[[-0.018999308347702,0.068946503102779,0.10085985064507],[-0.0055495179258287,-0.0002975027600769,0.04823187366128],[0.073478184640408,0.094589099287987,-0.025104179978371]],[[0.068952828645706,0.069278292357922,0.067392453551292],[-0.0032081457320601,-0.058226510882378,-0.017901228740811],[0.066107265651226,-0.013373172841966,-0.017986372113228]],[[-0.014151495881379,-0.069649256765842,0.065852217376232],[-0.075226627290249,0.06214002519846,0.14783495664597],[-0.040644630789757,-0.085385836660862,-0.014848818071187]],[[0.059401202946901,-0.0063987029716372,0.0029659329447895],[0.093385279178619,0.08528333902359,0.096650883555412],[0.02934592589736,-0.019953358918428,0.084946721792221]],[[-0.0050822515040636,-0.015265360474586,-0.065361358225346],[0.037268709391356,-0.00075795321026817,0.00053540541557595],[-0.0054312716238201,-0.01865510083735,0.0080522643402219]],[[-0.027977205812931,0.13481573760509,-0.0036616916768253],[-0.011016229167581,-0.025738978758454,0.10635673254728],[0.047780215740204,-0.013532290235162,0.087189741432667]],[[0.037181839346886,-0.0062515181489289,0.055705718696117],[0.03243325278163,-0.062242574989796,-0.01647418923676],[0.073410861194134,-0.024190196767449,0.038410142064095]],[[0.034340601414442,0.019052535295486,-0.052173040807247],[0.069219395518303,-0.077708914875984,-0.010870995931327],[-0.020322397351265,0.040884431451559,0.023878395557404]],[[-0.010344758629799,0.072664059698582,0.051951184868813],[-0.069966353476048,-0.037270329892635,-0.031567063182592],[-0.0097560044378042,-0.086502157151699,-0.01147397980094]],[[0.033193103969097,0.035535838454962,-0.012747954577208],[0.028910277411342,-0.0055874432437122,-0.021652547642589],[-0.024344950914383,-0.0094305761158466,0.055884964764118]],[[-0.062070097774267,-0.041350103914738,-0.097026906907558],[0.030918788164854,0.034017186611891,0.053497176617384],[0.0063426131382585,0.005399523768574,-0.0070753935724497]],[[-0.028828607872128,0.057032372802496,0.05300560221076],[-0.012480344623327,0.13211989402771,-0.084745205938816],[0.075136572122574,-0.021706601604819,0.030866086483002]],[[0.072127684950829,0.015296529978514,0.045537982136011],[0.087494432926178,0.0018055961700156,0.034606020897627],[0.048224177211523,-0.017380485311151,0.049789872020483]],[[-0.096779614686966,-0.062038719654083,-0.025332037359476],[-0.0022384284529835,0.0057389480061829,-0.040245831012726],[0.026883244514465,-0.0066172508522868,0.12152048945427]],[[0.053801707923412,-0.0070937140844762,-0.027992704883218],[-0.017864812165499,-0.032324228435755,-0.073743313550949],[-0.030970633029938,0.12740053236485,0.011303597129881]],[[0.069891303777695,0.075199194252491,-0.020280389115214],[-0.033022124320269,-0.0058486540801823,0.066966541111469],[0.001562935533002,0.029234122484922,-0.044764388352633]],[[-0.019617769867182,0.0032883298117667,-0.033022668212652],[0.04200903698802,-0.018688580021262,0.045897990465164],[-0.045227982103825,-0.0042586806230247,-0.03539926186204]],[[0.081846907734871,0.061684627085924,0.10464181751013],[-0.020696468651295,0.15486596524715,0.038540530949831],[0.11195015907288,0.080845810472965,0.044914439320564]],[[0.022050030529499,0.050949025899172,0.072536833584309],[0.080689921975136,-0.026411524042487,0.032568994909525],[-0.076928742229939,0.032892443239689,0.0090106297284365]],[[0.020841421559453,-0.013647370971739,0.012897096574306],[-0.026435889303684,0.1325556486845,-0.009791063144803],[-0.024076104164124,0.0045154122635722,0.03839149326086]],[[0.068269401788712,0.020969798788428,0.016955271363258],[-0.0086547015234828,-0.014665573835373,0.025015188381076],[-0.075651071965694,-0.04466300830245,-0.066344916820526]],[[-0.072363168001175,-0.018359893932939,-0.027891933917999],[0.0011907960288227,0.019663484767079,0.009075541049242],[0.088086999952793,-0.00072729674866423,0.020687175914645]],[[-0.10732725262642,0.011849268339574,-0.025836212560534],[0.0078154103830457,-0.02909635193646,-0.037971656769514],[-0.028628136962652,0.013510069809854,-0.009881105273962]],[[0.064259134232998,-0.0011059554526582,-0.044923987239599],[0.02482496201992,-0.0073154512792826,-0.0238385964185],[0.046630777418613,0.05074379965663,0.04808859154582]],[[0.020202703773975,-0.0015650319401175,-0.01056116912514],[0.089708887040615,0.096080914139748,-0.034005478024483],[-0.0033754175528884,0.06052903085947,0.066786766052246]],[[0.014018528163433,0.060823038220406,0.070787385106087],[-0.0099894404411316,0.015043427236378,0.034431673586369],[-0.04916375502944,-0.024060314521194,0.10800717771053]],[[0.045999228954315,0.063347987830639,-0.05558605119586],[-0.028529088944197,-0.045935656875372,-0.036069873720407],[-0.05201219022274,-0.069151885807514,-0.078111492097378]],[[-0.0069858902134001,0.0043680551461875,0.017703643068671],[-0.10008830577135,-0.051623906940222,-0.057824280112982],[0.036886487156153,-0.089558690786362,-0.008483350276947]],[[0.036082237958908,0.00063808925915509,-0.02150340937078],[0.039922170341015,0.032242111861706,0.01338448934257],[0.0082549666985869,0.014806341379881,-0.03524960950017]],[[-0.062044039368629,-0.061152048408985,0.039068095386028],[0.057608895003796,0.02642634510994,0.077677585184574],[0.017416531220078,0.041593290865421,-0.037174500524998]],[[0.058065947145224,0.036300294101238,0.015009710565209],[0.015826245769858,-0.047902345657349,0.050345525145531],[0.065863415598869,-0.00024261861108243,0.027673667296767]],[[0.11222139745951,-0.069494768977165,0.052925877273083],[-0.02649044059217,0.065556198358536,-0.011693126522005],[0.0011784702073783,-0.0995187535882,-0.0082651088014245]],[[-0.031702846288681,-0.013325872831047,0.024832207709551],[0.024558560922742,-0.051068879663944,-0.15180264413357],[0.012891641817987,0.017778627574444,0.027490703389049]],[[0.066037975251675,0.044169098138809,0.057145684957504],[0.0072969989851117,-0.035723280161619,0.027148699387908],[0.046669479459524,-0.026276869699359,0.068801388144493]],[[-0.0018838281976059,0.0085976347327232,-0.054066188633442],[-0.086688034236431,-0.017805259674788,-0.023539191111922],[0.027072573080659,-0.0884740203619,0.026310497894883]],[[-0.027595836669207,0.023168174549937,-0.11854609102011],[0.0095410589128733,-0.0030808323062956,0.045213967561722],[0.0063161267898977,0.093605361878872,0.088958024978638]],[[0.037237375974655,-0.074292533099651,-0.1099823564291],[-0.029019825160503,0.0060470001772046,-0.065752066671848],[0.049309350550175,-0.024774566292763,-0.040899559855461]],[[0.073439531028271,-0.0092905955389142,-0.041953667998314],[0.018914880231023,0.0045286794193089,0.087715275585651],[-0.01192073430866,0.024205388501287,0.041611023247242]],[[-0.012818246148527,-0.054372351616621,-0.008224337361753],[-0.056697063148022,-0.039659786969423,0.026897618547082],[0.059258911758661,-0.011181711219251,-0.024154732003808]],[[-0.031330678611994,-0.058249209076166,0.022152932360768],[-0.018409619107842,0.01137094385922,0.0081449188292027],[-0.011450712569058,-0.021128829568624,-0.04660527408123]],[[0.017595008015633,0.027204422280192,-0.014501900412142],[0.017236858606339,0.029297752305865,-0.011694035492837],[-0.017447337508202,0.053316947072744,0.056038290262222]],[[-0.060672353953123,-0.0069608693011105,-0.002689209068194],[-0.033967856317759,0.016719989478588,-0.11031736433506],[0.030430238693953,0.034440901130438,-0.054442688822746]],[[-0.04011370614171,-0.031507812440395,-0.015465212985873],[0.038296960294247,-0.052300527691841,-0.014290464110672],[-0.044153958559036,0.047486566007137,-0.058219768106937]],[[0.036269493401051,0.0058678719215095,0.012803697958589],[0.03903329744935,0.0086188958957791,-0.059858210384846],[0.056317593902349,0.045811284333467,-0.021327251568437]],[[-0.019581247121096,0.043938286602497,0.066173374652863],[0.094267748296261,-0.0092295967042446,0.032145075500011],[-0.094781391322613,-0.0031181920785457,0.054010506719351]],[[0.011851446703076,-0.0094724306836724,0.04196522384882],[-0.056467644870281,-0.060195650905371,-0.038848593831062],[0.018682045862079,-0.0056465175002813,-0.052521403878927]],[[-0.012542095966637,-0.01474697701633,0.024586450308561],[-0.013363885693252,0.011032739654183,0.049227524548769],[0.055711850523949,-0.0012972104595974,-0.057318370789289]],[[-0.048004314303398,-0.032094597816467,-0.038460161536932],[-0.0043406034819782,-0.069128334522247,0.0030516295228153],[-0.032396234571934,-0.021848430857062,-0.026442024856806]],[[0.02603942155838,-0.029870834201574,0.03312448784709],[0.033293444663286,-0.0041475011967123,0.053807236254215],[0.054385807365179,0.080195933580399,0.0077065997757018]],[[0.040113724768162,0.02991740219295,-0.022319320589304],[-0.018831523135304,0.016718441620469,-0.0095444265753031],[0.09032729268074,-0.011900773271918,0.081302426755428]],[[-0.036759153008461,-0.025480763986707,-0.017990056425333],[-0.016383845359087,-0.0077987546101213,-0.082001261413097],[-0.078269295394421,0.0056300922296941,-0.0033191612455994]],[[0.045487534254789,-0.058464191854,-0.045845612883568],[0.0060346624813974,0.03170695528388,-0.012081992812455],[0.018078310415149,0.12544198334217,0.041854042559862]],[[0.039871755987406,-0.037500210106373,-0.087228678166866],[0.090870127081871,0.029544766992331,0.004237680695951],[-0.028081025928259,0.035580143332481,0.050130359828472]],[[0.072414919734001,-0.039802934974432,0.04656582698226],[0.037275861948729,0.0096692238003016,-0.020312307402492],[0.059516500681639,0.06936963647604,0.040228094905615]],[[-0.10314211249352,0.060094211250544,-0.016685709357262],[0.015007917769253,-0.12161426991224,0.055057689547539],[0.010082021355629,-0.011496808379889,-0.05079248547554]],[[-0.01193587295711,-0.020411539822817,-0.030619660392404],[-0.049621738493443,0.029754614457488,0.06276573240757],[0.0071000186726451,-0.049784701317549,0.013521794229746]],[[0.0017988616600633,0.0076436283998191,-0.029451511800289],[-0.011015414260328,0.12100065499544,0.021244619041681],[0.064854629337788,0.075302258133888,0.077119491994381]],[[-0.078032188117504,-0.023083893582225,0.0011272920528427],[0.031845986843109,-0.02049782127142,-0.071653626859188],[0.077974729239941,0.087959572672844,-0.027457509189844]],[[-0.044756390154362,-0.091947972774506,-0.031873844563961],[-0.045928999781609,-0.062648110091686,-0.062999561429024],[-0.036460153758526,0.10854421555996,0.016364067792892]],[[-0.046956785023212,-0.0065064830705523,0.033583801239729],[-0.068916127085686,-0.11259642243385,0.073756039142609],[-0.062477879226208,-0.014844363555312,-0.013695197179914]],[[-0.078671745955944,-0.035942573100328,0.017419748008251],[-0.064368553459644,0.024532223120332,0.014448688365519],[0.0076925847679377,-0.08496331423521,-0.10299717634916]],[[-0.0074354000389576,0.017634687945247,-0.051532324403524],[-0.010985177010298,-0.046345349401236,0.088500931859016],[-0.044685542583466,-0.13148027658463,-0.067497901618481]],[[0.017234683036804,-0.022034639492631,0.017167083919048],[0.053067240864038,0.054398030042648,0.0089608011767268],[-0.026343792676926,-0.011181428097188,-0.020395532250404]],[[0.032019440084696,-0.046999786049128,0.0092350812628865],[-0.0036807893775403,0.01370107755065,-0.040845237672329],[0.094725281000137,0.013719815760851,0.019530445337296]],[[-0.0057237730361521,9.1222507762723e-05,0.084183089435101],[0.0072059817612171,0.1072645559907,-0.066228196024895],[-0.0081065520644188,0.055036567151546,-0.041536904871464]],[[-0.081483319401741,-0.067942231893539,-0.021020900458097],[-0.026132734492421,-0.063485212624073,-0.0042532035149634],[-0.055720571428537,0.0088793281465769,0.0475138053298]],[[-0.046828683465719,0.028171600773931,-0.0063607054762542],[0.051417853683233,0.031084602698684,0.085565015673637],[-0.0069321440532804,0.058286875486374,0.022750377655029]],[[-0.03861266374588,-0.0028427464421839,-0.047569770365953],[-0.0083012180402875,0.026964904740453,-0.029858244583011],[-0.0374890640378,-0.032600224018097,-0.032061655074358]],[[-0.0054645370692015,-0.064658954739571,-0.021696757525206],[-0.073895633220673,-0.022355942055583,-0.033117584884167],[-0.011730776168406,0.092250801622868,-0.058870356529951]],[[0.044473387300968,0.032065235078335,0.050807029008865],[-0.042973741889,0.030265105888247,0.0050928932614625],[-0.0093042077496648,0.020842676982284,0.081066563725471]],[[0.0064152567647398,0.036305468529463,0.024897349998355],[0.011627465486526,-0.0050892718136311,0.066339246928692],[-0.054681114852428,-0.010558754205704,-0.033610247075558]],[[0.035984434187412,0.01968664303422,0.017430605366826],[0.033579833805561,0.030099488794804,0.019324479624629],[0.021165620535612,-0.0055204308591783,0.013225555419922]],[[0.033005241304636,-0.10127659887075,0.086118929088116],[-0.076247185468674,-0.0056020575575531,0.021877417340875],[0.09655299782753,0.014834294095635,-0.023336805403233]],[[0.016556933522224,0.011372074484825,0.015426793135703],[0.0021095755510032,0.026796558871865,0.0096414219588041],[0.072914063930511,0.0057499893009663,0.0017600059509277]],[[-0.048814430832863,0.011323440819979,-0.011077744886279],[0.044246528297663,-0.0065379161387682,-0.021836426109076],[-0.061444599181414,0.090848602354527,0.038791064172983]]],[[[0.018393581733108,-0.021332258358598,-0.010705043561757],[-0.018903436139226,-0.025481250137091,0.019911115989089],[-0.014318357221782,0.015573175624013,0.0036075173411518]],[[0.013628962449729,-0.020846312865615,0.051882438361645],[-0.053577069193125,0.048702701926231,0.060071457177401],[-0.018596133217216,-0.050585903227329,0.0032026849221438]],[[0.053202554583549,0.030556906014681,-0.033713102340698],[0.057105209678411,-0.043613508343697,-0.053966160863638],[-0.015165524557233,0.016551723703742,-0.045272395014763]],[[0.038480583578348,0.012131954543293,-0.0074209552258253],[0.013754517771304,0.016504207625985,0.056254908442497],[-0.011032576672733,-0.00014867860591039,0.022475656121969]],[[0.019992606714368,0.022717187181115,-0.032822225242853],[-0.037506815046072,0.01011976134032,0.03182153776288],[-0.031410589814186,0.020107097923756,0.00094819674268365]],[[-0.036115940660238,0.011844540946186,0.022724013775587],[0.023319343104959,-0.021957295015454,0.020808096975088],[-0.013082487508655,0.011019975878298,0.028190553188324]],[[-0.025001525878906,-0.0025211123283952,0.034761022776365],[0.109529286623,-0.040086217224598,-0.0042631095275283],[0.032984357327223,0.038334771990776,-0.022998213768005]],[[0.025615783408284,-0.0047733983956277,-0.033118426799774],[-0.011920164339244,-0.017923906445503,0.062157012522221],[-0.00831756927073,0.051722180098295,0.033649727702141]],[[0.07734227180481,-0.0020253951661289,-0.0281185451895],[-0.0090680327266455,0.03886017203331,-0.0086919208988547],[0.012653798796237,0.0056136436760426,-0.01503941975534]],[[0.0099651850759983,0.0085803680121899,0.017751911655068],[0.011817106977105,-0.01679639518261,-0.019782016053796],[-0.035369124263525,0.03133824840188,0.0098488992080092]],[[0.032764978706837,0.0018242752412334,0.019005017355084],[-0.020448135212064,-0.008475124835968,-0.0097804386168718],[-0.027476288378239,0.028490958735347,0.025604255497456]],[[0.044058810919523,0.012273003347218,0.0088419821113348],[-0.10870862007141,0.033466942608356,0.057625900954008],[0.016799740493298,-0.015234865248203,-0.033865612000227]],[[-0.014844960533082,-0.0037329606711864,0.0074538681656122],[0.014533085748553,-0.010205945000052,0.051085893064737],[-0.018932979553938,-0.030680080875754,-0.047489833086729]],[[0.0014521437697113,0.026146566495299,-0.04687475040555],[0.010612574405968,0.074562400579453,-0.05729629099369],[0.045989792793989,0.042667269706726,-0.063789956271648]],[[-0.033004514873028,0.023335793986917,-0.0095053939148784],[-0.0096278497949243,-0.034676838666201,-0.035633254796267],[-0.0042110923677683,0.038079142570496,0.060721680521965]],[[0.042837791144848,-0.046422932296991,-0.015520731918514],[0.029965983703732,0.028474541381001,0.020329724997282],[-0.013504604808986,-0.13400462269783,0.043629370629787]],[[-0.039202865213156,0.0073598786257207,0.053327094763517],[-0.016872059553862,-0.049034770578146,-0.0090099275112152],[0.020973682403564,0.019857907667756,0.030163545161486]],[[0.048295151442289,-0.010299942456186,0.049392160028219],[-0.019996965304017,-0.079583160579205,0.04791946336627],[-0.056261252611876,-0.062280848622322,0.034104604274035]],[[0.023219618946314,-0.0016188943991438,0.00078146666055545],[0.0010984996333718,0.025321992114186,0.0049942783080041],[-0.016522435471416,-0.017177490517497,0.0014325720258057]],[[-0.028436260297894,-0.039910346269608,-0.064264185726643],[0.062255866825581,0.020550724118948,-0.11995925009251],[0.12420372664928,0.044810555875301,-0.15025873482227]],[[-0.0013543247478083,-0.027227023616433,-0.025677306577563],[-0.022852348163724,0.0010539973154664,0.013476112857461],[-0.033786606043577,-0.016046082600951,-0.014679806306958]],[[-0.025107245892286,-0.012634729035199,0.0072687678039074],[0.059120669960976,-0.0044938544742763,0.052539139986038],[-0.0042516896501184,0.0015447771875188,0.020984072238207]],[[-0.023339195176959,-0.088887259364128,-0.016496442258358],[0.067007683217525,-0.073614962399006,0.071322403848171],[0.0075762681663036,0.028198370710015,-0.00022934810840525]],[[-0.065412104129791,0.0079482281580567,0.050832577049732],[0.029908875003457,0.13020485639572,0.13436701893806],[-0.10854385048151,-0.06210582703352,-0.020753882825375]],[[0.063890926539898,-0.054093435406685,-0.036039896309376],[0.077640742063522,0.053177289664745,0.0028619011864066],[0.011082308366895,0.0074478108435869,0.022208757698536]],[[0.021552871912718,0.026163246482611,0.00029683855245821],[-0.063097402453423,-0.036690168082714,0.078515790402889],[0.031287118792534,0.045669067651033,0.060270186513662]],[[-0.016744613647461,0.022297626361251,0.036299511790276],[-0.0072168759070337,-0.057002451270819,0.046667896211147],[-0.0010322051821277,0.071038864552975,-0.078522242605686]],[[0.036399248987436,-0.013152251020074,0.063321806490421],[0.054154489189386,-0.044161532074213,0.008824622258544],[-0.015450533479452,-0.022904798388481,-0.015882682055235]],[[-0.0087255528196692,0.050243612378836,0.069976463913918],[-0.019531605765224,0.020408980548382,-0.11487483233213],[0.028586277738214,-0.042246922850609,-0.0034279404208064]],[[-0.010372689925134,0.0054726232774556,0.023932207375765],[0.015111732296646,0.023800918832421,-0.014808469451964],[-0.00012025483738398,-0.044497534632683,-0.0228182207793]],[[-0.004598455503583,-0.037452321499586,0.016575561836362],[-0.082541167736053,0.060648858547211,-0.0011470613535494],[-0.032697096467018,0.060050524771214,0.022439563646913]],[[0.02233506180346,-0.099049992859364,-0.002111692680046],[-0.031391147524118,-0.064623929560184,-0.096728898584843],[0.017016742378473,0.080801092088223,0.095094494521618]],[[0.032244950532913,0.024738486856222,0.022784490138292],[-0.0077663864940405,-0.0055394028313458,0.062712326645851],[-0.036754667758942,-0.036828182637691,-0.019869118928909]],[[-0.030430033802986,0.022250002250075,-0.013162645511329],[-0.0067447000183165,0.074165306985378,0.0055338037200272],[0.020816927775741,0.021235885098577,-0.077719986438751]],[[-0.055351458489895,0.019171366468072,0.042817071080208],[0.017768729478121,0.0051405327394605,0.098892025649548],[0.030075877904892,0.053291093558073,0.040263872593641]],[[-0.05604675412178,0.086353704333305,0.054996572434902],[-0.011041754856706,0.058914054185152,-0.038515821099281],[-0.11443230509758,-0.0039375871419907,0.060442749410868]],[[-0.0038554577622563,-0.0010899988701567,-0.00676752300933],[-0.046285342425108,-0.0031582871451974,0.0082793356850743],[0.0037364752497524,0.080293342471123,-0.053320299834013]],[[0.014219224452972,-0.064455755054951,0.0022022756747901],[0.00037300103576854,0.060212906450033,-0.0077299885451794],[0.0097332932054996,-0.015537615865469,-0.0036117143463343]],[[-0.024014910683036,0.021292980760336,-0.016340259462595],[-0.062779791653156,0.0007483457447961,0.077499337494373],[-0.025009108707309,-0.056055534631014,0.064574100077152]],[[0.029594013467431,0.00057172274682671,0.01913395524025],[-0.040274202823639,0.025379369035363,0.0030075232498348],[0.051183711737394,-0.041887633502483,-0.059738397598267]],[[-0.029868576675653,0.050236880779266,-0.0035863809753209],[0.066622279584408,0.055171519517899,-0.02024020254612],[-0.013225421309471,0.0011439307127148,-0.092288911342621]],[[-0.061513788998127,-0.022467827424407,0.057867143303156],[-0.040161360055208,-0.001916624722071,0.11183568835258],[-0.027063984423876,0.027287201955914,0.013283593580127]],[[0.021455207839608,-0.0052470336668193,-0.066463060677052],[-0.042897924780846,0.018086550757289,-0.0088632572442293],[0.019740980118513,0.052987948060036,0.046335007995367]],[[0.044728793203831,-0.019900124520063,0.074155420064926],[0.032380402088165,0.13857302069664,0.029128156602383],[0.014887343160808,0.058377619832754,0.10114479809999]],[[0.028199251741171,-0.0056362710893154,0.030601406469941],[-0.0064544258639216,-0.034817464649677,-0.019462637603283],[0.0035120756365359,0.046098198741674,0.043840296566486]],[[-0.0058737127110362,-0.041896037757397,0.026139281690121],[0.066155441105366,-0.012121221981943,-0.013551226817071],[-0.031502395868301,0.014076258055866,0.059803321957588]],[[-0.05419085547328,-0.026451287791133,0.019501727074385],[-0.0047984113916755,0.046161375939846,0.019206283614039],[0.12770862877369,0.030546139925718,-0.054226405918598]],[[0.020373623818159,0.00032838655170053,0.013985265977681],[-0.061478868126869,-0.094967491924763,-0.12641532719135],[0.00062177510699257,0.04756923392415,0.036718085408211]],[[-0.041010957211256,-0.00021278187341522,0.023379044607282],[-0.043533015996218,0.034200832247734,0.012242937460542],[0.041960913687944,-0.03966748714447,0.057766046375036]],[[-0.0217115432024,-0.0090027889236808,-0.018683753907681],[-0.013322183862329,0.046759288758039,0.020602429285645],[-0.071713522076607,0.037692680954933,0.046243507415056]],[[0.049955166876316,-0.031547956168652,0.05841313675046],[-0.024750264361501,0.045364867895842,0.0062961750663817],[0.038793288171291,-0.055595703423023,-0.03131465986371]],[[0.01196201518178,0.020138064399362,0.005526483990252],[0.082342855632305,0.037787530571222,-0.042881060391665],[0.011612247675657,0.015531660057604,-0.11607539653778]],[[0.075502805411816,-0.028111571446061,0.006661023478955],[-0.033858835697174,0.033389121294022,0.039752833545208],[-0.070855557918549,-0.02671330049634,0.0051530869677663]],[[-0.065264455974102,-0.036074511706829,0.0048736874014139],[0.043126795440912,0.015790957957506,-0.021719804033637],[0.024049794301391,0.019880767911673,0.03551696613431]],[[0.047278288751841,0.024230482056737,0.040752537548542],[-0.012557505629957,-0.055725332349539,-0.025424441322684],[0.0080035934224725,-0.031763382256031,0.016687173396349]],[[-0.021278388798237,0.020842112600803,-0.012924061156809],[-0.0099584432318807,-0.03321560844779,-0.023025514557958],[0.075886748731136,0.017561532557011,-0.0072237295098603]],[[0.0096240164712071,-0.014931431040168,0.0058435047976673],[-0.066039517521858,0.074550189077854,0.0029761034529656],[0.055656258016825,-0.040698666125536,-0.077035412192345]],[[0.0028598967473954,0.0056465133093297,-0.057757440954447],[0.01210852432996,0.010639352723956,0.009969225153327],[-0.033214285969734,0.027762891724706,0.047032102942467]],[[-0.018669618293643,-0.0098225306719542,-0.052607294172049],[0.015366287901998,0.039292745292187,-0.0089165922254324],[-0.0041870353743434,0.098769299685955,-0.015948379412293]],[[-0.013683289289474,-0.02327961102128,0.018180228769779],[0.045774836093187,0.04369219020009,-0.084517143666744],[0.038934048265219,-0.00077037641312927,-0.015988737344742]],[[-0.0086735915392637,0.0061137834563851,-0.031375288963318],[-0.0089523540809751,0.06825315952301,0.010140371508896],[-0.059983529150486,-0.047294929623604,0.077166900038719]],[[-0.040011469274759,0.0055899610742927,-0.0012093656696379],[0.060263957828283,0.013174240477383,-0.033398970961571],[0.00072351400740445,0.069928877055645,-0.064765267074108]],[[0.0097096357494593,0.067931167781353,-0.022229367867112],[0.040831070393324,-0.10892192274332,0.036003690212965],[0.030758984386921,0.0038023048546165,-0.051916845142841]],[[-0.024613928049803,0.010371706448495,-0.0011350472923368],[0.03950410336256,-0.0038264051545411,-0.0080407802015543],[-0.031488887965679,0.071647822856903,0.021707342937589]],[[-0.013126562349498,0.10362808406353,-0.074300661683083],[0.019743951037526,-0.098317757248878,0.029790887609124],[-0.042798899114132,0.02108945697546,0.075010262429714]],[[-0.0031682976987213,-0.019465189427137,0.025819821283221],[-0.019936248660088,0.011265395209193,-0.057350907474756],[0.05838942527771,-0.03135759010911,0.058266215026379]],[[0.072939939796925,0.066963709890842,-0.069859057664871],[-0.039657067507505,-0.047670356929302,-0.07687796652317],[0.028112487867475,0.027347033843398,0.054237008094788]],[[0.047233715653419,0.075662598013878,0.0073589072562754],[-0.05720417201519,-0.015089069493115,0.024465581402183],[-0.014065328985453,0.0015284592518583,-0.027416525408626]],[[0.036863271147013,-0.021204125136137,0.044264171272516],[0.016122456640005,0.0054654045961797,-0.09892775118351],[-0.04110212251544,0.095315970480442,-0.051305811852217]],[[0.026790713891387,-0.0066322037018836,0.0013504100497812],[0.021328043192625,0.00013216154184192,0.069854877889156],[-0.019117115065455,-0.037822067737579,-0.027584545314312]],[[-0.015936519950628,0.056554440408945,-0.078395500779152],[0.038819588720798,0.019056921824813,-0.055590126663446],[0.0052282032556832,0.016217643395066,0.033745016902685]],[[-0.0021237824112177,0.010237189009786,0.087209984660149],[-0.049855757504702,0.038328357040882,0.026625975966454],[0.039020273834467,-0.10349755734205,-0.071329422295094]],[[-0.015849966555834,0.011297684162855,0.001863703597337],[-0.016009161248803,-0.070722430944443,0.051680956035852],[-0.052161414176226,-0.062333181500435,0.048159286379814]],[[-0.042963411659002,0.0012221009237692,0.027780581265688],[-0.01773826405406,-0.034445144236088,-0.052886176854372],[0.055047310888767,0.034664608538151,-0.015074791386724]],[[-0.068776406347752,-0.12315894663334,-0.055056128650904],[-0.035240571945906,0.053425114601851,0.043814595788717],[0.012457343749702,0.066698327660561,0.020750360563397]],[[0.041986506432295,-0.03631429746747,0.048453085124493],[-0.035955131053925,-0.0069464477710426,-0.034000527113676],[-0.025937860831618,-0.017514823004603,0.020008629187942]],[[0.027160249650478,0.011743191629648,-0.01861996948719],[-0.0091644190251827,0.001829803804867,0.017942380160093],[-0.060946613550186,-0.07771997153759,0.063276514410973]],[[-0.044250197708607,0.03089440241456,-0.11101654917002],[0.047319550067186,0.075535833835602,-0.015174358151853],[-0.0058699743822217,0.034586757421494,0.021686229854822]],[[0.033000588417053,-0.0089102508500218,0.014895004220307],[-0.0084817791357636,0.0094592571258545,-0.042711388319731],[-0.00054333318257704,0.031500749289989,-0.027975156903267]],[[0.041885692626238,0.008747604675591,0.04474775120616],[0.036686021834612,0.039523277431726,-0.028251085430384],[0.033813193440437,-0.046152237802744,-0.067191235721111]],[[-0.02928339317441,0.01929927803576,-0.072047762572765],[-0.0047724694013596,-0.031679671257734,-0.022588215768337],[0.059766050428152,0.009489743039012,0.04075950756669]],[[-0.012202074751258,0.02182150259614,-0.012045397423208],[-0.019596496596932,0.060001574456692,0.075675532221794],[0.032507039606571,-0.034059446305037,-0.031783755868673]],[[0.012923404574394,0.018995337188244,-0.00015004037413746],[-0.029769510030746,-0.04794043675065,0.071261316537857],[-0.059387732297182,0.027911612764001,-0.0058027259074152]],[[0.0061933593824506,-0.0032604911830276,0.054011031985283],[-0.032016895711422,0.0064425645396113,-0.018392883241177],[-0.01207731012255,0.032412152737379,0.0066627389751375]],[[0.029166275635362,0.0091329235583544,-0.015968894585967],[0.012663783505559,0.036183603107929,0.05511736124754],[-0.042986690998077,-0.017203764989972,0.0038666059263051]],[[0.019426403567195,0.0045918226242065,-0.068143181502819],[0.0017596102552488,0.0038458928465843,-0.0091552995145321],[0.04978659003973,0.066856853663921,-0.061547253280878]],[[0.036262296140194,-0.0066638928838074,0.040172677487135],[0.01968059875071,0.036102335900068,-0.0034143354278058],[-0.053388848900795,-0.026394126936793,0.029623504728079]],[[0.043849267065525,-0.055748973041773,0.066738121211529],[-0.053052358329296,-0.021797088906169,0.012015401385725],[0.0045921099372208,0.049701098352671,-0.058417059481144]],[[0.010548282414675,-0.0024956301786005,-0.025895738974214],[0.027534695342183,-0.011035595089197,0.083060100674629],[0.0054055447690189,-0.00816067494452,-0.075803205370903]],[[-0.0036026414018124,0.018344076350331,-0.11612094938755],[0.049154717475176,-0.089710772037506,0.0014835395850241],[0.027760429307818,0.0093715172261,0.016396384686232]],[[-0.024530651047826,-0.04627038910985,0.033460658043623],[0.0036598397418857,-0.037845779210329,0.040473230183125],[0.0095001021400094,0.0092524513602257,0.03168610483408]],[[0.02153005823493,-0.063452512025833,-0.017324397340417],[0.092336468398571,-0.08486220985651,0.013827816583216],[0.019774872809649,-0.071292728185654,0.032620616257191]],[[0.01652717590332,-0.0020780183840543,-0.037115897983313],[-0.025486454367638,-0.058550778776407,0.029229247942567],[-0.012519770301878,0.06200997531414,0.013690043240786]],[[0.034101001918316,-0.046244502067566,-0.028684392571449],[0.02749877795577,-0.039880398660898,0.052531845867634],[-0.014117698185146,0.045083947479725,-0.033896669745445]],[[0.063788466155529,0.0073046237230301,-0.033085118979216],[-0.0069597722031176,-0.038906089961529,-0.038860287517309],[0.020989356562495,0.03492159768939,-0.061863094568253]],[[-0.02699320577085,0.034238770604134,-0.07891583442688],[-0.037222314625978,0.044990710914135,0.024633286520839],[0.039079245179892,0.0048819188959897,0.059135459363461]],[[0.13959939777851,-0.0096481656655669,0.019238755106926],[-0.048121649771929,0.07011691480875,0.0024247779510915],[-0.029938789084554,-0.07123164832592,-0.063912995159626]],[[-0.06830383092165,-0.014861850999296,-0.021524269133806],[0.029509466141462,0.015614293515682,0.016773592680693],[0.0095786340534687,-0.029594363644719,0.044420588761568]],[[0.053526654839516,-0.017966091632843,0.040060523897409],[-0.011580764316022,0.084377072751522,-0.035570196807384],[-0.0021036840043962,-0.057413890957832,-0.0072877458296716]],[[0.083702482283115,-0.015334664843976,-0.014916554093361],[-0.051832921802998,-0.014306928962469,0.012182574719191],[-0.059136804193258,0.023166509345174,0.010395581834018]],[[-0.038497120141983,-0.0031186190899462,0.017412588000298],[0.042928721755743,0.035565990954638,-0.014512542635202],[-0.019890015944839,-0.023942407220602,-0.023283686488867]],[[-0.068381562829018,-0.036316711455584,0.06001928076148],[-0.064010515809059,0.011121729388833,0.10208095610142],[-0.049839168787003,-0.0098734209313989,0.016740193590522]],[[-0.025850832462311,-0.083609767258167,-0.056572064757347],[0.077928721904755,-0.010751768946648,0.0057161189615726],[0.031542524695396,-0.010427782312036,0.023801336064935]],[[0.015942012891173,-0.033095084130764,0.031301759183407],[0.026226315647364,-0.032629922032356,0.0044791675172746],[-0.027432098984718,-0.040713422000408,0.042432263493538]],[[0.067556269466877,0.023178320378065,-0.038661871105433],[-0.020279267802835,0.0018342764815316,0.0054943752475083],[0.010550603270531,-0.010182737372816,-0.013097711838782]],[[0.01254403591156,-0.006197992246598,-0.038951929658651],[-0.05134754627943,-0.0046004764735699,0.05534578487277],[0.05239162966609,-0.011230289004743,0.022442856803536]],[[0.010565716773272,0.064982868731022,-0.0046171913854778],[0.035216622054577,0.030872294679284,0.011357802897692],[-0.012071165256202,-0.017759930342436,-0.086625769734383]],[[-0.018307216465473,-0.038420859724283,0.0078655946999788],[0.063228562474251,-0.00027996776043437,0.018693154677749],[0.038323935121298,-0.054672956466675,0.01138264965266]],[[0.0069983671419322,0.051620092242956,-0.023086184635758],[-0.020455276593566,-0.0016791271045804,-0.0056204255670309],[0.0032187607139349,0.087780460715294,-0.011023269034922]],[[-0.0056956647895277,-0.0074130422435701,0.0050685596652329],[-0.022630242630839,0.025862207636237,0.03484383970499],[-0.012014838866889,0.015767188742757,0.017643282189965]],[[-0.027007281780243,0.058820672333241,-0.027468906715512],[0.028469065204263,-0.054596830159426,-0.073563061654568],[-0.00073205720400438,-0.10456044971943,-0.054211650043726]],[[0.029841769486666,0.052630927413702,-0.054791882634163],[-0.016532324254513,-0.03247582539916,-0.011776529252529],[0.020716123282909,0.01570307649672,0.022672737017274]],[[-0.047875873744488,0.0022023697383702,-0.0065111708827317],[0.085785903036594,0.023306366056204,-0.079299435019493],[0.074876733124256,-0.049276314675808,-0.07534921169281]],[[-0.012854799628258,0.0087951393797994,-0.019876375794411],[-0.0021658251062036,-0.075142815709114,0.0093076033517718],[-0.018586857244372,0.060855653136969,0.052247550338507]],[[0.0063671418465674,0.059252995997667,0.01963503472507],[-0.0062865717336535,0.030754946172237,0.015047995373607],[0.0018046578625217,-0.033564794808626,-0.028711535036564]],[[0.01217906922102,0.0032437578774989,0.016296528279781],[-0.046688623726368,-0.023973321542144,0.079287193715572],[0.029310144484043,-0.018474100157619,-0.037235897034407]],[[0.0057946108281612,0.008811516687274,-0.095555737614632],[0.045262847095728,0.0085807740688324,0.0015980178723112],[0.01949667558074,0.097407057881355,0.030167849734426]],[[-0.010803726501763,2.8569962523761e-05,-0.030843611806631],[0.0038402620702982,0.056739434599876,0.033334065228701],[-0.040503848344088,-0.0089729251340032,-0.0028663461562246]],[[-0.029094103723764,-0.069328725337982,-0.0168078225106],[-0.02182706259191,0.032424051314592,0.08912032097578],[-0.0020609514322132,-0.0034659642260522,-0.0037438438739628]],[[-0.00033469568006694,-0.015302889049053,0.028492078185081],[-0.00012441563012544,-0.092375367879868,-0.027546068653464],[0.022291768342257,0.001601004274562,0.030452895909548]],[[0.0085971299558878,-0.038724754005671,-0.014643607661128],[-0.052523300051689,-0.16216547787189,-0.085484802722931],[-0.056908018887043,-0.11007259041071,-0.040607754141092]],[[0.01726664789021,0.019239027053118,-0.022068930789828],[0.0032428149133921,0.040942575782537,-0.00018971937242895],[0.030323315411806,0.065117962658405,-0.072331629693508]],[[0.00090264691971242,0.02072793059051,-0.025794522836804],[0.024557612836361,-0.014364554546773,0.0040268921293318],[0.049933422356844,0.014281728304923,-0.10014539957047]],[[-0.0046859472058713,0.0230264198035,-0.015055148862302],[-0.072931252419949,2.1374389689299e-06,-0.0052471794188023],[0.033394355326891,0.019622141495347,0.020030952990055]],[[-0.0034120520576835,0.020266752690077,-0.0017723640194163],[-0.030135536566377,-0.0012349375756457,-0.010787430219352],[-0.060612209141254,0.074177399277687,0.036438558250666]],[[0.028670269995928,-0.0765241086483,0.0072442176751792],[0.061673577874899,-0.064103186130524,-0.037773981690407],[0.014853488653898,0.081285960972309,-0.015536099672318]],[[0.011840725317597,0.062385354191065,0.021072560921311],[0.041116822510958,-0.020966412499547,-0.026871772482991],[-0.10451364517212,0.050547279417515,-0.0024343742989004]],[[0.023650076240301,0.04932352527976,-0.011819703504443],[-0.051113676279783,-0.028961308300495,-0.011136462911963],[0.01907828822732,0.016976535320282,-0.040513154119253]]],[[[0.029038354754448,-0.026512304320931,-0.0495615452528],[0.012976753525436,0.042665593326092,0.03111831843853],[-0.007982412353158,0.012761044315994,0.041055284440517]],[[-0.00055747979786247,-0.058311369270086,-0.044649690389633],[0.024975389242172,4.1521998355165e-05,0.028786066919565],[0.035347491502762,0.023717179894447,-0.02744753472507]],[[0.020149908959866,-0.059713777154684,0.029661722481251],[0.026783866807818,0.022992311045527,0.068406075239182],[0.041578575968742,0.037348050624132,0.0011361362412572]],[[-0.070098884403706,0.0055490867234766,0.058487553149462],[0.031384699046612,-0.029488507658243,-0.016460070386529],[-0.034592390060425,0.070547126233578,-0.047221727669239]],[[-0.045862480998039,-0.033837664872408,-0.032913792878389],[-0.025144139304757,0.01779418811202,-0.060658484697342],[-0.098518945276737,-0.029008412733674,0.0032781725749373]],[[-0.068837702274323,-0.03927693143487,0.063698694109917],[-0.0040313974022865,-0.0053583779372275,-0.0045655509456992],[0.02422047033906,-0.047238495200872,-0.044963628053665]],[[0.0030686603859067,0.012467512860894,0.10106414556503],[-0.0059143477119505,0.043948534876108,0.054928358644247],[0.011971171014011,-0.085095830261707,-0.024763727560639]],[[0.07039936631918,0.018232896924019,-0.021277520805597],[0.037236176431179,-0.00083241553511471,0.07609137147665],[-0.060045003890991,-0.0024633831344545,-0.032292500138283]],[[0.028239633888006,-0.011999312788248,-0.017388956621289],[0.014126004651189,-0.03049460798502,0.030678361654282],[0.070913717150688,-0.062366135418415,-0.037872202694416]],[[0.040867313742638,0.013309681788087,0.039358526468277],[-0.0061011668294668,0.02102479711175,0.002463145647198],[-0.068924680352211,0.006281309761107,-0.038934495300055]],[[0.024092238396406,0.01119583658874,-0.022240459918976],[-0.00048392356256954,0.037034541368484,0.022172311320901],[-0.052406530827284,-0.0033458629623055,0.023095333948731]],[[0.010836682282388,-0.038139924407005,0.037099950015545],[0.044348191469908,-0.0020843504462391,0.0072482340037823],[0.0050983671098948,0.061833623796701,-0.018302198499441]],[[0.084361501038074,0.0034210088197142,-0.047520652413368],[0.017220357432961,0.019708933308721,0.084730409085751],[-0.013165675103664,0.063727863132954,-0.079939261078835]],[[0.030356509611011,0.065433621406555,0.080899126827717],[-0.048624876886606,0.026685584336519,0.005703333299607],[0.04360719025135,-0.00586380623281,0.056312881410122]],[[0.0029405429959297,-0.018327156081796,0.04060997441411],[-0.09498306363821,0.0034045854117721,-0.032383870333433],[0.0084885526448488,-0.034764632582664,0.012867112644017]],[[-0.0016574030742049,-0.068836852908134,0.019236380234361],[0.019141251221299,0.037299986928701,0.0088185658678412],[0.022720664739609,-0.023794189095497,-0.012590744532645]],[[0.040760658681393,-0.02658955194056,0.0045663192868233],[-0.0062472405843437,0.026507418602705,0.036167249083519],[0.10160782188177,0.02413241006434,-0.00019981022342108]],[[0.014734195545316,0.021465577185154,-0.016517773270607],[-0.028206717222929,-0.046024870127439,0.035091433674097],[-0.046337515115738,0.0080218240618706,0.010429687798023]],[[0.033047508448362,-0.031793925911188,-0.025228850543499],[-0.017909167334437,-0.063186824321747,0.0090658152475953],[-0.034610524773598,-0.033936228603125,0.067285850644112]],[[0.062457457184792,-0.066983096301556,0.018598882481456],[0.01778888143599,0.068359583616257,0.070467874407768],[-0.058595422655344,-0.00081801105989143,0.04116827622056]],[[0.023191463202238,-0.021650835871696,0.016917774453759],[0.023164745420218,-0.077743664383888,-0.018278645351529],[0.0031848214566708,-0.027825444936752,-0.073046624660492]],[[0.006547074764967,0.010009460151196,-0.029454585164785],[0.016090845689178,0.010600904934108,0.01869180239737],[0.06145504117012,0.0068679316900671,0.027450477704406]],[[0.041151095181704,-0.0082805408164859,-0.0063403300009668],[-0.067850448191166,-0.011631668545306,-0.017549244686961],[0.020338734611869,-0.036989472806454,-0.017150698229671]],[[-0.034390933811665,-0.048886872828007,0.0053984131664038],[0.029188897460699,-0.00027859484544024,-0.013840036466718],[0.053592137992382,-0.030856262892485,0.031347915530205]],[[-0.1146240234375,0.03650277107954,-0.13947038352489],[-0.055857639759779,0.050952110439539,0.0047438559122384],[-0.0234634000808,0.040002379566431,-0.018461480736732]],[[0.016216499730945,-0.050058357417583,-0.042667176574469],[-0.085874050855637,-0.022632207721472,0.030706163495779],[0.0064001525752246,-0.016998734325171,-0.055070508271456]],[[-0.035824708640575,-0.066882565617561,0.063007943332195],[0.012327696196735,-0.033129662275314,0.061029803007841],[0.10482220351696,0.010862030088902,-0.011362481862307]],[[0.02522936463356,0.024916546419263,0.013360193930566],[-0.020080728456378,0.0087635917589068,0.016217440366745],[-0.035095524042845,0.054216876626015,-0.061085153371096]],[[-0.043836060911417,-0.0003041322925128,0.036983966827393],[0.025925705209374,-0.0094733750447631,0.047594603151083],[-0.0054639093577862,-0.0070166243240237,0.055683944374323]],[[-0.042017601430416,0.050114564597607,-0.03960657119751],[0.019827840849757,-0.0081764431670308,0.0028904413338751],[-0.012628608383238,-0.032022275030613,0.027364080771804]],[[-0.035757679492235,0.0043417499400675,0.030260618776083],[0.034159477800131,0.070727743208408,-0.0017403734382242],[0.02690108306706,0.0041297203861177,0.011876410804689]],[[0.059659462422132,-4.6787692554062e-05,-0.048885207623243],[0.054697509855032,-0.047152899205685,-0.0077510359697044],[0.059336181730032,0.014460656791925,0.020196070894599]],[[0.032159257680178,-0.051575727760792,0.035885773599148],[0.013555698096752,0.025605071336031,-0.0066110254265368],[-0.026454007253051,-0.04095957800746,0.0078822020441294]],[[0.0060964939184487,0.025630537420511,-0.10623046010733],[0.027275469154119,0.023965394124389,0.030338577926159],[0.051245227456093,0.037724118679762,0.0081848623231053]],[[0.015994241461158,-0.034345276653767,0.048905115574598],[0.057734359055758,0.089287541806698,-0.034832756966352],[-0.080637969076633,0.027190160006285,0.010935413651168]],[[0.020209653303027,-0.052817348390818,0.023145366460085],[0.016147699207067,0.034958403557539,-0.032093316316605],[-0.028665905818343,0.029319439083338,-0.0003926690260414]],[[0.022555666044354,-0.0040200212970376,-0.011044269427657],[0.050788678228855,-0.01218006759882,0.009530957788229],[-0.059303965419531,0.045954693108797,0.0011454692576081]],[[0.058014016598463,0.011554372496903,0.042358160018921],[-0.065126471221447,0.032414499670267,-0.02221405133605],[0.049614835530519,-0.04807472974062,-0.041425116360188]],[[-0.02994935400784,0.0088880034163594,-0.04705860838294],[-0.06033868715167,0.012197282165289,0.019722664728761],[-0.045306153595448,-0.031888023018837,0.004137990064919]],[[-0.029981050640345,-0.035667389631271,0.060859121382236],[0.051334083080292,0.011161619797349,0.011107554659247],[0.023525962606072,-0.061209730803967,0.022411921992898]],[[0.049111168831587,-0.0073856189846992,-0.028092678636312],[-0.047934833914042,-0.040419034659863,0.001115667517297],[0.060041964054108,0.02584171295166,0.0229910351336]],[[0.0042348639108241,0.05648498237133,0.093896515667439],[-0.0089290039613843,-0.086542651057243,0.017459603026509],[0.11432997137308,0.044555559754372,0.025722101330757]],[[0.044297154992819,0.085574992001057,-0.050783850252628],[0.017105812206864,-0.0074545508250594,0.020467540249228],[0.001581440679729,-0.003641435643658,0.020213287323713]],[[0.036446277052164,-0.042379390448332,-0.053523737937212],[0.080139428377151,0.060533531010151,-0.014187999069691],[-0.024769522249699,-0.0064061493612826,0.011201170273125]],[[-0.037074081599712,0.06029786914587,-0.0055891103111207],[0.013949802145362,-0.0032522983383387,0.017091974616051],[0.04787852242589,0.0078910142183304,0.0431800596416]],[[-0.010497871786356,0.00016227534797508,0.031802672892809],[0.036191388964653,-0.0099599501118064,0.016903664916754],[0.041675064712763,0.03598565235734,0.02334208227694]],[[-0.0031978108454496,0.043153338134289,0.018128555268049],[0.012630490586162,-0.0057032117620111,-0.014646727591753],[0.0078857960179448,-0.029062377288938,0.0078358743339777]],[[0.013375046662986,0.01697950065136,-0.090643398463726],[0.00181652570609,0.010988428257406,-0.068169102072716],[-0.0044005517847836,-0.061737820506096,-0.023944370448589]],[[0.033866286277771,-0.027916427701712,0.010798620991409],[-0.011199191212654,-0.025062195956707,-0.031411614269018],[0.047537077218294,-0.032944332808256,-0.0064228270202875]],[[-0.030822958797216,-0.025195155292749,0.017304074019194],[-0.0010250393534079,-0.015035307966173,-0.012112000957131],[0.067593589425087,-0.0066841267980635,0.088599279522896]],[[0.041034705936909,0.037331335246563,-0.059582371264696],[0.024693574756384,-0.056287705898285,0.0037593757733703],[-0.032566174864769,0.011225990019739,-0.041826922446489]],[[-0.0038081130478531,-0.045177381485701,0.018111830577254],[-0.023507684469223,-0.025840306654572,-0.0091851474717259],[0.051559813320637,0.00097865401767194,-0.0095285819843411]],[[-0.056101273745298,0.0090493885800242,-0.054945036768913],[0.0060656513087451,0.0020873532630503,-0.019765920937061],[-0.030286023393273,-0.070979975163937,-0.029491357505322]],[[0.054571576416492,-0.029466446489096,-0.052280481904745],[0.017513308674097,0.10226840525866,-0.024628700688481],[0.0030872160568833,-0.018021171912551,0.048396676778793]],[[0.078054666519165,-0.046950865536928,-0.018662679940462],[-0.023033887147903,0.091351456940174,0.0072718160226941],[-0.0088155949488282,0.003175301477313,0.052255276590586]],[[-0.0043318858370185,0.021897258237004,-0.027186002582312],[0.015974678099155,-0.053752537816763,-0.054396491497755],[0.027214247733355,0.050846733152866,-0.013162644580007]],[[-0.011877953074872,-0.015454278327525,0.11364980041981],[0.079831145703793,0.14310345053673,-0.00059920019702986],[-0.14154537022114,0.067941591143608,0.057796388864517]],[[-0.0052934172563255,-0.0045477328822017,-0.0055734012275934],[0.061492223292589,0.0041492558084428,-0.024585401639342],[-0.044498067349195,-0.043829627335072,-0.013750739395618]],[[0.024849507957697,0.015558678656816,-0.013281214982271],[0.02166891284287,-0.0016510017449036,-0.032341152429581],[0.062341876327991,0.019803510978818,-0.033346366137266]],[[-0.014702003449202,0.016708629205823,-0.0641960054636],[-0.066095575690269,0.045468617230654,0.036037657409906],[0.064942181110382,0.0083116870373487,-0.064271107316017]],[[-0.062958836555481,-0.041132606565952,0.0052797677926719],[0.04327604547143,-0.077578440308571,-0.02694721147418],[-0.012461430393159,0.036560010164976,-0.054440606385469]],[[-0.091166272759438,-0.092531099915504,-0.045547004789114],[-0.036839168518782,0.02152824960649,-0.056672718375921],[-0.034183785319328,-0.0050752349197865,-0.087166592478752]],[[0.06746044754982,0.0044971932657063,-0.0096870763227344],[0.025485748425126,0.030228540301323,-0.0076939547434449],[0.0046638497151434,0.022218061611056,-0.025686597451568]],[[0.10448556393385,0.017738200724125,0.068099945783615],[0.014804468490183,0.0068132858723402,0.027753982692957],[-0.0084194671362638,-0.039375498890877,0.025270838290453]],[[-0.073298789560795,0.073609717190266,-0.043451469391584],[-0.029244130477309,-0.03013171069324,0.016809280961752],[-0.04061309620738,0.0014207722852007,-0.070257507264614]],[[0.048589035868645,-0.0600271448493,0.054952923208475],[0.075124889612198,0.0067576887086034,0.019790891557932],[0.0070460238493979,-0.059761818498373,0.041194528341293]],[[-0.00052564410725608,0.066321134567261,-0.010417265817523],[0.0031566268298775,-0.077259339392185,-0.033543083816767],[-0.0071731330826879,-0.043898411095142,-0.020608060061932]],[[0.051693689078093,-0.096759825944901,-0.013713816180825],[0.0080643324181437,-0.026943419128656,0.069318979978561],[-0.028074614703655,-0.013872398994863,-0.036973796784878]],[[0.055093601346016,-0.0013608501758426,0.032813541591167],[-0.0099363029003143,0.064816758036613,-0.10727685689926],[0.056813966482878,0.027470886707306,0.038153521716595]],[[0.048916179686785,0.039239495992661,0.050352420657873],[-0.013609076850116,0.013057135976851,0.017561059445143],[-0.0081008821725845,-0.0043348912149668,-0.0032639920245856]],[[0.10631790757179,0.031662978231907,-0.025023780763149],[0.0083577241748571,-0.0020758085884154,0.10043340921402],[0.040868937969208,-0.028388181701303,0.012841297313571]],[[-0.032894186675549,-0.0026345904916525,0.0084036979824305],[0.02338926307857,-0.0078567387536168,-0.016161089763045],[-0.017308987677097,-0.012496272101998,-0.063066214323044]],[[-0.0026537058874965,-0.021672302857041,0.0032425962854177],[-0.021378235891461,-0.030843185260892,-0.017720188945532],[-0.04583340510726,-0.006501195486635,-0.056924417614937]],[[-0.019737916067243,-0.01033294480294,-0.029271544888616],[0.030700337141752,-0.091360561549664,0.080206416547298],[0.003411823650822,0.039002168923616,-0.027258675545454]],[[0.053473256528378,-0.0058744982816279,0.0022755034733564],[0.0023150597698987,-0.025732034817338,0.027472835034132],[0.020678924396634,0.0091678956523538,0.060849562287331]],[[0.017308780923486,0.013238150626421,-0.030670374631882],[0.011721386574209,0.031834881752729,-0.0073595400899649],[0.036578264087439,0.041440967470407,-0.039817094802856]],[[-0.04076424986124,-0.018772404640913,-0.016247533261776],[-0.074038952589035,-0.04703414440155,0.03514201566577],[-0.076189048588276,-0.054931282997131,-0.052448585629463]],[[-0.0042248172685504,0.093033753335476,0.076067022979259],[0.010092140175402,0.092925831675529,0.00012283308024053],[0.069923982024193,0.047543928027153,0.030251085758209]],[[-0.061974842101336,0.029800642281771,0.073077373206615],[-0.041538570076227,0.019760215654969,0.00094680662732571],[0.0030176725704223,0.017849758267403,0.0035283286124468]],[[0.049239613115788,-0.0072832205332816,0.066311553120613],[0.001224531326443,-0.013045696541667,-0.013340118341148],[-0.007744855247438,-0.047403294593096,-0.025573130697012]],[[-0.015319858677685,0.0038637740071863,-0.0085706515237689],[-0.0075138392858207,-0.014169772155583,-0.005717589519918],[-0.034562647342682,-0.016077795997262,0.0035675407852978]],[[0.089244045317173,0.021215653046966,-0.052854549139738],[0.010252703912556,0.055769510567188,-0.0061904382891953],[-0.0065418886952102,-0.045297712087631,-0.012122724205256]],[[-0.035519927740097,0.067067071795464,0.045142978429794],[0.005018443800509,0.0017237791325897,-0.023639203980565],[0.053061123937368,0.064830735325813,0.033889945596457]],[[-0.033890172839165,0.12109311670065,-0.060166627168655],[0.032172556966543,0.012469260022044,0.041756618767977],[-0.095531135797501,0.045305676758289,0.032581735402346]],[[0.035196207463741,0.07090650498867,0.065031163394451],[0.0021456545218825,-0.060472391545773,-0.023506425321102],[-0.025858469307423,0.019359720870852,0.019221529364586]],[[0.013904522173107,-0.027479469776154,0.022058876231313],[0.0010187269654125,-0.0081546790897846,0.041512403637171],[-0.07404600828886,-0.011887137778103,-0.045186769217253]],[[0.039398472756147,0.10039322078228,-0.024480022490025],[-0.007826323620975,0.050527434796095,0.055310495197773],[0.055073726922274,0.01853346452117,0.047521021217108]],[[-0.0088901501148939,0.0052565978839993,0.042821116745472],[0.035352997481823,0.016941372305155,0.044608358293772],[0.063137911260128,-0.040481258183718,0.031720709055662]],[[-0.0061715645715594,0.086079843342304,0.096217639744282],[0.034738123416901,-0.015838311985135,0.045699246227741],[0.023929549381137,0.050071392208338,-0.024765124544501]],[[-0.064221508800983,0.030081752687693,0.083233289420605],[0.0010543727548793,0.014294428750873,-0.010712531395257],[-0.0021753264591098,0.009642880409956,-0.015727670863271]],[[0.018859991803765,-0.0052101504988968,0.025848282501101],[0.0058340332470834,0.019611272960901,-0.038586899638176],[0.024992445483804,0.047203358262777,-0.023095011711121]],[[0.040998749434948,0.067784711718559,-0.054475758224726],[0.059980623424053,0.049612998962402,0.0012606782838702],[-0.056726265698671,0.01401358935982,-0.016351917758584]],[[0.091974459588528,-0.011534504592419,-0.024567730724812],[0.0096544912084937,0.019666979089379,-0.0063626575283706],[-0.045133784413338,0.088834904134274,-0.00021341961110011]],[[0.02376040443778,0.0039821602404118,-0.032783020287752],[0.059816937893629,-0.0089014042168856,-0.0034769217018038],[-0.0012144658248872,0.060128219425678,0.028192901983857]],[[0.016668541356921,-0.018071202561259,-0.026529472321272],[0.0069904755800962,0.04420743137598,-0.015871228650212],[-0.02952503412962,-0.026835391297936,-0.017543764784932]],[[-0.00053938938071951,0.029208414256573,-0.042789530009031],[0.019851727411151,-0.031255453824997,0.041389808058739],[0.041401118040085,0.010812568478286,0.00055299297673628]],[[0.0026354533620179,-0.035059370100498,-0.01498940680176],[-0.0058601223863661,0.020165266469121,-0.032263033092022],[-0.060008928179741,-0.043666835874319,-0.032829139381647]],[[0.040182679891586,0.017920767888427,0.014284263364971],[0.045312635600567,0.052586805075407,-0.00018474020180292],[0.076868772506714,0.054929211735725,-0.0090263281017542]],[[0.0070044472813606,-0.019521100446582,0.032089866697788],[0.012006333097816,0.019982483237982,0.012694087810814],[0.037773877382278,0.10871313512325,0.038522686809301]],[[0.037569187581539,0.0061652553267777,0.031525928527117],[0.022141475230455,0.06168058142066,-0.032668821513653],[0.034166794270277,0.0256382022053,-0.049059867858887]],[[-0.047377232462168,0.0072184032760561,-0.039566654711962],[-0.040159098803997,-0.0072419145144522,0.0049789976328611],[0.016876483336091,-0.012160496786237,-0.023197693750262]],[[-0.027161478996277,-0.00018106200150214,-0.021900501102209],[-0.026156602427363,0.052297204732895,0.012362304143608],[-0.025715611875057,-0.063168868422508,0.017206739634275]],[[-0.019931795075536,0.032001420855522,-0.015079387463629],[0.036996357142925,-0.02774621732533,0.065727673470974],[-0.026497261598706,0.016124371439219,0.0039042010903358]],[[0.041567377746105,-0.086240202188492,-0.050204437226057],[0.022790284827352,-0.059402275830507,-0.015071956440806],[-0.007026391569525,-0.034942224621773,-0.03668088465929]],[[0.03285613283515,0.010619002394378,-0.0023702743928879],[0.05871219560504,0.04336467012763,0.093674585223198],[0.020914467051625,0.032192714512348,-0.055756982415915]],[[-0.023162642493844,-0.0068188169971108,0.075605802237988],[-0.033483732491732,-0.034119050949812,-0.01123074721545],[-0.018498048186302,0.016577292233706,0.0083807492628694]],[[-0.03347834944725,-0.0025783344171941,0.024501644074917],[-0.023948485031724,-0.021962219849229,0.03315407782793],[0.05090219154954,0.059461437165737,0.033641207963228]],[[0.02159370854497,-0.02108539827168,-0.036944303661585],[0.077360726892948,0.07278448343277,0.022408002987504],[0.01001937687397,0.013910063542426,-0.027306189760566]],[[-0.02237394452095,-0.069036230444908,0.0052619497291744],[0.023468708619475,-0.053351640701294,-0.013870433904231],[0.016484739258885,0.029838588088751,0.0043015512637794]],[[-0.040153991430998,-0.017892021685839,0.031196143478155],[-0.0067452159710228,-0.007179887033999,0.085737951099873],[-0.040346451103687,0.010214809328318,0.020697630941868]],[[0.030977364629507,-0.012419983744621,0.011004455387592],[-0.0308873411268,0.02996121533215,-0.026205541566014],[-0.058773051947355,0.0055618300102651,0.026946011930704]],[[0.050808899104595,0.010105723515153,0.01522527448833],[-0.029093742370605,-0.057337902486324,-0.054211419075727],[0.028646469116211,-0.05928535759449,0.033217672258615]],[[-0.046252835541964,-0.035052824765444,0.052871230989695],[0.0087426584213972,0.023953132331371,-0.016976287588477],[0.0057191923260689,-0.023020546883345,0.012565018609166]],[[-0.029690485447645,0.025528836995363,-0.10141239315271],[-0.048321381211281,-0.034203682094812,-0.031716383993626],[-0.043040242046118,-0.069708548486233,0.055381197482347]],[[-0.046134166419506,-0.0064030825160444,-0.080152489244938],[0.049011494964361,-0.05708497017622,-0.031624473631382],[-0.018895924091339,-0.0020041656680405,-0.003617481328547]],[[0.062801517546177,-0.0051396265625954,-0.025621376931667],[-0.027358205989003,-0.037393547594547,-0.030860928818583],[-0.012481903657317,-0.03000845387578,-0.010266550816596]],[[0.042077396064997,0.095464490354061,-0.0055529931560159],[0.045007694512606,0.019250467419624,0.0080676460638642],[-0.053641594946384,0.059397611767054,-0.034227378666401]],[[-0.073901198804379,0.064104720950127,-0.0054382476955652],[-0.085875689983368,-0.019205132499337,0.073992021381855],[-0.0020523665007204,-0.0064941826276481,-0.076778620481491]],[[-0.025206904858351,-0.053285796195269,0.0077203442342579],[-0.044255670160055,0.016519498080015,0.082303069531918],[-0.034921213984489,-0.066178396344185,0.0069596879184246]],[[-0.025139883160591,0.04567102715373,0.0099709155037999],[0.026866484433413,-0.07263570278883,0.024040160700679],[0.073073089122772,0.09908027946949,0.011700440198183]],[[0.010345065966249,-0.037066530436277,-0.099443048238754],[-0.055396806448698,-0.013952693901956,-0.028669949620962],[-0.021000562235713,0.0091612385585904,0.047957070171833]],[[0.015067382715642,-0.025524832308292,0.0006601107888855],[-0.07978180795908,0.0031458560843021,-0.043759204447269],[0.020390007644892,-0.010681389831007,-0.02412348613143]],[[0.023994458839297,0.0080460477620363,0.0404292345047],[-0.0074574523605406,0.017923327162862,-0.016484597697854],[-0.026181800290942,-0.026448223739862,-0.057242702692747]],[[0.037838980555534,-0.033915184438229,0.021421222016215],[0.059753086417913,-0.028706803917885,0.057789299637079],[0.026213932782412,-0.019240194931626,-0.054251112043858]],[[0.032088365405798,0.021347012370825,-0.0095057087019086],[-0.076906241476536,-0.042282689362764,-0.038782641291618],[-0.031883891671896,0.010819449089468,-0.039341758936644]],[[-0.00824267975986,-0.00092143903020769,0.029536092653871],[0.055026013404131,0.0022289925254881,-0.024992998689413],[0.049089163541794,-0.022992229089141,0.015949407592416]],[[-0.019360037520528,0.02629879117012,0.015780217945576],[0.029402997344732,0.081627294421196,-0.042167291045189],[-0.012645731680095,0.054213147610426,-0.0024656581226736]],[[0.025508856400847,0.014730873517692,-0.005888232961297],[-0.042656853795052,-0.04245375841856,-0.067311674356461],[0.018379919230938,-0.0053597292862833,-0.0030535929836333]]],[[[-0.025738015770912,-0.036867614835501,-0.13421510159969],[-0.048484396189451,0.012034215033054,-0.001522317295894],[0.06217248365283,0.0043683387339115,0.044575847685337]],[[0.025913061574101,0.0040195710025728,-0.017199473455548],[-0.081275634467602,0.082543738186359,-0.072408854961395],[0.095780298113823,-0.060979675501585,0.069669678807259]],[[0.22427798807621,0.048623163253069,-0.066082991659641],[-0.10835163295269,0.025028271600604,-0.090770870447159],[-0.035728346556425,0.039937995374203,-0.042543135583401]],[[-0.090335860848427,-0.034215230494738,-0.098239958286285],[-0.0065035349689424,0.011351292952895,0.039207495748997],[0.083681270480156,0.018587935715914,0.014127383008599]],[[0.0056503093801439,-0.053808715194464,-0.027476254850626],[-0.020445819944143,0.030389370396733,-0.092996746301651],[-0.09266109764576,-0.06699500977993,-0.055337715893984]],[[0.025680283084512,-0.093557275831699,-0.0051026679575443],[-0.065193586051464,-0.15623277425766,-0.093550615012646],[-0.042151153087616,-0.1142393797636,-0.05489644408226]],[[-0.00069507001899183,-0.043324913829565,-0.0028751862701029],[-0.10579367727041,0.0054254443384707,-0.0020742013584822],[-0.16091270744801,0.089517012238503,0.011479025706649]],[[0.019331285730004,0.0013408418744802,0.012217259034514],[0.0082220304757357,-0.03843567892909,0.027017526328564],[-0.054334342479706,0.029016273096204,-0.047040566802025]],[[0.0021014967933297,-0.043649815022945,-0.068408645689487],[-0.055225409567356,-0.0047318777069449,0.13995976746082],[-0.0014226717175916,0.067538201808929,-0.010239158757031]],[[0.063512586057186,0.14099271595478,0.040416195988655],[0.023922432214022,-0.041509807109833,0.0033065443858504],[0.077792070806026,-0.039310794323683,0.10638864338398]],[[-0.031203968450427,-0.005839588586241,0.06232663616538],[-0.015957975760102,0.021437996998429,0.035618256777525],[0.028471246361732,-0.013732145540416,-0.09603027254343]],[[-0.051319904625416,0.032899934798479,-0.027061562985182],[0.042955540120602,-0.048050817102194,0.044766340404749],[0.053348891437054,0.066946059465408,0.11446286737919]],[[0.030567284673452,0.02399580180645,-0.053872317075729],[-0.10965400934219,0.023410243913531,-0.032152358442545],[0.019123870879412,-0.041109543293715,-0.035282358527184]],[[-0.046384956687689,0.11988140642643,0.048337392508984],[-0.066954903304577,0.090637296438217,-0.049272067844868],[-0.023534974083304,-0.12256854772568,-0.063291668891907]],[[-0.17113423347473,-0.020441668108106,-0.13472203910351],[0.018029510974884,-0.13256126642227,-0.10059184581041],[0.030397120863199,-0.070964589715004,-0.07589165866375]],[[-0.064128577709198,0.045616969466209,0.058923587203026],[-0.21962247788906,-0.041819643229246,0.035530671477318],[-0.058116260915995,-0.028271228075027,-0.074416264891624]],[[0.12751975655556,0.0022123460657895,0.10021443665028],[-0.013116480782628,-0.0052131987176836,0.0027097193524241],[-0.0019969756249338,-0.064306110143661,0.026246337220073]],[[-0.024057446047664,0.022714424878359,-0.036214355379343],[0.0046446472406387,-0.039792444556952,-0.022048769518733],[0.011079285293818,-0.0083844214677811,0.082249693572521]],[[-0.063586823642254,0.10107508301735,0.044803790748119],[-0.013568270951509,0.15520647168159,0.0064597129821777],[0.08684279024601,0.0033276593312621,-0.056762181222439]],[[-0.071413107216358,-0.0065567097626626,-0.02562315389514],[-0.014132513664663,0.0031312122009695,-0.074813529849052],[-0.020652918145061,-0.036815002560616,0.067317135632038]],[[-0.0070948526263237,-0.11004913598299,-0.0039699501357973],[-0.0015157889574766,0.063642948865891,-0.072766058146954],[0.045996021479368,0.14819478988647,0.046303246170282]],[[-0.073590844869614,-0.11776336282492,0.034247044473886],[0.015973484143615,0.038533199578524,0.038833979517221],[-0.096359223127365,-0.033261459320784,0.085926547646523]],[[0.038456153124571,0.027299154549837,-0.080628007650375],[0.24285577237606,-0.010666794143617,0.019098056480289],[0.025142313912511,-0.11280772835016,-0.13752242922783]],[[-0.0030797999352217,-0.029116978868842,0.044666547328234],[0.0070499791763723,0.15070371329784,-0.11878400295973],[-0.021625686436892,-0.021777624264359,-0.026657395064831]],[[0.023037603124976,0.025468423962593,0.05007791146636],[-0.022728649899364,0.19425210356712,-0.010477477684617],[0.09384524077177,0.010316368192434,0.18515411019325]],[[-0.021803345531225,-0.039300374686718,0.010654168203473],[0.0053964438848197,-0.16747960448265,0.010515030473471],[0.091547578573227,0.0057147382758558,-0.05878622084856]],[[-0.069678723812103,0.0087662227451801,-0.030903667211533],[-0.039255931973457,-0.042086753994226,-0.011048726737499],[-0.065342858433723,-0.083014406263828,-0.021476911380887]],[[-0.17605011165142,0.011602279730141,0.062812753021717],[-0.1187461540103,-0.13546538352966,0.097612522542477],[-0.043113283813,-0.1605074852705,0.005483428016305]],[[-0.13476131856441,0.066681586205959,-0.016268054023385],[-0.18126598000526,-0.0081961303949356,-0.034932721406221],[-0.063293367624283,-0.031865268945694,-0.0039772861637175]],[[-0.14113043248653,-0.015128859318793,-0.06013673171401],[-0.034000180661678,0.0030398641247302,-0.12337867170572],[0.069956913590431,-0.071664676070213,-0.11693624407053]],[[-0.0085981488227844,-0.01640547811985,-0.1783782094717],[-0.021110478788614,-0.023612279444933,-0.095217168331146],[0.070434778928757,-0.028917886316776,-0.058085456490517]],[[0.072853796184063,-0.12860757112503,-0.031916506588459],[0.052498590201139,0.054557323455811,0.014617650769651],[0.056388232856989,0.048716433346272,0.049358267337084]],[[-0.0071484413929284,-0.002483029384166,0.016632240265608],[0.06759886443615,0.088783457875252,-0.0034719838295132],[0.067895032465458,-0.12433434277773,0.08550738543272]],[[0.017747553065419,-0.033697620034218,-0.065106362104416],[0.12019004672766,-0.10331477969885,-0.013350976631045],[0.038338992744684,0.03120331466198,-0.03744737803936]],[[-0.021853996440768,0.0048472695052624,0.040873970836401],[-0.03193823620677,-0.014260572381318,-0.044891282916069],[-0.16371813416481,0.0071525522507727,0.017012478783727]],[[-0.0080060912296176,0.0066985422745347,-0.0064342780970037],[-0.16520573198795,0.014692010357976,-0.033244621008635],[-0.086109936237335,0.045806419104338,0.031904608011246]],[[0.04577063024044,0.022745871916413,-0.10943516343832],[0.055244032293558,-0.011724246665835,-0.10110931843519],[0.0019042773637921,0.0050272033549845,-0.0066184364259243]],[[-0.11840312927961,0.14442433416843,0.068964920938015],[-0.106281273067,-0.10066015273333,0.046727728098631],[-0.092273399233818,-0.029728507623076,-0.015014987438917]],[[0.047853861004114,-0.073369182646275,-0.059674695134163],[0.086830869317055,0.16647318005562,0.049423731863499],[0.014504569582641,0.011826151050627,0.023707423359156]],[[0.00084770447574556,-0.017128653824329,0.01494328211993],[0.016562866047025,0.04538806155324,0.037378989160061],[0.10087438672781,0.13645148277283,0.14000670611858]],[[0.085739031434059,0.10558548569679,0.048816293478012],[0.012461756356061,0.0024203443899751,0.0691157579422],[0.0048938347026706,0.057011198252439,-0.11022792756557]],[[-0.0068057384341955,0.0099886395037174,-0.0053703719750047],[0.021464401856065,0.061839211732149,-0.066370770335197],[0.1219078078866,-0.00049077050061896,-0.01680420152843]],[[0.028854290023446,0.1355482339859,-0.0088444044813514],[-0.0036874650977552,-0.039669964462519,-0.067228890955448],[0.10743870586157,-0.028388565406203,-0.032044034451246]],[[-0.0544308796525,-0.065510369837284,-0.012139092199504],[-0.0082799140363932,-0.030913472175598,0.031487289816141],[0.014539200812578,-0.03631766885519,-0.025344533845782]],[[-0.094845160841942,-0.029617164283991,0.065770365297794],[-0.05252380669117,0.09119126945734,-0.054594278335571],[-0.14198635518551,-0.11211456358433,0.014143943786621]],[[0.0055880420841277,0.06266475468874,0.024529941380024],[-0.026840858161449,0.017833389341831,0.055954713374376],[-0.053310342133045,0.0049819233827293,-0.021760631352663]],[[-0.0024879728443921,-0.071072123944759,0.04110075160861],[0.0094034718349576,-0.097229577600956,-0.022328834980726],[0.041719228029251,-0.075832799077034,0.069028407335281]],[[-0.011600733734667,0.0067722513340414,0.058588795363903],[-0.080109044909477,0.0064766737632453,0.065788216888905],[-0.033473148941994,-0.055665999650955,0.071337707340717]],[[-0.14131885766983,0.026485437527299,-0.03969819098711],[0.0086220866069198,-0.018634950742126,0.060768511146307],[-0.042197030037642,-0.010698989033699,0.011844218708575]],[[0.022794548422098,0.037893489003181,-0.028156822547317],[0.14721511304379,0.014251940883696,-0.0062614879570901],[-0.020484419539571,0.0018561335746199,-0.025606594979763]],[[0.016001414507627,0.055721260607243,-0.044552505016327],[-0.087430655956268,-0.051113735884428,-0.034512065351009],[-0.035261813551188,-0.040033437311649,-0.037934962660074]],[[0.07593896985054,0.048207223415375,-0.055486127734184],[-0.00012484029866755,0.0625324472785,0.13107784092426],[-0.0014393450692296,0.02017267793417,-0.0089606251567602]],[[0.014436577446759,-0.011665115132928,-0.061250910162926],[-0.067181840538979,-0.022916810587049,-0.086016140878201],[-0.13306795060635,-0.014937757514417,-0.049841336905956]],[[0.12862205505371,0.032828472554684,-0.051840882748365],[-0.090932719409466,-0.046376410871744,-0.00022792733216193],[-0.0011253743432462,-0.039111200720072,-0.11086887866259]],[[0.088204242289066,0.07219160348177,0.010246533900499],[-0.024797355756164,0.14127461612225,0.018060581758618],[-0.041270926594734,0.00015720271039754,-0.091616697609425]],[[0.25028961896896,0.05347029492259,-0.028464309871197],[0.067465901374817,0.055136639624834,0.023222951218486],[0.017268776893616,0.034098252654076,-0.1624353826046]],[[-0.043288312852383,0.06483543664217,0.034150268882513],[0.021820517256856,-0.10227106511593,-0.016653746366501],[-0.032589368522167,0.018743617460132,0.064989052712917]],[[0.072097323834896,-0.020732507109642,-0.067257605493069],[0.021740822121501,0.056336205452681,0.01434079837054],[-0.019606990739703,0.0093635516241193,-0.14453300833702]],[[-0.020221576094627,0.03054091706872,0.0068992883898318],[-0.016169345006347,0.00030726674594916,0.018035028129816],[-0.0068353707902133,0.081474587321281,-0.067556157708168]],[[0.082529939711094,0.02321770042181,0.0278250426054],[0.090935170650482,0.12022081017494,0.10477145761251],[0.13815398514271,-0.02434841170907,0.0043511586263776]],[[0.015865825116634,-0.077138744294643,0.045740853995085],[0.10165727883577,-0.11774311959743,-0.11005851626396],[0.045691560953856,0.033675145357847,0.030579211190343]],[[0.013241343200207,-0.03042801655829,0.15874905884266],[-0.15999838709831,0.090365707874298,-0.016630787402391],[0.016214778646827,-0.0022044037468731,-0.045416168868542]],[[-0.019458461552858,0.03001044690609,-0.13080820441246],[-0.055149652063847,-0.017642334103584,-0.049795109778643],[0.028519691899419,0.00075228873174638,0.16732004284859]],[[0.0020584519952536,0.096663065254688,-0.047237746417522],[0.027714889496565,0.11266412585974,0.028688063845038],[0.043239131569862,-0.044346805661917,0.033936873078346]],[[-0.018955010920763,-0.017942756414413,0.0018021749565378],[0.025277014821768,0.067881792783737,0.075423926115036],[0.049836724996567,-0.056001000106335,0.011233870871365]],[[-0.072535656392574,-0.045227136462927,-0.11096236109734],[-0.060562539845705,-0.020162604749203,-0.12339574098587],[0.0039873295463622,-0.0017310965340585,0.0089238006621599]],[[-0.088547967374325,0.07413013279438,0.14730662107468],[-0.088963776826859,0.051519118249416,-0.00012054698891006],[0.054631590843201,-0.043326511979103,-0.064842335879803]],[[0.0031294929794967,0.2817163169384,0.17425182461739],[-0.036950197070837,0.14755839109421,0.1914242208004],[0.092588476836681,0.1091617718339,0.062217064201832]],[[0.056517269462347,1.8682223526412e-05,0.035851743072271],[-0.053055852651596,-0.029448352754116,-0.0068013365380466],[0.087092146277428,0.030739795416594,0.007884806022048]],[[0.099720917642117,0.046630859375,0.051885012537241],[-0.12127432972193,0.19749888777733,0.1011775881052],[0.076431125402451,-0.082053206861019,0.021722367033362]],[[-0.023255594074726,-0.096008442342281,-0.016436407342553],[0.066008895635605,-0.021782800555229,-0.037029799073935],[0.0098766619339585,0.059762679040432,-0.029289849102497]],[[-0.15692828595638,-0.014407495968044,0.00085632904665545],[-0.051906950771809,-0.045667987316847,-0.049264442175627],[-0.065829873085022,0.018124105408788,0.083501197397709]],[[0.061090052127838,-0.026841508224607,0.0078307762742043],[-0.13305197656155,-0.077920772135258,-0.034713804721832],[0.097683608531952,0.022143322974443,0.060947515070438]],[[-0.053679168224335,-0.044139094650745,-0.069974847137928],[0.25939399003983,-0.051970355212688,0.011038089171052],[0.12768061459064,0.20928710699081,0.054539028555155]],[[-0.00059104431420565,-0.046597149223089,-0.030251236632466],[-0.085059486329556,0.013601184822619,0.041471723467112],[-0.041473187506199,0.085464105010033,-0.023784052580595]],[[-0.0027441980782896,0.013215986080468,0.033765725791454],[-0.0078250737860799,-0.27361705899239,0.0039691249839962],[0.053049683570862,-0.073577031493187,-0.018316082656384]],[[-0.069807253777981,-0.038429472595453,-0.033640250563622],[-0.070046581327915,0.062476187944412,-0.014543241821229],[0.010415733791888,-0.087940528988838,0.059077072888613]],[[0.058057472109795,-0.0010663303546607,0.014864638447762],[0.0079308180138469,0.0095682675018907,-0.055051308125257],[0.011797583661973,0.058312941342592,0.040645446628332]],[[-0.065850555896759,0.051824633032084,0.04453656449914],[-0.045459255576134,-0.0083660548552871,0.07709775865078],[-0.052919983863831,0.12651154398918,0.053698878735304]],[[-0.104476518929,0.026800835505128,-0.027919234707952],[-0.00072296010330319,0.06109369918704,0.00503795966506],[0.082912385463715,-0.00018402858404443,0.038970571011305]],[[0.12000243365765,-0.030397599563003,-0.082973822951317],[-0.017602000385523,-0.010735589079559,0.056489951908588],[-0.088374517858028,-0.063157275319099,0.042936593294144]],[[-0.025745648890734,0.044308722019196,0.090718418359756],[0.025588646531105,-0.039480615407228,-0.024291209876537],[-0.096368253231049,-0.084797278046608,0.031807497143745]],[[-0.0015878697158769,0.0071398457512259,0.041840683668852],[-0.013497923500836,-0.0066584874875844,-0.00053018337348476],[-0.079077124595642,0.0032288825605065,0.10867307335138]],[[0.16374143958092,0.079161413013935,-0.011165051721036],[0.045428648591042,0.10100428760052,0.048878222703934],[0.049179449677467,-0.010732581838965,0.018947320058942]],[[-0.030703542754054,0.045647636055946,0.0049319295212626],[0.18040402233601,-0.0049239862710238,0.029754454270005],[0.061647672206163,-0.009326284751296,0.027408821508288]],[[-0.020357243716717,0.046615734696388,-0.02264210395515],[0.037482887506485,0.029344707727432,-0.068608924746513],[0.010608985088766,-0.027661390602589,-0.049199238419533]],[[-0.067809276282787,0.028006915003061,0.046407446265221],[0.041769746690989,-0.044729493558407,0.073291793465614],[0.096932381391525,0.054419189691544,0.050777297466993]],[[0.0061686271801591,-0.0001130002856371,-0.15479728579521],[-0.048561900854111,-0.10002118349075,-0.033215828239918],[-0.11953721195459,-0.064063303172588,0.052095040678978]],[[-0.054965123534203,0.0037381446454674,-0.0062558804638684],[0.051808249205351,-0.062752336263657,-0.08633828163147],[0.038360524922609,-0.094644293189049,0.0197160448879]],[[-0.0225471816957,-0.17123997211456,0.052502535283566],[-0.031249888241291,-0.019148802384734,0.038286715745926],[-0.0017291253898293,-0.053429502993822,0.0042659556493163]],[[-0.015648707747459,-0.09103986620903,-0.021870665252209],[0.17580880224705,0.050502173602581,0.044420447200537],[0.042781725525856,0.0033410754986107,0.20802293717861]],[[0.024981424212456,-0.0091858757659793,0.0044178385287523],[0.062975317239761,-0.0094720665365458,-0.10285349190235],[-0.17669945955276,-0.074099443852901,-0.049873761832714]],[[-0.1045887991786,0.0067636366002262,0.048656944185495],[-0.060143042355776,0.011184133589268,-0.042171105742455],[-0.089430004358292,-0.0097479810938239,0.076410934329033]],[[-0.043468613177538,0.074355587363243,0.095466434955597],[0.023274188861251,0.070817083120346,0.061629988253117],[-0.026805324479938,-0.079444289207458,0.04440937936306]],[[0.03073481656611,-0.052500452846289,-0.080375447869301],[-0.048779178410769,0.051582030951977,-0.0634730681777],[0.0035932154860348,0.012290900573134,0.018064452335238]],[[0.055815823376179,-0.018835861235857,0.0015083663165569],[-0.10564479231834,-0.029709195718169,0.0028065347578377],[-0.087853066623211,0.00098798144608736,0.11615569889545]],[[0.15781328082085,0.054975345730782,-0.11525182425976],[0.0044880658388138,0.030740544199944,-0.041311539709568],[0.049343951046467,-0.029523391276598,0.0031319679692388]],[[-0.018153695389628,0.081568509340286,-0.015352753922343],[-0.0018336767097935,-0.013875884003937,-0.033483982086182],[0.06623050570488,0.020589044317603,-0.025819750502706]],[[0.0056155733764172,0.0034147317055613,-0.032894298434258],[-0.023055406287313,0.015488429926336,0.14685845375061],[0.0583635866642,-0.018898425623775,-0.0096133276820183]],[[0.11994232982397,-0.016431525349617,-0.058148551732302],[0.00025434885174036,0.0036418680101633,0.039395306259394],[-0.025325451046228,0.01704921014607,-0.10857639461756]],[[-0.021724589169025,-0.060903239995241,-0.060942426323891],[0.064334146678448,-0.029380554333329,-0.023375419899821],[-0.057385984808207,0.010471074841917,-0.029890285804868]],[[-0.012230057269335,0.074578322470188,0.11218235641718],[-0.011899527162313,-0.068111293017864,-0.067396827042103],[0.18412767350674,0.11429517716169,0.03301590681076]],[[-0.16056482493877,-0.015184475108981,0.0023523033596575],[-0.072924368083477,-0.094566948711872,-0.033262055367231],[0.089254580438137,-0.087219834327698,-0.055675994604826]],[[0.16703501343727,-0.14514183998108,-0.070922449231148],[0.01786564104259,0.026797242462635,0.0071214833296835],[-0.026402762159705,0.056808661669493,0.12026570737362]],[[-0.12200129777193,0.062780559062958,0.051995579153299],[-0.067205540835857,0.0086144609376788,0.053340066224337],[0.0055101509205997,0.013871400617063,-0.0039616846479475]],[[-0.03365420550108,0.10675447434187,0.051575616002083],[-0.057175494730473,-0.098007924854755,0.058133862912655],[-0.070547290146351,-0.0335628464818,0.070796146988869]],[[0.0092244129627943,0.0022083180956542,-0.010809882543981],[-0.017406638711691,0.044600196182728,0.010740105062723],[-0.00015179086767603,-0.070497266948223,0.0094023151323199]],[[-0.056081913411617,0.032437410205603,-0.14251188933849],[-0.031283058226109,-0.052540175616741,-0.07124424725771],[0.11397383362055,0.0067910202778876,0.046454284340143]],[[0.0031456153374165,0.0494593270123,0.085451774299145],[0.025038504973054,-0.033348765224218,0.020778579637408],[-0.0040820124559104,0.049374144524336,-0.11074969172478]],[[0.038541801273823,0.030947277322412,-0.0552091114223],[0.064026810228825,-0.064268968999386,0.0026966750156134],[0.083711728453636,-0.061158560216427,0.046155627816916]],[[-0.031951997429132,-0.053984049707651,-0.082008339464664],[-0.10468254983425,-0.01507103163749,-0.059513382613659],[-0.089054502546787,-0.070377252995968,0.040428124368191]],[[-0.052619107067585,-0.18582664430141,-0.081146791577339],[0.049953475594521,-0.13292507827282,-0.16018456220627],[-0.045308951288462,0.038404822349548,-0.02148612588644]],[[-0.0042947065085173,-0.00096450193086639,-0.0048421509563923],[0.013887368142605,0.1352097094059,0.21106651425362],[-0.10542258620262,-0.0065830373205245,0.11352046579123]],[[-0.025344524532557,0.012619443237782,-0.014324164949358],[0.00027269462589175,-0.013288461603224,0.0028225092682987],[0.0020392825827003,0.01515382155776,-0.029782405123115]],[[0.015706097707152,-0.0029128382448107,0.022484183311462],[0.029918210580945,0.036767452955246,-0.0036042311694473],[-0.039897337555885,0.085737407207489,-0.018745996057987]],[[-0.17042690515518,-0.11311188340187,-0.0059365201741457],[0.034059584140778,0.019274111837149,0.0075180022977293],[0.0071966871619225,-0.08020993322134,-0.052301187068224]],[[-0.080600067973137,-0.010128472931683,0.036196101456881],[-0.042602840811014,0.0060546020977199,0.050804227590561],[-0.098318412899971,-0.060641977936029,0.13784795999527]],[[0.0029644793830812,-0.039309825748205,-0.0025497565511614],[-0.029235150665045,0.054412867873907,-0.057688925415277],[-0.097429014742374,-0.06437274813652,0.084856569766998]],[[0.0018729479052126,-0.10927247256041,-0.20935140550137],[0.010809388943017,-0.071505703032017,-0.10552296042442],[0.020842978730798,0.099032215774059,0.030214721336961]],[[0.15297104418278,0.15030337870121,0.12031376361847],[-0.066294424235821,-0.077254943549633,-0.01702026091516],[0.0255704279989,0.016203247010708,-0.06129352375865]],[[-0.10967530310154,-0.15108954906464,0.0051062442362309],[-0.0081790275871754,-0.11174970120192,-0.039613738656044],[-0.037105109542608,0.020596660673618,-0.048365313559771]],[[-0.094087593257427,-0.079148083925247,-0.011515351012349],[-0.063082039356232,-0.058591950684786,-0.020690426230431],[-0.012447793968022,-0.035070318728685,0.021608371287584]],[[0.13471195101738,-0.094528697431087,0.054144851863384],[0.029865030199289,0.094539850950241,0.10895920544863],[0.0093132900074124,0.044099889695644,-0.11238159239292]],[[0.013031935319304,-0.058476898819208,-0.012940614484251],[-0.032065786421299,0.0086308792233467,-0.091000862419605],[0.076057866215706,-0.029416970908642,-0.015169569291174]],[[-0.0091947624459863,-0.033100202679634,-0.064918398857117],[0.05018300563097,0.11517757922411,0.048341002315283],[-0.083748653531075,-0.032888364046812,0.071709059178829]],[[0.09666658192873,0.060369748622179,0.11735076457262],[0.026339285075665,-0.051356803625822,0.0039966958574951],[0.055853106081486,0.040872011333704,0.01296694856137]],[[0.080151103436947,-0.070441469550133,-0.043507605791092],[0.01518047042191,-0.020238976925611,-0.073964513838291],[0.070054195821285,-0.045200858265162,-0.038970895111561]],[[-0.11613803356886,-0.047581892460585,0.050260912626982],[0.025955386459827,-0.036168251186609,-0.089960269629955],[0.011486765928566,0.041285883635283,-0.013777485117316]]],[[[0.014119261875749,0.063742764294147,0.040881879627705],[0.057662449777126,-0.0033108964562416,0.066400833427906],[0.029207114130259,0.081350773572922,0.042245343327522]],[[-0.019574539735913,0.089475229382515,-0.006945984903723],[0.061572507023811,0.02425548247993,-0.058322589844465],[-0.03291055560112,0.033353384584188,-0.012008829973638]],[[-0.066640265285969,0.087189137935638,-0.02315884642303],[-0.035991985350847,0.063405252993107,0.0015481757000089],[-0.041497554630041,0.018377836793661,-0.016944421455264]],[[0.024437461048365,0.012115604244173,-0.0140221118927],[0.022578062489629,0.023145643994212,0.05438319593668],[0.026980238035321,0.059514418244362,-0.03914063051343]],[[0.015008471906185,0.087878547608852,0.018692765384912],[0.036958128213882,0.053365305066109,0.066868327558041],[-0.015020294114947,0.0057836631312966,-0.02337090857327]],[[0.021651543676853,-0.014318322762847,0.012162871658802],[-0.024742001667619,0.10050334781408,0.032939042896032],[-0.019219873473048,0.11214497685432,-0.010838200338185]],[[-0.036008130759001,-0.053632665425539,-0.044451039284468],[-0.048005901277065,0.039255231618881,-0.03951657935977],[-0.010630852542818,0.11569457501173,0.020538194105029]],[[-0.021921375766397,0.066528350114822,0.012805571779609],[0.057432740926743,-0.029544619843364,0.061856649816036],[0.020768752321601,-0.052515491843224,0.0050265872851014]],[[0.019185056909919,0.028581628575921,-0.0099793802946806],[0.099376365542412,0.075132302939892,0.04378167539835],[-0.030461316928267,0.065918557345867,-0.066882982850075]],[[0.022567642852664,-0.01158238388598,-0.036137830466032],[-0.012487432919443,0.010259663686156,-0.033223517239094],[-0.000900131999515,-0.025467440485954,0.040282733738422]],[[0.031301364302635,-0.012726273387671,0.027577908709645],[-0.0076839081011713,-0.027290739119053,-0.0081719299778342],[0.041238289326429,-0.009411889128387,0.0051167397759855]],[[0.016687052324414,0.068558387458324,-0.0022123423404992],[-0.016424834728241,0.01062451954931,0.033125255256891],[0.038297183811665,-0.028827516362071,0.010426525957882]],[[0.049312453716993,0.042161177843809,0.061218183487654],[-0.040685944259167,0.0022278670221567,-0.03466072678566],[-0.08064004778862,0.039176858961582,0.0016931593418121]],[[-0.023684680461884,-0.036089535802603,-0.068824537098408],[-0.017821073532104,-0.055630676448345,-0.000298064929666],[-0.0019382752943784,0.010393702425063,0.027752922847867]],[[-0.05102326348424,0.023967375978827,0.059640094637871],[0.042178303003311,-0.029378619045019,0.028539691120386],[-0.10005221515894,0.085242092609406,0.018305337056518]],[[-0.031061185523868,0.017722353339195,0.047060545533895],[0.0096535896882415,-0.001905350596644,-0.021791910752654],[0.054570700973272,-0.0094755822792649,0.03656067699194]],[[0.00096560607198626,0.082758344709873,-0.072324246168137],[-0.00049822201253846,-0.027183853089809,0.0060627516359091],[0.068485990166664,-0.033703219145536,-0.0081734256818891]],[[-0.092504136264324,-0.030038848519325,-0.059388384222984],[0.016442922875285,-0.017483463510871,-0.051626328378916],[0.031504929065704,0.011309438385069,0.015407542698085]],[[0.0307986009866,0.033576283603907,-0.052511882036924],[0.022679137066007,0.019985042512417,-0.0039120777510107],[0.04906340315938,-0.0051938011310995,-0.019039725884795]],[[0.044238094240427,-0.093179062008858,0.031465355306864],[-0.045799307525158,-0.070044279098511,-0.0079092476516962],[0.017840029671788,-6.2553837778978e-05,0.087262101471424]],[[-0.028898084536195,-0.039555244147778,0.037373561412096],[-0.0017775635933504,-0.016321528702974,-0.018183466047049],[-0.059846170246601,0.0045249750837684,-0.0096139516681433]],[[0.029313111677766,-0.063531048595905,0.049454621970654],[0.039296071976423,0.024881577119231,0.0091912569478154],[0.018172631040215,0.0073512885719538,0.041562475264072]],[[0.001255196868442,-0.038429420441389,0.061702631413937],[0.040505517274141,-0.039255067706108,-0.028343964368105],[-0.00539680570364,0.040209129452705,0.021139228716493]],[[0.014020268805325,0.029450904577971,-0.023032683879137],[0.022596130147576,0.027932468801737,0.029012216255069],[-0.02106586098671,-0.01807395555079,-0.034069266170263]],[[0.13453832268715,-0.10296516865492,0.011832691729069],[0.011096223257482,-0.089139960706234,-0.049025736749172],[0.073794215917587,-0.048336610198021,-0.028358360752463]],[[-0.0084434039890766,0.018828965723515,0.13103897869587],[0.048992574214935,-0.022425280883908,-0.075212761759758],[-0.011746036820114,0.048341356217861,0.059893775731325]],[[0.10783982276917,0.056589215993881,0.03980516269803],[0.01457448489964,0.08781424164772,0.022862393409014],[0.069118410348892,-0.042085133492947,-0.016906470060349]],[[-0.028711747378111,-0.0072898771613836,0.058289714157581],[0.020824581384659,-0.021171348169446,-0.0087829753756523],[0.03229296207428,-0.035742454230785,0.034906905144453]],[[-0.023398408666253,0.0037444795016199,0.0029012965969741],[0.011781487613916,-0.033714260905981,-0.017389573156834],[0.029540689662099,-0.018527414649725,0.068834207952023]],[[-0.023330120369792,0.038847487419844,-0.022386770695448],[0.026242665946484,-0.08267392963171,0.045229312032461],[0.036827709525824,0.037800204008818,0.020268365740776]],[[-0.021297758445144,0.04588621109724,0.01054572686553],[-0.0650315284729,0.060118462890387,0.034368630498648],[0.039771173149347,-0.014781991019845,0.04142177477479]],[[-0.037123769521713,0.013957053422928,-0.0056801317259669],[0.036296684294939,0.055878397077322,0.031728729605675],[0.065590254962444,0.050853967666626,0.013409695588052]],[[0.00085637078154832,0.11114259809256,-0.073366977274418],[-0.055198717862368,0.033484719693661,-0.021541697904468],[0.016029497608542,-0.020920030772686,0.10457469522953]],[[0.07876343280077,0.031406961381435,0.018829984590411],[0.078138664364815,-0.017671458423138,0.05121286958456],[-0.016019705682993,-0.06447272002697,-0.0053264042362571]],[[-0.0069340444169939,0.0015325795393437,-0.0031446251086891],[0.031540364027023,0.024076281115413,-0.030394835397601],[-0.010606060735881,0.029316479340196,-0.0072693866677582]],[[0.050454713404179,-0.0061805373989046,-0.031085172668099],[-0.055378548800945,0.055561110377312,0.040223699063063],[0.001118263695389,0.0014059870736673,0.012872826308012]],[[-0.033379882574081,0.057686392217875,0.052520178258419],[0.03159111738205,0.022617416456342,0.022126108407974],[-0.055231649428606,-0.068782716989517,0.033838946372271]],[[-0.022279156371951,-0.010969780385494,0.0029786475934088],[-0.010665792971849,-0.039949044585228,-0.051893420517445],[-0.010084786452353,0.0048034097999334,-0.010119092650712]],[[0.02367926761508,-0.0067190923728049,0.005590979475528],[0.047630321234465,0.035871397703886,0.008156013675034],[0.015102044679224,-0.0092300018295646,-0.0028270818293095]],[[-0.047077659517527,0.0029405497480184,0.023673534393311],[-0.02970383502543,0.0027420383412391,0.001164342276752],[-0.020459135994315,0.032653007656336,-0.032177034765482]],[[-0.04752229526639,-0.038388479501009,0.063341781497002],[0.011977925896645,0.024571865797043,0.05727206543088],[0.056578315794468,0.0054625207558274,-0.012272937223315]],[[-0.0015476737171412,0.10746335983276,0.049685403704643],[0.082572519779205,0.055809903889894,-0.00067519705044106],[-0.0033001122064888,0.038880411535501,0.10972797870636]],[[0.093706458806992,0.012431027367711,0.071236193180084],[0.14055828750134,0.021890550851822,-0.028191925957799],[0.02415132522583,0.070486560463905,0.11401863396168]],[[-0.065174110233784,0.0068495953455567,-0.030019836500287],[-0.045168347656727,0.028712483122945,0.064523287117481],[0.070540152490139,-0.021532513201237,0.02476885356009]],[[-0.009662227705121,-0.015175007283688,0.035623006522655],[0.020649136975408,0.0071051400154829,-0.02342171408236],[-0.01218434330076,0.0025344283785671,0.01668606325984]],[[0.0033324297983199,0.087890975177288,0.10199436545372],[0.10864285379648,0.054031521081924,0.0039320648647845],[0.043137490749359,0.05259208008647,-0.0036335762124509]],[[0.0016219477402046,-0.069286324083805,-0.02321744710207],[0.045780904591084,0.019221885129809,0.05889979377389],[-0.01153973583132,-0.032719019800425,0.013299748301506]],[[-0.042774762958288,0.051016610115767,-0.031670514494181],[0.00076002790592611,-0.017637491226196,-0.0082742944359779],[-0.066334880888462,-0.084884002804756,0.056575622409582]],[[-0.030810862779617,0.0028827427886426,0.029848422855139],[0.035384461283684,0.006617147475481,0.051175765693188],[-0.041649967432022,0.01794939301908,-0.015992403030396]],[[-0.054248254746199,0.0099608488380909,0.037965640425682],[0.0099345911294222,-0.014991384930909,-0.016037251800299],[-0.087998889386654,-0.019841143861413,-0.015836369246244]],[[-0.00084794568829238,0.01044397521764,0.012252137064934],[-0.0061816368252039,-0.010033819824457,0.049888905137777],[0.0090809119865298,-0.01292937528342,0.010652332566679]],[[-0.03783805668354,0.0034997046459466,-0.063377745449543],[0.018689559772611,0.048935241997242,0.0047677676193416],[0.00098789541516453,0.012673988007009,0.018132653087378]],[[-0.0042438302189112,0.070348158478737,-0.031708102673292],[-0.03666951879859,-0.05137399956584,-0.027727980166674],[0.026657810434699,-0.013850457966328,-0.05586140230298]],[[0.0054874364286661,-0.0016887617530301,0.0086242808029056],[-0.01025483943522,0.028840133920312,0.063721425831318],[0.058691907674074,-0.010540628805757,-0.016579894348979]],[[0.014959749765694,0.026122465729713,0.050368256866932],[0.045806244015694,-0.022198768332601,-0.053270731121302],[-0.068405278027058,-0.049828507006168,-0.038524217903614]],[[0.022969936951995,-0.061392556875944,0.03296497091651],[-0.04556654766202,-0.072863705456257,-0.024332031607628],[-0.00055117107694969,0.038866728544235,-0.0037813591770828]],[[0.044807065278292,-0.013195474632084,0.021137608215213],[-0.017913078889251,-0.031128654256463,-0.00091999321011826],[-0.0029685951303691,0.080073654651642,-0.027923034504056]],[[0.055021710693836,-0.015031883493066,-0.014174349606037],[-0.077822908759117,0.0070133688859642,0.06873045116663],[0.027026316151023,-0.024436274543405,-0.049207136034966]],[[0.04644962400198,-0.019691461697221,0.085461892187595],[0.035333931446075,-0.022708730772138,0.09568527340889],[-0.028496185317636,-0.022313369438052,-0.008786098100245]],[[-0.039971020072699,-0.054289523512125,-0.045995842665434],[0.0021134074777365,-0.058255270123482,-0.050456788390875],[-0.042897026985884,-0.01994251832366,0.10635776817799]],[[-0.0012350748293102,-0.012379510328174,0.049730949103832],[0.010920426808298,-0.064261227846146,0.057066652923822],[-0.0093202935531735,-0.018411602824926,0.020691258832812]],[[0.021429114043713,0.049360394477844,0.11278726905584],[-0.019750151783228,-0.019816363230348,-0.021344376727939],[-0.059420257806778,0.010918578132987,0.0086140586063266]],[[-0.070554651319981,0.03826492279768,0.029737638309598],[0.041018888354301,0.069244921207428,0.021853609010577],[0.01247678603977,0.075793914496899,0.016948902979493]],[[0.084290347993374,0.029344860464334,0.072227738797665],[-0.032001577317715,0.0058025256730616,0.037890397012234],[0.0082639129832387,0.039965208619833,0.030753100290895]],[[-0.036431558430195,0.052856057882309,0.016695823520422],[-0.026306351646781,-0.00093350186944008,-0.07550610601902],[0.061407539993525,-0.0334761030972,-0.017814662307501]],[[0.042027935385704,0.03683190792799,0.0094802640378475],[-0.015987411141396,-0.057588126510382,-0.0055334712378681],[0.018495650961995,0.046796582639217,0.044973839074373]],[[-0.0048090685158968,0.040529474616051,-0.0051927119493484],[0.023095218464732,-0.028429431840777,0.016886986792088],[-0.021839780732989,-0.070758238434792,0.045558135956526]],[[0.055984795093536,0.043928608298302,0.017343748360872],[-6.9437061029021e-05,0.075625248253345,0.061564203351736],[0.037272702902555,-0.01885505579412,-0.0027738097123802]],[[0.063924558460712,0.059318024665117,-0.0029634959064424],[0.038646418601274,-0.041183594614267,-0.031784195452929],[0.036485597491264,0.064467884600163,-0.027361648157239]],[[0.090833641588688,0.012809972278774,0.035295967012644],[0.044684909284115,0.020873855799437,0.040225028991699],[3.7589652492898e-05,0.065627075731754,0.017533093690872]],[[0.081917822360992,-0.040678534656763,0.027270900085568],[-0.052267596125603,-0.085687480866909,0.045710511505604],[0.012136237695813,0.033236112445593,0.0033505123574287]],[[0.032085504382849,0.033186417073011,-0.0042365174740553],[-0.080766193568707,-0.021631551906466,0.029385795816779],[0.0098760453984141,-0.033072505146265,0.028358187526464]],[[-0.073007270693779,0.0053513939492404,-0.020108055323362],[-0.0054949945770204,-0.030105993151665,-0.018614606931806],[-0.065283887088299,-0.044949114322662,0.012675707228482]],[[0.042171806097031,0.013501229695976,-0.036099322140217],[-0.019089372828603,0.10374931246042,0.089648276567459],[-0.054139785468578,-0.038387853652239,0.057770729064941]],[[-0.065196000039577,-0.0092643955722451,-0.019117744639516],[0.035512570291758,0.04526075348258,-0.022335227578878],[0.033327341079712,0.013811499811709,-0.034248605370522]],[[-0.027954751625657,0.032039187848568,0.02137279137969],[0.039345607161522,0.034821718931198,-0.029962493106723],[0.11823577433825,0.073045201599598,0.015894873067737]],[[0.038330890238285,0.018706545233727,0.070641338825226],[0.053035967051983,0.0056696287356317,-0.021226339042187],[-0.0028423513285816,0.017528714612126,0.01524340454489]],[[0.040192093700171,0.029329100623727,-0.033931396901608],[0.055070366710424,0.017706755548716,-0.01058641448617],[0.047213602811098,0.043919861316681,-0.0022655646316707]],[[0.022790297865868,0.012630415149033,-0.043159976601601],[-0.089282013475895,0.0084606455639005,-0.03577821329236],[-0.030492972582579,0.037607297301292,0.097978718578815]],[[-0.028890255838633,-0.053110059350729,0.0085426429286599],[0.021592143923044,-0.032478280365467,-0.048334129154682],[0.0055240723304451,-0.033672273159027,0.030491635203362]],[[0.00080562429502606,-0.014289170503616,-0.0082751540467143],[-0.02596527338028,-0.0079775555059314,0.011283789761364],[-0.045118223875761,0.091365791857243,0.060738258063793]],[[0.061936546117067,-0.033569552004337,-0.0025717653334141],[0.068095020949841,0.018887028098106,0.031322039663792],[0.0055360761471093,-0.00072107021696866,0.050667177885771]],[[0.017853878438473,0.045887820422649,0.022916458547115],[0.032332248985767,0.0014479773817584,-0.014483975246549],[-0.065994143486023,0.016966870054603,0.021177463233471]],[[0.13201498985291,0.0091294907033443,-0.039428249001503],[0.0018228528788313,-0.039658937603235,0.0064937323331833],[0.030973378568888,-0.018764102831483,-0.041404709219933]],[[0.036824978888035,-0.071485050022602,0.072003744542599],[0.096504248678684,0.034829437732697,0.089731931686401],[-0.071363992989063,-0.049816627055407,0.0068846358917654]],[[-0.053944643586874,0.0024189329706132,-0.014623110182583],[-0.047752223908901,0.020758397877216,-0.0316988453269],[-0.049397949129343,-0.031422633677721,0.040359795093536]],[[-0.0033643590286374,0.057864177972078,0.093693271279335],[0.023576077073812,-0.049393132328987,-0.038733076304197],[0.084989845752716,0.045223142951727,0.065523341298103]],[[-0.0003239227226004,-0.022350117564201,0.024937923997641],[0.0051559126004577,0.059890311211348,0.02299739420414],[-0.011786937713623,0.04715034738183,0.012014489620924]],[[0.069011591374874,-0.0047022141516209,0.014018815010786],[0.088301301002502,-0.019353544339538,0.055814076215029],[0.016327891498804,0.0063457889482379,0.025736639276147]],[[0.036368243396282,0.0050847274251282,-0.051447410136461],[0.053007446229458,-0.019870836287737,0.017149120569229],[0.032028794288635,-0.046871226280928,0.10898315161467]],[[-0.022424152120948,-0.078982181847095,-0.019757678732276],[-0.051373213529587,0.047243166714907,0.051052767783403],[0.05178439244628,-0.04329152032733,0.046293146908283]],[[0.016933867707849,-0.005477889906615,0.052670557051897],[0.022436508908868,-0.02897097915411,-0.024711191654205],[-0.026735424995422,-0.017431730404496,-0.02493810094893]],[[0.040639288723469,0.004369645845145,0.038663808256388],[0.099198125302792,0.0085977362468839,-0.044104281812906],[0.048968147486448,0.018728828057647,0.010662394575775]],[[0.0025144575629383,0.051593065261841,0.017077017575502],[-0.036190755665302,0.060006607323885,0.096589826047421],[0.015007895417511,0.03261674195528,0.0081571759656072]],[[-0.036639738827944,0.0040414491668344,-0.073020443320274],[0.018884746357799,0.037495344877243,0.011168367229402],[-0.024379024282098,0.077944844961166,0.039737220853567]],[[0.021706080064178,0.069966442883015,0.083926849067211],[-0.068010531365871,0.0066743562929332,0.082086347043514],[0.024351354688406,-0.0036951806396246,-0.0064460798166692]],[[-0.074206218123436,0.010689352639019,-0.01319542620331],[0.014664844609797,-0.066824920475483,0.0086618810892105],[0.0021126931533217,0.061810005456209,0.018346792086959]],[[0.11815241724253,0.026931189000607,0.095511913299561],[0.015705492347479,-0.00020770964329131,0.10062155127525],[-0.018070319667459,0.013468047603965,-0.051007583737373]],[[0.002163307974115,-0.087146937847137,0.017522573471069],[0.028037564828992,0.031802978366613,-0.033273130655289],[-0.034697096794844,0.044497549533844,-0.011628156527877]],[[0.031434565782547,-0.0094399973750114,-0.03919742628932],[0.0030513755045831,0.012651056051254,0.028983362019062],[0.042294405400753,-0.065817587077618,-0.038574676960707]],[[0.080532647669315,-0.059281431138515,0.019239641726017],[-0.059214439243078,0.037281926721334,-0.011567528359592],[-0.015633542090654,0.0048753605224192,0.0073636369779706]],[[0.047498565167189,0.098244175314903,0.014845405705273],[-0.0056084250099957,-3.4041455364786e-05,-0.11503883451223],[-0.058454487472773,0.065156780183315,0.033403426408768]],[[0.050260830670595,0.038293868303299,-0.070046916604042],[0.020554173737764,0.03967734053731,0.010923358611763],[0.028431596234441,-0.02817271836102,0.014504730701447]],[[-0.021735791116953,0.042208597064018,0.0045212251134217],[-0.0093589844182134,-0.083912342786789,-0.078505888581276],[-0.058363620191813,0.040123805403709,-0.091415822505951]],[[0.053005523979664,-0.058742642402649,0.061234883964062],[-0.024347646161914,-0.072454124689102,-0.030030135065317],[-0.067453101277351,-0.069218292832375,0.014792419038713]],[[0.00066817790502682,-0.021344151347876,-0.041824676096439],[0.072692841291428,0.058861002326012,0.019511114805937],[0.074648529291153,-0.047889795154333,0.011661878786981]],[[0.032494988292456,0.024405824020505,0.011742659844458],[-0.02673627063632,0.019628692418337,-0.028996013104916],[-0.037820715457201,-0.028515638783574,0.050378084182739]],[[-0.0060921055264771,-0.0032747087534517,-0.011445271782577],[0.028501659631729,0.023741062730551,-0.033546935766935],[0.062671348452568,0.0082023227587342,-0.031351298093796]],[[0.017116643488407,-0.056077856570482,-0.043232962489128],[0.023462487384677,-0.060619380325079,0.014462287537754],[-0.033493861556053,0.049439795315266,-0.05773739144206]],[[0.053777817636728,0.099118486046791,-0.01785834133625],[0.06364531069994,0.0015552763361484,0.039250563830137],[-0.0087799867615104,-0.008660820312798,0.0079314596951008]],[[0.016925610601902,-0.03341918438673,0.030034771189094],[-0.0084272706881166,0.010969622060657,-0.042782478034496],[0.037224780768156,0.03502306714654,-0.023225165903568]],[[0.00022399873705581,-0.11140733957291,0.02559476532042],[0.00073500350117683,-0.0042775240726769,0.02204342186451],[0.01483007427305,-0.0043322192505002,-0.080175705254078]],[[0.0083575518801808,0.007074979133904,0.00036524044116959],[-0.021295683458447,-0.023855209350586,0.03263596072793],[-0.082653239369392,-0.0092509873211384,-0.028358101844788]],[[-0.017988694831729,0.064190752804279,0.01721397601068],[0.031056011095643,0.056974489241838,0.048458632081747],[-0.024545902386308,-0.018090082332492,-0.021675964817405]],[[0.04292544350028,-0.067954204976559,0.0023319928441197],[-0.041738696396351,0.034972403198481,0.039355512708426],[-0.046652514487505,-0.025035625323653,0.023217735812068]],[[0.027281265705824,-0.068301163613796,-0.0099944900721312],[0.02769478969276,0.029340172186494,0.017598671838641],[-0.067395605146885,0.020283494144678,0.020656870678067]],[[0.027082704007626,-0.021015169098973,-0.0020161028951406],[0.056529600173235,0.048575110733509,0.019558247178793],[0.076629363000393,0.036091074347496,0.024367328733206]],[[0.0055755618959665,0.032301262021065,-0.010720461606979],[0.026648100465536,-0.0048646503128111,-0.026203561574221],[-0.033064305782318,0.020538844168186,-0.028034357354045]],[[0.099387109279633,-0.047502428293228,0.0017821767833084],[-0.051428608596325,-0.076478905975819,-0.054180223494768],[0.054406989365816,0.00064374291105196,-0.061832197010517]],[[-0.0065085534006357,0.041494749486446,0.011045040562749],[0.0024560603778809,0.026229210197926,0.053829088807106],[0.0086310682818294,0.038937650620937,0.063568167388439]],[[-0.026514127850533,-0.013977682217956,-0.040265776216984],[-0.051649019122124,0.044163852930069,-0.023398803547025],[0.029762078076601,0.024513328447938,-0.0043726582080126]],[[0.074853718280792,-0.031192356720567,0.0037616200279444],[0.00013189492165111,-0.023223159834743,0.021142112091184],[-0.05318808183074,0.026261838153005,0.016286432743073]],[[-0.092152051627636,-0.047668784856796,0.086880005896091],[0.10212723910809,-0.028720127418637,-0.014011095277965],[-0.0066543179564178,-0.0017475632485002,-0.0077555342577398]],[[-0.081718035042286,0.02683973684907,0.026018450036645],[0.069075681269169,-0.0064712944440544,0.0031850675586611],[-0.044187847524881,-0.045924488455057,0.052336320281029]],[[-0.053877454251051,0.032766401767731,0.12132307142019],[0.045404259115458,0.0087825013324618,0.032112468034029],[0.039104025810957,-0.038553964346647,0.070170067250729]],[[0.0085609517991543,0.03638930618763,-0.050637379288673],[0.02889196947217,0.020553767681122,0.0032731485553086],[0.010501896031201,0.035610731691122,-0.0039782067760825]],[[0.0004684585146606,0.0016563157550991,-0.032529477030039],[0.030998602509499,-0.028439929708838,0.083673700690269],[0.025919841602445,-0.057992525398731,0.060501735657454]],[[0.038214229047298,-0.015041445381939,0.022580102086067],[0.083931185305119,-0.03271896392107,0.027476327493787],[0.0092381974682212,-0.022039368748665,-0.016723334789276]]],[[[0.01882828772068,0.016622645780444,-0.068351246416569],[-0.014440594241023,-0.017312180250883,-0.043043058365583],[0.027730686590075,-0.057904329150915,0.0055696326307952]],[[0.0749122351408,-0.022308820858598,-0.10292748361826],[0.086428336799145,0.021525183692575,0.0079532898962498],[0.0094299884513021,-0.042553309351206,-0.028196377679706]],[[0.01126494910568,0.024303119629622,-0.0088468985632062],[0.036508731544018,-0.044548623263836,-0.052255246788263],[-0.051036588847637,-0.10570987313986,-0.024581808596849]],[[-0.12229783087969,0.024107426404953,0.063667245209217],[-0.058970842510462,-0.075257502496243,-0.013566656038165],[0.07727063447237,-0.038234651088715,-0.0080464649945498]],[[0.0057829204015434,-0.078695401549339,-0.0010235948720947],[0.02827712148428,-0.0091058602556586,-0.071309074759483],[0.021483428776264,0.033483818173409,-0.016630964353681]],[[-0.030705014243722,0.0016038925386965,-0.017134616151452],[-0.013053740374744,-0.006902055349201,-0.080215185880661],[-0.019747663289309,-0.065806195139885,-0.04103821143508]],[[0.0020213546231389,0.049779668450356,0.0071944990195334],[0.024085411801934,0.0019114217720926,-0.0062960865907371],[-0.039631504565477,-0.03145606815815,0.018055403605103]],[[0.016110105440021,0.02566391415894,0.033341590315104],[0.0062052989378572,0.055568195879459,0.010192157700658],[0.019767820835114,-0.021646125242114,-0.026337426155806]],[[0.0014306000666693,-0.029133694246411,0.05812868475914],[-0.1285437643528,0.0099855270236731,0.0033422613050789],[-0.025025753304362,0.067448683083057,0.10404647886753]],[[0.053880020976067,-0.034685473889112,0.047059889882803],[0.061937984079123,-0.042851697653532,0.044723983854055],[-0.050502117723227,0.0045776683837175,0.0028274250216782]],[[-0.0066090039908886,-0.025493528693914,0.043480187654495],[0.025603529065847,-0.0029268700163811,-0.026500537991524],[-0.022320415824652,0.020378883928061,0.058658465743065]],[[-0.066014118492603,0.013537349179387,-0.0094185750931501],[0.0055179088376462,-0.056003905832767,-0.0074720825068653],[0.04876971244812,0.081020049750805,-0.07810702174902]],[[0.026415096595883,0.07114465534687,-0.02450985647738],[-0.020560329779983,0.0033649776596576,-0.002223951742053],[0.027182813733816,-0.0041312398388982,-0.087032377719879]],[[-0.029435075819492,-0.073494710028172,0.040875248610973],[0.006422464735806,0.044673934578896,-0.034281652420759],[-0.049989331513643,-0.020331244915724,-0.035835355520248]],[[0.0099847754463553,-0.021564617753029,-0.039891581982374],[0.067253425717354,-0.0040508755482733,-0.028678480535746],[-0.053861875087023,0.027058897539973,-0.11203246563673]],[[0.0028447289951146,-0.047901641577482,-0.049824893474579],[-0.023327562958002,-0.026104763150215,-0.0235415995121],[-0.0093984194099903,0.095512099564075,0.029836831614375]],[[0.056832045316696,0.0861791446805,-0.037513181567192],[-0.02615044079721,-0.050602704286575,-0.0086664976552129],[-0.042556315660477,0.00042345232213847,-0.069950729608536]],[[0.017047820612788,0.029533121734858,0.063247613608837],[-0.040553148835897,-0.048292312771082,0.026291532441974],[0.062326829880476,-0.035581085830927,-0.026701673865318]],[[0.0096618430688977,-0.0014831956941634,0.044095307588577],[0.037120897322893,-0.040256571024656,-0.033850148320198],[-0.010401654988527,-0.034917064011097,-0.018511354923248]],[[-0.02970919944346,0.042086314409971,-0.019716391339898],[0.0019856046419591,0.013830905780196,-0.054733533412218],[-0.03906486555934,-0.034408293664455,-4.1247985791415e-05]],[[0.092345580458641,-0.062035333365202,-0.0010484496597201],[-0.0065265372395515,-0.053684785962105,0.057260129600763],[0.015480727888644,-0.015581885352731,-0.072537690401077]],[[-0.001493665156886,0.0030419495888054,-0.02688124217093],[0.028965849429369,0.016251422464848,-0.011521574109793],[0.010040729306638,0.022384516894817,0.0029140841215849]],[[-0.057604908943176,-0.07392642647028,-0.064823754131794],[-0.022738905623555,0.023703586310148,0.025893760845065],[0.010424408130348,-0.012288603000343,0.040058396756649]],[[-0.00389936985448,0.027590246871114,0.0063997372053564],[0.0015845645684749,-0.036643858999014,0.0061890357173979],[0.028669221326709,-0.0036121136508882,0.050293985754251]],[[-0.089970372617245,0.023183029145002,-0.045280884951353],[-0.031874552369118,0.0049824500456452,-0.073805265128613],[-0.032198969274759,-0.025214439257979,0.031294737011194]],[[0.023606711998582,0.063874945044518,-0.029891962185502],[0.017972165718675,-0.068445436656475,0.014757929369807],[-0.039571449160576,0.028264624997973,-0.026549026370049]],[[-0.035786263644695,-0.019890548661351,0.030551450327039],[-0.020639086142182,0.056021943688393,0.078057371079922],[0.0062630716711283,0.014344170689583,-0.041362155228853]],[[-0.0040514720603824,-0.0072917039506137,0.07746783643961],[0.028369922190905,-0.029909793287516,0.038723114877939],[0.052744127810001,0.010930920951068,-0.032414942979813]],[[0.034757539629936,0.047508701682091,-0.004550514742732],[0.026920210570097,0.0080600520595908,-0.075197651982307],[-0.040452413260937,0.018537571653724,0.0085171861574054]],[[-0.0057356809265912,-0.019623832777143,-0.032924354076385],[-0.010257641784847,-0.061868265271187,0.026364628225565],[-0.094528049230576,-0.010392964817584,0.011010656133294]],[[0.055803555995226,-0.063519388437271,-0.011596473865211],[-0.0049372650682926,-0.013975129462779,0.058202665299177],[0.010473545640707,0.018878873437643,0.030453870072961]],[[0.021921593695879,-0.049909546971321,-0.039853651076555],[-0.052644636482,0.026248373091221,0.015932139009237],[-0.017890410497785,0.047019563615322,0.04194250702858]],[[0.043768234550953,0.02946925163269,0.080397002398968],[-0.049478888511658,-0.02731285430491,-0.059695906937122],[0.061903454363346,0.015149850398302,-0.067592337727547]],[[-0.090796746313572,-0.038365859538317,0.029231606051326],[-0.085332438349724,-0.029144361615181,0.037022870033979],[-0.036553546786308,0.048955276608467,0.0477424710989]],[[-0.077220797538757,0.046686977148056,-0.019203176721931],[-0.031692486256361,0.0038508111611009,0.063039369881153],[0.03902505338192,0.048710808157921,-0.02449294179678]],[[0.054672367870808,-0.080393761396408,-0.016437189653516],[-0.061919562518597,0.073476254940033,-0.0055831242352724],[0.022706516087055,0.028126239776611,0.043654263019562]],[[-0.064294531941414,-0.063388124108315,0.023026302456856],[0.017946204170585,0.060079425573349,0.018876673653722],[-0.02242567948997,-0.0039958655834198,0.0060802716761827]],[[-0.0057450393214822,0.064352124929428,-0.086080573499203],[0.0042462148703635,-0.042006395757198,-0.016818689182401],[0.049903534352779,-0.052324149757624,-0.075490087270737]],[[-0.059026822447777,0.057384800165892,0.086165346205235],[-0.10096260905266,0.025871170684695,-0.036992155015469],[-0.14084987342358,-0.011726477183402,-0.062195044010878]],[[0.042030334472656,0.020296804606915,0.035360660403967],[0.0032403292134404,-0.056199364364147,0.030972192063928],[0.014950449578464,0.010499843396246,-0.016966639086604]],[[0.026550060138106,0.0096520856022835,0.023921707645059],[-0.005618226248771,0.0022257920354605,-0.050311345607042],[0.069000884890556,0.019489169120789,-0.017935482785106]],[[-0.019460493698716,0.048237673938274,-0.0087472144514322],[0.011122442781925,0.069178991019726,0.015367831103504],[-0.044970843940973,0.00081095227506012,-0.0063009024597704]],[[-0.026025433093309,-0.012190291658044,0.068878091871738],[-0.025926660746336,0.028259767219424,0.033352587372065],[0.05160615593195,-0.0085432576015592,-0.039104878902435]],[[-0.066615223884583,-0.014496681280434,-0.055219516158104],[-0.021443296223879,-0.020195307210088,-0.12440693378448],[-0.053135808557272,0.074072442948818,-0.060466516762972]],[[-0.002841716632247,0.041314650326967,0.079876318573952],[0.0058910297229886,-0.0126544078812,-0.015348518267274],[0.059785019606352,-0.041607107967138,-0.0011758143082261]],[[0.036123342812061,-0.014373601414263,-0.023849809542298],[-0.021906780079007,-0.0610221773386,-0.028692984953523],[0.04695563018322,0.11101289093494,-0.020245773717761]],[[-0.028949735686183,-0.025609595701098,-0.035293098539114],[0.02801894582808,-0.059648897498846,-0.092919781804085],[0.040141750127077,0.025841042399406,-0.043220732361078]],[[0.028247460722923,0.037291198968887,-0.0040355389937758],[0.027380535379052,-0.013600272126496,-0.049378994852304],[-0.0042970525100827,0.05668842419982,0.066371895372868]],[[-0.12206906825304,-0.0035149736795574,0.00012524200428743],[0.0246976390481,0.014226661995053,-0.022749429568648],[0.010526195168495,0.010949169285595,-0.009487260133028]],[[-0.082634516060352,0.00013820113963448,0.083882786333561],[-0.00017976996605285,0.042359258979559,0.021112678572536],[0.013407577760518,0.019200837239623,0.017972368746996]],[[0.034714974462986,-0.071676060557365,0.034265015274286],[-0.0060456139035523,0.0088224504143,-0.027022480964661],[-0.069544285535812,-0.0063350768759847,-0.043522220104933]],[[-0.023811563849449,-0.01333580724895,-0.039842698723078],[0.077073909342289,-0.027446176856756,0.048163581639528],[0.074475526809692,-0.055919658392668,-0.082603558897972]],[[-0.02929262816906,0.0067261666990817,-0.028485471382737],[0.055658731609583,0.030507968738675,0.0012066267663613],[0.016228249296546,-0.031991057097912,-0.024998443201184]],[[0.027546852827072,0.00013755800318904,-0.0091282390058041],[0.026109637692571,0.05909962579608,0.061690028756857],[-0.026657165959477,0.0055955741554499,-0.015748327597976]],[[-0.023145509883761,-0.060790605843067,0.031003883108497],[0.043787680566311,-0.039063606411219,-0.05288228020072],[-0.024975210428238,-0.041680429130793,0.017209179699421]],[[0.00024121697060764,-0.0036294963210821,-0.00029119389364496],[-0.034950207918882,0.053830552846193,-0.00065077946055681],[0.019373992457986,-0.022462725639343,-0.067556522786617]],[[-0.0758056640625,0.0094140795990825,0.031979463994503],[0.0022418918088078,-0.056135360151529,-0.047336138784885],[-0.041769694536924,0.087540343403816,-0.0029122692067176]],[[0.017761781811714,0.012098658829927,0.068866789340973],[0.025208758190274,0.059614390134811,-0.023528028279543],[-0.030477944761515,-0.0053995912894607,-0.016459668055177]],[[0.064978905022144,-0.044119454920292,-0.030148591846228],[0.0090759051963687,-0.0048853191547096,-0.041524663567543],[-0.028786063194275,0.0024651191197336,-0.015188463032246]],[[-0.031273383647203,0.0042065409943461,0.028622379526496],[-0.016003578901291,0.0027509953361005,0.01443914975971],[-0.045456979423761,0.031898986548185,0.011224297806621]],[[-0.034341424703598,0.020415306091309,-0.018846040591598],[-0.037857487797737,0.019176887348294,-0.015957195311785],[-0.070813544094563,-0.058702025562525,0.053051732480526]],[[0.00013356012641452,-0.025677308440208,0.0071172527968884],[0.071396350860596,-0.023010261356831,-0.0063004666008055],[0.00014116734382696,-0.016172340139747,0.031426850706339]],[[0.039739899337292,0.0029886392876506,-0.061513554304838],[-0.10589807480574,0.044113039970398,0.029302932322025],[-0.02457270398736,-0.010069300420582,-0.044053260236979]],[[0.0020399300847203,-0.01057490054518,0.10025452822447],[0.0099880332127213,0.0072066560387611,0.00576928909868],[0.009128694422543,-0.063214972615242,0.054636690765619]],[[0.013529628515244,-0.028106292709708,-0.016677210107446],[-0.03644771873951,0.0066328346729279,0.038890305906534],[-0.053760137408972,0.00096936093177646,-0.012908130884171]],[[0.054047796875238,0.026279591023922,-0.0041495263576508],[0.020313533023,0.05079835280776,-0.010553080588579],[-0.039729498326778,0.0050911540165544,0.043074954301119]],[[0.028775246813893,-0.022832995280623,0.043038461357355],[0.061801496893167,0.068177402019501,0.12113504111767],[-0.022726764902472,-0.048624627292156,0.024928221479058]],[[0.010228221304715,0.049128852784634,0.013451515696943],[0.012182361446321,0.042502991855145,0.027126472443342],[-0.081159539520741,0.080878786742687,0.050376806408167]],[[-0.011374816298485,-0.104870647192,0.079430304467678],[-0.0092113809660077,-0.10508739203215,0.042819391936064],[-0.013096945360303,-0.0025273049250245,-0.057448416948318]],[[0.056208472698927,-0.068084992468357,0.032437518239021],[-0.065822914242744,0.072351448237896,0.030913921073079],[0.091827854514122,0.01943626627326,-0.0070222551003098]],[[-0.051833994686604,-0.018448170274496,0.044844463467598],[-0.050087194889784,0.014893068000674,-0.0085011571645737],[0.083237513899803,-0.0013543769018725,0.013900867663324]],[[-0.017348291352391,0.039352118968964,-0.034957889467478],[-0.020910728722811,-0.024897245690227,0.065275937318802],[-0.0043606418184936,0.0084924194961786,-0.026336150243878]],[[-0.044316817075014,0.047440029680729,-0.015824129804969],[0.015416613779962,0.07174164056778,0.021144112572074],[-0.010538817383349,0.025333404541016,-0.045344065874815]],[[0.010767896659672,0.03262872248888,0.002929306589067],[-0.034327957779169,-0.019538208842278,-0.024559047073126],[0.015072297304869,-0.051724787801504,-0.00023264808987733]],[[-0.063767969608307,-0.034695010632277,0.025748068466783],[0.013206015340984,-0.03018050827086,0.075117200613022],[0.073940493166447,0.034427545964718,0.027689827606082]],[[0.026256987825036,0.034918487071991,0.035485949367285],[-0.10626115649939,-0.030157802626491,-0.035407543182373],[-0.054159194231033,0.046907730400562,0.047094356268644]],[[0.031228160485625,-0.04649118706584,-0.019922856241465],[-0.0057067777961493,0.03101066686213,0.03058890812099],[0.057514265179634,0.026486897841096,0.022411670535803]],[[-0.0018756981007755,-0.032511003315449,0.0023551946505904],[-0.068154945969582,0.059444639831781,-0.026452332735062],[0.001762077328749,-0.011998308822513,-0.036024309694767]],[[-0.047484941780567,-0.04111772403121,0.01637158729136],[-0.0015591678675264,-0.039946954697371,-0.12628181278706],[-0.010090145282447,-0.052242156118155,0.0028175627812743]],[[-0.086097061634064,-0.0062448340468109,-0.02933594211936],[-0.037055429071188,0.042992550879717,0.011575438082218],[0.068375632166862,-0.058772560209036,0.014079338870943]],[[0.022849850356579,0.035946011543274,-0.052009027451277],[0.0051720319315791,0.023497220128775,0.086269721388817],[-0.018968982622027,-0.064750462770462,0.0084827803075314]],[[0.05696689337492,0.018051739782095,0.00033963762689382],[0.094615250825882,0.05407565459609,0.033551331609488],[0.013819647021592,0.0034719703253359,-0.010084710083902]],[[-0.070160835981369,0.007555709220469,0.089712254703045],[-0.041208855807781,0.017470233142376,-0.014394721016288],[0.049114007502794,-0.030215872451663,-0.0037604488898069]],[[0.017911730334163,0.0035401545464993,-0.0086374329403043],[0.055515248328447,0.01518860924989,-0.022056689485908],[-0.039491653442383,-0.043232824653387,-0.022507006302476]],[[-0.040655963122845,0.060626372694969,-0.01002648845315],[-0.00023778967442922,-0.033554948866367,0.0017238815780729],[-0.043262254446745,-0.029675830155611,0.014216410927474]],[[-0.058377094566822,-0.0064306105487049,0.06388545781374],[-0.031162286177278,-0.001815531286411,-0.0054190717637539],[-0.0029714640695602,-0.027047930285335,-0.05283971875906]],[[0.014913209713995,-3.6282319342718e-05,0.048967160284519],[0.00052614242304116,0.031688302755356,-0.083642609417439],[-0.035274848341942,-0.027673646807671,0.0061322879046202]],[[0.020370250567794,-0.037331391125917,0.0069716819562018],[-0.053199168294668,0.0081173283979297,0.03336414322257],[-0.0185666680336,0.0065225302241743,-0.0074302055872977]],[[-0.010525951161981,-0.051622476428747,0.026440013200045],[-0.02371153049171,0.0025897361338139,-0.026549063622952],[0.11540053039789,0.011768419295549,0.021127624437213]],[[0.011127263307571,-0.081458136439323,0.0068743810988963],[-0.032055072486401,0.14920334517956,-0.023702448233962],[0.021929932758212,0.059334181249142,-0.007471009157598]],[[-0.0020867087878287,-0.0021893815137446,-0.009363979101181],[0.016638837754726,0.048605278134346,-0.054708492010832],[0.0088509852066636,-0.023885918781161,0.029603870585561]],[[-0.024862701073289,0.11731175333261,-0.052702646702528],[0.011308692395687,-0.0051903259009123,-0.085424497723579],[0.0069298231974244,0.012003650888801,-0.023773301392794]],[[0.0094556221738458,-0.015179819427431,0.0054780966602266],[-0.0079350443556905,-0.026302348822355,0.012797470204532],[0.040268462151289,0.036530777812004,0.018196143209934]],[[0.037341885268688,0.030686963349581,0.025844395160675],[0.01261986605823,-0.078605346381664,-0.040302991867065],[0.021710919216275,0.068511180579662,-0.041029762476683]],[[0.043807938694954,-0.023779278621078,0.021354660391808],[0.025720521807671,0.0047719972208142,-0.03296984732151],[0.035200953483582,-0.028013531118631,-0.067118607461452]],[[-0.054978016763926,-0.013933649286628,0.017239853739738],[0.0119304722175,0.032606068998575,-0.1114708557725],[-0.0056061358191073,-0.052057724446058,-0.0226059705019]],[[0.061121795326471,-0.0046353898942471,0.029323823750019],[0.01683739759028,0.031837496906519,-0.085294030606747],[-0.044601839035749,-0.050669610500336,-0.040153451263905]],[[-0.070519275963306,-0.029012955725193,-0.0034829608630389],[0.049782261252403,-0.014620022848248,0.01995700225234],[0.048147611320019,0.060600090771914,-0.047341417521238]],[[-0.022947490215302,0.019743327051401,-0.018505791202188],[0.053699556738138,-0.10281120240688,-0.030846141278744],[0.034993506968021,-0.022879991680384,-0.033387701958418]],[[-0.057302325963974,-0.030307581648231,0.092421904206276],[0.0017493074992672,0.011290388181806,0.058122131973505],[-0.024212803691626,-0.017658790573478,0.1038483902812]],[[0.059081424027681,-0.049373257905245,-0.011346011422575],[0.037166226655245,-0.012280058115721,0.012866540811956],[0.04952634871006,0.086756996810436,-0.064669072628021]],[[0.049711160361767,0.036550529301167,0.039479684084654],[-0.018893184140325,-0.039033982902765,-0.026802003383636],[-0.054455373436213,0.041272968053818,-0.083546854555607]],[[0.014776725322008,0.0094128185883164,0.015121114440262],[-0.015015604905784,0.030262859538198,0.038865119218826],[0.071270108222961,0.074994035065174,-0.0097259841859341]],[[0.069232910871506,0.027107397094369,0.03585584461689],[0.0056847068481147,0.010349075309932,0.036872651427984],[0.069951325654984,-0.020002231001854,0.017389228567481]],[[0.061474833637476,-0.023836100474,-0.064831614494324],[-0.0067787826992571,-0.00022784109751228,-0.052210073918104],[0.06299614161253,-0.041998263448477,-0.010076889768243]],[[-0.03864947706461,0.0070648826658726,-0.0062900637276471],[-0.070702418684959,0.036572098731995,0.027669042348862],[-0.0030955062247813,0.00010243378346786,0.0050120232626796]],[[-0.046749141067266,-0.011359485797584,0.0051500555127859],[0.041989549994469,-0.032099653035402,0.022579880431294],[-0.033459797501564,0.021044233813882,0.024399222806096]],[[-0.010766541585326,0.051256645470858,-0.033753424882889],[-0.019370149821043,-0.029379861429334,0.036675505340099],[0.028075188398361,0.0050145238637924,0.036291565746069]],[[-0.0011772330617532,0.078238904476166,-0.024221919476986],[0.011662723496556,-0.063102476298809,0.055460352450609],[0.086489133536816,-0.011614479124546,0.061794321984053]],[[-0.012906746938825,0.0018332755425945,-0.03315544128418],[0.029016993939877,0.0053239176049829,0.0288843549788],[0.0067837829701602,0.026668244972825,0.026535915210843]],[[-0.037606403231621,0.089482590556145,-0.052216693758965],[0.070126712322235,0.040057517588139,0.021127969026566],[0.097431212663651,-0.025038762018085,0.0067080315202475]],[[-0.04419482499361,0.00051810446893796,0.030083307996392],[-0.11044760793447,0.0043114498257637,-0.09263127297163],[-0.07442219555378,0.031269121915102,-0.053749050945044]],[[-0.010575820691884,0.036717668175697,-0.073318637907505],[0.0010403675260022,-0.028522843495011,-0.036385226994753],[-0.016690542921424,-0.030381249263883,-0.054335717111826]],[[0.026793230324984,0.1094127073884,-0.05568104237318],[-0.049090459942818,-0.0095309317111969,-0.034345593303442],[-0.028981486335397,-0.012946153990924,-0.032752308994532]],[[0.005134919192642,-0.046601146459579,0.0033679311163723],[-0.053831517696381,0.059308174997568,2.4829183530528e-05],[-0.076821468770504,-0.024254430085421,-0.057141337543726]],[[-0.081808112561703,0.014141293242574,-0.044073969125748],[-0.033757772296667,-0.0023032615426928,-0.00022389451623894],[-0.013527369126678,0.015672659501433,-0.039361629635096]],[[0.052852846682072,0.025976276025176,-0.0057313800789416],[0.035489831119776,0.0010828581871465,0.0015898399287835],[0.073346607387066,-0.081022754311562,0.033577784895897]],[[-0.0022299683187157,-0.0032968379091471,0.063211016356945],[-0.040146060287952,-0.031375762075186,0.010448749177158],[-0.037967287003994,0.01897975243628,-0.07697170227766]],[[0.03452854603529,-0.029985060915351,-0.036472517997026],[-0.044477470219135,-0.016717672348022,0.072750963270664],[0.026937587186694,0.0095252133905888,0.021092772483826]],[[0.063755258917809,0.017901912331581,-0.010837787762284],[-0.055227492004633,0.018902787938714,-0.017084710299969],[-0.03182016685605,0.004294098354876,-0.016490530222654]],[[0.00058736104983836,-0.014335408806801,-0.027374325320125],[-0.096164360642433,-0.042604275047779,-0.0032372490968555],[-0.037554319947958,-0.0099102668464184,-0.0018681117799133]],[[0.064695671200752,0.0095049282535911,0.012475973926485],[0.048101130872965,0.042086765170097,0.043410927057266],[0.012648112140596,-0.0032799907494336,-0.041475582867861]],[[-0.039642959833145,0.018106328323483,-0.0069423387758434],[-0.029504170641303,-0.0076414197683334,-0.027671938762069],[0.025609685108066,0.02198338881135,0.062503643333912]],[[-0.10178089886904,0.054193746298552,-0.063776947557926],[0.0062916274182498,0.019995272159576,0.031391430646181],[0.02521001920104,-0.020778384059668,-0.043274208903313]],[[-0.010910955257714,0.010791757144034,-0.010009055957198],[-0.0086900256574154,-0.054959673434496,-0.016408352181315],[-0.050332639366388,-0.01372686214745,0.013699500821531]],[[-0.025246232748032,-0.031066361814737,0.013184113427997],[-0.0099707217887044,0.064819842576981,-0.016506399959326],[-0.056209456175566,0.039145350456238,0.048153236508369]],[[-0.013209275901318,-0.041405264288187,-0.016791068017483],[0.066793978214264,-0.044091794639826,0.098280884325504],[-0.056227315217257,0.025754878297448,-0.0093168197199702]],[[0.048436034470797,0.038319457322359,0.040867369621992],[-0.10458716750145,-0.026711218059063,0.041182801127434],[0.0048328381963074,0.026469713076949,0.030130255967379]]]],"nOutputPlane":128,"kW":3,"kH":3,"bias":[-0.086900115013123,-0.0091692181304097,-0.072936728596687,-0.034058306366205,-0.0040341936983168,-0.0078367767855525,0.047781854867935,-0.082294680178165,0.063888184726238,-0.017011754214764,-0.012593902647495,-0.071974724531174,-0.0082477275282145,-0.0091719795018435,-0.002887454116717,-0.0067557208240032,-0.006703379098326,-0.0065516135655344,-0.016334891319275,-0.02242805249989,0.0022969245910645,-0.030967043712735,0.00093466218095273,0.0017430065199733,-0.014232349582016,-0.017902828752995,-0.0081024803221226,-0.082132510840893,-0.083646155893803,-0.0037622964009643,-0.021944116801023,-0.0085936393588781,-0.075120091438293,0.067636094987392,-0.016871307045221,-0.003573508001864,-0.025311097502708,-0.022995933890343,-0.079368963837624,-0.0099319107830524,-0.02097151055932,-0.01430294290185,-0.007880580611527,-0.0067962971515954,-0.089907445013523,0.0079447831958532,-0.031544581055641,0.00059629423776641,0.013861860148609,-0.082106947898865,-0.0044454461894929,0.019325168803334,-0.019753566011786,0.0010076990583912,-0.094802469015121,-0.012609984725714,-0.013267377391458,-0.016440829262137,0.02380646020174,-0.066996119916439,-0.028228286653757,-0.0091998009011149,-0.080779045820236,-0.14926519989967,-0.016165742650628,-0.011435120366514,-0.050387114286423,-0.00054186285706237,-0.0066972365602851,-0.012706845067441,-0.0094359330832958,0.0012722858227789,-0.0046503441408277,-0.077980443835258,-0.0030932519584894,-0.0049521778710186,-0.088746584951878,-0.088294170796871,0.010060168802738,-0.065738208591938,-0.0092460094019771,-0.00034065853105858,-0.0054657906293869,-0.0048682023771107,0.072399616241455,-0.073602043092251,-0.032957628369331,0.047986339777708,-0.081036955118179,-0.015005395747721,0.054512239992619,-0.010383293032646,-0.026906102895737,-0.013224717229605,-0.0034497880842537,-0.085078492760658,-0.020881038159132,-0.001980260014534,-0.0032848513219506,-0.013174991123378,0.010215769521892,-0.0012724729022011,-0.0037115775048733,-0.081072196364403,-0.0076000662520528,-0.010602420195937,-0.028909895569086,-0.0040276437066495,-0.0044739632867277,-0.0098008392378688,-0.0038850985001773,-0.063683234155178,-0.026954820379615,0.0074966847896576,-0.0091779036447406,-0.0055732480250299,-0.0077031077817082,0.042175564914942,0.0066002504900098,-0.0091106966137886,-0.0028183814138174,-0.080385379493237,-0.0047560795210302,0.080199413001537,-0.0099999774247408,-0.024697164073586,-0.0088283428922296,-0.074610963463783],"nInputPlane":128},{"weight":[[[[0.92255276441574,0.25763034820557,-0.74479681253433],[0.65229213237762,0.0023535971995443,-0.6731818318367],[-1.2787611484528,-0.01487610861659,0.11058041453362]],[[-0.20448204874992,-0.18005165457726,-0.07032460719347],[0.008212354965508,-0.033358514308929,0.62555360794067],[-0.54114013910294,0.0087847243994474,0.3935444355011]],[[-0.18434219062328,0.35033267736435,-0.50794589519501],[-0.90375572443008,-0.14635445177555,0.20106020569801],[0.3388007581234,0.37426918745041,-0.020856417715549]],[[0.53082180023193,-0.73597979545593,0.52255672216415],[-0.71561312675476,0.18614150583744,0.050311878323555],[0.24035453796387,0.14503195881844,-0.24530024826527]],[[-0.60090005397797,0.070176295936108,-0.026450308039784],[-0.11517135798931,0.6283295750618,0.020348468795419],[0.0015866030007601,0.035758558660746,-0.063575364649296]],[[-0.65501773357391,-0.8063297867775,-0.60303843021393],[0.21672473847866,0.66705143451691,0.36155241727829],[0.39061963558197,0.34912928938866,0.081638254225254]],[[0.064306773245335,0.40387949347496,-0.32012102007866],[-0.11352670192719,0.064094007015228,0.078034058213234],[0.95192813873291,-0.1360080987215,-0.020905265584588]],[[-0.19283747673035,0.10165188461542,-0.087577879428864],[0.3748619556427,-0.1453650444746,-0.43441614508629],[-0.071455918252468,-0.56781536340714,0.035213090479374]],[[0.45807412266731,1.054608464241,-0.60645389556885],[0.20532400906086,0.058525305241346,-0.25275674462318],[0.50630688667297,-0.29036068916321,-0.41328904032707]],[[0.14276216924191,-0.71939796209335,0.16125884652138],[-0.14302717149258,0.71597248315811,0.39533376693726],[0.67954617738724,-0.93213433027267,-0.2721571624279]],[[0.070311978459358,0.68664848804474,0.84975916147232],[-0.31472995877266,0.63239949941635,-0.16646431386471],[-0.29846519231796,-0.43899148702621,-1.0185474157333]],[[0.93210852146149,-0.0042701936326921,-0.079286031424999],[-1.3934462070465,0.81341272592545,0.046323180198669],[-0.20611122250557,-0.16667124629021,-0.33680355548859]],[[-0.74806702136993,-0.011228100396693,0.35482811927795],[-0.084907792508602,-0.1635832041502,0.46260884404182],[-0.049383211880922,0.12829595804214,0.11183348298073]],[[-1.1870908737183,0.27404630184174,0.46056401729584],[0.4904460310936,-0.56452977657318,-0.18671929836273],[0.37861624360085,0.094958543777466,0.24208080768585]],[[-0.31855967640877,0.17584094405174,-0.088715419173241],[-0.24793682992458,0.68838787078857,-0.25757253170013],[0.10222485661507,-0.42092317342758,0.35389265418053]],[[-0.13821277022362,0.26142963767052,0.52835363149643],[-0.30982279777527,-0.35004362463951,0.44606786966324],[0.044135179370642,0.32670328021049,-0.82166635990143]],[[-0.44399631023407,-0.84550338983536,-0.034160885959864],[-0.23160564899445,0.30373200774193,0.95648765563965],[-0.029822696000338,0.18208546936512,0.14298647642136]],[[0.76305174827576,0.40323770046234,0.2132612913847],[-0.43694993853569,-0.11625450104475,-0.4284699857235],[0.01504063885659,-0.48512718081474,0.074392177164555]],[[-0.27898955345154,1.2796205282211,-0.085479035973549],[0.18825428187847,-0.45243960618973,-0.43799728155136],[-0.17662726342678,-0.12807793915272,0.092640958726406]],[[-0.21413603425026,-0.15891265869141,0.15923155844212],[0.19541396200657,0.25529319047928,-0.79607701301575],[0.03480239585042,0.094092011451721,0.44235149025917]],[[0.25485640764236,-0.025177357718349,0.36467957496643],[0.22081671655178,-0.84260898828506,0.31598141789436],[-0.26700431108475,0.29863938689232,-0.31191194057465]],[[0.010616542771459,0.23339915275574,-0.30521965026855],[0.38551473617554,-0.60841923952103,-0.072355024516582],[0.23591977357864,0.092129722237587,0.031441263854504]],[[-0.13087899982929,0.24545828998089,-0.26003640890121],[0.063372194766998,-0.35196197032928,0.13272741436958],[0.18385984003544,-0.14254654943943,0.26707693934441]],[[0.050412621349096,-0.10109526664019,-0.0066317594610155],[-0.38221183419228,-0.097476348280907,0.32487353682518],[0.40820023417473,0.33125767111778,-0.51836973428726]],[[-0.61341524124146,0.78368276357651,-0.56537079811096],[0.11480844765902,0.2884521484375,-0.24563969671726],[0.13320203125477,-0.21473529934883,0.31514671444893]],[[0.1206628754735,-0.4759678542614,-0.39469030499458],[0.10105896741152,0.187704205513,0.10403222590685],[0.33216351270676,0.28463068604469,-0.24643179774284]],[[0.53654128313065,-0.36685764789581,0.69712901115417],[-0.8477828502655,-0.36832040548325,-0.6076534986496],[0.52769410610199,-0.20982663333416,0.64358067512512]],[[-0.49994465708733,0.31718808412552,0.051761988550425],[0.29398769140244,-0.35791450738907,-0.33949691057205],[-0.50324469804764,-0.37701943516731,0.34359836578369]],[[-0.88493686914444,0.1630572527647,-0.86484950780869],[0.13111865520477,0.4410198032856,-0.58939325809479],[-0.12497278302908,1.2627898454666,-0.90288931131363]],[[0.28811171650887,-0.58138030767441,-0.14485637843609],[0.77928954362869,0.13649253547192,0.84792077541351],[-0.21799975633621,-0.55125439167023,-0.087942138314247]],[[-0.29727491736412,0.28330770134926,-0.02319810539484],[-0.30517396330833,-0.64535075426102,-0.47430920600891],[0.42411229014397,0.98097294569016,0.060957793146372]],[[-0.1393837928772,-0.13912865519524,0.30073636770248],[0.32731959223747,-0.093838006258011,-0.081666022539139],[0.010205912403762,0.49158534407616,-0.67668837308884]],[[-0.029558094218373,0.36177563667297,0.0082072066143155],[0.05084278807044,0.79709559679031,-0.54952412843704],[-0.026193011552095,-0.70959281921387,-0.31882750988007]],[[-0.092571645975113,0.25562724471092,-0.24798229336739],[0.34942999482155,0.36098998785019,0.063831478357315],[0.34861871600151,0.21110221743584,-0.019209878519177]],[[-1.0755307674408,0.20680478215218,0.48414066433907],[-0.036831021308899,0.1470817476511,0.22561360895634],[0.2692024409771,0.19345471262932,-0.41201218962669]],[[-0.58588862419128,-0.20445501804352,-0.108159519732],[0.0072065130807459,-0.38927361369133,0.79254215955734],[-0.11253563314676,0.22362245619297,0.38486942648888]],[[-0.31619772315025,0.4275903403759,0.027853835374117],[-0.5372399687767,0.54568767547607,-0.22973504662514],[0.066230051219463,0.4621906876564,-0.44651883840561]],[[-0.28726997971535,-0.75623041391373,0.83921176195145],[0.072632014751434,0.39171600341797,-0.68101924657822],[-0.1318481117487,0.55522501468658,-0.0037082005292177]],[[0.19339799880981,0.40826517343521,0.37016895413399],[-0.11174044013023,-0.34796524047852,-0.35840666294098],[-0.12358991056681,-0.47842714190483,-0.078549422323704]],[[0.66992348432541,0.609015583992,0.25950634479523],[-0.51325625181198,0.018028439953923,-0.40582337975502],[-0.89616322517395,0.20565240085125,0.053017128258944]],[[-0.64665812253952,0.13936702907085,0.11645899713039],[0.19563667476177,0.22598852217197,-0.27831143140793],[0.19909211993217,0.38724461197853,-0.31839442253113]],[[-1.0493578910828,0.10428970307112,1.1233229637146],[-0.38995954394341,0.086300767958164,-0.13310538232327],[-0.13303692638874,0.20451010763645,0.18843574821949]],[[-0.36723566055298,0.68285882472992,0.032841343432665],[-1.1117309331894,0.24377907812595,0.616514980793],[-0.020606778562069,-0.4764828979969,0.40208485722542]],[[-0.35289543867111,-1.4480131864548,-0.3789547085762],[0.82710468769073,0.088410630822182,-0.1031731441617],[0.17770141363144,0.45879548788071,0.73863691091537]],[[-0.74317890405655,-0.12108198553324,0.21866872906685],[0.11767771840096,0.33423101902008,-0.064838744699955],[-0.75468856096268,-0.97220849990845,-0.54123872518539]],[[-0.24166205525398,-0.52114999294281,0.12319803982973],[0.30387517809868,0.036715604364872,0.41666090488434],[-0.11803591996431,0.18942414224148,-0.18645909428596]],[[0.55920654535294,0.27658975124359,0.028433911502361],[-0.44644448161125,-0.97063213586807,0.17002508044243],[0.27772635221481,0.35169324278831,-0.26998975872993]],[[-0.23383893072605,-0.00048680364852771,0.11987704783678],[-0.11738244444132,-0.11122555285692,-0.38317763805389],[0.55604863166809,0.53208959102631,-0.35166078805923]],[[0.17266729474068,-0.0093950890004635,0.23840188980103],[1.2131140232086,-0.62698584794998,-0.18840140104294],[-0.19409351050854,-0.98603713512421,0.39691036939621]],[[0.37226784229279,0.42602321505547,0.24215723574162],[-0.64246171712875,-0.18302588164806,-0.40121683478355],[-0.40970659255981,-0.19509983062744,-0.13307578861713]],[[-0.23626647889614,0.20031009614468,-0.0048256628215313],[0.13887952268124,0.56204092502594,-0.48646160960197],[0.093415483832359,-0.028869487345219,-0.25215822458267]],[[0.85009759664536,-0.2020547837019,-0.016749821603298],[-0.91613453626633,-0.24129210412502,0.27342560887337],[0.02616804279387,0.15277272462845,0.046998076140881]],[[0.098338060081005,-0.07082299888134,0.10214433073997],[-0.10527737438679,0.073043689131737,-0.2618735730648],[-0.10191661864519,-0.04237699881196,0.29293367266655]],[[0.11954346299171,-0.0013600813690573,-0.17882764339447],[-0.24765621125698,-0.061361003667116,0.17734828591347],[0.065418660640717,0.02311054803431,0.10220332443714]],[[-0.026894876733422,0.2029492855072,-1.0883730649948],[-0.34624591469765,-0.011864979751408,-0.19465778768063],[-0.74604552984238,0.26173156499863,-0.36414888501167]],[[0.1238898858428,-0.85477727651596,0.59308993816376],[-0.035471010953188,-0.024230808019638,0.47325059771538],[0.20380862057209,0.06762770563364,-0.54562628269196]],[[0.25019708275795,0.52855837345123,0.11104031652212],[-0.24281965196133,-0.24475918710232,0.19009050726891],[-0.7089369893074,0.15776854753494,-0.041611075401306]],[[-0.48686826229095,0.32292717695236,0.29951170086861],[0.62748324871063,-0.33193692564964,-0.056973934173584],[-0.37993904948235,0.39919424057007,-0.39016118645668]],[[-0.25118368864059,0.57339054346085,0.41767257452011],[0.29635861515999,-0.61911600828171,0.1850633919239],[-0.27322733402252,-0.11888524144888,-0.12177633494139]],[[0.078745298087597,0.64011353254318,0.035190049558878],[-0.44644224643707,-0.64740282297134,-0.26243314146996],[0.11486348509789,-0.05357076600194,-0.053946055471897]],[[0.14710308611393,-0.12914754450321,-0.056517843157053],[-0.2433360517025,0.31709453463554,0.028491545468569],[0.12586556375027,-0.040461730211973,-0.14113260805607]],[[0.28196153044701,-0.66115498542786,0.45305654406548],[0.35982251167297,0.36642906069756,0.78008860349655],[-0.54225689172745,-0.048551492393017,-0.98781478404999]],[[-0.64964431524277,0.12743060290813,-0.021095979958773],[-0.18570867180824,0.92719078063965,-0.64550149440765],[-0.52550739049911,0.063632562756538,0.28356969356537]],[[0.12717182934284,-0.52833497524261,0.15122985839844],[-0.45672798156738,1.1936662197113,-0.024033177644014],[0.13976642489433,-0.17888635396957,-0.44690647721291]],[[0.90739756822586,-0.490632802248,-0.35904777050018],[0.079008691012859,-0.1384142190218,0.19958263635635],[-0.68139976263046,0.15050372481346,0.33895647525787]],[[0.69767516851425,0.16079425811768,-1.0644263029099],[0.10167371481657,0.56722223758698,0.12685713171959],[0.045990094542503,-0.33549213409424,-0.29439377784729]],[[-0.22330294549465,0.34483110904694,-0.028239667415619],[-0.3822235763073,-0.12180544435978,0.059810567647219],[-0.16664712131023,0.22751879692078,0.21542918682098]],[[-0.38550606369972,0.13598667085171,-0.10371758788824],[0.52455312013626,0.33040335774422,-0.2343965023756],[-0.4225352704525,-0.16519051790237,0.32306531071663]],[[0.25454849004745,-0.13211092352867,-0.72239106893539],[0.6718008518219,0.01730957813561,0.046429798007011],[0.37558409571648,-0.21170601248741,-0.29079911112785]],[[0.40750467777252,0.54418271780014,0.30307751893997],[-0.14903138577938,-0.48301222920418,-0.70752280950546],[-0.033187411725521,0.07996454834938,0.048595447093248]],[[0.33229923248291,0.19637681543827,-0.48332649469376],[0.34300151467323,-0.038941711187363,0.16039831936359],[-0.064361706376076,-0.14940728247166,-0.29341295361519]],[[-0.45725336670876,0.21053896844387,-0.0077303112484515],[-0.51845723390579,0.35286357998848,0.25291487574577],[-0.07884618639946,-0.024662617594004,0.28084200620651]],[[-0.3813536465168,0.2450130879879,-0.52957701683044],[0.41652217507362,-0.15970474481583,0.096143946051598],[0.32784363627434,0.043299674987793,-0.05579687282443]],[[-0.31441766023636,0.030626097694039,0.27488589286804],[-0.20990589261055,0.76795864105225,-0.4370793402195],[-0.082613341510296,-0.63978731632233,-0.065344534814358]],[[-0.064893282949924,-0.86832803487778,0.39974746108055],[0.65665847063065,-0.0038958943914622,-0.43335038423538],[-0.41442766785622,0.56533789634705,0.17302979528904]],[[0.30623134970665,-0.5625279545784,-0.00092859240248799],[0.27518889307976,-0.78890776634216,0.18731079995632],[0.28885391354561,0.28007405996323,0.02719316445291]],[[0.32049041986465,-0.99432623386383,0.98211979866028],[-0.33680388331413,-0.44975981116295,0.075881652534008],[-0.3983481824398,-0.85096335411072,0.14585736393929]],[[0.17925065755844,-0.73350977897644,0.21071426570415],[0.057077921926975,-0.021163145080209,-0.29630541801453],[-0.014899488538504,-0.053498916327953,0.0098821669816971]],[[0.2766754925251,0.045391567051411,-0.32201820611954],[-0.094834163784981,0.41980561614037,0.11835517734289],[-0.54895108938217,0.45559132099152,-0.35444706678391]],[[-0.0245654694736,0.052469749003649,-0.36200872063637],[0.32756301760674,-0.30295023322105,-0.078821204602718],[-0.23564095795155,0.21397589147091,-0.066827714443207]],[[-0.060086481273174,-0.054372660815716,-0.7185440659523],[-0.21821808815002,0.45261698961258,0.34331679344177],[0.31264421343803,0.12028061598539,-0.17888522148132]],[[0.60817122459412,-0.50846725702286,0.021054388955235],[-0.45277425646782,0.074595972895622,-0.057531174272299],[0.28643295168877,0.13154245913029,-0.098785884678364]],[[-0.096284501254559,0.031120147556067,0.13241861760616],[-0.096193604171276,0.1526462584734,0.57750934362411],[-0.46263581514359,-0.57432192564011,0.34090155363083]],[[-0.30164179205894,0.43024000525475,-0.00025196286151186],[-0.30898135900497,0.0035296434070915,-0.20742174983025],[0.40614661574364,0.14459051191807,-0.18898557126522]],[[0.37557691335678,0.15362755954266,0.21650777757168],[-0.33639207482338,0.36249887943268,-0.20370024442673],[-0.17612232267857,0.10124815255404,0.63228100538254]],[[-0.082385495305061,-0.21112601459026,0.0017462322721258],[0.63777422904968,0.59884017705917,-0.57786285877228],[-0.061350371688604,-0.15702901780605,-0.65225696563721]],[[0.092887565493584,-0.026960719376802,0.14747209846973],[-0.6539568901062,-0.15391118824482,0.035425044596195],[0.55523240566254,-0.26777392625809,0.26377150416374]],[[-0.56001085042953,0.59038817882538,-0.21143038570881],[-0.36235144734383,0.55434262752533,0.062208659946918],[-0.029183089733124,-0.56672239303589,0.78693926334381]],[[-0.22869701683521,-0.14171713590622,-0.057916801422834],[0.068393625319004,-0.40098428726196,-0.23839536309242],[0.34637147188187,0.021503809839487,-0.19282846152782]],[[0.38934433460236,-0.38035035133362,0.040955353528261],[0.48221203684807,0.19942235946655,0.17474094033241],[-0.09449103474617,-0.89079236984253,0.11985878646374]],[[0.23876832425594,0.69905465841293,0.4162018597126],[0.036939315497875,-0.10469806939363,0.048087697476149],[-0.94023448228836,0.11843879520893,0.27985924482346]],[[0.26540443301201,-0.21611294150352,0.15280036628246],[-0.79838901758194,-0.35057118535042,1.1140481233597],[-0.92372596263885,0.72920042276382,0.029401499778032]],[[0.12816521525383,0.47071158885956,0.14661027491093],[0.1084415987134,0.022693252190948,-0.14937344193459],[-0.81327033042908,0.080032974481583,0.010111913084984]],[[-0.74955642223358,-0.4446864426136,0.69858264923096],[-0.065120406448841,-0.11824535578489,-0.051921728998423],[0.33715826272964,0.60851103067398,-0.21130168437958]],[[-0.04675193503499,-0.065695241093636,0.067351020872593],[0.44175970554352,0.13221058249474,0.013855567201972],[-0.22113774716854,-0.27946415543556,-0.052843615412712]],[[-0.33638495206833,-0.79220056533813,0.32713735103607],[0.30421659350395,-0.54322797060013,0.33725997805595],[0.067944996058941,-0.082094304263592,-0.70854622125626]],[[-0.33475551009178,0.48932135105133,-0.042320564389229],[-0.64883649349213,-0.35895773768425,0.52030968666077],[-0.32230669260025,0.23151417076588,0.46608012914658]],[[-0.037641257047653,0.024472853168845,0.15799385309219],[0.065528713166714,-0.40126106142998,0.27504634857178],[0.17921443283558,-0.22717967629433,-0.043134015053511]],[[0.88578081130981,-0.16867806017399,0.012782641686499],[0.17248141765594,-0.11823765188456,-0.93634247779846],[-0.013657754287124,-0.21649345755577,0.38596466183662]],[[0.054597396403551,-0.14712171256542,0.1929809898138],[-0.083185970783234,0.048050463199615,-0.11673702299595],[0.79376822710037,-0.53641909360886,-0.19743312895298]],[[-0.3725069463253,0.097987912595272,0.26110583543777],[-0.24538421630859,0.83642488718033,-0.17334553599358],[-0.10673066228628,-0.25793421268463,-0.028848793357611]],[[-0.15548694133759,0.078282549977303,-0.37094542384148],[0.19859924912453,0.11760050058365,0.25253936648369],[0.040596581995487,-0.32412341237068,0.14700272679329]],[[-0.15590399503708,0.063386157155037,0.041576601564884],[0.067243948578835,0.0091720279306173,0.083486072719097],[0.22485412657261,0.04117276892066,-0.39212870597839]],[[0.57855242490768,-0.40758126974106,0.020068734884262],[-0.68689864873886,0.74304008483887,0.32878535985947],[-0.0065001319162548,-1.3738642930984,0.04532403871417]],[[-0.16539746522903,-0.23373851180077,0.0014901544200256],[0.26224541664124,0.19866947829723,-0.079923138022423],[-0.050424564629793,-0.090129964053631,0.13408754765987]],[[-0.43991982936859,-0.13050928711891,0.16108638048172],[-0.28990316390991,0.037401050329208,-0.29411754012108],[1.0827363729477,0.22515489161015,-0.33987668156624]],[[0.20902155339718,-0.18417720496655,-0.15204599499702],[0.3204137980938,-0.48861688375473,-0.15791855752468],[0.097960084676743,0.19980379939079,0.15276952087879]],[[0.16395246982574,0.22859793901443,0.069762662053108],[-0.0041503240354359,-0.11123017966747,-0.05949155241251],[0.062511771917343,-0.42560264468193,0.084410719573498]],[[0.22759751975536,-0.68892604112625,0.80491608381271],[0.1104294732213,0.18947385251522,0.44240152835846],[-0.87881648540497,0.12257681041956,-0.33688160777092]],[[0.84913289546967,-0.094969220459461,0.94871777296066],[0.12677782773972,-0.45660570263863,-0.41873341798782],[0.068181104958057,-0.94996958971024,-0.070478811860085]],[[-0.13368280231953,0.37842032313347,0.26236614584923],[-0.25484338402748,0.55995464324951,-0.81097459793091],[0.11967350542545,0.15996323525906,-0.27994030714035]],[[0.50092470645905,0.66460692882538,0.3084100484848],[-0.51485794782639,-0.40377134084702,-0.39319628477097],[-0.59348940849304,-0.13732260465622,0.3333568572998]],[[0.23059000074863,0.14884115755558,0.1789131462574],[-0.62245452404022,0.43843588232994,-0.12994775176048],[-0.23716482520103,-0.014477081596851,0.0093845892697573]],[[-0.067142687737942,-0.45684796571732,-0.089835673570633],[0.44608795642853,0.11117424815893,0.57466524839401],[-0.58495193719864,0.75216943025589,-0.6848229765892]],[[0.76855713129044,-0.13295288383961,-0.12147235125303],[-0.06359438598156,-0.35963553190231,0.087259776890278],[-0.03099081851542,0.18980793654919,-0.32917243242264]],[[-0.36854848265648,0.10445136576891,-0.80358552932739],[0.22798569500446,0.050806447863579,0.12002073228359],[-0.094017118215561,0.48734244704247,0.27782130241394]],[[-0.091411404311657,-0.035772059112787,-0.059912037104368],[-0.82531780004501,-0.1523834168911,0.45704311132431],[-0.21470640599728,0.73548501729965,0.18859097361565]],[[0.22132423520088,0.71846884489059,0.062605321407318],[0.50149381160736,-0.38939538598061,0.23065590858459],[-0.82268565893173,-0.13841949403286,0.38592967391014]],[[0.28257709741592,-0.70752567052841,-0.017467930912971],[0.56808072328568,0.039645235985518,-0.4923475086689],[0.68397545814514,-0.18687756359577,-0.1702928841114]],[[-0.68651044368744,-0.20716086030006,0.22929437458515],[-0.17368124425411,-0.087435491383076,0.28931811451912],[-0.11434727907181,0.51490747928619,0.25171554088593]],[[0.61452376842499,0.065884664654732,0.11184000223875],[-0.0041663707233965,-0.36946418881416,-0.60329645872116],[0.14236116409302,-0.047894723713398,0.10359919816256]],[[-1.0789057016373,-0.023634796962142,-0.59294581413269],[0.038283698260784,0.2595419883728,-0.20845478773117],[0.37360444664955,-0.74098658561707,0.36780226230621]],[[0.052867040038109,-0.55132430791855,-0.83362597227097],[0.24583269655704,0.55606406927109,0.52402836084366],[0.00035785755608231,0.026080155745149,-0.020601822063327]],[[0.97817659378052,0.6552010178566,-0.22591334581375],[0.094433449208736,0.13546667993069,0.27491253614426],[-0.54077041149139,0.33755859732628,-0.54689991474152]],[[-0.38994514942169,0.67839968204498,0.70226407051086],[-0.0177564304322,-0.13322918117046,-0.17308183014393],[-0.51849246025085,-0.098521843552589,-0.048371586948633]],[[0.12700091302395,-0.31124123930931,0.23795661330223],[-0.23360247910023,0.0019748057238758,0.89745688438416],[0.033871721476316,0.10201027989388,-0.68830573558807]],[[0.50004011392593,-0.55110651254654,-0.15925453603268],[0.36749956011772,-0.24227334558964,0.043061509728432],[0.052227627485991,0.18786083161831,-0.1954383701086]],[[-0.73753470182419,0.35513490438461,-0.011822231113911],[0.11945716291666,1.2233659029007,-1.461572766304],[-0.18897777795792,-0.31132340431213,0.56697767972946]]]],"nOutputPlane":1,"kW":3,"kH":3,"bias":[0.05092691257596],"nInputPlane":128}] \ No newline at end of file diff --git a/waifu2x-caffe/models/scale2.0x_model.json b/waifu2x-caffe/models/scale2.0x_model.json new file mode 100644 index 0000000..bf4786f --- /dev/null +++ b/waifu2x-caffe/models/scale2.0x_model.json @@ -0,0 +1 @@ +[{"weight":[[[[-0.0384068377316,-0.13892742991447,-0.074116952717304],[-0.0043417760170996,-0.13482336699963,-0.05335071310401],[0.094891287386417,0.13990740478039,0.21070368587971]]],[[[0.13741871714592,0.068341165781021,-0.049014247953892],[0.0052761328406632,-0.020446205511689,0.047407131642103],[-0.018339443951845,-0.027100933715701,-0.0057863597758114]]],[[[0.17850013077259,0.051763921976089,-0.0062319315038621],[-0.019090188667178,-0.055008850991726,-0.14032724499702],[-0.051505457609892,-0.099252879619598,0.14686788618565]]],[[[0.011584693565965,0.041832812130451,0.22183129191399],[-0.017042856663465,-0.095366142690182,0.044966705143452],[-0.001104052294977,0.0075620785355568,-0.017687179148197]]],[[[0.056010495871305,-0.014734433032572,-0.0077268448658288],[-0.0037417802959681,0.049426376819611,0.011491533368826],[0.20122179389,-0.038716461509466,0.001358984853141]]],[[[-0.11974314600229,-0.096629768610001,0.022501574829221],[-0.15950687229633,0.016204258427024,-0.0048143183812499],[-0.0058818515390158,-0.077900916337967,0.070097252726555]]],[[[0.18677078187466,0.08512531965971,-0.094906181097031],[-0.13356716930866,-0.041302714496851,0.071392714977264],[-0.052357491105795,-0.068726815283298,0.054427836090326]]],[[[0.0053220698609948,-0.045372687280178,0.0091264648362994],[-0.055567238479853,0.080604992806911,0.03300328925252],[0.028548095375299,-0.0070072221569717,-0.073056109249592]]],[[[0.062614254653454,0.020743507891893,0.090717323124409],[-0.05059414729476,-0.025958187878132,-0.056600227952003],[0.068253815174103,-0.099368497729301,0.0058380383998156]]],[[[-0.051913566887379,0.034508518874645,0.072087988257408],[0.055223364382982,0.1002099737525,0.060929197818041],[-0.027566574513912,-0.055635172873735,0.1332284361124]]],[[[0.0053810658864677,-0.034015078097582,0.039091166108847],[0.067370012402534,-0.039995789527893,0.033152762800455],[-0.077367462217808,-0.10275259613991,0.0075810179114342]]],[[[0.055246543139219,-0.021824644878507,-0.056356910616159],[-0.011086567305028,-0.034707847982645,-0.01062205247581],[0.018417455255985,-0.033489782363176,0.081017680466175]]],[[[0.069675326347351,-0.0053788628429174,-0.084019683301449],[0.012197759002447,0.069940567016602,0.0101995812729],[-0.007205271627754,-0.042496707290411,-0.00020025155390613]]],[[[0.005160924512893,-0.012700555846095,0.00043742376146838],[0.007410807069391,0.0022104119416326,-0.0013845138018951],[-0.011498863808811,0.011141174472868,-0.0059705930761993]]],[[[-0.13432091474533,-0.059144880622625,0.0071000410243869],[-0.080376535654068,-0.1028916016221,0.033781625330448],[0.22261963784695,0.15725891292095,-0.039436899125576]]],[[[-0.0054009575396776,0.016780998557806,-0.036862831562757],[0.029126670211554,0.1947954595089,0.032438453286886],[-0.041522920131683,0.078222215175629,-0.035954833030701]]],[[[-0.20466323196888,-0.0493089184165,0.044147897511721],[0.035806581377983,-0.077823840081692,-0.069676235318184],[-0.056482639163733,0.057556334882975,0.11039378494024]]],[[[-0.12130738049746,0.023681547492743,0.1482844799757],[-0.015676205977798,0.12520503997803,-0.091523543000221],[-0.018381720408797,-0.062010146677494,-0.014699504710734]]],[[[0.056062076240778,0.13458278775215,-0.015048936009407],[0.029680114239454,-0.075708620250225,-0.073742404580116],[-0.20702232420444,0.039310555905104,0.016626194119453]]],[[[0.016408381983638,-0.041782323271036,0.026805875822902],[-0.21834261715412,0.046119097620249,-0.068590626120567],[0.034240901470184,0.16751725971699,0.04184852167964]]],[[[-0.026545407250524,0.10628667473793,0.17844776809216],[-0.08607342094183,0.0073410971090198,-0.092349842190742],[0.11248207092285,-0.12235630303621,-0.071175262331963]]],[[[-0.082004234194756,-0.027182279154658,0.037735115736723],[0.1059235855937,-0.01444468088448,-0.021874720230699],[0.050808597356081,-0.057766038924456,-0.017497794702649]]],[[[-0.047046225517988,-0.091438919305801,0.016307087615132],[0.052277483046055,-0.052087541669607,0.11197429895401],[-0.037577878683805,0.11291097104549,-0.12515106797218]]],[[[-0.13993465900421,0.012330961413682,0.047452431172132],[-0.025041906163096,0.031894139945507,-0.12376341968775],[0.11259491741657,-0.10031549632549,0.18337726593018]]],[[[0.079038187861443,-0.054335225373507,-0.027360983192921],[-0.076235957443714,0.064125776290894,0.0046865176409483],[0.035985212773085,-0.07551658898592,-0.0032680626027286]]],[[[0.007575242780149,-0.01288790255785,-0.10423751920462],[-0.095097795128822,0.014446622692049,0.032480765134096],[0.18569420278072,0.014805553480983,-0.087853111326694]]],[[[-0.020989958196878,0.02020082809031,-0.037681024521589],[0.23604317009449,-0.17459669709206,-0.046965397894382],[0.16459223628044,-0.19205477833748,0.053599249571562]]],[[[0.053143266588449,-0.18212997913361,0.25205251574516],[-0.16748039424419,-0.063484288752079,-0.011665850877762],[-0.16155517101288,0.13892666995525,0.1489220559597]]],[[[-0.0051369988359511,-0.076215103268623,-0.024128202348948],[-0.039336007088423,-0.12557350099087,-0.033354476094246],[-0.0027135596610606,0.0074726156890392,-0.052615191787481]]],[[[-0.0074770995415747,0.11980102956295,-0.13483113050461],[0.069204583764076,-0.051610339432955,-0.022149598225951],[-0.028977453708649,-0.015657532960176,0.059399850666523]]],[[[-0.049020010977983,-0.066347807645798,0.06056047976017],[-0.076703995466232,0.062893152236938,-0.10911896079779],[-0.075646944344044,0.2010887414217,0.02662380412221]]],[[[0.23472860455513,0.073280669748783,-0.0038808749523014],[-0.11620356142521,0.087821863591671,-0.15155136585236],[-0.031747400760651,0.053550235927105,-0.13821476697922]]]],"nOutputPlane":32,"kW":3,"kH":3,"bias":[0.0033591971732676,-0.11600551754236,0.0016319995047525,-0.17638401687145,-0.11129533499479,0.042587392032146,0.0034673560876399,-0.0061707934364676,-0.045175999403,-0.091385960578918,0.0063353884033859,-0.011279388330877,-0.044397205114365,-0.0043302457779646,0.003554307622835,-0.21644094586372,0.049074459820986,-0.022097304463387,0.0014598603593186,0.0042208153754473,0.0033948738127947,-0.0016832939581946,-0.00026096109650098,-0.026219172403216,-0.001475803903304,-0.0090352799743414,0.0038857976906002,-0.00012081145541742,0.099738404154778,-0.016280902549624,-0.016022359952331,0.0011439843801782],"nInputPlane":1},{"weight":[[[[0.0035268110223114,0.10892452299595,0.03225726634264],[-0.12277691066265,-0.034379631280899,0.12627245485783],[0.1893435716629,0.06185595318675,-0.0087701240554452]],[[0.13241472840309,-0.16741980612278,0.10158104449511],[-0.043994903564453,0.029231684282422,0.00096451857825741],[0.024295058101416,-0.021223833784461,0.018202168866992]],[[0.085882619023323,-0.023659788072109,-0.0040082959458232],[0.10776330530643,-0.1922572851181,0.16861279308796],[-0.092613525688648,0.088233157992363,-0.064787976443768]],[[0.11663594096899,-0.003961400128901,-0.22740466892719],[0.15481273829937,0.13339568674564,-0.0097738765180111],[-0.18068976700306,0.0089379092678428,0.044106882065535]],[[-0.0080333082005382,-0.015772016718984,-0.008610438555479],[0.018116535618901,-0.0085581913590431,-0.060065392404795],[-0.030854854732752,-0.092844866216183,0.10228421539068]],[[-0.096143290400505,-0.066340900957584,-0.14965982735157],[-0.008109669201076,0.15029935538769,0.023678181692958],[0.026510532945395,0.14524298906326,0.0087879626080394]],[[-0.0047016032040119,0.13069671392441,0.021494790911674],[0.041267946362495,0.087743364274502,0.017705237492919],[-0.13533248007298,-0.16309605538845,0.054762918502092]],[[-0.02025156468153,-0.087965063750744,0.0030181345064193],[0.049317713826895,0.059981986880302,-0.075897291302681],[-0.02650011330843,0.04033013433218,0.013382929377258]],[[0.080092325806618,0.029595524072647,0.16063770651817],[0.013604598119855,-0.060999482870102,-0.20106357336044],[-0.039897512644529,0.075953505933285,-0.053707741200924]],[[0.083138436079025,0.044234991073608,0.11111648380756],[-0.1539835780859,0.061757620424032,0.085750378668308],[-0.13567090034485,-0.052218601107597,0.029113680124283]],[[0.014233037829399,0.0030094403773546,-0.048845209181309],[-0.10715096443892,0.0052027679048479,0.027420809492469],[-0.043345514684916,0.13958431780338,0.016049997881055]],[[-0.062379442155361,-0.068821057677269,0.045727226883173],[0.15832476317883,-0.062685325741768,-0.012933102436364],[0.020788947120309,-0.079440467059612,-0.12138560414314]],[[-0.062725052237511,0.052389971911907,-0.052298475056887],[-0.062712840735912,0.094320937991142,-0.020239178091288],[0.016485165804625,0.021930372342467,0.036209791898727]],[[0.070077061653137,0.10559940338135,-0.075721822679043],[0.031121855601668,-0.027459440752864,-0.011823350563645],[-0.093481309711933,-0.0037409842479974,-0.025723103433847]],[[-0.071758821606636,-0.036118164658546,0.0057465122081339],[-0.099052749574184,-0.06890432536602,0.054011750966311],[0.17858020961285,0.024943294003606,-0.053583607077599]],[[-0.14411853253841,0.31905218958855,0.19482409954071],[-0.19813820719719,-0.022984365001321,-0.0085835661739111],[-0.25350517034531,-0.16624034941196,-0.023719059303403]],[[-0.042172070592642,-0.043976373970509,-0.16418543457985],[0.050440143793821,0.0028909305110574,-0.16485337913036],[0.099139831960201,0.077021665871143,-0.24819603562355]],[[-0.12394567579031,0.0086968662217259,0.059786558151245],[-0.058541364967823,-0.0022425451315939,-0.0030951073858887],[-0.076959021389484,0.040955122560263,0.022488309070468]],[[0.0032010723371059,-0.030827101320028,-0.10682108998299],[0.086579822003841,-0.044126015156507,0.027734082192183],[0.012235903181136,-0.092172712087631,-0.094183459877968]],[[-0.022875063121319,-0.055560171604156,0.0035195595119148],[-0.13121528923512,-0.024419561028481,0.065130859613419],[0.087169423699379,-0.0089353639632463,0.050239615142345]],[[-0.14181540906429,0.05050778016448,-0.15038074553013],[-0.0023824837990105,0.054311957210302,-0.1177336499095],[0.084745340049267,0.054517030715942,0.17387022078037]],[[0.089824058115482,-0.068464107811451,-0.067316219210625],[0.1030695065856,0.037962164729834,-0.092497006058693],[0.03455712646246,0.0031892079859972,0.012220720760524]],[[-0.055178768932819,-0.11129549890757,-0.083807870745659],[0.14700381457806,0.062916465103626,-0.050615176558495],[0.031674902886152,0.24208888411522,-0.1294379979372]],[[0.025920700281858,0.018622156232595,-0.0055227233096957],[-0.19483391940594,0.03968245908618,0.03448199480772],[-0.054704003036022,-0.030343787744641,-0.046353969722986]],[[-0.11610799282789,0.15694253146648,-0.21995756030083],[-0.089555829763412,0.081872321665287,-0.01372423581779],[0.060584232211113,-0.11569693684578,0.14407314360142]],[[0.12077128887177,0.099619448184967,0.14549812674522],[0.068152941763401,0.049074690788984,-0.11442410200834],[-0.18490950763226,-0.14123573899269,-0.08335480093956]],[[0.1052620857954,-0.19318254292011,0.09729315340519],[0.018560340628028,-0.071407571434975,0.036793418228626],[-0.20901140570641,-0.035976514220238,-0.22829306125641]],[[0.010393037460744,-0.070637367665768,-0.06762070953846],[-0.011642653495073,-0.034256186336279,-0.019331464543939],[0.022944899275899,-0.098892383277416,0.10404443740845]],[[0.079952605068684,-0.071289978921413,-0.09573120623827],[0.16848276555538,0.068110339343548,-0.14729052782059],[0.11444433778524,0.19762454926968,0.061744596809149]],[[-0.024728300049901,-0.10307916253805,0.038590520620346],[-0.062231041491032,-0.073960989713669,0.020772630348802],[-0.0014221463352442,0.12580914795399,-0.10265354812145]],[[-0.014983530156314,-0.30818501114845,0.17109023034573],[-0.031747795641422,-0.22208864986897,-0.032668363302946],[-0.032246690243483,-0.026438167318702,-0.08807335048914]],[[-0.22556824982166,-0.0048252618871629,0.15897960960865],[-0.096358969807625,-0.060476470738649,-0.044331263750792],[-0.071633704006672,0.18587498366833,0.19831414520741]]],[[[-0.092379413545132,-0.063074231147766,-0.0054044183343649],[0.030814418569207,-0.052298326045275,0.034703593701124],[0.082380786538124,0.084660269320011,-0.082510732114315]],[[-0.082599490880966,0.097012639045715,0.02747980505228],[-0.007752601057291,-0.077230766415596,-0.097304098308086],[-0.091858476400375,-0.087928123772144,-0.15428924560547]],[[-0.054543923586607,0.072704143822193,0.12146773934364],[-0.020365156233311,0.093864820897579,0.0018958288710564],[0.0300701726228,-0.19985754787922,-0.020313907414675]],[[-0.04579795897007,-0.15286548435688,0.02726636826992],[-0.094244197010994,0.12944494187832,0.00080241134855896],[-0.11566615104675,-0.18803496658802,0.015568934381008]],[[0.01085595972836,-0.18116953969002,-0.22959312796593],[-0.086866401135921,0.0036718451883644,-0.1319025605917],[-0.069889403879642,-0.071850456297398,0.016446461901069]],[[0.038274310529232,-0.0028508475515991,0.15889103710651],[0.12152791023254,0.093629628419876,0.1184196844697],[0.024599153548479,0.10337740927935,0.21319824457169]],[[0.0487448759377,0.12202215194702,-0.083416178822517],[0.02291121520102,-0.1799920797348,0.056573420763016],[0.023260874673724,0.049189675599337,-0.030655927956104]],[[0.066533140838146,-0.08111859112978,-0.071457296609879],[-0.093643970787525,0.13794347643852,-0.1304587572813],[-0.061110302805901,0.10638021677732,0.096757970750332]],[[-0.039444267749786,0.053245257586241,-0.046191725879908],[-0.10885888338089,-0.17756347358227,0.14489057660103],[0.19168607890606,-0.074866905808449,-0.018287733197212]],[[-0.22200986742973,-0.042122602462769,0.08868832886219],[-0.20830400288105,-0.10660333186388,-0.16894102096558],[-0.084010601043701,-0.11772659420967,0.16468422114849]],[[-0.018174914643168,-0.16009804606438,0.12647876143456],[0.0095198256894946,0.012783763930202,0.002184254815802],[-0.1001875475049,0.072219349443913,-0.076348915696144]],[[0.0096484804525971,-0.11141476780176,0.11862728744745],[-0.099891468882561,0.0011238468578085,-0.074283741414547],[0.026039611548185,0.055369932204485,0.04900524020195]],[[-0.070090360939503,-0.057426430284977,-0.014284737408161],[-0.021367553621531,0.18947148323059,-0.18841595947742],[0.020988972857594,0.08404516428709,0.029449764639139]],[[0.17879892885685,0.0026163593865931,-0.275654733181],[-0.08413989841938,0.012356142513454,0.063439905643463],[0.01086821872741,0.096959196031094,-0.0090756015852094]],[[0.11301971226931,0.0089520029723644,0.031637988984585],[-0.053273312747478,0.057582952082157,-0.049681711941957],[-0.081039935350418,0.055864676833153,-0.09725708514452]],[[-0.0068881204351783,0.082386128604412,-0.057442467659712],[-0.19023261964321,-0.14634275436401,-0.075910858809948],[-0.053526233881712,-0.18663384020329,-0.013825044035912]],[[0.057304244488478,-0.069315135478973,0.048373501747847],[0.017414633184671,0.11698476970196,-0.030645150691271],[0.0027344801928848,0.074461579322815,0.040886025875807]],[[-0.05631285533309,0.0088793449103832,-0.01017855014652],[-0.10502064228058,0.050140719860792,-0.15412697196007],[0.011601633392274,0.074094027280807,-0.061796799302101]],[[0.0016722845612094,0.080217942595482,0.062053848057985],[0.039944473654032,-0.14474953711033,-0.05091842263937],[0.090062640607357,0.042388971894979,-0.087848037481308]],[[0.010406564921141,-0.06616897881031,-0.0068260715343058],[0.034524258226156,0.00030750245787203,-0.12447428703308],[0.078302279114723,-0.0016600408125669,0.08512044698]],[[0.023221453651786,0.088177844882011,-0.063694901764393],[0.021478425711393,0.040850721299648,-0.013847633264959],[0.021315122023225,-0.10864389687777,0.0065427753143013]],[[-0.02768149971962,-0.035448234528303,-0.018745327368379],[-0.010438090190291,-0.10069531947374,-0.012044443748891],[-0.0090300682932138,0.079324051737785,0.0774255245924]],[[-0.091650702059269,0.031299035996199,-0.057779341936111],[0.003794604446739,0.14489707350731,-0.033412363380194],[-0.054308816790581,-0.0022062084171921,0.073863498866558]],[[0.10926956683397,-0.21093052625656,-0.027885546907783],[-0.024441193789244,0.039175745099783,-0.055960074067116],[-0.042010322213173,-0.037897277623415,-0.0055946395732462]],[[0.052284944802523,-0.011528993956745,0.077976822853088],[-0.087158121168613,-0.021442590281367,0.10937338322401],[0.027277143672109,-0.13854794204235,0.033709149807692]],[[-0.15975391864777,-0.058546457439661,0.073907807469368],[0.10335632413626,0.046321392059326,-0.12731693685055],[0.013577685691416,-0.10703365504742,0.0037947136443108]],[[0.07350766658783,0.051921404898167,-0.041046377271414],[-0.069965079426765,-0.058184511959553,-0.006325941067189],[0.11794528365135,-0.070835120975971,-0.014808992855251]],[[0.013476775027812,0.0070462496951222,-0.022169683128595],[-0.14016292989254,-0.026105631142855,0.0595025382936],[0.010705220513046,0.040662247687578,-0.0051452624611557]],[[0.12114569544792,0.078753814101219,0.034498609602451],[0.16122110188007,0.031391367316246,-0.0044239279814065],[0.08694402128458,0.33156162500381,0.25843077898026]],[[-0.0068920170888305,-0.19352957606316,0.10643564164639],[0.018452746793628,-0.095131076872349,0.13567598164082],[0.036471337080002,-0.019285343587399,0.023724213242531]],[[0.016321644186974,-0.044250342994928,-0.015750709921122],[-0.088919170200825,0.10269171744585,-0.031334389001131],[-0.046839002519846,0.033696159720421,-0.095352552831173]],[[-0.043608516454697,-0.051386058330536,-0.046835668385029],[0.088498882949352,-0.012664722278714,-0.010217119939625],[-0.021924965083599,-0.084510892629623,0.10023487359285]]],[[[-0.1378012150526,-0.075606726109982,-0.11272525042295],[-0.14584171772003,-0.1128836274147,-0.0097780367359519],[0.022054815664887,-0.012508846819401,0.10927403718233]],[[-0.072248794138432,-0.046983115375042,0.12485928833485],[0.01921103708446,-0.26571989059448,-0.0043287198059261],[0.047718644142151,-0.019705355167389,-0.11665556579828]],[[0.076691038906574,-0.25283429026604,0.22753031551838],[0.071598544716835,-0.1835930198431,0.11108994483948],[-0.091535232961178,-0.26271095871925,0.1713712066412]],[[0.069512829184532,0.47374573349953,-0.27253469824791],[-0.0054452968761325,0.12050976604223,0.14612644910812],[-0.31789991259575,-0.26759904623032,-0.066293247044086]],[[0.13707239925861,-0.060474779456854,0.04711976647377],[-0.23596167564392,0.09160266071558,-0.13615250587463],[-0.028115885332227,-0.019356317818165,0.046688728034496]],[[0.019265757873654,-0.12051824480295,0.040811322629452],[0.049631468951702,-0.065612301230431,-0.033382546156645],[-0.13317845761776,-0.062657609581947,-0.08573804050684]],[[0.017507147043943,-0.29099708795547,0.10105288773775],[0.11069016158581,-0.10725043714046,0.079694859683514],[0.038023550063372,-0.094476759433746,0.13540250062943]],[[-0.16013650596142,0.14168234169483,0.026683337986469],[-0.24231539666653,-0.010021940805018,0.16203166544437],[0.094928592443466,-0.043937109410763,-0.18356117606163]],[[0.02844606526196,0.038871392607689,-0.20979878306389],[0.04294764995575,0.016603281721473,0.13054449856281],[-0.10902859270573,-0.12746512889862,-0.14780333638191]],[[0.00038307646173052,0.083324946463108,-0.014069863595068],[0.046972654759884,-0.065895572304726,-0.1190577968955],[-0.0030668624676764,0.10402259230614,0.10775505006313]],[[0.072492100298405,0.26365810632706,0.072230957448483],[0.093907579779625,-0.11736868321896,0.051434393972158],[-0.12743185460567,-0.018365984782577,0.031198548153043]],[[0.17387560009956,-0.024016285315156,0.26575723290443],[-0.048792913556099,-0.19501404464245,-0.058379419147968],[0.035654675215483,0.050757564604282,-0.17458301782608]],[[0.081152483820915,-0.056373178958893,0.11976757645607],[0.082710780203342,-0.25691017508507,-0.29404172301292],[0.055535729974508,-0.05121772736311,0.02960642054677]],[[-0.062546111643314,0.11561668664217,-0.0066073681227863],[0.03244224563241,0.029105575755239,-0.15975335240364],[0.068598404526711,0.0098627982661128,-0.038240041583776]],[[0.11713294684887,-0.038933370262384,0.14135447144508],[-0.17300298810005,-0.047965481877327,0.21967332065105],[-0.16685606539249,0.031881414353848,-0.023952025920153]],[[-0.042285710573196,0.079104609787464,-0.082709319889545],[-0.017958099022508,-0.15606939792633,-0.27908828854561],[-0.029197352007031,-0.19433073699474,-0.18699637055397]],[[-0.062388818711042,0.062110919505358,-0.0057304301299155],[0.26953652501106,-0.0475720949471,-0.083438046276569],[-0.068593874573708,-0.026571927592158,-0.062974259257317]],[[0.062909699976444,0.14771407842636,0.017988076433539],[-0.099875316023827,-0.083955377340317,0.047776091843843],[-0.11285523325205,-0.073144152760506,0.05200918763876]],[[-0.095047898590565,-0.24799203872681,0.28108596801758],[0.10991411656141,-0.045478392392397,0.034141108393669],[-0.040123213082552,0.052300877869129,-0.090432070195675]],[[0.059230525046587,0.021650364622474,-0.063168540596962],[0.2026114910841,0.038819465786219,-0.13083705306053],[0.082831256091595,-0.039032500237226,-0.11550708115101]],[[0.021568391472101,0.020435037091374,-0.020348945632577],[-0.14017644524574,0.16529116034508,-0.019087830558419],[-0.1477920114994,0.087877087295055,-0.25125139951706]],[[0.036255430430174,-0.14046631753445,-0.10813307762146],[0.088997967541218,-0.094635106623173,0.13091079890728],[-0.2017420977354,0.17342877388,-0.14292097091675]],[[-0.13851588964462,0.17552684247494,-0.11735989153385],[-0.053481366485357,-0.17148724198341,0.037921469658613],[0.057297106832266,0.040892027318478,-0.002952093956992]],[[0.048546265810728,-0.1044674217701,-0.070647992193699],[0.2393898665905,-0.03860642015934,-0.23427799344063],[0.048390284180641,0.1819983869791,-0.052852809429169]],[[-0.083153158426285,0.052017483860254,-0.012735368683934],[-0.26955446600914,-0.11134492605925,0.1401184797287],[-0.025067884474993,0.25829544663429,0.10340640693903]],[[0.11696638911963,0.063324071466923,0.036698170006275],[0.011789125390351,-0.088352113962173,0.001071352395229],[-0.15158696472645,-0.12170474976301,-0.134930357337]],[[0.064437255263329,-0.08485408872366,0.12566997110844],[0.26111030578613,-0.046242587268353,0.010810481384397],[-0.072434991598129,0.038690183311701,0.0018918206915259]],[[0.037733357399702,0.091564804315567,-0.18227934837341],[-0.13717792928219,-0.037610292434692,-0.17295661568642],[-0.11171010881662,0.03737498819828,0.26888436079025]],[[-0.021308057010174,-0.1017801836133,-0.0018124715425074],[-0.11576261371374,0.079819977283478,-0.010875162668526],[-0.01378458365798,-0.17948657274246,0.069209359586239]],[[0.12857231497765,0.026566525921226,0.28435179591179],[0.095607720315456,-0.19529989361763,-0.22376243770123],[-0.14799071848392,-0.084887869656086,0.14471781253815]],[[0.0072185299359262,0.082585066556931,0.057117305696011],[-0.044009640812874,0.072837769985199,0.061331104487181],[-0.1039367094636,-0.094365209341049,-0.0095175392925739]],[[0.093615420162678,-0.28932011127472,-0.11281289160252],[-0.094011314213276,-0.015365133062005,-0.2720545232296],[0.18516671657562,-0.037692971527576,0.16978886723518]]],[[[-0.0093702273443341,-0.011258537881076,0.033962309360504],[-0.13784910738468,-0.48799833655357,-0.10332433134317],[-0.087528981268406,-0.017619501799345,-0.033296667039394]],[[-0.074722208082676,0.069818668067455,0.11000655591488],[0.088204577565193,-0.19050703942776,-0.047746323049068],[-0.085804425179958,0.001579970237799,0.17149457335472]],[[0.11591413617134,-0.083731390535831,-0.15429922938347],[-0.23321548104286,-0.31109163165092,-0.0046034827828407],[-0.018261017277837,-0.087181232869625,0.13306179642677]],[[-0.16480749845505,-0.01523947622627,-0.048823066055775],[0.42219451069832,-0.18852066993713,-0.23173154890537],[0.065043926239014,0.25450897216797,-0.10862766206264]],[[-0.06304245442152,0.016494257375598,0.039522986859083],[-0.020239911973476,-0.01063943374902,0.10592469573021],[0.037648495286703,-0.0071605010889471,0.030774073675275]],[[0.020222503691912,-0.057235404849052,-0.11911180615425],[-0.16050145030022,0.1095868870616,-0.024997090920806],[0.19484013319016,-0.11168336868286,0.093958333134651]],[[0.014533795416355,-0.19023042917252,0.043694254010916],[-0.10003406554461,0.013130616396666,-0.25916260480881],[-0.04350621253252,0.047182157635689,0.21767963469028]],[[-0.0060312664136291,0.12621131539345,-0.060773983597755],[-0.023376313969493,-0.11411683261395,0.16821521520615],[-0.083706848323345,-0.034003805369139,0.061157416552305]],[[0.081269256770611,0.04090465977788,0.1031366288662],[0.1341822296381,0.11699368059635,-0.14348414540291],[-0.066074460744858,-0.053118955343962,-0.085194051265717]],[[0.0098866997286677,-0.025080678984523,-0.051301781088114],[0.055365674197674,-0.056556567549706,0.099790289998055],[-0.088283881545067,0.016394490376115,0.013611254282296]],[[-0.00166087935213,-0.091502584517002,0.097673624753952],[0.015179144218564,-0.0041492939926684,-0.1570121794939],[0.21569599211216,0.021672276780009,-0.1015335097909]],[[0.0036635368596762,0.019716963171959,0.014277946203947],[-0.080400660634041,0.15813452005386,0.0534105040133],[-0.0065830824896693,0.0014895057538524,-0.21690759062767]],[[0.0020739457104355,-0.051796898245811,0.003563467413187],[0.037941846996546,0.013182160444558,-0.09148845076561],[-0.1213955655694,-0.0080609107390046,0.093883171677589]],[[0.069522581994534,-0.13736027479172,0.061393730342388],[-0.097068957984447,0.075466677546501,0.05344120785594],[0.044835690408945,0.011466450989246,0.026258885860443]],[[-0.14583283662796,0.10968122631311,0.051732409745455],[0.047930803149939,-0.28516536951065,-0.43504017591476],[0.097428873181343,-0.015869198367,-0.085964486002922]],[[-0.25494232773781,0.38341608643532,-0.16515319049358],[0.24140353500843,0.42002582550049,0.32929784059525],[-0.4163076877594,-0.062992803752422,-0.21340468525887]],[[0.040368232876062,0.060841079801321,-0.15642015635967],[-0.11301375925541,0.083659075200558,0.13705393671989],[0.15574337542057,-0.11941028386354,-0.084766030311584]],[[0.27676594257355,0.15553565323353,0.018396167084575],[-0.27813133597374,-0.15097486972809,0.16957731544971],[0.034067068248987,-0.111462213099,0.027299856767058]],[[0.25200736522675,0.13240499794483,0.055828105658293],[-0.068551927804947,-0.2372782677412,-0.00066243333276361],[0.082011505961418,-0.13736738264561,-0.071920044720173]],[[0.12535564601421,0.14128650724888,0.22274568676949],[-0.21677583456039,0.055287670344114,-0.63909703493118],[-0.017964694648981,-0.1498139500618,0.19750194251537]],[[-0.010914082638919,-0.17952577769756,-0.044279143214226],[0.028190130367875,-0.1154290959239,-0.17886891961098],[0.0064120162278414,0.035163342952728,-0.067872881889343]],[[0.14309041202068,-0.19084447622299,-0.025399027392268],[-0.11950327455997,0.10232674330473,-0.019550643861294],[0.10757920891047,-0.048852097243071,0.021347060799599]],[[-0.078183755278587,-0.0020919933449477,-0.057188682258129],[-0.11459784954786,-0.012711836025119,0.022413354367018],[0.11455311626196,0.13478597998619,0.050350178033113]],[[-0.00059032865101472,-0.045662824064493,-0.038064863532782],[-0.16461251676083,0.00909916870296,0.075232729315758],[0.12718363106251,-0.05822354182601,0.12893404066563]],[[-0.043729692697525,-0.07794988155365,0.1392914801836],[0.061207357794046,0.032161634415388,-0.1711545586586],[-0.013115362264216,0.042914476245642,0.032919686287642]],[[0.051610972732306,0.12833227217197,-0.010271342471242],[0.032849416136742,-0.053083341568708,-0.16353683173656],[-0.067076951265335,-0.003287271829322,0.058387700468302]],[[0.10952358692884,-0.46056029200554,0.14874765276909],[0.13976629078388,-0.32311552762985,0.061990465968847],[0.1581364274025,-0.055769346654415,-0.059173882007599]],[[0.024652525782585,-0.067337833344936,0.10683876276016],[-0.081283651292324,-0.30644762516022,-0.37944954633713],[0.041282128542662,-0.069083720445633,0.12921683490276]],[[-0.10911574214697,0.034810155630112,0.024393860250711],[-0.041964441537857,-0.068942554295063,0.11825890094042],[0.1347054541111,0.11004018038511,-0.12062245607376]],[[-0.086174465715885,-0.021756561473012,0.088745713233948],[0.11370599269867,0.0097203766927123,-0.1118051931262],[-0.0066655636765063,0.011738539673388,-0.0089469477534294]],[[-0.037815846502781,-0.14130789041519,0.077357277274132],[0.05791436880827,0.051857702434063,0.10733440518379],[0.0086840055882931,0.030228683724999,0.061265587806702]],[[-0.29221791028976,-0.29644295573235,0.0099203875288367],[-0.47520858049393,-0.073522165417671,-0.0290831848979],[-0.014228554442525,0.012321148067713,0.079945467412472]]],[[[0.030234597623348,0.021714076399803,-0.062823675572872],[-0.081554785370827,0.1168280094862,0.034751195460558],[0.027981104329228,-0.092768453061581,0.097694560885429]],[[-0.00896733161062,0.086538583040237,-0.069467157125473],[-0.014492553658783,0.063356146216393,-0.074442096054554],[-0.029044024646282,-0.018536137416959,0.11701290309429]],[[0.12525615096092,-0.1019179970026,0.096068009734154],[-0.063760928809643,0.044396605342627,-0.0069833253510296],[-0.079243272542953,-0.029290663078427,-0.13647764921188]],[[0.19599191844463,-0.0044048218987882,0.047885987907648],[0.10535588115454,-0.0012219846248627,-0.0057772798463702],[0.041007544845343,0.033676940947771,0.088448151946068]],[[0.027877978980541,-0.01927755959332,-0.068916879594326],[-0.0086632929742336,-0.046525292098522,-0.12886807322502],[-0.13535922765732,-0.081376761198044,0.003335154382512]],[[0.16483713686466,-0.096257321536541,-0.049935270100832],[0.046509489417076,0.052725177258253,0.12235497683287],[0.15595257282257,0.064820371568203,0.13036276400089]],[[0.0078356405720115,-0.07445851713419,-0.12225766479969],[0.14269152283669,0.017322953790426,-4.618060120265e-05],[-0.11120258271694,-0.0043867412023246,0.068002454936504]],[[-0.11506851017475,0.0091258613392711,0.018494414165616],[0.14060784876347,-0.0074996487237513,0.04535835236311],[-0.23531240224838,0.01164644677192,0.093015447258949]],[[0.1336190700531,-0.012368179857731,-0.026768583804369],[0.00357486307621,-0.047084260731936,0.00049922708421946],[0.085799761116505,0.066473469138145,-0.025158299133182]],[[-0.059580896049738,-0.0023382485378534,0.023218434303999],[-0.050756029784679,0.13952793180943,-0.10234517604113],[0.00076569453813136,-0.17773827910423,-0.22914934158325]],[[0.1493451744318,0.11303363740444,-0.21608866751194],[0.1362439841032,0.057796936482191,0.052924692630768],[-0.067012660205364,-0.029134273529053,-0.022767458111048]],[[0.088081836700439,0.015295640565455,0.1122547313571],[0.11716187000275,0.011602289974689,-0.20351538062096],[0.097001612186432,-0.20271454751492,0.11742081493139]],[[-0.030356103554368,-0.088511109352112,-0.10854498296976],[0.073443710803986,0.092316433787346,0.077808037400246],[-0.0024310015141964,-0.01626899279654,-0.0032617959659547]],[[-0.14723333716393,0.033888395875692,0.048837725073099],[0.10060375928879,0.16531309485435,0.059848643839359],[-0.083031550049782,-0.013140209950507,-0.089991860091686]],[[0.0079524591565132,-0.12318026274443,0.014615492895246],[0.025878673419356,0.12958261370659,-0.062120147049427],[-0.05384286865592,-0.030451726168394,0.088452406227589]],[[0.043219637125731,-0.003719644388184,0.030623717233539],[-0.10176859050989,-0.08895118534565,-0.039418313652277],[-0.003815115429461,0.073877640068531,0.05797865986824]],[[0.026423195376992,-0.028716333210468,-0.10712190717459],[0.092505268752575,0.076362550258636,0.062363665550947],[-0.013291365467012,-0.0039520487189293,-0.054740246385336]],[[0.048868227750063,0.22791355848312,-0.07443542778492],[-0.1057653054595,0.081670470535755,0.05796205252409],[-0.029717771336436,-0.030880566686392,0.069884978234768]],[[-0.14435562491417,0.17557768523693,0.041624486446381],[0.12714029848576,0.1202696710825,-0.22950753569603],[0.06080611422658,-0.20842085778713,0.0056496509350836]],[[0.0088347941637039,0.058500342071056,0.081485442817211],[-0.055919740349054,-0.025534244254231,-0.034512083977461],[-0.0051330565474927,-0.15727566182613,0.035955123603344]],[[-0.029097156599164,0.047347173094749,0.02634684741497],[-0.07157414406538,-0.027382716536522,-0.0080096339806914],[-0.024485021829605,0.031586322933435,0.059855043888092]],[[0.11521881818771,-0.11118544638157,-0.039498187601566],[0.094123460352421,0.023923721164465,0.065622873604298],[0.11921606212854,-0.034126620739698,-0.072044022381306]],[[0.054249551147223,-0.04351082444191,-0.027472048997879],[0.24045163393021,-0.036108341068029,-0.10844542831182],[0.12391560524702,0.018407972529531,-0.040971770882607]],[[-0.04081467166543,-0.037138715386391,0.065878428518772],[0.033538974821568,-0.072553053498268,0.012924279086292],[0.034393444657326,0.055769264698029,0.095740899443626]],[[-0.03290444239974,-0.069392174482346,0.038515392690897],[-0.016482381150126,0.0027556256391108,-0.15247665345669],[0.11630386859179,-0.028480894863605,0.073074415326118]],[[0.084196962416172,0.013909844681621,-0.014461684040725],[0.060336548835039,0.086463458836079,0.0014492766931653],[0.059415061026812,0.099210560321808,-0.16056525707245]],[[0.077806897461414,-0.036285929381847,-0.15356516838074],[0.1299981623888,-0.096337683498859,-0.043438956141472],[0.033385083079338,-0.048390157520771,-0.071726642549038]],[[-0.057718873023987,-0.023907661437988,0.19904279708862],[-0.058533921837807,-0.02502666041255,-0.13829775154591],[0.084107786417007,-0.05153226479888,0.09170550853014]],[[0.13213935494423,0.052109897136688,0.075485296547413],[0.034125614911318,0.13790956139565,0.11966030299664],[-0.0095810508355498,-0.016040336340666,0.17268027365208]],[[0.049185559153557,0.093765139579773,-0.14266784489155],[0.049556229263544,0.12865078449249,-0.027326636016369],[-0.12264799326658,-0.025648469105363,-0.13558451831341]],[[-0.093650132417679,-0.032732725143433,0.16844613850117],[-0.13240349292755,0.024096107110381,-0.022062912583351],[-0.066501520574093,0.066282175481319,0.077227503061295]],[[0.16411562263966,-0.11068028956652,0.038871802389622],[0.0087526338174939,-0.0062461225315928,0.037995707243681],[0.046633291989565,-0.14868783950806,-0.17140844464302]]],[[[-0.071982778608799,0.099693983793259,-0.18076486885548],[-0.021227411925793,0.085765540599823,-0.057042088359594],[-0.037583734840155,-0.060983642935753,-0.21775324642658]],[[-0.35417857766151,-0.042361337691545,-0.057797066867352],[0.066876262426376,-0.099541760981083,0.020081168040633],[0.039544172585011,0.11172413080931,0.062529176473618]],[[-0.025251479819417,-0.13125205039978,-0.059719789773226],[-0.24887152016163,-0.044999558478594,0.03642475232482],[-0.12436527758837,0.028616791591048,0.075778171420097]],[[-0.24137595295906,0.075517475605011,-0.091231413185596],[-0.031767323613167,0.012962964363396,0.23557075858116],[-0.027535852044821,-0.03857135027647,-0.081380389630795]],[[-0.079037696123123,-0.013694551773369,-0.039194647222757],[0.059769045561552,0.011310108937323,-0.061800245195627],[0.051267091184855,0.27120998501778,-0.0024287898559123]],[[-0.08092088252306,0.10600444674492,0.073272585868835],[-0.056977141648531,0.046614933758974,0.070793278515339],[0.052708648145199,-0.03718202188611,0.046648092567921]],[[-0.14099842309952,-0.14023734629154,0.15917418897152],[-0.1059717014432,-0.055057525634766,-0.038939598947763],[-0.050585597753525,-0.18380555510521,-0.073451064527035]],[[-0.0037722056731582,-0.031926982104778,0.077059485018253],[-0.022496374323964,0.051672365516424,-0.028205065056682],[0.059362329542637,-0.16137240827084,0.065647058188915]],[[0.039998661726713,-0.064924523234367,-0.0063019921071827],[0.055641818791628,0.15280777215958,0.058125279843807],[-0.028389103710651,-0.012497718445957,-0.23841884732246]],[[-0.046938572078943,-0.19054414331913,0.04102323576808],[-0.14985659718513,0.071881428360939,0.058923847973347],[0.10415104031563,-0.033945430070162,0.039978504180908]],[[0.047870941460133,0.0057012946344912,-0.10423264652491],[0.022850643843412,-0.0027975849807262,-0.082379512488842],[-0.16251936554909,0.018516549840569,0.10398894548416]],[[0.039273947477341,-0.060457583516836,-0.00873479899019],[-0.11742414534092,0.018972935155034,-0.049520302563906],[0.18059402704239,0.069689877331257,0.040152426809072]],[[-0.12067613750696,-0.05348963290453,-0.015498852357268],[-0.05175369605422,-0.046116650104523,-0.091174244880676],[0.13673637807369,0.27288311719894,-0.095778301358223]],[[-0.10890310257673,0.037600547075272,0.045974217355251],[-0.081379733979702,0.075888194143772,0.023156953975558],[0.10789570212364,-0.04119436442852,-0.0097309434786439]],[[0.10710494220257,0.073712170124054,-0.16832987964153],[0.07010193914175,0.045388020575047,-0.11127655953169],[0.10427733510733,0.050267022103071,-0.22423660755157]],[[-0.26907798647881,-0.22298856079578,-0.0015862393192947],[0.037233605980873,-0.18928198516369,-0.067510053515434],[0.60866189002991,0.18241387605667,-0.050434667617083]],[[0.13231152296066,-0.10469222068787,0.078788869082928],[-0.1827200204134,-0.14618457853794,0.017123013734818],[0.0888347402215,-0.051808077841997,-0.10558675974607]],[[0.060000900179148,-0.090812467038631,-0.11256098747253],[0.12067627161741,0.027900563552976,-0.11763851344585],[0.011901764199138,0.13271191716194,0.039238464087248]],[[-0.15983389317989,0.14612132310867,-0.10930702835321],[-0.0057361186482012,-0.049018673598766,-0.024171929806471],[-0.031662009656429,0.0042013563215733,-0.1990631967783]],[[-0.06061863899231,-0.14500017464161,0.041405662894249],[0.14569537341595,-0.0064761284738779,-0.13818830251694],[0.17855320870876,0.05337581038475,-0.28291937708855]],[[-0.10805176943541,-0.0069118314422667,0.11998946219683],[-0.19646954536438,-0.10575374215841,0.22240102291107],[-0.32123392820358,-0.12140320986509,0.075656183063984]],[[-0.0063123269937932,-0.050713621079922,0.13905531167984],[0.049069207161665,-0.11106976121664,0.057336680591106],[0.091064311563969,-0.10081753134727,-0.15785942971706]],[[-0.0070811309851706,0.011942651122808,-0.1080694720149],[0.03496678173542,-0.027157021686435,-0.066570766270161],[-0.057264935225248,0.0072226943448186,0.048530835658312]],[[-0.10093463212252,-0.17295403778553,-0.11766627430916],[-0.064387366175652,-0.13828712701797,-0.19690465927124],[0.025809604674578,0.12876619398594,-0.037839896976948]],[[0.029520601034164,0.054414607584476,-0.057275835424662],[0.096803583204746,0.026449238881469,-0.11589748412371],[-0.012089009396732,-0.10906308144331,0.068632461130619]],[[0.082795105874538,0.058898735791445,0.072713226079941],[0.0069100251421332,-0.14008566737175,0.11134336143732],[-0.017686812207103,0.017570400610566,0.066765077412128]],[[-0.093882881104946,0.033570844680071,0.031013499945402],[-0.10961209237576,-0.017196256667376,0.089164033532143],[-0.018719267100096,0.21269093453884,0.090289510786533]],[[-0.17912493646145,0.23384645581245,0.10333994776011],[-0.085564412176609,-0.033362068235874,0.037010248750448],[-0.035565346479416,-0.0069526457227767,-0.010309149511158]],[[0.071102924644947,0.10722800344229,-0.028236780315638],[0.20251230895519,-0.045632876455784,0.051856622099876],[-0.14737452566624,-0.031081890687346,-0.1018877401948]],[[-0.050831999629736,-0.13759383559227,-0.18992948532104],[0.056446142494678,-0.063588216900826,0.086176291108131],[0.070587798953056,0.12464860081673,0.037306070327759]],[[-0.14086882770061,-0.09057193249464,-0.022938217967749],[-0.019573027268052,0.032015088945627,-0.037498828023672],[0.1182759553194,-0.023565763607621,0.14329016208649]],[[-0.17223446071148,-0.088915832340717,0.086825348436832],[-0.23230385780334,-0.12681131064892,-0.074774354696274],[-0.071657948195934,0.087744653224945,0.1428406983614]]],[[[0.062820486724377,-0.12146457284689,0.091567277908325],[-0.22310255467892,-0.27279233932495,-0.26635897159576],[-0.26334369182587,0.19085329771042,-0.31416976451874]],[[0.019511299207807,0.081338658928871,0.074460543692112],[-0.024315224960446,0.015295086428523,-0.053941208869219],[0.018273780122399,-0.15583811700344,-0.042527496814728]],[[0.1781989634037,0.038995951414108,0.13279490172863],[-0.23694841563702,-0.020856821909547,-0.041496876627207],[0.0022727048490196,-0.1344358175993,-0.00099666288588196]],[[0.22364230453968,-0.10630195587873,-0.13472297787666],[-0.062075063586235,-0.12301333993673,-0.045803982764482],[-0.23327545821667,-0.17748108506203,0.17481058835983]],[[0.052147250622511,-0.091001875698566,-0.036610141396523],[-0.018676219508052,-0.08435981720686,0.13925080001354],[0.12928596138954,0.046406835317612,0.048488579690456]],[[0.07709725946188,-0.076540194451809,-0.21143485605717],[-0.019697798416018,-0.021301394328475,-0.050302263349295],[-0.06503327190876,0.11047413945198,0.05670116469264]],[[0.1577724814415,-0.25110349059105,0.13986654579639],[-0.29575824737549,-0.035226583480835,0.010231747291982],[-0.1719816327095,0.20093883574009,0.096939012408257]],[[-0.034828819334507,0.095164380967617,0.16073067486286],[-0.044814642518759,-0.15595358610153,0.14700365066528],[0.013342895545065,-0.12711569666862,-0.10896393656731]],[[0.020427122712135,-0.10237404704094,-0.10151774436235],[-0.061374142765999,-0.12110907584429,0.049991242587566],[0.034967731684446,-0.025324657559395,-0.096509501338005]],[[-0.0085564637556672,-0.043601334095001,0.034569356590509],[-0.13162040710449,-0.022983383387327,0.057100180536509],[-0.070542626082897,0.08527622371912,-0.0011017564684153]],[[-0.19176775217056,0.021052960306406,-0.03721845895052],[0.04817009344697,0.21238087117672,-0.062623873353004],[0.036016751080751,-0.24818877875805,-0.0017552222125232]],[[0.0054266392253339,-0.17527620494366,0.069480001926422],[-0.073594398796558,0.11580785363913,-0.051500581204891],[0.0044335960410535,0.11975974589586,-0.017713045701385]],[[0.083131670951843,-0.075975626707077,0.078221134841442],[0.034796770662069,0.10970178991556,-0.093753688037395],[-0.082472890615463,-0.04125227406621,0.10662324726582]],[[-0.063176862895489,-0.044359464198351,0.038128852844238],[-0.054389044642448,-0.0076837232336402,-7.9353943874594e-05],[0.097154088318348,-0.0024603281635791,0.026747098192573]],[[0.023993384093046,-0.11340466141701,-0.32937934994698],[0.17180953919888,-0.30249390006065,-0.34714215993881],[0.0070584146305919,0.12586633861065,-0.3207873404026]],[[-0.18342830240726,0.047598462551832,-0.14314173161983],[-0.20590509474277,0.0084737874567509,-0.005641411524266],[0.049716025590897,-0.049386810511351,0.022339666262269]],[[-0.069841958582401,0.020561164245009,-0.17170496284962],[0.067333541810513,0.0039161252789199,0.0077119604684412],[-0.085913226008415,0.12617780268192,-0.17407840490341]],[[0.020097570493817,-0.065412595868111,-0.047278787940741],[-0.17207290232182,0.0091085862368345,0.0074812206439674],[-0.28960916399956,0.11948895454407,-0.064667768776417]],[[-0.092986598610878,-0.26952907443047,-0.099772252142429],[0.038947373628616,-0.14684335887432,0.089297190308571],[0.059891004115343,-0.2502207159996,-0.1087189540267]],[[-0.011834405362606,0.089901335537434,-0.29086503386497],[0.030248887836933,0.02085374481976,-0.1593830883503],[0.016357494518161,-0.037989161908627,0.13055071234703]],[[0.25485864281654,-0.13695524632931,-0.30278748273849],[0.091868661344051,-0.020246716216207,0.041967507451773],[0.092563390731812,0.034574627876282,-0.26193046569824]],[[0.059285722672939,0.078935861587524,-0.011471724137664],[0.11880688369274,0.034527722746134,-0.07612020522356],[-0.11106218397617,0.014480696059763,-0.14742511510849]],[[0.032157003879547,0.1900387108326,0.13280959427357],[-0.26210176944733,0.014824349433184,0.075401596724987],[-0.0045350142754614,-0.21294406056404,-0.045273967087269]],[[0.042485568672419,-0.04263111948967,0.043888878077269],[-0.012627742253244,-0.019932888448238,-0.034581605345011],[-0.03788922727108,0.10652001202106,-0.24317425489426]],[[0.063178673386574,-0.11304733157158,0.078749217092991],[0.082110106945038,0.0757921859622,-0.17566210031509],[-0.026525748893619,0.016089918091893,-0.030498672276735]],[[0.19165575504303,-0.17403249442577,0.22565370798111],[0.0077960519120097,-0.24041073024273,-0.042061410844326],[-0.081736318767071,-0.038083255290985,0.080758146941662]],[[-0.021398292854428,0.0065694474615157,0.24286545813084],[-0.032437644898891,0.049687650054693,-0.023079359903932],[0.080953262746334,0.042892079800367,-0.18310436606407]],[[0.16304276883602,-0.012168549932539,0.047579567879438],[0.12925584614277,-0.087423026561737,-0.038335662335157],[-0.029238071292639,0.1221214607358,0.32071083784103]],[[0.03986119478941,0.10241962224245,0.0417884811759],[0.0090779410675168,0.076309137046337,-0.12580145895481],[0.12495150417089,0.077871143817902,-0.17135460674763]],[[-0.09443848580122,0.068114474415779,0.047398321330547],[0.019520230591297,-0.067194186151028,0.034193873405457],[-0.030117059126496,-0.0084702540189028,-0.0090459128841758]],[[-0.1692118793726,-0.13968482613564,0.0024695543106645],[0.0096119428053498,0.071438699960709,0.12237791717052],[-0.044893249869347,0.048821680247784,-0.016867706552148]],[[0.058279640972614,0.099022097885609,-0.037658501416445],[-0.13060534000397,0.19124625623226,-0.0088863335549831],[0.035669147968292,0.024558335542679,-0.1510825753212]]],[[[-0.0047900173813105,-0.22115704417229,-0.15092451870441],[0.2742213010788,0.060458231717348,0.16249193251133],[-0.20769473910332,-0.42738831043243,0.17362728714943]],[[-0.0086180893704295,-0.14866153895855,-0.11931542307138],[0.08777491748333,-0.033424735069275,0.023857865482569],[-0.070997938513756,0.10502446442842,-0.019504761323333]],[[0.092373467981815,-0.10644345730543,-0.0066626691259444],[0.2056727707386,-0.18450193107128,-0.062637276947498],[0.0050004767253995,0.038221627473831,-0.11495192348957]],[[-0.19255648553371,0.010408696718514,0.11097151041031],[-0.029850469902158,-0.18618068099022,-0.17343246936798],[0.7043508887291,-0.23347191512585,-0.019950829446316]],[[0.055899754166603,-0.11000280827284,-0.058664985001087],[0.083480596542358,0.010380858555436,0.079082109034061],[-0.042832270264626,0.10015172511339,0.1257631033659]],[[0.059570394456387,0.038689456880093,0.11051297932863],[-0.073080010712147,-0.20451465249062,-0.012967050075531],[0.025566155090928,-0.08682544529438,0.069008529186249]],[[0.082245156168938,-0.19732032716274,0.096264839172363],[0.10066552460194,0.015185249038041,-0.31793701648712],[0.0038449224084616,0.093553327023983,-0.09560564905405]],[[0.08690682798624,-0.0086028035730124,0.030508320778608],[-0.010660220868886,0.026891930028796,-0.096655711531639],[-0.087733238935471,-0.13497084379196,0.15264320373535]],[[-0.10839612036943,-0.076729722321033,-0.066985942423344],[0.16221377253532,-0.046580638736486,0.0094016576185822],[0.0091870054602623,0.24217785894871,-0.10718324780464]],[[-0.040624473243952,-0.025494039058685,-0.21653097867966],[0.15754319727421,-0.014209967106581,0.040246605873108],[0.055218655616045,-0.054780911654234,-0.021032838150859]],[[-0.020802898332477,0.14739508926868,0.13352502882481],[0.0013928276021034,0.018671629950404,-0.10080888867378],[0.1163714081049,-0.19693557918072,-0.11135958880186]],[[-0.027786161750555,-0.015049679204822,0.13385356962681],[-0.077687099575996,0.050288051366806,-0.12835092842579],[0.057713948190212,0.03529928997159,-0.17717632651329]],[[0.027228757739067,-0.12632328271866,0.036501847207546],[0.090449027717113,-0.038820490241051,0.028124937787652],[-0.078716032207012,-0.027346577495337,0.081666879355907]],[[0.046476669609547,0.051990654319525,-0.01599333807826],[-0.1383770853281,0.031806375831366,0.0048888567835093],[-0.052918370813131,0.027333594858646,0.047913987189531]],[[-0.013032182119787,0.086940266191959,0.063326813280582],[-0.10921633243561,-0.093802824616432,0.026596674695611],[0.01043851301074,-0.096461601555347,-0.039925437420607]],[[-0.16291877627373,-0.15121024847031,-0.41278716921806],[0.16737402975559,0.27730077505112,-0.22635366022587],[0.074060074985027,0.37592664361,0.1894703656435]],[[-0.020302046090364,0.1191780641675,0.037967931479216],[-0.096962295472622,-0.0031946408562362,-0.040098574012518],[-0.036095038056374,-0.031716357916594,-0.0021235034801066]],[[0.11709573119879,-0.055477268993855,0.0034846912603825],[-0.1577533185482,-0.046042464673519,-0.11907268315554],[0.11492147296667,-0.084270320832729,-0.1195018813014]],[[-0.13529522716999,0.1913745701313,-0.091013930737972],[-0.038474932312965,-0.01557772886008,-0.0047580604441464],[-0.00059758976567537,0.072377696633339,-0.053845308721066]],[[-0.0027194782160223,-0.066881127655506,-0.19720201194286],[0.051369849592447,0.15476256608963,-0.033046249300241],[-0.03323357924819,0.002164407633245,-0.085920765995979]],[[0.070516377687454,0.012484828941524,0.14686578512192],[-0.30588459968567,-0.19381147623062,-0.082756586372852],[0.19655504822731,-0.046170875430107,-0.092426292598248]],[[-0.094439633190632,0.13593675196171,-0.054062530398369],[0.13031905889511,0.10435254126787,-0.16521099209785],[0.12607310712337,-0.049653116613626,-0.25949093699455]],[[0.039581507444382,-0.024907916784286,0.19171579182148],[-0.076279111206532,0.078735291957855,0.03427629545331],[-0.15566688776016,-0.10792942345142,0.058647911995649]],[[0.032556157559156,-0.12658104300499,0.086757957935333],[0.019719120115042,0.024200132116675,0.069590114057064],[0.19931352138519,-0.15582165122032,-0.20294117927551]],[[0.09239499270916,-0.022084210067987,0.14205965399742],[0.067368231713772,-0.058896221220493,-0.099898800253868],[0.021172551438212,-0.092824347317219,-0.14640578627586]],[[0.097019597887993,-0.060334037989378,-0.11905965209007],[0.034939780831337,-0.17144164443016,0.029796345159411],[0.15367519855499,-0.25748193264008,0.070120975375175]],[[-0.043032824993134,0.035252768546343,-0.0034711437765509],[-0.12551225721836,-0.066532239317894,0.20820482075214],[-0.18025024235249,-0.16279767453671,-0.023356137797236]],[[0.044585026800632,-0.046820849180222,-0.31632053852081],[0.033258490264416,-0.24147380888462,-0.15511198341846],[0.032189708203077,-0.096181511878967,-0.10044212639332]],[[0.04392159730196,0.1239178776741,0.15368854999542],[-0.096818760037422,-0.1027602776885,0.23853921890259],[-0.2524808049202,-0.044053122401237,0.054448761045933]],[[0.10762971639633,-0.0086639290675521,-0.087166011333466],[-0.033471409231424,-0.036721218377352,-0.01751116476953],[-0.012501837685704,-0.095245324075222,0.0054343426600099]],[[0.087198682129383,-0.14316886663437,-0.032192662358284],[-0.074035756289959,-0.15078952908516,0.076273247599602],[0.024718090891838,-0.033740889281034,0.14141882956028]],[[0.056705914437771,0.07066822052002,0.013585980981588],[0.0091599691659212,-0.074363529682159,-0.35609418153763],[0.055698189884424,0.0011397635098547,0.0020270270761102]]],[[[0.095510184764862,-0.018759680911899,-0.12949481606483],[-0.033928640186787,0.018851293250918,-0.024640630930662],[0.013874839991331,-0.025818111374974,-0.012465318664908]],[[-0.01847505196929,0.0043060332536697,-0.086183413863182],[0.10798072814941,0.054785128682852,0.032940324395895],[0.009621050208807,0.050870709121227,-0.0069350837729871]],[[0.11424200981855,-0.01473677996546,0.037425506860018],[-0.13262924551964,-0.091104827821255,0.060153134167194],[0.047641724348068,-0.15892678499222,0.13744178414345]],[[-0.058684788644314,0.084972374141216,-0.038655437529087],[0.11789194494486,0.042739063501358,0.0023826267570257],[0.037631332874298,0.028415080159903,-0.0023031320888549]],[[-0.098423421382904,-0.054625298827887,0.015957182273269],[-0.0915856808424,-0.14396440982819,0.014759602956474],[0.050649091601372,-0.092577762901783,-0.134277805686]],[[-0.027279313653708,0.029982762411237,-0.089650131762028],[0.049785509705544,0.23481442034245,0.20002493262291],[0.10950181633234,0.15312567353249,-0.018286075443029]],[[0.048648670315742,0.027318879961967,0.20175345242023],[-0.096103757619858,-0.054413847625256,-0.047527182847261],[-0.0016273374203593,-0.11173964291811,-0.083597533404827]],[[0.033572431653738,-0.095143169164658,0.060757502913475],[0.086178734898567,0.03677049651742,-0.025653585791588],[-0.0097516309469938,-0.12203016877174,0.038441296666861]],[[0.027391497045755,-0.011827622540295,-0.1138527020812],[0.040249157696962,-0.021628765389323,0.002483603078872],[-0.081819154322147,-0.086870044469833,0.15510958433151]],[[-0.18369893729687,-0.022926492616534,0.10533194988966],[0.012316393665969,-0.073291748762131,-0.1407468020916],[-0.066415883600712,-0.021308682858944,0.10017313063145]],[[0.047719765454531,-0.015663983300328,-0.071437872946262],[0.14322774112225,-0.013159733265638,0.1600678563118],[-0.14068745076656,-0.071006327867508,-0.054803397506475]],[[-0.031850978732109,0.11611777544022,0.10954903066158],[-0.17033167183399,0.020729418843985,0.041253861039877],[0.019256958737969,-0.058362890034914,0.075311303138733]],[[0.089295148849487,0.12486886233091,-0.0078845815733075],[0.21144722402096,0.061580654233694,0.054994773119688],[-0.067622929811478,0.10502368211746,-0.067693144083023]],[[0.061309345066547,0.080933436751366,-0.064921863377094],[-0.036761593073606,-0.0021403376013041,-0.061770793050528],[0.077457621693611,-0.058649327605963,-0.062365215271711]],[[-0.017870767042041,-0.070961259305477,0.0045361779630184],[0.002540418645367,0.039883453398943,0.041354842483997],[-0.14414927363396,-0.10352694243193,0.11367463320494]],[[-0.036733329296112,0.019863214343786,0.065961256623268],[0.1184550896287,0.018028730526567,0.0099484026432037],[-0.066600918769836,0.0037923324853182,-0.041373632848263]],[[0.013185320422053,0.064541935920715,-0.014345397241414],[-0.012021346017718,0.17924256622791,-0.087601192295551],[-0.1795748770237,0.1625357568264,-0.072858981788158]],[[-0.075144901871681,0.14520421624184,0.12634733319283],[-0.10368110984564,-0.015004430897534,-0.073943823575974],[-0.020638514310122,-0.08613583445549,0.092582166194916]],[[-0.01758586242795,-0.011297293007374,-0.0125747974962],[0.10653771460056,0.20579554140568,-0.037847723811865],[-0.12136567384005,-0.0057295206934214,-0.15532737970352]],[[-0.18757838010788,0.075157850980759,0.067082457244396],[-0.081470116972923,0.052939772605896,-0.016376849263906],[0.15523236989975,-0.07010193169117,-0.016083285212517]],[[-0.0040155672468245,-0.012408255599439,-0.0033978002611548],[-0.086368210613728,-0.086202524602413,0.01204963773489],[-0.068793699145317,-0.052554294466972,0.053218953311443]],[[-0.021326256915927,-0.10864034295082,0.044315367937088],[-0.026028607040644,0.025074988603592,-0.056993033736944],[0.052449941635132,-0.038691122084856,-0.12416268885136]],[[0.055978268384933,0.0077210399322212,0.031076531857252],[0.02396116219461,-0.022674281150103,0.084519408643246],[-0.035251587629318,0.024914475157857,0.0036746521946043]],[[-0.017371788620949,-0.032161042094231,-0.029695032164454],[-0.096825525164604,-0.0021266730036587,0.07385141402483],[-0.031907547265291,-0.077555850148201,0.029578518122435]],[[0.032553292810917,0.095094941556454,0.11829596012831],[0.078853785991669,-0.028060026466846,-0.064046248793602],[-0.10758308321238,0.097275711596012,-0.15764506161213]],[[-0.03622942045331,-0.18517081439495,0.027781710028648],[0.05358837172389,-0.040952730923891,0.063969746232033],[0.0049467333592474,0.058678586035967,-0.042161729186773]],[[-0.024342082440853,-0.075364224612713,-0.10614290833473],[-0.097654402256012,0.116425819695,-0.0090364851057529],[0.10292518138885,0.057730674743652,-0.038820989429951]],[[0.020886424928904,-0.086848303675652,0.044800411909819],[0.050646517425776,0.0023002459201962,0.045030098408461],[-0.0053269020281732,0.070811904966831,0.016680071130395]],[[-0.032239232212305,-0.054727762937546,-0.14537842571735],[0.078608140349388,0.090919204056263,0.044333312660456],[-0.025159902870655,-0.03962267562747,0.0020548780448735]],[[0.034592818468809,0.060346961021423,0.2084217518568],[-0.040587406605482,-0.062601499259472,0.10575617104769],[0.0055090975947678,-0.17048466205597,-0.022762361913919]],[[0.017287731170654,0.01467593293637,0.021804356947541],[-0.15344113111496,0.049087896943092,-0.021636690944433],[0.17399080097675,-0.052439827471972,0.091327525675297]],[[-0.0023839361965656,0.054940424859524,0.1374351978302],[-0.067759841680527,-0.081101387739182,0.022654956206679],[0.095739707350731,-0.075134068727493,-0.0086821364238858]]],[[[0.043109636753798,0.14507982134819,0.0068612238392234],[-0.10368230938911,0.09967115521431,-0.1144306063652],[-0.054001178592443,0.23750980198383,-0.39749547839165]],[[0.10329477488995,-0.017146764323115,0.2505915760994],[-0.061179950833321,-0.070212587714195,-0.077634565532207],[-0.1366571187973,-0.055304601788521,0.19257779419422]],[[0.1666322350502,0.041266482323408,0.12654449045658],[0.020904241129756,-0.018389819189906,0.18698693811893],[-0.11108677089214,-0.14499475061893,-0.53265404701233]],[[0.062025509774685,0.051853507757187,-0.067822672426701],[-0.036784403026104,-0.22208753228188,0.30335640907288],[-0.26381346583366,-0.080852963030338,0.34112450480461]],[[-0.01099026016891,-0.17372831702232,0.074068248271942],[-0.057432226836681,-0.097668953239918,0.042119018733501],[0.0072036874480546,-0.059576809406281,-0.02528421394527]],[[0.073920451104641,0.060750804841518,-0.12721362709999],[0.1614868491888,-0.057136297225952,-0.098698414862156],[-0.0035819639451802,-0.020732523873448,-0.12299447506666]],[[0.11341921240091,-0.036362443119287,-0.031639523804188],[0.080915629863739,0.033763699233532,-0.04363276809454],[0.003786601126194,-0.091203227639198,0.0054938369430602]],[[0.074120208621025,0.044961221516132,-0.082901805639267],[0.0099654980003834,0.027865253388882,0.028510186821222],[-0.048294577747583,-0.070557586848736,-0.079289108514786]],[[0.019749857485294,0.23145604133606,-0.0973214879632],[0.031020116060972,0.049647007137537,-0.14886902272701],[-0.12041407078505,0.066813632845879,0.034538887441158]],[[0.048963259905577,-0.061195608228445,0.074027121067047],[0.023710751906037,-0.07067983597517,0.16871435940266],[-0.0075225671753287,-0.00077745091402903,0.047846082597971]],[[0.049733713269234,0.024205477908254,0.05031530559063],[0.11165387928486,-0.21516139805317,-0.11916989833117],[0.17202600836754,-0.13805565237999,-0.19947865605354]],[[-0.096028417348862,-0.013685527257621,0.20703065395355],[-0.039150130003691,0.075512483716011,0.032132726162672],[-0.059707317501307,0.055704060941935,-0.093454755842686]],[[-0.03906187787652,0.031782623380423,0.061537861824036],[0.050968766212463,-0.028887018561363,0.027327883988619],[-0.087993465363979,0.014434652402997,0.0490732640028]],[[0.03449959307909,-0.13330465555191,-0.001980978762731],[0.12417742609978,-0.050167702138424,-0.083555646240711],[-0.035738795995712,0.13452239334583,-0.024631142616272]],[[-0.0060581639409065,-0.016395501792431,-0.22731249034405],[-0.027679111808538,0.01557323243469,-0.022321064025164],[0.060306377708912,0.0023088229354471,0.15185114741325]],[[-0.14082501828671,0.0014282763004303,0.057625945657492],[-0.18549428880215,-0.13679938018322,0.40116694569588],[-0.11185556650162,-0.18568357825279,0.045401848852634]],[[-0.016732985153794,0.038510665297508,0.008915570564568],[0.0096452003344893,-0.086305223405361,-0.15880724787712],[-0.13949750363827,-0.20714250206947,-0.27320182323456]],[[0.072074629366398,0.044040244072676,-0.12793301045895],[-0.015125290490687,0.026643991470337,-0.13234440982342],[-0.039371114224195,-0.0042399987578392,-0.16373419761658]],[[0.0048488527536392,0.17476566135883,0.072960056364536],[-0.11776375025511,0.12201432138681,-0.15021598339081],[0.17324879765511,-0.14987342059612,-0.06713804602623]],[[0.10098838806152,-0.086355566978455,0.088197968900204],[-0.18290629982948,-0.13669061660767,0.067941471934319],[0.15322579443455,-0.12416569888592,0.14160753786564]],[[-0.052609272301197,0.13523454964161,-0.11560197919607],[0.010615950450301,-0.10183850675821,-0.072752401232719],[-0.054132953286171,-0.1056426987052,0.12738311290741]],[[0.071283832192421,-0.1121920645237,-0.073685891926289],[-0.15438722074032,0.10169837623835,-0.025883439928293],[-0.063418351113796,0.065902441740036,0.063825972378254]],[[-0.049739230424166,-0.093104101717472,0.0055471234954894],[0.053580280393362,-0.10841324180365,-0.0096686966717243],[-0.10770014673471,0.040936265140772,-0.1334175914526]],[[0.098670549690723,-0.059414710849524,0.088664248585701],[0.080396763980389,-0.037342503666878,0.078490182757378],[0.11246447265148,-0.014942944049835,-0.1182297617197]],[[-0.047895479947329,-0.04274882748723,0.08806999027729],[-0.075530990958214,-0.047713473439217,-0.051943827420473],[-0.024905325844884,0.09652704000473,0.10958836227655]],[[0.025084517896175,-0.19656212627888,-0.0088362796232104],[-0.031056977808475,0.020150607451797,0.0073640570044518],[-0.18847779929638,0.058875396847725,-0.15144750475883]],[[0.024860180914402,-0.077740341424942,0.084180437028408],[-0.021153314039111,0.10711770504713,-0.32615008950233],[0.00981087051332,-0.10300980508327,-0.49659633636475]],[[0.022906683385372,-0.082293376326561,0.10181843489408],[0.034551437944174,-0.090924113988876,-0.031956311315298],[-0.084840312600136,-0.019039668142796,0.10784736275673]],[[0.17090907692909,0.044131200760603,0.066791363060474],[-0.10973447561264,0.13364428281784,0.029984721913934],[0.19044980406761,0.17364071309566,-0.020633444190025]],[[-0.046444833278656,0.01154697034508,-0.13493484258652],[-0.02631408162415,0.14122468233109,0.1390466094017],[0.0039638979360461,-0.013884934596717,-0.073268212378025]],[[-0.081573486328125,0.00058434315724298,0.095276847481728],[0.0252904612571,0.034605141729116,-0.10173387825489],[-0.035221077501774,-0.022698296234012,-0.12755908071995]],[[-0.062855884432793,-0.15621392428875,0.035175126045942],[0.11582566797733,0.050311036407948,-0.11259983479977],[-0.0093420520424843,0.012935880571604,-0.27653226256371]]],[[[-0.011197172105312,0.088148809969425,-0.10037190467119],[0.15537092089653,-0.11637029796839,-0.066741809248924],[0.12633512914181,-0.11884211748838,0.059889677911997]],[[-0.099647797644138,-0.16327787935734,-0.033074025064707],[0.028527874499559,0.049653880298138,0.19512851536274],[-0.07150461524725,-0.18955807387829,0.14612139761448]],[[-0.071418359875679,0.0036947401240468,0.022306324914098],[0.11296281218529,0.044992323964834,0.004398426041007],[0.0068566533736885,0.090990103781223,-0.21827185153961]],[[0.016510220244527,-0.024309536442161,0.017891556024551],[-0.04906127974391,-0.11231269687414,0.050672844052315],[0.1350315362215,0.060435615479946,0.026567032560706]],[[0.038279864937067,0.016087766736746,-0.094560585916042],[0.056122492998838,0.015070676803589,-0.10126510262489],[0.023591097444296,0.02169949747622,0.19768072664738]],[[-0.12335350364447,-0.048371952027082,0.27958810329437],[-0.11829301714897,-0.036393951624632,0.35655611753464],[0.12320297956467,-0.11287438124418,0.10458920150995]],[[-0.11360155045986,-0.1035109385848,0.057914584875107],[0.25209429860115,-0.085209175944328,0.10837311297655],[-0.089539706707001,0.064468361437321,0.043291088193655]],[[0.059710688889027,0.091272734105587,-0.0057632788084447],[-0.066036321222782,-0.055902391672134,0.026477264240384],[0.027498560026288,0.029658813029528,0.079773522913456]],[[0.030318323522806,0.085171446204185,0.066746182739735],[-0.23956628143787,0.029848121106625,-0.11219212412834],[-0.15370690822601,0.17134867608547,-0.19744953513145]],[[0.0040887692011893,0.074769333004951,-0.160519734025],[-0.040030866861343,-0.030989900231361,-0.13849940896034],[-0.056621331721544,0.067468613386154,0.032108407467604]],[[-0.13598515093327,0.023854915052652,0.2651005089283],[-0.10444564372301,0.0044134273193777,0.02927958406508],[0.10983534157276,0.032656535506248,-0.031169081106782]],[[0.0709218531847,0.11727020144463,-0.14346164464951],[0.12264887243509,0.055888503789902,0.074572198092937],[-0.017401894554496,-0.033671341836452,-0.12731656432152]],[[0.14580798149109,-0.28318676352501,-0.055752813816071],[0.097410708665848,6.6932188929059e-05,0.08438877761364],[0.12363917380571,-0.095340743660927,0.040416829288006]],[[-0.069542542099953,0.028758598491549,-0.1105777323246],[0.056895215064287,-0.018060134723783,0.023274596780539],[-0.11750025302172,0.037534341216087,0.13524417579174]],[[0.17230518162251,0.14813980460167,-0.050093535333872],[-0.10213606804609,-0.029769593849778,0.033027175813913],[0.10384996235371,0.0016829809173942,0.092483259737492]],[[0.059555355459452,0.027959130704403,0.011042098514736],[-0.14170850813389,-0.072334222495556,0.051274735480547],[0.18490526080132,0.32307091355324,0.17497904598713]],[[-0.16298952698708,-0.055175974965096,-0.10491137206554],[0.15124844014645,0.05922307446599,0.27632242441177],[-0.085842311382294,-0.052756328135729,0.024352829903364]],[[0.10100436210632,0.090507790446281,0.12294786423445],[0.17853306233883,-0.097741946578026,0.0067189922556281],[0.036973647773266,-0.083043143153191,0.05863594263792]],[[0.091338127851486,0.025301873683929,0.13442838191986],[-0.094189658761024,-0.016386747360229,0.011995044536889],[0.10058999806643,-0.013165570795536,-0.14569239318371]],[[-0.027599487453699,-0.11687654256821,-0.047649290412664],[0.010530340485275,0.072298921644688,-0.016975531354547],[0.0373205691576,0.15081168711185,-0.079301975667477]],[[0.09780802577734,0.019288711249828,0.023699933663011],[0.01618723385036,-0.10455869883299,0.023245148360729],[0.15950837731361,0.1663181334734,-0.0010377269936725]],[[0.079323813319206,0.014161788858473,0.090532682836056],[0.039471831172705,0.084556415677071,-0.078202784061432],[-0.064162231981754,0.011909577064216,-0.06092943251133]],[[-0.10834617912769,-0.21905274689198,-0.12954258918762],[-0.11241243779659,-0.028721526265144,0.13629391789436],[0.17194883525372,-0.1734312325716,0.21754322946072]],[[0.017436977475882,0.0029960130341351,0.077118255198002],[-0.068540640175343,-0.02504319511354,0.058985326439142],[0.0097880940884352,0.016445893794298,-0.087731309235096]],[[0.025973713025451,0.18234738707542,0.16882184147835],[-0.040380071848631,0.05284558609128,-0.12416435778141],[0.073245234787464,-0.00086369179189205,-0.22022821009159]],[[0.070595137774944,-0.049050889909267,-0.15797908604145],[0.2198194861412,0.067516766488552,0.13216659426689],[0.04420593008399,-0.0082489149644971,-0.0056186774745584]],[[0.079309165477753,-0.11275117844343,0.046488329768181],[0.21987572312355,-0.023795884102583,0.11188668012619],[0.1298321634531,-0.064776204526424,0.0051861125975847]],[[-0.0647933781147,-0.016995381563902,0.069034971296787],[0.028288776054978,-0.13059152662754,-0.15001754462719],[0.16574802994728,-0.12713932991028,0.0064820181578398]],[[-0.064944878220558,0.057556517422199,0.05531282350421],[-0.059590276330709,0.14999505877495,0.10818682610989],[-0.18111318349838,-0.024158800020814,-0.098838932812214]],[[0.087266653776169,0.039436768740416,-0.13173396885395],[0.072503007948399,-0.083839938044548,0.059810698032379],[0.097543701529503,-0.14119997620583,0.048290330916643]],[[0.037190012633801,-0.11014495044947,-0.037130046635866],[-0.0056774164550006,0.027735520154238,0.022380923852324],[0.030929503962398,-0.0028447001241148,0.11191481351852]],[[-0.041729688644409,-0.051473047584295,0.015724141150713],[-0.14172400534153,-0.085496120154858,-0.18968354165554],[-0.048343330621719,0.097722381353378,-0.19823949038982]]],[[[-0.066081784665585,-0.2776061296463,-0.077769175171852],[0.12930876016617,-0.11914426088333,0.21987144649029],[-0.11025737971067,-0.2388721704483,0.07376367598772]],[[-0.063854679465294,-0.087288469076157,-0.055337209254503],[0.11425908654928,-0.053841076791286,-0.0097003821283579],[-0.040487255901098,-0.063404336571693,0.031709715723991]],[[0.058238558471203,-0.16643247008324,-0.084576427936554],[-0.018205164000392,0.05147959291935,0.032284315675497],[-0.098309181630611,-0.037443988025188,-0.013861980289221]],[[-0.018200410529971,0.069058269262314,-0.086586527526379],[-0.10771476477385,-0.18260499835014,0.084980838000774],[0.17969365417957,-0.045289304107428,0.28574526309967]],[[0.12443857640028,-0.074438072741032,-0.045609269291162],[0.054370433092117,0.082535788416862,-0.074948519468307],[-0.014688276685774,-0.028716415166855,-0.046306643635035]],[[-0.12030627578497,-0.077896028757095,0.10125888884068],[-0.018328111618757,-0.15037479996681,0.072114743292332],[0.12588140368462,-0.086446516215801,0.11403243988752]],[[-0.2701778113842,-0.090818017721176,0.15774694085121],[0.10153318941593,-0.018152011558414,-0.051582876592875],[0.011656945571303,-0.09208757430315,-0.13874390721321]],[[0.057019267231226,-0.091831721365452,0.019292447715998],[-0.10084043443203,0.13571453094482,0.098568551242352],[0.02553560398519,-0.2147449105978,0.074371859431267]],[[0.11790750920773,-0.073261916637421,-0.24227723479271],[-0.063928693532944,0.074670478701591,-0.0044734748080373],[0.090338833630085,0.19210514426231,0.069385282695293]],[[-0.16177217662334,-0.022236993536353,0.039616726338863],[-0.040868636220694,-0.148940294981,0.11406067758799],[0.035230897367001,0.053054206073284,-0.018765578046441]],[[-0.036269683390856,0.0027454302180558,0.30756065249443],[-0.21647894382477,0.028449034318328,0.053448010236025],[-0.25907412171364,-0.19425079226494,-0.16953186690807]],[[0.28188762068748,-0.02503477036953,-0.061119120568037],[-0.042714908719063,0.16067944467068,-0.097688011825085],[-0.055858075618744,-0.083933360874653,0.076052121818066]],[[-0.14092946052551,-0.039065230637789,-0.027820335701108],[0.082901440560818,0.088969901204109,0.036452613770962],[0.11613549292088,-0.17340342700481,-0.01036624610424]],[[0.035148542374372,0.08173106610775,-0.017310373485088],[0.0021202366333455,-0.022225845605135,0.12137141823769],[-0.13695056736469,0.04163970425725,0.0063017993234098]],[[-0.282800167799,0.023412559181452,-0.20524698495865],[-0.21657675504684,0.069615244865417,0.088231012225151],[-0.13575133681297,0.061988566070795,0.15608139336109]],[[0.1068013086915,-0.11485815048218,0.07995830476284],[0.24856175482273,0.043361693620682,0.051125131547451],[0.08681970089674,-0.25249969959259,-0.044187143445015]],[[-0.027841633185744,-0.18300248682499,-0.11514119058847],[-0.025424605235457,-0.074468538165092,0.12666404247284],[-0.024054722860456,-0.083649836480618,0.10427386313677]],[[0.03467233851552,0.0032104579731822,0.068095281720161],[-0.050845760852098,0.055145181715488,-0.006920154672116],[-0.051681853830814,-0.12246216833591,0.1023792475462]],[[-0.00080715148942545,0.10359691828489,0.037995904684067],[0.070692449808121,0.0064351703040302,-0.0051663061603904],[-0.022690011188388,0.075780041515827,-0.17049063742161]],[[0.019911430776119,-0.1252555847168,-0.04461107775569],[0.047829456627369,-0.085936173796654,-0.00036003845161758],[-0.00047190077020787,0.089523732662201,-0.17630200088024]],[[-0.060815680772066,-0.18576888740063,-0.047962076961994],[0.017464224249125,0.078733123838902,0.14820230007172],[-0.26908966898918,-0.24982732534409,-0.13929714262486]],[[-0.20376066863537,0.028496664017439,-0.050047066062689],[-0.092278152704239,-0.0049151559360325,0.078955829143524],[-0.037310503423214,0.047583352774382,-0.013852072879672]],[[-0.028582599014044,0.067323058843613,-0.38673025369644],[0.17324957251549,0.077206447720528,0.042601533234119],[-0.090403437614441,-0.079131774604321,0.026280056685209]],[[-0.057654488831758,0.029197907075286,-0.0092818420380354],[-0.13395881652832,-0.036242231726646,0.041114080697298],[-0.16319671273232,0.026577919721603,-0.069488726556301]],[[-0.20300433039665,0.10915926843882,0.19132941961288],[-0.040910936892033,-0.23967497050762,0.070664905011654],[-0.086518108844757,0.05237390473485,-0.16486722230911]],[[0.16115882992744,0.033928643912077,0.040270417928696],[0.027564331889153,-0.058847725391388,-0.13670912384987],[-0.02057715319097,0.011833670549095,0.1104813143611]],[[0.073916897177696,-0.023957731202245,0.067489735782146],[-8.6995023593772e-05,0.11391177773476,-0.0077455500140786],[0.00087801140034571,0.062317341566086,0.086982876062393]],[[0.17324493825436,-0.11044529825449,0.04979844763875],[0.07789384573698,0.0059612612240016,0.09895147383213],[0.10692362487316,-0.10169660300016,0.046736095100641]],[[0.16521024703979,0.026352599263191,0.12377980351448],[-0.076805718243122,0.00095862033776939,0.19238463044167],[-0.11340516805649,-0.19269272685051,0.15682765841484]],[[0.043545629829168,0.0032377799507231,0.20119945704937],[0.074479326605797,-0.091648541390896,-0.028002643957734],[-0.056481909006834,0.067945674061775,-0.050298634916544]],[[-0.03253573179245,-0.0077435048297048,-0.1966038197279],[-0.091450400650501,-0.11548959463835,0.022082552313805],[-0.085934333503246,0.1613721549511,-0.12429939955473]],[[-0.10983027517796,0.0044446638785303,0.047106292098761],[-0.099177964031696,-0.14783829450607,0.1194164827466],[0.0022432021796703,0.047915685921907,0.12887516617775]]],[[[-0.2438568174839,0.059229508042336,-0.43750894069672],[-0.075403518974781,0.094990029931068,0.057777259498835],[-0.10072973370552,0.060373309999704,-0.14150604605675]],[[-0.12712892889977,0.076967053115368,0.098186373710632],[-0.056109432131052,-0.010387181304395,0.10442439466715],[-0.11177901178598,-0.081716656684875,-0.021458398550749]],[[-0.10172718763351,0.18346141278744,-0.055607613176107],[0.013806941919029,-0.0065689375624061,-0.034737695008516],[-0.018982820212841,0.047228828072548,-0.019227646291256]],[[-0.14029374718666,0.088602885603905,0.034501329064369],[-0.10603545606136,0.080303579568863,0.15650498867035],[-0.24709282815456,-0.020143806934357,0.32114380598068]],[[-0.0509461350739,0.11537475138903,-0.042688328772783],[-0.099890403449535,-0.1196628883481,0.039508681744337],[-0.014669716358185,0.043413117527962,-0.089006498456001]],[[0.17927332222462,-0.0098093962296844,-0.037175085395575],[0.067369759082794,-0.06656938046217,-0.0071836519055068],[0.039335966110229,-0.13709262013435,-0.0060423263348639]],[[-0.020758768543601,-0.048539500683546,0.062436584383249],[0.067933909595013,-0.014551839791238,0.10457658022642],[0.088327221572399,-0.1335296779871,0.058849979192019]],[[0.037832733243704,0.059050340205431,-0.093603119254112],[-0.058752343058586,0.04322637617588,0.088520094752312],[-0.018034955486655,0.089265450835228,-0.092680275440216]],[[-0.048888701945543,-0.0076958583667874,0.0052159884944558],[-0.00065915280720219,-0.099125564098358,-0.041097477078438],[-0.060624174773693,0.06149585917592,0.079429127275944]],[[-0.18876115977764,0.23982256650925,0.20774331688881],[-0.065665021538734,0.084763906896114,-0.038269009441137],[-0.025658024474978,-0.066711321473122,-0.0042110239155591]],[[0.050678580999374,-0.12760879099369,0.066357284784317],[0.066645130515099,0.084947824478149,0.0029134396463633],[-0.092944718897343,-0.055630229413509,0.0085272872820497]],[[-0.10600643604994,0.088005498051643,-0.08623855561018],[-0.11623988300562,0.24158161878586,0.036613721400499],[-0.038739893585443,-0.086562678217888,0.045237086713314]],[[-0.12025318294764,-0.030561601743102,0.11907748878002],[-0.11393163353205,0.014912662096322,0.13524889945984],[0.025387540459633,-0.1712967902422,0.0066894851624966]],[[-0.088314905762672,-0.014066684991121,0.14702408015728],[0.10241924971342,-0.019699769094586,0.020630862563848],[-0.044637627899647,-0.088818669319153,-0.052775491029024]],[[0.13744762539864,-0.043854486197233,-0.060555130243301],[-0.0045115137472749,0.069058202207088,-0.015908051282167],[0.07138280570507,-0.048803426325321,-0.0036684626247734]],[[-0.21626333892345,-0.24619619548321,0.44145515561104],[-0.17118048667908,-0.15834754705429,0.29676273465157],[0.010297988541424,0.031386654824018,-0.018359947949648]],[[-0.0011749310651794,-0.28048738837242,-0.061161015182734],[0.0023830593563616,-0.022081350907683,0.15849488973618],[0.095584355294704,-0.10361181199551,0.044915590435266]],[[-0.14731930196285,0.090315088629723,0.00070540135493502],[-0.094328604638577,0.057471357285976,-0.10816787183285],[0.043477077037096,-0.040498159825802,0.077385053038597]],[[0.082176744937897,0.1714870929718,-0.012104795314372],[-0.076203636825085,-0.0087590822950006,-0.066750422120094],[0.097366437315941,-0.064536742866039,-0.0034969197586179]],[[-0.049542646855116,-0.31689888238907,0.07224802672863],[0.094787195324898,0.036435212939978,0.0081292949616909],[0.13117633759975,-0.084243565797806,0.030716247856617]],[[-0.012475652620196,0.10053522139788,-0.056279025971889],[0.21172441542149,0.034840423613787,-0.046496879309416],[-0.12871532142162,0.17122785747051,-0.048362080007792]],[[0.062085166573524,0.19476060569286,0.030950332060456],[-0.12846677005291,-0.13885135948658,-0.056129135191441],[-0.023150280117989,0.033109456300735,-0.04395254701376]],[[0.030562775209546,-0.091797925531864,-0.080024100840092],[0.082517087459564,0.02513575553894,0.0049896440468729],[0.1100352704525,-0.065796233713627,0.15690599381924]],[[0.033758297562599,-0.11145857721567,-0.088970743119717],[-0.014969326555729,-0.23466780781746,0.10532632470131],[-0.039419002830982,-0.057383008301258,0.053676813840866]],[[-0.11562034487724,0.1118927448988,-0.01017904933542],[-0.062188755720854,-0.17572563886642,0.3451886177063],[-0.052802719175816,-0.067699104547501,-0.034611765295267]],[[-0.05800973251462,0.0015422536525875,-0.055248912423849],[0.08719265460968,0.1690589338541,0.0039631235413253],[-0.085274532437325,0.21758618950844,-0.024829065427184]],[[-0.16794849932194,0.010906632058322,-0.30582457780838],[-0.05580435693264,0.0098114283755422,0.0045670797117054],[0.13281938433647,0.18568684160709,-0.092126525938511]],[[-0.09692819416523,0.077813677489758,-0.072509914636612],[-0.016706679016352,0.17954742908478,0.11486599594355],[-0.035798139870167,0.0033698661718518,-0.095547690987587]],[[0.080161966383457,-0.015650697052479,-0.049667656421661],[0.10475285351276,-0.071304097771645,-0.099193304777145],[0.18402902781963,0.15739119052887,-0.12704010307789]],[[0.1281079351902,-0.073166586458683,-0.057479791343212],[-0.082764185965061,-0.011394645087421,-0.022702371701598],[-0.051711145788431,-0.0090820621699095,0.0062032332643867]],[[0.018731776624918,-0.13617873191833,-0.19233337044716],[0.011700303293765,0.10794553160667,-0.12564091384411],[-0.051683757454157,0.13568741083145,-0.090587101876736]],[[-0.11552457511425,-0.23407573997974,-0.158013895154],[-0.056019186973572,-0.054560519754887,-0.13608753681183],[0.0099891535937786,-0.25492730736732,0.036134738475084]]],[[[-0.046653054654598,-0.024495040997863,-0.027833178639412],[-0.019700292497873,0.0058648912236094,0.15487706661224],[-0.3400003015995,-0.020356353372335,-0.12912759184837]],[[0.013835965655744,-0.10065256804228,0.0067947553470731],[0.054362293332815,-0.064851358532906,0.1207088381052],[-0.071906022727489,-0.0098483609035611,0.049368172883987]],[[-0.04577598720789,-0.09971334785223,0.029229519888759],[-0.067503020167351,-0.13328309357166,0.03749181330204],[-0.016135901212692,0.1019914150238,0.027099652215838]],[[-0.20318192243576,-0.063608147203922,-0.063290916383266],[-0.04253439232707,-0.081258453428745,-0.093675136566162],[0.3211313188076,0.1648558229208,0.017545329406857]],[[0.023416385054588,-0.14299793541431,0.05963633581996],[-0.25023233890533,0.038317412137985,0.057063926011324],[-0.080847427248955,0.088995210826397,0.10828892141581]],[[0.096359819173813,0.12462853640318,0.011691595427692],[-0.075569838285446,-0.0044430219568312,-0.10369903594255],[0.079737357795238,-0.051649920642376,-0.1283868253231]],[[0.088246144354343,-0.0090021267533302,-0.016185380518436],[0.007311346475035,0.075930424034595,-0.19186045229435],[-0.10060359537601,0.028409274294972,0.078589551150799]],[[-0.048725865781307,-0.0063669546507299,-0.063617132604122],[0.075734108686447,-0.039778519421816,0.15819051861763],[0.056076597422361,0.0096011888235807,-0.13822685182095]],[[-0.22016210854053,0.066312067210674,0.0064503601752222],[0.051858298480511,-0.011019350960851,-0.048024076968431],[0.0031601579394192,0.03962230309844,0.10517729073763]],[[-0.15609399974346,-6.312759796856e-05,0.018032465130091],[0.043483976274729,0.077261872589588,-0.08050062507391],[0.10525226593018,0.13897873461246,-0.03123152628541]],[[-0.11499851197004,0.054481163620949,-0.092253424227238],[-0.015698451548815,0.004202148411423,-0.0070695844478905],[0.031335040926933,-0.02677528001368,0.13746649026871]],[[-0.12251281738281,-0.068731054663658,0.039179511368275],[0.057222228497267,0.18151265382767,-0.017479410395026],[0.049702242016792,0.033551160246134,0.014444829896092]],[[-0.1246263384819,0.077176302671432,-0.057895384728909],[0.013524159789085,0.057687275111675,-0.051145724952221],[-0.0020945961587131,-0.059896606951952,0.047043476253748]],[[0.023997701704502,0.01270414236933,-0.060542847961187],[0.015006457455456,0.054958142340183,0.033685494214296],[0.033216420561075,-0.039332740008831,-0.066459313035011]],[[-0.11408895254135,0.082474648952484,0.14757819473743],[0.1503024995327,-0.10813865065575,-0.14590027928352],[0.089484445750713,-0.057795755565166,-0.12430840730667]],[[-0.53514623641968,0.14081372320652,-0.024323962628841],[0.0023746727965772,0.33289954066277,0.21205478906631],[-0.13518206775188,0.10130976140499,0.031891904771328]],[[0.030868291854858,0.025858085602522,0.14783677458763],[0.14800956845284,-0.059402350336313,0.076626747846603],[0.16769477725029,-0.17937877774239,0.044470984488726]],[[-0.17349490523338,0.039322003722191,0.14303940534592],[0.089467525482178,-0.045864179730415,-0.034858603030443],[-0.17992317676544,0.028635211288929,-0.077103316783905]],[[0.27769812941551,-0.12642730772495,0.011130661703646],[0.043950226157904,0.12112050503492,0.061963345855474],[-0.061672180891037,0.01321810670197,-0.084604322910309]],[[-0.10416892915964,0.1390588581562,0.069673575460911],[0.033088877797127,-0.026172513142228,0.0067318961955607],[-0.0013259012484923,-0.2208289206028,0.04454455897212]],[[-0.040073227137327,-0.077927686274052,0.036383766680956],[-0.17781828343868,0.0096711786463857,0.0085912495851517],[0.081077627837658,0.13759423792362,-0.00053854082943872]],[[-0.022039469331503,-0.0020274429116398,-0.013033343479037],[-0.062755011022091,0.0186534114182,-0.01862015761435],[0.018610015511513,-0.071487121284008,0.063481859862804]],[[-0.032035756856203,-0.01256806589663,0.12369877099991],[0.044490791857243,-0.03537755459547,-0.079025812447071],[-0.046920843422413,-0.0015952719841152,0.091307908296585]],[[-0.097107067704201,0.019311659038067,-0.055515058338642],[0.031084798276424,0.056000661104918,0.035528890788555],[-0.17664757370949,0.10613250732422,0.12775993347168]],[[0.021664163097739,0.067160218954086,-0.20979750156403],[0.021324660629034,0.0038213247898966,-0.060703776776791],[0.02012805826962,0.068675123155117,0.1328302770853]],[[-0.15045040845871,0.12437053024769,-0.01487400662154],[-0.0055033303797245,-0.038948949426413,0.0024547257926315],[0.10111928731203,0.053526114672422,-0.028576772660017]],[[-0.31403037905693,-0.17242273688316,0.041274901479483],[-0.26494216918945,0.058383375406265,0.086242586374283],[-0.17761741578579,0.040526758879423,0.051146257668734]],[[0.067413114011288,-0.089337319135666,-0.018220437690616],[-0.1282833814621,0.056575901806355,-0.4865029156208],[0.10962703824043,-0.0069238259457052,-0.036541063338518]],[[0.13171665370464,0.0016708748880774,-0.0075836777687073],[-0.015715092420578,-0.042056478559971,0.047140996903181],[0.007034236099571,-0.16508217155933,-0.073327980935574]],[[-0.091371789574623,0.0054847407154739,-0.041794423013926],[0.0076680015772581,0.16817569732666,-0.042075954377651],[-0.084977395832539,-0.07966087013483,0.11316750198603]],[[-0.21445240080357,-0.0086006755009294,0.15185394883156],[0.0079187750816345,-0.19371749460697,0.18040387332439],[-0.053055036813021,-0.11893625557423,0.27998641133308]],[[-0.013806729577482,-0.033268995583057,-0.058185927569866],[-0.22095389664173,-0.14214296638966,-0.043014258146286],[0.0013859815662727,0.039896819740534,-0.013189460150898]]],[[[-0.11184500902891,-0.067090898752213,0.054405648261309],[0.14070636034012,-0.09446669369936,-0.10778855532408],[0.074953399598598,0.076697789132595,-0.045050475746393]],[[-0.019812900573015,-0.1509934514761,0.030884176492691],[-0.13974261283875,-0.16272567212582,-0.19559596478939],[-0.023614156991243,-0.14182868599892,-0.0076696225441992]],[[-0.11905107647181,0.053222693502903,-0.026094991713762],[0.06518017500639,0.026497036218643,0.051258124411106],[-0.049503535032272,0.015729842707515,-0.042036782950163]],[[-0.023332292214036,0.013214595615864,0.080222316086292],[-0.11186666786671,-0.13680046796799,0.086354292929173],[-0.0017942346166819,-0.087850026786327,-0.18353562057018]],[[-0.17855867743492,-0.052983790636063,-0.085398353636265],[-0.081428833305836,-0.13059724867344,-0.17204727232456],[-0.11489398032427,-0.018580511212349,0.0086924834176898]],[[0.070110678672791,-0.12890709936619,0.081000842154026],[0.07270459830761,0.090174846351147,0.027213083580136],[-0.067820601165295,0.1649956703186,0.0069539248943329]],[[-0.003237638855353,-0.034838158637285,0.0066781067289412],[-0.031216755509377,-0.013330962508917,0.014683812856674],[0.11740133911371,-0.098097041249275,0.0091840829700232]],[[0.038215205073357,-0.041224509477615,0.070966988801956],[-0.044114612042904,-0.098877847194672,0.042098764330149],[0.020410388708115,0.015924921259284,0.034346871078014]],[[0.02571702376008,0.082322351634502,0.022276375442743],[-0.078046910464764,-0.052645433694124,-0.041946094483137],[-0.09877697378397,0.06098910421133,0.01360366679728]],[[-0.014381654560566,-0.092824831604958,-0.058611381798983],[-0.015391187742352,0.066265344619751,-0.082353830337524],[0.016924396157265,-0.18719483911991,-0.06700587272644]],[[-0.090106301009655,-0.0054086111485958,0.063349418342113],[0.031936727464199,0.099290378391743,0.025125039741397],[-0.075742557644844,0.0029610262718052,-0.026041354984045]],[[0.0069056586362422,-0.021326873451471,-0.033560954034328],[0.13729824125767,0.0053797052241862,-0.094740860164165],[0.053054079413414,-0.050768241286278,-0.021411634981632]],[[0.11585676670074,-0.060629043728113,0.0094500724226236],[-0.073003187775612,0.055243782699108,-0.29308703541756],[-0.011334873735905,0.14395023882389,-0.056378845125437]],[[-0.09705512970686,0.05942515656352,0.053895585238934],[-0.055660758167505,0.023654628545046,-0.10978935658932],[-0.080247148871422,0.11780266463757,0.075012445449829]],[[0.020034562796354,-0.15982048213482,0.041430126875639],[-0.030039861798286,-0.04782598093152,-0.019837828353047],[0.024660676717758,-0.051577061414719,0.17949631810188]],[[-0.0061596748419106,-0.07345262169838,-0.028498584404588],[-0.10233505815268,0.031208166852593,-0.060484945774078],[-0.057961836457253,-0.04242255166173,0.058124974370003]],[[0.011551631614566,0.04835220053792,0.063176609575748],[0.014614369720221,-0.15352399647236,-0.053942676633596],[0.078535094857216,0.1037780046463,-0.098637491464615]],[[0.050141848623753,0.038180164992809,0.079665169119835],[0.018180530518293,-0.088465832173824,0.14670512080193],[-0.083829686045647,-0.044339645653963,-0.036922078579664]],[[0.10930011421442,0.067423902451992,-0.045470133423805],[-0.098403371870518,-0.058544456958771,-0.11907728761435],[-0.12317412346601,0.12922869622707,-0.011244012974203]],[[-0.043938428163528,-0.02232800796628,-0.0057409941218793],[-0.030347118154168,0.10422593355179,-0.022320291027427],[-0.082096725702286,-0.023597689345479,0.11812444776297]],[[-0.0040979734621942,0.039738111197948,0.075047731399536],[-0.12063078582287,0.017956035211682,-0.052471250295639],[-0.013651974499226,0.048742026090622,-0.015621799044311]],[[0.097111091017723,-0.033254936337471,-0.050611849874258],[-0.079077526926994,0.056109949946404,0.021322777494788],[-0.028612064197659,-0.089105911552906,0.14577083289623]],[[-0.056797754019499,-0.046698339283466,-0.072956256568432],[0.040324110537767,-0.050723396241665,0.074052184820175],[0.049644459038973,0.038042776286602,-0.017775589600205]],[[-0.080308653414249,0.021610489115119,0.10328406095505],[-0.10620440542698,0.15178282558918,0.04300893470645],[-0.072494693100452,0.072824954986572,-0.052978169173002]],[[-0.049508724361658,-0.030702712014318,-0.047643218189478],[0.042936328798532,0.045045908540487,-0.083608321845531],[0.045012298971415,0.072705000638962,0.014616951346397]],[[0.078010030090809,0.082569420337677,-0.0057624713517725],[-0.022842898964882,0.0183967910707,-0.011032641865313],[0.051943551748991,-0.075443625450134,-0.07436428964138]],[[0.05674447491765,0.02546139061451,-0.13829556107521],[0.024908388033509,-0.11130651831627,-0.016299245879054],[0.058787912130356,0.028012095019221,0.045602072030306]],[[0.032019007951021,-0.05733510479331,-0.02500100620091],[-0.052183296531439,-0.051751777529716,0.085822716355324],[-0.045742206275463,0.051892913877964,0.076828882098198]],[[-0.018973369151354,0.050064016133547,0.12453804165125],[-0.072134621441364,-0.02823543176055,0.12146300077438],[0.097302965819836,0.082592442631721,0.022818760946393]],[[0.03639642894268,-0.11140391975641,-0.019916290417314],[-0.066147446632385,0.055582769215107,0.066913597285748],[0.041458923369646,-0.031217940151691,-0.019128870218992]],[[-0.10645956546068,0.033220428973436,-0.013911279849708],[-0.011920704506338,0.002982966369018,0.031087532639503],[0.0048269173130393,0.11212339997292,-0.010495509020984]],[[0.054994408041239,0.11058734357357,-0.027809575200081],[0.13410790264606,-0.084490187466145,-0.0593401491642],[-0.050996903330088,-0.049712426960468,-0.0739825963974]]],[[[0.0056813969276845,-0.0063674384728074,0.099684871733189],[-0.11706253886223,-0.27795100212097,0.2701680958271],[-0.063016153872013,-0.46233201026917,0.079582147300243]],[[-0.11872547119856,0.079561769962311,-0.25403165817261],[-0.0083527034148574,0.075615331530571,0.11424451321363],[-0.12701953947544,0.10342364758253,0.048800196498632]],[[-0.27434220910072,0.05328319221735,-0.067241966724396],[0.060452163219452,0.063371166586876,0.14721471071243],[-0.099399842321873,-0.18772412836552,-0.15327841043472]],[[-0.20850336551666,-0.18865025043488,0.12162037938833],[-0.082981377840042,0.055746767669916,-0.029913078993559],[0.16789375245571,-0.072264797985554,-0.019743165001273]],[[0.050458412617445,-0.051076527684927,-0.0081724505871534],[0.054881446063519,-0.19974671304226,-0.036973387002945],[-0.010666916146874,0.062091592699289,0.013819246552885]],[[-0.0022173838224262,-0.068973019719124,0.02307884581387],[0.09532605111599,0.069275468587875,-0.23482076823711],[-0.19798815250397,0.026068603619933,0.051276996731758]],[[-0.034004002809525,-0.015216974541545,-0.39609462022781],[0.11496412754059,0.029767028987408,-0.0074115116149187],[-0.093193121254444,-0.14676694571972,-0.014362221583724]],[[0.080097772181034,0.041619632393122,-0.10965780168772],[0.067848511040211,-0.039071448147297,-0.0038243234157562],[-0.048742383718491,0.01349962502718,-0.04865900427103]],[[0.061330061405897,-0.062211610376835,0.11331537365913],[0.02682052180171,-0.084466688334942,0.19345727562904],[0.13715779781342,-0.16663488745689,-0.0014796120813116]],[[-0.065831497311592,-0.1290528178215,0.012360878288746],[0.0072053228504956,0.065610766410828,0.16223926842213],[-0.036644857376814,0.026458274573088,0.13164348900318]],[[-0.14324608445168,0.025760471820831,-0.20540003478527],[0.031374093145132,0.10828787088394,0.010681610554457],[-0.071503631770611,0.01271906401962,0.07304710149765]],[[-0.22149658203125,0.11498588323593,0.063298977911472],[0.068092748522758,0.020964300259948,-0.032408136874437],[-0.01360479183495,0.089075215160847,-0.039223432540894]],[[-0.055706948041916,0.066857598721981,0.00030719727510586],[-0.053690101951361,-0.014749858528376,-0.12604814767838],[-0.14020511507988,0.07661147415638,0.12421663850546]],[[0.096989616751671,-0.0019240676192567,-0.11534888297319],[-0.026780135929585,-0.030423451215029,0.0055983127094805],[0.093652069568634,0.061483357101679,-0.061603639274836]],[[-0.042092107236385,0.021580940112472,-0.10229807347059],[0.073092214763165,0.037108134478331,-0.085999682545662],[0.0029777444433421,-0.10653599351645,-0.10752384364605]],[[-0.18213868141174,-0.15447150170803,-0.1815071105957],[-0.16430075466633,0.065723702311516,0.048973921686411],[-0.24001124501228,0.23410011827946,0.062984347343445]],[[-0.13644105195999,-0.15155348181725,0.17018137872219],[-0.023722194135189,0.031316142529249,0.0065307868644595],[0.089492365717888,0.01875851675868,-0.14774625003338]],[[-0.044975589960814,0.23477144539356,-0.015378473326564],[0.17389585077763,0.0044890493154526,0.029468918219209],[0.0023041986860335,0.014649680815637,-0.069219909608364]],[[0.026758518069983,-0.096776261925697,0.035579513758421],[-0.099383734166622,-0.023648323491216,0.12440253049135],[0.067397013306618,0.12751576304436,-0.049595147371292]],[[-0.15541112422943,0.088166728615761,-0.055341418832541],[-0.15986874699593,0.016725096851587,0.173240467906],[0.032158777117729,0.01689207740128,-0.13197150826454]],[[-0.26643019914627,-0.20910453796387,0.12342485040426],[-0.21313309669495,0.13145244121552,0.014611928723752],[-0.18730428814888,0.049166914075613,0.00049364578444511]],[[0.083847090601921,-0.092779874801636,-0.2331694662571],[0.13474820554256,0.078428536653519,0.036910831928253],[0.05622935667634,0.099340975284576,-0.058396559208632]],[[0.021069042384624,0.065975241363049,-0.31775853037834],[0.029828976839781,0.13732869923115,-0.037222780287266],[-0.15326280891895,0.086197569966316,-0.023399375379086]],[[0.0078980680555105,-0.081037022173405,-0.10162141174078],[0.023004619404674,0.098249934613705,-0.10653897374868],[-0.02469801530242,-0.11066734790802,-0.067851282656193]],[[-0.0098974807187915,0.19929648935795,0.074985846877098],[-0.027081117033958,-0.037578709423542,-0.17176721990108],[0.12847135961056,-0.071145176887512,0.0068497061729431]],[[0.06186268478632,-0.043233390897512,-0.14825533330441],[0.00015879649436101,-0.029162602499127,-0.035661142319441],[0.14576575160027,0.10610818117857,-0.096096582710743]],[[-0.069177389144897,0.11168868094683,0.11809431016445],[-0.18021179735661,0.0019057639874518,0.1009421274066],[-0.36483532190323,-0.014593373052776,0.060204945504665]],[[-0.16164538264275,-0.024695415049791,0.18453232944012],[0.051567278802395,0.11839561164379,-0.10594162344933],[-0.075683131814003,-0.018148481845856,-0.090365916490555]],[[0.11094796657562,0.11323207616806,-0.001171555602923],[0.058357588946819,-0.0085770739242435,0.041386913508177],[0.15678222477436,-0.21251954138279,-0.22428648173809]],[[-0.013782699592412,-0.076454430818558,0.005984874907881],[-0.046668734401464,0.013781202025712,0.1065706089139],[-0.068573333323002,0.049693554639816,0.015732603147626]],[[0.061636846512556,-0.087936997413635,-0.052640464156866],[0.057680815458298,-0.0081764766946435,-0.098380662500858],[-0.083384826779366,0.091536141932011,0.015723172575235]],[[0.016876230016351,0.074055142700672,-0.035620801150799],[-0.079292632639408,0.073564365506172,-0.011346369050443],[0.045788165181875,-0.23922453820705,-0.41557765007019]]],[[[0.025023717433214,0.07335902005434,-0.059247530996799],[-0.24645456671715,0.06569492071867,0.13862438499928],[-0.073600597679615,0.14323206245899,0.094469547271729]],[[-0.10225656628609,0.020828019827604,0.052867479622364],[0.074244529008865,-0.073272652924061,-0.11917567253113],[0.20019108057022,0.17656418681145,-0.16437257826328]],[[-0.19662424921989,-0.033371265977621,-0.049169588834047],[0.033979889005423,0.10688830912113,0.0713260024786],[0.045172553509474,0.050597414374352,-0.056147392839193]],[[0.040149375796318,0.25292950868607,0.025995509698987],[-0.029785439372063,-0.068261988461018,-0.21557483077049],[-0.029644830152392,0.038305047899485,-0.11259369552135]],[[0.11784386634827,0.057649292051792,-0.10853245854378],[0.087422333657742,0.1141036003828,0.023807158693671],[-0.11386538296938,0.06496973335743,0.0054435641504824]],[[0.01497308164835,0.0052927238866687,-0.090106584131718],[-0.14831957221031,-0.080375239253044,-0.06328808516264],[-0.22329956293106,0.024476163089275,0.20085574686527]],[[-0.0060408157296479,0.1250901222229,0.006147722247988],[-0.15091544389725,0.052165303379297,0.020641149953008],[0.032888107001781,-0.0033568509388715,-0.037979796528816]],[[-0.054708853363991,-0.011510815471411,-0.00024997070431709],[0.061618346720934,-0.026058100163937,0.0044122133404016],[-0.065659500658512,0.019589366391301,0.10441061109304]],[[0.016469096764922,0.099314793944359,0.022221010178328],[0.043021660298109,-0.015781085938215,-0.046681862324476],[-0.063954450190067,0.10519375652075,-0.011401972733438]],[[0.01559944730252,-0.023028047755361,-0.057628404349089],[-0.020253179594874,0.067937068641186,-0.11755152791739],[0.051250088959932,-0.020378220826387,-0.048933163285255]],[[0.12474976480007,-0.040667191147804,0.011775284074247],[-0.12190275639296,0.052146479487419,0.023356053978205],[0.10308631509542,0.0038589865434915,-0.055805787444115]],[[-0.086972370743752,-0.057903900742531,-0.039532344788313],[0.079744122922421,0.044802792370319,0.063182361423969],[-0.019555311650038,-0.098196730017662,0.07776316255331]],[[-0.0043422193266451,0.027442324906588,0.028688134625554],[0.060369409620762,-0.094104677438736,-0.04997493326664],[0.024726808071136,0.013099507428706,0.13700458407402]],[[0.00013587134890258,0.12024902552366,0.14547756314278],[-0.069303058087826,0.043579626828432,-0.088099673390388],[0.0063806185498834,-0.12890733778477,0.0657978951931]],[[-0.026343422010541,0.22010853886604,-0.048295620828867],[-0.038442388176918,-0.097702458500862,-0.080921970307827],[-0.090480618178844,-0.0073737283237278,0.17221410572529]],[[0.43281248211861,-0.22406511008739,-0.1483663469553],[0.45174923539162,-0.24584345519543,-0.19448633491993],[-0.057163678109646,-0.19622260332108,0.090736493468285]],[[-0.013435888104141,0.020286222919822,-0.039259277284145],[0.0029309317469597,-0.0010829828679562,0.0037299050018191],[-0.037002272903919,-0.13049760460854,-0.074785798788071]],[[-0.018647521734238,-0.046808615326881,0.046396434307098],[0.0069916215725243,-0.056874494999647,0.042301885783672],[0.0060331607237458,-0.010853366926312,0.080756701529026]],[[0.024547699838877,-0.00068509968696162,-0.026172379031777],[0.021139495074749,-0.073661483824253,-0.041074778884649],[0.051416598260403,-0.067451134324074,0.091776967048645]],[[0.098355785012245,-0.2501859664917,-0.032710019499063],[0.16305595636368,-0.17425735294819,0.010145298205316],[0.077736407518387,-0.015986997634172,0.14981308579445]],[[-0.057060524821281,0.14640891551971,0.14268189668655],[0.081576772034168,-0.19955672323704,0.044656403362751],[0.05590733140707,-0.17214226722717,0.047794323414564]],[[0.12724120914936,-0.086091056466103,0.0054238601587713],[-0.12913383543491,0.0056950249709189,-0.062911793589592],[0.043887302279472,0.10099060088396,0.082590453326702]],[[-0.00059178256196901,0.0098385438323021,-0.06438859552145],[-0.066953763365746,0.048905342817307,0.11636628210545],[-0.015341254882514,0.084711320698261,-0.050003290176392]],[[0.014404276385903,0.094678945839405,0.010087361559272],[0.066020928323269,0.034432470798492,0.026709185913205],[-0.14591693878174,0.088715024292469,-0.091755494475365]],[[0.03238458558917,0.15989804267883,0.067229270935059],[-0.043115723878145,-0.025240771472454,-0.024411687627435],[-0.065966241061687,-0.0032688700594008,-0.1284114420414]],[[-0.11955349892378,-0.051524996757507,-0.096792079508305],[0.067932769656181,0.14393028616905,0.0093755787238479],[0.011008933186531,-0.0097930338233709,-0.028946733102202]],[[0.020758660510182,0.045710396021605,0.15275314450264],[0.06998423486948,-0.015886710956693,0.067643597722054],[0.10760639607906,-0.1926758736372,-0.15364421904087]],[[-0.063401728868484,-0.11877001821995,-0.080967865884304],[-0.24661469459534,-0.11490367352962,-0.023291034623981],[-0.1122677847743,0.12000032514334,-0.10840965807438]],[[-0.09395232796669,-0.022154983133078,0.087958827614784],[-0.048718959093094,0.24968439340591,0.037953604012728],[0.0174719709903,-0.13089391589165,0.061206638813019]],[[0.02543400041759,-0.078304685652256,0.079133883118629],[-0.043071672320366,0.063523501157761,-0.024418843910098],[-0.12614868581295,0.04254886880517,-0.00626733712852]],[[0.10663889348507,0.028649551793933,-0.0073053636588156],[0.14483854174614,0.032068118453026,0.017609348520637],[0.051062662154436,-0.1601334810257,-0.1716713309288]],[[0.064708240330219,0.047347851097584,0.088445566594601],[0.018394934013486,-0.024371834471822,-0.26865056157112],[0.092387355864048,-0.011198933236301,0.030167354270816]]],[[[-0.038988303393126,0.043259229511023,0.10935585945845],[-0.061836425215006,-0.0033802988473326,-0.12010376155376],[0.098917685449123,0.017065290361643,-0.12014904618263]],[[-0.050912655889988,-0.057933643460274,0.070631854236126],[0.0018788693705574,-0.013176902197301,0.16971515119076],[-0.092559039592743,-0.032756205648184,-0.029613811522722]],[[0.1641052365303,0.067840479314327,-0.041479032486677],[-0.35867717862129,0.0040300535038114,-0.16489094495773],[-0.23329503834248,-0.0015815255464986,-0.086894981563091]],[[-0.14902751147747,-0.20984706282616,-0.012498171068728],[0.040721450001001,-0.04019558802247,0.014181633479893],[0.1565852612257,-0.0040368996560574,-0.05350948125124]],[[-0.11169304698706,0.1633071154356,-0.14222943782806],[0.10699521750212,-0.1692627966404,0.12486354261637],[0.0053708152845502,0.027284767478704,-0.082633256912231]],[[-0.090495452284813,0.046115305274725,0.082016967236996],[-0.0089935697615147,0.0076552992686629,-0.00018401761190034],[0.0007508109556511,-0.034998144954443,-0.026747472584248]],[[0.078775405883789,0.068284258246422,0.1129931434989],[0.05994489043951,-0.080859765410423,-0.11132028698921],[-0.075289309024811,0.0046741547994316,0.0061193332076073]],[[0.02389121055603,0.069507487118244,0.024034697562456],[0.014083955436945,0.014494836330414,-0.20954279601574],[0.0060170986689627,-0.10898070782423,-0.02136948145926]],[[-0.14072026312351,0.099188283085823,-0.12833984196186],[0.02960105240345,-0.023794004693627,0.087759532034397],[0.18200539052486,0.023989988490939,0.17708414793015]],[[-0.13812719285488,-0.036654815077782,0.043320503085852],[-0.064415574073792,0.025491377338767,0.060442626476288],[0.096752010285854,0.063707076013088,-0.019684666767716]],[[0.0027611749246716,0.1566104143858,-0.18824389576912],[-0.066016316413879,-0.0074180965311825,-0.11330865323544],[0.19279734790325,-0.0052075418643653,-0.022366655990481]],[[0.01517862547189,0.096181437373161,-0.15630538761616],[0.029143434017897,-0.068227544426918,0.06975632160902],[-0.11406783014536,0.05978824570775,0.20885862410069]],[[-0.059708934277296,0.0023968841414899,0.24514450132847],[-0.0048802820965648,-0.14924232661724,0.07669473439455],[0.090757042169571,0.046492960304022,-0.044405810534954]],[[0.085001848638058,0.014198482967913,-0.085032030940056],[0.07118122279644,0.084125943481922,-0.15354515612125],[0.074722930788994,-0.0638267993927,0.054963875561953]],[[-0.065774649381638,0.025592379271984,0.070497296750546],[-0.091196902096272,-0.030078612267971,0.10775845497847],[-0.10983955860138,0.11249589174986,0.046464115381241]],[[-0.038891557604074,0.21668662130833,0.046099048107862],[-0.09871668368578,-0.10217700153589,-0.087540172040462],[0.11023083329201,0.086288042366505,-0.019792634993792]],[[-0.00040002533933148,0.029532920569181,-0.011271405033767],[0.10100762546062,0.090174727141857,0.15915779769421],[-0.011592808179557,0.010127971880138,0.063893169164658]],[[-0.073210701346397,0.083299934864044,0.064270541071892],[0.04934686422348,0.1505361199379,-0.14221847057343],[0.08996307849884,0.017708731815219,-0.19180411100388]],[[0.024649517610669,-0.03150500357151,0.035699266940355],[0.095459960401058,0.11876756697893,0.070485517382622],[0.019526472315192,-0.10982674360275,-0.0062820818275213]],[[0.029175249859691,0.14960168302059,0.094335541129112],[-0.11631326377392,-0.043199490755796,-0.035707734525204],[0.043263304978609,-0.042695105075836,-0.11170668900013]],[[0.069596789777279,-0.13695952296257,0.011116943322122],[0.077752992510796,-0.18423680961132,-0.19041733443737],[-0.02765310741961,-0.1767737865448,-0.040788143873215]],[[-0.095928251743317,-0.027193764224648,0.025919357314706],[-0.1320863366127,0.057981133460999,0.038114622235298],[0.13082532584667,0.026016740128398,-0.090916767716408]],[[0.038435839116573,-0.012241340242326,-0.24611519277096],[-0.058473575860262,0.14823690056801,-0.08382722735405],[0.078622907400131,0.026269003748894,-0.11097663640976]],[[-0.03341106325388,-0.040827602148056,-0.040939658880234],[0.016427328810096,-0.05925340950489,-0.010383107699454],[0.09187962859869,0.012632822617888,0.108782812953]],[[-0.11651729047298,0.011975807137787,-0.13711103796959],[-0.087702348828316,0.04237562790513,-0.042035669088364],[-0.090715661644936,0.12990979850292,0.1055169031024]],[[-0.13617011904716,0.19808502495289,-0.0559471398592],[0.21738977730274,-0.0098974872380495,-0.24666205048561],[-0.016371704638004,0.025642389431596,-0.17822073400021]],[[-0.0014116410166025,-0.009939206764102,-0.24109549820423],[0.11516518890858,0.053870763629675,-0.040184117853642],[-0.050822701305151,-0.051971886307001,-0.062006708234549]],[[-0.24751283228397,-0.08758195489645,0.084710732102394],[-0.014707049354911,0.047274127602577,0.092508353292942],[-0.29721555113792,-0.10723935067654,-0.10628823190928]],[[0.086261950433254,0.07191077619791,0.014584360644221],[0.027291495352983,0.054937563836575,-0.069807976484299],[-0.14938342571259,-0.067688941955566,-0.10992678999901]],[[-0.035576794296503,0.096410147845745,0.13154031336308],[-0.099696390330791,0.014739389531314,0.034321110695601],[0.11095470935106,0.015955680981278,-0.078855231404305]],[[-0.046044155955315,-0.022133536636829,-0.1397959291935],[-0.097714282572269,-0.065238513052464,-0.043265372514725],[0.11067415028811,0.042019449174404,0.10675720870495]],[[-0.041726052761078,0.030765721574426,0.067444935441017],[-0.027581026777625,0.026871550828218,-0.025543343275785],[-0.11473367363214,-0.074970036745071,-0.020154310390353]]],[[[-0.060931291431189,0.049264598637819,-0.14203527569771],[-0.10492752492428,0.10145104676485,0.092695392668247],[-0.027467163279653,-0.014783573336899,-0.0069499970413744]],[[0.017635645344853,0.04876796901226,-0.028032505884767],[0.11198847740889,-0.060599248856306,-0.055886775255203],[0.21819549798965,-0.11100259423256,-0.09956206381321]],[[0.069834940135479,-0.032812427729368,0.10128594189882],[0.017829651013017,-0.0053887711837888,0.040141426026821],[-0.022332986816764,-0.0067627122625709,0.013766134157777]],[[0.30160909891129,-0.077951923012733,-0.28863629698753],[0.037382449954748,0.0048765046522021,0.01147392205894],[-0.067477904260159,-0.2115077227354,-0.038977332413197]],[[-0.013621870428324,0.03818229213357,-0.030728578567505],[-0.082123965024948,-0.11136157810688,-0.028023779392242],[0.078469499945641,0.045343901962042,0.10867221653461]],[[-0.12912030518055,0.05398340895772,0.048428367823362],[0.0037102191708982,-0.093138486146927,-0.0015167715027928],[0.093843944370747,0.33685117959976,0.073335200548172]],[[0.027835257351398,0.007259932346642,-0.024197967723012],[-0.15372580289841,0.058991853147745,0.049753230065107],[0.010733431205153,0.10806412994862,0.031194685027003]],[[-0.014590405859053,0.16446423530579,-0.038840088993311],[-0.023495253175497,-0.009235542267561,0.065079547464848],[-0.032100826501846,-0.16626487672329,-0.015848375856876]],[[0.12641805410385,-0.034233644604683,-0.1717603802681],[0.023367242887616,-0.065458454191685,0.040189318358898],[0.14311178028584,-0.14544780552387,-0.035531371831894]],[[0.087814651429653,0.0058438791893423,-0.077456973493099],[-0.029444687068462,-0.025673760101199,0.12214045226574],[-0.13198928534985,-0.064323700964451,0.14327242970467]],[[-0.10216053575277,-0.052766501903534,0.087404660880566],[0.12205060571432,0.027163580060005,0.0071968217380345],[-0.20455951988697,0.035297699272633,-0.031889952719212]],[[-0.19481360912323,-0.032468661665916,0.020002126693726],[-0.13198705017567,0.021386675536633,-0.066194765269756],[0.12149080634117,0.00083948910469189,-0.0069958311505616]],[[-0.042094618082047,0.085904322564602,0.0024707859847695],[0.1024656817317,-0.062799900770187,-0.20312057435513],[0.095178201794624,0.041063267737627,-0.031768426299095]],[[0.18977999687195,-0.12965439260006,-0.015953170135617],[0.046114098280668,0.092418506741524,-0.11393012106419],[-0.10018800199032,-0.09647349268198,0.068941667675972]],[[0.06166110932827,-0.10536247491837,0.11307669430971],[-0.059045974165201,0.19850894808769,-0.064611628651619],[0.036388609558344,-0.04453119635582,-0.09483839571476]],[[-0.023184331133962,-0.0062709050253034,-0.1545744240284],[0.047702796757221,0.051909413188696,-0.082427151501179],[-0.16364739835262,-0.126719430089,-0.0079411873593926]],[[-0.1669474542141,-0.090128473937511,-0.01204404886812],[-0.082806408405304,-0.051872171461582,0.04571783170104],[-0.046545132994652,0.058963660150766,-0.055983372032642]],[[-0.10290635377169,-0.0052368529140949,0.061214938759804],[-0.07387588173151,0.070505931973457,-0.028016207739711],[0.06136366724968,0.088252671062946,-0.0990926399827]],[[-0.089107230305672,-0.12135077267885,0.11125873029232],[0.1157243847847,-0.014446220360696,0.095227964222431],[-0.11276490986347,0.011573753319681,-0.016296742483974]],[[0.13185961544514,-0.12589927017689,-0.069744855165482],[-0.051105085760355,-0.013779788278043,-0.010528992861509],[0.046983242034912,0.18404185771942,0.056094996631145]],[[0.10593646764755,0.06271293759346,-0.016891682520509],[-0.12570160627365,0.096977204084396,-0.048475526273251],[0.15903115272522,0.0033646051306278,-0.040117751806974]],[[0.031296659260988,-0.15152624249458,0.13425229489803],[0.085935719311237,0.099014177918434,-0.061587281525135],[-0.029732653871179,0.11557634919882,-0.088464871048927]],[[-0.025653958320618,-0.10444630682468,0.077167063951492],[-0.17074497044086,-0.1372459679842,0.16851380467415],[0.019999567419291,0.093996673822403,0.056846108287573]],[[-0.04036208987236,0.017976762726903,0.17119251191616],[-0.15022590756416,-0.11424411088228,-0.048421040177345],[0.060461342334747,-0.068466491997242,0.077939562499523]],[[-0.040744457393885,0.081211991608143,-0.121966406703],[-0.0092023797333241,-0.10933125019073,0.083145894110203],[0.12756319344044,0.16259522736073,-0.16779711842537]],[[-0.022539272904396,-0.08488917350769,-0.20565049350262],[-0.14364396035671,-0.037930127233267,-0.0841423869133],[0.050964571535587,0.075063437223434,0.2969850897789]],[[0.014863526448607,-0.20483177900314,-0.13873314857483],[0.2395825535059,0.14010252058506,-0.12254280596972],[0.1132175847888,-0.074039556086063,-0.1314190775156]],[[-0.2983455657959,-0.25937896966934,-0.38622090220451],[0.0093760471791029,0.14951202273369,0.059956479817629],[0.083266481757164,0.11946192383766,-0.17352119088173]],[[-0.078335255384445,0.11504982411861,-0.074717707931995],[0.064865589141846,-0.07068607956171,-0.16455133259296],[0.26467368006706,0.11162417382002,-0.098522745072842]],[[0.0042384434491396,-0.0059307035990059,-0.14908894896507],[0.10774890333414,-0.094897657632828,-0.010361693799496],[0.10100378841162,-0.082223281264305,-0.12399157136679]],[[-0.039812166243792,0.082143999636173,-0.0470428802073],[-0.035722363740206,-0.0048953159712255,0.058641888201237],[0.089169263839722,0.014931329526007,-0.054502870887518]],[[0.034345950931311,0.13799071311951,0.04960809648037],[0.057576600462198,-0.053746122866869,-0.065372809767723],[-0.056055687367916,0.11639336496592,-0.034305840730667]]],[[[0.044437389820814,0.12521056830883,0.0013674927176908],[0.045532569289207,-0.103166423738,-0.026657519862056],[-0.092453561723232,0.099493585526943,-0.069148026406765]],[[0.099146574735641,0.20640689134598,0.2507688999176],[0.021651145070791,-0.055266987532377,-0.12437094002962],[-0.1086497604847,0.15246327221394,0.0032805458176881]],[[0.13684085011482,0.11650091409683,0.013491929508746],[-0.058867488056421,0.088056571781635,-0.12647211551666],[0.010967081412673,-0.12240991741419,0.010712252929807]],[[0.23988960683346,-0.001174372038804,-0.0067522516474128],[-0.33927303552628,0.29871132969856,-0.01259505096823],[-0.029027946293354,0.17638303339481,0.087530627846718]],[[0.074086308479309,-0.012484963983297,-0.039833176881075],[-0.1119132861495,0.1374896466732,0.10156792402267],[-0.13940347731113,0.11716267466545,-0.054628893733025]],[[-0.010841803625226,-0.13422568142414,-0.063071243464947],[-0.079928107559681,-0.21255797147751,-0.054476782679558],[0.059277687221766,-0.18310824036598,0.0024885586462915]],[[-0.10909041762352,0.11935722827911,0.13309752941132],[-0.0042510628700256,0.024028025567532,0.16174018383026],[-0.030593646690249,0.055846329778433,-0.062365166842937]],[[0.091600321233273,-0.16414067149162,0.10828168690205],[-0.14325667917728,0.020003728568554,-0.084623135626316],[0.048063542693853,0.040997676551342,-0.090995170176029]],[[0.070693470537663,-0.060686003416777,-0.04582492262125],[0.07355322688818,0.087528042495251,-0.087844334542751],[0.10399870574474,-0.067066796123981,-0.18433174490929]],[[-0.12182771414518,-0.11008704453707,0.023707276210189],[-0.070742040872574,0.015867019072175,0.060412418097258],[0.03079647384584,-0.036973658949137,-0.023430673405528]],[[0.023496991023421,0.030259879305959,-0.068586826324463],[-0.022351484745741,-0.13852658867836,-0.10694548487663],[0.030678672716022,0.060949917882681,0.05084840580821]],[[0.079954147338867,-0.026638075709343,0.057682722806931],[0.045747518539429,-0.15511079132557,0.082581296563148],[-0.23272597789764,0.00026578814140521,0.0090939719229937]],[[0.048247892409563,0.024450665339828,-0.0074484823271632],[0.10928322374821,-0.078203156590462,-0.073889225721359],[-0.11904078722,0.05846593528986,0.15556508302689]],[[0.083746552467346,-0.089423283934593,-0.08279525488615],[-0.066823072731495,-0.056751001626253,0.003675163956359],[-0.0011860124068335,0.023491652682424,0.080381788313389]],[[-0.010121462866664,0.17553088068962,0.066921912133694],[-0.12223345786333,0.25493600964546,-0.020514529198408],[0.068349182605743,0.021151468157768,-0.090499110519886]],[[0.31652194261551,-0.097987115383148,0.38020321726799],[0.020639108493924,0.22516813874245,0.19958421587944],[-0.044409539550543,-0.014927086420357,-0.15887033939362]],[[0.031003592535853,0.0061439955607057,0.040186524391174],[-0.090968325734138,0.049006216228008,-0.18715570867062],[0.2960889339447,-0.045842994004488,0.024958709254861]],[[-0.062546342611313,-0.10059835761786,-0.016102645546198],[-0.15069761872292,0.12056194245815,0.13863280415535],[-0.068510718643665,0.007307602558285,0.012313668616116]],[[-0.065021388232708,0.039484761655331,-0.15622334182262],[0.15045638382435,0.23987604677677,-0.17720317840576],[-0.094830475747585,-0.039888292551041,-0.07611870020628]],[[-0.043669983744621,0.075050346553326,0.097873844206333],[0.075990840792656,-0.0013827211223543,-0.068697907030582],[0.083846665918827,-0.04706808924675,-0.010677821934223]],[[0.019546067342162,0.088153555989265,-0.08444606512785],[0.0003146899107378,0.021995563060045,0.095252148807049],[0.06773803383112,0.055218912661076,-0.20187948644161]],[[-0.094299532473087,0.21052427589893,0.043751399964094],[0.039617624133825,-0.085427336394787,-0.029226401820779],[-0.080254912376404,0.056429617106915,-0.075222849845886]],[[-0.070194981992245,0.23185841739178,0.078977473080158],[0.062930144369602,0.039740014821291,-0.24280318617821],[-0.094253107905388,0.10515157878399,-0.12598393857479]],[[-0.26477637887001,0.050820343196392,0.10688459873199],[-0.11441246420145,-0.0054292608983815,-0.084328643977642],[0.050237569957972,0.095046885311604,-0.093975849449635]],[[0.064185574650764,0.12973827123642,0.057848520576954],[0.0099332565441728,-0.15185758471489,-0.18103800714016],[-0.079355731606483,0.060463603585958,0.030730554834008]],[[0.056859195232391,0.17339405417442,0.063332229852676],[-0.27082335948944,-0.13029292225838,0.12835671007633],[0.046662140637636,0.12683095037937,-0.20797447860241]],[[0.10764555633068,0.15736369788647,0.16552244126797],[-0.016907222568989,-0.14837448298931,0.14415377378464],[0.15428678691387,0.092619717121124,0.019740564748645]],[[0.11210266500711,-0.040855910629034,0.018382661044598],[0.092476353049278,0.10110609978437,0.063810810446739],[-0.070252597332001,0.088476628065109,0.036864295601845]],[[0.067646734416485,0.026238899677992,-0.018785612657666],[-0.084088876843452,-0.035771504044533,-0.025657881051302],[0.091793768107891,0.31928330659866,-0.11458034813404]],[[0.057584516704082,0.23743826150894,-0.069963812828064],[-0.023923607543111,-0.026556745171547,0.072181895375252],[-0.050644032657146,-0.023282006382942,0.028371922671795]],[[-0.14143018424511,-0.045191578567028,-0.10987316817045],[0.11352040618658,0.10715816169977,-0.041987091302872],[-0.093298725783825,0.06408017873764,-0.064774848520756]],[[0.098715737462044,-0.062307734042406,0.020651927217841],[0.046538837254047,0.012441536411643,0.041650667786598],[0.0096548330038786,0.070548467338085,0.15133066475391]]],[[[-0.077779173851013,-0.032638322561979,0.023687170818448],[-0.060979437083006,0.033069640398026,-0.066083110868931],[-0.089531257748604,-0.081303209066391,-0.00064885441679507]],[[-0.077219434082508,0.062609031796455,0.10893553495407],[0.16768403351307,0.043582126498222,-0.05107706040144],[-0.018357938155532,0.066016465425491,0.18663029372692]],[[-0.045897785574198,-0.019507205113769,0.06883005797863],[0.00079469208139926,-0.013692651875317,0.1812519133091],[-0.028463067486882,-0.03968608751893,0.039653863757849]],[[0.3793797492981,0.08984998613596,0.065977185964584],[-0.057976756244898,0.0096613420173526,-0.16393226385117],[0.12062976509333,0.045703269541264,-0.0650954246521]],[[-0.087246529757977,-0.094931669533253,-0.11523498594761],[-0.015178579837084,0.057241223752499,0.09654127061367],[0.070203587412834,-0.037805300205946,-0.071504935622215]],[[-0.056634701788425,0.082707554101944,-0.081844121217728],[-0.15435215830803,0.087877482175827,0.060977585613728],[0.014445620588958,0.052879597991705,-0.04446891322732]],[[-0.19124656915665,-0.022386783733964,0.00091785402037203],[0.055907461792231,0.10422376543283,0.080301463603973],[-0.011803665198386,-0.044125378131866,0.063690632581711]],[[0.0050786710344255,0.16574412584305,-0.0038650673814118],[-0.042770024389029,-0.069455020129681,0.075614310801029],[0.048205677419901,-0.026624878868461,-0.10565038770437]],[[0.17110946774483,-0.13018517196178,0.0092132873833179],[-0.035332225263119,-0.050878264009953,0.0057711782865226],[0.17131222784519,0.083725333213806,0.028038153424859]],[[-0.070263490080833,-0.031425930559635,0.058798380196095],[-0.0035993859637529,-0.11484199762344,-0.01845994964242],[0.0029806348029524,-0.11972045898438,0.040739048272371]],[[-0.16738606989384,0.046322111040354,0.021844385191798],[0.20334529876709,-0.015021014027297,0.10054092109203],[-0.15233898162842,0.041731890290976,-0.11436381191015]],[[0.12165442109108,-0.0023730888497084,-0.12670417129993],[-0.10353983193636,-0.03312399610877,0.032104909420013],[0.030204331502318,0.031023424118757,0.037778843194246]],[[-0.034821584820747,-0.13670378923416,0.021487195044756],[0.12761722505093,-0.036605510860682,0.073433004319668],[-0.0036965461913496,-0.1130987778306,0.18906311690807]],[[-0.23269814252853,-0.025454469025135,0.13850666582584],[-0.10853143036366,0.053803004324436,-0.050428576767445],[0.031180938705802,-0.01651993393898,0.17602887749672]],[[0.027415227144957,0.033673990517855,-0.1968982219696],[0.005632390268147,0.076316550374031,-0.0096821198239923],[0.045652043074369,0.063267461955547,-0.014200550504029]],[[0.075038827955723,0.15902216732502,-0.16401363909245],[0.036916468292475,0.046037711203098,0.071558050811291],[0.038965117186308,-0.11745098233223,0.1018340587616]],[[-0.18010179698467,-0.064185209572315,-0.063384808599949],[0.0065813781693578,-0.018498556688428,-0.025157542899251],[-0.1050074622035,-0.0084732165560126,0.16653560101986]],[[-0.018766796216369,0.091481275856495,0.16045488417149],[-0.068071581423283,0.070224218070507,-0.080303549766541],[0.0050532827153802,0.017525613307953,-0.098797984421253]],[[0.017540287226439,0.023505533114076,0.093816474080086],[-0.051696833223104,0.10254644602537,0.022330341860652],[-0.099116317927837,-0.11591858416796,-0.15377590060234]],[[0.020067255944014,-0.21362543106079,-0.029195999726653],[0.03713309392333,-0.0098192188888788,0.045675665140152],[0.12921074032784,-0.024600068107247,0.10742102563381]],[[0.013355134055018,-0.051736954599619,0.027842232957482],[-0.053301859647036,0.10758523643017,0.11015220731497],[-0.10041320323944,-0.046866320073605,0.083503820002079]],[[-0.13004978001118,-0.069564871490002,0.051081754267216],[0.072672046720982,-0.014151085168123,-0.19011586904526],[0.054124273359776,0.01448589656502,0.10727037489414]],[[0.0060589518398046,0.056417912244797,0.0034829042851925],[-0.045400533825159,-0.045571684837341,-0.025273084640503],[-0.12200921028852,-0.036665126681328,0.040216330438852]],[[0.071220256388187,-0.13234125077724,-0.19206950068474],[-0.012415448203683,0.023646345362067,0.0037341890856624],[-0.2165953963995,-0.12144561856985,-0.038291990756989]],[[0.074906915426254,0.093797326087952,-0.0027346746064723],[0.073869094252586,0.040927089750767,-0.0031521562486887],[-0.0024021284189075,-0.09152364730835,-0.035720951855183]],[[0.02503652125597,-0.14588589966297,0.31840038299561],[0.0081073166802526,-0.072786048054695,0.044825553894043],[0.04746999591589,-0.059700459241867,-0.10536871105433]],[[-0.006324527785182,0.15556839108467,0.025689983740449],[0.11808429658413,-0.15295355021954,-0.075316622853279],[-0.043893836438656,0.027643309906125,0.17634345591068]],[[-0.14270307123661,0.042049203068018,0.03086880594492],[0.051314678043127,0.037095785140991,-0.060469727963209],[-0.10641949623823,-0.059550866484642,0.0057121617719531]],[[0.027716130018234,0.10527946799994,0.026520807296038],[0.12145228683949,0.024707974866033,0.084253676235676],[-0.11429958790541,0.014351893216372,-0.0034070550464094]],[[0.0076800659298897,0.036752738058567,-0.013460954651237],[0.10740299522877,0.043053135275841,0.0083719827234745],[0.013060003519058,-0.074160724878311,0.099508009850979]],[[0.05006255581975,0.15901190042496,0.098130658268929],[-0.0055278087966144,-0.020516213029623,0.12222950905561],[-0.021945612505078,-0.13878829777241,-0.054789248853922]],[[0.035200174897909,0.031642105430365,-0.10695126652718],[-0.121377594769,-0.0047997133806348,-0.16097643971443],[-0.085830472409725,-0.13623702526093,-0.070969000458717]]],[[[-0.13188979029655,-0.21169932186604,-0.23225626349449],[0.0032029093708843,-0.098970465362072,-0.034305140376091],[0.10345656424761,-0.07920977473259,0.036592904478312]],[[-0.10163816064596,0.085097767412663,0.062979593873024],[-0.0022440301254392,-0.02545814961195,-0.052012581378222],[-0.067140817642212,0.065821118652821,0.079336374998093]],[[0.028966408222914,0.078690335154533,-0.095896065235138],[0.03460580855608,-0.36396661400795,-0.098456874489784],[0.010006993077695,-0.042974807322025,-0.0058923829346895]],[[0.018518950790167,-0.26210308074951,-0.22331127524376],[-0.23147924244404,0.074227757751942,0.080507919192314],[-0.0064931809902191,0.23532462120056,0.050345025956631]],[[0.052829623222351,-0.032187834382057,0.015584449283779],[-0.030121397227049,-0.016559407114983,-0.036131154745817],[0.10919909924269,-0.0762784704566,-0.03431810811162]],[[-0.074096404016018,0.039878644049168,0.024018198251724],[0.025802794843912,0.042667098343372,0.068691968917847],[0.18866130709648,0.13292053341866,-0.12647205591202]],[[0.11626101285219,-0.020657230168581,0.26757374405861],[0.24198731780052,-0.11737352609634,-0.092129297554493],[-0.24975024163723,-0.35982090234756,-0.023448137566447]],[[0.011940932832658,-0.040037419646978,-0.00037599710049108],[0.078258126974106,-0.015381977893412,-0.023042120039463],[-0.11047005653381,0.045837976038456,0.02283220179379]],[[-0.03031987324357,0.045701615512371,-0.087060734629631],[0.026708636432886,-0.018563482910395,0.084204539656639],[0.058945365250111,-0.049028191715479,-0.13243299722672]],[[-0.00041566792060621,0.06820123642683,-0.0041910586878657],[0.041381735354662,-0.027503117918968,0.033712301403284],[-0.038019675761461,0.030938468873501,-0.0068456623703241]],[[-0.038544479757547,0.039081785827875,0.0080974111333489],[-0.066959053277969,0.038960248231888,-0.09595675766468],[-0.21492066979408,0.17002700269222,0.14434890449047]],[[0.10462993383408,-0.018735744059086,0.018781749531627],[-0.033331651240587,-0.11541877686977,0.035469118505716],[0.091303028166294,0.046128984540701,0.08974964171648]],[[-0.094342656433582,-0.0053890128619969,-0.0053690928034484],[0.19320929050446,0.0079421745613217,-0.18459142744541],[-0.009196687489748,-0.010987262241542,0.077379494905472]],[[0.15971806645393,-0.0077454173006117,-0.066091246902943],[0.027844950556755,0.12336137145758,-0.038972612470388],[-0.050522327423096,-0.09456080198288,-0.034346800297499]],[[0.10789209604263,-0.29160809516907,-0.25703889131546],[-0.011112210340798,0.053831778466702,-0.081470184028149],[0.38920199871063,0.0077337641268969,-0.24968269467354]],[[-0.19224247336388,-0.054748985916376,0.089346766471863],[-0.018101036548615,-0.05736057087779,0.19284689426422],[-0.1514722853899,-0.0021173506975174,-0.17264364659786]],[[0.094776749610901,-0.034451760351658,-0.099607236683369],[-0.1212435439229,0.012602319940925,-0.10307825356722],[0.15786516666412,0.099510446190834,-0.043556582182646]],[[-0.029664153233171,-0.031873103231192,-0.069028809666634],[-0.15663075447083,-0.0081766238436103,0.11662573367357],[-0.048859313130379,-0.14067378640175,0.19684667885303]],[[-0.10402324795723,0.18217165768147,-0.23438410460949],[0.02175640873611,0.054114185273647,-0.13423751294613],[0.028853587806225,-0.052700404077768,-0.063463971018791]],[[0.1698072552681,-0.039511919021606,-0.083777785301208],[0.0048776404000819,-0.010034770704806,-0.090601176023483],[0.094296544790268,0.11138429492712,-0.38159075379372]],[[-0.027903161942959,0.05629488825798,-0.0054724733345211],[0.054522480815649,-0.17589432001114,-0.17944407463074],[0.07977270334959,-0.030723568052053,-0.074024058878422]],[[0.061720605939627,0.035013526678085,0.14518411457539],[-0.03531613573432,0.10686981678009,0.2897883951664],[-0.096569143235683,-0.23307797312737,0.022538460791111]],[[0.016472976654768,0.13445982336998,0.0110750682652],[-0.058139938861132,-0.025372924283147,0.0035042341332883],[-0.14553245902061,-0.035494592040777,0.069557949900627]],[[0.076350912451744,0.030364850535989,0.2576507627964],[0.09155335277319,-0.16656638681889,0.086641803383827],[-0.019966956228018,-0.085827939212322,0.01627042889595]],[[-0.0003167912364006,-0.0053937947377563,0.036906655877829],[0.05822166800499,-0.0581990852952,-0.022046538069844],[-0.044343862682581,-0.016508148983121,0.07267002761364]],[[0.082561857998371,0.20241276919842,0.074164405465126],[0.053896471858025,0.030544105917215,-0.040415082126856],[-0.15316562354565,-0.095650061964989,-0.048291567713022]],[[0.076449044048786,-0.038264166563749,-0.1354995816946],[0.11918871849775,-0.10162295401096,-0.1792963296175],[0.0025433236733079,-0.082846589386463,-0.090244203805923]],[[0.14333732426167,-0.039520211517811,0.020246243104339],[0.017576705664396,-0.11253436654806,0.1886702477932],[0.093464873731136,-0.20292550325394,-0.1679752767086]],[[-0.002863097935915,-0.066955290734768,0.041968237608671],[0.11296191811562,0.0218306761235,-0.062094744294882],[0.13643404841423,-0.11741439253092,-0.13833284378052]],[[0.032763909548521,0.11999430507421,-0.026270445436239],[-0.079598426818848,0.22703650593758,-0.22362564504147],[0.0099870525300503,0.096430279314518,-0.032967925071716]],[[0.021161323413253,-0.014891504310071,0.045915961265564],[-0.088434040546417,0.12512178719044,0.13380080461502],[-0.092129312455654,-0.050788763910532,-0.12989935278893]],[[-0.071243286132812,-0.11248820275068,0.036769784986973],[0.098132945597172,-0.074449025094509,-0.12351588904858],[0.093819417059422,-0.26993054151535,0.071488246321678]]],[[[-0.15214349329472,-0.22514902055264,-0.14069902896881],[-0.29922369122505,-0.13100980222225,0.091673791408539],[-0.11976841837168,-0.077344000339508,0.059726774692535]],[[0.10739751905203,-0.10136583447456,0.040734224021435],[-0.023021522909403,-0.15893195569515,-0.02504657395184],[-0.064577601850033,-0.10893592983484,-0.10665088146925]],[[0.0032298387959599,-0.16617053747177,-0.18536730110645],[-0.052532605826855,-0.034972056746483,-0.21449252963066],[0.073423080146313,0.04872789978981,-0.090739652514458]],[[0.035406276583672,0.14731767773628,-0.050135280936956],[-0.23695303499699,-0.042366851121187,-0.029094675555825],[-0.06888485699892,-0.11836221814156,0.037765618413687]],[[-0.065624125301838,0.097020633518696,0.061201509088278],[0.021654363721609,-0.030764155089855,-0.050880450755358],[0.01237562391907,0.029014905914664,-0.090401619672775]],[[-0.20490860939026,0.10973973572254,-0.15181329846382],[0.04564543813467,0.1184017136693,0.031048657372594],[0.043436750769615,0.023909587413073,0.083591945469379]],[[-0.10984960198402,-0.073109962046146,-0.11368508636951],[0.037289727479219,0.11653511971235,-0.13414892554283],[-0.16236636042595,0.10898664593697,0.015727676451206]],[[-0.045605562627316,0.024659371003509,0.014272064901888],[0.051587391644716,0.10310862958431,-0.12503531575203],[-0.060882281512022,-0.05265374854207,-0.034954626113176]],[[-0.0966851785779,0.0019186687422916,0.024223178625107],[0.18353295326233,0.086236655712128,0.18178914487362],[-0.12447535246611,0.16040425002575,-0.029336372390389]],[[-0.11328628659248,-0.04743442311883,0.10017587244511],[0.12956316769123,0.0055885394103825,-0.087886184453964],[0.15251103043556,0.024692799896002,-0.087262585759163]],[[-0.013253125362098,0.035796981304884,0.055410951375961],[-0.13253025710583,0.23819594085217,0.031227180734277],[-0.070075556635857,-0.18625023961067,-0.15808320045471]],[[-0.29076224565506,-0.019975705072284,0.091413587331772],[-0.029641261324286,-0.078461438417435,-0.042819935828447],[0.036818128079176,0.0083740465342999,0.11063139140606]],[[0.14857368171215,-0.16713719069958,0.01428996026516],[0.062333665788174,-0.064875811338425,-0.028390051797032],[-0.2655853331089,0.16565692424774,-0.069695591926575]],[[-0.16095279157162,-0.063318818807602,0.080803133547306],[0.083685413002968,0.028448967263103,-0.040698546916246],[-0.093213997781277,0.032962970435619,0.10687838494778]],[[0.0090649435296655,-0.16983619332314,0.0077062528580427],[-0.1413127630949,-0.15102404356003,0.11378289014101],[-0.096029683947563,0.010377597995102,-0.14943279325962]],[[-0.095728114247322,0.0041382908821106,-0.1809239089489],[-0.061273537576199,0.024377711117268,-0.0010255799861625],[0.035794466733932,-0.003669174388051,-0.16002255678177]],[[-0.050097193568945,-0.16509775817394,0.15987047553062],[-0.13124163448811,0.077073231339455,-0.052196487784386],[-0.022484555840492,0.043185263872147,0.24582409858704]],[[-0.061821445822716,-0.14205472171307,0.090397462248802],[-0.14060382544994,-0.04473415389657,0.14001128077507],[-0.042143933475018,-0.057313039898872,0.038559202104807]],[[-0.09309084713459,0.089438825845718,0.20088484883308],[-0.04844569042325,-0.15792867541313,0.16649748384953],[0.039899457246065,-0.14810946583748,0.001362603274174]],[[-0.058373160660267,-0.077331602573395,-0.16291572153568],[-0.051541328430176,-0.095153033733368,0.021130805835128],[0.025507766753435,-0.072291098535061,0.10446950048208]],[[-0.34556245803833,0.10282723605633,-0.0299315713346],[0.019775370135903,0.12462822347879,-0.014322874136269],[0.12891456484795,-0.12939032912254,-0.26161682605743]],[[-0.20844642817974,-0.028279475867748,0.077252574265003],[0.0059830234386027,-0.19639208912849,0.12366535514593],[-0.011905892752111,-0.033147346228361,0.077114708721638]],[[-0.12584458291531,-0.087119214236736,0.086298130452633],[0.06371533870697,-0.11581306159496,0.076726339757442],[0.074264332652092,-0.011241748929024,-0.066835001111031]],[[0.16526979207993,-0.080277621746063,0.0297633074224],[0.10315876454115,-0.17950291931629,0.16912713646889],[-0.13974533975124,0.14940366148949,0.10756648331881]],[[-0.0054545560851693,0.13869944214821,0.010852741077542],[0.072485916316509,0.013975854031742,0.07769463211298],[-0.35115730762482,-0.10768099874258,-0.26594331860542]],[[-0.32219997048378,0.083496995270252,0.14770899713039],[-0.11441580206156,0.25486922264099,0.25944876670837],[0.11729066073895,-0.010245544835925,-0.095083601772785]],[[0.086989685893059,-0.095367528498173,-0.36629113554955],[0.16201211512089,-0.040944937616587,-0.20615902543068],[0.20614294707775,0.10834577679634,-0.22081969678402]],[[0.15675839781761,0.090007729828358,-0.0092502990737557],[-0.10202370584011,-0.17680110037327,-0.15340776741505],[0.19349330663681,-0.034952558577061,-0.016233524307609]],[[-0.11401206254959,-0.0094208344817162,0.014569859020412],[0.039344593882561,-0.056860309094191,-0.19001030921936],[0.13258649408817,-0.06017516925931,0.024166218936443]],[[0.0094576170668006,-0.056522518396378,0.058466203510761],[-0.061418060213327,-0.1870354115963,0.12465177476406],[0.081583887338638,-0.064912274479866,0.070264458656311]],[[0.20472599565983,0.12506449222565,-0.051435079425573],[0.0059208879247308,0.16392469406128,-0.14987875521183],[0.018995195627213,0.14906883239746,-0.047225724905729]],[[0.11006840318441,-0.21810883283615,-0.14319963753223],[0.073369242250919,0.029129091650248,-0.096064858138561],[-0.057706985622644,-0.1198718175292,-0.025784367695451]]],[[[-0.2590970993042,0.28675580024719,-0.13140776753426],[-0.086542412638664,0.089918464422226,0.068248569965363],[-0.39361053705215,-0.0051774205639958,0.033608686178923]],[[0.07632303237915,0.081583335995674,-0.36528503894806],[0.09857202321291,-0.057828269898891,-0.031017398461699],[0.081611230969429,-0.040768694132566,-0.072271756827831]],[[-0.056929845362902,-0.12055785208941,-0.17660212516785],[0.12270575016737,0.0016386295901611,0.021989565342665],[0.028343940153718,0.02432706207037,0.024281652644277]],[[-0.14623118937016,-0.14681816101074,-0.15088625252247],[0.094888634979725,0.16553154587746,0.019402848556638],[0.11420890688896,-0.048906650394201,-0.047003973275423]],[[0.059732478111982,0.008519028313458,0.015290664508939],[-0.043945975601673,0.030639877542853,-0.026355696842074],[0.095767967402935,-0.046075507998466,0.054298751056194]],[[-0.032871462404728,0.0038909146096557,0.084937058389187],[-0.048932701349258,-0.082855090498924,-0.049561608582735],[-0.0083355419337749,0.12970247864723,-0.015572899952531]],[[-0.080096825957298,0.15419892966747,-0.3667848110199],[-0.00059757579583675,-0.022184874862432,-0.21317125856876],[0.0025077012833208,0.2211707085371,0.03613281622529]],[[-0.056684583425522,-0.024828480556607,-0.028282951563597],[-0.054643031209707,0.086893506348133,0.10593766719103],[-0.1498675942421,-0.038028910756111,0.042240519076586]],[[0.063132777810097,-0.18962422013283,0.10941700637341],[-0.056680236011744,-0.018471261486411,-0.15079599618912],[0.074996285140514,0.010070903226733,0.054762113839388]],[[0.045421026647091,-0.085314981639385,-0.079227961599827],[-0.10598260909319,0.092137664556503,-0.074178278446198],[0.062997594475746,0.061518177390099,-0.0049747442826629]],[[0.12646235525608,-0.088579379022121,-0.0360820107162],[0.019567180424929,0.12599197030067,-0.12856434285641],[0.092249847948551,-0.10427367687225,-0.018412312492728]],[[-0.0080844201147556,0.046167492866516,-0.0072833709418774],[0.019273180514574,-0.019321899861097,0.0015637608012185],[-0.099750645458698,-0.1801146119833,0.18804471194744]],[[0.051056835800409,0.056491613388062,-0.053913224488497],[-0.0005038101808168,-0.047327730804682,0.089925140142441],[-0.0092971529811621,-0.01267800014466,-0.10527636110783]],[[-0.013409659266472,-0.11065443605185,0.009649301879108],[-0.033297047019005,-0.0067664454691112,-0.053885769098997],[0.032693084329367,0.091641612350941,0.0034031730610877]],[[0.024118585512042,0.025608165189624,0.16211254894733],[-0.1116840839386,0.087270148098469,0.16514725983143],[-0.23706516623497,-0.1992280036211,-0.17106959223747]],[[0.053274657577276,-0.08358296006918,0.038078043609858],[0.19556131958961,-0.036661624908447,-0.080666705965996],[0.074981741607189,-0.076271072030067,-0.11468579620123]],[[-0.033888455480337,0.14662542939186,0.010763797909021],[-0.034201510250568,-0.16120362281799,-0.044467613101006],[0.046689309179783,-0.055463969707489,-0.080307051539421]],[[0.1200610473752,-0.0070590446703136,0.042246960103512],[-0.030599584802985,0.18163534998894,0.1103677302599],[-0.142448797822,-0.092428632080555,0.081218466162682]],[[-0.087663270533085,-0.039675995707512,0.02131050080061],[-0.034970104694366,-0.13126994669437,0.20678697526455],[-0.088096521794796,0.033667031675577,-0.010770738124847]],[[-0.0042062513530254,-0.19385436177254,0.13662333786488],[0.12540997564793,0.04669988155365,0.046676453202963],[-0.11965384334326,-0.099532164633274,0.10231425613165]],[[-0.24586899578571,-0.38547351956367,0.075692653656006],[0.094452753663063,0.062533430755138,0.14823785424232],[-0.019114144146442,-0.17797616124153,0.012554659508169]],[[-0.12464518100023,-0.20794478058815,-0.069592781364918],[0.061728220432997,0.092438757419586,0.023962084203959],[0.048831440508366,0.20525376498699,-0.053833335638046]],[[-0.014294938184321,0.051822103559971,-0.23696379363537],[0.098215691745281,0.0067901164293289,-0.060250166803598],[0.16579121351242,0.012854381464422,-0.053725283592939]],[[-0.047603163868189,-0.077340587973595,-0.080249615013599],[-0.026270378381014,0.053143743425608,-0.010039214044809],[0.22434245049953,0.032487478107214,-0.19528114795685]],[[-0.21631141006947,0.17168375849724,-0.03121524117887],[-0.043897151947021,0.067214228212833,0.02523491345346],[0.15033869445324,-0.1891778409481,0.15777017176151]],[[0.0039665084332228,-0.08515577018261,0.06355020403862],[-0.00049802084686235,0.066846996545792,-0.094423845410347],[-0.11064954102039,-0.03475945442915,-0.070853158831596]],[[0.021997908130288,-0.12710177898407,0.12172216176987],[0.1568600833416,0.12675531208515,0.16412325203419],[-0.068656876683235,0.030911287292838,-0.080204255878925]],[[-0.14755220711231,-0.20375514030457,-0.052117183804512],[0.053608350455761,0.13118776679039,0.11042867600918],[-0.010225374251604,-0.17092734575272,0.18303501605988]],[[0.084382586181164,0.0065715019591153,0.17785862088203],[-0.0085872989147902,-0.085238702595234,0.0528684258461],[-0.064102098345757,-0.04052946344018,-0.032173253595829]],[[0.028227113187313,0.086839079856873,0.10833378136158],[-0.12373493611813,0.0083252033218741,0.11107915639877],[-0.061751313507557,-0.075758948922157,-0.033101417124271]],[[0.13238589465618,-0.022531190887094,-0.10611207783222],[-0.065834864974022,0.11229522526264,-0.02621210180223],[0.30925777554512,-0.024304190650582,-0.16302184760571]],[[-0.11344732344151,-0.07591762393713,-0.13781847059727],[0.19606696069241,-0.13667698204517,0.062794432044029],[-0.010739115998149,-0.010189494118094,0.15951573848724]]],[[[-0.0211066827178,0.071361772716045,-0.0458201803267],[0.097675174474716,0.12104254215956,-0.16695055365562],[0.1334732323885,0.022115867584944,-0.091710276901722]],[[0.1864826977253,0.084292411804199,-0.035217065364122],[-0.018596354871988,0.055752485990524,-0.11746918410063],[-0.07979679107666,-0.072006702423096,0.0352040566504]],[[0.048064075410366,0.051161885261536,0.095554329454899],[-0.023043999448419,0.049662534147501,0.022773902863264],[-0.061441123485565,0.04521693661809,-0.024006597697735]],[[0.23332265019417,0.1041874140501,-0.22526527941227],[-0.11331119388342,-0.037627059966326,-0.051119443029165],[0.061583708971739,0.094913117587566,0.18941055238247]],[[-0.057034306228161,0.029425023123622,-0.13242952525616],[0.040039546787739,0.053427752107382,-0.15977899730206],[0.032547574490309,0.024514570832253,-0.036311864852905]],[[-0.061564832925797,0.072731077671051,-0.035956084728241],[-0.0012558118905872,-0.037141695618629,-0.079992353916168],[0.12643717229366,0.088002756237984,-0.0034686902072281]],[[0.20671783387661,-0.011538517661393,-0.23224304616451],[0.12493591010571,-0.063699327409267,-0.087588950991631],[0.17033509910107,-0.076121188700199,0.070512652397156]],[[-0.032018925994635,-0.13012379407883,0.0083706444129348],[0.093148812651634,-0.085388749837875,0.0059407302178442],[-0.049293722957373,0.12168738245964,-0.087625488638878]],[[-0.013334232382476,-0.11706491559744,0.02513956092298],[0.0089543107897043,-0.067264646291733,-0.21290756762028],[-0.07148652523756,0.24322248995304,-0.053891737014055]],[[-0.13943192362785,0.056675665080547,-0.0048641506582499],[-0.090002059936523,0.058921497315168,0.082119286060333],[0.10641406476498,-0.016836807131767,0.17201541364193]],[[0.12141671776772,-0.11694050580263,-0.082008421421051],[0.10207952558994,-0.012905151583254,-0.011167254298925],[-0.15634590387344,-0.0982666015625,-0.35745793581009]],[[-0.012229894287884,0.095501817762852,-0.0085226567462087],[0.034902315586805,0.029788622632623,-0.09578450024128],[0.02076281607151,-0.037736419588327,-0.11059485375881]],[[0.0059230495244265,-0.19243492186069,-0.048146620392799],[0.079503588378429,-0.10123525559902,0.11529792845249],[-0.19496573507786,-0.096487894654274,0.039026614278555]],[[-0.094086267054081,0.071294084191322,0.095746293663979],[-0.084747426211834,0.12669067084789,0.077995888888836],[-0.046837922185659,-0.051497746258974,-0.078877121210098]],[[0.066226370632648,-0.094516426324844,0.088685125112534],[0.0549839399755,-0.087834015488625,-0.079557485878468],[0.10953479260206,0.033357623964548,0.18869113922119]],[[-0.035289783030748,-0.075874365866184,0.24416093528271],[-0.26381084322929,-0.18812373280525,0.17152903974056],[-0.09563209861517,-0.035134691745043,0.30051293969154]],[[-0.093783840537071,0.13353835046291,0.11495900899172],[0.20803239941597,0.099408268928528,0.23463374376297],[-0.057331189513206,-0.090215623378754,-0.1132765635848]],[[0.27082273364067,-0.22187358140945,-0.26079192757607],[0.20647655427456,0.0014334095176309,-0.037286210805178],[-0.014917087741196,-0.015058719553053,-0.0016515291063115]],[[0.047607697546482,-0.0053295944817364,-0.1125413030386],[-0.047288600355387,0.07428216189146,-0.047164279967546],[0.023691236972809,-0.037853367626667,0.13632735610008]],[[-0.065996088087559,0.14455424249172,-0.047745738178492],[-0.061474151909351,0.001467750989832,0.051892135292292],[-0.045952476561069,0.18579185009003,-0.064521498978138]],[[0.016766037791967,-0.13977706432343,-0.17218363285065],[-0.03509059548378,0.061060205101967,-0.13104417920113],[0.15016043186188,0.027712902054191,0.11360810697079]],[[-0.074242450296879,-0.20886166393757,-0.16183298826218],[-0.036726117134094,-0.013745698146522,-0.0022939259652048],[0.11340824514627,0.012353795580566,0.093732118606567]],[[-0.13736143708229,-0.058939293026924,-0.012164588086307],[-0.023266158998013,0.015162409283221,-0.042219154536724],[0.086691677570343,-0.25258150696754,-0.038881115615368]],[[-0.079011157155037,-0.12187305092812,0.00060856493655592],[0.11902193725109,-0.014359784312546,0.083550959825516],[-0.06644644588232,0.031591441482306,-0.061297044157982]],[[-0.051188681274652,-0.052807450294495,-0.016638701781631],[0.019777426496148,0.14906170964241,0.0034787978511304],[-0.10579165071249,-0.035491950809956,0.057546086609364]],[[-0.03949187323451,-0.14122219383717,-0.14429764449596],[0.022293424233794,0.065862096846104,0.095248840749264],[-0.19156546890736,-0.10179404914379,-0.1505912989378]],[[0.015387228690088,0.26575896143913,-0.014636226929724],[-0.036770422011614,-0.013723922893405,-0.0021408468019217],[-0.0029843002557755,-0.1455849558115,-0.1151075437665]],[[0.01237889751792,0.089865826070309,0.16783083975315],[0.024532414972782,0.043609172105789,-0.10229284316301],[0.1668418943882,-0.080219224095345,0.15579205751419]],[[0.088172748684883,-0.053983740508556,0.038728900253773],[0.17806477844715,-0.011651113629341,-0.02090554498136],[0.020102366805077,0.040773887187243,-0.07806283980608]],[[-0.054426334798336,-0.093354508280754,-0.0028596369083971],[0.08431339263916,0.037892829626799,0.20623801648617],[0.06685333698988,-0.23999887704849,-0.15398420393467]],[[-0.14667880535126,-0.17661979794502,-0.034626379609108],[0.0054830880835652,0.028283599764109,0.092347152531147],[-0.016350898891687,-0.013247570022941,-0.17103317379951]],[[-0.066180065274239,0.17458671331406,0.067479699850082],[-0.071764342486858,0.028963094577193,0.012746850028634],[-0.12028212845325,0.030234197154641,0.12537457048893]]],[[[-0.14191725850105,0.024960922077298,-0.1619264036417],[-0.083713084459305,0.13295602798462,0.058870751410723],[-0.33843347430229,0.053277421742678,-0.37408941984177]],[[-0.10915279388428,0.054593227803707,0.092456758022308],[-0.07067845761776,-0.024576021358371,-0.12502229213715],[0.011184294708073,-0.068598859012127,-0.012899691238999]],[[-0.043309424072504,-0.10223937034607,0.15539081394672],[-0.20401811599731,0.13128156960011,0.072421163320541],[-0.10884312540293,-0.12944562733173,0.0068595241755247]],[[0.026192618533969,0.10894598066807,-0.00038073459290899],[0.10258769243956,0.14895223081112,-0.14882595837116],[-0.11709658801556,-0.091140016913414,-0.01366372499615]],[[0.14492399990559,0.02705129981041,0.050380744040012],[0.13093693554401,-0.038742858916521,-0.0028460905887187],[-0.049927033483982,-0.04099927470088,0.11378487199545]],[[0.024221628904343,-0.09555933624506,-0.040203761309385],[-0.046197142452002,0.014024711214006,-0.018214544281363],[0.071129329502583,0.11223062872887,-0.068300202488899]],[[0.045568913221359,0.10036712139845,0.075097560882568],[-0.082741118967533,-0.09244454652071,0.0014189389767125],[-0.056921824812889,-0.057044491171837,-0.012516372837126]],[[-0.095670603215694,-0.057096317410469,0.00013308502093423],[-0.13042634725571,0.086447671055794,0.091013491153717],[0.035460889339447,-0.0016250937478617,0.081756077706814]],[[-0.042508773505688,0.024847194552422,-0.018679581582546],[0.055392429232597,-0.14373064041138,-0.015677079558372],[-0.043982274830341,-0.090324193239212,-0.054664794355631]],[[-0.0057286908850074,0.029137665405869,0.041108932346106],[-0.015389299951494,-0.077620752155781,-0.027519723400474],[0.098084017634392,-0.097603313624859,-0.13305711746216]],[[-0.055239230394363,-0.026898771524429,-0.039277084171772],[0.017736062407494,0.020895518362522,0.083761215209961],[-0.082680433988571,-0.045303791761398,0.07216253131628]],[[-0.079248055815697,-0.048793360590935,-0.021698622033],[0.18743990361691,-0.014417114667594,-0.075930058956146],[0.039774525910616,-0.073019713163376,0.049245733767748]],[[0.043133273720741,-0.063896298408508,0.0068294927477837],[0.00040287268348038,-0.10767581313848,-0.037152796983719],[-0.082373462617397,0.039342269301414,-0.11541645973921]],[[-0.047980289906263,0.011138969101012,-0.034433528780937],[-0.01330503448844,0.047991089522839,0.13005158305168],[0.14889574050903,-0.01015155389905,-0.078058585524559]],[[0.15746660530567,-0.075924545526505,-0.21107099950314],[0.091986730694771,-0.018527945503592,0.09878072142601],[0.068287387490273,-0.24845993518829,-0.10224409401417]],[[0.27651092410088,-0.10637374222279,-0.050507392734289],[0.32045695185661,-0.037993989884853,-0.14918504655361],[0.091792233288288,-0.19460298120975,-0.18294498324394]],[[0.043774839490652,0.050572689622641,-0.1204231902957],[-0.036521140486002,-0.035488057881594,-0.20028810203075],[-0.1177886351943,-0.097092486917973,0.10334283858538]],[[0.13179513812065,-0.084422238171101,-0.040430650115013],[-0.14436766505241,0.013775628060102,0.13633628189564],[0.08969983458519,-0.14582568407059,0.067173808813095]],[[0.045782562345266,-0.17277017235756,0.0057380055077374],[0.060156848281622,0.11613591015339,-0.058583229780197],[-0.14253950119019,-0.052832026034594,-0.11244310438633]],[[0.0092062652111053,0.11797048151493,-0.00090601289412007],[0.15132349729538,-0.33585366606712,0.089061357080936],[-0.049913469702005,-0.12693078815937,-0.047007642686367]],[[0.022845948114991,0.073610946536064,0.061994105577469],[-0.064995132386684,-0.047040544450283,0.037652395665646],[-0.12603403627872,0.042987357825041,0.1284641623497]],[[0.084924347698689,-0.084483459591866,-0.019575051963329],[0.097406968474388,-0.10489402711391,0.068347707390785],[0.055151887238026,0.020619336515665,-0.14973984658718]],[[-0.19733545184135,0.054109189659357,0.15225300192833],[-0.021495100110769,-0.050333466380835,0.036641549319029],[0.017242660745978,0.058429140597582,-0.061489164829254]],[[-0.067651405930519,-0.067572146654129,0.22530138492584],[-0.089071735739708,0.047376539558172,0.036115657538176],[-0.087675921618938,-0.011167665012181,-0.18508933484554]],[[-0.014825741760433,-0.12301760166883,0.10100068897009],[0.14539204537868,-0.026748714968562,-0.10575806349516],[0.053778901696205,-0.11049618571997,0.1126140281558]],[[-0.059571538120508,0.020198382437229,-0.11654075980186],[0.0070716864429414,0.074072048068047,0.11345628648996],[-0.050620149821043,-0.12981852889061,-0.033975619822741]],[[-0.20516367256641,0.037393692880869,-0.071301646530628],[-0.22134241461754,0.11982740461826,0.041835688054562],[-0.039969578385353,0.031609188765287,-0.048671871423721]],[[0.15148630738258,-0.14130465686321,0.042232412844896],[-0.18603689968586,-0.31398537755013,0.059062201529741],[-0.0079358052462339,0.047173041850328,0.0236901268363]],[[0.070431634783745,-0.016212359070778,0.11879836022854],[-0.08395267277956,-0.028051493689418,0.0095747448503971],[0.037417341023684,-0.018831031396985,0.11683460325003]],[[0.13903544843197,-0.020354585722089,0.13930630683899],[-0.13482482731342,0.031389281153679,-0.078499510884285],[9.6076517365873e-05,-0.044481042772532,-0.092652276158333]],[[0.016146903857589,0.11128231883049,0.018852021545172],[-0.070523023605347,-0.043087285012007,0.1108136922121],[0.034531347453594,-0.092740185558796,-0.018022201955318]],[[-0.2548161149025,0.0081667881458998,0.11736223846674],[0.080324873328209,-0.094335876405239,-0.079053811728954],[-0.076158732175827,-0.042274720966816,-0.053307477384806]]],[[[0.049691144376993,-0.059583816677332,0.053187321871519],[0.12062575668097,0.049312431365252,-0.0052660801447928],[0.028010834008455,-0.1725105792284,-0.029998147860169]],[[-0.041150353848934,-0.090157024562359,0.017656609416008],[-0.055295042693615,0.12728729844093,-0.11463336646557],[0.098111160099506,0.044624216854572,-0.039483748376369]],[[0.037563551217318,-0.018552860245109,0.014435068704188],[-0.017985101789236,-0.045292466878891,0.0092777293175459],[-0.046229027211666,-0.010799823328853,0.079183116555214]],[[-0.093409590423107,-0.0016747834160924,-0.0035706050693989],[0.064733572304249,-0.037562057375908,-0.017363898456097],[-0.076634936034679,0.085932910442352,0.06398781388998]],[[-0.069729067385197,0.095268227159977,-0.053213942795992],[0.1257763504982,0.041687868535519,0.044224962592125],[0.016211081296206,0.019992796704173,0.059123709797859]],[[-0.075683631002903,-0.17194682359695,-0.067476257681847],[0.08773060888052,-0.059397086501122,0.083941861987114],[0.0499187707901,-0.022241733968258,-0.0057594235986471]],[[0.01111994497478,0.043170720338821,-0.14587600529194],[0.11398754268885,0.045697748661041,-0.030704971402884],[-0.056361690163612,0.047375451773405,-0.033084329217672]],[[0.022309578955173,0.076313652098179,0.038061399012804],[-0.098248265683651,0.063560836017132,-0.026695933192968],[-0.030738899484277,0.038338482379913,-0.073110319674015]],[[-0.083620183169842,0.03390745818615,-0.13587084412575],[0.13043504953384,-0.052376352250576,-0.022561985999346],[0.023826954886317,0.034461125731468,-0.0043860361911356]],[[0.047659050673246,0.049789026379585,0.013721851631999],[0.091941699385643,0.23846141993999,0.052106704562902],[-0.029006345197558,0.038438193500042,0.08685702085495]],[[-0.064240716397762,-0.037018764764071,0.024631580337882],[0.039365444332361,-0.098507061600685,0.081263713538647],[-0.011664614081383,0.013327889144421,0.01636777818203]],[[0.044682923704386,-0.057077791541815,-0.049929168075323],[-0.025411184877157,-0.0068226093426347,0.055853202939034],[-0.047453779727221,-0.0098693016916513,0.13146202266216]],[[0.059266246855259,0.015530126169324,-0.092553183436394],[-0.039822794497013,-0.03226600587368,0.068717665970325],[-0.0058775944635272,-0.026022804901004,0.04740359261632]],[[0.038162175565958,0.18486677110195,-0.091378688812256],[-0.12811025977135,0.017921559512615,0.018011370673776],[0.007345462217927,-0.12394768744707,0.095017202198505]],[[-0.0075324573554099,0.070312149822712,-0.056482836604118],[-0.10018663853407,0.12175600975752,0.095554605126381],[-0.044087011367083,-0.016215583309531,-0.063798025250435]],[[0.055298864841461,-0.11751565337181,-0.039945442229509],[0.063133105635643,0.092226132750511,0.012113030999899],[0.12142032384872,-0.030340738594532,0.12532536685467]],[[-0.094395153224468,-0.024748815223575,-0.011922175064683],[0.039190661162138,0.035440359264612,-0.089592434465885],[-0.094098635017872,-0.20893512666225,0.014722842723131]],[[-0.0031156279146671,-0.00028711429331452,-0.08937656134367],[-0.099144242703915,-0.018140496686101,0.086999535560608],[0.11234585940838,0.070569731295109,-0.13012056052685]],[[-0.068793423473835,-0.1688327640295,0.051542807370424],[0.014931249432266,-0.030452063307166,-0.029577674344182],[0.017476718872786,-0.015911411494017,0.081935413181782]],[[0.0059537929482758,-0.050560601055622,-0.064292781054974],[-0.064601443707943,0.082151785492897,-0.041197132319212],[0.11670216917992,-0.068252138793468,0.081393778324127]],[[-0.1071108803153,0.057870272547007,0.0025290595367551],[0.074541337788105,-0.036766156554222,-0.11052130907774],[0.08809670060873,-0.063080005347729,0.10081078112125]],[[-0.1202922090888,0.064040154218674,0.22514596581459],[-0.10058654844761,0.028358282521367,-0.024021985009313],[-0.00098878249991685,-0.046092636883259,-0.0011078134411946]],[[0.014061588793993,-0.10236480087042,0.097340323030949],[0.014907861128449,-0.027323612943292,0.0095495823770761],[0.086290381848812,0.0024807043373585,-0.042631004005671]],[[0.04974427074194,0.072305344045162,0.0094949146732688],[-0.067184492945671,-0.11697295308113,0.046003069728613],[0.016837103292346,-0.065266512334347,-0.072761818766594]],[[0.089233748614788,0.046417377889156,0.032175675034523],[-0.14110815525055,-0.024022951722145,0.16189175844193],[-0.010342334397137,-0.034684523940086,-0.10839705914259]],[[-0.037493139505386,-0.028039544820786,0.043144278228283],[0.084780812263489,-0.052446227520704,0.065969452261925],[-0.067163661122322,0.044301424175501,-0.00065430829999968]],[[-0.04835170507431,-0.036975651979446,0.051570277661085],[-0.018311792984605,0.11337359249592,-0.066257193684578],[0.054277010262012,-0.0020966904703528,0.0080752577632666]],[[0.10052921622992,0.016440842300653,0.027579726651311],[-0.067391812801361,0.08257257938385,-0.10553071647882],[-0.035227086395025,-0.025082293897867,-0.0035780291073024]],[[-0.052559830248356,-0.10606346279383,0.075705289840698],[-0.10138201713562,-0.11893393099308,-0.0022285291925073],[-0.12902392446995,-0.015146526508033,-0.080557316541672]],[[-0.032029207795858,0.13520707190037,0.01023598946631],[0.034031681716442,-0.1957926005125,0.032761916518211],[-0.11260630935431,0.17465241253376,-0.022442944347858]],[[0.056143786758184,0.017890922725201,0.010032881982625],[0.012929241172969,-0.033368095755577,-0.029553586617112],[0.10949561744928,-0.0095937512814999,-0.20110212266445]],[[-0.053692646324635,-0.01376879401505,0.038186069577932],[-0.0047907219268382,-0.023369342088699,-0.02220981195569],[-0.030578160658479,0.10835614800453,0.035497330129147]]],[[[0.022613551467657,-0.23038935661316,-0.10249232500792],[-0.097903154790401,-0.1832318007946,-0.2093505859375],[-0.19571739435196,-0.044640354812145,-0.0062197945080698]],[[-0.073945961892605,-0.037313360720873,0.017512872815132],[0.033506155014038,0.033985529094934,0.055638093501329],[-0.055135961622,-0.075284205377102,-0.045642904937267]],[[-0.19709391891956,0.033923912793398,-0.11359214037657],[0.13771176338196,0.030759220942855,0.037668470293283],[-0.064183056354523,-0.084212094545364,-0.010325218550861]],[[-0.033718500286341,-0.078939206898212,-0.084872648119926],[0.09752057492733,0.10525440424681,0.081453964114189],[-0.18086032569408,-0.11800221353769,0.034493282437325]],[[0.063440628349781,0.002114366972819,0.043453149497509],[-0.0048387874849141,-0.082814574241638,0.052328757941723],[-0.18392977118492,-0.043187208473682,-0.039025038480759]],[[0.07371873408556,-0.0723936855793,-0.0059944787062705],[-0.14995115995407,0.13445587456226,0.040264971554279],[0.12692515552044,0.22277899086475,0.01971548423171]],[[-0.20003995299339,0.19095896184444,-0.065374590456486],[-0.045757878571749,-0.022104216739535,-0.14349374175072],[-0.095970444381237,0.12555038928986,0.047100905328989]],[[-0.083589188754559,0.093715384602547,0.0054201204329729],[0.066908769309521,0.04873113706708,0.016050728037953],[-0.14878788590431,-0.066148027777672,0.092984482645988]],[[0.020900800824165,0.11965452134609,0.0043058567680418],[-0.0090341446921229,-0.13257850706577,-0.0099177593365312],[-0.039170276373625,-0.016108639538288,-0.013829213567078]],[[0.043052397668362,0.023098770529032,0.097822673618793],[0.035548679530621,0.015276165679097,0.095872014760971],[-0.032041952013969,0.044472634792328,-0.066478222608566]],[[-0.0667694658041,-0.029889602214098,-0.11307667940855],[-0.017475144937634,0.11064600944519,0.12640516459942],[0.1109096929431,-0.19140043854713,0.052156805992126]],[[0.11710198223591,0.0019808930810541,-0.090593136847019],[0.016046080738306,-0.015847584232688,0.017803333699703],[-0.096189372241497,0.050977382808924,-0.047827314585447]],[[0.16802760958672,-0.093027748167515,0.052749246358871],[0.016768753528595,-0.19790951907635,0.014341202564538],[-0.06639451533556,-0.028085460886359,-0.005379262380302]],[[-0.14261750876904,-0.094335503876209,-0.020129797980189],[0.12701581418514,0.0093099810183048,-0.024515625089407],[-0.0084635252133012,-0.055202964693308,0.061989981681108]],[[0.13809974491596,-0.12576571106911,-0.1453400850296],[-0.13939744234085,-0.068568713963032,-0.30595999956131],[0.040090702474117,-0.077953569591045,-0.083581797778606]],[[0.39503172039986,0.1796560883522,0.17286030948162],[-0.16365420818329,-0.45936721563339,0.063229024410248],[-0.037952195852995,-0.10940372943878,-0.068413972854614]],[[0.045254100114107,-0.0095912041142583,-0.074061095714569],[-0.033484913408756,0.16536647081375,0.084368750452995],[-0.039572227746248,-0.014089371077716,-0.046100251376629]],[[0.056010983884335,-0.11204445362091,0.11197513341904],[0.050601601600647,0.0073787677101791,0.03258566185832],[-0.011616150848567,-0.014963075518608,-0.10929457843304]],[[0.027465675026178,0.13262158632278,-0.0078280968591571],[-0.18118616938591,-0.12162937223911,-0.035433940589428],[0.0010296864202246,-0.061787974089384,-0.013480638153851]],[[0.0920375213027,-0.17818120121956,0.013685840182006],[-0.093289986252785,-0.04723122343421,-0.053440302610397],[0.0013463181676343,-0.12013630568981,0.11521524190903]],[[0.12680651247501,-0.18208047747612,-0.29923269152641],[0.077988229691982,0.052805610001087,-0.0055075683631003],[-0.10982866585255,0.049813836812973,0.026954811066389]],[[-0.0678646042943,-0.12167346477509,-0.0074771675281227],[-0.065265528857708,0.015019641257823,0.11591112613678],[0.12222480773926,-0.085603877902031,0.047199036926031]],[[-0.10584190487862,0.086700946092606,0.17820674180984],[0.012945452705026,-0.11134040355682,0.10343500971794],[-0.10448651015759,0.061956830322742,0.049618821591139]],[[-0.056151159107685,0.069736041128635,0.17823533713818],[0.070278204977512,0.11542459577322,0.051730755716562],[0.0025704440195113,0.023448370397091,-0.18124987185001]],[[-0.034759026020765,0.091216258704662,-0.15974853932858],[0.13119588792324,0.04199057072401,0.071810558438301],[0.043779257684946,-0.060420539230108,0.044738676398993]],[[-0.058673348277807,0.18098464608192,0.074650973081589],[-0.083806715905666,0.00051496591186151,0.044100452214479],[-0.12927496433258,-0.037710312753916,0.074114181101322]],[[0.054902721196413,0.0068643004633486,-0.2917083799839],[0.027092771604657,-0.033493507653475,-0.1893462985754],[-0.087997026741505,0.14070548117161,-0.066634155809879]],[[-0.31558695435524,-0.21181109547615,-0.18582178652287],[0.069673456251621,0.067970789968967,0.05149345099926],[0.019693667069077,-0.088958583772182,0.097638137638569]],[[-0.13402466475964,-0.087894082069397,-0.11513485014439],[0.13177925348282,0.085879176855087,-0.083618693053722],[0.063344724476337,0.14990817010403,0.0071528018452227]],[[0.20243544876575,0.0089401435106993,-0.10888551920652],[0.062410607933998,-0.10221508145332,0.23889842629433],[-0.21242900192738,-0.11843649297953,-0.12035451829433]],[[0.037890389561653,0.15302829444408,0.11044868826866],[0.14871878921986,0.057001311331987,-0.014297145418823],[0.0010654402431101,-0.048090893775225,-0.0043146936222911]],[[-0.06603692471981,-0.25900864601135,0.13468359410763],[0.20224265754223,0.058189749717712,0.030205640941858],[0.04432874545455,-0.26272821426392,-0.026213550940156]]],[[[0.020164493471384,-0.1102404743433,-0.033126804977655],[0.028906332328916,-0.16080912947655,0.0019329127389938],[0.28816595673561,-0.10860861092806,-0.098181523382664]],[[0.011609949171543,-0.082688331604004,-0.021457543596625],[-0.041247341781855,-0.13118700683117,-0.10875455290079],[0.14098462462425,0.0058861686848104,0.044625982642174]],[[-0.090446054935455,-0.026012621819973,-0.014767640270293],[-0.072454430162907,0.028215289115906,-0.005414417013526],[0.015936754643917,-0.16376604139805,-0.16554275155067]],[[-0.11388071626425,-0.02687032148242,-0.16320358216763],[-0.039990562945604,0.11509670317173,0.14857013523579],[0.13238434493542,-0.2490616440773,0.020693477243185]],[[0.059123955667019,0.044358670711517,0.057552721351385],[-0.10013908147812,0.14989764988422,-0.09016377478838],[0.065918602049351,0.00830745883286,-0.065781652927399]],[[-0.081168994307518,-0.0084536792710423,0.061987724155188],[0.010514354333282,-0.05406479164958,0.2372985035181],[0.11858103424311,0.19966779649258,0.15657936036587]],[[-0.056117840111256,-0.055431220680475,-0.11099798977375],[0.17066097259521,-0.089784316718578,-0.06358976662159],[0.066690608859062,-0.12449952214956,-0.10510996729136]],[[0.047918546944857,-0.053371887654066,0.032228514552116],[0.051373351365328,-0.10699809342623,0.017239393666387],[0.078818842768669,0.11298963427544,-0.078051999211311]],[[0.16994622349739,-0.10671772062778,0.002686656313017],[-0.11956065893173,0.1445120126009,-0.10408709198236],[-0.1284641623497,-0.010073428042233,0.069320701062679]],[[-0.16309370100498,-0.10269673913717,-0.0031578887719661],[0.0012500385055318,0.13065934181213,-0.091646008193493],[0.16641755402088,0.022419972345233,0.032166603952646]],[[0.16342763602734,0.19475054740906,0.016657836735249],[-0.1297532171011,0.018141221255064,0.088127426803112],[-0.13579511642456,-0.13558837771416,0.034905113279819]],[[-0.071306981146336,0.09374463558197,-0.060701467096806],[-0.0024571067187935,-0.15437492728233,0.0014543446013704],[0.012502271682024,0.24511890113354,-0.13844646513462]],[[-0.16636818647385,-0.029063330963254,-0.12059257179499],[0.019837962463498,0.14250163733959,-0.12607489526272],[-0.035552281886339,0.14769877493382,0.15544284880161]],[[-0.13031719624996,0.033067904412746,-0.085042245686054],[0.14543868601322,-0.04184639826417,0.056645195931196],[-0.077241115272045,0.10912901163101,0.13570119440556]],[[-0.10886588692665,-0.10770872980356,0.048289053142071],[-0.085139535367489,0.082611955702305,0.020485106855631],[-0.12718279659748,-0.11662807315588,0.1485163718462]],[[0.014553461223841,0.0075785028748214,-0.064283534884453],[0.11451400071383,0.088121742010117,-0.036217644810677],[-0.24743743240833,0.12610392272472,-0.098917596042156]],[[-0.12791992723942,0.017752800136805,-0.040984243154526],[-0.12059051543474,0.17234338819981,-0.10620482265949],[0.10379170626402,0.056941337883472,0.15009368956089]],[[0.26043918728828,-0.15421190857887,-0.045495629310608],[0.069690361618996,-0.11866752058268,0.073695778846741],[0.049968428909779,0.097014486789703,-0.12670357525349]],[[-0.045140534639359,0.15947856009007,0.077622339129448],[0.095189072191715,0.024709424003959,0.095342569053173],[0.081190548837185,-0.24346667528152,-0.11215517669916]],[[-0.17965099215508,-0.029794396832585,0.062546201050282],[-0.12036050111055,-0.0097790397703648,0.099333584308624],[-0.39506071805954,0.13536639511585,0.013782081194222]],[[0.02468772046268,-0.075375512242317,-0.12835827469826],[-0.15179622173309,-0.003818848868832,0.17517891526222],[-0.28438228368759,-0.16070066392422,0.10418333113194]],[[0.076305255293846,0.062418501824141,-0.033232308924198],[-0.0091342693194747,0.097963601350784,0.052371762692928],[-0.12962874770164,-0.078458547592163,0.053109098225832]],[[-0.065128691494465,-0.0435471534729,-0.13374406099319],[0.037582624703646,0.076475456357002,0.076043821871281],[-0.04777916520834,0.13578622043133,-0.1817654967308]],[[0.12589992582798,-0.17705719172955,-0.15158471465111],[0.089910358190536,-0.11281718313694,-0.074987895786762],[-0.067933700978756,0.083215862512589,0.067061297595501]],[[0.065299242734909,0.12658792734146,-0.051579385995865],[-0.093499302864075,0.037371896207333,-0.20923365652561],[0.024432208389044,0.032267399132252,0.10636176168919]],[[-0.0031608464196324,0.19954651594162,-0.028536247089505],[0.0028747972100973,-0.038307011127472,-0.081141941249371],[0.029599316418171,0.13434764742851,0.082056820392609]],[[0.00040843733586371,0.012296126224101,0.048222552984953],[0.17116150259972,-0.081688985228539,0.085546649992466],[0.27088657021523,-0.037975735962391,-0.25865760445595]],[[-0.046371586620808,0.13392443954945,0.11837762594223],[-0.095065072178841,0.057070836424828,-0.22312343120575],[-0.011118998751044,0.076274134218693,-0.16979818046093]],[[0.11866693943739,-0.068324819207191,-0.028156656771898],[0.065566688776016,-0.11859901994467,-0.14959216117859],[0.074425168335438,-0.02745046839118,-0.078484416007996]],[[0.11779882758856,-0.16123044490814,0.14019826054573],[-0.036524716764688,-0.004068867303431,-0.17888762056828],[-0.018869537860155,0.18940010666847,-0.053026296198368]],[[-0.11956449598074,-0.040232434868813,0.040946390479803],[-0.1194414049387,-0.0059346528723836,-0.090461522340775],[0.057287145406008,0.1015954837203,-0.10044448077679]],[[0.052871506661177,-0.10952388495207,-0.053415782749653],[-0.16675215959549,0.017119482159615,0.096190050244331],[0.027003103867173,-0.1329038888216,0.015448054298759]]],[[[-0.02997955493629,-0.010174209252,0.032451320439577],[-0.045105744153261,-0.046615865081549,-0.06539960205555],[0.035098001360893,-0.00050843582721427,0.022954717278481]],[[0.0083290440961719,-0.012772147543728,-0.031725630164146],[-0.012032311409712,0.087634801864624,0.034732360392809],[-0.17301815748215,-0.064994119107723,0.090903624892235]],[[0.044397097080946,-0.055212695151567,-0.017806505784392],[-0.10704372823238,0.018102424219251,0.12175512313843],[-0.072677455842495,0.065328747034073,-0.02610089443624]],[[0.24678035080433,0.0010973246535286,-0.11186634004116],[-0.040667630732059,0.0070597096346319,-0.038272861391306],[0.068138852715492,0.010805441066623,-0.070876307785511]],[[0.029561351984739,-0.032445646822453,0.10243497043848],[0.13020706176758,0.0036287887487561,0.15063074231148],[0.15166585147381,-0.1492565870285,0.048520613461733]],[[-0.041137237101793,-0.13634926080704,-0.092077605426311],[-0.068047225475311,-0.064853154122829,-0.074365168809891],[-0.015488060191274,-0.0070425202138722,0.02813526801765]],[[-0.063330538570881,0.094300635159016,-0.034226175397635],[0.04544760286808,-0.13303343951702,-0.098106272518635],[0.069824382662773,-0.032813474535942,0.12724398076534]],[[-0.15376651287079,0.012791635468602,0.048013962805271],[0.049911689013243,-0.017319764941931,-0.041976746171713],[0.019924532622099,-0.049750614911318,0.10455790162086]],[[-0.028205897659063,0.041537426412106,-0.045435547828674],[-0.053660910576582,-0.028276262804866,0.12753981351852],[0.06877014786005,0.042677778750658,-0.021641643717885]],[[0.089890860021114,0.019224043935537,-0.046461600810289],[0.013615950010717,0.12085784226656,-0.020901631563902],[0.073802553117275,0.01077678706497,0.073232531547546]],[[0.036533050239086,0.091851748526096,0.078974485397339],[-0.079072758555412,-0.0017119444673881,0.0050999592058361],[-0.043441981077194,-0.034912094473839,-0.030506169423461]],[[0.09949254989624,0.069229513406754,-0.11412844061852],[0.011297075077891,-0.0070283743552864,-0.042015768587589],[-0.063051998615265,0.035481885075569,-0.011464378796518]],[[0.066953510046005,-0.091949932277203,0.055385429412127],[-0.067522518336773,0.069834239780903,0.0082558523863554],[0.016431534662843,0.086764290928841,-0.076431766152382]],[[-0.0091999983415008,0.0031790167558938,-0.12858262658119],[0.050312381237745,0.054106671363115,-0.038668528199196],[0.010374256409705,-0.01286621298641,0.046246185898781]],[[-0.01408488675952,0.010782545432448,0.12882113456726],[0.10730840265751,-0.069229289889336,-0.069216795265675],[0.017465230077505,-0.084743984043598,-0.056568499654531]],[[0.039435528218746,0.015201283618808,-0.10698513686657],[-0.035569742321968,-0.040661886334419,-0.010226824320853],[-0.17884197831154,-0.054581753909588,-0.020714994519949]],[[-0.039824984967709,0.030017178505659,-0.2208000421524],[0.15788087248802,-0.035546366125345,-0.03271172568202],[0.0056588831357658,-0.049885261803865,0.056268863379955]],[[0.055885039269924,0.023830562829971,-0.046617638319731],[-0.00028285657754168,0.0060318987816572,-0.019667038694024],[-0.032690223306417,0.021257732063532,0.085701733827591]],[[0.088389210402966,-0.022380150854588,-0.046607874333858],[0.066208735108376,-0.036924362182617,0.061661694198847],[0.051442500203848,-0.044023003429174,-0.0051375753246248]],[[0.09007216244936,1.3568562280852e-05,0.059361610561609],[-0.022883890196681,-0.075130321085453,-0.12457869946957],[-0.04056005179882,0.037384942173958,0.059809230268002]],[[-0.039146885275841,-0.032641842961311,0.031322136521339],[-0.079999096691608,-0.018447626382113,-0.020994847640395],[0.13453423976898,0.030670272186399,-0.05744681507349]],[[-0.094135075807571,-0.11321376264095,-0.028075069189072],[0.22375671565533,0.045350931584835,0.0021425941959023],[-0.13729158043861,-0.099553972482681,0.096891701221466]],[[0.098557963967323,0.10877619683743,0.0075444667600095],[-0.16117712855339,0.03855487704277,-0.090773098170757],[-0.031322818249464,0.0058162864297628,-0.083866477012634]],[[-0.069355480372906,0.045632384717464,0.099282264709473],[0.12001565843821,0.0064903371967375,-0.098466999828815],[-0.026881141588092,-0.015812693163753,0.022308118641376]],[[0.043193034827709,0.077713385224342,-0.16667568683624],[0.0021371464245021,-0.094191372394562,0.051239982247353],[0.076937206089497,-0.14362916350365,0.10168334841728]],[[-0.002794723957777,0.0018235911848024,-0.0040699588134885],[0.060442119836807,0.046180944889784,-0.070232070982456],[-0.045911714434624,-0.10410173982382,-0.031780164688826]],[[-0.063530907034874,0.080081857740879,-0.067315138876438],[-0.039629764854908,-0.0154685433954,0.03926245868206],[0.015099097043276,-0.014896375127137,-0.04506878182292]],[[-0.035787329077721,-0.1028246730566,0.0015606438973919],[0.084586277604103,0.14079461991787,-0.059939231723547],[0.08547830581665,-0.027650777250528,-0.088030725717545]],[[-0.010313568636775,-0.18233448266983,-0.12689539790154],[0.12856639921665,-0.12891715764999,0.029762355610728],[-0.076959520578384,-0.0081540616229177,-0.2175244987011]],[[-0.014247419312596,0.063747487962246,-0.016568277031183],[0.042804639786482,0.062945321202278,-0.034749817103148],[-0.022539101541042,-0.13575154542923,0.032893624156713]],[[-0.10905456542969,0.035047650337219,-0.079387530684471],[0.068796128034592,-0.028727360069752,0.1344830095768],[-0.048082493245602,0.066766738891602,0.016724100336432]],[[-0.095043532550335,0.062904953956604,-0.043303895741701],[-0.15221294760704,0.084204941987991,0.030936196446419],[-0.15392622351646,0.17438173294067,0.00030580774182454]]],[[[-0.18672469258308,-0.014136877842247,0.066603191196918],[0.1161622107029,-0.050335112959146,-0.069631025195122],[0.067983709275723,-0.099413387477398,-0.043504558503628]],[[0.11407096683979,0.067406609654427,-0.0087727159261703],[0.11156252026558,-0.10575681179762,-0.2001506537199],[0.013077892363071,0.010035429149866,-0.010131266899407]],[[-0.04828293249011,0.051895122975111,-0.1109627187252],[-0.034760538488626,-0.026143239811063,-0.056712456047535],[0.10875774919987,0.083603069186211,0.10646960139275]],[[-0.042040750384331,-0.097452513873577,0.13892777264118],[0.13482400774956,0.074201367795467,0.22577752172947],[-0.12203067541122,-0.06742287427187,-0.049150049686432]],[[0.092166982591152,-0.0019341943552718,0.066479831933975],[0.078848347067833,0.017676167190075,0.079343698918819],[0.0080841286107898,-0.14169669151306,-0.1030812188983]],[[-0.036098375916481,-0.0020382567308843,-0.078591801226139],[-0.11026223003864,-0.033213816583157,0.1183222681284],[-0.11292731761932,0.011883083730936,-0.066366538405418]],[[-0.073792055249214,0.1055805683136,0.033110614866018],[-0.15606701374054,-0.12480809539557,-0.012940113432705],[0.22698643803596,0.14319212734699,-0.017121473327279]],[[-0.0059352023527026,-0.014412200078368,0.064411722123623],[-0.12915126979351,-0.042499665170908,-0.11793427914381],[0.092707388103008,-0.035540912300348,0.019600113853812]],[[-0.13136687874794,0.092607460916042,-0.00034338861587457],[0.032948985695839,-0.025379583239555,0.11217498779297],[-0.39410468935966,-0.11199051886797,-0.18411035835743]],[[0.050807420164347,-0.040508523583412,-0.12392108142376],[-0.042005371302366,-0.075821049511433,0.10368622094393],[0.022244762629271,-0.16213569045067,0.11164508014917]],[[0.0072572687640786,0.21538276970387,0.2210975587368],[-0.064015671610832,-0.14594462513924,-0.11363892257214],[0.032128531485796,-0.21227967739105,-0.010113323107362]],[[-0.085570305585861,0.048591241240501,0.096558548510075],[-0.019777314737439,-0.031630899757147,-0.11320758610964],[0.1205887272954,-0.016329666599631,-0.073060169816017]],[[0.23265016078949,0.071000255644321,0.20529346168041],[-0.0097966520115733,-0.23803442716599,-0.026168325915933],[-0.048253044486046,0.070556856691837,-0.15646751224995]],[[0.057639464735985,0.069202214479446,-0.15391102433205],[0.0057548196054995,-0.0090212747454643,0.073397874832153],[0.039023317396641,0.038507323712111,-0.080056294798851]],[[0.056780863553286,0.13815230131149,-0.016009388491511],[0.11210107803345,0.026182901114225,-0.073009878396988],[0.11302099376917,-0.043664734810591,0.14009186625481]],[[0.3265372812748,0.11699211597443,0.023641182109714],[0.046703241765499,-0.052051201462746,-0.025549346581101],[-0.050514932721853,0.050281774252653,0.024409659206867]],[[-0.087706930935383,-0.0026740077883005,0.050616551190615],[-0.13305941224098,-0.073556080460548,-0.049326129257679],[0.14531764388084,0.2025002092123,0.30779257416725]],[[0.19721671938896,0.012401382438838,0.0041139763779938],[-0.25249242782593,0.045607846230268,-0.091264814138412],[-0.016955764964223,-0.033098123967648,0.1102414354682]],[[0.043938256800175,-0.069253675639629,-0.09478897601366],[0.13657811284065,0.099674232304096,0.063298776745796],[-0.034617956727743,-0.0086545096710324,-0.0359917730093]],[[0.021531376987696,-0.090891502797604,-0.026203596964478],[0.015386269427836,-0.00045468882308342,-0.16847555339336],[0.16439940035343,-0.14789633452892,0.14950409531593]],[[-0.13439859449863,0.044156838208437,0.1088957041502],[0.00902019161731,0.0016812027897686,0.014314528554678],[0.079682685434818,-0.018388705328107,-0.064122371375561]],[[0.038890037685633,0.15133781731129,0.042242843657732],[-0.090875059366226,-0.17974303662777,-0.06199936196208],[0.061452731490135,-0.16889579594135,0.11953811347485]],[[-0.11845347285271,-0.03812799602747,0.17648483812809],[-0.023560140281916,-0.17811399698257,-0.24919886887074],[0.10032103210688,-0.12372252345085,0.28173592686653]],[[-0.020047904923558,0.16920498013496,0.21261419355869],[0.045123036950827,-0.030832061544061,0.018586127087474],[-0.0076372232288122,0.0041942871175706,-0.022124581038952]],[[-0.00058459804859012,-0.022128352895379,-0.06606636941433],[0.15816669166088,0.041283823549747,0.023028736934066],[-0.17420172691345,0.098424255847931,-0.069137766957283]],[[0.098690584301949,-0.14749726653099,-0.13255435228348],[-0.006789178121835,0.024697449058294,-0.12045937776566],[0.11766657233238,-0.019969698041677,0.056393686681986]],[[-0.063988097012043,0.16554805636406,-0.066010475158691],[-0.24273793399334,-0.12405183166265,0.017660032957792],[-0.11051139235497,-0.1187751069665,0.090140998363495]],[[0.1030490770936,0.13865113258362,0.056305598467588],[-0.14017534255981,-0.20189575850964,-0.061901494860649],[-0.21195892989635,-0.020487908273935,-0.0083669070154428]],[[0.096852615475655,-0.078478142619133,-0.048090416938066],[0.020364437252283,-0.24543784558773,-0.08331123739481],[0.10987206548452,0.11535891145468,0.11164839565754]],[[0.074034355580807,-0.024427384138107,0.13508468866348],[-0.032406337559223,0.049552779644728,-0.034832641482353],[0.0041450709104538,0.062373217195272,0.15957278013229]],[[0.026679689064622,-0.07586669921875,-0.057486455887556],[-0.065075561404228,-0.11753663420677,-0.029893092811108],[0.055133055895567,0.044027589261532,0.045396652072668]],[[-0.062822222709656,0.0082283290103078,0.10859783738852],[0.073821187019348,-0.0096727665513754,-0.12557032704353],[0.07055875658989,0.015573262237012,-0.082329131662846]]],[[[0.08072292804718,-0.085251919925213,0.060028504580259],[0.074285373091698,-0.08062169700861,0.056730102747679],[-0.090484626591206,0.1003141105175,-0.021945269778371]],[[0.018183778971434,0.088613450527191,0.083236962556839],[0.15477676689625,-0.0027462856378406,-0.13718551397324],[0.013255738653243,0.051680203527212,-0.052262905985117]],[[-0.052575454115868,0.025568382814527,-0.08447027951479],[0.021534519270062,0.11146198958158,-0.13155843317509],[0.034321367740631,0.037247065454721,0.13820035755634]],[[0.19667023420334,0.0059328936040401,0.091705806553364],[0.035492148250341,-0.022281900048256,-0.14010933041573],[-0.0005922224954702,0.03972914069891,-0.20703469216824]],[[0.088865973055363,0.091683931648731,0.082882396876812],[-0.015951717272401,-0.038442354649305,-0.093161948025227],[0.046221971511841,0.10283151268959,0.00075848470441997]],[[0.10057147592306,-0.072555020451546,-0.04781386256218],[-0.07611271739006,-0.17402239143848,-0.082975327968597],[0.13279904425144,-0.0099492464214563,-0.098903931677341]],[[-0.15829598903656,-0.13546298444271,0.083436124026775],[0.077213928103447,0.10543078929186,-0.10273434966803],[0.013408277183771,0.020910566672683,0.15008428692818]],[[0.10483200103045,-0.021429738029838,0.033650293946266],[-0.13180217146873,0.11418265849352,0.1001461148262],[-0.01306371204555,-0.16127102077007,-0.072327479720116]],[[-0.0067599127069116,-0.046395044773817,0.062750399112701],[-0.025525078177452,0.023723313584924,0.019222004339099],[-0.099590182304382,0.092780083417892,0.01283841021359]],[[-0.0079818004742265,-0.050099264830351,0.05361346155405],[0.033054020255804,-0.010534257628024,0.070313706994057],[-0.12506547570229,-0.1520152837038,-0.070828154683113]],[[-0.086813420057297,0.13770525157452,-0.046408958733082],[0.017738332971931,0.010897492989898,-0.069674596190453],[0.085261605679989,0.099894240498543,-0.011047025211155]],[[0.07416108250618,-0.18273666501045,-0.1461121737957],[-0.07806121557951,0.14990694820881,0.043268505483866],[-0.011269258335233,-0.0027384201530367,0.028455344960093]],[[0.0996463149786,-0.017963426187634,0.10877594351768],[-0.017307851463556,-0.0038205557502806,-0.12018237262964],[-0.086309514939785,0.0073256576433778,0.043199133127928]],[[0.028836462646723,0.054363366216421,-0.1578982770443],[-0.092936426401138,-0.049031149595976,-0.024087965488434],[-0.016107002273202,-0.047204788774252,0.080569215118885]],[[0.10147909075022,-0.03503143787384,-0.022418070584536],[-0.11660702526569,0.046633806079626,-0.12221290171146],[-0.023729797452688,-0.1224362179637,-0.036498442292213]],[[0.23493845760822,0.077950537204742,-0.080057583749294],[0.072217889130116,0.014303741976619,-0.11670485883951],[-0.33566018939018,-0.091168262064457,0.1255242228508]],[[0.13636857271194,-0.1010350883007,0.020217871293426],[-0.11778146028519,-0.071783259510994,-0.22397916018963],[0.052422981709242,0.002935481024906,-0.02986098639667]],[[0.13889046013355,-0.057890009135008,-0.070530511438847],[-0.097534328699112,-0.11427560448647,0.091809131205082],[0.010192007757723,-0.008808103390038,-0.06557460129261]],[[-0.16378708183765,-0.13043788075447,-0.10345680266619],[0.0032817791216075,0.081176519393921,0.06672465801239],[-0.14210951328278,-0.15639986097813,-0.043596155941486]],[[0.060518719255924,0.088814258575439,-0.057163320481777],[-0.081045784056187,-0.085024133324623,-0.046064492315054],[0.016724994406104,0.010322433896363,0.057128716260195]],[[0.045607782900333,0.21313712000847,0.079667538404465],[-0.14930970966816,0.0085352333262563,-0.048847690224648],[0.018671959638596,-0.022435007616878,-0.050450496375561]],[[-0.021012475714087,0.11370895802975,-0.060023970901966],[-0.059682086110115,-0.15107034146786,0.070129334926605],[-0.13351072371006,0.083079166710377,-0.086453579366207]],[[0.078411772847176,-0.056558012962341,-0.13697537779808],[-0.10666050761938,0.1094641238451,-0.0478107444942],[-0.05360347405076,-0.10675255954266,-0.0049305744469166]],[[0.067500114440918,-0.014449219219387,0.030950851738453],[-0.17371198534966,-0.0081502636894584,0.02150509878993],[-0.098447784781456,0.1156976595521,0.023344576358795]],[[-0.04968187212944,-0.012562504038215,-0.076533138751984],[0.017853837460279,0.10589334368706,-0.033598560839891],[-0.10980618000031,0.10548097640276,0.15262027084827]],[[-0.018692806363106,-0.018435196951032,0.029145082458854],[0.020898645743728,-0.10379696637392,0.058425813913345],[-0.10756180435419,-0.07078667730093,0.032550010830164]],[[0.15901550650597,0.12264632433653,0.095190174877644],[0.078414618968964,-0.084011077880859,0.034850332885981],[-0.10018043220043,-0.14543490111828,0.043539352715015]],[[0.0047105858102441,-0.041116286069155,-0.054950967431068],[0.0022706324234605,-0.060465089976788,0.025113953277469],[-0.10448467731476,0.066489592194557,0.046947415918112]],[[-0.13240617513657,0.014163417741656,-0.05089545622468],[-0.13297863304615,-0.00983751937747,0.12353248894215],[0.026323301717639,0.16084761917591,0.026992045342922]],[[0.19539262354374,-0.14473952353001,0.035735666751862],[0.04554008692503,0.070519477128983,-0.035878397524357],[-0.073166839778423,-0.072332568466663,-0.074998065829277]],[[0.17178621888161,0.042722653597593,-0.086403518915176],[-0.19485837221146,-0.033940896391869,-0.0057100760750473],[-0.012462290003896,-0.16480283439159,0.095142334699631]],[[-0.033772449940443,0.22154942154884,0.14333426952362],[-0.032222460955381,0.10306257754564,-0.079299509525299],[-0.071691893041134,0.013413053937256,0.0094407238066196]]]],"nOutputPlane":32,"kW":3,"kH":3,"bias":[-0.014624668285251,0.031681474298239,-0.037581402808428,0.036337435245514,0.0065425266511738,0.012575327418745,-0.010589422658086,0.013271815143526,0.026266969740391,-0.010007214732468,-0.0039728437550366,0.0093510942533612,-0.010367064736784,0.016186010092497,0.05244442820549,0.0059518148191273,0.0068631866015494,0.014958866871893,-0.015952922403812,-0.06029337272048,0.019372986629605,0.009163566865027,0.012592884711921,0.0025056062731892,-0.061443358659744,0.007696429733187,-0.062185846269131,0.024619448930025,0.00097111699869856,-0.097478151321411,-0.011142830364406,-0.016063258051872],"nInputPlane":32},{"weight":[[[[-0.18863789737225,-0.26887077093124,0.00073375535430387],[0.13176934421062,0.020660987123847,0.064263328909874],[0.040945336222649,-0.035014908760786,0.013240080326796]],[[0.049629036337137,0.076521806418896,-0.017944652587175],[0.067343547940254,-0.055472239851952,0.085579603910446],[0.052751757204533,0.023402284830809,-0.11137941479683]],[[-0.13182650506496,-0.037493824958801,0.16275636851788],[-0.033154290169477,-0.23110790550709,0.056309763342142],[0.19909882545471,0.053254600614309,-0.027480561286211]],[[-0.018599411472678,-0.0081052649766207,0.10831373929977],[-0.085451297461987,0.13579146564007,0.087253630161285],[-0.034551236778498,0.11486983299255,0.067933492362499]],[[-0.027483902871609,-0.03663782402873,0.037552248686552],[0.066518276929855,0.0096956603229046,-0.1337820738554],[-0.070283159613609,0.031533069908619,-0.013386237435043]],[[0.04561759904027,-0.026645492762327,-0.24290916323662],[0.076023109257221,0.0057875737547874,-0.093304976820946],[0.0092670181766152,0.097297072410583,-0.076725676655769]],[[-0.21316017210484,-0.05942364782095,-0.071623831987381],[-0.037391595542431,0.023351673036814,0.17304565012455],[-0.11827435344458,0.13809850811958,0.17382301390171]],[[0.009296658448875,-0.043438497930765,0.060120519250631],[-0.15525786578655,-0.097522370517254,-0.16201339662075],[-0.10207993537188,-0.17855890095234,0.068590514361858]],[[-0.060310672968626,0.0035385035444051,-0.0037837161216885],[-0.14764638245106,-0.093291006982327,0.14192998409271],[-0.00033211064874195,-0.031928483396769,-0.097857512533665]],[[-0.049072399735451,0.018025022000074,-0.096025973558426],[-0.105628490448,-0.060321714729071,0.16554762423038],[-0.072731703519821,-0.097328580915928,-0.048412390053272]],[[0.024199478328228,0.036614809185266,-0.035572811961174],[-0.12689369916916,0.13756781816483,-0.013908142223954],[-0.04738400503993,0.051750592887402,-0.01937729306519]],[[-0.14655335247517,0.17516696453094,-0.0057843332178891],[0.02135313488543,-0.0064929341897368,0.030007444322109],[0.094690687954426,-0.11305906623602,0.031381510198116]],[[0.03127808123827,-0.19141268730164,0.14703068137169],[-0.38444265723228,-0.14634095132351,0.0085402633994818],[0.099561862647533,0.15241804718971,-0.04953621327877]],[[-0.031012430787086,-0.10225935280323,-0.10687234997749],[0.0092249102890491,0.010702554136515,-0.15523310005665],[-0.027031425386667,0.048142701387405,0.034793768078089]],[[-0.0022672682534903,0.0086520733311772,-0.01450299937278],[-0.055513687431812,0.0073298453353345,0.046108338981867],[0.032816175371408,-0.054544620215893,-0.029905963689089]],[[-0.058982469141483,0.15726238489151,-0.10864859074354],[-0.026320310309529,0.013198238797486,-0.10866530239582],[-0.068639345467091,-0.083369322121143,0.15378703176975]],[[0.10814119875431,-0.17650450766087,-0.094079941511154],[-0.13976918160915,0.062283154577017,-0.10306347161531],[0.11447930335999,-0.12501019239426,-0.10015404969454]],[[-0.14478677511215,-0.043888308107853,-0.096626855432987],[-0.15438167750835,-0.074059888720512,-0.034465260803699],[0.12409505993128,-0.062175869941711,0.07941222935915]],[[-0.0035019051283598,-0.080870650708675,0.13905444741249],[0.1106131747365,0.084853231906891,-0.010841210372746],[-0.044155184179544,-0.028055937960744,0.020264495164156]],[[-0.16107857227325,-0.17787298560143,-0.14807216823101],[-0.083207212388515,-0.017860716208816,-0.046170320361853],[-0.15469582378864,-0.071825571358204,0.12270081788301]],[[-0.043910022825003,0.035433534532785,-0.094052948057652],[0.10142469406128,-0.037005573511124,0.090795107185841],[-0.034748006612062,0.078909441828728,0.029317999258637]],[[-0.027660077437758,-0.12240201234818,-0.14430657029152],[0.00049330142792314,0.012299004010856,-8.5082116129342e-05],[0.031541645526886,0.13230255246162,-0.016222001984715]],[[0.11451531946659,0.029822310432792,0.14831709861755],[0.030211498960853,0.050089094787836,0.18265715241432],[-0.14853909611702,-0.29702168703079,0.3413080573082]],[[0.051474113017321,0.041638109833002,-0.071945630013943],[-0.029295625165105,0.010678922757506,-0.066194579005241],[-0.10809165239334,-0.1736291795969,0.10828179866076]],[[6.2050930864643e-05,-0.069050930440426,-0.17923507094383],[0.016846098005772,-0.11962001770735,-0.059381648898125],[0.120973482728,0.095876112580299,-0.041610013693571]],[[-0.093374364078045,-0.12584583461285,0.004100828897208],[0.14435184001923,0.015417036600411,0.071346111595631],[-0.069272302091122,0.22110517323017,-0.1672774553299]],[[-0.0075907576829195,-0.051980052143335,-0.049029342830181],[0.076214246451855,-0.12532387673855,-0.14576964080334],[0.033563375473022,0.15691713988781,0.056273639202118]],[[0.026672247797251,-0.044917333871126,0.025404393672943],[0.085419997572899,0.23087124526501,-0.039540883153677],[-0.26002705097198,0.086316205561161,-0.040967777371407]],[[-0.14156205952168,-0.21984538435936,-0.011672168970108],[-0.034222941845655,-0.11207626014948,0.12998193502426],[-0.023498533293605,0.016413543373346,0.022755239158869]],[[0.07696358114481,-0.058359019458294,-0.27271491289139],[0.019904246553779,0.11298635601997,-0.24725720286369],[-0.027310766279697,0.059283554553986,0.092077329754829]],[[0.042925324290991,0.0029052814934403,-0.049868252128363],[0.026092026382685,-0.0017359692137688,-0.034258086234331],[-0.15288960933685,0.028293929994106,-0.031290158629417]],[[-0.1077519506216,0.026122039183974,-0.17706534266472],[-0.034550283104181,0.15722146630287,-0.18651024997234],[-0.10564029216766,-0.12963417172432,-0.10244868695736]]],[[[-0.19559016823769,-0.044690068811178,-0.20675291121006],[0.073027096688747,0.10842528939247,-0.062201827764511],[-0.14699757099152,-0.086799904704094,-0.11242966353893]],[[0.093313559889793,-0.02885502204299,0.010766630060971],[0.019292736425996,-0.052291549742222,-0.019161943346262],[-0.062953539192677,-0.10764446109533,-0.011627489700913]],[[0.091946989297867,-0.026434078812599,-0.13467256724834],[0.024201441556215,-0.034568309783936,0.10707683861256],[0.052386820316315,-0.0030358813237399,0.1154223755002]],[[0.14286510646343,0.011930467560887,-0.088382929563522],[-0.29663556814194,-0.079944364726543,0.093534469604492],[0.10898234695196,-0.011851960793138,0.011804658919573]],[[-0.0092257261276245,-0.078069567680359,0.0044953296892345],[-0.029883705079556,-0.073658347129822,0.03555716201663],[0.038153272122145,-0.0056265476159751,-0.060027167201042]],[[-0.0050411005504429,0.098432339727879,-0.088525027036667],[0.1661225259304,-0.04529170319438,0.033459007740021],[-0.072774581611156,0.045779641717672,0.070080384612083]],[[0.069134570658207,-0.0018213358707726,-0.22737340629101],[-0.048159956932068,0.036717426031828,-0.0062028695829213],[-0.007624935824424,-0.017547341063619,-0.0562689229846]],[[-0.11629472672939,0.13163858652115,0.088613249361515],[0.074487388134003,-0.054945301264524,0.083612404763699],[0.14697866141796,0.040676880627871,-0.0014264433411881]],[[0.029648890718818,-0.061050090938807,-0.1363599896431],[-0.0044289627112448,0.072482869029045,-0.0026320389006287],[-0.036799855530262,0.078946031630039,-0.0058169602416456]],[[-0.17290709912777,-0.14309479296207,-0.084867246448994],[-0.020947482436895,0.12155383825302,0.082740344107151],[0.0028402032330632,0.18012414872646,-0.054391775280237]],[[0.054313234984875,-0.1318871229887,-0.065397188067436],[-0.122444473207,0.0032779942266643,0.062152922153473],[0.09514707326889,-0.042946368455887,-0.11574091762304]],[[0.097432963550091,-0.011738468892872,-0.015747867524624],[0.11345214396715,-0.19646866619587,-0.10775692015886],[0.11197225749493,-0.088929526507854,-0.090459570288658]],[[-0.065616101026535,-0.1457934230566,0.053758729249239],[-0.24822628498077,-0.11431981623173,0.037614487111568],[0.24151130020618,-0.03747322037816,0.014973362907767]],[[-0.10884834825993,0.021290712058544,0.063146740198135],[-0.2006099075079,-0.047068148851395,0.018068861216307],[0.052145410329103,0.048777110874653,-0.067170642316341]],[[-0.049479763954878,-0.047429043799639,0.026997359469533],[-0.02065809443593,0.0072235176339746,-0.0051323054358363],[0.028160378336906,0.042092032730579,0.00013665267033502]],[[-0.041130352765322,0.12980060279369,-0.018526183441281],[0.13299050927162,-0.021771389991045,-0.033708777278662],[0.096993766725063,-0.1085321828723,-0.00072053272742778]],[[-0.026788054034114,-0.04388103634119,-0.056329239159822],[0.029337314888835,-0.092329896986485,-0.08069647103548],[-0.021646393463016,0.060740627348423,0.097416378557682]],[[0.024531619623303,0.055188044905663,0.10825076699257],[0.061550501734018,-0.067072555422783,-0.014624450355768],[0.08649480342865,0.027118282392621,-0.12372010201216]],[[0.13754241168499,-0.040933128446341,0.071393221616745],[0.02207375317812,-0.12062292546034,-0.26710242033005],[0.071134194731712,-0.026676218956709,-0.017611987888813]],[[-0.058213468641043,-0.056557197123766,0.051567889750004],[-0.11712348461151,0.073181107640266,-0.062251798808575],[-0.12765362858772,-0.19784463942051,-0.018467226997018]],[[0.027439096942544,-0.050272151827812,-0.05067078396678],[-0.18991784751415,0.014144695363939,0.12801486253738],[-0.031494826078415,-0.063236348330975,-0.05870995298028]],[[0.028357179835439,-0.10531324893236,-0.073986060917377],[-0.093668162822723,0.049753256142139,-0.036934204399586],[-0.013129856437445,0.15216861665249,0.081953354179859]],[[-0.1407717615366,0.0091162659227848,0.018106088042259],[0.0003840105200652,0.032874181866646,-0.14178504049778],[-0.041669484227896,0.15914197266102,0.015798574313521]],[[0.14347018301487,-0.093713961541653,0.071891196072102],[0.063481628894806,0.040480863302946,-0.0088629191741347],[-0.060887683182955,-0.00784045830369,0.036082983016968]],[[-0.13293424248695,0.022734625265002,-0.035212069749832],[-0.02130763232708,-0.10161579400301,-0.088088437914848],[-0.047999300062656,-0.039512448012829,-0.10513816773891]],[[0.016403457149863,-0.12416718900204,-0.12304805219173],[-0.050475835800171,-0.1254458129406,0.14192421734333],[-0.088581003248692,0.019270975142717,-0.041556462645531]],[[-0.039831452071667,-0.037321306765079,-0.039575193077326],[0.13130435347557,0.060971409082413,-0.038626283407211],[0.085307024419308,-0.016853827983141,-0.05602427944541]],[[0.0018852248322219,0.01989539526403,0.13343049585819],[0.17819221317768,-0.044884953647852,0.045369029045105],[-0.31045150756836,-0.16790042817593,-0.12041886895895]],[[0.15305396914482,-0.24959662556648,-0.15382987260818],[0.088707759976387,-0.014324033632874,-0.12379854917526],[-0.1179014891386,0.098391681909561,0.083908632397652]],[[0.13837206363678,-0.12480073422194,-0.096484556794167],[-0.049617953598499,-0.0070161013863981,0.079937763512135],[0.020342454314232,0.044006321579218,-0.13780032098293]],[[-0.15048959851265,0.023763535544276,0.062425531446934],[-0.031213698908687,0.098360247910023,-0.050548996776342],[-0.037351459264755,-0.11565233767033,-0.2113753259182]],[[-0.12503466010094,0.027199171483517,-0.12993897497654],[-0.0056778453290462,-0.11680094897747,-0.12744529545307],[0.01026055123657,-0.013621585443616,-0.1092963963747]]],[[[-0.16674539446831,0.13734044134617,-0.035961486399174],[-0.057182263582945,-0.12777729332447,0.024561166763306],[-0.092989414930344,-0.10022421181202,-0.04188397526741]],[[0.0095152975991368,0.016384113579988,0.061636179685593],[-0.029236529022455,0.043951272964478,0.043008718639612],[-0.11381004005671,0.078574672341347,-0.033711645752192]],[[-0.029042029753327,-0.10542630404234,-0.048924688249826],[0.1262468546629,-0.022486576810479,-0.03053349070251],[0.024203639477491,0.057082902640104,-0.030529955402017]],[[-0.15857034921646,-0.05106832832098,-0.096189275383949],[0.12865048646927,0.14164152741432,0.07589752972126],[-0.042156022042036,0.13971193134785,0.056281220167875]],[[-0.021171826869249,-0.041582763195038,0.073308877646923],[-0.026607098057866,0.043308436870575,0.0048724836669862],[0.061182733625174,0.0016298741102219,-0.0024248431436718]],[[0.0011675042333081,0.12182626873255,0.017632033675909],[-0.073621712625027,0.16392458975315,0.1285408437252],[-0.16237281262875,-0.046702299267054,-0.1508132815361]],[[-0.058134350925684,0.0032738314475864,-0.11140783131123],[-0.09191370755434,-0.096592269837856,-0.1255044490099],[0.038068331778049,0.066736228764057,0.036628995090723]],[[-0.064965628087521,-0.012874097563326,-0.038475941866636],[-0.052518229931593,0.19726213812828,0.03320475295186],[-0.16820496320724,-0.23384718596935,-0.10690725594759]],[[0.037687860429287,0.16073851287365,0.046938020735979],[0.047663535922766,0.1060728058219,-0.12829890847206],[-0.072471879422665,-0.052452277392149,-0.14030790328979]],[[-0.15028403699398,-0.07680806517601,0.034281104803085],[-0.069661289453506,0.048156578093767,-0.11619075387716],[-0.044479388743639,0.130126953125,-0.10620549321175]],[[-0.076612032949924,0.0071892375126481,-0.11665596812963],[-0.030261784791946,-0.19873069226742,-0.2622564136982],[0.018523495644331,0.031271610409021,0.090065725147724]],[[0.082172058522701,-0.048308812081814,-0.0078220358118415],[0.11613480746746,-0.054207772016525,-0.089041963219643],[-0.14434789121151,0.10388034582138,-0.057590533047915]],[[0.092964395880699,-0.10458420962095,-0.16059632599354],[0.10767161101103,0.013157888315618,0.04544972255826],[-0.29077059030533,0.0055852015502751,-0.03670059889555]],[[-0.025611992925406,-0.091438859701157,-0.15898425877094],[0.084525361657143,0.054345812648535,0.085526518523693],[-0.032503481954336,0.060582753270864,0.19421423971653]],[[0.0048475968651474,-0.022557009011507,-0.028389183804393],[0.042300622910261,0.024442797526717,0.01699560135603],[0.10425362735987,-0.06329370290041,-0.063116267323494]],[[0.028459463268518,0.0026129779871553,0.03158950060606],[0.080632008612156,0.06487450003624,0.10703583806753],[0.02744166739285,0.17203636467457,-0.08957876265049]],[[0.0037449970841408,0.031817257404327,-0.10706435143948],[-0.032668918371201,0.039625111967325,-0.27244165539742],[0.0059215319342911,0.096823833882809,0.064615160226822]],[[0.082186654210091,0.052494615316391,0.10079740732908],[-0.051486931741238,0.066678039729595,0.074858076870441],[-0.0034975688904524,-0.048240497708321,0.035398870706558]],[[-0.097038380801678,-0.025651095435023,0.070945367217064],[0.097058497369289,-0.036152109503746,0.13035978376865],[0.088322557508945,-0.076836116611958,0.020161226391792]],[[-0.035042177885771,0.13035272061825,-0.15720641613007],[-0.08977410197258,-0.066743642091751,-0.019853841513395],[-0.15569749474525,0.074231341481209,0.1105941683054]],[[0.013204516842961,-0.044868491590023,-0.035850126296282],[-0.048194944858551,-0.0077121783979237,-0.17513035237789],[-0.11989492177963,-0.031031800433993,-0.036108925938606]],[[-0.033811584115028,-0.001757894991897,0.032461702823639],[0.16274370253086,-0.11815381795168,-0.12569543719292],[-0.086872734129429,-0.12666222453117,0.18597576022148]],[[-0.12916883826256,-0.15673568844795,0.12193580716848],[-0.026874329894781,0.016395693644881,-0.00040996752795763],[0.077358141541481,0.051662985235453,0.06269558519125]],[[0.12573617696762,0.044815178960562,0.13063576817513],[-0.17608055472374,-0.040560498833656,-0.071859925985336],[-0.020174197852612,0.01570232026279,-0.090878374874592]],[[-0.11439533531666,-0.046435367316008,-0.046600569039583],[-0.068410620093346,0.052947394549847,0.062804281711578],[-0.0084844678640366,0.0845742598176,-0.026355424895883]],[[-0.064746156334877,-0.088280148804188,-0.087066315114498],[-0.091016344726086,-0.0060809231363237,0.15790928900242],[0.055131010711193,0.039147175848484,-0.057895064353943]],[[-0.010872269049287,-0.045485891401768,-0.042837392538786],[-0.080536559224129,0.074319683015347,0.058001667261124],[-0.023292955011129,0.024015111848712,0.026941305026412]],[[0.052955504506826,-0.062613040208817,-0.0047078495845199],[-0.062437932938337,-0.29615563154221,-0.16309489309788],[0.091379508376122,0.035793446004391,0.24623906612396]],[[0.070007182657719,0.022514943033457,-0.096826329827309],[-0.093694269657135,0.14387831091881,0.097035758197308],[0.029422540217638,-0.16621732711792,-0.0057569961063564]],[[-0.058366488665342,-0.12312974780798,-0.055045906454325],[-0.0016799397999421,-0.029386272653937,-0.0023587672039866],[0.026421511545777,0.10709756612778,0.19104266166687]],[[-0.10209968686104,-0.14341308176517,-0.1303680986166],[0.096663691103458,0.085867993533611,0.032048337161541],[-0.071019686758518,-0.007929190993309,0.081342995166779]],[[0.081284396350384,0.096486821770668,0.15271186828613],[0.0029563545249403,-0.02141585201025,0.066416934132576],[-0.041297908872366,-0.12641377747059,-0.08402881026268]]],[[[-0.0039434214122593,0.00069816428003833,-0.12872964143753],[-0.028743060305715,-0.04126363992691,0.0035134044010192],[0.056767895817757,-0.00070382549893111,-0.0016764582833275]],[[-0.067218273878098,-0.017626097425818,-0.026666874065995],[-0.10649763792753,-0.094490103423595,0.048012383282185],[-0.059524968266487,0.013268912211061,0.23477040231228]],[[0.055582746863365,0.10557168722153,0.082878723740578],[0.14474809169769,-0.015191287733614,-0.066087700426579],[-0.043338987976313,0.028442775830626,-0.095692045986652]],[[-0.23411944508553,-0.17424263060093,-0.023637346923351],[0.051571171730757,0.16642591357231,-0.095027670264244],[0.013109218329191,0.082955710589886,-0.17846149206161]],[[-0.041538570076227,-0.028670309111476,-0.051346898078918],[-0.17734161019325,-0.10219229757786,-0.10312006622553],[0.055986255407333,0.10629680752754,0.015907006338239]],[[0.060019597411156,0.0080296108499169,-0.15796855092049],[-0.10370057076216,-0.039447322487831,0.18474760651588],[-0.079680666327477,0.06322930753231,0.062376756221056]],[[0.023695781826973,0.015255318023264,-0.22717627882957],[0.025443295016885,-0.016938446089625,0.098821945488453],[-0.037131320685148,0.032714799046516,-0.031074564903975]],[[0.023754937574267,-0.28941062092781,-0.037077553570271],[0.15439021587372,-0.034346602857113,-0.080600254237652],[0.11253716796637,0.0138028440997,0.045228093862534]],[[-0.032449003309011,-0.011690248735249,0.00087710120715201],[0.00028422530158423,-0.075883015990257,0.088080175220966],[0.064973592758179,-0.02668684348464,0.16682255268097]],[[0.15946024656296,-0.05621413141489,-0.0073993182741106],[-0.0070914225652814,-0.041195798665285,0.013619881123304],[0.045340359210968,-0.065164819359779,0.11446250230074]],[[0.18873254954815,0.036782387644053,-0.045693606138229],[-0.054765976965427,0.058045249432325,-0.12942136824131],[-0.056150007992983,-0.031557340174913,-0.085538245737553]],[[0.068150617182255,-0.16983735561371,-0.21017888188362],[0.03641190379858,-0.040936186909676,0.066888816654682],[0.031516630202532,0.18236802518368,0.11754132807255]],[[0.0070175663568079,-0.24010753631592,0.03816044703126],[0.016226163133979,-0.095014303922653,0.047623630613089],[-0.079674787819386,-0.1218709051609,0.14811213314533]],[[-0.20094458758831,0.026455324143171,0.14664939045906],[0.0029267480131239,0.062351979315281,-0.020132396370173],[-0.010542646050453,0.047754876315594,0.02044640481472]],[[0.094916276633739,-0.082583568990231,0.11195965111256],[-0.11374142765999,0.052889857441187,-0.13172274827957],[0.18697571754456,0.026380997151136,-0.15016868710518]],[[-0.10934593528509,0.095410443842411,0.044559389352798],[0.064637780189514,0.091831207275391,-0.20638652145863],[-0.077239774167538,0.0053943344391882,-0.011944958008826]],[[-0.14047814905643,-0.050269465893507,-0.058626588433981],[-0.10658156871796,0.035690855234861,0.066219605505466],[-0.19841992855072,-0.074720837175846,0.059322170913219]],[[0.094380803406239,0.023138761520386,0.11677483469248],[0.09357013553381,0.12507046759129,0.1354662925005],[-0.16901831328869,-0.08389051258564,0.17018958926201]],[[-0.070832133293152,0.14502692222595,0.038017682731152],[-0.050722949206829,0.12841801345348,-0.019767686724663],[0.082949183881283,-0.070964060723782,0.15848614275455]],[[-0.018553774803877,0.038060031831264,-0.039363410323858],[-0.080262772738934,0.02250806055963,0.20397472381592],[-0.016674866899848,0.0040180291980505,0.067092038691044]],[[-0.084468476474285,0.022993983700871,-0.027544945478439],[-0.060402393341064,0.08587659150362,0.12472220510244],[-0.1199409365654,-0.0040414230898023,0.041177291423082]],[[0.020504515618086,0.02381881326437,-0.11738726496696],[0.082424558699131,0.12412067502737,0.12219452112913],[0.13672938942909,-0.056889057159424,0.035348203033209]],[[-0.053762793540955,0.16446314752102,-0.065502002835274],[0.0075950878672302,0.20422974228859,0.066734567284584],[-0.12684541940689,0.092845551669598,0.0017103251302615]],[[-0.042115308344364,0.095409646630287,0.11481563746929],[0.033827234059572,-0.050967756658792,0.054885443300009],[-0.10420212894678,0.068014718592167,0.033176030963659]],[[-0.06098635494709,0.066414661705494,0.075957089662552],[-0.043614447116852,-0.077632002532482,0.086391754448414],[0.081556171178818,-0.085690677165985,0.0090040629729629]],[[-0.083840392529964,0.013778029941022,-0.057444401085377],[-0.080149725079536,0.058238871395588,0.22029274702072],[0.0054979487322271,0.10472325235605,-0.055890623480082]],[[-0.03094931319356,0.03570868819952,-0.044166624546051],[0.081809565424919,0.044549841433764,0.0076655484735966],[-0.05817724391818,-0.10793266445398,0.11616345494986]],[[0.13527321815491,0.15153248608112,-0.013707916252315],[-0.074124366044998,-0.12491189688444,0.13349494338036],[0.093452334403992,0.060652874410152,0.034625850617886]],[[-0.060640145093203,0.024242602288723,0.084181100130081],[0.15774093568325,-0.033184185624123,0.033048484474421],[0.12294465303421,0.026084998622537,-0.11119258403778]],[[0.12642385065556,0.035522632300854,-0.030744250863791],[0.053526230156422,0.13565872609615,0.11007463186979],[0.084889650344849,-0.042610973119736,-0.044407818466425]],[[-0.10904116183519,-0.12180253863335,-0.09675183147192],[-0.052222318947315,-0.055559374392033,-0.085728622972965],[0.068639971315861,0.095868706703186,0.065489768981934]],[[-0.032719884067774,0.02060361392796,0.026291575282812],[-0.068885020911694,-0.018041277304292,-0.0071103754453361],[0.069010578095913,0.071270570158958,0.063423454761505]]],[[[0.066217422485352,-0.028259035199881,0.10418669879436],[-0.10662192851305,-0.052229914814234,-0.027342531830072],[-0.096877388656139,-0.21065011620522,-0.18035911023617]],[[0.044132485985756,-0.03650065138936,0.039211980998516],[0.0032706626225263,0.018219092860818,0.034389771521091],[0.034960273653269,-0.012141495011747,-0.051676087081432]],[[0.03808669000864,0.10844123363495,0.0089766038581729],[0.088405124843121,-0.05980759114027,0.026950823143125],[0.0022470061667264,-0.020153820514679,-0.043403279036283]],[[0.064052917063236,0.076183646917343,-0.0046865087933838],[-0.0065524601377547,-0.050621498376131,0.13824659585953],[0.088469631969929,-0.066611215472221,-0.12487007677555]],[[0.052815888077021,-0.069455310702324,0.00013817707076669],[0.010585474781692,0.1114352196455,-0.068755447864532],[0.026163034141064,-0.11907511949539,0.028193466365337]],[[0.14401459693909,0.035072803497314,0.00063046521972865],[0.1024844199419,-0.074173353612423,-0.1047086417675],[0.088859781622887,-0.24770331382751,-0.0028404598124325]],[[0.045623738318682,-0.055264208465815,0.027977377176285],[0.099990241229534,-0.13382774591446,0.052287951111794],[0.11100766062737,-0.044983848929405,0.15869571268559]],[[0.11031835526228,-0.060787159949541,0.097988657653332],[-0.15063260495663,-0.042153082787991,0.05542067065835],[-0.17730587720871,-0.022524271160364,0.019726969301701]],[[0.045355059206486,0.044332426041365,0.024621291086078],[-0.085569955408573,0.11506281048059,0.10417872667313],[-0.07635772973299,-0.00056088902056217,-0.089677959680557]],[[0.039481293410063,0.0060259164310992,0.07624963670969],[-0.054877076297998,-0.012916545383632,0.088057182729244],[0.1442129611969,-0.046603325754404,-0.0042696916498244]],[[0.06978802382946,-0.045562773942947,-0.0067846123129129],[-0.070285677909851,-0.0040008495561779,-0.062939628958702],[-0.011709013022482,-0.11908883601427,-0.30057337880135]],[[0.11814377456903,-0.051918514072895,0.0052472120150924],[-0.076156362891197,-0.039815545082092,0.066268019378185],[0.03163331001997,-0.00047941590310074,0.018563754856586]],[[0.15036682784557,0.15445320308208,-0.11717134714127],[-0.026633081957698,0.02765797264874,-0.23481909930706],[0.026353683322668,0.083737574517727,-0.16179363429546]],[[0.19093590974808,0.0052860542200506,-0.013224614784122],[0.093772329390049,-0.09469922631979,-0.09014505892992],[-0.045744199305773,-0.0091527448967099,-0.14819931983948]],[[0.007118206936866,-0.11396547406912,0.054770588874817],[-0.022435368970037,-0.087509281933308,0.1127171292901],[0.065948970615864,-0.046403806656599,-0.016396434977651]],[[-0.1348453015089,0.02925125323236,-0.054965700954199],[0.050979740917683,-0.04237887263298,-0.20190292596817],[0.0058305584825575,0.085813857614994,0.065591529011726]],[[-0.0011284108040854,0.059831835329533,-0.042086012661457],[0.064940683543682,-0.010816177353263,0.04494409635663],[0.14456737041473,0.010729887522757,-0.14181570708752]],[[0.048138923943043,0.055140063166618,-0.1484776288271],[0.024985264986753,-0.028152544051409,0.0071690580807626],[-0.055908050388098,-0.1973329782486,-0.0056941718794405]],[[0.10044250637293,0.1484063565731,0.034115500748158],[0.12985408306122,-0.027864718809724,-0.2626374065876],[0.012779847718775,-0.12993527948856,-0.1840143352747]],[[0.0084327002987266,0.016690842807293,-0.0078486213460565],[0.039951149374247,0.02028077095747,-0.070242919027805],[0.0070392079651356,-0.1814061999321,-0.15305848419666]],[[0.076877735555172,0.00059337535640225,0.022232146933675],[-0.050108537077904,-0.091825641691685,-0.0070891100913286],[-0.021475050598383,-0.089590929448605,-0.087696999311447]],[[-0.012558669783175,-0.2444099932909,0.12491469085217],[0.10700226575136,0.0032571065239608,0.13185121119022],[0.10891332477331,-0.028625348582864,0.1496836990118]],[[0.044514324516058,0.036455612629652,-0.19343036413193],[-0.052654426544905,-0.084468357264996,0.10804183781147],[0.12614321708679,0.041765108704567,0.081582337617874]],[[-0.066287226974964,-0.070356667041779,0.1473546475172],[0.038481760770082,0.015916774049401,0.068590752780437],[0.13213188946247,-0.1596070677042,-0.017199421301484]],[[0.069946348667145,-0.051865257322788,0.048978537321091],[0.050582356750965,0.06403710693121,-0.18616864085197],[-0.14956717193127,-0.19075854122639,-0.24281424283981]],[[0.061254724860191,0.0069745392538607,0.098248764872551],[0.030770245939493,0.021539967507124,-0.020625676959753],[0.07281818240881,0.077289260923862,0.03262335434556]],[[-0.081836186349392,0.094386301934719,-0.082588851451874],[0.020800763741136,0.022794796153903,0.079048298299313],[-0.062831081449986,0.097942784428596,-0.081608898937702]],[[-0.17681692540646,-0.0045389817096293,-0.019752487540245],[-0.18014541268349,0.045881681144238,-0.18161280453205],[-0.064215041697025,0.19849638640881,0.12443006783724]],[[-0.069916002452374,-0.016055902466178,0.07574125379324],[-0.061640728265047,0.1046227812767,-0.0096046878024936],[-0.049004159867764,-0.028770973905921,-0.023459000512958]],[[0.010649852454662,0.095477111637592,0.062792994081974],[0.0033555568661541,-0.081755816936493,-0.047961119562387],[0.062390651553869,-0.12303777784109,-0.078403010964394]],[[0.14527237415314,-0.090530842542648,0.14915323257446],[0.20531871914864,-0.043819770216942,-0.055022768676281],[-0.17138738930225,0.14165505766869,-0.18061703443527]],[[-0.0071265413425863,0.10073687136173,0.18970255553722],[-0.0019448989769444,-0.035022761672735,-0.066220782697201],[-0.085278443992138,-0.20218177139759,0.050610572099686]]],[[[-0.16793286800385,0.10874732583761,-0.075537048280239],[-0.030521608889103,0.034118540585041,-0.023202963173389],[-0.058236047625542,0.0059635573998094,-0.14475990831852]],[[0.12404269725084,-0.031698424369097,0.02402070350945],[0.064256854355335,-0.027711860835552,-0.015565545298159],[0.012995259836316,-0.0442312695086,-0.024736700579524]],[[-0.021463759243488,-0.2055290043354,-0.16382621228695],[-0.051696181297302,0.16920357942581,0.023788768798113],[-0.19963179528713,0.039301224052906,-0.051128439605236]],[[-0.055268123745918,-0.11824853718281,-0.025963982567191],[0.092644408345222,0.080945551395416,0.077523447573185],[-0.066054679453373,-0.028998224064708,0.11599871516228]],[[-0.042922019958496,0.028890522196889,0.014510518871248],[-0.011390926316381,0.051054272800684,-0.10698342323303],[-0.090436145663261,0.053860045969486,-0.06392902135849]],[[-0.054620992392302,0.080025382339954,0.0075985109433532],[0.098537027835846,0.010643636807799,-0.010976912453771],[0.10080509632826,0.047552537173033,0.033605430275202]],[[0.063900858163834,0.081065192818642,0.030741509050131],[0.019508775323629,0.1055915877223,-0.070458181202412],[-0.33696883916855,-0.014721940271556,-0.18274417519569]],[[0.0032970565371215,-0.034284595400095,-0.13505774736404],[-0.024710044264793,-0.01998315192759,0.0054141725413501],[-0.017693318426609,0.015000649727881,0.021993689239025]],[[-0.052018340677023,-0.10893708467484,-0.030208025127649],[-0.047971714287996,-0.062848411500454,0.044351443648338],[0.055839046835899,0.040235348045826,-0.012844645418227]],[[-0.015556558966637,-0.010003684088588,0.049121588468552],[-0.069493874907494,0.15144419670105,0.090874142944813],[-0.33490499854088,0.087895698845387,-0.13880321383476]],[[0.15903475880623,-0.18142178654671,-0.10776959359646],[-0.051053211092949,0.023435907438397,-0.027608823031187],[-0.11925576627254,-0.038777902722359,0.10038135200739]],[[0.18636885285378,0.14054039120674,-0.078153632581234],[-0.085642270743847,-0.12250049412251,-0.091850407421589],[0.044345870614052,0.031579531729221,-0.012325344607234]],[[0.17382410168648,-0.11372019350529,0.0011845254339278],[0.00034823577152565,-0.16498683393002,0.056030128151178],[0.059661313891411,0.009394071996212,-0.040572382509708]],[[-0.19980247318745,-0.053089924156666,-0.14683988690376],[-0.27182093262672,0.061504725366831,0.029503362253308],[-0.12507052719593,-0.093191228806973,-0.20690628886223]],[[-0.024941673502326,-0.014303609728813,0.034789100289345],[-0.036261137574911,0.055971439927816,-0.00513153988868],[0.028603706508875,0.027977593243122,-0.00038538675289601]],[[-0.064043171703815,-0.069352529942989,-0.03622829169035],[0.01951171271503,-0.048623088747263,0.030780732631683],[0.19060529768467,-0.20270559191704,-0.054318215698004]],[[-0.15822999179363,-0.15495306253433,-0.1704093515873],[0.029957169666886,0.01255542319268,0.12804190814495],[0.162044018507,0.077636361122131,-0.0040834685787559]],[[0.080736801028252,-0.18019016087055,-0.085617080330849],[0.13841915130615,-0.17851231992245,0.057130370289087],[0.10063330084085,0.049731787294149,0.16709989309311]],[[-0.048786405473948,0.072879679501057,-0.042662598192692],[-0.10983445495367,0.082567475736141,0.10729710757732],[0.073569595813751,-0.13210286200047,0.040795367211103]],[[0.13052132725716,-0.030985051766038,-0.024070544168353],[-0.039351191371679,-0.19276776909828,-0.048875696957111],[-0.0093834130093455,0.0050615295767784,-0.10201209038496]],[[0.0450733974576,-0.13582506775856,0.016282124444842],[-0.11180508136749,-0.054549191147089,0.1908723115921],[-0.078660391271114,-0.038055282086134,0.052956484258175]],[[0.073013238608837,0.13924378156662,0.0083149382844567],[-0.11717972159386,0.054379679262638,0.048837002366781],[0.076166369020939,-0.13055595755577,-0.011912424117327]],[[-0.32160803675652,0.17995782196522,0.18444836139679],[-0.26387542486191,0.016712198033929,0.016479305922985],[-0.010044995695353,0.03342417255044,-0.055292714387178]],[[-0.25011464953423,-0.16164094209671,-0.22671540081501],[0.10183820873499,-0.01915306225419,0.060026936233044],[0.13013288378716,-0.061636839061975,-0.058192148804665]],[[0.015909416601062,0.16426485776901,-0.0018069953657687],[-0.061929799616337,0.040892545133829,0.019818264991045],[0.070691123604774,-0.050447050482035,-0.1074822768569]],[[-0.094309389591217,0.12325558066368,-0.00032669299980626],[-0.1923740208149,0.066155195236206,-0.21001289784908],[-0.068497523665428,0.16375696659088,0.13148230314255]],[[-0.0044590150937438,-0.050869308412075,-0.062677808105946],[-0.015221990644932,0.0048500164411962,-0.017710257321596],[0.016604488715529,0.094460219144821,0.052007604390383]],[[0.047400455921888,-0.17042343318462,-0.0071470006369054],[0.0039132284000516,-0.0049565467052162,0.19036059081554],[0.14721220731735,0.036209966987371,0.066259875893593]],[[0.20074012875557,-0.16966767609119,0.09882403165102],[0.097047209739685,-0.25337478518486,-0.095640890300274],[-0.014985702931881,-0.096789322793484,0.01984566822648]],[[0.040557589381933,-0.10953599214554,0.04152063280344],[0.030371816828847,0.075943641364574,0.057488441467285],[-0.069647088646889,-0.066549152135849,-0.030923450365663]],[[-0.065556235611439,0.16190917789936,0.01526777818799],[-0.25020375847816,-0.019267506897449,-0.066076941788197],[0.023516323417425,-0.12727622687817,-0.054570693522692]],[[-0.025787951424718,0.026474574580789,0.078283652663231],[-0.015304023399949,-0.0057911034673452,-0.10975855588913],[-0.04984762519598,0.089550845324993,0.080299444496632]]],[[[-0.2486879080534,-0.055846866220236,-0.056126415729523],[-0.11701259016991,-0.02966495230794,-0.031162867322564],[0.072326116263866,0.14210017025471,0.020691571757197]],[[-0.096365086734295,0.039372839033604,0.094469763338566],[-0.031530406326056,-0.042224295437336,0.027090696617961],[-0.045168798416853,0.0078192921355367,0.032780580222607]],[[0.099705599248409,-0.013097256422043,0.065207399427891],[0.073599010705948,0.091716527938843,-0.13257376849651],[0.0020778025500476,0.24083851277828,0.015227464959025]],[[0.085234791040421,0.12617644667625,-0.050194080919027],[0.046616911888123,0.081018283963203,0.11672024428844],[-0.011214673519135,-0.013808756135404,0.060148235410452]],[[0.015222568996251,-0.0073704249225557,0.010324353352189],[0.053614858537912,0.085345163941383,-0.02304900996387],[-0.044523380696774,0.0046131699346006,-0.047850750386715]],[[0.033667039126158,-0.041908901184797,-0.025130730122328],[0.049021448940039,-0.010321795009077,0.094377420842648],[-0.060682293027639,-0.024388812482357,-0.051767230033875]],[[0.0049895457923412,0.04436968639493,-0.26486033201218],[0.058793861418962,0.16589072346687,-0.11779966950417],[-0.0068685696460307,0.054873622953892,-0.10111657530069]],[[0.030895680189133,0.047500178217888,0.033661887049675],[-0.15788765251637,0.028557503595948,0.10331372916698],[-0.037300486117601,0.042105637490749,0.16945005953312]],[[-0.023412004113197,-0.077000983059406,0.073697209358215],[-0.024306094273925,0.068947814404964,0.14466083049774],[-0.098399445414543,-0.13947635889053,-0.059673883020878]],[[-0.17940087616444,-0.098010502755642,-0.15448148548603],[0.15017455816269,0.10180199891329,-0.26417395472527],[0.12673287093639,0.14275550842285,-0.098501197993755]],[[0.0012072226963937,0.077534697949886,0.0048172627575696],[-0.06951130181551,0.11933831870556,0.025964850559831],[0.11635003983974,-0.017935536801815,0.0096656465902925]],[[0.14311072230339,0.079074993729591,-0.0506940074265],[0.0042557660490274,0.0081626055762172,-0.14814837276936],[0.021350987255573,-0.10346842557192,-0.025494478642941]],[[-0.074672788381577,0.098993912339211,0.13554862141609],[-0.377521276474,-0.14304737746716,0.084415972232819],[-0.16871254146099,-0.055528342723846,-0.0021933200769126]],[[0.12548989057541,0.10080818086863,-0.069587372243404],[0.14326654374599,-0.038838103413582,0.040219407528639],[-0.02978153899312,-0.054665971547365,0.055013079196215]],[[-0.026301926001906,0.033982411026955,-0.012236375361681],[0.068313531577587,0.067799903452396,0.05744094774127],[-0.10046815127134,-0.017289696261287,-0.054942078888416]],[[0.010774604044855,0.037092000246048,0.10741231590509],[-0.019183482974768,-0.074678801000118,-0.11077702045441],[-0.091072469949722,-0.091999404132366,-0.023784717544913]],[[-0.052968747913837,-0.0026185663882643,0.032794542610645],[-0.034178346395493,-0.015602299012244,0.021467821672559],[0.10835671424866,-0.025783125311136,0.060599129647017]],[[-0.1005549505353,0.036129552870989,-0.0024938432034105],[-0.025180481374264,-0.071962796151638,0.096269980072975],[-0.10808125883341,-0.11911454051733,0.023075323551893]],[[0.051339939236641,0.24559107422829,0.0034797708503902],[-0.099912747740746,-0.034075401723385,-0.16161054372787],[-0.019520720466971,0.010011708363891,-0.036426588892937]],[[0.029980152845383,0.021978102624416,-0.019498191773891],[-0.04046206176281,0.13168832659721,0.02036858163774],[0.085439689457417,0.042321063578129,0.033348228782415]],[[0.063527747988701,-0.082119815051556,0.12032064050436],[-0.0062355562113225,0.049633402377367,0.0073294541798532],[0.028429992496967,-0.11887095868587,-0.18797479569912]],[[0.11892476677895,0.21071870625019,-0.02744148671627],[-0.069308198988438,-0.041791792958975,0.088785357773304],[-0.10959825664759,-0.0934993699193,-0.021400637924671]],[[0.080508790910244,0.0081234164535999,0.12199223786592],[-0.048864245414734,0.050042621791363,-0.085467666387558],[-0.0049497559666634,0.13567458093166,-0.0080039948225021]],[[-0.10039805620909,-0.11625350266695,-0.062369711697102],[0.0035322662442923,-0.059114515781403,-0.027745699509978],[0.015979200601578,-0.065994374454021,0.0047430829145014]],[[-0.046831481158733,0.10968993604183,-0.014788263477385],[0.081966787576675,-0.0087192002683878,-0.067139744758606],[-0.0059251952916384,0.0025554681196809,-0.19542860984802]],[[0.0963244587183,0.045827448368073,-0.14295272529125],[0.061579141765833,-0.02936777099967,-0.025653565302491],[-0.050247978419065,0.027930347248912,-0.093135066330433]],[[-0.020215081050992,-0.098152987658978,-0.043419238179922],[-0.041854415088892,-0.055424872785807,0.028317200019956],[-0.051668848842382,0.014514844864607,0.074075065553188]],[[0.060218140482903,0.064682871103287,-0.0031483329366893],[0.19353631138802,0.011132296174765,0.098722569644451],[-0.033699918538332,-0.075874105095863,-0.20315866172314]],[[-0.016488496214151,-0.1516061425209,-0.072051450610161],[0.037609584629536,-0.1369858533144,-0.0044271540828049],[-0.0682253241539,0.039685647934675,0.14251850545406]],[[0.060560084879398,0.0073125106282532,0.021831544116139],[-0.078681424260139,0.013134493492544,-0.0039896070957184],[-0.066485419869423,0.081366673111916,-0.0038684944156557]],[[0.12847244739532,0.00099154456984252,0.029564036056399],[-0.026203962042928,-0.055874515324831,-0.032918605953455],[0.092258028686047,-0.15063373744488,0.013294893316925]],[[-0.0039377510547638,-0.052114028483629,0.015891188755631],[0.060558464378119,-0.062909260392189,-0.10460372269154],[0.23163795471191,-0.090478412806988,-0.20012237131596]]],[[[0.08721087872982,0.034341268241405,0.057058710604906],[0.012104729190469,-0.0048308740369976,-0.11837455630302],[-0.057131879031658,-0.091799229383469,-0.14268024265766]],[[-0.042869590222836,0.047240097075701,0.028845101594925],[0.02708343975246,0.035092458128929,0.022587144747376],[0.0021526587661356,-0.013158103451133,0.14059230685234]],[[-0.01293586473912,0.047289881855249,-0.052971914410591],[0.038860164582729,0.041993461549282,-0.041869167238474],[-0.084389477968216,0.10999534279108,-0.046585720032454]],[[-0.012021774426103,-0.07807045429945,-0.071267858147621],[0.024360023438931,-0.011758691631258,-0.073520511388779],[-0.019415939226747,-0.073533087968826,0.0076603954657912]],[[-0.065533421933651,0.015399121679366,-0.0870361328125],[-0.014172099530697,0.11234778910875,0.059194304049015],[-0.091181538999081,-0.090641357004642,0.020217139273882]],[[-0.14369113743305,-0.065909266471863,-0.016947489231825],[-0.040301207453012,0.048451919108629,0.059059888124466],[-0.018264474347234,-0.045038737356663,-0.028067145496607]],[[-0.051270425319672,-0.007334859110415,-0.11833845824003],[0.012961465865374,-0.088932551443577,0.00044170126784593],[0.019542708992958,-0.023980071768165,0.056766834110022]],[[0.066428728401661,0.088963910937309,-0.051699887961149],[0.046441659331322,-0.044369652867317,-0.079096436500549],[-0.13720941543579,-0.072506956756115,-0.086030170321465]],[[-0.019548084586859,-0.085547611117363,0.043896663933992],[-0.074707269668579,-0.0072381338104606,0.025501027703285],[-0.03905475884676,-0.1157281845808,0.045491706579924]],[[-0.0044819633476436,0.012688212096691,-0.040414206683636],[-0.098689183592796,0.024125875905156,0.073680698871613],[-0.10903258621693,-0.02242299169302,-0.0088724857196212]],[[-0.014052396640182,0.0223642680794,-0.069839194417],[-0.039302438497543,0.054064892232418,-0.0093722930178046],[-0.14003148674965,0.0006921102758497,-0.075598031282425]],[[0.028252964839339,0.028974818065763,-0.078692696988583],[-0.15797218680382,-0.031638950109482,-0.051678009331226],[-0.044197052717209,0.047020263969898,0.1841189712286]],[[0.017718449234962,0.047083981335163,-0.10759631544352],[0.0035876596812159,0.01129413023591,-0.027788564562798],[-0.029788935557008,-0.11874752491713,0.028742391616106]],[[-0.14187563955784,-0.12196905910969,-0.017920630052686],[-0.006210420280695,-0.037195164710283,-0.023648029193282],[-0.08217529207468,-0.016241870820522,0.057953983545303]],[[0.079805567860603,-0.056341741234064,0.034032642841339],[0.0014728119131178,-0.0028906918596476,-0.063933044672012],[-0.12400428205729,-0.011963018216193,-0.05023979395628]],[[0.0079941423609853,-0.098710954189301,-0.051562078297138],[0.012782410718501,-0.085290059447289,-0.059471976011992],[0.030501089990139,0.019138295203447,0.086540855467319]],[[-0.044702347368002,0.13910050690174,0.03864998370409],[-0.026553547009826,0.025232333689928,-0.13528230786324],[-0.10913023352623,-0.050091829150915,-0.09224920719862]],[[-0.18167559802532,0.037078909575939,0.027353368699551],[-0.018674189224839,0.040769692510366,-0.07139889895916],[-0.076258614659309,0.07886379212141,-0.032623253762722]],[[0.00066640059230849,-0.046514995396137,-0.092388428747654],[-0.0084676155820489,-0.01055721566081,0.002392215654254],[0.026462787762284,0.025895545259118,-0.1103119328618]],[[-0.14198230206966,-0.023774413391948,0.032297637313604],[0.0032358272001147,-0.056780725717545,0.014255334623158],[0.046437200158834,-0.086137801408768,-0.12535725533962]],[[0.056000493466854,-0.022049229592085,-0.08460433781147],[0.092751808464527,-0.017646988853812,0.021383248269558],[-0.067059457302094,-0.069740884006023,-0.037354402244091]],[[-0.13021890819073,-0.0052123460918665,0.21721123158932],[-0.029322724789381,-0.058555774390697,-0.089532077312469],[-0.027788581326604,0.13263113796711,0.15494035184383]],[[0.044077154248953,-0.082026906311512,0.045175787061453],[0.011105465702713,-0.091412171721458,-0.0028356753755361],[-0.073870800435543,-0.055715974420309,0.19202543795109]],[[0.044244822114706,0.018063195049763,-0.058338209986687],[-0.0031276326626539,0.058924023061991,-0.039162278175354],[-0.017631977796555,0.036212857812643,-0.0035377761814743]],[[-0.016931898891926,-0.053290698677301,-0.18342390656471],[0.046872463077307,-0.045507531613111,-0.088641814887524],[-0.047243624925613,0.014907379634678,-0.16274605691433]],[[0.0028200012166053,-0.027642184868455,-0.034937098622322],[0.12058037519455,-0.015360306017101,0.037262555211782],[-0.032906904816628,-0.10512915253639,-0.046051986515522]],[[-0.11228720098734,-0.12256310880184,-0.0033553573302925],[-0.051532611250877,-0.028047420084476,0.0029937638901174],[0.045087829232216,-0.07168872654438,-0.1071794629097]],[[-0.14728562533855,-0.018092382699251,0.0019389921799302],[-0.0066571016795933,-0.055287592113018,0.040511757135391],[-0.057964242994785,-0.053703334182501,-0.012535216286778]],[[0.045961726456881,0.10632068663836,0.02851677313447],[-0.12355503439903,-0.0058153038844466,-0.076353490352631],[0.19168339669704,-0.025125537067652,-0.14400535821915]],[[-0.032762415707111,0.017082629725337,0.012618527747691],[0.024925269186497,-0.05608568713069,-0.12664537131786],[-0.035533890128136,0.045484635978937,0.029018985107541]],[[-0.0060703563503921,-0.08764711022377,0.026348786428571],[-0.18630093336105,0.041113510727882,-0.013538437895477],[-0.071017235517502,-0.072575211524963,-0.016927976161242]],[[-0.053300734609365,-0.067218400537968,0.073171980679035],[-0.098141297698021,-0.046456828713417,-0.056349623948336],[-0.15951877832413,-0.22594884037971,0.061253614723682]]],[[[0.098412409424782,0.021951561793685,0.052366759628057],[-0.061108183115721,0.057017650455236,0.026811936870217],[-0.17408013343811,-0.043323840945959,-0.0029299086891115]],[[0.11155170947313,0.031139049679041,0.067638568580151],[0.17139488458633,0.05456693097949,0.066825799643993],[0.17160871624947,0.067669883370399,0.12066853791475]],[[0.017947252839804,-0.034889649599791,-0.052712108939886],[0.021725535392761,0.077926836907864,0.038996517658234],[-0.10272966325283,-0.016381524503231,0.054415509104729]],[[-0.024461422115564,0.05688238888979,0.020220315083861],[0.029647078365088,0.055960670113564,-0.092720687389374],[-0.025007387623191,-0.040944222360849,0.0094995805993676]],[[-0.026854772120714,0.073300220072269,0.036310441792011],[-0.011693378910422,0.050999775528908,0.097651086747646],[-0.011201212182641,0.058503869920969,0.14447510242462]],[[0.017108971253037,-0.0072372946888208,0.011112014763057],[0.050487529486418,-0.050363522022963,-0.030887771397829],[-0.0015201250789687,-0.00010150894377148,-0.027710890397429]],[[-0.035764861851931,0.020948622375727,-0.011788362637162],[0.028291258960962,0.026615399867296,-0.027653085067868],[-0.025096165016294,0.075286068022251,-0.012625751085579]],[[-0.023896770551801,-0.063577018678188,-0.013413175940514],[0.070454128086567,-0.077876761555672,0.012928572483361],[0.11453574895859,0.012533913366497,-0.014836731366813]],[[-0.078823409974575,-0.038532476872206,0.059679888188839],[-0.0010912113357335,-0.022003648802638,0.0052055129781365],[-0.007490296382457,0.051285978406668,0.031140623614192]],[[-0.064255863428116,0.04998367652297,-0.012598403729498],[-0.038235232234001,-0.0066113430075347,0.012781085446477],[0.056419461965561,-0.059154961258173,0.018792169168591]],[[-0.01814310438931,-0.046324919909239,-0.1173425540328],[0.090004198253155,0.0072642788290977,-0.03528693690896],[0.094480864703655,0.060146123170853,0.063237823545933]],[[-0.029912075027823,0.059412557631731,-0.036417484283447],[0.065604567527771,-0.0045093656517565,-0.062245275825262],[0.075737200677395,-0.018516669049859,-0.048327397555113]],[[-0.033778309822083,0.074567012488842,-0.0047719432041049],[0.017235910519958,-0.017601018771529,0.0071556000038981],[-0.16020199656487,0.055493403226137,0.051391083747149]],[[-0.015750927850604,-0.031674306839705,-0.0097626941278577],[0.0026310763787478,-0.024983709678054,0.027850918471813],[0.038746513426304,-0.024385107681155,0.049335606396198]],[[0.010180618613958,-0.015122790820897,0.15252968668938],[-0.008723720908165,0.081424035131931,0.026056546717882],[0.071536660194397,0.052537903189659,0.077235944569111]],[[-0.005744110327214,0.025516826659441,0.0019203237025067],[0.030374899506569,0.017389979213476,0.033261265605688],[-0.05095486342907,-0.012396926060319,-0.010258477181196]],[[-0.035327982157469,-0.042351134121418,0.030599100515246],[0.011045634746552,-0.00763956643641,-0.036582224071026],[0.13091933727264,-0.0047377403825521,-0.032109193503857]],[[0.017045980319381,-0.024720385670662,-0.031270831823349],[-0.033080980181694,0.00146633409895,0.056631043553352],[0.0060389381833375,0.0098065668717027,-0.041878309100866]],[[0.00968312099576,-0.054623827338219,0.037358943372965],[0.016642170026898,0.20400311052799,0.12154447287321],[-0.1054996997118,-0.019648974761367,-0.13874624669552]],[[0.063038200139999,-0.043145887553692,-0.0012749714078382],[0.055505461990833,-0.020060079172254,-0.013552064076066],[-0.0068604471161962,0.10292717069387,-0.0077226455323398]],[[-0.015393985435367,0.056960001587868,-0.023613223806024],[0.011106028221548,-0.038700640201569,-0.0075612082146108],[-0.028931764885783,0.034071464091539,-0.0087906839326024]],[[0.038649000227451,-0.027060141786933,-0.0073676630854607],[-0.065865345299244,-0.078147120773792,0.081169880926609],[0.033735021948814,-0.019586222246289,0.035518851131201]],[[-0.019155524671078,-0.010884921997786,-0.010026606731117],[0.017795592546463,-0.022257598116994,0.064681850373745],[0.054698813706636,-0.06038224697113,-0.040410634130239]],[[0.016373235732317,0.049226358532906,0.0076839667744935],[-0.00095826468896121,-0.03493982180953,-0.079961352050304],[0.0096688671037555,-0.0031177087221295,0.019749149680138]],[[-0.088120430707932,0.042013499885798,-0.0081621119752526],[-0.074384912848473,-0.037705067545176,0.027398193255067],[-0.04096781462431,0.04388539493084,0.11888590455055]],[[0.041291955858469,-0.0007312148809433,-0.081750176846981],[-0.052997019141912,0.023874716833234,-0.00090406450908631],[0.056402739137411,0.021040333434939,0.0066006709821522]],[[-0.090277597308159,-0.13218586146832,-0.030218141153455],[-0.11466508358717,-0.11589668691158,-0.10834092646837],[-0.066996872425079,-0.16921749711037,-0.0372707657516]],[[0.025444203987718,-0.027397722005844,0.011099207215011],[-0.010532787069678,0.0012524898629636,-0.032567672431469],[-0.11216568946838,0.063847504556179,0.054698549211025]],[[-0.031952917575836,-0.022415766492486,0.018235139548779],[-0.0032013703603297,0.094613380730152,-0.0626560151577],[-0.044653359800577,0.012592448852956,0.089027129113674]],[[-0.035446006804705,-0.10594312846661,-0.065088339149952],[-0.088080331683159,-0.21079696714878,-0.13242994248867],[-0.13889230787754,-0.19873839616776,-0.046545006334782]],[[-0.032565336674452,0.0090711917728186,-0.034963347017765],[0.1018623560667,0.098856158554554,-0.031048370525241],[-0.0066993958316743,0.031728588044643,-0.12472729384899]],[[0.02682638540864,0.019603339955211,0.01677243039012],[0.12660250067711,-0.068864405155182,-0.019881565123796],[0.086302034556866,-0.08473627269268,-0.14660510420799]]],[[[0.09699385613203,-0.016849147155881,0.0044355313293636],[0.023623691871762,0.020118540152907,-0.062972106039524],[-0.067472651600838,0.03911105170846,0.010354058817029]],[[-0.046194270253181,-0.068590685725212,0.10413589328527],[0.023008512333035,0.10165280848742,0.06200410053134],[0.055616054683924,-0.02069916203618,-0.014215353876352]],[[0.1128254532814,0.16885656118393,-0.011824899353087],[-0.064251482486725,0.021754715591669,-0.015203353948891],[-0.062446136027575,0.16039572656155,-0.03651176020503]],[[0.15854245424271,-0.13223011791706,-0.10578452050686],[-0.044824939221144,0.12193153053522,-0.069300755858421],[-0.083104886114597,-0.0081249279901385,-0.053353168070316]],[[0.0028828580398113,-0.022171694785357,-0.001969438046217],[0.010539151728153,-0.038797497749329,0.049763172864914],[0.058318726718426,-0.12154217809439,0.0099738230928779]],[[-0.050683043897152,0.07958211004734,-0.10014148801565],[0.046221040189266,-0.00078138633398339,0.089026406407356],[0.010549563914537,-0.11162530630827,-0.12698189914227]],[[-0.11290891468525,-0.023944800719619,-0.33213326334953],[-0.028581256046891,0.079127751290798,0.038259666413069],[-0.056652996689081,0.088209465146065,-0.054880078881979]],[[-0.10172665864229,0.1399230659008,0.14097459614277],[-0.13444748520851,0.050380773842335,-0.21402862668037],[-0.0052145500667393,0.086944475769997,-0.096118584275246]],[[0.1258610188961,-0.17053435742855,-0.10162744671106],[-0.07231579720974,-0.077262617647648,-0.079525634646416],[0.032193019986153,-0.079901896417141,-0.087731868028641]],[[0.065497696399689,-0.059197794646025,-0.086220599710941],[-0.092216812074184,-0.0046599698252976,-0.025987349450588],[0.09130984544754,-0.019388215616345,0.056895423680544]],[[-0.11905819922686,-0.025106133893132,-0.10913486778736],[-0.19509190320969,0.11380015313625,0.16406856477261],[-0.028404975309968,-0.04798074811697,0.041714929044247]],[[0.059234280139208,0.11688569933176,0.067470602691174],[-0.13641402125359,-0.025895193219185,-0.12121741473675],[-0.13396047055721,0.0040796035900712,-0.067573450505733]],[[0.010952996090055,0.083129465579987,0.12622451782227],[-0.23125632107258,-0.13290823996067,-0.080928139388561],[0.020415686070919,0.041826941072941,-0.0452422760427]],[[0.016658456996083,-0.094521544873714,-0.3015408217907],[0.0010619973763824,-0.14698569476604,0.0055584628134966],[-0.073112346231937,-0.043738637119532,-0.055379092693329]],[[-0.010796948336065,-0.051119420677423,0.14316189289093],[0.035045456141233,-0.03329374268651,-0.024229573085904],[-0.042779259383678,-0.026250569149852,0.055155452340841]],[[0.052459690719843,-0.13284157216549,-0.0018368368037045],[0.0021984630730003,-0.032135583460331,0.17195875942707],[-0.084636248648167,-0.087253049015999,0.031084721907973]],[[0.055293992161751,0.070318162441254,0.12416955083609],[-0.08481453359127,-0.063681803643703,-0.057010315358639],[-0.099231138825417,0.10055093467236,-0.24865998327732]],[[-0.08869381248951,0.025238832458854,0.16954119503498],[-0.13081039488316,-0.076373398303986,0.013455956242979],[-0.016344489529729,0.024707904085517,0.009833425283432]],[[-0.045843183994293,0.10973173379898,-0.060740619897842],[-0.10011471807957,-0.036366753280163,0.071451239287853],[0.06245306879282,-0.124621078372,-0.042924530804157]],[[-0.093111492693424,0.038615878671408,0.055629827082157],[-0.087949655950069,0.088778309524059,-0.0089667057618499],[-0.10502374172211,-0.11847819387913,-0.056546583771706]],[[0.025137247517705,-0.0024652653373778,0.11048272252083],[0.036741632968187,0.020950108766556,-0.089519292116165],[0.052218426018953,0.10212200134993,0.00023451553715859]],[[-0.058402564376593,-0.035077467560768,-0.063909202814102],[-0.036286897957325,0.0083248587325215,-0.19666755199432],[0.062369745224714,0.031830821186304,0.22431813180447]],[[0.10182601213455,-0.094000436365604,-0.020381482318044],[0.090581156313419,0.04375109821558,0.12366837263107],[-0.20417991280556,0.054214458912611,0.038362622261047]],[[-0.16126355528831,-0.18819591403008,-0.028199212625623],[-0.16128240525723,0.041807986795902,-0.0028695641085505],[0.080292023718357,-0.025238303467631,0.020812526345253]],[[-0.11635267734528,-0.061486214399338,0.20809616148472],[-0.05385860055685,0.029428653419018,0.11493231356144],[-0.03957786783576,-0.073210410773754,-0.074897326529026]],[[-0.010902888141572,-0.0080163395032287,-0.051753018051386],[-0.0067810397595167,0.029137924313545,-0.07109971344471],[0.090194970369339,0.029553441330791,0.006449431180954]],[[0.065760873258114,-0.079257413744926,0.030534191057086],[-0.036671884357929,0.067039303481579,-0.023848563432693],[0.019603874534369,0.017001459375024,0.013421066105366]],[[0.11820778995752,-0.2544179558754,-0.22858271002769],[0.2028603553772,0.13142344355583,0.00083000084850937],[0.11087789386511,-0.035044383257627,0.028926206752658]],[[-0.014448657631874,0.13186712563038,0.088537126779556],[-0.035515606403351,0.025443464517593,-0.063642472028732],[-0.082299679517746,-0.034605961292982,-0.30463463068008]],[[0.11000262200832,-0.037082329392433,-0.077708557248116],[0.033365122973919,0.0034155319444835,-0.065251871943474],[-0.032919444143772,-0.0584019087255,0.028112953528762]],[[-0.17269019782543,-0.0057507511228323,0.11149538308382],[0.049390401691198,0.051227957010269,0.016343405470252],[-0.16365775465965,-0.057555250823498,-0.081388145685196]],[[0.022581942379475,0.079714149236679,0.15607649087906],[-0.1262763440609,-0.03388474136591,-0.14712215960026],[-0.0065043116919696,-0.1020679846406,0.12397781759501]]],[[[-0.061059735715389,-0.24802212417126,0.025010917335749],[-0.18890604376793,0.037205085158348,-0.15807940065861],[-0.15518771111965,0.027161391451955,0.16445516049862]],[[-0.08793942630291,0.052099268883467,-0.034642018377781],[0.034911941736937,-0.030003121122718,0.061871375888586],[-0.062949799001217,0.0099925277754664,0.090139098465443]],[[-0.0086899753659964,0.14118173718452,0.1449748724699],[-0.0051596970297396,-0.081845656037331,-0.087875343859196],[-0.047292001545429,-0.065223336219788,-0.053270351141691]],[[0.13009350001812,0.018406311050057,-0.062770500779152],[0.012345992960036,0.16054546833038,0.024844083935022],[-0.027290046215057,-0.1977966427803,0.13261915743351]],[[-0.056842587888241,0.038884334266186,-0.030592679977417],[-0.079546675086021,-0.12691423296928,-0.027470827102661],[0.046309936791658,-0.027558103203773,-0.00023256552231032]],[[0.17048271000385,0.025863358750939,-0.049943789839745],[0.069206736981869,-0.12077920138836,-0.00489705754444],[-0.17550009489059,0.096527069807053,0.048509437590837]],[[0.11727029085159,-0.175706833601,-0.0084897372871637],[-0.045433443039656,0.12414092570543,0.16783271729946],[0.076055750250816,-0.19393137097359,0.21845659613609]],[[0.018641747534275,-0.0093949381262064,-0.0015445135068148],[-0.042862839996815,0.053302269428968,-0.0099112391471863],[-0.083217702805996,0.2406989634037,0.027544226497412]],[[-0.088378675282001,-0.032063722610474,-0.046963267028332],[0.0047368668019772,0.025173326954246,0.02468971721828],[0.062803529202938,0.02418739721179,0.057510934770107]],[[-0.061046611517668,0.072715811431408,-0.012268187478185],[-0.04555257409811,-0.022473240271211,-0.21963521838188],[0.044203761965036,-0.042525820434093,0.16995629668236]],[[-0.069274008274078,-0.10969199240208,0.021902158856392],[-0.11233735829592,-0.04559113457799,0.014862090349197],[-0.20632675290108,0.022015320137143,0.060040231794119]],[[-0.030554933473468,-0.056982975453138,0.098184272646904],[0.035881649702787,0.098616734147072,-0.14708051085472],[0.087138377130032,0.22253893315792,-0.14830476045609]],[[-0.23442047834396,-0.015303757973015,-0.17977069318295],[-0.036416124552488,0.074512667953968,-0.031697168946266],[0.051495101302862,0.13283415138721,0.2320394963026]],[[0.075793720781803,-0.11052518337965,-0.040894381701946],[-0.04308720305562,-0.15500640869141,-0.037839390337467],[0.11704030632973,0.02284543029964,0.050729185342789]],[[-0.011055070906878,0.021995067596436,-0.047965031117201],[0.047421425580978,-0.079957388341427,-0.01208891812712],[0.00094614300178364,0.021680645644665,0.04020357131958]],[[-0.03756158798933,0.078666895627975,-0.073891431093216],[0.073373571038246,-0.03685250133276,-0.033266253769398],[-0.22973923385143,-0.043594256043434,0.25913152098656]],[[0.1038438975811,-0.016526704654098,0.034620527178049],[0.038499470800161,0.017944097518921,0.070354849100113],[0.016701072454453,-0.021757885813713,0.073253214359283]],[[-0.088280655443668,0.027719849720597,0.13170838356018],[-0.086622081696987,-0.12381002306938,0.11926005780697],[0.084853336215019,-0.025496900081635,-0.1297403126955]],[[-0.087903864681721,-0.010398408398032,-0.057019993662834],[0.068313054740429,0.048994194716215,-0.25646790862083],[0.057354155927896,-0.062895320355892,-0.2467041015625]],[[-0.065825782716274,-0.079265795648098,0.019820442423224],[-0.050689820200205,0.057839721441269,-0.026723444461823],[0.087112061679363,-0.22224287688732,-0.018756164237857]],[[-0.11173241585493,0.038496751338243,0.12220533937216],[0.032874874770641,0.025322388857603,0.10085960477591],[0.071418933570385,0.06005809083581,0.038750484585762]],[[-0.17334848642349,0.15389096736908,0.055314004421234],[-0.031605251133442,0.078564323484898,-0.12925070524216],[-0.050727479159832,-0.13610391318798,0.15946207940578]],[[-0.020389487966895,0.14421544969082,-0.10873010754585],[-0.057263612747192,0.11875725537539,0.0095117306336761],[0.15528619289398,-0.069673910737038,-0.0025692170020193]],[[0.0026759861502796,-0.10355664044619,-0.026938177645206],[-0.043284319341183,0.052606396377087,0.075807213783264],[-0.01721897162497,-0.13092467188835,-0.055498275905848]],[[-0.087991401553154,-0.025400998070836,-0.084279090166092],[-0.0050966939888895,-0.040789745748043,0.031182862818241],[-0.0018171042902395,-0.010738322511315,-0.036604657769203]],[[0.067707359790802,0.094532907009125,0.055853512138128],[-0.00014174026728142,-0.13361524045467,-0.10502959042788],[0.067028693854809,-0.11897304654121,0.056052070111036]],[[0.11950506269932,0.088284462690353,-0.074342012405396],[-0.078311495482922,-0.036916889250278,-0.065740868449211],[-0.069710046052933,-0.0083584161475301,0.034090638160706]],[[0.10148070007563,-0.026846872642636,-0.0093802884221077],[0.088187009096146,-0.02473739720881,0.12898071110249],[0.050963055342436,-0.1815383285284,0.047519139945507]],[[0.037320580333471,0.016102572903037,-0.047947522252798],[0.022041434422135,-0.06434853374958,0.092640697956085],[0.11526323854923,0.12167267501354,-0.077315278351307]],[[0.065322190523148,0.022329250350595,-0.091326415538788],[-0.1058939024806,0.068773575127125,0.027571216225624],[0.045091286301613,-0.02999503351748,0.06857605278492]],[[-0.070106334984303,-0.044690456241369,0.038512948900461],[-0.16252863407135,-0.021202325820923,-0.13875651359558],[-0.036207687109709,-0.0016411184333265,0.065265081822872]],[[-0.33998933434486,-0.033881559967995,0.045996099710464],[-0.092507496476173,-0.048485670238733,0.015682036057115],[-0.12021611630917,-0.11556328833103,-0.048791795969009]]],[[[-0.081884257495403,-0.097143813967705,-0.010354960337281],[0.039297286421061,-0.014500456862152,-0.066855356097221],[-0.0025210808962584,-0.075327582657337,-0.0039689736440778]],[[0.061004541814327,-0.005726212169975,-0.027257552370429],[-0.034458123147488,0.022046715021133,-0.01128061953932],[0.0062808622606099,-0.033678386360407,-0.026462087407708]],[[-0.0021759499795735,0.03314820304513,-0.072860926389694],[0.035217229276896,-0.110824175179,0.016918987035751],[-0.032187219709158,0.05253242701292,0.0088520618155599]],[[-0.018401186913252,0.046342819929123,0.042962651699781],[-0.29283118247986,-0.1791056394577,-0.056874673813581],[0.078263185918331,0.18718698620796,0.0018248544074595]],[[-0.071771033108234,-0.045934580266476,0.052305370569229],[0.026128150522709,0.001485770335421,0.012687136419117],[0.074321411550045,0.047816354781389,-0.07324094325304]],[[-0.031952571123838,-0.04059287160635,0.14483857154846],[-0.11448037624359,0.13026167452335,0.024787127971649],[-0.075161121785641,-0.079386465251446,0.17070418596268]],[[-0.11366094648838,0.20614303648472,0.012065534479916],[-0.18619312345982,-0.0010924417292699,-0.025601387023926],[-0.26149550080299,-0.078950524330139,-0.1801679879427]],[[-0.017820743843913,0.088491067290306,-0.037411253899336],[-0.21149410307407,-0.14128252863884,0.078294262290001],[-0.13767158985138,0.15744252502918,0.1318499147892]],[[-0.085745602846146,0.0069936881773174,0.020788745954633],[-0.049140382558107,0.01567636243999,0.13799591362476],[0.06034229695797,0.095336243510246,-0.017164429649711]],[[-0.088404439389706,0.11909580230713,-0.010638913139701],[-0.10042376816273,0.12866009771824,-0.013273765332997],[-0.18106137216091,0.04308970272541,0.043716002255678]],[[0.074000626802444,0.046263456344604,0.026376895606518],[-0.048135492950678,-0.0074418224394321,-0.048442140221596],[-0.15544256567955,0.024720137938857,0.12743933498859]],[[0.084466829895973,0.084211148321629,0.046106144785881],[-0.021153597161174,0.079504735767841,0.043918367475271],[-0.053877018392086,0.065192192792892,0.10795031487942]],[[-0.080130159854889,0.15374307334423,0.038377713412046],[-0.096877917647362,-0.0014729903778061,-0.075144603848457],[0.027403252199292,0.060926266014576,0.02605053409934]],[[-0.003098449902609,0.0032021093647927,0.018386043608189],[-0.050821386277676,-0.021588973701,0.0025327694602311],[0.013464237563312,0.14203023910522,0.17988881468773]],[[0.0082394815981388,-0.018474178388715,0.033217769116163],[0.1105382964015,-0.060714170336723,-0.017944768071175],[0.052608743309975,-0.0078971050679684,-0.079354859888554]],[[0.055454734712839,-0.069809906184673,0.10091371834278],[0.045160904526711,-0.12556309998035,0.019007323309779],[0.051104325801134,0.059909697622061,0.080580092966557]],[[-0.003224628046155,0.081023275852203,0.1023163497448],[0.058892473578453,-0.11095348000526,-0.056284252554178],[-0.065492495894432,-0.23230703175068,-0.086134359240532]],[[-0.029035590589046,0.049882866442204,0.020206382498145],[-0.0049250815063715,0.044773619621992,0.0035833064466715],[-0.084339089691639,0.097680486738682,-0.088383249938488]],[[-0.040104907006025,-0.012292583473027,-0.12077539414167],[-0.080118946731091,-0.062054321169853,0.016608817502856],[0.052133101969957,-0.02766496129334,0.20602618157864]],[[-0.057577099651098,-0.011100678704679,-0.0049248980358243],[-0.03362438082695,-0.080483220517635,-0.00083689123857766],[-0.11939070373774,-0.0078142946586013,0.079521864652634]],[[0.048818700015545,0.07828563451767,-0.049842890352011],[-0.011116073466837,-0.075128614902496,-0.078078523278236],[-0.13252231478691,-0.043517410755157,-0.03997003287077]],[[0.084195554256439,0.17919011414051,0.01662122271955],[0.094298213720322,-0.08909709751606,0.12737902998924],[0.026279777288437,-0.10308941453695,-0.055716447532177]],[[-0.059237439185381,-0.034505821764469,0.025728086009622],[0.12864997982979,-0.014615737833083,-0.027211749926209],[0.017503930255771,0.10763195157051,0.053947325795889]],[[0.091651320457458,-0.083705142140388,0.082878045737743],[0.10565336048603,-0.039695486426353,-0.059496037662029],[-0.26491346955299,-0.082833737134933,0.033412855118513]],[[0.0091631831601262,-0.0455412119627,-0.022012043744326],[-0.023717738687992,-0.050481829792261,0.0073150089010596],[0.0056072850711644,-0.14285019040108,-0.040311634540558]],[[0.01520206592977,-0.057001251727343,-0.050806298851967],[-0.080934010446072,0.053593743592501,-0.0042262100614607],[-0.11250754445791,-0.11431197822094,0.097678661346436]],[[-0.019007006660104,-0.022435467690229,-0.0033114501275122],[-0.023163825273514,0.046686075627804,-0.011118085123599],[-0.0043360721319914,0.032084371894598,0.085353381931782]],[[-0.043558765202761,-0.12164299935102,-0.17047247290611],[-0.025244981050491,-0.068220265209675,-0.013164857402444],[0.19140602648258,-0.16273221373558,-0.1367576867342]],[[-0.1256247907877,-0.022541472688317,-0.030686113983393],[0.025749931111932,0.085483655333519,-0.019231615588069],[0.12767179310322,0.043678373098373,0.15701462328434]],[[0.031468886882067,0.010972999036312,0.0051105506718159],[-0.15843684971333,-0.029095936566591,0.10462784767151],[0.072345688939095,0.035881299525499,-0.013222253881395]],[[-0.11432319879532,0.013199970126152,-0.071531012654305],[-0.055087704211473,0.077600203454494,0.043614074587822],[-0.098258122801781,0.19224961102009,-0.14040422439575]],[[-0.036143537610769,0.041579280048609,0.0073052044026554],[-0.086638137698174,-0.095941059291363,0.00049286347348243],[0.10701258480549,0.0495367012918,0.12301647663116]]],[[[0.1019564345479,0.050963401794434,0.045467019081116],[-0.0279954187572,-0.12075383216143,0.13496288657188],[0.036751955747604,-0.015911815688014,-0.094293102622032]],[[0.03089415282011,-0.063020907342434,-0.0017957984237],[0.084332354366779,0.028388926759362,-0.030712332576513],[0.005591609980911,0.038477901369333,0.012410440482199]],[[0.10093933343887,0.046910133212805,0.045972727239132],[-0.0077038980089128,0.15346120297909,0.051784973591566],[0.010730852372944,0.07191539555788,-0.17273190617561]],[[0.062118418514729,-0.075343236327171,-0.082919217646122],[-0.029662542045116,-0.27721753716469,0.32022079825401],[0.050347283482552,-0.068478003144264,0.19441089034081]],[[-0.072429031133652,-0.0074580372311175,0.10427987575531],[-0.093586757779121,0.017848623916507,-0.048442982137203],[-0.027217801660299,0.067384667694569,-0.0023963339626789]],[[-0.068909667432308,0.10306749492884,0.11616279929876],[-0.063042834401131,-0.020556146278977,-0.13743527233601],[-0.053363606333733,-0.03238969668746,-0.075620703399181]],[[-0.12708348035812,-0.021179853007197,-0.075194969773293],[-0.12099301815033,0.0063989493064582,0.0056392578408122],[0.087992891669273,0.032634634524584,0.040857005864382]],[[0.19122458994389,0.032430749386549,0.11108902841806],[-0.022983713075519,-0.14036057889462,-0.056969050318003],[0.044877622276545,0.032099805772305,-0.07806221395731]],[[-0.075362205505371,-0.10151897370815,0.12314566224813],[-0.075330659747124,0.045443948358297,-0.05606497824192],[-0.071870051324368,0.034793339669704,-0.25239354372025]],[[0.16054947674274,0.088716991245747,0.20912609994411],[0.033895179629326,-0.17197355628014,0.051735911518335],[-0.076796926558018,-0.075271874666214,-0.10281825065613]],[[-0.017981749027967,-0.0069564124569297,0.054364554584026],[0.019364543259144,0.086894631385803,-0.077291265130043],[0.023734590038657,-0.1692061573267,-0.029614621773362]],[[-0.13874372839928,-0.067542843520641,-0.020581917837262],[-0.011302491649985,-0.077977627515793,-0.17430227994919],[-0.19683822989464,-0.081808835268021,-0.10788852721453]],[[0.036720030009747,-0.10663911700249,0.093102402985096],[-0.051882181316614,0.095441311597824,0.087098889052868],[-0.021406061947346,-0.12473624944687,-0.11221385747194]],[[-0.0027503594756126,-0.1395255625248,-0.090386904776096],[0.0024158998858184,-0.14702141284943,0.066734537482262],[-0.0063730031251907,-0.067614637315273,-0.16252802312374]],[[-0.018200742080808,-0.032270710915327,0.085546895861626],[-0.05319806188345,0.093532882630825,-0.07226550579071],[-0.015245870687068,0.040310341864824,-0.077812820672989]],[[-0.036786608397961,0.081082470715046,0.044962830841541],[-0.097552232444286,0.01478866674006,0.058548036962748],[-0.25637665390968,-0.0047884164378047,-0.029587158933282]],[[0.050327010452747,0.047268599271774,0.069399707019329],[-0.023083796724677,-0.0046754064969718,-0.03516298905015],[-0.10151624679565,-0.045530784875154,0.053430676460266]],[[-0.18438650667667,0.04523691162467,-0.1560014039278],[-0.029211556538939,0.06153529509902,0.13596679270267],[-0.0082309832796454,-0.095625251531601,-0.27273115515709]],[[-0.082042835652828,-0.29601937532425,-0.34378829598427],[-0.12372650951147,0.01725297421217,0.0034497601445764],[0.0017582022119313,0.07787624001503,0.035020921379328]],[[-0.019931150600314,0.20122864842415,-0.025944624096155],[-0.14420093595982,0.054043602198362,-0.034881789237261],[-0.16424804925919,-0.18366740643978,-0.1748853623867]],[[0.034770704805851,-0.035201959311962,0.034018378704786],[-0.037463005632162,-0.080334469676018,-0.049417894333601],[-0.1360742598772,-0.13779248297215,0.11407963931561]],[[0.044091623276472,0.10627176612616,0.032349497079849],[-0.049254838377237,0.046209529042244,-0.014996257610619],[0.013899611309171,0.041133511811495,-0.1556424498558]],[[-0.21851049363613,0.060525517910719,-0.010084710083902],[-0.076828062534332,0.040506828576326,0.095248356461525],[0.011410753242671,-0.087208442389965,0.036609638482332]],[[0.13879600167274,0.16239054501057,0.15101338922977],[-0.16416583955288,0.015378310345113,-0.058278821408749],[0.14017373323441,-0.10998369008303,-0.09141880273819]],[[-0.1247528642416,-0.10117243975401,0.081586770713329],[0.0048787645064294,-0.0086644040420651,-0.056068375706673],[-0.047791812568903,-0.02035341411829,-0.19113291800022]],[[0.076633609831333,0.13313031196594,0.10383793711662],[-0.024961704388261,-0.10025258362293,-0.031845599412918],[-0.080280236899853,-0.055522248148918,0.031843990087509]],[[-0.048335429280996,0.055284380912781,-0.026539722457528],[-0.062630549073219,-0.10318613797426,-0.022608308121562],[-0.058029852807522,0.017788041383028,0.034282956272364]],[[0.022867616266012,-0.10570126771927,-0.21165595948696],[-0.13870035111904,-0.059423290193081,-0.057909697294235],[0.018037401139736,0.052662868052721,0.03112980723381]],[[-0.0097740972414613,-0.12543918192387,0.080142311751842],[-0.083850376307964,-0.017584957182407,-0.25045505166054],[0.034956615418196,-0.14459440112114,-0.20216071605682]],[[0.047849971801043,0.036846973001957,-0.17989611625671],[0.027230069041252,-0.027701010927558,0.034883420914412],[-0.04937519133091,-0.12184764444828,0.02835032530129]],[[0.033984243869781,0.16736535727978,0.19244457781315],[-0.044651415199041,0.0363396294415,-0.042553842067719],[-0.061006590723991,-0.015417035669088,0.011219836771488]],[[0.11465462297201,0.11348566412926,-0.0080895638093352],[-0.1347268819809,-0.013303165324032,0.076271936297417],[-0.038746111094952,0.096204742789268,-0.015918534249067]]],[[[-0.051737044006586,-0.077789701521397,0.04060286283493],[-0.080785125494003,-0.12856660783291,0.024753971025348],[-0.024326480925083,-0.0038269141223282,0.080424733459949]],[[-0.0054134926758707,0.0010757182026282,-0.071746222674847],[-0.0099711390212178,-0.052396934479475,0.059157375246286],[-0.011998360976577,-0.010968610644341,0.08670412749052]],[[0.063328124582767,-0.0773751065135,-0.061619382351637],[0.090847335755825,0.090479828417301,-0.036082491278648],[0.13980229198933,0.111931219697,0.023152722045779]],[[-0.041393749415874,0.015612598508596,-0.055189047008753],[-0.019777512177825,-0.016402160748839,-0.054096668958664],[-0.056609727442265,0.014147245325148,0.11956641823053]],[[-0.0025226064026356,-0.026165708899498,-0.094374395906925],[0.032933048903942,-0.013730015605688,-0.089624531567097],[0.057053755968809,-0.037686217576265,-0.0055044405162334]],[[-0.025904478505254,0.011028077453375,-0.05032292380929],[0.034397765994072,-0.065668560564518,-0.019094120711088],[-0.065671764314175,0.033222783356905,-0.075642570853233]],[[-0.13268481194973,-0.0083204712718725,0.015945680439472],[0.075169213116169,-0.08755137771368,0.098268888890743],[-0.063907936215401,0.064649984240532,-0.020866421982646]],[[0.070773981511593,-0.10634133964777,0.051011279225349],[-0.017566697672009,0.023582322522998,-0.090229012072086],[-0.029630616307259,0.031824972480536,0.091058135032654]],[[0.00019824360788334,0.055511452257633,-0.046715918928385],[0.023766307160258,-0.0096623403951526,-0.012360439635813],[0.082405783236027,-0.02766477316618,0.051546763628721]],[[-0.037516221404076,-0.10998250544071,-0.023798456415534],[0.034919448196888,0.11377135664225,-0.01786133646965],[0.02223732508719,0.00113694393076,-0.06679929047823]],[[0.098026491701603,0.15199375152588,0.0096105244010687],[0.041831567883492,-0.015952337533236,-0.090549908578396],[0.0062249517068267,0.044120144098997,-0.070936039090157]],[[0.025664353743196,0.069178007543087,-0.085770152509212],[0.018417974933982,-0.025324072688818,0.052503511309624],[-0.043525863438845,-0.14491999149323,0.21381695568562]],[[0.095782704651356,-0.19400364160538,-0.024690374732018],[0.22737376391888,0.059237118810415,0.019992271438241],[-0.060834608972073,0.1385709643364,-0.050640158355236]],[[0.046436198055744,0.014925451949239,-0.029463984072208],[0.012343824841082,-0.11024658381939,-0.043189071118832],[-0.063778653740883,-0.038115110248327,-0.048404954373837]],[[-0.010266683995724,0.0085261883214116,-0.017088200896978],[0.022166641429067,-0.06229817122221,0.047572065144777],[-0.016469974070787,0.037057723850012,-0.065223142504692]],[[0.15118113160133,0.081667616963387,-0.01447681710124],[-0.019887924194336,-0.10009766370058,0.17499443888664],[0.056689485907555,0.090436205267906,-0.016717489808798]],[[-0.09130185842514,-0.039158970117569,-0.078295081853867],[-0.009210892021656,0.12333598732948,-0.073705859482288],[-0.071086078882217,0.11517482250929,0.082474172115326]],[[-0.11521126329899,-0.018489124253392,-0.099402815103531],[-0.15538354218006,0.050152506679296,0.0057087112218142],[-0.044573333114386,-0.01552933268249,-0.054580383002758]],[[0.11842372268438,0.0080580208450556,-0.099103070795536],[-0.0495860055089,-0.10225444287062,-0.13192880153656],[-0.046546142548323,-0.061681535094976,-0.034324005246162]],[[-0.076026901602745,-0.071501210331917,-0.070730745792389],[0.051545429974794,0.036197945475578,-0.059264987707138],[-0.12505024671555,0.045044910162687,0.041591484099627]],[[-0.012853015214205,0.014175684191287,0.024615848436952],[-0.094676099717617,0.021902423352003,0.073975324630737],[-0.004396881442517,0.0067752720788121,-0.092884220182896]],[[-0.10657819360495,-0.0088142585009336,0.029298666864634],[0.041080038994551,0.052670862525702,0.0053216135129333],[-0.14387257397175,0.068406790494919,0.037352126091719]],[[-0.0058858972042799,0.024593744426966,0.18993923068047],[0.11956185102463,0.13299649953842,0.011509962379932],[0.052694797515869,-0.061816785484552,0.049619901925325]],[[-0.0078521426767111,0.020808409899473,-0.062786236405373],[-0.0029591652564704,0.022687740623951,-0.049922119826078],[-0.070241175591946,-0.14542596042156,0.059848669916391]],[[-0.0097989849746227,-0.082123808562756,-0.1681582480669],[-0.039320450276136,-0.15291029214859,0.040486697107553],[0.069172330200672,-0.076367393136024,-0.0081331701949239]],[[-0.034785997122526,0.1607331931591,0.081176750361919],[0.10720429569483,-0.074669308960438,-0.00054744037333876],[-0.1569232493639,-0.098084919154644,0.040829859673977]],[[0.048488300293684,0.10345503687859,-0.022838493809104],[0.013675906695426,-0.016316387802362,-0.086511448025703],[-0.048962641507387,-0.0050423559732735,-0.031321130692959]],[[-0.076311640441418,0.1756377518177,-0.037916164845228],[-0.17063868045807,1.3254459190648e-05,-0.029958561062813],[-0.015890693292022,0.12505243718624,-0.085653237998486]],[[-0.0089842705056071,-0.10922741889954,-0.061163138598204],[-0.013869780115783,-0.029409637674689,0.12846867740154],[-0.010195665992796,-0.16238510608673,0.017121097072959]],[[0.073310784995556,0.064564242959023,0.18820735812187],[0.021076755598187,-0.056652940809727,0.025695271790028],[-0.087898448109627,0.068837903439999,-0.075545005500317]],[[0.14462468028069,0.0068460777401924,0.09721203148365],[-0.071057952940464,-0.11424987763166,-0.0016188735608011],[-0.17469105124474,0.06866479665041,0.010946562513709]],[[-0.085073120892048,0.01737373508513,-0.025082476437092],[-0.19854931533337,-0.028801523149014,0.014266120269895],[-0.1422351449728,0.0016690432094038,-0.027728645130992]]],[[[0.044983901083469,0.12534219026566,-0.27854761481285],[-0.16510458290577,-0.029477171599865,-0.18858186900616],[0.041829194873571,0.031085265800357,-0.092970959842205]],[[-0.075413011014462,0.11937221884727,-0.094289258122444],[0.015233043581247,-0.027805708348751,-0.087406054139137],[0.16617879271507,-0.045727763324976,-0.0058000758290291]],[[0.017781307920814,0.070109859108925,-0.039795346558094],[-0.034680489450693,0.15230937302113,0.0032337009906769],[-0.075472071766853,0.031726736575365,0.095551058650017]],[[0.016894076019526,-0.010249675251544,-0.00021830596961081],[0.12802910804749,-0.21773724257946,-0.03843679651618],[-0.10563819855452,-0.013322919607162,0.20396248996258]],[[0.1304258108139,0.0067146690562367,-0.032805915921926],[-0.017465323209763,0.034615248441696,0.0098563898354769],[-0.036168128252029,0.089871868491173,0.061270907521248]],[[0.0014878713991493,0.05817212164402,-0.3047336935997],[-0.097497284412384,0.102324411273,-0.221579387784],[0.10278129577637,0.12202787399292,-0.15504981577396]],[[-0.11069495975971,0.16543638706207,-0.030820203945041],[0.055357605218887,-0.044789001345634,0.081678465008736],[0.035910177975893,-0.092962227761745,-0.097091637551785]],[[0.1620586514473,0.11538735032082,-0.37753367424011],[-0.025640884414315,0.084869123995304,0.17873999476433],[-0.017986120656133,-0.0044466610997915,-0.11286414414644]],[[0.014893700368702,-0.084752336144447,0.041236564517021],[-0.048296362161636,-0.0090775340795517,0.073697350919247],[-0.027847161516547,-0.059374194592237,0.026728387922049]],[[-0.034119706600904,-0.030475165694952,-0.20399388670921],[0.025943443179131,-0.046938605606556,-0.21657362580299],[0.11624246090651,0.067864082753658,0.030407475307584]],[[-0.048865143209696,0.094686225056648,-0.034290306270123],[0.0070956009440124,-0.13192769885063,-0.021545642986894],[0.0016422148328274,0.15399654209614,-0.089132249355316]],[[-0.10161881893873,0.06854584813118,0.077490702271461],[0.019967472180724,-0.068767793476582,0.048761196434498],[0.015441299416125,-0.021090822294354,-0.053109597414732]],[[0.076921053230762,0.080789349973202,-0.33115527033806],[0.084334492683411,-0.20363447070122,-0.29282203316689],[-0.042354930192232,-0.16186359524727,-0.073163315653801]],[[0.1499854773283,-0.02235553227365,-0.045884598046541],[-0.056743446737528,-0.1628293544054,-0.0011264490894973],[0.006248586345464,-0.072204612195492,0.070185489952564]],[[0.028837034478784,0.029111931100488,-0.024784920737147],[-0.016905894502997,0.10023517161608,-0.023177353665233],[0.019075833261013,-0.054278369992971,-0.052972819656134]],[[-0.12256705015898,-0.010881193913519,-0.079326219856739],[-0.14758668839931,0.14660109579563,0.047556594014168],[-0.081609852612019,0.042388621717691,0.084338307380676]],[[-0.083562716841698,-0.012679294683039,0.063458435237408],[0.005086530931294,-0.092650912702084,0.070194944739342],[-0.014021824114025,-0.10271132737398,-0.19397515058517]],[[0.044308457523584,0.077239342033863,-0.11586973071098],[-0.038969077169895,-0.0045496067032218,-0.12407719343901],[0.097834020853043,0.056411307305098,0.040576376020908]],[[0.032300762832165,0.016003619879484,-0.11599110066891],[-0.07235923409462,0.108697719872,-0.0096821216866374],[-0.11970411241055,0.20097064971924,0.11119909584522]],[[0.019533894956112,-0.25707051157951,0.038742605596781],[0.11131132394075,-0.00029703936888836,-0.061848018318415],[0.037386257201433,0.0085561061277986,-0.036963474005461]],[[-0.1038726195693,0.041844204068184,0.11084681749344],[0.1055400967598,0.026509808376431,0.076042540371418],[0.051952473819256,0.037939466536045,-0.039106950163841]],[[-0.03154543414712,0.083068840205669,0.1054268181324],[0.042948558926582,0.0064158560708165,0.0067050377838314],[0.073855869472027,0.0076644322834909,-0.032751027494669]],[[-0.19428446888924,-0.10607977956533,0.20722143352032],[0.15330612659454,0.11679417639971,-0.068962290883064],[-0.062516964972019,-0.030823836103082,0.017920881509781]],[[0.086272850632668,-0.052705220878124,0.013646000996232],[-0.00051396671915427,-0.025089612230659,-0.092360563576221],[0.12675321102142,-0.19853729009628,-0.19636176526546]],[[0.0097762336954474,0.05934115499258,-0.13063874840736],[-0.088407270610332,-0.082281433045864,-0.21606622636318],[0.01425932534039,-0.091253094375134,0.024566693231463]],[[-0.14069254696369,0.042613003402948,0.0099438298493624],[-0.062810339033604,-0.075083799660206,0.041729468852282],[0.16682228446007,0.068644128739834,0.10209555923939]],[[0.022031685337424,0.0037876120768487,-0.0010407317895442],[-0.026729257777333,-0.0070258337073028,0.041103951632977],[-0.061949409544468,0.021307019516826,0.059925373643637]],[[-0.052934713661671,0.043953187763691,0.023203741759062],[0.11128320544958,-0.13024416565895,-0.17002663016319],[0.11049095541239,-0.17560651898384,-0.18224506080151]],[[0.22286131978035,-0.14666631817818,-0.1483305990696],[-0.0052975662983954,0.040426824241877,-0.034058410674334],[-0.13856564462185,0.1092252805829,0.037751421332359]],[[-0.011469630524516,0.1139250472188,0.030893398448825],[-0.015902675688267,-0.00051921792328358,-0.0079780891537666],[-0.18624883890152,0.0011530590709299,0.013284021057189]],[[-0.17205154895782,-0.0021371035836637,0.098643265664577],[-0.070535756647587,-0.010991060175002,0.0084212739020586],[-0.12258613109589,0.047163859009743,-0.031267166137695]],[[-0.0076697925105691,-0.045813456177711,0.051037665456533],[-0.022165756672621,-0.036067802459002,-0.07301514595747],[-0.18181574344635,-0.10684815049171,0.0081533659249544]]],[[[-0.007731914985925,-0.1035385876894,0.038200173527002],[-0.067526593804359,0.053682658821344,0.06203319132328],[-0.081922896206379,-0.036809768527746,-0.028606733307242]],[[-0.053952232003212,0.041795533150434,0.00092989474069327],[0.12340631335974,0.0065408344380558,-0.062685161828995],[0.098346658051014,0.0078168725594878,0.018858866766095]],[[0.032074473798275,-0.22130116820335,-0.015100970864296],[0.022855354472995,0.039318896830082,0.062776550650597],[0.1005911231041,-0.13976499438286,-0.070634894073009]],[[0.083085127174854,0.0047768205404282,-0.13554926216602],[-0.10266026109457,0.15722022950649,0.2013982385397],[-0.16808822751045,0.08069121837616,-0.058498688042164]],[[0.011515432037413,0.011160342022777,-0.04417160153389],[-0.05813530087471,0.12022861838341,0.030998529866338],[0.072502546012402,-0.056533470749855,-0.12517647445202]],[[0.031777020543814,-0.14571379125118,-0.014343297109008],[0.033417169004679,-0.006456624250859,-0.16006734967232],[0.062584757804871,0.11021940410137,-0.043562464416027]],[[-0.056917171925306,0.04242916405201,-0.032265949994326],[-0.056642029434443,0.052110802382231,0.04824598133564],[-0.022576523944736,0.066575758159161,0.087149895727634]],[[-0.3632764518261,0.072416819632053,0.012642941437662],[-0.21644294261932,-0.0052522765472531,0.083799928426743],[-0.42888176441193,-0.062674626708031,0.043223351240158]],[[0.0099549759179354,-0.021790189668536,-0.020153088495135],[-0.10395732522011,-0.066899321973324,-0.072929218411446],[0.12191908061504,0.03275104239583,-0.17289707064629]],[[0.010438261553645,0.14811609685421,-0.057862486690283],[-0.0093821436166763,-0.059642933309078,-0.14755260944366],[0.050872337073088,-0.050710327923298,0.211047783494]],[[0.010912980884314,0.060499455779791,0.06053464859724],[-0.12299363315105,-0.013481019064784,-0.038859348744154],[-0.0095763420686126,0.065189093351364,-0.13751590251923]],[[-0.29623013734818,0.064895749092102,-0.011865800246596],[-0.084816113114357,-0.087432749569416,-0.036267355084419],[0.0097089139744639,0.19238157570362,0.10530392080545]],[[-0.3062641620636,0.033651627600193,0.021442668512464],[-0.1221906542778,-0.064307101070881,-0.054253123700619],[-0.075137674808502,-0.039743196219206,0.057569112628698]],[[-0.091879785060883,0.041865039616823,0.074513450264931],[-0.045118641108274,0.045589167624712,0.1476416438818],[-0.080476142466068,-0.17917256057262,-0.082471646368504]],[[0.063929848372936,-0.093276128172874,-0.08725293725729],[0.021028108894825,0.069500803947449,0.0088845752179623],[-0.017031824216247,0.038556590676308,-0.0039096125401556]],[[0.062283657491207,0.087869234383106,-0.087342657148838],[0.072192378342152,0.0025059019681066,0.14437948167324],[-0.043114449828863,-0.061050515621901,0.018762724474072]],[[-0.048442889004946,-0.080288574099541,-0.09347877651453],[-0.013309921137989,-0.16817116737366,0.081399112939835],[0.034357242286205,-0.08783120661974,0.004369268193841]],[[0.020186252892017,0.027753185480833,-0.093242257833481],[0.053173445165157,-0.098107025027275,-0.01850762590766],[0.19176176190376,0.081080570816994,-0.18072171509266]],[[0.12195363640785,0.052022241055965,-0.030263870954514],[0.10679171979427,0.029569594189525,-0.051747817546129],[-0.12489188462496,-0.023582490161061,-0.063900999724865]],[[0.016654714941978,0.018578821793199,-0.13778474926949],[0.0097241960465908,0.032649982720613,-0.077813133597374],[-0.053427185863256,0.054680988192558,-0.0013996980851516]],[[-0.069450959563255,0.062534458935261,0.0057322182692587],[0.0049777454696596,-0.12691912055016,-0.17449282109737],[0.11665786057711,-0.016957839950919,-0.11904412508011]],[[0.014348336495459,-0.11134551465511,-0.06621953099966],[-0.061761155724525,-0.0024646394886076,0.019796147942543],[0.12811598181725,0.043972004204988,-0.013063844293356]],[[0.013586447574198,-0.064043916761875,-0.15450622141361],[0.12257283180952,0.035796280950308,0.040342565625906],[0.13296990096569,-0.02893160097301,-0.11533357948065]],[[-0.02290608920157,0.022178325802088,0.037509672343731],[-0.2189227193594,0.028830429539084,0.010026447474957],[-0.017557352781296,0.036798607558012,-0.048603389412165]],[[-0.14342710375786,-0.044599764049053,-0.0276307053864],[-0.0034588372800499,-0.050791632384062,-0.10681440681219],[-0.015368389897048,0.045038398355246,0.017180802300572]],[[0.0027778691146523,-0.032399196177721,-0.088959291577339],[-0.036044508218765,0.146817907691,0.0229726228863],[0.083194211125374,-0.11308021843433,0.044407479465008]],[[0.062521353363991,-0.0045293481089175,0.049909371882677],[-0.083450250327587,0.036229938268661,0.013289056718349],[-0.034880217164755,0.038379836827517,-0.049008026719093]],[[0.1238679215312,0.016642177477479,-0.21721766889095],[0.16978091001511,0.1022085621953,-0.065764062106609],[-0.046684298664331,-0.018874922767282,0.063521787524223]],[[-0.31047546863556,-0.2206866145134,0.023818533867598],[-0.1147823035717,-0.052051845937967,-0.02125209197402],[-0.012058326974511,0.092449240386486,0.068469621241093]],[[-0.0013234652578831,0.021538915112615,0.093455359339714],[-0.10084657371044,0.047791004180908,0.082469910383224],[-0.037094075232744,-0.033663291484118,0.021847164258361]],[[-0.017324632033706,-0.1008142977953,0.06828398257494],[0.026961183175445,-0.14069387316704,0.16866935789585],[-0.073324881494045,0.0045299772173166,-0.0027410655748099]],[[-0.071869648993015,0.040937557816505,0.026919500902295],[-0.015254100784659,-0.034436356276274,0.030699249356985],[0.035466834902763,-0.078279696404934,0.03281682357192]]],[[[0.019248560070992,-0.001326338853687,-0.15753626823425],[-0.11830542981625,-0.031491838395596,-0.35056173801422],[-0.058973930776119,0.037695869803429,0.012074686586857]],[[-0.062266543507576,-0.044218704104424,0.017066081985831],[-0.057934626936913,0.00020251703972463,-0.024946881458163],[-0.05534902215004,0.006911950185895,0.062599070370197]],[[0.026145432144403,0.083069406449795,0.05499317124486],[-0.14183637499809,0.0093326568603516,0.15151296555996],[0.022114243358374,-0.031639605760574,0.27875736355782]],[[0.18926319479942,-0.047375932335854,-0.1740465015173],[0.076367042958736,-0.086825951933861,0.019039541482925],[0.10516233742237,-0.16827447712421,0.045528240501881]],[[-0.070753432810307,-0.062318295240402,0.018400799483061],[0.018246956169605,0.033001724630594,0.026236061006784],[0.11057958751917,0.16557039320469,-0.058000613003969]],[[-0.12836357951164,-0.35782945156097,-0.18135498464108],[0.0021644090302289,-0.17733523249626,-0.18316133320332],[0.056366916745901,-0.039417427033186,-0.1122827231884]],[[0.071102768182755,-0.055143047124147,-0.28481101989746],[0.086719073355198,-0.0083068516105413,-0.23252435028553],[0.22932328283787,-0.0057831648737192,0.091787867248058]],[[-0.056264776736498,-0.11110505461693,0.060662344098091],[-0.17050929367542,0.15156158804893,0.044061750173569],[-0.038350779563189,0.14413890242577,-0.011081079952419]],[[0.10173156857491,0.067397616803646,0.095433063805103],[-0.037793070077896,0.027859976515174,-0.045346930623055],[0.010443012230098,0.040625315159559,0.073182672262192]],[[0.044314961880445,0.029570523649454,-0.2528423666954],[0.031036933884025,0.077131904661655,0.13525904715061],[-0.084490917623043,0.14051724970341,0.058028507977724]],[[-0.06503914296627,-0.031602792441845,-0.10995139181614],[-0.038617797195911,-0.10499563068151,-0.011460155248642],[-0.13592827320099,0.0070682559162378,-0.08027184009552]],[[0.020942091941833,-0.079314075410366,0.042947329580784],[0.10055375099182,-0.060750000178814,0.11568337678909],[0.16268634796143,-0.053273037075996,-0.089807115495205]],[[0.017703864723444,0.02596315741539,0.036400534212589],[-0.078844286501408,-0.030682194977999,-0.066298946738243],[-0.21988387405872,-0.030932722613215,0.010028215125203]],[[0.075628742575645,0.085510186851025,-0.10741852968931],[-0.31874620914459,-0.05608918145299,-0.043581049889326],[-0.058850143104792,-0.015997895970941,0.20213578641415]],[[0.051103971898556,-0.043499439954758,0.00090543023543432],[0.012752710841596,-0.067299887537956,0.01257982198149],[-0.082880169153214,-0.044153600931168,0.06661494076252]],[[-0.23617938160896,0.078975938260555,-0.16792915761471],[-0.064483769237995,0.080650195479393,-0.12553073465824],[0.16485193371773,0.12857812643051,-0.13008117675781]],[[0.085299752652645,-0.011157847940922,-0.12066815048456],[0.028697030618787,-0.015235317870975,0.043807972222567],[-0.074640154838562,-0.067045375704765,-0.011176227591932]],[[-0.12546728551388,0.031778734177351,-0.039650287479162],[-0.011605249717832,-0.017022660002112,-0.16311432421207],[-0.017810296267271,-0.068765163421631,0.16031792759895]],[[0.026952931657434,-0.1341585367918,-0.08112908154726],[-0.024120172485709,-0.015711363404989,-0.24499386548996],[0.06220456585288,-0.13166739046574,-0.21241833269596]],[[-0.124925352633,-0.12227761745453,-0.091509148478508],[0.02235303260386,0.10286785662174,-0.070687346160412],[-0.10594119876623,-0.069175630807877,0.06103977188468]],[[0.084099754691124,0.18639527261257,-0.011675281450152],[0.058184079825878,0.13700689375401,-0.21970430016518],[-0.2002092897892,0.020600402727723,-0.11537735909224]],[[0.10376542806625,-0.022568067535758,0.15455602109432],[0.0011248847004026,-0.22829848527908,-0.22934243083],[0.082201011478901,0.013397261500359,-0.35638856887817]],[[-0.038013517856598,0.066632822155952,0.064428798854351],[-0.15109460055828,0.074680291116238,0.18710626661777],[0.11616331338882,-0.066856004297733,0.059620182961226]],[[-0.12470560520887,0.073692739009857,0.077300548553467],[-0.048489965498447,-0.1193823069334,-0.042309027165174],[0.036462057381868,0.0033773640170693,0.061147265136242]],[[0.051386628299952,-0.014855042099953,-0.057257797569036],[-0.084250159561634,0.07372510433197,0.052157416939735],[-0.20521004498005,-0.20679050683975,-0.15005168318748]],[[0.10727199167013,0.17378950119019,-0.12925858795643],[-0.015546998009086,0.022584391757846,-0.038210686296225],[0.063235960900784,0.14512248337269,0.22138993442059]],[[-0.0056320480071008,0.053566362708807,-0.061668042093515],[-0.016608061268926,0.047871317714453,0.0077701294794679],[-0.1226746737957,-0.040495559573174,0.039126362651587]],[[0.066043443977833,-0.033644493669271,0.011176640167832],[-0.077107794582844,-0.003662868635729,-0.14811785519123],[0.044205199927092,0.062743477523327,-0.15203201770782]],[[-0.051372855901718,-0.04120622202754,0.23120169341564],[0.085933983325958,0.0045454991050065,-0.059319548308849],[-0.036072857677937,0.18545144796371,0.24668483436108]],[[0.17458149790764,-0.00086755346274003,0.051104504615068],[0.088149741292,-0.086796060204506,-0.10132666677237],[0.05257299169898,-0.066964715719223,-0.042171496897936]],[[-0.15538120269775,0.16485244035721,0.02733557112515],[-0.071934029459953,-0.073516570031643,-0.10550614446402],[-0.15235389769077,-0.024166245013475,-0.09902985394001]],[[0.025097664445639,-0.031114928424358,-0.1320589184761],[0.067623734474182,0.025982977822423,-0.19086734950542],[-0.18029703199863,-0.10723149776459,0.2471430003643]]],[[[-0.14677110314369,0.0042074639350176,-0.12594565749168],[0.0954824462533,-0.12675531208515,0.025083549320698],[0.059048812836409,0.064172759652138,0.10058637708426]],[[0.068785898387432,0.014577636495233,-0.074619330465794],[0.052948396652937,-0.074452124536037,-0.090487934648991],[0.040297161787748,-0.086216151714325,0.011214334517717]],[[0.15619520843029,-0.018882801756263,0.073054037988186],[0.020507795736194,0.080971777439117,-0.083986960351467],[-0.061487901955843,-0.055002007633448,-0.037645079195499]],[[0.03089758194983,0.097510479390621,0.19992235302925],[-0.060881767421961,0.0026889040600508,-0.16362164914608],[-0.0096762469038367,-0.030855551362038,0.033555913716555]],[[0.058777298778296,0.081758320331573,-0.050626020878553],[0.02386312931776,0.15251205861568,0.04942175000906],[-0.044833276420832,0.089265763759613,-0.036315955221653]],[[-0.052623942494392,0.021604424342513,-0.2312485575676],[0.02254237793386,-0.16013996303082,-0.09478548169136],[0.040836539119482,-0.0052124606445432,0.060980930924416]],[[-0.098860837519169,0.12023090571165,-0.12591126561165],[0.0023537529632449,0.0092215575277805,-0.018237164244056],[0.018396845087409,0.065954960882664,-0.05817436799407]],[[-0.16950157284737,0.15192157030106,-0.0059482427313924],[-0.03773008286953,0.0037547543179244,-0.022321991622448],[0.072088368237019,-0.025092117488384,-0.0076416754163802]],[[0.043714214116335,0.048400569707155,-0.056681808084249],[-0.021187162026763,0.15798629820347,-0.085563585162163],[0.057563193142414,0.036802373826504,-0.025363013148308]],[[0.04818494990468,-0.0074402233585715,-0.076354153454304],[0.043148338794708,0.024489155039191,-0.02294965274632],[-0.012336293235421,-0.10552928596735,0.21962647140026]],[[-0.023064188659191,-0.02214365825057,0.072048805654049],[-0.010403056629002,-0.12607850134373,0.045248631387949],[-0.097911804914474,-0.10301254689693,0.028017414733768]],[[0.037803314626217,0.008608584292233,0.0432308614254],[0.17208243906498,-0.058426346629858,0.094414867460728],[0.1807863265276,0.034448646008968,-0.029960813000798]],[[0.049012329429388,-0.081542782485485,-0.10288304835558],[-0.041615281254053,-0.22858573496342,0.064085200428963],[0.00081410224083811,-0.18407174944878,0.094317175447941]],[[-0.0001778757723514,0.0112129682675,0.066328279674053],[-0.0025624183472246,-0.021756270900369,-0.018051579594612],[0.14472377300262,-0.10028723627329,-0.011580523103476]],[[0.081336908042431,-0.015017793513834,-0.024972585961223],[-0.023454457521439,-0.028142979368567,0.027372730895877],[-0.076056368649006,-0.0087729142978787,0.014511320739985]],[[0.08903756737709,-0.025352844968438,-0.056141119450331],[-0.1172561943531,0.04930767044425,-0.0088464329019189],[-0.08558264374733,-0.0082529447972775,-0.051492404192686]],[[-0.04852270334959,0.0094399657100439,0.089042261242867],[0.014336445368826,-0.01841408573091,-0.015679934993386],[-0.21205525100231,0.10141644626856,-0.069695971906185]],[[0.017598181962967,-0.085571192204952,0.003218526719138],[-0.073763005435467,0.18759132921696,-0.078544571995735],[0.15077064931393,-0.021567242220044,-0.22133737802505]],[[0.057970009744167,-0.06853724271059,-0.050851963460445],[0.035523317754269,-0.10442171990871,0.093291975557804],[0.00013183534611017,0.091166041791439,-0.059307787567377]],[[0.053356729447842,-0.00084680697182193,0.11957139521837],[-0.0098478002473712,0.07961592823267,-0.038183327764273],[0.010097317397594,-0.083704590797424,-0.050043180584908]],[[0.083301305770874,0.098760843276978,-0.076355285942554],[0.024121288210154,0.010542680509388,-0.045113854110241],[-0.063853323459625,-0.12747959792614,-0.14431677758694]],[[-0.027716260403395,0.13452640175819,-0.058691747486591],[0.10275573283434,0.089115373790264,-0.030084427446127],[-0.17086488008499,0.027291964739561,-0.11604715883732]],[[0.19291244447231,0.26084393262863,0.15580722689629],[0.14922189712524,0.0031929661054164,-0.056073222309351],[-0.16516576707363,0.092861086130142,-0.26030278205872]],[[-0.10403522849083,-0.051637895405293,-0.072397314012051],[0.023170499131083,-0.014179884456098,-0.036065727472305],[0.084339745342731,-0.025533007457852,-0.082615852355957]],[[0.0097928931936622,0.077911980450153,-0.048892121762037],[-0.06216574087739,-0.007373571395874,-0.094405189156532],[0.039050657302141,-0.1437107026577,0.085322044789791]],[[-0.063206441700459,-0.024039998650551,0.13737379014492],[0.11168942600489,-0.15526774525642,0.055805902928114],[0.1666634529829,-0.11479733139277,-0.10244295746088]],[[-0.11770480126143,0.092228010296822,-0.0098890019580722],[-0.099584825336933,0.011959177441895,0.085886642336845],[-0.028944261372089,-0.076920792460442,-0.02553385682404]],[[-0.13175384700298,-0.17027831077576,0.19346231222153],[-0.092375941574574,-0.050749104470015,0.13957744836807],[-0.066921092569828,0.02363364957273,0.093139864504337]],[[0.107008934021,-0.01551628857851,0.1680021584034],[0.13058325648308,-0.058405909687281,-0.014366630464792],[-0.070093363523483,-0.076442800462246,-0.15817427635193]],[[0.14162236452103,0.1349849998951,0.058679975569248],[-0.038952000439167,0.013011096045375,0.1396811902523],[-0.03885605558753,0.024431452155113,-0.024281429126859]],[[0.03208364918828,-0.024072911590338,-0.14919631183147],[-0.0042567178606987,-0.0027833781205118,0.12468557059765],[-0.065107323229313,-0.095042079687119,0.030550181865692]],[[-0.23768861591816,-0.10190745443106,-0.019397489726543],[0.0086245331913233,-0.090180531144142,-0.086750090122223],[0.096574172377586,0.060742575675249,0.15385088324547]]],[[[-0.063611328601837,0.0034239999949932,0.067071177065372],[-0.10462472587824,0.014397295191884,-0.060672931373119],[0.033004675060511,0.0025972644798458,0.059913050383329]],[[0.051525514572859,0.0065492745488882,-0.010701399296522],[0.056997265666723,-0.038765180855989,0.046365167945623],[0.020893795415759,-0.02655323036015,0.12508855760098]],[[-0.21720799803734,-0.044845744967461,-0.073866188526154],[0.015187839977443,0.11501351743937,0.075481675565243],[0.11254009604454,-0.1771803945303,0.15218475461006]],[[0.064936436712742,-0.0014408706920221,-0.0032802897039801],[-0.061024654656649,-0.047838967293501,-0.12977935373783],[0.055904351174831,0.12640129029751,0.037400539964437]],[[0.016935560852289,0.015276356600225,-0.084562301635742],[0.080110743641853,-0.031009482219815,-0.054467752575874],[-0.080732025206089,-0.072310745716095,-0.070355415344238]],[[0.087382465600967,0.17285072803497,-0.17016640305519],[-0.1198819950223,0.16295742988586,-0.20069314539433],[-0.10521133244038,0.02044759131968,-0.12712922692299]],[[0.15533326566219,0.076751545071602,-0.11383200436831],[0.088815279304981,-0.046387687325478,0.099912166595459],[0.15474742650986,0.029281428083777,-0.22211404144764]],[[0.032120108604431,-0.026593368500471,0.026520928367972],[0.075162649154663,0.042699933052063,-0.019392507150769],[0.18048815429211,-0.0021943072788417,-0.11120928823948]],[[-0.13459442555904,0.003187668742612,-0.0085873818024993],[-0.12257438153028,-0.036188680678606,-0.046706166118383],[-0.0074193621985614,0.10725692659616,0.03524861112237]],[[0.025326954200864,-0.065450608730316,-0.16880090534687],[0.07850955426693,0.023892967030406,0.027195936068892],[-0.077927358448505,-0.068608023226261,-0.098499782383442]],[[-0.047624051570892,0.024667650461197,0.15442316234112],[-0.030779372900724,0.10961404442787,-0.0055282800458372],[0.12485786527395,-0.0099948821589351,-0.26486507058144]],[[-0.014461494982243,0.089015305042267,0.25485914945602],[-0.13264515995979,0.13996820151806,0.10275427252054],[0.062371715903282,0.15017782151699,-0.11176884919405]],[[0.024912504479289,-0.013937760144472,-0.2207465916872],[0.10022059082985,0.022677443921566,-0.2433969527483],[0.19486878812313,-0.061876941472292,-0.21988272666931]],[[-0.054058991372585,-0.019232586026192,0.10189188271761],[0.072032958269119,-0.019820567220449,-0.10454272478819],[0.032210610806942,-0.0014818656491116,-0.072296157479286]],[[0.093542546033859,-0.061561051756144,-0.044989109039307],[0.038559850305319,-0.056068565696478,-0.013761091046035],[0.014321423135698,-0.0081036761403084,0.0013345943298191]],[[-0.16492748260498,-0.14246812462807,0.35743829607964],[0.037245355546474,-0.020912880077958,-0.2294380068779],[-0.10719776153564,0.014339797198772,0.044409371912479]],[[-0.051314976066351,-0.21653462946415,-0.16707088053226],[0.0026241447776556,-0.08189145475626,0.087541826069355],[-0.066358789801598,-0.07752026617527,-0.071340277791023]],[[-0.06716663390398,-0.030537577345967,-0.053505193442106],[-0.12013977020979,0.11447442322969,-0.053072929382324],[-0.25798946619034,-0.099690966308117,-0.031695201992989]],[[-0.29658940434456,0.16901680827141,-0.086057148873806],[0.057032879441977,0.04805826023221,-0.04256983846426],[0.1304212808609,0.021854538470507,-0.010452635586262]],[[0.13662101328373,-0.18417136371136,0.010171266272664],[-0.0829161927104,-0.073114886879921,0.26364332437515],[0.20036861300468,-0.069150418043137,-0.21472585201263]],[[-0.075467318296432,0.015252877026796,-0.12884192168713],[-0.060852650552988,0.084442943334579,-0.13572676479816],[0.20247066020966,-0.010401076637208,-0.21541759371758]],[[-0.016934603452682,-0.035175733268261,-0.083761841058731],[0.0099690053611994,0.12322182953358,0.31069734692574],[0.04466113448143,-0.084972642362118,0.14619371294975]],[[0.1857685148716,0.14067335426807,0.050709865987301],[-0.15424993634224,-0.017365483567119,0.041931662708521],[-0.088681131601334,-0.047590497881174,0.20364013314247]],[[-0.04460645839572,-0.040816355496645,-0.089051753282547],[-0.095181927084923,0.064402095973492,-0.05748899653554],[0.13447347283363,0.030291190370917,-0.14056032896042]],[[-0.13586799800396,-0.046813875436783,-0.2049655765295],[-0.024673655629158,-0.049035873264074,0.0023667600471526],[-0.16947513818741,0.12711410224438,-0.055112421512604]],[[0.073346540331841,-0.10824482142925,-0.093934610486031],[-0.089458413422108,-0.12789191305637,0.077220693230629],[0.03499048948288,0.067939333617687,-0.0077907433733344]],[[0.074319660663605,0.02950357273221,-0.036385286599398],[-0.010561431758106,-0.029501859098673,-0.029948592185974],[-0.085045151412487,-0.0095086833462119,0.01584162004292]],[[0.017441630363464,-0.25497487187386,0.10606966912746],[0.058099154382944,0.079278752207756,0.034741476178169],[0.23685091733932,-0.095436662435532,-0.1225408539176]],[[-0.04061446338892,0.10855324566364,0.010178817436099],[0.16792471706867,-0.19768442213535,-0.075402304530144],[0.029007250443101,-0.25733414292336,-0.089136958122253]],[[0.0422726534307,0.025986652821302,0.12540605664253],[-0.078786075115204,0.028905285522342,-0.0097821615636349],[0.026679309085011,-0.015950353816152,-0.067125260829926]],[[-0.036479450762272,0.049170728772879,0.090228296816349],[-0.14016874134541,-0.030477840453386,0.16345486044884],[0.048533424735069,0.061971679329872,-0.1450994759798]],[[-0.293064057827,-0.1650732755661,0.094452351331711],[-0.067965902388096,0.039097327739,-0.1012559607625],[-0.017862692475319,-0.096016645431519,-0.21934512257576]]],[[[-0.22476950287819,-0.15849988162518,0.013643071986735],[-0.17446005344391,-0.14198195934296,0.059566404670477],[-0.042615998536348,0.28889319300652,0.026831988245249]],[[0.048699073493481,-0.074312657117844,-0.020876625552773],[-0.026538984850049,0.048183385282755,0.10155696421862],[-0.023573957383633,0.014589132741094,0.0041669020429254]],[[0.12027817964554,0.12516377866268,0.025213854387403],[0.087785817682743,-0.2397894859314,-0.046738412231207],[0.038206096738577,0.037650112062693,-0.039541475474834]],[[0.027712129056454,0.025709168985486,0.17437918484211],[0.017893088981509,0.11176685243845,-0.14219549298286],[-0.13412137329578,-0.070663176476955,-0.050747085362673]],[[0.026614693924785,-0.021894237026572,-0.12205001711845],[-0.035931315273046,-0.066227898001671,0.096954740583897],[0.059725228697062,0.10808096826077,-0.0078108245506883]],[[-0.094398215413094,0.020992673933506,0.048066422343254],[0.028591074049473,-0.14651764929295,-0.059496704488993],[0.14544367790222,0.10281385481358,0.067576870322227]],[[-0.14999780058861,-0.038421534001827,-0.03604893013835],[0.087136261165142,0.14768432080746,-0.17843641340733],[-0.030646871775389,-0.056677874177694,0.1096482872963]],[[0.22375766932964,0.042555503547192,-0.038296848535538],[-0.50525569915771,-0.11463335901499,-0.08852256834507],[0.19641925394535,0.12036883831024,0.019819566980004]],[[-0.021201891824603,0.084882780909538,0.12941385805607],[0.071589477360249,-0.046902999281883,-0.086118653416634],[-0.078744374215603,-0.10050643235445,0.087444342672825]],[[-0.12124134600163,0.11584138870239,0.062914684414864],[-0.20883551239967,-0.10059908777475,0.11916692554951],[0.20719587802887,-0.11987772583961,-0.10019402951002]],[[-0.19430585205555,0.0058699063956738,-0.085581861436367],[-0.12833334505558,-0.060965206474066,-0.030582241714001],[0.022248445078731,0.065094351768494,0.058439653366804]],[[0.11570185422897,-0.019031850621104,-0.0060695530846715],[-0.23075830936432,-0.033806841820478,-0.040548156946898],[-0.080043911933899,-0.0038188036996871,0.025044001638889]],[[-0.10949511826038,-0.001188172143884,-0.055022235959768],[-0.015770465135574,0.039115861058235,-0.067837975919247],[-0.13389317691326,-0.071207255125046,0.037412419915199]],[[-0.034068197011948,0.029759658500552,-0.20819239318371],[-0.034298285841942,0.02810131944716,0.018343295902014],[0.036350645124912,0.018697142601013,0.033941920846701]],[[-0.061816670000553,0.025936245918274,0.022679978981614],[-0.024364007636905,0.048541679978371,-0.040632847696543],[0.017029151320457,-0.09603538364172,0.078043609857559]],[[0.0038651369977742,0.019956527277827,0.010072881355882],[-0.042636554688215,-0.082567885518074,0.085575610399246],[0.26177269220352,-0.033669583499432,-0.11257506906986]],[[0.019051430746913,-0.046454403549433,-0.01572130061686],[-0.018351700156927,0.038551460951567,0.13162072002888],[-0.19178405404091,0.014770755544305,0.10652951896191]],[[-0.062300570309162,-0.053202118724585,0.060803171247244],[-0.15940117835999,0.07011316716671,0.047582026571035],[0.038509700447321,0.051377236843109,0.058506086468697]],[[0.064502380788326,-0.11894230544567,-0.1182604804635],[-0.037357226014137,-0.10824236273766,-0.0930100902915],[0.14386069774628,0.06480934470892,0.034270692616701]],[[-0.079367659986019,-0.084883898496628,0.10238961130381],[-0.059759832918644,0.080111928284168,-0.07879701256752],[-0.00044136046199128,-0.23658631742001,-0.1736723035574]],[[-0.13554626703262,0.064821027219296,-0.03764370828867],[-0.069752767682076,0.073818817734718,-0.14255511760712],[-0.11036601662636,0.0055028488859534,0.11487794667482]],[[-0.12004548311234,-0.15326224267483,-0.016024067997932],[0.02840225212276,0.1520654708147,0.22172996401787],[-0.18627026677132,-0.026829414069653,-0.15230499207973]],[[0.070990703999996,-0.0083836894482374,0.15839387476444],[-0.021883670240641,-0.07144933193922,0.026817549020052],[0.090009652078152,0.00095514336135238,-0.039834223687649]],[[0.073559068143368,0.035864759236574,-0.11302910000086],[-0.21340504288673,-0.24780917167664,-0.14804807305336],[-0.075334854424,0.016016066074371,-0.050957135856152]],[[-0.28099918365479,-0.17609286308289,0.00080402451567352],[-0.024194270372391,0.025069363415241,0.087365530431271],[0.08504444360733,-0.064502559602261,-0.053751014173031]],[[-0.15612451732159,-0.002510306192562,-0.10465863347054],[0.00025051055126823,-0.31160706281662,0.01476004999131],[0.080366522073746,0.026772174984217,-0.037237714976072]],[[-0.045221567153931,0.026832833886147,-0.013452679850161],[0.091866970062256,-0.079320147633553,0.069000475108624],[-0.011422384530306,0.012992239557207,0.018305584788322]],[[0.010668272152543,-0.15558438003063,0.08719690144062],[-0.16032738983631,-0.039857745170593,0.066896662116051],[-0.091378435492516,0.09226930141449,-0.066948167979717]],[[0.098932601511478,-0.089582212269306,-0.031399998813868],[0.030749078840017,-0.16391956806183,0.081195309758186],[0.13919645547867,0.026722015812993,0.03721210360527]],[[0.0081961452960968,-0.10042828321457,-0.021798372268677],[-0.0060707763768733,0.075815796852112,0.004957988858223],[0.0077865570783615,0.028380524367094,-0.13081683218479]],[[-0.013978031463921,0.10924315452576,0.017168899998069],[-0.010351303033531,0.015487938188016,-0.028090698644519],[0.1130259335041,-0.13222146034241,-0.12500908970833]],[[0.12085270881653,0.044465720653534,-0.053224049508572],[-0.027983460575342,0.045488268136978,0.10580457746983],[-0.12580396234989,-0.17886370420456,-0.041986372321844]]],[[[0.13845838606358,0.18381024897099,-0.065301217138767],[0.11079102754593,-0.072062395513058,0.10630824416876],[0.090616069734097,-0.12451498955488,0.019657790660858]],[[-0.12379883974791,0.069796733558178,0.011646116152406],[-0.15970085561275,0.092785134911537,-0.057985704392195],[-0.032111898064613,0.028907347470522,0.019885892048478]],[[0.091023303568363,-0.02222547121346,-0.039022386074066],[-0.055149350315332,0.095335245132446,0.17388105392456],[0.020914170891047,0.19490031898022,-0.10796222835779]],[[0.056198250502348,0.10194513201714,0.018737172707915],[0.063008382916451,-0.080774903297424,0.09737029671669],[0.051123030483723,-0.11088983714581,-0.0064422599971294]],[[0.15422961115837,0.15890409052372,0.04478245601058],[0.043909538537264,-0.049026060849428,0.09498518705368],[-0.057506497949362,-0.059248764067888,-0.038326721638441]],[[0.052280399948359,0.062285181134939,-0.0040986761450768],[0.15666837990284,-0.050429627299309,0.037357483059168],[-0.045942801982164,0.027346754446626,-0.11527759581804]],[[0.070956014096737,-0.039101995527744,-0.24917042255402],[0.11416907608509,0.010036219842732,0.051100395619869],[-0.12220830470324,-0.10837446153164,-0.035745907574892]],[[0.20549681782722,-0.27570381760597,-0.026674596592784],[0.20437604188919,0.11173710972071,0.19826501607895],[0.097327210009098,-0.015150530263782,0.055551525205374]],[[-0.025169789791107,0.0014944763388485,0.017723485827446],[-0.051891326904297,0.064676485955715,0.031778618693352],[0.033688303083181,-0.017900081351399,-0.15216460824013]],[[0.20999230444431,0.1623015999794,0.0039664683863521],[-0.16722400486469,-0.050099167972803,-0.076697207987309],[0.10206501185894,-0.23916818201542,0.0065018218010664]],[[-0.17242066562176,-0.0086975172162056,0.074845060706139],[0.040917810052633,-0.10199570655823,-0.065858587622643],[0.018817184492946,-0.20939603447914,0.039175130426884]],[[0.12853243947029,0.12821184098721,0.089749403297901],[-0.1017697006464,-0.14187280833721,-0.05098744109273],[0.11547985672951,-0.10722205787897,0.24707590043545]],[[-0.10246869921684,0.016517464071512,0.045368574559689],[0.012554454617202,-0.12777200341225,-0.057268403470516],[0.0755919739604,0.028255825862288,0.011677144095302]],[[0.067368313670158,-0.069176889955997,0.17767207324505],[0.054271548986435,-0.076729767024517,0.12365985661745],[0.12930162250996,-0.089614696800709,-0.040703129023314]],[[-0.058620125055313,0.020640809088945,-0.06997238099575],[0.059651620686054,0.10443234443665,0.0053642312996089],[0.072351597249508,-0.057001926004887,-0.054855901747942]],[[0.20993539690971,0.0266243070364,-0.057459726929665],[0.078026913106441,-0.006212861277163,0.15551571547985],[0.077580377459526,-0.026582449674606,-0.083802290260792]],[[-0.011471621692181,0.18374171853065,-0.19184802472591],[0.021610314026475,0.10234766453505,-0.13311819732189],[-0.0060264505445957,0.024694727733731,0.11818271130323]],[[-0.0061613325960934,0.093903958797455,0.089929506182671],[-0.12573689222336,0.024079555645585,-0.10664375126362],[-0.035406939685345,0.14821943640709,-0.14300544559956]],[[0.24152924120426,-0.051039520651102,-0.074063345789909],[-0.040954563766718,0.070090293884277,-0.086336269974709],[-0.21121676266193,0.023164931684732,-0.15657879412174]],[[0.14908310770988,0.022070595994592,0.029116339981556],[-0.032357927411795,0.25544887781143,-0.17433005571365],[-0.043936230242252,-0.0036735872272402,-0.1063112989068]],[[-0.08128646761179,-0.059394925832748,-0.019188072532415],[0.079859472811222,-0.056489992886782,0.0073866373859346],[-0.00010491294233361,0.014206867665052,0.027028555050492]],[[-0.016063096001744,-0.070261143147945,-0.19127203524113],[0.062936574220657,0.009171231649816,-0.024650117382407],[-0.077970758080482,0.064963199198246,-0.0032028742134571]],[[0.064202979207039,-0.0017920142272487,-0.18134646117687],[0.00178429891821,0.21539017558098,-0.065825283527374],[-0.17113046348095,0.091432094573975,-0.25927677750587]],[[0.080624453723431,0.09633082896471,0.021917654201388],[-0.041590057313442,0.059619255363941,-0.14015352725983],[-0.18937969207764,0.09406815469265,-0.1115607842803]],[[0.045748356729746,0.23543608188629,0.10943980515003],[-0.12525779008865,-0.17106181383133,-0.19604490697384],[0.045399282127619,-0.014795511960983,-0.06815379858017]],[[-0.027719762176275,0.027675187215209,-0.039485365152359],[-0.0084247039631009,0.1336548179388,-0.012207853607833],[-0.050852086395025,-0.066698513925076,-0.10351924598217]],[[-0.061088789254427,0.11131216585636,0.028627468273044],[-0.092888101935387,-0.0059225629083812,0.0063737602904439],[-0.0059201694093645,0.040098670870066,-0.071959778666496]],[[0.058245472609997,-0.15878382325172,-0.041034378111362],[0.15558335185051,-0.051787909120321,0.1064595580101],[0.063392795622349,-0.12449203431606,-0.0066971890628338]],[[0.11492571979761,-0.038005821406841,0.23009955883026],[0.00091456557856873,-0.041495051234961,-0.061574853956699],[-0.0054623959586024,-0.090717852115631,-0.022902853786945]],[[-0.044805999845266,-0.0076887207105756,0.015690980479121],[-0.016868826001883,0.027010928839445,-0.040756467729807],[0.01674029044807,0.03484944999218,-0.10486287623644]],[[-0.064225070178509,-0.058024063706398,-0.016956822946668],[0.057356480509043,-0.016345806419849,-0.075942389667034],[0.10249256342649,0.015136893838644,-0.087106376886368]],[[-0.048733357340097,0.026798700913787,0.085254654288292],[-0.0045113991945982,0.034195516258478,-0.071048088371754],[0.004837563727051,-0.033310726284981,-0.17269225418568]]],[[[0.079000607132912,0.04841049388051,-0.0076951440423727],[-0.13987474143505,-0.047685422003269,-0.058588221669197],[0.042635809630156,0.021292898803949,0.067618489265442]],[[0.036402594298124,0.074643209576607,0.07063814997673],[0.043508045375347,-0.027344269677997,-0.016429301351309],[-0.065320894122124,-0.018917880952358,0.061013024300337]],[[0.0098544731736183,-0.030647080391645,-0.050298556685448],[0.052262753248215,-0.024174891412258,0.050541993230581],[0.12398174405098,0.050471231341362,-0.097845859825611]],[[0.065441191196442,0.066597700119019,0.005030857399106],[0.030100706964731,-0.12546697258949,-0.041505709290504],[0.11490403115749,-0.018944108858705,0.013054702430964]],[[-0.032320324331522,0.034806951880455,-0.020299645140767],[0.018866717815399,-0.0026736313011497,-0.10464910417795],[-0.028380382806063,0.039617452770472,-0.021046064794064]],[[0.062253184616566,-0.13000068068504,-0.14456421136856],[0.077648222446442,0.11438754945993,0.12747836112976],[0.098450049757957,-0.094807110726833,-0.088571719825268]],[[-0.03301990032196,0.051287177950144,-0.14117068052292],[-0.20442795753479,0.025199968367815,-0.0042004995048046],[0.06951529532671,0.038710799068213,-0.16052109003067]],[[-0.13809697329998,0.11934335529804,-0.10821036994457],[-0.084780007600784,-0.12503150105476,0.067092724144459],[0.14394682645798,0.10982435196638,0.12168922275305]],[[-0.040799267590046,0.064883753657341,0.012528825551271],[0.08292468637228,-0.090644434094429,0.016658728942275],[-0.077643074095249,-0.051872085779905,-0.059823106974363]],[[-0.033872440457344,0.10875806957483,-0.014036706648767],[-0.14570732414722,-0.021925400942564,-0.046465896070004],[-0.10992190241814,-0.18279503285885,0.086271949112415]],[[-0.049425661563873,-0.11189863830805,0.089921601116657],[-0.046785816550255,-0.080978229641914,-0.047485675662756],[-0.11922576278448,-0.071503043174744,0.050738528370857]],[[-0.014376011677086,-0.066461585462093,-0.29554429650307],[-0.073835611343384,0.047668300569057,0.019655801355839],[-0.17310336232185,0.063353225588799,0.037670657038689]],[[0.083136215806007,0.15836352109909,-0.067754842340946],[0.044766016304493,-0.24920150637627,-0.062434684485197],[-0.013942894525826,-0.10802295804024,0.038415774703026]],[[-0.1213740631938,-0.067300654947758,0.09589096903801],[-0.0961859151721,-0.10201738029718,-0.10719253867865],[0.12303941696882,0.014885247685015,-0.10149730741978]],[[0.014987776987255,-0.063021436333656,0.0050567858852446],[0.084322661161423,0.021186042577028,-0.022417886182666],[-0.061312764883041,-0.07610522210598,0.026937624439597]],[[-0.014122628606856,-0.012824500910938,0.10088346898556],[0.025340331718326,-0.068539954721928,0.091186515986919],[-0.0074640209786594,-0.14260637760162,-0.23345863819122]],[[0.033590376377106,0.030160568654537,-0.11240699142218],[-0.081419035792351,-0.0094552785158157,-0.055181376636028],[-0.015670910477638,0.0025626900605857,0.099255569279194]],[[0.072867251932621,-0.00060583936283365,-0.067300520837307],[-0.018737867474556,0.012503313831985,0.020980186760426],[-0.021534323692322,0.037363227456808,0.02859328314662]],[[-0.031660079956055,0.026677979156375,0.047752402722836],[-0.0317412763834,0.040325649082661,-0.034971814602613],[0.095561288297176,0.01901507563889,-0.22861494123936]],[[-0.0034097214229405,0.044911772012711,-0.18071365356445],[-0.003610803745687,-0.04459323734045,-0.013727107085288],[-0.012163369916379,-0.1045805811882,-0.067055508494377]],[[-0.068173997104168,0.038513071835041,0.010438984259963],[0.067430607974529,-0.14198639988899,0.13315506279469],[-0.11773840337992,-0.11484803259373,0.075191214680672]],[[-0.14578105509281,-0.038982857018709,-0.10079570114613],[0.081212364137173,0.06502989679575,0.025395032018423],[0.1657527089119,-0.080342203378677,-0.21122989058495]],[[0.13114136457443,-0.049577966332436,0.0025238119997084],[-0.0037825230974704,-0.0091002909466624,-0.13528215885162],[-0.13039788603783,0.11195561289787,-0.013144595548511]],[[-0.19790937006474,-0.10423094779253,-0.080943211913109],[0.072715140879154,-0.10696351528168,-0.016986014321446],[0.078273937106133,0.062539517879486,-0.041423466056585]],[[-0.038559466600418,-0.01282358635217,-0.093583658337593],[-0.052966132760048,0.03057324886322,-0.085995227098465],[-0.083980143070221,0.076577454805374,-0.062613546848297]],[[-0.027614079415798,-0.16074925661087,-0.1300260424614],[-0.095022559165955,0.19062627851963,-0.020312782377005],[0.13880851864815,-0.16247476637363,-0.0042418865486979]],[[-0.041532404720783,-0.053196832537651,0.024438366293907],[0.038619767874479,0.063307352364063,0.0052867932245135],[0.02235497161746,0.063099086284637,-0.12999661266804]],[[0.004154656548053,0.1325322240591,0.056947492063046],[-0.063744954764843,-0.043976686894894,-0.178820759058],[-0.069401770830154,-0.052145298570395,0.027164872735739]],[[0.0005223840707913,0.092509485781193,-0.077258080244064],[0.06860326230526,-0.12221661955118,-0.036944285035133],[-0.059097420424223,-0.23475575447083,-0.072804190218449]],[[0.017213260754943,-0.032531198114157,0.03827266022563],[-0.071347422897816,-0.12237342447042,-0.0030824013520032],[-0.052199106663465,0.056073371320963,-0.05304567143321]],[[-0.080768793821335,-0.017068421468139,0.078851372003555],[-0.018295941874385,-0.16149519383907,0.10971272736788],[0.069114252924919,0.016557399183512,-0.10242679715157]],[[0.020487228408456,0.045502718538046,0.023635933175683],[0.063132956624031,-0.00532934255898,-0.080852903425694],[0.076009653508663,-0.1304194778204,-0.10094583034515]]],[[[0.02949989400804,0.16261810064316,-0.054622054100037],[-0.18109294772148,0.011677975766361,0.058752920478582],[0.028176952153444,0.15936335921288,0.042196843773127]],[[0.010539292357862,-0.025067852810025,0.010328591801226],[-0.053684648126364,-0.13923119008541,0.019707271829247],[0.03111751191318,0.097017057240009,0.11801003664732]],[[0.094799898564816,0.07250202447176,-0.0096234632655978],[0.066213816404343,0.22487622499466,-0.077991358935833],[0.012996488250792,-0.10179724544287,-0.070349276065826]],[[-0.017982058227062,-0.10310856997967,-0.091599225997925],[-0.02335506118834,0.15999093651772,0.061744596809149],[-0.048045378178358,-0.027126651257277,-0.020110923796892]],[[0.070682682096958,0.060612048953772,0.14016133546829],[-0.069810710847378,-0.01230526342988,0.039270706474781],[-0.054531950503588,0.016114572063088,0.012129647657275]],[[-0.039277117699385,0.065825708210468,-0.015823300927877],[0.028955953195691,0.091197371482849,0.016012804582715],[0.040065344423056,-0.041269887238741,0.049987446516752]],[[-0.14740279316902,0.11659644544125,-0.010952611453831],[-0.1294280141592,0.11820229887962,0.059167243540287],[0.12864455580711,-0.1093265414238,0.056585971266031]],[[0.013526291586459,-0.1825554817915,-0.21638816595078],[0.085293896496296,0.18287886679173,0.06240751221776],[0.074155084788799,-0.14292523264885,-0.056915245950222]],[[0.035147216171026,0.01904384419322,-0.022942738607526],[0.055274218320847,0.048285394906998,-0.1100912541151],[0.070726066827774,-0.025442158803344,0.0080746449530125]],[[-0.069395683705807,0.04473040252924,0.033002063632011],[-0.046542044728994,-0.080438420176506,-0.092273510992527],[0.19311946630478,0.027028391137719,0.028715088963509]],[[0.046942498534918,-0.07148739695549,0.049083568155766],[0.14739388227463,0.037511989474297,0.012131098657846],[0.052419040352106,0.0026173419319093,0.055561475455761]],[[-0.021138641983271,0.014685671776533,0.11914548277855],[-0.015391508117318,0.002181253163144,0.037743870168924],[0.069847412407398,0.019382789731026,0.011620737612247]],[[-0.064819470047951,0.027210917323828,0.063871890306473],[0.10765630751848,0.084604829549789,0.046561568975449],[-0.079288296401501,-0.11217507719994,0.080973759293556]],[[0.12801679968834,-0.13281932473183,0.0079686436802149],[0.039158545434475,-0.019540222361684,0.077734485268593],[0.069466546177864,-0.11396916955709,-0.093384124338627]],[[-0.042453020811081,-0.063175372779369,0.0011791767319664],[0.03376779332757,0.094126313924789,-0.0017411973094568],[-0.099993139505386,-0.0671426653862,0.013311781920493]],[[0.086113929748535,0.10460502654314,0.21738690137863],[0.069053940474987,-0.082892403006554,0.042734581977129],[-0.040560271590948,-0.20306801795959,-0.12664479017258]],[[-0.045014891773462,0.11330929398537,-0.0023894109763205],[0.10894303023815,0.055618789047003,0.01215829513967],[0.043409515172243,-0.054333820939064,0.10185819864273]],[[0.031345527619123,-0.018017053604126,0.0085349790751934],[0.16606524586678,0.019536253064871,-0.13902465999126],[0.08416523039341,0.13371703028679,0.064370095729828]],[[0.080796122550964,-0.032894361764193,-0.10846163332462],[-0.03110727854073,0.17181789875031,-0.052784521132708],[0.07164853811264,0.12883128225803,0.0020617241971195]],[[0.026879381388426,0.03171531111002,0.028840441256762],[-0.042741879820824,0.072307132184505,-0.12345209717751],[-0.0008439474622719,-0.088408298790455,0.0014614043757319]],[[0.039977241307497,-0.18335437774658,0.097050875425339],[0.091327480971813,-0.043332282453775,0.073754854500294],[0.069271467626095,0.087903574109077,0.055468428879976]],[[-0.091329671442509,0.031438887119293,0.099822454154491],[0.046019412577152,0.15892590582371,0.022220125421882],[0.12024491280317,-0.22279009222984,-0.17877481877804]],[[0.13412196934223,-0.086787670850754,0.073870792984962],[-0.023231135681272,0.066800370812416,-0.20209097862244],[0.010502433404326,0.032792206853628,0.086187817156315]],[[0.058546528220177,0.1133231446147,0.098445273935795],[0.072810955345631,0.043781761080027,-0.075093477964401],[-0.0067692357115448,0.023266930133104,-0.13172902166843]],[[-0.033892676234245,-0.018684251233935,-0.048479408025742],[0.047950372099876,-0.0066058812662959,0.074428021907806],[0.19275435805321,0.13392385840416,0.26137664914131]],[[-0.035822581499815,0.0016304926248267,0.023770978674293],[-0.050865594297647,0.11920806765556,-0.03386839479208],[0.099156685173512,-0.13086143136024,-0.13953939080238]],[[0.042573317885399,0.022637220099568,-0.0097822695970535],[0.047027036547661,0.00076641293708235,0.12482416629791],[-0.00082130747614428,0.11074411123991,-0.11518917232752]],[[0.18000580370426,-0.02234492637217,0.059684973210096],[0.020263681188226,-0.041284941136837,-0.15092144906521],[0.0048862514086068,0.062937468290329,-0.025075372308493]],[[0.18402133882046,-0.17580850422382,0.10967853665352],[0.045441616326571,-0.0013874606229365,-0.0014398997882381],[-0.033386923372746,0.025713006034493,-0.095425374805927]],[[0.083373628556728,0.07518132776022,-0.083674401044846],[-0.079595968127251,0.062312852591276,0.072826184332371],[0.089411869645119,0.077496707439423,-0.040273796766996]],[[-0.0090293558314443,0.050439305603504,0.08107578009367],[-0.00026976285153069,0.02655672468245,-0.003047150792554],[-0.12145929038525,-0.0081982081755996,0.13225613534451]],[[-0.034978624433279,0.10297363996506,0.14417454600334],[-0.042625192552805,0.095356486737728,-0.10143956542015],[0.069619208574295,0.077035374939442,0.025682607665658]]],[[[0.064386859536171,0.012909671291709,-0.051953174173832],[0.02817920409143,-0.031775057315826,-0.13753622770309],[-0.14150008559227,0.024434015154839,0.030949983745813]],[[-0.020370664075017,-0.12691633403301,-0.022775234654546],[0.020110452547669,0.047102324664593,0.020577574148774],[0.020061923190951,0.0024028162006289,0.055376693606377]],[[-0.032699912786484,-0.011498657055199,0.10698468238115],[-0.038382347673178,-0.0255684889853,0.0028982830699533],[-0.14910894632339,-0.011933624744415,-0.0042511220090091]],[[0.026754213497043,0.1140349432826,0.035091314464808],[0.0087519083172083,-0.036904811859131,-0.023438759148121],[-0.031756743788719,-0.096707604825497,-0.080925293266773]],[[0.062424812465906,-0.010129187256098,-0.020641129463911],[-0.0073926928453147,-0.0084630809724331,0.050508622080088],[-0.043142944574356,-0.071978777647018,0.016107697039843]],[[-0.015148682519794,0.12184451520443,-0.013582702726126],[0.014606362208724,-0.015410887077451,-0.04700593277812],[0.0037828125059605,-0.066880993545055,-0.17337669432163]],[[-0.078332982957363,-0.10098005086184,-0.089789666235447],[0.049721382558346,-0.002582082990557,0.14088916778564],[0.013158490881324,0.081840895116329,-0.0018769425805658]],[[0.058448482304811,0.13390736281872,0.0013791938545182],[0.057149648666382,-0.016089674085379,-0.049384366720915],[-0.13354296982288,-0.14410197734833,0.03854013979435]],[[-0.11054088920355,0.044592060148716,-0.056576352566481],[-0.090745121240616,-0.0097389062866569,0.029534801840782],[0.097002670168877,-0.061203818768263,-0.052172921597958]],[[0.14988185465336,-0.14187116920948,0.06849604845047],[-0.054496489465237,-0.017745247110724,0.023584455251694],[-0.034270789474249,0.078789107501507,-0.001632473198697]],[[0.094573028385639,-0.10296793282032,0.014168857596815],[0.11091449856758,-0.18591801822186,-0.00024576461873949],[-0.015616446733475,-0.076966643333435,-0.056997071951628]],[[0.093915268778801,-0.07254633307457,0.16422635316849],[-0.059858236461878,-0.1157833635807,-0.045247316360474],[0.16857470571995,0.035945042967796,0.051763098686934]],[[0.069757118821144,-0.012443341314793,0.033713269978762],[0.099181830883026,0.042968757450581,-0.021033750846982],[-0.063452944159508,-0.029086221009493,0.046699672937393]],[[0.088024199008942,0.081456683576107,-0.03342566639185],[0.06892516463995,-0.033492740243673,-0.094694443047047],[-0.11591464281082,-0.12495681643486,0.018404200673103]],[[-0.080515615642071,-0.024992227554321,-0.085240252315998],[-0.065540462732315,0.085927031934261,-0.0041299969889224],[0.12811601161957,-0.022862864658237,0.1162738725543]],[[0.086321473121643,0.056775663048029,-0.12845672667027],[0.071609936654568,-0.058869771659374,-0.017741527408361],[-0.098283231258392,0.061669487506151,0.064543105661869]],[[-0.17657928168774,-0.01382973510772,0.0064532007090747],[-0.080600753426552,0.11066285520792,0.10582585632801],[0.0068104388192296,0.032035667449236,-0.091696850955486]],[[0.007777476683259,-0.040422365069389,0.14987908303738],[-0.079988986253738,-0.06065247580409,-0.036721963435411],[-0.11739816516638,0.067968271672726,-0.056428089737892]],[[0.037831548601389,0.018413780257106,-0.032156120985746],[-0.021866850554943,-0.082517549395561,-0.0068941195495427],[-0.035844393074512,0.010193835943937,-0.0077998749911785]],[[-0.021856687963009,0.042009726166725,0.06405159085989],[0.01388690341264,-0.024369098246098,0.015514187514782],[0.0059621720574796,0.035391137003899,0.042223513126373]],[[0.097461774945259,-0.019604755565524,-0.23335817456245],[-0.015322429127991,-0.053948931396008,-0.0051675504073501],[0.093206815421581,0.015462320297956,0.042379971593618]],[[-0.053536020219326,0.041998706758022,-0.14907382428646],[-0.026240028440952,0.0021049233619124,-0.015300353057683],[-0.01315972674638,0.046152859926224,-0.079806163907051]],[[-0.016047598794103,0.085874125361443,0.112334176898],[-0.02168438769877,-0.075195029377937,-0.013623013161123],[0.15114216506481,-0.015919396653771,-0.010870146565139]],[[-0.071645028889179,-0.026123398914933,0.039226032793522],[0.23240396380424,0.10964132845402,0.029501419514418],[-0.13741505146027,-0.15533035993576,-0.058770593255758]],[[0.099916324019432,-0.014478321187198,-0.078860975801945],[0.028519922867417,0.033405967056751,0.035491790622473],[-0.059201296418905,-0.033868961036205,-0.022888690233231]],[[-0.026010965928435,-0.11319424211979,0.066085919737816],[-0.020190946757793,0.031516261398792,0.024481143802404],[0.035893354564905,0.063898220658302,0.031152717769146]],[[0.14374814927578,0.21443530917168,0.082164816558361],[-0.078413538634777,-0.03920990973711,-0.011174868792295],[-0.070487558841705,-0.18329659104347,-0.093559615314007]],[[0.065353840589523,0.025966787710786,0.0066539645195007],[-0.012749036774039,-0.048462972044945,0.026641489937901],[0.09888619184494,-0.01302947755903,0.045179486274719]],[[0.097445160150528,-0.016369439661503,0.01783031783998],[-0.039767947047949,-0.11103603988886,-0.089613676071167],[-0.017399724572897,0.03344939276576,0.12206545472145]],[[0.030591744929552,0.074577994644642,0.060453526675701],[0.029297847300768,0.039378993213177,-0.043120745569468],[-0.029420584440231,-0.043259523808956,0.0057546347379684]],[[-0.16666147112846,0.026163198053837,0.04013791680336],[0.021223798394203,0.077723652124405,-0.04525938257575],[-0.014754788018763,-0.060523137450218,-0.069271296262741]],[[0.0078557692468166,0.061323646456003,-0.11338160932064],[-0.076358459889889,0.0086929267272353,0.0042885555885732],[-0.084167897701263,-0.0021899936255068,0.043447453528643]]],[[[-0.053019493818283,-0.064898528158665,0.059507369995117],[-0.017305623739958,0.098285026848316,0.015197921544313],[-0.038460973650217,0.13248048722744,0.037748821079731]],[[0.042474396526814,0.075933963060379,-0.043673794716597],[0.033911265432835,0.033788233995438,-0.10194551199675],[-0.03574537858367,-0.0050513995811343,-0.20508620142937]],[[0.08696623891592,-0.0037393323145807,-0.1071445196867],[-0.13703101873398,0.19808453321457,0.026708539575338],[0.14508202672005,-0.039196580648422,-0.095502533018589]],[[-0.11231429874897,0.094451479613781,0.0044587524607778],[0.2199983894825,-0.091218866407871,0.048503629863262],[0.12245894223452,-0.0292091909796,0.012166085653007]],[[0.18720933794975,0.030250411480665,0.043293010443449],[-0.10471244901419,-0.06199187040329,-0.012870164588094],[-0.029951043426991,0.066298298537731,-0.035885639488697]],[[-0.15921841561794,-0.42593762278557,-0.089475564658642],[0.030306512489915,0.079739086329937,0.035387754440308],[0.025460751727223,0.059350430965424,0.079651698470116]],[[0.071301214396954,0.0061702290549874,-0.088471360504627],[-0.026714477688074,0.027755293995142,0.077597565948963],[0.071212872862816,-0.21722786128521,-0.011161468923092]],[[-0.0026696582790464,0.15070512890816,0.048303160816431],[0.12194861471653,-0.12332002818584,0.069417990744114],[0.089884497225285,-0.040757395327091,-0.0081701474264264]],[[-0.07465161383152,-0.065521329641342,0.17175231873989],[0.0049226377159357,0.087582364678383,0.21473678946495],[-0.084281109273434,-0.027245875447989,0.035848673433065]],[[-0.14452585577965,-0.06533819437027,0.016014155000448],[-0.044986549764872,0.095500372350216,0.13415540754795],[0.043890345841646,0.017169883474708,-0.043095011264086]],[[-0.10087868571281,-0.31808963418007,-0.27426499128342],[0.078290246427059,-0.175576582551,0.13413587212563],[-0.052038211375475,-0.01418468169868,0.094632245600224]],[[-0.020056672394276,-0.19385850429535,0.091226622462273],[-0.28248649835587,-0.19553215801716,0.05794258415699],[0.12367228418589,0.1065234541893,0.16498500108719]],[[-0.15081943571568,0.017197988927364,0.20034945011139],[0.0027730807196349,0.0023176020476967,-0.048542574048042],[0.18956542015076,0.077677980065346,-0.032955020666122]],[[-0.10607602447271,0.10785629600286,0.063415929675102],[0.08980168402195,0.0097614638507366,-0.082895360887051],[0.1450287103653,0.02924800477922,0.0060591967776418]],[[-0.020691057667136,-0.010825509205461,0.095757521688938],[-0.20730164647102,-0.010101158171892,-0.057772882282734],[-0.06814806163311,-0.029707845300436,0.083886854350567]],[[-0.075362920761108,0.037811942398548,0.18572247028351],[-0.14848318696022,0.099022589623928,-0.020368980243802],[-0.10100440680981,0.080857992172241,0.096795052289963]],[[0.0092115215957165,-0.10841123759747,0.037842378020287],[0.043462090194225,0.041796509176493,-0.15112337470055],[0.033891677856445,-0.025951905176044,0.14824511110783]],[[0.081759169697762,0.24958357214928,0.093601442873478],[0.059560317546129,0.010283529758453,-0.052830670028925],[-0.15505719184875,0.036723334342241,-0.19804008305073]],[[0.058501146733761,0.11998402327299,-0.055274628102779],[0.065337181091309,0.0065945265814662,-0.032682429999113],[-0.060296040028334,-0.0075994124636054,0.050105448812246]],[[0.077242657542229,0.10730876028538,-0.12354352325201],[0.020167721435428,-0.046646632254124,0.16389639675617],[0.10424342006445,0.032236397266388,-0.12206776440144]],[[-0.14271394908428,-0.11749719828367,0.10151353478432],[-0.031179023906589,0.055643033236265,0.054587937891483],[-0.0070916227996349,-0.044453419744968,0.064440347254276]],[[-0.053759574890137,-0.13595154881477,-0.081654883921146],[0.12500564754009,-0.014092101715505,0.026358978822827],[-0.17242121696472,0.28058886528015,-0.16645205020905]],[[-0.02203518897295,0.016209300607443,-0.11473196744919],[0.044121634215117,0.20199823379517,0.17809092998505],[0.087560869753361,-0.041702471673489,-0.13618677854538]],[[0.00012095736019546,-0.18366011977196,-0.27320274710655],[-0.050806891173124,-0.011334034614265,-0.012701230123639],[0.17296414077282,0.19866019487381,0.020559392869473]],[[0.074087053537369,-0.11446948349476,-0.23385328054428],[-0.057765424251556,-0.028810681775212,-0.011048554442823],[-0.023394601419568,0.086481474339962,-0.080572620034218]],[[0.092086113989353,-0.048428725451231,-0.0082234889268875],[0.057011194527149,-0.083505168557167,0.0389144718647],[-0.084157593548298,0.14254559576511,-0.096208862960339]],[[-0.025849752128124,-0.069988571107388,0.060283347964287],[0.022225009277463,0.085593365132809,-0.035794049501419],[-0.083478465676308,0.04795454069972,-0.20729924738407]],[[-0.13476426899433,0.19113713502884,0.10778168588877],[0.15285268425941,-0.091457225382328,-0.0056739980354905],[-0.03981152549386,-0.028640702366829,-0.0047349836677313]],[[-0.14365530014038,-0.18297228217125,0.028335804119706],[0.071975857019424,0.013850771822035,0.040852271020412],[0.031788107007742,0.1987891793251,0.16693723201752]],[[0.066364742815495,0.08998791873455,-0.014553051441908],[0.14171107113361,0.079371444880962,-0.043011106550694],[-0.044435866177082,-0.020800076425076,-0.017952658236027]],[[0.084098726511002,-0.31560033559799,-0.002764844102785],[0.23434227705002,0.015266441740096,0.011262553744018],[-0.15461371839046,0.0096178110688925,0.11273791640997]],[[0.012360989116132,0.10117825120687,-0.075224287807941],[0.038349896669388,0.039096657186747,-0.058106515556574],[0.063969135284424,-0.10406784713268,-0.090446308255196]]],[[[-0.068606406450272,-0.034698970615864,-0.017123686149716],[-0.091863170266151,0.052956651896238,-0.038267191499472],[-0.015387922525406,-0.014418442733586,-0.035689942538738]],[[-0.18620039522648,-0.049342159181833,0.053215257823467],[-0.079357266426086,-0.045712504535913,-0.036199264228344],[0.025139587000012,-0.088819600641727,-0.067428596317768]],[[0.057925533503294,-0.070555314421654,-0.079598069190979],[0.18829657137394,0.016612062230706,-0.048503331840038],[-0.10931658744812,-0.031030725687742,0.035080306231976]],[[0.027100637555122,-0.13338400423527,-0.21839256584644],[0.099761016666889,-0.020042717456818,0.17587825655937],[0.036310832947493,0.071587294340134,0.1258101016283]],[[0.012181784957647,0.055515345185995,-0.043844148516655],[-0.057238984853029,0.084759399294853,-0.0053137796930969],[0.030340746045113,0.010474453680217,-0.013902745209634]],[[-0.034641236066818,0.093435116112232,-0.033874832093716],[-0.04741794615984,-0.067145653069019,-0.057376712560654],[-0.018058149144053,-0.031702999025583,-0.09051051735878]],[[-0.002702618483454,-0.068438656628132,0.033899802714586],[0.046079825609922,0.030178070068359,-0.0043882271274924],[0.1115502640605,0.011564428918064,-0.11698531359434]],[[-0.0050893006846309,-0.39733174443245,0.054250564426184],[0.010920856148005,-0.028527954593301,0.089844308793545],[0.0099177453666925,0.00081513094482943,0.024560498073697]],[[-0.0044032940641046,-0.065367117524147,-0.11119173467159],[-0.055000770837069,-0.091168187558651,-0.061233974993229],[-0.11829606443644,-0.11047924309969,0.13180036842823]],[[0.025252697989345,0.1493075042963,0.079500414431095],[-0.11890053749084,0.022047577425838,-0.13014535605907],[-0.1131905913353,0.039502907544374,-0.19559392333031]],[[0.16364726424217,-0.1047743037343,-0.031539428979158],[-0.099705055356026,0.10595779120922,0.0132363922894],[0.048547931015491,0.11563698202372,-0.015697062015533]],[[0.0093717509880662,0.083682991564274,0.046109393239021],[-0.11976487934589,0.096984252333641,-0.028590625151992],[0.070912264287472,0.041563469916582,0.10907889902592]],[[-0.075195111334324,-0.036510270088911,0.062942855060101],[-0.18145051598549,-0.082612670958042,-0.0085671208798885],[0.0086853737011552,-0.027220347896218,0.083635717630386]],[[-0.16317005455494,-0.042611882090569,-0.016289187595248],[-0.043583292514086,0.08486619591713,0.15521858632565],[-0.018853835761547,0.074534006416798,0.16098430752754]],[[-0.14431548118591,-0.037182625383139,-0.0011464741546661],[-0.11920193582773,0.024597998708487,-0.0026904491242021],[0.16228276491165,0.14883768558502,0.052906561642885]],[[-0.10499726980925,0.16567794978619,0.079182676970959],[0.14609187841415,-0.038996998220682,-0.0066386270336807],[0.034449454396963,0.0097693260759115,-0.092954754829407]],[[0.048003669828176,0.093400217592716,-0.046367898583412],[-0.17779697477818,0.082272462546825,-0.049260001629591],[-0.17025198042393,0.014302410185337,-0.013067473657429]],[[0.054512482136488,0.039695061743259,0.0035947561264038],[-0.098133102059364,-0.011117302812636,-0.00054915930377319],[0.0065811509266496,-0.022295346483588,-0.012724183499813]],[[0.00088195968419313,-0.039455242455006,-0.050928752869368],[0.1281524002552,-0.0030219308100641,0.020664652809501],[0.038428012281656,-0.16885669529438,0.057842496782541]],[[-0.048459578305483,-0.10999417304993,0.13790041208267],[0.06231677532196,0.11071386188269,0.02024488337338],[-0.11500899493694,0.10044945776463,-0.1685646623373]],[[-0.13090649247169,0.03831098228693,-0.074463151395321],[-0.16119457781315,-0.023742761462927,-0.027497440576553],[-0.11164933443069,0.10311277210712,-0.074612110853195]],[[0.15794095396996,-0.012976266443729,0.096115343272686],[0.060480404645205,-0.018818140029907,-0.1261300444603],[0.060918238013983,0.096085101366043,0.018864192068577]],[[-0.20212858915329,0.014296917244792,-0.12249822169542],[-0.092967875301838,0.0093498537316918,0.23353385925293],[0.2034700512886,-0.18920503556728,0.079733774065971]],[[0.077200755476952,0.069027528166771,-0.060256779193878],[0.068029835820198,-0.022310020402074,-0.17558211088181],[0.16868110001087,-0.046905983239412,-0.12418996542692]],[[-0.0040819505229592,0.1159845367074,-0.00064252380980179],[0.13766929507256,-0.024454310536385,-0.0065321060828865],[-0.085187777876854,0.029896553605795,-0.034689292311668]],[[-0.011443919502199,-0.020966442301869,-0.11042399704456],[0.0035560699179769,0.096704639494419,0.041937336325645],[0.13615573942661,-0.084944933652878,0.10625845193863]],[[-0.053874675184488,0.033564407378435,0.13810104131699],[-0.1502939760685,-0.05638824403286,0.13602803647518],[-0.089508645236492,-0.021909438073635,0.011918695643544]],[[-0.16617240011692,-0.032796673476696,-0.037520587444305],[0.016049368306994,-0.037247367203236,0.088193789124489],[-0.055379617959261,-0.080867655575275,-0.021033514291048]],[[0.079976364970207,-0.018386693671346,-0.11565192043781],[-0.033091735094786,-0.064277000725269,-0.015610232949257],[-0.0048403982073069,-0.034618277102709,0.036876320838928]],[[-0.022009303793311,0.0074051879346371,0.063451491296291],[0.021342203021049,-0.10666776448488,0.057634800672531],[-0.12396696209908,0.0066972179338336,0.13999176025391]],[[0.013012303039432,-0.0038489461876452,-0.09750871360302],[0.020123468711972,0.087384037673473,0.1575602889061],[-0.080663621425629,0.099555619060993,0.0040218499489129]],[[0.04223907738924,-0.058510307222605,0.061558809131384],[0.0019656873773783,0.00021907115296926,0.024292984977365],[0.026341214776039,-0.018192542716861,-0.061598770320415]]],[[[-0.20179718732834,-0.049214474856853,-0.030918538570404],[-0.16613040864468,0.1566369086504,-0.035816375166178],[0.057389054447412,0.050243310630322,-0.028191698715091]],[[0.085555218160152,0.030759206041694,0.017025826498866],[0.029265811666846,0.056160751730204,-0.031507860869169],[-0.043361525982618,-0.050022549927235,-0.01302881911397]],[[-0.022837195545435,0.042177677154541,-0.053585074841976],[0.079233005642891,-0.090242877602577,-0.055703524500132],[-0.064836777746677,0.048869099467993,0.07289332896471]],[[-0.064261585474014,0.032797481864691,0.069815792143345],[-0.36695501208305,-0.11265382170677,0.041483383625746],[0.12953291833401,0.14509077370167,0.021535083651543]],[[-0.027756145223975,-0.072891414165497,0.042701233178377],[-0.08307871222496,0.10139397531748,0.087532982230186],[0.11073958873749,-0.076977767050266,-0.076025947928429]],[[-0.0021373834460974,-0.060918115079403,0.068732678890228],[-0.17140460014343,0.13373866677284,0.053924981504679],[0.012791380286217,0.053507331758738,0.0094343814998865]],[[0.11787369847298,0.014055321924388,0.028161618858576],[0.0017057670047507,-0.31010472774506,0.017162807285786],[-0.029821310192347,-0.17259120941162,0.027453165501356]],[[-0.16840372979641,0.090326197445393,-0.13574686646461],[-0.077421352267265,0.11504217982292,0.028100641444325],[0.014658794738352,0.19453164935112,-0.081971436738968]],[[0.0071117184124887,-0.018755719065666,0.010519414208829],[0.023878131061792,0.0045725600793958,0.023775709792972],[-0.055942211300135,-0.02802905626595,-0.0054084854200482]],[[-0.030142944306135,-0.071027532219887,0.069619037210941],[-0.0050332411192358,0.056383047252893,-0.024572607129812],[0.10584297776222,-0.18587873876095,0.063522830605507]],[[-0.012257052585483,-0.1132690384984,0.046878580003977],[-0.050873149186373,-0.088667929172516,0.059987861663103],[0.011337175033987,0.044874560087919,-0.040102362632751]],[[-0.0392683185637,0.13045608997345,-0.018018806353211],[0.082132525742054,0.015894452109933,0.018454691395164],[-0.076149351894855,0.076250821352005,-0.05162201821804]],[[0.0050060958601534,-0.030141608789563,-0.13050438463688],[0.082845754921436,0.17300714552402,-0.05204065144062],[0.031488031148911,-0.092529319226742,0.037193439900875]],[[-0.067768543958664,0.081551551818848,0.063611999154091],[-0.17403720319271,-0.22060887515545,0.054251477122307],[0.074128314852715,0.14974685013294,0.0135562364012]],[[-0.0057505932636559,0.062598362565041,0.015791675075889],[0.025766141712666,0.036970771849155,-0.014675068669021],[0.0029248436912894,-0.045922946184874,-0.081221401691437]],[[-0.093284845352173,-0.014678213745356,0.04364113509655],[-0.12512961030006,0.11492265760899,0.17707592248917],[-0.091158241033554,0.16745881736279,-0.089712247252464]],[[0.11487368494272,0.0027780910022557,-0.018173506483436],[0.2073100656271,-0.10136476159096,-0.1398171633482],[-0.088865727186203,-0.15948981046677,0.032756939530373]],[[0.0082414001226425,0.03334591165185,0.022546116262674],[0.082974150776863,0.0015510258963332,-0.085105836391449],[0.11301001906395,-0.042062100023031,-0.070237807929516]],[[-0.12813033163548,-0.12798485159874,-0.10378100723028],[0.065983459353447,-0.034888163208961,0.078656204044819],[0.1242577880621,-0.080032482743263,0.019946310669184]],[[-0.0082190958783031,-0.14999474585056,-0.0069837910123169],[-0.036733135581017,-0.14367981255054,0.022848919034004],[0.039657820016146,-0.061994023621082,0.067678153514862]],[[-0.032729420810938,0.043768383562565,0.089245438575745],[0.092891603708267,0.018587596714497,-0.0071619879454374],[-0.093582935631275,-0.10006189346313,-0.15920217335224]],[[0.0020904568955302,-0.13427998125553,0.064336232841015],[-0.1332686394453,0.08307383954525,0.26555863022804],[0.061113733798265,-0.039955660700798,-0.1223379150033]],[[-0.0099120521917939,0.029276004061103,0.028879035264254],[0.010543488897383,-0.14500851929188,-0.0090347621589899],[-0.038542415946722,-0.0010265405289829,0.098054334521294]],[[0.15778231620789,-0.11883883178234,0.024370988830924],[0.079248055815697,-0.053060237318277,0.057411827147007],[-0.030082097277045,-0.039247076958418,-0.059676930308342]],[[-0.1028346195817,-0.056284982711077,-0.00065324595198035],[-0.073356360197067,-0.014462290331721,-0.12258061021566],[-0.056409735232592,-0.045293863862753,-0.045679185539484]],[[0.12054813653231,-0.18392306566238,-0.08777441829443],[-0.040057439357042,-0.099449396133423,0.085266783833504],[-0.14138884842396,-0.0052889492362738,0.13575573265553]],[[-0.075584657490253,-0.071981146931648,0.0051110619679093],[-0.016050474718213,0.015991982072592,0.092848181724548],[0.0050253486260772,0.097453512251377,-0.013473069295287]],[[-0.03963391110301,0.032729111611843,0.025778455659747],[0.025559032335877,0.16372615098953,0.026511698961258],[-0.082948058843613,-0.18624486029148,-0.083990670740604]],[[0.034914683550596,0.044977113604546,0.038086831569672],[0.0099649541079998,-0.088920250535011,0.064591936767101],[-0.097946539521217,-0.023239629343152,0.040028210729361]],[[-0.024642206728458,-0.01582894474268,-0.09120237827301],[0.013282945379615,-0.013288333080709,0.017091814428568],[0.027346879243851,0.055630028247833,0.051750235259533]],[[-0.083245031535625,0.015414563938975,-0.091629602015018],[-0.060699667781591,0.001453171367757,-0.010498747229576],[0.0025461330078542,0.035087332129478,0.27574068307877]],[[-0.079410016536713,0.035885773599148,-0.1812322884798],[0.19941858947277,0.012729154899716,-0.026148896664381],[0.10773579031229,-0.031577799469233,-0.079470679163933]]],[[[0.16164973378181,0.058844219893217,0.1264703720808],[0.0085934512317181,-0.018958233296871,-0.062190875411034],[-0.049180582165718,-0.0089197158813477,0.11884823441505]],[[0.091232866048813,-0.045380059629679,0.10469330847263],[-0.045431096106768,-0.070253893733025,0.031160840764642],[0.025983020663261,0.023108664900064,-0.070738308131695]],[[0.076061837375164,0.049000229686499,0.015422850847244],[-0.066512636840343,0.047524027526379,0.068686708807945],[0.080683805048466,0.11893045157194,0.034693233668804]],[[0.071461722254753,-0.087028324604034,0.12212409079075],[0.16692684590816,0.066309921443462,-0.096591591835022],[-0.14730189740658,-0.1264241039753,0.053803838789463]],[[-0.10681391507387,-0.0061944900080562,-0.024253960698843],[-0.11107421666384,0.083363048732281,-0.1012542322278],[0.035191852599382,0.034629188477993,0.026917170733213]],[[0.20742902159691,-0.00037214311305434,0.14011013507843],[0.035257402807474,-0.065967865288258,-0.058923285454512],[-0.11141519248486,0.014408275485039,0.1693799495697]],[[0.27869018912315,0.062245324254036,0.12088868021965],[0.11970757693052,-0.17777268588543,0.0040505863726139],[-0.08667466789484,-0.089586213231087,-0.019700489938259]],[[0.081741221249104,0.059740673750639,-0.071677342057228],[-0.0030562251340598,0.11164578795433,-0.09614934772253],[0.097062528133392,0.042021978646517,0.0035317153669894]],[[-0.030313950031996,0.044547785073519,0.022878162562847],[-0.075015380978584,0.054011791944504,-0.10058512538671],[-0.10463351756334,0.043378751724958,0.020438360050321]],[[0.11778704822063,-0.15830624103546,-0.10812992602587],[0.079769916832447,0.17778803408146,0.19356562197208],[0.035177551209927,0.025902979075909,-0.035700168460608]],[[-0.013220294378698,0.026386080309749,-0.10524030029774],[-0.11204135417938,-0.084173567593098,0.024339094758034],[-0.015156753361225,0.013467713259161,0.086632661521435]],[[0.13202740252018,0.21155388653278,-0.040085501968861],[-0.1136242672801,-0.024949843063951,0.12531752884388],[-0.15801648795605,-0.064012408256531,-0.099513031542301]],[[0.21133077144623,-0.0018784032436088,0.11915375292301],[0.069185331463814,0.11964421719313,0.07912939786911],[-0.19561994075775,-0.1218546256423,-0.16614191234112]],[[-0.092430882155895,-0.017088761553168,0.1197954416275],[-0.044371504336596,-0.094101116061211,0.059564162045717],[-0.037620048969984,0.087444975972176,-0.026986073702574]],[[0.14159095287323,-0.013534484431148,0.020701268687844],[-0.048037137836218,0.024165149778128,0.00090127711882815],[-0.084709130227566,-0.05700471624732,-0.013880034908652]],[[-0.24542878568172,0.0062917023897171,-0.034342542290688],[0.016851652413607,0.11275216192007,0.094873622059822],[-0.063493967056274,0.043917708098888,-0.0020177774131298]],[[0.0428964830935,-0.040903590619564,0.0041128797456622],[0.026432627812028,-0.12822157144547,0.14889146387577],[0.10463712364435,-0.026109216734767,-0.050254344940186]],[[-0.25778138637543,-0.09166294336319,-0.1505558937788],[0.10886683315039,-0.041084755212069,0.012054256163538],[0.083482012152672,0.063634686172009,0.096654370427132]],[[-0.071666143834591,-0.060444969683886,-0.19009655714035],[0.047538593411446,-0.028373451903462,0.042654734104872],[-0.076108194887638,-0.15553420782089,-0.24742153286934]],[[-0.016614688560367,-0.11984369158745,0.051334157586098],[-0.01143940910697,0.10075925290585,0.034629821777344],[-0.13296531140804,0.032052427530289,0.021116636693478]],[[0.10314965993166,0.069713763892651,0.013505863025784],[0.12965010106564,0.069502949714661,-0.045848194509745],[0.13825204968452,0.01249121222645,0.033771246671677]],[[0.13892836868763,0.039758808910847,0.10796765983105],[-0.17728346586227,-0.14617156982422,0.061907172203064],[-0.13141249120235,0.13574902713299,0.22402477264404]],[[-0.02335880883038,0.070477046072483,-0.01148859038949],[-0.03673928976059,0.035132620483637,-0.13726119697094],[0.22970665991306,-0.058909457176924,-0.10834151506424]],[[-0.20589092373848,-0.214370444417,-0.12441653013229],[-0.047788571566343,-0.096615791320801,0.12712518870831],[0.11702633649111,0.023736838251352,0.060631237924099]],[[-0.18513083457947,0.053152289241552,-0.042708154767752],[-0.24532940983772,-0.07066272944212,-0.10413081198931],[-0.051889445632696,0.026478299871087,-0.21243615448475]],[[0.18271547555923,0.086733721196651,-0.0045590875670314],[-0.020587462931871,-0.068071849644184,-0.0082368329167366],[0.0069253128021955,0.15221647918224,0.11818355321884]],[[-0.046451173722744,-0.04634952172637,-0.087264880537987],[0.058541364967823,0.0083646718412638,0.10841701179743],[0.019960884004831,-0.047205038368702,0.020149251446128]],[[-0.17314431071281,-0.027875546365976,-0.028569862246513],[0.042787376791239,0.1991086602211,0.12568834424019],[-0.081400014460087,-0.038880079984665,-0.12433803826571]],[[0.010645353235304,0.075396686792374,0.040835674852133],[-0.10929800570011,-0.1708093136549,-0.0042271856218576],[0.049558535218239,-0.050453297793865,0.037023972719908]],[[-0.042620323598385,0.0169727075845,0.011812883429229],[0.013843644410372,-0.026695707812905,0.075184889137745],[0.079836443066597,-0.17901153862476,-0.09490417689085]],[[-0.0029751749243587,0.013745103962719,-0.017151776701212],[-0.045929282903671,0.10125044733286,0.033326126635075],[-0.18761195242405,0.054861158132553,-0.10206062346697]],[[-0.29285481572151,-0.055482469499111,0.074540689587593],[0.0028702158015221,-0.14507937431335,-0.07468793541193],[-0.22264596819878,-0.10394339263439,0.12115792930126]]],[[[-0.029639810323715,-0.044049508869648,0.087391011416912],[-0.050683993846178,-0.062110103666782,0.14080210030079],[0.067864552140236,-0.23567579686642,-0.10647016018629]],[[0.019847253337502,-0.090342082083225,0.037441652268171],[-0.051838204264641,0.038127951323986,0.057097733020782],[0.020120901986957,0.051820408552885,-0.0097569050267339]],[[0.10846959799528,-0.06502977013588,0.23819264769554],[0.12430340051651,0.10046970844269,0.071574673056602],[0.20649303495884,0.024399872869253,-0.15814715623856]],[[-0.014575922861695,0.068091362714767,0.094633728265762],[-0.011592482216656,0.13045009970665,0.031431712210178],[-0.16434495151043,0.12586462497711,0.052568554878235]],[[0.0029226723127067,0.13205184042454,-0.019586801528931],[-0.038887087255716,0.11566109210253,-0.024583438411355],[-0.17415583133698,-0.0078410534188151,-0.082652971148491]],[[-0.18617637455463,-0.06017480045557,0.13688907027245],[-0.044781155884266,-0.13810005784035,0.25042948126793],[-0.10746916383505,-0.036171123385429,0.15596342086792]],[[0.046046387404203,0.19316439330578,-0.026449641212821],[-0.021494163200259,0.17291101813316,-0.11264280974865],[-0.28881657123566,-0.0096821039915085,-0.21528415381908]],[[-0.022744409739971,0.0034013816621155,-0.0257703140378],[0.0011948471656069,-0.0022716228850186,0.081759452819824],[-0.10798081755638,-0.054829806089401,0.12519244849682]],[[0.011582207866013,0.1790885925293,-0.10620883852243],[0.1196127012372,-0.06463623046875,0.010650613345206],[-0.043044369667768,-0.033500570803881,-0.080794118344784]],[[0.043335352092981,0.12353084236383,0.087502382695675],[-0.060751412063837,-0.084299623966217,-0.086962945759296],[0.084061689674854,0.2194929420948,0.084922008216381]],[[0.012279601767659,-0.030395893380046,0.014126650989056],[-0.098712109029293,-0.068446457386017,-0.059747587889433],[0.085727833211422,-0.14424057304859,0.032336622476578]],[[0.080620899796486,0.089837834239006,-0.06299401819706],[0.087040364742279,-0.057072386145592,0.047561395913363],[0.152708157897,0.0052714855410159,0.049909994006157]],[[-0.10983495414257,-0.09490741789341,0.063756436109543],[0.010280990973115,0.012470191344619,-0.0022956791799515],[-0.24516993761063,0.064739443361759,-0.22750954329967]],[[-0.045211005955935,-0.042553052306175,-0.013849635608494],[0.080298133194447,0.12472465634346,-0.10196118056774],[-0.0063378624618053,-0.0042296396568418,0.023354528471828]],[[-0.0036195588763803,0.096797063946724,-0.07475757598877],[-0.024049628525972,0.082104369997978,-0.043891049921513],[-0.032206133008003,0.015361637808383,0.037288915365934]],[[-0.10911197215319,0.10472425073385,0.19380857050419],[0.10687271505594,-0.1333389878273,0.022146124392748],[-0.15755791962147,0.097640633583069,0.27784809470177]],[[0.086982898414135,-0.060493782162666,-0.014689066447318],[0.13426513969898,-0.01290825009346,-0.031710006296635],[-0.032986171543598,-0.075558938086033,-0.0024398467503488]],[[-0.016094744205475,0.056426748633385,-0.079288125038147],[-0.086548045277596,0.033639624714851,-0.0307976603508],[-0.071529977023602,-0.010705639608204,-0.048367708921432]],[[-0.0059905000962317,-0.21002179384232,-0.17671526968479],[0.10930269956589,0.054129604250193,-0.24973069131374],[-0.11491376161575,-0.15425211191177,-0.15699380636215]],[[-0.095983110368252,-0.096886433660984,0.068023391067982],[-0.013533284887671,-0.033975169062614,-0.083406485617161],[0.0031581479124725,0.013984601013362,-0.079225055873394]],[[-0.020021384581923,-0.091202922165394,0.14224797487259],[-0.26886573433876,0.071645684540272,-0.036073792725801],[-0.037952903658152,-0.046175792813301,0.10058677941561]],[[-0.027448482811451,0.032750267535448,0.051353309303522],[-0.07599314302206,-0.17611293494701,0.020066898316145],[0.11068543046713,-0.22918435931206,0.034552533179522]],[[0.032506670802832,-0.0060836863704026,0.07789783924818],[-0.054966881871223,-0.11308112740517,-0.13865871727467],[-0.044435631483793,0.026174610480666,0.012473778799176]],[[-0.16912357509136,0.065327569842339,-0.041081786155701],[-0.11527714878321,-0.11818668991327,0.030282016843557],[-0.12607568502426,-0.13377910852432,0.012198613025248]],[[-0.084846153855324,-0.012375249527395,0.0022003564517945],[-0.17872279882431,-0.059303779155016,-0.14597788453102],[0.13051788508892,-0.032826825976372,-0.050253096967936]],[[0.12717570364475,-0.062511466443539,-0.15355734527111],[0.13658767938614,-0.065666384994984,-0.02299545891583],[0.10180442780256,-0.013247964903712,-0.14297132194042]],[[-0.036933496594429,0.10166687518358,0.11461043357849],[0.064986683428288,-0.019231518730521,-0.043503109365702],[-0.01140305493027,0.01057490799576,-0.039649240672588]],[[-0.106121994555,-0.092595160007477,-0.037774834781885],[-0.19349029660225,-0.071019574999809,-0.11862605065107],[-0.08775207400322,0.22969216108322,-0.19661466777325]],[[0.25289863348007,-0.1860863417387,-0.056739173829556],[0.16004148125648,-0.13538002967834,0.075204834342003],[-0.093720361590385,0.039334323257208,0.010705290362239]],[[0.082718290388584,-0.11831933259964,0.076123937964439],[-0.070500127971172,-0.1027839332819,-0.2128731906414],[-0.071014299988747,-0.020218461751938,0.013772765174508]],[[0.068456716835499,-0.024127785116434,0.10934799909592],[-0.11643666028976,0.00022926880046725,-0.02241394855082],[-0.052795119583607,-0.16229310631752,0.026631766930223]],[[0.045352216809988,-0.15083143115044,-0.037873234599829],[0.16914309561253,0.054378759115934,0.08834682404995],[0.0052914223633707,-0.097563453018665,-0.26524066925049]]],[[[0.050078399479389,0.051202248781919,-0.07922501116991],[0.055410303175449,-0.21622970700264,0.064033642411232],[0.036707278341055,-0.10224340111017,-0.075463831424713]],[[-0.049140494316816,-0.04545059427619,0.058801483362913],[0.097340174019337,0.038540191948414,-0.019871396943927],[-0.063051350414753,0.059100087732077,0.047697275876999]],[[0.11286436021328,0.065281130373478,-0.0066133411601186],[0.03942583873868,0.040755152702332,-0.076988697052002],[-0.070517361164093,-0.052079070359468,-0.047083154320717]],[[0.23617021739483,-0.027485199272633,-0.0061028888449073],[0.17171660065651,-0.13902278244495,-0.086846254765987],[0.056253295391798,-0.08139593154192,-0.047852799296379]],[[0.040702220052481,0.077673360705376,-0.008074794895947],[-0.078350000083447,0.014651597477496,-0.078167848289013],[-0.096798270940781,0.0037123884540051,-0.014470946975052]],[[0.16520434617996,0.13145259022713,-0.13379500806332],[-0.093335598707199,0.043945319950581,-0.16443242132664],[-0.072941891849041,-0.018908716738224,-0.079792030155659]],[[0.036990750581026,0.041229493916035,-0.094850741326809],[0.026183716952801,0.036546774208546,-0.057422116398811],[0.12824191153049,0.072700314223766,-0.041051886975765]],[[0.11503206938505,-0.082717694342136,-0.015804816037416],[0.16412533819675,-0.058556627482176,0.14363104104996],[-0.069707319140434,-0.024363690987229,0.047209799289703]],[[0.14027726650238,0.11576274037361,-0.075211696326733],[-0.060306567698717,-0.12458258122206,0.0052350284531713],[-0.042461968958378,0.16023805737495,-0.0095608681440353]],[[-0.048862896859646,0.030549576506019,-0.11800989508629],[-0.00058211589930579,-0.043573338538408,-0.012170531786978],[-0.098597869277,0.10379104316235,0.020208744332194]],[[-0.082905769348145,-0.0086505701765418,0.070935815572739],[-0.16029088199139,0.043158330023289,0.001791343674995],[0.0082023395225406,-0.035115007311106,-0.040810260921717]],[[-0.035945139825344,-0.17709974944592,-0.14335766434669],[0.0039030506741256,0.023996293544769,-0.081372313201427],[0.10481829196215,0.052910704165697,0.023599961772561]],[[-0.063626006245613,0.047714963555336,0.0099238492548466],[-0.063941150903702,-0.11807660013437,0.009896844625473],[-0.043322172015905,0.13332150876522,0.019870953634381]],[[0.18415632843971,-0.024418683722615,-0.25058045983315],[0.16511413455009,-0.031873818486929,-0.14436908066273],[0.011915873736143,-0.14788360893726,-0.29982975125313]],[[-0.046741407364607,0.097248636186123,-0.066937908530235],[-0.039730373769999,0.0044424398802221,0.013599288649857],[-0.025399317964911,0.031303912401199,-0.034434471279383]],[[0.26729568839073,-0.073498338460922,0.0088021485134959],[-0.16447946429253,0.027459179982543,0.034439604729414],[-0.093486852943897,-0.051902323961258,0.076122127473354]],[[-0.17935407161713,-0.053394433110952,-0.011340167373419],[0.15819919109344,-0.0011375298490748,0.036158639937639],[0.15018613636494,0.052129950374365,0.0058976421132684]],[[-0.090354487299919,-0.0014331060228869,0.044239994138479],[-0.21291755139828,-0.13225848972797,0.13437701761723],[-0.10429364442825,-0.0041362601332366,0.081614919006824]],[[0.07724504172802,0.12479144334793,-0.048276606947184],[-0.010708193294704,-0.0065449611283839,-0.0024188321549445],[0.045405142009258,0.019132379442453,-0.087600693106651]],[[0.080834716558456,-0.16548700630665,0.088386744260788],[-0.035625290125608,-0.13466772437096,-0.036357525736094],[0.079563841223717,0.0061327023431659,-0.02800503000617]],[[-0.10109644383192,0.061881940811872,0.082891002297401],[-0.085644528269768,0.053607292473316,0.065897978842258],[-0.0023227375932038,0.030891481786966,0.039122045040131]],[[-0.089003250002861,0.027679391205311,-0.050435770303011],[-0.050668343901634,0.075269252061844,0.011535233817995],[-0.13991832733154,0.011074234731495,-0.07192375510931]],[[-0.0078614093363285,-0.12741088867188,0.11036664247513],[0.10960480570793,0.02749165520072,-0.045876353979111],[-0.078150652348995,-0.0017608681228012,0.048266187310219]],[[0.11014590412378,0.061507068574429,-0.15106949210167],[-0.1321534216404,-0.029559571295977,-0.27333894371986],[0.11970176547766,0.0034146024845541,-0.0620345659554]],[[0.062147788703442,0.11224039644003,-0.14588990807533],[-0.074633792042732,0.025552147999406,0.014205735176802],[0.063413038849831,0.011069463565946,0.073779918253422]],[[-0.015277199447155,0.16070353984833,-0.095305502414703],[0.088538631796837,0.061260852962732,0.059988703578711],[-0.061560221016407,-0.044313199818134,0.0056619336828589]],[[0.01381560228765,0.040129624307156,-0.027815256267786],[-0.038805726915598,-0.03254296630621,0.0090144667774439],[-0.033698417246342,0.019378233700991,0.014225768856704]],[[-0.090426601469517,-0.062895424664021,0.11157236248255],[-0.039465632289648,0.10682932287455,0.103933788836],[-0.081529952585697,0.042774677276611,-0.039017163217068]],[[0.045879442244768,-0.053465776145458,0.0093338051810861],[-0.072149135172367,0.13597649335861,-0.19424633681774],[0.08446491509676,0.070644654333591,-0.032456621527672]],[[-0.075909964740276,-0.019127041101456,0.047357175499201],[0.045738242566586,-0.032367676496506,-0.018753575161099],[0.076773710548878,0.026551386341453,-0.025497598573565]],[[0.00024364252749365,-0.14651355147362,0.070261545479298],[0.0196762830019,-0.20045025646687,-0.045757796615362],[0.05236080288887,0.069874607026577,0.071961544454098]],[[-0.2396350055933,0.012689775787294,0.0018240816425532],[-0.05457503721118,0.052993651479483,-0.043481905013323],[-0.11440092325211,0.059451393783092,-0.089280255138874]]],[[[-0.05303331092,-0.11286058276892,-0.17258967459202],[0.011288844980299,-0.016113309189677,0.024803018197417],[-0.059182912111282,-0.096446208655834,-0.04529482871294]],[[0.037962041795254,-0.058332145214081,0.020102830603719],[-0.13425645232201,0.019896369427443,0.068757206201553],[0.028111841529608,-0.027636829763651,0.1115535274148]],[[0.1410256922245,0.084480777382851,0.074685275554657],[-0.024518618360162,-0.10809322446585,-0.049533367156982],[-0.026377137750387,0.061303053051233,0.11906804144382]],[[0.1808568239212,0.11239024996758,-0.23034450411797],[0.094538822770119,0.091555193066597,-0.017030699178576],[-0.11062846332788,-0.029111780226231,-0.06695494055748]],[[0.008518123999238,-0.0042506791651249,-0.007792335934937],[-0.011491946876049,0.03437589854002,-0.075511179864407],[0.021417159587145,0.12708142399788,-0.064432919025421]],[[0.12026514858007,-0.16657716035843,-0.16991712152958],[0.11160662770271,-0.0744943395257,0.085505798459053],[-0.070883013308048,-0.12850284576416,-0.24424539506435]],[[0.060159590095282,0.071742482483387,-0.0060584475286305],[-0.11554140597582,-0.04295040667057,0.17862847447395],[-0.069499388337135,0.046395786106586,0.074387691915035]],[[-0.14565409719944,-0.15372283756733,0.12997180223465],[-0.028983915224671,-0.07132039219141,-0.070797421038151],[0.058630220592022,-0.001669138786383,-0.16873067617416]],[[0.025087133049965,0.00054082158021629,-0.20093305408955],[-0.068125151097775,-0.10878202319145,0.09888381510973],[-0.12203089147806,0.079087756574154,0.11187320202589]],[[-0.22458782792091,-0.016119528561831,-0.082144640386105],[0.015584724955261,-0.035774864256382,0.087633155286312],[-0.099057853221893,-0.10851565748453,0.19711874425411]],[[-0.054209768772125,-0.037377964705229,-0.025460820645094],[-0.037593267858028,0.0060197650454938,0.054824884980917],[-0.31314796209335,-0.1305295675993,0.018740121275187]],[[0.026269430294633,-0.040309216827154,-0.087467655539513],[0.017997344955802,0.029396301135421,0.14802534878254],[0.12680540978909,0.0033484741579741,0.059261821210384]],[[-0.01528397668153,-0.00014654781261925,-0.24904190003872],[-0.0033977264538407,-0.24107509851456,-0.064272709190845],[-0.18928165733814,-0.060997981578112,-0.1028400734067]],[[0.068702936172485,0.19948211312294,-0.27577289938927],[0.018816379830241,-0.18394950032234,-0.11444265395403],[0.011346858926117,-0.11311222612858,-0.087022364139557]],[[-0.030510576441884,0.029145767912269,-0.041133016347885],[-0.060091510415077,0.046765491366386,-0.012625060044229],[0.074078984558582,0.0011054706992581,-0.037163753062487]],[[-0.051115825772285,-0.078505948185921,-0.25380030274391],[0.038168575614691,-0.098932676017284,-0.11771453171968],[0.12311048060656,0.084301747381687,-0.012435526587069]],[[0.050173755735159,-0.044978845864534,0.12190037965775],[0.042473286390305,-0.12817685306072,0.12221025675535],[0.0075416075997055,0.010145409032702,0.036935199052095]],[[-0.027094222605228,-0.016229912638664,-0.12879624962807],[-0.10900413990021,-0.09909962117672,0.079598940908909],[-0.16413131356239,-0.14395046234131,0.10890423506498]],[[0.089805498719215,0.087579719722271,0.066705040633678],[0.054863050580025,-0.060878604650497,-0.022863438352942],[-0.14626578986645,-0.057253312319517,0.10596051812172]],[[0.091370090842247,-0.1264803558588,-0.15361063182354],[0.0059932889416814,-0.037863202393055,0.003649827092886],[-0.026982475072145,-0.038405321538448,-0.065062336623669]],[[-0.11455113440752,0.038379445672035,0.06142620742321],[0.018168207257986,0.017326828092337,0.060631599277258],[0.018360249698162,-0.086835898458958,-0.04782522469759]],[[0.14563685655594,-0.056715246289968,-0.094625174999237],[0.14544199407101,0.0094530237838626,0.08935309201479],[0.031951546669006,-0.066100485622883,-0.17117267847061]],[[0.044033467769623,-0.11522763967514,-0.081607960164547],[0.076675489544868,0.11221468448639,-0.03096817061305],[-0.011496214196086,0.00023995370429475,0.040876336395741]],[[-0.22305218875408,-0.085261061787605,-0.06040333211422],[0.074660494923592,-0.13745528459549,-0.028860447928309],[0.054934915155172,-0.012678134255111,0.0080628236755729]],[[-0.046856176108122,-0.16052059829235,-0.0090290121734142],[0.12731939554214,-0.092154607176781,-0.076233960688114],[-0.098310776054859,0.036996524780989,0.12730227410793]],[[0.067149475216866,0.1567075252533,0.10476365685463],[0.087071381509304,0.035100560635328,-0.033652778714895],[0.086476884782314,0.02909548021853,-0.037333536893129]],[[0.027379686012864,-0.074830949306488,0.021863859146833],[-0.047365739941597,-0.0070649781264365,0.021842204034328],[-0.051569383591413,-0.021229075267911,0.014398789964616]],[[0.013541341759264,0.031958229839802,0.054427735507488],[0.087816618382931,0.054476395249367,-0.090799428522587],[-0.016251457855105,0.02546539530158,0.05176954343915]],[[-0.084585353732109,-0.026223497465253,-0.11973915994167],[0.035379994660616,-0.200359582901,-0.10020195692778],[0.2323267608881,-0.068957105278969,-0.050489269196987]],[[0.033065281808376,0.16129156947136,0.05503711476922],[0.05471183359623,-0.0091533623635769,0.0021968968212605],[-0.033174097537994,0.0030238935723901,-0.11928121000528]],[[0.094143606722355,-0.10430351644754,-0.059062041342258],[-0.048603564500809,-0.05027899518609,-0.093197800219059],[0.058644197881222,-0.037517845630646,0.066631816327572]],[[-0.19615657627583,-0.21121303737164,-0.036753386259079],[0.050481237471104,-0.043766386806965,0.0049176039174199],[0.040852382779121,-0.074423037469387,0.068222530186176]]],[[[-0.10661976784468,0.019330499693751,-0.034294754266739],[0.041942495852709,0.06868688762188,0.062757708132267],[0.075502313673496,0.099360920488834,-0.07270148396492]],[[-0.039407908916473,0.01117252651602,-0.017843924462795],[0.061359290033579,0.0031602033413947,0.0323118083179],[0.030238313600421,-0.012957252562046,0.039682701230049]],[[0.096771374344826,0.14510706067085,0.18917471170425],[-0.067347846925259,0.047050260007381,-0.18760386109352],[0.16917769610882,0.26554867625237,-0.11314120143652]],[[-0.065426468849182,-0.31146785616875,0.090096846222878],[0.075481936335564,-0.02994529157877,0.14177232980728],[-0.05251307040453,0.101966381073,0.13333211839199]],[[-0.0090149212628603,0.026711639016867,-0.0094151562079787],[-0.043015919625759,-0.07975834608078,0.092302411794662],[-0.044734749943018,-0.038783267140388,0.024396726861596]],[[-0.28756573796272,0.11891824752092,-0.21665406227112],[0.091740511357784,0.013283046893775,0.038361813873053],[0.057479839771986,0.016917519271374,-0.035630751401186]],[[0.12866604328156,-0.25267153978348,-0.078425168991089],[0.13312214612961,-0.0054223244078457,-0.18445375561714],[-0.11738480627537,-0.071261301636696,-0.29719731211662]],[[0.19192384183407,-0.29040837287903,-0.10302141308784],[-0.05411421507597,-0.010078653693199,0.055995784699917],[0.13867290318012,-0.0036761260125786,-0.025503605604172]],[[-0.012103921733797,-0.066897042095661,-0.05517154186964],[-0.038395144045353,-0.027120541781187,-0.07875357568264],[0.0095513137057424,-0.027703780680895,0.033710654824972]],[[0.09397841989994,-0.014949549920857,-0.034203611314297],[0.050114288926125,-0.0016529834829271,-0.069759055972099],[-0.12689629197121,-0.20289690792561,-0.31225621700287]],[[-0.1088575348258,0.026107709854841,0.010828053578734],[-0.070598252117634,-0.14886881411076,-0.0039551127701998],[-0.021893152967095,-0.097235038876534,-0.068956345319748]],[[0.15016397833824,0.03893556445837,0.035262547433376],[0.1707277148962,0.15393672883511,-0.081704333424568],[-0.033034272491932,0.11278107017279,0.089799493551254]],[[0.054368413984776,0.16024512052536,-0.047195751219988],[-0.11797780543566,-0.13047221302986,-0.34296715259552],[-0.16290393471718,-0.10658461600542,-0.056160215288401]],[[0.1303121894598,-0.1682034432888,-0.081024311482906],[0.062870696187019,-0.044235352426767,0.050222154706717],[0.097666829824448,-0.0027852873317897,-0.024869723245502]],[[0.043513994663954,-0.025324773043394,0.046382423490286],[-0.04001747071743,0.044117256999016,-0.048355527222157],[0.029665751382709,0.088186591863632,-0.00077019550371915]],[[0.12615329027176,0.07897974550724,-0.073509506881237],[0.025990683585405,0.079104408621788,-0.024247746914625],[-0.2184973359108,0.1414673179388,-0.29079669713974]],[[-0.20168448984623,0.039210855960846,-0.17325276136398],[-0.070766776800156,0.017874741926789,-0.3185661137104],[0.033525917679071,-0.04793256521225,-0.12360858172178]],[[0.066907793283463,-0.063478551805019,-0.043544173240662],[0.025836352258921,-0.18217438459396,-0.06617221981287],[-0.053147610276937,0.11460040509701,0.085757650434971]],[[0.16128833591938,-0.059425838291645,-0.016329981386662],[-0.13990929722786,-0.044492240995169,-0.051114905625582],[0.014492240734398,-0.065483301877975,-0.022809555754066]],[[-0.07806022465229,-0.26399797201157,-0.026877664029598],[-0.13917581737041,0.055759608745575,0.018162928521633],[-0.15006048977375,0.00064259779173881,-0.051037345081568]],[[0.084867306053638,-0.011087785474956,-0.063016012310982],[-0.05897144973278,-0.086796052753925,-0.17036309838295],[-0.042187746614218,0.024128338322043,0.060832835733891]],[[0.020563686266541,0.21482191979885,0.28553938865662],[0.050060890614986,-0.12753430008888,-0.05745817348361],[-0.065466076135635,0.12191936373711,-0.18464848399162]],[[0.043314438313246,0.14106787741184,0.059706788510084],[0.12538884580135,-0.0085979215800762,0.086763799190521],[-0.18010787665844,-0.065564759075642,-0.062124729156494]],[[-0.0045802821405232,0.049111932516098,-0.062130235135555],[-0.095870599150658,-0.035022988915443,-0.16530001163483],[-0.09478759765625,-0.25724801421165,0.020408229902387]],[[-0.17934782803059,-0.20638003945351,-0.17393499612808],[-0.04415325447917,-0.027816256508231,0.0010485979728401],[-0.076185770332813,0.0053381444886327,-0.044451232999563]],[[-0.098115280270576,-0.042451296001673,0.12306296825409],[0.018156122416258,-0.25100594758987,0.087407469749451],[-0.091568648815155,-0.019112112000585,-0.05764289572835]],[[0.010723790153861,0.11025045067072,0.019402511417866],[-0.007142142392695,-0.064167268574238,0.15266801416874],[0.010849456302822,-0.043689902871847,-0.062318790704012]],[[0.034751318395138,-0.069014653563499,0.12762930989265],[-0.099419839680195,-0.14482018351555,-0.061520095914602],[-0.1051861345768,-0.020908841863275,0.12553404271603]],[[0.10010755807161,0.076594963669777,0.13656897842884],[0.010020862333477,0.049655001610518,0.078122489154339],[0.15400195121765,0.044587053358555,-0.038550935685635]],[[0.055461682379246,0.031057015061378,0.022110514342785],[0.054485265165567,-0.15670603513718,-0.0044947504065931],[-0.0055429278872907,-0.013919411227107,-0.091061986982822]],[[-0.041240606456995,-0.018315361812711,0.010201826691628],[-0.06443127989769,0.036509640514851,0.043121937662363],[-0.2190955132246,-0.093087375164032,0.067710854113102]],[[-0.15720354020596,-0.10358553379774,-0.065016686916351],[-0.11985455453396,0.085208483040333,-0.097148090600967],[0.084129400551319,0.10150956362486,-0.10355695337057]]],[[[-0.14736674726009,0.094740159809589,-0.10600893944502],[-0.21142636239529,0.058999970555305,-0.047922175377607],[-0.021365037187934,-0.086466960608959,-0.044744234532118]],[[-0.0033263107761741,-0.073924772441387,0.034531239420176],[-0.12086583673954,0.11003125458956,-0.011617400683463],[0.065445058047771,-0.031918663531542,0.05465142428875]],[[0.18198198080063,-0.1969702988863,-0.056711740791798],[0.017435586079955,-0.042787585407495,-0.13105688989162],[0.04847315326333,0.05530334636569,0.12550903856754]],[[-0.044274564832449,-0.13685511052608,0.065417468547821],[0.065253354609013,-0.014440983533859,0.075641177594662],[0.092720218002796,-0.19734080135822,0.12817476689816]],[[-0.0018419201951474,0.035215776413679,0.031664066016674],[0.032461725175381,-0.068542800843716,0.040127884596586],[-0.063861519098282,0.1292272657156,0.021785343065858]],[[0.037862561643124,-0.036538202315569,-0.12024183571339],[0.063624925911427,0.075649365782738,-0.11958653479815],[-0.10709550976753,-0.057584889233112,-0.022674512118101]],[[0.037678383290768,-0.19849106669426,-0.16579742729664],[0.068483524024487,-0.079123057425022,-0.083763025701046],[0.096327930688858,-0.099830783903599,-0.12025111913681]],[[-0.21204589307308,0.062120579183102,-0.16056111454964],[-0.051144357770681,0.021878302097321,0.052702780812979],[0.005006764549762,0.097712874412537,-0.03733579441905]],[[-0.02683519013226,0.086302250623703,0.090820334851742],[0.023722486570477,0.011978452093899,-0.0435502640903],[-0.085712872445583,-0.070189513266087,0.091656520962715]],[[0.078483574092388,-0.047590550035238,0.0021320269443095],[-0.043828517198563,-0.065070688724518,-0.10416644066572],[0.058109797537327,-0.0019659723620862,-0.07978717237711]],[[-0.058325160294771,-0.039645720273256,-0.10075183957815],[-0.0071404408663511,0.070391438901424,0.025194114074111],[0.05093877017498,0.088987857103348,-0.018110109493136]],[[-0.051701806485653,-0.12518867850304,-0.15512099862099],[-0.08258169144392,0.033308211714029,-0.15195298194885],[0.077341474592686,-0.058830503374338,-0.014196815900505]],[[-0.1053556278348,0.084535665810108,0.0041199987754226],[-0.27014461159706,-0.13801929354668,-0.18791899085045],[0.012304581701756,-0.045992314815521,0.085278198122978]],[[-0.087517358362675,0.055523980408907,-0.14911316335201],[-0.075856536626816,-0.020658891648054,-0.10182478278875],[-0.12920536100864,-0.093806155025959,-0.17847985029221]],[[0.11152619868517,-0.068524226546288,-0.047948740422726],[-0.043126754462719,-0.050460826605558,0.094205930829048],[0.068713128566742,0.047405421733856,-0.085582904517651]],[[-0.047969900071621,-0.085669226944447,0.042279414832592],[0.062050703912973,-0.098604768514633,0.045492682605982],[-0.11464612931013,0.037767712026834,-0.0087937107309699]],[[0.10274282842875,-0.096519291400909,0.0096097989007831],[-0.099081605672836,-0.03758642449975,-0.0088546006008983],[0.018999503925443,0.0079296072944999,-0.088112637400627]],[[-0.0020932250190526,0.030440403148532,0.013031541369855],[-0.093029141426086,-0.060591317713261,0.039040189236403],[-0.038445103913546,-0.070120468735695,0.083635754883289]],[[-0.016523627564311,-0.048185743391514,0.15324296057224],[-0.088894702494144,-0.052396439015865,0.042912162840366],[0.11382206529379,0.026264697313309,-0.075190775096416]],[[0.0031700313556939,-0.061170674860477,0.022125856950879],[-0.092846445739269,-0.056727208197117,-0.048818316310644],[-0.042607001960278,-0.24345017969608,-0.021413708105683]],[[0.14278101921082,-0.024764953181148,-0.12114600837231],[-0.0032941834069788,-0.12043672055006,0.023662133142352],[-0.12522082030773,0.047683577984571,0.013935457915068]],[[-0.043516874313354,-0.059841837733984,0.11488807946444],[-0.051839970052242,-0.11138846725225,0.091979525983334],[0.076736159622669,-0.091812387108803,0.11014403402805]],[[-0.010514332912862,-0.06343125551939,-0.049114942550659],[-0.057810302823782,-0.056399069726467,0.2291344255209],[-0.016175338998437,-0.073384203016758,-0.003597954288125]],[[-0.12525776028633,0.026043003425002,-0.024381330236793],[0.0078882705420256,-0.083418294787407,-0.031523257493973],[0.10733815282583,-0.011082988232374,0.18568027019501]],[[-0.079521685838699,-0.059617184102535,0.041966233402491],[-0.14118313789368,0.0022806085180491,0.086301796138287],[0.037848677486181,-0.063069723546505,0.069953635334969]],[[0.09694929420948,0.047855023294687,-0.1193581148982],[-0.10171452909708,0.21771648526192,-0.048584725707769],[0.048737954348326,0.029918843880296,-0.091578222811222]],[[-0.052485760301352,0.079616077244282,-0.033297456800938],[0.0090021155774593,0.023613141849637,0.018308011814952],[-0.0089079346507788,-0.023179864510894,-0.016435978934169]],[[-0.10496082156897,0.07922425866127,0.033763125538826],[0.010831845924258,0.1445486843586,0.18644392490387],[0.052789799869061,0.07408419251442,-0.12575860321522]],[[-0.2035536468029,0.010896432213485,-0.064469717442989],[0.02319691516459,0.092583373188972,0.014658252708614],[0.069887705147266,-0.14230272173882,-0.20462171733379]],[[0.053749423474073,-0.00087642861763015,-0.042554672807455],[-0.20159800350666,-0.040380455553532,-0.011793372221291],[0.1100535094738,-0.037273574620485,0.10080061107874]],[[0.039588637650013,0.040716607123613,0.035081561654806],[0.043139465153217,-0.0084401490166783,-0.067461036145687],[-0.078396946191788,-0.015787318348885,0.0029005936812609]],[[-0.01865572296083,-0.01723856292665,0.091112025082111],[-0.050141338258982,-0.14348746836185,-0.08446254581213],[-0.15227648615837,0.043074361979961,0.15718770027161]]],[[[0.072820864617825,-0.061471946537495,0.060544718056917],[0.043543037027121,-0.086349375545979,-0.019283231347799],[0.017115527763963,0.015964325517416,0.056472308933735]],[[-0.031802348792553,-0.091517448425293,-0.088015466928482],[-0.10502663254738,-0.025164797902107,-0.058629341423512],[-0.1802593767643,-0.019118301570415,-0.096416182816029]],[[0.050707243382931,-0.04198594763875,0.080555789172649],[-0.0032186422031373,-0.015502559952438,-0.0052169160917401],[0.10499995946884,0.10935492813587,-0.024878367781639]],[[0.053666405379772,-0.023784028366208,0.017437690868974],[-0.020099455490708,-0.032177407294512,-0.044227715581656],[-0.016149401664734,0.04356549680233,-0.021256554871798]],[[-0.0036729506682605,-0.17297253012657,-0.11103648692369],[-0.16033630073071,0.07745485752821,-0.080718815326691],[-0.025317987427115,-0.084359966218472,-0.040549419820309]],[[-0.031376473605633,-0.036508720368147,-0.034701868891716],[0.0054039722308517,0.085876531898975,0.0070639681071043],[-0.020957263186574,-0.040670201182365,0.057582933455706]],[[-0.027556391432881,-0.0046626478433609,0.084464646875858],[0.019135748967528,0.033534731715918,0.03558087348938],[-0.034019209444523,-0.013170349411666,-0.049268122762442]],[[-0.014172047376633,-0.046277020126581,-0.046874027699232],[0.04766871035099,-0.031382147222757,-0.052992329001427],[-0.037612926214933,-0.028161402791739,0.10919100046158]],[[-0.0045929742045701,-0.12734661996365,-0.051667895168066],[0.035265557467937,-0.11339142173529,0.072457440197468],[0.0069656674750149,-0.097975760698318,-0.10296423733234]],[[0.11379676312208,-0.1790287643671,-0.058314263820648],[0.042326703667641,-0.054395828396082,-0.0085763493552804],[0.0074421972967684,-0.13698607683182,0.03202323243022]],[[0.041412673890591,-0.0039219199679792,-0.011780318804085],[-0.10798782110214,-0.040058799088001,-0.017251269891858],[-0.052042458206415,-0.014138943515718,-0.014064543880522]],[[-0.015264418907464,0.041971914470196,-0.12739525735378],[-0.029983526095748,-0.05845145508647,0.1027799397707],[-0.019205819815397,0.048054378479719,-0.018147196620703]],[[-0.014372031204402,-0.10287912935019,0.0070978431031108],[0.029873009771109,-0.05610005185008,-0.047307152301073],[0.11347045004368,0.094636157155037,-0.015177293680608]],[[0.067067302763462,0.007105496712029,-0.006204788107425],[-0.041804812848568,-0.035202324390411,-0.081401810050011],[0.034617576748133,-0.092828519642353,0.12764932215214]],[[-0.08843570202589,-0.19819235801697,0.013488073833287],[-0.16349543631077,-0.027354046702385,-0.13344970345497],[-0.1064313352108,-0.11976862698793,-0.18267354369164]],[[-0.044531643390656,0.036614112555981,0.0084872879087925],[0.011830557137728,-0.021892417222261,0.084420941770077],[-0.021260146051645,0.035223051905632,0.022488323971629]],[[0.063202828168869,0.0052616624161601,0.019051089882851],[0.022254848852754,-0.010987712070346,-0.011600939556956],[-0.074821293354034,-0.030030703172088,0.044729005545378]],[[0.029486855491996,0.030140362679958,-0.054065424948931],[-0.0023106981534511,0.087542109191418,0.060350891202688],[-0.092432074248791,-0.079265221953392,-0.12587530910969]],[[0.047700230032206,0.044452600181103,-0.00071030773688108],[0.1233644336462,-0.068106465041637,0.012227059341967],[0.073497802019119,-0.01880475319922,0.15838521718979]],[[0.049982666969299,-0.041234955191612,0.091695286333561],[-0.042947951704264,-0.079277984797955,-0.0078594880178571],[-0.033173482865095,-0.01448252890259,0.057498198002577]],[[-0.038274936378002,0.044704917818308,0.058162115514278],[-0.11567248404026,0.044138580560684,0.055493332445621],[-0.081096962094307,-0.049798469990492,-0.041514839977026]],[[0.037026528269053,0.0083112642168999,-0.066460333764553],[0.0048784399405122,-0.068302102386951,0.053161181509495],[0.030014460906386,-0.032281931489706,-0.00026968846214004]],[[-0.039451174438,0.0019048061221838,0.083671376109123],[-0.16909697651863,-0.047318954020739,0.0188945569098],[-0.055950272828341,0.044095367193222,-0.021991565823555]],[[0.06616248935461,-0.0042785997502506,0.039324786514044],[-0.032500755041838,0.029710242524743,-0.027610838413239],[-0.065079070627689,-0.017730947583914,-0.019557952880859]],[[0.012961056083441,0.060876090079546,0.004252387676388],[-0.043641943484545,-0.11551794409752,-0.13808281719685],[0.037986502051353,-0.01674229837954,-0.024199888110161]],[[-0.0018441225402057,0.090735971927643,0.013760710135102],[-0.0077721201814711,0.00053237215615809,0.034180417656898],[0.0095522152259946,-0.10189197212458,0.073236428201199]],[[0.0034771671053022,-0.064031854271889,-0.017609786242247],[0.10426050424576,0.06777535378933,0.033942800015211],[-0.0057176509872079,0.021066585555673,-0.10254763066769]],[[0.0049829049967229,-0.084346510469913,0.070790380239487],[-0.036011505872011,-0.014486953616142,-0.021910455077887],[0.036898571997881,-0.038925886154175,0.048364635556936]],[[-0.03338211774826,-0.0068590636365116,-0.037508636713028],[-0.031206928193569,-0.040876671671867,-0.032945349812508],[0.090556174516678,0.090061388909817,-0.11616354435682]],[[-0.0046480852179229,-0.12459511309862,-0.088173940777779],[0.071041487157345,0.027230966836214,-0.11382740736008],[0.038865461945534,-0.033016573637724,-0.092275120317936]],[[0.091458112001419,-0.17241294682026,-0.0098231434822083],[-0.0025873137637973,0.057276666164398,-0.14048384130001],[0.079127542674541,0.050012733787298,-0.011997346766293]],[[-0.11015629768372,0.0031709775794297,-0.014430793002248],[-0.041096579283476,0.060508340597153,-0.02968767657876],[0.0044852271676064,0.025270802900195,0.0068032196722925]]],[[[-0.02991253323853,0.10725411772728,-0.044535502791405],[-0.033223118633032,-0.053647056221962,0.0039529837667942],[0.009214567951858,-0.14388646185398,0.043867748230696]],[[0.027034120634198,-0.004016088321805,0.034520253539085],[0.05119701102376,-0.1313973069191,0.00077023537596688],[-0.022723419591784,-0.12650971114635,0.088968850672245]],[[-0.043569032102823,0.093475237488747,0.059221360832453],[0.05372953414917,-0.012815713882446,0.020702198147774],[-0.060636986047029,-0.047756049782038,0.020607342943549]],[[0.012263666838408,0.073137164115906,-0.065997011959553],[0.094985842704773,-0.014551555737853,-0.020555293187499],[-0.10589522123337,0.052104894071817,-0.030446631833911]],[[-0.013788793236017,0.048800256103277,0.1255619674921],[-0.01734365709126,0.10121233016253,0.14228641986847],[0.079490877687931,-0.014136476442218,-0.0036665392108262]],[[-0.054351776838303,0.12340784072876,0.16385033726692],[-0.036435104906559,-0.03016017191112,-0.058900535106659],[0.073951184749603,-0.046944886445999,-0.061815943568945]],[[-0.15439702570438,0.011943190358579,0.037377141416073],[-0.08546507358551,-0.07423309981823,0.09629175812006],[-0.080768384039402,-0.047883298248053,0.021602069959044]],[[0.12519733607769,0.082648858428001,0.0055497218854725],[-0.22986947000027,-0.21352978050709,0.00074213853804395],[0.097695663571358,0.050535023212433,0.013214240781963]],[[0.044632643461227,0.048612043261528,0.081575728952885],[0.0080307004973292,0.14760474860668,0.054156113415956],[-0.2269534021616,-0.23971545696259,-0.12707841396332]],[[-0.041101049631834,-0.066013477742672,-0.11251720041037],[-0.051747128367424,0.17618495225906,0.023584771901369],[0.056773122400045,-0.045572154223919,-0.011304299347103]],[[0.082334816455841,-0.014593342319131,0.013190433382988],[-0.028087589889765,0.10846517980099,0.0046368003822863],[-0.051695387810469,0.061914809048176,-0.0048566828481853]],[[0.15199640393257,0.11612829566002,-0.031455405056477],[0.06075332686305,-0.21095448732376,-0.20401051640511],[-0.13832895457745,-0.03413924574852,0.088042683899403]],[[0.055601518601179,0.11979139596224,-0.10731279104948],[-0.052652925252914,0.10112252086401,0.067805901169777],[-0.2288816422224,-0.23542040586472,-0.056022521108389]],[[0.021944496780634,-0.063336335122585,-0.067655436694622],[0.037346486002207,-0.073506444692612,0.011643866077065],[-0.0075030592270195,-0.010402365587652,0.16099458932877]],[[0.10449505597353,0.096894159913063,0.113246999681],[-0.062346119433641,0.00010381926404079,-0.026186045259237],[-0.062493525445461,-0.092693842947483,0.043528489768505]],[[-0.078761212527752,0.0023616687394679,-0.04900173842907],[-0.031960465013981,0.058819908648729,0.034328736364841],[0.16521248221397,-0.050602756440639,0.013329586014152]],[[-0.1758076697588,-0.056415200233459,-0.019048757851124],[0.011356994509697,-0.016126459464431,0.0017308390233666],[-0.025223538279533,-0.013843415305018,-0.15561382472515]],[[0.04723122343421,-0.18508495390415,0.06367015093565],[0.026841286569834,0.10626530647278,-0.031668301671743],[0.16282849013805,-0.09298837184906,-0.053954359143972]],[[0.0027495415415615,0.037830669432878,0.059049930423498],[0.16054834425449,0.11944338679314,-0.019393233582377],[-0.058700077235699,-0.11391864717007,-0.033481083810329]],[[0.031239686533809,0.067045867443085,0.051662091165781],[-0.12603282928467,-0.27391517162323,0.058600425720215],[-0.02954538166523,0.0056862630881369,0.13638062775135]],[[0.014427736401558,0.098885662853718,0.021902738139033],[-0.041589550673962,-0.085647843778133,-0.0088137853890657],[-0.0050672888755798,-0.055523082613945,0.018348816782236]],[[0.024468204006553,-0.038140337914228,0.061948891729116],[0.0083324834704399,-0.14109420776367,0.047865737229586],[-0.033648304641247,0.049741446971893,0.039677485823631]],[[0.0754080042243,-0.078298501670361,0.19874049723148],[-0.1111826300621,-0.025551602244377,-0.03998339921236],[0.14102533459663,-0.023570418357849,0.19567184150219]],[[-0.018344681710005,0.069737754762173,0.1438685208559],[0.035339813679457,-0.091055028140545,0.041927274316549],[-0.0074983048252761,0.062259301543236,0.1359700858593]],[[-0.10809959471226,0.0088552413508296,-0.089546762406826],[0.0068559222854674,0.046469420194626,0.16417148709297],[-0.094470359385014,-0.012028213590384,0.15850888192654]],[[-0.058305721729994,-0.14166666567326,0.050121400505304],[-0.12418752163649,0.02159558981657,-0.0036730149295181],[-0.074837185442448,0.21236988902092,0.059877946972847]],[[0.076203890144825,0.11157941073179,-0.064888454973698],[0.011554229073226,-0.06282814592123,0.099727317690849],[0.038096878677607,-0.044823743402958,-0.025508964434266]],[[-0.19205677509308,0.1573707908392,-0.10213580727577],[-0.099513106048107,-0.021541753783822,0.20401556789875],[0.15979073941708,-0.10868708789349,0.10259989649057]],[[0.027210604399443,0.23976451158524,-0.0008026507566683],[-0.16836692392826,-0.062030833214521,-0.1181126832962],[-0.11178769171238,-0.19349259138107,0.058585379272699]],[[0.051606964319944,0.070562347769737,0.066933140158653],[-0.085255838930607,0.050415150821209,0.055013351142406],[-0.10670917481184,0.043811809271574,-0.058369819074869]],[[0.050368282943964,0.007228652946651,0.037046246230602],[-0.25529831647873,-0.016873875632882,-0.064428262412548],[-0.011884986422956,-0.003086585085839,0.037495568394661]],[[-0.011502933688462,0.038461178541183,0.021347297355533],[-0.13336896896362,0.0028853619005531,-0.048769999295473],[-0.026374159380794,0.1126359552145,0.021527480334044]]],[[[-0.093725137412548,-0.0054177539423108,0.033161357045174],[-0.18599377572536,-0.074245311319828,-0.12989573180676],[-0.17671045660973,0.065564133226871,-0.1954482793808]],[[-0.01092229411006,0.082605272531509,-0.00022358185378835],[-0.020859260112047,-0.021256301552057,-0.0097319418564439],[-0.010900078341365,-0.0010394416749477,0.051709651947021]],[[-0.047510333359241,0.18955872952938,-0.076526775956154],[-0.084628827869892,-0.095379769802094,0.022383825853467],[0.077942803502083,0.062032334506512,-0.025985514745116]],[[-0.087186962366104,0.080732308328152,0.029938723891973],[-0.24054101109505,-0.010374985635281,0.01693251170218],[-0.09968539327383,0.017468867823482,-0.037199568003416]],[[-0.0097173908725381,-0.12804998457432,0.0084959175437689],[0.058009307831526,0.066259756684303,-0.083138279616833],[0.028736269101501,0.077646240592003,-0.0078661572188139]],[[0.013769044540823,-0.030995573848486,0.14567197859287],[-0.017797417938709,-0.071940071880817,-0.081493236124516],[-0.22904862463474,0.18951819837093,0.0019893685821444]],[[-0.052692860364914,-0.04905927926302,0.046298131346703],[0.022186433896422,0.026535332202911,-0.06069378182292],[-0.18482078611851,-0.12521214783192,-0.041118707507849]],[[-0.0038894284516573,0.027334289625287,-0.0183584112674],[0.069633089005947,0.039915662258863,-0.23360702395439],[0.10123332589865,0.01698655821383,0.14159248769283]],[[-0.037967775017023,0.10326420515776,0.054368477314711],[-0.06998660415411,-0.0013990461593494,-0.0016524803359061],[-0.066147588193417,-0.14040294289589,-0.048252321779728]],[[-0.1099264100194,0.058426752686501,0.14640115201473],[-0.17404992878437,0.15429396927357,0.010412882082164],[-0.31361076235771,0.036439087241888,-0.10839514434338]],[[0.024595178663731,-0.055279530584812,0.0099025936797261],[-0.030946480110288,-0.15503220260143,-0.10999571532011],[-0.027276502922177,-0.0083828028291464,-0.15731129050255]],[[0.057768404483795,0.15253812074661,-0.096930988132954],[0.00034007168142125,0.028535159304738,0.035857114940882],[0.086463935673237,-0.025705944746733,-0.046803940087557]],[[-0.049792397767305,-0.070964492857456,-0.096855357289314],[0.050517257302999,-0.018448982387781,0.063263192772865],[0.033410463482141,-0.1955533772707,-0.0026919182855636]],[[-0.12878160178661,0.023401584476233,0.053858067840338],[-0.060785863548517,0.027489060536027,-0.00031196442432702],[0.0010381758911535,-0.079760566353798,-0.08101487159729]],[[-0.039617758244276,-0.03447575122118,0.068542376160622],[0.0022414142731577,0.015299021266401,0.029800647869706],[-0.065457597374916,-0.02698645927012,0.073573209345341]],[[0.083570592105389,-0.15731431543827,0.15163537859917],[0.13040994107723,-0.054746069014072,-0.10461161285639],[0.05809061229229,0.076564267277718,0.079257063567638]],[[-0.038318078964949,-0.002332208212465,0.050027616322041],[0.16642615199089,0.087081916630268,0.055134706199169],[0.11063652485609,-0.13613447546959,0.015348769724369]],[[-0.027081063017249,0.0074150124564767,-0.0095646111294627],[0.012167451903224,0.059921357780695,0.060429245233536],[-0.19763496518135,0.10680001974106,0.097188234329224]],[[-0.095455445349216,-0.12975741922855,0.012591385282576],[-0.011272638104856,0.054927453398705,0.18730826675892],[-0.1882041990757,-0.023248676210642,-0.20671512186527]],[[-0.051465980708599,-0.11356841772795,0.025860413908958],[0.022914867848158,-0.038906004279852,-0.034816041588783],[-0.04143039137125,-0.086216233670712,0.037449158728123]],[[-0.025154463946819,-0.033829305320978,0.088342316448689],[-0.036308713257313,-0.039920344948769,-0.046341210603714],[0.066601417958736,0.032396215945482,0.061719074845314]],[[0.14648340642452,-0.15678606927395,0.0091067589819431],[-0.1171553581953,0.12705232203007,-0.011460392735898],[-0.097744934260845,-0.031598936766386,-0.15144518017769]],[[0.15906128287315,-0.016556842252612,0.038784272968769],[-0.15431195497513,-0.040722101926804,-0.12989045679569],[0.013073770329356,0.093016214668751,0.11265690624714]],[[0.029014673084021,-0.1719753742218,-0.023802997544408],[0.046534638851881,-0.01964558660984,-0.10057736188173],[-0.0077991606667638,0.078465543687344,-0.072886481881142]],[[-0.036446709185839,-0.022093283012509,0.16052511334419],[-0.20428232848644,0.062028706073761,0.048202641308308],[-0.13669356703758,-0.063724547624588,0.0085130222141743]],[[0.088681407272816,-0.086301006376743,0.039913006126881],[0.13618721067905,-0.017462367191911,0.038973201066256],[-0.0029550448525697,-0.10775431990623,-0.046813324093819]],[[0.0044534327462316,-0.0028717119712383,-0.016364045441151],[0.04609452933073,0.03703273832798,-0.092148832976818],[-0.041441690176725,-0.0033918372355402,0.068984620273113]],[[-0.30879256129265,-0.09867399930954,-0.086386375129223],[-0.18480411171913,-0.089372865855694,0.2149406671524],[-0.049716256558895,-0.039470665156841,0.041602551937103]],[[0.043717157095671,0.01392684597522,-0.015707198530436],[0.22535400092602,-0.0073833051137626,-0.028971690684557],[0.091455742716789,0.073853977024555,-0.023168362677097]],[[0.024686776101589,-0.10419180244207,-0.11322305351496],[0.096241474151611,-0.0082683237269521,0.025994561612606],[0.025574985891581,0.04939204826951,-0.058516822755337]],[[-0.17496144771576,-0.015023857355118,-0.12150046974421],[-0.028008611872792,0.080099433660507,-0.00026965004508384],[0.058092150837183,-0.08629434555769,0.069871388375759]],[[0.013346398249269,0.10690305382013,0.087428294122219],[-0.12644907832146,-0.02903968654573,0.072074547410011],[-0.19400510191917,-0.19540396332741,-0.049884617328644]]],[[[0.014095816761255,-0.08083388209343,-0.043496787548065],[-0.020260117948055,0.045362431555986,-0.091504581272602],[0.12288299947977,0.15628315508366,-0.047598399221897]],[[-0.10394147783518,0.0015917054843158,0.10983028262854],[-0.076516501605511,0.080847688019276,-0.065537251532078],[0.043624117970467,0.016135778278112,0.0064371516928077]],[[0.18397961556911,-0.028213948011398,0.14542935788631],[0.0093477703630924,0.071778543293476,-0.16882303357124],[0.10624172538519,0.2782484292984,-0.12615132331848]],[[-0.16831603646278,-0.073466747999191,-0.18705397844315],[0.12392099946737,0.057840004563332,0.0053703002631664],[0.063918948173523,0.16415913403034,0.13258631527424]],[[-0.045000988990068,0.080201335251331,-0.10205482691526],[-0.039000205695629,0.16930973529816,-0.10346151888371],[-0.00025597147759981,0.087938606739044,-0.042031649500132]],[[-0.017830612137914,-0.039176974445581,0.035075534135103],[-0.023552229627967,-0.13866865634918,-0.09073031693697],[0.10935552418232,-0.14767943322659,0.11883250623941]],[[0.050159752368927,-0.098618403077126,-0.12961699068546],[-0.10317664593458,0.060650866478682,-0.041912566870451],[-0.21599815785885,-0.22281935811043,0.10606848448515]],[[-0.026334090158343,0.073296062648296,0.010197919793427],[-0.15143704414368,-0.021574087440968,0.017895318567753],[0.14140065014362,0.035856112837791,0.020925784483552]],[[-0.11812701076269,0.060031570494175,0.085809297859669],[-0.067206300795078,-0.015831844881177,-0.075177051126957],[0.015165882185102,0.070470780134201,0.1096740141511]],[[0.091813400387764,-0.082482017576694,-0.0947570130229],[0.010313508100808,0.088506124913692,-0.095099359750748],[-0.16552859544754,0.060508996248245,0.051847230643034]],[[0.057781144976616,0.05437682941556,-0.035143923014402],[0.1631718724966,0.1195921972394,-0.11452393978834],[-0.031608950346708,0.12138596922159,-0.18418084084988]],[[-0.043566554784775,-0.012255660258234,-0.030641177669168],[0.052781142294407,0.15807838737965,0.011231278069317],[-0.17913776636124,0.086097694933414,0.046069391071796]],[[-0.058974757790565,-0.12115015089512,-0.14601035416126],[0.029847113415599,0.093682080507278,-0.011254573240876],[-0.10822480171919,0.057372611016035,0.074744254350662]],[[-0.13224405050278,-0.17992435395718,-0.17442311346531],[-0.023316135630012,0.085940442979336,0.21424375474453],[0.00034635746851563,0.096377246081829,0.0081028193235397]],[[0.0058476575650275,-0.052599471062422,0.051727909594774],[0.00723722204566,0.093257643282413,-0.0050319964066148],[-0.12167228013277,0.064006999135017,-0.00036212828126736]],[[-0.054807141423225,0.11441567540169,0.027133630588651],[-0.069644130766392,0.21487991511822,0.0030412862543017],[-0.0093619609251618,-0.26489585638046,-0.063164785504341]],[[-0.0530487857759,-0.16108001768589,-0.11616214364767],[-0.014660071581602,-0.071465067565441,-0.015526280738413],[-0.082690596580505,-0.10656382888556,-0.038811765611172]],[[0.067787609994411,-0.063723474740982,-0.048356931656599],[-0.0011328014079481,0.14446467161179,-0.14354611933231],[-0.025085715577006,0.070956163108349,-0.20822994410992]],[[-0.46246325969696,-0.0071062529459596,0.031007941812277],[-0.02039566449821,0.077220894396305,0.091164328157902],[0.11486792564392,0.058008380234241,0.13159772753716]],[[-0.077124089002609,-0.10750959813595,-0.19773505628109],[0.039301533252001,-0.13639150559902,-0.062043182551861],[0.17662489414215,-0.078374959528446,0.26599273085594]],[[-0.18876175582409,0.07438051700592,0.086800582706928],[-0.021771406754851,0.049099937081337,-0.1071285456419],[0.030764846131206,0.0094298031181097,-0.15985344350338]],[[-0.13937950134277,0.15190733969212,0.026712656021118],[0.10202150046825,-0.099612161517143,0.20450229942799],[-0.031218431890011,-0.0048924023285508,0.010235187597573]],[[-0.02627182379365,-0.039722669869661,0.056957501918077],[0.17357732355595,-0.031362574547529,0.12730208039284],[-0.020144529640675,-0.059122711420059,0.11308454722166]],[[0.092172786593437,-0.020107047632337,-0.021980537101626],[-0.056676913052797,-0.21421693265438,-0.13082218170166],[0.064756609499454,-0.004014166072011,0.021505562588573]],[[-0.050493333488703,-0.0308245588094,-0.060064740478992],[-0.096409730613232,-0.053169928491116,0.02736547216773],[-0.074304640293121,-0.017963403835893,0.043853085488081]],[[0.034935146570206,-0.012628911063075,0.091983951628208],[-0.107212677598,-0.027177326381207,-0.0010494530433789],[0.019855383783579,-0.15841649472713,0.007765871938318]],[[0.18598328530788,-0.00022874015849084,0.069225303828716],[0.02055156417191,0.018418034538627,-0.099058374762535],[-0.061973080039024,0.086501091718674,-0.079987458884716]],[[-0.076544731855392,0.043471604585648,0.023191899061203],[0.064018860459328,-0.038845375180244,-0.045680105686188],[-0.19391888380051,0.066090457141399,0.027607278898358]],[[-0.34038063883781,0.045305822044611,0.10069093108177],[0.0078272158280015,0.078416161239147,-0.042139317840338],[-0.11575090140104,-0.095886990427971,0.10147681087255]],[[0.10042913258076,-0.0013304870808497,-0.038315538316965],[0.0055941119790077,-0.067852906882763,0.041324459016323],[-0.043120220303535,0.10022508352995,-0.14370203018188]],[[-0.017938815057278,-0.090969003736973,0.0056189554743469],[0.0037808595225215,-0.038372404873371,0.0043344679288566],[-0.064342990517616,0.21233451366425,-0.031755812466145]],[[-0.093585968017578,-0.093359656631947,-0.039248857647181],[-0.071828745305538,0.12588243186474,0.027134254574776],[0.036232717335224,-0.011155532673001,0.10283535718918]]],[[[-0.052663881331682,-0.13157796859741,0.049163065850735],[-0.11086475104094,0.013007299043238,-0.06604128330946],[-0.091240882873535,-0.030575357377529,-0.053934242576361]],[[-0.0012624700320885,0.081844262778759,-0.14736734330654],[0.021973436698318,-0.032924044877291,-0.062806814908981],[0.011330373585224,-0.021154286339879,-0.16090475022793]],[[-0.073261521756649,-0.051452174782753,-0.022435642778873],[0.03013558126986,0.16690503060818,0.1965504437685],[-0.1675873696804,0.048127505928278,0.011250033974648]],[[-0.053442358970642,0.10352443158627,-0.011942905373871],[-0.12013076990843,0.075895167887211,-0.16674686968327],[-0.2043743878603,0.026988795027137,-0.051161948591471]],[[-0.012445106171072,-0.16682352125645,0.073667012155056],[-0.09077874571085,-0.17784909904003,0.099547274410725],[-0.13447937369347,-0.20361050963402,-0.041395220905542]],[[0.073229022324085,-0.20969639718533,0.1436679661274],[-0.037867251783609,0.025880333036184,-0.012139063328505],[0.20366080105305,-0.017976557835937,-0.15828289091587]],[[-0.10436231642962,-0.071010656654835,0.10767178237438],[-0.03573852032423,-0.022659603506327,0.043034728616476],[0.095447912812233,0.080066911876202,0.10219614207745]],[[-0.06675536185503,0.029288835823536,0.15638741850853],[-0.13747039437294,0.059204131364822,-0.0020578736439347],[-0.22356992959976,-0.066528953611851,-0.041195284575224]],[[-0.061856366693974,-0.034155335277319,0.088246636092663],[0.020446663722396,-0.012125699780881,-0.012512969784439],[-0.0054999180138111,-0.13332891464233,-0.048307426273823]],[[-0.19980350136757,-0.017702501267195,-0.053130481392145],[-0.096411854028702,0.012158014811575,-0.022352041676641],[-0.12837420403957,0.0061134793795645,0.070506878197193]],[[-0.18025287985802,0.025926535949111,8.3934464782942e-05],[-0.017832905054092,-0.082706861197948,0.044435121119022],[-0.027441158890724,-0.073111817240715,0.049610797315836]],[[0.10313110053539,-0.219980224967,0.0056190872564912],[0.0400928594172,0.073040559887886,0.0030966866761446],[-0.13386891782284,0.057503901422024,0.10441417992115]],[[0.026519082486629,-0.13207054138184,0.03085670620203],[-0.010147375054657,0.00060652830870822,0.10594145208597],[-0.032833959907293,-0.073928631842136,0.13331447541714]],[[-0.070415884256363,0.087629400193691,-0.10346627235413],[-0.020621182397008,-0.077041007578373,-0.073375716805458],[0.073893897235394,-0.052132472395897,0.0094592925161123]],[[0.081152454018593,-0.029332438483834,0.037958689033985],[-0.063784971833229,-0.029949121177197,0.027479840442538],[-0.018840350210667,0.054518982768059,0.12036158144474]],[[0.022554313763976,0.021170923486352,-0.10495833307505],[-0.12966422736645,-0.16278997063637,0.086119949817657],[0.14211197197437,-0.21420367062092,0.17444479465485]],[[0.057452261447906,-0.12625259160995,-0.11198849976063],[0.14053791761398,-0.035185113549232,-0.19151300191879],[0.047611504793167,0.040849316865206,-0.025896796956658]],[[0.057784754782915,0.10753548145294,0.038666617125273],[-0.013198286294937,-0.085730366408825,-0.13728852570057],[-0.11133404821157,0.034984637051821,-0.058991920202971]],[[-0.047295860946178,0.10930118709803,0.18855479359627],[-0.065125957131386,-0.18134543299675,-0.064189359545708],[-0.021938828751445,0.11292254179716,-0.35324895381927]],[[-0.35522469878197,0.046822726726532,0.060460213571787],[-0.20021475851536,0.041569750756025,0.092935867607594],[0.070463553071022,-0.23759113252163,0.10414110869169]],[[-0.2296112626791,0.016305331140757,0.013455746695399],[-0.032278783619404,-0.033574461936951,0.093475066125393],[-0.075153991580009,0.046020817011595,0.12665402889252]],[[0.051039185374975,0.084322571754456,-0.17114096879959],[0.050959151238203,-0.17390774190426,-0.10889557749033],[0.29428425431252,-0.013108158484101,-0.15027837455273]],[[0.01556642446667,-0.07723493129015,0.11678213626146],[0.044453017413616,-0.083439417183399,-0.03039626032114],[-0.077685661613941,-0.043199975043535,0.10111779719591]],[[-0.057670459151268,-0.14218509197235,-0.0082024903967977],[0.015026277862489,0.03452305868268,0.021190477535129],[-0.21654467284679,-0.17072923481464,0.075942888855934]],[[-0.098897695541382,0.061913799494505,0.063229389488697],[-0.11573000252247,-0.039208520203829,0.017279103398323],[-0.031188897788525,-0.12429949641228,0.11978776007891]],[[-0.042527686804533,0.024851802736521,0.057627432048321],[0.078209742903709,-0.0783401876688,-0.045913696289062],[0.19073089957237,-0.066003814339638,0.081413410604]],[[0.0047300215810537,0.043549548834562,0.040722727775574],[0.021467637270689,-0.042474895715714,-0.052526246756315],[-0.012854778207839,0.016772873699665,-0.067511424422264]],[[0.036211598664522,0.12378311902285,0.038693886250257],[-0.024284515529871,0.029026485979557,0.0039784992113709],[-0.022026574239135,-0.038620121777058,-0.085938319563866]],[[-0.16570153832436,-0.023058384656906,0.10640374571085],[0.061703510582447,-0.083597585558891,0.086910113692284],[0.067447543144226,-0.19176475703716,0.025023331865668]],[[-0.079595193266869,0.015501203946769,-0.047612734138966],[0.011530614458025,0.1511756926775,-0.09133468568325],[0.0044536315836012,0.11505454033613,-0.15190091729164]],[[-0.14120328426361,-0.096745923161507,-0.1473288834095],[-0.038879737257957,-0.047432966530323,-0.018298910930753],[0.21590401232243,-0.14078231155872,-0.013437840156257]],[[-0.22362095117569,-0.059138875454664,-0.091943241655827],[0.011488399468362,0.1170898899436,-0.062965080142021],[-0.00097163743339479,-0.0080195944756269,-0.14939950406551]]],[[[-0.033762842416763,0.10037852078676,-0.18376494944096],[-0.090014837682247,-0.068654097616673,0.013825744390488],[0.056604947894812,0.11346115916967,-0.0053317970596254]],[[-0.056410819292068,-0.082750216126442,-0.0010734957177192],[-0.0014853788306937,0.015927813947201,0.11812315136194],[-0.065237998962402,0.016941320151091,0.069867245852947]],[[0.066259928047657,-0.039693307131529,-0.036103963851929],[0.17862755060196,-0.013636297546327,-0.12331964820623],[-0.057285957038403,0.022659065201879,0.20607289671898]],[[0.05614135414362,0.077292084693909,0.031461741775274],[0.027097748592496,-0.096442677080631,-0.16533575952053],[-0.04711015149951,0.046981006860733,-0.012378453277051]],[[0.062745995819569,0.0020759268663824,0.005139157641679],[0.042923007160425,-0.045711982995272,0.051333505660295],[0.010831502266228,0.050572589039803,0.13202729821205]],[[0.060476444661617,-0.0075887921266258,0.013835879042745],[0.0024544447660446,-0.032231200486422,-0.064897559583187],[-0.019190119579434,-0.033416476100683,-0.081851996481419]],[[-0.07102270424366,0.1176193356514,0.23143577575684],[0.038399048149586,-0.027290001511574,-0.033190470188856],[0.064827740192413,-0.14201846718788,-0.044114295393229]],[[0.093614511191845,0.030770802870393,-0.09695165604353],[-0.070481993257999,-0.061488665640354,-0.17942941188812],[0.14049638807774,-0.15129344165325,-0.17282690107822]],[[0.00097918533720076,-0.088348530232906,-0.11050327122211],[-0.10635185241699,0.1163714081049,0.00038005286478437],[-0.073128841817379,0.075088441371918,0.11992324888706]],[[0.1511699706316,-0.19053333997726,-0.037821479141712],[0.20561109483242,-0.035782497376204,-0.036804061383009],[-0.085476122796535,-0.076507724821568,-0.042600147426128]],[[0.0058944798074663,0.092361502349377,-0.077909238636494],[0.033291671425104,-0.035146415233612,0.026126004755497],[0.1007687151432,-0.061107032001019,-0.0075703239999712]],[[-0.008947592228651,0.019788414239883,0.023125134408474],[-0.11027907580137,0.009710855782032,0.084482870995998],[-0.032172281295061,-0.070365637540817,0.047602415084839]],[[0.18302193284035,-0.21560277044773,-0.071655251085758],[-0.053936023265123,-0.2447165697813,-0.25855830311775],[0.045504800975323,-0.029186395928264,-0.077391847968102]],[[0.07128182798624,0.13541497290134,0.091096684336662],[0.085948370397091,-0.050492033362389,-0.16728428006172],[0.21464672684669,0.033174622803926,0.046694282442331]],[[-0.019765062257648,0.031383719295263,-0.048967495560646],[0.0044459798373282,-0.044937621802092,0.074419088661671],[0.096188634634018,0.013311620801687,-0.0061560282483697]],[[-0.059387490153313,0.021093787625432,-0.085347473621368],[-0.14536586403847,-0.032175477594137,-0.0096698552370071],[-0.075712352991104,0.16079770028591,0.13793464004993]],[[0.040219843387604,-0.0044078952632844,0.14691890776157],[-0.032801080495119,-0.018755858764052,-0.055059473961592],[0.0032842697110027,-0.073717042803764,-0.012442981824279]],[[-0.033095896244049,0.027828745543957,-0.058431584388018],[0.051979936659336,-0.039536882191896,-0.12328780442476],[-0.14075097441673,0.035810265690088,0.040912427008152]],[[0.11702555418015,-0.058006886392832,0.082506112754345],[0.033846247941256,-0.052503131330013,0.081589624285698],[0.060187175869942,-0.14458402991295,0.038363486528397]],[[0.067855827510357,-0.2030603736639,0.033935941755772],[0.053910493850708,0.037549715489149,0.060340132564306],[0.015715459361672,0.1458974480629,0.0026106936857104]],[[-0.0052381949499249,-0.026412311941385,-0.053671441972256],[0.025893431156874,-0.032163307070732,0.24857467412949],[0.022466912865639,0.014039870351553,0.03019399754703]],[[-0.044342715293169,0.043544426560402,0.066627807915211],[-0.050425000488758,0.059818923473358,-0.028096212074161],[0.071791119873524,-0.019352424889803,0.086097031831741]],[[-0.022312462329865,0.055847674608231,-0.06367963552475],[-0.07257791608572,0.13838097453117,0.19995944201946],[0.099244154989719,0.10578753054142,0.060916800051928]],[[0.019945029169321,-0.064184471964836,0.072640359401703],[-0.036004915833473,-0.10950967669487,0.013895441778004],[-0.11200742423534,0.094029381871223,-0.13785549998283]],[[0.17062811553478,-0.11871491372585,0.012756078504026],[-0.045882243663073,-0.16311578452587,0.090909041464329],[0.01592268422246,0.051866665482521,0.027876483276486]],[[-0.052173223346472,0.073159523308277,-0.038144156336784],[0.14299073815346,-0.064984239637852,0.058918256312609],[0.095762498676777,0.065925769507885,-0.044134482741356]],[[0.016336116939783,0.044885538518429,0.056875929236412],[0.037071239203215,0.011175414547324,-0.058300781995058],[-0.10139489918947,0.034040566533804,-0.023788774386048]],[[-0.12560996413231,-0.047030195593834,0.055855922400951],[-0.0083897989243269,-0.0092086484655738,0.10054525732994],[-0.11069118976593,0.044648312032223,0.108135022223]],[[-0.061141941696405,0.12853302061558,-0.14537368714809],[-0.028347831219435,0.12845416367054,0.1664387434721],[-0.054537232965231,-0.10038333386183,0.09593540430069]],[[0.16992634534836,0.07120281457901,0.083061330020428],[0.077421590685844,0.020995607599616,0.032387558370829],[0.027572032064199,0.033105172216892,0.11292773485184]],[[0.20358742773533,-0.15959434211254,-0.040642306208611],[0.052245836704969,0.081619471311569,-0.05741498619318],[-0.044212833046913,-0.070169694721699,-0.015171282924712]],[[0.057890687137842,-0.12720207870007,-0.023052858188748],[0.11340047419071,0.013570623472333,0.027600426226854],[-0.11268644034863,-0.012028673663735,-0.027744077146053]]],[[[0.011295444332063,-0.015859007835388,-0.066512644290924],[-0.00094318389892578,-0.020857930183411,-0.02521232329309],[-0.072694107890129,-0.0020575991366059,0.0013253543293104]],[[0.042927701026201,0.032658498734236,-0.039528951048851],[-0.013731171377003,0.012531083077192,-0.010035501793027],[-0.011784083209932,0.013041874393821,-0.037432629615068]],[[0.072454571723938,-0.098319917917252,-0.11339789628983],[0.010190446861088,0.12894988059998,-0.11550254374743],[0.096060551702976,-0.045512460172176,0.1842547506094]],[[-0.069174334406853,-0.04585525020957,-0.061554774641991],[-0.088867247104645,-0.11929805576801,-0.05752919241786],[-0.055409818887711,0.052474476397038,0.037451878190041]],[[-0.021621216088533,-0.10490094870329,-0.027019012719393],[0.09984777122736,0.042932454496622,-0.045535285025835],[0.077825926244259,0.065445356070995,0.12821508944035]],[[0.1053810864687,0.030785880982876,0.022748280316591],[-0.011918190866709,0.084036603569984,-0.26278007030487],[-0.029264025390148,-0.076307564973831,-0.072040520608425]],[[-0.049227111041546,0.00086556194582954,-0.062059629708529],[0.014337976463139,0.049401000142097,0.052625212818384],[-0.011270571500063,0.021425943821669,-0.013390923850238]],[[-0.14309403300285,-0.16986998915672,-0.22363498806953],[-0.021649153903127,-0.09203939884901,-0.071650490164757],[0.045149832963943,0.017507856711745,-0.018681680783629]],[[0.055783048272133,-0.051010455936193,0.02879236638546],[0.087940007448196,0.0082999244332314,-0.042596466839314],[-0.047773621976376,0.040156774222851,0.084439925849438]],[[0.16285720467567,0.019463500007987,-0.062587678432465],[0.048526108264923,-0.15954600274563,-0.045120596885681],[0.051617473363876,0.00081246910849586,-0.13814088702202]],[[-0.028746612370014,-0.11049212515354,0.11259452998638],[0.011234732344747,0.0052162045612931,0.06345546990633],[0.020352406427264,0.042013011872768,-0.017695074900985]],[[-0.012498729862273,-0.21908283233643,0.012818424962461],[0.05333898961544,-0.032197203487158,-0.022368613630533],[0.010775465518236,0.12183889001608,0.053853321820498]],[[-0.012820677831769,0.095370523631573,0.023942492902279],[0.080150045454502,-0.066765151917934,0.015806388109922],[-0.12290018796921,0.034383006393909,-0.023616205900908]],[[-0.10122910887003,-0.040113747119904,-0.050842668861151],[-0.035025130957365,-0.045205228030682,0.071887262165546],[0.048519205302,-0.061049450188875,-0.10145003348589]],[[0.075836516916752,0.0051159965805709,-0.083360269665718],[0.040081553161144,-0.098501153290272,-0.015787128359079],[0.0099576255306602,-0.00059877074090764,-0.035105120390654]],[[-0.11457286030054,-0.12080877274275,0.054602354764938],[-0.021996298804879,0.15635381639004,0.15641245245934],[-0.10703795403242,0.055546756833792,-0.052192032337189]],[[0.06706702709198,-0.029098324477673,-0.19878049194813],[-0.13976423442364,0.1124426946044,-0.061513658612967],[0.0007590854074806,0.0072069275192916,-0.042173452675343]],[[-0.037403866648674,0.041624929755926,-0.041797373443842],[0.043426509946585,-0.13285058736801,-0.02652201615274],[0.054260428994894,-0.062691286206245,-0.030932174995542]],[[-0.032512348145247,0.12535844743252,-0.12168278545141],[-0.017600515857339,0.038287010043859,0.055400539189577],[0.16475324332714,-0.036458376795053,0.090092562139034]],[[0.14360509812832,-0.0079512447118759,0.028341554105282],[-0.0091038402169943,0.1119789108634,0.1340249478817],[-0.012427325360477,-0.16180719435215,-0.03389623016119]],[[0.090167157351971,-0.13553875684738,-0.17908629775047],[0.057205997407436,-0.06990072876215,-0.08881264179945],[0.041888792067766,0.067713633179665,0.079416215419769]],[[-0.02990723028779,-0.049082275480032,-0.026532215997577],[-0.077373534440994,-0.051826033741236,-0.0092415008693933],[-0.040885698050261,0.15015780925751,-0.0083441566675901]],[[0.081884741783142,-0.046762939542532,0.067592725157738],[-0.063824310898781,0.019300861284137,0.023748846724629],[-0.0052953460253775,-0.0829117000103,0.21707586944103]],[[-0.12301970273256,0.1205380782485,0.061650644987822],[0.0033169756643474,0.038378063589334,-0.050119273364544],[-0.14434032142162,-0.14086979627609,-0.11486409604549]],[[0.025197302922606,-0.1140723451972,0.043780352920294],[0.028838330879807,-0.12995007634163,-0.023655738681555],[-0.035851407796144,0.015065304934978,-0.080377086997032]],[[-0.025938235223293,-0.11738389730453,-0.045895975083113],[-0.18370221555233,0.085975363850594,-0.022661678493023],[0.026194265112281,0.043355077505112,0.17941839993]],[[-0.015063633210957,-0.040333326905966,-0.048362977802753],[0.030132532119751,0.13278095424175,-0.036065556108952],[-0.014320256188512,0.010932603850961,-0.029268486425281]],[[-0.068944066762924,0.01641502045095,0.075395487248898],[-0.077476747334003,-0.033356014639139,0.053151149302721],[0.059839203953743,-0.098059222102165,-0.02040096372366]],[[0.055280987173319,-0.077937118709087,-0.067428521811962],[-0.091703303158283,0.14700593054295,-0.08108102530241],[-0.095904745161533,0.047119524329901,0.12172356247902]],[[-0.10279850661755,-0.011445799842477,-0.11750531941652],[-0.065198048949242,-0.18763694167137,0.014149783179164],[-0.02142202667892,-0.037744946777821,-0.12828986346722]],[[-0.040154591202736,-0.12003568559885,-0.036829341202974],[-0.013722496107221,-0.018683912232518,0.046609278768301],[0.060441561043262,-0.12587469816208,-0.0066133863292634]],[[-0.042989883571863,-0.028995838016272,-0.023033341392875],[0.036784291267395,-0.030495250597596,-0.059812255203724],[0.059085760265589,-0.037988513708115,-0.060208473354578]]],[[[0.11726880073547,-0.20290450751781,0.042902696877718],[-0.21712923049927,-0.062737844884396,0.062514767050743],[-0.20202624797821,-0.13304123282433,-0.22252802550793]],[[0.038707960397005,0.0027244696393609,0.0099879894405603],[0.034058313816786,-0.083233684301376,0.068756438791752],[-0.018798127770424,-0.020265592262149,0.03930240124464]],[[-0.011852263472974,0.07880637049675,0.19878274202347],[0.081348963081837,-0.11220198124647,0.27474650740623],[0.15833781659603,-0.1730625629425,0.20173336565495]],[[-0.02940284460783,-0.0011677127331495,0.066577471792698],[-0.092515535652637,-0.037797123193741,0.03584111109376],[-0.12528339028358,0.015066107735038,-0.046034596860409]],[[-0.016292771324515,0.046368733048439,0.080444797873497],[-0.0013774374965578,-0.052414551377296,0.0024131669197232],[-0.028229685500264,-0.031609676778316,-0.03536931425333]],[[-0.15300673246384,-0.020525809377432,0.19449599087238],[0.027024064213037,0.017805824056268,0.12531065940857],[0.083311468362808,-0.24637897312641,-0.024300379678607]],[[-0.29151239991188,-0.11956912279129,0.18954180181026],[0.049640480428934,-0.028661934658885,-0.0070939897559583],[-0.0065260166302323,-0.042411576956511,-0.0051619834266603]],[[0.029062936082482,-0.053535725921392,-0.023603200912476],[-0.020335599780083,0.013559625484049,-0.056070819497108],[0.0045950920321047,-0.16745872795582,-0.081154018640518]],[[-0.093925341963768,0.01773183979094,0.16161607205868],[-0.053912848234177,-0.026300340890884,0.031470563262701],[0.088164545595646,0.11207010596991,-0.058514792472124]],[[0.1695197224617,-0.16187682747841,0.072309277951717],[0.061259601265192,0.074454434216022,0.098948135972023],[0.063227906823158,0.046554174274206,-0.055429048836231]],[[-0.072394043207169,-0.04540067538619,0.033431954681873],[-0.069111570715904,-0.24563676118851,-0.050158999860287],[0.095588497817516,-0.065147891640663,-0.12828484177589]],[[-0.055997118353844,0.1071492806077,0.036936059594154],[0.0759382173419,-0.096893154084682,-0.11143982410431],[0.020014755427837,0.02188166603446,-0.035184666514397]],[[-0.045002408325672,0.069688282907009,0.051330633461475],[0.019579265266657,0.052054025232792,-0.061696715652943],[0.028494412079453,-0.095373228192329,-0.058146845549345]],[[0.00070461072027683,-0.18433959782124,-0.03659949451685],[0.019550114870071,-0.042976152151823,-0.04188533872366],[-0.084324650466442,-0.072403892874718,0.079992204904556]],[[0.0015888826455921,-0.024650262668729,0.04835444688797],[0.023153806105256,0.015759164467454,-0.0076606585644186],[-0.021496936678886,0.034802347421646,-0.055810537189245]],[[0.20140093564987,0.089063331484795,-0.12522454559803],[0.061098288744688,0.046893682330847,0.066078409552574],[-0.026299959048629,0.053995855152607,0.062035497277975]],[[-0.08397176861763,-0.026176607236266,-0.17046615481377],[-0.029916869476438,0.056882221251726,-0.15982100367546],[0.07236298173666,0.081092089414597,-0.075369760394096]],[[0.17381058633327,-0.11685185134411,-0.10537438839674],[0.02785224840045,0.081400841474533,-0.12250896543264],[-0.041894569993019,0.082237437367439,-0.016354497522116]],[[0.055401891469955,-0.18393856287003,0.079143717885017],[-0.053681310266256,-0.070154130458832,-0.053361870348454],[-0.016638185828924,0.10354508459568,0.22946256399155]],[[-0.13197180628777,-0.10952661931515,-0.26213049888611],[-0.095661751925945,0.00180791283492,0.19811940193176],[-0.19929534196854,0.031157806515694,-0.012860155664384]],[[-0.074546709656715,-0.0013728201156482,-0.073805764317513],[0.10399442911148,-0.087763957679272,-0.058771520853043],[0.096237495541573,-0.02820803783834,-0.058452364057302]],[[-0.087868116796017,-0.074205748736858,0.17282490432262],[0.10626506060362,-0.077395528554916,-0.042430184781551],[-0.14725452661514,0.0044620553962886,-0.0074933459982276]],[[-0.09859748929739,0.063707359135151,0.031260561197996],[0.28010866045952,0.11177253723145,-0.054145079106092],[-0.051995191723108,0.0059956558980048,0.011509678326547]],[[0.28418749570847,0.04589706286788,-0.10726553201675],[0.044438783079386,-0.097343347966671,-0.087783701717854],[-0.060724712908268,-0.22040905058384,-0.14325734972954]],[[-0.068872734904289,-0.098196387290955,-0.20432062447071],[0.0070145335048437,-0.1042036190629,0.10833115130663],[-0.12975527346134,0.034652967005968,-0.084696985781193]],[[-0.25024920701981,-0.1200795546174,-0.10117273032665],[0.093030661344528,0.069034598767757,-0.028511861339211],[0.13616871833801,-0.03610597550869,-0.01664206199348]],[[0.089883305132389,0.055980749428272,-0.03368454053998],[-0.020498933270574,-0.0058873244561255,0.065577879548073],[-0.055274400860071,0.034190617501736,-0.045082330703735]],[[0.097154133021832,-0.33903753757477,-0.11436133831739],[-0.030059106647968,-0.11488986760378,0.11055846512318],[0.10962168127298,-0.14844986796379,-0.14389556646347]],[[-0.021200299263,0.037232827395201,-0.14785325527191],[0.072099693119526,0.0010151573223993,-0.097580380737782],[-0.057265978306532,0.11895928531885,0.072321645915508]],[[-0.032225426286459,0.010311730206013,-0.1059527695179],[-0.014914780855179,0.031177550554276,-0.0039506480097771],[-0.12840230762959,0.056537289172411,0.074463337659836]],[[0.040329739451408,-0.10770815610886,0.10934525728226],[-0.10574542731047,-0.04405315592885,-0.0041859028860927],[-0.042926542460918,0.016433360055089,0.023412831127644]],[[-0.11583901196718,-0.0062110498547554,0.082418918609619],[-0.15189911425114,0.042380411177874,0.029214011505246],[-0.040876530110836,0.031321756541729,0.071338348090649]]],[[[-0.031714297831059,-0.023487428203225,0.15541091561317],[-0.010010454803705,-0.085500992834568,-0.037874311208725],[0.070010587573051,0.082700371742249,-0.0036529311910272]],[[0.084203034639359,0.030497072264552,-0.042213831096888],[-0.027928398922086,0.065767131745815,-0.0057904217392206],[0.0070195305161178,-0.0088051036000252,0.0052674962207675]],[[-0.1166370138526,-0.017558703199029,-0.028422465547919],[-0.016243096441031,-0.029516138136387,0.083164222538471],[-0.039069034159184,-0.12558770179749,-0.049040917307138]],[[-0.16187770664692,-0.15376618504524,0.31766659021378],[0.0026410445570946,-0.03286761790514,0.13021694123745],[0.097582072019577,-0.18460187315941,0.079220578074455]],[[-0.034994434565306,-0.095131307840347,-0.015842908993363],[-0.019752316176891,0.096487015485764,0.021727461367846],[0.0076930271461606,-0.0012143498752266,-0.049214944243431]],[[0.092064954340458,0.032284263521433,-0.0031210461165756],[0.035603787750006,-0.020687816664577,-0.081836268305779],[-0.064862214028835,-0.049861121922731,-0.021854106336832]],[[-0.11483450233936,0.096560902893543,0.047024119645357],[0.039395272731781,-0.0063001913949847,-0.05594389513135],[-0.046559773385525,-0.12678907811642,-0.16832138597965]],[[-0.088226936757565,-0.55135840177536,0.23976570367813],[0.1708977073431,-0.29445052146912,0.026839710772038],[0.017579440027475,0.033989701420069,0.099611200392246]],[[0.12874878942966,0.0040373308584094,-0.024330623447895],[-0.042754553258419,0.085778050124645,-0.037822347134352],[-0.12526862323284,-0.033317424356937,0.065935626626015]],[[0.10097599774599,0.11110170185566,-0.23009897768497],[-0.094457298517227,0.016036100685596,-0.23530027270317],[-0.11941403895617,0.070444904267788,-0.10576329380274]],[[-0.010083146393299,0.12397630512714,-0.070070214569569],[0.049757532775402,0.064472302794456,-0.14979293942451],[0.018012864515185,-0.039632584899664,-0.091865494847298]],[[-0.03786576166749,0.028345057740808,-0.052212242037058],[-0.015644542872906,0.0067321727983654,0.16839589178562],[-0.17542910575867,0.091281436383724,0.080138877034187]],[[-0.00036446933518164,-0.033464580774307,0.033380448818207],[0.028015401214361,-0.025366190820932,-0.3096943795681],[-0.001224200706929,0.021029945462942,-0.006789518520236]],[[-0.095482468605042,-0.083225153386593,0.12971118092537],[0.06436512619257,-0.016645045951009,0.17239983379841],[0.0014477957738563,-0.066738590598106,-0.052166670560837]],[[-0.014615018852055,0.063418686389923,-0.0017115821829066],[0.033429976552725,-0.010501905344427,-0.0024171329569072],[0.098703600466251,-0.062728621065617,-0.077110290527344]],[[0.12372019886971,-0.0075853737071157,-0.23158974945545],[0.040533032268286,-0.15657648444176,0.073837161064148],[0.087648160755634,-0.02458618208766,-0.040179289877415]],[[-0.053073283284903,-0.098605580627918,-0.41745609045029],[0.063081026077271,-0.014146112836897,-0.16760730743408],[-0.036669593304396,0.051031298935413,-0.047962799668312]],[[0.026830676943064,-0.048376064747572,-0.050445780158043],[0.044851459562778,0.094293437898159,-0.17764964699745],[-0.0082560433074832,0.10998707264662,-0.064907319843769]],[[-0.11829360574484,0.028143122792244,-0.047378767281771],[-0.013810632750392,0.043057449162006,0.023717055097222],[0.010273545980453,0.051380559802055,-0.043299365788698]],[[-0.07811775803566,-0.10362031310797,0.048297163099051],[-0.1156146004796,-0.018233548849821,-0.081229276955128],[0.010796828195453,-0.073338627815247,-0.14873939752579]],[[0.074660338461399,0.050795938819647,-0.098292320966721],[0.066267251968384,0.011959014460444,-0.15948730707169],[-0.054487034678459,-0.045888833701611,0.0031365707982332]],[[0.084739506244659,0.11652135848999,-0.019065296277404],[-0.00087664159946144,0.020187513902783,-0.052732180804014],[0.037773661315441,0.047344390302896,-0.036267757415771]],[[0.021950220689178,-0.010823933407664,-0.047584235668182],[-0.11188364773989,-0.048873797059059,0.13245829939842],[0.082578465342522,0.14617240428925,-0.10655169934034]],[[0.0028515907470137,-0.089666627347469,0.065394870936871],[0.071969047188759,0.04192727804184,0.059686791151762],[0.022914865985513,-0.048978853970766,-0.22993817925453]],[[-0.018620098009706,-0.1095394641161,-0.18763211369514],[-0.012240784242749,0.010878811590374,-0.016160545870662],[-0.028236648067832,-0.064294412732124,-0.023536553606391]],[[-0.028722720220685,-0.049975622445345,-0.16576839983463],[0.03838424757123,-0.060517702251673,0.041992880403996],[-0.0568707883358,0.022809976711869,0.033921156078577]],[[-0.032396197319031,-0.0096236066892743,-0.021218342706561],[-0.047278646379709,0.037791613489389,-0.0045992154628038],[0.027876967564225,0.079939357936382,0.031477034091949]],[[-0.015624932013452,0.160300552845,-0.062692329287529],[-0.041613876819611,0.069414727389812,0.036593314260244],[0.036039941012859,0.0082729207351804,0.0033701986540109]],[[0.021138975396752,0.072025381028652,-0.16503159701824],[-0.0075085335411131,-0.22744376957417,-0.090790599584579],[-0.085965633392334,-0.092674091458321,-0.037643153220415]],[[-0.13023988902569,-0.032942984253168,0.17049944400787],[0.0087840408086777,0.032965756952763,0.067588783800602],[0.055804990231991,0.012392465956509,-0.16438129544258]],[[-0.022685702890158,0.00098241376690567,0.13903580605984],[-0.12066182494164,0.0021497160196304,0.049822561442852],[-0.046867303550243,-0.12003368139267,0.081383250653744]],[[-0.074145816266537,0.12523998320103,0.037362083792686],[-0.092556700110435,0.072506010532379,-0.086103171110153],[-0.083225816488266,0.12075949460268,-0.098435044288635]]],[[[0.0078932913020253,-0.02556324005127,0.055717878043652],[-0.20665982365608,-0.1279174387455,-0.012318726629019],[-0.30276095867157,-0.13951507210732,-0.11822640895844]],[[0.049493849277496,-0.029986266046762,0.064716853201389],[-0.034448865801096,0.07500171661377,-0.041689194738865],[-0.044090270996094,-0.0047933030873537,0.013575790449977]],[[-0.22308754920959,-0.017341742292047,0.0040975753217936],[0.1564307808876,-0.040466148406267,-0.0009043799364008],[-0.079853624105453,-0.12138645350933,0.062917307019234]],[[-0.33129304647446,0.050535663962364,0.083053417503834],[0.08238086104393,0.054069042205811,-0.006420134101063],[-0.27602934837341,0.0035328562371433,0.12186875939369]],[[-0.033174514770508,0.032256692647934,-0.074943765997887],[-0.045962434262037,-0.0029183169826865,-0.10025492310524],[-0.048100836575031,-0.0011309059336782,-0.028379235416651]],[[0.034410856664181,-0.13335466384888,-0.040686462074518],[0.21521373093128,0.046552799642086,0.050559666007757],[0.0072133508510888,-0.050582714378834,-0.074163392186165]],[[-0.035455632954836,-0.1368516087532,-0.16908793151379],[-0.0063112741336226,0.10213705152273,0.058928448706865],[-0.20200428366661,0.083345681428909,-0.053239822387695]],[[0.1505363881588,0.029886856675148,0.011411540210247],[0.076418310403824,-0.017116606235504,0.025794629007578],[-0.031392112374306,-0.014742244035006,-0.03225564584136]],[[-0.031367380172014,-0.051705937832594,0.030197940766811],[-0.043381806463003,-0.0024146046489477,-0.28523805737495],[0.1020799279213,0.040567502379417,-0.00504958210513]],[[-0.0210269279778,0.055505499243736,0.0061506633646786],[0.036534488201141,0.0099812746047974,-0.14451822638512],[-0.05074817687273,0.052929244935513,0.022558018565178]],[[-0.029880354180932,-0.026483124122024,-0.082417815923691],[-0.05253192782402,-0.075902044773102,-0.025749333202839],[0.065481498837471,-0.072605475783348,0.031771373003721]],[[-0.18678598105907,0.064562678337097,0.10497110337019],[-0.20413568615913,-0.090073972940445,0.026672257110476],[-0.012949762865901,0.014441436156631,0.025038287043571]],[[-0.19728446006775,0.055948808789253,-0.02168095484376],[-0.13526847958565,0.062870435416698,0.16043926775455],[-0.1579515337944,-0.060256972908974,-0.14174850285053]],[[-0.070865020155907,-0.17089515924454,-0.018781941384077],[0.056209560483694,-0.06729032099247,0.10552063584328],[-0.21002382040024,-0.15660561621189,-0.0016736851539463]],[[-0.019059719517827,-0.029472233727574,0.049993775784969],[-0.011000980623066,0.12207219749689,0.047678824514151],[0.0063564856536686,-0.027932295575738,-0.029813474044204]],[[0.00059806602075696,0.13014498353004,-0.04498977586627],[0.12233020365238,-0.14445629715919,-0.014961729757488],[0.11248725652695,0.0091711031273007,-0.017430439591408]],[[0.077031798660755,-0.0079405726864934,0.00105587602593],[0.14387613534927,0.045277401804924,-0.019977185875177],[0.23675237596035,-0.051099322736263,-0.035307515412569]],[[-0.11207576096058,0.029926482588053,-0.11646810173988],[0.15879797935486,0.074458964169025,0.061883021146059],[0.019368395209312,-0.1341394931078,0.027211027219892]],[[-0.14191488921642,-0.19005773961544,-0.044748581945896],[-0.13991433382034,-0.010997958481312,0.019334392622113],[0.099842235445976,-0.060206260532141,0.013081569224596]],[[0.016611197963357,-0.099324487149715,-0.073325552046299],[0.063663274049759,-0.14158914983273,0.0021504904143512],[-0.12324257940054,0.067725084722042,-0.032705590128899]],[[0.084707356989384,-0.028013149276376,0.016072915866971],[0.20258751511574,-0.053637109696865,-0.1230645403266],[0.093194641172886,-0.01489856466651,0.12028303742409]],[[0.072839006781578,-0.10044821351767,-0.11276603490114],[-0.11719392240047,-0.16716203093529,-0.075306549668312],[-0.028780100867152,0.087201237678528,0.1917888969183]],[[0.067634902894497,0.081196956336498,-0.073644071817398],[-0.031968574970961,0.063798047602177,0.17160391807556],[-0.060851112008095,-0.12461575865746,-0.10333007574081]],[[0.10517611354589,-0.034792244434357,0.061057791113853],[-0.064452767372131,0.099533945322037,0.00079860351979733],[-0.064914584159851,-0.068388924002647,0.007324225269258]],[[-0.084134735167027,-0.076456718146801,-0.063123926520348],[-0.11946197599173,0.0070643536746502,-0.20392712950706],[0.078524120151997,0.11356119066477,-0.14832578599453]],[[-0.080373369157314,-0.08210926502943,0.027975022792816],[0.13355441391468,0.041146751493216,0.053241904824972],[0.22000859677792,-0.10255001485348,0.11826727539301]],[[0.042586799710989,-0.00039810748421587,-0.064825884997845],[0.073095820844173,-0.048387758433819,-0.026222847402096],[0.038294494152069,-0.036477793008089,-0.0078280214220285]],[[-0.015623107552528,-0.074565760791302,0.030948672443628],[0.0077083855867386,0.048801243305206,-0.014381136745214],[0.21757009625435,0.071597598493099,0.04089156165719]],[[-0.049337904900312,-0.21242852509022,-0.00092152913566679],[-0.104183845222,-0.20189628005028,-0.039939448237419],[0.052996564656496,-0.14387701451778,0.036648530513048]],[[0.0090306745842099,0.011191718280315,-0.084364965558052],[0.13114160299301,-0.055443972349167,-0.010773973539472],[-0.042341366410255,0.041779059916735,0.056783605366945]],[[0.13355745375156,-0.12937006354332,0.078170336782932],[0.033872433006763,-0.052786082029343,0.11681126058102],[-0.080747224390507,0.093376681208611,-0.096799209713936]],[[0.030015336349607,-0.010029343888164,0.0091718733310699],[-0.026760205626488,0.016420444473624,-0.10693276673555],[-0.11620637029409,0.046912986785173,0.10044556111097]]],[[[-0.046323575079441,-0.10166149586439,-0.03234525769949],[0.043598771095276,-0.031427305191755,0.022659862414002],[0.10827894508839,-0.0042307092808187,0.0053165624849498]],[[-0.03916709125042,-0.11605516076088,-0.12895354628563],[-0.055222570896149,-0.16058523952961,-0.1313432008028],[-0.12935660779476,-0.054204784333706,-0.089790292084217]],[[-0.010319018736482,-0.016879877075553,-0.019109923392534],[0.034325674176216,0.017361029982567,0.044351931661367],[0.0075055784545839,-0.070029936730862,0.0077817933633924]],[[0.0017587051261216,-0.053028717637062,0.018383286893368],[-0.03796898573637,0.076695330440998,0.016222251579165],[-0.036085914820433,-0.0037693551275879,0.0098530603572726]],[[-0.098362699151039,-0.14929366111755,-0.057857643812895],[-0.066793076694012,-0.14924375712872,-0.030324833467603],[0.026630900800228,-0.036999728530645,-0.084548063576221]],[[-0.038866579532623,-0.024418514221907,0.045576646924019],[0.027404651045799,-0.036985155194998,-0.024410786107183],[0.026163389906287,0.020225817337632,-0.022445326671004]],[[0.056850966066122,-0.011393675580621,0.018108926713467],[-0.059993382543325,-0.025096297264099,-0.039592832326889],[0.018474452197552,-0.0021746589336544,0.019277891144156]],[[0.015487018041313,0.02556786313653,-0.0033543284516782],[-0.13103243708611,0.11586678028107,-0.021762408316135],[-0.046237912029028,-0.021645059809089,0.05436833947897]],[[-0.016911946237087,-0.06813832372427,-0.059559315443039],[-0.036106985062361,-0.090022496879101,-0.16281591355801],[0.015229498967528,-0.14483535289764,-0.052416436374187]],[[0.08307134360075,0.0015997636364773,0.038658156991005],[-0.036822497844696,-0.045132450759411,-0.050088703632355],[-0.013944037258625,0.028599191457033,0.00083542009815574]],[[0.038429424166679,0.022537473589182,0.091904029250145],[-0.081244483590126,-0.026779744774103,0.034321665763855],[-0.1097364500165,0.0016226910520345,-0.013714185915887]],[[-0.09352819621563,0.035565968602896,0.040005210787058],[-0.021093247458339,0.014482974074781,0.026005664840341],[-0.05768184736371,-0.090764954686165,0.062200590968132]],[[0.011327377520502,-0.0010950658470392,0.0066608381457627],[0.047964494675398,-0.1133775934577,-0.10756631940603],[0.076185375452042,0.014890495687723,0.059272978454828]],[[0.048387680202723,0.056786555796862,0.01224853657186],[-0.016561171039939,-0.07542047649622,0.020894015207887],[-0.012855057604611,0.069649294018745,-0.10794428735971]],[[-0.14145171642303,-0.082568719983101,-0.034101996570826],[-0.097671285271645,-0.15157067775726,-0.029999716207385],[-0.15416391193867,-0.10587127506733,-0.082279019057751]],[[-0.024424973875284,-0.054896634072065,-0.0099632861092687],[0.017658894881606,0.0344457924366,-0.0010366328060627],[0.053890276700258,-0.014685128815472,-0.016081493347883]],[[0.015280078165233,0.0448864325881,0.00011857097706525],[-0.040046434849501,-0.081184603273869,0.062054492533207],[-0.089680083096027,0.0096320919692516,0.049620322883129]],[[0.020480548962951,-0.019454704597592,0.031886391341686],[0.023260541260242,-0.044946175068617,-0.011429943144321],[0.013066283427179,-0.021509284153581,0.0017937895609066]],[[0.032909736037254,0.045018028467894,-0.076905377209187],[-0.035801898688078,-0.092045366764069,-0.10835511237383],[0.098602809011936,0.032830499112606,0.063093811273575]],[[0.043021250516176,0.029083350673318,0.010732663795352],[0.001508001354523,-0.043147519230843,0.048187877982855],[-0.045417763292789,0.0017391740111634,-0.047584783285856]],[[-0.031342603266239,0.043451223522425,-0.023468626663089],[0.0054264254868031,-0.086124666035175,-0.034053180366755],[0.068721570074558,-0.17716272175312,0.064165070652962]],[[-0.08674156665802,0.030894121155143,-0.017765570431948],[0.065780155360699,0.025034248828888,0.039772719144821],[-0.012055266648531,0.003189220558852,-0.040040899068117]],[[-0.0095739662647247,0.060882449150085,-0.043898314237595],[-0.021073265001178,-0.035875100642443,0.057972367852926],[0.023484205827117,-0.033434763550758,0.0065992437303066]],[[-0.025215376168489,0.051154259592295,-0.047374397516251],[-0.0023958466481417,0.024778624996543,-0.015824906527996],[-0.012512095272541,0.033527061343193,-0.015278003178537]],[[0.071494713425636,0.026519803330302,-0.028682177886367],[0.089730136096478,0.052368897944689,-0.096047438681126],[-0.043673537671566,-0.017861884087324,-0.042353346943855]],[[-0.048176553100348,0.026916166767478,0.012880774214864],[0.051194570958614,-0.0011678363662213,-0.044211272150278],[-0.10302446782589,0.0857258066535,0.0019542772788554]],[[0.076760023832321,0.063037380576134,0.057334091514349],[0.12872856855392,0.14493487775326,0.062288451939821],[-0.028597621247172,0.12628392875195,0.070806473493576]],[[0.0072751534171402,-0.056302763521671,-0.006792644970119],[0.045484870672226,0.071449354290962,-0.022773379459977],[0.060055702924728,-0.047563869506121,-0.05392799526453]],[[0.081343047320843,-0.019594712182879,-0.019903620705009],[0.024938486516476,-0.074906900525093,0.087446726858616],[0.032299771904945,-0.055713351815939,-0.036356061697006]],[[0.052722241729498,0.012653478421271,0.03545306250453],[0.02785419113934,0.13693183660507,0.063653156161308],[0.10195829719305,-0.039525311440229,0.028869215399027]],[[-0.081610456109047,-0.045256700366735,0.087833493947983],[-0.043447073549032,-0.088118702173233,0.028544504195452],[0.029163310304284,-0.0054446831345558,0.076454065740108]],[[-0.037336837500334,-0.047215584665537,0.024500450119376],[-0.072877064347267,0.0089821573346853,0.029684444889426],[-0.021358378231525,0.073966525495052,0.055174257606268]]],[[[-0.17472042143345,-0.29336187243462,0.030004497617483],[-0.0021643661893904,-0.077723897993565,0.000829350319691],[-0.044714022427797,0.063591472804546,0.13893793523312]],[[-0.037873920053244,0.028737772256136,-0.016737304627895],[-0.044074211269617,0.037899989634752,-0.047273963689804],[0.12414501607418,0.13730359077454,0.00970852188766]],[[-0.056560821831226,-0.070735678076744,-0.21449659764767],[-0.19746412336826,-0.065597251057625,-0.060784265398979],[0.021731298416853,0.042843744158745,-0.13118299841881]],[[-0.22616705298424,0.019110573455691,-0.029357606545091],[0.075608819723129,0.03489988297224,-0.0059867012314498],[-0.045199695974588,0.13591223955154,-0.020266830921173]],[[0.040052827447653,-0.11242463439703,-0.050087437033653],[0.0049080038443208,-0.061676941812038,0.14035376906395],[-0.12665854394436,-0.0050259903073311,0.060707274824381]],[[-0.067877925932407,0.044181149452925,-0.13201452791691],[-0.018670033663511,0.040960118174553,-0.00082252692664042],[0.11730604618788,0.013163298368454,0.1275806427002]],[[-0.16388222575188,-0.032136615365744,-0.033369097858667],[0.056733440607786,0.011977992020547,-0.12710160017014],[0.033807098865509,0.14145167171955,-0.28884091973305]],[[-0.14814160764217,-0.27059704065323,0.039577096700668],[-0.038767982274294,0.0082704089581966,-0.039081893861294],[-0.056838888674974,0.033032689243555,0.018182056024671]],[[-0.039390776306391,0.024633351713419,-0.078295648097992],[-0.039043195545673,-0.043563954532146,-0.057505920529366],[-0.14201812446117,-0.25649508833885,-0.038386698812246]],[[-0.12835459411144,0.041348200291395,-0.074080482125282],[-0.0072550033219159,0.059928946197033,-0.040971927344799],[-0.013453273102641,-0.0082444697618484,-0.042409621179104]],[[-0.043512240052223,0.041287556290627,-0.066615007817745],[0.016137976199389,0.081644117832184,-0.053474418818951],[0.018942778930068,0.032774213701487,-0.11353624612093]],[[-0.24487809836864,-0.1697591394186,-0.024664057418704],[-0.10201639682055,-0.013267016038299,0.11969148367643],[0.0218102093786,-0.16782960295677,0.20870094001293]],[[-0.047814145684242,-0.09781439602375,-0.11122741550207],[-0.028171272948384,0.033616170287132,-0.12644471228123],[-0.053176172077656,0.046056572347879,-0.048431061208248]],[[-0.017873516306281,0.087592430412769,-0.026442030444741],[0.096801370382309,-0.063245579600334,-0.04853443428874],[0.0057986536994576,-0.22913378477097,-0.096496298909187]],[[0.048243578523397,-0.00055743136908859,0.011798363178968],[0.00064724707044661,-0.037191346287727,-0.076167054474354],[0.054477244615555,0.028051448985934,0.038133274763823]],[[-0.13179543614388,-0.061896659433842,0.10401949286461],[-0.062538556754589,-0.093586437404156,0.13030715286732],[0.020887931808829,-0.15087784826756,0.15288317203522]],[[-0.038397688418627,-0.05163237825036,-0.030122691765428],[-0.082911789417267,-0.14186218380928,-0.23024518787861],[0.004798493348062,0.033716399222612,-0.29387453198433]],[[0.14841912686825,0.12354929000139,0.064628012478352],[0.1625792235136,0.016055727377534,-0.041818015277386],[-0.12300229817629,-0.027264846488833,0.011580102145672]],[[0.11753071844578,0.023809164762497,-0.004030414391309],[-0.02536447905004,0.07266791164875,0.062856525182724],[-0.0042776907794178,0.084011301398277,-0.064895302057266]],[[-0.010751297697425,-0.11310216784477,-0.035465925931931],[-0.011755311861634,-0.10634649544954,0.023727208375931],[-0.066511519253254,0.084102995693684,-0.016736602410674]],[[0.036645416170359,-0.062767282128334,-0.030351048335433],[-0.14447122812271,-0.11911638826132,0.031866267323494],[0.02401770837605,0.10137863457203,-0.22386328876019]],[[0.065993458032608,0.13811838626862,-0.058466970920563],[-0.00095576129388064,0.060952492058277,0.037838116288185],[0.095529779791832,-0.096937224268913,0.00094232539413497]],[[-0.27612972259521,-0.0088167143985629,0.032822627574205],[0.14928135275841,-0.013121754862368,0.017333621159196],[0.008108738809824,0.14835253357887,-0.014362693764269]],[[-0.021200157701969,0.0090293623507023,-0.0038651467766613],[-0.0085361981764436,-0.0739361718297,-0.065234422683716],[0.016897544264793,-0.0067430618219078,-0.041080974042416]],[[0.060208413749933,0.13255412876606,-0.14914326369762],[-0.11551550775766,-0.042482014745474,-0.15768963098526],[0.014133293181658,0.12673816084862,0.0083726495504379]],[[-0.016934169456363,0.00014918150554877,-0.18825607001781],[-0.057683933526278,0.17608867585659,0.11718039959669],[0.069620385766029,-0.095535159111023,-0.09717757999897]],[[0.026171190664172,-0.017339397221804,-0.016422964632511],[0.16844123601913,0.055465798825026,-0.04044071957469],[-0.0086382171139121,-0.057704973965883,-0.045276910066605]],[[0.048755116760731,-0.1056138202548,-0.0062070805579424],[-0.094003736972809,0.18098150193691,0.096093103289604],[-0.12469919770956,0.076673343777657,0.13063588738441]],[[-0.046308431774378,-0.082015991210938,-0.022458927705884],[-0.26856645941734,-0.10673087835312,-0.11448036134243],[-0.089998356997967,0.023470710963011,0.051755771040916]],[[-0.10776855796576,0.12035814672709,-0.001496663549915],[-0.018214950338006,-0.059410143643618,-0.0017163268057629],[-0.11812818795443,0.043047178536654,0.09756763279438]],[[0.075364723801613,0.035500828176737,-0.036254074424505],[-0.09490805119276,0.090198755264282,0.00037977457395755],[0.035729568451643,-0.20127888023853,0.061522971838713]],[[0.2175577133894,0.043994233012199,0.026987381279469],[-0.16511929035187,0.17623913288116,-0.12709355354309],[-0.10911308974028,-0.049932699650526,-0.013177026063204]]],[[[0.053011693060398,-0.2102143317461,-0.006728058680892],[0.054631363600492,0.047054398804903,-0.097219899296761],[0.038362856954336,-0.08745139092207,0.10950803011656]],[[-0.083357453346252,-0.026709014549851,-0.018485704436898],[0.059606056660414,0.024656696245074,-0.0069269710220397],[0.0090718548744917,-0.0071734646335244,0.043782334774733]],[[0.10776255279779,-0.0022521645296365,0.24430996179581],[0.010600524954498,-0.1530747115612,-0.054392378777266],[-0.078034356236458,-0.12209349870682,0.20657660067081]],[[0.30044317245483,0.27499857544899,-0.098214969038963],[-0.12246686965227,-0.14342038333416,-0.11894576251507],[-0.037609662860632,0.064929530024529,0.037043303251266]],[[0.034489378333092,-0.11874783784151,-0.089960686862469],[0.15246383845806,0.098074465990067,-0.047924470156431],[-0.040362786501646,0.012075797654688,0.103978484869]],[[-0.039801530539989,-0.20214940607548,-0.12680135667324],[0.0056916070170701,-0.11289990693331,-0.17826494574547],[0.040085382759571,-0.0076585812494159,0.013017822988331]],[[0.087051905691624,0.090121060609818,0.013106783851981],[-0.00034593147574924,0.091640450060368,0.023115362972021],[-0.023500731214881,0.016098242253065,-0.080117344856262]],[[-0.11825101822615,0.076123982667923,0.068285003304482],[-0.36924529075623,-0.21106605231762,-0.13017837703228],[0.05447194725275,0.10023009777069,0.084275960922241]],[[0.081350415945053,-0.056619316339493,-0.050952132791281],[0.076268844306469,-0.15356603264809,-0.02537227421999],[0.14691612124443,-0.016378104686737,0.089071817696095]],[[0.012359334155917,-0.017464492470026,0.092671811580658],[0.080502539873123,0.09527425467968,-0.01598390378058],[-0.17238627374172,-0.092584334313869,-0.034112859517336]],[[-0.24806444346905,-0.030401986092329,-0.057248342782259],[0.087748542428017,0.2144129127264,-0.017828941345215],[-0.13633953034878,-0.035260863602161,-0.055981375277042]],[[-0.15038391947746,-0.11098252236843,0.027292672544718],[-0.02360587194562,-0.027819694951177,-0.10066637396812],[0.18435814976692,0.0106330960989,0.11495290696621]],[[0.0053469780832529,0.024110304191709,0.055676501244307],[-0.21004481613636,0.044874981045723,-0.12082804739475],[-0.087688028812408,0.083106361329556,0.017826406285167]],[[0.11348991841078,0.11877623200417,-0.073020525276661],[-0.20954595506191,-0.21567536890507,-0.16733269393444],[0.00061805621953681,-0.0040754480287433,0.049259934574366]],[[-0.03537367656827,0.007081541698426,-0.085319370031357],[0.039793748408556,0.092524491250515,0.012928366661072],[0.039192650467157,-0.02057489939034,0.0039144898764789]],[[-0.0022393837571144,-0.0078467866405845,0.021136222407222],[-0.039153352379799,-0.13501690328121,0.057858284562826],[-0.058965668082237,-0.11879125982523,-0.054449409246445]],[[-0.020850183442235,0.12644720077515,0.057975504547358],[-0.022195678204298,-0.059915959835052,0.075292564928532],[-0.064302898943424,-0.090088561177254,-0.11352553218603]],[[-0.071067102253437,-0.11806716024876,-0.080741949379444],[-0.083779409527779,-7.9543224273948e-06,0.048527538776398],[-0.015997326001525,0.010575922206044,-0.022671306505799]],[[0.040981322526932,-0.022453974932432,-0.24323074519634],[0.014435393735766,-0.088331215083599,-0.12781050801277],[0.063767068088055,0.041331421583891,-0.039604149758816]],[[-0.01710257306695,-0.15833832323551,0.11985182017088],[-0.045812275260687,0.024025399237871,-0.094744227826595],[0.037599958479404,-0.072509214282036,0.05173821747303]],[[-0.19204989075661,-0.10548178106546,-0.1294477134943],[-0.11601664870977,0.098827362060547,-0.0052150674164295],[-0.067637883126736,-0.064907416701317,-0.027808465063572]],[[-0.012285904958844,-0.27544030547142,0.026592712849379],[-0.022870512679219,0.00018294563051313,0.0088227493688464],[0.085712380707264,-0.086776189506054,0.051710162311792]],[[-0.01811788789928,0.17087751626968,0.11437037587166],[-0.094596154987812,-0.0084017980843782,-0.053946316242218],[0.032291781157255,0.13246318697929,-0.079670064151287]],[[-0.092738054692745,-0.04091302677989,0.00053862284403294],[0.12821242213249,0.0091308150440454,0.10823892056942],[-0.10347522050142,-0.16178688406944,-0.086539030075073]],[[-0.013688022270799,-0.072021655738354,-0.073907569050789],[-0.06937650591135,0.11423403769732,-0.00058036495465785],[-0.12924155592918,-0.025053763762116,-0.08156318962574]],[[-0.07202459871769,0.080170080065727,0.10266958922148],[0.14473280310631,-0.038288045674562,-0.12902925908566],[0.048764411360025,0.033957824110985,0.10093719512224]],[[0.006860832683742,0.0051653664559126,-0.054058358073235],[-0.066199660301208,0.030365580692887,0.0055142161436379],[0.061816766858101,0.00836191046983,-0.0091864746063948]],[[-0.03001189045608,-0.054153773933649,0.10570701956749],[0.16550302505493,0.10183023661375,0.022435065358877],[-0.058400876820087,0.08523853123188,-0.00087870657444]],[[-0.12948970496655,-0.030528074130416,-0.00030471596983261],[-0.14319963753223,-0.036713350564241,0.18296334147453],[0.0068550705909729,0.077019691467285,-0.018157025799155]],[[0.14250007271767,0.065903797745705,-0.01762193068862],[-0.0428845025599,0.064061746001244,0.021115701645613],[-0.066747523844242,-0.15702413022518,0.019368391484022]],[[0.046025950461626,0.057565130293369,-0.057584173977375],[-0.028800021857023,-0.10434529930353,-0.011478859931231],[-0.022042782977223,-0.019252760335803,-0.0058381571434438]],[[-0.13635370135307,-0.13314117491245,-0.074984192848206],[-0.099915988743305,0.0058341780677438,0.068642184138298],[0.0079698404297233,0.12713462114334,0.049534153193235]]],[[[-0.18051362037659,0.042296625673771,-0.31758853793144],[-0.026786243543029,0.0079045854508877,-0.25010803341866],[0.11628537625074,0.0044114291667938,0.095210142433643]],[[-0.015989352017641,0.13064457476139,-0.034934584051371],[-0.0051623084582388,-0.070791617035866,0.014848749153316],[0.08161897957325,0.028868447989225,-0.012008270248771]],[[-0.079382181167603,-0.033278468996286,-0.079490892589092],[-0.085056357085705,0.15167690813541,0.022531582042575],[0.024325709789991,0.14796096086502,0.18710382282734]],[[0.12523385882378,0.078279472887516,-0.13188748061657],[-0.010986254550517,-0.013182283379138,-0.0060075703077018],[-0.075076691806316,-0.0027352345641702,0.047670658677816]],[[-0.046737395226955,-0.073735356330872,0.070887722074986],[-0.03141725063324,-0.041016578674316,0.018228959292173],[0.13139067590237,-0.0010923861991614,-0.082711488008499]],[[-0.23402814567089,0.0020711915567517,-0.26346126198769],[-0.24844253063202,0.086349867284298,-0.016103515401483],[-0.087330423295498,-0.012154129333794,0.063423871994019]],[[-0.07032223790884,0.12648710608482,-0.31154271960258],[-0.006132252048701,0.0043590371496975,0.10897108912468],[-0.092247880995274,-0.048905082046986,-0.047289032489061]],[[-0.022116577252746,0.089582748711109,-0.13919141888618],[0.088532261550426,-0.01043854560703,0.013784778304398],[-0.14387053251266,0.092281021177769,0.048569932579994]],[[-0.10355009883642,0.028923068195581,-0.015983384102583],[-0.084681771695614,0.077298015356064,-0.063673250377178],[-0.062985382974148,0.019073877483606,-0.05085951089859]],[[-0.099545910954475,0.18482002615929,-0.048345845192671],[-0.14415277540684,0.001833229791373,-0.075182110071182],[-0.04939254373312,0.093190766870975,0.04374073445797]],[[0.015524969436228,-0.050092741847038,-0.15928021073341],[0.011334975250065,-0.069167949259281,-0.079049311578274],[-0.029890231788158,0.036562986671925,0.025838261470199]],[[0.11610598117113,0.073542304337025,-0.0097370827570558],[-0.0051303599029779,-0.044126067310572,-0.038094907999039],[0.0071854260750115,-0.068238012492657,0.056471139192581]],[[-0.25273838639259,-0.12717644870281,-0.18907368183136],[-0.12070320546627,0.13189458847046,-0.046108074486256],[-0.093930184841156,0.05700908601284,0.011886639520526]],[[0.075034059584141,-0.1882985830307,-0.1626939624548],[-0.060344304889441,-0.081488989293575,-0.12048369646072],[-0.00015044889005367,0.064190700650215,-0.032047230750322]],[[0.09884487837553,-0.074636839330196,-0.01436236128211],[0.083134137094021,0.012391143478453,-0.035511877387762],[0.030673297122121,-0.034824464470148,0.011032039299607]],[[-0.051669362932444,-0.17719604074955,0.35535418987274],[0.058538716286421,0.01258784160018,0.1340519785881],[0.10645482689142,-0.2449556440115,0.027981474995613]],[[0.11444079875946,0.19699148833752,0.033682875335217],[0.084482125937939,-0.064204767346382,-0.10293585062027],[-0.15602166950703,-0.010407484136522,-0.18873998522758]],[[0.0073564350605011,-0.0059436894953251,0.21487577259541],[0.087928839027882,-0.013819769956172,0.13991361856461],[-0.06358502805233,-0.10977221280336,-0.12899461388588]],[[-0.14611700177193,-0.032927833497524,-0.20078331232071],[-0.13752821087837,-0.013979525305331,-0.033764194697142],[0.0073508867062628,0.00011051156616304,0.0030628235545009]],[[-0.052655819803476,-0.039585202932358,-0.18016578257084],[0.06743174046278,-0.14265704154968,-0.15033248066902],[0.12675257027149,0.035611022263765,-0.24768735468388]],[[-0.057819563895464,0.086458198726177,-0.038585375994444],[0.02472760155797,0.12811334431171,0.02822064049542],[-0.07881822437048,0.038323432207108,-0.030476467683911]],[[-0.035816788673401,-0.0092422310262918,-0.14537930488586],[-0.019777404144406,-0.024046950042248,-0.0098079619929194],[0.067139752209187,-0.074361406266689,-0.039471417665482]],[[0.033927507698536,-0.044691380113363,0.27005177736282],[0.036873366683722,0.12190793454647,-0.014975592494011],[-0.01633464731276,0.018128821626306,-0.044564511626959]],[[-0.16176955401897,0.048336993902922,0.08856974542141],[-0.059616442769766,-0.0087758591398597,-0.059013336896896],[-0.18382875621319,-0.070050992071629,0.0134193059057]],[[-0.048051699995995,0.022992398589849,0.099134176969528],[-0.096373625099659,-0.014574278146029,-0.16291037201881],[0.0041144713759422,-0.059234656393528,-0.15837669372559]],[[0.066543467342854,0.17702284455299,-0.098911441862583],[-0.04040477797389,-0.10237853974104,-0.12970159947872],[0.071280553936958,-0.048038020730019,-0.04118537902832]],[[0.0014406340196729,0.055732242763042,0.050774347037077],[-0.03506251424551,-0.062005907297134,0.10393972694874],[-0.06481658667326,-0.0050766300410032,0.027948277071118]],[[0.21320752799511,0.012040211819112,-0.051659733057022],[0.20090447366238,0.056756239384413,-0.26874133944511],[0.15413811802864,-0.050583604723215,-0.10711950808764]],[[0.0020023384131491,0.085911020636559,-0.005461466498673],[0.064869806170464,0.074679709970951,0.054304290562868],[-0.06544267386198,-0.026505390182137,0.15970706939697]],[[0.071028426289558,-0.06349091231823,0.01100149191916],[-0.057028949260712,0.00051823153626174,-0.020116157829762],[-0.097194373607635,-0.014413570985198,0.0093405749648809]],[[0.045361943542957,-0.10993125289679,-0.017424738034606],[-0.073477707803249,0.099877595901489,-0.049570601433516],[-0.062974236905575,0.13961598277092,-0.10920570790768]],[[-0.24883437156677,-0.0083969254046679,-0.31622728705406],[-0.096748627722263,-0.1612733900547,0.24273127317429],[0.04934286698699,0.06027028337121,0.029947118833661]]],[[[-0.046830676496029,-0.048548728227615,-0.063905708491802],[-0.061186742037535,0.054563153535128,0.051168087869883],[0.032640308141708,-0.11691074073315,0.059019237756729]],[[0.0012097466969863,-0.032642111182213,-0.01312178466469],[-0.02021200209856,-0.080856770277023,0.082967147231102],[0.0018360510002822,0.02375571615994,0.027168719097972]],[[0.010463923215866,-0.036589309573174,-0.023289466276765],[-0.10886923968792,-0.0081776333972812,-0.059554733335972],[-0.0078373644500971,0.072476767003536,0.042954441159964]],[[-0.0020246880594641,-0.050423350185156,-0.039272624999285],[0.1380487382412,-0.017110858112574,0.084596313536167],[-0.088366910815239,0.050598975270987,0.16787341237068]],[[-0.024636337533593,-0.087786599993706,-0.011778566986322],[0.054201405495405,0.0043968292884529,-0.0053148367442191],[0.02019665017724,-0.1497018635273,0.046595133841038]],[[-0.0032394554000348,0.0825574696064,-0.056775007396936],[-0.11807330697775,0.088325202465057,-0.04138046130538],[-0.0069509358145297,-0.086934886872768,0.046106606721878]],[[0.07494679838419,0.16786849498749,0.0012661209329963],[0.017989547923207,-0.10515693575144,0.044437769800425],[-0.05036436766386,-0.023344676941633,-0.00029706943314523]],[[0.097947277128696,-0.037442110478878,0.015524250455201],[-0.058752100914717,0.14428247511387,0.047651171684265],[0.03096380084753,0.12439607828856,0.09013406932354]],[[-0.031218620017171,-0.060975383967161,-0.029252937063575],[-0.0068418891169131,0.038961905986071,0.02050294354558],[0.040188882499933,0.040893144905567,0.050063420087099]],[[-0.050179056823254,0.053599704056978,0.054262310266495],[0.092593543231487,-0.048241164535284,-0.10379372537136],[0.23474968969822,0.088347613811493,-0.14218251407146]],[[-0.075743421912193,-0.013975921086967,-0.038832571357489],[0.061578068882227,-0.087115623056889,-0.16143587231636],[0.053740184754133,-0.053232844918966,0.10524958372116]],[[0.10824122279882,0.091495618224144,0.068552605807781],[0.10822481662035,-0.054033987224102,0.096378766000271],[-0.0082679893821478,-0.0025848583318293,0.14516739547253]],[[-0.026344316080213,-0.11180739104748,0.063210465013981],[0.080200523138046,-0.021402634680271,-0.11941973865032],[0.057249777019024,-0.0093626352027059,-0.0015379561809823]],[[0.059581469744444,-0.008025037124753,-0.0019539389759302],[0.083334214985371,0.10195764899254,0.066963568329811],[-0.03860692679882,0.1078343167901,0.080601312220097]],[[0.018077004700899,0.083020985126495,-0.075242079794407],[0.021340789273381,-0.031156355515122,-0.057581324130297],[0.031791966408491,0.066786609590054,0.04775371029973]],[[-0.20527341961861,0.035086259245872,0.11428433656693],[-0.10322289913893,-0.05641045793891,0.093339584767818],[0.068690687417984,0.088044673204422,0.13076338171959]],[[0.050779536366463,-0.0043918713927269,-0.076212763786316],[0.037913244217634,0.046383455395699,-0.067267201840878],[0.12179648131132,0.056910764425993,0.023468500003219]],[[0.058763273060322,-0.084253564476967,-0.15168204903603],[0.0038817853201181,-0.018798245117068,0.10515066236258],[0.05831253528595,0.098138749599457,0.027530720457435]],[[0.084486417472363,0.033499330282211,-0.0043928381055593],[-0.069129027426243,-0.13059717416763,-0.089790634810925],[-0.126345962286,0.020335571840405,0.094902217388153]],[[-0.033286314457655,0.12469606101513,-0.1324732452631],[-0.08729100227356,0.056213688105345,-0.076148599386215],[-0.030690146610141,-0.0073406798765063,0.12183271348476]],[[-0.0022144336253405,0.013024905696511,0.0052224416285753],[0.024436766281724,-0.044100426137447,-0.036866031587124],[-0.0487444922328,-0.14974565804005,0.10645999759436]],[[0.034367855638266,-0.026033256202936,0.010842902585864],[-0.014310733415186,0.0017411512089893,0.092719539999962],[-0.004726265091449,0.031394373625517,0.075279854238033]],[[0.044026896357536,-0.0064089330844581,0.038777720183134],[0.0086641414090991,0.15214441716671,-0.10735918581486],[0.049202959984541,-0.044488631188869,0.041405167430639]],[[0.042754635214806,0.049411300569773,0.19060139358044],[-0.063902728259563,-0.046011932194233,-0.13643422722816],[0.038555715233088,-0.23583480715752,-0.028785385191441]],[[0.044982563704252,-0.013863696716726,0.08529768884182],[-0.032059885561466,-0.041417226195335,0.018695624545217],[-0.018272534012794,-0.08848237991333,0.021653536707163]],[[0.20337247848511,0.078066259622574,-0.014590568840504],[-0.036305919289589,-0.028268992900848,0.051594041287899],[-0.1770037561655,0.032321035861969,-0.0023571664933115]],[[-0.019926683977246,0.12742637097836,0.023882629349828],[-0.089017890393734,0.01531630102545,0.034928359091282],[-0.04505929723382,0.062458578497171,0.087096959352493]],[[-0.10040747374296,0.033062428236008,-0.11020087450743],[-0.054284799844027,0.14672321081161,-0.052665457129478],[-0.16732288897038,-0.1525934189558,0.021199177950621]],[[0.086720302700996,-0.0017920637037605,-0.0065384763292968],[-0.0083999410271645,0.062671236693859,0.023755688220263],[0.050601467490196,0.016268294304609,-0.10003911703825]],[[0.050922706723213,-0.12148556858301,0.00067668198607862],[0.052741140127182,-0.036915875971317,-0.11807110905647],[0.020084382966161,0.064393453299999,-0.019289234653115]],[[-0.0070999497547746,0.024335799738765,-0.090441897511482],[-0.057725984603167,0.034861460328102,-0.076566651463509],[-0.057959120720625,-0.1204810962081,0.018485879525542]],[[0.0041857147589326,-0.031873635947704,-0.098510310053825],[-0.12761998176575,0.16191798448563,0.10250097513199],[0.073716640472412,0.10249130427837,-0.056374307721853]]],[[[0.1201198771596,0.065597638487816,-0.10326008498669],[0.06743112206459,-0.044443212449551,-0.041977308690548],[0.079888969659805,0.045339856296778,-0.1129504442215]],[[0.003033502958715,0.099235750734806,0.03416819870472],[0.056880280375481,0.027390303090215,-0.0064643090590835],[-0.0098568964749575,0.0038430651184171,-0.0079665808007121]],[[0.023669142276049,0.10846292972565,-0.11160627752542],[-0.00040521967457607,0.25895068049431,-0.01427555270493],[-0.12080605328083,-0.035123206675053,-0.081410266458988]],[[-0.08903356641531,0.026868373155594,0.07910842448473],[0.13681522011757,0.090223699808121,0.12970209121704],[-0.22772395610809,-0.078887291252613,0.053874261677265]],[[-0.05829768627882,-0.079901687800884,-0.086680941283703],[0.069768033921719,-0.057546380907297,0.0076329279690981],[0.10999176651239,-0.013524826616049,-0.06330731511116]],[[-0.02388496696949,0.089465752243996,-0.16042044758797],[0.016505569219589,-0.064103230834007,0.055976644158363],[0.029728855937719,0.21620263159275,0.067671127617359]],[[0.029702277854085,-0.058652956038713,0.10914395749569],[0.0055725993588567,0.074517354369164,-0.088637501001358],[-0.049947772175074,-0.13864986598492,-0.1091767847538]],[[0.1741007566452,0.0040336847305298,-0.058158881962299],[-0.26996210217476,-0.33098009228706,0.20650660991669],[-0.0036703594960272,-0.031830329447985,0.046306345611811]],[[-0.015282335691154,-0.049095425754786,0.047576237469912],[0.11903071403503,-0.073264852166176,-0.2043504267931],[-0.01250040717423,0.0010186283616349,-0.079696953296661]],[[-0.10491029918194,0.13274136185646,0.084279410541058],[0.041807074099779,0.12342664599419,0.043271910399199],[-0.14237147569656,-0.29246002435684,-0.084785372018814]],[[-0.14857597649097,0.095834389328957,-0.01204614341259],[-0.096793450415134,0.045801509171724,0.0081250965595245],[-0.28570997714996,-0.10360683500767,-0.033972255885601]],[[-0.055367182940245,0.060640256851912,0.063309416174889],[-0.023271853104234,-0.096204787492752,-0.096120908856392],[-0.11916548758745,0.091488301753998,-0.077214196324348]],[[-0.17093859612942,-0.0066636456176639,0.024564119055867],[-0.093318492174149,0.033566065132618,-0.055635273456573],[-0.10469676554203,-0.18910671770573,-0.058604788035154]],[[-0.1292327940464,-0.14769300818443,0.0051942556165159],[-0.092353835701942,-0.029326524585485,0.17108851671219],[0.075197637081146,0.1550277620554,0.11911768466234]],[[0.10146296769381,0.058223724365234,0.021657105535269],[-0.029048912227154,0.0090025570243597,-0.040582861751318],[0.10981350392103,-0.05640684068203,-0.070208325982094]],[[0.023025367408991,0.0850949883461,0.0086960904300213],[-0.059927314519882,0.066866502165794,0.042143065482378],[0.03793416172266,0.1241430491209,-0.12754094600677]],[[0.06918228417635,0.0082046827301383,-0.061243958771229],[0.084660641849041,-0.054529622197151,-0.072208046913147],[-0.25447046756744,-0.22168001532555,-0.34464055299759]],[[0.043567188084126,0.071417883038521,-0.02615181170404],[-0.048063162714243,-0.0026319492608309,-0.0016977143241093],[-0.032400406897068,0.011255570687354,0.20124192535877]],[[0.016972983255982,-0.09686965495348,-0.073427125811577],[-0.052022561430931,-0.041786354035139,0.0064008114859462],[-0.13333359360695,-0.035387437790632,-0.040831264108419]],[[0.061160251498222,-0.0613360889256,0.013687474653125],[-0.04981505125761,-0.023983228951693,-0.03256107494235],[0.056028679013252,0.10563272237778,-0.10557951778173]],[[-0.068632811307907,0.052790131419897,0.087669976055622],[-0.045118823647499,-0.043722957372665,-0.093427680432796],[-0.101891733706,-0.12807025015354,-0.055766515433788]],[[-0.014372804202139,-0.0044351276010275,0.028740687295794],[-0.047586694359779,-0.14576625823975,-0.073169864714146],[0.063368901610374,0.035360135138035,0.10960210859776]],[[-0.077586770057678,0.023832598701119,0.010624187067151],[0.079633817076683,0.036905393004417,0.058780107647181],[-0.071867153048515,0.021558310836554,0.015046441927552]],[[0.073021546006203,-0.042663514614105,-0.021194057539105],[-0.087521828711033,-0.31632563471794,-0.14429605007172],[-0.20328587293625,-0.091867074370384,-0.041138712316751]],[[0.014712253585458,0.02066202275455,-0.044751740992069],[-0.072583943605423,0.057324182242155,0.055669598281384],[-0.14566770195961,-0.24497881531715,-0.091458775103092]],[[-0.038823734968901,0.051097758114338,-0.2099616676569],[-0.067918561398983,0.22210988402367,-0.14682097733021],[-0.058462932705879,-0.036779999732971,0.050046943128109]],[[-0.089683309197426,-0.066538073122501,-0.053987286984921],[0.0018098125001416,0.14076374471188,-0.0036930730566382],[-0.032210789620876,0.089237287640572,0.077384732663631]],[[-0.038991551846266,-0.16303582489491,-0.21160200238228],[0.052582956850529,0.091482505202293,0.037218101322651],[-0.35497555136681,0.017855128273368,0.12403576821089]],[[-0.18580150604248,-0.0055574011057615,-0.10221797972918],[-0.095634862780571,-0.023946732282639,0.044239308685064],[-0.11349726468325,-0.27184137701988,-0.0035358334425837]],[[-0.032846748828888,-0.015346551313996,-0.0031037162989378],[0.071203649044037,-0.00060221512103453,0.070651061832905],[-0.015096343122423,-0.18984334170818,0.1307936757803]],[[-0.071543946862221,-0.088828153908253,-0.018896175548434],[-0.15408703684807,-0.016900107264519,0.11262311041355],[-0.12692074477673,0.13260582089424,0.13700279593468]],[[0.19002276659012,-0.037648372352123,-0.12515376508236],[0.0023320789914578,0.028486026450992,0.15880185365677],[-0.1585468351841,0.10614905506372,0.090038560330868]]],[[[-0.020159833133221,-0.026818411424756,0.0036585750058293],[-0.098450273275375,-0.05180149525404,-0.030395817011595],[0.058898363262415,-0.047273751348257,-0.036309365183115]],[[0.023771623149514,0.10605654865503,-0.07549674808979],[-0.027244217693806,0.029438158497214,0.045643858611584],[0.10475626587868,0.0078547755256295,-0.080642402172089]],[[-0.072973668575287,-0.0023387286346406,-0.13759994506836],[0.041495528072119,0.069858618080616,-0.013334321789443],[0.1582056581974,-0.041933156549931,0.0047299764119089]],[[-0.11568501591682,-0.30899649858475,-0.23795810341835],[0.027321737259626,0.081278003752232,0.23995384573936],[0.083014234900475,0.089436829090118,0.087846592068672]],[[-0.059246372431517,0.043440636247396,0.01604200899601],[-0.0014572346117347,0.0022521244827658,0.035687122493982],[-0.095238476991653,-0.10575164854527,-0.0011048675514758]],[[0.017773132771254,-0.091084450483322,0.2665082514286],[-0.076732993125916,0.0044559272937477,-0.052914194762707],[-0.013549392111599,-0.010028625838459,-0.1447674036026]],[[0.051361810415983,0.0052021099254489,-0.013751070015132],[-0.093372732400894,0.071513086557388,0.0057508544996381],[0.13041937351227,-0.075873479247093,-0.042353611439466]],[[0.027792626991868,0.02384040132165,-0.059039477258921],[0.019775604829192,0.15015603601933,0.088940866291523],[-0.051103979349136,-0.028334319591522,-0.12613354623318]],[[0.053583133965731,-0.10597988963127,-0.040339600294828],[0.12950567901134,-0.015857534483075,0.042864561080933],[0.059381037950516,-0.088099122047424,0.015617023222148]],[[0.13090842962265,0.057290848344564,-0.082382939755917],[-0.067465730011463,-0.038381733000278,-0.13649187982082],[-0.04943273589015,0.060818195343018,-0.27249041199684]],[[-0.072280965745449,-0.058802507817745,-0.039418715983629],[0.098647810518742,0.020355893298984,-0.058560319244862],[0.094140708446503,0.078048579394817,-0.09210417419672]],[[-0.12389665096998,0.13322292268276,0.16100633144379],[-0.027539787814021,0.020394761115313,0.014936683699489],[-0.1472295820713,0.01103591080755,0.0021094216499478]],[[-0.096667796373367,-0.079544499516487,-0.050835903733969],[0.1485708206892,0.03890473023057,-0.036295838654041],[0.15517358481884,0.11984992772341,-0.2834047973156]],[[-0.064519390463829,0.032920226454735,-0.03169197589159],[-0.070497639477253,0.098809026181698,0.015381576493382],[0.058295875787735,-0.019413031637669,0.011908592656255]],[[0.033509980887175,0.032915823161602,0.021102959290147],[-0.076082862913609,-0.043555192649364,-0.082175724208355],[-0.076412729918957,0.073176331818104,0.034268993884325]],[[0.088160298764706,0.085640460252762,0.04743230342865],[-0.1613155901432,-0.042272739112377,-0.040575060993433],[-0.061396405100822,0.07477131485939,-0.098650202155113]],[[0.14056795835495,-0.048303548246622,-0.099934779107571],[-0.027445059269667,0.15469780564308,0.014020971953869],[-0.1839225590229,0.011301876045763,0.021179530769587]],[[0.059477679431438,-0.07623366266489,0.018984720110893],[0.042414572089911,-0.022268569096923,0.18707770109177],[-0.14188024401665,-0.042693510651588,0.028761398047209]],[[-0.053770333528519,0.043264307081699,0.065341874957085],[-0.045400496572256,-0.0020667021162808,-0.042628966271877],[0.028285419568419,-0.0034590151626617,0.10268160700798]],[[0.066586941480637,-0.044250279664993,-0.11597691476345],[0.070664748549461,0.03135921061039,-0.16256698966026],[0.064438737928867,-0.031028997153044,0.020965164527297]],[[0.091359555721283,0.036257512867451,-0.033546414226294],[0.019490512087941,-0.093062609434128,0.090210102498531],[-0.20021790266037,0.0018106864299625,0.08292294293642]],[[0.0022279492113739,0.026095405220985,-0.076871879398823],[0.027052657678723,0.081181347370148,0.07990425825119],[0.038732752203941,0.084850169718266,0.061826154589653]],[[0.11550390720367,0.026474963873625,-0.055435441434383],[-0.051341149955988,-0.055095247924328,0.046254120767117],[0.11314701288939,0.042618073523045,0.05420869961381]],[[-0.050887256860733,0.043660540133715,0.01094071380794],[-0.037446562200785,0.099391549825668,0.0568124987185],[-0.081066556274891,-0.08277390152216,0.040809765458107]],[[0.061505876481533,-0.014033586718142,-0.12427960336208],[0.015539327636361,0.059912990778685,-0.10656595230103],[0.021940607577562,-0.035040132701397,-0.089733451604843]],[[-0.054573722183704,0.037058874964714,-0.07631941139698],[-0.026386560872197,0.034512188285589,0.073724165558815],[0.079176902770996,-0.11292271316051,-0.0095052951946855]],[[0.053606495261192,-0.01257543079555,0.099241703748703],[-0.044724032282829,-0.002874598139897,0.034952681511641],[-0.027471179142594,-0.018812086433172,-0.098592527210712]],[[-0.081053219735622,0.060459911823273,-0.060562629252672],[0.051642116159201,-0.034493379294872,-0.21204629540443],[0.069009333848953,0.19473959505558,-0.0045060557313263]],[[0.060391273349524,0.038764804601669,0.0012132935225964],[0.038722291588783,0.10360704362392,0.017683830112219],[0.044639959931374,-0.15487350523472,0.012841148301959]],[[0.051989540457726,-0.02725032530725,-0.087060250341892],[0.030029019340873,0.11665810644627,0.035821482539177],[0.082305081188679,0.092180833220482,0.0015979023883119]],[[-0.047005534172058,0.069754041731358,0.063944421708584],[0.10041322559118,0.15627208352089,-0.052564363926649],[0.07501295208931,-0.088186182081699,-0.11343988031149]],[[0.0088501544669271,-0.15741205215454,-0.099050588905811],[-0.046012464910746,-0.007321422919631,-0.1106501147151],[0.0016886605881155,0.090964816510677,-0.14410220086575]]],[[[0.047091271728277,-0.059229791164398,0.16515852510929],[0.14087428152561,-0.17022626101971,-0.065800055861473],[0.14166598021984,-0.0056821131147444,-0.094203300774097]],[[-0.062297135591507,0.068993657827377,-0.010110347531736],[-0.14736805856228,0.11811976134777,0.021208170801401],[-0.05012634396553,0.033558871597052,0.01226123329252]],[[-0.13465730845928,0.14422142505646,0.048493292182684],[0.011075322516263,-0.085587218403816,-0.037309978157282],[0.044514406472445,-0.050163589417934,0.020640436559916]],[[0.031756050884724,-0.15264469385147,0.066053338348866],[0.22422356903553,-0.176902577281,0.076425574719906],[0.02456490509212,-0.19986359775066,-0.015368904918432]],[[-0.062056541442871,0.066744551062584,-0.050439652055502],[0.06295008957386,-0.066893868148327,0.044290501624346],[0.036440558731556,0.098878867924213,0.033714354038239]],[[-0.0042650946415961,-0.011451404541731,-0.10593247413635],[-0.01234820112586,-0.035116448998451,0.19319812953472],[0.055818166583776,0.06316526979208,-0.1582695543766]],[[0.10213212668896,-0.00065104709938169,0.13191315531731],[-0.027079168707132,0.023433901369572,-0.13940151035786],[-0.13245134055614,0.066983416676521,-0.073145940899849]],[[0.087370231747627,-0.082383148372173,0.051434695720673],[0.068349845707417,-0.036170769482851,0.13433526456356],[0.05199096351862,0.075817249715328,0.01031260099262]],[[0.010587482713163,0.087240062654018,-0.040983788669109],[-0.12019769102335,0.0078859115019441,0.029766511172056],[-0.1190123334527,0.06448982656002,-0.0089203827083111]],[[-0.098676323890686,0.037363957613707,0.11617421358824],[-0.23490963876247,-0.10461989790201,-0.045554060488939],[-0.1612958163023,-0.00020070544269402,0.053400412201881]],[[0.035639751702547,-0.038439601659775,-0.12912975251675],[0.04099303111434,0.0059446096420288,-0.19529715180397],[-0.18497352302074,0.023080015555024,-0.01856392249465]],[[0.087281547486782,-0.085947833955288,-0.13990312814713],[-0.15110582113266,0.10591088980436,-0.09532368928194],[0.039782263338566,0.068977363407612,-0.086249321699142]],[[-0.0036015165969729,-0.097291514277458,-0.19329965114594],[0.11880754679441,0.0026919161900878,-0.047745708376169],[-0.15521617233753,-0.096564136445522,0.02615693025291]],[[0.030612654983997,0.032581020146608,-0.27775904536247],[0.10605071485043,0.11082148551941,-0.1443127989769],[0.056326448917389,0.0442074239254,-0.2414316534996]],[[-0.024729631841183,0.057405307888985,0.043524563312531],[-0.15968668460846,0.039594043046236,-0.012115930207074],[0.025583133101463,0.035998642444611,0.041308086365461]],[[-0.077919587492943,-0.014169778674841,0.025003030896187],[0.14438121020794,-0.041896518319845,-0.061933279037476],[0.01781097240746,0.026136780157685,-0.034277901053429]],[[-0.16133043169975,-0.015877863392234,0.13513681292534],[-0.11109734326601,0.098971754312515,-0.09548731893301],[-0.066846124827862,0.10773195326328,-0.0096519840881228]],[[-0.10676831007004,-0.056677661836147,-0.057886563241482],[-0.034819114953279,-0.017126573249698,0.014294566586614],[-0.067721165716648,0.1169950440526,-0.073318295180798]],[[-0.11799708753824,0.069005697965622,0.089833311736584],[-0.077786833047867,0.048331186175346,-0.038451332598925],[0.021538494154811,-0.043556120246649,-0.085564956068993]],[[-0.15872637927532,0.013916247524321,-0.059334896504879],[-0.022610327228904,-0.073714174330235,-0.16020104289055],[-0.066468290984631,0.054168373346329,-0.090242691338062]],[[0.01965993642807,-0.029988497495651,0.053831566125154],[0.02774391323328,0.041545778512955,-0.032209191471338],[-0.16491781175137,0.040285468101501,0.021374858915806]],[[-0.010982652194798,-0.082781456410885,0.040635298937559],[0.026349782943726,0.088568285107613,0.061515960842371],[-0.088887400925159,0.10333526134491,-0.022427894175053]],[[-0.012194668874145,0.042158659547567,-0.0915217846632],[-0.053033657371998,-0.00023169345513452,0.02580183185637],[-0.043960493057966,0.021724240854383,0.028026318177581]],[[-0.012002201750875,0.061190072447062,0.071610108017921],[-0.13792259991169,-0.051021873950958,0.064925976097584],[-0.11767500638962,-0.061084225773811,-0.073335006833076]],[[-0.1189838424325,0.052973542362452,0.13754338026047],[-0.10677642375231,0.14952522516251,-0.038461208343506],[-0.056794818490744,0.13666641712189,-0.025569314137101]],[[-0.12739327549934,0.080044992268085,-0.0094355689361691],[-0.070198990404606,-0.028289601206779,0.0041356203146279],[-0.0085649080574512,0.032088324427605,0.13196465373039]],[[0.030083077028394,0.033959183841944,-0.032534316182137],[-0.036104314029217,-0.041259124875069,-0.0085050826892257],[-0.043728590011597,0.17613573372364,-0.077325150370598]],[[-0.089091762900352,0.11249189078808,-0.11174679547548],[-0.2903938293457,0.032466448843479,0.077145427465439],[0.066052600741386,-0.081597648561001,0.099164269864559]],[[-0.099465183913708,0.086538940668106,-0.085618659853935],[0.063694670796394,-0.079622536897659,0.024054531008005],[0.16950610280037,0.011276867240667,-0.20310805737972]],[[-0.16431470215321,-0.03252848982811,0.052052985876799],[0.17773665487766,0.016148034483194,0.0069044092670083],[-0.0085299061611295,-0.062868639826775,-0.019660336896777]],[[0.097619287669659,0.0074351946823299,-0.096397861838341],[-0.012462913058698,-0.096577599644661,-0.028599815443158],[0.0048606530763209,-0.033631507307291,0.016364114359021]],[[0.015415528789163,-0.08295401185751,-0.07299779355526],[-0.095379076898098,-0.042021479457617,0.11084513366222],[-0.06510853022337,-0.11260049045086,-0.075746268033981]]],[[[0.11731334030628,-0.056448645889759,0.055261131376028],[0.17209078371525,-0.14847852289677,0.16437008976936],[-0.11967971920967,-0.22275412082672,-0.18416106700897]],[[0.0039328411221504,0.06795396655798,-0.014569291844964],[0.048913922160864,0.042035453021526,-0.12140186876059],[0.14210060238838,0.019648618996143,-0.060196787118912]],[[-0.021609866991639,-0.12721514701843,0.1328976303339],[-0.25900253653526,0.046504121273756,0.0081325499340892],[-0.062955901026726,-0.017675492912531,0.20779658854008]],[[-0.04398775473237,-0.056303087621927,-0.0536426641047],[0.098272703588009,-0.063034601509571,0.13849644362926],[-0.075359389185905,-0.11167021095753,-0.028255758807063]],[[-0.012967892922461,0.053283367305994,0.023768153041601],[0.011602743528783,-0.08912068605423,-0.045229647308588],[-0.072210744023323,-0.001881186501123,-0.12108818441629]],[[-0.11226184666157,-0.12553334236145,0.035383656620979],[-0.21966773271561,-0.16759483516216,0.083185710012913],[0.13493469357491,0.050500258803368,-0.10649260878563]],[[0.01637914031744,-0.04493049159646,-0.28799718618393],[0.021767787635326,0.028109725564718,0.10054364055395],[0.066081896424294,0.21672484278679,-0.13053856790066]],[[-0.040119782090187,0.11474142223597,0.06179827824235],[-0.10930423438549,-0.13749505579472,0.05009999871254],[-0.0755270794034,-0.12147413939238,0.10340911149979]],[[0.091300830245018,0.070219673216343,-0.075937353074551],[-0.061524771153927,0.039469353854656,0.033492539077997],[0.0038975093048066,-0.014160092920065,0.079919911921024]],[[-0.042481001466513,-0.058103404939175,-0.090867653489113],[0.19552528858185,-0.031990371644497,-0.20847158133984],[0.018124980852008,0.1214724779129,-0.013971033506095]],[[-0.2170528024435,0.039588212966919,-0.081783302128315],[-0.028661198914051,0.0045369151048362,0.20050324499607],[0.055466271936893,-0.073732301592827,0.0099003566429019]],[[0.26876989006996,0.077975407242775,0.061994630843401],[0.028802454471588,0.073710203170776,-0.093770399689674],[-0.13949178159237,0.16643054783344,0.13389259576797]],[[-0.17524527013302,-0.16319662332535,0.14504908025265],[-0.023084741085768,-0.053156778216362,-0.13695998489857],[-0.1817961782217,-0.023065108805895,-0.083062767982483]],[[-0.00010499797645025,0.026337118819356,-0.12308893352747],[-0.026851182803512,0.19115483760834,0.013398767448962],[0.011611437425017,0.011694951914251,0.0056968196295202]],[[0.010949871502817,0.046008516103029,-0.034492053091526],[-0.016010005027056,-0.031242383643985,-0.049403339624405],[0.012016360647976,0.018256878480315,0.026569843292236]],[[0.054294273257256,0.055704180151224,-0.073356039822102],[0.020804656669497,0.044054910540581,-0.074243046343327],[-0.0019424649653956,0.01694449223578,0.099292665719986]],[[-0.14374993741512,0.07220159471035,0.096157863736153],[-0.13282886147499,0.027500804513693,0.033686023205519],[-0.18009142577648,-0.14192007482052,-0.1395115852356]],[[-0.071412958204746,-0.028862902894616,0.15183660387993],[-0.22012886404991,0.09020159393549,0.0091486535966396],[-0.13640549778938,-0.0072587807662785,0.12169246375561]],[[0.024230739101768,-0.0079331044107676,0.054478157311678],[-0.14117161929607,0.041534908115864,0.077667139470577],[-0.063855871558189,-0.070686638355255,-0.0049398248083889]],[[-0.09901462495327,0.082722179591656,-0.047101061791182],[-0.10260166227818,0.12892527878284,-0.048681430518627],[-0.1302701830864,0.05230325832963,0.10269996523857]],[[-0.18705894052982,0.12185229361057,0.03448386490345],[-0.072664216160774,0.034884370863438,0.061000220477581],[0.022742176428437,-0.011836543679237,0.066593922674656]],[[-0.18012949824333,0.034087434411049,-0.016829762607813],[-0.032318789511919,-0.025726651772857,-0.18673917651176],[0.11351227015257,0.16477084159851,-0.043557990342379]],[[-0.0560596100986,0.070718221366405,0.00053088658023626],[-0.00574836647138,-0.042919907718897,-0.045710861682892],[-0.019017329439521,0.054137177765369,-0.15562869608402]],[[-0.16510261595249,-0.10700763761997,-0.031445551663637],[-0.13706529140472,-0.071034476161003,-0.0037531710695475],[-0.13983322679996,0.014027412980795,-0.045902941375971]],[[-0.046643324196339,0.02101880684495,-0.071683660149574],[-0.051505297422409,-0.11069453507662,-0.038299851119518],[-0.14364373683929,-0.092733033001423,-0.029023982584476]],[[-0.11493587493896,0.064909368753433,-0.024485407397151],[-0.043231662362814,0.28059294819832,-0.19548682868481],[-0.12913317978382,0.013648449443281,0.027896746993065]],[[-0.034318991005421,-0.10535398870707,0.08218814432621],[0.02396871894598,-0.011972892098129,0.064622260630131],[0.043062940239906,-0.065985232591629,0.011295373551548]],[[-0.028762651607394,0.19404941797256,-0.18331044912338],[-0.082329474389553,0.10467462986708,0.05340364202857],[-0.039730384945869,0.043886918574572,0.062582850456238]],[[-0.0074259112589061,-0.063681371510029,0.09718019515276],[0.025771182030439,0.040567178279161,0.11632787436247],[0.034020505845547,0.047914020717144,0.21266692876816]],[[0.052543368190527,-0.093606717884541,-0.021898379549384],[0.017064278945327,-0.14876821637154,0.11178921163082],[0.012313650920987,0.20351402461529,-0.032872743904591]],[[-0.3458506166935,0.16198147833347,0.1388612985611],[-0.0063390657305717,0.1920317709446,-0.14016227424145],[0.0084704039618373,0.030574994161725,-0.048888463526964]],[[-0.022891009226441,0.10924061387777,0.066104397177696],[0.017380522564054,0.13116174936295,-0.30155670642853],[-0.16614747047424,0.19916278123856,8.3685757999774e-05]]],[[[-0.20355136692524,0.047290273010731,-0.071816638112068],[0.019649300724268,-0.11122720688581,-0.0051319897174835],[-0.15402294695377,-0.014706527814269,-0.015319000929594]],[[0.023598222061992,-0.018226061016321,0.028821786865592],[-0.050446964800358,0.008736751973629,-0.0028678751550615],[0.05158581584692,0.085189282894135,-0.060066662728786]],[[-0.10483082383871,0.062419399619102,0.14353574812412],[-0.16600422561169,-0.044651288539171,0.17641185224056],[-0.15221354365349,0.01758749037981,0.15245282649994]],[[-0.090917132794857,-0.0056690964847803,-0.10518249869347],[-0.015872156247497,-0.1205997094512,-0.1255454570055],[-0.013917247764766,0.02816011197865,-0.11829186975956]],[[-0.10477614402771,-0.070816919207573,-0.0090365996584296],[0.015341826714575,0.028397619724274,-0.055696696043015],[0.10607921332121,0.12069733440876,-0.027018919587135]],[[0.023253332823515,-0.066603228449821,-0.097276002168655],[-0.049077205359936,-0.057675313204527,0.086729004979134],[-0.067622400820255,0.13111090660095,-0.23027861118317]],[[-0.10385581105947,-0.045193061232567,0.00019958076882176],[-0.0057177655398846,0.097394354641438,0.043029516935349],[-0.070725820958614,0.29443871974945,0.0045832581818104]],[[0.02593513764441,0.15048119425774,0.052513029426336],[-0.059394229203463,0.12110783159733,0.085321262478828],[-0.16844239830971,-0.13709890842438,0.025944938883185]],[[-0.18683761358261,0.031757578253746,0.041377566754818],[0.057852312922478,-0.087118491530418,-0.0308802369982],[0.12541027367115,0.011978302150965,-0.0002902224950958]],[[-0.0026884146500379,0.047233756631613,-0.047922290861607],[0.00016497983597219,0.033350169658661,0.045378137379885],[0.0076926555484533,0.094418920576572,-0.027198579162359]],[[-0.10885386168957,-0.021351367235184,0.048803452402353],[0.08854915201664,-0.056270688772202,0.050419423729181],[0.017492569983006,0.1468795388937,-0.072835087776184]],[[-0.042492467910051,0.042186681181192,0.13201430439949],[-0.095901682972908,-0.15433678030968,0.012885212898254],[0.13211888074875,-0.10332138091326,0.12412359565496]],[[0.11816802620888,-0.074443146586418,0.083017736673355],[0.057628590613604,0.010022851638496,0.0063705462962389],[-0.069061666727066,-0.1147803068161,0.081538707017899]],[[-0.015387167222798,-0.065821006894112,0.10054863244295],[-0.12030008435249,-0.12680605053902,-0.058526854962111],[-0.15089659392834,0.035060416907072,-0.2406537681818]],[[0.0024888303596526,-0.018942767754197,0.06152580678463],[0.0047605321742594,-0.029574589803815,-0.018313307315111],[-0.059019256383181,0.047063682228327,0.037185307592154]],[[0.10995321720839,0.011273050680757,-0.0047432463616133],[0.13967080414295,-0.095870673656464,-0.095126077532768],[0.1031426563859,0.022797742858529,-0.081761412322521]],[[-0.0088997092097998,-0.15860860049725,-0.069635331630707],[0.13034407794476,0.075268492102623,-0.0078152492642403],[-0.10408959537745,-0.077610477805138,0.0561185143888]],[[0.01787712238729,-0.021636733785272,-0.071470491588116],[-0.008383764885366,0.070409454405308,-0.031158411875367],[-0.1788729429245,0.016533199697733,-0.11945777386427]],[[-0.18219265341759,-0.10989187657833,-0.00058825092855841],[0.15764719247818,-0.10281217843294,-0.33654761314392],[-0.15677036345005,0.099459990859032,-0.22674211859703]],[[-0.12854987382889,-0.055730659514666,0.051278367638588],[-0.013530550524592,0.0085356403142214,0.0015741059323773],[0.040714289993048,-0.14825583994389,-0.081820659339428]],[[0.13319662213326,0.045527379959822,0.1522931009531],[-0.089795358479023,-0.082452386617661,-0.0046167857944965],[0.11580891907215,0.017115725204349,-0.13047683238983]],[[-0.14480186998844,0.082524262368679,-0.05223448202014],[-0.13142117857933,0.061461467295885,-0.12409273535013],[0.066151469945908,-0.17100888490677,0.027859691530466]],[[0.037354491651058,0.055847022682428,-0.081289649009705],[-0.08591116964817,-0.075303196907043,0.0020638385321945],[-0.11170686036348,0.17316028475761,-0.039076149463654]],[[-0.073142498731613,-0.10111036151648,0.052469719201326],[0.028681617230177,0.10230852663517,0.044295735657215],[-0.26240313053131,0.066878698766232,-0.1493653357029]],[[-0.11823453009129,0.13190668821335,-0.27325639128685],[-0.19421239197254,-0.098316714167595,0.056919243186712],[0.019279953092337,-0.030815882608294,-0.013546979986131]],[[-0.018284047022462,0.25417432188988,-0.051498476415873],[0.15314793586731,-0.005109918769449,0.021619630977511],[-0.064915105700493,0.0016574015608057,-0.30718338489532]],[[0.082880839705467,-0.13107195496559,0.06229405477643],[-0.05327719822526,0.075382545590401,-0.061600014567375],[0.029503209516406,0.10130923986435,0.031517941504717]],[[0.0076372721232474,-0.095618203282356,0.19019503891468],[0.071010790765285,-0.079354047775269,0.050449147820473],[0.04847639799118,0.18223963677883,-0.0040509509854019]],[[-0.0073717338964343,0.018376938998699,-0.074852034449577],[0.046656381338835,-0.1378637701273,0.08354564756155],[0.10918472707272,0.0025032199919224,0.23097366094589]],[[-0.10190060734749,-0.018216293305159,0.057559177279472],[0.0017274337587878,-0.025718405842781,0.049099158495665],[-0.082122564315796,-0.094397686421871,-0.0075891632586718]],[[0.018820757046342,-0.23754245042801,-0.13391397893429],[-0.027523415163159,0.067259162664413,-0.092629849910736],[0.14333255589008,-0.21370972692966,-0.062528230249882]],[[-0.20809580385685,-0.063650891184807,-0.094879657030106],[0.038301635533571,-0.039458937942982,-0.053956996649504],[-0.16857282817364,-0.1258053034544,0.0053331716917455]]],[[[-0.070159494876862,-0.10306520760059,0.11471623927355],[0.051985532045364,0.00042368058348075,-0.13410100340843],[0.12042640894651,0.063987508416176,0.087461732327938]],[[-0.037945970892906,0.049650706350803,-0.012734199874103],[0.02372926287353,-0.036714974790812,0.040825635194778],[-0.11631169170141,-0.075932361185551,0.034213270992041]],[[0.029778717085719,-0.070539422333241,-0.24488021433353],[0.036789946258068,0.023501753807068,0.12396492063999],[0.11452487111092,-0.18649584054947,0.040207080543041]],[[0.04948778450489,-0.076165415346622,0.1999354660511],[-0.019435983151197,0.11711193621159,-0.062205787748098],[-0.051411759108305,-0.079932905733585,-0.20017774403095]],[[-0.034215990453959,-0.071796916425228,-0.085835941135883],[-0.058861900120974,-0.0055417129769921,0.066639840602875],[0.053897202014923,0.0011123942676932,0.05917626619339]],[[0.11798004060984,0.041489228606224,9.1966358013451e-06],[-0.0045643197372556,0.024371536448598,-0.16894859075546],[0.071778625249863,-0.25508517026901,-0.092772699892521]],[[0.02226890437305,-0.11855682730675,-0.10451371967793],[0.15075063705444,0.20149670541286,0.079383261501789],[-0.12056893855333,-0.057769618928432,-0.20109407603741]],[[-0.0066822017543018,0.055997025221586,0.036148477345705],[0.070766001939774,7.9946898040362e-05,0.049886841326952],[0.20138372480869,0.093926995992661,0.11176799982786]],[[0.015346547588706,-0.026574475690722,0.099746994674206],[0.051471970975399,-0.065484344959259,0.01030670106411],[-0.019316481426358,-0.024892244488001,-0.15605226159096]],[[-0.050802379846573,0.085773661732674,-0.29494866728783],[0.18569460511208,-0.078292056918144,0.04928632453084],[-0.10952192544937,0.13866505026817,-0.012018698267639]],[[-0.20546191930771,0.090606153011322,-0.052570819854736],[-0.17994852364063,0.034328579902649,-0.058081388473511],[-0.07144371420145,0.13406433165073,0.060213223099709]],[[-0.052583005279303,-0.051968034356833,-0.10147515684366],[0.12497904896736,-0.032496340572834,0.0080944858491421],[-0.027686154469848,-0.096446432173252,0.017457207664847]],[[-0.086909599602222,-0.12196903675795,-0.023488573729992],[-0.11651677638292,-0.033154122531414,0.14303295314312],[0.0074980244971812,0.03168411552906,-0.046040695160627]],[[-0.079800330102444,-0.10671981424093,0.16223648190498],[0.031939968466759,0.085708349943161,-0.015701450407505],[0.15516452491283,-0.10604578256607,0.016154253855348]],[[0.0051560956053436,0.049117010086775,-0.053264826536179],[0.11241535097361,-0.060880400240421,0.020154694095254],[0.01993446983397,0.10396587103605,0.015988565981388]],[[0.059991735965014,0.023790532723069,0.056140065193176],[0.11194968223572,-0.071779817342758,0.062076441943645],[0.24906446039677,0.054546993225813,0.012517428956926]],[[-0.091647930443287,0.13847261667252,0.060494262725115],[-0.008713616989553,0.020228452980518,-0.098785027861595],[-0.030028901994228,0.15784296393394,-0.017870180308819]],[[0.043782532215118,-0.12774394452572,0.080478571355343],[-0.1077561378479,-0.047703523188829,-0.049987640231848],[-0.12236354500055,0.070400469005108,0.12557451426983]],[[-0.01145488396287,0.067012019455433,0.10813763737679],[0.020140627399087,-0.007501311134547,0.050285428762436],[-0.27967989444733,-0.065178819000721,-0.096362747251987]],[[-0.16416332125664,0.040237437933683,-0.033339954912663],[-0.16409680247307,-0.10735613107681,0.10222291201353],[0.00050031335558742,0.0050047002732754,0.034125454723835]],[[-0.027137514203787,-0.042741525918245,-0.062967851758003],[0.066748321056366,-0.021292427554727,0.09296740591526],[0.0141606843099,0.057318508625031,0.16390971839428]],[[0.04589493945241,-0.094655245542526,-0.063962191343307],[0.096838869154453,0.051860973238945,0.034972786903381],[-0.036647956818342,0.029984211549163,0.2064014673233]],[[0.031844358891249,0.02124366350472,0.1962638348341],[0.00027745141414925,-0.15953415632248,0.12571312487125],[0.27400740981102,-0.074174977838993,-0.30985453724861]],[[-0.11345419287682,-0.1012748926878,-0.23708392679691],[0.12113047391176,-0.085012868046761,-0.013618567958474],[0.14925473928452,-0.011573184281588,0.12050221115351]],[[0.048129022121429,-0.092910826206207,-0.048775587230921],[0.019845280796289,-0.0023409582208842,0.17217533290386],[-0.0079820640385151,-0.11352673172951,-0.21368445456028]],[[0.093497514724731,0.061203122138977,-0.068163029849529],[-0.033565122634172,0.018011378124356,-0.11601075530052],[0.004027855116874,-0.09923329949379,0.18408554792404]],[[-0.014597129076719,-0.079502411186695,0.026599606499076],[0.0387047752738,0.0021516066044569,0.040824852883816],[0.12106797099113,-0.0087884766981006,0.0064974199049175]],[[-0.10024522989988,-0.14025847613811,0.013024575076997],[0.19174538552761,-0.0254444219172,0.26230815052986],[-0.069177053868771,-0.0054722316563129,-0.090469241142273]],[[-0.029899619519711,-0.21047510206699,-0.12551605701447],[-0.042464688420296,-0.13740105926991,0.06908968091011],[0.18119095265865,-0.01315048057586,0.15525589883327]],[[-0.084000773727894,0.037901137024164,-0.02066957950592],[-0.0066341515630484,0.11030546575785,0.063745863735676],[0.023244947195053,-0.13203218579292,-0.16639931499958]],[[-0.053446985781193,0.025946632027626,-0.010363207198679],[0.089215621352196,-0.058641877025366,-0.11700528860092],[-0.15493988990784,0.037047348916531,0.021193029358983]],[[-0.15375749766827,-0.050962962210178,-0.060357823967934],[0.013152360916138,-0.097314208745956,-0.0086183827370405],[-0.12741772830486,-0.091090098023415,-0.12366566807032]]],[[[0.094372741878033,0.098995037376881,-0.046104222536087],[-0.1098677739501,0.074496865272522,0.093355491757393],[-0.14284299314022,-0.092534080147743,-0.11088142544031]],[[-0.036662712693214,0.02824942022562,-0.11735762655735],[-0.003901292802766,0.081428490579128,-0.077329985797405],[-0.00880176294595,0.13064275681973,0.04006389528513]],[[-0.0083350343629718,0.042371686547995,-0.083509355783463],[-0.12415714561939,0.081053204834461,0.0028456572908908],[-0.012254458852112,-0.088010013103485,0.0051281577907503]],[[0.048566572368145,0.019542496651411,0.012083548121154],[-0.014222355559468,0.029623640701175,-0.1069171205163],[0.039034966379404,-0.0020001952070743,-0.1115645840764]],[[0.093056708574295,0.0050873053260148,-0.089444100856781],[-0.032103564590216,-0.11904546618462,0.11225508153439],[-0.00072153646033257,0.13079392910004,0.02401683293283]],[[0.059765227138996,-0.13467136025429,0.025256983935833],[0.0071161491796374,-0.020932164043188,0.076231867074966],[-0.0095418961718678,-0.13967810571194,0.13491483032703]],[[0.013933336362243,-0.023989919573069,0.019170427694917],[0.052630521357059,0.00025517391622998,0.047789931297302],[-0.14270439743996,0.0095373364165425,-0.20660018920898]],[[-0.22286002337933,0.20260402560234,-0.013558830134571],[-0.022298058494925,0.10890428721905,-0.094001993536949],[-0.076113767921925,-0.11665773391724,-0.16198761761189]],[[0.060947079211473,-0.015610262751579,0.077750712633133],[-0.058444660156965,-0.062303852289915,0.02968243137002],[0.092129603028297,0.068741269409657,0.032129928469658]],[[0.013102116063237,-0.036194141954184,0.12112099677324],[-0.12905664741993,0.031814940273762,0.17781983315945],[-0.042006406933069,0.056272722780704,0.044542215764523]],[[-0.02129215747118,0.077871523797512,0.095606751739979],[-0.068139165639877,-0.18301422894001,0.023236535489559],[0.0034466485958546,-0.069868460297585,-0.03956588730216]],[[-0.15294946730137,0.052477896213531,-0.027427472174168],[-0.0093944566324353,-0.014893398620188,0.074502602219582],[-0.082865372300148,0.029229074716568,0.11528711766005]],[[0.01972477324307,-0.037689056247473,-0.075093314051628],[-0.12180061638355,-0.042252130806446,0.015672296285629],[-0.041380632668734,0.073062367737293,0.012408843263984]],[[0.058629062026739,0.004532138351351,0.014364205300808],[-0.20641623437405,-0.03163954615593,-0.013985487632453],[-0.074517205357552,-0.10914966464043,0.017342697829008]],[[-0.067128494381905,0.025663277134299,-0.072575218975544],[0.057784225791693,7.4303075962234e-05,-0.054066423326731],[0.062822058796883,0.011827777139843,-0.090885698795319]],[[0.15621869266033,-0.015338632278144,0.039172656834126],[0.064534790813923,0.040476057678461,0.077636733651161],[0.021620882675052,-0.12568368017673,-0.090764991939068]],[[0.047189578413963,0.01806254312396,-0.15462084114552],[-0.11110714823008,-0.11089567095041,0.086015589535236],[-0.023570658639073,0.076581366360188,0.036203421652317]],[[-0.035309690982103,-0.059873856604099,-0.10338210314512],[-0.044271562248468,-0.014458854682744,-0.14992852509022],[-0.070995047688484,0.050942722707987,0.11731917411089]],[[0.12122520059347,-0.047033075243235,-0.019775230437517],[-0.20040184259415,-0.025321912020445,-0.11682602763176],[0.037838961929083,-0.011519498191774,-0.21723480522633]],[[-0.041319455951452,-0.11455668509007,-0.072563327848911],[0.061467990279198,-0.015251930803061,0.10370677709579],[-0.1557755023241,0.12816414237022,0.05736506357789]],[[0.058174110949039,-0.11776673793793,0.038775339722633],[0.082459859549999,-0.04996520280838,-0.074460707604885],[-0.0077123027294874,0.072791188955307,-0.021495776250958]],[[-0.073753297328949,-0.0061321910470724,-0.07775042951107],[-0.074064545333385,-0.082016855478287,0.044963926076889],[0.065777219831944,-0.0049530435353518,0.027971189469099]],[[0.02406895160675,0.071518115699291,-0.15136429667473],[0.14596202969551,-0.069975785911083,-0.12329738587141],[0.035401832312346,-0.067535579204559,-0.076567575335503]],[[-0.026077454909682,-0.013256162405014,0.16064038872719],[0.012471874244511,-0.26199525594711,0.11350842565298],[-0.14895190298557,-0.10452995449305,0.16812205314636]],[[-0.13712383806705,-0.021448068320751,-0.081304378807545],[0.086812689900398,-0.069832250475883,-0.020494669675827],[0.059794474393129,0.043920826166868,0.097369641065598]],[[-0.013057879172266,0.024364938959479,-0.027317296713591],[-0.021805446594954,0.096760861575603,0.071823492646217],[0.14461934566498,-0.056706763803959,-0.19417378306389]],[[-0.017790082842112,0.0043080984614789,0.048037935048342],[-0.026989806443453,-0.078221641480923,0.10460250079632],[-0.061579436063766,0.1153759509325,0.026298267766833]],[[0.025390328839421,0.028433738276362,-0.041146624833345],[-0.0082626277580857,0.01414670329541,-0.14546231925488],[0.076982989907265,0.098218567669392,-0.043444000184536]],[[-0.092558063566685,-0.098623484373093,0.12033983319998],[-0.10574669390917,-0.056224271655083,0.061429463326931],[-0.07436628639698,-0.022372789680958,0.10932309925556]],[[-0.049438022077084,0.019934605807066,0.056986197829247],[-0.11899816989899,-0.14746847748756,0.078374356031418],[-0.021974246948957,-0.063858546316624,0.016588607802987]],[[0.021117847412825,0.02806269004941,0.060696825385094],[0.11047169566154,-0.043347764760256,-0.11111122369766],[0.14642718434334,0.018341889604926,-0.050316877663136]],[[0.053117111325264,4.2317889892729e-05,0.037101019173861],[-0.11956831812859,-0.065034165978432,-0.11776917427778],[0.040233578532934,-0.056310743093491,-0.030536552891135]]],[[[-0.033809322863817,-0.11668267846107,-0.087401360273361],[0.038161031901836,-0.08527422696352,0.016187638044357],[0.032217178493738,0.010878986679018,0.12082715332508]],[[-0.0063190697692335,0.0081669799983501,-0.0575569011271],[0.046282798051834,0.075833238661289,0.021750371903181],[-0.011467778123915,0.052922435104847,-0.060843430459499]],[[-0.19416120648384,0.034072108566761,-0.16641426086426],[0.033573888242245,0.038902126252651,0.078245490789413],[-0.022081024944782,0.031920604407787,0.035227205604315]],[[0.044608730822802,-0.21737477183342,-0.160868242383],[0.047104440629482,0.13678665459156,0.15543572604656],[-0.021612916141748,0.099922813475132,-0.022284867241979]],[[-0.17789472639561,-0.0080278953537345,0.12747047841549],[0.046213489025831,-0.013897322118282,-0.020682336762547],[0.14887051284313,-0.070494830608368,0.040312848985195]],[[-0.032226856797934,-0.057027872651815,0.0052122082561255],[0.0032300802413374,0.097163625061512,-0.24518297612667],[-0.11593725532293,-0.27379405498505,-0.1107833981514]],[[-0.037024434655905,-0.052716124802828,0.094400234520435],[0.063229978084564,-0.05907167494297,0.07332568615675],[0.1183011084795,-0.05686504393816,-0.17710502445698]],[[-0.10289826989174,-0.087549105286598,-0.017335936427116],[-0.14779824018478,-0.12311501801014,0.17627707123756],[-0.048750568181276,-0.10830677300692,0.13978241384029]],[[-0.14785400032997,-0.026014745235443,0.10631497204304],[0.11102461069822,0.059781935065985,-0.03120762296021],[-0.04193440079689,-0.082762449979782,0.062167692929506]],[[0.043234065175056,0.0078184334561229,0.049727626144886],[-0.030041618272662,0.0010761967860162,-0.12867270410061],[-0.072566263377666,0.077410526573658,-0.29739663004875]],[[0.080148220062256,0.10248581320047,0.09002210944891],[-0.059141810983419,-0.011883332394063,-0.027430754154921],[-0.11146977543831,0.076076105237007,0.10083948075771]],[[-0.048065975308418,-0.066759698092937,-0.10729441791773],[0.056492373347282,0.011318727396429,0.039318528026342],[-0.21282824873924,0.21068234741688,0.091641515493393]],[[0.032942242920399,-0.067951120436192,0.17265622317791],[-0.048148401081562,0.07426530867815,0.10688063502312],[0.04225280508399,-0.099545024335384,-0.049538940191269]],[[0.078271336853504,-0.0013718045083806,0.014980746433139],[-0.050092212855816,-0.016320345923305,0.020638413727283],[0.062266673892736,0.07100834697485,0.066180698573589]],[[0.094440795481205,0.014992031268775,-0.076011575758457],[0.047523386776447,-0.016116168349981,-0.11153315007687],[0.044980313628912,-0.0027818807866424,-0.053022250533104]],[[0.016246184706688,0.13438972830772,0.065756030380726],[-0.099099360406399,0.12531505525112,-0.10005750507116],[0.083182364702225,-0.043984934687614,0.015713602304459]],[[-0.12239692360163,-0.085850931704044,-0.064176298677921],[0.012517744675279,0.041888564825058,-0.13540683686733],[-0.0086626401171088,0.015407656319439,-0.10969055444002]],[[-0.1728517562151,-0.067299224436283,0.19763284921646],[-0.007370297331363,-0.13004764914513,0.0010841088369489],[-0.22889097034931,-0.15015068650246,0.0056571909226477]],[[-0.045113377273083,-0.059831481426954,0.023962751030922],[0.019389206543565,-0.03416932374239,0.16194385290146],[-0.060996390879154,-0.010340778157115,0.15976639091969]],[[-0.052760072052479,0.034439362585545,-0.19284278154373],[-0.035651188343763,0.10979324579239,-0.033858798444271],[0.096847511827946,0.024520009756088,-0.021833501756191]],[[-0.041008446365595,0.22707915306091,0.0017301822081208],[-0.077018082141876,0.020474707707763,0.020230118185282],[-0.20900894701481,-0.12798690795898,0.00088052434148267]],[[-0.035922363400459,0.0085691567510366,-0.056167338043451],[0.088361293077469,0.13556884229183,0.15691676735878],[0.1156143695116,-0.13535885512829,-0.037077996879816]],[[0.10268104821444,0.13593876361847,0.12633734941483],[0.021246133372188,0.089777261018753,0.021447338163853],[-0.14372950792313,-0.042504884302616,0.13929978013039]],[[-0.096062734723091,0.043573103845119,0.10485696792603],[0.048813730478287,-0.010223725810647,0.051393505185843],[-0.0065896608866751,-0.015952903777361,0.070056840777397]],[[-0.089958839118481,-0.18169738352299,-0.099089987576008],[0.11900869011879,-0.061993844807148,-0.052639652043581],[0.089288964867592,0.043032709509134,-0.081275120377541]],[[0.024575589224696,-0.079968057572842,-0.094856612384319],[0.010079262778163,0.017007088288665,-0.10678496956825],[0.0025013545528054,0.12426405400038,-0.059310365468264]],[[-0.032179318368435,-0.023424042388797,0.013074702583253],[-0.022637585178018,-0.001360091380775,0.049930952489376],[-0.14389428496361,0.037805519998074,0.12314091622829]],[[-0.049434714019299,0.23297901451588,-0.027786027640104],[0.035643260926008,0.04107653349638,-0.11588194221258],[-0.10523211210966,-0.077198572456837,-0.18267218768597]],[[-0.031343162059784,0.07425145804882,-0.047444347292185],[0.013841992244124,0.0075533231720328,0.062963865697384],[0.066903851926327,-0.049393955618143,-0.028311228379607]],[[-0.11851397901773,-0.021804973483086,-0.00062767381314188],[0.063573837280273,0.083940178155899,0.01813885755837],[-0.034214876592159,0.048532702028751,0.043895449489355]],[[-0.063745081424713,-0.096682272851467,-0.12366047501564],[-0.12639810144901,0.045806955546141,0.057298284024],[-0.14212343096733,-0.035345569252968,0.017883477732539]],[[-0.059238072484732,-0.060138918459415,-0.25284039974213],[-0.046634886413813,-0.024510860443115,-0.16188019514084],[-0.10032625496387,0.041116088628769,0.089411407709122]]],[[[0.022930443286896,0.012255592271686,-0.13936477899551],[0.11771941184998,0.14421840012074,-0.002372459275648],[0.12521305680275,0.0035766733344644,-0.22802065312862]],[[0.074828252196312,0.0086433719843626,-0.19784985482693],[0.17040587961674,0.046091079711914,0.048625115305185],[-0.088134072721004,-0.070340424776077,-0.057372510433197]],[[-0.1694234162569,0.016179066151381,-0.022621104493737],[-0.080509401857853,0.080304026603699,0.077179238200188],[0.069101221859455,-0.13755455613136,-0.085596464574337]],[[0.10128592699766,0.1300356388092,0.1740607470274],[-0.059784803539515,-0.10578800737858,-0.17798958718777],[0.22111573815346,0.23197086155415,0.11405390501022]],[[-0.075248897075653,-0.067357093095779,-0.026047006249428],[-0.02413766272366,0.20065553486347,0.16252708435059],[-0.032712213695049,0.055852960795164,0.00032392275170423]],[[-0.067456215620041,-0.063552640378475,0.021521873772144],[-0.063123822212219,-0.047073755413294,-0.059647884219885],[0.015157361514866,0.070485770702362,0.052332352846861]],[[0.087687693536282,0.039085537195206,0.064079269766808],[-0.045504249632359,-0.17809258401394,-0.15740732848644],[0.13757455348969,0.15738639235497,0.1647244989872]],[[-0.029465148225427,0.017951754853129,0.17208781838417],[0.0068918652832508,-0.019712388515472,-0.094979181885719],[0.1014115139842,0.12525154650211,-0.061882447451353]],[[-0.0015744488919154,0.14073538780212,0.081875786185265],[0.059246499091387,0.14758986234665,-0.056544601917267],[0.029627315700054,0.18564078211784,0.022662525996566]],[[0.032155767083168,-0.068230360746384,-0.079699702560902],[-0.031630098819733,0.13106735050678,0.062846072018147],[-0.091659612953663,0.01924011297524,0.087694607675076]],[[0.1645879149437,0.073742397129536,0.1183847784996],[0.23828639090061,-0.046492874622345,-0.11748399585485],[0.13489654660225,0.17578954994678,0.10137140005827]],[[-0.003601263044402,-0.34134912490845,0.027776828035712],[0.18843483924866,-0.15584643185139,-0.04036033526063],[-0.013105191290379,-0.192163169384,-0.065162293612957]],[[0.023424483835697,0.016230015084147,0.079696372151375],[0.089960232377052,-0.040735431015491,0.02690015360713],[0.0045962790027261,0.0089788474142551,0.071499392390251]],[[0.13003268837929,0.062078598886728,0.070052087306976],[0.14746385812759,-0.011824261397123,0.021586336195469],[-0.02080749347806,-0.061364278197289,0.05775049701333]],[[0.092759296298027,-0.086337774991989,-0.034297358244658],[0.023502085357904,0.013441610150039,-0.03668437898159],[0.082475930452347,0.064592309296131,-0.11997124552727]],[[-0.002476379275322,0.1533073335886,-0.11145920306444],[-0.046336088329554,0.12745785713196,-0.044303603470325],[0.010778433643281,0.102579459548,-0.12455660104752]],[[0.10169402509928,0.11474648863077,0.16916839778423],[-0.085391864180565,-0.0091441376134753,-0.019497327506542],[-0.0069931275211275,-0.038633674383163,-0.06789593398571]],[[-0.16418321430683,-0.029955077916384,0.079695835709572],[-0.042594663798809,-0.12028263509274,0.090143017470837],[0.11453279852867,-0.066266298294067,0.018129395321012]],[[-0.17869925498962,0.1024053171277,-0.035893984138966],[0.012889934703708,0.054155696183443,0.074856005609035],[0.037564810365438,-0.080536238849163,-0.044753909111023]],[[0.0055819693952799,0.1147710904479,0.059531021863222],[-0.10034124553204,-0.089209869503975,0.087149567902088],[-0.15522393584251,0.079490803182125,0.073526218533516]],[[0.026450958102942,0.030219087377191,-0.081667028367519],[0.0075785163789988,0.099023029208183,-0.13946244120598],[-0.15501157939434,-0.0008167335181497,0.046995263546705]],[[-0.14760288596153,0.033254839479923,-0.064361788332462],[0.014358693733811,0.1577420681715,0.091042585670948],[-0.0059706047177315,0.040720589458942,-0.15981212258339]],[[0.056376006454229,0.21757462620735,-0.047172013670206],[-0.16097028553486,0.06062638014555,0.2266701310873],[-0.087466403841972,0.097186543047428,-0.18498186767101]],[[0.047621015459299,-0.044311851263046,0.0098692206665874],[-0.0082453209906816,-0.004660053178668,0.13550706207752],[0.091021828353405,0.14074252545834,0.065062321722507]],[[0.019364181905985,0.093377970159054,0.09259519726038],[-0.027615070343018,0.075218938291073,0.028502972796559],[-0.020586129277945,-0.027673939242959,0.050471555441618]],[[-0.064475663006306,0.0031386537011713,0.14007392525673],[0.10292428731918,0.15392658114433,-0.032719749957323],[-0.079358212649822,-0.18763336539268,-0.084265366196632]],[[-0.014910602010787,0.022728215903044,0.024995267391205],[0.052043344825506,0.053320590406656,-0.012786941602826],[-0.029294911772013,-0.041993025690317,-0.027390683069825]],[[-0.0088327676057816,0.044281836599112,0.16168953478336],[0.094159841537476,0.040096074342728,-0.0052197529003024],[0.024141270667315,0.079892337322235,0.054108660668135]],[[-0.04303253442049,0.17528465390205,-0.0018747141584754],[0.0081009734421968,0.074623852968216,-0.043924685567617],[0.019363792613149,-0.061641670763493,-0.19852197170258]],[[0.0077235964126885,-0.032496012747288,0.007212882861495],[0.029715195298195,-0.024905003607273,-0.066030882298946],[-0.068951062858105,0.024454891681671,0.15324780344963]],[[0.10740901529789,0.17463406920433,0.020113784819841],[0.04332073405385,0.11084949970245,0.084295898675919],[0.016448691487312,-0.13997681438923,-0.082921266555786]],[[-0.0018464663298801,-0.025857398286462,-0.10223591327667],[0.030481060966849,0.012625857256353,0.10145268589258],[0.016314309090376,0.049523070454597,0.027900910004973]]],[[[0.0092553459107876,-0.0021624185610563,0.12225580215454],[-0.078249305486679,-0.021046511828899,-0.059862326830626],[0.10017100721598,0.021655635908246,-0.057968840003014]],[[0.036811597645283,0.0029189055785537,0.014300956390798],[0.012444608844817,0.039337981492281,-0.040046814829111],[0.012011648155749,0.035333573818207,0.089367754757404]],[[-0.03953030705452,0.045869246125221,0.091468445956707],[0.15565900504589,0.017827844247222,0.012649928219616],[-0.087608605623245,0.013773332349956,0.060097612440586]],[[0.12241480499506,0.22415751218796,0.12827299535275],[-0.20234756171703,0.049625400453806,-0.16997286677361],[-0.01233066059649,0.091646641492844,-0.00072322506457567]],[[-0.07419192045927,-0.05241921544075,-0.031396668404341],[0.031365096569061,-0.069006234407425,-0.0012173216091469],[0.046013850718737,-0.026101084426045,-0.046190563589334]],[[-0.17179121077061,0.12315470725298,0.007184499874711],[-0.047938596457243,0.03505602478981,0.05283122882247],[-0.13595847785473,0.06055610999465,0.053744487464428]],[[-0.32610592246056,-0.096869088709354,-0.042527552694082],[0.052625712007284,-0.052695594727993,-0.041111454367638],[-0.0041165412403643,-0.026776427403092,0.067520290613174]],[[-0.18568667769432,0.097777761518955,0.032587047666311],[-0.27299612760544,-0.097510106861591,0.05535563826561],[-0.1312265843153,-0.017295958474278,0.064695902168751]],[[-0.09403433650732,0.0045236744917929,0.028692526742816],[-0.11318326741457,-0.0327979773283,0.074038103222847],[0.0074006882496178,-0.068658940494061,0.047215189784765]],[[-0.18088984489441,0.10283473879099,-0.0029468091670424],[-0.063371032476425,0.025911781936884,-0.30334541201591],[-0.17496687173843,-0.078571759164333,-0.13583326339722]],[[0.049565240740776,0.043867763131857,-0.061511795967817],[-0.16960243880749,-0.017002323642373,-0.084620520472527],[-0.086472772061825,-0.038854815065861,0.068083576858044]],[[-0.14840637147427,0.052164044231176,0.13265089690685],[-0.06485665589571,0.055224992334843,-0.18175655603409],[-0.09793795645237,0.03428416326642,0.093170091509819]],[[-0.15723766386509,-0.070294626057148,-0.036458861082792],[-0.16581006348133,0.014078709296882,-0.13965219259262],[-0.058551240712404,0.032160293310881,0.0054019778035581]],[[-0.016133975237608,0.10387148708105,0.099380001425743],[-0.079367682337761,-0.10050737857819,-0.042379960417747],[-0.10073022544384,0.0015095738926902,0.13257835805416]],[[-0.043772295117378,-0.037622023373842,0.043374788016081],[-0.012594289146364,0.045709040015936,-0.055498018860817],[0.0079681631177664,-0.026719441637397,0.0054355980828404]],[[0.15908785164356,0.095536760985851,-0.0029447698034346],[-0.012680077925324,-0.039261348545551,-0.035450074821711],[-0.082346804440022,0.045336104929447,-0.094654977321625]],[[-0.13708531856537,-0.2110220938921,-0.016974231228232],[-0.04524927213788,-0.23039372265339,0.10204862803221],[0.062715880572796,0.045234587043524,0.055187504738569]],[[-0.086043760180473,0.092080503702164,-0.11091819405556],[0.077831953763962,0.1326732635498,-0.040651626884937],[0.052598536014557,0.070796482264996,-0.068120926618576]],[[-0.068787641823292,0.014058741740882,0.016014384105802],[-0.022344229742885,0.0065242541022599,-0.018226485699415],[0.046403374522924,0.028371032327414,0.023740086704493]],[[-0.014106577262282,-0.083709500730038,0.044038489460945],[-0.04949014633894,-0.019000289961696,-0.038958292454481],[-0.03411366418004,0.020137645304203,0.12134727835655]],[[0.073166593909264,0.06625908613205,0.021965419873595],[-0.13316889107227,-0.074177995324135,0.050373669713736],[0.031717773526907,0.10397578030825,0.10714533179998]],[[0.00010986355482601,-0.021421004086733,-0.1760723143816],[0.070008516311646,0.08975188434124,0.10188490152359],[0.059028722345829,-0.07927305996418,-0.36006042361259]],[[0.11856743693352,0.17837209999561,-0.16051903367043],[0.026261642575264,-0.080306954681873,-0.082681871950626],[-0.09160128980875,0.042075496166945,0.041914775967598]],[[-0.18890304863453,-0.069055989384651,-0.063231743872166],[0.011960232630372,0.07016359269619,0.11692493408918],[-0.044122833758593,-0.17984175682068,-0.076357088983059]],[[-0.066993787884712,-0.017352381721139,-0.098615124821663],[-0.060826048254967,-0.2316876500845,-0.015432556159794],[-0.097525767982006,-0.02538874745369,0.14164175093174]],[[-0.031270664185286,-0.26024580001831,-0.027043905109167],[-0.027112007141113,0.053603317588568,0.11622094362974],[-0.020550539717078,0.064649112522602,0.11227215826511]],[[-0.013028843328357,-0.044333666563034,0.080706909298897],[-0.022711822763085,0.038210242986679,0.045913130044937],[0.048296608030796,-0.015256438404322,-0.17932361364365]],[[0.37395775318146,0.071699567139149,0.060732007026672],[-0.12639345228672,-0.055858951061964,-0.096549443900585],[0.14297060668468,-0.047399528324604,0.068082496523857]],[[-0.23034062981606,-0.10510479658842,0.14863727986813],[-0.16800463199615,-0.13063685595989,-0.01167872082442],[-0.20611324906349,0.012067527510226,-0.044218763709068]],[[-0.011836207471788,0.11225828528404,0.00026316425646655],[-0.063938461244106,-0.028111159801483,0.0077301640994847],[0.070203840732574,0.0011194425169379,0.040130391716957]],[[-0.074808530509472,0.1377824395895,0.02444364503026],[-0.10202108323574,0.062408611178398,-0.01876980997622],[0.015723168849945,0.12347187101841,-0.094934038817883]],[[-0.11162639409304,-0.069207757711411,-0.067648902535439],[-0.11829616874456,-0.065675087273121,0.053174246102571],[0.015397702343762,-0.0078809130936861,-0.074178494513035]]],[[[-0.117999792099,0.071924462914467,-0.077143527567387],[0.092464134097099,0.094937965273857,-0.020470755174756],[-0.12333140522242,0.08530892431736,0.01420486997813]],[[-0.015850955620408,-0.080998942255974,0.060946300625801],[-0.077445484697819,-0.16133761405945,-0.0010416987352073],[-0.0074419141747057,-0.11070484668016,0.072667300701141]],[[-0.18910530209541,0.20416301488876,-0.058134075254202],[0.17196108400822,-0.0074874837882817,0.042315579950809],[-0.037999920547009,0.2935351729393,-0.046658791601658]],[[-0.016534710302949,-0.031087024137378,-0.18375870585442],[0.087114326655865,0.13038669526577,-0.022296506911516],[-0.035912089049816,-0.049012683331966,-0.04385844245553]],[[-0.00091038248501718,-0.2010131329298,-0.0236587934196],[-0.011953555978835,-0.074685268104076,0.045956376940012],[0.15224409103394,-0.14507023990154,-0.14576609432697]],[[0.0099337678402662,-0.11678557097912,-0.11679535359144],[-0.099191516637802,-0.066892981529236,-0.044190261512995],[-0.12147361040115,-0.10198111832142,0.095290414988995]],[[-0.085672900080681,0.13014270365238,0.035975705832243],[0.15874265134335,0.028715180233121,0.081637427210808],[0.13448376953602,0.016173342242837,-0.12314812093973]],[[-0.099445857107639,-0.10470026731491,0.031724281609058],[0.1505825817585,0.12847474217415,0.059897154569626],[-0.12177143990993,0.044761035591364,-0.099094279110432]],[[-0.048556309193373,0.076260671019554,0.078482307493687],[-0.19143654406071,-0.1385355591774,-0.085661761462688],[-0.024741657078266,0.1441882699728,0.081821046769619]],[[0.025723477825522,-0.051268447190523,-0.059393338859081],[0.098591037094593,0.10588271170855,0.15284606814384],[-0.039017617702484,-0.042006131261587,-0.038943972438574]],[[-0.0023578929249197,-0.023571668192744,-0.034520503133535],[-0.026016784831882,-0.11390138417482,-0.014162169769406],[0.094909451901913,-0.057232078164816,0.013373943977058]],[[-0.19658020138741,-0.15144808590412,-0.19051031768322],[0.18147855997086,0.12557390332222,-0.12183970212936],[0.10770139843225,-0.019719565287232,0.090435869991779]],[[0.050653669983149,-0.042273949831724,-0.02136617153883],[-0.019255239516497,0.14105010032654,0.01737641915679],[-0.0068969167768955,-0.052048284560442,-0.058071468025446]],[[-0.018771775066853,-0.16826583445072,-0.13059566915035],[0.15325431525707,0.090558260679245,-0.00084946193965152],[0.11530768871307,-0.089524880051613,0.029585590586066]],[[0.0063845692202449,-0.076866418123245,0.0035816049203277],[-0.010420368053019,-0.045644409954548,-0.027722740545869],[0.030847920104861,-0.039274454116821,0.058309268206358]],[[-0.15523605048656,-0.2767314016819,-0.027034010738134],[0.038754034787416,0.081573352217674,-0.10822927951813],[-0.19498158991337,-0.23340435326099,0.074760034680367]],[[-0.0554039478302,-0.0298852622509,0.014460160396993],[0.0027289390563965,-0.22940458357334,-0.014240828342736],[-0.13406321406364,-0.06045413762331,0.036164652556181]],[[-0.04831849783659,-0.089632786810398,-0.12492350488901],[0.15931801497936,-0.14563411474228,-0.17001028358936],[-0.081134013831615,-0.025321399793029,-0.18159782886505]],[[0.049394559115171,-0.062970131635666,-0.050309728831053],[0.17355051636696,0.0028785800095648,-0.10902152955532],[-0.015540502034128,-0.088063225150108,-0.1426018923521]],[[0.16215243935585,0.12907138466835,0.013490104116499],[-0.044534590095282,-0.15047182142735,-0.16397069394588],[-0.017640283331275,0.025399304926395,0.097221173346043]],[[0.029616728425026,0.17486608028412,-0.16521760821342],[-0.060560625046492,-0.007823197171092,0.10987149178982],[-0.16541719436646,0.017261216416955,0.056631095707417]],[[0.0067417342215776,-0.061681110411882,0.098016306757927],[0.029175287112594,-0.069395616650581,0.11536933481693],[-0.13037446141243,0.20742292702198,0.1010539457202]],[[0.12250347435474,-0.090384535491467,0.07202835381031],[0.016451768577099,-0.21898646652699,-0.16118967533112],[0.069427311420441,0.0097444104030728,-0.032052334398031]],[[0.06767550110817,-0.073302656412125,-0.0066637224517763],[0.010769912973046,-0.13262215256691,-0.097735270857811],[-0.068192139267921,-0.041267178952694,-0.0026109658647329]],[[-0.042806077748537,-0.14401876926422,0.0036535519175231],[0.039589650928974,-0.054076083004475,0.069674596190453],[0.16138154268265,0.024298682808876,-0.02633167244494]],[[0.13371336460114,0.071206770837307,-0.12610231339931],[-0.070370592176914,0.020429585129023,-0.059495121240616],[-0.15706637501717,-0.0097771324217319,0.17840288579464]],[[0.019079443067312,-0.055440064519644,-0.074982114136219],[-0.0013770393561572,-0.02130631916225,-0.072629272937775],[0.0080714402720332,-0.11077723652124,-0.13842390477657]],[[0.11477792263031,-0.045219179242849,0.030389815568924],[0.043742354959249,0.041903637349606,-0.16307860612869],[0.10561408102512,0.053167704492807,-0.08693540096283]],[[-0.087084509432316,-0.13387455046177,0.05868312343955],[0.10850762575865,0.21758413314819,0.11157836019993],[0.026472499594092,-0.0037596670445055,0.0057006739079952]],[[0.011063138023019,0.039035830646753,0.044280875474215],[0.026588555425406,0.052168425172567,0.033595066517591],[0.13563114404678,-0.070666342973709,-0.015924237668514]],[[-0.11316203325987,-0.0514847189188,-0.15933635830879],[-0.14505012333393,0.058239810168743,-0.051822811365128],[-0.033951014280319,0.013573509640992,0.014601518400013]],[[0.069446988403797,0.069595068693161,0.016813615337014],[-0.29143619537354,-0.13108819723129,0.064613625407219],[0.18804912269115,-0.036478098481894,0.0050598317757249]]],[[[-0.027379954233766,-0.083279229700565,0.027696346864104],[-0.005427606869489,-0.010758416727185,0.042397674173117],[-0.016510225832462,0.035756468772888,-0.11383680999279]],[[-0.057950016111135,0.0052334279753268,0.040856085717678],[-0.03979891911149,-0.046868521720171,-0.030285278335214],[0.14328467845917,0.029823865741491,-0.022825302556157]],[[0.013159777969122,0.11508664488792,-0.069408319890499],[0.10692003369331,-0.014387748204172,-0.07578556984663],[-0.21100473403931,0.0056334710679948,-0.040817275643349]],[[0.043805461376905,-0.091269828379154,-0.23061335086823],[-0.059686977416277,-0.0088973939418793,0.063110463321209],[0.052524842321873,0.10054074972868,0.01637733541429]],[[-0.10681238025427,0.0025368023198098,0.18360114097595],[-0.039585195481777,0.0034832954406738,0.0012939886655658],[0.072885528206825,-0.060695137828588,-0.070661038160324]],[[-0.079235963523388,0.047638960182667,0.0664451867342],[0.0072613651864231,0.032625585794449,0.12249298393726],[0.060839753597975,-0.015859689563513,-0.11494102329016]],[[0.26785770058632,0.024255556985736,0.056360732764006],[0.10312017798424,-0.31100824475288,-0.039104450494051],[-0.028516562655568,-0.10901705175638,-0.21659468114376]],[[0.19578874111176,0.052855618298054,-0.16253034770489],[-0.12366836518049,-0.10560514777899,-0.033506575971842],[-0.013459417968988,-0.060158275067806,-0.032202392816544]],[[-0.14469495415688,0.031436204910278,0.051192749291658],[-0.032653085887432,0.043018169701099,0.04701055586338],[0.10406381636858,0.054130781441927,-0.16552890837193]],[[0.094334661960602,0.14172287285328,0.098327159881592],[0.11211097240448,-0.056358367204666,-0.028927966952324],[0.048398464918137,-0.15896762907505,-0.0075093205086887]],[[0.02762539498508,0.055452477186918,-0.10982018709183],[0.046719204634428,-0.034244444221258,-0.18958431482315],[-0.016670214012265,0.0064293337054551,-0.14988195896149]],[[0.075855679810047,0.071504034101963,0.015813048928976],[-0.026140637695789,-0.13164368271828,-0.17594015598297],[-0.16698159277439,-0.13088096678257,-0.0077881454490125]],[[-0.03345737606287,-0.027578381821513,-0.072264902293682],[0.080684028565884,0.099139392375946,-0.056128520518541],[-0.097645595669746,-0.026972223073244,0.003010842949152]],[[0.0070473956875503,-0.25864559412003,-0.26497119665146],[-0.094779007136822,-0.13896556198597,0.074147753417492],[0.046454209834337,0.024258825927973,0.046716716140509]],[[-0.063901036977768,-0.034951873123646,0.044806648045778],[0.070255316793919,0.040317077189684,-0.033890660852194],[-0.0277258772403,0.0024586848448962,0.053909864276648]],[[-0.1924335360527,0.022898834198713,0.0011089674662799],[-0.19406954944134,0.20931327342987,-0.086582466959953],[0.026471959426999,0.033994380384684,-0.17128621041775]],[[-0.016297589987516,-0.12266579270363,-0.075416952371597],[0.048618260771036,-0.077481061220169,0.044438067823648],[-0.088626407086849,-0.058946862816811,-0.15530456602573]],[[-0.096048913896084,0.12300257384777,0.043422549962997],[0.090599447488785,-0.067472025752068,0.10634779185057],[-0.02873221039772,0.029542053118348,0.057436291128397]],[[-0.2934598326683,-0.1717793494463,0.020881259813905],[0.12180062383413,-0.10063158720732,-0.051085494458675],[-0.10649193078279,-0.14752052724361,-0.034441765397787]],[[0.20870153605938,0.19500015676022,0.088124692440033],[-0.075677588582039,-0.12073469161987,0.046824932098389],[-0.015566627494991,-0.05206798017025,-0.1126127243042]],[[0.11186490207911,0.037985406816006,-0.21831904351711],[0.053611770272255,-0.038650881499052,-0.20747691392899],[0.069561786949635,-0.064687564969063,-0.14765055477619]],[[-0.072517268359661,0.0256616640836,0.13202868402004],[0.04399985447526,0.036904040724039,0.083552993834019],[-0.18373669683933,0.16568949818611,-0.16218709945679]],[[-0.081865824759007,0.028339108452201,-0.042351216077805],[0.083602763712406,0.12115380167961,-0.11391039937735],[0.16399872303009,0.14271453022957,0.026187013834715]],[[0.13020172715187,0.13580422103405,-0.17761178314686],[0.18985040485859,0.096535056829453,-0.13764460384846],[-0.048416797071695,-0.050857752561569,-0.15503369271755]],[[-0.0084205744788051,-0.02427439391613,0.16640210151672],[-0.22514921426773,-0.11122021824121,-0.14310635626316],[0.20918402075768,-0.033469751477242,-0.069155365228653]],[[0.072149001061916,-0.021900232881308,-0.083223685622215],[-0.014398779720068,-0.10250791162252,0.0860430970788],[-0.12695881724358,0.086536347866058,-0.082591012120247]],[[0.038220267742872,-0.035898115485907,0.059331495314837],[0.039761200547218,-0.0073203542269766,0.082073144614697],[-0.0038543287664652,-0.074919804930687,-0.1030787229538]],[[-0.070859767496586,-0.27501547336578,0.029911898076534],[0.052479609847069,-0.054606709629297,-0.11093877255917],[0.15308648347855,0.08452296257019,0.050189476460218]],[[0.049038574099541,0.09043250232935,0.11216451972723],[0.048170607537031,0.043782245367765,0.058076091110706],[-0.036629740148783,-0.24680735170841,-0.029304826632142]],[[0.058728765696287,0.042541965842247,0.063584119081497],[-0.009662133641541,0.0024322527460754,-0.12014780938625],[-0.078964561223984,0.017379304394126,0.014189088717103]],[[0.0042866584844887,0.10128307342529,-0.083848863840103],[0.05955196171999,-0.0104028172791,-0.013535346835852],[-0.16689962148666,-0.15915857255459,0.035223972052336]],[[-0.16853676736355,0.010611777193844,0.13538880646229],[-0.02485204860568,0.070796310901642,-0.039368566125631],[-0.16193051636219,0.051467850804329,0.11147216707468]]],[[[0.1404941380024,0.037633653730154,-0.14880427718163],[0.094356156885624,-0.0089415945112705,0.068809553980827],[0.015196909196675,0.015653988346457,0.041038669645786]],[[-0.071810558438301,-0.090073026716709,-0.053940758109093],[0.038556408137083,0.068803779780865,-0.091974288225174],[-0.045516319572926,-0.055690120905638,-0.022250529378653]],[[0.019549570977688,-0.095486134290695,-0.13398978114128],[0.030568558722734,0.027748934924603,-0.073567822575569],[-0.079778388142586,-0.10800348967314,0.061283763498068]],[[0.031080082058907,-0.066189080476761,-0.019745208323002],[0.0021788217127323,-0.16843897104263,-0.14045771956444],[-0.0034636801574379,0.080988682806492,0.1363033503294]],[[0.095118917524815,-0.073522068560123,-0.033864907920361],[0.056420635432005,0.085683822631836,0.10510224103928],[-0.017138952389359,-0.067791953682899,0.12592169642448]],[[0.05612313374877,-0.063643701374531,0.10918122529984],[-0.0043106772936881,0.032370176166296,0.17905643582344],[0.086058616638184,0.021481482312083,-0.13723921775818]],[[-0.13310220837593,0.014576843939722,-0.057683289051056],[-0.093789979815483,-0.022098941728473,-0.064045690000057],[0.014985686168075,0.16593250632286,0.18145674467087]],[[0.027846127748489,-0.018131935968995,0.13373017311096],[-0.032192762941122,0.031223762780428,0.12193062901497],[0.13084742426872,-0.11412592232227,0.16311894357204]],[[0.0094896331429482,-0.049566030502319,0.10726833343506],[0.0085590416565537,0.054868601262569,0.026785377413034],[-0.13278263807297,-0.009452466852963,-0.010678101330996]],[[0.065702393651009,-0.16086353361607,0.016415044665337],[0.024748554453254,-0.041906584054232,0.081205986440182],[0.2739220559597,0.018005486577749,-0.051676914095879]],[[-0.066212959587574,0.013500986620784,0.026805123314261],[0.10394082963467,-0.034510221332312,0.012447990477085],[0.080827131867409,-0.0024089163634926,-0.18432626128197]],[[0.036798950284719,0.15269845724106,0.0045476583763957],[-0.04322225600481,0.047060038894415,0.041968233883381],[-0.19288866221905,-0.049250718206167,-0.016070827841759]],[[0.143729403615,0.029620600864291,0.023635262623429],[-0.038593210279942,0.080555118620396,-0.011305228807032],[0.0076676211319864,-0.077082417905331,-0.011104302480817]],[[0.06579402089119,0.11845961213112,-0.08237262070179],[0.13590927422047,0.0043373806402087,-0.066728718578815],[0.11082203686237,0.064585849642754,0.045148324221373]],[[0.021536668762565,0.12443667650223,-0.0063456725329161],[-0.046000216156244,0.030381390824914,0.033557195216417],[-0.049340840429068,-0.018506282940507,0.068788148462772]],[[-0.03578170761466,0.032570689916611,0.23845335841179],[-0.1168405637145,0.03024679236114,0.066906817257404],[-0.090877294540405,-0.10965614020824,-0.021674221381545]],[[-0.10246124118567,-0.048117887228727,-0.026626754552126],[-0.076223328709602,0.046180885285139,0.064963489770889],[0.063524425029755,0.030118253082037,0.01766007207334]],[[0.05415390431881,0.11139187216759,-0.0013882967177778],[-0.047681208699942,-0.004849199205637,0.053066462278366],[0.024706995114684,-0.070371061563492,-0.11189226061106]],[[0.13515421748161,-0.077836744487286,-0.18775923550129],[0.042888183146715,-0.17782860994339,-0.10751801729202],[-0.020841417834163,-0.043403103947639,-0.048537574708462]],[[-0.0075662904419005,0.017956519499421,-0.012138562276959],[0.036864124238491,0.023260753601789,-0.091613620519638],[0.13400273025036,0.015689311549067,-0.039614297449589]],[[-0.08507339656353,-0.027523379772902,-0.060052044689655],[0.10627949982882,-0.041927896440029,-0.063446611166],[-0.0061770942993462,0.087507627904415,-0.070250973105431]],[[0.018612246960402,0.058866370469332,-0.0014552110806108],[-0.1323064416647,0.01804031431675,0.018733441829681],[-0.04599804058671,0.029952613636851,-0.08437355607748]],[[0.029613541439176,-0.0014554661465809,-0.031182546168566],[-0.11654991656542,0.029611732810736,-0.05191832408309],[-0.1574749648571,-0.10780455172062,0.15924896299839]],[[-0.11220356822014,0.10180111974478,0.045987445861101],[0.071909882128239,0.018238404765725,0.014392917975783],[-0.1147591099143,-0.062926307320595,0.089862369000912]],[[-0.0092179905623198,0.025819396600127,-0.075406461954117],[0.20677548646927,-0.045464489609003,-0.096931517124176],[-0.050919611006975,-0.084766872227192,-0.12199069559574]],[[0.080301992595196,0.062225721776485,-0.0062751369550824],[0.095579117536545,-0.031715378165245,0.059896569699049],[0.10386576503515,-0.018615782260895,-0.1213311329484]],[[0.058067105710506,0.0016644246643409,-0.19629673659801],[0.0057932622730732,0.0030704776290804,-0.09579511731863],[-0.028528386726975,0.14146962761879,0.056977588683367]],[[-0.093273028731346,-2.2546057152795e-05,0.05214299634099],[-0.1211559548974,0.11271019279957,-0.1037702858448],[0.03181528672576,0.16288706660271,0.02532802708447]],[[0.11199821531773,0.16806638240814,0.081694796681404],[-0.12266460061073,0.1212145537138,0.11336375027895],[-0.15308073163033,0.011793803423643,0.031643245369196]],[[-0.014542025513947,0.00045828899601474,0.003081844188273],[0.047094311565161,0.050327338278294,-0.040372028946877],[0.014930073171854,-0.049423605203629,0.073399029672146]],[[-0.03722158819437,-0.14099477231503,-0.04458837211132],[0.022193074226379,0.015781974419951,-0.020121229812503],[-0.087999358773232,0.21597817540169,0.067494630813599]],[[-0.034944847226143,-0.087087824940681,0.067164205014706],[0.16228652000427,-0.00060456473147497,-0.13048811256886],[0.10555818676949,0.073916740715504,0.031375121325254]]],[[[-0.084614656865597,-0.071654111146927,-0.096226118505001],[0.12712354958057,0.0012951111420989,0.061311326920986],[-0.094428338110447,-0.061619359999895,0.052964441478252]],[[0.060592081397772,0.089085981249809,-0.060859143733978],[-0.014812438748777,0.024353660643101,0.001454378478229],[0.018961714580655,-0.046375788748264,0.024731015786529]],[[0.021722227334976,0.031180860474706,0.091715931892395],[0.097790896892548,0.22757457196712,0.002469853265211],[-0.21245987713337,-0.13264632225037,-0.023427927866578]],[[-0.10730965435505,-0.093267604708672,0.16417972743511],[0.049667380750179,-0.0086446516215801,0.13866859674454],[0.067003786563873,-0.047814313322306,0.098083913326263]],[[0.011157383210957,-0.086921207606792,0.064641259610653],[0.12341412901878,-0.11480916291475,-0.059014216065407],[0.003575480543077,-0.10325187444687,-0.1228644028306]],[[0.072763338685036,-0.014313625171781,0.06486976146698],[-0.050792217254639,-0.0099080186337233,0.080397292971611],[-0.070945970714092,-0.091816626489162,0.0021039836574346]],[[-0.026000348851085,0.01827727816999,0.034662138670683],[-0.047344814985991,-0.16047199070454,0.010989585891366],[0.12509323656559,-0.14772839844227,0.36537781357765]],[[-0.10304687172174,-0.22528073191643,-0.14980481564999],[0.18857488036156,0.047045517712831,-0.050782136619091],[-0.020841686055064,-0.059413090348244,-0.11705773323774]],[[-0.17135754227638,0.05205450579524,-0.041398953646421],[-0.047265242785215,0.03638107329607,0.0029013829771429],[-0.092938654124737,-0.08012131601572,-0.026340123265982]],[[-0.16249378025532,0.0072276187129319,-0.14195768535137],[-0.024124886840582,0.036866907030344,0.041395880281925],[0.16610127687454,-0.094292372465134,0.12170176208019]],[[-0.22623607516289,-0.11841543763876,-0.1347314119339],[-0.11230294406414,-0.018470169976354,0.097883924841881],[-0.091299876570702,-0.12705628573895,-0.24754691123962]],[[0.074334137141705,-0.076454021036625,-0.060077652335167],[-0.050615057349205,-0.059050973504782,-0.026332302019],[0.012124082073569,-0.031084049493074,-0.054787635803223]],[[-0.11529975384474,0.13566309213638,0.065137788653374],[-0.13207131624222,-0.0070627103559673,0.058826271444559],[-0.087608709931374,0.019836280494928,0.13965359330177]],[[-0.19512936472893,-0.11870098859072,-0.044960252940655],[0.0063531324267387,-0.046305406838655,0.07240479439497],[-0.041964415460825,0.074197679758072,0.16485093533993]],[[-0.061272282153368,0.039934240281582,-0.068585768342018],[0.0012755637289956,0.13761980831623,0.028574142605066],[0.025519259274006,-0.083205252885818,0.065955206751823]],[[0.23553209006786,0.087510347366333,-0.17874337732792],[0.14547477662563,-0.12908479571342,-0.00050299038412049],[-0.31097188591957,-0.059860676527023,0.090661063790321]],[[-0.069796577095985,-0.1158247962594,-0.15260076522827],[-0.19054235517979,0.053684767335653,0.054950889199972],[0.18152193725109,0.057935938239098,0.011254333890975]],[[-0.12777867913246,0.11223492026329,-0.091175429522991],[0.090903505682945,0.15744788944721,-0.21305169165134],[-0.1566831022501,-0.11714901775122,0.062173821032047]],[[-0.18627534806728,-0.043926775455475,-0.10412731021643],[0.040453977882862,0.025770837441087,-0.13840277493],[0.18690851330757,0.0090206442400813,0.024752916768193]],[[-0.088657572865486,-0.077326633036137,-0.085648894309998],[-0.10966522246599,-0.023602111265063,0.08893296122551],[0.032460391521454,-0.084556393325329,0.13061691820621]],[[0.13532538712025,-0.0048314700834453,-0.0022647124715149],[-0.027292184531689,-0.043760348111391,0.14283514022827],[-0.080562688410282,0.01113165076822,-0.0030496425461024]],[[0.17110587656498,0.0073988731019199,-0.051436189562082],[0.12072893232107,-0.18422901630402,-0.0092773456126451],[-0.044748645275831,-0.039117142558098,-0.15254135429859]],[[0.041409060359001,0.12322225421667,0.1934023052454],[-0.12428546696901,0.023835612460971,-0.038050927221775],[0.096148751676083,-0.17297588288784,-0.21174927055836]],[[-0.41368195414543,-0.067345798015594,-0.068476885557175],[0.047855440527201,0.013526063412428,0.14596325159073],[-0.036055687814951,-0.021381735801697,0.087099209427834]],[[-0.10364885628223,-0.056458275765181,-0.15270964801311],[-0.073480345308781,-0.052198600023985,0.059576004743576],[0.0085575673729181,-0.17528563737869,0.1356854736805]],[[-0.0035026334226131,0.033249411731958,0.11826910078526],[-0.089229367673397,-0.12879334390163,0.054267704486847],[0.11371038109064,-0.23055973649025,0.090758487582207]],[[-0.062561586499214,0.074436873197556,-0.032098446041346],[-0.0027381877880543,0.026145581156015,-0.048881310969591],[0.055242009460926,0.0022146266419441,0.021303845569491]],[[0.065620146691799,-0.16722196340561,0.053909111768007],[-0.13735602796078,-0.065152652561665,0.095613062381744],[-0.062586352229118,0.13528497517109,0.015377252362669]],[[-0.047773897647858,-0.10599181801081,0.16116777062416],[0.092083543539047,-0.01651775278151,-0.020614227280021],[0.030012100934982,-0.02045045606792,-0.15070013701916]],[[-0.094015799462795,-0.0019838258158416,-0.015517216175795],[0.0064324233680964,-0.055093459784985,-0.043958749622107],[0.026112090796232,0.019190279766917,-0.032609790563583]],[[-0.0071499818004668,-0.021416716277599,0.053454264998436],[0.028293969109654,-0.023343281820416,0.082656070590019],[0.060675330460072,-0.081264406442642,0.24608564376831]],[[0.030927317216992,0.14426830410957,0.10042153298855],[-0.1175072863698,-0.10324833542109,-0.069529809057713],[-0.039378941059113,0.047757435590029,-0.026307178661227]]],[[[0.10534755885601,0.0052981935441494,-0.1368378251791],[-0.066295392811298,-0.059059336781502,-0.10126104950905],[0.065078914165497,0.026857739314437,0.12402296811342]],[[0.0036460324190557,0.045196663588285,0.016276497393847],[0.086361393332481,0.043814186006784,-0.010773564688861],[-0.061619553714991,-0.025212746113539,-0.020262196660042]],[[-0.016591671854258,-0.036750927567482,-0.028751758858562],[-0.054623480886221,0.0030532418750226,-0.096029512584209],[-0.078717544674873,-0.0028250138275325,-0.0056502013467252]],[[-0.15851916372776,-0.048161800950766,0.080449551343918],[0.0065194680355489,0.0012090458767489,-0.001937254332006],[-0.046873044222593,-0.1056262999773,-0.059523690491915]],[[-0.010400978848338,0.11504531651735,0.01672275364399],[0.091407634317875,-0.016252476722002,-0.019935986027122],[-0.013120722956955,-0.0057042203843594,0.03849671036005]],[[-0.1964315623045,0.18220140039921,0.093702383339405],[-0.031221313402057,-0.10621537268162,-0.018180714920163],[0.18499664962292,0.080675564706326,0.054548695683479]],[[-0.30800333619118,-0.21448223292828,-0.011530887335539],[0.031500343233347,-0.065988279879093,0.12706239521503],[0.25521066784859,0.088544353842735,0.12927287817001]],[[0.0084799816831946,-0.038737177848816,0.030176840722561],[-0.1647597849369,-0.11622823774815,0.023163573816419],[-0.021626442670822,0.068418391048908,0.060962866991758]],[[0.0038377339951694,0.054291054606438,0.05150219425559],[-0.042986676096916,0.11536529660225,-0.13317435979843],[-0.090984933078289,-0.094400480389595,-0.012824336998165]],[[-0.032928638160229,0.10940544307232,-0.06518579274416],[-0.0087332967668772,0.066578842699528,0.073419913649559],[-0.050724651664495,-0.039200410246849,0.011361703276634]],[[-0.032664872705936,-0.0083684464916587,-0.20686435699463],[-0.090732328593731,0.053682632744312,-0.023175235837698],[-0.066754721105099,-0.076811507344246,-0.021637184545398]],[[0.18593589961529,0.10505019873381,0.072868578135967],[-0.20322625339031,-0.21360620856285,-0.052341222763062],[-0.193733304739,0.051443178206682,-0.07159911096096]],[[0.023404954001307,0.02012388035655,-0.030854433774948],[0.0096728382632136,-0.049085322767496,0.074643440544605],[0.047714404761791,-0.055883843451738,0.076445981860161]],[[-0.17797702550888,-0.22462038695812,0.03274018317461],[-0.0080954674631357,-0.18172746896744,-0.12658490240574],[0.017249792814255,-0.050007808953524,-0.053954061120749]],[[0.10509757697582,0.053012598305941,0.015150899998844],[0.060916565358639,-0.00017940222460311,-0.033453442156315],[-0.077190570533276,-0.096058629453182,-0.018370918929577]],[[-0.060424026101828,-0.10139311850071,0.081083029508591],[-0.10594122111797,-0.0078087672591209,0.039092782884836],[0.11481619626284,-0.0099543118849397,-0.0030343926046044]],[[-0.18062098324299,-0.028647810220718,-0.021519804373384],[-0.12114791572094,-0.091478653252125,-0.033492706716061],[0.073173932731152,0.0062919184565544,-0.02754364721477]],[[-0.0058378274552524,0.029593816027045,-0.045872710645199],[0.11038745194674,-0.056887894868851,-0.036298915743828],[-0.11454587429762,-0.16042479872704,0.013813551515341]],[[0.083528116345406,0.0078134313225746,-0.11730325222015],[0.027969965711236,-0.14274033904076,-0.028588470071554],[0.081310018897057,-0.06795459240675,-0.21274645626545]],[[-0.13766847550869,0.012486284598708,-0.026977172121406],[-0.12220287322998,0.035446397960186,-0.034938223659992],[0.041451506316662,0.029623236507177,-0.20436687767506]],[[0.068191267549992,0.079010032117367,0.031419090926647],[-0.1032618060708,-0.087863691151142,-0.17476843297482],[-0.19183513522148,-0.072392635047436,0.059580337256193]],[[-0.013820760883391,0.013110939413309,0.03213731572032],[-0.023974843323231,0.13655500113964,-0.1779118925333],[0.025200683623552,-0.15712340176105,-0.1827777326107]],[[-0.051688905805349,-0.13409121334553,-0.096541747450829],[-0.089479520916939,-0.097087614238262,-0.085418462753296],[0.032152082771063,0.024799754843116,0.0032678402494639]],[[-0.083259634673595,0.0029652731027454,-0.020502991974354],[-0.060448493808508,0.052001014351845,-0.057550117373466],[0.025597024708986,0.070065788924694,0.044065397232771]],[[-0.051212802529335,0.029695475474,-0.10506835579872],[-0.0060654752887785,0.040000662207603,0.013148312456906],[-0.14157006144524,-0.048935431987047,-0.085334368050098]],[[-0.1525254547596,-0.11255650222301,-0.21801276504993],[0.0062517812475562,-0.11254969984293,-0.045387629419565],[0.15794505178928,0.032109875231981,0.00017858337378129]],[[-0.023243082687259,-0.035525046288967,-0.031596429646015],[0.026877753436565,0.0073854234069586,-0.059961568564177],[0.070962458848953,0.059228632599115,0.0074748112820089]],[[0.061673659831285,-0.12787257134914,-0.17359015345573],[-0.083119235932827,-0.061371292918921,-0.12237058579922],[0.18537935614586,-0.041874829679728,-0.0059076016768813]],[[0.056676089763641,0.030581658706069,0.1434772759676],[0.024517090991139,0.022861579433084,-0.18892017006874],[0.11651389300823,-0.0072099757380784,0.13120301067829]],[[-0.054926283657551,-0.24129508435726,0.12776798009872],[0.020982924848795,-0.07442207634449,0.1270856410265],[0.1150253713131,-0.013714456930757,-0.047770034521818]],[[0.043338552117348,-0.089364290237427,-0.15263447165489],[-0.043192740529776,0.012525600381196,0.090021543204784],[-0.021630121394992,-0.088592015206814,0.07262709736824]],[[-0.066832259297371,0.0061052422970533,-0.21193416416645],[0.020000301301479,-0.10000382363796,-0.049641452729702],[0.1145843565464,-0.010199706070125,-0.1426689773798]]],[[[-0.1407872736454,-0.31844890117645,-0.10063370317221],[0.078657299280167,-0.026240719482303,0.049876254051924],[-0.049352958798409,0.15400609374046,-0.043473944067955]],[[-0.13510364294052,-0.033094108104706,0.10723185539246],[0.068307735025883,0.038448702543974,0.030487472191453],[0.048800140619278,-0.021920796483755,-0.035050101578236]],[[-0.14785613119602,0.016922371461987,-0.017480190843344],[0.024408554658294,0.09570237249136,-0.074693113565445],[-0.044660042971373,-0.012768824584782,0.15569511055946]],[[0.19570544362068,-0.15582236647606,-0.045271389186382],[-0.014256090857089,0.036345016211271,-0.10325215011835],[0.093901880085468,0.027976490557194,0.049890842288733]],[[-0.03845015540719,0.10741908848286,0.015023279003799],[-0.080384507775307,0.050638053566217,0.02793319709599],[-0.093475095927715,0.054228879511356,0.024496905505657]],[[-0.13631452620029,0.0095251267775893,0.044116973876953],[0.1318560987711,0.0030491920188069,-0.16178961098194],[-0.27698811888695,0.1098817512393,-0.12345983833075]],[[-0.013460274785757,-0.13374601304531,0.15271565318108],[-0.018173266202211,0.052944499999285,-0.067374229431152],[0.073870375752449,-0.0084424531087279,-0.069764219224453]],[[-0.037182360887527,-0.061769146472216,0.14088669419289],[-0.056231960654259,0.10242082923651,0.11283750087023],[-0.045221969485283,-0.023085337132215,-0.055231988430023]],[[-0.08674069494009,-0.096110604703426,0.039079915732145],[-0.025904780253768,0.018772210925817,0.08077134937048],[-0.081250719726086,0.011726431548595,-0.11627299338579]],[[-0.27836003899574,-0.0097112655639648,-0.096392787992954],[0.0627626106143,0.18234905600548,-0.054403886198997],[-0.080998823046684,-0.028549568727612,-0.13615994155407]],[[-0.10525669157505,0.2769461274147,-0.4273236989975],[-0.11219161748886,0.013907526619732,0.023071950301528],[-0.05583094805479,-0.035043250769377,0.07684338837862]],[[-0.088389590382576,-0.034166142344475,0.11589918285608],[0.084016263484955,0.056828554719687,0.063992738723755],[-0.094321265816689,-0.011845052242279,-0.068933181464672]],[[-0.15820099413395,0.031944517046213,0.044062688946724],[-0.035084452480078,-0.0028295377269387,0.16556367278099],[0.044527906924486,-0.081918373703957,0.066175267100334]],[[-0.042068459093571,-0.12525789439678,-0.15331026911736],[-0.099768251180649,-0.095354557037354,-0.18567660450935],[0.094920784235001,-0.045626919716597,0.15576560795307]],[[-0.018994942307472,0.05394235253334,0.033408235758543],[-0.020863542333245,-0.016457583755255,-0.025769738480449],[-0.0044456594623625,-0.080048300325871,-0.0037630433216691]],[[0.17605093121529,0.078610308468342,-0.068829648196697],[-0.059662319719791,-0.12052952498198,-0.0046200617216527],[0.03854438662529,-0.034838650375605,0.15237240493298]],[[-0.20226235687733,0.017094515264034,0.042777579277754],[-0.22151838243008,-0.012940867803991,0.089687705039978],[0.02920082397759,0.16551847755909,0.026631450280547]],[[-0.17996805906296,0.048585198819637,-0.1407748311758],[0.12548315525055,0.030972173437476,-0.033566445112228],[0.016726739704609,-0.11425238847733,-0.066336207091808]],[[-0.14381846785545,-0.1514258980751,-0.0050533451139927],[0.0036389047745615,0.064129032194614,0.13496072590351],[0.14153043925762,0.037894085049629,-0.087632849812508]],[[-0.061899997293949,-0.050186291337013,-0.10097885131836],[-0.063596434891224,0.083637528121471,-0.083921708166599],[-0.085915543138981,-0.027034560218453,-0.1177973151207]],[[-0.14164054393768,0.11290421336889,0.12566067278385],[-0.039471693336964,-0.046254482120275,0.10989739000797],[-0.080682218074799,-0.14418572187424,-0.018223028630018]],[[-0.1268385797739,0.0077226972207427,-0.082067601382732],[-0.0789794921875,-0.011766084469855,-0.18812255561352],[0.10043948888779,0.080921642482281,0.026303952559829]],[[0.20872972905636,0.16802154481411,0.090645529329777],[0.095170766115189,-0.035927809774876,0.0034359833225608],[-0.10381112247705,-0.052740525454283,-0.23580178618431]],[[-0.35459163784981,0.088826164603233,-0.24903085827827],[-0.079739302396774,-0.039867043495178,-0.075534202158451],[-0.0060613132081926,0.2092649936676,0.028542516753078]],[[-0.25170567631721,-0.13579912483692,0.22125566005707],[-0.050148896872997,-0.14780962467194,0.042983468621969],[-0.046060752123594,-0.020394686609507,-0.17173670232296]],[[0.034771908074617,-0.0080928299576044,0.10407581180334],[0.082212120294571,-0.030173486098647,-0.10179942846298],[0.016055004671216,0.010972069576383,0.070036046206951]],[[-0.07747159153223,-0.013122976757586,0.034977607429028],[-0.018188865855336,-0.044947031885386,0.0088418740779161],[0.039250187575817,-0.095175549387932,0.089840278029442]],[[0.26434564590454,0.02797476388514,0.065026395022869],[0.13216610252857,-0.11440128833055,-0.047901313751936],[0.25124874711037,-0.0056678173132241,-0.35826504230499]],[[-0.1727978438139,-0.099184833467007,-0.081420302391052],[0.20577213168144,0.014523378573358,0.0965571179986],[0.10373409837484,-0.13098202645779,-0.036239635199308]],[[-0.0097679002210498,0.012290083803236,-0.034822642803192],[0.074622832238674,-0.037840738892555,0.0035922836977988],[0.034306183457375,-0.095167502760887,0.10455226153135]],[[0.11497481912374,0.10995125025511,0.022297514602542],[0.040328443050385,-0.18977870047092,0.025598421692848],[-0.038457419723272,0.033785704523325,0.098822496831417]],[[-0.22333925962448,-0.12078899145126,0.067353092133999],[-0.12335249781609,-0.016685429960489,-0.041166666895151],[-0.0043879519216716,-0.062675192952156,0.0079092346131802]]]],"nOutputPlane":64,"kW":3,"kH":3,"bias":[-0.00088570441585034,-0.017642300575972,-0.0093763433396816,-0.030140217393637,-0.012591584585607,-0.021014342084527,-0.015430774539709,0.011659348383546,0.033288329839706,-0.0027394136413932,-0.022575797513127,-0.0074178287759423,-0.012038460932672,-0.016092918813229,-0.00039591104723513,-0.0051650488749146,0.001889122533612,-0.0069586397148669,-0.014342381618917,-0.012480137869716,-0.03077757358551,-0.014550753869116,-0.050572298467159,-0.0030044752638787,-0.022949114441872,-0.026967478916049,-0.00423184921965,-0.02421186119318,-0.019243815913796,-0.010783998295665,-0.0055954237468541,-0.0073485602624714,-0.0024110001977533,-0.040733400732279,-0.030485419556499,-0.010396460071206,-0.011220530606806,-0.013524174690247,-0.028535621240735,0.0044181616976857,-0.0049465275369585,-0.0035977179650217,-0.017997078597546,-0.038110449910164,-0.0049377093091607,-0.0047142342664301,-0.0060111172497272,-0.034761626273394,-0.017016377300024,-0.01301069650799,-0.0040908991359174,-0.0017660140292719,-0.0047477316111326,-0.032297179102898,-0.0023461324162781,-0.0093145156279206,-0.049216791987419,-0.0022949678823352,-0.010662004351616,-0.0038732786197215,-0.035499185323715,-0.015668606385589,1.1346110113664e-05,-0.0025656190700829],"nInputPlane":32},{"weight":[[[[0.13174870610237,-0.091753058135509,-0.19750453531742],[0.025381691753864,0.020856767892838,-0.0079667074605823],[0.018726183101535,0.055819522589445,-0.084749169647694]],[[-0.050905119627714,0.078547261655331,-0.0023144928272814],[0.06268410384655,0.084453083574772,-0.023303687572479],[-0.038322702050209,0.0091115850955248,-0.036704991012812]],[[0.14512120187283,-0.065696038305759,0.17372013628483],[-0.11620689928532,-0.027631917968392,-0.042867787182331],[0.055324245244265,-0.043434653431177,-0.11473174393177]],[[0.11316942423582,-0.06592208147049,-0.056762885302305],[-0.066436566412449,0.075676344335079,0.11288858950138],[-0.034130729734898,-0.12246733158827,-0.046077717095613]],[[0.095883436501026,-0.069073192775249,0.018677381798625],[-0.01135291159153,0.035067800432444,0.066179729998112],[0.03354400396347,-0.015293952077627,-0.016839653253555]],[[-0.025835677981377,-0.012572865001857,-0.12862311303616],[-0.15229505300522,0.086768485605717,-0.016490446403623],[-0.1090437695384,-0.028433233499527,0.11697360128164]],[[-0.07547240704298,0.010320757515728,-0.063824221491814],[0.049857404083014,0.020413290709257,-0.0083798868581653],[0.01040671300143,0.011922210454941,0.066755242645741]],[[-0.06815779209137,-0.11487239599228,0.13707150518894],[-0.034956965595484,-0.03729909285903,0.040047872811556],[-0.043026100844145,0.045985776931047,0.090707413852215]],[[-0.1158848926425,0.0066096587106586,-0.017959209159017],[-0.033024363219738,0.10656396299601,0.016514116898179],[-0.027324736118317,0.037798997014761,0.032855749130249]],[[-0.012424780987203,0.0020631835795939,-0.056586306542158],[-0.020411349833012,-0.038526963442564,0.052177954465151],[0.022720992565155,0.017187651246786,-0.029389267787337]],[[-0.089511074125767,-0.039890915155411,-0.018257042393088],[0.069389149546623,0.04771613702178,0.0070257978513837],[0.026456810534,-0.053838033229113,0.16268211603165]],[[0.02316022105515,-0.057345349341631,0.051108412444592],[-0.0070317680947483,-0.25851354002953,-0.054623875766993],[-0.052917364984751,0.03485906496644,-0.066904194653034]],[[0.02902003005147,0.034608718007803,-0.16981773078442],[0.045173175632954,-0.040918372571468,-0.088026218116283],[-0.043962940573692,0.14442282915115,0.065224654972553]],[[0.061113838106394,0.18448147177696,0.012261273339391],[-0.068224146962166,0.026275485754013,-0.0027430260088295],[0.02736353687942,-0.04512744769454,-0.072423100471497]],[[-0.12163561582565,-0.036583501845598,-0.0092763220891356],[0.026472438126802,-0.047633022069931,-0.027305893599987],[0.021886354312301,0.043413739651442,0.029086232185364]],[[0.072855167090893,-0.17886836826801,-0.085658840835094],[-0.031553775072098,-0.10788694024086,0.029330423101783],[-0.10963599383831,-0.047224994748831,0.032505333423615]],[[0.040686193853617,0.1278540790081,0.015015341341496],[0.022954195737839,0.004378785379231,-0.046669609844685],[0.04582717269659,-0.045851740986109,0.050521943718195]],[[0.067963518202305,0.092252053320408,-0.025040928274393],[0.03587730973959,-0.086639292538166,-0.034550078213215],[0.092264711856842,-0.10559889674187,-0.011641430668533]],[[-0.044079292565584,0.062285363674164,-0.10763863474131],[0.10194426029921,0.12157540023327,-0.064548157155514],[-0.013930388726294,-0.031134020537138,-0.12086544185877]],[[0.03139553964138,-0.076702207326889,0.10454205423594],[0.058379981666803,-0.0014610245125368,0.044570747762918],[0.02724339812994,0.0095713892951608,-0.030729681253433]],[[0.10180769860744,-0.062445789575577,-0.38163295388222],[0.054181933403015,-0.016883311793208,-0.062970727682114],[0.011124760843813,0.021265283226967,-0.21358615159988]],[[0.10284925997257,-0.064395561814308,-0.10559247434139],[0.060513362288475,-0.11915561556816,-0.048990812152624],[-0.04698197171092,-0.076378770172596,-0.010806701146066]],[[-0.031896445900202,-0.066094018518925,-0.019759878516197],[-0.010722519829869,-0.051513139158487,0.044597700238228],[0.014767974615097,-0.13394878804684,-0.054338958114386]],[[0.13376416265965,0.016806699335575,-0.046631217002869],[-0.00099202198907733,0.0034051272086799,-0.15827718377113],[0.086570709943771,-1.9183506083209e-05,-0.0854611992836]],[[0.014490516856313,-0.026413528248668,-0.050361052155495],[-0.0033422177657485,-0.077449209988117,0.059110410511494],[0.030230402946472,-0.12614470720291,-0.18493758141994]],[[-0.10249727219343,0.018085705116391,-0.1074440330267],[0.050020456314087,0.034696031361818,0.057720050215721],[0.015088266693056,0.088233187794685,0.17058330774307]],[[-0.016438962891698,-0.12633919715881,0.035618331283331],[-0.035412259399891,-0.12932094931602,0.04664071649313],[0.065584160387516,-0.16023288667202,0.072364717721939]],[[-0.052541673183441,0.039257574826479,-0.18057818710804],[-0.1305163949728,0.090334311127663,0.071023404598236],[0.004260596819222,0.042249627411366,0.041096899658442]],[[0.01147660240531,0.086220063269138,-0.05155023932457],[-0.026120780035853,0.064333878457546,-0.032250698655844],[-0.013207024894655,0.0086917877197266,-0.038350820541382]],[[-0.12329018115997,0.022514497861266,0.044028591364622],[0.086784906685352,0.0074324500747025,-0.14851608872414],[0.0096112433820963,-0.036572106182575,0.016337985172868]],[[0.067391000688076,0.011368740350008,0.044346891343594],[-0.053083445876837,0.037146706134081,-0.018097823485732],[-0.034430522471666,0.06171615049243,0.089230857789516]],[[-0.11308539658785,0.087057083845139,-0.06524595618248],[-0.13863733410835,0.025501973927021,0.055373407900333],[-0.13898034393787,0.047075226902962,-0.023480409756303]],[[-0.012972041964531,-0.013423163443804,0.014977187849581],[-0.057900320738554,0.028552658855915,0.067073591053486],[0.0796033218503,0.034996021538973,0.036617185920477]],[[0.099006518721581,0.017123626545072,0.066840812563896],[0.05408113822341,-0.025093082338572,-0.033335831016302],[-0.0080142877995968,-0.077489823102951,-0.095130175352097]],[[0.0043705003336072,0.0036952388472855,-0.0033163141924888],[-0.038701295852661,-0.042307317256927,0.099244855344296],[-0.039583068341017,-0.0078748287633061,0.038105234503746]],[[-0.041072688996792,-0.11563251167536,0.071723245084286],[-0.066287070512772,-0.089240275323391,-0.035064674913883],[-0.060479342937469,0.10304272174835,-0.013027677312493]],[[-0.037020664662123,-0.062747292220592,0.098806977272034],[-0.076161168515682,-0.062871761620045,0.041731860488653],[-0.0070727383717895,-0.10512041300535,-0.0012063113972545]],[[0.10219714045525,-0.075279347598553,-0.040789980441332],[-0.045075599104166,-0.020524496212602,0.072854660451412],[0.058229610323906,0.00097040313994512,0.0070254025049508]],[[-0.016576174646616,-0.15586814284325,0.028876941651106],[0.075770415365696,-0.030271204188466,0.060792069882154],[0.034361340105534,-0.051179807633162,-0.098555169999599]],[[-0.14885973930359,-0.095644660294056,0.00042641570325941],[0.087472409009933,0.021055527031422,0.041432179510593],[-0.17167684435844,0.085734747350216,0.069892600178719]],[[0.0018475751858205,-0.25650545954704,0.058635730296373],[0.012420608662069,0.019651602953672,0.012053977698088],[-0.017061626538634,0.12824846804142,0.080886088311672]],[[-0.014727870933712,-0.11557680368423,0.059435646981001],[-0.076840169727802,-0.054305233061314,0.060918968170881],[-0.10691549628973,-0.034907296299934,0.029032254591584]],[[-0.15252332389355,-0.00023936857178342,-0.036782287061214],[-0.034796919673681,0.11047328263521,0.024188227951527],[0.036221489310265,0.041478753089905,-0.069144777953625]],[[0.083251409232616,0.053009811788797,-0.030902195721865],[0.056151885539293,-0.0084500005468726,-0.072110950946808],[0.021075932309031,-0.036181062459946,-0.025410311296582]],[[-0.01644454523921,-0.1314868927002,-0.023525904864073],[-0.18587005138397,0.021510101854801,0.043887726962566],[0.051553938537836,-0.021851915866137,-0.03815982490778]],[[-0.017502112314105,0.061687752604485,-0.014088339172304],[0.004143375903368,0.021036943420768,0.00049142789794132],[0.0064265853725374,-0.02845336869359,-0.086296357214451]],[[-0.10306894034147,0.18247067928314,0.050689972937107],[-0.060010407119989,-0.062097676098347,0.048012934625149],[-0.11171938478947,0.085964344441891,-0.027625905349851]],[[-0.060060273855925,0.077980101108551,-0.036705326288939],[0.038825239986181,-0.094596385955811,-0.014252327382565],[-0.14248137176037,-0.06547536700964,-0.037771109491587]],[[0.02827493660152,0.15448096394539,0.065521590411663],[-0.021291693672538,-0.045590203255415,-0.0046310764737427],[-0.073422379791737,0.03018045425415,-0.040100738406181]],[[0.086800329387188,-0.13207286596298,-0.038676101714373],[-0.0535988509655,-0.15032063424587,-0.042384281754494],[0.017762405797839,0.043128874152899,-0.044857267290354]],[[0.042635511606932,0.064800255000591,0.12866607308388],[0.094367191195488,-0.024305462837219,0.071220085024834],[0.048359058797359,-0.0056096646003425,-0.18113096058369]],[[-0.069373913109303,-6.4957363065332e-05,-0.077835470438004],[0.005469944793731,-0.0092945257201791,0.090382374823093],[0.0080806743353605,-0.013338384218514,-0.020790316164494]],[[-0.019634146243334,-0.055990625172853,-0.091809771955013],[-0.036320712417364,0.12936845421791,0.013100691139698],[-0.057855922728777,0.0069916150532663,0.085760921239853]],[[-0.01287198625505,0.028927091509104,-0.099840708076954],[0.087655365467072,-0.017517946660519,-0.013269460760057],[0.025272032245994,0.019025456160307,-0.14755734801292]],[[-0.11864280700684,-0.11676036566496,-0.10221955925226],[0.022469043731689,0.052309099584818,-0.0040712337940931],[-0.015195853076875,0.12800671160221,0.051680222153664]],[[-0.18381102383137,-0.054360173642635,0.006385313346982],[-0.052764687687159,0.081560097634792,0.023232523351908],[-0.080958597362041,-0.062865875661373,0.10495636612177]],[[-0.051646564155817,-0.016849517822266,-0.016202017664909],[0.034920699894428,-0.050239592790604,0.032154697924852],[0.006154493894428,0.10847847908735,-0.012886283919215]],[[0.0353864133358,0.011134563945234,-0.0065088295377791],[0.052499808371067,-0.064429081976414,-0.092003501951694],[-0.068925723433495,-0.044795121997595,-0.042743690311909]],[[0.13084681332111,0.035232916474342,0.036279898136854],[0.2028125077486,0.008056185208261,0.03564366325736],[-0.023586010560393,-0.044782936573029,-0.043110281229019]],[[-0.066946566104889,0.039502754807472,-0.023069955408573],[0.10956270247698,-0.024797350168228,0.080135069787502],[-0.086152754724026,-0.046246111392975,0.029597207903862]],[[-0.0090878717601299,-0.00056404224596918,-0.15289014577866],[-0.016784509643912,-0.059696711599827,-0.10045260190964],[0.014435197226703,-0.095762886106968,0.028907787054777]],[[-0.064377762377262,0.077678710222244,-0.029230559244752],[-0.11127236485481,0.033505264669657,-0.060001641511917],[0.038237653672695,0.0033343944232911,0.039572067558765]],[[0.15020526945591,-0.013143634423614,-0.0096227712929249],[0.02866399846971,-0.099080249667168,0.11859931796789],[-0.12406614422798,-0.053245585411787,-0.033487722277641]],[[-0.14602571725845,0.10002155601978,-0.07157926261425],[0.02296387962997,0.050544954836369,-0.07619135081768],[-0.042440317571163,-0.0055505270138383,-0.030150912702084]]],[[[-0.026414975523949,0.046736337244511,0.010975461453199],[0.10013381391764,-0.04008486866951,0.017129439860582],[-0.065941415727139,0.0042234761640429,0.12255393713713]],[[-0.089736998081207,0.031167550012469,0.052416000515223],[0.057161711156368,0.073222085833549,0.076438277959824],[0.024742145091295,0.0087381945922971,-0.081881068646908]],[[-0.01437851972878,0.011680473573506,0.01636179536581],[-0.1067308858037,0.001261264202185,0.097147427499294],[-0.17897824943066,-0.17184686660767,0.10262713581324]],[[-0.081769317388535,-0.017340475693345,-0.045015554875135],[0.017084345221519,-0.00055279652588069,0.022784974426031],[0.094602204859257,-0.023184088990092,-0.1054593026638]],[[0.033603169023991,0.17310336232185,-0.071024097502232],[-0.077418960630894,-0.10826813429594,0.012844941578805],[0.031226616352797,-0.00086496933363378,0.060317162424326]],[[0.093926809728146,-0.062254298478365,0.022815726697445],[-0.011927652172744,0.12929517030716,0.0082923993468285],[-0.07035768777132,-0.076315246522427,0.090963013470173]],[[-0.12424350529909,0.0075219124555588,0.096822999417782],[-0.21058830618858,-0.036173678934574,0.0070424727164209],[0.034990057349205,-0.1129284799099,-0.21665443480015]],[[0.10648912191391,-0.039246663451195,0.11738630384207],[-0.015142983756959,0.011012238450348,0.043340034782887],[-0.017029628157616,-0.053207352757454,-0.08131880313158]],[[0.03240854665637,-0.10718352347612,0.040276344865561],[0.036330498754978,0.11244302988052,-0.1401409804821],[-0.03545406088233,0.019831441342831,0.0040736198425293]],[[-0.16197629272938,-0.039237633347511,-0.15502488613129],[-0.054200954735279,0.041951894760132,0.12639379501343],[-0.019739404320717,0.10624431818724,-0.095198392868042]],[[-0.068233072757721,0.04696199297905,0.0077110384590924],[-0.10760635882616,-0.091234505176544,1.9164988771081e-05],[-0.14397838711739,0.036523524671793,0.12851223349571]],[[-0.123763628304,0.008837902918458,0.050042916089296],[0.0045927637256682,-0.075271867215633,-0.10193527489901],[-0.069546207785606,-0.018912652507424,0.080079615116119]],[[0.02177132666111,0.010956321842968,-0.12642325460911],[0.036206636577845,0.0083337482064962,-0.039017912000418],[0.060200121253729,0.046135321259499,0.059772670269012]],[[-0.020091407001019,0.15552185475826,-0.10604912787676],[-0.056934144347906,-0.064628079533577,0.088768430054188],[-0.042602267116308,0.030048944056034,-0.20492051541805]],[[0.096788063645363,0.023641299456358,0.0044179782271385],[-0.051753312349319,-0.022131258621812,-0.027223953977227],[0.033986371010542,-0.0020360574126244,0.042533036321402]],[[0.029612272977829,-0.033688895404339,0.0034442965406924],[0.17161716520786,0.062257546931505,0.12069521844387],[-0.018284365534782,-0.056394539773464,0.056882612407207]],[[0.0093871159479022,0.041606739163399,0.078728333115578],[-0.047172777354717,0.014620793052018,0.12956738471985],[-0.12184328585863,-0.0068658329546452,-0.064204841852188]],[[-0.037698600441217,-0.17553468048573,-0.19010488688946],[0.021759005263448,0.04701079800725,-0.032267041504383],[-0.12366455793381,-0.19056671857834,-0.079090811312199]],[[-0.049748685210943,-0.085142344236374,-0.027852863073349],[-0.16601710021496,-0.077986061573029,0.049031909555197],[-0.010264039970934,-0.1129744797945,0.0072300783358514]],[[0.027698813006282,0.051992811262608,0.069399572908878],[-0.10626447945833,-0.085524536669254,-0.05733872577548],[0.015491015277803,-0.18575961887836,-0.0096222264692187]],[[0.05769282951951,0.066404551267624,0.042870420962572],[-0.089496731758118,-0.016005724668503,-0.035823605954647],[0.054408714175224,-0.19733294844627,-0.018503723666072]],[[0.12804205715656,0.00079402519622818,0.029043609276414],[0.043242640793324,-0.030005672946572,0.012393744662404],[0.01216955948621,-0.041922904551029,-0.080465212464333]],[[0.016229745000601,-0.12305860966444,-0.05318208783865],[0.014973320998251,0.062921933829784,-0.22457760572433],[0.06195117905736,0.0022328752093017,0.082142353057861]],[[0.12280084192753,-0.0025347550399601,-0.061478991061449],[0.086718983948231,0.014986831694841,0.0084610357880592],[-0.025012625381351,-0.00027931912336498,-0.12232215702534]],[[-0.0090959724038839,0.015922943130136,0.0084712188690901],[-0.077631510794163,-0.1215515807271,0.041470434516668],[0.10319250077009,0.13387368619442,0.028145341202617]],[[0.13879053294659,0.046799030154943,0.11147068440914],[-0.23432944715023,-0.095801331102848,0.013779009692371],[-0.12066088616848,-0.068194381892681,-0.037217669188976]],[[0.02971257455647,-0.031814910471439,0.14694075286388],[-0.018374647945166,0.0087008969858289,-0.013652238994837],[-0.0079690776765347,0.052546367049217,0.052455238997936]],[[0.19549782574177,0.02293473854661,0.068052336573601],[0.066417217254639,0.046280913054943,-0.1531882584095],[0.054527867585421,-0.031386747956276,-0.0049379011616111]],[[-0.0074122119694948,-0.055655740201473,0.040400549769402],[-0.10188879817724,-0.032303474843502,0.12801280617714],[-0.022412151098251,-0.15979224443436,-0.059857718646526]],[[-0.0095100672915578,-0.046218756586313,0.02632767893374],[0.1814231723547,-0.053697153925896,0.05066566541791],[-0.25600871443748,-0.070417821407318,-0.089455433189869]],[[0.018952475860715,-0.14213225245476,0.051817070692778],[-0.12477268278599,-0.021470747888088,0.075133547186852],[0.035687580704689,0.035096388310194,0.085552290081978]],[[-0.15297454595566,-0.014059945009649,-0.083850584924221],[0.092002399265766,0.077260904014111,0.015833536162972],[0.011272481642663,0.035823941230774,-0.06637554615736]],[[0.12426754832268,0.049631755799055,-0.14851203560829],[-0.034356195479631,-0.0089409640058875,-0.035840477794409],[0.071053601801395,-0.078669205307961,-0.194833740592]],[[-0.0074729761108756,0.013617446646094,0.0030009935144335],[-0.028035873547196,-0.025364177301526,-0.045647569000721],[0.044935889542103,-0.086237818002701,-0.029973244294524]],[[0.047430854290724,-0.059643194079399,0.13407400250435],[0.021814653649926,-0.08265570551157,-0.018215600401163],[-0.093043223023415,0.002980942837894,-0.038660153746605]],[[0.17869253456593,-0.064445801079273,0.025409452617168],[0.13534514605999,-0.015667513012886,-0.17160592973232],[0.042044941335917,0.009077993221581,0.10534597933292]],[[0.013220153748989,0.088976345956326,0.1147073507309],[-0.025230521336198,0.05664524435997,-0.030697904527187],[-0.084979526698589,0.13446019589901,-0.045033607631922]],[[0.03563778847456,0.0044288760982454,0.066984854638577],[0.10672874748707,0.011608766391873,-0.075964391231537],[0.0094145052134991,0.10246001183987,0.064587943255901]],[[0.090335220098495,-0.13599166274071,-0.071498274803162],[-0.015042897313833,0.0039788819849491,-0.05844859033823],[-0.10333649069071,0.12718105316162,0.11786814779043]],[[0.014583515934646,0.0023980855476111,0.030849603936076],[0.09555722028017,-0.032805293798447,-0.17706246674061],[-0.0072676143608987,0.0091328183189034,-0.050892017781734]],[[-0.089529745280743,-0.14088973402977,0.010289581492543],[0.016052488237619,-0.036488253623247,0.098003633320332],[0.0082432441413403,-0.20201276242733,-0.13945104181767]],[[0.0095800375565886,-0.073637872934341,-0.24807381629944],[0.12056408822536,0.059383276849985,-0.095945052802563],[0.083982862532139,-0.021505391225219,0.018540468066931]],[[-0.042867537587881,0.075369954109192,-0.0015516999410465],[-0.019312174990773,-0.057243164628744,0.11850008368492],[-0.049201209098101,-0.053386639803648,-0.013853815384209]],[[-0.10265689343214,0.071640059351921,-0.049966119229794],[-0.0015315666096285,-0.048045840114355,0.12747506797314],[-0.046803195029497,-0.037536274641752,0.087966367602348]],[[-0.0060920929536223,0.087757714092731,-0.14842793345451],[0.012210256420076,0.027462648227811,0.078861579298973],[-0.012659665197134,0.059360191226006,-0.10643844306469]],[[0.11224963515997,0.15640921890736,-0.009991180151701],[-0.0035659591667354,0.13455677032471,0.056105554103851],[-0.03959496319294,-0.038676884025335,-0.032529447227716]],[[0.067413449287415,0.15361832082272,0.053902301937342],[-0.21540597081184,-0.050839368253946,0.002170484745875],[-0.0669926404953,-0.080179415643215,0.14905409514904]],[[-0.028093561530113,-0.055686313658953,-0.049369603395462],[-0.017341274768114,0.012764673680067,-0.068577647209167],[0.065310686826706,0.061631038784981,-0.088426113128662]],[[-0.041788917034864,0.034372519701719,0.086125455796719],[-0.050360184162855,0.023167034611106,0.058972597122192],[-0.056923564523458,0.069388434290886,0.028879364952445]],[[0.021673727780581,0.05129050090909,0.028509685769677],[-0.08007837831974,-0.033187627792358,-0.13554544746876],[-0.034978002309799,0.030279653146863,-0.033501092344522]],[[-0.0061705480329692,-0.054723635315895,0.10048570483923],[0.049787752330303,-0.039558228105307,-0.20632442831993],[0.014015419408679,0.071832783520222,0.079804942011833]],[[-0.011666394770145,-0.11619081348181,0.0072145001031458],[0.14301227033138,0.080869220197201,0.11991278082132],[-0.13224330544472,-0.072807595133781,-0.062647238373756]],[[-0.055705159902573,0.062438677996397,0.14254975318909],[-0.090085670351982,-0.024993468075991,-0.024756932631135],[-0.13619713485241,-0.074281066656113,-0.052996702492237]],[[0.065728075802326,0.021719235926867,-0.11653036624193],[0.036453045904636,0.043302588164806,-0.072239249944687],[-0.10146325826645,0.037332251667976,0.13128814101219]],[[0.063580751419067,-0.020560037344694,-0.019999800249934],[0.019165031611919,0.0082813696935773,-0.077770575881004],[-0.063772782683372,-0.033549759536982,-0.0065080756321549]],[[-0.018580324947834,0.0067772697657347,0.095370873808861],[-0.060013689100742,-0.20820140838623,-0.096635654568672],[0.19579508900642,0.057501405477524,-0.10422713309526]],[[0.055387113243341,-0.099167086184025,-0.090467654168606],[0.014458036981523,-0.11418556421995,-0.025941949337721],[0.11670569330454,-0.034009616822004,0.071111619472504]],[[-0.0043493360280991,0.049198295921087,0.057643566280603],[0.13754090666771,0.008462343364954,-0.10677368938923],[-0.050096534192562,0.013268167153001,-0.024887206032872]],[[-0.033189136534929,0.079487957060337,-0.024831021204591],[-0.0067531890235841,0.013556589372456,0.0025414493866265],[0.11320649832487,0.14185105264187,0.004017811268568]],[[0.01890142261982,0.087807781994343,0.049454465508461],[0.022082485258579,-0.10183151811361,0.15957164764404],[0.095641873776913,-0.067455403506756,-0.15295073390007]],[[-0.0010724345920607,-0.10130739212036,-0.06505498290062],[-0.024805013090372,-0.011254822835326,-0.027565881609917],[0.011910827830434,-0.016993952915072,-0.12418308109045]],[[-0.061008989810944,-0.091411083936691,-0.057599380612373],[0.042045444250107,-0.10597641766071,0.057896617799997],[-0.07255045324564,-0.033683389425278,0.0058425213210285]],[[0.04486608505249,0.026652209460735,-0.17654344439507],[-0.018515473231673,-0.013205633498728,-0.051707677543163],[0.15348230302334,0.076341561973095,0.038404822349548]],[[-0.010926558636129,0.04170798137784,0.16342009603977],[-0.030244816094637,-0.13843999803066,-0.14687757194042],[-0.017603239044547,0.051885928958654,-0.063924677670002]]],[[[0.068341426551342,0.020683297887444,-0.0041485731489956],[-0.022095873951912,0.023565521463752,-0.052385292947292],[-0.097287558019161,-0.090358875691891,0.0081354584544897]],[[0.051661491394043,-0.094518885016441,0.013724657706916],[0.090362176299095,-0.024808732792735,-0.050354335457087],[0.061299756169319,-0.077312335371971,-0.081218279898167]],[[-0.088236279785633,-0.10591382533312,-0.039799358695745],[0.060087647289038,0.049933683127165,0.090281695127487],[0.047289058566093,-0.015791026875377,-0.087055563926697]],[[-0.054112460464239,-0.021752517670393,0.070332154631615],[0.031322181224823,0.10220795124769,-0.16246293485165],[-0.014450542628765,-0.029578013345599,0.011315195821226]],[[0.069114103913307,-0.077471174299717,0.084637455642223],[0.065911516547203,-0.06839807331562,0.048610743135214],[0.03705957531929,-0.16187226772308,0.0079974411055446]],[[0.030623972415924,-0.046735756099224,0.057612892240286],[0.084667347371578,-0.050388284027576,-0.068030342459679],[0.018491085618734,0.022713737562299,0.058442778885365]],[[-0.055964853614569,0.15579268336296,0.073285222053528],[-0.10341169685125,-0.039756398648024,-0.12720282375813],[-0.029589643701911,-0.025249592959881,-0.0099839614704251]],[[0.0013369573280215,-0.070416882634163,-0.12183111906052],[0.037891179323196,-0.025868507102132,-0.027753263711929],[-0.06768037378788,-0.021697551012039,0.056679055094719]],[[-0.014210922643542,-0.025022769346833,0.084204941987991],[0.032462604343891,-0.0055824969895184,-0.023151030763984],[0.051430098712444,-0.060829069465399,0.001027705729939]],[[0.18737843632698,0.090679883956909,0.12551662325859],[-0.043731566518545,-0.072878248989582,-0.11708755791187],[0.136071190238,0.089454531669617,-0.11311431229115]],[[-0.0066607426851988,-0.0092031955718994,0.074932761490345],[0.00014707179798279,0.069897226989269,-0.1281863451004],[0.045452188700438,0.091737814247608,0.17013038694859]],[[0.081798389554024,-0.083489038050175,-0.024164747446775],[-0.016936138272285,-0.0060049053281546,0.037275813519955],[0.069664515554905,-0.04996183142066,-0.032398879528046]],[[-0.1295287758112,-0.14764952659607,-0.0090932529419661],[-0.019895939156413,-0.10082218050957,0.11152993887663],[0.097601681947708,0.045118190348148,0.076062016189098]],[[0.013809213414788,0.085532978177071,-0.015381272882223],[0.0014677508734167,-0.046220727264881,-0.022885702550411],[0.046080093830824,0.015008360147476,0.012419569306076]],[[0.0028700167313218,0.14667083323002,0.21849966049194],[-0.12651464343071,0.0011472522746772,-0.018917692825198],[-0.04434023052454,0.12835130095482,0.047948058694601]],[[0.032240334898233,-0.054077640175819,-0.029873115941882],[0.064405761659145,0.11502012610435,0.039721522480249],[0.052254930138588,0.024802166968584,0.0067221717908978]],[[-0.033270437270403,-0.12662833929062,-0.037094004452229],[0.10747109353542,-0.078139744699001,0.04748972505331],[-0.0019326108740643,0.071580298244953,0.031821072101593]],[[0.066488817334175,-0.020639359951019,0.13441506028175],[-0.018170418217778,-0.053308341652155,-0.055275034159422],[0.076345294713974,-0.0075770393013954,0.018047835677862]],[[0.050151936709881,0.13384489715099,0.14522159099579],[0.030096553266048,0.061845302581787,-0.059522423893213],[-0.0067577138543129,0.039682365953922,0.090791717171669]],[[0.0033707830589265,-0.015984555706382,-0.063268437981606],[-0.073819980025291,-0.019690368324518,-0.018783295527101],[-0.18840962648392,-0.15379400551319,0.046931717544794]],[[-0.02257052436471,0.12245970964432,0.10694648325443],[-0.086898006498814,0.041926179081202,0.055432330816984],[0.041417732834816,0.11127343773842,-0.027385167777538]],[[0.075940579175949,0.030249988660216,0.061334680765867],[0.092532195150852,0.17226748168468,0.081135183572769],[0.014227028936148,0.11502266675234,0.0057463496923447]],[[0.032660979777575,0.091204240918159,0.039689179509878],[0.067570358514786,0.021635914221406,0.02315148897469],[0.044686149805784,0.073710061609745,0.050720553845167]],[[-0.054309468716383,-0.12739148736,0.061570875346661],[-0.053693767637014,0.14056280255318,0.0016083319205791],[0.034947987645864,0.020504323765635,0.11387730389833]],[[-0.093702964484692,0.033626236021519,0.11271053552628],[-0.041002206504345,0.023434534668922,0.04824385792017],[0.10286739468575,0.023631731048226,0.10333232581615]],[[0.022849962115288,0.05734058842063,-0.10666806995869],[0.13217459619045,0.032575145363808,-0.16374364495277],[0.017773034051061,-0.027870070189238,-0.13265153765678]],[[-0.021837385371327,0.022475836798549,0.075766056776047],[0.024430513381958,0.077108763158321,0.12126264721155],[0.10996613651514,-0.0058666984550655,0.071480259299278]],[[0.099533565342426,-0.11290176957846,0.095699198544025],[0.023731630295515,-0.025392005220056,-0.077044293284416],[0.0040024355985224,0.033429026603699,-0.093575499951839]],[[-0.098901882767677,-0.048253957182169,-0.084890127182007],[0.0020398171618581,0.036302711814642,0.046776458621025],[-0.068321749567986,-0.053937863558531,0.0073170848190784]],[[0.014602796174586,0.071840442717075,-0.0091035459190607],[-0.10222304612398,-0.15311132371426,0.075516514480114],[0.037004511803389,0.085744582116604,0.05065456032753]],[[0.10816737264395,-0.2162964195013,0.00081456120824441],[0.11865434795618,0.051871120929718,0.01151517406106],[0.10391410440207,-0.07179468870163,-0.038155328482389]],[[0.033596266061068,0.069201283156872,-0.19355231523514],[0.069840312004089,0.041721183806658,0.0093082739040256],[0.020351067185402,0.087637916207314,-0.032920502126217]],[[-0.18569630384445,-0.10497186332941,0.015518979169428],[0.021544754505157,0.019862063229084,-0.17877918481827],[0.043664250522852,0.024743711575866,-0.020354950800538]],[[-0.030003668740392,0.03623541072011,0.15393100678921],[0.05783174932003,0.066867172718048,0.10824681818485],[0.11460777372122,0.098660387098789,-0.0090555883944035]],[[-0.05034888535738,0.074820540845394,0.0022884735371917],[0.00032264861511067,-0.052629541605711,-0.075930297374725],[0.1350005865097,0.016021829098463,-0.034192021936178]],[[0.065448328852654,0.018468329682946,-0.011543592438102],[0.054252866655588,0.014943974092603,-0.072509668767452],[-0.0019933003932238,-0.044721323996782,0.057187810540199]],[[0.14084760844707,0.11981486529112,-0.018579464405775],[-0.019655307754874,0.027426984161139,-0.039248645305634],[0.11228327453136,0.10951030999422,-0.0088572604581714]],[[-0.067566707730293,0.12668111920357,-0.032521273940802],[-0.059766802936792,-0.05798103287816,-0.079271771013737],[0.080846525728703,0.020114505663514,0.056695781648159]],[[-0.23019993305206,0.035466130822897,0.12044195830822],[0.011871960014105,-0.098099052906036,0.068752609193325],[0.055235952138901,0.063634097576141,0.13562528789043]],[[-0.099628791213036,-0.23705397546291,-0.011281041428447],[0.052191361784935,0.057848069816828,0.025391545146704],[0.18103718757629,-0.047545116394758,0.037961754947901]],[[0.075350895524025,0.0056211263872683,-0.032748695462942],[-0.0002687101950869,-0.15806421637535,-0.017571225762367],[0.044333096593618,0.076678648591042,0.088486805558205]],[[0.032487157732248,0.077307604253292,-0.11770144104958],[-0.088613227009773,0.14545655250549,-0.07854612916708],[0.028815858066082,0.10253665596247,0.12285147607327]],[[0.046176843345165,-0.10370713472366,-0.031004840508103],[-0.052696458995342,-0.18088616430759,0.079274266958237],[-0.012172185815871,-0.12511970102787,0.098651140928268]],[[-0.012790509499609,0.088636085391045,0.067109994590282],[0.027327045798302,0.048023622483015,0.058341402560472],[-0.019956069067121,-0.048231739550829,-0.026246571913362]],[[0.11179980635643,-0.049026101827621,0.031312715262175],[-0.032134480774403,0.047496385872364,0.01614042930305],[0.15293383598328,0.029397647827864,0.0086200973019004]],[[-0.1180657595396,-0.21725188195705,-0.34401309490204],[0.096419431269169,0.039843164384365,0.066426172852516],[0.0036238657776266,-0.095379151403904,-0.032661896198988]],[[-0.012579303234816,-0.019184753298759,0.024181116372347],[-0.053698685020208,0.0467021279037,0.023378718644381],[0.060262333601713,0.017835937440395,0.019566960632801]],[[0.11786885559559,0.075697630643845,0.0086631467565894],[0.057582575827837,-0.029164634644985,0.076986514031887],[-0.18592737615108,-0.094090454280376,-0.019300760701299]],[[-0.088935315608978,0.085371553897858,-0.078708827495575],[-0.13046406209469,-0.043967790901661,-0.0026723514311016],[-0.070405587553978,-0.032132018357515,0.096087589859962]],[[0.062125280499458,0.091383777558804,-0.035101041197777],[-0.041478171944618,0.0073015345260501,0.049390476197004],[0.026285035535693,-0.063922680914402,0.050883110612631]],[[0.018895758315921,-0.0060847867280245,0.027225719764829],[-0.21170043945312,-0.10628531873226,0.014985667541623],[0.079520933330059,0.026868809014559,0.13267749547958]],[[0.020497981458902,-0.041006114333868,0.00068697438109666],[-0.067674033343792,-0.11265880614519,0.044474061578512],[0.060340877622366,-0.0031133601441979,0.074470154941082]],[[-0.0045047453604639,0.10556701570749,-0.0024827930610627],[-0.054565317928791,0.027528489008546,-0.10856258124113],[-0.071496538817883,0.041173912584782,-0.05148870870471]],[[0.005976241081953,0.070603258907795,0.10138139873743],[0.053086526691914,0.0054710814729333,0.026826813817024],[-0.015200641006231,0.070139445364475,0.12887853384018]],[[0.1178210824728,0.10055492818356,0.0098629938438535],[-0.017101904377341,-0.039662133902311,-0.13820515573025],[-0.010719210840762,0.10031735152006,-0.068895265460014]],[[0.037574864923954,0.063622690737247,-0.033356107771397],[0.064564876258373,-0.10411677509546,-0.067628793418407],[0.067960567772388,0.031204866245389,0.034627340734005]],[[0.11693339794874,-0.042029783129692,0.032156009227037],[0.019204864278436,-0.023946123197675,0.045127488672733],[0.030460871756077,0.10674030333757,-0.065915018320084]],[[-0.045753665268421,0.0024904157035053,-0.16353115439415],[0.024914424866438,0.040356896817684,0.056919485330582],[0.087594024837017,0.027595994994044,0.068421132862568]],[[0.21500352025032,-0.049340028315783,-0.060276415199041],[0.030967166647315,0.058825988322496,-0.07062479108572],[0.12807677686214,0.037478055804968,0.024833077564836]],[[0.013705219142139,0.09858887642622,0.050934512168169],[-0.038891758769751,0.058377180248499,0.042070385068655],[0.10171207785606,0.10740623623133,0.0056209960021079]],[[0.063826590776443,-0.04354390129447,0.080659292638302],[0.026591582223773,0.068080827593803,-0.073620185256004],[-0.0088977608829737,-0.022696916013956,0.16890099644661]],[[-0.090506412088871,-0.06968829780817,4.6660745283589e-05],[0.082897588610649,0.054389543831348,-0.057551331818104],[-0.04921330884099,0.030080534517765,0.15806375443935]],[[0.0754035115242,-0.00076944474130869,0.070061698555946],[0.068541303277016,0.030125105753541,-0.038575645536184],[0.059021316468716,0.049589172005653,-0.068074621260166]],[[-0.10279140621424,-0.033269770443439,0.043057236820459],[0.16857534646988,0.12343452125788,0.087805114686489],[0.026937121525407,-0.0072842291556299,0.12649746239185]]],[[[0.03262747824192,-0.13380073010921,0.066928520798683],[-0.080070167779922,-0.10223422944546,0.21715217828751],[0.055075671523809,-0.079370684921741,0.1118493154645]],[[0.0085134347900748,0.21057106554508,-0.014015951193869],[0.025269659236073,0.071478970348835,0.027377162128687],[0.0089597888290882,-0.12983219325542,-0.12826581299305]],[[-0.085184179246426,0.05438082292676,-0.075098067522049],[0.030402775853872,-0.043921247124672,-0.049885723739862],[-0.11855165660381,0.033905573189259,0.21097214519978]],[[0.068273782730103,0.067423723638058,0.10412766039371],[-0.042423747479916,-0.11582174152136,-0.079365208745003],[-0.010583268478513,-0.050179626792669,0.0044437232427299]],[[-0.090797886252403,-0.06161704659462,0.062982499599457],[-0.018927048891783,-0.024662990123034,0.15402778983116],[-0.15520666539669,0.053731232881546,-0.14608880877495]],[[0.031562965363264,0.055110275745392,-0.13486038148403],[0.10616341233253,-0.067936651408672,0.010651303455234],[0.073266677558422,-0.034003794193268,-0.077321350574493]],[[-0.051376860588789,-0.14547708630562,0.019658422097564],[0.0292839538306,-0.0045824251137674,-0.037520043551922],[-0.033303663134575,-0.035543750971556,0.13969643414021]],[[0.23123250901699,0.10507763922215,-0.11210688203573],[-0.12696363031864,2.4193366698455e-05,0.047761626541615],[-0.09216795116663,0.094458363950253,0.03567011654377]],[[0.057696394622326,0.002576244994998,0.030247464776039],[-0.078773804008961,-0.039209995418787,0.11490653455257],[-0.062346681952477,-0.082457862794399,0.0096589289605618]],[[-0.015639441087842,-0.041705556213856,-0.021078499034047],[-0.11565764993429,-0.093110479414463,-0.16068406403065],[0.035981211811304,0.054957509040833,-0.040097586810589]],[[-0.16273356974125,-0.12695100903511,0.0094391210004687],[-0.10184931755066,-0.088271982967854,0.038683138787746],[0.010998432524502,0.044400125741959,0.16515026986599]],[[0.040688887238503,0.0838508233428,-0.13586875796318],[-0.091703489422798,-0.03571143001318,0.061433650553226],[-0.064729914069176,-0.16081990301609,-0.022899214178324]],[[0.092476047575474,-0.19159664213657,0.035504221916199],[-0.044268179684877,0.099652498960495,-0.018491044640541],[-0.030855966731906,0.017946911975741,-0.080414496362209]],[[-0.086935937404633,0.021871626377106,0.10209717601538],[-0.11773294955492,-0.051017422229052,-0.077396377921104],[0.074306778609753,0.036104127764702,0.096332564949989]],[[-0.055394235998392,-0.0011436885688454,0.025391012430191],[-0.040207006037235,-0.11582827568054,-0.011389089748263],[0.021764639765024,-0.027453938499093,-0.067420139908791]],[[0.10274652391672,0.0086532486602664,0.09118664264679],[0.064067654311657,-0.036450587213039,-0.01608762703836],[0.069170162081718,0.065891712903976,0.18618550896645]],[[0.031661480665207,0.14396367967129,-0.061129081994295],[0.03866570442915,-0.041596777737141,-0.0076003689318895],[0.02368531934917,0.055939387530088,0.27545008063316]],[[0.005427005700767,-0.1391666084528,0.14474686980247],[-0.0047208936884999,-0.012375165708363,0.086230367422104],[-0.037483759224415,-0.078062787652016,-0.0040971715934575]],[[0.13560597598553,-0.059973195195198,0.18447315692902],[0.012495345436037,0.027963530272245,-0.049763645976782],[-0.010203259065747,-0.03986868262291,-0.054583538323641]],[[-0.034541986882687,-0.014384932816029,-0.069840855896473],[0.14376448094845,-0.081820033490658,0.10051559656858],[0.13837905228138,0.017680758610368,-0.25042390823364]],[[-0.14483277499676,-0.11051611602306,-0.027635278180242],[-0.0035287048667669,0.039502590894699,0.060021504759789],[0.014263238757849,-0.10279824584723,-0.12494824081659]],[[-0.020209180191159,0.03425969555974,0.10812650620937],[-0.037388533353806,-0.2397536188364,-0.055916361510754],[0.18304234743118,0.14339254796505,-0.086266674101353]],[[-0.065484762191772,0.079648748040199,0.0139215355739],[0.040717143565416,-0.10541766136885,-0.030429657548666],[-0.11097213625908,-0.11511163413525,-0.23755022883415]],[[-0.056060962378979,-0.040791817009449,0.08092212677002],[-0.082539081573486,-0.066305667161942,0.043360814452171],[0.035854794085026,0.023888165131211,0.12546119093895]],[[-0.21343486011028,-0.16327638924122,0.025381380692124],[0.089317567646503,-0.1118506193161,-0.074846141040325],[-0.01135840639472,0.054127622395754,0.11466712504625]],[[-0.26998096704483,0.020024267956614,-0.15313777327538],[0.035913169384003,0.017638409510255,0.0190349817276],[-0.099336661398411,-0.13787710666656,0.21770685911179]],[[-0.006408859975636,0.032968789339066,0.027985950931907],[0.043426878750324,-0.070935383439064,-0.08318218588829],[-0.074166990816593,0.050396978855133,0.11429010331631]],[[0.055625326931477,-0.0010817795991898,0.015711352229118],[0.038324754685163,-0.13559775054455,-0.013642070814967],[-0.070595689117908,-0.014043430797756,-0.10898447036743]],[[0.0030749905854464,-0.00032966546132229,0.18194285035133],[0.022411443293095,0.058264616876841,-0.20519354939461],[-0.011391511186957,0.11051675677299,-0.22659912705421]],[[0.08289185911417,0.035862177610397,-0.22194047272205],[0.025507148355246,-0.0031046038493514,-0.04185564443469],[0.097763128578663,0.064216896891594,-0.13431632518768]],[[-0.25704652070999,-0.029672212898731,-0.14203494787216],[-0.027781328186393,0.26571846008301,-0.23745374381542],[-0.16727542877197,-0.15612076222897,-0.073866613209248]],[[0.25679185986519,0.14159478247166,-0.010943748988211],[-0.11040364950895,-0.033919285982847,-0.0039464323781431],[0.077483251690865,0.015644911676645,0.20558421313763]],[[-0.046760275959969,-0.079573601484299,-0.066885627806187],[-0.057418648153543,0.0058295503258705,0.083722658455372],[0.040229104459286,0.07562979310751,0.099473357200623]],[[-0.11690928786993,0.038907900452614,-0.028781479224563],[-0.066154628992081,0.051766492426395,-0.12126642465591],[-0.031206529587507,0.0044572344049811,0.015180934220552]],[[0.079763904213905,0.076881617307663,-0.071019545197487],[-0.0010974773904309,-0.032917879521847,0.052733976393938],[-0.095851719379425,-0.10406459867954,-0.041574589908123]],[[0.045964494347572,-0.047189366072416,-0.11115704476833],[-0.079064436256886,0.035113576799631,0.14243230223656],[-0.08346413820982,0.090353392064571,-0.12299933284521]],[[-0.025862092152238,0.046160653233528,-0.18952466547489],[0.02651684731245,0.035507433116436,-0.10044536739588],[-0.031936135143042,0.0026652314700186,-0.0064627090469003]],[[-0.12457609921694,-0.10708139836788,0.032518994063139],[0.0071886400692165,0.047139726579189,0.1486090272665],[-0.0076763238757849,-0.052027441561222,-0.031261693686247]],[[-0.22091908752918,0.036130618304014,-0.078508988022804],[-0.10152816027403,0.01071946695447,0.050889149308205],[-0.070713579654694,-0.081095054745674,-0.12235923111439]],[[-0.031382188200951,-0.085127010941505,-0.0073360814712942],[0.05946958437562,-0.0045260223560035,-0.064305551350117],[0.04491338506341,-0.07479065656662,0.039644781500101]],[[-0.021453682333231,0.12825618684292,-0.064912408590317],[0.14077889919281,0.058966252952814,0.0036545305047184],[0.011606971733272,0.11078771203756,-0.091651052236557]],[[0.13213221728802,0.085415557026863,0.0070703476667404],[0.05254565179348,0.078663736581802,0.10736065357924],[0.040248036384583,-0.0081833507865667,-0.211365878582]],[[-0.12802384793758,-0.060771189630032,0.055343609303236],[-0.055874809622765,0.018189780414104,-0.022018238902092],[-0.015009417198598,0.077346995472908,0.03798495605588]],[[-0.10215517133474,0.033174764364958,-0.039431784301996],[0.08611324429512,0.074356466531754,-0.020360231399536],[0.043664403259754,-0.061667963862419,-0.019250616431236]],[[-0.013689168728888,-0.02520246990025,0.2038648724556],[-0.11637381464243,-0.058126002550125,-0.12181543558836],[-0.085917763411999,0.11166009306908,-0.061621103435755]],[[-0.10253805667162,-0.11439292877913,0.1566713899374],[0.039111208170652,0.041111085563898,0.080954231321812],[-0.26796388626099,0.056348256766796,0.026505757123232]],[[-0.17775937914848,-0.010095718316734,-0.21930392086506],[0.012366506271064,0.028918361291289,0.051076989620924],[-0.15325027704239,-0.03190179541707,0.023673476651311]],[[0.041459586471319,0.088007129728794,-0.024812025949359],[-0.012883081100881,0.097933247685432,0.031034836545587],[-0.044322974979877,-0.06799054145813,-0.014981064014137]],[[-0.36909455060959,-0.14998857676983,0.023833382874727],[-0.077250130474567,-0.050992015749216,-0.035826373845339],[-0.015438803471625,-0.035125222057104,0.090134792029858]],[[-0.12386029213667,0.044472564011812,-0.12425873428583],[-0.01494244672358,0.17251789569855,-0.12408255785704],[0.045116480439901,0.082947127521038,-0.13898195326328]],[[-0.080542087554932,-0.056789930909872,-0.040511604398489],[0.0057595353573561,0.0044527216814458,0.15398202836514],[0.093543261289597,-0.029689591377974,-0.047014683485031]],[[0.11446587741375,0.088564306497574,0.088711716234684],[0.0061278464272618,-0.094999626278877,-0.20402920246124],[0.074615836143494,-0.058709841221571,0.045864824205637]],[[-0.085902363061905,-0.057763818651438,-0.12287998199463],[0.093692533671856,0.14286297559738,-0.14140641689301],[0.029019884765148,0.012731750495732,0.11846628785133]],[[-0.067716769874096,-0.18081514537334,-0.015266639180481],[-0.086733505129814,-0.015474184416234,0.070065304636955],[0.024981247261167,-0.1761928498745,0.12352579087019]],[[0.12732242047787,-0.061624404042959,-0.067509680986404],[-0.12062948197126,0.011801953427494,-0.023231169208884],[0.11125990003347,0.1136120185256,-0.054736196994781]],[[0.015041848644614,-0.018327668309212,-0.11139539629221],[-0.012058386579156,-0.0025499311741441,-0.024856640025973],[-0.052829340100288,-0.034599110484123,-0.041425168514252]],[[0.10025971382856,0.15924654901028,-0.088440202176571],[-0.075737826526165,0.018984543159604,0.06588326394558],[-0.068096220493317,0.047776665538549,-0.056978404521942]],[[0.28564837574959,0.0080171683803201,-0.039096813648939],[-0.12073753774166,-0.070216879248619,0.12459102272987],[-0.10778224468231,-0.04879155755043,0.029691847041249]],[[-0.028104754164815,0.15583807229996,-0.087788388133049],[0.08825009316206,-0.020517591387033,0.060594987124205],[0.0020690134260803,0.06586080789566,0.075848966836929]],[[-0.13913890719414,-0.096501491963863,-0.16023698449135],[0.0667834430933,0.067168824374676,-0.19643910229206],[0.14056001603603,0.11900620162487,-0.20129790902138]],[[-0.12248390167952,0.045297801494598,0.091442689299583],[-0.089247390627861,0.045113768428564,0.038349665701389],[-0.21007603406906,0.030350605025887,-0.1109930574894]],[[-0.049216963350773,-0.024229938164353,0.098790265619755],[0.078622482717037,-0.02135618776083,0.0054208510555327],[0.1373091340065,0.049077462404966,0.11293601989746]],[[-0.070094659924507,-0.01779992133379,0.052535854279995],[0.048474002629519,0.12631855905056,-0.047198157757521],[-0.074061490595341,-0.058984942734241,0.038878872990608]],[[-0.0085319420322776,-0.2012454867363,-0.093991935253143],[-0.2337900698185,-0.080088995397091,0.0054659019224346],[0.069740660488605,0.078570298850536,0.10538090020418]]],[[[-0.043387100100517,-0.15518747270107,-0.074059180915356],[-0.0503199249506,-0.0118372682482,0.031095013022423],[-0.19481495022774,-0.072943769395351,0.21240186691284]],[[0.11208862811327,0.025311971083283,-0.0076822163537145],[0.021316090598702,0.016674038022757,0.012242251075804],[-0.1050038933754,0.10055212676525,0.074458822607994]],[[-0.10362911969423,-0.00960798189044,-0.020851830020547],[0.051475796848536,-0.13443847000599,0.081490695476532],[0.060906488448381,0.16667626798153,-0.057306107133627]],[[0.056749124079943,-0.065671250224113,-0.017979776486754],[-0.080925174057484,-0.03745324537158,-0.069681450724602],[0.097223103046417,0.12594737112522,0.0071062929928303]],[[0.02481596544385,0.042200535535812,-0.069145485758781],[-0.068643145263195,0.12109664082527,-0.016741646453738],[-0.19474530220032,0.035138718783855,-0.044020052999258]],[[-0.042280953377485,0.064441509544849,0.010387073270977],[-0.12435707449913,-0.090109720826149,0.055222693830729],[-0.029615277424455,0.054442040622234,-0.085438370704651]],[[0.027310328558087,0.043305546045303,-0.0048841871321201],[0.09161014854908,-0.0072167422622442,0.032917197793722],[-0.079659439623356,-0.002182686002925,0.018892468884587]],[[0.13385513424873,0.063728213310242,-0.035535674542189],[-0.015051930211484,-0.020750502124429,0.052264500409365],[-0.093342483043671,0.062208436429501,0.038122698664665]],[[-0.0053381137549877,0.035711772739887,0.067175000905991],[-0.040085170418024,0.080553628504276,0.044438205659389],[-0.095496572554111,-0.087255038321018,0.020998802036047]],[[-0.0038836665917188,0.021817162632942,-0.033660192042589],[-0.0080543756484985,-0.067701935768127,-0.051991607993841],[0.09052138030529,-0.14919562637806,-0.058616071939468]],[[-0.052708625793457,-0.21986615657806,-0.030134094879031],[0.028894687071443,0.045331813395023,0.015680465847254],[-0.0039136768318713,-0.12960596382618,0.030429584905505]],[[-0.13685941696167,0.020020820200443,0.017901923507452],[0.032930087298155,0.045216515660286,0.036339193582535],[0.10295536369085,-0.01098027266562,-0.060931388288736]],[[-0.084901735186577,-0.0034286377485842,0.10533100366592],[0.14013765752316,-0.019646229222417,0.00099232944194227],[0.099763043224812,-0.043258160352707,0.11611262708902]],[[0.037010971456766,0.1163327023387,-0.078573599457741],[-0.070149481296539,-0.061265878379345,0.0061094686388969],[-0.0031951612327248,-0.13017213344574,0.0012131478870288]],[[-0.07152646780014,-0.017791038379073,-0.036687884479761],[0.074020080268383,0.035004541277885,0.038721844553947],[0.011496908962727,0.0033762017264962,-0.075585924088955]],[[-0.036548055708408,-0.072319842875004,-0.050015155225992],[-0.29893544316292,-0.023588143289089,-0.059595879167318],[-0.12577417492867,0.051113795489073,0.0025061191990972]],[[-0.038219582289457,-0.041308782994747,-0.096349723637104],[0.06928800791502,0.12142301350832,-0.018436780199409],[-0.17092770338058,-0.24471920728683,0.06775489449501]],[[0.00080022483598441,0.010829412378371,0.13893783092499],[0.01858658157289,0.041789997369051,0.013074717484415],[-0.12920188903809,-0.024419661611319,-0.067431926727295]],[[0.041940372437239,0.067370027303696,0.10756277292967],[0.0050272033549845,0.082893662154675,-0.053558051586151],[0.0013250147458166,-0.049125663936138,-0.14022007584572]],[[-0.035224784165621,-0.0031317330431193,0.0015733385225758],[0.15593183040619,0.0029691439121962,0.10446634143591],[-0.042833611369133,0.10637626051903,0.10294573754072]],[[0.028513599187136,-0.076646707952023,0.027767110615969],[-0.03817567974329,-0.0010992101160809,-0.20427133142948],[0.037421006709337,0.044187773019075,-0.081681489944458]],[[-0.020225267857313,0.08815635740757,-0.051416728645563],[0.0089522181078792,-0.036771558225155,0.057646218687296],[-0.03647430613637,-0.086644306778908,-0.055458724498749]],[[0.032624173909426,-0.014336791820824,-0.062990352511406],[-0.062304679304361,0.042212642729282,-0.10277987271547],[-0.024755105376244,0.03377690166235,0.050164308398962]],[[-0.046191092580557,-0.094735905528069,0.067873544991016],[-0.030619390308857,-0.19015969336033,-0.075674064457417],[0.0025835048872977,-0.13052733242512,0.084379389882088]],[[0.07074811309576,0.014596791937947,0.00027919746935368],[0.1122502759099,-0.036976117640734,-0.017529036849737],[-0.053351417183876,0.13116985559464,0.0021741203963757]],[[-0.046387553215027,-0.12749511003494,0.06880284100771],[0.026089742779732,0.056434508413076,0.066392436623573],[0.027890151366591,-0.082635410130024,-0.081658534705639]],[[-0.0092691387981176,0.032902806997299,-0.077849552035332],[-0.091622605919838,0.044658716768026,0.032361574470997],[-0.17010807991028,-0.25478973984718,-0.0033301117364317]],[[0.022653505206108,0.10429769009352,-0.052402883768082],[-0.082342706620693,0.037852894514799,-0.073598854243755],[0.15186807513237,-0.089152954518795,0.034720469266176]],[[0.05800549685955,0.016440626233816,-0.19530907273293],[0.16814081370831,0.0055405241437256,-0.06713093817234],[0.090927682816982,0.081026487052441,-0.0086032245308161]],[[-0.099087134003639,0.029348725453019,-0.0078594721853733],[-0.046941664069891,0.026039019227028,-0.028771756216884],[0.057310029864311,0.036180578172207,0.087475284934044]],[[0.003784058149904,-0.011337860487401,-0.099255003035069],[0.086333744227886,0.074265323579311,-0.077673085033894],[-0.083308517932892,0.04774484783411,-0.057052720338106]],[[0.038993280380964,0.044439941644669,0.037797696888447],[-0.099897816777229,0.080233834683895,0.036947000771761],[-0.21906408667564,-0.031365253031254,-0.059892926365137]],[[-0.055994875729084,0.12754334509373,0.086215957999229],[0.034297060221434,-0.0066548641771078,0.12978751957417],[-0.085357613861561,0.0016950034769252,-0.026152487844229]],[[-0.034730549901724,0.079008810222149,-0.16645382344723],[0.069886766374111,0.022973034530878,0.029684320092201],[0.089658670127392,-0.012068936601281,0.080981351435184]],[[-0.010627961717546,-0.0097893010824919,-0.012962833978236],[0.16787171363831,0.0061217211186886,-0.076954454183578],[0.055332899093628,-0.17139577865601,-0.050421513617039]],[[-0.01044714730233,-0.062590107321739,-0.066203005611897],[-0.01874627918005,0.044278934597969,-0.037786271423101],[-0.018955981358886,0.080275990068913,0.12374972552061]],[[0.020990597084165,0.049538344144821,-0.027711914852262],[0.016435226425529,-0.0090571884065866,0.0040046782232821],[-0.10194174945354,-0.017108663916588,0.014284159056842]],[[0.06166485697031,0.037613920867443,-0.04442548379302],[-0.095440655946732,0.089153662323952,0.033700440078974],[-0.22345124185085,0.064145006239414,-0.017431180924177]],[[-0.08409520983696,-0.070300348103046,-0.059210896492004],[0.016082452610135,0.1195334866643,0.02509592846036],[-0.033526968210936,-0.15019747614861,-0.14048165082932]],[[0.036147195845842,-0.010132000781596,0.059152446687222],[-0.093771621584892,-0.045258011668921,0.15813654661179],[-0.040485017001629,0.028254313394427,0.023696402087808]],[[0.079687535762787,0.0035508549772203,-0.12922070920467],[0.18397448956966,0.072761431336403,0.042782094329596],[-0.027684640139341,0.081352517008781,-0.023053603246808]],[[0.055403538048267,0.01128757558763,0.011348366737366],[0.023048276081681,-0.16638207435608,-0.017594553530216],[0.039761044085026,-0.053636066615582,-0.10293585062027]],[[0.00076228991383687,0.018476001918316,0.077515870332718],[-0.01191290281713,-0.026379255577922,-0.14633528888226],[-0.01343216188252,0.10043635219336,0.017145060002804]],[[0.079886324703693,-0.07577283680439,-0.068403102457523],[0.09746477752924,-0.029373368248343,-0.016801225021482],[0.059078712016344,0.039759963750839,-0.0075280112214386]],[[-0.0027609411627054,-0.09623771905899,-0.023044280707836],[-0.11981743574142,-0.062539055943489,-0.050085406750441],[-0.10010296851397,0.14706864953041,-0.024919424206018]],[[-0.23494607210159,0.050400990992785,-0.040015183389187],[0.087941154837608,-0.057369966059923,0.033295918256044],[0.10840163379908,0.10263078659773,0.10798835754395]],[[-0.056440189480782,-0.13229593634605,-0.20333936810493],[0.011049552820623,0.093763038516045,0.051328875124454],[0.10739734768867,0.042802628129721,0.010266277939081]],[[0.10270389169455,-0.038306139409542,-0.029188673943281],[-0.02346677519381,0.02361892350018,-0.0036607154179364],[0.072200693190098,-0.070968218147755,0.026520496234298]],[[0.034640111029148,-0.0088265333324671,0.059638056904078],[0.013059390708804,0.036438815295696,0.11718885600567],[-0.24164323508739,-0.203159481287,-0.17826600372791]],[[0.03427766636014,0.060890041291714,0.08303789794445],[-0.094841696321964,-0.081635728478432,0.0027884372975677],[-0.03342716768384,0.054773606359959,0.038015250116587]],[[0.076970033347607,-0.035750687122345,-0.012113064527512],[-0.0050115492194891,0.017719270661473,0.036305699497461],[0.0034116180613637,-0.019136913120747,-0.023912362754345]],[[0.12098894268274,-0.0057909577153623,-0.031395301222801],[-0.021244831383228,0.035207983106375,-0.079147063195705],[0.088118813931942,0.065991699695587,0.075636669993401]],[[0.13218379020691,-0.079494595527649,0.041107032448053],[-0.0060295169241726,0.093137972056866,0.071129985153675],[-0.095979429781437,0.10036216676235,-0.073525317013264]],[[-0.02747836150229,0.074059210717678,0.040300942957401],[-0.055181372910738,-0.041473291814327,0.040145274251699],[0.10435853898525,-0.19299456477165,0.093698307871819]],[[-0.00054781557992101,-0.10224787890911,-0.19784216582775],[0.055535160005093,-0.011957702226937,-0.024596462026238],[0.011531857773662,0.04807922616601,-0.014076239429414]],[[-0.081544756889343,-0.015894807875156,0.055365297943354],[0.0062952199950814,0.14321926236153,0.019595060497522],[0.022155484184623,0.20205254852772,-0.099236525595188]],[[-0.022312356159091,-0.046074826270342,-0.139095723629],[0.045101244002581,-0.071234986186028,-0.11401063203812],[0.056892663240433,-0.084094643592834,-0.14298133552074]],[[-0.31375023722649,0.040616158396006,0.00059078738559037],[-0.12668681144714,0.16034322977066,0.11148092895746],[-0.16230030357838,-0.08052621781826,-0.11037062853575]],[[0.097132422029972,-0.093386918306351,-0.0032738589216024],[-0.15097434818745,-0.049327664077282,-0.057359978556633],[0.075110532343388,0.045410118997097,-0.10295061767101]],[[0.069844745099545,0.022277744486928,-0.079505667090416],[-0.012360908091068,-0.06631975620985,0.0065244911238551],[0.011453529819846,-0.079909399151802,0.021939937025309]],[[-0.020845400169492,-0.037371683865786,-0.0047816927544773],[0.017544716596603,-0.052984826266766,-0.032751880586147],[0.057590998709202,-0.078775674104691,-0.036644820123911]],[[0.085593953728676,0.09059102088213,0.069206103682518],[-0.046141680330038,-0.056255824863911,0.095163747668266],[0.14895118772984,0.036039590835571,-0.10445991158485]],[[0.058961059898138,0.070855304598808,-0.030277419835329],[-0.0033909361809492,-0.017424935474992,0.0048568146303296],[-0.016089407727122,0.042537521570921,0.040147956460714]],[[-0.045564539730549,-0.054168779402971,-0.051890190690756],[-0.076664708554745,-0.053465694189072,0.12261120975018],[0.0093675898388028,-0.11112193018198,0.081888042390347]]],[[[0.039385840296745,-0.050619393587112,0.02923814766109],[-0.020056091248989,-0.05784210935235,0.0080689517781138],[-0.013051957823336,0.0064069163054228,0.0019664342980832]],[[-0.035114720463753,0.067822523415089,0.069860354065895],[-0.1116848513484,-0.074793986976147,-0.025611212477088],[-0.036750454455614,-0.095383986830711,0.26157727837563]],[[-0.030178740620613,0.049129657447338,-0.027377255260944],[-0.014328272081912,-0.10690969228745,-0.065544135868549],[0.077305346727371,0.018316024914384,-0.073805578052998]],[[-0.062533780932426,0.15926536917686,-0.24954091012478],[-0.041036210954189,0.17263177037239,0.046636171638966],[-0.053046088665724,-0.055144928395748,0.071526847779751]],[[-0.018262252211571,-0.06737907230854,-0.026606595143676],[-0.025922443717718,0.039022129029036,-0.058130938559771],[-0.0090609565377235,0.077557697892189,-0.20231162011623]],[[-0.012907502241433,0.036003727465868,-0.12662044167519],[-0.0061297616921365,0.17844574153423,0.0092978132888675],[-0.014883383177221,0.1255156993866,-0.12623775005341]],[[0.028334442526102,-0.11395215243101,-0.0072298580780625],[-0.01707180775702,0.02032064832747,0.13524377346039],[0.048370156437159,0.1448527276516,-0.030193565413356]],[[0.15671101212502,0.05136152356863,-0.018649023026228],[-0.017225069925189,-0.00080619688378647,0.083401933312416],[0.053992800414562,0.098545096814632,0.095123067498207]],[[0.022417288273573,0.003289194079116,0.0053225397132337],[-0.087177015841007,-0.015942538157105,-0.020753931254148],[0.034659754484892,-0.0084401965141296,-0.023069152608514]],[[-9.0630339400377e-05,-0.00013114549801685,-0.1450265198946],[-0.027906192466617,0.0061032683588564,0.026995006948709],[0.024731235578656,-0.029928099364042,0.01282514911145]],[[0.072405621409416,0.15666505694389,0.024141745641828],[0.073103815317154,0.10684408992529,-0.029549384489655],[0.0095246285200119,-0.16132989525795,-0.22057417035103]],[[0.05565070360899,-0.021317470818758,-0.027308337390423],[-0.090214319527149,-0.080660790205002,0.073009446263313],[0.021613266319036,0.049639791250229,0.032242905348539]],[[-0.047804683446884,0.076793596148491,0.011305856518447],[-0.17708721756935,0.091319158673286,0.061563938856125],[-0.030595641583204,0.16746953129768,-0.042898327112198]],[[0.061898902058601,-0.070284992456436,0.11063597351313],[-0.18948778510094,-0.12497471272945,0.043243706226349],[0.00097418786026537,-0.00066739175235853,0.018841875717044]],[[-0.024269659072161,0.042331993579865,-0.074471555650234],[-0.025193989276886,-0.12652823328972,0.10541841387749],[0.041874125599861,0.063357792794704,-0.082167759537697]],[[-0.1251357793808,0.056207101792097,-0.14271990954876],[0.031429007649422,0.059723634272814,-0.10031247884035],[-0.047084704041481,0.051937021315098,-0.1187454983592]],[[0.0038499650545418,-0.03149002417922,-0.15316960215569],[0.049242105334997,-0.057200409471989,-0.071603514254093],[-0.016944309696555,0.17023393511772,-0.065422303974628]],[[0.050889767706394,0.020601216703653,-0.023299969732761],[0.066407330334187,0.041307121515274,-0.063446454703808],[-0.080313973128796,0.05027274787426,-0.092537350952625]],[[0.07242838293314,-0.011367888189852,0.0058698961511254],[-0.020027663558722,-0.0012849615886807,0.18674154579639],[0.070723995566368,-0.029862338677049,0.011618168093264]],[[0.056984197348356,0.12456814199686,-0.1350379884243],[-0.039247624576092,0.03791930526495,0.042038694024086],[0.14341494441032,0.091365076601505,-0.041607722640038]],[[0.094375029206276,-0.17408549785614,0.037093196064234],[0.016171334311366,0.072725638747215,0.037169601768255],[-0.027174390852451,-0.054441276937723,0.052462089806795]],[[-0.0048506059683859,-0.10260141640902,0.0071830786764622],[-0.19557942450047,-0.071416042745113,-0.15499909222126],[-0.16920271515846,0.081503510475159,0.041683096438646]],[[-0.027588464319706,0.070030361413956,-0.049280762672424],[-0.093218632042408,0.081606402993202,-0.0031165748368949],[-0.080220773816109,-0.10404068976641,0.054962769150734]],[[-0.018760930746794,-0.029210679233074,0.10117910057306],[-0.024377889931202,-0.080292716622353,0.10695879906416],[-0.030657254159451,-0.17379160225391,-0.027712950482965]],[[0.083743803203106,0.13214865326881,0.0006244812393561],[-0.13110674917698,-0.059734914451838,0.037222646176815],[-0.070322878658772,-0.0058587924577296,0.027671236544847]],[[-0.016007259488106,-0.074307255446911,-0.032189685851336],[0.014309901744127,-0.033824488520622,0.087740369141102],[0.014633098617196,-0.020620688796043,0.095439910888672]],[[-0.0098627218976617,0.056657694280148,0.03882584348321],[0.0079843904823065,-0.0070862248539925,0.06780282407999],[-0.13340811431408,0.022926120087504,-0.082897126674652]],[[0.021532559767365,0.027191322296858,-0.067448750138283],[0.13195019960403,0.01337256282568,0.12729804217815],[-0.047468949109316,0.063972622156143,-0.048089258372784]],[[-0.082661457359791,-0.022348664700985,0.17047762870789],[-0.012206237763166,-0.10503786802292,-0.014290149323642],[0.12994033098221,-0.22219783067703,-0.03354012593627]],[[0.059876758605242,0.079023525118828,0.096842683851719],[0.029121851548553,0.017900943756104,0.043442767113447],[-0.050223533064127,-0.05076589807868,-0.015399255789816]],[[0.025926560163498,-0.043768230825663,0.10662101954222],[-0.01331284083426,0.024153627455235,0.0018400219269097],[0.14623089134693,0.055912595242262,0.1157930418849]],[[0.0026009036228061,0.022238990291953,0.20427185297012],[-0.086863085627556,-0.19013994932175,0.21094672381878],[0.16888223588467,-0.19773259758949,0.080677971243858]],[[-0.078969083726406,0.10559035092592,0.18760873377323],[-0.15844659507275,-0.083448931574821,0.040359795093536],[-0.065786719322205,0.025135837495327,0.12441235780716]],[[-0.059383533895016,-0.035207729786634,-0.011294959113002],[-0.0075817271135747,-0.063800625503063,-0.03941835463047],[-0.12595275044441,0.080566383898258,-0.052173990756273]],[[-0.043610334396362,0.13413290679455,-0.0048043779097497],[-0.057183630764484,0.10659318417311,0.10902588069439],[-0.12793643772602,-0.024757351726294,0.093880295753479]],[[0.081701263785362,0.067222699522972,0.17740178108215],[0.040761642158031,0.086251944303513,0.030843896791339],[-0.039432931691408,-0.0055762543343008,0.01978669129312]],[[-0.11968506872654,0.013695997186005,0.11304531991482],[-0.1233684271574,0.027565145865083,-0.0046670823357999],[0.070267595350742,-0.11949587613344,-0.11148399859667]],[[-0.095051407814026,0.031046882271767,0.027044028043747],[0.15652838349342,-0.0089771896600723,-0.076872795820236],[0.22056061029434,-0.14369215071201,0.080242969095707]],[[0.0050634234212339,0.14442911744118,-0.02811080776155],[-0.055762555450201,0.056406781077385,-0.24578602612019],[-0.021870927885175,0.085995517671108,-0.16710828244686]],[[-0.025467710569501,0.15479503571987,0.065207675099373],[-0.071563690900803,-0.005631766282022,-0.031648021191359],[0.12835599482059,0.022499481216073,-0.070778988301754]],[[-0.039710786193609,0.071959100663662,0.26689559221268],[-0.060063205659389,-0.023588247597218,0.087896712124348],[-0.032321684062481,0.1142927184701,0.018696466460824]],[[-0.15911085903645,-0.004884063731879,0.25227361917496],[0.132558375597,-0.17566908895969,0.19210164248943],[0.13689625263214,-0.053604271262884,0.20578642189503]],[[0.072890006005764,0.048340614885092,0.019320951774716],[0.075068548321724,-0.070178337395191,-0.030972162261605],[0.14515739679337,-0.1055077239871,-0.081482537090778]],[[0.059933770447969,-0.035984952002764,-0.058784533292055],[-0.074036531150341,0.096269011497498,-0.016170207411051],[0.037677116692066,-0.04382798075676,0.075281418859959]],[[0.044941730797291,-0.032287131994963,0.080482415854931],[0.045664116740227,0.032939963042736,0.16677755117416],[0.061011746525764,-0.026546388864517,0.11883940547705]],[[-0.017953082919121,0.10275742411613,0.11568228900433],[0.071905791759491,0.047556418925524,0.001222932129167],[-0.032412864267826,-0.0084711471572518,-0.011776883155107]],[[0.19456012547016,-0.23990680277348,-0.12049380689859],[0.14738114178181,-0.026957964524627,-0.012154629454017],[0.053805857896805,-0.011612862348557,-0.017545662820339]],[[-0.066734910011292,-0.13129748404026,-0.020420605316758],[-0.092850767076015,0.033355969935656,0.06804096698761],[0.076793916523457,0.04959549382329,0.059805270284414]],[[0.11665330827236,-0.16769698262215,0.16182033717632],[0.035731144249439,-0.26976862549782,0.29475513100624],[-0.004388471134007,-0.11339861899614,-0.027352940291166]],[[-0.053713046014309,-0.23793493211269,0.088571600615978],[0.046905044466257,-0.035072360187769,0.12382591515779],[-0.045498035848141,-0.027071092277765,-0.030522625893354]],[[-0.045220095664263,0.074054151773453,-0.085114844143391],[-0.0054799346253276,0.14201410114765,-0.10487885028124],[-0.069927431643009,-0.054093137383461,0.056769419461489]],[[-0.039390407502651,0.018018474802375,0.12806230783463],[0.0093194413930178,-0.10923397541046,0.14104703068733],[0.044569592922926,0.051325216889381,-0.17963838577271]],[[0.054049640893936,-0.16230416297913,-0.0097455410286784],[0.045417424291372,-0.018873240798712,-0.041684225201607],[0.17377741634846,-0.17330080270767,-0.0058474051766098]],[[0.069152437150478,0.051464039832354,-0.11986930668354],[0.095955535769463,0.10923255980015,-0.034276962280273],[-0.011556233279407,0.033448480069637,0.035510797053576]],[[0.033011227846146,-0.25011017918587,-0.088257648050785],[0.062545619904995,-0.2340804040432,0.0060091549530625],[0.05588598549366,-0.13144455850124,0.1478958427906]],[[0.008787258528173,-0.034943200647831,0.19662868976593],[0.044448386877775,-0.014420621097088,0.14241209626198],[-0.036719378083944,-0.0030247531831264,0.068417906761169]],[[-0.038670253008604,0.025402734056115,0.13805773854256],[-0.018798427656293,-0.15455676615238,0.19294621050358],[0.0078573198989034,-0.028574697673321,0.04100052267313]],[[0.015889225527644,-0.049910258501768,-0.10343349725008],[0.086584374308586,-0.063929744064808,0.03238132968545],[-0.025389511138201,0.035203646868467,0.15831242501736]],[[-0.04636387526989,0.10137689858675,-0.010364701971412],[0.068996258080006,0.14072816073895,-0.026758784428239],[-0.011655081994832,0.044471554458141,-0.0084527703002095]],[[-0.022371090948582,4.3651511077769e-05,-0.13442997634411],[0.016116438433528,0.0054404158145189,-0.058234427124262],[0.099912717938423,0.00376215018332,-7.6264499512035e-05]],[[-0.11302510648966,-0.083465211093426,0.13676643371582],[0.14207921922207,0.0042824423871934,0.090016409754753],[-0.12373401969671,-0.072030566632748,-0.017844947054982]],[[-0.010261376388371,0.039163284003735,-0.052796687930822],[0.21851831674576,0.062480896711349,0.0049989223480225],[-0.050917651504278,0.0017546004382893,-0.24312181770802]],[[-0.075694121420383,-0.052668433636427,-0.013411650434136],[-0.030309813097119,-0.012278729118407,-0.021330635994673],[-0.10001093894243,-0.11505802720785,-0.047244541347027]],[[-0.044779032468796,-0.067554950714111,-0.13815747201443],[0.00094797014025971,0.037292823195457,-0.12294624745846],[-0.011209378018975,-0.012528612278402,-0.19732150435448]]],[[[-0.122658893466,0.077696315944195,-0.053565252572298],[-0.16796354949474,-0.021499983966351,0.13695591688156],[-0.20856641232967,0.14885747432709,-0.1983444839716]],[[0.055541731417179,0.23060508072376,0.022065795958042],[0.094801120460033,0.092668294906616,-0.086427479982376],[0.038338262587786,0.027307858690619,-0.11355751007795]],[[-0.024131968617439,0.041607476770878,0.049444697797298],[0.060144584625959,0.0047292457893491,-0.05916541069746],[0.030860226601362,0.065663442015648,0.077194802463055]],[[-0.12829095125198,-0.058558717370033,0.078793868422508],[-0.031345088034868,-0.092958532273769,0.12605726718903],[-0.10402674227953,-0.10756348073483,0.11897141486406]],[[0.0030127484351397,-0.0045988671481609,0.0080571547150612],[0.023309502750635,-0.041038379073143,0.01570912078023],[0.0023629404604435,-0.020396282896399,0.0050420383922756]],[[0.09117216616869,-0.014397605322301,0.00081583316205069],[-0.06125920265913,-0.028215521946549,0.008729494176805],[0.047591134905815,-0.039393626153469,-0.059414189308882]],[[-0.019933987408876,0.019879162311554,-0.059011075645685],[-0.039619848132133,0.074080221354961,-0.054241992533207],[0.1302919536829,0.18172465264797,-0.032591570168734]],[[-0.086319096386433,0.017382504418492,-0.013899291865528],[0.020757470279932,0.099998250603676,-0.076402738690376],[-0.097984150052071,0.050859991461039,-0.028479594737291]],[[-0.11319875717163,0.062246061861515,0.052143223583698],[-0.025006966665387,0.019842265173793,0.10509119927883],[-0.12387654930353,0.069464735686779,0.0016026569064707]],[[0.0080845961347222,0.026962023228407,0.093669153749943],[-0.11068210750818,0.084279157221317,-0.025985399261117],[-0.10855056345463,0.096531085669994,0.042115151882172]],[[0.15552239120007,-0.094785518944263,0.12907129526138],[0.060481809079647,-0.12535440921783,0.05909002199769],[-0.029048217460513,0.026213547214866,-0.10119526088238]],[[-0.14999167621136,-0.089002072811127,0.077379681169987],[-0.034372415393591,0.076345212757587,-0.10453227907419],[-0.09874089807272,0.022464020177722,0.16351661086082]],[[-0.045150987803936,0.039968516677618,-0.083155460655689],[-0.062505729496479,-0.013801973313093,-0.065334379673004],[0.035824608057737,0.20594969391823,0.13131462037563]],[[-0.06366939842701,0.016790419816971,0.045611150562763],[0.034220319241285,-0.01102835778147,0.043864086270332],[0.12485515326262,-0.07278947532177,0.0070655490271747]],[[-0.042886469513178,-0.077098667621613,-0.18301366269588],[-0.024739863350987,-0.093576997518539,-0.0043550957925618],[0.096543610095978,0.0098969135433435,0.15324735641479]],[[-0.042471595108509,-0.14618428051472,0.052333354949951],[0.006664683111012,-0.23637449741364,0.036792371422052],[0.089279390871525,0.010142988525331,-0.077392213046551]],[[-0.11145278811455,-0.093089163303375,-0.079078271985054],[0.092129617929459,-0.020653191953897,-0.022912628948689],[0.043506782501936,0.076636485755444,0.049423322081566]],[[-0.035454165190458,0.027591556310654,0.13028980791569],[-0.0080356439575553,0.069693341851234,0.05152390152216],[0.027615452185273,0.04046368598938,0.05984840169549]],[[0.044310044497252,0.061046537011862,0.047950740903616],[-0.05882839858532,0.044338673353195,0.056694477796555],[-0.032269537448883,-0.0083962613716722,0.13216862082481]],[[0.0088530909270048,0.032359294593334,0.031671173870564],[0.065330244600773,-0.0053930785506964,-0.064241357147694],[-0.077427178621292,0.11598391085863,0.13835366070271]],[[0.013110264204443,-0.059235438704491,-0.076803341507912],[-0.056740205734968,0.03496964648366,-0.095684222877026],[0.024830354377627,-0.00030520436121151,-0.16101990640163]],[[0.13699512183666,-0.010829094797373,-0.010222086682916],[-0.00052801379933953,0.092940531671047,-0.16805475950241],[0.042981553822756,-0.040556438267231,0.084080219268799]],[[-0.17114089429379,-0.12622085213661,-0.0092161102220416],[-0.027073390781879,-0.10676657408476,0.087776206433773],[-0.031666524708271,0.030840715393424,0.068490065634251]],[[-0.0062872124835849,0.045958504080772,-0.024023292586207],[-0.082313939929008,-0.034589007496834,-0.12097270041704],[0.0032799956388772,0.0056365360505879,-0.030088426545262]],[[-0.13468445837498,0.08184751868248,0.044835329055786],[0.055395640432835,-0.035173561424017,-0.19366437196732],[0.017085367813706,-0.075166806578636,-0.14018708467484]],[[0.049666341394186,0.094277605414391,0.13014580309391],[0.011325711384416,0.016483910381794,-0.097625017166138],[-0.080718792974949,0.052335232496262,0.066407538950443]],[[-0.10061467438936,0.10621399432421,0.004403168335557],[-0.014026552438736,0.031497221440077,-0.11025684326887],[0.011491727083921,0.019961440935731,0.091861948370934]],[[-0.018432382494211,-0.088043600320816,0.0011042372789234],[0.067350074648857,0.028808193281293,0.019971499219537],[0.049205917865038,-0.059377312660217,-0.1057538241148]],[[0.039240404963493,-0.052570756524801,0.022696455940604],[-0.057432115077972,-0.058251582086086,0.031487349420786],[-0.13849821686745,-0.12803003191948,-0.10038527101278]],[[0.00094144931063056,-0.080720171332359,-0.0085137635469437],[-0.0079333828762174,-0.047899086028337,0.04342657327652],[-0.0026806024834514,0.050004210323095,0.011655905283988]],[[-0.005391369573772,-0.11478586494923,-0.31871098279953],[-0.015297289937735,-0.034382447600365,0.00022182370594237],[-0.061560202389956,0.085207298398018,-0.018432883545756]],[[0.11106996238232,-0.15040792524815,-0.044777452945709],[0.014719991013408,-0.06807903945446,0.018969722092152],[-0.038805641233921,-0.092716090381145,0.066087566316128]],[[0.056062482297421,0.057675804942846,0.19288681447506],[-0.056479543447495,0.022322120144963,0.099871434271336],[-0.12743711471558,0.077381521463394,0.13096635043621]],[[0.019927036017179,0.043446626514196,0.080702163279057],[-0.028681123629212,0.031153541058302,0.035043962299824],[-0.031494848430157,0.10554499924183,0.026516478508711]],[[0.083325833082199,0.090443767607212,-0.013431824743748],[0.073974132537842,-0.10335134714842,0.16695727407932],[-0.035253848880529,0.0077321366406977,0.011402880772948]],[[-0.14396387338638,0.030200412496924,0.023011159151793],[-0.011903173290193,-0.026116281747818,-0.048781760036945],[-0.0035030769649893,0.011544965207577,-0.1749195754528]],[[-0.031399689614773,-0.038068607449532,0.039859443902969],[-0.090044647455215,0.0032647938933223,-0.077353201806545],[0.097610704600811,-0.021554028615355,-0.1221885830164]],[[0.071985252201557,-0.069929651916027,0.27395036816597],[0.0087309321388602,0.12787732481956,-0.028990782797337],[-0.25071081519127,-0.011747289448977,0.057551182806492]],[[0.08493147790432,0.062118388712406,-0.2122682929039],[-0.019782420247793,-0.1310271024704,-0.036965291947126],[-0.1602857708931,0.021118039265275,-0.0068115838803351]],[[-0.049058381468058,-0.20067735016346,0.04058450832963],[-0.01511599868536,0.077301882207394,0.04336978495121],[0.0050871665589511,-0.045961584895849,0.035666771233082]],[[-0.023523842915893,-0.051663473248482,0.12643010914326],[0.069786362349987,-0.09196825325489,-0.087005458772182],[-0.041176747530699,-0.040452241897583,-0.083804562687874]],[[0.04260915517807,-0.10433266311884,-0.11532915383577],[-0.00064006587490439,-0.12662020325661,0.032078068703413],[-0.030502252280712,-0.17679491639137,0.018292857334018]],[[-0.12041154503822,-0.049584317952394,0.072190582752228],[-0.26310876011848,0.00048245585639961,0.013452195562422],[-0.019832653924823,-0.022750116884708,-0.22511704266071]],[[0.027737325057387,0.081929087638855,0.034955691546202],[0.058042790740728,0.043292108923197,-0.12730750441551],[0.040258191525936,-0.092386484146118,-0.12363804876804]],[[-0.14262552559376,-0.046589054167271,0.025781806558371],[-0.10274881124496,0.069330506026745,0.0058396439999342],[-0.044222988188267,-0.0049702748656273,0.10390828549862]],[[0.0026280800811946,-0.13723620772362,-0.068976543843746],[-0.034220650792122,0.055945232510567,0.015293734148145],[0.012128362432122,0.037364047020674,-0.0074449516832829]],[[0.10664021968842,-0.052805837243795,-0.089009024202824],[0.010276723653078,-0.10762069374323,0.03027331084013],[0.072855331003666,-0.030322723090649,-0.053115256130695]],[[0.016861082985997,0.022543784230947,0.048264387995005],[-0.13301503658295,0.0055134696885943,0.041173290461302],[0.038395337760448,-0.048664700239897,-0.00042145082261413]],[[0.050366178154945,-0.049017451703548,-0.008507989346981],[0.052252724766731,0.022118974477053,-0.076976999640465],[-0.084139354526997,0.13655523955822,0.21556760370731]],[[0.006836025044322,0.033114101737738,-0.027196709066629],[-0.057458527386189,0.032665606588125,0.023364951834083],[0.008055710233748,-0.026333622634411,0.03235762193799]],[[-0.015919204801321,-0.080007128417492,-0.14286652207375],[0.11689443141222,-0.029929852113128,0.0099371857941151],[-0.0036069096531719,-0.026834363117814,0.010032739490271]],[[-0.045227136462927,0.016672287136316,-0.022402031347156],[-0.044810455292463,-0.0048074964433908,-0.024726873263717],[-0.019101157784462,0.014042767696083,-0.12501250207424]],[[0.034450516104698,0.089560709893703,0.060446437448263],[0.010402850806713,0.011215008795261,0.10855712741613],[0.11806230247021,0.044938545674086,0.049661606550217]],[[0.047901172190905,-0.045433975756168,0.019559051841497],[0.060473315417767,-0.055943891406059,0.040009722113609],[0.10190763324499,-0.021732611581683,-0.0088879968971014]],[[0.0029895894695073,0.2111689299345,0.060765188187361],[0.0074688461609185,0.049844492226839,0.069553881883621],[-0.066866241395473,-0.17440405488014,0.014920144341886]],[[-0.0086159324273467,0.021528614684939,0.087134219706059],[0.038088969886303,-0.027362421154976,0.036379113793373],[-0.075096361339092,-0.0024818705860525,0.095179446041584]],[[-0.0045140855945647,0.011617352254689,0.074785739183426],[-0.012882040813565,-0.091498725116253,0.0080081131309271],[0.0013734947424382,-0.1219787299633,0.024305665865541]],[[0.018812974914908,0.0026772855781019,-0.13050955533981],[0.13017195463181,0.019681943580508,-0.17013785243034],[-0.095520995557308,0.024808809161186,0.069443576037884]],[[-0.12010323256254,0.0022380240261555,-0.0085048116743565],[-0.028118664398789,-0.0033406906295568,0.02714884839952],[0.014262606389821,-0.013849545270205,-0.070981174707413]],[[0.11258347332478,-0.011503910645843,-0.045936591923237],[0.063961140811443,-0.091605700552464,-0.03249067813158],[-0.053985338658094,-0.033888407051563,-0.085423246026039]],[[-0.050697453320026,0.021587567403913,0.11944428086281],[-0.1016968563199,-0.0040035652928054,-0.18422523140907],[-0.04744266346097,-0.037484180182219,-0.047148238867521]],[[-0.044230487197638,0.10222765058279,0.064761847257614],[0.13588829338551,-0.014715558849275,-0.017168171703815],[0.057873632758856,0.054687470197678,-0.090020380914211]],[[0.018018880859017,0.056043017655611,-0.080467909574509],[0.068250060081482,0.016217280179262,-0.032229326665401],[-0.18264144659042,-0.0049470337107778,0.044512130320072]],[[-0.052657645195723,-0.067987039685249,-0.012622318230569],[0.09123283624649,-0.0016132218297571,-0.085934303700924],[0.15479138493538,0.0013641424011439,0.11260274797678]]],[[[0.068411186337471,-0.16135726869106,0.029295472428203],[-0.061298262327909,-0.11061469465494,0.0022817589342594],[-0.15057083964348,0.24061746895313,-0.083214215934277]],[[0.012841491028666,0.058457419276237,-0.17456069588661],[-0.0054818778298795,0.034885674715042,-0.0643021017313],[-0.038674160838127,-0.11100228130817,0.058132566511631]],[[0.0029094847850502,0.054856646806002,0.16976721584797],[-0.16300578415394,-0.05186678096652,-0.10484924912453],[0.0082814302295446,0.13071711361408,0.0084884613752365]],[[-0.10339672118425,-0.036393951624632,-0.10140486806631],[-0.071986176073551,-0.080435998737812,-0.071300536394119],[0.14565329253674,0.059107553213835,0.18113707005978]],[[-0.00032520812237635,0.076543182134628,-0.10655706375837],[-0.13320252299309,-0.015122540295124,0.13085447251797],[-0.014228768646717,-0.16469779610634,-0.12092954665422]],[[0.13043826818466,-0.058693114668131,-0.1202359572053],[-0.080792173743248,-0.14083354175091,0.019535884261131],[0.088656455278397,-0.28012490272522,-0.016568826511502]],[[-0.04994298890233,-0.11083391308784,0.0034229708835483],[-0.10808026790619,0.019094904884696,-0.06899156421423],[-0.14417007565498,-0.19320246577263,-0.032051354646683]],[[0.0054584029130638,0.14768752455711,0.097321562469006],[-0.048513770103455,0.087058506906033,-0.07352090626955],[0.13551451265812,0.093567788600922,-0.074127674102783]],[[-0.0080072823911905,-0.049623899161816,0.083429090678692],[-0.025929657742381,-0.068471051752567,0.10955889523029],[-0.041526842862368,0.10509978979826,-0.092027872800827]],[[-0.062754981219769,-0.089535690844059,0.093328915536404],[-0.019771255552769,-0.11803115159273,0.035198736935854],[-0.19478034973145,0.06069277971983,0.17953366041183]],[[0.0020964362192899,0.014395849779248,0.17591267824173],[0.042082153260708,-0.12408592551947,-0.072632499039173],[0.17027287185192,-0.062505692243576,-0.16836489737034]],[[-0.011723277159035,-0.077255554497242,0.025038762018085],[0.019157759845257,-0.055266488343477,0.1409514695406],[0.13935245573521,-0.07367517799139,-0.15644143521786]],[[0.015270160511136,-0.036312278360128,0.083507753908634],[0.068364590406418,-0.060244332998991,-0.10798098146915],[0.041135262697935,-0.016931051388383,-0.12115480005741]],[[0.085574127733707,0.093079298734665,-0.10818179696798],[-0.05176554992795,-0.0056383446790278,-0.094974681735039],[0.035849805921316,-0.0031169990543276,0.046002849936485]],[[0.03651911765337,-0.026995247229934,-0.030128411948681],[0.077934622764587,0.0028652863111347,-0.011715708300471],[-0.062117103487253,0.075456872582436,-0.017253339290619]],[[-0.024195389822125,-0.00099591247271746,-0.10230806469917],[-0.055611621588469,-0.17613427340984,-0.089538052678108],[0.088879734277725,0.044971529394388,-0.030908850952983]],[[-0.10816609859467,-0.05200257897377,0.059987157583237],[-0.023196414113045,-0.055015042424202,-0.15995894372463],[0.053025618195534,-0.032479889690876,-0.011770586483181]],[[-0.015948705375195,0.053457424044609,-0.078488543629646],[0.23252438008785,0.15621078014374,-0.095542289316654],[-0.19556346535683,-0.10065333545208,-0.18939545750618]],[[0.013716013170779,0.034312169998884,-0.051128230988979],[0.0096969660371542,-0.013626194559038,0.070077389478683],[-0.078092902898788,-0.0025876997970045,0.11171145737171]],[[-0.11929628998041,-0.088240787386894,-0.17015825212002],[0.007240486331284,0.0030096676200628,0.02993974648416],[0.10095922648907,-0.087121181190014,0.0084384195506573]],[[-0.098461352288723,-0.19223189353943,-0.13119170069695],[-0.03477343544364,0.0045397570356727,0.12981137633324],[-0.092136219143867,-0.07160072773695,-0.096785195171833]],[[-0.022500667721033,-0.19781218469143,-0.17550182342529],[-0.030991023406386,-0.086320303380489,-0.099595732986927],[-0.2687354683876,0.012237004004419,-0.06927627325058]],[[-0.14219503104687,-0.17550379037857,-0.13255526125431],[-0.13279512524605,0.063785269856453,-0.042886257171631],[0.060280784964561,-0.0040345122106373,0.02042131498456]],[[-0.20355623960495,-0.16888409852982,-0.10478632152081],[-0.21748849749565,-0.22825038433075,0.059309769421816],[-0.33540570735931,0.0013751408550888,-0.0049297618679702]],[[0.058774534612894,-0.27330586314201,-0.087094210088253],[0.024707922711968,-0.02600540407002,-0.039908595383167],[0.091325998306274,-0.074717134237289,-0.010348252952099]],[[-0.075562052428722,-0.15207776427269,-0.11289945989847],[-0.0036196515429765,0.022991651669145,0.13865248858929],[-0.034564413130283,-0.061303146183491,-0.032568242400885]],[[0.079280667006969,0.040368210524321,-0.16167148947716],[-0.10427256673574,0.016346737742424,-0.0031284338328987],[-0.087010264396667,0.09279578179121,-0.16804592311382]],[[0.019843881949782,0.0089287795126438,-0.058887392282486],[-0.065612383186817,0.07708727568388,-0.0027668385300785],[-0.027345482259989,-0.091778017580509,-0.13880138099194]],[[-0.083727955818176,0.025343552231789,0.16015742719173],[-0.17313896119595,-0.10245330631733,-0.085017047822475],[0.092633806169033,0.041655629873276,0.02027633972466]],[[-0.024876590818167,0.10656204074621,-0.030805483460426],[-0.14181771874428,-0.034672498703003,0.038024865090847],[-0.11466933041811,-0.025035051628947,0.050054453313351]],[[0.026392372325063,0.052806165069342,0.091906823217869],[-0.0049391868524253,0.083630636334419,-0.0033779318910092],[-0.2175979167223,-0.026275197044015,0.032242920249701]],[[0.12839916348457,-0.1427004635334,-0.047252923250198],[0.12938870489597,-0.002521947491914,-0.060737639665604],[0.018432250246406,-0.12626059353352,0.10914611816406]],[[0.011284866370261,0.060420986264944,0.024570232257247],[-0.030664965510368,-0.19238588213921,-0.00058549043023959],[-0.078889653086662,-0.1340966373682,-0.07339034974575]],[[0.0029642896261066,-0.015261723659933,-0.040495544672012],[0.080132000148296,-0.0061800004914403,0.0083185788244009],[0.16712066531181,0.084487788379192,0.10006432980299]],[[-0.14039845764637,-0.051771450787783,-0.084734432399273],[-0.17702789604664,-0.15401934087276,0.10455714166164],[0.018644085153937,-0.018533479422331,0.016782216727734]],[[0.016344603151083,-0.047145761549473,-0.03087686188519],[0.18145243823528,0.039090547710657,0.013263494707644],[-0.042841456830502,-0.095856532454491,-0.17098660767078]],[[-0.088720925152302,-0.086792513728142,0.045070890337229],[0.0015109747182578,-0.0017565198941156,-0.04085636138916],[-0.079041235148907,0.028839848935604,0.032076898962259]],[[0.14226515591145,0.058602187782526,-0.066115900874138],[0.046157039701939,0.020903883501887,-0.034621983766556],[-0.013443072326481,-0.048045352101326,0.16546548902988]],[[0.040451735258102,-0.035637721419334,0.048217765986919],[-0.014209100045264,0.0034444152843207,0.043714240193367],[-0.094443194568157,-0.05597135797143,-0.12268706411123]],[[0.023152021691203,-0.17244639992714,0.094644270837307],[0.0084761288017035,-0.014783524908125,0.076217226684093],[0.056205771863461,-0.027966950088739,0.057142097502947]],[[0.055728614330292,-0.15997670590878,-0.072945684194565],[-0.067651644349098,-0.063091367483139,-0.028754763305187],[0.03312923759222,-0.010441690683365,0.11043806374073]],[[0.052506450563669,0.016400899738073,0.045720685273409],[-0.029531888663769,-0.011171597987413,0.033261124044657],[0.026659632101655,0.048943869769573,-0.012864499352872]],[[0.079508416354656,0.060399007052183,0.0072043007239699],[-0.13154710829258,0.045752018690109,-0.12378331273794],[-0.10777523368597,0.044599805027246,0.16622839868069]],[[-0.037343613803387,-0.089981354773045,0.01972508430481],[0.037863079458475,0.028763771057129,-0.16295132040977],[0.044770494103432,0.055626410990953,0.11340624839067]],[[-0.048245839774609,0.28269681334496,0.068388193845749],[-0.024937285110354,-0.11491023004055,-0.097333773970604],[-0.082978583872318,-0.033011861145496,0.14667202532291]],[[0.079937562346458,-0.054896209388971,0.10182999074459],[-0.013291066512465,-0.07613430172205,0.068240724503994],[-0.023186957463622,0.0085476664826274,0.21771410107613]],[[-0.14346607029438,0.010606294497848,0.15845634043217],[-0.022220212966204,-0.010947117581964,0.075556568801403],[-0.21469151973724,-0.16673983633518,0.055936437100172]],[[0.07212620973587,-0.016406208276749,-0.038206804543734],[0.061378017067909,0.0086317053064704,-0.13502009212971],[0.024774823337793,0.11745617538691,-0.031371135264635]],[[0.040531266480684,0.040184713900089,0.20494900643826],[-0.11898376792669,-0.035239290446043,0.019627027213573],[-0.22601526975632,-0.19362135231495,-0.25515899062157]],[[-0.021697176620364,0.035530030727386,-0.0054145529866219],[-0.05989657714963,0.02530213072896,-0.025837631896138],[-0.023284651339054,0.054400559514761,-0.024436710402369]],[[-0.041995912790298,0.021652722731233,0.0032669177744538],[-0.0059867464005947,0.057353369891644,0.026487182825804],[-0.12161058187485,0.13964869081974,0.0040417429991066]],[[0.095618084073067,-0.057751372456551,0.02275319211185],[-0.081010863184929,-0.1821104735136,-0.17913524806499],[-0.075154863297939,0.010144157335162,0.097311429679394]],[[-0.17509457468987,0.11902321130037,0.071887671947479],[0.027228571474552,0.11832541227341,-0.13905689120293],[-0.014163797721267,0.027311963960528,0.087536878883839]],[[-0.063188001513481,-0.054295521229506,-0.14711906015873],[0.0084952404722571,-0.0013033226132393,0.079818584024906],[-0.05018686875701,-0.018490491434932,-0.14205925166607]],[[-0.0013582222163677,0.056354608386755,-0.091187432408333],[0.096949569880962,0.057930957525969,0.072979621589184],[-0.013279475271702,-0.028850750997663,0.14179164171219]],[[-0.044841647148132,-0.12815703451633,-0.068521752953529],[0.077557191252708,0.045385535806417,-0.040306158363819],[-0.0092787891626358,0.082906275987625,0.020449914038181]],[[-0.03007847443223,-0.016888258978724,-0.11380235105753],[0.022170240059495,0.012612901628017,-0.18426539003849],[-0.070106945931911,-0.047579750418663,-0.027407417073846]],[[0.005608563311398,0.10047072917223,0.0018707073759288],[0.05015592649579,0.0042393156327307,0.03679833561182],[-0.10455520451069,-0.3092987537384,-0.079534113407135]],[[-0.18705351650715,-0.062209069728851,0.0079430742189288],[-0.05169128999114,0.028162678703666,0.052476160228252],[-0.012552443891764,-0.017128691077232,0.099050484597683]],[[-0.034307666122913,-0.090980172157288,0.08537670224905],[0.14331609010696,-0.01924935169518,-0.038950301706791],[0.02065915800631,-0.10721811652184,-0.0036034723743796]],[[-0.063855186104774,-0.067569971084595,-0.074238814413548],[0.01483628153801,-0.076758868992329,0.062864050269127],[-0.030704826116562,-0.041483901441097,0.035168744623661]],[[-0.036983259022236,0.006628021132201,0.030363684520125],[0.048161301761866,-0.063304394483566,-0.0038593935314566],[-0.097445979714394,0.059658717364073,-0.14318786561489]],[[-0.07150287181139,-0.095000326633453,-0.095583282411098],[0.090261429548264,-0.035745244473219,-0.024152563884854],[0.11983082443476,0.092845857143402,-0.057332009077072]],[[0.15695737302303,-0.030170170590281,-0.051739644259214],[-0.034596111625433,-0.0067991781979799,0.062401592731476],[0.01461470592767,-0.014951713383198,-0.16087397933006]]],[[[0.11698935180902,-0.040962737053633,-0.060213275253773],[0.12199825048447,0.056145615875721,-0.0097829299047589],[0.028025666251779,0.042064990848303,0.076045803725719]],[[0.16162385046482,-0.031196303665638,0.049919746816158],[-0.19224926829338,0.0052344826981425,0.035520702600479],[0.20797806978226,0.010064154863358,-0.12513071298599]],[[-0.12242624163628,-0.14230398833752,-0.03092928044498],[-0.032068815082312,-0.18778762221336,0.051391746848822],[0.1535263210535,-0.15678757429123,0.12928965687752]],[[0.011454557999969,-0.048039991408587,-0.11323016881943],[0.037945490330458,0.0032030902802944,0.094143182039261],[0.036371186375618,0.012419966049492,0.18424001336098]],[[0.017512125894427,0.051877986639738,-0.05768084898591],[-0.011414876207709,-0.041687421500683,0.073738865554333],[-0.22481025755405,0.072933256626129,0.086055964231491]],[[-0.13147130608559,0.0025232769548893,0.11639358103275],[0.03253448754549,-0.13508512079716,0.049500156193972],[0.057931553572416,-0.2310758382082,0.042445991188288]],[[0.20281112194061,-0.11548021435738,0.12553419172764],[0.045286796987057,-0.12203924357891,0.0070148007944226],[-0.018757361918688,0.0048258537426591,0.049241874366999]],[[0.052198637276888,0.034819412976503,-0.0083313062787056],[-0.084514655172825,0.11998897045851,0.065332219004631],[0.026848496869206,0.013867292553186,-0.02114543877542]],[[0.1451116502285,0.0097111947834492,-0.069296397268772],[-0.070337347686291,-0.027481518685818,-0.0084640374407172],[0.028246823698282,-0.063308820128441,0.054723329842091]],[[-0.11958038061857,-0.15714046359062,-0.14094722270966],[-0.12950506806374,0.032691042870283,-0.023863561451435],[0.021036915481091,0.0086702685803175,0.014967978931963]],[[-0.015234015882015,-0.15395683050156,0.20278888940811],[0.038446053862572,0.09497094899416,-0.013945723883808],[-0.12589484453201,0.12523165345192,0.042759772390127]],[[-0.12939515709877,0.0061244778335094,-0.013461579568684],[0.030740944668651,0.0083266338333488,-0.21636243164539],[0.2226507216692,0.054423816502094,-0.029637221246958]],[[0.10099832713604,0.0090036951005459,-0.11242430657148],[0.081985779106617,0.023870529606938,0.10624783486128],[0.073388800024986,-0.0074488553218544,-0.0073859659023583]],[[-0.035866472870111,0.11465606838465,0.0110376002267],[-0.072587676346302,0.08477533608675,-0.05278293043375],[-0.12232007086277,0.033923778682947,0.024716464802623]],[[-0.12229682505131,-0.074931085109711,0.21999242901802],[-0.13875275850296,-0.0096984505653381,-0.016798697412014],[0.019938129931688,0.023139296099544,0.088845014572144]],[[-0.050823733210564,0.026252230629325,-0.0035537399817258],[0.1022031083703,0.07856659591198,-0.04786953702569],[0.081372357904911,-0.20652884244919,-0.0098227923735976]],[[0.11331357061863,-0.097353123128414,0.19550639390945],[-0.19255384802818,-0.069112323224545,-0.041101232171059],[-0.083669178187847,0.054622069001198,-0.045276559889317]],[[0.0065888562239707,-0.05352546274662,0.035922419279814],[0.044989865273237,0.013043428771198,-0.028500782325864],[-0.22870157659054,0.068895861506462,-0.054202571511269]],[[-0.13143095374107,0.027907146140933,0.086786612868309],[0.0042302361689508,-0.18341866135597,0.10035424679518],[-0.006626452319324,-0.050898976624012,0.18684974312782]],[[-0.20581576228142,-0.089206367731094,0.18406642973423],[-0.13316757977009,-0.059973247349262,-0.0013011341216043],[-0.025416791439056,0.068246737122536,-0.021584173664451]],[[-0.059310261160135,-0.037677723914385,-0.10858817398548],[0.001553637906909,0.12405205518007,-0.051277190446854],[0.17199125885963,-0.10312726348639,-0.11026760190725]],[[0.16096390783787,0.10091276466846,-0.11493225395679],[0.0029044223483652,-0.0041574006900191,0.0086633721366525],[0.18042621016502,-0.063673265278339,-0.051090899854898]],[[0.10246980935335,0.0023633649107069,-0.059826504439116],[0.068377703428268,0.087624497711658,-0.097191996872425],[-0.088675029575825,-0.16249617934227,-0.042305488139391]],[[0.059505362063646,-0.020967241376638,-0.18448248505592],[0.042705956846476,-0.075601428747177,-0.14707045257092],[0.11657382547855,-0.0022131621371955,-0.013974740169942]],[[0.015371988527477,0.094022266566753,-0.22747507691383],[-0.086833149194717,-0.01011623814702,0.12589301168919],[0.096190959215164,0.025624400004745,0.040755901485682]],[[0.11318022012711,-0.0505765452981,-0.19890755414963],[-0.22678890824318,-0.10401809215546,0.061473365873098],[0.026103042066097,-0.021379608660936,0.0037089334800839]],[[-0.090098299086094,0.056811347603798,0.0068184640258551],[0.10031341016293,-0.17219477891922,-0.043344505131245],[0.3124386370182,-0.10175295174122,0.027576893568039]],[[-0.11661756038666,0.077611543238163,0.10995361208916],[0.033296421170235,0.05122023448348,0.099961057305336],[0.035929828882217,-0.012054117396474,0.041916318237782]],[[0.012119567021728,-0.24270321428776,0.08857087790966],[0.24663582444191,0.0053764656186104,0.10575508326292],[0.060901429504156,0.1008177921176,0.043108034878969]],[[0.17245748639107,-0.069856159389019,-0.054001707583666],[0.085361480712891,-0.021664569154382,-0.0014966075541452],[0.096541374921799,-0.0035999962128699,-0.042650818824768]],[[-0.029390895739198,-0.059940557926893,-0.017990997061133],[0.054548047482967,0.052632201462984,-0.12164770811796],[0.13153916597366,0.09278666228056,-0.10884346067905]],[[-0.007524776738137,-0.044120907783508,-0.054246313869953],[-0.021284839138389,-0.069933764636517,0.10733217746019],[0.14404873549938,0.12402924895287,-0.10128908604383]],[[0.060902450233698,0.037136774510145,-0.026182074099779],[-0.090477950870991,-0.0017142350552604,0.084489591419697],[-0.031332816928625,0.064356103539467,-0.06589325517416]],[[-0.011791089549661,-0.042104110121727,0.048669092357159],[-0.0073199686594307,0.014039969071746,0.020332919433713],[0.074155203998089,-0.096047729253769,0.05514919385314]],[[0.085137195885181,0.05237876996398,-0.021592190489173],[0.057399716228247,-0.12119958549738,-0.15030027925968],[-0.013237811625004,-0.042706623673439,0.075461760163307]],[[-0.11138539016247,0.016198532655835,0.084403276443481],[-0.17963795363903,-0.015683971345425,-0.011036093346775],[-0.21196822822094,0.03263197094202,-0.11254712939262]],[[0.044781655073166,0.029785834252834,0.077841803431511],[-0.069637827575207,0.0035001870710403,-0.013025130145252],[0.072576425969601,-0.016389220952988,0.085966140031815]],[[0.06392053514719,0.070006556808949,-0.052647899836302],[-0.005474348552525,0.081897653639317,-0.12692430615425],[0.20589184761047,-0.039946228265762,0.097085483372211]],[[0.10446773469448,-0.10271629691124,-0.10436452180147],[-0.055059909820557,0.047375116497278,0.032565407454967],[0.14549854397774,-0.094186455011368,0.0396335311234]],[[-0.060946211218834,0.0034283094573766,0.11243402212858],[0.10566998273134,0.034848537296057,0.026969190686941],[-0.069379083812237,-0.12245162576437,0.027914982289076]],[[-0.094153851270676,0.032339878380299,0.072884015738964],[-0.089583002030849,-0.074168838560581,0.070394180715084],[-0.14585550129414,-0.072933070361614,-0.012875981628895]],[[-0.019062409177423,-0.048225689679384,-0.095205165445805],[0.059920746833086,-0.06542881578207,0.049458291381598],[0.20867384970188,0.097007617354393,0.10941751301289]],[[-0.0043908692896366,-0.10273341834545,0.069047257304192],[-0.099003098905087,0.029669228941202,-0.0091627910733223],[-0.065600238740444,-0.00089174788445234,0.17601133882999]],[[-0.023614853620529,0.0022278188262135,-0.02281759865582],[0.0048811319284141,-0.028975440189242,0.036094680428505],[0.0078033632598817,0.10939582437277,-0.0056981495581567]],[[0.037136144936085,0.026632403954864,-0.012106423266232],[-0.0081446543335915,0.087455213069916,-0.1743565350771],[0.13632716238499,0.043607696890831,-0.085010409355164]],[[0.064388148486614,-0.04696100205183,0.021728999912739],[0.077845945954323,0.033428359776735,-0.0062680654227734],[0.055101945996284,0.11353121697903,0.0047544911503792]],[[0.13860368728638,-0.0033354246988893,0.093670479953289],[-0.056797806173563,0.099650375545025,-0.13601294159889],[0.063248425722122,-0.0031422111205757,0.009867936372757]],[[-0.17753772437572,-0.01709015108645,-0.089692316949368],[0.098388373851776,0.083454310894012,-0.094651259481907],[-0.013112649321556,0.025839153677225,0.085382722318172]],[[0.099571496248245,-0.038688104599714,-0.19221743941307],[0.061807256191969,-0.15404772758484,-0.31526389718056],[0.11469390243292,0.14731684327126,-0.041664157062769]],[[-0.092067688703537,0.0078063625842333,-0.20521327853203],[-0.011207430623472,-0.067873559892178,0.023213198408484],[-0.038865622133017,0.019470259547234,-0.051590468734503]],[[-0.1064530313015,-0.044362455606461,0.10154793411493],[-0.14196196198463,-0.088739603757858,0.1028655692935],[0.044241659343243,0.050024539232254,0.083320215344429]],[[0.015970233827829,0.11187812685966,0.0069781555794179],[-0.12495205551386,0.015618291683495,-0.0239018201828],[-0.17238932847977,0.077345363795757,-0.19317206740379]],[[0.053715255111456,-0.0011391073931009,0.091874822974205],[-0.057720173150301,-0.036490775644779,0.06950044631958],[-0.14935612678528,0.038439989089966,-0.098309092223644]],[[-0.03189704194665,0.070244692265987,0.056386910378933],[-0.082863949239254,-0.034590013325214,-0.01473768427968],[-0.30094400048256,0.062994502484798,0.0021929235663265]],[[0.059418443590403,0.15200909972191,-0.11514104157686],[-0.043100889772177,0.12284123152494,-0.10149948298931],[-0.042739257216454,0.15170402824879,-0.058285403996706]],[[-0.12164827436209,0.051870193332434,-0.010993525385857],[0.0018685316899791,0.061859879642725,-0.047757782042027],[-0.18694576621056,0.051670216023922,-0.099861398339272]],[[0.051606185734272,0.0054491530172527,-0.18960185348988],[0.081790022552013,-0.25488975644112,-0.089762046933174],[0.10302606970072,-0.14443211257458,-0.035971615463495]],[[-0.033232592046261,-0.10836841166019,-0.0552665181458],[0.088843554258347,0.094541490077972,-0.002623975975439],[-0.011966201476753,0.0057871025055647,-0.030288983136415]],[[-0.062302395701408,-0.0055283326655626,-0.079366780817509],[0.08851645886898,0.017568714916706,-0.030250763520598],[0.26130971312523,-0.022941000759602,0.057477060705423]],[[-0.096378825604916,-0.062829904258251,-0.18583129346371],[0.030042812228203,-0.12722507119179,-0.0974151045084],[0.18151532113552,0.055522676557302,-0.099475689232349]],[[-0.0043053645640612,-0.06175047531724,-0.091310329735279],[0.019676679745317,-0.022816469892859,0.058649867773056],[-0.084714367985725,0.061549738049507,-0.0079545499756932]],[[0.04431639239192,-0.03726264834404,-0.046594586223364],[0.023410053923726,-0.032852202653885,0.02266126871109],[0.12661439180374,-0.029303040355444,-0.085188545286655]],[[-0.18105544149876,-0.055181887000799,-0.14314326643944],[0.077967166900635,-0.02150940336287,0.033761866390705],[0.24841369688511,0.10810727626085,-0.15926377475262]],[[0.21610407531261,0.052229769527912,0.038598254323006],[-0.041562505066395,-0.045267838984728,-0.14594461023808],[-0.1154683381319,-0.090428441762924,-0.10096003115177]]],[[[-0.052536591887474,-0.064262382686138,0.051891945302486],[0.011230221949518,-0.036247748881578,0.022246800363064],[0.20197042822838,-0.050105657428503,-0.024629699066281]],[[0.10296537727118,0.126146286726,-0.21507680416107],[-0.042008582502604,0.10615388303995,-0.11163108050823],[0.037306733429432,-0.03571155667305,-0.010017611086369]],[[-0.14363767206669,-0.13749647140503,0.0018041973235086],[-0.070940166711807,0.13562978804111,-0.052007280290127],[0.0010123582324013,-0.052280884236097,0.20526842772961]],[[0.021429596468806,-0.003292572684586,0.099343650043011],[-0.068398743867874,-0.016721988096833,-0.0020984630100429],[0.13676191866398,0.071470580995083,-0.054936058819294]],[[0.061023075133562,0.026019107550383,-0.098570019006729],[0.056074321269989,0.059805452823639,-0.077723182737827],[0.14959460496902,-0.061810333281755,0.13403698801994]],[[0.041340790688992,-0.14101068675518,-0.046676330268383],[0.0063064903952181,-0.082478791475296,0.041948143392801],[-0.0053546251729131,0.027107942849398,-0.010200459510088]],[[0.049372512847185,-0.026698207482696,0.048724681138992],[-0.14910204708576,0.031273230910301,0.11500283330679],[-0.043343096971512,0.075677752494812,-0.052881292998791]],[[0.00029455916956067,0.070554070174694,-0.02967950515449],[0.023888651281595,-0.022174568846822,-0.074391938745975],[0.13189207017422,-0.11980121582747,0.045482397079468]],[[-0.065774716436863,0.0078977327793837,-0.091972835361958],[-0.001022546668537,5.5658165365458e-05,-0.14208860695362],[0.056710366159678,0.16180580854416,0.011785701848567]],[[0.023418389260769,-0.016452819108963,0.0028349030762911],[0.0047799441963434,0.00355020374991,0.11064852774143],[0.0010892609134316,-0.021773064509034,-0.021127296611667]],[[0.023315127938986,0.038126397877932,-0.091301888227463],[0.1056764498353,0.011270019225776,-0.22256153821945],[0.0050412015989423,-0.10267927497625,-0.13404940068722]],[[-0.051651977002621,-0.091922245919704,-0.091941356658936],[0.077068790793419,0.068839058279991,0.06451178342104],[-0.034165900200605,-0.12070136517286,0.020638540387154]],[[-0.18160060048103,-0.032147135585546,0.060134835541248],[-0.064338408410549,0.020951639860868,0.15229214727879],[-0.01805848069489,-0.082234606146812,-0.016552144661546]],[[0.018518529832363,-0.015365156345069,0.040485661476851],[-0.072639659047127,0.047105189412832,0.048554260283709],[-0.083522088825703,0.018503900617361,-0.08100663125515]],[[-0.073496952652931,0.017423206940293,0.074190817773342],[0.18104501068592,0.12493626773357,0.11286382377148],[-0.090397723019123,-0.031061325222254,-0.15899375081062]],[[-0.046886991709471,-0.011767148971558,0.13043168187141],[-0.022207682952285,-0.05691359937191,0.11867956072092],[0.11279144138098,-0.026699434965849,0.0074715889059007]],[[-0.010887953452766,0.097635999321938,-0.099946357309818],[-0.17236438393593,0.10633829236031,-0.0026504525449127],[-0.076347954571247,-0.0058356402441859,-0.044197630137205]],[[0.033063042908907,-0.065136052668095,0.096833668649197],[-0.03268913179636,-0.015209424309433,0.060978006571531],[0.058750756084919,0.049018919467926,-0.040626928210258]],[[-0.10148600488901,0.021113950759172,0.014579025097191],[0.054558280855417,0.024045009166002,0.013632298447192],[0.10010749846697,0.062823593616486,0.11443246901035]],[[0.01448362134397,0.035756178200245,0.050315897911787],[-0.071453750133514,0.015130425803363,0.018534667789936],[0.029396230354905,-0.015865560621023,-0.076461315155029]],[[-0.085488870739937,0.078732572495937,-0.010446491651237],[-0.02124654315412,-0.018612245097756,0.030684128403664],[0.12416706234217,-0.020784024149179,-0.043843511492014]],[[-0.029047094285488,0.046856962144375,0.12856370210648],[-0.055624555796385,0.025414954870939,0.031049931421876],[0.049936532974243,-0.024371275678277,-0.15320746600628]],[[0.068450354039669,0.15454871952534,0.074324890971184],[-0.034059915691614,0.016907658427954,-0.060985337942839],[-0.13167531788349,0.043873831629753,-0.16595642268658]],[[-0.085930287837982,-0.047032337635756,0.045784946531057],[0.059206016361713,-0.0096354112029076,-0.017429668456316],[-0.063682340085506,-0.064262613654137,0.05485774576664]],[[0.086542956531048,-0.03292515873909,-0.12850724160671],[0.050052713602781,0.032863683998585,-0.015155160799623],[0.075372435152531,-0.036443721503019,-0.068133272230625]],[[-0.015086672268808,-0.040314633399248,0.049240488559008],[0.052478156983852,-0.062845557928085,-0.031405318528414],[0.045200113207102,-0.0085016656666994,0.01298850029707]],[[0.10615910589695,-0.085932351648808,0.060260824859142],[0.077606067061424,-0.14538383483887,0.057256504893303],[-0.055803138762712,-0.18631400167942,-0.038198821246624]],[[-0.044876825064421,-0.10714013129473,0.026883302256465],[-0.072727046906948,-0.036339227110147,0.17009152472019],[0.017820935696363,-0.080999210476875,0.022875254973769]],[[0.18545733392239,-0.022089486941695,0.0062262834981084],[0.065464444458485,0.054849579930305,0.041993364691734],[0.031494401395321,-0.17154060304165,0.15838605165482]],[[0.11584910005331,-0.057751506567001,0.14119827747345],[0.010331248864532,-0.12073860317469,0.0014311468694359],[0.0082449577748775,-0.15469928085804,0.09703229367733]],[[0.11648388206959,-0.035819333046675,0.0062797018326819],[-0.15516002476215,-0.051041968166828,0.013919301331043],[0.027842113748193,-0.049494031816721,-0.014912376180291]],[[0.033374074846506,0.19290174543858,-0.052841667085886],[-0.024116789922118,-0.032777473330498,-0.062103312462568],[0.15771155059338,-0.12718562781811,-0.085491046309471]],[[-0.11056054383516,-0.029593927785754,0.09040816873312],[-0.080748297274113,-0.045077737420797,-0.012511525303125],[-0.04850235953927,-0.038110285997391,-0.0092414524406195]],[[-0.094597265124321,-0.016859205439687,0.02553347684443],[0.028723305091262,-0.036257017403841,0.054898526519537],[0.0023874677717686,-0.14058320224285,-0.028438631445169]],[[0.074411995708942,-0.060833640396595,0.028568752110004],[-0.0085862465202808,-0.092750802636147,0.10844496637583],[0.0022528162226081,-0.057644847780466,-0.13671027123928]],[[-0.036482315510511,0.0091340495273471,0.092608734965324],[-0.041320662945509,0.075471393764019,0.0092881051823497],[-0.023050379008055,0.012946667149663,0.31565698981285]],[[0.04935347288847,-0.022478686645627,-0.038598883897066],[-0.084479816257954,-0.04454530775547,-0.040233235806227],[-0.17885687947273,-0.023339053615928,-0.01503405533731]],[[0.070529744029045,-0.032613754272461,-0.21221412718296],[-0.047945816069841,-0.060583870857954,-0.17257219552994],[0.02211226709187,0.16147704422474,-0.11451328545809]],[[-0.093196995556355,0.0063229002989829,0.10546220093966],[-0.065874069929123,0.0084813069552183,-0.010161674581468],[-0.081282645463943,-7.6648402682622e-06,-0.014570341445506]],[[0.10077776759863,0.029214767739177,0.20022441446781],[-0.032036103308201,-0.24191550910473,-0.038575451821089],[0.017688855528831,-0.067332923412323,-0.035846002399921]],[[0.13753233850002,0.077715136110783,-0.079556167125702],[0.14674399793148,-0.021073635667562,0.027430282905698],[0.010342720896006,-0.070227108895779,0.092165887355804]],[[0.088601022958755,0.15211407840252,-0.21575547754765],[0.012984321452677,0.015012258663774,-0.14153063297272],[0.15659874677658,0.0062817325815558,0.0081628328189254]],[[-0.089205704629421,-0.02406982332468,0.076428346335888],[0.080663546919823,-0.049029845744371,-0.088110744953156],[-0.10035456717014,-0.091258615255356,-0.0099797081202269]],[[-0.060984008014202,-0.093206226825714,0.13938276469707],[0.047218658030033,0.050093401223421,0.007300310768187],[0.0044294949620962,-0.028851671144366,-0.034790582954884]],[[0.016481894999743,-0.030462086200714,-0.030546279624104],[-0.099242858588696,-0.12020771205425,0.038271844387054],[-0.13450303673744,-0.13524241745472,-0.070105247199535]],[[-0.025686344131827,0.006323566660285,-0.035620097070932],[-0.10078849643469,0.16132414340973,0.10152833908796],[-0.039309192448854,0.041302647441626,-0.037132389843464]],[[-0.067686669528484,0.011352409608662,0.10072641819715],[0.092173516750336,-0.12301971018314,-0.0023128371685743],[-0.11490636318922,0.0056037167087197,0.090298496186733]],[[-0.16087663173676,-0.09877859801054,-0.062003534287214],[-0.068987287580967,-0.1075821891427,0.020284635946155],[0.077981509268284,0.031747434288263,-0.076924838125706]],[[-0.04762689396739,0.010671601630747,0.083373323082924],[-0.1662083119154,0.0014651442179456,-0.073253825306892],[-0.045886751264334,-0.050879072397947,-0.035936076194048]],[[-0.1038977727294,0.1624052375555,-0.058957528322935],[0.045871943235397,0.037358220666647,-0.029875932261348],[0.01472026668489,-0.13114401698112,-0.04558090865612]],[[0.04327055811882,0.14798812568188,0.10843298584223],[0.023045103996992,0.079037025570869,0.15709711611271],[-0.0027974559925497,-0.0051556322723627,-0.041983615607023]],[[0.06808964163065,-0.1125263273716,0.0090684136375785],[-0.093073613941669,0.0075479904189706,-0.012287541292608],[0.171401232481,0.15275530517101,-0.051875043660402]],[[0.24595089256763,-0.024450259283185,0.07945965975523],[0.0059497789479792,-0.0044136964716017,-0.047105547040701],[-0.0069378465414047,-0.072795256972313,0.19038328528404]],[[-0.036313503980637,0.073665000498295,-0.14472953975201],[-0.040834493935108,0.0051348595879972,0.21091562509537],[0.061678122729063,-0.06639464199543,0.14170208573341]],[[-0.27750447392464,0.027084110304713,-0.013663489371538],[0.09026838093996,-0.051877841353416,-0.11694852262735],[-0.051870476454496,0.030154841020703,-0.0033550928346813]],[[0.1471931040287,0.065168656408787,0.023374924436212],[0.088872388005257,-0.14185009896755,0.0049378853291273],[-0.03844703361392,-0.20155139267445,-0.012128037400544]],[[-0.018519448116422,0.066849254071712,0.055070295929909],[0.12049633264542,-0.051387149840593,-0.027318695560098],[0.010923718102276,-0.064869865775108,0.028496133163571]],[[-0.071804150938988,-0.053281731903553,0.14469248056412],[0.053228784352541,0.037176378071308,-0.12749439477921],[-0.077056080102921,-0.08846677094698,0.093466736376286]],[[-0.065259225666523,0.0083207720890641,0.18724830448627],[0.074054285883904,0.18165364861488,-0.054200612008572],[0.064254201948643,0.078630663454533,0.049470368772745]],[[-0.085673935711384,0.058154109865427,0.11544043570757],[0.026154596358538,0.14315916597843,-0.0083880461752415],[-0.11720068752766,-0.055790238082409,0.025599770247936]],[[0.047015141695738,-0.093656502664089,-0.17657917737961],[-0.1099941059947,-0.1669799387455,-0.100780621171],[0.066319160163403,-0.047808960080147,-0.015927502885461]],[[-0.10823467373848,0.15415896475315,0.09148944914341],[0.018202455714345,0.039729006588459,0.012150016613305],[0.054332125931978,0.0027107489295304,-0.034133825451136]],[[0.021676605567336,0.01306358166039,-0.018551351502538],[0.092661842703819,0.0027437526732683,0.023615432903171],[-0.10571591556072,-0.12416065484285,-0.096631929278374]],[[0.13271126151085,0.043782230466604,-0.087701499462128],[-0.25018844008446,-0.04508438706398,0.0059077530167997],[-0.062277782708406,-0.1062842682004,0.029015293344855]]],[[[0.15367443859577,-0.019734082743526,-0.09477724134922],[0.10362864285707,-0.13255468010902,-0.022103898227215],[-0.072964161634445,-0.01466647349298,0.04668191447854]],[[0.042914547026157,-0.045802462846041,-0.0053878738544881],[0.071012996137142,0.088776148855686,0.032110970467329],[-0.11497582495213,-0.11809050291777,-0.061121750622988]],[[-0.14703585207462,0.0049397102557123,-0.011089931242168],[-0.16228565573692,0.038581609725952,-0.15492741763592],[-0.053220544010401,0.064936637878418,-0.048590887337923]],[[0.012682688422501,-0.052765250205994,-0.099642619490623],[-0.12317587435246,-0.028004107996821,0.083589062094688],[-0.053258180618286,0.089649215340614,-0.083352714776993]],[[-0.061155911535025,-0.084891371428967,0.11770397424698],[0.029392827302217,-0.022919565439224,-0.030599735677242],[-0.01335798855871,0.028947833925486,0.1293153911829]],[[-0.30243870615959,0.01098364405334,0.029547888785601],[-0.073057219386101,0.093000546097755,-0.12244469672441],[-0.20367531478405,-0.090511150658131,-0.11839047074318]],[[-0.063314981758595,0.017451032996178,-0.15225686132908],[0.050934799015522,0.03077900968492,0.089114397764206],[-0.083219595253468,0.02507796511054,-0.015566881746054]],[[0.11511819809675,0.071346618235111,0.058057554066181],[0.051919378340244,-0.022026335820556,-0.029773442074656],[0.090675629675388,0.033899113535881,0.0762604996562]],[[0.10400111228228,0.0008470548200421,-0.072617076337337],[-0.03904852643609,0.018767328932881,-0.079148277640343],[-0.030180525034666,-0.022464161738753,0.058320060372353]],[[-0.20702196657658,-0.11208286881447,0.089353129267693],[0.032992660999298,0.072726756334305,-0.0090849129483104],[0.053935267031193,0.11476085335016,0.033656500279903]],[[-0.055073402822018,-0.041305013000965,-0.12077998369932],[-0.026411252096295,0.042381357401609,-0.081172078847885],[0.03508273512125,-0.0042627607472241,-0.077175080776215]],[[-0.03358581289649,-0.021539790555835,0.13799171149731],[0.039776600897312,0.037112113088369,-0.028847899287939],[-0.16937771439552,-0.031295776367188,0.0020768621470779]],[[-0.078660003840923,0.033253598958254,-0.089798904955387],[-0.089709162712097,-0.031827945262194,-0.21020415425301],[-0.094097398221493,-0.029929893091321,-0.15731307864189]],[[-0.059460394084454,-0.076961070299149,-0.18091768026352],[-0.044751323759556,0.056970037519932,-0.012149877846241],[-0.049249302595854,0.17806179821491,0.12457033991814]],[[0.12829852104187,0.18514557182789,-0.5299551486969],[0.002515600528568,-0.018511936068535,-0.3497277200222],[-0.090297020971775,-0.22398896515369,0.042612344026566]],[[0.022483317181468,0.012294162064791,-0.021100444719195],[-0.032237436622381,0.051747344434261,0.0032083524856716],[-0.040898304432631,0.00064837856916711,-0.028050122782588]],[[0.050958804786205,-0.027266887947917,-0.022513376548886],[-0.022645829245448,-0.064551942050457,0.18928724527359],[0.049225099384785,-0.0090282950550318,0.055877566337585]],[[0.073590897023678,-0.083088830113411,-0.081044383347034],[0.0023072308395058,0.00259152171202,0.002189600141719],[0.050131350755692,-0.088664002716541,-0.048393461853266]],[[0.02170087210834,-0.031308017671108,-0.31278878450394],[-0.040104139596224,0.018888410180807,-0.14650341868401],[0.056786775588989,0.15407793223858,-0.26937356591225]],[[-0.11975829303265,-0.046501729637384,-0.11944841593504],[-0.12205869704485,0.055045340210199,-0.1703245639801],[-0.13455893099308,0.044653445482254,-0.037698220461607]],[[0.005002005957067,-0.066610619425774,-0.13204796612263],[-0.042244784533978,-0.011914554052055,-0.089063055813313],[-0.19108638167381,-0.022135911509395,0.0033607832156122]],[[0.02364001981914,0.0052019972354174,-0.074331536889076],[-0.06757939606905,-0.10821405798197,0.033565983176231],[0.0085979979485273,-0.038916539400816,-0.27109533548355]],[[-0.17079186439514,-0.037152588367462,-0.0095538049936295],[-0.034614525735378,-0.11109073460102,0.085501037538052],[0.12489639222622,-0.027764622122049,0.1167354658246]],[[-0.094590298831463,-0.035707052797079,0.077821291983128],[-0.10170122236013,-0.069965250790119,0.018327493220568],[-0.14749808609486,-0.11466659605503,-0.078086212277412]],[[0.057278271764517,-0.01252300478518,0.08794029802084],[-0.0027764928527176,-0.12746645510197,-0.13132686913013],[0.018465604633093,-0.063952565193176,-0.097293466329575]],[[-0.065816648304462,-0.040317170321941,-0.034757491201162],[-0.055635161697865,0.041253294795752,-0.098582275211811],[-0.067248232662678,0.066860243678093,0.087228737771511]],[[0.081920728087425,-0.14806188642979,0.13225838541985],[-0.011364597827196,0.051099982112646,0.14723533391953],[-0.12139680236578,-0.047906365245581,0.17679336667061]],[[-0.04624330252409,0.061186920851469,-0.022277809679508],[0.027512924745679,0.0033098491840065,0.01207706797868],[-0.019761420786381,0.12080892920494,-0.093339249491692]],[[0.13844890892506,0.028868976980448,0.065336488187313],[-0.0025943517684937,-0.026560405269265,-0.10348562896252],[-0.049798231571913,0.048215989023447,-0.0097201652824879]],[[0.026574397459626,-0.01692795753479,0.016592377796769],[0.02615949511528,0.056646052747965,0.10979524999857],[0.15444029867649,0.015735045075417,-0.019450360909104]],[[0.01649915240705,0.04497529938817,-0.035843297839165],[-0.16201041638851,0.060584634542465,0.090321950614452],[-0.082963176071644,0.091326154768467,-0.039411645382643]],[[-0.0062331221997738,-0.036302905529737,0.017828533425927],[-0.017376156523824,0.072766177356243,-0.021094936877489],[-0.10986296087503,0.11847174912691,0.010646607726812]],[[-0.065054498612881,0.0018144570058212,0.20227034389973],[0.044852800667286,-0.061186321079731,0.18950729072094],[-0.071493588387966,0.043913669884205,0.083889700472355]],[[-0.024702178314328,-0.10604283958673,-0.074704423546791],[0.0042955474928021,0.031643591821194,-0.015269153751433],[-0.093160837888718,-0.033603366464376,0.088500455021858]],[[-0.016437707468867,-0.13285148143768,-0.15389455854893],[-0.053875133395195,0.0005567844491452,0.14213988184929],[-0.012248014099896,0.061852920800447,0.12223952263594]],[[0.1654282361269,0.11182286590338,-0.046858739107847],[-0.019501695409417,-0.089776642620564,-0.001396949053742],[0.0003198609338142,-0.086919724941254,0.0076455785892904]],[[-0.089024439454079,0.062584206461906,-0.03844390437007],[-0.0019324814202264,0.040090631693602,0.041293159127235],[-0.0062953238375485,0.027242811396718,0.059211358428001]],[[0.11704888194799,-0.017003212124109,-0.077663213014603],[-0.0042839543893933,-0.069464206695557,0.064581751823425],[-0.04323561117053,-0.012199585326016,0.18093554675579]],[[0.017915107309818,-0.12586025893688,0.0074652344919741],[-0.098760969936848,-0.044646799564362,-0.0027422434650362],[0.091505855321884,0.052084557712078,0.039440616965294]],[[-0.080533809959888,0.13353188335896,0.015367398038507],[-0.064751453697681,0.06499769538641,-0.074987970292568],[0.14718620479107,-0.094943717122078,-0.069703817367554]],[[-0.024153152480721,-0.16994553804398,0.19270108640194],[-0.031672567129135,-0.0063161607831717,0.091721564531326],[0.18427123129368,0.057635322213173,0.10063344985247]],[[0.048137735575438,-0.16116642951965,0.098511606454849],[0.020510105416179,0.061604414135218,0.053586184978485],[-0.046000920236111,0.12254533171654,0.13883416354656]],[[0.034198768436909,0.021122518926859,0.046377267688513],[-0.066339075565338,-0.0090131796896458,0.021618207916617],[-0.054328739643097,-0.0018813243368641,0.09669229388237]],[[-0.07077718526125,-0.071768842637539,-0.020038729533553],[0.10706322640181,0.038923408836126,-0.0052414848469198],[-0.05765250697732,0.053320206701756,-0.020313445478678]],[[-0.076255276799202,0.075769536197186,0.1201681420207],[0.042130462825298,0.050870656967163,-0.079715549945831],[-0.10453968495131,0.06371159106493,-0.073535911738873]],[[-0.057964704930782,0.14593659341335,0.0010550286388025],[-0.088106513023376,0.21142379939556,-0.097840681672096],[-0.10393848270178,0.051168598234653,-0.13357099890709]],[[-0.088955238461494,0.22395108640194,0.18650251626968],[0.032445058226585,-0.037848025560379,-0.026005011051893],[-0.024638401344419,0.12236960232258,-0.05231736972928]],[[0.0013856415171176,-0.082984119653702,0.062312830239534],[-0.09239998459816,-0.014343849383295,0.085474468767643],[-0.024675643071532,-0.10403794795275,0.061537548899651]],[[0.027258174493909,-0.021589856594801,-0.052914578467607],[-0.067270152270794,-0.0039807837456465,-0.16253083944321],[-0.24390114843845,0.13130943477154,0.10820972919464]],[[0.07241003960371,0.093625970184803,0.14748364686966],[0.043689824640751,0.081531167030334,-0.0097329132258892],[-0.061952710151672,-0.0048893853090703,-0.12986442446709]],[[0.099168889224529,0.029433039948344,0.18335412442684],[0.019064312800765,-0.051298528909683,0.00090229965280741],[0.0078744040802121,0.078749239444733,0.089676566421986]],[[-0.068650752305984,0.023511402308941,-0.12237224727869],[0.27970525622368,0.032554350793362,-0.15458151698112],[-0.043609205633402,-0.014505197294056,-0.071717627346516]],[[-0.028907423838973,-0.08347512036562,0.096367567777634],[-0.03915049508214,0.084621891379356,-0.1182751506567],[-0.0425607226789,0.075224965810776,-0.074872121214867]],[[0.036622993648052,0.046774048358202,0.05991879478097],[0.14491298794746,-0.040627334266901,0.079932346940041],[-0.076303280889988,-0.059935558587313,-0.2741279900074]],[[-0.01131076272577,0.058157492429018,-0.036413215100765],[0.049454305320978,-0.090810008347034,-0.012692445889115],[-0.078190959990025,0.040924232453108,0.030211109668016]],[[0.06396672129631,-0.047917436808348,0.185426607728],[0.015023131854832,-0.082523219287395,0.081838339567184],[0.055305123329163,-0.17488500475883,0.073077835142612]],[[-0.1262639015913,-0.067297741770744,-0.093158699572086],[-0.039762649685144,-0.03791581839323,-0.072319082915783],[-0.11169993877411,-0.011576659977436,-0.075160294771194]],[[-0.019240565598011,0.044858701527119,-0.10025699436665],[0.0064200218766928,0.039032485336065,0.12993746995926],[-0.064601704478264,-0.17587113380432,0.027747651562095]],[[-0.061262045055628,0.017910666763783,0.052217788994312],[0.11156821995974,-0.049920123070478,-0.082621663808823],[-0.056642089039087,0.029859403148293,-0.014826802536845]],[[-0.18014520406723,0.042185328900814,0.17220133543015],[-0.0031348804477602,0.012314081192017,0.036158051341772],[0.041842363774776,0.065582185983658,0.1941335350275]],[[0.085747174918652,-0.093099787831306,-0.12834842503071],[-0.0032231213990599,0.080284990370274,0.023655382916331],[-0.075331978499889,-0.070385970175266,0.22257106006145]],[[-0.15268352627754,0.10007997602224,-0.16484472155571],[0.1201481372118,0.006627747323364,-0.0024114358238876],[0.14350128173828,-0.020987087860703,-0.024012807756662]],[[0.046472690999508,-0.11491699516773,-0.031068837270141],[-0.090377695858479,0.042194668203592,-0.0091496631503105],[0.10141156613827,-0.096124514937401,-0.031016362830997]],[[-0.095582760870457,0.11623882502317,0.081397570669651],[0.0021032909862697,-0.17804662883282,-0.18003743886948],[-0.10383659601212,0.0078735919669271,-0.13400480151176]]],[[[-0.03751827403903,0.050642568618059,-0.013034029863775],[-0.024113683030009,0.07052194327116,0.10047118365765],[0.075483180582523,0.090023435652256,-0.019810989499092]],[[0.11490415036678,-0.00035612101783045,-0.10045462101698],[0.037198629230261,0.0074731954373419,-0.081913501024246],[0.16370160877705,0.037786360830069,0.030902387574315]],[[-0.11103025078773,0.070714771747589,0.043654333800077],[-0.097315423190594,0.060932755470276,0.067541241645813],[-0.07806458324194,0.10157839953899,-0.06202407553792]],[[0.021879203617573,-0.071131616830826,-0.006274230312556],[-0.013295908458531,0.059844974428415,-0.097496397793293],[0.069626621901989,-0.15678356587887,-0.10720297694206]],[[-0.0072270543314517,-0.010730233974755,-0.030107721686363],[0.035044971853495,0.052388407289982,0.049651689827442],[0.10220500081778,-0.19445613026619,0.074127517640591]],[[0.12783946096897,-0.068171285092831,0.092664383351803],[-0.02124809846282,-0.046404074877501,0.16214630007744],[0.071855820715427,0.018788369372487,0.22264355421066]],[[0.027861475944519,-0.010688011534512,0.029352314770222],[-0.00019968512060586,-0.018348380923271,0.0034609939903021],[-0.032396618276834,-0.15031854808331,0.048020165413618]],[[-0.03877430409193,0.013865599408746,0.0066461241804063],[-0.093649573624134,0.071137093007565,0.026515185832977],[0.032989013940096,-0.012751010246575,-0.034740183502436]],[[-0.037262938916683,-0.056186832487583,-0.010062702000141],[0.059998776763678,-0.071959748864174,0.091784171760082],[0.062638834118843,-0.045645162463188,-0.018115103244781]],[[0.0013331988593563,0.088205590844154,-0.055473826825619],[-0.044401787221432,0.025208005681634,0.19155509769917],[0.13943648338318,-0.054853409528732,-0.19526946544647]],[[-0.052684847265482,-0.11664421111345,0.05233246833086],[-0.027366856113076,-0.052336797118187,0.2260026037693],[-0.0051337541081011,0.087550207972527,-0.0094365384429693]],[[0.066474720835686,0.041388679295778,-0.087660692632198],[-0.047255393117666,-0.15130622684956,-0.14984905719757],[-0.0051642688922584,-0.076703101396561,-0.23652569949627]],[[-0.097428061068058,0.0053597548976541,0.025644198060036],[-0.067913517355919,-0.054626420140266,-0.14759097993374],[-0.0021509039215744,0.085245311260223,0.011714641936123]],[[-0.015917763113976,-0.030965089797974,-0.013671424239874],[-0.078309386968613,0.061347629874945,0.0077403718605638],[-0.095992036163807,-0.011519841849804,0.047164760529995]],[[0.055329486727715,0.045918148010969,-0.10908757150173],[0.070721052587032,-0.014664993621409,-0.12720286846161],[-0.056015998125076,-0.077622689306736,0.033772334456444]],[[0.129239320755,-0.063010543584824,-0.054658301174641],[0.026563081890345,-0.074298143386841,-0.23909305036068],[0.14055424928665,0.0015687822597101,-0.027516471222043]],[[0.11728157103062,-0.0014186968328431,-0.023465618491173],[0.049121666699648,0.077102966606617,-0.017784159630537],[0.065955631434917,-0.1046184450388,0.11386750638485]],[[0.09559490531683,0.049230553209782,-0.090176180005074],[-0.087190389633179,-0.0014492835616693,-0.072293095290661],[0.028381900861859,0.15522563457489,-0.1595343798399]],[[-0.0064552566036582,0.14141863584518,-0.014077662490308],[-0.071763142943382,-0.068674519658089,-0.063892863690853],[0.02143893763423,0.035773281008005,-0.032282061874866]],[[0.032332561910152,0.012441832572222,-0.0026953255292028],[-0.0037395691033453,-0.083212062716484,-0.055837485939264],[-0.020024295896292,0.089715249836445,0.072239249944687]],[[-0.088998533785343,-0.020402116701007,-0.13305588066578],[0.0021432482171804,0.040503226220608,-0.10002719610929],[0.015884302556515,-0.16656242311001,-0.29225680232048]],[[-0.014493870548904,0.014465630985796,0.17341654002666],[-0.0066393935121596,-0.055509757250547,0.11521036177874],[0.043697156012058,-0.13645623624325,-0.022151727229357]],[[0.11662655323744,-0.083038575947285,-0.20183029770851],[-0.042526103556156,-0.11822754889727,-0.015685429796576],[0.022217825055122,-0.028449771925807,-0.1170584410429]],[[0.0091917999088764,-0.02499065361917,0.041771464049816],[0.10747218132019,-0.038074944168329,0.072325453162193],[-0.052957054227591,0.0053949728608131,-0.032680280506611]],[[0.12040685117245,-0.040989007800817,-0.073219768702984],[-0.0069563663564622,-0.020756956189871,-0.034513786435127],[-0.01338514406234,0.038840726017952,-0.15113116800785]],[[-0.042620908468962,-0.073307454586029,-0.17322531342506],[0.033781941980124,-0.064042158424854,-0.1082129329443],[-0.051994401961565,-0.02487226575613,-0.010680878534913]],[[0.19512283802032,-0.14775307476521,0.018877949565649],[0.17970907688141,-0.14764742553234,0.024947550147772],[0.043369106948376,-0.10532329976559,-0.057843402028084]],[[-0.030686359852552,-0.14547038078308,-0.25815662741661],[0.00393130723387,-0.10359944403172,0.025768959894776],[-0.043273530900478,-0.07153132557869,0.017204592004418]],[[0.15873807668686,0.15291376411915,0.055618442595005],[0.0041561718098819,0.16325734555721,0.069982536137104],[-0.024617685005069,-0.051998600363731,-0.15411522984505]],[[0.073623366653919,0.030175864696503,-0.2048504948616],[-0.075127311050892,-0.059530917555094,-0.2670085132122],[0.061737194657326,0.10094609856606,-0.31254187226295]],[[-0.19715251028538,-0.22898212075233,-0.31327202916145],[0.11809040606022,-0.042865235358477,0.16462875902653],[-0.16939544677734,-0.060071691870689,-0.075272791087627]],[[0.00016722350846976,-0.071614243090153,-0.10784400254488],[0.024028846994042,-0.025601238012314,0.30245861411095],[0.012472508475184,-0.07641888409853,-0.031914111226797]],[[-0.094997778534889,0.023579454049468,0.15267841517925],[-0.014368264004588,-0.056185502558947,0.15561924874783],[-0.0063337171450257,-0.22943094372749,0.20391502976418]],[[0.028204435482621,0.013488521799445,0.034453671425581],[0.023181103169918,-0.025999717414379,0.048629231750965],[-0.052708331495523,0.010488789528608,-0.10132249444723]],[[0.02932165376842,0.016504632309079,-0.013590625487268],[-0.035016108304262,0.042257618159056,0.018114881590009],[0.031445249915123,-0.069300629198551,-0.082803331315517]],[[0.01441194768995,0.01557432860136,0.041161805391312],[0.11248423904181,-0.072242081165314,-0.13050402700901],[-0.070510871708393,0.023665819317102,-0.02892255038023]],[[0.080666802823544,0.055289249867201,-0.16908660531044],[0.033973764628172,0.017721155658364,-0.032974619418383],[-0.053760651499033,0.037905845791101,0.10547831654549]],[[-0.060452125966549,-0.078519485890865,0.10915289819241],[-0.057225033640862,-0.10237085074186,-0.052469324320555],[0.010532541200519,0.13038165867329,0.11173798143864]],[[0.017703147605062,0.064760148525238,0.052515543997288],[0.012321274727583,0.0021170775871724,0.025351818650961],[0.040731888264418,0.047567918896675,-0.14196982979774]],[[0.10773081332445,-0.067305244505405,-0.069588035345078],[0.093733809888363,-0.15961554646492,-0.068852014839649],[0.076604209840298,0.031198937445879,-0.047872185707092]],[[0.11680337786674,-0.12387951463461,0.085935138165951],[0.073664829134941,-0.065537214279175,-0.053440812975168],[0.051041003316641,-0.14229935407639,0.092856630682945]],[[0.11587946116924,-0.25109347701073,0.16407155990601],[0.096586473286152,-0.33036103844643,-0.10595502704382],[0.1448490023613,-0.37716129422188,0.065037161111832]],[[-0.03813986107707,-0.03213731944561,-0.081015527248383],[0.033594898879528,0.042004007846117,0.013999892398715],[0.031453274190426,-0.076804287731647,-0.020400965586305]],[[0.013209315016866,0.097842946648598,0.040868271142244],[0.0034252149052918,0.0038541832473129,-0.054570965468884],[-0.12787072360516,-0.025178730487823,0.072819069027901]],[[-0.038941826671362,-0.040269620716572,0.13972985744476],[0.012207600288093,-0.0489272326231,0.080946519970894],[0.10006628930569,0.027217198163271,0.057447396218777]],[[-0.20636513829231,-0.19814425706863,0.16548162698746],[0.0122897233814,0.058762099593878,0.20756743848324],[0.11075720191002,0.016955276951194,0.011952335946262]],[[-0.32453015446663,0.13456167280674,-0.16899909079075],[0.1188530176878,0.069180190563202,0.11997212469578],[-0.091108053922653,0.024963986128569,0.11277325451374]],[[0.051106408238411,0.092323578894138,-0.030036779120564],[-0.032793287187815,-0.051102980971336,-0.14398136734962],[0.059262711554766,-0.066583834588528,-0.056181117892265]],[[-0.12308416515589,-0.11928891390562,0.067404940724373],[0.00100352242589,-0.13748705387115,0.075913436710835],[-0.1749671548605,0.033413797616959,0.014028112404048]],[[-0.03014680929482,0.0044122003018856,-0.2021352648735],[0.058953370898962,0.035091780126095,-0.10153996199369],[0.040404051542282,-0.052835498005152,-0.04708556085825]],[[0.051889475435019,-0.015416962094605,0.098128207027912],[0.026205288246274,0.0045867594890296,-0.26491492986679],[0.13369810581207,0.065706707537174,-0.16030070185661]],[[0.101886972785,0.087508536875248,-0.041692294180393],[-0.11641196906567,0.074808076024055,-0.032648306339979],[0.14915806055069,0.013249395415187,0.027089823037386]],[[0.056629151105881,0.11639023572206,-0.027418680489063],[-0.060852792114019,6.6078704549e-05,0.038430582731962],[-0.16694703698158,0.034031361341476,-0.10326255857944]],[[0.0099212899804115,0.035607434809208,-0.019490584731102],[0.048802860081196,0.11542086303234,0.026174426078796],[0.062192786484957,0.098793871700764,-0.082169517874718]],[[0.020516632124782,-0.053735192865133,-0.16398051381111],[-0.0010789250954986,0.0032907447312027,-0.01136386860162],[0.06188153848052,-0.129762545228,-0.074583798646927]],[[0.034800942987204,0.069282181560993,-0.21478958427906],[0.17367035150528,-0.037968419492245,-0.19069422781467],[-0.0061122076585889,-0.01338090095669,-0.097687393426895]],[[-0.1137438043952,0.021041145548224,0.052155774086714],[0.037581786513329,-0.063970506191254,-0.0042909062467515],[0.019082637503743,0.024342898279428,-0.13280135393143]],[[-0.0041381330229342,0.048867788165808,-0.14061957597733],[-0.09635417163372,0.057262498885393,-0.040602877736092],[-0.097439721226692,-0.037271115928888,0.020729979500175]],[[-0.050853159278631,-0.20244823396206,-0.024395383894444],[0.090894527733326,-0.042658932507038,0.084749765694141],[0.14941708743572,-0.080881729722023,0.061079449951649]],[[-0.011148434132338,-0.0013256433885545,-0.043743617832661],[-0.13496626913548,0.060537908226252,0.15900732576847],[-0.080531969666481,-0.024543168023229,-0.030030833557248]],[[0.10839566588402,-0.098428212106228,0.058090623468161],[-0.14353343844414,-0.044862020760775,-0.11557780951262],[0.039950411766768,0.023213375359774,-0.026964409276843]],[[-0.13514828681946,0.046691313385963,0.05595787987113],[-0.1261817663908,-0.075876109302044,-0.038709692656994],[0.062097571790218,-0.046728912740946,-0.027955090627074]],[[-0.0073295016773045,0.081505820155144,-0.077880807220936],[0.051942374557257,-0.055603750050068,-0.017619498074055],[0.024818670004606,-0.026889668777585,0.015217624604702]],[[-0.039837121963501,-0.17920805513859,-0.056949961930513],[-0.060465835034847,0.091503441333771,0.0070001631975174],[-0.0051546143367887,0.15530247986317,-0.18014411628246]]],[[[0.10733487457037,-0.050177961587906,0.2436361014843],[-0.051354929804802,-0.10715620219707,0.053954008966684],[0.014199762605131,0.12881192564964,-0.072613932192326]],[[-0.038789395242929,0.082106776535511,-0.00182328466326],[0.083737917244434,-0.043273750692606,-0.008513412438333],[-0.038961183279753,0.062996342778206,0.036667589098215]],[[0.037309151142836,-0.16872446238995,-0.052414212375879],[0.010517272166908,-0.15191423892975,-0.331841558218],[0.0061179981566966,-0.17012648284435,-0.014750030823052]],[[0.10524282604456,-0.25162237882614,-0.27770844101906],[0.087100766599178,0.17299763858318,0.17294080555439],[-0.053003001958132,0.045010700821877,-0.16823148727417]],[[-0.29256215691566,0.035555947571993,-0.04770240187645],[0.08351818472147,-0.13823369145393,-0.0026887594722211],[-0.030393352732062,-0.010826228186488,0.060427706688643]],[[0.015023436397314,0.014044958166778,-0.0014906122814864],[-0.058632589876652,0.019667692482471,-0.030627559870481],[-0.0050552515313029,-0.025846272706985,0.0057488358579576]],[[0.022185193374753,0.0023557113017887,0.015659410506487],[-0.073435038328171,-0.047861982136965,-0.053778368979692],[0.035034731030464,0.025382645428181,0.0088124051690102]],[[0.071181029081345,0.0056200325489044,0.063442789018154],[-0.17223015427589,-0.041254263371229,-0.032447129487991],[-0.0081964796409011,0.0041939718648791,0.031363174319267]],[[-0.046512994915247,0.026713404804468,0.068051375448704],[0.030865345150232,-0.015930498018861,-0.020418291911483],[-0.030235942453146,0.060544472187757,-0.039456661790609]],[[-0.066839382052422,-0.1615617275238,0.05815677344799],[0.046583093702793,0.075447954237461,0.031392056494951],[-0.22454178333282,-0.098834365606308,0.0546969845891]],[[-0.020978888496757,-0.033598762005568,0.16673323512077],[-0.026813266798854,-0.026173943653703,0.060657426714897],[0.01292522624135,0.024197844788432,0.0029338516760617]],[[0.030838204547763,-0.13843615353107,0.033312357962132],[0.059310436248779,-0.068832769989967,0.0619872584939],[0.17352315783501,-0.018797131255269,-0.20046351850033]],[[-0.04246049746871,0.016503484919667,0.031781047582626],[0.017659328877926,-0.015659110620618,0.011033119633794],[-0.10717636346817,0.03247132524848,0.21356856822968]],[[0.105080075562,-0.0053741782903671,0.0032844999805093],[0.063543550670147,-0.066486343741417,0.053933214396238],[-0.033495046198368,0.022587405517697,0.042464934289455]],[[-0.10612405091524,-0.045175485312939,-0.0982845723629],[-0.017131648957729,-0.02454986050725,-0.025289418175817],[0.075237609446049,0.11829301714897,0.031923584640026]],[[-0.061675027012825,-0.31675031781197,-0.064949207007885],[0.073397226631641,-0.12803880870342,0.14034649729729],[0.028181375935674,0.010432335548103,0.081697717308998]],[[-0.075428411364555,-0.023945715278387,0.014972099103034],[-0.031930170953274,-0.092271119356155,0.025355042889714],[0.026430083438754,0.083081796765327,0.042161863297224]],[[0.20767168700695,0.13907666504383,0.096092484891415],[-0.15047237277031,0.068368583917618,-0.044752776622772],[0.0060594878159463,0.061887353658676,0.020051509141922]],[[0.047760702669621,0.12549743056297,-0.14530737698078],[0.08441086858511,0.024475015699863,-0.022781487554312],[-0.040424063801765,0.039389852434397,0.048150185495615]],[[0.15796995162964,0.039889588952065,0.15135185420513],[0.12042026221752,-0.1121828481555,-0.012789717875421],[-0.0045076911337674,-0.05428135022521,0.14651310443878]],[[-0.15677750110626,-0.12337332963943,-0.098965771496296],[-0.0081757958978415,-0.051369871944189,0.052123356610537],[0.030047222971916,0.11363210529089,-0.029125846922398]],[[-0.24341362714767,0.22616705298424,-0.10613193362951],[-0.14741998910904,-0.13201843202114,-0.079115979373455],[0.16035847365856,0.017346503213048,-0.0029997741803527]],[[-0.10412558168173,-0.1446869969368,-0.038981284946203],[-0.11054603010416,0.016618793830276,-0.092607647180557],[0.12918585538864,-0.11370132863522,-0.016900835558772]],[[0.031694404780865,0.08228812366724,0.090368963778019],[-0.11642156541348,0.013101685792208,-0.00039372697938234],[0.1349678337574,0.0014180027646944,-0.009133268147707]],[[-0.098952852189541,0.31045031547546,0.0087607251480222],[-0.26670587062836,0.093492321670055,-0.096308812499046],[0.19108322262764,-0.11134891211987,-0.17955967783928]],[[-0.058917552232742,-0.15254625678062,-0.16968432068825],[-0.024601072072983,0.099372640252113,-0.014360600151122],[-0.08609826117754,0.055315461009741,0.01720635406673]],[[-0.33179754018784,-0.12408736348152,0.032163705676794],[-0.19810670614243,0.14900940656662,-0.054684903472662],[-0.087110228836536,0.093192785978317,-0.092095375061035]],[[-0.23062051832676,-0.11065688729286,-0.031626131385565],[-0.044155944138765,0.13239757716656,0.12081281840801],[-0.045124586671591,-0.055855304002762,-0.021587846800685]],[[0.075923576951027,0.015709009021521,0.12668243050575],[-0.07841482013464,-0.098652482032776,-0.024260358884931],[0.11457871645689,0.078382723033428,-0.03835279494524]],[[-0.12060850858688,-0.10926701873541,-0.12132686376572],[0.091826900839806,-0.060773406177759,-0.07952181994915],[0.018542490899563,0.017778966575861,-0.088688664138317]],[[-0.20619174838066,-0.065718211233616,-0.087541803717613],[-0.098595134913921,0.071424402296543,0.040532447397709],[-0.053997971117496,0.0073698251508176,-0.0099942935630679]],[[-0.14129604399204,-0.23368015885353,-0.15384078025818],[0.16022607684135,0.078944079577923,0.15497207641602],[0.042608376592398,0.027505503967404,0.033748041838408]],[[0.046584255993366,0.14998276531696,-0.16347718238831],[0.057742290198803,-0.068111844360828,-0.12613475322723],[-0.10468671470881,-0.060407474637032,-0.027095785364509]],[[0.071612417697906,0.032201077789068,0.064665794372559],[0.074223197996616,-0.020070943981409,-0.1307101547718],[0.044348955154419,-0.038586679846048,0.029703380540013]],[[-0.14487391710281,0.11580508202314,0.024842290207744],[0.13484768569469,-0.3125019967556,-0.083887703716755],[0.048339277505875,-0.034557621926069,0.071740664541721]],[[-0.21183602511883,0.13691176474094,-0.012209293432534],[0.033837713301182,-0.0062751891091466,0.0088666928932071],[-0.04121396318078,0.011256347410381,-0.022444166243076]],[[-0.16088011860847,-0.12719275057316,-0.16731737554073],[0.18681439757347,0.1442149579525,-0.068021923303604],[0.096296958625317,0.034786440432072,0.065102383494377]],[[0.057900529354811,0.046628411859274,0.0020387226250023],[0.2121949493885,-0.0020874757319689,-0.023900644853711],[-0.0040415278635919,0.17024056613445,0.069999411702156]],[[0.16891211271286,0.08912118524313,-0.013717270456254],[-0.03796024620533,-0.10583704710007,-0.15772539377213],[-0.0086591262370348,-0.029550574719906,-0.042112778872252]],[[0.0040626362897456,-0.11144609749317,-0.18445926904678],[0.055827759206295,0.0011887943837792,-0.12533695995808],[-0.021844247356057,-0.094606555998325,0.042893275618553]],[[-0.16842825710773,-0.032865826040506,-0.087214395403862],[0.047666814178228,0.028029624372721,0.11476956307888],[0.055652040988207,-0.018909880891442,-0.11094366014004]],[[-0.00630390830338,0.12956178188324,-0.1755757778883],[-0.11758600175381,0.078558921813965,0.070215530693531],[-0.15876151621342,0.10844559967518,-0.034554816782475]],[[-0.35684305429459,0.03998850658536,0.08075375854969],[-0.17250595986843,0.013868068344891,-0.0090103019028902],[-0.27552834153175,0.23169732093811,-0.012847966514528]],[[-0.0038312973920256,0.041622664779425,7.0887972469791e-06],[0.050819247961044,-0.017950713634491,0.0059829200617969],[-0.0082306461408734,0.01361988298595,-0.039655230939388]],[[0.075874015688896,-0.043446473777294,-0.035792585462332],[-0.054854176938534,0.03498574718833,0.085327476263046],[-0.017743537202477,0.052821643650532,0.063713259994984]],[[-0.033122137188911,0.041985429823399,0.013880134560168],[-0.19885854423046,-0.21235424280167,0.016022246330976],[-0.08943198621273,0.16707068681717,0.042873337864876]],[[0.094606779515743,-0.10928703099489,0.25890323519707],[-0.12149941176176,0.078502282500267,-0.10314285010099],[0.19723433256149,-0.053460516035557,-0.020712856203318]],[[0.011889826506376,-0.11496937274933,-0.15514561533928],[0.077018857002258,0.026204757392406,-0.0041675167158246],[-0.031237632036209,-0.021044505760074,-0.0032948900479823]],[[0.0671456605196,-0.010671244002879,-0.030786139890552],[0.0029509328305721,0.19346015155315,0.062983877956867],[-0.11218514293432,-0.0060283513739705,-0.084916412830353]],[[-0.3939054608345,-0.38440972566605,-0.14439250528812],[0.29802748560905,0.086326651275158,0.014825079590082],[0.13354769349098,0.051462266594172,-0.065840311348438]],[[-0.17066812515259,0.0013228129828349,-0.08747523277998],[-0.056552987545729,0.10102461278439,-0.12610583007336],[-0.086388513445854,0.09521921724081,0.13112525641918]],[[-0.18058690428734,0.046975262463093,-0.039508331567049],[0.0028504312504083,-0.064824052155018,-0.17203596234322],[-0.13703788816929,0.015699503943324,0.11137075722218]],[[0.033692132681608,-0.065417610108852,0.00074219075031579],[-0.077049762010574,-0.0467664077878,-0.028708674013615],[0.013277426362038,-0.04712963104248,0.10274392366409]],[[0.121282979846,0.010232074186206,0.086653798818588],[0.10000456869602,-0.035945028066635,0.035687051713467],[0.064828902482986,-0.0674192532897,-0.044817771762609]],[[-0.14683812856674,0.080278158187866,-0.071772351861],[0.11555957049131,0.049441371113062,0.0025778631679714],[0.032279644161463,-0.060657516121864,-0.063636183738708]],[[-0.13520485162735,-0.20840682089329,-0.085266329348087],[-0.055051144212484,0.030298223719001,0.096780881285667],[-0.15452261269093,-0.068299382925034,0.074854344129562]],[[0.084026806056499,0.10678119957447,0.059903874993324],[-0.023763159289956,-0.032600685954094,-0.11093144863844],[-0.029385522007942,0.012740440666676,-0.048352781683207]],[[0.1769862473011,0.00025957784964703,0.16080085933208],[0.12194303423166,-0.23755370080471,0.0099127842113376],[-0.018020210787654,0.012689375318587,0.039992049336433]],[[0.0063222018070519,-0.16765859723091,-0.12660700082779],[-0.049565616995096,0.1410620957613,-0.016521351411939],[0.060921799391508,0.054189722985029,-0.038239847868681]],[[0.026310499757528,-0.25184282660484,-0.015213234350085],[0.0061895735561848,0.0076511516235769,-0.086209878325462],[0.22836674749851,-0.017548464238644,0.037988744676113]],[[-0.071749143302441,-0.09234257042408,2.1722749806941e-05],[-0.084087684750557,0.037745550274849,-0.092082433402538],[-0.053751837462187,0.037819378077984,0.08795627951622]],[[0.12083011865616,-0.18023906648159,-0.077117003500462],[0.086415745317936,-0.004156026057899,0.10761456936598],[-0.019495103508234,0.022780464962125,-0.061677735298872]],[[-0.044011909514666,0.15201431512833,0.089779675006866],[-0.0032025298569351,-0.12940412759781,0.028006013482809],[-0.0036096903495491,-0.059729158878326,-0.11309964954853]],[[-0.047542918473482,-0.041243251413107,0.040087442845106],[-0.064191102981567,0.17080715298653,-0.014884444884956],[-0.080755896866322,0.14109326899052,-0.0045292861759663]]],[[[-0.046887405216694,-0.12741422653198,0.0087793404236436],[0.047731723636389,0.069346122443676,0.009361756965518],[0.0086519755423069,-0.039055567234755,0.23670333623886]],[[-0.18602813780308,0.13020707666874,-0.015782129019499],[-0.45121049880981,0.016415264457464,0.042875051498413],[-0.066243574023247,0.17052926123142,-0.10348615050316]],[[-0.097841046750546,-0.1144645512104,-0.11201736330986],[-0.14321218430996,0.035426344722509,-0.050852846354246],[-0.14305721223354,0.0017484348500147,0.074690043926239]],[[-0.02928308211267,-0.12494870275259,-0.01305375341326],[0.014646500349045,-0.074731737375259,0.057313188910484],[-0.045410111546516,0.038878940045834,-0.10599958896637]],[[-0.093143336474895,-0.1131924316287,-0.01882384903729],[-0.052545741200447,-0.13250479102135,-0.11363802105188],[-0.036695033311844,-0.10780919343233,-0.0070873587392271]],[[-0.16833445429802,-0.16395342350006,-0.040050502866507],[-0.07207316160202,0.013684559613466,0.030990071594715],[0.043750803917646,0.065793797373772,0.035376317799091]],[[-0.0047013638541102,-0.17189806699753,-0.018619652837515],[0.054502654820681,0.01343269366771,-0.10948973149061],[-0.16950468719006,-0.1177688613534,-0.034323550760746]],[[0.052816595882177,0.20089310407639,-0.12572824954987],[0.048021297901869,-0.074392430484295,0.046465206891298],[0.17332795262337,-0.06254930049181,0.029777429997921]],[[-0.030514199286699,0.057123798877001,0.012985006906092],[0.059162110090256,-0.084326937794685,-0.052662871778011],[-0.14133806526661,-0.021742718294263,0.16236193478107]],[[-0.083620384335518,0.055349845439196,0.098624810576439],[-0.053684618324041,-0.060671009123325,0.059617042541504],[-0.028542483225465,0.019757423549891,0.0068292315118015]],[[-0.032139103859663,0.05859787389636,-0.042018342763186],[0.13320243358612,0.09824725985527,-0.011462586000562],[0.13086718320847,0.020522383973002,-0.056526925414801]],[[-0.38402536511421,0.23460191488266,0.040379241108894],[-0.18293529748917,0.09518451243639,0.10107553005219],[0.018931036815047,-0.11379478871822,-0.15185144543648]],[[-0.042798761278391,-0.031145343557,-0.042178373783827],[0.03162283077836,-0.16348806023598,-0.086218975484371],[0.22876141965389,-0.0075772264972329,0.086403094232082]],[[0.10654942691326,0.046327151358128,0.010736975818872],[-0.0098267830908298,-0.063032425940037,0.036991715431213],[0.020263181999326,0.012501359917223,-0.040696986019611]],[[-0.0069957659579813,0.009841188788414,0.093373991549015],[0.052301071584225,0.011231905780733,-0.18920591473579],[-0.016785046085715,-0.00012604438234121,-0.35309010744095]],[[-0.1273657232523,0.030543565750122,0.021338118240237],[0.030351920053363,0.01785603351891,0.038668833673],[-0.048644706606865,-0.0029248285572976,0.035832762718201]],[[0.1654124557972,-0.091913565993309,-0.22304505109787],[-0.086507879197598,0.041492979973555,-0.0632628723979],[-0.26277568936348,0.15814466774464,0.1004598364234]],[[0.035045295953751,-0.0039195488207042,0.057498570531607],[-0.014416046440601,-0.16537889838219,0.12231931835413],[-0.0533850453794,0.0044486131519079,-0.040740337222815]],[[0.16958487033844,-0.030609078705311,0.033487349748611],[0.062127191573381,0.0682452917099,-0.10149237513542],[-0.0036449441686273,0.049071475863457,-0.18093077838421]],[[-0.019624954089522,0.11712350696325,0.1359877884388],[-0.10170719772577,0.11714778095484,-0.09501301497221],[0.19553212821484,-0.13559447228909,0.011409333907068]],[[-0.0095549318939447,-0.13051125407219,0.024005321785808],[-0.033851820975542,0.014407707378268,-0.050390958786011],[-0.16268530488014,-0.00068106903927401,0.055776506662369]],[[-0.18673622608185,0.079808123409748,-0.11287453770638],[-0.09354092925787,-0.039362013339996,-0.031258523464203],[-0.17642356455326,0.034338589757681,0.095010511577129]],[[-0.011589611880481,0.024991173297167,-0.07248579710722],[-0.0820127800107,-0.0098504573106766,0.018769735470414],[-0.074402093887329,0.10211536288261,0.081194594502449]],[[-0.096662417054176,-0.052140530198812,-0.011905926279724],[-0.047737114131451,-0.12725323438644,0.097032897174358],[0.075161509215832,-0.25114530324936,0.076855316758156]],[[0.079452060163021,-0.063758663833141,-0.099801920354366],[-0.11541919410229,0.019178809598088,-0.030379913747311],[0.065845310688019,0.08855114877224,-0.0021107131615281]],[[-0.0076249940320849,-0.13751220703125,0.046497836709023],[-0.11427091807127,-0.01736094430089,0.099477201700211],[0.010672135278583,-0.20497739315033,-0.090565651655197]],[[-0.22399596869946,0.19923640787601,-0.23443548381329],[-0.23601827025414,0.020302940160036,-0.17049819231033],[-0.267822265625,0.045400649309158,0.014090490527451]],[[-0.0041486471891403,0.072923973202705,-0.0056027565151453],[0.041041564196348,-0.057644702494144,-0.10951378196478],[0.055267300456762,-0.11844258010387,-0.033743437379599]],[[0.069017574191093,-0.034259453415871,0.19582365453243],[-0.12447512149811,-0.049457471817732,-0.00054092821665108],[0.13575768470764,-0.18564507365227,-0.107292547822]],[[0.028260810300708,-0.060471963137388,0.062530793249607],[0.08895168453455,-0.023981940001249,0.0066548520699143],[-0.17363604903221,-0.11521361023188,-0.10756703466177]],[[-0.0086485650390387,-0.098006926476955,-0.063379056751728],[-0.014462520368397,-0.075465641915798,-0.041953142732382],[-0.034625474363565,0.086878754198551,0.0081819873303175]],[[0.086270496249199,-0.017501322552562,0.0665083527565],[-0.048023171722889,-0.071548387408257,-0.019574696198106],[0.074883610010147,-0.033197559416294,-0.012767280451953]],[[0.0012790434993804,-0.074748933315277,0.021262777969241],[-0.0061555430293083,0.20653855800629,0.056353148072958],[0.090255208313465,-0.098201885819435,0.025558855384588]],[[-0.08014902472496,0.054211873561144,-0.085148312151432],[0.056378796696663,-0.029713036492467,0.026901017874479],[0.169743090868,0.10746103525162,0.031430028378963]],[[0.06625871360302,-0.13928985595703,0.11689428240061],[-0.17407564818859,-0.1244305819273,0.12129331380129],[-0.0024671582505107,-0.052064210176468,-0.037725992500782]],[[-0.15231971442699,-0.019067680463195,-0.041069995611906],[0.13516271114349,-0.055658616125584,0.093596145510674],[0.063155256211758,-0.0010987549321726,-0.065408080816269]],[[0.053244095295668,-0.10253999382257,0.073804602026939],[-0.026337999850512,0.071397334337234,-0.1087015196681],[-0.021787917241454,0.15710861980915,-0.065934836864471]],[[-0.095436967909336,0.0049636075273156,0.03367954492569],[-0.1125810444355,0.043501161038876,-0.0028805278707296],[0.034834112972021,0.0050893658772111,-0.14111669361591]],[[0.063535831868649,-0.11785536259413,0.067703433334827],[-0.18819741904736,-0.032362643629313,0.045096687972546],[-0.059910107403994,-0.072181865572929,0.15647365152836]],[[0.020465580746531,0.01936861127615,-0.0663201212883],[-0.034331772476435,-0.015904411673546,-0.01907310821116],[-0.091009676456451,0.031137572601438,0.084241330623627]],[[0.069206438958645,0.034234542399645,0.12644071877003],[0.019630329683423,-0.014099768362939,0.084430769085884],[-0.012703825719655,-0.14491188526154,0.077242575585842]],[[0.032933611422777,0.049739737063646,0.042003527283669],[0.090254724025726,-0.011830151081085,-0.058071900159121],[-0.0015023469459265,0.19420146942139,-0.039257176220417]],[[-0.0018895814428106,-0.098361507058144,0.038594197481871],[0.17621241509914,-0.027759533375502,0.075889624655247],[0.091879762709141,-0.11481433361769,0.044616099447012]],[[0.053939312696457,-0.0011870077578351,0.0011878760997206],[-0.05465155094862,-0.054378867149353,-0.091402463614941],[0.081241250038147,0.015182199887931,0.01011620182544]],[[-0.24056632816792,-0.030125044286251,-0.098096340894699],[-0.087896898388863,-0.033678218722343,0.0089893201366067],[0.005796090234071,-0.015584326349199,0.20303590595722]],[[-0.19097194075584,0.041734267026186,-0.037357036024332],[-0.0033512092195451,-0.0099068824201822,0.029760699719191],[0.13086192309856,0.0051860418170691,0.049899607896805]],[[0.23175187408924,-0.021598927676678,-0.072133526206017],[-0.022996312007308,-0.061425786465406,-0.11820014566183],[0.15037757158279,-0.0076733445748687,-0.011066680774093]],[[0.050136487931013,-0.06023284047842,0.049472838640213],[0.070810325443745,-0.0059723653830588,-0.051702186465263],[0.146254748106,-0.1378373503685,-0.23783560097218]],[[0.067969411611557,-0.0032429997809231,0.010518003255129],[0.03304473310709,-0.043823633342981,0.10022451728582],[-0.12560780346394,0.042397458106279,0.059015057981014]],[[0.026109838858247,0.056980829685926,-0.085200592875481],[-0.18858663737774,0.074524089694023,-0.0015971011016518],[0.17018765211105,-0.056668344885111,0.0037613993044943]],[[0.18580624461174,-0.16616608202457,0.13345402479172],[0.052492402493954,-0.055168263614178,0.020086374133825],[-0.076519638299942,0.029812080785632,0.039413135498762]],[[0.10598639398813,-0.13221722841263,-0.0076899463310838],[-0.0015589465619996,0.094312757253647,-0.080193668603897],[-0.0036078239791095,0.045732967555523,-0.053856175392866]],[[0.045766592025757,-0.21408292651176,0.034709434956312],[-0.0090526528656483,0.10615460574627,0.034562010318041],[0.20909559726715,0.034457098692656,0.035063661634922]],[[-0.047260656952858,-0.028334479779005,-0.087362475693226],[0.033187258988619,0.21632598340511,-0.13910341262817],[-0.1372963488102,0.15977327525616,0.13802409172058]],[[-0.083500929176807,0.15526008605957,0.066006138920784],[0.1425618827343,-0.084881283342838,-0.072329394519329],[-0.022590387612581,-0.04754651710391,0.090733923017979]],[[0.080238729715347,0.0043278462253511,-0.0032910453155637],[0.041105482727289,-0.051255576312542,0.091506257653236],[-0.052536837756634,-0.080798231065273,-0.14201326668262]],[[0.019837381318212,-0.15616984665394,-0.026162169873714],[0.1061846986413,-0.25704190135002,-0.19357199966908],[0.11523664742708,-0.13539259135723,-0.0039303959347308]],[[-0.23314934968948,0.24514804780483,-0.079478710889816],[-0.26001849770546,0.02797969430685,0.052114371210337],[-0.22578302025795,-0.11324280500412,0.022315008565784]],[[-0.058092374354601,0.01495655067265,-0.077452659606934],[0.18378275632858,0.021697530522943,0.045097455382347],[-0.072461113333702,-0.10246053338051,0.01035691704601]],[[0.088601864874363,-0.018139503896236,-0.024477787315845],[0.00050328939687461,-0.062904305756092,0.048697236925364],[-0.060187146067619,0.040889248251915,0.12993913888931]],[[0.092890866100788,0.016151316463947,0.02144649811089],[0.0073330136947334,-0.059458337724209,0.076832354068756],[-0.11902871727943,-0.006111687514931,0.027559915557504]],[[0.029498048126698,-0.044678330421448,-0.11494429409504],[-0.16833357512951,-0.003666419768706,0.1439096480608],[0.00025548972189426,0.12399270385504,0.04383796453476]],[[-0.039691753685474,0.04595535993576,-0.11660875380039],[-0.1184679120779,-0.15012393891811,0.046263761818409],[-0.10600683838129,0.014148835092783,0.10540960729122]],[[0.15981778502464,-0.10598789900541,-0.028533101081848],[0.090812392532825,-0.028624225407839,0.026234284043312],[0.041844140738249,-0.014087286777794,0.018540827557445]]],[[[0.3061708509922,0.08046717941761,0.064999610185623],[-0.083281740546227,-0.23659464716911,-0.022183472290635],[0.206492587924,-0.051125068217516,0.052957866340876]],[[-0.13312904536724,0.026499247178435,-0.0039304285310209],[0.026193285360932,-0.097626984119415,-0.032629042863846],[0.087114952504635,0.14137135446072,0.053650084882975]],[[0.028247382491827,-0.00069848436396569,0.078083463013172],[-0.028953926637769,0.01749892346561,0.11354131251574],[-0.083949707448483,0.052995186299086,0.08648706972599]],[[0.068103410303593,0.092249125242233,0.067078821361065],[0.012030498124659,0.12175591289997,0.075304448604584],[-0.14114551246166,0.054507602006197,0.079597607254982]],[[-0.010418142192066,0.0097558554261923,-0.040912378579378],[0.16226491332054,0.065824441611767,0.12866435945034],[0.071398384869099,-0.023002963513136,-0.055168099701405]],[[-0.016757989302278,-0.096743866801262,0.11626891791821],[0.013611116446555,-0.071251451969147,-0.03307968378067],[-0.048304006457329,-0.073167704045773,-0.048267416656017]],[[0.02306822873652,-0.043385315686464,0.1167416498065],[0.023149246349931,-0.0628342628479,0.019160656258464],[0.037061251699924,0.036373149603605,0.0069322120398283]],[[0.19396644830704,0.058737486600876,-0.087506510317326],[0.058081313967705,-0.13243566453457,0.017226656898856],[0.09068837761879,0.025179203599691,-0.037386942654848]],[[-0.049185518175364,0.0372019931674,-0.016836483031511],[-0.095406763255596,-0.001544404309243,0.033743903040886],[-0.048604641109705,0.0080981282517314,-0.011920055374503]],[[-0.081345111131668,-0.12272982299328,-0.046356149017811],[0.14345502853394,0.12434054911137,0.12375631183386],[-0.013807875104249,-0.0043840170837939,0.028058905154467]],[[-0.15785025060177,-0.1307730525732,0.12319026142359],[-0.028640117496252,0.091372013092041,-0.012704919092357],[-0.050888620316982,-0.11997678130865,-0.091754905879498]],[[0.19270472228527,0.070457376539707,-0.048822212964296],[-0.062654845416546,-0.13123179972172,-0.052571009844542],[-0.077036708593369,-0.068343318998814,-0.15300641953945]],[[0.17359320819378,-0.0097849406301975,0.1387447565794],[-0.11675994098186,-0.026093237102032,-0.0046789962798357],[-0.018054397776723,0.082529291510582,0.06384389847517]],[[-0.10364828258753,-0.010191299021244,0.023935832083225],[0.049334358423948,0.045652344822884,0.025009544566274],[0.030660193413496,0.067218564450741,-0.1344600468874]],[[-0.011965346522629,0.067709632217884,-0.016942409798503],[0.0015789023600519,0.034113075584173,-0.11815568804741],[0.069768831133842,-0.072467871010303,-0.13346292078495]],[[-0.02775607816875,0.099944904446602,0.025097500532866],[-0.054220136255026,0.023754050955176,0.10978574305773],[0.21361318230629,-0.05863868817687,-0.02398594841361]],[[-0.11815746873617,0.045543752610683,0.17941543459892],[0.094898149371147,-0.056603390723467,0.12750655412674],[-0.19073031842709,-0.067317306995392,0.27779763936996]],[[-0.26429054141045,0.039512626826763,-0.11504107713699],[-0.11042954027653,0.066807709634304,-0.010535756126046],[-0.14669734239578,-0.11275725066662,0.013004214502871]],[[-0.21002353727818,-0.14963115751743,-0.093206383287907],[-0.16445656120777,-0.03993333876133,0.02587316185236],[0.007355289068073,0.09049016982317,-0.099183425307274]],[[0.089050225913525,-0.083061777055264,-0.011480441316962],[0.0061306902207434,0.061298031359911,0.037583000957966],[-0.04802493005991,0.029981670901179,-0.086239069700241]],[[-0.017520034685731,0.016527809202671,0.045703165233135],[0.058414109051228,0.082120224833488,0.073527783155441],[-0.15419845283031,-0.33356949687004,0.13344329595566]],[[-0.11496891826391,0.10699794441462,0.022910699248314],[-0.11951978504658,0.011876207776368,0.019065296277404],[-0.13938544690609,-0.019507920369506,0.0050930022262037]],[[-0.087294846773148,-0.017325770109892,0.042138863354921],[-0.23531968891621,0.097895681858063,-0.01414417847991],[-0.16524310410023,0.083523638546467,-0.10814106464386]],[[-0.015169685706496,0.027438908815384,-0.0041465084068477],[-0.13277678191662,0.0051424182020128,0.055326949805021],[-0.13084384799004,-0.029259964823723,0.095540076494217]],[[0.11759222298861,0.33806484937668,-0.029703915119171],[0.069559313356876,0.09335321187973,-0.048706814646721],[-0.048406448215246,-0.090588927268982,0.0026791845448315]],[[-0.049198761582375,-0.0021937754936516,-0.053753443062305],[0.066712714731693,-0.031277976930141,0.092156827449799],[-0.073430478572845,0.16728973388672,0.081078819930553]],[[-0.059868723154068,0.045767527073622,-0.10454089939594],[-0.14777161180973,-0.13723228871822,-0.11790689080954],[-0.11261723935604,-0.035460196435452,-0.17922250926495]],[[-0.044265199452639,0.015632281079888,0.071422174572945],[-0.023845102638006,-0.079073265194893,0.019782889634371],[7.1965208917391e-05,0.12842528522015,0.13538545370102]],[[0.082990400493145,0.096509471535683,0.023515744134784],[-0.011214780621231,0.051857210695744,0.090234689414501],[-0.068401768803596,-0.019047632813454,-0.17467887699604]],[[0.0013371101813391,0.11277289688587,0.1149412766099],[-0.12753780186176,0.055036194622517,0.043607998639345],[-0.28208369016647,-0.12285871803761,-0.04156593978405]],[[-0.014541080221534,-0.029826229438186,-0.13652604818344],[-0.063666597008705,-0.005501511041075,-0.043090175837278],[-0.11566918343306,-0.13602215051651,-0.033466320484877]],[[-0.008866423740983,0.024487715214491,-0.1310115903616],[0.045153621584177,0.095335625112057,0.2016891092062],[0.068282559514046,0.0089586097747087,-0.053309611976147]],[[0.057050686329603,-0.062764137983322,-0.077233634889126],[-0.02663491293788,-0.17662887275219,0.14240930974483],[0.10416575521231,0.061047580093145,-0.043459881097078]],[[-0.012085089460015,-0.0014892027247697,0.061758704483509],[-0.099172845482826,-0.011590621434152,-0.027296395972371],[-0.12639644742012,-0.011373379267752,0.060484174638987]],[[-0.096494898200035,0.12616558372974,0.16021408140659],[0.12630975246429,9.5422183221672e-05,0.050317514687777],[0.048890445381403,0.01923318579793,0.12355405837297]],[[-0.021810434758663,0.040624167770147,0.011043344624341],[-0.011246706359088,0.085240408778191,0.007700567599386],[0.10074872523546,-0.0043803188018501,-0.12518306076527]],[[-0.019450426101685,0.12559258937836,-0.036964062601328],[-0.1430392563343,-0.0054029007442296,-0.13925141096115],[-0.1423963457346,0.093734964728355,0.035512883216143]],[[-0.051888111978769,0.028379024937749,0.070142865180969],[-0.12126228958368,-0.094365976750851,-0.06514598429203],[0.24159377813339,-0.0068704481236637,0.023980701342225]],[[0.056968826800585,0.20146787166595,0.12254756689072],[0.036381289362907,0.10560700297356,0.012715771794319],[-0.15004283189774,-0.15557262301445,-0.14984771609306]],[[0.071825169026852,-0.1166925355792,0.2035578340292],[0.083251237869263,0.045275866985321,0.11333052814007],[-0.018381301313639,-0.073255218565464,-0.096011213958263]],[[-0.14379838109016,0.074617624282837,0.16917100548744],[0.024861583486199,0.029203297570348,0.0045491592027247],[0.057623893022537,0.017761040478945,-0.060762781649828]],[[0.047773513942957,0.20415115356445,0.012286247685552],[0.054038867354393,0.099280588328838,0.0074389050714672],[0.068077020347118,0.11186081171036,0.11952609568834]],[[0.12091233581305,0.019054496660829,-0.12534561753273],[-0.11785450577736,-0.095397040247917,0.035929288715124],[-0.18231353163719,-0.00032538967207074,-0.091487638652325]],[[-0.00040541312773712,-0.0068285358138382,-0.092269897460938],[0.047548022121191,0.034214276820421,-0.023192156106234],[-0.012428864836693,0.0036741686053574,-0.13285267353058]],[[0.055352471768856,-0.077716380357742,0.093033164739609],[0.05288241058588,-0.12877789139748,-0.12914530932903],[0.064402155578136,-0.0079970983788371,-0.22090029716492]],[[-0.011037768796086,0.11753446608782,-0.031588643789291],[-0.0022878884337842,0.12962412834167,-0.081741504371166],[0.033668432384729,-0.043335817754269,-0.11591879278421]],[[0.085343636572361,0.056985907256603,-0.022965155541897],[0.0077659450471401,-0.16230221092701,-0.0085191978141665],[0.1156308427453,0.20235015451908,0.05884575843811]],[[0.0083302957937121,0.038623917847872,0.065457083284855],[-0.028301209211349,-0.002642190316692,-0.039200939238071],[-0.0070265303365886,-0.13452625274658,0.11509925127029]],[[0.0041949995793402,0.02736665867269,0.1174246147275],[-0.062363103032112,0.037448141723871,0.031554326415062],[-0.0085140895098448,-0.18004716932774,-0.051680210977793]],[[0.024407882243395,0.063106343150139,0.011290886439383],[0.066201597452164,-0.015382905490696,-0.0021947752684355],[0.0053815799765289,0.10225033015013,0.066577188670635]],[[-0.26552763581276,-0.010411866009235,0.11277517676353],[-0.074803039431572,-0.12650792300701,0.067788653075695],[0.01964302547276,0.11113616079092,0.027868283912539]],[[-0.069414898753166,-0.027655318379402,-0.27489230036736],[-0.025540255010128,0.1778177022934,0.034923247992992],[0.058475077152252,-0.087591171264648,-0.10867157578468]],[[0.001131069730036,-0.12717847526073,0.045723222196102],[0.0014612954109907,-0.037251595407724,0.12538933753967],[0.030057834461331,0.008243128657341,0.20608940720558]],[[0.18842919170856,-0.047776330262423,-0.12217005342245],[0.098544575273991,0.023235097527504,0.11662552505732],[-0.040714398026466,0.0447908192873,-0.028774354606867]],[[0.1099251806736,0.029436677694321,-0.054386533796787],[0.029629150405526,-0.040738858282566,-0.015655716881156],[-0.23304897546768,-0.034181836992502,0.10998099297285]],[[-0.11044532805681,-0.059558089822531,-0.08062869310379],[-0.05214087292552,0.13231758773327,-0.027534361928701],[-0.038215905427933,-0.021706642583013,-0.045416701585054]],[[0.099623054265976,0.13359253108501,0.070341154932976],[-0.04945021495223,0.016763646155596,-0.06200822815299],[0.028376257047057,0.010950247757137,-0.13845044374466]],[[0.066189542412758,0.043738979846239,0.11558952182531],[0.12660767138004,-0.009876262396574,-0.13779582083225],[0.11360189318657,-0.037331365048885,-0.11058577895164]],[[-0.0083391880616546,0.046832598745823,0.1140258461237],[-0.055734947323799,-0.044042650610209,-0.026419810950756],[-0.019117156043649,-0.02509718760848,0.015145163983107]],[[0.081589542329311,0.031040551140904,0.053875260055065],[0.01344717014581,-0.0091173481196165,-0.093372836709023],[0.28255355358124,-0.206867441535,0.015103909187019]],[[-0.20655016601086,0.037570849061012,-0.021166088059545],[-0.029028790071607,0.047709371894598,0.048446621745825],[-0.081446580588818,0.012915894389153,-0.12950010597706]],[[0.070158250629902,0.06261170655489,0.10325566679239],[-0.13159690797329,-0.053386714309454,0.031662240624428],[-0.32385465502739,-0.20847690105438,0.055349782109261]],[[0.013214596547186,0.087906084954739,0.0073846764862537],[0.055933889001608,-0.15195097029209,0.017841378226876],[-0.052828125655651,-0.0068796188570559,0.039291046559811]],[[0.042604468762875,-0.21976847946644,-0.0019579252693802],[-0.1650423258543,-0.055839568376541,-0.0021421939600259],[0.023365942761302,-0.096263103187084,-0.057945352047682]]],[[[-0.073653854429722,-0.019766362383962,0.073610782623291],[-0.041685201227665,-0.033754970878363,0.016014805063605],[-0.016492087393999,-0.027313902974129,-0.059138771146536]],[[-0.051233425736427,0.034604605287313,-0.075612232089043],[0.11682847887278,-0.024745490401983,-0.0597815066576],[0.0038052527233958,0.0059807458892465,0.11282415688038]],[[0.019299460574985,0.12931980192661,0.12632796168327],[-0.074521601200104,-0.17049621045589,0.039323460310698],[-0.10637940466404,0.028342187404633,0.14474534988403]],[[-0.070344597101212,-0.078272834420204,-0.091957561671734],[0.035164754837751,0.032006528228521,0.12367704510689],[-0.01044431142509,-0.059825945645571,-0.19641578197479]],[[0.054237142205238,-0.060804206877947,0.089689031243324],[0.061885967850685,-0.04000449180603,0.12340118736029],[-0.10112827271223,-0.20032911002636,-0.18077710270882]],[[0.043207183480263,0.11673387885094,-0.0033081804867834],[-0.050530504435301,0.026083461940289,0.11422965675592],[-0.023494943976402,0.04147057980299,-0.015159451402724]],[[-0.061266295611858,0.0071432539261878,-0.0063253538683057],[-0.099546931684017,-0.036905314773321,-0.023238258436322],[-0.099485360085964,-0.079315543174744,-0.076388239860535]],[[-0.032124426215887,-0.049028433859348,-0.18682809174061],[0.0086822584271431,0.018374212086201,0.11265831440687],[0.073947496712208,0.13527390360832,-0.056561563163996]],[[0.040658675134182,-0.077152386307716,-0.065242193639278],[0.018696319311857,0.029760701581836,-0.090562395751476],[-0.024504624307156,-0.05123321339488,0.057242155075073]],[[0.071485035121441,0.11284938454628,0.20382933318615],[0.0041836816817522,-0.064557582139969,-0.022627666592598],[-0.091093719005585,-0.074222110211849,0.22672402858734]],[[0.010952398180962,0.011528740637004,-0.10880932211876],[0.15260949730873,0.085468508303165,-0.013453191146255],[0.027175726369023,0.022501016035676,0.072946764528751]],[[-0.056235484778881,-0.1077209636569,0.072479292750359],[-0.051436364650726,-0.19732543826103,-0.07801104336977],[-0.096294738352299,-0.076007522642612,0.036046121269464]],[[-0.07824882119894,-0.14648596942425,-0.087320476770401],[0.066496752202511,-0.13982933759689,0.021781090646982],[0.16466575860977,-0.017032522708178,-0.11561158299446]],[[-0.040740169584751,0.046695288270712,-0.10446715354919],[0.062493145465851,0.050827484577894,0.081441953778267],[0.029966589063406,0.046671163290739,0.1918767541647]],[[-0.14330360293388,-0.1779073625803,-0.27846392989159],[-0.029047379270196,-0.010047408752143,-0.084838196635246],[-0.12454741448164,0.073578685522079,0.082545153796673]],[[0.039260964840651,0.00041230535134673,0.007432040758431],[0.10798911750317,0.1489469408989,0.15221498906612],[0.012707053683698,0.014523141086102,-0.02456770837307]],[[0.044147931039333,-0.028645323589444,-0.13251359760761],[-0.24227713048458,-0.10718359053135,0.10818013548851],[0.010229118168354,-0.03831547871232,-0.047166731208563]],[[-0.0062924576923251,-0.11816806346178,0.0072485557757318],[0.058331489562988,0.025970155373216,0.04390960931778],[-0.038543552160263,0.042244836688042,-0.19186013936996]],[[-0.11446446925402,-0.091101922094822,-0.019228124991059],[-0.087919041514397,0.061006214469671,0.20687633752823],[0.045872513204813,0.00061819684924558,0.12218563258648]],[[0.099263235926628,0.0085164280608296,0.11130005121231],[0.13055059313774,-0.060158673673868,-0.24179366230965],[0.043333247303963,0.04108963534236,0.054722845554352]],[[0.1086650416255,0.071546301245689,0.036014374345541],[-0.097502954304218,0.10212282091379,0.046118892729282],[-0.17207130789757,-0.11025067418814,-0.17550498247147]],[[-0.089522540569305,-0.00054436339996755,0.2048188149929],[-0.042577680200338,0.10625648498535,0.031668540090322],[0.0020877020433545,0.085971668362617,0.24155616760254]],[[-0.089194849133492,-0.17332737147808,0.027458962053061],[-0.017548577859998,-0.0019693248905241,0.13843604922295],[0.07762073725462,0.023562584072351,0.021343238651752]],[[-0.16167786717415,-0.011866322718561,0.092481821775436],[-0.075551398098469,-0.027268771082163,0.16174718737602],[0.037483092397451,0.026687985286117,0.019551059231162]],[[0.2005395591259,0.011099671944976,0.090870752930641],[-0.17723567783833,-0.19430476427078,0.060052387416363],[-0.055174004286528,-0.14849729835987,-0.24399717152119]],[[0.056972429156303,0.16013821959496,0.19124248623848],[-0.048262618482113,-0.075210690498352,-0.045069485902786],[-0.17608289420605,-0.16640025377274,-0.23945994675159]],[[0.051519632339478,0.10301119834185,-0.033228356391191],[0.032028395682573,-0.072007648646832,0.078907199203968],[0.081789009273052,-0.017236676067114,0.0080051347613335]],[[-0.21017996966839,-0.078258842229843,0.0070791891776025],[-0.24358171224594,-0.034783814102411,0.070955134928226],[-0.014496089890599,-0.013998087495565,0.061832398176193]],[[-0.08677265048027,0.01072090677917,0.020352924242616],[0.009618884883821,0.020881453529,-0.020393457263708],[0.15156437456608,0.00018775851640385,-0.12315203249454]],[[-0.12582947313786,-0.014231492765248,0.032743271440268],[0.072476372122765,0.015895657241344,0.017419485375285],[0.024573104456067,-0.14515316486359,-0.047311294823885]],[[0.14735813438892,0.22065149247646,-0.020479524508119],[-0.043513886630535,-0.1711492985487,-0.098537944257259],[0.076873674988747,-0.096012085676193,0.053684242069721]],[[0.030105613172054,0.015691356733441,0.023644227534533],[-0.04956478998065,0.045641034841537,-0.055866215378046],[-0.041213810443878,0.16154789924622,0.29564073681831]],[[0.0075810584239662,-0.039172310382128,-0.010899412445724],[0.1780756264925,0.05469649285078,0.070518635213375],[-0.085835874080658,-0.025613898411393,-0.15749269723892]],[[0.06388857960701,0.0010942947119474,-0.090866573154926],[-0.12024638056755,-0.15983486175537,-0.074831396341324],[-0.10496591776609,-0.080843918025494,-0.018791038542986]],[[-0.0035071366000921,-0.076134577393532,0.13931208848953],[0.066647984087467,-0.011596578173339,-0.080943137407303],[-0.046641517430544,-0.060660112649202,-0.15033386647701]],[[-0.16190658509731,-0.0057104816660285,-0.027629401534796],[-0.065390102565289,-0.066095091402531,-0.0092871421948075],[0.0011294310679659,0.09748612344265,0.10289546847343]],[[0.013778296299279,-0.10266524553299,0.24017478525639],[-0.048087853938341,-0.097564391791821,-0.067068599164486],[0.13036268949509,-0.047504298388958,0.049437239766121]],[[-0.065216541290283,-0.14403969049454,0.021326251327991],[0.11800607293844,0.0089675141498446,-0.097965344786644],[0.15956194698811,0.1017123311758,0.033866506069899]],[[-0.1178529933095,0.033662080764771,0.15295901894569],[0.043847065418959,-0.078152172267437,0.035427905619144],[0.014793813228607,0.005266756284982,0.02932601980865]],[[0.048729412257671,0.039328202605247,0.077487848699093],[0.021176211535931,-0.0034363984595984,0.042903102934361],[-0.013363551348448,0.043437507003546,0.01516011916101]],[[0.020151095464826,-0.098837979137897,-0.096849016845226],[0.053054660558701,0.15841597318649,-0.0035011656582355],[-0.085735894739628,-0.21100915968418,-0.064013496041298]],[[-0.087699398398399,-0.10518824309111,-0.03689743578434],[0.046434063464403,-0.00088243663776666,0.020691005513072],[0.06301774084568,0.013771235011518,-0.048303857445717]],[[0.018457286059856,0.071662344038486,0.035698592662811],[0.032588366419077,0.13800491392612,0.27126210927963],[-0.031346946954727,0.051612187176943,-0.11816918849945]],[[-0.072135381400585,-0.042502511292696,0.080203771591187],[-0.0049274042248726,-0.12526871263981,0.011761318892241],[-0.016281325370073,0.049328327178955,0.010225122794509]],[[-0.030890831723809,0.029024992138147,-0.065676093101501],[0.01581066660583,0.10591039806604,0.049496300518513],[-0.050107542425394,0.010231655091047,0.13699793815613]],[[-0.15773192048073,-0.066633850336075,-0.0020191862713546],[-0.16169223189354,-0.08245825022459,0.080032251775265],[-0.055527038872242,0.056016393005848,0.094837844371796]],[[0.078528575599194,-0.08480080217123,-0.045228570699692],[0.013092216104269,0.090030692517757,-0.065950818359852],[0.074851170182228,0.12382340431213,-0.1420174986124]],[[0.01693413965404,-0.050482619553804,0.043847694993019],[0.0012732740724459,0.057830478996038,0.045354031026363],[-0.023653265088797,0.0032281649764627,-0.059710472822189]],[[0.016803830862045,-0.076548233628273,-0.019084060564637],[-0.024146411567926,-0.22896626591682,0.052270695567131],[0.16694182157516,0.036244325339794,0.012497037649155]],[[-0.012332118116319,0.014097430743277,0.060223523527384],[-0.11627563089132,-0.067012645304203,-0.026128491386771],[0.049951873719692,0.019012786448002,0.074390575289726]],[[-0.053424470126629,0.094956450164318,0.13540931046009],[0.046924218535423,-0.043751712888479,-0.14401699602604],[0.01303196977824,-0.1081024184823,0.027963533997536]],[[-0.033871840685606,0.21180337667465,-0.10647140443325],[0.1477192491293,0.10265411436558,-0.0031384835019708],[-0.10085669904947,-0.25268283486366,-0.03614204749465]],[[-0.072022743523121,-0.09919261932373,-0.20938666164875],[0.0026222006417811,-0.035355914384127,0.033791813999414],[0.12372051179409,-0.036735575646162,0.0024324213154614]],[[-0.018965002149343,0.0016820935998112,0.096533767879009],[0.028545686975121,-0.073998093605042,0.019029857590795],[0.021478855982423,0.14758224785328,0.044524434953928]],[[-0.041487365961075,-0.093846768140793,-0.23735049366951],[-0.022204656153917,-0.076846204698086,-0.030603535473347],[0.087105892598629,0.030061349272728,0.14845126867294]],[[-0.01743633300066,0.027428707107902,-0.084990471601486],[0.051905203610659,-0.019383830949664,0.075524143874645],[0.072460651397705,0.05389316380024,0.023088930174708]],[[-0.033532381057739,-0.16925129294395,0.094577670097351],[-0.14903375506401,-0.029901264235377,-0.025885449722409],[-0.015465787611902,-0.11726876348257,0.11391949653625]],[[-0.039908941835165,-0.0045439661480486,-0.057881183922291],[-0.21119394898415,-0.11908157914877,0.12462108582258],[-0.12057765573263,-0.047816641628742,0.18112720549107]],[[0.14999602735043,-0.052235841751099,-0.097342774271965],[-0.0077571687288582,-0.044466122984886,-0.1245529577136],[0.14752066135406,0.16209460794926,4.668330802815e-05]],[[0.13216696679592,0.094202481210232,0.027451263740659],[0.113589592278,-0.00076413090573624,0.0072263600304723],[-0.13968320190907,0.13782729208469,-0.029770493507385]],[[-0.12873376905918,-0.081293895840645,-0.15609732270241],[0.01206565182656,-0.023205604404211,0.075753316283226],[-0.019147332757711,0.0010487920371816,0.064531840384007]],[[0.039120174944401,-0.012472024187446,-0.25842425227165],[-0.15910944342613,0.086134299635887,-0.053409464657307],[0.010123179294169,0.17113648355007,0.028592322021723]],[[0.077433615922928,-0.04354353249073,-0.0033527589403093],[-0.058470666408539,-0.10654734820127,0.12634979188442],[-0.011018339544535,-0.014121906831861,-0.19328679144382]],[[-0.11069313436747,0.074498146772385,-0.17063881456852],[0.21570730209351,0.033250086009502,-0.055972687900066],[-0.16902732849121,-0.19827525317669,-0.029624279588461]]],[[[-0.020757850259542,0.13421826064587,0.11539151519537],[-0.13107737898827,-0.055801879614592,-0.13615383207798],[-0.038039408624172,0.10003888607025,-0.027347400784492]],[[0.036554910242558,-0.050377767533064,0.18074125051498],[-0.043281197547913,0.066416934132576,0.073775053024292],[0.10080446302891,-0.017832983285189,-0.10012317448854]],[[-0.13877408206463,0.090806052088737,0.13087227940559],[-0.13961207866669,-0.035227242857218,0.01417497266084],[-0.047008562833071,0.085800550878048,-0.10640938580036]],[[0.0069848615676165,0.042871542274952,-0.2050166875124],[-0.065932460129261,0.014798392541707,-0.18039794266224],[-0.024752171710134,0.053364258259535,-0.11782389879227]],[[0.01404092181474,-0.09590308368206,0.030469918623567],[-0.025576394051313,-0.032699536532164,-0.11130212247372],[0.066406548023224,-0.12171191722155,0.033108975738287]],[[-0.15324160456657,0.049913439899683,-0.1743006259203],[-0.027706598863006,-0.022611914202571,-0.21715769171715],[0.0087088458240032,0.12326353788376,-0.11981388926506]],[[-0.065873526036739,-0.11100652068853,0.11567813158035],[0.0031921330373734,-0.10751822590828,0.14224976301193],[0.024052124470472,-0.1257414072752,0.0075256312265992]],[[-0.0044201915152371,0.044045951217413,-0.026634594425559],[-0.069461897015572,-0.023374628275633,0.0035820414777845],[0.015820877626538,-0.018257446587086,-0.092415869235992]],[[0.036057285964489,-0.030443243682384,-0.055602163076401],[0.018219266086817,-0.068374879658222,-0.007374616805464],[-0.046327974647284,0.12547735869884,0.0011473910417408]],[[-0.0062461555935442,-0.050531085580587,-0.034013479948044],[-0.0054625361226499,-0.0506098754704,-0.098561264574528],[-0.054984964430332,0.016532056033611,-0.11213061213493]],[[-0.076584294438362,0.1359381377697,-0.0017019468359649],[0.051615830510855,0.068652801215649,-0.060567196458578],[-7.3174574936274e-05,-0.0021998165175319,-0.10483976453543]],[[-0.014737439341843,0.049673546105623,-0.051836736500263],[-0.043739434331656,0.0089287534356117,0.0070062065497041],[-0.09368360042572,-0.18385368585587,0.068677961826324]],[[-0.0010540664661676,-0.12898017466068,-0.0683953166008],[-0.0023052589967847,0.0051279915496707,-0.065969869494438],[0.0076727578416467,-0.011195463128388,-0.082057222723961]],[[0.12230551987886,0.029887774959207,-0.016128364950418],[0.0089934095740318,0.01354621630162,0.1257591843605],[0.034179337322712,-0.080682836472988,0.085552483797073]],[[0.079343840479851,-0.011473109014332,-0.098179563879967],[-0.10973431915045,0.044502660632133,0.011873575858772],[0.12938347458839,-0.20917059481144,0.071312822401524]],[[0.02761947363615,0.031311996281147,0.06616173684597],[0.0461092479527,-0.057422142475843,0.046819444745779],[0.042854726314545,0.064927510917187,0.039972636848688]],[[0.17590296268463,-0.060498479753733,0.061810337007046],[-0.030951671302319,0.10306739062071,0.041395120322704],[-0.11375489830971,0.081295348703861,0.24532087147236]],[[0.018959498032928,-0.010465567931533,-0.054626986384392],[0.044795647263527,-0.025539718568325,-0.073118418455124],[-0.0074178702197969,-0.049415223300457,0.018660668283701]],[[0.066923148930073,0.045593742281199,-0.0063848257996142],[0.054473616182804,-0.0055149886757135,0.019021043553948],[0.031353466212749,-0.044756814837456,0.019241120666265]],[[0.01593179628253,-0.0061382129788399,0.085647411644459],[-0.026401750743389,0.0056701968424022,0.07303424924612],[-0.032816980034113,0.0036895424127579,-0.12696786224842]],[[0.022923681885004,-0.017620053142309,0.066675297915936],[-0.010732759721577,-0.15088847279549,0.038271475583315],[0.11375921219587,-0.12601156532764,0.060271326452494]],[[0.073592036962509,-0.062017921358347,-0.026792066171765],[0.052776727825403,-0.17894527316093,-0.094248674809933],[-0.11468507349491,0.047612860798836,-0.15884265303612]],[[-0.030503582209349,0.066952206194401,-0.1669078618288],[-0.043298415839672,-0.0089743668213487,-0.088787660002708],[-0.086886882781982,-0.032888073474169,0.04437754675746]],[[-0.016543416306376,0.094878017902374,-0.051993280649185],[-0.086795538663864,0.060984693467617,-0.021752147004008],[-0.20942367613316,-0.01582801900804,0.031985510140657]],[[-0.058048989623785,-0.044301420450211,-0.06104739010334],[-0.043373018503189,0.054907042533159,-0.13128304481506],[0.048659037798643,0.026367526501417,-0.15961526334286]],[[-0.081463053822517,-0.10909204185009,0.053596042096615],[0.046587761491537,-0.069683380424976,0.017806800082326],[0.037531975656748,0.017301578074694,0.057217754423618]],[[0.0055767637677491,0.038894332945347,0.023356823250651],[0.016429286450148,-0.0030046629253775,0.034360758960247],[-0.043294038623571,-0.11004494875669,-0.080412790179253]],[[0.15643714368343,-0.12814131379128,0.11271185427904],[0.037402898073196,-0.028107725083828,-0.16250889003277],[-0.18416272103786,0.038559567183256,-0.17548224329948]],[[-0.035246968269348,0.091807872056961,-0.20591114461422],[-0.072827011346817,0.11129968613386,-0.056830294430256],[-0.022523401305079,-0.06032058596611,0.0062015969306231]],[[-0.056576933711767,-0.035231608897448,-0.19318175315857],[0.022183183580637,0.047288935631514,-0.11127646267414],[-0.0509202927351,-0.025567533448339,-0.073172710835934]],[[-0.042398821562529,0.017925070598722,0.11750584840775],[0.13024243712425,-0.13145050406456,0.18436181545258],[0.02627538330853,-0.068672388792038,0.16301949322224]],[[0.10750959068537,0.014358157292008,-0.048202000558376],[0.068778738379478,0.044322703033686,-0.10196025669575],[0.00039596221176907,-0.19213478267193,0.11044784635305]],[[0.096746385097504,-0.15419618785381,-0.13636763393879],[-0.051443602889776,-0.040419064462185,-0.10118433833122],[-0.032707147300243,-0.10668334364891,0.050012845546007]],[[-0.019388863816857,-0.13007365167141,0.09490655362606],[-0.049019675701857,0.0007221921114251,-0.043940931558609],[0.032049294561148,0.0089610787108541,-0.15238519012928]],[[-0.12086454033852,0.0046255858615041,0.055219311267138],[-0.065540678799152,-0.015887664631009,0.071893818676472],[-0.035232249647379,0.015480005182326,0.072402961552143]],[[0.017535481601954,-0.079766198992729,0.054600708186626],[0.039366323500872,0.063722893595695,-0.042147152125835],[0.05147797241807,-0.024721823632717,-0.17700390517712]],[[-0.14803613722324,0.082270748913288,-0.039501585066319],[-0.0081703066825867,-0.078736886382103,-0.0076986546628177],[0.15172383189201,-0.21305069327354,0.15142484009266]],[[-0.14158298075199,-0.059792708605528,0.12520308792591],[0.10353239625692,-0.0093230614438653,0.11032463610172],[0.13716846704483,-0.053830485790968,-0.0039375177584589]],[[-0.041956607252359,-0.083766803145409,0.022422408685088],[0.024389548227191,0.00076738226925954,0.030856672674417],[0.079829499125481,0.06260159611702,-0.21209804713726]],[[0.058603160083294,-0.099256008863449,0.01457785628736],[-0.023925982415676,-0.12815254926682,-0.090350925922394],[0.082525379955769,-0.091030552983284,0.024611037224531]],[[0.1446481347084,-0.078090734779835,0.053203497081995],[-0.038491174578667,0.028963513672352,-0.010946809314191],[0.088810339570045,0.032065581530333,0.064427137374878]],[[0.077762380242348,-0.04166118055582,0.027935033664107],[0.0080606741830707,-0.20282196998596,0.19970138370991],[0.15326681733131,-0.20326772332191,0.23603819310665]],[[0.056388974189758,-0.065878033638,0.11456503719091],[0.079771868884563,-0.043856862932444,0.059093862771988],[0.0250497572124,-0.0063148764893413,-0.014777704142034]],[[-0.046191174536943,-0.0066262818872929,0.055359702557325],[-0.016259767115116,0.013454901054502,0.017061034217477],[-0.0090360529720783,-0.031585711985826,-0.029140504077077]],[[0.047002743929625,-0.085383608937263,0.077128417789936],[-0.076065264642239,0.0030109349172562,0.043468546122313],[0.0085150375962257,0.056116420775652,-0.10497955977917]],[[-0.03163630887866,-0.067498281598091,0.060521226376295],[0.021181652322412,-0.10918439924717,0.042903013527393],[0.0080546112731099,-0.069265231490135,0.11347411572933]],[[-0.14422644674778,0.026428118348122,-0.091599322855473],[0.10429263114929,-0.025251980870962,0.077410988509655],[0.032867077738047,-0.094211600720882,0.082333780825138]],[[0.0068677184171975,0.022946290671825,0.026592280715704],[0.0095751713961363,-0.077028371393681,0.086117625236511],[-0.067141264677048,-0.20738235116005,-0.13821393251419]],[[-0.02625073865056,0.096245005726814,-0.095263250172138],[-0.00014155800454319,-0.17599499225616,0.0030388673767447],[0.11374764144421,0.011825453490019,-0.016163066029549]],[[-0.019654329866171,-0.095958776772022,-0.073179587721825],[-0.018412733450532,-0.10872807353735,-0.028866436332464],[0.038883749395609,-0.11616315692663,0.10105843096972]],[[-0.036178186535835,-0.019775774329901,0.12494366616011],[0.10039822757244,-0.027227971702814,-0.12772153317928],[0.097278542816639,0.092858731746674,-0.082036226987839]],[[-0.02893316373229,-0.17003659904003,0.12036257982254],[0.11744419485331,-0.2339241951704,0.054754842072725],[0.023161187767982,-0.093225792050362,0.1876936852932]],[[0.017497746273875,0.071533940732479,-0.069021493196487],[-0.14460256695747,-0.037302982062101,-0.00062526570400223],[-0.0098470123484731,-0.033679530024529,0.10824809223413]],[[-0.072618924081326,-0.010638458654284,-0.084080778062344],[0.072912864387035,-0.010336894541979,-0.038811210542917],[-0.026378778740764,0.065277948975563,-0.17990805208683]],[[-0.078603096306324,-0.014323376119137,-0.15138101577759],[0.020808001980186,-0.014450903050601,-0.022908676415682],[-0.085794545710087,0.022797150537372,0.047965731471777]],[[0.064383082091808,-0.13920101523399,0.17484024167061],[0.11321898549795,-0.21168297529221,0.052464462816715],[-0.049549926072359,-0.043079826980829,0.24720022082329]],[[0.013929642736912,0.040053553879261,-0.066630512475967],[-0.14692917466164,-0.02991096675396,-0.056355714797974],[-0.01027709338814,-0.06808515638113,-0.19167506694794]],[[-0.079842448234558,0.079206705093384,-0.072942189872265],[-0.10442842543125,0.015136701986194,-0.034065712243319],[-0.032726984471083,-0.049220517277718,-0.060361709445715]],[[-0.065742276608944,-0.12114153802395,0.13261149823666],[-0.050874251872301,-0.01533991843462,-0.037564393132925],[-0.030884191393852,0.040313027799129,-0.070111058652401]],[[-0.030712831765413,-0.10787334293127,-0.0085717486217618],[0.021485568955541,-0.032923676073551,-0.03553107380867],[0.049295086413622,-0.054056420922279,0.089501865208149]],[[0.13608446717262,-0.14654715359211,0.052903421223164],[-0.055360361933708,-0.17831966280937,-0.021845020353794],[0.03024722635746,-0.010082559660077,-0.036280170083046]],[[0.024214569479227,0.019915454089642,0.1415807902813],[-0.10419809818268,0.083122320473194,0.020829070359468],[-0.047024689614773,-0.16540002822876,-0.091512106359005]],[[-0.0052343849092722,0.0034835184924304,-0.15087901055813],[0.062988884747028,0.09780016541481,-0.0060118879191577],[-0.033787600696087,0.17392891645432,0.12149941921234]],[[-0.18413227796555,0.065627180039883,0.074085831642151],[0.039908859878778,-0.042133677750826,-0.12312299013138],[-0.1124769076705,-0.0046145734377205,-0.086435064673424]]],[[[-0.082041054964066,0.05870446562767,0.061091493815184],[0.11321100592613,0.18439167737961,0.045980423688889],[0.023850187659264,-0.014691777527332,-0.12656301259995]],[[-0.086716167628765,-0.098135255277157,0.085654050111771],[-0.025306437164545,0.037714462727308,-0.077422983944416],[0.10254817456007,0.1332101225853,0.01771760545671]],[[0.16394759714603,0.15664935112,-0.12287141382694],[0.044268373399973,0.049721870571375,0.070399165153503],[-0.2424318343401,-0.025550842285156,0.081576243042946]],[[0.051753271371126,-0.04318330436945,-0.17989599704742],[0.0048728552646935,-0.12076800316572,-0.22079035639763],[0.087338268756866,-0.042395189404488,0.086391821503639]],[[-0.074500516057014,-0.028665641322732,0.09696726500988],[-0.1259303689003,-0.082436174154282,0.068450927734375],[-0.02271668612957,-0.037289619445801,-0.11879039555788]],[[0.040343772619963,-0.088123992085457,-0.013633954338729],[-0.018846536055207,-0.034796342253685,-0.053325712680817],[0.096260577440262,-0.081191390752792,-0.26167339086533]],[[0.09744081646204,0.0040813875384629,-0.15283624827862],[-0.0030662771314383,0.054779332131147,0.15930247306824],[-0.18014308810234,0.0021339952945709,-0.11787488311529]],[[0.014960771426558,-0.093960270285606,0.021958423778415],[0.018845418468118,-0.039531644433737,0.12585984170437],[0.084642648696899,0.066079027950764,0.13054691255093]],[[0.019981820136309,-0.01182203553617,0.027147449553013],[-0.013777569867671,-0.053244341164827,-0.059615913778543],[-0.032369583845139,0.039224456995726,0.096412487328053]],[[-0.050944525748491,-0.027221010997891,0.088261052966118],[-0.063173443078995,0.019688928499818,-0.070774793624878],[-0.12173353135586,0.056336779147387,0.081017635762691]],[[-0.16444995999336,-0.030022595077753,0.069806814193726],[0.10456891357899,0.0068781399168074,0.086370475590229],[-0.0042044832371175,0.025783868506551,0.14626859128475]],[[7.5631629442796e-05,-0.080874986946583,-0.085939504206181],[-0.025680053979158,0.059337619692087,0.057703979313374],[0.097669042646885,-0.049771193414927,-0.060186594724655]],[[0.059022821485996,0.12552873790264,-0.073179438710213],[-0.090561427175999,-0.061275396496058,0.13282297551632],[-0.10782957822084,-0.17474856972694,0.066310375928879]],[[0.094346508383751,-0.034416262060404,0.015658840537071],[0.077239863574505,-0.0051681962795556,0.048677038401365],[0.0080863479524851,-0.026721529662609,0.095178969204426]],[[-0.042560677975416,-0.065025977790356,-0.052738565951586],[0.19015948474407,0.019518589600921,0.032134365290403],[0.08076598495245,-0.078946977853775,0.016968224197626]],[[0.12523719668388,0.093024335801601,-0.06248139962554],[0.069744579493999,-0.048710200935602,-0.088336974382401],[0.17333140969276,0.047720100730658,0.045611821115017]],[[-0.061328545212746,0.13260142505169,-0.085288278758526],[0.19492097198963,0.083910651504993,-0.15225212275982],[-0.018899265676737,-0.146275177598,-0.1234345883131]],[[0.10091722756624,0.036150600761175,-0.060975953936577],[-0.10078573971987,0.077668733894825,-0.044419497251511],[-0.041702076792717,-0.082395628094673,-0.26836398243904]],[[0.17840404808521,0.051198124885559,-0.099486887454987],[-0.033929269760847,-0.084788106381893,-0.11073237657547],[-0.22108682990074,0.037766195833683,-0.1247615814209]],[[-0.1166565194726,0.10904993861914,-0.09864779561758],[-0.020980723202229,0.049833029508591,-0.081453092396259],[-0.044644117355347,-0.079980298876762,0.0084036262705922]],[[0.077184662222862,0.039244271814823,-0.073148615658283],[0.0064894892275333,-0.19787134230137,-0.21821822226048],[-0.026830466464162,-0.013702362775803,0.11742559075356]],[[0.022271675989032,-0.0076481499709189,0.097323887050152],[-0.086082808673382,-0.053037028759718,-0.13939541578293],[0.12754152715206,0.14515313506126,0.089771568775177]],[[-0.10659195482731,-0.16066575050354,-0.059145223349333],[0.0077954712323844,-0.077884413301945,-0.013208293356001],[0.096709467470646,0.065863840281963,0.067412614822388]],[[0.040894597768784,0.034370593726635,-0.0052055022679269],[0.00082930747885257,-0.067700192332268,-0.15886205434799],[0.03076926805079,0.028935795649886,0.069064997136593]],[[-0.040783669799566,-0.024929156526923,0.081040441989899],[0.045282669365406,0.019434640184045,-0.070332184433937],[0.052054688334465,-0.15049935877323,-0.14011795818806]],[[0.09465679526329,0.15309889614582,0.021626548841596],[-0.17131820321083,0.06966146081686,0.059640999883413],[-0.084764093160629,-0.044053792953491,0.10523329675198]],[[-0.14737649261951,-0.036538675427437,-0.040098205208778],[-0.012388969771564,-0.054544653743505,0.16803127527237],[0.10513188689947,-0.05517091602087,-0.042641457170248]],[[-0.064655803143978,-0.068227700889111,0.085026152431965],[0.048322774469852,-0.036569312214851,0.10761091113091],[-0.031829718500376,-0.088957540690899,-0.10124067217112]],[[-0.057661511003971,-0.14490887522697,-0.0044881775975227],[-0.010179340839386,0.14970223605633,0.00068906607339159],[-0.25722858309746,-0.093415141105652,0.16998808085918]],[[-0.0079160546883941,0.023379741236567,-0.15865753591061],[0.059564143419266,-0.17476172745228,-0.056106716394424],[0.16112622618675,0.087346814572811,-0.031138064339757]],[[-0.15001453459263,-0.046248108148575,-0.086922764778137],[0.0036130060907453,0.087678305804729,0.064758382737637],[0.0032644304446876,0.038220781832933,-0.0040483218617737]],[[0.086219370365143,-0.17843471467495,-0.0026038757059723],[0.014430554583669,-0.066334262490273,-0.093489959836006],[-0.007843398489058,0.080774396657944,0.10356143116951]],[[0.15496073663235,0.050431650131941,0.086873918771744],[-0.089369803667068,-0.11267055571079,-0.22980315983295],[-0.12091819196939,-0.054096192121506,0.019455378875136]],[[-0.027663448825479,-0.054440420120955,-0.011938377283514],[0.044269435107708,-0.011687307618558,-0.059000179171562],[0.054620400071144,0.052900642156601,0.019624967128038]],[[-0.19613228738308,-0.085310004651546,0.038803149014711],[-0.013490570709109,0.02009111456573,-0.18747758865356],[0.0011237325379625,0.034389141947031,0.055940367281437]],[[-0.19887435436249,-0.044217482209206,-0.081874452531338],[-0.031352840363979,0.053290106356144,0.032463729381561],[0.10386122763157,0.076437100768089,-0.034297421574593]],[[0.15256777405739,-0.060964748263359,-0.18058040738106],[-0.11184615641832,-0.10881146788597,0.19226701557636],[0.06070389226079,-0.060199614614248,-0.19789984822273]],[[-0.1091276332736,-0.16696591675282,0.22556704282761],[0.092751927673817,-0.0013820573221892,-0.17300356924534],[0.082864433526993,0.016786424443126,-0.071438431739807]],[[0.023004537448287,0.16040104627609,0.1735554933548],[0.1772336512804,0.10336573421955,-0.12225336581469],[-0.24753072857857,-0.099181912839413,-0.065990589559078]],[[-0.072562403976917,-0.011968148872256,-0.051572538912296],[-0.024350898340344,-0.065790355205536,-0.051186934113503],[0.015336126089096,0.029701240360737,0.13553862273693]],[[0.066689878702164,0.086852073669434,0.020356848835945],[-0.023149773478508,0.0065401764586568,-0.13075728714466],[-0.15936374664307,-0.031296763569117,0.036996267735958]],[[0.030303809791803,-0.13117080926895,-0.16479063034058],[-0.088868424296379,0.15475282073021,-0.023547142744064],[0.087733641266823,-0.019544621929526,0.22559790313244]],[[-0.083501949906349,0.079629696905613,0.045679315924644],[-0.057316575199366,-0.013725388795137,-0.069859728217125],[-0.024033779278398,-0.00065262103453279,0.13505394756794]],[[-0.013635928742588,0.065201714634895,-0.13780348002911],[0.013872586190701,0.061223048716784,0.057591430842876],[-0.0021499262657017,-0.043546710163355,0.011430290527642]],[[-0.022889897227287,0.034292690455914,-0.03374046087265],[0.021170044317842,-0.025165418162942,0.062459159642458],[0.022936828434467,0.18943202495575,-0.11154896020889]],[[0.10313804447651,0.026505069807172,-0.11961118876934],[0.041376948356628,-0.025190729647875,0.069881908595562],[0.046029485762119,0.069691106677055,-0.034582518041134]],[[0.010862471535802,-0.044886756688356,-0.072577729821205],[-0.030904913321137,0.22525289654732,0.10098353028297],[-0.086901642382145,-0.056329090148211,-0.10196533799171]],[[0.055276166647673,-0.016207125037909,-0.078026086091995],[0.20050913095474,-0.11273292452097,-0.0098187830299139],[-0.055512879043818,0.071684651076794,-0.13229495286942]],[[0.075549207627773,0.22098727524281,0.018984010443091],[0.0042095906101167,0.012604899704456,0.19184966385365],[-0.19680890440941,-0.27430784702301,-0.057227283716202]],[[0.033287364989519,-0.079510033130646,-0.093508489429951],[-0.18942582607269,-0.25113642215729,0.010443657636642],[0.16674447059631,0.12341484427452,-0.061810176819563]],[[-0.2261275947094,-0.13597087562084,-0.071932077407837],[-0.018807552754879,0.041762288659811,0.13129654526711],[-0.12498255074024,-0.0024099545553327,0.07632802426815]],[[0.022836077958345,0.05756439268589,-0.058176249265671],[-0.023416485637426,-0.094153493642807,-0.035364583134651],[0.018522536382079,0.14979347586632,-0.054075624793768]],[[-0.077413961291313,0.0046092397533357,0.13194936513901],[-0.046324379742146,-0.12395190447569,-0.010180522687733],[-0.058700103312731,0.04877358302474,0.22446155548096]],[[-0.028254885226488,-0.063207618892193,-0.12507730722427],[0.025789864361286,0.097453288733959,-0.13283395767212],[0.028269458562136,-0.067825354635715,-0.050025418400764]],[[0.018427580595016,0.066250070929527,0.042131781578064],[-0.093249753117561,-0.084410451352596,0.076575674116611],[0.079445205628872,0.047294121235609,0.032448403537273]],[[-0.060438502579927,-0.20064629614353,-0.097907245159149],[-0.093754090368748,-0.0095954798161983,0.10766983777285],[0.14760930836201,0.068097561597824,-0.0061656143516302]],[[0.0075522819533944,0.052535001188517,-0.0085749719291925],[-0.058452267199755,0.00097931071650237,-0.13500337302685],[-0.031491700559855,-0.087021708488464,-0.060701876878738]],[[-0.033403400331736,0.061529368162155,0.072041153907776],[-0.16539186239243,-0.025679601356387,0.085319958627224],[-0.025928458198905,0.029372612014413,0.039618093520403]],[[0.031331092119217,0.0052453242242336,0.017515504732728],[-0.06932744383812,0.03393965959549,-0.025515675544739],[0.11798673868179,-0.051573522388935,0.11233831942081]],[[-0.021759970113635,-0.057649925351143,0.046289674937725],[0.1617978811264,-0.077877581119537,-0.066645860671997],[0.11748122423887,-0.074999235570431,0.11809816211462]],[[-0.25008109211922,-0.010529490187764,-0.036819074302912],[0.058283638209105,-0.023427167907357,-0.01524739805609],[-0.14665827155113,0.0032737357541919,-0.11913098394871]],[[-0.066248200833797,0.027907483279705,-0.14502972364426],[0.097191855311394,0.013689683750272,-0.18693348765373],[0.0070128794759512,-0.026447946205735,0.13951514661312]],[[-0.028506008908153,0.11696979403496,-0.018743354827166],[-0.060996122658253,-0.095393054187298,-0.064321883022785],[0.088046215474606,0.054249253123999,-0.010745024308562]],[[-0.040586452931166,-0.22639541327953,-0.0066469958983362],[-0.02233374491334,0.058137889951468,-0.12992069125175],[-0.017181865870953,-0.0081905480474234,-0.20096938312054]]],[[[0.040251992642879,0.12804366648197,0.12020193040371],[-0.015524278394878,0.098833091557026,-0.18387749791145],[-0.019622253254056,-0.0059388778172433,0.088140815496445]],[[0.12055852264166,-0.10526931285858,0.15945479273796],[-0.11310888826847,-0.13443297147751,-0.10936689376831],[0.19617474079132,0.04868533834815,0.077726677060127]],[[-0.030197005718946,0.067732453346252,0.0040476648136973],[0.027820175513625,0.056446477770805,-0.043122783303261],[-0.12046478688717,0.0043226121924818,0.029548579826951]],[[0.1031037196517,0.0081172240898013,0.016765154898167],[-0.047666940838099,-0.0031445857603103,-0.049008477479219],[-0.087135806679726,0.0772745013237,0.063808619976044]],[[0.11931397020817,0.0098562091588974,-0.11099852621555],[0.042087662965059,0.048704024404287,-0.087187610566616],[-0.0044212816283107,-0.056642051786184,-0.018758304417133]],[[-0.20621943473816,-0.18355241417885,-0.11677573621273],[0.090167962014675,0.04357698187232,-0.077877432107925],[0.0064442665316164,-0.12566314637661,-0.016118509694934]],[[-0.18549008667469,-0.075860276818275,-0.18813130259514],[0.21996010839939,0.15332314372063,0.0053361603058875],[-0.0377490632236,-0.1084773465991,-0.14848285913467]],[[0.098426438868046,0.041005417704582,-0.015464249998331],[0.028697596862912,-0.036643326282501,0.089417681097984],[-0.06342851370573,0.014318889006972,-0.054217390716076]],[[-0.048759073019028,0.060143541544676,-0.026436610147357],[0.034342084079981,0.00013113755267113,0.02836525067687],[-0.079936325550079,0.016752580180764,0.0056844186037779]],[[0.011224349960685,0.015465664677322,-0.11211957782507],[-0.1784619987011,0.0043865256011486,-0.067355833947659],[0.017119878903031,0.03157215565443,-0.053065955638885]],[[0.039049606770277,0.00032467540586367,0.023540023714304],[0.050925265997648,0.066152364015579,0.0062124920077622],[0.015774261206388,0.011897284537554,-0.19773195683956]],[[0.064006634056568,-0.05497457832098,-0.14025999605656],[0.036302845925093,0.15414546430111,0.18958994746208],[-0.033852461725473,-0.038144011050463,0.040999758988619]],[[-0.07412301748991,0.057160120457411,-0.05925652012229],[-0.069308742880821,0.054881524294615,0.13018092513084],[-0.052733186632395,0.04747474193573,-0.17570701241493]],[[0.036749344319105,-0.096324138343334,-0.059682369232178],[0.074742622673512,0.029545817524195,-0.037215352058411],[-0.11969492584467,0.0431695766747,0.0064531387761235]],[[-0.0086793089285493,0.13864646852016,-0.068611957132816],[0.034185942262411,0.085311062633991,0.13134728372097],[-0.091193400323391,-0.13938838243484,-0.1033041998744]],[[-0.065541192889214,-0.19744557142258,-0.06657737493515],[0.011677186004817,-0.063951663672924,0.043873682618141],[0.13317264616489,-0.13855442404747,-0.010295255109668]],[[0.041164252907038,-0.10575845837593,0.14310330152512],[0.30822592973709,0.01641258597374,-0.021373158320785],[0.11691531538963,-0.056048151105642,-0.049080282449722]],[[0.05923917889595,-0.15281850099564,0.069285102188587],[-0.11249376833439,-0.20260190963745,0.03987929970026],[-0.049289204180241,0.0075532947666943,-0.0063432138413191]],[[-0.04344903677702,0.047326911240816,0.17096315324306],[-0.115309484303,-0.060018990188837,-0.028763329610229],[-0.1596812158823,-0.0049540554173291,0.087160371243954]],[[-0.18435817956924,0.00063558324472979,-0.010138158686459],[-0.05512098968029,0.14834122359753,0.18014635145664],[-0.070076651871204,0.15692420303822,0.097287207841873]],[[-0.13023872673512,-0.11298547685146,-0.023225840181112],[0.071051754057407,-0.017052866518497,-0.073357000946999],[0.098165072500706,-0.02779476903379,0.12389232963324]],[[0.038978286087513,0.14728057384491,-0.15901511907578],[-0.10508400946856,0.086492516100407,0.071743406355381],[-0.076956540346146,0.029705747961998,0.13591632246971]],[[-0.058539010584354,-0.0891238078475,-0.082517728209496],[-0.022370448336005,-0.018395191058517,0.018218560144305],[-0.021987460553646,0.016615573316813,0.0059627857990563]],[[-0.072776511311531,-0.099614135921001,0.062507651746273],[-0.1153441593051,0.034567043185234,0.014514695852995],[-0.01285573747009,0.16726958751678,0.058519639074802]],[[0.1558238863945,0.067777797579765,0.090728215873241],[0.036331102252007,-0.015154697932303,-0.021195778623223],[-0.040890112519264,0.12901563942432,-0.12733094394207]],[[-0.073676146566868,-0.14299841225147,-0.031872559338808],[-0.16545966267586,-0.051585953682661,-0.054978996515274],[-0.11344760656357,-0.012732481583953,0.16527979075909]],[[-0.023718398064375,-0.14741945266724,-0.15234425663948],[0.040416542440653,0.098588697612286,0.042256072163582],[-0.050660341978073,0.050620466470718,-0.036538507789373]],[[-0.081474356353283,0.064193733036518,-0.12382760643959],[0.034357469528913,0.072737373411655,0.0096552139148116],[-0.10418874025345,0.0043437420390546,0.012200684286654]],[[-0.12999230623245,0.034193214029074,0.00025554868625477],[-0.18865685164928,-0.00097072910284624,0.16237612068653],[-0.16421264410019,0.23958611488342,-0.032881297171116]],[[-0.015839049592614,-0.020880281925201,0.018301177769899],[0.014697961509228,-0.052190825343132,0.014831303618848],[0.12190236896276,0.1023803204298,0.063857175409794]],[[-0.023156438022852,0.016157438978553,-0.081323035061359],[-0.0050878608599305,0.02618520706892,0.21639205515385],[-0.10648535937071,0.1963486969471,-0.0080752316862345]],[[0.0084985112771392,0.057237774133682,0.019176337867975],[-0.231235653162,0.13114930689335,-0.12222614884377],[0.13071873784065,0.13691128790379,0.033755380660295]],[[0.096916131675243,-0.048130441457033,-0.093545272946358],[0.00041902632801794,-0.0075543322600424,-0.037337318062782],[-0.016526853665709,0.1291057318449,0.12605538964272]],[[-0.10541701316833,-0.059673666954041,-0.15701019763947],[0.035522077232599,0.0086461091414094,0.09954172372818],[0.029679654166102,0.018313966691494,-0.075511060655117]],[[-0.052987527102232,0.046235244721174,-0.12641352415085],[-0.014577209018171,0.022443348541856,0.043597456067801],[0.019693244248629,0.088133208453655,0.066707320511341]],[[-0.080333441495895,-0.043504279106855,-0.099725767970085],[-0.2611058652401,-0.077251695096493,-0.1291870623827],[-0.33172485232353,-0.0003131777048111,-0.062579929828644]],[[0.034294467419386,-0.093127347528934,0.011611592024565],[0.043839056044817,-0.065142899751663,0.0089258328080177],[0.020375231280923,0.10770899802446,0.042026285082102]],[[-0.017089230939746,0.085331603884697,-0.015796586871147],[0.0036840313114226,-0.038022469729185,0.035105347633362],[0.016176974400878,-0.097656145691872,0.058598469942808]],[[0.1294227540493,-0.11208555102348,0.040014427155256],[0.015920247882605,0.047325994819403,-0.11438894271851],[-0.085261799395084,0.0053983037360013,-0.06170167028904]],[[0.0077617638744414,0.16249839961529,-0.14523048698902],[0.02926367148757,-0.1708904504776,-0.16082270443439],[-0.11751053482294,-0.078489042818546,-0.048729557543993]],[[0.096430659294128,-0.15435275435448,-0.006303230766207],[-0.00057642313186079,0.083917193114758,-0.14753377437592],[0.10434791445732,0.027303481474519,-0.032744310796261]],[[-0.090870387852192,-0.036956362426281,-0.092266499996185],[-0.14588278532028,-0.022329600527883,-0.11080994457006],[0.033584747463465,0.03197768330574,-0.090037249028683]],[[0.086617276072502,0.01070677023381,-0.042244907468557],[0.02614862844348,0.06316813826561,0.054384525865316],[-0.072979301214218,-0.096389941871166,0.026144687086344]],[[0.0063804490491748,-0.011367889121175,0.0367018468678],[-0.0055791838094592,-0.094062216579914,-0.039136055856943],[0.077081449329853,0.0005484307766892,0.01971554197371]],[[0.10845426470041,-0.014890820719302,0.0059815342538059],[-0.0045626861974597,0.057083010673523,0.052672483026981],[0.047929588705301,0.09726794809103,-0.070719316601753]],[[0.034915715456009,0.080869801342487,-0.10580467432737],[-0.21364235877991,0.0022488404065371,0.039101585745811],[0.0038389584515244,0.016822004690766,0.18286009132862]],[[-0.083293385803699,-0.053769808262587,-0.12571176886559],[0.12947350740433,0.087596260011196,0.062542364001274],[-0.093223907053471,-0.12798538804054,0.063850156962872]],[[0.03440510481596,-0.015806287527084,-0.21008299291134],[-0.078060448169708,-0.062202446162701,0.088772781193256],[0.029269926249981,0.14066378772259,0.081209972500801]],[[0.13504974544048,0.16350314021111,0.083827443420887],[-0.045705482363701,-0.11566299945116,-0.1150922998786],[0.39354595541954,-0.0016425444046035,0.2474756538868]],[[-0.013337740674615,-0.071514189243317,0.023380240425467],[-0.10975605994463,-0.013483953662217,-0.1882010102272],[-0.084382645785809,0.030541161075234,0.10166393965483]],[[-0.15648549795151,-0.25685968995094,-0.16352237761021],[-0.091115713119507,-0.060456052422523,0.08842559158802],[-0.0097280703485012,0.16037386655807,0.071833357214928]],[[-0.057824466377497,-0.042674075812101,0.027938526123762],[-0.10061242431402,-0.09251830726862,-0.33870068192482],[0.20285406708717,0.085849858820438,0.059660147875547]],[[-0.037791460752487,0.033730268478394,0.098616763949394],[0.13308411836624,-0.04715708643198,-0.027932412922382],[-0.0012352738995105,-0.017544712871313,0.070163302123547]],[[-0.00096002483041957,-0.015208382159472,-0.033708665519953],[-0.22256445884705,0.053115405142307,-0.084708370268345],[-0.025433469563723,-0.051254469901323,-0.083301030099392]],[[0.023801388218999,-0.071863576769829,-0.11720729619265],[0.13434663414955,0.049510214477777,0.065178014338017],[-0.029796784743667,0.1605861634016,0.06984643638134]],[[-0.09019497781992,-0.011680259369314,0.036765333265066],[-0.076412215828896,-0.066250219941139,-0.029395615682006],[-0.14447847008705,-0.061759725213051,-0.045297000557184]],[[0.1126412153244,-0.1928483992815,0.0089939208701253],[-0.079441256821156,-0.020369544625282,-0.072281539440155],[-0.1070713698864,-0.028716990724206,-0.026886217296124]],[[0.085663169622421,-0.054526623338461,-0.13314536213875],[0.14472606778145,0.015621729195118,-0.058757428079844],[0.046061586588621,-0.095192432403564,0.092339105904102]],[[0.08838527649641,0.024102559313178,0.0689502581954],[-0.27068108320236,0.054654501378536,0.26985129714012],[-0.085286483168602,-0.12981913983822,-0.045575261116028]],[[-0.11215629428625,-0.049927059561014,0.10508046299219],[0.069600850343704,-0.17618170380592,-0.01705458201468],[0.037036933004856,-0.12291651964188,0.095267437398434]],[[-0.15360316634178,0.057923063635826,-0.0033907829783857],[-0.025742093101144,-0.1360000371933,-0.078998252749443],[-0.11593992263079,0.033002484589815,0.053627636283636]],[[-0.013418506830931,0.022600539028645,0.13361166417599],[0.11786334216595,-0.025456424802542,0.0072452304884791],[-0.098250657320023,0.089837968349457,0.10121680796146]],[[-0.04926622658968,0.078205414116383,-0.032439645379782],[0.004001741297543,-0.015543585643172,-0.022639704868197],[0.069387160241604,0.028703961521387,0.043257743120193]],[[-0.14518216252327,-0.015150493942201,-0.09942039847374],[0.026964608579874,0.11735368520021,0.12517632544041],[0.09222324937582,0.022123791277409,0.024576434865594]]],[[[-0.015069912187755,-0.11327384412289,0.013134581036866],[-0.1053733304143,0.025271141901612,-0.20315891504288],[0.092254027724266,0.0095320679247379,0.18550564348698]],[[-0.074203222990036,-0.097658321261406,0.011040077544749],[-0.042405664920807,-0.042140960693359,-0.05389129370451],[0.098844826221466,0.21337975561619,-0.14631952345371]],[[-0.077884808182716,0.0073542832396924,-0.048501145094633],[-0.033038597553968,0.030320573598146,0.034882411360741],[-0.031340047717094,-0.013503081165254,0.048646241426468]],[[0.031911984086037,-0.13760212063789,0.057304926216602],[0.0134630613029,-0.010671728290617,-0.006100979167968],[-0.054748944938183,0.05784560739994,0.053249944001436]],[[-0.09848565608263,0.039086509495974,0.05167543515563],[0.03650301322341,0.0079387752339244,0.073167040944099],[0.010909803211689,0.028000043705106,-0.13203209638596]],[[-0.026388058438897,0.025143720209599,-0.032399218529463],[0.040117438882589,-0.062837451696396,0.01983786560595],[0.13657577335835,-0.074197880923748,-0.022264255210757]],[[0.09222999215126,0.041449103504419,-0.094863772392273],[-0.10429776459932,-0.02839432656765,-0.10483023524284],[0.02549965120852,-0.041186276823282,0.095050297677517]],[[-0.025519667193294,-0.044310353696346,0.12117839604616],[0.046242345124483,-0.055789034813643,0.071968451142311],[0.046903260052204,0.09986550360918,0.050245445221663]],[[-0.010683280415833,-0.10132414847612,-0.037847876548767],[-0.0917649269104,-0.068410500884056,0.042360667139292],[-0.078466288745403,0.012630277313292,0.039665155112743]],[[0.031379763036966,-0.10103173553944,0.21953403949738],[0.019063072279096,0.12917196750641,0.13305376470089],[0.053024042397738,-0.022441834211349,-0.0471924059093]],[[0.081043608486652,0.0034512812271714,-0.050771273672581],[-0.044562365859747,-0.03239980340004,0.058071162551641],[-0.018592070788145,0.14705209434032,0.022857004776597]],[[-0.071489579975605,0.086293071508408,-0.059182409197092],[0.016423456370831,0.12507089972496,0.027777951210737],[0.15086182951927,0.099300183355808,-0.16033592820168]],[[0.006177865434438,0.10279893130064,-0.15128946304321],[-0.036057040095329,-0.054769240319729,0.021009750664234],[0.15246416628361,0.042682372033596,-0.091576464474201]],[[-0.096635676920414,0.042947359383106,-0.15376988053322],[-0.060655348002911,-0.02927721850574,-0.039130412042141],[0.09366662055254,0.041168939322233,-0.02433617785573]],[[0.11962389945984,-0.020800476893783,0.046222966164351],[-0.042709533125162,0.10921498388052,-0.13835121691227],[0.14831729233265,-0.082457423210144,-0.19475062191486]],[[-0.070973567664623,0.038968622684479,0.051917012780905],[0.069255627691746,-0.059563666582108,0.039809294044971],[0.00017381549696438,-0.12398149818182,0.058162804692984]],[[-0.015914175659418,0.072533085942268,0.065582975745201],[0.19106756150723,-0.12211519479752,-0.017772374674678],[-0.042714461684227,0.058632250875235,-0.039996460080147]],[[-0.019918950274587,0.083114638924599,-0.015628434717655],[-0.089565843343735,0.10114478319883,-0.069932363927364],[-0.041882652789354,0.016587136313319,-0.011092522181571]],[[0.092084638774395,0.080502741038799,0.096229575574398],[0.069016993045807,-0.026380874216557,-0.026519399136305],[0.05223910883069,-0.041979480534792,-0.052036494016647]],[[0.1591831445694,-0.066757909953594,-0.081532552838326],[-0.033399499952793,0.09877560287714,-0.051857504993677],[0.11036398261786,0.074773333966732,0.14230315387249]],[[0.044891588389874,-0.056068655103445,-0.054242946207523],[-0.011570091359317,0.043322481215,0.023550625890493],[-0.043212909251451,-0.027116449549794,-0.04220899567008]],[[-0.069677539169788,-0.0086084548383951,0.029870862141252],[-0.052898187190294,0.11805538088083,0.02375372685492],[0.072359763085842,0.010251680389047,0.029328627511859]],[[0.047767534852028,0.04967625439167,0.03015074878931],[-0.063797503709793,0.04558839276433,0.03256868198514],[-0.10186734050512,-0.060413859784603,-0.036021914333105]],[[-0.28289499878883,0.022825140506029,0.096824452280998],[-0.09808224439621,0.088689848780632,0.056747648864985],[0.11490475386381,0.076262235641479,0.048119384795427]],[[0.036720469594002,-0.056333053857088,-0.011732625775039],[-0.14002375304699,-0.020610868930817,0.095363989472389],[0.0073500252328813,0.034194651991129,0.14710973203182]],[[0.051655616611242,-0.069979175925255,-0.05575992166996],[0.058643091470003,0.053451173007488,0.1068400144577],[0.084363907575607,0.027228955179453,-0.040613740682602]],[[-0.0041572782211006,0.013411097228527,0.077689401805401],[0.12698996067047,-0.069590136408806,-0.0046475930139422],[0.14218962192535,0.048124220222235,0.05439580976963]],[[-0.19432833790779,0.060835130512714,-0.045237056910992],[-0.18906065821648,-0.031929608434439,0.10577227175236],[0.034879993647337,0.1415660828352,-0.066955514252186]],[[0.042883079499006,0.18220935761929,-0.048358049243689],[0.032715857028961,0.038733225315809,-0.055461168289185],[-0.11859114468098,-0.064614616334438,-0.041580278426409]],[[-0.015195620246232,0.07088278234005,-0.11088795214891],[0.031544752418995,-0.028210882097483,-0.026646509766579],[0.12481536716223,0.0061943447217345,0.14030632376671]],[[-0.0032023442909122,-0.099414639174938,-0.056008514016867],[0.069941341876984,0.042830340564251,-0.25222811102867],[-0.028057703748345,-0.055269159376621,0.0701719596982]],[[0.0096981693059206,0.0043501374311745,0.034790519624949],[0.027502864599228,-0.010323656722903,-0.10534796118736],[-0.079444415867329,-0.086569346487522,-0.072666943073273]],[[0.023815974593163,0.026701802387834,-0.067486256361008],[-0.079401284456253,0.0035400425549597,0.097531586885452],[0.02348086796701,-0.0015441618161276,0.092296496033669]],[[-0.048926334828138,0.034882660955191,-0.028365448117256],[0.055240534245968,0.046820543706417,-0.16190811991692],[0.12695896625519,0.067551396787167,-0.037228707224131]],[[0.062326166778803,-0.021261101588607,0.11678282916546],[-0.012619871646166,-0.10715351998806,0.061521217226982],[-0.036281935870647,-0.0013620004756376,0.12004169076681]],[[0.12217059731483,0.096787102520466,-0.01588742621243],[0.081849001348019,-0.19183820486069,-0.041006099432707],[-0.0047956770285964,-0.0025357471313328,-0.15838631987572]],[[-0.018428375944495,-0.17659893631935,-0.029398443177342],[-0.056356631219387,-0.022705316543579,0.1890385299921],[-0.064170487225056,-0.059976600110531,-0.23531277477741]],[[-0.10058297216892,-0.13570837676525,0.045796908438206],[-0.14927768707275,-0.14333298802376,0.044519852846861],[-0.05466665327549,-0.010850950144231,0.018737206235528]],[[0.093540191650391,0.044394589960575,-0.14183367788792],[-0.02122619189322,-0.0075711710378528,0.15050600469112],[-0.035102486610413,-0.19918559491634,0.01245251018554]],[[-0.010746335610747,-0.095752239227295,0.064424574375153],[0.026450077071786,-0.15633103251457,0.025442745536566],[-0.058061391115189,-0.031869199126959,0.1305263787508]],[[0.06827786564827,0.00061962788458914,-0.022227006033063],[-0.020767968147993,0.078987821936607,-0.095515124499798],[-0.031409692019224,-0.023804903030396,-0.13222473859787]],[[0.018958672881126,-0.022116271778941,-0.039344374090433],[0.052051793783903,0.030122440308332,0.08055254817009],[0.05633694306016,0.018232116475701,-0.093075834214687]],[[0.25818929076195,-0.1282025128603,-0.098337203264236],[-0.037452392280102,0.075767531991005,0.071300432085991],[-0.022859457880259,0.004100052639842,0.033510781824589]],[[0.038067474961281,0.00038388531538658,-0.0031798928976059],[0.037537854164839,0.042230267077684,-0.07403476536274],[0.012973126024008,-0.094144739210606,-0.12834797799587]],[[0.01593429222703,0.016014451161027,0.064405396580696],[-0.034973092377186,0.1284035295248,-0.0063246246427298],[0.023768683895469,-0.11807922273874,0.032051812857389]],[[0.070191211998463,-0.097759298980236,-0.051843672990799],[0.018602788448334,0.11785896867514,0.03233727067709],[0.040249899029732,-0.042166352272034,-0.089134640991688]],[[-0.010181565769017,-0.0080599645152688,-0.12149801105261],[0.032071594148874,0.014598418958485,0.19873215258121],[0.0027897760737687,0.048137709498405,-0.053292579948902]],[[-0.0073122777976096,-0.069767020642757,-0.012136736884713],[0.0024982311297208,0.011435077525675,-0.014588110148907],[0.14097172021866,0.0079132812097669,-0.06631775200367]],[[-0.026783974841237,-0.036848980933428,-0.023311384022236],[0.0074082277715206,0.10594368726015,-0.010316540487111],[-0.065996274352074,0.066110856831074,0.073317758738995]],[[0.041635654866695,-0.054725009948015,-0.04656021669507],[0.048660043627024,0.0098581938073039,0.16841708123684],[0.14070495963097,-0.0024842584971339,0.013351688161492]],[[0.074858643114567,-0.0027437037788332,-0.10018318891525],[0.034933507442474,0.036333661526442,0.10301510989666],[0.13193292915821,-0.088165514171124,-0.059520460665226]],[[0.18357418477535,0.098330967128277,0.0046391976065934],[-0.10030560195446,0.044738359749317,0.18543261289597],[0.085853554308414,-0.067893996834755,0.12143050134182]],[[-0.10612013190985,-0.057056847959757,-0.0010415110737085],[0.067602269351482,0.12187614291906,-0.052555058151484],[0.16160407662392,0.028451193124056,0.15979187190533]],[[-0.024056201800704,0.10191809386015,0.073822826147079],[0.026449020951986,-0.11219904571772,0.034285567700863],[0.002772516803816,-0.057465009391308,-0.057691685855389]],[[0.036409229040146,0.016261527314782,0.030548999086022],[-0.097863726317883,-0.056374114006758,-0.10390947759151],[0.031294811517,0.0094770053401589,0.02557173743844]],[[-0.10788578540087,-0.043309550732374,0.0044108582660556],[-0.029707564041018,0.013791969977319,-0.091708101332188],[-0.1592643558979,0.031306605786085,0.0978087708354]],[[0.028111133724451,0.024370208382607,0.046230170875788],[-0.064803913235664,0.11282467097044,0.11807204782963],[0.073584958910942,0.054118365049362,0.054924458265305]],[[0.046167839318514,0.057817552238703,0.061640292406082],[-0.15563416481018,-0.035141985863447,-0.015949908643961],[-0.042828947305679,0.10559373348951,-0.11076962947845]],[[-0.092226140201092,-0.14248576760292,-0.071899950504303],[0.0040704589337111,0.14824344217777,-0.10894786566496],[-0.088499881327152,0.088249981403351,-0.16239303350449]],[[0.20253625512123,-0.032875120639801,-0.0063598309643567],[-0.091550685465336,0.098149552941322,0.038009077310562],[0.1744177788496,0.0036221612244844,0.033120069652796]],[[0.00017790991114452,-0.081648655235767,0.021551603451371],[-0.12031826376915,0.11944279819727,0.085265964269638],[-0.022005781531334,0.059425938874483,-0.041319619864225]],[[-0.11797434836626,-0.067499957978725,0.17123390734196],[-0.025888724252582,0.073229357600212,0.021537106484175],[-0.17849585413933,0.023955916985869,0.11910349875689]],[[-0.11559401452541,-0.052950866520405,-0.040836207568645],[0.069516934454441,-0.014447472058237,0.073030225932598],[0.011010102927685,-0.091928116977215,0.05746054649353]],[[-0.065601132810116,0.044418632984161,0.068101167678833],[-0.088233709335327,-0.023067647591233,-0.034391731023788],[0.033703066408634,-0.021751500666142,0.10794360935688]]],[[[-0.040499679744244,0.052792832255363,-0.13955792784691],[0.0059969807043672,0.043526392430067,-0.025659270584583],[0.0071461061015725,0.0057553583756089,0.10419747978449]],[[-0.16595534980297,-0.021480983123183,-0.020402414724231],[-0.06903500854969,-0.046891313046217,0.059761270880699],[-0.029291339218616,0.082039020955563,-0.05352621525526]],[[-0.038158215582371,-0.1505336612463,-0.18294496834278],[0.053521122783422,0.027045926079154,-0.0083324667066336],[-0.082757666707039,-0.13202697038651,0.0555624589324]],[[-0.061104588210583,0.020665261894464,-0.036536831408739],[-0.071744695305824,-0.069386139512062,0.12857264280319],[0.070750713348389,-0.043891161680222,-0.0082831541076303]],[[0.10236109048128,0.049162328243256,-0.08323460072279],[0.0075228940695524,-0.11763929575682,-0.037363559007645],[-0.038214579224586,-0.12412469834089,-0.10052556544542]],[[-0.15413376688957,0.093329854309559,-0.014247495681047],[0.087256483733654,0.078289739787579,-0.035154767334461],[0.065804824233055,0.0090496093034744,0.049172610044479]],[[0.022850165143609,0.00064666295656934,0.0083533432334661],[-0.091818705201149,0.016601691022515,-0.060826614499092],[-0.018603039905429,-0.042543832212687,0.19316849112511]],[[-0.010952181182802,-0.12953679263592,0.081617407500744],[-0.017798462882638,0.0087352162227035,0.027155302464962],[0.13148775696754,0.03693450242281,0.058070261031389]],[[0.014290736056864,0.0081088487058878,-0.014480450190604],[-0.013121282681823,-0.058984287083149,0.018390780314803],[0.042403485625982,-0.060248769819736,-0.043777368962765]],[[-0.0058000539429486,0.07003416121006,-0.031122891232371],[-0.0035570778418332,0.065138719975948,-0.011020031757653],[0.093227609992027,-0.11003056913614,0.017695974558592]],[[-0.16160672903061,0.088765121996403,-0.10594932734966],[0.10472729057074,-0.017091969028115,0.0038145023863763],[6.9612055085599e-05,-0.10614584386349,0.044302023947239]],[[-0.040415070950985,0.099455095827579,-0.038085903972387],[0.013375616632402,0.085883550345898,-0.040554363280535],[0.127336114645,0.047698687762022,-0.038110453635454]],[[-0.14340035617352,0.1245363727212,-0.042661283165216],[-0.18154510855675,-0.0047786729410291,0.10571367293596],[-0.08792382478714,-0.12058252841234,0.048283584415913]],[[-0.0096184853464365,-0.065584674477577,-0.022285107523203],[-0.091467179358006,-0.035020984709263,-0.034353621304035],[0.010177776217461,-0.095276206731796,0.0015827050665393]],[[-0.050240639597178,0.0070594209246337,-0.068436473608017],[-0.010238426737487,0.13734209537506,-0.096386849880219],[0.0089779244735837,0.13942156732082,0.10582854598761]],[[-0.060404106974602,0.025200057774782,0.080542296171188],[-0.001930812606588,0.14234445989132,-0.063587576150894],[0.10828548669815,0.19982980191708,-0.093858741223812]],[[-0.01345906034112,0.052493002265692,-0.064066201448441],[-0.089121036231518,0.018099572509527,0.10602380335331],[0.11798749119043,-0.11830469965935,-0.085661329329014]],[[0.11313782632351,0.013767335563898,-0.11645143479109],[-0.11016485095024,-0.10844404995441,-0.033726274967194],[-0.035850562155247,0.026746926829219,0.020507022738457]],[[0.12691383063793,-0.037506878376007,-0.0038717179559171],[-0.063828155398369,-0.15241894125938,0.053141847252846],[-0.070120006799698,-0.095397554337978,0.0037677017971873]],[[-0.022960480302572,0.067117422819138,0.18563462793827],[-0.14628118276596,0.034075122326612,0.13519223034382],[-0.0710339397192,-0.0039651193656027,0.092813409864902]],[[-0.011115061119199,-0.1894599199295,0.04563631862402],[-0.24047043919563,-0.12364625185728,-0.01699922978878],[-0.033399276435375,0.16917875409126,0.092438943684101]],[[0.011779849417508,-0.28221163153648,-0.06378086656332],[-0.12771491706371,-0.15609338879585,0.092749990522861],[0.2449027299881,-0.17273557186127,-0.092171810567379]],[[-0.062978334724903,-0.035102721303701,-0.043131090700626],[-0.032355673611164,-0.13920073211193,-0.050032787024975],[0.033452089875937,0.02264254540205,-0.037961777299643]],[[0.039684690535069,-0.083459086716175,-0.12078172713518],[-0.071011565625668,-0.010020808316767,-0.18187041580677],[-0.072459124028683,0.035973891615868,0.12293763458729]],[[0.0072321598418057,0.016040632501245,-0.12065383046865],[-0.12764191627502,0.041226699948311,0.10331358760595],[-0.062269926071167,0.052024248987436,0.063863754272461]],[[-0.0055585280060768,-0.094032786786556,-0.029754741117358],[0.035718873143196,0.096610173583031,-0.23955699801445],[0.001508561312221,0.099335499107838,-0.039712425321341]],[[0.021899679675698,-0.0409304946661,0.12066911906004],[0.024369694292545,0.036421306431293,-0.047946207225323],[0.078272826969624,-0.11426062136889,0.029707485809922]],[[-0.087437175214291,0.027466211467981,-0.036415603011847],[-0.1511607915163,0.056152313947678,-0.12426310777664],[-0.086688198149204,0.16177976131439,-0.067034639418125]],[[-0.1838793605566,0.10786928236485,0.0011447016149759],[0.064702831208706,0.032823290675879,0.012687456794083],[0.028169199824333,0.032000612467527,-0.040049999952316]],[[0.054472472518682,-0.038141496479511,0.097150929272175],[-0.015922823920846,0.21504075825214,-0.14640757441521],[0.039509862661362,0.081643030047417,-0.096465639770031]],[[0.031734421849251,-0.12255245447159,0.079904526472092],[0.10060054808855,-0.047244723886251,-0.072206497192383],[0.13765205442905,-0.058855462819338,-0.065106645226479]],[[0.017302665859461,-0.019216628745198,0.038455978035927],[0.094306878745556,0.032302778214216,-0.12153046578169],[-0.053884018212557,0.12085352838039,-0.17430727183819]],[[-0.0058173616416752,-0.11450584977865,-0.0081878304481506],[-0.0043233442120254,-0.052825525403023,-0.022877322509885],[-0.01073550991714,-0.13826851546764,0.022112835198641]],[[0.046355571597815,0.12686602771282,0.03924048319459],[-0.011790311895311,-0.064876295626163,-0.051155880093575],[-0.17774987220764,-0.0079516377300024,-0.029351802542806]],[[-0.059332709759474,0.015848712995648,-0.0071385577321053],[-0.067151308059692,0.08025635778904,-0.045592561364174],[0.05810372158885,-0.043081235140562,-0.20387662947178]],[[-0.058855671435595,-0.04784482344985,0.03437864035368],[0.087196461856365,0.00062549347057939,-0.078985884785652],[-0.023819401860237,-0.03756869956851,0.047508265823126]],[[-0.061350032687187,0.031551878899336,-0.035519119352102],[-0.081599853932858,0.052056677639484,0.16018036007881],[-0.034355562180281,0.018343912437558,-0.036272786557674]],[[-0.14575324952602,-0.0022778490092605,-0.075456209480762],[-0.083397254347801,0.042912006378174,0.087713964283466],[0.047894809395075,-0.083165787160397,0.090895913541317]],[[0.058468099683523,0.013017371296883,0.046241916716099],[-0.096718586981297,0.064847052097321,-0.075816832482815],[-0.19540974497795,0.023762850090861,-0.024283699691296]],[[0.015391153283417,-0.05020010471344,0.049129653722048],[0.014479433186352,-0.058902613818645,-0.018203468993306],[-0.048947263509035,-0.057481780648232,0.031709507107735]],[[0.072095811367035,0.069850742816925,-0.081662580370903],[-0.018250443041325,0.003884457051754,-0.033837120980024],[-0.054402809590101,0.025602431967854,0.093509458005428]],[[0.1338375210762,-0.072797708213329,0.085740759968758],[-0.01810996234417,-0.19767807424068,0.0035466654226184],[0.26431038975716,0.13090866804123,-0.0099083948880434]],[[0.088650189340115,-0.1243110075593,-0.092774853110313],[0.11146047711372,-0.077597469091415,-0.1867635846138],[0.21854768693447,-0.1526747494936,0.091824278235435]],[[0.0031232049223036,-0.068697586655617,0.032681338489056],[0.0143688544631,0.051665592938662,0.0239681545645],[0.0021984837949276,-0.050885833799839,0.0041031129658222]],[[0.0097382823005319,-0.021713837981224,-0.045344274491072],[0.044847652316093,-0.0912199690938,-0.32192754745483],[-0.037003371864557,0.048121679574251,-0.17154824733734]],[[0.037783555686474,-0.27086529135704,0.050053097307682],[0.080855697393417,0.020958444103599,0.068159431219101],[-0.074127174913883,-0.021204860880971,0.17853653430939]],[[0.0054714363068342,0.080922603607178,-0.081078603863716],[-0.026227427646518,0.039547812193632,-0.11726563423872],[-0.0021212985739112,-0.070096164941788,0.051547843962908]],[[-0.0032119525130838,-0.059136569499969,-0.023372774943709],[-0.069041155278683,-0.033668201416731,-0.14827199280262],[0.037636391818523,0.046262104064226,0.043377887457609]],[[0.058698873966932,-0.015139486640692,-0.029240744188428],[0.051911972463131,-0.1854003071785,-0.082724057137966],[0.0046209059655666,-0.073370799422264,0.0088541936129332]],[[-0.1338918954134,-0.038583192974329,-0.090115703642368],[-0.051924712955952,0.054843194782734,0.0082001965492964],[-0.0020570780616254,-0.069571726024151,0.069283381104469]],[[-0.0395029745996,-0.093411266803741,0.001189601724036],[0.051517687737942,-0.091924250125885,0.084427930414677],[-0.031194321811199,-0.038776770234108,-0.038565296679735]],[[0.094989910721779,-0.05328032001853,-0.044112406671047],[0.117382183671,-0.042186070233583,-0.098626665771008],[0.13769887387753,-0.091730378568172,-0.015878599137068]],[[-0.0075684110634029,-0.11237119883299,-0.099023580551147],[0.15571069717407,-0.052789561450481,0.0083505259826779],[0.15640980005264,0.033709313720465,0.059332646429539]],[[-0.021539907902479,-0.061038300395012,0.10393336415291],[0.014744585379958,-0.053112599998713,-0.0436139293015],[-0.15417319536209,0.18559582531452,-0.0010869286488742]],[[-0.092599809169769,-0.013863237574697,-0.054047487676144],[0.024392407387495,-0.072281092405319,-0.0082122022286057],[0.022540375590324,-0.051032867282629,-0.029976820573211]],[[-0.037076350301504,0.026657158508897,-0.060621578246355],[0.083573378622532,-0.06218283995986,-0.16751916706562],[-0.039377700537443,-0.043497521430254,-0.067999824881554]],[[-0.0091067757457495,-0.16337464749813,-0.050047073513269],[-0.13082146644592,-0.097376294434071,-0.20612196624279],[-0.083838433027267,0.075690485537052,-0.11094673722982]],[[-0.045322116464376,0.053711351007223,-0.16370986402035],[-0.12739934027195,0.017599849030375,-0.045308344066143],[-0.15365040302277,0.21751709282398,-0.10522596538067]],[[0.035997524857521,0.049220468848944,-0.093928769230843],[-0.056707143783569,-0.055426813662052,0.019595170393586],[-0.040428273379803,0.13282968103886,0.054914936423302]],[[-0.035511061549187,0.032946221530437,-0.13770280778408],[-0.0020612517837435,0.024496899917722,0.0137869855389],[-0.091412723064423,-0.01523703429848,-0.10623665899038]],[[-0.055254392325878,-0.23562271893024,-0.11445461213589],[-0.05860748142004,-0.030824080109596,-0.035350397229195],[0.19682908058167,0.026463154703379,0.02294878475368]],[[0.00088408013107255,-0.10047527402639,-0.020534634590149],[-0.063350930809975,0.053929798305035,-0.11124842613935],[0.077717088162899,-0.1647834032774,0.16854572296143]],[[0.068696156144142,0.028485314920545,0.070674359798431],[-0.16473187506199,0.057505816221237,0.053948286920786],[-0.0094244750216603,-0.00536401104182,-0.12480968236923]],[[-0.043353892862797,0.038238979876041,-0.085315182805061],[0.00088675279403105,-0.088127322494984,-0.024752596393228],[0.10736896842718,-0.25549739599228,0.19656747579575]]],[[[-0.050373613834381,0.039829552173615,-0.015490914694965],[0.066299855709076,-0.048546362668276,-0.024866009131074],[0.021544070914388,0.00089126621605828,-0.0096742892637849]],[[-0.026559747755527,-0.0054173418320715,0.00084282614989206],[-0.082657061517239,-0.040372829884291,0.015652632340789],[0.020337581634521,-0.051935683935881,0.055339138954878]],[[-0.030529286712408,-0.050563510507345,0.0426877848804],[0.0033016882371157,0.0073966765776277,0.024012066423893],[-0.035295203328133,0.079960122704506,-0.0034516628365964]],[[0.03351541236043,-0.062456969171762,0.071569211781025],[-0.01705751940608,0.0053148702718318,-0.013182690367103],[-0.037578940391541,-0.02517569437623,-0.0040340358391404]],[[-0.020128620788455,-0.013539299368858,-0.011212751269341],[-0.039873097091913,0.034123092889786,0.024285521358252],[0.012717312201858,0.002577485749498,0.015942130237818]],[[-0.0048395851626992,0.019066793844104,-0.082376979291439],[-0.027212439104915,0.064315542578697,0.01192678976804],[-0.029013767838478,-0.021266488358378,0.075501136481762]],[[0.020260682329535,-0.0080572320148349,-0.061455026268959],[-0.052734475582838,0.024583440274,0.058653462678194],[0.043206833302975,0.0051883729174733,-0.004467012360692]],[[0.026349697262049,-0.055947877466679,-0.029421443119645],[0.0049182227812707,-0.050272528082132,0.043578930199146],[0.075197570025921,-0.029665868729353,0.01757918484509]],[[0.11210411787033,0.17886210978031,0.035371404141188],[0.040974885225296,0.11387194693089,0.11499387770891],[0.09365326911211,0.052838500589132,-0.0018522718455642]],[[-0.017689233645797,0.027610138058662,-0.024870067834854],[0.07626623660326,-0.055691797286272,0.0051045883446932],[0.078017167747021,-0.0585134960711,0.0010499657364562]],[[0.06886488199234,-0.07397535443306,-0.0017595811514184],[-0.033425159752369,0.011757898144424,0.079013362526894],[-0.048929385840893,0.049931176006794,-0.066270418465137]],[[0.041749980300665,-0.081847779452801,0.04977323114872],[-0.053946100175381,0.037336658686399,-0.0055819628760219],[0.028692265972495,0.018032789230347,0.015735810622573]],[[0.058007296174765,-0.032035112380981,0.052699491381645],[-0.091548316180706,-0.076193384826183,-0.010083435103297],[0.062828123569489,0.027438519522548,0.0054945158772171]],[[0.033689863979816,-0.0085323359817266,-0.097692288458347],[-0.045844212174416,-0.15582336485386,0.091563053429127],[-0.021667359396815,-0.066164202988148,0.057069264352322]],[[-0.030671404674649,0.052070662379265,0.0033482140861452],[0.010243648663163,-0.037451915442944,0.042378813028336],[0.0040392056107521,-0.033316418528557,0.016389105468988]],[[-0.054128639400005,0.10046945512295,0.0129518751055],[-0.025004327297211,-0.03772758692503,0.014375207945704],[0.029914291575551,-0.017523052170873,0.0059966281987727]],[[0.015055827796459,0.012413580901921,-0.022109277546406],[-0.066564209759235,-0.021942302584648,-0.00093889218987897],[0.019488515332341,0.0522750467062,0.03446676582098]],[[-0.021449839696288,-0.042101643979549,0.088096797466278],[0.030871614813805,-0.068402625620365,-0.045264970511198],[-0.071495115756989,-0.029199773445725,0.1535702496767]],[[0.022149356082082,-0.047475032508373,0.081230640411377],[0.045974478125572,-0.067911088466644,-0.040485758334398],[0.02772163040936,-0.062947034835815,0.078033030033112]],[[0.047871857881546,-0.032280337065458,-0.010300336405635],[0.0051021333783865,0.048766206949949,-0.028725670650601],[0.022188885137439,0.035210907459259,-0.055272590368986]],[[0.04582691565156,-0.013943839818239,-0.018426148220897],[0.054923962801695,-0.045286927372217,-0.011299125850201],[0.00095018214778975,0.054471638053656,-0.02807237021625]],[[-0.017145071178675,-0.023164063692093,-0.1083482503891],[0.010729531757534,0.048963580280542,0.082519255578518],[0.028247820213437,-0.001104446942918,0.0507404319942]],[[-0.0095005007460713,0.017545741051435,0.020826363936067],[0.1245209351182,0.034938991069794,-0.01448567584157],[-0.022910973057151,-0.038915652781725,-0.010240333154798]],[[0.014145329594612,0.046623215079308,0.031336024403572],[-6.914179539308e-05,-0.0083565264940262,0.02589832060039],[-0.011702076531947,-0.06614688038826,-0.0059631024487317]],[[-0.017953420057893,-0.021451344713569,-0.0015237459447235],[-0.0018423231085762,0.017610475420952,-0.0033515507820994],[0.031873986124992,-0.022602749988437,-0.015609665773809]],[[-0.091866120696068,0.022033063694835,0.046796131879091],[-0.058781366795301,0.030811617150903,-0.015991143882275],[-0.031261429190636,-0.0093355113640428,0.044168539345264]],[[-0.019364736974239,-0.028519218787551,0.025340039283037],[-0.010813518427312,0.01514218468219,-0.0034084040671587],[0.063298389315605,0.04133390262723,-0.025678172707558]],[[0.016982324421406,0.0078689847141504,-0.011668413877487],[0.026191053912044,0.019437704235315,-0.0077920402400196],[-0.017582470551133,-0.0050431909039617,0.012309581972659]],[[-0.04024588316679,-0.017312975600362,-0.010997493751347],[0.013943116180599,0.058725260198116,-0.0053592543117702],[-0.002222687471658,-0.0041962224058807,-0.010600790381432]],[[-0.031716972589493,0.033217754215002,0.025740185752511],[0.053149592131376,-0.015950491651893,-0.022712260484695],[-0.022725019603968,0.012920434586704,-0.020583227276802]],[[0.050404027104378,0.045364286750555,0.0016396943246946],[0.0037808092311025,-0.071562729775906,-0.039676200598478],[0.012232195585966,-0.052078556269407,0.078978002071381]],[[-0.031697180122137,0.021698987111449,0.011623471975327],[0.085780628025532,0.026814954355359,-0.021150529384613],[-0.040572181344032,-0.023799508810043,-0.035532519221306]],[[0.010551461949944,-9.5757801318541e-05,0.047108806669712],[-0.00048689829418436,0.0096323611214757,-0.073384515941143],[-0.041651125997305,0.020702380686998,0.037509460002184]],[[-0.006222068797797,-0.14279003441334,-0.052832804620266],[-0.1126502007246,-0.19353613257408,-0.11192943900824],[-0.14512731134892,-0.086719907820225,-0.10167426615953]],[[-0.0062434524297714,-0.054126806557178,-0.085465557873249],[0.044003240764141,0.047262649983168,0.045781999826431],[0.00043304963037372,0.062021777033806,-0.032384108752012]],[[0.012265536002815,-0.028123255819082,0.0075959227979183],[0.0083092814311385,0.079498276114464,-0.048529252409935],[0.023911818861961,-0.017599267885089,-0.0062066647224128]],[[0.052800055593252,0.061891678720713,-0.013769351877272],[-0.037381108850241,0.065962508320808,-0.084968432784081],[-0.012698451988399,-0.026895435526967,-0.029227962717414]],[[0.06730081140995,0.043783705681562,-0.044065270572901],[-0.054742109030485,-0.02745614759624,-0.046720705926418],[0.04811517521739,0.0081090172752738,-0.047282937914133]],[[0.012381696142256,0.059111069887877,-0.022883744910359],[0.056516397744417,0.033585377037525,-0.018808284774423],[0.01505646109581,-0.06248277798295,-0.050615347921848]],[[0.024317510426044,0.065564878284931,-0.030959563329816],[-0.059413466602564,0.10033851861954,-0.012864612974226],[-0.13125401735306,0.028249876573682,0.052064400166273]],[[0.014376704581082,0.038745246827602,-0.0096202716231346],[-0.023058887571096,0.0092133553698659,0.014191110618412],[0.00071277900133282,-0.016914639621973,-0.04477321729064]],[[-0.039800893515348,0.0074510369449854,0.044910747557878],[0.015409784391522,-0.0050012557767332,-0.025871971622109],[-0.046729005873203,0.083717234432697,0.013347032479942]],[[0.011222281493247,0.037460830062628,-0.0443080291152],[0.012705241329968,-0.036287363618612,0.04994648322463],[0.068849384784698,-0.00076900672866032,-0.045197613537312]],[[-0.081912182271481,-0.1128401979804,-0.13283914327621],[-0.21363392472267,-0.22098505496979,-0.17656719684601],[-0.030902752652764,-0.21066537499428,-0.085702255368233]],[[-0.013179206289351,0.036729674786329,0.031438361853361],[0.061174724251032,-0.079214714467525,-0.069423340260983],[0.01000489667058,0.0096901087090373,0.029092470183969]],[[0.00054232880938798,0.042247340083122,0.029895195737481],[0.0023769193794578,-0.026656799018383,-0.00035543899866752],[0.010815374553204,-0.060442306101322,-0.046632301062346]],[[0.022392952814698,-0.012017194181681,-0.017652686685324],[-0.034202918410301,0.011686960235238,0.012922555208206],[-0.022312486544251,0.017686815932393,0.015210755169392]],[[0.057365465909243,-0.0038369938265532,0.027207370847464],[-0.008837278932333,-0.026754021644592,-0.037074401974678],[-0.053932704031467,0.036389663815498,-0.012587280012667]],[[-0.02876391261816,-0.078837312757969,0.0052700457163155],[0.01756220497191,-0.043884191662073,0.053077809512615],[0.032987847924232,0.016044285148382,0.043948449194431]],[[0.0059551638551056,-0.085490874946117,0.08894670009613],[0.027031719684601,-0.024172948673368,0.0051209810189903],[0.058930318802595,-0.076066732406616,0.014833718538284]],[[-0.032403890043497,0.047046430408955,-0.024093355983496],[0.06208311393857,0.01723094470799,-0.062936097383499],[0.017008785158396,-0.028221381828189,0.018486170098186]],[[-0.01840247400105,0.031344067305326,-0.0034876465797424],[0.052173007279634,-0.06224899739027,0.016055393964052],[0.040716107934713,-0.04800383374095,0.0033769411966205]],[[-0.02898284047842,0.047330234199762,0.0098300604149699],[0.0015457043191418,-0.03524286672473,0.057296928018332],[-0.01961312815547,0.0065810629166663,-0.00884491764009]],[[-0.013860878534615,-0.0020329041872174,-0.033425934612751],[0.015906972810626,0.048460002988577,-0.011186900548637],[0.0017194508109242,-0.026881633326411,0.029072262346745]],[[-0.055348232388496,0.062596641480923,-0.014700463972986],[0.010898319073021,0.051448579877615,0.014406321570277],[0.016431571915746,-0.063392169773579,0.011947822757065]],[[-0.010624905116856,-0.025207618251443,0.05841126665473],[-0.0036405879072845,-0.065216913819313,0.02083314023912],[0.049777802079916,-0.0052103428170085,0.0074808103963733]],[[-0.0073379431851208,-0.038048975169659,0.072879582643509],[-0.059080053120852,0.086689569056034,0.048123065382242],[-0.03542897477746,-0.011119094677269,0.001821234007366]],[[-0.013906564563513,0.028142515569925,0.050153452903032],[0.0023603695444763,-0.029918391257524,-0.044884916394949],[0.053297355771065,-0.039159875363111,-0.016701860353351]],[[0.026027366518974,-0.044678874313831,0.031866122037172],[-0.056773297488689,0.066261783242226,-0.01181120146066],[0.013055969960988,-0.065304547548294,-0.035761006176472]],[[-0.017604652792215,-0.033228281885386,0.0029067487921566],[0.0079031791538,0.032608639448881,0.019589561969042],[-0.019280195236206,0.047486994415522,-0.03349119797349]],[[0.006775263696909,-0.024335235357285,-0.038748804479837],[0.033809456974268,0.006213903427124,0.025771928951144],[0.050496537238359,-0.0017936410149559,-0.0076248650439084]],[[-0.017547957599163,0.04046193882823,-0.020627658814192],[0.010210413485765,0.024977205321193,-0.012770589441061],[-0.022307367995381,-0.028013169765472,0.0064308163709939]],[[-0.0032281980384141,-0.033410809934139,-0.044496987015009],[-0.012891573831439,0.011588275432587,0.035060480237007],[0.017607092857361,0.037926398217678,0.08355325460434]],[[-0.02657656185329,-0.015999855473638,0.01778057962656],[0.049151752144098,0.0008902745321393,-0.038023211061954],[-0.010988148860633,-0.011362010613084,0.020956974476576]]],[[[0.057744689285755,0.11949513107538,0.12039659172297],[0.014981005340815,0.010054784826934,0.089524880051613],[-0.083789475262165,0.031288862228394,-0.050380498170853]],[[0.019597934558988,0.057951167225838,-0.024135980755091],[0.038621123880148,-0.0023813988082111,0.008410781621933],[-0.0041967304423451,-0.082346439361572,0.043673969805241]],[[-0.073516443371773,0.07350630313158,-0.01598952524364],[0.045341268181801,-0.048231169581413,0.123853482306],[-0.038993757218122,0.0097237499430776,0.081728778779507]],[[0.10029578953981,-0.036405220627785,0.055857095867395],[-0.11281467229128,-0.018094647675753,0.01663919724524],[-0.06297342479229,-0.04400921612978,0.16937652230263]],[[-0.098769716918468,0.022009467706084,0.12885984778404],[-0.037498857825994,0.088549993932247,0.13646613061428],[-0.065705351531506,0.059723112732172,0.0050966064445674]],[[-0.025789117440581,0.068675361573696,0.15662807226181],[-0.023419369012117,0.086067199707031,-0.088548913598061],[-0.043193880468607,0.072860434651375,-0.07170020788908]],[[0.090365946292877,-0.0060223382897675,-0.039754282683134],[0.026364946737885,0.060526609420776,-0.017081439495087],[0.063394263386726,0.11970680207014,0.062550246715546]],[[0.077997982501984,0.087902225553989,0.01620683260262],[0.092642545700073,0.00045636011054739,-0.022423828020692],[0.05947745218873,-0.0017313294811174,0.23079025745392]],[[0.037983562797308,-0.071011744439602,-0.027103928849101],[0.048070952296257,-0.046281360089779,-0.040090832859278],[0.092049427330494,-0.11262290924788,0.043670400977135]],[[0.025773845613003,0.14148487150669,-0.059642132371664],[-0.040668502449989,0.0030090108048171,0.054760601371527],[-0.023357443511486,0.048115108162165,0.1027674973011]],[[-0.02056603692472,0.034961838275194,0.013214978389442],[0.094385594129562,-0.0022605671547353,-0.076400808990002],[-0.019469248130918,-0.067840725183487,-0.038322869688272]],[[0.0091512184590101,0.014233825728297,0.071919649839401],[-0.099669367074966,-0.056407798081636,0.10319826751947],[0.077443204820156,-0.18269725143909,0.045080825686455]],[[-0.089139111340046,0.011929890140891,-0.0099972281605005],[0.002746922429651,0.01915037073195,-0.023480366915464],[-0.064477689564228,-0.00074334919918329,0.10275470465422]],[[-0.015587193891406,0.091843090951443,-0.11661396920681],[0.033270116895437,-0.00046965508954599,-0.21896126866341],[-0.079027034342289,-0.096398711204529,0.050602532923222]],[[0.043071325868368,0.03498038649559,-0.053774189203978],[-0.017499374225736,0.07871487736702,-0.0035706521011889],[-0.2373781055212,-0.067120119929314,-0.077554956078529]],[[-0.024875467643142,-0.21408876776695,0.042336255311966],[0.015165171585977,-0.036665704101324,0.0315349586308],[-0.078470878303051,0.056926723569632,-0.18940851092339]],[[-0.02428643591702,-0.084718823432922,-0.043359711766243],[-0.030342251062393,-0.057991567999125,-0.024987682700157],[-0.05565981566906,0.015275651589036,-0.03445091471076]],[[0.035829499363899,-0.049688316881657,-0.18121533095837],[0.034622363746166,-0.019759809598327,0.0047369063831866],[0.04237899556756,-0.002875919919461,0.11365027725697]],[[-0.056081045418978,-0.084953807294369,0.021259492263198],[-0.031219810247421,0.059629119932652,-0.017821138724685],[-0.076818890869617,-0.19216305017471,0.043283946812153]],[[-0.069727674126625,-0.14496158063412,-0.025262221693993],[0.010372785851359,-0.0084134098142385,0.036251246929169],[-0.010262195020914,0.015180786140263,0.071292243897915]],[[0.08948165178299,0.020710360258818,0.034579236060381],[-0.012425486929715,0.070368267595768,-0.070111781358719],[-0.070442289113998,0.076844625174999,-0.017590150237083]],[[-0.071905314922333,-0.045801039785147,0.027726601809263],[0.17827758193016,-0.045914150774479,-0.10597141087055],[-0.10836587846279,0.001105654402636,0.13137030601501]],[[-0.036446373909712,0.09063745290041,0.10664701461792],[-0.023892484605312,0.031992595642805,-0.014250232838094],[-0.0067769889719784,-0.14893947541714,-0.02566310018301]],[[0.042583245784044,-0.100352242589,0.044403947889805],[0.033704929053783,-0.034967888146639,0.012083451263607],[-0.018400702625513,0.038694005459547,0.019213818013668]],[[0.058089960366488,0.014093492180109,0.027784366160631],[0.040992271155119,-0.0064865918830037,0.0078840525820851],[-0.10502369701862,0.02016425691545,0.018552945926785]],[[0.028861500322819,-0.14733025431633,-0.053121857345104],[0.061167027801275,0.082368515431881,-0.06864869594574],[0.073698848485947,0.032163832336664,-0.041132658720016]],[[-0.046391975134611,0.020776595920324,-0.040541972965002],[0.076497197151184,0.048547476530075,0.023614797741175],[-0.076319769024849,0.047845087945461,-0.061709426343441]],[[4.2920659325318e-05,0.056141324341297,-0.10259014368057],[0.043345659971237,-0.043714117258787,0.11010747402906],[0.00077482050983235,0.038289740681648,0.027963940054178]],[[-0.076555818319321,-0.010412149131298,-0.011856348253787],[0.11050100624561,-0.17429335415363,0.064914099872112],[-0.005986878182739,-0.023236691951752,0.043852545320988]],[[0.018466765061021,-0.038040079176426,-0.054354555904865],[-0.068499319255352,-0.097508914768696,0.002280390355736],[0.047519281506538,-0.03673829138279,0.071075350046158]],[[-0.097539819777012,-0.10839431732893,0.15637357532978],[0.082002110779285,0.038268707692623,-0.0023557415697724],[0.16249339282513,0.12642128765583,-0.11250200867653]],[[0.039497077465057,0.0022114252205938,-0.075535371899605],[-0.11713703721762,-0.0024679445195943,-0.023247964680195],[0.061657536774874,-0.022594291716814,0.039887726306915]],[[0.13432773947716,0.041019860655069,-0.10104113817215],[0.0065508792176843,0.016492681577802,0.095414370298386],[0.14640493690968,0.024143463000655,0.0093337716534734]],[[-0.00094733253354207,0.063651695847511,-0.022247517481446],[-0.067186750471592,0.031616300344467,-0.20219218730927],[-0.10531148314476,0.00077522353967652,0.027140513062477]],[[0.057061657309532,-0.045863669365644,0.084748037159443],[-0.0096819223836064,-0.013623097911477,0.0068214731290936],[0.13781845569611,-0.045618992298841,0.010609262622893]],[[-0.026838876307011,0.054506778717041,-0.027791915461421],[-0.21205952763557,0.049216136336327,0.12291172146797],[0.024233946576715,-0.13740170001984,-0.018772812560201]],[[-0.040296889841557,-0.042373951524496,-0.033126231282949],[-0.16604945063591,-0.055716339498758,0.26197490096092],[-0.079806350171566,0.068763867020607,-0.02360799908638]],[[-0.039785500615835,-0.053607799112797,0.0092406868934631],[0.14870634675026,0.047611694782972,-0.032401911914349],[0.093827627599239,0.076985873281956,0.028930217027664]],[[0.090719744563103,-0.11647184193134,-0.013922277837992],[0.14144417643547,-0.09048406034708,-0.13135996460915],[0.014698155224323,-0.024812953546643,0.013889619149268]],[[-0.13151580095291,0.028829425573349,0.0011208754731342],[0.10259202867746,0.046296689659357,0.001365753938444],[-0.17102950811386,-0.10727442055941,0.07541785389185]],[[0.13263626396656,-0.070415169000626,0.060422208160162],[-0.059958312660456,0.090048119425774,-0.0068048010580242],[-0.0049976836889982,0.094308570027351,0.048092730343342]],[[-0.015700513496995,-0.15287375450134,-0.035263709723949],[-0.1109973937273,-0.050009157508612,0.0018527448410168],[0.041370440274477,-0.070725344121456,-0.2946409881115]],[[0.0008936031954363,-0.15127012133598,-0.0080099878832698],[0.14586485922337,-0.011787757277489,-0.0090647451579571],[-0.030549565330148,-0.089102648198605,-0.049651179462671]],[[-0.015041447244585,-0.05431355163455,-0.058195367455482],[0.10980272293091,-0.028988618403673,0.016122845932841],[-3.0356544812093e-05,0.13095183670521,0.0055769910104573]],[[0.1444226205349,0.070538431406021,-0.096077293157578],[0.019425028935075,0.016140099614859,-0.11140167713165],[0.060657259076834,0.078205078840256,0.024271244183183]],[[-0.023324577137828,0.045156579464674,-0.03722932562232],[0.11324032396078,-0.10208318382502,0.010030668228865],[0.059755269438028,0.048262283205986,0.049599636346102]],[[-0.013563450425863,0.070173524320126,0.030972000211477],[0.13046535849571,-0.06794585287571,-0.059498652815819],[0.1840026974678,0.04876733571291,-0.02073435112834]],[[-0.0023797785397619,0.0055079478770494,-0.02895743213594],[0.00052937789587304,0.02550533413887,-0.065239101648331],[0.057695239782333,0.082523658871651,-0.1266700476408]],[[0.10107942670584,0.037467107176781,-0.028613116592169],[0.07013612985611,0.013344135135412,0.04967950284481],[0.37457972764969,-0.05358824506402,-0.10439426451921]],[[-0.11770994961262,-0.061997380107641,0.15600529313087],[-0.046279165893793,-0.045467387884855,-0.053334515541792],[-0.025158861652017,0.044989440590143,-0.045219298452139]],[[0.078955136239529,-0.046241264790297,0.061827380210161],[-0.095272950828075,-0.038663633167744,-0.01095406524837],[-0.060188490897417,-0.021217724308372,0.050154015421867]],[[-0.059668030589819,0.036497674882412,-0.015846943482757],[-0.025011489167809,0.074209719896317,0.010231603868306],[-0.048309873789549,-0.10988579690456,0.083952262997627]],[[0.1039569452405,-0.077254250645638,0.013631881214678],[0.065259702503681,0.027771700173616,-0.017525317147374],[0.16396068036556,-7.928283594083e-06,-0.071317568421364]],[[-0.037938762456179,0.092084713280201,0.0053082448430359],[0.07684151083231,-0.055992275476456,-0.15677215158939],[0.1038544178009,-0.010401067323983,-0.046296618878841]],[[-0.013244372792542,0.0064562642946839,0.03321485966444],[0.088714204728603,0.021150827407837,-0.048264022916555],[0.12912587821484,0.079175166785717,-0.1154121607542]],[[0.038363292813301,0.041092187166214,0.13814026117325],[-0.020697033032775,-0.017282826825976,0.010532758198678],[-0.14263892173767,-0.029955059289932,-0.13979026675224]],[[0.083134278655052,-0.063182950019836,0.068341292440891],[-0.053995490074158,0.099871501326561,-0.12592580914497],[-0.21972967684269,-0.025897927582264,0.00058838084805757]],[[-0.092832177877426,-0.13388986885548,0.227249994874],[0.099523566663265,-0.120566226542,-0.064748533070087],[0.086750067770481,-0.033091574907303,0.0074244090355933]],[[0.066196881234646,0.08201702684164,0.08183678239584],[0.010396834462881,-0.056729979813099,-0.015829358249903],[-0.065184466540813,0.095945611596107,0.044789470732212]],[[-0.068555541336536,-0.19758760929108,-0.016652788966894],[0.14391113817692,0.063501313328743,-0.028200356289744],[-0.15653395652771,-0.10968104749918,0.092979282140732]],[[0.0016118397470564,-0.012453451752663,-0.12087260186672],[-0.052160706371069,0.11987265944481,-0.096320070326328],[-0.011841527186334,-0.17382942140102,-0.021299712359905]],[[-0.006604575086385,0.035340864211321,-0.16463007032871],[0.11011251807213,-0.082983985543251,-0.068704478442669],[-0.048455137759447,0.022148424759507,0.21032257378101]],[[0.069690324366093,-0.082810066640377,0.052724037319422],[-0.050462119281292,-0.093229599297047,-0.015664916485548],[-0.17555803060532,-0.11317031085491,-0.071666046977043]],[[0.052582520991564,-0.04243690520525,0.023432964459062],[0.1186400949955,-0.024773668497801,0.031029546633363],[0.025241499766707,-0.03530340269208,-0.05232372879982]]],[[[-0.18465538322926,-0.029763624072075,0.35513365268707],[0.12913239002228,0.084073752164841,-0.087195254862309],[0.20485062897205,-0.11394216120243,0.067583180963993]],[[-0.0062185665592551,-0.086918167769909,0.06120028346777],[-0.0085112657397985,0.19086690247059,-0.027837011963129],[-0.2609276175499,-0.03943919762969,-0.012913112528622]],[[-0.10835915058851,0.033369202166796,0.05473655462265],[-0.06621365994215,-0.034575115889311,0.094710469245911],[-0.11668348312378,0.053451012820005,-0.13849546015263]],[[-0.0074938088655472,0.12115744501352,0.060850843787193],[-0.11209771037102,-0.11964523792267,-0.025612911209464],[-0.070967443287373,-0.094551369547844,-0.26790258288383]],[[-0.00094973796512932,-0.13057228922844,0.11393420398235],[-0.11956638097763,-0.078562304377556,-0.04024688154459],[-0.23124730587006,-0.21717229485512,-0.076393112540245]],[[0.027726799249649,-0.039096586406231,-0.087674386799335],[-0.12151635438204,-0.038835540413857,-0.013504467904568],[-0.31574577093124,-0.22828371822834,0.077299192547798]],[[-0.019187634810805,-0.042910899966955,0.10734502971172],[-0.083123937249184,0.012861100956798,0.15811458230019],[-0.040724743157625,0.11808785051107,0.019188765436411]],[[0.11537823826075,-0.022569693624973,0.039384599775076],[0.095065586268902,0.016677629202604,0.21118980646133],[0.20780076086521,0.17428360879421,-0.026784911751747]],[[0.069461189210415,-0.10931172221899,-0.098226048052311],[0.0024985615164042,0.010787358507514,0.08968835324049],[-0.019257534295321,0.038316134363413,-0.061880074441433]],[[0.035018112510443,-0.17802235484123,-0.13388454914093],[-0.0020220770966262,-0.0084470417350531,-0.13413049280643],[-0.061476167291403,-0.12052161991596,-0.2294194996357]],[[-0.16230081021786,-0.037370249629021,0.19398365914822],[0.097449101507664,0.11514382809401,-0.060411855578423],[-0.009120736271143,-0.10100851207972,-0.173843100667]],[[0.019675347954035,-0.21843069791794,0.031698785722256],[0.053152196109295,-0.20161862671375,-0.2439661771059],[0.028317511081696,-0.16156208515167,-0.22115890681744]],[[-0.15596310794353,0.068378858268261,0.097079150378704],[0.11285710334778,-0.092845447361469,-0.05262666195631],[0.095704615116119,0.10828518122435,0.23662181198597]],[[0.011259954422712,-0.00042296800529584,0.043292127549648],[0.052606169134378,0.014433349482715,-0.012090385891497],[-0.019536150619388,0.096428826451302,0.098991319537163]],[[0.094505049288273,0.033918969333172,0.10629814863205],[-0.071566686034203,0.022362112998962,-0.14235633611679],[0.084599390625954,-0.00063488067826256,-0.056704964488745]],[[-0.15219222009182,0.086143799126148,0.17969267070293],[0.0021949058864266,-0.044607799500227,-0.11475938558578],[-0.062369205057621,0.060241248458624,0.086460798978806]],[[-0.086213529109955,-0.22790502011776,-0.09682697057724],[0.28234776854515,0.057186342775822,0.14194779098034],[-0.19064183533192,0.1363974660635,0.029393849894404]],[[0.14437402784824,0.1776434481144,-0.11282729357481],[0.1233094483614,-0.04049239307642,-0.0075801322236657],[-0.019117675721645,-0.10201347619295,-0.307607203722]],[[0.027547797188163,0.14736483991146,0.038127481937408],[-0.11689795553684,-0.087841652333736,0.043351460248232],[0.021868633106351,-0.098386242985725,-0.044107209891081]],[[0.010893928818405,-0.028628554195166,-0.072655379772186],[-0.0062103224918246,-0.085248053073883,-0.20664158463478],[0.12277523428202,0.052889958024025,0.13750883936882]],[[-0.17503282427788,-0.143280595541,-0.062025614082813],[-0.10807822644711,-0.10820490121841,-0.096348613500595],[0.11080261319876,-0.13936175405979,0.15059651434422]],[[0.01111260894686,0.087537735700607,0.091831602156162],[-0.010325807146728,-0.057536840438843,0.069989629089832],[0.020577779039741,-0.18781921267509,0.15015371143818]],[[-0.2601472735405,-0.10869170725346,-0.0036660023033619],[-0.19107688963413,0.12083552777767,-0.0021863034926355],[0.021126415580511,0.17776174843311,0.10574778914452]],[[0.051875818520784,-0.093770630657673,-0.016584973782301],[0.10586179047823,-0.048425015062094,0.0081530809402466],[0.044766157865524,-0.022662157192826,0.086299031972885]],[[0.12090616673231,0.21723210811615,0.0029875487089157],[-0.21541634202003,-0.047806121408939,0.099525891244411],[-0.12612248957157,-0.036070939153433,0.057108394801617]],[[-0.062094688415527,-0.065077364444733,0.018018037080765],[-0.033067390322685,-0.06510902941227,-0.0021431129425764],[0.1023625805974,0.059289988130331,0.068302884697914]],[[-0.1399115473032,-0.20741304755211,-0.046760827302933],[0.14967678487301,0.039675835520029,0.059456441551447],[-0.055000901222229,-0.072371676564217,-0.097533173859119]],[[-0.30710729956627,-0.0071735219098628,0.0074164839461446],[-0.15412443876266,-0.1896335631609,-0.023449618369341],[0.00074778869748116,0.034584540873766,0.10906429588795]],[[0.1407372802496,0.043502975255251,-0.10088563710451],[-0.0751918181777,-0.066496439278126,-0.11124412715435],[-0.055377218872309,-0.047543350607157,-0.081961818039417]],[[0.076173096895218,0.054752569645643,-0.00014772852591705],[0.10066089034081,-0.1666247099638,0.074067495763302],[0.11046951264143,-0.0074974372982979,0.033121898770332]],[[0.0028609596192837,-0.12560293078423,-0.31339859962463],[0.13852961361408,-0.059107765555382,-0.21228250861168],[0.025462184101343,-0.080045789480209,-0.078591123223305]],[[0.16091141104698,0.019838945940137,0.024467146024108],[0.084671080112457,-0.13906528055668,-0.092217028141022],[0.14824913442135,0.07732030749321,-0.088180750608444]],[[0.093947947025299,-0.06060254201293,-0.081448644399643],[0.14011889696121,0.084764935076237,-0.019848939031363],[0.029077960178256,-0.050077505409718,0.075157977640629]],[[0.050161778926849,0.024872167035937,-0.0092428354546428],[-0.096665859222412,0.076802760362625,0.017054876312613],[-0.11016371101141,0.016961542889476,-0.031457923352718]],[[-0.10755157470703,0.055943425744772,0.30894702672958],[-0.14908111095428,-0.1298254430294,-0.037993039935827],[0.064491637051105,-0.092822574079037,-0.20509131252766]],[[-0.23807942867279,-0.034766618162394,0.11229908466339],[-0.20540364086628,-0.26402550935745,-0.083067268133163],[-0.034374944865704,-0.16622249782085,0.11760082095861]],[[-0.043432626873255,-0.12727980315685,0.18938745558262],[0.00061604997608811,-0.10606729239225,0.0063864858821034],[-0.17517352104187,-0.25727587938309,-0.20269773900509]],[[-0.036017660051584,-0.017328131943941,0.020437523722649],[-0.018615333363414,0.049726251512766,-0.020416354760528],[-0.18441021442413,0.068703711032867,0.13641485571861]],[[-0.12545520067215,-0.029253451153636,-0.16481848061085],[0.047205246984959,-0.12285458296537,-0.039465628564358],[0.04127349704504,-0.046525508165359,0.015475439839065]],[[-0.04680297523737,-0.046331025660038,-0.063890963792801],[-0.10188332945108,-0.011195155791938,-0.10688482969999],[-0.13688603043556,0.050222162157297,-0.053404942154884]],[[0.16311825811863,-0.11643414199352,0.0034871688112617],[0.031575802713633,-0.15217980742455,-0.066394992172718],[-0.0066834259778261,0.12178616225719,0.057377398014069]],[[-0.019529815763235,-0.25381463766098,-0.13745719194412],[-0.083098046481609,0.029413126409054,-0.015058709308505],[-0.16489274799824,-0.077881395816803,-0.047839619219303]],[[0.11701940745115,-0.0680812895298,-0.2507538497448],[-0.016476850956678,-0.1835964769125,0.03525085747242],[-0.03139815479517,-0.16950109601021,0.21330922842026]],[[-0.023536592721939,0.016683494672179,0.034367688000202],[-0.01137837767601,0.0014654095284641,0.028575997799635],[0.0090472651645541,-0.047236174345016,0.078326627612114]],[[-0.050507239997387,-0.017437631264329,0.037528924643993],[-0.08809819072485,0.12477475404739,-0.1454299390316],[0.15024870634079,-0.0083066495135427,-0.12284579873085]],[[-0.17589797079563,0.012847690843046,0.12738892436028],[-0.13371366262436,-0.1509013324976,0.096767254173756],[-0.0221879016608,-0.18682000041008,0.044519457966089]],[[0.03129493445158,-0.1330322176218,-0.13296896219254],[0.088025815784931,0.0066982652060688,-0.070782892405987],[-0.12013091892004,-0.10577008873224,0.041474260389805]],[[0.091977171599865,-0.040636952966452,-0.028260698541999],[-0.18752193450928,0.011002638377249,-0.233652099967],[-0.08881052583456,0.13315065205097,0.08021679520607]],[[0.030041104182601,0.15029752254486,-0.057911448180676],[0.069066122174263,0.025753937661648,0.018721340224147],[0.16341572999954,0.0045208930969238,0.081644169986248]],[[-0.042320318520069,-0.0054057352244854,-0.26132270693779],[-0.17842935025692,-0.16311253607273,-0.080128751695156],[0.023125246167183,-0.059368718415499,-0.03575599193573]],[[-0.042073022574186,-0.033916361629963,-0.081903427839279],[-0.098268568515778,-0.1026755720377,-0.10629031062126],[0.0240961574018,0.076406680047512,-0.0081708561629057]],[[0.034803636372089,-0.17510785162449,0.046290908008814],[-0.097760379314423,0.077056758105755,0.064732514321804],[0.026638306677341,0.055424068123102,-0.044542327523232]],[[0.027015833184123,-0.066555611789227,0.040818873792887],[0.0019302349537611,-0.056983049958944,-0.10830195993185],[0.09783611446619,0.099510855972767,-0.079617612063885]],[[-0.17507380247116,-0.020387832075357,0.1220063790679],[0.17492523789406,-0.09114496409893,0.062418878078461],[-0.013846336863935,-0.037893861532211,0.34252965450287]],[[-0.0047606374137104,-0.093494676053524,0.030214421451092],[-0.058946002274752,-0.10744227468967,-0.081971891224384],[-0.23449544608593,0.034509353339672,0.19002930819988]],[[-0.034032668918371,-0.076192267239094,-0.15847750008106],[0.033901080489159,0.10793244838715,-0.11213943362236],[-0.23855377733707,0.057179123163223,0.23632508516312]],[[-0.095577962696552,-0.09193055331707,0.10753893852234],[-0.22130481898785,-0.16683833301067,-0.14809294044971],[-0.22839826345444,-0.066480904817581,-0.016036117449403]],[[-0.084953613579273,0.010096511803567,-0.12121331691742],[-0.20943745970726,-0.031001277267933,-0.19348266720772],[-0.0077133886516094,-0.18054114282131,-0.12797835469246]],[[-0.046508513391018,-0.00055655185133219,-0.096122398972511],[0.14674217998981,0.13916613161564,0.078979231417179],[0.016041420400143,0.065332405269146,-0.048502024263144]],[[0.032947856932878,0.010790971107781,-0.12011586874723],[0.0089904284104705,0.029285231605172,-0.023182813078165],[0.021833868697286,-0.13653443753719,-0.067709617316723]],[[0.13402682542801,-0.043791636824608,0.068417631089687],[-0.020975194871426,-0.09254465252161,-0.11170069873333],[0.10142123699188,0.0035818519536406,-0.056610733270645]],[[0.11597402393818,0.13385006785393,0.021484518423676],[-0.23016850650311,0.12928029894829,-0.021636074408889],[-0.093139179050922,0.15615636110306,0.077725559473038]],[[0.25424003601074,-0.23922784626484,-0.06194332242012],[0.075706534087658,0.083776168525219,0.19593490660191],[-0.088228620588779,-0.14613583683968,-0.14140401780605]],[[-0.034948363900185,-0.033280547708273,-0.1831686347723],[-0.024983257055283,0.019211763516068,-0.060549758374691],[-0.088005200028419,0.11265809834003,0.12586170434952]]],[[[0.072222702205181,-0.062966011464596,-0.018752655014396],[-0.019740166142583,0.0076406802982092,-0.19384676218033],[0.011278390884399,0.13958786427975,-0.066010482609272]],[[-0.01127780135721,0.030539873987436,-0.15318758785725],[0.046022951602936,0.0051142810843885,-0.013581419363618],[-0.18574279546738,0.085741110146046,0.048868466168642]],[[-0.021668622270226,-0.11975798755884,-0.13818028569221],[0.012746943160892,-0.013129375874996,0.17673255503178],[-0.0081688268110156,0.1277923732996,0.017151899635792]],[[-0.017172301188111,0.051307059824467,-0.10749027878046],[0.17853744328022,-9.8985132353846e-05,-0.18349176645279],[0.013935401104391,-0.0088605359196663,-0.17527800798416]],[[0.020824098959565,-0.087934382259846,0.071544900536537],[0.042734563350677,-0.059521019458771,0.022241607308388],[-0.013443845324218,0.061135966330767,-0.093760684132576]],[[-0.02309306524694,0.086183704435825,-0.12191747128963],[-0.0010102048981935,0.060009378939867,-0.020933214575052],[0.044714894145727,0.077895775437355,0.029383668676019]],[[0.019277127459645,-0.019812189042568,-0.091884039342403],[-0.1046172901988,0.04266595095396,-0.15498206019402],[-0.049097541719675,-0.028512511402369,-0.058899227529764]],[[-0.0051367585547268,-0.043023556470871,-0.011953852139413],[0.079279191792011,-0.047171618789434,0.047413613647223],[0.077200748026371,0.024384163320065,0.053737666457891]],[[-0.027071941643953,-0.081571459770203,-0.095469415187836],[-0.030271096155047,0.031901184469461,-0.019855799153447],[0.084448002278805,0.039845746010542,0.040168199688196]],[[-0.072283282876015,-0.12066402286291,0.14414300024509],[-0.070407554507256,-0.18445168435574,-0.080743573606014],[0.1414890140295,0.13233791291714,0.011075664311647]],[[-0.14059999585152,0.049280162900686,0.022321112453938],[0.080579400062561,-0.10368754714727,-0.072357997298241],[-0.15084007382393,0.020993657410145,0.091928698122501]],[[-0.031533975154161,0.0020040727686137,-0.092970386147499],[-0.081478394567966,0.083717755973339,-0.15706318616867],[-0.041892185807228,0.039097458124161,-0.099457278847694]],[[-0.043716300278902,0.0703981295228,-0.20746874809265],[-0.12738342583179,0.17144307494164,-0.14834706485271],[0.029954195022583,0.04921568185091,-0.005669969599694]],[[-0.079153873026371,-0.034530833363533,0.08433236181736],[0.17713324725628,-0.062423691153526,0.063025929033756],[0.044051699340343,-0.057050541043282,-0.060650546103716]],[[-0.077408723533154,-0.013273594900966,0.02452427148819],[0.10097915679216,0.024335471913218,-0.057656440883875],[0.025550454854965,-0.052182607352734,0.048412825912237]],[[-0.28706932067871,-0.069403946399689,-0.21077947318554],[0.21448218822479,-0.077273473143578,0.10170124471188],[-0.022664502263069,-0.052324492484331,-0.45856845378876]],[[-0.039255287498236,-0.14628559350967,-0.11423051357269],[-0.041658829897642,0.027485460042953,-0.17001138627529],[0.18314188718796,-0.041244965046644,0.17929588258266]],[[0.13161081075668,-0.0054088640026748,-0.10230346024036],[0.045012164860964,0.090295560657978,-0.17507727444172],[0.05770006403327,-0.055124793201685,-0.029325701296329]],[[0.14074352383614,0.073171801865101,-0.16741202771664],[0.086723320186138,-0.020751189440489,-0.10945694893599],[-0.057021342217922,-0.036071732640266,-0.086112581193447]],[[0.11054376512766,-0.032046101987362,0.0088157411664724],[-0.047915577888489,0.099177293479443,0.027618864551187],[0.0029331832192838,-0.16345059871674,0.085655465722084]],[[-0.088609457015991,-0.032256621867418,-0.10107842087746],[-0.066192217171192,-0.016109347343445,-0.086748138070107],[-0.18879729509354,0.0077016167342663,0.061245236545801]],[[-0.1894536614418,-0.019535711035132,-0.12943668663502],[0.2045873850584,0.016079677268863,0.055712688714266],[-0.01998420804739,0.083617083728313,0.09611938148737]],[[-0.15339238941669,-0.025373769924045,-0.32611030340195],[0.0090745240449905,-0.089086882770061,-0.072328343987465],[-0.029511304572225,-0.063425086438656,-0.076600968837738]],[[-0.060931723564863,-0.14830085635185,-0.047806274145842],[0.028800271451473,-0.15828724205494,-0.1744762212038],[-0.012382154352963,0.0052613345906138,-0.1428729891777]],[[-0.33551675081253,-0.20376878976822,-0.25762224197388],[0.11327225714922,-0.12081356346607,-0.11088828742504],[0.2396454513073,0.058234188705683,-0.043862670660019]],[[0.091702535748482,0.083304770290852,-0.13551940023899],[-0.040795605629683,0.021309735253453,-0.23202455043793],[0.04411031678319,-0.030457954853773,-0.16478870809078]],[[-0.098370581865311,-0.23000082373619,-0.060488916933537],[-0.29839846491814,-0.10114563256502,0.064456142485142],[-0.12026566267014,0.12768946588039,0.052361853420734]],[[0.024509029462934,-0.083012476563454,-0.099874995648861],[-0.082435838878155,-0.11627347767353,-0.063316978514194],[0.13901396095753,-0.16217277944088,0.023671068251133]],[[0.11914828419685,0.065807446837425,-0.092866443097591],[-0.010772372595966,-0.0096451556310058,0.01455319672823],[-0.065748631954193,-0.032923229038715,-0.023353787139058]],[[-0.035948108881712,0.0038898380007595,-0.1892916560173],[0.064881592988968,-0.043413005769253,-0.032937470823526],[0.082283049821854,0.13686661422253,-0.12586937844753]],[[-0.075374387204647,0.031009763479233,0.085448414087296],[-0.038940943777561,-0.097516648471355,-0.053954266011715],[0.066102281212807,-0.041869331151247,0.14455468952656]],[[0.014605326578021,-0.083607003092766,0.12151213735342],[-0.10713273286819,0.10891348868608,-0.074515029788017],[0.20941790938377,-0.10379128903151,0.045228242874146]],[[-0.10029429942369,-0.036033596843481,0.018544610589743],[0.0093361241742969,0.013051806949079,0.011208641342819],[-0.10793752968311,0.097594127058983,0.052851613610983]],[[0.018590491265059,-0.06931471824646,0.066655918955803],[-0.090995848178864,-0.027722073718905,0.01863295212388],[-0.054928701370955,0.072922401130199,-0.079537183046341]],[[0.21131402254105,0.070137016475201,-0.0076853292994201],[0.028608471155167,-0.12501579523087,-0.17776781320572],[0.021265568211675,-0.014791404828429,-0.028624938800931]],[[0.12357376515865,-0.033874530345201,-0.24012586474419],[-0.22427818179131,-0.0043778899125755,-0.13032440841198],[0.025698002427816,0.038944989442825,-0.085849784314632]],[[-0.097811669111252,0.13501554727554,0.017309632152319],[-0.06982109695673,0.024520803242922,0.049229841679335],[-0.07177646458149,0.040842980146408,-0.081447586417198]],[[0.11114954203367,-0.0098538249731064,-0.068014122545719],[0.0062341247685254,0.099631570279598,0.038336586207151],[0.080708675086498,0.099709585309029,0.1631223410368]],[[0.050601985305548,-0.13861159980297,-0.16218088567257],[-0.00138418097049,-0.16692724823952,0.063183262944221],[0.023813439533114,-0.088443674147129,-0.15365687012672]],[[0.022039599716663,0.054574269801378,-0.029474101960659],[0.020929988473654,-0.073075130581856,-0.092799186706543],[0.046138975769281,0.083484075963497,-0.042213633656502]],[[0.049238666892052,-0.054485447704792,0.047566667199135],[-0.14939095079899,0.08260066062212,-0.0030627700034529],[0.12065403163433,-0.029589047655463,-0.16921737790108]],[[0.01052825525403,-0.073668643832207,-0.16100792586803],[0.0067514926195145,-0.038250975310802,0.011487966403365],[-0.080367892980576,0.16122478246689,-0.0014407421695068]],[[-0.069352835416794,0.045290719717741,-0.087159216403961],[-0.017597828060389,0.037888962775469,-0.15253308415413],[0.11169286817312,0.08648257702589,-0.11800349503756]],[[0.20528236031532,0.095199666917324,0.0093200709670782],[-0.15176419913769,0.060877852141857,-0.031353715807199],[-0.0094193266704679,-0.063595682382584,-0.097390420734882]],[[-0.13122284412384,0.20464394986629,-0.058498062193394],[-0.019370835274458,0.0085591329261661,0.1110497713089],[-0.047208476811647,-0.1568109691143,-0.12489389628172]],[[-0.26628172397614,-0.082729414105415,-0.38273215293884],[-0.29256403446198,0.012913422659039,0.05784297734499],[-0.17248544096947,0.087551422417164,0.10966054350138]],[[-0.088331162929535,-0.093000248074532,0.19883115589619],[0.049369301646948,-0.027489870786667,-0.050112277269363],[-0.013868534937501,0.10466861724854,0.0017714055720717]],[[-0.047264151275158,-0.11900016665459,0.042273413389921],[0.048977874219418,-0.07190940529108,0.0068091624416411],[0.074108719825745,-0.21912336349487,-0.14073240756989]],[[0.11287394165993,0.053997322916985,0.16917437314987],[-0.049501817673445,0.14087142050266,0.042340192943811],[0.098070666193962,-0.036249827593565,0.03896726295352]],[[0.063385345041752,-0.14230987429619,-0.20141197741032],[0.035007979720831,-0.094295807182789,-0.014453126117587],[0.034118190407753,-0.034792643040419,-0.27294528484344]],[[0.075490735471249,-0.25512880086899,0.056061506271362],[0.056435626000166,-0.024526217952371,-0.0089262081310153],[0.17835469543934,-0.15517064929008,-0.077581822872162]],[[-0.14568811655045,-0.033745374530554,0.055967073887587],[-0.040960673242807,0.023656878620386,-0.00036954760435037],[0.003441589185968,-0.03246259316802,-0.1697239279747]],[[0.12136009335518,0.21066062152386,0.0095082437619567],[-0.0034742483403534,0.088975071907043,-0.039246533066034],[-0.13678732514381,-0.092264927923679,0.017009796574712]],[[0.01792929135263,-0.13633207976818,-0.07048100233078],[0.10904497653246,-0.072120182216167,0.031196104362607],[0.11743105202913,-0.125677511096,0.093053258955479]],[[-0.048269089311361,-0.16566851735115,-0.074721731245518],[0.022947678342462,-0.080316811800003,0.098319925367832],[0.088072471320629,-0.056846171617508,-0.087518438696861]],[[0.022785343229771,-0.11190066486597,-0.18576797842979],[-0.029747324064374,-0.0022076736204326,-0.020745802670717],[0.089514292776585,0.021565018221736,0.02113732881844]],[[-0.020541707053781,-0.10470440238714,-0.21805202960968],[0.089378327131271,-0.038696281611919,-0.1490298807621],[-0.022648081183434,0.066942028701305,-0.10829516500235]],[[-0.10951742529869,0.15977868437767,-0.23096051812172],[-0.25041350722313,0.069177873432636,-0.051659379154444],[-0.071838647127151,0.042546048760414,0.14103470742702]],[[-0.0093484064564109,0.077405788004398,-0.11521282792091],[-0.0070222490467131,0.017241394147277,-0.013512398116291],[0.055157773196697,-0.02341641113162,-0.08533900231123]],[[-0.14604642987251,0.059776108711958,-0.20451457798481],[0.06033580750227,0.22565843164921,-0.10046824812889],[0.30044895410538,-0.16324178874493,0.0064420863054693]],[[-0.054034296423197,-0.047800563275814,-0.30454644560814],[-0.041362430900335,-0.067737333476543,-0.10724695026875],[-0.036703143268824,-0.095114938914776,-0.19990316033363]],[[-0.027214225381613,-0.10615087300539,-0.065305560827255],[0.12979780137539,-0.1080077663064,-0.15442037582397],[-0.18934689462185,0.018708180636168,-0.032612953335047]],[[-0.042168971151114,-0.0625329464674,-0.22939066588879],[0.039455853402615,0.016826821491122,-0.081144109368324],[0.1120543256402,-0.059522140771151,-0.15755768120289]],[[-0.010717957280576,0.09757487475872,0.027428243309259],[-0.044142559170723,0.064511425793171,-0.15514317154884],[0.00063287990633398,0.056142874062061,0.080789275467396]]],[[[0.019749013707042,-0.018605375662446,0.040345083922148],[0.013587870635092,-0.018162151798606,0.016109295189381],[-0.09620201587677,0.0079055959358811,0.012470670044422]],[[-0.058300983160734,0.034335508942604,-0.010460999794304],[0.047615475952625,0.14094656705856,-0.048702143132687],[-0.081997081637383,0.077119052410126,-0.048451412469149]],[[0.054649733006954,0.051342580467463,-0.016208879649639],[0.0081789642572403,-0.031461022794247,0.0026438462082297],[-0.019316313788295,-0.031334139406681,-0.026854382827878]],[[-0.044854715466499,0.030380591750145,-0.026199281215668],[0.051002752035856,0.0051832660101354,-0.044730823487043],[-0.060874238610268,0.010845717974007,0.043289735913277]],[[-0.0020448842551559,0.049417618662119,0.00023036217316985],[0.016217978671193,0.046243913471699,-0.046530175954103],[0.04710353538394,-0.065637044608593,-0.016802648082376]],[[-0.033508993685246,0.020503271371126,0.1145843937993],[-0.0052266549319029,-0.067159935832024,0.033622603863478],[0.052553877234459,0.0093245580792427,-0.13043139874935]],[[0.084014065563679,-0.026261998340487,0.042094543576241],[0.022529164329171,-0.0336993932724,-0.08484099060297],[-0.036997426301241,-0.064973212778568,-0.0027787366416305]],[[0.057676903903484,-0.042463213205338,0.027000365778804],[-0.086022637784481,-0.095537193119526,-0.048247672617435],[-0.076890647411346,-0.048759318888187,-0.072653919458389]],[[-0.037200305610895,-0.23825268447399,-0.11773695796728],[-0.057739742100239,-0.19477988779545,-0.1219699010253],[-0.0038661174476147,-0.22311633825302,-0.018990384414792]],[[0.01814697869122,-0.0030478241387755,0.01374739035964],[-0.038640812039375,0.033169224858284,-0.006959923543036],[-0.097215510904789,0.072006516158581,0.0075457692146301]],[[-0.031631115823984,0.026590637862682,0.022405628114939],[-0.022687906399369,0.031738944351673,-0.032561264932156],[0.057672098278999,-0.061344143003225,0.033164065331221]],[[0.0082741528749466,-0.030436309054494,-0.034441813826561],[0.027457598596811,0.026789639145136,0.016809223219752],[-0.032283645123243,0.0054589742794633,0.009970678947866]],[[-0.0099723907187581,-0.015641808509827,-0.031317852437496],[0.054913122206926,0.05488258972764,-0.022127579897642],[-0.12195698916912,0.042182236909866,0.0054448759183288]],[[-0.0031770381610841,0.038916792720556,-0.0077220043167472],[-0.0037350440397859,0.035868741571903,0.0099971704185009],[-0.010490914806724,0.058680515736341,-0.098641388118267]],[[-0.007468334864825,-0.077572785317898,0.021487575024366],[0.087766855955124,-0.024552488699555,-0.036561116576195],[-0.0069867451675236,0.069486789405346,-0.033764950931072]],[[-0.0088409744203091,-0.04040789231658,-0.021805493161082],[0.018932031467557,-0.013455206528306,0.04394206777215],[-0.034641999751329,0.022945359349251,-4.732758316095e-05]],[[0.052119001746178,-0.046953834593296,0.021912660449743],[0.045853700488806,-0.0058589507825673,0.0064011081121862],[-0.04888604208827,0.0073617254383862,-0.031209388747811]],[[0.03994082659483,-0.021163458004594,-0.073792077600956],[0.074756197631359,0.001684476970695,0.066010601818562],[-0.030152769759297,0.10813172161579,-0.18396331369877]],[[0.011330644600093,0.017856907099485,-0.11919932067394],[-0.014333757571876,0.047749817371368,0.011056863702834],[-0.020606521517038,0.052732918411493,0.015412387438118]],[[0.040674783289433,-0.016358541324735,0.029640970751643],[-0.046787887811661,-0.024315966293216,-0.01892732270062],[-0.053405743092299,0.028353948146105,0.013936396688223]],[[-0.094291009008884,0.044908862560987,0.023475352674723],[0.03168723732233,0.042352635413408,0.037204302847385],[0.026866134256124,-0.10627587139606,-0.012737920507789]],[[0.05779018625617,0.039540391415358,0.10087855905294],[-0.081542536616325,-0.017453901469707,-0.042669471353292],[-0.02745708450675,-0.021713031455874,0.01156123355031]],[[0.026130767539144,-0.011827580630779,0.0088885175064206],[-0.089035540819168,-0.087495498359203,0.047834359109402],[0.026532495394349,0.031530417501926,0.03778662532568]],[[-0.057022616267204,-0.063029557466507,-0.059364214539528],[0.011110571213067,-0.057438641786575,0.0183748267591],[0.044400915503502,0.062218714505434,0.04703751578927]],[[-0.079652152955532,0.046558938920498,-0.018222371116281],[-0.016826827079058,-0.045173231512308,0.015211115591228],[0.11134337633848,-0.066494137048721,0.043265100568533]],[[-0.011733252555132,0.026418583467603,-0.040747154504061],[0.062780469655991,-0.04041001200676,-0.07815520465374],[0.054987095296383,0.021486261859536,0.01292438711971]],[[0.0060535995289683,-0.0046924487687647,0.014966047368944],[0.040980722755194,-0.058786030858755,0.01329303253442],[-0.087282635271549,-0.0066196722909808,0.026248862966895]],[[-0.017263809219003,-0.011797462590039,0.059881325811148],[-0.02311884984374,-0.0060182698071003,-0.010193136520684],[0.02284880168736,0.0097955167293549,-0.021620407700539]],[[0.01349856518209,0.025804443284869,-0.014574197120965],[0.016482913866639,-0.060368366539478,0.021944344043732],[0.041230723261833,-0.042119938880205,-0.011372627690434]],[[0.058143764734268,-0.023222457617521,-0.03147054463625],[-0.027643254026771,0.045769229531288,0.010863760486245],[-0.031916029751301,-0.030767101794481,0.03894355520606]],[[-0.083403758704662,0.0052759503014386,0.021508989855647],[-0.016706502065063,0.021981978788972,0.028812756761909],[0.033229477703571,0.061787597835064,-0.030952444300056]],[[0.034466397017241,-0.053449161350727,-0.0027857518289238],[-0.039194587618113,-0.056625541299582,0.01631448790431],[0.012030279263854,0.018251150846481,0.073417663574219]],[[-0.010271484963596,0.0421372205019,0.019465142861009],[-0.024707403033972,-0.064454354345798,0.0015436941757798],[0.052692610770464,-0.016774823889136,-0.0030494863167405]],[[-0.018077999353409,0.08287239074707,-0.022000646218657],[0.0030083968304098,-0.077362410724163,0.012699069455266],[-0.070682272315025,-0.035149414092302,0.0078231319785118]],[[0.039866540580988,0.024019522592425,0.083811774849892],[-0.038188342005014,-0.022066565230489,-0.023873457685113],[-0.0027382427360862,-0.06766664981842,-0.013241659849882]],[[0.017917659133673,-0.0045754723250866,0.035949230194092],[-0.062898240983486,0.036120727658272,-0.019384955987334],[-0.012863451614976,0.017033893615007,0.017494888976216]],[[-0.077337093651295,0.033579245209694,0.0033017953392118],[-0.020563341677189,-0.03504640981555,0.034172553569078],[0.01437845826149,0.020684814080596,0.012165579944849]],[[-0.027582002803683,-0.055053424090147,0.092842072248459],[0.019175436347723,-0.051219452172518,0.034580081701279],[-0.0028400393202901,0.023816682398319,0.020534686744213]],[[0.024458572268486,-0.055945929139853,0.03036330640316],[-0.027101630344987,0.033313754945993,-0.047032032161951],[-0.05022780969739,-0.019894283264875,0.051962245255709]],[[0.00026811935822479,-0.041325759142637,0.025995444506407],[0.019183469936252,-0.12071393430233,-0.028008433058858],[0.0045905443839729,0.087364919483662,-0.048494592308998]],[[-0.045740440487862,-0.058663263916969,0.024894777685404],[0.06130038574338,0.035808596760035,-0.038278806954622],[-0.016218591481447,0.034184955060482,-0.0091243265196681]],[[0.06642509251833,-0.021483669057488,0.010038360022008],[-0.02345902658999,-0.027916543185711,0.038321822881699],[-0.039255723357201,0.021956570446491,-0.048700504004955]],[[0.02012949064374,-0.0082125514745712,0.009837138466537],[-0.0065514645539224,0.0023327139206231,-0.0083007318899035],[-0.018292730674148,-0.1070939078927,0.08739335089922]],[[0.068535834550858,0.049358367919922,0.08241006731987],[0.053369797766209,0.091649152338505,0.092885248363018],[0.052589304745197,0.1794346421957,0.00016303348820657]],[[-0.0010607887525111,-0.020178927108645,-0.00043477010331117],[-0.07875357568264,0.071086183190346,0.02523460611701],[0.0035804305225611,0.0054598329588771,0.018908055499196]],[[-0.048266425728798,0.03151997178793,-0.049527902156115],[0.025619579479098,-0.047668799757957,0.034447688609362],[0.013423221185803,0.023775205016136,0.015619998797774]],[[-0.045656453818083,0.030253179371357,0.012682551518083],[-0.0056543378159404,-0.0050562936812639,0.0058169467374682],[0.06451490521431,-0.035585790872574,-0.029655307531357]],[[-0.049620296806097,-0.011670883744955,0.040800746530294],[0.047256920486689,-0.022981306537986,-0.020656164735556],[0.014513945207,0.013245515525341,-0.044269967824221]],[[0.0035254922695458,0.069578982889652,-0.025270478799939],[-0.022977517917752,0.091123320162296,0.0011230569798499],[-0.02480086311698,-0.013683961704373,-0.069780856370926]],[[-0.058886397629976,0.084316462278366,-0.076815813779831],[-0.052451115101576,0.061637658625841,0.0072025810368359],[0.022468162700534,-0.0022300116252154,-0.0070269480347633]],[[-0.024417834356427,0.039903342723846,-0.058969363570213],[-0.056601885706186,-0.014267187565565,0.063064090907574],[0.067576140165329,-0.043041799217463,0.0018848913023248]],[[-0.0092338360846043,-0.034024640917778,0.02625191397965],[0.010221125558019,0.075175024569035,-0.012183498591185],[-0.02396666072309,-0.026764702051878,-0.023891415446997]],[[0.0083213718608022,0.032693117856979,-0.049040000885725],[0.049119081348181,0.0051857382059097,-0.019756622612476],[0.018626539036632,-0.022204775363207,-0.051724836230278]],[[0.02265371568501,0.052681770175695,0.017640791833401],[-0.053046233952045,0.025255594402552,-0.025884354487062],[-0.014305392280221,-0.020990591496229,-0.0058280634693801]],[[0.049353901296854,-0.10895262658596,0.075059711933136],[0.0647898837924,-0.091476731002331,-0.09468025714159],[-0.029721483588219,0.11605689674616,-0.019781088456511]],[[-0.034935306757689,0.028382973745465,-0.031011348590255],[-0.0031783459708095,0.092993229627609,0.011084069497883],[-0.033615101128817,0.0012500450247899,-0.03627971932292]],[[0.074358738958836,0.0009081878233701,-0.019010150805116],[-0.010751146823168,0.017806809395552,-0.059222254902124],[0.034755233675241,-0.057585280388594,0.0035813695285469]],[[-0.031936354935169,0.037888199090958,-0.035000611096621],[0.035991113632917,0.016598224639893,0.010560732334852],[-0.050952542573214,0.035126674920321,-0.014500263147056]],[[-0.089179046452045,-0.034352283924818,0.062082596123219],[-0.021188713610172,0.0266047809273,-0.028169568628073],[0.053625997155905,0.022895313799381,0.041178066283464]],[[-0.014185081236064,-0.015709748491645,-0.022894579917192],[0.012880994938314,-0.00059054413577542,-0.0030256693717092],[0.0062680509872735,-0.051099643111229,0.049758959561586]],[[-0.018903147429228,-0.013886971399188,0.0089034792035818],[-0.0092480583116412,0.059334006160498,-0.030234798789024],[-0.053083598613739,-0.016217965632677,0.032051153481007]],[[0.04422041028738,0.0042435606010258,-0.050774734467268],[-0.027472168207169,0.012940804474056,0.010923092253506],[0.015838516876101,0.003843933576718,-0.0043577761389315]],[[-0.021176898851991,-0.016517644748092,0.062097892165184],[0.0057915351353586,0.061029158532619,0.037701841443777],[0.022643929347396,-0.078200437128544,-0.083732560276985]],[[0.0033393402118236,0.019447786733508,-0.021658843383193],[0.00068080244818702,0.0013538432540372,0.010051162913442],[0.016110369935632,-0.0071485703811049,-0.027568317949772]]],[[[-0.1698539853096,-0.066098757088184,0.20058254897594],[0.18460734188557,-0.06055998057127,-0.12612171471119],[-0.073908537626266,0.015848204493523,0.10843997448683]],[[0.19413004815578,0.13629844784737,0.099227257072926],[0.038243506103754,-0.1425988972187,-0.23881776630878],[-0.056653629988432,-0.044898487627506,-0.030175106599927]],[[-0.019713211804628,-0.068087212741375,0.060702264308929],[-0.2314628213644,-0.18872800469398,-0.021886415779591],[-0.058730252087116,0.034678068011999,-0.074456453323364]],[[-0.002127215731889,-0.0041278651915491,0.031263891607523],[0.086507588624954,-0.090908341109753,-0.10381719470024],[0.063598908483982,0.032837722450495,-0.036150131374598]],[[-0.08070507645607,-0.22171893715858,0.14627921581268],[0.038965653628111,0.031662285327911,0.049068670719862],[-0.009482410736382,0.084900267422199,-0.070980288088322]],[[-0.079483568668365,0.066880941390991,-0.18364435434341],[0.10387223213911,-0.028265736997128,-0.28310939669609],[-0.018935399129987,-0.0973189920187,-0.1148092597723]],[[-0.13967356085777,0.018067250028253,-0.0044547505676746],[-0.045531515032053,-0.096518710255623,0.074683524668217],[0.079115353524685,-0.11658351123333,-0.044550143182278]],[[-0.014686485752463,-0.1337788850069,-0.011002022773027],[0.091175518929958,-0.15705122053623,0.12432266771793],[0.034375783056021,-0.019418265670538,-0.17469549179077]],[[0.11106277257204,0.052467983216047,-0.041948784142733],[-0.077220566570759,-0.069682434201241,-0.083937555551529],[0.037124902009964,-0.087373331189156,0.06365804374218]],[[0.04179385304451,-0.16139304637909,0.14273226261139],[0.021672185510397,-0.047884698957205,0.10513864457607],[-0.099593266844749,0.09421818703413,0.052793528884649]],[[-0.10740270465612,-0.10713811218739,-0.15126021206379],[0.035929761826992,-0.065699942409992,-0.040271166712046],[0.10367533564568,0.070424415171146,0.16669416427612]],[[-0.074070028960705,0.031872682273388,-0.054975900799036],[0.025036845356226,0.12687563896179,0.018993780016899],[-0.065645977854729,-0.0054616946727037,-0.13224034011364]],[[0.020945413038135,0.10961972922087,0.048553019762039],[0.09593902528286,0.17162615060806,-0.1791398525238],[-0.091911740601063,0.040817152708769,-0.036840166896582]],[[-0.023708682507277,0.072187565267086,-0.021929457783699],[0.001785195665434,-0.037212312221527,0.029271004721522],[0.039435923099518,0.1173400580883,-0.015534296631813]],[[0.017934383824468,-0.070756703615189,0.11223489791155],[0.11449798196554,-0.058300662785769,0.030962793156505],[0.10147766768932,0.047587238252163,-0.003192130709067]],[[-0.0012453013332561,0.20003753900528,0.0038144630379975],[-0.04510747641325,-3.6088509659749e-05,0.0089378729462624],[-0.074599377810955,0.040367648005486,-0.053606104105711]],[[-0.0032320774625987,-0.075832404196262,-0.017128130421042],[0.0058972770348191,-0.092568688094616,0.02327367849648],[-0.15658849477768,-0.11988874524832,0.085579954087734]],[[-0.095941938459873,0.00090154830832034,-0.046263318508863],[-0.2182601839304,-0.13782240450382,-0.074457801878452],[0.012311017140746,0.090199299156666,-0.038173820823431]],[[-0.05154150351882,-0.043973028659821,-0.048097372055054],[0.01863805949688,-0.057980991899967,-0.025407206267118],[-0.14932088553905,0.044044256210327,0.12179454416037]],[[0.016660783439875,-0.0044414829462767,-0.010715993121266],[-0.12365686148405,0.057359915226698,0.13780951499939],[0.021765001118183,-0.038409467786551,-0.087031029164791]],[[0.12837019562721,-0.012426278553903,-0.022822787985206],[-0.15099602937698,0.024644175544381,-0.11952470242977],[-0.056584224104881,-0.03192375972867,0.078065767884254]],[[0.12166804820299,0.048156198114157,-0.087324246764183],[-0.03467396274209,-0.0046433513052762,-0.0085171367973089],[0.028850018978119,0.17797845602036,0.076059721410275]],[[-0.091210693120956,0.048935607075691,-0.017945319414139],[0.044135447591543,0.012213843874633,-0.13844045996666],[0.10198850184679,0.1206670999527,0.11964206397533]],[[0.23938147723675,0.046183668076992,-0.057245787233114],[-0.042136233299971,-0.16288696229458,-0.16246385872364],[0.039314422756433,0.13964127004147,0.059775702655315]],[[-0.027796817943454,0.01610111631453,0.11028826981783],[0.13595312833786,-0.074767887592316,0.028772091493011],[-0.053409736603498,-0.036731254309416,0.12476859986782]],[[-0.13044847548008,0.03673879802227,0.10868468880653],[0.056204490363598,0.036041814833879,-0.074058458209038],[-0.059492308646441,-0.098681181669235,0.046482048928738]],[[0.031528931111097,-0.11124511063099,-0.059068411588669],[-0.0001827719679568,0.060068540275097,-0.013246226124465],[0.034692738205194,-0.058233890682459,0.11647282540798]],[[0.11581400036812,0.13191038370132,-0.21426604688168],[0.0017375915776938,-0.098525196313858,-0.11613697558641],[-0.015566145069897,0.099516928195953,-0.051312923431396]],[[0.049011286348104,0.13152912259102,0.13135865330696],[0.0046927337534726,0.023269599303603,-0.071823216974735],[-0.0055940421298146,-0.071570932865143,-0.071744844317436]],[[0.10098875313997,0.12949848175049,0.22041022777557],[0.021319895982742,0.0084267584607005,-0.065682582557201],[0.019093755632639,-0.050298046320677,0.095127671957016]],[[-0.10937642306089,-0.072843343019485,0.070398665964603],[0.032062012702227,0.037420824170113,-0.055958028882742],[0.0068326015025377,-0.0094303674995899,0.00057523330906406]],[[0.0067579671740532,-0.082821674644947,-0.005631897598505],[-0.021614316850901,0.13756340742111,0.1679071187973],[-0.016059566289186,-0.096385858952999,0.052146021276712]],[[0.19706317782402,0.094841547310352,-0.075332716107368],[0.00084593042265624,-0.091092936694622,0.12629349529743],[-0.018020946532488,0.052001889795065,0.011259199120104]],[[-0.035982344299555,-0.072324298322201,-0.062126222997904],[0.010903575457633,-0.027677193284035,-0.0078625539317727],[0.12291139364243,-0.0085442224517465,-0.022077823057771]],[[-0.017148358747363,-0.081056162714958,-0.07638393342495],[0.039611060172319,0.21625657379627,0.055938851088285],[0.047560002654791,-0.064776696264744,0.012978630140424]],[[0.038563676178455,-0.053762678056955,0.04333471506834],[-0.010900186374784,-0.039112836122513,0.031476750969887],[0.11959718167782,-0.069763839244843,-0.10615855455399]],[[0.093624606728554,0.078665122389793,-0.017320070415735],[-0.045250974595547,-0.12238613516092,-0.15671823918819],[-0.017437847331166,0.090277276933193,0.013129231519997]],[[-0.22756150364876,0.11610589176416,0.059163678437471],[-0.21066670119762,-0.12889824807644,0.10859751701355],[0.090720504522324,0.058636274188757,-0.052922151982784]],[[0.099169075489044,-0.014763666316867,-0.081856891512871],[-0.12558433413506,-0.25440847873688,-0.0086015705019236],[-0.031253982335329,0.023439476266503,0.0010712898802012]],[[-0.014336607418954,-0.096101343631744,0.07085357606411],[0.21440772712231,0.046434335410595,-0.052533183246851],[-0.078576929867268,-0.11185243725777,0.041719611734152]],[[0.074310898780823,0.14504413306713,0.11632518470287],[0.064486913383007,-0.046498220413923,-0.017643731087446],[0.070957578718662,0.0033781649544835,0.17130433022976]],[[-0.029902944341302,-0.014014675281942,-0.097333863377571],[0.028967820107937,0.030243590474129,-0.064007267355919],[0.10425747931004,-0.0089488895609975,0.138577491045]],[[0.040679637342691,0.083984144032001,-0.067658066749573],[0.061128057539463,-0.11068144440651,0.11208073794842],[0.1132499948144,0.010764518752694,-0.077362224459648]],[[-0.045133605599403,-0.085421420633793,-0.10726327449083],[0.035744022578001,-0.011968596838415,0.0064042937010527],[0.063899621367455,0.047721333801746,-0.0026863669045269]],[[0.047157175838947,-0.10428043454885,-0.15606486797333],[0.13013914227486,0.067952282726765,-0.026707937940955],[-0.15146963298321,0.059091713279486,-0.10911723971367]],[[-0.079373084008694,-0.038213431835175,-0.029515633359551],[0.12142163515091,-0.059908397495747,-0.11997412890196],[-0.063962429761887,0.065996445715427,0.023425668478012]],[[0.0384307987988,-0.11919235438108,0.098254904150963],[0.050631582736969,0.010497928597033,0.14964780211449],[-0.07589016109705,-0.053662162274122,0.042520426213741]],[[-0.0035718062426895,0.027580933645368,-0.0085196141153574],[-0.10081970691681,0.059517219662666,-0.077864341437817],[0.048037488013506,0.040346667170525,-0.089421629905701]],[[-0.096037097275257,-0.1939951479435,-0.00069247011560947],[0.059598181396723,0.05225307866931,0.11829177290201],[-0.30395364761353,-0.2754271030426,-0.04949302598834]],[[0.04724245518446,0.012578196823597,-0.11719673126936],[-0.018278146162629,0.033030867576599,-0.14571917057037],[-0.045677572488785,-0.067369863390923,-0.0075302054174244]],[[-0.11961331218481,0.017560049891472,0.010023576207459],[0.072719022631645,-0.012653247453272,0.13163621723652],[0.057449750602245,-0.037562686949968,0.10635960847139]],[[0.12479594349861,0.11253060400486,0.14202708005905],[-0.031894903630018,-0.077248699963093,-0.15863816440105],[0.0028270138427615,-0.05559878796339,-0.13802996277809]],[[-0.0047285263426602,-0.010818260721862,0.039877828210592],[-0.1106376349926,0.13295702636242,-0.10948333889246],[-0.10715769231319,0.13820916414261,0.070689871907234]],[[-0.031162330880761,-0.028426172211766,0.041622333228588],[0.19415901601315,-0.0085593545809388,-0.048422820866108],[-0.057916928082705,-0.12102775275707,-0.18701925873756]],[[0.013471563346684,0.16377919912338,-0.086191713809967],[-0.13819444179535,-0.054225362837315,0.016353622078896],[-0.035118896514177,0.20948998630047,-0.10244837403297]],[[0.061127871274948,0.010094002820551,-0.089633733034134],[-0.048227183520794,-0.087247662246227,0.01036037504673],[-0.014357399195433,-0.010130355134606,0.12076430022717]],[[0.15708774328232,0.12615723907948,-0.1270886361599],[-0.054833602160215,-0.075597576797009,-0.1845882833004],[0.048223212361336,-0.016436818987131,-0.11706081032753]],[[0.033489543944597,-0.0061433054506779,0.024294294416904],[-0.17912475764751,-0.093918725848198,-0.048422299325466],[-0.010349476709962,-0.096469797194004,0.23095424473286]],[[0.057058226317167,-0.20695671439171,0.034468673169613],[-0.049625162035227,-0.097202487289906,-0.060038857161999],[0.036890551447868,-0.04261539876461,0.12810203433037]],[[0.14959329366684,0.10694516450167,0.087439686059952],[0.10431515425444,0.10054383426905,-0.18906638026237],[0.046371843665838,-0.15607298910618,0.15322545170784]],[[-0.042155358940363,-0.080162324011326,0.012931121513247],[0.064889833331108,0.040769185870886,0.057279147207737],[-0.15471421182156,-0.01434066798538,-0.01011836156249]],[[-0.07652985304594,0.12271730601788,0.0054582944139838],[0.05409237369895,-0.067920014262199,0.011124277487397],[-0.063372127711773,-0.16840159893036,0.16353443264961]],[[0.061702504754066,0.03961293399334,0.049445018172264],[-0.14551903307438,0.0051162140443921,0.065898448228836],[0.046741861850023,0.051485449075699,-0.067880049347878]],[[-0.13951218128204,0.016808046028018,0.098863266408443],[-0.015262311324477,0.04539043456316,0.065132617950439],[-0.20556853711605,-0.032121773809195,0.091103039681911]]],[[[0.040294013917446,0.072273910045624,0.092487871646881],[0.19650866091251,-0.027879124507308,0.08986259996891],[0.068911477923393,-0.021447390317917,0.1063876748085]],[[-0.026802975684404,-0.0066159884445369,-0.010922374203801],[-0.0051280981861055,-0.035422824323177,0.0035118721425533],[-0.10596017539501,-0.020686281844974,0.15641582012177]],[[-0.099155940115452,0.078528970479965,-0.0046099843457341],[-0.14698354899883,-0.055078405886889,0.11056666821241],[0.14398886263371,0.062992714345455,0.026571039110422]],[[0.023188276216388,0.023106945678592,-0.096966423094273],[0.070493809878826,-0.11756653338671,-0.22885771095753],[0.057694721966982,0.00097388192079961,0.038046393543482]],[[-0.065097339451313,-0.0016371451783925,-0.16193960607052],[0.044832989573479,-0.024131882935762,0.030940568074584],[-0.034547358751297,-0.028417026624084,0.031879153102636]],[[-0.087755709886551,-0.16349941492081,0.04734294116497],[0.019809743389487,-0.075452089309692,0.021682487800717],[0.027760483324528,-0.18380211293697,-0.06424605846405]],[[-0.20208722352982,-0.013349621556699,-0.016944143921137],[0.10898071527481,-0.0059364810585976,0.0025986775290221],[-0.013788460753858,0.058367785066366,-0.081395953893661]],[[0.0248101092875,-0.019209004938602,-0.030398862436414],[-0.013452869839966,-0.0086695561185479,0.012968439608812],[0.0072649759240448,0.045276805758476,0.066901482641697]],[[0.04602075368166,0.01583699695766,-0.15767070651054],[-0.04197046533227,0.10954853892326,0.053717214614153],[0.046404533088207,-0.1123875901103,0.010034138336778]],[[0.08383271843195,-0.10115694999695,0.20401820540428],[0.0041183833964169,-0.13476493954659,-0.43236812949181],[0.040838111191988,-0.037320051342249,0.014333263039589]],[[0.018928959965706,0.09763315320015,0.15551987290382],[-0.070291608572006,0.083184070885181,0.020736396312714],[0.029243499040604,-0.051216382533312,0.02608167566359]],[[-0.078588336706161,-0.061562139540911,-0.29217064380646],[0.015073734335601,0.067093633115292,0.023781472817063],[0.11507615447044,-0.064028404653072,-0.13763101398945]],[[0.005605517886579,-0.10595768690109,-0.29741108417511],[0.17991983890533,-0.018441768363118,0.091810002923012],[0.24661447107792,0.11320272833109,-0.1335256844759]],[[0.00082152627874166,0.041434708982706,-0.079263381659985],[0.040562275797129,0.084483809769154,0.1067718192935],[-0.052628181874752,-0.032007411122322,0.085228942334652]],[[0.12342320382595,0.035878177732229,0.094204410910606],[0.017487132921815,-0.20278559625149,-0.040251709520817],[0.036801718175411,0.020815951749682,0.0985506772995]],[[-0.043601226061583,-0.11190333217382,-0.19817543029785],[0.13245376944542,-0.052341338247061,0.20900122821331],[0.037141054868698,0.015606735832989,-0.022127792239189]],[[-0.034831579774618,-0.093019708991051,-0.21005263924599],[0.12193961441517,-0.087365075945854,-0.011260582134128],[-0.031439904123545,-0.099500253796577,0.21487112343311]],[[0.087478168308735,-0.019907800480723,-0.17244802415371],[0.10363254696131,-0.031529475003481,-0.17149990797043],[0.062408957630396,0.092692829668522,-0.088240601122379]],[[0.089457228779793,0.14148610830307,-0.076499313116074],[-0.016379607841372,-0.028326753526926,0.11872437596321],[0.031917445361614,-0.054624307900667,0.18320482969284]],[[0.15038026869297,-0.093153171241283,-0.24281059205532],[0.062440667301416,-0.074548095464706,0.03094282746315],[0.039176393300295,-0.062748201191425,0.10480114817619]],[[-0.020098375156522,-0.055611941963434,-0.11878156661987],[0.074282385408878,-0.027666447684169,0.21559251844883],[0.11136334389448,-0.23222240805626,-0.069823533296585]],[[0.046919457614422,0.054339680820704,0.048891920596361],[-0.043118089437485,0.061152882874012,0.15013398230076],[0.053648162633181,0.052788406610489,0.02968710847199]],[[0.039251122623682,-0.026232693344355,-0.021818164736032],[0.034187234938145,-0.11991240829229,-0.0027629854157567],[-0.072134770452976,-0.19643262028694,-0.13159044086933]],[[0.054572846740484,-0.068079479038715,-0.038385752588511],[0.012627615593374,0.12681958079338,-0.15812708437443],[-0.001917151035741,0.0030041639693081,0.056953106075525]],[[-0.081500396132469,-0.019241526722908,-0.13157667219639],[-0.053564880043268,0.021629326045513,0.0048222737386823],[0.093554064631462,0.039526287466288,0.007790170609951]],[[0.060089632868767,-0.049288056790829,-0.17798899114132],[-0.051700126379728,-0.027732484042645,-0.010145688429475],[0.068609498441219,-0.12318902462721,0.0060757976025343]],[[0.11952260136604,-0.25577735900879,-0.15426807105541],[0.064488686621189,0.060784656554461,0.18792313337326],[0.046548143029213,-0.034499801695347,-0.12904618680477]],[[-0.21243742108345,-0.12120368331671,-0.012252222746611],[-0.10157223045826,-0.11821576207876,0.1411015689373],[0.049396045506001,0.035170901566744,-0.0056895990855992]],[[0.056961011141539,-0.035822305828333,-0.31632846593857],[0.0090580731630325,0.044865451753139,-0.023924797773361],[0.05389790982008,-0.14782658219337,-0.030168013647199]],[[-0.052103482186794,0.025526100769639,-0.32988700270653],[0.049845542758703,-0.0031220361124724,-0.10317277908325],[0.065690338611603,-0.057968180626631,-0.021032331511378]],[[-0.099752709269524,0.088117703795433,-0.099129430949688],[0.028128797188401,-0.052716262638569,0.13374699652195],[-0.03057075291872,0.11689985543489,0.098332546651363]],[[0.07180293649435,0.017628254368901,0.1608122587204],[-0.080963775515556,-0.099556818604469,-0.082949608564377],[-0.040865652263165,-0.036321241408587,0.13744866847992]],[[0.10898859798908,0.015415956266224,-0.0096317324787378],[0.088466584682465,0.11159262806177,-0.011113665066659],[-0.15244741737843,0.075857825577259,0.11148588359356]],[[-0.049837820231915,-0.16430120170116,0.063120901584625],[-0.040090508759022,-0.14215357601643,0.07349406182766],[-0.072132878005505,0.041010543704033,0.041386228054762]],[[0.096906557679176,0.016381097957492,-0.040092755109072],[0.0029377024620771,0.1092536598444,0.030585726723075],[-0.014672354795039,-0.036805804818869,-0.13286307454109]],[[-0.14201289415359,-0.25829890370369,-0.35127583146095],[-0.16683524847031,0.07991037517786,0.14727704226971],[-0.1700860708952,-0.1221289858222,-0.16879633069038]],[[0.1115385890007,-0.10869914293289,-0.031575839966536],[-0.080037109553814,0.14572769403458,0.1120398119092],[0.096253722906113,0.1234083250165,-0.034592911601067]],[[-0.18344864249229,0.056394673883915,0.0012849799823016],[-0.021984862163663,0.089403927326202,0.074786365032196],[-0.062140244990587,-0.0721735060215,-0.1068861335516]],[[-0.0087070697918534,0.057031203061342,0.063681371510029],[0.12711301445961,-0.076532773673534,-0.18952502310276],[-0.15950998663902,0.00036471168277785,0.057258926331997]],[[0.054503038525581,-0.068090312182903,-0.025898797437549],[0.011442642658949,-0.090392544865608,-0.13410604000092],[0.11276801675558,-0.06755243986845,-0.10045132786036]],[[0.039441097527742,-0.052607145160437,0.13598731160164],[0.030785698443651,0.047401163727045,-0.086509175598621],[-0.019608803093433,-0.066114231944084,-0.049852356314659]],[[0.078052669763565,-0.54380387067795,-0.22973035275936],[-0.057238232344389,-0.12392628192902,0.064103901386261],[-0.038435805588961,0.053520876914263,0.23769524693489]],[[0.059444300830364,0.070004761219025,-0.11743713915348],[-0.059976652264595,0.020861523225904,0.11521465331316],[-0.16711042821407,-0.0074594304896891,-0.051121070981026]],[[-0.00055179541232064,0.043914951384068,-0.0088849794119596],[0.031711675226688,-0.046379588544369,0.10549800097942],[-0.052064474672079,0.055287685245275,-0.04990828037262]],[[-0.0044783293269575,0.19410866498947,0.25031098723412],[-0.044261589646339,0.08775269985199,-0.086270809173584],[0.057940784841776,-0.11526542156935,-0.014615525491536]],[[-0.00295245135203,-0.048321839421988,0.078592911362648],[-0.095843434333801,0.12607699632645,-0.057982001453638],[0.02955842204392,-0.17876389622688,-0.067436851561069]],[[0.026849856600165,0.019122004508972,0.035056848078966],[-0.087804608047009,0.18344207108021,-0.060468044131994],[-0.052762906998396,0.0008302612695843,0.078249767422676]],[[0.052160494029522,0.016316084191203,-0.19054093956947],[-0.040894266217947,0.021371198818088,-0.022454749792814],[-0.032128531485796,-0.024176929146051,-0.10121350735426]],[[0.096336454153061,-0.0048926929011941,0.019287198781967],[-0.052339348942041,0.099159419536591,0.13275326788425],[0.13033938407898,-0.10303496569395,-0.11615101248026]],[[-0.073316022753716,0.0508125834167,-0.17339287698269],[0.042877689003944,-0.093485839664936,-0.2176496386528],[0.036994572728872,0.16273695230484,0.0092169940471649]],[[-0.12913903594017,-0.2366047501564,-0.29438203573227],[0.066368520259857,0.14241416752338,-0.017373122274876],[-0.080851495265961,-0.058444365859032,-0.19908499717712]],[[-0.098737984895706,0.107515797019,-0.13384237885475],[-0.025019010528922,0.061710949987173,-0.18481753766537],[0.11571695655584,-0.026857540011406,-0.088436231017113]],[[-0.085980847477913,0.159971550107,-0.047593202441931],[0.059664431959391,0.011883184313774,0.00052664993563667],[-0.020804727450013,0.15782986581326,-0.081050716340542]],[[0.03832558915019,-0.11677923798561,0.04844207316637],[-0.030994538217783,-0.019936112686992,-0.051963783800602],[0.043910007923841,-0.023875866085291,0.1023868098855]],[[-0.23961389064789,-0.12532261013985,-0.012912029400468],[-0.029471235349774,-0.02196010760963,0.060667153447866],[-0.045353651046753,-0.00074313255026937,-0.034168131649494]],[[0.080857589840889,0.067968904972076,-0.28549334406853],[-0.081937603652477,-0.0097665311768651,-0.14763689041138],[-0.069782070815563,0.018318090587854,-0.0059639983810484]],[[-0.070327341556549,0.032299153506756,-0.056665502488613],[0.015358876436949,-0.026730371639132,-0.022296648472548],[-0.032752335071564,-0.059495624154806,-0.099031209945679]],[[0.034003011882305,0.05081632733345,-0.12508928775787],[-0.12490324676037,0.0014204466715455,-0.0023399773053825],[-0.086765199899673,0.069973230361938,-0.051175884902477]],[[-0.033679995685816,-0.20609922707081,0.029488127678633],[0.1174595952034,-0.03753225505352,-0.0055381581187248],[-0.0048029939644039,-0.028850680217147,0.093378692865372]],[[0.047107364982367,0.077880248427391,-0.18100070953369],[-0.11772376298904,0.029540436342359,-0.15632613003254],[0.01298051327467,-0.059455756098032,0.11685298383236]],[[0.0052664168179035,-0.036902390420437,0.015156963840127],[-0.10890047997236,0.031356118619442,-0.03423573076725],[0.03410841524601,-0.044045086950064,0.059435207396746]],[[-0.16516746580601,-0.1115549877286,-0.014304124750197],[-0.0021290346048772,0.012540022842586,-0.0081674316897988],[0.014977569691837,0.19702130556107,0.04219152033329]],[[-0.0018765663262457,-0.15336376428604,-0.1111933067441],[0.10283125936985,-0.031506557017565,0.029999259859324],[0.031456056982279,-0.083475768566132,0.051490299403667]],[[-0.15624566376209,-0.026417477056384,0.1692660599947],[-0.00065794045804068,-0.10583474487066,-0.21187297999859],[-0.053820367902517,0.10588689893484,-0.12838783860207]]],[[[0.073320388793945,0.081879124045372,0.20329207181931],[-0.15065537393093,-0.023800663650036,-0.019311154261231],[0.093081332743168,0.086021102964878,0.068335212767124]],[[0.12180163711309,0.051623448729515,-0.10762939602137],[0.061006464064121,-0.036058001220226,-0.028143115341663],[0.12574818730354,-0.014600602909923,-0.042553313076496]],[[-0.088524699211121,0.080738246440887,0.029566578567028],[-0.036486390978098,0.044917829334736,0.030516978353262],[0.087604746222496,-0.092825137078762,0.039704870432615]],[[-0.019431304186583,-0.027940273284912,-0.065346784889698],[0.068687476217747,0.061915710568428,0.080110415816307],[-0.085321605205536,-0.011852180585265,0.043407645076513]],[[-0.22843311727047,0.089043520390987,0.10639203339815],[-0.12294538319111,0.045518435537815,-0.017564846202731],[-0.21040052175522,-0.052037782967091,-0.11032707244158]],[[-0.08454617857933,0.062775671482086,-0.0007795161800459],[-0.032516703009605,-0.012537641450763,0.027053959667683],[-0.042023383080959,-0.16623474657536,-0.014807712286711]],[[-0.01739664748311,-0.052521571516991,0.12059314548969],[-0.065723441541195,-0.022492296993732,0.18526619672775],[-0.097741425037384,-0.11189787834883,-0.028869803994894]],[[0.080913737416267,-0.045642167329788,-0.0015165043296292],[0.011419359594584,0.043519765138626,-0.066644228994846],[-0.0095874695107341,-0.021386608481407,0.06476653367281]],[[-0.040505442768335,-0.0027273732703179,0.0086592445150018],[-0.053357493132353,-0.023938063532114,0.05362244322896],[0.009494723752141,0.0012388419127092,0.032694820314646]],[[-0.14346668124199,-0.039108023047447,-0.070198379456997],[0.026761509478092,-0.0048919725231826,0.058970369398594],[0.1195293366909,-0.17842030525208,0.099122107028961]],[[0.08250305056572,0.040615867823362,-0.048839565366507],[-0.1121124625206,0.027289815247059,0.076938085258007],[-0.10141641646624,0.28348657488823,-0.048868205398321]],[[-0.017215689644217,-0.046932458877563,0.098771259188652],[-0.06514585763216,-0.0486118234694,-0.044770710170269],[-0.10812205821276,-0.10836765170097,0.017982481047511]],[[0.056180000305176,0.1288635134697,0.10957530885935],[-0.12625405192375,-0.099155776202679,-0.0026792190037668],[-0.097277820110321,-0.12865883111954,0.054424606263638]],[[0.038599733263254,-0.016610784456134,-0.068440243601799],[0.053181573748589,0.059986118227243,0.066232576966286],[0.084595359861851,0.064947851002216,-0.11463867872953]],[[0.098607935011387,-0.16406679153442,0.049156118184328],[0.016307555139065,-0.0087387729436159,-0.094966530799866],[0.00048465433064848,-0.10062104463577,-0.0018664045492187]],[[-0.11997254937887,0.19175624847412,0.001944761024788],[-0.05767934769392,-0.063168875873089,-0.044060342013836],[-0.089011296629906,0.11425772309303,0.13841564953327]],[[-0.19441136717796,0.089908443391323,-0.0083972243592143],[0.0080369766801596,0.12829242646694,0.064532749354839],[-0.1289831250906,0.0086930161342025,-0.11407611519098]],[[0.0077795037068427,0.038440324366093,0.0024673084262758],[0.080960474908352,-0.0065982970409095,0.055908858776093],[-0.079564079642296,0.094127118587494,0.10296916216612]],[[-0.080316446721554,-0.097753666341305,0.12810850143433],[0.14767575263977,-0.10224836319685,-0.0095655787736177],[0.17450098693371,-0.082811109721661,0.015677575021982]],[[-0.0063103279098868,-0.074385091662407,0.0030419318936765],[-0.032737232744694,0.077165141701698,-0.037586539983749],[-0.084470093250275,0.11724664270878,-0.058966610580683]],[[0.020815636962652,0.043582372367382,0.00085035193478689],[-0.067156851291656,-0.069284476339817,0.010209928266704],[0.060199353843927,-0.25060337781906,0.086084865033627]],[[0.10955046862364,-0.0084889633581042,0.17815242707729],[0.029628368094563,0.089830346405506,-0.078431345522404],[0.1497665643692,0.01846189238131,-0.13713310658932]],[[0.0078891161829233,0.025666743516922,-0.13583889603615],[0.10389896482229,0.029494160786271,-0.079328045248985],[0.0072972932830453,-0.043778851628304,-0.11760705709457]],[[-0.023461615666747,-0.12331047654152,0.17723566293716],[0.058424223214388,-0.13033902645111,0.11646820604801],[0.027862675487995,-0.12646447122097,0.11926038563251]],[[-0.12393682450056,-0.10714708268642,0.0075976923108101],[-0.066120803356171,-0.24423705041409,0.0057912864722311],[-0.054295569658279,-0.048196882009506,-0.17081792652607]],[[0.0036663906648755,-0.001783360610716,0.040229801088572],[0.020362311974168,-0.069946706295013,-0.038442566990852],[-0.092801354825497,-0.022190231829882,-0.061146631836891]],[[-0.15979805588722,0.031542595475912,0.094361953437328],[-0.10480936616659,0.010129400528967,0.054540928453207],[-0.13470731675625,0.044253375381231,-0.077532701194286]],[[-0.11299607902765,0.0076815402135253,0.0011200023582205],[-0.0072026466950774,0.011624756269157,0.061393272131681],[-0.068600721657276,-0.040073499083519,0.21282888948917]],[[-0.27355119585991,-0.064436011016369,-0.053937859833241],[0.15260148048401,0.012374330312014,0.0031585150863975],[-0.030221248045564,0.0043009277433157,-0.045096002519131]],[[-0.044703882187605,0.01146777626127,0.1407199203968],[-0.073158442974091,0.036477573215961,0.087233483791351],[-0.036694072186947,-0.089283786714077,0.001424124231562]],[[-0.0069268667139113,0.027651777490973,-0.07297869771719],[0.00036730823921971,-0.019755333662033,0.062235619872808],[-0.115787781775,-0.051720146089792,-0.026914265006781]],[[0.01678067818284,0.015461388975382,-0.28130766749382],[0.0058294106274843,-0.10948442667723,-0.010407697409391],[0.14299903810024,-0.11941401660442,0.017528608441353]],[[-0.096517495810986,0.1638966947794,-0.013038702309132],[-0.097994275391102,-0.098156332969666,-0.056677289307117],[0.16054113209248,0.025919873267412,-0.067279070615768]],[[0.1356486082077,0.027329292148352,0.0040533929131925],[0.048855736851692,0.065045602619648,0.032100178301334],[-0.10349954664707,-0.00042902788845822,-0.018744779750705]],[[-0.033805910497904,-0.088777609169483,-0.040777429938316],[0.085825629532337,0.03138879314065,0.11073739826679],[0.25709027051926,-0.048477251082659,-0.058278255164623]],[[-0.11634487658739,-0.093656651675701,0.02691987156868],[-0.11890231072903,0.028197975829244,-0.062243741005659],[-0.066893935203552,0.091702952980995,0.15499967336655]],[[-0.09933403134346,0.10764653980732,-0.097861737012863],[-0.029127856716514,-0.065913483500481,-0.019375892356038],[0.011247432790697,0.018080649897456,-0.0071620303206146]],[[-0.0055045029148459,0.042077880352736,-0.035540159791708],[0.069613069295883,0.030509846284986,0.063114896416664],[-0.075494818389416,0.08741857111454,-0.024459045380354]],[[0.15683016180992,-0.039636697620153,-0.14052493870258],[0.021277757361531,0.045568380504847,0.080319404602051],[-0.020035600289702,0.019821602851152,-0.0033628593664616]],[[-0.17639909684658,0.04029818624258,0.13886243104935],[-0.030733667314053,0.077069222927094,-0.044480178505182],[-0.10984288901091,-0.05763990059495,-0.02361249551177]],[[-0.045570634305477,-0.0053244852460921,0.017358802258968],[-0.01493748370558,0.10148854553699,-0.1127986907959],[0.085443817079067,-0.021203022450209,-0.079741716384888]],[[-0.11604646593332,0.10754062235355,-0.05196413770318],[-0.0069938260130584,0.055879089981318,0.029947264119983],[0.012826483696699,-0.10760373622179,-0.0045518903061748]],[[-0.17538221180439,-0.046064384281635,0.0040942267514765],[-0.0055509014055133,-0.013446769677103,0.096407555043697],[-0.13791817426682,-0.10939358174801,0.063924044370651]],[[0.01791974529624,0.030593000352383,-0.057078018784523],[0.072371311485767,-0.028338534757495,-0.072787925601006],[-0.044137164950371,-0.030294166877866,0.065897911787033]],[[-0.069702818989754,-0.1406567543745,-0.0052637220360339],[-0.15038359165192,-0.092148795723915,-0.016799971461296],[-0.10292859375477,0.10042242705822,0.19565384089947]],[[-0.09551940113306,-0.18271622061729,-0.05843510478735],[0.0055087539367378,-0.10225091129541,0.15832254290581],[-0.040205273777246,0.0019627944566309,0.083056144416332]],[[0.065294019877911,-0.0060434564948082,0.088778302073479],[0.052521336823702,0.0021463728044182,0.13044798374176],[-0.085602052509785,-0.14311258494854,0.075503267347813]],[[0.10600432008505,0.098380982875824,-0.022916059941053],[-0.17481851577759,-0.009354961104691,-0.0011461913818493],[-0.14669202268124,0.25642749667168,0.031507812440395]],[[0.025739312171936,0.015758261084557,0.069428540766239],[0.064673602581024,-0.026052240282297,-0.038043521344662],[0.11932898312807,0.17735010385513,0.069731175899506]],[[0.038235444575548,-0.0016569509170949,0.19728741049767],[0.0005119132110849,-0.0047980155795813,0.065067157149315],[-0.18330453336239,-0.15513326227665,0.095412477850914]],[[0.027515912428498,0.0064172991551459,-0.003040705807507],[0.029357196763158,-0.14645406603813,0.14240700006485],[-0.11699571460485,-0.024881342425942,0.10199922323227]],[[-0.11216299980879,-0.11564093083143,-0.13090072572231],[-0.15773530304432,0.074417136609554,0.028654454275966],[-0.070456638932228,-0.082070074975491,-0.18358111381531]],[[0.10895698517561,-0.057159014046192,-0.027323603630066],[0.068773709237576,-0.043360993266106,0.11595253646374],[0.070373751223087,-0.25447767972946,0.16612447798252]],[[0.0033128142822534,-0.067221261560917,0.050659261643887],[0.1498688608408,-0.023587698116899,0.17722050845623],[-0.16622872650623,-0.21244056522846,0.24236954748631]],[[0.010426812805235,-0.12827076017857,-0.063893295824528],[0.064214870333672,-0.07719799131155,0.043718099594116],[-0.023724127560854,-0.030546834692359,0.23644901812077]],[[-0.034080795943737,0.073752768337727,-0.0414521060884],[0.02444439008832,0.028927985578775,-0.0050018853507936],[-0.037072028964758,-0.21287769079208,-0.099806763231754]],[[-0.0057870759628713,-0.065339840948582,-0.12031980603933],[-0.017789267003536,0.030149547383189,-0.031392820179462],[-0.062619969248772,-0.027854448184371,-0.17492927610874]],[[0.076671980321407,-0.066572949290276,-0.10328860580921],[-0.034198895096779,-0.15241801738739,-0.070537984371185],[-0.056957822293043,0.088947854936123,-0.03958972170949]],[[-0.010139346122742,-0.020515790209174,-0.097841113805771],[-0.12504754960537,-0.10976710170507,0.16757999360561],[0.05200382694602,-0.15252996981144,0.09259570389986]],[[-0.073626205325127,-0.046564545482397,0.080230839550495],[0.028206054121256,-0.022143632173538,0.026207068935037],[-0.13157349824905,0.17707090079784,-0.068950794637203]],[[0.049517650157213,-0.068406485021114,-0.035311784595251],[-0.076007388532162,0.072890445590019,0.13173560798168],[-0.0010202984558418,-0.076377093791962,-0.028102234005928]],[[-0.025197364389896,0.094207860529423,0.070896126329899],[0.03892195597291,-0.018917297944427,-0.0090673575177789],[0.07526183873415,0.095905184745789,0.090311527252197]],[[-0.0092514427378774,0.049122024327517,0.06964398920536],[0.050000227987766,-0.039341356605291,-0.10111670941114],[-0.14245223999023,-0.13887318968773,-0.023015337064862]],[[0.080727837979794,-0.052793253213167,0.12893928587437],[0.072832047939301,0.037200059741735,0.0059755276888609],[0.27680787444115,0.012021767906845,0.0047244112938643]]],[[[-0.11640277504921,0.11421066522598,-0.023275285959244],[-0.11872515827417,0.0064648133702576,0.085427440702915],[-0.15226592123508,0.10234753787518,0.056025061756372]],[[-0.021934617310762,0.031443897634745,0.02326001599431],[-0.061679974198341,0.006178445648402,-0.13258521258831],[0.077322378754616,-0.051002312451601,0.026260022073984]],[[0.094465978443623,0.054469492286444,-0.0397556014359],[0.028965057805181,0.012239278294146,0.062490832060575],[-0.013378710485995,0.020414832979441,-0.11605869978666]],[[0.038791157305241,-0.085906334221363,0.050045974552631],[0.063582308590412,-0.11913077533245,-0.048116698861122],[0.19755004346371,-0.042154494673014,0.11325549334288]],[[-0.04068848490715,0.031193871051073,0.025356709957123],[0.089945159852505,-0.009001481346786,0.045944940298796],[-0.039624027907848,-0.050815027207136,-0.013951013796031]],[[0.16789256036282,-0.046629309654236,-0.092583179473877],[-0.069932080805302,-0.13783605396748,0.1145054474473],[0.075957946479321,-0.020487392321229,-0.0058346684090793]],[[-0.071702383458614,-0.020328890532255,0.020112255588174],[-0.0040517263114452,-0.032054074108601,-0.072991482913494],[0.013720290735364,0.024764090776443,0.21822929382324]],[[-0.046810209751129,-0.02561822347343,0.025077402591705],[-0.0011701077455655,0.017007963731885,0.054599955677986],[0.032540712505579,-0.13334932923317,0.11428115516901]],[[0.0015694189351052,-0.047935731709003,-0.029648426920176],[-0.024175783619285,0.024220759049058,0.076712146401405],[-0.017997620627284,0.036220405250788,-0.039116844534874]],[[0.16368560492992,-0.0044235163368285,0.16487631201744],[-0.22824417054653,0.078948490321636,0.032611768692732],[-0.12734749913216,-0.033376004546881,-0.037730425596237]],[[-0.064229965209961,-0.027126152068377,0.17124584317207],[0.032958250492811,-0.067138284444809,-0.035664178431034],[0.11612039059401,-0.043317101895809,-0.062744967639446]],[[-0.11587047576904,-0.0039216955192387,-0.10886973142624],[-0.0079802237451077,-0.086877688765526,0.073546826839447],[0.094263002276421,0.14435295760632,0.071262188255787]],[[-0.030287899076939,0.10570357739925,-0.0036116901319474],[-0.13981717824936,0.013739546760917,0.088306531310081],[-0.037164777517319,0.048353545367718,-0.029252773150802]],[[-0.15139001607895,0.0059261973947287,0.046601023525],[-0.013054412789643,-0.021361257880926,-0.17485818266869],[0.12392263114452,0.11921388655901,-0.083145663142204]],[[-0.14883241057396,-0.045438081026077,0.26758813858032],[-0.016965754330158,-0.057823900133371,-0.15777668356895],[0.10773102939129,0.035185344517231,0.02818899974227]],[[-0.076428517699242,0.026768704876304,0.15464057028294],[0.045963112264872,-0.13620813190937,-0.1576155424118],[0.01026288792491,-0.0003539721656125,0.026956513524055]],[[0.12872828543186,0.085637651383877,-0.0038251138757914],[-0.023121794685721,0.0012434595264494,0.039033427834511],[0.014090295881033,0.038653440773487,0.026769794523716]],[[-0.040127154439688,-0.059570789337158,-0.058155443519354],[-0.085516192018986,0.11334165930748,0.030325397849083],[-0.081492759287357,0.011902664788067,-0.034139439463615]],[[-0.0034336431417614,-0.043039556592703,0.015786185860634],[0.046777691692114,-0.055221002548933,0.071533545851707],[0.0024821092374623,0.12013332545757,-0.079007096588612]],[[0.15859472751617,-0.073195226490498,0.11600835621357],[-0.04661426320672,0.057492852210999,0.050029490143061],[-0.03037809021771,-0.019687477499247,-0.034949515014887]],[[-0.17963191866875,0.094820164144039,-0.079734303057194],[-0.015359536744654,-0.19890840351582,-0.061083827167749],[-0.067297890782356,-0.096535265445709,0.084093347191811]],[[-0.10893821716309,0.10142774879932,0.060194723308086],[-0.012441534548998,0.066528029739857,0.00096162082627416],[-0.047934558242559,-0.13829293847084,0.10605795681477]],[[-0.059204921126366,-0.16712248325348,0.013221437111497],[0.13007192313671,-0.071500994265079,-0.06484879553318],[-0.079923123121262,-0.024726333096623,-0.13547730445862]],[[-0.17767785489559,-0.041044011712074,0.064992785453796],[-0.011786240153015,0.1077983751893,-0.011113420128822],[0.11318370699883,-0.00065554288448766,0.057864055037498]],[[0.10348875075579,-0.010512962937355,0.14241571724415],[0.13764403760433,0.15856368839741,-0.027634495869279],[-0.1465577185154,-0.085209012031555,0.049967121332884]],[[0.035911343991756,-0.20489598810673,-0.14780603349209],[0.14508555829525,-0.059402897953987,0.059172529727221],[0.082187339663506,0.072175912559032,0.024151919409633]],[[0.0094404257833958,-0.014240714721382,-0.11922932416201],[-0.016486505046487,-0.15985871851444,-0.12456316500902],[0.09828170388937,-0.0072735245339572,-0.0026757156010717]],[[-0.23842288553715,-0.015442683361471,-0.13288271427155],[-0.032633349299431,-0.11530554294586,0.06124771758914],[0.020122399553657,0.14333322644234,-0.025750914588571]],[[-0.097878225147724,-0.16523906588554,0.051639780402184],[0.18823309242725,-0.11921734362841,-0.014438248239458],[0.088224492967129,0.09961212426424,0.063383966684341]],[[-0.085242941975594,0.12407057732344,-0.0001689218042884],[0.040946993976831,-0.10047743469477,-0.079033017158508],[-0.03606291860342,0.040396858006716,-0.014429680071771]],[[-0.10283493250608,-0.0040014837868512,0.011992460116744],[0.029635054990649,-0.13920682668686,-0.076827384531498],[-0.1235553920269,-0.10421061515808,0.17914235591888]],[[0.22573006153107,-0.0050188731402159,-0.01978112757206],[0.0099216420203447,-0.084772080183029,-0.075690299272537],[0.028617737814784,-0.031548637896776,-0.14133903384209]],[[0.027629278600216,0.11098674684763,-0.05326297134161],[0.022984076291323,-0.017263846471906,0.1282896399498],[0.024530597031116,0.12497882544994,0.042326733469963]],[[-0.14013560116291,-0.098963417112827,0.0029951760079712],[0.096996635198593,-0.030634839087725,-0.11945825070143],[-0.099002569913864,0.067641764879227,0.075613014400005]],[[-0.072482980787754,-0.012203557416797,0.012509347870946],[0.057794973254204,-0.067967809736729,0.13550375401974],[-0.03906762227416,-0.0029287762008607,-0.088481225073338]],[[-0.066972777247429,0.022079147398472,0.0041007064282894],[-0.10828920453787,-0.010123237967491,0.15065644681454],[-0.18791176378727,-0.046621676534414,-0.080624468624592]],[[0.19567003846169,0.049761824309826,-0.037573583424091],[0.012333410792053,-0.073381155729294,-0.11696588993073],[-0.10319662839174,-0.15241095423698,-0.096297658979893]],[[0.16982737183571,-0.05919610708952,-0.15883013606071],[0.047046106308699,0.11889961361885,0.13920046389103],[-0.095542840659618,-0.14517141878605,0.10332743823528]],[[-0.074890978634357,-0.14823931455612,-0.11018691211939],[0.10184201598167,-0.072683691978455,0.00023561547277495],[0.044039718806744,0.083619654178619,-0.061322245746851]],[[-0.029496695846319,-0.036413419991732,-0.024517770856619],[0.087902076542377,0.0091140158474445,-0.029386529698968],[0.062981486320496,0.06238978728652,-0.09544512629509]],[[-0.0056225010193884,0.090822517871857,-0.15545858442783],[-0.12023437023163,0.18065145611763,0.036147642880678],[0.076662480831146,0.030642073601484,0.011951243504882]],[[-0.0065202349796891,-0.052982550114393,-0.18334823846817],[-0.17840471863747,0.032357905060053,0.13206651806831],[-0.17021529376507,-0.066704109311104,-0.07130091637373]],[[-0.11454054713249,0.11943361163139,0.037834711372852],[0.043516777455807,-0.047922100871801,-0.046088375151157],[0.064562618732452,-0.023194905370474,0.059032279998064]],[[-0.04076236858964,0.10309386998415,-0.033793486654758],[0.07134222984314,0.072787329554558,-0.076818883419037],[-0.097556106746197,0.055788911879063,-0.002558218780905]],[[0.020176785066724,-0.2320217192173,0.14885963499546],[-0.089434243738651,-0.041892938315868,0.014989404007792],[-0.01974786259234,-0.10987570881844,0.11218406260014]],[[-0.010575344786048,0.024507256224751,0.11663095653057],[0.045443888753653,0.017082972452044,0.086505107581615],[-0.095062032341957,-0.086889289319515,0.0010797217255458]],[[-0.04324809089303,-0.16894163191319,-0.084143541753292],[-0.1244360730052,-0.1374109685421,0.029749806970358],[0.12436094880104,0.12884896993637,-0.0064432765357196]],[[-0.028151743113995,-0.027499761432409,0.044450853019953],[-0.042847737669945,-0.054521486163139,-0.044857811182737],[0.16799496114254,0.062357846647501,-0.11831210553646]],[[0.086225263774395,-0.14098148047924,0.044544335454702],[0.034585934132338,-0.067548990249634,0.082972630858421],[0.094132304191589,0.056490741670132,-0.10369569063187]],[[0.17807565629482,0.038343798369169,0.17443045973778],[-0.047633074223995,0.09128300845623,-0.077241607010365],[-0.13765355944633,-0.1122330725193,-0.083124965429306]],[[-0.011149555444717,-0.059303805232048,-0.047806825488806],[0.084973834455013,0.055500980466604,0.11741034686565],[-0.041771978139877,0.063067376613617,-0.062013622373343]],[[0.15897180140018,-0.042027115821838,-0.060179281979799],[-0.039605751633644,-0.078765034675598,-0.004469342995435],[-0.063773110508919,-0.03720860183239,-0.034092828631401]],[[0.021814804524183,0.0067361565306783,0.081755369901657],[-0.0055664014071226,0.019155891612172,0.026635102927685],[0.016132965683937,-0.18170365691185,0.014628008008003]],[[0.1139717027545,0.10237539559603,0.12526336312294],[-0.14167946577072,0.0094497017562389,-0.008496911264956],[-0.03290893509984,-0.066481955349445,0.028240744024515]],[[-0.1224105283618,-0.10662573575974,-0.007677246350795],[-0.073452115058899,-0.10736113786697,0.046056244522333],[0.16154637932777,0.090250127017498,0.011761057190597]],[[0.055928785353899,-0.010479146614671,-0.092865541577339],[-0.040081471204758,0.056899286806583,-0.0056767165660858],[0.10718560218811,-0.1225522980094,0.013494037091732]],[[-0.17443609237671,-0.19615429639816,-0.089282937347889],[0.037488035857677,-0.033468294888735,0.060205031186342],[0.0045944885350764,0.053423210978508,-0.15803830325603]],[[-0.090521097183228,0.032854307442904,0.11118496954441],[0.004330116789788,0.038820888847113,-0.11303332448006],[-0.10145919024944,0.039270222187042,0.02774110250175]],[[0.17641930282116,-0.042981579899788,0.10616213828325],[-0.037607751786709,-0.033171787858009,0.078927762806416],[-0.03850182518363,-0.09513558447361,-0.31273347139359]],[[-0.060745481401682,0.10038889944553,0.10333850979805],[-0.26397508382797,-0.15656873583794,0.037550400942564],[0.055975794792175,0.1530926823616,0.15559946000576]],[[0.061962526291609,0.036290992051363,0.11075706779957],[-0.20265254378319,-0.16018752753735,0.024430401623249],[-0.017816545441747,-0.01757319457829,-0.099934846162796]],[[0.2915575504303,0.015833897516131,-0.016996504738927],[-0.0079428926110268,-0.031509343534708,-0.051172003149986],[-0.097113899886608,0.093497239053249,-0.035927273333073]],[[0.16795910894871,-0.032307788729668,-0.16964575648308],[0.12031216174364,-0.02699856646359,0.021119004115462],[-0.036785490810871,0.12812025845051,-0.243781670928]],[[0.024850239977241,0.083120316267014,0.029266687110066],[0.060674801468849,-0.094493746757507,-0.15457750856876],[0.028356842696667,0.13732272386551,0.14499413967133]]],[[[0.03995905071497,0.0044541079550982,0.021318931132555],[-0.098201140761375,0.026967668905854,-0.075369730591774],[0.09612875431776,0.055217944085598,0.043175205588341]],[[-0.025009632110596,0.079870752990246,-0.022399796172976],[-0.0078560644760728,-0.072975151240826,-0.043755244463682],[0.0038167976308614,0.043291348963976,-0.059040144085884]],[[0.2161008566618,0.081901781260967,0.087330333888531],[-0.050066452473402,0.02848100848496,0.11109775304794],[-0.34637406468391,-0.43311050534248,-0.23375405371189]],[[-0.10254342108965,0.0054983301088214,-0.033895500004292],[0.017877472564578,-0.09487933665514,0.021082440391183],[0.12858390808105,0.031304720789194,0.10717308521271]],[[0.10076108574867,0.056638322770596,0.1905899643898],[-0.064061738550663,-0.031320754438639,-0.096860446035862],[0.024868799373507,-0.12785369157791,-0.1711573600769]],[[0.11575758457184,0.085224181413651,0.064569115638733],[-0.072569660842419,-0.28905749320984,-0.17009426653385],[-0.10778599232435,0.20275174081326,-0.028262414038181]],[[-0.0032828073017299,-0.03109335154295,0.12437682598829],[-0.051903937011957,-0.10825882852077,0.042458325624466],[-0.07618872821331,-0.012963362969458,-0.088067285716534]],[[-0.045111961662769,0.021005680784583,0.2476684898138],[-0.032036945223808,0.074241168797016,-0.080415971577168],[-0.029299590736628,0.04877182841301,-0.044871959835291]],[[-0.043916426599026,-0.012811203487217,-0.10339768975973],[-0.011637595482171,-0.021861888468266,-0.019674964249134],[0.093461029231548,0.019805999472737,0.062587931752205]],[[-0.026485720649362,0.076961562037468,0.1348662674427],[0.043429274111986,0.090514168143272,-0.29626280069351],[-0.03655606508255,-0.034497413784266,0.099573470652103]],[[-0.10691954195499,-0.054564908146858,-0.20619906485081],[0.060428209602833,-0.1455002874136,-0.027511807158589],[-0.091670639812946,0.11707320809364,0.24587392807007]],[[0.018913676962256,0.10215086489916,0.0048823645338416],[-0.24373748898506,-0.22327490150928,-0.30382323265076],[0.15666319429874,0.12779195606709,0.21123424172401]],[[-0.13363419473171,0.03404688462615,-0.039023049175739],[-0.1578176766634,0.19372007250786,-0.0047569628804922],[-0.20754170417786,-0.15986989438534,0.037956580519676]],[[-0.073122374713421,-0.03337224945426,-0.096916034817696],[-0.043688341975212,-0.0015683296369389,-0.050514049828053],[0.075630977749825,0.054494440555573,0.052748706191778]],[[-0.054194670170546,-0.0049941688776016,-0.10961835831404],[-0.005578541662544,-0.034611355513334,-0.17155806720257],[-0.028504809364676,-0.059918433427811,0.17491608858109]],[[-0.13609924912453,-0.015602166764438,0.063990615308285],[0.0030304042156786,-0.08065714687109,0.027851462364197],[0.038627959787846,0.1016797721386,0.023545786738396]],[[0.010421572253108,-0.098757550120354,0.015187866985798],[-0.042502116411924,-0.01977401971817,-0.1929986178875],[-0.010988401249051,-0.040643390268087,0.29153168201447]],[[-0.020918974652886,-0.033208154141903,-0.20852975547314],[-0.097941219806671,-0.080227106809616,-0.050132226198912],[-0.0062517081387341,0.014701856300235,0.10230030119419]],[[-0.012659342028201,-0.039142206311226,-0.02708600834012],[-0.015520096756518,0.1363914757967,-0.12752591073513],[0.035911094397306,0.0065430928952992,-0.11107215285301]],[[-0.0072110695764422,-0.053973916918039,0.10988959670067],[-0.085917398333549,0.017125088721514,-0.0018704558024183],[0.04989118501544,0.16318142414093,-0.12685213983059]],[[-0.2073739618063,0.037706237286329,0.12607538700104],[-0.20048762857914,-0.025419278070331,0.14844194054604],[0.036878425627947,0.052275370806456,-0.100789681077]],[[0.029614476487041,0.020372731611133,0.18694418668747],[-0.26662111282349,-0.018375715240836,0.22223405539989],[-0.045695934444666,0.099372707307339,-0.033195085823536]],[[-0.11215338855982,0.055959444493055,-0.26894071698189],[0.044366776943207,0.11020460724831,0.055796153843403],[-0.047483317553997,-0.1095035225153,0.07661958783865]],[[-0.021329632028937,-0.12897053360939,-0.046726386994123],[-0.15112616121769,-0.016066608950496,0.06963587552309],[-0.11776184290648,-0.20899349451065,-0.19202226400375]],[[-0.036903295665979,0.017069660127163,0.018398815765977],[-0.071710988879204,-0.21143683791161,0.088521614670753],[0.081204913556576,0.061445575207472,-0.11863967776299]],[[-0.012484709732234,0.067765690386295,-0.20322340726852],[-0.08113007992506,0.15236623585224,-0.14791285991669],[-0.20220570266247,-0.13705682754517,-0.11576975882053]],[[-0.055887091904879,-0.072765775024891,-0.025873752310872],[-0.25439286231995,-0.20926332473755,-0.35685870051384],[-0.019738839939237,0.084040343761444,0.11934833228588]],[[-0.082249291241169,0.037263337522745,0.10695683956146],[-0.16143250465393,0.022381778806448,-0.20763023197651],[-0.17779141664505,0.16131417453289,0.084208555519581]],[[-0.065776467323303,0.075081676244736,0.030685110017657],[-0.24905608594418,0.13700020313263,-0.13476158678532],[-0.11096862703562,0.10179936140776,-0.16676358878613]],[[-0.11850662529469,0.03074337169528,0.0027177180163562],[-0.068599380552769,0.042516898363829,-0.20208963751793],[-0.021622657775879,-0.018112419173121,-0.19376939535141]],[[-0.035871639847755,-0.010825226083398,-0.16740258038044],[0.040283221751451,-0.1491918861866,-0.08632554858923],[0.032988421618938,0.12332213670015,0.10106661170721]],[[0.028277959674597,0.074477791786194,0.029756067320704],[-0.017016006633639,0.014769103378057,0.10747679322958],[0.069504126906395,-0.02223889529705,-0.024422641843557]],[[0.15415865182877,0.020741244778037,0.05253154411912],[-0.11428310722113,-0.074826411902905,0.031652256846428],[-0.070917256176472,-0.075755327939987,-0.067369535565376]],[[-0.15860621631145,-0.029389817267656,-0.012294781394303],[-0.067817993462086,0.10000739991665,0.15849429368973],[0.076658003032207,0.017601514235139,0.0030597150325775]],[[-0.081789717078209,-0.074920520186424,-0.092864438891411],[-0.035320397466421,0.15958708524704,-0.00067786284489557],[-0.17236568033695,-0.038592167198658,0.31634140014648]],[[0.10530007630587,-0.1102557554841,0.058396931737661],[-0.051685858517885,-0.035917367786169,0.1625946611166],[-0.038362428545952,0.20156511664391,-0.090565480291843]],[[-0.010290331207216,0.024831371381879,0.055614601820707],[-0.2231439948082,-0.072687610983849,-0.24387395381927],[0.087665192782879,0.18884888291359,0.036199383437634]],[[0.13033021986485,-0.032805453985929,-0.034241180866957],[0.046602182090282,-0.03689206391573,0.06753696501255],[-0.055307425558567,0.10857952386141,0.15482811629772]],[[-0.16585260629654,-0.040574621409178,-0.10858775675297],[0.032184168696404,-0.067534640431404,0.034304924309254],[-0.067217037081718,0.19775752723217,-0.044345680624247]],[[0.055734422057867,-0.10148624330759,0.0043504117056727],[-0.11500155180693,-0.10287530720234,0.075523421168327],[-0.022470150142908,0.025960946455598,0.082589812576771]],[[-0.090507313609123,0.0038755419664085,-0.02126295119524],[-0.15664453804493,-0.055186033248901,-0.020876161754131],[0.0079603223130107,0.096163377165794,0.11879853904247]],[[0.06277722120285,0.078624986112118,0.092680729925632],[0.097118332982063,-0.13849450647831,0.024966286495328],[-0.04586960375309,-0.062773436307907,-0.057441111654043]],[[0.052943147718906,0.055361606180668,0.039582792669535],[-0.024678062647581,0.084540694952011,-0.008960323408246],[-0.17263378202915,-0.040860839188099,-0.14229512214661]],[[-0.048065062612295,0.075543485581875,-0.040138132870197],[-0.042873349040747,0.077402643859386,0.033326163887978],[0.013567378744483,-0.086216039955616,-0.027720542624593]],[[-0.0084092263132334,-0.064064607024193,-0.013390618376434],[0.016311729326844,-0.21703039109707,-0.058389101177454],[0.07313983887434,0.17423617839813,0.031684029847383]],[[-0.17761561274529,0.033142559230328,-0.0089638810604811],[0.045976888388395,0.043600540608168,0.073966279625893],[-0.46697783470154,-0.41515681147575,-0.43995437026024]],[[-0.19662533700466,0.014941892586648,-0.12292666733265],[0.079788684844971,-0.17239630222321,-0.053404532372952],[-0.14446344971657,-0.00069010286824778,0.18458597362041]],[[0.034247286617756,0.087600402534008,-0.00086603907402605],[-0.071267031133175,-0.086499750614166,0.0032888664864004],[0.062454525381327,0.0099831391125917,-0.041292577981949]],[[-0.018176769837737,-0.063548140227795,0.088743224740028],[-0.034665089100599,0.095914229750633,-0.17504675686359],[-0.064391985535622,0.11684714257717,-0.056483548134565]],[[0.076076917350292,0.052819479256868,0.16328828036785],[0.12494304776192,0.074517831206322,-0.072314962744713],[-0.35435327887535,-0.081335090100765,-0.20731842517853]],[[0.0070241480134428,0.047546289861202,0.079809159040451],[-0.012956421822309,0.072226017713547,0.099407039582729],[-0.013484131544828,0.057035535573959,-0.24573418498039]],[[0.063638731837273,0.082739762961864,0.089418761432171],[0.022478198632598,-0.050776373594999,-0.044208880513906],[-0.030563211068511,0.038401756435633,0.0058041368611157]],[[-0.0020073899067938,0.089477777481079,0.14248189330101],[0.16191001236439,0.017548242583871,0.086565971374512],[-0.12875510752201,-0.10509504377842,0.016017423942685]],[[0.077807888388634,0.034332014620304,0.0052624335512519],[-0.022846145555377,-0.052590388804674,-0.093933448195457],[-0.012103077024221,0.21297010779381,0.16453142464161]],[[-0.10948701202869,-0.011166051961482,0.033589333295822],[0.068882696330547,0.019975636154413,-0.075512908399105],[0.15106108784676,-0.064771875739098,0.09160066395998]],[[-0.085676081478596,-0.017169568687677,-0.02312027849257],[-0.050003331154585,0.038229301571846,0.0046758940443397],[0.19913846254349,-0.0360315926373,0.052491381764412]],[[-0.030290633440018,-0.11659450083971,-0.15701372921467],[-0.20772933959961,-0.121258251369,-0.18689316511154],[0.062684759497643,-0.0033644947689027,-0.042666237801313]],[[0.069869548082352,-0.049546591937542,0.073681510984898],[-0.16370655596256,0.053052973002195,0.095475770533085],[-0.069198481738567,0.12925396859646,-0.074864856898785]],[[0.063036344945431,-0.028487889096141,0.049064248800278],[0.010089298710227,0.092944659292698,0.039918467402458],[0.13657227158546,-0.077154576778412,-0.072285458445549]],[[0.031778637319803,-0.053357258439064,0.10413756966591],[-0.030453300103545,0.049210842698812,-0.0058841560967267],[0.0021533374674618,-0.094558976590633,0.023306176066399]],[[0.059917479753494,0.02260759472847,-0.093027174472809],[-0.10953298956156,-0.11999389529228,0.096774481236935],[-0.13086406886578,-0.011691126041114,0.089987553656101]],[[0.056510839611292,-0.28401178121567,0.076639674603939],[0.0065500293858349,-0.052465695887804,0.013211278244853],[-0.096219785511494,-0.024765526875854,0.14919021725655]],[[0.13337524235249,-0.0043196557089686,0.065331980586052],[0.11253421753645,-0.082434929907322,-0.16103313863277],[-0.22173748910427,-0.061507474631071,0.040967330336571]],[[-0.086284220218658,-0.011732123792171,0.064095735549927],[-0.068796567618847,-0.083390653133392,-0.072822034358978],[0.04864340275526,-0.06904549151659,0.19686408340931]]],[[[0.016731392592192,-0.0032158156391233,-0.12060576677322],[0.016662817448378,-0.088441476225853,0.15720994770527],[0.36192783713341,-0.24048614501953,-0.18725526332855]],[[-0.12921124696732,0.14458358287811,0.050753224641085],[0.050222851336002,-0.045363757759333,-0.031625464558601],[0.054900858551264,0.064694218337536,0.033227279782295]],[[-0.058018170297146,-0.080905251204967,0.019414190202951],[0.18946899473667,-0.14415988326073,0.0047867521643639],[0.064623385667801,-0.1460579931736,-0.0080261221155524]],[[0.11029408127069,-0.15953938663006,0.00039255333831534],[-0.020908806473017,-0.11845990270376,0.15628449618816],[-0.030338503420353,-0.21624881029129,0.0057516493834555]],[[0.041091769933701,-0.12719322741032,-0.17044258117676],[-0.05637140199542,0.025129588320851,0.07229096442461],[-0.064294263720512,0.056256853044033,0.039133530110121]],[[-0.14972031116486,0.11076940596104,-0.14077185094357],[-0.17143577337265,-0.032553516328335,0.028039116412401],[-0.26251208782196,0.12566635012627,0.21314756572247]],[[-0.12468055635691,0.023198168724775,-0.080414660274982],[0.068754613399506,-0.067685268819332,-0.10743056237698],[-0.14731895923615,-0.04304514080286,0.14503662288189]],[[0.075590908527374,0.051409289240837,0.02530792914331],[0.044250924140215,-0.037747967988253,0.081832572817802],[-0.019775182008743,-0.07243724912405,0.014575926586986]],[[0.057853356003761,-0.014352454803884,0.030065966770053],[-0.089324973523617,-0.069791994988918,-0.074892394244671],[-0.015243304893374,0.035266261547804,0.115602619946]],[[-0.057017728686333,0.053012873977423,-0.048060201108456],[0.1572979837656,0.074516728520393,-0.16204586625099],[-0.061098389327526,-0.094080701470375,0.024502689018846]],[[0.12856523692608,0.020732374861836,-0.018796589225531],[0.038040637969971,-0.043808124959469,0.0026850416325033],[0.10861238837242,-0.069295212626457,-0.16661177575588]],[[-0.17752552032471,0.05188363045454,-0.068999797105789],[-0.17839604616165,0.047839116305113,-0.042445037513971],[-0.068675108253956,0.067703507840633,0.042036581784487]],[[-0.11806790530682,-0.049040276557207,-0.061397593468428],[0.024389361962676,0.038848746567965,0.099891193211079],[0.11708208173513,0.14544779062271,-0.044680237770081]],[[0.15437813103199,0.03500072658062,-0.043616227805614],[0.10112757235765,-0.16762411594391,-0.068485975265503],[0.080802351236343,-0.19248373806477,0.1730517745018]],[[-0.060827236622572,0.11505285650492,-0.38834777474403],[-0.038079235702753,0.14278277754784,-0.052649401128292],[-0.12657472491264,-0.041972294449806,0.056996889412403]],[[0.12995080649853,0.097545608878136,-0.042897395789623],[0.019314488396049,0.035074409097433,-0.22790049016476],[-0.1014808639884,0.038646347820759,0.037722881883383]],[[-0.08079270273447,0.11093340814114,0.023516671732068],[0.046660099178553,0.02840007469058,0.22679939866066],[0.02071032114327,0.06069041788578,0.050761692225933]],[[0.024919793009758,-0.27310836315155,-0.17660734057426],[0.098180115222931,-0.051680088043213,0.023868901655078],[0.022880099713802,-0.020123241469264,-0.11366952210665]],[[0.039879530668259,0.020197853446007,-0.1063559949398],[-0.030814638361335,-0.074735902249813,0.033229235559702],[0.0068371901288629,0.026904640719295,-0.002697229385376]],[[0.00031040841713548,0.023260390385985,-0.10798536241055],[0.05536513030529,0.0098218470811844,0.27712792158127],[-0.068598866462708,-0.034417718648911,0.035451240837574]],[[-0.032904397696257,-0.15795321762562,-0.21616932749748],[-0.22924070060253,-0.034652594476938,-0.063348203897476],[-0.16693806648254,-0.081966452300549,-0.11796731501818]],[[0.012047021649778,0.12254295498133,-0.016586972400546],[-0.015728633850813,0.0087686777114868,0.10606180131435],[0.11605001986027,0.21773372590542,0.036910362541676]],[[-0.10687221586704,0.04299670830369,0.10553817451],[-0.15729959309101,-0.17029866576195,-0.17249247431755],[0.12629118561745,-0.13254567980766,0.15954446792603]],[[-0.082763396203518,0.0089390948414803,-0.11563246697187],[-0.038060609251261,-0.086329385638237,-0.10251571983099],[-0.19699020683765,0.068596474826336,-0.16169269382954]],[[0.074271164834499,-0.013533170334995,0.02864240668714],[0.036722522228956,0.2513647377491,-0.032229848206043],[-0.053462758660316,-0.067434519529343,-0.19786074757576]],[[0.094973728060722,-0.028239736333489,-0.068570904433727],[0.043806664645672,0.044075481593609,0.04666168615222],[0.059239119291306,-0.031691379845142,-0.035093542188406]],[[-0.14766390621662,-0.13336449861526,0.027198472991586],[-0.053327146917582,0.012636129744351,-0.00075043423566967],[-0.12624704837799,-0.26743984222412,0.0055596493184566]],[[-0.15735495090485,-0.079862579703331,-0.074160411953926],[-0.090993702411652,0.039621710777283,-0.049267970025539],[0.14348544180393,0.21844635903835,-0.10518535226583]],[[-0.06813246011734,-0.047551736235619,0.16148994863033],[0.084456704556942,0.12662456929684,-0.14988166093826],[-0.017705645412207,-0.10589043796062,-0.16307274997234]],[[-0.020592657849193,-0.18932691216469,-0.13553740084171],[-0.004223168361932,0.0083201751112938,-0.27559497952461],[-0.015676356852055,-0.03503880277276,0.061262164264917]],[[-0.036570802330971,-0.075981892645359,-0.25542223453522],[-0.018757259473205,-0.005027677398175,-0.023655673488975],[-0.046897057443857,0.13102519512177,0.13730542361736]],[[0.097303681075573,0.058189731091261,0.21279945969582],[0.039259221404791,0.00069391506258398,0.091653682291508],[0.010476810857654,-0.1779658049345,-0.057533584535122]],[[-0.035865653306246,0.10731706768274,0.003347085788846],[-0.069765791296959,0.020171483978629,-0.096724003553391],[-0.083494409918785,0.036014743149281,0.10341185331345]],[[0.066478982567787,-0.09295716881752,-0.013483266346157],[-0.073277570307255,-0.051425155252218,-0.070867083966732],[-0.060840208083391,-0.057411093264818,-0.015686998143792]],[[0.0020722039043903,-0.023111250251532,0.034887261688709],[0.081696189939976,0.0068029654212296,-0.012611909769475],[-0.030160089954734,-0.19936498999596,0.12954565882683]],[[-0.045752875506878,0.022324837744236,-0.11832581460476],[-0.090658634901047,-0.00086114183068275,-0.046113643795252],[-0.033192131668329,-0.1636964827776,-0.080216459929943]],[[-0.087054938077927,-0.084960594773293,0.017703503370285],[-0.12365983426571,0.053875721991062,-0.13869768381119],[0.12683530151844,-0.015287306159735,0.042215250432491]],[[-0.012815265916288,-0.15812885761261,0.073604792356491],[-0.0041720997542143,-0.12824892997742,0.050664503127337],[0.08888304233551,0.028338875621557,0.17924647033215]],[[-0.027705259621143,0.11033417284489,-0.16080608963966],[-0.099819175899029,-0.024959832429886,0.10767311602831],[0.1426587253809,-0.1644062101841,-0.0092433877289295]],[[-0.10329142212868,-0.10776640474796,0.013120073825121],[-0.050315625965595,0.051566243171692,0.013111243955791],[-0.075973495841026,0.018392037600279,0.021901784464717]],[[0.1504589766264,-0.041442174464464,0.17973692715168],[-0.046532336622477,0.097961515188217,-0.10670025646687],[-0.078369952738285,-0.020906183868647,-0.040639378130436]],[[0.041404645889997,0.079389065504074,-0.009237464517355],[0.0024745638947934,0.053718589246273,0.039392527192831],[-0.21095594763756,0.025830129161477,-0.011699354276061]],[[-0.12160123884678,-0.075981877744198,-0.075084567070007],[0.032478336244822,0.085412457585335,0.1243741735816],[0.045738883316517,0.00039430984179489,-0.052323006093502]],[[-0.08417733758688,-0.0036965848412365,-0.026745477691293],[0.0016340306028724,0.1017704680562,0.076981544494629],[-0.044987991452217,0.036179598420858,-0.073569349944592]],[[-0.014805813319981,-0.033810686320066,-0.059799667447805],[-0.014854403212667,-0.048273518681526,-0.10734717547894],[-0.21035370230675,0.063546113669872,-0.13907687366009]],[[-0.049215525388718,-0.021102216094732,0.13361798226833],[-0.062438901513815,0.18781664967537,-0.05823228508234],[-0.043244738131762,0.1936212927103,-0.30237504839897]],[[-0.15340086817741,0.17280703783035,-0.027642901986837],[-0.10119134187698,0.051852948963642,0.08713460713625],[-0.12767496705055,-0.096015565097332,0.090801268815994]],[[-0.097580999135971,0.012976549565792,-0.055170595645905],[0.15844620764256,-0.050664320588112,-0.073075279593468],[-0.0031238568481058,-0.10910967737436,0.065752267837524]],[[0.061265420168638,-0.0016962732188404,-0.049582455307245],[-0.075830787420273,-0.10741888731718,-0.15663094818592],[-0.0028834666591138,0.16858041286469,-0.11552187055349]],[[0.039275292307138,-0.13044568896294,-0.14107142388821],[0.05921146273613,-0.12508134543896,-0.047758758068085],[0.10016768425703,0.097637921571732,-0.013198924250901]],[[0.0055376649834216,-0.046599179506302,0.012437582947314],[0.042865302413702,0.0042635952122509,-0.025336571037769],[0.099506482481956,-0.23261754214764,-0.067755818367004]],[[-0.024788150563836,0.054216500371695,-0.044791731983423],[0.033700942993164,0.038618218153715,-0.078562937676907],[-0.25519493222237,0.085724093019962,-0.2433156222105]],[[0.036175489425659,-0.21178635954857,-0.023097464814782],[0.022053144872189,0.1697544157505,0.14018256962299],[-0.13078579306602,0.13509176671505,-0.11590477079153]],[[-0.048229694366455,-0.0032389489933848,0.020437670871615],[-0.03204794600606,-0.0024759981315583,0.12520495057106],[0.0021830592304468,-0.14897114038467,0.047086697071791]],[[-0.099989421665668,-0.045407094061375,-0.15220445394516],[-0.16668799519539,0.13394674658775,0.047689564526081],[-0.11269775032997,0.16648529469967,-0.065694317221642]],[[-0.20114649832249,-0.10394684225321,-0.0085232565179467],[-0.01185907330364,-0.054276745766401,0.15317596495152],[-0.21738566458225,0.052982408553362,0.077427238225937]],[[-0.094316631555557,-0.14679209887981,0.023050732910633],[0.082602597773075,-0.13165298104286,-0.061169680207968],[-0.12961906194687,0.069299392402172,-0.01434279140085]],[[0.017968807369471,-0.0044283270835876,0.11520958691835],[-0.037199266254902,0.023124339058995,-0.099356666207314],[-0.080882728099823,0.12260210514069,-0.19354666769505]],[[-0.092439487576485,0.1100290119648,0.05256250500679],[0.2054151147604,-0.020310994237661,-0.088144473731518],[0.041099779307842,0.0088264811784029,0.17445047199726]],[[0.061593417078257,-0.018015434965491,0.14807294309139],[-0.10633244365454,-0.044339243322611,-0.038796678185463],[-0.3321248292923,-0.099552311003208,-0.0038986548315734]],[[-0.16248935461044,-0.11354201287031,-0.14011260867119],[-0.098600760102272,-0.031447116285563,-0.12587974965572],[-0.060311123728752,0.030303351581097,-0.31936964392662]],[[-0.072980739176273,-0.099688023328781,0.012896629981697],[0.064973570406437,-0.048901844769716,0.11473251879215],[0.066482208669186,-0.042618978768587,-0.10353415459394]],[[0.082101263105869,0.036174643784761,-0.010198371484876],[0.04030130058527,0.039612926542759,-0.17993596196175],[-0.036129403859377,0.069667108356953,-0.078797452151775]],[[-0.13665188848972,-0.17985710501671,0.10358848422766],[-0.030217301100492,-0.2630869448185,-0.11489720642567],[-0.0090893786400557,0.10410037636757,0.24236936867237]]],[[[-0.091789044439793,-0.021887103095651,0.12681706249714],[-0.04875648394227,-0.11078160256147,-0.037721883505583],[-0.0046822312287986,0.017786704003811,-0.041029121726751]],[[-0.012846450321376,0.070563919842243,0.10831097513437],[0.12108434736729,0.06539972871542,-0.15199863910675],[-0.019636327400804,-0.042004138231277,0.053569868206978]],[[-0.0032631240319461,0.013143364340067,-0.13869820535183],[-0.05962897464633,-0.016615606844425,0.10508386045694],[0.026026844978333,0.0070629050023854,-0.32670417428017]],[[0.027500225231051,-0.058463972061872,-0.036692809313536],[0.033100955188274,-0.07747558504343,0.025531083345413],[-0.062778517603874,-0.051207456737757,-0.01168485917151]],[[0.01245052088052,-0.15432259440422,-0.07943306863308],[0.1027422323823,-0.035101383924484,-0.16510990262032],[-0.21512681245804,-0.17254644632339,-0.16238248348236]],[[0.054705705493689,0.031453367322683,-0.15264131128788],[-0.11363257467747,0.052636183798313,0.15288579463959],[-0.076667055487633,-0.06552654504776,-0.18377512693405]],[[0.018212240189314,0.029325028881431,0.0032790044788271],[0.11623083055019,-0.032946117222309,-0.12557624280453],[0.014197216369212,0.074511393904686,-0.045950349420309]],[[0.091333255171776,0.036096647381783,0.10182497650385],[-0.021569298580289,-0.05975679308176,0.14863036572933],[0.11064773052931,0.084692984819412,0.0041167042218149]],[[-0.012961775064468,-0.0075846388936043,-0.0038755517452955],[-0.059469755738974,-0.035672064870596,0.046534921973944],[0.1123823672533,-0.067252300679684,-0.057176001369953]],[[-0.026830429211259,-0.12364740669727,0.031852021813393],[0.0050606313161552,-0.040518797934055,-0.18227307498455],[0.075107395648956,-0.04416112601757,0.057230483740568]],[[0.018100056797266,-0.034566842019558,-0.028892690315843],[-0.11529344320297,0.28591591119766,0.022351009771228],[0.099826902151108,-0.1643800586462,0.12748849391937]],[[0.026660140603781,-0.092600271105766,-0.12773224711418],[0.070177860558033,-0.0642174705863,0.010054443031549],[0.059225138276815,0.13065102696419,-0.051829840987921]],[[-0.11939287185669,-0.031589485704899,0.2017625272274],[0.13616666197777,-0.0021427273750305,-0.067726343870163],[-0.0050273104570806,0.055613294243813,0.13754208385944]],[[-0.041074689477682,-0.0056189373135567,0.13140620291233],[-0.093159981071949,-0.08449612557888,0.057964242994785],[-0.071354515850544,0.004668534733355,0.0033176164142787]],[[-0.12350236624479,-0.04456840083003,-0.081062473356724],[0.11194222420454,-0.027523186057806,0.081025652587414],[0.025265576317906,0.096226237714291,-0.13827264308929]],[[0.026295382529497,-0.083826869726181,-0.0087750917300582],[-0.13429643213749,0.054783012717962,0.1871691942215],[0.095250070095062,-0.012191780842841,0.21580217778683]],[[0.019211489707232,0.074944198131561,0.01068677380681],[-0.019876772537827,-0.017308467999101,-0.011833487078547],[0.073970437049866,-0.15899422764778,0.21735455095768]],[[0.068221002817154,0.028669886291027,-0.20892250537872],[0.085720852017403,0.014428765513003,-0.12508031725883],[0.016414199024439,-0.035822361707687,0.12415263056755]],[[0.11725667119026,0.33098289370537,-0.050851482897997],[0.10859136283398,-0.0081752510741353,0.0034643630497158],[-0.071894451975822,-0.05685318261385,0.062807224690914]],[[0.053486384451389,-0.039023369550705,-0.16852182149887],[0.083996072411537,0.026858514174819,0.010978735983372],[-0.015434463508427,-0.065885759890079,0.010104632005095]],[[-0.00028871529502794,-0.14641971886158,-0.023028923198581],[-0.086657211184502,-0.048562254756689,0.03796761482954],[-0.09273299574852,-0.12810491025448,-0.093529514968395]],[[-0.15842647850513,0.075398840010166,-0.068829029798508],[-0.13195598125458,0.045098125934601,0.16016238927841],[0.036027915775776,0.017655074596405,0.15665471553802]],[[-0.13712999224663,0.018608570098877,0.10202884674072],[-0.090879254043102,0.035462260246277,-0.072071552276611],[0.0038438383489847,-0.027140911668539,-0.097764626145363]],[[0.021393422037363,-0.030986437574029,-0.063377715647221],[-0.11310270428658,-0.159961566329,-0.24401167035103],[0.094762071967125,0.01820514164865,-0.070023491978645]],[[0.079123623669147,-0.0061384942382574,0.033512081950903],[0.089108675718307,-0.11486098915339,0.024333028122783],[0.013353886082768,-0.083132237195969,-0.10006532818079]],[[-0.13042820990086,-0.022509798407555,-0.054520923644304],[-0.11661327630281,0.072607629001141,-0.10777248442173],[-0.0042453650385141,-0.025956958532333,-0.28457975387573]],[[0.15720075368881,-0.073661789298058,0.00078673020470887],[-0.033142223954201,-0.17263332009315,0.11431075632572],[0.038148906081915,-0.083751760423183,0.1707643866539]],[[-0.029848571866751,0.031535539776087,-0.031759072095156],[-0.090045884251595,0.0099436175078154,0.067409545183182],[-0.026508335024118,0.2039251178503,-0.077457740902901]],[[0.15132178366184,0.030354907736182,-0.12821383774281],[-0.059856917709112,0.076824657618999,-0.014300535432994],[-0.20365683734417,0.011076620779932,-0.16835516691208]],[[0.13773761689663,0.17887336015701,-0.098675742745399],[-0.050444323569536,-0.10432025045156,-0.19618275761604],[0.18554595112801,3.2847761758603e-05,-0.064427569508553]],[[-0.070471338927746,0.020247001200914,0.045783344656229],[0.036294050514698,0.083545193076134,-0.12050675600767],[0.0049082348123193,0.013069858774543,-0.034670501947403]],[[0.054932232946157,0.10123913735151,-0.24556484818459],[0.0062373150140047,0.028776308521628,-0.050040945410728],[-0.43573349714279,0.25329422950745,-0.12757658958435]],[[0.080811217427254,-0.060340762138367,-0.1256368458271],[0.02615699544549,-0.04237461835146,0.043683379888535],[0.094308666884899,0.00068051577545702,0.058622065931559]],[[-0.1856202185154,-0.094746679067612,-0.24652241170406],[-0.05060226470232,0.0095083173364401,4.1238672565669e-05],[-0.15189500153065,-0.0053237010724843,0.07486392557621]],[[0.0017240776214749,-0.082667820155621,0.097086653113365],[0.038707926869392,-0.068848714232445,0.043464489281178],[-0.15842577815056,-0.10097450017929,-0.15933717787266]],[[-0.019716715440154,0.061818033456802,0.048364832997322],[-0.063075087964535,-0.076130352914333,-0.043950583785772],[0.022088248282671,-0.11148872971535,0.098744064569473]],[[0.027979791164398,-0.082816585898399,0.077826239168644],[-0.0029740566387773,-0.006073831114918,0.0066859712824225],[-0.020410440862179,-0.00028626641142182,-0.067272074520588]],[[-0.010432426817715,0.1428979486227,-0.069251708686352],[0.011493867263198,0.16588035225868,0.10924450308084],[0.15060904622078,0.081247970461845,-0.077585071325302]],[[-0.035525288432837,-0.039752587676048,-0.025132151320577],[-0.028037793934345,-0.03578482195735,0.060295972973108],[-0.087955467402935,0.031122285872698,-0.018874194473028]],[[0.099225364625454,-0.063508369028568,0.041010681539774],[-0.015940170735121,0.040841791778803,-0.024911234155297],[-0.027973704040051,0.072432346642017,0.038762539625168]],[[0.025438502430916,-0.065699368715286,0.12202467769384],[-0.037743523716927,0.039498534053564,-0.011930735781789],[-0.048248346894979,0.15602697432041,-0.12728977203369]],[[0.060960333794355,-0.20828996598721,-0.042513500899076],[-0.073845766484737,-0.12749451398849,-0.082771860063076],[-0.10358069837093,0.029305776581168,-0.099396653473377]],[[-0.017094884067774,-0.094205163419247,0.10974948853254],[0.11035263538361,-0.22079603374004,-0.037126012146473],[0.059212546795607,-0.17173348367214,-0.12568402290344]],[[-0.022991437464952,-0.045836869627237,0.027043653652072],[-0.007793034426868,-0.0082485461607575,0.030675988644361],[0.04166491702199,0.04186188429594,-0.0014784578233957]],[[-0.011760839261115,0.044847786426544,0.057004172354937],[-0.038348477333784,0.043094575405121,0.006953155156225],[-0.036614637821913,0.059299975633621,-0.12887133657932]],[[0.0362633690238,-0.11682306975126,0.072913661599159],[-0.022786103188992,0.021735806018114,-0.093305453658104],[0.067270033061504,-0.066377326846123,-0.15375973284245]],[[-0.1096361503005,-0.086763769388199,-0.0021871267817914],[0.013698467053473,0.17442210018635,-0.16630658507347],[0.21033675968647,0.060838282108307,-0.3854418694973]],[[0.14047300815582,0.038395036011934,0.0044158552773297],[-0.15442660450935,-0.098392754793167,-0.035517815500498],[0.042598698288202,-0.070718728005886,-0.25987240672112]],[[0.053929690271616,0.0059606581926346,0.17529781162739],[-0.040132354944944,-0.081718683242798,0.029897227883339],[-0.07737423479557,-0.15680868923664,-0.1214095056057]],[[0.061867833137512,-0.0083442982286215,-0.081933923065662],[-0.1386151611805,-0.11713083088398,0.02550445497036],[-0.09257049113512,-0.08069659024477,0.10988866537809]],[[-0.048361264169216,0.12094628065825,-0.037570018321276],[-0.011875891126692,0.018382765352726,0.13329397141933],[-0.045689597725868,-0.21007537841797,0.074124358594418]],[[0.024984316900373,-0.29264125227928,0.0049391710199416],[0.11709146201611,-0.11305471509695,0.057884600013494],[0.17247942090034,-0.030306354165077,-0.10671126842499]],[[-0.0065837139263749,-0.027939226478338,-0.096958845853806],[-0.091512441635132,-0.019230660051107,-0.0958182066679],[0.019244646653533,0.14264039695263,-0.13863982260227]],[[0.080527730286121,-0.11267990618944,-0.14456811547279],[-0.21448284387589,-0.11263433843851,0.080628648400307],[0.034377418458462,-0.11940198391676,0.14197115600109]],[[-0.094498053193092,0.071774415671825,0.052371740341187],[-0.065402872860432,0.019797705113888,-0.18296310305595],[-0.078676037490368,-0.016652423888445,-0.35664176940918]],[[0.043532732874155,-0.0066269510425627,0.17615891993046],[0.00018317827198189,-0.089282184839249,0.0071503440849483],[-0.035601582378149,0.11499222368002,-0.014342486858368]],[[-0.052092593163252,-0.10148868709803,0.089027188718319],[-0.1499842852354,-0.054861150681973,0.1026770696044],[-0.049195613712072,-0.094367280602455,-0.31104671955109]],[[-0.31007102131844,0.06309911608696,-0.15384995937347],[0.060109060257673,0.045894492417574,-0.19344462454319],[0.049559555947781,0.15461102128029,-0.28654536604881]],[[-0.07763995975256,0.033536091446877,0.0060097207315266],[0.06706253439188,-0.00079446437302977,-0.3491139113903],[0.066539019346237,-0.017708735540509,0.012168725021183]],[[0.19316656887531,0.091693960130215,-0.2207762748003],[0.054596807807684,-0.018592422828078,-0.13218602538109],[0.054177395999432,0.016744239255786,-0.29976558685303]],[[-0.06889146566391,0.016650492325425,0.019226340577006],[0.0048712338320911,-0.22302477061749,0.029033644124866],[-0.091398105025291,-0.010501272045076,-0.010667573660612]],[[-0.066043056547642,-0.061674550175667,-0.065206475555897],[0.030414709821343,0.049272693693638,0.096385896205902],[-0.058255165815353,0.040684886276722,0.18800732493401]],[[0.13766798377037,-0.13518139719963,-0.18669107556343],[0.031147638335824,-0.17771375179291,-0.07392130792141],[-0.035813618451357,-0.070419378578663,0.10105661302805]],[[-0.13299304246902,0.13919115066528,-0.041925922036171],[-0.079602234065533,0.083211190998554,-0.16874822974205],[0.0069548469036818,0.0091209281235933,0.11808864027262]]],[[[0.048873350024223,-0.016618179157376,-0.0059721544384956],[0.051456693559885,-0.042760819196701,-0.027133816853166],[0.0076492130756378,0.02716052159667,-0.1546126306057]],[[0.12730818986893,0.0031111524440348,0.026462638750672],[-0.023108066990972,0.03231942653656,-0.056489434093237],[-0.02891525067389,0.069340109825134,-0.010213689878583]],[[-0.19150772690773,0.046609401702881,-0.050109751522541],[0.0083913384005427,-0.084932155907154,0.006441393867135],[0.085443429648876,0.065613374114037,-0.0014190239598975]],[[-0.043694820255041,0.05405293032527,-0.18896670639515],[0.017439406365156,0.0098499963060021,0.038471076637506],[-0.10284251719713,-0.062617480754852,0.072501048445702]],[[0.067056559026241,-0.024572934955359,0.042921874672174],[-0.015855263918638,-0.031319782137871,0.090405181050301],[-0.11850060522556,0.021395748481154,-0.15131033957005]],[[0.017245454713702,0.033841084688902,-0.10932616889477],[-0.05446308106184,0.12768022716045,-0.14363372325897],[-0.010296231135726,-0.024517280980945,0.024941224604845]],[[-0.058655045926571,-0.079283677041531,-0.03538790717721],[0.062544137239456,-0.071368366479874,-0.014428582042456],[0.14270116388798,-0.029708076268435,0.011723894625902]],[[-0.032367404550314,-0.046920843422413,0.011965969577432],[-0.026345271617174,0.070452824234962,0.031108491122723],[-0.07192525267601,0.069434531033039,0.053818553686142]],[[0.049853291362524,0.055264998227358,-0.093111284077168],[0.048575095832348,0.0066001699306071,-0.077383302152157],[0.048218283802271,-0.0024517152924091,-0.041183114051819]],[[0.005677240435034,-0.046859193593264,0.13634552061558],[0.080884993076324,0.010757730342448,-0.13026084005833],[-0.025204509496689,0.063332408666611,0.11401740461588]],[[-0.055273272097111,0.031689316034317,-0.16139148175716],[-0.011940374970436,-0.074296467006207,0.13566491007805],[0.0027019882109016,0.053302656859159,-0.012808922678232]],[[-0.16843794286251,0.0089297825470567,0.030733043327928],[0.034763287752867,0.037645686417818,0.029408549889922],[-0.010146224871278,-0.048353809863329,0.040529023855925]],[[0.078112453222275,-0.18445980548859,-0.30067864060402],[0.064247019588947,0.056672297418118,0.067173190414906],[-0.053346112370491,-0.0007762637687847,-0.068351589143276]],[[0.075669661164284,-0.00036015638033859,-0.042474564164877],[-0.024271609261632,-0.090061888098717,0.043283019214869],[-0.098639577627182,0.036888312548399,0.037121191620827]],[[0.10075628012419,-0.15857991576195,-0.12121202796698],[-0.042913097888231,0.066696017980576,-0.046579506248236],[-0.14902439713478,0.059045817703009,0.20916068553925]],[[0.017198357731104,0.0041184332221746,-0.10443770885468],[0.056413672864437,0.13355080783367,0.050634674727917],[-0.037558920681477,0.0050077387131751,-0.032761681824923]],[[-0.013626935891807,-0.10349282622337,-0.017038643360138],[0.11187318712473,0.073616549372673,0.06017329916358],[-0.13718496263027,0.094454705715179,-0.098962031304836]],[[0.01101340726018,-0.065125644207001,-0.032454092055559],[-0.090710617601871,-0.050010953098536,-0.041510924696922],[-0.10759823024273,0.016348952427506,0.035103086382151]],[[-0.039926897734404,0.0071922619827092,-0.018361248075962],[-0.0019553953316063,-0.13902668654919,-0.066428460180759],[-0.10064563155174,-0.047350268810987,0.056784626096487]],[[-0.14389532804489,-0.038410358130932,0.2017133384943],[-0.10510786622763,-0.061731372028589,-0.038704756647348],[0.032439533621073,0.049721993505955,0.033578082919121]],[[-0.072526507079601,-0.11315786838531,-0.079037822782993],[-0.034184996038675,-0.0051121134310961,-0.015986448153853],[-0.014492900110781,0.066340319812298,0.17652572691441]],[[0.050445768982172,-0.17622454464436,-0.00062517623882741],[0.013415838591754,0.081864252686501,0.01766455732286],[-0.10631830990314,0.042590387165546,-0.17047192156315]],[[0.041847977787256,-0.077788211405277,-0.10917680710554],[0.050077464431524,-0.016770998016,0.036306027323008],[-0.052865538746119,0.10929091274738,0.010966840200126]],[[0.017052741721272,-0.14913173019886,-0.015615552663803],[-0.0021565780043602,-0.027514614164829,-0.14681078493595],[0.010159482248127,-0.018427135422826,-0.015926906839013]],[[-0.0020719673484564,-0.048014536499977,-0.10425834357738],[0.17458514869213,-0.0070695551112294,0.039791032671928],[0.085661314427853,-0.018639033660293,0.16575366258621]],[[-0.046121139079332,0.0057923756539822,0.068020366132259],[-0.074556283652782,-0.13494724035263,0.04144025221467],[0.050009980797768,0.043031305074692,0.087862133979797]],[[-0.12163820117712,-0.025502510368824,0.042271926999092],[0.06134819984436,0.049333389848471,-0.097198382019997],[0.05648697912693,0.088180370628834,0.11760631948709]],[[-0.04040015116334,-0.085979819297791,-0.049166332930326],[-0.03325242549181,0.069598942995071,-0.10897783190012],[0.016970012336969,-0.018772605806589,0.015460447408259]],[[-0.012380708940327,0.013580705970526,0.019352458417416],[-0.048977632075548,0.034819386899471,0.075910784304142],[-0.02210178412497,0.033532399684191,0.068714395165443]],[[-0.071186415851116,-0.045599967241287,-0.091609090566635],[0.02924183383584,0.080425538122654,0.15430691838264],[0.0057277465239167,-0.02340048737824,-0.0026802802458405]],[[-0.05975741147995,0.17759236693382,0.10417234152555],[-0.0032145315781236,0.038906507194042,0.046074900776148],[0.020024476572871,-0.04465302079916,0.086057640612125]],[[0.077728159725666,0.017638850957155,0.13924930989742],[-0.12879133224487,0.028740102425218,0.086389310657978],[0.085158847272396,-0.015990473330021,0.16847144067287]],[[0.026607252657413,-0.061186797916889,0.014211324043572],[0.059348080307245,-0.029769722372293,0.02216723933816],[0.097531780600548,0.0043407557532191,-0.15294714272022]],[[-0.10163712501526,0.046059936285019,0.077561430633068],[-0.025066642090678,-0.012130137532949,-0.092966496944427],[-0.016232769936323,0.041743747889996,-0.034586779773235]],[[0.023846419528127,-0.072278305888176,-0.039202950894833],[0.019873661920428,-0.11091061681509,-0.040728863328695],[0.033894199877977,-0.050802141427994,0.0026239820290357]],[[-0.08971481770277,-0.12253827601671,-0.031684659421444],[0.062681026756763,-0.11156582832336,0.10583107173443],[0.056055881083012,-0.0070755034685135,0.033509466797113]],[[0.035570487380028,-0.1880346685648,-0.10573994368315],[-0.03932936117053,0.10160622745752,0.020571853965521],[-0.022977052256465,0.031618665903807,-0.081506885588169]],[[0.033835761249065,0.16174471378326,-0.044469393789768],[-0.052497159689665,-0.032189305871725,0.10328955948353],[0.020713115110993,-0.22203199565411,0.023345777764916]],[[0.0015181695343927,-0.09695116430521,-0.12032111734152],[0.00028074716101401,0.074422962963581,-0.069427028298378],[-0.1306879222393,-0.058109257370234,0.03805073723197]],[[-0.022593479603529,-0.072601795196533,0.012460448779166],[0.0060501978732646,-0.031281005591154,0.10212726145983],[0.017830880358815,0.0097181741148233,0.033383548259735]],[[-0.042354933917522,0.099490158259869,0.087451554834843],[-0.05830317363143,0.005359276663512,-0.10580959916115],[-0.01400216575712,-0.03337774425745,-0.11716051399708]],[[-0.11049898713827,-0.066529706120491,0.026204036548734],[0.069132603704929,0.1696043163538,0.20507363975048],[0.013820295222104,0.080309450626373,0.0046354825608432]],[[0.066333532333374,-0.0013640481047332,0.0064850295893848],[-0.13444477319717,0.043691236525774,0.019901854917407],[0.079609028995037,0.057840142399073,-0.027478784322739]],[[0.036286797374487,-0.11428225785494,0.08430802077055],[-0.11464308202267,0.005982908885926,0.090744756162167],[-0.047445919364691,0.060962591320276,-0.01875070668757]],[[-0.070570319890976,-0.021095391362906,-0.13747774064541],[-0.10913687944412,-0.084612831473351,0.044029712677002],[-0.0039204135537148,-0.051104683429003,0.0028059289325029]],[[-0.17457869648933,-0.047014258801937,-0.08236637711525],[-0.080591529607773,-0.033977936953306,-0.14291313290596],[0.039110325276852,0.065125375986099,0.17794613540173]],[[0.026407796889544,0.091415353119373,0.12502229213715],[0.015247349627316,0.051852986216545,0.081379033625126],[-0.045280668884516,-0.11326276510954,0.041531298309565]],[[-0.025642652064562,0.062653265893459,0.035382717847824],[-0.052196633070707,0.0010499797062948,0.051297541707754],[0.06313744187355,-0.019884521141648,0.011951754800975]],[[-0.043193694204092,-0.13307712972164,-0.0011404807446525],[0.15483222901821,0.080193899571896,-0.046260003000498],[0.078145705163479,0.071947045624256,-0.0026232986710966]],[[0.026601038873196,-0.17343837022781,0.00014611714868806],[-0.023695582523942,-0.049399092793465,0.10681097209454],[-0.040381915867329,-0.057373523712158,0.055984850972891]],[[-0.13566461205482,-0.0184091553092,-0.027695560827851],[-0.0027477957773954,-0.12557253241539,0.042200699448586],[0.055504307150841,0.014776292257011,0.056522943079472]],[[0.0023548968601972,0.10583541542292,-0.075127981603146],[-0.063111789524555,0.030127001926303,-0.20357476174831],[0.014506531879306,0.068739108741283,-0.10768999159336]],[[0.00045151027734391,-0.014565861783922,-0.050472788512707],[0.074656710028648,0.0049345698207617,0.060567196458578],[0.13819627463818,-0.16967864334583,-0.079965904355049]],[[-0.2263403236866,0.0041560218669474,0.10096886008978],[-0.025975834578276,-0.15840692818165,0.040161348879337],[-0.028969245031476,-0.16432672739029,-0.010515105910599]],[[0.046212788671255,0.018161911517382,-0.066559933125973],[0.024632209911942,0.027346154674888,0.029127733781934],[-0.080715112388134,-0.099259689450264,0.056122172623873]],[[-0.0877291187644,-0.050971694290638,0.17044852674007],[-0.061064150184393,0.013119203969836,-0.05329903960228],[-0.084645964205265,0.049820780754089,-0.076155923306942]],[[0.024179870262742,-0.053923387080431,-0.21330726146698],[-0.023474181070924,-0.11772022396326,0.028211081400514],[-0.05585590749979,-0.045820191502571,-0.044552870094776]],[[0.027787001803517,-0.10351606458426,-0.039977345615625],[0.12503300607204,-0.020281091332436,0.10741740465164],[0.1089780330658,-0.033611178398132,-0.034590974450111]],[[0.010392278432846,0.023899832740426,-0.059062249958515],[-0.046368204057217,-0.045199681073427,-0.0064568468369544],[0.084672354161739,0.060127999633551,0.047137040644884]],[[0.074040964245796,0.041264250874519,0.043001126497984],[-0.080226294696331,0.060400016605854,-0.018880072981119],[0.086475066840649,0.035080388188362,-0.21235406398773]],[[-0.080703623592854,-0.099555529654026,0.057709489017725],[0.0026265559718013,0.18328776955605,0.05866326764226],[0.14372925460339,0.089198566973209,-0.027470985427499]],[[-0.017642373219132,0.0070016388781369,-0.06339930742979],[-0.063194110989571,-0.041808035224676,-0.090136557817459],[0.060201425105333,0.051718257367611,0.046600446105003]],[[0.031260326504707,0.060818370431662,0.11308375000954],[-0.01274754665792,0.016471598297358,0.052507992833853],[-0.02474539168179,0.035838350653648,-0.012308133766055]],[[0.077852740883827,-0.056218516081572,-0.075489200651646],[0.13752393424511,-0.033488895744085,-0.17095868289471],[0.037088491022587,-0.011701084673405,-0.11669863760471]]],[[[-0.16891145706177,-0.15568949282169,-0.1573821157217],[0.034527823328972,-0.11270400136709,0.056223399937153],[0.14659343659878,0.036319777369499,-0.052131362259388]],[[0.021087421104312,0.064977049827576,0.069679781794548],[-0.061669521033764,0.033556066453457,0.042210128158331],[-0.10550367832184,-0.10066688805819,-0.086267203092575]],[[-0.0043346639722586,-0.024315478280187,-0.073781192302704],[-0.088979884982109,-0.03707293048501,-0.18558174371719],[0.16499069333076,0.10087908059359,-0.21508613228798]],[[-0.029521798714995,-0.053247172385454,0.015511940233409],[0.037568565458059,0.042448852211237,0.081880487501621],[-0.075857602059841,-0.12362240254879,0.15878899395466]],[[0.20254564285278,0.050998602062464,-0.018656723201275],[-0.15978038311005,0.076381154358387,0.19351996481419],[0.020737683400512,0.074215024709702,0.071795202791691]],[[-0.11110872030258,0.015939300879836,0.10224538296461],[-0.012801440432668,-0.0086608370766044,0.0082181533798575],[0.0061298231594265,-0.15577971935272,0.1446203738451]],[[0.066851831972599,-0.11881375312805,-0.17363938689232],[0.034954767674208,-0.054537292569876,-0.19693285226822],[0.054105449467897,0.10221938043833,-0.10125879943371]],[[0.10775031149387,0.091997310519218,-0.095194108784199],[0.070045121014118,0.072554372251034,-0.05867425352335],[0.10020557790995,-0.082968100905418,-0.057149935513735]],[[-0.046350222080946,0.1557577252388,0.01280484162271],[-0.045437630265951,-0.056464690715075,-0.068997628986835],[0.022237133234739,-0.080095067620277,-0.052912313491106]],[[-0.02217099443078,0.15067227184772,-0.38766571879387],[0.1783063262701,-0.085277087986469,-0.042755205184221],[0.06713379919529,0.20300389826298,0.060293130576611]],[[0.04706509783864,-0.13781130313873,0.0073814266361296],[0.019532769918442,-0.012991478666663,0.13419413566589],[0.087973318994045,-0.13716852664948,0.062034074217081]],[[0.098421163856983,-0.027032470330596,0.032657392323017],[0.014470568858087,0.076677680015564,-0.021195722743869],[-0.0051034563221037,-0.086248658597469,0.063538178801537]],[[0.040635168552399,-0.04800571501255,0.056820966303349],[0.14781372249126,0.04960373044014,0.039955887943506],[0.15190470218658,0.10332916676998,0.093259401619434]],[[-0.12126538902521,0.027557969093323,-0.026449153199792],[0.036607474088669,-0.0082049760967493,-0.044007103890181],[0.030773958191276,0.03806859254837,-0.01237899903208]],[[-0.011629612185061,-0.037437360733747,0.053339257836342],[0.063139647245407,0.065485209226608,0.076687231659889],[0.11189260333776,-0.11111715435982,-0.21415473520756]],[[0.015278962440789,0.12822848558426,0.049190692603588],[-0.036009334027767,-0.041678752750158,-0.02354558929801],[-0.0030781913083047,0.12802881002426,0.013289196416736]],[[-0.049689147621393,-0.17411556839943,0.14111404120922],[0.075997896492481,-0.02815630286932,-0.07910980284214],[-0.023717921227217,-0.061725497245789,-0.09216783195734]],[[0.1019354313612,0.11180349439383,0.015616222284734],[-0.018487043678761,-0.074382446706295,0.055800888687372],[-0.00010231065243715,0.021666856482625,-0.22023513913155]],[[-0.097490958869457,0.0054777283221483,-0.02187841758132],[0.075508259236813,0.082276545464993,-0.087089017033577],[-0.17123295366764,0.031117703765631,-0.054524064064026]],[[-0.037089470773935,0.11013013124466,0.065577492117882],[0.09784273058176,0.039216995239258,-0.025842281058431],[0.24761448800564,0.044875677675009,0.20604039728642]],[[0.0036645866930485,0.019285501912236,-0.066945038735867],[0.091499656438828,-0.077753022313118,0.1514687538147],[-0.093377538025379,-0.041421942412853,7.7634453191422e-05]],[[0.055960427969694,-0.092964217066765,-0.20746596157551],[0.14129440486431,-0.23783281445503,-0.059142265468836],[0.12186735868454,-0.14954181015491,-0.00030585646163672]],[[0.0083448980003595,0.0073531153611839,0.054277259856462],[-0.18236170709133,0.01637626811862,-0.11887116730213],[0.01287011243403,-0.041174307465553,-0.0093765091150999]],[[0.083827145397663,0.007732252124697,-0.091406106948853],[0.09886346757412,-0.077726967632771,-0.21483719348907],[0.083562709391117,-0.0025240189861506,-0.13958278298378]],[[0.14662942290306,0.16450932621956,0.065986089408398],[0.051462545990944,-0.048695456236601,-0.0061090025119483],[0.07600674778223,-0.096904627978802,-0.29508596658707]],[[-0.011454152874649,0.042828772217035,-0.2101062387228],[-0.013451182283461,0.047173198312521,-0.15248693525791],[0.10821297764778,0.076936565339565,0.040332298725843]],[[-0.055582355707884,0.1920423656702,-0.084203779697418],[-0.068750090897083,0.039552219212055,-0.019159203395247],[-0.0060241133905947,-0.04594062268734,-0.022117853164673]],[[-0.055695537477732,0.031964093446732,-0.04410170391202],[0.12679137289524,-0.013588070869446,-0.024151273071766],[-0.018831096589565,-0.1801575422287,-0.15376605093479]],[[-0.046549126505852,0.07538678497076,0.18765595555305],[-0.049470767378807,0.036352656781673,-0.087625466287136],[-0.13093131780624,0.029926020652056,-0.087041348218918]],[[-0.076795540750027,-0.0058753294870257,0.028488179668784],[-0.041072357445955,-0.088486701250076,0.062277559190989],[-0.010856419801712,0.015539170242846,-0.011125707998872]],[[-0.13520087301731,-0.13816501200199,0.077451214194298],[-0.095641538500786,-0.019210247322917,-0.050107978284359],[0.037256442010403,0.098363921046257,-0.089235819876194]],[[-0.10482928901911,-0.02444907091558,0.065385848283768],[0.048238392919302,0.033453907817602,0.042273536324501],[-0.14939460158348,0.029242500662804,-0.20893937349319]],[[-0.060332361608744,-0.16912989318371,-0.12836501002312],[0.059726368635893,-0.072847075760365,-0.11934772133827],[-0.029746972024441,0.13320595026016,0.083021208643913]],[[0.05994176119566,0.02310748398304,0.011216471903026],[-0.0018481890438125,-0.11708861589432,0.05003497004509],[0.078892253339291,-0.11345658451319,-0.05639211088419]],[[-0.056443233042955,-0.11416556686163,-0.10252290964127],[-0.059853322803974,0.0034084473736584,0.010837247595191],[-0.095316343009472,-0.075351245701313,-0.075441263616085]],[[0.10226851701736,-0.074459932744503,0.10880524665117],[0.10350062698126,0.12646551430225,0.070553682744503],[-0.17417119443417,-0.0072343740612268,-0.051975626498461]],[[0.0017913999035954,-0.014859654009342,0.03597529605031],[-0.051982849836349,0.027856837958097,0.086390070617199],[0.0052747242152691,0.02350384183228,-0.12292744964361]],[[0.0073055382817984,-0.096432365477085,0.068436689674854],[-0.055706892162561,0.047466859221458,0.058839075267315],[-0.1089144796133,0.1160114556551,-0.08826769143343]],[[-0.048033442348242,-0.20122393965721,-0.032824907451868],[-0.011620255187154,-0.12336114794016,0.13038209080696],[0.13354450464249,-0.011499164626002,-0.1026983782649]],[[-0.065124541521072,0.042281232774258,-0.14772646129131],[0.19699628651142,-0.039711624383926,-0.029399137943983],[0.011069540865719,0.11375503242016,-0.0011106587480754]],[[0.006098257843405,0.063511840999126,0.071995288133621],[-0.042457208037376,-0.037812247872353,0.12930332124233],[0.087062209844589,-0.010607087053359,-0.041107498109341]],[[0.022062284871936,-0.026406083256006,-0.061259582638741],[-0.097922876477242,0.053724076598883,0.12932749092579],[0.030731830745935,0.16856960952282,0.039926551282406]],[[0.14094211161137,0.028506454080343,-0.14196735620499],[-0.19178058207035,0.0096254935488105,-0.079756587743759],[-0.23763497173786,0.085712857544422,-0.044392738491297]],[[-0.047873765230179,-0.058168891817331,-0.06054924800992],[0.063911356031895,-0.010786541737616,0.093606643378735],[-0.019251316785812,0.040059942752123,0.019934087991714]],[[-0.052697252482176,0.14790520071983,0.0067887841723859],[-0.10160569101572,0.0023614398669451,0.015962546691298],[-0.11203453689814,0.099658116698265,0.042687334120274]],[[0.095236547291279,0.058561213314533,-0.043545369058847],[0.1501978635788,-0.076498821377754,0.17980387806892],[0.063468083739281,0.12942811846733,0.13864381611347]],[[-0.15621455013752,0.11352670937777,-0.13961344957352],[-0.1435149461031,-0.0067577552981675,0.011766055598855],[0.025742275640368,-0.027525065466762,-0.082100003957748]],[[-0.057333815842867,-0.10902223736048,-0.038139499723911],[0.0553197003901,0.060901623219252,-0.16154593229294],[0.11482181400061,0.088003262877464,-0.08820928633213]],[[0.081811979413033,0.039543729275465,-0.22447398304939],[-0.050640102475882,0.0044648447073996,0.019636111333966],[-0.075117483735085,-0.075482100248337,-0.046287577599287]],[[0.12485552579165,0.017373193055391,-0.078741975128651],[0.10376655310392,-0.10106237232685,-0.085670821368694],[-0.013951485045254,0.026543810963631,-0.12903922796249]],[[0.070784732699394,0.0040194853208959,0.015876414254308],[0.040031924843788,0.068532414734364,0.080574974417686],[-0.1195195093751,0.049283470958471,0.17886482179165]],[[0.067918263375759,-0.062696181237698,0.046879183501005],[0.020917274057865,-0.040001440793276,-0.058584555983543],[-0.096395879983902,0.17415942251682,-0.019012533128262]],[[0.030683368444443,0.035865906625986,-0.026976816356182],[-0.11010324954987,-0.21996636688709,-0.090967752039433],[0.0073246229439974,0.059841997921467,-0.045456156134605]],[[-0.073976501822472,-0.06928712874651,0.059117287397385],[0.10046526789665,-0.068925857543945,-0.18782828748226],[0.21468175947666,0.098822124302387,-0.039931379258633]],[[0.058066330850124,-0.019256368279457,-0.031736526638269],[-0.33611765503883,0.040048129856586,0.091137073934078],[-0.094087161123753,0.025967814028263,-0.14924807846546]],[[-0.07821199297905,0.055974625051022,-0.0028435792773962],[0.076330184936523,-0.055439796298742,-0.072083704173565],[-0.038770534098148,0.078346610069275,-0.064981885254383]],[[-0.12472985684872,0.024185007438064,0.094546273350716],[0.1100996285677,-0.25127419829369,0.0099484231323004],[-0.00059140531811863,0.0045392955653369,0.010296896100044]],[[0.032859224826097,-0.020575316622853,-0.11930648237467],[0.063796848058701,0.0013357233256102,-0.089523732662201],[0.033485192805529,-0.01436978019774,-0.028690833598375]],[[-0.015636499971151,-0.10832620412111,-0.037724371999502],[-0.059578452259302,-0.011708584614098,0.06452501565218],[0.076697267591953,0.05624270811677,-0.00050811539404094]],[[0.072240382432938,0.024305900558829,0.054767541587353],[-0.13588216900826,0.00042480562115088,-0.039288405328989],[0.045998863875866,0.026471776887774,0.10557335615158]],[[-0.043130125850439,-0.10405226796865,0.004058884922415],[0.0023829373531044,0.081813581287861,0.064172878861427],[-0.05068202316761,-0.0028926921077073,-0.026019871234894]],[[0.023508425801992,-0.012673679739237,0.028894152492285],[0.10806323587894,-0.081671878695488,-0.048674121499062],[0.078052766621113,-0.013368929736316,-0.029221158474684]],[[0.055654335767031,0.062441762536764,0.03471701964736],[-0.075635507702827,0.17189157009125,0.096053451299667],[-0.01812788285315,0.065346546471119,0.13602551817894]],[[-0.074925966560841,0.060007940977812,0.013222246430814],[0.26713508367538,0.060103043913841,0.043517358601093],[0.0086971325799823,-0.054916631430387,-0.063326992094517]]],[[[0.13805988430977,0.16635604202747,0.015256524085999],[0.053417541086674,0.11015968024731,-0.058521568775177],[-0.020255401730537,0.014230670407414,0.0056859464384615]],[[0.079967133700848,-0.048184636980295,0.003559717675671],[0.0083789378404617,0.016380762681365,0.0076358988881111],[-0.15194636583328,-0.078119665384293,0.10087361931801]],[[-0.044688131660223,0.00059512665029615,-0.010156913660467],[0.047101810574532,-0.037965297698975,-0.044786226004362],[0.095047503709793,-0.079674273729324,-0.03391582146287]],[[-0.058610044419765,-0.060614503920078,0.029809702187777],[0.0096688196063042,0.023966589942575,0.15193822979927],[-0.013647332787514,0.00091218581655994,-0.069327890872955]],[[0.03551571816206,0.09125205129385,-0.15061920881271],[-0.095092751085758,0.0079185357317328,-0.006891131401062],[-0.1831179857254,-0.027013497427106,-0.010167580097914]],[[0.011665392667055,0.035759169608355,-0.0038603090215474],[-0.019620381295681,0.081865504384041,0.068905845284462],[-0.083993084728718,-0.057208936661482,0.039139289408922]],[[-0.10325492918491,-0.011180267669261,0.019382672384381],[-0.079964846372604,0.013620596379042,0.014004112221301],[0.0085092019289732,0.0051322914659977,0.10564612597227]],[[0.082326300442219,0.038942381739616,0.084292195737362],[0.0064140860922635,-0.020006407052279,0.079826235771179],[-0.051112964749336,0.12064906954765,-0.0069736079312861]],[[0.011205535382032,0.076257444918156,0.0066359252668917],[-0.082551434636116,-0.10973277688026,-0.042720258235931],[0.016763130202889,-0.012081549502909,0.044270791113377]],[[-0.16833852231503,-0.098710812628269,-0.0066788694821298],[0.014191935770214,-0.082462787628174,0.063515335321426],[-0.068918757140636,0.11903443932533,0.013595273718238]],[[-0.030654987320304,0.051080469042063,-0.089779704809189],[0.021680286154151,-0.041575137525797,0.078669004142284],[-0.019614659249783,0.022571036592126,0.026620669290423]],[[0.011006253771484,-0.097165651619434,-0.0049080774188042],[0.13908757269382,-0.026318056508899,-0.16816951334476],[-0.086642310023308,-0.012564877979457,-0.16719488799572]],[[-0.069329462945461,-0.060161750763655,0.024494471028447],[-0.0089451624080539,-0.019822392612696,-0.029748069122434],[-0.020404268056154,-0.068492621183395,0.019773699343204]],[[-0.096940092742443,-0.036798901855946,-0.044519569724798],[-0.082663513720036,-0.0068178311921656,-0.14416271448135],[0.19985142350197,-0.042806811630726,0.090005710721016]],[[-0.038832277059555,0.017987478524446,0.047114498913288],[-0.035141550004482,0.037104342132807,0.0051779849454761],[0.063533678650856,-0.096856772899628,0.047620918601751]],[[-0.036532204598188,-0.11782964318991,-0.032604549080133],[4.5802931708749e-05,0.026362843811512,0.013058691285551],[-0.0019552423618734,-0.051836919039488,0.035803914070129]],[[-0.0084721343591809,0.15401409566402,-0.11525741219521],[0.065288819372654,-0.041339285671711,0.12250231951475],[-0.038317576050758,0.1227472871542,-0.045546147972345]],[[-0.081497423350811,-0.10608574002981,-0.1674482524395],[-0.038230333477259,0.0302674472332,-0.023007834330201],[0.08532603085041,-0.031559575349092,-0.017582632601261]],[[-0.078223399817944,-0.065709874033928,-0.030399596318603],[-0.078837618231773,-0.015921045094728,0.048590488731861],[-0.018009996041656,0.027681484818459,-0.036576095968485]],[[0.058734189718962,-0.069990299642086,0.063919067382812],[0.057628870010376,0.037301316857338,0.0023446348495781],[0.15770614147186,0.035460732877254,-0.14436505734921]],[[0.0056569995358586,-0.14095450937748,0.079841248691082],[-0.2503744661808,-0.088508032262325,0.046316083520651],[-0.14379221200943,-0.14181990921497,0.054582919925451]],[[-0.093260392546654,0.011528670787811,-0.031727980822325],[-0.016922239214182,0.035839702934027,-0.082012251019478],[-0.08620572835207,-0.029204063117504,-0.12083747982979]],[[-0.15737065672874,-0.099671207368374,-0.057314999401569],[-0.052991289645433,0.020879935473204,0.048817407339811],[-0.030939387157559,-0.11794108897448,-0.037039339542389]],[[-0.17757001519203,0.016817213967443,-0.098082639276981],[-0.12815344333649,-0.12939630448818,0.010253683663905],[-0.084078952670097,0.01169924158603,-0.024120131507516]],[[0.010050867684186,-0.074192374944687,-0.010157850570977],[-0.13314944505692,-0.032385554164648,-0.011882890947163],[-0.0039505804888904,-0.034180127084255,0.01482043415308]],[[0.01957100071013,0.038290534168482,-0.14191465079784],[-0.10157080739737,-0.010291989892721,0.083842739462852],[-0.0788933634758,-0.1082836613059,0.036430776119232]],[[-0.065598160028458,-0.06777460873127,0.09933052957058],[-0.11876089125872,-0.045157257467508,-0.12000261992216],[-0.10956633090973,-0.031102335080504,-0.19709974527359]],[[-0.1219384521246,0.040867745876312,-0.0074425251223147],[0.013888945803046,-0.11694810539484,0.093102298676968],[-0.072036691009998,0.05137437209487,-0.040011290460825]],[[0.035572055727243,-0.0273865647614,-0.00054296036250889],[0.072612695395947,-0.022891456261277,0.040093846619129],[0.06591209769249,-0.068151883780956,0.086804792284966]],[[-0.029810475185513,-0.059950184077024,0.076261162757874],[-0.11094807088375,-0.16003452241421,-0.060789611190557],[0.1259667724371,-0.088418781757355,-0.21857351064682]],[[-0.035499699413776,-0.097486451268196,-0.068984106183052],[-0.10657925903797,0.050936210900545,0.062327034771442],[-0.092382244765759,0.033142428845167,-0.087521895766258]],[[0.044115092605352,-0.073527224361897,-0.020579464733601],[0.070988394320011,0.15591809153557,-0.050302308052778],[0.097512237727642,-0.15433269739151,0.0034934638533741]],[[0.085936576128006,0.097633175551891,0.059985671192408],[-0.0078749312087893,-0.11859222501516,0.049340486526489],[0.05901300534606,0.0027980338782072,0.014605890959501]],[[-0.14511393010616,-0.1239635720849,0.032060213387012],[0.021381104364991,-0.075132094323635,0.12368802726269],[0.12971450388432,-0.0053338096477091,0.014338161796331]],[[-0.04448327049613,0.063130766153336,0.052832692861557],[-0.091990172863007,-0.0121756400913,0.068699695169926],[0.0039713699370623,-0.065257199108601,-0.053263392299414]],[[0.13209497928619,-0.0043700612150133,0.056334733963013],[-0.081040181219578,0.010662397369742,0.031912546604872],[-0.16265077888966,-0.032692298293114,0.10566598176956]],[[0.0087197907269001,-0.062820583581924,-0.029177414253354],[-0.023919092491269,-0.0067254267632961,-0.1263115555048],[0.050182830542326,0.079433880746365,-0.0036580464802682]],[[0.066441617906094,0.081853806972504,-0.0086803250014782],[-0.029689345508814,-0.10846552252769,-0.038198702037334],[0.001207806635648,-0.0055183726362884,-0.023627130314708]],[[0.051356937736273,-0.0086306370794773,0.0278380215168],[-0.059638816863298,0.087447412312031,-0.10899844765663],[-0.04228600859642,0.0043635568581522,-0.00056658778339624]],[[0.10638745129108,0.12600459158421,-0.0099862311035395],[0.046019282191992,-0.0022174972109497,0.087618082761765],[0.046050783246756,0.040663734078407,0.12634368240833]],[[0.024952372536063,0.011416726745665,0.059337556362152],[0.11676477640867,0.08222009986639,0.029877681285143],[0.0062736445106566,-0.018202593550086,0.059790935367346]],[[-0.10280235856771,-0.028207279741764,-0.017783911898732],[0.0029754096176475,0.086171865463257,0.057850282639265],[-0.093234360218048,-0.053262934088707,0.020909169688821]],[[-0.0036473115906119,-0.040997229516506,-0.012170671485364],[-0.085873432457447,0.00053124834084883,0.071723274886608],[0.027902508154511,-0.16084325313568,-0.07534746825695]],[[0.038310475647449,-0.0094649447128177,0.11305824667215],[0.090000823140144,0.093005999922752,0.014659903012216],[-0.018461171537638,-0.024035478010774,-0.10638433694839]],[[0.09139496088028,-0.12220004200935,-0.050517041236162],[0.055189590901136,-0.043757386505604,-0.050700638443232],[-0.093009725213051,0.0099336309358478,-0.029674086719751]],[[0.033051744103432,0.039196360856295,-0.13897566497326],[-0.11967727541924,0.051198892295361,0.059683930128813],[-0.066389307379723,-0.044125929474831,0.081358440220356]],[[0.049116484820843,-0.023082073777914,-0.047457836568356],[0.058209035545588,-0.058945916593075,0.10965048521757],[0.076306842267513,0.043448183685541,-0.048570789396763]],[[0.042268201708794,-0.091022677719593,-0.062880150973797],[-0.10340341925621,0.020509241148829,-0.0044433106668293],[-0.12248366326094,0.049889490008354,-0.061454202979803]],[[-0.055618144571781,0.074030339717865,-0.040711514651775],[-0.049029674381018,-0.029746390879154,0.056046083569527],[0.0062194033525884,-0.12872563302517,0.09632558375597]],[[0.023993359878659,-0.036978475749493,0.066599018871784],[-0.0258714761585,0.031789131462574,-0.070308737456799],[0.052331689745188,-0.082333378493786,-0.019389815628529]],[[0.034069988876581,0.032157078385353,-0.0078082517720759],[-0.051442489027977,-0.21683032810688,-0.063360616564751],[-0.046364787966013,-0.074730336666107,0.13147430121899]],[[-0.037972785532475,-0.032951693981886,-0.046226885169744],[0.012388780713081,0.046590905636549,0.039552245289087],[0.027728382498026,0.031027395278215,-0.041995588690042]],[[-0.010878211818635,0.13855683803558,0.1118960827589],[-0.056716158986092,-0.0063198893330991,-0.001514331321232],[-0.032681081444025,-0.076779268682003,-0.038335338234901]],[[-0.040657926350832,-0.049953524023294,0.12014604359865],[-0.094738118350506,0.033695254474878,0.040753345936537],[-0.047749765217304,-0.019438108429313,-0.055954921990633]],[[0.039508670568466,-0.13646522164345,0.045177906751633],[-0.016086963936687,0.11252844333649,-0.039105802774429],[0.052507996559143,0.023198300972581,-0.064414411783218]],[[-0.018405601382256,-0.16607193648815,-0.1412443369627],[0.026473363861442,-0.032760642468929,-0.24631077051163],[0.066544219851494,0.014420583844185,-0.088951848447323]],[[-0.14197643101215,-0.12912110984325,-0.036542877554893],[-0.058614172041416,0.070201642811298,-0.033437211066484],[-0.031499098986387,0.11241811513901,-0.035462029278278]],[[-0.085833378136158,0.049548719078302,0.066274628043175],[0.055775549262762,-0.08276080340147,-0.038218386471272],[-0.038293175399303,-0.028435967862606,-0.015655778348446]],[[-0.10818104445934,0.063762456178665,0.081677712500095],[0.036108773201704,0.061472699046135,0.075189277529716],[-0.021380828693509,0.032194670289755,0.0225979257375]],[[-0.023423939943314,-0.024762604385614,-0.082240767776966],[-0.020296240225434,-0.13869738578796,0.21213668584824],[0.0023272207472473,0.052915420383215,-0.094069436192513]],[[-0.066708661615849,0.027186943218112,0.043946973979473],[-0.12602695822716,0.047182343900204,0.023511867970228],[-0.1549379080534,-0.15037831664085,-0.098539263010025]],[[-0.053884763270617,-0.073667921125889,-0.098778367042542],[0.04116752743721,-0.092472225427628,-0.10989940166473],[0.025110380724072,-0.051925465464592,-0.016666620969772]],[[0.00019944200175814,-0.007973943836987,-0.032402221113443],[-0.02392210252583,0.01109879091382,-0.016861140727997],[0.051376257091761,0.088257268071175,-0.050334680825472]],[[-0.069779418408871,0.065012820065022,-0.10377481579781],[-0.017680728808045,-0.034791972488165,0.016655432060361],[-0.01355622895062,-0.11806535720825,-0.040958166122437]]],[[[0.14632576704025,0.20008063316345,0.11349906772375],[-0.14980174601078,-0.18660533428192,-0.065579995512962],[-0.12008261680603,0.053857699036598,0.061637833714485]],[[0.19070440530777,-0.083990678191185,-0.17124928534031],[0.10193716734648,0.048742819577456,0.0058023235760629],[-0.17818892002106,-0.2498924434185,-0.00069428776623681]],[[-0.04680011048913,0.029909523203969,-0.074789613485336],[-0.10299932211637,0.069476127624512,-0.11694515496492],[-0.17474050819874,-0.06628642231226,-0.09065105766058]],[[-0.10675459355116,-0.2926170527935,-0.16755644977093],[-0.050823647528887,0.12440922111273,0.092307940125465],[-0.11513915657997,-0.013571684248745,0.087819956243038]],[[0.026801532134414,0.1038561090827,0.011076120659709],[-0.20223771035671,-0.07151810079813,-0.016717106103897],[0.096120603382587,0.048685178160667,-0.11146222054958]],[[0.19292859733105,0.10170654207468,0.11005557328463],[-0.068498991429806,0.097006291151047,-0.099694699048996],[-0.29348799586296,0.057149406522512,-0.11692856252193]],[[-0.084967203438282,0.097908943891525,0.13374669849873],[0.11421082913876,0.034681368619204,-0.103146225214],[-0.2283016294241,-0.15647704899311,-0.095509581267834]],[[0.016791304573417,0.078016720712185,0.043458163738251],[0.04646598175168,0.11718374490738,0.12266818434],[0.037375792860985,0.04769179970026,-0.048364162445068]],[[0.071063779294491,-0.027483463287354,-0.020478064194322],[0.014296310953796,-0.022515002638102,-0.032319143414497],[-0.0085795931518078,-0.023896489292383,-0.10115049779415]],[[-0.083345927298069,0.077620506286621,-0.0081821465864778],[-0.1219701692462,0.093674257397652,0.091109916567802],[0.058403290808201,-0.094308644533157,-0.0073588471859694]],[[0.20700001716614,-0.04378305375576,-0.085755296051502],[-0.075763493776321,-0.13273440301418,-0.15724010765553],[-0.059779282659292,-0.23216477036476,0.12891040742397]],[[-0.16019415855408,-0.092752277851105,0.10967081040144],[-0.043571688234806,-0.1409498155117,0.070585064589977],[-0.13828903436661,0.034348111599684,-0.0015203836373985]],[[-0.048950798809528,-0.010110651142895,0.053403176367283],[-0.060528911650181,-0.021665830165148,-0.043569382280111],[0.15106761455536,0.11059753596783,-0.17692914605141]],[[-0.20286428928375,0.0070453407242894,-0.025390325114131],[-0.12910087406635,-0.060916058719158,0.14223842322826],[-0.038238238543272,-0.1108333915472,0.0071996659971774]],[[0.18195183575153,0.12750712037086,-0.027008824050426],[-0.059270586818457,-0.0515415109694,-0.034794323146343],[-0.084843412041664,-0.041252329945564,-0.040880750864744]],[[0.18358725309372,-0.062366034835577,0.019323736429214],[-0.11064080148935,-0.0012217477196828,-0.116963788867],[-0.040910299867392,-0.17219378054142,0.011770216748118]],[[0.14054141938686,0.10462070256472,0.135641887784],[-0.10798259824514,0.072751872241497,0.0087042553350329],[0.090793207287788,-0.21416486799717,-0.11865285038948]],[[0.019697425886989,-0.12958627939224,-0.20472106337547],[0.13529181480408,0.028559438884258,-0.048662032932043],[-0.067139230668545,-0.055285405367613,0.058462612330914]],[[0.26880016922951,0.0052661644294858,0.22674177587032],[0.078866928815842,0.0080235926434398,-0.047805320471525],[-0.0099415648728609,-0.06560867279768,-0.13850755989552]],[[0.052389957010746,0.23236702382565,0.23518684506416],[-0.071733556687832,0.0010763234458864,0.0017607820918784],[0.026255752891302,-0.17779552936554,-0.035365018993616]],[[0.24388720095158,0.049763258546591,0.08122630417347],[-0.069339327514172,0.14411370456219,-0.07252911478281],[-0.24280026555061,0.022361822426319,0.060380086302757]],[[0.003743581706658,-0.13232371211052,-0.0839654058218],[-0.0037331390194595,0.011669982224703,0.2654704451561],[-0.22600500285625,0.084998495876789,-0.25932544469833]],[[0.065849050879478,-0.063473537564278,0.13955423235893],[0.035790458321571,-0.10688096284866,-0.2792201936245],[0.08109588176012,-0.15580081939697,0.067967742681503]],[[0.043362982571125,0.042227312922478,0.036656718701124],[-0.12287932634354,0.1355023086071,0.04163958132267],[-0.021301394328475,-0.11169105023146,-0.13347494602203]],[[-0.078554406762123,0.11730201542377,0.16575543582439],[-0.0031208239961416,-0.057276751846075,0.0032219751738012],[-0.10636115074158,-0.13776049017906,-0.13601465523243]],[[-0.10250963270664,-0.028026591986418,-0.19590494036674],[-0.12858635187149,0.050369597971439,-0.19993570446968],[-0.14980205893517,-0.24697917699814,-0.099093802273273]],[[0.12293504923582,0.1041539311409,-0.055129401385784],[-0.19626067578793,-0.026714077219367,-0.098917491734028],[-0.058780457824469,-0.018414676189423,0.11566204577684]],[[0.00085711060091853,-0.060273993760347,-0.25936812162399],[0.14507521688938,0.015032551251352,0.021920077502728],[-0.36496424674988,0.0060861767269671,0.12726639211178]],[[-0.0062262802384794,-0.069087967276573,0.055376302450895],[0.095749065279961,-0.24206586182117,-0.1678032875061],[0.10307911038399,-0.019031411036849,-0.038785077631474]],[[0.1477782279253,0.12606251239777,-0.096129305660725],[0.080623477697372,-0.1241329908371,0.013478231616318],[0.11949713528156,0.074522502720356,-0.20276869833469]],[[-0.037495084106922,-0.20513974130154,0.18249347805977],[0.033803973346949,-0.033881157636642,-0.10989630222321],[-0.13411186635494,0.033318918198347,-0.050640307366848]],[[-0.024298505857587,-0.076836079359055,0.0018246053950861],[0.26515254378319,-0.013539624400437,0.050572093576193],[-0.060713518410921,0.1324351131916,0.028445038944483]],[[0.10051982849836,0.066124700009823,0.051912382245064],[-0.027971981093287,0.10646349936724,-0.060668341815472],[0.17579609155655,0.010820490308106,-0.048627801239491]],[[-0.12136107683182,0.016355630010366,-0.018883664160967],[-0.075816713273525,-0.089193120598793,0.069460079073906],[-0.063242517411709,-0.039720460772514,-0.06700723618269]],[[-0.089554719626904,0.0073046828620136,0.06424493342638],[-0.11849495768547,-0.1407382786274,0.033833678811789],[-0.050718493759632,0.087637834250927,-0.0054818354547024]],[[0.014074828475714,-0.018897438421845,-0.020451664924622],[0.19070841372013,0.0144237075001,0.0073301773518324],[-0.060318686068058,-0.21350659430027,0.064090304076672]],[[-0.049576107412577,0.10340433567762,0.047127962112427],[-0.1128848195076,0.024046307429671,0.062976807355881],[0.079965859651566,0.069684877991676,0.037197694182396]],[[-0.28399538993835,0.037318173795938,0.093938201665878],[-0.05841751024127,-0.026725834235549,0.040788751095533],[0.018561821430922,-0.093805886805058,0.056581627577543]],[[-0.25857877731323,-0.13788464665413,-0.0082460641860962],[0.0075753387063742,-0.13587112724781,-0.05486136302352],[0.14358605444431,-0.058312557637691,0.0032042681705207]],[[-0.061531327664852,-0.049451861530542,0.064579769968987],[0.10288552194834,0.045834086835384,0.083434328436852],[-0.01424431335181,-0.020495960488915,-0.11548972129822]],[[0.17435041069984,0.080310828983784,0.057694986462593],[0.031622789800167,-0.049768552184105,0.10829422622919],[0.080581694841385,-0.16756752133369,0.044150341302156]],[[-0.058706317096949,-0.031416323035955,0.017486104741693],[-0.046811301261187,-0.021249763667583,0.11698460578918],[0.11080375313759,-0.049881964921951,-0.11830317974091]],[[-0.044559698551893,0.060987580567598,-0.058967716991901],[0.060302559286356,0.076695844531059,-0.034560199826956],[-0.25491479039192,-0.063079722225666,-0.034855470061302]],[[0.031933732330799,0.039365734905005,-0.04801831766963],[0.024010989814997,-0.022872697561979,0.070092923939228],[-0.099951587617397,0.020736534148455,0.033129476010799]],[[-0.01667963154614,0.05552552267909,-0.1476568877697],[-0.023464325815439,-0.025544138625264,-0.16277132928371],[0.01621482335031,-0.14322128891945,0.093041442334652]],[[-0.046755876392126,0.11687029153109,-0.031280219554901],[0.054953623563051,-0.035749617964029,-0.11621959507465],[-0.14180812239647,0.12020343542099,0.077001579105854]],[[0.099694177508354,-0.16391679644585,-0.039712071418762],[-0.063725240528584,0.064166322350502,-0.041724149137735],[-0.054000072181225,0.075049564242363,0.20068143308163]],[[0.082266606390476,0.10469482839108,0.07586520165205],[0.12139331549406,-0.1497525125742,0.025708531960845],[-0.11590146273375,-0.10677275806665,-0.1252368837595]],[[-0.18755586445332,0.12664119899273,0.21307551860809],[-0.12807206809521,0.037485718727112,0.045946232974529],[0.075208306312561,0.090219378471375,0.042100500315428]],[[-0.1088644489646,0.20323625206947,-0.12822164595127],[-0.039592586457729,-0.052022639662027,-0.00059188692830503],[-0.15619976818562,-0.3397065103054,0.024727508425713]],[[-0.013060736469924,-0.093804143369198,0.044091738760471],[-0.13269697129726,-0.18157941102982,0.094414785504341],[-0.069803945720196,-0.074444934725761,0.0049999770708382]],[[-0.090155571699142,0.1762780547142,0.072519242763519],[0.027181116864085,-0.28933873772621,-0.14027065038681],[-0.0013511249562725,-0.05297589674592,0.035873908549547]],[[-0.20987789332867,0.13898795843124,0.17369446158409],[0.056455887854099,-0.065003663301468,-0.065425172448158],[-0.17415526509285,-0.09014980494976,0.015284576453269]],[[-0.069886937737465,-0.0079720141366124,-0.11920015513897],[0.081410154700279,0.058200009167194,0.0068677430972457],[-0.30019930005074,-0.024579014629126,0.071780346333981]],[[0.083435848355293,-0.014361094683409,-0.20142862200737],[-0.035876210778952,0.1489786952734,-0.26664024591446],[-0.097486324608326,0.11854030191898,0.006061780732125]],[[-0.037527710199356,0.060322891920805,0.036716356873512],[0.06398744136095,-0.0024309451691806,-0.03069556504488],[-0.093373730778694,-0.18406698107719,-0.18152093887329]],[[0.059167705476284,-0.046194266527891,-0.39983540773392],[-0.30530509352684,-0.2300228625536,0.028439905494452],[-0.11609291285276,0.012337839230895,-0.12314894795418]],[[-0.2085846811533,-0.057572208344936,0.13735590875149],[-0.31882810592651,-0.1599228978157,0.10438074916601],[0.0028354309033602,-0.070229701697826,0.061779569834471]],[[0.29608100652695,-0.018090153113008,-0.10890807211399],[0.0041659222915769,-0.080940455198288,0.073342733085155],[0.080399975180626,-0.23258982598782,-0.17468978464603]],[[0.26624250411987,-0.24309176206589,0.065338730812073],[0.047173894941807,-0.026081034913659,0.046685598790646],[-0.035079654306173,-0.037281334400177,-0.10245329141617]],[[-0.14660206437111,-0.19943706691265,0.13104939460754],[-0.085117749869823,0.053702179342508,-0.0255520157516],[-0.26592990756035,-0.059915915131569,0.070413500070572]],[[-0.12674497067928,0.035407587885857,0.0168890748173],[0.026382137089968,-0.041553944349289,-0.14689940214157],[0.1989670842886,-0.275022149086,0.051940556615591]],[[-0.15938501060009,-0.10840560495853,0.035496957600117],[-0.18791554868221,-0.19419911503792,-0.18406054377556],[0.023707719519734,-0.049173586070538,-0.33039808273315]],[[0.11618229746819,-0.065902523696423,0.038900829851627],[-0.17192773520947,-0.096114628016949,-0.029106063768268],[0.060181371867657,-0.12253721058369,0.1376186311245]]],[[[-0.041836872696877,-0.051814563572407,0.0093824323266745],[-0.072078287601471,-0.044357739388943,0.045244939625263],[0.057834882289171,-0.01561036426574,0.11795463413]],[[-0.03289221227169,0.030962387099862,0.13547624647617],[-0.012133128009737,-0.0505026653409,0.094652824103832],[0.090748734772205,-0.045792061835527,-0.082467645406723]],[[0.036377109587193,0.12597700953484,0.031640361994505],[0.00082455994561315,-0.095403388142586,0.05667295306921],[-0.31286832690239,-0.013370482251048,0.11026532202959]],[[-0.12347368150949,0.052643127739429,-0.13888198137283],[-0.01964027993381,-0.018272824585438,0.1503509581089],[0.037890736013651,0.072842471301556,0.043446831405163]],[[0.02302291803062,0.059199072420597,0.09645027667284],[-0.023452879860997,0.019122650846839,0.043277371674776],[0.040532547980547,-0.15246303379536,-0.067723289132118]],[[0.083284042775631,-0.0085048265755177,-0.018255794420838],[0.089929275214672,-0.0046094991266727,0.05548233166337],[0.10755445808172,0.068597033619881,0.144346550107]],[[0.09888944029808,0.05998333543539,-0.03169547393918],[-0.17565576732159,-0.095251314342022,-0.1534695327282],[-0.13051906228065,0.0087923193350434,-0.097671441733837]],[[0.11991468071938,0.11477117240429,0.099217392504215],[-0.046513326466084,0.028064835816622,0.051861494779587],[-0.092139698565006,-0.084092281758785,0.04113581776619]],[[-0.0029156731907278,-0.0033944207243621,0.0078425630927086],[-0.024172915145755,-0.051208481192589,0.028374157845974],[-0.025726534426212,0.047744665294886,0.031224360689521]],[[0.087534122169018,0.11128801107407,0.15838128328323],[0.040944967418909,-0.044761687517166,0.0064810556359589],[-0.0072521236725152,0.046564090996981,-0.021976632997394]],[[-0.0048039644025266,-0.057434443384409,-0.064520217478275],[-0.018255921080709,0.053966298699379,0.022233489900827],[0.024532405659556,0.083717718720436,0.065368875861168]],[[0.035534720867872,-0.0094623947516084,0.082336887717247],[-0.094903782010078,-0.017233515158296,-0.094558976590633],[0.024845717474818,-0.078731708228588,-0.089872278273106]],[[0.055479623377323,0.12075806409121,0.08051373809576],[-0.033593434840441,0.099527716636658,-0.035801969468594],[0.030827287584543,-0.087053723633289,0.032623238861561]],[[-0.15688809752464,0.056190632283688,-0.050603900104761],[-0.020202750340104,-0.022601468488574,0.088217943906784],[-0.024048475548625,0.043188977986574,-0.057716965675354]],[[-0.020063884556293,0.14031162858009,-0.055160444229841],[-0.041346713900566,0.043937753885984,0.0038470164872706],[0.099997214972973,0.054027166217566,-0.0076867011375725]],[[0.067168720066547,-0.21239617466927,0.1185242459178],[0.048026323318481,-0.258021235466,-0.19257678091526],[0.12661364674568,0.025788074359298,0.069125086069107]],[[0.050974179059267,0.013942060992122,-0.084670715034008],[0.099763840436935,0.017902441322803,-0.053422875702381],[0.1695097386837,-0.18224810063839,-0.14797130227089]],[[-0.049594987183809,-0.19409780204296,-0.2622135579586],[0.10253505408764,0.023128125816584,-0.11301918327808],[0.17334860563278,-0.029926123097539,0.06672153621912]],[[-0.045169297605753,-0.14235238730907,-0.16773425042629],[0.014655402861536,0.054405707865953,-0.03269512578845],[-0.027546359226108,0.036710225045681,0.12426187098026]],[[-0.069914095103741,-0.16094969213009,0.1315136551857],[-0.098296605050564,-0.0020236514974385,-0.050763282924891],[-0.0068152574822307,-0.037591826170683,0.046226821839809]],[[0.043840359896421,-0.019163141027093,-0.040201734751463],[0.042701188474894,-0.14756520092487,0.11116922646761],[-0.20224925875664,0.077829003334045,0.01976259239018]],[[-0.023763990029693,-0.15884426236153,-0.016611473634839],[0.076647773385048,-0.05511961877346,0.0068553253076971],[-0.093637965619564,0.13639190793037,0.17309418320656]],[[-0.05298363044858,-0.10927345603704,-0.050131686031818],[-0.038446955382824,-0.029917255043983,-0.052831038832664],[0.15949572622776,0.087062701582909,0.010992543771863]],[[-0.060073852539062,-0.10414855182171,-0.087910994887352],[-0.012401456944644,0.11191105097532,-0.12792390584946],[-0.18357808887959,0.0091394660994411,0.030384993180633]],[[-0.0031644166447222,0.078576646745205,0.15143023431301],[0.11608413606882,-0.097460709512234,-0.038779027760029],[-0.17578949034214,0.034883987158537,0.18804417550564]],[[0.10138265788555,0.019103450700641,-0.16588206589222],[0.11088989675045,-0.0782735273242,-0.17609219253063],[0.13526675105095,0.068837866187096,-0.036827504634857]],[[-0.095788575708866,-0.15656425058842,0.2952623963356],[-0.22463801503181,-0.31220936775208,0.039697900414467],[-0.067038401961327,-0.24736244976521,-0.11766342073679]],[[-0.083783075213432,0.16240392625332,0.047986011952162],[-0.062020257115364,-0.052189100533724,-0.010238741524518],[0.035995647311211,0.10918368399143,-0.05904557928443]],[[0.082823410630226,-0.083966135978699,-0.016782844439149],[-0.0042696408927441,0.11302438378334,-0.069484241306782],[0.017253195866942,0.13364936411381,-0.061019983142614]],[[-0.11328282952309,0.014107258990407,-0.010677722282708],[0.073297888040543,-0.097930863499641,-0.17198774218559],[-0.034429825842381,-0.065775707364082,-0.1838296353817]],[[-0.1628515869379,0.048743903636932,-0.12187031656504],[-0.001074195606634,0.051392961293459,0.082961015403271],[-0.31660321354866,-0.084628693759441,-0.049757923930883]],[[-0.00096773658879101,0.14482581615448,0.085645005106926],[-0.11232309043407,-0.058641329407692,-0.1072003915906],[-0.11055918782949,0.083551645278931,-0.07210249453783]],[[-0.076835073530674,-0.12920616567135,0.081937521696091],[0.022889854386449,0.015547853894532,0.037314914166927],[-0.091476358473301,0.081470131874084,-0.058824799954891]],[[0.010864144191146,-0.085689067840576,-0.064989015460014],[0.055857162922621,0.017576651647687,0.14209169149399],[0.04433836042881,0.13053978979588,0.0053745955228806]],[[-0.011836722493172,-0.027454610913992,-0.013726172968745],[0.057989433407784,0.15188825130463,0.032251615077257],[0.03853302821517,0.13645718991756,0.052292056381702]],[[-0.16750028729439,0.089354887604713,0.12785628437996],[0.012952518649399,0.10419847071171,0.04386805742979],[0.14958971738815,-0.061555169522762,-0.021447194740176]],[[-0.040577609091997,0.036388199776411,0.0034296787343919],[0.070437587797642,-0.12823079526424,-0.13821965456009],[-0.14454258978367,0.016560206189752,-0.0077927196398377]],[[-0.0058176447637379,0.059689611196518,0.072297982871532],[-0.031271789222956,-0.026521813124418,-0.045251000672579],[-0.10878898203373,0.09067926555872,-0.039652664214373]],[[0.13201816380024,-0.23474824428558,-0.14814320206642],[0.12753561139107,-0.040826074779034,-0.036907449364662],[0.066059030592442,0.022149888798594,-0.091858603060246]],[[-0.092966377735138,0.02147089317441,0.037245683372021],[-0.024933194741607,-0.13859502971172,0.051613409072161],[-0.0096240770071745,-0.14734134078026,0.066088251769543]],[[0.046999111771584,-0.044165339320898,0.077754467725754],[0.14872553944588,0.0032190943602473,0.038095247000456],[-0.057284858077765,0.0067771817557514,-0.060556933283806]],[[-0.18730047345161,0.053220003843307,0.15748938918114],[-0.15036959946156,-0.10900466889143,-0.017885468900204],[-0.059703066945076,0.033322528004646,-0.17493112385273]],[[-0.31979069113731,0.07987317442894,0.043322701007128],[-0.26004186272621,0.14561876654625,-0.010183395817876],[-0.21807634830475,0.049202840775251,0.027401123195887]],[[-0.0050527579151094,0.0069287782534957,0.01060645096004],[0.054796267300844,0.063771598041058,-0.010704251006246],[-0.0093309506773949,-0.017218679189682,-0.062519922852516]],[[-0.037829659879208,-0.068683683872223,0.16986978054047],[-0.066018477082253,-0.1182447373867,0.070161625742912],[0.093555070459843,-0.090493462979794,-0.12262291461229]],[[0.098623618483543,-0.0076173199340701,0.17042645812035],[0.070859268307686,-0.13043205440044,0.17689481377602],[-0.07471427321434,-0.049056101590395,0.034917570650578]],[[0.064786158502102,0.1501299738884,0.0045942445285618],[-0.064788147807121,0.014187620952725,-0.010375219397247],[-0.10432520508766,0.064975745975971,-0.010723463259637]],[[-0.025777041912079,0.10922240465879,-0.045802738517523],[-0.079025767743587,0.013004644773901,-0.027842175215483],[-0.13173697888851,0.058131791651249,0.043458975851536]],[[0.16720043122768,0.0026144841685891,0.023751214146614],[0.042908292263746,-0.2260178476572,-0.043619368225336],[0.01051568146795,0.071274742484093,-0.022042790427804]],[[-0.038207560777664,0.063602715730667,-0.041315302252769],[-0.030358524993062,0.030162582173944,-0.0058991564437747],[-0.048386577516794,0.0087210973724723,-0.028140323236585]],[[-0.17417368292809,0.050342127680779,0.067197613418102],[-0.21620132029057,-0.059724614024162,0.0080455997958779],[-0.15719304978848,0.037457443773746,-0.064802810549736]],[[-0.15477851033211,-0.060670159757137,0.03954004496336],[0.061025649309158,0.033198960125446,0.13860408961773],[0.078238539397717,0.13482560217381,0.073496036231518]],[[-0.18835714459419,-0.02356843650341,0.046572584658861],[-0.194091334939,0.12419351190329,0.021342987194657],[-0.020613862201571,0.12171799689531,0.063447564840317]],[[0.056514196097851,-0.10741567611694,0.11316287517548],[-0.026698421686888,-0.12860482931137,0.041739389300346],[0.16672620177269,-0.15250265598297,0.031284749507904]],[[0.11617789417505,0.023255001753569,0.041315894573927],[0.048407752066851,-0.041290104389191,0.071978352963924],[0.09877548366785,-0.091596648097038,-0.029551872983575]],[[-0.041412428021431,0.20143058896065,-0.19262202084064],[-0.084285199642181,0.0083277225494385,-0.17351318895817],[0.013505708426237,0.066334344446659,-0.14371758699417]],[[0.087662175297737,0.041799005120993,-0.085313007235527],[-0.0078755775466561,0.078773692250252,-0.017292132601142],[-0.047902692109346,0.022912215441465,-0.017173016443849]],[[0.21748249232769,-0.25437316298485,-0.041148003190756],[0.1132103651762,-0.063479073345661,-0.1115281060338],[0.080900989472866,0.010139438323677,-0.080678805708885]],[[0.030095845460892,0.019790468737483,0.083973273634911],[-0.0086605232208967,-0.010873182676733,-0.017763655632734],[-0.0088040539994836,0.029860282316804,-0.049087706953287]],[[0.16948163509369,0.10716059058905,0.024400476366282],[-0.10751884430647,0.064698778092861,-0.12303895503283],[-0.097617283463478,-0.0038832554128021,-0.098566070199013]],[[0.10280591994524,-0.034724175930023,0.086756609380245],[-0.046542692929506,0.030835524201393,-0.19828568398952],[-0.07955065369606,-0.16467954218388,0.02034111507237]],[[-0.15355911850929,0.080622620880604,-0.059557788074017],[-0.07593160122633,0.1545662432909,-0.030298069119453],[-0.13957877457142,-0.11093430966139,0.21161632239819]],[[-0.02820048481226,-0.063125595450401,0.1268734484911],[-0.11031820625067,-0.13064782321453,-0.012199104763567],[-0.10667631030083,-0.022198690101504,-0.054667964577675]],[[-0.16599145531654,0.13347493112087,-0.030887469649315],[0.0079696169123054,0.064761944115162,0.062271766364574],[0.017105797305703,0.01797828823328,0.10047323256731]]],[[[0.079952083528042,0.043892424553633,0.061676010489464],[0.13530103862286,0.10035195946693,0.029181871563196],[0.09225656837225,-0.048934020102024,0.02412598952651]],[[0.15821684896946,-0.045853052288294,0.11914157867432],[-0.051105406135321,0.14348612725735,0.1733680665493],[0.0067117139697075,0.086470603942871,0.073209315538406]],[[-0.20553903281689,0.027903284877539,0.046778384596109],[-0.02549341134727,0.06831318885088,0.022441865876317],[-0.018469072878361,-0.042595084756613,-0.25117549300194]],[[-0.11131059378386,0.08344528824091,0.21704176068306],[-0.043622359633446,-0.099336624145508,0.066928915679455],[0.022000281140208,-0.02046675235033,-0.16743388772011]],[[-0.24573421478271,-0.25398808717728,0.13888309895992],[0.092716410756111,0.016013965010643,0.016549134626985],[0.10033463686705,-0.025381971150637,0.061721462756395]],[[0.044586755335331,-0.03673942387104,0.019502034410834],[-0.010190745815635,0.00072953477501869,0.075540065765381],[0.08132416754961,0.034852955490351,0.095164425671101]],[[-0.027532169595361,-0.047605391591787,0.011737904511392],[-0.055853854864836,-0.059684544801712,0.063351102173328],[0.031066371127963,0.11272604763508,0.03439736366272]],[[0.015416888520122,0.021732496097684,0.036817908287048],[-0.0629817917943,-0.0065129273571074,0.082426115870476],[-0.067130349576473,-0.0053518819622695,0.084319807589054]],[[-0.0071001700125635,-0.12666448950768,0.0008200443116948],[0.012869333848357,0.056796487420797,0.037989925593138],[-0.014034652151167,-0.022702446207404,0.016062529757619]],[[-0.24684834480286,0.11034506559372,0.059621971100569],[-0.05571360886097,0.0047580632381141,-0.015529812313616],[-0.067133992910385,-0.064106404781342,0.076957277953625]],[[-0.23906350135803,-0.09541018307209,-0.0047511328011751],[0.069129347801208,-0.00087908800924197,0.025403473526239],[0.079846315085888,-0.018543910235167,0.18697752058506]],[[-0.16125310957432,-0.045601863414049,-0.0048238816671073],[-0.096331924200058,-0.016217574477196,0.06772942841053],[-0.091756232082844,-0.036558024585247,-0.27285313606262]],[[-0.12027567625046,-0.024176370352507,-0.12340012192726],[-0.0099555421620607,0.043230157345533,0.0995998904109],[-0.082467325031757,-0.052833005785942,0.014343179762363]],[[-0.019434185698628,0.017805034294724,0.0056865578517318],[-0.12161839008331,0.012567535974085,0.06623836606741],[0.20591297745705,-0.12752571702003,0.064805716276169]],[[-0.0058047072961926,0.055718030780554,-0.13904282450676],[0.030420310795307,-0.10385269671679,0.017751693725586],[-0.03293776512146,-0.12771546840668,-0.055399414151907]],[[-0.045511543750763,0.055562205612659,0.061973799020052],[0.057140048593283,0.13051234185696,0.042794276028872],[0.0016609815647826,-0.019459653645754,0.1561768501997]],[[-0.13539266586304,-0.15304173529148,0.11385553330183],[-0.050544060766697,0.097845517098904,0.015733094885945],[0.10354633629322,-0.046513486653566,0.024664031341672]],[[-0.079289004206657,-0.088304311037064,0.068808287382126],[-0.01855911873281,0.025917524471879,-0.040601726621389],[0.083318576216698,-0.098235689103603,0.010515100322664]],[[0.076598130166531,0.065065234899521,-0.0072173993103206],[0.04742581024766,0.010212728753686,-0.012723632156849],[-0.024169836193323,0.073834411799908,0.016395477578044]],[[-0.060083705931902,0.046949733048677,-0.095489218831062],[0.0099489968270063,0.11969023197889,-0.0079733189195395],[0.10756823420525,-0.057762231677771,0.026464166119695]],[[-0.15757116675377,0.019154239445925,0.046448014676571],[0.02868895418942,0.01070733834058,-0.013573546893895],[0.030506409704685,0.00060930871404707,-0.11961049586535]],[[-0.033021837472916,-0.16644488275051,-0.066650964319706],[0.017986139282584,-0.0016903834184632,0.048181965947151],[0.030655402690172,0.17914202809334,0.084591381251812]],[[-0.21606059372425,0.021077433601022,-0.11537140607834],[-0.10011642426252,-0.012019214220345,-0.17346984148026],[-0.1796447634697,-0.022289592772722,-0.042935974895954]],[[-0.097204990684986,-0.11064011603594,0.072738975286484],[0.073248811066151,-0.10603573173285,0.086339220404625],[0.034287266433239,-0.042170614004135,-0.088184654712677]],[[-0.11737877875566,-0.32188314199448,0.04799847304821],[-0.032007277011871,0.017985802143812,0.0094546731561422],[0.067965909838676,-0.0062263458967209,-0.0065425424836576]],[[-0.18985499441624,-0.10933160036802,-0.072167128324509],[0.012716153636575,-0.12350627779961,-0.042934078723192],[-0.018713379278779,-0.072787933051586,0.13314181566238]],[[0.28429967164993,-0.20458725094795,0.0014143872540444],[0.032201200723648,0.021838514134288,-0.017452090978622],[0.031203771010041,0.12635971605778,0.039379082620144]],[[0.11617579311132,0.032327987253666,0.029078247025609],[0.045440457761288,-0.0072949333116412,-0.021413499489427],[-0.0156688708812,0.021605283021927,-0.084146179258823]],[[-0.036842938512564,-0.059588864445686,0.1072911247611],[0.012376642785966,-0.0143988924101,0.075242951512337],[-0.055209074169397,0.00053154100896791,0.016605684533715]],[[-0.13168448209763,0.17606946825981,-0.2066767513752],[0.035799276083708,-0.056325733661652,-0.074609488248825],[0.077448695898056,0.045117497444153,-0.31763499975204]],[[-0.54861885309219,-0.22578364610672,-0.11547639220953],[-0.024507747963071,0.0043019456788898,-0.14168672263622],[-0.16338041424751,-0.15506474673748,-0.23133437335491]],[[0.2223407626152,0.12248845398426,-0.062777429819107],[-0.048177748918533,-0.037145916372538,-0.078859135508537],[0.17333444952965,-0.073153741657734,-0.045556403696537]],[[0.11579690128565,0.031464319676161,0.022778337821364],[-0.046841759234667,0.0090645300224423,-0.052292387932539],[-0.029264407232404,-0.030299639329314,-0.01777190156281]],[[-0.1222767084837,0.02388216368854,0.070168681442738],[0.00062636018265039,-0.024295475333929,-0.037562500685453],[0.041441880166531,0.027857692912221,-0.10392355918884]],[[-0.019735945388675,-0.098322317004204,-0.00077823607716709],[-0.14597898721695,0.077137038111687,0.0011696205474436],[-0.1473458558321,-0.020017381757498,-0.06842514872551]],[[0.097639687359333,-0.043556198477745,0.058968879282475],[-0.053198773413897,0.036247152835131,0.082888774573803],[0.019193690270185,0.011630716733634,0.14595656096935]],[[0.05695753544569,-0.037023868411779,0.057914707809687],[0.012626792304218,-0.01330027077347,-0.071012496948242],[0.051531806588173,0.046473171561956,0.020604042336345]],[[0.060675758868456,-0.045911740511656,0.051588341593742],[0.010191184468567,-0.047773901373148,-0.033286102116108],[0.027793938294053,0.074524857103825,-0.072350442409515]],[[-0.21363265812397,0.043750382959843,-0.038068652153015],[-0.16916933655739,0.060893222689629,0.021775934845209],[0.036790497601032,0.066804908216,-0.047932382673025]],[[-0.034737259149551,-0.12397291511297,0.053777035325766],[0.0066744480282068,-0.030493702739477,0.0074477102607489],[-0.073223158717155,-0.016834367066622,0.13231401145458]],[[-0.032772108912468,0.059376958757639,0.021865518763661],[-0.026616098359227,-0.038168400526047,0.025281403213739],[0.014088132418692,-0.019521364942193,0.1642878651619]],[[0.052358716726303,-0.029192041605711,0.071617268025875],[0.096433006227016,-0.010210640728474,-0.0099642118439078],[-0.050276268273592,0.065212562680244,0.055759754031897]],[[0.054618209600449,0.0050761257298291,-0.048528529703617],[-0.078264467418194,-0.029632423073053,-0.038438778370619],[0.069867990911007,-0.013998897746205,0.11620370298624]],[[0.027848331257701,0.10189788043499,-0.042237367480993],[-0.083503156900406,-0.058874078094959,0.0067277508787811],[0.028239037841558,0.036731276661158,-0.018926253542304]],[[0.025566097348928,-0.085011079907417,0.006738449446857],[0.032126728445292,-0.081504784524441,0.028937175869942],[0.11747649312019,-0.16519975662231,-0.0049228235147893]],[[-0.087771266698837,0.023959437385201,0.0051356484182179],[0.13030011951923,-0.0057086292654276,-0.00052836391841993],[0.018046690151095,0.07306195795536,0.068047136068344]],[[-0.49936681985855,-0.12230037152767,-0.073681063950062],[0.069015741348267,0.068714804947376,0.0068224566057324],[-0.039301384240389,0.06014758720994,-0.0039402139373124]],[[0.0089290291070938,-0.034960255026817,0.074211403727531],[0.00063651771051809,0.010363485664129,-0.020684896036983],[0.17151583731174,-0.035157576203346,-0.0037671267054975]],[[-0.20342913269997,0.19382643699646,0.046314645558596],[-0.045119598507881,-0.016781201586127,0.044549129903316],[-0.13455580174923,-0.33108934760094,-0.26660203933716]],[[-0.10390836745501,-0.061097286641598,-0.075525991618633],[-0.090863436460495,-0.020678034052253,0.078849270939827],[0.12529806792736,0.032282285392284,-0.094338089227676]],[[-0.17696680128574,0.025280326604843,-0.10197842121124],[0.042462822049856,0.00057454337365925,-0.029520358890295],[0.11573215574026,0.11378214508295,0.084234498441219]],[[0.031069450080395,-0.0035081738606095,0.04086359590292],[0.049655679613352,-0.024231873452663,-0.14214468002319],[0.10739790648222,0.013208849355578,0.013290718197823]],[[0.085417039692402,0.06951280683279,0.025022320449352],[-0.028471637517214,0.073255889117718,0.0097376136109233],[-0.20142823457718,-0.054528687149286,0.071946084499359]],[[0.0052588316611946,0.013715866953135,0.076527647674084],[-0.002587647177279,-0.0027389137540013,-0.064429625868797],[0.053339369595051,0.1109926700592,0.16878797113895]],[[0.099187046289444,0.015206646174192,-0.068006813526154],[-0.0044960808008909,0.12235154956579,0.054612070322037],[-0.044441696256399,0.10747646540403,-0.055146243423223]],[[-0.11123716831207,0.041403908282518,-0.099246434867382],[-0.05269868299365,-0.022643802687526,-0.1489123404026],[-0.0028689061291516,-0.0095391105860472,-0.041732713580132]],[[-0.00016736163524911,-0.018740629777312,-0.036880981177092],[0.056091018021107,-0.062199141830206,0.082432463765144],[0.16635817289352,-0.069761507213116,-0.022005546838045]],[[-0.074366487562656,0.2034495472908,-0.12748785316944],[0.0061163590289652,-0.0032449746504426,-0.0049624894745648],[0.01133661903441,-0.017424387857318,-0.054984245449305]],[[-0.12231407314539,0.094719722867012,-0.12725907564163],[-0.17589555680752,0.058299332857132,-0.10208896547556],[-0.034984167665243,0.10275997966528,0.005176015663892]],[[-0.12919293344021,0.011997333727777,-0.16283006966114],[-0.0015419021947309,-0.030961852520704,-0.15268160402775],[0.099403783679008,0.016606148332357,-0.11545995622873]],[[-0.27838441729546,-0.039235405623913,0.0066996947862208],[-0.011220037937164,-0.0072490680031478,0.087479576468468],[-0.023449618369341,-0.093981608748436,-0.15963691473007]],[[-0.020368268713355,0.13871549069881,0.10828097909689],[0.11440610140562,-0.0030580672901124,0.08687985688448],[0.021312110126019,-0.11060344427824,0.048173919320107]],[[-0.032313104718924,-0.03185698390007,-0.09771654009819],[-0.045197010040283,-0.12941181659698,-0.15038131177425],[-0.055765554308891,-0.059609033167362,0.060538928955793]],[[-0.0073586273938417,0.091344222426414,-0.02995297499001],[0.040649104863405,0.038915004581213,-0.022172760218382],[0.0099683087319136,0.11228292435408,-0.21790826320648]]],[[[0.086539655923843,0.056558627635241,0.13769945502281],[-0.028160771355033,0.04209990054369,0.065619900822639],[0.13095910847187,-0.026805212721229,-0.039027590304613]],[[0.15972319245338,0.012313840910792,-0.056137442588806],[0.041485350579023,0.091021664440632,0.021478055045009],[0.11081586778164,0.0043911775574088,-0.030708070844412]],[[0.012093497440219,0.0058614499866962,0.13971209526062],[0.078566275537014,0.054955396801233,0.028514500707388],[0.1088136062026,0.085092946887016,0.024484060704708]],[[0.10785550624132,-0.087695963680744,0.11609616875648],[-0.0083413179963827,-0.094781771302223,0.0017273315461352],[0.070988044142723,-0.11683807522058,-0.053388588130474]],[[-0.012180453166366,-0.010006044059992,0.016064984723926],[0.055307522416115,0.13096803426743,0.062991663813591],[-0.13556769490242,-0.12952961027622,0.023369865491986]],[[0.068169973790646,0.10013221949339,-0.021753063425422],[-0.029282519593835,-0.085380733013153,-0.079645454883575],[-0.16098776459694,-0.11895926296711,0.11093693971634]],[[0.1475864648819,0.031901139765978,-0.040177077054977],[0.10317475348711,0.0018264442915097,0.090031027793884],[-0.018644098192453,-0.12484996020794,-0.15362614393234]],[[-0.020754808560014,0.065468437969685,-0.072513408958912],[-0.04946593940258,-0.054571188986301,-0.032345198094845],[-0.03145507723093,-0.0024631835985929,-0.10329177975655]],[[-0.089604221284389,-0.055272709578276,-0.094932302832603],[0.093965895473957,0.063100978732109,0.016470218077302],[0.033027518540621,0.036129970103502,0.0067198164761066]],[[-0.064529545605183,0.0048891240730882,-0.14588432013988],[-0.15809158980846,-0.088231697678566,-0.19360937178135],[-0.22954685986042,-0.061210729181767,-0.072252459824085]],[[0.06573062390089,0.039039984345436,0.028117466717958],[0.099778056144714,0.04736939445138,-0.071861587464809],[0.18152126669884,0.10942267626524,-0.052266158163548]],[[-0.063593961298466,0.10263233631849,-0.076879791915417],[-0.060841549187899,0.014742461964488,-0.028382854536176],[0.072507366538048,-0.009340412914753,0.03919168189168]],[[-0.0055909305810928,0.029420856386423,0.047518566250801],[0.024873249232769,0.10883413255215,-0.033138453960419],[-0.061860788613558,-0.11717864125967,0.2408342808485]],[[-0.011488171294332,0.024175068363547,-0.11194585263729],[-0.046902172267437,0.0038157231174409,0.067875228822231],[0.10841723531485,0.093624837696552,0.14523912966251]],[[-0.17274968326092,-0.051090203225613,0.091722555458546],[-0.026775863021612,-0.049458783119917,-0.034208748489618],[-0.016128869727254,0.13392940163612,-0.02740122191608]],[[0.060139238834381,-0.097626358270645,0.037112761288881],[-0.2270630300045,-0.022881517186761,0.031893756240606],[0.015928387641907,0.089642055332661,0.076699063181877]],[[0.018725916743279,-0.034205380827188,-0.10468054562807],[0.30525061488152,0.19012044370174,0.065609209239483],[-0.0046611628495157,0.032001934945583,0.16916991770267]],[[-0.0016087401891127,-0.20515723526478,-0.070881351828575],[-0.014876578003168,0.074042975902557,0.083408884704113],[-0.0025954146403819,-0.087395876646042,-0.010875039733946]],[[0.12677548825741,0.076377458870411,0.010429230518639],[0.10055159777403,-0.012964765541255,-0.12538211047649],[-0.081335701048374,0.078612349927425,-0.11350620537996]],[[0.11770392209291,0.12566581368446,0.083126880228519],[0.12580668926239,0.087532922625542,-0.031225550919771],[-0.057568997144699,0.049142934381962,0.0091640679165721]],[[0.0014954964863136,-0.051743593066931,0.052590101957321],[-0.063387848436832,0.042334347963333,0.0035887071862817],[0.077858589589596,0.074021734297276,0.19749565422535]],[[0.25552552938461,0.011375401169062,-0.14508844912052],[-0.032308720052242,-0.057935785502195,-0.071196958422661],[0.082161642611027,0.092652879655361,0.031746208667755]],[[0.0069947042502463,0.00039922521682456,-0.14772881567478],[-0.064979515969753,0.084882363677025,-0.11176740378141],[0.096108697354794,-0.022323928773403,0.02288768440485]],[[-0.033665981143713,-0.1113571152091,-0.044215235859156],[-0.049777336418629,0.0094626899808645,-0.18761061131954],[-0.013316144235432,0.036549728363752,0.16233059763908]],[[-0.011668228544295,0.025677897036076,-0.06119617447257],[0.11790285259485,0.14219585061073,0.066239021718502],[-0.16207174956799,0.073727525770664,-0.03667801618576]],[[-0.072478771209717,0.070146642625332,0.04145685583353],[0.038039971143007,0.015961073338985,-0.10765081644058],[0.08137272298336,-0.0026169549673796,-0.0074399705044925]],[[-0.046178538352251,-0.11870708316565,-0.014345553703606],[-0.071817353367805,-0.038831628859043,-0.010497495532036],[-0.011252922937274,0.084599308669567,0.046918302774429]],[[0.00088231608970091,0.0093335034325719,0.030353056266904],[-0.022280542179942,-0.10951092839241,0.020211769267917],[-0.17614281177521,0.019428454339504,-0.051567237824202]],[[0.020699115470052,0.010892113670707,-0.076545044779778],[-0.062217105180025,-0.24736781418324,-0.018060671165586],[0.12972858548164,0.10236106067896,0.067783676087856]],[[-0.032734859734774,-0.042438991367817,-0.029899904504418],[0.066957525908947,0.13641054928303,0.095846489071846],[0.018576869741082,0.00019750522915274,0.062919162213802]],[[-0.025288222357631,0.1030799895525,0.0229905359447],[0.20943030714989,0.021577872335911,0.021456504240632],[-0.095454446971416,0.0062033170834184,0.084106132388115]],[[-0.1274009346962,0.075076259672642,0.14668235182762],[0.10192806273699,0.0038179608527571,-0.04299396276474],[-0.078610129654408,-0.07254233956337,0.14272318780422]],[[0.11612647771835,-0.067430309951305,0.023906677961349],[0.18463270366192,0.051932994276285,-0.1132722273469],[0.04995334148407,0.0073750447481871,-0.11443614959717]],[[-0.0061734397895634,-0.02684373036027,0.073857121169567],[0.035522043704987,0.011197411455214,-0.011729974299669],[0.066110089421272,-0.059410825371742,0.098411716520786]],[[0.11870034784079,0.0018256951589137,0.095195412635803],[0.15746209025383,-0.097586490213871,-0.013072218745947],[0.12925024330616,0.12509161233902,-0.044561788439751]],[[-0.073803618550301,-0.13864597678185,-0.21582537889481],[-0.039240304380655,-0.20282891392708,-0.19680570065975],[-0.17973707616329,-0.17222101986408,0.11371198296547]],[[0.077981673181057,-0.13720142841339,-0.25547209382057],[-0.0059523824602365,-0.15530855953693,0.061713390052319],[0.025599129498005,-0.030404232442379,-0.11908570677042]],[[0.016259247437119,-0.015841210260987,0.0048609636723995],[0.080650813877583,0.027809718623757,-0.016966789960861],[0.08540190756321,0.10144586861134,0.067469231784344]],[[-0.04996594786644,0.10819886624813,0.026977648958564],[0.0072469878941774,0.058641280978918,0.086021021008492],[0.14368735253811,0.12373568117619,0.010121691972017]],[[-0.080549716949463,-0.078242123126984,0.093280531466007],[0.0099315838888288,-0.0025803758762777,-0.11551041901112],[0.048377715051174,0.12971816956997,-0.012902287766337]],[[0.057174794375896,-0.041466906666756,0.045882374048233],[0.016717713326216,0.12545503675938,0.088600523769855],[0.0074673867784441,-0.01801018230617,-0.064896538853645]],[[-0.015388463623822,0.14951238036156,0.022786896675825],[-0.0064485133625567,-0.063360281288624,-0.13538475334644],[0.1044637337327,0.055821783840656,-0.040064390748739]],[[0.077431216835976,-0.033430647104979,0.14399555325508],[0.056701522320509,0.005812203977257,0.033615525811911],[0.22332079708576,0.1832170933485,-0.012491062283516]],[[-0.039318785071373,0.038633212447166,-0.029355702921748],[0.01641558110714,-0.078197933733463,0.070023193955421],[-0.11199226975441,0.00039138240390457,-0.082608364522457]],[[0.17836193740368,0.066312745213509,-0.08301343023777],[-0.10905528068542,0.0063660610467196,-0.01972820982337],[0.015126567333937,-0.0095654195174575,-0.06086553260684]],[[0.10651997476816,-0.12443894892931,-0.032151907682419],[-0.071373701095581,0.058366991579533,0.050345931202173],[-0.08119598031044,0.074003107845783,-0.12927244603634]],[[0.1138691753149,0.08625004440546,0.059199504554272],[-0.052399519830942,-0.063274994492531,-0.22387513518333],[0.12211827933788,-0.039773132652044,-0.0065672555938363]],[[-0.039809782058001,0.1229250729084,0.028851330280304],[-0.024659261107445,0.01876313611865,-0.032484889030457],[0.14216281473637,0.058975886553526,0.0057946010492742]],[[-0.023175720125437,0.021426480263472,-0.089607454836369],[0.017009261995554,-0.0520936883986,0.15256227552891],[0.021250354126096,0.11988710612059,-0.00026474957121536]],[[-0.062608025968075,0.032837960869074,-0.046665776520967],[-0.043556410819292,-0.085001356899738,0.11832374334335],[0.046772461384535,0.048723109066486,0.088917568325996]],[[0.0054739587940276,-0.062646217644215,-0.090349860489368],[-0.072508685290813,0.11136855185032,0.015551558695734],[0.045281458646059,0.10356038808823,-0.035303954035044]],[[-0.1012984290719,-0.039938170462847,-0.015193253755569],[0.17582654953003,0.056864518672228,-0.11862622201443],[-0.0552495457232,0.12557880580425,0.012303410097957]],[[0.010851953178644,0.09684295207262,0.079150810837746],[0.0087135657668114,0.099174126982689,0.17730937898159],[-0.056379932910204,0.092773087322712,-0.11364480853081]],[[-0.065787114202976,-0.011078876443207,-0.073397845029831],[-0.040464837104082,-0.11513483524323,0.035490389913321],[0.010116790421307,0.077166423201561,-0.049020044505596]],[[-0.063485026359558,0.024483343586326,0.076897092163563],[-0.076410368084908,0.0058211302384734,0.09334672242403],[-0.026933187618852,0.057403802871704,0.00046649065916426]],[[-0.062658600509167,-0.1444177031517,0.0050898566842079],[0.12746980786324,0.026987813413143,0.1454816609621],[0.014150630682707,0.05047819390893,0.15256445109844]],[[-0.076652139425278,-0.086989469826221,0.13244254887104],[0.057593986392021,-0.075517646968365,-0.051868237555027],[0.046707302331924,0.076084434986115,0.038537092506886]],[[0.05481269583106,-0.097490146756172,-0.088209800422192],[-0.0077877659350634,-0.018734155222774,-0.0065866452641785],[-0.088787443935871,-0.069536596536636,-0.18122664093971]],[[0.10957793146372,-0.058711025863886,0.050660897046328],[-0.22828881442547,-0.18464310467243,-0.15626835823059],[0.25575259327888,0.056201688945293,-0.02916525118053]],[[-0.14301685988903,-0.058293592184782,-0.1623997092247],[0.008805968798697,-0.02557441405952,-0.016629692167044],[-0.1419440060854,-0.043646287173033,0.14281618595123]],[[0.0011239035520703,0.056469947099686,0.013911327347159],[-0.010405611246824,-0.013389253057539,-0.13863843679428],[-0.027929879724979,0.055047944188118,0.076579198241234]],[[0.0097436225041747,-0.11747764050961,0.077458076179028],[0.066201262176037,-0.026316286996007,-0.027543064206839],[0.06139512360096,-0.064745925366879,0.0019260352710262]],[[0.043987974524498,0.10428288578987,-0.0025080579798669],[0.12209419906139,0.079289056360722,-0.082110673189163],[-0.11852866411209,0.019225494936109,-0.053040254861116]],[[-0.012518728151917,-0.047008913010359,0.018704626709223],[0.065419286489487,0.037860073149204,0.03240654245019],[0.063838742673397,-0.06550133228302,-0.15118823945522]]],[[[0.044649634510279,-0.019832637161016,-0.12333573400974],[0.080498792231083,0.078242108225822,-0.03417593985796],[-0.045290496200323,0.021861812099814,-0.13558624684811]],[[-0.0036687382962555,0.0045118522830307,0.059068854898214],[0.044930260628462,-0.04491712898016,-0.080522708594799],[0.10172340273857,-0.054726466536522,0.0096064582467079]],[[-0.034878090023994,-0.03293688967824,0.076210342347622],[0.031224463135004,0.072798706591129,0.12954810261726],[-0.041251357644796,0.10037276148796,0.11586297303438]],[[0.10134112089872,0.079786203801632,0.058112233877182],[-0.044626828283072,0.040849436074495,0.16699595749378],[-0.12661013007164,0.039153151214123,0.10968352109194]],[[-0.056808855384588,0.044479787349701,-0.072011910378933],[-0.039075683802366,-0.061933368444443,0.1788621544838],[0.057104632258415,0.060301572084427,-0.013579278253019]],[[-0.040908548980951,-0.1047365218401,0.043000962585211],[0.08821278065443,0.013940206728876,0.05462259426713],[-0.19827249646187,-0.22163562476635,0.0020941353868693]],[[-0.046372570097446,-0.15375036001205,0.055115588009357],[-0.10389664769173,0.084161885082722,-0.095788776874542],[0.098462015390396,0.10968641936779,0.077000193297863]],[[-0.024219023063779,-0.016624620184302,0.025925228372216],[-0.018427763134241,-0.023591589182615,-0.070066370069981],[-0.060642130672932,-0.011001230217516,0.018452292308211]],[[-0.036944966763258,-0.061398915946484,0.076100647449493],[-0.029617538675666,0.098166227340698,-0.041546836495399],[-0.01823864877224,-0.066493093967438,-0.012035713531077]],[[0.010294797830284,-0.13593874871731,0.074092596769333],[-0.019028542563319,-0.11637222766876,-0.029458053410053],[-0.095101252198219,0.077300943434238,0.017094932496548]],[[0.12908551096916,0.0047742747701705,0.097559906542301],[0.013450669124722,-0.063291668891907,0.23398588597775],[-0.10974771529436,-0.12686102092266,0.0080463783815503]],[[0.025816025212407,0.14751400053501,-0.15733775496483],[0.1151767000556,0.049140401184559,0.092828042805195],[0.10370229929686,-0.03779973089695,-0.010630340315402]],[[-0.0064400308765471,-0.091791272163391,0.12160589545965],[0.0093943607062101,-0.20055268704891,-0.15977475047112],[-0.0051504308357835,0.091180197894573,0.075303606688976]],[[-0.040400180965662,0.094608776271343,0.14317475259304],[0.046393301337957,0.024951720610261,0.094096034765244],[-0.15657258033752,0.059262055903673,0.079102039337158]],[[0.14595495164394,0.0090340385213494,0.0185113735497],[-0.075542502105236,0.0074295564554632,0.068472437560558],[-0.1033848375082,0.04269091412425,0.15253804624081]],[[0.011807826347649,0.045640788972378,-0.056035753339529],[-0.03213968500495,0.087434686720371,0.11370421946049],[-0.072219088673592,0.021002303808928,-0.015815906226635]],[[0.058973431587219,0.015378711745143,0.11782787740231],[0.12233855575323,0.032170563936234,-0.1499225050211],[0.27687048912048,0.1832486987114,0.0903365239501]],[[-0.071379311382771,0.012958075851202,0.02482645213604],[0.15493042767048,-0.054412376135588,-0.16687862575054],[0.01995881088078,0.032285884022713,0.074922122061253]],[[0.081022769212723,-0.057419892400503,-0.091479495167732],[0.00099863274954259,-0.081386342644691,-0.045550938695669],[0.046480003744364,0.1295361071825,-0.015569072216749]],[[-0.043044853955507,0.079518377780914,-0.054659213870764],[-0.092690229415894,0.070615746080875,-0.11025416851044],[-0.11856672167778,-0.1424525231123,0.025474658235908]],[[0.066949643194675,-0.10071457922459,0.059334188699722],[-0.030326103791595,-0.011338576674461,-0.2219091206789],[-0.0018426219467074,0.040518507361412,-0.048908166587353]],[[0.027038237079978,0.069185189902782,-0.01711118221283],[0.094746224582195,0.033544238656759,-0.074807532131672],[-0.087714143097401,-0.0017446128185838,-0.057331785559654]],[[-0.047260981053114,0.060095451772213,0.10234555602074],[-0.069922991096973,-0.022302713245153,0.068760335445404],[-0.029477877542377,-0.13623921573162,-0.062856785953045]],[[0.11663898825645,0.031485684216022,-0.02621735073626],[-0.037420049309731,0.015014011412859,0.10221534222364],[-0.016555598005652,-0.0130610531196,0.018305217847228]],[[0.23151251673698,0.039709933102131,0.0020005363039672],[-0.078054763376713,0.12287854403257,0.065624482929707],[-0.030766390264034,0.020496135577559,-0.064636223018169]],[[0.10726732760668,-0.11488793045282,-0.16813886165619],[0.050123803317547,0.074188426136971,-0.064263910055161],[0.14461769163609,0.22950580716133,0.039759203791618]],[[-0.083693519234657,0.040092468261719,-0.093800514936447],[-0.071066923439503,-0.018728222697973,-0.087804205715656],[-0.01180973649025,0.026367424055934,-0.030033690854907]],[[0.099520340561867,-0.13027369976044,0.087013818323612],[-0.030881000682712,-0.087967790663242,0.018425576388836],[0.039004888385534,0.045188035815954,0.034052729606628]],[[0.006015844643116,-0.21289007365704,0.0031207413412631],[-0.067070193588734,0.0048794005997479,0.076375067234039],[-0.14446730911732,-0.12537384033203,-0.13832034170628]],[[-0.070512279868126,-0.061053264886141,-0.01591370254755],[0.043038304895163,-0.051281489431858,-0.024998784065247],[0.035219397395849,-0.045370168983936,0.015592481940985]],[[0.037902526557446,-0.064305558800697,0.017026195302606],[0.062851995229721,-0.10949139297009,-0.029780285432935],[0.16398577392101,0.11049543321133,0.019702848047018]],[[-0.022773066535592,0.15004253387451,0.037853091955185],[-0.045553594827652,-0.0097120739519596,-0.03807669505477],[0.10769083350897,0.07161995023489,-0.053673028945923]],[[0.081646487116814,-0.15408450365067,0.06754408031702],[-0.038897555321455,-0.0025197619106621,-0.053232435137033],[-0.12540143728256,0.094993762671947,-0.048671342432499]],[[-0.0020589614287019,-0.075867727398872,0.015994278714061],[-0.038422472774982,-0.020204789936543,0.0087747815996408],[-0.0001322508614976,0.17094472050667,0.065378412604332]],[[0.046711768954992,-0.060811527073383,0.028156973421574],[-0.034320387989283,-0.035512652248144,-0.1423586755991],[0.074048057198524,-0.14386919140816,-0.069191798567772]],[[-0.19463090598583,0.12999857962132,0.051988124847412],[0.072050422430038,0.068084836006165,0.039000246673822],[0.064478531479836,-0.0053398236632347,0.091216400265694]],[[-0.0060488022863865,0.045311536639929,-0.0052153267897666],[-0.011313456110656,-0.023233838379383,-0.067830041050911],[0.029947064816952,0.0039480580016971,0.04466986656189]],[[0.055348593741655,0.10390301048756,0.11136095225811],[0.14492854475975,0.041067946702242,0.20701131224632],[0.011433504521847,0.004247987177223,-0.18752436339855]],[[-0.077056758105755,-0.14856688678265,-0.13265486061573],[0.037923660129309,0.12686498463154,-0.066706299781799],[0.14022721350193,0.091815963387489,-0.04080131649971]],[[-0.024660900235176,0.14226180315018,-0.090430654585361],[0.052162930369377,-0.042853660881519,0.054409727454185],[0.00919543299824,0.000534899008926,-0.252904266119]],[[0.066539138555527,0.17336396872997,0.10424694418907],[-0.057612143456936,0.035185612738132,0.043643273413181],[-0.10806262493134,-0.063526257872581,-0.071417883038521]],[[-0.06825977563858,-0.02124010771513,-0.15232902765274],[-0.028172738850117,-0.1228761523962,-0.076020076870918],[0.039534196257591,0.035608235746622,0.11455706506968]],[[-0.023185800760984,-0.12636555731297,0.021424880251288],[0.095548056066036,-0.16669343411922,0.035788029432297],[-0.11455702036619,-0.11931464076042,-0.018894461914897]],[[-0.076821342110634,-0.12377825379372,-0.039990242570639],[-0.0079145338386297,-0.048978988081217,-0.034760504961014],[0.075124278664589,0.037175565958023,-0.008214290253818]],[[0.076571188867092,0.032688777893782,0.20887112617493],[0.12348107993603,0.083905279636383,0.088519170880318],[-0.10230403393507,0.0097462991252542,-0.027986537665129]],[[-0.012374692596495,0.088986232876778,-0.0098763843998313],[0.019365729764104,0.052801135927439,0.11346554011106],[0.015857456251979,0.0096624540165067,-0.041417639702559]],[[-0.019207753241062,-0.086887687444687,-0.12154247611761],[-0.013578747399151,0.05891602113843,-0.040267378091812],[-0.083640143275261,-0.067340344190598,-0.066742613911629]],[[-0.10892151296139,-0.062880128622055,-0.061634283512831],[0.007511543110013,-0.061624106019735,0.12470792979002],[0.010257045738399,-0.064276732504368,-0.054235503077507]],[[-0.10110834985971,-0.1341467499733,0.017518937587738],[-0.0072802826762199,0.019140884280205,-0.011769314296544],[-0.078932620584965,0.065592743456364,0.000309844937874]],[[-0.010396218858659,0.06262694299221,0.014730070717633],[-0.11970994621515,-0.017827378585935,0.017162092030048],[-0.034986883401871,-0.036947272717953,0.021984586492181]],[[-0.078556902706623,0.026735952124,0.016063155606389],[0.016585094854236,0.035707477480173,0.05714238807559],[0.07145931571722,-0.10889805108309,-0.12349346280098]],[[0.012673019431531,0.038349561393261,0.057095494121313],[-0.035823933780193,0.1048978716135,0.10464033484459],[-0.037641696631908,-0.1590613424778,-0.056432779878378]],[[0.034505944699049,0.1124104782939,0.061076045036316],[-0.20068456232548,0.012614712119102,-0.059132248163223],[-0.028299832716584,-0.05416826531291,-0.19023253023624]],[[-0.096125394105911,0.045038495212793,0.083696268498898],[0.1106119081378,-0.12248950451612,0.19511760771275],[0.028724754229188,-0.028582418337464,0.024587493389845]],[[0.0064475759863853,-0.058763440698385,0.097907245159149],[0.14991103112698,0.13931034505367,0.040601897984743],[-0.19928202033043,-0.11099061369896,-0.21170347929001]],[[-0.017808772623539,-0.16588823497295,-0.021537117660046],[-0.00075826805550605,0.07910343259573,0.026234162971377],[-0.03488602489233,0.077339552342892,0.071154527366161]],[[-0.17873978614807,-0.048496302217245,0.17102490365505],[0.060456201434135,0.091445758938789,0.076359562575817],[0.058363400399685,0.080761797726154,0.074307024478912]],[[-0.035134557634592,0.0095246862620115,0.053286962211132],[-0.016819190233946,-0.11221417039633,0.025151578709483],[-0.033220432698727,-0.015762835741043,0.0022565480321646]],[[0.074767515063286,-0.093351259827614,0.14904677867889],[-0.021575795486569,0.050446499139071,0.14607228338718],[-0.08482051640749,-0.077255100011826,0.14159908890724]],[[0.071893572807312,0.068865083158016,0.037924353033304],[-0.20366993546486,0.035631034523249,0.01589884608984],[-0.15938881039619,0.029055455699563,-0.0014925593277439]],[[-0.074436791241169,-0.029988178983331,-0.050310719758272],[-0.053484208881855,0.0067645534873009,0.017335752025247],[0.034719206392765,0.031214695423841,0.094836540520191]],[[0.030429108068347,-0.15185309946537,0.079023562371731],[0.14071995019913,0.087894111871719,0.18767537176609],[-0.097297340631485,-0.14709697663784,0.050988089293242]],[[0.053544949740171,-0.0099387848749757,0.016780933365226],[-0.046017333865166,-0.1055261567235,-0.14688743650913],[0.11308567970991,-0.084780395030975,-0.047377306967974]],[[-0.06831955909729,0.11178836226463,0.21386820077896],[0.18553696572781,0.065230712294579,0.04413865506649],[-0.10421067476273,0.0023560777772218,-0.0032554452773184]]],[[[0.1805058568716,0.052148532122374,-0.11001577973366],[0.051730304956436,-0.0040589463897049,-0.18608139455318],[0.0044854865409434,-0.0012796717928723,-0.058261170983315]],[[-0.025536632165313,-0.075680762529373,-0.026072802022099],[0.18643099069595,0.22054500877857,0.085170596837997],[-0.28924429416656,-0.15371868014336,0.090431347489357]],[[0.030756929889321,-0.014981427229941,0.013873512856662],[0.049207087606192,0.026902785524726,-0.099152028560638],[0.14514143764973,0.048227917402983,-0.17648382484913]],[[-0.0065266066230834,0.060034811496735,0.22421890497208],[-0.038162432610989,-0.090869285166264,0.048599574714899],[0.17160277068615,0.065452225506306,0.053868982940912]],[[-0.079432412981987,0.013671197928488,0.051684085279703],[-0.093647450208664,-0.031302336603403,0.1092312708497],[0.15409773588181,-0.0015160682378337,0.036636084318161]],[[-0.11852443963289,-0.081998988986015,0.10689455270767],[0.0074860481545329,0.043326918035746,0.092016115784645],[-0.15858174860477,-0.13216133415699,0.017183810472488]],[[-0.080718442797661,0.037908505648375,-0.13825991749763],[-0.022914864122868,0.0039635058492422,-0.20879210531712],[-0.0019216497894377,0.10572876781225,-0.27618631720543]],[[0.049507115036249,-0.035594828426838,0.056186780333519],[-0.063356682658195,-0.023307241499424,-0.0980608984828],[0.080189645290375,-0.024807896465063,-0.085073955357075]],[[0.011738313362002,0.051878474652767,-0.036472227424383],[-0.08066464215517,-0.014288664795458,-0.0070127947255969],[-0.084516786038876,-0.03374570608139,0.039965018630028]],[[-0.15528427064419,0.050816927105188,-0.0017386329127476],[0.087116718292236,-0.0088811339810491,0.0059438473545015],[0.045568320900202,0.088223077356815,0.0070878327824175]],[[0.065158195793629,0.19814813137054,0.16740317642689],[-0.074439287185669,0.024854199960828,-0.094134427607059],[0.1509250998497,0.087636537849903,0.012234403751791]],[[-0.032688975334167,0.044003289192915,-0.01130001898855],[0.088364399969578,0.063712038099766,-0.015924585983157],[-0.014451113529503,0.09072358161211,0.065463252365589]],[[-0.1247548609972,0.041933003813028,-0.12668605148792],[0.049865879118443,0.13681095838547,0.076584160327911],[0.042028654366732,-0.15790644288063,0.056869260966778]],[[-0.034027695655823,0.055162560194731,-0.043440658599138],[-0.091842599213123,0.047508418560028,0.029915377497673],[0.069970704615116,0.021246425807476,0.022825788706541]],[[-0.047799237072468,0.011535030789673,-0.012462346814573],[-0.098560117185116,-0.063593752682209,0.028601501137018],[-0.13688533008099,0.19455014169216,-0.049616187810898]],[[0.10967592149973,0.043265409767628,0.21675848960876],[0.064346186816692,0.11545490473509,0.12335883080959],[-0.056392278522253,0.030324190855026,-0.080576568841934]],[[-0.16791546344757,0.046173803508282,-0.056199390441179],[0.0046113841235638,-0.018232638016343,-0.0072246054187417],[-0.0037938097957522,-0.10259624570608,-0.015218848362565]],[[-0.062409441918135,-0.16157482564449,0.038130488246679],[0.037211317569017,0.055747371166945,0.075104139745235],[-0.1897608935833,-0.03161259368062,-0.084861263632774]],[[0.071688659489155,-0.071842528879642,0.073895968496799],[-0.070786364376545,-0.12771917879581,0.026846000924706],[0.13945619761944,-0.0062305415049195,0.058987654745579]],[[0.16310338675976,-0.068510413169861,-0.029808165505528],[-0.010330250486732,0.058625590056181,-0.13386623561382],[0.078455187380314,0.04839525744319,0.0096809854730964]],[[-0.013736313208938,-0.015157410874963,-0.022154722362757],[-0.12937274575233,0.053119670599699,-0.025236710906029],[-0.034673411399126,0.053744714707136,0.034473538398743]],[[-0.054359700530767,0.065178319811821,0.17526109516621],[-0.032802678644657,0.054442748427391,-0.10568571835756],[-0.06888510286808,0.0058993184939027,0.084860138595104]],[[-0.053086571395397,0.032575733959675,0.15085379779339],[-0.19645781815052,0.024765077978373,-0.050973739475012],[-0.00160903041251,0.0088495323434472,0.030290111899376]],[[0.10168021917343,0.014985864982009,0.15348064899445],[0.064496837556362,0.015107321552932,0.032909698784351],[0.0026545394212008,-0.10655600577593,0.078079514205456]],[[0.029453419148922,0.067605637013912,-0.11432790756226],[-0.17755426466465,0.062407594174147,-0.14994767308235],[0.01922551728785,0.02741234190762,-0.065562002360821]],[[-0.19569331407547,-0.18584488332272,0.052048582583666],[-0.20835688710213,-0.033116653561592,0.029299816116691],[-0.019500989466906,0.032910626381636,-0.082641787827015]],[[-0.09663750231266,0.014752724207938,-0.058988455682993],[0.014701855368912,-0.01879177056253,0.074325814843178],[0.0057290522381663,-0.0573341101408,-0.075484909117222]],[[-0.068261697888374,0.067773662507534,0.02893478795886],[-0.074341133236885,-0.1271994560957,-0.0020404946990311],[0.043308336287737,0.046004172414541,-0.037783212959766]],[[0.17641898989677,0.11670409142971,-0.13811798393726],[0.024490546435118,-0.22620132565498,-0.063861384987831],[0.12976531684399,-0.0010695866076276,0.11615800857544]],[[-0.12670995295048,0.011439833790064,0.094549492001534],[-0.15457959473133,-0.04849611967802,-0.038607448339462],[-0.075417742133141,0.11171812564135,-0.020093876868486]],[[-0.034610379487276,-0.072398841381073,-0.01329006254673],[-0.04679224640131,0.086125195026398,-0.075806945562363],[-0.074173763394356,-0.0021781765390188,-0.023172056302428]],[[0.060829039663076,0.12289979308844,0.10503466427326],[0.10122726112604,-0.046254254877567,-0.066445559263229],[0.1693926602602,-0.069030173122883,-0.16651453077793]],[[0.079409293830395,-0.065975412726402,0.093293584883213],[-0.015806023031473,-0.15497419238091,0.012897687964141],[0.055590141564608,-0.11534643918276,-0.037368770688772]],[[-0.11385169625282,-0.045244801789522,-0.022174598649144],[-0.078297592699528,0.04341309890151,-0.019060585647821],[-0.035782437771559,0.086445055902004,0.088763929903507]],[[0.16813097894192,-0.012436958961189,-0.02380209416151],[0.00031694257631898,-0.094432830810547,0.064106680452824],[-0.0025580192450434,-0.21930669248104,0.1254800260067]],[[-0.047538686543703,0.029382644221187,0.078566066920757],[-0.106236115098,0.031269103288651,-0.044319961220026],[-0.024492561817169,0.059369087219238,-0.085442841053009]],[[0.030542526394129,0.11838131397963,-0.10213494300842],[-0.023417459800839,0.023920027539134,-0.063145950436592],[0.019387459382415,0.020477373152971,-0.15065196156502]],[[0.075617715716362,0.11413083225489,0.21223032474518],[-0.14937616884708,-0.041471529752016,0.049695584923029],[-0.034977894276381,0.029095036908984,0.10655653476715]],[[-0.096056871116161,-0.024461289867759,0.037326421588659],[0.085148185491562,-0.018521195277572,-0.12107903510332],[0.017446000128984,0.10013961791992,0.055670421570539]],[[0.071777731180191,0.044817201793194,0.012003363110125],[-0.066355764865875,-0.024627629667521,-0.031468369066715],[0.0037040391471237,-0.049817245453596,0.011680877767503]],[[-0.11189003288746,-0.13726216554642,0.036461986601353],[0.036591354757547,-0.020606461912394,-0.021316133439541],[-0.07466171681881,-0.062407426536083,0.21998435258865]],[[0.16331921517849,-0.033377900719643,0.024419695138931],[0.02016837336123,0.0037317983806133,0.080542400479317],[0.10992946475744,0.011770868673921,-0.05456505343318]],[[0.019696891307831,0.0084106000140309,0.17989395558834],[-0.045604173094034,-0.076360322535038,0.14787998795509],[-0.029791262000799,0.14928448200226,-0.077109478414059]],[[-0.1432242244482,-0.10085506737232,0.010158114135265],[-0.0012965387431905,0.062898814678192,0.019291710108519],[-0.051840297877789,-0.044590175151825,0.049089308828115]],[[0.030902491882443,-0.043372388929129,-0.09258583933115],[0.076630346477032,0.020244041457772,-0.10185124725103],[0.065474167466164,-0.047569766640663,-0.070707120001316]],[[0.017825696617365,-0.0606599599123,0.040456958115101],[0.024662578478456,-0.039595305919647,0.036144841462374],[0.18696486949921,-0.16232307255268,-0.038766499608755]],[[-0.065596327185631,-0.07670683413744,-0.067610695958138],[0.062215331941843,0.013237295672297,-0.018021702766418],[0.059493273496628,0.13358978927135,0.10672457516193]],[[-0.030792932957411,-0.050847519189119,-0.083007536828518],[0.0053390669636428,-0.054802536964417,0.10612920671701],[-0.070267423987389,0.044282667338848,0.10719411075115]],[[-0.07105053961277,-0.14574021100998,-0.15429289638996],[0.12831412255764,0.093617059290409,0.016412518918514],[0.15473429858685,-0.2036285251379,0.091633185744286]],[[0.022695368155837,0.024952851235867,0.20185340940952],[-0.084509767591953,-0.038532089442015,0.006730034481734],[-0.085430137813091,0.071287333965302,-0.0013293880037963]],[[0.027705060318112,0.1137735620141,0.015101410448551],[-0.052828196436167,0.085118986666203,0.014392797835171],[-0.17435470223427,-0.078065857291222,0.079365387558937]],[[-0.044074062258005,-0.083269223570824,0.10797081142664],[0.09385934472084,0.11394916474819,0.026398116722703],[-0.13244368135929,-0.036946263164282,0.11964004486799]],[[0.0076287793926895,0.12044771015644,0.018430126830935],[0.12256171554327,0.01951820589602,0.029560837894678],[-0.080763228237629,-0.11198649555445,-0.10375100374222]],[[-0.071294590830803,-0.0046202167868614,0.053088657557964],[-0.11175590008497,0.19422739744186,0.04029705747962],[-0.13128432631493,-0.055375002324581,0.23557668924332]],[[-0.016068771481514,0.03017608448863,0.30138358473778],[-0.00078722980106249,0.063563615083694,0.15166671574116],[0.030209869146347,0.0029136354569346,-0.0092770224437118]],[[0.10285388678312,0.10431607067585,0.18346321582794],[-0.051739610731602,-0.11208058893681,-0.17188547551632],[0.058869149535894,0.038229372352362,-0.0052846944890916]],[[0.012157598510385,-0.017346063628793,-0.060970436781645],[-0.013743042014539,0.019158456474543,0.091584160923958],[-0.039988067001104,-0.088450506329536,0.21133132278919]],[[0.020295782014728,-0.14860707521439,-0.084859259426594],[-0.038918931037188,0.18159405887127,0.030801396816969],[-0.0092631736770272,0.028980383649468,0.085282698273659]],[[0.022190408781171,-0.10471395403147,0.2312911003828],[-0.058781418949366,0.0051166703924537,-0.02688548900187],[-0.028764497488737,-0.022837270051241,-0.0072765308432281]],[[-0.062335945665836,0.01848940551281,-0.18758684396744],[0.013095113448799,0.038542319089174,0.13725025951862],[-0.06145603582263,-0.069012157618999,0.11651381850243]],[[-0.11077493429184,0.016300041228533,-0.0095089487731457],[0.049852836877108,0.059076435863972,0.065412200987339],[-0.068170346319675,-0.00053221784764901,0.034371562302113]],[[-0.0034739256370813,0.0025067310780287,0.077716782689095],[0.071173682808876,0.0097350031137466,0.013958530500531],[0.073617480695248,0.16379274427891,-0.019327573478222]],[[-0.0082892216742039,-0.082648850977421,-0.037389289587736],[-0.089965738356113,-0.0086063500493765,0.11920621246099],[0.012058924883604,0.044604420661926,0.0024721110239625]],[[-0.0022610635496676,-0.042342517524958,0.13324399292469],[0.17818300426006,-0.086932554841042,0.044423341751099],[0.026627369225025,0.050148352980614,0.10820316523314]]],[[[-0.10663635283709,0.08078046143055,-0.037581633776426],[0.23940390348434,0.072215653955936,0.13276065886021],[-0.22787892818451,-0.26121452450752,-0.12392720580101]],[[0.11650706827641,0.1284004598856,-0.057299550622702],[0.00068793719401583,-0.069942608475685,-0.06417540460825],[0.013524599373341,0.10367786884308,-0.0050962115637958]],[[-0.057424776256084,0.017632551491261,0.01574495062232],[0.063418202102184,-0.21128064393997,0.11093328148127],[-7.5116913649254e-05,-0.14212512969971,-0.23698461055756]],[[0.089429996907711,0.071453422307968,-0.16349443793297],[0.019570691511035,-0.016047639772296,-0.12817898392677],[-0.10663139820099,0.15384876728058,-0.095035441219807]],[[-0.15461251139641,-0.081353902816772,0.089095786213875],[0.13382667303085,-0.1185305416584,-0.017777845263481],[0.064361356198788,0.094517767429352,0.070466198027134]],[[0.095600694417953,0.038232274353504,-0.11460413038731],[-0.077756278216839,0.088833786547184,-0.0014389049028978],[-0.13386023044586,-0.21119031310081,-0.11716301739216]],[[0.066816188395023,-0.012151590548456,0.041001696139574],[-0.057177733629942,-0.052113350480795,-0.051030773669481],[-0.073375262320042,-0.10291182994843,-0.19493874907494]],[[0.063548311591148,-0.015567031688988,0.04646323248744],[-0.05934190005064,0.099433660507202,-0.078047044575214],[-0.00086686387658119,0.040981210768223,-0.039261735975742]],[[0.015499901026487,0.1196194216609,0.05757100880146],[-0.04701679572463,0.01841345988214,-0.069065846502781],[-0.075003378093243,-0.0037440089508891,-0.051762737333775]],[[0.098806269466877,0.094769142568111,-0.012744659557939],[0.065332151949406,-0.0046216021291912,0.072717167437077],[0.08403155952692,-0.22808194160461,-0.17811524868011]],[[-0.020137058570981,-0.035754352807999,-0.015704778954387],[-0.064395144581795,0.077122054994106,-0.017766429111362],[-0.070837087929249,0.10599116235971,-0.16512823104858]],[[-0.021069264039397,-0.0046691000461578,-0.1565780043602],[0.013454280793667,-0.057998780161142,-0.058944381773472],[-0.096542730927467,0.028963085263968,-0.019651729613543]],[[0.0056328820064664,0.13148945569992,0.20711034536362],[0.015320866368711,0.06199437379837,0.045062314718962],[-0.23028425872326,-0.020408615469933,-0.064509473741055]],[[0.036916129291058,0.0013290039496496,0.17106693983078],[-0.065270617604256,0.035104177892208,0.042273480445147],[0.042621597647667,-0.045673977583647,0.0097870547324419]],[[0.015552791766822,-0.053273282945156,0.062004752457142],[-0.027441432699561,0.16378925740719,0.11808057129383],[-0.081823326647282,-0.0036380300298333,-0.015094206668437]],[[-0.093990743160248,0.11845672130585,0.11974123120308],[0.0069374484010041,-0.044159024953842,-0.042111407965422],[-0.040829055011272,-0.055977996438742,0.0029172485228628]],[[-0.058189664036036,-0.13469563424587,0.15818484127522],[0.11978250741959,-0.030972465872765,0.067434936761856],[0.1020962074399,-0.11582110822201,0.10231191664934]],[[0.092360682785511,0.032732341438532,0.029156969860196],[-0.016808634623885,0.012982304207981,-0.15159356594086],[0.1198660954833,-0.10124855488539,0.093696512281895]],[[-0.14415414631367,-0.040210817009211,0.12226758152246],[0.16334083676338,0.11074887216091,-0.0056679300032556],[0.018634418025613,0.10370487719774,0.042119696736336]],[[0.19739417731762,0.002774991793558,-0.024763090535998],[-0.17315495014191,-0.085176669061184,-0.10930874943733],[-0.0015513808466494,-0.005107460077852,-0.24093499779701]],[[-0.032279726117849,-0.064301140606403,0.18470656871796],[0.043709926307201,0.092102415859699,-0.19720317423344],[0.058510031551123,0.12496513873339,0.048221629112959]],[[-0.17332495748997,-0.20710554718971,0.078605100512505],[-0.069592155516148,-0.13614025712013,-0.10043457150459],[-0.14246948063374,0.053158883005381,-0.16274350881577]],[[-0.27552103996277,0.023190397769213,0.00084851973224431],[-0.04832411184907,-0.0537985637784,-0.075990602374077],[-0.049714714288712,-0.055485241115093,0.0089192325249314]],[[0.058446787297726,0.13637414574623,0.11801442503929],[-0.1142211407423,-0.25288665294647,-0.16157823801041],[-0.10414177924395,-0.080057643353939,-0.21568444371223]],[[0.075296327471733,0.060889475047588,-0.051775015890598],[0.041339613497257,-0.071737058460712,-0.076294094324112],[0.0186115372926,0.099044226109982,-0.0026582397986203]],[[-0.038411971181631,-0.093477584421635,-0.054714512079954],[-0.0061517809517682,0.043785989284515,-0.052672512829304],[-0.015125077217817,-0.009659256786108,-0.040021706372499]],[[0.087534531950951,0.03572653606534,0.04751443862915],[-0.22032630443573,-0.21003575623035,0.0086407819762826],[0.065242037177086,0.048044286668301,-0.086370415985584]],[[0.0064718467183411,-0.1010926887393,0.063319928944111],[-0.12770916521549,-0.061456859111786,0.014419662766159],[-0.12523576617241,-0.1050176396966,-0.15027530491352]],[[-0.012238420546055,-0.011119873262942,-0.08018484711647],[-0.0059564942494035,0.15818752348423,-0.094884291291237],[0.077049180865288,0.10268938541412,0.098336018621922]],[[-0.032397501170635,0.11600866913795,0.014656819403172],[0.037889838218689,-0.10540592670441,-0.083473883569241],[0.024538617581129,-0.21607010066509,0.10064183175564]],[[-0.10644334554672,-0.012602999806404,0.20508264005184],[-0.044510949403048,0.036184404045343,0.050479020923376],[-0.1671998500824,-0.11614394932985,-0.0054814997129142]],[[-0.085618570446968,0.21881902217865,-0.34711337089539],[0.026416013017297,-0.031452607363462,-0.019987735897303],[0.16937284171581,0.19499634206295,-0.14367707073689]],[[-0.061070322990417,0.033506721258163,0.017292538657784],[-0.12446338683367,-0.10027231276035,-0.066554680466652],[-0.040522783994675,0.068961322307587,0.021161133423448]],[[-0.14429891109467,-0.18036283552647,-0.025003559887409],[-0.025729414075613,-0.1175679191947,-0.0344019792974],[-0.031328238546848,0.09588972479105,-0.062049895524979]],[[-0.15453304350376,-0.085500128567219,0.016632325947285],[-0.16564105451107,0.073515869677067,-0.063754178583622],[-0.10601671040058,-0.19854746758938,-0.044398233294487]],[[0.026668783277273,-0.0072821923531592,0.15333668887615],[-0.1707166582346,0.012416263110936,0.054983835667372],[-0.11487639695406,-0.057626605033875,-0.11505649238825]],[[0.011521517299116,0.0049972329288721,0.0053068362176418],[-0.032673988491297,-0.13925376534462,-0.0076514417305589],[0.029023922979832,-0.074160531163216,-0.040688168257475]],[[0.084433026611805,0.1481885612011,0.17778538167477],[0.022531716153026,-0.057163145393133,-0.12529110908508],[-0.081114277243614,0.14141547679901,-0.0055997259914875]],[[0.12818859517574,-0.063163369894028,0.060458246618509],[-0.12215793132782,0.027305327355862,0.13342761993408],[-0.034965451806784,-0.11464316397905,-0.0073016136884689]],[[0.095962733030319,0.084842219948769,-0.050569597631693],[-0.062487676739693,0.14931194484234,-0.034373849630356],[-0.017631728202105,-0.04954607412219,0.021194335073233]],[[0.044667191803455,-0.0017947686137632,-0.057710465043783],[0.12358507514,-0.025919023901224,-0.11137480288744],[0.14123585820198,0.12015387415886,0.086438424885273]],[[-0.076020784676075,0.12365423887968,0.087273627519608],[-0.01457588840276,0.080289423465729,0.03455525636673],[-0.052262514829636,-0.19517022371292,0.078669331967831]],[[-0.006766689941287,-0.0098907425999641,0.02856208384037],[-0.10949784517288,0.032092351466417,-0.12083127349615],[0.19428990781307,0.061008244752884,-0.095525532960892]],[[0.028751976788044,-0.0078857243061066,0.032441403716803],[-0.003982930444181,0.0034030482638627,0.035894434899092],[0.020743666216731,-0.11972130835056,0.033699657768011]],[[0.076760329306126,0.038370449095964,-0.16930404305458],[0.038516163825989,-0.092515252530575,-0.080736704170704],[0.036127436906099,0.18680585920811,-0.069805696606636]],[[0.0049974932335317,-0.062260039150715,0.20538608729839],[-0.14689461886883,0.024371791630983,-0.0022653115447611],[-0.22641535103321,-0.099423050880432,-0.22657103836536]],[[-0.067524515092373,-0.098446518182755,-0.029306201264262],[0.025189612060785,0.083289742469788,-0.03447100520134],[-0.11982040852308,-0.047266609966755,-0.07833781093359]],[[0.033865459263325,-0.085811726748943,0.047549661248922],[0.018851125612855,-0.047758031636477,-0.10381714999676],[-0.051429841667414,0.060610849410295,-0.13631369173527]],[[-0.13641504943371,0.25051614642143,-0.07356471568346],[-0.0037259822711349,0.09475564956665,-0.14286442101002],[-0.23522931337357,-0.12605051696301,-0.097915023565292]],[[0.016782660037279,-0.045873187482357,0.016415996477008],[-0.09483341127634,-0.07476269453764,0.14874814450741],[-0.06818388402462,0.034782607108355,0.0023158174008131]],[[-0.075244583189487,0.1099302098155,0.056722152978182],[-0.0096380393952131,0.025875009596348,-0.088037170469761],[-0.0005833167815581,0.026148268952966,0.027458753436804]],[[-0.21155789494514,-0.071665532886982,0.015697689726949],[0.065689966082573,-0.010989975184202,0.054816674441099],[0.059219166636467,0.039587628096342,-0.01113055832684]],[[-0.15759201347828,0.024813022464514,0.017875354737043],[0.1253210157156,0.070600502192974,-0.013192976824939],[-0.26102167367935,0.054803315550089,-0.11950288712978]],[[-0.069965817034245,0.12350656092167,0.10980866849422],[-0.1856624931097,-0.087991133332253,-0.10231366753578],[-0.31024742126465,-0.20039856433868,-0.23930637538433]],[[-0.056012101471424,0.092900559306145,0.20074531435966],[0.091239057481289,-0.12118683755398,-0.0041349693201482],[-0.003684725612402,-0.22179763019085,-0.20332837104797]],[[0.034244634211063,0.11786773055792,0.05156022682786],[0.02589519508183,-0.18459625542164,0.039310801774263],[0.10958748310804,-0.12036845088005,-0.15816000103951]],[[0.014383339323103,0.033191755414009,0.14554838836193],[-0.038879409432411,0.044600185006857,-0.0046823788434267],[-0.088035196065903,-0.24946604669094,-0.09337093681097]],[[-0.10632864385843,0.075497828423977,-0.061111636459827],[0.054734501987696,-0.023852083832026,0.072985619306564],[0.13372588157654,-0.079799510538578,-0.11523225903511]],[[0.066273771226406,-0.0092181302607059,0.12191791087389],[0.13143555819988,0.022645886987448,0.075343616306782],[-0.11274685710669,-0.098338797688484,-0.17727094888687]],[[-0.012046032585204,0.021069230511785,0.093221873044968],[-0.0022726277820766,0.030971577391028,-0.060985263437033],[-0.061614830046892,-0.0093072988092899,0.021224819123745]],[[0.064783364534378,0.2448894828558,-0.27845874428749],[-0.02777954749763,0.0132518960163,-0.047065827995539],[-0.026444612070918,-0.17628872394562,-0.14966203272343]],[[-0.082651972770691,0.1046942025423,-0.21847523748875],[0.17965030670166,0.14789119362831,0.046719379723072],[-0.3216173350811,-0.19665789604187,0.14062970876694]],[[0.057748150080442,-0.045055251568556,-0.10728640109301],[-0.067195557057858,-0.084978498518467,0.073933929204941],[0.027877144515514,-0.1802866011858,-0.093686506152153]],[[0.030416997149587,0.0043798936530948,-0.060313258320093],[-0.012228428386152,0.054951809346676,-0.10795836150646],[-0.020775118842721,0.062087073922157,0.0022780536673963]]],[[[-0.11334012448788,-0.062131065875292,-0.14066843688488],[-0.0055429274216294,0.29621398448944,0.069539912045002],[0.068578310310841,0.090265892446041,0.087253257632256]],[[-0.11445567756891,-0.027908217161894,0.17265236377716],[-0.067353218793869,0.0065781432203948,0.10557124763727],[0.045886676758528,0.038819849491119,-0.049847051501274]],[[0.077879831194878,0.00810591224581,-0.096164226531982],[0.18176248669624,-0.038045607507229,-0.073155745863914],[-0.0039192447438836,-0.028174336999655,-0.04490764811635]],[[0.20652435719967,-0.11203984171152,0.018190786242485],[-0.0021487607154995,0.039315223693848,-0.14093135297298],[-0.11233111470938,-0.14517448842525,-0.056850586086512]],[[0.0054239076562226,0.048233039677143,0.28170222043991],[-0.19007001817226,-0.040528532117605,-0.060565680265427],[0.038186762481928,-0.09086374938488,-0.077931046485901]],[[0.075743794441223,-0.074422799050808,0.072867251932621],[0.079508051276207,0.077806361019611,-0.081586912274361],[0.25125879049301,-0.15716995298862,-0.10623187571764]],[[-0.074438646435738,-0.22745852172375,-0.083732090890408],[0.074741423130035,-0.10513271391392,0.13353337347507],[0.086965635418892,0.025067644193769,-0.1614176928997]],[[0.022720389068127,-0.095722988247871,0.0032912625465542],[-0.032171525061131,-0.025288557633758,-0.19197055697441],[0.039090320467949,-0.014995098114014,-0.042272422462702]],[[-0.058959566056728,0.0040864073671401,0.0058337682858109],[-0.032093696296215,-0.033458273857832,0.087304137647152],[-0.08585799485445,-0.029666487127542,0.021019380539656]],[[0.14518317580223,0.04303128272295,-0.067849643528461],[-0.19424575567245,-0.014935303479433,-0.067917384207249],[-0.078224919736385,-0.22015230357647,0.12329227477312]],[[0.049010924994946,0.063015587627888,-0.088520854711533],[-0.065334655344486,-0.027144892141223,-0.20227511227131],[-0.032051589339972,0.053943812847137,0.12665270268917]],[[-0.0073932339437306,0.07255020737648,-0.044891875237226],[-0.1208038777113,0.0038667069748044,-0.099330946803093],[-0.043739058077335,0.063593357801437,0.10484123975039]],[[0.17183101177216,-0.17521122097969,0.13876760005951],[0.065701231360435,-0.0045711761340499,0.08317781239748],[0.1515244692564,0.17939355969429,-0.14065572619438]],[[0.12123981118202,0.010031858459115,0.015379688702524],[-0.13960011303425,-0.064562074840069,-0.13255932927132],[-0.0094356257468462,-0.010772817768157,-0.14721447229385]],[[0.085039205849171,0.20758736133575,0.11780627071857],[-0.12057783454657,-0.1049994379282,-0.046061411499977],[-0.0064857183024287,-0.12952888011932,0.22872100770473]],[[0.053574360907078,-0.11338482797146,0.18364781141281],[0.02822339348495,0.056083053350449,0.08584202080965],[0.05966730043292,-0.083934053778648,-0.040997534990311]],[[-0.074958138167858,0.14476063847542,0.18538303673267],[-0.019035717472434,-0.13609148561954,0.0075661037117243],[0.13146291673183,0.06818813085556,-0.082172103226185]],[[0.097011625766754,0.02954026311636,0.014952312223613],[-0.041417852044106,0.057712405920029,-0.043517578393221],[0.03926183655858,-0.083625629544258,-0.20929063856602]],[[0.1904985755682,0.079619154334068,0.01378936227411],[0.012656223028898,0.32146945595741,-0.097266294062138],[-0.017093440517783,-0.024380568414927,-0.17634272575378]],[[-0.04780850186944,0.021788531914353,0.08188484609127],[-0.093901097774506,-0.0012605518568307,-0.074674986302853],[-0.0091200480237603,-0.02740715071559,-0.085292167961597]],[[0.067091718316078,0.042310480028391,0.11803013831377],[0.0027944811154157,0.063756167888641,-0.030738132074475],[-0.32773956656456,-0.011420079506934,0.021817393600941]],[[0.096101246774197,0.090035863220692,0.31921085715294],[0.054468210786581,0.056612282991409,-0.026349382475019],[-0.074232406914234,-0.05790163949132,-0.055053882300854]],[[-0.036063250154257,0.12499413639307,-0.094916626811028],[-0.0052588102407753,-0.10428934544325,0.073188230395317],[-0.035215269774199,-0.23444767296314,-0.046657580882311]],[[-0.046010203659534,0.0500857681036,-0.054375104606152],[-0.13369430601597,0.078708969056606,0.046974908560514],[-0.10280033946037,-0.11133539676666,-0.077312014997005]],[[0.09520610421896,-0.10392834246159,-0.044595520943403],[0.12291123718023,-0.086044006049633,0.075607217848301],[-0.040441408753395,-0.14701484143734,-0.0080359969288111]],[[0.082444660365582,-0.10506398975849,-0.020257662981749],[0.31888380646706,-0.047720689326525,-0.018996285274625],[0.15673750638962,-0.25796270370483,0.046682216227055]],[[-0.043232318013906,-0.047876764088869,-0.018686097115278],[0.023936590179801,0.06363558024168,-0.043539233505726],[-0.039709817618132,0.031486470252275,0.045533426105976]],[[0.065469413995743,-0.13838794827461,-0.019122729077935],[0.082312270998955,-0.044785764068365,-0.14338292181492],[-0.11546638607979,0.0087774647399783,-0.055718090385199]],[[0.015475451014936,-0.089257672429085,0.018214073032141],[-0.14660795032978,-0.11971042305231,0.002122800797224],[0.048129118978977,0.091395452618599,0.03345138952136]],[[0.096745938062668,0.097964309155941,-0.015323967672884],[0.04248696193099,0.095693290233612,-0.12576983869076],[-0.071562312543392,-0.098774403333664,-0.093033477663994]],[[0.15540762245655,0.036958310753107,0.15704819560051],[-0.1943079829216,-0.027718223631382,-0.075340822339058],[0.069424465298653,-0.15329210460186,-0.020228421315551]],[[-0.11556307971478,-0.073809549212456,-0.093085736036301],[0.091049797832966,0.042275302112103,-0.18508383631706],[0.048075802624226,0.12808960676193,0.13480931520462]],[[0.010645222850144,0.04059824347496,-0.10058035701513],[0.046739127486944,0.17136530578136,-0.055516421794891],[0.014105857349932,-0.045367181301117,0.0044776131398976]],[[0.036293383687735,0.038935575634241,0.034257382154465],[0.17886702716351,-0.023507416248322,0.071067914366722],[0.13152036070824,0.022504629567266,0.049958080053329]],[[0.025701966136694,-0.10723674297333,-0.10144279152155],[-0.11695147305727,-0.13037227094173,-0.0072090784087777],[-0.12242303788662,0.032415859401226,-0.040898021310568]],[[0.050709012895823,-0.059041958302259,-0.18033164739609],[-0.068221151828766,0.18355126678944,0.10344929993153],[-0.12649919092655,0.15629696846008,-0.020122962072492]],[[-0.14610810577869,-0.075064867734909,-0.19099250435829],[0.038893762975931,0.1063074991107,0.017402870580554],[-0.034530259668827,-0.03289245814085,0.15260460972786]],[[0.11765174567699,0.036949217319489,0.042015340179205],[-0.14182035624981,-0.028046887367964,-0.0099887177348137],[-0.1199773773551,-0.090202264487743,-0.13053670525551]],[[0.035248357802629,-0.0086515359580517,-0.04715009406209],[-0.081648752093315,-0.068830907344818,0.0039983517490327],[0.083689242601395,-0.020030429586768,-0.03962628915906]],[[0.035118203610182,0.034153051674366,-0.076165862381458],[0.014820708893239,-0.081160195171833,-0.021434372290969],[0.13034023344517,-0.022723441943526,-0.10336025059223]],[[-0.042828697711229,0.065392628312111,-0.21004676818848],[-0.1630012691021,0.11897038668394,-0.0020383724477142],[-0.085484206676483,0.1310957223177,-0.072708152234554]],[[0.0084568848833442,0.12631587684155,0.11221916973591],[0.053407717496157,0.13312610983849,-0.067264974117279],[0.057807754725218,0.13886748254299,0.024277839809656]],[[0.051917549222708,-0.0010529056889936,0.050402570515871],[-0.010022255592048,-0.057355105876923,-0.073593460023403],[0.11436203867197,-0.17386223375797,-0.16377495229244]],[[0.047542173415422,0.01257177721709,-0.089331641793251],[0.035849630832672,0.0054255654104054,-0.030811076983809],[-0.0033521186560392,-0.029988657683134,-0.10566552728415]],[[-0.19126281142235,-0.060285739600658,0.007362806238234],[-0.057334411889315,-0.021776512265205,-0.078273050487041],[0.039978109300137,-0.13352321088314,-0.11140813678503]],[[0.015738893300295,0.017745271325111,0.050459444522858],[-0.29172709584236,0.084505952894688,-0.081305935978889],[-0.082740485668182,0.13828153908253,0.20853745937347]],[[-0.25103706121445,0.19724124670029,0.06029162555933],[0.090427733957767,0.058993175625801,-0.11245942115784],[-0.099887125194073,-0.054996505379677,0.17753536999226]],[[0.016641957685351,-0.044612918049097,0.028597498312593],[0.030180331319571,0.10544853657484,0.022293213754892],[-0.027925834059715,-0.068102918565273,-0.051904536783695]],[[-0.20506128668785,-0.16239216923714,-0.013420173898339],[-0.06682600826025,0.060986809432507,0.11656005680561],[-0.080231860280037,-0.072911441326141,-0.014018974266946]],[[0.041239108890295,0.028282888233662,-0.02296394109726],[-0.0075146635062993,0.0025529453996569,0.039155352860689],[-0.022874901071191,-0.03144559264183,-0.044464103877544]],[[0.069208964705467,0.0089713791385293,-0.08358670771122],[-0.066747583448887,-0.038539420813322,0.030885113403201],[-0.001384248607792,0.016990231350064,0.021778894588351]],[[0.09531182050705,-0.094257399439812,0.13505676388741],[-0.0052426913753152,0.025987729430199,-0.11427077651024],[-0.018886571750045,-0.079950444400311,-0.047869089990854]],[[-0.21619841456413,-0.037839282304049,0.029689144343138],[-0.053140223026276,0.12472760677338,-0.020452786237001],[-0.062430195510387,0.099737368524075,-0.084533162415028]],[[-0.14256937801838,-0.16866207122803,0.13526625931263],[0.14827300608158,-0.023804891854525,0.044948231428862],[-0.11889935284853,-0.093783460557461,-0.090116508305073]],[[-0.055680088698864,-0.035775400698185,0.070783846080303],[0.03454377129674,-0.015123006887734,-0.081423401832581],[-0.003211657050997,0.12921841442585,0.020227296277881]],[[-0.041591204702854,-0.052121911197901,-0.19935829937458],[0.058046538382769,-0.021970361471176,-0.11699920892715],[-0.027665952220559,-0.021160671487451,-0.20403507351875]],[[0.12465615570545,0.024754915386438,-0.039441138505936],[-0.014962578192353,0.052551589906216,-0.014698121696711],[-0.03270348533988,-0.092661544680595,0.061155751347542]],[[-0.064288735389709,0.0052255378104746,0.040158029645681],[-0.2794631421566,-0.052938695997,0.067762427031994],[0.0039517334662378,0.11267863214016,0.1231609210372]],[[-0.013576900586486,0.10328555107117,-0.037525836378336],[0.10882343351841,-0.06217447295785,0.037773363292217],[0.050302878022194,-0.083388388156891,0.27150508761406]],[[-0.15661470592022,0.14580322802067,0.19487810134888],[-0.061337538063526,0.18873803317547,-0.0071433018893003],[-0.072813384234905,-0.019994087517262,0.006480110809207]],[[-0.11299275606871,-0.013550109229982,0.032407194375992],[-0.079980112612247,-0.05235344171524,-0.012960627675056],[-0.083332680165768,-0.11820477247238,0.13516730070114]],[[-0.19758056104183,0.052991379052401,0.027504937723279],[-0.091295480728149,-0.041595049202442,-0.12353122979403],[-0.077366635203362,-0.172159537673,0.1007504761219]],[[0.0821478292346,0.12180452793837,0.063539646565914],[0.053722068667412,-0.042655516415834,0.098359644412994],[0.10358811914921,0.11503159999847,0.050372388213873]],[[-0.15735991299152,-0.03778263926506,-0.19293221831322],[0.03747670352459,-0.0051383641548455,0.010374407283962],[-0.13443468511105,0.042452175170183,0.099628627300262]]],[[[-0.034498371183872,0.17587076127529,0.082950219511986],[-0.073869325220585,-0.03064326196909,-0.12816359102726],[0.10818448662758,0.011334552429616,0.014499350450933]],[[0.071278721094131,0.00096979312365875,-0.020335523411632],[-0.14438953995705,-0.023137098178267,0.053884331136942],[0.20811326801777,0.17558105289936,-0.19998516142368]],[[0.15414524078369,0.16377641260624,-0.001361436676234],[0.11732997745275,0.033109605312347,-0.1260519772768],[-0.054314844310284,-0.11926330626011,0.009687970392406]],[[0.11230902373791,0.045608274638653,-0.14918661117554],[-0.019099919125438,-0.080075815320015,0.077741831541061],[0.072799652814865,-0.029229564592242,0.11313476413488]],[[-0.15685442090034,-0.12865342199802,0.019646970555186],[0.13052569329739,0.040010131895542,0.048435535281897],[-0.19373129308224,-0.078881062567234,-0.22842724621296]],[[-0.0450917519629,-0.087426789104939,-0.18070323765278],[0.0038525064010173,-0.10724131762981,0.02091159671545],[-0.11342161148787,-0.0021028383634984,0.11196951568127]],[[-0.10185921937227,-0.092239901423454,-0.14922678470612],[0.037869460880756,-0.042281068861485,-0.050343420356512],[-0.10240916162729,-0.055509813129902,0.019499272108078]],[[-0.040230225771666,-0.1313402056694,-0.11447062343359],[0.16938354074955,-0.021581571549177,0.013260880485177],[0.10795130580664,0.098353154957294,0.11749459803104]],[[-0.059112124145031,-0.030054984614253,0.021540796384215],[-0.016285642981529,-0.031334839761257,0.068061195313931],[0.040730156004429,0.040619768202305,-0.037441488355398]],[[0.071800246834755,-0.33764934539795,-0.017961939796805],[-0.1362666785717,-0.072431124746799,0.029923979192972],[0.01442145369947,0.022196140140295,0.061644859611988]],[[-0.05880706384778,0.094285517930984,0.022468904033303],[0.083737388253212,0.027309825643897,0.049973383545876],[-0.048279002308846,0.038485307246447,0.07922400534153]],[[-0.12648703157902,-0.030764907598495,0.02795984223485],[-0.11335724592209,0.016687182709575,0.0038675596006215],[-0.034633614122868,0.053655549883842,0.014626356773078]],[[-0.0094727193936706,0.098563186824322,0.17204663157463],[-0.027365682646632,-0.014202676713467,-0.11176016926765],[-0.027302280068398,0.051818814128637,0.11275219917297]],[[0.041487917304039,0.038701716810465,0.012693537399173],[0.035285659134388,-0.032740250229836,-0.0080037424340844],[0.086718417704105,-0.064659476280212,-0.022214787080884]],[[0.0051286048255861,0.10982003808022,0.0074378824792802],[-0.020607942715287,0.021971758455038,-0.044272296130657],[-0.02801269851625,0.069262966513634,0.12770015001297]],[[-0.099829740822315,-0.0033543249592185,-0.26363334059715],[0.017585633322597,-0.12586818635464,0.013459181413054],[-0.034277990460396,-0.040660131722689,0.0054235118441284]],[[-0.098300464451313,0.0065138111822307,-0.016751166433096],[0.073010750114918,0.066972032189369,-0.021697338670492],[-0.032448310405016,-0.22911290824413,-0.068314224481583]],[[-0.044300768524408,0.024677373468876,0.20514991879463],[-9.1908732429147e-06,-0.011911366134882,-0.11023055762053],[-0.015340124256909,0.065272212028503,0.067732945084572]],[[0.15280371904373,0.11489759385586,0.06666038185358],[-0.14391672611237,0.11052647233009,0.046617832034826],[-0.058033756911755,-0.21783953905106,-0.0025403057225049]],[[-0.090759858489037,0.13468325138092,-0.058847200125456],[0.03057905472815,0.074738636612892,0.21979594230652],[-0.23597368597984,-0.030894393101335,0.098098590970039]],[[0.0034942657221109,-0.086294904351234,-0.038114167749882],[0.13166366517544,0.0097560919821262,0.008378709666431],[0.035855818539858,-0.00058175344020128,0.05017002671957]],[[0.069757215678692,0.036320179700851,-0.051752038300037],[-0.028682233765721,-0.056494224816561,0.020280208438635],[0.0004620679828804,-0.11128841340542,0.099618047475815]],[[0.06673239916563,0.047232381999493,-0.05797903239727],[-0.00018891452054959,-0.021803887560964,-0.067193776369095],[-0.14466965198517,0.073179662227631,-0.03419728577137]],[[-0.038608368486166,0.083886541426182,0.23113697767258],[-0.051406089216471,-0.040853276848793,-0.083593048155308],[-0.039563499391079,-0.025317454710603,-0.011688722297549]],[[0.03240729495883,-0.094658464193344,0.21415078639984],[-0.035222042351961,-0.22303314507008,-0.03129393234849],[-0.071737229824066,-0.063221395015717,0.14284969866276]],[[-0.10352881252766,-0.1256458312273,-0.087270990014076],[0.087684296071529,0.15528264641762,0.024246031418443],[-0.25434592366219,-0.081224881112576,0.1143686324358]],[[-0.029772404581308,-0.20139150321484,-0.015231201425195],[0.018721910193563,-0.001540937111713,0.10019910335541],[-0.10263780504465,-0.071713156998158,-0.21112465858459]],[[-0.30702945590019,-0.24373988807201,-0.16106727719307],[-0.010629775002599,-0.02811685949564,0.059464361518621],[0.0043063410557806,-0.071433514356613,0.018125645816326]],[[-0.011486707255244,-0.0858199223876,0.17346762120724],[-0.078944504261017,0.014869263395667,0.10355658829212],[-0.11005456000566,0.066061183810234,0.0418003462255]],[[-0.093464627861977,0.011787974275649,-0.019871702417731],[-0.082459315657616,-0.16517356038094,-0.035650596022606],[0.012107326649129,0.01420131791383,0.057738691568375]],[[-0.079501733183861,0.10776740312576,-0.06704767793417],[0.013785796239972,-0.022737964987755,0.073375076055527],[-0.035059925168753,-0.14359726011753,-0.058991745114326]],[[-0.088705539703369,0.050060495734215,-0.081503972411156],[-0.042471516877413,-0.012657056562603,0.061720196157694],[0.03397012501955,0.067975156009197,0.081744015216827]],[[0.12655957043171,0.1650762706995,0.08829240500927],[-0.079941868782043,-0.10798465460539,0.13170239329338],[-0.0025776375550777,0.031295329332352,0.085731491446495]],[[0.020005479454994,0.070638872683048,0.011320490390062],[0.046736348420382,0.00747075304389,-0.031993709504604],[-0.017261199653149,-0.048128791153431,-0.060821454972029]],[[-0.0042307376861572,-0.016183005645871,0.12162624299526],[-0.084109082818031,-0.19214762747288,-0.064394220709801],[-0.017941663041711,0.075691267848015,0.15572340786457]],[[-0.03795999661088,-0.0065263831056654,0.050207231193781],[-0.090859539806843,-0.015625720843673,-0.030182939022779],[0.088438302278519,0.08692829310894,0.050064831972122]],[[-0.029955545440316,0.034044280648232,-0.10813190788031],[-0.016637060791254,0.027307165786624,0.15514247119427],[0.051279366016388,-0.039122097194195,-0.029279908165336]],[[-0.16402550041676,0.075135841965675,-0.016293646767735],[-0.10124348104,0.036231830716133,-0.017389437183738],[0.013647271320224,0.03311550989747,-0.022876463830471]],[[-0.076153621077538,-0.058303993195295,0.1747030466795],[-0.11321800202131,-0.1488623470068,-0.079148471355438],[0.1265831142664,0.011017448268831,-0.099196285009384]],[[-0.096045486629009,0.010959579609334,0.0068427077494562],[-0.12966747581959,-0.066347144544125,0.027272777631879],[0.080275490880013,-0.023414798080921,-0.075180105865002]],[[-0.061131462454796,-0.10078489780426,0.089479245245457],[0.1362317353487,-0.11966649442911,-0.19707684218884],[0.14867503941059,0.062018483877182,0.031063748523593]],[[0.086360238492489,-0.013005224987864,0.3389396071434],[-0.090883858501911,-0.29643478989601,-0.1310049444437],[-0.050427928566933,-0.099252611398697,-0.049538645893335]],[[-0.14199744164944,-0.065297082066536,0.010879702866077],[0.1114122197032,0.04617278277874,0.060084171593189],[-0.21162708103657,-0.06230042502284,0.0092949671670794]],[[0.048004440963268,-0.042298290878534,0.071465365588665],[-0.034870129078627,-0.048586461693048,-0.031197601929307],[-0.0047419629991055,0.1085417419672,-0.048513792455196]],[[-0.12628069519997,0.16404934227467,0.0076305912807584],[-0.071106366813183,0.0029292991384864,-0.056571584194899],[-0.012020924128592,-0.074174135923386,-0.18937021493912]],[[-0.10666916519403,0.016323439776897,0.2160262465477],[0.10054191946983,-0.023374449461699,-0.01132498960942],[0.082071013748646,0.071951076388359,0.10206961631775]],[[-0.18766058981419,-0.15384718775749,-0.2864798605442],[0.1630711555481,0.082096479833126,0.082110375165939],[0.12265527993441,0.10983370989561,-0.013416077941656]],[[-0.055698040872812,0.041474614292383,-0.010020229034126],[0.12939739227295,-0.10621204227209,0.0079444488510489],[-0.0063963704742491,-0.042243782430887,-0.010258199647069]],[[0.061252783983946,0.045679699629545,0.076377362012863],[0.013693817891181,0.05220715329051,-0.17637111246586],[0.065301798284054,0.023797020316124,0.16969971358776]],[[-0.097289964556694,-0.16407759487629,-0.19310066103935],[-0.011383928358555,-0.0024284014943987,0.30514535307884],[-0.072624176740646,-0.04628824442625,-0.049426030367613]],[[-0.099406756460667,-0.1646973490715,-0.073851734399796],[-0.0021317868959159,-0.067010216414928,0.13884106278419],[-0.082423150539398,-0.11979437619448,-0.11767372488976]],[[0.096535354852676,0.037661742419004,0.15678951144218],[-0.056510969996452,0.039969652891159,-0.044636905193329],[-0.13912272453308,0.086125150322914,0.099935494363308]],[[-0.061669252812862,-0.13211360573769,-0.095196388661861],[0.2045433819294,0.067300111055374,0.14487864077091],[0.097470745444298,-0.16510383784771,-0.11251133680344]],[[-0.03647880628705,0.012563616037369,0.096930295228958],[-0.062814369797707,-0.079643324017525,-0.19793626666069],[0.021565668284893,0.10228142887354,0.14198498427868]],[[-0.11554793268442,0.022977078333497,-0.033766195178032],[-0.031665373593569,0.055470149964094,0.098044753074646],[0.0051521896384656,0.0056153298355639,-0.10515947639942]],[[0.04578797519207,-0.13239565491676,-0.081205114722252],[0.048941783607006,0.060146696865559,0.021344847977161],[-0.039963994175196,-0.065057881176472,-0.016489315778017]],[[-0.022239238023758,-0.031125340610743,0.092961080372334],[-0.18355238437653,0.022346893325448,-0.049052406102419],[-0.053870014846325,-0.048145424574614,-0.039105046540499]],[[0.0072175152599812,0.020342590287328,0.21885202825069],[-0.16754701733589,-0.015134376473725,-0.084931619465351],[0.041613455861807,-0.014042852446437,-0.1186076104641]],[[-0.039771612733603,0.037922825664282,-0.010893744416535],[-0.048298291862011,0.086667880415916,0.026241365820169],[-0.11710465699434,-0.02138739451766,-0.044638250023127]],[[-0.13000774383545,-0.049969419836998,-0.15312057733536],[0.21413733065128,0.014628138393164,0.042283676564693],[-0.051026798784733,0.02267655171454,-0.0056894202716649]],[[0.10478609055281,-0.022095985710621,-0.26557368040085],[-0.15600219368935,-0.14978951215744,-0.055891089141369],[-0.041664566844702,-0.0091693159192801,-0.038508236408234]],[[0.14590907096863,-0.0013244157889858,-0.029747553169727],[-0.12703388929367,0.13810455799103,0.034530639648438],[-0.27239838242531,0.089432306587696,0.02493828907609]],[[0.058939959853888,-0.022087858989835,-0.065601319074631],[-0.16081663966179,0.031602021306753,0.069950565695763],[0.037592113018036,0.0140441050753,-0.1580666154623]],[[-0.19125767052174,-0.084653876721859,0.054397515952587],[0.057468678802252,0.049423813819885,0.038692377507687],[0.033433955162764,-0.087578937411308,0.046489801257849]]],[[[-0.11790169030428,0.0065729431807995,0.042441066354513],[-0.028197512030602,0.07317266613245,0.0073549840599298],[-0.056675970554352,-0.027183929458261,0.023826139047742]],[[0.16391880810261,-0.030847536399961,0.090111672878265],[0.1543645709753,0.055127415806055,0.048751533031464],[0.074845634400845,0.016873566433787,0.044844303280115]],[[0.058655623346567,0.014766504988074,0.089519456028938],[0.057225275784731,-0.075788006186485,-0.043904721736908],[-0.15323610603809,-0.080174490809441,0.10830350965261]],[[-0.095438666641712,0.008414326235652,0.029471639543772],[0.11234784126282,-0.010961476713419,-0.046706352382898],[0.12285337597132,-0.08262987434864,-0.033378072082996]],[[-0.056856110692024,0.12930707633495,-0.10966333001852],[-0.062666572630405,0.13605983555317,-0.038248859345913],[0.12831255793571,-0.0011147488839924,0.0055942181497812]],[[0.022616628557444,-0.073211900889874,-0.040474615991116],[0.10830605775118,-0.01721384562552,-0.14861141145229],[-0.0093678599223495,-0.022541765123606,-0.17754769325256]],[[0.0013945415848866,0.097817048430443,-0.12751334905624],[-0.017756018787622,-0.047477684915066,-0.083576671779156],[-0.097435370087624,0.066277489066124,0.055545043200254]],[[-0.093664906919003,-0.039247836917639,-0.0028653633780777],[-0.091341160237789,-0.014696604572237,-0.14134669303894],[0.0054450985044241,-0.036549542099237,-0.024196527898312]],[[-0.07345924526453,0.0088199358433485,0.009623016230762],[0.032235529273748,0.14118866622448,-0.0060624978505075],[-0.039382394403219,0.0099832471460104,-0.060350883752108]],[[-0.13677218556404,-0.11057113111019,-0.25170704722404],[-0.06139075383544,-0.026828998699784,-0.018256550654769],[-0.0098651293665171,0.05033303424716,-0.16578041017056]],[[0.010914451442659,0.044628467410803,-0.14058390259743],[0.028860978782177,-0.037052609026432,-0.016833458095789],[-0.063287310302258,-0.22514724731445,-0.087183594703674]],[[0.039044909179211,-0.10311786085367,-0.059827733784914],[0.092811055481434,0.021608643233776,0.028630036860704],[-0.038406081497669,-0.028026489540935,-0.093828529119492]],[[-0.04143312945962,0.024106940254569,-0.010904565453529],[0.043158292770386,0.023236628621817,-0.041508037596941],[-0.081336975097656,0.090989097952843,-0.052636675536633]],[[0.082114398479462,0.097067952156067,0.14785765111446],[0.082407020032406,0.11529401689768,0.0016954283928499],[-0.00179670273792,-0.017445540055633,0.10030161589384]],[[0.094975255429745,-0.0054516457021236,0.016323821619153],[0.040130954235792,-0.023623181506991,-0.1116534024477],[0.038370877504349,-0.078268356621265,0.023403519764543]],[[0.06070526316762,0.045393977314234,-0.10943917930126],[-0.0020409752614796,-0.022644311189651,-0.19066207110882],[-0.035828180611134,-0.14683684706688,-0.14229503273964]],[[-0.0080089624971151,0.099474161863327,-0.045750457793474],[-0.00512061920017,0.055312238633633,-0.076220147311687],[-0.038030657917261,0.084149979054928,0.24619990587234]],[[0.067372903227806,0.07255470007658,-0.080668345093727],[-0.12370103597641,0.0243767388165,-0.035066332668066],[0.065318763256073,0.21103963255882,0.14298664033413]],[[0.091301150619984,-0.0084571000188589,-0.072698801755905],[0.18881860375404,0.12737894058228,-0.031598839908838],[-0.014073791913688,0.011697466485202,0.041764948517084]],[[0.10425220429897,0.055628594011068,-0.018989821895957],[-0.0035779091995209,-0.11245264858007,0.070245496928692],[0.13632546365261,-0.014502155594528,-0.13242934644222]],[[0.054984960705042,0.015664516016841,0.039437510073185],[-0.050900869071484,-0.11961200833321,0.089955493807793],[-0.0084759723395109,-0.084879651665688,0.16097059845924]],[[0.015957714989781,-0.11912453919649,0.18359479308128],[0.0508838519454,-0.092875234782696,-0.12296628206968],[0.086124338209629,-0.030405348166823,-0.14924596250057]],[[0.11531312018633,-0.019255010411143,-0.038573618978262],[0.03445902466774,0.096486397087574,0.064658954739571],[0.0067653432488441,-0.023123620077968,-0.17189291119576]],[[0.073818601667881,-0.13781231641769,-0.17215870320797],[0.015281627885997,-0.02845174819231,-0.066614076495171],[-0.005379359703511,0.020781844854355,-0.0087242107838392]],[[0.20354424417019,0.069507248699665,-0.12035639584064],[0.036844335496426,-0.017941685393453,-0.0084229204803705],[0.058604683727026,0.16949489712715,0.038541328161955]],[[0.06577131152153,-0.0471674464643,-0.151442527771],[0.023202460259199,0.076289549469948,-0.052491892129183],[-0.033990394324064,-0.11679593473673,0.0039316830225289]],[[0.053498424589634,-0.056640740483999,-0.096860192716122],[0.078267693519592,-0.09237227588892,-0.025355344638228],[0.11161639541388,0.016807146370411,0.035134173929691]],[[-0.16769763827324,-0.075791269540787,0.057355549186468],[-0.15717349946499,-0.23259615898132,0.038283497095108],[0.012823020108044,-0.061862923204899,0.0057557984255254]],[[-0.02318605594337,-0.05804081261158,-0.02892492339015],[0.17419196665287,0.10816340148449,-0.079201363027096],[0.10687633603811,0.10101867467165,-0.063088215887547]],[[0.075012840330601,-0.025591529905796,-0.024236360564828],[0.018849948421121,0.081733144819736,-0.020321346819401],[0.1562677025795,0.064110316336155,-0.051321800798178]],[[0.085233524441719,0.068782113492489,0.043277177959681],[-0.060922011733055,0.16273568570614,0.12055072933435],[-0.13140967488289,0.1347948461771,0.0081147002056241]],[[-0.011335019022226,-0.055381640791893,0.026584019884467],[0.041227083653212,0.013324654661119,0.072872556746006],[-0.0076055722311139,0.011636352166533,0.10273054987192]],[[0.022870644927025,0.062153611332178,0.10777680575848],[-0.02683581598103,-0.0054247481748462,-0.094628319144249],[0.00079739681677893,-0.016846088692546,-0.0050131604075432]],[[0.06297892332077,-0.0036287023685873,0.12949587404728],[0.014699601568282,0.16233775019646,0.0089416159316897],[0.052033271640539,0.097974985837936,0.14173386991024]],[[-0.012504923157394,-0.083718366920948,-0.086048446595669],[0.072588674724102,-0.16485987603664,-0.11326864361763],[-0.063608683645725,-0.044982053339481,-0.046020045876503]],[[-0.05433888733387,0.026084756478667,-0.13858860731125],[0.10936891287565,-0.00016351261001546,-0.15269866585732],[0.1114329174161,0.10304959118366,-0.087791055440903]],[[-0.062039021402597,-0.0744998306036,0.0060903956182301],[0.10506951808929,-0.097050786018372,0.035618335008621],[-0.019652307033539,-0.064502142369747,-0.08251778036356]],[[-0.17323878407478,0.051815662533045,-0.067923046648502],[-0.11797764897346,-0.052597593516111,-0.12270136922598],[-0.11631318181753,0.12825380265713,0.04168913885951]],[[0.11210510879755,0.079332679510117,0.097610637545586],[0.045095216482878,0.086851865053177,-0.041406363248825],[0.031744070351124,-0.19967731833458,-0.086633525788784]],[[0.069521814584732,0.030742086470127,-0.0024764749687165],[-0.038982674479485,-0.086567103862762,-0.11802047491074],[-0.061314016580582,-0.067120634019375,-0.06014708429575]],[[0.01909208856523,0.057344317436218,0.046248402446508],[0.063900612294674,-0.038728307932615,0.014045019634068],[0.055770136415958,-0.049433246254921,0.10283007472754]],[[0.012087025679648,0.017294783145189,0.088093109428883],[0.042260218411684,0.0109593719244,-0.021230671554804],[-0.03981202095747,0.13704457879066,-0.14018654823303]],[[0.0080796414986253,0.04276080429554,0.038682881742716],[0.0039219516329467,-0.0029465060215443,-0.02736640907824],[-0.017139114439487,-0.031500704586506,-0.069807462394238]],[[-0.063457988202572,-0.15899106860161,-0.079162612557411],[-0.07963339984417,-0.0029633792582899,0.015796752646565],[-0.040780398994684,-0.066565364599228,-0.0056325634941459]],[[0.024707427248359,0.068198069930077,-0.035873811691999],[-0.078852824866772,0.11790059506893,-0.11423908919096],[0.024656675755978,0.028746718540788,0.16010482609272]],[[0.045872926712036,-0.090212479233742,0.13156495988369],[0.10644694417715,-0.11914967745543,-0.1286014020443],[0.044425286352634,-0.070332944393158,-0.09912721067667]],[[-0.069525331258774,-0.012958413921297,-0.076168984174728],[-0.0843510851264,-0.0089198127388954,0.02950731292367],[0.14185111224651,0.00077099091140553,-0.04350395873189]],[[-0.039082270115614,-0.040150195360184,0.027778713032603],[-0.014229414984584,0.011799690313637,-0.0068482239730656],[0.0233871974051,0.033680338412523,0.01258707139641]],[[-0.058276731520891,-0.05276707559824,0.08387179672718],[0.039873570203781,0.12246029824018,-0.015552294440567],[-0.24737113714218,0.089906975626945,0.031239675357938]],[[0.11245114356279,0.13076335191727,-0.0001409273390891],[-0.059473566710949,0.051432147622108,0.064579211175442],[0.050876010209322,0.043763801455498,-0.048739224672318]],[[0.032646186649799,0.033857215195894,0.03909607976675],[0.038127902895212,-0.0845562890172,-0.023234829306602],[0.13723094761372,-0.041715290397406,-0.070839732885361]],[[-0.10395196080208,-0.11656393110752,-0.11256377398968],[0.18787254393101,0.067355588078499,-0.059298522770405],[0.044755201786757,-0.070666238665581,-0.12218394875526]],[[-0.069675244390965,0.013315859250724,0.040117878466845],[0.03501633182168,0.054470159113407,-0.10269378125668],[-0.099329523742199,-0.033189795911312,0.046283077448606]],[[0.02376358769834,-0.10739973932505,0.00056573981419206],[0.13606652617455,-0.1067563071847,0.016977371647954],[-0.050156619399786,-0.21668836474419,0.0039237746968865]],[[-0.077342718839645,-0.10266524553299,0.073499664664268],[-0.15488961338997,-0.07221332192421,0.019316550344229],[-0.11220951378345,0.0299167111516,-0.12254695594311]],[[0.085716597735882,0.013488233089447,0.061105780303478],[-0.017218707129359,-0.10313316434622,-0.0028510089032352],[0.016912668943405,-0.042937062680721,0.048111572861671]],[[-0.06095826625824,-0.05455656349659,0.020848907530308],[0.051903158426285,-0.073077343404293,-0.0026979034300894],[0.080459095537663,-0.16277930140495,-0.17661288380623]],[[-0.12919934093952,0.017916159704328,0.18812496960163],[0.094883978366852,0.018474860116839,0.13434420526028],[0.093640223145485,-0.0027757880743593,-0.043661814182997]],[[0.16634006798267,0.10414392501116,-0.075018882751465],[0.0045961742289364,0.031424757093191,-0.0057343230582774],[0.090394072234631,-0.086868047714233,-0.13448105752468]],[[-0.0052974778227508,-0.056953180581331,-0.05094925686717],[0.02771476842463,-0.019234765321016,0.064722552895546],[0.086924821138382,0.010439869016409,-0.080546483397484]],[[-0.047083169221878,-0.0093950517475605,-0.016207257285714],[0.023179445415735,0.025794472545385,0.10907502472401],[0.042544189840555,0.069402299821377,-0.20447468757629]],[[0.10359760373831,-0.068367287516594,-0.16010569036007],[0.062616959214211,0.0053297933191061,0.12840247154236],[-0.045163422822952,0.065784350037575,-0.062461636960506]],[[0.1327681094408,0.091496393084526,-0.04679811373353],[-0.13365904986858,-0.033481810241938,-0.025322185829282],[0.013554920442402,-0.04513880610466,0.033166538923979]],[[-0.1577840000391,-0.11581142991781,-0.10811068117619],[0.065303310751915,-0.0093008428812027,-0.085706152021885],[-0.044980477541685,-0.019175132736564,0.11747673153877]]],[[[0.027711547911167,0.010527504608035,0.065882928669453],[-0.072649829089642,-0.0054927789606154,0.086846552789211],[0.022767810150981,0.087951093912125,0.011972789652646]],[[0.0069431471638381,0.23465144634247,0.036101993173361],[-0.22679105401039,-0.03086712397635,-0.050095219165087],[0.14278165996075,0.05962648242712,-0.031986940652132]],[[0.095375314354897,0.10706708580256,-0.22269913554192],[0.085271514952183,0.088879376649857,-0.19200758635998],[-0.054259739816189,-0.011715905740857,0.095133699476719]],[[0.1226898804307,0.010879683308303,0.1069822832942],[-0.064462274312973,-0.07666252553463,0.0066718817688525],[-0.21305513381958,0.0077928998507559,0.07438662648201]],[[-0.12596103549004,0.098168641328812,0.00055193377193063],[-0.12717728316784,-0.048679009079933,0.14071796834469],[-0.0066592963412404,0.040748402476311,-0.034177090972662]],[[0.015398491173983,0.013010065071285,-0.032666087150574],[-0.14448541402817,-0.12543196976185,-0.010698983445764],[0.072514772415161,-0.042067874222994,0.054109640419483]],[[0.068105392158031,0.052482966333628,-0.11718656122684],[-0.0078044915571809,0.079577140510082,0.12571257352829],[0.084510982036591,-0.054845858365297,-0.026422033086419]],[[-0.10070109367371,-0.043037015944719,0.055050566792488],[-0.087377429008484,0.025625756010413,0.025181602686644],[0.13217124342918,0.011241489090025,-0.069148451089859]],[[-0.059778582304716,-0.031566593796015,-0.027352523058653],[-0.0065527511760592,-0.041623212397099,0.093530848622322],[0.052796196192503,-0.012365264818072,-0.0047886725515127]],[[0.053964823484421,0.021137367933989,0.16257724165916],[-0.19242753088474,-0.090943358838558,0.065991595387459],[-0.079469114542007,0.1745482981205,0.043111495673656]],[[0.038306001573801,-0.047767773270607,0.021791070699692],[-0.028906442224979,-0.11459147185087,-0.0099710319191217],[-0.11343819648027,-0.0318763256073,0.27388736605644]],[[-0.040361922234297,-0.19379988312721,-0.070037841796875],[-0.18612295389175,-0.065712355077267,0.16606763005257],[0.053248256444931,-0.024561733007431,0.14673094451427]],[[-0.22190791368484,-0.10724624246359,0.12793582677841],[-0.10506272315979,0.118332862854,0.10350440442562],[0.14788082242012,-0.01891366392374,0.101218752563]],[[0.0041542882099748,-0.016850179061294,-0.0020667093340307],[-0.037315804511309,0.048758488148451,-0.056905306875706],[0.098462603986263,0.073293805122375,0.063032850623131]],[[-0.014243234880269,-0.035188820213079,-0.038278978317976],[-0.092711068689823,0.051475409418344,0.077823281288147],[-0.11148860305548,0.093687877058983,0.043612409383059]],[[-0.24140806496143,-0.20192800462246,-0.011896635405719],[-0.13295759260654,-0.1002893447876,0.18042975664139],[0.024323703721166,0.060570605099201,0.1101885586977]],[[0.027008848264813,0.033287942409515,-0.008235115557909],[0.076200075447559,0.03657341003418,0.034438032656908],[0.037758246064186,-0.049086760729551,0.036098875105381]],[[-0.037941422313452,0.13343477249146,0.024345468729734],[-0.1149318292737,-0.065839327871799,-0.049756933003664],[-0.08092337846756,0.068606413900852,0.048707652837038]],[[0.009753568097949,0.12439315021038,0.016699900850654],[0.045922130346298,-0.078820280730724,0.036385394632816],[-0.13768893480301,0.01572197675705,-0.20359355211258]],[[-0.078530021011829,0.16560404002666,0.095013469457626],[0.091557040810585,0.03248156234622,0.07838099449873],[-0.2437959164381,0.014078901149333,0.092362590134144]],[[-0.14939829707146,-0.056118924170732,-0.042732201516628],[-0.035132836550474,-0.14839679002762,-0.20396457612514],[0.12646754086018,-0.14435270428658,-0.11948273330927]],[[-0.0671451613307,0.064855016767979,0.025060504674911],[0.10922630876303,0.023495845496655,-0.05072233453393],[0.2761652469635,0.023799089714885,0.016756257042289]],[[0.034968107938766,-0.14178390800953,-0.012865168042481],[-0.079770602285862,0.052143659442663,-0.0544886700809],[-0.070373371243477,-0.083015695214272,0.00076185294892639]],[[-0.26692575216293,-0.25872811675072,0.15599769353867],[0.058866441249847,-0.00083017296856269,0.066894859075546],[-0.092212222516537,0.038280416280031,0.18385107815266]],[[-0.014817580580711,0.028684800490737,-0.050841078162193],[-0.0023106010630727,0.14148792624474,0.26298823952675],[0.10498314350843,-0.12426310777664,0.0070269075222313]],[[-0.18018805980682,-0.16974429786205,-0.060297034680843],[-0.065563604235649,0.009881048463285,-0.11085034161806],[-0.098736494779587,0.087792985141277,0.018412068486214]],[[-0.3580769598484,-0.18353740870953,-0.079803630709648],[-0.11307204514742,-0.017580384388566,0.080976076424122],[-0.064063459634781,-0.016316955909133,0.20318435132504]],[[-0.16309349238873,-0.0011111113708466,-0.11825814843178],[0.066591143608093,0.058439966291189,-0.17018586397171],[-0.087630085647106,0.08548741042614,-0.016512775793672]],[[-0.077881947159767,0.013979321345687,-0.15591308474541],[0.043661940842867,-0.0029099509119987,0.0022141288500279],[0.18666334450245,-0.041420307010412,-0.054590798914433]],[[-0.16255180537701,-0.29653137922287,-0.078563004732132],[-0.13478066027164,-0.097653478384018,0.010301552712917],[-0.17130392789841,0.041024975478649,0.058590158820152]],[[-0.17884516716003,0.025244556367397,0.054398417472839],[-0.010718525387347,-0.022011272609234,-0.028972009196877],[0.03054921515286,-0.0063292901031673,0.065116994082928]],[[0.093681804835796,-0.16074649989605,-0.087036222219467],[0.078336916863918,-0.042678240686655,-0.054673809558153],[0.0083327386528254,-0.090724714100361,-0.14726063609123]],[[-0.063179060816765,-0.079180888831615,0.087982438504696],[-0.045702040195465,-0.073542848229408,0.064551658928394],[0.12281569838524,0.10514017939568,-0.0096209226176143]],[[0.10741214454174,-0.035281099379063,0.05107731372118],[-0.075598686933517,-0.0050274156965315,-0.0062354290857911],[-0.082249499857426,0.028635295107961,-0.10777640342712]],[[0.057035911828279,0.0198930259794,0.13444729149342],[-0.084207944571972,-0.011627361178398,0.044377170503139],[-0.097582139074802,-0.048524960875511,-0.014194819144905]],[[-0.18155373632908,-0.0066432408057153,0.029197942465544],[-0.11691348254681,-0.20775151252747,-0.012240530923009],[-0.15679332613945,-0.0038043651729822,0.039878588169813]],[[-0.056694842875004,-0.16295953094959,-0.069641590118408],[0.0798479616642,0.026413146406412,-0.10880389809608],[0.16305753588676,-0.023740042001009,0.12444406747818]],[[0.11227494478226,0.058164268732071,-0.10678534954786],[-0.080600313842297,0.10600632429123,0.12981277704239],[-0.012586079537868,-0.10070031881332,0.077344194054604]],[[0.10377689450979,0.07508496940136,-0.071802951395512],[0.049788035452366,0.098150365054607,-0.10213026404381],[-0.059699982404709,-0.19815500080585,-0.058361876755953]],[[-0.075760714709759,-0.24536795914173,-0.10663285106421],[-0.0039828890003264,-0.049234449863434,0.046625506132841],[0.011526256799698,-0.011694125831127,-0.0088233510032296]],[[-0.21973726153374,-0.021476276218891,0.037896737456322],[-0.036971639841795,0.036082554608583,0.11056157201529],[0.025285558775067,-0.15338085591793,-0.062279406934977]],[[-0.069122239947319,0.0060572712682188,0.029564689844847],[-0.26127937436104,-0.0068053007125854,-0.0024175180587918],[-0.18718612194061,0.18142174184322,0.10630315542221]],[[-0.10096587240696,0.03467258810997,0.041157890111208],[0.042441170662642,-0.016569407656789,-0.073127254843712],[-0.03484632819891,-0.036596905440092,0.016697065904737]],[[-0.0053658946417272,0.007656536065042,-0.044999878853559],[0.025965357199311,-0.040619511157274,0.060276214033365],[0.056748133152723,-0.00091331038856879,-0.094740658998489]],[[0.073104806244373,-0.040762286633253,0.034324370324612],[-0.027462104335427,-0.18104287981987,-0.047150313854218],[0.10563957691193,0.031258352100849,-0.076674237847328]],[[-0.1740775257349,-0.12053620815277,-0.041939675807953],[-0.026756996288896,-0.11002529412508,-0.042877428233624],[-0.001933770487085,-0.056820221245289,0.15906342864037]],[[-0.0067407744936645,-0.04622807726264,0.079216435551643],[0.073061145842075,-0.13900750875473,0.14087335765362],[0.025721011683345,0.084052249789238,-0.06969415396452]],[[-0.012831112369895,-0.046427674591541,-0.032534621655941],[-0.09135577082634,-0.053513556718826,0.068022802472115],[-0.0021269358694553,-0.027115566655993,0.12886384129524]],[[0.099095672369003,-0.07944280654192,-0.13447792828083],[0.071774542331696,-0.0228371322155,-0.05530534312129],[0.047961853444576,0.017913611605763,0.062328316271305]],[[-0.096061795949936,-0.0060049016028643,0.002430792665109],[-0.0084649669006467,0.015379712916911,0.022152723744512],[-0.03001855686307,-0.11256681382656,0.067917734384537]],[[-0.12210831791162,0.037186998873949,-0.074183039367199],[-0.2209307551384,-0.010361938737333,-0.084968037903309],[-0.33638340234756,0.077449299395084,0.21436634659767]],[[0.047565530985594,0.17455971240997,0.075986459851265],[-0.15014204382896,-0.20189671218395,0.0065354965627193],[-0.047640074044466,0.0096170073375106,-0.043058473616838]],[[-0.010158754885197,-0.094185873866081,0.047426547855139],[0.11961071193218,0.077975563704967,-0.02202283591032],[0.17191657423973,0.10554584860802,0.046999003738165]],[[0.012437516823411,0.041882663965225,0.085780009627342],[0.078525900840759,0.081502415239811,-0.11039121448994],[0.12086503952742,0.020740278065205,0.022519994527102]],[[0.003761867294088,0.12830795347691,0.057760134339333],[0.061096150428057,0.018773686140776,0.063951037824154],[0.04782085493207,0.043865393847227,0.07875932008028]],[[-0.13357101380825,0.015396813862026,0.020660515874624],[0.16178354620934,-0.16892923414707,-0.15665458142757],[-0.028232861310244,0.094768278300762,0.12607160210609]],[[-0.072863057255745,0.029935076832771,0.059258334338665],[0.0002203074254794,-0.019734362140298,0.12785543501377],[-0.010270188562572,-0.066870905458927,-0.12412448972464]],[[-0.052503108978271,0.009005387313664,-0.088557906448841],[0.06158583983779,0.05153014883399,-0.046030201017857],[0.069938905537128,-0.0087438337504864,-0.078972712159157]],[[0.10245825350285,-0.069752037525177,-0.24396827816963],[-0.10283328592777,-0.072137199342251,0.015341797843575],[-0.051738828420639,0.11521153151989,-0.072115749120712]],[[-0.24835093319416,-0.016038581728935,0.078609883785248],[-0.014305558055639,-0.10357651114464,-0.063054919242859],[0.029221555218101,-0.079228259623051,0.12287413328886]],[[-0.10873576253653,-0.048639986664057,0.014706949703395],[-0.050958693027496,0.0058118542656302,0.062148340046406],[0.059771981090307,-0.14006043970585,-0.13579919934273]],[[-0.035836771130562,0.018286610022187,0.16411601006985],[-0.10868509858847,-0.041911259293556,-0.035686407238245],[0.02166498824954,0.057906128466129,0.057122681289911]],[[0.0084911789745092,-0.0025710926856846,-0.02069347165525],[-0.047411289066076,-0.057155169546604,0.051631320267916],[-0.059924561530352,0.01694137044251,0.025095697492361]],[[0.04560386762023,-0.090488888323307,0.16081829369068],[-0.05203003436327,0.077506676316261,0.10600470751524],[0.0324692055583,0.042739152908325,0.12979276478291]]],[[[0.015731455758214,0.14133481681347,0.091456688940525],[-0.20922282338142,-0.065148182213306,0.01521831844002],[-0.09735144674778,0.2619041800499,0.066416405141354]],[[0.022219875827432,0.15474204719067,-0.00086647842545062],[-0.035835791379213,0.026693062856793,-0.072378166019917],[0.14775410294533,-0.09571810811758,0.10120441019535]],[[-0.086044155061245,0.082765385508537,-0.13958509266376],[0.0020502968691289,0.064109049737453,0.11816061288118],[0.081320948898792,-0.11190997809172,-0.044319793581963]],[[-0.029140185564756,0.024947239086032,-0.075778521597385],[-0.017243154346943,0.080809526145458,-0.10877326130867],[-0.060889430344105,-0.055713344365358,0.034698236733675]],[[0.14671447873116,-0.084700018167496,0.083177395164967],[-0.015046102926135,0.11698086559772,0.017271028831601],[-0.081344276666641,-0.037943977862597,0.0060395412147045]],[[-0.13243398070335,-0.011077545583248,-0.053426325321198],[-0.090488031506538,0.046745080500841,-0.032594863325357],[-0.031551044434309,-0.10171641409397,-0.082963190972805]],[[0.056356661021709,0.14547845721245,0.027707669883966],[0.15047541260719,-0.039221864193678,0.084188543260098],[-0.088994637131691,0.031826559454203,0.095032624900341]],[[-0.0061689661815763,-0.029415441676974,-0.056288626044989],[0.065204851329327,0.088447205722332,0.033554814755917],[0.099841885268688,-0.008235995657742,-0.086253456771374]],[[0.057198394089937,-0.075775370001793,-0.070759497582912],[0.060501500964165,-0.042459275573492,-0.02636987529695],[-0.042848397046328,0.11954144388437,-0.026209961622953]],[[0.0043488088995218,-0.095536179840565,0.023178108036518],[0.030412374064326,-0.028713881969452,0.01945460960269],[0.06571502238512,0.1535562723875,-0.0017145145684481]],[[-0.011032554320991,0.018931396305561,0.094272099435329],[0.024109099060297,-0.085539467632771,-0.042209710925817],[-0.046235084533691,0.010228519327939,0.079012215137482]],[[0.016527730971575,-0.13780443370342,-0.2341709882021],[0.11980599910021,-0.18049411475658,-0.0096576502546668],[0.1720318198204,-0.092959962785244,-0.0060696229338646]],[[0.0041493084281683,-0.067831762135029,-0.11836690455675],[-0.12212038785219,-0.077005639672279,0.023744175210595],[0.092555478215218,-0.0042576300911605,-0.089711487293243]],[[0.23707422614098,-0.1401589512825,-0.016388058662415],[0.0006131487316452,-0.005014116410166,0.081673696637154],[-0.063680708408356,-0.02652376703918,-0.079126141965389]],[[0.071243114769459,-0.067413352429867,0.0030447961762547],[0.12962485849857,-0.13425700366497,-0.15865088999271],[0.03963378444314,-0.055581286549568,0.046253707259893]],[[-0.019717624410987,0.12982319295406,-0.031217686831951],[0.16653560101986,0.004563030321151,-0.027412932366133],[-0.067291662096977,-0.087173230946064,-0.062974646687508]],[[0.062662415206432,-0.027037069201469,0.13052442669868],[0.14350509643555,0.11822355538607,-0.096970625221729],[-0.0095814084634185,-0.012943346053362,-0.095060437917709]],[[-0.026130355894566,0.022814096882939,-0.057111945003271],[-0.1228382140398,-0.032074458897114,-0.029988000169396],[0.14705300331116,0.026146166026592,0.0097012156620622]],[[-0.0063141575083137,0.10970719903708,0.08116253465414],[0.0033839147072285,-0.10586809366941,0.014305439777672],[0.068061046302319,-0.01115270331502,0.14791993796825]],[[0.1350814551115,0.04973815754056,-0.12050458043814],[-0.067029073834419,-0.060666441917419,0.025427684187889],[0.15099462866783,0.048258081078529,-0.022315846756101]],[[-0.027487335726619,0.0021598013117909,0.10141056776047],[-0.1122665181756,-0.054702199995518,-0.085283830761909],[-0.087354362010956,0.096302188932896,0.0090003861114383]],[[0.083314791321754,0.029990946874022,-0.028473576530814],[-0.11366118490696,-0.044426187872887,0.050036035478115],[0.026820687577128,0.032554313540459,0.14956122636795]],[[-0.010644691996276,-0.07397872209549,0.055462267249823],[-0.04144112020731,-0.096766076982021,-0.1584637761116],[-0.040323022753,-0.065009750425816,-0.035742297768593]],[[0.077332824468613,-0.15709863603115,-0.22468514740467],[-0.050557773560286,-0.07891571521759,0.008258156478405],[-0.11373609304428,0.036578100174665,0.058887980878353]],[[-0.0024405533913523,-0.065279357135296,0.13663196563721],[0.13645076751709,0.18284203112125,-0.016563000157475],[-0.12767554819584,0.10649818181992,-0.2253153026104]],[[0.019107250496745,-0.048799406737089,0.018255010247231],[0.085588552057743,-0.16591562330723,-0.11063379049301],[-0.064733259379864,0.061877951025963,-0.12290014326572]],[[0.058230049908161,0.040460135787725,-0.2766384780407],[0.1105095371604,0.013140483759344,-0.11441081017256],[0.074199214577675,0.016830835491419,-0.095251597464085]],[[0.066743969917297,-0.14985713362694,0.052330531179905],[0.12726280093193,-0.024246605113149,-0.035539321601391],[-0.024309316650033,-0.10085693746805,-0.034457139670849]],[[-0.16049692034721,0.030931452289224,-0.029023192822933],[0.01415316388011,0.059352669864893,0.031424138695002],[-0.047992546111345,0.033111605793238,0.057792343199253]],[[0.16766361892223,-0.010483901947737,-0.10231209546328],[0.10487457364798,0.034353654831648,-0.11134784668684],[0.12830130755901,0.10748209804296,-0.058351293206215]],[[-0.07574088126421,-0.04587210342288,-0.094336308538914],[-0.011875269934535,0.022654490545392,0.079479329288006],[-0.025226814672351,0.032018043100834,0.01093845628202]],[[-0.049604341387749,0.02534612454474,-0.019021542742848],[0.081896230578423,0.097098976373672,0.0462989769876],[0.018131300806999,-0.0042689396068454,0.059030152857304]],[[-0.0019486002856866,0.062939122319221,0.092428490519524],[-0.11219255626202,0.11785086244345,0.109689027071],[-0.01214955560863,-0.0065835504792631,-0.040296576917171]],[[0.18266277015209,0.027353821322322,-0.093834660947323],[0.014173761941493,0.052236467599869,-0.046598467975855],[-0.019545981660485,-0.061291795223951,-0.023603366687894]],[[-0.20363555848598,0.053502321243286,0.23904125392437],[-0.046496085822582,-0.069889448583126,-0.033553250133991],[-0.12008661031723,0.072485566139221,0.084818258881569]],[[-0.11074588447809,-0.054932106286287,-0.10705874860287],[0.077279567718506,-0.1052438467741,-0.1256040930748],[0.12091062217951,-0.044896151870489,0.05186340212822]],[[-0.042574256658554,-0.094419732689857,-0.073560446500778],[0.012280714698136,0.043661128729582,-0.080447889864445],[0.010622875764966,0.13117258250713,0.050938814878464]],[[-0.16757263243198,0.084169633686543,0.16351303458214],[0.010019261389971,0.015463147312403,-0.047311019152403],[0.069831982254982,0.098684519529343,-0.10007558017969]],[[0.17341865599155,-0.099642381072044,-0.036056596785784],[0.093829214572906,-0.05213376507163,0.095556937158108],[-0.081182070076466,-0.016472496092319,0.038676086813211]],[[-0.030869847163558,0.053742669522762,0.015329150483012],[-0.002312621101737,-0.0043101185001433,-0.076672613620758],[0.044557265937328,-0.14253796637058,-0.11610671877861]],[[0.014302369207144,-0.010511734522879,0.12715983390808],[0.02641318552196,-0.011341576464474,0.059475157409906],[-0.1431583315134,-0.032846640795469,0.023899791762233]],[[0.044177740812302,-0.016055658459663,-0.10240985453129],[-0.0068064918741584,-0.098398312926292,-0.28777101635933],[0.12198876589537,-0.023940900340676,-0.11479499936104]],[[0.089501932263374,-0.011344416067004,-0.0037645555566996],[0.027866832911968,-0.044423058629036,0.016051994636655],[0.13714337348938,-0.035520751029253,0.100610665977]],[[-0.014250259846449,-0.0210792850703,0.084543496370316],[-0.10556577891111,0.063344389200211,0.040079046040773],[-0.067083746194839,-0.043421290814877,0.059711188077927]],[[0.23176147043705,-0.0099730519577861,0.1121522039175],[-0.11165424436331,-0.020841648802161,0.052420154213905],[0.053003676235676,0.19667845964432,0.054930850863457]],[[0.080774769186974,-0.063540011644363,-0.37580305337906],[0.010511814616621,0.038397986441851,-0.23285853862762],[0.15938013792038,-0.15525941550732,-0.18085625767708]],[[-0.26455429196358,0.0071440772153437,-0.047707732766867],[0.11953126639128,0.030609311535954,0.092959150671959],[0.12122754007578,0.016817804425955,-0.14190955460072]],[[0.20079998672009,-0.048234350979328,0.082441098988056],[0.014939413405955,-0.08100376278162,0.061992906033993],[0.026678761467338,-0.1603677123785,-0.049040488898754]],[[0.034258048981428,-0.021332625299692,-0.048601064831018],[-0.10271909087896,-0.168079033494,0.056611083447933],[0.13157026469707,0.00024016786483116,0.060362000018358]],[[0.013543975539505,-0.20426285266876,0.054684557020664],[0.10980565100908,-0.12566179037094,0.041224621236324],[0.13381673395634,-0.11131032556295,-0.25815570354462]],[[0.2313586473465,-0.060176514089108,-0.079743973910809],[-0.0017886641435325,0.055629637092352,0.045245990157127],[-0.11287125945091,0.1068377494812,-0.1491444259882]],[[0.041522711515427,-0.025787211954594,0.23223240673542],[0.080509252846241,-0.062238585203886,-0.022055607289076],[-0.060221195220947,-0.05167380720377,-0.049448866397142]],[[-0.099812462925911,-0.08775383234024,0.19188205897808],[0.061379782855511,0.14067961275578,-0.056457124650478],[-0.063221633434296,0.038244687020779,-0.22249460220337]],[[0.091785863041878,0.13174991309643,-0.2469339966774],[-0.02014297991991,0.10133012384176,-0.078733123838902],[0.085412256419659,0.039579045027494,-0.11006498336792]],[[0.085586965084076,-0.10398715734482,0.095894053578377],[-0.0209990888834,-0.27440506219864,-0.014730577357113],[-0.15014369785786,-0.065236546099186,0.025155622512102]],[[0.014827905222774,0.005841476842761,0.11556506156921],[-0.026642126962543,-0.068268746137619,0.034476596862078],[0.056416124105453,-0.097499996423721,0.097950600087643]],[[-0.039309028536081,-0.036410007625818,-0.14834609627724],[-0.13263410329819,0.0062919715419412,0.17085376381874],[0.11279297620058,-0.13137497007847,0.0012532498221844]],[[-0.11694596707821,0.017901256680489,-0.079957246780396],[0.033342320472002,0.06283388286829,0.12196565419436],[-0.034415174275637,-0.065142087638378,-0.0041683842428029]],[[0.066872887313366,0.050805922597647,-0.048760134726763],[-0.12065507471561,0.036417346447706,-0.086218379437923],[0.057962149381638,-0.13649950921535,0.16727039217949]],[[0.12926664948463,-0.00072837324114516,-0.16399531066418],[-0.07450208067894,-0.13336175680161,0.050483778119087],[0.081208221614361,0.02311790548265,-0.0019500141497701]],[[0.012813875451684,-0.027498466894031,0.013080119155347],[0.099415451288223,0.046962510794401,0.0010740173747763],[0.13029803335667,-0.048475611954927,-0.20989359915257]],[[-0.051014307886362,0.13246807456017,0.19575805962086],[0.04461270198226,-0.19595053792,-0.076898545026779],[-0.064083866775036,-0.13375648856163,0.061383329331875]],[[-0.021283680573106,-0.0068537867628038,-0.16031520068645],[-0.015573112294078,-0.13428175449371,-0.15639318525791],[0.026178907603025,-0.1458186507225,-0.052823152393103]],[[-0.049913018941879,0.062320414930582,0.021113891154528],[0.10720112174749,-0.064620725810528,-0.10352255403996],[0.033808551728725,-0.041159238666296,-0.098373599350452]]],[[[0.053535453975201,0.072327621281147,-0.011084635742009],[-0.028885677456856,-0.12130955606699,-0.00960046146065],[-0.13069681823254,0.03037747181952,-0.13941469788551]],[[0.0182661768049,-0.11386066675186,0.032190311700106],[-0.067562848329544,-0.050817590206861,0.017638055607677],[0.072348318994045,0.025918086990714,0.019302193075418]],[[-0.041059646755457,0.029681364074349,0.17118713259697],[-0.061985593289137,-0.088447324931622,-0.083532474935055],[-0.083789266645908,0.0078332582488656,-0.11937959492207]],[[-0.091389074921608,-0.07238931953907,0.030186962336302],[-0.15545085072517,-0.022652672603726,-0.11546548455954],[-0.056098405271769,-0.01258163806051,0.020291980355978]],[[0.13089102506638,-0.15311120450497,-0.022979810833931],[-0.046448033303022,-0.073842622339725,-0.059285875409842],[0.093087561428547,0.0019490706035867,0.042953368276358]],[[0.033190663903952,0.04189932718873,-0.0060331108979881],[-0.11517529189587,1.1670952517306e-05,-0.1420806646347],[0.047260500490665,-0.059398248791695,-0.17862643301487]],[[0.018941342830658,0.11608222126961,0.051916673779488],[-0.13044972717762,-0.015039936639369,-0.015153142623603],[-0.036381714046001,-0.071965128183365,-0.053402528166771]],[[0.045106165111065,0.061709046363831,-0.059088844805956],[0.070623658597469,0.041076183319092,-0.10665013641119],[0.047104850411415,0.040785308927298,-0.12019500881433]],[[0.039151914417744,0.010849092155695,-0.0078896135091782],[-0.002295637037605,0.015175621956587,-0.07580391317606],[-0.073673494160175,0.052946984767914,-0.007506269030273]],[[0.06568643450737,-0.0034847389906645,0.11575053632259],[0.12210606783628,-0.037278980016708,0.068664245307446],[-0.084568612277508,-0.10241530835629,-0.018079301342368]],[[-0.11199644207954,0.14766849577427,-0.035912949591875],[-0.14174675941467,0.037732221186161,0.08384720236063],[0.034974474459887,-0.060190234333277,-0.13431914150715]],[[-0.095502741634846,0.10290063917637,0.011400188319385],[-0.010784101672471,0.060271207243204,-0.14741870760918],[-0.0024698150809854,-0.11983004212379,0.070893622934818]],[[-0.042919106781483,-0.013364993035793,0.0019109708955511],[-0.032371029257774,0.052119582891464,0.043465632945299],[0.090109191834927,0.055294506251812,-0.10439810156822]],[[-0.23491069674492,0.03917607665062,0.033863719552755],[-0.10240308195353,-0.053458668291569,0.053353812545538],[0.1162770986557,0.060121674090624,0.13801762461662]],[[-0.00043986790115014,0.097806051373482,-0.012178502045572],[-0.093860387802124,-0.061217620968819,-0.15749537944794],[0.23593185842037,-0.12253474444151,-0.0470773242414]],[[0.032408818602562,-0.020632945001125,-0.043687008321285],[-0.024855885654688,-0.15200021862984,-0.21329255402088],[0.1305965334177,-0.12389180064201,-0.11686144024134]],[[0.055308986455202,-0.13946868479252,-0.063679449260235],[0.12091969698668,0.10264649242163,0.060200423002243],[0.11776971817017,0.0080503690987825,0.057107266038656]],[[0.11107894033194,0.038515169173479,-0.11916755139828],[-0.033014744520187,0.039347697049379,-0.16841958463192],[0.041626982390881,-0.090398028492928,-0.089187376201153]],[[0.045948870480061,-0.11093258112669,-0.10463508963585],[-0.032410159707069,-0.012747658416629,-0.065143443644047],[0.0061716423369944,0.013735434040427,0.085975021123886]],[[-0.065623439848423,-0.18507087230682,-0.012990007176995],[0.071404159069061,-0.13385105133057,0.085868157446384],[0.021317295730114,-0.29360553622246,0.017908718436956]],[[-0.043725065886974,0.013365734368563,-0.064092747867107],[-0.034556705504656,0.054872818291187,-0.0020211597438902],[-0.16551725566387,-0.053667396306992,0.12991441786289]],[[0.031152620911598,-0.22507134079933,-0.14378206431866],[-0.042113166302443,-0.16959628462791,-0.29199576377869],[0.052898827940226,-0.04500000551343,0.016041057184339]],[[0.021351477131248,-0.064846180379391,-0.044423740357161],[-0.046702694147825,-0.082841001451015,0.03038964048028],[-0.10301991552114,-0.016254406422377,-0.01506279129535]],[[-0.13659578561783,-0.034092023968697,-0.15073037147522],[-0.013319850899279,-0.1184556633234,-0.063580490648746],[-0.059671271592379,0.097426921129227,-0.17944550514221]],[[0.012136330828071,0.14306323230267,-0.091594897210598],[0.010660545900464,0.0010500410571694,0.037012599408627],[0.042359825223684,-0.013831734657288,-0.05870584025979]],[[-0.047360185533762,0.010771830566227,0.035739034414291],[0.055973332375288,0.026887603104115,-0.045294068753719],[-0.11252953112125,-0.050075009465218,0.0042229956015944]],[[0.050461284816265,0.10818926244974,0.054311659187078],[0.059070788323879,-0.05425450950861,-0.066626466810703],[-0.020891619846225,-0.1004998460412,0.0059718331322074]],[[-0.15552189946175,-0.052214786410332,0.012696682475507],[-0.03445903211832,-0.049716185778379,-0.11225554347038],[-0.10175461322069,-0.064070448279381,0.010683367028832]],[[0.14154455065727,-0.066203020513058,-0.15646766126156],[-0.012845602817833,-0.1631378531456,-0.084539487957954],[-0.069744534790516,0.023350888863206,0.09185117483139]],[[0.028722768649459,-0.030851226300001,0.21617765724659],[0.058500710874796,-0.0066882101818919,0.098381541669369],[0.034331038594246,0.047388009727001,-0.1527466326952]],[[0.19007357954979,-0.036549583077431,0.04031440988183],[-0.14236600697041,-0.036663766950369,0.17914786934853],[-0.03734552487731,0.1342678964138,0.078431688249111]],[[-0.025961272418499,-0.013902598060668,-0.032822459936142],[-0.052098039537668,0.047609392553568,0.054321460425854],[0.0062029622495174,0.01302595064044,0.1461269557476]],[[-0.0076955338008702,-0.10343386232853,-0.024711290374398],[0.088793076574802,0.029971772804856,-0.050565760582685],[-0.05122509598732,-0.019258243963122,-0.024868194013834]],[[-0.0059487405233085,-0.012291140854359,-0.0014465397689492],[0.035581033676863,0.025023099035025,-0.072703242301941],[0.17166215181351,-0.15141543745995,-0.056918650865555]],[[0.011253115721047,-0.11955909430981,0.066604614257812],[-0.13641747832298,0.077315829694271,-0.058222901076078],[-0.030934689566493,0.045816499739885,0.054343689233065]],[[0.041230950504541,-0.092002600431442,-0.11755768209696],[0.036260850727558,0.089964173734188,-0.036543723195791],[-0.10627085715532,-0.08675567060709,-0.083618596196175]],[[0.042913142591715,-0.1036893427372,-0.13633561134338],[0.077610731124878,0.0090854205191135,0.045419722795486],[0.012062048539519,0.028091566637158,0.026098471134901]],[[-0.23866176605225,0.043473567813635,0.11059039086103],[-0.083746649324894,0.067047111690044,0.092942215502262],[0.05078399553895,-0.14728166162968,-0.021964509040117]],[[0.018210673704743,0.15093165636063,0.15609058737755],[-0.028468117117882,-0.093654222786427,0.026439428329468],[-0.022538032382727,0.035955592989922,-0.038678884506226]],[[0.057344399392605,-0.071670047938824,0.057435370981693],[0.14455057680607,0.020893085747957,0.0031185694970191],[-0.0015261155785993,0.1318204253912,-0.26707270741463]],[[0.16978044807911,-0.1966325044632,0.10009023547173],[0.019979177042842,0.0082502169534564,0.079816251993179],[0.051305547356606,0.055388912558556,0.16275554895401]],[[0.05387981235981,0.06447184830904,-0.048675414174795],[0.024968139827251,0.08871441334486,0.14525040984154],[-0.075315780937672,-0.093087993562222,-0.095813170075417]],[[0.10413035750389,-0.031307879835367,-0.13842941820621],[-0.004416371230036,0.074459418654442,0.091907076537609],[-0.076669804751873,0.014795422554016,-0.0050933412276208]],[[-0.055894631892443,-0.051001664251089,0.017914252355695],[0.026487549766898,-0.033933728933334,0.099607110023499],[-0.015283860266209,-0.0074833747930825,-0.02975569665432]],[[-0.082490958273411,0.013503191061318,-0.057590343058109],[0.027110528200865,0.036395646631718,0.1163734793663],[0.20521906018257,0.0087118251249194,0.076243303716183]],[[-0.034414514899254,-0.051239460706711,0.12700608372688],[-0.16983403265476,-0.13458579778671,0.21059940755367],[-0.081422634422779,-0.080104768276215,0.0043943305499852]],[[0.00089746923185885,0.093837961554527,-0.034645706415176],[0.1053234115243,0.015013470314443,0.06896847486496],[-0.066862769424915,0.047151949256659,-0.0091497534886003]],[[-0.10282141715288,0.074128963053226,0.074588768184185],[-0.19384624063969,0.034034363925457,-0.015113153494895],[0.080678813159466,0.014777629636228,-0.12148250639439]],[[-0.064169675111771,0.16223467886448,0.019111830741167],[0.072135843336582,0.076493591070175,-0.15768456459045],[-0.049017131328583,0.11038569360971,0.18397781252861]],[[-0.073136076331139,-0.082215718924999,0.054008468985558],[-0.063831873238087,-0.020870581269264,0.10094825178385],[0.062057178467512,-0.089091099798679,-0.15259282290936]],[[0.022361764684319,0.0062764622271061,0.11777723580599],[0.053366087377071,-0.13306714594364,-0.028082970529795],[0.040429376065731,0.026643756777048,-0.088391125202179]],[[-0.018440732732415,0.089429587125778,0.14249430596828],[0.00029561395058408,-0.16886693239212,0.065831631422043],[-0.058133460581303,-0.058696836233139,0.038429588079453]],[[-0.038045257329941,0.099513530731201,-0.19772915542126],[-0.011669473722577,-0.10574968159199,0.078345619142056],[-0.14016889035702,0.019908003509045,0.0095163658261299]],[[-0.041663862764835,-0.078430213034153,-0.092024423182011],[0.027089716866612,0.059335377067327,-0.068795867264271],[0.021571394056082,-0.12313537299633,-0.24172396957874]],[[-0.0096086272969842,0.0046243914403021,-0.13062396645546],[-0.026008849963546,-0.0080192964524031,0.0025168841239065],[-0.075311988592148,-0.059668738394976,0.11867398023605]],[[-0.069878965616226,-0.23502473533154,-0.010700587183237],[-0.025180796161294,0.050921097397804,-0.14580529928207],[0.044986654073,-0.021775322034955,0.046931184828281]],[[0.10920396447182,-0.012682212516665,-0.029088506475091],[0.0078362915664911,0.027175279334188,-0.0045128492638469],[-0.081873908638954,0.14070038497448,-0.1336510181427]],[[-0.035249650478363,-0.1328476369381,-0.098228834569454],[0.012910652905703,0.069531910121441,-0.0068525648675859],[0.020352305844426,-0.023798083886504,0.032426849007607]],[[0.039335653185844,-0.083998955786228,-0.11130721867085],[-0.032380644232035,-0.1326861679554,-0.11014234274626],[-0.017306391149759,0.020639546215534,-0.14052568376064]],[[0.075253896415234,-0.02190257050097,0.12133718281984],[0.13493455946445,0.062212567776442,0.038870744407177],[0.12462405860424,-0.010624804534018,-0.035542037338018]],[[-0.088169880211353,-0.13858836889267,0.051797769963741],[-0.13032224774361,-0.0902279317379,-0.15446145832539],[-0.11214111745358,-0.21866935491562,-0.038937471807003]],[[-0.0079364562407136,0.12801986932755,-0.10939936339855],[0.12662795186043,-0.093314148485661,0.085583209991455],[-0.096212662756443,-0.049778293818235,-0.12228647619486]],[[0.054304324090481,-0.0048108408227563,0.048494938760996],[0.075257867574692,-0.015073497779667,-0.076569758355618],[-0.02894482947886,-0.11914385855198,-0.096622474491596]],[[0.012302901595831,0.025370677933097,0.04272535443306],[-0.00013805412163492,-0.13146187365055,0.029782369732857],[-0.12128774821758,-0.026545187458396,-0.062530532479286]]],[[[-0.12231446057558,0.14337974786758,0.11598463356495],[0.013744685798883,0.069869257509708,0.017668277025223],[-0.028047317638993,0.042791169136763,0.24108284711838]],[[0.17439486086369,-0.051003310829401,-0.039826840162277],[0.018583970144391,0.13425327837467,-0.022283772006631],[-0.085118986666203,0.028644362464547,-0.30098205804825]],[[-0.056922633200884,0.19678992033005,-0.2308737039566],[0.11987225711346,-0.0039872229099274,-0.10979132354259],[-0.10698130726814,-0.029509700834751,0.18689301609993]],[[-0.32703518867493,0.038969926536083,0.12567754089832],[0.013028468936682,-0.07523550838232,-0.0016925433883443],[-0.040657512843609,-0.045412980020046,-0.16602498292923]],[[0.13004797697067,-0.18246418237686,0.072832308709621],[-0.11856196075678,0.046196945011616,0.046500716358423],[-0.25861975550652,0.025308221578598,-0.10912608355284]],[[-0.11347553133965,-0.031665321439505,-0.018492421135306],[0.022523604333401,0.14491125941277,-0.1844277381897],[-0.037355810403824,-0.047394592314959,0.1345292031765]],[[-0.18438448011875,0.11631202697754,-0.10130272060633],[0.045874271541834,-0.23903959989548,-0.048637844622135],[0.011862767860293,-0.20159204304218,-0.093127347528934]],[[0.10674763470888,-0.1219685152173,0.098671689629555],[-0.12136946618557,0.12561340630054,0.23649208247662],[0.1094359382987,0.19310180842876,-0.041380789130926]],[[-0.08628511428833,0.065738148987293,-0.035797573626041],[0.042672004550695,-0.0052342405542731,-0.0056020966731012],[-0.039361868053675,-0.0658989995718,0.037594087421894]],[[-0.056408453732729,0.078121371567249,-0.30748423933983],[-0.036708656698465,0.10562451183796,-0.17254832386971],[0.035028226673603,0.093241028487682,-0.052817121148109]],[[-0.17124167084694,0.040428578853607,-0.27057102322578],[0.078578881919384,0.056151319295168,-0.013983958400786],[0.021979074925184,0.015499173663557,0.11137683689594]],[[-0.1031142026186,-0.10288408398628,-0.071345143020153],[-0.025280391797423,0.06593070179224,0.061308212578297],[0.04587784409523,-0.10887414962053,0.045482140034437]],[[0.021341640502214,0.028551751747727,0.13624447584152],[-0.11351366341114,-0.14142401516438,-0.10081121325493],[-0.036419242620468,-0.010897820815444,-0.054238133132458]],[[0.1306274831295,-0.061472877860069,-0.057515274733305],[-0.13900724053383,-0.023647973313928,0.12250948697329],[-0.1136432737112,0.014846238307655,0.15478397905827]],[[0.24807591736317,-0.05511961132288,-0.39234054088593],[0.2443839609623,-0.025890033692122,-0.21156646311283],[0.095126688480377,0.063622310757637,-0.11885392665863]],[[0.0055716140195727,-0.030089814215899,-0.10667530447245],[-0.0070970593951643,0.068594194948673,-0.073007017374039],[0.049222372472286,-0.019024176523089,0.11155627667904]],[[-0.013772582635283,0.033058788627386,0.20265474915504],[0.11991498619318,-0.19525222480297,0.18975661695004],[-0.080137722194195,0.079674854874611,-0.19994649291039]],[[-0.078252896666527,0.11068868637085,-0.049293678253889],[0.037921030074358,0.020681506022811,0.14749471843243],[0.13327616453171,0.081937521696091,-0.027697481215]],[[-0.00456139491871,0.055389910936356,0.029155572876334],[0.12177103757858,0.032900046557188,0.043210186064243],[0.023333694785833,0.010239456780255,0.010542207397521]],[[0.00075069844024256,0.13021767139435,0.1422548443079],[0.0044113150797784,-0.042167484760284,-0.0065472847782075],[-0.014941297471523,0.052901156246662,0.08168987184763]],[[0.16236136853695,-0.11640297621489,-0.25003525614738],[-0.063898980617523,-0.10438947379589,-0.19314035773277],[0.027456345036626,-0.078181840479374,-0.010049055330455]],[[-0.029095336794853,-0.080287851393223,0.15000431239605],[0.057523608207703,-0.038920748978853,-0.092634856700897],[0.16926746070385,-0.04717006906867,-0.091459967195988]],[[-0.1585106253624,0.098858408629894,-0.017886348068714],[-0.033225521445274,0.016910118982196,0.033430080860853],[-0.1990225315094,-0.0024670055136085,0.042489662766457]],[[0.063675977289677,0.018570525571704,-0.12870581448078],[0.070953272283077,-0.010042388923466,0.038874059915543],[-0.082198083400726,-0.21015486121178,0.092823378741741]],[[-0.018913934007287,-0.20629519224167,0.041163507848978],[0.009228328242898,0.15567681193352,0.020794162526727],[0.20715744793415,-0.088250041007996,0.16441164910793]],[[0.025141088292003,-0.020141385495663,-0.22880961000919],[-0.017986575141549,-0.084450043737888,-0.024228923022747],[0.11189745366573,-0.053012296557426,-0.084193982183933]],[[0.0072725312784314,-0.045509237796068,0.16659441590309],[0.005729419644922,-0.10365381091833,0.051753621548414],[0.027782946825027,0.052057951688766,-0.028476629406214]],[[-0.12285264581442,-0.012870437465608,-0.19569163024426],[0.0023243802133948,-0.033193092793226,-0.073026180267334],[-0.21611766517162,-0.078504405915737,-0.0028337219264358]],[[-0.081694431602955,-0.032214913517237,0.012487900443375],[-0.017706407234073,-0.17753244936466,0.051267798990011],[0.19440625607967,-0.02217910066247,-0.036638841032982]],[[-0.084708616137505,-0.096214301884174,0.024853343144059],[-0.11370369791985,0.20757657289505,-0.16739241778851],[0.082621805369854,-0.038731005042791,0.055972389876842]],[[-0.026555011048913,-0.074148774147034,-0.15918019413948],[-0.018906217068434,-0.0021854219958186,0.020436787977815],[0.2078683078289,-0.086119793355465,-0.078845106065273]],[[-0.13784657418728,0.060624416917562,-0.075849622488022],[-0.075169757008553,0.053035799413919,-0.06210296228528],[0.14589568972588,-0.0065691778436303,-0.083872020244598]],[[-0.016324602067471,-0.0035493113100529,0.054677467793226],[-0.051478922367096,-0.092949509620667,-0.1925887465477],[0.011464970186353,-0.032196696847677,-0.1236167922616]],[[-0.22031687200069,-0.1637604534626,-0.090540960431099],[-0.10279069840908,-0.090820387005806,0.016411505639553],[0.04600677639246,0.021605113521218,0.052781943231821]],[[0.0421610660851,0.19577443599701,-0.14760668575764],[-0.027057006955147,-0.27175390720367,-0.093568898737431],[-0.025582967326045,0.1112702190876,-0.19006092846394]],[[-0.082318194210529,0.0055083874613047,-0.28791990876198],[0.0092427423223853,0.096522606909275,0.036689460277557],[0.061566278338432,0.09431179612875,-0.041134290397167]],[[-0.013549651019275,0.087567366659641,0.031283501535654],[-0.027549423277378,0.1657659560442,-0.16216687858105],[0.089828215539455,0.045028701424599,0.082971207797527]],[[0.051949605345726,-0.076754048466682,0.15151964128017],[0.036452736705542,-0.0044593098573387,-0.034033514559269],[0.11759806424379,0.028339156880975,0.20193721354008]],[[-0.17069527506828,-0.016320841386914,0.011815491132438],[0.09633482247591,-0.19263921678066,0.051540438085794],[0.005393581930548,0.18052926659584,-0.0025304406881332]],[[0.020726850256324,0.086902916431427,-0.12939675152302],[0.027352474629879,0.045269425958395,0.06622738391161],[0.10362081229687,-0.07434768974781,-0.054311104118824]],[[0.15372833609581,-0.048095058649778,0.14724944531918],[-0.11533265560865,0.15119029581547,-0.1174511089921],[0.086042806506157,-0.034939408302307,0.049375925213099]],[[0.019410237669945,0.1596264988184,-0.13523297011852],[-0.0087203159928322,0.057491362094879,-0.32792019844055],[-0.049212094396353,-0.027030875906348,0.059709895402193]],[[-0.061017777770758,0.022266542539001,0.0029906940180808],[-0.16393466293812,-0.10820619016886,0.00038022705120966],[0.066496774554253,-0.0067305373959243,-0.00035220268182456]],[[0.049357943236828,-0.016464481130242,-0.012203436344862],[-0.089580476284027,-0.025661081075668,0.10212749987841],[-0.009924691170454,0.0012828956823796,0.049633223563433]],[[0.22502648830414,-0.20378661155701,-0.098733805119991],[0.12416115403175,-0.001303412951529,0.12669044733047],[-0.14624287188053,-0.052083220332861,-0.13257473707199]],[[0.22885273396969,-0.0018706115661189,-0.2660513818264],[-0.16623219847679,-0.069918483495712,0.1961038261652],[0.17611058056355,-0.077252209186554,0.036664586514235]],[[-0.13662806153297,0.15076187252998,-0.14772629737854],[0.048083428293467,-0.11556799709797,-0.025444075465202],[0.17421992123127,-0.032129485160112,-0.044013042002916]],[[-0.076017655432224,-0.089981384575367,0.088233321905136],[-0.011293455027044,-0.071526281535625,-0.07412676513195],[-0.092808000743389,-0.065528526902199,-0.045925781130791]],[[-0.013852553442121,-0.014192630536854,-0.06245594099164],[0.046406295150518,-0.1634728461504,0.036435484886169],[0.030625099316239,-0.11254883557558,-0.020330650731921]],[[0.035444304347038,-0.095932371914387,-0.0086525222286582],[0.23935081064701,-0.03150424733758,-0.14609780907631],[-0.01668924279511,0.043037611991167,-0.010446511209011]],[[0.074486315250397,0.0086396895349026,0.070351228117943],[-0.13923417031765,-0.0017899291124195,-0.010547638870776],[0.11534636467695,-0.062271125614643,0.049871113151312]],[[-0.050155602395535,-0.14990998804569,0.083532251417637],[-0.14483135938644,0.070475913584232,0.16373066604137],[0.056291580200195,-0.21381291747093,0.047468092292547]],[[-0.048637446016073,0.064818501472473,-0.12959037721157],[0.082860045135021,-0.089892700314522,-0.14406141638756],[0.13189405202866,-0.13545405864716,-0.13931262493134]],[[-0.054974466562271,0.042874019593,-0.13206104934216],[-0.029539052397013,-0.085961744189262,-0.20079526305199],[0.18225580453873,0.146139934659,0.085025526583195]],[[0.10636231303215,-0.064237393438816,0.153116568923],[-0.087111361324787,-0.078555002808571,-0.041232667863369],[-0.10239358246326,-0.011966653168201,-0.036269869655371]],[[-0.10214508324862,-0.056515853852034,0.26014161109924],[-0.063194341957569,-0.093121960759163,0.13550646603107],[0.08269876241684,-0.15442538261414,0.13225574791431]],[[-0.13419035077095,-0.081919193267822,-0.028469422832131],[0.057695299386978,-0.14287935197353,-0.21208369731903],[-0.21212220191956,0.13005603849888,-0.062402065843344]],[[0.25802263617516,0.04868596419692,-0.17716473340988],[0.071333959698677,5.529942427529e-06,0.022070847451687],[-0.12317942082882,-0.019153188914061,0.10611590743065]],[[0.034804716706276,0.12814012169838,-0.040179900825024],[0.030708588659763,0.071940869092941,-0.17777015268803],[0.074570514261723,0.040943875908852,0.18374451994896]],[[-0.15083685517311,0.049623388797045,0.12240991741419],[0.051420446485281,0.0063155055977404,0.057458218187094],[0.029723234474659,-0.0027335037011653,0.011030871421099]],[[-0.18142040073872,-0.067020617425442,-0.08115466684103],[-0.18968823552132,0.0360974855721,-0.028213707730174],[0.05885261297226,-0.025202289223671,-0.18655346333981]],[[-0.079525217413902,-0.12520876526833,-0.009590164758265],[0.13321706652641,0.028569946065545,-0.024628994986415],[0.027989195659757,0.13250707089901,0.12015168368816]],[[-0.041112694889307,0.038960102945566,-0.034917578101158],[0.059308618307114,0.037385035306215,0.047033291310072],[-0.24925638735294,-0.14447754621506,0.051834389567375]],[[0.12320041656494,-0.20873580873013,-0.039322882890701],[0.19670206308365,-0.18540458381176,-0.14829771220684],[0.11681091040373,0.10374268889427,0.25798958539963]]],[[[-0.016379402950406,-0.0056830635294318,0.10201127827168],[0.07812974601984,-0.1157211214304,-0.079765297472477],[0.18017287552357,-0.021604027599096,-0.27073207497597]],[[0.031545739620924,-0.020034313201904,0.092188492417336],[-0.050312235951424,0.056262113153934,0.029351230710745],[0.057358685880899,-0.07128894329071,0.046083521097898]],[[0.089201882481575,-0.10445450991392,-0.05763840675354],[0.037531960755587,-0.1378511339426,0.045511182397604],[-0.084973588585854,-0.044342026114464,-0.28575339913368]],[[-0.033231254667044,-0.028207907453179,0.056721072643995],[0.091286540031433,-0.008861537091434,-0.060639660805464],[-0.015532290562987,-0.031182922422886,-0.068973161280155]],[[0.13547779619694,-0.066865161061287,0.014271709136665],[0.062968768179417,-0.10257171094418,-0.047977428883314],[0.08800233155489,0.10221467912197,-0.0067482558079064]],[[-0.25897505879402,0.0085398936644197,-0.26208424568176],[-0.08198343962431,0.10154396295547,0.1528535336256],[-0.10851513594389,0.062905572354794,-0.20114298164845]],[[-0.16401648521423,0.042318783700466,-0.027413751929998],[0.056952185928822,0.025599122047424,-0.0099607370793819],[-0.047059010714293,0.067655555903912,0.038360122591257]],[[-0.16225922107697,-0.094686709344387,0.080904521048069],[-0.066776104271412,-0.0061991531401873,0.078297697007656],[0.1214155331254,-0.065645448863506,0.037894267588854]],[[0.077672868967056,-0.04004018753767,0.066626533865929],[-0.055415768176317,-0.050376880913973,0.074098281562328],[-0.041172999888659,-0.021754428744316,-0.018265295773745]],[[-0.10212214291096,0.11053851246834,-0.34183689951897],[-0.063209168612957,0.12526488304138,-0.0022774008102715],[-0.093854382634163,-0.008910084143281,0.080779410898685]],[[0.050656259059906,-0.0088087543845177,-0.004671914037317],[0.18888856470585,0.0071697388775647,-0.029010219499469],[-0.013520845212042,0.006858725566417,0.033937908709049]],[[0.051314186304808,-0.012643391266465,0.15547366440296],[-0.12105752527714,-0.11278729140759,0.075599007308483],[0.0023814993910491,-0.097206272184849,-0.050789009779692]],[[-0.06077765673399,0.16869542002678,0.072282239794731],[-0.14642685651779,0.030208326876163,-0.077142186462879],[-0.036570686846972,-0.0033291887957603,0.17166818678379]],[[0.17931579053402,-0.056289426982403,-0.035520851612091],[0.15384232997894,0.056369390338659,0.075409829616547],[-0.06439121812582,-0.065579876303673,-0.086677066981792]],[[0.013418156653643,0.033547889441252,-0.14283415675163],[-0.096760585904121,0.076783642172813,-0.13785468041897],[-0.05413655936718,0.074340537190437,-0.20804269611835]],[[0.023118618875742,-0.1529705375433,0.072161287069321],[0.097760207951069,-0.17759324610233,0.11507505178452],[-0.15676295757294,0.17507201433182,0.025935489684343]],[[0.14870738983154,0.012552795931697,0.13855405151844],[0.042410254478455,0.090475082397461,0.0058226324617863],[0.020134577527642,0.11672822386026,-0.038858212530613]],[[0.14013265073299,-0.20494209229946,-0.087490633130074],[0.13900692760944,-0.023968003690243,0.0157525613904],[0.17774677276611,0.067709922790527,0.066813193261623]],[[0.0023404329549521,0.26212337613106,-0.087634265422821],[0.16403768956661,0.044637959450483,-0.037915643304586],[0.019945258274674,0.055550552904606,-0.059808593243361]],[[0.20651376247406,-0.14247725903988,-0.096395939588547],[0.076171658933163,0.041251573711634,0.097566738724709],[0.021040249615908,-0.09833662956953,0.0067984792403877]],[[-0.037493985146284,-0.10331770032644,-0.21671865880489],[0.12472714483738,0.0047682411968708,-0.12689253687859],[-0.060697443783283,0.0054119792766869,-0.12693908810616]],[[-0.11776398122311,-0.021790277212858,0.021691586822271],[0.0046531385742128,-0.047904510051012,0.031400803476572],[-0.038656011223793,-0.015406453981996,-0.029519621282816]],[[-0.05724323540926,-0.034639492630959,-0.02630359120667],[-0.096118927001953,0.05770393460989,0.087687999010086],[0.0092093124985695,-0.022097432985902,-0.10611813515425]],[[-0.084072858095169,0.048292919993401,0.15214827656746],[-0.028389593586326,-0.00067024532472715,-0.29689356684685],[-0.13183087110519,0.00017515977378935,-0.21685948967934]],[[0.019192418083549,-0.032206930220127,-0.032063893973827],[-0.14544448256493,0.060803096741438,0.041627027094364],[-0.099935173988342,-0.0655138194561,-0.13321180641651]],[[0.067406177520752,-0.11895072460175,0.040513228625059],[0.037099480628967,-0.017366882413626,-0.083282247185707],[0.11253102868795,0.097764931619167,0.0080869775265455]],[[-0.14222645759583,-0.0055206753313541,0.13647019863129],[-0.072126872837543,-0.054131079465151,0.086323790252209],[-0.20745356380939,-0.20157851278782,0.038877654820681]],[[-0.031971797347069,0.01663963124156,-0.099820643663406],[-0.067506179213524,0.033343028277159,-0.065169252455235],[-0.15511567890644,0.13757038116455,0.099936328828335]],[[0.015117049217224,0.102145165205,-0.062587514519691],[0.13436737656593,-0.033195916563272,0.098552249372005],[-0.16059754788876,0.025964034721255,-0.01479734107852]],[[-0.055729180574417,-0.0053390827961266,-0.022456385195255],[0.012423822656274,-0.003436844330281,0.053986255079508],[-0.11644551903009,-0.2814689874649,0.021564675495028]],[[-0.0699707493186,0.072791136801243,0.16335463523865],[-0.018441677093506,-0.052681256085634,0.017773339524865],[-0.027501445263624,-0.094256438314915,0.09186302870512]],[[-0.093024298548698,-0.066655151546001,-0.10314274579287],[-0.086520381271839,-0.037593718618155,-0.053449939936399],[0.0096910772845149,-0.0077700559049845,0.0040960977785289]],[[0.0066873799078166,0.051337234675884,-0.10571929812431],[-0.11155361682177,-0.0080149881541729,0.11089950799942],[-0.14569047093391,0.10791367292404,0.072728112339973]],[[-0.025200378149748,0.0049393121153116,-0.21125002205372],[0.017338337376714,-0.074890971183777,0.052132554352283],[-0.092051886022091,0.14797540009022,0.073706954717636]],[[-0.069560207426548,-0.0066481847316027,0.071339629590511],[-0.11434510350227,-0.015164125710726,-0.19350525736809],[0.15924137830734,-0.050024315714836,-0.15581999719143]],[[-0.13075742125511,-0.058742582798004,-0.0080589670687914],[-0.13819061219692,0.09893636405468,0.16141368448734],[-0.083378784358501,0.04746425524354,0.12159348279238]],[[-0.059737168252468,-0.17255587875843,0.028361845761538],[0.070030204951763,-0.023380601778626,-0.051984287798405],[0.037699483335018,0.048167109489441,-0.07232304662466]],[[0.030428525060415,-0.0079041142016649,0.083606489002705],[0.058594729751348,-0.14163038134575,-0.09548631310463],[0.043877240270376,-0.14055563509464,0.050609644502401]],[[-0.0686976313591,-0.020477030426264,0.23390518128872],[-0.015190146863461,-0.062212746590376,-0.036690030246973],[-0.0012804744765162,-0.11223871260881,-0.13600786030293]],[[0.0089618926867843,-0.061766125261784,-0.010327076539397],[0.050862740725279,-0.048047620803118,0.050418108701706],[-0.084739357233047,0.13950860500336,0.14372117817402]],[[0.07305608689785,-0.11765859276056,0.048816781491041],[0.093451865017414,-0.1002970635891,-0.053039502352476],[0.054194588214159,-0.031891454011202,-0.10127713531256]],[[0.098584905266762,-0.080928385257721,0.054638933390379],[0.013778125867248,0.027605475857854,-0.020411821082234],[-0.11059580743313,0.14056503772736,-0.0012079832376912]],[[-0.014419849961996,0.063134372234344,0.036052156239748],[-0.074347242712975,-0.014563555829227,0.016359744593501],[-0.06503289937973,0.15540036559105,-0.11309485137463]],[[-0.040979325771332,0.025230007246137,0.038521867245436],[0.049804132431746,-0.013730028644204,-0.16554683446884],[0.0026310454122722,0.049761667847633,0.092219933867455]],[[0.044393599033356,-0.13269105553627,0.17350523173809],[-0.005787827540189,-0.21986494958401,0.012165935710073],[-0.036454111337662,0.11337775737047,-0.091660380363464]],[[-0.14643831551075,-0.23575867712498,-0.058451227843761],[-0.15506705641747,-0.012970322743058,-0.18971285223961],[-0.32720771431923,0.20203295350075,-0.12603075802326]],[[-0.12744015455246,0.25666442513466,0.032693073153496],[0.16307431459427,-0.0049439966678619,0.063384063541889],[-0.080868542194366,0.031277880072594,0.0016100916545838]],[[-0.14005902409554,0.048165310174227,0.027171522378922],[-0.032743748277426,-0.054093316197395,0.15872606635094],[-0.12917165458202,-0.15861356258392,0.037042506039143]],[[0.13567879796028,0.0015665589598939,-0.050692930817604],[0.11859598755836,0.024079531431198,-0.09042052924633],[0.030761394649744,-0.11123020201921,-0.15149952471256]],[[0.061165157705545,-0.20560750365257,0.1185689046979],[-0.10706552118063,-0.19057196378708,-0.026157878339291],[-0.055378776043653,-0.047213908284903,0.01050868164748]],[[-0.046537052839994,0.021191854029894,0.067304193973541],[0.037538927048445,0.070245936512947,0.075283125042915],[0.091401174664497,-0.045458063483238,-0.065495945513248]],[[-0.038082875311375,0.047049652785063,-0.064992651343346],[-0.083133541047573,-0.0083091538399458,0.016149999573827],[0.11657921969891,0.10799577832222,-0.023458750918508]],[[-0.12551034986973,0.029088847339153,-0.10134851932526],[-0.034081093966961,-0.06599697470665,-0.093594938516617],[-0.089597761631012,-0.0096577918156981,0.14738903939724]],[[-0.10459142923355,-0.037249177694321,-0.061743192374706],[-0.026593094691634,0.023000160232186,-0.014588859863579],[-0.072968192398548,0.066409975290298,0.16689655184746]],[[-0.046721216291189,0.13911710679531,-0.25929117202759],[0.0053092874586582,0.072658829391003,-0.10865934938192],[0.026566417887807,0.06303758174181,0.0068221525289118]],[[0.062804616987705,-0.18915219604969,0.13217070698738],[-0.083754323422909,-0.0013984062243253,0.031309109181166],[-0.11648563295603,0.021706525236368,0.081085905432701]],[[-0.040048040449619,0.063226729631424,-0.092089109122753],[-0.10144412517548,-0.0096039185300469,-0.026113884523511],[0.027547979727387,0.024306111037731,-0.010117001831532]],[[0.15957495570183,-0.12234208732843,0.092445075511932],[-0.0038391696289182,0.043902222067118,-0.011131964623928],[-0.096582628786564,0.029686387628317,-0.086636438965797]],[[0.043775096535683,-0.037114717066288,-0.06952241808176],[-0.18814957141876,-0.087623611092567,-0.037550050765276],[0.19613009691238,-0.0595225058496,-0.073885902762413]],[[0.050646990537643,0.049938481301069,0.28776770830154],[-0.030714051797986,0.018240416422486,0.044223122298717],[-0.010389604605734,0.051070272922516,0.035147305577993]],[[-0.0068663721904159,-0.084773831069469,-0.17721946537495],[0.0060993582010269,-0.0022487891837955,-0.13038700819016],[-0.05389541387558,0.066828191280365,-0.035754304379225]],[[-0.07971777766943,0.16060277819633,-0.069583140313625],[-0.056112077087164,-0.03395638614893,-0.046351078897715],[-0.11859934031963,0.059043757617474,0.15879790484905]],[[0.070113554596901,-0.090865515172482,0.17072980105877],[-0.070462480187416,-0.071487821638584,0.018419593572617],[-0.087443895637989,-0.079285748302937,0.039016835391521]],[[-0.037838265299797,0.1211666688323,-0.053620513528585],[0.0023979274556041,0.0085226530209184,0.12798731029034],[0.055585708469152,0.060185432434082,0.053073093295097]]],[[[0.05867026373744,0.078350067138672,-0.046373020857573],[-0.11186462640762,-0.033924203366041,-0.13196286559105],[0.030368713662028,0.10506128519773,0.21137121319771]],[[-0.013903898186982,-0.18836446106434,0.076705396175385],[0.1541415899992,0.11799671500921,0.054893862456083],[-0.13449580967426,-0.175327450037,0.047317363321781]],[[0.086280234158039,0.04045132547617,-0.014930859208107],[-0.099658980965614,-0.087375685572624,-0.10023085027933],[0.065919443964958,0.015363876707852,-0.0074582477100194]],[[-0.065155521035194,-0.082549668848515,-0.041353546082973],[0.079826213419437,-0.088740207254887,-0.13178095221519],[0.072951279580593,0.070498622953892,0.090043604373932]],[[0.067603603005409,0.05681474134326,-0.0682178363204],[0.03211535140872,-0.24681763350964,0.025878818705678],[-0.10528465360403,0.063904881477356,-0.13835988938808]],[[-0.053933758288622,-0.31034988164902,0.11592007428408],[0.070199638605118,-0.025437323376536,0.10872171074152],[0.0055606951937079,0.11611016094685,0.026697846129537]],[[0.02171572484076,-0.062440760433674,-0.040909379720688],[-0.011319873854518,-0.026095157489181,-0.071856535971165],[-0.13169057667255,0.053383141756058,0.057043749839067]],[[-0.018623998388648,0.098116606473923,0.15725326538086],[-0.011513793841004,0.061810716986656,0.073649697005749],[-0.094032920897007,0.094847962260246,-0.010784028097987]],[[-0.074509918689728,-0.047627910971642,0.025268280878663],[0.027670592069626,-0.026930805295706,-0.027070228010416],[0.088207952678204,-0.014603436924517,-0.0085028959438205]],[[0.17664586007595,-0.023382132872939,-0.21055099368095],[0.033562514930964,-0.0013900259509683,-0.11424311250448],[-0.1014165058732,-0.018502520397305,0.076193816959858]],[[-0.051081884652376,-0.1391728669405,0.073910556733608],[-0.037766069173813,-0.02303583920002,0.05466477945447],[0.056189458817244,-0.14541777968407,-0.0078352568671107]],[[0.15407493710518,-0.16919286549091,-0.0371979996562],[-0.072303354740143,0.14006634056568,-0.03447051346302],[-0.116190508008,-0.039312224835157,0.0041304575279355]],[[-0.11300627887249,-0.070608928799629,-0.048344943672419],[0.15090942382812,0.03530765324831,-0.15314385294914],[-0.1617863625288,0.20464389026165,-0.10712045431137]],[[-0.061040952801704,-0.044526908546686,-0.13595871627331],[0.13717322051525,-0.018659070134163,-0.12999904155731],[-0.040116999298334,0.031879138201475,0.02850017696619]],[[-0.31340306997299,0.0032464964315295,0.15106724202633],[0.07441421598196,-0.13298977911472,-0.057365354150534],[0.067590370774269,0.025663986802101,0.10131987929344]],[[-0.012710724025965,-0.057865992188454,0.22409927845001],[-0.17616978287697,-0.11787808686495,0.049932442605495],[0.061294507235289,0.054139528423548,-0.077974826097488]],[[0.2011129707098,0.016892841085792,0.092637784779072],[0.040296133607626,-0.10328271239996,-0.21511590480804],[-0.062756724655628,0.14725565910339,0.31788298487663]],[[0.11512185633183,0.055148471146822,-0.10093861073256],[0.0051709190011024,-0.025014530867338,-0.14796493947506],[-0.031550787389278,0.12789334356785,-0.16834673285484]],[[-0.037033390253782,0.12936644256115,-0.14869198203087],[0.11607552319765,0.12318903952837,0.0066481027752161],[-0.089400924742222,-0.12105353176594,0.18741621077061]],[[-0.073250204324722,-0.026741832494736,-0.15007351338863],[0.064361199736595,0.10287417471409,-0.25163370370865],[-0.099644593894482,0.19017614424229,0.10052178055048]],[[-0.13460248708725,-0.12914077937603,-0.11698570102453],[-0.057939849793911,0.018705401569605,-0.0073456945829093],[-0.092934481799603,0.010956018231809,0.1720582395792]],[[-0.31576749682426,0.057245712727308,0.11658448725939],[-0.083523459732533,-0.2449499219656,0.12226711213589],[-0.022656179964542,0.022398844361305,0.19133722782135]],[[0.1563181579113,0.029136847704649,-0.24054501950741],[-0.047909036278725,-0.11572214215994,-0.016507942229509],[0.10494416207075,-0.12206260114908,-0.036831215023994]],[[-0.070490911602974,-0.0031051596160978,0.098300941288471],[-0.19003702700138,0.02199505455792,0.096257947385311],[-0.055267728865147,0.089426875114441,-0.12162840366364]],[[0.039578165858984,0.099522866308689,-0.054850220680237],[0.28657513856888,-0.036176197230816,0.053237333893776],[-0.043306685984135,-0.24076701700687,-0.092295251786709]],[[-0.08299470692873,0.085355050861835,0.0051320046186447],[-0.039389174431562,-0.064499229192734,-0.14509537816048],[-0.084018163383007,-0.15637776255608,-0.35790121555328]],[[-0.030514426529408,-0.25011923909187,0.10514083504677],[0.061930004507303,0.012797494418919,0.048086155205965],[0.026663361117244,0.082076162099838,0.10279560089111]],[[-0.19080302119255,-0.0078240931034088,0.006921075284481],[-0.067198522388935,-0.11835092306137,-0.072070345282555],[-0.096989907324314,-0.14419963955879,0.18371225893497]],[[0.073772251605988,0.15956696867943,-0.11579391360283],[0.07682941108942,0.00044631314813159,-0.062938414514065],[0.050417982041836,-0.054701928049326,0.038278147578239]],[[-0.27697563171387,-0.17644381523132,-0.2311278283596],[0.12446844577789,0.0050839269533753,0.013176342472434],[0.12350592017174,0.090736731886864,0.032549880445004]],[[0.024314718320966,0.091332510113716,-0.0290403123945],[-0.13918425142765,-0.081960946321487,0.10049606114626],[0.078712731599808,0.025956334546208,0.12109910696745]],[[-0.034566335380077,-0.052538029849529,0.17892540991306],[-0.038152750581503,0.097238317131996,-0.040937047451735],[-0.01389591768384,-0.003235021373257,-0.10101074725389]],[[-0.06618294864893,0.019520949572325,0.027233898639679],[0.040737479925156,0.051473654806614,-0.15328702330589],[-0.1498741209507,-0.10910074412823,0.055502571165562]],[[0.026297114789486,0.083830684423447,0.12866340577602],[-0.0014390391297638,0.0050628087483346,0.035999320447445],[0.012174514122307,-0.0048497882671654,0.026907308027148]],[[-0.0028694274369627,-0.071374453604221,-0.073779575526714],[-0.0046642585657537,-0.10235264152288,0.010589080862701],[-0.055189833045006,0.088518351316452,-0.0021690060384572]],[[0.022706858813763,-0.047730840742588,0.065293647348881],[0.078081853687763,0.079616293311119,-0.15856201946735],[0.0041874242015183,-0.0012438572011888,-0.12984719872475]],[[0.0095641147345304,0.06905035674572,-0.16376368701458],[-0.031130624935031,-0.12652948498726,0.088947519659996],[0.034933883696795,-0.052440401166677,-0.073928259313107]],[[-0.083061710000038,-0.02850385569036,0.038580402731895],[0.0092641040682793,-0.012406095862389,-0.028443241491914],[0.13834954798222,0.080577187240124,-0.065194480121136]],[[-0.11027009785175,0.10622508823872,-0.0355414301157],[0.073235116899014,-0.072023630142212,-0.055323634296656],[0.0022402182221413,0.020032530650496,0.011297626420856]],[[-0.070549011230469,0.082325831055641,0.036986738443375],[0.039337456226349,0.013064312748611,-0.021770030260086],[0.00010626506991684,0.0064304806292057,0.085544429719448]],[[0.072388634085655,0.078926242887974,0.29842385649681],[-0.003292714478448,-0.12942412495613,0.034576948732138],[-0.064724408090115,-0.03476033732295,-0.18008421361446]],[[0.12731775641441,-0.16853861510754,0.11098179966211],[-0.10041233897209,0.078864507377148,0.03169821202755],[-0.0074510746635497,0.021876195445657,0.23562209308147]],[[-0.040658764541149,0.1964358240366,-0.015634587034583],[0.077006436884403,-0.003283464582637,0.051103796809912],[0.076733931899071,0.011281835846603,-0.0163081176579]],[[-0.028545543551445,-0.035446368157864,-0.092204488813877],[-0.0089249443262815,0.051350731402636,0.065787754952908],[-0.0055061806924641,-0.038613181561232,0.086383171379566]],[[0.10928127169609,0.098132327198982,0.14697523415089],[-0.18770341575146,-0.11925239861012,-0.22399391233921],[0.041329715400934,-0.093628711998463,0.2037473320961]],[[-0.17733979225159,0.17220258712769,0.057079575955868],[-0.21115396916866,-0.032613009214401,0.040869168937206],[0.12540872395039,-0.084234103560448,0.099994041025639]],[[0.17557440698147,-0.16731612384319,-0.02367945946753],[-0.0481908172369,0.24288515746593,-0.17940512299538],[0.012924870476127,-0.196756914258,0.010700907558203]],[[-0.077437870204449,-0.021158769726753,0.016773646697402],[0.10090044140816,0.014387674629688,-0.095454588532448],[-0.072575189173222,-0.029560796916485,0.045513831079006]],[[-0.093270137906075,-0.12246304750443,0.16003534197807],[-0.02001036144793,0.098623335361481,-0.23557582497597],[-0.16518543660641,-0.18511639535427,0.0054077678360045]],[[-0.047074679285288,0.12783823907375,-0.11682296544313],[-0.16919240355492,0.027475483715534,0.17848788201809],[-0.032961320132017,0.14137874543667,-0.11653440445662]],[[0.031246144324541,-0.0078651579096913,0.085977837443352],[0.099449120461941,0.062430690973997,0.046752855181694],[-0.17813743650913,-0.11939236521721,0.067791186273098]],[[0.075298339128494,0.011924320831895,-0.028497729450464],[-0.040543701499701,0.059433374553919,0.055029753595591],[0.2249568849802,0.022767826914787,0.095315903425217]],[[-0.013032824732363,0.052241876721382,0.19692777097225],[-0.025148160755634,-0.2067299336195,-0.042591631412506],[0.091870501637459,-0.028372321277857,0.025897869840264]],[[0.10525620728731,-0.093040868639946,-0.067452065646648],[0.02904500067234,-0.049850564450026,-0.081614971160889],[-0.02472279034555,0.088133215904236,0.093666382133961]],[[0.015723148360848,-0.16875620186329,-0.25654730200768],[-0.27554878592491,-0.0068397801369429,0.070302993059158],[-0.08453444391489,0.051228981465101,0.076702691614628]],[[-0.072523161768913,-0.0024402006529272,-0.080118127167225],[-0.20120285451412,-0.024856606498361,-0.17674547433853],[-0.057848405092955,0.10809625685215,-0.047537457197905]],[[0.052441380918026,0.0064817951060832,-0.16552196443081],[-0.085594847798347,0.055561978369951,-0.14646081626415],[-0.19148471951485,0.0272177439183,-0.17552469670773]],[[-0.11675510555506,-0.1453302949667,0.099703572690487],[-0.084408216178417,-0.020487554371357,0.10844054818153],[-0.020697457715869,-0.15630440413952,0.032296057790518]],[[0.085057973861694,-0.1178475394845,0.12936252355576],[0.049871806055307,-0.046032968908548,0.079472444951534],[-0.10055707395077,0.1018804833293,-0.034562464803457]],[[0.21309852600098,0.058050006628036,0.13239258527756],[-0.097506947815418,-0.17020438611507,-0.2193069010973],[0.11058722436428,0.053479511290789,0.13436916470528]],[[-0.026826089248061,-0.030777968466282,-0.098124444484711],[0.050298981368542,0.0037430785596371,0.0137461386621],[-0.21183654665947,-0.14501951634884,0.073191836476326]],[[-0.018177222460508,-0.051142886281013,0.063584223389626],[0.090363062918186,0.054993245750666,-0.21351991593838],[-0.16082464158535,-0.001658342895098,-0.11889377981424]],[[-0.046706784516573,0.024084063246846,-0.05651480704546],[-0.024571634829044,-0.074621751904488,-0.057190854102373],[-0.13998456299305,0.011610136367381,0.17946355044842]],[[0.078887365758419,-0.079764693975449,0.054810643196106],[0.22924576699734,0.084501340985298,-0.16547693312168],[-0.09003833681345,-0.1219240874052,0.15995790064335]]],[[[-0.21148020029068,0.080966226756573,0.067525908350945],[-0.20045350492001,-0.020231835544109,-0.056787896901369],[-0.071403034031391,-0.014847381971776,0.20311053097248]],[[-0.24963647127151,0.044927928596735,0.10964285582304],[-0.0023200213909149,0.061283126473427,-0.018538616597652],[-0.080396041274071,0.044770326465368,0.062627486884594]],[[0.014435481280088,0.042774580419064,0.021246809512377],[-0.16021938621998,0.01891372166574,0.03318103030324],[-0.098192900419235,-0.11040373146534,-0.18794092535973]],[[-0.061070624738932,0.092668801546097,-0.026724353432655],[-0.040068291127682,-0.028623076155782,-0.16876323521137],[-0.11799904704094,0.12034758925438,-0.069724291563034]],[[-0.020631697028875,0.023773619905114,0.056264717131853],[0.058251239359379,-0.095500230789185,0.032048560678959],[-0.023470865562558,0.12803381681442,0.048821724951267]],[[-0.051358506083488,0.073917180299759,-0.093572832643986],[0.11610952019691,0.15495331585407,-0.071760348975658],[-0.11802058666945,-0.027313156053424,0.076220728456974]],[[0.012829097919166,-0.10834418982267,0.028613766655326],[0.0097430562600493,0.047513075172901,-0.019677935168147],[0.10668178647757,-0.066986426711082,-0.066431164741516]],[[0.032005522400141,-0.03916185349226,0.065560735762119],[0.012118921615183,-0.05854357779026,-0.0063300239853561],[-0.09837019443512,0.099768131971359,0.1563780605793]],[[-0.080209217965603,0.012492747046053,-0.043894503265619],[0.06787721067667,-0.029705187305808,0.072751119732857],[0.057110100984573,-0.025134485214949,-0.070431128144264]],[[0.13311104476452,-0.0020164882298559,0.0033233985304832],[0.11284817010164,-0.17428193986416,0.060824900865555],[0.1493643373251,-0.027480280026793,0.11718136072159]],[[0.057628083974123,0.043230168521404,-0.049625460058451],[-0.015840951353312,0.018732067197561,-0.04676465690136],[-0.061414133757353,0.019433110952377,-0.063152223825455]],[[0.051182854920626,-0.10271197557449,-0.040140256285667],[-0.21979615092278,0.071063295006752,0.15759943425655],[-0.15642389655113,-0.024201130494475,0.055062580853701]],[[0.034460943192244,-0.018870519474149,0.020690906792879],[-0.054328549653292,0.0064929439686239,0.011190207675099],[-0.17113253474236,-0.024928176775575,-0.12613795697689]],[[-0.0082325860857964,0.091855213046074,-0.015570456162095],[-0.034099973738194,0.067935727536678,-0.0023269562516361],[-0.039548043161631,0.053566694259644,-0.13913244009018]],[[0.006006152369082,-0.03065650165081,-0.00018080824520439],[0.091103315353394,0.18218480050564,-0.13752420246601],[-0.18224662542343,0.013751428574324,0.14803421497345]],[[0.12159135937691,0.14015467464924,-0.13386298716068],[0.087657906115055,-0.10530379414558,-0.22580848634243],[-0.21704350411892,0.010913745500147,-0.083322361111641]],[[0.21129681169987,0.13932356238365,0.16021619737148],[0.032666686922312,-0.091463945806026,-0.13116391003132],[-0.059319000691175,0.095133937895298,-0.072434321045876]],[[-0.14282701909542,-0.03178533539176,0.12173096835613],[-0.092099331319332,0.079548515379429,0.023489633575082],[0.009506450034678,0.070486515760422,-0.07224827259779]],[[-0.055798802524805,0.046740885823965,0.1401821821928],[-0.0055003347806633,-0.12265662848949,-0.11451672017574],[0.092397890985012,-0.086306042969227,0.031950373202562]],[[-0.044468119740486,0.083316877484322,-0.01898824237287],[-0.22141815721989,0.12994657456875,0.070379622280598],[-0.28908056020737,-0.38173320889473,-0.19692061841488]],[[0.056509032845497,-0.0798719227314,-0.076059177517891],[-0.17422120273113,-0.073445543646812,-0.027979323640466],[-0.023813201114535,-0.20488788187504,0.27090188860893]],[[0.10502459853888,-0.085433401167393,0.10922978073359],[0.14199793338776,0.004479200579226,-0.015001225285232],[0.06697029620409,-0.14668355882168,-0.010432726703584]],[[0.024390494450927,-0.20353691279888,-0.050879508256912],[-0.10891906917095,-0.016447512432933,-0.063473492860794],[-0.1298526674509,-0.14759533107281,-0.13690049946308]],[[0.072829410433769,-0.023784410208464,0.060275696218014],[0.032307296991348,-0.056382052600384,0.018202440813184],[0.034979335963726,-0.10766653716564,-0.049707364290953]],[[-0.20817437767982,-0.094252988696098,0.094966560602188],[-0.16402707993984,0.0078802220523357,0.026073485612869],[-0.15456992387772,0.083282351493835,-0.064258582890034]],[[0.012319079600275,-0.085044823586941,-0.17268934845924],[-0.03063065931201,-0.14283642172813,-0.051982138305902],[0.076998516917229,0.099988847970963,0.047678254544735]],[[-0.1312989294529,-0.050887476652861,0.092221647500992],[-0.050457734614611,-0.10316263884306,0.073731616139412],[-0.16653393208981,0.077269360423088,-0.005957109387964]],[[-0.057936020195484,-0.023505292832851,-0.13913461565971],[-0.020679758861661,-0.11174956709146,0.047196459025145],[-0.025996273383498,-0.052407164126635,0.038330093026161]],[[0.032306153327227,0.084863215684891,0.036795075982809],[0.0035108351148665,-0.039823863655329,0.14646080136299],[-0.032887618988752,-0.31830537319183,0.14135468006134]],[[-0.00038781616603956,0.067602448165417,-0.094585053622723],[-0.17435981333256,-0.031598206609488,0.0043703843839467],[0.13038982450962,0.066749274730682,-0.02430884540081]],[[-0.22531236708164,-0.064991801977158,-0.17577089369297],[-0.0335355065763,-0.041722897440195,0.050609108060598],[0.16879680752754,0.087051473557949,-0.061365719884634]],[[0.1306788623333,0.12182208895683,-0.09688425809145],[-0.12173824757338,-0.0063617201521993,-0.042232476174831],[-0.09181722253561,-0.15647077560425,0.20471461117268]],[[-0.2064955830574,-0.05862745642662,0.073196403682232],[0.11807185411453,-0.19958703219891,-0.01280858926475],[0.10343196988106,-0.018857860937715,-0.00089321372797713]],[[-0.046001132577658,-0.012590173631907,0.071716941893101],[0.0062321643345058,0.10746685415506,-0.037188433110714],[-0.034703634679317,0.065463572740555,-0.015143093653023]],[[-0.024930646643043,-0.024108827114105,0.014915182255208],[-0.017201228067279,0.047704771161079,-0.048169691115618],[0.038664814084768,-0.037878554314375,-0.0070650153793395]],[[-0.025916835293174,-0.12655578553677,0.093015044927597],[0.11547432094812,-0.070512615144253,0.054445739835501],[-0.19110260903835,-0.029955573379993,0.065958060324192]],[[-0.033746853470802,-0.077579192817211,0.03920117020607],[-0.073559984564781,0.033344890922308,0.10987877845764],[-0.042221806943417,0.10359018296003,-0.10892689228058]],[[-0.36858701705933,-0.12556859850883,-0.044327575713396],[-0.070783503353596,-0.10223147273064,0.042363949120045],[0.33817133307457,-0.060430552810431,-0.078741386532784]],[[0.041643317788839,-0.042947880923748,-0.09017338603735],[-0.14325849711895,-0.067111514508724,-0.00525120832026],[0.0056406930088997,0.05191058665514,0.084622070193291]],[[0.037382032722235,-0.044968198984861,0.042539101094007],[-0.064201936125755,-0.071264334022999,-0.039746899157763],[0.0037033630069345,-0.19053623080254,-0.14116668701172]],[[-0.011047162115574,-0.014460718259215,0.18574611842632],[-0.028343526646495,0.0096028726547956,0.038627281785011],[-0.10894583165646,0.12848606705666,0.097279720008373]],[[0.051461346447468,0.045440398156643,0.19472068548203],[0.18638797104359,-0.11759607493877,-0.038704711943865],[-0.10182105004787,-0.14572216570377,0.031629282981157]],[[-0.059088833630085,0.026446526870131,0.092134676873684],[0.1391982883215,0.039480928331614,-0.062111359089613],[0.097447246313095,-0.1158631592989,-0.26331183314323]],[[0.014093435369432,0.0053397295996547,-0.0033864504657686],[-0.023939104750752,-0.02712557464838,-0.024509726092219],[0.061306700110435,0.010140493512154,-0.018869558349252]],[[-0.025966729968786,0.013228543102741,-0.028325814753771],[-0.094874314963818,-0.20880511403084,0.069079518318176],[0.045083664357662,-0.34538424015045,-0.0061957528814673]],[[-0.044926702976227,0.17083263397217,-0.12189196050167],[-0.097674109041691,-0.014124478213489,0.12361624091864],[0.12137934565544,-0.16224692761898,-0.040770426392555]],[[0.12978465855122,-0.092134036123753,-0.020002884790301],[0.021996062248945,0.044828876852989,0.069534882903099],[0.023366566747427,-0.047512602061033,-0.059601556509733]],[[0.03666165471077,0.08666405081749,-0.14149975776672],[-0.014830890111625,0.057211443781853,-0.11348047852516],[-0.11541691422462,0.047840099781752,0.037680577486753]],[[-0.17643567919731,0.10210942476988,-0.10616687685251],[-0.023273278027773,-0.035415876656771,-0.041912879794836],[0.06678781658411,0.082300968468189,-0.065757669508457]],[[-0.0047542667016387,0.034595251083374,-0.16503776609898],[-0.1191885843873,-0.082405269145966,-0.0770318582654],[-0.027697147801518,-0.066372387111187,-0.24044346809387]],[[-0.020790511742234,0.068170942366123,-0.10421505570412],[0.031965095549822,0.060227487236261,-0.041096407920122],[0.21086937189102,-0.06370086222887,-0.09723138064146]],[[0.012287792749703,0.204276278615,-0.10137024521828],[0.039931364357471,-0.08623294532299,-0.11820807307959],[0.095643170177937,0.018648013472557,0.20135474205017]],[[-0.28411719202995,-0.15030333399773,0.0049163177609444],[0.085029661655426,0.061000276356936,0.078489378094673],[0.20504212379456,-0.13685238361359,-0.10007709264755]],[[-0.28170248866081,0.12279376387596,0.087254203855991],[-0.066923193633556,-0.098552741110325,-0.11518628895283],[0.022131526842713,-0.055743496865034,0.17581160366535]],[[0.048872873187065,-0.0030435817316175,-0.011398483999074],[-0.071851134300232,0.00683105411008,0.059161107987165],[0.10930150747299,0.020573280751705,0.1464017778635]],[[-0.14460663497448,-0.0074791717343032,-0.18583290278912],[-0.16670246422291,0.0017724846256897,-0.12958627939224],[-0.1311998963356,0.0047197546809912,-0.00025461471523158]],[[-0.01569071225822,0.04166242480278,0.070489838719368],[0.0051790811121464,-0.054261825978756,-0.19649629294872],[-0.16153831779957,-0.17677445709705,-0.22148594260216]],[[0.035518825054169,-0.12616822123528,0.12841914594173],[-0.13107052445412,-0.10244626551867,0.19646136462688],[-0.014655292034149,0.014533552341163,0.053204789757729]],[[0.02821852080524,0.037008486688137,0.017740923911333],[0.09390140324831,-0.0098191192373633,-0.061887212097645],[-0.13733674585819,-0.062284540385008,-0.17189265787601]],[[-0.12208235263824,0.097058229148388,-0.052596271038055],[0.094551280140877,-0.030229043215513,-0.013886954635382],[-0.20497591793537,0.11756405234337,0.0019274712540209]],[[0.050019752234221,-0.0054905097931623,-0.034682981669903],[0.071682669222355,0.10667748004198,0.055067740380764],[-0.098869659006596,-0.24945794045925,-0.14567552506924]],[[0.039225175976753,0.16203519701958,-0.16243755817413],[0.0062269754707813,-0.12615042924881,-0.007675324101001],[-0.010789872147143,0.12408392876387,-0.058124497532845]],[[0.14629872143269,0.042701281607151,0.031933967024088],[0.14362770318985,-0.007255622651428,0.0053177243098617],[-0.22025166451931,0.16976688802242,-0.19175717234612]],[[-0.27662941813469,0.18787467479706,-0.27188065648079],[-0.099228344857693,-0.027511915192008,-0.042515646666288],[0.11187401413918,0.11135505884886,0.019272850826383]]],[[[-0.065681137144566,-0.025306865572929,-0.064794041216373],[0.04864214360714,-0.093745693564415,-0.21853566169739],[-0.15951642394066,-0.089317217469215,0.038187500089407]],[[0.010200835764408,0.064497463405132,0.14562870562077],[-0.061170101165771,0.032663010060787,0.099708206951618],[-0.063467599451542,0.041792243719101,0.017422318458557]],[[0.13665966689587,-0.076172180473804,0.015075604431331],[0.028504410758615,0.13345900177956,-0.095121689140797],[0.064728461205959,-0.015031043440104,0.051657047122717]],[[0.066495403647423,-0.026312060654163,0.075392112135887],[-0.14138320088387,-0.14216436445713,-0.018228139728308],[0.023143555969,-0.017829122021794,0.067858092486858]],[[-0.11542422324419,0.097589939832687,-0.0095720775425434],[0.024502843618393,-0.041450049728155,0.017731878906488],[-0.044688768684864,-0.076641589403152,0.044681578874588]],[[0.075185760855675,-0.098984055221081,-0.044467829167843],[-0.014045285992324,-0.18562160432339,-0.10221307724714],[0.016516759991646,-0.063653700053692,-0.085185952484608]],[[0.071282476186752,-0.089600376784801,-0.02395205758512],[-0.028445253148675,-0.015405964106321,0.022308623418212],[0.13184018433094,-0.060844160616398,-0.020902421325445]],[[0.012628833763301,-0.0096739809960127,-0.16341246664524],[0.028682267293334,0.015330612659454,0.026842722669244],[0.04590567946434,-0.0058136102743447,0.065787434577942]],[[0.040170896798372,0.045249186456203,0.032888572663069],[0.0068828016519547,-0.073430925607681,0.1606183797121],[-0.0083176363259554,-0.13897758722305,-0.06729307025671]],[[0.063778787851334,-0.049495302140713,-0.20546343922615],[0.044536955654621,0.035440623760223,-0.014593878760934],[0.010690932162106,0.075186185538769,0.34583818912506]],[[-0.018869811668992,-0.016041405498981,0.066208384931087],[-0.11478092521429,0.021335776895285,-0.024934474378824],[-0.1779261380434,0.022055914625525,-0.080247290432453]],[[0.077046163380146,-0.06582697480917,0.072379916906357],[-0.014984101988375,0.12396825104952,0.13756157457829],[-0.24132511019707,0.064008951187134,0.094667784869671]],[[-0.050636060535908,0.07691615819931,0.13644824922085],[0.016611114144325,0.068166814744473,-0.044173389673233],[-0.097991570830345,-0.0075319525785744,0.19377174973488]],[[-0.087718166410923,-0.0053333635441959,-0.067483708262444],[0.010164965875447,0.00047299027210101,-0.082292020320892],[0.019657883793116,0.071031279861927,-0.0044687273912132]],[[-0.1589402705431,-0.0031418495345861,0.059671424329281],[-0.10781624913216,-0.0044130231253803,0.1334220468998],[0.066583409905434,-0.12863785028458,-0.24350237846375]],[[-0.043821305036545,-0.0062658693641424,0.044489104300737],[-0.19927783310413,-0.19008450210094,0.10546896606684],[-0.26553279161453,-0.089694894850254,0.066663309931755]],[[0.0041066030971706,0.056092657148838,0.19155363738537],[-0.12092350423336,0.041961293667555,-0.033329367637634],[0.099047377705574,0.077137522399426,-0.1257716268301]],[[-0.047765273600817,-0.089459389448166,0.10188312828541],[-0.014597874134779,-0.038329925388098,-0.12618917226791],[0.096087008714676,0.020427973940969,-0.018000645563006]],[[-0.011718665249646,-0.12143731117249,-0.0010186362778768],[0.041829727590084,0.0032048379071057,0.054353766143322],[0.14154018461704,-0.064043492078781,-0.010549555532634]],[[-0.013089989311993,-0.17152865231037,0.075962364673615],[-0.12774355709553,-0.17733384668827,0.27352851629257],[0.13250683248043,0.045555476099253,0.14644449949265]],[[-0.025778274983168,0.13187721371651,0.016126502305269],[0.010229461826384,-0.083589270710945,-0.01674734428525],[-0.18342244625092,-0.20916187763214,-0.042717814445496]],[[0.026937767863274,-0.011042482219636,0.21474626660347],[0.043069157749414,-0.14484198391438,-0.15284013748169],[0.024491162970662,-0.086542941629887,-0.073852457106113]],[[0.050002835690975,-0.098710097372532,0.094558604061604],[-0.11210186034441,-0.081925481557846,-0.035347115248442],[-0.17387980222702,-0.20796166360378,0.018636943772435]],[[-0.019925003871322,-0.049729701131582,0.094356022775173],[-0.029187152162194,-0.23064063489437,0.13762427866459],[-0.019161829724908,-0.18719850480556,-0.10099278390408]],[[0.25136908888817,0.10267900675535,0.03410018235445],[0.11012899875641,0.051137991249561,-0.019006922841072],[-0.038984030485153,-0.059917978942394,-0.24671614170074]],[[0.024927370250225,-0.15813656151295,0.14153623580933],[-0.068494513630867,0.0024367405567318,0.10364334285259],[0.10713532567024,-0.056267064064741,0.026059843599796]],[[-0.066145151853561,-0.010694866999984,-0.10291019827127],[-0.14322763681412,-0.074403375387192,0.045808184891939],[-0.19571183621883,-0.17708694934845,-0.029569517821074]],[[-0.010934488847852,0.0050905449315906,0.082487314939499],[0.095567770302296,-0.029486238956451,0.015754761174321],[0.19437731802464,-0.10264983773232,0.15203110873699]],[[0.1933950483799,0.056676708161831,0.022371005266905],[-0.030552055686712,-0.047653716057539,-0.070146389305592],[0.018264038488269,0.078261367976665,-0.091699972748756]],[[-0.054306373000145,-0.16297343373299,-0.022106241434813],[-0.26962539553642,0.0075224870815873,0.10031994432211],[-0.35839152336121,-0.2235623896122,-0.040973786264658]],[[0.092943258583546,-0.057232353836298,0.12710101902485],[-0.12921245396137,-0.058304402977228,0.081352703273296],[0.020839942619205,-0.062929354608059,0.036800730973482]],[[0.0059451493434608,-0.11358269304037,0.095297984778881],[-0.041347071528435,-0.11814364045858,0.20476350188255],[0.053881451487541,-0.073808409273624,-0.045592423528433]],[[0.052668031305075,-0.022342648357153,-0.028531959280372],[-0.029434323310852,0.059668380767107,0.078224591910839],[0.081289626657963,0.12406320124865,-0.0014808146515861]],[[0.035633590072393,-0.039407104253769,-0.013589838519692],[-0.081233792006969,-0.073288105428219,0.012172809801996],[-0.092207163572311,-0.044534161686897,-0.06832242757082]],[[-0.037709958851337,-0.036436304450035,-0.22649247944355],[-0.085285216569901,0.067535482347012,-0.21620544791222],[-0.049725368618965,0.020382089540362,-0.022371523082256]],[[-0.080678500235081,0.017401000484824,0.086582109332085],[0.0021447623148561,-0.037772808223963,0.046617265790701],[-0.13530841469765,-0.090771198272705,-0.061833139508963]],[[0.072064854204655,0.034682329744101,-0.083066798746586],[-0.029724884778261,-0.0002663322375156,-0.014615617692471],[0.095487132668495,0.055312026292086,0.054420799016953]],[[0.11799010634422,0.14206448197365,0.066537275910378],[0.057634502649307,0.045729897916317,-0.057651586830616],[-0.16970625519753,0.0085549941286445,-0.047662187367678]],[[0.024302054196596,-0.15535567700863,-0.042993918061256],[0.071926683187485,-0.093766011297703,0.023186216130853],[-0.23040182888508,-0.097954794764519,-0.12161184847355]],[[-0.065700694918633,-0.051079656928778,0.053962022066116],[-0.048196412622929,-0.086183950304985,0.016374930739403],[0.021414656192064,-0.013908964581788,0.012827234342694]],[[-0.20816348493099,0.11225793510675,0.12866447865963],[0.029217377305031,-0.058318346738815,-0.022953839972615],[0.084983788430691,0.051329556852579,0.066413462162018]],[[0.036172706633806,0.091459564864635,0.20233342051506],[-0.14023314416409,-0.055313002318144,-0.022975875064731],[-0.0037457561120391,-0.12266559153795,0.10877778381109]],[[0.055280469357967,-0.026632616296411,-0.0068460139445961],[-0.026929592713714,-0.021881220862269,-0.061895363032818],[-0.098847918212414,-0.021364836022258,0.098973743617535]],[[-0.0024102674797177,-0.018086379393935,-0.021554475650191],[-0.019589813426137,-2.4378972739214e-05,-0.10988896340132],[0.07334677875042,0.069968208670616,0.038761213421822]],[[0.12548327445984,0.13798239827156,-0.0015393417561427],[-0.045909434556961,-0.010581048205495,0.054606612771749],[-0.27075269818306,0.017447693273425,-0.10756146907806]],[[-0.072476647794247,0.048949003219604,-0.0096013667061925],[-0.047516088932753,-0.074417136609554,0.0015823615249246],[-0.21603573858738,-0.12264404445887,0.17369364202023]],[[0.11306545883417,-0.24446178972721,0.027633346617222],[0.0098724067211151,0.15057821571827,-0.095636077225208],[0.072939440608025,-0.0080256247892976,0.015494432300329]],[[-0.068607524037361,-0.073406919836998,0.097832717001438],[-0.0062187733128667,-0.067334912717342,0.027090599760413],[-0.16192601621151,0.15266475081444,0.0094282394275069]],[[0.05015654861927,-0.095725417137146,-0.0017105411970988],[0.049225438386202,-0.0067821191623807,0.062794178724289],[-0.1529682725668,-0.014363707974553,0.068034246563911]],[[-0.0019924999214709,0.031294871121645,0.040238376706839],[-0.060951389372349,0.028825718909502,0.10774482041597],[-0.14567004144192,-0.13283801078796,-0.020516585558653]],[[-0.13219226896763,-0.12474016845226,-0.027721079066396],[-0.064523138105869,-0.017227930948138,0.032030750066042],[-0.18058583140373,-0.16191336512566,-0.072956442832947]],[[0.019269626587629,0.026953129097819,0.046919830143452],[0.053944680839777,-0.039827145636082,-0.16793757677078],[-0.04582167416811,0.026346608996391,0.04212087392807]],[[0.10240592807531,-0.065661251544952,0.022302035242319],[-0.067513048648834,0.047682873904705,-0.023410612717271],[-0.04238436371088,-0.064216993749142,0.027654655277729]],[[-0.086140662431717,0.027850423008204,-0.067165285348892],[0.030803395435214,0.10069516301155,-0.34444510936737],[-0.095554135739803,-0.26342740654945,-0.014543133787811]],[[-0.034575559198856,0.024085076525807,0.15641486644745],[-0.16253833472729,0.037491660565138,-0.014833427965641],[-0.015770966187119,0.10228298604488,-0.11261924356222]],[[-0.12641693651676,0.057327106595039,0.10908552259207],[-0.0112559562549,0.015453553758562,0.075516574084759],[-0.086904779076576,-0.042319912463427,-0.10640027374029]],[[0.11599233746529,-0.10170374065638,0.08805076777935],[-0.10680686682463,-0.014645762741566,0.084715910255909],[-0.21654145419598,-0.090772993862629,0.029137758538127]],[[-0.015365627594292,-0.10259444266558,0.13863921165466],[0.21291357278824,0.070491574704647,-0.026376266032457],[0.0077925939112902,-0.047438248991966,0.075127810239792]],[[-0.1197971701622,0.039096672087908,-0.009886221960187],[-0.036336481571198,-0.014440950006247,0.10211522877216],[-0.10707630217075,-0.19621597230434,0.095486037433147]],[[-0.073132798075676,0.02193752117455,0.02150603197515],[0.032220717519522,-0.041249167174101,0.17262144386768],[-0.089230209589005,0.01069613173604,-0.059533797204494]],[[-0.088972300291061,-0.037003800272942,0.096567824482918],[-0.12679900228977,-0.059234995394945,0.01380442455411],[-0.26723191142082,-0.11615604907274,0.020496096462011]],[[-0.11471358686686,-0.11599345505238,0.041757132858038],[-0.074556812644005,0.0623500905931,0.058954071253538],[-0.13494896888733,0.09070660918951,0.080120012164116]],[[-0.0019028530223295,0.028553608804941,-0.054011076688766],[-0.049360655248165,0.17416463792324,0.00062688818434253],[-0.18213002383709,0.0048407623544335,-0.037928763777018]],[[-0.038044985383749,-0.052942980080843,-0.026871720328927],[0.10951863974333,0.065154664218426,0.065367981791496],[0.1724070161581,0.10714116692543,-0.18507114052773]]],[[[0.063326939940453,-0.0088588334619999,0.024328315630555],[0.011243397369981,-0.067475140094757,-0.15014110505581],[0.074956461787224,0.0702850446105,0.0072775823064148]],[[-0.073237210512161,0.11666555702686,0.0389752574265],[0.12221046537161,0.025515703484416,0.061392389237881],[-0.22116638720036,-0.15706431865692,-0.050128858536482]],[[0.010432757437229,0.054295916110277,-0.057314272969961],[0.040206130594015,0.023010656237602,-0.047351613640785],[0.11932916939259,0.12162715941668,-0.0050412048585713]],[[-0.00055027357302606,0.11987209320068,0.043486513197422],[0.051237016916275,-0.028796983882785,-0.12496327608824],[0.061181791126728,0.010524776764214,-0.026019675657153]],[[0.076755858957767,0.023040812462568,-0.0029351070988923],[0.076055586338043,0.096116401255131,0.045690692961216],[-0.1027058660984,-0.01409868337214,-0.057167928665876]],[[0.043237920850515,-0.052679132670164,-0.084404215216637],[0.027699029073119,-0.027539944276214,0.10998214781284],[0.025644011795521,-0.019605670124292,0.029468670487404]],[[0.046372555196285,-0.004088313318789,-0.060235738754272],[0.023420469835401,-0.069338127970695,-0.0034183238167316],[0.11747890710831,-0.0019983511883765,-0.09036398679018]],[[0.077305898070335,0.053901985287666,0.085211537778378],[0.0087036127224565,0.087793864309788,0.027781093493104],[-0.049022514373064,-0.074279397726059,-0.028662977740169]],[[-0.078406289219856,0.016734765842557,0.016018213704228],[0.069626964628696,-0.028582409024239,-0.0046297376975417],[0.054775632917881,-0.072328120470047,-0.012404013425112]],[[0.26750093698502,0.039171066135168,0.0089763272553682],[-0.13755196332932,-0.10080729424953,-0.14117082953453],[-0.20794220268726,-0.03779274225235,0.039769388735294]],[[0.065198868513107,-0.048558861017227,-0.073171488940716],[-0.15695795416832,-0.035071589052677,-0.12113924324512],[-0.032849181443453,0.039388112723827,-0.0047242757864296]],[[0.13197299838066,0.03790295869112,0.11934322863817],[0.081713438034058,0.11369442939758,-0.12524904310703],[-0.13558785617352,-0.31372475624084,-0.22470951080322]],[[-0.15337212383747,-0.089413285255432,-0.24976243078709],[0.037604477256536,0.082693748176098,0.092873089015484],[0.079753547906876,-0.05652766674757,-0.25579392910004]],[[-0.22305366396904,-0.095675311982632,-0.10525088012218],[-0.12249481678009,0.0015512516256422,0.025282124057412],[0.13837547600269,0.085791952908039,0.010954113677144]],[[0.010418719612062,0.068256855010986,-0.036321721971035],[-0.027853546664119,0.032390367239714,-0.00073210353730246],[0.027181787416339,0.048194136470556,-0.048190478235483]],[[0.041743095964193,-0.17352947592735,0.073264382779598],[-0.00051201018504798,0.045192290097475,-0.10068524628878],[-0.34725150465965,-0.32307201623917,-0.072766788303852]],[[-0.05717895552516,-0.041164040565491,0.017742469906807],[-0.061480212956667,0.0045472751371562,-0.0076070884242654],[0.050189282745123,0.056617580354214,-0.020380495116115]],[[-0.065817095339298,-0.00065514323068783,-0.13900889456272],[0.052597533911467,-0.02617522329092,-0.16644239425659],[-0.035762827843428,-0.0010098078055307,-0.023011315613985]],[[-0.023003773763776,-0.058262169361115,0.13782289624214],[0.052137240767479,-0.092093072831631,0.040109816938639],[0.041863981634378,-0.082403376698494,-0.03597367554903]],[[-0.052967879921198,-0.056675169616938,-0.099394969642162],[0.05166869983077,0.028884345665574,0.21589116752148],[-0.13143679499626,0.013162078335881,-0.20346531271935]],[[-0.068271175026894,0.002632645657286,-0.14971688389778],[0.031495314091444,0.066784769296646,-0.023651486262679],[-0.13483662903309,0.11414965242147,-0.045480381697416]],[[0.11001014709473,0.1009243875742,-0.0704175978899],[0.029405049979687,-0.082831151783466,-0.14532117545605],[-0.080837219953537,0.051345154643059,0.0079302079975605]],[[0.020359117537737,-0.041390098631382,-0.11558402329683],[-0.086296074092388,-0.041225746273994,0.158417776227],[0.0064379945397377,0.036228813230991,-0.11276467144489]],[[-0.033117044717073,-0.18633621931076,0.015164203941822],[-0.037226375192404,0.0029695264529437,-0.047594618052244],[0.074704445898533,-0.013150279410183,-0.064804501831532]],[[0.052966061979532,0.073822967708111,0.047020524740219],[0.063772931694984,0.05857927724719,-0.1103188842535],[-0.00080056581646204,-0.12197908759117,-0.083647690713406]],[[-0.044352516531944,0.12117782980204,-0.012620882131159],[0.058125570416451,-0.0019118315540254,-0.15379557013512],[0.20086032152176,-0.074925407767296,0.029322288930416]],[[0.19370953738689,0.058888707309961,-0.04775882512331],[0.012974643148482,-0.0407022126019,-0.19955477118492],[-0.25340187549591,-0.10427210479975,-0.11981101334095]],[[0.16533213853836,-0.018226323649287,-0.15272502601147],[-0.021117109805346,0.064909040927887,0.0088389469310641],[-0.070412404835224,-0.073591880500317,-0.26950016617775]],[[-0.1192628890276,-0.015656413510442,0.031102383509278],[-0.083887055516243,-0.031601503491402,-0.01055521890521],[0.13664647936821,0.21903961896896,0.086972609162331]],[[0.059909071773291,0.079706944525242,-0.036319438368082],[0.020127208903432,0.036488521844149,-0.0081003848463297],[0.048797465860844,-0.038987081497908,-0.10102015733719]],[[-0.031728874891996,-0.14984327554703,-0.010158580727875],[0.040886390954256,0.03113710694015,0.013892692513764],[0.086369030177593,-0.003274317830801,-0.03869740664959]],[[0.082165144383907,0.10293740779161,0.079326532781124],[-0.028906874358654,0.033533804118633,-0.14279748499393],[0.034648332744837,-0.059119530022144,0.13155943155289]],[[-0.16248448193073,-0.0038660049904138,-0.066555768251419],[0.048677023500204,-0.0992177054286,0.15236960351467],[0.0223916079849,0.14389558136463,0.13385443389416]],[[-0.099911242723465,-0.10396368801594,0.019574508070946],[0.01941186748445,0.045504622161388,0.035663031041622],[-0.0012148538371548,-0.034020956605673,-0.02607406117022]],[[-0.0092243338003755,-0.031468600034714,-0.058725565671921],[-0.024124152958393,-0.031672429293394,0.071552976965904],[-0.0056659746915102,0.033459220081568,0.077109143137932]],[[-0.019932143390179,0.11215817183256,-0.13171641528606],[0.06857755035162,0.010363833978772,0.017583044245839],[-0.14770767092705,-0.085380844771862,-0.042740352451801]],[[0.025768496096134,-0.04273496568203,0.045065905898809],[-0.050146427005529,-0.01749243400991,-0.13996817171574],[-0.016723200678825,-0.020383454859257,0.040312867611647]],[[0.028735866770148,-0.0057497653178871,-0.11142389476299],[-0.11438377201557,-0.027106178924441,0.057954102754593],[-0.12175870686769,-0.001968517433852,0.14314472675323]],[[-0.14467494189739,-0.027826407924294,0.15636916458607],[-0.0091113699600101,-0.088606037199497,-0.14138826727867],[-0.0037146913819015,0.085984110832214,0.0093684950843453]],[[0.044643007218838,0.025507578626275,0.097392022609711],[-0.011301661841571,-0.060880653560162,-0.098431430757046],[-0.050797797739506,-0.0085395257920027,0.069559745490551]],[[0.036025274544954,-0.043948173522949,-0.070247799158096],[-0.072359904646873,0.033435996621847,0.015933308750391],[0.20893059670925,0.075418218970299,0.075417160987854]],[[0.070721819996834,0.031259067356586,0.12402330338955],[0.027309460565448,0.045552875846624,-0.064236231148243],[0.18375010788441,-0.063632480800152,-0.078141763806343]],[[-0.032065089792013,-0.026643248274922,-0.00062531133880839],[-0.075369358062744,0.015347041189671,-0.0096568958833814],[0.017373476177454,0.091342836618423,-0.046929903328419]],[[0.057728335261345,-0.0098912371322513,-0.093334540724754],[0.034454241394997,0.0011142318835482,-0.095801182091236],[0.01447397377342,0.065126091241837,0.023390160873532]],[[0.040561635047197,-0.096275217831135,0.064687497913837],[0.03408332914114,0.036756660789251,0.050243269652128],[0.031013900414109,-0.035418193787336,0.090400785207748]],[[0.15878568589687,0.027938760817051,-0.099811337888241],[0.064113706350327,0.072398260235786,0.083603054285049],[0.10518036037683,0.054165303707123,-0.016767363995314]],[[0.086324162781239,0.067108035087585,-0.027469463646412],[-0.035703077912331,0.20585653185844,0.095583342015743],[-0.14536380767822,-0.27065506577492,-0.16915924847126]],[[0.0057198442518711,0.019417745992541,-0.092936083674431],[0.0044216788373888,0.07839934527874,-0.047414045780897],[0.016971809789538,0.12322085350752,-0.097386464476585]],[[-0.076605334877968,0.067545682191849,0.038601890206337],[0.045653272420168,-0.15749923884869,-0.074506357312202],[0.14700257778168,-0.080280937254429,0.37012109160423]],[[0.067351818084717,0.12056773900986,0.0402413867414],[0.10137483477592,-0.034395039081573,0.032516181468964],[0.041539628058672,-0.13556443154812,-0.11255209892988]],[[-0.073722183704376,0.04276168346405,-0.043267361819744],[-0.00031939111067913,-0.071812383830547,0.10057482123375],[-0.17676967382431,0.003143769223243,-0.083528354763985]],[[0.18469697237015,0.00097059743711725,0.0029068181756884],[-0.027765452861786,0.011929257772863,-0.11190056800842],[-0.058510642498732,0.018818249925971,-0.099989123642445]],[[-0.035092104226351,0.033298775553703,-0.1516920030117],[-0.011477059684694,0.051262613385916,-0.046700440347195],[-0.018190283328295,0.052629742771387,0.0026801924686879]],[[0.08194787800312,-0.10172151774168,0.018223391845822],[0.10261225700378,-0.096656329929829,-0.017807934433222],[0.057484742254019,-0.049649201333523,0.010565798729658]],[[-0.08307271450758,0.14566816389561,-0.050808168947697],[-0.035737242549658,0.00058731011813506,-0.16090938448906],[-0.020617133006454,-0.04377705603838,-0.050965789705515]],[[0.10910956561565,-0.05085676163435,-0.041068464517593],[-0.018462173640728,-0.024482268840075,-0.070271857082844],[-0.0088476333767176,0.039884574711323,0.036147553473711]],[[-0.038695674389601,-0.021339787170291,0.028379805386066],[-0.067231930792332,-0.011706035584211,-0.0063367327675223],[-0.082959651947021,0.12820635735989,-0.064714230597019]],[[-0.11222040653229,0.028729101642966,-0.011476278305054],[0.094761431217194,0.093152143061161,-0.015604573301971],[0.016693230718374,-0.00035510380985215,0.039811529219151]],[[0.12416086345911,0.015007531270385,-0.075547210872173],[-0.044283464550972,0.034197144210339,-0.11424008011818],[0.099011354148388,-0.11083187162876,-0.2097842246294]],[[0.11878856271505,-0.057284589856863,0.080339893698692],[0.071605853736401,-0.0080865519121289,-0.15434312820435],[-0.039194941520691,-0.043831426650286,0.1512463837862]],[[-0.022776663303375,0.017013007774949,0.076625630259514],[0.01334928534925,0.018663514405489,0.0028969938866794],[-0.096698082983494,-0.076127946376801,0.076178498566151]],[[0.082863546907902,0.0079423217102885,-0.019326714798808],[-0.037546522915363,-0.17309626936913,-0.091629676520824],[0.16415823996067,-0.0929264575243,-0.078594386577606]],[[0.084530055522919,0.053537398576736,0.084585912525654],[0.025770695880055,0.014011692255735,0.009030063636601],[-0.16863682866096,0.038269516080618,-0.041482985019684]],[[-0.10933717340231,0.015720872208476,-0.011287122964859],[-0.060336824506521,-0.047487847507,-0.11649791896343],[0.10337439924479,0.058719784021378,0.015367652289569]]],[[[0.25689703226089,0.018182728439569,-0.093403711915016],[-0.051979843527079,-0.082791492342949,0.13090516626835],[-0.14750757813454,-0.12064172327518,0.24583804607391]],[[0.049820799380541,0.023800406605005,0.005786117631942],[0.12652359902859,0.013301657512784,-0.2250130623579],[0.072800725698471,0.070412240922451,-0.093664094805717]],[[0.097763501107693,-0.036696970462799,-0.017347065731883],[-0.072394691407681,-0.038913801312447,-0.033365942537785],[0.083782106637955,-0.062992423772812,0.12555482983589]],[[-0.084845259785652,-0.05433901399374,0.03463127464056],[0.043040547519922,-0.0027567327488214,-0.15167801082134],[-0.033868309110403,-0.038396701216698,0.14935380220413]],[[-0.011382464319468,-0.012252475135028,0.12034203112125],[-0.14366842806339,-0.022572534158826,0.16271860897541],[-0.32496547698975,0.14093424379826,-0.11160606145859]],[[-0.096737064421177,0.0055161449126899,0.0021981459576637],[-0.13258409500122,0.0001957639324246,0.041118178516626],[0.016963833943009,-0.062665432691574,-0.15072983503342]],[[0.071986921131611,0.042622543871403,0.003656999906525],[0.03694412112236,-0.10825688391924,-0.034691724926233],[-0.18017984926701,-0.051431436091661,0.0132458191365]],[[0.054488088935614,0.010038703680038,-0.037328250706196],[0.080723665654659,0.01647331379354,0.13720871508121],[-0.073103740811348,-0.02335362136364,0.076350890100002]],[[-0.029400380328298,0.055977270007133,-0.042106706649065],[0.0049287830479443,0.0028909498360008,-0.073938094079494],[-0.035942532122135,-0.0085225021466613,0.066350676119328]],[[0.075739614665508,0.00089101796038449,0.21409864723682],[-0.038631666451693,0.034442901611328,-0.059339247643948],[-0.19585520029068,-0.082001328468323,0.06277122348547]],[[0.010782077908516,-0.12664937973022,0.0028301472775638],[-0.0611074231565,-0.040093295276165,-0.18332625925541],[-0.0097202025353909,0.20863494277,-0.084682047367096]],[[-0.10405266284943,0.022730857133865,0.11924204230309],[-0.051006872206926,-0.010311818681657,0.052999746054411],[-0.037355035543442,-0.19418722391129,-0.27561756968498]],[[-0.062795646488667,-0.12497402727604,-0.045468531548977],[0.019961901009083,0.018365325406194,0.14661122858524],[-0.00159152795095,0.059634227305651,-0.19915615022182]],[[-0.027665505185723,-0.075365789234638,0.095079250633717],[0.031292680650949,0.084672302007675,0.0031108190305531],[-0.0045241727493703,0.18719574809074,-0.066840395331383]],[[-0.075554229319096,-0.0069649377837777,-0.097709953784943],[-0.050347950309515,0.077053546905518,-0.10955881327391],[-0.1093076094985,0.16719035804272,-0.13219203054905]],[[-0.050128035247326,-0.12473616749048,0.095570951700211],[0.064120247960091,0.12456280738115,0.10111994296312],[-0.15593320131302,-0.12792029976845,-0.10374035686255]],[[-0.067536517977715,-0.10705307871103,0.10175005346537],[0.07476682215929,0.13974539935589,-0.10668034851551],[-0.25718688964844,0.035896066576242,0.049026370048523]],[[-0.01969994418323,-0.1505765914917,0.21441289782524],[0.12663362920284,-0.077838353812695,-0.097812555730343],[-0.099738776683807,0.064597174525261,0.053436439484358]],[[-0.41914123296738,-0.29225906729698,-0.016025736927986],[0.10658563673496,-0.17796432971954,0.10326308757067],[0.13339577615261,-0.0052185342647135,0.018868466839194]],[[-0.20232392847538,0.0047150952741504,-0.024894554167986],[0.032499942928553,0.13585975766182,0.029884213581681],[-0.029657568782568,0.021647939458489,-0.055578660219908]],[[0.08063468337059,-0.077213115990162,0.0045764860697091],[-0.037809550762177,-0.029951862990856,0.046247761696577],[0.0073715220205486,-0.045800067484379,-0.11285076290369]],[[-0.082166783511639,0.058578208088875,-0.013655250892043],[0.21284657716751,0.058844484388828,-0.13313300907612],[-0.24822808802128,0.062585316598415,-0.3628945350647]],[[-0.013907709158957,-0.11407465487719,-0.06488748639822],[-0.07182989269495,-0.094650462269783,-0.10806156694889],[-0.071830496191978,0.00094611418899149,-0.10158856213093]],[[-0.037945304065943,0.039480943232775,0.039480142295361],[-0.036967076361179,-0.12263686954975,-0.024734979495406],[-0.058045666664839,-0.21500366926193,0.06705404073]],[[-0.023165911436081,0.042434338480234,-0.0084715196862817],[0.0131298257038,-0.057766389101744,0.0013777983840555],[-0.25694534182549,-0.014823376201093,-0.14531190693378]],[[0.039284780621529,-0.084737859666348,0.037274811416864],[-0.11632956564426,-0.014863632619381,-0.010098922997713],[-0.011650448665023,-0.12536945939064,-0.14871409535408]],[[-0.15575958788395,0.052825450897217,-0.0091123804450035],[0.0063483915291727,0.064508162438869,0.053319912403822],[-0.23748920857906,0.15700897574425,-0.31048515439034]],[[-0.091311685740948,-0.056857910007238,0.0069545763544738],[0.11843059211969,-0.073963157832623,-0.011370638385415],[0.0043511516414583,-0.18418794870377,-0.18624475598335]],[[0.066138885915279,-0.12500876188278,0.041778542101383],[0.057712875306606,-0.19075410068035,-0.096289120614529],[0.14955465495586,0.074310570955276,-0.022288227453828]],[[-0.06363857537508,-0.11173782497644,0.13788315653801],[-0.023020161315799,-0.025365054607391,0.09938944876194],[-0.07365770637989,-0.057982314378023,0.13087198138237]],[[0.0430120639503,0.032794620841742,0.050948038697243],[-0.018878620117903,-0.036207169294357,-0.17706386744976],[-0.031390871852636,-0.083660483360291,-0.10540889203548]],[[0.079920671880245,-0.018395723775029,-0.079570591449738],[0.12900125980377,0.049805410206318,-0.073704913258553],[0.028125425800681,-0.08312351256609,-0.0019902843050659]],[[-0.20817045867443,-0.18399539589882,-0.035371731966734],[-0.10090030729771,-0.09245939552784,0.069343514740467],[-0.0033046316821128,0.041273638606071,0.053614053875208]],[[-0.1158625036478,-0.058526813983917,0.032564472407103],[0.016758367419243,-0.12880112230778,-0.046213895082474],[0.11194486916065,-0.0047763320617378,-0.15123763680458]],[[-0.032872155308723,0.021356077864766,0.084878489375114],[0.085800006985664,0.02940764836967,0.01662882976234],[-0.074767924845219,0.017954112961888,0.045255396515131]],[[-0.013749046251178,0.01393866725266,0.00029852817533538],[0.089317873120308,0.13594229519367,0.083111576735973],[-0.05488695576787,0.0072223171591759,-0.15969161689281]],[[-0.034180078655481,0.096884213387966,-0.015924399718642],[-0.028816964477301,0.034156665205956,-0.16312171518803],[-0.023796826601028,0.21260617673397,-0.11043947935104]],[[-0.11863190680742,-0.1741733700037,-0.081744454801083],[0.090072110295296,0.013587832450867,0.24748653173447],[-0.022105609998107,0.027710638940334,0.059092525392771]],[[-0.019606571644545,0.015603999607265,0.042777564376593],[-0.046502407640219,-0.10171481966972,-0.073363922536373],[-0.12988929450512,-0.009937945753336,0.044907078146935]],[[0.018047355115414,0.068016313016415,0.038911525160074],[0.1009474247694,-0.019599363207817,0.024599609896541],[-0.060876112431288,-0.0685930326581,0.056081868708134]],[[-0.031248020008206,0.20592153072357,0.03572690859437],[-0.065555930137634,0.0033688861876726,0.0072612557560205],[-0.11615774035454,-0.051200769841671,-0.23595547676086]],[[-0.30252197384834,0.087732508778572,-0.080724351108074],[0.010460725985467,0.079416200518608,-0.079261213541031],[0.080596126616001,0.086986482143402,0.070946514606476]],[[0.0017680092714727,0.0334342867136,-0.10004379600286],[-0.12521271407604,0.056046765297651,-0.044904846698046],[-0.031652744859457,0.036989782005548,-0.097917251288891]],[[0.16908511519432,-0.033253081142902,0.041436273604631],[-0.10240484774113,0.059435155242682,0.019135048612952],[-0.049891747534275,0.0055689099244773,-0.032808128744364]],[[-0.054134920239449,-0.05683483928442,-0.088939651846886],[0.078850083053112,0.062844820320606,0.078539349138737],[0.11606989055872,-0.11777197569609,0.031892899423838]],[[0.12152172625065,-0.042879901826382,0.10105858743191],[-0.23123645782471,0.00084312912076712,-0.1185580343008],[-0.018987571820617,0.1375353038311,0.11766963452101]],[[0.15183611214161,0.12466711550951,0.087350942194462],[-0.099923610687256,0.083826296031475,-0.097758121788502],[-0.1072791442275,-0.28518709540367,-0.17825345695019]],[[-0.055859297513962,0.05576004460454,0.056005854159594],[-0.030863190069795,0.05057280510664,-0.036814600229263],[0.0086384359747171,-0.016369396820664,-0.27558723092079]],[[0.083537630736828,0.021550785750151,0.047701369971037],[-0.22047328948975,-0.088625609874725,-0.095475561916828],[-0.19544541835785,-0.055349431931973,0.27892333269119]],[[-0.040414627641439,-0.047763388603926,0.040834814310074],[-0.059195701032877,-0.014355971477926,0.069980725646019],[-0.06082171946764,-0.095371432602406,-0.059679307043552]],[[0.028051037341356,0.098389148712158,0.011362234130502],[0.060545314103365,-0.055512890219688,0.024390382692218],[-0.065580293536186,-0.03367705643177,0.065168917179108]],[[0.029323663562536,0.049068480730057,0.1025123372674],[0.024224145337939,0.10062289983034,-0.11292784661055],[-0.010085979476571,-0.20589746534824,-0.090383261442184]],[[0.012299178168178,0.13464353978634,-0.22823390364647],[-0.081536315381527,-0.018864063546062,0.038751523941755],[0.064584515988827,-0.16564948856831,0.12951293587685]],[[-0.063216812908649,-0.0065974788740277,0.089817255735397],[-0.031865056604147,-0.14630368351936,-0.046423114836216],[-0.13491018116474,-0.020103758201003,0.12020013481379]],[[-0.11502707749605,-0.13767990469933,0.012075452134013],[0.071715958416462,0.10993479192257,0.10425855219364],[-0.14541067183018,-0.18336552381516,-0.060821808874607]],[[-0.16403742134571,-0.042096853256226,-0.2264339029789],[0.10585515201092,0.062892787158489,0.097374729812145],[0.10516786575317,-0.015445186756551,-0.17595410346985]],[[-0.039909675717354,-0.12096212059259,-0.12967431545258],[0.0056953388266265,-0.11290222406387,-0.099409021437168],[0.057050086557865,-0.053921647369862,-0.011574488133192]],[[0.10754828900099,-0.24413906037807,-0.15421476960182],[0.1058603823185,0.079772092401981,-0.010446858592331],[-0.20223604142666,-0.042801417410374,0.018855042755604]],[[0.27676579356194,0.025464752689004,0.07370662689209],[-0.094188570976257,-0.17238418757915,-0.082639329135418],[0.11902914196253,-0.084197275340557,-0.10572046041489]],[[0.16957375407219,-0.12858578562737,0.2012056261301],[0.014424624852836,-0.17162020504475,0.070953391492367],[-0.0099828131496906,-0.070353865623474,0.027568323537707]],[[-0.023497486487031,-0.028272904455662,-0.05778655782342],[-0.04888729378581,-0.091999776661396,-0.088534772396088],[-0.20336958765984,-0.0077275694347918,-0.10821303725243]],[[0.075163193047047,-0.070887632668018,-0.21876664459705],[-0.076947033405304,0.032622184604406,-0.25806903839111],[0.026924831792712,0.12048898637295,0.16206228733063]],[[-0.072903454303741,0.037402309477329,0.098321251571178],[0.054813165217638,-0.11109951138496,-0.080547899007797],[0.099859721958637,0.1803030371666,-0.083533577620983]],[[0.34686732292175,0.018139809370041,-0.12262848764658],[-0.1405640989542,-0.10421728342772,-0.10097812116146],[-0.023014539852738,-0.11686363071203,-0.033717773854733]]],[[[-0.042023003101349,0.1927250623703,-0.04819643124938],[-0.076918356120586,-0.018546145409346,0.052234947681427],[0.091379754245281,0.054229691624641,0.045419134199619]],[[0.085051029920578,0.039856981486082,0.19445915520191],[-0.083819888532162,-0.048236142843962,-0.15541896224022],[-0.14496280252934,-0.0077582546509802,0.061915375292301]],[[-0.15130580961704,0.021334918215871,-0.026391230523586],[0.0086811743676662,0.11124194413424,-0.10784284025431],[0.010363252833486,-0.02215163782239,0.12319086492062]],[[0.076093971729279,0.041727017611265,-0.043298881500959],[0.0046237041242421,-0.042484130710363,0.0080401785671711],[0.0018168153474107,-0.044038768857718,0.1648733317852]],[[0.064869903028011,-0.07160098105669,0.06492705643177],[0.0061478419229388,-0.21833539009094,0.06915957480669],[-0.073711924254894,-0.056628685444593,0.066161252558231]],[[0.023937441408634,0.029735472053289,-0.036062467843294],[-0.076835907995701,-0.075706295669079,-0.013049237430096],[0.11234083771706,-0.10264440625906,0.15194098651409]],[[-0.12635244429111,-0.033738352358341,-0.025569463148713],[-0.18085615336895,0.0086167026311159,-0.10632916539907],[-0.025430353358388,-0.0058216634206474,0.067782670259476]],[[0.089706927537918,-0.052672136574984,0.015391764231026],[-0.040232505649328,-0.096549995243549,0.014538933522999],[-0.037192612886429,-0.079624481499195,0.18681076169014]],[[0.024236848577857,-0.045231945812702,0.00021207588724792],[-0.0097738076001406,-0.057822324335575,0.054727099835873],[0.050048902630806,0.026854675263166,-0.0063237100839615]],[[-0.30110594630241,-0.011942308396101,-0.07900607585907],[-0.0091166272759438,-0.017632646486163,0.11182447522879],[0.10701388865709,0.058934271335602,-0.046285893768072]],[[-0.30756804347038,0.14455188810825,0.11524321883917],[-0.020053204149008,0.078208528459072,0.045380301773548],[-0.019597504287958,-0.0027003674767911,-0.015942418947816]],[[0.0089041329920292,-0.074564762413502,-0.094212546944618],[0.022036137059331,-0.14984333515167,0.15070727467537],[-0.056377157568932,0.055067021399736,-0.051043845713139]],[[-0.14831237494946,-0.13125897943974,0.18836271762848],[0.10107428580523,-0.018048727884889,-0.05471919849515],[0.078871682286263,0.0022558094933629,0.032283455133438]],[[0.07434194535017,0.10840214043856,0.080631993710995],[0.11943901330233,0.11675515770912,0.077602840960026],[-0.02928152680397,-0.053373005241156,-0.060812618583441]],[[0.18778492510319,-0.031959872692823,0.12592147290707],[-0.10272654891014,-0.038832992315292,-0.086035624146461],[0.017520384863019,0.030801238492131,0.047273840755224]],[[-0.13697390258312,0.012339517474174,0.079405575990677],[-0.091775886714458,-0.13875408470631,0.046334698796272],[0.14789198338985,-0.058036126196384,0.094731651246548]],[[0.069877550005913,0.0055913892574608,-0.055174168199301],[0.0074967565014958,-0.028438802808523,0.020830448716879],[0.11144905537367,-0.01623684540391,0.079406514763832]],[[-0.020677631720901,0.10321940481663,-0.12033448368311],[0.0058309165760875,-0.032134335488081,-0.00046162924263626],[0.12070355564356,-0.0656977891922,-0.093987695872784]],[[-0.21331545710564,0.13243417441845,-0.019705336540937],[0.029598830267787,0.013677042908967,0.12966813147068],[-0.018614046275616,-0.028663778677583,-0.30194225907326]],[[0.088327936828136,0.025465140119195,0.0071191089227796],[-0.03690767288208,0.16099588572979,0.15994755923748],[0.031223982572556,0.030449591577053,0.16240531206131]],[[-0.13241258263588,0.074943117797375,0.044168397784233],[-0.035030581057072,-0.11786195635796,0.093104012310505],[-0.02761653997004,-0.02317762747407,-0.10544747114182]],[[-0.37996596097946,-0.035413265228271,-0.079750776290894],[-0.088706001639366,0.088158622384071,0.056692752987146],[0.11368558555841,0.04790223762393,0.090044513344765]],[[-0.052825886756182,-0.10637621581554,-0.14176182448864],[0.022137708961964,0.073926687240601,-0.11898064613342],[0.0066657271236181,-0.093568429350853,0.017672231420875]],[[-0.38261872529984,-0.0010953431483358,0.070062138140202],[-0.021055718883872,-0.021619625389576,0.0078703416511416],[0.084711477160454,-0.04555632174015,0.075007826089859]],[[-0.10789340734482,-0.23400881886482,-0.023819208145142],[0.060573600232601,0.010580526664853,0.045987155288458],[-0.10789156705141,0.0070023583248258,-0.013957902789116]],[[-0.16718386113644,-0.040584232658148,-0.039431758224964],[-0.10777337104082,-0.089208118617535,-0.046824403107166],[0.33089327812195,0.0039481418207288,-0.034381676465273]],[[0.092027381062508,-0.12632629275322,-0.05311194434762],[-0.056557387113571,-0.024326156824827,-0.078544832766056],[-0.22662335634232,-0.067403979599476,0.034096091985703]],[[-0.22778026759624,0.029955107718706,-0.1412229090929],[-0.089371755719185,-0.057708743959665,0.085073694586754],[0.083035379648209,-0.0070063574239612,-0.15530590713024]],[[-0.26467123627663,0.059944678097963,-0.22698318958282],[-0.14651902019978,-0.026297276839614,0.025199832394719],[0.064622715115547,0.022064447402954,0.0053458479233086]],[[0.20257470011711,0.0017379041528329,-0.12215061485767],[0.020219676196575,-0.10008519887924,0.015777781605721],[-0.013878768309951,-0.070844821631908,0.016468551009893]],[[-0.13485711812973,-0.051720917224884,0.13793770968914],[-0.17665475606918,-0.089056052267551,-0.099788799881935],[-0.010524889454246,-0.10665643960238,0.078850470483303]],[[0.0076215253211558,0.0028897472657263,-0.087643496692181],[0.091877162456512,0.10040108114481,0.012011557817459],[-0.077542029321194,0.035589091479778,-0.13097611069679]],[[0.1405384093523,0.062535151839256,0.11100082099438],[-0.1163451820612,0.033830780535936,0.070891104638577],[-0.036666207015514,0.024286162108183,-0.007324596401304]],[[0.06582610309124,-0.036153141409159,-0.045381471514702],[0.019995376467705,0.11678718775511,0.014105519279838],[0.040403999388218,-0.020033465698361,0.060696911066771]],[[0.18991330265999,-0.034858457744122,-0.068382658064365],[0.026481837034225,0.052107971161604,-0.030603537335992],[-0.017096467316151,0.07850194722414,-0.065727226436138]],[[0.20493140816689,-0.098670944571495,0.0054711159318686],[-0.21413272619247,-0.037671256810427,0.064565360546112],[0.064406394958496,0.10650179535151,0.050506990402937]],[[0.15060321986675,0.03299904987216,-0.077419884502888],[0.077947989106178,-0.065925054252148,-0.0011618146672845],[-0.0049870735965669,-0.088094606995583,-0.0052098678424954]],[[-0.018620556220412,0.063479535281658,0.074075467884541],[-0.050859738141298,0.088677532970905,-0.078077808022499],[-0.064807511866093,-0.095142707228661,0.038982473313808]],[[-0.019372431561351,0.035286486148834,0.071462243795395],[0.0024313342291862,-0.044626787304878,0.0050854692235589],[0.11469285190105,-0.17114958167076,-0.1340155005455]],[[-0.1450777053833,0.070174358785152,-0.049304686486721],[-0.03910756483674,-0.043580338358879,0.045262955129147],[-0.010386176407337,0.0058441492728889,0.04580283164978]],[[0.28848299384117,-0.062295388430357,-0.05060787498951],[0.12445366382599,0.052794493734837,0.052714940160513],[-0.065904803574085,-0.11134718358517,-0.024864085018635]],[[-0.012670583091676,0.023791529238224,0.044394366443157],[-0.1553547680378,0.0095055801793933,0.022311041131616],[-0.088511727750301,-0.12817853689194,0.1642357558012]],[[0.092621356248856,0.0047679054550827,0.037530932575464],[-0.082458987832069,0.01940019801259,-0.04098216816783],[-0.074604466557503,0.01953137665987,-0.010267172940075]],[[-0.082685865461826,0.031540844589472,-0.0021643571089953],[0.076979324221611,0.031739067286253,-0.022922810167074],[0.039220366626978,0.018768157809973,-0.086639903485775]],[[-0.13436076045036,-0.079987578094006,-0.024006679654121],[-0.061888013035059,-0.14463286101818,-0.042564164847136],[-0.019318744540215,-0.1156784966588,0.20163245499134]],[[-0.2207768112421,-0.11027815192938,0.093966618180275],[-0.19333557784557,-0.11861183494329,0.063100352883339],[0.099202767014503,0.11933329701424,0.061494063585997]],[[-0.44555932283401,-0.04317469522357,-0.35194781422615],[0.03717116266489,-0.19482935965061,0.17202800512314],[0.15189579129219,0.093499079346657,0.051690902560949]],[[-0.050669204443693,0.0057034464552999,-0.0032613915391266],[0.062419548630714,0.0016417779261246,0.09228627383709],[-0.063406951725483,-0.020596247166395,-0.049190290272236]],[[-0.051293522119522,0.020352056249976,0.0027671593707055],[-0.033377554267645,-0.018991712480783,0.053211409598589],[0.11919678747654,0.12059465795755,-0.2086740732193]],[[0.084405228495598,0.011600203812122,0.12315317243338],[-0.074391350150108,-0.052336286753416,-0.17670613527298],[-0.10038840770721,-0.005999174900353,0.14055322110653]],[[0.15420971810818,0.11611839383841,0.078853614628315],[-0.23694959282875,-0.067614175379276,0.017514351755381],[-0.061440013349056,0.069221027195454,-0.052129339426756]],[[-0.074386842548847,-0.064056865870953,-0.075023129582405],[0.084294617176056,-0.10514651238918,-0.03198591247201],[-0.13996508717537,0.040820527821779,-0.095822371542454]],[[0.047489184886217,-0.053444270044565,0.043529603630304],[0.060493245720863,0.018443992361426,-0.0066930246539414],[0.12783396244049,0.034738138318062,0.09042239934206]],[[-0.2802240550518,-0.071187481284142,-0.23414693772793],[-0.041016671806574,-0.037717923521996,0.095933638513088],[0.15031753480434,-0.010873384773731,-0.078802593052387]],[[-0.059008166193962,-0.007853189483285,0.072847686707973],[0.14604677259922,0.16020868718624,0.06939459592104],[-0.004498730879277,-0.25976097583771,0.081819675862789]],[[0.03440785780549,-0.039005387574434,-0.0074243196286261],[-0.032128483057022,0.051540859043598,0.024584291502833],[-0.11151813715696,0.053599018603563,-0.034999776631594]],[[0.073715083301067,-0.076657183468342,-0.17360137403011],[-0.031168024986982,0.016165424138308,-0.020664233714342],[-0.094911672174931,0.0084295002743602,-0.074700020253658]],[[-0.15640099346638,0.023299092426896,-0.0035480491351336],[0.073453187942505,-0.0080765914171934,0.039267048239708],[0.068007424473763,-0.1355337202549,0.010228591971099]],[[-0.16424392163754,-0.047338373959064,0.10300922393799],[0.051090195775032,-0.061008907854557,-0.039104085415602],[0.12769761681557,0.03352639824152,0.077199801802635]],[[-0.064268924295902,-0.064907737076283,-0.021384449675679],[0.038342695683241,-0.14799454808235,-0.021628255024552],[0.096624456346035,0.037450361996889,-0.00059908465482295]],[[0.0092919198796153,-0.013296375982463,-0.14558918774128],[-0.12145688384771,-0.035084426403046,-0.05371056869626],[-0.13448682427406,0.083132863044739,0.024547733366489]],[[0.0099697494879365,0.074096135795116,-0.0030342652462423],[-0.0011523090070114,0.0051308213733137,0.079613775014877],[0.128074452281,0.1419076025486,-0.12578144669533]],[[0.082346186041832,0.072779051959515,-0.11522098630667],[0.033879358321428,-0.027262151241302,-0.01328051276505],[-0.087345518171787,-0.062047440558672,-0.0092448191717267]],[[-0.23532377183437,0.046639703214169,-0.16900780797005],[-0.067760825157166,0.065867826342583,-0.014064793474972],[0.024839935824275,0.10265048593283,0.075879670679569]]],[[[0.036348570138216,-0.081545643508434,-0.063701488077641],[-0.08508575707674,0.020167138427496,-0.017033470794559],[-0.11458017677069,0.051667496562004,-0.014362085610628]],[[0.05099705979228,-0.065638571977615,0.089330516755581],[-0.078553602099419,-0.046048734337091,0.0137440841645],[0.039995189756155,0.059628780931234,-0.00088232842972502]],[[-0.094062730669975,0.025887731462717,-0.044248186051846],[0.014084385707974,-0.018092673271894,-0.11270949989557],[-0.12282218784094,0.026387859135866,0.15432690083981]],[[0.046914484351873,-0.0652184933424,-0.095142096281052],[-0.024966428056359,0.11317332088947,0.067845888435841],[-0.062173008918762,-0.025590060278773,-0.044803325086832]],[[-0.040772937238216,-0.056826114654541,-0.074773952364922],[0.085832484066486,-0.079494476318359,-0.0901263281703],[0.046321108937263,0.037437159568071,0.015519395470619]],[[0.080688580870628,0.010457800701261,-0.095867127180099],[0.11084477603436,-0.036607634276152,0.019006185233593],[0.053898815065622,-0.0060402536764741,-0.11235927790403]],[[-0.042559161782265,0.072459578514099,0.10787276923656],[0.0080999573692679,-0.067310564219952,-0.034410998225212],[-0.06180077418685,-0.1170820966363,0.011259100399911]],[[0.044731497764587,0.08643401414156,0.0030127894133329],[0.097448870539665,0.14460845291615,-0.058788806200027],[-0.032394617795944,0.059411700814962,-0.11887937784195]],[[0.082141265273094,-0.011184248141944,0.054283641278744],[0.080560736358166,-0.071215808391571,-0.059947583824396],[0.056600321084261,-0.064333461225033,-0.066387541592121]],[[0.094362325966358,0.058050032705069,0.092021837830544],[0.018798304721713,-0.085007183253765,0.073709718883038],[-0.045435801148415,0.0018936366541311,-0.0765740275383]],[[-0.11876446008682,-0.018580222502351,-0.074401959776878],[-0.00045390985906124,-0.11915507167578,-0.039518430829048],[-0.056248292326927,-0.0025553186424077,0.067830041050911]],[[0.043810971081257,0.04002919793129,-0.014722340740263],[-0.0049223164096475,0.014035240747035,0.051689110696316],[-0.083008199930191,0.018927915021777,0.0088934451341629]],[[-0.0077463448978961,0.097043491899967,0.0073302346281707],[0.029056353494525,-0.069532111287117,-0.10139551758766],[0.0020260205492377,0.15608178079128,-0.15720026195049]],[[-0.099335595965385,-0.086094878613949,-0.042177449911833],[-0.11051169782877,-0.057291064411402,0.061414659023285],[-0.086579293012619,0.047559943050146,-0.066627353429794]],[[0.14758084714413,-0.07482248544693,0.11096051335335],[-0.068465292453766,0.085659615695477,0.10773497074842],[-0.030012844130397,-0.12649421393871,-0.001764286425896]],[[0.090895555913448,0.035744104534388,0.028261249884963],[-0.052399754524231,-0.023856583982706,-0.10434217005968],[0.058992266654968,-0.03119264729321,0.0049858284182847]],[[0.007460743188858,-0.0047383969649673,0.074380584061146],[-0.0036022355780005,0.02994180098176,0.018714133650064],[0.085388213396072,-0.075940303504467,-0.13547855615616]],[[-0.032085627317429,0.038160279393196,0.099945545196533],[-0.10640829056501,-0.13750666379929,-0.018354384228587],[0.048732560127974,-0.051971953362226,-0.082829505205154]],[[-0.10545679181814,-0.043944712728262,-0.029805738478899],[-0.14853572845459,-0.071323856711388,-0.12599106132984],[-0.12174066156149,0.04650792106986,0.043117828667164]],[[-0.25819182395935,0.081479482352734,0.020474411547184],[-0.014418895356357,0.0031141203362495,-0.08499413728714],[-0.00048314404557459,0.044312290847301,0.013257557526231]],[[-0.018295710906386,-0.071874849498272,-0.011945780366659],[0.057251464575529,-0.0060186795890331,-0.019264044240117],[-0.058620437979698,-0.031695500016212,-0.038837142288685]],[[0.019822217524052,-0.026264665648341,0.0031148449052125],[-0.029204422608018,0.00066788529511541,-0.11621180176735],[-0.10096172988415,0.00070791109465063,0.095959722995758]],[[-0.010171686299145,-0.037865154445171,-0.0081886658445001],[-0.052919521927834,-0.060506086796522,0.01440139207989],[-0.072944730520248,-0.0073266327381134,-0.004231892991811]],[[-0.027433510869741,-0.051080889999866,-0.15409649908543],[-0.20445986092091,-0.19171893596649,-0.079000033438206],[0.04919695481658,0.090979680418968,-0.10592334717512]],[[0.0048135346733034,0.0068351486697793,0.01006408687681],[-0.089828774333,-0.025901192799211,0.12554021179676],[-0.08641105145216,0.039425399154425,0.047577671706676]],[[-0.032591629773378,-0.13806511461735,0.069354154169559],[-0.099069990217686,-0.033270865678787,-0.053548667579889],[0.044121850281954,0.030783651396632,-0.069975920021534]],[[0.030775981023908,0.1829170435667,-0.073521047830582],[-0.060178283601999,0.016226006671786,-0.057077534496784],[0.0082752043381333,0.041854001581669,-0.042171277105808]],[[0.091204755008221,0.035195875912905,0.018310392275453],[-0.040171474218369,0.032747577875853,-0.14102604985237],[-0.06266862154007,0.035317305475473,-0.034301619976759]],[[-0.065124571323395,0.027165897190571,0.065621674060822],[-0.015667967498302,0.090774938464165,0.054717775434256],[-0.14627005159855,-0.0076963687315583,0.17696408927441]],[[0.047483090311289,-0.063260331749916,-0.036537975072861],[-0.016945574432611,-0.016268232837319,-0.057454697787762],[-0.13365542888641,0.029195215553045,0.0066854315809906]],[[0.0071166646666825,0.076815538108349,0.11437489837408],[-0.06484167277813,-0.12169918417931,0.12050791084766],[0.12694704532623,-0.04766283929348,-0.040733225643635]],[[0.018278378993273,0.045781098306179,0.065718621015549],[0.02870879881084,0.035172995179892,0.00072413479210809],[-0.06604890525341,0.057970404624939,-0.060574229806662]],[[-0.051729895174503,-0.010133285075426,0.03358581289649],[-0.027306515723467,0.0084508908912539,-0.097789563238621],[0.083027772605419,-0.076883539557457,-0.045010879635811]],[[0.085472173988819,-0.020941870287061,-0.048520255833864],[-0.05001338198781,-0.017393929883838,0.0028347270563245],[-0.06626933068037,0.11308138817549,0.079512253403664]],[[-0.078336954116821,-0.083334483206272,0.022232169285417],[-0.083299204707146,0.0452123247087,-0.089041002094746],[-0.011987096630037,0.022859305143356,0.047486525028944]],[[0.068098232150078,-0.10148224234581,0.08785741776228],[0.050758816301823,0.0093348668888211,0.011189115233719],[0.010644513182342,-0.14420005679131,-0.048693932592869]],[[0.087095253169537,-0.02328728698194,-0.055239733308554],[-0.035103909671307,0.024635167792439,0.11102596670389],[-0.025446876883507,-0.023197993636131,0.095646806061268]],[[-0.047051131725311,0.034666705876589,0.12577527761459],[-0.0063726003281772,0.081082679331303,0.049387522041798],[0.027814900502563,-0.064488232135773,-0.016529748216271]],[[-0.11116739362478,-0.22140809893608,-0.047031342983246],[-0.1385370194912,-0.11947817355394,-0.027293371036649],[0.070389181375504,0.051363103091717,0.080201119184494]],[[0.027875794097781,0.16279472410679,-0.035276088863611],[0.01590177603066,-0.014688055031002,0.067070037126541],[-0.030975634232163,-0.002299880143255,-0.078398212790489]],[[0.057050757110119,0.037209168076515,-0.10136570036411],[0.081753194332123,-0.050939872860909,-0.049288600683212],[0.10965671390295,-0.0043180380016565,0.051636483520269]],[[-0.053137835115194,0.016876710578799,0.047370407730341],[0.01276889257133,-0.072776235640049,-0.0050651943311095],[0.058914422988892,-0.032591484487057,-0.038811150938272]],[[-0.039542473852634,-0.18310721218586,-0.026758912950754],[-0.034060880541801,0.15487784147263,-0.012238723225892],[-0.088061392307281,-0.035754907876253,0.075220890343189]],[[-0.13224674761295,-0.0086419815197587,0.058966867625713],[-0.0036086461041123,-0.015436040237546,0.021974269300699],[-0.04577537253499,0.064610682427883,0.10744915157557]],[[0.065473176538944,0.02133372053504,-0.09330976754427],[0.012875008396804,-0.22134810686111,-0.015084253624082],[0.018766919150949,0.017967134714127,0.06206651031971]],[[0.01473025418818,0.11925410479307,-0.1341173350811],[0.030257472768426,-0.098145842552185,0.054757550358772],[-0.048707596957684,0.0071166213601828,-0.031177278608084]],[[-0.018289344385266,-0.0022507589310408,-0.11520747840405],[-0.067406885325909,-0.078349843621254,0.063300855457783],[0.061161525547504,-0.042219523340464,-0.14477717876434]],[[-0.013001284562051,-0.010917386040092,-0.050936281681061],[-0.075662709772587,0.015891183167696,0.025912020355463],[0.010511421598494,-0.038873884826899,0.01644748263061]],[[-0.081284075975418,-0.036872554570436,-0.032923229038715],[-0.075107723474503,-0.016171673312783,-0.058738090097904],[-0.17765040695667,-0.15680293738842,-0.036074310541153]],[[-0.15298397839069,-0.18982489407063,0.073352992534637],[-0.017276817932725,0.059366095811129,-0.091071926057339],[0.026032732799649,0.0088524222373962,-0.048725519329309]],[[0.13903316855431,0.029899444431067,0.071572512388229],[-0.084804609417915,0.049857724457979,-0.02030398324132],[-0.032595250755548,-0.059574890881777,0.042292896658182]],[[0.045259639620781,0.072466447949409,0.14400878548622],[-0.026573130860925,-0.054253872483969,0.036457851529121],[0.039889179170132,0.046118333935738,-0.023278685286641]],[[-0.062865391373634,0.0055262893438339,-0.17749959230423],[0.10244936496019,-0.0034144790843129,-0.053611658513546],[-0.019513929262757,0.13658535480499,-0.08793231099844]],[[-0.085496135056019,-0.049468103796244,-0.16621081531048],[-0.11347939819098,0.063493013381958,-0.055467538535595],[-0.090670570731163,-0.0027784511912614,-0.18513292074203]],[[-0.024162832647562,-0.20904567837715,0.022680850699544],[0.086085304617882,0.020106945186853,-0.069296129047871],[-0.066578567028046,-0.058480903506279,-0.098483122885227]],[[0.040581915527582,-0.046301264315844,0.04982602596283],[0.11573614925146,-0.053018923848867,-0.031676765531301],[-0.0077095557935536,0.059737145900726,0.016386965289712]],[[-0.073047704994678,0.097907118499279,-0.16357009112835],[0.020257832482457,-0.13401624560356,-0.015227787196636],[0.064542360603809,-0.081323727965355,0.083103328943253]],[[-0.029749270528555,0.038503751158714,-0.038678824901581],[-0.11005501449108,-0.12081833183765,-0.064434543251991],[0.11659230291843,-0.084651932120323,-0.022460537031293]],[[0.10987161099911,0.14914225041866,-0.11019566655159],[0.03220148012042,0.072250664234161,-0.042132686823606],[-0.038014754652977,-0.06936813890934,-0.081554725766182]],[[-0.022815633565187,-0.0018152386182919,-0.11243260651827],[0.053774911910295,-0.002414803719148,0.0062968884594738],[-0.021818043664098,0.0084391934797168,-0.094184294342995]],[[-0.057170566171408,-0.00021178260794841,-0.030257690697908],[0.06481845676899,0.062519021332264,-0.0059828101657331],[0.011218025349081,-0.062536545097828,-0.012600883841515]],[[-0.15918955206871,-0.051631011068821,0.088515132665634],[-0.0068688443861902,0.038819625973701,0.081107184290886],[-0.026648843660951,-0.08445680886507,0.057581748813391]],[[0.1013713106513,-0.0178781170398,0.02371028624475],[0.094523869454861,0.068577229976654,0.043064352124929],[0.019685758277774,-0.066289737820625,-0.10495901852846]],[[-0.0032094793859869,0.095627397298813,-0.032078579068184],[-0.22659409046173,-0.029227685183287,0.10948266088963],[-0.061303839087486,-0.13649636507034,-0.064157821238041]]],[[[0.077861569821835,-0.068404093384743,0.010172632522881],[-0.031027417629957,-0.044483803212643,0.026439355686307],[0.019916243851185,-0.037944909185171,0.059420023113489]],[[-0.015747979283333,0.088500864803791,0.053101602941751],[-0.0095461830496788,-0.088589742779732,0.12711626291275],[0.042339313775301,0.031779762357473,0.038974963128567]],[[-0.055422648787498,-0.075147986412048,0.048670087009668],[-0.057765819132328,0.12172131985426,-0.048738662153482],[-0.019877146929502,-0.021595928817987,-0.012316069565713]],[[-0.024811826646328,0.046789988875389,-0.085233487188816],[-0.026031879708171,0.042826049029827,0.010262560099363],[-0.025774475187063,-0.024581884965301,0.0057781618088484]],[[-0.032213285565376,-0.0023381542414427,0.037866089493036],[0.015536687336862,0.065634869039059,0.014351698569953],[-0.0064743827097118,-0.079028159379959,-0.047091834247112]],[[-0.047441571950912,0.0044286204501987,-0.023591201752424],[-0.012179772369564,0.059438116848469,-0.031575031578541],[-0.0052428832277656,-0.0077590807341039,-0.040183510631323]],[[-0.069113276898861,0.04046355932951,-0.02352905832231],[0.042770329862833,0.073890082538128,-0.0032482831738889],[-0.12003766000271,-0.11134359240532,-0.060555726289749]],[[0.0021239581983536,0.012823397293687,-0.011688971891999],[-0.0074441679753363,0.027412049472332,-0.014674822799861],[-0.030793832615018,-0.045416370034218,0.047509498894215]],[[-0.024030113592744,0.083893954753876,-0.030251255258918],[0.12487361580133,0.0083082178607583,0.020626207813621],[-0.078025199472904,0.031133750453591,-0.064381934702396]],[[-0.041113931685686,-0.057211697101593,0.040746733546257],[-0.07600475102663,0.029982015490532,-0.02120952680707],[0.0056984908878803,-0.078186698257923,-0.012894430197775]],[[-0.049014940857887,0.0999765843153,-0.018487384542823],[0.045049700886011,0.0033934921957552,-0.068817928433418],[0.062106218189001,-0.036977428942919,0.054112952202559]],[[0.0012791311601177,-0.046696729958057,-0.057352844625711],[-0.017762439325452,0.037793312221766,0.035816226154566],[-0.075952380895615,-0.070340052247047,-0.066869132220745]],[[0.016140889376402,0.041896380484104,-0.0087896306067705],[0.089877121150494,0.03394415602088,-0.0050568706355989],[0.011077018454671,-0.043457064777613,0.0493477396667]],[[-0.016203463077545,0.15470200777054,0.061936654150486],[0.096816889941692,0.020514279603958,-0.045714266598225],[0.069037966430187,-0.0068798856809735,-0.021500319242477]],[[-0.020117364823818,0.025833703577518,-0.10784915089607],[-0.040273364633322,0.03187070786953,-0.021378504112363],[-0.025524020195007,0.022530168294907,0.017562754452229]],[[-0.014070411212742,-0.043368019163609,0.013644259423018],[-0.014236813411117,-0.054064691066742,0.041379295289516],[0.039653051644564,-0.040733076632023,-0.057315077632666]],[[0.034729082137346,-0.0057107768952847,-0.0096824960783124],[-0.054209310561419,0.0324382558465,0.0038295795675367],[-0.041186273097992,0.0060301213525236,-0.038053195923567]],[[0.037895794957876,-0.045077316462994,0.0043899053707719],[-0.0092545654624701,0.069970764219761,-0.10956650227308],[0.027916951104999,-0.06945689022541,0.0030210786499083]],[[-0.037876740098,-0.041110828518867,0.080094613134861],[0.09245702624321,0.0046798400580883,-0.036006767302752],[-0.028551323339343,-0.012084976769984,0.040647644549608]],[[-0.032821793109179,-0.066953882575035,0.056710559874773],[-0.048940971493721,-0.041029911488295,0.092512302100658],[0.0028864163905382,-0.030840557068586,-0.066145822405815]],[[-0.045050691813231,-0.0012779096141458,0.066269591450691],[0.012894879095256,-0.017270553857088,-0.0067791882902384],[-0.057693086564541,0.032196320593357,-0.12196807563305]],[[-0.033662054687738,-0.05361394956708,-0.043587181717157],[0.022439945489168,-0.020001832395792,0.013146553188562],[0.028870891779661,0.041376419365406,-0.024042766541243]],[[-0.094559103250504,-0.1249627918005,-0.10877957940102],[-0.063870467245579,-0.11465941369534,-0.018680950626731],[-0.086345039308071,-0.18372382223606,-0.0025917466264218]],[[0.042513243854046,-0.069898799061775,-0.06974983215332],[-0.088077023625374,-0.076320871710777,0.0045586815103889],[-2.6433435778017e-06,-0.042456921190023,-0.074465945363045]],[[0.01207138504833,0.013895736075938,-0.00040159103809856],[0.056395817548037,-0.074452571570873,-0.088238179683685],[0.012385191395879,0.12799581885338,0.0023055137135088]],[[-0.0017737046582624,-0.026333689689636,-0.036926463246346],[-0.016948347911239,0.042254578322172,-0.034062027931213],[-0.023809114471078,-0.046702530235052,0.097424447536469]],[[-0.029687145724893,-0.021584393456578,0.030749369412661],[0.048301413655281,-0.037119146436453,-0.08346339315176],[-0.1165057644248,-0.030457472428679,0.035221569240093]],[[-0.01425867062062,-0.033001139760017,-0.047505721449852],[0.015595909208059,-0.0012311503523961,0.03720385581255],[-0.0095366444438696,0.05583156645298,-0.098720528185368]],[[0.023198088631034,-0.053047828376293,0.026469901204109],[-0.027894774451852,-0.11040564626455,0.056782990694046],[-0.022699661552906,0.00413653627038,-0.015323540195823]],[[-0.0096599860116839,0.013048079796135,-0.069321557879448],[-0.040581904351711,0.028017964214087,-0.1201645731926],[0.016980174928904,-0.037353459745646,0.0030429714825004]],[[0.04393981769681,-0.087435327470303,0.01101206894964],[0.07586944848299,-0.048894345760345,0.068768687546253],[0.039050452411175,-0.0023084457498044,-0.059408579021692]],[[0.0035821897909045,-0.045578014105558,-0.0093500055372715],[0.0014395754551515,-0.014357851818204,0.0044278968125582],[-0.03104574047029,0.077732771635056,-0.017458351328969]],[[-0.068360231816769,-0.014649143442512,0.031538769602776],[0.0095029957592487,-0.001586826867424,-0.026896808296442],[0.0049995230510831,0.057591762393713,0.016521764919162]],[[-0.11438497155905,-0.019086118787527,-0.087032467126846],[-0.0564254373312,-0.070391811430454,0.072086066007614],[0.015750849619508,-0.075487419962883,-0.11147930473089]],[[0.041910510510206,-0.11012855172157,0.043983899056911],[0.019757833331823,-0.021948490291834,-0.013394663110375],[0.020340098068118,-0.069890283048153,-0.044393550604582]],[[0.036919459700584,0.045824114233255,-0.065819576382637],[-0.075212821364403,-0.00098904955666512,-0.0352838113904],[-0.034616034477949,0.078300163149834,0.042379762977362]],[[0.0073998807929456,-0.027378786355257,0.014245364814997],[0.0013624696293846,0.022074205800891,-0.016452742740512],[-0.059378009289503,0.070285186171532,0.0123954070732]],[[0.10513972491026,0.0032125774305314,0.077649503946304],[0.032092932611704,-0.01377977617085,0.09880742430687],[-0.028206504881382,0.020892979577184,0.03896726295352]],[[-0.13735380768776,-0.098220720887184,-0.015272315591574],[-0.03633601218462,-0.089553900063038,0.03739495202899],[0.063871890306473,-0.078624300658703,-0.0057845278643072]],[[-0.027704805135727,-0.024098183959723,0.051339246332645],[-0.062898971140385,0.023826813325286,-0.02917549200356],[-0.058600101619959,-0.06198163703084,-0.018445275723934]],[[-0.012247808277607,0.022061847150326,0.020980644971132],[0.013784719631076,-0.056244991719723,-0.070346638560295],[0.018578523769975,0.055266629904509,-0.011481862515211]],[[0.03230033069849,-0.072169616818428,-0.052776172757149],[0.065221413969994,-0.05747713893652,0.051995374262333],[-0.022478073835373,-0.052856799215078,-0.00525738671422]],[[-0.041345346719027,0.025928108021617,0.072496317327023],[-0.042506117373705,-0.07519193738699,-0.037862498313189],[-0.050581865012646,0.033606309443712,-0.030904626473784]],[[-0.10641877353191,-0.16193507611752,-0.12354621291161],[-0.22605490684509,-0.16126929223537,-0.10480988025665],[-0.1924043148756,-0.084996581077576,-0.060676015913486]],[[0.02376096136868,0.031011739745736,-0.02060778811574],[-0.072135761380196,-0.0089167887344956,0.033977095037699],[0.012209344655275,0.01606884226203,0.058402553200722]],[[-0.084653735160828,-0.016634745523334,0.065233871340752],[-0.052108693867922,0.099109329283237,0.027514083310962],[0.043160412460566,0.024693597108126,0.064843282103539]],[[0.05469336360693,-0.055488161742687,0.058880858123302],[-0.0034025995992124,-0.0031567024998367,-0.028390076011419],[-0.11585771292448,0.062939278781414,0.02303047850728]],[[-0.054116766899824,-0.01787593960762,0.030200716108084],[-0.062811464071274,-0.08594773709774,0.070600353181362],[-0.10094315558672,0.072541564702988,-0.10552855581045]],[[0.035342112183571,-0.035967368632555,-0.039538636803627],[-0.068862646818161,-0.020520450547338,0.049485731869936],[-0.0064382529817522,-0.0029834103770554,0.024945115670562]],[[-0.029952142387629,-0.014982943423092,-0.032048463821411],[0.038420781493187,-0.0041915141046047,-0.024118015542626],[-0.052071407437325,-0.0046785324811935,-0.010216660797596]],[[-0.076900415122509,-0.024918956682086,0.065909057855606],[-0.036541923880577,0.0045727295801044,-0.058269049972296],[0.00066041189711541,0.020496049895883,-0.050317406654358]],[[0.025657970458269,-0.1108323931694,-0.015341013669968],[-0.071211166679859,0.048455085605383,0.049876678735018],[-0.0080710472539067,0.020399287343025,-0.079221419990063]],[[0.063218757510185,-0.017768926918507,-0.035770040005445],[-0.11430629342794,-0.076035059988499,-0.0086883073672652],[-0.047215927392244,-0.016622051596642,0.033232759684324]],[[-0.026614064350724,0.069306619465351,0.044078342616558],[0.032186318188906,-0.077307678759098,-0.021257422864437],[-0.047460958361626,-0.060085542500019,0.078838035464287]],[[0.0030179489403963,-0.0062479246407747,-0.048463270068169],[-0.13261607289314,0.016515005379915,0.065201140940189],[-0.097666278481483,-0.033129829913378,-0.063342556357384]],[[0.099933192133904,-0.035809174180031,-0.02397008612752],[0.019498700276017,-0.091099746525288,-0.027414994314313],[0.02885696478188,-0.052952095866203,-0.0061486256308854]],[[-0.018810184672475,-0.05073245242238,-0.049028601497412],[-0.07769987732172,-0.056868199259043,-0.067336089909077],[-0.0032073273323476,-0.051569871604443,-0.10534184426069]],[[0.00057254731655121,0.01563672721386,-0.0017689978703856],[-8.4208884800319e-05,-0.00040132290450856,0.012327044270933],[0.024425014853477,-0.035285945981741,0.059171989560127]],[[0.042160410434008,0.024439791217446,-0.029852408915758],[0.019224774092436,-0.06475555151701,0.14004935324192],[0.12056214362383,0.023384353145957,-0.022747844457626]],[[0.066481433808804,-0.018522601574659,0.0047701634466648],[0.028830140829086,-0.042510382831097,-0.047409743070602],[0.04385931044817,-0.020047871395946,-0.053417265415192]],[[0.026755953207612,0.034729700535536,-0.024001577869058],[-0.042906038463116,-0.10143803805113,-0.081573627889156],[-0.01835541985929,-0.057326398789883,-0.045818507671356]],[[-0.045453809201717,-0.024554597213864,0.10860349237919],[-0.04522942006588,0.016735779121518,-0.040718857198954],[0.030766623094678,-0.00036307738628238,0.022776933386922]],[[-0.014233670197427,0.10936354845762,-0.13090001046658],[-0.060171816498041,0.001842402969487,-0.044250208884478],[-0.020848397165537,-0.011789854615927,0.031633656471968]],[[0.040221780538559,-0.055418025702238,0.0076317768543959],[0.028675792738795,-0.11119466274977,0.1075973212719],[-0.080704689025879,0.057741913944483,0.019511116668582]]],[[[0.14633528888226,0.084062770009041,-0.13538327813148],[0.11055257171392,-0.1031996384263,-0.10082714259624],[0.0042599090375006,0.093278147280216,-0.072480365633965]],[[0.051006566733122,0.10984778404236,0.030554449185729],[0.065729290246964,0.037834886461496,-0.0044241296127439],[0.10915818065405,-0.12927274405956,-0.073527880012989]],[[0.18586593866348,0.068786703050137,-0.027180323377252],[-0.068301849067211,0.0050303982570767,0.058777283877134],[0.027365513145924,0.15219706296921,-0.060852359980345]],[[-0.0043490012176335,-0.17103153467178,0.099828459322453],[-0.0078309206292033,0.0028852755203843,0.043914500623941],[0.04925287142396,0.079525403678417,-0.029110135510564]],[[0.1277684867382,-0.08511520922184,0.051834397017956],[-0.043978326022625,0.0021829919423908,0.099429801106453],[-0.03162856772542,-0.09064245223999,0.099893525242805]],[[0.060512963682413,-0.051219929009676,0.10247454047203],[-0.054728467017412,0.070941686630249,0.088225200772285],[-0.098681263625622,-0.089443020522594,-0.048365626484156]],[[0.054361671209335,-0.035114858299494,0.002468719612807],[-0.0033254073932767,-0.084657400846481,-0.024370698258281],[-0.10192320495844,-0.017357762902975,0.0039572678506374]],[[-0.016765965148807,-0.085188716650009,0.12598411738873],[0.01175351254642,-0.14756825566292,0.041802618652582],[0.13697245717049,-0.073690108954906,-0.079170420765877]],[[-0.022923210635781,0.1106081828475,-0.044660523533821],[-0.019727468490601,0.0039084772579372,-0.052201934158802],[-0.0069218883290887,0.045744314789772,-0.06791727244854]],[[-0.10247127711773,-0.073121875524521,0.063131958246231],[0.068890042603016,0.018213821575046,0.15971843898296],[-0.022160679101944,0.0068253511562943,-0.14159806072712]],[[0.11747946590185,-0.12271373718977,0.099994607269764],[0.098462663590908,0.0083353612571955,0.06076842918992],[-0.12353680282831,0.1101603731513,-0.15112321078777]],[[-0.071280673146248,0.065032705664635,0.14902174472809],[-0.080994196236134,0.013572220690548,0.017187988385558],[0.040823515504599,-0.01941391825676,0.00086705974536017]],[[0.021886684000492,-0.036210808902979,0.10696536302567],[0.045225810259581,0.032006170600653,-0.034665953367949],[0.12616163492203,0.027169493958354,0.13887183368206]],[[0.078352056443691,0.065272353589535,-0.087199479341507],[0.063804812729359,0.026343375444412,0.027796030044556],[0.14654017984867,0.090744771063328,0.026155091822147]],[[-0.16628536581993,0.071112118661404,0.10606784373522],[-0.0074538262560964,-0.1578826457262,-0.10299185663462],[0.048249457031488,0.037328813225031,0.13344694674015]],[[-0.063348837196827,-0.00084628636250272,0.27322307229042],[-0.25308573246002,0.056013483554125,-0.10856121778488],[-0.076347909867764,-0.12857332825661,0.13991801440716]],[[-0.06489160656929,-0.039253298193216,-0.00089778244728222],[-0.10204653441906,0.0067778485827148,0.11485280841589],[-0.23364987969398,-0.12269008159637,-0.025125119835138]],[[0.087738506495953,-0.10537142306566,-0.034137297421694],[0.0095067722722888,-0.086523301899433,-0.030417213216424],[0.0058117439039052,-0.051043413579464,-0.07758492231369]],[[0.11549123376608,-0.10161712020636,0.011932842433453],[0.075096353888512,0.18941423296928,-0.16585455834866],[0.077270582318306,0.20055976510048,-0.014979550614953]],[[0.029473401606083,-0.053083043545485,0.25120732188225],[0.16104665398598,-0.071223609149456,0.097460307180882],[0.11750653386116,0.042281866073608,0.068619310855865]],[[0.012684114277363,-0.057383213192225,-0.11571208387613],[-0.03866907954216,-0.17595389485359,-0.13795158267021],[-0.055628053843975,-0.084458947181702,0.022859178483486]],[[0.19644403457642,0.078316748142242,0.044434044510126],[0.013257340528071,0.081758372485638,0.021676931530237],[-0.055010799318552,-0.023646613582969,-0.099942691624165]],[[-0.22737900912762,0.025231665000319,0.1201973259449],[-0.10059855878353,-0.05374950543046,0.024148950353265],[-0.16919074952602,-0.047069173306227,0.013860494829714]],[[0.061308618634939,0.12886349856853,0.013973741792142],[-0.095967277884483,0.0033730871509761,0.023095618933439],[-0.065876826643944,0.041593477129936,-0.039402607828379]],[[-0.010687639005482,-0.0032616199459881,-0.10476436465979],[-0.04878993704915,-0.0039641759358346,0.088332504034042],[0.12187810987234,0.042452435940504,-0.095748074352741]],[[-0.04576138406992,-0.10965218394995,-0.095681063830853],[-0.12987548112869,0.062510907649994,0.16902425885201],[-0.14655217528343,-0.031552854925394,-0.018821975216269]],[[-0.24639554321766,-0.12462536990643,0.076773226261139],[-0.11452946066856,-0.164171859622,-0.026255033910275],[0.035427395254374,0.052010849118233,-0.0021421005949378]],[[0.13801315426826,-0.049728721380234,0.050671480596066],[0.024129284545779,-0.033456768840551,0.039198786020279],[0.037493232637644,-0.063070699572563,-0.056007567793131]],[[-0.11363769322634,0.041546192020178,0.15900872647762],[-0.038312442600727,0.072055779397488,-0.081996001303196],[0.01857983879745,-0.0113968802616,0.15263828635216]],[[-0.18608909845352,-0.11758784204721,0.037968851625919],[0.0033004579599947,-0.0057050758041441,0.028585759922862],[0.018274936825037,-0.24162730574608,0.0625284537673]],[[0.095122501254082,-0.069423422217369,0.060180354863405],[0.079921595752239,0.11754997819662,0.11678577214479],[-0.027753993868828,0.016689904034138,0.056680485606194]],[[-0.10186137259007,-0.10110934823751,-0.010708558373153],[-0.035864997655153,0.0029165861196816,0.016511388123035],[0.076421707868576,-0.027502030134201,-0.077701687812805]],[[0.094960086047649,0.10534525662661,-0.086996667087078],[0.031846091151237,-0.22737772762775,-0.080687463283539],[0.10521643608809,-0.055545005947351,-0.11226024478674]],[[-0.064941920340061,0.053847957402468,0.037998590618372],[-0.080949604511261,-0.057115405797958,-0.078188568353653],[-0.056866228580475,-0.021707756444812,0.11807227879763]],[[0.049584034830332,-0.098991475999355,0.039595242589712],[0.042201083153486,-0.037428256124258,0.084000170230865],[0.073041796684265,-0.037880819290876,0.0057972827926278]],[[-0.019713196903467,-0.063926212489605,0.080083526670933],[-0.048180870711803,0.015133735723794,-0.12771558761597],[0.028913930058479,0.00044043629895896,0.074491269886494]],[[0.05120811983943,-0.032769810408354,0.06981710344553],[0.090877883136272,-0.059588968753815,-0.11758994311094],[-0.062963597476482,0.032567881047726,0.099291443824768]],[[0.043721634894609,0.079355970025063,-0.090639792382717],[-0.020043587312102,0.053277928382158,-0.038906436413527],[-0.0034529692493379,-0.081508696079254,0.0053431265987456]],[[-0.090335614979267,-0.051283325999975,0.10167455673218],[-0.0098440321162343,-0.0160006955266,-0.0048851454630494],[-0.13205498456955,0.034889869391918,0.03565875440836]],[[-0.16567958891392,-0.1180262863636,0.018718520179391],[-0.086117528378963,-0.11346876621246,0.030946057289839],[-0.061988171190023,0.01218683924526,0.045549232512712]],[[0.040746301412582,-0.086449600756168,-0.011644282378256],[-0.14906594157219,0.099859446287155,0.10941732674837],[-0.10177779197693,-0.16089841723442,-0.0033269971609116]],[[-0.096147939562798,-0.1064660847187,0.10762299597263],[0.081147864460945,0.051893178373575,0.16965153813362],[-0.050028022378683,-0.052119515836239,-0.049521464854479]],[[-0.13526213169098,0.0069847032427788,0.05333748832345],[-0.089857190847397,-0.051615890115499,-0.072549305856228],[-0.0017524998402223,0.046717945486307,-0.1739657074213]],[[-0.012520892545581,-0.016026070341468,-0.042773123830557],[-0.018490608781576,-0.013612497597933,0.027920564636588],[-0.043926522135735,0.095078110694885,-0.074852108955383]],[[0.11894260346889,-0.16153034567833,0.073026247322559],[-0.067392110824585,-0.043473765254021,0.036049645394087],[0.092584364116192,-0.073948092758656,0.060345709323883]],[[0.11672274023294,-0.15068601071835,-0.014626510441303],[-0.14188796281815,0.1309584826231,-0.16303396224976],[0.070103339850903,0.051341321319342,-0.12549717724323]],[[0.057908210903406,0.064352266490459,-0.063396893441677],[0.0040384149178863,-0.10946904867887,-0.082139179110527],[0.057208109647036,0.010766526684165,0.042557775974274]],[[0.071661189198494,0.0016239582328126,-0.044574573636055],[0.061362035572529,0.019428623840213,0.0023937339428812],[0.064430736005306,-0.066239938139915,-0.011748131364584]],[[0.17728793621063,-0.011788485571742,-0.0012428535846993],[0.097505129873753,0.096193835139275,0.035798400640488],[0.013951661065221,-0.023014228790998,-0.11885792016983]],[[-0.035195849835873,-0.072084128856659,-0.010526791214943],[-0.11367107927799,0.019584316760302,-0.10028320550919],[0.0018862965516746,-0.008801992982626,0.09689074754715]],[[-0.097777850925922,-0.040250681340694,0.015370792709291],[-0.10718797147274,-0.039863392710686,0.039153683930635],[-0.11272259056568,0.056122694164515,0.0090009514242411]],[[-0.045989267528057,0.062601707875729,-0.048028964549303],[-0.098912246525288,0.022701159119606,0.042336903512478],[0.049874246120453,-0.019032400101423,-0.039050865918398]],[[-0.036193441599607,0.17717429995537,-0.038044545799494],[0.11714825034142,-0.019177474081516,0.069897390902042],[-0.18033380806446,0.0099095487967134,-0.062183804810047]],[[-0.088653989136219,-0.0063430373556912,-0.10724118351936],[0.090791396796703,-0.0019778709392995,0.092825882136822],[0.028433982282877,-0.045807525515556,-0.030678188428283]],[[-0.027976153418422,-0.16615433990955,-0.072830870747566],[-0.025051172822714,0.096000730991364,0.072529308497906],[0.060178898274899,-0.039618991315365,0.10463969409466]],[[-0.095291092991829,0.081869065761566,0.051577907055616],[0.01848872564733,0.016495613381267,-0.05851823836565],[-0.21034742891788,0.039519719779491,0.081756375730038]],[[-0.1838563978672,-0.051668670028448,0.045381039381027],[0.020145187154412,-0.071937419474125,0.16003426909447],[-0.069030836224556,0.0012599437031895,-0.034162718802691]],[[0.090586677193642,-0.062477804720402,0.020628409460187],[0.035272318869829,-0.068886645138264,0.12013486027718],[-0.10325809568167,0.035658318549395,0.080708332359791]],[[-0.1364901214838,0.065827585756779,-0.012783281505108],[0.080531306564808,-0.13459618389606,-0.01796424947679],[-0.036609753966331,-0.15496572852135,0.10038330405951]],[[-0.061255041509867,-0.13575692474842,0.10344514995813],[-0.13983185589314,-0.09800561517477,0.13595846295357],[0.069327279925346,-0.094304867088795,-0.07429401576519]],[[-0.041406527161598,-0.19960913062096,-0.10820142924786],[-0.049487486481667,-0.040525749325752,-0.053236830979586],[-0.079880550503731,0.076288275420666,0.063723109662533]],[[0.087757296860218,0.17640371620655,-0.088053911924362],[-0.082793146371841,-0.034990593791008,0.0066604623571038],[-0.088569149374962,-0.02321314625442,-0.19404219090939]],[[-0.073271848261356,-0.00083672284381464,-0.078121110796928],[-0.067219369113445,0.026592746376991,-0.098448857665062],[-0.072890631854534,-0.041048750281334,-0.00068313372321427]],[[-0.12865567207336,0.15507116913795,-0.013789677992463],[-0.070305794477463,-0.0063322097994387,-0.077590875327587],[-0.055383928120136,0.073171697556973,0.095082521438599]]],[[[0.086178302764893,-0.072536461055279,0.025569232180715],[0.10147999972105,0.072296410799026,-0.08028656244278],[0.059990137815475,0.039889179170132,0.14335103332996]],[[-0.039767015725374,-0.11714059114456,-0.004311524797231],[0.11544961482286,0.061455808579922,-0.013923705555499],[-0.057641759514809,0.031656466424465,-0.13106398284435]],[[-0.15878936648369,-0.068962052464485,-0.15746293962002],[0.059906773269176,0.12844227254391,-0.0081365872174501],[0.073295287787914,0.013035737909377,0.019542349502444]],[[-0.23624521493912,-0.023303871974349,-0.074713625013828],[-0.021152993664145,0.093750923871994,-0.045082859694958],[-0.045747712254524,-0.049350492656231,0.1209173053503]],[[-0.10574322193861,0.055197719484568,0.062866188585758],[-0.1397753059864,-0.055110517889261,-0.12813274562359],[0.014315370470285,-0.15572610497475,-0.15370543301105]],[[-0.082545578479767,-0.07295586168766,0.0041865613311529],[-0.020292151719332,0.010517346672714,-0.011754430830479],[0.072648547589779,0.085428714752197,0.045451242476702]],[[-0.031378570944071,-0.0031373770907521,-0.13341602683067],[-0.030959019437432,0.081261180341244,0.1315421462059],[0.039362799376249,0.087787598371506,-0.076542429625988]],[[-0.075582757592201,-0.0073303282260895,0.11260569095612],[-0.034135859459639,-0.14525911211967,-0.031246695667505],[0.075596623122692,-0.021899463608861,-0.04689971357584]],[[-0.0095873512327671,0.10070416331291,-0.01498260628432],[-0.013970146887004,0.041477717459202,-0.084034740924835],[0.024623902514577,-0.0094780987128615,-0.089773006737232]],[[-0.099365249276161,-0.075018100440502,-0.041924595832825],[-0.010242970660329,-0.15622717142105,0.067999362945557],[-0.056656669825315,-0.078364826738834,0.18419960141182]],[[0.041567724198103,0.13888590037823,-0.1152710095048],[0.019126512110233,-0.0037085118237883,-0.16294918954372],[0.028523810207844,-0.064903184771538,0.075169838964939]],[[-0.10264632105827,-0.074710316956043,-0.002100977813825],[-0.019402347505093,0.048793785274029,0.0061692972667515],[0.0037120552733541,0.063431188464165,0.0050103114917874]],[[-0.14523088932037,-0.0020493709016591,0.040217120200396],[-0.2224258184433,-0.1586606502533,0.10265121608973],[-0.0048412457108498,0.19189566373825,0.04274969175458]],[[0.062406301498413,-0.042121902108192,-0.064553968608379],[0.070997662842274,0.066264100372791,-0.087781146168709],[-0.022840330377221,-0.029737148433924,0.015093958936632]],[[-0.14443610608578,-0.075358897447586,-0.15395177900791],[0.080010078847408,0.078280724585056,-0.013455955311656],[-0.042876034975052,0.028855705633759,0.22434997558594]],[[-0.2249920964241,-0.064097419381142,-0.079747796058655],[-0.05384274572134,-0.093277379870415,0.054925944656134],[-0.083824969828129,0.16491110622883,0.17194099724293]],[[-0.021658208221197,-0.028860764577985,0.046610224992037],[0.07122391462326,0.013923506252468,0.047636114060879],[0.076117374002934,-0.067965731024742,0.014390734955668]],[[0.10212492197752,0.053167123347521,0.054772205650806],[0.040270496159792,-0.037270035594702,0.027154758572578],[0.014585198834538,-0.16850306093693,0.0067694508470595]],[[0.087173916399479,0.17591625452042,-0.12434180825949],[-0.010959434323013,0.0079125221818686,0.093713313341141],[0.099475689232349,-0.021094404160976,0.21683037281036]],[[0.050037827342749,-0.024892998859286,0.040705565363169],[0.18966786563396,0.10277631878853,-0.054405782371759],[0.19723084568977,0.04633666202426,0.015433412976563]],[[-0.09631772339344,0.12444000691175,0.05493750795722],[-8.0150086432695e-05,-0.017650172114372,0.10332851111889],[0.041744366288185,0.017616553232074,-0.15426318347454]],[[-0.099911026656628,0.18112683296204,0.024026118218899],[-0.093159481883049,-0.042969644069672,-0.065220192074776],[0.022087667137384,0.00065457029268146,-0.035973690450191]],[[-0.14230796694756,0.059782791882753,0.01836902089417],[-0.024673651903868,0.052885733544827,-0.20698750019073],[0.050671182572842,0.16236659884453,0.076439157128334]],[[-0.26001101732254,-0.1880682259798,-0.094092763960361],[-0.0614098533988,-0.040424894541502,0.05906343460083],[-0.010501167736948,0.11520946770906,0.091864757239819]],[[-0.060570433735847,-0.10932801663876,0.068184606730938],[-0.033930577337742,-0.07421812415123,-0.013145825825632],[-0.010685265995562,0.063280425965786,-0.26996064186096]],[[0.045257922261953,0.12649628520012,0.0016535074682906],[-0.13972148299217,-0.087672002613544,-0.095798619091511],[0.055023226886988,0.044479869306087,0.040898974984884]],[[-0.28569248318672,-0.28259727358818,-0.14670342206955],[0.062158174812794,0.040109559893608,0.012013217434287],[0.066019706428051,0.093465387821198,0.11734918504953]],[[0.00070342188701034,-0.036344449967146,0.11179306358099],[-0.10492420941591,-0.03773482888937,-0.021785147488117],[-0.04648308083415,0.094556502997875,0.0087819378823042]],[[-0.047047059983015,-0.062692023813725,-0.014251647517085],[-0.071484960615635,-0.066912770271301,-0.011340398341417],[0.077596761286259,0.078666500747204,-0.02206320874393]],[[-0.18400608003139,-0.13724023103714,-0.1718737334013],[0.089257471263409,0.01367271784693,-0.0042715789750218],[0.0020186074543744,0.032869208604097,0.071832180023193]],[[-0.27571275830269,-0.15640863776207,0.13908866047859],[-0.049314007163048,0.09074579179287,0.049046754837036],[-0.099169708788395,0.070597603917122,-0.0064143664203584]],[[-0.053155146539211,-0.055757220834494,-0.10122530907393],[0.06219045445323,0.12073640525341,0.060739517211914],[0.0061741857789457,0.18529319763184,0.16892197728157]],[[0.067506089806557,-0.11260686814785,-0.13483738899231],[-0.049046982079744,0.047313328832388,-0.01359929330647],[0.10340224951506,0.059833265841007,-0.011272138915956]],[[-0.066085875034332,-0.075484953820705,-0.0057579190470278],[-0.074789613485336,-0.033226285129786,-0.037834051996469],[0.043748296797276,0.031504761427641,-0.039792198687792]],[[-0.091050244867802,0.064839169383049,0.070410244166851],[-0.061134941875935,-0.30028188228607,0.0077821426093578],[-0.1020188704133,0.11087658256292,0.071431793272495]],[[-0.30102580785751,-0.12726029753685,-0.038320958614349],[-0.071993172168732,0.21093329787254,0.10186538100243],[0.0099489642307162,0.2597733438015,0.098186165094376]],[[-0.14703133702278,0.13501916825771,0.094909504055977],[0.0093199200928211,0.07641763985157,0.0016701070126146],[-0.1352172344923,-0.12165722250938,-0.075691893696785]],[[0.094147749245167,0.083735227584839,0.12652796506882],[-0.052054561674595,0.043733231723309,0.16533768177032],[-0.033644180744886,0.024426022544503,-0.14973691105843]],[[-0.087380327284336,-0.074013508856297,-0.061824038624763],[0.046239260584116,-0.026683893054724,0.20620898902416],[-0.11440258473158,0.013723375275731,0.0079253492876887]],[[-0.21948996186256,-0.18913947045803,0.018419355154037],[0.098504178225994,-0.074158661067486,0.033766742795706],[0.15930649638176,0.11140485852957,0.076981574296951]],[[0.088753633201122,0.11090061068535,0.058902632445097],[0.040253959596157,-0.075291864573956,0.056595358997583],[-0.073607847094536,-0.13253566622734,0.021833084523678]],[[-0.11875163018703,0.081290498375893,-0.064329825341702],[-0.041223131120205,-0.11707372963428,0.11552608758211],[0.10129499435425,-0.056645758450031,0.10237267613411]],[[-0.076937817037106,0.09463519603014,0.016609780490398],[-0.099354267120361,-0.0066572735086083,0.080392055213451],[0.051747556775808,-0.085582181811333,-0.073155432939529]],[[-0.0061579225584865,-0.038296032696962,0.060258641839027],[-0.027592012658715,0.043976135551929,-0.04709841683507],[-0.01348315551877,-0.063736438751221,0.064977638423443]],[[-0.12199631333351,-0.010109101422131,-0.098837621510029],[-0.00048210145905614,0.033428840339184,0.072340205311775],[0.044256988912821,-0.048540059477091,0.13569802045822]],[[-0.24345590174198,-0.021451864391565,-0.36737522482872],[-0.0025796554982662,0.066503718495369,0.015040075406432],[0.009154649451375,0.0011178767308593,0.10705014318228]],[[0.057017523795366,0.071808218955994,-0.15036448836327],[0.014068298973143,0.10314850509167,-0.10665676742792],[-0.011783674359322,-0.034162983298302,0.062102165073156]],[[0.06694795191288,-0.11721356958151,0.068023644387722],[0.1818090826273,0.02495564520359,-0.056129388511181],[-0.077726982533932,0.040667898952961,-0.13986404240131]],[[-0.061504289507866,0.063732460141182,-0.10058391839266],[-0.034751459956169,0.10051246732473,-0.0968157351017],[0.080844312906265,-0.091426528990269,0.041921325027943]],[[-0.12621560692787,-0.073089234530926,-0.036950405687094],[-0.12496370077133,-0.11100217700005,-0.031955879181623],[0.10998679697514,0.080621898174286,0.064399942755699]],[[-0.10742057859898,-0.082230597734451,-0.041246298700571],[0.018588433042169,-0.04392908886075,0.085557952523232],[0.04996670410037,0.12440279871225,0.041148401796818]],[[-0.1285550147295,0.028943946585059,-0.006732914596796],[0.11380913853645,0.24744646251202,-0.21196159720421],[0.019871059805155,-0.24885165691376,0.029786515980959]],[[0.028486713767052,-0.097412429749966,0.061807036399841],[-0.048077773302794,-0.020365642383695,0.072120979428291],[0.10332760214806,-0.010495983064175,0.07699403911829]],[[-0.10707819461823,-0.077154450118542,0.072012834250927],[0.15915386378765,0.056283909827471,-0.060126751661301],[0.081977665424347,-0.08404291421175,-0.11943467706442]],[[-0.11655409634113,0.15375147759914,0.066656775772572],[-0.1226585060358,0.01461744774133,0.21220490336418],[0.071676209568977,-0.033440422266722,-0.099808171391487]],[[-0.019942658022046,-0.065852858126163,0.04181232303381],[-0.00048008846351877,-0.030603827908635,0.2121506780386],[0.02573355846107,-0.011443589814007,-0.012056728824973]],[[-0.12792697548866,-0.059103351086378,-2.041819425358e-05],[0.012739399448037,-0.15190915763378,-0.066673472523689],[0.011915824376047,-0.0089804427698255,0.070839121937752]],[[-0.077639721333981,0.005057723261416,-0.18749916553497],[0.062494326382875,0.11348883807659,0.064169645309448],[-0.04388952255249,-0.03959833085537,0.089547507464886]],[[-0.17380601167679,0.0033378251828253,-0.19099518656731],[-0.12177578359842,0.023082355037332,0.1031681150198],[0.19182223081589,0.20511369407177,-0.051528330892324]],[[-0.10246538370848,-0.045300591737032,-0.23702538013458],[-0.040940973907709,-0.27366256713867,0.016259346157312],[0.050305113196373,0.034429959952831,0.14572671055794]],[[-0.00087666686158627,-0.0089739793911576,0.035757347941399],[-0.071354478597641,-0.13223071396351,-0.053172666579485],[0.11630960553885,0.029585728421807,0.042290460318327]],[[-0.054251905530691,0.1007916033268,0.042852193117142],[0.11370898038149,0.038756910711527,0.031286612153053],[-0.023070646449924,-0.052837628871202,0.080246485769749]],[[-0.19591124355793,-0.17900121212006,-0.12870100140572],[-0.089463256299496,-0.30186435580254,-0.12230698019266],[0.098120607435703,0.055358737707138,0.012564754113555]],[[-0.11429800838232,-0.037562813609838,-0.0022703902795911],[0.13494902849197,0.067146897315979,0.035047389566898],[0.054128915071487,0.097532704472542,-0.012985815294087]]],[[[-0.08291794359684,0.073146216571331,0.02126882225275],[0.058994732797146,-0.0032243311870843,-0.0044685159809887],[0.00065926846582443,-0.025346852838993,-0.024699667468667]],[[-0.04364375025034,-0.12861888110638,0.11129853129387],[0.11494968086481,-0.049685314297676,-0.04640332236886],[0.027350096032023,-0.024920031428337,-0.073390461504459]],[[0.0089922221377492,0.052300289273262,0.020305279642344],[0.066566295921803,-0.0571418851614,-0.17686359584332],[-0.027780210599303,-0.074968829751015,0.14684616029263]],[[-0.034307092428207,-0.12233868986368,-0.099937275052071],[-0.17682620882988,-0.0020804873201996,-0.069972477853298],[0.11897180974483,-0.031343843787909,-0.01382022537291]],[[0.023380791768432,0.010703477077186,-0.028240915387869],[-0.026282479986548,-0.11327837407589,0.082419238984585],[0.027533570304513,-0.013894929550588,-0.11469548195601]],[[0.084464207291603,0.0032977489754558,0.00026063533732668],[-0.047722693532705,-0.041724316775799,-0.012950708158314],[-0.1569932103157,0.045729093253613,-0.070354238152504]],[[-0.11476867645979,-0.019396835938096,-0.16944241523743],[0.0041730212979019,-0.01411656383425,0.049726683646441],[0.0029795388691127,-0.11849731951952,0.063259065151215]],[[-0.069382481276989,-0.07316929101944,-0.023830354213715],[-0.018815210089087,-0.11723516136408,0.061650563031435],[0.021909346804023,0.1086353212595,-0.0093005765229464]],[[-0.11152493208647,0.028008110821247,-0.03239219635725],[-0.013975379988551,0.077293194830418,0.089062944054604],[-0.017444085329771,-0.012040682137012,-0.035457741469145]],[[-0.042230699211359,-0.069331012666225,0.04538306966424],[0.11549467593431,-0.0035912645980716,-0.057339131832123],[-0.029152413830161,-0.07718250900507,0.090383298695087]],[[0.073644243180752,0.14681975543499,-0.06741476804018],[-0.037585731595755,-0.027415901422501,-0.11184443533421],[-0.025043103843927,-0.0061712148599327,-0.258764564991]],[[-0.10397642105818,-0.01935520209372,0.067499808967113],[0.020600901916623,0.083088375627995,0.041381943970919],[-0.011265358887613,-0.0070517216809094,0.097391799092293]],[[0.065722040832043,-0.02514360845089,0.20499888062477],[0.051646593958139,0.11310887336731,0.043673578649759],[-0.027455195784569,0.10422809422016,0.013462810777128]],[[-0.060226913541555,0.014200120232999,0.0027832058258355],[-0.003036679001525,-0.016021933406591,-0.034187749028206],[0.022488363087177,0.0074118417687714,-0.019942501559854]],[[0.097172640264034,0.12364987283945,-0.12619125843048],[0.071664489805698,-0.044860117137432,0.27717414498329],[0.088634625077248,-0.075169213116169,0.0061589851975441]],[[0.04843807965517,0.033751625567675,-0.0019601739477366],[-0.041497442871332,0.012516094371676,-0.0064264894463122],[-0.018330447375774,-0.023294428363442,-0.1182492300868]],[[0.10677517950535,-0.10900717228651,-0.13796532154083],[-0.0025204357225448,0.13556355237961,0.11822935193777],[0.02559562958777,0.0025165472179651,0.18035788834095]],[[0.086027666926384,-0.0079688644036651,-0.0096104787662625],[0.0045520602725446,-0.055650774389505,-0.017527030780911],[-0.085978545248508,0.034650463610888,0.039681568741798]],[[-0.032571520656347,0.088452540338039,-0.081026993691921],[-0.059935241937637,-0.071546770632267,-0.026880165562034],[0.0082171224057674,0.044722523540258,0.099478021264076]],[[0.020598664879799,0.092769734561443,0.20221447944641],[-0.037314929068089,0.088507041335106,0.033666722476482],[0.037205807864666,0.024767877534032,0.14672569930553]],[[0.11030574142933,-0.057440970093012,0.17528490722179],[-0.013226725161076,0.055392730981112,-0.070202745497227],[-0.14931108057499,-0.1497567743063,-0.072158075869083]],[[0.18181280791759,-0.062625579535961,0.27087980508804],[-0.024081805720925,0.08216567337513,-0.038644287735224],[0.050327368080616,-0.070138975977898,0.016900952905416]],[[-0.098797813057899,-0.10009925812483,0.080507420003414],[-0.04005640745163,-0.016300039365888,-0.018779812380672],[0.030000815168023,-0.064110644161701,-0.073016725480556]],[[0.0055442368611693,-0.0050411759875715,0.032607492059469],[0.021269839257002,-0.079219549894333,-0.0024959805887192],[-0.00041999493259937,-0.15302731096745,-0.17483298480511]],[[-0.048004098236561,-0.080647714436054,0.06472435593605],[0.0012496848357841,-0.088023118674755,-0.058965913951397],[0.041443191468716,-0.11069740355015,0.031055878847837]],[[0.1020982041955,0.16030991077423,0.091660998761654],[-0.026910208165646,0.059076935052872,-0.069120980799198],[0.010970442555845,-0.012825854122639,-0.17380851507187]],[[0.035149347037077,-0.13964433968067,-0.17330376803875],[0.035900328308344,-0.0087038045749068,0.060778740793467],[0.046152334660292,-0.074650555849075,-0.013123163022101]],[[0.15439899265766,-0.11556343734264,0.031065553426743],[-0.010968874208629,0.02265259809792,0.11527508497238],[0.064454756677151,-0.04382985830307,0.085681594908237]],[[0.10431563109159,-0.040968749672174,0.048474684357643],[0.00088074075756595,-0.14000649750233,-0.0094111692160368],[-0.033402159810066,-0.087301842868328,-0.04009236395359]],[[0.072695337235928,0.01506548281759,-0.034297287464142],[-0.07205593585968,0.022805308923125,-0.02019852399826],[-0.067586854100227,0.035961925983429,0.021898882463574]],[[-0.024300573393703,0.029373681172729,-0.1093877479434],[-0.11519449204206,-0.033187482506037,-0.023207096382976],[0.0055478205904365,-0.024657726287842,0.0040513887070119]],[[-0.03496004268527,-0.070993974804878,0.096457459032536],[0.028013445436954,-0.11303697526455,0.041262127459049],[0.063605673611164,-0.085162214934826,-0.049126788973808]],[[-0.070825017988682,-0.11714345961809,0.028425015509129],[0.10856340825558,-0.011714586056769,-0.001675843144767],[-0.099295236170292,0.038579728454351,0.098696544766426]],[[-0.01724854670465,-0.041574262082577,-0.021888617426157],[0.1004565730691,-0.075352944433689,-0.13423174619675],[-0.074758253991604,0.066868379712105,0.00445172842592]],[[0.022535616531968,-0.011705338954926,-0.10476668924093],[0.028561450541019,-0.11034142971039,0.1325448602438],[-0.010431130416691,0.0072632930241525,0.022437524050474]],[[-0.042385492473841,-0.036033824086189,-0.26637127995491],[-0.084351263940334,0.050214149057865,0.046177972108126],[0.050024408847094,-0.018652813509107,0.019314974546432]],[[-0.097598031163216,0.032819859683514,-0.15265525877476],[0.20408619940281,0.010631418786943,-0.015981059521437],[-0.11218597739935,-0.056350886821747,-0.027743324637413]],[[-0.00033967400668189,0.14884522557259,0.11163651943207],[-0.10274959355593,-0.039162535220385,0.13099931180477],[-0.023559410125017,0.042679764330387,0.022761417552829]],[[0.016839765012264,-0.094043582677841,0.0027380790561438],[0.064491249620914,-0.11418556421995,0.019845074042678],[0.0042794514447451,-0.17036761343479,0.046216335147619]],[[-0.051938962191343,-0.10065921396017,-0.041461508721113],[0.11255484819412,0.065919801592827,0.11896484345198],[0.039285827428102,0.016605699434876,-0.041657160967588]],[[-0.018474791198969,-0.00065970397554338,-0.06977316737175],[-0.012455776333809,0.026951782405376,-0.037875778973103],[0.085622601211071,0.015523189678788,-0.012535272166133]],[[-0.0090485066175461,0.13293543457985,0.078047201037407],[-0.0535141043365,-0.080588676035404,-0.0078016463667154],[-0.093830198049545,-0.13136836886406,0.06953551620245]],[[0.087354347109795,0.02899007499218,0.083701811730862],[0.047977048903704,0.050751958042383,-0.10252360254526],[-0.034765332937241,-0.064087368547916,-0.10253394395113]],[[0.097258053719997,0.041057880967855,0.060513272881508],[-0.0094733824953437,-0.04363651573658,-0.062434181571007],[0.012564573436975,0.018113261088729,-0.049341145902872]],[[-0.080288529396057,0.014944343827665,0.010331102646887],[0.02220911718905,-0.080907896161079,-0.064682990312576],[0.01383988186717,-0.038856092840433,-0.01477608922869]],[[0.053152665495872,0.038799520581961,0.10028996318579],[0.030610928311944,0.090275354683399,0.12391593307257],[0.050219982862473,0.043345350772142,-0.010732759721577]],[[-0.038513381034136,0.011893131770194,0.0059614791534841],[0.1238501444459,-0.095320880413055,-0.082556113600731],[-0.063747324049473,0.096197076141834,-0.0074106021784246]],[[0.077588476240635,0.0086503382772207,-0.069653406739235],[0.080517992377281,-0.074486419558525,0.072575077414513],[-0.11736648529768,-0.040333278477192,-0.013978199101985]],[[0.069961100816727,0.011870520189404,0.010951488278806],[-0.098253063857555,0.061789017170668,-0.004586121533066],[0.0031057226005942,-0.097610630095005,-0.080240301787853]],[[-0.035137385129929,-0.012702465057373,0.0047711911611259],[-0.011358520947397,0.028983905911446,0.067884348332882],[0.011685625649989,-0.00087567302398384,0.061524003744125]],[[-0.054109234362841,0.041553724557161,0.057613093405962],[0.051317874342203,-0.10069773346186,-0.1660917699337],[0.052119515836239,-0.0029354642610997,-0.032301802188158]],[[0.064832411706448,-0.03648566454649,0.038097374141216],[-0.021968828514218,0.0080451434478164,0.07443355768919],[0.055658925324678,0.025568008422852,0.035696126520634]],[[0.079651392996311,0.087347775697708,-0.026020493358374],[-0.14256769418716,-0.040768299251795,0.035472467541695],[0.099032387137413,0.13445200026035,0.075465366244316]],[[0.072682119905949,0.1792486011982,-0.072510302066803],[-0.083527617156506,-0.10119231790304,-0.0076064127497375],[-0.0053477990441024,0.1375786960125,-0.082042761147022]],[[-0.11607923358679,-0.1249336078763,-0.0019423539051786],[0.017665924504399,-0.011980171315372,-0.14811480045319],[0.037499215453863,-0.030912790447474,-0.033851440995932]],[[-0.087994165718555,0.068406961858273,-0.023656709119678],[-0.0083706136792898,-0.1106303781271,-0.021566588431597],[0.075339883565903,-0.14552284777164,0.041808374226093]],[[-0.11442247033119,-0.021405678242445,0.02367390692234],[-0.042649500072002,0.011037275195122,-0.1964555978775],[-0.0008085030131042,0.019112704321742,0.072895750403404]],[[-0.078625254333019,0.047234337776899,0.059813864529133],[0.0099644064903259,0.069570474326611,0.036307834088802],[0.021328954026103,0.074476942420006,-0.039320636540651]],[[-0.040440548211336,-0.023747162893414,-0.013040686026216],[-0.13019800186157,-0.11746973544359,-0.04081617295742],[0.093477874994278,-0.12026286870241,0.066170535981655]],[[-0.023168357089162,-0.025675315409899,0.19433383643627],[-0.075741961598396,0.049877241253853,-0.081975862383842],[-0.10417045652866,0.0052949171513319,-0.099540039896965]],[[0.0016607861034572,-0.074423350393772,-0.055250979959965],[-0.083749756217003,0.0039715627208352,0.16522327065468],[-0.026681993156672,-0.087195038795471,-0.0833904966712]],[[0.041921779513359,-0.027520479634404,-0.1642946600914],[-0.093236654996872,0.14164686203003,0.048648905009031],[0.065164789557457,0.062256418168545,-0.10429630428553]],[[-0.1860558539629,0.0096276188269258,-0.052809454500675],[-0.1066834628582,0.048307858407497,-0.19785661995411],[0.12504453957081,0.0042206482030451,-0.16548947989941]],[[-0.13643474876881,-0.069029308855534,-0.060458548367023],[-0.071643806993961,0.0011634476250038,0.14117661118507],[-0.0064072990790009,0.02757590636611,-0.038004714995623]]],[[[-0.15901003777981,-0.039406053721905,-0.013240200467408],[-0.034663528203964,0.033850163221359,0.19737902283669],[0.039904106408358,-0.030568417161703,-0.099515877664089]],[[-0.039666779339314,0.11169964820147,0.16604705154896],[-0.060891423374414,0.14568004012108,-0.17024266719818],[0.013223201967776,-0.11988085508347,-0.23365969955921]],[[0.095653064548969,-0.15233024954796,-0.084888242185116],[0.059153322130442,0.041952136904001,-0.063265509903431],[-0.08478020131588,0.1345073133707,-0.028055623173714]],[[0.063465543091297,-0.030009536072612,-0.0571119338274],[-0.038982786238194,-0.02123761922121,-0.0015376241644844],[0.097975380718708,-0.1836936622858,0.0029916584026068]],[[0.068326130509377,0.033497396856546,0.011601182632148],[-0.21311871707439,-0.13317635655403,-0.088102295994759],[0.13460576534271,-0.07111082971096,-0.025482879951596]],[[0.0093798097223043,-0.011119632050395,-0.19513265788555],[-0.086457028985023,0.10048782080412,-0.22658079862595],[0.19881017506123,-0.067155219614506,-0.054479822516441]],[[0.015864890068769,-0.0040863575413823,-0.21236374974251],[-0.076286248862743,-0.087320253252983,-0.26115068793297],[0.031555231660604,0.18071299791336,-0.19067692756653]],[[-0.20068641006947,0.007505617570132,0.079121351242065],[0.10198337584734,0.20826688408852,-0.055961657315493],[-0.056279741227627,0.00048419291852042,-0.1737047880888]],[[-0.064391046762466,0.022506004199386,-0.033407285809517],[0.10159751772881,-0.0054372372105718,0.049792934209108],[-0.072168484330177,-0.09191782772541,0.039659067988396]],[[0.021932268515229,0.0035773324780166,-0.046885296702385],[0.012601726688445,-0.070577844977379,0.17952990531921],[-0.20342819392681,-0.12552389502525,0.10135815292597]],[[0.092900238931179,0.083482153713703,0.056716054677963],[-0.25748983025551,-0.10195505619049,0.030085409060121],[0.097899354994297,0.061072625219822,0.15882109105587]],[[0.036329839378595,0.13837130367756,0.02817839384079],[0.0023661158047616,0.0063303569331765,0.012895097956061],[0.18218494951725,0.042725898325443,-0.028158826753497]],[[-0.04452507942915,-0.2263430505991,-0.034050740301609],[-0.024006891995668,-0.16260607540607,-0.050632126629353],[0.21686877310276,-0.14110939204693,0.0098381051793694]],[[-0.086459994316101,-0.10251265019178,-0.17246320843697],[-0.027497615665197,0.1118418648839,0.34099370241165],[0.12553405761719,0.029000440612435,0.081495188176632]],[[-0.010432321578264,-0.076885975897312,0.010123880580068],[0.044392198324203,-0.021934716030955,0.26924085617065],[-0.04671099036932,0.20444856584072,-0.070985950529575]],[[-0.26407065987587,-0.10562121868134,-0.063476882874966],[0.04814413189888,0.05304728448391,0.050085157155991],[-0.056828498840332,-0.088937863707542,-0.027688667178154]],[[-0.12094570696354,-0.18651919066906,0.14990872144699],[-0.044425293803215,-0.20990715920925,0.21464125812054],[0.14000569283962,-0.031461216509342,-0.041252184659243]],[[0.0089090270921588,0.045687343925238,0.065987154841423],[0.07656467705965,0.22170256078243,0.072162061929703],[-0.16289784014225,-0.2386029958725,0.042539853602648]],[[0.22296471893787,-0.061547342687845,-0.027274213731289],[-0.11443784832954,-0.043235145509243,-0.076451376080513],[0.24439276754856,-0.0051747946999967,0.085657097399235]],[[0.14487215876579,-0.1749751418829,-0.0093531738966703],[-0.10024809837341,-0.060899786651134,0.16556644439697],[0.072824537754059,0.043115373700857,0.40551751852036]],[[-0.23893551528454,0.029750501736999,0.11697812378407],[0.010700904764235,0.06800202280283,-0.010330677032471],[0.09255500882864,-0.052340693771839,-0.10100366920233]],[[-0.072997130453587,-0.078601472079754,0.12290082871914],[0.1258025765419,-0.0062003238126636,-0.12899816036224],[0.0070908730849624,-0.048633150756359,-0.08938867598772]],[[0.13430689275265,-0.071528166532516,-0.055823769420385],[-0.04045283421874,0.10125833749771,-0.16911469399929],[-0.09055944532156,-0.21722449362278,-0.011971388012171]],[[-0.14789837598801,0.022334786131978,-0.084567837417126],[-0.027664832770824,-0.013269471935928,-0.013226593844593],[-0.16891603171825,-0.28980702161789,0.056326925754547]],[[0.026809081435204,-0.16400851309299,0.19602125883102],[-0.12221051752567,0.049743253737688,-0.092163719236851],[-0.14896161854267,-0.027839105576277,0.19533513486385]],[[-0.107018224895,-0.054010264575481,-0.13795249164104],[-0.15709806978703,-0.091044552624226,-0.23322594165802],[0.144835755229,0.040047585964203,-0.063522808253765]],[[0.067247875034809,-0.056991513818502,-0.024673867970705],[0.031606256961823,0.03789958357811,0.037924792617559],[-0.093460150063038,0.011428614147007,-0.049317255616188]],[[0.016275554895401,0.041305456310511,-0.048787232488394],[0.10268237441778,0.049611859023571,-0.040593881160021],[-0.24595007300377,-0.083873845636845,-0.31960648298264]],[[0.14050517976284,0.082329541444778,0.12723128497601],[0.022031398490071,0.026001865044236,-0.046212453395128],[0.0015306095592678,0.09171524643898,-0.3339019715786]],[[0.073097184300423,0.091789707541466,-0.12516881525517],[0.026071613654494,0.031539831310511,0.036005057394505],[0.045646116137505,-0.0067950733937323,-0.015677770599723]],[[0.12271106243134,-0.0601786673069,0.099634796380997],[0.025314461439848,0.072502359747887,0.10498483479023],[0.072466872632504,-0.14619959890842,-0.16076135635376]],[[0.039971835911274,0.043679483234882,0.098541803658009],[-0.10128070414066,-0.083362922072411,-0.09496446698904],[-0.10158859938383,0.12224736809731,-0.024995500221848]],[[0.036737129092216,-0.0042212475091219,-0.18093425035477],[0.060343634337187,-0.03726776316762,-0.047720681875944],[-0.12967500090599,-0.048307087272406,-0.054295141249895]],[[-0.044035091996193,0.14185078442097,0.071963578462601],[-0.02639345638454,0.048171658068895,0.061241254210472],[-0.0029945035930723,0.043849777430296,0.080138117074966]],[[-0.13691808283329,-0.1177052333951,-0.27228310704231],[-0.13752563297749,0.19539286196232,0.087785363197327],[-0.13068827986717,-0.096623249351978,0.093932062387466]],[[0.088449828326702,-8.2702666986734e-05,0.077356763184071],[0.036032538861036,-0.071619309484959,-0.084127329289913],[-0.12229380011559,-0.14665873348713,0.10929479449987]],[[-0.028752150014043,0.044683519750834,-0.19161155819893],[0.042380563914776,0.10158752650023,0.033066380769014],[0.063486255705357,0.015195715241134,-0.017995124682784]],[[0.11681164056063,0.041400257498026,-0.17211829125881],[-0.11001037806273,0.10889582335949,0.20270320773125],[-0.1014723777771,0.058082778006792,0.29086112976074]],[[0.068551875650883,0.13589994609356,-0.19924479722977],[0.22827187180519,-0.13127264380455,-0.12622232735157],[-0.07524836063385,0.046002611517906,0.016381084918976]],[[-0.086257010698318,0.096714414656162,-0.025049861520529],[0.086219251155853,0.080838941037655,0.067732393741608],[-0.14043751358986,-0.073593437671661,-0.091913990676403]],[[-0.045272618532181,0.06751661747694,-0.076574489474297],[0.10971016436815,0.009572365321219,-0.12773010134697],[-0.093805603682995,-0.095680050551891,-0.034324362874031]],[[0.0030170327518135,-0.019451735541224,0.15943060815334],[0.066018097102642,0.036301344633102,0.04661076143384],[0.022518383339047,-0.030452193692327,-0.0090152071788907]],[[-0.10414040833712,0.046311389654875,-0.034202892333269],[0.052629701793194,-0.00091914110817015,0.047357361763716],[-0.15954612195492,-0.022393049672246,-0.20938219130039]],[[-0.12767808139324,-0.1068586781621,-0.11625402420759],[-0.0065866117365658,0.043899238109589,0.023669762536883],[0.086406178772449,-0.037410397082567,-0.0012298502260819]],[[-0.068417511880398,0.10804820805788,0.0036018786486238],[0.11044906079769,-0.059523466974497,0.15621523559093],[-0.045089025050402,-0.10706520080566,0.12512567639351]],[[-0.14785224199295,0.13843323290348,-0.19212055206299],[-0.16590756177902,0.18262016773224,0.11524686217308],[0.060823790729046,-0.023754440248013,0.10674753785133]],[[0.077607244253159,-0.17307469248772,0.12539382278919],[0.068038143217564,-0.011568765155971,-0.14244215190411],[0.065614521503448,-0.23585897684097,-0.032565675675869]],[[-0.030052786692977,-0.16566202044487,0.018903791904449],[-0.016151757910848,0.017691109329462,0.11463261395693],[0.050529722124338,-0.087348856031895,-0.08414513617754]],[[0.060242392122746,-0.095221601426601,-0.25332024693489],[-0.12570966780186,0.064063154160976,0.008243408985436],[-0.19004052877426,-0.15464316308498,-0.094255514442921]],[[0.046274434775114,-0.0087102605029941,-0.034233331680298],[-0.023427505046129,-0.010957176797092,-0.012715586461127],[0.16573390364647,0.012124843895435,-0.097886003553867]],[[0.10788465291262,0.00091173232067376,-0.0026734692510217],[0.001070711761713,0.063374072313309,-0.14198756217957],[-0.11276116222143,0.054435752332211,0.048673581331968]],[[0.076784789562225,0.070283465087414,0.043272532522678],[-0.0043052523396909,0.030696852132678,-0.051746033132076],[0.022908361628652,-0.16348560154438,-0.18150946497917]],[[0.035614285618067,-0.0019294936209917,0.012389942072332],[0.12964802980423,-0.0042210114188492,0.08771526068449],[0.027224259451032,0.01708147674799,-0.14188002049923]],[[-0.0624347217381,-0.012164959684014,-0.039956551045179],[0.21604886651039,-0.0020798947662115,0.064033508300781],[0.12340850383043,-0.076462857425213,-0.15594846010208]],[[-0.016946462914348,-0.12743851542473,0.017450643703341],[0.099249243736267,-0.16993609070778,0.036810621619225],[0.063252985477448,-0.032137211412191,-0.082687750458717]],[[-0.011488588526845,0.029041174799204,-0.0029139793477952],[-0.04358334466815,-0.017162399366498,0.032210320234299],[0.13185231387615,-0.010181228630245,0.0059278137050569]],[[0.012747995555401,-0.072349786758423,-0.045765608549118],[-0.075165666639805,0.097820818424225,-0.16416105628014],[-0.11315777152777,-0.010639123618603,0.069305583834648]],[[-0.2258482426405,-0.062777385115623,-0.10991049557924],[0.071137450635433,0.069065876305103,0.021158143877983],[0.081268042325974,0.27765372395515,-0.020691815763712]],[[-0.19658000767231,-0.32740372419357,-0.1368030756712],[0.12891626358032,0.10007948428392,-0.024972939863801],[0.031472969800234,-0.14917580783367,0.23504342138767]],[[-0.027278954163194,0.15516616404057,0.048308160156012],[-0.021484166383743,-0.092587485909462,-0.042465444654226],[-0.046767942607403,0.13779219985008,-0.18035681545734]],[[0.016643421724439,-0.039314288645983,0.032485239207745],[-0.19317312538624,-0.057456243783236,0.088328771293163],[0.22255139052868,0.12734571099281,0.18123829364777]],[[0.18509496748447,-0.013095528818667,0.071565739810467],[-0.1171113923192,-0.040069907903671,0.011575633659959],[0.032562613487244,0.058096509426832,0.018703017383814]],[[-0.1382909566164,-0.16705520451069,0.063696548342705],[0.025821205228567,0.15690331161022,0.064080573618412],[-0.039696987718344,0.094628050923347,-0.046189039945602]],[[-0.18712311983109,0.045635506510735,0.10990140587091],[-0.013798047788441,-0.045290868729353,0.062076460570097],[-0.11406431347132,0.082137316465378,0.017264276742935]]],[[[-0.11283024400473,0.022668361663818,0.11129078269005],[-0.065339848399162,-0.041234269738197,0.14018428325653],[0.070485189557076,0.020719969645143,-0.16125077009201]],[[0.174465700984,-0.073957055807114,0.096336431801319],[-0.082565143704414,-0.058559693396091,0.033225733786821],[0.0064157005399466,-0.024047238752246,0.14892272651196]],[[0.043050784617662,-0.018498711287975,0.060817405581474],[-0.0048666936345398,0.11295736581087,-0.15207241475582],[0.0094373533502221,0.064248934388161,-0.19849248230457]],[[0.039109189063311,-0.036962252110243,0.0032362574711442],[0.10426297038794,-0.066975489258766,-0.048297256231308],[-0.19536048173904,-0.21196813881397,0.035744301974773]],[[0.082112647593021,0.13247247040272,-0.14414373040199],[-0.094189539551735,-0.0029640044085681,0.040968660265207],[0.064386621117592,0.014355511404574,-0.074321404099464]],[[0.043422684073448,0.10190684348345,0.065936721861362],[0.006212173961103,-0.052234537899494,0.034843519330025],[0.13668951392174,-0.058564141392708,-0.05016341432929]],[[-0.12627848982811,0.043807916343212,0.015088932588696],[-0.035945676267147,0.063511155545712,-0.11371499300003],[0.097020827233791,0.10265055298805,-0.020867664366961]],[[-0.11074160784483,-0.00058485183399171,-0.10674361139536],[-0.030175663530827,0.041254173964262,-0.075551643967628],[0.075509801506996,-0.036200445145369,0.1131210103631]],[[-0.077911294996738,-0.014284707605839,0.092595554888248],[-0.010294176638126,0.04084150865674,0.045435812324286],[0.0092251384630799,0.026984250172973,-0.073891386389732]],[[0.13282752037048,0.025250025093555,0.098936997354031],[0.0064727142453194,-0.21137993037701,-0.030506677925587],[-0.042369183152914,-0.0035356506705284,-0.081030704081059]],[[0.14705307781696,0.050541721284389,0.054928440600634],[-0.015374330803752,-0.036105018109083,0.0062610977329314],[0.093871898949146,-0.035047143697739,-0.070929244160652]],[[-0.0075626438483596,0.022147977724671,0.020712163299322],[0.03196369856596,-0.053612153977156,-0.050772618502378],[0.050670478492975,0.04935934767127,0.08774521201849]],[[-0.0041275839321315,-0.0240298807621,-0.18475712835789],[-0.10454129427671,0.05631697550416,0.14439988136292],[0.067298635840416,-0.06083107739687,-0.087854377925396]],[[0.084342382848263,0.061873655766249,0.1389095634222],[-0.001690236851573,-0.17101310193539,-0.011785347945988],[-0.0031731573399156,0.17126198112965,-0.025299232453108]],[[-0.078518286347389,-0.12321148812771,0.064028866589069],[-0.29140615463257,0.015940256416798,0.050258938223124],[0.024820236489177,0.022131314501166,0.041082795709372]],[[0.066470868885517,0.045039582997561,0.011208516545594],[-0.031462628394365,0.074754372239113,0.06771083176136],[-0.015771463513374,0.0014234246918932,0.068792372941971]],[[0.021452609449625,0.10912524908781,-0.28894630074501],[0.071734450757504,0.022952334955335,0.098737761378288],[0.07366294413805,0.14695355296135,0.087412424385548]],[[-0.067426584661007,0.030550776049495,-0.18770904839039],[-0.04665058478713,0.10184501856565,0.015213444828987],[-0.04099902883172,-0.019375294446945,0.25140783190727]],[[-0.10307428240776,0.12241683155298,0.10861524939537],[-0.019464388489723,0.041411504149437,0.023395583033562],[-0.010173119604588,-0.011457554064691,-0.080218717455864]],[[0.023436790332198,0.15362496674061,-0.061268404126167],[-0.022201208397746,0.0098043065518141,-0.044858988374472],[0.15917885303497,0.10357425361872,-0.28353708982468]],[[-0.019909668713808,-0.025470247492194,0.019104423001409],[0.013445952907205,-0.0091238683089614,0.046339079737663],[0.033567108213902,-0.034772790968418,0.094487696886063]],[[-0.007058815099299,0.25062355399132,0.1010172739625],[0.03298370167613,0.12102148681879,-0.094352170825005],[-0.040713597089052,-0.1748920083046,-0.085331976413727]],[[0.17676091194153,-0.034152157604694,-0.052716199308634],[-0.05771105363965,-0.01165503077209,-0.1661255210638],[-0.092412084341049,-0.095558792352676,-0.21067240834236]],[[0.072953633964062,-0.065817967057228,-0.14315451681614],[0.04257819801569,-0.06903550028801,0.0060425191186368],[0.081323005259037,0.17695331573486,-0.14056222140789]],[[0.062339540570974,0.041329946368933,0.2424258440733],[0.016261933371425,0.20848654210567,0.005855078343302],[-0.038005080074072,0.0170814152807,0.020011886954308]],[[0.09288751333952,0.067236848175526,0.088157035410404],[-0.035226821899414,0.019365087151527,0.11632370203733],[-0.082552850246429,-0.21876230835915,-0.09992328286171]],[[0.04041925817728,0.007448086515069,-0.13129685819149],[0.076263956725597,0.046868901699781,-0.12200175970793],[0.18973204493523,0.059733092784882,-0.02615212649107]],[[-0.089837200939655,-0.25930553674698,-0.12042202800512],[-0.25726056098938,-0.069092087447643,0.13900354504585],[0.030707843601704,0.058133874088526,0.081854850053787]],[[-0.10456940531731,-0.06390929967165,-0.028616057708859],[-0.11064101010561,0.10674717277288,0.038853339850903],[0.23198640346527,-0.023428589105606,0.041327442973852]],[[-0.0027884531300515,0.039059419184923,0.2106406390667],[0.068843819200993,-0.028121871873736,0.10478635132313],[-0.047852862626314,-0.20394498109818,-0.10512011498213]],[[0.13318069279194,0.047966886311769,-0.173010379076],[-0.067955955862999,-0.082474514842033,-0.0074568465352058],[0.014958714134991,-0.18791465461254,0.086811617016792]],[[0.041935574263334,-0.1045879945159,-0.22447803616524],[-0.062841229140759,0.0017065654974431,0.1707576662302],[-0.026539361104369,0.098200365900993,0.11122090369463]],[[0.043447863310575,-0.05891028419137,-0.066357664763927],[-0.12008862942457,0.058807894587517,0.0044417874887586],[-0.017059093341231,-0.067974604666233,-0.062086999416351]],[[0.023494837805629,-0.050854802131653,0.040328793227673],[0.060094382613897,-0.0093374298885465,0.042999364435673],[-0.10822732746601,-0.04056504368782,0.0630804002285]],[[0.18927831947803,0.0012729661539197,0.017029820010066],[-0.023449515923858,-0.08149628341198,-0.11625051498413],[-0.04741257801652,-0.23904626071453,-0.20029138028622]],[[-0.173005387187,-0.12896148860455,-0.20075422525406],[-0.078028775751591,-0.02146415412426,-0.062346015125513],[0.046264071017504,-0.069254823029041,0.025077475234866]],[[-0.035826500505209,-0.16464968025684,-0.14782509207726],[-0.026121666654944,-0.083002634346485,0.016783686354756],[-0.049303390085697,0.151192933321,0.12039436399937]],[[0.20682142674923,0.13901311159134,0.29168310761452],[0.10920832306147,0.090394243597984,-0.020272724330425],[-0.12854482233524,-0.12231779843569,-0.0075022769160569]],[[0.058547705411911,0.10447637736797,0.082869566977024],[0.035345293581486,0.0040244632400572,-0.0067861597053707],[0.17490889132023,-0.10896214842796,-0.1367260068655]],[[-0.079066470265388,-0.017074845731258,0.1350756585598],[0.01732606254518,0.054790891706944,0.041519705206156],[-0.15996481478214,0.030384737998247,-0.071104750037193]],[[0.0028638911899179,0.024778949096799,0.040274612605572],[-0.0055239340290427,-0.088291957974434,0.12140113860369],[-0.17893598973751,0.018379295244813,-0.050108730792999]],[[0.048994746059179,0.012857545167208,0.028390785679221],[0.029926104471087,-0.10142332315445,0.011712301522493],[-0.070374689996243,0.080884389579296,0.096119113266468]],[[0.17657147347927,-0.053801756352186,0.10245167464018],[0.031188786029816,-0.0014769772533327,-0.060933545231819],[-0.025036687031388,0.031165510416031,0.02587590739131]],[[0.12303513288498,0.033037729561329,0.04659665748477],[0.013266519643366,-0.019198603928089,-0.12543070316315],[-0.066612750291824,0.045361068099737,-0.044201128184795]],[[0.119648180902,-0.07645083963871,-0.0087003735825419],[0.12377617508173,-0.13677430152893,-0.030792457982898],[-0.17362581193447,-0.093072295188904,-0.089211702346802]],[[0.12496663630009,-0.22205863893032,0.025457881391048],[0.060227181762457,-0.075871959328651,0.013843167573214],[0.082199484109879,0.063640847802162,-0.061531744897366]],[[0.088685624301434,-0.063766680657864,0.15931244194508],[0.13101878762245,0.024516152217984,-0.074530243873596],[0.090455830097198,-0.039373349398375,0.050565212965012]],[[0.023089105263352,0.060846675187349,0.10260338336229],[0.0089161330834031,-0.039247024804354,0.0029203018639237],[-0.030097445473075,-0.13382349908352,0.07583275437355]],[[0.092895865440369,0.11914429813623,0.059330806136131],[-0.059358134865761,-0.12277033179998,-0.086752697825432],[0.15248018503189,0.027595400810242,-0.25967833399773]],[[0.021307634189725,-0.024001035839319,-0.023828107863665],[0.017916169017553,-0.084945544600487,-0.16363683342934],[-0.10504402220249,0.094376116991043,-0.042403481900692]],[[0.094274289906025,-0.002003755653277,0.017508177086711],[-0.003329784842208,-0.0028666362632066,0.018799943849444],[0.079006783664227,0.001873355358839,0.030396016314626]],[[-0.0031238724477589,-0.029526306316257,0.0096478061750531],[0.03247357904911,-0.012808855623007,0.063943885266781],[0.081881523132324,0.020275773480535,-0.00089002650929615]],[[0.073714822530746,0.07462415099144,0.046161916106939],[0.079335808753967,0.034899119287729,-0.10130007565022],[-0.077190294861794,0.066679693758488,-0.06053913384676]],[[-0.029431875795126,-0.0403733253479,0.21898341178894],[-0.069892250001431,0.012111539952457,0.20362366735935],[0.070790559053421,-0.06403399258852,-0.03249529376626]],[[0.1238067522645,-0.034551382064819,0.11588260531425],[-0.03134885057807,-0.049696680158377,0.1088370680809],[0.049528785049915,-0.066488660871983,-0.18357710540295]],[[0.21258437633514,-0.10098394006491,-0.02322711609304],[-0.040858760476112,-0.096584349870682,-0.00099578697700053],[-0.055163905024529,-0.026249323040247,0.13250297307968]],[[0.0097791496664286,-0.025373212993145,0.093950472772121],[-0.038410320878029,-0.09024703502655,0.039497688412666],[-0.028215762227774,-0.0083245523273945,-0.041548915207386]],[[-0.12102168798447,0.024255804717541,-0.005925664678216],[-0.17264521121979,0.036569830030203,0.015004448592663],[-0.080938994884491,-0.06954063475132,0.15923281013966]],[[0.10568544268608,0.064703106880188,0.17197354137897],[-0.0061838515102863,-0.011842709966004,-0.01643835939467],[-0.076992854475975,0.079145684838295,0.01162982173264]],[[0.15690377354622,0.033737659454346,0.14166381955147],[0.066510155797005,0.034858781844378,-0.0083768926560879],[0.042365752160549,-0.056230396032333,-0.07781608402729]],[[-0.042500626295805,-0.013052168302238,-0.16802714765072],[0.050880335271358,0.089640021324158,-0.0037362887524068],[-0.18540668487549,0.022194696590304,-0.05749673768878]],[[0.056176103651524,-0.085643246769905,0.036276262253523],[-0.025468926876783,-0.17362612485886,-0.12686550617218],[-0.11500304937363,-0.021253513172269,0.021070558577776]],[[0.092828556895256,-0.041102763265371,0.11668226122856],[0.090690866112709,-0.09027136862278,-0.18580348789692],[-0.015211295336485,-0.035348039120436,0.094216451048851]],[[0.11483874171972,-0.022821901366115,-0.0029141746927053],[-0.10931113362312,0.004291174467653,0.15662227571011],[-0.27590328454971,-0.023968061432242,-0.026774805039167]]]],"nOutputPlane":64,"kW":3,"kH":3,"bias":[-0.012602005153894,-0.018933618441224,-0.04125751554966,-0.018115209415555,-0.015010554343462,-0.016031257808208,-0.010292706079781,-0.022451126947999,-0.022664327174425,-0.026715230196714,-0.025545172393322,-0.015108834952116,-0.017973454669118,-0.018439365550876,-0.010965262539685,-0.025168929249048,-0.020465917885303,-0.024975510314107,-0.014408405870199,-0.018478063866496,-0.022635316476226,0.00012812958448194,-0.015299295075238,-0.023128563538194,-0.023557769134641,-0.0046979333274066,-0.027089573442936,-0.017039863392711,-0.017202479764819,-0.013233899138868,-0.012940580956638,-0.016535395756364,-0.022485101595521,-0.01982132345438,-0.026095381006598,-0.013362195342779,-0.030841626226902,-0.006464559584856,-0.016903601586819,-0.012404574081302,-0.016382094472647,-0.019533835351467,-0.02119230106473,-0.021189875900745,-0.02078609354794,-0.0045360177755356,-0.0071851680986583,-0.006975011434406,-0.011340654455125,-0.030800234526396,-0.017931463196874,-0.02612660266459,-0.021984318271279,-0.016282208263874,-0.011531348340213,-0.025214582681656,-0.010174470022321,-0.012833544053137,-0.0090203387662768,-0.010250107385218,-0.0079296389594674,-0.018715819343925,-0.020734263584018,-0.021658256649971],"nInputPlane":64},{"weight":[[[[-0.088874772191048,0.10715512186289,0.035897370427847],[-0.047206662595272,0.053519636392593,0.072009913623333],[-0.049524806439877,-0.047584727406502,0.060074739158154]],[[0.034525897353888,-0.012046669609845,-0.079216443002224],[0.048093009740114,-0.13178639113903,-0.11920527368784],[0.013250126503408,-0.058111932128668,0.045294832438231]],[[0.01069815363735,-0.058473363518715,-0.077630743384361],[-0.18070140480995,-0.1267698854208,-0.11585913598537],[-0.082660146057606,-0.048678703606129,-0.1279029995203]],[[0.12141978740692,-0.0062838941812515,0.034636832773685],[0.06196566298604,-0.092943459749222,0.06516045331955],[-0.05452274158597,-0.068660147488117,-0.034285262227058]],[[-0.11139856278896,-0.078945323824883,0.052686300128698],[0.088274106383324,-0.10792644321918,-0.096014298498631],[-0.02062757872045,-0.073852233588696,-0.060303095728159]],[[-0.021641610190272,-0.088680103421211,-0.087352700531483],[-0.030454164370894,-0.15325094759464,-0.14053800702095],[-0.10468561202288,0.058544307947159,0.079520829021931]],[[-0.033770896494389,-0.13462430238724,0.036254603415728],[-0.0022732112556696,-0.12015837430954,0.063314266502857],[0.067993268370628,0.0011480179382488,0.060983065515757]],[[0.018954910337925,-0.22145058214664,0.17030952870846],[-0.09997770935297,-0.053950253874063,0.028016226366162],[0.066273853182793,0.056915231049061,-0.015186160802841]],[[0.029449081048369,-0.046670526266098,0.00076587393414229],[0.029485013335943,-0.053885284811258,-0.026349112391472],[0.093250617384911,0.059274941682816,-0.12656144797802]],[[0.15343448519707,-0.014374887570739,-0.062288861721754],[0.042807798832655,-0.017924340441823,0.026598105207086],[-0.031908970326185,-0.07799756526947,0.074002221226692]],[[-0.037194132804871,-0.050278682261705,0.051891759037971],[-0.13468116521835,0.048057548701763,0.050115197896957],[0.09964495152235,0.03126684576273,-0.068051166832447]],[[0.041919209063053,0.0024013321381062,-0.0056920824572444],[0.089298166334629,-0.018812293186784,0.074561320245266],[0.11726571619511,0.07535120844841,0.16029770672321]],[[-0.038930155336857,-0.036609895527363,-0.089271530508995],[0.13715432584286,-0.17508958280087,0.061133079230785],[0.0096380906179547,-0.049273069947958,0.014565864577889]],[[-0.13800358772278,0.044153243303299,-0.043114706873894],[0.011885728687048,0.11643815785646,-0.0075695496052504],[0.060315292328596,-0.066517263650894,0.040639229118824]],[[0.013623665086925,0.095683239400387,-0.023053076118231],[-0.030920039862394,-0.020125428214669,0.011752176098526],[-0.14047449827194,-0.056139942258596,-0.02164208330214]],[[-0.0049669425934553,0.020862713456154,-0.30193787813187],[-0.066855952143669,-0.062273938208818,-0.22536760568619],[-0.040953628718853,-0.026746693998575,-0.24164658784866]],[[-0.048341896384954,0.018956169486046,-0.042702108621597],[-0.090829186141491,0.0014947574818507,-0.10666275769472],[-0.069020628929138,-0.07608850300312,-0.016702864319086]],[[0.1684785336256,0.088816903531551,-0.12178362160921],[0.23187981545925,-0.00040331637137569,0.019715551286936],[0.076206021010876,-0.013989113271236,-0.041257854551077]],[[-0.02863259986043,-0.052258763462305,-0.0062565160915256],[0.03892233595252,-0.096108175814152,0.075474299490452],[-0.10656399279833,0.0083647491410375,0.032962698489428]],[[0.17015121877193,0.056209437549114,-0.022609960287809],[0.0028691713232547,-0.018943037837744,-0.069087408483028],[0.11250326037407,-0.099582009017467,-0.15472562611103]],[[0.051421146839857,-0.082930661737919,0.068986333906651],[0.0047234236262739,-0.091815680265427,0.061167560517788],[0.099511444568634,-0.054136380553246,0.085421212017536]],[[0.021926071494818,0.025802040472627,-0.017312673851848],[-0.020723380148411,-0.12628503143787,0.010512974113226],[0.023366566747427,0.04429741576314,0.0048131654039025]],[[-0.0063313622958958,-0.082168109714985,-0.002013751771301],[-0.074086062610149,0.0094768768176436,-0.076354496181011],[0.041447013616562,-0.076528392732143,0.012656795792282]],[[0.017112154513597,-0.010082392953336,0.065929509699345],[0.087040290236473,-0.020326187834144,-0.0034293727949262],[0.037439204752445,-0.0053261360153556,0.26188415288925]],[[-0.11062582582235,0.053964521735907,-0.17576682567596],[-0.089783884584904,0.010589675977826,0.13890379667282],[0.024722939357162,0.1233177408576,0.1450677216053]],[[-0.039039418101311,-0.0030701931100339,0.0095261828973889],[-0.042396377772093,0.035350557416677,0.019115990027785],[0.00033878849353641,-0.011525404639542,-0.0069950208999217]],[[-0.073699362576008,-0.022481767460704,0.16145670413971],[-0.12238531559706,-0.033530972898006,0.0025946078822017],[0.039905484765768,-0.077137783169746,0.055914252996445]],[[-0.10758439451456,-0.007963097654283,-0.28528499603271],[-0.066152155399323,0.046467330306768,-0.14493089914322],[-0.08170136064291,-0.015247545205057,-0.26112279295921]],[[0.042666252702475,0.071686275303364,-0.10745692998171],[-0.065753772854805,-0.0067343302071095,-0.23540426790714],[-0.15996807813644,-0.16265338659286,-0.078457325696945]],[[0.029077922925353,-0.049648083746433,0.14881286025047],[0.1164263561368,-0.057139724493027,0.02713081240654],[-0.088168613612652,0.045928534120321,-0.21374659240246]],[[-0.073691681027412,0.15795350074768,-0.035583063960075],[-0.039185266941786,0.14786943793297,0.032723005861044],[-0.0003005582257174,0.032488409429789,-0.084599949419498]],[[-0.063398137688637,0.032481614500284,0.11928176879883],[-0.082364961504936,0.035383857786655,0.13335905969143],[0.040285430848598,-0.0088265808299184,0.16775093972683]],[[-0.058007389307022,-0.010022747330368,0.043070923537016],[0.075361825525761,-0.025374453514814,0.023336039856076],[0.032790657132864,-0.16618205606937,-0.050766199827194]],[[-0.022269502282143,-0.0051163891330361,-0.034083537757397],[-0.089712657034397,0.10912313312292,-0.040067784488201],[-0.018803775310516,0.061491571366787,0.10273922979832]],[[0.024135798215866,-0.10923372209072,0.077979490160942],[0.049306776374578,-0.0023340424522758,-0.062801696360111],[0.16600009799004,-0.012051182799041,-0.021179726347327]],[[0.10285121202469,0.066065862774849,-0.028499143198133],[0.042715139687061,0.020563196390867,-0.019339259713888],[0.11812005192041,0.072641789913177,0.012643869034946]],[[-0.020584581419826,0.037867121398449,-0.0081433746963739],[0.14566013216972,-0.0094229895621538,0.12698438763618],[-0.097999170422554,0.19546064734459,-0.13547796010971]],[[-0.0067737195640802,0.015154926106334,-0.15920902788639],[0.030488945543766,-0.0072160968557,-0.19390162825584],[0.074219323694706,0.10537109524012,-0.11373496055603]],[[-0.037520032376051,-0.076429590582848,-0.023714449256659],[-0.0024717035703361,0.06249949708581,0.032290760427713],[-0.13163743913174,-0.048837665468454,-0.067645162343979]],[[-0.051546152681112,-0.036227371543646,-0.040938232094049],[-0.076765619218349,-0.203887373209,0.11689975112677],[0.0084211621433496,-0.089375853538513,0.010729779489338]],[[0.068289488554001,0.11488277465105,-0.12732268869877],[0.090343989431858,-0.041963152587414,-0.082520224153996],[0.038796529173851,0.048644687980413,-0.12127909064293]],[[0.043378800153732,-0.013262655586004,-0.050660952925682],[-0.043064035475254,-0.063890196382999,-0.053986981511116],[-0.14306819438934,-0.022817492485046,-0.034729059785604]],[[0.11866968870163,-0.14552561938763,0.091963432729244],[-0.016010606661439,-0.088760584592819,0.012053069658577],[-0.0245201587677,-0.22184014320374,-0.081019639968872]],[[0.24632075428963,-0.13977764546871,-0.19164299964905],[0.06508719176054,-0.018049674108624,-0.13721610605717],[0.18329173326492,-0.17332574725151,-0.015606024302542]],[[-0.15377239882946,0.092291124165058,-0.046714879572392],[-0.10571622848511,0.048361107707024,-0.0023893353063613],[0.025312537327409,-0.10074809193611,-0.1629223972559]],[[0.029140951111913,-0.027321783825755,-0.067346923053265],[0.051239099353552,-0.091281279921532,-0.086526818573475],[-0.0026617264375091,-0.1169084534049,0.049871254712343]],[[0.023584162816405,0.086723349988461,-0.108229637146],[-0.16555435955524,0.063663847744465,-0.12645691633224],[-0.043762907385826,-0.14333511888981,-0.020709795877337]],[[0.068676456809044,0.016839135438204,0.041606124490499],[-0.11749691516161,0.073801055550575,0.087289497256279],[-0.051922958344221,0.029500886797905,0.0023017800413072]],[[-0.084692910313606,0.034185629338026,0.012282780371606],[-0.27647849917412,0.11046537011862,-0.18211308121681],[-0.043746639043093,0.068987347185612,0.00086566450772807]],[[0.08046455681324,-0.035794328898191,-0.062757976353168],[-0.0035933221224695,0.13712093234062,-0.14687895774841],[0.23590692877769,0.018637953326106,-0.05157620832324]],[[0.043989788740873,-0.078466080129147,0.20369626581669],[-0.10562346875668,-0.015472574159503,-0.036667633801699],[-0.19177973270416,-0.18972744047642,-0.26627132296562]],[[0.057978592813015,-0.027328200638294,-0.25818797945976],[0.088469736278057,-0.18036046624184,-0.11794938892126],[-0.020425956696272,-0.048019252717495,-0.060528725385666]],[[-0.022119801491499,0.11218569427729,0.044005766510963],[-0.13855724036694,0.10938827693462,-0.099287025630474],[0.15153719484806,-0.021629193797708,0.054416090250015]],[[0.016543289646506,0.030771095305681,0.016166625544429],[0.013858432881534,0.071474432945251,0.071398109197617],[-0.098561033606529,-0.16676908731461,-0.13728223741055]],[[-0.091401569545269,-0.051722083240747,0.045780263841152],[0.030598582699895,0.010770314373076,-0.060442082583904],[0.0941376760602,0.059715505689383,-0.33341863751411]],[[0.071254871785641,0.15594653785229,0.066286027431488],[0.0027298906352371,0.062091507017612,0.061355888843536],[0.020196786150336,0.056499000638723,-0.081154622137547]],[[0.084978863596916,-0.18098238110542,0.053806822746992],[0.0521459877491,-0.028017301112413,0.021197577938437],[-0.12748472392559,0.026881525292993,-0.051814205944538]],[[0.046702105551958,-0.027531420812011,-0.064278438687325],[-0.0058738482184708,0.026989310979843,-0.083358749747276],[0.060148019343615,-0.07879401743412,-0.0018142635235563]],[[-0.0015829566400498,-0.040771156549454,0.086971625685692],[0.023018451407552,-0.0037772615905851,0.040915410965681],[0.046057246625423,-0.03620083257556,-0.048085357993841]],[[-0.17868871986866,-0.14131198823452,0.16541728377342],[-0.031490195542574,0.070347093045712,-0.0063244104385376],[-0.001356408232823,-0.096861936151981,0.049850471317768]],[[-0.013803752139211,-0.11416693031788,-0.10403103381395],[-0.035441894084215,-0.013193811289966,-0.012129438109696],[-0.037494115531445,0.011843319050968,-0.091890580952168]],[[-0.033302702009678,-0.16884689033031,-0.32357436418533],[-0.095030091702938,-0.053649839013815,-0.13236989080906],[-0.0030513389501721,-0.041238199919462,0.034047845751047]],[[0.035862810909748,0.080582104623318,-0.053781785070896],[-0.029582010582089,0.13732354342937,-0.13769885897636],[0.12819840013981,0.10577599704266,-0.14294475317001]],[[-0.027462862432003,0.055400215089321,-0.036187753081322],[0.03370127081871,0.031071892008185,-0.097703538835049],[0.067916326224804,0.13172136247158,0.047754276543856]]],[[[-0.084838151931763,-0.053527995944023,-0.066276997327805],[-0.055077575147152,-0.13177551329136,-0.064955502748489],[-0.13828901946545,-0.0058096875436604,0.0076206061057746]],[[-0.037874165922403,-0.019588010385633,-0.016580808907747],[0.0080780861899257,0.025861175730824,-0.012137999758124],[-0.19943502545357,-0.13323006033897,-0.21956124901772]],[[-0.085193082690239,-0.10079437494278,-0.13143369555473],[-0.093144975602627,-0.067814610898495,0.077354833483696],[-0.030996998772025,-0.070429973304272,0.057455122470856]],[[-0.076498158276081,0.042934224009514,-0.14796467125416],[-0.058825466781855,-0.064696460962296,-0.13800212740898],[0.035055253654718,-0.072293162345886,0.039992455393076]],[[0.003027566941455,-0.08641778677702,-0.12230853736401],[0.06788045912981,-0.073828928172588,-0.04736340418458],[0.050373509526253,0.025803346186876,-0.057014059275389]],[[0.031215716153383,-0.082400605082512,-0.048558853566647],[0.05173222720623,-0.043543793261051,-0.12954033911228],[-0.0094212349504232,-0.030139977112412,-0.042816329747438]],[[0.12092620134354,-0.0020396804902703,-0.020937906578183],[0.041478872299194,0.039577167481184,-0.022772025316954],[-0.07187170535326,-0.057964112609625,-0.17361031472683]],[[-0.053161565214396,-0.069105379283428,-0.13850201666355],[0.030596248805523,-0.043443169444799,-0.035938698798418],[0.046627193689346,0.13580565154552,0.12705448269844]],[[0.015712041407824,-0.047621373087168,-0.067010797560215],[-0.016295718029141,-0.14330261945724,-0.12944865226746],[-0.075055256485939,-0.085196807980537,-0.035131737589836]],[[-0.075211346149445,-0.0026682035531849,-0.015614320524037],[0.11804542690516,-0.030836751684546,-0.0171108096838],[-0.063313789665699,-0.0062732477672398,-0.068555928766727]],[[-0.15591423213482,-0.082471773028374,-0.016733488067985],[0.021127983927727,-0.0024491983931512,-0.016810394823551],[0.074451245367527,0.0058935317210853,0.085119105875492]],[[0.00067603186471388,-0.082402594387531,0.039317540824413],[0.074872352182865,0.10560435056686,0.12075077742338],[-0.102947704494,0.022342210635543,-0.15679006278515]],[[0.17465177178383,-0.046642478555441,-0.082846701145172],[0.013775451108813,0.012759550474584,0.023322638124228],[-0.13204126060009,0.058745212852955,0.052429400384426]],[[0.032952334731817,-0.08268515765667,-0.052009474486113],[-0.094012342393398,-0.033160045742989,0.050168585032225],[-0.062335181981325,-0.049559015780687,-0.054149635136127]],[[-0.017616024240851,-0.026419047266245,0.01748888194561],[-0.049459159374237,0.043898306787014,-0.0026646491605788],[0.12599341571331,-0.10756713151932,-0.19827370345592]],[[-0.0037571389693767,0.036084804683924,0.089640930294991],[0.019001483917236,0.12326475977898,0.080118216574192],[-0.13929821550846,0.044575475156307,0.036269031465054]],[[0.022005673497915,-0.079713329672813,-0.053956646472216],[0.058508399873972,0.15732930600643,-0.041340615600348],[0.03626562282443,-0.043734181672335,-0.062654711306095]],[[0.044922832399607,0.035828780382872,0.11808491498232],[0.033210121095181,-0.047965478152037,-0.076532766222954],[-0.088278025388718,-0.15792217850685,-0.10448078066111]],[[-0.2604923248291,-0.16399963200092,0.020025387406349],[-0.033862974494696,-0.0365947522223,-0.046746857464314],[-0.24508734047413,-0.16620557010174,-0.006737953517586]],[[-0.043420728296041,0.18469971418381,0.078916974365711],[0.012053820304573,-0.083855666220188,-0.021838169544935],[-0.017305349931121,-0.050143443048,0.042140051722527]],[[0.12970711290836,0.074805848300457,-0.16361594200134],[-0.022647498175502,0.023609844967723,0.0001737975544529],[-0.088561877608299,-0.0027580363675952,-0.036495506763458]],[[-0.092466279864311,-0.0358901694417,-0.025240421295166],[0.034244496375322,-0.054768074303865,0.052379753440619],[0.011033031158149,-0.056748975068331,-0.01711168140173]],[[-0.045404646545649,0.073988452553749,0.049948118627071],[-0.049110047519207,-0.03718913346529,0.075799368321896],[0.063570208847523,0.073763646185398,-0.046111289411783]],[[-0.034328896552324,-0.048293378204107,-0.068040147423744],[0.018442459404469,0.17034704983234,-0.0035975843202323],[0.067713603377342,0.099318973720074,-0.014147286303341]],[[0.0068225488066673,-0.071466691792011,-0.21688033640385],[0.082784280180931,0.014797645621002,-0.10026099532843],[-0.028059482574463,0.067334420979023,-0.050509177148342]],[[0.096085570752621,0.060837857425213,-0.075332723557949],[0.12802967429161,0.016334528103471,0.023912750184536],[-0.039793714880943,-0.048174154013395,-0.11172912269831]],[[0.01456188224256,0.025255801156163,0.013078620657325],[-0.029492735862732,-0.011289874091744,0.044746916741133],[-0.10894298553467,0.070021294057369,0.13939236104488]],[[0.0060450094752014,0.11098156869411,0.15374891459942],[-0.074485406279564,0.11055558919907,-0.045776084065437],[-0.2243507951498,-0.069866880774498,0.024050293490291]],[[-0.0089199775829911,-0.10135462135077,-0.0089031336829066],[0.011348423548043,0.079897657036781,0.02726480551064],[-0.086483046412468,-0.02455740980804,0.055586781352758]],[[0.10232989490032,0.079515054821968,-0.13804151117802],[-0.062961027026176,0.022977784276009,-0.0023025267291814],[-0.11842845380306,0.0090880515053868,-0.043656442314386]],[[-0.014307477511466,-0.050825618207455,0.039804309606552],[-0.0039486247114837,-0.051498498767614,-0.01720417663455],[-0.0077312202192843,-0.05163511633873,-0.013862230814993]],[[-0.14141294360161,-0.12446987628937,-0.0080272350460291],[0.017706081271172,0.023419430479407,0.0025922588538378],[0.018312217667699,0.046085078269243,-0.036847602576017]],[[-0.0024406225420535,0.031625788658857,-0.041664134711027],[0.086719557642937,0.072400942444801,-0.020183771848679],[0.010754887014627,-0.021375138312578,0.025286277756095]],[[-0.050783541053534,-0.088342554867268,-0.022829664871097],[0.0063689830712974,-0.17355658113956,-0.10314961522818],[-0.11536041647196,-0.043619140982628,0.053258687257767]],[[0.11965871602297,-0.031307831406593,-0.05123933032155],[-0.13779579102993,0.042832061648369,-0.11203334480524],[-0.15847818553448,0.012423799373209,0.072106577455997]],[[0.013841805048287,0.011041120626032,-0.063701406121254],[0.05342161655426,-0.070041723549366,-0.027886377647519],[0.027821177616715,-0.012111476622522,-0.0099321762099862]],[[-0.17496487498283,0.049089644104242,0.050681732594967],[0.21402612328529,0.22573983669281,0.046851594001055],[-0.0016218177042902,0.023473335430026,0.029377875849605]],[[-0.01440523378551,0.057107109576464,0.024466661736369],[-0.037524782121181,-0.010757892392576,-0.0076434412039816],[0.17091538012028,-0.059290703386068,-0.11665286123753]],[[-0.012013875879347,-0.010549513623118,0.034769058227539],[-0.1322413533926,-0.1635177731514,-0.14609014987946],[-0.028886839747429,0.032381068915129,-0.045949976891279]],[[0.19220049679279,0.097893632948399,0.069613501429558],[-0.036383222788572,0.041785713285208,0.019791411235929],[-0.11784619092941,-0.1191350966692,0.0028231092728674]],[[0.075041987001896,0.024888979271054,0.13591127097607],[0.027260499075055,0.0053352937102318,0.042704958468676],[0.032201591879129,0.053431928157806,0.12411893159151]],[[-0.11450573056936,0.077996805310249,0.0026632170192897],[-0.15843789279461,-0.18106970191002,-0.02255249209702],[-0.054265677928925,-0.08981454372406,0.020433519035578]],[[-0.088538400828838,0.042603321373463,0.011898048222065],[0.08245050907135,-0.11184866726398,-0.029654080048203],[0.20045290887356,0.056068692356348,0.10992430895567]],[[-0.011025153100491,-0.02537170983851,0.0071136369369924],[0.11526421457529,0.084745176136494,0.059992268681526],[-0.13728871941566,-0.13560166954994,0.04901485517621]],[[-0.071090593934059,-0.066694132983685,0.085332036018372],[-0.095124512910843,-0.00086631730664521,0.026519823819399],[-0.19485831260681,-0.089207395911217,-0.099215365946293]],[[-0.020931992679834,0.055617485195398,0.044172406196594],[0.041328087449074,-0.12319027632475,-0.065078921616077],[0.006914924364537,-0.047397039830685,0.086964823305607]],[[0.17463301122189,-0.037598427385092,-0.14177574217319],[-0.081850916147232,0.00041922426316887,0.036764908581972],[-0.019196188077331,-0.033469211310148,-0.038173332810402]],[[-0.098486356437206,-0.017576694488525,-0.14748544991016],[0.034484308212996,-0.03123090043664,-0.029181873425841],[0.02079295925796,-0.0049720834940672,-0.060366127640009]],[[-0.10717343539,-0.0014025381533429,0.053535461425781],[-0.039055459201336,0.022404324263334,-0.075495883822441],[0.085375390946865,0.071362122893333,0.059264916926622]],[[0.065043084323406,0.028876025229692,0.10498381406069],[-0.13698363304138,-0.05539234355092,0.12757040560246],[0.14980399608612,0.108957067132,0.077164128422737]],[[0.02657251432538,-0.020076025277376,-0.10950918495655],[0.10199686139822,-0.060631453990936,0.05466141179204],[-0.16003961861134,0.027743801474571,-0.024029336869717]],[[0.1922872364521,-0.15282955765724,0.028748098760843],[0.006992079783231,-0.071141518652439,-0.15130053460598],[0.12324665486813,0.028348742052913,0.033593244850636]],[[0.050432551652193,-0.026231726631522,0.021013125777245],[0.046861656010151,-0.029996881261468,-0.02619506791234],[-0.098859295248985,0.060554590076208,0.055530890822411]],[[-0.047264467924833,0.0046842037700117,0.043435361236334],[0.10346781462431,0.033227767795324,-0.028149709105492],[0.21360403299332,-0.001613583881408,-0.011538430117071]],[[-0.043024513870478,-0.049773268401623,0.06168071180582],[-0.0798145160079,0.044996183365583,-0.096158035099506],[-0.066927835345268,-0.016026649624109,0.071722254157066]],[[-0.027630694210529,0.079714544117451,0.14524666965008],[-0.089928686618805,0.03759054094553,-0.075069643557072],[-0.13023512065411,0.020559471100569,0.058797664940357]],[[0.060719564557076,0.10348182171583,0.092714130878448],[0.14512619376183,-0.018438879400492,0.090981215238571],[-0.11536278575659,-0.040781144052744,-0.25947764515877]],[[-0.099361933767796,0.1037687510252,0.077250756323338],[0.026242446154356,0.04565891250968,0.13671337068081],[-0.032598961144686,0.011406404897571,0.059541203081608]],[[-0.079217553138733,-0.084485583007336,0.013390678912401],[0.016984269022942,0.095559403300285,0.19549041986465],[0.128218755126,0.15888866782188,0.13425098359585]],[[-0.094179503619671,-0.010101795196533,0.014938585460186],[0.056089248508215,0.13102748990059,0.13469076156616],[0.048175234347582,-0.013700976967812,-0.069278433918953]],[[0.056852970272303,-0.035038307309151,-0.079802103340626],[-0.04516938328743,-0.15597876906395,-0.071307323873043],[-0.099322654306889,-0.015982132405043,-0.046111267060041]],[[0.01405714545399,-0.003458894090727,0.036420132964849],[0.066463112831116,0.042294889688492,-0.016083965077996],[-0.013434599153697,-0.12658967077732,-0.1099831610918]],[[0.0098686702549458,-0.20573158562183,-0.16795732080936],[0.15655146539211,-0.025331102311611,0.075541242957115],[-0.13214121758938,-0.10699738562107,0.081810370087624]],[[0.079659886658192,-0.052913323044777,0.056868404150009],[0.03993221372366,-0.025019539520144,-0.1507240831852],[0.024906814098358,-0.015703599900007,-0.086211159825325]]],[[[0.011693613603711,-0.16030764579773,-0.024992749094963],[-0.17786274850368,0.026650708168745,-0.075041800737381],[-0.075786218047142,-0.038345295935869,0.036246575415134]],[[-0.052008632570505,0.022956097498536,-0.046100683510303],[0.020082296803594,0.026419660076499,-0.091115839779377],[-0.14323636889458,-0.1243521720171,-0.011360509321094]],[[-0.088282465934753,-0.13965956866741,-0.1820170134306],[-0.093102812767029,-0.073733955621719,-0.2091992944479],[-0.10485550016165,-0.31917688250542,-0.098277725279331]],[[-0.01422506198287,0.10333143919706,-0.020389495417476],[-0.1260729432106,-0.037054795771837,0.065726712346077],[0.053617369383574,0.0060931583866477,0.024062665179372]],[[0.030221004039049,-0.077618487179279,-0.17714707553387],[-0.0094894031062722,-0.10490285605192,-0.049817014485598],[-0.038028720766306,-0.071603573858738,0.017621375620365]],[[-0.0052909376099706,-0.10931669175625,-0.15305346250534],[-0.089811466634274,-0.097432874143124,-0.077361829578876],[-0.02185964025557,0.016036082059145,-0.17241525650024]],[[0.014070522040129,-0.032191284000874,-0.10810601711273],[-0.0538813136518,0.043845377862453,-0.10535854101181],[-0.067073352634907,-0.016385471448302,0.099478878080845]],[[-0.0095675205811858,-0.011314996518195,0.01517800334841],[-0.08625853061676,-0.061246424913406,0.062222044914961],[0.19907823204994,-0.14050249755383,0.018255369737744]],[[0.045934915542603,0.060739599168301,-0.19256457686424],[0.017038265243173,0.065307959914207,-0.063175059854984],[-0.078489430248737,0.044195253401995,-0.10038807988167]],[[-0.0039676041342318,-0.16392581164837,-0.088538184762001],[-0.027289466932416,-0.099637143313885,0.021707605570555],[0.13900311291218,-0.20470306277275,-0.18167647719383]],[[-0.099831268191338,0.010052538476884,-0.17222386598587],[-0.06062151864171,-0.080686904489994,0.051538288593292],[0.070992521941662,0.028206950053573,-0.020595049485564]],[[0.091727241873741,-0.17892649769783,0.053622428327799],[-0.12545785307884,-0.041256956756115,-0.058206375688314],[0.11560212820768,0.10020297020674,0.10093508660793]],[[-0.36815968155861,-0.071040876209736,-0.085784062743187],[0.062586456537247,-0.17317314445972,0.040838722139597],[-0.032677456736565,-0.09697512537241,0.002964849350974]],[[0.13661178946495,0.060010962188244,0.02643196284771],[-0.042895864695311,0.070195727050304,0.022731013596058],[-0.23742774128914,0.010556252673268,0.071956768631935]],[[0.0025513481814414,0.0093639781698585,-0.066177934408188],[-0.035473886877298,-0.024251639842987,0.074351586401463],[-0.067183412611485,-0.02525176666677,-0.13727781176567]],[[-0.11738368868828,0.15450713038445,-0.089423641562462],[0.046011049300432,-0.088289588689804,-0.034045461565256],[-0.067279569804668,0.003725728020072,-0.14428766071796]],[[0.060131952166557,0.0071297353133559,-0.1499902755022],[0.02560836263001,0.018353678286076,-0.028964312747121],[-0.049110237509012,-0.26735702157021,-0.004896295722574]],[[-0.18548476696014,-0.07167998701334,-0.04795203730464],[0.057475138455629,0.05780953541398,-0.011105949059129],[0.020565671846271,0.066687069833279,-0.24950343370438]],[[0.091765128076077,-0.16708607971668,0.029802158474922],[-0.033544555306435,-0.031651258468628,-0.071288339793682],[0.067014068365097,-0.1222829669714,0.039673086255789]],[[-0.076073609292507,-0.21458837389946,-0.19830594956875],[-0.03295337036252,-0.031700227409601,-0.05032329633832],[0.018829023465514,-0.0014493011403829,-0.026972971856594]],[[-0.13857351243496,0.16270081698895,-0.23230074346066],[-0.075074300169945,-0.025015162304044,-0.13589830696583],[-0.12388350814581,0.27479636669159,-0.084567598998547]],[[-0.02093736641109,-0.028060134500265,-0.0021855460945517],[-0.050709258764982,-0.041350301355124,-0.0078824870288372],[-0.017223076894879,-0.028559654951096,-0.0067879785783589]],[[0.024095896631479,0.078238308429718,-0.015485062263906],[-0.082292839884758,-0.18508234620094,0.027199383825064],[0.13651642203331,-0.13720339536667,-0.1173886731267]],[[0.21556326746941,0.1576779037714,-0.038017336279154],[0.092181287705898,0.12876504659653,0.00097181228920817],[0.17541588842869,0.24410186707973,0.086653403937817]],[[-0.20699094235897,0.086418338119984,0.048204008489847],[-0.060024585574865,0.024160513654351,0.039207018911839],[-0.079489208757877,0.044418089091778,-0.010241948068142]],[[0.04236264154315,-0.021909343078732,-0.037782438099384],[0.028035882860422,-0.026282960548997,-0.018640270456672],[-0.086270183324814,-0.012805866077542,0.0036926162429154]],[[-0.04398700222373,-0.056482069194317,0.035432331264019],[0.024724652990699,-0.059372469782829,0.10863429307938],[0.08642066270113,0.028651451691985,0.12427576631308]],[[-0.010717090219259,-0.075447112321854,-0.21617288887501],[-0.0069361203350127,0.087813854217529,-0.040453869849443],[-0.046182055026293,-0.042166091501713,-0.16590157151222]],[[0.048595879226923,-0.092561155557632,0.13302233815193],[-0.10309343039989,-0.00026206666370854,-0.10981804132462],[-0.079864501953125,-0.057128865271807,-0.20230546593666]],[[-0.064790450036526,-0.054604027420282,-0.10177636146545],[-0.011650307103992,-0.045709576457739,-0.0060345521196723],[-0.34217926859856,0.076010771095753,-0.12386059761047]],[[0.0033416140358895,0.030301993712783,0.069994084537029],[-0.043464526534081,-0.015075460076332,-0.093668103218079],[0.13226790726185,0.1851595044136,0.088133923709393]],[[-0.076306104660034,-0.055862002074718,0.027693012729287],[-0.026858313009143,0.0078803459182382,0.11090658605099],[-0.07428340613842,0.14642752707005,0.15722104907036]],[[0.08539779484272,0.16487927734852,0.011338659562171],[-0.076009891927242,-0.1934774518013,-0.0069223484024405],[-0.059118669480085,-0.090135216712952,-0.11383175849915]],[[0.013746283017099,-0.008887117728591,-0.056535877287388],[-0.10375488549471,-0.10063627362251,-0.023561481386423],[0.0035226284526289,0.099609479308128,-0.0036188210360706]],[[0.0079040573909879,-0.016365824267268,-0.11244608461857],[0.029644271358848,-0.06687718629837,-0.051632605493069],[-0.17558991909027,-0.089780822396278,-0.12825493514538]],[[0.15981382131577,-0.046177145093679,-0.033446233719587],[0.047763306647539,0.037169311195612,-0.10604769736528],[-0.056294940412045,0.015607808716595,-0.060598112642765]],[[0.050757765769958,0.0054889325983822,0.029732646420598],[0.08639020472765,-0.064736165106297,-0.080495700240135],[0.098477721214294,-0.16344393789768,0.11089479923248]],[[-0.046792767941952,0.11317104846239,-0.10076403617859],[0.092471569776535,-0.19886843860149,-0.095791809260845],[-0.026368226855993,-0.044149570167065,-0.068914227187634]],[[-0.033166449517012,0.07737585157156,-0.10025499016047],[-0.34373614192009,-0.026207746937871,0.057358667254448],[-0.060127899050713,0.025618549436331,-0.11832156032324]],[[-0.075548022985458,-0.046466823667288,-0.073417134582996],[0.03692028298974,0.014387812465429,0.069791324436665],[0.047959264367819,-0.10783389955759,0.021169748157263]],[[-0.012711459770799,0.067685708403587,0.0032394027803093],[-0.02884947322309,-0.095342360436916,-0.033443801105022],[0.087792873382568,0.097358159720898,-0.054247483611107]],[[-0.12079755961895,-0.21457149088383,-0.13430204987526],[-0.13663397729397,-0.13100464642048,-0.081046536564827],[-0.029557172209024,-0.079851001501083,0.08787640184164]],[[-0.0094483299180865,-0.070144146680832,0.01315195299685],[-0.054679829627275,-0.078722730278969,-0.036386597901583],[0.25573626160622,-0.015806147828698,-0.0060423132963479]],[[-0.088866405189037,-0.10323435813189,-0.12064711004496],[-0.094359122216702,0.023383915424347,0.0049136392772198],[-0.043054632842541,0.012782971374691,-0.083166383206844]],[[0.060012903064489,-0.11281603574753,-0.12479296326637],[0.014082731679082,-0.003597155213356,0.0085079381242394],[0.011143409647048,-0.009564452804625,-0.042796723544598]],[[-0.072151310741901,-0.09417150914669,-0.041099149733782],[-0.063984036445618,0.081177040934563,0.073654159903526],[0.0012459869030863,-0.13077887892723,-0.12555111944675]],[[-0.06455297768116,-0.028462521731853,-0.052166476845741],[-0.0018988972296938,-0.012004843913019,0.091193437576294],[-0.16129022836685,0.058408856391907,0.047769140452147]],[[0.049430925399065,-0.17959967255592,0.10425860434771],[-0.07046914100647,0.014717802405357,-0.19006516039371],[-0.019879041239619,0.047254823148251,-0.1377494931221]],[[-0.016400184482336,-0.11398912966251,-0.045240700244904],[-0.21640135347843,0.00044462716323324,-0.012192716822028],[-0.057083547115326,0.078197233378887,-0.074753351509571]],[[0.09214574098587,-0.19948284327984,-0.039516121149063],[-0.045753456652164,0.10883498191833,-0.096919655799866],[0.060429818928242,0.15097394585609,-0.065975815057755]],[[0.15716829895973,0.026130260899663,0.0040716961957514],[-0.19829887151718,0.050420958548784,0.12846493721008],[0.084641747176647,-0.035649180412292,-0.090549901127815]],[[-0.24539220333099,-0.05387581884861,-0.097124122083187],[0.020811334252357,0.077204659581184,0.032778818160295],[-0.18799835443497,-0.27742800116539,-0.0081880036741495]],[[-0.10097128152847,-0.024538684636354,0.060330491513014],[0.06308688223362,-0.043820731341839,-0.0033181819599122],[-0.0078471340239048,-0.047498054802418,0.048738818615675]],[[0.0010254809167236,0.04057665169239,-0.059320315718651],[0.048387810587883,0.00087151466868818,-0.03017826937139],[-0.099897928535938,0.046933781355619,-0.11695335805416]],[[-0.12408840656281,0.0052615972235799,0.077760927379131],[0.09408164024353,-0.12440799176693,0.066495053470135],[-0.14499534666538,-0.13530147075653,0.071545988321304]],[[0.010835614055395,0.050139993429184,-0.014227061532438],[0.077034182846546,0.057140950113535,-0.089525438845158],[0.10781031101942,0.078418664634228,0.0022939001210034]],[[0.097463838756084,-0.13840788602829,0.056351095438004],[-0.12116121500731,-0.064594134688377,0.045268207788467],[-0.14187897741795,-0.034873843193054,0.063776396214962]],[[-0.099957972764969,-0.098359107971191,0.20817297697067],[-0.062734678387642,-0.12712563574314,-0.02711546421051],[0.046007826924324,-0.15644593536854,-0.058241955935955]],[[0.05411783605814,-0.027499705553055,0.036546465009451],[-0.0050891577266157,0.097349494695663,0.016856441274285],[0.03828452527523,0.060847278684378,0.0064882901497185]],[[-0.030475044623017,-0.011613833718002,-0.031486790627241],[0.11811842769384,-0.0044788517989218,0.16266512870789],[0.031156802549958,-0.078448735177517,-0.019138598814607]],[[0.12356846034527,0.043348338454962,-0.00027395316283219],[-0.10716182738543,-0.0045537305995822,-0.01059269439429],[0.11780402809381,-0.050942700356245,-0.12438210844994]],[[-0.017482168972492,0.0101996390149,0.026227872818708],[-0.033078964799643,-0.054954454302788,0.0097912242636085],[-0.046021100133657,-0.028384504839778,-0.38715091347694]],[[-0.018230907618999,-0.039517924189568,0.024291282519698],[0.081174731254578,0.033952962607145,0.070091985166073],[0.043694470077753,-0.080513164401054,0.07074448466301]],[[0.085603810846806,-0.043674923479557,0.0034764036536217],[-0.028406605124474,-0.18059092760086,-0.037621196359396],[-0.0037797407712787,-0.00084871979197487,-0.11549293994904]]],[[[-0.067309625446796,-0.044160384684801,-0.056381493806839],[-0.167270809412,-0.050665680319071,0.045888189226389],[-0.048258930444717,-0.11201138049364,0.12032767385244]],[[0.12172612547874,0.035720061510801,-0.010520975105464],[-0.0091726975515485,-0.028587304055691,0.011490328237414],[0.050291169434786,-0.16218137741089,-0.027713252231479]],[[-0.064362391829491,-0.1177282333374,0.039367705583572],[-0.097417160868645,-0.054755318909883,0.027516532689333],[-0.023246055468917,0.019652737304568,-0.064308561384678]],[[0.057456847280264,-0.057153336703777,0.013794871978462],[-0.18486584722996,-0.0021775404457003,0.11775968968868],[-0.021004559472203,-0.067560724914074,0.068226352334023]],[[-0.0023842356167734,-0.067224860191345,0.046926457434893],[0.080022260546684,-0.035540524870157,0.039691258221865],[-0.10036360472441,0.019366247579455,0.029219718649983]],[[0.054824862629175,-0.025685237720609,-0.031028389930725],[0.0067672436125576,-0.090001150965691,0.012341391295195],[-0.087489895522594,-0.01463090442121,-0.14616021513939]],[[-0.036758255213499,0.10431326925755,0.04235428199172],[0.0097800949588418,0.012493089772761,0.10064897686243],[0.0080106807872653,-0.042816840112209,0.0090744635090232]],[[0.043710090219975,0.025905005633831,0.005615770816803],[-0.01692239753902,0.12294799089432,-0.0083653321489692],[-0.051004093140364,0.10643649101257,-0.11587312817574]],[[-0.05096198618412,0.13420341908932,-0.013496003113687],[-0.0077356263063848,0.0062801809981465,-0.094994500279427],[-0.43773010373116,-0.063731297850609,0.0031016797292978]],[[0.01963659375906,-0.078532874584198,-0.012464769184589],[-0.066283605992794,0.055932819843292,0.014164905995131],[-0.059721987694502,0.014369936659932,0.053518790751696]],[[0.050749812275171,0.025017330422997,0.043065994977951],[-0.02074795588851,0.10957760363817,-0.1344378143549],[0.083187349140644,0.12715393304825,-0.068970315158367]],[[-0.006771489046514,-0.026792004704475,0.020007966086268],[-0.095557034015656,-0.11269281804562,0.041391339153051],[0.16003283858299,-0.10031586885452,0.068872451782227]],[[-0.051228996366262,-0.063241302967072,-0.065377943217754],[-0.0041526425629854,-0.034570138901472,0.020576948300004],[-0.080356873571873,0.073350995779037,0.049208208918571]],[[0.014604134485126,0.10783223062754,-0.072597824037075],[-0.091146402060986,0.044497296214104,-0.00087416911264881],[-0.027187772095203,-0.052907820791006,0.042734540998936]],[[-0.11839723587036,-0.041483234614134,0.046503189951181],[-0.085672304034233,0.018842905759811,0.075280509889126],[0.073734812438488,-0.086219877004623,-0.049561124294996]],[[-0.048626203089952,0.081656694412231,-0.050742488354445],[-0.1255476474762,0.050551824271679,-0.004462281242013],[-0.039462029933929,-0.04374798387289,-0.051162898540497]],[[0.04557291418314,-0.11810497194529,0.012307814322412],[-0.059511415660381,-0.019631374627352,0.025249723345041],[0.029567735269666,-0.05752657353878,0.13054975867271]],[[-0.081413611769676,0.041118066757917,0.23616494238377],[-0.086096532642841,0.025334237143397,0.032258592545986],[0.17600056529045,0.0044552865438163,-0.15794530510902]],[[-0.010833513922989,-0.11255158483982,-0.020424220710993],[-0.093787014484406,0.025278324261308,-0.057610660791397],[-0.012270943261683,-0.0099723692983389,-0.25766038894653]],[[0.084823280572891,0.024721233174205,0.010206334292889],[0.012942738831043,0.076108664274216,-0.056161530315876],[-0.033619269728661,-0.059586122632027,-0.15896612405777]],[[0.19520293176174,-0.32248184084892,0.19634546339512],[0.066466778516769,0.15733434259892,0.031919211149216],[-0.033261954784393,-0.27775457501411,-0.035700090229511]],[[0.0040724296122789,0.02341222204268,-0.018457977101207],[-0.018464267253876,-0.021398486569524,-0.052386313676834],[-0.023326568305492,0.025594126433134,-0.04934261366725]],[[0.0038005739916116,0.023108992725611,0.054504755884409],[0.051476880908012,-0.01157309114933,0.0011436074273661],[-0.020583825185895,-0.015225363895297,-0.027734067291021]],[[0.016445487737656,-0.098254829645157,0.086328476667404],[0.077597931027412,0.18205991387367,0.093996189534664],[0.0078171929344535,0.14609429240227,0.0098005849868059]],[[-0.072376571595669,-0.025916846469045,-0.010516909882426],[0.079299688339233,0.034823596477509,-0.067633785307407],[0.066852077841759,0.078233659267426,-0.053441423922777]],[[-0.024455524981022,-0.027525745332241,0.019062032923102],[-0.010176903568208,-0.018440805375576,-0.0044200262054801],[-0.021804487332702,-0.022743364796042,0.034824576228857]],[[-0.00074407155625522,0.041999727487564,0.098657242953777],[0.024609027430415,0.001353571889922,-0.069953985512257],[0.081490837037563,-0.12976315617561,-0.071809865534306]],[[-0.10487199574709,-0.13234250247478,0.074863389134407],[-0.10992077738047,-0.06379434466362,0.0089835124090314],[-0.043964501470327,-0.094111084938049,0.22406035661697]],[[-0.014392629265785,-0.040529865771532,-0.10011637210846],[-0.023085182532668,-0.054989259690046,0.11492149531841],[-0.11340884119272,0.12683960795403,-0.21684215962887]],[[-0.10189473628998,0.083830885589123,-0.0053956545889378],[-0.22081080079079,-0.013193775899708,0.078564450144768],[-0.23096257448196,-0.01232030056417,-0.2441428154707]],[[-0.10260094702244,0.082678101956844,-0.063100300729275],[-0.14977042376995,0.12658125162125,-0.0033468438778073],[-0.12668576836586,0.039091285318136,-0.013925680890679]],[[-0.099059693515301,-0.074723690748215,-0.031561370939016],[0.051173627376556,-0.03880275785923,-0.082010127604008],[-0.041374303400517,-0.10504637658596,0.0018098081927747]],[[-0.02082622423768,0.1323364675045,0.0079310573637486],[-0.062387943267822,0.014764664694667,0.040556207299232],[-0.089335925877094,-0.088548451662064,0.23370559513569]],[[-0.088198401033878,-0.019259553402662,-0.12505649030209],[-0.032540917396545,0.00053026009118184,-0.0093555096536875],[-0.18423652648926,0.049464091658592,-0.065883040428162]],[[-0.093180313706398,-0.1430536955595,-0.035503152757883],[-0.0018522632308304,-0.079078786075115,0.0045104050077498],[0.0035114821512252,-0.014929067343473,0.092889487743378]],[[0.11529868096113,0.052232149988413,0.040566105395555],[-0.027001269161701,0.12612953782082,0.028951894491911],[-0.071674168109894,0.028916111215949,0.0014134219381958]],[[0.21933571994305,0.13140773773193,-0.026679623872042],[0.15573525428772,0.042330425232649,-0.054333053529263],[0.11891446262598,-0.076900742948055,0.099537692964077]],[[0.20852413773537,-0.15705221891403,0.059911351650953],[-0.017333609983325,-0.098743997514248,-0.12799920141697],[0.069252632558346,0.14361447095871,0.032782159745693]],[[0.12836308777332,-0.093855783343315,0.02602219954133],[0.013948377221823,-0.058116938918829,0.033399287611246],[0.080237410962582,0.0094544012099504,0.0282695684582]],[[0.027195332571864,0.10576168447733,-0.0083335619419813],[-0.022176278755069,-0.006525382399559,-0.039936102926731],[-0.064201354980469,-0.044006567448378,-0.121158875525]],[[-0.17579978704453,0.05059290677309,-0.075418017804623],[-0.055270150303841,0.048162143677473,-0.09154898673296],[0.11758776754141,-0.043102577328682,-0.18873147666454]],[[-0.0098515236750245,0.064566925168037,-0.023942921310663],[-0.12334353476763,-0.0069405776448548,0.011735890991986],[-0.11621605604887,-0.062034979462624,0.014070346951485]],[[0.012108005583286,0.030191224068403,-0.0063137672841549],[0.16586744785309,-0.003284809878096,-0.06223364546895],[-0.14427715539932,0.12714490294456,0.063241586089134]],[[-0.028524734079838,0.094146057963371,0.063471630215645],[-0.076184719800949,-0.013721225783229,0.102504581213],[-0.080212190747261,0.071886293590069,0.067977480590343]],[[0.08164343982935,-0.050591837614775,0.015775721520185],[0.01174049731344,-0.10570511221886,0.0023246684577316],[0.10283375531435,0.00058731163153425,-0.088612623512745]],[[-0.019619952887297,-0.11275244504213,-0.11237301677465],[0.080189757049084,0.026236828416586,-0.047685675323009],[0.021239882335067,-0.011938286945224,0.066900722682476]],[[-0.13615593314171,-0.0033449647016823,-0.079044088721275],[0.1003250181675,-0.094204492866993,0.037836156785488],[-0.074078574776649,-0.10130736976862,0.19673916697502]],[[-0.036491308361292,-0.11770793050528,0.15859876573086],[-0.026996960863471,-0.083951242268085,0.026052635163069],[0.025845643132925,-0.16833993792534,-0.14694434404373]],[[-0.13309694826603,-0.047032423317432,0.093013569712639],[-0.14244039356709,-0.076804585754871,0.0062227710150182],[0.024624638259411,-0.016363883391023,0.083181634545326]],[[-0.030905915424228,-0.079520255327225,0.14262463152409],[0.028833027929068,0.052847594022751,-0.0045445440337062],[-0.060391396284103,0.020280538126826,-0.079405710101128]],[[0.074929177761078,0.044570703059435,-0.027237989008427],[0.1194205135107,-0.084564901888371,-0.041033882647753],[0.031362164765596,-0.0013972658198327,0.030289394780993]],[[-0.01909627020359,0.050555631518364,0.0050444081425667],[-0.086298353970051,0.061920370906591,-0.031816143542528],[0.042805921286345,-0.038937646895647,0.14349274337292]],[[0.11829850077629,0.14814783632755,-0.020081009715796],[-0.090384930372238,-0.15542712807655,0.08674593269825],[-0.094299413263798,-0.01529027801007,-0.040905721485615]],[[-0.097764410078526,0.022956291213632,-0.0042305528186262],[0.086067721247673,0.080140836536884,0.0013776476262137],[-0.0060298782773316,0.096787236630917,0.017359564080834]],[[0.1287874430418,0.0018283913377672,-0.13230264186859],[-0.19796973466873,0.11896235495806,-0.01849077641964],[-0.21987357735634,0.0010537683265284,-0.12354163825512]],[[-0.083551608026028,-0.022348696365952,0.050772719085217],[-0.23672972619534,0.10070420056581,-0.080274179577827],[0.02693734690547,0.057270605117083,-0.19700077176094]],[[0.10299324989319,-0.046087477356195,0.11844597011805],[-0.056355096399784,-0.03580841049552,0.013641191646457],[-0.31153136491776,0.0024141385219991,0.046376682817936]],[[0.056217506527901,-0.047159176319838,-0.14741282165051],[0.1091613471508,-0.063891477882862,-0.15034073591232],[-0.12407819181681,-0.20193965733051,0.027860270813107]],[[0.044347569346428,0.12482063472271,-0.012241951189935],[-0.032369423657656,0.068339422345161,-0.0013984960969537],[0.0046703764237463,0.029985664412379,0.10930064320564]],[[0.082082353532314,-0.011264191009104,-0.042389050126076],[-0.11757676303387,0.034885734319687,-0.038201004266739],[0.0045989635400474,0.084813937544823,0.018048306927085]],[[0.0011627357453108,-0.043627418577671,0.057281360030174],[-0.046415116637945,-0.038284182548523,-0.11203148961067],[-0.017741972580552,0.060395460575819,-0.08402157574892]],[[0.051958460360765,-0.058563131839037,-0.052712388336658],[0.12903164327145,0.00054364331299439,-0.16644103825092],[-0.0053998837247491,0.04380264878273,-0.086389899253845]],[[0.11190388351679,0.057537995278835,-0.010501905344427],[-0.038593076169491,-0.066929861903191,-0.11099028587341],[0.059358913451433,0.028940187767148,0.016823120415211]],[[-0.22778321802616,0.033254612237215,-0.063391372561455],[0.013382547535002,-0.056552663445473,0.11880461126566],[-0.18841564655304,0.23683544993401,0.049923926591873]]],[[[-0.11218100041151,0.0011344627710059,0.084942929446697],[-0.06569541990757,-0.06277097016573,0.13952267169952],[-0.10794175416231,-0.072644434869289,0.067360803484917]],[[-0.071459464728832,-0.13255527615547,0.0030104024335742],[0.056167423725128,-0.0195272564888,0.051189631223679],[-0.070340313017368,-0.14360281825066,0.0081276819109917]],[[0.1063816100359,0.0005925937439315,-0.015015324577689],[-0.1538400053978,-0.11835774034262,-0.044642996042967],[0.019735740497708,0.017520107328892,-0.068021953105927]],[[-0.11817013472319,0.010338616557419,-0.026125775650144],[0.03867681697011,-0.060977660119534,0.062681682407856],[0.021473105996847,-0.048057440668344,-0.12811087071896]],[[-0.082802750170231,-0.035770665854216,-0.067169412970543],[0.082772716879845,0.013234775513411,0.0087020536884665],[-0.019812062382698,0.052755858749151,0.038845825940371]],[[-0.015130673535168,-0.081627771258354,-0.085210882127285],[0.03022095747292,0.011453717015684,0.047438032925129],[0.0057692243717611,-0.02039941214025,-0.12453453242779]],[[-0.019859209656715,0.0083941072225571,0.053187150508165],[0.11079731583595,-0.10094566643238,-0.14769817888737],[-0.054673198610544,-0.014165334403515,0.0056075677275658]],[[0.013064895756543,-0.027335463091731,0.0873828753829],[-0.16389615833759,0.0037432159297168,0.068796515464783],[0.049697495996952,0.0067677027545869,-0.042236723005772]],[[0.0021061634179205,-0.18987889587879,-0.087729975581169],[0.11780310422182,-0.085608802735806,-0.036474652588367],[-0.016614377498627,-0.025984779000282,-0.17467188835144]],[[0.17655652761459,0.087384536862373,-0.094464376568794],[0.021083019673824,0.044893257319927,-0.0078374408185482],[-0.050190009176731,-0.021538347005844,0.083482220768929]],[[-0.032641738653183,0.034237001091242,0.021916726604104],[0.11627656966448,0.11619760096073,-0.043204139918089],[-0.16532415151596,-0.073151439428329,-0.030746795237064]],[[-0.12886981666088,-0.03706968948245,0.0037375334650278],[0.14404210448265,0.10392716526985,-0.023418867960572],[0.010885891504586,0.0028469313401729,-0.0030695672612637]],[[0.052311453968287,-0.016177847981453,-0.12711887061596],[3.1542214856017e-05,-0.14698100090027,0.11512664705515],[-0.11107079684734,0.015288735739887,-0.082458697259426]],[[0.19591610133648,-0.090778693556786,-0.058911222964525],[-0.077115088701248,0.010488454252481,-0.043158046901226],[-0.014436214230955,0.13635265827179,0.006974823307246]],[[-0.072314210236073,0.056533474475145,-0.053014900535345],[-0.25113809108734,-0.037377465516329,-0.059098839759827],[-0.032251700758934,-0.070247210562229,-0.064072705805302]],[[-0.10473722964525,0.057607628405094,0.063169546425343],[-0.17104661464691,-0.10970313847065,-0.095969311892986],[-0.024499041959643,0.11947986483574,0.088097266852856]],[[-0.14928571879864,-0.15362134575844,-0.15606780350208],[0.026681484654546,0.013800584711134,0.14020182192326],[0.12094254046679,0.063551396131516,0.027368605136871]],[[0.058408323675394,-0.0036441825795919,0.085657879710197],[0.030159946531057,-0.053627826273441,-0.014559756033123],[0.13950979709625,0.11145515739918,0.093957014381886]],[[-0.18115948140621,-0.032529521733522,0.089945718646049],[-0.050162576138973,0.064503125846386,0.0081192823126912],[0.019974099472165,0.0069242184981704,0.12000480294228]],[[-0.019855655729771,0.034358557313681,0.045432984828949],[-0.049113653600216,-0.047340843826532,-0.069049276411533],[-0.11562472581863,-0.13909882307053,-0.037849988788366]],[[-0.16650088131428,-0.06007469445467,-0.052552539855242],[0.049297515302896,-0.030930157750845,0.10409443080425],[0.090940862894058,0.018912728875875,-0.018940916284919]],[[-0.11687758564949,0.027595700696111,-0.00085694482550025],[-0.023395333439112,0.088640205562115,-0.065894991159439],[0.026503896340728,-0.0020858473144472,-0.046373955905437]],[[-0.0087186871096492,-0.0044650607742369,0.043577894568443],[-0.061518412083387,-0.054287057369947,0.13868278264999],[-0.13688096404076,0.04594836384058,9.6321789897047e-05]],[[-0.0084157912060618,0.0076830019243062,-0.020389448851347],[-0.0094049703329802,0.29614332318306,0.072489954531193],[0.23972836136818,0.1435074955225,-0.052408035844564]],[[0.013684251345694,-0.015481702052057,0.045379381626844],[0.09798900783062,-0.016586124897003,0.030452387407422],[0.17143578827381,0.049461357295513,0.053070496767759]],[[-0.075873032212257,0.01274081133306,0.06188939511776],[-0.1374337375164,-0.058801464736462,0.046034082770348],[0.017006384208798,-0.021179795265198,0.076828330755234]],[[-0.051508449018002,0.077057152986526,-0.019407324492931],[0.087794274091721,0.14298312366009,-0.08117787539959],[-0.10760856419802,-0.037509001791477,-0.13203318417072]],[[0.08317793160677,-0.054416306316853,-0.099586099386215],[0.067076943814754,0.010535352863371,-0.068569503724575],[-0.073771581053734,-0.12829944491386,-0.050609841942787]],[[0.061317875981331,-0.055265329778194,-0.13757695257664],[-0.060760200023651,-0.045181915163994,0.093379028141499],[-0.0086353942751884,-0.20301423966885,-0.01583150960505]],[[0.13977120816708,-0.060672033578157,0.076137766242027],[0.032833680510521,-0.026205085217953,0.12061157077551],[0.030931875109673,-0.1078802421689,-0.044448610395193]],[[-0.031183868646622,0.0053618205711246,-0.070153869688511],[-0.13674768805504,0.11988992244005,0.017818408086896],[0.076826721429825,-0.020112257450819,0.17636099457741]],[[-0.065736323595047,-0.081482321023941,0.13053999841213],[0.074425995349884,0.13531486690044,0.021105004474521],[0.029441565275192,0.12070795148611,0.19063387811184]],[[-0.0045139282010496,-0.055904820561409,-0.24127352237701],[-0.016356900334358,-0.058257602155209,-0.021987086161971],[-0.009407983161509,0.049084674566984,0.13267885148525]],[[0.0021854862570763,-0.067298710346222,-0.091652423143387],[-0.063485369086266,0.15827120840549,-0.01459323707968],[-0.045938316732645,-0.057430662214756,0.041061017662287]],[[-0.029045552015305,0.048475485295057,0.10220221430063],[0.047325566411018,-0.006698913872242,0.12577460706234],[0.025685144588351,0.050952982157469,-0.11065869033337]],[[0.020263083279133,0.01183239556849,0.1111710742116],[0.047772444784641,0.050105087459087,0.12952463328838],[-0.021700153127313,-0.084282860159874,-0.0065593109466136]],[[-0.056363936513662,-0.10651002079248,-0.15475617349148],[-0.046967685222626,-0.05493675917387,0.14902651309967],[0.21218520402908,0.10089944303036,0.15685203671455]],[[0.10231403261423,0.033698324114084,0.01808294095099],[-0.028525844216347,-0.024255707859993,-0.18140225112438],[0.046738084405661,-0.024487469345331,-0.012943584471941]],[[0.088688015937805,0.032761663198471,-0.091838590800762],[-0.026929903775454,0.045395854860544,-0.13783064484596],[-0.076539985835552,0.046146363019943,0.062621288001537]],[[-0.097128145396709,0.081746980547905,-0.0089113600552082],[0.081082835793495,-0.075575225055218,-0.008165099658072],[0.3317773938179,0.13461729884148,0.064758397638798]],[[-0.045138519257307,-0.057368710637093,-0.099382944405079],[0.19920195639133,0.084909714758396,0.035279732197523],[0.044249422848225,-0.033966951072216,0.098724842071533]],[[-0.017457470297813,0.081551104784012,-0.10483604669571],[-0.091998375952244,-0.12870636582375,-0.11159190535545],[-0.15228639543056,0.064383327960968,-0.036501936614513]],[[0.066539980471134,0.031225247308612,0.063195072114468],[-0.012697609141469,0.041701603680849,-0.057729993015528],[-0.14479584991932,-0.091301329433918,0.0357596129179]],[[0.011997335590422,0.012673862278461,0.1187761798501],[-0.10013840347528,0.014651952311397,0.038968242704868],[0.010555637069046,-0.18105886876583,-0.026523042470217]],[[-0.023591885343194,-0.099552676081657,0.059553198516369],[-0.015980860218406,0.0080058733001351,-0.092309229075909],[-0.2544658780098,0.17313329875469,-0.089921906590462]],[[-0.13250187039375,-0.11649644374847,-0.089508131146431],[0.038444321602583,-0.078032672405243,-0.0075378068722785],[-0.10819021612406,-0.11717441678047,-0.023286467418075]],[[-0.016071243211627,-0.038727428764105,0.11683754622936],[0.21831664443016,-0.011935364454985,0.034825876355171],[-0.17784877121449,-0.17514395713806,-0.05503136664629]],[[0.026975598186255,-0.066071942448616,-0.046689417213202],[0.022258626297116,-0.091108113527298,0.0040218201465905],[-0.12721475958824,-0.053016010671854,0.13172037899494]],[[-0.15551464259624,0.066937349736691,-0.058237802237272],[-0.12545271217823,0.0030589592643082,-0.029989393427968],[-0.030085245147347,-0.0060763480141759,-0.036357115954161]],[[0.12360964715481,0.0068789124488831,0.14285181462765],[0.14325737953186,0.045048635452986,-0.18726478517056],[-0.11669579893351,-0.020944582298398,-0.10825247317553]],[[0.058778133243322,0.024843573570251,0.28113186359406],[0.070601038634777,0.025781538337469,0.026119409129024],[0.031541280448437,0.050367038697004,-0.030933246016502]],[[-0.12553046643734,-0.19395858049393,-0.13824309408665],[0.11079818755388,-0.002479070564732,0.07033608853817],[-0.10850618034601,-0.062875166535378,0.065068647265434]],[[0.045816272497177,-0.12516334652901,0.077538006007671],[-0.024733956903219,0.040713794529438,-0.02675305865705],[-0.034786861389875,0.057451497763395,0.070602610707283]],[[0.099205479025841,0.045142993330956,-0.038098808377981],[0.0061641605570912,0.081276208162308,-0.071859069168568],[-0.079978100955486,-0.07726327329874,0.028380755335093]],[[-0.023328525945544,0.029642637819052,0.040767766535282],[0.03984721750021,-0.00074781710281968,0.022111771628261],[-0.060777887701988,0.097434543073177,0.01996979676187]],[[0.09567105025053,-0.097479589283466,0.02653624676168],[-0.073981039226055,0.068414501845837,0.030634431168437],[-0.067881263792515,0.14267608523369,-0.14146614074707]],[[0.015398226678371,-0.059870757162571,-0.076361380517483],[0.01465302798897,0.0303915720433,-0.14035072922707],[-0.079659298062325,0.089325971901417,-0.029025964438915]],[[-0.074281439185143,-0.05632084980607,0.029919706285],[-0.10372509807348,-0.13524213433266,-0.021429004147649],[0.0033174105919898,-0.091506242752075,-0.090217903256416]],[[0.074976451694965,0.11576923727989,0.1516185104847],[0.0035289998631924,0.055633246898651,0.047441896051168],[-0.0238286126405,-0.056290853768587,0.027244100347161]],[[-0.13723489642143,-0.1039032638073,-0.12150941044092],[0.013207009993494,-0.030334671959281,0.13273461163044],[-0.096265502274036,-0.048535298556089,0.049128625541925]],[[-0.072456851601601,-0.024060785770416,0.010751360096037],[0.12331691384315,-0.10172175616026,-0.19262261688709],[-0.14870715141296,-0.013217411935329,-0.049568798393011]],[[0.11989839375019,-0.032374873757362,-0.16174608469009],[-0.045974120497704,-0.029669901356101,-0.074759908020496],[-0.13915364444256,-0.061858959496021,-0.21027109026909]],[[-0.10711092501879,-0.032147578895092,-0.037832599133253],[-0.10009691119194,0.046319626271725,0.0013497112086043],[0.10197262465954,0.15058793127537,0.12641797959805]],[[-0.033849842846394,-0.13748021423817,-0.055150646716356],[0.016489868983626,-0.0015142295742407,0.074564807116985],[-0.13098362088203,-0.14480808377266,-0.11039851605892]]],[[[-0.0058587421663105,-0.084505587816238,-0.060370475053787],[-0.018365398049355,-0.039564449340105,-0.070118978619576],[-0.031412955373526,0.076860152184963,-0.01858245395124]],[[-0.039873115718365,-0.020553641021252,0.06233524158597],[-0.047247726470232,0.10590106248856,-0.13244871795177],[-0.013211508281529,0.036593627184629,-0.02925112657249]],[[-0.082154028117657,-0.0031056520529091,-0.13657748699188],[-0.027388783171773,-0.15841871500015,-0.075710073113441],[0.023372264578938,0.16687007248402,0.013674758374691]],[[0.071092270314693,-0.1209693774581,-0.00854432862252],[-0.032061886042356,-0.047249425202608,-0.10894607752562],[0.0052784676663578,0.0068447538651526,0.087972015142441]],[[0.011487344279885,-0.038761757314205,0.010115496814251],[0.019332515075803,-0.067194424569607,0.014247697778046],[0.029237560927868,0.016739528626204,0.0048069236800075]],[[0.010169990360737,0.0048450133763254,-0.05051489174366],[0.081967301666737,0.0084620742127299,0.073836699128151],[-0.19770205020905,-0.020315639674664,0.098528705537319]],[[0.072618700563908,0.019667629152536,-0.015193814411759],[0.0042257844470441,0.031943321228027,0.093948237597942],[-0.027134193107486,0.0029758971650153,0.043581824749708]],[[0.044445868581533,-0.037543889135122,0.0094194300472736],[0.062770821154118,-0.008418558165431,-0.05146624147892],[-0.052564349025488,0.067638389766216,-0.010543400421739]],[[-0.19668036699295,-0.008848394267261,0.090510137379169],[-0.11915857344866,0.032837152481079,-0.073731303215027],[-0.10230056196451,-0.079113937914371,-0.05845720693469]],[[0.097440361976624,0.055475562810898,-0.03590976074338],[-0.11903467029333,0.056762214750051,-0.08478582650423],[-0.13938942551613,0.083284698426723,-0.18860344588757]],[[0.11467628180981,-0.018469648435712,-0.035220395773649],[-0.009662302210927,-0.046392157673836,0.08116352558136],[-0.053662315011024,-0.077864900231361,0.014621145091951]],[[-0.045736994594336,-0.14044597744942,-0.037595316767693],[-0.035995837301016,-0.058487895876169,-0.089757323265076],[0.17209704220295,-0.015513272024691,-0.0260802321136]],[[0.11487273871899,-0.046848993748426,-0.0095085157081485],[0.075140550732613,-0.046555437147617,0.064264468848705],[-0.049212343990803,0.12917791306973,0.026099050417542]],[[0.065778344869614,-0.012649076990783,-0.0016976239858195],[-0.12802569568157,0.17386910319328,0.024348864331841],[0.046043202280998,0.11394060403109,0.046993780881166]],[[0.0099704535678029,0.0059959469363093,-0.22196254134178],[-0.12332145869732,0.070367813110352,-0.052262060344219],[-0.047070663422346,-0.018382666632533,-0.0045421221293509]],[[-0.042807620018721,0.074597336351871,-0.041061773896217],[-0.099683433771133,-0.059188615530729,0.033152863383293],[0.041236624121666,0.0013844049535692,0.16868408024311]],[[0.018985390663147,0.018955573439598,-0.044647142291069],[0.0040302937850356,-0.042435646057129,-0.1103849709034],[-0.015694439411163,-0.0073245791718364,0.045777712017298]],[[0.099744841456413,-0.015026558190584,-0.022479066625237],[0.043347258120775,0.11067670583725,0.036202929913998],[-0.019167095422745,0.081832371652126,0.029352033510804]],[[0.000571891781874,0.063351392745972,-0.14527513086796],[-0.14956197142601,-0.014832231216133,0.073428586125374],[0.063834011554718,-0.0087256487458944,0.046290121972561]],[[0.018873251974583,-0.014826889149845,-0.036786239594221],[-0.14280413091183,-0.090142123401165,0.16306139528751],[-0.10549098998308,0.094429843127728,-0.019410856068134]],[[0.04998018220067,-0.15242053568363,0.01067415997386],[0.10016847401857,0.034316506236792,-0.032694719731808],[-0.055797651410103,-0.036658983677626,0.04527136310935]],[[-0.016247404739261,-0.03212982788682,-0.07398260384798],[-0.042279843240976,-0.041357222944498,0.0078888200223446],[0.0006070084637031,0.058443270623684,-0.027429195120931]],[[-0.13792084157467,-0.010298151522875,-0.047015611082315],[0.083979658782482,0.040686067193747,-0.14422091841698],[0.020120250061154,-0.080138146877289,-0.075916729867458]],[[-0.039188228547573,0.15817657113075,0.076046608388424],[0.10109435766935,-0.039273355156183,-0.12787006795406],[0.1920949369669,0.13718068599701,0.013781861402094]],[[0.096593543887138,0.13372485339642,0.020938161760569],[-0.04048627614975,-0.0384177044034,-0.070638865232468],[0.061895452439785,0.0039248624816537,0.089041464030743]],[[0.019814787432551,0.030385635793209,0.12179085612297],[-0.069638155400753,-0.030128762125969,-0.020793505012989],[-0.021335678175092,0.0033161612227559,-0.028208108618855]],[[-0.079797565937042,-0.06487188488245,-0.031082723289728],[-0.0033417555969208,-0.054647173732519,0.10860851407051],[-0.065132722258568,-0.032177992165089,0.13674080371857]],[[-0.072436407208443,-0.078170239925385,-0.13027952611446],[-0.028431536629796,0.016010861843824,-0.018263878300786],[-0.029467649757862,-0.0022249962203205,0.041715815663338]],[[-0.021195702254772,0.0045074610970914,-0.049382492899895],[-0.070344232022762,-0.049961540848017,0.086079530417919],[0.20957046747208,0.058303475379944,0.077168919146061]],[[-0.021676262840629,-0.12668758630753,-0.094347834587097],[-0.081292748451233,-0.097494795918465,0.045307822525501],[0.095335222780704,0.061222188174725,-0.04399137571454]],[[-0.054431047290564,0.017905225977302,0.0053124125115573],[-0.13901817798615,0.10680432617664,-0.014271094463766],[-0.11014676839113,-0.032854385674,0.017399355769157]],[[-0.13912265002728,-0.032768402248621,0.0037983197253197],[0.005538675468415,-0.084218442440033,0.01407725084573],[0.069108471274376,-0.10012236237526,0.079536758363247]],[[0.042321044951677,-0.084088392555714,0.0069651608355343],[-0.073560759425163,-0.0083788689225912,0.021749934181571],[0.035562247037888,-0.017515270039439,-0.066130474209785]],[[0.07134735584259,-0.10873394459486,-0.12671114504337],[-0.047365754842758,-0.058981630951166,0.09170189499855],[-0.0029811940621585,0.024240551516414,-0.067770712077618]],[[0.060604277998209,0.12600713968277,-0.024322684854269],[0.10150720924139,0.066623874008656,0.034748815000057],[-0.15750037133694,0.0033233545254916,-0.066403441131115]],[[0.046084735542536,0.021617660298944,0.084775224328041],[0.0093878479674459,0.0068864240311086,0.050057724118233],[-0.010640496388078,0.15739570558071,-0.03049386292696]],[[-0.032328147441149,-0.11608076095581,0.17639490962029],[0.024159697815776,-0.12591525912285,0.025869840756059],[0.062909722328186,-0.022441301494837,0.053895808756351]],[[-0.077323988080025,-0.032768689095974,-0.0034401849843562],[-0.023230215534568,0.020877247676253,0.050789356231689],[0.099457606673241,0.057412959635258,0.030958469957113]],[[0.066416092216969,0.099949032068253,-0.092634201049805],[-0.11678819358349,0.079996682703495,-0.097954422235489],[0.0040169064886868,0.048760116100311,-0.081313565373421]],[[0.037563003599644,0.050488729029894,-0.048192162066698],[-0.10386385768652,-0.0025579249486327,0.1007672175765],[0.15699651837349,0.14041459560394,0.17592464387417]],[[0.056583311408758,-0.026204979047179,-0.025172824040055],[0.24263922870159,0.0045968689955771,-0.27994567155838],[0.067595891654491,-0.079814366996288,-0.0361113473773]],[[-0.014186455868185,-0.05421793833375,0.020024662837386],[0.021118253469467,0.12577120959759,0.017416058108211],[-0.16420917212963,0.018715750426054,-0.042434144765139]],[[-0.049663253128529,0.14310485124588,0.10419920086861],[-0.011291342787445,-0.08111634850502,0.0026805931702256],[0.0076526352204382,-0.099298320710659,-0.031362790614367]],[[-0.049213696271181,-0.016484208405018,-0.033051922917366],[-0.096325851976871,-0.079833567142487,0.04292468726635],[-0.057347442954779,-0.091950081288815,-0.065950989723206]],[[-0.024493547156453,-0.064905285835266,0.16832315921783],[-0.034326776862144,-0.066379137337208,-0.047525681555271],[0.063243396580219,-0.12054120004177,-0.02253938280046]],[[-0.15322080254555,-0.11562689393759,-0.09080994874239],[0.070611603558064,-0.040777299553156,0.019943941384554],[-0.039239320904016,-0.034040961414576,0.039346687495708]],[[-0.047494370490313,0.028008665889502,0.076676331460476],[-0.026342272758484,0.014853466302156,-0.047615505754948],[-0.072384692728519,-0.074826441705227,0.027294052764773]],[[0.040587469935417,0.084616772830486,-0.028474191203713],[-0.027107322588563,-0.034604143351316,0.13753548264503],[0.065603539347649,-0.023155147209764,0.096413351595402]],[[-0.12826135754585,-0.0025907719973475,0.060183703899384],[-0.016093995422125,-0.047716371715069,-0.046705488115549],[-0.12456389516592,0.066628575325012,-0.017500355839729]],[[-0.057103991508484,-0.13447715342045,0.029494939371943],[0.22671945393085,0.060421604663134,-0.15324336290359],[0.044368270784616,0.16572533547878,0.082856498658657]],[[0.077071644365788,-0.041935030370951,0.00028549408307299],[-0.0040508266538382,-0.036680057644844,0.10212358832359],[0.11882358789444,0.14752125740051,-0.050869543105364]],[[0.055440112948418,0.043310210108757,-0.013816949911416],[0.0074653425253928,0.054755445569754,0.026831112802029],[-0.067557744681835,-0.002759475260973,0.10033012926579]],[[-0.01780497469008,-0.09811083227396,-0.017185034230351],[0.01960676163435,0.0019487523240969,0.09221900254488],[-0.18685968220234,-0.094847775995731,-0.065194219350815]],[[-0.017111416906118,-0.12422613799572,-0.088751725852489],[0.067802518606186,0.043345384299755,0.082570634782314],[0.040330361574888,0.0099684726446867,-0.036160379648209]],[[-0.026905734091997,0.027556173503399,-0.060574397444725],[0.03275391459465,0.021113336086273,-0.089648358523846],[-0.068192064762115,0.082512430846691,0.12897442281246]],[[0.020754929631948,0.038164652884007,-0.042538266628981],[-0.094038113951683,-0.071036651730537,-0.0505699403584],[0.069340139627457,-0.14963139593601,-0.11455592513084]],[[-0.095187179744244,0.077426210045815,0.094660252332687],[0.094146020710468,-0.032424334436655,-0.028120983392],[0.00028478738386184,-0.10908092558384,-0.081327103078365]],[[0.043628994375467,-0.031176377087831,0.029212487861514],[0.082664370536804,0.069980755448341,0.12059847265482],[0.045912615954876,0.032111208885908,0.051798801869154]],[[0.086084492504597,0.090089365839958,0.065868251025677],[0.08917210996151,0.13351185619831,0.075054123997688],[-0.0012426712783054,0.13897965848446,0.025745030492544]],[[-0.061441138386726,0.022541772574186,-0.07011004537344],[0.055197302252054,0.032339062541723,-0.050102964043617],[0.028688574209809,0.063085541129112,0.0045156879350543]],[[-0.030537005513906,-0.038777399808168,0.017455421388149],[0.071000896394253,-0.088690899312496,0.074875794351101],[-0.066532522439957,-0.075429059565067,0.027068100869656]],[[0.047208551317453,-0.023816395550966,-0.053125742822886],[-0.062806628644466,-0.028278501704335,0.13098932802677],[-0.095974415540695,0.07210049778223,0.11922517418861]],[[0.12843506038189,-0.065795384347439,-0.03083817102015],[-0.068130046129227,-0.008184595964849,0.042675886303186],[-0.048052873462439,-0.032312378287315,0.025020714849234]],[[-0.048946630209684,-0.03290106356144,0.19091947376728],[-0.087809510529041,0.015430752187967,-0.032637432217598],[-0.064963638782501,0.021647416055202,-0.013246738351882]]],[[[-0.05814291536808,0.019564777612686,-0.16994217038155],[0.11071221530437,0.064254470169544,0.069232128560543],[-0.12065368890762,-0.16863641142845,0.04851134493947]],[[0.0045476565137506,-0.050656072795391,0.0020352506544441],[-0.047229774296284,-0.031352620571852,-0.054192248731852],[-0.067440211772919,0.02780925668776,-0.19692176580429]],[[0.056314971297979,-0.076265811920166,-0.11971208453178],[-0.12539824843407,-0.0058591025881469,-0.10125054419041],[-0.018674798309803,-0.034642271697521,-0.076744757592678]],[[-0.13735395669937,0.068508729338646,0.00049298634985462],[0.12887614965439,0.10020956397057,-0.04701191931963],[-0.057733792811632,0.0097364233806729,-0.021865390241146]],[[0.0056244423612952,0.078360117971897,0.034308075904846],[-0.039035629481077,-0.057596053928137,0.0018832413479686],[0.14879107475281,0.0083761680871248,-0.17238956689835]],[[-0.014245781116188,-0.11675907671452,-0.19940905272961],[0.13179570436478,0.064503654837608,0.0006321879918687],[0.067640975117683,0.033989399671555,-0.016040813177824]],[[0.014411797747016,-0.060376569628716,-0.075262181460857],[0.053720399737358,0.026862429454923,-0.066414296627045],[-0.19499573111534,0.043774642050266,-0.0026771223638207]],[[-0.088501401245594,-0.072292245924473,-0.12651084363461],[-0.027739347890019,0.054143227636814,-0.085543818771839],[0.118388928473,0.066851206123829,0.067498341202736]],[[-0.042818084359169,0.057387873530388,-0.23845033347607],[-0.021636210381985,0.087542966008186,0.0082423333078623],[-0.11369352787733,-0.10925506800413,0.057204179465771]],[[-0.054801929742098,0.058156788349152,-0.094891391694546],[-0.044247955083847,-0.10951067507267,-0.014935627579689],[-0.069509103894234,-0.010319134220481,0.097185201942921]],[[-0.10552661120892,0.065881110727787,0.026744015514851],[0.13070158660412,0.084492884576321,0.005507180467248],[-0.096952252089977,-0.049293145537376,-0.12790293991566]],[[0.029111059382558,0.028701949864626,0.077715590596199],[0.17901036143303,0.069366693496704,0.026032689958811],[0.013342158868909,0.020064890384674,-0.032546505331993]],[[0.079579129815102,-0.024106230586767,0.041005622595549],[-0.11749129742384,-0.0061225988902152,0.013773498125374],[0.04242767393589,0.027028061449528,-0.13313333690166]],[[0.17837946116924,-0.01055025216192,-0.013197510503232],[0.13608145713806,0.014044143259525,-0.047700446099043],[-0.030021619051695,0.014595305547118,0.032390460371971]],[[0.061712432652712,-0.014646699652076,0.049283560365438],[-0.21036343276501,-0.075581088662148,-0.028410717844963],[0.21503327786922,-0.11408357322216,-0.06951080262661]],[[0.089936554431915,-0.043555907905102,0.1348715275526],[-0.013317317701876,0.028400380164385,0.032932218164206],[-0.068841755390167,0.00018579620518722,0.083984680473804]],[[-0.098110295832157,-0.13215869665146,-0.20449960231781],[0.064200259745121,0.0032243677414954,-0.036158181726933],[-0.0041562039405107,-0.01201356947422,-0.11055928468704]],[[-0.025454845279455,0.046373784542084,0.10157627612352],[0.027653723955154,-0.053722318261862,-0.14283083379269],[-0.046088747680187,-0.041152227669954,0.04811629652977]],[[0.095734521746635,-0.13312484323978,0.14007300138474],[-0.067970618605614,0.028880888596177,-0.045296844094992],[-0.052743673324585,-0.10678275674582,-0.11103731393814]],[[0.2086415886879,0.0109050758183,0.17551818490028],[0.10570582002401,0.035740192979574,-0.12771859765053],[0.096116118133068,0.046956785023212,-0.084824964404106]],[[-0.036169357597828,-0.092564322054386,-0.16736061871052],[-0.03124793805182,0.047118000686169,-0.14052845537663],[0.10492819547653,-0.030885975807905,0.058083537966013]],[[0.012274929322302,-0.034964382648468,0.052618388086557],[0.041374754160643,-0.04444495588541,-0.13731820881367],[-0.0053675742819905,0.048736300319433,-0.070483602583408]],[[-0.095096483826637,-0.13891831040382,-0.093428865075111],[0.1946899741888,0.012122029438615,-0.087679363787174],[-0.10065615177155,0.10912588238716,0.062397729605436]],[[-0.16229198873043,-0.092045105993748,-0.026744198054075],[-0.07417468726635,0.063653901219368,0.0056565217673779],[0.059429068118334,-0.015293655917048,-0.0012319751549512]],[[0.13838405907154,0.20229896903038,-0.028004448860884],[-0.026303360238671,0.094821631908417,-0.058017197996378],[-0.075122833251953,0.026161558926105,0.0696165189147]],[[0.052836313843727,0.022900266572833,-0.11280260235071],[0.045293379575014,0.082665823400021,0.0045370329171419],[-0.022221501916647,-0.037823405116796,0.0019260661210865]],[[-0.089288033545017,-0.049369130283594,0.10546316951513],[-0.0017569892806932,0.11805009841919,-0.078137710690498],[0.21244005858898,0.062152944505215,0.14427247643471]],[[0.00096136523643509,0.091955505311489,-0.010056726634502],[-0.089212410151958,0.018156372010708,0.11296927183867],[-0.059215415269136,0.025054436177015,0.035357434302568]],[[-0.14096336066723,-0.13750356435776,-0.089784026145935],[0.055261421948671,-0.011455949395895,-0.053958475589752],[-0.0096202492713928,0.052638623863459,0.019224006682634]],[[0.029112661257386,-0.12516228854656,-0.050247080624104],[0.033922221511602,0.031603917479515,-0.010291225276887],[-0.024619655683637,-0.087953515350819,0.0065955854952335]],[[0.11991283297539,0.044595774263144,0.038243636488914],[-0.051162458956242,-0.040633294731379,-0.0073826448060572],[-0.00615099305287,0.015457538887858,0.078742809593678]],[[0.16361711919308,0.14555323123932,0.28844776749611],[-0.094148114323616,-0.11228344589472,-0.1339362859726],[-0.026969853788614,0.15768665075302,0.070162877440453]],[[-0.03394839912653,-0.11743455380201,-0.17596319317818],[0.046428129076958,-0.10932382941246,-0.099151603877544],[-0.027559846639633,0.015857310965657,0.22124695777893]],[[0.1329011619091,-0.083285123109818,-0.23001474142075],[-0.03835828229785,-0.0082009742036462,-0.00028716155793518],[0.085902348160744,0.03085508570075,-0.053387273102999]],[[-0.060527760535479,-0.056508809328079,-0.0067928852513433],[-0.04324884340167,-0.069693922996521,-0.2304697483778],[0.14967080950737,0.019050825387239,-0.22967027127743]],[[0.045169446617365,-0.071238666772842,0.055394399911165],[0.045792888849974,0.074219852685928,-0.01002118550241],[0.051380660384893,-0.040672779083252,0.10434578359127]],[[0.05538959428668,-0.027183499187231,0.09766299277544],[0.21163272857666,-0.02146278321743,0.19094103574753],[0.12273498624563,0.053307767957449,-0.038389172405005]],[[0.084728814661503,0.13630957901478,-0.027262862771749],[-0.1182376742363,-0.058039005845785,0.01655232720077],[0.16912032663822,-0.033577986061573,-0.16013953089714]],[[-0.10461081564426,0.031901709735394,0.031542580574751],[0.025183724239469,-0.043487787246704,-0.11789638549089],[-0.075299546122551,-0.1393710821867,-0.12608505785465]],[[-0.12765105068684,-0.064755253493786,-0.055319152772427],[-0.11823057383299,-0.020408218726516,-0.066071674227715],[0.12750573456287,0.059897106140852,0.056810710579157]],[[0.15063981711864,0.032065384089947,-0.034056387841702],[-0.13157179951668,-0.026710910722613,-0.085916049778461],[-0.24282677471638,0.062548540532589,0.15316006541252]],[[-0.25038766860962,-0.037823099642992,0.086225248873234],[-0.092300318181515,-0.086177371442318,-0.066948644816875],[-0.1006725281477,-0.13137310743332,-0.057738538831472]],[[0.16687768697739,-0.11392667889595,0.053670916706324],[0.0092649478465319,-0.016324138268828,-0.079774729907513],[0.099276080727577,-0.040794383734465,-0.1562911272049]],[[0.23056100308895,-0.033120073378086,0.1691660284996],[0.021300498396158,0.072025634348392,0.06716649979353],[-0.10622019320726,-0.063984706997871,0.012488212436438]],[[-0.056267585605383,-0.042540144175291,0.05312355235219],[-0.089812450110912,-0.085987195372581,0.073249623179436],[0.00041576538933441,0.098516397178173,-0.19248741865158]],[[-0.031529627740383,0.11568807810545,-0.024868905544281],[-0.11627449095249,-0.085091568529606,0.1562284976244],[0.26086136698723,0.024968640878797,-0.048823587596416]],[[0.18623788654804,0.06324940174818,-0.048769492655993],[-0.084723152220249,-0.053042516112328,-0.011136524379253],[-0.082947865128517,-0.14492030441761,0.1565416008234]],[[-0.03446089476347,-0.11190186440945,-0.031625550240278],[-0.020467964932323,-0.038488801568747,0.058103829622269],[0.074018158018589,-0.057647552341223,-8.7463966337964e-05]],[[0.0012874079402536,-0.14171309769154,-0.20175981521606],[-0.047889664769173,-0.0092222401872277,0.067548215389252],[-0.17806361615658,0.017999393865466,-0.022881159558892]],[[-0.11177840083838,0.081488534808159,-0.12292534857988],[-0.010392262600362,-0.020702756941319,-0.097539879381657],[-0.080793261528015,0.030774187296629,0.0076635922305286]],[[-0.039890959858894,0.04492125287652,0.0076783215627074],[0.10427032411098,-0.074748508632183,0.060979045927525],[0.012075199745595,-0.09063646197319,-0.16313546895981]],[[0.18728315830231,0.10724759846926,0.14471447467804],[0.10578850656748,0.029682787135243,0.044630821794271],[0.2456646412611,0.1316070407629,0.14077715575695]],[[0.072929963469505,0.05821730941534,-0.063405446708202],[-0.072835654020309,0.090608492493629,0.076718583703041],[-0.23775202035904,-0.11285438388586,0.094339333474636]],[[-0.025597255676985,-0.052413992583752,-0.099181450903416],[0.04002920538187,-0.093223594129086,-0.13164678215981],[0.14738409221172,0.045872513204813,-0.062047448009253]],[[-0.074912913143635,-0.08232044428587,-0.14409127831459],[-0.031790740787983,0.064954057335854,-0.024421317502856],[0.067681610584259,0.085404753684998,-0.054296243935823]],[[-0.075496844947338,-0.02609040774405,-0.017079453915358],[-0.0097775151953101,-0.02384745515883,-0.11321422457695],[-0.12327078729868,-0.077049620449543,0.13700942695141]],[[-0.068513587117195,-0.095018282532692,-0.0453260242939],[0.1026279181242,0.11308099329472,0.1527933627367],[-0.022964257746935,-0.085336104035378,-0.081574968993664]],[[-0.037383448332548,0.0096229901537299,0.012274102307856],[-0.015993654727936,-0.042884394526482,-0.013902039267123],[-0.15082313120365,-0.13853904604912,-0.035003650933504]],[[-0.059899281710386,0.064911171793938,0.13651493191719],[0.10917285829782,0.051250196993351,0.0088511435315013],[0.069564484059811,0.12544946372509,0.093256428837776]],[[-0.011158321984112,0.0081614125519991,0.17729289829731],[-0.080689504742622,0.039535660296679,-0.031048275530338],[-0.11474941670895,-0.032765116542578,0.06873082369566]],[[0.17292086780071,0.096777431666851,-0.084300987422466],[0.031392987817526,0.093556478619576,-0.064364731311798],[0.089737541973591,-0.00044329965021461,-0.1501499414444]],[[0.11783971637487,0.058947004377842,0.022923594340682],[-0.062541104853153,0.02950394526124,0.1061053648591],[0.061826538294554,0.01745368540287,-0.052756391465664]],[[0.10754411667585,-0.037049055099487,-0.064214639365673],[-0.079637810587883,0.037805929780006,0.03868317976594],[-0.11105032265186,0.080144859850407,-0.027321083471179]],[[0.10684875398874,0.094980701804161,-0.037196010351181],[0.050350569188595,-0.019518343731761,-0.081545315682888],[-0.17109297215939,0.021009065210819,0.075310349464417]]],[[[-0.010884364135563,-0.053911924362183,0.01899329200387],[0.06666287779808,-0.028796715661883,-0.12872897088528],[-0.14517322182655,-0.00015755475033075,0.024758527055383]],[[-0.017381496727467,-0.078134603798389,0.073678478598595],[-0.15119406580925,-0.037839256227016,-0.063534058630466],[-0.14727130532265,0.020630724728107,-0.039907585829496]],[[-0.048637982457876,-0.10505964607,-0.16338981688023],[-0.011357197538018,0.030713407322764,0.016507711261511],[-0.13236729800701,-0.01232798397541,-0.039938375353813]],[[0.054193798452616,-0.033382304012775,-0.011516623198986],[-0.083642035722733,-0.12545122206211,0.059544440358877],[0.080232724547386,-0.093337044119835,-0.13907194137573]],[[-0.067271128296852,-0.14838886260986,0.05091155320406],[-0.071243837475777,-0.048333693295717,-0.090050429105759],[-0.17429694533348,0.033890414983034,0.074426658451557]],[[-0.1683464795351,-0.009287403896451,-0.10740097612143],[-0.063597403466702,-0.10633549839258,-0.01097946241498],[0.040689028799534,-0.11031812429428,-0.018578067421913]],[[0.044811967760324,-0.0014943676069379,-0.055317141115665],[-0.092179149389267,-0.1294170320034,-0.057250611484051],[-0.061656177043915,0.0046722344122827,0.074286825954914]],[[0.083387993276119,-0.10292069613934,0.035933695733547],[-0.11087746918201,-0.018177304416895,0.063108451664448],[-0.2122960537672,0.00939632486552,-0.12754185497761]],[[-0.042474519461393,0.070357866585255,-0.027214601635933],[0.092049546539783,0.048404593020678,-0.074589617550373],[-0.023442521691322,-0.040713660418987,-0.039971087127924]],[[-0.022231508046389,-0.00306955142878,-0.066826358437538],[-0.028765825554729,0.13149203360081,0.10737065970898],[-0.0055593559518456,-0.042982555925846,0.045153342187405]],[[0.014817691408098,-0.029464669525623,-0.039421409368515],[-0.037878673523664,-0.004277050960809,0.083402417600155],[0.074652142822742,0.15662361681461,0.088528841733932]],[[-0.021981215104461,0.084232397377491,-0.054373595863581],[-0.076646044850349,0.009361457079649,-0.028685109689832],[-0.097189798951149,-0.09814015775919,0.043735262006521]],[[-0.016158176586032,-0.04132491350174,-0.0090686324983835],[0.028278697282076,0.11422146111727,-0.025688366964459],[0.013773398473859,0.072436548769474,0.10197401791811]],[[-0.11330956220627,-0.014247889630497,-0.11582109332085],[-0.064783573150635,0.066323347389698,0.047631412744522],[-0.14195403456688,-0.024218155071139,0.11258789896965]],[[-0.14400108158588,0.021367004141212,0.073339328169823],[-0.29028251767159,-0.041469130665064,0.051488935947418],[0.10164203494787,-0.063245117664337,0.12273544818163]],[[0.076519131660461,-0.071398206055164,-0.040397118777037],[-0.030743423849344,0.0015963641926646,-0.02883567288518],[-0.13180382549763,-0.0085942288860679,0.052316535264254]],[[0.01293969899416,0.1493978202343,0.052974067628384],[-0.02279157564044,0.01659918576479,0.088316276669502],[0.024316776543856,0.063376121222973,0.073104113340378]],[[0.0069771553389728,-0.07805947214365,-0.018924195319414],[-0.032031949609518,-0.019177168607712,0.030875289812684],[0.088294520974159,-0.090068139135838,-0.024159088730812]],[[0.12189092487097,-0.049840144813061,-0.084768503904343],[-0.017835829406977,-0.0061432686634362,0.037052150815725],[0.21324951946735,0.056750610470772,-0.13000172376633]],[[0.075527861714363,0.0058486824855208,0.0083645535632968],[-0.049219131469727,0.11880796402693,0.030628938227892],[0.07049448043108,-0.053074061870575,-0.030037084594369]],[[-0.16209901869297,0.073806338012218,0.0028547160327435],[0.0010520438663661,-0.05995612218976,0.077283076941967],[0.046398285776377,-0.046296156942844,-0.085525140166283]],[[-0.043079026043415,0.020445981994271,0.030393473803997],[-0.057363852858543,-0.036241736263037,0.077908851206303],[-0.031287487596273,-0.082756794989109,0.0049665817059577]],[[0.081482514739037,-0.10316563397646,0.022425761446357],[-0.013930847868323,-0.031226251274347,-0.028455631807446],[0.020526122301817,-0.012431531213224,0.038204684853554]],[[0.018169948831201,-0.10802289843559,-0.0030679071787745],[0.042307917028666,0.2359514683485,0.091735206544399],[0.086744233965874,-0.034530103206635,0.034868869930506]],[[0.10975244641304,-0.026858884841204,0.02462169714272],[0.062259238213301,0.026085760444403,-0.033404961228371],[0.074195876717567,-0.031316801905632,-0.065611518919468]],[[-0.042579747736454,-0.02433511428535,-0.020586183294654],[0.042908150702715,-0.0015778774395585,-0.071958668529987],[0.026138070970774,0.097537346184254,-0.030192565172911]],[[0.09135165810585,0.002481548814103,-0.12863512337208],[-0.05205450206995,-0.084937140345573,0.041572332382202],[-0.023568995296955,0.01961393468082,0.017185281962156]],[[-0.098534569144249,0.0092857144773006,-0.014282997697592],[-0.12695506215096,-0.072190672159195,-0.020337320864201],[0.067164100706577,-0.0059877298772335,-0.19306832551956]],[[0.11051084846258,0.048742815852165,0.0068132504820824],[-0.018302420154214,-0.013302274979651,-0.058831874281168],[0.062329743057489,-0.029103755950928,0.064353458583355]],[[-0.022978324443102,-0.095194771885872,0.01422259118408],[0.091945447027683,0.017987472936511,-0.047487549483776],[-0.060484744608402,0.015503138303757,0.016543796285987]],[[0.0088063525035977,-0.054018676280975,-0.026831459254026],[-0.088284626603127,0.031955257058144,-0.13138753175735],[-0.10595911741257,-0.018720826134086,-0.00099156377837062]],[[0.1932297796011,0.045058913528919,-0.12549333274364],[0.15489046275616,-0.078075706958771,0.058116290718317],[0.036393739283085,0.11324863880873,0.0097100473940372]],[[0.059244524687529,0.07494643330574,0.036485906690359],[0.0035648436751217,0.020393380895257,0.21685491502285],[0.040699798613787,-0.087459094822407,0.042069260030985]],[[-0.026982644572854,0.039716452360153,0.030421545729041],[-0.015670021995902,0.071625538170338,-0.12277387827635],[0.025434143841267,-0.042891021817923,-0.098912015557289]],[[0.045733854174614,-0.084280446171761,-0.10601482540369],[-0.15541683137417,0.0045383414253592,0.064146280288696],[-0.15433302521706,0.0051817302592099,0.20344331860542]],[[0.11133969575167,-0.0091026742011309,0.13444757461548],[-0.0382383428514,0.077472805976868,0.094849400222301],[-0.037989486008883,0.089471012353897,0.045222233980894]],[[0.0094936024397612,0.07940635830164,0.029863031581044],[0.030054861679673,-0.075475141406059,-0.10834469646215],[-0.096346579492092,-0.088778235018253,0.065038852393627]],[[-0.11816249042749,0.049976956099272,-0.023019155487418],[-0.078074552118778,-0.14887680113316,0.00038292480167001],[-0.067986860871315,-0.1740041077137,0.066658981144428]],[[-0.047033917158842,0.069146506488323,-0.048775866627693],[-0.047851376235485,-0.023654701188207,-0.035833105444908],[0.027728842571378,-0.085139818489552,0.027152117341757]],[[0.052136946469545,0.056526597589254,-0.005243401043117],[-0.036652587354183,-0.081355154514313,0.040971606969833],[-0.097607254981995,-0.0075744264759123,-0.011896659620106]],[[0.039669673889875,-0.086684763431549,-0.019721055403352],[-0.024049080908298,-0.057366985827684,-0.10753389447927],[-0.087602689862251,-0.10410964488983,0.070297129452229]],[[-0.074846036732197,0.018168367445469,-0.04399798065424],[-0.056258488446474,-0.05406590923667,0.0057523204013705],[-0.038354653865099,-0.076224409043789,-0.060635171830654]],[[-0.068049281835556,-0.093458920717239,-0.031779460608959],[-0.035816796123981,0.05258821323514,-0.0098518636077642],[0.022550644353032,0.022477643564343,0.11526723951101]],[[-0.015645416453481,-0.077225044369698,0.01154653262347],[0.10433471947908,0.012102168984711,-0.12269888073206],[0.034859996289015,-0.04246986284852,-0.13298726081848]],[[0.12870170176029,0.032126847654581,-0.098551064729691],[0.071806348860264,-0.038218058645725,-0.070149466395378],[-0.028652660548687,-0.076187454164028,-0.019858924672008]],[[-0.055814146995544,0.077748708426952,0.073339626193047],[-0.033115014433861,0.02197745628655,0.032994203269482],[-0.017704619094729,0.027506723999977,-0.059984307736158]],[[0.11261248588562,0.067838072776794,-0.077746786177158],[-0.071710832417011,-0.014413603581488,0.0061385883018374],[-0.10878124088049,-0.03787137567997,-0.1035071015358]],[[-0.064597450196743,0.10371269285679,-0.097167544066906],[-0.07956936955452,0.040968719869852,-0.15721075236797],[-0.0014997615944594,-0.011137336492538,0.0075571085326374]],[[-0.019737754017115,-0.080452255904675,-0.10292824357748],[-0.038411445915699,0.0058285375125706,-0.017806068062782],[-0.15662063658237,-0.20114180445671,-0.091820105910301]],[[-0.014679716899991,0.10631927847862,-0.084547497332096],[-0.01595052704215,0.019347099587321,0.049357540905476],[0.029384657740593,-0.019823169335723,0.036825023591518]],[[0.0030953139066696,-0.096651650965214,-0.079619035124779],[0.0044291289523244,-0.053789302706718,0.16811588406563],[-0.048780061304569,0.094950847327709,-0.093301773071289]],[[-0.14299993216991,0.047868154942989,-0.097568713128567],[0.15836577117443,-0.046307876706123,-0.091657266020775],[0.031976092606783,-0.023159837350249,0.00048462103586644]],[[0.027168300002813,-0.052945874631405,-0.009301733225584],[-0.0042513590306044,0.10747322440147,-0.050941545516253],[0.050364002585411,-0.053274631500244,0.080215692520142]],[[0.099119752645493,0.013513616286218,-0.032963171601295],[-0.039675917476416,0.051415234804153,-0.058972917497158],[0.12715831398964,-0.066369086503983,-0.06173188239336]],[[-0.06425616890192,-0.026246311143041,0.045437563210726],[0.077989809215069,-0.0017810162389651,-0.017205506563187],[0.047045826911926,0.075626872479916,-0.16804374754429]],[[-0.026871673762798,-0.10295760631561,0.03635461255908],[0.076903194189072,0.031666055321693,-0.017711866647005],[-0.13870076835155,0.11345145851374,-0.025884781032801]],[[-0.17620036005974,0.017784686759114,0.053959704935551],[-0.042868558317423,0.019163833931088,0.10143654793501],[-0.043950881808996,-0.18383571505547,-0.062565378844738]],[[-0.06477914005518,-0.037746462970972,0.049252770841122],[0.0076988181099296,-0.054068509489298,0.0061323950067163],[-0.015000984072685,0.022619720548391,-0.053096327930689]],[[0.099872104823589,0.045106668025255,-0.038948450237513],[0.13049991428852,0.044377990067005,0.088039301335812],[0.056186981499195,-0.086310535669327,0.087690502405167]],[[-0.15853027999401,-0.026488209143281,0.058819934725761],[0.036713901907206,-0.07140925526619,0.12766098976135],[0.027539217844605,0.026710771024227,-0.069272309541702]],[[0.017633188515902,0.0029064919799566,-0.038576278835535],[-0.14712060987949,-0.084020279347897,-0.04878394305706],[-0.033707618713379,0.013282511383295,-0.023551199585199]],[[0.029544904828072,0.056216310709715,-0.053947784006596],[0.065482035279274,0.054075833410025,0.028435565531254],[-0.11763022840023,0.0044687506742775,-0.12734247744083]],[[-0.15398898720741,-0.040082782506943,-0.094425037503242],[-0.076991751790047,0.23025546967983,0.06708737462759],[-0.048724539577961,0.050565455108881,0.067285403609276]],[[0.059046316891909,0.028047734871507,0.11045787483454],[0.22169022262096,0.082715600728989,-0.03353950381279],[-0.054849270731211,-0.12423850595951,-0.19394400715828]]],[[[-0.0030468702316284,-0.049299687147141,-0.047431733459234],[-0.088015593588352,0.00878328923136,-0.031030850484967],[-0.040447685867548,0.10451848059893,-0.052404277026653]],[[-0.0048760278150439,0.025784092023969,-0.0065838899463415],[-0.017157321795821,0.041397336870432,-0.042863048613071],[-0.075614109635353,-0.093355290591717,-0.11749579012394]],[[-0.028299855068326,-0.0010592561447993,-0.034751676023006],[0.0023517641238868,-0.0154063468799,-0.026678340509534],[-0.13746757805347,0.020556081086397,-0.054267194122076]],[[-0.082502640783787,0.00091888417955488,-0.0032447031699121],[-0.063832052052021,-0.058624610304832,-0.046340182423592],[0.022783162072301,0.00024713479797356,0.12614063918591]],[[0.0071917455643415,0.019999293610454,-0.051970157772303],[-0.12827351689339,-0.028310691937804,0.003445474198088],[-0.0068999407812953,0.015104631893337,-0.049948938190937]],[[-0.024236496537924,-0.12821280956268,0.06787320971489],[-0.053915273398161,-0.073552437126637,-0.17576295137405],[0.0074820970185101,0.028499945998192,-0.06213153898716]],[[-0.062144860625267,0.062154021114111,0.030626446008682],[0.087947100400925,-0.090015217661858,-0.018075600266457],[0.055543005466461,-0.042323157191277,0.12025638669729]],[[0.052970178425312,0.019776701927185,0.14384445548058],[-0.056084267795086,0.11294890940189,0.053371157497168],[0.14222757518291,-0.16122411191463,-0.084247760474682]],[[-0.010506966151297,0.023236373439431,-0.029251370579004],[0.097410000860691,0.022095097228885,-0.036106798797846],[0.015973700210452,0.022027520462871,-0.13239689171314]],[[-0.15306626260281,-0.051527660340071,-0.12350783497095],[-0.017850443720818,-0.019719403237104,0.1212929263711],[-0.067292205989361,-0.027502389624715,0.063780568540096]],[[-0.046737998723984,-0.092294722795486,-0.0056485384702682],[-0.027980636805296,0.04214209318161,-0.10285438597202],[-0.028088016435504,-0.037160612642765,-0.0088984929025173]],[[0.029972704127431,-0.025781912729144,-0.017251679673791],[-0.10600965470076,0.003902503522113,0.020739734172821],[-0.0091059841215611,-0.13653402030468,-0.17726415395737]],[[0.0077459211461246,0.071147762238979,0.080370485782623],[0.027890525758266,0.0031692173797637,-0.0028719678521156],[-0.087278120219707,-0.16942943632603,0.0073770512826741]],[[-0.048604730516672,0.047697804868221,-0.11359652131796],[-0.0034772867802531,0.15549431741238,0.13397301733494],[-0.026252225041389,-0.05373964086175,0.041330993175507]],[[-0.0539242438972,0.010126285254955,0.0063463989645243],[-0.0078364619985223,-0.017495390027761,0.054290112107992],[0.05015816912055,0.040694933384657,0.084324978291988]],[[0.040556810796261,0.039218991994858,-0.041526976972818],[-0.038761883974075,0.11579120159149,0.072130791842937],[-0.029545882716775,-0.21546196937561,-0.19294023513794]],[[-0.015619337558746,-0.049596905708313,0.075323358178139],[-0.087103895843029,-0.091966606676579,-0.086057685315609],[-0.032033760100603,0.044425871223211,-0.034814052283764]],[[-0.15681523084641,0.019901882857084,0.039279278367758],[-0.17313309013844,0.095586724579334,-0.1056665033102],[0.059632916003466,0.043382074683905,-0.036711718887091]],[[-0.033752281218767,0.070406906306744,-0.23708616197109],[-0.11296880990267,0.019400514662266,-0.055784340947866],[-0.00054794893367216,0.14267940819263,-0.07533772289753]],[[0.071645192801952,-0.051294416189194,-0.015602799132466],[-0.048833802342415,-0.036590412259102,-0.079718232154846],[0.1705025434494,-0.066943846642971,0.061042353510857]],[[0.035119898617268,-0.14317391812801,-0.066609710454941],[-0.051604695618153,0.022503266111016,-0.078110463917255],[0.095600202679634,-0.0057266661897302,0.054218091070652]],[[-0.040948905050755,-0.040115851908922,-0.0015549595700577],[0.0041258647106588,0.078723050653934,-0.0097057642415166],[0.017350969836116,-0.031551323831081,-0.061501085758209]],[[0.13099154829979,-0.0032399471383542,0.11254289001226],[-0.086134634912014,0.011181483976543,0.022257490083575],[0.090604864060879,-0.04032339528203,-0.13079588115215]],[[0.12656404078007,-0.054428659379482,-0.13058087229729],[0.10777682065964,-0.062597870826721,-0.029114412143826],[0.13679546117783,0.09910611063242,0.029451927170157]],[[-0.18214380741119,0.12658062577248,0.011236547492445],[0.19473937153816,-0.041642263531685,-0.016903335228562],[-0.041594322770834,0.047402359545231,0.052449088543653]],[[-0.039367843419313,-0.0024870974011719,0.05869423225522],[-0.081608042120934,-0.025853745639324,-0.0017427433049306],[-0.037525501102209,0.029254203662276,0.024697070941329]],[[-0.038753498345613,-0.031646773219109,0.12211667001247],[0.082706205546856,-0.03484645485878,-0.030575349926949],[-0.031960658729076,-0.042141120880842,0.059509389102459]],[[-0.024487124755979,-0.03379126265645,-0.044969949871302],[-0.016754126176238,-0.063138484954834,0.093231983482838],[-0.1003805026412,0.067493610084057,-0.22001495957375]],[[-0.06354134529829,-0.1454423815012,-0.054285254329443],[-0.074861586093903,-0.0054582441225648,-0.041021507233381],[-0.032457120716572,-0.083271741867065,0.012326365336776]],[[0.027668677270412,-0.006141341291368,-0.10642283409834],[-0.0043676081113517,-0.12042429298162,0.019438756629825],[-0.041535340249538,-0.098739005625248,-0.06635856628418]],[[-0.0088631566613913,-0.023387977853417,0.0024130744859576],[0.022212870419025,-0.074839219450951,-0.072249218821526],[-0.083079107105732,-0.14421045780182,0.18208709359169]],[[0.11993846297264,0.033248353749514,0.19459107518196],[-0.16296510398388,-0.093860670924187,-0.03288035094738],[0.021503135561943,0.018241327255964,-0.0069325244985521]],[[0.20123368501663,0.10613238811493,0.1263116300106],[-0.090183258056641,0.091269411146641,-0.0040165176615119],[-0.03433096781373,-0.032385174185038,0.013114505447447]],[[-0.034955605864525,-0.11526100337505,-0.0010565073462203],[-0.031714364886284,-0.098514668643475,-0.037378549575806],[-0.0033947273623198,-0.050056897103786,-0.094588182866573]],[[0.056145705282688,-0.033485323190689,0.013368235900998],[-0.10573575645685,0.035465408116579,-0.059351123869419],[-0.020913379266858,0.098928399384022,0.029840366914868]],[[-0.1223017796874,-0.13689303398132,0.037896811962128],[-0.034474026411772,0.07778138667345,-0.031702991575003],[-0.14273208379745,-0.052256062626839,0.2880394756794]],[[0.067615799605846,0.21185380220413,0.12425765395164],[0.16825741529465,0.027295334264636,0.057392153888941],[-0.05908016115427,-0.044984400272369,-0.03432335332036]],[[0.029161332175136,0.0013289449270815,-0.0014487388543785],[-0.046860486268997,-0.08182081580162,-0.093751929700375],[-0.023347433656454,-0.19809076189995,0.13512769341469]],[[0.093470349907875,-0.16776131093502,0.044238150119781],[-0.17602042853832,-0.051239710301161,-0.082444243133068],[-0.046064633876085,-0.026025842875242,-0.10117577761412]],[[-0.055045913904905,-0.17988578975201,-0.046078979969025],[0.068460792303085,-0.083626061677933,-0.057634767144918],[-0.038980264216661,0.0019685283768922,0.073773771524429]],[[-0.12338427454233,0.074096731841564,0.035918913781643],[-0.056114457547665,-0.12816593050957,-0.057292103767395],[-0.018120000138879,-0.14599432051182,0.061952572315931]],[[-0.091877937316895,-0.0064942827448249,0.051830358803272],[0.022049462422729,0.0090767964720726,-0.026642754673958],[-0.12990200519562,-0.067796111106873,-0.035223931074142]],[[-0.017639368772507,-0.0019193515181541,-0.082945242524147],[-0.0073909033089876,-0.051058530807495,0.1391186863184],[0.069692842662334,0.13496555387974,0.0092578195035458]],[[-0.14938439428806,0.049933768808842,-0.15227063000202],[-0.021102583035827,0.13583596050739,-0.011087787337601],[-0.080314204096794,0.0059913890436292,-0.019423957914114]],[[-0.025119535624981,0.025067096576095,-0.17172978818417],[-0.092475414276123,0.10769764333963,-0.023852057754993],[-0.11344883590937,-0.088702715933323,0.066389657557011]],[[0.059043940156698,-0.019827466458082,0.097704440355301],[0.015989616513252,0.02200173586607,-0.040271781384945],[-0.00077162444358692,-0.078144669532776,-0.026800477877259]],[[0.05192519724369,0.16120421886444,0.078282691538334],[-0.091660179197788,0.022422773763537,-0.10872896015644],[-0.017641155049205,-0.047318167984486,-0.058159969747066]],[[0.053539697080851,-0.0061065689660609,0.019841836765409],[0.038575828075409,-0.13862995803356,-0.0079385554417968],[-0.026887668296695,-0.091230019927025,0.16011908650398]],[[-0.041827209293842,0.061353906989098,-0.018057659268379],[0.065973833203316,-0.048080891370773,-0.043814931064844],[0.028725462034345,0.053453244268894,-0.0067286510020494]],[[0.086250722408295,-0.036200236529112,-0.058625157922506],[0.22819101810455,0.11099655926228,-0.0018942262977362],[-0.012771212495863,-0.017494849860668,0.059486944228411]],[[-0.094479948282242,-0.01091412268579,0.026515329256654],[0.1048110127449,-0.13657903671265,0.002082176040858],[0.17240558564663,-0.018501503393054,0.070251993834972]],[[-0.079279519617558,0.11649473011494,0.08105531334877],[0.12086769193411,-0.083800479769707,0.067899644374847],[-0.16414214670658,0.088818021118641,-0.1716817766428]],[[0.054422698915005,-0.033044781535864,0.051363058388233],[0.027445271611214,0.025310384109616,-0.027965899556875],[-0.037669405341148,0.16244602203369,0.12126149982214]],[[-0.075785279273987,0.031114956364036,-0.069683983922005],[0.019890990108252,0.0013716631801799,0.094937600195408],[-0.19235718250275,0.024388562887907,-0.062824778258801]],[[-0.016134319826961,0.035073049366474,0.059904027730227],[0.049764432013035,-0.13906408846378,-0.050671078264713],[-0.058171268552542,0.068371884524822,0.056148193776608]],[[-0.019211675971746,-0.11555611342192,0.1737414598465],[0.054511588066816,-0.0040328437462449,-0.060949712991714],[-0.075486563146114,0.11099265515804,0.045144017785788]],[[0.1777900904417,0.033860385417938,-0.034933917224407],[0.021309340372682,0.052646156400442,-0.057593338191509],[-0.084152400493622,-0.078734964132309,-0.011018082499504]],[[0.040393639355898,0.0046510393731296,0.032592922449112],[-0.027667932212353,-0.028156774118543,0.054631672799587],[-0.19873256981373,0.056845236569643,-0.016854962334037]],[[-0.028775168582797,-0.0030829180032015,-0.047382023185492],[0.11855766922235,0.034728061407804,0.013197855092585],[-0.002517104614526,0.082913197577,0.000689881388098]],[[-0.17491264641285,-0.12078888714314,0.0027004317380488],[-0.040423683822155,0.033941507339478,-0.016329251229763],[0.02964130602777,0.091417051851749,0.028030360117555]],[[-0.15107971429825,0.011098670773208,0.074245281517506],[-0.039710734039545,-0.043201375752687,0.07843741774559],[-0.091542571783066,-0.07688219845295,-0.10901000350714]],[[-0.0065373182296753,0.024241115897894,-0.030445864424109],[0.0075751468539238,-0.072075039148331,-0.045314587652683],[-0.13433869183064,0.037375427782536,-0.14677442610264]],[[-0.068588383495808,0.010921342298388,-0.033587895333767],[-0.14014975726604,0.012929578311741,0.096162259578705],[-0.051169116050005,-0.034944079816341,-0.016794269904494]],[[-0.017942428588867,-0.017148647457361,0.18846419453621],[0.033051315695047,0.068603478372097,0.035816509276628],[-0.16201463341713,-0.020836835727096,-0.12158764153719]]],[[[0.017805339768529,-0.031694523990154,0.15492691099644],[-0.05674247443676,-0.0050173606723547,0.017143167555332],[0.0011275337310508,0.013126255013049,0.0026304393541068]],[[0.020573327317834,-0.015716157853603,0.11589761078358],[-0.058620121330023,0.068452402949333,-0.096495993435383],[0.0036679785698652,-0.097087949514389,-0.21262988448143]],[[0.004898794926703,-0.083351284265518,-0.034121606498957],[-0.077772952616215,0.10407037287951,-0.071132980287075],[-0.21971254050732,0.02871011197567,-0.010404461063445]],[[0.043829213827848,-0.016959026455879,-0.14380158483982],[-0.10512760281563,0.082250565290451,-0.021891411393881],[-0.10972112417221,-0.087093561887741,-0.098964594304562]],[[-0.092182829976082,0.0081823356449604,-0.0053141228854656],[-0.018687356263399,-0.10767225176096,-0.16570717096329],[-0.13195350766182,-0.059963557869196,-0.1104743629694]],[[-0.044252950698137,-0.081200934946537,-0.14536066353321],[-0.081393770873547,-0.07561456412077,0.011362306773663],[0.071041502058506,-0.015831599012017,-0.071068577468395]],[[0.082124195992947,0.052866980433464,-0.14950725436211],[-0.0087329996749759,-0.037901248782873,-0.13208816945553],[0.13692530989647,-0.063590340316296,-0.06585368514061]],[[-0.0054318211041391,0.11200992017984,-0.14685653150082],[-0.10380224138498,-0.054216552525759,0.056370615959167],[-0.1018071770668,-0.13908033072948,0.060217268764973]],[[-0.038486137986183,0.02095627784729,-0.027076141908765],[-0.06176021322608,-0.0052454727701843,-0.099867008626461],[0.067263156175613,0.12742413580418,-0.09955608099699]],[[0.033988993614912,0.12774755060673,-0.033812869340181],[0.041990488767624,0.055006708949804,-0.083137050271034],[-0.029711749404669,-0.0094493003562093,-0.044910650700331]],[[-0.059333853423595,-0.091272249817848,0.09285032749176],[0.041512291878462,-0.012245083227754,0.065156146883965],[-0.0085689080879092,-0.090146243572235,0.086798816919327]],[[-0.013505642302334,0.037857074290514,0.025471620261669],[0.032538291066885,-0.10350449383259,-0.0418331772089],[-0.051009058952332,-0.10150570422411,-0.11495939642191]],[[-0.1149690747261,0.07427304238081,-0.086021795868874],[0.066028200089931,-0.0012350105680525,0.048550333827734],[-0.024291485548019,-0.10905700922012,0.052626568824053]],[[-0.16811209917068,0.00034545658854768,0.020632738247514],[0.00033227284438908,0.0031987759284675,0.021008735522628],[-0.029549449682236,-0.18701128661633,-0.07634511590004]],[[0.03532001003623,-0.094881758093834,-0.013102024793625],[0.0086924312636256,0.019644942134619,-0.016612799838185],[0.085118003189564,-0.10229194909334,0.10371375083923]],[[0.007265152875334,0.090554468333721,-0.12559206783772],[-0.030888000503182,-0.010754447430372,-0.11185271292925],[-0.035155508667231,0.10270449519157,0.020109007135034]],[[0.060206070542336,-0.08898151665926,-0.060731764882803],[-0.067419372498989,0.0152891529724,-0.007718357257545],[-0.018094772472978,-0.17639297246933,-0.0342804081738]],[[0.085820525884628,-0.040163721889257,0.092237561941147],[0.082326501607895,0.0135558526963,-0.13502398133278],[-0.035065233707428,0.075089290738106,-0.0066590015776455]],[[0.13901242613792,-0.17863574624062,-0.017013067379594],[0.053897049278021,-0.035363186150789,-0.041878718882799],[0.083474077284336,-0.20642602443695,0.10184615850449]],[[0.11393235623837,-0.12477283924818,-0.053488414734602],[-0.024996554479003,-0.096161358058453,-0.019265174865723],[-0.10173436254263,-0.032435663044453,-0.055954128503799]],[[0.064744487404823,0.13496588170528,-0.024153156206012],[-0.12612368166447,-0.065018266439438,0.042487617582083],[-0.13159793615341,0.096207395195961,-0.0031704693101346]],[[-0.021070269867778,0.04237711802125,0.052117358893156],[-0.049242932349443,-0.022233614698052,0.018924113363028],[-0.053374141454697,-0.066528856754303,-0.024288946762681]],[[0.068673767149448,-0.048495706170797,-0.096729934215546],[0.029503144323826,0.0073580127209425,-0.028363898396492],[-0.077305346727371,0.07374219596386,-0.011031745932996]],[[-0.066663324832916,0.060263480991125,0.054073479026556],[-0.082171313464642,0.076764434576035,-0.012281131930649],[0.077499993145466,0.11031255125999,-0.011995027773082]],[[0.022294890135527,0.098885588347912,0.055678620934486],[0.095078989863396,0.089434534311295,0.1177511960268],[0.13345639407635,-0.033195964992046,0.12746444344521]],[[-0.0093557331711054,-0.02328047901392,-0.050355315208435],[0.030968490988016,-0.0083457389846444,-0.018171174451709],[0.031046589836478,0.017653629183769,0.022845169529319]],[[-0.041434805840254,0.014124180190265,0.1004790738225],[0.06618395447731,-0.010016105137765,0.0057200780138373],[-0.016025342047215,-0.070270515978336,-0.10329069942236]],[[-0.14426039159298,0.007560062687844,-0.032149881124496],[-0.064332023262978,0.037205971777439,0.076364308595657],[0.014100888743997,-0.060915552079678,-0.21171541512012]],[[-0.050167925655842,0.019799146801233,0.098314076662064],[0.06084294244647,0.019737845286727,-0.048115957528353],[-0.20671325922012,0.041438173502684,-0.11462311446667]],[[-0.042810782790184,0.095274396240711,0.0016045822994784],[0.044557332992554,-0.0832289904356,-0.16275104880333],[0.017611408606172,-0.09146074950695,-0.11439141631126]],[[-0.070534661412239,-0.068997263908386,-0.018347665667534],[0.021744886413217,-0.11112581938505,0.061305340379477],[-0.015650482848287,0.040541164577007,0.018544044345617]],[[-0.084512896835804,-0.094529137015343,0.070270851254463],[0.022433621808887,0.069168210029602,0.1042390614748],[-0.15869636833668,0.0091236978769302,-0.082635350525379]],[[0.015470777638257,0.042705211788416,0.11752252280712],[0.086789160966873,0.056024383753538,-0.0013324602041394],[0.013853191398084,-0.04650567099452,-0.085292153060436]],[[0.027388151735067,0.046118192374706,-0.0068230275064707],[-0.080673679709435,-0.039112705737352,0.037991363555193],[0.048170875757933,-0.018225898966193,0.034428644925356]],[[-0.022339977324009,0.0067187412641943,-0.088822335004807],[-0.038742482662201,-0.087755583226681,0.03528705611825],[0.023123063147068,-0.04120909422636,0.12144328653812]],[[0.072892934083939,-0.11669012159109,0.093758329749107],[-0.08344966173172,-0.058446981012821,0.091334402561188],[0.063417427241802,0.0045152674429119,0.094064138829708]],[[0.014483150094748,-0.081348799169064,0.048361174762249],[0.11557461321354,-0.018285492435098,0.047571063041687],[0.21607638895512,-0.099917501211166,0.032919462770224]],[[-0.045511066913605,0.002478611189872,-0.011427138000727],[0.038969285786152,-0.0094281267374754,0.09033627808094],[-0.14376839995384,-0.042001396417618,-0.2689500451088]],[[0.0014606342883781,-0.040316581726074,-0.021567333489656],[-0.11771484464407,0.016199858859181,-0.11740936338902],[0.19496791064739,-0.038127638399601,0.008914845995605]],[[0.0073127495124936,-0.0030432583298534,0.055558048188686],[0.047887928783894,-0.093268744647503,0.088409498333931],[0.078613795340061,-0.11501570045948,-0.19311946630478]],[[0.028914790600538,0.05957480892539,-0.10348462313414],[-0.152966350317,-0.10026733577251,-0.0044683716259897],[-0.077987246215343,-0.13803596794605,-0.079051807522774]],[[-0.0034354440867901,-0.15109108388424,-0.050763659179211],[-0.036394450813532,0.0097395237535238,0.012538158334792],[-0.099331557750702,0.010808010585606,-0.14248782396317]],[[0.096066348254681,-0.088989980518818,-0.090060114860535],[-0.13244397938251,0.043752308934927,0.084323644638062],[0.12389473617077,-0.10884825140238,0.14270852506161]],[[0.12226638197899,0.033145125955343,0.024347370490432],[0.014821418561041,-0.059437606483698,0.063906334340572],[0.029354052618146,-0.15317067503929,-0.049973744899035]],[[-0.1942982673645,0.14765323698521,0.12809361517429],[0.082449451088905,0.014378034509718,-0.069318652153015],[-0.0053311642259359,-0.067274570465088,-0.13625578582287]],[[-0.016217930242419,-0.042333219200373,-0.027953870594501],[-0.0043022311292589,0.0073030740022659,0.10242752730846],[0.008158540353179,-0.082140050828457,0.06690127402544]],[[-0.044670633971691,0.083245307207108,-0.04521718621254],[-0.055001251399517,0.10627523064613,0.024328926578164],[-0.045847862958908,0.011870685964823,0.064306974411011]],[[0.058773752301931,-0.074354402720928,0.13754765689373],[-0.1211741194129,-0.054511494934559,-0.070641756057739],[0.10081008821726,0.029412277042866,0.094052001833916]],[[-0.019035784527659,0.10244281589985,0.14915344119072],[-0.05503673106432,0.12989912927151,-0.026881856843829],[-0.0062040658667684,-0.13401545584202,0.14106559753418]],[[0.027960253879428,0.092110306024551,-0.10981734842062],[-0.013288549147546,-0.037600174546242,-0.019226500764489],[-0.031131658703089,0.0023036731872708,-0.11918367445469]],[[0.0053405310027301,-0.16291165351868,-0.20498238503933],[0.063525646924973,-0.054547734558582,-0.010887657292187],[0.088876016438007,-0.19533677399158,0.10823295265436]],[[0.082593888044357,-0.0056628226302564,-0.011551634408534],[0.06517194211483,-0.084205761551857,-0.025927860289812],[0.085299700498581,-0.057987105101347,0.068487621843815]],[[-0.0080998884513974,-0.047807771712542,0.047774750739336],[0.14710894227028,-0.0077633839100599,0.086558356881142],[0.0019796728156507,0.16519294679165,0.05990669503808]],[[-0.056225161999464,-0.024812072515488,-0.055129297077656],[-0.15250039100647,0.076604686677456,-0.1091792434454],[-0.09492065012455,0.060662019997835,0.09868410974741]],[[0.012929243966937,-0.043687712401152,-0.13169276714325],[0.040413800626993,-0.12753221392632,-0.031834442168474],[-0.049822106957436,-0.055000726133585,0.21459156274796]],[[0.1000249683857,-0.14635242521763,-0.00094350514700636],[-0.1049574688077,0.045867890119553,0.0085544064640999],[0.015581404790282,-0.068875499069691,-0.06407356262207]],[[0.16032218933105,-0.029290331527591,0.016959836706519],[-0.064195401966572,0.056572493165731,-0.011864634230733],[-0.05000352114439,0.0024045612663031,0.024524688720703]],[[0.11516460776329,-0.12190572172403,0.022937811911106],[0.043587487190962,-0.045174732804298,-0.065077364444733],[-0.09434050321579,-0.040917877107859,0.04525838419795]],[[0.022692827507854,0.056408360600471,0.011964951641858],[0.022449091076851,-0.0043098861351609,0.079819366335869],[0.064651325345039,0.022957038134336,0.030921371653676]],[[-0.0016826649662107,0.051598109304905,0.020200505852699],[0.065123975276947,0.0066069988533854,-0.0088291773572564],[0.05666384473443,-0.041074898093939,0.071341849863529]],[[-0.047802224755287,-0.13901241123676,-0.015511112287641],[-0.08035596460104,0.016471710056067,-0.10032753646374],[0.041056726127863,-0.012070699594915,0.034401796758175]],[[0.02749259583652,-0.07417206466198,-0.027220331132412],[-0.13077610731125,-0.036079537123442,0.023147286847234],[-0.060760792344809,0.093815669417381,-0.058887951076031]],[[-0.024296710267663,0.0012187209213153,0.14931504428387],[0.025687946006656,-0.011111315339804,0.098049484193325],[-0.055616144090891,-0.069102071225643,-0.029572641476989]],[[0.06178093329072,0.099907346069813,-0.082466036081314],[-0.032210115343332,-0.01957062445581,-0.02463542111218],[0.029892535880208,0.034509263932705,-0.060935087502003]]],[[[0.084435679018497,-0.0063260309398174,-0.068848565220833],[-0.103171415627,0.022423714399338,0.0036973073147237],[-0.031879309564829,-0.0093430988490582,0.12101972103119]],[[0.021434357389808,0.014649385586381,-0.01096208114177],[0.033324368298054,0.0026017893105745,-0.10832722485065],[-0.031335301697254,-0.049398425966501,-0.12538902461529]],[[0.069547109305859,0.035561949014664,-0.11912757903337],[-0.16261768341064,0.011863749474287,0.034276742488146],[-0.096448719501495,-0.05524206161499,0.015486551448703]],[[-0.064434982836246,0.010541355237365,0.0095358174294233],[0.076752282679081,0.07341305911541,-0.016560561954975],[0.053344823420048,0.03022194467485,-0.053766205906868]],[[-0.057783860713243,-0.049307148903608,-0.0019834551494569],[-0.035292826592922,0.024006772786379,-0.0003571072302293],[0.040020484477282,-0.084878638386726,-0.1058090031147]],[[0.0057281358167529,0.024149458855391,0.090553060173988],[-0.046879217028618,0.046537429094315,-0.048141125589609],[0.03315394744277,0.041128724813461,-0.016916178166866]],[[0.047159653156996,0.13957935571671,0.21416746079922],[-0.065600410103798,-0.044049371033907,-0.073793306946754],[-0.055394124239683,-0.076116181910038,-0.19553153216839]],[[6.4462830778211e-05,-0.032791782170534,0.009921682998538],[-0.040697142481804,-0.030855713412166,-0.031880527734756],[0.12099022418261,-0.017622631043196,0.048565968871117]],[[0.066577285528183,0.076683051884174,0.22795870900154],[-0.040907073765993,0.04043247923255,-0.019358217716217],[0.18184785544872,0.029447369277477,-0.020269598811865]],[[0.1002044826746,-0.081639803946018,-0.054788179695606],[-0.064431823790073,-0.20056149363518,0.0033693870063871],[-0.19493505358696,0.018242498859763,0.12078259140253]],[[-0.070438005030155,-0.065033763647079,-0.084241636097431],[-0.15870623290539,0.031811747699976,-0.15299750864506],[-0.24702675640583,-0.037437815219164,0.090313546359539]],[[0.13092343509197,-0.010843957774341,0.083037033677101],[-0.080332770943642,-0.18349611759186,-0.25988703966141],[0.042706105858088,-0.0014777821488678,-0.19234111905098]],[[0.030058925971389,0.12217961251736,0.090865008533001],[-0.025971967726946,-0.073528096079826,-0.12578590214252],[-0.061083406209946,-0.031901840120554,0.078482262790203]],[[0.12836690247059,0.23335847258568,0.047827526926994],[0.062787666916847,-0.03923399373889,0.0014867469435558],[-0.068653978407383,0.094581641256809,0.085408769547939]],[[0.085208930075169,0.059485718607903,-0.13312882184982],[0.019696887582541,-0.083506114780903,-0.19848172366619],[0.0016261357814074,0.068032920360565,-0.054943677037954]],[[0.27932795882225,0.058799099177122,-0.068927571177483],[0.011725429445505,-0.063725605607033,-0.2885285615921],[0.11529593914747,0.10458619147539,0.13617664575577]],[[0.14068774878979,0.12818142771721,0.14957796037197],[-0.081454530358315,-0.056539498269558,0.14853754639626],[-0.2845870256424,-0.34767782688141,-0.28106272220612]],[[0.096207141876221,0.036835540086031,0.029807336628437],[0.014614364132285,-0.040374252945185,-0.21461713314056],[0.10170087963343,0.044682499021292,0.13961671292782]],[[-0.086635395884514,0.027374610304832,-0.24755059182644],[-0.17545878887177,-0.048469539731741,0.056779634207487],[-0.12428943812847,-0.011765680275857,-0.0076019540429115]],[[0.10275749117136,-0.019314367324114,0.12648817896843],[-0.10132446140051,-0.13935345411301,0.055794287472963],[-0.070053823292255,0.054508160799742,0.043635554611683]],[[0.0649753510952,-0.10720653831959,-0.063873380422592],[-0.21762178838253,-0.0663977637887,-0.056276775896549],[-0.1707459539175,-0.14153280854225,-0.12609814107418]],[[0.020156972110271,-0.028073767200112,0.027900315821171],[-0.013973807916045,0.030324202030897,-0.0027103035245091],[-0.048302233219147,-0.093402184545994,-0.074664197862148]],[[-0.072042770683765,-0.0041904305107892,0.11758391559124],[-0.13922096788883,-0.0068040522746742,0.094853334128857],[-0.078880928456783,-0.088762983679771,-0.12159300595522]],[[0.1975009739399,0.061259388923645,0.077386245131493],[0.10419330745935,0.11691424995661,-0.044927641749382],[-0.015390682965517,-0.018360003829002,0.013876888900995]],[[0.12403547763824,0.11215785890818,-0.044415216892958],[0.2075697183609,0.032175596803427,0.096622005105019],[0.014650484547019,0.034021355211735,0.15397679805756]],[[-0.034476116299629,-0.0063511980697513,0.080216206610203],[-0.064860992133617,0.0054947212338448,0.044334840029478],[0.00052258849609643,0.052782759070396,-0.017686169594526]],[[0.026870064437389,0.074163839221001,0.0013498042244464],[0.03348707780242,-0.0002303254295839,-0.11226514726877],[0.16343148052692,-0.094409182667732,-0.094962656497955]],[[0.10566351562738,0.045851983129978,-0.034048777073622],[-0.062840655446053,-0.035545248538256,-0.015827294439077],[0.043253242969513,0.1211651340127,-0.086214616894722]],[[0.074773199856281,0.029620269313455,0.087769746780396],[-0.14629758894444,-0.093443922698498,-0.032538320869207],[-0.0022586081176996,-0.024588590487838,0.11948422342539]],[[-0.040686707943678,-0.16040313243866,-0.18568976223469],[-0.0025466913357377,0.09081918746233,-0.02394936606288],[-0.044320441782475,-0.11042134463787,-0.03674029931426]],[[-0.18217374384403,-0.017339499667287,0.096811093389988],[-0.0087363384664059,0.040865242481232,-0.08696436136961],[-0.014843596145511,-0.063821442425251,-0.046783454716206]],[[0.0088576907292008,-0.11291369050741,-0.04350471496582],[-0.20229391753674,0.036344014108181,0.1089725792408],[0.048360072076321,0.12643897533417,-0.10887540876865]],[[-0.13435220718384,0.0480404086411,-0.1391270160675],[0.079650200903416,-0.08635450899601,-0.14675752818584],[0.0022557873744518,-0.0065583307296038,0.077002741396427]],[[-0.13165912032127,0.0014949233736843,-0.010976809076965],[0.029079070314765,-0.0028559162747115,-0.068115420639515],[-0.02848326601088,-0.016829270869493,-0.0012883102754131]],[[0.096684753894806,0.065351098775864,0.11453307420015],[0.01281426101923,-0.031740617007017,0.063037529587746],[0.11022445559502,0.042264591902494,0.18960106372833]],[[-0.073841840028763,-0.020427780225873,-0.00041118147782981],[0.035422395914793,-0.05637276545167,0.10631184279919],[0.0019211422186345,0.066699430346489,0.12298478186131]],[[-0.0026212332304567,0.033353604376316,0.046300735324621],[-0.0411446839571,-0.064600259065628,0.070704162120819],[0.014560209587216,0.17264401912689,-0.082719258964062]],[[-0.043691352009773,-0.045191414654255,0.18601582944393],[0.045636806637049,0.08928918838501,-0.016634663566947],[-0.10686935484409,-0.12118109315634,-0.15264986455441]],[[-0.085461981594563,0.048378251492977,-0.023435214534402],[-0.056470956653357,-0.19822044670582,-0.06200022995472],[-0.074064157903194,-0.057695519179106,-0.039072308689356]],[[-0.074244186282158,0.011618284508586,-0.028218485414982],[0.012768123298883,-0.080728352069855,-0.047482922673225],[0.030292917042971,0.10874735563993,5.2609986596508e-05]],[[-0.020422670990229,0.095291070640087,-0.094929285347462],[-0.032244633883238,-0.19838273525238,-0.20023366808891],[0.13853153586388,-0.05876949429512,-0.13724681735039]],[[0.051095232367516,-0.090173453092575,0.087102942168713],[0.092286594212055,0.037621147930622,0.0087367156520486],[0.074179671704769,0.018871298059821,-0.087984561920166]],[[0.02270814217627,-0.020386891439557,0.050332080572844],[0.010677904821932,-0.17124976217747,0.02112939953804],[-0.12487761676311,-0.0079175587743521,-0.080357953906059]],[[0.13495561480522,0.010438021272421,-0.14485079050064],[-0.036155547946692,0.051458425819874,-0.024415463209152],[-0.011606928892434,-0.052394337952137,0.023323372006416]],[[-0.052072916179895,-0.051403019577265,-0.13281066715717],[-0.11608848720789,0.1225116699934,0.066241860389709],[-0.14885757863522,-0.055098783224821,-0.028347779065371]],[[-0.10864801704884,-0.099499143660069,-0.13489216566086],[0.036231115460396,0.053184188902378,0.045127425342798],[0.050653036683798,-0.023425748571754,-0.094374693930149]],[[-0.058596689254045,-0.10432206839323,0.0091665796935558],[0.11496152728796,0.10109446942806,-0.046606618911028],[0.062663391232491,-0.080289468169212,-0.083743624389172]],[[0.014946902170777,-0.083875574171543,0.015026152133942],[-0.06668047606945,0.063843697309494,0.065718546509743],[-0.082103885710239,0.036625642329454,-0.21788163483143]],[[0.0011643129400909,-0.054848495870829,0.009243699721992],[0.013498289510608,0.040666863322258,0.0836571007967],[-0.07887801527977,0.0061241993680596,0.085225887596607]],[[0.012745281681418,0.09606696665287,0.078945554792881],[-0.042772028595209,-0.14137628674507,0.16458210349083],[0.20537905395031,-0.052018992602825,-0.087945714592934]],[[0.020457180216908,-0.033497888594866,0.099189609289169],[-0.14983348548412,0.033647235482931,-0.057126469910145],[0.12432110309601,0.036367632448673,0.21975708007812]],[[-0.077868238091469,0.12518458068371,-0.061372961848974],[0.086430780589581,-0.062125492841005,-0.16067212820053],[-0.11078824847937,0.036101244390011,-0.20351304113865]],[[0.036411259323359,-0.049699541181326,0.02093343064189],[0.10129431635141,-0.0050203851424158,0.069690078496933],[-0.10545083135366,0.074195109307766,-0.097101204097271]],[[0.083909422159195,-0.016473408788443,-0.0015296895289794],[-0.048525035381317,-0.042602639645338,0.00036776234628633],[0.01702624373138,-0.025985648855567,-0.071297347545624]],[[0.095920898020267,-0.031232506036758,-0.069334261119366],[0.083421096205711,-0.013705006800592,-0.22830566763878],[-0.08311165869236,-0.12017282098532,0.0302879139781]],[[0.05044025555253,0.076061546802521,-0.083803057670593],[-0.071209393441677,-0.050348378717899,-0.093754887580872],[0.17665509879589,0.062089800834656,0.086510740220547]],[[0.057233955711126,-0.0076564834453166,-0.1053207218647],[0.0019437932642177,0.051423721015453,0.0058493795804679],[0.069487258791924,-0.031815573573112,-0.091355130076408]],[[-0.092992722988129,0.035974685102701,0.043661400675774],[0.077396415174007,0.0029202841687948,-0.056052476167679],[-0.018136331811547,-0.032604314386845,0.028173491358757]],[[-0.071531772613525,0.00061888253549114,0.015024629421532],[0.083717934787273,0.20869402587414,0.19004233181477],[0.11063221842051,0.11127511411905,0.17383477091789]],[[0.076927505433559,0.015603995881975,0.087190642952919],[-0.22680604457855,0.089887648820877,0.037421189248562],[-0.082109697163105,0.045094922184944,0.047253530472517]],[[0.086931750178337,-0.011358266696334,-0.014450222253799],[-0.15107907354832,-0.10994893312454,0.058818887919188],[-0.00065797043498605,-0.10604783147573,-0.011324189603329]],[[-0.042891915887594,-0.0032133501954377,0.0053933537565172],[-0.055800769478083,0.00035245530307293,0.017603931948543],[-0.038156777620316,-0.022777259349823,-0.10907983779907]],[[0.02973035722971,0.11280450224876,0.12422227114439],[-0.025157490745187,-0.23915584385395,0.034060399979353],[-0.097170725464821,0.065111607313156,0.049040425568819]],[[-0.11428683251143,0.095133170485497,0.055424563586712],[0.010118168778718,0.0460882820189,-0.039808046072721],[-0.047257639467716,-0.14327311515808,-0.08297286182642]]],[[[-0.26617556810379,-0.17273297905922,-0.061706494539976],[0.0058048102073371,-0.096473343670368,-0.040445517748594],[-0.015720533207059,-0.11981888860464,-0.17455452680588]],[[-0.071189798414707,-0.030900185927749,-0.067744888365269],[-0.079606555402279,0.0021649172995239,-0.082939192652702],[0.021962171420455,-0.0086680194362998,0.080980740487576]],[[0.022120764479041,-0.012602004222572,-0.022349376231432],[-0.16483311355114,-0.10246942192316,0.13489569723606],[-0.068286292254925,-0.098766431212425,0.10455594956875]],[[-0.17299266159534,-0.025467874482274,0.084239967167377],[-0.075043693184853,-0.053548011928797,0.01009838655591],[-0.13928288221359,-0.16117888689041,0.11912647634745]],[[-0.025861306115985,-0.0068250652402639,0.017713019624352],[-0.081011936068535,-0.007777133025229,0.082106500864029],[0.012206963263452,0.0053131920285523,0.10134495794773]],[[-0.24548842012882,-0.098482608795166,-0.058278471231461],[-0.083445526659489,-0.014537898823619,-0.013442975468934],[-0.024116426706314,-0.058891244232655,0.059726443141699]],[[0.13070540130138,-0.035522170364857,-0.052666801959276],[-0.057921413332224,-0.12871897220612,-0.073346510529518],[0.072884045541286,-0.092821657657623,0.071648985147476]],[[-0.039567999541759,0.068011716008186,-0.040243823081255],[-0.0092558329924941,0.029535848647356,-0.027442004531622],[0.064222663640976,-0.0039634723216295,-0.0035959500819445]],[[0.036977589130402,-0.068434186279774,-0.098816767334938],[-0.0036728826817125,0.13729007542133,-0.034190263599157],[0.079350955784321,0.079122424125671,0.10378356277943]],[[0.026367111131549,-0.1881444901228,-0.1722067296505],[-0.10944579541683,-0.064400881528854,-0.0037697181105614],[-0.044031672179699,-0.00048185404739343,0.014185414649546]],[[0.048493433743715,-0.20134782791138,0.014075842685997],[0.038880985230207,-0.039125002920628,-0.033108189702034],[-0.0088928751647472,-0.033231113106012,0.0050085219554603]],[[0.0090854773297906,0.10169000923634,0.042114250361919],[0.2175335586071,-0.21217964589596,-0.27217596769333],[-0.051362209022045,-0.10387150943279,-0.23504592478275]],[[-0.10320936888456,-0.16481558978558,-0.25408327579498],[0.15557292103767,0.023855093866587,-0.038474723696709],[0.089264810085297,0.038541708141565,-0.086747087538242]],[[-0.062559545040131,-0.016081891953945,0.018683506175876],[-0.021648369729519,0.085530988872051,0.0012839278206229],[0.078888699412346,-0.01353716570884,-0.11356230825186]],[[0.074433363974094,0.030154634267092,-0.091107979416847],[-0.046268206089735,0.016384828835726,0.087455943226814],[-0.13850098848343,-0.052939102053642,0.0023913176264614]],[[0.0055737900547683,-0.030877597630024,-0.06416941434145],[0.035106409341097,0.11651682853699,0.033867411315441],[0.10745367407799,0.009593210183084,0.027065858244896]],[[-0.3430238366127,-0.21569833159447,-0.16165639460087],[-0.013928492553532,-0.14817345142365,-0.13004802167416],[0.10704239457846,0.14232933521271,0.092245794832706]],[[0.022468902170658,-0.054699014872313,0.03566487878561],[0.027430297806859,-0.0056332042440772,-0.0306461378932],[-0.014200486242771,-0.0024263272061944,-0.08298422396183]],[[0.078552335500717,-0.085205465555191,-0.0071643181145191],[0.038707055151463,-0.038716819137335,-0.095362454652786],[-0.032562252134085,-0.04282620921731,-0.060179580003023]],[[-0.0075178188271821,-0.076808586716652,-0.075049564242363],[-0.012930485419929,0.039237357676029,0.097663529217243],[0.05958916246891,0.057649563997984,0.093527965247631]],[[0.021115191280842,0.045256156474352,-0.17012444138527],[0.12293793261051,-0.10771867632866,0.050555538386106],[-0.017629252746701,0.030342452228069,-0.020016675814986]],[[-0.069095611572266,-0.10102619975805,-0.013517686165869],[-0.041014350950718,0.0698237195611,0.016387244686484],[-0.054788421839476,0.032550200819969,0.041577350348234]],[[-0.11885294318199,-0.11551178246737,0.12826408445835],[0.045117046684027,0.029650377109647,-0.058811940252781],[-0.032440152019262,-0.14423760771751,-0.12125390768051]],[[-0.066702954471111,0.01944575086236,0.014096687547863],[0.16154479980469,0.054584395140409,-0.083899527788162],[0.03024185448885,0.036217484623194,0.046602290123701]],[[0.072392679750919,0.030689101666212,0.2064716219902],[0.046929076313972,-0.018294269219041,0.078496858477592],[0.028483152389526,0.13612446188927,-0.01071598008275]],[[0.028537658974528,0.11670976132154,0.036068968474865],[-0.059223961085081,0.0029124454595149,0.020786901935935],[0.020027646794915,-0.066649660468102,-0.078921772539616]],[[0.028010720387101,0.047759637236595,0.081711493432522],[0.025877118110657,0.07191052287817,0.025963669642806],[-0.084104500710964,0.0070525198243558,-0.090085998177528]],[[0.11737062782049,0.089528419077396,-0.00016281940042973],[0.076431542634964,0.023717161267996,0.15296186506748],[0.055945981293917,0.0049044052138925,0.054758422076702]],[[0.049124021083117,-0.066433764994144,0.020493740215898],[-0.051052402704954,-0.0085976049304008,-0.13855518400669],[-0.10240768641233,0.053598627448082,0.13166424632072]],[[-0.057840283960104,-0.090294815599918,-0.17877508699894],[0.049496091902256,-0.1415671557188,0.071375265717506],[-0.0078234793618321,0.072921238839626,0.099646873772144]],[[-0.063083782792091,-0.018859189003706,0.0060933004133403],[0.09114021062851,0.06986740976572,0.13035689294338],[-0.047940026968718,-0.0026664866600186,0.20526663959026]],[[0.051524609327316,0.069244131445885,0.1043444648385],[-0.051283217966557,0.05828109011054,-0.022044833749533],[-0.026225313544273,-0.019690355286002,0.13644850254059]],[[-0.0056414385326207,0.073300436139107,0.029736790806055],[-0.095618821680546,-0.12623672187328,-0.043117336928844],[-0.020888619124889,0.022550178691745,-0.015907414257526]],[[0.075660638511181,-0.074746750295162,-0.12581676244736],[0.0033147388603538,0.049334671348333,0.010046562179923],[-0.052127454429865,-0.035345856100321,-0.022014431655407]],[[-0.23272410035133,0.014749844558537,0.024699997156858],[-0.097642235457897,-0.043345034122467,0.05822740867734],[0.070272341370583,0.079888172447681,-0.045613691210747]],[[0.15507690608501,-0.053647458553314,0.052180390805006],[-0.14149244129658,-0.056114122271538,-0.019831197336316],[0.0096344156190753,0.047036800533533,-0.022632088512182]],[[-0.069677092134953,-0.065260007977486,0.054153122007847],[-0.062750048935413,0.015605048276484,0.11253193020821],[-0.032424859702587,-0.040334366261959,-0.11065233498812]],[[-0.047860085964203,0.064309567213058,-0.12475320696831],[0.0037106981035322,-0.16295593976974,-0.023075876757503],[0.052960183471441,-0.0001631523045944,-0.064421713352203]],[[-0.20049528777599,0.0064826272428036,-0.023546004667878],[-0.0015317595098168,0.13234215974808,0.095492012798786],[-0.16727037727833,0.03017851151526,0.15837042033672]],[[-0.096423268318176,0.016512911766768,-0.072491906583309],[-0.10866089910269,0.035232983529568,-0.030617207288742],[0.10632960498333,-0.0037862514145672,-0.089937418699265]],[[-0.0682243257761,-0.053197748959064,0.062083698809147],[0.053803808987141,-0.0393494553864,-0.035468563437462],[0.025798246264458,0.034965332597494,0.014945595525205]],[[-0.20662149786949,-0.16670754551888,-0.141417786479],[0.03398809954524,0.034327987581491,-0.027122512459755],[0.0094092665240169,-0.074658341705799,0.085120305418968]],[[-0.091974690556526,-0.021403070539236,-0.013899307698011],[-0.1245469301939,0.057394292205572,-0.022660942748189],[0.049376927316189,0.077301569283009,0.16168458759785]],[[-0.11589800566435,-0.11011687666178,0.031676393002272],[0.027085123583674,-0.0043467544019222,-0.10494190454483],[-0.01303138025105,-0.0019470409024507,-0.12739111483097]],[[0.097451455891132,0.024836923927069,-0.18736313283443],[-0.031628057360649,0.0023080592509359,-0.12842820584774],[-0.032157272100449,0.033307246863842,-0.045453555881977]],[[-0.0048084668815136,0.071267448365688,0.083778530359268],[-0.041157048195601,-0.02173438668251,0.075553357601166],[0.03530153259635,-0.030050575733185,-0.053077567368746]],[[0.030680330470204,0.0064417095854878,0.091218359768391],[0.17522370815277,0.03656604886055,-0.11792121827602],[-0.052955649793148,0.1143808439374,-0.061098236590624]],[[-0.091509215533733,-0.026170739904046,0.025614837184548],[0.087807796895504,-0.12531004846096,0.062879137694836],[0.006806876976043,0.04822238907218,-0.027043713256717]],[[-0.044392570853233,0.096748687326908,-0.057879276573658],[0.021231515333056,-0.082300491631031,-0.092187412083149],[0.079998880624771,0.10213049501181,0.035377275198698]],[[-0.0035269518848509,0.01330263633281,-0.0021143096964806],[-0.17568519711494,0.046756841242313,0.16317534446716],[0.004539298824966,0.04908911883831,-0.037005845457315]],[[-0.03707230463624,0.03243412822485,-0.048948839306831],[-0.030753375962377,-0.00073031691135839,0.019454371184111],[0.14121368527412,-0.053612381219864,0.034025613218546]],[[0.056025344878435,0.016246477141976,-0.12602807581425],[-0.0080863516777754,-0.088789992034435,-0.092182442545891],[0.12989421188831,0.052809592336416,-0.09875413775444]],[[-0.012151001952589,0.055245351046324,0.10338574647903],[0.038954019546509,0.023349517956376,0.027904214337468],[-0.1625811457634,-0.10140754282475,-0.020259104669094]],[[-0.13719761371613,-0.028538966551423,-0.07733740657568],[-0.032876536250114,-0.037130393087864,-0.075174123048782],[-0.034655220806599,0.033687099814415,0.080302678048611]],[[-0.0061366613954306,-0.21683949232101,-0.067535571753979],[-0.081325218081474,0.020614795386791,-0.12046106904745],[-0.033565323799849,-0.090912759304047,-0.034437023103237]],[[0.13303884863853,0.074256360530853,-0.028243076056242],[-0.14575888216496,0.06456046551466,-0.12175405025482],[0.025054661557078,0.062591843307018,0.0087330145761371]],[[0.12838838994503,-0.040318887680769,-0.37593570351601],[-0.033767018467188,-0.040268238633871,0.046853832900524],[0.052126120775938,-0.13037921488285,-0.079165920615196]],[[0.079280145466328,0.039952460676432,0.13806822896004],[-0.040645778179169,0.048744443804026,-0.021021578460932],[0.026774233207107,0.11667317897081,0.0060188621282578]],[[0.075033366680145,0.0321552939713,0.043867755681276],[0.083995424211025,0.017148507758975,-0.045021075755358],[0.033500846475363,0.044283039867878,0.13797801733017]],[[-0.0073220804333687,-0.00014607686898671,0.0037003092002124],[-0.053941734135151,0.057005792856216,-0.012347257696092],[-0.017119523137808,-0.10894702374935,-0.029141461476684]],[[0.064685128629208,0.086934983730316,0.0694445297122],[-0.10306807607412,0.024068187922239,0.098483063280582],[-0.086204655468464,-0.096464797854424,0.064084053039551]],[[-0.02680897898972,-0.00685327174142,-0.060187801718712],[0.041988350450993,-0.032175309956074,-0.043247479945421],[0.0045795869082212,-0.056526999920607,-0.047260463237762]],[[0.0054094484075904,-0.024113513529301,-0.0051494636572897],[-0.028556669130921,0.052795186638832,-0.049411047250032],[0.11100169271231,0.033643946051598,-0.081935301423073]],[[0.068317346274853,0.12138842046261,-0.019589144736528],[0.023709831759334,-0.016418198123574,-0.027896305546165],[0.0069761704653502,0.068574815988541,0.076031230390072]]],[[[0.00061895739054307,-0.013231030665338,0.15660336613655],[0.042636156082153,-0.036364391446114,0.17953145503998],[-0.064527049660683,-0.0020832035224885,0.034227147698402]],[[0.032315462827682,0.038926463574171,0.060339011251926],[0.011337969452143,-0.11148432642221,-0.10526090115309],[-0.040287349373102,-0.087761647999287,0.02519154921174]],[[-0.017894631251693,-0.16062441468239,-0.023825054988265],[-0.01420979667455,-0.0079690562561154,0.065270766615868],[-0.021048527210951,-0.050123780965805,0.0028606886044145]],[[0.0067692445591092,-0.0065354546532035,-0.071974188089371],[-0.0047205914743245,0.010949512012303,-0.1739799529314],[0.080698102712631,-0.045904129743576,0.15096580982208]],[[-0.080077446997166,0.096188485622406,-0.07489650696516],[-0.00062442716443911,-0.052896123379469,-0.055340465158224],[-0.012779721990228,-0.13482429087162,-0.08445480465889]],[[-0.0080629102885723,-0.041346330195665,-0.18810054659843],[0.047113884240389,-0.10674743354321,-0.015534972772002],[-0.082684807479382,-0.095202170312405,-0.0068410183303058]],[[-0.044650603085756,0.13303217291832,-0.052307207137346],[-0.081186637282372,0.029538014903665,-0.03329848125577],[-0.021263837814331,-0.018893418833613,-0.086779706180096]],[[-0.058433253318071,-0.053664300590754,-0.025282522663474],[0.032930757850409,-0.0064319344237447,-0.093471862375736],[0.10250333696604,-0.09512934088707,-0.077904254198074]],[[0.041012961417437,0.030201798304915,0.042428072541952],[0.031690578907728,-0.0012419683625922,0.064168341457844],[-0.03974536806345,0.040055297315121,-0.086828969419003]],[[-0.14534717798233,0.026978842914104,-0.16795474290848],[-0.091800279915333,0.00032043684041128,-0.080559298396111],[-0.10031992942095,0.009544893167913,-0.049329180270433]],[[-0.053232334554195,0.032007168978453,-0.084491774439812],[-0.021326437592506,0.0079011600464582,0.038776561617851],[0.033438950777054,0.090815335512161,-0.077804513275623]],[[-0.017166797071695,0.036464802920818,0.06952840834856],[-0.13218808174133,-0.14665713906288,0.16029611229897],[-0.21714197099209,-0.047581754624844,0.14627845585346]],[[-0.080333322286606,-0.075445801019669,-0.016458254307508],[0.044948201626539,-0.070063598453999,0.035791002213955],[-0.072774633765221,-0.05585290491581,-0.029462199658155]],[[0.17389883100986,-0.039750423282385,-0.079065762460232],[0.10616756975651,-0.023071920499206,0.050686664879322],[-0.096245601773262,-0.056115198880434,0.12802800536156]],[[-0.0749541670084,0.039382137358189,-0.0085750743746758],[0.021325280889869,0.059431470930576,0.024873869493604],[-0.038052421063185,0.10645499825478,0.013205053284764]],[[-0.00084523082477972,-0.050270821899176,-0.1451168358326],[-0.039139721542597,0.0071265529841185,-0.036124859005213],[0.036399625241756,-0.10606422275305,-0.10387490689754]],[[-0.035077709704638,-0.0758897960186,-0.015741541981697],[-0.081815093755722,-0.094293236732483,-0.084797762334347],[-0.076616585254669,-0.4301909506321,-0.22530084848404]],[[0.072093904018402,0.0047844811342657,-0.11702969670296],[0.012257860042155,-0.068056285381317,-0.061511091887951],[0.1454299390316,0.11721705645323,-0.099987611174583]],[[-0.038507089018822,-0.028938796371222,-0.060570441186428],[-0.0031014694832265,-0.013201303780079,0.13100174069405],[0.031643994152546,0.021260168403387,0.016691355034709]],[[-0.061940092593431,-0.10824592411518,0.0095143923535943],[-0.059634648263454,-0.086117513477802,-0.16275252401829],[-0.07529404759407,-0.046088118106127,0.033294297754765]],[[-0.049937296658754,0.070453368127346,-0.1474451571703],[-0.025666430592537,-0.13225328922272,0.19585925340652],[-0.071253471076488,0.027729235589504,-0.10859061032534]],[[0.027784202247858,0.023211028426886,0.013238588348031],[0.042449288070202,-0.097057439386845,-0.1069415435195],[0.0036881291307509,-0.021098241209984,-0.049691956490278]],[[-0.084369882941246,0.0070543452166021,-0.0019191311439499],[-0.12962402403355,-0.021917801350355,-0.028516510501504],[-0.11114042252302,-0.15173208713531,-0.12030412256718]],[[0.12596152722836,0.23717039823532,0.065649829804897],[-0.013135018758476,-0.030645221471786,0.070434436202049],[0.050986967980862,0.093324273824692,-0.042039323598146]],[[0.013225871138275,0.017984341830015,-0.088260516524315],[0.14804872870445,-0.023420194163918,0.065643779933453],[0.14248590171337,0.022265078499913,0.046940688043833]],[[-0.13111826777458,-0.037287529557943,0.022996287792921],[-0.027835998684168,0.017340129241347,0.08345090597868],[-0.024454260244966,0.020900784060359,0.030917175114155]],[[0.011900013312697,0.12130820006132,-0.13307854533195],[0.068456217646599,-0.057047802954912,-0.020527873188257],[-0.007970929145813,0.027092473581433,-0.024154681712389]],[[-0.011604460887611,-0.059416860342026,0.11013417690992],[-0.0015862818108872,0.029022099450231,0.12144995480776],[0.074261926114559,-0.026546524837613,0.05168105661869]],[[-0.11089711636305,-0.03501096740365,-0.033665053546429],[-0.028444217517972,-0.04846478253603,-0.040925167500973],[-0.1346834897995,-0.057042386382818,-0.11989495158195]],[[-0.068100795149803,0.11200869828463,-0.1050530821085],[-0.028464306145906,-0.098334483802319,-0.0053410874679685],[-0.0757966786623,-0.021620225161314,-0.12611599266529]],[[-0.058881971985102,0.063788890838623,0.015286655165255],[-0.020712915807962,0.063698761165142,-0.01008234359324],[-0.1221456900239,0.07681592553854,0.071947544813156]],[[-0.16279849410057,-0.10342756658792,-0.16949339210987],[-0.027925997972488,-0.091236121952534,-0.11136627942324],[0.21096122264862,0.10019311308861,-0.030693328008056]],[[-0.024960845708847,-0.0016372277168557,0.017946891486645],[0.086997449398041,-0.10972718894482,0.038706637918949],[0.031685549765825,0.081304468214512,0.060045629739761]],[[-0.066078960895538,-0.071203857660294,-0.010618115775287],[-0.023639988154173,0.030843561515212,0.05891727656126],[-0.055215250700712,-0.15564008057117,0.0070822220295668]],[[-0.02149274200201,0.0081114768981934,-0.031028227880597],[0.087686613202095,-0.027961140498519,-0.11533516645432],[0.027527779340744,-0.053882673382759,-0.017395365983248]],[[-0.083010122179985,-0.14284357428551,0.023199088871479],[-0.119996920228,0.060700353235006,0.060555648058653],[-0.087045051157475,0.13541217148304,0.14982061088085]],[[0.066837355494499,0.028218409046531,0.10309392958879],[0.089291155338287,-0.035021483898163,0.033529829233885],[0.017735883593559,0.046000305563211,-0.032539620995522]],[[0.033929370343685,0.039080586284399,-0.034878388047218],[-0.01109383162111,-0.041998241096735,0.058409478515387],[-0.046868972480297,0.12410414218903,-0.020549328997731]],[[0.021849727258086,-0.073219262063503,-0.037636544555426],[-0.17230586707592,0.020611507818103,0.027986647561193],[-0.0041307690553367,-0.032389782369137,-0.076321713626385]],[[0.05517566204071,-0.017978154122829,-0.10962516069412],[0.048215668648481,-0.018401108682156,-0.079006709158421],[-0.027515456080437,-0.032501392066479,-0.085201397538185]],[[-0.022099470719695,-0.054575614631176,-0.010722377337515],[-0.089176423847675,-0.077104911208153,-0.053570047020912],[-0.097263000905514,0.039287585765123,-0.0097432248294353]],[[0.016706880182028,-0.046312276273966,0.026920692995191],[0.024365179240704,-0.037910088896751,-0.16284368932247],[0.022535186260939,-0.050800263881683,-0.088535346090794]],[[-0.03041766397655,-0.029193073511124,-0.091085411608219],[0.089382417500019,0.19001050293446,-0.062068469822407],[-0.025198282673955,0.076029099524021,0.0047142864204943]],[[-0.033272590488195,-0.029237855225801,-0.084665663540363],[0.00041203293949366,0.008265427313745,-0.089113816618919],[0.013282004743814,-0.045821029692888,0.11964077502489]],[[-0.075986064970493,-0.14682924747467,0.035492047667503],[0.071302443742752,-0.062625549733639,0.090964965522289],[-0.041992418467999,-0.046795606613159,0.079597555100918]],[[0.047734770923853,-0.065191328525543,0.0041565122082829],[0.011462945491076,-0.031209219247103,0.067919120192528],[0.025750590488315,0.05383475124836,0.075240857899189]],[[-0.18397736549377,0.073527753353119,-0.062848024070263],[-0.1368410885334,-0.20656555891037,0.00083424657350406],[-0.11476197093725,-0.15154848992825,0.017332164570689]],[[0.01427427213639,-0.072888776659966,0.10903467237949],[0.028542518615723,-0.018520710989833,0.040073812007904],[-0.010956635698676,0.066255435347557,0.05477886274457]],[[0.084350548684597,-0.0058263340033591,0.079686731100082],[-0.063613392412663,0.035784456878901,-0.027096165344119],[0.024621451273561,0.018185151740909,-0.12155892699957]],[[0.068087987601757,-0.048971589654684,-0.10263283550739],[0.0026498606894165,-0.0034471459221095,-0.066286884248257],[-0.072421610355377,-0.022857885807753,-0.21162422001362]],[[0.024829054251313,0.10226358473301,-0.05449403077364],[0.15978522598743,0.023547729477286,-0.078043758869171],[-0.021183727309108,0.00089356501121074,-0.27371060848236]],[[-0.079361595213413,-0.033096566796303,0.22980777919292],[-0.090344421565533,0.037987221032381,-0.11343376338482],[0.034933861345053,-0.082593858242035,-0.023680569604039]],[[0.082815796136856,0.08890887349844,-0.11502101272345],[0.053992599248886,-0.06591958552599,0.054546944797039],[-0.018297169357538,0.057638350874186,-0.18378828465939]],[[-0.08175028860569,-0.079034671187401,-0.091738656163216],[-0.17192104458809,0.042009364813566,0.071639887988567],[-0.047542229294777,-0.10429295152426,-0.043038316071033]],[[-0.073549166321754,-0.039832796901464,0.018919073045254],[-0.05673286691308,-0.0023898787330836,0.029463205486536],[0.034511648118496,0.024088554084301,-0.051796615123749]],[[0.18180391192436,-0.12156392633915,-0.0076233600266278],[0.068116344511509,0.040187671780586,0.066165782511234],[0.077865928411484,0.048952233046293,-0.22511281073093]],[[-0.0069358618929982,0.089172199368477,0.1063030809164],[0.036011908203363,-0.069535292685032,0.028061885386705],[-0.046483229845762,0.057330477982759,-0.034527417272329]],[[0.0082766730338335,-0.049398943781853,-0.013941683806479],[-0.041667811572552,0.044102910906076,-0.030459471046925],[0.030498594045639,0.017430538311601,-0.18732933700085]],[[0.029488239437342,0.046517048031092,0.061150044202805],[0.067539870738983,0.01104218326509,-0.0097575327381492],[0.098218657076359,0.069378949701786,-0.030060991644859]],[[0.011930676177144,-0.0066760438494384,-0.065789379179478],[-0.10496697574854,0.071553468704224,0.011834249831736],[0.02208667062223,0.034071139991283,0.13242480158806]],[[-0.16196800768375,-0.0012632457073778,-0.080411590635777],[-0.06987127661705,-0.012009303085506,-0.010131483897567],[0.095694035291672,-0.12762278318405,0.062121976166964]],[[0.035742085427046,-0.080478750169277,0.034239389002323],[0.029914082959294,-0.063428848981857,-0.076974987983704],[0.055501945316792,0.12277851253748,0.019155684858561]],[[0.057099848985672,-0.022970659658313,0.012427773326635],[-0.043941766023636,-0.013473087921739,0.047675937414169],[0.061380155384541,-0.071369342505932,0.093956969678402]],[[-0.033837534487247,-0.0024394374340773,-0.039481163024902],[0.027517579495907,0.0025982763618231,0.086106933653355],[0.003925905097276,-0.031943064182997,0.022100917994976]]],[[[-0.085891880095005,-0.064548306167126,-0.02521538361907],[0.070597983896732,0.01581484824419,0.066524431109428],[0.055831827223301,-0.0028016350697726,-0.080064594745636]],[[-0.069962039589882,-0.11521480232477,0.050805725157261],[-0.10758920758963,-0.016038730740547,-0.035192746669054],[-0.07834854722023,-0.14079032838345,-0.12775620818138]],[[0.15329268574715,0.055072270333767,-0.032176963984966],[-0.058196000754833,-0.08274132758379,-0.087787769734859],[-0.12808580696583,-0.11981685459614,0.0017625504406169]],[[-0.014068457297981,0.05168280005455,-0.0030667432583869],[-0.048491392284632,-0.043914336711168,-0.040979404002428],[0.11322240531445,0.04546157643199,-0.06823443621397]],[[0.048865359276533,-0.014857735484838,0.075608804821968],[0.011923580430448,0.0042769513092935,0.022717813029885],[0.030976735055447,-0.00047085972619243,-0.010220747441053]],[[-0.029403248801827,-0.017698347568512,0.018791122362018],[0.0051070242188871,-0.092360943555832,-0.019050678238273],[-0.010459324344993,-0.0039421287365258,0.030278852209449]],[[-0.056255161762238,0.044783525168896,0.033146537840366],[0.036688353866339,-0.023808691650629,-0.0090674422681332],[-0.041712138801813,-0.018826641142368,-0.0078602256253362]],[[-0.017026955261827,0.041605964303017,-0.075407728552818],[0.00091578514548019,0.081365786492825,-0.037481587380171],[-0.024503964930773,0.15085300803185,-0.025093842297792]],[[-0.018299089744687,-0.15697510540485,-0.18319325149059],[-0.0094750067219138,0.0087728230282664,0.019027857109904],[0.037257499992847,-0.10663813352585,-0.024918515235186]],[[0.058329124003649,0.10426775366068,0.10823550075293],[-0.024511516094208,0.019814681261778,0.028667863458395],[0.021179620176554,0.043281573802233,-0.012907475233078]],[[0.022741571068764,0.020202070474625,-0.093608923256397],[-0.010159014724195,-0.022349379956722,0.0092200059443712],[-0.096321500837803,-0.0027747817803174,-0.091219007968903]],[[-0.012222498655319,0.059202164411545,0.016016459092498],[0.071109972894192,0.075087666511536,0.047713536769152],[0.011441671289504,-0.041403613984585,-0.1017851755023]],[[0.011792670935392,0.037796210497618,0.037111707031727],[0.10345941781998,0.050154738128185,0.086966268718243],[0.053965214639902,-0.026999501511455,0.020429572090507]],[[-0.055056747049093,0.052796468138695,-0.11237346380949],[-0.049937352538109,-0.010167675092816,0.0015665303217247],[0.16301441192627,0.07701038569212,0.024056736379862]],[[0.064496472477913,0.17268297076225,-0.10493376851082],[-0.054630950093269,0.022032359614968,-0.11020826548338],[0.082289978861809,0.2007177323103,-0.044678937643766]],[[-0.013827871531248,0.035517796874046,0.034489125013351],[-0.095653310418129,-0.01447238959372,0.15356753766537],[-0.083256460726261,-0.061510104686022,0.10579107701778]],[[0.071228295564651,0.011162327602506,0.080977819859982],[-0.0073367683216929,0.028908155858517,0.066223554313183],[0.059773217886686,0.098609894514084,-0.0020987163297832]],[[-0.065255112946033,-0.065708994865417,0.0082385325804353],[0.062296692281961,0.046718824654818,0.028642887249589],[0.0606424883008,0.049108177423477,-0.028777290135622]],[[0.033997558057308,-0.00035532630863599,0.025262717157602],[0.034151930361986,0.04713724181056,-0.049986280500889],[-0.069666005671024,0.06081910058856,0.10791854560375]],[[-0.068518631160259,0.029933229088783,-0.11981736123562],[-0.056621830910444,-0.063204705715179,-0.081139713525772],[-0.012440771795809,0.11436641216278,-0.065273813903332]],[[0.024628644809127,0.087660923600197,0.10148862749338],[-0.0043171476572752,-0.00081146787852049,0.041953574866056],[-0.060898944735527,0.058447185903788,0.025545883923769]],[[-0.031929899007082,-0.0059150015003979,-0.055375315248966],[0.02448751591146,0.0746104195714,-0.045230012387037],[0.016568744555116,0.045292023569345,-0.0012855073437095]],[[-0.081310272216797,0.015851540490985,-0.056327722966671],[-0.068286381661892,-0.011739776469767,-0.010894160717726],[0.046817198395729,-0.00814672652632,-0.13956044614315]],[[0.029127210378647,0.10579083859921,0.073856458067894],[0.015650069341063,0.047225035727024,0.017017386853695],[0.092005006968975,0.074421711266041,0.052841424942017]],[[-0.15104372799397,0.011563695035875,-0.054980810731649],[-0.11036313325167,0.076205052435398,0.08483848720789],[-0.060073673725128,0.11005766689777,0.12012597173452]],[[-0.054564256221056,-0.07633101940155,0.00040355321834795],[-0.026314737275243,0.033961057662964,0.097562283277512],[0.00056623842101544,-0.063767701387405,0.10203722864389]],[[0.07416208088398,-0.071716636419296,0.019843447953463],[0.022937305271626,0.0048581333830953,-0.044456668198109],[0.027535412460566,-0.0089867543429136,0.018869752064347]],[[-0.011288809590042,-0.078675389289856,-0.068255685269833],[-0.024555696174502,0.082902498543262,-0.080101311206818],[0.10773996263742,0.0080566443502903,-0.21201883256435]],[[-0.11784349381924,-0.005762604996562,0.082360491156578],[-0.059306487441063,-0.021454533562064,-0.050531271845102],[-0.033908903598785,-0.042675044387579,0.0011363995727152]],[[0.10680414736271,0.005893693305552,0.089726440608501],[-0.059871278703213,0.0016853455454111,0.0011445205891505],[0.04844930768013,-0.028063116595149,-0.074858725070953]],[[-0.13431671261787,0.15951876342297,-0.022263877093792],[0.028323704376817,0.090730838477612,-0.097034804522991],[0.01782288402319,0.18107844889164,-0.052199296653271]],[[0.004811545368284,0.070342853665352,-0.1595473587513],[-0.094941161572933,-0.069282993674278,-0.078966431319714],[-0.042209785431623,-0.030564473941922,0.063236251473427]],[[0.18882204592228,0.057195350527763,-0.066666938364506],[0.049335524439812,-0.023012010380626,0.049651496112347],[0.0033191721886396,-0.12196867913008,-0.011935654096305]],[[0.078313320875168,0.0066168294288218,-0.017591301351786],[0.018545988947153,0.017099361866713,-0.022758519276977],[-0.037969321012497,0.077582843601704,0.032687060534954]],[[0.0035106230061501,-0.047183223068714,-0.038033060729504],[-0.060963034629822,0.00014891348837409,-0.12145361304283],[-0.022679377347231,-0.099299751222134,-0.096424512565136]],[[0.015775976702571,0.1530277132988,-0.048320014029741],[0.018416522070765,0.06140710785985,0.042318526655436],[0.024427818134427,0.014265323989093,-0.096398547291756]],[[0.08320165425539,-0.00027124508051202,0.076757185161114],[-0.097358323633671,-0.05340164154768,0.048493754118681],[-0.087110348045826,-0.076099380850792,-0.046756241470575]],[[0.043120939284563,0.064778886735439,-0.020490322262049],[-0.0083151934668422,-0.083018079400063,-0.025427255779505],[0.030039804056287,0.084471985697746,-0.031146543100476]],[[-0.0097645781934261,-0.03610497713089,-0.014373144134879],[0.036641135811806,-0.15391793847084,-0.015533836558461],[-0.031628578901291,-0.13354584574699,-0.018873590976]],[[-0.090481407940388,0.015531495213509,-0.012126080691814],[-0.072917267680168,0.061930097639561,-0.044935382902622],[-0.14684833586216,-0.10756212472916,0.086753323674202]],[[-0.0033718482591212,-0.010069378651679,0.21886973083019],[-0.18338318169117,0.040839847177267,0.012434853240848],[-0.08192091435194,0.020273722708225,0.08214259147644]],[[-0.1215079203248,-0.0087416488677263,0.022737046703696],[-0.049700886011124,-0.050601400434971,0.042208291590214],[0.027366740629077,-0.0078059332445264,-0.031315863132477]],[[0.03801242262125,0.12761586904526,0.14331687986851],[-0.02201951853931,0.14010687172413,0.022908512502909],[0.0012660146458074,0.047097537666559,-0.0018170897383243]],[[0.045207805931568,-0.083648510277271,-0.011841609142721],[-0.064910724759102,-0.0093316109851003,0.0081114266067743],[-0.059523794800043,0.035258769989014,0.19950476288795]],[[0.084556229412556,-0.11062556505203,0.069622568786144],[0.021702470257878,-0.0056261415593326,0.13538661599159],[-0.0061058145947754,-0.044828798621893,0.065021388232708]],[[0.17597696185112,-0.040057986974716,0.018519071862102],[0.15170611441135,-0.040288735181093,-0.011733589693904],[-0.0023968466557562,0.037568211555481,-0.11537978798151]],[[-0.020183764398098,-0.015962958335876,-0.072038523852825],[-0.075618982315063,0.019328666850924,0.042636413127184],[-0.046440605074167,0.041130375117064,-0.01389027107507]],[[0.0029188534244895,0.012488015927374,-0.013257357291877],[0.089004963636398,-0.085268050432205,0.09349486976862],[0.040333352982998,-0.022502657026052,-0.033923946321011]],[[-0.0872533172369,0.040107131004333,-0.081139273941517],[-0.094078212976456,0.01635155454278,-0.080342218279839],[-0.15176296234131,0.044452115893364,-0.049421038478613]],[[0.05424190312624,0.10536424815655,-0.20042282342911],[0.050103522837162,-0.021933315321803,0.07672331482172],[-0.0029117078520358,0.043462119996548,-0.015891099348664]],[[0.088624849915504,0.057255499064922,-0.047031529247761],[0.02328029833734,-0.01316424831748,-0.024058995768428],[-0.075354762375355,-0.035163272172213,0.059044949710369]],[[-0.064119890332222,0.022876204922795,0.040718898177147],[-0.089618608355522,-0.063593216240406,-0.020162215456367],[0.066972009837627,0.0099421767517924,0.038646228611469]],[[-0.046326752752066,-0.067951373755932,-0.074973240494728],[0.027390098199248,0.046040128916502,0.033923972398043],[-0.10203702747822,0.099869027733803,0.10725741833448]],[[-0.0016577080823481,0.087942734360695,0.12487976998091],[-0.024525709450245,-0.00073047453770414,-0.024742819368839],[-0.090699955821037,-0.15475906431675,0.012756612151861]],[[-0.0025768205523491,-0.078446872532368,-0.11241871863604],[-0.0083326371386647,0.0070176967419684,0.012079204432666],[0.00145372771658,0.10966876149178,0.010369785130024]],[[0.12516433000565,0.049824073910713,-0.030580656602979],[0.076992176473141,-0.049750197678804,-0.021992424502969],[0.18183264136314,-0.018514903262258,-0.12428839504719]],[[-0.060572694987059,0.027748815715313,0.14288032054901],[-0.054335385560989,-0.014838646166027,0.085066944360733],[0.03802415728569,0.027879035100341,0.031432647258043]],[[-0.029251970350742,0.091438286006451,0.058317624032497],[0.017080230638385,0.044801454991102,-0.046015005558729],[-0.1077728420496,0.0092814425006509,0.00023349252296612]],[[-0.011199719272554,-0.069144241511822,-0.11038973927498],[-0.031657069921494,-0.070703059434891,-0.016827795654535],[-0.0053012329153717,-0.036459222435951,0.0085325492545962]],[[-0.0552943572402,0.075225740671158,0.061251647770405],[-0.10911508649588,-0.058375902473927,-0.054476674646139],[-0.11995210498571,0.0072640455327928,0.020836489275098]],[[0.066111162304878,0.041091069579124,-0.050207756459713],[-0.0066079190000892,0.024499233812094,0.088909417390823],[0.036003835499287,-0.030266460031271,0.062744356691837]],[[0.10424701869488,-0.048825807869434,-0.013155796565115],[0.16932439804077,0.064000263810158,0.0027448313776404],[-0.011430443264544,0.049631480127573,0.079869978129864]],[[-0.0095560178160667,-0.067122541368008,-0.033231098204851],[-0.059354085475206,-0.1112040579319,-0.056061744689941],[-0.13330620527267,-0.045356802642345,0.05168266966939]],[[0.071559704840183,-0.076544411480427,0.085663199424744],[0.017168149352074,0.019047558307648,-0.074038743972778],[-0.039126615971327,-0.034612260758877,0.025828007608652]]],[[[-0.090804018080235,0.072276644408703,0.071489006280899],[-0.11096897721291,-0.074600055813789,-0.10064567625523],[-0.27680987119675,-0.17975953221321,-0.20132188498974]],[[0.12828634679317,-0.055160511285067,-0.12137063592672],[-0.11662438511848,-0.099900834262371,-0.13606356084347],[-0.0072339856997132,-0.018840266391635,0.013162290677428]],[[-0.17181213200092,-0.049335416406393,-0.045085165649652],[-0.06104438751936,-0.047695510089397,-0.060748931020498],[-0.10733581334352,-0.063717007637024,-0.032978102564812]],[[-0.036409374326468,-0.025653295218945,-0.17163264751434],[0.10801900178194,0.009974043816328,0.072656117379665],[-0.24444083869457,-0.088187739253044,-0.015396169386804]],[[-0.072829306125641,-0.012944548390806,0.16570021212101],[-0.022974079474807,-0.04959699884057,-0.041085939854383],[0.039303001016378,0.10015458613634,0.11775416880846]],[[0.073456950485706,0.018856517970562,-0.099996723234653],[-0.14709722995758,-0.14402884244919,-0.021032886579633],[-0.14349016547203,-0.045518450438976,-0.02618695423007]],[[-0.13641574978828,-0.12238021939993,-0.056672371923923],[-0.16362836956978,0.029404567554593,0.12858666479588],[0.036062825471163,0.061970800161362,0.073109023272991]],[[0.16106721758842,-0.049046039581299,-0.056280747056007],[0.028948167338967,-0.045408323407173,-0.02789712138474],[-0.039926171302795,0.040079947561026,0.04061658680439]],[[0.10391061007977,-0.042330674827099,0.0036300986539572],[-0.090735211968422,0.013036574237049,0.03233427926898],[-0.18326964974403,-0.08456989377737,-0.080306075513363]],[[-0.013962818309665,0.074494987726212,0.015289996750653],[0.0079809278249741,-0.063683018088341,-0.099296450614929],[-0.016609974205494,0.06162902712822,0.0041321581229568]],[[0.050830028951168,-0.078925557434559,0.087217718362808],[-0.0039865225553513,-0.016969580203295,-0.0018207813845947],[-0.04244577512145,0.0097012361511588,-0.12453345954418]],[[-0.11173366010189,-0.17570339143276,-0.041418198496103],[0.060882817953825,0.070008784532547,0.036751575767994],[-0.096423648297787,0.12432929873466,0.092188127338886]],[[0.07562068104744,0.014059760607779,-0.10149388760328],[-0.044542115181684,0.063819766044617,-0.049213301390409],[-0.017745308578014,0.04496344178915,-0.010638691484928]],[[-0.23420044779778,-0.052298214286566,-0.022821461781859],[-0.072072483599186,0.11059457063675,-0.0012728692963719],[-0.22811017930508,-0.097579605877399,-0.18110372126102]],[[0.080186761915684,-0.010455410927534,0.034474827349186],[-0.018238274380565,0.029946794733405,-0.032070513814688],[-0.021507369354367,-0.042948793619871,0.035959273576736]],[[0.071376487612724,0.02961565926671,-0.042767155915499],[-0.22097562253475,0.023639844730496,-0.063448630273342],[0.078280851244926,0.0015000415733084,-0.014799772761762]],[[-0.090726837515831,-0.001258488278836,-0.11766555160284],[-0.078171081840992,-0.056511886417866,0.0051624784246087],[0.067469455301762,-0.057600170373917,-0.079779393970966]],[[0.022570686414838,0.0020914569031447,-0.0092808939516544],[0.11097078025341,0.017286237329245,0.16870674490929],[0.0018513947725296,0.018025228753686,0.0070635993033648]],[[-0.031552862375975,0.060373269021511,-0.081493698060513],[0.076029412448406,0.13132083415985,-0.11289381980896],[-0.1853401362896,-0.11374358087778,-0.15846760571003]],[[-0.19236880540848,-0.24791532754898,-0.017935201525688],[-0.084001503884792,-0.0077364356257021,0.023131964728236],[0.0914471372962,-0.018179375678301,-0.16193829476833]],[[-0.16708071529865,-0.16022354364395,-0.10361643135548],[-0.075684107840061,-0.004013026598841,-0.042281795293093],[0.071614325046539,0.012628735974431,-0.041247017681599]],[[-0.01126426178962,-0.11516801267862,-0.017671231180429],[-0.042915523052216,-0.0086215157061815,-0.010973465628922],[-0.069306090474129,0.021903390064836,0.048474382609129]],[[0.039310567080975,0.13667711615562,0.076723039150238],[-0.050030782818794,-0.1127862110734,-0.20036102831364],[0.032508570700884,0.0040262532420456,0.07357382029295]],[[-0.12117064744234,-0.0078898658975959,-0.052450321614742],[0.14417535066605,0.22755426168442,0.14070247113705],[-0.042898744344711,-0.024209290742874,-0.014026545919478]],[[0.051676224917173,0.12762577831745,0.062395002692938],[-0.04203199967742,0.039303105324507,-0.0031782553996891],[-0.017119687050581,-0.11026129126549,-0.092128485441208]],[[-0.0080974958837032,0.093358524143696,-0.0047538313083351],[-0.00080770335625857,-0.0094413245096803,-0.088468439877033],[0.025313556194305,-0.041115742176771,0.015941869467497]],[[0.10230989009142,-0.067586436867714,0.071874044835567],[-0.0056768483482301,0.042161952704191,-0.0059704063460231],[-0.0017138360999525,0.066979169845581,0.054641470313072]],[[-0.069979317486286,0.005567520391196,-0.020343296229839],[-0.092975936830044,-0.079072080552578,0.18571200966835],[-0.038675028830767,-0.035273425281048,-0.059124037623405]],[[-0.08996457606554,-0.0727334395051,0.087407357990742],[0.090113803744316,0.098239034414291,-0.15783613920212],[-0.048007197678089,0.052294619381428,0.072541862726212]],[[-0.1742157638073,-0.051399413496256,-0.10463569313288],[-0.05768258869648,0.10399615764618,0.08205471932888],[0.068170517683029,-0.10739835351706,-0.028478628024459]],[[-0.11354103684425,-0.067135170102119,0.069136179983616],[0.12768684327602,0.036280564963818,0.1879825592041],[0.017635688185692,-0.073352858424187,-0.2360974997282]],[[-0.038420885801315,-0.013567853718996,0.0054986355826259],[0.16105622053146,0.092039622366428,0.13696929812431],[0.1278735101223,0.046076580882072,-0.073638901114464]],[[0.026498526334763,0.042175825685263,0.053786359727383],[-0.029082618653774,-0.10867909342051,-0.070698633790016],[-0.0031731589697301,-0.10897323489189,0.23879444599152]],[[-0.21953900158405,-0.054874639958143,-0.13152454793453],[0.11526066064835,0.097218111157417,0.0087956544011831],[-0.077493831515312,-0.0025829349178821,-0.090728536248207]],[[-0.023276230320334,-0.041832391172647,-0.0060482048429549],[-0.019545583054423,-0.041834209114313,-0.044403426349163],[0.15842387080193,-0.028145873919129,-0.19780293107033]],[[0.20040348172188,0.10112179815769,0.10486086457968],[-0.0057192374952137,-0.044474486261606,-0.093375779688358],[0.12712028622627,-0.011121855117381,-0.14656299352646]],[[-0.092964336276054,0.014361120760441,0.074649758636951],[0.040904685854912,0.089278541505337,0.041432108730078],[-0.075988247990608,0.041086494922638,-0.016373677179217]],[[0.017930945381522,-0.043065670877695,0.02652995288372],[-0.18061251938343,-0.05984366312623,-0.032487168908119],[0.13814060389996,0.0068598515354097,-0.088022314012051]],[[-0.1515788435936,-0.049573734402657,0.042696498334408],[0.094649419188499,0.054870154708624,0.04199543595314],[0.053194917738438,0.010132224299014,-0.18716299533844]],[[-0.11174102127552,-0.041527409106493,0.04497305303812],[-0.011735776439309,-0.033850468695164,0.16356383264065],[-0.11960798501968,-0.083044365048409,-0.082667537033558]],[[-0.06689116358757,0.042233400046825,-0.011476149782538],[-0.18625178933144,-0.10595685988665,-0.00098738726228476],[0.029116859659553,-0.021116275340319,-0.077731013298035]],[[0.081456288695335,-0.028391709551215,-0.046288426965475],[-0.04530630633235,-0.036199405789375,0.015816178172827],[-0.061139333993196,-0.11155381798744,0.043405715376139]],[[-0.038656491786242,0.089799799025059,0.084773130714893],[-0.13928274810314,-0.056295074522495,-0.12134530395269],[0.05932778865099,0.063400238752365,0.086753860116005]],[[-0.15760454535484,0.039124932140112,0.051262266933918],[-0.10490224510431,-0.008293597958982,0.092656031250954],[-0.085474997758865,-0.13472634553909,-0.15723490715027]],[[-0.069807082414627,-0.028989231213927,-0.11442653089762],[-0.061245173215866,0.063000172376633,-0.06086540222168],[-0.12720187008381,0.06460227817297,-0.020303027704358]],[[0.024125855416059,0.023188527673483,-0.13845691084862],[0.0061123082414269,0.031694520264864,0.15830211341381],[-0.065301448106766,-0.083886586129665,0.068251423537731]],[[-0.18081021308899,-0.14369395375252,-0.047994595021009],[-0.052514869719744,-0.021233081817627,0.012091310694814],[-0.047917783260345,0.035070639103651,0.17751006782055]],[[-0.15913878381252,-0.16708391904831,-0.0013106442056596],[-0.072295747697353,0.043759077787399,-0.043587006628513],[0.063358351588249,0.08102161437273,-0.055579356849194]],[[-0.091395042836666,-0.00099639070685953,-0.060271993279457],[-0.0056770141236484,-0.064614169299603,-0.083851508796215],[0.024747937917709,-0.07436990737915,0.015823459252715]],[[0.16175904870033,0.026849845424294,0.16991344094276],[0.078650608658791,-0.012951373122633,-0.012312561273575],[0.063814654946327,0.035982251167297,-0.072004266083241]],[[-0.053101975470781,-0.0021353980991989,0.0032803353387862],[0.04943486303091,-0.10826805979013,-0.19086107611656],[-0.0066883419640362,-0.040121804922819,-0.057178765535355]],[[-0.066652469336987,0.036152765154839,0.18249799311161],[-0.12539230287075,-0.15889757871628,-0.09063096344471],[0.025603141635656,-0.20003870129585,0.019292240962386]],[[0.032897628843784,0.043801918625832,-0.057910896837711],[0.10090633481741,0.01862395554781,0.13874819874763],[-0.34000360965729,-0.32334294915199,-0.26284867525101]],[[-0.046031132340431,-0.0027831194456667,0.0087399920448661],[0.034657932817936,-0.027549648657441,-0.032276343554258],[0.27758368849754,0.0018772599287331,0.11300807446241]],[[-0.037805713713169,-0.09258110076189,-0.21391102671623],[0.16203065216541,0.045153144747019,0.024714540690184],[-0.16034579277039,0.025507217273116,-0.0070000104606152]],[[0.14792630076408,0.05052787065506,-0.056250590831041],[-0.0028333221562207,0.019157787784934,-0.13174180686474],[-0.10631252080202,-0.077379554510117,-0.16865773499012]],[[-0.11123086512089,0.0012233181623742,0.00048475031508133],[-0.14104688167572,-0.10029655694962,0.0025282301940024],[0.16014896333218,0.034684509038925,0.10989787429571]],[[-0.15971000492573,-0.17273357510567,-0.19374816119671],[0.14072787761688,0.068595953285694,0.071599304676056],[-0.055171325802803,0.0059848977252841,0.15990708768368]],[[0.10971771925688,0.0088201779872179,-0.021170511841774],[0.074222721159458,0.044703308492899,0.054636135697365],[0.090343169867992,0.11919107288122,0.0011794061865658]],[[0.058244794607162,-0.00088421395048499,-0.029134972020984],[-0.118249386549,0.11598990857601,0.11426997929811],[0.033954426646233,-0.052627444267273,-0.0030577413272113]],[[-0.11883725970984,0.041827842593193,0.1068699285388],[-0.08303165435791,-0.0085687758401036,-0.1045268625021],[-0.050003986805677,-0.14596284925938,-0.066679552197456]],[[-0.13867945969105,-0.0039391801692545,0.042383436113596],[-0.020596014335752,0.057151947170496,0.1893398463726],[0.022874055430293,0.01319146156311,-0.013259963132441]],[[-0.033420830965042,0.044263482093811,-0.18073853850365],[0.071589983999729,0.074357613921165,-0.13122460246086],[-0.060681711882353,-0.16513206064701,-0.047974899411201]],[[-0.082985959947109,-0.10374196618795,0.012170421890914],[0.054144829511642,0.073521435260773,0.019832424819469],[0.0033198874443769,-0.16720724105835,-0.017915397882462]]],[[[-0.069763392210007,-0.085453055799007,0.035842034965754],[0.035701729357243,0.019293166697025,0.03227523714304],[0.11281583458185,0.054244339466095,0.082374110817909]],[[0.014247205108404,0.02594137378037,0.030088946223259],[0.025614434853196,-0.077278770506382,0.060029853135347],[0.0054106968455017,-0.056011229753494,0.085555844008923]],[[0.0010071902070194,-0.026749985292554,0.029208984225988],[-0.15470060706139,0.010626446455717,-0.070887289941311],[0.036662071943283,-0.0058653107844293,-0.008389363065362]],[[-0.01495455391705,0.0055893077515066,0.038863882422447],[0.043504305183887,-0.0035831704735756,0.046347700059414],[-0.042148116976023,0.052592899650335,-0.086619444191456]],[[-0.089269280433655,-0.090859062969685,0.058628622442484],[-0.038533240556717,0.010458654724061,-0.009282236918807],[0.068468168377876,-0.0056212306953967,0.08124003559351]],[[0.059676665812731,0.031527474522591,-0.086791180074215],[0.0085355341434479,0.061154097318649,-0.049556765705347],[-0.099886797368526,-0.024716317653656,-0.011743387207389]],[[0.028909815475345,-0.0031824533361942,-0.010667016729712],[-0.068379767239094,-0.062757223844528,0.01616745442152],[-0.06369810551405,0.058513510972261,-0.1415903866291]],[[-0.19866904616356,-0.064950071275234,-0.084530755877495],[-0.095058657228947,0.0014551873318851,-0.10999876260757],[0.028507756069303,0.040320850908756,-0.050726011395454]],[[-0.036304332315922,0.028335120528936,0.080298945307732],[0.13034184277058,0.091461233794689,0.090675830841064],[-0.023260815069079,0.056874398142099,-0.035402681678534]],[[-0.034796692430973,0.055067233741283,0.10267475992441],[0.022142723202705,-0.030138328671455,-0.014707705937326],[0.031801484525204,0.020611427724361,0.054332744330168]],[[-0.053128328174353,-0.0089935846626759,-0.0026554118376225],[-0.15196613967419,0.022873984649777,0.05193155258894],[-0.017064025625587,-0.040535282343626,0.031888630241156]],[[0.094208508729935,-0.043347548693419,-0.052171226590872],[-0.025200039148331,0.078531891107559,0.032211445271969],[0.047273095697165,-0.03957886621356,0.044291730970144]],[[0.13354970514774,0.031058017164469,0.024157317355275],[0.092380456626415,-0.096402883529663,0.059244453907013],[0.041174881160259,0.020187253132463,-0.15762276947498]],[[-0.013438367284834,0.0060743778012693,0.049215711653233],[-0.03287598118186,-0.067735187709332,0.01469358522445],[-0.032651823014021,0.022781923413277,-0.088976308703423]],[[0.074996098875999,-0.11406796425581,0.1659324914217],[-0.037006933242083,-0.060685571283102,0.08858073502779],[-0.077969573438168,0.1019654199481,0.20202009379864]],[[0.025845957919955,0.10495053976774,-0.035482008010149],[-0.037582967430353,0.060631964355707,-0.031669426709414],[0.077927060425282,-0.023703714832664,-0.11313283443451]],[[-0.02910552918911,-0.0076921419240534,-0.048745363950729],[0.004524661693722,-0.026741173118353,0.011214855127037],[0.022280702367425,0.031762976199389,0.064895950257778]],[[0.24192866683006,-0.075112193822861,-0.0081055974587798],[0.074455991387367,0.010388731025159,-0.021211609244347],[0.032856248319149,0.029264628887177,-0.13915388286114]],[[-0.067592203617096,0.033391032367945,0.01479616202414],[0.0072489650920033,0.014432820491493,0.0052732168696821],[-0.034076984971762,0.13993322849274,0.014405751600862]],[[0.094492793083191,0.039774656295776,-0.12775410711765],[0.13198851048946,0.065776370465755,0.013656894676387],[-0.067722894251347,-0.021285304799676,-0.089844025671482]],[[-0.015688156709075,-0.03816556558013,-0.0063774972222745],[0.045110877603292,-0.0053495024330914,0.092735253274441],[0.0056625897996128,-0.051404714584351,0.16799353063107]],[[0.093516059219837,0.084771893918514,0.013358701020479],[-0.028035640716553,0.052686903625727,-0.1063816472888],[-0.033541191369295,0.017284765839577,-0.061772644519806]],[[0.04644226655364,0.02923552505672,0.014199940487742],[0.067671343684196,-0.024853331968188,-0.097848102450371],[0.043777357786894,0.054896499961615,-0.080844409763813]],[[-0.027576608583331,-0.089097321033478,-0.058532532304525],[-0.071314565837383,-0.27245932817459,0.04390262439847],[0.02434547804296,-0.010219824500382,0.23385715484619]],[[-0.018888730555773,-0.11984990537167,0.1205520927906],[-0.033738404512405,-0.012181404978037,0.11704114079475],[0.064737647771835,-0.027375277131796,0.14134539663792]],[[0.037824381142855,-0.00072176707908511,-0.012770985253155],[-0.016653096303344,-0.077714785933495,0.078436285257339],[0.011411506682634,0.022500371560454,-0.049232576042414]],[[0.0052456315606833,0.01578845269978,-0.025503730401397],[-0.044890474528074,0.058336321264505,0.012050072662532],[-0.064319647848606,0.054762374609709,-0.06427987664938]],[[0.13920804858208,0.014705621637404,-0.083281449973583],[0.16007451713085,-0.084828220307827,-0.039411690086126],[-0.08476947247982,-0.043313149362803,0.027853481471539]],[[0.14208018779755,0.027332529425621,0.16209070384502],[-0.010874774307013,0.04542824998498,-0.0086505888029933],[0.10458513349295,-0.13020901381969,0.0085070235654712]],[[0.084072150290012,0.077192775905132,-0.17709811031818],[0.0096954694017768,0.023025879636407,0.045010894536972],[0.067277170717716,0.045794013887644,-0.11133765429258]],[[-0.068585693836212,-0.043294847011566,0.12118227779865],[-0.092096097767353,-0.10375324636698,0.041115593165159],[0.064705602824688,-0.012204201892018,-0.085649289190769]],[[0.13122053444386,-0.1539144217968,-0.024987187236547],[-0.032885871827602,-0.032439030706882,0.043715681880713],[0.075857736170292,0.015173323452473,-0.023105075582862]],[[-0.059022016823292,0.032403506338596,0.022771142423153],[0.041372749954462,0.11910743266344,0.010893881320953],[-0.12265496701002,0.097529269754887,0.096218921244144]],[[0.018776543438435,-0.042725376784801,-0.040806107223034],[-0.0580551661551,0.062151785939932,-0.048096504062414],[0.036861035972834,0.0073119886219501,-0.072167195379734]],[[0.052631363272667,0.17546856403351,-0.039740547537804],[-0.048676576465368,0.08279575407505,0.057168629020452],[-0.012207409366965,0.15833896398544,0.018479693681002]],[[0.14443299174309,0.10496067255735,0.12980902194977],[0.059384439140558,0.10034273564816,0.16108323633671],[-0.041165582835674,0.2316720187664,0.10488697141409]],[[0.082597970962524,-0.0306068174541,-0.092169582843781],[0.022959740832448,0.079873770475388,-0.072878949344158],[-0.020671997219324,0.17688190937042,0.11112116277218]],[[0.079070456326008,-0.0055450857616961,0.043764676898718],[-0.074409201741219,0.1221791729331,0.025850936770439],[-0.094438299536705,-0.12004759162664,0.0021104030311108]],[[-0.13035468757153,-0.033349394798279,0.11256159842014],[-0.074649855494499,0.04032689332962,0.10667632520199],[-0.035770330578089,0.00013608287554234,-0.090347021818161]],[[0.086306668817997,0.077160365879536,-0.010765085928142],[-0.015521721914411,-0.071906320750713,0.020116014406085],[-0.10742820799351,0.065096221864223,0.050515722483397]],[[0.025950083509088,0.10598637163639,0.11483035981655],[-0.015423160977662,-0.044671475887299,-0.015596302226186],[0.039848655462265,-0.071747601032257,-0.24311213195324]],[[-0.045600321143866,-0.16021563112736,-0.0026503179688007],[-0.032312866300344,0.082433670759201,-0.043832506984472],[-0.093722224235535,0.047097444534302,-0.078146636486053]],[[-0.078916549682617,0.041472878307104,-0.051232688128948],[-0.018512591719627,0.071001634001732,-0.040646996349096],[-0.087359301745892,-0.016739523038268,0.11538615822792]],[[-0.045173354446888,0.14550909399986,-0.071061015129089],[-0.11008206009865,0.023531280457973,0.11351429671049],[-0.13576962053776,-0.04148044064641,-0.082790464162827]],[[0.079245015978813,0.022026274353266,0.014480607584119],[0.022551914677024,0.043545335531235,-0.046330258250237],[0.024418583139777,0.014995871111751,-0.0085139255970716]],[[0.10985420644283,0.13454090058804,-0.045187417417765],[0.12956276535988,0.1575786024332,0.084882020950317],[0.025952314957976,0.13075534999371,-0.1091128885746]],[[0.023368930444121,0.013765726238489,-0.052909329533577],[0.043786287307739,0.054168835282326,0.0042886016890407],[0.019399266690016,-0.046199582517147,0.018315434455872]],[[0.13831427693367,-0.068925298750401,-0.00026095804059878],[0.10225065797567,-0.00070611806586385,-0.038919057697058],[0.031916562467813,0.095121517777443,-0.021632958203554]],[[0.11287794262171,-0.030997375026345,0.003701303852722],[0.11685182899237,-0.11969867348671,0.1096204072237],[-0.030665293335915,-0.095975749194622,0.068326108157635]],[[0.0063830791041255,0.16084170341492,0.053840763866901],[0.095888875424862,0.057203687727451,-0.077354416251183],[0.065469786524773,0.078183948993683,-0.046158574521542]],[[-0.07286811619997,-0.060715239495039,-0.098955392837524],[-0.051192354410887,-0.01381275895983,-0.061236385256052],[-0.0050148977898061,0.066913522779942,0.02903844229877]],[[-0.10977853089571,0.0033673366997391,0.047960694879293],[0.16576819121838,0.028172424063087,0.036955039948225],[-0.0041710915975273,-0.15541844069958,0.012422185391188]],[[-0.034938756376505,-0.011804143898189,-0.0053806160576642],[0.014372351579368,-0.018669784069061,-0.0065923957154155],[-0.052980303764343,-0.015532873570919,0.094496235251427]],[[-0.050530359148979,-0.020791843533516,0.092987731099129],[0.00049829372437671,-0.10771985352039,-0.023423591628671],[0.085452541708946,-0.025206005200744,-0.093183949589729]],[[0.078320130705833,-0.037016969174147,0.0063641658052802],[0.085069693624973,-0.038185048848391,0.0090358462184668],[0.085584565997124,0.071734212338924,0.055113982409239]],[[-0.0066597424447536,-0.16964286565781,-0.041325569152832],[0.0030599432066083,-0.14811639487743,0.054228659719229],[-0.049122530966997,-0.038367066532373,0.10735016316175]],[[0.1258909702301,0.072496734559536,0.0041130129247904],[-0.055038902908564,-0.1019348949194,-0.089453607797623],[0.042669400572777,-0.034237690269947,-0.070229135453701]],[[0.11920081824064,-0.044762521982193,0.00185479701031],[0.019537666812539,0.049500931054354,0.050732862204313],[0.045036368072033,0.037628147751093,-0.14183799922466]],[[-0.169348269701,-0.0035928578581661,0.041303217411041],[-0.02890007942915,-0.10682836174965,0.034871447831392],[0.061525359749794,0.052464760839939,0.098887331783772]],[[-0.082311600446701,-0.03264169767499,-0.06165024638176],[-0.1473745405674,-0.0043199444189668,0.09644404053688],[-0.0041288123466074,-0.077980652451515,0.052889864891768]],[[-0.089603677392006,-0.071315139532089,0.022610591724515],[-0.1043249592185,-0.035219345241785,0.034398898482323],[0.039102226495743,0.030360197648406,-0.0837227627635]],[[0.044741008430719,0.087378293275833,0.14717595279217],[0.1050014346838,0.053332671523094,-0.037096504122019],[-0.052438318729401,-0.057481076568365,0.064685940742493]],[[0.13305470347404,0.085021533071995,0.082488149404526],[0.16609480977058,0.03711948171258,-0.037721488624811],[0.19563767313957,-0.122313760221,-0.1824925839901]],[[0.079466626048088,0.068121574819088,-0.087541066110134],[0.060917437076569,-0.0037631348241121,-0.077364042401314],[-0.0005803860258311,0.051262009888887,-0.017558792605996]]],[[[0.037788942456245,-0.019128164276481,0.077627286314964],[-0.052725538611412,-0.072321817278862,0.088817305862904],[-0.12790602445602,-0.031457055360079,-0.085218913853168]],[[0.064833179116249,0.010868574492633,-0.122508443892],[-0.02148661762476,0.0037977232132107,0.060068424791098],[0.05410772934556,-0.03667613491416,-0.14708870649338]],[[0.070302970707417,0.013435860164464,-0.085232794284821],[-0.1626335978508,-0.013951851986349,-0.070619374513626],[-0.019589642062783,-0.1109524667263,-0.0045619276352227]],[[-0.16245172917843,-0.033118378371,0.034977193921804],[0.054845985025167,-0.0460797958076,-0.10364828258753],[-0.11708350479603,0.020850297063589,-0.0095567395910621]],[[-0.15492303669453,-0.014900607056916,-0.056502036750317],[-0.068318843841553,0.11518397182226,-0.047598332166672],[0.020759094506502,0.095115385949612,0.10813608765602]],[[-0.10819397121668,-0.033597871661186,-0.051589287817478],[0.036227863281965,0.10439591109753,-0.065949164330959],[-0.030666289851069,0.023228086531162,-0.12226669490337]],[[-0.06328521668911,-0.12589910626411,-0.31131955981255],[0.09166107326746,0.027898665517569,0.094106465578079],[-0.038342863321304,0.02507833763957,0.027142135426402]],[[-0.059089034795761,-0.098411977291107,-0.0010609222808853],[0.060111913830042,0.012987602502108,0.14854909479618],[-0.017967661842704,-0.0043219216167927,0.025217965245247]],[[-0.10248009860516,-0.03223329782486,-0.057612150907516],[-0.015009204857051,0.13240480422974,0.036914680153131],[0.048842508345842,-0.061926420778036,-0.013744085095823]],[[0.023991474881768,-0.043893329799175,0.0158587154001],[-0.029471695423126,-0.070928730070591,-0.22208274900913],[-0.10702028870583,-0.0083692688494921,0.12264746427536]],[[-0.068003073334694,-0.16344822943211,0.11252328753471],[-0.095882467925549,-0.093016773462296,0.040571119636297],[-0.11956335604191,0.07993008941412,-0.110116943717]],[[-0.048210900276899,-0.081134006381035,-0.070777036249638],[0.078456610441208,0.054193515330553,-0.10597588866949],[0.008741507306695,0.019292073324323,-0.009079035371542]],[[-0.0084003238007426,-0.0022622907999903,-0.010916344821453],[-0.053312230855227,0.05534802377224,-0.016966098919511],[0.057526145130396,-0.13412752747536,0.011908266693354]],[[-0.036677874624729,-0.07452105730772,-0.047134436666965],[-0.012665850110352,-0.013327389024198,0.11705167591572],[-0.007725443225354,-0.012604771181941,0.21750836074352]],[[-0.034305848181248,-0.032804556190968,-0.14082466065884],[-0.16858057677746,-0.1260791271925,-0.1289439946413],[-0.0045393467880785,-0.056777596473694,-0.087743699550629]],[[0.05433576926589,0.088745974004269,-0.14850515127182],[0.073173031210899,-0.10638751089573,-0.078284844756126],[0.012641036882997,0.038460366427898,0.050049435347319]],[[-0.094550274312496,-0.13204538822174,0.10200245678425],[0.0074166529811919,-0.0041537703946233,-0.11774502694607],[0.045170426368713,0.030311768874526,0.0078091463074088]],[[-0.072715893387794,-0.1322468817234,0.18925434350967],[-0.088786959648132,0.14059561491013,0.010122408159077],[-0.049760356545448,0.0088235298171639,0.10775377601385]],[[0.0097351726144552,-0.027908105403185,0.10101467370987],[-0.10068441927433,0.056363832205534,0.12254924327135],[0.082074716687202,-0.048685468733311,-0.043852161616087]],[[-0.054449688643217,0.057585746049881,0.1293902695179],[-0.019728060811758,-0.0045967134647071,-0.16797019541264],[0.0079087698832154,0.049927432090044,0.05858987569809]],[[0.033929023891687,0.055679474025965,-0.018707066774368],[-0.023216482251883,-0.043420381844044,0.030883138999343],[-0.028859937563539,-0.057002708315849,0.072437293827534]],[[-0.0077256066724658,-0.094377785921097,-0.047392431646585],[0.00076328753493726,-0.051783490926027,0.052718885242939],[-0.018589956685901,0.0043396418914199,0.05372640863061]],[[-0.11778601258993,0.085205569863319,-0.00098181888461113],[-0.15981993079185,-0.055213555693626,-0.071579173207283],[0.0023523808922619,-0.10625918209553,-0.026477951556444]],[[-0.020214665681124,0.095467910170555,0.10086983442307],[-0.017321599647403,0.11058975756168,0.30026262998581],[0.046406462788582,-0.068245217204094,-0.19203461706638]],[[0.016513736918569,0.086261801421642,0.29477244615555],[0.12822200357914,-0.12508027255535,-0.022571230307221],[0.029880655929446,0.011870480142534,0.078197054564953]],[[0.028537495061755,0.06272629648447,0.062869191169739],[0.0027092800009996,-0.037197697907686,-0.035572409629822],[-0.061817973852158,-0.07424721121788,0.011301071383059]],[[-0.051020581275225,-0.077269904315472,0.2137094438076],[-0.068261124193668,-0.1929052323103,-0.0015661054058],[-0.095234468579292,-0.11172723770142,-0.016667988151312]],[[0.2270702123642,-0.0070386719889939,0.20821945369244],[-0.16724888980389,-0.19969637691975,-0.20706285536289],[0.10028152912855,0.05258259922266,0.04273596778512]],[[0.0095459390431643,-0.16563326120377,0.061328951269388],[-0.02334295772016,-0.21738432347775,-0.034651957452297],[0.091570280492306,-0.00078932923497632,-0.025086659938097]],[[0.095556922256947,-0.17804013192654,-0.1371748149395],[-0.001633414067328,0.094227060675621,-0.057222213596106],[0.0046064988709986,0.021117897704244,-0.048819936811924]],[[-0.0048206700012088,0.097174242138863,0.061187978833914],[0.051622096449137,0.10777388513088,0.074739955365658],[-0.00087329186499119,-0.015800848603249,0.0062075508758426]],[[0.16236202418804,0.038545086979866,0.057204496115446],[0.03164054453373,-0.060650929808617,-0.0097359111532569],[0.080428950488567,0.14310602843761,0.091062918305397]],[[-0.014973811805248,0.0091389892622828,0.059919584542513],[-0.036518361419439,-0.10337967425585,-0.12800513207912],[0.0612040348351,-0.0079993875697255,-0.030249504372478]],[[-0.019805066287518,-0.0055517293512821,0.10626233369112],[0.0077482787892222,-0.0071696732193232,0.0080814259126782],[0.076472140848637,-0.059358276426792,0.068329162895679]],[[-0.089916206896305,-0.078954339027405,-0.13373383879662],[0.12556603550911,0.098992623388767,-0.079931624233723],[-0.050082918256521,-0.081662684679031,0.051732160151005]],[[-0.11699153482914,-0.011874630115926,0.009028896689415],[0.021963967010379,0.04757022485137,0.035803470760584],[0.057143606245518,0.098725840449333,0.10988453030586]],[[-0.13555589318275,0.094306334853172,-0.042035389691591],[0.064956806600094,-0.034759808331728,-0.068372845649719],[-0.16569621860981,-0.12183452397585,0.096656270325184]],[[-0.090121053159237,-0.025678236037493,-0.13051201403141],[0.015948861837387,-0.026619136333466,0.047337267547846],[-0.064913846552372,0.051723036915064,-0.16346091032028]],[[-0.037140838801861,-0.10854896903038,0.059284500777721],[-0.04797151312232,0.063377164304256,-0.03231854736805],[-0.010294433683157,-0.016276312991977,0.067650772631168]],[[0.038176890462637,0.076825045049191,-0.12689743936062],[0.068564288318157,-0.087072297930717,-0.0084039680659771],[-0.01617737300694,-0.040623158216476,0.056721094995737]],[[0.085824683308601,-0.062848657369614,0.1331824362278],[0.013300002552569,0.033983338624239,-0.12502135336399],[0.013659616932273,0.063966937363148,-0.026558263227344]],[[0.0015360180987045,-0.042877696454525,-0.11169611662626],[0.055749423801899,-0.087731882929802,-0.13533802330494],[-0.062228608876467,0.031058348715305,-0.018528018146753]],[[0.032949447631836,0.014222584664822,-0.039172779768705],[-0.033777754753828,-0.15898807346821,-0.10829176753759],[0.010575058870018,0.0035320266615599,0.080560341477394]],[[-0.1085969209671,0.019544428214431,-0.083565168082714],[0.0054192831739783,-0.13343273103237,-0.022195110097528],[-0.010735172778368,0.11057033389807,0.02794692479074]],[[0.16744844615459,0.06586566567421,-0.0031511695124209],[0.17220863699913,0.04033062979579,-0.014590761624277],[0.095651514828205,0.096554324030876,0.052586775273085]],[[0.034142792224884,-0.0500648021698,-0.0044279200956225],[-0.05140021443367,0.14076225459576,-0.10910861939192],[0.093219764530659,0.0385432690382,-0.084012612700462]],[[-0.086120061576366,-0.092780888080597,0.10470406711102],[-0.017176119610667,0.03378726914525,-0.0357785820961],[-0.049309235066175,0.0038321479223669,-0.053107541054487]],[[0.028185501694679,-0.074251227080822,0.025101777166128],[0.060284443199635,0.011699352413416,-0.10882237553596],[0.0055953841656446,0.0074573461897671,-0.18510463833809]],[[-0.018396459519863,-0.042004656046629,-0.12868508696556],[0.02215413376689,0.027521641924977,0.030980402603745],[-0.064596742391586,0.053626351058483,0.17242205142975]],[[-0.13421547412872,-0.11341080069542,-0.084307000041008],[0.071919456124306,-0.022348005324602,0.07328812032938],[0.14389701187611,0.23764029145241,0.039573185145855]],[[-0.0066594574600458,0.023826377466321,-0.13062888383865],[0.063868306577206,-0.055594380944967,0.084370769560337],[0.13320410251617,0.030416069552302,-0.0797273889184]],[[0.045939702540636,-0.0039693717844784,-0.070082150399685],[0.018417110666633,0.051002345979214,-0.054097827523947],[0.17696990072727,0.054776392877102,0.072544150054455]],[[-0.023377845063806,0.0099416440352798,0.16496695578098],[-0.023549059405923,-0.11465383321047,-0.060525547713041],[0.042450249195099,-0.09014455229044,0.0130475750193]],[[-0.0040894891135395,-0.062746033072472,-0.19093528389931],[0.04189595580101,-0.081456005573273,-0.12309101969004],[0.045873980969191,0.0062723937444389,-0.027292484417558]],[[-0.024360045790672,-0.043855477124453,0.11677933484316],[-0.081341907382011,-0.013428238220513,-0.10383982211351],[0.075996421277523,0.10898965597153,0.082690611481667]],[[-0.02613440901041,0.12932477891445,0.20401972532272],[-0.018423354253173,0.032776657491922,0.019582275301218],[0.0087224161252379,0.064532436430454,0.17535628378391]],[[0.011943924240768,-0.076607622206211,0.036232966929674],[-0.00076480954885483,-0.050341598689556,-0.075366176664829],[-0.057542134076357,-0.031750559806824,-0.032432645559311]],[[0.032807428389788,-0.11820997297764,0.023160640150309],[0.0073430114425719,0.045395821332932,0.023424845188856],[-0.030986638739705,-0.0042634196579456,-0.043772775679827]],[[0.049984805285931,0.099801890552044,0.07873510569334],[0.037338260561228,-0.014055703766644,-0.012055608443916],[-0.052781477570534,0.020666936412454,0.031611070036888]],[[0.056490365415812,0.05499904602766,0.034589748829603],[0.11546888947487,0.0070713651366532,-0.032748766243458],[0.069495879113674,-0.036035422235727,-0.23434074223042]],[[0.10881878435612,-0.098322324454784,-0.10916323959827],[0.0082398587837815,-0.12746441364288,-0.027604028582573],[0.078283227980137,0.053801313042641,0.042993750423193]],[[0.12942877411842,-0.17492339015007,-0.19508171081543],[0.10885597020388,-0.069390222430229,-0.078693464398384],[0.12887299060822,0.01273875311017,-0.15325447916985]],[[0.047070041298866,0.097521610558033,0.030215611681342],[0.015670442953706,0.03490811958909,-0.024080915376544],[-0.059219367802143,-0.18824081122875,-0.16712857782841]],[[-0.051719896495342,-0.14785207808018,0.039509750902653],[0.010723635554314,0.046852551400661,-0.2662470638752],[0.17878676950932,-0.018071584403515,-0.19082197546959]]],[[[0.0041589625179768,-0.041151281446218,-0.12624143064022],[-0.00022781699954066,-0.039726067334414,-0.06027190387249],[-0.039135988801718,0.050032638013363,0.0029809738043696]],[[-0.051579989492893,-0.074064120650291,-0.13049876689911],[0.0044049653224647,0.10565750300884,0.022076221182942],[-0.032634370028973,0.0052587050013244,-0.045326631516218]],[[0.071219116449356,-0.031432382762432,-0.044252723455429],[0.040857303887606,-0.074311286211014,0.073916792869568],[-0.098840959370136,-0.043192006647587,-0.048646278679371]],[[-0.0011277984594926,0.0054040597751737,-0.068577766418457],[-0.043146781623363,0.086174108088017,0.010421668179333],[0.025925669819117,-0.060969300568104,-0.044198583811522]],[[-0.18146066367626,-0.083824835717678,-0.096088275313377],[-0.099238328635693,0.14632391929626,0.029670430347323],[0.057882957160473,-0.099693939089775,-0.15210881829262]],[[-0.024670260027051,-0.14993870258331,-0.15286813676357],[-0.049558266997337,-0.0080995885655284,0.081915885210037],[-0.0036969538778067,-0.031013676896691,0.06908256560564]],[[-0.048691999167204,0.010569100268185,-0.05547121539712],[0.027709156274796,-0.082558393478394,0.00065324234310538],[0.032935850322247,0.068300731480122,0.25436213612556]],[[-0.038833230733871,-0.012102794833481,-0.078358754515648],[-0.0028832692187279,0.08720650523901,-0.10901526361704],[0.053217209875584,0.064937897026539,0.023370569571853]],[[-0.025439109653234,-0.095280274748802,-0.13741359114647],[-0.055239994078875,-0.020543597638607,-0.01059499848634],[-0.0090074595063925,0.11152277886868,-0.0042298343032598]],[[-0.047556266188622,-0.023327838629484,0.080700181424618],[-0.0091214645653963,0.090166464447975,0.04984563216567],[0.011484587565064,-0.09350311756134,-0.015869399532676]],[[-0.12878865003586,-0.0043451609089971,-0.0035779022146016],[-0.034174125641584,0.028966752812266,-0.0038674452807754],[-0.13297639787197,-0.12025869637728,0.060678727924824]],[[0.068725526332855,0.068850979208946,-0.0095563046634197],[0.006978144403547,-0.11150431632996,0.0048313261941075],[0.11330337822437,0.012450105510652,-0.027917662635446]],[[-0.039548888802528,-0.04107815772295,-0.028503898531199],[0.06747630238533,-0.07786650210619,-0.077236451208591],[-0.04748322814703,-0.010055772960186,0.10193312913179]],[[-0.06210245937109,0.070801720023155,-0.027817036956549],[0.012717075645924,0.087587378919125,-0.0877286195755],[0.20332644879818,-0.10571890324354,0.12519130110741]],[[-0.13196802139282,-0.020978922024369,-0.14508245885372],[-0.05205349624157,-0.045125611126423,0.011826530098915],[0.078985616564751,-0.082665756344795,-0.027386048808694]],[[0.11303438991308,-0.059637159109116,0.13840089738369],[-0.036606442183256,-0.061894476413727,0.21279527246952],[0.036868989467621,0.033327296376228,0.14132623374462]],[[-0.17011150717735,-0.15991117060184,-0.20465993881226],[-0.011989315971732,0.050070811063051,0.084977604448795],[0.017048230394721,0.13533711433411,0.15625114738941]],[[0.041839860379696,-0.013547340407968,-0.019338196143508],[-0.12599696218967,0.050314545631409,0.073228918015957],[-0.09915566444397,-0.075784891843796,-0.034092877060175]],[[-0.079451575875282,0.00067499518627301,-0.039098545908928],[-0.021557126194239,0.03098419867456,-0.0095621515065432],[-0.068217389285564,0.054918356239796,0.016745729371905]],[[0.10209810733795,-0.085167020559311,0.024984301999211],[0.069461077451706,0.0015340078389272,-0.077507577836514],[0.043974228203297,-0.068079426884651,0.024931393563747]],[[0.061687685549259,0.088870689272881,0.015620811842382],[-0.016508152708411,-0.021899046376348,-0.056398961693048],[0.045583974570036,-0.0038176386151463,-0.026562727987766]],[[-0.083963267505169,0.016656411811709,-0.033860396593809],[-0.047376673668623,0.042672995477915,0.024956835433841],[-0.025152731686831,0.020529625937343,-0.11280906200409]],[[0.0016968796262518,-0.055872671306133,0.17735207080841],[-0.050382632762194,0.044821444898844,-0.0049370843917131],[-0.020596627146006,0.024848803877831,0.15355953574181]],[[0.043787736445665,-0.060409612953663,-0.15170189738274],[0.032975122332573,-0.063412673771381,0.034853242337704],[-0.089016042649746,0.068851239979267,0.16725547611713]],[[0.062863998115063,0.037540100514889,-0.032551389187574],[-0.085366897284985,0.0075593371875584,-0.051397267729044],[-0.077527865767479,-0.0058449171483517,-0.017590148374438]],[[-0.043748810887337,0.014529761858284,-0.034289125353098],[0.063240103423595,-0.093084268271923,0.034202747046947],[0.074269019067287,0.013445118442178,-0.033792350441217]],[[0.1781919747591,-0.077896654605865,-0.02583846822381],[-0.0011508677853271,0.042813859879971,0.052901111543179],[-0.085683092474937,-0.13651755452156,-0.13723990321159]],[[-0.088890835642815,0.061297107487917,-0.011365342885256],[-0.053096357733011,-0.078191690146923,-0.015872661024332],[0.030397213995457,0.033424258232117,0.073541350662708]],[[-0.096828691661358,-0.0021914162207395,-0.10615029931068],[0.029966711997986,-0.01047289185226,0.073407873511314],[-0.14590790867805,0.050493489950895,0.037565916776657]],[[-0.039566319435835,-0.027529619634151,0.056294318288565],[0.0070798071101308,0.03150612488389,0.0091258846223354],[0.034705061465502,-0.036425992846489,0.056149341166019]],[[-0.1235105022788,-0.078359812498093,-0.11493508517742],[0.096661023795605,-0.062264516949654,0.020933436229825],[-0.11332677304745,-0.035178579390049,0.063696637749672]],[[-0.048492673784494,0.046484764665365,0.026239665225148],[0.070956617593765,0.024464290589094,0.030345009639859],[0.033687043935061,0.026607332751155,0.01866577193141]],[[-0.016170300543308,0.044116731733084,-0.060743946582079],[0.036639574915171,-0.027596317231655,0.17263287305832],[-0.14003530144691,-0.029344029724598,-0.17128708958626]],[[-0.11939382553101,-0.15146499872208,-0.072683319449425],[-0.03289882093668,0.05546522885561,0.12462133169174],[-0.11544093489647,3.8158064853633e-05,-0.050302244722843]],[[0.17195981740952,0.052709214389324,-0.0017920956015587],[-0.067682281136513,0.074551731348038,0.0035225905012339],[0.015656210482121,0.067981988191605,0.056490898132324]],[[0.047303970903158,0.14959545433521,0.083318404853344],[0.1142629981041,0.1264635771513,0.050108417868614],[0.052702199667692,-0.048407152295113,0.046434432268143]],[[0.15208095312119,-0.06373780220747,-0.11778615415096],[-0.10695681720972,0.098709166049957,0.017273845151067],[-0.049676906317472,0.0084000024944544,0.11707764863968]],[[0.17513318359852,-0.016039503738284,0.015312315896153],[0.0063968091271818,0.028800925239921,-0.10851304978132],[-0.087001316249371,-0.11086919903755,-0.0027552377432585]],[[-0.014318470843136,-0.017126938328147,-0.039853174239397],[-0.048761807382107,-0.038465965539217,0.013655734248459],[-0.063151873648167,0.10109703987837,-0.074734158813953]],[[0.13914188742638,0.072264172136784,-0.011171691119671],[0.07104267925024,-0.064384087920189,-0.057766154408455],[0.21985553205013,0.065923891961575,0.028489075601101]],[[0.0044935313053429,-0.14518530666828,-0.016735902056098],[0.051504202187061,-0.012840973213315,0.013334359042346],[0.069740533828735,0.06028925254941,0.066772051155567]],[[0.0272705424577,-0.018781324848533,-0.11143030226231],[0.023453494533896,-0.011148380115628,-0.10189665853977],[0.073250122368336,0.024554679170251,0.18800362944603]],[[0.13450489938259,0.032574709504843,0.11713891476393],[-0.090166978538036,0.014715800061822,-0.23680560290813],[-0.094212986528873,-0.18276700377464,0.19709461927414]],[[0.015977036207914,-0.010091068223119,0.025715693831444],[-0.047676630318165,-0.10147112607956,0.086305692791939],[0.13479933142662,-0.048108417540789,0.028028329834342]],[[-0.063422098755836,-0.070227444171906,0.052293471992016],[0.014792764559388,0.016883086413145,0.052117746323347],[-0.093130275607109,-0.028416691347957,0.046947203576565]],[[0.017168516293168,-0.072280295193195,-0.034281216561794],[0.063106536865234,-0.01934820972383,0.14727610349655],[-0.088671147823334,0.10060984641314,-0.036721467971802]],[[-0.058119118213654,0.0036871444899589,-0.054149374365807],[-0.014872125349939,0.029508989304304,-0.010375226847827],[-0.031998429447412,-0.070394434034824,-0.075569719076157]],[[0.063684649765491,-0.069241054356098,-0.044909838587046],[-0.035029496997595,-0.12856082618237,0.0008940264233388],[0.052792072296143,0.070121116936207,-0.088296085596085]],[[0.067395530641079,-0.060650881379843,-0.0052106943912804],[0.02428394369781,-0.021553765982389,0.016303015872836],[0.0055257482454181,-0.061356589198112,0.058226015418768]],[[0.20930708944798,0.12374496459961,0.048009347170591],[0.044979505240917,0.0060726315714419,-0.0068340827710927],[-0.073394536972046,0.02155145816505,0.16220600903034]],[[0.036801420152187,0.12940645217896,-0.093465529382229],[0.032067500054836,0.13494220376015,0.14806754887104],[0.11410917341709,-0.078368179500103,-0.10918156802654]],[[0.11623681336641,-0.16514013707638,-0.085008203983307],[0.046647451817989,0.039605371654034,0.064260102808475],[0.032487504184246,-0.05044861882925,0.046426273882389]],[[0.11137298494577,0.064778722822666,0.079973563551903],[0.085346534848213,-0.10014034807682,-0.0062419334426522],[-0.041370283812284,-0.061381544917822,-0.10023977607489]],[[0.071984149515629,-0.026850795373321,-0.15967942774296],[-0.098478898406029,-0.084625117480755,0.015762440860271],[-0.032270740717649,-0.012102686800063,0.038990668952465]],[[0.047249060124159,-0.086012184619904,-0.078639544546604],[0.060639102011919,0.13584035634995,0.015482513234019],[-0.08286839723587,-0.013864532113075,-0.018938081339002]],[[0.078738376498222,-0.080121919512749,0.051318731158972],[-0.034698326140642,-0.029586244374514,-0.0054303831420839],[0.025603506714106,-0.041986152529716,0.010241923853755]],[[-0.015564169734716,-0.04389363527298,0.023874785751104],[-0.0011624373728409,0.033014848828316,-0.026203347370028],[-0.08587934076786,-0.090728729963303,0.098576083779335]],[[0.039162416011095,-0.074237249791622,0.069253236055374],[0.08746812492609,0.058581106364727,-0.001254728063941],[0.024806752800941,0.011475562117994,-0.0056508295238018]],[[0.076786018908024,0.09340476244688,0.079567924141884],[0.17159001529217,0.18614669144154,0.18179358541965],[0.025663234293461,0.023285424336791,0.11638028174639]],[[0.040954191237688,0.047367032617331,-0.071088992059231],[-0.14483426511288,-0.088150233030319,0.083425171673298],[-0.081790588796139,-0.038057092577219,-0.055401060730219]],[[0.082171641290188,-0.03918706253171,-0.12513598799706],[-0.028412925079465,0.0026242283638567,0.040507439523935],[0.080903865396976,-0.040083382278681,0.100671261549]],[[0.096525862812996,0.039048552513123,0.1257408708334],[-0.011735465377569,-0.044509902596474,-0.11454627662897],[-0.012123297899961,0.094846166670322,0.083177030086517]],[[-0.051037918776274,-0.0075680618174374,-0.06213590502739],[-0.11844162642956,-0.11098575592041,-0.050827875733376],[0.11400627344847,0.080061629414558,0.2126444876194]],[[-0.11253505200148,-0.083647258579731,-0.013841957785189],[-0.0091540962457657,0.031479004770517,0.047544792294502],[-0.11330675333738,-0.088064938783646,-0.10010417550802]]],[[[-0.067772135138512,-0.0070362095721066,0.015596445649862],[0.031748671084642,0.067747987806797,-0.028052074834704],[0.042833495885134,-0.033299162983894,0.086458474397659]],[[-0.043924238532782,0.11978985369205,0.082331337034702],[-0.025668475776911,0.048115354031324,0.13109163939953],[0.048249628394842,-0.029548158869147,-0.017120122909546]],[[-0.028141872957349,0.018941415473819,0.012031703256071],[-0.0072182430885732,0.019652361050248,-0.080708868801594],[-0.073451675474644,-0.042808052152395,0.036898288875818]],[[0.091056987643242,-0.01079885661602,0.036198057234287],[-0.010890882462263,0.028280466794968,-0.094908207654953],[0.02950394898653,-0.084770657122135,-0.036357454955578]],[[-0.083377383649349,-0.0098556019365788,-0.026464534923434],[0.13208608329296,0.01819484680891,0.048367772251368],[0.061142738908529,-0.091921925544739,-0.016404276713729]],[[-0.020977890118957,-0.086776912212372,-0.0043440563604236],[-0.053525306284428,0.0045286840759218,0.11101542413235],[0.047725792974234,0.061671674251556,-0.028683207929134]],[[0.022288013249636,-0.020138883963227,0.012722047977149],[0.035970211029053,-0.0081393523141742,-0.062920182943344],[0.11969713121653,0.10344682633877,0.039806719869375]],[[-0.10617818683386,-0.08151800185442,-0.020728439092636],[-0.0036763239186257,0.029690343886614,0.0096526378765702],[0.020474832504988,-0.08192053437233,-0.052214376628399]],[[0.049273930490017,-0.022148562595248,-0.11576148122549],[0.058317326009274,-7.0222173235379e-05,0.092626832425594],[-0.011559467762709,0.082761682569981,0.067736946046352]],[[-0.096621461212635,-0.08929205685854,-0.024938132613897],[0.038152184337378,0.0085721965879202,-0.12814359366894],[-0.067164398729801,0.065196104347706,-0.078933008015156]],[[-0.038295768201351,0.0095393368974328,-0.10267913341522],[-0.0055157137103379,0.015175884589553,-0.0048421593382955],[-0.050739493221045,-0.076633378863335,0.038276016712189]],[[0.069298885762691,-0.10870216041803,-0.055724505335093],[0.052271593362093,-0.054458864033222,0.11661867797375],[-0.016414240002632,0.01719792932272,-0.11771290749311]],[[0.010184672661126,0.16784527897835,-0.002009702147916],[0.02276518009603,0.070700921118259,-0.012700218707323],[-0.017812121659517,-0.021355083212256,-0.0052838590927422]],[[-0.078002363443375,-0.13122978806496,-0.052477937191725],[0.11151493340731,0.009504321962595,0.026783542707562],[0.067730166018009,-0.072887405753136,-0.092804066836834]],[[0.080633945763111,-0.095777809619904,0.050048030912876],[-0.03579768538475,-0.016053345054388,0.022816266864538],[-0.18801607191563,-0.061395321041346,0.17492501437664]],[[0.13464260101318,-0.11616741120815,-0.058061596006155],[-0.033347237855196,0.16366603970528,0.067372389137745],[-0.01883596368134,0.036242671310902,-0.084066532552242]],[[-0.049570921808481,0.010807316750288,-0.089333862066269],[-0.0091741075739264,0.07833431661129,0.035901613533497],[-0.065213397145271,0.068584591150284,0.0036176489666104]],[[0.039562962949276,-0.024871177971363,0.059668090194464],[0.031386088579893,-0.032316226512194,-0.027005614712834],[-0.047969646751881,0.043061308562756,0.062110479921103]],[[-0.12447187304497,-0.023110477253795,0.042250618338585],[0.13974438607693,0.051272045820951,-0.11412580311298],[0.026997212320566,-0.098468482494354,-0.053274475038052]],[[0.038037531077862,-0.052017856389284,-0.0035504945553839],[-0.056952450424433,-0.017250802367926,0.10868386924267],[-0.14520923793316,-0.023347167298198,0.070461355149746]],[[0.01367365848273,-0.0048603201285005,0.16311982274055],[0.031149430200458,-0.021989120170474,0.036287765949965],[0.036303803324699,-0.098405733704567,0.052028197795153]],[[-0.049089066684246,-0.066708922386169,0.014053063467145],[0.002391587710008,-0.066959597170353,-0.040060233324766],[0.021838020533323,-0.0010396501747891,-0.068256624042988]],[[-0.026195477694273,0.12580972909927,0.089010760188103],[-0.053016904741526,0.051756605505943,0.058267645537853],[-0.029336059466004,-0.078854769468307,-0.027659177780151]],[[0.0057056904770434,-0.013897034339607,-0.096565216779709],[0.078685238957405,-0.20371131598949,-0.18591797351837],[0.092730835080147,-0.085087053477764,-0.026992248371243]],[[-0.11968383938074,0.015069974586368,0.081798247992992],[-0.032624322921038,-0.080904997885227,0.055654913187027],[0.088485114276409,0.17060948908329,0.085649877786636]],[[-0.045666642487049,-0.058668185025454,-0.037064831703901],[-0.037323690950871,0.053358998149633,0.090684317052364],[0.031016895547509,0.025548363104463,0.064522869884968]],[[-0.042392201721668,0.097903616726398,-0.12246868014336],[0.05549617856741,-0.061617944389582,0.11957988142967],[-0.12350510805845,-0.04727965220809,-0.034532126039267]],[[0.060280062258244,0.17502769827843,0.16548290848732],[-0.072299510240555,0.077221013605595,-0.010515215806663],[0.080322869122028,0.011022355407476,-0.0098537756130099]],[[-0.099304422736168,-0.13913626968861,0.0032360677141696],[-0.026934372261167,-0.051437824964523,0.090273104608059],[0.11436668038368,-0.024755569174886,-0.032229296863079]],[[0.065056227147579,0.076617360115051,-0.120745241642],[-0.01909414678812,0.044032003730536,0.071546673774719],[-0.086193561553955,-0.13800229132175,-0.066920027136803]],[[-0.019088070839643,0.033563934266567,0.017107049003243],[-0.14617289602757,0.07095480710268,0.1588277220726],[-0.013630528002977,-0.0099022230133414,0.12669929862022]],[[-0.016350904479623,-0.030738916248083,-0.086696937680244],[0.15259894728661,0.1463129222393,0.14768947660923],[0.10411694645882,-0.058456514030695,0.085305258631706]],[[-0.17398877441883,-0.16688974201679,-0.13993462920189],[0.004007977899164,0.051183335483074,0.081725299358368],[-0.10420132428408,0.027211530134082,0.065602764487267]],[[0.019609561190009,0.085755847394466,-0.23719356954098],[-0.021410580724478,0.028551558032632,-0.064324840903282],[0.0063072289340198,-0.026621019467711,0.039180222898722]],[[0.050946809351444,-0.001532323891297,-0.0516572073102],[0.068721920251846,0.051138374954462,-0.0038020117208362],[0.13534200191498,0.078902088105679,-0.18574701249599]],[[0.073565758764744,0.056384027004242,0.14216750860214],[0.010293319821358,0.025738745927811,0.050239834934473],[0.05312367528677,0.037966653704643,0.028985718265176]],[[0.24148543179035,0.073862567543983,0.012501934543252],[-0.0064631514251232,-0.024696510285139,-0.014034776948392],[-0.079836040735245,0.068480186164379,0.10514018684626]],[[0.024808388203382,-0.014342489652336,-0.002371106762439],[0.059106133878231,-0.047319944947958,0.049870051443577],[-0.066059373319149,0.010842887684703,-0.12159699201584]],[[-0.10781359672546,0.0055846525356174,0.13139264285564],[-0.022083058953285,-0.084138177335262,0.013471852056682],[-0.09794744849205,-0.077196806669235,-0.079068839550018]],[[-0.018548082560301,-0.056855946779251,-0.12896046042442],[0.086255691945553,0.023918403312564,-0.1245059967041],[0.11302433162928,0.048789832741022,-0.045564316213131]],[[0.050996646285057,0.10876269638538,0.04467635974288],[0.11459241062403,0.042480759322643,0.087722904980183],[0.15139345824718,0.021648721769452,-0.048711486160755]],[[0.011818451806903,-0.056134477257729,0.0086936382576823],[-0.05235855281353,0.029224121943116,-0.082215435802937],[0.13113136589527,0.036239769309759,-0.034131053835154]],[[0.035763438791037,-0.071840412914753,0.095937483012676],[0.04540029540658,0.15462371706963,0.077363304793835],[0.10547910630703,0.01047115214169,0.12034449726343]],[[0.13759726285934,0.097451232373714,0.18278406560421],[0.013454025611281,-0.053543511778116,-0.051856450736523],[-0.0063775735907257,-0.01506479550153,0.0076868436299264]],[[0.098640397191048,-0.053526718169451,0.027167918160558],[0.015742387622595,-0.011089055798948,-0.087632738053799],[-0.015387098304927,-0.072105452418327,0.038396455347538]],[[-0.06267387419939,0.035596631467342,-0.04546645283699],[0.05859050154686,0.14326301217079,0.051216240972281],[-0.087748728692532,0.039581276476383,0.016374595463276]],[[0.10662762075663,-0.077940091490746,0.072221271693707],[-0.1238876581192,-0.091785900294781,0.054228033870459],[-0.084415383636951,-0.058006640523672,-0.0078431665897369]],[[-0.12536297738552,-0.12506924569607,-0.069838628172874],[0.010844198055565,0.027855545282364,-0.072576142847538],[0.05059665068984,0.0061338571831584,0.024486266076565]],[[0.023465614765882,-0.048905596137047,0.028499005362391],[-0.040290031582117,0.048382773995399,0.03871238604188],[-0.083970122039318,-0.21635968983173,0.13950544595718]],[[-0.17269363999367,-0.11667374521494,0.10485433787107],[-0.1259263753891,-0.15061604976654,0.08016462624073],[-0.071819774806499,-0.07951994985342,-0.026635127142072]],[[0.12180856615305,0.021172057837248,-0.042941100895405],[-0.092329427599907,-0.044970136135817,0.092530094087124],[-0.13055899739265,0.031943764537573,-0.04329950734973]],[[-0.17054226994514,0.17265693843365,-0.17651060223579],[0.12587206065655,0.019394710659981,-0.040193147957325],[-0.071825563907623,-0.022068526595831,0.13470655679703]],[[0.04733382165432,-0.091130189597607,-0.02946138381958],[0.096938319504261,-0.004311163444072,0.010204247198999],[-0.017906937748194,0.10485206544399,0.019091621041298]],[[0.031373221427202,0.010067695751786,0.041475087404251],[0.050314947962761,0.090936481952667,-0.067296780645847],[-0.076739341020584,-0.034512892365456,0.055890660732985]],[[-0.056268993765116,-0.016550811007619,0.039168518036604],[-0.014141961932182,0.041402641683817,0.011414782144129],[-0.0041088350117207,-0.056363485753536,-0.26839643716812]],[[0.044129312038422,-0.010524293407798,0.087621785700321],[-0.025893265381455,-0.073862075805664,-0.069963201880455],[-0.01538348570466,-0.15597343444824,-0.0036104589235038]],[[0.17193435132504,0.024026907980442,0.10681279748678],[-0.028687937185168,-0.0027146125212312,-0.029838239774108],[0.14974084496498,-0.095135763287544,0.034123197197914]],[[-0.015058647841215,-0.089923307299614,-0.11177872121334],[-0.1610841602087,0.030313234776258,0.071206711232662],[0.039078112691641,-0.077519491314888,-0.10188744217157]],[[0.069479420781136,0.12922450900078,0.19630686938763],[0.028417527675629,0.039988487958908,0.10601896047592],[0.099977664649487,0.14925457537174,0.043164238333702]],[[0.02902527153492,-0.016438713297248,0.042438585311174],[0.04398063570261,-0.063384473323822,0.14586319029331],[0.032835390418768,-0.039644449949265,-0.0087927049025893]],[[0.030180653557181,0.043728400021791,-0.040854282677174],[0.025037912651896,-0.011207509785891,-0.0060372557491064],[-0.074122101068497,0.060940355062485,0.022284684702754]],[[-0.030347967520356,0.010865377262235,-0.042623601853848],[-0.071886293590069,-0.20979253947735,-0.091653384268284],[0.035925351083279,-0.17155480384827,-0.083428032696247]],[[-0.054342813789845,0.10847485810518,0.06105087697506],[-0.0043821474537253,-0.086702398955822,-0.098979607224464],[0.080264255404472,0.0021844538860023,0.10768492519855]],[[-0.036399442702532,-0.070024780929089,-0.0075065498240292],[-0.15359681844711,0.017152298241854,0.10487518459558],[-0.10982677340508,0.10223525762558,0.068516530096531]]],[[[-0.10120731592178,-0.14315159618855,-0.19679173827171],[0.039025723934174,0.033446546643972,-0.025737741962075],[0.1313684284687,0.032279565930367,-0.053913369774818]],[[0.032530698925257,0.033469099551439,-0.0018261098302901],[0.046678200364113,-0.01860710978508,-0.11197886615992],[0.011195475235581,0.0060353130102158,0.046713683754206]],[[0.06402462720871,0.062438391149044,0.016504229977727],[-0.016089625656605,-0.064470209181309,-0.11269011348486],[-0.051459386944771,-0.20960572361946,0.11991653591394]],[[0.035166122019291,0.032425709068775,0.039551950991154],[0.0090316822752357,0.11448461562395,-0.028143769130111],[-0.10310913622379,-0.01503858808428,-0.18364250659943]],[[-0.0042933654040098,0.083664372563362,0.042245775461197],[-0.1416223347187,0.055770233273506,0.093844778835773],[0.040865790098906,0.020460546016693,0.024016352370381]],[[0.058247555047274,-0.060500677675009,-0.11627166718245],[0.008667254820466,0.018880773335695,0.053224168717861],[0.034031998366117,0.14243856072426,-0.10869988054037]],[[-0.088324479758739,0.075401090085506,0.16166447103024],[-0.076678782701492,-0.080221712589264,-0.027863990515471],[0.0042302198708057,0.04888541996479,-0.037238802760839]],[[-0.00061525608180091,0.12307790666819,0.052814919501543],[-0.012054086662829,-0.00041114786290564,-0.14169771969318],[0.08914490044117,0.069660522043705,-0.13669018447399]],[[0.03090026602149,-0.0016162168467417,0.065412953495979],[0.091957919299603,0.083980351686478,0.036149017512798],[0.018030166625977,0.20202586054802,0.10372539609671]],[[-0.055084515362978,0.04398388415575,0.077030450105667],[-0.055304154753685,-0.0066856220364571,-0.11844832450151],[0.020198570564389,-0.0053729875944555,-0.043128315359354]],[[-0.10707815736532,-0.041176576167345,-0.16318616271019],[0.034892670810223,0.053548492491245,-0.11125789582729],[0.011992761865258,0.0856649056077,-0.22655233740807]],[[0.02493087016046,0.0088190296664834,0.0032292453106493],[0.013585931621492,0.0029966763686389,-0.19389982521534],[-0.03300715982914,0.077942371368408,-0.4659007191658]],[[-0.039883993566036,-0.1530014872551,-0.12989497184753],[0.07902218401432,-0.061115980148315,0.028936771675944],[0.084812305867672,0.05170239135623,0.049320559948683]],[[0.053482573479414,0.017119709402323,-0.110391497612],[0.035764072090387,-0.027270754799247,-0.078846134245396],[0.1700744330883,-0.0058840322308242,0.059355996549129]],[[-0.062924347817898,0.085261605679989,0.10458064824343],[-0.14347726106644,-0.053734395653009,0.037476293742657],[0.028341576457024,-0.04979120567441,-0.21189856529236]],[[0.00012724980479106,-0.1611320823431,0.13927079737186],[0.12748020887375,-0.027132879942656,0.0089787477627397],[-0.0149134574458,0.14511734247208,0.12254533171654]],[[-0.090584769845009,-0.037079036235809,-0.016283981502056],[-0.035276602953672,0.016669433563948,0.01772109977901],[-0.038268953561783,0.073114618659019,0.11588355898857]],[[-0.0085923131555319,-0.13390420377254,0.106928370893],[-0.010780018754303,-0.10733637213707,0.084437981247902],[0.071670070290565,-0.053763546049595,0.036760911345482]],[[-0.051378630101681,-0.074861198663712,0.023136558011174],[0.035504996776581,-0.12049601227045,-0.022427294403315],[0.0015684091486037,-0.038704536855221,-0.028055101633072]],[[-0.080755181610584,-0.060714665800333,0.099566757678986],[0.023181438446045,0.10612039268017,-0.097857005894184],[-0.02865487895906,0.0017205465119332,0.022156249731779]],[[-0.06067169457674,0.056844130158424,-0.13213761150837],[-0.0071745319291949,0.039222963154316,0.054385010153055],[0.11243140697479,-0.012195371091366,0.0072367046959698]],[[0.006149641238153,-0.061227228492498,-0.0056209545582533],[0.017755696550012,-0.030480431392789,-0.090255737304688],[-0.045631259679794,-0.023008964955807,-0.016847565770149]],[[0.010447359643877,0.051185093820095,-0.00098299700766802],[0.0020886228885502,-0.099848300218582,0.059790380299091],[-0.077561669051647,0.12547290325165,-0.033571720123291]],[[-0.072201706469059,0.159593090415,0.17482504248619],[-0.030213622376323,-0.049747969955206,-0.052271295338869],[0.21989004313946,-0.0023249471560121,-0.093938440084457]],[[0.0015644878149033,0.041562281548977,0.063412718474865],[0.10510546714067,0.044729717075825,0.10475414991379],[0.012202410027385,-0.091638065874577,0.10615953058004]],[[0.01020398363471,0.056207645684481,0.063675537705421],[-0.0044762855395675,0.014464972540736,0.066917806863785],[-0.03995044901967,-0.080077208578587,0.032574817538261]],[[0.014805194921792,0.056769073009491,0.0026426445692778],[0.0009116146247834,-0.042128391563892,0.050056871026754],[0.2041889578104,0.11371352523565,-0.070219106972218]],[[0.095179207623005,0.0033403765410185,0.093048922717571],[0.019830940291286,0.012094916775823,0.06114087626338],[-0.0088001852855086,-0.11729923635721,-0.035985067486763]],[[-0.077167220413685,-0.043490637093782,-0.038365803658962],[-0.0015760054811835,-0.0088733779266477,-0.034339517354965],[0.00152040226385,-0.04323773086071,-0.071609772741795]],[[0.015038794837892,-0.11575575917959,-0.030366256833076],[0.082807429134846,-0.00040637128404342,-0.07444466650486],[-0.081740699708462,0.081492200493813,-0.03671021386981]],[[0.055554486811161,0.045165587216616,0.015799675136805],[-0.13266648352146,0.146848320961,0.04749858006835],[-0.053454164415598,0.089449271559715,0.0074503091163933]],[[-0.20287896692753,-0.029572648927569,-0.012604421935976],[-0.038159307092428,-0.017788691446185,0.025413308292627],[0.13288815319538,0.041763342916965,0.090153343975544]],[[-0.11037422716618,-0.0048232446424663,0.017759315669537],[-0.065489113330841,0.029167512431741,-0.073092505335808],[-0.074814729392529,0.0067832828499377,-0.076151967048645]],[[0.051864858716726,-0.037589870393276,-0.13838994503021],[-0.094036512076855,0.045907974243164,-0.097871601581573],[-0.029460519552231,0.096467286348343,-0.094231218099594]],[[0.0072568389587104,0.041802205145359,-0.019070571288466],[-0.054453901946545,-0.038506209850311,-0.14528258144855],[0.22100323438644,0.021632188931108,0.0003595300076995]],[[0.14015842974186,-0.012342204339802,0.11532091349363],[0.045733202248812,-0.020530702546239,0.0018519156146795],[0.04616180062294,-0.017381163313985,-0.021185239776969]],[[0.16654668748379,0.027745511382818,0.11049212515354],[-0.048051103949547,0.018857471644878,0.067576423287392],[-0.056146625429392,-0.022491415962577,0.027896737679839]],[[-0.090769551694393,-0.10809912532568,0.00093890260905027],[0.013685864396393,-0.04796839132905,-0.045209307223558],[0.079218201339245,0.03120949678123,-0.033306177705526]],[[0.061791073530912,0.075232841074467,0.16379883885384],[-0.098209746181965,-0.097801469266415,0.013617862947285],[0.003037684597075,-0.089958094060421,-0.14892461895943]],[[-0.010106484405696,-0.087089031934738,0.014940473251045],[0.071145132184029,-0.23207578063011,0.038228791207075],[0.21916896104813,0.058593675494194,0.15999864041805]],[[-0.031275998800993,0.13651089370251,0.18097637593746],[0.06846185028553,0.16752175986767,0.096732094883919],[-0.0061192810535431,-0.13962049782276,-0.009686485864222]],[[-0.14798831939697,-0.03986032307148,-0.0044761607423425],[0.096559979021549,-0.04700568690896,-0.032699596136808],[-0.071000024676323,0.032713208347559,-0.20710943639278]],[[-0.078807920217514,0.040001571178436,0.0066133481450379],[0.073352754116058,0.041589930653572,-0.045214425772429],[0.066578954458237,-0.16784822940826,0.087835997343063]],[[-0.16813862323761,0.012384369969368,-0.017537092790008],[-0.010929090902209,-0.10638263821602,0.010293926112354],[-0.031627684831619,-0.15979091823101,0.061214927583933]],[[-0.061973072588444,-0.091995850205421,0.017749140039086],[-0.085886001586914,-0.11631955206394,-0.059556558728218],[-0.14657863974571,-0.077182993292809,-0.10072556138039]],[[0.055668547749519,-0.175886541605,-0.067641258239746],[0.055883210152388,0.0334292948246,0.0063474331982434],[-0.050652798265219,0.017038291320205,0.11572876572609]],[[-0.11874971538782,-0.15927292406559,0.02672329172492],[0.010840120725334,-0.047913078218699,-0.059525270015001],[-0.042150054126978,0.12677316367626,-0.18660673499107]],[[-0.05177491530776,0.16616016626358,-0.0057075009681284],[0.076278209686279,-0.11555568873882,-0.024766989052296],[0.027567038312554,-0.058287043124437,0.046321727335453]],[[-0.060726974159479,0.13971629738808,-0.033329647034407],[-0.11817660927773,0.10668115317822,-0.11509618163109],[-0.12682446837425,0.021363902837038,0.10678243637085]],[[-0.0071947160176933,0.14363895356655,-0.061546348035336],[0.11105846613646,0.09252156317234,0.091604858636856],[-0.046376544982195,-0.12329304218292,0.13920737802982]],[[0.042517587542534,0.028251178562641,-0.099069029092789],[0.0027389372698963,0.075558789074421,-0.03403652831912],[0.051950890570879,0.10024210065603,0.010130953043699]],[[-0.084731951355934,-0.020804762840271,-0.063492186367512],[-0.023566070944071,-0.061366733163595,0.018203295767307],[0.14207690954208,-0.035294339060783,0.052785638719797]],[[0.047572750598192,0.025573812425137,-0.022953378036618],[-0.081141844391823,-0.019819542765617,-0.03235249966383],[0.053908679634333,0.059694107621908,0.10208079218864]],[[0.015469931997359,-0.037312109023333,0.18256786465645],[-0.03500834107399,-0.0064185024239123,-0.06535392254591],[-0.21038380265236,0.0040541402995586,0.052389144897461]],[[0.039358954876661,-0.037625920027494,-0.052386995404959],[-0.11689900606871,-0.019667102023959,-0.074518345296383],[-0.10045433044434,0.094098493456841,-0.066215828061104]],[[0.055095866322517,-0.02679611556232,-0.021281922236085],[0.10758426040411,-0.059934798628092,-0.11137298494577],[0.073806211352348,0.020597696304321,-0.12661880254745]],[[-0.026008201763034,0.11678627878428,-0.18787461519241],[-0.0079665696248412,-0.011317222379148,0.02142134681344],[-0.068316407501698,-0.06738256663084,0.036968681961298]],[[-0.037334743887186,0.051012389361858,0.0032851460855454],[-0.11779550462961,0.016014344990253,0.0022771582007408],[0.053334560245275,-0.032046224921942,0.07802002876997]],[[0.19185443222523,0.11209691315889,0.12240319699049],[0.073352791368961,0.14527533948421,0.10383533686399],[0.056689918041229,0.097883135080338,0.10762391984463]],[[0.071590319275856,0.10043346881866,-0.030253527686],[0.011961251497269,0.089156210422516,0.10541963577271],[-0.019220346584916,-0.11149249970913,0.016296181827784]],[[-0.097142390906811,0.016256082803011,-0.030341593548656],[-0.065801680088043,0.077503278851509,0.021269107237458],[0.03284652531147,0.012464297935367,0.012047364376485]],[[0.050554402172565,-0.039322502911091,-0.038299597799778],[-0.039679694920778,-0.0050558242946863,0.020109945908189],[0.03371886909008,-0.13457964360714,-0.16146910190582]],[[-0.068180322647095,-0.0127810575068,-0.20576372742653],[-0.027854209765792,-0.055826734751463,0.050325505435467],[0.25168699026108,0.019908605143428,0.072067447006702]],[[0.064541727304459,0.0206487942487,-0.023283353075385],[-0.073058262467384,0.142145216465,0.094946160912514],[-0.12850153446198,-0.026396472007036,-0.0034243853297085]]],[[[0.028258120641112,0.046378929167986,-0.03584623336792],[0.083733588457108,-0.094211600720882,0.018055161461234],[0.088518895208836,0.010540273040533,0.060769002884626]],[[-0.0002642908366397,0.085468947887421,0.047048080712557],[0.025576330721378,0.0039029128383845,-0.036299902945757],[-0.31853741407394,-0.17344042658806,-0.14194430410862]],[[0.042671632021666,-0.10272957384586,-0.036870326846838],[-0.061548784375191,-0.063673436641693,0.062275342643261],[-0.06194756925106,0.033150352537632,-0.021156834438443]],[[0.020686328411102,0.0083428332582116,-0.025759603828192],[-0.098465293645859,0.011793941259384,0.060014974325895],[-0.15325991809368,-0.10246743261814,-0.066116400063038]],[[-0.062033098191023,0.031600907444954,-0.032629005610943],[0.030242670327425,-0.041390042752028,0.049574814736843],[-0.19229398667812,-0.10613210499287,-0.092766560614109]],[[-0.01033566519618,-0.0004222248098813,0.063278637826443],[0.046137884259224,-0.053889513015747,-0.14248265326023],[-0.099676102399826,-0.11633029580116,-0.060037788003683]],[[-0.090705081820488,-0.05629526078701,0.017752632498741],[0.097571700811386,0.027604883536696,0.084705747663975],[-0.12414589524269,-0.03695048764348,0.032170731574297]],[[-0.059166729450226,-0.063966915011406,0.12509922683239],[0.031754080206156,0.089692257344723,0.1101016625762],[-0.1676766872406,0.063222900032997,0.080819502472878]],[[-0.001858763047494,-0.011005843058228,0.044318687170744],[0.065424710512161,-0.088311992585659,0.049037039279938],[0.010896562598646,-0.19263185560703,-0.15690441429615]],[[0.06517305970192,0.088039509952068,-0.081271544098854],[-0.085202969610691,-0.0051402347162366,0.0054260515607893],[-0.1173255443573,0.0076080467551947,0.092013612389565]],[[0.027186874300241,0.071179866790771,-0.056945350021124],[-0.072591327130795,-0.0066655427217484,0.016247263178229],[0.099465943872929,-0.054598525166512,0.10468753427267]],[[0.0009866114705801,0.071321472525597,0.007374684792012],[-0.041634779423475,0.06640100479126,-0.031725957989693],[-0.028281150385737,0.00037656372296624,-0.075342886149883]],[[-0.025384023785591,0.035254821181297,0.029120048508048],[-0.04016537964344,-0.020512469112873,-0.001096804975532],[-0.079380437731743,0.058591797947884,-0.026762530207634]],[[-0.17558707296848,-0.087103575468063,-0.069946199655533],[-0.018535360693932,-0.14966736733913,0.042945735156536],[-0.051878448575735,-0.019341858103871,0.11041259765625]],[[0.0048908409662545,0.091230288147926,0.036120187491179],[0.0063776955939829,0.026817318052053,-0.038253400474787],[0.025511119514704,-0.0077339694835246,-0.0092733446508646]],[[0.063981331884861,-0.0028792398516089,-0.037451956421137],[-0.048652600497007,0.0049165147356689,-0.065405078232288],[-0.16631828248501,-0.10880036652088,-0.20011375844479]],[[-0.097878366708755,-0.014702736400068,-0.089601337909698],[0.006102308165282,0.17779949307442,0.051775500178337],[-0.067319981753826,-0.017493324354291,-0.037210319191217]],[[0.037441164255142,-0.08348049223423,-0.066048227250576],[0.016014147549868,-0.056728329509497,-0.060188379138708],[-0.098224848508835,0.010781642980874,0.058534942567348]],[[0.062345549464226,0.019581627100706,-0.076924853026867],[0.033940307796001,0.012234166264534,-0.010257741436362],[0.1462240666151,-0.02255623973906,0.020034404471517]],[[0.0039508501067758,0.074241787195206,0.053172044456005],[-0.07469616830349,0.038491163402796,-0.058128360658884],[-0.12933176755905,-0.10080713033676,0.01942934282124]],[[-0.033652432262897,-0.016468401998281,-0.051166009157896],[0.078115351498127,-0.014606815762818,-0.04702439904213],[-0.17973309755325,-0.18098571896553,-0.1415132433176]],[[0.050573833286762,0.029827076941729,0.024734074249864],[-0.034206345677376,-0.052930887788534,-0.024585915729403],[-0.059565141797066,-0.022051177918911,-0.017340894788504]],[[0.13108958303928,-0.071487210690975,-0.018723042681813],[0.029742177575827,0.04069285467267,-0.016157690435648],[0.0066420598886907,-0.01571835950017,-0.0074088629335165]],[[0.025377709418535,0.030374530702829,0.029094500467181],[0.031504482030869,-0.01257230900228,0.047511219978333],[0.11252297461033,0.0053315004333854,0.042914994060993]],[[-0.039578147232533,0.0072348527610302,-0.074229657649994],[-0.086981296539307,-0.0078612780198455,0.030977919697762],[0.065525107085705,0.074250876903534,0.0087114684283733]],[[-0.07275302708149,-0.057528898119926,-0.062156070023775],[0.03125399723649,-0.0088424868881702,0.026458958163857],[0.065374217927456,0.006250255741179,0.016356462612748]],[[0.037367567420006,0.030617540702224,0.041108913719654],[-0.14700511097908,0.074868969619274,0.037654813379049],[-0.011574775911868,0.13845802843571,0.055852368474007]],[[-0.00074715819209814,0.0690848082304,0.035842441022396],[0.018990142270923,-0.046693004667759,-0.062628172338009],[0.014243948273361,0.096371375024319,0.078158996999264]],[[0.057883229106665,-0.024599477648735,-0.086057811975479],[-0.078145690262318,-0.080012537539005,0.061625801026821],[-0.051097758114338,0.010434640571475,0.14754632115364]],[[0.051876585930586,0.0027618720196187,0.1282647550106],[0.039166364818811,-0.0031976287718862,-0.0088046574965119],[-0.018884994089603,-0.049097128212452,-0.057992674410343]],[[0.046243123710155,-0.005145754199475,0.0080450493842363],[-0.033132150769234,-0.11400318145752,0.021266359835863],[-0.00076657469617203,0.025145024061203,0.072054900228977]],[[0.0037314386572689,0.13768132030964,0.03539889678359],[-0.062414854764938,-0.023107688874006,-0.050150163471699],[0.084416553378105,0.075510293245316,0.015521511435509]],[[-0.02812978439033,0.078403726220131,-0.10999700427055],[-0.05577527731657,0.0017814523307607,0.12895961105824],[-0.084163524210453,-0.17431601881981,-0.076230071485043]],[[-0.057017032057047,-0.072188176214695,-0.043422769755125],[-0.062480993568897,0.041434042155743,-0.068613022565842],[-0.071990571916103,-0.064413845539093,0.050375517457724]],[[-0.029697462916374,0.035958807915449,0.078642018139362],[0.059911634773016,0.017735347151756,-0.047082543373108],[-0.20158821344376,-0.042198557406664,-0.075012631714344]],[[-0.064885564148426,-0.13025429844856,-0.074594557285309],[0.052698578685522,-0.07360901683569,0.077329382300377],[0.10144902765751,0.07649839669466,0.17249482870102]],[[-0.0054499455727637,0.060835868120193,-0.035901304334402],[-0.0057032369077206,0.12802805006504,-0.079570770263672],[0.125972032547,0.060273561626673,0.084042429924011]],[[0.049419797956944,0.042626541107893,0.0071733556687832],[0.036492343991995,0.024872926995158,-0.017092717811465],[-0.00095807603793219,-0.030642641708255,0.049082841724157]],[[-0.026739154011011,-0.08189133554697,-0.012202607467771],[-0.03155830129981,0.031348060816526,-0.096986316144466],[0.0008070410694927,-0.0040585235692561,0.023521471768618]],[[0.019828703254461,0.13593402504921,0.076979860663414],[0.04425909742713,0.022161815315485,0.021715939044952],[-0.096914313733578,-0.018089225515723,-0.026817379519343]],[[-0.0083006536588073,-0.0076121268793941,0.094102993607521],[-0.12590432167053,-0.026855668053031,-0.02077155187726],[-0.084397822618484,-0.021565390750766,-0.062852010130882]],[[0.072673112154007,0.031299855560064,-0.0020027603022754],[-0.032468684017658,0.017860228195786,0.053542148321867],[-0.015346966683865,-0.027771951630712,0.033320516347885]],[[0.038539636880159,0.028465064242482,-0.0056733526289463],[-0.028521649539471,0.0096553107723594,0.13262076675892],[0.058694802224636,-0.024471281096339,-0.081653043627739]],[[0.08266007900238,0.070630811154842,0.043247640132904],[0.00067385262809694,-0.015783714130521,-0.0058622071519494],[-0.10616573691368,-0.059751961380243,-0.14578387141228]],[[0.10819931328297,0.15024235844612,0.13872514665127],[0.074045404791832,-0.087657958269119,0.015093041583896],[0.17279905080795,0.088893204927444,-0.010486935265362]],[[0.039085894823074,0.0071965302340686,0.00065625377465039],[0.0043218196369708,-0.054057754576206,3.4695651265793e-05],[-0.013284713961184,-0.082403421401978,0.0030100005678833]],[[0.1116014495492,0.033198729157448,-0.10229343175888],[-0.093797259032726,-0.047725025564432,-0.029773898422718],[0.062971666455269,0.025130838155746,-0.020233510062099]],[[-0.019689561799169,0.050348829478025,-0.13760973513126],[0.055676095187664,-0.028512079268694,0.10874297469854],[0.060471974313259,0.055212929844856,-0.058028694242239]],[[0.025893487036228,0.016878709197044,-0.094834506511688],[0.053968384861946,0.048588678240776,0.025028489530087],[0.11324679851532,0.074883878231049,-0.028714055195451]],[[0.038007408380508,-0.12804426252842,-0.12744747102261],[0.00011776410974562,-0.087486319243908,-0.12899830937386],[0.0010714855743572,0.067940577864647,0.05885162577033]],[[-0.1267018020153,-0.020052177831531,0.06162104383111],[-0.050662402063608,-0.054812803864479,-0.0072051868773997],[-0.056391019374132,0.081914074718952,0.012691156007349]],[[0.16419115662575,0.063445687294006,0.044587299227715],[0.031319957226515,0.096494033932686,-0.0091479336842895],[-0.0049524838104844,-0.018815206363797,-0.045277159661055]],[[0.016149368137121,0.059431418776512,0.011000475846231],[0.11331217736006,0.0041096382774413,-0.032441824674606],[-0.079209320247173,0.011863592080772,0.0033181093167514]],[[0.049811918288469,0.022674912586808,-0.027317201718688],[0.072822123765945,0.067195743322372,0.14735969901085],[0.15524497628212,0.039375238120556,-0.029013931751251]],[[0.10947803407907,0.084980495274067,-0.039219617843628],[0.018122237175703,-0.10522583127022,-0.0064335488714278],[0.13644751906395,0.055526897311211,0.12281145900488]],[[0.014068409800529,-0.041665483266115,-0.017324632033706],[-0.0051686335355043,0.090265952050686,0.078866794705391],[0.0064910207875073,-0.077005192637444,0.071974724531174]],[[0.010084861889482,0.084213390946388,-0.047704521566629],[-0.0083548966795206,-0.011266759596765,-0.014706498011947],[-0.10577313601971,-0.06457407772541,-0.10560655593872]],[[0.089614853262901,0.059618722647429,-0.036172494292259],[0.0044071548618376,0.018876951187849,0.10243921726942],[-0.11281435191631,-0.050754681229591,-0.24821841716766]],[[0.019347479566932,-0.011836227029562,-0.041081618517637],[0.038249868899584,0.10685192793608,-0.029034046456218],[0.094306007027626,0.057140816003084,0.065915435552597]],[[-0.018246790394187,0.11360117048025,0.074334561824799],[0.15298897027969,-0.018396669998765,-0.12787948548794],[0.056416656821966,0.085471004247665,0.030624940991402]],[[-0.15974466502666,-0.075197264552116,0.0037494669668376],[-0.11266849935055,-0.045070383697748,-0.13498209416866],[-0.032373137772083,0.032379418611526,0.0085577620193362]],[[0.074078634381294,0.056538358330727,0.046161711215973],[-0.013486635871232,0.026100412011147,-0.033400688320398],[0.13698950409889,-0.086137309670448,-0.026216264814138]],[[-0.1145161613822,0.048038214445114,0.092158064246178],[-0.088404521346092,0.017722193151712,-0.093304552137852],[0.05335159227252,0.073825716972351,0.05538547411561]],[[0.01707997918129,0.013930214568973,-0.040743239223957],[0.0082318652421236,0.073494173586369,0.017915239557624],[-0.024463081732392,0.0050754519179463,0.0049965851940215]]],[[[-0.065103970468044,-0.10232312977314,-0.00018651191203389],[0.10359189659357,0.18617706000805,0.042667500674725],[-0.05276058241725,0.0023508993908763,0.045188296586275]],[[-0.12957033514977,0.00059930764837191,0.025619672611356],[-0.037472605705261,-0.010291022248566,0.0078382091596723],[-0.25576767325401,-0.12653270363808,-0.024394422769547]],[[-0.070340156555176,-0.048773802816868,-0.06054438278079],[-0.075431138277054,0.150171905756,-0.030814187601209],[-0.034181777387857,0.016901707276702,-0.014883441850543]],[[0.023921430110931,-0.10026112943888,-0.043208293616772],[-0.028434101492167,-0.0072727045044303,0.030288377776742],[-0.11271047592163,-0.055693704634905,-0.14575965702534]],[[-0.00013262596621644,0.0079753622412682,-0.076286748051643],[-0.011388758197427,-0.019068090245128,-0.041206132620573],[0.057138621807098,-0.10511344671249,-0.026146886870265]],[[-0.098276175558567,-0.017140055075288,-0.0016209937166423],[-0.0016786095220596,0.031694769859314,-0.12850897014141],[0.015218432992697,-0.041641402989626,-0.013139620423317]],[[-0.059461660683155,0.060897391289473,-0.12502799928188],[-0.050067517906427,0.025553446263075,-0.095267280936241],[0.047252256423235,0.069415427744389,-0.055609755218029]],[[-0.27614146471024,-0.038336358964443,0.090267144143581],[-0.019098138436675,0.067514233291149,-0.012628451921046],[0.14867925643921,0.055617228150368,-0.060675859451294]],[[0.046757124364376,-0.026630472391844,0.033078860491514],[0.0082818306982517,0.072865858674049,-0.010760222561657],[-0.057319119572639,0.031937308609486,-0.13706970214844]],[[0.091674573719501,-0.025042785331607,-0.001600690302439],[-0.058170594274998,-0.022374173626304,-0.065259590744972],[0.06432269513607,-0.0049849976785481,-0.06425254046917]],[[-0.1070474088192,-0.13443821668625,-0.039817608892918],[0.04388702660799,-9.6716343250591e-05,0.078634515404701],[0.020963640883565,0.083314619958401,-0.023888373747468]],[[0.061745628714561,0.028673682361841,0.08913392573595],[-0.050568841397762,-0.093391925096512,-0.036348111927509],[-0.03924947232008,0.034394912421703,0.0069161583669484]],[[-0.043660465627909,-0.10612650960684,-0.080067850649357],[0.12002827227116,-0.043064180761576,-0.0091435816138983],[-0.0028470018878579,-0.089230537414551,0.043778691440821]],[[-0.19358666241169,-0.060061655938625,-0.0080327838659286],[0.039946593344212,-0.099544689059258,0.019946470856667],[0.030153738334775,-0.11345632374287,0.029442163184285]],[[-0.087450556457043,-0.049792747944593,-0.065126709640026],[-0.016415823251009,-0.073203727602959,-0.019662346690893],[0.061310738325119,0.047801584005356,0.093375273048878]],[[-0.045673917979002,-0.052437741309404,0.045808143913746],[-0.0083420453593135,0.02653251029551,-0.01820719614625],[-0.03028915822506,0.059380244463682,-0.11528836190701]],[[-0.032172463834286,-0.13731619715691,0.11497806757689],[-0.011511174030602,-0.050493754446507,-0.040602374821901],[0.078568369150162,0.12044663727283,0.0024011726491153]],[[-0.11985345929861,0.044528655707836,-0.19486036896706],[0.079097561538219,-0.033189695328474,0.038225919008255],[-0.0097816307097673,0.011166103184223,-0.029193893074989]],[[-0.028557498008013,-0.035285007208586,-0.057209882885218],[-0.076779760420322,-0.059518590569496,-0.061798837035894],[-0.069127976894379,-0.082848757505417,-0.032609265297651]],[[-0.028962513431907,-0.066244304180145,-0.050159607082605],[-0.0042359391227365,-0.12794457376003,-0.066010288894176],[-0.21588128805161,-0.19839513301849,0.025548608973622]],[[0.0061649628914893,-0.064458690583706,0.0016017467714846],[-0.13853947818279,0.023003052920103,-0.03237796202302],[-0.12511563301086,-0.083090335130692,-0.064201764762402]],[[-0.040263220667839,0.02011283673346,0.00096170481992885],[-0.0317089445889,0.038242887705564,0.0200757663697],[-0.038387231528759,-0.0058848233893514,-0.15047982335091]],[[-0.15287615358829,-0.026795195415616,0.028899868950248],[-0.023015733808279,0.092268794775009,0.0011353821028024],[-0.004220690112561,0.0084864888340235,-0.12522515654564]],[[-0.077091120183468,0.065074637532234,-0.019002292305231],[0.060553211718798,0.1140505746007,-0.062848411500454],[0.093484669923782,0.02354952506721,0.14387030899525]],[[0.053920533508062,0.076200552284718,0.10299852490425],[-0.050008933991194,-0.099131926894188,0.0036012206692249],[0.060157652944326,0.079818226397038,0.10674068331718]],[[0.041993696242571,-0.058088053017855,-0.0021636011078954],[0.0050788926891983,0.00018334112246521,-0.027112750336528],[-0.031622529029846,-0.0063654975965619,0.031394023448229]],[[0.1682361215353,-0.022403253242373,-0.065193094313145],[0.043627802282572,0.038702193647623,-0.086845144629478],[-0.094812288880348,-0.10940353572369,-0.13446451723576]],[[-0.071215100586414,0.13754749298096,0.064528085291386],[-0.052133865654469,-0.028931735083461,-0.07146730273962],[-0.028745094314218,0.032163858413696,0.0015185953816399]],[[-0.09629050642252,-0.051459383219481,-0.11019846796989],[0.074485011398792,-0.12153735011816,-0.068933941423893],[-0.15139642357826,-0.076082721352577,0.032012887299061]],[[0.049572970718145,0.072003841400146,-0.058479554951191],[0.049404192715883,0.011309904977679,0.034767784178257],[0.064285047352314,0.028818612918258,-0.13755013048649]],[[0.06524021923542,-0.031920772045851,-0.010495985858142],[0.030294239521027,-0.044522736221552,-0.037237908691168],[-0.0019582661334425,-0.12319218367338,0.043610315769911]],[[0.026328267529607,-0.064819060266018,-0.034821689128876],[0.00086915056454018,-0.056443408131599,-0.0040560886263847],[0.0098620196804404,-0.086799845099449,-0.038356177508831]],[[0.025929380208254,-0.060498461127281,0.14995586872101],[0.037031192332506,0.060600865632296,-0.077347554266453],[-0.28319171071053,0.16995497047901,-0.11404930055141]],[[0.0094579560682178,-0.024608371779323,0.0026673632673919],[0.036454346030951,-0.12126898020506,0.0015261870576069],[0.011879639700055,0.074674569070339,-0.073928669095039]],[[-0.1200592815876,0.11086820065975,0.0030729924328625],[-0.1463960558176,-0.0035653780214489,0.011885495856404],[-0.037797141820192,0.012688108719885,0.074968717992306]],[[-0.06828285753727,0.063428170979023,0.097332760691643],[0.035340178757906,-0.08761377632618,-0.054784774780273],[0.014633625745773,0.048884186893702,0.03314171731472]],[[0.089431717991829,0.11130679398775,0.0038664792664349],[0.10855828970671,0.040526915341616,-0.0017864441033453],[0.038108721375465,-0.066451720893383,-0.099048368632793]],[[0.027163024991751,0.013415199704468,-0.004953546449542],[0.010712542571127,0.068441808223724,0.077692151069641],[-0.089315742254257,-0.11862990260124,-0.013773852027953]],[[0.060341738164425,-0.097593814134598,0.037599395960569],[0.044007316231728,-0.06900904327631,0.017867328599095],[0.038352888077497,0.035246305167675,-0.062885351479053]],[[0.0042365361005068,-0.052775297313929,0.012751162052155],[-0.068732805550098,-0.20376165211201,-0.034457493573427],[-0.1287337988615,0.049875058233738,-0.0078418897464871]],[[-0.11296443641186,0.092867366969585,0.073655299842358],[-0.070268854498863,0.061404246836901,-0.15188612043858],[-0.18584904074669,-0.12877260148525,-0.075274012982845]],[[-0.11833793669939,-0.068124406039715,-0.0198929104954],[-0.02867441624403,-0.068934105336666,-0.056258257478476],[-0.10495179146528,-0.02686719596386,0.033721156418324]],[[0.14021266996861,-0.063122659921646,-0.13177384436131],[0.049556192010641,0.15620036423206,0.043677251785994],[-0.10323656350374,-0.08722773194313,0.060157030820847]],[[0.086489230394363,-0.093904331326485,-0.21934953331947],[-0.073202766478062,0.1061602383852,-0.039314657449722],[-0.05285831540823,-0.020354242995381,-0.13676276803017]],[[-0.035753961652517,-0.04964466765523,-0.051038943231106],[0.078799694776535,0.095466196537018,0.06829297542572],[-0.020522825419903,0.070264309644699,-0.040134787559509]],[[-0.071816772222519,-0.026070764288306,-0.050199083983898],[0.12654288113117,-0.10087153315544,-0.051730506122112],[-0.12133608013391,0.058682080358267,0.060839377343655]],[[-0.027019109576941,0.033999834209681,-0.029385108500719],[0.11028122156858,-0.030157784000039,-0.064116761088371],[0.011769868433475,-0.010668856091797,0.023851605132222]],[[-0.054297834634781,0.027895899489522,0.024546539410949],[-0.030446976423264,-0.11332799494267,0.0157998111099],[0.018439652398229,0.11934559047222,0.033253371715546]],[[0.10099954903126,0.13565801084042,-0.097642794251442],[-0.11413587629795,-0.012418801896274,-0.020750448107719],[0.040926776826382,0.061129275709391,-0.05231698602438]],[[-0.045394044369459,0.067858040332794,0.01575567945838],[-0.11901796609163,0.00049928127555177,-0.032607637345791],[0.11388754099607,-0.0035509348381311,0.02341715991497]],[[0.0092920241877437,-0.089722521603107,-0.18708539009094],[-0.0052429037168622,-0.022810742259026,-0.077313788235188],[-0.0069195562973619,0.088484294712543,0.065318658947945]],[[-0.095409594476223,0.074506282806396,-0.038904093205929],[-0.051780682057142,-0.055078826844692,-0.00083438237197697],[-0.11548233032227,0.074820205569267,0.041714321821928]],[[0.039512049406767,-0.037588763982058,0.0091983629390597],[0.093158088624477,-0.034390844404697,-0.00066199718276039],[-0.13577152788639,-0.042711861431599,-0.033944454044104]],[[-0.047890886664391,-0.00043983649811707,0.024148399010301],[-0.011514860205352,-0.092554301023483,-0.13242626190186],[0.11206717044115,0.12850977480412,0.082506388425827]],[[-0.027649497613311,-0.15229198336601,0.16798686981201],[0.0090402159839869,-0.047610983252525,0.046973764896393],[-0.038716446608305,-0.10712225735188,0.052801534533501]],[[-0.026431472972035,0.013508182950318,-0.17100149393082],[0.047665975987911,-0.020534709095955,0.064130298793316],[-0.0080752409994602,-0.046541478484869,0.0075307786464691]],[[0.061388421803713,-0.10490016639233,-0.08062206953764],[0.025835253298283,0.055077649652958,-0.11807999759912],[0.010078127495944,-0.0028443036135286,-0.023682242259383]],[[-0.041225638240576,0.017951816320419,-0.00036915604141541],[-0.073943018913269,0.039734419435263,0.024571055546403],[-0.12107988446951,-0.058301892131567,-0.0568045116961]],[[-0.035767551511526,0.0020278787706047,0.024614924564958],[0.030471773818135,0.085396192967892,0.072342149913311],[0.071287199854851,0.15440087020397,0.10052756220102]],[[0.065150111913681,-0.0062815672717988,0.0387062728405],[0.0010541619267315,0.11397230625153,0.062888383865356],[0.028017397969961,0.073018707334995,0.16203302145004]],[[0.045408707112074,-0.041420556604862,0.018197765573859],[-0.0095217106863856,-0.024716176092625,-0.087248973548412],[-0.042912643402815,-0.095080681145191,0.030044559389353]],[[0.086262010037899,0.12392111867666,0.075931958854198],[0.038395114243031,-0.016438541933894,-0.15902134776115],[-0.069857113063335,-0.029593290761113,0.0006693932809867]],[[-0.036735221743584,0.026012003421783,0.0077934707514942],[0.045102257281542,0.099382758140564,-0.081047609448433],[-0.044318430125713,0.03566936776042,-0.036006413400173]],[[0.050590429455042,0.058636926114559,0.077095478773117],[0.04358846321702,0.025063676759601,0.015880377963185],[0.059108924120665,-0.16613028943539,-0.069253519177437]]],[[[0.033774275332689,0.077010527253151,0.13297720253468],[-0.13091084361076,-0.025677446275949,-0.015427811071277],[-0.012393077835441,0.076713606715202,-0.067392230033875]],[[-0.031504843384027,-0.082350477576256,-0.0048448829911649],[0.0086347125470638,-0.12081970274448,0.13431563973427],[0.026951979845762,0.07117372751236,0.079719416797161]],[[-0.08024487644434,-0.0080622062087059,-0.033771570771933],[-0.062218707054853,-0.071058660745621,-0.013450352475047],[-0.11031475663185,-0.020910702645779,0.036771446466446]],[[0.034231632947922,-0.1474848985672,-0.12759894132614],[0.01679639518261,0.013901534490287,-0.0032818489708006],[-0.10188869386911,0.070207968354225,-0.034508686512709]],[[-0.20297783613205,0.018944414332509,-0.15533599257469],[-0.11107656359673,0.050122048705816,0.00019188469741493],[-0.12625151872635,0.011846707202494,-0.036937061697245]],[[0.037890560925007,0.052058514207602,0.062089055776596],[0.020643934607506,-0.035805020481348,0.054877866059542],[0.02248558960855,0.051124781370163,0.014313055202365]],[[0.015207388438284,0.081568337976933,-0.049632050096989],[-0.0091249905526638,-0.038732890039682,0.088197872042656],[-0.0095695210620761,0.0046583288349211,0.08429129421711]],[[0.046379633247852,-0.005323535297066,0.05749324336648],[-0.10091682523489,-0.12429992854595,0.071588806807995],[-0.023837313055992,-0.1020148396492,-0.1515843719244]],[[-0.032538242638111,-0.13559827208519,0.019542390480638],[0.0085927406325936,0.045052014291286,-0.11055379360914],[0.13669337332249,-0.035070601850748,-0.016277754679322]],[[-0.010152084752917,0.033341806381941,-0.060516446828842],[-0.012272601015866,-0.10724995285273,-0.038937043398619],[-0.0031804931350052,0.045378599315882,0.0030407055746764]],[[0.01826098933816,-0.049836225807667,0.15680134296417],[-0.046109192073345,0.05260232463479,-0.068973377346992],[-0.14149478077888,-0.059402711689472,0.0095902429893613]],[[0.031554967164993,0.015464700758457,0.043419659137726],[0.01165390945971,-0.050229039043188,-0.080299556255341],[0.027473216876388,0.0081190736964345,-0.017868975177407]],[[0.053677339106798,0.04907750338316,-0.039341252297163],[-0.012928178533912,-0.014186447486281,0.028197960928082],[-0.0076278252527118,-0.052120100706816,0.13793233036995]],[[-0.071040570735931,-0.073739394545555,0.020684111863375],[-0.055378686636686,-0.015015956014395,-0.00088714383309707],[0.18718183040619,0.027978535741568,-0.02482576854527]],[[-0.12127169966698,0.076577514410019,-0.0052027562633157],[0.0017107209423557,0.013597151264548,-0.039501968771219],[0.0082816770300269,-0.26003682613373,0.029780279844999]],[[-0.080731064081192,-0.017024593427777,-0.044480785727501],[-0.055017936974764,0.031807508319616,0.0016124345129356],[-0.047447349876165,0.089314833283424,0.046291340142488]],[[-0.12267781794071,-0.00054481171537191,0.066521726548672],[0.077695146203041,0.013536348007619,0.060774236917496],[-0.06108833104372,0.029362777248025,-0.16658116877079]],[[0.034320078790188,0.130685120821,0.0058517674915493],[-0.076895043253899,-0.13066777586937,-0.047436069697142],[-0.010820460505784,0.1070394590497,0.15290597081184]],[[-0.048556622117758,0.010854735970497,0.11292322725058],[-0.11483835428953,-0.055440057069063,0.008621022105217],[0.064723484218121,-0.0033977914135903,-0.084780886769295]],[[-0.088210962712765,0.066235460340977,0.056841533631086],[-0.052222438156605,-0.074940405786037,-0.18757297098637],[0.042626619338989,0.15576206147671,0.073048688471317]],[[0.026923350989819,-0.02255910076201,0.015558140352368],[0.016205342486501,0.12966613471508,0.086312040686607],[0.15311367809772,-0.0094681410118937,0.084872998297215]],[[-0.029148150235415,0.004491678904742,-0.0081620821729302],[-0.011348222382367,-0.0076346732676029,-0.014478730037808],[-0.054678242653608,0.028732351958752,-0.013053829781711]],[[0.045952048152685,-0.035722132772207,-0.061333421617746],[-0.055633522570133,0.046906560659409,0.003608665894717],[-0.019046235829592,0.050724655389786,-0.0066255824640393]],[[0.071153074502945,0.082843996584415,0.15967427194118],[-0.05445721372962,-0.023374576121569,-0.048116058111191],[-0.082050308585167,-0.062311168760061,-0.027932206168771]],[[0.076695546507835,0.093737743794918,0.093252301216125],[0.068984985351562,0.075078286230564,0.0020438614301383],[-0.012099652551115,0.02409652993083,0.0218247435987]],[[-0.042050153017044,-0.070665821433067,0.048574540764093],[0.056883905082941,0.0059132929891348,0.081652872264385],[-0.018451226875186,-0.051391661167145,-0.036643858999014]],[[-0.16327910125256,0.096372343599796,-0.037190519273281],[0.17232112586498,0.098472833633423,0.04133078455925],[0.0082635143771768,0.09072057902813,0.1805647611618]],[[-0.0076169343665242,-0.085218116641045,-0.090756490826607],[0.023254610598087,-0.038027420639992,0.067942939698696],[0.029573889449239,-0.077527992427349,0.049215976148844]],[[-4.5788823626935e-05,-0.042537860572338,0.035735681653023],[0.034876730293036,0.06985879689455,-0.01846001110971],[-0.019253998994827,-0.13860197365284,-0.013798943720758]],[[-0.13297827541828,-0.019553855061531,0.081668376922607],[0.0092367753386497,0.020481877028942,-0.027674876153469],[0.034189261496067,-0.11498143523932,0.098176926374435]],[[0.00041732680983841,0.24264673888683,-0.21954551339149],[-0.14203241467476,0.17348039150238,-0.04004530236125],[-0.073026046156883,0.15021528303623,-0.043828383088112]],[[0.10658540576696,0.015843177214265,-0.15594737231731],[-0.023517744615674,0.024353045970201,-0.0056462646462023],[0.0065021240152419,-0.051972605288029,0.041031241416931]],[[-0.055240519344807,-0.062247026711702,0.020396305248141],[-0.025567086413503,0.045058991760015,0.0098596001043916],[0.069756954908371,0.0090286303311586,-0.04186088591814]],[[0.026804082095623,0.039686109870672,0.1098166257143],[0.040707550942898,-0.099635183811188,0.019197391346097],[-0.044317226856947,-0.024422872811556,-0.093863151967525]],[[-0.038688596338034,-0.16852468252182,-0.044478859752417],[-0.088266775012016,0.011180623434484,0.042214203625917],[0.089074291288853,0.11461014300585,0.098144814372063]],[[0.074136719107628,0.16040171682835,0.034083120524883],[0.054118417203426,0.058521848171949,0.02211101166904],[0.0094019016250968,0.010904141701758,-0.055456556379795]],[[0.017299802973866,-0.050337247550488,-0.038869258016348],[0.018790302798152,0.023417184129357,-0.0037138857878745],[0.0065038842149079,0.012167161330581,-0.038812875747681]],[[-0.0013102098600939,0.064736723899841,-0.058079238981009],[0.028774218633771,-0.01410685479641,-0.064274556934834],[-0.048826914280653,-0.077203184366226,0.10142284631729]],[[0.0010133390314877,0.0060710981488228,0.10893487930298],[-0.00025079835904762,-0.020885340869427,0.0032587677706033],[-0.016217045485973,-0.02195779979229,-0.027619283646345]],[[0.033889751881361,-0.016418635845184,0.014744012616575],[0.022913927212358,-0.0032978486269712,0.055160969495773],[-0.066618070006371,-0.028206244111061,-0.055113740265369]],[[-0.007186446338892,-0.0087152533233166,-0.089069202542305],[-0.018690200522542,-0.072534166276455,0.072914503514767],[0.046272587031126,-0.029698353260756,0.037277583032846]],[[0.012636851519346,0.0023052941542119,0.0074691819027066],[0.04402281716466,0.020529929548502,0.12079898267984],[0.016313202679157,0.088520340621471,-0.0026071693282574]],[[0.10402746498585,-0.052542574703693,-0.10877002775669],[0.040251612663269,-0.092668801546097,-0.068429231643677],[0.065041586756706,0.13329766690731,0.083013869822025]],[[0.0084948455914855,-0.047955453395844,-0.015208270400763],[-0.020282730460167,0.12063267081976,0.067790113389492],[0.11182799190283,-0.04285367205739,0.17302179336548]],[[-0.0045365318655968,0.041142016649246,0.065141722559929],[0.071543626487255,0.075179517269135,0.1683287024498],[-0.078094311058521,0.089206837117672,-0.0061262166127563]],[[-0.025809802114964,0.069506779313087,0.1827786564827],[-0.00054962054127827,-0.032504979521036,-0.22082176804543],[0.052905857563019,0.0020991191267967,-0.034423030912876]],[[0.086957648396492,0.065011963248253,0.068620398640633],[0.054407082498074,0.054787784814835,0.1177146807313],[-0.08981391787529,0.024601938202977,0.10772838443518]],[[-0.032428458333015,-0.095747917890549,-0.052675366401672],[0.0275400839746,0.17354781925678,0.068275831639767],[-0.0020841595251113,-0.027384094893932,0.09276344627142]],[[0.064376413822174,-0.032210953533649,0.051789857447147],[0.033126164227724,0.040767978876829,-0.027770908549428],[-0.025941317901015,0.061113826930523,0.082620352506638]],[[0.10327514261007,-0.13871178030968,0.20428617298603],[0.035024620592594,-0.040982540696859,0.029033398255706],[0.14602665603161,0.095547772943974,0.057418204843998]],[[0.064052253961563,-0.0039224373176694,0.13492111861706],[0.066404551267624,-0.076868407428265,-0.10215862095356],[0.029427409172058,0.028134878724813,0.055730823427439]],[[-0.21913857758045,-0.068621166050434,-0.098075322806835],[0.054656468331814,-0.050778981298208,0.072087660431862],[0.1002728715539,0.071501798927784,0.11640793085098]],[[-0.059696037322283,-0.086069531738758,0.033751223236322],[-0.029115092009306,-0.0449308604002,-0.097926340997219],[0.0088594211265445,-0.059155486524105,0.052001167088747]],[[-0.16881096363068,-0.039535988122225,-0.081283807754517],[-0.0018005270976573,-0.030923310667276,-0.050917271524668],[0.092141553759575,0.062001314014196,0.12420061975718]],[[-0.17445881664753,0.0520342849195,0.0073157348670065],[0.076390691101551,-0.064198605716228,0.082193195819855],[0.036309830844402,0.021975485607982,-0.046956039965153]],[[-0.02819787338376,-0.017285602167249,0.076253324747086],[0.011300686746836,0.072164379060268,0.012341641820967],[-0.027817791327834,-0.13006234169006,0.097004152834415]],[[0.013082993216813,-0.074973024427891,0.12228038161993],[0.073739096522331,0.08036507666111,0.07145531475544],[0.0031367426272482,0.03616351261735,-0.058679293841124]],[[-0.077568426728249,-0.065231122076511,0.054568581283092],[0.017190154641867,0.010234744288027,0.043925996869802],[-0.017384961247444,-0.085684686899185,0.056553609669209]],[[0.056269191205502,0.10415246337652,0.18632623553276],[0.0080209486186504,0.092064343392849,-0.034505430608988],[0.065914615988731,0.084053382277489,-0.072473876178265]],[[0.01616488955915,-0.13809807598591,0.02079263702035],[-0.12061525136232,-0.015870364382863,0.016617374494672],[0.12494955211878,-0.081720501184464,0.038362000137568]],[[-0.045173443853855,0.13828355073929,0.049061480909586],[0.013473738916218,-0.0070056822150946,-0.028326680883765],[0.14297971129417,0.045868203043938,0.031931944191456]],[[0.089174211025238,-0.043179873377085,-0.072069078683853],[0.07122465968132,-0.031209744513035,-0.07296983897686],[-0.091322295367718,-0.0073095406405628,-0.1799958050251]],[[-0.083538293838501,0.072117298841476,-0.031289204955101],[-0.066884547472,0.072810411453247,0.024744313210249],[0.094679988920689,0.037732418626547,0.032601702958345]],[[0.031028732657433,-0.07851354777813,-0.16433112323284],[-0.12389562278986,-0.076881393790245,0.089866772294044],[-0.020991904661059,-0.15000650286674,0.026568910107017]]],[[[0.050462529063225,0.043475545942783,-0.10954079777002],[-0.18664209544659,-0.01522941980511,0.037961605936289],[-0.17586243152618,-0.18718753755093,-0.019387511536479]],[[0.1134007871151,0.0025474207941443,0.010488726198673],[0.10500810295343,0.059250228106976,-0.097182102501392],[0.051655165851116,-0.077982135117054,-0.12637139856815]],[[-0.066007226705551,-0.11006036400795,-0.091741427779198],[0.00055373791838065,-0.04733532294631,-0.085384733974934],[-0.0088025750592351,-0.15043577551842,-0.1044067516923]],[[0.059574034065008,0.039928689599037,0.020219009369612],[-0.080496191978455,0.018086666241288,0.027109455317259],[-0.18414781987667,-0.01834692619741,-0.028661549091339]],[[0.055254448205233,-0.02798935957253,-0.033893927931786],[-0.0065254559740424,-0.042849246412516,-0.077824838459492],[0.0027227257378399,0.014920220710337,0.043941155076027]],[[-0.015769133344293,-0.008074302226305,0.0043880366720259],[-0.014246773906052,0.01879995316267,0.033866483718157],[-0.054039474576712,-0.084659278392792,-0.061839032918215]],[[0.021588580682874,-0.040220610797405,-0.04444632679224],[-0.030642291530967,-0.062806949019432,0.097460508346558],[0.042573161423206,0.010277526453137,-0.058965396136045]],[[0.13635544478893,0.030148671939969,0.029133917763829],[-0.1835118830204,-0.015319474972785,-0.19208863377571],[-0.1546835899353,0.0024485373869538,0.16712257266045]],[[0.0017282305052504,0.015828978270292,0.10037170350552],[-0.14907439053059,0.0042152507230639,-0.03712647780776],[-0.14039601385593,0.022580189630389,0.030548484995961]],[[-0.11615864187479,0.093591526150703,0.12322737276554],[0.12338045984507,-0.072391383349895,-0.21126639842987],[-0.018225356936455,-0.062730424106121,0.09583292901516]],[[0.013825408183038,0.041462302207947,-0.018051207065582],[0.034527607262135,0.045492269098759,0.078198246657848],[-0.065848790109158,0.026211641728878,-0.0045969439670444]],[[-0.0062841731123626,-0.037027098238468,-0.014755773358047],[-0.045492481440306,-0.092221349477768,-0.064137198030949],[0.011983003467321,0.082398623228073,-0.0085050705820322]],[[0.0027541033923626,0.033094100654125,0.0020610156934708],[-0.057810664176941,-0.074642173945904,-0.027929503470659],[-0.062163047492504,-0.13288187980652,0.051213644444942]],[[0.094847843050957,0.0087645100429654,-0.034605868160725],[-0.29569882154465,0.011890806257725,0.0098332986235619],[-0.12227611988783,-0.14223636686802,0.0073991236276925]],[[0.031244184821844,-0.032485172152519,-0.094806410372257],[-0.065109752118587,0.082607835531235,-0.038062952458858],[0.15279379487038,-0.045620385557413,-0.051035489886999]],[[0.028302401304245,0.061234086751938,-0.029179390519857],[-0.069708928465843,0.029576683416963,0.05021084100008],[0.1167973652482,0.018113292753696,0.070164553821087]],[[0.00067719770595431,0.091840356588364,0.069286964833736],[0.058849718421698,-0.10719344764948,-0.052013829350471],[0.14754730463028,-0.1105323061347,-0.22569841146469]],[[-0.059317734092474,-0.013698546215892,0.085259355604649],[-0.11070161312819,-0.032419074326754,-0.0048731071874499],[0.19509030878544,0.0018124902853742,0.15205179154873]],[[-0.053630031645298,-0.061265509575605,0.025984140112996],[-0.07475258409977,-0.022029332816601,0.059365883469582],[-0.18116556107998,-0.16476961970329,-0.12775672972202]],[[-0.045430369675159,-0.07236061245203,-0.082310244441032],[-0.0045128031633794,0.024147918447852,-0.018247280269861],[0.027983620762825,-0.13667421042919,0.051215030252934]],[[-0.0212043505162,-0.14198209345341,-0.14780077338219],[0.12275506556034,0.023178856819868,0.016142776235938],[-0.072057031095028,0.069181405007839,0.0033430815674365]],[[0.074473328888416,0.015326690860093,0.021736979484558],[-0.049017574638128,0.0101866889745,-0.0013188008451834],[-0.036774106323719,-0.044359408318996,-0.08714734017849]],[[0.015439691022038,0.054439675062895,-0.040036045014858],[0.076193086802959,-0.057234909385443,-0.14363001286983],[0.1008922085166,-0.058452673256397,-0.10141135007143]],[[0.0012812745990232,0.057807609438896,0.024705499410629],[0.0887595936656,0.22697745263577,-0.054806299507618],[-0.03979492560029,0.019021233543754,0.053959626704454]],[[0.036400008946657,-0.095870949327946,-0.046634368598461],[0.06561665982008,0.049491085112095,0.079532355070114],[-0.0040652235038579,0.04762952029705,0.058788985013962]],[[-0.061934299767017,-0.02979358099401,-0.052370049059391],[0.043045900762081,-0.014205178245902,-0.047455258667469],[0.052238672971725,0.025858804583549,0.04821053519845]],[[-0.029728693887591,-0.036061268299818,-0.13569003343582],[0.030109647661448,-0.003643051488325,-0.032905600965023],[0.0068974010646343,-0.00057970441412181,0.011290855705738]],[[-0.089138142764568,-0.013176549226046,-0.068574786186218],[-0.031526520848274,-0.052750758826733,0.027787389233708],[-0.088058590888977,-0.16573944687843,0.074711307883263]],[[0.019562110304832,-0.044781561940908,-0.10805372148752],[0.014380580745637,-0.065959714353085,0.053787212818861],[0.0022777612321079,-0.055989138782024,-0.036014772951603]],[[-0.1286608427763,0.00040652439929545,-0.14122506976128],[-0.06581623852253,-0.042973555624485,0.13488227128983],[0.065911896526814,-0.0022506599780172,-0.198241725564]],[[0.021259158849716,-0.042909577488899,-0.017636569216847],[-0.11810068041086,0.10192040354013,0.14093358814716],[-0.013710578903556,-0.15701462328434,-0.34675201773643]],[[-0.16781666874886,-0.043904803693295,-0.036574739962816],[-0.011494657956064,-0.029622694477439,0.087291799485683],[0.073921725153923,0.15910083055496,0.099649012088776]],[[0.052013959735632,0.022664463147521,-0.041017465293407],[-0.15354387462139,-0.040197789669037,-0.032728835940361],[0.10056564956903,-0.017538208514452,0.19269073009491]],[[-0.19272999465466,-0.12431484460831,-0.025671890005469],[0.14614394307137,-0.073041968047619,-0.11625906080008],[-0.021727960556746,-0.0021857295650989,-0.15195217728615]],[[-0.050607018172741,-0.052754752337933,0.012569919228554],[0.029758546501398,0.002127640414983,-0.030221857130527],[-0.059811785817146,0.063276223838329,0.033196650445461]],[[-0.11324636638165,0.079930141568184,-0.0060882158577442],[0.13126100599766,0.063039191067219,0.011792823672295],[-0.093277879059315,-0.058220520615578,-0.050533015280962]],[[-0.080999694764614,-0.066090576350689,0.13530458509922],[-0.019416166469455,0.19499662518501,0.024439085274935],[-0.061531350016594,-0.076892219483852,0.03051151894033]],[[0.079484835267067,-0.0048543596640229,-0.028976580128074],[0.076595485210419,-0.053472679108381,-0.020724080502987],[0.095540329813957,0.0072986241430044,-0.146633669734]],[[0.065893821418285,-0.027284298092127,-0.0028463422786444],[0.061109598726034,-0.043207831680775,-0.049151942133904],[0.10365165024996,-0.091079466044903,-0.1540140658617]],[[-0.10294682532549,-0.073261208832264,-0.038520272821188],[0.069710321724415,-0.038982845842838,-0.05957855284214],[-0.024619223549962,0.13439126312733,-0.0043995985761285]],[[0.030001912266016,-0.0063906721770763,0.01481713168323],[0.021026501432061,0.042357567697763,-0.028311168774962],[0.022110568359494,-0.13175697624683,-0.065624438226223]],[[-0.079887486994267,0.020604748278856,-0.097262002527714],[0.0086222505196929,0.056710265576839,0.051884926855564],[0.0083186877891421,-0.090255618095398,0.031434115022421]],[[0.0068505248054862,-0.03738434240222,-0.062270056456327],[-0.048397339880466,0.11157029122114,0.0061686215922236],[-0.0098028397187591,0.013099199160933,0.040270440280437]],[[0.023142838850617,0.080720357596874,-0.086295232176781],[0.055884622037411,-0.010567032732069,0.11731834709644],[0.0045777494087815,-0.10459294915199,0.06178954616189]],[[0.0026708780787885,0.06607761234045,0.065257638692856],[-0.066297151148319,-0.060946501791477,0.024536350741982],[-0.054511860013008,-0.022564647719264,0.0064949244260788]],[[0.090615592896938,0.059178795665503,-0.033248785883188],[-0.16816836595535,0.026427011936903,-0.052745595574379],[0.10942935198545,-0.046695478260517,0.042534455657005]],[[0.076604843139648,-0.0088272467255592,-0.12154663354158],[-0.090163722634315,-0.17960934340954,0.10179559141397],[0.02200218103826,0.055507559329271,0.098697394132614]],[[-0.023049704730511,-0.072104893624783,0.015117307193577],[-0.13847757875919,-0.079121291637421,0.011021461337805],[-0.0079693449661136,0.055453922599554,-0.099387958645821]],[[-0.006659691222012,-0.13201007246971,-0.022249912843108],[-0.10067947953939,0.039231561124325,-0.08649530261755],[-0.06053564697504,-0.1349181085825,-0.0031180439982563]],[[-0.026804637163877,0.0063142068684101,0.14505481719971],[0.012113098986447,-0.046944558620453,-0.14960652589798],[0.095257133245468,-0.035637997090816,0.050165757536888]],[[0.072013400495052,0.03611759096384,0.0024282892700285],[0.062519565224648,0.046478930860758,-0.044285673648119],[-0.079733774065971,0.0080633396282792,-0.033817734569311]],[[-0.057602398097515,-0.014762911014259,0.062068503350019],[0.052798338234425,-0.01637658663094,-0.097869120538235],[0.0019735868554562,0.048123136162758,0.19283230602741]],[[-0.010881588794291,0.058070663362741,-0.16014929115772],[0.073833860456944,0.081125050783157,0.12590005993843],[-0.094402246177197,-0.21866695582867,-0.10075534880161]],[[0.080686450004578,-0.015059281140566,-0.02529757283628],[-0.017087172716856,0.034195192158222,0.031793344765902],[0.18582130968571,0.1057435721159,0.032530635595322]],[[-0.012713049538434,-0.022265966981649,-0.12457028031349],[0.10554338991642,0.10295553505421,-0.043929878622293],[-0.064173117280006,-0.065696328878403,-0.079799674451351]],[[0.07239181548357,-0.037908937782049,-0.077232465147972],[-0.017278488725424,-0.06803984940052,-0.15932001173496],[-0.03642825782299,-0.14904120564461,0.056467931717634]],[[0.10966146737337,-0.11578825861216,-0.02929950132966],[-0.01931762136519,-0.015955239534378,0.04761902987957],[0.03300779312849,0.15121324360371,0.1000364869833]],[[-0.096890956163406,-0.054996434599161,-0.14978265762329],[0.024771753698587,0.090354576706886,0.028680872172117],[0.014109768904746,-0.0094349216669798,-0.0050910557620227]],[[0.011467980220914,0.074111580848694,0.16122189164162],[-0.056800607591867,0.036348663270473,-0.043574307113886],[-0.040751721709967,0.0025803251191974,0.0028150195721537]],[[-0.095986656844616,-0.041587390005589,-0.11605097353458],[-0.091824643313885,0.014015956781805,0.0081361858174205],[0.028240125626326,-0.012366863898933,0.071724571287632]],[[-0.03834642469883,0.038365695625544,-0.030041763558984],[-0.052431777119637,0.085904821753502,-0.016446977853775],[-0.073558673262596,-0.039338480681181,-0.094327606260777]],[[-0.075905412435532,-0.063601985573769,-0.045690752565861],[-0.13046427071095,-0.023371085524559,0.0064159464091063],[0.049441214650869,0.082277916371822,0.071125864982605]],[[0.0016487702960148,0.0060931821353734,0.044943332672119],[0.03157702088356,0.048682145774364,0.0012394797522575],[-0.12315990775824,0.016287220641971,0.012341236695647]],[[-0.049598831683397,-0.082017160952091,-0.044377166777849],[-0.11569670587778,-0.049742419272661,0.029575502499938],[-0.11454647034407,0.0074264104478061,-0.062768504023552]]],[[[-0.063617832958698,-0.01052363589406,-0.027811756357551],[-0.042793266475201,-0.075644314289093,-0.14266459643841],[-0.2969223856926,-0.031404729932547,0.032565895467997]],[[0.052199486643076,0.044711019843817,-0.026838049292564],[0.028800249099731,0.050019308924675,-0.059522438794374],[-0.083833813667297,0.053558327257633,0.04915165156126]],[[-0.0024108153302222,-0.031830631196499,-0.078441716730595],[-0.0243502818048,-0.039131984114647,0.068978279829025],[-0.1139417886734,0.021755529567599,0.093645825982094]],[[-0.041315693408251,-0.064558163285255,0.12880119681358],[0.094174817204475,0.050348024815321,0.04329638928175],[-0.010267243720591,0.083912141621113,0.11593791097403]],[[-0.061747327446938,-0.15616151690483,-0.056087516248226],[0.071984216570854,-0.031505659222603,0.021572666242719],[0.045116100460291,-0.062678799033165,-0.018080573529005]],[[-0.099251814186573,0.026388259604573,0.07262122631073],[0.13614931702614,-0.020284367725253,-0.066099017858505],[-0.14309479296207,-0.11566286534071,-0.025352235883474]],[[0.012126926332712,-0.17103862762451,-0.080626480281353],[-0.11293280869722,0.019473915919662,-0.027584178373218],[0.16569569706917,-0.046272426843643,0.22057442367077]],[[0.10639297217131,-0.061418063938618,0.13868574798107],[-0.046658415347338,0.015693049877882,-0.0060981586575508],[0.095482721924782,-0.035931598395109,0.018986904993653]],[[0.016240222379565,-0.076399385929108,0.14832904934883],[-0.018405852839351,0.079236432909966,-0.048262059688568],[-0.23365104198456,0.00019602820975706,-0.061808452010155]],[[0.0094826072454453,0.035862136632204,0.074322856962681],[0.099405102431774,-0.084592998027802,-0.13883729279041],[0.080272763967514,-0.015043718740344,-0.064213238656521]],[[0.015829937532544,-0.10116918385029,0.0018453059019521],[0.00014361330249812,-0.026818178594112,0.061503801494837],[0.056497279554605,-0.13922214508057,0.025441585108638]],[[-0.06550969183445,-0.031907390803099,0.016936104744673],[0.011260624043643,0.093630425632,0.0037728054448962],[0.043432094156742,-0.04364961758256,-0.080794647336006]],[[0.045657936483622,-0.075992397964001,-0.24230125546455],[0.030598437413573,-0.020795280113816,-0.0086499005556107],[-0.16799603402615,-0.011684034951031,-0.085237063467503]],[[-0.02237631008029,0.0183683950454,-0.065493941307068],[0.24470327794552,0.042109910398722,0.049018681049347],[-0.041593916714191,-0.023929553106427,-0.17726723849773]],[[-0.033010885119438,-0.043734882026911,-0.060924854129553],[-0.015479759313166,0.085828423500061,-0.0055707679130137],[-0.11337994039059,-0.045923974364996,0.066712781786919]],[[0.096469156444073,0.0012343090493232,0.019526803866029],[0.057379629462957,-0.05150368064642,-0.078852072358131],[-0.0071294433437288,0.080711930990219,0.048164464533329]],[[-0.085680820047855,-0.030825840309262,0.036950636655092],[-0.019583890214562,-0.15670989453793,-0.05577889084816],[0.10643041878939,-0.077612608671188,-0.07840695977211]],[[0.024187434464693,0.10182123631239,-0.048566292971373],[-0.050653751939535,-0.017396625131369,-0.0086869541555643],[0.050653107464314,0.08525712788105,-0.0038913544267416]],[[-0.071704126894474,-0.071087181568146,-0.021314959973097],[-0.036654178053141,-0.047476548701525,-0.068532295525074],[-0.015502039343119,-0.086506634950638,0.083428382873535]],[[-0.23618577420712,-0.10220076143742,0.084947109222412],[-0.13008680939674,0.010617512278259,0.00065193301998079],[-0.010685750283301,0.020526930689812,0.095789186656475]],[[0.019856438040733,-0.18019425868988,0.08347025513649],[0.069235682487488,0.065503560006618,-0.014374457299709],[-0.27996805310249,-0.21932198107243,-0.080438107252121]],[[-0.036071807146072,-0.01032789144665,-0.0060761505737901],[-0.11066208779812,-0.0049906922504306,-0.043815787881613],[-0.015726175159216,0.04000810533762,-0.035863697528839]],[[-0.05633208528161,-0.0016584252007306,0.03485818579793],[-0.045805800706148,0.0010230805492029,0.014900902286172],[0.031385261565447,-0.098781757056713,-0.10267418622971]],[[-0.0047510173171759,-0.12693095207214,0.061508543789387],[0.11153679341078,-0.15262149274349,0.16465075314045],[0.20877124369144,-0.034158308058977,-0.070847272872925]],[[0.096479550004005,-0.058164801448584,0.10222190618515],[0.20776215195656,-0.040932573378086,0.073018580675125],[0.061979509890079,0.032301899045706,-0.076851665973663]],[[0.029242115095258,-0.03404101356864,-0.052742548286915],[0.038268070667982,0.00929597299546,-0.027235765010118],[0.060418020933867,-0.026196720078588,0.0044931983575225]],[[-0.081165313720703,0.041522186249495,0.032327655702829],[-0.12161663174629,-0.055818751454353,0.098370842635632],[-0.027262987568974,0.1580893099308,0.099017307162285]],[[0.041131474077702,-0.14013442397118,-0.088406383991241],[-0.078015811741352,-0.084057040512562,0.095359645783901],[-0.11412166059017,-0.059937998652458,0.00013603547995444]],[[-0.13652412593365,0.057345453649759,0.020360015332699],[-0.024176692590117,-0.01905438862741,-0.074269078671932],[0.012677633203566,0.12329217046499,0.20056462287903]],[[0.063186533749104,-0.050191309303045,0.072449646890163],[0.011114084161818,-0.081069529056549,0.041266031563282],[-0.22621041536331,0.01871282607317,-0.027912706136703]],[[-0.18011337518692,0.12013909965754,-0.032297130674124],[-0.0089087495580316,-0.058099336922169,0.060025982558727],[-0.15555059909821,-0.066150516271591,0.068604484200478]],[[-0.16853110492229,-0.14600621163845,-0.020313151180744],[0.20313818752766,0.13177374005318,-0.17571166157722],[0.15416152775288,-0.025452269241214,0.11615433543921]],[[-0.0086989309638739,-0.028001928701997,0.069153182208538],[-0.18552777171135,-0.16094620525837,-0.074223406612873],[-0.17108891904354,0.062931522727013,-0.044062882661819]],[[0.042937692254782,0.091873168945312,0.11675374954939],[-0.058360662311316,-0.16149024665356,-0.043138761073351],[-0.26076966524124,-0.16767087578773,-0.040669769048691]],[[-0.03376691415906,-0.048325378447771,0.008593525737524],[0.0017937803640962,0.036135885864496,-0.020350128412247],[0.014660423621535,0.041782520711422,-0.053541179746389]],[[-0.0073325238190591,-0.036995157599449,0.028636792674661],[0.028285542502999,-0.13862444460392,0.024468006566167],[0.092706263065338,0.10966967046261,0.069924019277096]],[[0.0053998758085072,-0.058976177126169,-0.0054790237918496],[0.027519604191184,0.016803000122309,-0.0025818471331149],[0.050873171538115,0.15443679690361,0.091890141367912]],[[0.11002945899963,-0.12673877179623,-0.090535007417202],[0.14096686244011,-0.15037074685097,-0.028077732771635],[0.18098059296608,-0.16709798574448,-0.0483661852777]],[[-0.10625622421503,-0.071313291788101,-0.071350023150444],[0.091999441385269,-0.005821134429425,-0.020313007757068],[-0.12181621789932,-0.041551064699888,0.0024853928480297]],[[-0.004086755681783,-0.049985524266958,-0.13659179210663],[-0.1342559158802,0.059202462434769,0.024422267451882],[-0.070022858679295,0.041731853038073,0.023864982649684]],[[-0.051764246076345,-0.052506528794765,-0.23002684116364],[-0.26079449057579,-0.070262402296066,0.07534097135067],[-0.027579627931118,0.071687512099743,-0.012998945079744]],[[-0.041554257273674,-0.10211100429296,0.094564169645309],[-0.15737134218216,-0.093504644930363,0.060603581368923],[-0.18089771270752,0.012846972793341,-0.0079967929050326]],[[0.16548100113869,0.044886589050293,0.032816112041473],[0.075997553765774,0.024137945845723,0.06994117051363],[-0.11032482236624,-0.073454298079014,-0.10017693787813]],[[-0.059706624597311,0.023563716560602,-0.066004551947117],[0.031985867768526,0.12408126890659,-0.10277769714594],[-0.11544646322727,0.088792860507965,0.11878258734941]],[[0.035481568425894,-0.068755894899368,-0.090871654450893],[0.058676619082689,0.022994011640549,-0.062356024980545],[0.098293147981167,-0.017412684857845,-0.058516342192888]],[[-0.061687730252743,0.047760453075171,-0.081661574542522],[-0.17994569242001,-0.12903715670109,0.026307441294193],[-0.028445720672607,0.095678135752678,0.020377114415169]],[[0.10356570035219,0.074614480137825,0.010706236585975],[0.12893243134022,-0.07911155372858,-0.064274229109287],[0.056524433195591,-0.054711010307074,-0.026883283630013]],[[-0.028338119387627,-0.085820078849792,-0.12521828711033],[-0.062125101685524,-0.18118311464787,-0.024860367178917],[-0.059307668358088,-0.07577707618475,-0.10785236209631]],[[0.0046770386397839,-0.12007354199886,0.015077346935868],[0.034346930682659,0.09619752317667,0.0047830380499363],[0.010319947265089,0.062571838498116,-0.0065059089101851]],[[0.096514441072941,0.20949049293995,0.0035722425673157],[-0.019887745380402,0.061388287693262,-0.10604222863913],[0.16014017164707,-0.079095892608166,-0.042684122920036]],[[0.0017866034759209,0.16288210451603,-0.023230463266373],[0.010543620213866,0.019999638199806,0.066224306821823],[-0.143929079175,-0.010894663631916,0.068546317517757]],[[-0.11846742779016,-0.026182159781456,0.10673693567514],[-0.13614630699158,0.04279850423336,0.037678439170122],[0.017361046746373,0.050224609673023,0.13693210482597]],[[0.16181972622871,0.013830902986228,-0.00028336883406155],[0.022933360189199,0.015961511060596,-0.018895948305726],[-0.080558523535728,-0.09497382491827,-0.20868661999702]],[[0.1759791970253,-0.048296388238668,0.022932978346944],[0.082423724234104,0.08002182841301,0.098537117242813],[0.026659116148949,0.10638054460287,0.05855343490839]],[[0.049997627735138,-0.063192330300808,-0.039260774850845],[0.04227839410305,-0.14790186285973,-0.084732539951801],[-0.17636851966381,0.027640275657177,0.043630752712488]],[[0.043894570320845,-0.051593024283648,-0.076009884476662],[-0.1239667236805,-0.00074413290712982,0.03763111308217],[-0.052270911633968,0.040472276508808,-0.0039863423444331]],[[-0.0018518194556236,0.00051108008483425,-0.022127510979772],[0.0010140697704628,0.011480665765703,-0.059705708175898],[0.017741877585649,0.041434347629547,0.076686002314091]],[[-0.081707678735256,0.079129569232464,0.0057626622729003],[-0.057808082550764,0.1081852093339,-0.01755428314209],[-0.099465094506741,-0.0023976848460734,0.078439921140671]],[[0.11762885004282,0.081471309065819,0.0024191020056605],[0.02483937330544,0.053157959133387,0.19399403035641],[0.027594018727541,0.016912050545216,0.089821614325047]],[[-0.036299418658018,-0.08504980802536,0.072764843702316],[0.11441054940224,-0.1042692810297,0.041133921593428],[0.1477977335453,-0.054034654051065,-0.085965529084206]],[[0.08687599003315,-0.026887139305472,-0.055323451757431],[-0.0096455905586481,-0.012527214363217,0.015552721917629],[-0.094985365867615,0.0060464832931757,-0.085156582295895]],[[0.018015092238784,-0.078339494764805,-0.067787125706673],[-0.0098956059664488,-0.020370004698634,0.047882732003927],[0.051865313202143,0.019625071436167,0.072478912770748]],[[-0.29357236623764,-0.0076842280104756,0.08221847563982],[-0.026999214664102,-0.0087391650304198,0.12634916603565],[-0.060009770095348,0.13775819540024,0.12489990144968]],[[-0.12236014008522,-0.18347217142582,0.044587787240744],[0.040303871035576,-0.02014147117734,0.0058307913132012],[-0.0069955014623702,0.07624714076519,-0.023954689502716]]],[[[0.18012383580208,0.03761974349618,-0.086513921618462],[-0.071291856467724,0.017252869904041,-0.013993973843753],[-0.14566637575626,0.09271302074194,0.0023526763543487]],[[-0.11770821362734,-0.002611021976918,-0.23072305321693],[0.019293487071991,-0.044490158557892,-0.24020779132843],[-0.13303406536579,-0.013846053741872,-0.1963891685009]],[[-0.12758447229862,0.017754565924406,0.054769918322563],[-0.12172476947308,0.029557494446635,-0.087835438549519],[-0.030064266175032,-0.022162998095155,-0.17389209568501]],[[-0.070980161428452,0.06575733423233,-0.013931285589933],[0.066311463713646,0.012192755006254,-0.015946734696627],[-0.066126950085163,-0.2094821035862,0.24675089120865]],[[0.0095922658219934,-0.017325155436993,0.031479436904192],[-0.028452267870307,0.017889622598886,-0.0010011369595304],[-0.044944990426302,-0.07369090616703,0.054011717438698]],[[-0.17173708975315,0.13744425773621,0.056916631758213],[-0.053571183234453,-0.018616154789925,-0.05831253528595],[0.028712455183268,-0.1952241063118,-0.098609998822212]],[[0.075093060731888,0.034951601177454,-0.008372881449759],[0.0088882949203253,-0.021556662395597,-0.06030372902751],[-0.0279322527349,-0.13760817050934,0.076598085463047]],[[-0.029867587611079,-0.056503463536501,0.047510828822851],[-0.053335402160883,0.0053020785562694,-0.012689702212811],[0.013027938082814,0.041554998606443,0.1340166926384]],[[0.087281249463558,0.098535917699337,0.057771179825068],[0.042534116655588,0.034690819680691,0.036304607987404],[-0.08440189063549,-0.20754556357861,-0.024219719693065]],[[-0.0985187292099,0.015963071957231,0.082729391753674],[-0.01727076806128,-0.0096142841503024,0.0029575952794403],[0.098175503313541,0.0044295215047896,0.011302989907563]],[[0.041676972061396,-0.034453224390745,-0.27919140458107],[0.079310923814774,-0.068353623151779,0.081010147929192],[0.016526596620679,0.030011737719178,0.17264169454575]],[[0.10482075810432,0.049159415066242,-0.02714834921062],[-0.076952010393143,0.0016649132594466,0.054135330021381],[-0.037950471043587,-0.016548892483115,-0.13125668466091]],[[-0.032485362142324,-0.040201637893915,-0.013201812282205],[-0.057051476091146,0.11703598499298,0.0066424566321075],[-0.04414514824748,0.048608426004648,0.13489644229412]],[[0.10142761468887,-0.027333565056324,-0.082933992147446],[0.022901143878698,-0.014357883483171,0.037868168205023],[0.0309963747859,0.049112308770418,0.19133186340332]],[[-0.16939060389996,0.081905528903008,-0.10419806092978],[-0.070031061768532,0.017397206276655,0.011468511074781],[-0.024296062067151,0.058396521955729,-0.016367906704545]],[[0.0087341824546456,-0.18918211758137,-0.023904133588076],[-0.11466608941555,0.019832024350762,-0.059656336903572],[-0.13738682866096,0.0992491543293,-0.18561175465584]],[[0.015695735812187,0.19910237193108,-0.018772013485432],[0.057849712669849,0.0035686935298145,0.04700980708003],[-0.025598837062716,-0.15347503125668,-0.024618262425065]],[[0.051009647548199,0.018775306642056,-0.0156892221421],[0.011340523138642,-0.023795677348971,-0.11570101976395],[0.11851540952921,-0.075349569320679,0.058924991637468]],[[0.0090320557355881,-0.10930322110653,-0.021679190918803],[-0.037014275789261,-0.10453535616398,-0.095100581645966],[-0.020011825487018,0.01735726185143,-0.0025209300220013]],[[-0.0049953907728195,0.057345699518919,-0.054213289171457],[-0.13264259696007,0.01051174942404,-0.12811507284641],[-0.14243420958519,0.044512428343296,0.042501222342253]],[[0.19806298613548,0.075896486639977,0.045695293694735],[-0.1198263168335,0.056416321545839,0.026764009147882],[-0.061303526163101,0.11361461877823,-0.04985624179244]],[[-0.039107348769903,0.0087403170764446,-0.10108912736177],[0.035453554242849,0.030729103833437,0.0039761271327734],[-0.035599816590548,-0.044373922049999,-0.066490940749645]],[[-0.046115588396788,-0.081174023449421,-0.13029524683952],[-0.042594648897648,0.0049439943395555,-0.11459319293499],[-0.18443118035793,-0.0072972904890776,0.078847847878933]],[[0.13463428616524,0.096301011741161,-0.047161761671305],[0.10978282243013,0.072067804634571,0.19136662781239],[-0.0812693759799,0.010114790871739,0.17236937582493]],[[-0.0067798509262502,0.022115865722299,-0.01928598061204],[0.038252007216215,0.10355470329523,-0.038141682744026],[0.091906726360321,0.045495714992285,0.12941393256187]],[[-0.037487268447876,-0.0099601000547409,0.033888798207045],[-0.051581963896751,-0.092012979090214,0.022468388080597],[0.055351674556732,-0.005284811835736,0.022038135677576]],[[0.073238536715508,0.061512921005487,0.11567872017622],[-0.12717069685459,0.0029798827599734,0.03774194419384],[-0.012194255366921,-0.032631311565638,-0.10068888962269]],[[-0.060368783771992,-0.085108563303947,-0.070042088627815],[-0.050268843770027,0.078495129942894,-0.042152781039476],[-0.0053653311915696,-0.15754717588425,0.036276061087847]],[[-0.067071676254272,-0.077922292053699,0.028766352683306],[-0.053988441824913,-0.034794915467501,-0.09643629193306],[-0.033274378627539,0.012670368887484,0.038601465523243]],[[0.0066237533465028,-0.12956684827805,0.013511854223907],[-0.046617425978184,-0.010114694014192,-0.0125852227211],[-0.061004385352135,0.10480147600174,-0.051447510719299]],[[-0.03483609110117,0.17736352980137,0.0037414529360831],[0.035708479583263,0.0060971607454121,0.11671359091997],[-0.032489594072104,-0.18047186732292,0.094242267310619]],[[0.14455638825893,0.14621531963348,0.037918720394373],[-0.0052524628117681,0.053759187459946,0.056963078677654],[-0.11944337189198,0.055849619209766,-0.21605540812016]],[[0.035680275410414,0.07684775441885,-0.005068794824183],[-0.014927643351257,0.054551489651203,0.040235660970211],[-0.14444401860237,0.05200095847249,0.058518938720226]],[[0.02818007953465,-0.028599197044969,0.028859682381153],[-0.088336579501629,-0.029256034642458,0.049056597054005],[0.047847390174866,-0.16712741553783,0.043506570160389]],[[0.10349728912115,-0.14211921393871,0.017092136666179],[0.044769149273634,0.022575149312615,-0.13786441087723],[-0.076608553528786,-0.15936583280563,-0.1164663285017]],[[-0.20092302560806,0.20608229935169,-0.074021629989147],[0.068003050982952,-0.00039066604222171,-0.042330492287874],[-0.0046833227388561,0.16277441382408,0.020536858588457]],[[0.060086596757174,-0.0078332144767046,-0.041940912604332],[0.00028076182934456,0.11744217574596,0.017586302012205],[-0.14572682976723,0.044544406235218,0.0055262274108827]],[[-0.074936993420124,-0.20000979304314,-0.042288772761822],[0.0087831411510706,-0.050349052995443,0.007607551291585],[0.0055992994457483,0.087047591805458,0.058756563812494]],[[0.051591217517853,-0.12475035339594,-0.094807773828506],[-0.058296293020248,-0.054021127521992,-0.099473662674427],[0.1550244987011,0.057039801031351,-0.027299666777253]],[[-0.0433652959764,0.0093273585662246,0.049551233649254],[0.026266809552908,0.0060506565496325,-0.0098298061639071],[-0.13817925751209,-0.021286241710186,-0.24620409309864]],[[0.056207429617643,-0.10893799364567,0.081395342946053],[0.034227807074785,0.057339031249285,0.037349708378315],[-0.0022983504459262,0.095444872975349,-0.09665409475565]],[[-0.10568906366825,-0.0006344011053443,-0.0092150866985321],[-0.062933526933193,0.087966538965702,0.028113102540374],[0.017068965360522,-0.057090807706118,0.025797210633755]],[[-0.034046541899443,-0.0132389459759,0.18735675513744],[0.10230556875467,0.0066708796657622,-0.0065735685639083],[0.06332141906023,0.099533461034298,0.10316779464483]],[[0.016025051474571,-0.11322905123234,-0.017992837354541],[-0.10543891787529,-0.02017536200583,-0.016712224110961],[-0.012275388464332,-0.052039511501789,-0.22377216815948]],[[-0.050896558910608,-0.06239015609026,0.0061856103129685],[0.047156289219856,-0.11139062047005,0.053243223577738],[0.056189149618149,-0.02663392573595,-0.05675745382905]],[[-0.010457723401487,-0.052572015672922,0.022859454154968],[-0.0070425225421786,0.0078097013756633,0.066955663263798],[0.050354704260826,0.047125786542892,0.016072347760201]],[[0.046276528388262,-0.063726209104061,-0.16804894804955],[0.054055422544479,-0.071132160723209,0.10391470789909],[0.064316384494305,-0.0078536374494433,-0.1039167791605]],[[-0.031321372836828,0.092278018593788,-0.021542130038142],[-0.0007786427740939,-0.055523276329041,-0.053063325583935],[-0.022159684449434,-0.051368895918131,-0.01328576169908]],[[-0.14945475757122,0.10999462008476,-0.15470488369465],[0.021532388404012,0.040243364870548,-0.025278555229306],[0.20488359034061,-0.063790112733841,-0.081768453121185]],[[-0.032789058983326,0.0043030516244471,-0.067401863634586],[-0.081890232861042,0.092115350067616,-0.091434076428413],[-0.11070389300585,0.069167472422123,-0.0071509839035571]],[[0.13513091206551,-0.037340708076954,0.00060546002350748],[0.075074665248394,-0.01178852841258,0.1092936322093],[0.10440699756145,-0.018747556954622,0.0083266086876392]],[[-0.03282093256712,0.10518896579742,-0.13694016635418],[-0.032022416591644,0.059015579521656,-0.16831921041012],[-0.032152593135834,-0.15613633394241,0.037411108613014]],[[0.034744180738926,0.12448938935995,0.0089865094050765],[0.11206111311913,0.094288870692253,0.058565326035023],[-0.016780491918325,-0.10225459933281,-0.085333697497845]],[[-0.035137448459864,-0.038928359746933,0.13247919082642],[-0.0640649497509,-0.03898611292243,-0.031612165272236],[0.020369276404381,0.16315224766731,0.034186568111181]],[[-0.0063828243874013,0.023674575611949,-0.06569068133831],[0.069053016602993,0.11089958995581,-0.31149816513062],[0.0045361155644059,-0.011421374045312,-0.16951516270638]],[[0.092499755322933,0.0053328494541347,-0.0037526842206717],[-0.023016970604658,-0.073888637125492,0.031384952366352],[0.027554595842957,-0.052040122449398,0.44401720166206]],[[-0.14676135778427,0.055142182856798,0.025791063904762],[-0.023871375247836,0.066444702446461,-8.2389939052518e-05],[-0.10398606210947,0.033981081098318,-0.10270676016808]],[[-0.024220732972026,0.037038575857878,0.037355180829763],[0.075658902525902,-0.0053003616631031,-0.099380873143673],[0.07933958619833,0.069541864097118,-0.25816860795021]],[[0.0040816348046064,0.13295355439186,-0.068324692547321],[0.03440223261714,0.14452986419201,0.0080478396266699],[0.037595879286528,0.10634945333004,0.064287699759007]],[[-0.20056895911694,-0.082980245351791,-0.012751867063344],[-0.16154563426971,-0.092001937329769,-0.18498654663563],[-0.15017594397068,0.014923276379704,-0.090637192130089]],[[0.043800044804811,-0.034342590719461,0.1094890832901],[0.014167076908052,0.061940208077431,-0.014876935631037],[-0.02563001960516,-0.038622882217169,-0.10172786563635]],[[0.10311046987772,-0.14371374249458,-0.021479446440935],[0.023262586444616,-0.10459692031145,-0.065735094249249],[-0.031790599226952,0.033093050122261,-0.025689590722322]],[[-0.025835046544671,0.020367912948132,0.060119152069092],[-0.01998289488256,-0.011286965571344,-0.023333927616477],[-0.10175701975822,0.20846657454967,-0.025665041059256]],[[0.012838265858591,-0.04893571510911,0.0017776300664991],[0.03205968439579,-0.018742131069303,-0.058091826736927],[-0.029204219579697,-0.050441846251488,0.18541359901428]]],[[[0.11287309229374,-0.059600133448839,4.231636194163e-05],[-0.013936650007963,-0.070492938160896,-0.054791033267975],[0.029114954173565,-0.018050156533718,-0.060257256031036]],[[-0.033272907137871,0.06487188488245,-0.050625953823328],[0.042440198361874,-0.07334328442812,0.083348073065281],[-0.0051934784278274,-0.064342200756073,-0.18751747906208]],[[0.061716862022877,-0.090416863560677,-0.015326243825257],[-0.05404619500041,-0.11426452547312,-0.053619060665369],[-0.10973432660103,-0.21330934762955,-0.072232790291309]],[[0.12778027355671,0.10052290558815,-0.012140895240009],[0.1328451782465,-0.074557088315487,-0.074339978396893],[0.033069938421249,-0.082421362400055,-0.086988009512424]],[[-0.039847560226917,-0.010026845149696,0.075398273766041],[-0.1180112734437,-0.058634072542191,-0.077843599021435],[-0.074080303311348,-0.11593666672707,-0.094519264996052]],[[-0.049363661557436,-0.014051377773285,-0.014728401787579],[-0.070056691765785,-0.0023814816959202,-0.057100735604763],[0.0064920801669359,-0.15702013671398,0.087105445563793]],[[0.096744388341904,-0.067130155861378,-0.082484520971775],[-0.13339655101299,0.012973879463971,0.027303760871291],[-0.032137762755156,0.038323886692524,0.099238194525242]],[[0.081582129001617,-0.046874191612005,0.058177746832371],[-0.060723852366209,0.026693686842918,0.04265858232975],[-0.19302594661713,0.069899290800095,0.19984668493271]],[[-0.12193581461906,-0.13731788098812,0.080042488873005],[-0.029098626226187,-0.13487562537193,-0.11985712498426],[0.20385691523552,-0.0068774395622313,0.076649524271488]],[[0.064005196094513,0.11135361343622,0.075483329594135],[-0.0067452332004905,-0.15588900446892,0.0053116544149816],[-0.099509954452515,-0.30019447207451,0.041940573602915]],[[-0.081402987241745,0.056741934269667,-0.12878057360649],[-0.033356089144945,-0.1166218072176,-0.093930274248123],[-0.14092916250229,0.049651138484478,0.10752192884684]],[[-0.0065918620675802,0.053706746548414,0.20282611250877],[-0.094381049275398,-0.039628442376852,0.038917765021324],[-0.069743022322655,-0.06340229511261,-0.18595243990421]],[[0.068905256688595,0.0042087929323316,0.080286018550396],[0.029617179185152,-0.062586203217506,-0.093628130853176],[-0.14072458446026,-0.024211559444666,0.010040327906609]],[[0.10713423043489,0.12922886013985,-0.041638135910034],[-0.008025131188333,0.10315862298012,0.01834525167942],[0.10113933682442,-0.026244768872857,0.047464486211538]],[[0.037107191979885,0.014371725730598,0.05368747189641],[-0.0010550698498264,-0.0055465330369771,0.046472799032927],[-0.076172843575478,0.070935875177383,-0.097424119710922]],[[-0.035653494298458,-0.17168936133385,-0.076034627854824],[0.054250486195087,0.092290081083775,-0.15412446856499],[0.065019346773624,-0.19623224437237,-0.17903044819832]],[[-0.048633564263582,0.081236079335213,-0.07211896777153],[0.01336881890893,-0.0069217388518155,0.085063248872757],[0.14262738823891,-0.067896090447903,0.026548855006695]],[[-0.20872089266777,-0.074758149683475,0.042393483221531],[0.078009411692619,0.09357438236475,-0.087383218109608],[0.095876798033714,0.033566374331713,0.027484107762575]],[[0.0020463962573558,0.0037077066954225,-0.14905549585819],[-0.090138576924801,0.059585548937321,-0.036003686487675],[-0.22003810107708,0.055534206330776,-0.061773046851158]],[[-0.090189553797245,-0.094672493636608,-0.027199108153582],[-0.053638532757759,-0.026799064129591,-0.038247335702181],[-0.05783985555172,-0.0014018394285813,-0.068470612168312]],[[0.029745448380709,-0.012372696772218,-0.04707308486104],[0.012878099456429,-0.032332617789507,-0.011381163261831],[0.16917817294598,0.019063338637352,0.052052315324545]],[[0.081275075674057,0.028676688671112,-0.04289248213172],[-0.094173058867455,-0.063953168690205,-0.019942659884691],[0.024019598960876,-0.058387320488691,-0.062634035944939]],[[0.083907224237919,-0.065671436488628,-0.19881625473499],[0.13049204647541,-0.0096048982813954,-0.076948024332523],[0.19867293536663,0.0083122234791517,0.059465125203133]],[[-0.14567521214485,-0.06648550927639,0.14418078958988],[-0.05621850118041,0.15063633024693,0.10650091618299],[-0.11706463992596,-0.070815563201904,0.037843532860279]],[[0.13424676656723,-0.19498288631439,0.10505735874176],[0.1098080649972,-0.045404173433781,0.068317696452141],[-0.010445173829794,0.14541783928871,0.11712709069252]],[[-0.11682718992233,-0.062906220555305,-0.00046453875256702],[0.12082704156637,0.0013916719472036,0.028246812522411],[0.021013312041759,-0.013954762369394,-0.055659163743258]],[[-0.026452438905835,-0.025908982381225,0.16260762512684],[0.0249791033566,-0.052297357469797,0.083374992012978],[-0.057651747018099,0.072912313044071,-0.036351408809423]],[[0.010738056153059,-0.12655027210712,0.02614127099514],[0.032918464392424,-0.093817420303822,-0.086360089480877],[-0.13982942700386,-0.038284201174974,0.01214837282896]],[[0.062542214989662,-0.0019762581214309,-0.042790040373802],[0.015182717703283,-0.022974625229836,0.0071413172408938],[-0.013833454810083,-0.23288530111313,-0.21187004446983]],[[0.031613189727068,-0.072722718119621,0.0034883636981249],[-0.17667125165462,-0.25502237677574,0.052335552871227],[-0.055076766759157,-0.30492228269577,0.2213013023138]],[[0.11883056163788,0.071445412933826,-0.006823549978435],[0.0042331460863352,0.047554884105921,0.19882944226265],[-0.057295870035887,-0.044386480003595,-0.076999239623547]],[[0.029821151867509,0.046564921736717,0.010052896104753],[-0.10317486524582,-0.040418788790703,-0.068881139159203],[0.06738268584013,-0.030618580058217,-0.016248170286417]],[[0.036277484148741,-0.19193106889725,0.080374337732792],[-0.027047684416175,0.02704281359911,-0.032634612172842],[0.13854625821114,0.11038597673178,-0.015947366133332]],[[-0.13953584432602,0.040910515934229,-0.053714454174042],[-0.049101591110229,-0.06269109994173,-0.055139947682619],[0.067191794514656,0.053918544203043,0.039730381220579]],[[-0.16172325611115,-0.084785453975201,0.062626548111439],[-0.24130637943745,-0.026586905121803,0.028653936460614],[-0.18696194887161,0.071592070162296,-0.089515082538128]],[[0.018930803984404,-0.007252424955368,0.075727291405201],[0.13804852962494,0.18475221097469,0.085711814463139],[-0.038811471313238,0.013962765224278,-0.018161941319704]],[[-0.011347164399922,-0.13269858062267,-0.090096794068813],[0.045495238155127,0.05868611112237,0.059573072940111],[-0.060022186487913,0.11328129470348,-0.058387998491526]],[[-0.13148254156113,-0.052344646304846,-0.030347749590874],[-0.084802217781544,-0.069533631205559,-0.047828555107117],[-0.11031244695187,-0.087600573897362,-0.0020157089456916]],[[-0.37338969111443,-0.18174569308758,-0.019809577614069],[0.052644241601229,-0.038053762167692,0.066206760704517],[-0.038196001201868,0.050062838941813,-0.062012542039156]],[[-0.15938925743103,-0.13688650727272,-0.15681992471218],[-0.021905954927206,-0.065742149949074,-0.041658971458673],[0.14845785498619,-0.021319337189198,-0.078782789409161]],[[0.030840443447232,-0.035136628895998,-0.065393388271332],[-0.034490637481213,0.053031053394079,-0.12990427017212],[-0.18146915733814,0.1744384765625,0.015901815146208]],[[-0.067664839327335,-0.044753234833479,-0.0684699639678],[0.15755346417427,0.062299940735102,0.0060029891319573],[0.060619510710239,-0.32369327545166,-0.045538440346718]],[[-0.11025232076645,0.18250532448292,0.0058334241621196],[0.0089205373078585,0.079969227313995,0.094501197338104],[-0.24663160741329,0.10557167232037,-0.14769458770752]],[[-0.0088219223544002,-0.044582165777683,-0.10966710746288],[-0.090562090277672,0.0028488668613136,-0.025805041193962],[-0.074336566030979,0.19729000329971,-0.14263096451759]],[[-0.20122629404068,0.052136350423098,0.098521143198013],[-0.20966467261314,-0.0075078005902469,0.069205783307552],[-0.19573503732681,-0.073163837194443,0.14771120250225]],[[0.031252101063728,0.15091255307198,-0.056846894323826],[-0.16086883842945,0.095950827002525,0.019905380904675],[-0.073817625641823,-0.031941119581461,0.026176398620009]],[[0.34082612395287,-0.17397324740887,0.017916982993484],[0.016287233680487,-0.10256719589233,0.0016124314861372],[0.019591299816966,-0.021028267219663,-0.10724287480116]],[[-0.046114720404148,0.11235810816288,-0.084287755191326],[-0.187814027071,0.060835979878902,-0.0044138273224235],[-0.23895812034607,-0.24576921761036,0.038179133087397]],[[-0.030589625239372,-0.11622466146946,0.19652484357357],[0.03340619802475,-0.15703469514847,0.037248555570841],[-0.13692933320999,-0.21414370834827,-0.010941912420094]],[[-0.07222506403923,0.089349187910557,-0.015940742567182],[-0.10729425400496,0.14793372154236,0.038426596671343],[0.11470410972834,-0.046234112232924,0.071060635149479]],[[0.0015347701264545,0.031535841524601,0.01531276665628],[-0.16240929067135,-0.0064673856832087,0.036102551966906],[-0.24490727484226,-0.017669470980763,0.095262452960014]],[[-0.030754823237658,0.014442268759012,0.17111407220364],[0.037247385829687,0.031210931017995,0.084565460681915],[0.055855374783278,-0.062850385904312,0.06863796710968]],[[-0.074586845934391,-0.12527318298817,0.010147858411074],[0.028462225571275,-0.035256002098322,-0.018545411527157],[0.3848896920681,-0.064312227070332,-0.06024781242013]],[[0.23237299919128,0.09387119114399,0.00028664618730545],[-0.0080844964832067,-0.0055103404447436,0.038945440202951],[0.012789202854037,-0.13744741678238,0.14120456576347]],[[-0.036967106163502,-0.11102473735809,-0.25195810198784],[-0.032808031886816,-0.028790099546313,-0.20353853702545],[-0.042951170355082,-0.034373357892036,-0.2310249209404]],[[-0.012907715514302,0.16183179616928,-0.030569748952985],[-0.085016004741192,0.049003351479769,0.040292870253325],[-0.038798112422228,-0.10979866236448,0.10373102873564]],[[-0.2578492462635,0.19433346390724,-0.0019204375566915],[-0.1281603872776,0.11417929828167,-0.026884557679296],[-0.14371395111084,0.017130015417933,-0.010456146672368]],[[-0.069053746759892,-0.13220335543156,0.012762728147209],[0.079642288386822,0.022058118134737,0.011935695074499],[0.049607504159212,0.065623708069324,-0.066336877644062]],[[0.075064107775688,0.036356780678034,0.070543959736824],[0.022706100717187,0.018637159839272,0.0008058815728873],[0.057728044688702,0.1090961843729,0.11225365847349]],[[0.039995424449444,-0.13875378668308,0.035634055733681],[-0.24652552604675,-0.094386354088783,0.010200539603829],[-0.12581479549408,-0.11154997348785,-0.0049636182375252]],[[-0.070942185819149,-0.048925392329693,-0.1169304177165],[-0.10952986776829,-0.053030587732792,-0.042383745312691],[-0.12213459610939,0.11346350610256,0.13960403203964]],[[-0.13646139204502,0.0054225008934736,-0.047492932528257],[-0.08957427740097,-0.064575187861919,-0.07007685303688],[-0.037627790123224,0.052577514201403,0.12022615224123]],[[0.135852009058,0.10089561343193,-0.07725203037262],[-0.046820431947708,-0.004410573747009,0.19895447790623],[-0.20273521542549,0.036646980792284,0.20270854234695]],[[0.043828014284372,-0.11046680808067,0.10090608149767],[-0.27071645855904,0.0088664656504989,-0.047242440283298],[-0.2133034914732,0.15544059872627,-0.019299808889627]]],[[[0.026958953589201,-0.00038874003803357,0.17943614721298],[0.027884151786566,-0.065357148647308,-0.058764461427927],[0.015336708165705,0.046549562364817,0.090115934610367]],[[-0.13482630252838,-0.014197481796145,-0.070465333759785],[-0.062193777412176,0.085482932627201,0.0029742256738245],[-0.013631616719067,-0.010395934805274,0.043987292796373]],[[-0.0018445980967954,0.053423471748829,0.005651889834553],[0.10108030587435,0.055620145052671,-0.049913980066776],[0.02362366206944,-0.10445047169924,-0.0036982456222177]],[[0.029374327510595,-0.028170080855489,-0.13324035704136],[0.089284628629684,0.040949050337076,0.074670396745205],[0.091852523386478,-0.044542718678713,-0.12088267505169]],[[-0.062214266508818,-0.02707889303565,0.044470470398664],[0.041093081235886,0.0042930082418025,-0.04723372682929],[0.015292818658054,0.015582572668791,-0.034368403255939]],[[-0.028594113886356,-0.016021316871047,-0.015961814671755],[-0.035753794014454,-0.14915288984776,-0.081504598259926],[0.0779148042202,-0.016315445303917,-0.13775199651718]],[[0.0052796886302531,0.14073467254639,-0.0038013253360987],[-0.041511151939631,-0.023662634193897,0.024367146193981],[-0.03300703316927,-0.079170562326908,-0.35115292668343]],[[0.026310978457332,0.092300705611706,-0.033215317875147],[0.052231349050999,0.016940832138062,0.026080282405019],[0.069189570844173,0.018488448113203,0.062563367187977]],[[-0.022034013643861,-0.061433289200068,0.04399748146534],[-0.019270788878202,-0.09941577911377,-0.082566730678082],[0.073000766336918,0.029310276731849,-0.014231297187507]],[[0.017532138153911,-0.0082232439890504,-0.067920513451099],[0.082186616957188,-0.016540134325624,0.12242991477251],[0.15565302968025,-0.065396673977375,-0.0080553228035569]],[[-0.053143084049225,0.250248670578,-0.089083649218082],[0.04589107260108,0.070765003561974,0.075568556785583],[-0.046404518187046,-0.0710658878088,-0.058633632957935]],[[-0.051073659211397,-0.079946652054787,-0.098646610975266],[0.015007455833256,-0.055144246667624,0.019450593739748],[-0.011645033024251,0.10373763740063,0.023488843813539]],[[0.0076146088540554,-0.036543272435665,-0.011735099367797],[0.079985424876213,-0.057059727609158,-0.046060808002949],[-0.023063214495778,-0.10230346024036,-0.067461036145687]],[[-0.1085435077548,-0.053396698087454,0.041518345475197],[0.10568519681692,0.027775153517723,0.22887586057186],[0.0059685711748898,-0.014789714477956,-0.0023691437672824]],[[-0.058374591171741,-0.09696489572525,0.016793506219983],[-0.025644322857261,0.073263227939606,-0.0080234054476023],[0.019335184246302,-0.096225924789906,0.030128134414554]],[[0.06137215718627,-0.053617775440216,-0.091698475182056],[0.1150599271059,-0.023614291101694,-0.0046481126919389],[-0.032472986727953,-0.040059097111225,0.077680602669716]],[[-0.013122295029461,0.013363862410188,-0.034887056797743],[-0.094487212598324,-0.053355220705271,-0.02332073636353],[-0.0061604119837284,-0.1183148175478,-0.2626188993454]],[[-0.038968585431576,0.019101038575172,0.082828730344772],[-0.11311570554972,0.10059367120266,0.1422808021307],[-0.0034524707589298,-0.066202275454998,-0.054034952074289]],[[-0.048335805535316,-0.049071941524744,0.032361656427383],[-0.1828565299511,-0.094245612621307,0.14756812155247],[-0.10559546947479,-0.012112820520997,-0.086486354470253]],[[-0.068302288651466,-0.029715249314904,-0.10327249765396],[-0.032883070409298,-0.11790534853935,-0.125731959939],[-0.021411713212729,-0.11911507695913,0.049540918320417]],[[-0.0050314394757152,0.015018224716187,-0.087506704032421],[-0.014025955460966,-0.075501121580601,0.062708720564842],[-0.034392453730106,0.0014060183893889,-0.03134685754776]],[[-0.039827112108469,0.0031927227973938,-0.0528893917799],[0.020766472443938,0.073119178414345,0.072790414094925],[-0.040370251983404,-0.066460728645325,-0.12813520431519]],[[-0.092725530266762,-0.0020103564020246,-0.013328704051673],[-0.0023918398655951,-0.043875347822905,-0.10112311691046],[0.019884783774614,-0.021339545026422,-0.0011468840530142]],[[0.14234536886215,0.17328810691833,0.1207352206111],[0.13843762874603,0.068324625492096,0.10351123660803],[-0.045473601669073,0.04005816206336,0.1171466037631]],[[-0.027262609452009,-0.03532138466835,-0.057276323437691],[-0.0087486039847136,-0.034179653972387,0.052709367126226],[0.12848663330078,0.012572767212987,0.19143165647984]],[[-0.00078597449464723,-0.021848084405065,-0.048503782600164],[0.030234171077609,-0.046131726354361,0.080916002392769],[-0.048716586083174,-0.021370965987444,0.061437182128429]],[[-0.19866755604744,-0.17814633250237,-0.114820972085],[0.062679067254066,0.019323667511344,0.012725446373224],[0.081376641988754,0.094432279467583,0.1191827505827]],[[-0.043157260864973,-0.0024678099434823,-0.087253086268902],[-0.099490992724895,-0.034656770527363,0.042010206729174],[-0.12483312934637,0.078785948455334,0.039779011160135]],[[0.081948041915894,0.061212059110403,-0.018072625622153],[-0.014346924610436,-0.098503537476063,-0.022450326010585],[0.012477818876505,-0.070258058607578,-0.071955785155296]],[[-0.018562151119113,0.045299351215363,0.092587158083916],[-0.06587116420269,0.042812015861273,-0.068144038319588],[-0.062068026512861,0.035776060074568,0.038770768791437]],[[-0.011807084083557,0.027339683845639,-0.07087767124176],[-0.08653300255537,-0.0090309884399176,-0.084685057401657],[-0.052896708250046,0.042836967855692,-0.027237562462687]],[[-0.015316183678806,0.15243238210678,-0.066086277365685],[0.05011785775423,-0.083852171897888,0.006575376726687],[0.15171487629414,-0.066313691437244,-0.025318469852209]],[[-0.1048489511013,0.11418818682432,-0.14074955880642],[0.040862038731575,0.016879856586456,0.048107217997313],[0.02361710742116,-0.12734337151051,-0.076462537050247]],[[0.045656137168407,0.089946448802948,0.1812592446804],[0.032772652804852,0.064605869352818,-0.10664436221123],[-0.14489676058292,0.053689051419497,-0.090410336852074]],[[0.0069774352014065,0.028750697150826,-0.18088366091251],[-0.080338388681412,-0.15299074351788,0.080209344625473],[-0.015632823109627,0.073786228895187,0.13253705203533]],[[-0.063932038843632,0.050705466419458,-0.0068420702591538],[-0.038084920495749,-0.0038862733636051,0.065317824482918],[0.11305053532124,-0.0033471141941845,0.071526527404785]],[[0.098795928061008,0.13923540711403,0.073731668293476],[-0.0096436226740479,-0.013632766902447,0.074075616896152],[0.036580234766006,0.070056475698948,0.11084344983101]],[[-0.046063259243965,-0.0030122639145702,-0.00012240736396052],[0.057497456669807,-0.027761159464717,-0.1145830899477],[-0.016729269176722,-0.09965205937624,-0.064987286925316]],[[0.013607820495963,-0.0035643805749714,0.046265438199043],[-0.01682179607451,0.0010217968374491,0.0076050637289882],[-0.049224410206079,-0.025989945977926,-0.053452223539352]],[[-0.028955783694983,0.00044866924872622,0.13215884566307],[-0.067314513027668,-0.088373087346554,-0.0066610355861485],[-0.095805644989014,-0.046458594501019,-0.1569901406765]],[[-0.027046125382185,0.01251569762826,-0.18589577078819],[-0.079014822840691,0.024082319810987,0.055459495633841],[-0.0034507696982473,0.01897843927145,0.12037105113268]],[[0.014762917533517,-0.12960906326771,-0.063591033220291],[-0.025399206206203,-0.0086174570024014,-0.11110383272171],[-0.07404862344265,0.027965096756816,0.036616772413254]],[[0.038547772914171,-0.074249252676964,-0.096553541719913],[-0.0091896206140518,-0.031539026647806,0.085524126887321],[-0.080676861107349,0.11126895993948,0.091367766261101]],[[-0.045082293450832,-0.14649632573128,-0.030498454347253],[0.14206200838089,0.045701246708632,0.010805413126945],[0.021431718021631,0.004070658236742,-0.052055034786463]],[[-0.040123969316483,0.048540756106377,-0.0016831428511068],[-0.067236967384815,-0.051521375775337,0.0037998438347131],[0.039443030953407,-0.017459720373154,-0.019385434687138]],[[0.060511361807585,0.03688795119524,-0.11616755276918],[0.009441789239645,0.1311029791832,0.026820734143257],[-0.053854376077652,-0.014996212907135,-0.13186140358448]],[[0.039127036929131,0.091012492775917,0.016753191128373],[-0.050118807703257,-0.094014324247837,-0.065088488161564],[0.05137724429369,0.14183190464973,0.13711449503899]],[[0.10393554717302,0.10065878927708,-0.11875887960196],[-0.096487835049629,-0.07093058526516,-0.016211630776525],[0.058337096124887,0.043047908693552,0.19177117943764]],[[-0.090714700520039,-0.0096018267795444,-0.15656374394894],[0.013842852786183,0.01173223555088,-0.10611292719841],[0.01902536675334,0.045892279595137,-0.0059555042535067]],[[0.002767646452412,0.11669161915779,-0.096781671047211],[0.01100574247539,0.057035569101572,0.032676495611668],[0.04544023796916,0.086412020027637,0.21303042769432]],[[-0.10163088142872,0.046663459390402,-0.071001604199409],[0.071349151432514,-0.0064373794011772,-0.072296373546124],[0.0134964780882,-0.048761144280434,-0.12718737125397]],[[0.12251868098974,-0.01084297336638,0.0034172949381173],[0.13412074744701,0.012448142282665,0.019480718299747],[0.19139328598976,0.082290977239609,-0.014850590378046]],[[0.016622059047222,0.0014887115685269,0.045769307762384],[-0.06424044072628,-0.054816655814648,-0.0050308131612837],[0.17424228787422,-0.049207285046577,-0.0069342125207186]],[[-0.012290584854782,-0.044989470392466,0.095430381596088],[0.018700854852796,-0.0060033607296646,-0.013430805876851],[0.09829918295145,-0.11619694530964,-0.074195832014084]],[[0.021416192874312,-0.055212777107954,0.028966125100851],[-0.042544990777969,-0.053371284157038,0.08505717664957],[-0.028603853657842,-0.0048207878135145,-0.2260610461235]],[[-0.074170790612698,0.034805785864592,0.041703924536705],[-0.047200292348862,0.071579791605473,0.095185704529285],[-0.036518320441246,-0.0614994764328,-0.046517569571733]],[[-0.055378768593073,0.11334114521742,-0.071493059396744],[-0.047577258199453,0.019173102453351,-0.12083189934492],[-0.066083751618862,-0.04754801094532,0.00088363233953714]],[[0.046245045959949,-0.034473329782486,0.043868653476238],[-0.0011885440908372,0.041118167340755,0.032447680830956],[-0.038019027560949,0.013419365510345,0.01825207658112]],[[0.074489764869213,-0.039589766412973,0.024047421291471],[0.08413702249527,0.15562300384045,0.0046011791564524],[0.069444037973881,0.19820632040501,0.048768557608128]],[[0.046636343002319,-0.01675914786756,0.040024019777775],[-0.0098029179498553,0.01979042775929,0.059502895921469],[-0.019616214558482,0.053569905459881,0.014313582330942]],[[-0.016980364918709,-0.078875876963139,-0.053712517023087],[0.05268182605505,-0.056675892323256,0.0050239590927958],[0.03903328999877,-0.053523179143667,0.039835073053837]],[[0.0048698098398745,0.026023617014289,0.052496645599604],[0.0082002207636833,0.060198791325092,0.17602847516537],[0.006096784491092,-0.07792853564024,-0.092097975313663]],[[0.073631748557091,-0.03778487816453,-0.12367730587721],[-0.02907694876194,0.023951528593898,-0.078340083360672],[-0.047427404671907,-0.052040051668882,-0.18720179796219]],[[-0.017550405114889,0.044096939265728,-0.024968594312668],[-0.078327670693398,-0.035561595112085,-0.046339131891727],[0.0071622952818871,-0.039340257644653,0.041089572012424]]],[[[0.0062652556225657,0.039525575935841,-0.044982638210058],[-0.0055906111374497,0.045581769198179,-0.0096607515588403],[-0.11594661325216,-0.045028068125248,-0.12267509102821]],[[-0.082423411309719,-0.1162903085351,-0.0019551774021238],[-0.10155656188726,-0.0029243528842926,-0.034039448946714],[-0.073583953082561,0.060895714908838,-0.030903957784176]],[[-0.015745365992188,-0.040652729570866,-0.034004136919975],[0.098995059728622,-0.010487684048712,-0.018173579126596],[0.13352411985397,-0.044921696186066,-0.061224732547998]],[[-0.059069465845823,-0.025417134165764,-0.12950694561005],[0.056450348347425,-0.0052456576377153,-0.023515351116657],[-0.072119534015656,-0.095966294407845,0.025770734995604]],[[-0.0031015865970403,-0.010615522973239,0.035659223794937],[0.034572552889585,0.0078930351883173,-0.047168619930744],[-0.016064783558249,0.043733157217503,0.061279807239771]],[[-0.0061194729059935,-0.06011525541544,-0.025550153106451],[-0.012855122797191,0.022674418985844,0.021469764411449],[0.022247582674026,-0.027873439714313,-0.002436097478494]],[[0.016537236049771,0.036028042435646,-0.1145334392786],[-0.029674381017685,0.036635134369135,-0.050572969019413],[-0.062364976853132,0.0026832658331841,-0.036362379789352]],[[-0.060071084648371,-0.08134102076292,0.035219632089138],[0.020109072327614,0.014122689142823,0.01097372546792],[0.073552004992962,-0.043607339262962,0.086617857217789]],[[0.13603685796261,0.038148798048496,0.054235547780991],[-0.022424811497331,-0.10107017308474,-0.15578055381775],[-0.0011946894228458,0.029237719252706,0.07786650210619]],[[0.056825261563063,0.10577523708344,0.012540973722935],[-0.14564517140388,-0.029809350147843,-0.027814172208309],[0.052098713815212,0.014098021201789,-0.023700611665845]],[[0.02224519662559,-0.00048620862071402,0.039130724966526],[-0.087533310055733,-0.092987217009068,0.028019523248076],[-0.06250212341547,-0.11413398385048,-0.034457989037037]],[[-0.033969312906265,-0.062601447105408,0.069438599050045],[0.078236103057861,-0.079386048018932,-0.0242830067873],[0.14149308204651,0.057392533868551,-0.01116131618619]],[[0.052923731505871,0.032192599028349,0.051823168992996],[-0.054488185793161,0.0058992342092097,0.039092965424061],[0.014739429578185,0.026806196197867,-0.034945338964462]],[[-0.060498688369989,-0.089444033801556,-0.090105183422565],[-0.0073635713197291,-0.0023519969545305,-0.061530724167824],[0.031042277812958,0.09355117380619,-0.13021098077297]],[[0.036815050989389,0.037368711084127,0.053193371742964],[0.019139630720019,-0.029596192762256,-0.030703332275152],[-0.0015660834033042,-0.025620261207223,0.062428247183561]],[[0.054620750248432,-0.048139996826649,0.094901114702225],[0.040590528398752,0.028905233368278,0.13592836260796],[-0.046006310731173,-0.029488056898117,0.14753991365433]],[[0.11357297748327,0.064653426408768,0.019433796405792],[0.0070656114257872,0.057054977864027,0.03046459518373],[0.011818642728031,0.01549288071692,0.11955013871193]],[[0.10846535861492,0.051179401576519,0.049338422715664],[0.01202277187258,0.0055725546553731,0.10006089508533],[0.075194098055363,-0.081550985574722,-0.042680282145739]],[[0.0063710701651871,0.033762812614441,-0.10566648840904],[-0.049618173390627,-0.082994572818279,-0.054678816348314],[-0.069851040840149,-0.0050995852798223,-0.11910581588745]],[[0.041193958371878,-0.033846288919449,-0.091925367712975],[-0.010265184566379,-0.0031077326275408,0.060612559318542],[0.014375873841345,-0.026275740936399,-0.024688437581062]],[[-0.0046835327520967,0.080732457339764,0.019233567640185],[-0.027488568797708,-0.09704802185297,-0.011085648089647],[-0.010639033280313,0.075813256204128,0.079495780169964]],[[0.0046630618162453,-0.040286410599947,0.028105204924941],[-0.10718186944723,0.06204204633832,0.11933729052544],[-0.081206023693085,0.010548608377576,0.074790261685848]],[[0.042293731123209,-0.0041738180443645,0.033486999571323],[-0.10157412290573,-0.047037985175848,-0.010870524682105],[-0.057163398712873,-0.097478695213795,0.099502898752689]],[[0.03183351457119,0.14099363982677,0.0079774698242545],[0.052925124764442,0.087043218314648,-0.045005716383457],[0.20299164950848,-0.0035034157335758,-0.076963692903519]],[[0.043638069182634,0.062237564474344,-0.053912483155727],[0.10402430593967,-0.094679802656174,0.039148565381765],[-0.08316870033741,-0.10979819297791,-0.031913816928864]],[[-0.0073687830008566,0.0017066114814952,0.09493275731802],[-0.028692465275526,-0.039846051484346,0.06021049618721],[-0.034243199974298,-0.035076789557934,0.030328718945384]],[[0.017570892348886,0.044768765568733,-0.090782918035984],[-0.070383578538895,0.02205746434629,-0.054392572492361],[0.015381447039545,-0.0060552977956831,0.09984777122736]],[[-0.066276110708714,-0.063627891242504,-0.025743963196874],[-0.13636930286884,-0.057799700647593,0.053571548312902],[-0.076629415154457,0.0099916709586978,-0.0081507964059711]],[[-0.092997610569,-0.0051417299546301,0.011868184432387],[0.047340866178274,-0.036974336951971,-0.016398346051574],[-0.028241457417607,0.01727132871747,-0.10715466737747]],[[-0.055824637413025,-0.0417092256248,0.034927390515804],[0.040232852101326,0.03785515576601,0.019764127209783],[-0.029280552640557,-0.12505421042442,0.030856695026159]],[[0.048676121979952,0.091533921658993,0.019121363759041],[0.013666939921677,0.044103268533945,0.042579475790262],[-0.024992670863867,0.073484160006046,-0.031599666923285]],[[0.036349277943373,-0.16082011163235,-0.099014841020107],[-0.015309615060687,2.8928647225257e-05,-0.057271108031273],[-0.051011953502893,-0.017279649153352,0.011773853562772]],[[0.016566589474678,-0.0011932487832382,0.072490662336349],[0.071803502738476,0.015880448743701,-0.03036180511117],[0.014247968792915,-0.078793793916702,-0.039179034531116]],[[0.062865771353245,0.043950535356998,-0.08420205116272],[0.12355538457632,0.053128976374865,0.027004070580006],[-0.0066030463203788,0.076300017535686,0.022048033773899]],[[-0.083478026092052,0.0096206516027451,0.0065627824515104],[0.050966031849384,-0.014397487044334,-0.036585364490747],[0.017901184037328,-0.029543001204729,-0.066166333854198]],[[0.016856050118804,0.043788589537144,0.078506171703339],[0.065960615873337,0.034519020467997,0.075677700340748],[-0.011599346064031,0.0083952574059367,0.053229168057442]],[[-0.071500308811665,-0.088368028402328,0.11186674237251],[0.094866521656513,-0.0031971780117601,-0.021435102447867],[-0.039599470794201,-0.013924304395914,0.0087517965584993]],[[-0.063846960663795,-0.036633551120758,0.08295638859272],[0.080552890896797,-0.0096869040280581,0.041969269514084],[-0.003735336009413,0.027096912264824,0.059142328798771]],[[-0.10243267565966,-0.02575702406466,-0.11400676518679],[-0.14473015069962,0.025676345452666,-0.013558693230152],[-0.032183133065701,0.090208567678928,0.043087717145681]],[[0.04604460299015,-0.026558585464954,-0.02429747954011],[-0.069793410599232,-0.085264727473259,-0.0074043478816748],[-0.08170285820961,0.069692380726337,-0.038279864937067]],[[-0.0043526920489967,-0.077948644757271,-0.025844002142549],[-0.044450279325247,-0.039033900946379,0.013237204402685],[0.051765583455563,0.0010740745346993,-0.024636287242174]],[[-0.00048449996393174,-0.052460454404354,-0.0062202368862927],[0.05992292240262,0.02957565151155,-0.011698910966516],[-0.059222187846899,0.032461654394865,-0.067533977329731]],[[-0.056908283382654,0.028047058731318,-0.011180626228452],[0.019360033795238,-0.018563628196716,-0.015523333102465],[-0.16676902770996,0.004108945839107,-0.010310360230505]],[[0.014032121747732,-0.033643513917923,0.068385370075703],[0.14739535748959,0.03376591578126,0.061084225773811],[0.050117913633585,0.087418951094151,0.072108127176762]],[[0.04220313206315,-0.10828804969788,-0.017008375376463],[0.11988857388496,-0.02799822948873,0.052360355854034],[0.027148745954037,-0.030247619375587,-0.10324101895094]],[[0.10435286164284,0.009243855252862,0.14938823878765],[-0.031370334327221,-0.088138774037361,0.014808808453381],[0.014094762504101,-0.017376573756337,-0.0051926700398326]],[[-0.032103687524796,-0.063127145171165,-0.06092806532979],[-0.12858825922012,0.031759839504957,-0.079689644277096],[-0.10879521816969,-0.037672147154808,0.10222370922565]],[[0.034342251718044,0.066925555467606,0.0016994954785332],[0.083826988935471,0.02793107740581,-0.11849626153708],[0.065907686948776,0.024452647194266,-0.029303634539247]],[[-0.15371365845203,-0.080928936600685,0.040800236165524],[0.019346496090293,-0.011835355311632,0.04745664447546],[-0.0071082501672208,0.020212622359395,-0.1233614012599]],[[0.035813208669424,-0.025690777227283,0.102354131639],[-0.083469055593014,-0.05093777179718,0.035971198230982],[0.042843837291002,-0.10854937136173,-0.089929230511189]],[[0.082142017781734,0.045238919556141,-0.027887009084225],[-0.025056391954422,-0.016412818804383,-0.0048963841982186],[-0.028301870450377,0.019993986934423,-0.040426097810268]],[[0.071547351777554,0.049614358693361,0.021627573296428],[0.14146076142788,0.014634002000093,-0.017595525830984],[-0.043431650847197,0.08262125402689,0.017057409510016]],[[0.016144953668118,-0.066054277122021,-0.026497080922127],[0.015600190497935,0.072482943534851,0.065472804009914],[0.00261638360098,-0.070216827094555,-0.063709698617458]],[[-0.017005937173963,0.025080151855946,-0.015198810957372],[-0.065507873892784,-0.052285078912973,0.019924266263843],[0.11935433000326,-0.10215510427952,-0.016657643020153]],[[0.075104020535946,-0.034584678709507,0.03757431358099],[-0.009578799828887,-0.035744413733482,-0.041461754590273],[-0.098917171359062,0.00019629938469734,0.033722426742315]],[[-0.018145913258195,-0.011606003157794,-0.0012195588788018],[-0.010952998884022,-0.0078647546470165,-0.045866787433624],[-0.0905856564641,-0.048853289335966,-0.14338676631451]],[[-0.013500713743269,0.006744752638042,-0.078187927603722],[-0.052163187414408,-0.068492390215397,-0.039358727633953],[0.059343636035919,0.0047843814827502,-0.16462200880051]],[[-0.14605015516281,-0.01150746550411,0.0201575178653],[0.0021412100177258,-0.032481119036674,0.13244684040546],[0.0071841021999717,0.097129136323929,0.018769942224026]],[[0.047292586416006,-0.044290345162153,0.016523346304893],[-0.013164618983865,-0.074936747550964,0.025706144049764],[-0.020543189719319,-0.10286726057529,-0.084781914949417]],[[-0.09220352768898,-0.04683830961585,-0.13923862576485],[0.096230007708073,0.045342832803726,0.016754437237978],[0.10561746358871,0.054687365889549,0.016924571245909]],[[0.0055458904244006,0.090722218155861,0.045612741261721],[0.053438745439053,-0.17042702436447,0.045037571340799],[-0.010777848772705,0.027307569980621,0.021088838577271]],[[-0.029195114970207,0.03345050662756,0.030255936086178],[-0.12422259896994,-0.020625649020076,0.092426992952824],[-0.080441541969776,0.078490853309631,-0.07905937731266]],[[-0.00070507341297343,-0.014503461308777,0.063845306634903],[0.019652018323541,-0.088888466358185,0.075993672013283],[0.041202705353498,-0.041781287640333,-0.0093626109883189]],[[0.0010797409340739,-0.072557598352432,-0.052308071404696],[0.047096833586693,-0.08280111849308,0.086648486554623],[0.029924126341939,-0.008287169970572,-0.010729008354247]]],[[[0.0071962033398449,0.071388281881809,0.03848685324192],[-0.066175326704979,0.056137960404158,0.11490474641323],[-0.057713627815247,-0.0089753223583102,0.065027393400669]],[[0.015869688242674,0.010985307395458,0.033995788544416],[-0.036120593547821,0.068083934485912,-0.12569697201252],[-0.017601715400815,-0.025214334949851,-0.044630274176598]],[[0.063473001122475,0.024907313287258,-0.098589912056923],[-0.047862760722637,-0.080120824277401,-0.02807698585093],[-0.029278449714184,-0.15617349743843,-0.0042560347355902]],[[-0.070505268871784,0.055994335561991,0.14590626955032],[0.031620401889086,0.0095013296231627,-0.1243414953351],[-0.081090465188026,0.12640783190727,0.08821277320385]],[[0.099037170410156,0.019682936370373,-0.056650426238775],[-0.018098250031471,0.0099465381354094,0.016992660239339],[-0.019056856632233,-0.085149951279163,0.0017040682723746]],[[0.090984359383583,-0.013909991830587,0.0079699261114001],[0.029486030340195,-0.14901964366436,-0.067111305892467],[-0.014005521312356,-0.058094300329685,-0.055144663900137]],[[-0.073815181851387,-0.066500142216682,-0.088929079473019],[0.070019915699959,0.071494400501251,-0.0035249255597591],[0.010890896432102,-0.054235238581896,0.041328549385071]],[[-0.09676194190979,-0.033483047038317,-0.036417242139578],[-0.013170084916055,-0.04216967523098,0.12924234569073],[-0.069862388074398,-0.10652753710747,-0.18378128111362]],[[-0.049993876367807,-0.055417779833078,0.062729485332966],[0.10486602783203,-0.077970683574677,-0.024288229644299],[0.0055656866170466,0.0029900360386819,-0.033499110490084]],[[-0.062153823673725,-0.18079152703285,0.012380973435938],[0.033566150814295,-0.068734541535378,0.10274464637041],[0.077815882861614,0.040066748857498,0.046516507863998]],[[0.02317488193512,0.029268918558955,-0.021932233124971],[-0.11789409071207,-0.07753923535347,-0.018419248983264],[-0.16656276583672,-0.13127034902573,-0.035975851118565]],[[-0.027011021971703,-0.045196663588285,-0.096882030367851],[0.023943910375237,-0.031547520309687,0.045961823314428],[0.0034698941744864,-0.0034313653595746,0.083121463656425]],[[-0.089374728500843,-0.11639180779457,-0.0045231226831675],[0.049133107066154,-0.1687513589859,-0.061179336160421],[0.065666645765305,-0.027589892968535,-0.041088331490755]],[[-0.015451520681381,-0.062082730233669,0.24559332430363],[-0.013154022395611,0.030697531998158,0.076457507908344],[0.10533908754587,0.15314635634422,-0.045950476080179]],[[-0.040647700428963,0.0027964028995484,0.05736917257309],[0.10722327977419,-0.13455221056938,0.068179503083229],[-0.072631753981113,0.0071586174890399,0.043681003153324]],[[-0.019796650856733,-0.064169399440289,-0.047075673937798],[-0.022082276642323,0.078697212040424,0.0097332550212741],[0.065887615084648,-0.12690745294094,0.063697762787342]],[[-0.010309893637896,0.010481853969395,-0.035914346575737],[-0.037757929414511,0.08435121178627,-0.012562462128699],[-0.039249524474144,-0.058490924537182,0.10646522045135]],[[-0.02157193608582,-0.14837771654129,0.070881217718124],[0.034811891615391,-0.066477052867413,-0.12329853326082],[0.030658883973956,-0.017899587750435,0.031689289957285]],[[0.015197817236185,-0.053655993193388,0.055979445576668],[0.029688138514757,-0.06300101429224,-0.055922448635101],[-6.4188163378276e-05,-0.070199258625507,0.087749950587749]],[[-0.015637977048755,-0.0099601428955793,-0.003239618614316],[-0.016188465058804,0.0097671458497643,-0.10582806915045],[-0.053837455809116,-0.0563944876194,0.061689712107182]],[[-0.071513555943966,0.058543633669615,-0.003120174864307],[0.0022274306975305,-0.021531756967306,-0.0026820546481758],[0.08197146654129,0.045498840510845,-0.0345225520432]],[[0.00020699125889223,0.04508538916707,0.050309341400862],[-0.0034049330279231,-0.030934350565076,-0.022526830434799],[0.02689659409225,-0.057127725332975,-0.050578556954861]],[[0.050140157341957,0.050099983811378,-0.074435904622078],[-0.0035753564443439,0.017058979719877,-0.047043282538652],[-0.2007157355547,-0.046551104635,-0.051832985132933]],[[0.12292041629553,0.014355221763253,0.14700856804848],[-0.037140469998121,-0.0093994913622737,0.044487729668617],[0.0031779503915459,0.11623129248619,0.093432009220123]],[[0.061063542962074,-0.11163555830717,-0.080514132976532],[0.026139931753278,0.0227629262954,0.12848821282387],[-0.0014195840340108,0.14843082427979,0.01620289310813]],[[0.061351336538792,-0.07995181530714,-0.035893682390451],[0.0081753898411989,-0.053231339901686,0.016400406137109],[-0.011757299304008,0.058413974940777,0.061248045414686]],[[0.096428513526917,-0.025999177247286,-0.12901341915131],[0.056717988103628,0.047579072415829,0.0061121815815568],[0.031654227524996,0.058616578578949,-0.013497597537935]],[[0.0084257097914815,-0.05317235738039,0.18448704481125],[0.056710463017225,-0.029662664979696,-0.10054945200682],[-0.079436086118221,-0.055743653327227,0.041182417422533]],[[-0.080200292170048,0.0088916467502713,-0.15329627692699],[0.02248178049922,0.033804934471846,0.011498175561428],[-0.03471503034234,0.020219570025802,-0.05336120352149]],[[-0.075419165194035,0.0019358948338777,-0.076290391385555],[-0.073758572340012,0.038172967731953,0.011386998929083],[-0.061561089009047,-0.023716257885098,0.045013297349215]],[[-0.13986659049988,-0.069034621119499,0.033291667699814],[-0.09815689176321,0.088875316083431,0.052365820854902],[-0.14712798595428,0.092143677175045,0.093871422111988]],[[0.028035869821906,-0.043763726949692,-0.017393732443452],[0.054927174001932,0.064059786498547,-0.057962957769632],[0.010613851249218,0.10731724649668,-0.037947561591864]],[[-0.21216443181038,-0.051376640796661,0.018621070310473],[-0.010204889811575,-0.0012648389674723,-0.062920190393925],[-0.061061587184668,0.079994715750217,0.0004208718019072]],[[-0.021010439842939,0.11140344291925,0.034374006092548],[0.080630511045456,-0.0027094960678369,-0.027553005144],[-0.1533018797636,0.078688353300095,-0.046579159796238]],[[-0.031295742839575,0.0072866748087108,0.087145730853081],[-0.083908133208752,-0.04520595818758,0.02813907340169],[0.16026097536087,0.014994760043919,-0.10534962266684]],[[0.024525377899408,0.072160191833973,0.061935875564814],[-0.058545459061861,-0.097794286906719,-0.024720054119825],[0.0074820439331234,-0.041792396456003,-0.044214978814125]],[[0.10393613576889,-0.074003852903843,0.032014220952988],[-0.059698667377234,0.078385606408119,0.077613413333893],[0.06764855235815,-0.0083837667480111,0.077803529798985]],[[0.010779535397887,0.047110326588154,0.0057637766003609],[-0.021593941375613,-0.036541182547808,0.04298510402441],[0.010180012322962,-0.14601364731789,0.0060864300467074]],[[-0.1075431779027,-0.020140102133155,0.049224551767111],[-0.040217839181423,0.05818747729063,0.028721110895276],[-0.072434641420841,-0.0049594221636653,0.030973536893725]],[[-0.10267205536366,0.022879462689161,-0.041318546980619],[0.050250556319952,0.0079907709732652,-0.046669747680426],[0.014820002019405,0.0037980894558132,-0.080477148294449]],[[-0.17135973274708,-0.056881211698055,0.031728267669678],[-0.019168147817254,0.046851467341185,-0.12575204670429],[-0.031152788549662,-0.069368407130241,-0.033248748630285]],[[0.038875132799149,-0.12161253392696,-0.088233269751072],[-0.044297404587269,0.025837853550911,-0.023750504478812],[0.16736570000648,-0.011254000477493,-0.11504942178726]],[[-0.041959173977375,0.048800013959408,0.13201686739922],[-0.063235372304916,-0.034914657473564,0.057544734328985],[0.052064593881369,-0.046085245907307,-0.12973110377789]],[[-0.049409657716751,-0.011727649718523,0.024204012006521],[-0.047929618507624,-0.012013423256576,-0.016594033688307],[0.013506365008652,0.028240701183677,-0.075907312333584]],[[0.0037980370689183,-0.059509061276913,-0.098884515464306],[-0.075967021286488,0.027869682759047,0.072533182799816],[0.05770954862237,-0.12737983465195,-0.10105739533901]],[[-0.01835123077035,-0.14595723152161,0.01208543498069],[0.16127672791481,0.02780544012785,-0.016467897221446],[0.016322929412127,0.067825689911842,-0.054367505013943]],[[0.03122822381556,0.017673743888736,0.064340963959694],[0.021178252995014,-0.11356804519892,-0.13025969266891],[0.04472491145134,-0.040051739662886,0.12698444724083]],[[0.11635675281286,0.089964114129543,0.017468238249421],[0.01740794070065,-0.099371373653412,-0.05327270179987],[-0.10227211564779,-0.02179379761219,0.020893927663565]],[[0.059779949486256,0.006218898575753,0.074516072869301],[0.097717471420765,-0.043133959174156,-0.012579798698425],[-0.043486818671227,-0.091172322630882,0.089473225176334]],[[-0.038589108735323,0.083838313817978,0.084291346371174],[0.0061256098560989,0.1138062030077,-0.068086005747318],[0.040348716080189,0.021728968247771,0.096450991928577]],[[0.088982149958611,-0.039552543312311,-0.0076323742978275],[-0.033124081790447,-0.033774331212044,-0.0071459533646703],[-0.015409343875945,-0.046609088778496,-0.0040094992145896]],[[0.063554175198078,0.12380593270063,0.09022268652916],[-0.053807623684406,-0.019748751074076,0.038275819271803],[0.032955221831799,-0.099414922297001,0.025561079382896]],[[0.081621028482914,-0.0070579778403044,0.098159268498421],[0.048036005347967,0.03273968026042,-0.007593379355967],[0.0060983523726463,-0.0065336446277797,-0.0097498176619411]],[[0.0074241827242076,-0.038858100771904,-0.021853074431419],[0.11771456152201,0.072625242173672,0.065370857715607],[-0.026878150179982,-0.065604642033577,0.0035119117237628]],[[-0.044136445969343,-0.031958360224962,0.022303260862827],[-0.04578609764576,-0.060365837067366,-0.035122126340866],[-0.095185004174709,-0.047683514654636,-0.16610768437386]],[[0.040183439850807,-0.075375743210316,-0.065512038767338],[0.02572875097394,0.04866100102663,0.012690462172031],[-0.024553107097745,0.1363483518362,0.039932187646627]],[[0.0034346228931099,-0.12289727479219,0.027035152539611],[0.036024667322636,0.014265601523221,0.047682166099548],[0.038381464779377,-0.016596993431449,0.051555626094341]],[[0.018527820706367,0.002279790583998,-0.079666294157505],[-0.079216100275517,-0.012734870426357,-0.087969787418842],[-0.012335774488747,-0.017383925616741,0.084731049835682]],[[-0.035466898232698,-0.080622956156731,-0.083003781735897],[-0.0099123558029532,-0.004371480550617,0.027788879349828],[-0.033945344388485,0.086590066552162,0.17247161269188]],[[0.0087983002886176,0.17245005071163,-0.10518445819616],[0.027603432536125,0.1202537715435,-0.04082877933979],[-0.010211280547082,-0.033896867185831,-0.099862784147263]],[[-0.0092359157279134,-0.056648373603821,-0.0013977319467813],[0.089921325445175,0.045970924198627,-0.021160703152418],[0.14398835599422,-0.091962561011314,-0.017010275274515]],[[-0.063646629452705,-0.0082831932231784,-0.072534471750259],[-0.015143814496696,-0.052898362278938,0.064760349690914],[-0.08856312930584,-0.010106597095728,-0.02635682374239]],[[-0.08092500269413,-0.1074315533042,0.062018845230341],[-0.011388358660042,-0.20077911019325,0.061948042362928],[0.00085788534488529,-0.045788373798132,0.043906845152378]],[[0.010674809105694,0.055556803941727,0.019456963986158],[0.092934012413025,-0.072500810027122,0.0048728208057582],[0.017721880227327,-0.0830073133111,0.0026067979633808]]],[[[-0.048662967979908,-0.13258756697178,0.027745265513659],[-0.078363716602325,-0.065381035208702,0.062434263527393],[0.034392736852169,-0.0042920229025185,0.0028069319669157]],[[-0.035712134093046,-0.062494158744812,-0.11464136838913],[0.12011003494263,-0.053058125078678,0.090498901903629],[0.042435102164745,0.032940529286861,0.029990889132023]],[[0.039351355284452,0.16277930140495,0.070770412683487],[0.0011994630331174,-0.11789286881685,-0.1977214962244],[0.028212796896696,0.049537047743797,-0.026812005788088]],[[-0.033559300005436,-0.0027341267559677,0.045420318841934],[-0.066031537950039,0.031092530116439,-0.16627295315266],[0.023503795266151,0.09389366954565,0.033549841493368]],[[0.088756233453751,-0.047759208828211,-0.13377407193184],[-0.11824019253254,-0.010420992039144,-0.035461574792862],[-0.13152162730694,-0.023702673614025,-0.059314277023077]],[[-0.042135704308748,0.024276960641146,0.011823356151581],[0.06815467774868,0.049732200801373,-0.023807752877474],[-0.054474085569382,-0.10215590149164,-0.10719675570726]],[[-0.074449062347412,-0.095347240567207,-0.15594530105591],[0.047341655939817,-0.090098552405834,0.013684941455722],[-0.018990410491824,-0.045303739607334,0.08610774576664]],[[-0.13855804502964,-0.021123530343175,-0.03112973831594],[-0.037108510732651,-0.081316001713276,-0.10169308632612],[-0.070828594267368,-0.066042378544807,-0.12103009223938]],[[-0.086790271103382,0.037620823830366,0.018874207511544],[-0.031000785529613,-0.041509672999382,0.011696426197886],[-0.10992100089788,-0.011011136695743,-0.11326975375414]],[[0.012757344171405,0.055677801370621,-0.021913899108768],[0.035605512559414,0.041741214692593,0.017482014372945],[-0.018923230469227,-0.0007601241231896,0.036714673042297]],[[0.034362085163593,0.091620668768883,-0.082407042384148],[-0.068620890378952,0.030572794377804,-0.095062702894211],[0.016736468300223,0.063657365739346,-0.0094375880435109]],[[0.0031224607955664,-0.12261299043894,-0.006765129044652],[0.046381503343582,0.076660595834255,0.020894100889564],[-0.023682612925768,0.013450589030981,-0.003207951085642]],[[0.069961704313755,-0.091182045638561,-0.057381607592106],[-0.035620205104351,0.110674880445,-0.12054562568665],[0.040399089455605,-0.014917209744453,-0.10207875818014]],[[0.010570880025625,-0.07703173160553,-0.0050693331286311],[-0.088964022696018,-0.041093472391367,0.071840487420559],[-0.043553244322538,-0.041688866913319,-0.060776330530643]],[[0.026289232075214,-0.12010972946882,-0.037010535597801],[0.029716802760959,0.044375088065863,-0.078175410628319],[0.022227929905057,0.10091250389814,-0.067898206412792]],[[-0.041081167757511,-0.11634109169245,0.17645424604416],[0.10814405232668,-0.034630637615919,-0.11570237576962],[-0.0051396433264017,-0.039685562252998,0.020199665799737]],[[-0.054064251482487,-0.0039922683499753,-0.082980163395405],[0.031341746449471,0.07059945166111,0.11605489253998],[-0.074471950531006,0.012223063968122,0.026455758139491]],[[-0.092814832925797,-0.049853760749102,0.024528119713068],[-0.014849093742669,-0.075694881379604,0.083603501319885],[-0.048485543578863,-0.1145049482584,0.1167705655098]],[[0.0032676048576832,-0.047241311520338,-0.077374570071697],[-0.093251593410969,0.043583828955889,-0.029703922569752],[0.09000576287508,-0.094084300100803,-0.047420717775822]],[[0.0086307171732187,0.072859086096287,0.00079323945101351],[0.029170596972108,0.052004493772984,-0.11178332567215],[0.030353248119354,-0.086714535951614,-0.0096017457544804]],[[0.041243314743042,0.10223405063152,0.043952696025372],[0.043415788561106,0.025398099794984,0.073549889028072],[-0.0037619189824909,0.10324291139841,-0.0091709811240435]],[[-0.083504699170589,0.066706642508507,-0.024969544261694],[-0.074502259492874,0.030977243557572,0.031959891319275],[-0.022089347243309,0.0056768972426653,0.0071294088847935]],[[0.035015475004911,-0.0020131326746196,-0.037654262036085],[-0.11020518094301,0.076895698904991,-0.11312721669674],[-0.10002038627863,0.077469661831856,0.056153301149607]],[[-0.010538193397224,0.055950026959181,0.155063778162],[-0.056843716651201,0.093444459140301,0.1070164218545],[0.0070628030225635,-0.065693616867065,-0.040058519691229]],[[-0.024316556751728,0.042882688343525,0.24068367481232],[-0.020497042685747,0.082364104688168,0.090014219284058],[-0.071450904011726,0.018868640065193,0.074444219470024]],[[0.047251425683498,-0.093056999146938,-0.06862510740757],[0.090879179537296,-0.04835694283247,-0.013163799419999],[0.071965016424656,0.05486860871315,-0.04759880900383]],[[0.056816343218088,-0.073973216116428,-0.14459903538227],[0.025611976161599,0.04847539588809,0.055616747587919],[-0.019831212237477,-0.13761827349663,-0.099586501717567]],[[0.068070970475674,-0.14496323466301,0.021141335368156],[-0.11548850685358,-0.078050822019577,0.028045363724232],[0.016860971227288,0.0090506887063384,0.04059237614274]],[[0.06086204200983,0.074007041752338,-0.046422246843576],[0.062731847167015,-0.034641765058041,-0.13645794987679],[0.023451764136553,-0.027572074905038,-0.041935380548239]],[[-0.10076929628849,-0.12981091439724,-0.01688733510673],[0.10731206089258,0.068764545023441,-0.081138446927071],[0.068880334496498,-0.02821471914649,0.098668172955513]],[[-0.037984199821949,0.14497154951096,-0.083783656358719],[0.018207266926765,0.029729411005974,-0.078396126627922],[-0.042602192610502,-0.13234980404377,0.064131766557693]],[[-0.063604094088078,0.0010034601436928,-0.17531590163708],[0.033575359731913,0.084235407412052,-0.059505168348551],[-0.016803078353405,-0.058209490031004,-0.04144212603569]],[[0.12224815785885,-0.080508932471275,0.17012171447277],[-0.079940102994442,0.020801385864615,-0.027584530413151],[0.13052746653557,-0.017651783302426,0.13530820608139]],[[0.1790410131216,-0.032094322144985,-0.021752864122391],[-0.016276365146041,0.020167639479041,0.0031571215949953],[0.10492376238108,0.033337358385324,0.077254250645638]],[[-0.10983322560787,-0.014453772455454,0.01799794472754],[-0.12279150635004,0.054821237921715,0.0054320306517184],[0.034997303038836,-0.079373300075531,-0.032659638673067]],[[0.11935333162546,-0.0010929461568594,-0.065964348614216],[0.11323476582766,0.11393918842077,-0.010662872344255],[0.067687764763832,0.092558123171329,0.10603304207325]],[[0.095073275268078,0.072276033461094,-0.0093330573290586],[-0.019778633490205,0.022714568302035,0.059557463973761],[0.097767166793346,0.10307351499796,-0.059281602501869]],[[-0.0032283465843648,-0.034423064440489,-0.1297225356102],[-0.071275845170021,-0.0058542457409203,-0.12445043027401],[-0.066992662847042,0.023679200559855,0.006349871866405]],[[0.066717766225338,-0.069975972175598,-0.045861963182688],[-0.012825513258576,0.014395738020539,-0.074215620756149],[-0.06137390434742,0.064096890389919,-0.00090023659868166]],[[0.030862405896187,0.081711433827877,-0.10369491577148],[0.029848255217075,0.0072696399874985,0.0092674903571606],[0.048114195466042,-0.046266280114651,-0.013774776831269]],[[0.025598835200071,-0.058243468403816,0.010893927887082],[4.2776140617207e-05,-0.11248941719532,0.2145521491766],[-0.0941047295928,-0.043444689363241,0.063505031168461]],[[-0.02794922888279,0.024266377091408,0.077400274574757],[-0.038555234670639,-0.097297765314579,-0.015363332815468],[0.086077801883221,-0.097858376801014,0.061188962310553]],[[0.00095493328990415,0.14720465242863,-4.4397893361747e-07],[0.16132985055447,-0.053554940968752,-0.085154347121716],[0.062966175377369,-0.05332213640213,-0.055285066366196]],[[0.050834655761719,-0.090107388794422,0.10059340298176],[0.13662450015545,-0.11181996017694,-0.081644393503666],[0.0110730715096,-0.09375312179327,0.054842751473188]],[[0.050432994961739,-0.13044755160809,-0.055294021964073],[-0.16393496096134,0.03759066388011,-0.10720206797123],[0.08196198195219,0.059628050774336,-0.027322815731168]],[[-0.03506788611412,-0.10586521029472,0.028990929946303],[0.12970416247845,-0.01798283867538,-0.093622453510761],[0.017461728304625,0.13111451268196,-0.07952955365181]],[[0.048065517097712,-0.10022822767496,-0.076416507363319],[0.13888472318649,-0.053583543747663,0.067474119365215],[-0.0077023431658745,0.12243092805147,-0.067719511687756]],[[0.14425909519196,-0.097959190607071,-0.17542511224747],[0.024285864084959,-0.011762393638492,-0.066983617842197],[-0.064473114907742,0.10366556793451,0.080447532236576]],[[0.083779901266098,0.0050303726457059,-0.12680374085903],[-0.036285657435656,0.09503211081028,-0.079512469470501],[0.0018701803637668,0.052183013409376,0.092475727200508]],[[-0.050720889121294,-0.048285603523254,-0.0038623486179858],[0.010320918634534,0.12194232642651,-0.0045013120397925],[0.011021007783711,0.020308962091804,-0.18825522065163]],[[0.070129327476025,0.051945969462395,-0.02356724627316],[-0.084541656076908,-0.14002507925034,-0.11398290097713],[0.14109854400158,-0.046568118035793,-0.037921421229839]],[[0.060371428728104,0.22538551688194,0.13081440329552],[0.04403218999505,0.017688943073153,0.010806180536747],[-0.05921958014369,-0.18399113416672,0.073885403573513]],[[0.048516105860472,0.10658050328493,-0.0041317981667817],[0.060890566557646,0.017571294680238,-0.10615852475166],[0.012961516156793,-0.027131220325828,0.080543272197247]],[[0.016883032396436,0.16248540580273,0.11528202146292],[0.057591032236814,0.016423352062702,0.089540436863899],[-0.12484574317932,-0.030967216938734,0.03581877425313]],[[-0.064993813633919,-0.080074995756149,0.094488508999348],[-0.0082950368523598,-0.11703164130449,0.10884535312653],[-0.072135016322136,0.0070580770261586,0.030319813638926]],[[-0.15104891359806,-0.017745267599821,0.066355459392071],[0.026962859556079,-0.026417136192322,-0.022538816556334],[-0.00047666905447841,0.055084519088268,-0.037540342658758]],[[0.018100321292877,0.1140012294054,0.058202102780342],[-0.066242158412933,-0.0070583978667855,0.0072011966258287],[0.052495945245028,0.048682998865843,0.035304304212332]],[[-0.054665628820658,0.026452321559191,-0.03586145862937],[0.014343827962875,0.012389026582241,0.048550963401794],[0.0034143975935876,0.048212397843599,0.075043715536594]],[[-0.019445681944489,0.1443195194006,0.021852057427168],[-0.016672128811479,0.038547825068235,0.044548362493515],[-0.0033691979479045,0.026779033243656,-0.055295903235674]],[[-0.02639271505177,0.010624930262566,0.017620999366045],[0.11871639639139,-0.054216399788857,0.095203652977943],[-0.17423357069492,-0.035384904593229,0.0037910975515842]],[[0.03553332388401,0.014559936709702,0.0047260131686926],[0.027326643466949,0.070990264415741,-0.14837674796581],[0.0015304732369259,-0.054320517927408,0.011935222893953]],[[0.011972271837294,-0.01606110483408,-0.054746143519878],[0.089109465479851,0.087388940155506,0.027181910350919],[-0.011955760419369,0.069596365094185,-0.11310168355703]],[[-0.05164460465312,0.17790758609772,0.031676195561886],[0.028975270688534,0.023222137242556,0.062032520771027],[-0.073195338249207,-0.078863494098186,0.076804101467133]],[[-0.0033399760723114,-0.077350743114948,-0.046033173799515],[-0.16164641082287,-0.049249213188887,0.032338213175535],[-0.17321652173996,-0.023915117606521,-0.091188848018646]]],[[[-0.018924189731479,-0.032687868922949,-0.14990781247616],[-0.008513574488461,0.040563698858023,-0.029470710083842],[0.011112619191408,0.02166367508471,0.012485158629715]],[[-0.031435091048479,-0.039691884070635,0.10329908877611],[-0.044994052499533,0.033759795129299,-0.028733506798744],[0.042867697775364,0.045228634029627,0.085550807416439]],[[0.016452383249998,-0.025517821311951,-0.076810136437416],[0.024107895791531,-0.1269538551569,-0.055317129939795],[0.026323741301894,-0.14023134112358,0.039209738373756]],[[0.11176536232233,0.046021949499846,0.064164221286774],[0.025488615036011,-0.050077341496944,-0.036203172057867],[-0.042591255158186,0.043937142938375,-0.090720169246197]],[[-0.016811655834317,-0.046206269413233,0.021600538864732],[-0.012716628611088,-0.043035790324211,0.033122695982456],[0.023236624896526,-0.11958886682987,0.041908919811249]],[[-0.0529949888587,-0.012872100807726,-0.051433779299259],[-0.078097559511662,-0.16662910580635,-0.024064876139164],[-0.0029212501831353,-0.084237977862358,0.088604912161827]],[[-0.061624802649021,0.0014663123292848,0.092010855674744],[-0.1433207988739,0.023406758904457,0.035805832594633],[0.053215369582176,0.11128004640341,-0.057073760777712]],[[0.026896247640252,0.039778165519238,0.072249740362167],[0.088109701871872,0.0076033319346607,-0.0059671704657376],[0.060162730515003,-0.042278259992599,-0.062607876956463]],[[0.051989160478115,-0.066148422658443,-0.052124820649624],[-0.066097222268581,-0.074451349675655,-0.058908272534609],[0.0090952832251787,0.14559252560139,-0.00095353298820555]],[[-0.075049951672554,0.092954143881798,-0.1427394002676],[-0.002490078099072,-0.014022941701114,-0.11165262013674],[-0.042626339942217,-0.034970011562109,0.17183454334736]],[[0.063070483505726,-0.20007388293743,-0.14748387038708],[0.0073864315636456,-0.044759307056665,0.12238233536482],[-0.028156209737062,0.052940789610147,0.066394783556461]],[[0.0020530868787318,-0.017402403056622,-0.030094405636191],[-0.066723473370075,-0.018489133566618,0.02226367034018],[-0.0050210966728628,-0.032737649977207,-0.078473106026649]],[[-0.16509757936001,-0.028314197435975,0.044187728315592],[0.035178363323212,0.059780295938253,0.0044576921500266],[-0.081112459301949,0.011717951856554,-0.03196332976222]],[[-0.069928325712681,0.078327819705009,-0.054603710770607],[-0.049867033958435,0.021453592926264,-0.079540006816387],[-0.017759617418051,0.033153630793095,0.074609413743019]],[[-0.039265882223845,0.10805726796389,-0.13084374368191],[-0.050607245415449,-0.023871656507254,0.0020840549841523],[-0.058801330626011,-0.033888228237629,0.10553634911776]],[[0.10802053660154,0.13619402050972,0.094316124916077],[-0.18429638445377,0.043431263417006,-0.12700034677982],[-0.097472675144672,0.0046493071131408,0.17772422730923]],[[-0.044071480631828,-0.071751564741135,0.025417927652597],[0.073570236563683,0.042622376233339,-0.027475319802761],[-0.19487789273262,-0.0055962251499295,0.031043974682689]],[[-0.045007821172476,0.00073768326546997,0.075766108930111],[-0.087925054132938,-0.10674401372671,0.083518356084824],[0.067718409001827,-0.21128869056702,-0.025869922712445]],[[0.052538473159075,-0.13832947611809,0.026562532410026],[0.0034384028986096,-0.063983805477619,0.055995538830757],[0.040856678038836,0.0070366291329265,0.058938581496477]],[[-0.09336195141077,-0.081459857523441,-0.10331043601036],[0.075594358146191,-0.074431620538235,0.045684151351452],[0.10292460024357,-0.045433022081852,0.046358160674572]],[[-0.0345722399652,-0.030227012932301,0.041084941476583],[0.0098493192344904,0.072530426084995,0.059080269187689],[0.032112956047058,0.06349166482687,0.069136142730713]],[[0.0055647725239396,-0.027987631037831,-0.0020184752065688],[-0.040193099528551,0.033809430897236,0.0081569729372859],[-0.027039842680097,-0.0066145472228527,-0.10737296938896]],[[-0.019403716549277,-0.0053795664571226,-0.024426341056824],[0.061251498758793,-0.10977521538734,0.037407528609037],[0.060086224228144,-0.0805369541049,-0.018774138763547]],[[0.044809140264988,-0.020339693874121,-0.027866022661328],[-0.09381116181612,-0.0067429770715535,-0.15324531495571],[0.13488487899303,0.071755863726139,0.077872060239315]],[[0.080721065402031,-0.0059034004807472,-0.095517687499523],[0.021828291937709,0.0044253654778004,-0.075166583061218],[-0.018913893029094,0.02115879394114,0.15999168157578]],[[0.02848619222641,0.052712354809046,-0.055041432380676],[-0.020342031493783,-0.052528098225594,0.01178314909339],[0.066164821386337,-0.015899492427707,-0.045498725026846]],[[0.071924023330212,-0.061082538217306,0.062060464173555],[0.053969919681549,0.12715213000774,0.032562665641308],[-0.051563654094934,-0.021959520876408,-0.051980562508106]],[[-0.0034797126427293,0.011327726766467,-0.21737144887447],[-0.017320757731795,-0.047625694423914,-0.0966552272439],[0.035473939031363,-0.061734899878502,0.066110379993916]],[[-0.072725273668766,-0.13731850683689,-0.15527978539467],[-0.10840209573507,-0.075121611356735,0.07677610963583],[-0.031923163682222,0.1175956055522,-0.078596793115139]],[[0.12032990902662,-0.083904914557934,-0.068145431578159],[0.10200612992048,-0.045647095888853,-0.076591193675995],[0.027258146554232,-0.074196361005306,-0.18245387077332]],[[-0.06462849676609,0.02749589830637,0.050865534693003],[-0.077113322913647,0.17507585883141,-0.079537600278854],[-0.038116659969091,0.053202401846647,0.037791457027197]],[[0.013846173882484,0.093560002744198,0.00056829582899809],[-0.083679020404816,0.043863497674465,-0.0067371539771557],[-0.071902617812157,-0.02143594995141,0.026696579530835]],[[0.12626245617867,-0.034925881773233,-0.063650146126747],[-0.0249007884413,0.046056617051363,-0.08622058480978],[0.083818651735783,0.081886284053326,-0.028497276827693]],[[-0.057661347091198,0.10363206267357,-0.0055460766889155],[0.080650798976421,0.12435360997915,0.11251172423363],[0.032957840710878,-0.031494062393904,-0.099618844687939]],[[0.13996805250645,0.0088406279683113,0.092176184058189],[0.017125681042671,-0.14022050797939,0.03520854562521],[-0.049304436892271,-0.019076181575656,-0.12998382747173]],[[0.019777165725827,0.06017067283392,0.056138273328543],[0.0010380898602307,0.07468930631876,-0.039889838546515],[0.12174355983734,0.09278766065836,0.086789555847645]],[[0.15128722786903,-0.020570561289787,0.05557207763195],[-0.088497452437878,-0.0055047422647476,-0.0068333172239363],[0.13750348985195,-0.016702046617866,0.22659432888031]],[[-0.051756512373686,-0.11391573399305,-0.0056548523716629],[0.054313108325005,-0.019408965483308,0.054829575121403],[0.015488093718886,-0.10233508050442,-0.036383055150509]],[[0.00511210039258,-0.10393210500479,-0.04093985632062],[-0.038642685860395,-0.033391743898392,-0.17106050252914],[0.0032520676031709,0.022658105939627,0.11712491512299]],[[-0.10132666677237,-0.042456105351448,-0.13323883712292],[0.013345004990697,0.081584721803665,-0.25636604428291],[-0.0033468771725893,0.037399642169476,0.06688379496336]],[[-0.0062748659402132,-0.029182454571128,0.20256665349007],[-0.024837885051966,-0.005545693449676,-0.059497766196728],[-0.0065696779638529,0.12645238637924,-0.017328798770905]],[[0.009899590164423,-0.097190730273724,-0.12696784734726],[0.031978853046894,-0.035589840263128,0.073372930288315],[-0.087675765156746,-0.0049231569282711,0.034256547689438]],[[-0.11340843141079,0.03406135737896,0.019034940749407],[0.01784760504961,0.046799719333649,0.11222265660763],[-0.069281615316868,-0.096097469329834,-0.063014052808285]],[[0.086518310010433,-0.09018661826849,0.10637912899256],[0.12142419815063,-0.071897581219673,0.018590984866023],[-0.028831839561462,0.061737831681967,-0.073355428874493]],[[0.19834202528,-0.079460725188255,0.054237302392721],[-0.025018747895956,-0.10053441673517,-0.1120298653841],[-0.12353327870369,0.051770027726889,0.080693602561951]],[[-0.16779920458794,-0.03212533146143,0.10072442889214],[-0.10844713449478,0.033140815794468,-0.006904317997396],[-0.09803032130003,-0.1410703510046,0.028540914878249]],[[-0.12713831663132,-0.022430704906583,0.15696394443512],[0.12064872682095,-0.1359783411026,-0.037701528519392],[-0.082398533821106,0.046359900385141,0.05051951482892]],[[-0.076595030725002,-0.050115551799536,-0.23314756155014],[0.18793317675591,0.0026750273536891,0.05413706228137],[-0.1865446716547,-0.061083491891623,0.11656533926725]],[[0.008437629789114,0.10396999120712,-0.052781235426664],[-0.076314367353916,-0.043460603803396,0.063550248742104],[-0.25109127163887,0.068673312664032,-0.033458113670349]],[[0.025714440271258,0.017361056059599,-0.078342370688915],[0.049683023244143,0.069757640361786,0.070325046777725],[-0.11570560932159,-0.15057303011417,-0.054804194718599]],[[-0.054033141583204,-0.11028771847486,-0.017275422811508],[0.044342953711748,-0.027606196701527,0.061317637562752],[0.0094180284067988,0.035919096320868,-0.066201075911522]],[[0.09961075335741,-0.077682875096798,0.17342020571232],[0.046000294387341,0.087147422134876,-0.081706158816814],[-0.077573701739311,-0.031294673681259,0.032882813364267]],[[-0.063466511666775,-0.047662649303675,-0.019853439182043],[0.069756343960762,-0.0322275608778,-0.0057163494639099],[-0.12089871615171,0.10145696997643,-0.077126331627369]],[[-0.075573451817036,-0.059483151882887,-0.0053032012656331],[0.011161588132381,0.022213567048311,0.11932717263699],[-0.093574985861778,0.022814808413386,-0.0040403646416962]],[[0.036341078579426,-0.09219779074192,-0.014618984423578],[0.03059739433229,0.012928265146911,-0.095772616565228],[0.087065249681473,0.01477091666311,-0.29566246271133]],[[-0.1231292784214,-0.050136912614107,0.052812226116657],[-0.0039413049817085,0.079167328774929,-4.1492778109387e-05],[-0.034110881388187,0.03942584246397,-0.02881315164268]],[[-0.045224037021399,-0.0622220300138,-0.0002955507079605],[-0.083983726799488,-0.045841507613659,0.013092789798975],[-0.14446432888508,0.024103196337819,0.048279233276844]],[[-0.09745117276907,-0.02443391084671,0.021198598667979],[0.095202922821045,-0.086037427186966,-0.081518307328224],[0.073452234268188,-0.1675116866827,-0.12717859447002]],[[0.086798056960106,0.040609382092953,0.12887711822987],[0.033424913883209,-0.059172183275223,0.069336980581284],[0.12279059737921,0.043615281581879,-0.0053774476982653]],[[-0.020509146153927,-0.0026548271998763,-0.063271105289459],[-0.028061904013157,-0.1388228982687,-0.023324102163315],[-0.043645262718201,-0.10980762541294,-0.23150539398193]],[[-0.083464436233044,-0.04884135723114,-0.080670297145844],[-0.059945866465569,-0.026663655415177,-0.047696940600872],[-0.045929383486509,-0.074888095259666,0.03844702616334]],[[-0.051070962101221,0.058818634599447,-0.019595826044679],[-0.06201296299696,-0.1184600815177,-0.070060834288597],[0.16870759427547,-0.0055242129601538,-0.068837411701679]],[[0.016606772318482,-0.087987668812275,-0.0078992852941155],[0.041743054986,0.035926222801208,-0.013422957621515],[-0.17281594872475,-0.11725261807442,-0.11402200907469]],[[0.081196129322052,0.11350680887699,-0.002754574874416],[0.083565160632133,-0.13563893735409,-0.10555245727301],[-0.098787881433964,-0.20154091715813,0.033952325582504]]],[[[0.052648894488811,-0.048248078674078,-0.084730491042137],[-0.0075916633941233,0.11575119197369,0.18895614147186],[-0.045435469597578,-0.071559004485607,0.10291453450918]],[[-0.035011649131775,0.046323511749506,-0.0074722063727677],[0.026878286153078,0.010159529745579,0.090538680553436],[-0.10944994539022,-0.060663942247629,-7.3943709139712e-05]],[[-0.043613336980343,-0.06503763794899,-0.10690882056952],[-0.032069843262434,0.020696315914392,-0.03640379011631],[0.060710292309523,0.028646633028984,0.069904714822769]],[[0.070775210857391,0.16858170926571,0.02948440797627],[0.02154921554029,-0.058162029832602,0.013730441220105],[-0.034263700246811,0.0072213183157146,-0.12085937708616]],[[-0.062594123184681,0.0026789950206876,-0.067786313593388],[-0.094831265509129,-0.12116555124521,-0.014110973104835],[-0.027113666757941,-0.069998010993004,0.060266558080912]],[[-0.026590120047331,-0.039821282029152,-0.058391261845827],[0.0096596339717507,-0.011934271082282,0.077262490987778],[0.037228405475616,-0.0069566816091537,0.0078054587356746]],[[-0.061878815293312,0.048164814710617,-0.085815243422985],[0.14446826279163,-0.052020568400621,-7.1835209382698e-05],[0.18221898376942,0.062377691268921,0.067763410508633]],[[-0.078751467168331,0.090626507997513,-0.096341021358967],[0.047737840563059,0.11867067217827,-0.025217715650797],[0.039925564080477,-0.01661541312933,0.014321747235954]],[[0.036683641374111,-0.048858277499676,-0.0030596374999732],[-0.020182861015201,-0.0040894960984588,-0.013383531011641],[0.011785408481956,-0.048062704503536,0.070490293204784]],[[-0.058101870119572,-0.040152974426746,-0.12061396986246],[-0.20256432890892,0.10169995576143,-0.081822007894516],[0.03220335021615,0.0445816218853,-0.013572253286839]],[[-0.043548535555601,-0.01507546659559,0.013891856186092],[-0.0056777601130307,-0.0016364057082683,-0.056835316121578],[0.084553860127926,-0.041259750723839,0.12000060081482]],[[0.11205091327429,-0.00033611484104767,-0.062751352787018],[0.055229686200619,-0.063210234045982,-0.063293799757957],[0.0017574181547388,0.00038152054185048,-0.025589775294065]],[[-0.0015921406447887,-0.011692627333105,-0.017380720004439],[0.020640594884753,-0.062072746455669,0.013376033864915],[0.1084717810154,-0.034401718527079,-0.035424783825874]],[[0.12779219448566,0.0075468877330422,-0.053447294980288],[0.032529894262552,-0.00074256956577301,0.064627811312675],[-0.012954800389707,0.018268078565598,-0.028252238407731]],[[-0.018209535628557,0.036498688161373,-0.036254476755857],[-0.082100354135036,-0.010082295164466,0.1230340898037],[0.098686598241329,0.084285035729408,-0.15581788122654]],[[-0.088536612689495,0.014035497792065,-0.1801580041647],[-0.012325519695878,-0.11035194993019,-0.012844740413129],[0.043758608400822,-0.012964597903192,-0.1411395072937]],[[-0.046810377389193,-0.057247180491686,-0.14927735924721],[-0.032259803265333,-0.017079694196582,0.043793369084597],[0.029562072828412,-0.14698155224323,-0.026823785156012]],[[0.048603799194098,0.10974954068661,-0.081415727734566],[0.14074459671974,0.039782781153917,-0.058495596051216],[-0.00044955383054912,0.040942031890154,0.022740488871932]],[[-0.012548831291497,-0.089295856654644,0.078107260167599],[-0.13727819919586,-0.079345539212227,-0.12594383955002],[-0.12102552503347,-0.103709384799,0.071673266589642]],[[0.046330541372299,0.041609231382608,0.093639530241489],[-0.032732505351305,0.06750213354826,-0.064101696014404],[-0.00051235308637843,-0.15457329154015,0.049739576876163]],[[-0.046652015298605,-0.010317581705749,-0.0059233568608761],[-0.027003327384591,-0.041524462401867,-0.043678369373083],[0.024087032303214,0.017614984884858,-0.072079665958881]],[[-0.022190222516656,0.0036887302994728,-0.0057510496117175],[0.018910376355052,0.027834696695209,-0.045821476727724],[-0.040051534771919,-0.0068723158910871,-0.063380382955074]],[[-0.0099542336538434,0.078407101333141,0.067087262868881],[-0.043953198939562,0.013717722147703,0.028274400159717],[-0.15074326097965,-0.026795255020261,-0.005572497844696]],[[0.073896713554859,0.0081779323518276,-0.17145624756813],[0.1064426228404,0.080069847404957,0.10340091586113],[0.041213601827621,-0.075190372765064,-0.096650652587414]],[[0.1062004044652,0.18422743678093,0.1505823135376],[0.013418632559478,-0.010373652912676,-0.06553553044796],[-0.032052639871836,0.06849417090416,0.14148525893688]],[[-0.039243027567863,-0.0012248102575541,-0.026524944230914],[-0.0019723889417946,0.019712015986443,0.031796023249626],[0.051380790770054,0.029385875910521,-0.04289210960269]],[[0.017971817404032,0.060752898454666,-0.012223580852151],[-0.029779186472297,-0.012311218306422,0.025832388550043],[-0.014999236911535,-0.056904200464487,0.086348429322243]],[[-0.14163208007812,0.0092176627367735,0.15105612576008],[-0.057438671588898,0.061449114233255,0.21194051206112],[-0.10202819108963,-0.031038343906403,0.0033289541024715]],[[-0.005542884580791,-0.088117621839046,-0.05660654976964],[-0.046563096344471,0.067302614450455,0.093352772295475],[0.0545354783535,0.053712595254183,-0.066269792616367]],[[-0.087849885225296,-0.07383619248867,-0.066176310181618],[-0.052749399095774,-0.10843745619059,-0.053672432899475],[0.045432109385729,0.044420424848795,-0.0761788636446]],[[0.080308526754379,0.055585380643606,0.025406094267964],[-0.015285054221749,-0.07309390604496,-0.064600922167301],[-0.030866948887706,0.025429816916585,-0.030209654942155]],[[-0.054851178079844,-0.098374046385288,-0.073457576334476],[0.084427572786808,0.015862111002207,-0.069705709815025],[0.021594051271677,-0.064255937933922,-0.064703471958637]],[[0.15647189319134,-0.068332113325596,0.077870063483715],[0.062017556279898,-0.016853654757142,-0.045326210558414],[0.12954975664616,0.014983813278377,-0.032107952982187]],[[0.0061362558044493,-0.018546402454376,0.051948297768831],[-0.058296106755733,0.058630142360926,-0.039777923375368],[-0.032391790300608,-0.00087685696780682,0.034562543034554]],[[-0.037196543067694,0.091466754674911,-0.030520858243108],[-0.060289107263088,-0.040555398911238,-0.025113739073277],[0.129743501544,0.01386162918061,0.086734838783741]],[[-0.098862990736961,0.060610502958298,0.16306401789188],[0.04374535381794,0.11742047220469,0.064254999160767],[0.0040816040709615,-0.018585907295346,0.081180453300476]],[[-0.054588031023741,0.14899773895741,0.16370032727718],[-0.031841401010752,0.059170249849558,0.066134445369244],[-0.10461139678955,0.087638184428215,-0.0056575736962259]],[[0.0035201974678785,0.02261633053422,-0.039159543812275],[0.01436157617718,-0.030149446800351,0.029278369620442],[-0.0047597051598132,0.060350086539984,0.0034101409837604]],[[0.063708759844303,0.055409040302038,-0.042971666902304],[0.018726436421275,-0.049575787037611,-0.015031127259135],[0.026673652231693,-0.02552117779851,-0.14705719053745]],[[-0.12602902948856,-0.036603827029467,-0.012052172794938],[0.020414052531123,-0.026463126763701,-0.0014860718511045],[0.048819173127413,0.033564370125532,-0.12188699096441]],[[0.14264911413193,0.028344361111522,-0.0010659748222679],[-0.017921838909388,0.058070007711649,0.073925442993641],[0.082056879997253,0.17900815606117,0.13482844829559]],[[-0.091513082385063,0.029886709526181,0.0061994679272175],[-0.19135725498199,-0.13104382157326,-0.18132674694061],[0.064550168812275,0.073737852275372,0.016030058264732]],[[-0.0018414491787553,-0.030322063714266,-0.084934495389462],[-0.041917618364096,0.021554740145802,-0.0079718753695488],[0.027096126228571,0.12955270707607,0.096271522343159]],[[-0.071433655917645,-0.042759444564581,-0.15135195851326],[-0.11478462815285,0.0010231230407953,-0.016113422811031],[-0.053070511668921,-0.095312565565109,-0.0060917809605598]],[[-0.069971017539501,-0.014251794666052,0.13329035043716],[0.041654072701931,0.052446831017733,0.0078342780470848],[0.079275965690613,-0.0012928565265611,0.081469036638737]],[[0.057872273027897,0.019464008510113,0.085871607065201],[0.038175262510777,-0.10074773430824,-0.032849762588739],[-0.0047977548092604,0.0093534272164106,-0.040090296417475]],[[-0.10942216962576,-0.020848676562309,-0.0065099950879812],[0.046226590871811,-0.062797762453556,0.025568079203367],[0.056119587272406,-0.022704785689712,0.1076682433486]],[[-0.12359276413918,0.10677976161242,0.092201642692089],[-0.010582562536001,-0.036546070128679,-0.12321432679892],[-0.026748321950436,0.040067546069622,-0.073673136532307]],[[0.058650139719248,0.095145888626575,0.013126656413078],[-0.11181405186653,-0.042582292109728,0.13577157258987],[-0.14446792006493,-0.018690505996346,-0.044185616075993]],[[-0.1405344158411,0.09614109992981,-0.0073461337015033],[-0.022072166204453,-0.19094300270081,-0.049906060099602],[0.18061463534832,0.085090100765228,-0.12098940461874]],[[0.0057807215489447,0.072004765272141,-0.084974750876427],[0.082736678421497,-0.086747296154499,0.016016127541661],[-0.085476286709309,-0.053960625082254,-0.14474385976791]],[[-0.023122711107135,-0.020088026300073,-0.057620625942945],[-0.024434411898255,0.041619922965765,-0.1759979724884],[0.15522199869156,0.099525794386864,0.14902926981449]],[[-0.056246150285006,0.05229426920414,-0.053237233310938],[0.019527079537511,-0.044345002621412,-0.016666889190674],[-0.046366140246391,0.10576518625021,0.032629821449518]],[[-0.031674768775702,-0.090980395674706,-0.06178779900074],[-0.015837989747524,-0.068332806229591,-0.0014637631829828],[-0.028278669342399,-0.021523440256715,0.0073517980054021]],[[0.066745512187481,0.022088399156928,0.029078608378768],[-0.043591678142548,-0.05602053925395,-0.013889098539948],[-0.11055918037891,-0.087945617735386,0.039916761219501]],[[-0.05167480930686,-0.010538875125349,-0.0049072448164225],[0.062063399702311,-0.058308880776167,-0.049857806414366],[0.069563575088978,0.065375760197639,0.069753006100655]],[[-0.074688322842121,-0.0065379245206714,-0.0045515415258706],[-0.038420211523771,0.080559559166431,0.11883747577667],[0.0027762984391302,-0.013590103015304,3.2884479878703e-05]],[[0.0122448541224,-0.045919954776764,-0.030534785240889],[-0.0051883906126022,0.080124728381634,-0.01677655428648],[0.008044813759625,-0.031274572014809,-0.12871971726418]],[[0.11562840640545,0.11472345888615,0.16312888264656],[0.080457739531994,0.033074602484703,-0.082519076764584],[0.085918433964252,0.086825616657734,-0.033037833869457]],[[0.14426827430725,0.025308670476079,0.060211800038815],[0.049867000430822,0.1075646057725,0.098333358764648],[0.059785157442093,0.075767822563648,0.08742743730545]],[[-0.010767048224807,0.0062634255737066,-0.032227877527475],[-0.050392474979162,0.071374766528606,0.0056812958791852],[0.029459815472364,0.10113725811243,-0.039926812052727]],[[-0.043951999396086,-0.052506607025862,-0.11995185166597],[0.047962002456188,0.16860708594322,-0.067529894411564],[0.13458459079266,0.051552779972553,-0.00043557002209127]],[[0.10686576366425,-0.037045989185572,-0.041336808353662],[0.022700970992446,0.04241718351841,0.08882724493742],[0.051360599696636,-0.13803116977215,-0.051314864307642]],[[-0.10410352051258,-0.026037827134132,-0.13906851410866],[0.0056735719554126,-0.058200500905514,-0.05771491676569],[-0.074992388486862,-0.11853624135256,-0.0089831138029695]]],[[[0.004981430247426,0.032075960189104,-0.1486941576004],[0.017338687554002,0.016945995390415,-0.098039522767067],[-0.033052682876587,0.01091758813709,0.058247253298759]],[[-0.16923305392265,-0.090783141553402,0.084580145776272],[-0.12584099173546,-0.0067662787623703,0.070757247507572],[-0.071734063327312,-0.13920913636684,0.11680719256401]],[[-0.10183249413967,0.02461601421237,-0.14331385493279],[0.038914557546377,0.00078125885920599,0.030509401112795],[0.05350124463439,-0.055281862616539,0.053036127239466]],[[-0.048694547265768,-0.045741349458694,-0.095393553376198],[-0.038296919316053,0.13841335475445,-0.079953193664551],[-0.093770109117031,0.056289702653885,-0.12853598594666]],[[-0.10525038838387,-0.03759441152215,0.087045311927795],[-0.13208828866482,-0.086571499705315,-0.11048855632544],[-0.16171044111252,-0.11185828596354,-0.17072170972824]],[[0.032575059682131,-0.093507513403893,-0.061671443283558],[-0.046217799186707,0.01942946575582,0.1320758163929],[0.038435574620962,0.11782389879227,0.096908628940582]],[[0.084871329367161,0.11788635700941,-0.07095530629158],[-0.078095749020576,0.059368990361691,-0.029810899868608],[-0.043602015823126,0.067885644733906,0.053173258900642]],[[0.015536551363766,0.069425255060196,0.13160714507103],[0.039883237332106,0.076448284089565,0.023550661280751],[-0.097172386944294,-0.14207434654236,-0.16233190894127]],[[0.0072524868883193,-0.074372872710228,0.031573235988617],[-0.02633710950613,-0.044349126517773,0.0065873633138835],[-0.037669889628887,0.082511000335217,-0.027572320774198]],[[0.027871569618583,0.030872805044055,-0.04975363984704],[-0.095478527247906,-0.067053988575935,0.040089927613735],[0.042499143630266,0.05898704007268,-0.045386455953121]],[[0.0016553691821173,0.0090182833373547,0.011994223110378],[-0.041948333382607,0.021637020632625,0.082859545946121],[0.0042807054705918,0.039848927408457,0.022167734801769]],[[0.037555757910013,0.032996475696564,-0.08930915594101],[-0.011566687375307,-0.0068975309841335,-0.027199294418097],[-0.15965205430984,-0.10191684961319,-0.047965098172426]],[[-0.14004167914391,0.063881292939186,0.033035069704056],[-0.028279680758715,-0.046224839985371,-0.0056418906897306],[-0.14203259348869,-0.074893452227116,0.0023064273409545]],[[-0.03866059333086,0.11806526780128,0.045645449310541],[0.071018747985363,0.0031140686478466,-0.071303486824036],[0.11726753413677,-0.067839547991753,-0.14238817989826]],[[-0.0077190324664116,0.00033553782850504,0.026042111217976],[0.10357364267111,-0.034354869276285,0.01912197843194],[0.026065848767757,-0.15892679989338,0.010318825021386]],[[0.020311007276177,0.048559676855803,0.070939414203167],[0.086439579725266,-0.048766303807497,-0.034227468073368],[-0.0068779871799052,-0.14198079705238,-0.210289940238]],[[0.089640393853188,0.14554545283318,0.059900678694248],[-0.023752219974995,0.054406069219112,-0.026547500863671],[-0.18875278532505,-0.11682033538818,0.0081620011478662]],[[-0.1065409258008,0.14612255990505,-0.11842990666628],[-0.012439015321434,0.076842248439789,-0.075783200562],[0.0069304443895817,-0.047868601977825,0.073523841798306]],[[-0.071077272295952,0.037359148263931,0.074381828308105],[0.0040371725335717,-0.048810891807079,-0.034939173609018],[0.056858155876398,0.030767161399126,-0.063051491975784]],[[0.026399102061987,-0.039653237909079,0.057191349565983],[0.16187819838524,-0.021761510521173,-0.038134299218655],[-0.1029109954834,-0.037931624799967,0.055124707520008]],[[0.054045099765062,0.059349492192268,0.11709095537663],[-0.023807907477021,-0.14837168157101,-0.12324770539999],[-0.0021171986591071,-0.044635828584433,-0.21837128698826]],[[0.024996127933264,-0.016129663214087,0.074556663632393],[-0.06751261651516,-0.02717980928719,-0.0042549441568553],[-0.020648207515478,0.018373953178525,-0.060933262109756]],[[-0.037097688764334,-0.050570461899042,-0.051531840115786],[-0.10732017457485,0.028727458789945,0.063557736575603],[-0.018232917413116,-0.096160463988781,0.017156753689051]],[[-0.021640818566084,0.11339247971773,0.20150990784168],[0.090581580996513,0.11137755215168,0.095231026411057],[-0.19386273622513,-0.06638740748167,0.051651705056429]],[[0.03325542062521,0.048351172357798,0.030232785269618],[-0.081027060747147,0.079977042973042,0.013241720385849],[0.17688876390457,0.042344972491264,0.11414773017168]],[[0.017518278211355,-0.0055512343533337,-0.066673927009106],[0.020445412024856,0.020804136991501,0.032258667051792],[0.0090046180412173,-0.0014260865282267,0.034410785883665]],[[-0.14724250137806,-0.13739269971848,-0.08839089423418],[0.10713141411543,0.0080497870221734,0.043994322419167],[0.22994548082352,0.093943126499653,0.072949953377247]],[[-0.08482900261879,-0.088687501847744,-0.19853383302689],[0.093825839459896,-0.080642990767956,0.010019271634519],[-0.020700138062239,0.039383206516504,-0.0052734836935997]],[[-0.062353100627661,-0.096384726464748,0.00086267269216478],[-0.042367212474346,0.023246122524142,0.017842831090093],[-0.097647875547409,0.11210262030363,-0.056343231350183]],[[-0.011138822883368,0.041588623076677,0.025305451825261],[-0.010377726517618,0.039900898933411,0.015480199828744],[-0.10229447484016,-0.04423788562417,0.1047412827611]],[[-0.041094493120909,0.012824840843678,0.055684771388769],[-0.056115187704563,-0.095207817852497,-0.1152426302433],[0.078545793890953,0.080955035984516,0.13529901206493]],[[-0.095952227711678,-0.0061099864542484,0.20494636893272],[0.016735261306167,0.034253381192684,-0.077068880200386],[0.075754791498184,0.10536729544401,-0.071902990341187]],[[-0.0096762906759977,0.0082364436239004,0.11255296319723],[0.035519059747458,0.10814768075943,0.056625716388226],[0.060465313494205,-0.062774792313576,0.13325883448124]],[[0.023690041154623,-0.06556835770607,-0.051053397357464],[0.015002151951194,-0.007442663423717,-0.048148326575756],[0.029277557507157,0.011510766111314,0.018960731104016]],[[-0.032209638506174,-0.091029889881611,-0.021290902048349],[0.051982890814543,-0.010276084765792,-0.015688261017203],[-0.051453731954098,-0.012756815180182,0.0065435511060059]],[[0.096330739557743,-0.045657478272915,-0.071147441864014],[-0.01091621350497,0.14090058207512,-0.072224043309689],[0.0020576615352184,0.077113814651966,0.027777606621385]],[[0.045228455215693,0.029252476990223,0.10111659765244],[0.16410906612873,-0.022400813177228,0.13222253322601],[-0.042608231306076,-0.023072365671396,0.19934672117233]],[[-0.022351590916514,0.058122303336859,-0.038016472011805],[0.035054374486208,0.047504846006632,0.10736045241356],[-0.031973533332348,-0.031786695122719,0.069743953645229]],[[0.11685658991337,0.10486125200987,0.053403437137604],[-0.005403729621321,-0.0036203919444233,0.038416165858507],[0.0057863113470376,-0.033616047352552,-0.026136813685298]],[[-0.13124443590641,0.055922787636518,0.16157007217407],[0.039473384618759,-0.10570184141397,0.0951012596488],[0.0088634612038732,-0.14236842095852,0.095062449574471]],[[0.05144789814949,-0.21645179390907,-0.04938317835331],[-0.03963653370738,0.0032113480847329,0.069641157984734],[0.097175113856792,0.024803962558508,0.078566208481789]],[[-0.072336874902248,-0.0036391422618181,-0.02680080384016],[-0.059992868453264,-0.0072576492093503,0.057268038392067],[0.028866533190012,-0.0088945869356394,0.013685244135559]],[[-0.011101572774351,-0.14586474001408,0.068419270217419],[-0.036887913942337,-0.013705371879041,-0.12674368917942],[0.13818022608757,-0.12976713478565,0.031491722911596]],[[-0.016871158033609,-0.097882390022278,0.015947869047523],[0.075712494552135,0.10870272666216,-0.040072940289974],[0.030541304498911,-0.051119051873684,-0.069498769938946]],[[-0.12568280100822,-0.097537763416767,0.01192020624876],[0.080947689712048,-0.062124162912369,-0.046371925622225],[0.066900238394737,-0.088117837905884,0.014314768835902]],[[-0.072185307741165,0.004665007814765,-0.024332042783499],[-0.071794994175434,0.070295467972755,-0.0024772500619292],[0.094358317553997,0.070800669491291,-0.050862401723862]],[[0.027720721438527,-0.055086348205805,-0.044461898505688],[0.02653493732214,0.067838482558727,-0.094604894518852],[-0.0012663438683376,-0.0059548667632043,0.019822968170047]],[[0.046109478920698,-0.035980064421892,0.056011583656073],[-0.022901337593794,-0.040322605520487,-0.095502689480782],[0.049700085073709,0.081364125013351,0.16650459170341]],[[-0.032677687704563,0.013528342358768,-0.14539414644241],[0.017863428220153,-0.030940528959036,-0.16559624671936],[0.1918938010931,0.14299182593822,0.040534324944019]],[[0.0037682112306356,-0.056595996022224,-0.029294876381755],[0.047053709626198,0.06203655898571,-0.042770732194185],[-0.071476764976978,-0.065502509474754,0.0024720118381083]],[[-0.070031717419624,-0.072752967476845,0.12939271330833],[-0.1140398979187,-0.12056299299002,-0.071680597960949],[0.082451187074184,-0.10803543776274,-0.026319051161408]],[[0.069720804691315,0.076658256351948,0.18280008435249],[-0.020641559734941,-0.058293256908655,-0.0043612024746835],[0.01979586482048,0.011150640435517,0.0056815543211997]],[[-0.011274725198746,-0.060612272471189,0.0462926030159],[-0.027742022648454,-0.026859801262617,-0.024832986295223],[0.001788008143194,0.077956721186638,0.0324488542974]],[[0.054656900465488,0.034675981849432,0.17643575370312],[0.016467574983835,0.0020239064469934,-0.061271902173758],[-0.068670757114887,-0.082583665847778,-0.075850263237953]],[[0.064612932503223,-0.094556339085102,-0.026408551260829],[0.014449456706643,-0.021719634532928,0.062039375305176],[0.031373262405396,0.047568313777447,0.04050725325942]],[[0.093863189220428,-0.10388746857643,-0.043044004589319],[-0.059199083596468,-0.073647312819958,-0.055614329874516],[-0.16377232968807,-0.090223968029022,-0.062527976930141]],[[0.06013411283493,0.0097018126398325,-0.13456292450428],[-0.108173571527,0.063712239265442,0.013574671931565],[0.0064359717071056,-0.10812591016293,-0.059827923774719]],[[-0.022018367424607,0.071268633008003,0.041383147239685],[-0.044446151703596,-0.042199522256851,0.073577240109444],[-0.047755185514688,-0.032888524234295,-0.026286970824003]],[[0.089589931070805,0.17651417851448,0.049711983650923],[-0.019102754071355,-0.038838997483253,0.031160395592451],[0.050495512783527,-0.032056398689747,0.06328547000885]],[[-0.035812292248011,-0.029807131737471,-0.21475613117218],[0.11765273660421,0.081576608121395,-0.10481324791908],[0.0092812199145555,-0.067032188177109,-0.049770355224609]],[[0.017180303111672,-0.1256577372551,0.036548919975758],[0.065522439777851,-0.067896939814091,0.01959141716361],[0.11875396221876,-0.046350236982107,-0.011695974506438]],[[-0.015844566747546,0.071253091096878,0.11875507235527],[0.026673873886466,0.049340806901455,0.089388564229012],[0.15280978381634,0.051080919802189,-0.0057000098749995]],[[0.038386892527342,0.046446587890387,0.081163667142391],[0.0078463768586516,0.0040170261636376,0.053683541715145],[-0.10324873030186,-0.093196950852871,-0.027350801974535]],[[-0.11306023597717,0.064948044717312,0.033394452184439],[0.10692073404789,-0.08238285779953,0.072664052248001],[-0.051437426358461,-0.36116078495979,-0.11463148146868]]],[[[0.051418416202068,0.030328128486872,-0.16969385743141],[-0.012145906686783,-0.058573145419359,-0.1057045981288],[0.018101403489709,0.060135819017887,-0.021185591816902]],[[-0.082909822463989,-0.013592950999737,-0.17075914144516],[0.059095393866301,-0.052780292928219,-0.016331985592842],[-0.067912749946117,-0.032711286097765,0.032016512006521]],[[0.049347214400768,-0.059091206640005,-0.024384533986449],[0.10550317913294,-0.0055608809925616,-0.029004417359829],[0.025336125865579,-0.0035149108152837,0.022509245201945]],[[-0.059946972876787,0.02538307569921,-0.12625068426132],[0.062480591237545,-0.028088800609112,-0.030195709317923],[0.13956771790981,-0.017004903405905,-0.15275111794472]],[[-0.030157260596752,-0.01598084717989,-0.065399810671806],[-0.0053278747946024,-0.0036720612552017,-0.062050491571426],[-0.063529416918755,-0.0099975811317563,0.017341272905469]],[[0.049841519445181,-0.008984406478703,-0.10785024613142],[0.031640354543924,0.060724269598722,-0.14588187634945],[0.14250859618187,0.12639084458351,0.0063705025240779]],[[0.055362198501825,-0.01924897916615,-0.10557694733143],[0.11740730702877,0.057810723781586,-0.059851203113794],[0.013968075625598,0.040046632289886,-0.11526988446712]],[[-0.064049005508423,-0.073905602097511,0.084121152758598],[0.065989673137665,0.087238363921642,0.089837498962879],[0.055393051356077,0.014312230981886,0.068154089152813]],[[-0.037222802639008,0.041854966431856,-0.030937682837248],[0.065630950033665,0.10003324598074,0.0458281673491],[0.10217182338238,0.052302807569504,-0.08584800362587]],[[-0.07602546364069,-0.047181747853756,-0.12683461606503],[0.0067312936298549,0.039915014058352,-0.011462522670627],[-0.015317523851991,0.046971831470728,-0.074668176472187]],[[0.018762469291687,0.011689944192767,-0.041060499846935],[0.02243790589273,-0.04454567655921,-0.13092313706875],[0.032029319554567,0.007662495598197,0.067755751311779]],[[0.049785248935223,0.0076291430741549,-0.11948516964912],[0.076325930655003,0.10745227336884,0.015292529016733],[0.10740133374929,0.13547314703465,0.094675958156586]],[[-0.0013378765434027,-0.01177104189992,-0.0053363898769021],[-0.050274364650249,-0.07480950653553,-0.071421422064304],[0.055547904223204,-0.052130024880171,0.04234729334712]],[[0.02785437181592,0.15261518955231,0.0081522101536393],[-0.016215333715081,-0.047106023877859,-0.042952559888363],[-0.014106624759734,-0.11028116196394,-0.082392513751984]],[[0.049110166728497,0.057530924677849,-0.12386943399906],[0.14128410816193,0.043417062610388,-0.045905999839306],[0.088844738900661,-0.0040586907416582,0.020353930070996]],[[-0.01973276399076,-0.10381125658751,-0.12051055580378],[0.0063982657156885,-0.066789373755455,0.018502179533243],[0.059096179902554,0.032112274318933,0.0054522347636521]],[[0.015899926424026,0.1026254966855,-0.057576812803745],[0.061612471938133,0.054477371275425,-0.052923884242773],[0.1069110929966,0.019321510568261,-0.18481865525246]],[[0.027524752542377,-0.038717232644558,-0.078230924904346],[0.032832011580467,-0.0329455062747,-0.08671036362648],[-0.04476959630847,0.036703579127789,-0.044021379202604]],[[-0.075579702854156,-0.028917780146003,-0.10441952198744],[-0.094571888446808,0.030564185231924,0.019032845273614],[-0.014025420881808,-0.010531541891396,-0.075791619718075]],[[0.14695231616497,0.13076311349869,-0.052303194999695],[0.00944550242275,0.11550895124674,0.054103445261717],[0.034753609448671,-0.074220225214958,-0.080837704241276]],[[0.043536648154259,0.066160924732685,-0.053572628647089],[0.048547513782978,0.07949186861515,-0.13089793920517],[0.019685279577971,-0.0052641909569502,-0.016308311372995]],[[-0.039866894483566,0.014017535373569,-0.053588531911373],[-0.076789103448391,-0.10303682088852,-0.037489291280508],[-0.049542546272278,0.049499027431011,0.053513780236244]],[[0.021878512576222,-0.044987294822931,-0.0015913893003017],[-0.064004473388195,-0.015336156822741,-0.021646104753017],[0.0028381189331412,0.069609515368938,0.026495898142457]],[[0.055496357381344,0.046826735138893,-0.092701837420464],[0.047915194183588,-0.10237219929695,-0.078416384756565],[-0.015803080052137,-0.031259801238775,-0.068824850022793]],[[0.0066611296497285,0.07028628885746,0.095128573477268],[0.027889113873243,0.13217027485371,0.054912474006414],[0.037303101271391,0.01401807833463,-0.022350115701556]],[[0.07116062939167,-0.038224425166845,0.0090154381468892],[0.066855356097221,0.0075474833138287,-0.016768038272858],[-0.018492104485631,-0.011881841346622,-0.06089835986495]],[[0.043448016047478,-0.043738134205341,-0.17106278240681],[0.10412685573101,0.064928628504276,-0.063845954835415],[-0.03245685249567,0.0022201649844646,0.18167495727539]],[[-0.11233375221491,0.017684599384665,0.13566114008427],[0.037068229168653,-0.069853082299232,0.035798858851194],[0.016995590180159,-0.020622694864869,0.13177332282066]],[[0.1125056296587,-0.039733782410622,-0.0065476200543344],[-0.0089534977450967,-0.12349759787321,-0.075744718313217],[-0.024831445887685,0.00093747850041837,-0.082422040402889]],[[0.0012330542085692,0.01658028550446,-0.015692878514528],[0.0070003545843065,-0.077160507440567,-0.046865966171026],[-0.093250080943108,0.042229369282722,-0.046342004090548]],[[0.068048305809498,0.00033534163958393,-0.038888905197382],[0.087242253124714,0.021990036591887,0.028021520003676],[0.11235816031694,-0.11259524524212,-0.097654543817043]],[[0.050365667790174,0.16563159227371,0.041637137532234],[0.0092793069779873,0.063524641096592,0.024759646505117],[-0.059959277510643,0.014669727534056,-0.013204114511609]],[[-0.044945288449526,-0.036216672509909,-0.10315702855587],[0.012155440635979,0.023591667413712,-0.009808573871851],[0.099217563867569,0.051160905510187,-0.059576068073511]],[[0.0087775234133005,0.033554304391146,-0.040549855679274],[0.0083970483392477,-0.025480013340712,-0.060875430703163],[0.14324830472469,0.01719425804913,0.0086433822289109]],[[0.093994453549385,-0.02259486541152,0.0087663615122437],[-0.04078109934926,0.089383639395237,-0.058280535042286],[-0.010629064403474,0.084680438041687,-0.046543646603823]],[[0.11478473991156,0.028839899227023,0.14062935113907],[0.029816087335348,0.059853915125132,0.10642223060131],[-0.024778647348285,-0.0042497529648244,0.027057036757469]],[[-0.12107277661562,0.0025686447042972,0.11082996428013],[-0.053701832890511,-0.059281401336193,-0.11793962866068],[0.079545982182026,0.0028005612548441,-0.10453543066978]],[[-0.066254675388336,-0.070873402059078,0.092165000736713],[0.010925209149718,-0.064561925828457,-0.19331549108028],[0.010662497021258,0.011061433702707,0.032078333199024]],[[0.079780258238316,0.013118644244969,-0.1052442714572],[0.031397789716721,-0.02802593447268,-0.013583213090897],[0.08194226026535,0.02646297775209,-0.11882881820202]],[[0.06090772151947,0.034254003316164,-0.017389437183738],[-0.00078654091339558,0.064002953469753,-0.095142908394337],[0.13950592279434,0.067818112671375,-0.070558585226536]],[[-0.031482629477978,0.046065486967564,0.053443197160959],[0.076361447572708,-0.012226702645421,0.0081751374527812],[-0.013362321071327,-0.14093007147312,-0.092404298484325]],[[0.047855924814939,0.0029535272624344,-0.12480270862579],[-0.12767724692822,0.011919263750315,-0.052468229085207],[0.10248062759638,0.050244953483343,-0.140445291996]],[[-0.14164717495441,-0.037588343024254,0.030343063175678],[-0.064196191728115,-0.071985743939877,-0.12692894041538],[0.092511117458344,-0.087140925228596,0.02155127748847]],[[-0.070881128311157,-0.015254303812981,-0.040845386683941],[0.09136264026165,0.033357053995132,0.014728446491063],[0.094576805830002,0.028211183845997,-0.12476575374603]],[[0.04934073984623,0.12739957869053,0.16273008286953],[-0.0032616227399558,-0.015029048547149,0.097949646413326],[0.047940827906132,-0.042781569063663,-0.14095249772072]],[[0.022788746282458,-0.026228804141283,-0.051015708595514],[-0.0029394505545497,-0.030416572466493,0.14228764176369],[0.053340308368206,-0.066384248435497,0.0075332941487432]],[[-0.031763765960932,0.024201408028603,-0.12935288250446],[-0.040413599461317,-0.0046281777322292,-0.13107071816921],[-0.053542010486126,0.034578982740641,-0.081172034144402]],[[0.049229133874178,-0.064812541007996,0.055483937263489],[0.0077675436623394,0.027327917516232,0.052306834608316],[-0.0044507803395391,0.057942278683186,0.017028586938977]],[[0.066082775592804,0.083241172134876,0.065647035837173],[0.022901330143213,-0.018747651949525,0.10474744439125],[-0.033259678632021,0.065379165112972,-0.013874833472073]],[[-0.062755391001701,-0.0018951575038955,0.17551496624947],[0.075056910514832,0.058803752064705,0.061211299151182],[0.0903629809618,0.075227990746498,0.040204972028732]],[[0.046280831098557,-0.044506717473269,-0.067399621009827],[0.064298622310162,0.0015399978728965,0.19834333658218],[0.0014548116596416,-0.01563467644155,0.046118404716253]],[[0.069466762244701,-0.075318604707718,0.060334172099829],[0.03683128207922,0.12750238180161,0.071461871266365],[0.079983241856098,-0.01260276697576,-0.096105888485909]],[[0.065540373325348,-0.00028517132159323,-0.048018895089626],[0.067910902202129,-0.035556323826313,-0.018458040431142],[0.058701392263174,0.0025990668218583,-0.019343517720699]],[[-0.025107756257057,-0.045540031045675,0.033636096864939],[-0.065865285694599,-0.071109592914581,-0.091006390750408],[-0.061580836772919,-0.032589513808489,0.0032787350937724]],[[0.072639361023903,0.060698270797729,0.021027201786637],[0.0011332454159856,0.05503873154521,0.052760355174541],[-0.012955661863089,-0.02494596503675,0.084192506968975]],[[-0.064600773155689,-0.023764276877046,-0.044793706387281],[-0.083739697933197,0.067828476428986,0.092290930449963],[-0.047406956553459,0.046124577522278,0.029889805242419]],[[-0.0058133117854595,-0.052905771881342,0.17248512804508],[0.012124341912568,-0.02255791798234,-0.10951720923185],[0.028835728764534,-0.029462963342667,-0.13247045874596]],[[0.1519518494606,-0.016362858936191,-0.037587065249681],[0.12751841545105,0.11118226498365,-0.023118821904063],[0.011037875898182,0.13886587321758,0.040137007832527]],[[0.03225589543581,0.057195503264666,0.12864762544632],[-0.0070692216977477,0.10302739590406,0.12891240417957],[0.09304691106081,0.038735810667276,0.087362334132195]],[[-0.036995258182287,0.13346986472607,0.14359690248966],[0.054776679724455,0.089166276156902,-0.037546996027231],[-0.041486214846373,0.096630930900574,0.087468028068542]],[[-0.13569320738316,-0.0019205220742151,0.04562209919095],[0.073655039072037,0.042034231126308,-0.018836569041014],[0.0025579005014151,0.090412780642509,-0.049332231283188]],[[-0.16719628870487,0.11582668125629,0.18532040715218],[-0.058026745915413,0.05477162450552,0.052003134042025],[-0.054004803299904,-0.0055393325164914,-0.034001860767603]],[[0.11283756792545,0.012749969027936,0.017887251451612],[0.026651106774807,-0.053508695214987,-0.087032720446587],[-0.018986033275723,-0.10874421149492,-0.035471897572279]],[[-0.093689896166325,0.034123491495848,0.042834524065256],[0.032951913774014,0.038084510713816,-0.12609048187733],[0.078156881034374,0.069223910570145,0.11497686803341]]],[[[-0.20807537436485,-0.21485310792923,0.042227163910866],[-0.26233196258545,-0.098428420722485,0.082897447049618],[-0.24502643942833,-0.15979100763798,0.0072168889455497]],[[0.0058603342622519,-0.065075717866421,0.036433082073927],[-0.02993643283844,-0.14190421998501,-0.067585229873657],[0.015438675880432,0.023205896839499,-0.1265063136816]],[[-0.084686227142811,0.018448367714882,-0.011406776495278],[0.048058427870274,-0.07188493013382,-0.053227666765451],[0.027190532535315,-0.028741372749209,0.025334214791656]],[[-0.2307910323143,-0.087178438901901,0.062901988625526],[-0.010053579695523,0.020267708227038,-0.038427878171206],[0.027356514707208,0.05452062189579,-0.012117536738515]],[[0.016024732962251,-0.040445167571306,-0.024840541183949],[-0.064870409667492,-0.24220645427704,-0.046133570373058],[-0.042840864509344,-0.052178964018822,-0.078857712447643]],[[-0.051040276885033,0.016897093504667,0.063304372131824],[0.01308823004365,-0.045853417366743,0.04532877728343],[-0.025607576593757,0.0043637128546834,-0.072218880057335]],[[-0.15402349829674,0.14840938150883,0.009248505346477],[-0.19429071247578,0.12979833781719,0.0050932774320245],[-0.058348525315523,0.012667941860855,0.070492953062057]],[[-0.10022079944611,0.025949273258448,-0.054339610040188],[-0.18866688013077,0.035160508006811,0.053633876144886],[-0.45535406470299,0.068422995507717,0.039233677089214]],[[-0.026233304291964,0.017126532271504,-0.10757108032703],[-0.10875959694386,0.1090858951211,0.0099431108683348],[-0.12578132748604,0.0092635303735733,0.11126990616322]],[[-0.12424149364233,-0.15297743678093,-0.011932803317904],[-0.11456701159477,-0.0511161275208,-0.077150113880634],[-0.078830078244209,0.021904977038503,0.018693163990974]],[[-0.08889527618885,-0.010663366876543,0.045118700712919],[0.034945175051689,0.0075670792721212,0.003286907216534],[-0.11679446697235,-0.077341750264168,0.0019544521346688]],[[-0.073453165590763,-0.07202660292387,-0.065375700592995],[-0.022268522530794,0.089886896312237,0.012439058162272],[-0.049569230526686,-0.062827587127686,0.12768271565437]],[[-0.27560457587242,0.021697487682104,0.070662349462509],[-0.34346029162407,0.01001838222146,0.024336107075214],[-0.3848769068718,-0.039050787687302,-0.034771114587784]],[[-0.15667195618153,-0.20395816862583,0.0098579404875636],[-0.076364062726498,-0.0056108152493834,-0.10188943892717],[-0.1704658716917,0.10824134945869,0.035098616033792]],[[0.062617756426334,0.071854524314404,-0.031576741486788],[0.058133590966463,0.027510525658727,-0.0040187081322074],[0.060797978192568,0.08569822460413,0.097855009138584]],[[-0.17956131696701,-0.022065998986363,0.010896680876613],[-0.22939917445183,0.0012332110200077,0.0026713474653661],[-0.016749387606978,0.010086948052049,0.04220812395215]],[[-0.02019839733839,0.016482895240188,0.067654810845852],[-0.0066529288887978,-0.029508870095015,0.12557782232761],[-0.11890653520823,-0.096509426832199,0.080054238438606]],[[0.0084482422098517,-0.10292332619429,0.043131977319717],[-0.0052830441854894,0.022671749815345,0.037448719143867],[-0.012600566260517,0.086268723011017,-0.041336670517921]],[[0.056538950651884,0.069519758224487,-0.10621136426926],[0.16277757287025,-0.0065189562737942,-0.10201433300972],[0.0001640418486204,0.10344138741493,-0.12247473746538]],[[-0.19970703125,-0.17096583545208,0.05877785384655],[-0.04084799811244,-0.010458157397807,0.01415856089443],[-0.12447405606508,0.054693512618542,0.019109174609184]],[[-0.40269994735718,-0.028064612299204,-0.053361382335424],[-0.19669239223003,-0.037243813276291,-0.017031030729413],[-0.18073962628841,-0.01442351564765,0.055401131510735]],[[-0.11727011948824,-0.023598743602633,0.11293380707502],[-0.08260627835989,-0.039331272244453,0.039194442331791],[-0.039118655025959,-0.024239454418421,0.061530541628599]],[[-0.071793355047703,0.065056622028351,-0.093369111418724],[-0.15454465150833,0.060489065945148,0.049548633396626],[-0.14845471084118,0.030397800728679,0.00068987091071904]],[[0.11962348222733,0.13078446686268,-0.073955938220024],[0.1354084610939,-0.030435372143984,-0.0019779826980084],[0.054270412772894,-0.006424106657505,-0.02566547319293]],[[0.29989686608315,0.037273269146681,-0.17304737865925],[0.17231050133705,-0.046303458511829,-0.14378535747528],[0.11254636198282,-0.011130396276712,-0.2241915166378]],[[0.091260559856892,0.054559912532568,-0.18062211573124],[0.029384048655629,0.029317082837224,-0.12181848287582],[0.047540117055178,0.017835298553109,-0.019913712516427]],[[-0.10606567561626,-0.098258912563324,0.051170963793993],[0.016997333616018,-0.033488880842924,0.091218054294586],[-0.17565900087357,-0.085956886410713,0.089495182037354]],[[-0.0098979445174336,-0.12258455902338,-0.015628473833203],[0.038378823548555,-0.075131699442863,0.079733796417713],[0.09318683296442,0.028568770736456,-0.16264486312866]],[[-0.021840369328856,0.038221746683121,-0.018227571621537],[-0.0033988223876804,-0.00085666391532868,-0.042522765696049],[0.22130954265594,-0.07076770067215,0.096591219305992]],[[3.9556136471219e-05,-0.0022498606704175,0.034839790314436],[-0.013905283994973,-0.060995601117611,-0.10356469452381],[-0.0026582842692733,-0.015470553189516,0.067250616848469]],[[0.075343087315559,0.0063085230067372,0.076248332858086],[0.22709825634956,-0.011864597909153,0.087759375572205],[-0.019239788874984,0.059157885611057,0.045013640075922]],[[0.19849213957787,-0.054729003459215,0.01051009632647],[0.08512419462204,0.052366957068443,0.010765160433948],[0.019284579902887,-0.030261967331171,0.054737843573093]],[[-0.010550742037594,0.0062845293432474,-0.046959038823843],[-0.0034531587734818,0.11555881798267,-0.089529030025005],[-0.18008828163147,-0.029117535799742,0.062194868922234]],[[0.011732324026525,0.060600142925978,0.066709503531456],[0.017157331109047,-0.10643059015274,0.091663867235184],[-0.072626896202564,-0.023504186421633,0.14846387505531]],[[-0.10066935420036,0.046884562820196,0.05735070630908],[-0.086156405508518,0.062038209289312,-0.062949202954769],[0.072911813855171,0.0128003815189,0.041423048824072]],[[0.13213366270065,0.046403232961893,-0.024662472307682],[0.1847043633461,-0.032035298645496,-0.080465853214264],[0.14469167590141,-0.0020242123864591,0.015399214811623]],[[-0.080331444740295,0.028572849929333,-0.012712623924017],[0.074513852596283,0.090081803500652,0.010553909465671],[0.012740605510771,-0.053009200841188,-0.06221579015255]],[[-0.21419711410999,-0.086198844015598,0.071416057646275],[-0.1570611000061,-0.022715106606483,-0.047676369547844],[-0.32689890265465,0.064893648028374,0.12872345745564]],[[0.12990060448647,-0.071399532258511,-0.05436647683382],[0.13269257545471,0.0054276548326015,0.0078313499689102],[0.036738403141499,-0.024946864694357,-0.056495435535908]],[[-0.098105184733868,-0.057063385844231,-0.039850629866123],[-0.12076438218355,-0.027528364211321,0.036706231534481],[-0.071541868150234,0.035500973463058,0.10270176827908]],[[-0.066751383244991,0.080110944807529,-0.096403770148754],[-0.07207527756691,-0.023603638634086,-0.045320451259613],[-0.077974990010262,0.05156734585762,0.0069963266141713]],[[-0.170560374856,-0.080279253423214,0.13596674799919],[-0.17777785658836,0.050188317894936,0.11505803465843],[-0.11857873946428,0.020801294595003,0.030054112896323]],[[-0.055880136787891,0.030686004087329,0.072935178875923],[-0.083195738494396,0.040949646383524,-0.010315102525055],[0.082797199487686,0.031906194984913,-0.09898329526186]],[[0.10039802640676,-0.02594000659883,-0.031756792217493],[-0.069729790091515,-0.031041376292706,0.022981867194176],[-0.058225926011801,0.053676892071962,0.068844057619572]],[[0.18936190009117,-0.060857370495796,-0.07983636111021],[0.022346476092935,-0.039604295045137,0.051697060465813],[0.044534523040056,0.038490150123835,-0.205232873559]],[[-0.097921058535576,-0.0011689709499478,-0.015049744397402],[-0.11712875962257,-0.049951542168856,-0.08727702498436],[-0.066494598984718,-0.090025171637535,-0.055366527289152]],[[0.1078894585371,0.096352823078632,0.027463944628835],[-0.018496820703149,0.02524359151721,0.029088225215673],[0.064937762916088,-0.024335887283087,0.046477690339088]],[[-0.025114642456174,0.01734147593379,-0.13064260780811],[-0.021855648607016,-0.035396184772253,-0.042871955782175],[-0.0076521425507963,-0.044698610901833,-0.052732668817043]],[[-0.13274982571602,-0.11042326688766,-0.011644346639514],[0.033231806010008,0.068533480167389,0.079584516584873],[-0.0068688900209963,-0.0080622518435121,0.091558277606964]],[[-0.010112427175045,0.061019763350487,0.015198305249214],[-0.084479570388794,-0.045270927250385,-0.050780799239874],[-0.019943268969655,0.10746145248413,0.021210711449385]],[[-0.094281643629074,0.010218921117485,-0.11450612545013],[-0.18154805898666,0.068252019584179,0.0226562153548],[-0.19830960035324,-0.035818982869387,0.0016334635438398]],[[-0.24761927127838,0.034054439514875,0.15600395202637],[-0.097298629581928,-0.104392580688,0.12588459253311],[0.009783623740077,0.010606211610138,0.10880372673273]],[[-0.14891093969345,0.012290275655687,0.21598567068577],[-0.14034031331539,-0.026163773611188,0.14379608631134],[0.02893004566431,-0.0047334074042737,-0.045862630009651]],[[-0.066077522933483,0.17729230225086,0.03788023814559],[0.011557872407138,0.0021868052426726,0.029794953763485],[0.0087105007842183,0.096939653158188,0.040058024227619]],[[0.038579810410738,-0.010762072168291,0.050748370587826],[-0.034949138760567,-0.078642435371876,-0.0049361330457032],[0.074132241308689,-0.049722794443369,-0.045585829764605]],[[0.046903487294912,0.0067720697261393,0.073055647313595],[0.0027592480182648,0.1274820715189,0.077014617621899],[-0.045822933316231,0.12958264350891,-0.028713408857584]],[[-0.17522113025188,0.046504229307175,0.038826640695333],[-0.13638336956501,0.09737590700388,-0.030071783810854],[0.13737100362778,0.0037569468840957,0.11470801383257]],[[-0.21754445135593,0.062510199844837,-0.0012696572812274],[-0.15831634402275,0.096226267516613,-0.14480075240135],[-0.07821436971426,0.069003544747829,0.011931427754462]],[[-0.036979604512453,-0.04136548936367,0.14695490896702],[0.028871843591332,-0.056843910366297,0.1652760207653],[0.044152557849884,-0.038144268095493,0.048588190227747]],[[0.042049184441566,0.015746710821986,0.029920615255833],[0.1037991642952,-0.10059748589993,-0.0098451785743237],[0.066315665841103,0.009282698854804,0.022233910858631]],[[0.048770014196634,-0.010489044710994,0.056147288531065],[0.049287032335997,-0.032921183854342,0.17215403914452],[0.018852261826396,-0.088629558682442,0.0098921339958906]],[[-0.14220049977303,-0.08721486479044,-0.058489497750998],[0.064419947564602,-0.10025385022163,0.066896490752697],[0.095549531280994,0.0032020383514464,-0.1036900728941]],[[0.068735368549824,-0.067134164273739,0.12028362601995],[0.0056401160545647,-0.079864256083965,0.054463308304548],[-0.035374477505684,-0.030491081997752,0.04927634447813]],[[-0.028558537364006,0.022071661427617,0.11389091610909],[-0.078519411385059,-0.11588685959578,0.0037509344983846],[0.0058869789354503,0.023741969838738,-0.050750773400068]]],[[[-0.10543536394835,-0.0028757289983332,-0.22287960350513],[-0.10505199432373,-0.055664271116257,0.073726616799831],[-0.13663280010223,-0.025812866166234,0.011887811124325]],[[-0.0045851315371692,-0.054235562682152,0.0018330754246563],[0.046920087188482,-0.035602804273367,0.11653289198875],[-0.063758879899979,0.015369616448879,-0.013484900817275]],[[-0.037478324025869,-0.041712887585163,0.092132367193699],[-0.032106835395098,0.069425202906132,-0.06089099869132],[-0.20162568986416,-0.082923650741577,-0.031092721968889]],[[0.18518073856831,-0.037700161337852,0.049353543668985],[-0.13275212049484,0.076380357146263,0.10097562521696],[-0.043570447713137,-0.18452540040016,-0.22352389991283]],[[0.0068497583270073,-0.023292722180486,-0.074588611721992],[0.017116026952863,0.0088073033839464,-0.26309913396835],[0.033111725002527,0.035906717181206,0.011199982836843]],[[-0.014872844330966,-0.076629310846329,-0.13155190646648],[0.0054111932404339,0.039390981197357,0.10629244148731],[-0.041449334472418,-0.15117436647415,-0.16490599513054]],[[-0.0084785344079137,-0.025068702176213,-0.093623951077461],[-0.13681465387344,-0.064016126096249,-0.077049352228642],[0.040121950209141,0.18344762921333,-0.079921238124371]],[[-0.027846619486809,0.04408647492528,-0.11839302629232],[-0.12381655722857,0.017479557543993,-0.068356819450855],[0.016463534906507,-0.11844997853041,-0.0060242586769164]],[[0.053243510425091,-0.05552326887846,-0.09720204025507],[-0.13847376406193,-0.10264533758163,-0.061169169843197],[0.024966306984425,-0.088357903063297,-0.045783005654812]],[[-0.017448045313358,0.058254297822714,-0.00045033596688882],[-0.010595270432532,-0.04324584081769,0.025148013606668],[-0.11112455278635,-0.23020236194134,-0.11133933067322]],[[-0.0017331026028842,0.053840879350901,-0.072301164269447],[-0.015576807782054,0.08934959769249,-0.013746329583228],[-0.058540459722281,-0.17450058460236,-0.02214440703392]],[[-0.029405273497105,0.06308438628912,0.11352399736643],[-0.032504227012396,-0.0073135234415531,-0.029113991186023],[-0.012736996635795,0.0052565541118383,-0.055927999317646]],[[0.020872194319963,0.012954145669937,-0.10155837982893],[-0.048982918262482,0.030425809323788,0.063991069793701],[-0.027183098718524,0.00066090223845094,-0.043929904699326]],[[-0.13829043507576,0.089970164000988,0.10716784745455],[-0.081243574619293,-0.0087193297222257,0.021719390526414],[-0.070621348917484,0.037538755685091,0.076437249779701]],[[-0.026562599465251,-0.13782022893429,-0.044334623962641],[-0.05769345536828,-0.0044345823116601,0.025627186521888],[-0.011648539453745,-0.093622542917728,0.065731093287468]],[[-0.076838560402393,-0.085381105542183,0.09361057728529],[-0.055328041315079,0.004518577363342,-0.058377720415592],[-0.07965612411499,0.059708923101425,0.13389886915684]],[[-0.054569721221924,-0.10800146311522,-0.052257891744375],[-0.021806564182043,-0.042226776480675,-0.014605451375246],[0.0069790929555893,-0.010205155238509,-0.05968314409256]],[[-0.044415157288313,-0.039320670068264,0.0027551907114685],[-0.010864099487662,-0.050673384219408,0.038416925817728],[0.0012173617724329,0.08450985699892,-0.01114787440747]],[[0.083402767777443,-0.014012550935149,-0.1474047601223],[-0.15689937770367,0.049002535641193,-0.064672686159611],[-0.12863247096539,0.095272019505501,0.059374202042818]],[[-0.070367574691772,0.018348244950175,-0.0074453195556998],[-0.082493141293526,-0.14444577693939,0.096981406211853],[-0.076156742870808,-0.14149713516235,-0.15574733912945]],[[0.20048920810223,0.1544471681118,0.04676741361618],[-0.031977847218513,-0.059474088251591,-0.019922306761146],[-0.0049930503591895,-0.064076714217663,-0.010482655838132]],[[-0.10237494856119,-0.0082799643278122,0.039694458246231],[-0.0097251897677779,0.045501291751862,0.046835325658321],[-0.054472703486681,-0.048709083348513,-0.05907566845417]],[[0.096274212002754,-0.010486980900168,-0.020233465358615],[0.018539059907198,-0.11209411174059,-0.066531777381897],[-0.032851617783308,-0.041340172290802,-0.019896162673831]],[[0.17227171361446,0.066240534186363,0.0075042434036732],[0.018542213365436,0.0069106542505324,-0.15386945009232],[0.0021723776590079,0.025787133723497,-0.022737884894013]],[[0.17175163328648,0.16025967895985,-0.086917892098427],[0.039895042777061,0.12911793589592,-0.068801432847977],[0.032548919320107,-0.0033819261007011,0.021501135081053]],[[0.035605680197477,-0.12570960819721,-0.05104748159647],[0.11712743341923,-0.056788265705109,-0.022127086296678],[-0.021871039643884,0.00092151528224349,0.057239878922701]],[[0.10386092960835,0.057059582322836,0.033963039517403],[-0.026099411770701,-0.011528621427715,-0.10537447780371],[-0.13506342470646,-0.05223223567009,-0.023604856804013]],[[-0.01607509329915,0.012863696552813,-0.16038773953915],[0.012379775755107,-0.033251021057367,0.11768208444118],[-0.1035273745656,0.071572609245777,-0.066955976188183]],[[0.077896989881992,-0.037723518908024,0.017943531274796],[-0.090637341141701,-0.10709749162197,0.067169480025768],[-0.045884154736996,-0.032835122197866,-0.12838155031204]],[[-0.074842169880867,-0.0081934118643403,0.024465588852763],[-0.050478011369705,0.0021621377673,-0.0014042598195374],[0.053662281483412,0.024175645783544,-0.11852644383907]],[[0.0040705539286137,-0.098076745867729,0.1081208884716],[-0.20523503422737,0.02917187102139,0.12577943503857],[0.01253311894834,0.028002578765154,0.072164587676525]],[[0.03507312014699,0.01740856282413,0.012916035950184],[0.010914114303887,-0.077932499349117,0.037584826350212],[0.13402192294598,-0.0075715342536569,0.12634509801865]],[[0.14521041512489,-0.0022799177095294,-0.021165629848838],[0.0086067095398903,0.067141897976398,-0.051043186336756],[-0.054626755416393,0.088862277567387,0.11077605932951]],[[-0.078527182340622,-0.0054034204222262,-0.040768932551146],[0.16840170323849,0.0067215650342405,0.066522590816021],[-0.070966966450214,-0.11887424439192,-0.1231948658824]],[[-0.10732334852219,-0.11629323661327,0.14021930098534],[-0.043658878654242,-0.049333203583956,-0.036129496991634],[-0.080655753612518,-0.11218214035034,-0.05839029327035]],[[0.0056553180329502,0.15706613659859,0.14764036238194],[0.042018044739962,-0.104816429317,-0.1002284064889],[0.044316034764051,-0.024625146761537,0.038543790578842]],[[0.30562102794647,0.18802757561207,0.063753210008144],[0.055723797529936,-0.094616673886776,0.041001282632351],[-0.1389020383358,-0.0055905301123857,0.076345913112164]],[[0.11180478334427,-0.064520910382271,0.029972868040204],[0.026623137295246,-0.032479211688042,-0.12656396627426],[-0.12851321697235,-0.068471178412437,0.042615618556738]],[[0.034689903259277,-0.033583108335733,-0.10288175940514],[0.037617299705744,0.015715900808573,-0.20899470150471],[0.044520691037178,-0.032084826380014,-0.17429038882256]],[[0.011827349662781,-0.062756776809692,-0.05829806253314],[-0.011014396324754,-0.048066645860672,-0.1580863147974],[-0.092053353786469,0.0046243765391409,0.035949490964413]],[[-0.028419137001038,-0.066104397177696,-0.03214555606246],[-0.047940369695425,-0.055125307291746,0.084412693977356],[-0.064022369682789,-0.033900734037161,-0.0017892724135891]],[[0.074430108070374,-0.050353925675154,-0.049828484654427],[0.03550261631608,-0.042178891599178,-0.0086611248552799],[-0.021444819867611,0.034257389605045,-0.030673766508698]],[[0.030077127739787,-0.00054445816203952,0.038753874599934],[0.031804885715246,-0.10880789160728,-0.031214850023389],[-0.0044680354185402,-0.034673158079386,0.20186366140842]],[[-0.0097291152924299,-0.057121880352497,0.12492242455482],[-0.078330829739571,-0.10468687862158,-0.048759005963802],[0.030261244624853,0.097167365252972,-0.0028222140390426]],[[-0.066366910934448,-0.05963321402669,0.068909659981728],[-0.1160319969058,0.054531190544367,0.21839581429958],[-0.09608007222414,-0.0057763778604567,0.04588283598423]],[[0.017432114109397,0.075391545891762,0.016780128702521],[0.071598619222641,-0.088646396994591,0.19929020106792],[-0.00038816718733869,-0.043181721121073,-0.0232944637537]],[[-0.18474721908569,-0.15157489478588,-0.15750589966774],[0.11322046816349,0.035073820501566,0.12308076769114],[-0.018029153347015,0.11529817432165,-0.1575480401516]],[[0.035527735948563,0.024117592722178,-0.088885650038719],[0.022353038191795,0.017456857487559,-0.015419556759298],[-0.14405089616776,-0.039571456611156,0.033745374530554]],[[0.046006768941879,0.083028554916382,-0.1303662955761],[-0.0305145829916,-0.034326031804085,-0.089976817369461],[-0.01752582192421,0.028249248862267,0.052845019847155]],[[0.069210946559906,0.010899639688432,-0.013253496028483],[0.037395946681499,-0.093159563839436,-0.0939926430583],[0.073234558105469,0.088102124631405,-0.043601669371128]],[[-0.0024557136930525,-0.19438476860523,0.017728056758642],[0.075544938445091,-0.034863390028477,-0.1589320152998],[-0.1126601845026,0.025661827996373,-0.2070729881525]],[[-0.13494409620762,-0.10471752285957,0.05882029235363],[0.15992642939091,0.08818631619215,0.011682815849781],[-0.18205676972866,-0.24434213340282,0.042331639677286]],[[0.22897917032242,0.014115083031356,0.01287948153913],[-0.00089167163241655,-0.093643352389336,0.029917450621724],[-0.076528497040272,-0.12773925065994,0.021829515695572]],[[-0.074970029294491,-0.017561051994562,-0.012606753967702],[-0.11134088784456,-0.060172442346811,0.014355922117829],[-0.019711401313543,-0.035057842731476,-0.00089068821398541]],[[0.03816257044673,-0.08220911771059,-0.062461394816637],[-0.090300545096397,-0.090933442115784,0.013825179077685],[-0.095207653939724,-0.08390299975872,-0.065688624978065]],[[0.023940352723002,0.024211991578341,0.057093545794487],[0.030908316373825,-0.0075912489555776,0.068496890366077],[-0.013440302573144,-0.034713663160801,-0.076265454292297]],[[-0.13420544564724,0.0038963675033301,0.12415061146021],[0.092791467905045,-0.0094084432348609,0.018451493233442],[-0.0068793394602835,0.0012466431362554,0.079590439796448]],[[0.07584910094738,0.063792891800404,-0.0010629813186824],[-0.0055143674835563,-0.0099689187481999,0.054423086345196],[0.068809181451797,0.052274372428656,0.12408922612667]],[[-0.0073388111777604,-0.0013589159352705,0.0050870152190328],[0.037023231387138,0.05428846552968,-0.045099571347237],[0.093646697700024,0.068247549235821,0.052769489586353]],[[0.029848448932171,0.073919370770454,0.19648343324661],[-0.13848951458931,0.015555589459836,0.11347299814224],[0.0072666723281145,0.05101290717721,-0.043220337480307]],[[-0.12437300384045,-0.013057532720268,0.027521831914783],[0.013969632796943,0.018746711313725,-0.024923540651798],[0.03013208694756,-0.045665998011827,-0.070652447640896]],[[-0.069285161793232,0.012778973206878,0.082593254745007],[-0.024999160319567,-0.084158629179001,0.059895146638155],[0.14713656902313,-0.048794016242027,-0.012732738628983]],[[-0.18088436126709,-0.06532296538353,-0.073993384838104],[0.059316702187061,0.020782481878996,-0.02260042540729],[0.014979376457632,-0.012083700858057,0.069650515913963]],[[0.10702051222324,-0.010522480122745,0.052172765135765],[-0.10083392262459,0.097746707499027,-0.055547650903463],[-0.19822151958942,-0.13633927702904,-0.086931802332401]]],[[[-0.044449333101511,-0.11185032874346,0.013025789521635],[0.015750173479319,0.069718584418297,-0.046883720904589],[0.030956875532866,0.070685394108295,0.10202179849148]],[[0.063820704817772,-0.058414824306965,-0.060304269194603],[-0.027712421491742,0.0085902065038681,0.089777864515781],[-0.01441543083638,-0.042733982205391,0.0066855070181191]],[[-0.15264888107777,-0.0016144849359989,-0.19037647545338],[-0.064107276499271,-0.019798383116722,-0.045555084943771],[-0.070444487035275,-0.0023784171789885,-0.0007172001642175]],[[-0.011060380376875,-0.080490164458752,-0.011021571233869],[-0.036449931561947,0.092331238090992,-0.12651336193085],[-0.1625510007143,-0.041201021522284,-0.10240293294191]],[[0.0019863815978169,0.061679288744926,-0.053164768964052],[-0.032255969941616,-0.045686390250921,-0.10356856137514],[-0.065871305763721,0.013272635638714,0.021500842645764]],[[-0.032895762473345,-0.12475256621838,-0.049248728901148],[0.049981873482466,-0.016082715243101,0.034362979233265],[-0.045630931854248,-0.0093192169442773,0.060875378549099]],[[0.10909666121006,-0.019572760909796,-0.091410972177982],[-0.01736669242382,-0.034145716577768,-0.028899434953928],[0.028275799006224,0.076928697526455,0.074106365442276]],[[0.00633525243029,0.033849447965622,0.0053780805319548],[0.10693740844727,0.087274968624115,-0.087577894330025],[-0.091009542346001,0.0182148180902,-0.038748446851969]],[[-0.15013505518436,0.092496290802956,0.057880826294422],[-0.021459536626935,0.0094626992940903,-0.030539765954018],[-0.19475290179253,0.11672749370337,-0.041661988943815]],[[0.13344775140285,-0.087354876101017,-0.1489634513855],[0.023565990850329,-0.092143662273884,-0.014160335063934],[-0.050009418278933,-0.018926311284304,0.10972023755312]],[[0.0093414727598429,-0.058731805533171,-0.080053269863129],[-0.034358207136393,-0.0013739771675318,-0.0046449592337012],[0.095184735953808,0.039874702692032,-0.028630554676056]],[[-0.15381050109863,-0.093320652842522,-0.13539069890976],[0.052074283361435,0.10700585693121,-0.20796251296997],[-0.074103347957134,0.087887763977051,-0.045848183333874]],[[-0.039137776941061,-0.024902848526835,-0.021365383639932],[-0.016484078019857,-0.098089568316936,0.070010907948017],[0.078519098460674,-0.056575383991003,-0.033010195940733]],[[-0.073087237775326,-0.093599379062653,0.050256341695786],[0.065966971218586,-0.049696192145348,0.12923847138882],[-0.044429682195187,-0.070056155323982,-0.039963681250811]],[[0.013052552938461,-0.040917191654444,-0.098647341132164],[0.064696595072746,0.0049455515109003,-0.031078709289432],[0.038599032908678,0.020812748000026,-0.056973084807396]],[[0.018822783604264,0.060838762670755,-0.21688129007816],[0.012016721069813,-0.071326471865177,-0.04442722722888],[-0.044438995420933,0.12560220062733,-0.099288091063499]],[[0.016218941658735,0.077986255288124,0.1216919273138],[0.02238998375833,0.059945367276669,0.036017082631588],[0.12611362338066,0.12269363552332,-0.042164523154497]],[[0.065130777657032,0.0062632882036269,-0.093018367886543],[-0.043951198458672,0.023009633645415,0.011484958231449],[0.033410910516977,0.080211296677589,-0.10301721096039]],[[0.04015814140439,-0.062159366905689,-0.0060632871463895],[0.081843845546246,-0.070756517350674,-0.066215127706528],[-0.0007339637959376,-0.088490977883339,0.017613878473639]],[[-0.084894470870495,-0.11591272056103,0.035934492945671],[-0.069531366229057,-0.13359090685844,0.033087309449911],[-0.083432212471962,-0.037322327494621,-0.1357831209898]],[[0.029547015205026,0.036436922848225,0.081722684204578],[0.083150394260883,-0.062625057995319,0.10148358345032],[-0.021680880337954,-0.05889193713665,-0.043966185301542]],[[-0.056021299213171,0.065191797912121,-0.02274521254003],[-0.0034278205130249,0.030327059328556,-0.064689002931118],[-0.073381796479225,-0.016109125688672,-0.021834146231413]],[[-0.026406109333038,0.066344499588013,0.0057188156060874],[-0.022491496056318,-0.013219961896539,-0.1957096606493],[-0.03891583904624,-0.0092987176030874,-0.070951014757156]],[[-0.069241836667061,-0.10364867001772,0.13020695745945],[0.09738440066576,0.024549011141062,0.12317449599504],[0.10266543924809,-0.15183264017105,-0.13126239180565]],[[-0.0091058248654008,0.066899120807648,0.14424487948418],[0.076780050992966,0.012397214770317,0.042100433260202],[0.023018434643745,0.040932264178991,0.033861964941025]],[[-0.041699156165123,0.05559266358614,0.0071446625515819],[-0.086468935012817,0.047574907541275,0.019484480842948],[-0.035950552672148,0.047589890658855,0.045966394245625]],[[0.065373674035072,0.11877344548702,0.027500052005053],[0.010452583432198,0.05448380112648,-0.12433972209692],[0.070873975753784,0.013573319651186,-0.095956966280937]],[[0.087619423866272,-0.10254471004009,-0.0020519061945379],[0.026986034587026,-0.17710161209106,-0.005107160191983],[0.012543261982501,-0.031202342361212,0.045829780399799]],[[-0.070459321141243,0.034695830196142,0.01976833678782],[-0.0082779210060835,-0.014400188811123,0.039804503321648],[-0.0075308009982109,-0.010919535532594,-0.05291810259223]],[[-0.051795821636915,0.0063802334479988,0.081517972052097],[0.077992528676987,0.015933347865939,-0.0040528140962124],[-0.02340898476541,-0.10804868489504,-0.010241062380373]],[[-0.10814140737057,-0.016935136169195,-0.036227084696293],[-0.057359918951988,0.070922888815403,0.03705708310008],[0.014228982850909,-0.029432022944093,-0.1274059265852]],[[-0.035346057265997,-0.18204842507839,-0.14150521159172],[-0.005781339481473,-0.043116845190525,-0.029623275622725],[0.18566611409187,-0.0060742986388505,0.036060608923435]],[[0.10364413261414,-0.19537542760372,0.0071218898519874],[0.10528059303761,-0.0080949896946549,-0.052526745945215],[-0.080684833228588,-0.058942679315805,-0.14871528744698]],[[0.04451734572649,-0.010859504342079,-0.090684168040752],[-0.08938805013895,-0.011185934767127,0.086144216358662],[0.036155264824629,-0.12350653111935,-0.039071079343557]],[[0.043229773640633,-0.0087521970272064,-0.026747120544314],[0.12327890098095,0.08649954944849,0.12272039800882],[-0.11865816265345,0.077043525874615,-0.0089588621631265]],[[-0.039847984910011,-0.06551019102335,-0.019597627222538],[0.023451458662748,0.0023747682571411,0.11784435063601],[-0.051681511104107,0.15076161921024,0.12323600798845]],[[0.068274982273579,0.054511293768883,0.072315737605095],[-0.032666351646185,0.087590754032135,0.017488278448582],[0.056947093456984,0.0043157930485904,0.011256118305027]],[[-0.028426084667444,-0.027686016634107,-0.0049852677620947],[0.059657514095306,-0.029521254822612,0.077146612107754],[-0.048822421580553,0.14426526427269,-0.039062213152647]],[[-0.050262100994587,-0.016502870246768,0.051271818578243],[-0.015029524452984,0.004138614051044,0.046523753553629],[0.029757007956505,-0.040221732109785,0.14350996911526]],[[-0.045204419642687,0.11896267533302,-0.017552305012941],[-0.10623859614134,0.055804014205933,0.036339070647955],[0.082850381731987,-0.075070306658745,-0.092052526772022]],[[-0.064697988331318,-0.12867948412895,0.067813202738762],[0.035499408841133,0.026816638186574,0.050839435309172],[-0.040224332362413,-0.065080694854259,-0.057326424866915]],[[0.004735040012747,0.064207956194878,0.053898837417364],[0.054082576185465,-0.049767807126045,0.038679357618093],[-0.024383192881942,-0.012473980896175,-0.027819219976664]],[[-0.0091953277587891,-0.034272514283657,0.012162456288934],[0.016688412055373,-0.14626318216324,-0.0053748995997012],[-0.012818912044168,-0.0035809236578643,-0.028383519500494]],[[0.12575609982014,-0.062003947794437,-0.017400583252311],[-0.0069171413779259,0.024021318182349,-0.024787994101644],[-0.190106138587,0.13573817908764,-0.069941267371178]],[[0.023717360571027,0.025562070310116,0.0094194328412414],[-0.098478138446808,0.052263472229242,0.031048260629177],[0.040731571614742,0.043604910373688,0.07414486259222]],[[-0.018015772104263,0.02832006663084,-0.02899581193924],[-0.029979649931192,-0.12863720953465,-0.06954650580883],[0.039469614624977,0.0078915981575847,0.055039409548044]],[[-0.048174012452364,0.012620475143194,0.037699833512306],[-0.015594333410263,0.0043071676045656,-0.11061891913414],[0.018488185480237,-0.051268789917231,0.07748956233263]],[[0.024621177464724,0.024595245718956,0.049719341099262],[-0.054510988295078,-0.024011431261897,0.054664008319378],[0.023270379751921,-0.0081183090806007,-0.024153908714652]],[[-0.10092429816723,-0.052079193294048,0.022562218829989],[-0.073364399373531,-0.054489016532898,-0.056524537503719],[0.023364027962089,-0.035359784960747,0.097073286771774]],[[-0.024969736114144,-0.089543096721172,-0.01931918784976],[0.039262570440769,0.1160543859005,0.0039525809697807],[-0.017519161105156,0.05296415835619,0.040448281913996]],[[-0.20430913567543,0.014695060439408,-0.038877241313457],[-0.00033278670161963,-0.04519747197628,0.0070680910721421],[0.11133888363838,0.0067330696620047,0.16531018912792]],[[-0.036873057484627,-0.014912529848516,-0.1138789281249],[-0.18818153440952,0.095319524407387,-0.026774978265166],[-0.00058929499937221,-0.028793670237064,-0.070333749055862]],[[-0.064522877335548,0.0054912064224482,-0.021564906463027],[0.022698104381561,-0.053596951067448,0.035930678248405],[0.07040724158287,-0.053038116544485,-0.045709390193224]],[[0.0091934548690915,-0.032658219337463,-0.033022072166204],[-0.0089375907555223,0.078613787889481,0.022273017093539],[0.035917218774557,-0.14250676333904,0.023093495517969]],[[-0.024017045274377,0.083156198263168,0.0007328589563258],[0.0079463701695204,0.031112719327211,-0.064613670110703],[-0.00065124518005177,0.022936556488276,0.10405230522156]],[[-0.15906390547752,-0.088792003691196,-0.026968384161592],[0.05107407271862,0.024636192247272,0.00058159534819424],[-0.15767356753349,-0.013608461245894,-0.15079782903194]],[[0.050398152321577,-0.12077268213034,-0.079899027943611],[-0.03038945235312,0.078837670385838,-0.023295123130083],[-0.052752029150724,0.025458922609687,-0.018372774124146]],[[-0.079597070813179,-0.0011292328126729,-0.029562441632152],[-0.010204018093646,0.031993739306927,-0.032675985246897],[-0.0068145208060741,0.11774879693985,-0.095639258623123]],[[0.050374429672956,0.10109457373619,0.037151210010052],[-0.0052663730457425,0.082068711519241,0.073389977216721],[0.073503389954567,0.031426023691893,0.12261290848255]],[[-0.077960699796677,-0.060342554003,-0.066088549792767],[-0.0015154645079747,-0.015918368473649,-0.146928191185],[0.073647350072861,0.028663149103522,-0.077752649784088]],[[0.030444229021668,0.090694211423397,0.014704387634993],[-0.0075760032050312,-0.057987064123154,-0.085734821856022],[0.01065708976239,-0.033728029578924,0.089250981807709]],[[0.12622562050819,-0.072150610387325,-0.079510204493999],[-0.075490288436413,0.049232430756092,-0.045086227357388],[0.043146502226591,-0.014042974449694,-0.0065244906581938]],[[0.01061678212136,0.15363635122776,0.067915968596935],[-0.047614209353924,-0.0210384093225,0.011755219660699],[0.054763711988926,0.10512883216143,0.10538660734892]],[[-0.11493496596813,-0.055780623108149,0.018982520326972],[-0.065015867352486,-0.072837069630623,-0.012189452536404],[-0.0024236808530986,0.026782834902406,-0.017371129244566]]],[[[-0.068990290164948,-0.070594303309917,-0.098913505673409],[-0.043474558740854,0.084641888737679,-0.010041931644082],[0.015301982872188,-0.027024243026972,0.039677899330854]],[[-0.09845619648695,-0.071500092744827,0.028148511424661],[-0.013095583766699,-0.1306795924902,-0.023413190618157],[-0.13266272842884,0.02257221005857,-0.1479789763689]],[[-0.033474445343018,0.01290244422853,-0.03256819024682],[6.3178580603562e-05,-0.053505524992943,-0.044027846306562],[0.022777579724789,-0.018726855516434,-0.062058832496405]],[[-0.074096150696278,-0.031782738864422,-0.0039603989571333],[0.057308666408062,-0.10053515434265,-0.030820989981294],[0.061316035687923,0.10765428841114,-0.020829712972045]],[[-0.085882186889648,0.047654636204243,-0.0084998607635498],[-0.2000982016325,-0.020060326904058,0.012135691009462],[0.056217432022095,0.075988195836544,0.14053624868393]],[[-0.010572307743132,-0.050462707877159,0.072952412068844],[-0.010666411370039,-0.00090107077267021,-0.029986787587404],[-0.015515008941293,0.022301912307739,-0.0047723259776831]],[[0.063089437782764,-0.03849096223712,-0.079752236604691],[0.055370822548866,0.076765805482864,-0.078759998083115],[-0.076681300997734,0.0326172336936,-0.02918928489089]],[[-0.10016869008541,-0.024129200726748,0.015193091705441],[-0.02541077695787,-0.034627135843039,-0.084829196333885],[0.035487297922373,0.085567317903042,0.043138563632965]],[[0.0054360120557249,0.044093120843172,-0.027753334492445],[-0.092688120901585,-0.05282735824585,0.027221402153373],[0.016781859099865,0.088728576898575,0.068477883934975]],[[0.036498423665762,-0.022659931331873,-0.1027595102787],[0.0071137817576528,-0.067198872566223,0.024976417422295],[0.23279468715191,-0.059639990329742,-0.11612139642239]],[[0.06273140758276,0.061799101531506,0.034204699099064],[-0.06216150149703,-0.065438687801361,-0.0079812807962298],[0.12994037568569,-0.090314120054245,0.10127864032984]],[[0.034965269267559,0.058745056390762,0.051876708865166],[-0.058663457632065,-0.089188195765018,0.018328882753849],[0.042271386831999,0.064303487539291,-0.018740504980087]],[[0.09329604357481,0.10490562021732,0.020032716915011],[0.034893967211246,0.073892094194889,0.078094802796841],[0.0261624827981,-0.02291663736105,0.034458976238966]],[[-0.23688746988773,-0.14178016781807,-0.15094643831253],[0.10923241823912,0.11957441270351,0.19063338637352],[0.067473731935024,0.12073605507612,-0.06263343244791]],[[-0.1330583691597,-0.12447789311409,-0.020019043236971],[0.049404602497816,0.017926122993231,-0.052645526826382],[-0.022356441244483,0.071713700890541,0.055574428290129]],[[-0.062012791633606,0.0058617694303393,0.097751498222351],[0.014903001487255,0.040344323962927,0.16965039074421],[0.066645726561546,-0.025437349453568,0.037574373185635]],[[-0.027409706264734,-0.10870796442032,-0.0078743183985353],[0.031383737921715,0.053619343787432,-0.012667908333242],[0.0055300365202129,0.084624342620373,0.074114128947258]],[[0.01489872019738,-0.20806112885475,-0.020550310611725],[0.1402617841959,0.095794171094894,-0.076600141823292],[-0.084116145968437,-0.1284627020359,0.00790193118155]],[[0.087635017931461,0.020406160503626,-0.16641214489937],[-0.076219268143177,-0.015617767348886,0.1687081605196],[-0.15847630798817,-0.039954345673323,-0.037609271705151]],[[0.046008430421352,-0.035719767212868,-0.079866915941238],[0.11772333830595,0.011423396877944,0.099751047790051],[-0.1825210750103,-0.041442073881626,0.050397202372551]],[[0.0068056313320994,0.076629303395748,0.0037336479872465],[0.028608828783035,0.0092769293114543,0.08229099214077],[0.00033010661718436,0.037296451628208,0.033233810216188]],[[0.081878431141376,0.00086626905249432,-0.018956249579787],[-0.0030145936179906,-0.034706480801105,-0.025898801162839],[-0.083661243319511,0.018597058951855,-0.050782937556505]],[[-0.002317083068192,-0.079503983259201,0.030988547950983],[-0.032722450792789,-0.0097267562523484,-0.14047801494598],[0.02073965780437,0.048167370259762,-0.067540094256401]],[[-0.074626564979553,0.16631799936295,-0.046966858208179],[0.15340971946716,0.059744533151388,0.089611046016216],[0.0061221872456372,-0.1247758641839,-0.10299932211637]],[[-0.066597647964954,-0.15591096878052,-0.14231193065643],[0.38221848011017,0.092050924897194,0.096126541495323],[0.04975038766861,0.097154252231121,0.15388336777687]],[[-0.0030444462317973,-0.057107705622911,-0.010787355713546],[0.073105975985527,-0.036041997373104,0.0079445671290159],[0.015658427029848,-0.010835795663297,0.030222982168198]],[[0.041781034320593,-0.00012140048056608,0.023015620186925],[0.057305656373501,0.10160319507122,0.067482180893421],[-0.045526664704084,-0.130968272686,-0.18375255167484]],[[-0.063012525439262,0.071448437869549,0.058171547949314],[0.005372173152864,-0.028350342065096,-0.11240153759718],[-0.13121965527534,-0.066472008824348,-0.05552451685071]],[[-0.001310495310463,-0.10328564047813,-0.012554180808365],[-0.019180467352271,-0.059328228235245,0.009731781668961],[-0.055908191949129,-0.11705046892166,-0.1178226172924]],[[0.15672460198402,-0.085696086287498,-0.069261066615582],[0.11046370863914,0.06337458640337,0.012427021749318],[-0.044323954731226,-0.031204916536808,0.05092179402709]],[[0.03581915050745,-0.01297059841454,-0.061874464154243],[0.057280603796244,-1.8120796084986e-05,-0.030312273651361],[-0.12495868653059,0.045491550117731,-0.016345435753465]],[[0.0080982325598598,0.08321475982666,0.15533231198788],[0.059506148099899,0.11095817387104,0.19970168173313],[0.090300433337688,0.0087227374315262,-0.031159203499556]],[[0.16238848865032,-0.030390374362469,-0.052927199751139],[0.045540206134319,-0.074503861367702,-0.11681467294693],[0.08488380163908,0.13903640210629,0.017720611765981]],[[0.062019102275372,0.069583356380463,-0.048651788383722],[-0.05460287630558,-0.021409533917904,-0.0027895199600607],[-0.14082114398479,0.03098270483315,0.16782677173615]],[[-0.077587939798832,-0.019762234762311,-0.054973114281893],[0.15419511497021,0.061625603586435,-0.088987790048122],[-0.11594011634588,0.096906237304211,-0.075005613267422]],[[-0.078585043549538,0.098231688141823,0.10382156074047],[0.074746213853359,-0.023157268762589,0.045063097029924],[0.030981238931417,0.066552549600601,-0.091203302145004]],[[-0.18295313417912,-0.094903416931629,-0.046577323228121],[-0.00470738299191,0.011513749137521,-0.12382651120424],[0.10257811844349,-0.085334524512291,-0.13960419595242]],[[0.016125213354826,0.037862084805965,0.091605588793755],[-0.047151211649179,-0.11905054003,0.085411623120308],[0.049930289387703,0.050476875156164,-0.17138513922691]],[[-0.23475976288319,-0.17630198597908,-0.027135398238897],[-0.15417936444283,-0.075055651366711,-0.066142141819],[-0.055896483361721,0.12621262669563,-0.017194144427776]],[[0.096364744007587,0.068629667162895,0.060904331505299],[0.042421903461218,0.064683198928833,-0.01839223317802],[-0.054417196661234,-0.068591497838497,-0.16151183843613]],[[-0.056887865066528,0.11335615813732,0.090880699455738],[0.073158912360668,-0.0026554756332189,0.066559031605721],[-0.063922367990017,0.12070367485285,-0.088377214968204]],[[-0.013689190149307,-0.0046126265078783,0.036085281521082],[0.031564317643642,0.079609178006649,-0.098501995205879],[-0.12440884113312,0.090214781463146,0.0074181784875691]],[[-0.18173049390316,-0.093285419046879,-0.00083124591037631],[0.057407822459936,0.025472642853856,0.068720519542694],[0.02469427511096,0.17256914079189,-0.017683321610093]],[[-0.024715036153793,-0.024951029568911,-0.082367584109306],[0.12035229057074,-0.012483345344663,-0.017053660005331],[-0.020281227305532,-0.011077046394348,0.10293052345514]],[[0.060537241399288,0.0080098295584321,-0.018470011651516],[0.10714577138424,0.0021897961851209,0.035061195492744],[-0.039374213665724,-0.12844106554985,-0.037292335182428]],[[-0.13433754444122,-0.043590161949396,0.033147525042295],[0.073883503675461,-0.054021511226892,0.15243203938007],[0.27354338765144,0.078684158623219,0.12515366077423]],[[-0.036883514374495,-0.015340381301939,-0.0017517311498523],[-0.060741543769836,0.011287455447018,-0.003606112441048],[-0.027569321915507,-0.024438226595521,-0.07164890319109]],[[0.024498423561454,-0.039770185947418,-0.10555136203766],[-0.039081614464521,0.016811735928059,-0.13977998495102],[0.090770088136196,0.078931018710136,0.017207892611623]],[[-0.099817842245102,-0.043875455856323,-0.040884729474783],[-0.030094495043159,-0.058615729212761,0.024657938629389],[-0.059455849230289,-0.025071976706386,-0.12154354155064]],[[-0.085346907377243,-0.0056182993575931,0.097502306103706],[0.091817662119865,0.18473203480244,0.11595477163792],[-0.072744533419609,-0.069939970970154,0.054805487394333]],[[-0.052341762930155,0.001958517357707,-0.0021112721879035],[-0.038296170532703,0.10343876481056,0.015752566978335],[0.019918728619814,-0.11167407780886,-0.12168380618095]],[[-0.039344161748886,-0.032977014780045,0.067401841282845],[0.023427283391356,0.14828069508076,0.030180251225829],[0.0080528194084764,0.12022069841623,0.10663609206676]],[[0.0012283088872209,-0.062272060662508,0.037008218467236],[-0.022050838917494,0.066727109253407,-0.032479975372553],[-0.00050390156684443,0.09594465047121,0.00023007272102404]],[[-0.022517286241055,-0.080042891204357,0.049514524638653],[0.15220899879932,0.0073571475222707,-0.12440997362137],[-0.0077601848170161,0.013425282202661,-0.0538096614182]],[[0.062621593475342,0.049885179847479,-0.029106324538589],[-0.081852316856384,-0.020530754700303,-0.0025255854707211],[-0.16495767235756,0.043585103005171,0.065190926194191]],[[-0.0077294241636992,-0.12820015847683,-0.043945770710707],[0.036884382367134,-0.050465062260628,-0.22409853339195],[0.052034568041563,-0.037691701203585,-0.073362275958061]],[[-0.030973739922047,0.12177012115717,0.076090767979622],[0.033632665872574,0.08814737200737,0.040343467146158],[-0.072915196418762,0.055684886872768,-0.061877243220806]],[[0.054367911070585,-0.022344876080751,-0.038669068366289],[-0.019953295588493,-0.067427195608616,0.00644122203812],[0.068616069853306,-0.060263801366091,-0.087567456066608]],[[0.024504117667675,0.015427517704666,-0.065344929695129],[0.013604335486889,-0.031319066882133,0.064260743558407],[0.013804565183818,0.18348647654057,0.16490058600903]],[[0.1449538320303,-0.042870629578829,-0.007305545732379],[-0.088801890611649,-0.018351089209318,-0.10708897560835],[-0.054491989314556,-0.021941807121038,-0.10856394469738]],[[-0.064958907663822,-0.0074556786566973,-0.1534406542778],[-0.029135225340724,-0.0023609539493918,-0.095870524644852],[-0.21453481912613,-0.045576300472021,-0.034662615507841]],[[0.0593271702528,-0.12417735904455,0.017372386530042],[-0.092428833246231,0.035636056214571,0.14083251357079],[-0.027881097048521,-0.057463809847832,0.1432438492775]],[[-0.033013716340065,-0.0091876396909356,-0.099428437650204],[0.14781653881073,0.11560703068972,0.1122132986784],[-0.10221889615059,-0.03713820502162,-0.063064001500607]],[[0.07664030790329,0.026714883744717,-0.085094623267651],[-0.070780023932457,0.054731070995331,0.035864546895027],[0.091808758676052,0.069133475422859,0.13614512979984]]],[[[0.0054598045535386,0.008348154835403,0.01491916179657],[-0.089479327201843,-0.050510536879301,-0.083983279764652],[-0.017932206392288,0.030046040192246,0.0059358198195696]],[[-0.01641414873302,-0.14367163181305,-0.08718203753233],[-0.17242938280106,0.012277365662158,0.040806829929352],[-0.0031625416595489,-0.098065927624702,-0.10857574641705]],[[-0.11812517046928,0.061898894608021,0.077222585678101],[-0.012980092316866,-0.077236548066139,-0.02820173278451],[0.026709847152233,-0.11599054932594,-0.024648373946548]],[[-0.012149816378951,-0.067094832658768,-0.10597561299801],[-0.036985728889704,0.17528961598873,-0.058693300932646],[0.076022543013096,-0.041673216968775,-0.024254785850644]],[[0.053023993968964,0.14230352640152,0.0014466410502791],[0.027797948569059,0.016476925462484,0.035739634186029],[0.048226583749056,0.0015124783385545,0.092048287391663]],[[-0.044866532087326,-0.035826653242111,0.012009776197374],[0.011042336933315,-0.11166045814753,-0.1675041615963],[0.028804549947381,0.013475252315402,-0.008028307929635]],[[-0.041286058723927,-0.059234898537397,0.048121150583029],[-0.078955695033073,0.040876060724258,0.089251182973385],[-0.0068957544863224,0.15718877315521,0.15406399965286]],[[-0.024909371510148,-0.011110719293356,-0.040323652327061],[0.02558515034616,0.056626047939062,-0.10986357927322],[0.093482077121735,0.111646451056,0.06577355414629]],[[0.041588976979256,-0.015126060694456,-0.03358618915081],[0.011944542638958,-0.041386011987925,0.040899381041527],[0.060796249657869,-0.038451284170151,0.01576273329556]],[[-0.10782875865698,-0.0072458377107978,-0.045224472880363],[0.097326278686523,-0.10145374387503,-0.057468693703413],[-0.0088250571861863,-0.0028238280210644,0.0046035060659051]],[[-0.018337501212955,-0.03108574077487,0.014493386261165],[0.037466056644917,-0.040150739252567,-0.080151669681072],[0.1545395553112,0.023522488772869,0.12154830992222]],[[-0.020778665319085,-0.0018113518599421,0.044301420450211],[-0.14136610925198,-0.012515123933554,0.081151910126209],[0.10994508862495,0.020347600802779,-0.01066052634269]],[[-0.0040078260935843,-0.054774511605501,0.02968031540513],[-0.019733151420951,0.054836764931679,0.013050483539701],[-0.015015662647784,0.16038312017918,0.0081234239041805]],[[-0.10578695684671,-0.057653967291117,0.061792001128197],[0.030315263196826,-0.046042993664742,-0.0016060790512711],[0.092235893011093,-0.08213634043932,-0.0085003916174173]],[[0.023947997018695,0.012712819501758,0.12285473197699],[-0.11937693506479,-0.14035342633724,-0.066483318805695],[-0.030590826645494,-0.077646389603615,0.01812856644392]],[[-0.01149364002049,-0.086426563560963,-0.070603534579277],[0.026211813092232,-0.017787596210837,0.032310258597136],[-0.002805418567732,0.12195595353842,0.07745736092329]],[[-0.072290308773518,-0.03491660580039,-0.013220997527242],[-0.080651216208935,-0.031260389834642,0.099736735224724],[-0.18418110907078,-0.030950073152781,-0.017294777557254]],[[0.017596373334527,0.012395036406815,0.022982638329268],[0.05821730941534,-0.045729540288448,-0.01560272090137],[-0.10033405572176,0.056788392364979,0.070671066641808]],[[-0.13102205097675,0.00011620465375017,0.16641195118427],[0.018582839518785,0.029604626819491,-0.03780659288168],[-0.067479096353054,-0.11143234372139,-0.070987187325954]],[[0.038284320384264,-0.12070382386446,0.0091502536088228],[0.049796096980572,-0.14768272638321,0.013236274011433],[0.019041579216719,0.046129483729601,-0.051359284669161]],[[0.051812954246998,-0.016063982620835,-0.065336644649506],[-0.0012862347066402,0.064527966082096,0.041104555130005],[0.10504880547523,0.028560312464833,0.11530700325966]],[[-0.050580412149429,-0.067286312580109,-0.049470864236355],[-0.0092478515580297,-0.0035031144507229,-0.03572665527463],[-0.0092734200879931,0.012432864867151,0.069178618490696]],[[-0.010127030313015,-0.040929488837719,0.0077662519179285],[0.0032239167485386,-0.023464605212212,0.070296101272106],[-0.043870523571968,0.00062551407609135,-0.0062031801789999]],[[-0.0090081496164203,-0.041363842785358,0.03692227602005],[-0.0011523338034749,0.052839286625385,-0.18685947358608],[0.070946730673313,0.063778318464756,-0.061689648777246]],[[0.00016193404735532,-0.16843913495541,-0.10224280506372],[0.086014971137047,0.021946666762233,-0.0099654784426093],[-0.053374446928501,0.011274790391326,0.018658017739654]],[[0.012120813131332,0.019198076799512,0.011973665095866],[0.011232390999794,0.014614945277572,0.11773310601711],[-0.014370497316122,-0.12160848081112,-0.020438585430384]],[[0.074431389570236,0.1066972464323,-0.032704744488001],[-0.019551131874323,-0.089003823697567,-0.057299830019474],[0.036375675350428,-0.10914973914623,-0.16554768383503]],[[0.024560987949371,-0.089410006999969,-0.18721939623356],[-0.067820802330971,0.0031488216482103,0.17692889273167],[-0.033301260322332,-0.048410162329674,-0.18645843863487]],[[-0.020417734980583,0.091763362288475,0.092115812003613],[0.054189845919609,0.0064139566384256,-0.047526381909847],[-0.050132300704718,-0.081647843122482,-0.10260336846113]],[[-0.01612851023674,-0.046387430280447,0.012421959079802],[0.0078462995588779,0.011160871013999,0.032614070922136],[-0.015792274847627,-0.0052904076874256,-0.084590002894402]],[[0.075670048594475,-0.049054313451052,-0.03391731902957],[0.09817185997963,-0.072200953960419,0.082625173032284],[-0.26322621107101,-0.1196893081069,-0.00034154855529778]],[[0.082125395536423,0.059503104537725,-0.010722821578383],[0.18101134896278,0.096081182360649,0.12596154212952],[0.088356971740723,-0.029145538806915,0.025831406936049]],[[-0.055463928729296,-0.0054686898365617,0.070946373045444],[-0.022973937913775,-0.02440045401454,0.0015419728588313],[-0.0063376338221133,-0.029622994363308,0.028768783435225]],[[-0.02776837721467,0.069385126233101,0.031143542379141],[0.00029836979229003,0.027779679745436,0.024176260456443],[-0.089827507734299,-0.085867770016193,0.041580732911825]],[[-0.032304786145687,0.069630950689316,-0.1730839908123],[-0.16317196190357,0.057265266776085,0.041719142347574],[-0.00064733671024442,0.019397009164095,-0.17231869697571]],[[0.053657338023186,0.04400372132659,0.11162803322077],[0.0036722889635712,-0.045674864202738,0.012718254700303],[0.043358333408833,-0.041028305888176,0.051725577563047]],[[0.10337332636118,0.036030139774084,0.0091445799916983],[0.11238040775061,0.052811548113823,0.047176606953144],[0.073837429285049,-0.053427409380674,0.081409357488155]],[[0.058791480958462,-0.034716907888651,-0.040336072444916],[-0.059254348278046,0.027363585308194,0.073228783905506],[0.053185809403658,-0.11741391569376,-0.10255265235901]],[[-0.023944633081555,0.034638915210962,0.11596415936947],[0.067706793546677,-0.035041134804487,-0.11573442816734],[-0.015208926983178,-0.055181566625834,-0.038355208933353]],[[0.006311391480267,-0.077113553881645,-0.022026458755136],[0.0090708620846272,-0.19219025969505,-0.0083976881578565],[0.071098126471043,-0.041171327233315,-0.14545737206936]],[[-0.10845589637756,0.095121785998344,0.054846309125423],[-0.072224177420139,-0.0052605741657317,0.044380255043507],[0.0062848264351487,-0.073466837406158,-0.061220120638609]],[[0.02389845252037,0.041249699890614,0.03733291476965],[-0.077812902629375,-0.091199152171612,0.004244192969054],[-0.030262580141425,-0.082281939685345,0.0643689930439]],[[0.11154375970364,0.054277721792459,-0.10005293041468],[0.0023800740018487,0.056063175201416,0.050136774778366],[-0.0024151150137186,-0.047360762953758,0.053061716258526]],[[0.026797033846378,0.0083067277446389,-0.12201746553183],[-0.22100183367729,-0.035690747201443,0.030386196449399],[-0.062303505837917,0.076566100120544,0.041535563766956]],[[0.12042152136564,-0.074097104370594,-0.0040534329600632],[-0.064105160534382,0.078514352440834,0.089727535843849],[-0.14204934239388,-0.028360987082124,-0.14096885919571]],[[0.063008472323418,0.03806446865201,0.013879138976336],[-0.020286608487368,0.11284618079662,-0.046476908028126],[-0.11030861735344,0.020576916635036,0.18629203736782]],[[-0.014849944040179,-0.18639402091503,-0.040613625198603],[0.050887547433376,0.028277980163693,-0.044569052755833],[0.012274175882339,-0.0051351105794311,0.12808300554752]],[[0.12831278145313,0.0070193475112319,-0.060496885329485],[-0.10068564862013,0.020597226917744,0.11969549208879],[-0.023243706673384,-0.06531548500061,0.072017900645733]],[[-0.0091045117005706,-0.038754105567932,-0.061572521924973],[0.01081739552319,-0.019551813602448,-0.096339859068394],[-0.093405522406101,0.098835572600365,0.11710476130247]],[[0.17316734790802,0.17077173292637,0.017132876440883],[0.0059131267480552,0.018774673342705,-0.07658564299345],[0.045081976801157,0.085062831640244,-0.011225688271224]],[[-0.01620695926249,-0.18241177499294,-0.066011160612106],[-0.019484991207719,0.0023874540347606,-0.12329585850239],[-0.043875683099031,-0.0049163401126862,0.11459846049547]],[[-0.06633273512125,0.041347254067659,0.01663020439446],[-0.076236680150032,-0.033991899341345,-0.034250296652317],[0.050526797771454,-0.020462423563004,-0.089203216135502]],[[0.045782137662172,-0.036983266472816,-0.034771677106619],[-0.042686533182859,-0.071368910372257,0.0088032046332955],[-0.019205763936043,0.031969416886568,-0.051166232675314]],[[-0.029306335374713,-0.041830562055111,0.13976807892323],[-0.041847832500935,-0.038470156490803,0.0026083430275321],[-0.066779129207134,0.024352187290788,-0.10162331908941]],[[-0.014131869189441,0.07375805824995,-0.041607975959778],[0.008606543764472,-0.056274488568306,-0.059471510350704],[0.022942449897528,0.022330392152071,0.022921049967408]],[[-0.030735142529011,-0.04366947337985,0.11371137946844],[0.035519752651453,-0.072183378040791,-0.078235410153866],[-0.086356654763222,-0.0064099757000804,0.072322070598602]],[[-0.078460648655891,-0.064621858298779,-0.14840045571327],[0.098925672471523,0.030688868835568,-0.019834239035845],[-0.054402001202106,0.00050388649106026,0.023907421156764]],[[-0.018360897898674,0.019201871007681,0.039159588515759],[0.11274367570877,0.028042854741216,0.11917918920517],[-0.0007619425887242,-0.063453078269958,0.11423718184233]],[[0.065318360924721,0.056385394185781,0.053601838648319],[0.1179251074791,0.077655628323555,0.017539186403155],[0.13586622476578,-0.033891186118126,0.028874646872282]],[[0.055891148746014,0.042403843253851,-0.086104094982147],[0.00020417330961209,0.053692422807217,0.14809617400169],[0.014906166121364,-0.07512491196394,-0.073433429002762]],[[-0.017436599358916,0.023482168093324,0.077222861349583],[0.053113058209419,-0.22735799849033,-0.17386938631535],[-0.015716852620244,-0.0092650707811117,-0.085784241557121]],[[-0.03851880505681,0.04654760286212,0.30589118599892],[0.085143283009529,-0.034180704504251,-0.040537774562836],[0.11802194267511,0.080378122627735,-0.12858583033085]],[[-0.062221173197031,-0.01801186054945,0.10938933491707],[0.096321880817413,0.037801276892424,0.077103614807129],[0.060110040009022,-0.053366158157587,-0.17055331170559]],[[0.090610213577747,0.069986291229725,-0.15610767900944],[0.019322816282511,-0.031951598823071,0.0012922476744279],[0.13049052655697,-0.083638392388821,0.1256281286478]]],[[[0.16453839838505,-0.014725001528859,-0.063008479773998],[-0.071245208382607,0.065042421221733,-0.034527279436588],[-0.041779778897762,-0.094562612473965,-0.1237006559968]],[[-0.26813933253288,-0.060990873724222,0.0037381909787655],[-0.033370222896338,-0.030742248520255,0.079264640808105],[-0.019133746623993,0.0015440119896084,0.032594095915556]],[[-0.04540141299367,0.043590627610683,-0.16209368407726],[-0.011472657322884,-0.042191851884127,-0.038514517247677],[0.008820652961731,0.0025112912990153,-0.0076810563914478]],[[-0.18718990683556,0.054194688796997,-0.078034527599812],[-0.047501642256975,0.060560543090105,0.11077984422445],[0.014494322240353,-0.08339436352253,-0.049700830131769]],[[-0.062060054391623,-0.000667737738695,0.018721781671047],[-0.082386240363121,-0.081461176276207,-0.074193865060806],[-0.19610483944416,-0.074203006923199,-0.04245050996542]],[[-0.086193896830082,-0.077361427247524,-0.057035062462091],[0.0083535518497229,-0.035105861723423,-0.038662418723106],[0.089351840317249,-0.083011917769909,-0.010445571504533]],[[-0.14407742023468,-0.11538077890873,-0.22469645738602],[0.14345271885395,0.025465929880738,-0.11257037520409],[-0.10032851994038,-0.072958022356033,-0.086202368140221]],[[-0.024160448461771,-0.028661908581853,0.038934823125601],[0.041772060096264,0.016948001459241,0.070274978876114],[-0.01872113533318,0.037320703268051,0.11432328820229]],[[-0.16104297339916,0.029261376708746,-0.045469060540199],[-4.2252006096533e-05,0.026632603257895,0.026077829301357],[0.12878000736237,-0.043491140007973,0.02953365072608]],[[0.11241758614779,0.040602959692478,0.032296176999807],[-0.028020497411489,-0.030455427244306,-0.016513137146831],[0.029330810531974,0.049496367573738,0.013932049274445]],[[-0.0042937900871038,-0.0080249318853021,-0.04454805329442],[-0.13650493323803,-0.12358391284943,-0.10080577433109],[0.009404506534338,0.00045164179755375,0.010293735191226]],[[-0.047310583293438,-0.068592451512814,0.004855606239289],[-0.059390630573034,0.027588825672865,0.048627197742462],[0.1380630582571,0.073171645402908,-0.024678068235517]],[[0.012364267371595,0.030745381489396,0.0677580088377],[0.049548618495464,0.0060764504596591,-0.07079890370369],[-0.0028851660899818,-0.086269997060299,-0.13294599950314]],[[-0.13913671672344,-0.14952182769775,-0.15272949635983],[0.020883295685053,0.038254547864199,0.057546887546778],[-0.00059232447529212,-0.16117964684963,-0.22394788265228]],[[-0.012518934905529,0.030185205861926,-0.07723942399025],[-0.12522029876709,-0.0071933763101697,0.003393832128495],[-0.021358657628298,-0.039303176105022,0.044875256717205]],[[-0.0278679151088,0.04620610550046,-0.032088842242956],[0.0021482734009624,0.044446934014559,0.091271162033081],[-0.23847885429859,-0.12133818864822,0.074933283030987]],[[0.079400770366192,-0.062539644539356,-0.089654415845871],[0.10054668039083,0.036849360913038,0.0923021286726],[-0.098702490329742,0.093314364552498,-0.00060925859725103]],[[-0.072037488222122,-0.024207960814238,0.053447164595127],[0.036096874624491,0.1249050796032,-0.055982802063227],[-0.0028417001012713,-0.039009068161249,0.090160198509693]],[[0.033335223793983,0.072598874568939,0.058506466448307],[-0.034373786300421,-0.046430088579655,-0.03021527826786],[0.11340776085854,-0.032143253833055,-0.11832344532013]],[[0.022400215268135,0.011841499246657,0.070152126252651],[-0.23228760063648,0.055615723133087,0.11869473010302],[0.086164578795433,-0.025974724441767,0.083226688206196]],[[-0.18374767899513,-0.004383924882859,-0.12367451936007],[0.10231117904186,0.034269995987415,0.13640120625496],[0.018437387421727,0.074360087513924,-0.019809767603874]],[[0.053717635571957,-0.024196410551667,0.0071619232185185],[-0.071797378361225,0.009961349889636,0.010263402014971],[-0.075276769697666,-0.0089243836700916,-0.0075784604996443]],[[-0.021769929677248,-0.0033175169955939,-0.05014056712389],[0.011646017432213,-0.030256969854236,-0.1078250259161],[0.056941207498312,0.018925687298179,0.0024588154628873]],[[0.1481369137764,0.053971104323864,-0.010222620330751],[0.14000764489174,-0.028199575841427,0.022139091044664],[-0.053252149373293,0.028580037876964,-0.16166953742504]],[[0.0070871259085834,0.051298081874847,0.106504522264],[-0.0025866436772048,0.0099412240087986,0.1394387036562],[0.036456055939198,-0.063346296548843,0.15533718466759]],[[0.023868478834629,-0.075541868805885,-0.16695939004421],[0.098841890692711,-0.040279384702444,-0.014370979741216],[0.057324752211571,0.018971739336848,0.016592713072896]],[[-0.010211661458015,0.020499877631664,-0.056540980935097],[0.056787472218275,-0.084547102451324,-0.023266075178981],[-0.14718016982079,-0.022114833816886,-0.035122934728861]],[[0.12078440189362,-0.00090901664225385,0.013188347220421],[-0.0094109829515219,0.0012793992646039,-0.0077618891373277],[-0.0031044809147716,0.007789452560246,0.072208195924759]],[[0.016149261966348,-0.010420674458146,-0.07564165443182],[-0.12580838799477,-0.053208880126476,-0.1579947322607],[0.062434166669846,-0.00064097397262231,0.0017778739565983]],[[0.11610608547926,-0.033350743353367,-0.050562780350447],[0.09358586370945,0.091452613472939,0.052682612091303],[0.054563589394093,0.012583607807755,-0.010769301094115]],[[-0.016185086220503,0.096181139349937,0.16660843789577],[0.018035385757685,0.10668306052685,0.150769084692],[0.22723257541656,0.0020038669463247,-0.039868969470263]],[[0.15217012166977,0.044721677899361,-0.025032106786966],[-0.081511504948139,-0.023531105369329,-0.0031499823089689],[-0.1571841686964,-0.054763298481703,0.029993429780006]],[[0.054307118058205,-0.0077344831079245,0.075951278209686],[-0.057939250022173,-0.024868400767446,-0.088881060481071],[0.090437829494476,0.039802297949791,-0.00070143962511793]],[[0.01297455560416,-0.046972561627626,-0.0031838659197092],[0.064364477992058,-0.050637133419514,0.079953238368034],[-0.032225847244263,0.056095629930496,-0.10617111623287]],[[-0.09157881885767,-0.023743668571115,0.053606722503901],[-0.04240657389164,-0.022907419130206,0.015226184390485],[-0.14365740120411,-0.070371091365814,-0.015846867114305]],[[0.088217608630657,-0.069477409124374,0.049033705145121],[0.062003783881664,0.024705834686756,-0.034588724374771],[0.014806675724685,0.032354477792978,0.060260433703661]],[[0.015530969947577,-0.143380433321,-0.017133049666882],[0.1741936057806,-0.12179210036993,0.0041287839412689],[0.14209482073784,-0.026947902515531,0.0063954978249967]],[[-0.071988150477409,0.027660500258207,0.11767555773258],[-0.2338332682848,-0.017845412716269,-0.057302236557007],[0.10566113889217,-0.034976940602064,0.012121116742492]],[[-0.047551080584526,-0.025093872100115,0.088294737040997],[-0.038146216422319,-0.022637726739049,-0.011766030453146],[0.043289706110954,-0.036433886736631,0.031879261136055]],[[-0.090078800916672,0.0806715041399,0.045122500509024],[0.012770464643836,-0.029130728915334,-0.049363233149052],[0.029128275811672,0.10206908732653,-0.063685543835163]],[[0.085468001663685,0.016100162640214,-0.03007909655571],[-0.032453410327435,-0.087537586688995,-0.024472484365106],[0.098654076457024,0.032287444919348,-0.098878256976604]],[[0.066716812551022,-0.077006973326206,-0.14618214964867],[-0.042186874896288,-0.095300234854221,0.027998920530081],[0.0066995723173022,0.035514004528522,-0.11954212933779]],[[-0.024150654673576,-0.0072722658514977,-0.03206180408597],[-0.037256546318531,-0.13803791999817,-0.022922832518816],[0.10167910158634,-0.035210404545069,-0.066920019686222]],[[-0.079457275569439,-0.097769036889076,0.037676438689232],[-0.021738002076745,-0.0054828347638249,0.10180732607841],[0.205731138587,-0.066065073013306,-0.013684638775885]],[[0.12011423707008,-0.037705920636654,0.037186995148659],[0.0031894228886813,-0.061646565794945,-0.052936896681786],[0.18763618171215,0.094863511621952,-0.059296056628227]],[[-0.00686378730461,0.072016201913357,-0.011988618411124],[-0.0096881547942758,-0.063104815781116,-0.19352208077908],[-0.17583359777927,0.041145250201225,0.14858232438564]],[[0.027885353192687,0.011804484762251,-0.088945336639881],[-0.061490193009377,-0.039295207709074,-0.055911473929882],[0.10301753878593,0.030898923054338,0.06425628811121]],[[0.046949502080679,-0.048533823341131,-0.018203346058726],[-0.05754641070962,0.099898397922516,0.14271976053715],[-0.11918254941702,-0.14885921776295,-0.091342151165009]],[[-0.15335765480995,-0.073976837098598,-0.042972926050425],[-0.022042326629162,0.043503705412149,-0.0031921330373734],[-0.039781052619219,-0.040668413043022,-0.095593832433224]],[[0.10817284882069,0.070568703114986,-0.014668004587293],[0.025720944628119,0.18267810344696,0.048627641052008],[0.044129066169262,-0.049739919602871,0.044390566647053]],[[0.15794830024242,0.017152335494757,-0.14698737859726],[-0.070155344903469,0.033196058124304,-0.053564716130495],[0.10679031908512,-0.14136236906052,-0.019520733505487]],[[-0.13128839433193,0.10978092253208,-0.086281068623066],[0.037242725491524,-0.19779352843761,0.00041530359885655],[0.12111786752939,0.012317294254899,-0.079008966684341]],[[0.1267648935318,0.0035230256617069,-0.032699286937714],[-0.047987509518862,-0.034810606390238,-0.0094754416495562],[-0.036943983286619,0.086400263011456,-0.029221538454294]],[[-0.059452269226313,0.032385386526585,-0.0035560161340982],[-0.02389657124877,0.047125425189734,0.073985725641251],[-0.19983366131783,-0.052512310445309,0.0038362080231309]],[[0.070335753262043,0.1198043525219,-0.033847235143185],[0.049975778907537,0.0051990486681461,-0.0024844829458743],[0.012559287250042,-0.01573533192277,0.030439512804151]],[[0.11792563647032,-0.054646991193295,0.063113510608673],[-0.0043688602745533,-0.012120259925723,-0.06917804479599],[-0.057250238955021,0.027358695864677,0.033353973180056]],[[-0.053116045892239,-0.059140112251043,-0.0070422501303256],[-0.03390534594655,0.064126707613468,-0.16727270185947],[0.079947553575039,0.020264208316803,0.15499742329121]],[[0.023635476827621,0.11148128658533,-0.17757666110992],[0.017597364261746,0.045687701553106,-0.010110965929925],[-0.012643633410335,-0.022347930818796,0.0093389796093106]],[[0.11475943773985,0.10659144818783,0.13141041994095],[-0.037812124937773,-0.014585360884666,0.060728870332241],[-0.089757516980171,-0.014238845556974,0.046037700027227]],[[0.11749471724033,0.10306541621685,-0.097032099962234],[0.022184329107404,-0.094288840889931,-0.026397144421935],[0.021600022912025,-0.06022010743618,-0.10261683166027]],[[0.0001496364857303,0.0094602471217513,0.070482164621353],[-0.03039027005434,-0.029705919325352,0.033561050891876],[-0.097456812858582,-0.030175277963281,0.029582807794213]],[[0.016395013779402,-0.029777722433209,-0.071620143949986],[0.035062860697508,0.03676039353013,0.064544215798378],[0.030307330191135,-0.088749788701534,0.015580835752189]],[[-0.15998084843159,-0.081832066178322,-0.012951458804309],[-0.13839370012283,-0.072588875889778,0.10321963578463],[-0.099248446524143,0.10267706215382,-0.13573004305363]],[[0.085086062550545,0.016777066513896,0.00087411986896768],[-0.068982571363449,0.088070809841156,-0.12284187227488],[-0.025747157633305,-0.078540533781052,-0.098616145551205]]],[[[-0.11556419730186,0.067419245839119,-0.29202607274055],[-0.053960870951414,0.024581959471107,-0.25607624650002],[0.060317907482386,-0.039445027709007,-0.29504573345184]],[[-0.19451789557934,-0.1048576682806,-0.14818121492863],[-0.11492935568094,-0.099175065755844,-0.1258847117424],[-0.086556635797024,-0.13080061972141,-0.13174748420715]],[[-0.0017751343548298,-0.0096695991232991,-0.11744729429483],[-0.088471405208111,0.044951591640711,-0.14347958564758],[-0.083931855857372,0.020957304164767,-0.014072772115469]],[[0.28813153505325,0.088333621621132,0.068567007780075],[-0.11520639061928,-0.045801565051079,0.030744861811399],[-0.082587450742722,0.039252292364836,-0.21668308973312]],[[-0.032653018832207,0.068542793393135,0.015862818807364],[0.046159859746695,0.044238045811653,-0.1234522163868],[-0.054828021675348,-0.042209126055241,-0.12082105875015]],[[-0.16610190272331,-0.14737488329411,0.0073296674527228],[-0.02889546006918,-0.045667510479689,-0.038519904017448],[-0.089636407792568,0.011687133461237,0.016271194443107]],[[-0.049258302897215,0.043525442481041,0.24238805472851],[-0.036743089556694,-0.062893003225327,0.081061162054539],[0.016016138717532,-0.013600645586848,-0.1372454315424]],[[-0.056042354553938,-0.0568489395082,-0.044022493064404],[-0.041283700615168,0.0053517944179475,0.0205690395087],[-0.069749258458614,0.22168081998825,-0.018840100616217]],[[0.01424603164196,0.049157090485096,-0.08654397726059],[-0.006310670170933,-0.08834270387888,-0.056207999587059],[-0.028272233903408,-0.031389519572258,0.17725324630737]],[[-0.033757783472538,0.055240288376808,-0.014187780208886],[0.092208161950111,0.083410620689392,0.025167804211378],[0.014852093532681,-0.015997130423784,-0.14269879460335]],[[-0.045123126357794,0.022034676745534,-0.19491963088512],[0.109455101192,-0.0084940223023295,-0.029512412846088],[0.074483700096607,-0.10514847934246,-0.26541700959206]],[[-0.074004344642162,-0.028536822646856,-0.019331188872457],[-0.022007720544934,0.060122761875391,-0.053083539009094],[0.020411089062691,0.19594721496105,-0.37060722708702]],[[-0.097139462828636,-0.040669977664948,-0.0052420580759645],[-0.0046699717640877,0.016623524948955,0.095758214592934],[0.051995679736137,-0.035533759742975,0.014395295642316]],[[0.077499486505985,0.10274448990822,-0.024966018274426],[-0.02624917216599,0.01139213796705,-0.019802022725344],[0.0016100611537695,-0.082169212400913,-0.17661608755589]],[[0.14002510905266,-0.07029215246439,-0.07067534327507],[-0.052448786795139,0.011597819626331,0.12215089052916],[-0.033964373171329,-0.084694772958755,-0.091159269213676]],[[-0.092751458287239,0.07866445928812,0.12409253418446],[-0.10692252218723,0.074214234948158,-0.043987907469273],[-0.014205482788384,0.03172355890274,-0.056636225432158]],[[-0.01811208948493,-0.041110441088676,-0.016116809099913],[0.066343113780022,0.078122362494469,0.018583420664072],[-0.03141550719738,0.27137294411659,-0.0012785061262548]],[[-0.098437994718552,-0.079845607280731,-0.20559324324131],[0.062285050749779,-0.067926175892353,-0.059530492872],[0.10700081288815,0.019553061574697,-0.034716952592134]],[[-0.052793350070715,0.017779063433409,-0.033738002181053],[-0.18277265131474,0.080893531441689,-0.00024957742425613],[0.043419394642115,-0.050922103226185,-0.0037470371462405]],[[0.087626665830612,0.11593709886074,-0.079464040696621],[-0.0084128230810165,-0.023777255788445,-0.016144961118698],[0.035954259335995,0.023071471601725,0.067383714020252]],[[0.004740119446069,0.090548746287823,0.067661233246326],[0.014893533661962,0.067921906709671,-0.073336474597454],[-0.065309703350067,-0.084810547530651,-0.028849072754383]],[[-0.006339983548969,0.0097604058682919,-0.037439309060574],[-0.069349311292171,0.035896878689528,-0.015289601869881],[-0.038472022861242,0.006035050842911,0.0062727765180171]],[[-0.1295148730278,-0.16357643902302,-0.011148981750011],[0.098628148436546,0.086376160383224,0.017724979668856],[0.10496546328068,0.022284287959337,-0.062851466238499]],[[-0.053016521036625,0.068104259669781,0.13349361717701],[-0.026085952296853,0.043099317699671,-0.015021625906229],[0.12088913470507,0.10181454569101,0.14531557261944]],[[0.042129959911108,-0.10459790378809,0.18400651216507],[0.049623247236013,-0.034552372992039,0.12355813384056],[0.10645939409733,-0.052558742463589,0.13323585689068]],[[-0.058246769011021,-0.011799608357251,0.030471075326204],[0.068973280489445,-0.0098753115162253,-0.050454650074244],[0.062976717948914,-0.060370553284883,0.017096793279052]],[[0.038623083382845,0.029329156503081,-0.015777414664626],[0.074776694178581,0.011193199083209,-0.091440513730049],[0.010467998683453,-0.083568550646305,-0.047841403633356]],[[-0.1527940928936,0.020210843533278,0.14647626876831],[-0.095210209488869,-0.1047555282712,0.15745212137699],[0.052723783999681,0.015782672911882,0.083491399884224]],[[-0.26294794678688,-0.21550579369068,-0.075762294232845],[-0.087788037955761,0.0182686727494,0.076444804668427],[-0.050777170807123,-0.0014722861815244,0.071741200983524]],[[0.11120323836803,-0.051201738417149,0.0067774197086692],[0.087772957980633,0.052444588392973,-0.117331571877],[0.068094126880169,0.13016493618488,-0.10528361052275]],[[-0.04680884256959,0.09909812361002,0.10996057093143],[-0.097066611051559,0.04505917802453,0.05706612765789],[0.10750000923872,-0.07408818602562,0.068572781980038]],[[-0.040893584489822,-0.048868834972382,-0.16718474030495],[0.09192618727684,0.054071389138699,0.01378206256777],[0.088691286742687,0.075436741113663,0.21801909804344]],[[-0.029908077791333,-0.0094083230942488,0.0067275324836373],[-0.025223094969988,-0.013029239140451,-0.1015492528677],[-0.019921042025089,-0.018010377883911,0.046325016766787]],[[-1.2009113561362e-05,-0.0028281782288104,0.052052296698093],[0.0011740903137252,-0.08572293817997,-0.082035258412361],[-0.12649205327034,-0.02092744037509,-0.13058610260487]],[[-0.029273232445121,0.062049746513367,-0.22322398424149],[0.093533866107464,0.013141511008143,-0.091688796877861],[0.011344188824296,0.033137157559395,-0.060379400849342]],[[0.025648307055235,-0.064397498965263,0.031144207343459],[0.14585763216019,-0.055637333542109,-0.033159401267767],[0.072501197457314,-0.081200964748859,-0.01609911955893]],[[0.18995496630669,0.072370797395706,-0.020088834688067],[0.0032907868735492,0.13473054766655,-0.010506616905332],[-0.12683342397213,-0.035875678062439,-0.0059200297109783]],[[0.04793369397521,0.03165016695857,0.04088294878602],[-0.07073063403368,0.032585676759481,-0.016760852187872],[-0.082544803619385,-0.098844029009342,-0.13503804802895]],[[-0.056000370532274,-0.11320807039738,-0.066212080419064],[0.052009291946888,-0.015365642495453,-0.043438006192446],[-0.005279706325382,-0.07941822707653,-0.009061036631465]],[[-0.0484210960567,0.014595193788409,-0.1309839785099],[0.034106787294149,0.015859214589,-0.069464951753616],[-0.02222984097898,-0.047590333968401,-0.090300403535366]],[[0.081922933459282,0.018902046605945,-0.14757072925568],[-0.12000349164009,-0.065903536975384,-0.0092059653252363],[-0.12442708015442,-0.093725740909576,-0.03016616217792]],[[-0.029913833364844,-0.041160065680742,-0.094581320881844],[0.055944830179214,0.027019297704101,-0.02543318271637],[-0.11647575348616,0.011607663705945,-0.05287180095911]],[[0.058078732341528,0.018391072750092,0.0096786385402083],[0.047925751656294,-0.10539212077856,-0.082242533564568],[0.095264360308647,-0.13211011886597,0.0046955714933574]],[[0.14356316626072,0.056824080646038,-0.044526636600494],[0.098439157009125,-0.0053328559733927,-0.059950102120638],[-0.13781575858593,-0.15371446311474,-0.068823479115963]],[[-0.083850130438805,0.16890177130699,-0.10174319893122],[0.0048322742804885,0.084182396531105,-0.018097341060638],[-0.08801231533289,-0.077471800148487,-0.038203503936529]],[[-0.1091355830431,-0.11359491199255,0.28722253441811],[-0.048896033316851,-0.15791998803616,-4.5004871935816e-06],[0.03661747649312,-0.070115372538567,0.070108607411385]],[[-0.26198959350586,-0.11223801225424,0.1030514985323],[0.0013796702260152,-0.00030001514824107,-0.024897126480937],[-0.13137301802635,0.076353080570698,-0.15227299928665]],[[0.025787208229303,0.17107804119587,0.049929648637772],[0.037177976220846,-0.11511290073395,0.07041423022747],[0.019066138193011,-0.21664270758629,0.028551714494824]],[[-0.20610736310482,0.061881709843874,-0.04806199669838],[-0.027824107557535,0.06940645724535,0.11475161463022],[-0.17464265227318,0.096366986632347,0.14015421271324]],[[-0.019153423607349,0.2323162406683,0.061200957745314],[-0.0039993026293814,0.037292808294296,-0.039073083549738],[0.035109162330627,-0.016734082251787,-0.019310692325234]],[[-0.04643227532506,0.015676708891988,-0.065968565642834],[-0.026113009080291,-0.095377907156944,-0.040444351732731],[0.006597981788218,-0.13528995215893,0.18880161643028]],[[-0.061427757143974,-0.020075188949704,0.20518985390663],[-0.026635555550456,-0.09031343460083,-0.099905520677567],[0.006125426851213,0.10674442350864,-0.0016550641739741]],[[0.33046251535416,-0.011684320867062,-0.10165878385305],[-0.1394130140543,-0.082881271839142,-0.047498073428869],[0.017043393105268,0.076747953891754,0.1739132553339]],[[-0.018073992803693,-0.014332052320242,-0.059175845235586],[0.05854370072484,0.025610031560063,0.090184763073921],[-0.046019565314054,-0.080877430737019,-0.16466598212719]],[[0.040120534598827,-0.043731573969126,-0.14037144184113],[-0.098870545625687,-0.14261017739773,0.044898308813572],[-0.039942093193531,-0.10448215156794,-0.075428955256939]],[[0.097199127078056,-0.079519018530846,-0.00049119221512228],[-0.034057524055243,-0.024649623781443,-0.087242014706135],[0.17170861363411,0.076107203960419,-0.54720836877823]],[[-0.15910269320011,0.14654521644115,-0.25721257925034],[0.1728813201189,-0.034154254943132,-0.13008294999599],[0.045285057276487,0.14183159172535,-0.13314636051655]],[[-0.012705522589386,0.030544072389603,0.0075661307200789],[0.029573416337371,-0.069975040853024,0.045468606054783],[0.0022312421351671,0.017216328531504,0.045170370489359]],[[0.011177165433764,0.091462001204491,-0.020969452336431],[0.052679978311062,0.032737623900175,0.028265314176679],[0.039552625268698,0.060466334223747,0.083302021026611]],[[-0.07387937605381,0.0089389896020293,-0.018825128674507],[-0.073092766106129,0.029028618708253,0.081270441412926],[0.0096048023551702,0.13878864049911,0.0098991161212325]],[[0.077851593494415,-0.086026318371296,0.00099820666946471],[0.071390308439732,-0.052123799920082,-0.021631145849824],[-0.011460503563285,-0.01118213031441,-0.050071731209755]],[[0.016023667529225,-0.065566137433052,0.063296489417553],[0.031418461352587,-0.08422727137804,0.077477663755417],[-0.017689788714051,0.0039223716594279,0.005030763335526]],[[0.1518302410841,0.051507689058781,-0.017967389896512],[-0.0034710401669145,-0.059673242270947,-0.0095754703506827],[0.0059781628660858,-0.043819859623909,-0.068785272538662]],[[-0.13030935823917,-0.012135640718043,0.056596029549837],[-0.091345854103565,-0.062615297734737,0.015433535911143],[-0.18172997236252,-0.024682369083166,-0.005661778151989]]],[[[-0.14209012687206,-0.075421668589115,0.03485107421875],[0.0047340961173177,-0.066791199147701,0.018685005605221],[-0.040270362049341,-0.18342792987823,0.0046861441805959]],[[0.059182871133089,0.036403052508831,0.19506953656673],[-0.10107065737247,0.068840853869915,0.042749330401421],[-0.24581705033779,-0.068826198577881,-0.14748883247375]],[[0.02044858597219,-0.0013280039420351,-0.055053327232599],[0.044782012701035,-0.0050169015303254,0.041154101490974],[0.048211291432381,0.031265042722225,0.043977383524179]],[[0.10675155371428,0.039026353508234,0.19350968301296],[0.08066738396883,-0.076358430087566,0.03763223439455],[-0.24716299772263,-0.10470988601446,-0.0006497583235614]],[[-0.012658124789596,0.086688011884689,-0.02910995669663],[0.025981018319726,0.049649819731712,0.084549821913242],[0.1198433637619,-0.15246543288231,0.071316607296467]],[[0.037528090178967,0.005442954134196,0.051039900630713],[-0.00074396835407242,-0.076328314840794,0.065738320350647],[0.050261363387108,-0.054138049483299,0.0010419111931697]],[[-0.063155762851238,-0.045736487954855,-0.018213972449303],[-0.029354570433497,-0.010448046959937,-0.086711600422859],[-0.11998227238655,-0.05066691339016,-0.078407287597656]],[[-0.0026652445085347,-0.00058832566719502,-0.098149873316288],[0.1121391505003,-0.047863520681858,0.072005376219749],[0.096832670271397,0.0086972592398524,-0.065139196813107]],[[0.039420649409294,-0.004656738601625,0.027273954823613],[-0.04785867407918,-0.059188913553953,-0.054669115692377],[-0.057272605597973,-0.1478191614151,-0.1462823599577]],[[-0.0064965332858264,0.040569555014372,0.057892352342606],[0.010196017101407,0.073888257145882,-0.05902773141861],[0.056094311177731,0.013049839064479,-0.0010668197646737]],[[0.1033011674881,-0.030515808612108,-0.056376997381449],[-0.00047989148879424,0.023521568626165,-0.06843775510788],[0.11250057071447,-0.076652094721794,0.069706104695797]],[[0.027673875913024,-0.02040777169168,0.0063274390995502],[0.041628364473581,-0.0080165984109044,0.083617471158504],[0.0037994706071913,-0.098689198493958,0.010872160084546]],[[-0.020673360675573,-0.015668923035264,-0.02567239291966],[0.0036239586770535,0.080523043870926,0.0017116762464866],[-0.14376078546047,-0.023168733343482,0.010143555700779]],[[6.899879372213e-05,0.076025418937206,-0.037424549460411],[-0.097958788275719,-0.036540456116199,-0.10748203098774],[0.13411638140678,0.10639021545649,0.048736218363047]],[[0.066953681409359,-0.033012863248587,-0.024058511480689],[0.118981346488,0.024033561348915,0.0073491572402418],[0.15793824195862,-0.040213625878096,-0.060908637940884]],[[0.0069219479337335,0.091338157653809,0.016593063250184],[0.034976873546839,-0.034057691693306,-0.050757370889187],[-0.096673004329205,-0.070618845522404,-0.026958554983139]],[[-0.056361112743616,-0.075801879167557,0.051959685981274],[-0.015384682454169,0.10491982102394,-0.077432602643967],[-0.0097774500027299,0.051610581576824,-0.048584464937449]],[[-0.078442864120007,-0.021469475701451,-0.10504142194986],[-0.1048572063446,-0.06105425208807,-0.076378390192986],[-0.34710517525673,-0.26610124111176,-0.15614268183708]],[[0.1071245148778,-0.090849846601486,0.015327971428633],[0.097226768732071,0.023810034617782,-0.013027236796916],[-0.058326654136181,-0.060836859047413,-0.051085587590933]],[[0.11466298997402,-0.019351409748197,0.12345267087221],[-0.05918175727129,-0.04614294692874,0.069123208522797],[-0.045488104224205,-0.12939916551113,-0.0015816184459254]],[[-0.046068452298641,0.015676341950893,0.038700375705957],[-0.037806831300259,-0.016901466995478,0.088740922510624],[0.0056570223532617,-0.076420091092587,0.017679257318377]],[[-0.039004392921925,-0.039872273802757,0.024284327402711],[-0.019576970487833,-0.024465929716825,-0.029187494888902],[0.03335965052247,0.012971538119018,0.0039645042270422]],[[0.052090484648943,0.0005482432898134,0.018472736701369],[-0.11819371581078,0.056033916771412,0.039002291858196],[-0.023823430761695,-0.080056622624397,0.030008526518941]],[[-0.065392129123211,-0.00039011455373839,0.097343988716602],[0.010233676061034,0.08577910810709,0.10001919418573],[0.076324418187141,0.12062977254391,0.17158684134483]],[[-0.0350072234869,-0.046656016260386,-0.19951413571835],[0.028852585703135,0.087435863912106,-0.092108301818371],[0.11979646980762,0.085632503032684,0.17498828470707]],[[0.069317080080509,0.020435007289052,-0.0071040000766516],[0.078074410557747,0.052304454147816,-0.049935076385736],[-0.076767288148403,-0.028529385104775,-0.083832502365112]],[[-0.030841816216707,0.043919622898102,0.010878587141633],[0.16631236672401,-0.03257617354393,-0.012437368743122],[-0.1250124424696,0.013644996099174,-0.090943187475204]],[[-0.13243825733662,-0.02570903301239,-0.037261035293341],[-0.054730150848627,-0.015526399947703,-0.01515566278249],[0.063026092946529,-0.01318595930934,0.13722877204418]],[[-0.014564651064575,-0.008516239002347,0.0048672175034881],[-0.10994897037745,0.063727527856827,-0.038405798375607],[-0.07952543348074,0.16933856904507,-0.031481727957726]],[[0.059531588107347,0.083129182457924,0.024790635332465],[-0.0019229820463806,-0.073010832071304,0.07903964817524],[-0.086386241018772,-0.050652660429478,-0.068793937563896]],[[-0.049304541200399,0.071024708449841,0.057511437684298],[0.049234673380852,-0.0097596272826195,0.080343328416348],[0.058910127729177,-0.025670984759927,0.071186356246471]],[[0.027719145640731,0.034958776086569,0.10406573861837],[0.01337427739054,-0.0048579513095319,0.021687334403396],[0.17233027517796,0.018815968185663,0.11553891003132]],[[-0.02182605676353,0.032004989683628,0.072741515934467],[0.022680712863803,-0.0039700111374259,-0.0013200890971348],[-0.091416925191879,-0.067337833344936,0.073153451085091]],[[-0.11776567995548,-0.089424669742584,-0.017834886908531],[0.042373802512884,-0.051923558115959,-0.051121965050697],[0.10163660347462,0.12655383348465,0.054658327251673]],[[-0.080100730061531,0.0069841691292822,0.0041117765940726],[0.014847012236714,0.014489146880805,0.018877016380429],[0.010504249483347,-0.062092579901218,-0.065819308161736]],[[0.021317631006241,0.17644798755646,-0.03683752939105],[0.085146866738796,0.030329868197441,0.034834533929825],[0.10848497599363,-0.021772159263492,0.035868961364031]],[[-0.065301276743412,-0.19925224781036,-0.17818465828896],[0.12328194826841,0.11240456998348,0.050281837582588],[0.150594830513,-0.041011162102222,0.10062482953072]],[[0.062796086072922,-0.018657943233848,-0.039901480078697],[0.041922431439161,0.038732539862394,0.022590087726712],[-0.13448716700077,0.024998441338539,0.082871772348881]],[[0.015494262799621,-0.060675941407681,-0.026207942515612],[0.050477631390095,0.034190215170383,0.023861598223448],[-0.0064230593852699,-0.059923116117716,-0.0218376070261]],[[0.038197249174118,0.0035818305332214,0.047679983079433],[-0.0031853571999818,0.1195645108819,-0.015379406511784],[-0.11921515315771,-0.006302572786808,-0.11630894988775]],[[0.1083352342248,0.067782491445541,-0.03695959225297],[-0.016393987461925,0.035400435328484,-0.1641721278429],[-0.15474231541157,0.027545340359211,-0.022805720567703]],[[-0.014170745387673,-0.011802532710135,0.023829948157072],[-0.00037574852467515,0.048975478857756,-0.0083552794530988],[-0.089907951653004,0.091226510703564,0.071389392018318]],[[0.043975099921227,0.06363020837307,0.025374194607139],[-0.028648572042584,0.00019858649466187,0.05322702601552],[0.061440404504538,0.1088595315814,0.14493374526501]],[[0.16308806836605,0.032620616257191,-0.092008531093597],[0.026059377938509,0.021713737398386,0.11988090723753],[-0.02048590965569,0.010849228128791,-0.0012428391491994]],[[0.027402840554714,0.055048637092113,0.003623929573223],[-0.06194843351841,-0.064799584448338,-0.063255310058594],[-0.094451583921909,-0.043406013399363,-0.012552291154861]],[[-0.065025985240936,0.073064424097538,0.034683268517256],[-0.0020740726031363,-0.0098667778074741,-0.071276679635048],[0.015267131850123,0.10131338238716,0.0063863196410239]],[[-0.080568954348564,-0.044566106051207,0.01086126640439],[0.008588352240622,-0.041237235069275,-0.031985990703106],[0.093710981309414,0.056617219001055,0.062034387141466]],[[0.080115541815758,0.026250388473272,-0.0024201776832342],[0.0025948940310627,0.015516446903348,-0.038385704159737],[0.059304609894753,0.10507420450449,-0.07733017206192]],[[0.022008690983057,-0.13624750077724,-0.025598121806979],[0.082018509507179,0.14125899970531,0.071451716125011],[0.013058954849839,-0.0092548886314034,-0.079114988446236]],[[0.0066583603620529,-0.11781305074692,-0.030278807505965],[-0.099813587963581,-0.10479243099689,-0.053813014179468],[-0.099208138883114,-0.022155031561852,0.041206620633602]],[[0.13967299461365,-0.017033947631717,-0.029996005818248],[-0.10499875992537,-0.012219971045852,-0.043414101004601],[0.13445197045803,0.1239485219121,0.03570618852973]],[[-0.050376385450363,-0.10431701689959,-0.014685524627566],[-0.046100750565529,0.0054735341109335,-0.019866209477186],[-0.15624684095383,-0.081280954182148,-0.0036621890030801]],[[0.060461468994617,0.012681916356087,0.057295694947243],[-0.045230410993099,0.039832539856434,-0.0043098176829517],[0.05876686424017,0.057377938181162,-0.050272300839424]],[[-0.0048272260464728,0.028312830254436,-0.12919941544533],[-0.090712986886501,-0.013805393129587,-0.031585540622473],[0.12747448682785,0.13224659860134,0.17636540532112]],[[-0.13193026185036,-0.038302972912788,-0.029973270371556],[-0.055549371987581,-0.00090596819063649,0.0762108117342],[-0.061006065458059,-0.089561112225056,-0.070993542671204]],[[-0.0055569005198777,0.16082394123077,-0.078452751040459],[-0.051675260066986,0.061032239347696,0.013938656076789],[0.07742889970541,0.0049096602015197,0.026806239038706]],[[-0.06197813898325,0.088334776461124,0.12724140286446],[-0.091044485569,0.0077237710356712,-0.030566483736038],[-0.16548655927181,-0.026576664298773,-0.0092545077204704]],[[0.079032301902771,0.062893405556679,0.20104692876339],[-0.066437616944313,-0.013857446610928,0.027509514242411],[0.032669737935066,-0.069518037140369,-0.085435964167118]],[[-0.058736771345139,-0.13812810182571,-0.0095713986083865],[-0.032067082822323,-0.01473143696785,0.018458718433976],[0.14366520941257,0.14282438158989,0.11603815853596]],[[0.024264449253678,-0.049370348453522,-0.030747298151255],[0.024182926863432,0.11638835817575,-0.082933716475964],[0.084386937320232,0.11526735126972,-0.0083338506519794]],[[-0.15396183729172,-0.030962344259024,-0.11928743124008],[-0.07697831839323,0.011937135830522,-0.038836024701595],[-0.064534358680248,-0.065940268337727,-0.015248971991241]],[[0.051131799817085,-0.076360583305359,-0.032929793000221],[-0.096826359629631,0.028465980663896,0.11371854692698],[-0.14113399386406,-0.2682923078537,-0.17465549707413]],[[0.10902502387762,-0.024301562458277,-0.014416880905628],[0.076879143714905,0.031984344124794,-0.085203915834427],[-0.067555814981461,-0.0058223200030625,0.038502331823111]],[[-0.018974106758833,0.05509191006422,-0.042041838169098],[0.0066188359633088,0.072672583162785,0.059656299650669],[0.10620540380478,0.0055169747211039,-0.062900967895985]]],[[[0.12464997917414,0.057378862053156,0.028153795748949],[-0.026729293167591,0.0029725600033998,0.033136770129204],[0.018847733736038,-0.034619521349669,0.070282377302647]],[[-0.0069373450241983,0.036888010799885,0.030034545809031],[-0.051640897989273,-0.049530036747456,0.012784312479198],[0.0069720265455544,-0.0088301310315728,0.018701748922467]],[[-0.07494243979454,-0.001412340789102,-0.025354199111462],[0.0031368832569569,-0.025089522823691,0.03509908914566],[-0.053976707160473,-0.058903709053993,-0.0077872583642602]],[[-0.006941984873265,0.065447382628918,0.00055080291349441],[-0.058715369552374,0.018928799778223,-0.026455735787749],[0.01786102540791,-0.023775802925229,0.068579703569412]],[[0.00050980411469936,-0.02339799143374,-0.0084045464172959],[0.0030811864417046,0.015972251072526,0.023569887503982],[-0.013555096462369,-0.083329498767853,-0.0016826983774081]],[[0.020896036177874,0.0078828223049641,-0.13538783788681],[-0.010816523805261,-0.00073107227217406,-0.047725602984428],[-0.055502522736788,0.018842266872525,-0.037893541157246]],[[0.056593883782625,0.0080323657020926,-0.018342373892665],[-0.048026960343122,-0.069525107741356,-0.020411007106304],[0.07131365686655,0.074455380439758,-0.02193946018815]],[[0.017314057797194,0.031227273866534,0.039592642337084],[-0.024802848696709,-0.043360330164433,-0.022119626402855],[0.016406102105975,0.039004158228636,0.050852667540312]],[[-0.0099145350977778,0.036274395883083,0.013313056901097],[-0.00074106850661337,-0.069321654736996,0.033040255308151],[-0.046186938881874,0.071424230933189,0.046268422156572]],[[-0.046801552176476,-0.081013269722462,0.01737591996789],[-0.031296975910664,-0.0052914526313543,-0.01754249446094],[0.054199151694775,-0.030876111239195,-0.030849831178784]],[[0.011875621974468,-0.0035553080961108,-0.025543903931975],[0.047750055789948,0.060241855680943,0.058581307530403],[-0.0094216000288725,-0.023733843117952,0.044870264828205]],[[0.02394587919116,0.019739298149943,-0.035811070352793],[0.011630513705313,0.041725564748049,-0.014166593551636],[0.024383662268519,-0.025890201330185,-0.08133315294981]],[[-0.051229059696198,0.023950662463903,-0.029504679143429],[0.035315219312906,0.021380163729191,-0.00200116308406],[-0.058016497641802,0.045779842883348,4.0669619920664e-05]],[[0.015694417059422,0.010175910778344,0.020488180220127],[0.024283222854137,0.027586357668042,0.042183674871922],[-0.044697988778353,0.055138003081083,0.064871713519096]],[[0.067034788429737,-0.0082078436389565,0.035712040960789],[-0.039784129709005,0.01640891097486,0.075603380799294],[0.022782878950238,-0.068262606859207,-0.013719515874982]],[[-0.075256183743477,-0.06627582013607,-0.00056853075511754],[0.076760850846767,0.0020760821644217,0.028666604310274],[-0.026996565982699,-0.01176374964416,-0.066217914223671]],[[0.039420709013939,0.029833689332008,0.075029045343399],[0.012025746516883,-0.0023926577996463,-0.044801741838455],[0.042666282504797,0.070739820599556,-0.013632154092193]],[[-0.03668101131916,0.019344817847013,-0.021620748564601],[-0.047642078250647,0.0094679184257984,0.034727148711681],[0.0041899643838406,0.044072024524212,-0.00028078450122848]],[[0.016425386071205,-0.0073057231493294,-0.047010742127895],[0.0091685876250267,0.014855291694403,0.025307087227702],[0.0059935902245343,-0.049827128648758,-0.024763762950897]],[[-0.066819496452808,0.017023351043463,-0.016869222745299],[-0.078413985669613,-0.0052565857768059,0.0099467346444726],[-0.022594705224037,-0.0084428964182734,0.020898280665278]],[[-0.037972331047058,0.0020206607878208,0.023570163175464],[-0.0098795490339398,0.0778623893857,0.04686251655221],[-0.037462078034878,0.018286800011992,0.051685348153114]],[[0.083597853779793,-0.0089585417881608,0.030147442594171],[-0.025197248905897,-0.080646052956581,-0.10113287717104],[0.0016599568771198,-0.019650001078844,-0.01040172483772]],[[0.01789084635675,-0.056992795318365,-0.026430247351527],[-0.12449998408556,-0.045548032969236,-0.068211585283279],[-0.023862313479185,-0.055528372526169,-0.057816371321678]],[[-0.015292924828827,0.069656528532505,-0.03321997821331],[0.047996163368225,-0.015940979123116,-0.058044243603945],[0.047351449728012,0.020919613540173,-0.0047932146117091]],[[-0.024422908201814,-0.007231239695102,-0.073708780109882],[-0.056141972541809,0.030621355399489,-0.0067711281590164],[0.056679271161556,0.06807953119278,-0.028775915503502]],[[-0.038336675614119,-0.0012629139237106,0.031232764944434],[0.02789113111794,0.065394960343838,-0.036740127950907],[-0.03205056861043,0.073878929018974,0.0039432514458895]],[[0.039404395967722,0.039488255977631,-0.029899621382356],[0.0230727866292,-0.028917141258717,0.044655848294497],[0.012160169892013,0.021858116611838,-0.01416056510061]],[[0.059129700064659,-0.042260188609362,-0.015885163098574],[0.02748996950686,-0.020648123696446,-0.0018372242338955],[-0.011050888337195,-0.0980594009161,-0.052236188203096]],[[-0.015067210420966,-0.019167553633451,-0.068266049027443],[0.026393808424473,0.064762055873871,-0.006315044593066],[-0.044394046068192,-0.10198118537664,0.032213762402534]],[[0.051979228854179,-0.0092545514926314,0.019916286692023],[-0.0049375165253878,0.027446087449789,0.011972586624324],[-0.032905515283346,0.023022875189781,-0.023588208481669]],[[0.0074890144169331,0.027487734332681,0.011627226136625],[0.031692303717136,0.039927359670401,0.032829377800226],[0.0064535983838141,0.028017396107316,0.073315292596817]],[[0.032290559262037,0.00087225955212489,-0.026244280859828],[-0.052795168012381,-0.042289968580008,0.030270775780082],[-0.029529327526689,-0.048554040491581,-0.012320146895945]],[[0.03586159273982,0.032012280076742,0.01411026250571],[-0.036104522645473,0.039684798568487,0.015787236392498],[0.017593877390027,-0.031670119613409,-0.009042164310813]],[[-0.019300786778331,-0.040057729929686,-0.027761457487941],[0.068029567599297,0.040389012545347,-0.07530815154314],[0.0035120544489473,-0.032433167099953,0.012901362031698]],[[0.013858140446246,0.020784327760339,-0.035618122667074],[-0.025935953482985,-0.019144397228956,-0.022075993940234],[-0.0057779336348176,0.0033629992976785,-0.010949382558465]],[[-0.16424602270126,-0.1045820787549,-0.070608660578728],[-0.0066447826102376,-0.046990763396025,-0.021057046949863],[-0.021282989531755,-0.092078804969788,0.032343257218599]],[[-0.037540856748819,0.0087727271020412,0.054455954581499],[0.03312511369586,0.032983489334583,0.036447789520025],[-0.006297143176198,0.062381401658058,-0.020143933594227]],[[0.01576023735106,-0.020884282886982,-0.0044500501826406],[-0.0061058439314365,0.025545880198479,-0.074334442615509],[-0.052349157631397,0.077350251376629,-0.0223004873842]],[[-0.032683227211237,0.032793577760458,-0.015904670581222],[-0.021092372015119,-0.020018387585878,-0.019309926778078],[0.0409040376544,-0.014210042543709,0.034355625510216]],[[-0.011974760331213,-0.038172610104084,-0.075188666582108],[-0.0056204097345471,-0.036661926656961,-0.0088290115818381],[0.00079516146797687,-0.028453109785914,0.065185844898224]],[[0.030295837670565,0.043318063020706,0.062938660383224],[-0.018206376582384,0.026437796652317,0.015357229858637],[-0.0081200860440731,-0.069431997835636,-0.029516829177737]],[[-0.0053357034921646,0.028484167531133,0.0018401985289529],[0.023190390318632,0.008060110732913,0.0062536485493183],[-0.035537544637918,0.003926154691726,-0.062438536435366]],[[-0.026319524273276,-0.010415903292596,0.0060123614966869],[0.044245932251215,0.012711379677057,0.091382600367069],[-0.0044591263867915,-0.057879500091076,-0.038126409053802]],[[-0.0044145700521767,0.057629063725471,0.017789699137211],[0.017556929960847,0.024920232594013,0.010196898132563],[-0.0034021611791104,-0.010441421531141,0.053485572338104]],[[0.099506288766861,0.022986656054854,-0.094496361911297],[-0.0046819560229778,-0.0034577236510813,0.023252163082361],[0.0095471246168017,-0.012199187651277,0.051377132534981]],[[0.031005140393972,-0.013645126484334,0.047130689024925],[-0.018145222216845,-0.031150443479419,-0.042950369417667],[0.040798306465149,-0.022331291809678,-0.018442003056407]],[[0.0034114283043891,0.03217551484704,0.044572860002518],[-0.0091223353520036,-0.036653112620115,-0.051830817013979],[0.023721838369966,-0.046239081770182,-0.032995577901602]],[[-0.081786289811134,-0.034840773791075,0.008545589633286],[0.016772303730249,-0.048827677965164,-0.073535062372684],[0.088497124612331,0.032668061554432,-0.014708533883095]],[[-0.03119033202529,-0.042534682899714,-0.11158957332373],[0.020076332613826,-0.0057648727670312,-0.046851828694344],[6.8369314249139e-05,-0.02719041891396,-0.022292939946055]],[[-0.034115556627512,-0.029360992833972,0.041748035699129],[0.056337337940931,0.067919708788395,0.014703209511936],[-0.0020999989937991,-0.025329751893878,0.054834775626659]],[[0.017367400228977,0.017418444156647,-0.002085697138682],[-0.0052975555881858,-0.001333695021458,0.016628948971629],[-0.044215217232704,0.041091233491898,-0.010642795823514]],[[0.021526955068111,-0.040971390902996,0.00021504356118385],[0.012272756546736,-0.031507287174463,-0.06168706715107],[0.10289802402258,0.028469802811742,-0.035839945077896]],[[0.020638987421989,0.062246140092611,0.03538005053997],[-0.020056467503309,-0.01844228990376,0.015358973294497],[-0.045089993625879,0.00010688461043173,-0.026448013260961]],[[0.058132641017437,0.00031608511926606,0.040427424013615],[0.013907684013247,-0.0095413457602262,0.11036331951618],[-0.02683305926621,0.029315754771233,-0.017807940021157]],[[0.050499081611633,-0.05057654902339,-0.049371637403965],[0.020414914935827,-0.017511036247015,-0.052595864981413],[0.00090892123989761,0.007134263869375,-0.050777263939381]],[[0.001560595119372,0.017387976869941,0.0087047284469008],[-0.013703669421375,0.025242557749152,0.0072142421267927],[-0.065145619213581,-0.039840828627348,0.025092002004385]],[[-0.040511220693588,-0.11927487701178,-0.036704175174236],[-0.0080150058493018,-0.010080264881253,-0.00940050650388],[0.053740605711937,-0.023249838501215,-0.038001097738743]],[[-0.033345077186823,-0.014809786342084,-0.027015507221222],[0.0094495629891753,0.044107627123594,0.0057031330652535],[-0.021449018269777,-0.030341265723109,-0.1422376036644]],[[0.0078344782814384,0.083437591791153,0.05114996060729],[0.0048364633694291,0.007558349519968,0.0027220009360462],[0.026094727218151,0.024677587673068,-0.012881642207503]],[[-0.022257704287767,-0.0038246454205364,0.015829775482416],[0.012247365899384,0.032034989446402,0.018597770482302],[-0.029467130079865,-0.017444672062993,-0.044572062790394]],[[0.016625426709652,0.077905207872391,0.020680667832494],[0.029962629079819,0.067008130252361,0.041425280272961],[-0.070583522319794,0.020658629015088,0.012141067534685]],[[0.039639547467232,-0.0032760596368462,0.076146692037582],[-0.058523185551167,-0.13165493309498,-0.047767896205187],[0.059815667569637,-0.017498264089227,0.047633606940508]],[[0.05728991702199,0.00040076213190332,0.028373712673783],[-0.012819319963455,0.038131091743708,-0.06069652363658],[-0.034609768539667,0.007771470118314,-0.015877636149526]],[[-0.018948622047901,0.03715143725276,-0.03525123372674],[0.018212951719761,-0.0040589445270598,0.051428310573101],[-0.011370566673577,-0.049100037664175,-0.043699957430363]]],[[[-0.16667787730694,-0.032456278800964,-0.15350113809109],[-0.197888687253,-0.044379398226738,-0.098449476063251],[0.013159421272576,-0.097079336643219,-0.06724114716053]],[[-0.37019157409668,-0.080476641654968,-0.16880050301552],[-0.033026844263077,-0.0147516252473,-0.13338908553123],[0.072558231651783,-0.02030978910625,-0.095653280615807]],[[0.034258965402842,0.042643651366234,-0.0028810296207666],[-0.039210438728333,-0.0601528249681,-0.081396408379078],[0.0938570946455,-0.011118747293949,-0.072901010513306]],[[0.077772542834282,-0.059631325304508,-0.068667471408844],[-0.081021331250668,0.1098812520504,0.11681921780109],[0.0040709772147238,-0.032425347715616,-0.13119699060917]],[[-0.026049083098769,0.059722919017076,0.029312483966351],[0.010364686138928,0.037579461932182,-0.039528589695692],[-0.090007655322552,-0.024320863187313,0.032047919929028]],[[0.014053566381335,-0.06117358058691,-0.06816066801548],[0.11914979666471,0.035677526146173,-0.029564617201686],[-0.024699743837118,-0.070037931203842,0.0026015627663583]],[[0.1068664342165,0.00016796145064291,0.026325961574912],[-0.054364427924156,-0.028466168791056,0.058199841529131],[-0.053624954074621,-0.00081882171798497,0.060732521116734]],[[0.11475995928049,-0.0080467713996768,-0.10407993942499],[-0.06477689743042,-0.0053840177133679,-0.11124049127102],[-0.017926316708326,0.018556941300631,-0.019881749525666]],[[0.030186969786882,0.020199753344059,0.036971811205149],[0.12945468723774,-0.23056152462959,-0.1701073795557],[0.072291843593121,-0.013380181975663,-0.0033348398283124]],[[0.081840753555298,0.029066858813167,0.010186959058046],[-0.03283491358161,-0.043776713311672,-0.0842609629035],[0.06434790790081,-0.16361606121063,-0.06456608325243]],[[0.017876712605357,-0.02997637912631,-0.13461811840534],[0.0027521362062544,-0.086610980331898,-0.030995374545455],[-0.0072614243254066,-0.087327443063259,-0.044967748224735]],[[0.030246434733272,0.0047244061715901,0.045296709984541],[0.0061982218176126,-0.040430195629597,-0.16245086491108],[0.069370955228806,0.016512295231223,-0.12102559953928]],[[-0.34608322381973,-0.36581662297249,-0.25982961058617],[0.010446025058627,-0.054501622915268,-0.054713357239962],[0.06998298317194,0.04049614444375,-0.014651049859822]],[[0.038338080048561,0.023517359048128,0.096129901707172],[-0.032527402043343,-0.039877563714981,0.029102066531777],[0.034619741141796,0.15200021862984,0.0052732862532139]],[[0.075200922787189,0.017492031678557,0.059567987918854],[-0.020003378391266,0.0626160800457,-0.043526612222195],[-0.1411884278059,-0.23376832902431,-0.07001618295908]],[[-0.18910276889801,-0.1879353672266,-0.13569587469101],[0.043108411133289,-0.042261127382517,-0.065417841076851],[-0.081703312695026,-0.069022797048092,-0.045842502266169]],[[0.014879316091537,0.1520337164402,-0.033916555345058],[0.0075203571468592,0.0071526016108692,0.0887670814991],[0.01825600489974,0.12630261480808,0.066066317260265]],[[-0.12795422971249,-0.17513909935951,-0.044414721429348],[0.022419782355428,-0.002610991941765,0.0022756168618798],[0.069727912545204,-0.029847513884306,0.025812346488237]],[[0.032579656690359,0.0057906019501388,-0.0097248032689095],[0.058571703732014,-0.043179094791412,0.027736611664295],[0.091273330152035,0.034451842308044,-0.045101810246706]],[[0.072233460843563,-0.026030382141471,0.010259931907058],[-0.064157828688622,-0.065628796815872,-0.083680652081966],[-0.057056169956923,-0.15524452924728,0.047838319092989]],[[0.017905393615365,0.077017851173878,0.026438005268574],[-0.13450086116791,-0.022215019911528,0.052631542086601],[-0.023167911916971,0.0014263537013903,-0.06368026137352]],[[-0.16348639130592,-0.047979269176722,-0.062400490045547],[-0.068434432148933,0.042122814804316,0.025262733921409],[0.048612885177135,0.02862055785954,0.024748189374804]],[[0.034514654427767,-0.063481330871582,0.069440774619579],[-0.063541129231453,-0.013743685558438,-0.043565537780523],[-0.031689066439867,-0.017874378710985,0.019795501604676]],[[-0.010293095372617,0.044971976429224,0.029237695038319],[0.094498872756958,-0.014120317064226,0.032712586224079],[0.047224141657352,-0.0050294366665184,0.076320014894009]],[[0.16332793235779,0.19193871319294,0.15841867029667],[0.056161571294069,0.05693032592535,-0.029110109433532],[-0.044383637607098,0.036163419485092,-0.041836895048618]],[[0.15840321779251,0.03328163921833,0.012168892659247],[-0.006673960480839,0.049217134714127,-0.052802182734013],[-0.081173926591873,-0.029989995062351,-0.10288698971272]],[[0.044983759522438,-0.019112098962069,0.054919134825468],[0.053546410053968,-0.011295260861516,0.07581765204668],[-0.040747843682766,-0.064215697348118,-0.14731289446354]],[[-0.034994658082724,0.10484930872917,0.048113875091076],[-0.096721969544888,-0.062059205025434,-0.0085748331621289],[0.11217726022005,-0.027774419635534,-0.13456982374191]],[[0.040353357791901,-0.01063238363713,0.051150165498257],[-0.0010976549237967,-0.052311275154352,-0.073306888341904],[-0.13496193289757,-0.053267173469067,0.017545318230987]],[[-0.3396674990654,-0.33742707967758,-0.19359862804413],[0.02202869951725,-0.0015777143416926,0.1379956305027],[0.011001030914485,-0.2109602689743,0.02577412314713]],[[-0.011963789351285,-0.097139567136765,-0.053802847862244],[-0.043337363749743,-0.049913395196199,0.1883275359869],[0.14483900368214,-0.023562848567963,-0.0045601669698954]],[[0.11055742204189,-0.068636178970337,0.058137610554695],[0.06281565874815,0.012063131667674,0.093498662114143],[0.057949088513851,-0.0070320279337466,0.10591495782137]],[[0.030228439718485,0.073630176484585,-0.11377616971731],[-0.040052529424429,0.03890236467123,0.047356437891722],[-0.0086355861276388,0.072467438876629,-0.038328997790813]],[[0.037779446691275,0.064061395823956,0.044278703629971],[-0.0086333956569433,0.10090085119009,0.051082819700241],[0.084224663674831,0.093503274023533,-0.026618810370564]],[[-0.12164622545242,-0.015629002824426,-0.031208116561174],[0.072425790131092,-0.10441871732473,-0.075587257742882],[-0.030758399516344,0.10798355937004,0.10218998789787]],[[0.077126197516918,0.069848194718361,0.092490658164024],[0.07642325013876,-0.044440776109695,-0.01282088086009],[0.0060368347913027,-0.1068077981472,-0.093773931264877]],[[0.034747757017612,-0.027508318424225,-0.05764964222908],[0.20688365399837,0.077437870204449,0.012879296205938],[0.098646633327007,-0.014647820033133,-0.052674673497677]],[[-0.23335635662079,-0.0084047531709075,-0.029067100957036],[0.019355043768883,0.0068793939426541,0.0063339564949274],[-0.062857992947102,0.0010697175748646,0.098661914467812]],[[0.16712489724159,0.080499812960625,0.12163642793894],[-0.098562456667423,-0.10287874191999,-0.051981043070555],[-0.020661178976297,-0.059691190719604,-0.0092093711718917]],[[-0.034929171204567,-0.012496360577643,-0.069297105073929],[-0.11962960660458,-0.0027361235115677,0.0036238024476916],[0.18007506430149,0.053622901439667,-0.15682937204838]],[[0.036405093967915,-0.033061694353819,-0.047276675701141],[0.021552313119173,0.0089923860505223,0.0017874119803309],[-0.066036678850651,-0.047247800976038,-0.026700126007199]],[[-0.12721228599548,0.025197235867381,-0.08557803183794],[0.012436526827514,-0.084573693573475,0.020618041977286],[0.027821799740195,-0.089901715517044,-0.003296721028164]],[[-0.0038559664972126,-0.060652114450932,-0.13312739133835],[0.10982113331556,0.10660413652658,0.11313831806183],[-0.053182404488325,0.0261763446033,-0.087076611816883]],[[0.018933825194836,0.02328946441412,-0.20030011236668],[-0.04384059458971,-0.080618120729923,0.049552634358406],[0.082512646913528,0.15094873309135,0.050893392413855]],[[-0.053894814103842,-0.064993195235729,-0.40187817811966],[-0.090257249772549,-0.070423282682896,0.028210857883096],[0.023947291076183,-0.0066386763937771,-0.0034544640220702]],[[0.084455944597721,0.0057688038796186,0.026437073945999],[-0.056462548673153,-0.01424209587276,-0.0076120593585074],[0.030618401244283,0.041166078299284,-0.028124155476689]],[[0.02635070681572,-0.019520130008459,0.084404289722443],[0.0021145239006728,0.099630296230316,0.008478288538754],[-0.0067318477667868,-0.073777481913567,-0.073775596916676]],[[0.054730039089918,-0.0030457766260952,-0.045810919255018],[-0.0769137814641,0.081609100103378,0.046205904334784],[-0.042302753776312,0.069314569234848,0.053370542824268]],[[0.031056424602866,-0.05264263600111,-0.081385098397732],[-0.09177703410387,0.014692253433168,-0.080213502049446],[-0.058253284543753,0.16578350961208,-0.0049927430227399]],[[0.050096977502108,-0.054994001984596,-0.0038982734549791],[0.096497416496277,-0.018400888890028,-0.22749863564968],[0.10597241669893,0.18927548825741,0.1495551019907]],[[0.049881670624018,-0.040886580944061,0.008675211109221],[-0.10179295390844,-0.02869326248765,0.075293563306332],[0.20735721290112,0.02722186408937,0.050529807806015]],[[0.021354012191296,-0.11890392750502,-0.19002297520638],[0.095437355339527,-0.011172817088664,0.095305874943733],[0.015356621704996,-0.030237782746553,0.010337416082621]],[[0.026149461045861,0.1574665158987,-0.053071908652782],[-0.08874936401844,0.023433985188603,0.14132910966873],[-0.17309430241585,-0.015199650079012,-0.18861001729965]],[[-0.020758748054504,-0.059526100754738,0.090227335691452],[-0.063706368207932,0.025343457236886,-0.049179673194885],[-0.054828584194183,0.011467041447759,0.094312638044357]],[[-0.25014731287956,-0.12035355716944,-0.11455994099379],[0.06573711335659,0.0096778618171811,0.085933111608028],[-0.038256268948317,0.089239336550236,-0.070426754653454]],[[-0.13741977512836,0.030235879123211,0.019652251154184],[0.019579531624913,0.039149228483438,-0.016698246821761],[0.061817277222872,0.054608006030321,-0.031962241977453]],[[0.053024236112833,-0.12136106193066,-0.11236453056335],[0.098657101392746,0.089100740849972,-0.036618765443563],[-0.047673285007477,0.00074623146792874,0.04121071845293]],[[0.006298590451479,-0.029670210555196,-0.10209799557924],[-0.11572739481926,0.010368730872869,-0.13589841127396],[-0.0024749601725489,0.015381536446512,0.1113885268569]],[[0.016062935814261,-0.027038276195526,0.08195324242115],[0.0061968406662345,0.035290826112032,0.080877862870693],[0.074398808181286,-0.0010718083940446,0.12927307188511]],[[0.034530386328697,-0.018714018166065,-0.068812310695648],[-0.070075929164886,0.044552840292454,-0.0931376516819],[0.073592208325863,0.0032721182797104,0.081192165613174]],[[0.14595149457455,-0.073850341141224,0.10712418705225],[0.19353504478931,-0.019238209351897,-0.037960790097713],[-0.002240706468001,-0.073135614395142,-0.035946320742369]],[[-0.12508195638657,0.052202343940735,-0.036104135215282],[0.0058061466552317,0.035394720733166,0.038984067738056],[-0.1802004724741,-0.022787850350142,0.16744634509087]],[[0.054228454828262,0.047418273985386,-0.00075191323412582],[-0.034818526357412,0.011935064569116,0.057600565254688],[-0.0048425737768412,-0.025272721424699,0.032071523368359]],[[0.050142861902714,-0.021148843690753,0.014053504914045],[0.053781446069479,0.019080141559243,0.027420438826084],[-0.022888751700521,-0.032911024987698,0.00094122305745259]]],[[[0.0748550593853,-0.09397779405117,-0.049610052257776],[0.013509864918888,-0.084471970796585,0.10419323295355],[-0.017184905707836,-0.17813950777054,0.041679378598928]],[[-0.012278696522117,-0.21941883862019,-0.091034926474094],[-0.053144332021475,-0.054575961083174,-0.12393797934055],[0.13590118288994,-0.062578000128269,-0.040940627455711]],[[0.043760657310486,0.047933477908373,0.10039332509041],[-0.22009117901325,-0.16255868971348,-0.061315014958382],[-0.043879359960556,-0.059040609747171,-0.025931507349014]],[[-0.31131792068481,-0.059140395373106,-0.14067381620407],[-0.087880983948708,0.075982622802258,-0.068250514566898],[0.0059974114410579,0.10949153453112,0.036514952778816]],[[-0.062454231083393,-0.024664975702763,-0.049103293567896],[-0.019014831632376,-0.042784571647644,-0.044526360929012],[0.020573442801833,-0.033675614744425,-0.098856389522552]],[[-0.089084602892399,0.0063839955255389,-0.019773015752435],[-0.091849222779274,-0.058104190975428,-0.092927560210228],[-0.2187677770853,-0.25249567627907,0.011179307475686]],[[-0.0032216107938439,0.074782386422157,-0.030918626114726],[0.010944056324661,-0.025127185508609,-0.004019608721137],[-0.0010173016926274,0.014984699897468,0.05951327458024]],[[-0.007791387848556,0.16119879484177,-0.13471268117428],[-0.083411619067192,0.12359683960676,0.018955368548632],[-0.091915927827358,0.11635003983974,0.1304307281971]],[[-0.1772965490818,0.23533880710602,0.012765794992447],[-0.16617853939533,0.075488194823265,-0.013024292886257],[-0.28802195191383,0.10802276432514,0.034256011247635]],[[-0.0093057416379452,-0.0026311101391912,-0.081796318292618],[-0.05733247846365,-0.050529588013887,-0.056248757988214],[-0.099223732948303,-0.0050148870795965,-0.081110738217831]],[[-0.12223496288061,-0.073640361428261,0.011161393485963],[0.0070718321949244,0.016180878505111,-0.039041791111231],[0.092575646936893,0.044293746352196,-0.081648245453835]],[[0.030076533555984,-0.0070811654441059,0.039447415620089],[0.11130823940039,-0.064872905611992,0.0085916668176651],[0.031348492950201,-0.18216264247894,0.050220668315887]],[[-0.13310042023659,-0.12050786614418,-0.10990957170725],[0.081988237798214,0.075535036623478,0.037809610366821],[-0.11261474341154,-0.045706324279308,0.072982147336006]],[[0.14957748353481,0.11213903874159,0.093773134052753],[-0.041428793221712,0.006090662907809,0.071240127086639],[-0.08595884591341,0.066889226436615,-0.0037350002676249]],[[0.041084852069616,-0.26745167374611,-0.012612859718502],[-0.033946163952351,-0.25143134593964,-0.017980933189392],[0.02328765206039,-0.0017737207235768,-0.03254085034132]],[[0.054774045944214,-0.04065153002739,-0.056969404220581],[-0.08424673974514,-0.10878378152847,-0.18101993203163],[0.019614802673459,-0.018283411860466,-0.17521795630455]],[[-0.088917382061481,0.0089129200205207,0.038559596985579],[-0.039297088980675,0.034308675676584,0.10083444416523],[-0.098410196602345,-0.075978353619576,0.15089586377144]],[[0.13873402774334,0.11292699724436,-0.034619025886059],[-0.0033719763159752,0.0081683862954378,-0.10557935386896],[0.082064181566238,-0.013575158081949,-0.12004668265581]],[[0.085375256836414,-0.25174069404602,-0.022759629413486],[-0.003066421719268,-0.1177414432168,-0.10113438218832],[0.0026712703984231,0.051614239811897,-0.060394458472729]],[[0.084306955337524,-0.11282193660736,0.10411504656076],[-0.079259090125561,-0.059132762253284,-0.087734900414944],[-0.032731611281633,0.096024490892887,-0.037550441920757]],[[0.12095260620117,-0.26249125599861,-0.018409453332424],[0.11327910423279,-0.18320471048355,0.020430264994502],[0.13952854275703,-0.10406015068293,-0.055656127631664]],[[-0.044171050190926,-0.0523173622787,-0.0025414873380214],[-0.02665670402348,0.0089919753372669,-0.050181418657303],[-0.05415914952755,0.023946933448315,0.017072569578886]],[[-0.092732697725296,-0.058497875928879,-0.00547846686095],[-0.051775880157948,0.10060046613216,-0.028309127315879],[-0.14793266355991,0.08567925542593,-0.087530083954334]],[[0.081982962787151,-0.021425314247608,0.35254803299904],[0.087720580399036,-0.12176851928234,0.07260650396347],[-0.11906011402607,-0.013910139910877,0.013709253631532]],[[-0.17424929141998,-0.053479805588722,0.032034561038017],[0.038412429392338,0.14199402928352,0.097875580191612],[0.12225480377674,0.10530076920986,-0.055045515298843]],[[-0.0023386562243104,-0.0036992030218244,0.039713304489851],[-0.0064680920913815,-0.035262569785118,-0.051133166998625],[0.024350840598345,-0.011630301363766,-0.059986785054207]],[[-0.014231945388019,0.029472997412086,0.02507827244699],[0.051222059875727,0.022257084026933,-0.11140537261963],[-0.014947728253901,-0.047464814037085,0.038332175463438]],[[0.084560461342335,0.0030079386197031,0.038145452737808],[-0.013719682581723,0.011331798508763,0.16461946070194],[-0.11335189640522,0.00080611486919224,0.014776556752622]],[[-0.049431931227446,-0.10087971389294,-0.10848535597324],[0.0092541836202145,-0.059388376772404,-0.089392878115177],[0.17015191912651,0.055777356028557,-0.23012484610081]],[[-0.070452891290188,-0.016150418668985,0.085558317601681],[-0.12432646006346,-0.20766788721085,0.058772265911102],[-0.026770729571581,-0.096704266965389,0.068308763206005]],[[-0.08611574023962,0.014597562141716,-0.072812288999557],[-0.15557463467121,-0.067057609558105,-0.013304868713021],[-0.0285998955369,0.12094217538834,0.062577277421951]],[[-0.080619640648365,0.049843955785036,0.05986375361681],[-0.10717871040106,0.014540848322213,-0.016775930300355],[-0.021441606804729,0.097085230052471,0.17920197546482]],[[0.10238818079233,-0.036247994750738,-0.095235347747803],[-0.078827604651451,-0.038708340376616,-0.076712228357792],[-0.0052616102620959,0.16565448045731,-0.34531661868095]],[[-0.010693718679249,0.049714360386133,-0.11052063852549],[-0.097274109721184,-0.047059666365385,-0.0099891470745206],[-0.034538581967354,-0.093674004077911,0.058666933327913]],[[-0.022571725770831,-0.059832315891981,0.037545017898083],[0.047853887081146,-0.059061408042908,0.027704756706953],[0.051473442465067,-0.03407833352685,0.060859639197588]],[[0.17328482866287,0.028688145801425,0.102757781744],[0.12637911736965,0.000804623356089,0.064870446920395],[0.001058743102476,-0.069052837789059,-0.065665245056152]],[[0.072810851037502,0.12278228998184,0.013805516064167],[-0.059895981103182,0.065184786915779,0.13504230976105],[0.090978786349297,-0.092034071683884,0.062924832105637]],[[0.25003105401993,-0.1042263507843,-0.034880109131336],[0.025833815336227,-0.083810344338417,-0.00795017182827],[0.038950778543949,-0.0741166472435,-0.029627045616508]],[[-0.36015611886978,0.050457697361708,0.12797378003597],[0.012864973396063,0.0415951423347,-0.029389625415206],[-0.042849507182837,-0.12887164950371,-0.029066486284137]],[[-0.024616468697786,-0.038981962949038,-0.043727781623602],[-0.053665921092033,0.0029874357860535,0.02596328034997],[-0.069404020905495,0.055263858288527,-0.043779976665974]],[[-0.09878496825695,0.041764587163925,0.012557284906507],[-0.043118502944708,0.03118266351521,-0.0035931563470513],[0.022383619099855,-0.05235854908824,-0.088712893426418]],[[-0.13578160107136,-0.09851411730051,0.044744171202183],[-0.094905853271484,0.014284300617874,0.0040583126246929],[-0.080047801136971,-0.0057986937463284,0.094876550137997]],[[-0.080167189240456,-0.031153181567788,-0.0034848970826715],[0.021591100841761,0.090567216277122,0.033840354532003],[0.070932440459728,0.051554229110479,-0.027266731485724]],[[0.0095958597958088,-0.073825106024742,-0.149937286973],[-0.020352989435196,0.044454570859671,0.12396615743637],[0.019188137724996,0.015331143513322,0.056917738169432]],[[0.085899583995342,0.02870355732739,-0.067467801272869],[0.06495850533247,-0.0034158891066909,-0.10367888212204],[-0.071313634514809,-0.060371465981007,-0.020556075498462]],[[-0.073815159499645,0.0069791371934116,-0.015087815001607],[0.043297313153744,0.02360207028687,0.029424102976918],[-0.027688484638929,-0.044866338372231,-0.076329655945301]],[[0.021853320300579,-0.07563704252243,-0.049705818295479],[0.066929943859577,-0.060861799865961,-0.011156025342643],[-0.059362042695284,-0.1615933328867,0.072376295924187]],[[-0.056096468120813,-0.060861568897963,0.028814071789384],[0.011332715861499,-0.043702553957701,0.046104699373245],[-0.091689512133598,-0.024885818362236,-0.0067232819274068]],[[-0.039938237518072,0.036164090037346,0.054324116557837],[-0.034807052463293,0.033243112266064,0.025307890027761],[-0.07608900219202,-0.12868931889534,0.077918477356434]],[[-0.091411136090755,-0.092892408370972,0.1207580268383],[-0.014988184906542,0.069439060986042,0.072785578668118],[0.0038470313884318,0.1383338868618,0.071218393743038]],[[0.074256174266338,-0.0065576988272369,-0.019409207627177],[0.065173231065273,0.031690310686827,0.094999931752682],[-0.025988353416324,-0.1479160785675,-0.19066077470779]],[[0.11317700147629,-0.03719574213028,0.0084636751562357],[0.079735979437828,0.0045692278072238,-0.09259095788002],[0.011477754451334,0.0056358561851084,-0.0090600494295359]],[[0.21279768645763,0.04182618111372,-0.046684246510267],[-0.089070715010166,0.041832871735096,0.01839604973793],[-0.097318008542061,0.092046156525612,-0.0052892100065947]],[[-0.078103996813297,0.064445592463017,0.0080716265365481],[0.011333079077303,0.039602503180504,-0.0063194427639246],[0.020287349820137,0.096916198730469,-0.024994812905788]],[[0.068333633244038,-0.11437629163265,-0.098597019910812],[-0.043296311050653,-0.064193025231361,-0.13374197483063],[-0.1044300198555,0.04671173542738,-0.10963886231184]],[[0.021192656829953,0.041174590587616,-0.1314450353384],[0.072634823620319,-0.024636156857014,-0.0010395771823823],[-0.19882659614086,0.18762665987015,0.014859707094729]],[[-0.30805489420891,-0.31740310788155,0.28214603662491],[0.010977131314576,-0.11138162016869,0.00083127780817449],[-0.050122074782848,-0.067827746272087,0.064124681055546]],[[0.16042585670948,-0.15495093166828,0.096446484327316],[0.078685700893402,-0.11899384111166,-0.098692253232002],[0.051158305257559,-0.068944752216339,-0.010197238996625]],[[-0.04521320015192,0.12368799746037,0.06478264182806],[0.02807879820466,0.099868766963482,-0.038793195039034],[0.044415958225727,0.02540004812181,0.047112435102463]],[[0.070039033889771,-0.094164833426476,-0.074546091258526],[0.0092686731368303,-0.025069139897823,-0.027405539527535],[-0.082206949591637,-0.074246600270271,0.020497614517808]],[[0.098609529435635,0.013270303606987,-0.057202767580748],[-0.11325239390135,0.053948719054461,0.05820244923234],[-0.010100584477186,-0.0035197180695832,-0.028959639370441]],[[-0.14345322549343,-0.059393882751465,-0.40480899810791],[0.056837271898985,0.071195647120476,0.026631424203515],[-0.023302093148232,-0.057152189314365,0.26994568109512]],[[-0.0066281617619097,-0.072289951145649,0.09443111717701],[0.061008218675852,0.062241796404123,0.098414227366447],[0.12291290611029,0.026851182803512,-0.027885576710105]],[[-0.16168263554573,-0.048999182879925,-0.091291680932045],[-0.07187893986702,-0.21949721872807,-0.07557225972414],[0.048006936907768,-0.12504711747169,0.047901436686516]]],[[[0.041496019810438,0.093899495899677,-0.034660436213017],[-0.023914080113173,-0.08682768791914,-0.041981603950262],[0.026407269760966,-0.052085898816586,0.032952059060335]],[[-0.021224090829492,-0.043252781033516,-0.036702524870634],[-0.011931673623621,0.041000187397003,0.0054951114580035],[0.034098528325558,-0.063095070421696,-0.027119556441903]],[[-0.097509749233723,-0.026772415265441,-0.022650957107544],[0.0073321517556906,-0.036883559077978,0.03064282797277],[-0.094777822494507,-0.10494768619537,0.036861002445221]],[[-0.10130124539137,-0.026603195816278,-0.03543234243989],[0.076724402606487,0.0044479030184448,0.016118811443448],[-0.029905853793025,0.040421910583973,-0.02923110127449]],[[-0.11653030663729,-0.024027666077018,0.0064540086314082],[-0.09114358574152,-0.19536928832531,0.044714257121086],[-0.091286972165108,-0.098938375711441,-0.05622723326087]],[[-0.0088665783405304,0.060160480439663,-0.0023343218490481],[-0.057549431920052,-0.0026953322812915,-0.047713451087475],[0.036623265594244,-0.061850920319557,-0.010587448254228]],[[-0.051959533244371,-0.031900610774755,-0.049592230468988],[-0.0016705632442608,-0.041851598769426,-0.12498351186514],[0.12099985778332,-0.05365277826786,0.15859770774841]],[[0.041307915002108,-0.080293618142605,0.054311070591211],[-0.1163027510047,0.011299217119813,-0.1156107634306],[-0.087455548346043,0.10806732624769,0.07378102093935]],[[-0.048728916794062,-0.0087882466614246,0.012191550806165],[-0.090374603867531,0.049148686230183,-0.025540269911289],[-0.063772492110729,0.015183506533504,-0.013326548971236]],[[0.03328013420105,-0.064461536705494,0.057152446359396],[0.025510707870126,-0.039921101182699,0.13863261044025],[-0.027345506474376,0.0070368689484894,-0.0097501073032618]],[[-0.040390554815531,0.026351509615779,0.16130508482456],[-0.015461097471416,0.051432613283396,-0.21316236257553],[0.011674201115966,0.080574102699757,0.13458094000816]],[[0.033469628542662,0.0086813187226653,-0.024642433971167],[9.7981741419062e-05,-0.043794073164463,0.068550921976566],[-0.080055631697178,0.0043330690823495,-0.044755827635527]],[[0.11037042737007,-0.077951140701771,-0.0089605152606964],[0.053797751665115,-0.054658532142639,-0.076461538672447],[-0.03839648514986,-0.057335503399372,0.090335831046104]],[[-0.10215774178505,-0.12376607209444,0.00020013039465994],[0.060702331364155,0.043496508151293,-0.10353663563728],[-0.056229688227177,0.012904184870422,0.090521536767483]],[[-0.059648159891367,-0.007683714851737,-0.0069964369758964],[-0.09490068256855,-0.022145221009851,-0.017348116263747],[-0.10224206745625,0.048791762441397,-0.10244990885258]],[[0.036645397543907,-0.12575244903564,0.051933739334345],[-0.030164942145348,-0.138093739748,0.061702206730843],[-0.099608525633812,0.058510504662991,0.079356923699379]],[[-0.010684142820537,-0.038481492549181,-0.28903138637543],[-0.089616924524307,-0.048530731350183,-0.010576657950878],[-0.062114838510752,-0.083863317966461,-0.081858083605766]],[[0.027044070884585,0.00041785326902755,-0.13725833594799],[0.013676918111742,-0.050873391330242,0.044644642621279],[0.035626966506243,0.11960495263338,0.051605675369501]],[[0.071396514773369,-0.072345018386841,-0.13125725090504],[-0.067816436290741,-0.027833554893732,0.027787091210485],[-0.24269899725914,0.11913908272982,0.041350267827511]],[[-0.056430570781231,-0.083362482488155,-0.15644033253193],[-0.084044001996517,-0.0056204814463854,0.00070704921381548],[0.0035879742354155,0.0057208645157516,0.032321400940418]],[[-0.020756276324391,-0.044787999242544,0.054627351462841],[0.039788983762264,-0.0053255124948919,-0.044017814099789],[0.12328235059977,0.079579129815102,-0.076714180409908]],[[0.030259529128671,0.0080545013770461,-0.022754583507776],[-0.075018882751465,-0.021387638524175,-0.005257610231638],[0.0097229685634375,-0.030382119119167,-0.028210325166583]],[[-0.097641222178936,-0.065175771713257,-0.078975021839142],[-0.07573002576828,0.087933123111725,-0.020522467792034],[0.065782926976681,0.068000391125679,-0.070317685604095]],[[0.11291916668415,0.029383905231953,0.012788391672075],[0.19529916346073,0.046505246311426,-0.075690917670727],[-0.034835111349821,-0.093835607171059,0.10550896078348]],[[0.092780113220215,-0.12720541656017,-0.020687172189355],[-0.026762709021568,0.039586797356606,0.028607923537493],[-0.0074682137928903,-0.027810724452138,-0.032047126442194]],[[-0.020864767953753,0.014697739854455,0.033790551126003],[-0.0063981101848185,-0.070609137415886,0.02924570068717],[-0.017825432121754,-0.0073613421991467,0.00031807512277737]],[[0.031345654278994,0.001627265359275,-0.086307130753994],[0.07502468675375,0.063225783407688,-0.062216438353062],[0.025072555989027,-0.10997480899096,0.1769812554121]],[[0.0034820425789803,0.02566309645772,-0.20051246881485],[-0.011219850741327,-0.04715970531106,-0.28929826617241],[-0.082759223878384,-0.14919303357601,-0.078792609274387]],[[-0.0090082520619035,0.033918552100658,-0.017596166580915],[0.015344330109656,0.012412115000188,0.027821281924844],[0.09524742513895,-0.0040381266735494,0.0067179463803768]],[[0.092463202774525,0.052029114216566,-0.087835557758808],[0.010173759423196,-0.09058241546154,0.018433589488268],[-0.0097056217491627,0.014174485579133,0.11707249283791]],[[-0.0088449781760573,0.02073641307652,-0.013634799048305],[-0.059549003839493,-0.040582410991192,-0.072475500404835],[0.042877666652203,-0.061351925134659,-0.1512735337019]],[[0.036350414156914,0.20989468693733,0.042311653494835],[-0.087726071476936,-0.022679841145873,-0.079686023294926],[-0.064681626856327,-0.16508361697197,-0.009937328286469]],[[0.060320101678371,0.031092274934053,-0.016397880390286],[0.043890804052353,-0.047752253711224,0.049849692732096],[0.05639074370265,0.041647028177977,0.0057900645770133]],[[0.081630989909172,0.068142056465149,0.047971546649933],[-0.005569560918957,0.0092140780761838,0.032404281198978],[-0.041475802659988,0.066513799130917,-0.10854289680719]],[[-0.0817965939641,-0.1158541738987,-0.062895715236664],[-0.010628581978381,-0.044095985591412,0.061290930956602],[-0.072464063763618,-0.019506715238094,0.12167421728373]],[[0.0080539984628558,0.045198239386082,0.079141698777676],[0.071759171783924,-0.042380172759295,0.086083590984344],[-0.0092773018404841,0.03206330537796,0.10194258391857]],[[-0.1789393723011,-0.0086789289489388,-0.034693371504545],[-0.021662762388587,0.010760834440589,-0.034305546432734],[0.1553103774786,0.0079351812601089,0.030376594513655]],[[0.051941953599453,-0.04771676659584,-0.096865229308605],[-0.099970228970051,0.063195422291756,-0.20550638437271],[-0.23724634945393,-0.12138701975346,-0.15586853027344]],[[-0.21893286705017,0.052302595227957,-0.015989914536476],[0.058896776288748,0.035580992698669,-0.035486176609993],[-0.077392317354679,-0.020492777228355,0.011412113904953]],[[-0.0016047488898039,-0.078554570674896,-0.061994045972824],[-0.049024231731892,0.050006054341793,0.11399026960135],[0.044442865997553,0.10255047678947,-0.11013285070658]],[[-0.0097536919638515,-0.059273540973663,-0.10914302617311],[-0.042062148451805,-0.090365454554558,0.074689373373985],[-0.10167141258717,-0.10304688662291,-0.0089108236134052]],[[-0.08400221914053,-0.00844950042665,-0.080495290458202],[-0.058784976601601,-0.012827813625336,-0.10353493690491],[0.1059587970376,-0.027145633473992,0.035038724541664]],[[-0.10944137722254,-0.14357224106789,0.096557222306728],[-0.0049307351000607,0.054436583071947,0.11190544068813],[0.049561399966478,0.10808821767569,-0.13101023435593]],[[0.055580981075764,-0.05299773812294,0.092652790248394],[-0.034807793796062,0.044620830565691,0.0081348698586226],[-0.057455692440271,0.15518097579479,0.0044656842947006]],[[0.060191299766302,-0.075503751635551,-0.23623497784138],[-0.0085119418799877,-0.016022697091103,0.021489696577191],[-0.083457671105862,-0.086276322603226,0.10795002430677]],[[0.066984556615353,-0.068862184882164,-0.025837741792202],[-0.052036967128515,-0.070064775645733,0.014575816690922],[-0.030924119055271,0.049782603979111,0.054547216743231]],[[0.15633156895638,-0.041038528084755,-0.16672894358635],[0.034229978919029,0.01342539396137,-0.12922048568726],[0.072502933442593,-0.12026736885309,-0.024342542514205]],[[0.12704001367092,0.0039115743711591,-0.079463757574558],[-0.091046445071697,0.037478428333998,-0.10154806822538],[-0.023515023291111,-0.083099603652954,0.061302479356527]],[[0.080068446695805,0.082409225404263,0.1222335100174],[0.06233698502183,-0.023229287937284,0.028846837580204],[-0.012180160731077,-0.10583010315895,0.10529534518719]],[[0.071156777441502,-0.056458909064531,0.035739738494158],[-0.016965275630355,-0.090818159282207,0.11888980865479],[0.11252530664206,0.064723290503025,-0.080870166420937]],[[0.080109640955925,0.074082471430302,-0.0088311387225986],[-0.042999785393476,0.0018543032929301,-0.071210637688637],[-0.12338270992041,-0.054991416633129,0.09115756303072]],[[-0.00044904832611792,-0.054283604025841,0.094392955303192],[0.02628730982542,0.0013251192867756,0.1327538639307],[0.020644582808018,0.091649636626244,-0.12604117393494]],[[-0.038793623447418,0.025158980861306,0.11182702332735],[0.015572457574308,0.054384555667639,0.022145319730043],[0.077770262956619,0.06432743370533,-0.029680613428354]],[[0.11942896991968,-0.051779568195343,0.0086304750293493],[0.040599502623081,-0.094790183007717,0.0025926535017788],[0.06205515936017,-0.18589068949223,0.093116141855717]],[[0.029307784512639,0.0097170043736696,-0.10056275129318],[0.0017373412847519,0.020612886175513,-0.18443123996258],[-0.15867851674557,0.022752655670047,0.031760957092047]],[[-0.066142439842224,0.061284869909286,-0.089387632906437],[-0.038229320198298,-0.01336355227977,0.096584737300873],[-0.058419596403837,-0.12431879341602,0.036304883658886]],[[0.0338987223804,-0.15394081175327,0.072951786220074],[0.022960893809795,-0.041724935173988,0.0012013332452625],[-0.033903438597918,0.029929606243968,0.0623499751091]],[[-0.069128654897213,0.011083021759987,-0.00090445257956162],[-0.079573825001717,0.039415217936039,-0.04029742628336],[0.002019781852141,0.068095326423645,-0.051958907395601]],[[0.095233485102654,0.065457165241241,0.0069601545110345],[0.066572517156601,0.0217508636415,0.007466007489711],[-0.024483617395163,0.02263637073338,0.091118738055229]],[[-0.011026917025447,0.088375546038151,0.048175938427448],[-0.091164261102676,0.11260692775249,0.0028823302127421],[-0.082659639418125,-0.058912836015224,0.057453546673059]],[[0.066975392401218,-0.17457765340805,-0.082568056881428],[-0.020135354250669,0.085697077214718,-0.094780929386616],[-0.0032146179582924,-0.016565721482038,-0.033607825636864]],[[-0.10629018396139,-0.13400031626225,-0.024153793230653],[0.013036767952144,-0.067798800766468,-0.065141290426254],[0.028267446905375,-0.10240070521832,-0.022943381220102]],[[0.035039767622948,0.034736420959234,0.0041267229244113],[0.035361126065254,0.056671377271414,-0.034099530428648],[-0.093905419111252,0.11606246232986,0.058702927082777]],[[0.067577287554741,-0.02312439493835,0.031486686319113],[-0.027780657634139,-0.021066002547741,-0.0069921449758112],[-0.026307145133615,0.019226768985391,-0.17229682207108]]],[[[-0.033082019537687,-0.069245040416718,-0.03079092130065],[0.10712771862745,0.035889606922865,-0.077349483966827],[0.0053841979242861,0.022540925070643,0.12025073170662]],[[-0.045751109719276,-0.073526374995708,-0.025725135579705],[-0.0058513781987131,-0.012181318365037,-0.013741347007453],[-0.032857559621334,-0.14740754663944,-0.046469230204821]],[[0.080480724573135,0.015396664850414,-0.052455320954323],[-0.11852491647005,-0.10041984915733,-0.02100059017539],[-0.091379679739475,-0.069588594138622,-0.01141029316932]],[[-0.15015845000744,0.03353276476264,0.069965459406376],[-0.03654095903039,-0.12459556013346,-0.032604217529297],[0.14516168832779,0.015048131346703,-0.02597296051681]],[[-0.061347849667072,0.078712798655033,0.024345321580768],[0.13728658854961,0.099543020129204,0.037368591874838],[-0.08700192719698,-0.044819913804531,-0.079105772078037]],[[-0.11360567808151,-0.1120492592454,-0.069062903523445],[-0.015901746228337,0.12112261354923,-0.039094980806112],[-0.013855079188943,-0.047797050327063,-0.033143077045679]],[[0.054443597793579,0.050612810999155,0.021498465910554],[0.028685206547379,-0.026897549629211,-0.012273436412215],[-0.055659361183643,0.014232742600143,0.080449901521206]],[[0.12256637960672,0.020899955183268,0.025650147348642],[-0.022768560796976,0.035297207534313,0.017002938315272],[-0.023507557809353,0.014373336918652,-0.022710349410772]],[[-0.0068476856686175,0.065244473516941,-0.037157475948334],[-0.015081611461937,-0.029734035953879,-0.026708777993917],[-0.020759359002113,0.13057957589626,0.020943466573954]],[[-0.1374077796936,0.10609779506922,0.071143046021461],[-0.058442443609238,-0.030966717749834,-0.1889822781086],[-0.059716679155827,-0.033627692610025,-0.081248439848423]],[[0.15481840074062,-0.080450125038624,-0.053072657436132],[-0.054923456162214,0.056407637894154,-0.01744763366878],[0.0021208180114627,0.082991078495979,-0.0028086653910577]],[[0.054549153894186,0.039719376713037,0.046620201319456],[-0.078301168978214,-0.036789268255234,-0.049359817057848],[-0.15247230231762,-0.0512635409832,-0.11272487044334]],[[0.012185994535685,-0.079356089234352,0.003895252244547],[-0.033278182148933,-0.014127496629953,0.035388872027397],[-0.10628800094128,-0.12799265980721,0.012073838151991]],[[-0.065832205116749,0.012025957927108,0.030506793409586],[0.054414182901382,0.15012077987194,0.025860032066703],[-0.22464355826378,-0.18075673282146,0.041758500039577]],[[0.02086578682065,0.09806015342474,-0.097435638308525],[-0.051646072417498,0.010128365829587,-0.016235569491982],[-0.12903901934624,0.013930408284068,0.053891826421022]],[[0.04664933681488,0.054910328239202,-0.0045327926054597],[-0.077622778713703,0.074577450752258,0.0079595176503062],[0.038071110844612,-0.11003085970879,0.044005841016769]],[[-0.11223387718201,-0.12162330746651,-0.063349701464176],[0.011313338764012,-0.03268288820982,0.072253711521626],[0.036370601505041,0.027486434206367,-0.096097745001316]],[[0.017621483653784,-0.014939096756279,-0.012119206599891],[-0.091968961060047,0.026889169588685,0.043532472103834],[0.02405364997685,-0.051687754690647,0.11595887690783]],[[0.11087729781866,-0.0089912731200457,-0.15943971276283],[0.085825964808464,0.072848349809647,-0.0074679492972791],[0.027077132835984,0.011242169886827,0.11321552842855]],[[-0.026254646480083,0.023614240810275,-0.063842810690403],[0.0046295467764139,-0.23419465124607,-0.19618646800518],[-0.025053614750504,-0.036980196833611,0.0036930008791387]],[[0.06557659059763,-0.0025521465577185,-0.037243623286486],[-0.0030852484051138,0.052493285387754,-0.1287480443716],[0.069929286837578,-0.013972816057503,0.041237145662308]],[[-0.062967486679554,0.030272148549557,-0.0074336216785014],[0.036398611962795,-0.044773798435926,-0.07038539648056],[0.065705895423889,-0.033672861754894,-0.072273701429367]],[[-0.00015574664575979,0.039532568305731,0.012855364941061],[-0.043405447155237,0.0011861909879372,-0.11572529375553],[0.10751035809517,0.037583239376545,0.0092038111761212]],[[0.017372354865074,0.067624248564243,0.016488339751959],[0.044182691723108,-0.095914229750633,-0.084792204201221],[0.15665119886398,-0.010890984907746,0.1706256121397]],[[0.14082027971745,0.00737250642851,-0.053674228489399],[0.094485141336918,0.0193653665483,0.065749138593674],[-0.095847688615322,0.072402387857437,0.032695259898901]],[[0.027823315933347,-0.010115798562765,0.036078400909901],[-0.078138381242752,0.034308474510908,0.0040502976626158],[-0.067016087472439,-0.0038898556958884,0.047921884804964]],[[0.071763798594475,0.041887730360031,0.007558646146208],[0.0068987654522061,-0.094483241438866,0.04059598967433],[0.11857951432467,0.051974762231112,0.024689642712474]],[[-0.063014209270477,0.08084811270237,-0.10722585767508],[-0.0085046095773578,0.01619665324688,0.12436182796955],[0.19825461506844,-0.074980065226555,0.015822498127818]],[[0.10943695157766,0.0093725640326738,-0.056985657662153],[0.072259724140167,0.024998662993312,-0.013626325875521],[-0.088480331003666,-0.04195923730731,-0.043039463460445]],[[0.03153758123517,0.051011968404055,-0.013082396239042],[-0.035018555819988,-0.088212661445141,0.11846340447664],[0.055409301072359,0.076085172593594,-0.029301460832357]],[[0.094322048127651,-0.031796541064978,-0.038181480020285],[0.18869577348232,0.013783688656986,0.032327774912119],[0.047662932425737,-0.014759216457605,0.019230861216784]],[[-0.099726043641567,-0.0030745544936508,0.089739859104156],[-0.17610237002373,0.052069675177336,-0.036742944270372],[0.12147741019726,-0.045198921114206,-0.094339393079281]],[[-0.010168982669711,0.057766828685999,-0.05006654933095],[0.014322573319077,-0.067593358457088,0.14764779806137],[0.068697176873684,0.0007781817112118,0.10650707036257]],[[-0.036578606814146,-0.060176875442266,-0.020433681085706],[0.019661154597998,-0.026429209858179,-0.14305844902992],[0.13189367949963,0.042125906795263,-0.056938704103231]],[[-0.10876183211803,-0.04119211807847,-0.081767998635769],[0.103555560112,-0.053550340235233,-3.0897819669917e-05],[0.016094556078315,0.045853536576033,0.01694100163877]],[[0.056399568915367,0.037883903831244,0.11474121361971],[-0.027570037171245,0.050420690327883,0.12426038831472],[-0.074250631034374,-0.089678287506104,-0.066935129463673]],[[0.023995384573936,-0.1143114939332,-0.11832819133997],[0.014072466641665,-0.026330940425396,0.10908768326044],[-0.085541173815727,0.024177856743336,-0.099049583077431]],[[0.010633039288223,-0.020287912338972,0.042446706444025],[-0.047144748270512,0.048155173659325,-0.019123567268252],[-0.10074357688427,0.049670267850161,-0.027751382440329]],[[0.166109547019,0.070048160851002,0.038685347884893],[-0.070086628198624,-0.0052897147834301,-0.042616415768862],[-0.0028296113014221,-0.036498729139566,-0.057815972715616]],[[-0.03260326012969,0.076930724084377,0.042845360934734],[0.23842602968216,0.13148528337479,0.1316429823637],[-0.17389994859695,0.0099905347451568,-0.0002778556663543]],[[-0.070931896567345,-0.11815112829208,0.018933000043035],[-0.12835900485516,-0.081922598183155,-0.014566828496754],[-0.10342690348625,0.049150485545397,-0.0080377738922834]],[[-0.08510585129261,-0.017840538173914,-0.095746710896492],[-0.065984629094601,-0.1259011477232,-0.026307879015803],[-0.034324608743191,0.08547829836607,0.023534679785371]],[[0.022384682670236,0.08084137737751,0.16010925173759],[0.0094866510480642,0.01474430039525,-0.03843566775322],[-0.0099179707467556,0.077053524553776,0.0080151902511716]],[[0.026209576055408,0.073327660560608,0.063411064445972],[-0.11017006635666,0.073051899671555,-0.10135394334793],[-0.10838390141726,0.099171921610832,0.1661356985569]],[[0.086814016103745,-0.0090408604592085,0.046392768621445],[-0.0098924320191145,-0.073463216423988,-0.069830633699894],[0.069465734064579,-0.13975605368614,0.031638484448195]],[[-0.092835359275341,0.007264431566,0.018851358443499],[-0.019775332883,-0.038357377052307,0.022235436365008],[0.053472153842449,0.077152982354164,0.016746088862419]],[[-0.029749371111393,0.0683264285326,0.085450410842896],[-0.10490158200264,-0.090216115117073,0.052576925605536],[-0.088420085608959,0.0033702494110912,-0.067210637032986]],[[0.053865056484938,0.021148260682821,-0.074674434959888],[-0.087602891027927,-0.07304485887289,0.17701527476311],[0.04248820245266,-0.13162668049335,-0.087972193956375]],[[-0.019019527360797,0.032870333641768,-0.10953158885241],[0.0022427865769714,0.011182495392859,0.028432004153728],[0.023080680519342,-0.031475320458412,-0.12923491001129]],[[0.051264405250549,-0.099548071622849,-0.034757327288389],[-0.0052246111445129,-0.0092589193955064,0.038958571851254],[-0.069014355540276,-0.060569379478693,-0.13396733999252]],[[-0.095331013202667,0.050494853407145,0.029019985347986],[-0.050338368862867,-0.088021911680698,-0.13415209949017],[-0.028988588601351,0.0136848250404,-0.10867245495319]],[[-0.097838386893272,0.16528436541557,0.08024688065052],[0.15508723258972,-0.13521020114422,0.014516695402563],[-0.026047106832266,0.0062339012511075,-0.019782496616244]],[[-0.10094707459211,-0.13154509663582,-0.18004493415356],[0.0059986715205014,0.053195767104626,0.028421372175217],[0.038174007087946,0.19172377884388,0.049195870757103]],[[-0.088983736932278,-0.01458758674562,-0.028929920867085],[0.011645188555121,-0.021518146619201,-0.074843659996986],[-0.090193212032318,-0.052322808653116,0.045187346637249]],[[-0.029613124206662,0.0053403680212796,-0.04288836568594],[0.050608262419701,0.055564407259226,-0.11524251103401],[0.13308477401733,0.035285130143166,0.10163707286119]],[[0.069478712975979,-0.05371056497097,0.044891931116581],[0.013315913267434,0.031585831195116,0.010214990004897],[0.087882727384567,0.045675855129957,0.017907902598381]],[[0.074299573898315,-0.13233767449856,-0.0057814670726657],[0.048502035439014,0.048374239355326,-0.049170687794685],[0.0059382128529251,-0.056509647518396,-0.044730383902788]],[[-0.095019638538361,-0.066555880010128,-0.025013748556376],[0.015900526195765,-0.05489219725132,-0.10468835383654],[-0.083463028073311,-0.10115204751492,-0.0111064305529]],[[-0.026617545634508,0.070524014532566,0.0077409967780113],[0.053755152970552,-0.019433872774243,0.025332879275084],[0.070526108145714,0.10538616031408,0.035552710294724]],[[0.092660464346409,-0.037947341799736,-0.0094680292531848],[-0.032743025571108,-0.25302222371101,-0.21882113814354],[0.021678939461708,0.098703131079674,-0.022760413587093]],[[-0.038269534707069,0.12198519706726,0.15092873573303],[0.059235844761133,-0.1397896707058,0.0067245685495436],[0.076562024652958,-0.0077961119823158,0.054341949522495]],[[0.00078025826951489,0.027755759656429,-0.064103953540325],[-0.0018510026857257,0.0025538217741996,0.024032115936279],[-0.11173226684332,-0.036015667021275,-0.022483350709081]],[[-0.1204499527812,0.0036956174299121,-0.022707825526595],[0.12857702374458,0.013008190318942,0.010543879121542],[-0.13482010364532,-0.15967817604542,-0.050038397312164]],[[0.0077642481774092,-0.027228923514485,-0.037164885550737],[0.12084524333477,0.0075888969004154,0.050764050334692],[0.0083635011687875,-0.036843277513981,-0.066791445016861]]],[[[-0.33210316300392,-0.18907125294209,0.055302433669567],[-0.11912820488214,0.046224400401115,0.023402020335197],[0.0067001022398472,0.01515509840101,0.094794325530529]],[[0.033534400165081,0.052714265882969,-0.0039441711269319],[0.041280265897512,-0.058395251631737,-0.16483367979527],[0.087050475180149,-0.089396096765995,0.14128446578979]],[[-0.022491911426187,-0.032159179449081,0.076607458293438],[-0.014368024654686,0.043727118521929,-0.016639776527882],[0.035732347518206,-0.050124581903219,-0.059710640460253]],[[-0.07327364385128,-0.018298596143723,0.053040888160467],[-0.029558127745986,-0.085459068417549,0.020512608811259],[0.19388449192047,-0.013476283289492,-0.012771545909345]],[[-0.00018794275820255,-0.080814085900784,0.025338711217046],[0.032272823154926,-0.029966253787279,0.022684212774038],[0.02815761603415,-0.0096876099705696,-0.16594092547894]],[[-0.015464093536139,0.071291133761406,-0.075068943202496],[-0.011453015729785,-0.043127752840519,0.025344455614686],[-0.02558265812695,-0.10989987850189,0.046924471855164]],[[0.0072505660355091,0.11202275753021,-0.044615767896175],[-0.064987555146217,0.021190444007516,-0.088711924850941],[0.0013471450656652,0.035189252346754,0.07610784471035]],[[0.087333455681801,0.013132468797266,0.1535751670599],[-0.061030499637127,0.008412784896791,0.11593002825975],[-0.17376114428043,-0.068823009729385,-0.1392950117588]],[[0.030101193115115,-0.040103055536747,0.069334954023361],[-0.16850426793098,0.060105580836535,0.094344086945057],[0.037577822804451,-0.096213899552822,-0.011252945289016]],[[-0.14169256389141,-0.041442614048719,-0.068331308662891],[-0.062221564352512,0.021084940060973,-0.025985972955823],[0.047824736684561,-0.060331374406815,0.022382996976376]],[[0.078672863543034,0.14843605458736,0.026270102709532],[0.042569153010845,0.032175790518522,0.13963803648949],[-0.050442222505808,-0.065212063491344,-0.038733430206776]],[[0.029303906485438,-0.051110342144966,0.11341115087271],[0.013925645500422,-0.0050314459949732,0.051504645496607],[0.055191118270159,0.09058491140604,-0.1550789475441]],[[-0.11951595544815,-0.0083060069009662,-0.10020770132542],[-0.12852701544762,-0.01554886251688,-0.10928149521351],[-0.046753227710724,-0.058081071823835,-0.14538019895554]],[[-0.27584859728813,-0.023287270218134,-0.061518963426352],[0.013589253649116,0.083027221262455,-0.0066013266332448],[0.088430561125278,0.16288097202778,0.14582842588425]],[[0.023192984983325,0.065031811594963,-0.080358400940895],[-0.073264509439468,0.11033670604229,-0.079123951494694],[-0.053688514977694,-0.08588419854641,0.13374900817871]],[[-0.020145680755377,0.077192775905132,-0.11368963867426],[-0.12152472138405,0.12726324796677,-0.053972665220499],[-0.012543215416372,-0.015787329524755,0.055529978126287]],[[0.061975035816431,-0.016540119424462,0.11287079006433],[-0.034246135503054,-0.089821629226208,-0.032981049269438],[0.0032731543760747,-0.031899314373732,0.10381484776735]],[[-0.14852896332741,-0.043463528156281,0.068156845867634],[-0.047009572386742,-0.06292463093996,0.1322116702795],[0.1031828224659,0.030662789940834,-0.040934022516012]],[[-0.011713940650225,-0.0023337213788182,0.12467959523201],[-0.098954625427723,-0.088356159627438,-0.072703398764133],[-0.021875763311982,0.01736225746572,-0.072478868067265]],[[0.0091012688353658,-0.044845424592495,-0.26765814423561],[-0.02947304956615,0.10143885016441,0.048054363578558],[0.010841224342585,-0.0068697747774422,0.083040080964565]],[[-0.042093735188246,-0.092254102230072,0.067629851400852],[0.017646692693233,0.012932661920786,0.059796035289764],[0.039496399462223,0.0045597106218338,-0.052228238433599]],[[-0.0479471758008,0.030840525403619,0.028900040313601],[0.0305838547647,-0.016858896240592,-0.042609978467226],[0.020231310278177,-0.046614047139883,-0.020402710884809]],[[-0.016325391829014,0.039269790053368,0.015867384150624],[-0.023904075846076,-0.070735424757004,0.023385694250464],[-0.099774494767189,-0.0216373950243,0.10282485932112]],[[0.2068288475275,0.1366625726223,0.076922491192818],[-0.13693152368069,0.12432643026114,0.028656622394919],[-0.17676439881325,0.03704147785902,-0.14748579263687]],[[0.085939459502697,0.13099040091038,0.12243397533894],[0.11029370874166,0.13419529795647,0.0095626432448626],[0.01667146384716,-0.086640514433384,-0.043830193579197]],[[-0.0040281643159688,-0.055619850754738,-0.031742308288813],[0.028257474303246,0.021451305598021,-0.024134309962392],[-0.00069714454002678,-0.011508000083268,0.040797837078571]],[[0.072781167924404,-0.038496546447277,-0.058326382189989],[-0.023506367579103,0.024776164442301,-0.07977769523859],[-0.071400821208954,-0.1428549438715,-0.054909769445658]],[[-0.10802161693573,-0.21294850111008,-0.039485543966293],[-0.065614126622677,-0.032494727522135,-0.083958774805069],[-0.067788802087307,-0.094799123704433,0.093063622713089]],[[0.014904539100826,0.11221523582935,0.0085795782506466],[0.011879593133926,-0.021669702604413,-0.14482991397381],[-0.0029768969397992,-0.0047899466007948,-0.12326001375914]],[[0.050120409578085,-0.15685202181339,-0.034069865942001],[0.0051159667782485,-0.0058822510764003,-0.13066072762012],[-0.038398768752813,0.10744228214025,0.057633984833956]],[[-0.021879041567445,-0.033646501600742,-0.057611804455519],[0.022920330986381,-0.0033956684637815,-0.11281602829695],[0.026273595169187,0.080414988100529,0.082975998520851]],[[-0.00085134198889136,-0.077474318444729,-0.023500926792622],[0.19428643584251,0.07916671782732,0.10078486055136],[0.12510098516941,0.043851882219315,-0.14527453482151]],[[-0.070752963423729,-0.080153577029705,-0.057477790862322],[-0.040577478706837,0.16225649416447,-0.16054943203926],[-0.063006721436977,-0.0089438585564494,-0.098750285804272]],[[-0.076234146952629,-0.085983604192734,0.069629788398743],[-0.039574008435011,-0.068075016140938,-0.016778342425823],[-0.16517068445683,0.053390096873045,0.010407988913357]],[[-0.065333321690559,0.031597934663296,-0.049276914447546],[-0.043508049100637,0.028757648542523,0.19618901610374],[0.062477208673954,0.13927946984768,0.043588824570179]],[[0.064773313701153,0.10158888995647,0.043187420815229],[-0.068003982305527,0.067161649465561,0.087043635547161],[-0.11097029596567,0.070123784244061,0.085096627473831]],[[-0.014458636753261,0.011586270295084,-0.0074239210225642],[0.27718764543533,0.09683246165514,0.099256962537766],[0.13506324589252,0.063184767961502,0.16463731229305]],[[0.13042102754116,-0.015663154423237,0.0049242610111833],[-0.0068162078969181,-0.09924653172493,0.060749154537916],[-0.020886013284326,-0.16467650234699,-0.17334479093552]],[[0.20847846567631,-0.014062577858567,0.10119267553091],[-0.030278725549579,-0.060151610523462,-0.12087509036064],[-0.017461124807596,0.10826159268618,-0.11759962886572]],[[0.022220890969038,0.090046122670174,0.018003789708018],[-0.075110144913197,-0.056656006723642,-0.024851376190782],[-0.071476422250271,-0.0087610827758908,-0.057112775743008]],[[-0.18739850819111,-0.10417674481869,0.12873516976833],[0.04279488697648,-0.0058798869140446,-0.050407208502293],[-0.071377493441105,0.071495145559311,0.14530195295811]],[[-0.16657067835331,0.020472811535001,0.1085496544838],[-0.04359420016408,0.023998754099011,0.039381425827742],[-0.017733292654157,-0.047999985516071,0.013270591385663]],[[0.12683029472828,-0.015831042081118,0.21260879933834],[-0.18866503238678,0.044130716472864,0.0047808280214667],[-0.012871290557086,-0.017555693164468,-0.12021398544312]],[[-0.079798616468906,-0.031299956142902,0.10914680361748],[-0.029104266315699,0.03244936466217,0.099148564040661],[-0.11011474579573,-0.075107291340828,-0.062021795660257]],[[0.12475061416626,0.073378644883633,0.091133110225201],[-0.12892311811447,0.0019018535967916,-0.016054514795542],[-0.059678100049496,0.019227223470807,0.061751946806908]],[[-0.19156408309937,-0.12290628999472,0.02833285741508],[0.050549998879433,0.030147956684232,-0.03623204678297],[-0.018711784854531,-0.0040621203370392,-0.15495143830776]],[[0.025137228891253,-0.042099572718143,-0.018828151747584],[0.042547106742859,0.058994401246309,-0.1126281991601],[-0.13543589413166,0.040150072425604,0.11699292063713]],[[-0.010319058783352,-0.078180618584156,0.1149343624711],[0.15959987044334,-0.037103231996298,-0.14525486528873],[0.0095873447135091,0.048065524548292,-0.0660714879632]],[[-0.1394681930542,-0.019480470567942,0.089253567159176],[-0.082472451031208,0.053883280605078,-0.050245828926563],[0.048938080668449,0.037381157279015,-0.0046567036770284]],[[0.06111116334796,-0.15165974199772,0.16950595378876],[0.057146962732077,-0.086803913116455,0.029525883495808],[0.13355092704296,0.11425109952688,-0.077891618013382]],[[0.046116326004267,-0.11872667819262,-0.077841103076935],[-0.030920984223485,0.032106794416904,-0.10520948469639],[-0.0093934237957001,0.077420704066753,-0.0013576436322182]],[[0.0095740091055632,-0.0029265554621816,-0.0047862362116575],[0.0022578774951398,-0.071421451866627,0.0051182014867663],[0.050040286034346,0.0079795680940151,0.017742279917002]],[[-0.14205878973007,-0.03855212405324,-0.013438163325191],[0.027793455868959,-0.017232552170753,0.040616050362587],[-0.067255944013596,0.048421256244183,0.030722105875611]],[[0.011514253914356,0.033722572028637,0.072166383266449],[0.0017477602232248,0.077250130474567,0.0097349341958761],[-0.16637383401394,-0.083547465503216,-0.11658526957035]],[[-0.031292922794819,0.086870707571507,-0.067984953522682],[-0.014129193499684,-0.044557444751263,-0.11537807434797],[-0.0092396223917603,0.064865030348301,-0.026614790782332]],[[-0.043473433703184,0.076378785073757,0.086084388196468],[-0.078086391091347,0.12881445884705,0.057125382125378],[0.049914129078388,-0.017876861616969,-0.079405657947063]],[[-0.03635860607028,-0.13890852034092,0.18975260853767],[-0.0038641828577965,0.0098589044064283,-0.014188850298524],[0.033919285982847,-0.065889477729797,-0.069926261901855]],[[-0.15002742409706,-0.035971723496914,-0.15583783388138],[-0.039768114686012,-0.040775075554848,0.01709358766675],[-0.031872723251581,0.088570393621922,-0.035139463841915]],[[0.087064802646637,0.037136189639568,0.15769563615322],[0.036754250526428,-0.052455179393291,-0.047150123864412],[-0.032762974500656,-0.024124266579747,-0.0099789761006832]],[[-0.021230222657323,-0.0022721772547811,0.12373877316713],[0.071686118841171,-0.015308489091694,-0.010697453282773],[0.0055439625866711,0.037005197256804,-0.024751609191298]],[[-0.14079949259758,0.11347135901451,0.10249554365873],[-0.0079148327931762,-0.076252236962318,-0.084714978933334],[-0.032965715974569,-0.046593476086855,0.088897787034512]],[[-0.088891118764877,-0.10978925228119,0.06732365489006],[0.0037091181147844,-0.060456831008196,0.0064022415317595],[0.12537644803524,-0.016507430002093,0.017822628840804]],[[-0.085526265203953,0.079278327524662,0.099424436688423],[0.018595293164253,-0.073696069419384,-0.017890078946948],[0.023512452840805,0.0093539198860526,0.093958161771297]],[[-0.16543601453304,-0.014648206532001,-0.25170812010765],[0.013044338673353,-0.028652917593718,0.027925778180361],[0.01027377974242,-0.043227486312389,-0.092417478561401]]],[[[-0.046459779143333,0.032661788165569,-0.019847715273499],[-0.014537471346557,-0.01839485578239,0.063848905265331],[-0.082314312458038,-0.0049001979641616,0.0069790985435247]],[[-0.054297838360071,0.011234410107136,0.05658670514822],[0.018869122490287,0.030074626207352,0.079049654304981],[-0.016901118680835,-0.016609055921435,0.12498193979263]],[[-0.046212553977966,-0.062860310077667,-0.092134706676006],[0.023681968450546,0.036966934800148,0.062179792672396],[0.15392027795315,0.0032376172021031,-0.036646075546741]],[[0.030151793733239,0.017232595011592,0.071047350764275],[0.04512583091855,0.033581931143999,-0.00027841699193232],[0.02345684543252,-0.07980365306139,-0.0095215085893869]],[[-0.059203609824181,-0.21791723370552,-0.017200561240315],[-0.04936895519495,-9.2175811005291e-05,-0.036026172339916],[-0.15606506168842,0.12157939374447,0.084614865481853]],[[-0.023512050509453,-0.097421780228615,0.057642333209515],[0.027696222066879,0.055298022925854,-0.017617296427488],[0.0097031863406301,0.010227422229946,0.096386894583702]],[[0.071495279669762,0.014291640371084,0.058913622051477],[-0.039733536541462,-0.10647223889828,-5.3744926844956e-05],[0.05750884488225,-0.00042967358604074,0.0074323113076389]],[[0.073488190770149,0.044934447854757,0.052552506327629],[0.040650919079781,-0.025132888928056,-0.021916516125202],[0.080667980015278,-0.037266250699759,-0.013493449427187]],[[0.046335335820913,-0.075941860675812,-0.094906389713287],[0.065515719354153,-0.086004674434662,-0.042608562856913],[0.071398518979549,0.057240579277277,0.14143753051758]],[[-0.076554916799068,-0.094452753663063,0.050218552350998],[-0.041778288781643,0.012665228918195,0.13052071630955],[0.074859850108624,0.1220745742321,0.087107680737972]],[[0.031801581382751,0.026177391409874,0.012725284323096],[0.034537300467491,-0.12848857045174,0.0040309522300959],[0.035644251853228,0.019918110221624,0.058679934591055]],[[0.072157196700573,0.020607475191355,0.010658425278962],[-0.033496677875519,-0.078995421528816,-0.049142122268677],[0.0069920653477311,0.091370761394501,0.033953037112951]],[[0.086216881871223,0.056858003139496,-0.00134099915158],[0.079277865588665,0.018047034740448,-0.033767495304346],[0.048243090510368,0.0033116820268333,-0.052410989999771]],[[0.031546022742987,0.060653824359179,0.014512342400849],[-0.046029135584831,-0.010282814502716,-0.019070621579885],[0.012036279775202,0.13386832177639,0.23992478847504]],[[0.010247087106109,-0.0085339723154902,0.0029585207812488],[0.064609780907631,0.029424641281366,0.10157351195812],[-0.019168972969055,-0.035046517848969,0.059943456202745]],[[-0.20835839211941,-0.16191723942757,0.050204657018185],[0.074058175086975,0.046151332557201,0.057338662445545],[-0.034006081521511,0.0058008674532175,0.12842239439487]],[[0.064572706818581,0.14832927286625,0.1142039373517],[0.097286783158779,0.068532928824425,0.027475871145725],[0.0067338082008064,0.057681202888489,-0.024579053744674]],[[0.083432570099831,-0.030076866969466,-0.014975555241108],[0.069447472691536,0.01155205257237,0.029600042849779],[-0.03397835791111,0.054423090070486,0.015371894463897]],[[-0.078160889446735,-0.10173247009516,0.11419969052076],[-0.024766961112618,0.093486860394478,0.0092106722295284],[-0.0147909168154,0.078346617519855,0.060920547693968]],[[-0.0037033935077488,-0.12652987241745,-0.028857093304396],[-0.030187083408237,-0.00024690254940651,0.086992800235748],[-0.012136264704168,-0.013528342358768,0.00046022015158087]],[[0.055530112236738,0.029254861176014,0.080883421003819],[0.14873284101486,0.083657242357731,0.028458919376135],[0.1227785795927,0.10093180835247,-0.010410467162728]],[[0.0030337281059474,-0.031840614974499,-0.0089686764404178],[0.023319274187088,0.013452032580972,0.00066979735856876],[-0.039692297577858,0.013596140779555,-0.034725103527308]],[[-0.054905280470848,-0.080578483641148,0.1361486017704],[0.10524556785822,-0.014955868944526,-0.012675409205258],[0.083765678107738,0.046720430254936,0.021290028467774]],[[0.099596068263054,0.022863475605845,-0.023181142285466],[-0.11442188173532,0.10294106602669,-0.014894369989634],[-0.04604085162282,0.068176873028278,0.22237610816956]],[[0.22487519681454,0.1870119124651,-0.028818784281611],[-0.077210381627083,0.048864245414734,-0.062441892921925],[0.082305580377579,0.037086617201567,0.011000809259713]],[[-0.017107266932726,-0.029341511428356,-0.04501224681735],[0.030380431562662,0.023867292329669,0.0094116367399693],[0.0063330521807075,0.039090111851692,0.017978627234697]],[[-0.023471251130104,0.13685002923012,0.1312912851572],[0.062841564416885,-0.051527220755816,-0.013903207145631],[0.043985825031996,0.072453834116459,0.078073561191559]],[[-0.12221238017082,-0.08996657282114,-0.01586677506566],[-0.062026787549257,-0.027453379705548,-0.038522027432919],[-0.052333351224661,0.014867089688778,-0.043287482112646]],[[-0.032952297478914,0.026897732168436,-0.075929738581181],[0.094807416200638,-0.033346328884363,0.0036969997454435],[-0.027020441368222,-0.031332284212112,-0.04932875931263]],[[-0.052219659090042,-0.052175384014845,0.064404562115669],[-0.084411308169365,0.018595913425088,0.053263865411282],[0.056489866226912,0.034512158483267,-0.054796125739813]],[[0.13360360264778,0.084844097495079,0.058062095195055],[-0.096906416118145,0.047386355698109,0.065252423286438],[-0.041779968887568,0.13366059958935,0.092756062746048]],[[-0.014081464149058,0.057064168155193,-0.024130357429385],[0.038641195744276,-0.01844758912921,-0.15097396075726],[0.045791380107403,0.0018534965347499,-0.007674683816731]],[[0.088235095143318,0.15620635449886,-0.003004552796483],[-0.070258922874928,0.012126265093684,-0.089331537485123],[-0.016254441812634,-0.053934298455715,-0.16616994142532]],[[0.037894621491432,0.028418993577361,0.061841711401939],[0.033360745757818,0.034828171133995,-0.020526239648461],[-0.063120327889919,0.066471315920353,0.042684383690357]],[[-0.071945980191231,-0.061485584825277,-0.088273331522942],[-0.086192741990089,-0.039264060556889,-0.06144992262125],[0.10877071321011,0.082725204527378,-0.0066771707497537]],[[0.085985332727432,0.10953330248594,0.11579465866089],[0.10196111351252,0.060412272810936,-0.016919683665037],[0.040996592491865,-0.0064182998612523,-0.029891233891249]],[[0.032758828252554,-0.051510352641344,0.0077216564677656],[0.012810826301575,0.086276046931744,-0.019023468717933],[0.042089756578207,-0.056266080588102,0.05447606742382]],[[-0.021484758704901,0.029855575412512,0.059623189270496],[0.026775505393744,-0.0087562575936317,-0.10127275437117],[0.11668372899294,0.060497872531414,0.03086425922811]],[[0.062069252133369,-0.10313232243061,-0.041069757193327],[0.028381980955601,-0.065357089042664,-0.033029425889254],[0.095067396759987,0.03536019474268,-0.067560382187366]],[[-0.032937612384558,-0.024133507162333,0.10160394757986],[-0.052136853337288,0.041159722954035,-0.059610217809677],[0.0070401090197265,0.11890649050474,0.028514593839645]],[[-0.019393308088183,-0.1449274122715,0.12995897233486],[-0.051461420953274,-0.030829040333629,0.099358402192593],[-0.0082764513790607,-0.038912758231163,-0.0069091226905584]],[[-0.02274926006794,0.026215167716146,0.030657615512609],[-0.015121540054679,-0.0088543398305774,-0.017389446496964],[0.08245076239109,0.10243576020002,0.0094204088672996]],[[-0.047203525900841,-0.042529102414846,-0.0036616926081479],[0.083065092563629,2.6259647711413e-05,0.16424448788166],[-0.092109322547913,0.037833869457245,-0.082123845815659]],[[-0.066196076571941,-0.014803318306804,0.018100375309587],[0.049542520195246,0.063927315175533,0.019545612856746],[0.13783311843872,-0.093484237790108,0.063762724399567]],[[-0.099754571914673,0.061734538525343,-0.042360030114651],[-0.16686399281025,0.041179552674294,0.048333965241909],[-0.071810148656368,0.10971231013536,0.10767026990652]],[[0.055212546139956,0.011577918194234,-0.012793954461813],[0.049838304519653,0.070113942027092,0.11601573228836],[0.059493716806173,0.017368845641613,-0.064402662217617]],[[-0.0038611746858805,0.0049225892871618,0.030331904068589],[0.052604079246521,0.055224806070328,0.1075766980648],[0.038819048553705,0.093353845179081,0.05421594902873]],[[0.11018542200327,0.01731108315289,-0.058283131569624],[0.10767242312431,-0.043411806225777,-0.013074927031994],[0.019188519567251,-0.01709551922977,0.10638480633497]],[[0.059239882975817,0.0019653090275824,-0.091430179774761],[-0.056125659495592,-0.079218164086342,-0.039798438549042],[-0.001670429832302,0.014742367900908,-0.041390042752028]],[[-0.098547719419003,-0.065222963690758,0.016964707523584],[-0.053841475397348,-0.0049108318053186,-0.052942130714655],[-0.012981414794922,0.056118555366993,-0.071702726185322]],[[0.096532195806503,0.044622361660004,0.14485538005829],[0.011842234060168,0.057630237191916,0.11423344165087],[-0.015161679126322,0.046388227492571,0.0417300760746]],[[0.10724169760942,0.036893837153912,0.033105336129665],[0.084473259747028,0.06476753950119,0.0062573938630521],[0.11323684453964,0.054162327200174,0.079056449234486]],[[-0.039206713438034,-0.01817511767149,0.00020492187468335],[0.022638436406851,0.031515534967184,0.040947750210762],[-0.038732022047043,-0.044689066708088,-0.0033526031766087]],[[0.17051362991333,0.046982411295176,0.19999389350414],[-0.021941002458334,-0.092459417879581,-0.0868159532547],[-0.045126382261515,-0.079046554863453,-0.086106650531292]],[[-0.0044235424138606,-0.075727768242359,-0.12148871272802],[0.011020534671843,0.070788159966469,0.012101978994906],[0.069562911987305,-0.13078479468822,0.032532677054405]],[[0.052727978676558,-0.084608405828476,-0.070813283324242],[0.082789242267609,0.015441491268575,-0.053238894790411],[-0.070355743169785,-0.11706949025393,0.031399391591549]],[[-0.0029222292359918,-0.11357679218054,0.022207982838154],[-0.036409419029951,0.088928677141666,0.091513119637966],[0.030504640191793,-0.024639818817377,0.071660079061985]],[[-0.04405714944005,-0.046214181929827,-0.035309262573719],[-0.079981654882431,-0.14360472559929,0.054190684109926],[0.05390240624547,-0.054077971726656,-0.013322093524039]],[[0.059091459959745,0.12623430788517,0.07027143985033],[-0.0080490903928876,0.073133215308189,-0.033034857362509],[-0.055195111781359,0.024984493851662,0.021642250940204]],[[-0.0043141776695848,-0.06630539894104,-0.030885944142938],[-0.025302097201347,-0.074106737971306,-0.0002797975030262],[0.025873119011521,-0.12417548894882,-0.0012195813469589]],[[0.040060754865408,0.021995175629854,0.032762050628662],[0.14892825484276,0.018827451393008,0.074103429913521],[0.15861536562443,0.084847614169121,0.096537612378597]],[[-0.21217212080956,-0.039979424327612,-0.038011714816093],[-0.018848970532417,-0.040798511356115,0.033982235938311],[-0.026844816282392,0.14400342106819,0.13116253912449]],[[0.049976330250502,-0.039480518549681,0.06371782720089],[-0.1008690521121,-0.077580288052559,-0.05218593031168],[-0.038458745926619,0.026214078068733,0.071510560810566]],[[0.053975462913513,-0.024177730083466,-0.072990700602531],[-0.040051113814116,-0.05012971162796,-0.0064761992543936],[-0.021945873275399,-0.068052694201469,0.0084662903100252]]],[[[0.032493006438017,0.036791883409023,0.020280623808503],[0.017751857638359,-0.02907426841557,0.035874255001545],[-0.063351131975651,0.02718311548233,-0.068015888333321]],[[0.01039469614625,-0.031050633639097,-0.12370619177818],[-0.040479421615601,0.003764815395698,-0.024971621111035],[-0.038312710821629,0.12181134521961,-0.041815727949142]],[[-0.067576393485069,-0.048423409461975,-0.098423227667809],[0.049793772399426,0.011152802035213,-0.0026274842675775],[0.01046332065016,0.074591189622879,0.062348991632462]],[[-0.051403436809778,-0.11700433492661,0.0080793537199497],[-0.092604964971542,-0.050975758582354,0.16567848622799],[0.024846203625202,0.055012755095959,0.025209462270141]],[[-0.0037198667414486,0.0037638742942363,-0.08073016256094],[0.009500227868557,-0.026887418702245,-0.10352867096663],[0.058536116033792,-0.0069193127565086,0.037580747157335]],[[-0.19113947451115,0.039096001535654,0.056585788726807],[-0.060059662908316,-0.031797658652067,-0.007630982901901],[-0.041083235293627,-0.025595657527447,0.1155559271574]],[[0.058028660714626,-0.071088254451752,0.047050397843122],[0.004039850551635,-0.053724233061075,0.051193777471781],[0.1275165528059,0.012289018370211,-0.0039749089628458]],[[0.013984809629619,-0.16773590445518,0.021880054846406],[-0.087010867893696,0.035742055624723,-0.10042583942413],[-0.13783469796181,0.073101527988911,0.10555897653103]],[[0.030670877546072,-0.11027692258358,0.09634181112051],[0.035630501806736,0.0021210610866547,0.074827298521996],[-0.017018554732203,0.00040026384522207,0.038945462554693]],[[0.048035208135843,-0.048333771526814,0.085081279277802],[-0.028420822694898,0.081188172101974,-0.093228481709957],[-0.039841461926699,0.11516073346138,-0.089356139302254]],[[-0.069046795368195,0.0021463609300554,-0.048180099576712],[0.0036135157570243,-0.052791990339756,0.056281358003616],[0.077363640069962,-0.011206484399736,-0.064824089407921]],[[-0.060780324041843,0.0023168600164354,-0.043341670185328],[-0.012584871612489,-0.013036653399467,-0.12974844872952],[-0.030789764598012,0.20398950576782,-0.015790933743119]],[[0.16397628188133,0.01274973526597,0.10227236896753],[0.01771386153996,0.005020041950047,-0.018108364194632],[-0.022023372352123,-0.011686900630593,-0.1313833296299]],[[0.04556642845273,0.12462116777897,-0.056268967688084],[0.0032187148462981,0.096908882260323,0.082087524235249],[0.021996272727847,0.12307328730822,0.10438225418329]],[[-0.074772819876671,-0.029257202520967,0.0084223058074713],[-0.040643755346537,0.094934210181236,-0.033897411078215],[0.080894440412521,-0.061245072633028,0.079348869621754]],[[0.11721659451723,-0.022959461435676,-0.088250495493412],[-0.011814954690635,0.085492223501205,0.049966983497143],[-0.010440631769598,-0.080219380557537,0.051692713052034]],[[-0.00051417638314888,0.064161099493504,0.052868977189064],[0.12058924138546,0.090746067464352,-0.012108485214412],[-0.045147906988859,-0.034614324569702,0.018639512360096]],[[0.11366163939238,0.044444665312767,-0.0072132428176701],[0.14219538867474,0.0013528321869671,0.14357240498066],[0.085739299654961,-0.012792618013918,0.032739594578743]],[[-0.11031980067492,-0.024785118177533,-0.062807865440845],[-0.043947711586952,-0.044286783784628,-0.092002175748348],[-0.01498569175601,-0.043709833174944,-0.10282455384731]],[[-0.14622564613819,0.052394635975361,-0.13302643597126],[-0.15883420407772,0.13637834787369,0.093877166509628],[-0.060441613197327,-0.066854596138,0.11691606044769]],[[0.078775264322758,-0.030726497992873,0.05313540995121],[0.18586675822735,-0.086124666035175,0.10482006520033],[0.0072786961682141,-0.067805901169777,-0.05755839496851]],[[-0.14078265428543,0.064533092081547,-0.0061258929781616],[-0.06734461337328,0.10084938257933,-0.0072357621975243],[0.01316025853157,0.015096541494131,-0.01977776363492]],[[-0.18529725074768,0.0098384525626898,-0.074129715561867],[0.083232186734676,-0.0096413260325789,0.020466743037105],[0.18552494049072,-0.042116221040487,-0.10025383532047]],[[-0.062928132712841,0.019859958440065,-0.076446332037449],[0.039129622280598,0.11196304112673,-0.2022145986557],[-0.056107360869646,0.10370414704084,-0.082987226545811]],[[-0.039662353694439,-0.061354663223028,0.044268690049648],[-0.016246495768428,0.016403611749411,-0.0090392362326384],[0.049794856458902,0.017036302015185,0.035535156726837]],[[-0.0076060397550464,-0.0016206409782171,-0.035030744969845],[0.022411650046706,-0.018274528905749,-0.03880837187171],[-0.025655299425125,0.026733312755823,0.14701656997204]],[[-0.047955606132746,-0.040696397423744,-0.043905213475227],[-0.21881097555161,-0.0017189603531733,0.022603077813983],[-0.13877937197685,0.026684407144785,0.083374835550785]],[[0.0012770993635058,0.024181643500924,0.039524212479591],[-0.045860935002565,-0.0032462668605149,0.0089755468070507],[-0.11673688143492,-0.029359214007854,0.053191088140011]],[[-0.00046048709191382,-0.019287638366222,0.023770119994879],[0.050403296947479,0.084848068654537,-0.069165915250778],[-0.021293982863426,0.11336189508438,0.071991741657257]],[[0.03111376427114,-0.097052022814751,-0.031753070652485],[0.0083135012537241,0.090991973876953,0.05084178596735],[-0.12306847423315,0.092775948345661,-0.041942231357098]],[[0.090455621480942,-0.036653988063335,0.21674066781998],[-0.06550358235836,0.042910773307085,0.11131048202515],[-0.10197729617357,-0.026791878044605,0.16107967495918]],[[-0.08167078346014,-0.017882777377963,-0.091167308390141],[-0.06877987831831,0.017024733126163,0.003412856021896],[0.00081868353299797,-0.089544229209423,0.029740983620286]],[[-0.11230275779963,-0.087049670517445,-0.033864978700876],[-0.17142228782177,-0.042759004980326,-0.10636757314205],[-0.085570268332958,0.076346844434738,-0.013340471312404]],[[0.050208315253258,0.023155514150858,0.057687312364578],[0.03636958450079,-0.037691365927458,-0.022276006639004],[-0.022028870880604,-0.021033557131886,-0.018592020496726]],[[-0.033087272197008,-0.019811872392893,0.050826858729124],[0.055091481655836,0.033550135791302,-0.027129601687193],[-0.0012978941667825,0.086906880140305,-0.014874953776598]],[[0.01096373423934,-0.077349424362183,0.042814917862415],[0.010143592022359,-0.0096468664705753,-0.038250163197517],[0.051947508007288,0.15193359553814,0.036868516355753]],[[0.090356320142746,0.15115228295326,0.081235535442829],[-0.030675675719976,0.089386716485023,0.072396166622639],[0.00061538186855614,-0.071422375738621,-0.0093386014923453]],[[0.059198286384344,0.0026795796584338,-0.056238435208797],[0.027545427903533,-0.048761364072561,0.07041472941637],[0.11322762072086,-0.032528661191463,-0.13114847242832]],[[-0.17364498972893,-0.068697229027748,0.010769658721983],[0.0038674650713801,0.13284476101398,-0.16058705747128],[0.051632892340422,0.093162909150124,-0.10597933828831]],[[-0.1176999360323,0.074451312422752,-0.0036882748827338],[-0.068772703409195,0.025269756093621,-0.0064300871454179],[-0.11742100864649,0.16840973496437,0.033356510102749]],[[-0.021883307024837,-0.054971642792225,-0.12196169048548],[-0.14947117865086,0.13952004909515,-0.063999943435192],[0.073617108166218,0.0030729060526937,-0.13968721032143]],[[0.094011716544628,-0.10920749604702,-0.056093476712704],[0.072960935533047,-0.09188649058342,0.026495862752199],[-0.057897556573153,-0.074711509048939,0.020505895838141]],[[0.12311600148678,-0.037220187485218,0.056140951812267],[0.094362743198872,0.067366555333138,0.0373022146523],[-0.09622960537672,-0.18925431370735,-0.030587213113904]],[[-0.17575424909592,-0.09541692584753,-0.021955519914627],[-0.11760252714157,-0.090248435735703,0.10174033790827],[0.021334683522582,-0.074788808822632,0.026713123545051]],[[-0.015667436644435,0.12277635931969,-0.046827655285597],[0.061645317822695,0.074912466108799,0.060330994427204],[-0.012796440161765,0.1031066775322,0.14889954030514]],[[-0.027688413858414,-0.043418042361736,-0.047554887831211],[0.0075557301752269,-0.053952358663082,-0.091412410140038],[0.17520178854465,-0.0096230804920197,0.087905615568161]],[[0.065872974693775,0.053249545395374,0.028811799362302],[0.019807238131762,0.035623289644718,0.12627427279949],[-0.012900865636766,0.15970847010612,-0.060109067708254]],[[0.073295660316944,0.060563359409571,0.054449636489153],[-0.083171412348747,0.018608473241329,0.013761232607067],[-0.01731463894248,-0.067219257354736,-0.0098157497122884]],[[-0.031784530729055,-0.018794637173414,-0.047198191285133],[0.046124085783958,0.11348067224026,-0.096352949738503],[0.080236457288265,-0.12451821565628,-0.0013307915069163]],[[-0.07758541405201,-0.07777002453804,-0.044845730066299],[0.16822890937328,0.035654041916132,-0.025722242891788],[0.083125270903111,0.16289022564888,-0.048013098537922]],[[0.11134788393974,0.18208307027817,0.018707463517785],[-0.039494313299656,0.014180637896061,0.079934984445572],[-0.045779626816511,-0.00080044899368659,0.044778179377317]],[[-0.11480437964201,-0.11473345756531,0.12529937922955],[-0.0187460873276,-0.071740552783012,0.074699006974697],[0.066961102187634,0.12355274707079,0.14974911510944]],[[0.12105608731508,0.089341700077057,0.028586396947503],[-0.097044378519058,0.060833934694529,-0.063530519604683],[-0.15139961242676,-0.10086890310049,-0.090496823191643]],[[0.19547505676746,0.013901967555285,-0.025186702609062],[-0.0041809547692537,0.033904168754816,0.015148393809795],[0.074242971837521,0.028224233537912,-0.13640229403973]],[[0.040921833366156,-0.0084559423848987,0.086218558251858],[0.039337262511253,-0.047554593533278,0.08284504711628],[0.020549107342958,-0.012465787120163,0.079820089042187]],[[-0.04784744977951,-0.048083607107401,-0.010728608816862],[-0.10455473512411,-0.0066161965951324,-0.015302078798413],[-0.13677063584328,0.040114816278219,0.014113913290203]],[[0.021954925730824,-0.06939497590065,-0.012422204948962],[-0.060834888368845,0.10508447885513,0.025332098826766],[0.03864774107933,0.04842584207654,-0.038593478500843]],[[0.091784507036209,-0.050048004835844,-0.037677258253098],[-0.15844522416592,0.1256919503212,0.012972486205399],[0.055346392095089,0.011317289434373,-0.060782548040152]],[[0.08993099629879,0.12849345803261,0.038002666085958],[-0.005764861125499,0.045497819781303,-0.049538712948561],[-0.021014897152781,-0.061208941042423,-0.12087653577328]],[[-0.082735359668732,-0.083547554910183,0.060938611626625],[-0.03972801566124,-0.11349292099476,0.00279959756881],[0.054487738758326,-0.12297123670578,0.056547746062279]],[[0.10401762276888,-0.067030012607574,0.09110613912344],[-0.043056838214397,-0.036168735474348,0.13366758823395],[0.052360504865646,-0.033547509461641,0.017264362424612]],[[0.020727904513478,-0.11781318485737,0.021344063803554],[0.096824780106544,0.052334144711494,0.070334166288376],[0.033553011715412,0.05542378872633,0.067865550518036]],[[0.15128721296787,-0.065882101655006,0.042305901646614],[0.024530965834856,0.044713404029608,-0.0031358660198748],[0.036957107484341,-0.033269107341766,0.061508517712355]],[[-0.054604694247246,0.070208445191383,0.045826844871044],[-0.0065428293310106,-0.015334754250944,-0.061807610094547],[-0.013249623589218,-0.050896733999252,0.029515581205487]]],[[[0.13615773618221,-0.078071691095829,-0.093236796557903],[0.055065754801035,-0.043711621314287,-0.015142484568059],[0.033535920083523,-0.029054081067443,0.022845206782222]],[[-0.069672286510468,0.0608897395432,-0.14238378405571],[-0.14416459202766,-0.042701385915279,-0.037011861801147],[-0.026108538731933,0.09587786346674,-0.0073137590661645]],[[0.016792468726635,0.038593530654907,0.018985683098435],[-0.06538911908865,-0.057659704238176,-0.079429976642132],[-0.018285617232323,-0.10086324810982,-0.11036224663258]],[[-0.1096251681447,0.07415895909071,-0.1646728515625],[-0.018777946010232,0.052426639944315,0.04239784181118],[0.044429112225771,0.074765644967556,-0.045416064560413]],[[0.0069360220804811,-0.10470802336931,-0.040956813842058],[-0.098104164004326,0.13632680475712,0.0034487131051719],[-0.0069173146039248,-0.040870785713196,-0.069461844861507]],[[-0.042869344353676,0.034596528857946,-0.059969495981932],[-0.0564592666924,-0.026381883770227,-0.046241793781519],[0.015755413100123,0.024948133155704,0.058213472366333]],[[-0.12666526436806,0.061877891421318,-0.093476988375187],[-0.016622824594378,-0.0042336070910096,-0.15933814644814],[-0.033617179840803,-0.055182926356792,-0.11367060989141]],[[0.10272794216871,0.018195634707808,0.056292161345482],[-0.1573686003685,-0.051827672868967,0.082368224859238],[0.006469486746937,-0.10904735326767,-0.21460992097855]],[[-0.031196422874928,-0.0079313358291984,0.021039320155978],[0.060963325202465,0.0025562758091837,0.018063459545374],[-0.020602038130164,0.032528288662434,0.058372430503368]],[[0.17874178290367,-0.036213282495737,-0.068650357425213],[0.12612201273441,-0.093751803040504,-0.056750658899546],[-0.034745793789625,-0.077327437698841,-0.081468872725964]],[[-0.14484393596649,0.010869325138628,0.12888564169407],[-0.032876681536436,0.092328861355782,-0.019004542380571],[-0.21781824529171,-0.12458602339029,-0.10314923524857]],[[-0.012008109129965,-0.059312388300896,0.017591940239072],[-0.031857993453741,-0.034565176814795,0.036346469074488],[0.012645917013288,0.10651079565287,0.063736021518707]],[[0.027792178094387,0.033604945987463,-0.0048995069228113],[-0.029030151665211,-0.057934135198593,-0.011539399623871],[-0.12014712393284,-0.043348889797926,-0.036187224090099]],[[-0.038457538932562,0.10110373795033,0.081006594002247],[0.024976553395391,-0.05005856603384,-0.062658622860909],[0.12743599712849,-0.0088751576840878,0.0055363541468978]],[[-0.016529176384211,0.013024704530835,-0.00055080716265365],[-0.050106208771467,-0.068433322012424,-0.039447881281376],[-0.026941170915961,-0.033471502363682,-0.033510103821754]],[[0.017863875254989,-0.013801724649966,-0.22167512774467],[0.052332412451506,-0.12453543394804,-0.12556622922421],[0.073581144213676,-0.03693226352334,0.076527744531631]],[[0.020874446257949,-0.017121868208051,0.029973616823554],[0.0076006310991943,0.10635498911142,0.0524697676301],[-0.12373197078705,0.061559457331896,-0.024218209087849]],[[0.10083528608084,-0.0092732543125749,-0.029961625114083],[-0.052631985396147,0.091129027307034,-0.028015883639455],[0.072988271713257,0.098252765834332,-0.094150371849537]],[[-0.10713982582092,-0.044617768377066,-0.064191207289696],[0.019965467974544,-0.045947279781103,-0.15562383830547],[0.00060947460588068,0.042036358267069,0.093312978744507]],[[0.081767551600933,-0.056762035936117,-0.081515647470951],[0.024349356070161,0.0090796016156673,-0.030900882557034],[0.054338607937098,-0.048733334988356,0.032173328101635]],[[0.024536669254303,-0.0078967930749059,-0.046108711510897],[0.019822617992759,0.023184832185507,-0.049290753901005],[0.12892094254494,-0.052038043737411,0.069857113063335]],[[0.030238039791584,0.039058987051249,-0.080326348543167],[-0.039304412901402,-0.011654592119157,0.010188438929617],[-0.042055476456881,-0.046698212623596,-0.01572304777801]],[[-0.020248409360647,-0.088724605739117,-0.080325216054916],[-0.012010010890663,-0.0012353090569377,-0.018485683947802],[0.03107313811779,-0.025789195671678,-0.040957435965538]],[[0.044527053833008,-0.092185489833355,-0.078082524240017],[-0.014023234136403,0.050547577440739,0.042644746601582],[-0.060309760272503,-0.042503342032433,-0.104407094419]],[[0.050170663744211,-0.10781235992908,0.13056436181068],[0.056231938302517,-0.048124808818102,0.050591681152582],[-0.05631747841835,0.084732130169868,-0.044672898948193]],[[0.044465348124504,0.0041772769764066,-0.044509205967188],[0.032973259687424,-0.019509458914399,-0.018464967608452],[0.08503482490778,-0.037803918123245,-0.016676878556609]],[[-0.070834830403328,0.07930688560009,-0.0036283119115978],[-0.0059510790742934,0.038574207574129,-0.057039432227612],[-0.017248054966331,-0.0080008208751678,-0.031848777085543]],[[-0.0087767066434026,-0.020346757024527,0.014919931069016],[-0.0052999895997345,-0.065324530005455,0.037951163947582],[0.063428416848183,0.10369689762592,-0.045619450509548]],[[-0.021776689216495,-0.038478780537844,0.03288459405303],[-0.030849842354655,-0.089246273040771,-0.02825371734798],[0.012181136757135,0.034160513430834,-0.030720690265298]],[[-0.0086785303428769,0.04107727855444,-0.027242984622717],[0.10979301482439,-0.042111486196518,-0.17650213837624],[0.16268573701382,0.078502431511879,0.0067946542985737]],[[-0.018088342621922,0.0096082044765353,0.068271264433861],[0.12462821602821,0.028676327317953,0.11811875551939],[0.074026472866535,-0.064102113246918,-0.23088556528091]],[[0.010237625800073,-0.061347879469395,-0.031279250979424],[-0.040084660053253,0.024134149774909,-0.049706008285284],[-0.087947264313698,-0.1035817489028,0.067983880639076]],[[0.022637778893113,-0.01349826157093,0.018612824380398],[0.11397073417902,-0.067615248262882,-0.0095232166349888],[0.03768352419138,0.043123196810484,0.0066495831124485]],[[-0.037577111274004,0.043822459876537,-0.17955705523491],[-0.060929786413908,0.00044636239181273,-0.050014782696962],[0.12596970796585,0.025456955656409,-0.014063121750951]],[[0.011004248633981,-0.098521992564201,0.11919886618853],[-0.036874253302813,-0.082109600305557,0.013583104126155],[0.042434640228748,-0.21337938308716,-0.11429451406002]],[[0.050671711564064,0.14978206157684,0.081578299403191],[0.036530502140522,0.035860229283571,-0.066463328897953],[0.1050658673048,-0.085267551243305,-0.039200466126204]],[[-0.065008856356144,0.029780825600028,-0.10027575492859],[0.014716872945428,-0.10186606645584,-0.0516770593822],[0.24043624103069,0.1251528263092,0.12471366673708]],[[0.10968065261841,0.063018426299095,0.032305814325809],[0.0081051765009761,0.035066548734903,-0.11109816282988],[-0.066338121891022,0.043909385800362,-0.024185348302126]],[[-0.084924817085266,-0.027962554246187,0.034616947174072],[-0.12818211317062,-0.085016995668411,-0.042974997311831],[0.0019065936794505,0.064223423600197,0.096040941774845]],[[0.21855184435844,-0.011182110756636,-0.037033669650555],[0.034188907593489,0.12159415334463,0.0057170414365828],[0.045583080500364,0.054820753633976,-0.046353876590729]],[[0.20280273258686,-0.072815664112568,-0.13770319521427],[0.20539480447769,0.1155679449439,0.02365442737937],[0.037996429949999,-0.047405712306499,-0.0041699111461639]],[[-0.0060991230420768,-0.046744339168072,-0.039582181721926],[-0.087356194853783,-0.0067346980795264,0.064038552343845],[-0.04951648786664,-0.04174717515707,-0.11191467195749]],[[0.075914993882179,-0.10820531100035,0.036800742149353],[-0.10259687155485,0.024965787306428,0.038746524602175],[-0.079661138355732,0.098860315978527,0.021798035129905]],[[0.032904893159866,0.0074587785638869,-0.13167083263397],[0.0071881203912199,-0.13382308185101,0.035145115107298],[0.21366463601589,0.05437071621418,-0.043583106249571]],[[0.03496266528964,-0.096812181174755,-0.04751992970705],[-0.041007280349731,0.036078847944736,-0.057228777557611],[0.024337125942111,0.024775315076113,-0.050244513899088]],[[-0.063498355448246,-0.10078021138906,0.10242978483438],[0.046700783073902,0.031810861080885,0.082291334867477],[0.10613711178303,-0.05567117407918,-0.044136930257082]],[[-0.013563136570156,0.0063642323948443,0.044473379850388],[-0.13657784461975,0.013749605044723,-0.11662200093269],[0.08156917989254,-0.0069364211522043,0.097983755171299]],[[0.06633897125721,-0.066237583756447,0.20802965760231],[0.01446842122823,-0.019480641931295,0.033001851290464],[-0.10036170482635,-0.094403967261314,0.044599074870348]],[[0.051205042749643,-0.11386802792549,0.015561698935926],[-0.055967673659325,-0.072501875460148,0.023153755813837],[0.029365407302976,-0.12348863482475,-0.047489792108536]],[[-0.009646094404161,-0.089190267026424,-0.061881523579359],[-0.018695965409279,0.019600443542004,0.03624726831913],[0.027252240106463,0.064942233264446,0.10072122514248]],[[-0.0879115909338,-0.038134723901749,0.011102201417089],[-0.037486013025045,0.020364573225379,0.051070358604193],[-0.0020567730534822,0.030197091400623,-0.068436503410339]],[[-0.026853920891881,-0.061015173792839,-0.069824367761612],[0.010387144982815,0.082389242947102,0.065933525562286],[0.02435801550746,0.021943796426058,-0.19843743741512]],[[0.086739145219326,0.11379715800285,-0.089966177940369],[-0.09081245213747,0.022864444181323,-0.085861712694168],[0.027022277936339,-0.042065344750881,-0.085711255669594]],[[-0.0064577772282064,-0.0024557486176491,-0.011335353367031],[-0.062808342278004,-0.024944087490439,-0.023846946656704],[0.037175741046667,-0.012554133310914,0.08703400939703]],[[-0.19443951547146,-0.040545757859945,-0.11710324883461],[0.098964877426624,0.093566358089447,0.14527532458305],[-0.11364860832691,-0.062808126211166,-0.13547758758068]],[[0.096065767109394,-0.093718633055687,-0.04445443674922],[-0.086459971964359,0.034742452204227,-0.074286945164204],[0.033185839653015,0.17523288726807,-0.070943124592304]],[[0.22251085937023,-0.12462730705738,0.057266097515821],[-0.18334881961346,-0.11741797626019,-0.029481502249837],[0.0012203067308292,0.10309680551291,-0.026343980804086]],[[0.060251649469137,-0.17250971496105,0.020282162353396],[0.11647132784128,0.013007115572691,0.081371620297432],[0.11998827755451,-0.040569361299276,0.042439796030521]],[[0.045948650687933,0.16063068807125,0.031008405610919],[0.033886302262545,0.038616854697466,0.13529747724533],[-0.079502299427986,0.068064197897911,0.17873269319534]],[[-0.032232832163572,-0.10671289265156,0.013347294181585],[-0.18017812073231,-0.06150571256876,-0.089228861033916],[-0.12498845905066,0.050773125141859,-0.01716198772192]],[[0.062230762094259,-0.11284230649471,0.050218135118484],[0.084984146058559,-0.063060931861401,0.033662844449282],[0.048489283770323,0.032934557646513,-0.11797971278429]],[[0.067113421857357,0.026459835469723,-0.01082768663764],[-0.00037869578227401,0.064170800149441,-0.057903602719307],[-0.10538712143898,-0.053543049842119,-0.1424201130867]],[[0.029246397316456,0.058728393167257,0.063676312565804],[-0.18353694677353,-0.15611007809639,-0.09458764642477],[-0.0077551105059683,0.10375900566578,-0.019543584436178]],[[-0.069715045392513,-0.093914709985256,-0.05203852802515],[-0.11902821809053,-0.035508498549461,0.014477419666946],[0.010290186852217,-0.10130555182695,0.024136438965797]]],[[[-0.034341681748629,-0.073821790516376,0.028331050649285],[-0.026018317788839,0.0057911612093449,0.043817553669214],[0.0087053691968322,0.015513750724494,0.039183009415865]],[[0.014214280992746,-0.035440444946289,0.00083517306484282],[0.03841095417738,-0.027643347159028,-0.0065472624264657],[0.0072776773013175,0.012334132567048,0.029071249067783]],[[-0.022556090727448,0.053038440644741,-0.038490250706673],[0.058022722601891,-0.025172026827931,-0.01128354575485],[-0.006238660775125,0.0089236507192254,-0.003557106712833]],[[0.026504511013627,0.00012771274487022,-0.0093111265450716],[-0.031810309737921,0.034402776509523,-0.0011090257903561],[-0.020436802878976,0.038313787430525,-0.014972240664065]],[[0.0097512155771255,0.03235736489296,-0.017974570393562],[-0.0060040834359825,0.042610336095095,0.086950466036797],[-0.085601903498173,-0.080371603369713,0.033692054450512]],[[0.027692891657352,0.017386624589562,0.0081703076139092],[-0.017134014517069,-0.028848277404904,-0.0055914279073477],[0.025854881852865,-0.013456648215652,0.0010748694185168]],[[-0.083273380994797,0.033942043781281,0.034151952713728],[-0.023878088220954,-0.050142038613558,0.033258553594351],[0.0081085851415992,0.021593455225229,-0.0012455965625122]],[[0.006527092307806,-0.0045581567101181,0.0036280227359384],[-0.051284063607454,0.041332576423883,0.026906674727798],[-0.033245295286179,0.013146482408047,0.00034490416874178]],[[-0.011881850659847,0.052787236869335,-0.01547693554312],[0.0027928021736443,-0.023354014381766,0.0163594763726],[-0.046136081218719,0.028990473598242,0.010999723337591]],[[-0.0049499571323395,-0.0099199255928397,-0.012756450101733],[-0.020305752754211,0.07014486938715,-0.0049303569830954],[-0.026496760547161,0.028777675703168,-0.009622304700315]],[[0.042947374284267,-0.046203441917896,-0.0027190127875656],[-0.014647440053523,0.0014105153968558,0.013521012850106],[-0.0035112956538796,0.037317529320717,0.0053660362027586]],[[0.011787731200457,-0.00094442476984113,-0.031660988926888],[-0.012937373481691,0.033714413642883,0.0048377211205661],[-0.012254165485501,0.014021880924702,-0.0043846596963704]],[[0.031752165406942,-0.038218721747398,0.00021294705220498],[-0.0003084599156864,0.024951461702585,0.023173248395324],[-0.014686836861074,-0.019817536696792,-0.008705198764801]],[[0.027418730780482,0.034659411758184,-0.021964535117149],[-0.064551159739494,0.037377115339041,0.0048732487484813],[-0.014445492997766,0.021398345008492,0.010592451319098]],[[-0.042725887149572,0.023534072563052,-0.038568086922169],[-0.058853428810835,-0.016455115750432,0.026049172505736],[-0.0091571630910039,0.037817414849997,0.042847279459238]],[[0.019313404336572,-0.0026685195043683,-0.019646940752864],[0.010984561406076,0.021220944821835,0.0035888259299099],[0.0088569261133671,-0.024620654061437,-0.011810571886599]],[[0.043686207383871,-0.066542945802212,0.022401951253414],[0.04003132134676,0.0063252239488065,-0.01126045640558],[0.013737947680056,0.0018074274994433,-0.0088035687804222]],[[-0.02806525491178,0.014728067442775,-0.04737813025713],[-0.036877367645502,0.061603602021933,0.01875283755362],[0.0044899941422045,0.023437451571226,-0.0038482847157866]],[[0.0099656395614147,-0.015985248610377,0.04372575879097],[-0.01222343929112,0.0075412346050143,-0.023724006488919],[-0.025930214673281,-0.013782287947834,0.014371565543115]],[[0.0082284808158875,0.00065636931685731,-0.020168548449874],[-0.038352534174919,0.013312519527972,-0.01662596873939],[0.022900763899088,-0.011613724753261,0.010801632888615]],[[0.050257481634617,-0.022016637027264,2.3068681912264e-05],[-0.050477627664804,0.060181576758623,-0.031108824536204],[-0.024225382134318,0.033835977315903,-0.0093519892543554]],[[-0.094290725886822,-0.11477864533663,-0.040287498384714],[-0.075927048921585,-0.17176525294781,-0.095790468156338],[-0.05843772366643,-0.096249736845493,-0.014150330796838]],[[-0.004183548502624,0.06847407668829,-0.033635504543781],[0.0090305497869849,0.012850116938353,0.035307683050632],[-0.05504958704114,0.027645438909531,-0.050265304744244]],[[-0.003492143470794,-0.039823096245527,0.019470499828458],[0.010067286901176,0.048359028995037,-0.019437588751316],[-0.0054195658303797,-0.00025760507560335,-0.039416871964931]],[[-0.063434734940529,-0.040385443717241,-0.063520327210426],[0.034943524748087,-0.02626165561378,0.080385848879814],[0.034439563751221,0.0050954865291715,0.023098058998585]],[[0.053608685731888,0.11177346110344,0.040582105517387],[0.082052879035473,0.1063516587019,0.084499724209309],[0.051546595990658,0.068279214203358,0.015432859770954]],[[-0.0035018513444811,0.062124069780111,-0.0052863643504679],[0.04610027000308,-0.01203362736851,-0.032004032284021],[-0.063297756016254,-0.017167672514915,-0.0079933181405067]],[[0.02546913176775,0.011475528590381,0.015192840248346],[-0.010001515038311,-0.0035198424011469,-0.032877694815397],[-0.0020075105130672,0.020935971289873,-0.016958644613624]],[[-0.012840177863836,0.0058705266565084,-0.010626317933202],[0.012186607345939,-0.0013755070976913,0.023649111390114],[0.0092320330440998,-0.04263674467802,0.034804824739695]],[[-0.0016415368299931,0.019519910216331,-0.0066957934759557],[0.019875915721059,-0.0020190498325974,0.01043358258903],[0.008469408378005,0.01137635204941,-0.028139628469944]],[[0.0083775203675032,-0.0079487431794405,-0.024747870862484],[-0.0087622338905931,0.0095551302656531,0.020550528541207],[0.0032338828314096,0.031310740858316,-0.012766399420798]],[[0.031353939324617,0.014814306981862,-0.022936003282666],[0.010248551145196,0.007844059728086,-0.061936091631651],[-0.0013376261340454,-0.0062860720790923,0.027966523543]],[[0.012065445072949,0.026377556845546,-0.019437216222286],[0.035604491829872,-0.05486061424017,0.0016337096458301],[0.0045808521099389,-0.0059712803922594,-0.016000827774405]],[[0.057153526693583,0.030592758208513,-0.015175545588136],[0.073669537901878,-0.022222630679607,-0.059513121843338],[0.015714202076197,-0.050815019756556,0.004283232614398]],[[-0.0064462260343134,0.0049593602307141,-0.030380690470338],[-0.016276724636555,0.059053856879473,0.018044473603368],[-0.025806974619627,-0.015527928248048,0.0058214524760842]],[[0.010202366858721,-0.028213884681463,0.015232720412314],[0.049682922661304,-0.0062221800908446,0.011170694604516],[-0.046483539044857,0.0034136667381972,0.0027286766562611]],[[0.024708069860935,-0.00056062574731186,-0.04352393746376],[0.014490759931505,0.030606249347329,-0.062696568667889],[0.029601268470287,0.0020156735554338,0.0032655668910593]],[[-0.02573399618268,0.028906509280205,-0.029605180025101],[0.0021773763000965,0.032228838652372,0.0043840734288096],[-0.011719211004674,-0.0078769009560347,0.0075578060932457]],[[-0.01647724583745,-0.019583821296692,0.059251550585032],[-0.025341974571347,-0.017244240269065,-0.019193174317479],[0.035142730921507,-0.011592758819461,0.015301343053579]],[[0.011544360779226,0.015801981091499,-0.019343506544828],[-0.0069294711574912,0.013671177439392,-0.042597249150276],[-0.0091464342549443,0.0019168180879205,0.020118752494454]],[[0.041672717779875,-0.0031146500259638,-0.010567172430456],[0.0067915474064648,-0.068423755466938,0.0097923409193754],[-0.005986338481307,-0.0032694700639695,-0.0035834673326463]],[[-0.023345885798335,-0.0085334405303001,0.0045673437416553],[0.012503551319242,0.033571131527424,-0.029269386082888],[0.036826681345701,-0.033513907343149,-0.0058175241574645]],[[0.017640735954046,0.04667717218399,-0.0040491581894457],[-0.023977180942893,-0.062547229230404,0.013090632855892],[-0.01920241676271,0.02981173992157,0.006070020608604]],[[-0.0032348656095564,0.0070945885963738,0.018964191898704],[-0.040644280612469,-0.010939564555883,-0.0086028957739472],[0.0003608513798099,0.0037566185928881,-0.0065945591777563]],[[-0.031214030459523,0.0029425513930619,-0.00032239514985122],[-0.010691868141294,0.010153082199395,-0.0010289355413988],[0.012949543073773,0.059553164988756,-0.00085327291162685]],[[0.031868446618319,-0.066135130822659,0.018525140359998],[-0.0038371286354959,-0.032358266413212,0.028277780860662],[-0.059623543173075,-0.026982557028532,-0.027354432269931]],[[0.0077040391042829,-0.051600724458694,0.028383005410433],[0.035776276141405,-0.017798390239477,-0.0074910568073392],[0.021750057116151,-0.015031141228974,-0.0041793589480221]],[[-0.01165163423866,0.0059743728488684,0.007710084784776],[0.015071215108037,0.0050964034162462,-0.049463707953691],[-0.00089712266344577,0.016262471675873,0.028568660840392]],[[-0.050908364355564,0.040437515825033,-0.018298331648111],[0.0062424265779555,0.052349787205458,-0.0074478178285062],[0.066995367407799,-0.041772313416004,-0.03970593214035]],[[0.023436861112714,0.012200424447656,-0.005165830720216],[-0.00025043849018402,0.013443103991449,0.019296491518617],[0.0011063762940466,-0.018944837152958,-0.026073258370161]],[[-0.021122885867953,0.012702125124633,0.041345592588186],[-0.05412457510829,0.044504411518574,-0.017859844490886],[-0.0032215772662312,0.019232643768191,-0.011293238028884]],[[0.01496375259012,-0.055944513529539,-0.0099913962185383],[-0.0020794039592147,0.026925291866064,0.029705476015806],[0.0027691700961441,0.01741979829967,-0.028657419607043]],[[0.031141638755798,0.010968863032758,0.0065432246774435],[-0.055034004151821,0.015892285853624,-0.011012470349669],[0.0028022166807204,0.017912056297064,-0.028351183980703]],[[0.013247519731522,-0.01599227078259,0.0055715944617987],[0.011142235249281,-0.0041046212427318,-0.016653951257467],[-0.0050303875468671,-0.016943460330367,0.024898229166865]],[[-0.037085756659508,0.0055222702212632,-0.021630473434925],[-0.004113597329706,0.03793865442276,0.081086449325085],[-0.0035405345261097,-0.038932722061872,-0.012731193564832]],[[0.014940324239433,-0.060536209493876,0.025925440713763],[0.0079852240160108,0.05904358625412,-0.031158244237304],[0.012854267843068,-0.030365427955985,0.015403814613819]],[[-0.023215975612402,0.034544631838799,0.0065312841907144],[-0.034264162182808,-0.017365472391248,-0.0059125791303813],[0.0277926530689,-0.013910342939198,0.0073856511153281]],[[0.032523054629564,0.027546318247914,-0.0034978878684342],[0.037455599755049,0.063817128539085,-0.011111504398286],[-0.014152776449919,-0.047482296824455,-0.086743719875813]],[[-0.10257920622826,-0.086266241967678,-0.12872411310673],[-0.11694688349962,-0.14957070350647,-0.10653261840343],[-0.051960196346045,-0.070479482412338,-0.080125629901886]],[[0.029945092275739,0.015714034438133,-0.015413708984852],[-0.04734119027853,-0.037137389183044,-0.035081300884485],[0.03517297282815,0.0065809763036668,0.018472481518984]],[[0.029436888173223,-0.053226444870234,-0.0064718252979219],[0.025899540632963,-0.002294868696481,0.025610532611609],[-0.0064948513172567,-0.016428409144282,-0.00093526171986014]],[[-0.00021410692716017,0.0041833207942545,0.018185444176197],[-0.037502609193325,-0.016015969216824,-0.038842748850584],[0.074195712804794,0.033784624189138,0.0034755866508931]],[[-0.031379252672195,0.012406433001161,-0.017053538933396],[-0.027918139472604,0.031349081546068,0.025636434555054],[0.050558246672153,-0.064787477254868,0.0054421331733465]],[[-0.016229119151831,0.03711274266243,-0.011167014949024],[0.016959926113486,-0.023339005187154,0.023069653660059],[-0.027838269248605,-0.0050000371411443,0.035262729972601]]],[[[-0.016765285283327,-0.050633061677217,-0.20339255034924],[0.075228117406368,0.1014449596405,-0.11211927980185],[0.10138212889433,-0.093084074556828,-0.088611572980881]],[[0.063899956643581,0.043007656931877,-0.18137617409229],[-0.031723897904158,-0.056651666760445,0.0097428802400827],[0.031495943665504,0.049849927425385,-0.017061375081539]],[[-0.001193025149405,-0.09103287756443,-0.10556951910257],[0.020103245973587,-0.13254392147064,-0.10290270298719],[-0.026695173233747,-0.066710278391838,-0.029536442831159]],[[-0.18850515782833,-0.015780530869961,-0.10013373941183],[0.088715210556984,-0.038198683410883,-0.075442060828209],[-0.019926406443119,0.026388969272375,0.14402160048485]],[[0.018500795587897,0.0049256412312388,-0.028539802879095],[0.11876206099987,0.10854637622833,0.1292147487402],[0.11895768344402,-0.029275150969625,-0.02591510117054]],[[-0.019847624003887,-0.10779508203268,-0.20894269645214],[0.039569351822138,0.077027924358845,0.038034576922655],[0.016689617186785,-0.08729775249958,-0.26649913191795]],[[-0.011127663776278,-0.16481544077396,-0.13068343698978],[0.10092776268721,-0.14513576030731,-0.16935247182846],[0.051417928189039,0.0048966677859426,0.12279705703259]],[[0.12194756418467,-0.11351220309734,-0.12246814370155],[0.19120518863201,0.11876129359007,-0.16407233476639],[0.050508633255959,-0.075492464005947,-0.050164848566055]],[[-0.0052812085486948,0.034982144832611,-0.012022093869746],[0.0019272678764537,-0.078026376664639,0.07803089171648],[-0.075616285204887,-0.051171645522118,0.029343709349632]],[[0.05331851541996,-0.12708626687527,-0.064569398760796],[0.031844343990088,0.00096739601576701,-0.060188613831997],[0.032534513622522,-0.07709626108408,-0.27045351266861]],[[0.039918851107359,-0.12241621315479,-0.030311135575175],[0.059923980385065,-0.033437229692936,-0.047223687171936],[0.043255139142275,0.042009230703115,-0.096408382058144]],[[-0.018328215926886,0.0062530185095966,-0.093410305678844],[0.015888176858425,0.093554586172104,-0.042422778904438],[-0.069514259696007,-0.075920984148979,-0.06545440107584]],[[0.13853320479393,0.033409353345633,-0.025376841425896],[0.032048307359219,-0.027055783197284,0.04900098964572],[0.14777757227421,-0.014373289421201,-0.014761948026717]],[[0.034564290195704,0.025272162631154,0.023534862324595],[-0.085498563945293,0.027816673740745,0.062705665826797],[0.038065228611231,-0.063756018877029,-0.028790075331926]],[[-0.13168653845787,-0.017002886161208,-0.11218564212322],[-0.093667097389698,0.095668084919453,0.0070709567517042],[-0.071666054427624,0.019877556711435,0.047440439462662]],[[0.12175115197897,-0.081673815846443,-0.027267640456557],[0.053222835063934,0.063681535422802,0.079155802726746],[-0.069948695600033,-0.070446252822876,-0.38696599006653]],[[0.0073097636923194,-0.1171460673213,-0.15784092247486],[-0.049103483557701,0.019883861765265,-0.16326420009136],[0.092776507139206,0.022180028259754,-0.14674749970436]],[[-0.063858285546303,-0.0083255590870976,0.050854567438364],[0.056453224271536,-0.03912403061986,-0.043396934866905],[0.13826882839203,0.043741300702095,-0.26029694080353]],[[0.0022982615046203,0.031728245317936,0.13759125769138],[-0.075349509716034,0.018885929137468,0.02636681869626],[-0.072448708117008,-0.048453822731972,0.14258359372616]],[[-0.020228322595358,0.014405066147447,0.05208421126008],[-0.060267474502325,-0.10512406378984,-0.2200228869915],[0.0023564831353724,0.065082848072052,-0.043847113847733]],[[0.043750803917646,-0.067764148116112,-0.19221550226212],[0.044896461069584,-0.071994997560978,-0.28262534737587],[0.043803486973047,0.0078815063461661,-0.10873620957136]],[[0.013107841834426,-0.013851324096322,-0.083297111093998],[-0.028452007099986,0.042852055281401,-0.070056192576885],[0.049702718853951,-0.001253048190847,-0.094809554517269]],[[-0.10951927304268,-0.070189021527767,0.048876281827688],[0.03515699505806,0.060782801359892,0.064969204366207],[-0.083572573959827,-0.034932464361191,-0.22737067937851]],[[0.15432851016521,0.13645656406879,0.15471068024635],[-0.039176125079393,-0.052291445434093,0.0063135391101241],[0.17915464937687,-0.046377338469028,0.12774333357811]],[[0.045503314584494,0.19848485291004,0.15080636739731],[-0.1151081174612,0.11665752530098,0.12180393189192],[-0.017742987722158,0.050423923879862,0.010340637527406]],[[0.0019952584989369,-0.0049094217829406,0.063723310828209],[-0.11426931619644,-0.028786631301045,-0.036700531840324],[0.010850510559976,0.015487067401409,0.03866969794035]],[[0.13920487463474,0.0095561156049371,-0.084879331290722],[-0.02817684225738,-0.060187887400389,-0.11680656671524],[0.049596641212702,0.042202431708574,-0.031389568001032]],[[0.22113743424416,0.018110405653715,0.055345609784126],[0.029889153316617,-0.080338299274445,-0.02713855355978],[-0.043034635484219,0.018816445022821,0.020682541653514]],[[-0.011141519062221,0.0051257442682981,-0.039586860686541],[-0.093860730528831,-0.15500570833683,0.0006441738223657],[0.095699772238731,0.019175618886948,0.033551465719938]],[[0.024533653631806,0.02540915645659,-0.13260868191719],[0.0028365144971758,-0.11382057517767,-0.021341159939766],[0.019121441990137,0.00068450777325779,0.12280107289553]],[[0.14285613596439,0.044966902583838,0.035733036696911],[0.00046496684080921,0.06720807403326,0.046825245022774],[-0.07435979694128,-0.031622707843781,0.29280266165733]],[[-0.066885873675346,-0.039621725678444,-0.20722541213036],[0.067563734948635,0.056509647518396,0.13849484920502],[0.024507656693459,-0.035570230334997,0.15299910306931]],[[-0.095713458955288,-0.066583357751369,0.0093060843646526],[-0.20060738921165,-0.13694909214973,0.0061109671369195],[0.10403797775507,0.039528850466013,-0.071238495409489]],[[0.025443939492106,-0.039850976318121,-0.10009579360485],[-0.16697098314762,-0.092044472694397,-0.15047967433929],[0.056469868868589,0.1496876180172,0.011307537555695]],[[-0.06608721613884,-0.014494678936899,-0.11830969154835],[-0.022851610556245,-0.055619195103645,-0.010158283635974],[-0.016993910074234,0.0025108375120908,-0.1231978610158]],[[-0.044338159263134,-0.0017134746303782,-0.011615825816989],[0.17626374959946,0.038152083754539,0.043302450329065],[0.012534505687654,-0.054623510688543,-0.10611538589001]],[[-0.15626084804535,-0.092545062303543,-0.048328705132008],[0.06872932612896,0.054775681346655,0.010132858529687],[0.044127725064754,-0.045840352773666,0.057625651359558]],[[0.14394065737724,-0.06374104321003,-0.21438947319984],[0.044550783932209,-0.11641973257065,-0.067343078553677],[0.13254578411579,-0.049547355622053,-0.031820524483919]],[[-0.1288253813982,-0.086984910070896,-0.036460176110268],[0.040778208523989,0.025927022099495,-0.010975344106555],[-0.064488589763641,-0.015151151455939,-0.039368502795696]],[[0.13673800230026,-0.0068982383236289,0.05858151987195],[0.043828587979078,-0.010918610729277,0.031818211078644],[0.046274818480015,0.016384854912758,-0.20965269207954]],[[0.082844607532024,-0.085475206375122,-0.14326243102551],[-0.027894986793399,-0.11154233664274,-0.23441201448441],[0.017225513234735,-0.020881434902549,0.10578478127718]],[[0.015010775066912,-0.081211268901825,-0.13057580590248],[0.073028668761253,0.079961895942688,-0.033289164304733],[0.023981232196093,-0.013926820829511,-0.0085330680012703]],[[-0.0099431304261088,0.034525208175182,-0.034798488020897],[0.092569686472416,0.092148765921593,0.027535120025277],[-0.0055825617164373,-0.12369552999735,-0.00061249837744981]],[[0.072728402912617,0.074606746435165,0.016058780252934],[0.046500395983458,0.031356245279312,-0.14826549589634],[0.0088293049484491,-0.019316371530294,0.1070663407445]],[[-0.047501433640718,0.10425435751677,0.055122662335634],[-0.16898690164089,-0.027537481859326,0.083618387579918],[-0.085498094558716,-0.09708696603775,0.057959258556366]],[[0.14588230848312,0.071452751755714,0.10510700941086],[-0.16840921342373,0.024160699918866,-0.0911018922925],[-0.040726508945227,0.14848679304123,0.091813750565052]],[[0.040043231099844,-0.00028146721888334,-0.12544889748096],[-0.0082536097615957,-0.0069607887417078,-0.1082790568471],[0.14175310730934,-0.019625147804618,-0.12735266983509]],[[0.031385093927383,-0.018135659396648,0.054996363818645],[-0.074536144733429,-0.024901043623686,0.037550233304501],[-0.056789189577103,-0.02041601203382,-0.021465299651027]],[[0.0050052413716912,0.014595865271986,-0.007020459510386],[-0.13322611153126,-0.11718913167715,-0.020151788368821],[0.0054887514561415,-0.01516829803586,-0.019445603713393]],[[-0.057957265526056,-0.10522119700909,0.078351646661758],[0.031886968761683,-0.094863221049309,0.11914598941803],[0.022956848144531,0.14011326432228,0.032218903303146]],[[-0.063979052007198,-0.15399163961411,0.063429653644562],[0.062859080731869,0.0076708351261914,-0.0089739179238677],[0.025710482150316,-0.10223644226789,-0.056084528565407]],[[-0.034990426152945,-0.10829623043537,-0.21204015612602],[-0.021477727219462,-0.0044165076687932,-0.023046039044857],[0.064121060073376,-0.0023842996452004,-0.21408487856388]],[[-0.050316289067268,0.084842093288898,-0.10643307119608],[-0.0047142351977527,-0.068439856171608,-0.11609813570976],[0.0010471545392647,-0.000219535024371,0.12057109922171]],[[-0.015020125545561,-0.0043922569602728,-0.10291889309883],[0.044766865670681,-0.081953018903732,0.12684251368046],[-0.081866912543774,-0.11718518286943,0.006283116992563]],[[-0.019267089664936,0.0060386559925973,0.064560107886791],[0.0021884005982429,-0.10711767524481,-0.079542264342308],[0.08074589073658,0.068519502878189,-0.090348303318024]],[[-0.083152569830418,-0.061153795570135,-0.017119592055678],[0.18339969217777,0.042073257267475,0.075003042817116],[-0.15546084940434,-0.14569967985153,-0.1687121540308]],[[0.14928835630417,-0.025102313607931,-0.048804182559252],[0.072939932346344,0.0092972088605165,-0.024983529001474],[-0.041988957673311,-0.04741807281971,-0.046397939324379]],[[0.092427030205727,-0.026925606653094,-0.029886083677411],[0.085291482508183,-0.095634274184704,-0.30120834708214],[0.073286212980747,0.0075260829180479,0.052666362375021]],[[0.028555672615767,0.17703978717327,0.028233939781785],[0.072409756481647,0.12002237141132,0.059595696628094],[-0.068692602217197,0.0079412963241339,-0.0024746309500188]],[[-0.11507828533649,-0.078020378947258,-0.19866536557674],[0.054683189839125,-0.028554402291775,-0.073676884174347],[-0.12588430941105,-0.033037234097719,0.08840074390173]],[[0.0029479062650353,0.0038539171218872,0.049360003322363],[-0.095902480185032,-0.022879166528583,-0.22320465743542],[-0.012235236354172,0.083670996129513,-0.011990686878562]],[[0.13337430357933,0.066432856023312,0.059933163225651],[-0.23353868722916,-0.13809213042259,0.055662166327238],[-0.14932142198086,0.031288124620914,-0.043083589524031]],[[0.066146343946457,0.0042820819653571,-0.068435825407505],[-0.058944370597601,-0.076174534857273,0.043849602341652],[0.12548331916332,0.012556190602481,0.020673830062151]],[[-0.002013003686443,0.021260293200612,-0.049417424947023],[0.023921262472868,0.010463323444128,-0.039746548980474],[0.13079917430878,-0.049896560609341,-0.02052796445787]]],[[[0.075624831020832,-0.0045581343583763,0.02993948571384],[-0.039364203810692,0.037781525403261,0.043476194143295],[0.04907974973321,-0.06023471057415,-0.010056960396469]],[[-0.072539240121841,-0.094509728252888,0.082717351615429],[-0.13184595108032,0.043750066310167,0.04825472459197],[0.031848546117544,0.022492134943604,-0.070852003991604]],[[-0.061887629330158,-0.045250032097101,-0.048920005559921],[-0.13548202812672,-0.036462917923927,0.1039714962244],[-0.03096928820014,0.026635561138391,-0.007990044541657]],[[0.0031963940709829,0.091881550848484,0.099959947168827],[0.0076793232001364,-0.029126111418009,-0.031863413751125],[-0.14015577733517,-0.10344775766134,0.10325004160404]],[[-0.049040801823139,-0.0628846809268,-0.071200489997864],[0.0058379960246384,-0.050882302224636,0.13918666541576],[0.14640013873577,0.073692873120308,0.0024646399542689]],[[0.11891804635525,0.10726328194141,0.045495133846998],[-0.045487333089113,0.026360219344497,0.055607404559851],[-0.012786510400474,0.0054539847187698,-0.10009615123272]],[[-0.12503489851952,0.029684031382203,0.021755781024694],[-0.062841705977917,0.051687691360712,-0.034142032265663],[0.0067930496297777,0.04442248493433,0.10445787757635]],[[-0.11264234036207,-0.016323085874319,0.036545012146235],[0.0056082317605615,0.047700166702271,0.076336860656738],[0.063534870743752,-0.076452776789665,0.047440823167562]],[[-0.022744335234165,-0.12213180214167,0.037940066307783],[0.051901124417782,0.058734145015478,-0.13121558725834],[0.076733283698559,0.076688043773174,-0.010823773220181]],[[0.026326859369874,-0.20179405808449,0.062826856970787],[-0.081759087741375,-0.03673443198204,0.10492806881666],[0.14480611681938,-0.001738544087857,-0.071876019239426]],[[0.05585616081953,0.036980099976063,0.12763980031013],[0.0231873113662,0.071951702237129,-0.061418302357197],[-0.099206045269966,-0.13490062952042,-0.05531121045351]],[[-0.017659610137343,0.032639786601067,-0.066139921545982],[-5.6286669860128e-05,-0.054681207984686,-0.069856755435467],[0.089062511920929,0.065613687038422,-0.079383999109268]],[[0.11445359885693,0.047020141035318,-0.039375748485327],[-0.02568974532187,0.026281777769327,-0.090832218527794],[-0.057922966778278,0.049603011459112,0.023142851889133]],[[0.11490867286921,-0.08946581184864,-0.077282577753067],[0.10748869180679,0.077685974538326,0.064246736466885],[0.0072791525162756,0.10404624789953,-0.038642968982458]],[[-0.061030339449644,-0.017979783937335,0.049342505633831],[-0.01199562009424,-0.15390554070473,-0.015402814373374],[-0.091249093413353,0.017039084807038,-0.031356077641249]],[[-0.0084902495145798,0.042762584984303,-0.19842156767845],[-0.0077880527824163,0.059273492544889,0.087842114269733],[0.043209388852119,0.0065533518791199,0.11759258806705]],[[-0.068720869719982,-0.1622602045536,-0.041888281702995],[-0.032434746623039,-0.0091182868927717,0.028623329475522],[0.015636535361409,0.034779958426952,-0.0035438959021121]],[[-0.025768874213099,0.083642445504665,0.055418714880943],[0.034238684922457,0.14397126436234,-0.004126172978431],[0.011678389273584,0.060629487037659,0.07669323682785]],[[0.056506011635065,0.1083327382803,0.065943919122219],[-0.032414272427559,0.11240069568157,-0.00455566868186],[-0.060286104679108,0.019305130466819,-0.042817834764719]],[[0.022803416475654,0.030718682333827,-0.027751633897424],[0.026520650833845,0.052695699036121,-0.056282546371222],[-0.040265694260597,0.036852207034826,-0.092633157968521]],[[-0.0027565089985728,0.14591373503208,0.10415171831846],[0.038406349718571,0.07120793312788,0.047740165144205],[-0.075288832187653,-0.1743600666523,0.13106873631477]],[[-0.028152748942375,0.030109949409962,-0.058574911206961],[0.0014453311450779,-0.12407729029655,-0.091207906603813],[0.035211216658354,0.076438918709755,0.014584795571864]],[[-0.0026163321454078,-0.086148411035538,-0.22782838344574],[-0.016711631789804,-0.14057433605194,-0.059840966016054],[-0.077269680798054,-0.040919277817011,0.037606462836266]],[[0.19344246387482,0.042200163006783,-0.066374711692333],[0.10887026041746,-0.026025597006083,-0.10032596439123],[0.17348285019398,-0.11100022494793,0.078653365373611]],[[-0.010762176476419,0.070473402738571,-0.018770832568407],[0.077911980450153,0.10470438748598,0.02076300419867],[0.0028700132388622,0.16046631336212,0.10121817886829]],[[-0.029136188328266,0.0014923301059753,0.071047559380531],[-0.024451332166791,0.0095227211713791,0.084047563374043],[-0.043909054249525,0.029707003384829,-0.040914308279753]],[[-0.20085038244724,0.042940687388182,-0.0009784692665562],[-0.027245158329606,0.1014284864068,0.074651315808296],[-0.12113091349602,0.13245902955532,0.041588358581066]],[[-0.044199138879776,-0.078413680195808,0.017844047397375],[-0.019494011998177,-0.028334802016616,-0.013255928643048],[0.050086338073015,-0.25427517294884,-0.13975758850574]],[[-0.010109758935869,0.13564147055149,-0.056104868650436],[0.032667938619852,-0.026406459510326,-0.022450910881162],[-0.0062494706362486,0.0011253021657467,0.058825120329857]],[[0.047266822308302,0.020738434046507,-0.013515037484467],[-0.13683649897575,0.036774400621653,-0.10988415777683],[-0.10827399045229,-0.026848904788494,-0.079318463802338]],[[0.0019440153846517,-0.1114067658782,0.065906666219234],[0.060900583863258,0.013785067014396,0.06898670643568],[0.022698123008013,0.11670278757811,0.05863668769598]],[[-0.13621790707111,-0.14768056571484,0.0032942320685834],[-0.047081667929888,0.065511181950569,-0.022351209074259],[0.068953759968281,0.13027560710907,0.0053568300791085]],[[0.020297875627875,0.13002307713032,0.04821715131402],[-0.059175487607718,-0.072709143161774,-0.01345401071012],[-0.034820690751076,-0.029359189793468,0.10511273890734]],[[-0.078625813126564,0.0074473978020251,0.047168366611004],[-0.083618499338627,-0.048299837857485,0.05568827688694],[-0.069057360291481,-0.042489383369684,-0.077883332967758]],[[0.13033068180084,0.033479209989309,-0.061070501804352],[0.092007339000702,0.06342139095068,-0.096169985830784],[-0.08799009770155,-0.13479715585709,0.041527040302753]],[[-0.0039174235425889,0.023931967094541,-0.019691186025739],[-0.0040638251230121,0.13644756376743,0.043934401124716],[0.04951373487711,-0.042827505618334,0.13993510603905]],[[0.12468615174294,0.022945523262024,0.11673982441425],[-0.11894857883453,-0.0099689932540059,-0.020386524498463],[0.05291598290205,0.010822421871126,0.040673341602087]],[[0.0099803861230612,-0.016506781801581,0.027799915522337],[0.062922723591328,-0.073347479104996,-0.063291184604168],[-0.049327954649925,0.079660043120384,-0.044886197894812]],[[-0.017523072659969,-0.0029961892869323,-0.10247615724802],[-0.099020697176456,-0.062079757452011,-0.046716190874577],[0.04953196644783,-0.014830929227173,-0.13280288875103]],[[-0.068710878491402,0.058145333081484,-0.06653843075037],[0.054886821657419,0.086521111428738,-0.076120987534523],[0.011817896738648,0.014515577815473,-0.14170816540718]],[[0.1061687618494,0.091207757592201,-0.075142703950405],[0.088950984179974,-0.024351891130209,-0.16540306806564],[-0.15255244076252,-0.22404853999615,-0.16728246212006]],[[0.058785047382116,-0.12923444807529,-0.10239809751511],[-0.039253164082766,-0.082533106207848,-0.039188377559185],[0.045758735388517,0.12358360737562,0.097547180950642]],[[-0.01224619243294,0.10066556185484,-0.027633760124445],[0.099285021424294,0.030427189543843,-0.065257385373116],[-0.10520397126675,-0.051620207726955,0.0071909036487341]],[[0.0086396317929029,-0.047631364315748,0.029569383710623],[0.073776371777058,-0.060185451060534,0.03004283644259],[0.16272047162056,0.035779755562544,-0.015929315239191]],[[0.058095060288906,-0.010564866475761,0.046761214733124],[0.019835222512484,0.12727449834347,-0.10241689532995],[0.051110584288836,0.011026008985937,0.0073254518210888]],[[0.0048637478612363,-0.001182796433568,-0.089366562664509],[-0.092609733343124,0.066158466041088,-0.12396150827408],[-0.020789258182049,0.023053335025907,0.037943873554468]],[[-0.01125755906105,-0.069746270775795,-0.10499338805676],[0.0075018387287855,-0.056665122509003,0.014993119984865],[-0.047528322786093,-0.056171473115683,-0.029748726636171]],[[-0.072397321462631,0.093358069658279,-0.0005333325243555],[-0.15892265737057,0.036732442677021,0.038688134402037],[0.015571505762637,-0.043037120252848,-0.0036069792695343]],[[-0.0051535619422793,0.011540667153895,-0.08350133150816],[0.14246991276741,0.067540675401688,-0.033166121691465],[-0.12540639936924,-0.016117338091135,-0.14911685883999]],[[-0.049581620842218,0.013730449602008,-0.14189566671848],[0.075035415589809,-0.17210647463799,-0.21155323088169],[-0.049225110560656,0.070941269397736,0.060591973364353]],[[0.14096936583519,0.10624245554209,0.036923170089722],[-0.10331426560879,-0.065063804388046,0.056735750287771],[0.072576455771923,0.06120228022337,-0.098281309008598]],[[0.0074389409273863,-0.042955972254276,-0.044562697410583],[0.019137995317578,-0.045040365308523,0.10705485194921],[0.059855151921511,0.0050380895845592,0.011074806563556]],[[-0.053592383861542,-0.1214761286974,-0.053125064820051],[-0.053717754781246,-0.054482504725456,0.00089345750166103],[-0.071268156170845,-0.050629258155823,-0.035397682338953]],[[-0.057861063629389,-0.034750770777464,-0.082416824996471],[-0.035494554787874,-0.087957844138145,-0.056810542941093],[-0.015188395045698,-0.10406895726919,-0.038385301828384]],[[0.047058049589396,-0.022342259064317,0.016151200979948],[-0.077005639672279,-0.031490743160248,-0.034837011247873],[-0.04816534742713,0.028839530423284,0.029944470152259]],[[0.004576709587127,0.082440361380577,0.060757581144571],[-0.096249587833881,-0.022783337160945,0.054345071315765],[-0.11291912943125,-0.1191832497716,-0.0195572078228]],[[-0.036392848938704,-0.039720945060253,0.058363772928715],[0.077283538877964,-0.14256612956524,-0.097021795809269],[0.02908568829298,-0.10485713928938,-0.002212475752458]],[[0.092301316559315,-0.055148128420115,-0.01605711504817],[0.003391528967768,0.056283500045538,0.025727661326528],[0.04144024476409,-0.030917583033442,-0.05678004026413]],[[0.054129660129547,-0.022955752909184,0.21414011716843],[0.065649725496769,-0.030787447467446,0.12118726968765],[0.097825735807419,0.0018079822184518,-0.0450096167624]],[[0.082540906965733,0.073240771889687,0.15013140439987],[-0.097821228206158,0.027429426088929,0.030845699831843],[0.11877559125423,0.017913499847054,0.020870620384812]],[[-0.14412392675877,0.050701107829809,-0.016857575625181],[-0.13826480507851,-0.16319650411606,0.052818641066551],[0.0028971470892429,0.028324507176876,0.11822324246168]],[[-0.063223361968994,0.030777987092733,0.044368356466293],[0.15973605215549,0.012835949659348,-0.090748660266399],[-0.043692920356989,0.067786984145641,0.13271145522594]],[[0.084149941802025,-0.050244122743607,0.17758086323738],[0.035087760537863,-0.02805626578629,0.01777177490294],[0.0035717191640288,0.10108308494091,0.016849441453815]],[[-0.04019009321928,-0.16238789260387,-0.13328331708908],[0.0091827400028706,0.1003852263093,0.024389090016484],[0.05962561070919,-0.079315692186356,0.060226690024137]]],[[[0.019248783588409,0.041267804801464,-0.10655279457569],[-0.10621393471956,0.00028575342730619,0.013089145533741],[-0.014188318513334,-0.027800511568785,0.010185618884861]],[[0.035428110510111,-0.016287704929709,0.091665588319302],[-0.22273913025856,-0.12972472608089,0.023054542019963],[-0.15260687470436,0.03560509160161,-0.074472889304161]],[[-0.09251556545496,-0.12741260230541,-0.12662215530872],[-0.096075616776943,-0.017304277047515,-0.11599850654602],[-0.022832907736301,-0.0048514157533646,-0.0022493312135339]],[[-0.048350058495998,-0.018173340708017,-0.071956217288971],[0.012813384644687,-0.026922067627311,0.18177199363708],[0.0092262253165245,0.03457398340106,0.035094153136015]],[[0.052257366478443,-0.027215048670769,0.032129421830177],[0.081076569855213,-0.074061580002308,0.026087444275618],[0.058904822915792,-0.12550640106201,-0.1398289501667]],[[-0.18211221694946,-0.073563814163208,-0.02060972340405],[-0.018993455916643,-0.10218396782875,-0.0033976980485022],[-0.020050691440701,0.019462460651994,0.025217486545444]],[[-0.08938917517662,-0.095623932778835,0.022282985970378],[-0.086357407271862,-0.036673903465271,-0.035478204488754],[0.081374943256378,-0.038531567901373,-0.067959919571877]],[[-0.10322743654251,0.13874258100986,0.073105283081532],[0.074087150394917,-0.024208456277847,-0.066647730767727],[-0.099084950983524,-0.034037932753563,-0.070628561079502]],[[0.046674072742462,-0.0017892961623147,0.088444158434868],[-0.23104299604893,-0.047304108738899,-0.056132655590773],[0.021608592942357,-0.062051232904196,0.067840680480003]],[[0.034655503928661,0.017654558643699,-0.028359791263938],[-0.11505207419395,-0.090363070368767,0.071183875203133],[-0.086927846074104,-0.010671150870621,-0.076581798493862]],[[-0.023796593770385,0.019511951133609,0.01215570513159],[0.13908784091473,0.0076439795084298,-0.038844641298056],[-0.040960494428873,-0.080098621547222,-0.042325712740421]],[[-0.066882491111755,0.035874292254448,0.1580099016428],[0.028518950566649,0.01084044482559,0.10992781817913],[-0.0011808543931693,-0.075212799012661,-0.11461601406336]],[[0.24665389955044,-0.08861093968153,-0.036236751824617],[0.066824093461037,0.12793877720833,0.043501786887646],[0.033876907080412,0.022528586909175,-0.026189776137471]],[[0.030809013172984,0.079689271748066,-0.021330496296287],[0.038535591214895,-0.18795000016689,-0.070997439324856],[-0.027464956045151,0.063703395426273,0.082010611891747]],[[-0.094437181949615,0.0064656599424779,0.042884133756161],[-0.039230901747942,-0.053577303886414,-0.0078769577667117],[0.14058400690556,-9.5853676612023e-05,0.013735270127654]],[[0.036208808422089,-0.093994572758675,-0.011149233207107],[0.052997719496489,0.026314254850149,-0.015098167583346],[0.11636182665825,-0.089194983243942,-0.00073265348328277]],[[-0.0088061038404703,-0.17154316604137,-0.1531223654747],[0.093025490641594,-0.061718385666609,-0.043614819645882],[0.052356630563736,0.084093973040581,0.0647883862257]],[[0.017804678529501,-0.014090608805418,0.039707653224468],[0.0066345473751426,-0.045551970601082,0.028006460517645],[0.033274423331022,-0.057852700352669,-0.033819627016783]],[[0.047582343220711,-0.02583253569901,0.0096127549186349],[-0.019103277474642,-0.031102271750569,-0.11179262399673],[-0.054149121046066,0.085431613028049,-0.094115190207958]],[[-0.086679503321648,-0.072321452200413,0.0982561185956],[0.13411918282509,-0.092623263597488,-0.028807027265429],[-0.020755333825946,-0.023807134479284,0.18753156065941]],[[-0.072210066020489,-0.10684144496918,0.01570606417954],[-0.11361166089773,-0.014084840193391,-0.065389670431614],[0.072309724986553,0.07935955375433,0.07176136225462]],[[0.069282628595829,0.0075601660646498,0.018326798453927],[-0.018075007945299,-0.086323380470276,-0.083157777786255],[0.042712088674307,-0.049452397972345,-0.022694569081068]],[[0.031583599746227,0.043233569711447,-0.0887386277318],[0.1253961622715,-0.051315788179636,-0.076570503413677],[-0.082557439804077,0.092329986393452,-0.011506134644151]],[[0.11270748823881,-0.0036343871615827,0.10190696269274],[0.020502815023065,0.037481810897589,-0.11928322911263],[0.047163467854261,0.012066500261426,-0.042953941971064]],[[0.2343418598175,-0.0016536565963179,-0.0092333517968655],[0.077439181506634,0.081243224442005,-0.012303724884987],[-0.17733481526375,0.058629356324673,-0.12462152540684]],[[0.052985530346632,-0.06185158342123,0.0060787042602897],[0.025581087917089,0.054875943809748,-0.017445566132665],[-0.022400883957744,0.052098006010056,-0.084049396216869]],[[0.013358830474317,0.067164793610573,-0.013613843359053],[-0.006680132355541,-0.024948447942734,-0.022703459486365],[0.14655683934689,-0.029729230329394,0.15649916231632]],[[0.056347563862801,-0.012018477544188,-0.15605327486992],[0.17223817110062,-0.012280943803489,0.039216410368681],[-0.017694037407637,0.096477210521698,-0.0057303649373353]],[[0.12019787728786,-0.0066222562454641,0.057008907198906],[0.025910532101989,0.048446536064148,-0.013153396546841],[-0.2074878513813,-0.037778679281473,-0.064622104167938]],[[-0.022732717916369,-0.089229464530945,-0.01609213091433],[-0.076525397598743,0.10216323286295,-0.07139465212822],[0.21134501695633,0.056166559457779,0.0036767462734133]],[[-0.016191601753235,0.090656623244286,-0.0068604038096964],[-0.024223010987043,-0.028842195868492,0.013504800386727],[-0.088449731469154,0.023711504414678,-0.034067869186401]],[[0.060393430292606,0.15562734007835,0.0056543266400695],[0.14896062016487,0.0041384622454643,-0.04289723187685],[-0.073815621435642,-0.059840139001608,0.068555757403374]],[[-0.023468742147088,-0.16485847532749,-0.08838851749897],[-0.03283328935504,-0.053161956369877,0.0090357698500156],[0.026781108230352,-0.077483743429184,0.19852095842361]],[[-0.32775631546974,0.0033207361120731,-0.0071527282707393],[-0.010892716236413,-0.12158519029617,-0.026700370013714],[0.12355545908213,0.023324633017182,-0.025583988055587]],[[-0.22928413748741,-0.094572745263577,0.026158209890127],[0.00071853585541248,0.16814798116684,0.028688227757812],[0.13444526493549,-0.063519611954689,0.062313891947269]],[[-0.11536451429129,0.074037350714207,0.0011526494054124],[0.051969487220049,0.14416702091694,0.056957196444273],[0.0073813172057271,0.055953092873096,-0.0097352098673582]],[[-0.10130007565022,-0.13022741675377,-0.020935086533427],[0.20208966732025,0.18741676211357,0.022579541429877],[0.20256236195564,-0.090417250990868,0.038644697517157]],[[-0.062418580055237,0.0031956995371729,0.033501420170069],[0.029617989435792,-0.05445995926857,0.039702463895082],[-0.064148657023907,0.018797980621457,-0.099834613502026]],[[-0.13039906322956,-0.1265444457531,-0.22868303954601],[0.18727548420429,0.059512406587601,0.01757525652647],[-0.230200111866,-0.014778891578317,-0.017835387960076]],[[0.043217569589615,0.0026028531137854,-0.0033449896145612],[-0.26401761174202,-0.068305850028992,-0.10274839401245],[0.30102288722992,0.091758966445923,-0.016638008877635]],[[0.21334244310856,-0.037654057145119,-0.12200891971588],[0.14725326001644,0.052143260836601,-0.13232314586639],[0.053781222552061,0.021795937791467,-0.041728172451258]],[[-0.059344403445721,0.08642503619194,0.0064226649701595],[0.045311123132706,0.057165771722794,-0.045251689851284],[-0.046600837260485,0.021522279828787,-0.16685289144516]],[[-0.1158956438303,-0.057949379086494,0.066748663783073],[-0.028170453384519,0.11335229128599,-0.014058431610465],[0.015044093132019,-0.069296911358833,-0.048139281570911]],[[-0.19690346717834,-0.050414834171534,-0.10494688153267],[0.048207931220531,-0.035373188555241,0.088836580514908],[-0.039224948734045,-0.13237321376801,0.078842744231224]],[[0.043014992028475,0.063478656113148,-0.040308125317097],[-0.023852942511439,-0.079020500183105,0.034997384995222],[0.024867884814739,-0.024962220340967,-0.18266023695469]],[[-0.10812924802303,0.01152899581939,-0.087835937738419],[0.061596110463142,-0.069331109523773,-0.028457364067435],[0.26941958069801,0.017966290935874,-0.14575576782227]],[[0.043164286762476,0.025740368291736,0.033459231257439],[0.021726289764047,-0.068565055727959,-0.05379631370306],[-0.097770944237709,-0.12151132524014,0.19026125967503]],[[-0.092171989381313,-0.024167632684112,-0.13874444365501],[0.11214193701744,-0.1411047577858,-0.0045349230058491],[0.0014411647571251,0.073532298207283,0.032234761863947]],[[0.035125467926264,0.09731437265873,-0.037456944584846],[-0.075420401990414,-0.19368140399456,-0.17006333172321],[-0.11261943727732,0.049849808216095,-0.019057299941778]],[[0.1583691239357,-0.046460509300232,0.025535818189383],[0.093710027635098,0.064611569046974,-0.065146081149578],[0.13947314023972,0.075583584606647,0.050174120813608]],[[-0.078231498599052,-0.029129333794117,-0.030657235532999],[0.013450267724693,0.064163245260715,0.034152198582888],[-0.086236089468002,0.024529673159122,-0.077987626194954]],[[0.28213307261467,-0.011754115112126,-0.052949126809835],[-0.013159385882318,-0.049825116991997,-0.13630042970181],[0.15118308365345,0.05199758708477,-0.0047941445372999]],[[0.028496857732534,0.057882983237505,0.069769188761711],[0.01143876183778,0.011056762188673,-0.18551854789257],[-0.060045704245567,-0.073884792625904,-0.13602086901665]],[[0.11463685333729,0.01576772890985,0.095530182123184],[0.022844208404422,0.0081691397354007,-0.05566556379199],[-0.059874445199966,0.025481879711151,0.026903294026852]],[[0.042182743549347,-0.017496608197689,0.080633439123631],[-0.07517683506012,0.0067343497648835,-0.20008504390717],[0.13911725580692,0.071706414222717,-0.10658483952284]],[[-0.28671610355377,0.11400627344847,-0.098476104438305],[0.069241374731064,0.08691792935133,0.034324210137129],[-0.057100236415863,0.0030804052948952,-0.019366541877389]],[[-0.055156238377094,-0.22466145455837,-0.10028303414583],[0.043983191251755,0.037873417139053,-0.023245459422469],[0.028864670544863,0.054940205067396,0.026202255859971]],[[-0.040247824043036,-0.09170938283205,0.077390551567078],[0.018370905891061,-0.01331751793623,-0.16567520797253],[-0.026247510686517,0.038926098495722,-0.04668028280139]],[[-0.071202404797077,0.10680304467678,0.063236527144909],[0.045474004000425,0.068900316953659,0.11523359268904],[0.07004076987505,-0.01175934355706,0.06964273005724]],[[-0.12218945473433,-0.087510772049427,-0.077453099191189],[-0.087675400078297,-0.14313988387585,0.07230669260025],[-0.012089415453374,-0.039066571742296,0.0007981623057276]],[[0.10080035030842,-0.038877688348293,-0.13076005876064],[-0.013861651532352,0.031125664710999,0.072257600724697],[-0.05474142357707,-0.017443595454097,-0.10928782820702]],[[0.055286671966314,-0.013183552771807,0.016316752880812],[-0.17887385189533,-0.067457012832165,0.030804393813014],[-0.019287932664156,0.0141735766083,0.07134423404932]],[[0.13653233647346,-0.09123133122921,0.10226190090179],[-0.12725844979286,-0.026981681585312,-0.08824684470892],[-0.20823626220226,-0.10221550613642,-0.14027185738087]],[[-0.018575707450509,0.01188154052943,-0.08914652466774],[0.014097922481596,-0.16292496025562,-0.047194361686707],[-0.034170068800449,0.053102593868971,-0.04303415119648]]],[[[0.07992310076952,-0.065382361412048,-0.18397249281406],[0.081551007926464,-0.088152907788754,-0.11906684935093],[0.059551533311605,-0.055234402418137,-0.026468632742763]],[[-0.044205021113157,-0.2538069486618,-0.21185760200024],[0.025505496188998,-0.085093386471272,-0.040633425116539],[0.0098399240523577,-0.13609272241592,-0.043113879859447]],[[-0.074078887701035,-0.0014640025328845,0.016601303592324],[-0.017679003998637,-0.063363440334797,-0.13105437159538],[-0.034936830401421,-0.026933215558529,-0.14774334430695]],[[0.14938613772392,0.021642351523042,-0.042735062539577],[-0.02475549466908,0.063704818487167,0.01603183709085],[-0.076780132949352,-0.053583204746246,0.2156166434288]],[[0.027164671570063,0.017630282789469,0.082695104181767],[0.00070222851354629,-0.02808516100049,0.024002891033888],[0.069998674094677,-0.054897774010897,-0.13006398081779]],[[-0.17452079057693,-0.088730990886688,-0.008734536357224],[-0.045586325228214,0.068424567580223,-0.014361313544214],[-0.0067603210918605,-0.13044261932373,-0.0389014929533]],[[0.091709434986115,0.031238060444593,-0.028369415551424],[0.072932317852974,0.070416264235973,0.13688540458679],[-0.16350749135017,0.052877645939589,0.03396513313055]],[[0.10226605087519,-0.072877883911133,0.1410951167345],[0.039377957582474,0.12613469362259,0.0082578184083104],[-0.24405232071877,0.051147442311049,0.15586978197098]],[[-0.070731021463871,0.018499063327909,-0.079996980726719],[-0.03384768217802,-0.035944763571024,0.04433549195528],[-0.19228400290012,0.039447754621506,0.0025951229035854]],[[-0.018642067909241,-0.093604892492294,-0.050014670938253],[-0.0026521205436438,-0.037080023437738,0.056057315319777],[0.045258585363626,-0.064902506768703,-0.023687388747931]],[[0.031233176589012,0.059422712773085,0.082057505846024],[0.101572021842,0.080496497452259,0.00078613823279738],[-0.1584843993187,0.014192615635693,-0.13712121546268]],[[-0.16401429474354,-0.018423797562718,0.0059075467288494],[-0.035873681306839,-0.13542449474335,-0.093526914715767],[0.062049351632595,0.061891999095678,-0.011037792079151]],[[0.1894816160202,0.017329955473542,0.031835958361626],[-0.00023492722539231,0.0096916425973177,-0.087647646665573],[-0.076572872698307,0.0092228716239333,-0.11951939016581]],[[0.12530720233917,0.015578546561301,-0.029505351558328],[-0.048433024436235,-0.0021673261653632,-0.039204381406307],[-0.028843669220805,-0.099157817661762,-0.03769164904952]],[[-0.0026729602832347,-0.026940546929836,0.059369157999754],[-0.045959752053022,-0.15189930796623,-0.031607381999493],[0.081696815788746,0.075190231204033,-0.10181172937155]],[[0.04801956936717,0.069305390119553,0.0070612230338156],[-0.017098058015108,0.015773974359035,-0.051955070346594],[-0.07604006677866,0.021588979288936,-0.029343428090215]],[[-0.0056891455315053,0.014571417123079,0.0035236678086221],[0.038463916629553,0.10543312877417,0.043340656906366],[-0.02497767470777,-0.10889731347561,-0.0079907421022654]],[[0.0087357638403773,-0.011859197169542,0.17486993968487],[0.025364778935909,-0.011037591844797,-0.13999679684639],[-0.018495723605156,-0.068066693842411,-0.047703891992569]],[[0.04766009375453,-0.015917964279652,-0.025114996358752],[-0.15655326843262,0.036558832973242,-0.019282335415483],[0.10775920003653,-0.048134818673134,-0.01016119774431]],[[0.058184452354908,0.012792363762856,-0.077248193323612],[-0.00058386410819367,0.027855539694428,-0.07058446854353],[0.0067655048333108,-0.0035869895946234,-0.041641484946012]],[[0.057242844253778,0.011787051334977,-0.0099281650036573],[-0.09103050082922,-0.11778037250042,-0.098111025989056],[0.071965761482716,0.14360885322094,0.12914779782295]],[[0.054985642433167,0.014396757818758,-0.11413192003965],[-0.10812970995903,0.036082912236452,0.03672906011343],[-0.030541570857167,-0.035549227148294,-0.029882591217756]],[[-0.056504502892494,-0.074475631117821,-0.10252869129181],[0.061510667204857,0.015164982527494,-0.11131856590509],[-0.026717940345407,-0.0683259293437,-0.15621115267277]],[[0.0097691677510738,0.097136691212654,0.032949823886156],[-0.13177692890167,0.14522765576839,0.010335912927985],[-0.043259963393211,-0.08572193980217,-0.015009584836662]],[[-0.087225697934628,0.054409142583609,0.095935203135014],[-0.06815031170845,-0.010142991319299,-0.10305586457253],[0.19529344141483,0.07045155018568,0.132298797369]],[[-0.079207867383957,0.012050223536789,0.018517890945077],[0.17105866968632,-0.094804689288139,-0.054840996861458],[0.0047485926188529,0.032189086079597,-0.01286531612277]],[[-0.042273703962564,-0.015181224793196,-0.025977415964007],[-0.2216715067625,-0.13801595568657,0.052331510931253],[0.012600132264197,-0.0082596456632018,-0.13040278851986]],[[0.011445389129221,0.0028336497489363,0.18555444478989],[-0.16604909300804,0.1009304150939,0.018764309585094],[-0.014808800071478,0.037248779088259,0.14174522459507]],[[0.044165719300508,-0.10183159261942,-0.30668932199478],[-0.0014826662372798,-0.041341982781887,0.047548990696669],[0.049598798155785,0.13647116720676,0.024061486124992]],[[0.12344522029161,0.11656507104635,-0.0052760276012123],[-0.0040431404486299,0.054129455238581,0.073157593607903],[-0.010534595698118,0.01226912252605,-0.0043212859891355]],[[0.046036504209042,0.035856522619724,0.056116282939911],[0.00070916413096711,-0.036801651120186,0.10597479343414],[0.0030700254719704,0.075847454369068,0.052176997065544]],[[-0.029396960511804,0.15422882139683,0.12211465835571],[-0.03484870120883,0.047352038323879,-0.034620072692633],[0.022641589865088,-0.041911449283361,0.11785889416933]],[[0.050449971109629,0.048282880336046,0.064940117299557],[-0.045816868543625,-0.017188563942909,-0.16857805848122],[0.076200015842915,0.0032937522046268,0.0035060541704297]],[[0.087365746498108,0.049571458250284,-0.115717202425],[-0.05624545738101,0.022693417966366,-0.079921379685402],[-0.05403109267354,-0.035416517406702,-0.044624723494053]],[[-0.068911179900169,-0.12134109437466,0.0027204542420805],[0.0031609123107046,0.072066128253937,-0.070836938917637],[0.0079878745600581,0.0082896053791046,-0.16636507213116]],[[-0.035138588398695,0.019920635968447,-0.014845653437078],[0.111931681633,0.015112780034542,-0.14496022462845],[-0.074602819979191,-0.015693672001362,0.1270497739315]],[[0.077164329588413,-0.13782101869583,-0.060704611241817],[0.014949990436435,0.10158439725637,-0.031086741015315],[-0.058360949158669,0.057609476149082,0.0582265406847]],[[0.098942525684834,-0.0085182366892695,-0.031633552163839],[0.046623274683952,-0.034927137196064,-0.027110712602735],[-0.11783137917519,-0.071708150207996,0.0026367523241788]],[[-0.014380392618477,-0.0041065821424127,0.054363779723644],[-0.16536419093609,-0.13722138106823,-0.029686011373997],[0.11567353457212,0.069642722606659,-0.091825284063816]],[[-0.077788136899471,-0.016981387510896,0.014878291636705],[-0.17134481668472,0.025259535759687,0.062111526727676],[-0.24151332676411,-0.26858565211296,-0.14912536740303]],[[-0.0047184978611767,-0.024963075295091,0.0018921215087175],[-0.0030058356933296,-0.021559631451964,-0.011572471819818],[-0.024078037589788,-0.061574902385473,-0.068873532116413]],[[-0.018257848918438,-0.049166038632393,-0.015018301084638],[-0.023921053856611,-0.058834861963987,-0.095240660011768],[-0.14391699433327,-0.014478225260973,-0.036798749119043]],[[0.12300462275743,0.14440575242043,-0.02345309779048],[-0.18255786597729,-0.0454336181283,0.10917335003614],[-0.11883755028248,0.026682609692216,-0.053147345781326]],[[-0.018843628466129,0.07167225331068,-0.072248466312885],[0.045467961579561,0.013341134414077,0.12113751471043],[-0.096990838646889,0.022883532568812,0.063622944056988]],[[0.15437635779381,0.099612064659595,-0.12324508279562],[0.060331266373396,-0.0055611450225115,-0.090290561318398],[0.13917252421379,0.029035773128271,-0.035844713449478]],[[0.040590740740299,0.041557151824236,-0.0077719590626657],[-0.072717726230621,-0.0043430477380753,-0.090059891343117],[-0.1420289427042,-0.014194516465068,0.054894298315048]],[[-0.019270990043879,-0.0036705490201712,-0.014618995599449],[0.10311337560415,0.028154844418168,-0.036051493138075],[0.0086887450888753,-0.028891732916236,-0.016558554023504]],[[-0.00032885407563299,-0.063083559274673,0.19248513877392],[0.056202229112387,0.054240077733994,0.01493847835809],[-0.026020534336567,-0.0057527394965291,-0.15187713503838]],[[-0.056407082825899,-0.023938236758113,0.0029182487633079],[0.082975924015045,-0.10994916409254,-0.090646460652351],[0.064927794039249,0.18634247779846,-0.106844432652]],[[0.1197072789073,-0.088958434760571,0.06310310959816],[0.13478927314281,-0.022781589999795,-0.13707500696182],[0.029518926516175,0.12335336208344,0.029349077492952]],[[-0.050384342670441,0.12336431443691,0.033378142863512],[-0.2415808737278,0.030357833951712,-0.0070530832745135],[-0.17244827747345,0.036520063877106,-0.026829041540623]],[[0.052020251750946,0.10330350697041,0.038514081388712],[-0.034478563815355,-0.049563225358725,0.055625353008509],[0.086756467819214,0.087759867310524,-0.12862409651279]],[[0.075238466262817,-0.079492039978504,-0.080387182533741],[0.0089044785127044,-0.050007503479719,0.10554479062557],[0.14351335167885,-0.036740556359291,-0.012140867300332]],[[0.091077171266079,-0.066403478384018,0.13067592680454],[0.028885887935758,0.058453164994717,0.037599321454763],[0.07453228533268,-0.10460246354342,0.12318402528763]],[[0.10561164468527,-0.040949765592813,-0.094861045479774],[-0.045435041189194,0.041170138865709,-0.02030660957098],[-0.13750669360161,-0.14240159094334,0.14514833688736]],[[0.036787316203117,0.013109942898154,0.05513959005475],[-0.11839483678341,-0.023823335766792,-0.12163260579109],[-0.14718014001846,-0.15411850810051,0.043402656912804]],[[-0.081136010587215,-0.11251268535852,-0.051159784197807],[-0.00084445835091174,-0.048234168440104,-0.16322688758373],[0.015365938656032,0.032697796821594,0.027416277676821]],[[-0.028520930558443,-0.11481361836195,0.094498664140701],[-0.054432302713394,-0.027498381212354,-0.007581579964608],[0.074273765087128,0.092261478304863,0.057215433567762]],[[0.044939041137695,-0.0089740185067058,0.07428915053606],[0.0089168986305594,0.017043169587851,0.12764701247215],[0.018562737852335,0.0038604119326919,0.16247645020485]],[[0.037356670945883,0.0077625755220652,-0.04717430472374],[-0.10378007590771,-0.0080084083601832,0.10401431471109],[0.039347760379314,-0.069733358919621,-0.14696937799454]],[[-0.059929050505161,0.063588075339794,-0.067417144775391],[-0.061486519873142,0.039712332189083,0.045067012310028],[-0.038131259381771,-0.036662545055151,-0.023027362301946]],[[-0.096858128905296,0.071876689791679,0.073489643633366],[-0.041472651064396,0.019326351583004,-0.094072721898556],[-0.014843338169158,0.095783703029156,0.06084293499589]],[[-0.039159510284662,0.024740083143115,0.12870690226555],[0.13526584208012,0.016273302957416,-0.059221409261227],[-0.11778365075588,-0.082071103155613,-0.099569320678711]],[[0.0099543929100037,-0.0018251070287079,0.035452377051115],[-0.073770120739937,0.054005552083254,0.041366785764694],[0.024693524464965,0.098189607262611,0.02564544044435]]],[[[-0.032616078853607,-0.0059352987445891,0.0032822685316205],[0.083413906395435,0.032050471752882,0.026338703930378],[-0.011415751650929,0.028330495581031,0.023791879415512]],[[0.026225278154016,0.010783760808408,-0.048023201525211],[0.054202169179916,0.067042477428913,0.054474424570799],[-0.0029678675346076,-0.0041280891746283,0.033126141875982]],[[0.057150267064571,0.12103890627623,0.079729162156582],[-0.010288992896676,0.095618478953838,0.065394975244999],[0.035756878554821,0.075433045625687,0.030682362616062]],[[0.049367155879736,0.031986527144909,0.12774689495564],[0.06294072419405,0.082404337823391,0.079419322311878],[0.031587991863489,0.070211745798588,0.049220789223909]],[[-0.028040969744325,-0.01447029132396,-0.00071592658059672],[0.06278121471405,0.14971995353699,0.042141273617744],[-0.11977833509445,-0.21709096431732,-0.11657294631004]],[[0.041703525930643,0.12393014878035,0.0042356615886092],[-0.027341041713953,-0.19232453405857,-0.034002494066954],[0.049447618424892,-0.048169389367104,-0.028245551511645]],[[0.0053365267813206,0.025977183133364,-0.053910620510578],[0.011583662591875,0.11328937858343,-0.010662063024938],[0.079564213752747,0.047174274921417,-0.044722985476255]],[[0.060494408011436,0.087734930217266,0.12231054157019],[0.029220405966043,-0.012423216365278,0.10028332471848],[-0.22819189727306,-0.18907964229584,-0.22502195835114]],[[0.089286558330059,0.091705471277237,-0.10287749767303],[-0.052691973745823,-0.053331576287746,-0.13854523003101],[0.037205599248409,0.067454889416695,0.11729410290718]],[[0.049489837139845,0.046219773590565,0.016276653856039],[-0.11253535747528,-0.018178297206759,0.052912294864655],[0.017999794334173,0.029709717258811,-0.062274962663651]],[[-0.017365489155054,0.06036439538002,-0.06114799156785],[0.046500597149134,0.08303988724947,0.032864104956388],[0.083310343325138,0.063607633113861,-0.021069716662169]],[[-0.0046552354469895,0.054444119334221,0.16931265592575],[-0.037027858197689,-0.059041801840067,0.10897740721703],[0.041214879602194,-0.034962840378284,0.11334732919931]],[[-0.020153658464551,-0.074577257037163,-0.00035465153632686],[-0.051080867648125,0.020001523196697,0.033527720719576],[0.013240539468825,-0.021176841109991,-0.0078056622296572]],[[0.13345627486706,0.037339210510254,0.078126847743988],[-0.054202329367399,-0.1392639875412,-0.027511222288013],[0.018642785027623,-0.064228847622871,-0.020510634407401]],[[-0.029476506635547,0.0080873090773821,-0.095536358654499],[0.04859484732151,0.039561606943607,-0.055290170013905],[0.066375277936459,0.05096909403801,0.065994381904602]],[[-0.040951728820801,0.016028808429837,-0.029866512864828],[0.013893284834921,0.1854792535305,0.12242440879345],[-0.032965689897537,0.0056996890343726,-0.15478003025055]],[[-0.045887485146523,-0.15762507915497,-0.046173017472029],[-0.040234807878733,-0.027037492021918,-0.032334662973881],[0.02783483825624,0.004328291863203,-0.076451972126961]],[[-0.019991317763925,-0.046318702399731,-0.066999271512032],[-0.0018580020405352,-0.034048490226269,0.037043422460556],[0.046584285795689,0.080755241215229,-0.11202733963728]],[[-0.080714300274849,-0.011049738153815,0.093333795666695],[-0.13490362465382,0.051031727343798,-0.064026191830635],[-0.042856216430664,0.0030597422737628,0.076845265924931]],[[-0.091178096830845,0.0074212956242263,-0.0057087726891041],[0.071111142635345,-0.037850946187973,-0.03243201598525],[0.043247904628515,-0.00017846275295597,0.036315079778433]],[[-0.016855731606483,0.047136925160885,-0.14276118576527],[-0.11138238757849,0.032830517739058,-0.083988316357136],[-0.029714826494455,-0.027397720143199,0.05768084153533]],[[0.016215700656176,-0.017437240108848,-0.021311780437827],[0.013862246647477,0.057391792535782,0.050871107727289],[-0.019664129242301,0.041349180042744,0.025824442505836]],[[0.016072429716587,-0.0069669024087489,0.058769345283508],[0.0017344461521134,0.065222300589085,0.10979843884706],[-0.0038606661837548,0.015889421105385,-0.027722584083676]],[[-0.0011066346196458,0.094637781381607,-0.013664943166077],[0.055680453777313,-0.00028545060195029,-0.085871696472168],[-0.070303618907928,0.043284479528666,0.027432465925813]],[[-0.0020182053558528,0.02495189756155,-0.009880899451673],[-0.042471092194319,-0.022681506350636,-0.016998650506139],[-0.021613521501422,-0.057159725576639,0.023022625595331]],[[-0.028507560491562,0.006074988283217,0.054992463439703],[0.0048052691854537,0.13186444342136,0.095797695219517],[0.029430489987135,0.015985148027539,0.037766832858324]],[[-0.014596491120756,-0.075442925095558,-0.089926265180111],[-0.13029299676418,-0.13975618779659,0.036435917019844],[0.097014188766479,0.091192081570625,-0.014378229156137]],[[-0.012132585979998,0.063104510307312,0.072537757456303],[0.067746981978416,0.083494938910007,0.073793657124043],[0.011225898750126,0.033614195883274,0.19335353374481]],[[-0.038241859525442,0.013343572616577,0.094808645546436],[0.15947514772415,0.11906100809574,0.0021366477012634],[-0.054574579000473,-0.019057415425777,0.039604160934687]],[[0.055363293737173,-0.030576454475522,0.093635365366936],[0.045142278075218,0.0186866838485,-0.017507890239358],[0.062229946255684,-0.0014351733261719,0.016692897304893]],[[0.028948817402124,0.035803593695164,-0.018638821318746],[-0.020439315587282,-0.0085076782852411,-0.064608216285706],[0.075283795595169,0.091323435306549,0.12970133125782]],[[-0.031046487390995,-0.0049676448106766,-0.014845061115921],[0.019842408597469,0.011638064868748,0.010340862907469],[0.0040256353095174,0.0020492714829743,-0.066484853625298]],[[0.061510898172855,0.0021932474337518,0.090408071875572],[-0.047061678022146,-0.03690217807889,0.10183343291283],[0.080036967992783,-0.044726338237524,-0.059141635894775]],[[-0.035567820072174,0.0091717271134257,-0.012062094174325],[-0.005651340354234,-0.12465277314186,0.081787027418613],[0.076845400035381,-0.025388974696398,-0.048497557640076]],[[0.014952072873712,0.042793933302164,0.092446282505989],[-0.040768940001726,-0.025903280824423,-0.011728866025805],[0.11693073809147,-0.029904836788774,0.0023623576853424]],[[-0.16199864447117,-0.050898585468531,0.019824607297778],[-0.0087659442797303,-0.0063073094934225,0.14735086262226],[-0.00016930224956013,-0.027809640392661,0.10672996938229]],[[0.045859485864639,0.00385358533822,0.15218186378479],[-0.054348018020391,-0.070179432630539,0.065195605158806],[0.12964062392712,0.063053652644157,0.096585899591446]],[[0.021779770031571,-0.033677965402603,-0.010682445019484],[-0.0080814380198717,0.054933350533247,0.062745809555054],[0.0017527901800349,0.095553651452065,0.15418595075607]],[[0.057284235954285,0.0098085347563028,0.089317806065083],[-0.011566003784537,0.035962909460068,-0.021599214524031],[-0.047319825738668,-0.012555874884129,0.0065994579344988]],[[-0.0081608286127448,-0.048233039677143,0.024498403072357],[0.17528396844864,0.051177464425564,-0.090548746287823],[-0.0023227706551552,0.012738558463752,0.033495515584946]],[[0.095789603888988,0.047197088599205,0.040776297450066],[0.11006958782673,0.061095219105482,0.060039281845093],[0.022140115499496,-0.0064437598921359,0.19311638176441]],[[0.011172127909958,0.034602023661137,0.040319364517927],[-0.0094204340130091,0.034348476678133,0.030691236257553],[0.020952736958861,0.088265389204025,-0.0019770029466599]],[[-0.063624553382397,0.033797830343246,-0.13915723562241],[-0.071600288152695,-0.0079050390049815,0.043775156140327],[0.03444642201066,0.07846362888813,-0.038001745939255]],[[0.069695584475994,0.14616101980209,-0.070315256714821],[0.036114804446697,0.049063865095377,-0.038286373019218],[0.023559641093016,-0.0063274828717113,-0.041957139968872]],[[-0.17713034152985,-0.097075276076794,-0.04752753674984],[0.073573902249336,-0.09936860948801,0.00049867399502546],[0.08143112808466,0.075609214603901,0.011370535939932]],[[-0.069087162613869,0.17126694321632,0.054685920476913],[0.041778922080994,0.065245911478996,-0.12420233339071],[-0.10608247667551,-0.07402279227972,-0.037475757300854]],[[0.01120521966368,0.046447046101093,0.084138832986355],[0.028669431805611,-0.043384857475758,-0.062975361943245],[-0.033586572855711,-0.0036467595491558,0.043138980865479]],[[-0.12030656635761,0.14250691235065,0.081367157399654],[0.030841613188386,-0.13696253299713,-0.095104947686195],[0.017316302284598,0.091846771538258,0.062666140496731]],[[-0.076791472733021,-0.0096279019489884,0.0669831559062],[-0.035170517861843,-0.02306255698204,0.098983719944954],[0.048754032701254,0.069379329681396,-0.14836871623993]],[[0.10693610459566,-0.024297591298819,-0.056070931255817],[0.060335632413626,0.26202806830406,0.16384127736092],[-0.044842172414064,0.04362853243947,-0.11419980227947]],[[0.14630843698978,-0.024711159989238,0.030485894531012],[-0.018003545701504,0.012582091614604,-0.022630646824837],[0.033987928181887,0.079678349196911,0.10279273241758]],[[-0.02572195418179,0.083297528326511,0.095799572765827],[0.074139669537544,0.029001636430621,-0.0099705131724477],[0.065455906093121,-0.079707629978657,0.092986792325974]],[[0.11596143990755,-0.0061564520001411,0.11027248203754],[0.022218117490411,-0.098139524459839,-0.02580557577312],[0.11155346781015,0.082796916365623,0.0094136456027627]],[[-0.028849005699158,0.022418912500143,0.05188961327076],[-0.011174655519426,0.048800610005856,-0.010761320590973],[-0.045246928930283,0.085649989545345,0.087582930922508]],[[0.087861642241478,-0.069376341998577,0.03907622769475],[-0.0099042830988765,-0.049458373337984,0.095085248351097],[0.041296750307083,0.031932935118675,0.052227079868317]],[[0.077893786132336,-0.01413568854332,0.064841069281101],[0.14931181073189,0.03832333907485,0.047638639807701],[-0.092934742569923,0.075459942221642,0.007877865806222]],[[-0.056479629129171,0.015267629176378,-0.1269822716713],[-0.14575283229351,0.030447399243712,-0.0349464379251],[0.033195588737726,0.10496396571398,-0.10116139054298]],[[0.074250377714634,0.010497431270778,0.018462806940079],[0.052372898906469,0.066205330193043,0.12407969683409],[0.011941529810429,0.038498245179653,-0.18133215606213]],[[-0.0072204968892038,-0.03995605558157,0.1238718777895],[-0.031954318284988,0.060653202235699,0.024212958291173],[-0.1075569242239,-0.045058246701956,-0.038247417658567]],[[-0.034861989319324,0.041522305458784,0.066008761525154],[-0.063661985099316,0.061801485717297,-0.075898319482803],[0.15111815929413,-0.017509303987026,-0.15218557417393]],[[-0.020830610767007,0.084481619298458,0.0073359510861337],[-0.0046983300708234,-0.014120754785836,-0.051665335893631],[0.090544894337654,-0.021857475861907,-0.22016848623753]],[[0.006367152556777,0.13340167701244,0.065693967044353],[0.054466307163239,0.091475516557693,0.11135952174664],[0.059911474585533,0.069229483604431,0.12519909441471]],[[-0.044253259897232,0.03656817600131,0.060257244855165],[0.13642740249634,0.034170914441347,0.0062005720101297],[0.0019100225763395,0.016387488692999,0.059909597039223]],[[0.017077503725886,0.029444688931108,0.011257631704211],[0.0094327237457037,-0.053096376359463,-0.014830274507403],[-0.11930690705776,-0.0046921065077186,0.0038523555267602]]],[[[0.036746758967638,0.080949991941452,-0.019381133839488],[-0.008946530520916,-0.0871547088027,-0.025652254000306],[0.032745014876127,-0.012936681509018,0.089379318058491]],[[-0.070288076996803,-0.20170216262341,-0.14346849918365],[0.003104176139459,0.016205726191401,-0.021867990493774],[0.016150128096342,0.020392475649714,0.036927476525307]],[[-0.099139906466007,-0.13463750481606,-0.03873997926712],[0.027737531810999,-0.031855773180723,0.0067413882352412],[0.021744458004832,-0.048908367753029,0.067016333341599]],[[-0.050624165683985,-0.028069330379367,-0.10752596706152],[0.038399796932936,-0.018709126859903,-0.13457453250885],[0.11151722818613,0.06093705445528,0.03137805685401]],[[-0.012675996869802,-0.082401186227798,-0.095646485686302],[-0.076124347746372,-0.22008390724659,-0.22134175896645],[0.056147549301386,0.0097749521955848,0.032865289598703]],[[0.05478697270155,0.029192583635449,-0.0071214362978935],[-0.020241865888238,-0.0052377730607986,-0.060413807630539],[0.12214371562004,-0.0047508627176285,-0.010836130008101]],[[-0.074320204555988,-0.07200625538826,-0.13750505447388],[0.032058443874121,0.029980907216668,-0.026751691475511],[-0.0012082014000043,0.038234528154135,0.12510454654694]],[[-0.038851484656334,0.0065364483743906,0.13534761965275],[-0.085580535233021,-0.02457676269114,-0.017881726846099],[0.13958923518658,0.090952292084694,0.061019998043776]],[[-0.015694195404649,0.063406005501747,-0.13192129135132],[0.02085543051362,-0.031048329547048,0.039760813117027],[0.017261013388634,0.046552121639252,-0.027574775740504]],[[0.023875242099166,-0.13811063766479,-0.14206679165363],[0.046225037425756,-0.027087830007076,-0.025930717587471],[0.14247281849384,0.00050065043615177,-0.022644814103842]],[[0.11217918992043,-0.050023831427097,0.10526106506586],[0.078074045479298,0.0029143118299544,0.038927122950554],[0.0028600820805877,0.063185662031174,0.13371504843235]],[[0.038092512637377,0.053693812340498,0.027175888419151],[0.016670564189553,-0.027528859674931,-0.13770447671413],[-0.092619717121124,-0.034716419875622,0.018334407359362]],[[-0.043448004871607,-0.074979327619076,0.021681418642402],[0.005583880469203,0.094636179506779,-0.023107843473554],[0.074770167469978,0.038844995200634,-0.014426476322114]],[[0.083217389881611,0.026725120842457,0.038517139852047],[0.030820870772004,0.01079672947526,0.11974088847637],[-0.094799652695656,-0.040087126195431,-0.00036815713974647]],[[0.0013520875945687,-0.032442182302475,-0.1053127348423],[0.063721187412739,-0.021686557680368,-0.17391909658909],[0.045734103769064,0.008832280524075,0.021049216389656]],[[-0.054336316883564,-0.098888024687767,-0.20258359611034],[-0.084593117237091,-0.14329555630684,-0.11832752078772],[0.020017480477691,0.04422665014863,0.13629451394081]],[[0.0032560254912823,-0.034676186740398,-0.072379365563393],[-0.02991777844727,-0.018395412713289,-0.034851018339396],[0.11476919054985,-0.088132634758949,-0.012153173796833]],[[0.010986481793225,-0.043969336897135,-0.16629856824875],[0.043674852699041,0.023789349943399,0.04284081235528],[-0.030583890154958,0.10781504958868,0.086280040442944]],[[-0.033310104161501,0.008783221244812,0.072461672127247],[-0.0050920993089676,0.035865593701601,0.067452281713486],[-0.0054580443538725,-0.04108065366745,0.055748596787453]],[[-0.079462766647339,-0.14265790581703,-0.043125469237566],[0.020046168938279,-0.01105342246592,-0.095903269946575],[-0.043283876031637,0.056551430374384,-0.014603151939809]],[[-0.026945363730192,0.12997041642666,0.026674585416913],[0.061239376664162,0.093006707727909,0.053593166172504],[-0.0013426002115011,0.059762235730886,0.066458076238632]],[[-0.017148924991488,-0.0089474124833941,-0.028004676103592],[-0.012800257652998,0.031434033066034,0.043789025396109],[-0.078475311398506,-0.017296176403761,-0.03710014000535]],[[-0.072298318147659,-0.086011409759521,-0.032550524920225],[-0.03025939874351,-0.015953497961164,-0.048817068338394],[-0.044904183596373,-0.064266711473465,-0.022552305832505]],[[-0.082368396222591,-0.16775581240654,-0.12494242936373],[-0.080220855772495,0.046419583261013,-0.10296534746885],[-0.11108176410198,-0.1167978271842,-0.047814778983593]],[[0.21563155949116,0.26240825653076,0.26449179649353],[-0.076327867805958,-0.0058704148977995,0.11807080358267],[-0.091473385691643,-0.031475715339184,0.016362091526389]],[[0.048252314329147,-0.12304840236902,-0.034328665584326],[0.05653240904212,-0.083148077130318,-0.048442780971527],[0.06775388866663,-0.032603155821562,0.094599716365337]],[[-0.035500258207321,-0.037499964237213,0.0097524207085371],[0.046238578855991,0.050759620964527,-0.053508691489697],[-0.059704687446356,0.03864873200655,0.08220949023962]],[[0.063686065375805,0.016449416056275,0.01014740858227],[-0.026786776259542,0.0036460282281041,0.11020781844854],[-0.048482105135918,-0.023242585361004,0.02682401239872]],[[0.014153424650431,-0.025899954140186,0.15764631330967],[-0.11899191141129,0.015168393030763,-0.048770997673273],[-0.062805160880089,0.029201231896877,0.040401373058558]],[[-0.05620264261961,-0.042841915041208,-0.041317421942949],[0.053356748074293,0.0070205451920629,-0.028700243681669],[0.01362300477922,0.084633693099022,0.075695097446442]],[[0.051032688468695,-0.020148852840066,0.0012063323520124],[-0.011292528361082,0.028613144531846,0.062053572386503],[-0.10339179635048,-0.10781068354845,-0.086985602974892]],[[0.036920372396708,-0.001543581020087,-0.13125967979431],[0.091147936880589,0.11750198155642,0.016556620597839],[-0.10589502006769,-0.021905638277531,0.10351030528545]],[[-0.040300756692886,-0.077985927462578,0.019590245559812],[0.087390922009945,0.028358280658722,0.087585978209972],[-0.055583816021681,-0.068822674453259,0.025217657908797]],[[0.14079377055168,0.074257001280785,0.1793574988842],[-0.070496313273907,-0.016908438876271,-0.010645871050656],[-0.046009946614504,0.048317115753889,0.0015001625288278]],[[-0.065014123916626,-0.069600455462933,-0.028506072238088],[0.069127559661865,0.0032098647207022,-0.04210851341486],[0.050846323370934,-0.015890711918473,0.06477652490139]],[[0.056708011776209,0.068374171853065,0.13603454828262],[-0.042403355240822,0.003583331592381,0.13380919396877],[-0.1289155036211,-0.1104325056076,0.13911598920822]],[[0.038089975714684,0.11153793334961,0.030831091105938],[-0.029854983091354,0.036522585898638,-0.026591772213578],[0.12770539522171,-0.032370377331972,-0.0073572490364313]],[[-0.072954349219799,-0.11562895029783,0.0072837108746171],[0.063128627836704,0.010312763974071,-0.10038440674543],[-0.030990520492196,-0.00030337052885443,-0.28106060624123]],[[0.034775294363499,0.0021968889050186,-0.073808908462524],[0.0076915477402508,-0.0070212362334132,-0.035145286470652],[-0.031299561262131,-0.025630168616772,-0.071137696504593]],[[0.010299159213901,-0.031334448605776,0.10666581243277],[-0.022254198789597,-0.012070129625499,0.029746240004897],[0.053707305341959,0.089466750621796,0.024088457226753]],[[-0.14547829329967,-0.22050718963146,-0.14722158014774],[0.039930310100317,0.083618506789207,0.029065435752273],[0.020590724423528,0.048289097845554,0.03471776470542]],[[-0.001465251436457,-0.051771964877844,-0.13967382907867],[0.037960961461067,0.015294392593205,0.06716500222683],[-0.0028631743043661,0.042689930647612,-0.048350490629673]],[[-0.081260293722153,-0.11273767799139,-0.0070848427712917],[0.0012082504108548,0.053934007883072,0.026341469958425],[-0.029674537479877,-0.14140832424164,-0.10927804559469]],[[0.061334125697613,0.034888319671154,0.10685073584318],[-0.018645886331797,-0.051139980554581,-0.093345277011395],[0.058179453015327,0.041428100317717,-0.090702280402184]],[[-0.158018425107,-0.090493105351925,-0.26112371683121],[-0.11055880784988,0.13646340370178,-0.0017061149701476],[-0.080206073820591,-0.047309052199125,0.020044285804033]],[[0.077562615275383,0.12023665755987,0.083525098860264],[0.03977657109499,-0.032637428492308,0.085049755871296],[0.0089936479926109,0.022472882643342,0.031882062554359]],[[0.076691292226315,-0.034461986273527,0.0077575831674039],[0.069261394441128,-0.033747833222151,0.079468265175819],[0.0021940846927464,0.016258325427771,0.028809318318963]],[[0.071300454437733,0.11107409745455,0.079875357449055],[0.045923266559839,-0.040437538176775,-0.03345500677824],[-0.022103540599346,-0.13617111742496,-0.15855874121189]],[[0.10554425418377,0.041594434529543,0.13421352207661],[0.093636199831963,-0.035470739006996,0.066641747951508],[0.046662848442793,-0.13406173884869,-0.049388621002436]],[[0.014994761906564,-0.0047065122053027,0.05535027757287],[-0.024742819368839,-0.019770856946707,0.11757548898458],[0.030634766444564,0.040844384580851,-0.11749149113894]],[[-0.074722215533257,0.10049527138472,-0.0048528858460486],[0.021142613142729,-0.058368649333715,0.091405786573887],[-0.068477667868137,0.0060180313885212,0.0849789083004]],[[-0.011129059828818,0.0075891562737525,-0.020089922472835],[-0.0028858841396868,0.016766162589192,-0.10885865241289],[0.082435436546803,0.11017701029778,-0.069113433361053]],[[-0.024193169549108,0.038073875010014,-0.086206786334515],[-0.070314653217793,-0.050464011728764,-0.03563603758812],[-0.032953049987555,-0.0077754375524819,-0.10423472523689]],[[-0.032421674579382,0.075859382748604,-0.033967666327953],[-0.0013746862532571,0.027948345988989,0.16462929546833],[-0.027251871302724,-0.020013261586428,0.045358929783106]],[[0.058396492153406,-0.030786104500294,-0.019278105348349],[0.028643494471908,0.03055177628994,-0.04235764592886],[-0.074050731956959,0.052468344569206,0.0038161328993738]],[[-0.013261844404042,-0.05412844195962,0.093987986445427],[0.054205361753702,-0.069786101579666,-0.041035268455744],[-0.029366271570325,-0.094522953033447,-0.04318679869175]],[[-0.014067495241761,0.022119140252471,0.084309436380863],[0.045629061758518,-0.052984729409218,0.060294706374407],[0.073315545916557,0.15965436398983,0.060964945703745]],[[0.011898728087544,0.03646557405591,-0.10646607726812],[0.063112132251263,0.018258782103658,0.0044053392484784],[0.011948816478252,0.049092397093773,0.076423831284046]],[[0.098630204796791,0.11344759911299,0.13392868638039],[-0.034456457942724,0.11514513939619,0.11677031219006],[-0.012844029814005,-0.10480201244354,-0.13940966129303]],[[-0.27963775396347,-0.12082374840975,0.13571621477604],[0.05009538307786,-0.040130157023668,-0.071974031627178],[0.026513444259763,0.00051377614727244,0.050870701670647]],[[0.12920801341534,0.078377164900303,0.093079075217247],[-0.015604821033776,0.025441674515605,0.015956193208694],[0.008501254953444,0.0074498113244772,0.031179487705231]],[[-0.15981909632683,-0.035181034356356,-0.28445947170258],[-0.046830970793962,-0.036778915673494,-0.035750035196543],[0.035687621682882,-0.19784052670002,-0.047997690737247]],[[0.06936240196228,-0.013844021596014,0.1032425686717],[0.049084197729826,-0.032658908516169,-0.025512317195535],[0.01333892531693,0.06865980476141,0.096898108720779]],[[-0.050098162144423,0.061231922358274,-0.097028806805611],[0.13149529695511,-0.02325894497335,0.13126040995121],[-0.041854966431856,-0.09626654535532,0.0082883005961776]]],[[[-0.12438539415598,-0.11631958931684,-0.12595538794994],[-0.076595768332481,-0.029843458905816,-0.13947927951813],[-0.11749884486198,0.022010764107108,-0.085725866258144]],[[0.076734632253647,0.12824194133282,0.04083001986146],[0.1135289222002,-0.089205615222454,-0.13800889253616],[0.14577892422676,-0.041638728231192,-0.098521813750267]],[[-0.027503201738,-0.0095259742811322,-0.084721155464649],[-0.17954351007938,0.0042131533846259,-0.038293302059174],[-0.17760072648525,-0.080537237226963,0.090380504727364]],[[-0.12602560222149,0.074190102517605,-0.043844368308783],[0.059091474860907,-0.0077142813242972,-0.040160123258829],[0.13576611876488,-0.061961323022842,-0.078547440469265]],[[-0.031512718647718,-0.04128685221076,-0.049044150859118],[-0.10416293144226,-0.010160532779992,0.040073983371258],[-0.096195667982101,0.061430655419827,0.0061706714332104]],[[-0.08346700668335,-0.15120835602283,-0.08064429461956],[0.06112514436245,-0.14043587446213,-0.058811459690332],[0.041511528193951,-0.056471668183804,-0.12281482666731]],[[-0.0086708944290876,0.044783759862185,0.019232615828514],[-0.013892238028347,-0.066037394106388,0.024906734004617],[0.00068499654298648,-0.031662408262491,0.14568649232388]],[[0.069790676236153,0.013768641278148,-0.096812844276428],[0.028372436761856,-0.0030022105202079,-0.0010054181329906],[-0.10097172111273,0.0023645227774978,-0.0032277442514896]],[[0.046125046908855,-0.055671285837889,-0.086687788367271],[0.040002834051847,-0.072579875588417,-0.010207016952336],[0.16212323307991,-0.064851447939873,0.032451394945383]],[[-0.00021505690529011,-0.068115629255772,0.024118395522237],[0.061795528978109,0.070364966988564,0.086594730615616],[0.061501409858465,-0.087469592690468,-0.043110430240631]],[[0.041860729455948,0.047457501292229,0.029372680932283],[-0.079272642731667,0.0069551076740026,0.030789881944656],[-0.096333608031273,0.0072913561016321,-0.047722537070513]],[[0.055922042578459,0.096329972147942,0.1130460575223],[-0.0032832825090736,-0.087477199733257,0.0022565792314708],[0.009789515286684,-0.033791236579418,-0.058313474059105]],[[-0.088609397411346,-0.035894297063351,-0.17010235786438],[0.011680041439831,-0.00091066415188834,-0.030195716768503],[0.067440420389175,-0.036906514316797,0.057514395564795]],[[0.045406118035316,0.025839721783996,-0.12575396895409],[0.042346574366093,0.029059797525406,0.032140083611012],[0.11925016343594,0.0089030284434557,-0.027968527749181]],[[-0.21485470235348,0.18833154439926,-0.049295146018267],[0.20510095357895,0.14183463156223,-0.091441847383976],[-0.067483298480511,0.1977147758007,-0.18845674395561]],[[0.1183872744441,0.0017362905200571,0.25749635696411],[0.046754583716393,-0.14234906435013,0.024395877495408],[-0.14494076371193,-0.22920994460583,0.15241467952728]],[[0.075378015637398,0.10894618928432,-0.056686896830797],[-0.0030924456659704,-0.011261268518865,-0.081322774291039],[0.07488926500082,0.026698099449277,0.049224726855755]],[[0.021613610908389,-0.051646638661623,0.066214442253113],[0.046417493373156,-0.051164351403713,0.014057150110602],[0.14718382060528,-0.045843441039324,-0.16262724995613]],[[0.074695162475109,-0.030725190415978,0.011687065474689],[0.096451349556446,0.040203511714935,-0.10192642360926],[0.00087992061162367,0.069936186075211,0.084628693759441]],[[-0.19987447559834,-0.014678810723126,0.01867282949388],[0.010929584503174,-0.087652981281281,0.072818599641323],[-0.011402527801692,0.033776164054871,0.13072660565376]],[[-0.098000794649124,0.0098730865865946,-0.026974083855748],[-0.011038502678275,0.024340949952602,-0.13817258179188],[0.021661698818207,0.10825189203024,0.10715322941542]],[[-0.036431204527617,0.036994300782681,0.010617971420288],[-0.098673842847347,-0.096529565751553,0.0030951616354287],[0.028978763148189,-0.016533674672246,0.035214696079493]],[[-0.10468994826078,-0.090102426707745,-0.046069193631411],[0.016423057764769,0.15469139814377,0.012904636561871],[-0.28061041235924,-0.016175776720047,0.012204237282276]],[[0.073415674269199,-0.10231679677963,-0.010186506435275],[-0.097767747938633,0.11183522641659,0.020773490890861],[0.095508381724358,0.12294994294643,-0.10099299997091]],[[-0.070888131856918,-0.051449399441481,-0.18030886352062],[-0.029863344505429,0.083228833973408,0.020943962037563],[-0.0076253609731793,0.097020797431469,-0.033444076776505]],[[0.13250322639942,0.057793598622084,-0.080608710646629],[0.02722674049437,0.010836488567293,-0.032507605850697],[0.066357240080833,0.041419889777899,-0.079606004059315]],[[0.23470020294189,0.039860844612122,0.20756295323372],[-0.069659352302551,-0.065400756895542,0.042050182819366],[-0.17398747801781,0.067750193178654,0.082139693200588]],[[-0.018175531178713,-0.033047311007977,-0.10115744173527],[-0.12232992053032,0.037581592798233,-0.08018970489502],[0.053081084042788,0.12704809010029,-0.048182118684053]],[[-0.16760212182999,-0.070025563240051,-0.027247192338109],[-0.071389362215996,0.073504522442818,-0.07710362970829],[0.01449394878,0.066694527864456,0.16175453364849]],[[0.048435162752867,0.027699744328856,0.1021504253149],[0.025520017370582,-0.063296817243099,0.010428273119032],[-0.16028191149235,-0.024048155173659,0.040221322327852]],[[-0.12400325387716,0.030610436573625,-0.018823612481356],[-0.014818181283772,0.083488933742046,-0.16148929297924],[0.11429059505463,0.19968967139721,0.061372987926006]],[[-0.087482206523418,0.015310075134039,0.027029063552618],[-0.05887321010232,0.020321561023593,-0.14558416604996],[0.093878798186779,0.10639394819736,-0.0041802288033068]],[[0.05708734691143,-0.0028690895996988,-0.050964072346687],[0.11242509633303,-0.10380356758833,-0.030891032889485],[-0.044329665601254,-0.045105449855328,0.055743724107742]],[[0.042217180132866,0.02118343859911,-0.0063307876698673],[0.024713199585676,-0.014392301440239,0.067198701202869],[-0.14479397237301,0.017193734645844,0.094468079507351]],[[0.11319743096828,0.12145415693521,0.15605139732361],[0.055603358894587,-0.022977717220783,-0.16060911118984],[-0.082995593547821,0.0023772397544235,-0.00531996646896]],[[0.021801767870784,0.021088574081659,0.05232921615243],[0.059902224689722,0.012713273987174,-0.0040020332671702],[0.014267607592046,-0.029256766662002,-0.072426058351994]],[[0.14860211312771,-0.051306955516338,0.18244342505932],[-0.14900027215481,-0.067723669111729,0.09103662520647],[-0.10656443238258,0.02919639274478,0.036873240023851]],[[0.0039170486852527,-0.0062790741212666,0.031967416405678],[0.018244467675686,0.045816875994205,0.074173152446747],[-0.071905322372913,-0.10401246696711,-0.20796670019627]],[[-0.092100083827972,-0.054087743163109,-0.090000331401825],[0.047477040439844,0.074309982359409,0.039825852960348],[-0.046575788408518,-0.10477468371391,-0.12104572355747]],[[-0.07256892323494,-0.10979083180428,-0.013906544074416],[0.052358288317919,-0.097022734582424,0.04885421320796],[-0.049184251576662,-0.18586081266403,0.037402365356684]],[[-0.14934065937996,0.12477078288794,0.099623665213585],[-0.14266723394394,-0.044371448457241,0.020163860172033],[0.0091254338622093,-0.08344129472971,0.050043765455484]],[[0.010947399772704,-0.014896877110004,0.092756062746048],[0.040687471628189,-0.018273880705237,-0.031300727277994],[-0.19370149075985,-0.075136855244637,-0.033369079232216]],[[0.090522639453411,0.094393819570541,0.06402961909771],[-0.034587226808071,0.038837511092424,-0.0098303249105811],[0.023961117491126,-0.059095628559589,-0.021723413839936]],[[-0.092407122254372,-0.081726685166359,0.18849012255669],[0.060392443090677,0.038380060344934,0.072286620736122],[-0.024540714919567,-0.031968221068382,0.21611948311329]],[[0.16375380754471,0.035855088382959,0.08382211625576],[0.012304979376495,0.012279634363949,0.0070049120113254],[-0.087752960622311,-0.053343627601862,-0.11543273180723]],[[0.28339836001396,-0.041633769869804,-0.042491775006056],[0.16060791909695,-0.12991701066494,0.06215937063098],[0.17794090509415,-0.038006991147995,-0.066512376070023]],[[-0.023398170247674,-0.053328514099121,-0.0021928171627223],[0.06380558013916,-0.066611625254154,-0.10731393843889],[-0.099864773452282,-0.012221782468259,0.13274066150188]],[[0.12179677933455,-0.051429457962513,0.041274912655354],[0.066732451319695,-0.11481377482414,0.023691197857261],[0.078627429902554,-0.03631566464901,0.14777398109436]],[[0.092564485967159,0.072280623018742,0.026163263246417],[-0.11036042124033,0.016789261251688,-0.13674505054951],[-0.034026950597763,0.1443884819746,-0.083289258182049]],[[-0.045023664832115,-0.10195305198431,0.14297631382942],[-0.051470275968313,-0.13291227817535,0.075658604502678],[-0.04364512860775,-0.12102402001619,0.098999671638012]],[[-0.090099848806858,-0.034465871751308,0.008202051743865],[0.0062721492722631,0.062551684677601,0.080212615430355],[-0.011653017252684,0.11761064827442,-0.030995085835457]],[[-0.083872817456722,0.071840718388557,0.10760097205639],[0.030653472989798,-0.004961475264281,0.023865038529038],[-0.12314166873693,-0.086950600147247,-0.016852017492056]],[[-0.018466638401151,0.035202998667955,-0.059342317283154],[0.025836115702987,0.038887772709131,0.0040001827292144],[0.10027705132961,0.041823085397482,0.1107737198472]],[[-0.052680682390928,0.038325842469931,0.10467044264078],[0.019063889980316,0.033350422978401,0.16792118549347],[-0.17557802796364,-0.07374631613493,0.012259243987501]],[[-0.077528789639473,-0.047918688505888,-0.12398473918438],[-0.022772865369916,-0.055586278438568,0.1057418808341],[-0.2078183889389,-0.04447964578867,-0.17264366149902]],[[-0.029400987550616,0.035283327102661,0.023290125653148],[-0.031004333868623,0.095092453062534,0.051279418170452],[-0.13478104770184,0.022965833544731,-0.13752500712872]],[[0.074193477630615,0.016605269163847,0.11388995498419],[0.057074680924416,-0.072893865406513,0.011589822359383],[0.062214951962233,-0.079993315041065,-0.014113070443273]],[[0.033325042575598,0.17153353989124,0.083500616252422],[-0.1116943359375,0.036187574267387,-0.049629688262939],[0.055309742689133,-0.0087665310129523,0.076854459941387]],[[-0.0090910941362381,0.25122517347336,0.005512033123523],[-0.12551441788673,0.11297680437565,-0.020779766142368],[0.0082792490720749,0.10662586241961,0.1174528375268]],[[0.039556853473186,0.14738044142723,-0.022671720013022],[-0.021401492878795,0.090169370174408,0.11437138915062],[-0.048365384340286,0.05717258900404,0.13133317232132]],[[-0.094947464764118,0.066485874354839,-0.078961826860905],[-0.016894020140171,-0.029488516971469,0.023715972900391],[0.17614641785622,0.10113877803087,0.021768756210804]],[[0.072837308049202,0.060843963176012,0.096473023295403],[-0.00099390395916998,0.042642652988434,0.0089276898652315],[-0.014623732306063,0.028281999751925,0.016141150146723]],[[0.029959851875901,-0.011512137018144,0.0053608482703567],[-0.14041386544704,-0.17455348372459,0.00082063768059015],[0.14015744626522,0.084225073456764,0.37777754664421]],[[0.099920615553856,0.03002930060029,0.16236501932144],[-0.0020154947414994,-0.065899297595024,0.03712335973978],[0.075923070311546,-0.089997209608555,-0.12015037983656]]],[[[0.086044386029243,-0.013209414668381,-0.25667005777359],[0.028293376788497,-0.10148852318525,-0.085213743150234],[0.15290105342865,-0.067855469882488,-0.18816953897476]],[[0.070233128964901,-0.013621914200485,0.0044663422740996],[0.010461485944688,-0.030514873564243,-0.11185728013515],[0.090113803744316,0.087796866893768,-0.048152815550566]],[[-0.047821722924709,-0.10014729201794,-0.0052349073812366],[0.050612613558769,-0.023048330098391,-0.057142451405525],[0.022439645603299,-0.062637448310852,-0.11005739122629]],[[0.017620541155338,0.12341357767582,-0.081365562975407],[-0.081701934337616,0.04343818128109,-0.046745289117098],[0.090746238827705,0.032656528055668,-0.021435191854835]],[[0.050075046718121,0.016163427382708,0.062599755823612],[0.091333486139774,0.00034403323661536,-0.0040758759714663],[0.10277783125639,-0.0013072901638225,0.0011073593050241]],[[0.063622444868088,-0.016957171261311,-0.18911342322826],[0.030512511730194,-0.067028775811195,-0.10229143500328],[0.042474333196878,-0.060443010181189,-0.19848799705505]],[[0.060849152505398,-0.11640495061874,-0.023607792332768],[-0.046016000211239,-0.015363638289273,0.02171884290874],[-0.0097261248156428,0.021633187308908,-0.058349676430225]],[[-0.053314939141273,0.0068695638328791,-0.15151374042034],[-0.010603671893477,-0.038594033569098,-0.14067812263966],[-0.040961541235447,-0.052494294941425,-0.11516311019659]],[[0.03763360157609,-0.081715062260628,-0.13402937352657],[0.036594744771719,0.12244664877653,0.00065113930031657],[0.11113464832306,-0.019381541758776,-0.068441964685917]],[[-0.1084860637784,0.058071352541447,-0.069142125546932],[0.03574425727129,0.068367622792721,-0.0031913777347654],[0.045617669820786,0.038484916090965,-0.004469231236726]],[[-0.13929237425327,-0.10617216676474,-0.11254975199699],[0.072218053042889,0.066272504627705,-0.035020641982555],[0.12972609698772,-0.011772056110203,-0.062220562249422]],[[0.023278463631868,-0.00876001175493,0.0070607028901577],[0.071489103138447,0.0027603839989752,0.085936218500137],[0.016885289922357,0.063538990914822,0.12804499268532]],[[-0.052759204059839,-0.1222075521946,-0.0020935819484293],[-0.045104335993528,-0.026546498760581,0.0027909222990274],[0.076451629400253,0.020940605551004,-0.039982680231333]],[[0.0689906924963,-0.071034044027328,0.0093988981097937],[-0.073555201292038,0.022832715883851,0.01156962569803],[-0.076583422720432,-0.12180936336517,0.0085856355726719]],[[-0.039585255086422,0.033335849642754,0.0054467646405101],[0.065638221800327,-0.086357213556767,-0.011562647297978],[-0.025183929130435,-0.076944619417191,0.024352861568332]],[[-0.042608879506588,-0.057347234338522,-0.086951151490211],[0.068314850330353,0.073481820523739,-0.097304224967957],[0.068311102688313,-0.014792538248003,-0.11723820120096]],[[0.15238776803017,0.13902094960213,-0.032281298190355],[0.080213986337185,0.010060331784189,-0.032115664333105],[0.016226291656494,-0.14391401410103,-0.086256049573421]],[[-0.032559737563133,0.0048139225691557,0.042261335998774],[0.049768637865782,0.065620295703411,0.0042760893702507],[0.076263956725597,0.059954471886158,-0.16645216941833]],[[0.039423115551472,-0.046801894903183,0.0043921871110797],[-0.065140441060066,-0.12325070798397,0.017644707113504],[-0.1333917081356,-0.14870570600033,-0.11053432524204]],[[0.088284067809582,-0.017227889969945,-0.17967347800732],[0.099503539502621,0.016312081366777,-0.050882112234831],[-0.062073558568954,0.016217345371842,-0.037657272070646]],[[0.019084509462118,-0.022273827344179,-0.13614976406097],[0.092714220285416,-0.018020186573267,-0.085094131529331],[-0.004080016631633,-0.01276096701622,-0.094612471759319]],[[0.036053705960512,-0.01523532345891,-0.058158628642559],[0.0082578267902136,-0.03830324858427,0.0088706528767943],[0.032073836773634,-0.034805182367563,-0.077661916613579]],[[0.12239188700914,0.030240301042795,-0.0084400856867433],[0.030104361474514,0.029527015984058,-0.13619543612003],[0.00034168316051364,-0.048592697829008,-0.0046125072985888]],[[-0.012969753704965,0.14262627065182,0.1042455136776],[0.0019319767598063,0.017307471483946,0.094947025179863],[0.012609736993909,-0.094446316361427,0.12197547405958]],[[-0.029364012181759,0.085590682923794,-0.023167131468654],[-0.093246214091778,0.11018282175064,0.019945668056607],[-0.1028331592679,0.10986457020044,-0.016143336892128]],[[0.0095933135598898,0.0078073842450976,-0.034928761422634],[0.037560440599918,-0.039399057626724,-0.02452665194869],[-0.017162092030048,0.010177752934396,-0.029345707967877]],[[0.04993387684226,0.049702230840921,-0.13553912937641],[0.044682879000902,0.010834012180567,-0.050055161118507],[0.16308653354645,0.15189854800701,-0.0080263568088412]],[[0.083900161087513,0.0093344710767269,-0.066256560385227],[-0.045200243592262,0.059556812047958,0.0016349466750398],[-0.020043676719069,0.063310272991657,0.1036316677928]],[[-0.04436107724905,-0.0043769963085651,-0.27203780412674],[-0.038210693746805,0.13401672244072,-0.02299696393311],[0.013261037878692,-0.11724202334881,-0.095287278294563]],[[0.0061104316264391,-0.028226666152477,-0.1396332681179],[0.044550441205502,0.015254745259881,-0.026247166097164],[0.062550462782383,0.009980677627027,-0.17336761951447]],[[-0.07136619836092,0.042214475572109,0.066684238612652],[-0.005071250256151,0.02804534137249,0.14928251504898],[-0.10713814198971,-0.10680193454027,0.021929474547505]],[[0.0057164141908288,0.0075253103859723,-0.031532321125269],[0.039466671645641,0.056402117013931,0.020826727151871],[-0.058054655790329,0.014872488565743,-0.045889150351286]],[[0.085807532072067,0.14823804795742,-0.0010902294889092],[-0.006498986389488,0.12589816749096,0.040944460779428],[0.12017917633057,0.11742981523275,0.021131951361895]],[[-0.075667425990105,-0.14546875655651,0.10962028056383],[-0.0075621078722179,-0.069306172430515,0.055568546056747],[-0.0064611528068781,-0.071350529789925,-0.065148331224918]],[[0.01361939497292,-0.025308776646852,0.1034766510129],[0.059152636677027,0.02260554023087,-0.046042241156101],[0.038054596632719,0.03699080273509,-0.0023005220573395]],[[0.026687825098634,0.029012070968747,0.150958314538],[-0.034448511898518,0.045619081705809,0.16396974027157],[-0.13564765453339,0.080401904881001,0.076551787555218]],[[-0.036393534392118,0.041016180068254,0.023393465206027],[-0.085339106619358,-0.0077749975025654,0.05257061868906],[-0.010916514322162,-0.024160102009773,0.087117917835712]],[[-0.02327848598361,0.059865634888411,0.010115404613316],[0.00041762241744436,0.071109712123871,0.12405844777822],[0.0094367517158389,0.062479805201292,0.026786243543029]],[[0.054803531616926,-0.035991828888655,0.060872133821249],[-0.0012929077493027,0.032779280096292,0.0073635741136968],[0.1045288220048,0.028175605461001,0.079417057335377]],[[0.054983485490084,0.022118059918284,-0.0077499314211309],[0.056545563042164,-0.085851550102234,0.0032718242146075],[0.016926662996411,-0.045057766139507,0.0047419662587345]],[[0.11593179404736,-0.045043982565403,-0.015101498924196],[-0.0022710515186191,-0.04217629507184,-0.076393365859985],[0.0096111670136452,-0.061913911253214,-0.073840886354446]],[[0.0097177289426327,0.1033533141017,-0.029446512460709],[0.046346828341484,-0.018502248451114,-0.028792794793844],[0.079788766801357,-0.018321461975574,-0.26950386166573]],[[-0.054913453757763,0.075234495103359,0.0023019521031529],[-0.12305057048798,0.036102440208197,0.0050942585803568],[0.018142133951187,-0.089713327586651,0.18220698833466]],[[0.043050315231085,-0.067023314535618,-0.11300797760487],[0.041331879794598,0.05679477006197,-0.037815574556589],[0.019688995555043,0.039342164993286,-0.0426278822124]],[[-0.070815280079842,-0.10490950196981,-0.0094463871791959],[-0.08986833691597,-0.089218460023403,-0.026835700497031],[-0.061404529958963,-0.079867251217365,-0.0083833038806915]],[[0.10897486656904,-0.025402639061213,0.099244087934494],[0.0555813126266,0.039754819124937,0.14086312055588],[0.013795468956232,0.064155980944633,0.13870175182819]],[[-0.037993706762791,0.039427351206541,-0.025007367134094],[-0.026805708184838,0.0080097941681743,-0.097299367189407],[-0.0051748170517385,-0.023136511445045,-0.053218696266413]],[[0.032404638826847,0.07385041564703,0.12537130713463],[0.0013480726629496,0.04143375903368,0.10283765941858],[-0.043303776532412,-0.04130531847477,0.090132266283035]],[[-0.0032616821117699,0.04022304713726,-0.050871312618256],[0.01570063829422,-0.036687463521957,-0.14808990061283],[0.051167026162148,0.050950661301613,-0.059206608682871]],[[0.076962344348431,0.14752873778343,-0.099586717784405],[0.038510695099831,-0.084952123463154,-0.12328110635281],[0.016925605013967,-0.069102592766285,0.035233955830336]],[[-0.077464252710342,-0.081679992377758,0.035069826990366],[0.077690988779068,0.081792928278446,-0.068590857088566],[-0.026172067970037,0.055481426417828,-0.05967715382576]],[[0.091184258460999,-0.0001851874840213,-0.045281827449799],[0.051883775740862,-0.044146068394184,-0.04522667080164],[0.047353267669678,-0.10255204886198,-0.1042073816061]],[[0.052913751453161,0.065460398793221,-0.12252251058817],[-0.030475735664368,-0.026679096743464,-0.0084771485999227],[0.18848590552807,-0.012911142781377,-0.11188403517008]],[[-0.079114764928818,-0.038577362895012,0.013905096799135],[-0.035744983702898,-0.013914836570621,0.10299631208181],[-0.14823450148106,-0.051646992564201,0.0024477269034833]],[[-0.00054932612692937,-0.072434946894646,0.0080862678587437],[-0.16272658109665,0.018290994688869,-0.052109606564045],[0.071516558527946,-0.13408952951431,-0.0393834002316]],[[0.0080962628126144,0.039643436670303,0.020329013466835],[-0.03029459528625,-0.013425808399916,0.034145537763834],[0.07529541105032,-0.062908306717873,-0.002068520989269]],[[0.036983627825975,-0.11666513234377,-0.20173957943916],[0.10663358867168,-0.0053451103158295,-0.10478694736958],[0.061613839119673,-0.032534845173359,-0.092335887253284]],[[0.0084819188341498,-0.01210069283843,-0.12635107338428],[0.07585571706295,-0.056772880256176,-0.24289473891258],[0.095806479454041,-0.0070185237564147,-0.19937047362328]],[[-0.0023310510441661,0.0009593719150871,0.099145635962486],[-0.059569247066975,0.06295121461153,0.12041509896517],[0.017652677372098,-0.06584532558918,0.060974672436714]],[[-0.037967119365931,-0.035685781389475,0.040817100554705],[0.049857128411531,-0.015120320022106,-0.11040468513966],[-0.081979848444462,-0.051614075899124,-0.027164943516254]],[[-0.010940535925329,0.04659965261817,-0.031611934304237],[0.050953045487404,0.045630600303411,-0.045332476496696],[0.047170542180538,0.022539760917425,-0.061421889811754]],[[-0.021524325013161,0.094530537724495,0.030516736209393],[-0.11862389743328,-0.077845141291618,-0.13281683623791],[-0.020868066698313,-0.087367981672287,-0.21407842636108]],[[0.082866750657558,0.006986842956394,-0.00088283425429836],[0.1274388730526,0.041352972388268,-0.10732944309711],[0.057880781590939,0.046540409326553,-0.23404037952423]],[[0.027829989790916,-0.03150188177824,-0.049442570656538],[0.018247121945024,-0.060120191425085,0.00017056505021174],[0.074033252894878,0.0033706773538142,0.034827500581741]]],[[[0.014865300618112,0.025047905743122,0.061959579586983],[-0.024160601198673,-0.060223527252674,0.13371075689793],[-0.0022839778102934,0.0085514178499579,0.070753924548626]],[[-0.15208423137665,0.048371832817793,0.12490904331207],[-0.11505425721407,-0.13734333217144,-0.1178035736084],[-0.0066319331526756,0.041432209312916,0.13573542237282]],[[-0.070556655526161,0.014986932277679,0.010063508525491],[0.070766389369965,0.031923174858093,0.023286940529943],[-0.019597703590989,-0.014877840876579,0.0015332875773311]],[[-0.12989163398743,-0.045689761638641,-0.059941411018372],[-0.024753890931606,-0.026324303820729,-0.030513476580381],[0.11739476770163,0.030926449224353,-0.0041062766686082]],[[0.065252617001534,-0.051276411861181,-0.13610096275806],[-0.016682896763086,-0.11048267781734,-0.053363367915154],[-0.026109497994184,-0.015780422836542,-0.067372664809227]],[[0.0160395167768,-0.018636586144567,0.099881619215012],[-0.0419607385993,0.041586827486753,0.007711858022958],[-0.016359969973564,-0.078075744211674,-0.053850740194321]],[[-0.090360291302204,-0.016858905553818,-0.054615654051304],[-0.10590874403715,-0.03901994228363,0.016059217974544],[-0.12936383485794,0.011017525568604,-0.022193651646376]],[[-0.040009398013353,0.055319424718618,-0.014680301770568],[-0.15107724070549,0.0024253926239908,0.019089799374342],[0.044357977807522,0.0020352420397103,0.033577110618353]],[[-0.05263439193368,0.00014656176790595,0.11570286750793],[-0.040834002196789,0.038071770220995,-0.1077736094594],[-0.015543881803751,0.062506854534149,-0.0097867492586374]],[[-0.12447840720415,0.0094771431759,0.014407067559659],[-0.024230018258095,-0.075654029846191,-0.016842715442181],[-0.14133833348751,-0.086633183062077,0.15330591797829]],[[-0.097815506160259,-0.082847565412521,-0.023423559963703],[-0.0094747710973024,-0.062072832137346,-0.00084033305756748],[-0.021019324660301,-0.053382117301226,-0.017311712726951]],[[-0.11194527894258,0.038903839886189,-0.011320760473609],[-0.093298152089119,-0.068226851522923,0.060258582234383],[-0.15206173062325,-0.048635940998793,0.018652305006981]],[[0.034699663519859,-0.18192295730114,-0.13350993394852],[-0.068642981350422,-0.046479769051075,0.018692882731557],[0.015434090048075,0.065494783222675,-0.12129104882479]],[[0.039613611996174,0.027421001344919,0.0035927868448198],[-0.0073773260228336,0.041485317051411,-0.016616703942418],[0.077220149338245,-0.034373950213194,0.11935394257307]],[[-0.059366069734097,-0.13882586359978,-0.13814076781273],[0.036384381353855,0.0054241698235273,0.03770462423563],[-0.016393737867475,0.049133379012346,-0.038058210164309]],[[-0.081607565283775,0.082348622381687,-0.06547500193119],[-0.22148278355598,0.055044669657946,0.13254657387733],[-0.032165344804525,0.011032152920961,0.058852847665548]],[[0.023598495870829,-0.02359389141202,-0.033287264406681],[0.023703066632152,-0.051722221076488,-0.041006617248058],[0.017388267442584,0.094561770558357,0.10942980647087]],[[-0.16989403963089,0.058199755847454,0.0029479432851076],[-0.042391363531351,-0.023998448625207,0.055754408240318],[-0.10043961554766,-0.038993544876575,-0.028308816254139]],[[0.079498007893562,0.037965007126331,0.04398825019598],[0.072659559547901,0.036456380039454,0.090410694479942],[0.068485274910927,0.013500908389688,0.041692316532135]],[[-0.0051775686442852,-0.090236879885197,-0.065287552773952],[-0.058151245117188,-0.028586026281118,-0.098908044397831],[0.091851152479649,0.046601448208094,0.076562665402889]],[[-0.076833993196487,-0.032553382217884,0.083511807024479],[-0.05491054058075,0.098218463361263,0.028627326712012],[0.10884848237038,0.059063635766506,0.052891153842211]],[[0.038593795150518,-0.030442252755165,0.082624465227127],[0.013517306186259,-0.01828514970839,-0.063094735145569],[-0.02186032012105,-0.035311460494995,-0.046202939003706]],[[-0.022263765335083,-0.0056686867028475,0.043627724051476],[-0.017838438972831,0.0049579460173845,-0.049972038716078],[-0.066182300448418,0.034012380987406,0.068310104310513]],[[-0.10405629873276,-0.065977156162262,-0.015499989502132],[-0.020578006282449,-0.028750410303473,-0.06407269090414],[0.11519790440798,0.0038416001480073,0.047932710498571]],[[0.020958445966244,0.14776216447353,0.033470042049885],[-0.015805030241609,0.0053069172427058,-0.010325036942959],[-0.034097004681826,-0.016129748895764,-0.041858226060867]],[[0.0081087192520499,-0.065014436841011,-0.060303937643766],[-0.016951024532318,0.031442649662495,0.0099464980885386],[-0.055807337164879,-0.0035173739306629,0.028249517083168]],[[-0.093684777617455,0.019705777987838,0.12217389047146],[0.025602273643017,0.062359590083361,0.043408192694187],[-0.095414325594902,-0.095877669751644,0.05520960316062]],[[0.13507518172264,0.0090784830972552,0.086265951395035],[0.18124610185623,0.10100340843201,-0.07787599414587],[0.15818466246128,-0.045826435089111,0.038205429911613]],[[-0.027541341260076,0.023025576025248,0.058240406215191],[0.0037495724391192,0.074670143425465,-0.078845910727978],[0.063822828233242,0.0096849417313933,-0.21003119647503]],[[0.041832275688648,-0.043590102344751,0.0023800320923328],[0.071813315153122,0.11085568368435,-0.021097589284182],[0.01827160269022,-0.016797784715891,0.032447922974825]],[[0.01371118798852,0.028449457138777,-0.11806976050138],[0.10797186940908,-0.047695893794298,-0.046137802302837],[0.056198723614216,-0.017527334392071,-0.032361201941967]],[[0.023670684546232,-0.044020544737577,-0.0051770280115306],[0.049029916524887,-0.00032202340662479,0.03163206204772],[-0.034324809908867,-0.10656182467937,-0.13571007549763]],[[-0.20428362488747,-0.016757819801569,0.026517357677221],[0.022014545276761,-0.018257476389408,0.032997708767653],[-0.040891766548157,-0.020435374230146,-0.049181215465069]],[[-0.078694276511669,-0.072648525238037,-0.024581864476204],[0.012377757579088,0.033052805811167,0.0059538283385336],[0.0021195004228503,0.022039858624339,0.032806821167469]],[[-0.062561348080635,0.033375434577465,0.034680258482695],[-0.15909284353256,0.0026022482197732,-0.011997621506453],[0.07636471837759,-0.057846903800964,0.038506221026182]],[[0.041226282715797,0.22064384818077,0.018396880477667],[0.051569972187281,0.14690062403679,-0.022250190377235],[0.011531703174114,-0.021076187491417,0.077480301260948]],[[0.046961553394794,0.15167650580406,-0.064395599067211],[0.0011980606941506,-0.10075154155493,0.05083179846406],[0.0077340584248304,0.06064035743475,-0.052275989204645]],[[-0.0086882542818785,-0.01580524072051,-0.066820092499256],[-0.16255854070187,-0.06477652490139,-0.095003113150597],[-0.17397756874561,-0.038578871637583,-0.001841013901867]],[[-0.058543726801872,0.031223654747009,-0.059545312076807],[-0.032225240021944,0.086506970226765,-0.03147317096591],[-0.10475517064333,0.073235705494881,-0.033742871135473]],[[0.10494983941317,0.053833067417145,-0.087656654417515],[-0.039794057607651,-0.060042668133974,0.12957732379436],[-0.023266285657883,0.07416982203722,0.11482547223568]],[[-0.10183516144753,0.020518090575933,-0.037974610924721],[-0.069038383662701,0.0387331135571,0.042520321905613],[-0.042616322636604,-0.052991833537817,0.031291235238314]],[[-0.010261440649629,-0.091260433197021,-0.12575942277908],[0.10475955158472,0.054337445646524,0.034206546843052],[0.076772280037403,0.0092634158208966,-0.017254162579775]],[[-0.10220857709646,0.02883624099195,0.035811129957438],[-0.11442865431309,0.011701471172273,-0.045257329940796],[0.10179486125708,-0.078856833279133,-0.011048856191337]],[[0.032472189515829,0.062439743429422,0.15679642558098],[-0.045525439083576,0.019527060911059,0.077346250414848],[-0.12297844141722,-0.095936119556427,0.040603149682283]],[[0.058764465153217,-0.031629752367735,0.078918263316154],[0.21637180447578,0.046497870236635,0.039111375808716],[0.15104366838932,0.10890771448612,0.12920781970024]],[[-0.04004854336381,-0.051817364990711,-0.057028260082006],[-0.044972691684961,-0.002337675075978,0.053076084703207],[0.0058024562895298,-8.6637533968315e-05,-0.21589341759682]],[[0.061256352812052,0.039187982678413,0.045745026320219],[-0.049116298556328,0.10895853489637,-0.037062425166368],[0.049204848706722,0.12510965764523,0.064159087836742]],[[-0.079395785927773,0.018125381320715,0.021636819466949],[0.0076640071347356,-0.048990856856108,-0.1162988319993],[0.1214155331254,0.062532894313335,-0.017835456877947]],[[0.053645811975002,0.051587257534266,-0.018286377191544],[0.066995687782764,0.023213906213641,-0.11432278901339],[-0.030103286728263,0.015750462189317,-0.00090085377451032]],[[0.08769066631794,0.044667791575193,-0.16681930422783],[-0.10408610850573,-0.088784173130989,-0.05319743975997],[-0.1052128225565,-0.0057023442350328,-0.032549623399973]],[[0.057312533259392,-0.0709033831954,-0.093984268605709],[-0.0144844641909,-0.063535556197166,-0.068194232881069],[0.023546243086457,0.12706661224365,0.062906049191952]],[[-0.0046461829915643,-0.069747425615788,-0.070696659386158],[-0.010144088417292,0.059668410569429,0.035543441772461],[0.014333099126816,0.060931749641895,-0.030808867886662]],[[0.024432783946395,0.023626130074263,-0.019779302179813],[-0.018907155841589,-0.026682458817959,8.0713165516499e-05],[-0.040930405259132,0.089801281690598,0.18135134875774]],[[-0.018772389739752,-0.028191907331347,-0.17659011483192],[-0.035374473780394,0.046050053089857,-0.14494477212429],[0.11327680200338,0.015145474113524,-0.051572855561972]],[[-0.0076854443177581,0.12847769260406,0.11798823624849],[-0.15176913142204,0.032648641616106,0.029050003737211],[0.0096058147028089,0.097825810313225,0.035749293863773]],[[0.069478049874306,0.098612204194069,0.038352187722921],[0.039489079266787,-0.052399571985006,0.14638261497021],[-0.013191956095397,0.036240339279175,0.080021344125271]],[[0.054816592484713,-0.097337074577808,0.087524436414242],[-0.055705953389406,0.035448141396046,0.017831632867455],[-0.065365046262741,-0.082957722246647,-0.040654469281435]],[[0.069260761141777,-0.024151159450412,0.037504635751247],[-0.21743619441986,-0.03541674092412,-0.055479999631643],[-0.11145689338446,0.016589675098658,0.012516141869128]],[[-0.003905262099579,0.0014803257072344,0.062861420214176],[0.053810648620129,0.11717998981476,0.094265431165695],[0.058215588331223,-0.044469468295574,-0.10401147603989]],[[0.075406812131405,0.0031984690576792,-0.029930213466287],[0.032276835292578,0.038217581808567,-0.063646167516708],[0.088707000017166,-0.056754004210234,0.079957149922848]],[[-0.011572274379432,0.016793701797724,-0.076745137572289],[-0.044000964611769,0.0036389713641256,0.024858480319381],[0.047035772353411,0.083430580794811,0.12848111987114]],[[0.059857103973627,0.020470406860113,-0.16018033027649],[0.082499407231808,0.055577158927917,-0.16274909675121],[0.042230598628521,0.060803726315498,-0.080875247716904]],[[-0.031579975038767,-0.0096660489216447,0.042167164385319],[-0.10087767243385,-0.10945453494787,-0.03156965970993],[0.08481203019619,0.06299301981926,0.070128329098225]],[[-0.036846566945314,-0.028386831283569,0.093562468886375],[-0.063697725534439,0.01373287755996,-0.022997980937362],[-0.041403263807297,-0.03345725312829,-0.054983869194984]]],[[[-0.087199211120605,-0.088633313775063,-0.13120017945766],[-0.020793199539185,-0.068411938846111,-0.070140071213245],[-0.33711528778076,-0.18402326107025,-0.18863183259964]],[[0.057938121259212,-0.050219185650349,0.038409989327192],[0.059817478060722,0.018320398405194,-0.017406944185495],[-0.065810941159725,-0.043918255716562,-0.10042141377926]],[[-0.007889830507338,-0.013605925254524,-0.16036932170391],[-0.062556117773056,-0.10135430842638,-0.036528673022985],[-0.078602015972137,-0.042799960821867,-0.018157791346312]],[[-0.063662610948086,-0.10346321761608,-0.19543947279453],[0.043366052210331,-0.11125467717648,-0.054132387042046],[-0.096719481050968,0.016211709007621,0.055900249630213]],[[-0.027535324916244,0.0771773904562,-0.0052301646210253],[-0.035254266113043,-0.049486082047224,-0.15491871535778],[0.091387003660202,-0.019661378115416,0.00017969618784264]],[[0.005098064430058,-0.11722549796104,0.080178581178188],[-0.044163886457682,0.0014160883147269,-0.054951932281256],[0.1096525490284,-0.079578049480915,-0.012209857814014]],[[0.036269050091505,-0.059459812939167,0.064111061394215],[-0.0019267301540822,-0.050524782389402,0.020982893183827],[-0.14096653461456,-0.12577579915524,-0.19137336313725]],[[0.086869068443775,-0.13511754572392,-0.1365777105093],[-0.060092113912106,0.075633734464645,0.018638031557202],[0.053726129233837,0.098164066672325,0.01980284973979]],[[-0.25540092587471,-0.016945669427514,0.0086973849684],[-0.023473078384995,-0.11011601239443,-0.088255360722542],[-0.066398724913597,0.17071928083897,-0.013471402227879]],[[0.016116231679916,0.038630157709122,-0.035725433379412],[0.049474358558655,0.039002511650324,-0.0077741611748934],[0.0078965956345201,-0.13606338202953,-0.024409303441644]],[[0.042256463319063,0.021328570321202,-0.10313887894154],[0.019398180767894,0.045620433986187,-0.12008381634951],[-0.075196176767349,0.01709907874465,0.033976156264544]],[[0.073291435837746,-0.04688373953104,-0.028002886101604],[0.09815589338541,-0.0040978589095175,0.067123137414455],[-0.24031153321266,-0.022789660841227,-0.14581456780434]],[[-0.094351671636105,0.054314117878675,-0.023159680888057],[-0.016408549621701,-0.032401073724031,0.017419027164578],[-0.035427916795015,-0.0075136590749025,-0.030710276216269]],[[0.062941625714302,-0.018272688612342,0.032705835998058],[0.026898602023721,0.080819688737392,0.092316120862961],[-0.047153763473034,0.010811367072165,-0.082902766764164]],[[-0.10257662087679,0.0057485071010888,-0.019717251881957],[0.042638577520847,0.077608466148376,-0.066334776580334],[0.13714171946049,0.075220935046673,-0.094682902097702]],[[-0.17551630735397,-0.096019312739372,0.034018453210592],[-0.03573764488101,0.0049710404127836,-0.17380432784557],[-0.18225805461407,-0.063225872814655,-0.013201991096139]],[[0.23223352432251,0.048667769879103,-0.01359873637557],[-0.086629368364811,-0.078715689480305,-0.033064555376768],[-0.18982104957104,-0.11527961492538,-0.16468890011311]],[[0.04080817848444,-0.083723559975624,-0.13180306553841],[0.10979672521353,-0.0069078388623893,-0.0093865366652608],[0.080612473189831,-0.016594843938947,-0.032478023320436]],[[-0.14040422439575,-0.017215954139829,0.049871329218149],[-0.054106939584017,0.036028482019901,0.043278187513351],[-0.16229794919491,-0.032334469258785,-0.080534555017948]],[[0.086710684001446,-0.099878922104836,0.13026838004589],[-0.12391366064548,-0.16258607804775,-0.04137435182929],[0.10469967871904,-0.094925954937935,-0.12627282738686]],[[-0.092154987156391,-0.10421234369278,0.047737389802933],[-0.02483700029552,-0.20889887213707,-0.047964073717594],[-0.20253345370293,0.14156147837639,-0.094550043344498]],[[-0.10491829365492,-0.060412503778934,0.019511308521032],[0.023895546793938,0.04242655262351,0.005365215241909],[-0.0033845654688776,-0.041944909840822,-0.032561670988798]],[[0.13139949738979,-0.084407605230808,-0.027110291644931],[-0.17709919810295,0.078537575900555,-0.025883784517646],[-0.085830301046371,-0.11358858644962,-0.030969493091106]],[[0.097808659076691,-0.057826653122902,0.12298829108477],[0.034277517348528,0.12283400446177,0.14256158471107],[-0.20083530247211,-0.088762104511261,0.041621971875429]],[[-0.023804904893041,-0.034522205591202,-0.09810808300972],[-0.10043027997017,0.18397055566311,0.12000787258148],[0.37949016690254,-0.026890799403191,0.11880198866129]],[[0.040824115276337,0.082462571561337,-0.087362959980965],[-0.026420086622238,0.02614402025938,-0.012672734446824],[0.022463599219918,0.0012303333496675,-0.039626069366932]],[[0.00040813197847456,-0.080777324736118,-0.03526022657752],[0.057109531015158,0.053227107971907,0.077318117022514],[0.1286613047123,-0.0098117776215076,-0.040524855256081]],[[-0.1562557220459,-0.066067188978195,0.070827409625053],[-0.031701538711786,0.0027040462009609,-0.0097211850807071],[-0.073730014264584,0.046444963663816,-0.016550427302718]],[[0.035888519138098,-0.049813769757748,0.093486241996288],[0.050111658871174,0.066434353590012,-0.076343640685081],[0.0079320082440972,-0.041570268571377,0.078904047608376]],[[-0.096996434032917,0.056677855551243,-0.11161729693413],[-0.12649928033352,-0.052683211863041,0.14426799118519],[0.034721318632364,-0.046559292823076,-0.10221859067678]],[[-0.085178032517433,0.080322355031967,0.098165109753609],[0.061700385063887,0.022819565609097,-0.19325350224972],[-0.14156983792782,-0.054819475859404,0.082850366830826]],[[0.055103171616793,-0.032907515764236,0.081879854202271],[-0.030736990272999,-0.033114790916443,0.062762387096882],[0.069618105888367,0.084692679345608,0.039260223507881]],[[-0.040683180093765,-0.083833955228329,-0.01071750652045],[0.076085962355137,-0.099902674555779,0.13629412651062],[-0.072553478181362,0.060981161892414,0.044907417148352]],[[0.018313908949494,-0.05230800062418,-0.051251724362373],[0.044160217046738,-0.024601180106401,-0.029040370136499],[-0.039623614400625,-0.12082052230835,-0.053632378578186]],[[0.009081669151783,0.030866658315063,-0.041490260511637],[0.089422084391117,0.011846439912915,0.14698024094105],[0.00311762932688,0.00070045090978965,0.10030509531498]],[[-0.0091427704319358,0.057782549411058,0.077348761260509],[-0.066636957228184,-0.082660980522633,-0.0051163900643587],[0.11959013342857,-0.043746884912252,0.046232737600803]],[[0.056858096271753,0.0089182360097766,0.023727489635348],[0.30526012182236,0.013976157642901,0.10147529095411],[-0.21911047399044,-0.030123168602586,0.011316006071866]],[[-0.0079106269404292,0.0081941001117229,0.066666848957539],[-0.1160099580884,-0.055540218949318,-0.02537109144032],[0.10373356193304,0.016012363135815,-0.081691704690456]],[[-0.069256730377674,-0.11343672126532,0.06060379371047],[0.068794183433056,-0.057170368731022,0.037673741579056],[0.095450095832348,-0.18908381462097,-0.032552700489759]],[[0.0064773177728057,0.0089856004342437,0.057252824306488],[0.038462370634079,0.045118253678083,-0.038900461047888],[-0.060769233852625,-0.12534345686436,-0.14190745353699]],[[-0.059958200901747,-0.051539342850447,0.049208648502827],[-0.03658189997077,-0.075786501169205,-0.1038795337081],[-0.14028677344322,0.038321103900671,0.053681891411543]],[[-0.13406905531883,-0.078591175377369,0.021023847162724],[-0.064951173961163,-0.020323302596807,0.041628859937191],[-0.037835691124201,-0.15339516103268,-0.028169807046652]],[[-0.087175838649273,-0.1052163913846,-0.086491666734219],[0.023366328328848,0.0236612893641,-0.021868608891964],[0.20314779877663,-0.13007681071758,0.087736912071705]],[[-0.081705577671528,0.048349462449551,0.09802470356226],[-0.046942207962275,0.044766802340746,-0.020000923424959],[0.00038063561078161,0.00025425213971175,0.034630950540304]],[[-0.047223042696714,-0.1079231724143,0.090399116277695],[-0.032147075980902,-0.10938862711191,-0.10675540566444],[-0.07541099190712,0.015606672503054,0.00033870857441798]],[[-0.13776962459087,-0.014277659356594,0.032179158180952],[-0.10228091478348,-0.0049410513602197,0.042497485876083],[-0.17139814794064,-0.060670677572489,-0.043308563530445]],[[0.1771227568388,0.0053505231626332,0.076964057981968],[-0.1271505355835,-0.010723988525569,0.029491744935513],[0.066137693822384,-0.022431164979935,-0.13595463335514]],[[0.14718736708164,-0.014951643534005,-0.044041108340025],[-0.12179616093636,-0.014992341399193,-0.1012536585331],[-0.040018133819103,-0.16178646683693,-0.040971245616674]],[[-0.086151406168938,-0.078259959816933,0.064306929707527],[-0.098707765340805,0.13454629480839,-0.034463845193386],[0.011707189492881,-0.097972854971886,-0.032746285200119]],[[-0.10344564914703,-0.043161995708942,0.0021400495897979],[-0.02931959182024,-0.11738976091146,-0.030331719666719],[-0.035058725625277,-0.059951383620501,0.049995716661215]],[[-0.067184835672379,0.0094816563650966,0.026042444631457],[-0.19461537897587,-0.102673381567,-0.0046294378116727],[-0.099084205925465,-0.12766022980213,0.11459146440029]],[[-0.07628045976162,-0.049488287419081,0.048379682004452],[0.033554933965206,-0.02069771848619,0.042503371834755],[-0.0058083990588784,0.020869867876172,0.13186973333359]],[[-0.14100597798824,-0.13259975612164,-0.068054333329201],[0.1950415968895,0.072880871593952,0.069779053330421],[-0.19461174309254,-0.1328242123127,0.12875060737133]],[[-0.0083998506888747,-0.0069185928441584,0.039167836308479],[-0.005559257697314,-0.027099622413516,-0.12858429551125],[0.084100790321827,0.016957877203822,-0.032388728111982]],[[-0.026808883994818,0.084618307650089,-0.2133828997612],[0.1683314293623,-0.15050812065601,0.10252874344587],[-0.051402609795332,-0.074749410152435,0.1091438755393]],[[0.076770670711994,-0.022520553320646,0.018841309472919],[-0.037790812551975,0.099240377545357,-0.089682795107365],[0.11848700046539,-0.014887082390487,0.10833913832903]],[[0.20310685038567,0.057429552078247,0.014717672020197],[-0.13636481761932,0.045563910156488,-0.021306676790118],[0.11644592881203,-0.065992183983326,-0.0246935877949]],[[0.023856747895479,-0.083034716546535,-0.1011608093977],[-0.028976295143366,0.035470392554998,-0.00073238142067567],[-0.13362362980843,-0.10532411187887,-0.039254155009985]],[[0.00091711373534054,0.00015079505101312,0.016953967511654],[0.077717393636703,0.078001797199249,0.099757477641106],[0.038082651793957,0.077831223607063,0.032499622553587]],[[-0.073396652936935,-0.063571937382221,-0.058330211788416],[0.0012919171713293,-0.060038402676582,0.10442902892828],[0.055086269974709,0.049213159829378,0.062525294721127]],[[-0.049335520714521,-0.0044262069277465,-0.075634904205799],[-0.071854889392853,0.042485740035772,0.029730528593063],[-0.084551103413105,0.013296958990395,0.096128024160862]],[[-0.10047075152397,-0.070925921201706,-0.025232324376702],[0.043416943401098,0.028969699516892,-0.031710851937532],[-0.088753893971443,-0.042507275938988,0.025674605742097]],[[0.08224742859602,0.04218614846468,0.0039802836254239],[-0.042634412646294,0.091108500957489,0.084890849888325],[0.024064145982265,0.019451845437288,-0.046521428972483]],[[-0.004883925896138,-0.028088249266148,-0.070761755108833],[-0.14608953893185,-0.0083681475371122,-0.036609776318073],[0.0089574530720711,0.025379246100783,0.12343229353428]]],[[[-0.034497931599617,-0.0018081938615069,-0.11028730124235],[-0.08203349262476,0.012213870882988,-0.12924279272556],[0.081196635961533,-0.056657340377569,-0.034714605659246]],[[0.072835594415665,0.037897933274508,0.016584150493145],[-0.13081616163254,-0.16220676898956,-0.049338433891535],[-0.035085771232843,0.035772107541561,0.039849232882261]],[[-0.025696212425828,-0.21225574612617,0.038969155400991],[0.099546410143375,-0.093011952936649,-0.059555534273386],[0.045975111424923,-0.041665021330118,-0.06489310413599]],[[-0.030491420999169,0.0080937035381794,0.092504501342773],[-0.10528688132763,0.011818709783256,-0.056536320596933],[-0.17234064638615,-0.020481154322624,-0.12555950880051]],[[0.051227085292339,-0.010626731440425,-0.018579162657261],[-0.015681991353631,0.10226059705019,-0.095646739006042],[-0.088794313371181,-0.032228566706181,-0.043506663292646]],[[0.024693937972188,-0.023284118622541,0.0021179153118283],[-0.032286133617163,-0.083272054791451,-0.0043106060475111],[0.088030457496643,-0.15252830088139,-0.089879371225834]],[[-0.059096362441778,0.0013481315691024,-0.027078993618488],[0.07589053362608,0.01363855227828,0.11755096912384],[0.13394619524479,0.027007820084691,0.0093572288751602]],[[-0.012134251184762,0.020870845764875,0.062097642570734],[0.04497255384922,-0.12032079696655,-0.063850484788418],[-0.090869560837746,0.0349011272192,0.017283089458942]],[[0.12101775407791,0.076174661517143,0.025266425684094],[-0.1067429035902,0.0041062878444791,0.014762665145099],[-0.11924046278,0.05444160848856,-0.12106407433748]],[[-0.014266391284764,-0.0067869815975428,-0.1034524589777],[-0.069057025015354,-0.033765006810427,-0.053533185273409],[0.020470269024372,-0.10654585063457,0.0077017685398459]],[[0.017940493300557,0.062087632715702,0.043159414082766],[-0.05049829185009,0.089321278035641,0.004116621799767],[0.028755085542798,-0.039235532283783,-0.023690154775977]],[[0.0091645177453756,-0.085149057209492,-0.076127894222736],[0.049715310335159,-0.056352589279413,0.017912279814482],[0.062593705952168,-0.025221953168511,0.062234047800303]],[[-0.15913215279579,-0.00040312675992027,0.068786226212978],[-0.16535437107086,-0.054352425038815,-0.04377918690443],[-0.0791385024786,-0.03865135833621,0.024937571957707]],[[-0.23163336515427,-0.01580005697906,0.14636987447739],[-0.041766587644815,-0.03857895731926,-0.0930160805583],[0.12527444958687,-0.028919149190187,0.037732314318419]],[[0.077036000788212,0.020664310082793,-0.13916835188866],[-0.040230069309473,0.10685766488314,-0.026969650760293],[0.069471977651119,-0.086471810936928,-0.20641958713531]],[[-0.028181353583932,-0.1379791200161,0.099573910236359],[-0.11468154937029,-0.019281733781099,0.01993284188211],[-0.048165056854486,-0.071357116103172,0.017177755013108]],[[-0.10661537945271,0.052024874836206,0.054810043424368],[-0.029017671942711,-0.040068827569485,0.022582110017538],[0.027903132140636,-0.076135821640491,-0.053145587444305]],[[0.093083798885345,-0.089688032865524,-0.062992937862873],[0.077502869069576,0.071204923093319,0.0017546932213008],[0.10405339300632,0.085366681218147,0.086889192461967]],[[-0.042144361883402,0.049628037959337,0.090563148260117],[-0.021578086540103,-0.030882796272635,0.070364594459534],[-0.0737209841609,0.041707295924425,-0.0355613976717]],[[0.027913399040699,-0.045424144715071,-0.0438640601933],[0.029609454795718,-0.059379365295172,-0.072871200740337],[0.046347986906767,-0.14117427170277,-0.018396886065602]],[[0.045697901397943,-0.16642367839813,0.042106050997972],[0.041827209293842,0.040446925908327,0.039046138525009],[-0.055580209940672,0.15733867883682,-0.036073338240385]],[[0.010930459015071,-0.015840079635382,-0.055454310029745],[0.062043830752373,-0.03958510607481,-0.076922826468945],[-0.025905773043633,-0.010668843053281,0.0345458984375]],[[0.1135146021843,0.020955570042133,0.040129721164703],[-0.030472673475742,0.073229357600212,-0.028341060504317],[-0.079608052968979,-0.17684000730515,-0.08877831697464]],[[0.15823549032211,0.18130305409431,0.11333971470594],[-0.032392624765635,-0.11376189440489,0.23343724012375],[-0.1673109382391,-0.18388251960278,0.084178648889065]],[[-0.01720829308033,0.035033836960793,-0.17237138748169],[-0.19318675994873,-0.016981119289994,-0.039100632071495],[0.057030763477087,-0.029809495434165,0.055518288165331]],[[0.033068764954805,-0.065455228090286,0.0013190855970606],[-0.0038673433009535,-0.051185227930546,0.020312188193202],[0.058686126023531,0.0028446891810745,0.028367353603244]],[[0.063083976507187,0.031673531979322,-0.078897073864937],[0.11495833098888,0.1121824234724,-0.076492808759212],[0.29596054553986,0.039875589311123,0.12095876783133]],[[-0.022211480885744,-0.081621490418911,-0.15804247558117],[-0.013974091038108,0.13287681341171,0.0044856299646199],[0.0064400332048535,-0.03445964679122,0.003617116715759]],[[0.051916178315878,-0.11703627556562,-0.041123706847429],[-0.025910995900631,0.10979194194078,0.024580271914601],[-0.11975956708193,-0.1504345536232,0.01349909696728]],[[-0.026017405092716,0.070634633302689,-0.085676498711109],[-0.044491153210402,0.040696360170841,0.036271568387747],[0.20135994255543,-0.032303299754858,0.0025522219948471]],[[0.038705863058567,-0.042512752115726,0.16237360239029],[-0.042688827961683,-0.081570692360401,-0.0087783727794886],[-0.030887210741639,0.00037606447585858,-0.1116244494915]],[[-0.011607747524977,0.044761504977942,0.10122831165791],[0.047750152647495,-0.0083604287356138,0.059530414640903],[-0.12701101601124,0.037041991949081,0.030050033703446]],[[-0.031507436186075,0.017487930133939,-0.020704928785563],[0.053622175008059,0.018811656162143,-0.056697234511375],[0.10782703757286,0.12531410157681,0.16077500581741]],[[-0.04560973122716,-0.0062367976643145,-0.14834646880627],[-0.1249637901783,-0.092804729938507,-0.089060299098492],[0.044565610587597,0.069297090172768,0.045334696769714]],[[-0.073483370244503,0.060527466237545,0.00074668048182502],[-0.033021628856659,-0.17882725596428,-0.006641763728112],[0.018666356801987,-0.10287516564131,-0.052919611334801]],[[0.035898305475712,-0.035464696586132,0.060006484389305],[0.06604215502739,0.0064871697686613,0.070482701063156],[0.044481430202723,0.086391031742096,0.022159110754728]],[[-0.0064375069923699,-0.078906282782555,0.0024235756136477],[0.080862380564213,-0.0052651409059763,-0.1244805008173],[0.094249047338963,0.20489300787449,0.10524497181177]],[[-0.073231555521488,-0.1671127974987,-0.050094086676836],[0.059234827756882,-0.010918036103249,-0.098257780075073],[0.0098411962389946,-0.15973804891109,-0.10173007845879]],[[0.12214302271605,0.037415184080601,-0.064204104244709],[-0.051010873168707,-0.05422780290246,0.015486435033381],[-0.064406596124172,0.0085214078426361,-0.034117966890335]],[[0.11037804931402,0.020347092300653,-0.028635676950216],[0.02354072406888,0.087617971003056,0.073331840336323],[-0.092761978507042,-0.064933337271214,0.033931527286768]],[[-0.017137851566076,0.0038304696790874,0.045893616974354],[-0.069801509380341,0.0010932313743979,-0.28253456950188],[0.083788730204105,-0.022665748372674,-0.13087828457355]],[[-0.082182385027409,0.064057737588882,-0.1551446467638],[-0.16586828231812,-0.093946360051632,0.033998623490334],[-0.058252558112144,-0.29385089874268,0.1011234074831]],[[-0.12196336686611,0.10100598633289,-0.06926666200161],[-0.026598308235407,-0.015297450125217,0.076158136129379],[0.0044094477780163,-0.035228222608566,-0.039140801876783]],[[-0.062819950282574,0.018096223473549,-0.043450903147459],[0.034604355692863,-0.087869234383106,0.061593979597092],[0.074999123811722,-0.056312460452318,0.14831064641476]],[[0.10830151289701,0.020722724497318,-0.026149285957217],[-0.10204979032278,0.037164483219385,0.010551173239946],[0.1582745462656,-0.01931463368237,0.014945448376238]],[[-0.060575872659683,0.017624193802476,-0.055561244487762],[-0.019126260653138,-0.023416325449944,-0.021133502945304],[0.040231503546238,0.14188148081303,-0.12239632755518]],[[0.20985868573189,0.031785570085049,-0.16174620389938],[0.094798713922501,0.034590199589729,-0.057761393487453],[-0.0078178439289331,-0.039170008152723,0.086254723370075]],[[-0.001507903682068,-0.067346587777138,0.092693194746971],[0.16213904321194,-0.0088729849085212,-0.011696553789079],[0.014441528357565,0.013337912037969,0.053115654736757]],[[-0.1128857806325,0.021178964525461,-0.13185824453831],[-0.025448041036725,-0.043980401009321,-0.05671051889658],[0.10012739151716,-0.043180625885725,0.035505570471287]],[[0.028475752100348,-0.095766887068748,-0.24990962445736],[0.13499487936497,-0.043740913271904,-0.028885597363114],[0.25618568062782,0.17602793872356,0.17139250040054]],[[-0.12651476264,-0.10130354762077,0.068002067506313],[-0.036577615886927,-0.019759207963943,0.15291014313698],[0.086598269641399,-0.10051371157169,0.054216604679823]],[[0.05499354377389,0.014007688499987,-0.0057507818564773],[-0.063128679990768,0.13140293955803,0.15158484876156],[-0.060455117374659,0.14836023747921,0.20497238636017]],[[-0.052341103553772,0.029642380774021,0.09285843372345],[-0.021271558478475,-0.17771375179291,-0.096513688564301],[-0.14749197661877,-0.042493063956499,7.4968702392653e-05]],[[0.054177612066269,0.081839606165886,0.032290562987328],[-0.0012131417170167,-0.0034201149828732,0.065459534525871],[-0.029148610308766,-0.063678003847599,0.15231132507324]],[[0.067005433142185,0.063038267195225,-0.020202217623591],[-0.082669422030449,-0.10414967685938,0.065900325775146],[0.14836823940277,-0.01730190962553,0.12564353644848]],[[-0.068993985652924,-0.022239470854402,0.085493788123131],[0.061427671462297,0.001225559739396,0.047046285122633],[0.021334983408451,-0.017339989542961,-0.033171474933624]],[[-0.056067138910294,0.065610125660896,0.031582769006491],[-0.023542733862996,-0.039532322436571,-0.084613859653473],[-0.050691206008196,0.1068551838398,-0.066436752676964]],[[0.062339853495359,-0.02253452129662,0.0082144923508167],[0.014078080654144,-0.040071569383144,-0.10014703124762],[-0.039010874927044,0.057901717722416,-0.12679553031921]],[[0.012529690749943,0.024990878999233,0.074152186512947],[0.09235455095768,0.050045356154442,0.025714073330164],[0.050599724054337,0.048873342573643,-0.0030233468860388]],[[-0.12180981785059,-0.011762654408813,-0.0071498644538224],[0.090361468493938,-0.03038234077394,-0.12206805497408],[0.10763215273619,0.078271679580212,0.15679274499416]],[[-0.061162129044533,0.084769606590271,0.0065610054880381],[-0.063441567122936,-0.0091003589332104,0.095019094645977],[0.016661245375872,-0.08023688942194,0.041729394346476]],[[0.057298701256514,-0.018401185050607,-0.080408982932568],[0.014264792203903,-0.0014503041747957,-0.033752918243408],[0.12308196723461,-0.018183939158916,-0.031185397878289]],[[-0.025177009403706,-0.089431643486023,-0.033169031143188],[0.092375829815865,-0.048022728413343,-0.043477132916451],[0.10506877303123,0.058236889541149,-0.08057364821434]],[[0.064673885703087,-0.034933313727379,0.1073460355401],[-0.17890830338001,-0.0537437684834,0.037124279886484],[-0.048992283642292,0.10547357797623,-0.045163575559855]]],[[[0.026727894321084,-0.11424268037081,-0.10532131791115],[0.085378535091877,0.014615297317505,-0.017262285575271],[-0.046930801123381,0.018149707466364,-0.15415550768375]],[[-0.061608694493771,-0.23133905231953,-0.1817003339529],[-0.051798202097416,-0.079018294811249,-0.045979436486959],[0.23888185620308,0.036637667566538,-0.056595336645842]],[[-0.1624259352684,0.04508825391531,-0.096264623105526],[-0.058608673512936,0.0084348283708096,-0.052791561931372],[-0.017109178006649,-0.046381074935198,0.010117112658918]],[[0.02294772490859,0.027038410305977,0.0092050228267908],[-0.19411534070969,0.0056743957102299,0.0019129649735987],[0.13124108314514,0.023100819438696,-0.10699681937695]],[[0.039953798055649,-0.025697018951178,-0.050376452505589],[-0.0030717167537659,-0.00010298754932592,0.065826192498207],[0.083095282316208,0.076004527509212,-0.055718462914228]],[[-0.1676212400198,-0.0030532949604094,-0.078548513352871],[-0.074572324752808,-0.080970458686352,0.025580471381545],[0.028533425182104,-0.0026656161062419,0.070872269570827]],[[0.024524513632059,-0.0024180845357478,-0.0016220953548327],[-0.011156777851284,0.01022391859442,-0.00066412636078894],[0.012493141926825,0.086242265999317,-0.028517033904791]],[[-0.073548182845116,0.034228563308716,-0.028550416231155],[-0.075527556240559,0.051485866308212,0.023216016590595],[0.038674529641867,0.12096077948809,0.087444953620434]],[[0.0009953643893823,0.015369638800621,-0.055610489100218],[0.019202379509807,0.017002552747726,0.079229302704334],[0.057021461427212,-0.019526589661837,0.10065495967865]],[[-0.057881750166416,-0.0089239832013845,-0.08220249414444],[-0.030840676277876,-0.024669710546732,-0.056408111006021],[0.20248727500439,0.04428980499506,-0.024254538118839]],[[0.0057948082685471,0.016569441184402,-0.10104798525572],[0.017512079328299,-0.052055556327105,-0.11792883276939],[-0.15073436498642,-0.10693779587746,-0.030899537727237]],[[-0.011478446424007,0.0094914631918073,-0.10495617985725],[-0.01188543625176,0.040811628103256,-0.073430120944977],[0.015408682636917,-0.0071426103822887,-0.13230623304844]],[[0.051716510206461,-0.092176206409931,-0.028273485600948],[-0.021183652803302,-0.056233942508698,-0.00039599556475878],[0.07210611552,0.01107666362077,0.019670264795423]],[[0.11401925235987,0.062208417803049,0.021310724318027],[0.10060261934996,0.040017537772655,-0.037220306694508],[0.088086612522602,0.11215321719646,-0.077934250235558]],[[-0.04958551004529,0.055226992815733,0.078478455543518],[-0.037063751369715,0.032207060605288,-0.041502773761749],[-0.0081276660785079,-0.10989648848772,-0.13135454058647]],[[0.059001035988331,-0.10983549058437,-0.0085683343932033],[0.016180148348212,-0.07561019808054,-0.080058231949806],[-0.026353467255831,-0.014039510861039,0.10332211852074]],[[-0.025383716449142,0.043426390737295,0.035841662436724],[0.046762105077505,-0.010711860843003,-0.0016044661169872],[-0.023177076131105,-0.059923339635134,-0.0602672919631]],[[-0.15105900168419,-0.06597850471735,-0.11080968379974],[-0.050965949892998,-0.011241334490478,-0.021285766735673],[0.048211630433798,0.09342260658741,-0.0020368942059577]],[[-0.22830510139465,-0.042071763426065,0.0062459390610456],[-0.033838797360659,0.02627662755549,0.059325229376554],[0.034807857125998,-0.048783972859383,0.052255615592003]],[[-0.16136632859707,-0.084099993109703,-0.058737110346556],[-0.13527245819569,-0.033382829278708,-0.077109076082706],[0.040104150772095,-0.038231622427702,0.14214836061001]],[[-0.066783279180527,-0.020213555544615,-0.021589690819383],[-0.083845086395741,-0.026513269171119,0.0053700101561844],[0.034083180129528,-0.089514844119549,0.062543705105782]],[[-0.10386153310537,-0.020594030618668,-0.040563113987446],[-0.051225606352091,-0.0016212930204347,-0.041940074414015],[0.013414736837149,0.055798016488552,0.012230476364493]],[[-0.062073774635792,-0.040664050728083,0.045430287718773],[-0.075958944857121,-0.039900589734316,-0.021451815962791],[-0.027817433699965,-0.065165989100933,0.041636288166046]],[[-0.073955520987511,0.075641967356205,0.11082842946053],[0.089322254061699,-0.01815927401185,-0.0014660854358226],[-0.019050190225244,-0.087628908455372,0.022053876891732]],[[0.14188957214355,0.12837529182434,0.23015630245209],[-0.011679081246257,-0.090978659689426,0.12884405255318],[-0.097926028072834,-0.052208758890629,-0.0085950149223208]],[[0.081217356026173,0.0087564364075661,-0.066741243004799],[-0.038295160979033,0.064508564770222,-0.0003809422487393],[0.014957661740482,-0.025999624282122,-0.073900386691093]],[[-0.044450893998146,0.023061638697982,0.021896561607718],[-0.0068194903433323,0.027567012235522,0.04726530611515],[0.027505226433277,0.097249709069729,0.041960828006268]],[[-0.083152823150158,0.059281893074512,0.05352970212698],[-0.070693761110306,0.05214761570096,-0.0032374877482653],[0.032731361687183,0.022141262888908,-0.027249583974481]],[[-0.084068268537521,-0.11163831502199,-0.031670596450567],[-0.0039743068628013,-0.044796079397202,0.028807634487748],[0.10696300119162,-0.087198324501514,-0.067025624215603]],[[-0.087670311331749,0.0079128015786409,-0.0963469222188],[-0.085579544305801,0.086824208498001,-0.038202088326216],[0.0023145340383053,0.11313723027706,0.0083313882350922]],[[-0.073614932596684,0.027040403336287,0.10989700257778],[0.031094977632165,0.061560317873955,0.09437794983387],[-0.075992494821548,0.12286702543497,0.052511554211378]],[[0.15753190219402,0.067771919071674,0.012349050492048],[-0.066063717007637,0.0025493917055428,-0.019354650750756],[-0.017135137692094,-0.10829991102219,-0.029338674619794]],[[0.042823489755392,-0.061565786600113,-0.081334546208382],[0.049779869616032,-0.011267556808889,-0.067822806537151],[0.02139100804925,0.0050823027268052,0.069761425256729]],[[0.070698149502277,0.11461700499058,0.092989735305309],[-0.015667077153921,0.033166006207466,0.049345798790455],[0.037348009645939,0.092799909412861,0.073402658104897]],[[-0.13278383016586,-0.087580725550652,-0.05341574922204],[-0.077334187924862,-0.037816856056452,0.0010351119562984],[-0.042446844279766,-0.039756465703249,0.053103677928448]],[[0.13930802047253,0.019889622926712,0.10345800220966],[0.030445909127593,-0.057537328451872,0.005260516423732],[0.0055479472503066,-0.026953047141433,-0.06769897043705]],[[0.090013787150383,0.040421716868877,0.073881700634956],[-0.062043104320765,-0.07328587025404,0.015797812491655],[-0.12401834875345,-0.097969993948936,-0.026939643546939]],[[-0.049818132072687,-0.10459289699793,0.0080054728314281],[-0.059635952115059,0.018615094944835,-0.070017136633396],[0.03335352614522,0.080280773341656,0.018904453143477]],[[0.0055422517471015,0.041051138192415,-0.014239152893424],[0.05400974676013,0.010228442959487,0.003244164865464],[0.045658364892006,0.00077026023063809,-0.027395149692893]],[[0.0086491461843252,-0.076546892523766,-0.015286376699805],[0.006071338430047,-0.047529891133308,0.0020076262298971],[0.090173050761223,0.042963109910488,0.025192268192768]],[[-0.0038553413469344,-0.13249754905701,-0.015738323330879],[0.024452198296785,-0.034566957503557,-0.03640877828002],[-0.0020525380969048,-0.017962863668799,0.10942567139864]],[[0.0065007922239602,-0.12261167913675,0.012720545753837],[0.065299399197102,-0.016509449109435,-0.015742609277368],[0.062764346599579,-0.0085158264264464,-0.051163166761398]],[[-0.025897987186909,-0.096748776733875,0.016882464289665],[-0.060200523585081,-0.13334463536739,0.020584113895893],[-0.02525938116014,-0.25921675562859,-0.10411623120308]],[[-0.22053289413452,-0.16171109676361,0.039124827831984],[-0.031814184039831,-0.063436210155487,-0.0058888355270028],[0.0017902967520058,0.078296907246113,0.10655976831913]],[[-0.15693534910679,-0.021586038172245,-0.161889731884],[-0.06360824406147,-0.024620991200209,-0.069315530359745],[-0.043094821274281,0.056251637637615,0.05356714874506]],[[0.038428146392107,0.020051304250956,0.078477375209332],[-0.013723639771342,-0.043472412973642,0.011579320766032],[-0.0713050365448,-0.071835495531559,0.05014930665493]],[[0.033088602125645,-0.059226408600807,0.022286858409643],[0.064911104738712,-0.032392229884863,0.060308646410704],[-0.043478064239025,0.070179402828217,0.054789587855339]],[[0.09085888415575,0.054580062627792,0.21397952735424],[0.013792620040476,0.05825687199831,0.05370445176959],[-0.11257464438677,0.0077402242459357,0.071349203586578]],[[0.074233509600163,0.070377081632614,0.017919233068824],[0.011445889249444,0.082186408340931,-0.065830044448376],[-0.053414762020111,0.032157655805349,-0.029193095862865]],[[-0.066085711121559,0.074578948318958,-0.092124000191689],[0.018893817439675,0.0087975515052676,-0.048116739839315],[0.078149780631065,-0.045545298606157,-0.031755026429892]],[[0.096237666904926,0.075032226741314,-0.067134633660316],[-0.030663697049022,-0.012403042986989,-0.029194179922342],[-0.14335554838181,-0.13269513845444,-0.11860260367393]],[[-0.079931549727917,0.018113307654858,-0.032898563891649],[-0.017841957509518,0.057672332972288,-0.069451928138733],[-0.030981855466962,0.05822666361928,-0.076060771942139]],[[0.033954471349716,0.00029018984059803,0.020544482395053],[-0.050615005195141,-0.083595454692841,0.023913526907563],[0.02543600089848,-0.071359142661095,0.035023219883442]],[[0.050947096198797,0.11391898244619,0.062689699232578],[0.062219876796007,0.035858038812876,-0.049296867102385],[-0.13899305462837,-0.055189982056618,-0.059588216245174]],[[-0.026252524927258,-0.16567133367062,-0.12065254151821],[0.058387141674757,0.042552199214697,-0.042657054960728],[0.077871598303318,-0.045043766498566,0.073963269591331]],[[0.034197568893433,0.017444105818868,-0.048621382564306],[-0.028053453192115,0.03016522154212,0.052174612879753],[-0.04300769791007,0.025295527651906,-0.027297073975205]],[[-0.08943647891283,0.099539086222649,-0.012055301107466],[0.13267084956169,0.035134233534336,-0.032117158174515],[0.058814413845539,-0.0094256810843945,-0.029718700796366]],[[-0.099421203136444,-0.070418901741505,-0.06215363740921],[-0.010773503221571,-0.071168027818203,-0.047500938177109],[0.12888611853123,0.035531647503376,-0.0045352862216532]],[[0.083132863044739,0.16949267685413,0.11770987510681],[0.078974574804306,-0.013765667565167,0.091605089604855],[-0.036580979824066,-0.033626694232225,0.037894628942013]],[[-0.098103180527687,-0.15147158503532,0.02325502038002],[-0.034415684640408,-0.02605065703392,-0.030997855588794],[-0.083951011300087,-0.11186467111111,0.044596251100302]],[[0.036746881902218,0.084749154746532,0.13127556443214],[0.090657740831375,0.028687667101622,0.064942978322506],[0.038289949297905,0.011082570999861,0.083634182810783]],[[-0.038538951426744,-0.10426849126816,-0.089859142899513],[0.020062405616045,-0.016944818198681,-0.15599231421947],[0.15294940769672,-0.013795930892229,-0.034597139805555]],[[0.14770448207855,-0.0204734262079,0.031223168596625],[0.043997820466757,0.095790043473244,-0.16058729588985],[-0.023925116285682,0.10844229161739,0.03685537725687]],[[-0.049977615475655,-0.010379176586866,-0.085416175425053],[0.01238305773586,0.095441959798336,-0.04186200723052],[0.04479331150651,0.007684666197747,-0.038236524909735]]],[[[-0.06485965102911,-0.0072425957769156,0.093660779297352],[-0.036682214587927,-0.036539483815432,0.02056822925806],[-0.026919741183519,0.062237836420536,-0.037028539925814]],[[0.07004726678133,-0.010669400915504,0.17823599278927],[-0.0038332140538841,0.12375321984291,0.048550948500633],[-0.032018590718508,0.045617271214724,0.0051178643479943]],[[0.032083373516798,0.0013290023198351,0.04333309084177],[-0.057882182300091,-0.11319721490145,-0.048039875924587],[-0.089497089385986,-0.018780017271638,-0.047748759388924]],[[-0.005028311163187,0.035437069833279,0.062751777470112],[0.067788258194923,-0.043949123471975,-0.11485552042723],[-0.029764570295811,0.0097246775403619,0.035482183098793]],[[-0.094360619783401,0.0034530125558376,-0.056344911456108],[-0.027507491409779,0.059989053755999,-0.18315157294273],[-0.018932949751616,-0.0063159796409309,0.11575309932232]],[[0.022406529635191,-0.15535973012447,0.052803382277489],[-0.017931796610355,0.059824120253325,-0.079249732196331],[-0.094799965620041,-0.08458986133337,-0.10282852500677]],[[-0.0041488227434456,0.11558046191931,-0.18329004943371],[-0.083057157695293,-0.040639601647854,-0.14924085140228],[0.018986949697137,0.046926964074373,-0.086927801370621]],[[0.05596774443984,0.10976917296648,-0.12016661465168],[0.055723909288645,-0.096901372075081,-0.030648000538349],[-0.025846499949694,-0.09578999131918,0.01650015078485]],[[-0.080028004944324,-0.099757693707943,-0.031725458800793],[-0.045202970504761,0.012839859351516,-0.012201751582325],[-0.037365458905697,-0.10401298105717,-0.0028786275070161]],[[0.097450070083141,0.014926176518202,-0.095484770834446],[-0.026136787608266,-0.068216614425182,-0.040773972868919],[-0.03768340498209,-0.024897381663322,0.016087839379907]],[[-0.011333093047142,-0.032354380935431,0.24296428263187],[0.0168796479702,0.01482080295682,-0.053011476993561],[-0.072760052978992,0.0062792049720883,-0.089843101799488]],[[0.17310212552547,-0.023972816765308,-0.17667743563652],[-0.008995889686048,0.093864142894745,0.017640683799982],[-0.0049465885385871,-0.027477024123073,0.049338437616825]],[[0.15501403808594,-0.0089794890955091,0.053034588694572],[-0.23923833668232,0.051639724522829,-0.098525278270245],[-0.018052140250802,-0.17644010484219,0.071184031665325]],[[-0.14744208753109,-0.093443818390369,-0.061779875308275],[-0.040092423558235,0.018473610281944,-0.036684703081846],[-0.09359110891819,0.026410140097141,0.13743005692959]],[[-0.15523308515549,0.14579258859158,-0.11178599298],[0.0014405066613108,-0.067594334483147,0.042079664766788],[0.033332020044327,0.083941854536533,-0.020589543506503]],[[-0.01375045068562,-0.045007705688477,0.0082180351018906],[-0.11550640314817,0.0075137480162084,-0.12851782143116],[-0.071339011192322,0.069037571549416,0.002134169684723]],[[-0.065671093761921,-0.10097555071115,0.11968257278204],[0.0010061985813081,-0.086222529411316,-0.013117107562721],[0.0032247425988317,0.029896203428507,-0.044287528842688]],[[-0.047907032072544,0.014116919599473,-0.053612548857927],[0.024530814960599,-0.07307855039835,-0.018467435613275],[0.0043864059261978,-0.01738035492599,-0.054464504122734]],[[0.012440962716937,0.029932171106339,0.0047171390615404],[-0.022620951756835,-0.093063235282898,-0.095987439155579],[-0.14642822742462,-0.017048425972462,-0.0028352350927889]],[[-0.10318189114332,-0.015091181732714,-0.019318543374538],[-0.024508802220225,-0.013567171059549,0.02040252648294],[-0.099270582199097,0.075157150626183,0.02770884335041]],[[0.052968993782997,0.16138195991516,0.068044900894165],[0.068929098546505,-0.084115877747536,0.14729733765125],[0.0074802376329899,0.034371435642242,-0.01877767033875]],[[-0.051050074398518,0.051137216389179,0.052649687975645],[-0.021341916173697,-0.017756473273039,0.012914790771902],[0.0038203469011933,-0.087627902626991,-0.044801656156778]],[[-0.026573078706861,-0.038228891789913,0.090872973203659],[-0.029147386550903,0.10003937035799,-0.083770960569382],[-0.076786383986473,-0.065705209970474,-0.026101151481271]],[[0.01459926366806,-0.018968529999256,0.072881795465946],[0.09243968129158,0.014648497104645,0.09378607571125],[-0.022196164354682,0.06032095476985,0.13664998114109]],[[0.060684237629175,-0.043445821851492,-0.060118589550257],[0.081894189119339,0.098003447055817,0.019733240827918],[0.0032050299923867,0.072917155921459,0.12606419622898]],[[0.030709115788341,0.010402520187199,0.01844010874629],[-0.037256892770529,-0.028471002355218,0.024300999939442],[-0.030472911894321,0.016722002997994,-0.002804999705404]],[[-0.0072738062590361,0.061049427837133,-0.053958654403687],[0.018076511099935,0.083570562303066,-0.10155119001865],[0.050097014755011,-0.027316223829985,0.027378991246223]],[[-0.054272763431072,-0.11353812366724,-0.074327826499939],[-0.020926032215357,0.051893346011639,0.02142333984375],[-0.03531801700592,0.11019003391266,-0.1248841136694]],[[-0.065380580723286,0.014995623379946,0.057738650590181],[-0.00053149095037952,-0.099292509257793,-0.062625132501125],[-0.17010778188705,-0.047448016703129,-0.10927410423756]],[[-0.086991935968399,0.014496962539852,0.08069883286953],[-0.0029561365954578,-0.037340462207794,-0.072205848991871],[0.024106584489346,-0.15285086631775,-0.0046008178032935]],[[0.031450286507607,-0.027041096240282,0.059222389012575],[0.1340224891901,-0.11822845041752,0.048039887100458],[0.14904199540615,-0.10802529007196,0.1545152515173]],[[-0.12155060470104,0.16210162639618,0.10699485987425],[-0.062478087842464,0.049015678465366,-0.010580875910819],[0.11006140708923,0.047413300722837,0.015216564759612]],[[-0.04072293266654,-0.0020195522811264,0.068250000476837],[0.036375381052494,0.011083129793406,-0.012250759638846],[-0.10628566145897,0.082910291850567,0.0030381891410798]],[[-0.087017931044102,0.040921065956354,0.0031827499624342],[-0.014556989073753,0.017275802791119,0.040526945143938],[-0.029434280470014,-0.097444787621498,0.018935142084956]],[[0.025431120768189,-0.15234751999378,-0.10087391734123],[-0.12721200287342,-0.11017625778913,-0.053489584475756],[-0.0091724125668406,-0.10424999892712,0.030230052769184]],[[0.0063336542807519,0.047780986875296,-0.068447694182396],[-0.0011431362945586,0.024989588186145,0.1834891140461],[0.060203239321709,-0.018262742087245,0.037817474454641]],[[0.022040098905563,-0.22646644711494,0.074659958481789],[-0.016392033547163,-0.039056919515133,0.070600338280201],[-0.0029442629311234,-0.16393712162971,0.00048002906260081]],[[-0.044612396508455,-0.035676270723343,-0.08074901252985],[-0.010554689913988,0.024039449170232,-0.049964368343353],[0.06929536908865,-0.0094462120905519,0.045089870691299]],[[0.0099563095718622,-0.065226070582867,-0.12185064703226],[0.038132533431053,0.0086797010153532,-0.097643598914146],[-0.086126662790775,-0.056247655302286,-0.12439373135567]],[[-0.10039222985506,-0.063103705644608,-0.096773982048035],[-0.053783237934113,-0.1338157504797,-0.038377340883017],[-0.027791785076261,-0.023128721863031,0.13365216553211]],[[0.15061315894127,0.024286337196827,0.017297010868788],[0.02699021063745,0.021513981744647,-0.0049437955021858],[0.014658819884062,0.0020281057804823,-0.061484284698963]],[[-0.11036927253008,0.040692288428545,0.0015742458635941],[-0.10652144253254,-0.0567606985569,-0.11048585921526],[-0.044186878949404,0.033044952899218,-0.048910193145275]],[[-0.021925620734692,-0.025913311168551,0.013527499511838],[-0.076553396880627,-3.5432109143585e-05,-0.017008887603879],[-0.10358533263206,0.014308265410364,0.082331828773022]],[[-0.078217037022114,0.28522232174873,-0.023131836205721],[0.019533200189471,-0.017009351402521,0.13165363669395],[-0.1086251437664,-0.0025482836645097,0.0073334551416337]],[[-0.041138213127851,-0.037686552852392,-0.21240900456905],[-0.10555946081877,-0.014910197816789,0.050558604300022],[-0.02283557318151,0.13128893077374,-0.047451786696911]],[[-0.006147613748908,-0.10240259766579,-0.020729172974825],[-0.0082468818873167,0.10516599565744,-0.054239857941866],[0.06916306912899,-0.036741085350513,0.028929304331541]],[[0.0401008464396,0.060021299868822,0.044812563806772],[-0.03476221114397,-0.023134026676416,0.043197710067034],[0.021912563592196,-0.027141084894538,0.092295929789543]],[[-0.11583065986633,0.0085156196728349,0.036052476614714],[0.027605302631855,-0.017697555944324,0.17532850801945],[-0.12378214299679,-0.004336139652878,-0.1160519644618]],[[0.092630513012409,-0.028341902419925,-0.029142275452614],[0.097489416599274,-0.079488217830658,0.012026762589812],[0.050042897462845,-0.0011499451939017,-0.11053974181414]],[[-0.067636728286743,0.22128774225712,0.039080381393433],[-0.010491439141333,0.014883516356349,0.090532891452312],[-0.015312024392188,-0.11546748131514,0.019542137160897]],[[0.094383552670479,0.046514250338078,0.064191184937954],[0.11526922136545,0.00022936257300898,-0.10625620931387],[0.065037593245506,0.022259913384914,0.10521797090769]],[[0.31179887056351,-0.15356861054897,0.0039632790721953],[-0.1257913261652,0.059990905225277,0.015296654775739],[-0.026235222816467,-0.027776187285781,0.06247553229332]],[[0.10057391226292,-0.19958187639713,0.20094142854214],[0.026631897315383,0.049913831055164,-0.067746981978416],[-0.022495403885841,0.10841496288776,0.012549462728202]],[[0.16771911084652,0.076833926141262,-0.097902581095695],[0.075615599751472,-0.0054003614932299,-0.028423063457012],[-0.0010910157579929,0.072638370096684,0.028160808607936]],[[-0.17528830468655,0.00626081507653,0.087134279310703],[-0.097032107412815,-0.024581138044596,-0.085839726030827],[0.058319073170424,-0.0018361245747656,-0.10657148808241]],[[-0.15203033387661,0.072129957377911,0.049136575311422],[0.11185395717621,-0.065583318471909,-0.015955723822117],[0.053579494357109,-0.080719299614429,0.015602826140821]],[[0.099954821169376,-0.10319059342146,0.19635356962681],[0.11264172196388,-0.033479586243629,0.045165505260229],[-0.078126095235348,0.068984411656857,0.0045320726931095]],[[-0.046099983155727,-0.0013663385761902,0.11115464568138],[-0.017555804923177,0.026259122416377,-0.020964581519365],[-0.071774668991566,0.024666612967849,-0.029621297493577]],[[0.060110915452242,0.14696975052357,-0.03893867880106],[0.028508538380265,0.070284582674503,0.039467304944992],[0.078322052955627,-0.005845352075994,-0.020727219060063]],[[-0.038016699254513,-0.20851373672485,0.012644242495298],[-0.11240211129189,-0.13971473276615,0.016684278845787],[-0.12316647171974,0.047291625291109,-0.02284974604845]],[[0.034695960581303,-0.011423073709011,-0.054885897785425],[0.057009603828192,0.0087199676781893,-0.1269321590662],[0.019085956737399,-0.17834600806236,0.067856878042221]],[[-0.16443645954132,-0.086759880185127,-0.067264087498188],[-0.052634477615356,0.0092467600479722,-0.15147742629051],[-0.17793028056622,-0.072450526058674,0.10635636001825]],[[0.07287834584713,-0.0027658350300044,0.029174959287047],[-0.066804006695747,0.14062263071537,0.061865869909525],[-0.026858007535338,0.061888296157122,0.026614066213369]],[[0.014876561239362,0.042823042720556,0.014698650687933],[0.04193926975131,-0.013045991770923,-0.059565547853708],[0.004414583556354,-0.016709854826331,-0.053774211555719]]],[[[-0.091510161757469,-0.051138643175364,-0.09150692075491],[0.037683121860027,-0.07351329177618,0.076811879873276],[-0.12929765880108,-0.084152303636074,-0.044098600745201]],[[-0.15811270475388,0.0070644808001816,-0.14635697007179],[0.13672862946987,0.043256666511297,-0.035179037600756],[-0.38740268349648,-0.085663489997387,-0.058004163205624]],[[0.03418230637908,-0.092998564243317,-0.15887703001499],[-0.14752006530762,-0.08319079875946,-0.10661155730486],[-0.074958764016628,-0.052307311445475,0.063440330326557]],[[0.0033078074920923,0.058703925460577,0.025735823437572],[-0.077455006539822,-0.07562243193388,-0.203409537673],[0.012860984541476,-0.11103270202875,-0.021743066608906]],[[-0.06207637116313,0.052723526954651,0.023531870916486],[0.019970444962382,0.05164035782218,0.21835120022297],[-0.080538533627987,-0.15665140748024,-0.20362578332424]],[[0.037181708961725,-0.049586839973927,-0.079438522458076],[-0.10951519012451,0.058177467435598,-0.062144089490175],[-0.013119759038091,0.10519830882549,-0.011848672293127]],[[-0.11028473824263,-0.050523761659861,-0.021823616698384],[-0.034843720495701,-0.020697396248579,-0.035203453153372],[-0.056190229952335,-0.17150637507439,0.071699261665344]],[[-0.046485006809235,0.0067384843714535,0.11222552508116],[-0.13052178919315,-0.075340092182159,-0.016658715903759],[0.069200567901134,0.057976938784122,-0.013097384944558]],[[-0.078231126070023,-0.012521442957222,-0.041487276554108],[0.17090067267418,0.095547758042812,-0.0072326138615608],[-0.16623932123184,-0.077861122786999,0.022858181968331]],[[0.032579276710749,-0.054205719381571,-0.093556083738804],[-0.1093093007803,-0.10842895507812,0.13366287946701],[-0.091639138758183,-0.025104660540819,-0.074636705219746]],[[-0.09550616145134,0.11889496445656,0.1035171225667],[-0.10356341302395,-0.081328548491001,-0.18848726153374],[0.0034797003027052,0.04638672247529,-0.10815428197384]],[[0.1194005087018,0.045708362013102,0.12584726512432],[-0.14054550230503,-0.07463788241148,-0.16306225955486],[-0.093399472534657,-0.058764595538378,-0.017830561846495]],[[-0.13134968280792,0.10517333447933,-0.0064516337588429],[0.19416326284409,-0.13590627908707,-0.094784043729305],[-0.074074991047382,0.04123879596591,-0.04895681142807]],[[0.10248266160488,-2.1977804863127e-05,-0.15685667097569],[0.030755857005715,0.10571677237749,0.14845164120197],[-0.090323351323605,0.061835452914238,0.10862220823765]],[[-0.23452661931515,-0.031270734965801,0.16919243335724],[-0.067858375608921,-0.073410160839558,-0.039328280836344],[-0.12148956209421,-0.007985427044332,-0.10035268217325]],[[0.017454044893384,0.11530826985836,-0.027732389047742],[0.022099440917373,-0.21560706198215,0.039503622800112],[0.15999139845371,0.063616193830967,-0.022459432482719]],[[-0.17540192604065,-0.13331760466099,-0.04722385853529],[-0.09168766438961,-0.079709313809872,0.11393216252327],[-0.085551537573338,-0.18090085685253,-0.22628958523273]],[[-0.099429003894329,-0.14471079409122,0.13758754730225],[-0.015401966869831,0.043908938765526,0.039142299443483],[0.081590265035629,-0.0067803934216499,0.015338039956987]],[[0.091923534870148,-0.013246106915176,0.013991087675095],[0.097814962267876,0.023519454523921,0.0023444218095392],[0.060307268053293,0.071915321052074,0.011886929161847]],[[0.041801694780588,0.028558509424329,-0.12467718869448],[-0.028979023918509,-0.19421799480915,-0.089815907180309],[-0.030555449426174,0.061019022017717,0.027495825663209]],[[0.15940657258034,-0.1571239233017,0.081043176352978],[0.089086279273033,0.023856790736318,0.057137176394463],[-0.021489875391126,-0.13479013741016,-0.096970498561859]],[[-0.078387908637524,-0.020800963044167,-0.031923435628414],[0.059093121439219,0.0039969785138965,-0.029918365180492],[0.0015163407661021,-0.0017989850603044,-0.046101737767458]],[[-0.026639757677913,0.1254775673151,-0.024926394224167],[-0.2630829513073,-0.045091573148966,0.10234094411135],[-0.13443590700626,-0.068943321704865,-0.18211890757084]],[[0.072904795408249,0.22079306840897,0.01250586938113],[-1.4502940757666e-05,-0.0035386683885008,0.07719311863184],[0.29328247904778,0.013038235716522,-0.00065703311702237]],[[-0.037922706454992,-0.031715769320726,0.13683097064495],[0.082373484969139,0.051101990044117,-0.0039883507415652],[-0.024293407797813,0.015307460911572,-0.013398231007159]],[[0.055058136582375,0.038969546556473,-0.032096959650517],[-0.06783277541399,-0.071375712752342,0.044063862413168],[-0.0040136030875146,-0.0074047562666237,0.031180016696453]],[[-0.094508312642574,-0.016390567645431,0.11372443288565],[-0.062656588852406,0.083691984415054,-0.062524765729904],[-0.061824198812246,0.050938714295626,-0.01839623786509]],[[0.0050831534899771,-0.085266709327698,0.17188343405724],[-0.059862066060305,-0.035841673612595,-0.20956766605377],[0.028426179662347,0.0068811345845461,-0.0022061949130148]],[[-0.0022227263543755,-0.0056214374490082,-0.01811027340591],[-0.085731275379658,0.10928815603256,0.0037853324320167],[-0.1515448987484,-0.090517625212669,-0.060117080807686]],[[-0.0016467889072374,0.11971035599709,-0.03406285494566],[-0.072782851755619,-0.045939948409796,0.069679923355579],[-0.072071559727192,-0.082997895777225,-0.021754877641797]],[[0.082544960081577,0.041425883769989,-0.09242694824934],[0.049062963575125,-0.062878765165806,-0.08909922093153],[-0.10752802342176,0.10633861273527,0.18062125146389]],[[0.16170629858971,0.17046774923801,0.092387087643147],[-0.089202754199505,0.02035990729928,-0.061997149139643],[0.12415225803852,0.0095995161682367,-0.041831854730844]],[[-0.020925957709551,-0.014459040015936,0.17787650227547],[-0.04430453106761,0.070744775235653,0.13579046726227],[0.20271591842175,-0.075307995080948,-0.10640635341406]],[[-0.064873084425926,-0.05382914096117,-0.1072500795126],[-0.03689393773675,0.050802554935217,-0.10407766699791],[-0.0033821396064013,-0.0031674229539931,0.036069076508284]],[[-0.1255200356245,-0.079123958945274,-0.11563983559608],[0.0069327931851149,0.078167304396629,-0.026279471814632],[-0.063998252153397,-0.051024906337261,0.025028306990862]],[[0.20170769095421,-0.061138808727264,-0.031712170690298],[-0.12786720693111,-0.012554448097944,-0.02922435849905],[-0.034586768597364,0.092651858925819,0.075566448271275]],[[-0.11770168691874,0.0092127993702888,0.0095121189951897],[-0.13392658531666,0.11941386759281,0.10345466434956],[-0.15402579307556,-0.10345286875963,0.072619833052158]],[[-0.040164548903704,0.0042733768932521,-0.011025075800717],[0.030660899356008,-0.22948381304741,-0.0098286177963018],[-0.26848086714745,-0.092359840869904,-0.098291769623756]],[[0.09150718152523,0.088018983602524,-0.081833899021149],[-0.19192308187485,0.014345463365316,-0.029791500419378],[-0.17194552719593,-0.10155637562275,-0.16179017722607]],[[-0.09308897703886,-0.032465670257807,-0.12601011991501],[0.11589886248112,-0.0070256143808365,0.091934092342854],[-0.16098581254482,-0.030937027186155,-0.14742796123028]],[[-0.084872685372829,-0.05201118811965,0.078466385602951],[-0.055592004209757,-0.065199203789234,-0.0088458890095353],[0.020553765818477,-0.015235270373523,0.10783451795578]],[[-0.047648925334215,-0.077180758118629,0.044749066233635],[-0.057124488055706,-0.063405975699425,-0.017101800069213],[-0.063472963869572,-0.0028695347718894,-0.02657968737185]],[[0.077660076320171,0.059699889272451,0.091407440602779],[-0.0010774956317618,0.0063220695592463,-0.0046428730711341],[-0.12289700657129,0.040025018155575,0.1116828545928]],[[0.068153031170368,0.096009030938148,0.02064486593008],[0.15168839693069,-0.070433281362057,-0.1464662104845],[-0.081491500139236,0.050626270473003,0.21345080435276]],[[0.0016781637677923,-0.031466260552406,0.13963104784489],[-0.16167525947094,-0.083321489393711,-0.043782588094473],[0.11064381152391,0.064646050333977,-0.023831168189645]],[[-0.016295114532113,-0.046274710446596,0.017273530364037],[0.1070289388299,0.066612526774406,-0.061888173222542],[-0.002899139886722,-0.036490231752396,-0.040405761450529]],[[0.029115285724401,0.043358944356441,0.058443989604712],[-0.10425842553377,0.034947257488966,-0.0099691618233919],[-0.018511909991503,-0.080793082714081,0.019399268552661]],[[-0.083544157445431,-0.074167810380459,-0.12223029136658],[-0.15375562012196,0.061081420630217,0.10998505353928],[0.058539044111967,-0.21203860640526,-0.032669804990292]],[[-0.033903431147337,-0.061452440917492,-0.16100330650806],[0.13073299825191,0.11635273694992,-0.0065366583876312],[-0.21266649663448,0.061014115810394,0.074967794120312]],[[-0.035844042897224,-0.10433591902256,-0.077628925442696],[0.0054308245889843,0.022019792348146,-0.022015612572432],[-0.039713401347399,-0.048826526850462,-0.12405703961849]],[[0.11130110174417,0.062479447573423,-0.10710802674294],[-0.06467118114233,-0.010571845807135,-0.082793682813644],[-0.054101295769215,0.12909764051437,0.0087661752477288]],[[-0.055378653109074,-0.0081625822931528,-0.051061809062958],[0.053451720625162,0.022745860740542,-0.044582605361938],[-0.08625553548336,-0.1196905374527,0.091406263411045]],[[-0.20576716959476,0.02806712500751,-0.010299865156412],[0.060775425285101,0.0013773924438283,-0.030282657593489],[-0.12011120468378,-0.034684728831053,0.12451087683439]],[[-0.030983950942755,-0.085606768727303,-0.0020683677867055],[0.022281398996711,-0.05476250872016,-0.067837968468666],[0.12822577357292,-0.15156555175781,-0.063692823052406]],[[-0.030955296009779,0.085366986691952,0.026902245357633],[-0.10738278180361,-0.092601008713245,0.097157523036003],[0.10103537887335,0.062964856624603,-0.038188964128494]],[[0.12016594409943,0.1257991194725,-0.027865005657077],[-0.23920796811581,0.010797831229866,-0.10443272441626],[0.34442892670631,0.092036299407482,0.03415546938777]],[[-0.067600473761559,-0.061882887035608,0.11236226558685],[0.019125688821077,-0.052245587110519,-0.057603623718023],[0.095712140202522,-0.0133554963395,-0.068918757140636]],[[-0.043710742145777,-0.1377292573452,0.057213332504034],[0.044990073889494,-0.042091108858585,-0.022554028779268],[0.030622171238065,-0.013148349709809,-0.12768349051476]],[[0.044411331415176,0.029134647920728,0.074697218835354],[0.042991530150175,0.031552948057652,0.00018156683654524],[0.011557778343558,0.1691280901432,0.014175952412188]],[[-0.069130428135395,0.22490081191063,-0.0033831251785159],[0.055943515151739,-0.12040834128857,0.049257084727287],[0.03247157484293,0.11028986424208,-0.18752923607826]],[[-0.080740034580231,-0.076391838490963,0.046821914613247],[0.051772490143776,-0.00028079326148145,-0.058786801993847],[-0.13918763399124,-0.025825573131442,-0.0049245469272137]],[[-0.041387286037207,-0.012696019373834,0.086300954222679],[0.072905905544758,-0.16029943525791,-0.19783866405487],[-0.038548719137907,0.018283009529114,-0.19415499269962]],[[-0.12130634486675,0.025879425927997,-0.023958418518305],[-0.086735099554062,0.056992262601852,0.054366737604141],[-0.027611639350653,-0.094559475779533,0.027364674955606]],[[0.017178466543555,-0.02169750444591,-0.022402584552765],[0.093454711139202,-0.060182131826878,0.042599100619555],[0.069566436111927,0.04634914919734,-0.082226648926735]]],[[[-0.27148067951202,-0.011947349645197,-0.091105967760086],[-0.091554015874863,-0.03237646073103,-0.061300724744797],[0.1068220436573,0.07509732991457,0.011383462697268]],[[0.09706961363554,0.11710150539875,0.090743660926819],[0.078728131949902,-0.0358951613307,-0.042475428432226],[0.042151294648647,-0.034268446266651,0.040027048438787]],[[-0.081181310117245,0.042841903865337,-0.043815691024065],[-0.041863955557346,0.04226390644908,0.0050131184980273],[0.021016320213675,-0.05276694893837,-0.18111863732338]],[[-0.079205438494682,-0.11409217119217,-0.085303962230682],[0.030266765505075,0.047630749642849,0.029834786430001],[-0.04725681245327,0.013164798729122,0.10036645829678]],[[0.013276079669595,-0.028105551376939,0.066378876566887],[-0.042845115065575,-0.087765969336033,0.035413965582848],[0.033014561980963,0.10638171434402,0.056273482739925]],[[0.046309843659401,0.044843904674053,0.040190912783146],[0.06438347697258,0.047601379454136,0.0057022487744689],[-0.033328518271446,-0.11212358623743,-0.053544823080301]],[[0.11534048616886,-0.0092381238937378,0.043584171682596],[0.0084920525550842,0.024141740053892,0.10364972800016],[-0.038314249366522,-0.052627924829721,0.067223504185677]],[[0.066282473504543,0.11012161523104,0.017891112715006],[0.021540446206927,0.051747340708971,-0.095486477017403],[0.04701067134738,-0.016419650986791,-0.0076708500273526]],[[0.039021350443363,0.027473101392388,0.0101423189044],[-0.1273972094059,0.026903515681624,-0.12644210457802],[-0.069236740469933,0.015741476789117,-0.087260581552982]],[[-0.026359526440501,-0.15563778579235,0.024905363097787],[-0.14620833098888,-0.017119105905294,0.013262526132166],[0.0041886358521879,0.076445706188679,-0.013578956946731]],[[0.074494302272797,0.015924731269479,-0.18565578758717],[-0.036358643323183,0.035242166370153,0.061087559908628],[-0.0025395753327757,0.12866015732288,-0.024187922477722]],[[-0.098660685122013,0.05031830817461,-0.23294438421726],[-0.036661766469479,0.023787785321474,-0.052731972187757],[-0.033578213304281,0.11356991529465,0.037006754428148]],[[0.15181760489941,0.078937456011772,-0.045673880726099],[0.017079714685678,0.041188344359398,0.0075808181427419],[-0.052901774644852,0.11338418722153,0.035304304212332]],[[0.24037702381611,0.030019886791706,0.16755051910877],[0.21623732149601,0.0011538467369974,0.067448578774929],[-0.047401014715433,-0.025265539065003,0.05785696208477]],[[0.03330821543932,0.078487373888493,0.064530625939369],[-0.050141047686338,-0.051092863082886,0.020446307957172],[0.056088373064995,0.10010128468275,0.088559702038765]],[[-0.0036313745658845,0.048576418310404,-0.012661620974541],[-0.24040549993515,-0.12207381427288,-0.16648562252522],[0.068116292357445,-0.015639122575521,-0.1388263553381]],[[-0.22535337507725,0.12351965159178,-0.0084207579493523],[0.061087600886822,0.095497451722622,-0.070284627377987],[-0.025927966460586,0.020605087280273,-0.03774619102478]],[[0.17633128166199,-0.18196365237236,-0.15750746428967],[0.19231037795544,0.023993149399757,0.24501504004002],[0.028023861348629,-0.13501311838627,-0.057637855410576]],[[-0.15273588895798,-0.049569513648748,0.015496418811381],[-0.029880095273256,0.0017142955912277,0.040831279009581],[-0.0555155351758,-0.0028112241998315,-0.020746381953359]],[[-0.080705337226391,-0.064263962209225,-0.015119697898626],[-0.079705819487572,-0.04990029707551,0.031880371272564],[0.093934215605259,-0.02092183381319,0.023803507909179]],[[-0.08953120559454,0.036738622933626,-0.11656756699085],[0.011061703786254,-0.011132343672216,0.11112090200186],[-0.31712916493416,-0.047360334545374,-0.10110562294722]],[[0.046350341290236,0.036869287490845,0.025245115160942],[0.034266602247953,-0.015683198347688,-0.13213378190994],[0.050020664930344,-0.051349084824324,-0.084568157792091]],[[-0.064502157270908,0.10518807917833,-0.050264626741409],[-0.015632770955563,0.020617678761482,-0.026134995743632],[0.0051774275489151,0.041534435003996,-0.063580363988876]],[[-0.091354206204414,0.041329886764288,-0.084158457815647],[-0.010114228352904,0.078955568373203,0.00090835418086499],[-0.10665496438742,0.046657390892506,-0.038987319916487]],[[-0.080682136118412,0.012547632679343,0.0050903703086078],[0.058895420283079,-0.099899120628834,-0.00019414322741795],[0.069492049515247,0.016291154548526,-0.09422542899847]],[[-0.10960664600134,-0.044068280607462,-0.0082744332030416],[-0.10059720277786,0.09609255194664,0.10902874916792],[-0.044041164219379,0.063954293727875,0.0089028114452958]],[[0.02287358418107,0.055117536336184,-0.067115090787411],[0.038901705294847,0.020820509642363,-0.0073807998560369],[-0.0021119720768183,-0.13264983892441,0.016211559996009]],[[-0.040036205202341,-0.009447792544961,-0.078224316239357],[-0.0026969767641276,-0.066043689846992,-0.042009402066469],[-0.042658261954784,0.11106680333614,0.015075614675879]],[[0.015334852971137,0.078022085130215,-0.028272787109017],[-0.10590359568596,0.0096548097208142,-0.06176907941699],[0.09957105666399,-0.092223793268204,0.084403090178967]],[[0.090697661042213,-0.01182413008064,-0.1162057518959],[-0.052666902542114,0.0042817620560527,-0.018756963312626],[-0.24607606232166,0.0053089624270797,0.068620294332504]],[[-0.039412822574377,-0.13300573825836,0.033748909831047],[0.086381830275059,-0.02631545625627,0.061501730233431],[-0.15639333426952,-0.20289148390293,0.074718296527863]],[[-0.046968165785074,-0.015959860756993,0.10056173801422],[0.073995292186737,-0.0088615519925952,-0.02477896399796],[0.062830232083797,0.0057525127194822,-0.050911571830511]],[[0.19670587778091,0.12528581917286,0.055303789675236],[-0.059313740581274,0.072099290788174,-0.11098182946444],[0.10423354059458,0.069681756198406,-0.19901955127716]],[[-0.16092467308044,-0.28289198875427,-0.12637071311474],[-0.075060024857521,-0.030201926827431,-0.039746258407831],[-0.062072593718767,-0.25617092847824,-0.092795342206955]],[[-0.045070238411427,0.048000793904066,-0.073096640408039],[-0.14480225741863,-0.049430470913649,-0.044167414307594],[0.041917011141777,0.1340921074152,-0.017227051779628]],[[-0.072185754776001,0.1323457211256,-0.022055646404624],[-0.074951127171516,0.043739885091782,0.059421472251415],[0.14288665354252,0.060068614780903,0.02381169423461]],[[0.039624311029911,-0.024125088006258,0.098088763654232],[0.17884109914303,0.10025434941053,0.036899987608194],[-0.19397467374802,-0.02326219342649,-0.021830825135112]],[[0.048862107098103,0.048119969666004,0.056769337505102],[0.15977132320404,-0.10789340734482,-0.028552798554301],[-0.0065589249134064,0.092040196061134,-0.085688233375549]],[[-0.067198179662228,0.066760219633579,-0.075676552951336],[0.0095102842897177,0.0097511149942875,0.047624308615923],[-0.06329682469368,0.0073361154645681,0.011128540150821]],[[0.071116365492344,0.0088486382737756,0.13382212817669],[-0.11417866498232,0.026646070182323,-0.030413009226322],[-0.03504378721118,0.0058920541778207,-0.089306600391865]],[[-0.099308699369431,-0.091580383479595,-0.043853599578142],[0.069647595286369,-0.027554705739021,-0.044994860887527],[-0.066581591963768,-0.063172072172165,0.0064366976730525]],[[0.0035920047666878,0.0073701734654605,-0.038612712174654],[0.057252559810877,0.0092067252844572,-0.0021427606698126],[-0.062837675213814,0.0038096306379884,-0.098601534962654]],[[0.013756431639194,-0.042899616062641,0.0058017480187118],[-0.023557014763355,0.034191928803921,-0.054364960640669],[-0.032754924148321,0.029800418764353,-0.035637736320496]],[[-0.147964656353,-0.03131477534771,-0.0071906833909452],[0.065587610006332,0.10484962910414,0.078315824270248],[-0.09345668554306,-0.057565867900848,-0.032548740506172]],[[0.037298306822777,-0.056750264018774,-0.0037091569975019],[0.10765571892262,-0.021191483363509,-0.014602131210268],[-0.047979142516851,-0.039699710905552,0.049972753971815]],[[-0.06990522146225,-0.048302907496691,0.04557317122817],[0.10407392680645,0.022574393078685,-0.0099675860255957],[-0.0047913719899952,-0.13065771758556,-0.051994554698467]],[[-0.04366697743535,-0.11196454614401,0.09680251032114],[-0.052588030695915,0.051071483641863,-0.12421222031116],[0.07672318816185,-0.0045695411972702,0.050680842250586]],[[-0.1741466075182,0.088605843484402,-0.21207492053509],[-0.12071610242128,0.019537772983313,0.093051642179489],[0.027817023918033,0.0051681539043784,-0.078036524355412]],[[-0.070861116051674,0.032036408782005,0.0041111861355603],[-0.011491762474179,-0.015340330079198,-0.063044771552086],[-0.154699832201,-0.079071067273617,-0.1263263374567]],[[-0.10612986981869,-0.0060727586969733,0.094472780823708],[0.0094790607690811,-0.056463275104761,-0.1396449804306],[0.15320391952991,-0.033674109727144,0.032020170241594]],[[0.052997570484877,0.1337483972311,-0.018729710951447],[-0.014911844395101,0.077605575323105,0.017542611807585],[-0.1532187461853,0.064242444932461,0.039693955332041]],[[0.10776712745428,0.052435129880905,-0.021217854693532],[-0.060194179415703,-0.15055340528488,-0.038918849080801],[0.14794155955315,0.02247604355216,-0.1073257252574]],[[0.0043733092024922,-0.016946516931057,-0.13320952653885],[0.083523109555244,0.070498183369637,0.032899424433708],[-0.32074555754662,-0.058893401175737,-0.041987083852291]],[[0.11713870614767,0.0027800144162029,0.056380297988653],[0.082674987614155,-0.0021355389617383,0.033787962049246],[0.0065490356646478,-0.0023798039183021,-0.044395636767149]],[[-0.0026015462353826,-0.062142919749022,-0.16979768872261],[0.029481453821063,0.080748446285725,0.062185864895582],[-0.12776054441929,-0.12769024074078,-0.145402520895]],[[0.12739871442318,0.052873585373163,0.052238512784243],[0.025132238864899,-0.12386342138052,0.069405660033226],[0.11502048373222,0.08949626237154,0.15851974487305]],[[0.0089043183252215,0.081828877329826,-0.19872969388962],[-0.12029220163822,0.017264945432544,-0.03713122010231],[0.056205302476883,0.057993751019239,0.02806263230741]],[[-0.2967346906662,-0.092060983181,-0.18038786947727],[-0.047299165278673,0.041999511420727,-0.027092196047306],[-0.083039954304695,-0.14007757604122,-0.2151543200016]],[[0.059160362929106,0.081207141280174,0.047871582210064],[0.088558942079544,-0.0074932808056474,-0.049296356737614],[0.03354611992836,0.11520676314831,-0.047533497214317]],[[0.038576636463404,-0.01546882558614,-0.076372645795345],[0.11634060740471,-0.057816188782454,-0.13709650933743],[0.061109460890293,0.028793277218938,0.06511227786541]],[[0.005913014523685,0.11254245787859,0.12864539027214],[-0.020141065120697,-0.031339153647423,-0.030888564884663],[0.03646569699049,-0.0053842412307858,-0.083726733922958]],[[-0.06601720303297,-0.052428692579269,-0.032472275197506],[0.031142322346568,0.032649390399456,0.012470664456487],[-0.1599015891552,-0.068099305033684,-0.048031590878963]],[[0.13147085905075,0.20320898294449,0.037763051688671],[0.05215261131525,0.044669643044472,-0.076236344873905],[0.033442433923483,0.063777968287468,-0.014261319302022]],[[-0.0068065766245127,-0.14558883011341,0.068618185818195],[-0.072242185473442,-0.10452589392662,0.016499461606145],[0.063459120690823,-0.007513081189245,0.18923401832581]]],[[[-0.08724757283926,-0.042302682995796,0.14912436902523],[0.010238577611744,-0.0065100830979645,0.090339139103889],[-0.018178194761276,-0.11756140738726,0.06334713101387]],[[-0.0071655758656561,-0.072629779577255,0.0097399586811662],[-0.0094316452741623,-0.029451021924615,-0.12834453582764],[-0.077813245356083,0.030158905312419,0.039450172334909]],[[0.077702350914478,-0.11581087112427,-0.013869220390916],[-0.02571889013052,-0.13377268612385,0.00043230087612756],[0.022138917818666,-0.053300708532333,-0.06440594792366]],[[0.0014973662327975,0.012908305972815,-0.040429729968309],[-0.086344748735428,-0.025458613410592,0.059605088084936],[0.13540017604828,-0.04618264362216,0.0058345221914351]],[[0.14964996278286,0.10504498332739,-0.039688114076853],[0.055349245667458,0.057688500732183,-0.07670621573925],[0.054458606988192,-0.12244112789631,-0.0025477295275778]],[[-0.025045342743397,-0.040120206773281,0.020176475867629],[-0.12415231764317,-0.014666933566332,0.023790845647454],[-0.18426087498665,0.0063434210605919,0.073569782078266]],[[-0.065751098096371,0.13554747402668,-0.078965894877911],[0.0074168592691422,0.04162772744894,-0.054558210074902],[-0.12157446146011,0.056537542492151,0.011323070153594]],[[0.082827731966972,-0.053187973797321,0.043655216693878],[0.060554880648851,0.024066429585218,0.063736081123352],[-0.043420907109976,-0.070218876004219,0.020524356514215]],[[-0.043707806617022,-0.025504725053906,0.038764726370573],[0.045700009912252,-0.052638549357653,-0.03535895422101],[0.0013076798059046,-0.047510221600533,0.02906646952033]],[[-0.0020766542293131,-0.07113378494978,-0.04027471318841],[-0.081470489501953,-0.042442318052053,-0.055502813309431],[0.071331515908241,-0.037526547908783,-0.036236088722944]],[[-0.022348815575242,0.027898272499442,0.019312908872962],[0.045062053948641,-0.029704758897424,0.11081182211637],[-0.031117286533117,-0.077808983623981,-0.042725656181574]],[[0.010120078921318,0.057045057415962,0.028476841747761],[0.0070209689438343,-0.019227707758546,-0.12328394502401],[0.11019284278154,0.063448742032051,0.014191878028214]],[[-0.086914993822575,-0.03463726118207,-0.030133988708258],[-0.11967834830284,0.081688739359379,-0.031421191990376],[-0.055962607264519,0.0080891381949186,0.0055423644371331]],[[0.062274992465973,-0.059477429836988,-0.027444817125797],[0.095018841326237,-0.047308094799519,0.06453014165163],[-0.0011918323580176,0.022146303206682,0.03175450116396]],[[-0.084145441651344,0.077026076614857,0.027495365589857],[-0.01884001493454,0.010192285291851,-0.016321286559105],[-0.11178957670927,0.040719259530306,0.01999151520431]],[[0.042254336178303,0.053866136819124,-0.096576735377312],[-0.048489440232515,-0.02681534551084,-0.096656545996666],[0.029137892648578,-0.073920771479607,-0.10635308921337]],[[-0.010107420384884,-0.02585188858211,0.13413268327713],[-0.090961180627346,-0.0086921276524663,0.095975585281849],[-0.016745226457715,-0.17832913994789,0.054302852600813]],[[0.057720825076103,0.075216569006443,-0.0092293852940202],[-0.089882098138332,-0.047523394227028,0.045444015413523],[-0.12149119377136,-0.085085891187191,0.022210786119103]],[[0.033280789852142,0.013581840321422,-0.041905477643013],[-0.044404547661543,-0.023237941786647,0.077844709157944],[-0.053907841444016,-0.029535368084908,-0.056888345628977]],[[-0.14290288090706,-0.039330389350653,-0.014913585036993],[-0.008695580996573,0.022173054516315,0.06520090252161],[-0.1187062188983,-0.034276098012924,0.022177470847964]],[[-0.040463246405125,-0.064629137516022,0.055664908140898],[-0.043606333434582,0.050970412790775,-0.039499942213297],[-0.096805766224861,-0.032761864364147,-0.08916912227869]],[[0.082151286303997,-0.094078399240971,-0.039822284132242],[0.044066026806831,-0.059326112270355,-0.0082420185208321],[0.040183041244745,-0.072768621146679,-0.048221915960312]],[[-0.10176111012697,-0.073532804846764,0.0062856758013368],[-0.088844753801823,0.0051293536089361,-0.033119834959507],[-0.063664220273495,-0.033411230891943,-0.031438756734133]],[[0.047501984983683,0.076045177876949,0.065401166677475],[0.070141717791557,0.015490707941353,-0.10968423634768],[0.070307195186615,0.08704961836338,0.015829980373383]],[[-0.05158568918705,0.0083582261577249,0.014740800485015],[-0.076990351080894,-0.038454726338387,0.040840853005648],[0.14344614744186,0.039446704089642,0.092867635190487]],[[-0.17576485872269,0.090807288885117,0.096960857510567],[-0.11741943657398,0.052526008337736,0.043049767613411],[-0.14001068472862,0.011502420529723,0.059300791472197]],[[0.016436165198684,-0.0030986610800028,-0.0090988138690591],[0.088185407221317,0.099482856690884,0.050275735557079],[-0.12335461378098,0.068775311112404,-0.093374751508236]],[[-0.10573682934046,-0.1788819283247,0.14111469686031],[0.039197824895382,-0.10484221577644,0.084019936621189],[-0.057072293013334,0.018474264070392,0.065184585750103]],[[-0.010430374182761,0.057566087692976,0.10307606309652],[-0.00016852116095833,-0.16050188243389,-0.083764284849167],[0.038000710308552,-0.036273468285799,-0.047541677951813]],[[-0.096620708703995,0.073398195207119,0.081699952483177],[0.035179138183594,-0.023981736972928,-0.097649909555912],[-0.020084312185645,-0.066509917378426,-0.0095662847161293]],[[-0.077195405960083,0.12584221363068,-0.054136864840984],[-0.035149063915014,0.17550522089005,0.030079079791903],[-0.10653351247311,0.060804333537817,-0.077949203550816]],[[-0.004182793200016,0.061870582401752,-0.016315653920174],[0.032630503177643,-0.014591773971915,0.024741780012846],[0.089122623205185,-0.055604979395866,-0.047245115041733]],[[-0.029506254941225,-0.0010082392254844,-0.055482935160398],[0.041694793850183,0.011287427507341,-0.061098080128431],[0.013134003616869,-0.070050120353699,-0.01474282797426]],[[-0.12875561416149,-0.043125219643116,-0.052861500531435],[-0.022955968976021,-0.02592745795846,-0.068401746451855],[-0.010766865685582,0.0088763609528542,-0.032886147499084]],[[0.065095372498035,-0.097961038351059,-0.069544568657875],[0.0879882350564,-0.015855604782701,0.051460310816765],[0.064826503396034,-0.054303091019392,-0.015830023214221]],[[-0.013276479206979,-0.059565577656031,0.02317968942225],[-0.0048635909333825,-0.071403980255127,0.065090402960777],[0.14176766574383,0.020826933905482,0.11158554255962]],[[0.11511044204235,0.030478892847896,0.042577739804983],[-0.053751360625029,-0.072811380028725,0.0034850637894124],[0.012297666631639,0.05312467738986,-0.0040034814737737]],[[0.0205781403929,-0.10452602058649,0.0320138707757],[-0.059947565197945,-0.0049789831973612,0.039115846157074],[-0.02890189178288,0.024362307041883,-0.06478887796402]],[[0.0051427786238492,-0.017909832298756,0.078602321445942],[0.062284018844366,-0.056726716458797,0.003369685029611],[-0.10345989465714,-0.1103238016367,-0.049843911081553]],[[-0.005062086507678,0.048874873667955,-0.073302187025547],[0.0059378277510405,0.090307839214802,-0.045412447303534],[-0.02354458719492,-0.06541358679533,-0.065923675894737]],[[-0.034120220690966,0.018790340051055,-0.017236860468984],[-0.14516553282738,0.14862406253815,-0.0080402139574289],[-0.034694965928793,0.04127961397171,-0.10205484926701]],[[-0.05110264569521,0.076137490570545,0.037087209522724],[-0.084351174533367,-0.037187542766333,-0.030116885900497],[-0.1157276853919,0.061509415507317,-0.10600203275681]],[[-0.045515783131123,0.10953991860151,-0.16533702611923],[-0.029623722657561,-0.095539048314095,0.007843067869544],[0.060471631586552,0.11821692436934,0.034372620284557]],[[0.14656913280487,-0.15267780423164,0.087329283356667],[0.043201643973589,0.17561864852905,-0.045097295194864],[0.072754129767418,-0.04908799752593,0.044103808701038]],[[0.035973250865936,-0.016101639717817,-0.0051904930733144],[-0.20448817312717,0.01862770691514,0.085000604391098],[-0.0045820572413504,0.011443839408457,-0.074337400496006]],[[0.052321720868349,0.013696203939617,0.049738775938749],[-0.048803273588419,0.001912126201205,-0.054606143385172],[-0.054225880652666,0.02390949241817,0.086654841899872]],[[-0.14760033786297,0.06023134291172,0.016882101073861],[-0.031236408278346,-0.00609683804214,-0.089041978120804],[-0.076253786683083,-0.0054028942249715,0.022706924006343]],[[0.091791570186615,-0.017784938216209,-0.08075724542141],[-0.067961014807224,-0.0076099508441985,-0.057825930416584],[-0.056209269911051,0.060855813324451,-0.13516689836979]],[[0.10184203833342,0.048961792141199,-0.090310864150524],[0.021690033376217,-0.036494005471468,-0.055334012955427],[0.0027473361697048,-0.059879839420319,-0.077384643256664]],[[0.017572013661265,0.061581075191498,-0.12403831630945],[0.013260274194181,-0.011758027598262,-0.031136281788349],[0.011147445999086,0.019303074106574,-0.039452169090509]],[[0.0042828181758523,-0.0037635352928191,-0.027135951444507],[-0.014772243797779,-0.029754078015685,-0.021961737424135],[0.0032110747415572,-0.050870072096586,-0.0010883141076192]],[[0.016879012808204,0.04173893481493,-0.076581947505474],[-0.088379047811031,0.03679796308279,0.03842406719923],[0.040345463901758,-0.022955434396863,0.0013026488013566]],[[-0.12007825821638,0.0087400004267693,0.018961908295751],[-0.021806761622429,-0.012659126892686,-0.0016180681996047],[-0.021503737196326,0.026615800336003,-0.061899121850729]],[[-0.038959924131632,0.022775681689382,-0.096949405968189],[-0.091375961899757,-0.04539592191577,0.0042343903332949],[0.013600255362689,-0.080378971993923,0.10570607334375]],[[-0.091720335185528,-0.041313923895359,0.061628915369511],[-0.16811868548393,-0.045387212187052,-0.045157477259636],[0.052229147404432,0.032378565520048,-0.21179489791393]],[[0.03044088371098,-0.096714720129967,-0.11394734680653],[0.05973344296217,-0.050038263201714,0.098714292049408],[-0.01419566385448,0.0073801968246698,-0.027343522757292]],[[0.085098594427109,-0.055599391460419,-0.0081778932362795],[-0.067125126719475,0.001155890407972,0.047302883118391],[0.044870156794786,-0.12874992191792,0.048793289810419]],[[-0.097970008850098,0.14530891180038,-0.11005479842424],[-0.077315285801888,-0.02739922888577,-0.20876203477383],[-0.054179396480322,0.026634749025106,-0.081169545650482]],[[0.018137780949473,0.091634176671505,-0.00053039600607008],[0.065161868929863,0.034760303795338,-0.1258060336113],[0.12933170795441,0.045238271355629,0.07214118540287]],[[-0.053393233567476,0.061735659837723,0.091426879167557],[-0.025932962074876,0.0017765307566151,-0.011700191535056],[-0.038368731737137,0.036411944776773,-0.028445573523641]],[[-0.017588205635548,0.075773529708385,-0.0090460544452071],[-0.031276516616344,-0.021038271486759,-0.032983664423227],[0.080792464315891,-0.08237436413765,-0.026871353387833]],[[-0.081919096410275,0.034255106002092,0.052594419568777],[-0.018701516091824,-0.10630320012569,-0.046374198049307],[0.00021029698837083,-0.088346384465694,0.02286191470921]],[[-0.041792750358582,-0.0048912381753325,-0.020563300698996],[0.059229306876659,-0.019584830850363,0.034094952046871],[-0.010855698958039,0.098468750715256,-0.075568832457066]],[[0.015376037918031,0.022830823436379,0.040192171931267],[-0.1517957597971,-0.016420723870397,0.096114590764046],[0.088500656187534,0.022546643391252,0.066573061048985]]],[[[0.074557781219482,0.099845975637436,-0.1543937921524],[-0.067862048745155,-0.009625012986362,0.078577555716038],[0.031163277104497,0.099943615496159,-0.11393614113331]],[[0.084388166666031,0.17432430386543,-0.1756267696619],[0.0055697481147945,-0.046432230621576,0.0031339304987341],[-0.079899162054062,0.043643325567245,-0.15126483142376]],[[0.06238217651844,-0.13816192746162,0.019240105524659],[0.020865267142653,-0.017978640273213,0.039193022996187],[-0.0039695352315903,-0.00078891037264839,-0.23405639827251]],[[-0.0061510582454503,-0.044040709733963,0.053612284362316],[0.067635335028172,-0.038593348115683,0.039817169308662],[-0.049680288881063,-0.020920801907778,0.06649798899889]],[[-0.10912527889013,-0.019377108663321,-0.050577975809574],[0.013954740017653,-0.065135225653648,0.038384102284908],[-0.10637404024601,-0.01817693002522,-0.0098009761422873]],[[0.039315793663263,-0.029394404962659,-0.073498137295246],[-0.054950952529907,0.016406571492553,-0.011192647740245],[0.011360340751708,-0.05357737839222,-0.076040595769882]],[[0.084966517984867,0.019514415413141,0.065777599811554],[-0.00096984708216041,-0.018650868907571,-0.11319893598557],[-0.086136095225811,0.029175439849496,0.15719689428806]],[[-0.26613399386406,-0.041354764252901,-0.016095733270049],[0.023632934316993,-0.039266508072615,0.057501822710037],[0.014228140003979,0.017481908202171,-0.045865576714277]],[[0.080495730042458,0.034090582281351,0.041551738977432],[-0.023549852892756,0.034219425171614,0.021446855738759],[-0.0042086150497198,0.087478563189507,-0.010907914489508]],[[-0.00022067681129556,-0.088914260268211,-0.060463227331638],[-0.059557661414146,-0.056606635451317,-0.08365573734045],[-0.0029636137187481,-0.14414897561073,0.040358372032642]],[[-0.055898305028677,0.008893552236259,-0.082121774554253],[-0.028723487630486,-0.037009753286839,0.029105868190527],[0.02879836037755,0.0091339834034443,-0.10082595795393]],[[0.080723136663437,-0.0019090705318376,-0.056536134332418],[-0.040484558790922,0.011151529848576,0.056332107633352],[0.0018570087850094,0.16358345746994,0.11617187410593]],[[0.042460605502129,-0.15214323997498,0.075966261327267],[0.057819414883852,0.054951589554548,-0.0093759326264262],[0.060637250542641,-0.013603135943413,-0.067995652556419]],[[-0.13859775662422,-0.082613721489906,0.13478137552738],[-0.037531185895205,0.056370548903942,0.035123974084854],[0.11367233842611,-0.014935827814043,0.089604884386063]],[[0.25354635715485,-0.050381425768137,-0.0071864211931825],[-0.0050483867526054,0.023408787325025,0.046755719929934],[0.20082031190395,0.086341306567192,-0.14846806228161]],[[0.092062182724476,0.015151242725551,-0.072051964700222],[-0.025224966928363,-0.036179229617119,-0.20533402264118],[-0.15174721181393,-0.084774225950241,-0.035675682127476]],[[0.053374521434307,0.013127925805748,-0.019103527069092],[-0.093058422207832,0.035963494330645,0.10733313858509],[0.0096114687621593,0.0068562156520784,0.045016542077065]],[[0.1689867079258,0.11745565384626,-0.21726968884468],[0.021117610856891,0.064403042197227,-0.10808622837067],[0.0004069269343745,-0.11205279827118,-0.10257175564766]],[[-0.1286882609129,0.1281164586544,-0.013867485336959],[-0.082632459700108,-0.057922933250666,0.012787596322596],[-0.18561197817326,-0.052996799349785,-0.010830752551556]],[[0.013306067325175,-0.0079580210149288,-0.13285374641418],[0.072486355900764,-0.086231790482998,-0.085115663707256],[-0.11479675024748,-0.10840851813555,-0.063571974635124]],[[0.013882962055504,0.13188968598843,0.041760452091694],[-0.018147690221667,-0.014827129431069,-0.018760552629828],[-0.11472117900848,0.028270725160837,-0.04523803666234]],[[-0.072412140667439,-0.057634267956018,0.029724806547165],[0.056522708386183,0.031238643452525,0.0061352592892945],[-0.042572978883982,-0.040388058871031,-0.05430593714118]],[[-0.064934775233269,0.069125324487686,-0.19779010117054],[0.12959636747837,0.004827250726521,-0.024072401225567],[0.090602613985538,-0.01794608309865,-0.077393971383572]],[[0.061217647045851,0.050646349787712,0.26971501111984],[-0.059620261192322,0.032835274934769,-0.17851503193378],[0.0739511474967,-0.088474661111832,-0.098611079156399]],[[-0.054267611354589,0.002948003122583,-0.050215642899275],[-0.098783642053604,0.019072832539678,0.027955966070294],[-0.058870494365692,0.026782970875502,0.032459121197462]],[[0.027884824201465,0.035107176750898,-0.035273768007755],[-0.0036149334628135,-0.057035427540541,-0.0043750000186265],[0.030989097431302,-0.0090474169701338,0.018295804038644]],[[0.070007853209972,-0.076318711042404,-0.10050858557224],[0.076557449996471,-0.058132793754339,-0.0041339336894453],[0.020202919840813,-0.032300971448421,0.074819259345531]],[[0.079968333244324,0.18658983707428,-0.077349685132504],[-0.084450654685497,0.022729700431228,0.0016279033152387],[0.093006737530231,-0.042554423213005,0.12680159509182]],[[-0.080542288720608,0.068479143083096,-0.16151908040047],[-0.076598338782787,0.054120942950249,-0.07782968878746],[0.18605880439281,0.026620930060744,0.042959034442902]],[[-0.028582731261849,-0.1125388070941,-0.14331740140915],[0.032751474529505,-0.027118131518364,-0.15652143955231],[0.016378847882152,-0.065310291945934,-0.024103220552206]],[[0.025468897074461,0.022572785615921,0.06803173571825],[-0.084479756653309,-0.056592889130116,0.042885545641184],[0.01412190310657,0.053230293095112,-0.05743345990777]],[[0.02900331094861,-0.098156221210957,-0.020963767543435],[-0.050247326493263,0.13218113780022,0.070569202303886],[0.087799496948719,-0.049282893538475,0.032925456762314]],[[0.040148362517357,-0.012361311353743,0.091896653175354],[0.039404600858688,-0.022299237549305,-0.12746529281139],[0.0078878290951252,0.010352415032685,0.15120543539524]],[[-0.086310848593712,0.098839543759823,0.029861038550735],[0.057457130402327,-0.067320168018341,0.088177502155304],[0.050037167966366,0.017231475561857,-0.040824629366398]],[[0.0060784039087594,-0.1015146151185,-0.13957504928112],[0.055492416024208,-0.048791311681271,0.013992245309055],[0.1286589205265,0.067791290581226,0.040557578206062]],[[-0.1116311326623,0.065594062209129,0.043049793690443],[0.14657719433308,-0.07126472145319,0.013036662712693],[0.077605679631233,0.096059091389179,0.049667678773403]],[[-0.031511504203081,-0.015374969691038,0.033633604645729],[0.032035999000072,-0.014607147313654,0.024477679282427],[0.024052189663053,0.005822311155498,-0.032060351222754]],[[0.052429106086493,0.0051233149133623,0.051072597503662],[0.029734443873167,0.030249450355768,0.042855437844992],[0.030267598107457,-0.088031731545925,-0.12080386281013]],[[0.041101645678282,-0.015656100586057,-0.016572829335928],[-0.17150145769119,-0.056887075304985,0.13021631538868],[-0.1041002124548,0.078540399670601,-0.0672867000103]],[[-0.066253587603569,0.031425580382347,-0.063081130385399],[0.0072568911127746,0.018829382956028,-0.040205106139183],[0.15418830513954,-0.060125388205051,-0.075129941105843]],[[0.21614266932011,-0.1615489423275,0.0033102175220847],[0.014704152941704,-0.12985701858997,-0.12957818806171],[0.012600929476321,-0.082128003239632,0.037408463656902]],[[0.00094948126934469,0.0026274572592229,-0.086339876055717],[-0.062500111758709,-0.1794278472662,-0.057237308472395],[-0.0051649753004313,-0.031628236174583,-0.0015503219328821]],[[0.0562529489398,-0.0031241623219103,-0.11395375430584],[0.007296338211745,-0.096416994929314,0.010434141382575],[-0.10322970896959,-0.054401952773333,-0.038076087832451]],[[-0.0078231822699308,0.001810789341107,-0.080835349857807],[0.033745262771845,-0.10838679224253,0.014355328865349],[-0.031627859920263,-0.051648650318384,0.12028061598539]],[[-0.0075607504695654,-0.070245057344437,0.087721832096577],[-0.046256270259619,-0.0031949859112501,0.059752643108368],[-0.0026754434220493,-0.051071461290121,-0.05598384514451]],[[0.038768105208874,-0.021957743912935,0.0649773478508],[0.086221389472485,0.056855514645576,0.0073188357055187],[0.010945952497423,-0.009479976259172,0.069739654660225]],[[-0.012319438159466,-0.095445886254311,0.043744929134846],[-0.025711916387081,0.027325702831149,-0.012796874158084],[-0.0065558711066842,0.090646401047707,-0.063212744891644]],[[-0.12730433046818,-0.0065830629318953,-0.093677528202534],[0.096288435161114,0.019047297537327,0.102419257164],[0.051890511065722,0.0085085174068809,-0.0020104863215238]],[[-0.043688699603081,-0.019109463319182,-0.040329046547413],[-0.0053971013985574,0.07214780151844,-0.069509662687778],[-0.063142456114292,0.067107155919075,-0.092525884509087]],[[0.23783276975155,0.14005307853222,-0.045691207051277],[0.16370405256748,0.033786118030548,0.051226325333118],[-0.0733907148242,0.080220445990562,-0.07805947214365]],[[-0.092725969851017,0.017825054004788,0.023107122629881],[0.030688224360347,-0.038512617349625,-6.1065329646226e-05],[0.02505093626678,0.0092821773141623,0.043191015720367]],[[-0.013164592906833,-0.053108587861061,-0.059430241584778],[0.066172264516354,-0.021773120388389,-0.038527205586433],[0.0063270130194724,-0.049353536218405,0.084245063364506]],[[0.068676106631756,0.1335826665163,0.08775931596756],[-0.006846928037703,-0.068029150366783,-0.0038072874303907],[-0.061484020203352,-0.099751196801662,-0.14847914874554]],[[-0.011245105415583,0.017895875498652,0.13217052817345],[-0.02252820879221,0.016845237463713,-0.067480891942978],[0.024333344772458,0.034331042319536,0.027761567384005]],[[0.08354876190424,-0.18221826851368,0.13541114330292],[-0.10235951095819,0.077157497406006,0.16830609738827],[0.071397930383682,-0.21875955164433,-0.27146583795547]],[[-0.0028328716289252,-0.069468706846237,-0.037859492003918],[0.048447646200657,0.00077915570000187,-0.088014878332615],[0.18252746760845,0.029675407335162,0.087046407163143]],[[-0.036351297050714,0.062496747821569,-0.069979600608349],[0.11335051059723,-0.032874576747417,-0.1108436062932],[-0.085621498525143,0.0095000714063644,-0.01356463227421]],[[-0.010552602820098,0.10097298026085,-0.057381026446819],[0.085568830370903,0.11891832202673,-0.038263704627752],[-0.0070123593322933,-0.032462432980537,0.025430621579289]],[[0.098554164171219,-0.013643454760313,0.062063660472631],[0.059721045196056,0.13123545050621,0.064493931829929],[0.081334382295609,0.075574420392513,0.092745274305344]],[[-0.10220576822758,-0.037945833057165,-0.11890774220228],[-0.10645198822021,0.027137463912368,0.042845219373703],[0.012691190466285,-0.096474677324295,-0.079777203500271]],[[-0.028028255328536,-0.064593955874443,0.069777302443981],[-0.021317781880498,-0.074927136301994,0.12650628387928],[0.065912738442421,-0.046436611562967,-0.073124594986439]],[[0.014162814244628,-0.080175310373306,0.042168237268925],[0.051749389618635,-0.051005586981773,-0.10354458540678],[0.077533878386021,-0.12992680072784,0.030313922092319]],[[0.069708116352558,0.049797896295786,0.035007800906897],[-0.13066720962524,-0.10684285312891,-0.012765479274094],[0.22830559313297,0.068978726863861,-0.083997189998627]],[[-0.087755523622036,0.0098962159827352,0.064891293644905],[0.013527189381421,0.014524742029607,-0.04598880186677],[0.09959464520216,0.041431434452534,-0.030839551240206]]],[[[-0.086905248463154,-0.10264691710472,-0.064962074160576],[-0.11341928690672,-0.079412654042244,-0.19161728024483],[0.023244898766279,-0.05718021094799,-0.086904533207417]],[[-0.023820785805583,0.049616571515799,-0.1136756464839],[-0.079867422580719,-0.069628268480301,0.10160123556852],[-0.065464399755001,0.008308919146657,-0.14220364391804]],[[0.075605422258377,0.073694497346878,-0.087955646216869],[0.0043095294386148,-0.10334583371878,-0.052386686205864],[0.021767718717456,-0.032266698777676,0.0058946562930942]],[[0.011819656006992,-0.12626342475414,-0.0042192880064249],[-0.11481335014105,-0.025814199820161,-0.11198977380991],[-0.030124297365546,0.018716292455792,-4.992977483198e-05]],[[-0.069177322089672,-0.042027805000544,-0.16423489153385],[-0.0051024057902396,-0.037241078913212,-0.25612837076187],[-0.045791435986757,0.027982758358121,0.066183820366859]],[[-0.044519767165184,-0.05075815692544,-0.041680485010147],[0.05629900842905,0.0033325362019241,0.12288752943277],[-0.07562068104744,-0.067119650542736,-0.33422195911407]],[[-0.15246458351612,-0.022259010002017,0.13917809724808],[0.13257160782814,-0.039310991764069,0.074932880699635],[0.031333718448877,-0.10918823629618,-0.24639937281609]],[[0.030948368832469,0.066927425563335,0.028505956754088],[0.083316139876842,-0.049876689910889,-0.16748140752316],[0.035998091101646,0.14574015140533,0.081764601171017]],[[-0.055955801159143,-0.076030269265175,-0.27583011984825],[-0.011895528063178,-0.086332850158215,0.12116058915854],[-0.040109347552061,-0.022912828251719,-0.0063459840603173]],[[0.063206657767296,-0.058253537863493,-0.17880293726921],[0.0054069426842034,0.048917457461357,0.08885183930397],[-0.13501258194447,-0.002337817568332,0.044194046407938]],[[0.011835621669888,0.088932558894157,0.015146447345614],[0.00025790103245527,-0.053776178508997,-0.15237754583359],[-0.023505929857492,0.012408019974828,-0.074484877288342]],[[0.092961125075817,0.12926696240902,0.21754892170429],[0.016945511102676,-0.037635359913111,-0.088372580707073],[0.0046030799858272,-0.010834544897079,0.0097128544002771]],[[-0.021059904247522,-0.0081152757629752,0.25504219532013],[-0.098388284444809,0.0050083915702999,-0.049851983785629],[0.082920044660568,0.052307780832052,0.064997427165508]],[[-0.07332780957222,-0.040292005985975,-0.20348834991455],[-0.065338045358658,-0.019106173887849,-0.010844969190657],[-0.13334657251835,0.027890663594007,0.028165061026812]],[[0.019081119447947,0.070169992744923,-0.091279722750187],[-0.054735902696848,0.13393408060074,0.042867593467236],[-0.015903798863292,0.050397861748934,-0.058106932789087]],[[0.10384763777256,0.019193904474378,-0.026872485876083],[0.12597741186619,-0.021756147965789,0.1297590136528],[-0.071002811193466,0.0189138520509,0.018885454162955]],[[0.10516281425953,0.015911605209112,0.0056580645032227],[-0.025517132133245,0.13740791380405,-0.11459422856569],[-0.037990469485521,-0.0043455064296722,0.22643138468266]],[[-0.030687540769577,-0.062829367816448,-0.10657726228237],[0.10850647091866,0.052972067147493,-0.25981971621513],[0.010589744895697,-0.058579012751579,-0.023687059059739]],[[0.029035277664661,0.014433234930038,-0.037963092327118],[0.010998221114278,0.0071406243368983,-0.099706202745438],[-0.011043493635952,0.061840113252401,0.13971483707428]],[[-0.14983552694321,-0.017297407612205,0.070030048489571],[-0.089534744620323,-0.043988134711981,0.060389384627342],[-0.041675671935081,-0.086305946111679,-0.066107876598835]],[[0.00072351522976533,0.020603004842997,0.0097001120448112],[-0.00057608867064118,-0.067232184112072,-0.091367773711681],[-0.084647379815578,-0.10202044248581,-0.10885296016932]],[[-0.086078457534313,0.028858937323093,0.007536047603935],[-0.06281304359436,-0.0076847416348755,-0.0088238334283233],[-0.089982807636261,0.0042134332470596,-0.0094305975362659]],[[-0.0085753314197063,-0.052768915891647,-0.16548620164394],[-0.039055127650499,0.0062018427997828,0.069353833794594],[-0.073691494762897,-0.056521270424128,-0.031851060688496]],[[0.036313034594059,-0.048938632011414,0.06652720272541],[0.081660233438015,0.053737673908472,0.046932309865952],[-0.16749493777752,-0.25437512993813,-0.30581438541412]],[[0.044850770384073,-0.039626874029636,-0.3199211359024],[-0.034489467740059,0.021050287410617,0.11142591387033],[0.10985615849495,0.10284226387739,0.20119363069534]],[[0.079173758625984,-0.031212260946631,-0.14383502304554],[0.013341001234949,0.085055306553841,-0.004172442946583],[-0.0078383311629295,0.055093921720982,-0.058012414723635]],[[-0.050648771226406,0.018735092133284,-0.045305799692869],[0.13280536234379,-0.0041372468695045,-0.21080610156059],[0.039614908397198,0.13421918451786,0.14067275822163]],[[0.0085922004655004,-0.071405068039894,0.11392506211996],[0.097852811217308,-0.01081726513803,-0.28011929988861],[-0.077150121331215,-0.040480107069016,-0.079014055430889]],[[-0.0022495009470731,0.14682370424271,0.11499118059874],[-0.047530572861433,-0.036469131708145,-0.15637853741646],[0.0021704072132707,0.030420864000916,-0.02239290997386]],[[0.070913136005402,0.0052998615428805,0.058545030653477],[-0.10613285750151,-0.12122683227062,-0.03707192838192],[-0.034298613667488,-0.045679304748774,0.018764082342386]],[[-0.081445842981339,-0.067123427987099,0.25456923246384],[0.059138890355825,-0.033162720501423,-0.096911184489727],[-0.038641478866339,0.0013943244703114,-0.077332489192486]],[[-0.03788847848773,-0.064759396016598,-0.056159999221563],[-0.031560566276312,0.044457271695137,0.063534922897816],[0.052424866706133,0.026785740628839,-0.0071284789592028]],[[0.074476167559624,-0.036767158657312,0.10893577337265],[-0.013682464137673,-0.10094301402569,-0.18328860402107],[-0.20547932386398,-0.03243588283658,0.1433467566967]],[[0.0088758729398251,0.15140543878078,-0.074262700974941],[0.025758309289813,0.067732468247414,-0.078659057617188],[-0.02750432305038,0.10017738491297,-0.27524894475937]],[[0.018649887293577,0.021987801417708,0.093839570879936],[-0.04452496021986,-0.078356854617596,0.14885790646076],[0.15026615560055,0.043361082673073,-0.024515446275473]],[[-0.0091690449044108,0.11211067438126,0.10182408988476],[0.17451740801334,0.087235502898693,0.063560217618942],[0.064844638109207,-0.062092211097479,-0.009033165872097]],[[-0.017669036984444,0.10542798787355,0.018461886793375],[-0.22457891702652,0.05661902576685,0.1692733168602],[-0.011589520610869,0.060122281312943,0.022262865677476]],[[0.031930167227983,0.0036503144074231,-0.11803071945906],[-0.047257848083973,0.018023353070021,-0.084973618388176],[-0.046683307737112,-0.042036555707455,-0.099594824016094]],[[-0.089811719954014,-0.032955970615149,0.18556797504425],[-0.087461404502392,-0.020658815279603,-0.077566541731358],[-0.035447366535664,0.075072146952152,-0.1373772919178]],[[0.020401423797011,-0.12032846361399,-0.10136063396931],[-0.17140981554985,-0.080930672585964,0.087907686829567],[0.16248172521591,0.07152085006237,-0.018468314781785]],[[0.043173640966415,0.0093626109883189,-0.03998725861311],[-0.067722640931606,-0.044368021190166,0.23498529195786],[-0.004734096582979,-0.0081147290766239,0.17777875065804]],[[0.10892816632986,0.089841894805431,-0.14700523018837],[-0.002380060730502,-0.18199656903744,-0.048446450382471],[0.065345540642738,-0.055449075996876,-0.041936609894037]],[[0.079500310122967,-0.028034869581461,-0.089080691337585],[-0.12281198054552,-0.088047333061695,-0.028564980253577],[-0.14109325408936,-0.0093884468078613,0.11938305199146]],[[0.026122808456421,0.11666459590197,0.050309415906668],[-0.014530268497765,-0.032891485840082,0.090865455567837],[0.033062469214201,0.069225043058395,0.0090516917407513]],[[-0.048281863331795,0.024176832288504,0.36053130030632],[-0.01335559040308,-0.060087010264397,-0.08584925532341],[0.035183519124985,0.055373854935169,-0.019363665953279]],[[-0.083724409341812,0.12296386063099,0.045771483331919],[0.055793590843678,0.0023261192254722,-0.11089668422937],[-0.08658204972744,0.039868019521236,0.0064012971706688]],[[0.13196261227131,-0.028349729254842,0.10418244451284],[0.14466720819473,-0.0014804103411734,-0.061613198369741],[-0.068278431892395,-0.032952789217234,0.055855009704828]],[[-0.19665774703026,-0.011872573755682,-0.022794598713517],[-0.0064727780409157,0.12459623813629,-0.016655186191201],[-0.046911370009184,-0.010338619351387,0.21221673488617]],[[-0.0023503310512751,0.052693553268909,-0.026796936988831],[-0.14943218231201,0.033720258623362,-0.039167772978544],[0.023576961830258,0.068401321768761,-0.056911949068308]],[[-0.036363169550896,0.019712176173925,-0.15891873836517],[-0.023868137970567,0.070034094154835,0.0030231927521527],[0.12889912724495,0.13490332663059,0.059013102203608]],[[-0.042021796107292,0.082174345850945,0.13759469985962],[0.054122898727655,0.072076112031937,-0.36991849541664],[-0.14826655387878,-0.034655183553696,0.022477438673377]],[[0.01826623827219,-0.018669601529837,0.12672440707684],[-0.25543829798698,-0.06890082359314,-0.19000418484211],[-0.043422322720289,-0.067084312438965,-0.21117152273655]],[[-0.18410064280033,-0.05802920460701,0.050933409482241],[-0.137800604105,-0.0083585381507874,-0.10081165283918],[-0.040022447705269,-0.027487704530358,-0.054192461073399]],[[-0.051301494240761,-0.0046376013197005,0.31337597966194],[0.099784694612026,-0.064128346741199,-0.041121952235699],[-0.025554278865457,0.050612270832062,-0.075000360608101]],[[-0.034582283347845,-0.062009297311306,0.098733074963093],[0.070100784301758,-0.050693497061729,0.003875277005136],[-0.071727558970451,-0.048988752067089,0.040137130767107]],[[-0.01929740048945,0.053332362323999,0.0047526299022138],[0.004290655720979,-0.059978201985359,-0.050663281232119],[0.10279913246632,0.091334402561188,0.18558356165886]],[[0.035124313086271,-0.063631564378738,0.073359869420528],[-0.11384027451277,-0.033339850604534,-0.005233546718955],[-0.022047640755773,-0.021245585754514,0.036536656320095]],[[-0.083518385887146,0.040135484188795,-0.04133078455925],[-0.033738825470209,-0.02503857947886,0.12659522891045],[-0.012277880683541,-0.01191165857017,0.083942666649818]],[[0.020618416368961,0.080213010311127,0.099228009581566],[0.022807188332081,0.016830010339618,0.18643265962601],[0.045384082943201,0.1136507615447,0.15269230306149]],[[0.012858742848039,-0.053346648812294,-0.13793963193893],[0.075646348297596,-0.099917516112328,-0.11120092123747],[-0.01047286298126,-0.0035498710349202,0.15297308564186]],[[-0.078560069203377,0.053971737623215,-0.081623263657093],[-0.0047210203483701,-0.043115135282278,0.022851271554828],[0.0092761907726526,-0.042948883026838,-0.05619602650404]],[[0.0085278656333685,0.063182301819324,0.10184902697802],[0.087336421012878,0.011522717773914,0.23878821730614],[0.007849870249629,0.11113110184669,-0.11635791510344]],[[0.10181718319654,-0.060282982885838,0.089961543679237],[0.04473789781332,-0.0013159022200853,0.074505709111691],[0.11370639503002,0.10827960073948,-0.023541022092104]],[[0.019022164866328,0.11192601174116,-0.06027789786458],[-0.12596192955971,0.07304734736681,-0.10691224783659],[-0.031305618584156,0.0021682463120669,-0.021210832521319]]],[[[-0.048926021903753,0.052038952708244,0.021043865010142],[-0.038153719156981,-0.052950356155634,0.013871368020773],[-0.03632266074419,0.044130515307188,0.038116969168186]],[[-0.092629753053188,-0.090717189013958,-0.34118920564651],[-0.050667889416218,-0.077580869197845,-0.015233259648085],[0.083606384694576,0.02763651125133,-0.026030259206891]],[[0.039733711630106,0.010549989528954,-0.034280683845282],[-0.26285135746002,-0.048106357455254,0.039630122482777],[0.016580522060394,-0.013212025165558,0.026387792080641]],[[-0.30447617173195,-0.013617821969092,0.017066529020667],[0.18030461668968,0.043711692094803,-0.11034417152405],[0.077338449656963,0.023264817893505,0.16198016703129]],[[-0.041730716824532,-0.046921506524086,0.057067845016718],[-0.012030210345984,-0.024105630815029,-0.051400627940893],[-0.11168346554041,-0.062272548675537,-0.0087392013520002]],[[-0.15932948887348,-0.1149792522192,-0.088806122541428],[0.053274169564247,0.013598104938865,0.083491384983063],[-0.084456488490105,0.1059048473835,0.014868539758027]],[[0.03250951692462,0.012847258709371,-0.011018768884242],[0.01422723941505,-0.0092278122901917,0.032467409968376],[-0.11653019487858,-0.085550539195538,-0.014696694910526]],[[-0.10367501527071,0.04098791629076,0.04430091753602],[0.1685044169426,0.095588378608227,-0.12340600788593],[-0.087684512138367,-0.21626068651676,0.045844182372093]],[[-0.14993095397949,-0.017362270504236,0.0095296213403344],[0.012932823970914,0.015615156851709,0.10504996776581],[-0.017650473862886,0.0068979952484369,-0.054760601371527]],[[-0.048980623483658,-0.021408084779978,-0.044498585164547],[-0.016433281823993,0.059097040444613,0.03803763538599],[-0.018861141055822,0.11900053173304,-0.0017112997593358]],[[-0.019309407100081,-0.012104430235922,-0.067695945501328],[0.036906395107508,-0.098966814577579,0.012395761907101],[0.012403436005116,0.043566033244133,-0.087720565497875]],[[-0.15068170428276,-0.089948318898678,-0.0044549028389156],[-0.01108059566468,-0.1219038516283,0.0074254195205867],[-0.012130937539041,0.0069919740781188,-0.064933769404888]],[[-0.18549112975597,-0.13661506772041,-0.066074587404728],[0.064999490976334,-0.099655985832214,-0.1234530583024],[-0.064589314162731,0.052664894610643,0.10464327782393]],[[0.084624476730824,-0.037579849362373,0.0036658619064838],[0.087093852460384,0.15556775033474,0.031713429838419],[0.04235053062439,-0.024620605632663,0.02216886729002]],[[0.067134864628315,0.045156203210354,-0.030023148283362],[0.041989222168922,-0.073894321918488,0.050620399415493],[-0.029035672545433,-0.08841635286808,-0.11723552644253]],[[-0.10138516128063,-0.16661895811558,-0.028432177379727],[0.0063179000280797,0.052024565637112,0.061975121498108],[-0.0073783150874078,-0.058532159775496,0.084001988172531]],[[-0.026916375383735,-0.042916808277369,0.0054000299423933],[0.0097833788022399,0.022959813475609,0.089115120470524],[-0.033980239182711,-0.10536072403193,-0.1285328567028]],[[-0.1046445146203,0.0358577221632,-0.076596327126026],[0.011806973256171,-0.030916426330805,0.10939463973045],[0.14686903357506,0.028415825217962,0.0022966221440583]],[[-0.061645545065403,-0.10514435172081,0.042199172079563],[-0.026418084278703,0.025644406676292,-0.043605197221041],[0.060676276683807,-0.026347333565354,-0.0056330962106586]],[[-0.092123165726662,-0.021503748372197,0.029813418164849],[-0.0084654437378049,-0.0532071813941,-0.019636142998934],[0.04431077465415,0.014104320667684,0.0062256352975965]],[[-0.068842627108097,-0.095940381288528,-0.060705754905939],[-0.057832188904285,-0.002595296362415,0.055754128843546],[-0.069151766598225,0.0043761231936514,-0.043546158820391]],[[-0.018289141356945,-0.048019774258137,-0.033480428159237],[0.011606523767114,0.073435112833977,0.0069799115881324],[-0.095454752445221,-0.06301511824131,0.044462408870459]],[[0.026760183274746,-0.047658927738667,0.10580921173096],[-0.1018230766058,-0.10424173623323,0.057302106171846],[-0.13643470406532,-0.032663378864527,0.016057515516877]],[[0.062629662454128,0.022363562136889,0.096510522067547],[0.054124467074871,0.019122257828712,-0.042393788695335],[0.074937395751476,0.12524655461311,0.067264273762703]],[[0.10671037435532,0.087321534752846,-0.030339185148478],[-0.019804023206234,-0.056638967245817,-0.11252987384796],[-0.02754875831306,-0.028611714020371,0.11035756766796]],[[-0.026938209310174,0.010139504447579,-0.052346002310514],[0.043169569224119,2.9752278351225e-05,0.060808099806309],[0.014614808373153,0.041531901806593,-0.06474357098341]],[[-0.10116658359766,-0.097269430756569,-0.030370984226465],[-0.035809144377708,0.018127551302314,-0.0015494250692427],[0.033756528049707,0.0088336728513241,-0.0078176334500313]],[[0.12106795608997,0.032450810074806,-0.05319856479764],[-0.0019802977330983,0.045103587210178,-0.12058738619089],[-0.017771342769265,-0.11939445137978,0.2011354714632]],[[-0.042463351041079,-0.064040400087833,-0.11151751130819],[-0.057877197861671,-0.051052901893854,-0.030136097222567],[-0.043056521564722,0.015533361583948,-0.075754605233669]],[[0.0037708792369813,-0.025138540193439,0.060906693339348],[-0.14473408460617,-0.039189022034407,0.052380923181772],[-0.026442984119058,0.050920695066452,0.054029818624258]],[[0.024799320846796,0.082136027514935,0.13663055002689],[-0.034085180610418,0.023657720535994,-0.070793122053146],[-0.060499176383018,0.046030551195145,0.19952969253063]],[[-0.087949395179749,0.11338600516319,0.0036430994514376],[0.17805390059948,0.017001196742058,-0.0015918721910566],[0.06079850718379,0.11106109619141,0.08916550129652]],[[0.023042632266879,-0.0060359924100339,0.0090436544269323],[0.034986320883036,-0.072060234844685,-0.068925254046917],[0.16062539815903,0.13564030826092,0.090876922011375]],[[0.010587208904326,0.094393506646156,-0.00052748969756067],[0.063861198723316,0.12576280534267,-0.068480551242828],[-0.026898296549916,-0.094738736748695,0.091117322444916]],[[-0.10273752361536,-0.050259385257959,-0.11678289622068],[0.087864816188812,0.026002688333392,-0.020390711724758],[0.073722213506699,0.058920465409756,0.0452123247087]],[[-0.071245461702347,0.13245938718319,0.054059691727161],[0.020541682839394,0.014281257987022,-0.04635576531291],[-0.047111950814724,-0.034333817660809,-0.1725465208292]],[[0.024286964908242,-0.071848347783089,0.08886843174696],[-0.17312997579575,-0.015381979756057,-0.047274842858315],[-0.058066502213478,0.21878975629807,0.022645389661193]],[[-0.080202698707581,-0.016429537907243,-0.013489757664502],[0.049813397228718,0.032086368650198,0.028259176760912],[-0.0060132234357297,0.030669504776597,-0.011782106943429]],[[0.07843753695488,-0.033025745302439,-0.08015301823616],[-0.075713463127613,-0.075805529952049,0.081218212842941],[-0.039195690304041,-0.0438277348876,-0.033146418631077]],[[0.038103267550468,0.05251582711935,0.039588369429111],[-0.13144160807133,-0.057378794997931,0.03166875988245],[-0.11921832710505,-0.056965034455061,-0.068416364490986]],[[-0.22152371704578,-0.074987597763538,-0.20697669684887],[0.04005366563797,-0.0833635404706,-0.012587884441018],[-0.10658019036055,-0.015791360288858,-0.066125020384789]],[[-0.062325831502676,-0.014796786010265,-0.053479257971048],[0.043767396360636,-0.01316000148654,-0.092422410845757],[-0.081773012876511,0.04806887358427,0.033954795449972]],[[0.03381061181426,0.024095218628645,0.039601925760508],[0.035216476768255,0.2060402482748,-0.021928632631898],[0.01129309181124,-0.096812441945076,-0.019914006814361]],[[-0.17303121089935,-0.063918076455593,0.10561945289373],[-0.028035175055265,-0.024592533707619,-0.10888374596834],[-0.11069790273905,-0.059345293790102,-0.018112892284989]],[[0.039143744856119,0.08941163867712,0.075125105679035],[0.037849918007851,0.025411227717996,-0.017133660614491],[-0.11660461127758,-0.059653248637915,0.16228371858597]],[[0.010740878991783,0.1798592954874,0.072067618370056],[-0.0036860110703856,0.076745562255383,0.0055234483443201],[0.011846442706883,0.061754610389471,-0.078984506428242]],[[0.11502365767956,0.14939261972904,0.042027246206999],[-0.10199548304081,-0.10090027749538,0.082698009908199],[0.038002718240023,-0.04493473470211,-0.020589023828506]],[[-0.12164753675461,0.0022431483957916,0.0075002778321505],[0.032384522259235,-0.053557854145765,0.14132887125015],[-0.018391551449895,0.0056525245308876,0.0068211392499506]],[[-0.093855887651443,-0.13464729487896,-0.19945111870766],[0.01422808971256,-0.094589725136757,-0.084604330360889],[0.10777755081654,0.038914352655411,0.027836902067065]],[[0.024204911664128,-0.019985834136605,-0.031968347728252],[0.04790822416544,0.10648012161255,0.078710623085499],[0.0071598058566451,0.075072839856148,-0.042724523693323]],[[-0.045062683522701,-0.13567946851254,-0.14245083928108],[-0.031277030706406,0.10120897740126,0.17240792512894],[-0.025466749444604,-0.073616154491901,-0.07484894245863]],[[-0.056773215532303,0.0013499491615221,-0.029359498992562],[-0.10613743960857,-0.085307441651821,0.10963150113821],[0.20275031030178,0.14414548873901,0.22675338387489]],[[-0.060844007879496,-0.070212297141552,0.14158986508846],[-0.091756783425808,0.036053277552128,-0.051063310354948],[0.0085010388866067,0.025351915508509,-0.045903276652098]],[[0.028926126658916,-0.071369469165802,0.033110491931438],[-0.019673308357596,0.071151778101921,-0.057427275925875],[0.0481694675982,0.10835272818804,-0.09510525316]],[[-0.045212335884571,-0.21098290383816,0.13553340733051],[-0.25972062349319,-0.10134583711624,-0.18790383636951],[0.055009052157402,-0.087863773107529,-0.088050313293934]],[[-0.082610569894314,-0.03537517413497,0.031042579561472],[0.21372297406197,0.12390281260014,-0.10271496325731],[-0.11657494306564,-0.085728816688061,-0.0074469237588346]],[[0.01874078810215,-0.24141484498978,-0.094407953321934],[-0.20384185016155,0.028602780774236,0.16438260674477],[-0.10757349431515,0.11146997660398,-0.10519681125879]],[[-0.020665939897299,-0.045143488794565,-0.064383164048195],[-0.0068946797400713,-0.05882116407156,0.045680478215218],[-0.063629701733589,-0.0065580592490733,-0.005052512511611]],[[0.057122137397528,0.10347869992256,-0.033579532057047],[0.046734377741814,0.022925967350602,0.047089874744415],[-0.036171596497297,0.049104832112789,-0.00084457074990496]],[[0.047156203538179,0.014638436026871,0.031018877401948],[0.0034214840270579,-0.046241287142038,-0.07265492528677],[-0.044517565518618,0.042948629707098,0.11129786074162]],[[0.17877452075481,0.13760498166084,0.14841799438],[0.10101503133774,-0.020247425884008,-0.055274035781622],[0.10271748155355,0.00048422848340124,-0.041082113981247]],[[1.5592187992297e-05,-0.0048922495916486,0.025300707668066],[-0.0083213746547699,0.05474653467536,0.074537828564644],[0.042451031506062,0.033551156520844,0.11733157932758]],[[0.050872024148703,-0.10498015582561,-0.048970725387335],[-0.017538813874125,0.02630983106792,0.029909959062934],[0.0011599803110585,-0.1197338104248,-0.079526774585247]],[[0.030737517401576,0.06628829240799,0.045233923941851],[0.03809317573905,-0.078617446124554,-0.15997390449047],[0.039820313453674,0.0083320662379265,0.073903165757656]]],[[[-0.034780994057655,-0.032176710665226,-0.076926052570343],[-0.11606106162071,-0.0050369943492115,-0.037815373390913],[0.10878239572048,-0.0061266105622053,-0.046469666063786]],[[-0.065264947712421,-0.057336512953043,-0.17362613976002],[-0.1924487054348,-0.12141780555248,0.0013886464294046],[0.088951908051968,0.063641875982285,0.052897095680237]],[[0.10367048531771,-0.0066838981583714,-0.075132295489311],[0.07802526652813,-0.0075513822957873,-0.23493467271328],[-0.022384228184819,0.0055641056969762,-0.0049290372990072]],[[-0.029332658275962,-0.060738369822502,-0.0096414051949978],[-0.13164523243904,0.029567060992122,-0.07967534661293],[-0.091817490756512,0.075821541249752,0.003755618352443]],[[-0.014072545804083,-0.0028448682278395,-0.074186824262142],[-0.17395630478859,-0.089092038571835,-0.12508505582809],[-0.15698644518852,-0.033046428114176,-0.0086954394355416]],[[0.02632656134665,-0.054421838372946,-0.012316353619099],[-0.018064327538013,-0.0023243925534189,0.11787391453981],[-0.034841917455196,0.076872244477272,0.045601088553667]],[[-0.0072897830978036,0.036447044461966,0.053013805299997],[-0.059814516454935,0.0035891109146178,-0.022846395149827],[-0.033213216811419,0.010551710613072,-0.0036229330580682]],[[-0.040960386395454,0.017617477104068,0.012278780341148],[0.044835083186626,0.034119911491871,0.019327066838741],[-0.12234681099653,-0.029944617301226,0.093191981315613]],[[0.0063599394634366,-0.030784325674176,0.07398072630167],[-0.033691376447678,-0.069335468113422,0.0050352262333035],[0.11734820902348,-0.0023821145296097,0.076493605971336]],[[0.026775646954775,0.001153236371465,-0.10904116183519],[-0.048885870724916,0.01573552750051,0.0045280158519745],[-0.086711570620537,-0.080873146653175,-0.001858287025243]],[[-0.0093154832720757,0.034251645207405,-0.068617358803749],[0.051267046481371,0.095702722668648,0.052841901779175],[0.075758539140224,-0.007669139187783,-0.0542908385396]],[[-0.071064196527004,-0.03298257663846,-0.089755095541477],[0.10883769392967,0.13033077120781,-0.021027842536569],[-0.21135966479778,-0.047807354480028,-0.098270960152149]],[[-0.043937064707279,0.01425101980567,-0.045225951820612],[0.0029432957526296,0.091241829097271,0.089776411652565],[-0.0021213754080236,0.061055649071932,0.04772600159049]],[[-0.20172663033009,0.0093412846326828,-0.022035839036107],[-0.078547224402428,0.028967093676329,-0.0047550522722304],[0.045076820999384,0.071918919682503,0.018873764201999]],[[-0.043738313019276,-0.068708159029484,-0.0048365765251219],[0.0019865531940013,-0.029833229258657,0.11738245934248],[-0.018099600449204,-0.0048139560967684,-0.11495177447796]],[[-0.065893478691578,-0.001019781222567,0.050014544278383],[-0.012709064409137,-0.067349836230278,0.091057457029819],[0.058185249567032,-0.052379798144102,-0.074217475950718]],[[0.057994335889816,-0.051787100732327,-0.11519495397806],[0.021426932886243,-0.062995739281178,0.070676021277905],[-0.057207681238651,-0.034915708005428,0.12251555919647]],[[-0.051726739853621,0.062315933406353,-0.013618706725538],[-0.00013080821372569,0.01282555423677,-0.14557968080044],[-0.038562387228012,-0.01576460711658,-0.035071723163128]],[[-0.017958115786314,0.038518968969584,-0.082731276750565],[0.094534888863564,-0.034173596650362,-0.054731536656618],[0.0089046992361546,-0.034731570631266,-0.0051733483560383]],[[-0.019641825929284,-0.0074416748248041,-0.037664391100407],[0.062972471117973,0.035689514130354,-0.089835189282894],[0.1168650239706,0.037101607769728,0.10958695411682]],[[0.0089167831465602,-0.048487942665815,0.039045967161655],[0.003919992595911,-0.026596575975418,-0.047381769865751],[-0.086533673107624,0.0091785499826074,-0.0024484589230269]],[[-0.012546726502478,-0.066960893571377,0.023869121447206],[0.038704417645931,-0.055054377764463,0.041185654699802],[-0.0049837003462017,-0.03748545050621,0.042562436312437]],[[0.019359132274985,-0.090892016887665,-0.048099838197231],[0.085937395691872,-0.029421664774418,-0.041957460343838],[0.010432445444167,0.001725047128275,0.091988511383533]],[[0.048203960061073,-0.0016584227560088,-0.061642065644264],[-0.012801283039153,-0.02394506521523,0.095418378710747],[-0.037124592810869,-0.0058998065069318,0.013132962398231]],[[0.082021936774254,-0.049082469195127,-0.128552287817],[-0.067354835569859,0.043371856212616,-0.0291463509202],[0.24406439065933,-0.018458066508174,0.12014452368021]],[[0.070923686027527,0.093637749552727,-0.1457878947258],[0.0089753670617938,0.040008064359426,-0.097322583198547],[0.068403296172619,0.070862479507923,-0.13873814046383]],[[-0.040900889784098,0.10883018374443,0.13664565980434],[0.0070688351988792,0.06084667891264,0.062616564333439],[-0.00440852669999,0.032299473881721,-0.017919460311532]],[[-0.026421036571264,-0.027269788086414,0.14799664914608],[-0.060884214937687,-0.15788096189499,-0.046387996524572],[0.075010575354099,-0.039217688143253,-0.032318890094757]],[[0.029545649886131,0.014559832401574,-0.037410099059343],[-0.032199647277594,0.037812735885382,0.046203654259443],[0.1007167622447,0.012447335757315,-0.06451303511858]],[[0.037227276712656,0.065604120492935,0.056129574775696],[0.018742565065622,0.10080407559872,0.040728647261858],[-0.070388562977314,-0.02242286875844,0.068573869764805]],[[0.016538145020604,-0.099390961229801,0.13087500631809],[0.13375931978226,-0.020499870181084,0.017439477145672],[0.088136501610279,0.035468991845846,0.081698872148991]],[[0.05967591330409,-0.02030766569078,-0.0050697708502412],[-0.015891324728727,0.095025226473808,0.0057960650883615],[0.032173812389374,0.066235415637493,0.099716760218143]],[[0.035235162824392,0.0073082507587969,-0.069915190339088],[-0.00098572811111808,0.014458622783422,0.12083727121353],[-0.052551951259375,0.052563227713108,0.028542540967464]],[[0.11466263234615,0.055527534335852,0.022960893809795],[0.024578357115388,0.11399231851101,-0.016943940892816],[0.041140522807837,-0.00020444743859116,0.053724605590105]],[[0.068346090614796,0.036655101925135,0.010450143367052],[0.069259159266949,-0.054047293961048,0.07005613297224],[-0.11560777574778,-0.059153154492378,0.05596786364913]],[[0.12737564742565,0.020498272031546,-0.047807928174734],[0.042418006807566,-0.0055343047715724,-0.085984393954277],[0.090150244534016,0.012998632155359,-0.06380071491003]],[[-0.040748726576567,0.0089875590056181,0.10167942941189],[-0.046737063676119,0.17745360732079,0.073976963758469],[-0.047027707099915,-0.045656535774469,-0.047349691390991]],[[-0.074256017804146,-0.03305284678936,0.029713559895754],[-0.027098163962364,-0.024510085582733,-0.0525834672153],[-0.092650480568409,-0.10319644957781,-0.18780839443207]],[[-0.070318326354027,-0.073724448680878,-0.062211371958256],[0.1027757525444,0.057448290288448,0.077067442238331],[-0.088637292385101,-0.062927015125751,-0.057427894324064]],[[-0.0084833428263664,-0.098875038325787,-0.033624161034822],[-0.012843318283558,0.023786712437868,0.066933341324329],[0.086179226636887,0.11164505779743,-0.095386609435081]],[[0.040761191397905,-0.096428997814655,0.015407682396472],[0.10076528787613,-0.07921939343214,0.045261081308126],[-0.036711677908897,-0.056976448744535,0.008539080619812]],[[0.088144369423389,-0.15052495896816,-0.18028354644775],[0.10107260197401,-0.18747924268246,0.01582533121109],[-0.020783452317119,0.012420373037457,0.0034931544214487]],[[-0.033052120357752,0.023269537836313,-0.036930557340384],[0.043467100709677,-0.074747785925865,-0.016632931306958],[0.10169411450624,-0.1061402708292,-0.00084991514449939]],[[-0.052456568926573,-0.14933101832867,0.0090906312689185],[0.13707925379276,0.11530029773712,-0.022813165560365],[-0.010126045905054,-0.084361955523491,-0.046524938195944]],[[-0.10356034338474,-0.037163682281971,0.02633024007082],[0.096141621470451,0.018740912899375,0.074620746076107],[-0.0022807654459029,0.0030063616577536,-0.039636753499508]],[[0.093628965318203,0.0093563878908753,0.011335354298353],[0.0064109340310097,-0.16348783671856,-0.078025378286839],[-0.060955703258514,-0.078408911824226,0.09187600761652]],[[0.14002732932568,0.025999460369349,-0.0056947907432914],[0.08771313726902,0.042081207036972,-0.1017447412014],[0.10197708755732,0.067545905709267,0.12796813249588]],[[-0.066551230847836,-0.061456110328436,-0.16739581525326],[-0.0066512180492282,-0.0071681886911392,-0.10380401462317],[0.02112127840519,0.047850154340267,-0.081129774451256]],[[-0.15404288470745,-0.084736414253712,-0.097345046699047],[0.014641826972365,0.021376337856054,-0.035249140113592],[0.066278241574764,0.050952181220055,0.059239726513624]],[[0.0021661582868546,0.057450629770756,-0.12699830532074],[0.1877404153347,0.024149866774678,0.061036106199026],[0.045609015971422,-0.0080666095018387,-0.097742564976215]],[[-0.16671217978001,0.029204735532403,-0.072326339781284],[-0.065945670008659,-0.041460052132607,-0.049650933593512],[0.15410687029362,-0.013524809852242,0.017825180664659]],[[-0.04180558398366,0.014693349599838,0.0095164282247424],[0.058623559772968,0.030600028112531,-0.00061497942078859],[-0.14047589898109,-0.004908621776849,0.049294654279947]],[[-0.11297810822725,-0.10105337202549,-0.015363737009466],[0.0095328204333782,-0.0033341627568007,0.015865879133344],[0.03261835500598,0.0067702583037317,0.094389542937279]],[[0.098043881356716,-0.011541820131242,-0.018318315967917],[0.095836631953716,-0.05697263777256,-0.013943003490567],[0.04712525382638,-0.055818501859903,-0.12168441712856]],[[0.00048692745622247,0.039263397455215,-0.029498491436243],[0.030911818146706,0.056551594287157,-0.063939884305],[0.080443888902664,-0.0061518778093159,-0.077977031469345]],[[-0.037303622812033,0.032925803214312,-0.086616434156895],[0.013968869112432,-0.078293062746525,-0.012636952102184],[-0.018864845857024,-0.10051718354225,0.015378362499177]],[[0.079941160976887,0.079338476061821,0.063791915774345],[0.057956174015999,-0.059767786413431,-0.010858424007893],[-0.020779874175787,0.013825997710228,0.048833079636097]],[[0.067069940268993,0.13809993863106,0.0096808522939682],[-0.024567637592554,-0.043191183358431,0.0061155795119703],[0.033747840672731,-0.029770998284221,-0.0030453104991466]],[[-0.039884209632874,-0.019472578540444,0.022405801340938],[0.016457621008158,0.034668147563934,0.035748261958361],[0.00079528312198818,-0.007406456861645,0.050349984318018]],[[0.027203978970647,-0.00010863307397813,0.15260045230389],[0.050752229988575,0.12310369312763,-0.02619881182909],[0.021109778434038,-0.048963692039251,-0.025592101737857]],[[0.018755052238703,-0.076847895979881,0.08904617279768],[-0.0161537155509,-0.17484687268734,-0.053242769092321],[0.03229845315218,0.015493656508625,0.026561848819256]],[[0.13479013741016,0.0098293777555227,-0.0041830795817077],[0.046881955116987,0.023800419643521,0.062701836228371],[0.0088558690622449,0.0046172887086868,-0.018286710605025]],[[-0.068668857216835,-0.02987140789628,-0.0039311721920967],[0.017028529196978,-0.053161043673754,-0.002998432610184],[-0.048994895070791,0.14556084573269,0.076316930353642]],[[0.10360054671764,0.12158361077309,0.05351409688592],[-0.093733109533787,-0.0082041593268514,-0.039276253432035],[-0.072509773075581,-0.025675380602479,0.010648348368704]]],[[[-0.030112015083432,0.029426358640194,0.013045201078057],[-0.055788122117519,0.017561977729201,0.032477241009474],[4.3563701183302e-05,0.10171239823103,0.023803127929568]],[[-0.11294007301331,-0.034435365349054,0.060701426118612],[-0.085699833929539,0.010966437868774,0.055635005235672],[-0.14667116105556,-0.0049553513526917,-0.058001756668091]],[[0.0014182679587975,-0.022145638242364,0.022127324715257],[-0.08508013188839,0.027975920587778,0.023742645978928],[-0.081377059221268,0.027548803016543,-0.0084413168951869]],[[-0.063771262764931,-0.0085959285497665,-0.0047012027353048],[0.0047634514048696,-0.043075375258923,0.14112851023674],[0.060111455619335,-0.0049308938905597,-0.007004561368376]],[[-0.030335158109665,-0.1137687265873,0.0018935041734949],[0.042606931179762,-0.01627073250711,-0.079235941171646],[0.038553565740585,0.045436829328537,-0.078353315591812]],[[-0.013456686399877,-0.019199538975954,0.039934627711773],[-0.018316313624382,-0.015532011166215,-0.057846892625093],[-0.061350878328085,0.023668419569731,0.11214850097895]],[[0.068326734006405,0.03244573622942,-0.10043983906507],[-0.0039187129586935,-0.01714863628149,0.0157091896981],[-0.047105345875025,0.034533869475126,0.11981305480003]],[[-0.0048426105640829,0.031268890947104,0.046451706439257],[0.044632516801357,0.067947305738926,-0.024024449288845],[-0.13245488703251,0.067028857767582,0.016112605109811]],[[0.088165588676929,0.059796053916216,0.037057664245367],[-0.0098913833498955,-0.062762551009655,-0.044365752488375],[0.12860926985741,-0.05861110240221,0.10953435301781]],[[-0.087703131139278,-0.041043173521757,0.05228503420949],[-0.056757539510727,0.038783088326454,0.11320246011019],[-0.14863088726997,0.10073284059763,0.011271973140538]],[[-0.0079157464206219,0.085506357252598,-0.045862842351198],[0.0030906507745385,0.02463105879724,-0.077784799039364],[0.11454471945763,0.0050100511871278,-0.035053439438343]],[[-0.17002800107002,-0.063326880335808,-0.025722844526172],[0.051164031028748,-0.079858303070068,-0.073179520666599],[-0.093339785933495,-0.010146132670343,-0.015363285318017]],[[-0.024884339421988,0.042496077716351,-0.042468942701817],[0.020502392202616,0.042808227241039,-0.036781288683414],[-0.10053642094135,-0.038277968764305,0.066598489880562]],[[-0.13833123445511,-0.010772366076708,0.037648677825928],[0.067236579954624,0.026089137420058,0.0098712500184774],[0.0079487869516015,0.05514258146286,0.025117464363575]],[[0.11687108129263,-0.079314075410366,0.056788686662912],[-0.041578158736229,0.051192220300436,0.13049069046974],[0.040910046547651,0.14545820653439,0.055876586586237]],[[-0.0275460742414,-0.073130205273628,0.021071568131447],[0.078709863126278,-0.064799107611179,-0.013364770449698],[0.022162467241287,0.038439866155386,0.054620966315269]],[[-0.047894861549139,-0.055688213557005,0.099774658679962],[-0.10194630920887,-0.041439335793257,0.0048652361147106],[-0.15771229565144,-0.066269591450691,0.002917354227975]],[[-0.032019894570112,0.004472800064832,-0.08603660017252],[-0.068343564867973,-0.031474992632866,-0.00050173967611045],[-0.058691281825304,-0.045450266450644,0.12721246480942]],[[0.02759831212461,0.0384202003479,-0.050624690949917],[0.06808128207922,0.032611895352602,-0.076531410217285],[0.0081317285075784,-0.018195416778326,-0.097985118627548]],[[-0.016890304163098,0.013774504885077,-0.019384419545531],[-0.015784338116646,-0.032438676804304,-0.048739604651928],[-0.082928657531738,0.00334333605133,-0.081409446895123]],[[0.073438316583633,-0.0061757257208228,0.031444638967514],[0.058502625674009,0.068505972623825,-0.030236721038818],[0.048300884664059,-0.010117589496076,0.20597921311855]],[[-0.045369029045105,-0.019759565591812,-0.0474510230124],[0.044997654855251,0.0076334229670465,-0.026524715125561],[0.074965879321098,-0.056243594735861,-0.050277303904295]],[[0.099994279444218,-0.045380584895611,-0.0064294659532607],[0.16191597282887,-0.013384043239057,0.11747059226036],[-0.033633153885603,-0.015914322808385,-0.022357063367963]],[[0.12643624842167,0.017998909577727,-0.0095733245834708],[0.10251754522324,0.0022164278198034,-0.022196693345904],[0.071555651724339,0.082614563405514,-0.019603781402111]],[[-0.043559551239014,-0.031245732679963,-0.052494157105684],[-0.028370169922709,-0.033570162951946,-0.02558227814734],[0.089065834879875,-0.0015009164344519,0.041530940681696]],[[-0.012869176454842,-0.0081321522593498,0.023087268695235],[-0.042702484875917,-0.0087131401523948,0.066734068095684],[-6.8100816861261e-05,-0.012734216637909,0.027089053764939]],[[-0.0092835463583469,0.17816266417503,0.079381510615349],[-0.1514109224081,0.076283119618893,-0.042270198464394],[-0.080352835357189,-0.016841942444444,-0.097181871533394]],[[-0.15315479040146,-0.011348060332239,0.076566122472286],[0.14891006052494,-0.032603431493044,-0.03738970682025],[0.056698203086853,0.085081957280636,0.10076639056206]],[[-0.047229446470737,-0.011282678693533,-0.11827577650547],[0.027208399027586,0.034442827105522,0.010666081681848],[0.045701168477535,-0.078712306916714,0.02533489651978]],[[0.068132996559143,0.061340440064669,-0.02896541915834],[0.047501221299171,-0.01693263463676,-0.014396576210856],[0.010700376704335,-0.11709034442902,-0.091936327517033]],[[0.049819864332676,0.056966722011566,0.03501845151186],[-0.059289496392012,-0.010448029264808,0.057877838611603],[-0.1272509843111,-0.024469306692481,0.029774643480778]],[[-0.08206307888031,0.029864741489291,0.12128435820341],[-0.040829300880432,-0.059992283582687,-0.099411457777023],[0.0065419576130807,0.085350565612316,-0.036931168287992]],[[0.028197446838021,0.13633443415165,0.083753369748592],[0.10587993264198,-0.056045852601528,0.17309010028839],[0.014943350106478,-0.035836882889271,0.00089743634453043]],[[-0.0018002648139372,-0.065747432410717,0.004285876173526],[-0.0089941136538982,0.047972850501537,-0.013768236152828],[-0.068453200161457,-0.085388839244843,-0.01246533356607]],[[-0.05740063637495,-0.021779015660286,-0.05241359397769],[0.053408812731504,-0.041034620255232,0.067075416445732],[-0.035778544843197,0.097802765667439,0.03681493550539]],[[0.073269329965115,0.039313826709986,0.078996926546097],[0.013236427679658,-0.015630442649126,0.042629729956388],[0.093384444713593,-0.0067724990658462,0.023684887215495]],[[-0.068803563714027,-0.0024838445242494,-0.10642261058092],[0.16561472415924,-0.077285915613174,0.033373180776834],[-0.03802403435111,0.11145811527967,-0.016471965238452]],[[-0.079845808446407,-0.092111460864544,-0.093766719102859],[-0.13236466050148,0.052650939673185,-0.096503756940365],[-0.13783323764801,-0.052182052284479,0.010696767829359]],[[-0.11715853959322,0.028811044991016,0.15406408905983],[-0.011077278293669,-0.029149970039725,-0.030507946386933],[-0.18782590329647,0.13763345777988,-0.020635008811951]],[[0.051515612751245,-0.031502049416304,-0.045787960290909],[-0.053796369582415,-0.077478528022766,0.029927752912045],[-0.1403868496418,-0.0055299568921328,0.047650318592787]],[[-0.12996472418308,-0.10961497575045,-0.036104593425989],[0.10049302875996,-0.10463478416204,-0.030225874856114],[-0.028199639171362,-0.16576124727726,-0.044412765651941]],[[-0.0051956111565232,-0.09531556814909,0.020400155335665],[-0.10663760453463,-0.014582714065909,0.0060039712116122],[-0.010621472261846,-0.0062009235844016,-0.0076680057682097]],[[-0.0041283210739493,-0.068199507892132,-0.0098196752369404],[0.088940389454365,0.025769308209419,0.047477848827839],[0.087194085121155,-0.033092014491558,-0.14392165839672]],[[-0.083011388778687,-0.096445858478546,-0.10292318463326],[-0.087199345231056,0.07421712577343,0.0069997454993427],[-0.014118154533207,0.0090699139982462,0.048042163252831]],[[-0.13212941586971,0.078240297734737,-0.093045093119144],[0.020503602921963,0.070942640304565,-0.2133851647377],[-0.083656385540962,-0.084012098610401,-0.031909592449665]],[[0.064641229808331,0.062685154378414,-0.0040833642706275],[0.026476630941033,-0.038489017635584,-0.050468128174543],[-0.054785069078207,-0.16455775499344,0.034731734544039]],[[0.030869897454977,0.001986542949453,-0.014990358613431],[0.091032452881336,-0.057150788605213,-0.048923261463642],[0.20879420638084,0.092502497136593,0.059074588119984]],[[0.010767651721835,-0.021900817751884,0.026596192270517],[0.010978198610246,0.057509865611792,0.060307923704386],[0.050136756151915,0.016467133536935,-0.040401760488749]],[[0.036370977759361,0.026002714410424,-0.094716556370258],[0.065590910613537,0.0097493454813957,-0.10356623679399],[0.097249798476696,0.029894646257162,0.013142993673682]],[[0.080120041966438,-0.10453908890486,-0.14006175100803],[-0.0058313114568591,-0.046692293137312,0.024777371436357],[0.066808059811592,-0.1153959184885,0.012032497674227]],[[-0.015884183347225,0.18752500414848,0.058561578392982],[0.0089757461100817,0.089655369520187,-0.029006900265813],[-0.043388243764639,0.035583905875683,-0.12945914268494]],[[-0.14572429656982,0.052613701671362,-0.074857249855995],[0.08271113038063,-0.068478479981422,0.063910506665707],[-0.13305714726448,-0.028059819713235,0.12130796164274]],[[0.0054442859254777,0.013924974016845,0.05870359018445],[-0.0037476201541722,0.013197930529714,0.048240635544062],[0.092749029397964,0.014699862338603,0.15109333395958]],[[0.023743849247694,0.010611354373395,-0.07292465865612],[0.015752352774143,0.021945731714368,0.00023156986571848],[-0.02117102406919,-0.054613761603832,0.081643626093864]],[[0.048035155981779,0.093367464840412,-0.061659891158342],[0.043381690979004,-0.059172339737415,0.11269826442003],[-0.088834799826145,0.010349897667766,-0.0055634188465774]],[[0.023351658135653,0.05583244562149,-0.02373812533915],[0.0045754024758935,-0.055257558822632,0.073495522141457],[0.012326631695032,0.082276731729507,-0.062492452561855]],[[-0.071184076368809,0.07194796204567,0.070844605565071],[-0.012709642760456,-0.12240397930145,0.024611303582788],[-0.0057180831208825,-0.045148782432079,-0.067003853619099]],[[-0.011182997375727,0.024060552939773,0.015501136891544],[-0.068778030574322,-0.058120392262936,-0.016467671841383],[-0.049279622733593,-0.01676175929606,-0.047012902796268]],[[0.10667534172535,0.09370406717062,0.2009062319994],[0.028717381879687,-0.02296905964613,0.048741951584816],[0.027977744117379,0.027345748618245,0.060472548007965]],[[0.031116997823119,-0.044540207833052,0.048439670354128],[-0.033369805663824,-0.054540671408176,-0.0054032490588725],[0.051354851573706,0.015001938678324,0.068534679710865]],[[0.044629607349634,0.063811965286732,0.019603781402111],[0.01352362986654,-0.054921623319387,-0.0012865525204688],[-0.079268239438534,-0.14125396311283,0.047671977430582]],[[0.012838976457715,0.0062470133416355,0.097288548946381],[-0.085338748991489,-0.025423441082239,0.091125771403313],[0.097371116280556,-0.034421518445015,-0.046475324779749]],[[-0.017153941094875,-0.05169715732336,0.068039916455746],[-0.030701264739037,-0.079087451100349,0.06091009452939],[-0.12899976968765,-0.038613080978394,-0.083139307796955]],[[-0.0098145781084895,0.11005710065365,0.022354124113917],[0.0078786527737975,0.12267915159464,-0.10900411009789],[-0.067903570830822,0.055049624294043,-0.0454954020679]]],[[[-0.079948097467422,-0.085573852062225,-0.077208042144775],[-0.10245643556118,-0.078628823161125,-0.13282923400402],[-0.061582647264004,0.048063851892948,-0.019135946407914]],[[0.021447695791721,-0.1011022105813,-0.11429215967655],[0.031196843832731,-0.017619347199798,-0.056371834129095],[-0.044037669897079,-0.054790079593658,0.013693334534764]],[[0.023611633107066,-0.0073096537962556,-0.035553883761168],[-0.02118855714798,-0.021717531606555,-0.022482508793473],[-0.1005242690444,-0.068990372121334,-0.063291013240814]],[[-0.045015074312687,0.029930474236608,0.11083833128214],[0.00607716338709,-0.052078142762184,-0.097257763147354],[-0.022624107077718,0.081671521067619,-0.17523974180222]],[[0.044544756412506,-0.02562696300447,-0.049595657736063],[0.033751282840967,0.055591881275177,0.013563053682446],[0.095033399760723,0.023602768778801,0.0069961249828339]],[[0.0088603785261512,-0.033531878143549,-0.062575414776802],[0.00035526120336726,-0.034108769148588,-0.0067918724380434],[-0.017092464491725,0.019088871777058,0.042823020368814]],[[-0.076186090707779,-0.05031643807888,0.10704576224089],[-0.016281232237816,-0.15184481441975,0.0021080560982227],[-0.0657559633255,0.032613810151815,0.00038752082036808]],[[0.031665477901697,0.018828745931387,0.069580219686031],[-0.046508356928825,-0.032557867467403,-0.20661361515522],[0.071156740188599,0.028645500540733,-0.093872494995594]],[[0.02137989923358,0.032881122082472,0.068498589098454],[-0.0038767086807638,0.0081390710547566,-0.020178815349936],[-0.0020583460573107,0.020176408812404,0.04317844286561]],[[-0.028864866122603,-0.054438948631287,-0.057417552918196],[0.018209787085652,0.02282409183681,0.01714120618999],[0.030219569802284,-0.044160582125187,-0.0080351736396551]],[[-0.0053918259218335,-0.0043599070049822,0.011744082905352],[0.013671620748937,-0.096204578876495,-0.031686138361692],[0.0066157439723611,-0.03516598790884,-0.34827175736427]],[[-0.074455916881561,-0.01967852935195,0.063712723553181],[0.071458049118519,-0.025003669783473,-0.053183510899544],[0.079550564289093,0.039137240499258,-0.13235668838024]],[[-0.034112010151148,-0.082198552787304,-0.062820203602314],[-0.019344329833984,-0.00074624305125326,0.0086886864155531],[0.028491472825408,0.0012052675010636,0.0083668418228626]],[[-0.031300630420446,-0.075033634901047,0.11616405844688],[0.08396053314209,-0.014717105776072,-0.14096358418465],[-0.029049575328827,0.021675752475858,2.6050438464154e-06]],[[0.018985817208886,-0.075689256191254,-0.015444482676685],[0.01975179463625,-0.075376152992249,-0.0096964742988348],[0.043107360601425,0.027046531438828,0.037120942026377]],[[-0.0073158936575055,-0.023694382980466,0.00016931099526118],[-0.02234448119998,-0.027865612879395,-0.023646648973227],[-0.012621522881091,-0.030272142961621,0.050763789564371]],[[0.011712400242686,-0.07206579297781,-0.027411416172981],[0.016447521746159,0.013764157891273,-0.091930277645588],[-0.11268662661314,0.00075525441206992,0.065348267555237]],[[-0.0010456583695486,-0.072378031909466,0.04023227840662],[0.054341908544302,0.059041000902653,0.0067787226289511],[0.081373810768127,-0.099259614944458,-0.040716111660004]],[[0.017301950603724,0.047232042998075,0.11030521243811],[0.0012398376129568,0.037738457322121,-0.021359674632549],[-0.01627247966826,-0.055469874292612,-0.04711826145649]],[[0.025609198957682,0.043626062572002,0.034842699766159],[0.0068209003657103,0.051572155207396,-0.015241941437125],[-0.020546104758978,-0.0096368584781885,-0.099620394408703]],[[-0.080492831766605,0.018669506534934,-0.12699282169342],[-0.1164670959115,0.074325494468212,-0.015395277179778],[0.034667301923037,-0.07393416762352,-0.049559909850359]],[[-0.0198331810534,-0.041759327054024,-0.052614372223616],[-0.023236470296979,-0.094587676227093,-0.047138947993517],[0.049688909202814,0.10036364942789,0.036593642085791]],[[-0.0082215759903193,0.074155285954475,-0.025401363149285],[-0.0056379092857242,-0.23961591720581,-0.061116356402636],[-0.026359066367149,-0.032482046633959,-0.066175818443298]],[[0.014194913208485,0.013954638503492,0.056102659553289],[0.032524649053812,0.033707804977894,-0.019820142537355],[0.028590908274055,-0.017331846058369,-0.041977159678936]],[[0.00047515970072709,-0.027440203353763,0.10184808820486],[0.060950990766287,-0.064848534762859,0.10057028383017],[0.093488790094852,0.10118295997381,-0.035728134214878]],[[0.040768798440695,0.053210653364658,0.072173982858658],[-0.010508782230318,-0.038625001907349,0.0075970198959112],[-0.050244901329279,-0.089466027915478,-0.036043725907803]],[[0.050685297697783,-0.035519108176231,0.065532229840755],[0.053434323519468,0.04719527438283,-0.012516874819994],[-0.018445653840899,-0.023063043132424,-0.074998430907726]],[[0.042188536375761,-0.13366052508354,-0.014546687714756],[0.013663210906088,0.12235159426928,0.17840483784676],[-0.063207909464836,-0.043649550527334,0.074430234730244]],[[-0.024211717769504,0.11174549907446,-0.044336277991533],[-0.0076389792375267,-0.08641991019249,0.023691944777966],[-0.0024911861401051,0.010900104418397,-0.079997457563877]],[[0.056904714554548,0.057312920689583,-0.049740083515644],[-0.023191886022687,-0.076247580349445,0.041645403951406],[0.063218094408512,-0.030264649540186,0.028023302555084]],[[0.024311663582921,-0.079460851848125,0.042134813964367],[0.020231228321791,-0.064908035099506,0.039220310747623],[-0.038278039544821,0.025324268266559,0.10274139046669]],[[-0.068707823753357,-0.032999694347382,0.053269479423761],[0.01426712796092,-0.069434031844139,0.10190937668085],[0.0020544789731503,0.092477433383465,0.035449631512165]],[[-0.02172021381557,-0.01790327206254,0.027975445613265],[-0.015703659504652,-0.12384790927172,-0.029096389189363],[-0.035286631435156,0.04893884062767,-0.0048417090438306]],[[0.02832062728703,-0.0034599571954459,-0.047509368509054],[-0.010660969652236,-0.043462540954351,0.030560376122594],[-0.090273395180702,-0.00091455283109099,-0.14079888164997]],[[0.020327402278781,-0.010165452025831,-0.087635681033134],[-0.094773046672344,0.043746281415224,0.0092710256576538],[-0.016174245625734,0.064828909933567,-0.028162162750959]],[[0.059690922498703,0.044341132044792,-0.017652293667197],[0.042521186172962,-0.029975671321154,-0.04329077899456],[0.097032584249973,0.047150421887636,-0.065543666481972]],[[0.15669134259224,-0.091340787708759,-0.029194509610534],[0.088014096021652,0.064838722348213,0.074286714196205],[-0.020456772297621,-0.021986832842231,-0.013726783916354]],[[-0.015939515084028,-0.01155430264771,-0.058041650801897],[0.040334761142731,0.017803642898798,0.072365157306194],[0.082951106131077,0.010560271330178,-0.074136026203632]],[[0.0022848676890135,0.041140735149384,0.040718737989664],[0.015554777346551,-0.037158455699682,-0.017485462129116],[-0.033215567469597,0.00071601773379371,0.043493051081896]],[[0.021915312856436,-0.0166891887784,-0.079902671277523],[-0.051156725734472,0.070869475603104,-0.082482576370239],[-0.036761946976185,-0.068905413150787,0.036466721445322]],[[0.070171073079109,-0.011492659337819,0.079584851861],[0.036257460713387,0.078136757016182,-0.19539640843868],[0.071974873542786,0.015453323721886,-0.060706090182066]],[[-0.082696378231049,0.0027431645430624,0.039374601095915],[-0.033626627177,-0.027021367102861,-0.072730995714664],[0.10741316527128,-0.04881040379405,0.017327396199107]],[[-0.062912687659264,0.0044769286178052,-0.013469565659761],[-0.0016362983733416,-0.018866125494242,-0.13126541674137],[0.020190393552184,-0.14153550565243,-0.08680085092783]],[[0.091209307312965,0.046624541282654,0.0054503558203578],[-0.028343329206109,0.030557183548808,-0.051844578236341],[0.018374979496002,-0.056123122572899,0.069246523082256]],[[0.046751245856285,0.0034935199655592,-0.18618467450142],[-0.00065299100242555,-0.040032438933849,-0.11219888925552],[-0.096226878464222,-0.0024712856393307,-0.024280678480864]],[[0.052146855741739,0.013085045851767,0.028906418010592],[-0.020593378692865,0.049068059772253,0.025043008849025],[-0.040938071906567,-0.13535535335541,-0.15027578175068]],[[-0.0055571543052793,0.013241999782622,0.024908557534218],[0.013672748580575,-0.052465289831161,0.040780246257782],[-0.0072232177481055,0.033397141844034,-0.038672428578138]],[[-0.10010265558958,0.16497039794922,-0.19728402793407],[-0.047572508454323,0.025707840919495,0.0045518353581429],[-0.073398917913437,-0.050011292099953,-0.10544650256634]],[[-0.0035424754023552,-0.019364383071661,0.04303190857172],[-0.11380909383297,0.061178982257843,-0.023300705477595],[-0.083426438271999,0.065813481807709,-0.11737106740475]],[[0.10520827770233,0.068337604403496,-0.12685063481331],[-0.041705124080181,-0.037278909236193,-0.12307470291853],[-0.0062256497330964,0.014988781884313,0.001309844548814]],[[-0.13913793861866,0.060203779488802,-0.10754141956568],[-0.063956968486309,-0.20766070485115,0.0099979378283024],[-0.018701678141952,-0.014759418554604,0.040604881942272]],[[0.011939315125346,-0.10827205330133,0.045608166605234],[-0.065702602267265,0.09637700766325,0.11528686434031],[-0.13616019487381,-0.06957158446312,0.0034632331226021]],[[-0.056909449398518,0.0033499309793115,-0.043129414319992],[0.069260388612747,-0.034348338842392,0.015365985222161],[0.064078517258167,-0.030743893235922,0.044074039906263]],[[-0.0015036485856399,-0.021947544068098,0.0080407727509737],[-0.058322191238403,-0.089154496788979,-0.0081653697416186],[0.065211668610573,-0.055578373372555,-0.038073647767305]],[[-0.081699259579182,-0.0023780115880072,0.019607743248343],[-0.052770558744669,-0.121028393507,0.042580913752317],[-0.033828318119049,-0.019006382673979,-0.12552836537361]],[[-0.039907526224852,-0.095051653683186,0.13267327845097],[0.012026353739202,-0.0057619768194854,-0.037112984806299],[0.062028370797634,-0.017804516479373,0.12770387530327]],[[0.045232396572828,0.0087907211855054,-0.097615256905556],[0.069154910743237,-0.040105950087309,-0.071127228438854],[0.031748697161674,-0.071935087442398,-0.0015377568779513]],[[0.040122773498297,0.02121933363378,0.0030078205745667],[0.007883901707828,-0.039698537439108,0.038805618882179],[-0.041403859853745,-0.10292194783688,-0.057237401604652]],[[-0.098624482750893,-0.086220651865005,-0.037578247487545],[0.042706411331892,-0.042188443243504,0.064328752458096],[0.075805246829987,0.082578428089619,0.047885157167912]],[[0.05922781303525,-0.068271324038506,0.1221721470356],[-0.15557871758938,-0.11631996929646,-0.04162460565567],[-0.037630494683981,-0.025566931813955,-0.026233335956931]],[[-0.014341286383569,0.026873933151364,-0.018153041601181],[-0.035243928432465,-0.035188719630241,-0.0055757979862392],[-0.0047644712030888,-0.10500530153513,0.010152553208172]],[[-0.051404170691967,-0.0098924180492759,0.092118784785271],[-0.068241506814957,-0.056819748133421,0.021567432209849],[-0.038170412182808,-0.033738579601049,-0.056622873991728]],[[0.028932111337781,-0.085664324462414,-0.10860581696033],[0.05614872276783,-0.022153014317155,0.046062860637903],[0.025301212444901,0.060159180313349,0.0072232089005411]],[[-0.028616547584534,0.0071754497475922,0.0010671280324459],[-0.021400833502412,-0.0061405953019857,0.073129594326019],[0.015174627304077,0.075561054050922,0.011428351514041]]],[[[-0.051371794193983,-0.067771479487419,0.10414955019951],[-0.060697712004185,-0.0074189072474837,0.037712089717388],[0.070618495345116,-0.0042724735103548,-0.01128816884011]],[[-0.013121259398758,0.010163448750973,-0.014820926822722],[-0.079704232513905,0.048817873001099,-0.25564852356911],[-0.093985162675381,0.088464207947254,-0.087705671787262]],[[-0.025055116042495,0.010346953757107,-0.08424985408783],[-0.1645779311657,-0.079358629882336,-0.11028759926558],[-0.077034041285515,-0.012268382124603,0.019653305411339]],[[0.059705082327127,-0.045725088566542,0.057914827018976],[-0.024665566161275,-0.014793378300965,0.046421762555838],[0.08739360421896,-0.12493673712015,-0.026910373941064]],[[-0.073869444429874,0.0148172872141,0.15702280402184],[-0.046518240123987,0.044396318495274,0.087191395461559],[0.076327942311764,-0.099731653928757,-0.0048983842134476]],[[0.012744508683681,-0.10211659222841,-0.32751187682152],[-0.047448914498091,-0.098736852407455,-0.25077623128891],[0.019051443785429,-0.04196610301733,-0.099412485957146]],[[-0.072841793298721,0.018730275332928,-0.0039388700388372],[-0.0034137496259063,-0.032576970756054,-0.017981264740229],[0.10309059917927,-0.12419338524342,-0.026966966688633]],[[-0.010800226591527,-0.01659738458693,0.065493404865265],[0.046509958803654,0.0093283392488956,-0.0096212085336447],[0.080543801188469,-0.072828464210033,0.039036694914103]],[[-0.07357207685709,0.006007909309119,-0.11739192157984],[0.035201746970415,0.090499587357044,-0.088708974421024],[0.020245552062988,0.090208776295185,-0.093710593879223]],[[-0.019179468974471,-0.0044552427716553,-0.027569966390729],[0.0064225420355797,-0.031383100897074,-0.059008937329054],[0.0023513466585428,0.11736082285643,-0.08867222815752]],[[0.069463461637497,-0.17326003313065,-0.067176066339016],[0.032588254660368,0.048154957592487,-0.03740506619215],[-0.023635128512979,0.016262132674456,-0.12241976708174]],[[0.03165714815259,-0.019115885719657,-0.033062074333429],[0.045925457030535,-0.16636933386326,-0.17869147658348],[-0.030125580728054,-0.1661893427372,-0.30637934803963]],[[-0.11768567562103,0.0052772220224142,-0.039811354130507],[-0.033871423453093,0.0033953590318561,-0.046757381409407],[0.050376359373331,-0.051973853260279,0.0042754597961903]],[[-0.031856629997492,-0.04271674156189,-0.13227745890617],[-0.034542299807072,-0.088933847844601,-0.049519907683134],[-0.026761403307319,0.1167548969388,-0.098926916718483]],[[0.051589049398899,-0.07251887768507,-0.027809439226985],[-0.057571794837713,-0.056393895298243,-0.0604233071208],[-0.034968435764313,-0.071563571691513,-0.032113205641508]],[[0.0058243554085493,-0.0013930794084445,0.098799057304859],[-0.13104106485844,-0.014002812094986,0.12238529324532],[-0.067462667822838,0.009421244263649,0.24411936104298]],[[-0.017837820574641,-0.12452907860279,-0.10442810505629],[0.059293400496244,-0.047230314463377,-0.21394081413746],[0.043492913246155,0.0040759118273854,-0.25841891765594]],[[-0.20028239488602,0.13606789708138,-0.2352597117424],[-0.0757991746068,0.026236955076456,-0.079316325485706],[-0.0011214655824006,-0.083025366067886,0.087347775697708]],[[-0.012333011254668,-0.023232689127326,-0.011790248565376],[0.0045629371888936,0.021129200235009,-0.13231265544891],[0.0015737861394882,-0.036090202629566,-0.045361712574959]],[[-0.054344695061445,0.0025558276101947,-0.099983260035515],[0.013492575846612,-0.057873286306858,-0.050889946520329],[0.077812820672989,-0.062968499958515,0.018948238343]],[[-0.062544740736485,-0.036963976919651,-0.06582023948431],[0.030953537672758,-0.071401588618755,-0.083272598683834],[0.010314459912479,-0.056944284588099,-0.026411224156618]],[[0.0082340324297547,-0.014310881495476,-0.029792649671435],[-0.051779486238956,-0.04571420326829,-0.11748004704714],[0.063464313745499,0.028697064146399,-0.03875307738781]],[[0.061886724084616,-0.10674855858088,0.10322044789791],[-0.037306852638721,-0.096442885696888,0.11597842723131],[-0.068431191146374,-0.0047939983196557,-0.039678450673819]],[[-0.006833391264081,0.035543076694012,0.16486112773418],[-0.033693090081215,-0.023651638999581,0.14564308524132],[0.069629460573196,-0.028229542076588,0.1084356456995]],[[-0.0053189271129668,-0.041441638022661,-0.041699189692736],[-0.071909561753273,0.024923797696829,-0.00057981366990134],[-0.057469539344311,0.021100083366036,0.0099143553525209]],[[-0.089828237891197,0.042617581784725,0.036247842013836],[-0.086985044181347,0.023089678958058,0.032688107341528],[-0.11277987062931,-0.0068952688015997,0.032592549920082]],[[0.10691630095243,-0.028005314990878,-0.0053769955411553],[0.092252604663372,-0.094735741615295,0.01333565544337],[0.13695479929447,-0.085941530764103,-0.048833891749382]],[[-0.079613134264946,0.1675401031971,-0.17324329912663],[-0.076405346393585,0.055095199495554,-0.23870445787907],[-0.041134588420391,0.036886688321829,-0.1045786216855]],[[-0.011823269538581,-0.013516033068299,0.076377831399441],[-0.11745780706406,-0.002547453623265,0.0052159507758915],[-0.12320266664028,0.022048220038414,-0.052140962332487]],[[-0.093243561685085,0.012606236152351,-0.091563493013382],[-0.0039418493397534,-0.090985402464867,0.035394243896008],[-0.060574244707823,-0.10283445566893,0.017487045377493]],[[0.10738950967789,-0.013839057646692,0.052895050495863],[0.11319044977427,-0.064367726445198,0.078378483653069],[0.1524849832058,-0.085084892809391,0.09741985052824]],[[-0.061335969716311,0.0072488756850362,-0.03664081171155],[-0.027303652837873,0.062323071062565,0.0052885278128088],[0.059823226183653,0.23605105280876,-0.071213960647583]],[[-0.044710110872984,-0.02121183462441,0.14064784348011],[-0.03885755687952,0.058177381753922,0.13038244843483],[-0.049747746437788,0.078091785311699,0.044538415968418]],[[0.0087626501917839,-0.099797748029232,-0.29545071721077],[0.024554958567023,-0.020158672705293,-0.068613924086094],[0.020066745579243,0.058347143232822,-0.18568903207779]],[[-0.13432195782661,-0.13652431964874,-0.047242116183043],[-0.0015379019314423,-0.080697074532509,0.0059948521666229],[-0.068643122911453,0.10185804218054,-0.11851441860199]],[[-0.11956553161144,0.013961722142994,0.096830070018768],[0.023302581161261,-0.053116600960493,0.0049098571762443],[0.052873026579618,0.080177053809166,-0.011100489646196]],[[-0.0087187979370356,0.18920025229454,0.1245723888278],[0.053904060274363,0.14460799098015,-0.076171845197678],[0.083521574735641,-0.16314215958118,0.022955792024732]],[[-0.10588093101978,0.011314018629491,-0.090165913105011],[-0.0025004125200212,-0.15173608064651,-0.033759724348783],[-0.092172332108021,-0.10094460844994,0.12221978604794]],[[-0.020927432924509,0.09700483828783,-0.021332070231438],[-0.084188506007195,-0.08294890075922,-0.18092267215252],[-0.054264523088932,0.050144240260124,-0.024184422567487]],[[-0.15176591277122,-0.043349493294954,0.0043373447842896],[0.041680783033371,-0.0025454820133746,0.0020262491889298],[0.052529916167259,0.19205623865128,-0.086729325354099]],[[-0.10987287014723,0.013459580019116,0.20246317982674],[-0.00081644713645801,-0.11613153666258,0.011182436719537],[-0.043460234999657,-0.067758955061436,0.046048581600189]],[[-0.1267628967762,-0.19601449370384,0.13987258076668],[-0.052506398409605,-0.12906953692436,-0.036223921924829],[0.025797771289945,-0.25461408495903,0.0071732858195901]],[[0.11841457337141,0.051737748086452,-0.088123396039009],[-0.20246377587318,-7.5350457336754e-05,-0.075641013681889],[-0.092965081334114,-0.088470101356506,-0.11461088061333]],[[-0.1251552850008,0.10640431940556,-0.22585543990135],[0.012226271443069,0.13133902847767,-0.2514563202858],[-0.031344063580036,0.01863101683557,-0.17643950879574]],[[-0.19212181866169,0.17506270110607,0.021049225702882],[-0.20696520805359,-0.1302969455719,0.07665578275919],[-0.061106611043215,0.010897766798735,0.13354501128197]],[[-0.037499219179153,-0.13362324237823,-0.13246163725853],[0.011629390530288,0.04403317719698,-0.089050687849522],[0.0043181688524783,0.05535426735878,-0.18643690645695]],[[-0.19676572084427,0.048237752169371,0.061724223196507],[-0.080675013363361,-0.15199920535088,-0.025108141824603],[-0.024435266852379,-0.014839225448668,-0.023289617151022]],[[0.043785229325294,-0.13768039643764,0.25054213404655],[-0.1156814545393,-0.0049480083398521,0.026852466166019],[-0.10374844074249,-0.22217860817909,0.1052251458168]],[[0.11765733361244,-0.057268396019936,0.28795969486237],[0.014098569750786,-0.24280497431755,0.095859013497829],[-0.02171784453094,-0.11949201673269,-0.10385114699602]],[[0.14510092139244,0.042816154658794,0.17365938425064],[0.030896682292223,-0.1088412553072,0.1272469907999],[-0.0075655966065824,-0.030867274850607,0.0325892791152]],[[-0.040826369076967,-0.14623531699181,0.081940993666649],[0.0021326460409909,0.072511523962021,0.036372054368258],[0.19300372898579,0.08491238951683,-0.014585379511118]],[[-0.12430368363857,0.030162902548909,-0.18470193445683],[0.088827185332775,0.03540687635541,0.0041947797872126],[0.085441753268242,-0.0087793869897723,-0.023172019049525]],[[0.1216189339757,-0.009515605866909,0.038725189864635],[0.092376060783863,-0.066979564726353,0.045905061066151],[-0.096782930195332,0.030474720522761,0.058014381676912]],[[0.058901958167553,-0.067284800112247,-0.15095694363117],[-0.11986417323351,0.003368086181581,-0.00029861490475014],[-0.33930560946465,0.1204179674387,-0.0072761098854244]],[[-0.054735198616982,-0.03059209138155,-0.0150738786906],[-0.17231178283691,-0.070484168827534,-0.13296356797218],[-0.21607924997807,-0.035240441560745,-0.0075862593948841]],[[-0.046548265963793,0.095501586794853,0.028873801231384],[0.0078183710575104,0.11687010526657,-0.048690915107727],[0.07050696015358,0.19017870724201,-0.11132071912289]],[[0.15455214679241,-0.064217686653137,-0.10481367260218],[-0.011908945627511,-0.0067104091867805,-0.19509279727936],[0.025802329182625,0.057159144431353,0.084048435091972]],[[0.044962339103222,-0.069798834621906,-0.043890666216612],[0.03332681581378,-0.21141193807125,0.036039642989635],[-0.050102446228266,-0.053142011165619,0.011679966934025]],[[0.11919076740742,0.056283868849277,-0.0098395813256502],[0.094784162938595,-0.010206983424723,-0.06103377789259],[0.14760053157806,0.041781909763813,-0.018032135441899]],[[-0.031364630907774,-0.099995292723179,-0.047293182462454],[-0.13400912284851,-0.010000074282289,0.096924722194672],[-0.11348375678062,0.036988742649555,-0.076024554669857]],[[0.053875084966421,-0.06277173012495,0.047524739056826],[-0.058679889887571,0.075791120529175,0.0092618977651],[-0.094394631683826,0.12189642339945,0.051828373223543]],[[-0.074138723313808,0.06467679142952,0.035113841295242],[-0.035023141652346,-0.073617614805698,-0.10293673723936],[-0.024349933490157,-0.2135915607214,0.050191756337881]],[[-0.0095470007508993,-0.1715000718832,0.0010102618252859],[6.2449813412968e-05,-0.10065496712923,0.061925042420626],[-0.0042062299326062,0.027532421052456,0.077950172126293]],[[0.12453907728195,-0.01163377892226,0.015299369581044],[-0.02463217638433,-0.15901112556458,-0.044815380126238],[0.010653966106474,-0.1829360127449,-0.071613445878029]]],[[[-0.023157214745879,0.035972278565168,0.022556563839316],[-0.021601708605886,-0.047343470156193,-0.12831428647041],[-0.062792867422104,-0.037325635552406,0.023052228614688]],[[-0.1117247864604,0.11121486127377,-0.091650128364563],[0.10020835697651,-0.033422574400902,-0.016826765611768],[0.010909062810242,0.036508914083242,0.10343055427074]],[[-0.051014669239521,-0.0043874140828848,0.040364559739828],[0.031586930155754,-0.037657968699932,0.027417035773396],[-0.012789049185812,-0.096681006252766,-0.087861269712448]],[[-0.0074746296741068,-0.080047026276588,-0.31517747044563],[0.015717267990112,0.11192279309034,-0.038309268653393],[-0.064127080142498,0.022153425961733,0.15039795637131]],[[0.021000422537327,0.041665382683277,-0.18719306588173],[0.0030814295168966,-0.005435872823,-0.071125604212284],[-0.036658864468336,-0.0028525153174996,-0.027188135311007]],[[0.020750617608428,-0.011658917181194,-0.17184107005596],[-0.19320958852768,0.037852860987186,0.09727106243372],[-0.048702962696552,-0.18668949604034,-0.032464738935232]],[[0.12798810005188,0.039574589580297,0.015529261901975],[-0.021268086507916,0.010551875457168,0.082739256322384],[-0.016516901552677,0.0081183984875679,0.056979440152645]],[[0.0082641914486885,0.033984676003456,0.056394722312689],[-0.086327277123928,-0.14253598451614,-0.12235577404499],[0.049051910638809,0.078913770616055,0.018222847953439]],[[0.01728318631649,-0.13526025414467,-0.0059886192902923],[-0.04946281388402,0.060747183859348,-0.087340973317623],[0.044436637312174,-0.028884829953313,-0.017071709036827]],[[0.067511782050133,-0.070521019399166,0.023036707192659],[0.051690112799406,-0.082035556435585,-0.012557088397443],[-0.050521917641163,0.12734392285347,-0.024328850209713]],[[-0.013018582947552,0.11936712265015,0.025318963453174],[0.017188815400004,-0.051705375313759,0.114756308496],[-0.083434842526913,0.051711231470108,-0.12951211631298]],[[-0.0025747900363058,-0.12565106153488,-0.33448505401611],[0.083336688578129,-0.013218610547483,-0.040901459753513],[-0.10956206917763,0.047634303569794,-0.00520797399804]],[[0.050925184041262,0.0084598064422607,0.0018153673736379],[0.14510308206081,-0.030543213710189,-0.043309535831213],[0.068508192896843,-0.0065453741699457,0.006969322450459]],[[0.010844739153981,-0.15295903384686,-0.047815576195717],[0.037744957953691,-0.029015267267823,-0.050186190754175],[-0.20539627969265,0.06181775033474,0.095137909054756]],[[0.028308374807239,-0.081995405256748,-0.038046576082706],[-0.020312048494816,0.13992162048817,-0.17708498239517],[-0.0086841350421309,-0.060858368873596,-0.029066931456327]],[[-0.1038334518671,0.011194332502782,-0.0088571505621076],[-0.082260444760323,-0.032098039984703,0.081926211714745],[-0.10705146193504,0.0064542051404715,0.0064021977595985]],[[-0.02903819642961,-0.021530531346798,-0.0611970461905],[0.014267769642174,0.11786562204361,0.0011601365404204],[0.028194729238749,0.033331383019686,0.049355458468199]],[[-0.0072894631884992,0.12588113546371,0.061975106596947],[0.048585679382086,-0.21147960424423,0.11174539476633],[-0.034454103559256,0.033753175288439,-0.00076693925075233]],[[0.012311870232224,0.01491631846875,-0.083392828702927],[-0.17115926742554,-0.028185043483973,-0.069200530648232],[-0.022600572556257,0.022212037816644,-0.054062683135271]],[[0.0028520955238491,0.035981219261885,0.076145812869072],[0.012994986958802,0.023468311876059,0.021092059090734],[0.072354301810265,-0.011561457999051,0.019599311053753]],[[0.085216715931892,-0.031810477375984,0.038195066154003],[0.086036764085293,0.020349778234959,0.026856383308768],[0.08125863224268,0.094248212873936,-0.009796530008316]],[[-0.04323847964406,0.054387930780649,0.052819676697254],[-0.0054197730496526,-0.087599992752075,0.047673538327217],[-0.023103334009647,-0.049022767692804,-0.0072412611916661]],[[-0.018146511167288,0.066723011434078,-0.030929453670979],[-0.040320780128241,-0.01183770596981,0.0406703799963],[-0.0041188639588654,-0.01509394031018,0.071468628942966]],[[-0.019303072243929,-0.01045441813767,0.17705090343952],[0.143091827631,0.077745631337166,-0.10405926406384],[0.003324736142531,0.1222883015871,0.13033020496368]],[[-0.11788789182901,0.00036341961822473,0.0207051448524],[-0.068476334214211,0.0038084797561169,0.031203899532557],[0.18672075867653,0.10310559719801,0.040199130773544]],[[0.034403469413519,-0.039712652564049,-0.024038081988692],[-0.059217840433121,0.097038127481937,-0.02241169475019],[-0.065099887549877,0.067805707454681,-0.016066612675786]],[[-0.094043150544167,0.058172609657049,0.031698986887932],[-0.0088588306680322,-0.029426204040647,-0.027050621807575],[0.075825713574886,-0.12410056591034,-0.10547872632742]],[[0.018690805882215,-0.0055134710855782,0.15777964890003],[0.019013244658709,-0.074603088200092,-0.0083203092217445],[-0.11528496444225,0.053082752972841,0.020474137738347]],[[-0.14858561754227,-0.14740471541882,0.07508123666048],[-0.12510359287262,-0.070845291018486,-0.20507064461708],[0.021477073431015,-0.0014653826365247,0.0017551665659994]],[[0.0080298455432057,-0.03501408919692,-0.017046710476279],[-0.036265507340431,0.037094812840223,-0.0080409971997142],[0.0087891956791282,0.024877464398742,0.018674274906516]],[[-0.0035286468919367,0.038903206586838,-0.037879604846239],[-0.024833098053932,0.067708544433117,-0.026097243651748],[0.0075692418031394,0.040065120905638,-0.0054609174840152]],[[0.0085515081882477,-0.098610267043114,-0.097542807459831],[0.0097612403333187,0.015796856954694,-0.010434600524604],[0.14764632284641,0.026041800156236,-0.11746582388878]],[[0.037915132939816,-0.026371797546744,0.049004379659891],[-0.02672684006393,0.11085628718138,-0.16968037188053],[0.069258265197277,0.087582901120186,0.1013605222106]],[[0.065644770860672,0.05478261038661,-0.1233549490571],[-0.086659103631973,0.034589625895023,-0.0095968693494797],[-0.041953276842833,-0.066144317388535,-0.019083166494966]],[[-0.07243873924017,-0.069088883697987,-0.10199838131666],[0.037604011595249,-0.052265126258135,0.081398278474808],[-0.056229539215565,-0.01770874299109,0.11006304621696]],[[0.037962090224028,-0.031340584158897,0.022781442850828],[0.094128228724003,0.0072245146147907,0.072084739804268],[0.0046211280860007,0.022973252460361,0.040060386061668]],[[-0.047597542405128,0.071832425892353,0.050182938575745],[0.082173503935337,-0.013865744695067,0.081652015447617],[-0.11479644477367,0.030331794172525,0.012335484847426]],[[-0.021769125014544,0.041302889585495,-0.036342024803162],[0.056360948830843,-0.020395759493113,-0.017691392451525],[-0.0005396151682362,-0.038921862840652,-0.080611407756805]],[[0.054427985101938,0.014367674477398,0.08879130333662],[0.0083798822015524,-0.047763276845217,0.024927359074354],[0.074709981679916,-0.030020944774151,0.18856440484524]],[[0.049659181386232,-0.012908128090203,0.074464797973633],[0.017830779775977,-0.0019001709297299,-0.045490950345993],[0.049077395349741,-0.017190102487803,-0.032671067863703]],[[-0.037162274122238,-0.073157802224159,-0.098100543022156],[0.10690571367741,0.149253860116,0.12761259078979],[-0.068514212965965,0.1151527389884,0.16658627986908]],[[-0.031140321865678,-0.0099445879459381,0.022510202601552],[-0.046430572867393,0.013326087966561,-0.055871415883303],[-0.01254905294627,0.018321998417377,0.063583195209503]],[[0.03308018669486,-0.063549384474754,-0.18298079073429],[-0.076374940574169,0.037056311964989,-0.025499390438199],[0.022200338542461,-0.037031222134829,-0.13919231295586]],[[0.068583413958549,-0.074778892099857,-0.10732197016478],[-0.1061522513628,-0.055090319365263,-0.037471629679203],[-0.10609169304371,-0.1115208864212,0.029133707284927]],[[-0.045875534415245,-0.092214398086071,0.15544350445271],[0.064140401780605,-0.031103977933526,-0.10317852348089],[-0.066556729376316,0.047796331346035,0.046147592365742]],[[0.028972281143069,-0.054374992847443,0.038124106824398],[-0.05832913517952,-0.064197279512882,-0.10626394301653],[0.031431093811989,0.0047082928940654,-0.099579028785229]],[[-0.04444207623601,-0.076210871338844,0.055778212845325],[-0.036671485751867,0.0067426837049425,-0.041158236563206],[0.013455879874527,0.064467914402485,0.002552135149017]],[[0.046974811702967,0.087132044136524,0.20519338548183],[-0.050401646643877,-0.12617982923985,0.025896715000272],[-0.11998821794987,0.030127596110106,0.15686416625977]],[[-0.053422909229994,-0.06023221462965,-0.037209570407867],[-0.0025799004361033,0.071603439748287,0.1035837456584],[0.034346159547567,-0.028984384611249,-0.066126428544521]],[[-0.030126240104437,-0.072114385664463,0.0056581003591418],[0.15612788498402,0.059850014746189,-0.01822098530829],[0.056679584085941,0.033016089349985,-0.071340776979923]],[[-0.062797844409943,0.067467346787453,0.055029861629009],[-0.041357137262821,-0.077759921550751,-0.08108638972044],[0.021282650530338,-0.02048839814961,0.044854883104563]],[[-0.20067669451237,0.00037873920518905,0.041581705212593],[0.053747244179249,-0.1180571988225,-0.14351184666157],[0.035295609384775,-0.0081653194501996,0.06070264428854]],[[0.12132754921913,-0.0023805284872651,-0.071826703846455],[-0.12277632206678,0.14017772674561,-0.029643092304468],[-0.015639109537005,-0.013933639973402,0.065225683152676]],[[-0.13024321198463,-0.05143178626895,0.076010808348656],[-0.055786088109016,0.19881466031075,-0.11044316738844],[-0.19849009811878,-0.0056428350508213,-0.13302776217461]],[[0.013951668515801,0.065451212227345,-0.096175409853458],[0.11985544115305,0.079327642917633,-0.08823911100626],[-0.074894949793816,-0.043989032506943,0.0048969839699566]],[[0.067353188991547,-0.10021785646677,-0.17883011698723],[-0.091700680553913,-0.0064392969943583,0.016973270103335],[0.009156821295619,0.064095206558704,-0.023114036768675]],[[0.0079662511125207,-0.05045335367322,0.042533185333014],[-0.011872221715748,0.055142216384411,0.039615530520678],[0.090496569871902,0.12951871752739,-0.029875379055738]],[[-0.054583247750998,0.0093420036137104,0.10683162510395],[-0.040531978011131,-0.084665164351463,-0.062698312103748],[0.10673316568136,-0.00075850152643397,0.00086466380162165]],[[0.037074189633131,0.047967243939638,0.050728838890791],[-0.053812269121408,-0.0082167573273182,-0.0067013115622103],[0.072269901633263,-0.012717936187983,0.090048409998417]],[[0.015145947225392,-0.018838109448552,0.0020983705762774],[0.037595804780722,0.063215963542461,0.047334771603346],[0.0086855422705412,-0.054407048970461,0.0075384671799839]],[[0.018592385575175,-0.076340563595295,0.041715934872627],[-0.030227854847908,-0.055755611509085,-0.026727981865406],[-0.03292191401124,-0.038161426782608,0.0055801174603403]],[[-0.055429276078939,-0.021808389574289,0.081799939274788],[0.038955643773079,0.077987194061279,0.050781704485416],[0.022202400490642,0.016470229253173,-0.21152950823307]],[[-0.042371340095997,0.03966223821044,-0.0085950857028365],[0.017525495961308,0.012098128907382,-0.096089459955692],[-0.10622091591358,0.079782851040363,0.0019366441993043]],[[-0.10527031868696,-0.23235966265202,-0.080377817153931],[-0.067704521119595,-0.0074884928762913,-0.11087515205145],[0.044106658548117,-0.022430526092649,0.084005728363991]]],[[[-0.02327442355454,0.038528710603714,0.017436726018786],[0.038406629115343,0.038418382406235,-0.073746800422668],[-0.0024705976247787,0.0064341383986175,-0.051699582487345]],[[0.041218109428883,-0.0070773689076304,-0.055760748684406],[-0.0075258035212755,-0.037777133285999,-0.1704955548048],[0.043274909257889,0.0091608110815287,-0.00084816745948046]],[[-0.14954929053783,-0.079197451472282,0.018873434513807],[0.086640544235706,0.036330711096525,0.022599056363106],[0.037956070154905,-0.11196592450142,-0.10351757705212]],[[0.069017432630062,-0.093661226332188,-0.05022744089365],[0.13917428255081,0.041822705417871,0.040953226387501],[-0.0056522781960666,0.074045434594154,0.035335142165422]],[[0.095582969486713,0.01512714382261,-0.02284506522119],[-0.022802788764238,-0.02614357881248,-0.073589518666267],[0.059620626270771,-0.034548107534647,-0.0077541093342006]],[[0.048209596425295,0.11228390783072,-0.075582727789879],[0.059059053659439,-0.051288537681103,0.027451403439045],[-0.065247125923634,-0.020517414435744,-0.032838590443134]],[[0.040287688374519,0.067513838410378,-0.12683530151844],[0.0020907770376652,-0.024018410593271,-0.20212876796722],[0.060647506266832,-0.062128804624081,-0.10371352732182]],[[0.0653902515769,-0.0070152711123228,-0.02122138813138],[-0.038364809006453,0.054923344403505,-0.052271272987127],[0.004314343445003,0.095807686448097,-0.17400981485844]],[[0.050902225077152,0.043648891150951,0.079998210072517],[-0.061604015529156,0.044180501252413,0.026504846289754],[-0.083108372986317,-0.088861867785454,-0.027159675955772]],[[-0.0024139075540006,0.024375138804317,-0.032540582120419],[-0.10079152882099,-0.032988350838423,-0.082595385611057],[0.0060992147773504,0.025716004893184,-0.063080996274948]],[[0.042104966938496,0.02447334676981,0.048406574875116],[-0.036831095814705,0.078445434570312,0.085046201944351],[0.032915554940701,-0.059239692986012,0.0084275174885988]],[[-0.030749954283237,-0.12883637845516,-0.16783191263676],[0.078273274004459,-0.050368167459965,0.050164371728897],[0.14733943343163,-0.042508911341429,0.21946069598198]],[[0.11484879255295,0.089878529310226,-0.0087913097813725],[-0.03505390137434,-0.0033186010550708,0.054196339100599],[-0.073668941855431,-0.11353351175785,0.13219223916531]],[[0.048183850944042,-0.05113397911191,-0.028867160901427],[0.042887918651104,0.089203372597694,0.09803968667984],[-0.0007490073912777,0.011326860636473,-0.056595236063004]],[[-0.017754428088665,0.016676783561707,0.15773291885853],[0.037040781229734,-0.13376674056053,-0.011743648909032],[0.064493633806705,-0.0028584413230419,0.039559882134199]],[[-0.087511502206326,0.10541671514511,0.029231537133455],[-0.039625771343708,-0.058575034141541,-0.016847729682922],[-0.025732977315784,-0.057327136397362,-0.099556736648083]],[[0.076011255383492,-0.033575311303139,0.086729504168034],[-0.016571925953031,-0.029016517102718,-0.091835759580135],[-0.092086866497993,0.010221337899566,0.088763415813446]],[[0.13005886971951,0.071928977966309,0.06648100912571],[0.0034915448632091,0.016976246610284,0.059293862432241],[-0.11013448983431,0.095132596790791,-0.19867511093616]],[[0.061188284307718,0.098944306373596,0.022948753088713],[0.025411680340767,-0.011376150883734,-0.069300077855587],[-0.021449953317642,-0.0027504195459187,-0.072822153568268]],[[-0.011618230491877,-0.17260463535786,0.0036947075277567],[-0.0062293587252498,0.01900614798069,0.065437383949757],[-0.07734540104866,0.089664362370968,-0.091268084943295]],[[-0.0093468725681305,0.011223421432078,0.089420519769192],[0.0021684335079044,0.036663759499788,0.076726593077183],[0.064617052674294,0.011878122575581,-0.070722177624702]],[[-0.002535559469834,-0.0049365041777492,-0.016081478446722],[0.0095796603709459,-0.001456969184801,-0.059112410992384],[0.025822812691331,-0.0032994837965816,-0.030180731788278]],[[0.004524237010628,-0.12029249221087,0.072030901908875],[0.020571062341332,-0.036281865090132,0.054183334112167],[-0.019809564575553,-0.069439314305782,-0.11724650859833]],[[-0.0064980806782842,-0.0042952420189977,0.052725449204445],[0.012951390817761,0.012971822172403,0.08064454048872],[0.047158144414425,0.0042246761731803,0.091422356665134]],[[-0.058637622743845,-0.093793861567974,0.0070400363765657],[-0.02791465818882,0.0055414466187358,0.039006739854813],[0.11061023920774,0.056801795959473,0.043976970016956]],[[0.011865785345435,-0.067575700581074,0.068249098956585],[-0.08134700357914,0.013424792326987,-0.01931487582624],[-0.058632366359234,0.02569997869432,0.024502148851752]],[[-0.024749476462603,0.0012552361004055,-0.10230821371078],[-0.023986684158444,0.029257353395224,0.084022678434849],[-0.01364878937602,0.10492450743914,-0.0091473842039704]],[[-0.031037107110023,-0.15725564956665,-0.16355784237385],[-0.01644392311573,0.0097175510600209,0.0037061136681587],[-0.096880838274956,-0.057612016797066,0.039830401539803]],[[-0.12223552167416,-0.046278111636639,0.024393603205681],[-0.021718494594097,-0.056861277669668,0.049644634127617],[-0.1723165512085,-0.043339889496565,-0.080080263316631]],[[-0.0086793452501297,-0.0071103228256106,-0.094712667167187],[0.029389422386885,-0.0029931860044599,-0.10096860677004],[-0.036590225994587,-0.051512565463781,0.051317229866982]],[[0.054268382489681,0.022005317732692,-0.049237053841352],[0.031741719692945,0.025902999565005,0.057106606662273],[-0.22154240310192,0.023267108947039,0.16772097349167]],[[0.087893053889275,-0.073697596788406,-0.075520753860474],[0.080501288175583,0.028278848156333,-0.051516447216272],[0.15661510825157,-0.074377976357937,-0.050593953579664]],[[0.12807412445545,-0.017914868891239,0.1375038921833],[-0.0036906995810568,-0.092169500887394,0.013016982935369],[0.063071452081203,0.0235292352736,0.002733938395977]],[[-0.15410856902599,-0.042605265974998,-0.099284455180168],[-0.13104142248631,0.092409260571003,-0.058703623712063],[-0.10766305029392,0.031249886378646,-0.1498741954565]],[[0.076049156486988,-0.02388927526772,-0.0099185481667519],[-0.0034466590732336,0.036427013576031,0.010205171070993],[0.037938892841339,-0.12885925173759,0.089115150272846]],[[0.027645280584693,0.12153290957212,0.024858083575964],[0.033978685736656,-0.026272410526872,0.033746521919966],[-0.051767747849226,-0.024858919903636,0.016169156879187]],[[-0.046077784150839,0.076648965477943,-0.12748037278652],[-0.013748995028436,-0.015957746654749,-0.074068523943424],[0.069713689386845,-0.086220905184746,0.026558503508568]],[[-0.0048717218451202,-0.034740265458822,0.061928108334541],[-0.0088335061445832,0.033312361687422,0.0051495679654181],[0.0077189579606056,-0.076268702745438,-0.0029910227749497]],[[0.085511058568954,-0.20679394900799,0.031848464161158],[0.056539878249168,-0.022257346659899,-0.00894845277071],[0.032686278223991,-0.031380496919155,0.020605465397239]],[[0.031041158363223,0.058136414736509,-0.057712569832802],[-0.035187501460314,0.11121086776257,-0.041723020374775],[-0.11255256086588,-0.059571105986834,-0.16672819852829]],[[-0.074119910597801,-0.047340746968985,-0.044442683458328],[0.085954688489437,0.060529436916113,-0.017977641895413],[0.067922033369541,-0.024583477526903,-0.037411093711853]],[[-0.020777830854058,-0.03349519893527,0.042581629008055],[-0.048208951950073,0.083460666239262,0.036429345607758],[-0.014755196869373,0.011141631752253,-0.10831058770418]],[[0.033074252307415,0.0016143585089594,0.1248729750514],[-0.054655391722918,-0.0369907990098,0.020566049963236],[-0.067660853266716,0.0178990252316,0.0047699715942144]],[[0.0068154335021973,-0.021372044458985,-0.10597006231546],[0.057941526174545,0.1039821729064,-0.027190128341317],[-0.088648185133934,-0.045498974621296,-0.053760781884193]],[[-0.010666933842003,0.039862956851721,-0.14058727025986],[0.019385535269976,0.046028025448322,0.045741584151983],[0.0095581663772464,0.1197037473321,-0.034831676632166]],[[0.084213443100452,-0.022810304537416,-0.10092859715223],[0.050724167376757,0.060807406902313,0.019291276112199],[0.0056310226209462,0.058765191584826,0.078271947801113]],[[-0.29696527123451,-0.0030764683615416,-0.080488279461861],[0.031579755246639,0.02309431694448,0.007678936701268],[-0.070346526801586,-0.02766883186996,0.073692120611668]],[[0.012728424742818,-0.0087119359523058,0.12338388711214],[0.10430917143822,-0.0042283772490919,0.050502989441156],[0.0067931530065835,-0.093484841287136,-0.016079783439636]],[[-0.13074406981468,-0.00024967751232907,-0.035006448626518],[-0.028718864545226,-0.026764107868075,0.033003952354193],[0.018013838678598,-0.097336582839489,0.087940558791161]],[[-0.018816431984305,0.059114579111338,0.15209840238094],[-0.10638601332903,-0.042111273854971,0.076926313340664],[-0.065417721867561,-0.050928167998791,-0.077580504119396]],[[-0.049881633371115,-0.013631982728839,-0.066115945577621],[0.069338299334049,0.09769731014967,-0.038597073405981],[-0.040776744484901,0.0073713161982596,0.072951339185238]],[[-0.0036467290483415,-0.083848960697651,-0.029186744242907],[-0.11024300009012,-0.022092549130321,-0.01769177056849],[-0.073052510619164,-0.10977037250996,0.048245690762997]],[[0.090840935707092,0.042074512690306,0.050190784037113],[0.094759710133076,0.10780159384012,0.11179149150848],[-0.042156331241131,0.020866552367806,-0.01495935767889]],[[-0.21284714341164,-0.063123054802418,0.019048331305385],[-0.11594715714455,-0.018297281116247,0.073678143322468],[0.050945654511452,-0.10870683193207,-0.0067403498105705]],[[-0.023220367729664,-0.00054510094923899,-0.081221789121628],[-0.016590734943748,0.099125482141972,-0.056542724370956],[-0.11486746370792,-0.017292024567723,-0.13484747707844]],[[0.12457118183374,-0.15858468413353,0.03203059732914],[-0.043616108596325,0.013285060413182,-0.074061393737793],[-0.097372308373451,0.19177483022213,-0.10512785613537]],[[0.042996659874916,-0.0051449378952384,-0.11090692132711],[-0.01472092140466,0.019623333588243,0.0076205446384847],[-0.018472669646144,-0.037972029298544,0.016663430258632]],[[0.038106899708509,-0.05064407736063,0.029793763533235],[0.019848171621561,0.029599675908685,-0.026160387322307],[0.063289418816566,-0.0066712340340018,-0.27522811293602]],[[0.016798574477434,0.040983505547047,-0.0085703078657389],[0.032094221562147,-0.038254208862782,-0.024588041007519],[0.0022531857248396,0.069823786616325,0.075912691652775]],[[0.0937789529562,0.052923139184713,0.0013667925959453],[0.085371844470501,-0.030829191207886,-0.032118249684572],[-0.16209219396114,-0.021766802296042,-0.010618886910379]],[[-0.055023457854986,0.056143391877413,0.011768266558647],[-0.032677542418242,0.063414096832275,-0.072451986372471],[0.014509118162096,0.01687541231513,-0.067396782338619]],[[0.033295564353466,-0.026452070102096,0.078625656664371],[0.052571278065443,0.059701263904572,-0.00034440812305547],[0.10670875012875,0.077311798930168,-0.22470536828041]],[[-0.0026937862858176,0.017579197883606,-0.020014448091388],[-0.12560974061489,0.027226416394114,-0.079308293759823],[0.017695812508464,0.014170113019645,0.015565691515803]],[[-0.097626902163029,-0.023795608431101,-0.10270486027002],[-0.076915115118027,-0.044814109802246,-0.044619768857956],[-0.029145199805498,-0.073284290730953,0.050250615924597]]],[[[0.028826162219048,0.11486203223467,0.051533959805965],[-0.046806421130896,-0.1065646931529,-0.10570095479488],[0.0294841658324,0.067387469112873,0.0026312656700611]],[[-0.081144206225872,-0.031810563057661,-0.054289985448122],[-0.03163355961442,0.059702914208174,-0.06533757597208],[-0.015556581318378,0.0083319246768951,-0.011379540897906]],[[-0.057474110275507,-0.04916924610734,0.02386068366468],[-0.025042600929737,-0.12862378358841,-0.07437015324831],[-0.036320503801107,-0.021866532042623,0.044395584613085]],[[-0.018068162724376,-0.13262635469437,-0.10972530394793],[-0.040253214538097,0.044226065278053,0.08104619383812],[-0.002640723483637,-0.068310439586639,-0.060507096350193]],[[-0.0723991766572,0.024016134440899,-0.084810025990009],[0.020757153630257,-0.074251346290112,-0.18198968470097],[-0.16118088364601,-0.057750776410103,-0.022529687732458]],[[-0.1064575240016,-0.12945678830147,-0.086268313229084],[-0.070932425558567,0.059388644993305,0.11255022883415],[-0.092491701245308,-0.036955073475838,-0.11163913458586]],[[0.031683485955,-0.0064221508800983,-0.0078764418140054],[-0.11327569186687,-0.016193704679608,0.0523586794734],[0.011534198187292,-0.022005243226886,0.04357123374939]],[[-0.19394211471081,-0.077010802924633,-0.097030602395535],[-0.054547198116779,0.008971843868494,0.045772302895784],[0.025131536647677,0.1473967730999,0.077248044312]],[[0.06163651496172,-0.084643445909023,-0.031706869602203],[-0.088229320943356,-0.096149541437626,-0.12297179549932],[-0.036166477948427,0.075258955359459,-0.10269215703011]],[[0.162937104702,0.044082522392273,-0.024691523984075],[-0.03276464343071,0.012609321624041,0.14785382151604],[-0.18705169856548,0.065663196146488,-0.02557734400034]],[[-0.10971965640783,0.12559233605862,-0.13188010454178],[0.026940301060677,-0.08069983124733,-0.044697038829327],[-0.086201690137386,-0.030542727559805,-0.06274525821209]],[[-0.020020179450512,-0.0026175635866821,-0.060895394533873],[0.074777469038963,-0.021946748718619,0.010102330707014],[-0.011958344839513,0.082299329340458,0.028367245569825]],[[0.060126524418592,0.022049257531762,-0.024471949785948],[-0.028097115457058,-0.059738676995039,0.03275178745389],[-0.022969888523221,0.084220334887505,0.047652952373028]],[[-0.13260687887669,-0.078611090779305,-0.10429573059082],[0.020626790821552,0.044151403009892,0.07627446949482],[0.014311938546598,-0.035860612988472,0.037859238684177]],[[-0.041777167469263,0.097263872623444,0.11053940653801],[-0.12496904283762,0.013435624539852,-0.063389703631401],[0.01442532800138,-0.10628391802311,0.0021393878851086]],[[-0.073674954473972,-0.084567725658417,0.022412056103349],[-0.087917022407055,-0.074406422674656,-0.015988295897841],[-0.064965017139912,-0.030455838888884,0.10769794136286]],[[-0.012220685370266,0.092937834560871,-0.10535341501236],[0.0083810370415449,0.00204215827398,-0.040045332163572],[0.17794324457645,0.027318716049194,0.10722558200359]],[[0.078336209058762,0.064973317086697,-0.087982878088951],[0.0033679818734527,-0.048371553421021,0.059004407376051],[0.12019304186106,0.033204287290573,-0.031370144337416]],[[-0.049506437033415,0.06292486935854,-0.049587685614824],[-0.14475132524967,0.016997328028083,-0.10580653697252],[-0.072394020855427,0.14877840876579,-0.11018929630518]],[[-0.072918981313705,0.096758626401424,-0.088132753968239],[-0.076853476464748,0.060394644737244,0.068244218826294],[0.03211473301053,0.092737786471844,-0.052784629166126]],[[-0.02999553643167,0.11003773659468,0.12381739169359],[0.047634322196245,0.19934606552124,0.070593975484371],[0.0088615631684661,0.0039849365130067,-0.099222294986248]],[[-0.064129345118999,0.035379223525524,0.072394892573357],[0.051075261086226,0.075743064284325,0.026132797822356],[-0.10021698474884,-0.10197082161903,-0.051896441727877]],[[-0.038154534995556,0.05385223403573,-0.15322303771973],[0.06684336066246,-0.098760291934013,-0.11662807315588],[0.02880103699863,-0.036554612219334,0.10125048458576]],[[-0.0097880596294999,-0.13516399264336,-0.0078045735135674],[0.061109323054552,-0.053680460900068,-0.065313927829266],[-0.080256409943104,0.12285095453262,0.19156478345394]],[[0.14376553893089,-0.11661673337221,0.047610603272915],[-0.034597881138325,0.0046368129551411,0.044486474245787],[0.071105718612671,0.017354592680931,0.027545593678951]],[[-0.080572307109833,-0.05724024027586,-0.021909942850471],[0.10137537121773,0.00080555537715554,0.012307451106608],[0.030965726822615,-0.052168473601341,0.022124907001853]],[[0.06726099550724,0.061659943312407,-0.0059426855295897],[-0.076439224183559,0.0063387090340257,0.10952924191952],[0.10215024650097,-0.0097886063158512,0.11680565029383]],[[-0.074892953038216,-0.054980874061584,0.042411770671606],[0.027767518535256,0.047133892774582,0.1477283090353],[0.010634918697178,-0.039134912192822,-0.076279833912849]],[[0.035711571574211,0.062322240322828,0.05703703686595],[-0.063256792724133,0.0029967164155096,-0.03423285484314],[-0.0087110782042146,0.013744078576565,-0.079895488917828]],[[0.14769361913204,0.060617215931416,-0.027293797582388],[-0.0092933950945735,-0.037007410079241,-0.028243465349078],[-0.03777477517724,-0.033306002616882,-0.062232565134764]],[[0.046572290360928,-0.023113196715713,-0.0062825535424054],[0.030023116618395,-0.035245507955551,-0.049286920577288],[0.083139479160309,0.015992429107428,0.016959210857749]],[[0.1176980510354,0.058302916586399,-0.095309413969517],[0.076868467032909,-0.080722965300083,0.0025442421901971],[0.10599949210882,-0.010494952090085,-0.0034884549677372]],[[0.10440309345722,-0.097283437848091,-0.20371162891388],[0.054193075746298,-0.12976275384426,-0.036296684294939],[0.21002219617367,0.12716928124428,0.079869985580444]],[[0.0059037622995675,0.1218241378665,0.13437066972256],[0.055982276797295,-0.15620848536491,0.082612380385399],[-0.061352968215942,-0.087204873561859,-0.13898673653603]],[[-0.088737241923809,-0.12888993322849,-0.13351747393608],[-0.05423666164279,-0.0030827093869448,0.0050318972207606],[-0.035951197147369,0.02747324667871,0.066599734127522]],[[-0.027012476697564,-0.021219525486231,0.013783995062113],[0.075613088905811,0.025200307369232,0.097918227314949],[0.00060933880740777,0.013294605538249,0.0068110595457256]],[[-0.068638816475868,0.054044391959906,-0.062369890511036],[0.017217326909304,0.014732238836586,-0.035514611750841],[0.0065212729386985,-0.13086433708668,0.15790247917175]],[[-0.10996425151825,-0.090205207467079,-0.1114028096199],[-0.065205343067646,-0.10627815127373,-0.0098732113838196],[-0.015151988714933,0.036764692515135,0.042297262698412]],[[-0.19315151870251,0.011860766448081,-0.082945100963116],[0.024400738999248,-0.090405598282814,-0.0032019976060838],[0.0045211636461318,-0.0066140540875494,0.005735857412219]],[[-0.034533571451902,-0.15902464091778,-0.0081169838085771],[-0.12376050651073,-0.03498075902462,-0.0098871504887938],[0.061361093074083,-0.03375206887722,-0.087617091834545]],[[0.095028460025787,-0.09834011644125,-0.15874998271465],[0.1101356074214,0.070142671465874,-0.19131295382977],[0.048818986862898,-0.0054739685729146,-0.08793443441391]],[[-0.0034772136714309,-0.030313316732645,-0.095045052468777],[-0.10222334414721,-0.010477683506906,-0.14455103874207],[-0.071067146956921,-0.10392621904612,-0.0068262238055468]],[[-0.12083066999912,-0.15079234540462,-0.19283466041088],[-0.01787431910634,0.022484038025141,-0.12027071416378],[-0.077630497515202,0.04799797013402,-0.079660266637802]],[[-0.10375317186117,-0.011052924208343,-0.10050261765718],[0.024185433983803,0.019572617486119,0.034121423959732],[-0.11375062912703,0.16721181571484,-0.013056000694633]],[[-0.080174073576927,0.14117281138897,0.0020699698943645],[-0.082532428205013,0.1475754827261,0.11783337593079],[0.13126489520073,0.043265655636787,-0.024122728034854]],[[0.042030669748783,-0.044528502970934,0.022468587383628],[0.035718619823456,0.10200989991426,0.047776699066162],[-0.047858908772469,0.026098813861609,-0.10300110280514]],[[0.23978425562382,-0.03647430613637,-0.21799069643021],[0.054059892892838,-0.08676690608263,-0.12253671139479],[-0.021018631756306,0.018880786374211,0.1570897847414]],[[0.097875997424126,0.14599750936031,-0.16390965878963],[-0.10635398328304,0.11881303042173,0.016913766041398],[0.026321833953261,0.045710783451796,-0.060873303562403]],[[0.0096572590991855,-0.040060114115477,0.031187165528536],[-0.12479960918427,0.023483166471124,0.0032448857091367],[-0.0299062281847,-0.12668016552925,0.030531898140907]],[[-0.036941543221474,0.028626536950469,0.084825649857521],[0.01290828641504,-0.10268349200487,0.079815901815891],[0.065921157598495,0.007540584076196,-0.010741627775133]],[[0.031874351203442,0.10745553672314,-0.076975896954536],[-0.044448144733906,-0.066037632524967,0.052164047956467],[-0.056032851338387,0.030760873109102,0.031294461339712]],[[0.15291564166546,-0.052309025079012,0.02682332508266],[0.007059411611408,0.10230699926615,-0.039479821920395],[0.10468853265047,0.15190064907074,-0.0023740753531456]],[[-0.096218317747116,0.070805341005325,0.051365830004215],[-0.21339474618435,-0.10877814143896,-0.0024305521510541],[-0.0022623664699495,-0.014182613231242,0.033423539251089]],[[0.1644472181797,-0.049401853233576,0.059130702167749],[0.097716070711613,-0.049222398549318,-0.013350456021726],[-0.055968210101128,-0.047799032181501,-0.10404302179813]],[[0.046738408505917,0.027299512177706,-0.011152987368405],[0.012749064713717,-0.0011447083670646,0.021997472271323],[-0.08312801271677,-0.12989266216755,-0.038887735456228]],[[-0.095535293221474,0.068753316998482,-0.030019614845514],[-0.12119594961405,0.09101065993309,0.082536466419697],[-0.11403278261423,0.14458326995373,0.049899328500032]],[[-0.11626835912466,0.016699101775885,0.026798844337463],[0.0079651791602373,0.084233775734901,0.021235588937998],[-0.047752615064383,0.14253461360931,-0.0057987105101347]],[[0.053493238985538,0.058278251439333,-0.0091450363397598],[-0.023815544322133,-0.05796305835247,-0.15546779334545],[-0.10122482478619,-0.088717736303806,0.028917921707034]],[[0.088681943714619,-0.0190823469311,-0.007729803211987],[0.12134830653667,-0.016373168677092,-0.060583282262087],[0.083880797028542,0.06293848156929,-0.067776054143906]],[[-0.20523478090763,0.10501900315285,0.16444493830204],[-0.095164008438587,-0.042940519750118,0.081219181418419],[-0.037531025707722,0.067107573151588,0.034099496901035]],[[-0.053555279970169,0.094082310795784,0.15251995623112],[-0.0035067135468125,-0.0072002122178674,0.040820986032486],[0.073166355490685,0.035065859556198,-0.025177111849189]],[[-0.081210255622864,0.051819659769535,-0.053200822323561],[0.13579642772675,-0.042989455163479,0.0020250282250345],[0.14159464836121,0.034020002931356,0.037206839770079]],[[0.1704348474741,0.043715480715036,-0.0048278500325978],[-0.090824566781521,-0.027415646240115,0.1964545994997],[-0.13010750710964,0.014851036481559,0.0051749451085925]],[[0.082088775932789,-0.10883690416813,-0.077954009175301],[-0.046690054237843,-0.059634704142809,-0.023084884509444],[-0.035455152392387,-0.067168653011322,-0.18268226087093]]],[[[-0.08395005017519,-0.25315347313881,0.12381004542112],[0.02703732252121,-0.048039279878139,0.090335786342621],[0.1053936034441,-0.21337316930294,0.04835832118988]],[[0.14084261655807,-0.026434607803822,-0.023063663393259],[-0.11776674538851,0.054736703634262,-0.035458520054817],[0.11583518981934,0.030867571011186,-0.026828538626432]],[[-0.076149947941303,-0.025602914392948,-0.056680381298065],[0.028440207242966,0.046788517385721,0.022632721811533],[-0.065089270472527,-0.10169062018394,-0.0055005392059684]],[[0.18052260577679,-0.15044252574444,-0.002120696939528],[0.066338211297989,0.0450134947896,0.046514015644789],[-0.1312982738018,-0.019243333488703,0.015637176111341]],[[0.155832067132,-0.020604299381375,0.05372491106391],[-0.052935183048248,-0.067494571208954,-0.065571062266827],[0.14320856332779,0.077539034187794,0.144576638937]],[[-0.16401843726635,0.02931123226881,-0.0591348297894],[-0.025723351165652,0.042046669870615,0.070237055420876],[-0.11327962577343,-0.070199109613895,-0.18020369112492]],[[0.010742505080998,0.11737057566643,-0.01577228307724],[0.073513641953468,0.080872125923634,-0.07151298224926],[0.052702609449625,-0.13945838809013,-0.14350256323814]],[[0.1676117926836,-0.017616242170334,0.059246331453323],[0.12613618373871,0.069165237247944,-0.12983949482441],[0.028356539085507,0.050497986376286,-0.1768766194582]],[[-0.13080705702305,-0.015750173479319,-0.028932327404618],[0.10036312788725,0.09193080663681,0.093113251030445],[-0.19999648630619,-0.026565451174974,-0.016143893823028]],[[0.006660473998636,0.046115595847368,-0.018316332250834],[0.0020819602068514,-0.004073373042047,-0.041570339351892],[-0.08869831264019,0.0082736583426595,-0.076831676065922]],[[0.10106812417507,-0.12334766983986,-0.058579199016094],[-0.077738620340824,0.068592168390751,-0.0054297908209264],[-0.093336150050163,-0.1265472471714,-0.047841299325228]],[[0.050402618944645,-0.097274370491505,0.08744153380394],[-0.01074814144522,0.040308423340321,-0.087272360920906],[0.074133776128292,0.0019505254458636,0.065092705190182]],[[-0.065361492335796,-0.014464209787548,0.038117177784443],[-0.025642823427916,0.094928540289402,-0.062792018055916],[-0.0025293470826,-0.034961499273777,-0.12585215270519]],[[-0.162353053689,0.14489325881004,0.052571833133698],[-0.038512386381626,0.090842463076115,0.064903549849987],[0.12327522784472,0.081870436668396,-0.067071199417114]],[[-0.059515040367842,0.10058107972145,0.028374841436744],[0.055238287895918,-0.025739716365933,-0.053205214440823],[0.027547681704164,0.021370995789766,0.073881752789021]],[[-0.14315555989742,0.037113036960363,-0.04393370449543],[-0.10258571058512,0.12922430038452,-0.096547432243824],[-0.004372984636575,-0.079972602427006,0.0086099253967404]],[[0.1166632398963,0.026312595233321,0.098416388034821],[-0.036229390650988,-0.046704400330782,0.066768251359463],[0.004009963478893,-0.11155194789171,-0.0052433935925364]],[[-0.20370434224606,0.11173529922962,-0.30056601762772],[0.10530573129654,0.17107653617859,0.017655551433563],[-0.044978220015764,-0.13885658979416,0.0052004507742822]],[[0.030529832467437,-0.011280461214483,-0.044906690716743],[-0.037344329059124,0.051957413554192,-0.17390756309032],[-0.10444345325232,-0.011373591609299,-0.15119245648384]],[[-0.014101961627603,-0.070490889251232,-0.17298899590969],[0.0086541883647442,0.0084514785557985,-0.012459179386497],[-0.049487840384245,0.044459231197834,-0.045739304274321]],[[0.074700258672237,0.044072665274143,0.0084883896633983],[0.25565314292908,-0.0070258365012705,0.044548593461514],[0.064714752137661,-0.23812834918499,0.091699168086052]],[[-0.085784167051315,-0.039055112749338,-0.032097779214382],[0.046475794166327,0.009196100756526,-0.0053695873357356],[0.041103161871433,0.016451790928841,-0.073735661804676]],[[-0.02894757129252,-0.057666335254908,0.041480574756861],[-0.0080700600519776,-0.013084731996059,0.018323920667171],[0.0089473864063621,0.059484496712685,-0.036139503121376]],[[-0.00015201227506623,-0.11793587356806,0.092193208634853],[0.019201297312975,-0.069111905992031,0.10566020011902],[-0.022907741367817,0.035939238965511,0.081760101020336]],[[-0.11314501613379,0.15106637775898,0.10574357956648],[-0.12469775229692,-0.045617762953043,-0.037430875003338],[-0.094965703785419,-0.067044615745544,0.063892863690853]],[[0.066649056971073,-0.013527981005609,0.0030070936772972],[-0.070029065012932,-0.064328573644161,0.065006628632545],[-0.04798986017704,-0.014223114587367,0.060806598514318]],[[-0.06848006695509,-0.086411193013191,-0.047905419021845],[-0.033548712730408,0.022485641762614,-0.058397334069014],[0.084202252328396,0.032931383699179,0.012264898046851]],[[-0.1261164098978,0.16121761500835,-0.051939375698566],[0.016452729701996,0.015972506254911,0.18487027287483],[-0.11042137444019,0.049385040998459,-0.22302584350109]],[[-0.26313245296478,0.052675824612379,0.12766674160957],[-0.013165497221053,-0.028338061645627,-0.040871474891901],[-0.17094765603542,0.014067582786083,-0.094707749783993]],[[-0.26923906803131,0.00094733585137874,-0.24476526677608],[0.088009014725685,0.10725746303797,0.0017481395043433],[-0.25563868880272,-0.065359778702259,-0.18166302144527]],[[-0.082214049994946,0.13424672186375,-0.057971604168415],[0.085484340786934,0.18851786851883,-0.052437875419855],[-0.22081126272678,0.042076352983713,-0.16179375350475]],[[0.020650090649724,0.048564843833447,0.14618621766567],[0.096814803779125,-0.014585408382118,0.021894752979279],[0.032162185758352,-0.0063906884752214,-0.10297958552837]],[[0.062625773251057,0.025654787197709,0.084084115922451],[0.075984559953213,0.021779982373118,0.10512585192919],[0.084097847342491,0.12260172516108,0.085310406982899]],[[-0.039954524487257,-0.015423291362822,-0.068502835929394],[-0.025027288123965,-0.031832218170166,-0.081393294036388],[-0.049518674612045,0.021056408062577,-0.33746162056923]],[[0.064486891031265,-0.1330198943615,0.051894564181566],[-0.051655329763889,-0.098802454769611,0.080732934176922],[0.083994895219803,0.045174852013588,-0.020180758088827]],[[0.027188543230295,0.080595582723618,-0.072669059038162],[-0.0028210112359375,0.031326152384281,0.032240740954876],[-0.15685391426086,0.0068241055123508,0.10907071083784]],[[0.13565990328789,0.062719106674194,-0.020604142919183],[0.055520884692669,0.030839271843433,-0.048092324286699],[0.059820506721735,-0.013082537800074,0.15308308601379]],[[0.02695245295763,0.059410959482193,-0.054001752287149],[0.11235339939594,-0.086576551198959,0.015679324045777],[0.14244367182255,-0.018325101584196,-0.00090974196791649]],[[0.094130285084248,-0.019725551828742,0.030612722039223],[0.10730908811092,0.023030152544379,0.034192256629467],[0.006311581004411,-0.10983776301146,-0.075186505913734]],[[-0.068549886345863,0.031127110123634,0.039306569844484],[0.10900743305683,0.050772938877344,0.10646045207977],[-0.091238878667355,0.039287231862545,-0.10392418503761]],[[-0.15857775509357,-0.12605421245098,-0.20787408947945],[-0.03349831327796,-0.020820535719395,-0.099368788301945],[-0.03914912045002,-0.067150816321373,0.013733888976276]],[[0.0035649593919516,-0.071763783693314,0.012451695278287],[-0.042374331504107,0.045208781957626,0.090766623616219],[-0.0250209774822,-0.030483037233353,-0.099496506154537]],[[-0.041161008179188,-0.020543616265059,0.042327638715506],[0.013732612133026,7.0924761530478e-07,0.049842700362206],[0.044990565627813,0.076156109571457,0.095871187746525]],[[-0.024362651631236,-0.024741737172008,-0.09003359824419],[-0.13200230896473,0.1170781776309,0.068937987089157],[0.044586550444365,-0.012454545125365,-0.017457963898778]],[[-0.17083078622818,-0.17667298018932,-0.16380482912064],[-0.15360049903393,-0.080940619111061,0.012739722616971],[-0.056286610662937,-0.072609059512615,-0.01095104124397]],[[-0.2161863297224,0.0034118455369025,0.050788056105375],[0.060993034392595,0.0054250289686024,0.02764755114913],[-0.033786129206419,0.013868236914277,-0.014414833858609]],[[-0.16020946204662,0.0017885852139443,-0.057346273213625],[-0.079766228795052,-0.0085321068763733,0.035012274980545],[0.057595271617174,0.035943388938904,0.15587896108627]],[[0.19312207400799,0.02861518599093,-0.0013171959435567],[0.027341704815626,0.055739812552929,0.067619793117046],[0.084626913070679,-0.11569669097662,0.056912072002888]],[[0.077732495963573,-0.013447432778776,0.011020480655134],[0.0088105462491512,0.066104032099247,-0.047742590308189],[-0.094703458249569,-0.017157627269626,0.045494124293327]],[[0.034498181194067,-0.038262072950602,0.021339492872357],[-0.068604290485382,0.11293098330498,-0.0080009130761027],[0.034017015248537,-0.081555001437664,-0.0037706915754825]],[[0.066304549574852,-0.0049700485542417,-0.057509932667017],[-0.036105025559664,-0.039061401039362,-0.059525672346354],[0.12904122471809,0.055426444858313,-0.031769923865795]],[[-0.094216614961624,-0.055020686239004,-0.10437348484993],[-0.18403887748718,-0.11101078987122,-0.011577492579818],[0.035378716886044,0.072136908769608,0.12007848918438]],[[-0.070600666105747,-0.053879380226135,0.11198444664478],[0.12593984603882,0.020047364756465,0.028741708025336],[-0.14487688243389,0.020064486190677,-0.0012881867587566]],[[-0.05118502676487,0.026766154915094,-0.072233863174915],[0.036625787615776,-0.080147318542004,0.018508734181523],[0.050171945244074,-0.099570974707603,-0.045540060847998]],[[-0.2125232219696,0.022061970084906,-0.12805423140526],[0.069884859025478,-0.018971612676978,0.056959398090839],[0.0010069170966744,-0.072169959545135,-0.089444451034069]],[[-0.081428438425064,-0.08819804340601,-0.096054799854755],[-0.086390450596809,-0.047403100878,0.033528681844473],[-0.11173662543297,0.17174334824085,0.042363710701466]],[[0.25517770648003,-0.1167749017477,0.044996473938227],[-0.046404186636209,-0.098531357944012,0.022741992026567],[0.12217162549496,-0.02633998170495,0.007204744964838]],[[-0.1264101266861,-0.19786411523819,-0.13497966527939],[0.013963744975626,-0.057394448667765,0.060474831610918],[-0.080140218138695,-0.094205111265182,0.029202172532678]],[[0.093105085194111,0.14787875115871,0.051867600530386],[0.056119859218597,0.067144751548767,-0.062964305281639],[0.046963643282652,-0.036437597125769,0.040057308971882]],[[0.029434269294143,-0.09851648658514,0.061674829572439],[0.17957381904125,0.032400760799646,0.041147492825985],[-0.030861619859934,0.12528133392334,-0.087777949869633]],[[-0.021806970238686,0.14717611670494,0.075886510312557],[-0.15280520915985,-0.001550508546643,-0.056115679442883],[0.028179822489619,-0.048477098345757,-0.00022532987350132]],[[-0.039254669100046,-0.078459024429321,-0.18517552316189],[0.033855017274618,-0.14636981487274,-0.039823483675718],[0.064927808940411,-0.076175272464752,-0.10549292713404]],[[0.099695764482021,0.018047921359539,-0.065966099500656],[-0.019859410822392,0.070791646838188,-0.058035850524902],[0.0035309265367687,0.17422935366631,0.0838438346982]],[[-0.049767360091209,0.0019901401828974,-0.10534340888262],[-0.062450725585222,-0.026102399453521,-0.056330889463425],[-0.024550827220082,0.072166256606579,-0.018354082480073]]],[[[0.14144866168499,-0.0082490686327219,0.10067190974951],[-0.11751157045364,-0.0071867764927447,-0.12153582274914],[-0.04835807159543,0.030494267120957,0.063053749501705]],[[-0.10693653672934,-0.10552921891212,-0.10405974835157],[0.024937152862549,0.017488449811935,-0.1106076836586],[-0.019040485844016,0.090718917548656,-0.048180282115936]],[[-0.10027941316366,-0.093163274228573,-0.079694926738739],[-0.072071485221386,-0.1003590375185,-0.024450009688735],[-0.016357542946935,-0.0070657609030604,0.009378969669342]],[[0.052198428660631,-0.011033872142434,-0.087812714278698],[-0.086094923317432,-0.03967422619462,-0.041936360299587],[-0.059446584433317,-0.12703591585159,-0.026016529649496]],[[-0.0031733603682369,0.076300002634525,-0.067759692668915],[-0.041628323495388,-0.065270245075226,0.0044725704938173],[0.078333109617233,0.020260866731405,0.042204041033983]],[[0.025491228327155,-0.065365791320801,0.11362401396036],[-0.098935090005398,-0.01612595282495,-0.048521693795919],[0.033891137689352,-0.041035424917936,0.0654321834445]],[[-0.074043206870556,0.073502995073795,-0.040769167244434],[0.064177118241787,0.11773596704006,0.0064232647418976],[0.18506214022636,0.019357368350029,0.0061514172703028]],[[0.06222989410162,0.015534021891654,0.10704936087132],[-0.051101595163345,-0.13774076104164,-0.040132831782103],[0.050101269036531,0.025381049141288,0.0040445760823786]],[[0.0028658385854214,-0.087661221623421,0.066833175718784],[-0.064770020544529,0.11031206697226,0.13095106184483],[-0.011884718202055,-0.068407848477364,0.048955321311951]],[[0.0038573995698243,0.044446025043726,-0.090960219502449],[-0.079315438866615,0.0075912084430456,0.07088590413332],[-0.025464421138167,-0.19123293459415,-0.065238915383816]],[[-0.046384386718273,0.047115482389927,-0.038146257400513],[-0.028533905744553,-0.15034775435925,0.040854930877686],[-0.087791487574577,-0.11513809859753,0.052859704941511]],[[0.029377017170191,-0.029978046193719,-0.20542070269585],[-0.067676424980164,0.12503752112389,-0.077473260462284],[0.050203170627356,0.062973983585835,-0.094480775296688]],[[0.02271369472146,-0.0664257183671,0.011738251894712],[-0.033860199153423,-0.011281339451671,-0.033839702606201],[-0.056408897042274,0.069503203034401,0.049230918288231]],[[0.059986960142851,-0.0095090484246612,-0.05310146510601],[0.075719736516476,0.010174721479416,0.075072199106216],[-0.0091757765039802,0.1358954757452,-0.11172658205032]],[[-0.034105528146029,-0.054448705166578,-0.11166686564684],[0.062328293919563,-0.079680606722832,-0.17368274927139],[0.046382334083319,-0.0093175815418363,0.00047137230285443]],[[0.057692632079124,-0.1581394225359,-0.048020642250776],[0.0035737408325076,0.017924850806594,-0.015016595833004],[0.0012830505147576,-0.030961880460382,-0.072035670280457]],[[0.025545816868544,0.016417259350419,0.0041640410199761],[-0.062406118959188,-0.089238069951534,0.014751587994397],[-0.040486831218004,0.0020748670212924,-0.028549652546644]],[[0.040483724325895,0.043724056333303,0.005335845053196],[-0.031699754297733,0.090249747037888,0.0084172897040844],[0.15625286102295,-0.0029863272793591,-0.061224091798067]],[[-0.075805850327015,-0.057328913360834,0.028594510629773],[0.036714356392622,-0.018678957596421,-0.10698878765106],[-0.12128229439259,-0.019354101270437,0.077816002070904]],[[-0.044797502458096,-0.10115381330252,-0.13227024674416],[0.052986670285463,0.067632734775543,-0.0069648684002459],[0.0069500599056482,0.034305192530155,0.068404771387577]],[[0.059875663369894,0.019278021529317,0.080429024994373],[-0.058203112334013,0.027146838605404,-0.036415919661522],[0.059111479669809,-0.036100681871176,0.047844409942627]],[[-0.10727278143167,-0.0020784419029951,-0.15170376002789],[-0.0042963977903128,0.019639696925879,-0.030814597383142],[0.066353283822536,-0.0026870633009821,0.067884892225266]],[[0.049611192196608,0.12237420678139,-0.036871392279863],[-0.0098818130791187,-0.091238506138325,-0.073885314166546],[0.05189586058259,0.047380112111568,0.048025049269199]],[[0.04821614548564,0.059998631477356,-0.017865328118205],[0.024248078465462,0.1165728867054,0.043266326189041],[-0.10167796164751,0.18085262179375,-0.040951084345579]],[[0.15343695878983,0.11038352549076,-0.0012217191979289],[0.10259057581425,-0.04366610199213,0.11977111548185],[-0.10495422780514,-0.0038933814503253,-0.099795363843441]],[[-0.040232293307781,0.026167487725616,0.011147049255669],[-0.055315319448709,-0.011499814689159,0.043697152286768],[-0.055254828184843,0.032150100916624,-0.0073599410243332]],[[-0.11522182822227,0.046528171747923,-0.067548826336861],[-0.035125490278006,-0.03496515005827,0.036306276917458],[0.014522527344525,0.073946788907051,0.10813426971436]],[[-0.02883624471724,-0.067233577370644,0.00079606205690652],[-0.12009555846453,-0.03466047719121,-0.070827730000019],[-0.050328824669123,-0.019622031599283,-0.12592835724354]],[[0.025625325739384,0.011388690210879,0.013304401189089],[-0.062574587762356,-0.0072423936799169,0.13184970617294],[0.052357766777277,-0.036048114299774,-0.12059330195189]],[[-0.091732576489449,0.0040103234350681,-0.12543153762817],[-0.12088134139776,-0.0027424821164459,-0.061124686151743],[-0.036109149456024,0.087480649352074,-0.011869614943862]],[[-0.068702004849911,0.0091873202472925,0.12569744884968],[0.016274562105536,0.0026687528006732,0.194410815835],[-0.17661464214325,-0.037318374961615,0.069241322577]],[[0.035509619861841,0.10801233351231,-0.00023620473803021],[0.014026950113475,0.1229453086853,0.044166091829538],[0.067596338689327,0.025858284905553,-0.026413971558213]],[[0.15812358260155,-0.038551390171051,-0.055838886648417],[-0.047258544713259,0.066802024841309,0.10155942291021],[0.037247750908136,-0.073299735784531,0.081223852932453]],[[0.081092447042465,-0.0060368138365448,0.017596714198589],[-0.024037715047598,0.088273175060749,-0.050909142941236],[-0.10956925153732,0.027205659076571,0.020630110055208]],[[-0.0057791341096163,-0.057638950645924,-0.015870824456215],[-0.054232701659203,0.062268156558275,0.0092287650331855],[0.1151789650321,0.023417208343744,-0.066053234040737]],[[0.097953222692013,0.044811621308327,0.11914405971766],[0.089410461485386,-0.055163521319628,0.031492259353399],[-0.13150078058243,0.025907337665558,0.046449944376945]],[[0.10491633415222,-0.098008319735527,-0.022841168567538],[0.021286780014634,0.12310554087162,-0.022707177326083],[0.12392247468233,-0.047841489315033,0.051554713398218]],[[0.021911414340138,0.00015174414147623,-0.062399890273809],[0.016462555155158,-0.05572297796607,-0.14627654850483],[-0.050812654197216,0.096032105386257,0.13219580054283]],[[0.067152701318264,-0.010678999125957,-0.011587587185204],[-0.0082570370286703,-0.051200687885284,-0.1286795437336],[-0.10053958743811,-0.080390125513077,0.055251106619835]],[[0.0024210945703089,0.052009839564562,-0.081111259758472],[0.083402037620544,0.12481001019478,-0.029599633067846],[-0.18257504701614,0.015434524044394,-0.0067784762941301]],[[0.066764079034328,-0.13058887422085,-0.18322685360909],[0.025068404152989,-0.2252978682518,-0.15061172842979],[0.067997545003891,-0.068211920559406,-0.048474382609129]],[[0.016848355531693,-0.048239696770906,-0.058620523661375],[-0.047379989176989,0.10337927937508,0.03365595266223],[0.064794652163982,-0.03463451191783,-0.0085034854710102]],[[0.10010205209255,0.13690073788166,0.017898742109537],[-0.045763120055199,-0.12724687159061,0.04371116310358],[-0.086073882877827,-0.013257933780551,-0.12695077061653]],[[-0.024775860831141,-0.016279304400086,-0.043066896498203],[-0.011103269644082,-0.050950158387423,0.012627062387764],[0.05762155354023,0.023976506665349,0.0083338748663664]],[[-0.10918272286654,-0.25782719254494,-0.12890625],[-0.066419452428818,0.022058906033635,-0.12273827195168],[-0.0057740500196815,0.047857210040092,0.0035954767372459]],[[-0.13807506859303,-0.031070295721292,0.0027957772836089],[-0.00068034452851862,-0.12091186642647,0.079367347061634],[0.098841108381748,-0.16144141554832,-0.036639731377363]],[[0.026268977671862,-0.045078426599503,0.15098920464516],[-0.0060392543673515,0.075735285878181,-0.012569999322295],[-0.036428153514862,-0.011672693304718,-0.04913530126214]],[[-0.027442701160908,0.084299869835377,0.054109435528517],[-0.12756179273129,-0.013137616217136,-0.096206575632095],[0.022076334804296,0.0034897348377854,0.074971415102482]],[[-0.049729853868484,0.03589928150177,-0.028509676456451],[-0.11350497603416,-0.10118773579597,-0.17142352461815],[0.082999125123024,0.1168187558651,0.0064888745546341]],[[-0.0023472798056901,-0.0099814189597964,0.082402542233467],[-0.031491950154305,-0.12057276070118,-0.19059887528419],[0.2109337002039,0.047072824090719,-0.038796111941338]],[[-0.094342745840549,0.078637592494488,-0.12013896554708],[0.052552785724401,-0.1497869938612,0.005823525134474],[-0.012823582626879,-0.092832393944263,-0.028702015057206]],[[-0.15898840129375,-0.19882905483246,0.01895259693265],[0.022854931652546,-0.021703492850065,0.075932629406452],[-0.05145762488246,-0.11026731133461,0.013831470161676]],[[-0.015565981157124,-0.053263120353222,0.06768424808979],[0.11974607408047,-0.024186160415411,0.13815614581108],[-0.22344690561295,0.0087840259075165,-0.015431857667863]],[[0.0026239447761327,-0.014992132782936,3.2980242394842e-05],[-0.09334347397089,-0.026372659951448,-0.052667133510113],[-0.099906720221043,-0.025773646309972,-0.072215527296066]],[[0.022044477984309,-0.045639056712389,0.015616472810507],[0.0092119798064232,0.048500660806894,0.025401560589671],[0.017316073179245,0.024237195029855,0.068990349769592]],[[-0.25447270274162,0.025857973843813,-0.099480420351028],[-0.049786582589149,-0.016300575807691,0.07549961656332],[0.043196726590395,-0.17595854401588,0.16639539599419]],[[0.015702968463302,0.093985848128796,0.018700635060668],[0.019228840246797,0.15665364265442,-0.12292052805424],[0.045190490782261,-0.06445699185133,0.071189112961292]],[[-0.041477452963591,0.0011247664224356,-0.04042337089777],[0.080160692334175,-0.046607118099928,-0.05724785849452],[0.012865195050836,0.0523453168571,0.13514617085457]],[[0.13381040096283,-0.0066262171603739,0.051039334386587],[0.01943987980485,0.080585613846779,0.0083104316145182],[0.044347316026688,0.010191273875535,-0.019707562401891]],[[0.083238162100315,-0.20104002952576,-0.077726282179356],[-0.051710773259401,-0.051149152219296,0.15199416875839],[0.028398556634784,-0.19191688299179,-0.014908513054252]],[[0.089325562119484,0.0099140042439103,0.11095279455185],[0.047682639211416,0.035830423235893,0.073521956801414],[0.0028884506318718,0.032157480716705,-0.0026180408895016]],[[-0.024052510038018,-0.061478402465582,-0.032292012125254],[-0.043134156614542,0.032505478709936,-0.043688807636499],[0.065787270665169,-0.096756406128407,-0.03546030446887]],[[0.11410091817379,-0.039677057415247,0.034150835126638],[0.079842947423458,-0.08658130466938,0.075716830790043],[-0.023869156837463,0.071795344352722,0.054389070719481]],[[-0.10806865245104,-0.02658111974597,-0.089397273957729],[-0.025606812909245,-0.18939919769764,0.063784830272198],[-0.089776799082756,0.0082937013357878,0.06559781730175]]],[[[-0.10988499224186,-0.15508429706097,0.0019226614385843],[-0.019786484539509,0.060151509940624,-0.094022579491138],[0.022428836673498,-0.0063472399488091,-0.00525963306427]],[[0.11249699443579,0.04677801951766,-0.078253395855427],[-0.028977701440454,-0.048079870641232,0.062405951321125],[0.04077897593379,0.001952187390998,0.16452074050903]],[[-0.015335712581873,-0.066770978271961,-0.01513537671417],[-0.10024003684521,0.013541233725846,0.039513107389212],[0.01835173740983,-0.11774196475744,-0.032619692385197]],[[-0.025487646460533,0.011998407542706,-0.10025060176849],[-0.075749628245831,0.07565400749445,0.0075808251276612],[-0.01991868391633,0.018247103318572,-0.081888824701309]],[[-0.1087414175272,0.02505973726511,-0.1404404938221],[0.097729191184044,-0.10475429147482,0.034126300364733],[0.049137949943542,0.086950458586216,-0.089937806129456]],[[0.039941523224115,0.034982189536095,-0.027911491692066],[-0.021724795922637,-0.13680635392666,-0.080283984541893],[-0.086600303649902,-0.071465238928795,-0.034535944461823]],[[-0.14476239681244,-0.11156791448593,0.15111194550991],[0.052295070141554,0.042060602456331,-0.050920810550451],[0.041475806385279,-0.028026131913066,0.034613754600286]],[[-0.070104017853737,-0.018194563686848,-0.054977156221867],[-0.00067351339384913,-0.03237073123455,-0.097420252859592],[-0.070877566933632,0.092532366514206,0.023052433505654]],[[0.034692283719778,-0.0094162160530686,0.026549249887466],[-0.023680076003075,-0.042201727628708,-0.031356226652861],[0.019269427284598,0.017791939899325,0.12385046482086]],[[-0.052313715219498,-0.025247078388929,0.03856511041522],[0.00276810512878,0.075550675392151,-0.018492620438337],[0.16145877540112,0.0074457880109549,0.1959764957428]],[[0.031565021723509,-0.0079419249668717,-0.18889956176281],[0.010185493156314,-0.042263127863407,-0.10659126937389],[0.057817634195089,0.10151758044958,0.10767891258001]],[[-0.12636752426624,0.0053384252823889,0.075850442051888],[0.07140313833952,0.093937732279301,-0.075922437012196],[0.065094389021397,-0.015260974876583,0.034920524805784]],[[0.014626787044108,-0.095816023647785,0.023997988551855],[0.069815844297409,0.013485187664628,-0.063409939408302],[0.043287016451359,-0.071811743080616,-0.072037599980831]],[[0.016177598387003,-0.073986783623695,0.020017934963107],[0.24262633919716,0.023305851966143,0.21715965867043],[-0.13809554278851,-0.0023926731664687,0.12157236784697]],[[-0.12523031234741,0.045751594007015,-0.15875309705734],[0.037058744579554,0.10416661202908,0.0067664650268853],[-0.17336066067219,-0.013646245934069,0.013631615787745]],[[-0.10973453521729,0.031773287802935,0.10770733654499],[-0.10014128684998,-0.14374123513699,0.11145020276308],[0.074341647326946,0.0064290422014892,-0.037423733621836]],[[0.04248994961381,0.017115119844675,-0.064814522862434],[0.068904176354408,-0.032183993607759,0.037630293518305],[-0.029355397447944,0.070144012570381,-0.061061285436153]],[[-0.08848674595356,0.037853352725506,0.097674667835236],[0.11068218201399,-0.053585983812809,0.0052278037182987],[-0.013434047810733,-0.06821621209383,0.11337140202522]],[[-0.0010029047261924,0.0051037548109889,0.0024353463668376],[0.0081767747178674,-0.011519084684551,-0.090463764965534],[-0.030113410204649,-0.022825891152024,-0.029718868434429]],[[0.0097246803343296,-0.023224398493767,0.025535847991705],[0.0024973452091217,-0.045620258897543,0.036326009780169],[-0.069506764411926,0.098221436142921,-0.022091407328844]],[[0.021132191643119,0.031570166349411,0.09653764218092],[0.16679638624191,-0.046320509165525,-0.03902992233634],[-0.016870316118002,0.051744516938925,-0.1237755715847]],[[-0.034251842647791,-0.022114057093859,-0.090180322527885],[-0.05783137306571,0.070933863520622,0.029377289116383],[-0.00037308619357646,-0.032625116407871,0.0072439601644874]],[[-0.064977683126926,-0.043034568428993,-0.029156032949686],[-0.11314386874437,0.027764929458499,0.044418975710869],[0.084418304264545,0.0035396357998252,-0.16704994440079]],[[-0.053389810025692,0.074470013380051,0.1284047961235],[0.011381649412215,-0.047847654670477,0.041998989880085],[-0.17176662385464,0.10033751279116,0.10487573593855]],[[0.12140423059464,0.065692573785782,-0.11042492836714],[-0.095806561410427,-0.049259964376688,-0.051279775798321],[0.27173656225204,0.14010289311409,0.1222407668829]],[[-0.00062248331960291,-0.045524124056101,-0.035002756863832],[0.038707111030817,-0.053336661309004,0.0061433468945324],[0.089538462460041,0.031367767602205,0.018068946897984]],[[-0.094745740294456,-0.022838149219751,0.088360264897346],[-0.051652632653713,0.017297495156527,0.036184128373861],[-0.083790734410286,0.040140714496374,-0.057974379509687]],[[-0.0041985497809947,-0.043928887695074,-0.0064729359000921],[-0.10213066637516,0.11110555380583,-0.13772217929363],[0.027740731835365,-0.067072138190269,-0.0095012960955501]],[[-0.084488406777382,0.030238987877965,-0.023967837914824],[-0.021782303228974,0.013070962391794,-0.18027421832085],[-0.071820549666882,0.034677106887102,0.040358390659094]],[[0.088686235249043,-0.072696231305599,-0.049279231578112],[-0.010571846738458,-0.065171182155609,-0.055592950433493],[-0.1122323423624,0.047139562666416,0.0032531765755266]],[[-0.039507042616606,0.067937068641186,0.0031561232171953],[0.086226254701614,-0.13550768792629,0.11531616747379],[0.013555527664721,0.025491429492831,-0.095061376690865]],[[0.12832024693489,-0.039680168032646,-0.018603472039104],[-0.068032771348953,0.066181555390358,0.15574251115322],[-0.071754910051823,0.047152504324913,-0.087870493531227]],[[0.065216362476349,0.058582577854395,0.13405241072178],[-0.09526389837265,-0.1750303208828,-0.19740653038025],[0.037219174206257,-0.038200963288546,-0.05462808161974]],[[-0.0046898722648621,-0.12558923661709,0.064586877822876],[0.038449462503195,-0.03018725477159,0.040958598256111],[0.034197967499495,0.11637123674154,0.0027183275669813]],[[-0.16090647876263,-0.013337873853743,-0.11714173853397],[-0.050176557153463,0.0065788365900517,-0.10074835270643],[0.0064847432076931,0.059603113681078,-0.068136364221573]],[[0.0074674007482827,-0.031082032248378,-0.0055175228044391],[0.12433145940304,-0.055772785097361,0.020792383700609],[0.171128064394,0.012179928831756,0.073567435145378]],[[0.085347913205624,0.21709367632866,0.10901682823896],[-0.018092025071383,0.04012456536293,0.12866678833961],[0.087599240243435,0.014365280978382,-0.063477270305157]],[[0.034440532326698,-0.048423409461975,0.033664345741272],[-0.026204323396087,0.024703225120902,0.023383427411318],[0.034472558647394,0.086871467530727,0.053002044558525]],[[0.048970472067595,0.020294824615121,-0.025152148678899],[-0.13592913746834,0.0027501685544848,-0.031034963205457],[0.055121902376413,-0.099271826446056,-0.19802938401699]],[[-0.022787056863308,0.0048277406021953,0.16069850325584],[0.067078083753586,0.090491138398647,0.039045799523592],[-0.015329542569816,-0.070909157395363,-0.13872800767422]],[[0.054357908666134,0.015531447716057,-0.007166835013777],[0.13406604528427,0.031768001616001,0.0062782298773527],[-0.076266638934612,0.05935949459672,0.13538956642151]],[[-0.058208089321852,-0.1289354711771,0.16980284452438],[0.045052945613861,-0.015569602139294,-0.024434512481093],[0.11176156252623,-0.13965509831905,-0.014552572742105]],[[-0.071976900100708,-0.022095169872046,0.022769570350647],[0.042935948818922,-0.0068937968462706,-0.05065855011344],[-0.013732666149735,-0.21965183317661,0.072304204106331]],[[-0.18643140792847,-0.060809727758169,0.0075001805089414],[0.043158411979675,0.090833477675915,0.035566382110119],[-0.082321345806122,0.11146038025618,0.19038970768452]],[[0.076059110462666,-0.039200648665428,0.071807749569416],[0.092587873339653,-0.0038336808793247,-0.030925335362554],[-0.037004180252552,0.046395856887102,0.080835521221161]],[[0.030458591878414,0.086598500609398,-0.10082460939884],[0.02096956409514,-0.095460124313831,0.068973869085312],[-0.16623510420322,0.016404885798693,0.15573500096798]],[[0.025243606418371,-0.020570376887918,0.12521074712276],[0.010463904589415,-0.077340640127659,0.078380510210991],[-0.014994404278696,0.033538531512022,-0.21546153724194]],[[-0.011135813780129,0.099521636962891,0.12914490699768],[-0.00024149059026968,-0.14878843724728,0.061498362571001],[-0.038810104131699,-0.068206444382668,-0.073865681886673]],[[-0.022336376830935,0.067208148539066,-0.029430408030748],[-0.040160156786442,-0.11193036288023,0.1662557721138],[0.0026565950829536,0.15862934291363,0.094014391303062]],[[-0.011890479363501,0.10711608082056,0.24579313397408],[-0.13340041041374,-0.1095845028758,-0.0116524733603],[-0.088650353252888,0.093199543654919,0.16922484338284]],[[0.23215827345848,-0.041699323803186,-0.20784787833691],[0.0091738840565085,-0.045885652303696,0.1087346971035],[0.019435482099652,0.086912862956524,0.088992610573769]],[[0.24136792123318,0.1486964225769,0.023205893114209],[0.11421667784452,-0.0957171022892,-0.062812745571136],[0.057053547352552,0.0059348656795919,-0.11362193524837]],[[0.029802661389112,-0.024431917816401,0.051336318254471],[-0.10405441373587,-0.12593695521355,0.025074452161789],[-0.14029389619827,-0.12866568565369,-0.0443379804492]],[[0.072651453316212,0.018044335767627,0.12810042500496],[0.042768746614456,0.085480310022831,-0.043724928051233],[0.033565100282431,0.047543343156576,0.054525632411242]],[[-0.0063666524365544,0.06104376539588,0.075333684682846],[0.085642918944359,0.0078303460031748,0.0018941892776638],[-0.11031298339367,-0.059661272913218,-0.15971408784389]],[[-0.17782235145569,-0.1282274723053,-0.13616485893726],[-0.098495095968246,0.0023123207502067,0.029141027480364],[0.046519495546818,-0.04373486712575,-0.024214824661613]],[[-0.042739700525999,-0.098478935658932,0.059163853526115],[-0.094375163316727,-0.056225202977657,0.060674339532852],[0.080001518130302,0.031070314347744,0.0053218076936901]],[[0.041378203779459,0.0071455552242696,-0.021870911121368],[-0.016973633319139,-0.0056426785886288,0.03281519934535],[-0.042299166321754,-0.10599394887686,-0.030693978071213]],[[0.011111635714769,0.16205431520939,0.07805860042572],[0.15137895941734,0.09165795147419,0.074312709271908],[0.03857870772481,0.0072509730234742,0.03069743514061]],[[0.044652495533228,-0.049170158803463,0.10821148008108],[-0.16267021000385,-0.088129736483097,0.081884175539017],[-0.1888035684824,-0.10586058348417,0.007320745382458]],[[-0.089247494935989,-0.0085281264036894,-0.11691342294216],[0.069638311862946,-0.12208686769009,-0.027902208268642],[0.071757137775421,0.092861749231815,0.17803409695625]],[[-0.054769363254309,0.0030334640759975,0.085193954408169],[0.075453981757164,0.039940100163221,-0.12026084959507],[-0.046328999102116,0.13235610723495,0.035227462649345]],[[-0.06401776522398,-0.13407988846302,-0.025317655876279],[-0.017007827758789,-0.10710277408361,-0.064875200390816],[0.035344630479813,0.18093729019165,0.028912298381329]],[[-0.052808534353971,-0.062364812940359,-0.042420219630003],[-0.085588783025742,-0.011777957901359,-0.10863357782364],[0.035109654068947,0.010025084018707,0.051158159971237]]],[[[-0.00066502491245046,-0.035939399152994,0.0065769222564995],[0.002549727447331,0.063197948038578,-0.052137978374958],[0.013442722149193,0.048088397830725,-0.032352801412344]],[[-0.02711246162653,-0.087853699922562,-0.038061305880547],[-0.020246688276529,0.092361390590668,-0.10859770327806],[0.037980228662491,0.055318988859653,-0.068779394030571]],[[-0.023106088861823,-0.051010247319937,0.15478576719761],[-0.060499846935272,-0.11615029722452,0.11757665127516],[0.05257023870945,-0.055969569832087,-0.093002386391163]],[[-0.17349678277969,0.047826919704676,0.046551555395126],[0.081090159714222,-0.071862109005451,0.049084786325693],[0.04805389419198,0.010471895337105,-0.029811235144734]],[[-0.093794792890549,-0.08654896914959,-0.047726787626743],[-0.027480347082019,0.013147840276361,-0.074114948511124],[-0.15796068310738,0.077150441706181,0.0010436772136018]],[[0.056224755942822,-0.071742787957191,0.0052563562057912],[-0.00088767922716215,0.18095237016678,-0.11295843869448],[-0.13783237338066,-0.081632010638714,-0.20765165984631]],[[0.0053151124157012,0.016299869865179,0.083547987043858],[0.096385918557644,-0.14301811158657,-0.0075177713297307],[0.028685798868537,0.060434620827436,0.16952823102474]],[[0.090664252638817,0.045848354697227,0.021284889429808],[-0.15587912499905,0.069452345371246,-0.13200514018536],[-0.14704605937004,-0.02448345720768,-0.03985296562314]],[[0.10768356174231,0.074497140944004,-0.11668635904789],[0.036979515105486,-0.086751341819763,-0.13253554701805],[-0.016575876623392,0.11425167322159,0.012870129197836]],[[0.0034285099245608,0.1128406599164,0.076653771102428],[0.0071468777023256,0.084868356585503,0.089736349880695],[-0.041416119784117,-0.079150132834911,0.09571373462677]],[[0.0535833761096,0.00039909654879011,-0.052104994654655],[-0.1745657324791,0.095317296683788,-0.088027030229568],[-0.025651074945927,0.16839568316936,-0.0032693857792765]],[[0.010246153920889,-0.048487287014723,0.017583856359124],[0.054849494248629,-0.078104548156261,-0.0021331908646971],[0.027049787342548,0.034543637186289,0.016773158684373]],[[0.031573627144098,-0.059626623988152,-0.059851638972759],[-0.0048055876977742,-0.08857549726963,-0.0097637511789799],[-0.029217028990388,-0.090834058821201,0.079282067716122]],[[-0.020893581211567,0.08473427593708,-0.13146604597569],[-0.15482965111732,0.02556767500937,0.0079682189971209],[0.14782743155956,-0.16331315040588,-0.12347361445427]],[[0.18045723438263,0.04859909042716,-0.043016564100981],[0.06860688328743,-0.077473387122154,0.17989313602448],[0.18316589295864,-0.24950230121613,-0.052448827773333]],[[-0.0038683973252773,0.0080818962305784,0.15081356465816],[-0.080497287213802,0.095752574503422,0.11368800699711],[0.049096241593361,0.050677385181189,0.050828598439693]],[[-0.033440884202719,0.027503134682775,-0.054956045001745],[-0.077314078807831,-0.045094206929207,0.080766342580318],[-0.0059002307243645,-0.074748024344444,-0.012628028169274]],[[-0.14339862763882,-0.08329314738512,-0.078502736985683],[0.014583192765713,0.097607776522636,-0.17974764108658],[-0.089409671723843,0.12787082791328,0.079131424427032]],[[-0.0070642284117639,-0.049634035676718,0.081156522035599],[0.14207127690315,-0.1062436029315,-0.023498483002186],[-0.11365586519241,-0.11266841739416,-0.15570403635502]],[[-0.12416584789753,-0.071518771350384,0.0031872354447842],[-0.070189245045185,0.1261555403471,-0.0051574655808508],[0.08390200138092,-0.19384691119194,-0.25791352987289]],[[0.034858100116253,-0.12143424153328,0.001234894967638],[-0.0058770487084985,-0.032851543277502,-0.011705263517797],[-0.03690429776907,-0.16148583590984,0.066217318177223]],[[-0.086794562637806,-0.040825553238392,0.029473500326276],[0.00092908676015213,0.022062303498387,0.022337257862091],[-0.02161593735218,-0.07594707608223,-0.079669967293739]],[[0.067645698785782,0.05154974758625,0.058094125241041],[0.032181520015001,0.069968104362488,-0.0036919373087585],[-0.026120465248823,-0.063504084944725,-0.066726580262184]],[[0.14719592034817,0.080833591520786,0.19556365907192],[0.070691093802452,0.0013774522813037,0.31372821331024],[-0.061469260603189,-0.16774301230907,0.2523849606514]],[[0.05167880654335,0.16350573301315,0.040759362280369],[-0.0065807183273137,0.076707124710083,-0.026518806815147],[-0.015562081709504,0.050876196473837,0.065085373818874]],[[-0.0056816767901182,0.047288581728935,-0.01736106723547],[0.057386390864849,0.0035081261303276,-0.13884572684765],[0.081332422792912,0.037141889333725,0.016679057851434]],[[-0.16384521126747,-0.15850758552551,0.066890314221382],[-0.058335721492767,-0.034125789999962,0.055491581559181],[-0.01667938195169,0.066435627639294,0.036540575325489]],[[-0.121133685112,0.094738945364952,0.1830236017704],[-0.035823121666908,-0.096232630312443,-0.23979806900024],[-0.065490037202835,-0.00079466769238934,-0.11130825430155]],[[-0.27115479111671,0.064381659030914,-0.14311565458775],[0.0097144264727831,0.050774857401848,-0.29818630218506],[-0.061215985566378,-0.06655415892601,0.13394570350647]],[[-0.025670757517219,0.07747807353735,0.19551761448383],[-0.080691888928413,0.010393786244094,0.0099875405430794],[0.023038499057293,-0.037073593586683,-0.1027050614357]],[[0.22112816572189,-0.094736315310001,0.018074443563819],[0.30618792772293,-0.21337404847145,0.016783244907856],[0.11357428878546,-0.15107704699039,0.058811850845814]],[[-0.012595903128386,-0.12784084677696,0.28913202881813],[0.11396612226963,-0.17240861058235,0.038438390940428],[0.11732530593872,0.058200020343065,0.013832999393344]],[[-0.056819923222065,-0.098167277872562,-0.10028242319822],[-0.091041706502438,0.06116758659482,0.13191366195679],[0.068588994443417,0.065885834395885,0.059478782117367]],[[-0.025518449023366,-0.035492666065693,-0.086298577487469],[-0.03890773281455,0.016628636047244,0.099989086389542],[0.074122920632362,-0.012483931146562,0.030719790607691]],[[-0.005521206650883,-0.15385258197784,-0.011777869425714],[0.040897626429796,-0.16088861227036,0.055635325610638],[0.073588311672211,0.043272104114294,-0.0046345787122846]],[[-0.0042180116288364,0.057163581252098,0.042662408202887],[0.026852896437049,0.034259352833033,0.014104639180005],[-0.040207017213106,0.023216107860208,0.090349458158016]],[[0.01551500428468,0.086877159774303,0.054268795996904],[-0.02255030348897,0.038133926689625,0.045195244252682],[-0.061711251735687,0.055269617587328,0.1428679227829]],[[-0.11525821685791,0.063740387558937,0.095412164926529],[-0.065986111760139,-0.055375121533871,-0.08407661318779],[0.038952130824327,-0.043857056647539,-0.060090612620115]],[[-0.086031027138233,0.18417859077454,0.10614633560181],[0.012091413140297,0.033919032663107,-0.10976583510637],[-0.0041708867065609,0.012046894989908,-0.047485210001469]],[[0.014162557199597,-0.040630273520947,0.11888957023621],[0.11091046780348,0.15932901203632,-0.032491870224476],[-0.14096890389919,0.025596424937248,-0.10433224588633]],[[0.024532921612263,-0.11242154985666,0.011795757338405],[0.036051832139492,-0.12288890779018,-0.022824861109257],[-0.03243987634778,-0.015693988651037,-0.040813937783241]],[[-0.027584144845605,-0.0055208830162883,0.11501743644476],[0.065464481711388,-0.033550314605236,0.069677636027336],[-0.061993420124054,-0.051518775522709,0.061836760491133]],[[0.044210411608219,0.17847113311291,-0.098474331200123],[0.089203834533691,-0.089578963816166,0.0076661347411573],[0.012012102641165,0.015831589698792,-0.043920055031776]],[[-0.18754209578037,0.034087415784597,-0.2029671818018],[-0.11109187453985,0.079606473445892,-0.13836079835892],[0.0022427837830037,-0.090578861534595,-0.25376975536346]],[[-0.14704175293446,0.04728714004159,0.17236283421516],[-0.14208985865116,0.10314080119133,0.0091752074658871],[-0.21206177771091,0.048121582716703,0.11822573840618]],[[-0.071134977042675,0.071180582046509,-0.08101411908865],[0.066328808665276,-0.11648917198181,0.082018330693245],[0.14340309798717,-0.066969625651836,-0.16853293776512]],[[0.16332599520683,-0.0033210676629096,0.066392682492733],[-0.057547941803932,-0.042274948209524,0.11707839369774],[-0.073326662182808,0.069917671382427,-0.0087973987683654]],[[0.020978536456823,0.10528173297644,0.12355062365532],[-0.089153736829758,0.045445792376995,0.12094661593437],[0.076892539858818,0.1109232455492,-0.016417210921645]],[[-0.055974792689085,-0.16419617831707,0.049297954887152],[-0.014792532660067,-0.082391686737537,0.0071370410732925],[-0.0043776133097708,0.012903111986816,-0.093865215778351]],[[-0.077972680330276,-0.078771516680717,0.030038962140679],[0.0090479617938399,0.14802071452141,-0.028030188754201],[0.060024604201317,0.24970254302025,0.15706284344196]],[[0.086433053016663,-0.0064410795457661,-0.10393958538771],[0.030257543548942,-0.057705987244844,0.095482982695103],[-0.024083940312266,-0.015493229031563,-0.23614875972271]],[[-0.0081726033240557,0.077725522220135,-0.12642174959183],[0.112743742764,-0.0088190827518702,-0.046076588332653],[0.12614233791828,-0.013055332005024,-0.13815505802631]],[[-0.054890938103199,-0.053121365606785,0.087623752653599],[0.048639349639416,-0.081628620624542,0.1037020906806],[0.028036069124937,-0.0032481381203979,0.023966042324901]],[[0.041888047009706,0.060912169516087,-0.13937565684319],[0.0052455281838775,-0.0067616445012391,-0.004988154862076],[-0.080789543688297,0.059198912233114,-0.062137793749571]],[[-0.040512997657061,-0.047682497650385,-0.048306792974472],[-0.050885196775198,0.015419541858137,-0.0089538479223847],[0.039180845022202,-0.023137422278523,-0.036341574043036]],[[0.034207630902529,-0.0080291423946619,0.046921223402023],[0.046642377972603,-0.018014673143625,-0.10136219114065],[0.13960786163807,-0.0080900099128485,-0.038160219788551]],[[-0.052990544587374,-0.11434295028448,-0.038436450064182],[-0.064855843782425,-0.1219624131918,-0.024632869288325],[0.040159549564123,-0.044845294207335,0.12674354016781]],[[-0.066508956253529,-0.067979767918587,-0.078539684414864],[-0.027867255732417,-0.076634973287582,0.014801797457039],[0.0068905227817595,0.054753474891186,-0.03264344483614]],[[0.13130065798759,0.19225257635117,0.22827453911304],[0.049714837223291,0.10227212309837,0.19066888093948],[-0.0010671227937564,-0.011245591565967,0.080349989235401]],[[0.055111013352871,0.0070535009726882,0.098746933043003],[-0.040309593081474,0.041961513459682,0.10342996567488],[0.099200792610645,-0.03848272562027,-0.23870961368084]],[[0.043026264756918,0.12228324264288,-0.097763478755951],[0.076090142130852,-0.026226321235299,-0.087854973971844],[0.13008406758308,0.020246751606464,0.099246628582478]],[[-0.017618235200644,-0.039372261613607,0.08066438138485],[0.062782816588879,0.02368364110589,-0.0383146032691],[-0.046949371695518,-0.003890146734193,0.18047358095646]],[[-0.0039028997998685,-0.0802366361022,-0.10766848176718],[-0.048484493046999,0.030050987377763,0.086396552622318],[0.0049609402194619,0.011314386501908,0.15291008353233]],[[0.18929274380207,-0.12530417740345,-0.02579465508461],[0.10267370939255,-0.12338123470545,0.10484451055527],[-0.13487115502357,0.084521502256393,-0.0060399989597499]]],[[[-0.1423916965723,-0.092436775565147,-0.02129658870399],[-0.095167696475983,-0.054016102105379,0.0031523837242275],[-0.12769216299057,-0.052726294845343,0.066992737352848]],[[-0.067290745675564,0.070369116961956,0.084287382662296],[-0.13536565005779,-0.016587905585766,0.058350510895252],[-0.15124098956585,-0.016007514670491,-0.011199969798326]],[[-0.071793764829636,-0.037615917623043,-0.021697925403714],[-0.010930461809039,0.044879503548145,-0.019935946911573],[-0.034596562385559,0.020372899249196,-0.0077849091030657]],[[0.03348147124052,0.057118948549032,0.19464422762394],[-0.13855472207069,-0.016302140429616,-0.019796773791313],[-0.047536540776491,0.026313923299313,-0.005607018712908]],[[-0.12724527716637,-0.021288603544235,0.078997366130352],[0.096239879727364,0.1539149582386,0.013267436996102],[-0.048851542174816,-0.01126806717366,-0.043174151331186]],[[-0.059847056865692,-0.056587714701891,0.055683996528387],[-0.040026903152466,0.068557277321815,-0.041932675987482],[-0.080995604395866,-0.039176359772682,-0.028566332533956]],[[-0.072231240570545,-0.054252576082945,0.024017963558435],[-0.050199300050735,-0.023123485967517,0.14184483885765],[-0.042072497308254,-0.14235238730907,0.10071881860495]],[[0.018727190792561,-0.022120866924524,0.16987901926041],[0.015627134591341,-0.0022994969040155,0.029864013195038],[-0.16336305439472,-0.11162038892508,-0.13382656872272]],[[-0.065604478120804,-0.050708502531052,0.035054743289948],[-0.098699100315571,-0.053582593798637,0.1119337528944],[-0.038848828524351,-0.050998438149691,0.071236938238144]],[[-0.029391411691904,-0.1165988817811,0.049889989197254],[-0.036534283310175,-0.16127115488052,0.079243332147598],[-0.18601259589195,-0.098709233105183,0.0058717969805002]],[[0.043425042182207,-0.09050976485014,0.00024053221568465],[-0.050750948488712,-0.03653834015131,-0.047639984637499],[-0.10509771108627,0.049457352608442,0.065991289913654]],[[-0.14289729297161,-0.036842588335276,0.025897489860654],[-0.079893194139004,0.089210949838161,-0.039270263165236],[0.015672327950597,-0.14056240022182,0.11412134766579]],[[0.0069460216909647,-0.086565956473351,0.044274788349867],[-0.076631247997284,0.067179434001446,-0.0093292184174061],[-0.21909461915493,-0.037154752761126,0.051555935293436]],[[-0.052614502608776,-0.057552229613066,-0.016317840665579],[-0.075592249631882,0.0090838707983494,0.054958146065474],[-0.044403038918972,-0.043057627975941,0.061587430536747]],[[0.09294168651104,0.10564012825489,0.10680984705687],[-0.032045125961304,0.078580796718597,0.032124195247889],[-0.22621069848537,-0.064739175140858,0.1445482224226]],[[-0.061137180775404,-0.01992185972631,0.0065063280053437],[-0.15051794052124,-0.077686108648777,0.0077711236663163],[-0.09736330807209,0.0052172392606735,0.06955124437809]],[[-0.044633261859417,0.019634895026684,0.11783158034086],[-0.15622808039188,0.057385604828596,0.12077394127846],[-0.019965209066868,-0.062779314815998,0.092816524207592]],[[0.032378014177084,0.05082106217742,0.082899078726768],[-0.07602322101593,0.017169060185552,0.094046384096146],[0.064095541834831,0.082107193768024,0.074039690196514]],[[0.018460910767317,-0.07539701461792,0.095487162470818],[-0.022249212488532,0.062651216983795,-0.084022350609303],[-0.015461897477508,0.081835575401783,0.073359690606594]],[[-0.1130533888936,0.075719565153122,0.17063139379025],[-0.07064963132143,0.022099938243628,0.087339699268341],[-0.17204585671425,-0.040182806551456,-0.020990887656808]],[[-0.13058006763458,-0.063762374222279,0.087641581892967],[-0.14070852100849,0.014522486366332,0.01575942710042],[-0.21988195180893,-0.21105889976025,0.056431353092194]],[[-0.013043038547039,0.024497743695974,-0.044185884296894],[-0.070419378578663,0.092528276145458,-0.061939992010593],[-0.05572571977973,0.021634610369802,-0.030453752726316]],[[-0.050466060638428,-0.0021314702462405,0.028230793774128],[0.027963202446699,-0.013323530554771,0.10781895369291],[-0.046063262969255,-0.10244088619947,0.075476437807083]],[[0.043308679014444,-0.062653005123138,0.069373965263367],[-0.065355613827705,-0.081694006919861,-0.024754896759987],[-0.017407370731235,0.06047660112381,-0.11671457439661]],[[0.076630920171738,-0.062312033027411,0.038883663713932],[0.12939804792404,0.044561814516783,-0.11438880115747],[0.040945075452328,-0.0083059398457408,-0.11827636510134]],[[-0.07894641906023,-0.023864218965173,0.10899142175913],[-0.016082121059299,-0.050848834216595,0.055201921612024],[-0.090613789856434,0.055270746350288,0.0048614959232509]],[[-0.20661753416061,-0.010843769647181,0.1012941300869],[-0.12093464285135,0.055574361234903,0.13219839334488],[-0.014511343091726,-0.0025852075777948,0.035716891288757]],[[0.043687611818314,-0.016094073653221,-0.13428357243538],[0.14606258273125,0.00073663651710376,-0.11518733203411],[0.11609488725662,-0.031579662114382,-0.0098635470494628]],[[0.027292374521494,0.0076062786392868,0.026932131499052],[0.0060808421112597,0.019179530441761,0.011560251004994],[-0.15549929440022,-0.041365850716829,0.054194282740355]],[[-0.089447341859341,-0.18401639163494,-0.0087446663528681],[-0.081104055047035,-0.00025235762586817,0.036863032728434],[0.020160548388958,-0.018066851422191,0.074215449392796]],[[0.059994533658028,0.069435596466064,-0.076817974448204],[0.043888933956623,0.040849331766367,0.025824695825577],[0.078471042215824,0.10263135284185,0.04638546705246]],[[-0.021250914782286,0.0070085148327053,0.15750350058079],[-0.025242967531085,0.047209728509188,0.035865992307663],[0.018471617251635,-0.072512596845627,-0.10275076329708]],[[0.11306984722614,0.011010573245585,0.090458795428276],[-0.11573408544064,-0.02511745877564,0.043851085007191],[-0.19578537344933,-0.15259677171707,-0.15189684927464]],[[-0.076129823923111,-0.018148979172111,-0.054866518825293],[-0.25038492679596,-0.0080153876915574,0.089801616966724],[-0.25778287649155,-0.064561687409878,0.05955320969224]],[[-0.067179091274738,0.02295932546258,0.15594686567783],[-0.013921844772995,0.1154977530241,0.062411367893219],[-0.23445053398609,-0.030444044619799,-0.011454645544291]],[[0.16401666402817,-0.0040568592958152,0.027577919885516],[-0.0034159666392952,-0.0029068400617689,-0.034870788455009],[0.076411917805672,0.010552193038166,-0.07087454944849]],[[0.11903217434883,-0.031961794942617,-0.073191240429878],[0.086818307638168,0.093311190605164,-0.048168323934078],[0.018615446984768,0.14477635920048,-0.1351296454668]],[[-0.017171962186694,-0.015605305321515,0.031479477882385],[-0.03391195833683,-0.017688600346446,0.074158109724522],[-0.10910046845675,-0.10636634379625,0.13374280929565]],[[0.082325406372547,-0.019490556791425,-0.018876664340496],[-0.053447969257832,0.016628241166472,-0.032835941761732],[-0.033512234687805,-0.075908951461315,-0.021698584780097]],[[-0.15861693024635,0.044831439852715,0.046899173408747],[-0.12714806199074,-0.020192187279463,-0.065776117146015],[-0.014560247771442,-0.07153395563364,0.068252325057983]],[[-0.095271520316601,-0.0075480407103896,0.07737935334444],[0.087176606059074,-0.11806370317936,-0.16182321310043],[-0.057455755770206,-0.029735520482063,-0.033339913934469]],[[0.04958626255393,0.14258359372616,0.091022923588753],[-0.026605512946844,0.060606721788645,0.032769672572613],[-0.2050743252039,0.086638204753399,0.095584496855736]],[[-0.015218725427985,0.070104606449604,0.084088489413261],[0.09255114197731,0.026238717138767,-0.085380978882313],[-0.31400373578072,0.14849139750004,0.053761631250381]],[[-0.012810658663511,0.086683116853237,-0.06291102617979],[-0.23487977683544,-0.04763388633728,0.042712360620499],[-0.027258411049843,0.047027092427015,0.017697378993034]],[[0.14522308111191,-0.038018632680178,-0.088088162243366],[0.078987948596478,-0.050859689712524,-0.012127361260355],[0.057642806321383,-0.022602923214436,0.096437335014343]],[[-0.14462728798389,-0.079356260597706,-0.19960840046406],[-0.039486944675446,-0.13486199080944,-0.1084836050868],[-0.051966413855553,-0.0054782228544354,-0.049747835844755]],[[0.12729035317898,0.0027702881488949,0.036875933408737],[0.11476186662912,-0.054917693138123,0.092547819018364],[0.1217924952507,0.03637982904911,-0.067578844726086]],[[-0.0093045439571142,-0.11200266331434,-0.058518711477518],[0.052936889231205,-0.094988368451595,-0.055588729679585],[0.063843443989754,-0.065511368215084,-0.037020847201347]],[[0.06394500285387,0.014904142357409,-0.043360307812691],[0.052421469241381,-0.027823518961668,0.017963396385312],[0.068089164793491,-0.06069228053093,-0.065849937498569]],[[-0.083832196891308,0.029231229797006,0.027571149170399],[0.029582947492599,0.037848852574825,0.12527135014534],[0.070127815008163,-0.0010664920555428,0.046306997537613]],[[-0.082499019801617,-0.03623678162694,0.027468578889966],[0.030433485284448,-0.035590525716543,0.081711187958717],[-0.11841673403978,-0.016019510105252,0.12145727872849]],[[-0.025069219991565,-0.034980032593012,-0.096768960356712],[-0.11747749894857,0.039034202694893,-0.061037335544825],[-0.054025959223509,0.083422042429447,-0.056938640773296]],[[-0.12657910585403,-0.038183521479368,0.071949392557144],[-0.15647047758102,0.042619336396456,0.012967557646334],[-0.11888226866722,0.025275060907006,0.06479723751545]],[[0.064432613551617,0.031185459345579,-0.010211225599051],[0.1293286383152,0.012705598026514,-0.0047127692960203],[0.15786138176918,0.00082953117089346,0.033329516649246]],[[0.097723543643951,-0.030466385185719,0.037973459810019],[0.072865933179855,-0.12509697675705,-0.016065878793597],[-0.090303733944893,0.031184084713459,0.00092530762776732]],[[0.061495535075665,0.042321793735027,0.042749162763357],[0.053237643092871,0.026273593306541,0.036770433187485],[-0.10214219987392,0.037019446492195,0.025706214830279]],[[-0.15787854790688,-0.042280353605747,0.063792861998081],[-0.012251333333552,0.060610931366682,0.049192074686289],[-0.081371806561947,-0.015888210386038,0.05986825376749]],[[-0.051176924258471,-0.092234052717686,0.04039528593421],[-0.064612090587616,-0.21561707556248,0.0069653647951782],[-0.091793023049831,-0.022693892940879,0.071221426129341]],[[0.11380864679813,0.052656751126051,-0.062550753355026],[0.080499388277531,0.064417168498039,-0.063834272325039],[0.13018982112408,0.09074479341507,0.012897435575724]],[[0.167156919837,-0.010450375266373,0.077743887901306],[0.12058218568563,0.07834205031395,-0.025885686278343],[0.22560101747513,0.014362151734531,-0.048845268785954]],[[0.017791919410229,0.049971349537373,0.057395726442337],[0.16151498258114,0.022345926612616,0.065300464630127],[0.049129337072372,0.089772075414658,0.0013135763583705]],[[0.12488767504692,0.021199503913522,-0.027921637520194],[0.037943992763758,0.060400433838367,-0.096657253801823],[-0.10397955030203,-0.062816545367241,0.053618993610144]],[[-0.11669465154409,0.085354633629322,0.013866576366127],[-0.02884822897613,0.055500995367765,-0.0010573867475614],[-0.090219341218472,0.048543833196163,0.15434111654758]],[[-0.010570975020528,-0.011854717507958,0.0086095314472914],[-0.0078615061938763,-0.025222755968571,0.050460442900658],[0.089767560362816,-0.072022803127766,-0.017550202086568]]],[[[-0.043145123869181,-0.047975812107325,-0.20459122955799],[-0.00010738892888185,-0.014325769618154,-0.057986069470644],[-0.029249258339405,-0.010176994837821,-0.090001150965691]],[[-0.014866830781102,-0.048498671501875,-0.12643420696259],[-0.066947922110558,0.0093976901844144,0.10873702913523],[-0.052939243614674,0.010140377096832,0.062567256391048]],[[0.10036924481392,0.00080677797086537,-0.038397874683142],[-0.016507960855961,-0.099383056163788,-0.18503104150295],[-0.038137186318636,-0.037699703127146,-0.061772849410772]],[[-0.0047755977138877,0.059743627905846,-0.023754522204399],[0.15291564166546,-0.029926599934697,-0.058925461024046],[-0.010680737905204,-0.0049590277485549,-0.076789155602455]],[[0.011394947767258,-0.01848915591836,-0.055177520960569],[0.060529783368111,-0.02412049099803,-0.19147707521915],[-0.026844451203942,0.10423623025417,0.07062403857708]],[[-0.031304877251387,-0.0464380197227,0.046904608607292],[-0.07566849142313,0.064521551132202,0.086067743599415],[0.13577543199062,0.05691010132432,-0.05952301248908]],[[-0.10734114050865,-0.010515038855374,-0.084522537887096],[0.032073806971312,0.088525682687759,-0.06791940331459],[0.068581320345402,0.098127461969852,0.11872604489326]],[[-0.11001608520746,-0.043223962187767,0.0012163403443992],[-0.018061811104417,0.1043599396944,0.052448708564043],[-0.057413142174482,0.089429572224617,-0.068267352879047]],[[0.049070712178946,0.011275069788098,0.042831059545279],[-0.010145041160285,-0.066776908934116,-0.12182915955782],[-0.092537850141525,-0.14479513466358,-0.020103408023715]],[[-0.063203997910023,0.15250131487846,-0.13078920543194],[0.13148276507854,-0.029540669173002,-0.10957745462656],[-0.0083474265411496,-0.0091003440320492,-0.061460468918085]],[[0.065197952091694,-0.037195317447186,-0.17546969652176],[0.084036149084568,0.0091993771493435,0.028978522866964],[-0.03997066244483,0.050649724900723,-0.12952682375908]],[[0.025713361799717,0.064109236001968,0.026432119309902],[-0.004456952214241,-0.086160242557526,0.044989455491304],[-0.14970701932907,0.017641924321651,-0.009770205244422]],[[-0.079402677714825,0.0025469993706793,-0.034394890069962],[-0.14370462298393,-0.06109206750989,0.05128413438797],[-0.099806435406208,-0.024971501901746,0.013230996206403]],[[-0.16180913150311,-0.083143420517445,-0.12334508448839],[-0.11280162632465,-0.082671955227852,-0.13792563974857],[-0.1149560213089,0.03560895472765,-0.16150489449501]],[[0.12447336316109,0.037072375416756,0.048341058194637],[-0.089509904384613,-0.039837397634983,0.091584131121635],[-0.00069565058220178,-0.0044692093506455,-0.070161178708076]],[[0.070542126893997,-0.19208368659019,-0.016169028356671],[-0.060117527842522,0.089826963841915,0.2223661839962],[-0.033569648861885,-0.00696069188416,0.012403787113726]],[[0.023993307724595,-0.10700918734074,-0.15113168954849],[-0.012308369390666,0.063451558351517,0.18246608972549],[-0.040296085178852,0.09173846244812,0.016415337100625]],[[-0.14065669476986,0.064319118857384,-0.11584212630987],[0.089151442050934,-0.031812179833651,-0.18165639042854],[-0.14218950271606,-0.16838075220585,-0.13131010532379]],[[-0.066157758235931,0.070793680846691,-0.059129752218723],[-0.045424375683069,-0.0010746838524938,-0.088247269392014],[0.035012047737837,-0.017547685652971,-0.069108903408051]],[[-0.035399403423071,0.10030648857355,0.049078572541475],[0.089424081146717,-0.044035043567419,-0.059833887964487],[-0.09371992200613,-0.12164977937937,0.088928490877151]],[[-0.051203642040491,0.033062264323235,0.028827795758843],[0.042638678103685,0.12384757399559,0.050815355032682],[0.11345801502466,0.015158933587372,0.0050883130170405]],[[-0.013008574955165,-0.083982944488525,0.013886860571802],[0.013009825721383,-0.050338000059128,-0.0049090785905719],[-0.010820706374943,-0.0083484146744013,-0.041867185384035]],[[0.043094497174025,0.069146201014519,0.0047068758867681],[0.017810789868236,0.078248500823975,0.020737767219543],[0.0074179135262966,-0.040724210441113,0.057113323360682]],[[0.033238515257835,-0.00052236294141039,0.041891772300005],[0.01246125344187,0.057973109185696,0.11595889925957],[0.12885989248753,-0.16745682060719,0.046129029244184]],[[0.060083720833063,-0.043625351041555,-0.075052835047245],[0.095451511442661,0.064265221357346,0.056873578578234],[0.098013073205948,0.0076609393581748,0.13407163321972]],[[0.056007299572229,0.12122917920351,-0.065860338509083],[0.024516750127077,-0.00706059159711,-0.051048640161753],[-0.064340032637119,0.040538959205151,-0.064169004559517]],[[0.083887070417404,0.089382238686085,0.08121670037508],[-0.017720252275467,0.065510734915733,-0.028635688126087],[-0.050955414772034,0.0027965742629021,-0.044895004481077]],[[0.0039725052192807,0.047747790813446,-0.033444922417402],[0.013585223816335,0.013628308661282,0.0036484918091446],[0.16293503344059,0.014933736994863,-0.050931956619024]],[[0.0049768448807299,0.11971326172352,0.073078945279121],[0.025910165160894,0.091851010918617,-0.043055038899183],[-0.030481228604913,-0.051563315093517,-0.0072101736441255]],[[0.076795816421509,0.00078428059350699,0.031601510941982],[-0.044390503317118,-0.098138213157654,-0.058506820350885],[-0.0566829405725,0.038901306688786,-0.13848930597305]],[[-0.011766005307436,-0.072822891175747,-0.012893382459879],[-0.048731818795204,-0.083202369511127,0.0064843096770346],[-0.033476628363132,0.01318749319762,-0.022344894707203]],[[-0.093234144151211,-0.036373049020767,-0.069015674293041],[-0.014271744526923,-0.041976653039455,-0.010368198156357],[0.029063677415252,-0.041462939232588,0.055009331554174]],[[0.044532548636198,-0.041058227419853,-0.024280155077577],[-0.027442933991551,-0.21476404368877,0.045307490974665],[-0.00045832258183509,-0.066247567534447,-0.045226953923702]],[[-0.0922976359725,0.027872217819095,0.15987169742584],[0.071085333824158,0.081389829516411,-0.083912469446659],[0.091826282441616,0.024451732635498,-0.064336590468884]],[[0.020476669073105,-0.026409624144435,-0.076301887631416],[-0.060810178518295,-0.047234375029802,-0.043552432209253],[0.020329669117928,0.07197467237711,0.031003041192889]],[[0.13192895054817,0.10024470835924,0.047199331223965],[0.094757303595543,0.10638384521008,-0.025667732581496],[0.14512066543102,0.014765460044146,-0.13492579758167]],[[0.023602465167642,0.17411303520203,0.035441461950541],[-0.037422522902489,0.049597673118114,0.064115218818188],[-0.012340853922069,0.14218154549599,-0.10366807132959]],[[-0.032687447965145,0.064273796975613,-0.0014872305328026],[-0.014123375527561,-0.087653979659081,-0.034060548990965],[0.13460467755795,0.08420804142952,-0.030553722754121]],[[-0.11358816921711,0.087430819869041,0.051981382071972],[-0.020806754007936,0.017425334081054,-0.23398688435555],[0.045346952974796,-0.12200064212084,-0.091070450842381]],[[-0.012535158544779,-0.065722905099392,-0.21166963875294],[-0.0023494842462242,0.083729155361652,0.0027815154753625],[-0.10797022283077,-0.033158469945192,-0.070209316909313]],[[0.091296777129173,-0.05450601875782,0.13437201082706],[-0.12267656624317,-0.020403327420354,-0.0059211603365839],[-0.070874981582165,0.046545747667551,0.036377433687449]],[[0.039146494120359,-0.14941599965096,-0.084633335471153],[-0.10146181285381,-0.092719480395317,0.020114263519645],[-0.031759764999151,-0.014277360402048,0.082049563527107]],[[-0.10636692494154,-0.022519860416651,-0.052906632423401],[-0.023674696683884,-0.15108719468117,-0.031418386846781],[0.041972704231739,0.077693812549114,0.16084511578083]],[[0.094536937773228,-0.028612157329917,-0.1149884313345],[-0.0069514308124781,0.17151837050915,0.087417870759964],[0.043602045625448,0.050373636186123,0.013479500077665]],[[0.24719071388245,-0.18950067460537,-0.30943188071251],[-0.037869937717915,-0.015231595374644,-0.045605316758156],[-0.0087952958419919,-0.095467247068882,0.10317195206881]],[[-0.0023783827200532,-0.058344293385744,-0.0060033407062292],[-0.030173402279615,-0.14557941257954,-0.057967580854893],[0.043569404631853,0.037753526121378,0.027271704748273]],[[0.079868450760841,-0.017325151711702,0.18729290366173],[0.067081481218338,0.050900164991617,-0.13021539151669],[-0.10434366762638,-0.0023498148657382,0.060039106756449]],[[-0.023884780704975,-0.058254029601812,0.03430612385273],[0.080703280866146,0.07442793995142,-0.10635067522526],[0.050470631569624,0.11375489085913,0.055636152625084]],[[0.058571986854076,-0.050760686397552,0.072844184935093],[0.018160944804549,0.029343185946345,-0.02461046539247],[-0.051394555717707,-0.070134609937668,-0.034374564886093]],[[0.12358127534389,-0.085509493947029,-0.18697868287563],[0.016696589067578,0.014978065155447,-0.016247693449259],[0.070622071623802,0.0012842956930399,-0.13481970131397]],[[-0.10872681438923,-0.060251053422689,0.027839321643114],[-0.0031140064820647,0.068395525217056,0.039446823298931],[-0.058354377746582,-0.10366207361221,-0.0097678722813725]],[[-0.12500317394733,-0.061545211821795,-0.04874724149704],[-0.02570690959692,0.12358890473843,0.038256026804447],[-0.095363095402718,0.050562717020512,0.055402416735888]],[[0.0044941059313715,0.014320739544928,0.075198315083981],[0.019621834158897,0.040460120886564,0.050490379333496],[0.064224861562252,0.011756554245949,0.034203141927719]],[[0.0069105243310332,-0.019888402894139,-0.076011084020138],[-0.073912128806114,-0.090618424117565,-0.12735833227634],[0.056831311434507,0.051532413810492,0.016561698168516]],[[0.042475342750549,-0.0067161424085498,-0.046322777867317],[0.068642288446426,-0.044487424194813,-0.0029342577327043],[-0.048381209373474,-0.0042283977381885,-0.089229814708233]],[[0.044120535254478,-0.053779765963554,0.025306213647127],[0.098883777856827,0.011129799298942,-0.098159044981003],[0.087786749005318,-0.095875702798367,-0.14631617069244]],[[-0.066873610019684,-0.0051163053140044,0.0608039945364],[0.058663062751293,-0.047528337687254,-0.0088135581463575],[0.099345944821835,-0.012107709422708,-0.033376552164555]],[[0.023975806310773,-0.079608500003815,-0.027102859690785],[-0.055775880813599,-0.017567455768585,0.078479714691639],[0.04941775277257,-0.010241415351629,0.12823678553104]],[[-0.0072379084303975,-0.02840200252831,0.11233067512512],[-0.042933594435453,0.12553077936172,0.1396678686142],[-0.049325790256262,0.14484620094299,0.24908213317394]],[[-0.12034910917282,-0.053913574665785,0.11309316754341],[0.089464902877808,0.014641953632236,-0.0049923839978874],[-0.12880004942417,0.1384132951498,-0.090221680700779]],[[-0.20781290531158,-0.055129375308752,0.043958704918623],[-0.12682256102562,-0.098506189882755,-0.022605150938034],[-0.017213674262166,-0.18060426414013,0.072191074490547]],[[-0.075085267424583,0.10244274884462,0.034769378602505],[-0.096290528774261,-0.0054403534159064,-0.14015382528305],[0.07814509421587,-0.1863696873188,-0.12716129422188]],[[-0.04033900052309,0.057204365730286,-0.058282304555178],[-0.037789206951857,0.19671437144279,0.046611793339252],[-0.1020599976182,-0.14787678420544,0.037883024662733]],[[0.03946303203702,0.10226525366306,0.011579351499677],[0.06646104902029,0.0089541804045439,0.018558841198683],[-0.25463071465492,-0.0260174497962,-0.061907261610031]]],[[[0.024529200047255,-0.1299706697464,-0.11365757882595],[-0.14950503408909,-0.1054514721036,0.023555742576718],[-0.040025647729635,0.0069430610165,-0.011466698721051]],[[-0.1628285497427,-0.098152130842209,-0.083610653877258],[0.095929943025112,0.0089994091540575,-0.076772294938564],[-0.10774774104357,-0.003250831970945,-0.044003132730722]],[[0.10994598269463,-0.020355027168989,0.042988538742065],[-0.007663116324693,-0.028567334637046,-0.035135507583618],[-0.034342769533396,-0.035124912858009,-0.013142549432814]],[[0.041640773415565,-0.042109079658985,0.09081644564867],[-0.052317999303341,0.14833624660969,-0.018145032227039],[-0.056252352893353,0.0035391231067479,-0.11696595698595]],[[0.048437971621752,0.088410265743732,0.17744761705399],[0.073245197534561,0.01995456404984,-0.0055803637951612],[0.030133724212646,0.027445361018181,-0.090785928070545]],[[0.098204143345356,-0.084966696798801,-0.096653617918491],[0.0035641370341182,-0.017397172749043,0.035314343869686],[0.024409014731646,0.032319456338882,0.024830736219883]],[[-0.07983124256134,0.067509040236473,0.17087738215923],[-0.046899676322937,0.074305936694145,0.078110568225384],[-0.052594285458326,0.045469529926777,-0.00075940258102491]],[[0.027228035032749,-0.068124674260616,-0.082178093492985],[0.035976245999336,0.10436920821667,-0.094698488712311],[-0.0010371847311035,-0.061467435210943,-0.14224989712238]],[[0.0074480231851339,-0.052070546895266,0.031357850879431],[0.051508117467165,0.020994549617171,-0.02231814712286],[0.10771277546883,0.10860762000084,0.024236327037215]],[[0.021022396162152,0.071122817695141,-0.10919263958931],[-0.069784231483936,-0.022732585668564,-0.13314715027809],[0.055770378559828,-0.059243842959404,-0.030782902613282]],[[-0.029932418838143,-0.10552462935448,0.011152810417116],[0.082927167415619,-0.01157992053777,0.051434598863125],[-0.08359806984663,-0.020841222256422,-0.16573441028595]],[[0.083822079002857,0.13147895038128,0.16907365620136],[0.0010565903503448,-0.041764285415411,-0.12387000769377],[0.11324910074472,-0.0073965382762253,-0.029449880123138]],[[-0.27456629276276,-0.22916728258133,-0.25556710362434],[-0.050455585122108,-0.1503950804472,-0.083514086902142],[0.044282510876656,-0.012606963515282,0.057319093495607]],[[-0.019989484921098,-0.053565554320812,0.18069693446159],[0.012105528265238,0.064821891486645,-0.099302060902119],[0.059524241834879,0.1407093256712,0.034296970814466]],[[0.052813313901424,-0.034499417990446,-0.16768623888493],[0.039390869438648,0.069400630891323,-0.044474523514509],[0.062123950570822,-0.18396559357643,-0.12609213590622]],[[-0.093351662158966,0.062020767480135,-0.048919845372438],[0.10277618467808,0.10886742174625,-0.080525659024715],[-0.0086116334423423,0.019253022968769,0.024469867348671]],[[-0.11999825388193,-0.086766704916954,-0.069234557449818],[-0.063823230564594,-0.05039531737566,-0.051958553493023],[-0.11072833091021,-0.058207683265209,0.082309909164906]],[[-0.013744072057307,-0.041397407650948,-0.078215003013611],[0.048379968851805,0.00023051325115375,0.120949216187],[0.085401549935341,0.03779062628746,-0.15814889967442]],[[-0.048615355044603,0.061161585152149,-0.094472028315067],[0.014095093123615,0.084582887589931,0.12556552886963],[-0.034315757453442,-0.075951397418976,-0.035107314586639]],[[-0.037351928651333,0.098550722002983,0.093518197536469],[-0.051387503743172,-0.052793346345425,-0.069149874150753],[-0.08713736385107,0.05510102212429,0.036706615239382]],[[0.0068705757148564,0.071335397660732,-0.061051312834024],[-0.092420488595963,-0.11897871643305,0.059536978602409],[0.00659065740183,-0.016906248405576,-0.039533592760563]],[[-0.047848340123892,-0.017069816589355,-0.037597309798002],[0.019066419452429,0.0042590000666678,-0.062430266290903],[0.011192384175956,0.057131722569466,-0.061242047697306]],[[-0.051602616906166,0.024625327438116,-0.0013677690876648],[0.0024260508362204,-0.12536863982677,0.031671956181526],[0.020545240491629,0.11520443111658,0.024972820654511]],[[-0.022370075806975,0.14293526113033,0.19007080793381],[-0.047731149941683,-0.062145799398422,-0.077086307108402],[0.018772926181555,0.04416861385107,-0.06203081831336]],[[0.12000407278538,0.1876215338707,0.14015991985798],[0.051610466092825,0.032417245209217,-0.049871176481247],[0.05515081807971,0.092986091971397,0.15109317004681]],[[0.00079139188164845,0.017016349360347,0.018318079411983],[0.070685625076294,0.045699965208769,0.089795783162117],[-0.086553171277046,-0.097793310880661,-0.040405496954918]],[[0.099011868238449,-0.08668202906847,-0.08465813100338],[0.061849229037762,0.045579582452774,-0.0525126978755],[0.11342886835337,-0.062257051467896,-0.2057104408741]],[[0.02162922732532,-0.075713127851486,-0.15894308686256],[0.029752034693956,-0.016020487993956,0.15157526731491],[-0.014596795663238,-0.090774141252041,-0.167395144701]],[[0.091881334781647,0.025525245815516,0.071321420371532],[-0.10640110820532,-0.063512332737446,-0.2408067882061],[-0.029806770384312,0.020680345594883,0.086851395666599]],[[-0.2008308172226,-0.1830987483263,-0.3008246421814],[0.060843553394079,-0.073941297829151,-0.0074075944721699],[0.13336133956909,-0.033261172473431,-0.0031882366165519]],[[0.028975818306208,-0.0018656720640138,-0.00075476226629689],[-0.078709907829762,0.0041050999425352,0.085727788507938],[-0.0069607705809176,0.03298319503665,0.086296766996384]],[[-0.050968151539564,0.087458625435829,0.085180200636387],[-0.073794029653072,-0.051763325929642,0.019801495596766],[0.039987243711948,0.0075599127449095,0.17096696794033]],[[-0.0051304982043803,-0.0040146326646209,-0.0040510734543204],[-0.0062798922881484,-0.082033462822437,0.048874050378799],[-0.06683074682951,0.033708941191435,-0.023885171860456]],[[0.11510657519102,0.057261776179075,0.1708769351244],[0.022642264142632,-0.011749872937799,-0.026585515588522],[-0.061551105231047,-0.0060957027599216,0.031247852370143]],[[0.038471706211567,-0.0094122868031263,-0.1656905412674],[0.066975571215153,0.11657270789146,0.024943549185991],[-0.011112749576569,-0.082001402974129,-0.078926540911198]],[[0.10747190564871,-0.0031665011774749,0.047413289546967],[0.01862439326942,-0.0076561509631574,0.071448691189289],[0.084713295102119,-0.010513914749026,0.012978586368263]],[[0.15296290814877,-0.13878586888313,0.035888906568289],[0.060679815709591,0.028354343026876,-0.07984571903944],[-0.038317929953337,0.014850341714919,0.049291748553514]],[[-0.1001201570034,-0.07151785492897,0.015429196879268],[-0.099596664309502,-0.028595209121704,-0.10457847267389],[-0.13822557032108,-0.094657339155674,0.12168791890144]],[[0.12031594663858,0.0088488887995481,0.062232851982117],[-0.16420836746693,-0.090597689151764,-0.11112723499537],[-0.012177589349449,-0.061667554080486,0.077138729393482]],[[-0.071600154042244,-0.0079469215124846,0.018779218196869],[-0.12742775678635,-0.040658749639988,0.083626680076122],[0.051107369363308,0.050104588270187,-0.087267339229584]],[[-0.094917930662632,-0.019188126549125,-0.10740516334772],[0.070864960551262,0.083265483379364,-0.023190751671791],[-0.095224566757679,-0.073157146573067,-0.022982196882367]],[[-0.10427378118038,-0.1781700104475,-0.049417451024055],[0.028324440121651,0.076738283038139,0.068286798894405],[-0.090214885771275,-0.050094544887543,0.0086559187620878]],[[-0.016708118841052,-0.0064972462132573,-0.075762651860714],[0.12298672646284,0.26978242397308,0.080437257885933],[-0.18786409497261,-0.16222903132439,-0.16195493936539]],[[-0.005752993747592,0.018756365403533,-0.067969709634781],[-0.031993199139833,-0.062602192163467,-0.085497103631496],[0.060776401311159,0.1513105481863,0.086139231920242]],[[0.12425996363163,-0.088381581008434,-0.4395612180233],[0.094101965427399,0.0052887033671141,-0.10967390239239],[-0.017019093036652,0.030890483409166,-0.023483779281378]],[[-0.064172625541687,0.10634441673756,0.019680965691805],[-0.051571007817984,0.012948350049555,0.073423333466053],[-0.029153266921639,-0.0043137250468135,-0.10138638317585]],[[0.12043278664351,0.029277047142386,-0.0066677830182016],[0.062527477741241,-0.0059043364599347,0.15779793262482],[0.0068967416882515,0.0045903087593615,0.048675712198019]],[[-0.015488441102207,0.095680929720402,-0.050425533205271],[-0.13389731943607,0.022071754559875,0.041616573929787],[-0.0098081566393375,-0.013991069979966,0.010516177862883]],[[0.012933471240103,-0.027140278369188,0.09641607105732],[-0.079965606331825,-0.0014978348044679,-0.051083862781525],[-0.013709320686758,0.0053514307364821,0.071471706032753]],[[0.0074387192726135,-0.075782284140587,-0.15680027008057],[0.053356841206551,-0.075019396841526,0.028395043686032],[-0.039353635162115,0.016130657866597,0.22599160671234]],[[0.057007923722267,0.0044542951509356,-0.015896363183856],[0.011307270266116,0.025074291974306,0.13756231963634],[-0.056609645485878,0.014141644351184,-0.2550268471241]],[[0.058279391378164,-0.043489817529917,-0.0090204142034054],[-0.030249798670411,-0.042840257287025,0.043340779840946],[-0.15101881325245,0.013639242388308,0.12721438705921]],[[-0.032785277813673,-0.012955205515027,-0.064931012690067],[0.058025266975164,0.10693106800318,0.14557430148125],[-0.12615869939327,-0.084626488387585,-0.058251272886992]],[[-0.096849918365479,-0.033023905009031,-0.074210360646248],[0.045085031539202,-0.081478595733643,-0.10532335937023],[-0.091520205140114,0.098625503480434,0.098734229803085]],[[-0.013342051766813,-0.0030377914663404,-0.092295974493027],[-0.041281051933765,0.067108765244484,-0.080742508172989],[-0.055021084845066,-0.019518487155437,-0.042742095887661]],[[0.013376543298364,0.10458358377218,0.02101925201714],[-0.18115741014481,-0.13309961557388,0.16441865265369],[0.16675481200218,0.11389547586441,0.13048905134201]],[[0.017771501094103,0.04558265581727,-0.0063385055400431],[0.19805324077606,-0.016992514953017,-0.018568836152554],[-0.11467079073191,-0.023860599845648,0.0099477414041758]],[[-0.042387783527374,-0.029539259150624,-0.10038010776043],[0.040121130645275,-0.061048943549395,-0.076189264655113],[-0.14846904575825,0.013111240230501,0.052594687789679]],[[0.009676500223577,-0.10299741476774,-0.006041266489774],[0.038822822272778,0.10127174109221,0.12023309618235],[0.035141289234161,0.17659488320351,0.10850842297077]],[[0.023137906566262,0.025693042203784,-0.073928482830524],[0.13507720828056,0.084565207362175,-0.11872299015522],[-0.03565289080143,-0.0021779180970043,-0.033278957009315]],[[-0.065760985016823,0.020701957866549,-0.000742745003663],[0.1385053396225,-0.043449375778437,-0.01186802983284],[-0.086781218647957,0.03990475460887,-0.0066670039668679]],[[-0.052680231630802,-0.014113396406174,0.0046967221423984],[-0.051426962018013,-0.022093288600445,-0.008677002042532],[-0.13226644694805,0.050279956310987,0.097042374312878]],[[0.03304410725832,-0.010504926554859,-0.056221187114716],[-0.014981862157583,0.027892267331481,-0.013156348839402],[0.021360039710999,-0.080045476555824,-0.10489095747471]],[[0.1371414065361,0.039121869951487,-0.085229441523552],[-0.14756777882576,-0.040979843586683,0.083423636853695],[0.025249850004911,0.059636157006025,0.061873033642769]]],[[[0.00077030737884343,-0.018779344856739,-0.059170968830585],[-0.017449241131544,-0.077773161232471,-0.060787416994572],[0.0087221264839172,0.071769811213017,0.032548513263464]],[[0.044338919222355,0.0012349981116131,-0.017756560817361],[0.083302594721317,0.015494244173169,0.019799306988716],[0.0030171968974173,-0.080101832747459,-0.17762659490108]],[[0.027278227731586,0.019909672439098,-0.0094166044145823],[-0.14662519097328,-0.097449325025082,-0.10152103751898],[-0.069767691195011,0.0053371130488813,0.061227954924107]],[[-0.087296314537525,0.0070114610716701,0.015701526775956],[-0.053705617785454,0.0043907929211855,0.017452513799071],[0.074702352285385,-0.097587443888187,-0.072085745632648]],[[-0.12324389070272,-0.17424054443836,-0.020768677815795],[-0.083829410374165,-0.022269262000918,-0.024447310715914],[0.11583243310452,-0.003691005287692,0.022102996706963]],[[-0.13538606464863,-0.1088177934289,0.085054263472557],[-0.041411977261305,-0.019809594377875,-0.075455710291862],[-0.080468751490116,-0.10378909111023,-0.045098435133696]],[[-0.13029605150223,-0.099514335393906,-0.054895780980587],[-0.17390334606171,-0.089398875832558,-0.0057943752035499],[-0.070795580744743,0.0035086537245661,0.077763497829437]],[[0.055648677051067,-0.038591433316469,0.047561790794134],[-0.09906017780304,0.014914179220796,-0.058952294290066],[0.24277102947235,0.013920478522778,-0.060996942222118]],[[-0.0012433661613613,0.038909263908863,-0.0073283789679408],[0.10237292200327,-0.069849207997322,-0.0034934422001243],[-0.0015297039644793,0.021486602723598,0.010433976538479]],[[0.054345719516277,0.039409745484591,0.060498621314764],[0.010076076723635,-0.040221095085144,0.075422845780849],[-0.27916419506073,0.017197512090206,-0.013259752653539]],[[-0.025542633607984,0.012526692822576,0.013482300564647],[0.05961012840271,-0.050225503742695,-0.13893455266953],[0.14088325202465,0.049575679004192,0.16684584319592]],[[-0.025758258998394,-0.050211552530527,-0.1250182390213],[0.034510131925344,-0.05452885851264,0.08137733489275],[0.0073148910887539,0.00475486041978,-0.08173805475235]],[[-0.08849324285984,0.0049966019578278,-0.035470552742481],[-0.11179485172033,0.02672072686255,0.02006471902132],[-0.057632125914097,0.03163443133235,0.010531428270042]],[[0.092569455504417,0.020280653610826,-0.076237760484219],[-0.010195322334766,-0.0071938424371183,-0.030298970639706],[-0.10624595731497,0.031345438212156,0.13380329310894]],[[-0.026872491464019,-0.029018353670835,0.076934948563576],[-0.0022648675367236,-0.032047599554062,-0.01760520413518],[-0.11763194948435,-0.066512912511826,0.0064089074730873]],[[0.078235767781734,0.064945340156555,-0.035493299365044],[-0.027816999703646,-0.030445175245404,-0.10087613016367],[-0.030479421839118,-0.049047537147999,0.036587201058865]],[[0.13790267705917,0.038997028023005,0.011588986031711],[-0.0093608368188143,-0.013714441098273,0.01841707713902],[0.060432769358158,-0.02440469712019,-0.016982374712825]],[[-0.042374044656754,-0.009818303398788,-0.15040098130703],[0.017605140805244,0.0047721834853292,-0.002692305482924],[0.05408001691103,0.054006960242987,0.075177371501923]],[[0.016800010576844,0.06711708009243,-0.062022741883993],[0.13391721248627,0.028867915272713,-0.069147981703281],[-0.27260330319405,0.00842828117311,0.095676846802235]],[[0.038572382181883,-0.1120508313179,-0.073414288461208],[-0.036766845732927,0.1021264269948,0.038917317986488],[-0.11168847978115,0.066261805593967,-0.077281132340431]],[[-0.013686683960259,-0.0008023057016544,0.025291159749031],[-0.22831650078297,-0.11071484535933,-0.19420129060745],[0.037519324570894,-0.041578151285648,-0.13279256224632]],[[-0.022500222548842,-0.090847358107567,0.092889852821827],[-0.074307702481747,-0.013137495145202,-0.0042733731679618],[0.008167133666575,-0.049927081912756,-0.012748601846397]],[[0.058966182172298,-0.027656404301524,0.0042542708106339],[-0.072214767336845,-0.054433297365904,0.0067248018458486],[0.027188915759325,-0.056854106485844,-0.047813542187214]],[[0.06206352263689,0.05659431964159,0.13707596063614],[0.18828345835209,-0.091675378382206,-0.082516491413116],[0.021240249276161,-0.029524954035878,0.047700971364975]],[[-0.03910019248724,-0.020322173833847,-0.05599994584918],[0.044234469532967,0.10329016298056,0.032458364963531],[-0.041598983108997,0.040203768759966,-0.013103854842484]],[[0.0065965577960014,-0.015077959746122,-0.004544738214463],[0.0088659143075347,-0.0092161502689123,-0.046920903027058],[0.093522556126118,0.045613501220942,-0.026690620929003]],[[-0.077196069061756,-0.13355319201946,-0.046621214598417],[-0.047883309423923,0.025035627186298,0.056892652064562],[0.0064803222194314,0.14091105759144,0.085147492587566]],[[-0.10910099744797,-0.075663097202778,-0.0070130117237568],[0.10521791130304,-0.074617251753807,0.037801899015903],[-0.1879820227623,-0.05956195294857,0.014371591620147]],[[-0.022172139957547,-0.031292155385017,0.028429942205548],[0.039643950760365,0.17075033485889,0.071815893054008],[-0.03401867672801,-0.04541140794754,-0.055254559963942]],[[0.068105541169643,0.093355543911457,0.017052894458175],[-0.12580180168152,0.005168464500457,0.14566077291965],[-0.12015350908041,-0.064055606722832,-0.02690969593823]],[[-0.084825694561005,-0.069518759846687,-0.17372624576092],[0.10436114668846,0.06828036904335,0.09223672747612],[-0.27743855118752,-0.090164177119732,0.075189724564552]],[[0.030638296157122,0.033181115984917,0.051985275000334],[0.1272883862257,0.049160502851009,0.066620767116547],[-0.037716664373875,0.058159757405519,-0.032978840172291]],[[-0.10748893767595,0.051210794597864,0.015208196826279],[-0.016775496304035,0.072876609861851,-0.00046576833119616],[-0.034159511327744,0.086782969534397,0.0027051831129938]],[[-0.077412456274033,-0.013699385337532,-0.089207097887993],[-0.11554628610611,-0.13224063813686,0.016429118812084],[-0.022516718134284,-0.15699276328087,0.010216089896858]],[[0.18360424041748,0.023405894637108,-0.046438984572887],[-0.22079308331013,0.030462477356195,0.079247035086155],[-0.017928233370185,0.15412454307079,-0.0064091100357473]],[[-0.079527780413628,-0.03706843405962,-0.02096088975668],[0.041984792798758,-0.0099535239860415,0.078008823096752],[0.11779805272818,0.09103661775589,0.15630333125591]],[[0.019611220806837,0.13523158431053,-0.018518757075071],[-0.072594240307808,0.038678470999002,0.10163028538227],[-0.14215493202209,0.071698129177094,-0.026485942304134]],[[0.12693683803082,-0.029323192313313,-0.022368622943759],[0.013262634165585,-0.086271852254868,-0.012605105526745],[-0.093099564313889,-0.10345178842545,-0.0029762759804726]],[[-0.19128961861134,-0.093535117805004,-0.029924156144261],[-0.00059948134003207,-0.095981068909168,-0.047947838902473],[0.014928649179637,-0.014963057823479,0.0098537458106875]],[[0.081858836114407,-0.089760974049568,-0.07494343817234],[-0.08260889351368,0.1710352152586,0.039998974651098],[0.018394846469164,0.034630488604307,0.058480385690928]],[[0.0195407923311,-0.03846275433898,-0.0075564268045127],[0.075596392154694,-0.0097982324659824,0.015553968027234],[0.093661203980446,0.10424852371216,-0.11727035790682]],[[-0.027086408808827,-0.092118322849274,-0.054161753505468],[-0.078188553452492,-0.020962471142411,-0.00029175158124417],[0.20306597650051,0.038718789815903,0.078642822802067]],[[0.010836425237358,0.029669618234038,0.032416857779026],[-0.020946094766259,0.0098343268036842,-0.033991698175669],[0.028941078111529,0.034190818667412,0.20557998120785]],[[0.058020945638418,-0.027316089719534,0.052463140338659],[0.041538380086422,0.026722673326731,-0.070161059498787],[-0.10120612382889,-0.047818761318922,-0.095389649271965]],[[-0.032886039465666,0.0031261758413166,0.035694386810064],[-0.055998187512159,-0.025140676647425,-0.045143935829401],[-0.038911305367947,-0.12055597454309,0.0095743108540773]],[[0.1278817653656,0.095902390778065,0.0064045591279864],[0.040303777903318,0.037638276815414,0.10993805527687],[0.036561395972967,-0.034064684063196,-0.053781602531672]],[[0.15795947611332,-0.01720567420125,-0.062577404081821],[-0.056086387485266,-0.036839917302132,0.11476913839579],[0.070567190647125,-0.053961180150509,-0.091312885284424]],[[-0.074373811483383,-0.11398790031672,-0.13131253421307],[-0.092071674764156,0.059659253805876,0.14495995640755],[-0.12239100784063,-0.16198302805424,-0.027957517653704]],[[-0.017100529745221,-0.039420306682587,0.0051435045897961],[0.02856701426208,0.013464742340147,-0.048646308481693],[-0.18118019402027,0.041036549955606,0.21479646861553]],[[0.088349588215351,0.12963223457336,0.18701060116291],[-0.10502260923386,0.017202869057655,-0.053004708141088],[-0.0082065034657717,0.014788193628192,0.11390045285225]],[[-0.032989922910929,-0.1911798864603,-0.072223179042339],[-0.022195247933269,0.035218540579081,0.13313663005829],[-0.032466527074575,-0.055564530193806,-0.054952565580606]],[[0.056190848350525,-0.0072433724999428,-0.079708196222782],[-0.010297161526978,-0.043284106999636,-0.089464224874973],[0.19985215365887,0.16837711632252,0.027131324633956]],[[-0.021820137277246,0.070847675204277,0.1089673936367],[-0.043813139200211,-0.053392488509417,-0.014343222603202],[-0.14724087715149,-0.0097934724763036,0.10545026510954]],[[-0.019454060122371,0.01287311501801,0.18451172113419],[0.047357469797134,-0.00099895184393972,0.054438825696707],[0.045466832816601,-0.0040439520962536,-0.1856052428484]],[[-0.047294747084379,-0.030936753377318,-0.071754202246666],[-0.015324458479881,-0.033210646361113,-0.026138102635741],[0.088232442736626,0.1399657279253,0.078942030668259]],[[0.0759097635746,-0.049143262207508,-0.15078610181808],[-0.10779729485512,0.072291925549507,0.094120167195797],[0.1393576413393,0.083609201014042,-0.046045452356339]],[[0.043577402830124,0.14439111948013,0.069520801305771],[-0.022705035284162,-0.042455550283194,-0.039188835769892],[-0.029294112697244,0.040708556771278,-0.064640149474144]],[[-0.072109043598175,0.080515690147877,0.13048724830151],[0.036841459572315,0.01355439517647,0.031828921288252],[0.034837730228901,0.074785232543945,-0.092234015464783]],[[0.12573604285717,0.09727168828249,0.15762260556221],[0.095906145870686,0.080542989075184,0.019951758906245],[-0.0079949712380767,0.075434476137161,0.013530272059143]],[[-0.010459958575666,0.027009841054678,0.18705508112907],[-0.053004827350378,-0.053007643669844,0.062114104628563],[-0.01946865953505,0.11089906841516,-0.048846337944269]],[[-0.10048864036798,-0.10109453648329,-0.15414486825466],[-0.066413752734661,0.041282750666142,0.084374576807022],[0.06083757057786,-0.027276435866952,-0.04301556199789]],[[-0.090322270989418,-0.0047781774774194,0.047174781560898],[-0.013879640027881,0.091713510453701,-0.078816950321198],[-0.065535180270672,-0.11883377283812,-0.13484592735767]],[[-0.024893909692764,-0.012223645113409,0.00060542381834239],[-0.052558224648237,0.038417477160692,0.089578822255135],[0.0019592205062509,0.010050299577415,0.10008261352777]],[[0.14815431833267,0.15470997989178,0.021610703319311],[-0.15293557941914,-0.05788816139102,-0.11614249646664],[-0.13070291280746,0.034691464155912,-0.12767323851585]]],[[[0.024574004113674,-0.036782819777727,-0.09127851575613],[-0.090268172323704,-0.029894646257162,-0.09464704990387],[-0.078184813261032,-0.0086814071983099,0.071675159037113]],[[-0.086119443178177,-0.0071138758212328,-0.059930581599474],[0.013486720621586,-0.15420331060886,-0.027499241754413],[-0.043308101594448,-0.061558861285448,0.055803894996643]],[[0.016120823100209,0.047365605831146,0.026170920580626],[-0.11885990202427,-0.031887155026197,-0.0047056344337761],[-0.045524168759584,0.045396439731121,0.058626443147659]],[[-0.042360037565231,0.14049042761326,-0.11070412397385],[0.089799582958221,-0.0066466419957578,-0.032553397119045],[0.069809794425964,-0.052235774695873,-0.063035815954208]],[[-0.066303938627243,-0.015451306477189,-0.10203973203897],[-0.067543432116508,-0.054746650159359,-0.050548702478409],[-0.034918736666441,-0.053655415773392,-0.013713885098696]],[[-0.060691900551319,-0.084930129349232,-0.14282627403736],[0.022502196952701,-0.00034715791116469,0.052777942270041],[0.026311485096812,0.010951749049127,0.040408466011286]],[[-0.087020993232727,0.019193295389414,-0.13481557369232],[-0.061909042298794,-0.023178389295936,-0.054968815296888],[-0.042040806263685,0.00052582228090614,-0.11193916201591]],[[0.012154385447502,-0.07792204618454,0.071236416697502],[-0.027325134724379,0.026769047603011,0.077742762863636],[-0.022261399775743,0.086510084569454,-0.036597218364477]],[[0.050726030021906,0.02638242021203,0.010140563361347],[0.023274246603251,0.064831010997295,-0.070672243833542],[0.098725080490112,-0.10167167335749,0.043961122632027]],[[0.1058230176568,-0.060850139707327,-0.085647657513618],[0.11113487184048,-0.015998037531972,-0.0065866359509528],[0.059369914233685,0.080084957182407,0.056738458573818]],[[0.0021231947466731,0.016805535182357,-0.13327594101429],[0.041189916431904,-0.070030391216278,-0.17996327579021],[-0.017987353727221,-0.064684964716434,0.068375580012798]],[[-0.09568177908659,0.043442420661449,-0.01569938659668],[-0.19258792698383,-0.093667671084404,-0.11489599943161],[-0.014950582757592,-0.08482114225626,-0.020081035792828]],[[-0.297906935215,-0.080349206924438,-0.14274370670319],[0.075786665081978,-0.02431770041585,-0.11364535987377],[0.04991053789854,0.0014278901508078,-0.02956323698163]],[[-0.068082988262177,0.035508036613464,-0.2075285166502],[-0.039124768227339,-0.062751807272434,0.061658874154091],[0.15536618232727,0.15501165390015,0.029242305085063]],[[0.011822166852653,0.04393008351326,-0.021535711362958],[-0.027683494612575,-0.033875215798616,0.0038266438059509],[0.046731971204281,0.086595766246319,-0.016345467418432]],[[0.021113004535437,0.014209833927453,-0.076897092163563],[0.092482663691044,-0.05669903755188,-0.21004396677017],[-0.062444776296616,-0.10225881636143,-0.025613632053137]],[[-0.098531723022461,-0.00809555221349,-0.0092252604663372],[0.044031109660864,0.055888704955578,-0.021614344790578],[0.12948930263519,0.016632054001093,0.049231082201004]],[[-0.086727559566498,-0.082430623471737,0.077412523329258],[0.035211835056543,0.050672456622124,-0.11393967270851],[-0.29358500242233,0.10575647652149,0.0046246787533164]],[[0.0089905243366957,-0.0075703365728259,0.070229776203632],[0.01603183336556,-0.023352086544037,-0.0075914459303021],[-0.14368483424187,-0.07084147632122,-0.077939867973328]],[[-0.046600107103586,-0.021840212866664,0.0958112180233],[0.015479686670005,0.13423547148705,-0.16268029808998],[-0.10924860835075,-0.047968856990337,-0.048456531018019]],[[-0.018239628523588,-0.097969703376293,-0.057195998728275],[-0.032387517392635,0.05093302205205,-0.029557012021542],[0.12321121990681,0.034760739654303,0.16919159889221]],[[0.0075854226015508,0.072146363556385,0.027324460446835],[-0.010853766463697,0.046993024647236,-0.025259517133236],[-0.090118944644928,0.030784510076046,-0.12955190241337]],[[-0.054311834275723,-0.0035002022050321,0.065422579646111],[-0.10127393901348,0.028754623606801,-0.0099235055968165],[-0.032947335392237,-0.016888193786144,-0.063891239464283]],[[-0.047286208719015,0.083795107901096,0.073866941034794],[0.072664804756641,0.038802348077297,-0.019851095974445],[-0.0087167071178555,0.10184314101934,0.12189090996981]],[[0.061439484357834,0.10579226911068,0.22624929249287],[0.15880151093006,0.060460768640041,0.028861852362752],[0.0079563576728106,0.092283234000206,0.054187044501305]],[[0.036659736186266,-0.044580370187759,-0.050426885485649],[0.026318121701479,-0.0060225017368793,-0.057006690651178],[0.037401407957077,-0.0057282517664135,0.034309756010771]],[[0.013866442255676,0.096678994596004,0.044352360069752],[-0.12966185808182,0.0039447918534279,0.090076230466366],[-0.15199436247349,0.1166780218482,-0.069078385829926]],[[-0.047781080007553,-0.1628473252058,0.1247535571456],[-0.02352955378592,-0.093682654201984,0.025486953556538],[-0.11226215213537,-0.055548317730427,0.11159970611334]],[[-0.18937675654888,-0.10653481632471,0.0078591154888272],[-0.039780724793673,0.0016640208195895,0.062177248299122],[-0.044525679200888,0.03947788476944,-0.0040828841738403]],[[-0.012374675832689,0.05719355493784,-0.011643609032035],[0.0242835059762,-0.093129798769951,-0.0031871625687927],[0.049063794314861,0.090920001268387,-0.023488998413086]],[[-0.056700382381678,-0.15323404967785,0.050021391361952],[-0.021593986079097,-0.046469800174236,0.01280776783824],[-0.031679172068834,0.0025260150432587,0.022547792643309]],[[-0.054216787219048,0.039863474667072,-0.017135271802545],[0.018046425655484,0.041632052510977,0.093026727437973],[0.059049375355244,0.010360701009631,0.22421815991402]],[[0.048631805926561,0.045658189803362,-0.04002446308732],[-0.0079439049586654,0.068970866501331,-0.014018746092916],[-0.0039019742980599,-0.014183077029884,0.10666155815125]],[[0.036893580108881,-0.021766178309917,0.085796684026718],[-0.042691361159086,-0.0034248945303261,0.042403876781464],[-0.064043588936329,-0.0029242718592286,0.031161747872829]],[[0.016608042642474,0.033317245543003,-0.061958953738213],[0.04448801651597,-0.012833910994232,-0.06976580619812],[0.060343764722347,-0.046926446259022,-0.19828909635544]],[[0.071974210441113,0.087636783719063,0.083839304745197],[-0.039087105542421,0.014017627574503,0.080560766160488],[0.018168278038502,-0.033129092305899,-0.057306420058012]],[[-0.14997465908527,-0.11980094015598,-0.046491850167513],[-0.056868273764849,0.028344858437777,0.032488100230694],[0.176678404212,0.14511415362358,-0.043218500912189]],[[0.071991130709648,0.0053294966928661,-0.038818094879389],[-0.1032248288393,0.073619551956654,0.01300173252821],[-0.10202422738075,0.056035216897726,-0.017612477764487]],[[-0.093240320682526,0.080292053520679,0.1327477991581],[0.0057697216980159,-0.031709279865026,0.093925945460796],[-0.025388734415174,-0.001217320561409,-0.027392651885748]],[[-0.05305340886116,-0.0038936943747103,-0.03523138910532],[-0.041680335998535,0.038251589983702,-0.0065282955765724],[-0.0075090569444001,0.036717280745506,0.011278283782303]],[[0.075330071151257,-0.022529853507876,-0.034175951033831],[0.017527613788843,0.021284140646458,-0.11056051403284],[-0.036998655647039,0.15645329654217,0.0079370113089681]],[[-0.068758644163609,-0.048545502126217,0.02979402244091],[-0.10578206181526,-0.011118549853563,-0.025207350030541],[0.078176729381084,-0.046017535030842,0.038297653198242]],[[-0.051457069814205,-0.021758833900094,0.045430436730385],[-0.028663385659456,0.053778331726789,0.019952377304435],[-0.020195098593831,-0.084131434559822,0.007587383966893]],[[0.039197187870741,-0.081534951925278,-0.15157467126846],[-0.081134684383869,0.084963902831078,-0.05530696734786],[0.0076917326077819,-0.061390187591314,-0.069441370666027]],[[-0.019574942067266,0.074342586100101,0.13316136598587],[0.21966205537319,-0.1057513281703,-0.13636185228825],[0.091807886958122,-0.036188740283251,0.013558398000896]],[[-0.044423542916775,-0.051379833370447,0.10546058416367],[0.021160926669836,-0.11149434000254,-0.014069896191359],[0.029569987207651,0.014883860945702,0.012467699125409]],[[0.12598745524883,0.019758371636271,0.15008151531219],[0.076125703752041,0.010679944418371,0.0013559779617935],[-0.019547475501895,-0.089945502579212,-0.0080672781914473]],[[0.067736372351646,-0.064364567399025,0.062169451266527],[-0.14952106773853,0.028713718056679,-0.010858541354537],[0.089180417358875,0.025392543524504,-0.090827494859695]],[[-0.091416269540787,0.074238240718842,0.017391132190824],[0.018331388011575,-0.033299751579762,-0.017199972644448],[0.0081050340086222,-0.033200886100531,0.01755160652101]],[[-0.011675833724439,0.036381315439939,-0.064115419983864],[-0.12264925986528,-0.057812809944153,0.012494024820626],[-0.062696687877178,-0.11562632024288,0.10723548382521]],[[0.061923086643219,0.049150973558426,-0.057939574122429],[0.037859007716179,0.023074213415384,0.020163085311651],[0.17832726240158,0.0020075512584299,-0.050995539873838]],[[-0.030813472345471,0.065271750092506,-0.076162748038769],[0.04364925250411,-0.0060728238895535,-0.0091825686395168],[-0.11409229785204,0.11131057888269,0.07764657586813]],[[-0.15137629210949,-0.033870410174131,-0.17916226387024],[-0.067396730184555,0.0081453211605549,-0.033186051994562],[-0.13586848974228,0.020643413066864,0.051498960703611]],[[0.058017123490572,0.027694337069988,1.1219326552236e-06],[0.018007442355156,0.013356977142394,0.061834692955017],[0.10591499507427,-0.15227492153645,-0.029832188040018]],[[0.029734680429101,0.055255934596062,-0.030947482213378],[-0.049108274281025,-0.052409391850233,0.011524518020451],[0.058485083281994,0.056090530008078,-0.045301742851734]],[[0.13344010710716,-0.12393997609615,-0.049743846058846],[0.0019794825930148,-0.0039921817369759,0.041807290166616],[-0.092505849897861,0.091351822018623,-0.23221507668495]],[[0.053389217704535,0.068412512540817,-0.10705828666687],[0.12040603160858,-0.030394887551665,-0.071931213140488],[0.076496496796608,0.0031250498723239,0.0067058568820357]],[[0.046538319438696,0.022758450359106,-0.01852392219007],[-0.15570546686649,-0.03137157484889,-0.036500498652458],[-0.023974198848009,-0.0039125811308622,-0.078523993492126]],[[-0.044365055859089,0.036817137151957,-0.0066851815208793],[-0.059807203710079,0.087867006659508,-0.013376401737332],[0.072385273873806,0.058306720107794,0.093442365527153]],[[-0.031395714730024,-0.03478741645813,-0.10651407390833],[0.029524719342589,0.059124708175659,0.024709846824408],[-0.090829186141491,-0.08103484660387,0.034245118498802]],[[-0.11025284230709,0.040941823273897,-0.017478158697486],[-0.010089349932969,-0.020955540239811,0.028699183836579],[0.016666397452354,0.012628881260753,-0.090230621397495]],[[-0.017071168869734,-0.15610933303833,0.027912758290768],[-0.068831786513329,0.021945243701339,-0.002807849785313],[0.15957401692867,0.12004718929529,0.058519713580608]],[[-0.10256057232618,-0.016749940812588,-0.023156790062785],[-0.035068932920694,-0.0072237616404891,-0.047394625842571],[0.07084034383297,0.010015610605478,-0.0018831406487152]],[[0.052970446646214,-0.076369777321815,-0.067675173282623],[0.019218690693378,0.043836984783411,0.068299517035484],[-0.021571082994342,0.11650856584311,0.0038009870331734]]],[[[0.024027962237597,0.049647364765406,0.025608776137233],[-0.0036859817337245,-0.052195511758327,-0.015004010871053],[-0.069206431508064,0.0061777727678418,0.036649491637945]],[[-0.096964374184608,-0.049660459160805,0.015353473834693],[0.042476154863834,-0.062342885881662,-0.059210170060396],[0.079032719135284,-0.060106821358204,0.055812202394009]],[[-0.027955668047071,-0.027700144797564,-0.087099030613899],[-0.02411469630897,0.056038949638605,0.026336902752519],[-0.026394890621305,-0.10013445466757,-0.0038158397655934]],[[-0.086837105453014,-0.0161137804389,-0.051348317414522],[0.027588896453381,-0.001266879378818,0.0075098681263626],[0.060715429484844,-0.02889883518219,0.028248619288206]],[[-0.021166866645217,-0.056640014052391,-0.050868783146143],[-0.015090587548912,-0.081242077052593,-0.052073251456022],[-0.12283319979906,-0.0040501924231648,-0.071210309863091]],[[-0.027833936735988,-0.036378018558025,0.044441465288401],[0.014927243813872,-0.033050894737244,-0.010262883268297],[-0.056044206023216,-0.075861804187298,-0.021134339272976]],[[-0.10953091084957,-0.092316173017025,-0.00045738805783913],[0.067740358412266,-0.0075486893765628,0.0057593663223088],[-0.045366425067186,0.084202446043491,0.079664789140224]],[[-0.11899420619011,0.014966266229749,-0.025761565193534],[-0.086571969091892,-0.1062553152442,-0.0015176135348156],[0.050788845866919,0.0079232379794121,0.11933460831642]],[[-0.098924741148949,-0.029126588255167,0.066696241497993],[0.019245041534305,-0.024308232590556,-0.0801932066679],[-0.026132335886359,0.036649275571108,-0.040058672428131]],[[0.014057073742151,0.014635774306953,-0.081309534609318],[0.0033998021390289,-0.043577909469604,0.092578455805779],[0.094916805624962,0.013123276643455,0.1106781065464]],[[0.080533429980278,-0.033273741602898,0.1117305457592],[-0.0066989371553063,-0.088962510228157,-0.060259234160185],[-0.067401453852654,0.032781135290861,-0.03578408062458]],[[-0.074807688593864,-0.1526175737381,0.0012049198849127],[-0.00068783451570198,-0.058641448616982,0.034438651055098],[-0.025095926597714,-0.047837059944868,-0.20624850690365]],[[0.064948238432407,-0.050175134092569,-0.039167430251837],[-0.055699791759253,0.059042755514383,-0.1021092236042],[0.047210998833179,-0.041983596980572,-0.0047279316931963]],[[0.033567521721125,-0.15459720790386,-0.16147826611996],[0.073780238628387,-0.026738239452243,0.021575367078185],[0.03171369805932,0.041229836642742,0.016338290646672]],[[-0.03098463639617,-0.046098198741674,-0.12051464617252],[-0.019294407218695,-0.1022791415453,0.036093182861805],[0.068282008171082,-0.018550014123321,0.042897675186396]],[[-0.02109313942492,-0.045438040047884,-0.10659454762936],[-0.075223125517368,0.036667767912149,0.042642813175917],[-0.0095243016257882,-0.11035528033972,-0.034784462302923]],[[-0.078114189207554,-0.18338362872601,-0.033143162727356],[0.071230508387089,-0.021066147834063,-0.019119866192341],[0.0062183486297727,0.10077053308487,0.032498028129339]],[[-0.076697304844856,-0.002721190918237,0.019710829481483],[0.11414655297995,0.017948940396309,-0.078929826617241],[0.034704267978668,-0.0021675424650311,0.027009125798941]],[[-0.023630296811461,-0.075892046093941,-0.039297606796026],[-0.034084916114807,-0.14893752336502,-0.020291429013014],[-0.035311214625835,-0.000879182072822,-0.026968449354172]],[[-0.064518608152866,-0.017825685441494,-0.10679160803556],[0.046082984656096,-0.080352582037449,-0.059082195162773],[0.035262115299702,0.030895791947842,-0.031449802219868]],[[0.022093767300248,-0.082206696271896,0.034992806613445],[0.014794060960412,0.054647345095873,0.051951516419649],[0.12211498618126,0.11779879033566,0.033605333417654]],[[0.018875217065215,-0.011510568670928,0.020597713068128],[0.011610768735409,0.019065037369728,-0.080244332551956],[-0.1069982945919,0.022631382569671,0.0012720129452646]],[[0.076998390257359,-0.026361456140876,-0.044781479984522],[-0.084797687828541,-0.053668737411499,-0.058389972895384],[-0.083222225308418,-0.094161845743656,0.0076549616642296]],[[-0.041400387883186,0.12900578975677,-0.052123002707958],[0.12425320595503,0.0066977059468627,0.045633103698492],[0.13480038940907,-0.039138071238995,0.11577656120062]],[[-0.014918651431799,-0.014826187863946,-0.15414518117905],[0.18719793856144,-0.0013688041362911,0.024073082953691],[0.029826080426574,-0.017021594569087,-0.12398935854435]],[[-0.080928690731525,-0.058856528252363,0.026584826409817],[0.018077999353409,-0.035233050584793,-0.00011001407983713],[0.046755779534578,0.013332285918295,0.044940385967493]],[[0.013312583789229,0.078910514712334,-0.078153684735298],[-0.10316438227892,0.079052485525608,7.5497257057577e-05],[0.0012415766250342,0.013156222179532,0.16209256649017]],[[-0.10672981292009,0.06090933829546,-0.13038767874241],[-0.013213974423707,0.13994456827641,-0.16030882298946],[-0.054527640342712,0.091847583651543,0.025287006050348]],[[-0.13409903645515,0.018871027976274,-0.035075828433037],[0.067580282688141,-0.13988469541073,-0.040029812604189],[0.16033425927162,0.18446499109268,-0.035558946430683]],[[0.023091463372111,-0.0464076846838,-0.057358384132385],[-0.075979895889759,0.051822114735842,0.0038779028691351],[-0.10280016064644,-0.15801502764225,0.15547455847263]],[[0.042241126298904,-0.035021897405386,-0.015613147988915],[0.025522999465466,0.056388445198536,0.019259618595243],[-0.090891219675541,0.064626380801201,0.039175722748041]],[[0.014064233750105,0.021097065880895,-0.046988967806101],[0.079150713980198,0.0030837506055832,0.046002455055714],[0.014463925734162,-0.055489622056484,0.097985699772835]],[[-0.10280890762806,-0.094320796430111,0.072999410331249],[0.10536998510361,0.093405529856682,0.068158447742462],[0.050596043467522,0.11489928513765,0.11265766620636]],[[0.033980090171099,0.094185680150986,0.031383734196424],[-0.083712548017502,-0.0021588110830635,0.0090254126116633],[-0.03922588378191,-0.090649999678135,-0.0053217178210616]],[[-0.057530552148819,-0.063538648188114,-0.031768273562193],[-0.080026753246784,-0.1353186070919,-0.056437209248543],[0.020003529265523,-0.089302755892277,0.15341797471046]],[[0.0041667139157653,-0.003144929651171,0.061593875288963],[-0.057523120194674,0.0010966449044645,-0.082900680601597],[-0.078964412212372,0.044077541679144,0.14595110714436]],[[0.038859698921442,-0.0084724398329854,-0.080707460641861],[0.11207264661789,0.13573141396046,-0.002811721060425],[-0.17963214218616,0.14190328121185,-0.087122544646263]],[[-0.0058162943460047,-0.026275679469109,0.055485624819994],[-0.031132202595472,-0.088034853339195,-0.075107112526894],[-0.034069880843163,0.026186559349298,-0.073612853884697]],[[0.006416916847229,-0.20961701869965,-0.13203711807728],[0.0022134995087981,0.0073603470809758,-0.064002364873886],[-0.058239180594683,0.047230180352926,0.062496963888407]],[[-0.067546524107456,-0.0103177158162,-0.082609854638577],[-0.033146899193525,-0.020411942154169,-0.0028260361868888],[0.12343369424343,0.13051794469357,-0.026354851201177]],[[-0.034636434167624,-0.066030621528625,0.064960569143295],[-0.012899198569357,0.016839724034071,0.11710251122713],[-0.070068724453449,-0.087069794535637,-0.08496655523777]],[[-0.088247917592525,-0.062341205775738,-0.0679080337286],[-0.014661254361272,-0.038471031934023,-0.076426364481449],[0.086153127253056,-0.061146274209023,0.04088432341814]],[[0.06836224347353,-0.053571939468384,-0.030260669067502],[-0.010737125761807,-0.067904390394688,0.0020862789824605],[-0.060422413051128,-0.10362701117992,-0.17116498947144]],[[-0.047700587660074,-0.030199313536286,0.13967382907867],[0.09525641053915,0.10088912397623,-0.03835853561759],[0.062297601252794,0.068707495927811,0.22746096551418]],[[-0.034473966807127,0.068978890776634,-0.1020652204752],[0.15758922696114,0.024941140785813,-0.034239541739225],[0.15088029205799,-0.038719240576029,-0.0652085095644]],[[-0.017559681087732,-0.027021065354347,-0.084710158407688],[-0.066801778972149,-0.033951062709093,-0.094392843544483],[-0.062575921416283,0.043252397328615,0.04303415119648]],[[0.028123825788498,0.088064469397068,-0.0090318312868476],[-0.18681153655052,-0.069874607026577,-0.063241340219975],[-0.056620292365551,0.078449130058289,0.05853708460927]],[[-0.057775299996138,-0.063194371759892,-0.072532907128334],[0.022454619407654,-0.073140799999237,0.032853610813618],[-0.017560739070177,-0.077595129609108,-0.010111437179148]],[[-0.233741953969,-0.0039546303451061,0.019751520827413],[0.03200251609087,-0.049449410289526,-0.014279738068581],[-0.034712068736553,-0.055415671318769,-0.11234325915575]],[[-0.050111878663301,-0.095258265733719,-0.018766222521663],[0.048546127974987,-0.12801755964756,-0.0029702184256166],[0.074492827057838,-0.14840975403786,-0.15631540119648]],[[0.23601059615612,-0.13596986234188,-0.053004462271929],[0.034092053771019,0.066042609512806,0.074177198112011],[-0.22911529242992,0.093321427702904,-0.044518332928419]],[[-0.014056702144444,-0.067914910614491,0.0086455587297678],[-0.057165686041117,0.065874613821507,0.12885585427284],[0.010447615757585,0.066016480326653,0.064956799149513]],[[0.089890390634537,-0.049509800970554,0.060830265283585],[-0.025080628693104,-0.097631342709064,0.039590060710907],[-0.015701450407505,-0.15029141306877,-0.026352617889643]],[[0.092545531690121,0.04750669375062,-0.025478353723884],[0.00022693585196976,0.034424237906933,-0.097795784473419],[0.0024573819246143,-0.073718838393688,0.04120197147131]],[[0.0052049020305276,-0.002258509863168,0.061709139496088],[-0.042181558907032,0.1156912073493,-0.16815754771233],[-0.079892888665199,-0.07227611541748,-0.11215227097273]],[[0.037055216729641,-0.048111103475094,-0.061151009052992],[0.037812508642673,-0.20039786398411,0.18040481209755],[0.16050566732883,-0.053186561912298,0.083576552569866]],[[0.063773900270462,-0.057361356914043,-0.036106172949076],[0.081897102296352,-0.1294521689415,0.025530010461807],[0.09974180161953,0.053354885429144,-0.050288364291191]],[[-0.077859945595264,-0.11757420003414,0.078640878200531],[-0.0022030994296074,-0.0031904075294733,-0.07916047424078],[-0.00696941325441,0.011838411912322,-0.036724932491779]],[[0.031163530424237,0.031474441289902,0.044622082263231],[0.067438222467899,0.06249725818634,0.052379865199327],[0.066808387637138,0.023221276700497,-0.0068709789775312]],[[0.061595533043146,-0.057975817471743,0.16143783926964],[-0.15305061638355,0.045642528682947,-0.12912099063396],[-0.11506539583206,-0.085874773561954,0.11989611387253]],[[-0.0093583557754755,-0.10205785185099,-0.076156549155712],[0.068604737520218,0.011178095825016,-0.0021483516320586],[-0.079350180923939,-0.071743406355381,0.17086587846279]],[[-0.10839089751244,0.034820433706045,-0.023880835622549],[-0.086203075945377,0.011831574141979,0.1146979033947],[0.035460982471704,-0.10989794135094,0.035022467374802]],[[0.026193218305707,-0.062518984079361,-0.0095109939575195],[0.091964967548847,0.011302963830531,-0.059524051845074],[0.0068352059461176,0.18852593004704,0.19722485542297]],[[-0.029160019010305,-0.1820922344923,-0.12857097387314],[-0.039846211671829,0.11071169376373,-0.027821099385619],[0.016733912751079,-0.061196271330118,0.04599117860198]]],[[[0.0026255429256707,-0.010698551312089,0.0038285963237286],[-0.024125499650836,-0.035127401351929,0.03490224853158],[-0.028168329969049,0.014147745445371,0.039115075021982]],[[0.026381997391582,0.0095335626974702,0.083512417972088],[-0.15372253954411,-0.044771298766136,-0.14118593931198],[-0.097869709134102,0.05528462678194,0.08097568154335]],[[-0.10070715099573,0.016435176134109,-0.098371013998985],[0.0082366922870278,0.032458927482367,-0.075485907495022],[-0.054400503635406,0.014877181500196,0.061341021209955]],[[-0.055563349276781,0.071146659553051,-0.070919573307037],[-0.026222614571452,-0.11833135038614,-0.022023120895028],[-0.015825575217605,0.067044228315353,0.097015373408794]],[[-0.029633719474077,0.027813648805022,-0.020044934004545],[-0.0030855175573379,-0.06520264595747,0.051624663174152],[-0.010078756138682,0.1134831905365,-0.00075404410017654]],[[-0.035597708076239,-0.042401131242514,-0.20377622544765],[-0.0023873194586486,-0.094426825642586,0.0035616564564407],[-0.10545402765274,0.062341906130314,0.02480954490602]],[[-0.036598648875952,-0.023336239159107,-0.097361907362938],[-0.16324345767498,-0.24402453005314,0.009525335393846],[0.13556399941444,-0.042152084410191,0.065068073570728]],[[0.096122480928898,0.14955760538578,0.095838330686092],[-0.16359555721283,-0.14955405890942,-0.046996846795082],[-0.00037599290953949,0.024886153638363,-0.11145966500044]],[[-0.005055426619947,-0.01915792003274,0.052892740815878],[-0.050590217113495,0.012189094908535,-0.066148802638054],[0.10825479775667,-0.056152645498514,0.095118410885334]],[[0.01710651256144,-0.049713511019945,0.043354600667953],[-0.026163551956415,0.029195919632912,0.017832888290286],[0.0096171740442514,-0.094771102070808,-0.059013765305281]],[[0.0028919405303895,0.20334841310978,-0.048154652118683],[-0.052949048578739,-0.066870786249638,-0.016071369871497],[-0.074658550322056,-0.12007858604193,0.013441370800138]],[[-0.024544354528189,-0.11731498688459,-0.057907860726118],[-0.0017250721575692,0.01385342516005,0.015384783037007],[0.025220246985555,-0.050699334591627,-0.098040595650673]],[[-0.040438387542963,0.023260429501534,0.098071396350861],[0.077127389609814,-0.055434510111809,-0.047910280525684],[0.023046217858791,0.062366038560867,-0.10875868052244]],[[0.078575633466244,0.046291187405586,0.072425954043865],[-0.048793755471706,-0.0010979821672663,-0.020180702209473],[-0.033294510096312,0.015146666206419,-0.052914254367352]],[[-0.004477197304368,-0.016410902142525,0.13933888077736],[-0.10739225894213,0.098314747214317,-0.20459346473217],[-0.066117964684963,-0.033210683614016,0.079186588525772]],[[-0.079268254339695,-0.098244607448578,-0.13420397043228],[-0.0083078816533089,-0.037421889603138,0.037790238857269],[0.040008682757616,0.078946456313133,0.012889614328742]],[[0.0076609291136265,-0.15370847284794,-0.0050036646425724],[-0.071887359023094,0.0054379738867283,-0.020446518436074],[0.015720518305898,-0.10467290133238,0.011423828080297]],[[-0.0086975134909153,-0.059747245162725,-0.10325196385384],[-0.040288433432579,-0.030584681779146,-0.10455945134163],[-0.015698870643973,0.0049060843884945,-0.022671669721603]],[[-0.043569721281528,0.026812832802534,-0.058594360947609],[0.033188376575708,-0.038602937012911,0.028065409511328],[0.020282594487071,-0.0081692561507225,0.053004641085863]],[[-0.051518201828003,-0.10930601507425,-0.12159062176943],[0.050551500171423,-0.080183103680611,0.042847760021687],[0.085181221365929,0.064483597874641,-0.10773913562298]],[[-0.12308470904827,0.026937685906887,0.077247604727745],[0.11990136653185,-0.036157839000225,-0.080224819481373],[0.15474009513855,0.031938631087542,0.10472840815783]],[[0.03557462990284,-0.026239637285471,0.057545941323042],[-0.10122616589069,-0.095400616526604,-0.13090772926807],[0.054491341114044,0.037661451846361,0.032275825738907]],[[-0.057137154042721,-0.0059899650514126,-0.080724216997623],[-0.019720194861293,0.072338744997978,0.068260967731476],[-0.077955722808838,-0.036088805645704,-0.047658737748861]],[[0.061672307550907,0.094694651663303,-0.26806995272636],[-0.0083677275106311,-0.11697146296501,-0.020726533606648],[-0.065552800893784,0.075281985104084,0.0078392485156655]],[[-0.084975905716419,0.11004024744034,0.14002560079098],[0.082177065312862,0.0094005418941379,0.073366463184357],[2.3250600861502e-05,0.026804758235812,-0.042014129459858]],[[0.0262187756598,0.0026421537622809,0.023787051439285],[-0.0029895531479269,-0.0029618164990097,0.069949768483639],[-0.061708766967058,-0.070844069123268,-0.03086743876338]],[[-0.071986541152,-0.11052448302507,0.0015320776728913],[-0.093228302896023,-0.17023004591465,-0.048198089003563],[0.038777131587267,0.054089866578579,0.084233783185482]],[[-0.12919199466705,-0.11976856738329,-0.006890696939081],[0.070948407053947,-0.078785255551338,-0.030489657074213],[-0.045685898512602,0.089917130768299,-0.043927531689405]],[[0.022498652338982,0.029780717566609,0.038016531616449],[0.029152853414416,-0.069331936538219,-0.1373193114996],[0.097412787377834,-0.013100589625537,-0.037474613636732]],[[-0.041445165872574,-0.067419767379761,0.034804537892342],[-0.10991560667753,-0.053445119410753,-0.058628786355257],[0.1088404878974,-0.034783255308867,0.027985461056232]],[[0.027075285091996,0.0798100233078,-0.024159424006939],[0.093715585768223,-0.05192581936717,-0.081879392266273],[-0.11494764685631,0.030514726415277,-0.054733388125896]],[[0.026677707210183,0.11556431651115,-0.040368836373091],[0.080603986978531,0.089436799287796,-0.02051187120378],[-0.045180540531874,-0.073431856930256,0.031230665743351]],[[0.18204835057259,0.0061855143867433,0.13241501152515],[-0.11265011876822,-0.075886987149715,-0.062764674425125],[0.092593722045422,-0.076507285237312,-0.050106164067984]],[[0.040127940475941,-0.016553597524762,-0.11654683202505],[0.0086640603840351,0.0015811459161341,0.1374431848526],[0.048862092196941,-0.054579943418503,-0.041267458349466]],[[-0.035027973353863,0.057627335190773,-0.13637743890285],[-0.062996000051498,-0.090768612921238,0.016654741019011],[-0.019129937514663,0.15688733756542,-0.0011057062074542]],[[0.031921271234751,0.018100036308169,0.15818959474564],[0.022607494145632,0.047048918902874,0.056058216840029],[0.04574766382575,-0.015530173666775,-0.034966383129358]],[[0.069785974919796,-0.081596091389656,0.17312407493591],[-0.050175432115793,0.13640783727169,0.066284582018852],[-0.064136363565922,-0.071689397096634,0.025588197633624]],[[-0.10477264225483,0.029042666777968,-0.072730727493763],[-0.14796912670135,-0.039393909275532,-0.09177953004837],[-0.02378461509943,0.029875488951802,-0.00264274305664]],[[-0.079978503286839,-0.11171531677246,-0.060802843421698],[0.11008583754301,0.12355021387339,0.075255066156387],[-0.17655773460865,-0.098821826279163,-0.23797339200974]],[[-0.02796615101397,-0.0030508325435221,0.13552759587765],[0.031908981502056,-0.0014779346529394,0.020003443583846],[0.059733662754297,-0.017297837883234,-0.023965602740645]],[[0.07201837003231,-0.025279995054007,0.069066271185875],[-0.047719340771437,-0.051538400352001,-0.1440791785717],[-0.033863164484501,-0.0096365548670292,0.15608733892441]],[[-0.095946282148361,-0.070479393005371,-0.19959042966366],[0.0092457477003336,0.046236999332905,0.021797934547067],[-0.017809381708503,-0.041705962270498,0.013530292548239]],[[-0.072677172720432,0.075374342501163,-0.058970302343369],[0.030629057437181,-0.081887826323509,-0.088091850280762],[-0.073836147785187,0.056709390133619,0.082637533545494]],[[-0.074801921844482,0.087376445531845,-0.22512502968311],[-0.0021462121512741,0.11048224568367,0.078480884432793],[-0.054952852427959,-0.070627018809319,-0.053394462913275]],[[0.040441863238811,-0.0026764839421958,0.037050578743219],[0.093441002070904,-0.048183932900429,0.12633244693279],[0.0085403015837073,0.00082058302359655,-0.053144913166761]],[[0.091600552201271,-0.054748270660639,0.073531717061996],[-0.017654547467828,-0.040991012006998,-0.087901726365089],[0.023306354880333,-0.055500987917185,0.040971450507641]],[[-0.075079441070557,0.10505763441324,-0.010335176251829],[-0.11905639618635,-0.076202645897865,0.11638559401035],[0.12735694646835,-0.077094405889511,-0.014956431463361]],[[-0.095616921782494,0.009508621878922,-0.082734264433384],[-0.025876097381115,-0.0078996401280165,-0.01427807379514],[0.017066843807697,-0.12770484387875,-0.03500372171402]],[[0.070348411798477,0.085095167160034,0.032732639461756],[-0.0072894152253866,-0.044329736381769,-0.12290950119495],[0.0062584392726421,-0.058842167258263,-0.036980416625738]],[[0.012759123928845,-0.048119813203812,0.068872734904289],[0.050790354609489,0.039484802633524,-0.077134370803833],[-0.076177909970284,-0.020712280645967,-0.12415796518326]],[[0.14996133744717,-0.1910691857338,0.012996908277273],[-0.13173401355743,0.037141937762499,0.02100938372314],[0.030484674498439,-0.10217621177435,-0.19391550123692]],[[-0.18641817569733,-0.043743949383497,0.032664321362972],[-0.0086968513205647,-0.020456057041883,-0.024990284815431],[0.09786643832922,0.030429920181632,0.026513896882534]],[[-0.01421757042408,0.061861556023359,0.070753328502178],[0.042775139212608,-0.11424241960049,0.060762271285057],[-0.041206441819668,-0.022084640339017,0.025662148371339]],[[0.0070742489770055,0.054107964038849,0.01813923753798],[-0.017807716503739,-0.072029516100883,0.031462822109461],[-0.021356606855989,-0.06450118124485,-0.021686451509595]],[[-0.041449822485447,-0.058052901178598,-0.0062020882032812],[0.0089382035657763,-0.032092850655317,0.10165753215551],[-0.048746861517429,-0.10856089740992,-0.079921059310436]],[[0.070480704307556,-0.083920903503895,-0.10003068298101],[-0.0078845676034689,0.13136087357998,0.1334875524044],[-0.0038525371346623,-0.11952633410692,-0.08038567006588]],[[-0.069434784352779,0.039533905684948,0.11942215263844],[-0.30921682715416,-0.028024852275848,-0.099930554628372],[0.063960984349251,-0.069904148578644,-0.058799639344215]],[[-0.058643463999033,-0.066500432789326,-0.02158454246819],[-0.035731784999371,-0.088317513465881,-0.036854706704617],[0.02280686236918,-0.038249522447586,0.039180606603622]],[[0.045837812125683,0.034533884376287,0.07231817394495],[0.0464275367558,0.037079114466906,0.052124429494143],[0.019517930224538,0.01376271340996,0.11004382371902]],[[0.10702545195818,-0.035188499838114,-0.11044770479202],[0.019483752548695,-0.13699907064438,-0.030356245115399],[-0.037829838693142,-0.012442707084119,0.045128129422665]],[[0.030948325991631,0.036153752356768,0.0042696464806795],[-0.015951253473759,0.00036162688047625,-0.015183900482953],[0.027228370308876,-0.013262571766973,0.019134610891342]],[[-0.11489509046078,0.048412431031466,-0.085678331553936],[0.013625640422106,-0.088487833738327,-0.051446121186018],[-0.0078483065590262,-0.033955611288548,-0.0059347301721573]],[[-0.012857551686466,-0.054468408226967,-0.012721548788249],[0.12100246548653,0.018221221864223,0.07049485296011],[-0.079346552491188,0.012672363780439,0.053354643285275]],[[-0.093805991113186,-0.024417765438557,-0.075119286775589],[0.088521689176559,-0.069483377039433,0.035284269601107],[0.052433390170336,-0.021339245140553,-0.047923792153597]]],[[[-0.052092168480158,-0.050766102969646,-0.0022526241373271],[-0.12399084866047,-0.11483739316463,-0.06623487919569],[0.03849758580327,0.037192989140749,0.04702989384532]],[[-0.046874098479748,-0.0246855430305,0.083533339202404],[-0.097320564091206,-0.093719013035297,0.0071667996235192],[-0.077979981899261,-0.04565691202879,-0.05064307525754]],[[-0.084449298679829,-0.021521430462599,-0.020755011588335],[-0.10581173747778,-0.085949927568436,-0.099492654204369],[0.053818099200726,0.045854706317186,0.062210261821747]],[[0.046062510460615,0.071792617440224,-0.018600607290864],[0.0071534216403961,0.040108282119036,-0.03551260381937],[0.10774119198322,0.049209859222174,0.035765770822763]],[[0.084098763763905,-0.0080496855080128,-0.045795019716024],[0.065379589796066,-0.12969747185707,-0.15750530362129],[-0.13287979364395,-0.064938940107822,0.075045987963676]],[[-0.051774576306343,0.018964014947414,-0.17553949356079],[-0.006230297498405,0.043245375156403,0.085175685584545],[-0.055637400597334,-0.11627073585987,-0.064365461468697]],[[0.021556587889791,-0.017548233270645,0.045120410621166],[-0.12379739433527,0.13644914329052,0.184236317873],[-0.12481768429279,0.010078492574394,-0.16064894199371]],[[-0.023871432989836,0.015185448341072,0.072190955281258],[0.16157639026642,0.0064377803355455,-0.0028815863188356],[-0.12053637206554,-0.072969108819962,-0.05986001715064]],[[0.057297889143229,-0.066343009471893,0.024036098271608],[0.029879800975323,-0.021613106131554,-0.051862247288227],[0.020211769267917,-0.15952038764954,-0.014136223122478]],[[-0.0342609398067,0.12316106259823,-0.13449630141258],[0.016674963757396,0.038321811705828,-0.097882993519306],[-0.059580612927675,0.078331895172596,-0.0069598932750523]],[[0.029176650568843,0.10144714266062,-0.10851906985044],[0.005140966270119,-0.062661349773407,0.0015559621388093],[0.049616616219282,0.020591573789716,0.091639883816242]],[[-0.084766238927841,-0.070169158279896,-0.080278404057026],[0.0074579389765859,-0.074186503887177,0.026452347636223],[0.0013267279136926,-0.015828331932425,-0.0061812764033675]],[[-0.12127756327391,-0.13878470659256,-0.058967020362616],[-0.043519984930754,-0.057561684399843,-0.012045545503497],[0.023425661027431,0.060867246240377,-0.02266613766551]],[[-0.20472486317158,-0.10835331678391,0.043861731886864],[-0.069308146834373,-0.059620968997478,0.11173325777054],[-0.074732385575771,-0.0096794012933969,0.021572602912784]],[[0.03913663700223,-0.10810260474682,-0.02915059402585],[-0.10345444083214,-0.055549263954163,0.02786223962903],[-0.14405107498169,-0.11640620976686,0.11211232841015]],[[0.11221340298653,-0.010424138978124,-0.17405931651592],[-0.11844190955162,0.096534080803394,-0.012712028808892],[-0.17122763395309,0.0066473023034632,-0.058192044496536]],[[-0.09301520884037,-0.054788995534182,-0.075529158115387],[-0.0067278360947967,-0.026339564472437,0.023160874843597],[-0.095614358782768,0.059591479599476,-0.15013149380684]],[[0.0040105558000505,-0.048226941376925,-0.22174656391144],[0.012939778156579,0.1396841108799,-0.048655740916729],[0.0031484274659306,0.002635907381773,-0.0034375924151391]],[[0.030084198340774,0.049189858138561,0.0080266743898392],[-0.062972880899906,-0.080237336456776,-0.072397083044052],[-0.06974046677351,0.01353115029633,0.11723262071609]],[[0.0046630469150841,-0.11142482608557,0.016379084438086],[0.065698102116585,-0.019871527329087,0.016281710937619],[0.017187248915434,-0.14245854318142,0.027661398053169]],[[-0.030762808397412,0.091704301536083,0.11479583382607],[-0.060705929994583,0.010643308050931,-0.010346502996981],[0.049786441028118,0.089069746434689,0.020663952454925]],[[0.030421733856201,-0.026608424261212,0.059530828148127],[-0.090543076395988,-0.021356489509344,-0.0033212644048035],[-0.02408055961132,-0.040871120989323,0.012621436268091]],[[-0.073150217533112,-0.042844381183386,-0.029409315437078],[-0.01382403075695,0.013763120397925,-0.038771372288465],[-0.041335988789797,0.013664086349308,-0.063262544572353]],[[0.15449497103691,-0.12442642450333,-0.021385783329606],[-0.1757008433342,-0.17597836256027,0.028262605890632],[0.063385277986526,0.069039270281792,-0.032780755311251]],[[0.067495115101337,0.11731775850058,-0.029620580375195],[0.10673407465219,0.053560510277748,-0.024293292313814],[0.010217833332717,0.036788128316402,0.024856319651008]],[[-0.072804622352123,-0.01296622492373,-0.027464024722576],[-0.010393786244094,0.017776593565941,0.039092872291803],[-0.013623891398311,-0.039584670215845,0.010541987605393]],[[0.024510851129889,0.10760090500116,-0.0084984805434942],[-0.049468234181404,-0.0087417811155319,-0.013954910449684],[0.23144340515137,0.21075740456581,0.030834168195724]],[[0.023635365068913,0.0011490944307297,0.06380320340395],[0.068530768156052,-0.012020559050143,0.06067743897438],[-0.10333898663521,0.13384068012238,-0.23875343799591]],[[-0.024444362148643,-0.038553595542908,-0.0531160607934],[-0.15900193154812,-0.06918279081583,0.0038532256148756],[0.10040818154812,0.059022229164839,0.038399815559387]],[[-0.034378692507744,-0.066428028047085,-0.0067043881863356],[0.05762991681695,0.011456727981567,-0.1239310875535],[0.015060621313751,0.059662230312824,0.027475757524371]],[[0.034715361893177,-0.034556165337563,0.09598945081234],[-0.098230667412281,0.076817281544209,0.10073693841696],[-0.076887607574463,0.047091193497181,0.027489021420479]],[[0.1694883108139,0.15013200044632,0.04185988754034],[0.11700335144997,-0.098652414977551,-0.089707218110561],[-0.060155127197504,0.11380147188902,0.093315936625004]],[[0.065522752702236,-0.12518171966076,-0.018481554463506],[-0.071898601949215,0.0048193847760558,0.037086363881826],[0.07932885736227,-0.025968568399549,-0.23623490333557]],[[-0.079707138240337,0.054466258734465,-0.0060201003216207],[-0.058597452938557,-0.044248193502426,0.018057011067867],[-0.035317867994308,-0.1193985491991,0.10676933825016]],[[-0.089596047997475,-0.059113647788763,-0.012841109186411],[0.04625042527914,-0.14502613246441,-0.022809129208326],[-0.060579653829336,0.043516125530005,0.17700333893299]],[[0.16506540775299,0.085218846797943,-0.065853491425514],[0.045938659459352,0.14939612150192,0.054781254380941],[0.074001923203468,-0.064952470362186,0.079413160681725]],[[0.025277815759182,-0.20397092401981,-0.099533684551716],[-0.047015085816383,0.14064867794514,-0.023537987843156],[0.062970101833344,0.18073712289333,0.12180358171463]],[[0.023206764832139,-0.036730017513037,-0.039723284542561],[-0.049266155809164,-0.0093634203076363,-0.012412228621542],[0.02595822326839,-0.049733314663172,-0.062291383743286]],[[-0.031629826873541,-0.098816119134426,-0.014316054061055],[0.03185098618269,0.1069757938385,0.029339404776692],[0.012533651664853,0.0073664374649525,-0.042800270020962]],[[-0.099804267287254,-0.10044790059328,0.075370915234089],[-0.12677752971649,-0.012825180776417,-0.26740744709969],[0.035861127078533,0.020482314750552,0.067936286330223]],[[0.03331470489502,-0.04518361389637,0.07496589422226],[-0.050318017601967,0.062464449554682,0.067359425127506],[0.081031203269958,-0.25549805164337,0.0010047164978459]],[[0.030703341588378,-0.0041296929121017,-0.17523577809334],[0.045070704072714,-0.06299539655447,-0.03821062669158],[0.031933013349771,0.019381634891033,-0.0026756555307657]],[[-0.043964020907879,0.029058327898383,0.097160287201405],[0.041767779737711,-0.026558492332697,0.11128593236208],[-0.044743407517672,0.1174583658576,-0.11839127540588]],[[-0.024561041966081,0.013918840326369,0.068460926413536],[-0.11430244892836,-0.035844087600708,-0.010976458899677],[0.057188671082258,-0.0095002045854926,-0.060826245695353]],[[0.088268905878067,-0.0090365810319781,0.034259762614965],[-0.11306907236576,-0.041679430752993,0.14425648748875],[-0.0502093359828,0.018643083050847,-0.026125628501177]],[[-0.16193331778049,-0.071383878588676,-0.052902720868587],[-0.1550026088953,0.14420159161091,0.18059226870537],[-0.10334421694279,-0.14432288706303,-0.052688051015139]],[[-0.08183466643095,-0.037617828696966,-0.046397618949413],[0.095552816987038,0.12824308872223,0.030752694234252],[0.065658822655678,-0.10195396840572,-0.037959381937981]],[[-0.029004219919443,0.066598236560822,0.12527215480804],[-0.075871482491493,0.029823051765561,-0.072123348712921],[-0.034227017313242,-0.089216291904449,-0.13184621930122]],[[-0.03288447111845,0.0074588623829186,-0.060101438313723],[0.11523160338402,0.023843793198466,0.040062624961138],[-0.11644771695137,0.13929809629917,0.15672436356544]],[[0.055194679647684,0.03710538521409,0.1385370194912],[0.16880616545677,0.20204249024391,0.013077044859529],[0.059550527483225,-0.093156106770039,0.020265115424991]],[[-0.030800871551037,-0.037093501538038,0.08651178330183],[0.012142641469836,-0.12985414266586,-0.10649643093348],[-0.068901494145393,-0.051027592271566,-0.002142229815945]],[[-0.12082346528769,-0.023953344672918,-0.080377660691738],[-0.087505899369717,-0.088557809591293,-0.025994453579187],[-0.11602131277323,-0.0046435943804681,-0.14274489879608]],[[0.016523137688637,-0.0473004989326,-0.091543972492218],[0.02918160147965,-0.051287781447172,0.034153662621975],[0.0091411452740431,-0.0017242764588445,0.031408745795488]],[[0.0051882779225707,-0.009642681106925,-0.0095313088968396],[-0.067454166710377,-0.089329525828362,0.067276924848557],[0.12190068513155,-0.11472377926111,0.0017396201146767]],[[0.055453486740589,0.0012820713454857,0.02767520584166],[-0.090775720775127,-0.10201348364353,0.019911585375667],[0.028761342167854,0.027533249929547,-0.1019274815917]],[[-0.076348967850208,0.099403768777847,-0.014256592839956],[0.00077424669871107,0.080243587493896,0.0055903531610966],[-0.058708481490612,0.030710512772202,-0.023768167942762]],[[-0.043750748038292,-0.024694561958313,-0.037345934659243],[-0.029973302036524,0.0078245578333735,-0.048711694777012],[-0.016043523326516,-0.00026981913833879,0.017143791541457]],[[0.028516100719571,-0.0075577227398753,0.038681287318468],[-0.17318902909756,-0.10003607720137,0.029939383268356],[0.07995180785656,-0.082169763743877,-0.056240703910589]],[[0.037239737808704,0.021365772932768,0.023440029472113],[0.071321204304695,-0.087555579841137,0.012690446339548],[0.03930277377367,0.091577298939228,0.10552083700895]],[[0.054088532924652,0.16036188602448,0.19201120734215],[-0.041891921311617,-0.014185296371579,-0.095428191125393],[-0.13756170868874,-0.091066792607307,-0.028866341337562]],[[-0.042449120432138,-0.018194390460849,-0.085015594959259],[0.079395860433578,-0.0041052736341953,0.081939727067947],[-0.030974514782429,0.03280845656991,-0.03998489305377]],[[0.11722146719694,-0.011889795772731,-0.057927537709475],[0.099509060382843,0.017280355095863,0.03934945166111],[0.11931671202183,-0.10336975008249,0.16163223981857]],[[-0.027069607749581,0.041226640343666,-0.075720302760601],[-0.17051020264626,0.0056666568852961,-0.005336232483387],[-0.026162192225456,-0.065745420753956,0.08392196148634]],[[-0.0020580412819982,0.00088088744087145,0.084696963429451],[-0.052158489823341,0.082786165177822,-0.038353744894266],[0.11791767925024,-0.096726164221764,-0.095994167029858]]],[[[0.058439690619707,-0.052409615367651,-0.05355517193675],[-0.005429636221379,-0.054525431245565,-0.042773794382811],[0.11145008355379,0.067397996783257,-0.11950577795506]],[[0.13155993819237,0.035765167325735,0.036361798644066],[-0.045767527073622,0.059279568493366,0.06564823538065],[-0.098512731492519,-0.048390321433544,-0.048593509942293]],[[-0.026093356311321,-0.012734247371554,-0.041262254118919],[-0.0049580624327064,-0.024101013317704,-0.026089685037732],[0.037695940583944,-0.031513396650553,-0.14091031253338]],[[0.14106298983097,-0.010699117556214,-0.058654762804508],[0.0078807091340423,0.00037412546225823,-0.024135129526258],[-0.13052161037922,-0.11308259516954,-0.13470301032066]],[[-0.0069114002399147,-0.040552545338869,0.054166309535503],[-0.084779374301434,-0.089461036026478,-0.081210575997829],[-0.016914617270231,0.035932473838329,-0.11071640253067]],[[-0.060336135327816,0.015092554502189,-0.014056900516152],[0.034656867384911,-0.010309279896319,0.011002937331796],[-0.065924592316151,-0.14263099431992,0.019277568906546]],[[-0.075294576585293,0.05262403562665,0.065135613083839],[-0.045821234583855,-0.084172576665878,-0.19337113201618],[-0.089117787778378,0.05291361361742,-0.27520275115967]],[[0.011628492735326,0.0099885333329439,-0.056098707020283],[0.08356124907732,-0.003694383893162,0.077913746237755],[-0.078790299594402,-0.021672632545233,-0.069057233631611]],[[-0.0029825130477548,0.0035836212337017,0.084829889237881],[-0.17878222465515,-0.12025522440672,-0.027811162173748],[-0.065449297428131,-0.10570009052753,0.015876591205597]],[[-0.037972077727318,-0.018890665844083,-0.15649789571762],[0.027805367484689,0.076608791947365,0.094477534294128],[0.011656130664051,0.0038218169938773,-0.028713218867779]],[[-0.041394576430321,-0.10745618492365,-0.0071733267977834],[0.11333870142698,0.028949521481991,-0.052691135555506],[0.052892711013556,-0.0045307488180697,-0.064030013978481]],[[-0.012401005253196,0.03931949287653,0.13503940403461],[-0.047752261161804,-0.028609814122319,0.0059011094272137],[0.064806565642357,0.081623636186123,-0.044448658823967]],[[0.10212845355272,0.079552233219147,0.068435244262218],[-0.11736439168453,0.077881850302219,-0.017243480309844],[-0.11772388219833,0.054288055747747,0.056332670152187]],[[-0.073727011680603,0.022316938266158,-0.073262833058834],[0.056689567863941,-0.028707033023238,-0.027150424197316],[0.097157433629036,-0.054496549069881,-0.0088644735515118]],[[-0.045870054513216,0.037530716508627,0.026098487898707],[0.050341755151749,-0.0076663540676236,0.076585881412029],[0.0073782871477306,0.054880157113075,0.011559566482902]],[[0.067621767520905,0.0626535192132,0.10866914689541],[-0.062380820512772,0.0087765268981457,0.13019107282162],[0.020106956362724,-0.058839451521635,-0.23085944354534]],[[0.023431159555912,0.051056437194347,-0.022679572924972],[-0.094476692378521,0.002076308708638,-0.034630950540304],[-0.020502125844359,-0.033862307667732,-0.060734141618013]],[[0.005901915486902,0.088063791394234,0.087736070156097],[0.019381858408451,-0.015271745622158,-0.047410827130079],[0.015490503050387,0.029274243861437,0.026549069210887]],[[-0.0092830918729305,-0.0079830763861537,-0.073355168104172],[0.042037963867188,-0.12225241959095,-0.065371826291084],[-0.034520298242569,-0.016828250139952,0.066768139600754]],[[-0.038819320499897,0.019302295520902,0.0072760004550219],[0.036119882017374,-0.16244761645794,-0.13600593805313],[-0.078504174947739,-0.14719408750534,-0.082698360085487]],[[0.080642871558666,-0.021881755441427,-0.0045117042027414],[-0.012042694725096,0.019420506432652,-0.20654788613319],[0.077818430960178,-0.05831640958786,-0.00090862705837935]],[[0.061859838664532,0.046360239386559,0.033106315881014],[-0.04953783005476,-0.05084702372551,-0.041932918131351],[-0.046874061226845,-0.027780830860138,-0.093085922300816]],[[-0.02936539426446,-0.066391460597515,-0.052497141063213],[-0.10654082149267,-0.038901824504137,-0.16597683727741],[0.044411279261112,-0.050509303808212,-0.14461645483971]],[[0.14627186954021,-0.0068423850461841,0.068549171090126],[0.10973089188337,0.039117377251387,0.053055018186569],[-0.039681687951088,-0.0088621424511075,-0.044170297682285]],[[-0.080631978809834,-0.088930062949657,-0.12041833996773],[-0.011060173623264,-0.17697601020336,-0.02023116312921],[0.024171175435185,0.20689341425896,0.076318338513374]],[[0.053341694176197,-0.047249086201191,-0.019036898389459],[-0.032685969024897,-0.039092477411032,0.023200117051601],[0.0070988326333463,-0.028191145509481,-0.043388664722443]],[[-0.14157515764236,-0.18529295921326,-0.17743314802647],[-0.09593840688467,0.082249708473682,-0.048067566007376],[0.065221779048443,0.00078881054650992,-0.047484941780567]],[[-0.087931983172894,-0.042415965348482,-0.097597531974316],[-0.11981474608183,0.015097669325769,-0.058515548706055],[-0.04576076194644,-0.0037061679176986,-0.062384158372879]],[[-0.10738531500101,0.069798223674297,0.022661134600639],[0.0450274720788,0.04623943567276,0.065346397459507],[-0.020623084157705,-0.20660603046417,-0.061813183128834]],[[0.12932808697224,-0.008276873268187,0.013832609169185],[-0.020286083221436,0.07317678630352,-0.12147485464811],[0.058301821351051,-0.025835486128926,-0.0035786668304354]],[[-0.053508672863245,0.034865736961365,0.013681906275451],[-0.037143599241972,-0.023464048281312,-0.04547706246376],[0.039873074740171,0.11324398219585,0.19017945230007]],[[-0.0010130733717233,0.061293039470911,-0.038809843361378],[0.030561039224267,-0.021345911547542,-0.059663753956556],[0.16399194300175,0.12383545935154,0.13798609375954]],[[-0.10492926090956,0.14382641017437,0.085746824741364],[-0.032662834972143,-0.12550710141659,-0.040451876819134],[0.22844351828098,-0.20750381052494,0.1636940985918]],[[-0.087147936224937,-0.11762034893036,-0.10571296513081],[-0.016836751252413,-0.21064506471157,-0.0042025037109852],[-0.13114619255066,-0.043137557804585,0.038099709898233]],[[-0.061418686062098,0.048952896147966,0.0029911431483924],[-0.062410723417997,-0.044142678380013,-0.0065254708752036],[-0.071944870054722,-0.10016197711229,-0.065964795649052]],[[-0.04604184627533,0.084049791097641,-0.094526499509811],[0.037582483142614,-0.01829351298511,0.070766434073448],[-7.43739947211e-05,0.072210296988487,-0.0013147956924513]],[[-0.01262968685478,-0.026931524276733,0.088295206427574],[0.10226357728243,0.17856603860855,0.04059898853302],[-0.028076626360416,0.021150544285774,0.14288346469402]],[[-0.082639001309872,-0.01839798502624,0.048385135829449],[0.019205842167139,0.092227108776569,0.015059927478433],[-0.023819725960493,0.067242689430714,0.0028484724462032]],[[-0.1084169447422,-0.021014414727688,-0.018849788233638],[-0.13748963177204,-0.033209122717381,-0.088113494217396],[-0.020331099629402,0.038085866719484,0.12008433789015]],[[0.088333323597908,0.05160665884614,-0.015589587390423],[-0.12761051952839,-0.1581354290247,-0.046145785599947],[-0.069574251770973,-0.10059129446745,0.12987478077412]],[[0.109539732337,0.008252888917923,0.0083594853058457],[-0.01279535703361,-0.058442983776331,0.033868763595819],[-0.12940634787083,-0.18035194277763,-0.027412954717875]],[[-0.048003297299147,0.032488483935595,-0.041550550609827],[0.038980953395367,-0.040611688047647,-0.0020269453525543],[-0.075970940291882,-0.049510952085257,-0.095182038843632]],[[0.042613480240107,0.14367683231831,0.026017749682069],[0.19422824680805,0.11171384900808,0.074324205517769],[-0.066299565136433,-0.055691104382277,0.092639401555061]],[[0.011626002378762,0.023337529972196,-0.038952015340328],[0.068907432258129,0.0093806004151702,-0.088525339961052],[-0.12774403393269,-0.19794610142708,-0.1360964179039]],[[0.016088655218482,0.13768900930882,0.070073425769806],[-0.023420704528689,-0.054132584482431,0.057378720492125],[-0.035145662724972,-0.12031535059214,-0.11153687536716]],[[0.070422045886517,-0.059844344854355,-0.089565977454185],[-0.027135979384184,-0.078650332987309,-0.06617583334446],[0.10834912210703,0.10173304378986,0.13203996419907]],[[-0.023344462737441,-0.070127092301846,0.031863588839769],[0.057186435908079,-0.055335097014904,-0.065639771521091],[-0.054532822221518,-0.049024268984795,-0.12656755745411]],[[-0.10071558505297,-0.0013656760565937,-0.057298567146063],[0.025433152914047,-0.053635939955711,-0.19968204200268],[0.010579842142761,0.17967037856579,0.015151154249907]],[[-0.031260684132576,-0.021618014201522,-0.0046902950853109],[0.0074242288246751,-0.020261168479919,0.044803488999605],[-0.034343555569649,-0.039223819971085,-0.077898234128952]],[[0.079904802143574,0.070462875068188,-0.0096577731892467],[-0.063330665230751,0.040000084787607,0.064212419092655],[-0.027269050478935,-0.13624076545238,-0.11995518952608]],[[-0.066708043217659,-0.077429935336113,0.030010972172022],[-0.020085560157895,0.0085863498970866,-0.14557971060276],[-0.045282788574696,0.039660297334194,0.087480530142784]],[[0.16122642159462,0.043357968330383,0.062331769615412],[-0.11379075795412,0.01955383643508,-0.14387427270412],[-0.065192066133022,-0.058092497289181,-0.033348266035318]],[[-0.052556838840246,0.092436134815216,0.023103354498744],[0.057438444346189,-0.042049765586853,-0.049322832375765],[-0.0075850444845855,-0.00015839368279558,0.020084779709578]],[[0.0089587783440948,-0.051142018288374,0.014640805311501],[0.091642633080482,0.089833065867424,0.063082836568356],[0.069610923528671,-0.10440889000893,0.079045511782169]],[[0.10299705713987,-0.022551521658897,0.056862771511078],[-0.11612832546234,-0.010144475847483,0.19540163874626],[-0.11515564471483,-0.15057863295078,-0.14754761755466]],[[-0.060849644243717,-0.004472688306123,0.11969941109419],[-0.063442833721638,-0.019452266395092,0.01602371968329],[-0.19241178035736,-0.16311830282211,-0.082854487001896]],[[0.057969462126493,-0.068090707063675,-0.054850045591593],[0.036210455000401,0.043586019426584,-0.0039476952515543],[-0.11336521804333,-0.11241701245308,-0.20712180435658]],[[0.069588795304298,0.015293331816792,0.059549827128649],[0.098383963108063,0.09187938272953,0.01580030657351],[-0.1181943193078,-0.19141931831837,-0.10691771656275]],[[0.017551749944687,0.013557623140514,0.026488747447729],[0.024443240836263,0.046115096658468,0.097065679728985],[0.029268583282828,0.091694742441177,-0.016347775235772]],[[-0.013825378380716,0.035739623010159,0.090066470205784],[0.063061095774174,-0.005703245755285,-0.13969327509403],[-0.10673931241035,-0.056093003600836,-0.067705854773521]],[[-0.14056770503521,0.055554687976837,-0.047493036836386],[-0.19311439990997,-0.1372971534729,-0.16325148940086],[0.05533380433917,-0.011935954913497,0.059420928359032]],[[0.0019561399240047,0.049395516514778,0.0295948702842],[0.034396350383759,-0.073543317615986,0.0622868090868],[-0.045614257454872,-0.05284072458744,-0.061583481729031]],[[-0.0017514112405479,-0.023672562092543,-0.13953568041325],[0.068399980664253,0.012313632294536,0.050764586776495],[-0.16203366219997,-0.068057797849178,-0.069293297827244]],[[0.065167672932148,0.034826796501875,0.13400873541832],[0.11583436280489,-0.07114040851593,-0.062836095690727],[-0.0051147504709661,-0.014986415393651,0.001778643229045]]],[[[0.086588837206364,-0.032835271209478,0.021065162494779],[-0.11457565426826,0.016879197210073,-0.0071086292155087],[0.044845666736364,0.11031836271286,0.10945437848568]],[[-0.03161958232522,-0.022386804223061,0.0044338339939713],[0.09656985104084,-0.037815760821104,0.018556170165539],[-0.21753989160061,-0.021044155582786,-0.17870901525021]],[[0.012495203875005,-0.13336347043514,-0.27855217456818],[-0.073250085115433,-0.094086907804012,-0.02452027797699],[-0.028908697888255,-0.1079606115818,-0.00039003556594253]],[[-0.059977382421494,0.039081208407879,-0.032462641596794],[-0.010178008116782,0.029219878837466,-0.073113650083542],[-0.071780547499657,0.17706277966499,-0.032068636268377]],[[0.022360634058714,0.01376564335078,-0.036454260349274],[0.043963167816401,-0.028890188783407,0.14676743745804],[0.046562343835831,-0.059126041829586,-0.052554626017809]],[[0.032376039773226,-0.17159649729729,-0.0469139367342],[0.021156979724765,-0.095150105655193,-0.040581829845905],[-0.10239908099174,-0.038357142359018,-0.12223750352859]],[[-0.05706762522459,0.005054943729192,-0.055646453052759],[-0.033793061971664,-0.045749224722385,-0.017542764544487],[-0.0052133579738438,0.040779549628496,-0.10938813537359]],[[0.061659086495638,0.020390259101987,0.027417553588748],[-0.019783647730947,-0.017434542998672,-0.083650156855583],[-0.014736167155206,0.0078053013421595,-0.054168231785297]],[[-0.027987124398351,-0.054816979914904,0.058016624301672],[0.060913920402527,-0.014321614988148,0.012532957829535],[-0.091811008751392,-0.12263039499521,-0.10992775112391]],[[-0.21663875877857,-0.016220344230533,-0.034919366240501],[-0.13572020828724,-0.016694894060493,-0.15003941953182],[-0.0861641690135,0.041113503277302,0.078265659511089]],[[-0.1382924169302,0.068713165819645,0.095374457538128],[-0.062502108514309,0.071700066328049,0.05664024502039],[0.070862464606762,0.014013363979757,-0.045174982398748]],[[0.12303728610277,0.0078360745683312,0.11481775343418],[0.022352445870638,0.013924785889685,0.15243165194988],[-0.18333111703396,-0.1279693543911,0.20460034906864]],[[-0.025034399703145,-0.063931412994862,0.02552280202508],[-0.033822845667601,0.016714317724109,0.004743670579046],[-0.071626603603363,0.020608568564057,0.037467375397682]],[[0.15047660470009,0.008265657350421,-0.12830930948257],[0.20361542701721,0.042858831584454,0.0040122107602656],[-0.12752905488014,0.079692356288433,-0.035891812294722]],[[-0.018130300566554,0.034919273108244,-0.18431685864925],[0.040146317332983,0.036014653742313,-0.13433773815632],[-0.0056257885880768,0.05279479175806,0.059784512966871]],[[0.086198523640633,-0.025218263268471,0.11911734193563],[-0.05562973767519,-0.0094288755208254,0.00033187202643603],[-0.0041979905217886,-0.027355873957276,0.10386384278536]],[[-0.043378412723541,0.0078501012176275,-0.048412714153528],[-0.02183966524899,-0.015918990597129,0.077061824500561],[-0.048081289976835,-0.17305910587311,-0.054585341364145]],[[0.031426284462214,0.13281339406967,-0.16361571848392],[0.068991392850876,0.02696686796844,-0.038275677710772],[0.1097337603569,0.090223997831345,-0.0016683967551216]],[[0.027747211977839,0.084154449403286,-0.097955346107483],[-0.043570924550295,0.032321196049452,0.046029217541218],[-0.15360483527184,0.0028650255408138,0.084734812378883]],[[0.062020611017942,0.033432397991419,0.010792509652674],[0.038789607584476,-0.041250474750996,-0.080214843153954],[0.09723998606205,0.017017360776663,0.061174102127552]],[[-0.021912876516581,-0.09579262137413,-0.15606977045536],[0.019676838070154,0.06520826369524,-0.13720862567425],[-0.010080503299832,-0.051387466490269,0.014925342053175]],[[0.10121165961027,-0.02461826428771,-0.034240029752254],[-0.002993936650455,-0.022854307666421,-0.12159094959497],[0.026401527225971,-0.029744278639555,-0.066417694091797]],[[0.12138944864273,-0.029593015089631,0.0027377193327993],[0.055481772869825,-0.050582006573677,-0.04806374758482],[-0.055637389421463,-0.0087101245298982,-0.080423466861248]],[[0.22848320007324,0.14265449345112,-0.016217051073909],[-0.091440744698048,-0.015211246907711,-0.055540502071381],[0.043590854853392,0.010839471593499,-0.039685498923063]],[[0.0052214548923075,-0.048941813409328,-0.053835216909647],[0.12674182653427,-0.0069737886078656,0.054765980690718],[-0.019237207248807,0.012664140202105,-0.072107531130314]],[[-0.050947997719049,-0.031366270035505,-0.012709478847682],[-0.021342730149627,0.019926745444536,0.049796923995018],[-0.004626608453691,0.023670747876167,-0.004532880615443]],[[0.09746877104044,-0.043490547686815,0.03769064694643],[0.060182087123394,-0.074810288846493,-0.081630922853947],[0.080713838338852,-0.045391406863928,-0.0063714422285557]],[[0.020125638693571,0.017414037138224,0.10760822147131],[-0.029365386813879,-0.073057092726231,0.17861880362034],[-0.11331258714199,0.027647698298097,0.038428731262684]],[[-0.015694703906775,0.032337885349989,0.040359634906054],[0.045446716248989,-0.035281129181385,-0.095414005219936],[-0.11049704253674,-0.14453047513962,0.10865244269371]],[[-0.030538035556674,-0.024153584614396,0.14579738676548],[-0.036447465419769,-0.047473985701799,-0.0048055383376777],[-0.11597446352243,-0.079519465565681,0.097822189331055]],[[-0.14351238310337,-0.011116882786155,0.037025768309832],[-0.074625767767429,0.054874248802662,0.060246028006077],[-0.099272385239601,0.014891775324941,0.10461155325174]],[[0.039091058075428,0.0013038244796917,0.11303439736366],[-0.0018717753700912,-0.058999091386795,-0.040027499198914],[0.10968743264675,0.03505727276206,0.096190005540848]],[[-0.076912991702557,0.083552472293377,0.0063478830270469],[-0.051515121012926,0.090042255818844,-0.13881479203701],[0.065133020281792,0.032419826835394,0.077573835849762]],[[-0.15281394124031,-0.1205040961504,-0.14563277363777],[0.0059093153104186,-0.059731561690569,-0.03910318762064],[-0.046545438468456,-0.036674942821264,0.0056797410361469]],[[-0.019372172653675,-0.032159492373466,-0.016652693971992],[0.071660779416561,-0.023798523470759,-0.11825131624937],[0.079435490071774,0.12486048787832,0.064261883497238]],[[-0.042748801410198,-0.007853165268898,0.042210351675749],[0.020018614828587,0.032667648047209,0.097402840852737],[-0.13400003314018,0.20107673108578,0.13351081311703]],[[0.065294794738293,-0.0039099766872823,0.155651897192],[0.11295748502016,0.090431079268456,-0.046170387417078],[-0.1429145783186,-0.15608122944832,0.045412059873343]],[[0.030600097030401,-0.095203071832657,-0.10589457303286],[0.0028670572210103,0.11293195188046,-0.052479881793261],[-0.10862266272306,-0.093013532459736,-0.13571514189243]],[[-0.12805381417274,-0.063284322619438,0.0345239341259],[0.10879570990801,-0.15093611180782,-0.071706585586071],[-0.10456244647503,-0.25997385382652,-0.018505556508899]],[[0.0055143758654594,0.0081002879887819,-0.08974976837635],[0.059607867151499,-0.079889610409737,-0.1348497569561],[0.12403289228678,0.055923216044903,-0.025509504601359]],[[0.006731596775353,-0.1441213041544,-0.15244592726231],[-0.15277847647667,-0.16646260023117,-0.099926598370075],[0.07154618948698,0.098446056246758,-0.040726199746132]],[[-0.14582109451294,-0.1031734123826,-0.036945041269064],[0.11528248339891,0.019613362848759,-0.092277966439724],[-0.054019052535295,0.073582872748375,-0.055456481873989]],[[-0.017848134040833,0.053107380867004,-0.18226137757301],[0.095893204212189,0.10159388929605,-0.15754897892475],[0.050866860896349,0.013304603286088,-0.05432965233922]],[[0.1223129555583,0.087557218968868,-0.054644629359245],[0.081715017557144,0.13095591962337,0.14648094773293],[0.091860964894295,-0.079179033637047,-0.26546615362167]],[[-0.063594318926334,-0.06603892147541,-0.026545085012913],[-0.020607441663742,0.068329147994518,0.030576495453715],[-0.011256154626608,0.013069692067802,0.032991908490658]],[[0.1277216821909,0.09119438380003,0.14180643856525],[0.055513978004456,0.030211050063372,0.016467271372676],[-0.059414908289909,0.033344272524118,-0.032827980816364]],[[-0.085650235414505,-0.079859666526318,0.025795625522733],[-0.14930698275566,0.031849917024374,-0.01984241232276],[-0.021524719893932,-0.096630297601223,0.011726482771337]],[[0.083550363779068,-0.0062846881337464,0.034178599715233],[0.014404474757612,0.042073797434568,0.00092870788648725],[-0.084221392869949,-0.070631809532642,-0.036979541182518]],[[0.074636436998844,0.0053162882104516,-0.032527986913919],[-0.17106860876083,-0.034252088516951,-0.025630358606577],[0.014591896906495,-0.067638278007507,-0.10723517090082]],[[0.066659778356552,0.033374045044184,-0.0012470481451601],[-0.13334776461124,0.017380243167281,-0.011162522248924],[0.1761491894722,-0.15963327884674,-0.054252408444881]],[[-0.050708144903183,0.20515063405037,0.12024466693401],[0.027290765196085,0.00099750957451761,-0.028813075274229],[-0.0056344983167946,-0.0033974137622863,-0.17936433851719]],[[-0.021595574915409,0.097280435264111,0.014618217013776],[0.012181513011456,0.057350073009729,-0.078856214880943],[-0.048393566161394,0.021904990077019,-0.049793444573879]],[[0.039866235107183,-0.04500001296401,0.043079294264317],[-0.11272906512022,-0.032915979623795,0.038091350346804],[0.027865685522556,-0.017586981877685,-0.033345408737659]],[[-0.046747013926506,0.14247864484787,0.035569317638874],[-0.033644273877144,-0.018832299858332,-0.058167051523924],[-0.051157362759113,0.034492019563913,-0.0033884076401591]],[[0.024008167907596,-0.025701971724629,-0.10798323899508],[-0.084231808781624,0.10604809224606,0.080609604716301],[-0.036025505512953,-0.029316050931811,-0.064007088541985]],[[0.043989710509777,-0.062943041324615,0.021009789779782],[-0.019384073093534,-0.090201675891876,-0.051241979002953],[-0.097852289676666,-0.1691712141037,0.070948876440525]],[[0.025374960154295,0.015054471790791,-0.1232623681426],[-0.026629539206624,-0.067934662103653,-0.11083634197712],[-0.067237086594105,-0.079123318195343,0.041860461235046]],[[-0.06168357282877,0.064019285142422,-0.038541976362467],[-0.1359316855669,0.088863715529442,-0.17428988218307],[-0.077948734164238,0.054674793034792,-0.038476519286633]],[[0.055686935782433,-0.0042081079445779,0.066509306430817],[0.050886671990156,0.1433801651001,0.068963199853897],[0.069383822381496,0.087496049702168,-0.0011084171710536]],[[-0.06003288179636,0.023715713992715,-0.04429667070508],[-0.05401598289609,0.077447831630707,-0.077689401805401],[0.0046022394672036,-0.080878429114819,-0.024286683648825]],[[0.07098400592804,-0.18395546078682,-0.094429977238178],[-0.02459554001689,-0.039189774543047,0.077933549880981],[0.095446676015854,0.0022231256589293,-0.046631690114737]],[[0.01593448407948,-0.021352903917432,0.076283372938633],[0.080459199845791,0.027646480128169,-0.04722173511982],[0.020982610061765,0.013131225481629,-0.012428098358214]],[[-0.040815453976393,-0.10610558092594,0.07228022813797],[0.095122866332531,-0.1604125648737,-0.035765614360571],[0.040529649704695,-0.00018467467452865,-0.036797750741243]],[[-0.066509358584881,0.022935766726732,0.11344455182552],[-0.13476999104023,-0.12243466824293,0.064056873321533],[-0.10185413807631,-0.08132366091013,-0.12946732342243]]],[[[0.091053731739521,0.030272448435426,0.10437898337841],[-0.0054120123386383,-0.056927695870399,0.038101568818092],[0.022987805306911,-0.098796248435974,-0.009259638376534]],[[-0.12918123602867,-0.1890571564436,-0.060089100152254],[-0.017940796911716,0.004930165130645,-0.031434547156096],[0.041124641895294,0.10712772607803,0.09814840555191]],[[-0.039777297526598,-0.076534852385521,-0.13276782631874],[0.018951749429107,0.034769989550114,-0.083421245217323],[-0.020020689815283,0.064545400440693,0.029551677405834]],[[0.017315289005637,-0.00057975010713562,-0.079081244766712],[0.042851287871599,-0.069123640656471,-0.21430060267448],[0.068477757275105,0.099087744951248,0.023612743243575]],[[-0.077940993010998,-0.030893767252564,0.048657730221748],[0.038137294352055,0.0016783105675131,-0.0026432175654918],[0.0083059761673212,-0.014696393162012,-0.0064741000533104]],[[0.047651875764132,-0.12543575465679,-0.056806717067957],[0.0019260059343651,-0.0077365860342979,0.025765338912606],[0.054747153073549,0.1865032017231,0.016552498564124]],[[0.017020862549543,-0.055527791380882,-0.13295729458332],[0.033005189150572,-0.040659867227077,0.031188840046525],[0.088035069406033,0.014291697181761,-0.0074654095806181]],[[0.083319596946239,0.16338513791561,0.067666299641132],[-0.0048993546515703,-0.05932928994298,-0.038421213626862],[0.059737741947174,0.074950307607651,-0.10835143923759]],[[0.011303352192044,0.035280026495457,-0.14676979184151],[-0.030898202210665,0.075229994952679,-0.1425216794014],[0.10872967541218,0.11733783781528,-0.16661670804024]],[[0.010157071985304,0.0038669439963996,-0.13458302617073],[0.072926193475723,-0.012364230118692,-0.054614551365376],[0.08355388045311,0.032105710357428,-0.054652396589518]],[[0.058605786412954,-0.18037663400173,0.23275761306286],[0.05806490033865,-0.15330177545547,-0.0085374694317579],[0.11593198776245,-0.11255667358637,-0.012060151435435]],[[-0.18627609312534,-0.14215707778931,0.057920705527067],[0.064973875880241,-0.0077826688066125,0.082478046417236],[0.035714987665415,0.046571042388678,-0.041579067707062]],[[0.076596014201641,0.13457733392715,0.098992332816124],[-0.19379107654095,-0.0079028122127056,-0.22263693809509],[0.045309700071812,0.039722602814436,-0.067671611905098]],[[0.001612757332623,0.088055774569511,-0.056321952491999],[0.04459722340107,0.011849730275571,0.051106788218021],[-0.0068600438535213,-0.070088364183903,-0.13415914773941]],[[-0.03486305102706,-0.10184764862061,0.079549551010132],[0.0027022697031498,0.038077477365732,0.13981440663338],[0.059419050812721,0.099255561828613,-0.11556985974312]],[[-0.16826173663139,-0.08081854134798,-0.25297775864601],[-0.083085991442204,0.013857275247574,-0.15854041278362],[0.1050500869751,-0.020168822258711,-0.014973222278059]],[[0.072557829320431,-0.1084937825799,0.061610147356987],[-0.010077587328851,0.10980027914047,0.051857780665159],[-0.031854279339314,0.046914055943489,-0.036189969629049]],[[-0.13102650642395,-0.16002497076988,-0.22781886160374],[-0.12940753996372,-0.042980052530766,-0.087681233882904],[0.10134189575911,0.036608323454857,0.13108260929585]],[[0.040824830532074,-0.10955998301506,0.16741821169853],[0.029510207474232,-0.0018111910903826,0.053280029445887],[-0.033079221844673,-0.11817184090614,0.0018902868032455]],[[0.082226701080799,-0.035440620034933,0.12960051000118],[-0.014063390903175,-0.090191081166267,0.091449335217476],[-0.083360843360424,0.012145123444498,-0.075743399560452]],[[0.010705362074077,0.089398726820946,-0.25985196232796],[-0.047091148793697,0.039151143282652,-0.00056812528055161],[0.041474740952253,0.078756973147392,-0.027145385742188]],[[0.019272647798061,-0.065404959022999,0.018358884379268],[-0.063945531845093,-0.046536024659872,-0.064474985003471],[0.015394248999655,0.0094577595591545,0.03498762845993]],[[-0.070391185581684,0.010075626894832,0.043838541954756],[-0.10209243744612,-0.03083099424839,0.031139483675361],[-0.041752368211746,-0.080899283289909,-0.022164039313793]],[[0.013004601933062,0.019006501883268,-0.022955421358347],[0.012056484818459,0.10445878654718,0.13661308586597],[-0.17624706029892,-0.0040173530578613,-0.035177227109671]],[[0.083615809679031,0.023202897980809,0.18734835088253],[0.061229925602674,0.19162720441818,0.10973583906889],[0.058415297418833,-0.044104021042585,0.0080105680972338]],[[0.018371812999249,0.011594949290156,0.061464231461287],[-0.0026823575608432,0.087103001773357,0.022543674334884],[-0.058505438268185,-0.078871555626392,-0.059148702770472]],[[-0.10043174028397,-0.1063150241971,-0.13257637619972],[-0.15077404677868,0.022952297702432,-0.061546072363853],[-0.097223505377769,0.016463976353407,-0.034416571259499]],[[-0.014687767252326,-0.068211071193218,0.021362103521824],[-0.019279113039374,-0.015728672966361,-0.013479643501341],[-0.0020040269009769,0.033401474356651,-0.019911034032702]],[[0.15239225327969,-0.014846338890493,-0.030230360105634],[-0.09567154943943,-0.054930947721004,0.090120062232018],[-0.080746673047543,-0.074877999722958,-0.0032318457961082]],[[-0.051431953907013,0.088418126106262,-0.14722436666489],[-0.13675209879875,-0.059315260499716,-0.014644396491349],[-0.015790097415447,0.052849777042866,0.1438599973917]],[[0.010900271125138,0.10453852266073,-0.051604397594929],[0.10903257876635,0.054250754415989,-0.031826686114073],[0.094002105295658,0.061943173408508,0.088760115206242]],[[0.10771176218987,0.11309846490622,0.30663555860519],[0.0027770975138992,-0.093193478882313,-0.025526728481054],[0.12877508997917,0.0040396726690233,0.12325264513493]],[[0.13345940411091,0.001678554690443,0.14712549746037],[-0.07980027794838,-0.030710408464074,0.034713599830866],[0.022753275930882,0.01127091050148,0.064108625054359]],[[-0.0025970868300647,0.096868224442005,0.15266880393028],[0.10346499085426,0.072480127215385,0.061710827052593],[-0.01829088293016,0.019500629976392,0.053688228130341]],[[-0.0088228899985552,-0.1563251465559,-0.029979201033711],[0.020109983161092,0.04071331396699,-0.0039872005581856],[-0.022256745025516,-0.08305287361145,-0.12781646847725]],[[0.073480635881424,0.15746723115444,0.16593679785728],[0.0089886980131269,0.045936189591885,0.044488456100225],[-0.1109359934926,-0.11722648143768,-0.13255494832993]],[[-0.029560333117843,0.23082798719406,-0.034359492361546],[0.030988393351436,0.073306642472744,0.13424074649811],[-0.09187076985836,-0.061141639947891,0.050003699958324]],[[0.022152092307806,0.063143983483315,-0.055804535746574],[-0.039548631757498,0.13686011731625,-0.054239857941866],[0.0078818816691637,-0.20666904747486,-0.22611121833324]],[[-0.051407787948847,-0.001839580014348,-0.096577562391758],[0.076936110854149,0.056923389434814,0.069744847714901],[-0.034134939312935,0.028950283303857,-0.085855722427368]],[[0.082353487610817,-0.041759215295315,0.1225668489933],[0.0024654325097799,0.017114264890552,0.010605274699628],[0.011334556154907,-0.046604979783297,-0.0091412123292685]],[[0.0060730655677617,-0.075387261807919,-0.051586478948593],[-0.078809976577759,-0.11327601969242,-0.059560131281614],[0.062150966376066,0.05131608247757,0.027144161984324]],[[-0.032632797956467,-0.0053326971828938,0.011506355367601],[-0.0085561024025083,-0.0072822165675461,-0.093231521546841],[0.034639872610569,0.11680141091347,0.073895633220673]],[[0.053879026323557,0.03769500926137,-0.062484212219715],[0.044470127671957,-0.23637565970421,-0.050127401947975],[0.017589773982763,0.0028714486397803,0.21959729492664]],[[-0.050905242562294,-0.084738127887249,-0.051703076809645],[0.20127964019775,0.08148530870676,-0.02775364369154],[0.020474199205637,-0.033514641225338,0.076262727379799]],[[-0.09815302491188,-0.056220129132271,-0.18597064912319],[-0.24604238569736,-0.18001385033131,-0.13845744729042],[-0.075814768671989,0.00946572329849,0.015817437320948]],[[-0.011125073768198,0.0059731532819569,0.064211770892143],[-0.030416145920753,-0.10442098230124,-0.10760073363781],[0.11699385941029,-0.069449469447136,0.019074017181993]],[[0.023510202765465,0.14191024005413,0.24798713624477],[-0.0034946335945278,-0.030677460134029,-0.054777748882771],[-0.016157971695065,-0.13928960263729,0.069153241813183]],[[0.13326187431812,-0.026466775685549,0.037680484354496],[0.075046077370644,0.050590142607689,0.10572079569101],[0.018042750656605,-0.10438594222069,-0.018896374851465]],[[0.19404062628746,0.1199462339282,0.053127862513065],[0.070313178002834,-0.0082464758306742,-0.087283633649349],[-0.015609163790941,0.10988168418407,-0.11829033493996]],[[-0.20984624326229,-0.030446356162429,0.054067771881819],[-0.0041793524287641,0.1856000572443,0.052244242280722],[-0.075593061745167,-0.14338614046574,-0.059044063091278]],[[0.098067618906498,-0.04466513171792,0.30488938093185],[0.048044707626104,-0.061742845922709,0.035154186189175],[0.03634724393487,-0.041283261030912,0.027249366044998]],[[0.04497168213129,-0.078719079494476,0.052629958838224],[0.11507306993008,0.15091913938522,-0.046492975205183],[0.0017896285280585,-0.080358974635601,0.025768229737878]],[[-0.058085180819035,-0.11382937431335,-0.13368816673756],[-0.042499516159296,0.020619673654437,-0.021365122869611],[0.01490172650665,0.075470119714737,0.14386206865311]],[[-0.082766368985176,0.010504304431379,-0.16864389181137],[0.043460749089718,0.060971572995186,-0.063431695103645],[-0.026934405788779,0.055649854242802,-0.11884844303131]],[[0.018068572506309,-0.070757105946541,0.070442385971546],[-0.097434088587761,-0.012777681462467,-0.059930976480246],[-0.053510535508394,-0.1181827262044,0.035804435610771]],[[-0.0037315825466067,-0.04585338011384,-0.028450954705477],[-0.1373882740736,-0.056774590164423,-0.073301717638969],[-0.11863140761852,-0.027721185237169,-0.18589451909065]],[[0.01627198047936,-0.14153352379799,0.011762142181396],[-0.037127960473299,0.00047413058928214,0.14781408011913],[0.016072915866971,0.064393945038319,-0.064167991280556]],[[-0.1038246974349,-0.16759915649891,-0.34204563498497],[-0.048052664846182,0.075800642371178,0.094847410917282],[-0.028965104371309,0.02942525036633,-0.029020708054304]],[[0.058162059634924,0.017286589369178,-0.042200725525618],[0.047451287508011,0.070310577750206,-0.043933633714914],[0.1071510836482,0.1646768450737,0.071638740599155]],[[-0.085526436567307,-0.009543327614665,-0.17109532654285],[-0.012284433469176,-0.15842416882515,0.017637610435486],[0.02723004668951,0.021808817982674,0.16239057481289]],[[0.028960911557078,-0.010641013272107,0.17134128510952],[0.0093106999993324,0.05007441714406,-0.061293993145227],[-0.0089617315679789,0.004901731852442,-0.023763228207827]],[[-0.1000784561038,-0.19059869647026,-0.056499563157558],[-0.07126621901989,-0.08404566347599,-0.18040649592876],[0.0026395244058222,0.0020860345102847,0.018724611029029]],[[0.058323107659817,-0.015735203400254,-0.063988752663136],[0.026934741064906,0.035762716084719,0.1037173345685],[-0.017662404105067,-0.030401201918721,0.11176042258739]],[[-0.035124432295561,-0.051552966237068,-0.13790600001812],[0.018599979579449,-0.0056298864074051,0.020096572116017],[0.045464992523193,-0.028821658343077,-0.1234432682395]]],[[[-0.031671334058046,0.027830112725496,0.0069425259716809],[0.059724949300289,0.041995447129011,-0.03351454436779],[0.044725775718689,-0.11161957681179,0.041921585798264]],[[0.0036621117033064,0.081368759274483,-0.0028698949608952],[-0.10921300947666,-0.0649289265275,0.022226409986615],[-0.1742849946022,-0.042523976415396,0.081806398928165]],[[0.025004372000694,0.02179342508316,-0.060241557657719],[-0.024843292310834,-0.018995817750692,0.092373415827751],[0.01750154606998,-0.016856804490089,-0.0057469857856631]],[[-0.0011754757724702,-0.13639721274376,-0.036672584712505],[0.03837376087904,-0.095701344311237,-0.0017697052098811],[-0.0055083222687244,0.024182762950659,0.088784016668797]],[[0.049287017434835,0.10279677808285,0.034316964447498],[-0.03125137463212,-0.010989112779498,0.0062006190419197],[-0.1206379160285,0.048861239105463,-0.069959841668606]],[[0.10779452323914,-0.1647542566061,-0.077425539493561],[-0.031016180291772,0.061978969722986,-0.015767086297274],[-0.015390968881547,-0.10183227807283,-0.076799005270004]],[[0.099960289895535,0.0162063986063,0.012595147825778],[0.066940985620022,0.11564122885466,0.086468942463398],[0.057153139263391,0.0083024278283119,0.021772051230073]],[[0.074232906103134,0.082773141562939,-0.02523391880095],[-0.018725516274571,-0.098973654210567,0.093362025916576],[0.0099520878866315,-0.057275135070086,-0.078492239117622]],[[-0.1011316627264,0.053642455488443,-0.078860156238079],[0.040164794772863,-0.019140167161822,-0.14402036368847],[-0.00012179167970316,-0.03015418164432,-0.2451746314764]],[[-0.022067999467254,-0.07485893368721,-0.10657142847776],[-0.11006078869104,-0.032239515334368,-0.091471590101719],[0.08016799390316,-0.059167817234993,-0.048139572143555]],[[-0.10009413957596,-0.030368860810995,0.030789352953434],[-0.063285276293755,-0.041676342487335,-0.026073260232806],[0.098690956830978,-0.092141911387444,0.023416582494974]],[[-0.074781879782677,-0.0012501731980592,-0.015825930982828],[0.067756973206997,0.079511679708958,-0.036672092974186],[-0.0078267818316817,0.083755418658257,0.0061270999722183]],[[0.10845354944468,-0.027224084362388,-0.026130387559533],[-0.064194828271866,-0.060620319098234,0.021617656573653],[0.012371621094644,-0.0063340649940073,0.0045447777956724]],[[0.14839655160904,0.074144527316093,-0.02231222204864],[-0.073075629770756,-0.098091661930084,-0.01454808190465],[-0.018528228625655,-0.13733319938183,-0.057269539684057]],[[0.12875352799892,-0.018893882632256,-0.0793671682477],[0.062458500266075,-0.034263730049133,-0.063692383468151],[0.22082412242889,0.010871429927647,0.10565589368343]],[[0.00953324791044,0.048396594822407,-0.13570518791676],[-0.079885795712471,-0.015845581889153,0.010284043848515],[-0.044758446514606,-0.01291739102453,0.042002324014902]],[[-0.034245751798153,0.017027828842402,-0.22297047078609],[-0.062277410179377,-0.10946776717901,-0.15786346793175],[0.10709318518639,0.013001156970859,-0.040737517178059]],[[-0.18472281098366,0.10277818143368,0.021508743986487],[-0.019493479281664,0.0080842915922403,0.043702024966478],[0.036266181617975,0.094403699040413,0.035368032753468]],[[0.064627856016159,-0.11395709961653,-0.065871700644493],[-0.022171476855874,-0.027013963088393,-0.023713482543826],[-0.046422354876995,-0.08974102884531,-0.033879961818457]],[[0.11813016980886,-0.11581426113844,-0.088854447007179],[-0.072559028863907,-0.0027131433598697,0.077187970280647],[-0.046714551746845,0.044640131294727,0.015672860667109]],[[0.10947691649199,0.10222586244345,-0.026209799572825],[0.018614461645484,0.054633732885122,0.044255115091801],[-0.075491644442081,0.044464882463217,-0.01508548669517]],[[0.066755875945091,0.046601809561253,-0.083221822977066],[0.063629999756813,-0.05737978592515,-0.1255234926939],[-0.059650328010321,-0.010884606279433,0.016074081882834]],[[-0.01024659909308,0.017859539017081,-0.021900463849306],[-0.11763620376587,-0.1260190308094,0.10106671601534],[-0.082810804247856,0.0064825522713363,0.035557594150305]],[[0.037188079208136,0.0454932898283,-0.046540293842554],[-0.19755551218987,-0.036150403320789,0.071968697011471],[0.11652425676584,-0.03811576589942,0.021891236305237]],[[-0.041583295911551,0.11563044786453,-0.15912368893623],[0.080008044838905,0.080757796764374,0.041590325534344],[0.056940335780382,-0.02398470044136,-0.058451376855373]],[[0.021475069224834,-0.011531228199601,-0.034539625048637],[0.014083209447563,-0.12268682569265,0.03096049465239],[0.016711296513677,0.043591756373644,0.027966216206551]],[[-0.21119424700737,-0.016874914988875,0.027410063892603],[0.11982039362192,0.051650688052177,-0.16941270232201],[-0.09965530782938,-0.00095522875199094,-0.032635319977999]],[[0.024753853678703,-0.023055845871568,-0.077608987689018],[0.029224615544081,-0.13939069211483,-0.011748862452805],[0.082115337252617,0.095442816615105,-0.00069097033701837]],[[0.01673280261457,-0.042789503931999,0.052360665053129],[-0.037752564996481,-0.10234382003546,-0.036815796047449],[-0.088764831423759,-0.063293129205704,-0.0014746813103557]],[[0.0087517788633704,0.088979259133339,-0.022462135180831],[-0.01245220284909,-0.072476364672184,0.0074396403506398],[0.086079970002174,0.091101862490177,-0.049255888909101]],[[0.0036256471648812,-0.040376074612141,-0.023732589557767],[0.15472060441971,-0.030719624832273,0.058158677071333],[0.097532272338867,-0.13230685889721,-0.00061449117492884]],[[-0.023548504337668,-0.04283469170332,0.081207297742367],[-0.070690929889679,0.0085168043151498,-0.063831478357315],[0.077610194683075,-0.031116981059313,0.056424397975206]],[[0.01579238474369,-0.12102258205414,-0.081326827406883],[0.10608636587858,0.11509611457586,-0.036248236894608],[-0.15376588702202,-0.010961334221065,-0.13935400545597]],[[0.11905059218407,-0.047573674470186,-0.12776528298855],[0.020717035979033,-0.021220620721579,-0.042821522802114],[0.013157562352717,-0.077959947288036,0.031698182225227]],[[-0.064275920391083,-0.097147800028324,0.10302236676216],[-0.051730334758759,-0.1774570196867,-0.1194676309824],[-0.0072807804681361,-0.035713884979486,-0.10070782154799]],[[-0.037567894905806,0.12635596096516,0.040022190660238],[0.022897202521563,0.048434618860483,-0.00016668532043695],[-0.013746999204159,0.10254597663879,-0.13135077059269]],[[-0.015770811587572,-0.079524323344231,0.087529741227627],[-0.10106132924557,0.030514726415277,0.096746869385242],[0.060352213680744,-0.052653040736914,-0.05615821108222]],[[0.03798932954669,0.0020403815433383,-0.021362289786339],[-0.032927185297012,-0.059780601412058,-0.082966484129429],[0.10821039974689,-0.057475335896015,-0.078885599970818]],[[-0.094923906028271,0.0024547050707042,0.080370634794235],[-0.071398742496967,0.0079995021224022,-0.026094982400537],[-0.081514291465282,0.0082829706370831,-0.081998951733112]],[[0.084433600306511,0.073139674961567,0.03948824480176],[-0.19630043208599,-0.085773222148418,-0.025085778906941],[0.058871194720268,0.10953252017498,0.079616211354733]],[[0.031255632638931,0.080028139054775,0.070005729794502],[0.15308123826981,0.078490607440472,0.017270904034376],[-0.14183516800404,-0.11959731578827,0.047607239335775]],[[0.0065683452412486,-0.098919562995434,0.19452886283398],[0.09165532886982,-0.14154642820358,0.051499158143997],[0.035632409155369,-0.020860949531198,0.0053110453300178]],[[0.11829558759928,0.018109533935785,0.096622012555599],[0.14432993531227,-0.079419009387493,-0.019394041970372],[0.085274569690228,-0.10864182561636,-0.031107101589441]],[[-0.086010254919529,-0.0071336580440402,-0.25882232189178],[0.050900511443615,0.020973982289433,-0.046555269509554],[0.0010499923955649,0.022509943693876,-0.025049461051822]],[[-0.058745875954628,0.042388804256916,0.056143134832382],[0.033915787935257,-0.066396549344063,0.00075548992026597],[0.074184626340866,0.036609645932913,-0.030704801902175]],[[-0.032058890908957,0.01406988222152,-0.0051652821712196],[-0.04909360781312,-0.12766921520233,-0.03701326996088],[-0.0079868203029037,-0.023789659142494,0.095628447830677]],[[-0.014417828992009,-0.029591619968414,0.14009137451649],[-0.0023880866356194,0.035525646060705,-0.012141423299909],[-0.11322454363108,-0.031677708029747,0.049220465123653]],[[0.10109506547451,0.053926266729832,0.12324384599924],[-0.080324448645115,-0.11315377801657,0.027397528290749],[0.061757005751133,0.049401722848415,0.080390863120556]],[[-0.066816776990891,-0.095677778124809,-0.057796560227871],[-0.05140470713377,0.078960716724396,-0.016986997798085],[0.021509621292353,0.066251687705517,-0.064575724303722]],[[0.12830048799515,0.067479893565178,0.016509236767888],[0.053064782172441,0.0028654949273914,-0.095768064260483],[0.095784462988377,0.19718019664288,-0.10571554303169]],[[0.098193012177944,0.0066461567766964,0.12134726345539],[0.041886448860168,0.030901305377483,-0.01897406578064],[-0.034522168338299,-0.020553471520543,-0.10011700540781]],[[-0.0056886547245085,-0.044882018119097,-0.032329469919205],[-0.0048575270920992,0.07883994281292,-0.013363267295063],[0.069115333259106,-0.015288816764951,-0.013710985891521]],[[-0.020461650565267,-0.057687278836966,0.077125556766987],[0.0043033012188971,0.060175739228725,-0.10803712904453],[0.010584462434053,-0.023025551810861,-0.0022344486787915]],[[0.060958672314882,0.038086969405413,-0.10728442668915],[-0.030907021835446,0.030341411009431,0.018674233928323],[0.04701380059123,0.052383493632078,-0.013753992505372]],[[-0.03200950846076,0.046308279037476,-0.082633502781391],[0.094329319894314,-0.044413238763809,-0.10068348795176],[0.011463055387139,-0.094900742173195,-0.023747926577926]],[[-0.035870727151632,0.059108357876539,0.028511494398117],[-0.012589859776199,0.065079040825367,-0.094813980162144],[0.074611701071262,0.063844196498394,0.099504023790359]],[[-0.05745081230998,0.036315377801657,0.034756150096655],[-0.14596647024155,-0.011960719712079,0.081560663878918],[-0.065123811364174,-0.013085947372019,0.032840196043253]],[[0.018449848517776,0.019294211640954,-0.0016114641912282],[-0.16322320699692,0.026039937511086,-0.0080378483980894],[-0.024402651935816,-0.10302913188934,0.021792579442263]],[[-0.00055002886801958,-0.010196018964052,0.112752340734],[0.11804957687855,-0.010912755504251,0.065783903002739],[-0.00078153202775866,0.12268277257681,0.10276489704847]],[[0.031895123422146,-0.029221277683973,-0.078308343887329],[0.062826551496983,0.083884701132774,-0.039884004741907],[0.091950356960297,-0.047720775008202,0.062303725630045]],[[0.10581698268652,-0.1092215180397,0.22677606344223],[-0.03919879347086,-0.092438437044621,-0.091065295040607],[0.043607175350189,0.0054478598758578,-0.068651810288429]],[[0.015081522986293,0.069517493247986,0.046646390110254],[0.029939709231257,-0.027231900021434,0.042678616940975],[0.045519318431616,0.023334629833698,0.043303795158863]],[[0.058675721287727,0.029120268300176,-0.16648133099079],[-0.085731104016304,0.014524192549288,0.069072470068932],[-0.015369248576462,0.095739528536797,-0.11231466382742]],[[0.073502235114574,0.028114687651396,-0.063716158270836],[0.051226671785116,0.070612162351608,-0.035363916307688],[-0.061905596405268,0.015736339613795,0.02969136275351]]],[[[0.031550902873278,-0.060101345181465,0.037129268050194],[-0.034564904868603,0.033493675291538,0.10570387542248],[0.032781217247248,-0.016114965081215,0.024594634771347]],[[0.074019007384777,0.01323979627341,-0.028754120692611],[-0.047353398054838,-0.062131904065609,-0.041782509535551],[0.1281391531229,-0.021990943700075,-0.050480611622334]],[[-0.2462751865387,0.064956404268742,-0.083528257906437],[-0.078381963074207,-0.1050686314702,-0.10929245501757],[0.01309432182461,-0.090279117226601,0.043027587234974]],[[-0.012422081083059,0.0057162968441844,-0.065969325602055],[-0.14461082220078,0.029745047912002,-0.037124883383512],[0.0038932994939387,-0.038882341235876,-0.1876098960638]],[[-0.02452727407217,0.056039787828922,0.033657647669315],[0.063946850597858,-0.090814359486103,-0.15116336941719],[-0.041122030466795,0.052221491932869,0.023098604753613]],[[-0.026539396494627,-0.053170599043369,-0.010146041400731],[0.031681258231401,-0.019712183624506,-0.046301506459713],[-0.089000701904297,-0.029462547972798,-0.088151127099991]],[[6.7176864831708e-05,0.047680348157883,-0.14336995780468],[-0.09927524626255,0.026232330128551,-0.024319550022483],[0.15719750523567,-0.0024510947987437,-0.044680897146463]],[[0.01189186796546,0.10449041426182,-0.048751246184111],[-0.097452417016029,0.052538961172104,-0.056017477065325],[0.031338103115559,-0.05617755278945,0.0065539279021323]],[[-0.099776424467564,-0.024783747270703,-0.16070006787777],[-0.020122868940234,0.06382928788662,-0.21836198866367],[0.04713623970747,0.1256507486105,0.060986142605543]],[[0.040536664426327,-0.093739852309227,-0.074126727879047],[0.0093005737289786,-0.054481294006109,0.0032053275499493],[-0.022267885506153,0.016577599570155,-0.11110191047192]],[[-0.0065430859103799,-0.051919855177402,0.15891878306866],[0.01906381174922,0.017552156001329,-0.0028681557159871],[0.024693455547094,-0.11015597730875,-0.1331053674221]],[[0.13170465826988,-0.14100021123886,0.024957738816738],[0.037454325705767,-0.024848634377122,-0.058473519980907],[0.072932511568069,-0.005224003456533,-0.10708913952112]],[[-0.027216847985983,0.0080431886017323,-0.059410318732262],[0.038770873099566,-0.040544483810663,0.00045586444321088],[-0.077520214021206,0.036355398595333,0.09590969979763]],[[0.070230424404144,-0.15036971867085,0.033346891403198],[0.087932601571083,0.050361834466457,0.006643870845437],[0.16250781714916,-0.064160495996475,-0.03310964256525]],[[0.10343137383461,-0.039216507226229,0.055177692323923],[0.10804596543312,-0.045697070658207,-0.089234434068203],[0.12696832418442,0.04604709893465,-0.067947179079056]],[[0.069754563271999,-0.044910006225109,-0.2276239991188],[0.15360216796398,0.082408152520657,-0.10454581677914],[-0.011252806521952,0.010088259354234,-0.058076024055481]],[[-0.056338671594858,-0.10150749236345,-0.10757016390562],[-0.1012190580368,-0.024020941928029,0.060090366750956],[0.053595371544361,-0.02311259880662,0.1843024790287]],[[0.031854707747698,0.07525410503149,-0.05620701611042],[0.10746300965548,0.077662013471127,-0.054397389292717],[0.0071565485559404,-0.060576435178518,-0.080929055809975]],[[0.00060235854471102,-0.12693123519421,0.15275931358337],[0.060057435184717,-0.11824671179056,0.048934400081635],[0.0058383443392813,-0.089823164045811,0.016236977651715]],[[-0.090612106025219,-0.10412187874317,0.017648883163929],[0.12630933523178,0.079838626086712,-0.032130040228367],[-0.0014513646019623,-0.030470630154014,-0.17876869440079]],[[0.096182577311993,0.06346507370472,0.07957362383604],[-0.051320761442184,0.003714733524248,-0.078243911266327],[0.050137341022491,0.060772214084864,0.12936788797379]],[[-0.060668338090181,-0.034056171774864,-0.015280931256711],[0.026302311569452,0.010999976657331,-0.015495566651225],[-0.00016386977222282,-0.034113708883524,-0.0024159837048501]],[[-0.20661416649818,0.02232813835144,0.014530882239342],[-0.050221495330334,-0.049395434558392,-0.10707744210958],[-0.0047304732725024,0.027125248685479,0.051053892821074]],[[-0.078842833638191,-0.039746228605509,0.33146291971207],[0.092424042522907,0.040735367685556,-0.035821169614792],[-0.056593984365463,0.092676773667336,-0.062506079673767]],[[-0.10287773609161,0.11668940633535,0.14124485850334],[0.042717516422272,0.028720756992698,0.028436135500669],[0.17436994612217,-0.033444315195084,0.013092164881527]],[[-0.021849883720279,0.058507744222879,-0.015253003686666],[-0.049753349274397,-0.027235368266702,0.10790767520666],[0.062195472419262,-0.037539646029472,-0.070758953690529]],[[-0.030842617154121,0.10293121635914,-0.14004354178905],[-0.12245106697083,0.077461153268814,-0.045277070254087],[-0.035434246063232,0.049472723156214,-0.014294300228357]],[[0.096095323562622,0.13605466485023,-0.12904851138592],[-0.12225510179996,0.1424865424633,-0.23142123222351],[-0.044217184185982,-0.048866372555494,0.026092885062099]],[[0.044992100447416,0.0091756721958518,-0.015585022978485],[-0.07411190867424,0.046280033886433,0.10080436617136],[-0.062561966478825,-0.094186179339886,-0.060735370963812]],[[0.11964415758848,0.044080447405577,-0.035478644073009],[-0.05071485042572,-0.042567059397697,-0.089347392320633],[-0.1110355630517,0.0015114702982828,-0.0084234215319157]],[[0.12699230015278,0.0070535042323172,-0.18492117524147],[0.0060219820588827,-0.10772817581892,-0.078595168888569],[0.0012893865350634,0.10079185664654,-0.13038973510265]],[[0.16607396304607,0.05457592010498,0.17952534556389],[0.14510379731655,0.0018059130525216,0.035314567387104],[-0.042910326272249,0.00056430243421346,-0.038612961769104]],[[-0.010365717113018,-0.12373068183661,0.23172700405121],[0.13188324868679,-0.10380785912275,0.061256356537342],[0.1030301079154,-0.077688984572887,-0.017733050510287]],[[0.12966097891331,0.12424007058144,-0.074083916842937],[-0.065974086523056,-0.013018073514104,0.11218976229429],[-0.019385099411011,-0.081237688660622,-0.032031677663326]],[[0.12477697432041,-0.0069671785458922,0.039797231554985],[-0.12717939913273,-0.00082159729208797,-0.13850601017475],[0.11827740818262,-0.042341414839029,-0.083515904843807]],[[-0.032307673245668,-0.02946868352592,-0.023487260565162],[0.02383528649807,0.03872999548912,0.05869597569108],[-0.0054009826853871,-0.011686897836626,0.063302375376225]],[[0.025492584332824,-0.12722800672054,-0.084217339754105],[0.20016556978226,0.13244922459126,0.19285544753075],[0.037711147218943,-0.12128004431725,0.12855181097984]],[[0.005289894528687,-0.12677709758282,0.024065477773547],[0.089617632329464,0.057185132056475,-0.025068450719118],[0.059100966900587,-0.042524632066488,-0.024926638230681]],[[-0.069164648652077,0.050369370728731,-0.043105911463499],[-0.10489249974489,-0.00059603695990518,0.032879747450352],[-0.048818591982126,-0.046698525547981,-0.18192958831787]],[[-0.09507142752409,-0.14422056078911,-0.006801110226661],[0.1482789516449,0.0068245586007833,-0.058773454278708],[0.082840643823147,0.10148555785418,-0.12454360723495]],[[-0.031896032392979,-0.076319076120853,-0.037942633032799],[-0.044918023049831,-0.073709636926651,-0.02140755392611],[0.039930287748575,0.015677276998758,-0.13114750385284]],[[-0.09598545730114,-0.013519224710763,-0.10143758356571],[-0.0061941356398165,0.0013796465937048,-0.0098086958751082],[0.097068123519421,-0.043318554759026,0.038093652576208]],[[0.017582269385457,-0.098485618829727,0.0044198576360941],[-0.058045018464327,-0.061065934598446,-0.038665324449539],[0.038466453552246,0.073788218200207,-0.072316266596317]],[[0.074579000473022,-0.076841652393341,0.074273191392422],[0.068324036896229,0.0055559077300131,-0.044704589992762],[0.17516253888607,-0.044909872114658,0.012271858751774]],[[-0.19711068272591,-0.23200950026512,-0.069403037428856],[0.05391077324748,-0.14558075368404,-0.19629868865013],[-0.10854016244411,-0.076898500323296,-0.068436674773693]],[[-0.073699429631233,-0.074264571070671,-0.073896430432796],[0.0060276258736849,-0.13570947945118,-0.021700585260987],[0.060215853154659,0.057164058089256,0.027266582474113]],[[-0.12772673368454,-0.060314446687698,0.032087907195091],[0.036530014127493,-0.032814614474773,0.0073864739388227],[-0.080325931310654,-0.033189233392477,0.016244759783149]],[[-0.0019904226064682,-0.012931938283145,-0.055313773453236],[0.081241481006145,-0.042467579245567,0.050180360674858],[0.024196336045861,-0.052822563797235,0.15474018454552]],[[0.035032730549574,-0.02795703150332,0.14617919921875],[-0.0019697179086506,0.0051019745878875,0.076784946024418],[-0.12038812041283,-0.07009544223547,0.046375721693039]],[[0.0060999030247331,0.091219425201416,0.062803961336613],[-0.10653781145811,-0.033759463578463,0.11638557910919],[-0.045348223298788,-0.012899983674288,0.11346960067749]],[[0.050008445978165,0.1033238619566,0.0033234190195799],[-0.096903830766678,0.0050779106095433,-0.12141349166632],[-0.17762349545956,-0.0027853203937411,-0.036497205495834]],[[-0.10622741281986,-0.068012945353985,-0.19095440208912],[0.0075949048623443,0.024943629279733,0.15934897959232],[0.020555732771754,0.022804241627455,-0.0020562198478729]],[[0.02556879632175,0.009915042668581,0.036322701722383],[0.13014054298401,0.12379856407642,-0.039007101207972],[-0.000540628854651,0.044088050723076,-0.20737819373608]],[[-0.034046433866024,-0.07315368950367,0.15216463804245],[0.015973187983036,-0.038030464202166,-0.068813540041447],[-0.04006864875555,-0.072601765394211,-0.12252008169889]],[[-0.021541401743889,-0.072737023234367,-0.057482302188873],[-0.055034972727299,-0.0060606468468904,-0.020175561308861],[-0.10019937157631,0.0016956981271505,0.12578648328781]],[[-0.050741393119097,-0.068886153399944,-0.049020413309336],[-0.1152910515666,-0.093215003609657,0.11110933870077],[-0.095228813588619,0.083041749894619,-0.088800333440304]],[[-0.067579917609692,0.017697149887681,0.070932529866695],[0.063711978495121,-0.04606569185853,0.0090472362935543],[-0.039901535958052,0.016286604106426,0.047833703458309]],[[-0.078163504600525,0.076400458812714,0.045094400644302],[-0.088585808873177,-0.050757247954607,-0.15133039653301],[0.050956755876541,-0.046745993196964,0.031336542218924]],[[0.061404280364513,0.036709789186716,-0.013962267898023],[0.056492622941732,0.039529446512461,0.044310908764601],[0.047998651862144,-0.050789754837751,0.15716429054737]],[[0.11413730680943,-0.01532543823123,0.056946035474539],[0.14861759543419,0.096475437283516,0.076101221144199],[-0.037853874266148,-0.17725098133087,0.12018097937107]],[[0.0094395177438855,-0.089425921440125,-0.0076069650240242],[-0.015673840418458,-0.095885947346687,-0.035274758934975],[-0.083693735301495,-0.061070248484612,-0.034317992627621]],[[-0.060395892709494,-0.077356085181236,-0.085343278944492],[-0.14134998619556,-0.0035176880192012,-0.035785011947155],[0.094530560076237,-0.020093562081456,-0.2293216586113]],[[0.098075844347477,-0.12436866015196,-0.074545003473759],[0.074790127575397,-0.059557694941759,0.0036582055035979],[-0.095882125198841,0.073996551334858,0.059699911624193]],[[0.0042817224748433,-0.11009643226862,0.0045644347555935],[0.013577654957771,0.0050522005185485,0.095037505030632],[-0.03672881051898,-0.0090706562623382,-0.081827685236931]]],[[[-0.077684499323368,0.14372938871384,-0.010516472160816],[-0.033710539340973,0.10375863313675,-0.098863743245602],[0.032577704638243,-0.070081301033497,-0.033169507980347]],[[0.025905916467309,0.12399195879698,-0.054126486182213],[0.091529928147793,-0.058110993355513,0.016527149826288],[-0.013357589952648,0.1063736602664,0.046687979251146]],[[-0.066885337233543,-0.066989250481129,-0.10356209427118],[0.014204576611519,0.022866187617183,-0.01195308752358],[0.040305722504854,-0.087527558207512,-0.096495077013969]],[[0.038072917610407,0.1323493719101,-0.1744197756052],[-0.0050840936601162,0.062636740505695,0.14878307282925],[-0.019282119348645,-0.098768010735512,0.09815438836813]],[[-0.078303344547749,-0.025759348645806,-0.050205789506435],[-0.088047467172146,-0.027812171727419,0.042309358716011],[-0.014435374177992,-0.069040611386299,-0.08258880674839]],[[-0.067432262003422,-0.054907940328121,-0.041359756141901],[0.098758868873119,0.0016669791657478,-0.042680814862251],[-0.048802554607391,0.080230951309204,0.005032058339566]],[[-0.016246937215328,-0.021884366869926,0.12211210280657],[0.069631345570087,-0.095722489058971,0.032629616558552],[0.1003709807992,0.055475998669863,0.021908720955253]],[[0.091715849936008,0.072250232100487,0.0066870185546577],[0.028643390163779,0.0066367527469993,0.068319708108902],[0.035230319947004,0.074688799679279,0.041216384619474]],[[0.031894661486149,0.042213771492243,0.069256864488125],[0.084044590592384,0.0054572434164584,0.017614623531699],[-0.085344456136227,0.031133381649852,0.12136912345886]],[[-0.16028119623661,-0.012779015116394,-0.070737242698669],[-0.14723140001297,0.022156301885843,-0.087308585643768],[0.00054365338291973,0.020324787124991,0.088612526655197]],[[0.0067912749946117,0.024676943197846,-0.16988667845726],[0.022826546803117,0.075902454555035,0.0028711506165564],[-0.046683859080076,-0.16162814199924,-0.12633976340294]],[[-0.055437956005335,0.039825432002544,-0.097607664763927],[-0.15324087440968,-0.037764854729176,0.075930304825306],[0.10784678161144,-0.010055622085929,-0.0063969632610679]],[[0.058224748820066,0.0082144159823656,-0.014633439481258],[-0.027422772720456,-0.025139596313238,0.048075322061777],[0.0057384530082345,-0.040760241448879,0.011006014421582]],[[0.18802954256535,0.16914673149586,-0.011331979185343],[-0.097883068025112,0.013877644203603,0.020966837182641],[-0.026212278753519,0.054142415523529,0.14257031679153]],[[0.014260495081544,-0.02742051333189,0.01446928922087],[0.088609926402569,-0.024905759841204,0.031853068619967],[-0.072770118713379,-0.056758649647236,-0.010568630881608]],[[0.082698985934258,-0.048875577747822,0.021861152723432],[-0.054693847894669,-0.071596071124077,0.031251456588507],[0.042973168194294,-0.044498510658741,0.086188599467278]],[[-0.15721797943115,0.20669700205326,-0.024672251194715],[-0.0028919468168169,-0.14719507098198,-0.0065110689029098],[0.082235656678677,0.04313437640667,-0.046021964401007]],[[0.002826809650287,0.070439018309116,-0.10783633589745],[0.023545432835817,0.1278108805418,0.15764625370502],[0.018395539373159,0.049375914037228,0.026788106188178]],[[0.091207414865494,0.083574190735817,-0.043540999293327],[0.021051624789834,0.027288289740682,-0.10799869894981],[0.056433990597725,-0.021516144275665,-0.0091421324759722]],[[0.027486942708492,-0.11681923270226,-0.00014712871052325],[-0.0097157834097743,0.016110790893435,0.026866186410189],[-0.0013596855569631,-0.012602372094989,0.008759225718677]],[[0.042132180184126,-0.19326481223106,-0.017574125900865],[-0.10117257386446,0.085363499820232,-0.041927557438612],[0.01841788738966,0.038770735263824,0.11565043777227]],[[0.0045426040887833,0.10000593215227,0.0051812818273902],[-0.010421709157526,-0.082660563290119,-0.038123905658722],[0.0095221418887377,-0.030649354681373,-0.023324903100729]],[[0.033901639282703,-0.071729317307472,0.018507795408368],[0.16837711632252,0.022037986665964,-0.048044111579657],[-0.029067311435938,0.02122369594872,-0.073890373110771]],[[0.0051618027500808,0.096982054412365,0.050968293100595],[-0.073378764092922,-0.041002236306667,-0.0015866146422923],[0.015464461408556,0.024191865697503,0.19384126365185]],[[0.047284051775932,0.17152039706707,0.14953956007957],[0.0055990214459598,-0.019893201068044,0.0093905311077833],[0.0046047051437199,0.15162406861782,0.12017221003771]],[[-0.024434551596642,-0.082293190062046,-0.023989012464881],[-0.0012064216425642,0.052583672106266,0.068945683538914],[-0.018845761194825,-0.020612046122551,0.022861640900373]],[[0.13961660861969,0.073220975697041,0.060841709375381],[0.054727051407099,-0.054497715085745,-0.06963399797678],[-0.052634127438068,0.03457310795784,-0.12535646557808]],[[-0.14999677240849,-0.16225384175777,-0.03980640694499],[0.018353551626205,0.020606631413102,0.033967789262533],[0.042875893414021,0.039734799414873,-0.028341030701995]],[[-0.093765370547771,-0.081353068351746,-0.081884779036045],[0.0018992777913809,-0.032203681766987,-0.17554162442684],[-0.090402863919735,0.051536735147238,-0.013278050348163]],[[0.097324222326279,-0.047129236161709,-0.023762498050928],[-0.070467866957188,-0.077527977526188,0.131491497159],[0.17865510284901,-0.018579417839646,-0.18344704806805]],[[-0.064595766365528,-0.066294573247433,0.09966729581356],[-0.064308561384678,-0.11666102707386,-0.1204070597887],[-0.070777207612991,0.034032348543406,0.029159078374505]],[[-0.063913613557816,0.0010311556980014,-0.045602463185787],[-0.010816341266036,-0.039246879518032,-0.083801940083504],[0.047420348972082,0.057729884982109,0.0077813039533794]],[[0.071644082665443,0.11055935919285,-0.13274367153645],[0.039865795522928,0.066803567111492,-0.10054235905409],[-0.0061607244424522,0.042190577834845,0.019623070955276]],[[-0.15514376759529,-0.057235974818468,-0.22355608642101],[-0.0092416880652308,0.039366587996483,-0.09698674082756],[-0.011175786145031,0.085128158330917,-0.13290365040302]],[[-0.055910497903824,0.0070496117696166,-0.019127788022161],[0.060166344046593,-0.091740682721138,0.086303763091564],[0.18935497105122,0.05972982943058,0.0064279190264642]],[[-0.027908289805055,0.011747133918107,0.16585139930248],[0.055048793554306,0.026236895471811,0.023413427174091],[-0.14590640366077,0.031105078756809,0.069200709462166]],[[-0.074816197156906,0.058585308492184,0.08714634180069],[-0.010216822847724,0.04146147146821,-0.026631910353899],[-0.017758442088962,0.04279437661171,-0.045025814324617]],[[-0.017826357856393,-0.027242414653301,0.045375686138868],[-0.092613957822323,0.026808712631464,-0.089439749717712],[-0.070676028728485,-0.017502041533589,-0.10134425759315]],[[0.047710493206978,0.0052885254845023,0.00041545153362677],[0.090502485632896,0.057066425681114,0.04111747816205],[-0.11344590783119,0.013326226733625,0.026696620509028]],[[-0.060379859060049,0.022452684119344,-0.1364111751318],[-0.053154438734055,-0.15847162902355,-0.08264496922493],[0.042004536837339,0.11323535442352,0.012380706146359]],[[-0.10618367046118,-0.013378857634962,-0.13057860732079],[-0.10463365167379,-0.0017502011032775,-0.0053928019478917],[0.14609122276306,0.09420108050108,0.030674306675792]],[[-0.16920284926891,-0.12096209824085,-0.12786203622818],[0.077410213649273,0.064633399248123,-0.010357089340687],[0.058480110019445,0.087956219911575,-0.027339534834027]],[[0.1252623051405,0.11260325461626,-0.064186088740826],[0.077188439667225,0.10486238449812,0.042832668870687],[-0.12184362113476,-0.27560651302338,-0.13716912269592]],[[-0.082464747130871,0.016368839889765,-0.022402666509151],[-0.15218588709831,-0.14249950647354,-0.068278878927231],[0.071364842355251,0.11478880792856,0.051132794469595]],[[0.01256297994405,-0.024110479280353,0.076908081769943],[-0.001758603961207,-0.01192837394774,-0.014662801288068],[0.10508031398058,0.10461588948965,-0.028450643643737]],[[-0.055005587637424,-0.0076355412602425,0.026584923267365],[-0.019112890586257,0.11210072785616,-0.035366237163544],[-0.044567834585905,-0.15590085089207,-0.069467656314373]],[[-0.0075731580145657,-0.013082770630717,0.028853215277195],[0.054353300482035,-0.059898175299168,0.10254523158073],[-0.084164254367352,0.048522863537073,0.027807105332613]],[[0.043958954513073,-0.083896584808826,0.091624714434147],[-0.020316606387496,0.0099906623363495,-0.069612823426723],[-0.065878443419933,-0.12109085172415,0.012799369171262]],[[-0.15598909556866,-0.041134428232908,-0.088562488555908],[0.16217106580734,0.016563462093472,-0.049241174012423],[-0.18618334829807,-0.066404759883881,-0.075485944747925]],[[-0.093627378344536,-0.12795434892178,-0.029110653325915],[0.029956746846437,-0.09428084641695,-0.12201993912458],[0.058199469000101,0.12179352343082,0.050304345786572]],[[0.17053404450417,0.069256529211998,0.064339354634285],[0.0060731475241482,-0.085344918072224,-0.064532987773418],[-0.0022115472238511,-0.073799312114716,0.035245951265097]],[[0.073271833360195,0.089540883898735,-0.082140684127808],[-0.17027874290943,-0.080425687134266,-0.12730439007282],[-0.018268838524818,-0.030099961906672,0.0047581321559846]],[[-0.03435530140996,-0.13499090075493,0.026103597134352],[-0.10170624405146,0.074038624763489,0.1046209409833],[-0.052336070686579,-0.15091741085052,-0.19276416301727]],[[0.061922058463097,0.075376190245152,0.095756873488426],[-0.031524993479252,0.0015320663806051,0.038548450917006],[-0.12924371659756,-0.12420976161957,-0.03104037232697]],[[-0.029697336256504,-0.016789795830846,-0.069077521562576],[-0.024244593456388,0.088626757264137,0.10412026941776],[0.10949918627739,-0.028035998344421,-0.13165667653084]],[[-0.03838723897934,-0.060765746980906,-0.11901203542948],[-0.12021291255951,-0.086489245295525,-0.09705612808466],[0.10948204994202,0.012425256893039,0.092716000974178]],[[-0.18271115422249,0.0053790523670614,-0.0078568151220679],[-0.0048654051497579,0.016882790252566,-0.037049558013678],[0.15181764960289,-0.050579335540533,0.096105970442295]],[[-0.00097202631877735,-0.074398718774319,-0.071182489395142],[-0.069110102951527,-0.019648496061563,-0.11720246076584],[0.044356614351273,-0.076778545975685,-0.065813407301903]],[[0.057983014732599,0.016958920285106,0.026504078879952],[0.035606529563665,-0.027448354288936,0.0093854106962681],[0.059379935264587,-0.01582620665431,-0.028132045641541]],[[-0.030709758400917,0.066964082419872,0.00068935548188165],[0.041869506239891,0.04361804574728,0.020152641460299],[0.021652262657881,-0.050646621733904,0.092203937470913]],[[-0.0021875367965549,-0.099311880767345,0.14510563015938],[-0.043758641928434,0.014334607869387,0.065030872821808],[0.053957033902407,0.077828757464886,-0.10025143623352]],[[-0.053060721606016,-0.057748351246119,0.024016905575991],[0.072467111051083,-0.002626925939694,0.039438754320145],[0.038435608148575,0.013116362504661,-0.02704118937254]],[[0.076001822948456,0.027462804690003,0.18624702095985],[-0.13461674749851,-0.1811808347702,-0.0049658115021884],[0.025559589266777,0.091471657156944,-0.063716441392899]],[[0.050212908536196,-0.086573503911495,-0.022281663492322],[-0.018618138507009,0.043257817625999,0.001950039411895],[0.00045545471948572,0.01213735062629,-0.0027382834814489]]],[[[-0.0034288712777197,-0.09832077473402,-0.094772353768349],[-0.058805111795664,-0.10460843145847,-0.13694636523724],[0.078958220779896,-0.07492583990097,-0.060254968702793]],[[-0.088107913732529,-0.019169591367245,0.11833662539721],[-0.0080135371536016,0.0331115052104,0.075630262494087],[0.070061028003693,-0.063562788069248,0.077827371656895]],[[0.085204802453518,-0.033711511641741,0.092462837696075],[-0.077972546219826,-0.13704280555248,-0.052811440080404],[0.076549179852009,-0.10070076584816,-0.0666513890028]],[[0.013641033321619,-0.04343655705452,0.01298488304019],[0.055728085339069,-0.1326609402895,0.14159971475601],[-0.06914845854044,-0.037470083683729,-0.11780796200037]],[[-0.0029246383346617,0.0001676601532381,-0.12377151846886],[-0.084112964570522,-0.011734790168703,0.05330041795969],[-0.10892952233553,0.0036968414206058,0.081869356334209]],[[-0.06064135581255,-0.023998972028494,0.0042761960066855],[-0.089054971933365,-0.089554123580456,0.0053628054447472],[0.0077909911051393,0.015777746215463,0.013013689778745]],[[-0.081917501986027,-0.13878419995308,0.051219787448645],[0.038217630237341,-0.076620236039162,0.014489044435322],[0.010861480608582,0.094345711171627,0.014104320667684]],[[-0.046108886599541,0.0257324334234,-0.016158735379577],[0.051375094801188,0.054373905062675,0.061915002763271],[-0.048156477510929,0.13267271220684,-0.03968058526516]],[[0.0057117282412946,-0.088378973305225,0.10933421552181],[-0.11171270906925,0.039029605686665,0.081998094916344],[0.021526159718633,0.051866263151169,-0.21592128276825]],[[-0.005696936044842,0.0001174308345071,-0.13788558542728],[-0.025101689621806,0.011421100236475,-0.10212437063456],[-0.080532193183899,-0.049030892550945,-0.0067969872616231]],[[0.03313609957695,0.046679295599461,-0.053424686193466],[-0.062713302671909,0.11946254968643,0.01273010764271],[0.1047830209136,0.038382016122341,0.024846261367202]],[[-0.047064404934645,0.048076488077641,-0.19173862040043],[0.040574971586466,0.051169618964195,0.063626922667027],[0.067117057740688,0.0097527522593737,-0.093650154769421]],[[-0.11126931011677,-0.15307138860226,-0.080478861927986],[-0.02408904209733,-0.033357597887516,0.054682783782482],[0.062745675444603,0.024793431162834,0.01460148114711]],[[-0.13901829719543,0.042327705770731,0.059627432376146],[0.012562616728246,0.087715834379196,0.057378001511097],[0.041198924183846,-0.049336481839418,-0.00059535086620599]],[[0.088042832911015,-0.043015006929636,0.072572790086269],[0.033231072127819,-0.14513930678368,0.062164094299078],[0.17144587635994,-0.16263325512409,-0.054613057523966]],[[-0.002766479505226,0.040002509951591,0.083820573985577],[-0.054316073656082,-0.16512799263,0.031788390129805],[0.0078124715946615,-0.010659019462764,-0.035991389304399]],[[-0.067455805838108,-0.054311331361532,-0.020153159275651],[-0.061877489089966,-0.00482237059623,0.058176565915346],[0.064095467329025,-0.057024322450161,-0.12638522684574]],[[-0.078360259532928,-0.033080525696278,0.12201424688101],[0.025526249781251,-0.082069523632526,-0.188736140728],[-0.066386826336384,-0.15498746931553,-0.028949182480574]],[[-0.017577420920134,-0.097596295177937,-0.21603234112263],[-0.08524152636528,-0.063419230282307,-0.082519583404064],[-0.086502633988857,-0.012149436399341,0.062823422253132]],[[0.06958843767643,-0.053591139614582,-0.072362795472145],[-0.024296028539538,0.053132876753807,0.066502153873444],[-0.065787948668003,-0.017804784700274,0.089632220566273]],[[-0.045644350349903,0.014025208540261,-0.0081897713243961],[0.031806733459234,-0.11369071900845,0.018077852204442],[0.18343330919743,0.037801265716553,0.022156504914165]],[[-0.037015274167061,0.0057661631144583,0.038778580725193],[-0.049603600054979,-0.060806009918451,0.052255887538195],[-0.017769426107407,-0.014772203750908,-0.0065131890587509]],[[0.069937683641911,-0.13380907475948,-0.0055823577567935],[0.13192474842072,-0.072757124900818,0.05295630171895],[-0.009035668335855,-0.018729196861386,0.02886595018208]],[[0.076479122042656,-0.1542958766222,-0.11592020839453],[0.20502409338951,0.059106081724167,0.14118079841137],[0.086747795343399,-0.012653491459787,-0.042282294481993]],[[-0.045501556247473,-0.12398442625999,-0.055649232119322],[0.19098223745823,0.010645108297467,-0.040019351989031],[0.0050706807523966,-0.0097511168569326,-0.10660170763731]],[[-0.0020173671655357,0.063602082431316,0.054602492600679],[-0.020069336518645,-0.055838644504547,0.024400455877185],[-0.04753515124321,-0.025297665968537,0.021650478243828]],[[-0.0049560009501874,0.10924511402845,0.085378609597683],[0.099303342401981,0.018827952444553,0.073607169091702],[-0.0037691567558795,0.15661935508251,-0.057243138551712]],[[0.049709152430296,0.047979149967432,0.11830403655767],[-0.074339121580124,-0.16454793512821,-0.025561630725861],[0.036958243697882,0.067568130791187,-0.17394384741783]],[[-0.085366204380989,-0.08717930316925,-0.069349884986877],[0.084165774285793,-0.0076623219065368,-0.070114992558956],[-0.043079495429993,-0.055505733937025,-0.13754367828369]],[[0.061301037669182,0.10620544105768,0.20543372631073],[-0.072050467133522,0.046344805508852,-0.084493301808834],[0.011430149897933,-0.0079197278246284,-0.017967756837606]],[[-0.11888093501329,-0.14050917327404,0.042521264404058],[0.066075399518013,-0.083806715905666,0.10804057121277],[-0.0097168767824769,-0.070562653243542,-0.046818625181913]],[[-0.1107699945569,0.015578100457788,-0.052201814949512],[-0.021164106205106,0.11841873079538,0.01469620782882],[0.061348598450422,-0.078757405281067,-0.042020730674267]],[[0.045058514922857,-0.080538161098957,0.096006006002426],[-0.010314140468836,-0.022774234414101,0.10342118889093],[0.13231036067009,0.022000707685947,0.15061658620834]],[[-0.1132288724184,0.09711617231369,-0.10574419796467],[0.012884782627225,-0.056705404073,0.11774788796902],[0.012247228063643,-0.0924923568964,0.066045619547367]],[[0.067776724696159,0.022566087543964,-0.10272159427404],[-0.0460708104074,-0.059570051729679,0.013216983526945],[-0.20374158024788,-0.038736935704947,0.053978521376848]],[[0.16754220426083,0.11664474755526,-0.0038577727973461],[0.012735012918711,0.018016232177615,0.12177053838968],[-0.12000858038664,0.0013869050890207,0.022002477198839]],[[0.25831946730614,0.083863988518715,0.041207112371922],[-0.068793810904026,-0.035953033715487,0.061793759465218],[0.27114775776863,-0.071588233113289,-0.075272873044014]],[[0.028464904054999,0.020623471587896,-0.1483501046896],[-0.050064876675606,-0.012480353936553,0.041395980864763],[-0.012379830703139,-0.070373766124249,-0.087972566485405]],[[0.076947174966335,0.016756327822804,-0.033638451248407],[0.089050136506557,-0.075799144804478,-0.039542321115732],[-0.032176960259676,-0.1132323667407,-0.03045267984271]],[[-0.064896635711193,-0.066301740705967,0.0463912114501],[-0.026600018143654,-0.031379316002131,0.0089129284024239],[0.043347012251616,-0.02971033193171,0.0046746912412345]],[[-0.0030219403561205,0.03401406109333,0.020126746967435],[0.11702082306147,-0.016832910478115,-0.05298774689436],[-0.13974057137966,0.045768335461617,-0.13498382270336]],[[0.0023245555348694,0.023923045024276,-0.072571843862534],[-0.057582467794418,0.02135912142694,0.029343396425247],[-0.083413332700729,0.0031484754290432,0.072727479040623]],[[0.029943054541945,0.059653542935848,-0.043065760284662],[-0.077285341918468,0.021040389314294,-0.10770773142576],[-0.042356718331575,-0.0730100274086,-0.10647305101156]],[[-0.23599137365818,0.084356844425201,0.0038829799741507],[0.054968059062958,0.065452568233013,-0.039833009243011],[0.020585585385561,0.076097473502159,-0.16592442989349]],[[-0.063280671834946,0.021290535107255,0.072988048195839],[-0.20502956211567,0.0089631648734212,0.12665444612503],[-0.14723049104214,-0.0095920562744141,-0.14413633942604]],[[-0.023018512874842,-0.0059636575169861,0.087970666587353],[-0.027625875547528,0.055226061493158,0.044859196990728],[-0.052256565541029,-0.024481479078531,-0.038789048790932]],[[-0.0041487840935588,0.048103291541338,0.12516467273235],[0.023121703416109,-0.13392259180546,-0.012929495424032],[0.032417859882116,0.020323662087321,0.055417209863663]],[[-0.1499305665493,-0.11177667230368,0.10505681484938],[-0.068863905966282,-0.22565121948719,-0.046317510306835],[0.12569913268089,-0.086197033524513,0.069988556206226]],[[-0.016583487391472,-0.060806035995483,0.066007159650326],[0.1633608341217,-0.12759558856487,-0.04592951387167],[0.035689394921064,0.10398560017347,-0.12037396430969]],[[-0.092594303190708,0.11699950695038,0.0047476477921009],[-0.0083424262702465,0.042231097817421,-0.090764999389648],[0.065454550087452,-0.033518571406603,0.093330718576908]],[[-0.1005821749568,-0.038994058966637,0.086109787225723],[0.06920425593853,-0.017276814207435,0.1404442191124],[-0.16563002765179,-0.0413798391819,0.046285711228848]],[[0.016665883362293,-0.16416983306408,0.050669047981501],[-0.04835494235158,-0.22873614728451,0.069252490997314],[-0.00057881569955498,0.12121674418449,0.028407642617822]],[[-0.032054655253887,0.15175114572048,-0.013585542328656],[0.025311972945929,0.016810975968838,-0.08635987341404],[0.062621012330055,0.011124979704618,0.080948919057846]],[[-0.040605086833239,0.073649160563946,-0.08691243827343],[-0.013139246962965,0.054816104471684,0.040738195180893],[-0.21281352639198,-0.032681606709957,0.081022948026657]],[[0.029340818524361,-0.026076085865498,-0.12360412627459],[-0.03280571475625,0.019950959831476,-0.039766248315573],[-0.024672642350197,0.13203103840351,-0.091328285634518]],[[0.042946632951498,0.019708750769496,0.05597548186779],[-0.089980497956276,0.017953850328922,0.10651244968176],[-0.11749622970819,0.039900597184896,0.07673904299736]],[[0.034164424985647,-0.052569128572941,0.21333311498165],[-0.16446708142757,0.041921827942133,-0.090424157679081],[-0.044099442660809,-0.068101570010185,0.081779137253761]],[[0.068460047245026,0.038405302911997,0.056238755583763],[0.041621565818787,-0.13231624662876,0.0010698912665248],[-0.020118776708841,-0.12282647192478,-0.079629510641098]],[[0.0068039800971746,-0.07363286614418,-0.028026077896357],[0.053872030228376,0.084005698561668,0.077247329056263],[0.029698604717851,0.014942236244678,0.05612476542592]],[[0.030854314565659,0.098588719964027,-0.02993094548583],[0.0024337684735656,0.0086113214492798,0.028298588469625],[-0.22373574972153,0.01098358258605,-0.0044696675613523]],[[0.042172953486443,-0.015590171329677,0.092833906412125],[0.05505707487464,-0.1330222338438,0.1561833024025],[-0.019021073356271,-0.048082232475281,0.12480708956718]],[[-0.094656459987164,-0.044629506766796,-0.04483437538147],[-0.058325182646513,0.096005566418171,-0.035415038466454],[-0.0092683285474777,0.061233889311552,0.071853041648865]],[[-0.027780469506979,-0.029715968295932,-0.10880705714226],[0.0062423422932625,0.15595601499081,0.051981005817652],[-0.20314621925354,-0.011590619571507,0.1277307420969]],[[-0.0047142249532044,-0.021640948951244,0.097821302711964],[-0.20633974671364,-0.065558329224586,0.072912566363811],[-0.17344158887863,-0.013907860964537,-0.057813867926598]]],[[[0.064839705824852,0.033326305449009,-0.016492074355483],[0.0060176244005561,0.038758635520935,0.034097194671631],[-0.075941547751427,-0.16246409714222,0.066842503845692]],[[-0.015318749472499,-0.091308273375034,-0.060709185898304],[0.0084898192435503,-0.053159981966019,0.093362875282764],[-0.077634118497372,0.075750678777695,0.016459895297885]],[[-0.11425968259573,-0.069918505847454,-0.00049218896310776],[-0.13330256938934,0.086037315428257,-0.081500448286533],[0.041207060217857,0.024832371622324,-0.084042944014072]],[[0.026983166113496,-0.0025325710885227,-0.049096994102001],[-0.15468676388264,-0.087027095258236,0.050968065857887],[0.014077956788242,-0.063804589211941,-0.087249830365181]],[[-0.10844688117504,-0.18231904506683,-0.053508758544922],[0.043542731553316,0.001626961864531,-0.0067456886172295],[-0.10537768900394,0.018444171175361,0.028845530003309]],[[-0.086829319596291,-0.075946629047394,0.055375915020704],[-0.088306769728661,-0.019994558766484,-0.11549388617277],[0.035779859870672,-0.0418073348701,-0.044351678341627]],[[-0.05716335400939,-0.038952022790909,-0.048524856567383],[-0.041611019521952,0.043972160667181,0.056228451430798],[0.13569706678391,0.050945691764355,0.07000033557415]],[[0.1332324296236,0.030872466042638,0.01963815651834],[0.049672067165375,0.052469182759523,0.1093490421772],[-0.011780679225922,0.074441812932491,0.14716793596745]],[[-0.12689635157585,-0.038209766149521,-0.044197004288435],[-0.023864468559623,-0.065824516117573,-0.075215026736259],[-0.077464744448662,-0.0038228973280638,-0.029416508972645]],[[-0.027795327827334,-0.12310764938593,0.072847679257393],[0.073997661471367,-0.13380789756775,-0.084508486092091],[-0.0071253976784647,0.1456922441721,0.0081449961289763]],[[-0.063242889940739,0.010812412947416,0.022601181641221],[-0.013334862887859,-0.056648850440979,-0.026991624385118],[-0.1196411922574,-0.20196618139744,-0.059537597000599]],[[-0.025330735370517,0.02250831015408,-0.01762886531651],[0.041120585054159,0.039884213358164,-0.088002882897854],[0.070162713527679,-0.040681477636099,-0.066634982824326]],[[0.031228333711624,-0.021639194339514,-0.084838554263115],[0.088612444698811,0.11126581579447,-0.046370178461075],[-0.040637739002705,0.022170541808009,0.053220104426146]],[[0.10217184573412,0.2501115500927,0.040346384048462],[0.10575996339321,0.024105193093419,0.032846733927727],[0.038551360368729,-0.12790276110172,0.14831563830376]],[[-0.00026866927510127,-0.085191145539284,-0.058127511292696],[-0.021031314507127,-0.1617439687252,0.014957589097321],[0.091581977903843,0.0036501155700535,0.031865444034338]],[[-0.021506302058697,-0.050115957856178,0.046722419559956],[-0.046870213001966,-0.11592136323452,-0.14494040608406],[-0.065820388495922,-0.096218064427376,-0.19541054964066]],[[-0.0074975728057325,0.095467522740364,-0.04441574960947],[0.12304779142141,0.021880047395825,-0.0042519550770521],[-0.015040259808302,-0.011018574237823,0.03573139756918]],[[-0.059269823133945,0.0045860223472118,0.2114159911871],[-0.019005250185728,0.015480815432966,0.044248662889004],[-0.053063467144966,-0.086866803467274,0.1002691835165]],[[-0.0030576998833567,-0.20253260433674,0.018410226330161],[0.080268263816833,-0.039708841592073,-0.034069810062647],[-0.17170189321041,0.03023824095726,0.0068469406105578]],[[0.087049409747124,0.06530037522316,-0.042451798915863],[-0.10916811972857,-0.08592014759779,0.01118067279458],[0.00079371040919796,0.085519194602966,-0.056284364312887]],[[0.15149217844009,-0.071242675185204,-0.0041610328480601],[-0.0057121943682432,0.091595008969307,0.041077207773924],[-0.061524242162704,-0.015243025496602,0.11407500505447]],[[0.00039025594014674,-0.045202814042568,-0.087475650012493],[0.020607406273484,0.018866682425141,-0.042137160897255],[-0.056088827550411,0.044656198471785,0.033730678260326]],[[-0.033022966235876,0.049189545214176,-0.0097894603386521],[-0.093388341367245,0.020640088245273,-0.11101812124252],[0.029771968722343,0.099009566009045,-0.087144888937473]],[[0.11201998591423,0.093008294701576,0.014755770564079],[0.1050825715065,-0.0084714768454432,-0.014588831923902],[0.10113397240639,0.10672182589769,0.033498875796795]],[[0.020510733127594,-0.25899344682693,-0.076787896454334],[-0.13389256596565,-0.090836971998215,0.0099648106843233],[0.043060146272182,-0.069605946540833,0.03641115128994]],[[-0.012998159974813,0.043650131672621,-0.025894934311509],[-0.048184726387262,-0.03327726572752,-0.0037315066438168],[0.024006938561797,-0.027096377685666,0.06295719742775]],[[-0.11238854378462,0.073551520705223,-0.0014539562398568],[-0.05334510281682,-0.047095023095608,0.038534037768841],[-0.1310034096241,-0.04642054438591,0.0033610195387155]],[[-0.050525866448879,-0.0026302998885512,-0.076538257300854],[0.070599645376205,0.10556508600712,-0.18563561141491],[-0.1099074408412,0.071186371147633,-0.023285195231438]],[[-0.045017831027508,-0.029402878135443,-0.039934579282999],[0.059033270925283,0.029296452179551,0.058721501380205],[0.07607688754797,0.10159090906382,0.027861848473549]],[[-0.022324070334435,-0.021064814180136,0.072667047381401],[-0.11605498939753,0.012802060693502,-0.039420153945684],[-0.11133486777544,-0.042644634842873,-0.12123370170593]],[[-0.23918673396111,0.069231137633324,0.0998215675354],[-0.099865913391113,-0.028774973005056,0.020184518769383],[0.00018305421690457,0.079580165445805,-0.050137903541327]],[[-0.0051257982850075,0.11676113307476,0.041764803230762],[0.092002086341381,-0.052234247326851,-0.089141860604286],[0.13513427972794,0.15867881476879,0.15107391774654]],[[0.051554657518864,-0.020780134946108,-0.020172242075205],[-0.027302406728268,0.0075827622786164,-0.089813202619553],[-0.1423351764679,0.028694668784738,-0.058149933815002]],[[0.001629167702049,0.040843613445759,-0.010781971737742],[0.008434671908617,-0.077312096953392,-0.053562518209219],[-0.05255476012826,-0.064178019762039,-0.11603710800409]],[[-0.11382773518562,-0.058354735374451,0.021108755841851],[-0.17089647054672,-0.081336624920368,-0.025142390280962],[0.14511233568192,0.15205164253712,0.16518771648407]],[[0.13629284501076,-0.03651637583971,-0.0034782341681421],[0.0081660309806466,0.0413933172822,0.0028928415849805],[0.0011795564787462,0.048239294439554,0.0056457980535924]],[[-0.03767953068018,0.15635226666927,0.11899590492249],[-0.014080168679357,-0.1003205254674,-0.034846104681492],[-0.067499496042728,0.048760272562504,0.038083229213953]],[[0.18584078550339,-0.097452715039253,-0.03134822845459],[0.070431113243103,-0.11965050548315,0.0067507275380194],[0.061068683862686,-0.019729651510715,0.10943564772606]],[[-0.19124795496464,-0.040445830672979,-0.022992696613073],[0.052343621850014,-0.018347857519984,0.0083894859999418],[0.079520158469677,-0.094187557697296,-0.094658046960831]],[[-0.018442243337631,-0.035875517874956,-0.037017688155174],[0.073015108704567,0.035207249224186,0.17092624306679],[0.033394776284695,-0.0074070459231734,0.010500125586987]],[[-0.11008749902248,-0.035850029438734,-0.022973891347647],[-0.12893986701965,-0.14844153821468,0.046535160392523],[-0.08853967487812,-0.043823663145304,-0.0091520911082625]],[[-0.013349869288504,-0.12586519122124,-0.0075163580477238],[-0.021466769278049,0.016432924196124,-0.089683704078197],[-0.063510432839394,0.14091263711452,0.10997817665339]],[[-0.04635563492775,0.17574933171272,0.063261218369007],[0.014871804043651,-0.098424479365349,-0.20265239477158],[0.086850449442863,0.12105243653059,-0.042620334774256]],[[-0.03332531824708,0.015089113265276,0.051168415695429],[-0.20759135484695,-0.16742837429047,0.038106061518192],[0.14607901871204,0.060295309871435,0.070983693003654]],[[-0.12900643050671,0.0055672531016171,-0.11258474737406],[-0.03816270083189,-0.20776955783367,0.042581550776958],[-0.016295844689012,-0.13941964507103,-0.0045612431131303]],[[-0.065899379551411,-0.04482190310955,-0.12320023030043],[0.0053194547072053,-0.04214333742857,0.041904922574759],[0.27799543738365,0.097689352929592,-0.042065732181072]],[[0.14122965931892,-0.097607605159283,-0.077913574874401],[0.071937918663025,-0.10882516205311,0.038682851940393],[-0.052128221839666,-0.066173978149891,-0.018000949174166]],[[0.085820108652115,-0.065061308443546,-0.001735107623972],[-0.014177957549691,0.0085069518536329,0.082456544041634],[-0.034889791160822,-0.0093699460849166,-0.13289548456669]],[[0.013578243553638,0.023554122075438,0.057448908686638],[-0.038606319576502,-0.001334794331342,-0.071773923933506],[-0.054963961243629,-0.0047324602492154,0.0061744707636535]],[[0.03052488155663,-0.0043146540410817,-0.096336081624031],[-0.2654949426651,0.094811074435711,-0.010675225406885],[0.23095950484276,0.097209572792053,0.17040412127972]],[[0.15622219443321,0.1801261305809,-0.033073745667934],[-0.015830844640732,-0.062420953065157,-0.037146106362343],[-0.066913582384586,-0.11024785786867,0.054912738502026]],[[0.095408126711845,-0.032207239419222,0.10959541797638],[-0.012061085551977,-0.010058029554784,0.025636594742537],[-0.20033876597881,0.10522461682558,-0.0050143748521805]],[[0.10493072867393,-0.096440024673939,0.15470691025257],[0.0023622894659638,-0.051136624068022,-0.078789614140987],[-0.16076968610287,-0.1197806969285,-0.14842197299004]],[[0.033042080700397,-0.010047267191112,0.1447743922472],[-0.02866673655808,0.069662503898144,0.092856362462044],[0.027523815631866,0.076835907995701,0.18493102490902]],[[-0.037972431629896,-0.078439868986607,-0.071170710027218],[-0.00086450565140694,0.014469330199063,0.053029865026474],[-0.11115376651287,-0.10212155431509,-0.032205373048782]],[[-0.00082530599320307,0.11091885715723,-0.057874768972397],[-0.010004891082644,-0.024450728669763,-0.041972283273935],[-0.055409461259842,0.11997371912003,0.073573730885983]],[[0.035247333347797,-0.12896759808064,0.10705132782459],[-0.070506915450096,-0.020548550412059,0.002492779167369],[-0.05767372623086,0.077448427677155,0.097877085208893]],[[0.021217321977019,-0.15136781334877,0.010384408757091],[0.14138785004616,0.029748963192105,-0.024289833381772],[-0.022491406649351,-0.097267657518387,-0.029263699427247]],[[0.12558333575726,-0.02026455104351,0.059188947081566],[0.010259262286127,0.070369951426983,0.054299488663673],[-0.066102810204029,0.0040786834433675,0.063181959092617]],[[0.15047279000282,-0.065421670675278,0.038381110876799],[0.16673146188259,0.20292070508003,0.051845025271177],[0.10007036477327,-0.026718750596046,0.033659923821688]],[[0.0014572809450328,-0.0232297424227,0.0063607892952859],[-0.07310076802969,-0.020144749432802,-0.0004101715167053],[-0.082644693553448,-0.018255151808262,-0.0017797435866669]],[[-0.042967986315489,-0.063363954424858,0.030355801805854],[0.023009430617094,-0.034195337444544,-0.038123615086079],[0.098998971283436,0.10857417434454,0.055482622236013]],[[-0.090720698237419,-0.20536509156227,0.019782088696957],[-0.04383247718215,0.006144205108285,0.042281605303288],[-0.082236394286156,0.10459143668413,0.046330310404301]],[[-0.024591533467174,0.033699780702591,0.061252728104591],[0.078768290579319,-0.07028666883707,-0.13398414850235],[-0.030947703868151,0.06143744289875,-0.086469702422619]]],[[[0.13302385807037,0.0067640468478203,0.084618367254734],[-0.082418665289879,-0.11031572520733,-0.11831575632095],[-0.026733843609691,0.043904177844524,0.016114290803671]],[[0.018461851403117,-0.10315392911434,-0.051195863634348],[-0.15310934185982,-0.020530864596367,-0.019257161766291],[0.031063968315721,0.046437833458185,-0.022963874042034]],[[-0.12172950059175,0.083269968628883,0.14410316944122],[-0.17475338280201,0.040504831820726,-0.16355180740356],[-0.1531343460083,-0.1807436645031,-0.21329744160175]],[[-0.01921814493835,0.088625907897949,0.10626143217087],[0.0010213654022664,-0.02761571854353,0.16017390787601],[-0.055241599678993,0.051496110856533,0.036606539040804]],[[-0.11399129033089,-0.031317703425884,0.069181151688099],[-0.14094254374504,0.019294777885079,-0.087788544595242],[-0.1358608007431,0.088570199906826,0.026127638295293]],[[-0.0041792970150709,-0.0056819957681,-0.10144756734371],[-0.066483192145824,-0.10889413207769,-0.053242042660713],[-0.092906937003136,-0.17026591300964,0.014170781709254]],[[-0.23587517440319,-0.057014651596546,0.092850431799889],[-0.17485511302948,-0.087149403989315,0.0088612604886293],[0.022409612312913,0.16615462303162,0.18431843817234]],[[0.03107943572104,-0.11107400804758,0.10755059868097],[0.016650550067425,-0.10553129762411,0.079854659736156],[0.069503039121628,-0.036872662603855,0.010487649589777]],[[0.083702936768532,-0.082868784666061,0.080316536128521],[-0.044945985078812,-0.044578641653061,0.019166914746165],[0.047993648797274,-0.1000824123621,0.064891509711742]],[[-0.045639291405678,0.11182253807783,0.12701539695263],[0.086430013179779,-0.024903170764446,-0.021065099164844],[-0.059491157531738,-0.093485489487648,0.049517832696438]],[[0.15038019418716,-0.0085566518828273,-0.10714679211378],[0.073320604860783,-0.0035411329008639,-0.057308506220579],[0.11584130674601,0.10873687267303,0.065394729375839]],[[0.053094364702702,0.032011725008488,-0.065179169178009],[-0.0068206824362278,-0.049089971929789,0.09355615824461],[0.014872504398227,-0.090989656746387,0.0032203809823841]],[[-0.10715122520924,-0.042021561414003,-0.19352005422115],[-0.044136188924313,-0.083032488822937,0.10020119696856],[-0.209851115942,-0.0074013075791299,0.042309250682592]],[[0.092694908380508,0.055341724306345,0.063038237392902],[-0.19784560799599,-0.15473762154579,-0.19632811844349],[-0.064969554543495,-0.012545539066195,0.2031241953373]],[[-0.071995735168457,-0.056886833161116,-0.23335808515549],[0.011247856542468,0.022070232778788,0.033679131418467],[0.025363409891725,-0.049072738736868,-0.094553999602795]],[[-0.019010610878468,-0.074601925909519,0.14091672003269],[0.075806468725204,0.030860869213939,-0.1667106449604],[0.24168993532658,0.044414255768061,-0.19319827854633]],[[-0.067487969994545,-0.043026588857174,-0.11186035722494],[-0.12402834743261,-0.078933827579021,-0.065616704523563],[-0.13935390114784,0.0034205419942737,0.087929219007492]],[[0.031903069466352,-0.10178122669458,-0.10617023706436],[0.048198603093624,-0.04589070007205,0.085073232650757],[0.066706299781799,-0.16641494631767,-0.11256874352694]],[[0.10333661735058,-0.071162715554237,-0.14817143976688],[0.074372887611389,-0.12534394860268,-0.095860846340656],[0.072351634502411,-0.027646077796817,0.0076221213676035]],[[0.032896775752306,-0.03367518261075,-0.18524856865406],[-0.042006529867649,-0.00045306191896088,0.029076809063554],[0.070641487836838,0.042796172201633,-0.12146882712841]],[[0.12358184158802,0.019832516089082,0.028542675077915],[0.044302195310593,0.076090127229691,-0.022385289892554],[-0.087502978742123,0.024868864566088,0.14123632013798]],[[0.010882898233831,0.060313116759062,-0.038796629756689],[-0.026773989200592,0.033576138317585,-0.050299074500799],[-0.060685217380524,-0.029862701892853,-0.054058063775301]],[[0.10052743554115,-0.083773247897625,-0.17471119761467],[0.032946884632111,-0.10215087980032,-0.044129509478807],[-0.060186628252268,0.10149335861206,0.0092078810557723]],[[-0.18133892118931,-0.083527289330959,-0.089645639061928],[-0.13658083975315,-0.1295860260725,0.12781666219234],[0.073353536427021,-0.016638545319438,0.1989664286375]],[[-0.0066854641772807,0.014747845008969,-0.037719763815403],[0.041728232055902,0.12738399207592,0.076334252953529],[0.011377948336303,0.016435246914625,0.047178454697132]],[[-0.090109556913376,-0.08668165653944,0.042718164622784],[-0.050291746854782,0.042596679180861,-0.020803190767765],[0.060949496924877,0.051512666046619,0.056718945503235]],[[-0.095880389213562,-0.063867263495922,-0.13161842525005],[-0.015071654692292,-0.15874287486076,0.14813123643398],[-0.14228072762489,-0.046723641455173,-0.026389328762889]],[[-0.042251173406839,-0.033759616315365,-0.15145999193192],[-0.005436644423753,-0.00061280914815143,0.087868049740791],[0.11412265151739,0.052116103470325,0.039756450802088]],[[-0.20454585552216,-0.024344498291612,-0.18311414122581],[-0.18609255552292,0.11095064878464,-0.0010540313087404],[-0.049441378563643,0.080180712044239,0.088133223354816]],[[0.0083565898239613,-0.018025955185294,0.036114528775215],[0.045347839593887,-0.048433318734169,-0.15343552827835],[0.019292557612062,0.09719018638134,-0.10332361608744]],[[-0.059112254530191,-0.07441683113575,-0.14489795267582],[-0.073800168931484,0.069229498505592,0.015991125255823],[-0.077463649213314,0.055706944316626,0.026695840060711]],[[-0.0070953690446913,0.10366374999285,-0.013316032476723],[-0.059760488569736,-0.0053440830670297,-0.079874500632286],[0.010706713423133,-0.0025766545441002,0.19077982008457]],[[-0.094967149198055,0.20760609209538,-0.015603119507432],[0.033226996660233,0.1278760433197,0.14754600822926],[-0.11410108208656,-0.077439941465855,-0.24594366550446]],[[-0.019125062972307,0.037138517946005,-0.057584647089243],[-0.065629161894321,0.15622764825821,0.044352605938911],[-0.02815780416131,0.0043962821364403,-0.11034396290779]],[[0.086405858397484,-0.051516011357307,-0.0064760465174913],[0.17618949711323,0.018168207257986,0.096080109477043],[-0.12060238420963,-0.024051576852798,0.054278757423162]],[[-0.070634640753269,-0.032068844884634,0.13495333492756],[0.059287998825312,-0.0086223687976599,0.15487726032734],[0.012700336053967,0.070239797234535,0.068437643349171]],[[0.23383817076683,0.25578263401985,0.052628200501204],[-0.038499023765326,-0.019148981198668,-0.06529576331377],[-0.08650729060173,0.033746425062418,-0.094563454389572]],[[-0.00096766767092049,-0.035281550139189,0.061279784888029],[-0.049243818968534,-0.16745941340923,-0.14560870826244],[-0.069922477006912,-0.090304546058178,0.096375994384289]],[[-0.21671786904335,0.046925250440836,0.023582877591252],[-0.012374242767692,0.0098972273990512,0.025425031781197],[-0.087574392557144,0.0032526412978768,-0.11296524852514]],[[-0.16460181772709,0.045299101620913,0.054523255676031],[-0.087451800704002,-0.09132707118988,-0.062495145946741],[0.026451362296939,-0.020892465487123,0.11032775789499]],[[-0.12020006030798,-0.17322874069214,0.073006898164749],[-0.024136267602444,-0.059659995138645,0.1323443800211],[-0.0091329701244831,-0.033942967653275,0.19136179983616]],[[-0.029815476387739,-0.018308334052563,-0.050164718180895],[-0.010127539746463,0.015000893734396,-0.050846710801125],[0.016180623322725,0.060832284390926,0.087928503751755]],[[0.15590827167034,-0.095012836158276,0.19398082792759],[-0.017394635826349,-0.14066685736179,-0.27983340620995],[0.045074950903654,-0.0084744859486818,0.062089938670397]],[[0.12859359383583,-0.035007622092962,0.071034148335457],[-0.010777693241835,-0.014695253223181,-0.017128886654973],[0.036380391567945,-0.061389956623316,0.039867173880339]],[[0.063257440924644,-0.023096298798919,0.047268483787775],[-0.05756563320756,-0.14683046936989,0.12439016252756],[-0.039576385170221,-0.067617997527122,0.034303560853004]],[[-0.014552706852555,0.17773771286011,0.12626744806767],[0.11184239387512,-0.016336360946298,-0.032903470098972],[-0.031886365264654,-0.074996240437031,-0.074150502681732]],[[-0.03497114777565,-0.088175639510155,0.043368332087994],[-0.042247012257576,0.027764918282628,0.16879378259182],[-0.0069101513363421,-0.07152634114027,-0.15497063100338]],[[-0.086420029401779,-0.072272516787052,-0.1840954720974],[-0.069330781698227,-0.083959832787514,0.014453619718552],[-0.11086889356375,0.014045880176127,-0.00369430356659]],[[-0.12064811587334,0.1099710687995,-0.032650340348482],[-0.051090925931931,-0.028494231402874,-0.18416449427605],[-0.19421969354153,-0.034269984811544,-0.22678536176682]],[[0.20236794650555,0.10414550453424,0.021662048995495],[2.1996098439558e-05,-0.064736545085907,-0.0089637152850628],[-0.00094810634618625,-0.0048575680702925,0.087131470441818]],[[-0.075258761644363,0.0015973892295733,-0.030706865713],[0.031499914824963,0.052148468792439,0.07435867190361],[0.082693293690681,0.16168227791786,-0.061844170093536]],[[0.10581703484058,0.0264837089926,-0.20337325334549],[-0.065179772675037,-0.18122731149197,0.1279017329216],[0.10845738649368,-0.13360197842121,-0.11311545968056]],[[0.0076368884183466,0.06734810769558,0.001280335127376],[0.009593210183084,-0.064509488642216,0.072705194354057],[-0.0092346770688891,-0.15344089269638,-0.093705765902996]],[[0.03812637925148,0.080853559076786,0.0017370858695358],[-0.10497154295444,-0.053546994924545,0.048591028898954],[0.020474519580603,0.011315149255097,0.1395153850317]],[[0.064745739102364,-0.16863825917244,-0.074582062661648],[0.053665742278099,-0.16638334095478,0.025058124214411],[0.071542128920555,-0.025466594845057,-0.25362575054169]],[[0.074664935469627,0.038988463580608,-0.035856183618307],[0.046737596392632,0.11872392892838,0.15630574524403],[0.0473303347826,0.086836867034435,0.11449012905359]],[[0.057065434753895,0.11086431890726,-0.068015858530998],[-0.14218056201935,-0.016468228772283,-0.075768873095512],[0.019152203574777,-0.11466324329376,-0.020876366645098]],[[0.099062576889992,-0.14311495423317,-0.14044791460037],[0.062872260808945,-0.097069032490253,0.0086258007213473],[0.067620418965816,-0.1098488047719,-0.21165032684803]],[[0.061844814568758,0.020727433264256,0.098932802677155],[0.0032046425621957,-0.027922896668315,0.053317822515965],[0.010977628640831,0.047071404755116,0.12253525853157]],[[-0.12108793109655,-0.075208783149719,-0.063245259225368],[-0.1619974821806,-0.035914190113544,0.018942771479487],[-0.17223653197289,-0.022564813494682,-0.065657317638397]],[[-0.10169813036919,-0.016768636181951,-0.049470458179712],[-0.16947694122791,0.040995229035616,0.084143556654453],[0.031127182766795,0.07076707482338,0.047575429081917]],[[-0.023990189656615,0.029044298455119,0.0058812922798097],[-0.09947781264782,-0.05831790342927,0.034450616687536],[-0.11044703423977,-0.004043338354677,0.18594188988209]],[[-0.046912804245949,0.11586397886276,-0.04081929475069],[-0.21530342102051,0.046330209821463,-0.11077343672514],[0.087036140263081,0.1459085047245,0.23897194862366]],[[0.037648670375347,0.056591514497995,0.18583171069622],[-0.073379270732403,-0.045909762382507,-0.030803291127086],[0.061062138527632,0.063214875757694,0.01473614666611]]],[[[0.010484408587217,-0.044773194938898,0.017124116420746],[-0.00019757387053687,-0.061983782798052,0.064361579716206],[0.01777701638639,-0.037462741136551,0.014850932173431]],[[-0.29839825630188,-0.0073196436278522,-0.010654595680535],[-0.13361886143684,-0.12191148102283,-0.01051458157599],[-0.017920849844813,0.10561200231314,-0.13701744377613]],[[0.011568178422749,-0.039007868617773,0.052633073180914],[0.043366625905037,-0.18954163789749,-0.085145525634289],[-0.11340449750423,-0.13351461291313,-0.065811522305012]],[[0.057849660515785,-0.042416181415319,-0.029299136251211],[0.0061611463315785,-0.083078913390636,0.073645390570164],[-0.032156083732843,-0.03997640684247,-0.054172642529011]],[[0.0047616115771234,0.060884237289429,-0.016463419422507],[0.07220958173275,0.10699031502008,-0.035143099725246],[-0.044649980962276,0.16495141386986,-0.069768242537975]],[[-0.097716234624386,0.061353534460068,0.047969859093428],[-0.037846349179745,-0.0081020975485444,0.0099071944132447],[-0.050515700131655,-0.0089243454858661,-0.047570787370205]],[[-0.031852152198553,0.0072640036232769,-0.013471470214427],[-0.029934767633677,-0.041698802262545,0.031434718519449],[0.14899636805058,0.031292766332626,0.084619112312794]],[[-0.15762414038181,-0.10923257470131,-0.14701533317566],[-0.033513646572828,-0.14402617514133,0.035654317587614],[0.41659620404243,-0.050934307277203,0.0041526206769049]],[[-0.0089088287204504,-0.037419840693474,-0.012517478317022],[0.11503837257624,-0.062194027006626,-0.022745534777641],[0.087237305939198,-0.067855998873711,0.025591172277927]],[[0.084204480051994,-0.029735228046775,-0.10740234702826],[0.055705197155476,0.010000299662352,0.034358642995358],[0.051929153501987,-0.038969233632088,-0.076824195683002]],[[0.093459904193878,0.028506657108665,0.068610824644566],[-0.0014041467802599,-0.087134942412376,0.00075247255153954],[-0.095529980957508,-0.075234815478325,-0.11450609564781]],[[-0.31065371632576,0.079804427921772,-0.11007682979107],[-0.060786172747612,0.034205727279186,-0.059499345719814],[-0.043278902769089,0.076065897941589,0.00078590260818601]],[[-0.022754056379199,-0.04518748447299,0.012687303125858],[0.11298294365406,0.035518154501915,0.037274081259966],[0.24729046225548,-0.085963644087315,0.045233685523272]],[[0.1235471367836,-0.44609719514847,-0.04033051431179],[-0.060103189200163,-0.049811039119959,-0.10653502494097],[0.011078031733632,0.19519299268723,-0.082854196429253]],[[-0.0016380125889555,-0.066005125641823,0.09276332706213],[0.027913616970181,-0.12429784238338,0.057047609239817],[-0.21943348646164,-0.099637255072594,0.020721511915326]],[[0.039767578244209,-0.10168916732073,-0.037843927741051],[0.06994741410017,-0.044808365404606,-0.05326534062624],[0.020351715385914,-0.084385931491852,-0.031059686094522]],[[-0.087660081684589,-0.12274246662855,-0.12690201401711],[-0.02840480953455,-0.017457161098719,0.10629008710384],[0.057564970105886,0.048443738371134,0.098958633840084]],[[-0.24902355670929,0.016845300793648,0.068304471671581],[-0.10403201729059,0.034253168851137,0.12559102475643],[0.027401562780142,-0.012586675584316,-0.019183972850442]],[[0.0094736535102129,0.013824733905494,-0.043642856180668],[0.16426162421703,-0.1283545345068,-0.08304587751627],[0.067508950829506,0.0016661089612171,-0.04969085752964]],[[0.069253146648407,0.12504422664642,-0.067579030990601],[0.017930883914232,-0.0085975425317883,0.064382791519165],[-0.062926419079304,0.01895759999752,-0.054637540131807]],[[0.084900014102459,0.013531184755266,0.066973805427551],[-0.011117641814053,-0.10188594460487,-0.024889472872019],[0.072963178157806,-0.031629450619221,0.082080140709877]],[[-0.029932353645563,-0.064210020005703,0.019125960767269],[0.012066333554685,-0.030921531841159,-0.078685827553272],[0.0181700643152,0.018487537279725,-0.022584740072489]],[[-0.052018389105797,0.044723872095346,-0.00099820282775909],[-0.20325119793415,-0.0095071047544479,-0.087580114603043],[-0.070915333926678,-0.14769096672535,-0.0027499676216394]],[[0.013451094739139,-0.023081170395017,-0.042549420148134],[0.068996831774712,0.11649775505066,0.012304563075304],[0.19365441799164,0.15353308618069,-0.02939996868372]],[[0.11043502390385,-0.19921661913395,-0.073518864810467],[-0.043188858777285,-0.066397219896317,-0.096154548227787],[0.11070568114519,0.03110988996923,0.060465548187494]],[[0.033873684704304,0.031644649803638,-0.0025047878734767],[-0.014131091535091,0.0089464392513037,-0.011086930520833],[-0.049499779939651,-0.028585404157639,0.0094732297584414]],[[0.047157373279333,0.13960255682468,0.027734691277146],[-0.043227002024651,-0.0032781879417598,-0.0066632027737796],[-0.17831560969353,0.06867266446352,0.085555426776409]],[[-0.013175079599023,0.038395654410124,0.090754061937332],[0.15862481296062,-0.067333944141865,-0.075047217309475],[0.083188563585281,-0.15691860020161,0.078450210392475]],[[0.022540058940649,-0.02653893083334,0.083360277116299],[-0.10546618700027,0.024378303438425,-0.054421108216047],[-0.080218121409416,0.076007351279259,0.018160089850426]],[[0.06110231205821,-0.011866469867527,0.04583989828825],[0.012244706042111,0.043851908296347,-0.0015247303526849],[0.097302168607712,-0.086052693426609,0.0022033252753317]],[[0.13202683627605,-0.064269937574863,-0.15482948720455],[0.12822385132313,0.10330813378096,0.0041004209779203],[0.061687130481005,-0.019037531688809,0.15232008695602]],[[0.12855985760689,-0.045380413532257,-0.19164417684078],[0.073678486049175,0.070519864559174,-0.041949298232794],[0.047381293028593,0.17613169550896,-0.010144525207579]],[[-0.10098670423031,-0.056557770818472,-0.11122124642134],[-0.01555862557143,-0.033128172159195,0.018911378458142],[-0.15438537299633,0.092817947268486,-0.010513153858483]],[[0.094148196280003,0.091791406273842,0.0033637655433267],[-0.066083565354347,0.080521658062935,-0.028034327551723],[-0.098209455609322,-0.054339755326509,-0.044043228030205]],[[-0.05021445453167,0.11730720847845,-0.15420132875443],[0.01118627935648,0.025757251307368,-0.019747937098145],[-0.055889721959829,0.0071655036881566,0.16156351566315]],[[0.15845699608326,0.06875778734684,0.0057838554494083],[0.15603955090046,-0.053058907389641,0.0080542992800474],[-0.0072891735471785,-0.093012467026711,-0.09088160097599]],[[0.17969106137753,-0.0078853908926249,0.034999340772629],[-0.038387816399336,0.069904997944832,0.028130561113358],[-0.0074331499636173,0.14195336401463,-0.12604826688766]],[[-0.21462689340115,0.072745814919472,0.040959618985653],[0.0033110252115875,-0.079811319708824,-0.082112722098827],[0.24260766804218,-0.23485547304153,-0.028030661866069]],[[-0.23118121922016,-0.00071528076659888,-0.034885492175817],[-0.09399551153183,-0.024118714034557,0.0016903803916648],[-0.090579725801945,0.032162677496672,0.012019782327116]],[[0.054174922406673,-0.056443031877279,0.03541911765933],[-0.017340932041407,-0.01861466653645,-0.0047224722802639],[-0.10212901979685,0.065049037337303,0.011527265422046]],[[0.028242269530892,0.047893866896629,0.084795251488686],[-0.0090051731094718,0.085948646068573,0.064069539308548],[-0.16777929663658,0.16757117211819,0.050339426845312]],[[-0.079771265387535,-0.12411561608315,-0.13324229419231],[-0.015877574682236,-0.10994553565979,0.016010839492083],[0.1604450494051,-0.11351873725653,-0.031779896467924]],[[-0.0029454841278493,-0.072438061237335,0.037021141499281],[-0.12313108891249,0.019482780247927,0.065227262675762],[0.01782956533134,0.096000261604786,-0.025319579988718]],[[-0.13081760704517,0.13469459116459,-0.12908783555031],[-0.06021174788475,0.063472852110863,-0.1032492890954],[-0.061367087066174,0.041762981563807,0.0042684720829129]],[[-0.099353909492493,0.16992169618607,-0.032871503382921],[-0.0085875978693366,0.053911421447992,-0.019841063767672],[-0.091554366052151,-0.044556394219398,-0.1391731351614]],[[-0.038717560470104,0.063180573284626,0.017312776297331],[-0.048339303582907,-0.11035405099392,-0.012728122062981],[0.031633470207453,-0.044444516301155,-0.090465232729912]],[[0.1159158423543,0.039392478764057,0.12460442632437],[0.07367766648531,-0.068163886666298,-0.028012031689286],[0.021895026788116,-0.12423199415207,0.0085133668035269]],[[-0.11135758459568,-0.1601223051548,-0.021964268758893],[0.0089694438502192,-0.018492378294468,-0.095613472163677],[0.068172112107277,-0.051969897001982,-0.011530584655702]],[[-0.070263594388962,-0.047315903007984,0.044713258743286],[0.037718258798122,-0.047381423413754,0.015135494992137],[0.028594668954611,-0.085859574377537,-0.086228981614113]],[[0.040663812309504,0.052629359066486,0.093403451144695],[0.085527472198009,-0.031514219939709,-0.035640101879835],[0.17654295265675,-0.21051450073719,-0.22096166014671]],[[-0.2070349752903,0.25752660632133,-0.20160549879074],[-0.045618135482073,0.0325797945261,0.075612552464008],[0.095658458769321,-0.0024718574713916,0.069756276905537]],[[-0.014688304625452,0.16424830257893,0.11857444047928],[-0.028820184990764,-0.030860686674714,-0.0059642363339663],[-0.10571913421154,-0.086556568741798,0.14771588146687]],[[-0.18405914306641,0.049445066601038,0.032699473202229],[-0.088792972266674,0.054827410727739,0.023708848282695],[-0.20181393623352,0.079110734164715,0.17199315130711]],[[0.012912608683109,-0.10982026904821,0.13266424834728],[0.030317254364491,-0.097444757819176,0.063600584864616],[0.18484751880169,-0.12422759085894,-0.023208303377032]],[[-0.044394847005606,0.054767332971096,0.022459041327238],[0.085789859294891,-0.063390873372555,0.023403720930219],[-0.10040987282991,-0.11483868956566,-0.023088460788131]],[[-0.017180783674121,-0.0033553531393409,-0.044239949434996],[0.042856998741627,0.030182715505362,0.039264254271984],[0.056087613105774,0.071133933961391,-0.022106470540166]],[[-0.033011250197887,0.15043221414089,-0.10199376940727],[0.09730701893568,-0.065331637859344,0.072223193943501],[0.13634790480137,0.025632601231337,-0.022840211167932]],[[-0.060185175389051,-0.032707825303078,0.001954278210178],[-0.015491714701056,0.052874948829412,-0.019566513597965],[0.038385849446058,-0.078032411634922,-0.06232837215066]],[[-0.0013001747429371,-0.012734699994326,0.13225392997265],[0.09998582303524,0.017800372093916,0.023655196651816],[0.10160841792822,0.078211449086666,-0.007361507974565]],[[0.054298110306263,0.02263717353344,0.075546279549599],[-0.091298878192902,0.15127225220203,-0.032622471451759],[-0.10185136646032,-0.019569467753172,-0.043884210288525]],[[0.16901923716068,-0.15647876262665,-0.02106792293489],[-0.14888840913773,-0.015756180509925,-0.010117569938302],[-0.11146605759859,0.075808703899384,0.02475349791348]],[[-0.2722814977169,0.021679997444153,0.11800823360682],[-0.2070686519146,-0.081063061952591,0.040014233440161],[-0.10167202353477,-0.14877818524837,-0.06377175450325]],[[-0.063248701393604,-0.013203557580709,0.12522704899311],[-0.0066038658842444,-0.040472876280546,0.045105323195457],[0.13669463992119,-0.07597292214632,-0.027827776968479]],[[0.16077680885792,0.089621379971504,0.075117245316505],[-0.061924308538437,-0.027023555710912,0.01526993047446],[-0.05988521873951,-0.040696773678064,-0.136364325881]]],[[[-0.32106006145477,-0.10992472618818,-0.1291638314724],[-0.17867977917194,-0.13166698813438,-0.21900050342083],[-0.057637017220259,-0.088351175189018,-0.095607258379459]],[[-0.21133820712566,0.017259702086449,0.073711656033993],[-0.11941654980183,-0.037044163793325,-0.068002723157406],[-0.17108033597469,-0.028988674283028,-0.043557416647673]],[[-0.075199946761131,0.027008393779397,-0.071987479925156],[0.034900326281786,-0.19260308146477,-0.066520243883133],[-0.16308784484863,-0.20261852443218,-0.060437243431807]],[[-0.029471516609192,-0.19473108649254,-0.20112243294716],[-0.086803339421749,0.0093565145507455,-0.0050705620087683],[0.15943126380444,0.15873874723911,0.0066311215050519]],[[0.040108062326908,0.062354274094105,-0.15502306818962],[-0.00045723840594292,0.014358676038682,-0.10732915252447],[-0.088034488260746,-0.095854997634888,-0.086216226220131]],[[-0.075393579900265,0.047925774008036,0.0094678262248635],[0.042942941188812,-0.02071563526988,0.03087218105793],[0.0022884956561029,-0.099134303629398,-0.098521180450916]],[[-0.17216257750988,0.059959188103676,-0.027051601558924],[-0.089669197797775,-0.051346581429243,-0.13152600824833],[-0.18764974176884,0.068606019020081,0.13003148138523]],[[-0.094167850911617,-0.025133848190308,-0.0019841080065817],[-0.080707423388958,-0.10875110328197,-0.016337199136615],[0.042341221123934,-0.030843345448375,0.09863518178463]],[[-0.21373251080513,-0.16805399954319,-0.12978060543537],[0.01075595151633,-0.051999296993017,-0.11806918680668],[0.10960488021374,-0.062854714691639,-0.12777577340603]],[[-0.19581645727158,-0.11653462052345,-0.097453497350216],[0.013831536285579,0.094469353556633,-0.0096664698794484],[0.034191653132439,-0.0074229603633285,-0.088394418358803]],[[0.055955726653337,-0.0050510331057012,-0.041447184979916],[0.020535172894597,-0.07000669836998,-0.13961966335773],[-0.23935705423355,-0.040690876543522,0.13043269515038]],[[-0.015461331233382,-0.064097106456757,-0.1168427914381],[-0.023781007155776,-0.014957793988287,-0.0097195133566856],[0.029809314757586,0.15639473497868,0.02744715474546]],[[0.060621667653322,0.068037062883377,-0.059016287326813],[0.058584976941347,-0.029646523296833,-0.0096768578514457],[-0.13283875584602,-0.052898790687323,-0.020332911983132]],[[-0.077086560428143,0.25193080306053,-0.011479263193905],[-0.012243179604411,-0.17589402198792,-0.26723182201385],[-0.090966895222664,-0.026775147765875,0.18020169436932]],[[-0.046025462448597,-0.06536415964365,0.040832486003637],[-0.035733602941036,0.11861836910248,0.09625094383955],[-0.038761802017689,0.099165432155132,0.053430903702974]],[[0.038928657770157,-0.064060293138027,0.17497834563255],[-0.072543859481812,-0.13206730782986,-0.080188184976578],[0.045619182288647,-0.087068967521191,-0.14591102302074]],[[-0.11163975298405,0.066820278763771,-0.051616255193949],[0.095847718417645,0.027598269283772,-0.04662224277854],[0.15473413467407,0.12873308360577,-0.019728856161237]],[[-0.020351950079203,-0.011142766103148,-0.048116199672222],[-0.02592390216887,-0.18613052368164,0.03526846319437],[0.06797318905592,0.077324531972408,-0.101229198277]],[[-0.066160917282104,-0.0030867785681039,-0.22298806905746],[0.040221869945526,-0.12526662647724,0.030651805922389],[0.010930310003459,-0.011257863603532,0.015514423139393]],[[-0.085046641528606,-0.15905469655991,-0.11335479468107],[-0.067497037351131,-0.068060912191868,0.066283471882343],[-0.1668257266283,0.038304582238197,0.076355114579201]],[[-0.01138555817306,-0.11818958073854,-0.064572788774967],[-0.11186560988426,0.1448285728693,0.20988503098488],[-0.2586812376976,-0.045235931873322,-0.075593754649162]],[[-0.11438968777657,-0.020168278366327,0.009659037925303],[-0.17134906351566,-0.015186164528131,0.10277592390776],[-0.010970042087138,0.041303526610136,0.015458298847079]],[[-0.056259915232658,-0.013194200582802,-0.092662803828716],[-0.0086738662794232,-0.13621474802494,-0.1425359249115],[0.16433840990067,-0.0052093309350312,0.11886882036924]],[[0.23087732493877,0.14120808243752,-0.094346724450588],[0.12630632519722,-0.067183881998062,-0.1563865840435],[-0.037022922188044,-0.16345208883286,0.14064788818359]],[[0.050025943666697,-0.058745987713337,-0.0043941931799054],[-0.039157267659903,0.12517526745796,0.16085611283779],[0.083651326596737,0.049140922725201,0.058999434113503]],[[0.10803706198931,-0.087010778486729,-0.10102070122957],[0.058426525443792,0.031105954200029,-0.025784125551581],[0.032119143754244,-0.060554955154657,0.0096039948984981]],[[-0.10561921447515,-0.073338113725185,0.03246683999896],[0.10148703306913,0.009632894769311,0.036525350064039],[-0.23076204955578,-0.23523676395416,0.0048279827460647]],[[-0.031545840203762,-0.13421192765236,0.019043944776058],[0.12858292460442,0.022861426696181,-0.0097175361588597],[0.052733354270458,-0.03474797308445,-0.073562830686569]],[[-0.19433565437794,0.016730826348066,-0.097138442099094],[-0.033514477312565,-0.00097843038383871,0.029449271038175],[0.13021895289421,-0.0154476929456,-0.070671752095222]],[[0.14207436144352,0.10201682150364,-0.057266347110271],[0.15207105875015,0.017317732796073,-0.06656689196825],[-0.010998524725437,-0.04694950953126,0.027387380599976]],[[0.092334821820259,0.0024394241627306,0.017283735796809],[-0.11385508626699,0.038574282079935,0.14435966312885],[-0.078748933970928,0.039113365113735,0.080981306731701]],[[0.050129283219576,-0.029730919748545,-0.13732655346394],[0.02229830622673,0.075305141508579,-0.0087294280529022],[0.1100527793169,0.071131400763988,0.15509468317032]],[[-0.2486747354269,-0.058207035064697,-0.012291662395],[0.16378846764565,0.016375929117203,0.082908533513546],[-0.01513115875423,0.010136840865016,0.0095300152897835]],[[-0.027790181338787,-0.039257206022739,0.013567167334259],[-0.028446508571506,-0.074988782405853,0.071680188179016],[0.13069662451744,-0.080606363713741,-0.24978157877922]],[[-0.014255014248192,-0.04277515783906,-0.1342014670372],[-0.0078961672261357,-0.014251336455345,0.14779794216156],[-0.14287050068378,0.010452570393682,0.23258382081985]],[[0.082263596355915,0.084208391606808,0.1707871556282],[0.084712989628315,0.036135621368885,-0.017296761274338],[-0.037353955209255,0.037755243480206,0.092408828437328]],[[0.45018264651299,-0.076265908777714,-0.27463859319687],[0.05485762655735,0.26724255084991,0.25700360536575],[-0.073792822659016,0.16881747543812,0.095905587077141]],[[0.096055716276169,0.041631869971752,0.087683610618114],[0.012805541977286,0.076241925358772,-0.036319006234407],[-0.14497132599354,-0.23673704266548,0.02178743481636]],[[-0.035691551864147,0.026360709220171,-0.035968914628029],[0.072716563940048,0.030855605378747,0.01511488109827],[-0.059953514486551,-0.06288942694664,-0.1358950138092]],[[-0.060049951076508,0.019194349646568,-0.13538950681686],[0.12957707047462,0.019774239510298,-0.14823558926582],[0.2802669107914,0.14008629322052,-0.067293033003807]],[[-0.10053583979607,-0.12921120226383,0.0025797211565077],[0.13237725198269,0.038196843117476,0.091290466487408],[0.016342235729098,0.12279085814953,9.6600015240256e-05]],[[-0.1093247756362,0.013617726974189,0.047873113304377],[0.0058868862688541,-0.080025747418404,-0.038813814520836],[0.013514067977667,-0.046351637691259,-0.062081061303616]],[[0.043853580951691,-0.038763478398323,0.028119491413236],[-0.057112839072943,-0.12556473910809,-0.10788770020008],[-0.1481204777956,-0.16435599327087,-0.051052518188953]],[[0.14923189580441,-0.070179872214794,0.010846371762455],[0.13932865858078,0.12099903076887,0.05028023570776],[-0.093946896493435,-0.03390784189105,-0.082857988774776]],[[0.0043410300277174,0.060308896005154,-0.012042047455907],[-0.15672059357166,-0.0077735716477036,-0.1321008503437],[0.15650813281536,0.036487232893705,0.037584491074085]],[[-0.010376174934208,0.07499997317791,0.27767607569695],[0.15706415474415,-0.023699963465333,-0.18302324414253],[-0.18463088572025,-0.17861331999302,0.050377547740936]],[[0.021911531686783,0.028675127774477,-0.027068005874753],[-0.083591714501381,0.046588748693466,0.16074565052986],[0.13901354372501,-0.003705388866365,0.019740408286452]],[[0.010002941824496,-0.024467021226883,-0.11653743684292],[0.088344417512417,-0.042619705200195,0.057034451514482],[-0.13503223657608,0.1251902282238,0.043526865541935]],[[-0.087180726230145,0.047708131372929,0.13781318068504],[-0.1283096820116,0.037374150007963,0.18320959806442],[0.070389501750469,-0.074791513383389,0.086003065109253]],[[0.1169943138957,0.16198143362999,0.12268394976854],[-0.010367979295552,0.10205485671759,0.16111949086189],[-0.057528797537088,-0.19836547970772,0.025039000436664]],[[-0.30204489827156,-0.15082132816315,-0.10585998743773],[-0.010953989811242,0.026399718597531,0.0056716133840382],[0.0030134574044496,0.046677358448505,0.11062072962523]],[[-0.17958571016788,-0.13402205705643,-0.31056845188141],[0.091594457626343,-0.21207657456398,-0.17541219294071],[-0.068366460502148,-0.10348029434681,-0.057429548352957]],[[-0.012613375671208,0.045042723417282,0.067305490374565],[-0.09770243614912,-0.08952422440052,-0.052629563957453],[0.094128325581551,-0.1225902363658,-0.11062427610159]],[[-0.030841108411551,0.023641459643841,-0.0023805478122085],[0.036731641739607,0.0042871171608567,0.033117689192295],[-0.085723645985126,0.082407668232918,0.085972025990486]],[[0.049044281244278,-0.077794007956982,-0.018749026581645],[0.084485225379467,-0.0017296957084909,0.03918070346117],[-0.17898797988892,-0.030553180724382,-0.104013890028]],[[-0.07814884185791,-0.046829521656036,0.24930940568447],[-0.10000641644001,-0.016238650307059,0.065130271017551],[0.062565110623837,-0.015837449580431,-0.074767239391804]],[[-0.073104552924633,0.10674704611301,-0.075795508921146],[0.088418692350388,-0.18680919706821,-0.053040839731693],[0.094116553664207,0.040201552212238,-0.032755687832832]],[[-0.043857716023922,-0.18551614880562,0.035884510725737],[0.021867347881198,0.017910405993462,0.02797120064497],[-0.076375298202038,-0.066647030413151,0.049820229411125]],[[0.19062702357769,0.086468823254108,0.025916332378983],[0.0079256631433964,-0.022035866975784,0.13909330964088],[0.067884221673012,0.072786182165146,0.06404273211956]],[[-0.12390118092299,0.056671615689993,0.033708672970533],[0.03461030125618,0.013510058633983,0.024255711585283],[0.15585844218731,0.034221198409796,0.05953462049365]],[[-0.06742849946022,-0.11144240945578,-0.094444364309311],[-0.18710742890835,-0.25829058885574,0.13230150938034],[0.037121023982763,0.0082370694726706,0.037353001534939]],[[0.21041910350323,0.015659088268876,-0.011110839433968],[0.020239593461156,-0.074815385043621,0.055863305926323],[0.069631524384022,-0.027687918394804,-0.029692634940147]],[[-0.087133131921291,-0.092500455677509,-0.10315593332052],[-0.31352627277374,-0.23942038416862,-0.11526504904032],[0.22012956440449,0.17539367079735,0.3147999048233]],[[-0.11592648923397,-0.1490930467844,0.1736027598381],[0.26567324995995,0.20368021726608,-0.016761591657996],[-0.1345482468605,-0.04734593257308,-0.068281129002571]]],[[[-0.10253310203552,-0.076749660074711,-0.015836417675018],[-0.025811336934566,-0.03213682025671,-0.036346506327391],[0.12481214106083,0.016934935003519,0.02698589861393]],[[-0.17471408843994,-0.15886594355106,-0.098510257899761],[-0.14911060035229,0.071460954844952,0.020162140950561],[-0.016530126333237,0.093237236142159,-0.081600725650787]],[[-0.083726659417152,-0.019254360347986,-0.017983568832278],[-0.19036936759949,-0.047867078334093,-0.098972760140896],[0.051545448601246,0.067896626889706,0.073838390409946]],[[-0.17315223813057,-0.092752672731876,-0.14412578940392],[0.014929389581084,0.05179438367486,-0.11685234308243],[0.027323333546519,-0.013277353718877,0.18182802200317]],[[-0.10967385023832,-0.036972660571337,-0.14096094667912],[-0.0056883031502366,0.13910566270351,0.073184631764889],[-0.061325274407864,-0.066908441483974,0.0090617453679442]],[[-0.030809426680207,-0.15081335604191,0.053102266043425],[0.0061117089353502,0.018776841461658,-0.030506672337651],[0.04237338155508,-0.011604172177613,-0.025754461064935]],[[0.097525522112846,-0.043904792517424,-0.13094487786293],[-0.096902951598167,-0.024069406092167,0.073390431702137],[-0.049531683325768,-0.14449527859688,-0.021301548928022]],[[0.060866486281157,0.049561429768801,0.0051612784154713],[0.03077664040029,0.091335110366344,0.12036262452602],[0.11704834550619,-0.15782900154591,-0.0068926243111491]],[[-0.08250330388546,0.056395918130875,0.031212419271469],[0.02045065164566,-0.062442183494568,-0.04474113881588],[0.010023644194007,0.17530830204487,0.033472549170256]],[[0.036034937947989,-0.053634315729141,-0.037411902099848],[0.051061552017927,-0.02758190408349,0.11863547563553],[0.022592468187213,-0.094174593687057,-0.06925406306982]],[[-0.062402676790953,-0.0075539718382061,0.016042437404394],[0.094757899641991,-0.0023120765108615,0.038567572832108],[-0.044160518795252,-0.009382501244545,0.012697093188763]],[[0.032566651701927,0.0034568232949823,-0.059509668499231],[0.01377316378057,-0.034830886870623,-0.090614944696426],[-0.025277612730861,0.053421594202518,0.014781076461077]],[[-0.18571284413338,0.022396244108677,0.2002782523632],[-0.11270801723003,0.01783567853272,-0.077262327075005],[-0.076591059565544,0.026603391394019,0.01698880456388]],[[-0.056417386978865,0.071881525218487,-0.10508158802986],[0.021139202639461,-0.010819520801306,0.012625245377421],[0.098398551344872,0.071097314357758,-0.020917626097798]],[[0.034700732678175,0.082940272986889,0.07870838791132],[0.050352562218904,-0.036960985511541,0.037324018776417],[0.13201668858528,0.062879659235477,0.12170124053955]],[[-0.050404634326696,-0.075988814234734,-0.048033379018307],[-0.051294714212418,0.089363113045692,-0.022221239283681],[-0.0094900149852037,-0.12006845325232,-0.028933737426996]],[[0.0081223389133811,0.019553996622562,-0.0110774487257],[0.078325733542442,0.10453999787569,0.070830464363098],[0.066428780555725,0.040012765675783,0.011792236939073]],[[-0.028419952839613,-0.035717092454433,-0.011256619356573],[-0.030413554981351,0.026402080431581,-0.13702657818794],[-0.10047829896212,0.0023316186852753,0.045204486697912]],[[-0.14938886463642,-0.018575483933091,-0.011400635354221],[0.0039484482258558,-0.039219971746206,-4.9092523113359e-05],[-0.034821387380362,0.045453555881977,-0.034570261836052]],[[-0.046572290360928,0.030294580385089,-0.0756925791502],[-0.087555803358555,-0.019019227474928,-0.043474465608597],[0.099570579826832,0.09284546226263,-0.050844773650169]],[[0.0046987975947559,0.032420463860035,-0.031520899385214],[-0.029696308076382,-0.18853497505188,0.11359713971615],[-0.036490350961685,0.12462183088064,0.12191274762154]],[[-0.055151168256998,-0.03291018679738,-0.019497400149703],[0.057686034590006,0.071177646517754,0.060119640082121],[-0.053130645304918,-0.032012864947319,-0.0265181530267]],[[0.00020939265959896,-0.00025730335619301,0.036078110337257],[0.065653413534164,-0.031440876424313,0.056584153324366],[-0.034899685531855,-0.076256267726421,-0.066027231514454]],[[0.070261672139168,0.014593466185033,0.02684511244297],[0.032818678766489,0.037684589624405,-0.0037397707346827],[-0.0022427185904235,-0.042002484202385,0.1205680295825]],[[0.086137041449547,0.15607546269894,0.11639297753572],[-0.055409949272871,-0.019087269902229,0.068199567496777],[0.16099913418293,-0.047920428216457,0.026091132313013]],[[-0.0030720946379006,-0.035262390971184,0.064288653433323],[0.024649521335959,-0.014961898326874,-0.0028525528032333],[0.026261733844876,-0.0051782736554742,-0.038581293076277]],[[0.051613986492157,0.1575939655304,0.033484436571598],[-0.060173597186804,-0.02875791862607,0.012786900624633],[-0.026949660852551,0.10624309629202,0.035142466425896]],[[0.025306321680546,-0.096631146967411,0.22009479999542],[0.023573825135827,0.032843451946974,-0.10357666760683],[0.0069901165552437,-0.034184139221907,0.096414469182491]],[[-0.1942026913166,-0.068862646818161,0.017949122935534],[-0.10336004197598,-0.018281038850546,-0.024114238098264],[-0.14293022453785,-0.094608329236507,-0.0069105448201299]],[[0.14173842966557,0.027685634791851,-0.059832189232111],[-0.13203339278698,-0.053312879055738,0.025366837158799],[0.086744397878647,0.068233221769333,0.13896538317204]],[[-0.021059602499008,0.074645735323429,0.12800739705563],[0.07547602057457,0.039513986557722,0.079976685345173],[0.05372690781951,0.022037081420422,-0.020183818414807]],[[0.10688914358616,-0.01207541488111,-0.027886033058167],[0.1667305380106,0.0020523257553577,-0.020634206011891],[-0.24477523565292,0.013416524045169,-0.0070306695997715]],[[0.021935317665339,0.024377448484302,-0.049431767314672],[-0.06247079744935,-0.047163590788841,-0.14419159293175],[0.08479417860508,0.23107638955116,0.12782448530197]],[[-0.077088989317417,-0.062299747020006,0.04316733032465],[-0.12053301930428,-0.094866767525673,-0.018804907798767],[0.072824358940125,0.057945031672716,-0.11272665113211]],[[-0.13715662062168,-0.046177711337805,-0.047894064337015],[-0.11882226914167,-0.070073738694191,-0.038554951548576],[0.036295995116234,-0.017749566584826,0.13029858469963]],[[-0.0020054415799677,-0.026073472574353,0.047385480254889],[0.1013969630003,0.01877361536026,0.21817515790462],[-0.030450390651822,0.036316134035587,0.0058339079841971]],[[0.11840403079987,-0.087269097566605,0.023250937461853],[0.029479483142495,0.047856915742159,0.05823664739728],[-0.19775469601154,-0.28818017244339,-0.085545115172863]],[[-0.023693438619375,-0.001270146924071,-0.2405452132225],[-0.0048311767168343,-0.0014340602792799,0.11771728098392],[0.0086829978972673,-0.060790419578552,0.0045335427857935]],[[0.073304824531078,0.042337704449892,-0.0041692135855556],[0.10165182501078,0.023231685161591,-0.14408005774021],[0.037282064557076,-0.060656365007162,0.060569398105145]],[[-0.032911583781242,-0.0012794765643775,-0.012957341969013],[-0.10292732715607,0.02471642382443,-0.073127821087837],[0.18201720714569,0.011275824159384,0.10817440599203]],[[-0.068870775401592,-0.054461479187012,-0.035143285989761],[0.024109203368425,-0.078464441001415,0.009704602882266],[-0.10967615991831,0.08645311743021,-0.067461304366589]],[[-0.038611810654402,-0.0045517240650952,0.006626920774579],[0.026426224038005,0.14273156225681,-0.041961371898651],[-0.053923718631268,-0.056873980909586,0.013381873257458]],[[-0.1196378916502,-0.16324046254158,-0.013542256318033],[-0.052403070032597,-0.019347723573446,0.0093247331678867],[0.032252483069897,-0.03069819137454,0.035858683288097]],[[-0.086190894246101,-0.095136754214764,-0.066592879593372],[-0.025484038516879,-0.025549219921231,0.075494684278965],[0.024494355544448,-0.068584099411964,0.063937805593014]],[[-0.12642535567284,-0.11424455791712,0.22191523015499],[-0.066899754106998,0.065600141882896,-0.0085307452827692],[-0.015295422635972,-0.094287231564522,0.079555943608284]],[[0.0044879531487823,0.13798116147518,0.2067464441061],[-0.016706755384803,-0.031872544437647,-0.17202614247799],[-0.060008693486452,0.0086811222136021,-0.0023935837671161]],[[0.07489825040102,0.17135663330555,0.10760454088449],[0.068432092666626,0.0068146539852023,-0.063151836395264],[-0.0013276583049446,-0.05356477946043,0.061806328594685]],[[-0.079030573368073,0.13751490414143,0.064534246921539],[0.071100451052189,0.020362270995975,-0.19377616047859],[-0.010807487182319,-0.035916969180107,-0.075520545244217]],[[0.086882680654526,0.026938691735268,0.00820442289114],[0.084381073713303,-0.051095724105835,-0.031804926693439],[-0.032029557973146,0.027501666918397,-0.08019894361496]],[[0.0062497444450855,0.15251681208611,0.16291426122189],[0.0173913333565,-0.030535161495209,-0.084189936518669],[-0.069711729884148,0.10110449790955,0.018812488764524]],[[-0.0045435512438416,0.038422837853432,0.074431419372559],[-0.080755293369293,0.057165086269379,-0.023360589519143],[-0.017913529649377,-0.0013543907552958,-0.044937212020159]],[[0.032280139625072,-0.11424138396978,0.0671152099967],[-0.084233514964581,-0.057610467076302,-0.057862512767315],[0.050938658416271,0.062944449484348,-0.037066116929054]],[[-0.091666772961617,-0.087025672197342,-0.022090004757047],[0.0011507638264447,-0.057207997888327,0.082218006253242],[0.015696311369538,0.033948089927435,-0.10789578408003]],[[0.039735283702612,0.12302076816559,0.023799818009138],[0.0713235065341,0.089037530124187,0.022773943841457],[-0.16442868113518,-0.024740366265178,-0.017105268314481]],[[-0.018386950716376,0.0022096331231296,0.026643477380276],[-0.11776385456324,-0.027620023116469,0.019842924550176],[-0.0058755162172019,0.011716773733497,0.020158335566521]],[[0.062750086188316,-0.037361945956945,-0.013584698550403],[-0.046746179461479,0.085867166519165,-0.03937166556716],[-0.041976850479841,0.0083484658971429,-0.023148076608777]],[[-0.077655121684074,-0.093652054667473,-0.13360691070557],[0.052493583410978,-0.11777215451002,-0.052021268755198],[-0.015021594241261,0.019988043233752,-0.062965005636215]],[[0.083338342607021,-0.18841135501862,-0.061053309589624],[-0.046303372830153,-0.017611663788557,0.07881586253643],[0.058243051171303,0.076268151402473,0.01106183975935]],[[0.032656505703926,0.015722658485174,0.062535144388676],[0.088678650557995,0.086712762713432,-0.016050659120083],[-0.03855536878109,-0.027045538648963,-0.11399397999048]],[[-0.12007953971624,-0.019362745806575,-0.079552561044693],[0.025287026539445,-0.0050784894265234,-0.036894179880619],[-0.030958348885179,-0.060852728784084,-0.08540802448988]],[[0.065974809229374,0.1627211868763,0.18546456098557],[0.033620048314333,-0.054914224892855,-0.02012075483799],[-0.16097719967365,-0.056743782013655,-0.025565026327968]],[[-0.16841788589954,-0.044593058526516,-0.16026937961578],[-0.17446161806583,-0.070621177554131,-0.038984414190054],[-0.072375610470772,-0.011532533913851,-0.059583924710751]],[[0.025203576311469,-0.066772609949112,-0.012727948836982],[-0.055659636855125,0.038191709667444,0.13665905594826],[-0.037691876292229,-0.15146337449551,-0.066391728818417]],[[-0.064533844590187,-0.11043191701174,-0.009113029576838],[-0.11403129994869,0.03299655765295,-0.17639625072479],[0.036115933209658,-0.042330089956522,0.013446184806526]]],[[[-0.11930326372385,-0.15019039809704,-0.10828804969788],[0.028234969824553,0.016578121110797,-0.024162566289306],[0.014861905947328,0.025274334475398,-0.13246718049049]],[[-0.0031686120200902,0.05700521171093,0.051337048411369],[-0.091621123254299,-0.052288725972176,-0.087751895189285],[0.058018039911985,0.084765635430813,0.0032480303198099]],[[-0.073066048324108,-0.033165022730827,0.045697383582592],[-0.038643594831228,-0.080581426620483,0.029441935941577],[-0.035168714821339,-0.038653422147036,0.004316876642406]],[[-0.059737700968981,-0.0049548586830497,-0.054106988012791],[-0.0083230920135975,-0.056047800928354,0.026245852932334],[0.010816155932844,0.019693356007338,0.00092767470050603]],[[-0.0074037369340658,-0.020828068256378,-0.025265816599131],[-0.012333855964243,0.053794398903847,-0.14369361102581],[0.05478485673666,0.03459344804287,-0.11666965484619]],[[-0.096377588808537,-0.10208977013826,0.080756515264511],[0.061586212366819,-0.032511949539185,0.0092419814318419],[-0.035769894719124,0.15034599602222,0.10754578560591]],[[-0.063142657279968,-0.015572759322822,0.1483827829361],[0.019168302416801,-0.092131346464157,0.077953867614269],[0.13256537914276,0.039139557629824,0.038082260638475]],[[-0.065735392272472,0.12739214301109,0.1236038133502],[-0.021633569151163,-0.11039739102125,0.069070801138878],[0.039163433015347,0.0099620055407286,0.071410402655602]],[[-0.084634386003017,-0.015267464332283,-0.0086841164156795],[0.090200841426849,-0.075934931635857,-0.027312340214849],[-0.0028456517029554,0.085570842027664,0.040006507188082]],[[0.017005145549774,-0.034767303615808,0.018699008971453],[-0.0087329652160406,-0.061992287635803,0.030145211145282],[0.030920531600714,0.021712487563491,-0.0019513207953423]],[[-0.022216700017452,-0.073896326124668,-0.12168969213963],[0.037464514374733,-0.036950089037418,-0.050842769443989],[-0.030536228790879,0.11134694516659,0.0017863755347207]],[[0.027034595608711,-0.15276949107647,-0.058899965137243],[-0.019828012213111,0.055879060178995,-0.015965761616826],[0.03246833384037,-0.11582827568054,-0.085157670080662]],[[-0.011796756647527,0.035709585994482,0.0007390360115096],[-0.006242407951504,0.025232320651412,-0.042057201266289],[0.10008138418198,0.042705539613962,-0.023950578644872]],[[0.014741219580173,-0.04974839836359,-0.069723509252071],[-0.080313876271248,-0.017008394002914,0.071803748607635],[-0.076323784887791,-0.00058988167438656,-0.039123028516769]],[[0.040178466588259,-0.063832119107246,-0.14641481637955],[0.016857614740729,0.030661066994071,-0.013710208237171],[-0.16335316002369,0.028386769816279,0.15359181165695]],[[-0.047177512198687,0.013572284020483,0.050447333604097],[0.077989257872105,0.023155029863119,0.14148569107056],[-0.09926450997591,-0.10072663426399,0.048525519669056]],[[-0.14404322206974,-0.029512718319893,0.018134148791432],[-0.1457931548357,-0.10629718750715,-0.037241969257593],[0.030623001977801,0.10323591530323,-0.029530484229326]],[[0.01649216376245,-0.017734291031957,-0.05572160333395],[-0.076299302279949,0.16229286789894,0.0026812837459147],[-0.02258181758225,-0.0087758218869567,-0.0025987594854087]],[[0.14691369235516,0.041385885328054,0.0257632676512],[0.017758930101991,0.026362176984549,-0.02312047034502],[0.050045538693666,0.053621523082256,-0.13930393755436]],[[-0.03565825521946,0.055483389645815,0.040231611579657],[-0.13030609488487,-0.12797778844833,-0.063957557082176],[-0.084147393703461,0.10145191848278,0.045889314264059]],[[-0.14588670432568,-0.078768134117126,-0.031248735263944],[-0.067789398133755,0.11014084517956,-0.0021569069940597],[0.097254298627377,-0.043657705187798,0.10412964224815]],[[-0.057970367372036,-0.038650691509247,0.021604018285871],[-0.010814495384693,-0.10012225806713,0.041859820485115],[-0.023586247116327,-0.032726984471083,0.066777221858501]],[[0.01997690461576,-0.022535298019648,-0.064572840929031],[0.026752851903439,-0.085306368768215,0.016195917502046],[-0.028742220252752,-0.081366568803787,0.087494149804115]],[[0.03921801969409,0.18184608221054,0.089483074843884],[0.057560708373785,-0.056172605603933,0.073665097355843],[-0.016179744154215,0.13475950062275,-0.0037295157089829]],[[0.049898602068424,-0.015150647610426,0.079301744699478],[0.095883585512638,-0.044804099947214,-0.04016949236393],[-0.13739031553268,-0.069851577281952,-0.082091450691223]],[[-0.018474558368325,-0.058025933802128,0.01153592672199],[0.05125167965889,0.063007682561874,-0.021405538544059],[-0.034434344619513,-0.0099046947434545,0.00014161558647174]],[[0.12858636677265,0.012584223411977,-0.058201853185892],[0.13033074140549,0.083351522684097,-0.18920804560184],[-0.00081676593981683,-0.070573836565018,-0.041436318308115]],[[0.0808230265975,0.11486264318228,0.016746526584029],[0.020137619227171,0.043943747878075,-0.11111868917942],[0.11271407455206,0.066879794001579,-0.12727943062782]],[[-0.070495285093784,0.02426584251225,-0.19952619075775],[-0.066460929811001,-0.013254107907414,-0.21272024512291],[0.24628898501396,0.070047102868557,0.066807746887207]],[[-0.15049934387207,0.026170909404755,0.055027335882187],[0.068301603198051,-0.010791594162583,-0.11599472165108],[0.084143824875355,-0.057304140180349,-0.013316741213202]],[[0.094901077449322,0.0045801056548953,-0.0052135693840683],[0.0050768498331308,0.10870657861233,-0.0044776001013815],[-0.078101679682732,-0.03255245834589,-0.11761146783829]],[[0.094040796160698,-0.095550335943699,0.11359293758869],[0.0872957482934,-0.00090217456454411,-0.054674487560987],[0.087103217840195,-0.0067670936696231,0.12895855307579]],[[0.0053125275298953,0.054253574460745,-0.038529071956873],[-0.14135386049747,0.04487032815814,0.097015798091888],[0.031662426888943,0.012183262966573,0.13406978547573]],[[-0.026334967464209,0.058046232908964,-0.046811006963253],[-0.10378410667181,0.03481413051486,-0.10807984322309],[0.069985032081604,-0.011706043034792,0.08218415081501]],[[0.020641030743718,-0.090454794466496,0.14387020468712],[0.070651821792126,-0.11123649030924,-0.081333421170712],[0.015325968153775,-0.11216681450605,-0.020353628322482]],[[0.074396707117558,0.034008797258139,-0.050384413450956],[-0.032689355313778,0.060044761747122,0.066735982894897],[0.068762578070164,0.0081663876771927,0.010697346180677]],[[-0.065521106123924,0.075252301990986,0.10511617362499],[0.13243907690048,0.044299576431513,-0.13997736573219],[0.088523283600807,0.18468810617924,0.0047534229233861]],[[0.033792544156313,-0.026125643402338,0.11494994908571],[-0.00098832056391984,0.0071671158075333,0.0026994834188372],[-0.041178811341524,-0.057276461273432,-0.030552376061678]],[[-0.042471241205931,-0.0038989319000393,0.02321732789278],[-0.039980657398701,0.013716884888709,-0.059248190373182],[0.055355526506901,-0.023938087746501,-0.044439535588026]],[[-0.0034210348967463,-0.13893088698387,-0.049974378198385],[0.023967429995537,-0.020505126565695,-0.0078231003135443],[0.080982707440853,-0.083139918744564,-0.052197735756636]],[[-0.085004799067974,0.0085582733154297,0.049579549580812],[0.018139347434044,-0.031938645988703,-0.0010826322250068],[0.035140261054039,0.054042760282755,0.025779405608773]],[[0.040909510105848,0.050775688141584,0.1968055665493],[-0.076784282922745,-0.018030928447843,-0.077842965722084],[-0.042909182608128,0.0044295783154666,-0.036181855946779]],[[0.061840433627367,-0.018572214990854,0.034511905163527],[-0.070790514349937,0.01789933629334,0.068815149366856],[-0.071232184767723,0.045107547193766,-0.069915428757668]],[[-0.10230197012424,0.11633361876011,-0.22181674838066],[-0.0014559200499207,-0.098735228180885,0.09996971487999],[0.026743330061436,-0.0063119535334408,0.0063822045922279]],[[0.071172431111336,-0.0053443270735443,-0.082583695650101],[-0.018717048689723,-0.06439670920372,-0.049811579287052],[-0.056089587509632,-0.006359837949276,-0.085129529237747]],[[-0.011557351797819,-0.070531137287617,-0.04301168397069],[-0.012356079183519,0.017217751592398,0.042864333838224],[0.097274869680405,-0.068536162376404,-0.19811783730984]],[[-0.025630667805672,-0.0061854412779212,0.11199187487364],[-0.18090492486954,-0.10585086792707,0.0045405467972159],[0.027627741917968,-0.062485419213772,0.14143738150597]],[[-0.049828711897135,-0.16561438143253,0.10354796797037],[0.076623238623142,0.041366882622242,-0.073391236364841],[-0.018300671130419,0.009714056737721,0.073905542492867]],[[0.0091838175430894,-0.006361860781908,-0.10971783101559],[0.046872012317181,0.011349037289619,0.064259983599186],[-0.060333117842674,-0.039772965013981,0.18822605907917]],[[-0.033073045313358,-0.099371507763863,-0.057237822562456],[0.22915777564049,0.16134747862816,0.060205265879631],[-0.22247496247292,-0.01497657597065,-0.18288768827915]],[[0.024179669097066,-0.20980517566204,0.026135148480535],[-0.15344665944576,-0.034978829324245,-0.033046334981918],[-0.047171197831631,0.11575934290886,0.046370219439268]],[[0.010097988881171,0.046535596251488,0.13403813540936],[0.035759583115578,-0.07637482136488,-0.010696965269744],[0.07714020460844,0.064123600721359,-0.061484348028898]],[[0.053741440176964,0.078407526016235,0.10834630578756],[0.031708121299744,0.0070315808989108,0.021874835714698],[0.065826669335365,-0.1504277586937,-0.024161376059055]],[[-0.035672292113304,-0.037821747362614,-0.050900250673294],[0.083627305924892,-0.01361579913646,0.054275453090668],[-0.032162763178349,0.034996338188648,-0.14989128708839]],[[-0.055964969098568,0.016250686720014,-0.0040442747995257],[-0.015571311116219,-0.12988635897636,-0.015351132489741],[0.16727039217949,0.043270476162434,0.041596785187721]],[[0.070168353617191,0.010773004963994,0.10088735818863],[0.031341820955276,-0.064360655844212,0.16375780105591],[0.12609894573689,0.0036507805343717,0.037326205521822]],[[-0.043237645179033,-0.14538550376892,-0.070631541311741],[0.01330713648349,-0.05391089245677,-0.030518697574735],[-0.16018383204937,0.074214912950993,-0.017977820709348]],[[0.079854026436806,0.0027076920960099,0.042938891798258],[-0.049142215400934,-0.13583374023438,-0.014822206459939],[-0.017566820606589,-0.087961189448833,0.017724253237247]],[[0.19879351556301,0.030234159901738,-0.057289224117994],[0.1212662756443,0.060493852943182,0.011207155883312],[0.088046796619892,0.051473960280418,0.016163861379027]],[[-0.048709325492382,0.021759781986475,-0.035247076302767],[-0.13105404376984,0.078291669487953,-0.036421019583941],[0.06195518001914,-0.073820732533932,0.14791494607925]],[[0.12932986021042,-0.17604260146618,-0.13927558064461],[-0.10246949642897,-0.1173727735877,-0.049823291599751],[0.021242989227176,0.035928573459387,0.06712169200182]],[[0.22429710626602,-0.031620912253857,-0.23846146464348],[0.14446039497852,0.025409422814846,-0.20331665873528],[-0.076554469764233,-0.080666519701481,-0.10351999104023]],[[-0.15186113119125,0.0088979853317142,0.027266146615148],[-0.14830112457275,-0.029846338555217,-0.078629679977894],[-0.11110433936119,-0.10644125193357,-0.12345442175865]],[[-0.054978512227535,0.087585031986237,0.021746389567852],[-0.082721717655659,0.023966822773218,0.12515977025032],[0.044413298368454,-0.04585587605834,-0.035516262054443]]],[[[-0.061552558094263,-0.019126633182168,0.063456460833549],[-0.059807017445564,0.11339078098536,0.018745744600892],[-0.037891618907452,-0.028287030756474,-0.15186730027199]],[[-0.05486374348402,-0.061443511396646,0.052065812051296],[0.012165883556008,-0.083887368440628,-0.028095964342356],[0.050784844905138,0.063911102712154,-0.18965269625187]],[[-0.112886890769,0.0083427047356963,0.053257573395967],[-0.01557613350451,-0.085277833044529,-0.023612160235643],[0.033215124160051,-0.010150635614991,0.022709337994456]],[[0.051912125200033,-0.042478978633881,0.039231225848198],[-0.062863081693649,-0.074499510228634,-0.15472510457039],[-0.035331480205059,0.012917187996209,0.031674917787313]],[[0.038751367479563,0.029693230986595,-0.045475371181965],[-0.059435628354549,-0.044466536492109,-0.11774622648954],[-0.017706420272589,-0.074258022010326,0.0018482056912035]],[[-0.026487955823541,-0.0096755884587765,-0.045836102217436],[0.00852613709867,-0.03151847422123,0.087337642908096],[0.012166919186711,0.066885761916637,-0.19843722879887]],[[0.032809343189001,0.032199651002884,-0.058759395033121],[0.060400988906622,-0.029225902631879,-0.0099412510171533],[-0.04443109408021,-0.10800655931234,-0.079238243401051]],[[-0.039615262299776,-0.017563156783581,-0.05195514857769],[0.041724745184183,-0.054943017661572,0.078569948673248],[-0.11228588968515,0.025797814130783,-0.042506624013186]],[[-0.084196902811527,0.071398936212063,-0.02729419618845],[-0.18301124870777,0.086437158286572,0.053983025252819],[-0.00070817384403199,-0.12625335156918,-0.16897581517696]],[[0.03645870834589,-0.0040524336509407,-0.045288629829884],[-0.0070056244730949,-0.0033950346987695,-0.089952684938908],[-0.054403517395258,-0.05885973200202,-0.086207807064056]],[[-0.046528305858374,0.089022099971771,0.013328206725419],[-0.040468234568834,-0.10267313569784,-0.015070111490786],[-0.05089096352458,-0.049324914813042,0.019664391875267]],[[-0.021301347762346,-0.021572737023234,0.054255060851574],[-0.0026692878454924,0.048042848706245,0.062226194888353],[0.081676512956619,0.02073360607028,0.082979686558247]],[[0.025242805480957,-0.048870753496885,-0.011178125627339],[-0.10759685188532,0.012439562007785,-0.00036593541153707],[0.030866308137774,-0.032576974481344,-0.042937386780977]],[[-0.061097890138626,-0.035889785736799,0.038141258060932],[-0.18305750191212,0.026256680488586,0.044945031404495],[-0.056346412748098,0.15686821937561,-0.050916843116283]],[[0.021139863878489,-0.064123287796974,-0.00081789179239422],[-0.10565565526485,0.026680491864681,0.089735828340054],[0.029959384351969,0.018435448408127,0.0088190389797091]],[[-0.0093970876187086,-0.051889978349209,0.097923278808594],[-0.056453641504049,0.0029497109353542,0.11276736855507],[-0.24107556045055,-0.020018056035042,0.061813846230507]],[[0.11696764081717,0.021298004314303,0.073197714984417],[-0.03833269700408,0.012035665102303,0.022825950756669],[-0.12608014047146,-0.042099174112082,-0.03487004339695]],[[0.072671130299568,-0.08699357509613,0.0086442492902279],[0.0072329812683165,0.049233671277761,-0.039872333407402],[-0.16504734754562,-0.047619957476854,-0.17117163538933]],[[-0.064598895609379,-0.072457000613213,-0.030871782451868],[-0.064931966364384,-0.00057482003467157,0.028314413502812],[0.059501014649868,-0.038228485733271,0.004770175088197]],[[0.087117433547974,0.087495647370815,0.062940396368504],[-0.060557547956705,0.017217947170138,-0.0024022902362049],[0.012072460725904,-0.0027749331202358,-0.047449752688408]],[[0.085294157266617,0.1400513201952,0.015662964433432],[-0.064486384391785,0.0061294627375901,-0.022733518853784],[-0.006663404405117,-0.08826295286417,-0.12091727554798]],[[-0.051955237984657,-0.011503933928907,0.042560964822769],[-0.073029458522797,-0.04397701844573,0.017543774098158],[0.034371543675661,0.0050595700740814,0.039693020284176]],[[-0.13446392118931,-0.010155855678022,0.03627498075366],[-0.094952158629894,-0.042466212064028,0.052970536053181],[-0.035599630326033,-0.072295658290386,0.06196279078722]],[[0.12721617519855,0.16207484900951,0.088002815842628],[0.022128712385893,0.014738342724741,0.080262422561646],[0.041618496179581,-0.003189061768353,-0.03087474219501]],[[-0.071404904127121,-0.012682056054473,-0.14777509868145],[-0.089749827980995,-0.064239956438541,0.1690219193697],[-0.010895955376327,0.067201606929302,-0.054437417536974]],[[-0.080308578908443,-0.016474740579724,0.037040144205093],[0.054158173501492,0.025675054639578,-0.095259837806225],[0.012950752861798,0.022350862622261,-0.0088134640827775]],[[0.12124717235565,-0.014720209874213,0.091789856553078],[-0.020240088924766,0.045757830142975,-0.055370967835188],[-0.060591045767069,-0.069702640175819,-0.10498601198196]],[[-0.0074288034811616,-0.028071146458387,0.046532716602087],[-0.07415959239006,-0.073858790099621,0.061034064739943],[-0.046500097960234,-0.020925331860781,-0.12955820560455]],[[0.045127347111702,-0.016165554523468,-0.05242071300745],[0.0030028456822038,-0.034428492188454,0.060530755668879],[-0.15705169737339,-0.013025192543864,-0.15928754210472]],[[0.049361187964678,0.0073571586981416,-0.042822279036045],[0.031368762254715,-0.031655211001635,0.024672558531165],[-0.074278794229031,0.015058452263474,0.073382772505283]],[[-0.00035640606074594,-0.096215084195137,-0.041518896818161],[-0.038483932614326,0.10053312033415,-0.037877153605223],[-0.00036925610038452,-0.013855706900358,-0.10975160449743]],[[0.00061903393361717,0.11525558680296,0.011291140690446],[-0.0088707655668259,0.026243241503835,0.036515358835459],[0.013460044749081,0.044388148933649,0.11874328553677]],[[0.073435768485069,0.016619680449367,-0.081353284418583],[0.015979334712029,0.042864199727774,0.00055484083713964],[-0.061561059206724,-0.098506487905979,-0.051311273127794]],[[-0.020621940493584,-0.0017510213656351,-0.090563282370567],[0.081192515790462,-0.029423039406538,0.081694915890694],[-0.067247427999973,0.015234149992466,-0.06774515658617]],[[-0.036798603832722,0.0067144888453186,0.045801348984241],[-0.059242326766253,-0.033958200365305,-0.071073241531849],[-0.043523371219635,0.051916491240263,-0.05760645493865]],[[-0.018145553767681,-0.0084849847480655,-0.037156440317631],[0.10361326485872,0.020592240616679,-0.069304160773754],[0.15541061758995,0.096484795212746,0.055948123335838]],[[0.085963524878025,0.11116336286068,0.2002882361412],[0.092332758009434,0.030359629541636,0.068426564335823],[0.093421079218388,0.021973622962832,-0.033370327204466]],[[0.020704478025436,0.053485821932554,-0.049809940159321],[0.021823793649673,0.020856050774455,-0.025027450174093],[-0.095104418694973,-0.00054154399549589,-0.12782068550587]],[[-0.012756042182446,-0.05187863111496,-0.047673474997282],[-0.0034070797264576,0.076257579028606,0.11889126896858],[-0.093370512127876,-0.0055438089184463,-0.014020130969584]],[[0.018271194770932,-0.0028544361703098,0.022270468994975],[-0.050801921635866,0.061000406742096,0.042154468595982],[0.10078354179859,-0.030868729576468,-0.07443343102932]],[[0.01655693538487,-0.052197828888893,0.028606215491891],[-0.16188310086727,0.1039420440793,-0.057450264692307],[-0.018929315730929,0.09437084197998,0.03981002792716]],[[0.062228508293629,-0.075641125440598,-0.029909059405327],[0.10785460472107,-0.057958867400885,0.020383501425385],[0.034299049526453,-0.006426069419831,0.022774592041969]],[[0.061021532863379,-0.032942127436399,0.082029208540916],[-0.068957775831223,-0.22174541652203,-0.01814172975719],[-0.062968418002129,-0.0016041302587837,0.0019367656204849]],[[-0.11259623616934,0.008949582464993,-0.062629818916321],[-0.022300396114588,-0.106230430305,-0.067207902669907],[-0.037583842873573,-0.00217992416583,0.023393169045448]],[[-0.050053313374519,-0.018364967778325,-0.082435004413128],[-0.04073516279459,-0.005879441741854,-0.011661571450531],[0.03472987562418,0.013453003019094,-0.012106291018426]],[[0.12100727856159,-0.072918079793453,-0.020947903394699],[-0.13921342790127,-0.0056568519212306,0.13160847127438],[-0.084994360804558,-0.071173526346684,0.089474745094776]],[[-0.19700382649899,-0.080595165491104,-0.09874052554369],[-0.057722542434931,0.1112193018198,0.046111855655909],[0.0015887750778347,-0.07468755543232,-0.038156047463417]],[[0.0012045237235725,0.023716961964965,-0.078237846493721],[0.12241884320974,0.076363049447536,-0.014598546549678],[-0.037117447704077,-0.11219493299723,0.057639349251986]],[[-0.044881116598845,0.083382241427898,-0.089716605842113],[-0.020520873367786,-0.03546030074358,0.087107546627522],[0.075415998697281,0.13132829964161,0.092286586761475]],[[-0.12255845963955,-0.035826373845339,-0.086482875049114],[0.10757361352444,0.15261980891228,0.032853331416845],[-0.10734254866838,0.12165638804436,-0.079881362617016]],[[-0.20990133285522,-0.12980879843235,-0.067658200860023],[-0.039833262562752,-0.10518144071102,0.013411718420684],[0.043985784053802,0.025556368753314,0.0040818639099598]],[[0.081019014120102,-0.063625067472458,-0.076880164444447],[-0.15159280598164,0.020549759268761,-0.035525310784578],[-0.048324272036552,-0.064288713037968,-0.074826754629612]],[[0.063546195626259,0.012229785323143,0.0062493355944753],[0.012588723562658,-0.037713032215834,0.1022562533617],[0.062679372727871,-0.00088977487757802,-0.010081618092954]],[[0.022182643413544,0.11752513796091,0.0049049044027925],[0.016104022040963,0.098706386983395,-0.063455671072006],[-0.081089675426483,-0.0040004095062613,-0.024909811094403]],[[0.038014251738787,-0.020724840462208,-0.052672754973173],[0.018706014379859,-0.060005813837051,-0.0599658600986],[-0.072059080004692,-0.074807927012444,-0.028351942077279]],[[-0.074615724384785,-0.055762656033039,0.052383244037628],[0.0025926972739398,0.0090167876332998,-0.12048409879208],[-0.092515282332897,0.009745467454195,0.093786671757698]],[[-0.066239252686501,0.10886349529028,0.098804295063019],[0.008485022932291,0.113271728158,0.058614049106836],[0.02597782574594,-0.021958185359836,-0.20141825079918]],[[0.025822717696428,-0.025263199582696,-0.043288517743349],[-0.047390542924404,0.091464713215828,0.041349768638611],[-0.01292026322335,-0.027079371735454,0.058092322200537]],[[0.094089634716511,0.022394606843591,0.043055351823568],[0.0018204625230283,-0.0015794320497662,-0.12268007546663],[0.0024348904844373,-0.036349136382341,0.041341751813889]],[[-0.050937801599503,0.081008300185204,-0.037906147539616],[0.031939636915922,-0.01742041669786,-0.13752625882626],[0.080050379037857,-0.0009184442460537,-0.061512429267168]],[[-0.10409673303366,-0.1335391253233,-0.022801626473665],[-0.054540224373341,-0.007032613735646,0.040789503604174],[0.014796015806496,-0.12163187563419,-0.093165926635265]],[[0.046734236180782,0.10297510772943,-0.088123373687267],[0.044612485915422,-0.10286416113377,0.1137418448925],[0.037400312721729,0.081502087414265,-0.057465776801109]],[[0.0087498342618346,-0.052532691508532,0.025271624326706],[-0.073707640171051,-0.17295937240124,-0.013208745978773],[0.087848328053951,0.19259040057659,0.048386257141829]],[[-0.067004010081291,-0.02316265180707,0.044108357280493],[-0.090493492782116,0.061400257050991,0.041656520217657],[-0.0026207419577986,0.022832714021206,0.072449944913387]]],[[[-0.13686688244343,0.014535809867084,-0.016117431223392],[0.040933821350336,-0.078569769859314,-0.10533716529608],[0.10168348252773,-0.10518653690815,-0.046782214194536]],[[-0.14948585629463,-0.12049170583487,-0.099154651165009],[-0.046077027916908,-0.015397985465825,0.043885007500648],[-0.042584147304296,0.13654360175133,-0.0031156050972641]],[[-0.15629628300667,-0.13507224619389,0.053547047078609],[-0.056796927005053,0.062736988067627,-0.02936920337379],[-0.0086404662579298,0.01487569604069,-0.0017048001755029]],[[-0.10080534219742,-0.012181216850877,-0.061480421572924],[-0.08738762140274,0.029227521270514,0.0087963100522757],[-0.086410477757454,0.011638652533293,-0.084860160946846]],[[0.013569221831858,-0.070989310741425,-0.074027262628078],[-0.033466331660748,-0.069310314953327,-0.0081175453960896],[0.014498112723231,-0.00017005819245242,-0.017081102356315]],[[-0.096541419625282,-0.033400230109692,-0.078539676964283],[-0.057017643004656,-0.013219184242189,-0.0566779486835],[-0.17234893143177,-0.022332634776831,-0.002489376347512]],[[0.056084718555212,0.016101937741041,0.038781519979239],[0.013858182355762,0.046560805290937,-0.060905169695616],[0.055542200803757,-0.035488728433847,-0.089953795075417]],[[0.14114163815975,0.095960415899754,0.14333666861057],[0.058043621480465,0.071154668927193,-0.0055511905811727],[0.058148797601461,-0.036233190447092,0.0092601915821433]],[[-0.027866091579199,0.053109709173441,0.062070451676846],[0.027545895427465,0.096118852496147,0.014274515211582],[-0.02837142162025,-0.022450897842646,-0.03395638987422]],[[-0.0011856349883601,0.070502080023289,-0.06595803052187],[-0.024876249954104,0.098679594695568,0.0063231335952878],[0.0086065009236336,0.060480963438749,-0.12123870104551]],[[0.019329784438014,0.047546062618494,0.015826223418117],[-0.16995984315872,-0.038486763834953,0.016257090494037],[-0.18936434388161,-0.11319224536419,-0.058500349521637]],[[0.0039884019643068,-0.10408729314804,0.040575794875622],[-0.01595725864172,0.082951627671719,0.1140153631568],[-0.06093979254365,-0.069420158863068,0.046998169273138]],[[-0.1111448481679,-0.080242566764355,-0.15305081009865],[0.013678655959666,-0.082029223442078,-0.06676110625267],[0.072576150298119,0.089909002184868,-0.055219251662493]],[[-0.087932907044888,0.10803212970495,-0.005854825489223],[-0.076695747673512,-0.031765818595886,-0.032868932932615],[-0.028153326362371,0.1676427423954,0.074830330908298]],[[-0.051931269466877,0.085900887846947,0.0053939172066748],[0.049251429736614,-0.04276379570365,0.022304497659206],[-0.062567830085754,-0.0052540679462254,0.010369994677603]],[[0.058036305010319,0.14004741609097,0.043030500411987],[-0.029999554157257,0.044935833662748,0.1252820789814],[-0.072197809815407,-0.13302195072174,-0.11360730975866]],[[0.056162465363741,0.13230399787426,0.052861124277115],[0.034870490431786,0.025384159758687,0.11330506205559],[0.048471886664629,0.088420696556568,0.067705735564232]],[[-0.13566951453686,-0.11731069535017,-0.060050863772631],[-0.1104396879673,-0.19876159727573,0.050292108207941],[0.045351162552834,0.0068548521958292,-0.043532732874155]],[[-0.066026046872139,-0.008200790733099,0.097492963075638],[-0.15358753502369,0.051298521459103,0.03571766987443],[0.040353637188673,-0.07655806094408,-0.0085266306996346]],[[-0.078959822654724,-0.038353648036718,-0.1381594389677],[-0.021775925531983,-0.12909883260727,-0.14485627412796],[0.037018295377493,0.0055172145366669,-0.0021545356139541]],[[-0.025824317708611,0.065302528440952,0.10365050286055],[-0.035879887640476,-0.014076882973313,0.077405050396919],[0.14884686470032,-0.060647077858448,0.034529350697994]],[[-0.040069408714771,-0.069502294063568,0.030314384028316],[-0.068655505776405,-0.05289363488555,0.032561112195253],[0.013605472631752,0.053408533334732,0.0028403049800545]],[[0.02731891348958,-0.01538966409862,-0.064263768494129],[0.055689509958029,0.048160720616579,-0.033492639660835],[-0.090942353010178,-0.056185983121395,-0.097443327307701]],[[0.034590173512697,0.090514071285725,0.10271573066711],[-0.050415374338627,-0.12197661399841,0.002274027094245],[0.082016550004482,0.019587982445955,0.099671080708504]],[[0.010924769565463,0.15235564112663,-0.060326877981424],[0.033638522028923,0.073779009282589,0.08232706040144],[0.013389630243182,-0.07200688123703,0.14433386921883]],[[0.054125275462866,0.0098694441840053,-0.10245424509048],[0.029634859412909,0.029859548434615,-0.033656362444162],[-0.041410531848669,-0.042958896607161,0.062548138201237]],[[-0.080087170004845,0.015619478188455,-0.050979718565941],[-0.096709482371807,0.14540150761604,0.10484421253204],[-0.10557494312525,-0.0091887349262834,-0.079276904463768]],[[0.026679147034883,-0.074948258697987,0.012400292791426],[0.16571997106075,-0.0585429482162,-0.040152832865715],[-0.05622885003686,0.022120324894786,-0.0010538637870923]],[[0.031136941164732,0.021936828270555,-0.035111233592033],[-0.085223600268364,-0.085849948227406,0.0030564062763005],[-0.040194384753704,-0.021682785823941,0.056426789611578]],[[0.098523683845997,-0.075053133070469,0.037963204085827],[-0.062624134123325,-0.069838240742683,0.052038971334696],[-0.14305603504181,-0.0084833782166243,0.019922155886889]],[[-0.078777261078358,0.1570882499218,-0.086235448718071],[0.081974416971207,0.12612633407116,-0.028989439830184],[0.047073803842068,0.053436197340488,-0.020619302988052]],[[0.020626412704587,0.15692931413651,-0.013822895474732],[-0.0034256668295711,0.060896456241608,0.046653173863888],[0.012035199441016,0.039549142122269,0.0051444820128381]],[[0.040079664438963,0.011522528715432,0.010501156561077],[0.077249437570572,0.063644699752331,-0.036358918994665],[0.17800529301167,0.048618819564581,0.15980878472328]],[[-0.036794509738684,-0.015115407295525,0.00072793429717422],[-0.048535216599703,-0.032606974244118,0.041652388870716],[0.0083222603425384,0.0055705504491925,-0.21117541193962]],[[-0.043367557227612,-0.26121494174004,0.16791971027851],[-0.019084809347987,0.051195468753576,0.045389119535685],[0.097045831382275,-0.16719456017017,0.078378327190876]],[[0.055759821087122,0.035921398550272,0.073934003710747],[0.10898101329803,0.041899807751179,0.0016844095662236],[0.060178194195032,-0.019573155790567,0.007425666321069]],[[0.012046694755554,0.017057919874787,-0.010531916283071],[-0.024298237636685,0.032011620700359,0.024574965238571],[-0.069950513541698,-0.10486939549446,-0.016940241679549]],[[-0.19149242341518,-0.028742613270879,-0.090277172625065],[0.0077199484221637,0.023856291547418,0.039188258349895],[0.12772670388222,0.071742951869965,0.034423474222422]],[[0.1918982565403,-0.17320919036865,-0.020297264680266],[0.049708392471075,0.021047551184893,0.062396574765444],[-0.086555384099483,-0.20273214578629,0.061383847147226]],[[0.10091662406921,0.036568637937307,0.089627951383591],[-0.084687508642673,0.12107308208942,-0.098812557756901],[-0.075148798525333,0.035310920327902,-0.080483660101891]],[[-0.0034021597821265,-0.025143316015601,-0.19897873699665],[-0.15144743025303,0.020619546994567,-0.051784656941891],[-0.10934678465128,0.079863354563713,-0.026501949876547]],[[0.093011155724525,0.0037400911096483,-0.020139424130321],[0.021185945719481,0.020417978987098,0.0084567060694098],[0.16503813862801,0.044571820646524,-0.067324444651604]],[[-0.16187338531017,-0.008875391446054,0.0011563431471586],[-0.1683235168457,-0.056856133043766,-0.051834888756275],[0.14669993519783,0.13583777844906,0.038833979517221]],[[-0.030571468174458,-0.049815487116575,0.064792849123478],[-0.036183375865221,0.024507224559784,0.0094904191792011],[0.056881681084633,-0.10230148583651,0.052812550216913]],[[0.045559193938971,-0.0029095506761223,-0.10110515356064],[0.0426668189466,-0.040856786072254,-0.068406812846661],[-0.014195024967194,0.0073438170365989,-0.095822088420391]],[[0.0074601657688618,-0.033493347465992,0.033909995108843],[0.030566399917006,-0.010157709009945,-0.094380505383015],[0.09325236082077,0.05735370144248,0.12874233722687]],[[-0.19783607125282,0.061021942645311,0.069671407341957],[-0.01972826756537,-0.013834560289979,0.074014849960804],[0.10356391966343,-0.028119897469878,0.078806586563587]],[[0.047284997999668,0.064746491611004,-0.14528380334377],[-0.069454170763493,0.011005933396518,0.0092610362917185],[0.046556189656258,-0.034377824515104,0.01899004727602]],[[0.025347830727696,0.024920597672462,0.024251699447632],[-0.020784301683307,-0.0060700080357492,-0.0026314901188016],[0.034737724810839,-0.045213934034109,-0.059195458889008]],[[-0.032553065568209,0.12624025344849,-0.024029226973653],[-0.031847704201937,0.024249961599708,0.0089162709191442],[-0.13056994974613,0.042764231562614,-0.18203285336494]],[[-0.17152211070061,-0.069310985505581,-0.06996900588274],[-0.026894763112068,-0.064431630074978,0.012417663820088],[0.21997079253197,0.098546974360943,-0.0472700484097]],[[-0.19670429825783,-0.16840079426765,-0.036420822143555],[-0.150097027421,0.032326173037291,0.059561762958765],[-0.14484563469887,0.095032557845116,-0.028979383409023]],[[-0.050891984254122,-0.0082649830728769,-0.017762979492545],[0.1197160333395,0.006708363071084,-0.07751140743494],[-0.035968121141195,0.001079311594367,-0.03296896442771]],[[-0.029477130621672,-0.07827091217041,-0.14028957486153],[-0.06371508538723,-0.059648007154465,-0.01581415720284],[0.070842951536179,0.016150176525116,-0.010999121703207]],[[-0.05431903898716,0.029684139415622,-0.029609126970172],[-0.055053874850273,-0.093894608318806,0.10111915320158],[0.010579043067992,0.065752118825912,-0.018381264060736]],[[-0.062579780817032,0.027301954105496,0.03698493167758],[0.15510059893131,-0.010255072265863,0.046309847384691],[-0.050510663539171,0.14374676346779,-0.13546411693096]],[[0.11891020834446,-0.022586841136217,-0.11558789014816],[-0.0064344517886639,-0.16350723803043,0.039661049842834],[0.035106997936964,-0.2221939265728,-0.021464919671416]],[[0.013781337067485,-0.059639610350132,-0.081949345767498],[-0.018124455586076,-0.0030640834011137,0.086130052804947],[-0.0044306656345725,-0.12612482905388,0.10406748205423]],[[0.012528914958239,0.041002545505762,0.05968701839447],[0.036327913403511,0.082040846347809,-0.10206729918718],[0.067949399352074,0.048852607607841,-0.033607121556997]],[[-0.043027296662331,0.01689350605011,0.014769705943763],[0.093879848718643,-0.10681930929422,0.033674508333206],[-0.060023792088032,-0.03507024794817,0.13689167797565]],[[-0.10451905429363,0.098487533628941,0.040187083184719],[-0.033237043768167,0.0083509441465139,0.039878986775875],[0.042838353663683,0.0051083974540234,-0.05866827070713]],[[-0.1040251031518,0.083233036100864,-0.0071799545548856],[0.016430716961622,0.044910758733749,-0.032214969396591],[-0.10733702778816,-0.0781374797225,0.017596732825041]],[[0.038481555879116,0.052844438701868,-0.082126565277576],[-0.054787628352642,-0.044481571763754,-0.033937629312277],[-0.10696628689766,0.0084872664883733,0.016860501840711]],[[0.09584653377533,0.03819302469492,-0.05720217898488],[0.01213993690908,0.01193995308131,-0.024416889995337],[0.011941885575652,0.06893015652895,0.0023978797253221]]],[[[-0.053851500153542,0.027811471372843,0.052564132958651],[-0.02033900283277,0.066385857760906,0.027841936796904],[0.047338590025902,0.014571394771338,-0.06926991045475]],[[0.0016703841974959,-0.038329515606165,-0.00076775730121881],[-0.082999646663666,-0.012511922046542,0.023219307884574],[-0.036237500607967,0.088697731494904,0.096564747393131]],[[-0.0091057932004333,0.0064446246251464,-0.027947992086411],[0.011404553428292,-0.17036932706833,-0.03698680177331],[-0.043441645801067,-0.01438198890537,0.035565219819546]],[[0.11840471625328,-0.012099669314921,-0.070531532168388],[-0.087407454848289,-0.077362954616547,-0.16544006764889],[0.053893961012363,0.028396552428603,0.015715530142188]],[[-0.0045114834792912,-0.04426009580493,-0.082047276198864],[0.0091265700757504,-0.059077296406031,-0.058319579809904],[0.07727175951004,-0.077314965426922,-0.2533275783062]],[[0.11650554090738,0.10620917379856,-0.080159477889538],[0.020394569262862,0.018984623253345,-0.015695592388511],[0.14532719552517,-0.07546304911375,-0.15130740404129]],[[0.029696201905608,-0.050370808690786,0.078132830560207],[-0.019497698172927,0.10565364360809,0.021927630528808],[0.022948214784265,-0.0053206020966172,-0.076838150620461]],[[0.00065844709752128,0.12443169951439,0.16163782775402],[0.074284583330154,0.06586816906929,0.017148546874523],[-0.25118851661682,-0.21615658700466,-0.17112444341183]],[[0.028243018314242,0.031126236543059,0.15449075400829],[0.060925152152777,0.0031385375186801,-0.055784869939089],[0.073446534574032,0.0035323016345501,-0.039077792316675]],[[-0.015441386029124,0.036432329565287,0.0014799276832491],[0.03677311912179,-0.054946351796389,0.020185166969895],[0.1099845841527,-0.069770708680153,-0.083145178854465]],[[-0.035888586193323,0.062284100800753,0.042022231966257],[0.050471279770136,0.10381473600864,-0.02790112234652],[0.0039829490706325,-0.025938112288713,0.057212892919779]],[[-0.071867138147354,-0.056609369814396,0.0085706189274788],[0.11188902705908,0.020126692950726,0.14449369907379],[-0.030201891437173,0.0042994520626962,0.081177301704884]],[[0.11058556288481,0.01040250621736,0.040947202593088],[-0.012371115386486,-0.15617272257805,0.02029699832201],[0.0060798684135079,0.028055753558874,0.026194833219051]],[[0.0050814826972783,0.11927429586649,-0.01813349314034],[-0.0056273411028087,0.014922353439033,0.030599866062403],[0.046063594520092,0.063140816986561,0.16626758873463]],[[0.04399947822094,0.037652183324099,0.028966646641493],[0.042799711227417,0.14421054720879,-0.098991580307484],[-0.0077351327054203,-0.035328514873981,0.02742912620306]],[[0.021150823682547,0.012110623531044,-0.041044633835554],[-0.09157969802618,-0.11196359246969,0.094821207225323],[-0.049314521253109,-0.042042758315802,-0.053331095725298]],[[-0.042855970561504,0.07802326977253,0.0057051386684179],[-0.052557151764631,0.038504403084517,0.10690250992775],[-0.056347321718931,0.094639167189598,-0.053298577666283]],[[-0.018966883420944,-0.0099652828648686,0.0079429168254137],[0.059848077595234,0.016633784398437,-0.033631823956966],[0.15418022871017,0.040665026754141,0.0092012751847506]],[[-0.13620306551456,0.044300355017185,0.19737181067467],[-0.0064583835192025,-0.011959698051214,-0.073938295245171],[-0.13566380739212,0.013332536444068,-0.10245916247368]],[[0.041615359485149,-0.069576635956764,-0.060893550515175],[-0.027591181918979,0.079516060650349,-0.057737868279219],[-0.11574894934893,-0.2408143132925,0.11448645591736]],[[0.056780312210321,0.0017444825498387,-0.11869286000729],[-0.014028123579919,0.085075758397579,0.041723612695932],[0.055792547762394,0.025375893339515,0.031663943082094]],[[0.098871856927872,0.021370211616158,0.006532228551805],[-0.027860186994076,-0.066423557698727,-0.017174167558551],[0.0058040977455676,-0.10064806044102,0.0065921568311751]],[[0.088873319327831,0.0062574245966971,-0.015891445800662],[-0.28912544250488,-0.0089218206703663,0.0769337490201],[-0.065886095166206,0.027570843696594,0.05867201089859]],[[-0.062824420630932,0.17467181384563,0.18270368874073],[0.063383519649506,0.04123704507947,-0.1490952372551],[0.089055962860584,0.00026418580091558,0.080490313470364]],[[0.022901762276888,0.02141934260726,-0.096917256712914],[-0.0618497133255,-0.018551331013441,0.056204993277788],[0.033409427851439,0.0092622330412269,0.16237650811672]],[[-0.085514716804028,-0.032677747309208,-0.034684803336859],[0.034884035587311,-0.02215469814837,0.020852206274867],[0.059752725064754,0.068907842040062,-0.040562819689512]],[[0.063210211694241,-0.01209309976548,-0.33209526538849],[-0.010519159957767,-0.00043081515468657,-0.086676970124245],[-0.021720197051764,0.12134984135628,-0.11698953807354]],[[-0.16422258317471,-0.048166766762733,-0.054479237645864],[-0.054294019937515,-0.039921034127474,0.036348253488541],[-0.13264891505241,-0.087371669709682,0.073082834482193]],[[-0.080702118575573,0.012625789269805,-0.17464932799339],[0.10558483749628,0.049741432070732,0.080397814512253],[0.031586140394211,0.042569953948259,-0.039603017270565]],[[-0.069203056395054,0.047927036881447,-0.12542346119881],[-0.014049390330911,-0.03891784325242,0.13787646591663],[-0.015640042722225,0.093393266201019,0.060822486877441]],[[-0.032332576811314,-0.0062071229331195,0.045924674719572],[0.041137378662825,-0.032403390854597,0.03550611436367],[0.099893294274807,-0.012417088262737,0.16771641373634]],[[-0.065792165696621,0.11725675314665,0.069596320390701],[-0.047302883118391,0.093540027737617,0.11212564259768],[0.11165323853493,-0.054341621696949,0.0051467656157911]],[[0.047792356461287,-0.077067352831364,0.059931214898825],[0.028254635632038,-0.12040307372808,-0.08986658602953],[-0.0047510475851595,0.21202355623245,-0.16425107419491]],[[-0.099105656147003,-0.11333429813385,-0.073008619248867],[-0.029016809538007,0.039850883185863,-0.12835133075714],[-0.13074225187302,0.0085960952565074,-0.12764404714108]],[[0.019771000370383,-0.059849377721548,-0.10273240506649],[0.049498252570629,-0.024195434525609,0.083547040820122],[0.072216004133224,-0.0099507421255112,-0.077568106353283]],[[0.064099326729774,0.038692243397236,-0.039671935141087],[-0.0057124411687255,0.0072211883962154,0.012888287194073],[0.0026342000346631,0.092225730419159,0.041001107543707]],[[-0.10490356385708,0.034649763256311,0.074865080416203],[0.012186614796519,-0.066239029169083,-0.050629254430532],[0.030743390321732,0.055978506803513,0.063176706433296]],[[0.067664109170437,0.077866248786449,-0.037996146827936],[0.041674587875605,-0.080467499792576,-0.15006767213345],[-0.13763710856438,-0.024106504395604,0.04810319468379]],[[-0.023445526137948,-0.026275353506207,-0.030674356967211],[-0.074448220431805,-0.056709036231041,0.06074532866478],[0.047666911035776,-0.0022593725007027,-0.16512285172939]],[[-0.20274510979652,-0.15252800285816,-0.17013417184353],[0.16122044622898,0.11056908965111,0.03410305082798],[0.0050423783250153,0.054447431117296,-0.0092025157064199]],[[-0.15544708073139,0.016080476343632,-0.12521836161613],[0.0045391228049994,0.064189992845058,-0.058031816035509],[-0.065255366265774,-0.0060929176397622,-0.0429672524333]],[[-0.035404734313488,-0.085953079164028,0.079311974346638],[-0.11401583999395,0.040051605552435,0.11001541465521],[-0.069223314523697,0.030840495601296,-0.019725140184164]],[[0.06951630115509,0.025477627292275,0.028929235413671],[0.070258893072605,0.0075269839726388,-0.14220133423805],[0.014847884885967,-0.0077281477861106,0.014902298338711]],[[0.12730456888676,-0.02881077490747,0.048473984003067],[-0.1161577925086,-0.06805806607008,-0.01953942142427],[-0.058141954243183,-0.098797462880611,-0.015747053548694]],[[0.0075981575064361,-0.055967647582293,0.19438026845455],[0.064621545374393,0.10229001194239,-0.067239426076412],[-0.013007666915655,-0.0052563040517271,0.15772241353989]],[[0.04346489533782,-0.11303716152906,-0.056766126304865],[0.1209584325552,0.17629417777061,-0.11076252162457],[-0.11487285792828,-0.03345250710845,0.017127899453044]],[[-0.094531357288361,-0.074590340256691,0.14820432662964],[-0.11401765793562,-0.072119288146496,0.059885285794735],[-0.099556900560856,-0.037749461829662,-0.03602110221982]],[[0.00014683819608763,-0.13076119124889,-0.090786650776863],[0.048421118408442,-0.0055031310766935,-0.037916593253613],[0.032379563897848,0.0092007294297218,0.12912666797638]],[[-0.03506663441658,-0.041354298591614,-0.013085465878248],[0.042428229004145,-0.10405306518078,-0.022213416174054],[0.034988954663277,0.18990249931812,0.080974288284779]],[[0.099713928997517,-0.082861661911011,0.16713143885136],[0.10213979333639,0.085358820855618,0.08904056251049],[-0.013445624150336,-0.066092513501644,-0.073233619332314]],[[-0.037804123014212,0.0092850001528859,0.10529692471027],[0.24327366054058,0.12396997213364,-0.079241044819355],[0.0033136429265141,0.051149819046259,-0.025258433073759]],[[-0.03186322003603,0.012114184908569,-0.03865947201848],[0.084747307002544,0.079357199370861,-0.062586948275566],[0.053182274103165,-0.014408636838198,0.11564868688583]],[[0.064049378037453,-0.018340893089771,-0.063347086310387],[0.0041927620768547,-0.0095653114840388,0.014549034647644],[-0.0076879789121449,-0.068902440369129,0.013193731196225]],[[-0.048042740672827,0.10032378137112,0.038795959204435],[0.10982760041952,0.005023505538702,0.058189131319523],[-0.078455336391926,-0.15220613777637,-0.04863465577364]],[[-0.029034335166216,0.0099238902330399,0.02650904469192],[-0.030895253643394,-0.018242547288537,0.037925496697426],[-0.25371983647346,0.0081256544217467,0.065137922763824]],[[0.067254289984703,-0.015289383940399,0.10202930122614],[-0.013195814564824,-0.017889969050884,0.027482064440846],[-0.069854430854321,-0.11258438229561,-0.10174803435802]],[[-0.028204126283526,-0.050779055804014,-0.0010991422459483],[-0.073155701160431,-0.094933681190014,-0.04899962246418],[0.14197300374508,0.042114701122046,-0.052004061639309]],[[0.033112332224846,-0.083244651556015,0.010000447742641],[-0.15315029025078,-0.002850177930668,0.10075653344393],[-0.073179803788662,0.023313349112868,-0.10565183311701]],[[0.061270847916603,0.13359908759594,0.081081382930279],[-0.060614135116339,-0.010418443009257,0.014420794323087],[-0.0037728359457105,-0.046624656766653,0.01720205694437]],[[0.08378928154707,0.021749576553702,-0.15899360179901],[0.016795750707388,0.024517361074686,-0.0019605697598308],[-0.0096216108649969,-0.0064878487028182,-0.022463072091341]],[[-0.017409864813089,-0.0011558962287381,-0.057548031210899],[0.080555394291878,-0.024074284359813,-0.022236950695515],[-0.01288148202002,-0.0045338738709688,-0.069434158504009]],[[-0.056065164506435,-0.067290455102921,0.03486829996109],[-0.020049013197422,0.011078801937401,-0.049829684197903],[0.030614346265793,0.0069655952975154,0.0091417701914907]],[[-0.009992397390306,0.011288742534816,-0.010723053477705],[-0.083675622940063,0.029374159872532,0.033152472227812],[0.027632735669613,-0.0043590562418103,0.03246583789587]],[[-0.046965442597866,-0.10120493173599,0.037786830216646],[-0.033500868827105,-0.097301319241524,0.04129946231842],[-0.17501291632652,-0.049089554697275,0.055259142071009]]],[[[-0.033561788499355,0.12139067798853,0.14518460631371],[-0.019725603982806,0.022852879017591,0.072560705244541],[-0.076139964163303,-0.062934160232544,-0.0024316939525306]],[[0.0094269691035151,-0.059254124760628,0.11562597751617],[0.048744894564152,0.021951608359814,0.099741578102112],[0.033947724848986,-0.061406150460243,-0.057179372757673]],[[0.048514276742935,-0.012358698062599,-0.025467816740274],[0.050284463912249,-0.072274804115295,-0.062103986740112],[0.011871262453496,-0.059593759477139,-0.1668389737606]],[[0.16060265898705,-0.10676489025354,-0.10698154568672],[-0.01186603680253,0.033201180398464,-0.080855503678322],[-0.1096858009696,-0.10436560958624,0.090636752545834]],[[0.097522713243961,-0.0295490603894,0.07738646119833],[0.19655025005341,-0.10397288203239,-0.03270922601223],[0.014294609427452,0.0002178949653171,-0.011017987504601]],[[-0.082302905619144,-0.10631712526083,0.011875730007887],[0.11939242482185,-0.020558465272188,-0.047584399580956],[0.0013233830686659,-0.030863124877214,-0.01672082580626]],[[0.070184998214245,-0.0053420625627041,0.18680289387703],[0.071578741073608,-0.109066426754,-0.048345848917961],[-0.01685843989253,-0.030034048482776,-0.010453448630869]],[[-0.14533104002476,-0.004879102576524,-0.022951478138566],[0.1142745167017,0.12185986340046,-0.086022272706032],[0.012213787995279,-0.086449332535267,-0.10679095238447]],[[-0.083127692341805,-0.068299248814583,0.031923219561577],[0.079584673047066,-0.06647277623415,-0.090415097773075],[-0.018713358789682,0.10237581282854,-0.038836449384689]],[[-0.055968318134546,-0.10811183601618,-0.10784599930048],[0.033687081187963,0.046947203576565,0.065248288214207],[0.013598338700831,0.0066453670151532,0.033471282571554]],[[0.1107709556818,-0.031272787600756,-0.074863687157631],[0.00088570412481204,0.043225400149822,-0.031446501612663],[0.00060133478837088,-0.1232378333807,0.0078838272020221]],[[0.023001359775662,-0.058612048625946,-0.031063972041011],[-0.052807860076427,-0.053262412548065,-0.1421444863081],[-0.0119539629668,0.039184521883726,-0.019602688029408]],[[0.092437580227852,0.10901290178299,0.093041121959686],[0.07738471031189,0.016810754314065,0.035038776695728],[0.0036064593587071,-0.03259789198637,0.025087406858802]],[[-0.13029856979847,-0.0059289853088558,0.10302495211363],[0.024688895791769,0.0084791202098131,0.014474264346063],[0.021751154214144,-0.27102074027061,0.030207902193069]],[[0.00377630116418,-0.14378127455711,-0.033250167965889],[0.0043395585380495,-0.0065796454437077,-0.036396190524101],[-0.025562651455402,-0.012812234461308,-0.065311826765537]],[[0.10259864479303,-0.045142401009798,-0.25493043661118],[0.047327298671007,-0.068188905715942,-0.028356160968542],[-0.011066804639995,0.069485642015934,-0.04829690977931]],[[0.014277650974691,0.047183994203806,0.016332326456904],[0.0059937159530818,-0.060237362980843,-0.041306138038635],[0.027093235403299,-0.025292538106441,0.0033527254126966]],[[0.021100951358676,0.022888844832778,0.09920559078455],[0.085866913199425,0.11883342266083,-0.010569028556347],[-0.041970126330853,0.14450903236866,0.12674382328987]],[[0.05175095051527,-0.044400949031115,0.12430475652218],[0.0034114522859454,-0.081868186593056,0.030005091801286],[-0.014996029436588,-0.057840377092361,-0.0063716969452798]],[[-0.01498797070235,-0.10428724437952,0.040499031543732],[-0.064403340220451,-0.0025805097538978,0.062211524695158],[-0.046945873647928,-0.15325590968132,-0.16401202976704]],[[0.070545256137848,0.043560829013586,0.096169590950012],[0.10712496936321,0.0060435868799686,-0.059697102755308],[-0.22887007892132,-0.035663448274136,-0.028472384437919]],[[-0.0092933923006058,0.005495592020452,-0.076194934546947],[0.0084134172648191,0.058201555162668,-0.071407996118069],[-0.034480825066566,0.0512217245996,-0.14582334458828]],[[-0.044712565839291,-0.065819725394249,-0.01982693746686],[0.0033035958185792,0.025063008069992,-0.016637204214931],[0.022793330252171,-0.023369938135147,0.01616825722158]],[[-0.18877139687538,0.058528579771519,0.071600832045078],[-0.049558568745852,0.051691822707653,-0.078337535262108],[0.14637200534344,0.030405664816499,0.025599563494325]],[[0.090715944766998,0.0078069963492453,-0.14060500264168],[0.026237402111292,0.056083887815475,-0.14240334928036],[-0.11368793994188,0.072008140385151,0.032898340374231]],[[-0.0091626951470971,0.02779876999557,0.074185892939568],[-0.078994005918503,0.019209051504731,-0.037655226886272],[-0.038540851324797,0.020845212042332,-0.0098057258874178]],[[0.11547060310841,0.14061702787876,-0.012916051782668],[0.033473931252956,0.10369399189949,-0.016923541203141],[-0.09613960981369,0.034039862453938,-0.020592579618096]],[[-0.011802917346358,0.017626281827688,0.035117480903864],[0.12676309049129,-0.15205493569374,-0.063931062817574],[0.027878636494279,-0.023914681747556,0.0012349147582427]],[[-0.14074285328388,-0.0077613168396056,0.090924330055714],[0.011155630461872,0.051577024161816,0.017196703702211],[0.045489221811295,0.049909833818674,0.014140708371997]],[[-0.010979058220983,-0.0045990883372724,0.060436520725489],[0.053057834506035,-0.064197093248367,0.10416951775551],[0.055302932858467,-0.09262353926897,0.012736042030156]],[[0.012304427102208,0.023623725399375,-0.043638814240694],[0.038896840065718,0.0055687548592687,0.076783619821072],[0.0419767126441,-0.094829127192497,0.098276481032372]],[[-0.094222620129585,-0.11137080937624,-0.018268458545208],[0.044983170926571,-0.016384558752179,-0.031613927334547],[0.05082643404603,-0.0015919653233141,0.060763113200665]],[[0.085460834205151,-0.025520896539092,0.022652400657535],[0.15965984761715,-0.12897633016109,0.059521317481995],[-0.21894823014736,0.081992037594318,0.025821743533015]],[[0.0062872320413589,-0.022027960047126,-0.035017143934965],[-0.0018522903556004,0.048236031085253,-0.10552359372377],[-0.13502742350101,-0.068452320992947,-0.05099331587553]],[[-0.021816654130816,0.030431715771556,0.069918058812618],[0.052925053983927,-0.027255387976766,0.061736572533846],[-0.072916999459267,0.15529535710812,0.024336241185665]],[[0.0437848046422,-0.0021093902178109,0.14431981742382],[0.088552854955196,0.021254746243358,0.047584291547537],[0.038276255130768,0.097592547535896,-0.026303136721253]],[[0.07342604547739,0.072346791625023,0.0069208247587085],[-0.038797043263912,-0.017893563956022,-0.019373482093215],[0.12321301549673,-0.014288149774075,-0.0087407538667321]],[[-0.052417799830437,-0.030554605647922,-0.071421392261982],[0.082473285496235,0.03103400953114,-0.096277572214603],[0.18136470019817,-0.0074163456447423,-0.11308225989342]],[[-0.00226139719598,0.067430056631565,-0.055487420409918],[0.0069055161438882,-0.050673056393862,0.011373792774975],[0.031521990895271,-0.10014463961124,0.0049446877092123]],[[0.0010658653918654,0.019065335392952,-0.071311041712761],[-0.071380585432053,0.031964384019375,-0.075524091720581],[-0.0058329124003649,-0.026407079771161,0.093287356197834]],[[-0.040264945477247,0.023507665842772,0.17509354650974],[-0.13286554813385,0.020538402721286,-0.014176321215928],[-0.035278338938951,0.055523492395878,0.071317851543427]],[[0.04312739521265,-0.052738144993782,0.13756097853184],[0.021141048520803,-0.022116992622614,0.080612562596798],[-0.094918809831142,0.0086625711992383,-0.11676865816116]],[[-0.159762352705,-0.0041414350271225,0.12860605120659],[0.050114963203669,0.093196220695972,0.038866065442562],[0.028181239962578,0.0087256198748946,0.02664490044117]],[[0.030223609879613,0.051448386162519,0.033246193081141],[0.06643108278513,-0.0081378817558289,-0.0015557606238872],[0.14046141505241,0.093554444611073,-0.24306403100491]],[[-0.11555947363377,-0.048636939376593,-0.021354863420129],[-0.047036115080118,0.039641678333282,0.13335990905762],[-0.0084850117564201,0.030755681917071,0.10275533050299]],[[-0.0261908788234,-0.0083500621840358,-0.051810406148434],[-0.045414943248034,-0.034452434629202,0.10569194704294],[-0.057911198586226,0.068613566458225,-0.055128157138824]],[[-0.071515746414661,-0.020141391083598,0.15303346514702],[0.033643435686827,0.064286850392818,-0.085079349577427],[0.041927732527256,0.025545643642545,-0.1785647124052]],[[0.082840643823147,0.065865278244019,-0.0096908640116453],[0.10671202093363,-0.012675645761192,-0.028046540915966],[-0.030878135934472,-0.01821924187243,-0.08607441931963]],[[-0.042952794581652,0.028275914490223,-0.096352085471153],[0.024472875520587,-0.00059244030853733,-0.065736673772335],[0.061451692134142,0.012083921581507,-0.075691498816013]],[[-0.10582353919744,-0.0031877364963293,0.037922166287899],[-0.033843904733658,0.16978369653225,-0.0079725785180926],[-0.025363052263856,-0.016868168488145,0.11623837798834]],[[-0.0038344881031662,0.065764680504799,0.090602144598961],[0.10902759432793,-0.082549102604389,0.016320733353496],[-0.036705650389194,-0.048144660890102,-0.051454748958349]],[[-0.099061377346516,-0.20029373466969,0.023036882281303],[-0.17835102975368,0.099218092858791,0.040757305920124],[0.074333727359772,-0.018816808238626,-0.12507189810276]],[[0.10377085208893,0.012242651544511,-0.019720384851098],[-0.0099555216729641,-0.044653926044703,-0.11113583296537],[0.028550187125802,-0.13433943688869,-0.12432110309601]],[[0.080522187054157,0.021080324426293,-0.044764582067728],[0.1193370744586,-0.04949190095067,-0.049355573952198],[-0.10871742665768,0.064417354762554,0.0041899881325662]],[[0.022557014599442,0.0048882481642067,0.0098338946700096],[0.063566520810127,-0.064158163964748,-0.029030846431851],[0.015366971492767,0.060423515737057,0.053934156894684]],[[-0.12691400945187,0.016718735918403,-0.078976206481457],[0.090089432895184,0.0061879148706794,0.028493534773588],[0.0089821238070726,-0.095164053142071,0.0776581838727]],[[0.015462826937437,-0.014191861264408,0.066372849047184],[-0.013258630409837,0.041790518909693,-0.03767066821456],[-0.014729890972376,0.012424366548657,0.11579644680023]],[[0.01973369717598,-0.028945768252015,-0.047071378678083],[0.051663007587194,-0.11986357718706,-0.042297668755054],[-0.05229327455163,0.060899026691914,0.066560082137585]],[[0.065145090222359,-0.0042939260601997,-0.0095724016427994],[0.01545964833349,0.13370391726494,0.10796973109245],[0.085185669362545,0.15342430770397,0.16332900524139]],[[-0.049499228596687,-0.11938258260489,0.036562155932188],[0.022786036133766,-0.076130479574203,0.026329260319471],[0.068158201873302,0.010464752092957,0.11231008172035]],[[0.021870730444789,-0.10726587474346,-0.063575722277164],[-0.001004233607091,0.019620459526777,0.013561300933361],[-0.041283424943686,0.022128503769636,-0.086047627031803]],[[-0.16329808533192,0.036469381302595,-0.10124292969704],[-0.16353294253349,-0.0194061845541,-0.023197406902909],[0.022306371480227,0.034538984298706,-0.047426328063011]],[[-0.097336068749428,-0.087846845388412,0.043029602617025],[-0.040367849171162,-0.00072562060086057,-0.09463507682085],[0.040614724159241,0.031084209680557,0.078058212995529]],[[0.088586591184139,0.090339615941048,0.0039499020203948],[-0.05695528537035,0.052965890616179,0.023126043379307],[0.13788791000843,0.066179744899273,0.023425413295627]]],[[[0.12958590686321,-0.049905478954315,-0.07048761099577],[0.038869239389896,0.10565023124218,-0.07386576384306],[-0.14489078521729,0.057575888931751,0.040647976100445]],[[0.048434525728226,0.0052873915992677,-0.031950421631336],[-0.079545982182026,0.014231859706342,0.040609620511532],[0.035795409232378,0.073560401797295,-0.11354019492865]],[[-0.016588745638728,0.067166574299335,0.026060864329338],[-0.010251453146338,-0.10871873050928,0.15427239239216],[-0.13964489102364,-0.074325583875179,-0.1363713145256]],[[-0.20745454728603,0.022705240175128,0.07034507393837],[0.017571698874235,0.032109256833792,-0.11889583617449],[0.0092000467702746,-0.048020891845226,0.086518496274948]],[[-0.04556080698967,-0.059204142540693,-0.11166189610958],[-0.022796357050538,-0.077313303947449,-0.049203220754862],[-0.0029135048389435,0.06171116232872,-0.026146082207561]],[[-0.085381880402565,-0.065547958016396,0.12571631371975],[0.12936273217201,-0.003039141651243,-0.010225446894765],[-0.29219216108322,-0.092644438147545,-0.2329902946949]],[[-0.10078497231007,-0.0027492109220475,0.012659196741879],[-0.0012361254775897,-0.055284589529037,-0.092061802744865],[0.047979958355427,0.16620652377605,0.012140151113272]],[[0.13973803818226,0.05069961771369,0.067698150873184],[-0.056412648409605,0.042194411158562,0.080336414277554],[0.089827843010426,0.16165687143803,-0.14020685851574]],[[-0.03602646663785,-0.13746304810047,0.013491745106876],[0.11906135082245,0.10834426432848,-0.041108101606369],[0.047452051192522,-0.12398798763752,-0.0029306036885828]],[[0.064154699444771,-0.070502854883671,-0.060837853699923],[0.070147097110748,-0.023353282362223,0.007150970865041],[0.048720367252827,0.0018127454677597,-0.057531397789717]],[[-0.033292900770903,-0.015010317787528,0.06859540194273],[0.0044624358415604,-0.032362274825573,0.043225590139627],[-0.064538069069386,0.024148382246494,-0.079479791224003]],[[-0.066098935902119,-0.050655703991652,-0.22712372243404],[0.0094978883862495,0.031823880970478,-0.068605877459049],[-0.030486945062876,0.046529248356819,0.062054850161076]],[[-0.069914765655994,0.10398396104574,-0.096869260072708],[-0.025720110163093,0.02481665275991,0.0042569665238261],[-0.085338041186333,0.081785045564175,-0.024912824854255]],[[0.14538452029228,-0.021056877449155,0.02424169704318],[0.041351858526468,-0.17423495650291,0.078130953013897],[0.038849756121635,-0.058781716972589,-0.084810078144073]],[[-0.17049841582775,0.0070512895472348,-0.046490900218487],[0.10874647647142,0.018675327301025,-0.26450115442276],[0.062669411301613,0.11516980081797,0.027006322517991]],[[0.083255507051945,0.031665902584791,-0.050523478537798],[0.096158213913441,-0.045867223292589,-0.006671906914562],[0.025346137583256,0.064243271946907,-0.074261538684368]],[[-0.035771030932665,-0.040483582764864,-0.20469672977924],[0.062782593071461,0.025565786287189,-0.095159277319908],[0.014047867618501,-0.084419317543507,0.072794109582901]],[[-0.057965718209743,-0.057365361601114,-0.050229668617249],[-0.060090102255344,0.066615909337997,-0.035708777606487],[0.050053685903549,0.075106129050255,0.10067754238844]],[[-0.12898330390453,-0.14887757599354,0.068051926791668],[-0.1647824794054,0.0022613049950451,-0.01498606055975],[-0.02991402707994,-0.011167906224728,-0.062132027000189]],[[-0.12940868735313,-0.086653053760529,-0.07574250549078],[-0.085966356098652,-0.053814150393009,-0.074480719864368],[-0.063246436417103,-0.17746226489544,-0.19724327325821]],[[0.17595721781254,-0.03849109634757,0.062724076211452],[0.056176368147135,0.11972426623106,0.044051870703697],[-0.12415008991957,-0.13555656373501,-0.036671675741673]],[[0.018743259832263,-0.029908418655396,-0.026821613311768],[0.034230593591928,0.060973022133112,-0.0042839632369578],[-0.077876150608063,-0.054530661553144,-0.037614822387695]],[[0.0052216113545001,0.0710713788867,0.0059010004624724],[-0.048662215471268,-0.038706887513399,0.029637672007084],[-0.04047330096364,0.035247087478638,-0.12315904349089]],[[0.065848223865032,0.12888416647911,0.07244436442852],[-0.17007306218147,0.037977386265993,0.015265394933522],[0.17369948327541,0.18478806316853,0.00066217279527336]],[[0.094349168241024,0.08111510425806,-0.005467152222991],[0.059650421142578,0.087807610630989,0.098509825766087],[0.054340753704309,0.091870933771133,0.0022110443096608]],[[0.063015975058079,-0.075460769236088,-0.051077589392662],[-0.044668972492218,0.033876746892929,0.0027679041959345],[0.02772780880332,-0.0021779797971249,0.046342059969902]],[[-0.05990381911397,0.061630170792341,0.00039561864105053],[0.056308142840862,-0.058953419327736,-0.20971700549126],[0.0042271218262613,-0.20709277689457,-0.14354091882706]],[[0.10411129146814,-0.064630284905434,-0.055854555219412],[-0.11226055771112,-0.070686168968678,-0.037409242242575],[0.0038555704522878,0.066885404288769,0.063133783638477]],[[-0.010129206813872,0.074633449316025,-0.011720922775567],[-0.039294630289078,-0.059279676526785,0.0032337831798941],[0.052833821624517,-0.045542329549789,0.10820496827364]],[[-0.064092628657818,0.092910654842854,0.021103063598275],[0.019809249788523,-0.055987790226936,0.028191532939672],[-0.095770187675953,0.015903638675809,-0.048379823565483]],[[-0.10642360150814,-0.065917387604713,0.14071092009544],[0.0097401160746813,0.024580789729953,-0.0023584458976984],[-0.073634497821331,-0.036939419806004,0.018306730315089]],[[-0.0073378952220082,0.015017895027995,-0.0007145898998715],[-0.037144090980291,0.035878211259842,-0.028962252661586],[0.17581970989704,0.093299433588982,0.19354932010174]],[[-0.091244071722031,0.033603813499212,0.099127605557442],[0.09962809830904,0.027272589504719,0.063784889876842],[-0.091549217700958,0.072888851165771,0.00942263007164]],[[0.042845778167248,-0.14310044050217,-0.07843391597271],[-0.1788649559021,0.014072799123824,-0.18727789819241],[-0.078771345317364,-0.06513138115406,-0.16544400155544]],[[-0.10210204124451,-0.22137035429478,-0.11199001967907],[-0.11187714338303,-0.12293540686369,0.077694460749626],[-0.14627100527287,-0.11141104251146,-0.050330378115177]],[[0.091276921331882,-0.073795504868031,-0.043654125183821],[0.006375634111464,-0.12408426403999,-0.040226750075817],[0.083937495946884,0.048942733556032,-0.010805084370077]],[[0.05285781621933,0.0036084076855332,-0.05418873950839],[0.037482392042875,-0.034306280314922,-0.091519899666309],[0.00020345255325083,0.052642468363047,-0.080725096166134]],[[-0.097788818180561,-0.076344639062881,-0.069608978927135],[0.080695144832134,-0.050111226737499,-0.012170044705272],[0.15905167162418,0.014817841351032,0.054076142609119]],[[-0.026710700243711,-0.13379108905792,-0.11943506449461],[-0.16304281353951,-0.072114445269108,0.061872035264969],[0.15838113427162,-0.073262467980385,0.056201130151749]],[[-0.082124508917332,0.17536324262619,-0.049505770206451],[-0.054490324109793,-0.060534540563822,-0.054248508065939],[0.031125830486417,0.042379308491945,0.0029816417954862]],[[0.17381405830383,0.074839487671852,-0.11038670688868],[-0.067987374961376,0.0088267158716917,-0.096931226551533],[0.0067534097470343,-0.092481836676598,-0.1945077329874]],[[0.099544160068035,-0.022122202441096,-0.027312038466334],[0.060825016349554,0.044340912252665,-0.073283739387989],[-0.14139507710934,0.051971506327391,-0.099478140473366]],[[0.13000969588757,-0.16530710458755,0.12617135047913],[0.030175883322954,-0.0077659394592047,-0.059485755860806],[0.040273576974869,0.076182305812836,0.003856617026031]],[[0.031938336789608,0.0096192425116897,0.10884533077478],[0.076344318687916,0.0052897944115102,-0.088240936398506],[-0.25007504224777,0.039772897958755,-0.0058896606788039]],[[-0.10548686236143,0.052671648561954,0.01429258286953],[0.010524736717343,0.019161030650139,-0.0073701846413314],[0.11990214884281,0.019477985799313,0.015617222525179]],[[0.071446813642979,0.025848092511296,0.1282297372818],[-0.052866362035275,-0.052780795842409,-0.097341537475586],[0.029223214834929,-0.029862677678466,-0.08611374348402]],[[0.083137385547161,-0.067487671971321,-0.053801979869604],[0.18190267682076,-0.029024528339505,-0.067550972104073],[0.052769042551517,0.0021502440795302,-0.085201576352119]],[[0.057847116142511,0.020560456439853,0.019387766718864],[-0.038460902869701,-0.13524363934994,-0.03622131049633],[0.011689404025674,0.018749581649899,0.077645666897297]],[[-0.038288317620754,0.044810861349106,-0.11416637897491],[0.0010526002151892,0.099944584071636,0.093837730586529],[0.026404291391373,-0.073855526745319,-0.069148547947407]],[[-0.075636848807335,-0.030529085546732,0.13847908377647],[-0.090599171817303,0.097023367881775,0.039239358156919],[0.12717500329018,0.026530483737588,-0.022666594013572]],[[0.17148387432098,0.013288530521095,0.042122561484575],[0.090736076235771,-0.01931513287127,-0.10518866032362],[0.011961027048528,-0.20600412786007,0.11654877662659]],[[0.25477883219719,0.083442933857441,0.057386536151171],[-0.072201520204544,0.046594198793173,0.096170589327812],[-0.082515306770802,-0.0053227012977004,-0.029535168781877]],[[-0.087699800729752,-0.056654840707779,0.036402005702257],[0.018982628360391,-0.033045619726181,-0.028932495042682],[-0.048643194139004,-0.010373235680163,-0.064932279288769]],[[0.069713778793812,-0.024932665750384,-0.011209421791136],[-0.00099529849831015,0.0088018160313368,-0.023792289197445],[0.20199786126614,0.14760556817055,0.11399421095848]],[[-0.060275498777628,-0.025615114718676,-0.055257428437471],[0.034669801592827,-0.061127919703722,-0.098118714988232],[-0.0067101703025401,0.036376498639584,0.21077473461628]],[[0.04987645149231,0.011428986676037,-0.030715124681592],[-0.0037280751857907,-0.065580800175667,-0.14036945998669],[-0.02577287517488,0.12624821066856,-0.10823828727007]],[[0.10902386158705,0.022667549550533,0.059409115463495],[-0.13761748373508,-0.014054969884455,-0.060551412403584],[-0.053238097578287,-0.0048561664298177,-0.0087765725329518]],[[-0.050484303385019,0.019859289750457,0.09062571823597],[-0.014638509601355,-0.026802504435182,-0.026691121980548],[0.044582031667233,0.024501346051693,0.017364714294672]],[[-0.047489076852798,0.070863395929337,-0.047223631292582],[0.061011526733637,0.060568742454052,0.070782065391541],[-0.042301416397095,0.029513381421566,0.08748883754015]],[[-0.23119357228279,-0.096560843288898,0.13775353133678],[-0.17395536601543,-0.0098605807870626,0.18460792303085],[-0.092912726104259,-0.064083978533745,0.063767343759537]],[[0.034188978374004,-0.09588848054409,-0.098831981420517],[-0.10032100230455,-0.0066824806854129,0.008017030544579],[0.019887693226337,-0.069184117019176,-0.0029562641866505]],[[-0.11537945270538,-0.0764240026474,-0.056583907455206],[-0.017236663028598,-0.12458532303572,-0.14111621677876],[0.026403551921248,0.037325974553823,-0.11472196131945]],[[-0.040725212544203,0.1027072891593,0.13060532510281],[0.064172029495239,0.090181827545166,-0.0086373649537563],[-0.038977045565844,0.030891178175807,0.14600642025471]],[[0.090585447847843,-0.14059048891068,-0.10522271692753],[-0.12894374132156,-0.070292055606842,-0.030011836439371],[-0.030107257887721,-0.072702869772911,-0.098613001406193]]],[[[-0.10738991200924,-0.052983742207289,-0.073856085538864],[-0.042974781244993,-0.093406707048416,-0.020182564854622],[-0.071618169546127,-0.042635299265385,-0.050464853644371]],[[0.045346438884735,0.070982359349728,0.0093416599556804],[0.055229175835848,-0.0075078089721501,-0.038515761494637],[-0.016558635979891,0.067296616733074,-0.02704006806016]],[[-0.11880787461996,-0.069138988852501,0.01867919228971],[-0.063783332705498,-0.11755323410034,-0.053175456821918],[-0.023116644471884,0.011092557571828,-0.097180783748627]],[[-0.034757431596518,0.11245451122522,0.092581607401371],[-0.035963080823421,-0.078109852969646,0.13876214623451],[0.00042480489355512,0.019487105309963,-0.011510048061609]],[[0.017025234177709,-0.10175997018814,0.010150723159313],[0.0062701655551791,-0.11140472441912,0.0057585872709751],[-0.041219256818295,-0.19234822690487,0.048922676593065]],[[-0.056061588227749,0.14335045218468,-0.011385839432478],[0.055622857064009,0.071971096098423,-0.016163479536772],[0.07310651242733,-0.015396079979837,0.061506323516369]],[[-0.11894591897726,0.010438471101224,-0.017707111313939],[0.02382673509419,0.08715233206749,-0.02399742975831],[0.0082140751183033,-0.029375340789557,-0.079125620424747]],[[0.0077393394894898,0.012521459721029,-0.062518700957298],[0.060777798295021,0.022173004224896,-0.078217707574368],[-0.00067377689993009,-0.041073679924011,0.031555898487568]],[[-0.0053438879549503,0.047172661870718,-0.053330797702074],[0.0017210292862728,-0.00085646327352151,0.043291222304106],[0.019749697297812,0.084914736449718,-0.015973994508386]],[[-0.045449703931808,-0.043266542255878,0.040547717362642],[0.015688832849264,0.034797959029675,-0.011076250113547],[-0.0064909067004919,-0.025394160300493,-0.0017290683463216]],[[0.085347689688206,-0.037419762462378,-0.03178183734417],[-0.026796400547028,-0.16522477567196,0.022995969280601],[0.013828288763762,-0.055776551365852,0.11195328831673]],[[0.04120259732008,0.026306062936783,-0.054411917924881],[-0.019027223810554,-0.029511397704482,0.019067915156484],[-0.051296230405569,-0.027498928830028,0.081311121582985]],[[0.054907903075218,-0.050026141107082,-0.010187522508204],[-0.065783925354481,-0.015840012580156,0.0084389708936214],[-0.024166524410248,0.0012467949418351,0.059464532881975]],[[0.00048868742305785,0.050817251205444,0.016243850812316],[-0.028704602271318,-0.12024939805269,-0.013634043745697],[-0.11681516468525,0.02156275883317,-0.061070796102285]],[[0.0064382324926555,0.0033790692687035,0.1211002022028],[0.10565852373838,-0.11246659606695,0.015633082017303],[0.054472662508488,-0.039293501526117,0.12191140651703]],[[0.073631167411804,-0.039215344935656,0.015967488288879],[-0.017407789826393,0.032914411276579,-0.042161922901869],[-0.022212192416191,-0.040201250463724,0.19904088973999]],[[-0.00040328421164304,0.065299838781357,0.14136728644371],[0.095180951058865,-0.064747385680676,0.05997334420681],[0.026528913527727,-0.055095858871937,-0.067224808037281]],[[0.026437949389219,0.0099933575838804,-0.013017914257944],[-0.069524116814137,-0.0050581032410264,0.075532048940659],[-0.09334272891283,0.040214523673058,-0.0051987320184708]],[[-0.015764813870192,-0.0090045696124434,-0.025830090045929],[0.035029098391533,-0.082899659872055,0.040149737149477],[-0.026816485449672,-0.10527338087559,-0.032456092536449]],[[-0.06112290173769,-0.0063292351551354,-0.066474005579948],[-0.094150751829147,0.087338760495186,-0.029522145166993],[0.043643157929182,-0.14378237724304,-0.051702279597521]],[[-0.047821838408709,-0.074835628271103,0.037248808890581],[0.10871797055006,0.022669674828649,-0.023548617959023],[-0.038836970925331,0.026930356398225,-0.028386374935508]],[[-0.0096256975084543,-0.052811525762081,-0.017554491758347],[-0.024109721183777,0.0023393286392093,0.027229374274611],[-0.06399592757225,-0.0263313036412,0.03313647210598]],[[-0.01201696228236,-0.064305782318115,0.034497503191233],[-0.0030277688056231,-0.055456690490246,0.017283411696553],[0.0095999296754599,-0.12170265614986,0.17499060928822]],[[0.049730230122805,0.10398911684752,0.076413251459599],[0.067663609981537,0.042520128190517,0.1879567950964],[-0.077167794108391,0.078747950494289,0.067238867282867]],[[0.031915690749884,0.070458546280861,0.11168160289526],[0.048858001828194,0.079240761697292,0.093106344342232],[-0.097962126135826,0.039969924837351,0.073555186390877]],[[0.052425522357225,0.0150001719594,-0.0049012289382517],[0.060319196432829,0.071902133524418,-0.067415922880173],[-0.017710851505399,0.018233146518469,-0.079178303480148]],[[-0.011019162833691,-0.086211323738098,-0.021187728270888],[-0.00778733426705,0.034496556967497,0.00072612677467987],[-0.07063215225935,-0.00090824521612376,-0.037188943475485]],[[0.14279599487782,-0.030607899650931,-0.019847631454468],[-0.018374832347035,-0.098756149411201,0.024215288460255],[-0.058332204818726,0.057871833443642,-0.047169968485832]],[[0.0017567749600857,0.029184892773628,-0.01220297627151],[-0.061224650591612,0.073130719363689,-0.056624677032232],[0.044723324477673,0.085488311946392,-0.1077418550849]],[[0.036834020167589,-0.0067097083665431,-0.0034547203686088],[0.10824878513813,0.082300245761871,-0.074534356594086],[0.0065978937782347,-0.04648282378912,-0.094463102519512]],[[0.013842897489667,0.018839921802282,0.05274598672986],[0.067975513637066,-0.039349015802145,0.14555969834328],[-0.036301400512457,-0.029123796150088,0.21292272210121]],[[0.022093748673797,0.12896859645844,0.054967798292637],[0.17899996042252,-0.002283648820594,-0.046649005264044],[-0.022479634732008,0.011961189098656,-0.055858422070742]],[[-0.0021507076453418,0.017274778336287,0.062500059604645],[0.0006108584930189,0.066872425377369,-0.037856295704842],[0.033265959471464,0.050242997705936,-0.07011467218399]],[[0.012488504871726,0.015495021827519,-0.10097838193178],[0.02663167193532,-0.0063701122999191,0.14575643837452],[0.18635296821594,0.073366306722164,0.091379210352898]],[[-0.015775559470057,-0.0051354449242353,0.0011768677504733],[0.037352867424488,-0.16576054692268,0.045084498822689],[0.034135989844799,0.001291639637202,-0.04176090657711]],[[0.057431202381849,0.077887803316116,0.055876761674881],[-0.0020792328286916,0.073334604501724,-0.03137594088912],[-0.036169663071632,-0.020540254190564,0.027051668614149]],[[0.000174294837052,0.033897783607244,-0.051166769117117],[-0.041874472051859,-0.0080390572547913,-0.0023176551330835],[0.10581158101559,0.082537427544594,-0.036780707538128]],[[0.065237998962402,-0.027434166520834,-0.0093537997454405],[0.0064691565930843,-0.051533058285713,-0.11191307753325],[0.089889951050282,0.030514208599925,-0.088385477662086]],[[0.054426699876785,0.016039319336414,-0.093020670115948],[-0.042748063802719,-0.03454577177763,-0.024013010784984],[-0.10526995360851,-0.024820743128657,-0.045543950051069]],[[0.022992642596364,0.0038818195462227,-0.049198292195797],[-0.023105775937438,-0.029980411753058,-0.013336014933884],[0.064776733517647,0.14768850803375,0.014587027952075]],[[0.029375540092587,0.096325956285,0.035629503428936],[-0.014907937496901,-0.083328239619732,-0.084693767130375],[-0.035698741674423,-0.088213875889778,-0.040604285895824]],[[0.13221263885498,0.041132349520922,0.0032908646389842],[0.052046578377485,-0.18216019868851,-0.0081552444025874],[0.018888261169195,-0.0090313646942377,-0.0062612919136882]],[[-0.027506383135915,-0.041396748274565,0.13598388433456],[-0.13190743327141,-0.080335669219494,-0.080557659268379],[0.010859557427466,0.01488296687603,-0.15159332752228]],[[0.039662156254053,-0.0067757139913738,-0.049866653978825],[-0.026480810716748,-0.043422173708677,0.047872696071863],[-0.1790521889925,0.078057408332825,0.014250149950385]],[[0.093541838228703,0.051869090646505,-0.033153492957354],[-0.045746404677629,0.058683414012194,-0.026521006599069],[-0.0014228640357032,0.075083918869495,-0.19391399621964]],[[0.14439421892166,0.11611653864384,-0.041080214083195],[0.021337931975722,-0.0090377787128091,-0.046139236539602],[0.12669418752193,0.089403986930847,0.050146002322435]],[[0.055668711662292,-0.091035716235638,-0.062652707099915],[-0.14114394783974,0.0088445190340281,0.10774763673544],[0.060097046196461,0.034833397716284,0.029032472521067]],[[-0.031147269532084,0.092643693089485,0.048564255237579],[-0.01047879550606,0.057267148047686,-0.041401889175177],[0.045457620173693,-0.093167096376419,0.03584598004818]],[[0.023270538076758,-0.035250063985586,0.067815192043781],[-0.027779722586274,-0.015969628468156,0.11494550853968],[-0.07037890702486,-0.085736714303493,-0.041649125516415]],[[-0.037410091608763,0.082971259951591,0.15279433131218],[0.053048484027386,-0.06477764248848,-0.099734410643578],[-0.017334189265966,0.11291340738535,-0.13441929221153]],[[-0.0055648577399552,-0.022872880101204,-0.030300805345178],[-0.058174934238195,0.035261537879705,0.072768658399582],[-0.056900918483734,-0.055503811687231,-0.059043556451797]],[[-0.14157019555569,-0.034625321626663,-0.0764140188694],[0.047756385058165,-0.088400296866894,0.11058796197176],[0.22036997973919,-0.041113134473562,-0.026345198974013]],[[-0.023733021691442,0.013800845481455,0.15446496009827],[0.14426352083683,0.010529571212828,-0.066494502127171],[-0.036047838628292,0.10926747322083,0.11222972720861]],[[-0.14455412328243,-0.03575261682272,-0.053666703402996],[-0.14894758164883,-0.11837945878506,-0.027962369844317],[0.1003644540906,-0.060274470597506,-0.19286680221558]],[[-0.091133907437325,0.0029982547275722,-0.011307870969176],[-0.045258458703756,-0.082226634025574,-0.1974949836731],[0.10368227958679,-0.045979864895344,-0.07049922645092]],[[0.024427641183138,-0.04063905775547,-0.13056492805481],[0.007911148481071,0.06092194840312,-0.072234243154526],[0.113674685359,-0.070848226547241,0.064687691628933]],[[-0.033782932907343,-0.035949066281319,-0.03061649017036],[-0.027619006112218,-0.067895494401455,0.0065424661152065],[-0.00087535544298589,-0.040906898677349,0.07890248298645]],[[0.024692257866263,0.047865502536297,0.020611699670553],[-0.030419999733567,0.056090593338013,0.058562789112329],[-0.028018129989505,0.062710598111153,-0.0072363326326013]],[[0.040265154093504,0.072177328169346,0.085960291326046],[0.0074175456538796,0.024425983428955,0.023602869361639],[0.077586516737938,0.04713536053896,0.035249125212431]],[[-0.19471944868565,0.011678019538522,0.064239218831062],[-0.099187962710857,0.015819728374481,-0.080740191042423],[0.01386312302202,-0.012762123718858,-0.054843209683895]],[[0.055825743824244,-0.10154189914465,-0.024016555398703],[0.075126349925995,0.091963872313499,0.019772924482822],[0.041721738874912,0.068303778767586,-0.0096896085888147]],[[-0.18785440921783,0.00048365359543823,-0.025955541059375],[0.073469214141369,0.029844928532839,0.093438178300858],[0.065883658826351,-0.09739001095295,0.0015315543860197]],[[-0.061995767056942,-0.061649702489376,-0.12731590867043],[0.13047650456429,0.073394261300564,-0.14815694093704],[-0.090420700609684,-0.016426021233201,0.031264495104551]],[[0.096980817615986,-0.012539009563625,-0.14303231239319],[0.017202243208885,-0.051754496991634,-0.049582693725824],[-0.045949909836054,0.10495290160179,-0.11566361784935]]],[[[-0.0061591998673975,0.022506268694997,-0.0090072732418776],[0.032118752598763,0.051740601658821,-0.031765904277563],[-0.0038836423773319,-0.0049310252070427,-0.093983449041843]],[[-0.012866889126599,0.006836689542979,-0.0034941688645631],[-0.0028754596132785,0.031961031258106,0.0069999839179218],[-0.0095837358385324,-0.023375909775496,-0.012784627266228]],[[-0.015104719437659,-0.023016827180982,0.02996027469635],[-0.032553523778915,-0.079929746687412,0.037863153964281],[0.029666528105736,-0.017617048695683,-0.029065392911434]],[[0.014577903784811,-0.039849631488323,0.0058748871088028],[0.053237721323967,-0.025503266602755,0.0072217350825667],[-0.0029102438129485,0.0033260039053857,0.0065010855905712]],[[-0.0098777087405324,-0.018496869131923,-0.022629862651229],[0.013385642319918,-0.033632162958384,-0.053713738918304],[0.053307559341192,0.031216230243444,0.0064231599681079]],[[-0.0027151734102517,-0.013125899247825,0.017246138304472],[-0.0033628556411713,-0.021750034764409,-0.055775031447411],[-0.0053005912341177,0.0066505540162325,0.052358284592628]],[[-0.0073083466850221,0.017643446102738,-0.04842621088028],[0.060017298907042,0.016380000859499,-0.0015092018293217],[-0.0039464998990297,-0.013389428146183,-0.023223636671901]],[[0.0091060437262058,0.0066005405969918,0.0024609011597931],[-0.00012576843437273,-0.015208460390568,-0.020870523527265],[0.023916967213154,-0.0047241444699466,-0.0032705590128899]],[[0.0059653287753463,-0.023953061550856,0.019189808517694],[0.020116126164794,-0.017156826332211,0.010108455084264],[0.024125508964062,-0.026169903576374,-0.0075585450977087]],[[-0.0035672609228641,0.049528200179338,0.048856839537621],[-0.073962494730949,-0.053364038467407,-0.024784214794636],[0.039861790835857,-0.025970499962568,0.023916509002447]],[[0.003778449492529,0.024251904338598,0.018416155129671],[-0.023346276953816,0.028889514505863,-0.027212722226977],[-0.015542356297374,-0.0077897808514535,0.012312388047576]],[[0.024034600704908,-0.036296743899584,0.020750414580107],[-0.034461844712496,0.025940822437406,-0.0012226573890075],[0.03598640859127,-0.039835836738348,0.014277231879532]],[[0.0030759030487388,0.0081017399206758,0.016231080517173],[-0.038008112460375,-0.024565162137151,5.702761336579e-05],[0.01911018230021,0.026804570108652,-0.02457781881094]],[[0.025064293295145,-0.015814932063222,-0.00043140319758095],[0.013856331817806,-0.017481166869402,-0.0092628840357065],[0.024239027872682,-0.002207987010479,-0.018653154373169]],[[0.0050189318135381,0.03148939833045,-0.04648432135582],[0.019552163779736,-0.021202402189374,0.052620001137257],[-0.00056310911895707,-0.0029209910426289,-0.021238412708044]],[[0.0071763996966183,0.025410233065486,-0.015713775530457],[-0.029236378148198,-0.032301634550095,0.020750880241394],[0.030840357765555,-0.037727870047092,0.023429028689861]],[[0.0051191565580666,0.038623835891485,-0.0016822097823024],[-0.048505261540413,-0.017533706501126,0.01243145018816],[-0.012001254595816,-0.0059165148995817,0.011766748502851]],[[0.050656292587519,-0.012242779135704,0.0016021532937884],[0.006736836861819,-0.014511716552079,-0.039730917662382],[0.055967818945646,-0.060846146196127,0.0095120575278997]],[[-0.0039881905540824,-0.011841737665236,-0.01742591150105],[0.0064907232299447,0.0040439083240926,0.02894214913249],[-0.0098651824519038,0.025586202740669,-0.017012219876051]],[[-0.0012080208398402,-0.020886776968837,-0.005013492424041],[0.0093700205907226,-0.008045069873333,-0.022717159241438],[-0.015043555758893,-0.020156005397439,-0.0052342009730637]],[[-0.00072136329254135,0.011027573607862,-0.022526351734996],[-0.012331832200289,-0.0028462090995163,0.028403731063008],[0.034860748797655,-0.01964284107089,-0.011839024722576]],[[0.012508873827755,0.069726034998894,0.064750857651234],[0.056359153240919,0.18862901628017,0.05377196893096],[0.054831650108099,0.10317753255367,0.098697885870934]],[[0.029810536652803,-0.040821209549904,0.020874148234725],[-0.021475404500961,-0.030540633946657,0.01418524235487],[0.021394805982709,-0.041304670274258,0.0344393029809]],[[0.019397405907512,0.049200262874365,0.001576571026817],[-0.021556040272117,-0.026644948869944,0.010340128093958],[-0.020823713392019,-0.0020179937127978,0.0042541404254735]],[[-0.010364085435867,-0.0013200520770624,0.045594219118357],[0.026770051568747,-0.011837359517813,-0.01350742392242],[-0.0275848377496,-0.0080776251852512,0.0099989017471671]],[[-0.025997176766396,-0.043254110962152,0.0060519380494952],[-0.017411950975657,-0.023057935759425,0.0012432946823537],[-0.0087080737575889,-0.055807799100876,0.009449552744627]],[[-0.018255989998579,-0.027865242213011,-0.031734820455313],[-0.024777490645647,0.011360916309059,0.049980856478214],[0.032756295055151,-0.043266888707876,0.039894763380289]],[[-0.0022211004979908,-0.025123059749603,-0.0085474578663707],[-0.0021382297854871,0.041242197155952,0.026934299618006],[0.019827155396342,-0.0067945225164294,-0.042508482933044]],[[-0.025292981415987,0.024229502305388,0.026903815567493],[0.015583825297654,-0.0060827867127955,-0.045389093458652],[0.0073781530372798,0.030752705410123,-0.022670663893223]],[[-0.0072282035835087,-0.0080453334376216,0.0012740360107273],[0.023150000721216,-0.0058652968145907,-0.012957746163011],[-0.027587676420808,0.0062979958020151,0.028834102675319]],[[0.038405690342188,-0.036954741925001,0.025926018133759],[-0.020817747339606,0.013971604406834,-0.036746744066477],[0.002426449675113,-0.012871542014182,0.0024840214755386]],[[0.010670940391719,-0.024602860212326,-0.0064844116568565],[-0.028597708791494,0.0055240453220904,0.027216667309403],[0.027276067063212,-0.0084353601559997,-0.0030649029649794]],[[-0.010832072235644,-0.027706040069461,0.022464593872428],[0.025067919865251,-0.0089790904894471,0.011545980349183],[-0.023366907611489,0.015889702364802,0.010122866369784]],[[-0.0032447683624923,0.02204761095345,0.027041628956795],[-0.042858473956585,-0.011292152106762,0.00382165517658],[-0.038639526814222,0.016499510034919,0.033436123281717]],[[0.011001398786902,-0.016614949330688,0.032147333025932],[0.0067237983457744,-0.0036512999795377,-0.020148698240519],[0.030310370028019,-0.024833025410771,-0.021382983773947]],[[-0.014147602953017,0.01759029366076,0.010785995051265],[-0.084252811968327,0.022311650216579,-0.08317955583334],[0.035555645823479,0.04246536269784,0.049314245581627]],[[-0.0094471555203199,-0.052941016852856,0.049175448715687],[0.021285258233547,-0.04026398435235,0.045141123235226],[0.011350370012224,-0.0015485661569983,0.027702134102583]],[[-0.00082514283712953,-0.0046634254977107,0.0057725626975298],[0.0054112221114337,-0.022174378857017,0.039228390902281],[0.0011110239429399,0.0058219791390002,-0.030762396752834]],[[0.021189911291003,-0.0016116902697831,-0.035504277795553],[-0.012613088823855,0.029548151418567,0.030667347833514],[-0.013078571297228,-0.0096278842538595,-0.0087911691516638]],[[-0.049925584346056,0.029014378786087,0.003896324429661],[0.0066343476064503,0.035567093640566,0.00013726379256696],[-0.010349966585636,-0.049879010766745,-0.0021131783723831]],[[-0.06271043419838,0.02208237349987,-0.050199925899506],[0.010917253792286,0.017501095309854,0.031172819435596],[-0.0053015891462564,0.014012763276696,-0.051086984574795]],[[-0.00052727328147739,-0.026688031852245,0.0023162534926087],[-0.0065334988757968,-0.028535235673189,0.021711310371757],[0.0045859538950026,0.00037299582618289,0.012081959284842]],[[0.012959529645741,-0.022378265857697,0.0023556021042168],[0.013716015033424,-0.013117738068104,-0.013877082616091],[0.0046315756626427,0.037362165749073,-0.022821340709925]],[[0.018321288749576,0.0074298847466707,-0.03871551528573],[-0.012761602178216,0.0397725738585,-0.051555898040533],[0.027305850759149,0.020095923915505,-0.038300670683384]],[[-0.0022076764144003,-0.0050663258880377,0.030959993600845],[0.031556233763695,0.028013030067086,-0.024791980162263],[-0.021175030618906,-0.05090780928731,-0.0065018106251955]],[[-0.040683202445507,0.015195134095848,0.0079075852409005],[-0.0097793452441692,0.041252747178078,-0.026500284671783],[-0.004910231102258,-0.0016764418687671,-0.021241398528218]],[[-0.0064659276977181,0.00056296243565157,0.005901699885726],[0.0058346418663859,-0.025212962180376,0.017041897401214],[-0.03215079382062,0.012595558539033,0.024852247908711]],[[-0.017818281427026,0.018749438226223,-0.0064462078735232],[0.025631014257669,-0.030370734632015,0.011952211149037],[-0.016068510711193,0.012226023711264,-0.014024090021849]],[[-0.00011862437531818,0.018794184550643,-0.019078647717834],[0.020581236109138,-0.056723788380623,0.031619906425476],[-0.027195570990443,0.016059268265963,0.0037247957661748]],[[0.0063397572375834,-0.0028575712349266,0.0059267617762089],[0.019935360178351,-0.014214430935681,-0.012630116194487],[0.032764784991741,-0.0099494932219386,0.027441589161754]],[[-0.021610649302602,-0.0057100420817733,-0.034880328923464],[0.061725303530693,-0.0080725839361548,0.0037616528570652],[0.025540187954903,-0.065458491444588,0.035933844745159]],[[-0.0063456469215453,0.040664009749889,0.0025649366434664],[0.011314214207232,-0.0095755718648434,0.0061916834674776],[-0.025362610816956,-0.023251008242369,0.0012057403801009]],[[-0.019345967099071,-0.014931021258235,0.0089082783088088],[-0.011119442991912,0.035503122955561,-0.0065512652508914],[0.0067498059943318,-0.00095478113507852,0.018209552392364]],[[0.0055828555487096,0.019816808402538,-0.0020718108862638],[0.000974063470494,-0.033419132232666,0.012961533851922],[-0.010508335195482,0.022314684465528,-0.019139260053635]],[[-0.012264473363757,0.044872999191284,-0.00036170368548483],[0.0061579197645187,-0.0050932890735567,-0.043399233371019],[-0.0046471636742353,-0.00259387656115,0.0074596581980586]],[[0.0096279503777623,0.017787305638194,0.0041087660938501],[0.0019532681908458,0.011639201082289,-0.0064548966474831],[0.0039767376147211,0.0047188363969326,-0.002463796408847]],[[-0.011908423155546,-0.0064542745240033,0.013507695868611],[0.017862647771835,0.0071767983026803,-0.010187715291977],[-0.02243142388761,-0.001203645253554,0.011326929554343]],[[-0.00038756328285672,-0.014043176546693,0.033893994987011],[-0.030529636889696,-0.066960051655769,0.0093224551528692],[0.031167173758149,-0.026440458372235,0.081778816878796]],[[-0.061463665217161,0.043188937008381,-0.031183902174234],[0.00094596669077873,0.003166688606143,0.065851218998432],[0.019555822014809,0.031803362071514,-0.033575944602489]],[[-0.028691325336695,-0.013922768644989,-0.0017003250541165],[-0.0024259074125439,0.013649289496243,-0.0012486334890127],[0.036370560526848,0.0031395445112139,-0.018903627991676]],[[-0.046449147164822,0.0093891192227602,0.01882947422564],[-0.0089795822277665,0.0046618389897048,-0.022194106131792],[-0.0067180385813117,0.032368753105402,0.004120675381273]],[[-0.046428788453341,0.047835983335972,-0.030997607856989],[0.060888208448887,0.04021255671978,0.02728514559567],[-0.049085106700659,-0.021676070988178,-0.03130579739809]],[[0.011309471912682,-0.00071256718365476,0.019973840564489],[-0.0051505239680409,0.049885932356119,-0.00034996273461729],[-0.059725411236286,-0.0076409839093685,0.0049966042861342]],[[0.0030541636515409,-0.018462169915438,-0.0099865356460214],[-0.01245819684118,0.017629574984312,0.0022172599565238],[0.0089068785309792,0.056404143571854,-0.052966978400946]]],[[[0.11533527821302,0.061006437987089,-0.00019672018243],[-0.0055297636426985,0.14275966584682,-0.08848825097084],[0.0042679579928517,-0.086559146642685,-0.2449569106102]],[[0.062850721180439,0.012270798906684,-0.044145978987217],[-0.09191171079874,0.0030547291971743,-0.20634749531746],[-0.087970048189163,-0.089255750179291,-0.22793251276016]],[[0.00086230575107038,0.022857915610075,0.018368164077401],[0.05542765930295,0.0098175294697285,-0.063033819198608],[-0.011639449745417,-0.0039330110885203,-0.028198696672916]],[[0.01778874732554,0.10379835218191,-0.048076033592224],[-0.099206931889057,-0.089909695088863,-0.05844921246171],[-0.0047331089153886,-0.11611675471067,0.02660146728158]],[[0.063495084643364,-0.0013285392196849,-0.0097098061814904],[-0.044287402182817,-0.15387423336506,-0.088605672121048],[0.06289042532444,-0.024476008489728,-0.028733508661389]],[[0.10721658170223,-0.026961451396346,-0.027557393535972],[-0.0044712186791003,0.15345567464828,-0.087149888277054],[-0.07437851279974,-0.12587670981884,-0.15215899050236]],[[0.040119275450706,0.044151861220598,-0.0076108304783702],[-0.076013542711735,0.11117547005415,-0.043481361120939],[0.0038080252707005,-0.049038901925087,0.038945600390434]],[[0.067032478749752,0.018939981237054,-0.018778933212161],[-0.0602359585464,-0.088365495204926,-0.10808369517326],[-0.10469496995211,-0.058354746550322,0.067485079169273]],[[0.13311088085175,0.12031877785921,-0.036615621298552],[0.059461489319801,-0.10980304330587,-0.053748700767756],[0.030781170353293,-0.079690665006638,0.049328185617924]],[[0.082545936107635,0.023503337055445,0.012661576271057],[-0.023359378799796,-0.023719049990177,-0.15643435716629],[0.0541827455163,-0.13475365936756,-0.040535394102335]],[[0.1653189510107,0.034041590988636,-0.025556616485119],[0.06635520607233,-0.00017276742437389,-0.15199749171734],[-0.11139363050461,0.095202781260014,-0.19520831108093]],[[-0.039663840085268,0.075320430099964,0.1310680359602],[0.045591451227665,0.038152221590281,-0.032403096556664],[0.067550338804722,-0.037880066782236,-0.035468805581331]],[[-0.073631979525089,-0.027420407161117,-0.029252784326673],[0.060410007834435,0.088602215051651,-0.077398538589478],[0.026025107130408,-0.078081041574478,-0.038244429975748]],[[-0.071943685412407,0.11447423696518,-0.052026987075806],[-0.088280774652958,0.010639186017215,0.023032490164042],[0.048084735870361,-0.06051180139184,0.013889946974814]],[[0.051135260611773,0.04149616882205,-0.0014577666297555],[-0.08859009295702,0.060078676789999,-0.047595046460629],[0.010491080582142,0.12032303959131,-0.035175617784262]],[[0.079559937119484,-0.069682069122791,0.067813135683537],[0.042958483099937,0.0018426869064569,-0.022501697763801],[0.044327564537525,-0.037624198943377,0.016437983140349]],[[0.010408978909254,-0.014780341647565,-0.022753553465009],[-0.047235548496246,0.042087443172932,-0.019934387877584],[-0.093062110245228,-0.10987444967031,0.023591309785843]],[[0.027266334742308,-0.014503072947264,0.027205858379602],[0.055404637008905,0.0065080989152193,-0.044288761913776],[-0.0033330880105495,-0.11662967503071,-0.0017781718634069]],[[0.0074017755687237,-0.031174521893263,0.04719764739275],[0.065510526299477,-0.0070803016424179,0.063607916235924],[-0.033529363572598,0.049588091671467,0.032706048339605]],[[0.09257085621357,0.092352271080017,0.015831910073757],[0.057408504188061,0.12670706212521,-0.19630496203899],[0.010072343051434,-0.04287501424551,-0.09667694568634]],[[0.0068722544237971,0.022238159552217,-0.0095742028206587],[0.082694038748741,0.016085056588054,-0.013971618376672],[-0.10984735190868,0.056190676987171,-0.17834769189358]],[[0.014242225326598,-0.050557032227516,-0.038435272872448],[-0.0027341858949512,0.024507747963071,0.0026114622596651],[0.012284473516047,0.0058176601305604,-0.098556086421013]],[[0.097955033183098,0.022120429202914,0.077115163207054],[0.016107603907585,-0.10119384527206,-0.03606278449297],[-0.17742189764977,-0.079400070011616,0.0080263614654541]],[[-0.090989597141743,-0.087039344012737,-0.25395199656487],[-0.054801888763905,0.048539035022259,-0.077987417578697],[-0.081543989479542,-0.0060644713230431,-0.00021910692157689]],[[0.045309290289879,0.08510422706604,0.080723457038403],[0.076241672039032,0.023154105991125,0.11603397130966],[-0.020172670483589,0.038070410490036,0.078320100903511]],[[0.057043928653002,0.014545974321663,-0.028312182053924],[-0.03678523004055,-0.11409313231707,0.006133068818599],[0.055904038250446,-0.020831245929003,-0.0039458679966629]],[[0.12326231598854,0.028752915561199,0.046549838036299],[0.061642829328775,0.027375428006053,-0.0055839405395091],[-0.068398371338844,-0.14094907045364,-0.072322927415371]],[[0.048985559493303,-0.089023359119892,-0.044911041855812],[-0.087597653269768,0.010528129525483,0.056854490190744],[0.071730762720108,-0.05440704151988,0.049754805862904]],[[-0.0085389139130712,0.015502638183534,-0.11888198554516],[-0.044399168342352,-0.097730129957199,-0.020476039499044],[0.039770357310772,-0.021826773881912,0.01747315749526]],[[-0.060306537896395,0.070012927055359,-0.093924500048161],[0.012853814288974,-0.013217411004007,0.073818981647491],[-0.038013372570276,-0.07362087816,-0.047732084989548]],[[-0.003970636986196,-0.00040921146865003,0.044171296060085],[-0.065540060400963,-0.077193818986416,0.079756163060665],[0.069587767124176,0.077582582831383,0.04551973938942]],[[-0.040092587471008,0.036697883158922,0.02115573734045],[-0.020534915849566,-0.026496086269617,-0.026293626055121],[0.11321519315243,0.078190334141254,0.11066737771034]],[[-0.019204597920179,-0.057660333812237,-0.064202666282654],[0.041578199714422,-0.0072312108241022,0.078048646450043],[0.031213207170367,-0.092054694890976,-0.037152573466301]],[[0.080445446074009,-0.094000563025475,-0.025610733777285],[0.048870354890823,0.16536350548267,0.0075642862357199],[-0.045584514737129,-0.12678511440754,-0.21625207364559]],[[0.060598768293858,-0.018596574664116,-0.089772030711174],[0.015705920755863,-0.06945675611496,-0.035064503550529],[0.080039449036121,-0.10588108003139,-0.035327021032572]],[[0.060297999531031,0.039640415459871,0.06267211586237],[0.075632929801941,0.0081530557945371,0.0063015138730407],[0.072549656033516,0.024162694811821,0.061955835670233]],[[0.089356072247028,0.040942452847958,0.021136965602636],[0.062039200216532,-0.015774860978127,0.035093270242214],[-0.038049064576626,0.19773632287979,0.0012605038937181]],[[0.018781334161758,0.052836526185274,0.10062423348427],[0.037297017872334,0.089164055883884,-0.057622950524092],[-0.039781246334314,-0.08929256349802,-0.067169263958931]],[[-0.062678620219231,0.033767390996218,0.043119762092829],[-0.074737578630447,-0.060970272868872,0.022547548636794],[-0.019920270889997,-0.0052419444546103,0.0089511489495635]],[[-0.049587272107601,-0.044006623327732,-0.094831757247448],[0.014907660894096,-0.13532516360283,0.024828543886542],[-0.010986721143126,-0.0064548025839031,0.0046086702495813]],[[0.14174991846085,-0.006090990267694,-0.12692628800869],[0.014794914983213,0.055536046624184,-0.097456566989422],[-0.03624714538455,-0.095564067363739,-0.068790182471275]],[[0.013604271225631,-0.061932846903801,-0.053308311849833],[0.081899143755436,0.071348831057549,-0.074233964085579],[-0.013595130294561,-0.094049856066704,-0.020423932000995]],[[0.09371480345726,-0.014891128987074,0.090097360312939],[0.061972517520189,-0.069122508168221,-0.060569394379854],[-0.016606511548162,0.0039778482168913,0.03764708712697]],[[0.17479136586189,0.040510583668947,0.085408166050911],[0.067865572869778,-0.0041081947274506,-0.10253030061722],[0.10775344073772,0.060111347585917,-0.16505515575409]],[[0.078276686370373,-0.00029430608265102,0.082530863583088],[0.048478171229362,0.034954600036144,-0.11635407805443],[-0.1111596673727,-0.20842313766479,-0.18374313414097]],[[0.045145563781261,-0.078034162521362,0.042343568056822],[0.03663183003664,0.062864631414413,0.059445463120937],[0.0058541456237435,-0.017056088894606,-0.12193193286657]],[[-0.062282785773277,-0.014066460542381,-0.062082003802061],[0.05609979107976,0.012029246427119,-6.0282545746304e-05],[-0.074438072741032,-0.050065383315086,0.054193194955587]],[[0.049067743122578,0.13817276060581,-0.038781590759754],[0.081055633723736,-0.0079258289188147,0.017815472558141],[0.010495039634407,0.035866361111403,0.11119877547026]],[[-0.021857794374228,0.12181487679482,-0.0060788202099502],[0.036973621696234,-0.016065595671535,-0.05510438978672],[0.0052155833691359,-0.061526864767075,0.15062464773655]],[[-0.076709449291229,0.12406232208014,0.13272500038147],[0.011151780374348,0.073272593319416,0.083593875169754],[0.04651290178299,-0.010827261023223,0.085736721754074]],[[-0.028618866577744,-0.027860946953297,0.0078214034438133],[0.0090357316657901,0.045586913824081,-0.0041109751909971],[-0.089220829308033,-0.02969316765666,-0.061108004301786]],[[-0.0068963821977377,0.010117395780981,-0.043128851801157],[0.038121465593576,-0.067849338054657,-0.033075965940952],[-0.035966102033854,-0.093359902501106,0.10532160848379]],[[-0.004164669662714,0.015654249116778,0.07185136526823],[-0.002415272872895,0.053198136389256,-0.031348571181297],[-0.065417714416981,0.010403394699097,-0.19906517863274]],[[-0.02035397849977,-0.076004482805729,0.0092575484886765],[0.08817682415247,-0.029866581782699,0.0077489838004112],[0.010423693805933,0.046849984675646,0.10157176107168]],[[0.061930876225233,0.02662405371666,0.12335383892059],[0.022350534796715,0.15511703491211,-0.064018689095974],[0.0079544214531779,-0.036411255598068,-0.01430756226182]],[[0.10005100816488,-0.051806759089231,-0.0010335928527638],[0.10878331959248,-0.016065333038568,-0.10287743061781],[0.12459830194712,-0.096072763204575,-0.115334443748]],[[-0.0016416978323832,0.074730768799782,-0.026491707190871],[0.070498988032341,-0.017066948115826,0.013076961040497],[-0.053901400417089,0.01981102861464,-0.069553434848785]],[[0.082117311656475,0.051530640572309,-0.15900528430939],[0.069604605436325,-0.052727714180946,-0.011498834006488],[0.019988548010588,0.06406369805336,-0.0045156367123127]],[[-0.12793900072575,0.058602806180716,0.06988587230444],[-0.1113803088665,0.079733774065971,0.1274825334549],[0.13301922380924,0.063236884772778,0.17873667180538]],[[0.0426917783916,-0.023666303604841,-0.043332319706678],[-0.060267493128777,-0.11838436126709,-0.14859834313393],[-0.063226915895939,-0.087073095142841,0.091945290565491]],[[-0.011162801645696,-0.06045489013195,-0.17355011403561],[0.050901383161545,0.0021645952947438,-0.019931972026825],[-0.032089103013277,-0.095945104956627,0.06742088496685]],[[0.045802175998688,0.053015753626823,0.054865673184395],[-0.030111374333501,0.021525667980313,-0.049833606928587],[0.040659032762051,-0.022883374243975,-0.052820559591055]],[[0.081612169742584,0.04197520762682,0.072789512574673],[-0.068891696631908,-0.020086575299501,0.052920013666153],[-0.051801931113005,-0.0015951570821926,0.24033822119236]],[[0.095443651080132,0.040686544030905,0.082160733640194],[0.027233628556132,-0.052547242492437,0.023377031087875],[0.059533629566431,0.035827029496431,-0.11471974849701]]],[[[-0.0094303060323,0.047707680612803,0.0079809753224254],[0.01512510702014,-0.024807706475258,-0.089189045131207],[-0.068541005253792,-0.03355185687542,-0.084669902920723]],[[0.0049810404889286,-0.063784517347813,0.037377376109362],[0.052452228963375,-0.0075919181108475,-0.11152398586273],[-0.033027246594429,0.015081687830389,0.058362636715174]],[[0.095782615244389,0.024485504254699,-0.017581647261977],[-0.093553006649017,-0.0043776729144156,-0.052882686257362],[0.06334563344717,-0.066689342260361,0.070363275706768]],[[-0.16369198262691,-0.011291734874249,0.10778976976871],[-0.10422319173813,-0.017601581290364,-0.034958425909281],[-0.078785814344883,0.028366271406412,-0.1123948097229]],[[0.032031048089266,0.061678938567638,-0.039513077586889],[0.058716908097267,0.03048243932426,-0.029371039941907],[0.036013647913933,0.069479644298553,-0.044305913150311]],[[0.067377820611,-0.057782102376223,0.0088335042819381],[0.0057787112891674,-0.086239032447338,0.044489677995443],[-0.034833032637835,0.080804653465748,-0.070979453623295]],[[0.10215925425291,-0.0079521080479026,0.042443566024303],[-0.076651126146317,-0.059075821191072,-0.080595217645168],[-0.066740982234478,0.065858393907547,0.16724498569965]],[[0.10157260298729,0.069951683282852,-0.058591060340405],[-0.062321044504642,-0.039129104465246,0.01791025698185],[0.10216088593006,-0.05646176636219,0.042238131165504]],[[-0.00059287861222401,0.029961716383696,0.010184332728386],[-0.11130364239216,-0.025105681270361,-0.014574704691768],[0.012258947826922,0.097968190908432,-0.011199134401977]],[[-0.016399122774601,-0.013879492878914,0.04330899938941],[-0.12586341798306,-0.11181097477674,-0.0051930341869593],[0.031308390200138,-0.060664661228657,-0.11968865245581]],[[-0.022294703871012,-0.043908711522818,0.01898262090981],[0.02206090465188,0.0082172332331538,0.028054034337401],[0.057804562151432,0.034468155354261,0.11433684825897]],[[0.059601929038763,-0.038161549717188,-0.02217410877347],[0.0065593346953392,-0.17593686282635,0.056255914270878],[0.11150739341974,-0.028234913945198,0.061465967446566]],[[-0.10411206632853,0.043460767716169,0.013804964721203],[-0.037915661931038,0.042428743094206,-0.012923111207783],[0.035831891000271,-0.01143784634769,0.11953044682741]],[[0.072922222316265,-0.028247965499759,-0.060140464454889],[0.049364600330591,-0.015249748714268,0.083471663296223],[0.054674707353115,-0.08116552233696,-0.004700904712081]],[[-0.09485025703907,0.02920569293201,-0.050699397921562],[0.15308566391468,-0.12704207003117,-0.063111774623394],[-0.0040383394807577,0.037771932780743,-0.025534629821777]],[[-0.16230350732803,0.079760603606701,0.021194770932198],[0.020293241366744,0.063359305262566,0.11026687175035],[0.062446594238281,-0.08313000202179,0.022546557709575]],[[0.039398353546858,0.034675933420658,0.017448266968131],[-0.23677451908588,0.0078852213919163,7.8910896263551e-05],[0.011644678190351,0.047800131142139,0.012623679824173]],[[-0.054047826677561,-0.025300744920969,0.073692969977856],[0.01130248233676,0.027369836345315,-0.017618650570512],[-0.064416214823723,0.03342991694808,0.11740082502365]],[[-0.071939155459404,-0.061236601322889,0.068366914987564],[-0.07115463167429,-0.016596196219325,-0.1425417214632],[0.029174933210015,-0.051671084016562,0.07844191044569]],[[-0.081524416804314,-0.090427748858929,-0.082418978214264],[-0.0043521663174033,0.085379675030708,0.015293476171792],[-0.12360900640488,-0.028880598023534,0.059707723557949]],[[0.094287760555744,0.086419299244881,0.071069873869419],[0.11669743061066,0.0059428759850562,-0.089882142841816],[0.0016628671437502,-0.077772758901119,0.068440444767475]],[[0.02871423587203,-0.11022941023111,-0.057096526026726],[0.05202778428793,-0.038442134857178,-0.046151392161846],[0.025923203676939,-0.0023365342058241,0.026117242872715]],[[0.034473024308681,-0.082129664719105,0.047529056668282],[-0.072633549571037,0.063758462667465,0.02416529878974],[-0.1673172712326,0.066871583461761,-0.058378059417009]],[[0.10655736923218,-0.047398064285517,-0.065221630036831],[0.011839327402413,0.033466529101133,-0.14903172850609],[0.021061800420284,0.017893774434924,0.059980124235153]],[[-0.065080143511295,0.063193179666996,-0.048515647649765],[-0.0058593852445483,0.057906404137611,0.0059735202230513],[0.059819556772709,0.033170148730278,-0.0024269968271255]],[[0.025965048000216,0.043865647166967,-0.0052019385620952],[-0.037227787077427,-0.021427715197206,0.024934871122241],[-0.018390187993646,-0.036668196320534,-0.00050258688861504]],[[-0.031949732452631,-0.079578220844269,0.025188323110342],[-0.13237963616848,-0.052227884531021,0.14993871748447],[0.077780321240425,0.027870299294591,0.053028836846352]],[[-0.028966888785362,-0.014000116847456,-0.14471484720707],[-0.031940307468176,-0.00082565017510206,-0.23140716552734],[-0.018842626363039,-0.073405802249908,-0.18542771041393]],[[-0.02841042727232,0.06572449952364,-0.031306430697441],[0.11627158522606,-0.038708463311195,-0.00062227190937847],[0.050397824496031,-0.07864248752594,0.065173253417015]],[[0.062013935297728,0.022861659526825,0.12923215329647],[-0.030492402613163,0.0031586065888405,-0.058004360646009],[-0.08396865427494,-0.047790624201298,-0.13775108754635]],[[0.047499310225248,-0.10199698805809,0.034902155399323],[0.13172641396523,-0.0025594036560506,0.13460323214531],[-0.010121062397957,0.061367858201265,0.020850820466876]],[[-0.038092866539955,-0.065216593444347,-0.028631107881665],[0.033926971256733,-0.0016076850006357,0.027130842208862],[0.17936804890633,0.02199237793684,-0.0085966531187296]],[[-0.10182163119316,-0.023324262350798,0.011308338493109],[0.079389028251171,0.053582582622766,0.0564344227314],[-0.077487729489803,0.020078040659428,-0.020899586379528]],[[-0.14083714783192,-0.050506569445133,-0.065778315067291],[-0.037667032331228,-0.002980794524774,-0.029834875836968],[-0.022541346028447,0.12618516385555,0.024305829778314]],[[0.072143323719501,0.034499444067478,-0.012832110747695],[0.018986174836755,-0.046947296708822,-0.059285834431648],[0.032794591039419,-0.075178183615208,0.043393302708864]],[[-0.0051793898455799,0.11105196177959,0.059227973222733],[0.088132306933403,0.013928445987403,0.016685394570231],[0.036676317453384,0.094827964901924,0.088565304875374]],[[0.044669277966022,0.049781333655119,0.08357210457325],[0.078675746917725,-0.026838509365916,0.064220450818539],[-0.045704394578934,-0.027633156627417,0.033890321850777]],[[0.034586127847433,0.036206409335136,-0.025762058794498],[0.023973144590855,-0.0054730628617108,0.042650546878576],[0.03663657605648,-0.080574102699757,-0.15647640824318]],[[0.021440841257572,-0.059759438037872,-0.065143287181854],[-0.044234298169613,0.096553102135658,-0.024374004453421],[-0.13649468123913,-0.09733397513628,0.029390383511782]],[[0.027251202613115,-0.034901861101389,-0.039563126862049],[0.099074453115463,-0.067718528211117,-0.097497753798962],[0.19444693624973,-0.038884773850441,0.11758581548929]],[[0.074333176016808,-0.14279146492481,-0.055173497647047],[-0.082903690636158,-0.22293998301029,0.049663566052914],[-0.059961274266243,-0.061949782073498,0.15603491663933]],[[-0.023641077801585,-0.060340024530888,0.061289735138416],[-0.051480799913406,0.059217520058155,0.090636648237705],[-0.027920326218009,-0.013424574397504,0.10346557199955]],[[0.11174122989178,0.10376466065645,0.0098807811737061],[-0.074267037212849,0.010816850699484,0.03523937240243],[0.11520391702652,-0.2122932523489,0.12804003059864]],[[0.029293267056346,0.016459656879306,0.066047467291355],[0.03537580370903,-0.17638540267944,0.13117283582687],[-0.066764973104,-0.024852404370904,0.030791951343417]],[[-0.20949859917164,0.056666471064091,-0.040849070996046],[-0.069376900792122,0.00061673787422478,0.030400926247239],[-0.032299380749464,-0.0036387541331351,-0.021210055798292]],[[-0.085635408759117,0.086721643805504,-0.052206840366125],[0.0022916349116713,0.11396514624357,0.088104709982872],[-0.049356829375029,0.0050758505240083,-0.15525652468204]],[[0.025645134970546,0.0031958648469299,0.084255032241344],[0.059872895479202,-0.029731597751379,-0.017500758171082],[-0.056286461651325,-0.01627803966403,-0.080480672419071]],[[0.11024846881628,-0.098214015364647,0.14345563948154],[0.05740774795413,0.018613040447235,-0.050020076334476],[-0.074882186949253,-0.16029568016529,-0.063886545598507]],[[-0.0025462352205068,-0.039028272032738,-0.15083450078964],[-0.1148050352931,-0.015431301668286,-0.042512245476246],[0.011195003986359,-0.015270697884262,-0.1117362305522]],[[0.048900157213211,0.10682594776154,-0.026436043903232],[0.015775881707668,-0.1242838203907,-0.089912690222263],[-0.037746254354715,-0.061827383935452,0.0066451467573643]],[[-0.0082687484100461,-0.06524819880724,-0.041942209005356],[-0.066789075732231,-0.035195656120777,0.12373997271061],[0.038725633174181,-0.052275367081165,-0.17937542498112]],[[0.039109919220209,0.035117015242577,0.079861156642437],[-0.065825887024403,-0.16755418479443,-0.089080572128296],[-0.019218968227506,-0.076786212623119,-0.036418687552214]],[[-0.013560397550464,0.0031023793853819,0.070443898439407],[-0.036239236593246,-0.047630108892918,0.056786846369505],[-0.091854766011238,0.067095838487148,0.10947290807962]],[[-0.011958775110543,-0.089714765548706,-0.028831856325269],[0.095430567860603,0.0072939405217767,-0.021214839071035],[0.054270643740892,0.081787750124931,-0.017918542027473]],[[-0.13913798332214,0.11190447211266,-0.12453907728195],[-0.073502160608768,0.053713619709015,0.036753293126822],[0.017842905595899,0.15508104860783,0.082180134952068]],[[0.066988795995712,0.020641520619392,-0.021418277174234],[-0.11302356421947,0.013398776762187,0.15980370342731],[0.11227818578482,0.089056521654129,0.0039805574342608]],[[-0.0059020086191595,0.053824037313461,0.011283174157143],[-0.012475123628974,-0.053186811506748,-0.12058117985725],[0.16104255616665,0.085822895169258,-0.11348061263561]],[[0.052991848438978,-0.0033601121976972,-0.13997767865658],[0.01802029274404,-0.049837581813335,-0.06346184015274],[-0.13282310962677,0.090757787227631,0.13773219287395]],[[0.075584582984447,-0.04845567047596,0.10873776674271],[0.087800033390522,0.060802675783634,-0.013366554863751],[0.10131128877401,0.073554337024689,0.049663413316011]],[[-0.040351215749979,-0.0087038306519389,0.039273597300053],[0.0072353770956397,-0.024391012266278,-0.024452034384012],[0.028848726302385,-0.049711782485247,-0.061746265739202]],[[-0.066864162683487,0.080927118659019,-0.12502981722355],[0.026592951267958,-0.078570730984211,-0.050758767873049],[0.016095804050565,-0.12310399115086,0.13423439860344]],[[-0.0090778162702918,-0.091705776751041,0.034229353070259],[0.057681482285261,-0.010190287604928,-0.021001068875194],[-0.042692471295595,-0.041467443108559,0.20404858887196]],[[0.061073023825884,-0.059924226254225,0.075012870132923],[0.018738519400358,-0.015229137614369,-0.10293850302696],[0.0089707979932427,0.064985431730747,0.029049230739474]],[[0.10322197526693,0.03957299888134,0.078851260244846],[-0.061210606247187,-0.060226138681173,0.011231406591833],[0.14669942855835,0.028985241428018,0.021999169141054]]],[[[0.090418934822083,0.09899628162384,0.053199861198664],[-0.053915150463581,0.017987404018641,0.011620753444731],[0.065883934497833,-0.1208778694272,-0.11079849302769]],[[0.095893204212189,-0.018658293411136,-0.005861684679985],[-0.050523851066828,0.026526015251875,-0.084872789680958],[-0.07014874368906,-0.08065539598465,-0.067394442856312]],[[-0.044152073562145,0.05688688531518,-0.055979017168283],[-0.072199366986752,-0.036712042987347,0.025886775925756],[-0.153445109725,-0.16664956510067,-0.053596064448357]],[[0.075937815010548,0.060890004038811,0.045284874737263],[-0.0024181166663766,0.087203592061996,-0.021561672911048],[0.0020286682993174,-0.0087973112240434,0.084500938653946]],[[-0.071463793516159,0.038314681500196,-0.015833983197808],[-0.0070668603293598,-0.064616568386555,-0.084163703024387],[-0.12292721867561,0.013738718815148,0.0058471262454987]],[[-0.043600328266621,0.020190246403217,-0.096157945692539],[0.039589043706656,-0.010278150439262,-0.0056094788014889],[-0.037763562053442,0.063755959272385,0.19824023544788]],[[0.053874101489782,-0.061111997812986,0.056188099086285],[-0.05959090590477,-0.10729485750198,0.042459227144718],[-0.035310421139002,0.047656964510679,-0.0018059655558318]],[[-0.092539124190807,0.032527450472116,-0.033825151622295],[-0.023602252826095,0.029784707352519,-0.076526753604412],[-0.0866993740201,0.035787642002106,-0.12757052481174]],[[0.014140710234642,0.072229720652103,0.089145421981812],[0.0025237035006285,0.064227260649204,0.044535715132952],[0.066678509116173,0.13198032975197,-0.0095834080129862]],[[0.12936733663082,0.052649304270744,0.14130465686321],[-0.064503617584705,0.093252427875996,0.022306423634291],[0.022594274953008,0.093394242227077,0.061812214553356]],[[-0.078642606735229,-0.00046202115481719,0.052801109850407],[0.057653930038214,-0.081048026680946,-0.040041290223598],[-0.0092712799087167,-0.013004142791033,0.034874342381954]],[[0.092873498797417,0.17345784604549,-0.040457259863615],[-0.020450308918953,-0.095986098051071,0.0034464187920094],[0.0074303867295384,0.012675668112934,0.042373314499855]],[[-0.023712534457445,-0.026973417028785,0.038796003907919],[-0.0058576758019626,0.096286036074162,0.071549110114574],[-0.017727486789227,-0.12234401702881,0.066609732806683]],[[0.067130841314793,-0.019126798957586,0.065194956958294],[0.072917252779007,0.031222445890307,-0.045331340283155],[0.059776268899441,-0.023229017853737,-0.0068084350787103]],[[-0.094397611916065,0.030167650431395,-0.018792234361172],[-0.042170003056526,-0.073281235992908,-0.014102484099567],[0.060789402574301,-0.054158084094524,0.0035222349688411]],[[-0.094993382692337,0.14053793251514,-0.074528530240059],[0.027718979865313,0.16191045939922,-0.027523912489414],[0.08835081756115,0.02083383128047,0.028781535103917]],[[0.09672849625349,-0.00041767611401156,0.024360809475183],[-0.026298483833671,0.032285343855619,0.081183284521103],[-0.024194095283747,-0.014931562356651,-0.019211906939745]],[[0.025186030194163,-0.027182511985302,-0.10378638654947],[0.027402089908719,0.010815594345331,0.068623729050159],[0.066940195858479,0.022974424064159,0.043558243662119]],[[-0.048018600791693,-0.051786705851555,0.07529441267252],[-0.044303048402071,-0.096343658864498,-0.064415469765663],[-0.082840524613857,-0.099449068307877,0.079106047749519]],[[-0.033735409379005,-0.15106503665447,0.13439919054508],[-0.055554956197739,0.014100669883192,-0.050679169595242],[-0.0052731004543602,-0.052234340459108,0.0046543315984309]],[[0.022704288363457,0.0057606417685747,-0.056073144078255],[-0.0028490675613284,-0.093194134533405,0.029708690941334],[0.014257274568081,0.1357416510582,0.046196028590202]],[[0.060419481247663,0.047490656375885,0.040856335312128],[-0.020427783951163,-0.060647953301668,-0.045114144682884],[-0.013774550519884,-0.021224249154329,0.011096689850092]],[[-0.015243573114276,0.011707308702171,0.20989862084389],[0.021268147975206,0.026793716475368,0.0037310137413442],[0.062049694359303,0.05893811956048,-0.040387332439423]],[[0.10876027494669,-0.052471872419119,0.06625172495842],[-0.048228688538074,-0.070049352943897,-0.010266961529851],[0.030438272282481,0.032637745141983,-0.049320861697197]],[[0.121159106493,0.11694152653217,0.070513308048248],[-0.012120035476983,0.019387042149901,0.019247556105256],[0.14900441467762,0.077732995152473,0.037639539688826]],[[-0.060646668076515,-0.076200671494007,0.018897211179137],[0.024544367566705,0.061864845454693,-0.043654438108206],[-0.047438763082027,0.033197719603777,0.072767525911331]],[[0.023309731855989,-0.043883856385946,0.024097844958305],[-0.011222145520151,0.026865821331739,0.01866408623755],[-0.046304475516081,-0.096888579428196,-0.015258836559951]],[[-0.024587977677584,-0.12302325665951,-0.14076046645641],[0.042548075318336,0.01999725215137,0.0094699943438172],[-0.037868998944759,0.0024530189111829,-0.052787024527788]],[[0.0035921041853726,-0.10020437836647,0.0069970823824406],[0.068868190050125,0.067636109888554,0.0066628302447498],[0.047212734818459,0.044021371752024,0.096136994659901]],[[0.019088545814157,-0.083921857178211,0.016668245196342],[0.0055213971063495,-0.038277205079794,-0.043842487037182],[-0.1161343306303,0.060028277337551,0.19059313833714]],[[0.09579611569643,0.022288372740149,0.064241796731949],[-0.031152158975601,0.0042181005701423,-0.12207007408142],[0.18069289624691,0.038667682558298,-0.062574654817581]],[[0.20506089925766,0.059330765157938,-0.034518606960773],[-0.13488212227821,-0.023220485076308,0.042472712695599],[-0.085685014724731,0.0093580484390259,0.005780934356153]],[[0.045393079519272,-0.007221058011055,-0.091201767325401],[0.030807975679636,-0.056247632950544,-0.18938893079758],[-0.10074000805616,0.04621160775423,0.089815437793732]],[[0.010351699776947,-0.017259284853935,0.0070800837129354],[-0.024998469278216,-0.082522690296173,-0.089902192354202],[-0.15090209245682,0.045736905187368,-0.021480722352862]],[[0.028511799871922,0.10034741461277,0.022172916680574],[-0.15585649013519,0.085332967340946,0.11686955392361],[0.0026957809459418,-0.13786086440086,0.088404484093189]],[[-0.099191024899483,0.034925229847431,-0.070716314017773],[0.021858079358935,-0.005315660033375,0.10421098768711],[0.20760914683342,0.090670600533485,-0.010906879790127]],[[0.10217357426882,-0.21840883791447,-0.053246948868036],[0.1125656068325,0.026184355840087,0.0055922791361809],[0.095947846770287,0.047826617956161,0.090261422097683]],[[-0.025635670870543,-0.12745919823647,0.10572101175785],[-0.074999824166298,-0.1290081590414,-0.011190618388355],[0.07542596757412,0.097255989909172,0.021443001925945]],[[-0.019482230767608,-0.17709100246429,-0.077734507620335],[-0.0876629576087,-0.11213394254446,-0.0053564705885947],[-0.13528722524643,-0.031729742884636,-0.0041725314222276]],[[-0.070146009325981,-0.02423837967217,0.05799375846982],[0.091931350529194,0.0069514331407845,-0.045929927378893],[0.10992976278067,-0.062937304377556,-0.013615262694657]],[[0.0766396895051,-0.12926837801933,-0.16091184318066],[0.033017557114363,0.07542247325182,-0.027732569724321],[-0.011194390244782,0.038369793444872,0.04791321977973]],[[0.0093828141689301,0.010709662921727,-0.052143972367048],[-0.069674640893936,-0.056791197508574,0.15231955051422],[0.15547347068787,0.015807159245014,0.022083953022957]],[[-0.068361781537533,0.02717768587172,-0.039954274892807],[0.033727690577507,0.067851491272449,-0.20344457030296],[-0.075489282608032,0.037489280104637,-0.021462621167302]],[[-0.077543340623379,-0.025524510070682,0.1708694845438],[0.045481044799089,0.085666462779045,-0.039012912660837],[-0.024181364104152,0.038370672613382,-0.034760363399982]],[[0.060835536569357,0.0075545511208475,0.023333812132478],[-0.086598828434944,0.068461246788502,0.12253189831972],[0.031082201749086,0.063938029110432,0.053030896931887]],[[0.030380200594664,0.044343400746584,-0.0098707517609],[-0.02350159175694,-0.04589557275176,0.038682330399752],[-0.048225607722998,-0.034949705004692,-0.098720222711563]],[[-0.032720562070608,-0.023206289857626,0.012125718407333],[0.057180009782314,0.041604213416576,-0.041576080024242],[-0.022584257647395,-0.096960186958313,0.055977933108807]],[[-0.0030512185767293,0.076708190143108,-0.058337066322565],[0.12667122483253,-0.067050501704216,0.033739697188139],[0.029971297830343,-0.046985983848572,0.096933245658875]],[[-0.0015047424240038,-0.057123653590679,-0.029949521645904],[-0.053742934018373,0.0086193447932601,-0.016534425318241],[0.092177711427212,-0.078358344733715,-0.13585282862186]],[[0.11286785453558,-0.046255476772785,0.14817370474339],[0.13390739262104,0.090255327522755,0.058967284858227],[0.038377366960049,0.0086170081049204,0.017258293926716]],[[0.016239238902926,0.09067989140749,0.068374738097191],[0.097826421260834,0.14330445230007,-0.029142813757062],[0.081184357404709,-0.014804137870669,0.018320517614484]],[[0.13754308223724,-0.054961882531643,-0.043389998376369],[0.010401743464172,0.073817320168018,-0.031524553894997],[-0.0079019889235497,-0.0060409787110984,0.13759160041809]],[[-0.022765703499317,-0.091182067990303,-0.014164689928293],[0.14372983574867,-0.022238234058022,0.0081795593723655],[0.015917785465717,-0.09718519449234,0.0223990958184]],[[0.072717182338238,0.043333027511835,-0.057260259985924],[-0.057256706058979,0.040948312729597,-0.011769627220929],[0.076463855803013,-0.034258313477039,0.0022669497411698]],[[0.069698177278042,0.012186073698103,0.12015292048454],[0.094252035021782,-0.11368546634912,0.026623036712408],[-0.059634771198034,0.0021404314320534,0.039305064827204]],[[0.0057408106513321,-0.0078164516016841,0.087289124727249],[-0.020069010555744,-0.093504555523396,-0.12997660040855],[0.028668424114585,0.10795208066702,0.031635016202927]],[[0.016429249197245,0.17823815345764,0.010868180543184],[-0.035119198262691,0.027015076950192,0.096357986330986],[-0.077413082122803,0.052241578698158,0.14375886321068]],[[0.11172212660313,-0.10915012657642,-0.030966112390161],[0.064710818231106,-0.11880637705326,-0.0047331778332591],[-0.04561835154891,-0.11368517577648,-0.013102673925459]],[[-0.014258784241974,-0.0056013339199126,-0.026805864647031],[0.030565472319722,-0.0086954794824123,0.041623957455158],[-0.050434391945601,0.022036965936422,0.018899532034993]],[[-0.042024899274111,0.060305178165436,-0.032810382544994],[0.035107616335154,0.10934791713953,0.083830036222935],[-0.033070012927055,-0.047423280775547,-0.0088328802958131]],[[-0.12016167491674,0.05456356331706,0.064503118395805],[0.068256370723248,0.091329209506512,0.097146227955818],[-0.0085655655711889,-0.049139302223921,-0.075139939785004]],[[-0.036613594740629,-0.0087435441091657,-0.099137164652348],[0.058384925127029,0.030776929110289,0.027123883366585],[0.020119443535805,0.012588325887918,-0.029338577762246]],[[-0.13055177032948,-0.11268085986376,-0.058272775262594],[-0.078698500990868,0.03395140171051,-0.032091215252876],[-0.012936621904373,-0.13955323398113,0.10847549140453]],[[-0.14302811026573,-0.023971537128091,-0.16048173606396],[-0.044263087213039,-0.0030163340270519,-0.19307522475719],[-0.11432711035013,0.00049839017447084,-0.13821896910667]]],[[[0.028964934870601,-0.19230248034,0.20522297918797],[0.023250326514244,-0.054607700556517,0.10523997247219],[0.072635278105736,-0.016431638970971,0.019784979522228]],[[0.093506947159767,0.063804067671299,-0.16484709084034],[0.027283702045679,-0.089444398880005,-0.13605971634388],[0.057286385446787,-0.032410133630037,-0.081991150975227]],[[-0.012080457061529,-0.061551749706268,-0.043363261967897],[-0.073872253298759,-0.17712189257145,0.0089260535314679],[-0.048706583678722,-0.1511621773243,-0.24197161197662]],[[-0.035561442375183,0.025234458968043,0.031761951744556],[0.010073165409267,0.024092042818666,0.07545468211174],[0.034198753535748,-0.00032323406776413,-0.11828792095184]],[[-0.098190926015377,0.060940682888031,0.052545595914125],[-0.057824283838272,0.085571765899658,-0.1177554577589],[-0.044005591422319,0.010487308725715,-0.045043103396893]],[[0.085512720048428,-0.09190595895052,0.023899080231786],[-0.084303431212902,-0.020038845017552,-0.038733091205359],[-0.14575442671776,-0.053179074078798,-0.031463459134102]],[[-0.014109089970589,0.11518863588572,-0.036351777613163],[-0.0056878784671426,0.032768782228231,-0.078482791781425],[0.087102524936199,-0.10553522408009,-0.10320515185595]],[[0.062023367732763,-0.058805719017982,-0.050804950296879],[-0.0049810311757028,-0.044865384697914,-0.0041963751427829],[0.17552177608013,-0.13467666506767,0.035099159926176]],[[-0.11468437314034,-0.092659845948219,-0.023647658526897],[-0.12774273753166,0.0062964502722025,-0.060939725488424],[0.016040796414018,0.043626341968775,0.084063373506069]],[[-0.0036031214985996,0.095568008720875,-0.0011129460763186],[0.0016982610104606,-0.00074802379822358,-0.023056294769049],[0.080539084970951,-0.051155310124159,0.11975968629122]],[[-0.042611431330442,-0.087439566850662,0.041093572974205],[0.09150292724371,0.026384849101305,-0.071150407195091],[-0.030460961163044,-0.082768648862839,-0.1342680901289]],[[0.1682496368885,-0.1276153922081,-0.014844793826342],[-0.0074773449450731,0.057863857597113,-0.035283055156469],[-0.016433466225863,0.0012807770399377,-0.13623510301113]],[[-0.29556262493134,0.12205265462399,-0.031324878334999],[-0.057867344468832,0.017581133171916,-0.038211222738028],[-0.0038550621829927,0.062298979610205,0.052896823734045]],[[-0.0090515427291393,-0.0083224289119244,-0.037910960614681],[-0.00072914059273899,-0.032553292810917,0.12031310796738],[0.052727330476046,-0.01934770308435,-0.066020876169205]],[[-0.11679619550705,0.0023215429391712,-0.038687702268362],[0.085404463112354,-0.11506349593401,0.031175086274743],[0.013193077407777,-0.084041506052017,0.024814203381538]],[[-0.077070862054825,-0.037023764103651,-0.05090993270278],[-0.0966886729002,-0.069485776126385,-0.020928358659148],[0.11358217149973,-0.034745756536722,-0.14022015035152]],[[-0.039295978844166,-0.051291156560183,0.16926276683807],[-0.069032050669193,-0.033254995942116,0.030461089685559],[0.083425365388393,0.017342004925013,0.0069401799701154]],[[-0.22931592166424,0.075776860117912,-0.092067621648312],[-0.086199127137661,0.10489746928215,-0.030260836705565],[-0.0085773328319192,-0.01207834854722,0.23646900057793]],[[-0.12995198369026,0.080732241272926,-0.12724700570107],[-0.0093019418418407,-0.05718794092536,-0.15127727389336],[0.043738670647144,-0.012963968329132,-0.031196255236864]],[[0.023645430803299,0.0068823536857963,0.015984648838639],[-0.02514685690403,0.040147133171558,-0.096232026815414],[0.0083330115303397,-0.042753513902426,-0.040910601615906]],[[0.10939645022154,-0.10069214552641,0.16444864869118],[-0.033946368843317,-0.17832571268082,0.087419345974922],[0.054856341332197,-0.020663058385253,0.022526571527123]],[[0.035441234707832,-0.03887502476573,0.01790970005095],[-0.037443183362484,0.0018427971517667,-0.021072365343571],[-0.011790330521762,0.0013455647276714,-0.040361925959587]],[[-0.16811573505402,-0.1547944098711,0.13193272054195],[-0.15544047951698,-0.050795756280422,0.0011074850335717],[-0.013982822187245,-0.029359683394432,0.0059679164551198]],[[0.18455289304256,-0.022785618901253,0.21649651229382],[0.079720377922058,-0.054168526083231,0.070559076964855],[-0.045316729694605,0.089029103517532,0.025069968774915]],[[-0.081181302666664,-0.048533853143454,-0.094419501721859],[0.019423246383667,0.052229564636946,-0.0025137385819107],[-0.014425850473344,0.029079971835017,0.048316519707441]],[[-0.038923155516386,0.040979102253914,-0.013173461891711],[-0.046326402574778,0.017866786569357,0.0085885655134916],[-0.014645975083113,0.018058232963085,-0.0036491160281003]],[[0.058031566441059,0.058663565665483,-0.21270951628685],[0.055339340120554,0.011949660256505,-0.094825461506844],[-0.046162374317646,-0.065833196043968,0.065033875405788]],[[-0.070830568671227,-0.060539111495018,0.066086411476135],[0.10795351862907,-0.052560418844223,-0.070259571075439],[-0.0087329037487507,-0.049463972449303,-0.10213631391525]],[[0.028236957266927,-0.076823242008686,-0.082111917436123],[0.048207804560661,-0.085398748517036,0.020600639283657],[-0.15317299962044,-0.0089274002239108,-0.035017631947994]],[[0.042111873626709,-0.0083887707442045,-0.031620495021343],[-0.0338414311409,0.063159480690956,-0.11938038468361],[0.013028337620199,-0.0506093762815,0.033788949251175]],[[-0.077507928013802,0.05718806758523,0.0047426288947463],[-0.066190168261528,0.14401505887508,-0.04240307956934],[0.11861597746611,0.13425989449024,0.0044411439448595]],[[-0.03689432144165,-0.011838090606034,0.034353509545326],[-0.008670300245285,-0.027485135942698,0.0061800773255527],[0.089403375983238,0.053803123533726,0.075867690145969]],[[-0.15001493692398,-0.032162271440029,0.025214599445462],[-0.074639528989792,0.074872493743896,0.16523408889771],[-0.16542786359787,-0.053868051618338,0.29513192176819]],[[-0.11052789539099,0.039654053747654,-0.23520362377167],[-0.039885129779577,0.094871029257774,-0.03899035602808],[0.027333289384842,-0.1013375222683,-0.092201553285122]],[[-0.048593934625387,-0.076310187578201,7.4849762313534e-05],[0.056794907897711,0.012618212029338,0.07456611841917],[-0.13694882392883,-0.082254849374294,-0.030237635597587]],[[0.021204495802522,0.028065891936421,0.030746566131711],[-0.0038870160933584,0.07098925113678,0.09432078152895],[-0.025689763948321,0.10566894710064,0.052079923450947]],[[0.1024472489953,0.093873001635075,-0.00098267139401287],[0.25295129418373,0.1427676230669,0.13143028318882],[0.093032576143742,0.028605818748474,-0.01535047031939]],[[-0.035607755184174,-0.011016897857189,0.011617936193943],[-0.1789698600769,-0.08932688087225,-0.12003283202648],[0.10665582120419,-0.068278193473816,-0.048213642090559]],[[0.085919588804245,-0.10698562115431,0.06039622798562],[-0.070127837359905,-0.12809173762798,-0.11780796945095],[0.042010463774204,-0.059234976768494,-0.088207319378853]],[[-0.16055937111378,-0.03852254897356,-0.082238182425499],[0.014410544186831,0.04431127011776,-0.098577104508877],[-0.034562133252621,0.077718809247017,0.021467391401529]],[[-0.0051184073090553,0.010021484456956,-0.090725004673004],[-0.038976646959782,-0.092956632375717,-0.071418970823288],[-0.070110939443111,-0.025885581970215,-0.034777924418449]],[[-0.16934055089951,-0.090125903487206,0.061679787933826],[-0.050788514316082,0.061754275113344,0.092877618968487],[0.098827242851257,-0.012052507139742,-0.05843910202384]],[[0.16815286874771,0.12898287177086,-0.17369249463081],[-0.01572585478425,0.064727805554867,-0.0029414494056255],[-0.14242194592953,-0.047813095152378,0.0038346929941326]],[[-0.069249905645847,-0.077656053006649,-0.083138041198254],[0.052394162863493,0.088493764400482,0.031903263181448],[-0.06114325299859,0.09423092007637,0.10093963891268]],[[-0.065595224499702,-0.082385741174221,-0.024880105629563],[-0.077284641563892,-0.13670244812965,-0.0032974896021187],[-0.12373737245798,0.030734978616238,-0.049420353025198]],[[-0.1095381975174,-0.12761241197586,-0.026803378015757],[0.036183174699545,-0.014498610980809,0.0091045126318932],[-0.011425160802901,-0.080149754881859,-0.11795258522034]],[[-0.24861969053745,-0.14089021086693,-0.059990897774696],[-0.20061269402504,0.0089235138148069,0.059298198670149],[0.0053016631864011,-0.057945981621742,0.19239656627178]],[[0.017576424404979,0.00099009228870273,-0.037853699177504],[0.034272827208042,0.042279083281755,0.0066726370714605],[-0.22541412711143,0.025882402434945,-0.24000561237335]],[[0.23873992264271,-0.010688695125282,0.023414803668857],[-0.013613505288959,-0.040037877857685,-0.18745000660419],[0.040155973285437,-0.054674345999956,-0.044359512627125]],[[0.14729325473309,-0.078154109418392,0.064682111144066],[0.06485865265131,0.088337533175945,-0.105188973248],[-0.13796697556973,0.14522403478622,-0.049816638231277]],[[-0.012912603095174,-0.14743272960186,-0.035410940647125],[0.13911268115044,-0.00066678272560239,-0.11786379665136],[0.032954711467028,0.086989395320415,-0.059191036969423]],[[0.092896267771721,0.18890058994293,-0.14519484341145],[0.13490256667137,-0.10127418488264,0.060753408819437],[-0.033381503075361,0.046356145292521,0.028314057737589]],[[0.020377976819873,-0.038180507719517,0.072652973234653],[-0.15840719640255,-0.076391264796257,0.059532035142183],[-0.31627550721169,0.10262437164783,0.03861640766263]],[[0.054682418704033,-0.044319652020931,-0.051241789013147],[0.033165380358696,-0.089008562266827,-0.039382070302963],[0.017953112721443,-0.034206103533506,-0.068771600723267]],[[-0.2082556784153,-0.015746897086501,-0.15767374634743],[-0.21825183928013,-0.049818620085716,-0.040884610265493],[-0.10283888876438,-0.037873949855566,-0.041097570210695]],[[-0.14807444810867,0.093070320785046,-0.13498537242413],[-0.034868285059929,-0.13007116317749,0.02600397542119],[0.12985514104366,-0.16132745146751,0.072381988167763]],[[0.39318200945854,-0.27764245867729,0.17579458653927],[0.0047249468043447,0.0059000439941883,-0.046900257468224],[-0.036915592849255,0.0014697794103995,-0.080379232764244]],[[0.055139161646366,-0.0016066515818238,-0.026383779942989],[-0.019876958802342,-0.031464137136936,-0.051108784973621],[-0.13197126984596,-0.011430441401899,0.14690454304218]],[[0.086907275021076,0.0036057077813894,0.018728399649262],[0.061002515256405,0.030323999002576,0.0078789899125695],[0.015751833096147,0.076781004667282,-0.017195587977767]],[[0.0094927912577987,-0.1516879349947,0.16468186676502],[-0.027733171358705,-0.016997883096337,0.11292114108801],[0.058327071368694,0.11106840521097,0.056338805705309]],[[-0.016491351649165,0.19169595837593,0.014244578778744],[-0.020386833697557,-0.088358886539936,0.059594634920359],[-0.074030444025993,-0.1210448667407,0.057867266237736]],[[-0.20845288038254,-0.078457079827785,-0.13965217769146],[-0.061363413929939,-0.11690460145473,-0.21621111035347],[-0.12588788568974,-0.13017342984676,0.029064234346151]],[[-0.015690926462412,-0.031134210526943,-0.075031086802483],[0.032544616609812,-0.027739144861698,0.050982464104891],[0.16373062133789,0.17317314445972,-0.051565028727055]],[[-0.11829745769501,0.12265677750111,-0.0063974177464843],[-0.12879291176796,-0.10090439021587,0.010081985965371],[-0.15777391195297,0.02002383209765,-0.014318470843136]]],[[[0.044192660599947,-0.051898438483477,-0.07281956076622],[-0.066597573459148,-0.055870916694403,-0.022224334999919],[0.046840343624353,-0.07396250218153,-0.014085173606873]],[[-0.14590667188168,-0.14086243510246,0.0091617051512003],[0.022085895761847,-0.068878270685673,-0.051123049110174],[0.050201877951622,-0.036537598818541,-0.062277935445309]],[[0.053273063153028,-0.0056478544138372,-0.13456968963146],[0.0005687631200999,0.052501235157251,0.081816956400871],[-0.11350808292627,-0.1473726183176,-0.0040141325443983]],[[-0.090600527822971,-0.06427163630724,-0.13106252253056],[0.053029738366604,0.018499029800296,0.010789937339723],[-0.00037053300184198,0.029651796445251,0.032872308045626]],[[0.010469766333699,-0.07157951593399,0.035859726369381],[-0.0075826374813914,-0.02783052995801,-0.05120599642396],[-0.062937363982201,-0.0043107173405588,-0.16622745990753]],[[-0.044509585946798,-0.044561136513948,-0.037446800619364],[-0.033919289708138,-0.11132997274399,0.076639629900455],[-0.02764125354588,0.010659197345376,-0.031296819448471]],[[0.021604491397738,0.033881362527609,0.12200144678354],[-0.11392011493444,0.062090665102005,0.059348318725824],[-0.061807699501514,-0.084133669734001,0.020372292026877]],[[0.089805357158184,0.030958622694016,0.012739758938551],[-0.057927414774895,0.043692734092474,-0.0068124262616038],[0.018673041835427,-0.014772799797356,0.008096668869257]],[[-0.2380009740591,-0.24160189926624,0.062792740762234],[-0.035102836787701,-0.021791303530335,-0.10410293191671],[0.089811630547047,-0.055132165551186,0.072194159030914]],[[-0.0028767995536327,-0.020872237160802,0.010075155645609],[-0.042506534606218,-0.055033981800079,0.023556474596262],[0.077921465039253,0.07427054643631,-0.0048091760836542]],[[-0.017320835962892,-0.015978859737515,-0.0037932046689093],[-0.085053145885468,0.053738124668598,-0.0045343395322561],[0.043240301311016,-0.012659658677876,-0.10756000131369]],[[0.031274739652872,-0.095684982836246,-0.080593340098858],[0.019418779760599,0.058090180158615,-0.101672783494],[-0.076606869697571,0.017859626561403,0.10338781028986]],[[-0.0015111786779016,0.085976734757423,0.038937401026487],[-0.024014351889491,-0.12374793738127,-0.037828426808119],[0.0018313445616513,0.026390625163913,0.014398426748812]],[[-0.12073031067848,-0.027678266167641,0.064587697386742],[-0.016745515167713,-0.05573770031333,-0.027790727093816],[-0.0057057258673012,0.030898844823241,0.12308917194605]],[[0.050253111869097,-0.0072945114225149,-0.061962850391865],[0.094214953482151,-0.07426056265831,0.0013108953135088],[-0.081028379499912,-0.12761677801609,0.12849640846252]],[[-0.066247269511223,-0.01585790514946,-0.0098455995321274],[0.052348271012306,0.051252610981464,-0.014096360653639],[0.038092788308859,0.028176695108414,0.12439029663801]],[[0.11146794259548,0.10377285629511,0.060871880501509],[-0.011838126927614,0.052291225641966,0.038497257977724],[0.012854638509452,-0.040913164615631,0.11020036786795]],[[-0.047597963362932,0.056402254849672,-0.093354538083076],[0.021431026980281,-0.061435483396053,-0.013422487303615],[0.0062196897342801,0.075854547321796,0.028052756562829]],[[0.10942331701517,0.04104558005929,-0.11923042684793],[0.090784199535847,0.034147303551435,-0.012821995653212],[-0.022117609158158,0.028175873681903,-0.0039121275767684]],[[-0.042868223041296,0.027427921071649,0.033198468387127],[0.046717863529921,-0.038939405232668,-0.0085088005289435],[-0.014598463661969,0.081677280366421,-0.047841645777225]],[[0.030671397224069,0.0070369555614889,-0.018583305180073],[-0.0572046674788,-0.080467790365219,-0.026967788115144],[0.15818656980991,-0.064685806632042,0.11919029057026]],[[-0.064070083200932,-0.04020493850112,-0.050660636276007],[0.018709624186158,0.037172827869654,0.015810677781701],[-0.025677312165499,-0.075131580233574,0.037215381860733]],[[-0.031834874302149,0.1226439923048,-0.10463737696409],[-0.010020741261542,-0.11595603823662,-0.0036422009579837],[-0.098932519555092,0.092327728867531,-0.011649722233415]],[[-0.10546393692493,-0.05546322837472,-0.035926982760429],[-0.073423057794571,0.018225649371743,-0.13377767801285],[-0.12565442919731,0.11085716634989,0.16507197916508]],[[0.067042045295238,0.18846353888512,0.0050879856571555],[0.17127647995949,0.087693281471729,-0.05022781342268],[-0.014972247183323,-0.075128763914108,-0.1216506510973]],[[0.049914166331291,-0.075493551790714,0.023535821586847],[-0.013181014917791,-0.058010209351778,-0.0095255672931671],[0.0062658037059009,0.06553927809,-0.0033391905017197]],[[-0.2245716303587,-0.10313088446856,-0.13003742694855],[-0.13550934195518,0.025497416034341,-0.033339560031891],[-0.047062501311302,0.038979936391115,0.03664056956768]],[[-0.16474355757236,-0.064063206315041,-0.074754238128662],[-0.0057047242298722,-0.041221622377634,0.24855613708496],[0.042479153722525,-0.0018179600592703,-0.012948189862072]],[[0.064132153987885,-0.021319368854165,0.054395623505116],[-0.16565708816051,-0.0012722896644846,-0.072317041456699],[-0.26498490571976,-0.088068135082722,-0.044893879443407]],[[0.083543337881565,0.0127197150141,-0.072065867483616],[-0.063105307519436,0.092529095709324,0.065655052661896],[0.016303572803736,0.016789488494396,-0.083194077014923]],[[0.0054305698722601,-0.11056412756443,-0.049239236861467],[0.035653255879879,-0.055991191416979,0.10796538740396],[0.033175352960825,-0.029595008119941,-0.012389528565109]],[[0.026666276156902,0.011883069761097,0.088390953838825],[0.089937634766102,0.10589024424553,0.047684971243143],[0.12931351363659,0.013794827274978,-0.062356438487768]],[[0.11273264884949,0.041196256875992,0.090826727449894],[-0.16170148551464,0.031524788588285,-0.034725803881884],[0.071645870804787,0.067307814955711,0.0090239057317376]],[[0.086846962571144,-0.025937775149941,0.030972836539149],[0.024475837126374,0.085261858999729,0.012129333801568],[-0.097147196531296,-0.13053412735462,0.033727549016476]],[[-0.1701465845108,-0.10118038207293,0.080742545425892],[-0.052660420536995,-0.10452038794756,-0.065638057887554],[-0.10673437267542,0.045604705810547,0.029439941048622]],[[-0.033672489225864,-0.037429332733154,0.0083562526851892],[-0.0059970407746732,0.10266583412886,0.051303170621395],[0.030514284968376,-0.01515437848866,0.10437720268965]],[[-0.016923367977142,-0.11653441935778,-0.034089740365744],[0.091882631182671,-0.031939994543791,0.058046836405993],[0.1365373134613,0.042384639382362,-0.08563032746315]],[[-0.082038670778275,0.082910895347595,0.05210517346859],[-0.083357736468315,-0.074912846088409,-0.10652510821819],[0.03625026717782,0.043172277510166,0.024862008169293]],[[-0.020977323874831,-0.040434770286083,-0.052094500511885],[0.020583853125572,-0.00036253561847843,-0.047051552683115],[0.020040664821863,0.12700766324997,0.043382432311773]],[[-0.0041840709745884,0.007958079688251,0.056911490857601],[-0.063261337578297,-0.13580232858658,-0.0080564469099045],[-0.078435152769089,-0.041376117616892,0.046988319605589]],[[-0.094217486679554,0.0049480106681585,-0.048582419753075],[-0.11788146197796,-0.016935959458351,-0.027741298079491],[-0.088139668107033,-0.033125720918179,0.04132791236043]],[[-0.08487656712532,-0.14162389934063,0.037088084965944],[0.053909651935101,0.025911089032888,-0.021524928510189],[-0.039407834410667,0.037979926913977,-0.08718353509903]],[[-0.086373254656792,-0.031416490674019,-0.0047824420034885],[0.15748773515224,-0.022438080981374,0.073208078742027],[-0.095345385372639,-0.014981936663389,-0.15777368843555]],[[-0.12695199251175,0.069601580500603,0.096077583730221],[-0.0029626246541739,0.035280916839838,-0.042899042367935],[0.012797781266272,0.04007076472044,-0.0064759617671371]],[[0.026574211195111,0.01182503439486,-0.032259214669466],[0.040180396288633,0.1535926759243,0.16517063975334],[-0.048704382032156,0.019566565752029,-0.044776525348425]],[[0.069093450903893,0.10224957764149,-0.037592072039843],[-0.088909469544888,-0.13204261660576,-0.086851097643375],[0.055698469281197,-0.031779825687408,0.083547212183475]],[[0.18755002319813,-0.044085621833801,0.096610844135284],[0.011163616552949,-0.074851527810097,-0.092372350394726],[-0.072723306715488,-0.074815802276134,-0.030219927430153]],[[-0.032119482755661,0.16647103428841,-0.092387676239014],[-0.016679117456079,-0.11300373077393,0.13378848135471],[-0.020237971097231,-0.16962371766567,-0.14024809002876]],[[0.013037358410656,-0.10256642103195,-0.046404365450144],[0.009140252135694,-0.079624019563198,0.036698382347822],[-0.088534712791443,0.03764883056283,-0.024680450558662]],[[0.032294325530529,-0.048702508211136,-0.0051451735198498],[0.07032698392868,0.073882274329662,-0.04784194752574],[0.073159083724022,-0.11862596869469,-0.012298610061407]],[[-0.097230955958366,-0.11883706599474,-0.11510255932808],[-0.0072977687232196,-0.08784145116806,0.0092467684298754],[-0.094083942472935,0.043296810239553,0.11630077660084]],[[0.069677010178566,-0.0067143272608519,0.011943489313126],[0.18960948288441,0.042928401380777,0.077586360275745],[0.057770468294621,-0.1095572039485,0.033006872981787]],[[0.028473487123847,-0.024180550128222,-0.11685341596603],[0.018366483971477,0.028743486851454,-0.016166813671589],[0.0043947622179985,0.085803136229515,0.0070686945691705]],[[0.20749922096729,-0.030396055430174,-0.0056018698960543],[0.15606035292149,0.00080898986198008,0.108806617558],[-0.10712661594152,-0.049096144735813,-0.031925782561302]],[[0.020603071898222,0.065100565552711,-0.15672712028027],[-0.045929800719023,0.061570204794407,-0.083294659852982],[-0.085234969854355,0.034277070313692,-0.058873526751995]],[[-0.012773081660271,0.0045134662650526,0.046163402497768],[-0.094468384981155,0.072690397500992,-0.029879981651902],[-0.041553717106581,-0.053710073232651,-0.073930390179157]],[[0.017682900652289,0.0077565815299749,-0.030512779951096],[-0.05973881855607,-0.11101508140564,-0.094471760094166],[0.0043916865251958,-0.045490950345993,0.12391082197428]],[[-0.053530983626842,-0.049779154360294,-0.044320084154606],[0.010797347873449,0.077471174299717,-0.054896861314774],[0.042586654424667,0.087651446461678,0.10808841884136]],[[0.088447764515877,0.031983584165573,0.059943426400423],[0.073232389986515,0.079351350665092,0.12510332465172],[-0.034356728196144,-0.040935385972261,-0.03857696801424]],[[-0.030668823048472,0.012062462978065,0.098414197564125],[-0.038839735090733,0.026702608913183,0.10205371677876],[-0.10565296560526,-0.048918973654509,0.058659166097641]],[[0.0014933762140572,0.073052994906902,0.16261726617813],[0.080321468412876,-0.031534399837255,0.047483742237091],[-0.01870926655829,0.019407002255321,0.061680670827627]],[[-0.13556335866451,-0.08382123708725,0.02538506500423],[0.054004333913326,0.015136079862714,-0.062438428401947],[-0.045291297137737,-0.039341326802969,-0.05251295119524]],[[0.010809273459017,-0.078290648758411,0.19785656034946],[0.027750829234719,-0.073829099535942,-0.026141917333007],[-0.034410800784826,0.025501497089863,-0.035228747874498]],[[-0.086407385766506,-0.11484128236771,-0.16262121498585],[-0.050384920090437,0.03868330642581,-0.054629594087601],[0.074597828090191,-0.065664224326611,-0.13428583741188]]],[[[-0.083085246384144,-0.12128522247076,-0.057669404894114],[-0.0042913956567645,0.023974001407623,-0.038688335567713],[0.099360808730125,0.096068635582924,0.050240594893694]],[[-0.078311778604984,0.01294179726392,-0.066416889429092],[-0.11749905347824,-0.062052026391029,0.034182265400887],[-0.19462761282921,-0.070860862731934,-0.10400316864252]],[[-0.037214301526546,-0.12143822014332,-0.026808803901076],[0.0042123296298087,-0.016259076073766,-0.047071754932404],[-0.084087014198303,-0.040980890393257,0.0066716652363539]],[[-0.10049882531166,-0.036718152463436,0.067919887602329],[0.031432524323463,-0.037255059927702,0.022917225956917],[-0.10389266908169,0.081581801176071,-0.049884609878063]],[[0.01392204221338,0.09760157763958,0.092549398541451],[-0.0011981173884124,-0.095750473439693,0.0090787280350924],[0.081744559109211,0.1130213290453,0.019968925043941]],[[-0.13178966939449,0.020126545801759,-0.0075469752773643],[-0.12575903534889,0.045790899544954,-0.067210339009762],[0.055185474455357,0.021308267489076,-0.033402539789677]],[[0.026061801239848,0.049123257398605,0.010510247200727],[-0.031281884759665,0.02842440828681,0.010808014310896],[0.0038322128821164,0.074650540947914,0.113998927176]],[[0.016629796475172,0.092458173632622,0.1582153737545],[0.017559982836246,0.088050827383995,-0.14238196611404],[0.072170227766037,0.057373460382223,0.015246110968292]],[[-0.014739924110472,-0.1471198797226,-0.081756494939327],[-0.041874647140503,-0.046926613897085,0.04372251778841],[0.040582668036222,0.015576510690153,0.13499930500984]],[[-0.1107863932848,-0.0887141674757,0.043128076940775],[-0.072138451039791,0.061679787933826,-0.092003501951694],[-0.061216056346893,-0.11997045576572,-0.12549437582493]],[[-0.051752861589193,0.012961577624083,-0.024820065125823],[0.060409463942051,-0.06164400652051,-0.023229232057929],[-0.038311429321766,0.038303922861814,0.061910722404718]],[[0.0079692378640175,0.013414725661278,0.016398042440414],[-0.032319381833076,0.060982957482338,0.047462936490774],[0.038968276232481,-0.036129470914602,-0.027966195717454]],[[-0.10540242493153,0.027673045173287,-0.019193379208446],[0.1026918888092,0.045868158340454,0.041977617889643],[0.077163368463516,-0.060209590941668,0.069909110665321]],[[-0.052522271871567,0.094362333416939,0.080458141863346],[-0.10754607617855,0.034646965563297,-0.034383963793516],[-0.030160391703248,0.13717353343964,0.035710025578737]],[[0.014770600944757,0.026351545006037,0.023233775049448],[0.026392791420221,-0.017840377986431,-0.048953764140606],[-0.087664946913719,0.035387400537729,0.048617798835039]],[[0.091005429625511,-0.12579970061779,0.058265913277864],[-0.079351484775543,-0.014407413080335,0.014684065245092],[0.079503655433655,0.023333920165896,0.030012203380466]],[[0.013305524364114,-0.047926962375641,0.033157840371132],[0.010476378723979,-0.038404379040003,0.069438889622688],[-0.034568872302771,0.01161072589457,-0.036955375224352]],[[-0.002439180854708,-0.028696799650788,0.015140442177653],[0.075583808124065,0.008957514539361,-0.021739963442087],[0.1172710955143,-0.025523643940687,0.03819639980793]],[[-0.10921949148178,-0.0010569434380159,-0.12851265072823],[0.052410215139389,-0.081682614982128,-0.053147114813328],[0.013050436042249,-0.072469152510166,0.050851412117481]],[[0.084283724427223,0.027088949456811,-0.037802886217833],[-0.10016328841448,-0.030864000320435,0.044121246784925],[-0.13596601784229,-0.042750652879477,-0.080122493207455]],[[0.068511374294758,0.14396899938583,0.07300654053688],[0.11310835927725,0.056875307112932,0.02908081188798],[0.14086391031742,-0.09482067078352,0.050420537590981]],[[-0.041114326566458,-0.038332335650921,0.021949253976345],[0.032769966870546,0.010643223300576,-0.0041323946788907],[0.10187575221062,-0.011690066196024,-0.085633769631386]],[[-0.026728557422757,-0.082108519971371,0.0011644749902189],[-0.022869870066643,-0.0082141440361738,0.15307751297951],[0.0010961963562295,-0.054538011550903,-0.053459905087948]],[[0.25808531045914,0.021385865285993,-0.099448353052139],[0.041436292231083,-0.16336603462696,-0.049739986658096],[-0.013354661874473,0.063660025596619,-0.053085122257471]],[[0.046088065952063,-0.0096972249448299,0.054959386587143],[-0.015577629208565,-0.082422375679016,-0.030815059319139],[0.032504424452782,-0.0050278063863516,0.00020754667639267]],[[0.027361895889044,0.026177918538451,0.036643609404564],[-0.055322635918856,-0.046230725944042,0.035887587815523],[-0.054509475827217,0.0099066691473126,0.014628582634032]],[[-0.059659466147423,-0.081506736576557,-0.087476931512356],[-0.07740943133831,-0.019042130559683,-0.068024851381779],[0.0045682080090046,-0.048835087567568,-0.21640582382679]],[[-0.012460143305361,-0.014836292713881,-0.056475635617971],[0.05389341711998,-0.037092939019203,-0.13775090873241],[-0.060318738222122,-0.0754129961133,-0.041571345180273]],[[-0.088172294199467,0.046313218772411,-0.1550577878952],[-0.11931404471397,-0.041640151292086,0.041557259857655],[0.15061371028423,0.059932209551334,-0.093130171298981]],[[0.025060219690204,0.048755001276731,-0.045988664031029],[0.11862076073885,0.066204413771629,0.061410773545504],[-0.036022916436195,-0.11744531989098,-0.020105747506022]],[[-0.0069520864635706,0.041016969829798,-0.0029897980857641],[0.0043099480681121,0.010876447893679,-0.024659220129251],[-0.051593776792288,-0.12951551377773,-0.064574018120766]],[[0.073879480361938,-0.010282557457685,-0.0015009371563792],[-0.10204660147429,0.10403141379356,-0.073331244289875],[0.10403655469418,0.11441013216972,-0.049593713134527]],[[0.00066853611497208,0.053084414452314,0.1496576666832],[0.060361754149199,0.094196066260338,0.06730218231678],[-0.11306974291801,-0.00012687961861957,-0.038274459540844]],[[0.017455127090216,-0.012994064949453,-0.14202010631561],[0.071433804929256,-0.026025982573628,-0.013679102994502],[-0.040593411773443,0.0076174386776984,-0.002090998692438]],[[0.007234379183501,0.047507673501968,0.12049145996571],[-0.035420197993517,0.070842303335667,0.07044755667448],[-0.16479493677616,-0.092690646648407,-0.050090659409761]],[[0.044832311570644,0.08213659375906,0.10477143526077],[-0.0033836297225207,0.024309726431966,0.096128441393375],[-0.055808190256357,-0.02070420794189,0.022194020450115]],[[0.16624702513218,0.055475939065218,0.088144674897194],[-0.022926770150661,0.042557626962662,-0.24221497774124],[0.065587140619755,0.14532624185085,0.040670610964298]],[[0.089275173842907,0.017497440800071,-0.00092107953969389],[-0.093499161303043,-0.04999390617013,-0.010638278909028],[-0.056040644645691,0.014002939686179,-0.049336075782776]],[[0.10782830417156,-0.027394481003284,0.0062765735201538],[-0.059618458151817,-0.050019290298223,-0.054956030100584],[-0.14063577353954,-0.034445960074663,-0.0030687400139868]],[[0.0069215376861393,0.022974563762546,0.017386991530657],[-0.0027063449379057,0.10704001039267,-0.014040493406355],[-0.16968616843224,0.070516683161259,-0.035867862403393]],[[0.04335954785347,0.095347478985786,0.11135284602642],[-0.051421541720629,0.067303314805031,-0.045925065875053],[-0.038580756634474,0.028037266805768,0.012827787548304]],[[0.036163590848446,-0.077318020164967,0.019351001828909],[0.024648679420352,-0.059647615998983,0.0061910334043205],[0.091741301119328,-0.018489187583327,0.10317832231522]],[[0.11687949299812,0.088122799992561,-0.039750467985868],[-0.21038475632668,-0.04453956335783,-0.094853483140469],[-0.13232892751694,0.081279344856739,-0.076831743121147]],[[0.14556774497032,0.0618806630373,0.052199099212885],[-0.05514919757843,0.030580341815948,-0.065137095749378],[0.045024894177914,0.096347808837891,0.076047882437706]],[[-0.12426130473614,-0.057439286261797,0.020146165043116],[0.079786732792854,-0.059022270143032,-0.051250848919153],[0.083418227732182,-0.0560402572155,-0.017691522836685]],[[0.029429197311401,0.087150648236275,-0.064477205276489],[0.0038134774658829,0.15217866003513,-0.09362718462944],[0.050059460103512,-0.015803918242455,0.060832045972347]],[[-0.0025550746358931,0.0040063401684165,0.0490887388587],[0.098001286387444,-0.079057097434998,0.052500300109386],[0.066228374838829,0.033914759755135,-0.047543797641993]],[[-0.062980808317661,-0.040881544351578,-0.10439974069595],[-0.045600220561028,-0.040826469659805,-0.098228491842747],[-0.010925507172942,-0.0082717183977365,0.071261189877987]],[[0.065337792038918,-0.047101888805628,-0.079387925565243],[0.061425127089024,-0.0078463247045875,0.017289277166128],[-0.082128159701824,-0.047022748738527,-0.060974303632975]],[[0.077159874141216,-0.11779253184795,0.061658680438995],[0.081696607172489,0.0092814238741994,-0.088639751076698],[0.093408659100533,0.10949315130711,0.057128611952066]],[[0.014140850864351,-0.093176908791065,0.054324310272932],[-0.036668691784143,-0.062092263251543,0.068323373794556],[-0.0093076778575778,0.018739743158221,-0.062195606529713]],[[0.059015855193138,0.055502209812403,0.088805079460144],[0.0017166666220874,0.019566237926483,0.063783623278141],[-0.059033624827862,-0.11964717507362,-0.030757036060095]],[[0.00021843590366188,-0.1745297908783,0.030259091407061],[-0.035540610551834,0.065262250602245,-0.079046227037907],[-0.070040561258793,-0.011640953831375,0.050285279750824]],[[0.00061937671853229,-0.0016880907351151,-0.019701981917024],[-0.10212213546038,-0.03608863055706,0.038138534873724],[0.0798205062747,-0.0012870266800746,-0.052824031561613]],[[-0.053587198257446,-0.057998452335596,-0.041972305625677],[0.036996338516474,-0.021975673735142,-0.063982635736465],[0.053799841552973,0.060387119650841,0.13900914788246]],[[-0.007553952280432,0.010335370898247,0.028297308832407],[-0.050962924957275,0.063716270029545,0.0026329488027841],[0.15791121125221,0.088173471391201,0.15618920326233]],[[0.0042788884602487,-0.081687338650227,-0.015487402677536],[-0.10058356821537,-0.12760181725025,0.080089904367924],[0.063922293484211,0.051926668733358,0.15621601045132]],[[0.1053864210844,0.079529851675034,-0.010315390303731],[0.00016242507263087,0.0015576021978632,-0.072678901255131],[-0.075163125991821,-0.0077382330782712,0.05510089546442]],[[-0.0045924899168313,-0.031598575413227,0.0026138287503272],[0.0068218903616071,0.039313245564699,-0.090665087103844],[0.084462232887745,0.00036723469384015,-0.017441296949983]],[[0.077612169086933,-0.032891288399696,0.050960432738066],[0.0093982936814427,-0.11152858287096,0.010347411967814],[0.021259309723973,0.056107003241777,0.085724204778671]],[[0.091055080294609,0.024777082726359,0.041610412299633],[0.051331851631403,-0.073109187185764,0.0079305116087198],[-0.011031957343221,0.019612664356828,0.0412930957973]],[[-0.022225871682167,0.025237465277314,-0.0698471814394],[-0.052787940949202,0.089971713721752,-0.064306527376175],[-0.030679916962981,0.019927063956857,-0.025924576446414]],[[0.043468579649925,-0.015164881944656,0.031924124807119],[-0.15267549455166,-0.0012862150324509,0.064282119274139],[0.11472169309855,0.059513252228498,0.062989093363285]],[[0.057900153100491,0.087329193949699,0.021124925464392],[-0.025664819404483,-0.089866310358047,-0.1277137696743],[-0.087797380983829,0.054333999752998,-0.020491292700171]]],[[[0.083965636789799,0.03891384601593,0.1064834445715],[-0.085287556052208,-0.044003833085299,-0.071625240147114],[-0.017876952886581,-0.011774249374866,-0.060910794883966]],[[-0.16225077211857,0.043967168778181,0.044346712529659],[-0.014930166304111,-0.0060090175829828,-0.07717702537775],[-0.18566082417965,-0.046968325972557,-0.13277608156204]],[[0.093877762556076,0.087956421077251,-0.05619965493679],[-0.041752111166716,0.059011191129684,-0.12895356118679],[-0.035326696932316,-0.098103396594524,-0.040707778185606]],[[-0.092600457370281,-0.063762724399567,0.025031723082066],[-0.22324120998383,-0.076188452541828,-0.13874483108521],[0.069118194282055,-0.022312710061669,-0.060580305755138]],[[0.037462625652552,-0.037488650530577,-0.18540991842747],[-0.092199943959713,-0.09650194644928,0.026524677872658],[-0.071102656424046,-0.015574018470943,-0.030574463307858]],[[0.054869100451469,-0.031422395259142,-0.068531207740307],[0.08117513358593,0.083970583975315,0.051454972475767],[-0.17477217316628,-0.11960307508707,-0.093979202210903]],[[0.045390345156193,0.089994564652443,0.11663872003555],[0.0046296445652843,0.039555784314871,0.069303624331951],[0.03972988948226,-0.021042801439762,-0.16253279149532]],[[-0.047310695052147,-0.082442551851273,-0.053514443337917],[-0.056064464151859,0.088523857295513,0.2390508800745],[-0.0025006146170199,-0.021373625844717,-0.054123122245073]],[[-0.13790349662304,0.014314359053969,-0.17103509604931],[-0.083963714540005,-0.045297186821699,-0.17777338624001],[0.041858799755573,0.018051439896226,-0.22547121345997]],[[0.074342362582684,0.18774704635143,0.092382423579693],[-0.0059606623835862,-0.078523151576519,0.14455124735832],[-0.074443675577641,-0.12034172564745,-0.037096004933119]],[[0.020540660247207,0.054245889186859,0.020522769540548],[-0.0040667578577995,-0.043560050427914,0.20027317106724],[-0.015241259709001,-0.12349133193493,-0.10037747770548]],[[0.037407718598843,0.061340529471636,0.051850143820047],[0.11324336379766,0.14116542041302,0.07830436527729],[-0.045851726084948,-0.013637384399772,-0.028503354638815]],[[-0.055015590041876,-0.016659546643496,-0.074270479381084],[0.080730155110359,0.076458796858788,0.078371658921242],[0.08140629529953,-0.18672940135002,-0.065682612359524]],[[-0.19879464805126,-0.035782236605883,0.11121070384979],[-0.071768008172512,-0.081067219376564,0.035364594310522],[-0.031562242656946,0.020512407645583,-0.02532372623682]],[[-0.051113076508045,0.071932248771191,0.16655600070953],[-0.041459202766418,-0.035003736615181,-0.065864980220795],[0.033429995179176,-0.12011203169823,-0.12699565291405]],[[0.032334014773369,0.021118173375726,0.10456522554159],[0.011072047054768,-0.060598310083151,0.055639795958996],[0.013843433000147,-0.11328171938658,0.0278972517699]],[[-0.089770697057247,0.021486224606633,0.10993409901857],[0.026594961062074,0.038303785026073,0.0281215403229],[0.1013013496995,-0.037691984325647,-0.10064320266247]],[[-0.06428174674511,-0.1790546476841,-0.17595645785332],[0.072280615568161,-0.024208229035139,0.005159979686141],[-0.098269693553448,-0.01622973382473,0.15823015570641]],[[-0.047178152948618,0.097260944545269,0.10686033219099],[-0.09158443659544,0.07842742651701,-0.0023669998627156],[-0.1948955655098,0.06120777502656,-0.26504302024841]],[[0.19057473540306,0.15651312470436,0.074346669018269],[-0.1136259958148,-0.20812198519707,-0.047061398625374],[-0.15725773572922,-0.031654465943575,-0.022474706172943]],[[0.040361989289522,0.0026435537729412,0.040979065001011],[-0.14793810248375,-0.078054249286652,0.067187570035458],[-0.035518668591976,-0.031568329781294,-0.04992701113224]],[[-0.019070517271757,-0.049252938479185,0.094382114708424],[-0.073465444147587,-0.03413425385952,-0.018552601337433],[0.067355073988438,-0.080383636057377,-0.12046007812023]],[[0.021040506660938,0.0070782564580441,-0.11505828797817],[-0.080067954957485,-0.15949180722237,0.041161358356476],[0.038216907531023,0.09259882569313,0.070001132786274]],[[-0.10536032170057,0.0051726433448493,0.21921068429947],[0.12137658149004,-0.019752077758312,-0.14537769556046],[-0.14935424923897,-0.10445836186409,0.052123628556728]],[[0.1380969285965,-0.2494475543499,-0.047724839299917],[0.015858866274357,0.025647733360529,0.073882326483727],[-0.082469753921032,0.09847317636013,0.005166273098439]],[[-0.025257447734475,0.020431729033589,-0.0064582377672195],[-0.014964512549341,-0.0092499908059835,0.078360453248024],[-0.10755533725023,-0.016955893486738,0.085307262837887]],[[-0.05331501737237,-0.12931895256042,-0.020304901525378],[-0.20709164440632,-0.07508759945631,0.28094825148582],[0.056269004940987,-0.0061821080744267,0.0074542476795614]],[[-0.022063238546252,-0.00046202732482925,-0.041991990059614],[-0.065697193145752,-0.013667948544025,-0.033655762672424],[0.078530982136726,-0.047508422285318,0.062625043094158]],[[-0.022494364529848,-0.078886598348618,0.093304544687271],[0.13247631490231,0.026899747550488,-0.062001410871744],[-0.11639289557934,0.082796201109886,-0.10316816717386]],[[0.21678903698921,0.036390919238329,-0.061811424791813],[-0.11366444081068,0.036007855087519,0.0025026795919985],[0.097003519535065,0.14664202928543,0.059247821569443]],[[0.087783344089985,-0.11995916068554,0.073148228228092],[0.043174508959055,-0.02988988161087,-0.077681325376034],[0.012270510196686,-0.010457333177328,0.080503106117249]],[[0.020241549238563,-0.063237480819225,-0.022395281121135],[0.03248044475913,-0.069639079272747,0.026467787101865],[0.022795742377639,-0.0039067752659321,0.084580115973949]],[[-0.010569844394922,-0.0069286972284317,-0.19998694956303],[0.19972795248032,0.067190364003181,-0.0067699053324759],[0.068810559809208,0.012369065545499,-0.028471074998379]],[[-0.069261483848095,-0.026831481605768,0.051950126886368],[0.011718258261681,0.18668013811111,-0.042370427399874],[-0.014849420636892,-0.13011166453362,-0.058325327932835]],[[0.096748977899551,0.044222205877304,0.022412095218897],[0.062938153743744,0.090384550392628,0.15295423567295],[0.031015669927001,0.015139680355787,-0.0055198781192303]],[[0.13297459483147,0.091131135821342,0.17275962233543],[0.1280439645052,0.14019076526165,0.05061324313283],[0.040940921753645,0.074947468936443,0.039215307682753]],[[0.066053919494152,-0.015155897475779,-0.010449424386024],[0.21303379535675,-0.09693531692028,0.075957015156746],[-0.096517659723759,0.05535276979208,0.11192756891251]],[[0.025426112115383,-0.098132766783237,-0.070432767271996],[0.0054324273951352,-0.046346973627806,0.063001923263073],[-0.069852396845818,-0.050251863896847,-0.044824786484241]],[[-0.096482753753662,0.040935259312391,0.053730342537165],[-0.024135682731867,0.10255239903927,-0.060799065977335],[0.002883736975491,-0.013677967712283,0.033706448972225]],[[-0.069694817066193,-0.068076871335506,-0.24369406700134],[-0.052330620586872,0.017308752983809,0.14302125573158],[-0.13694903254509,-0.068148083984852,0.026065675541759]],[[-0.16990101337433,-0.070529371500015,0.11780828982592],[0.17874655127525,0.084040105342865,-0.061711329966784],[0.090187400579453,0.098104871809483,0.090763278305531]],[[-0.046356957405806,-0.14846931397915,-0.29027420282364],[0.10918077081442,0.0093521047383547,0.12513297796249],[0.048743683844805,0.02997912093997,0.14181563258171]],[[0.019344117492437,0.054527662694454,0.087806098163128],[0.070128932595253,0.096560016274452,0.18959483504295],[-0.078439645469189,-0.12017549574375,-0.28986266255379]],[[0.046309888362885,0.051279090344906,0.19417332112789],[-0.082342736423016,-0.01081753987819,-0.12725950777531],[-0.14877742528915,0.1268534809351,-0.053855512291193]],[[0.0021351152099669,0.10400879383087,-0.16382616758347],[-0.032246306538582,-0.029221059754491,-0.33688443899155],[-0.12428902089596,-0.058457389473915,0.12903700768948]],[[0.068017587065697,-0.089660502970219,-0.40165928006172],[0.069725573062897,-0.0010615980718285,0.0092304954305291],[-0.17677783966064,-0.063438437879086,0.17423431575298]],[[0.20692582428455,0.1438635289669,-0.0047813500277698],[-0.12928251922131,0.01611509360373,0.11587385833263],[-0.056649707257748,-0.071102872490883,-0.033140577375889]],[[0.014387510716915,0.072110369801521,0.04178161919117],[-0.072097510099411,0.056914612650871,0.052943367511034],[0.035154856741428,-0.06581437587738,0.00056357635185122]],[[0.14028091728687,-0.0025902141351253,0.19799433648586],[0.0067026726901531,0.017589844763279,-0.0026555869262666],[-0.089953385293484,-0.040425725281239,-0.07612956315279]],[[-0.13308276236057,-0.156647965312,-0.21646465361118],[0.024224150925875,-0.071969620883465,0.087652161717415],[0.275505900383,0.12572291493416,0.16101518273354]],[[0.044716559350491,0.094953671097755,-0.078903131186962],[-0.02541010081768,0.020316179841757,-0.26800948381424],[-0.076024942100048,0.15716849267483,0.08745814114809]],[[0.054966069757938,0.0074518159963191,0.21406446397305],[-0.0087040811777115,-0.016603304073215,0.15665367245674],[-0.0810312256217,-0.066081687808037,-0.0088543882593513]],[[-0.031059702858329,-0.045615330338478,0.082601822912693],[-0.080348625779152,0.095095567405224,0.014989164657891],[0.023824626579881,0.049622684717178,0.045674338936806]],[[0.003589057829231,0.0084750279784203,0.069283954799175],[0.10831643640995,0.017193406820297,-0.02167360112071],[-0.10569807887077,-0.12335446476936,-0.075265973806381]],[[-0.19351226091385,-0.058657120913267,-0.058404337614775],[0.044328466057777,0.12057238072157,-0.069701358675957],[0.15028551220894,-0.012541796080768,-0.1110940054059]],[[0.073768943548203,0.087604962289333,0.017195526510477],[-0.015962410718203,-0.082631230354309,0.13732133805752],[-0.091564834117889,-0.0086202323436737,-0.069021113216877]],[[-0.025240687653422,0.04048066213727,0.00082386995200068],[-0.10339336842299,0.0059733767993748,-0.14120788872242],[0.013161829672754,0.053195629268885,0.078405670821667]],[[-0.093704074621201,-0.10742305219173,0.0063588605262339],[0.093995563685894,-0.0062136179767549,-0.10811270773411],[0.092166177928448,-0.029090281575918,-0.068873077630997]],[[-0.034858852624893,0.13687664270401,0.059571426361799],[0.073197595775127,0.15397398173809,0.072329461574554],[0.1148885935545,0.1979533880949,0.19128938019276]],[[-0.15880934894085,0.04951611161232,0.28490555286407],[-0.1182916611433,0.13148140907288,0.00074389856308699],[-0.0010330437216908,0.11049539595842,-0.038203120231628]],[[-0.044661238789558,-0.11005431413651,-0.15745685994625],[0.12066476792097,-0.043349657207727,0.076211579144001],[0.0038637691177428,0.10622479766607,0.045365694910288]],[[0.070572204887867,0.08070657402277,-0.14186607301235],[0.082976154983044,0.035001758486032,-0.17443017661572],[0.052964471280575,-0.20185396075249,-0.10118600726128]],[[-0.075881958007812,0.0036160061135888,-0.19021758437157],[0.082978621125221,0.11662144958973,0.15801350772381],[-0.21700805425644,-0.067681334912777,-0.053618296980858]],[[-0.11263471841812,0.1037255898118,-0.054421428591013],[-0.055798012763262,-0.094574593007565,-0.092652469873428],[0.12013023346663,0.066806852817535,0.10771527141333]]],[[[-0.022325413301587,0.09634805470705,-0.1266206651926],[-0.026464883238077,-0.064647376537323,0.078152932226658],[-0.12464137375355,-0.10856612771749,0.0065471571870148]],[[-0.00240792427212,-0.021799108013511,-0.019702957943082],[0.040323533117771,0.097056016325951,0.082640178501606],[-0.019620364531875,-0.14716884493828,-0.10810904949903]],[[0.025150619447231,-0.025219349190593,0.041958715766668],[0.053124792873859,0.05429507419467,0.06991907954216],[0.032514948397875,-0.014670697040856,0.0055931252427399]],[[-0.085606582462788,0.056086450815201,0.01970624178648],[0.057724040001631,0.0087440507486463,0.013680995441973],[0.11296956241131,0.0097524495795369,0.078084483742714]],[[-0.019446134567261,0.01404676027596,-0.002669014967978],[0.026425257325172,-0.024567114189267,0.0017094898503274],[0.071336001157761,0.025964129716158,-0.09755777567625]],[[-0.031011812388897,-0.063423871994019,0.0068732029758394],[0.035590544342995,-0.056181523948908,0.0022854441776872],[-0.080678306519985,0.028921527788043,-0.0084962472319603]],[[0.057860359549522,-0.065412744879723,-0.0049911602400243],[0.05312268063426,0.02795223519206,-0.068889133632183],[-0.040816459804773,0.17848514020443,-0.052935943007469]],[[-0.067212522029877,-0.15182134509087,-0.003537101438269],[0.040754683315754,-0.019391190260649,0.071920856833458],[0.12562483549118,0.031964812427759,0.054879240691662]],[[-0.053926143795252,-0.073925159871578,-0.075057804584503],[0.0316311866045,-0.0729955509305,-0.094245344400406],[0.01891527697444,-0.10140262544155,0.043388616293669]],[[-0.044103190302849,0.019377974793315,0.087120406329632],[0.01167450658977,-0.07142711430788,0.017516968771815],[0.063485361635685,0.04475774616003,0.012601001188159]],[[0.15573047101498,0.037399742752314,0.02681097202003],[0.072653628885746,0.033406902104616,0.057693522423506],[-0.11874803155661,-0.021231435239315,0.019394205883145]],[[0.10626301169395,-0.048625417053699,-0.10840527713299],[0.013480572029948,0.019404567778111,0.011685685254633],[-0.040929917246103,0.07871425896883,-0.18666505813599]],[[-0.07825730741024,0.0098005086183548,0.0086161438375711],[-0.051079619675875,-0.068228028714657,-0.041122868657112],[0.020261792466044,0.056315269321203,-0.0119046587497]],[[-0.073634453117847,0.0041512586176395,-0.166921839118],[-0.10582999140024,0.042306151241064,-0.035443294793367],[-0.091677829623222,0.0075402944348752,-0.02360725402832]],[[0.09439055621624,0.042659830302,-0.042713064700365],[0.021325865760446,-0.07792080193758,0.029110703617334],[0.097833745181561,-0.011573977768421,0.052860591560602]],[[-0.15857221186161,-0.12837103009224,-0.05710457265377],[-0.21108767390251,-0.026615928858519,-0.0022792329546064],[0.0082821017131209,-0.13878266513348,-0.036902949213982]],[[-0.076042994856834,-0.042603079229593,-0.15924392640591],[0.06938523799181,0.069501668214798,0.078984208405018],[0.14932292699814,-0.031223403289914,0.093057818710804]],[[-0.0062917284667492,-0.0035544959828258,-0.011554292403162],[0.043536067008972,0.11874036490917,-0.0059353900142014],[-0.012478840537369,0.0055437278933823,-0.058330219238997]],[[0.14230698347092,0.054950647056103,0.0061301901005208],[0.016388056799769,-0.025639183819294,0.095016039907932],[0.06814631819725,-0.11669643968344,0.028573032468557]],[[-0.039156805723906,0.0031320580746979,-0.065834939479828],[0.095940686762333,-0.010593437589705,-0.045722991228104],[-0.14636020362377,-0.067192673683167,-0.056611970067024]],[[0.10603722929955,0.053253751248121,-0.051321476697922],[-0.012338927946985,0.10961482673883,0.015889178961515],[0.051994986832142,0.033301424235106,-0.14242796599865]],[[-0.048330675810575,-0.035985440015793,0.012261349707842],[-0.040500301867723,0.032306686043739,0.061195954680443],[-0.062558688223362,-0.031422402709723,-0.0081692142412066]],[[0.0066755008883774,0.010334682650864,-0.062318123877048],[0.0057071610353887,-0.0064069801010191,0.047767836600542],[-0.0051886402070522,-0.016091851517558,-0.036148604005575]],[[-0.10351257771254,-0.14458222687244,0.0029187283944339],[-0.044006165117025,-0.040798425674438,0.1181049272418],[0.076603263616562,-0.10777741670609,0.034161649644375]],[[-0.02750157751143,-0.045253545045853,0.037358347326517],[-0.11247215420008,0.023275895044208,0.031387198716402],[-0.029300028458238,0.010837384499609,0.05757587775588]],[[0.01106611546129,-0.012307989411056,-0.060600619763136],[0.015502391383052,0.089460514485836,0.016414994373918],[-0.097031600773335,0.011960074305534,0.017144169658422]],[[0.14192682504654,-0.079805873334408,0.086399592459202],[0.038615923374891,-0.016416912898421,0.037114396691322],[-0.028012629598379,-0.037855375558138,0.086338020861149]],[[0.033301401883364,-0.015401633456349,0.13738334178925],[0.039949674159288,-0.060437604784966,0.035591468214989],[0.079387009143829,0.068441495299339,-0.048272646963596]],[[-0.051127910614014,0.010169987566769,-0.0057877106592059],[0.014265585690737,-0.012168345041573,0.017272396013141],[-0.13586071133614,-0.049336101859808,-0.044321332126856]],[[0.0037774301599711,0.0045037996023893,0.021814376115799],[-0.0033813938498497,0.065256044268608,-0.064227640628815],[-0.22974386811256,-0.0031414795666933,0.014924801886082]],[[0.091131187975407,-0.044295147061348,0.027018409222364],[0.10805144906044,-0.11738649010658,-0.00098794675432146],[-0.010303797200322,-0.032865636050701,0.064955458045006]],[[0.10497055202723,0.037674963474274,-0.063021048903465],[-0.046102657914162,-0.027752915397286,0.055361285805702],[0.057476416230202,0.096810303628445,0.20917698740959]],[[0.050723060965538,-0.029661510139704,-0.0083269150927663],[0.010293088853359,-0.017667945474386,-0.087878443300724],[-0.069524846971035,-0.084907032549381,-0.093496955931187]],[[-0.060822032392025,-0.0037528213579208,0.018942151218653],[0.064920790493488,0.027101552113891,0.064163357019424],[-0.061374381184578,-0.03182702511549,0.064143039286137]],[[-0.048590999096632,-0.073659859597683,-0.26250714063644],[-0.040958896279335,0.068571679294109,0.077908970415592],[-0.027953734621406,0.024280194193125,-0.094108253717422]],[[-0.0053433356806636,0.091477915644646,0.096426047384739],[0.06555400043726,0.15798400342464,0.024569984525442],[-0.079346545040607,-0.02596671693027,0.037030432373285]],[[0.011260197497904,0.039569534361362,0.065274327993393],[0.10898712277412,0.042524769902229,-0.070049740374088],[0.05675059184432,0.078209720551968,0.087151058018208]],[[-0.03262759745121,0.012196691706777,-0.062851123511791],[-0.021579528227448,-0.065316259860992,0.0040524965152144],[0.0092643704265356,-0.00012222517398186,-0.14884820580482]],[[0.15097898244858,0.074144408106804,-0.053724259138107],[0.026752751320601,-0.045136202126741,0.011146045289934],[-0.1211349889636,0.033611539751291,-0.12154498696327]],[[0.046736471354961,0.06756716966629,-0.011919397860765],[0.088212922215462,-0.063254080712795,0.11404038220644],[-0.049201443791389,-0.043493997305632,0.042677126824856]],[[-0.0018260857323185,0.057081826031208,0.060616496950388],[0.011883409693837,0.071815758943558,0.16764187812805],[-0.076404437422752,0.049426190555096,-0.06523210555315]],[[0.020658556371927,-0.094826929271221,-0.063471153378487],[0.10343211889267,-0.038077253848314,-0.21503689885139],[0.091297373175621,0.04662623628974,-0.077783167362213]],[[0.028316963464022,0.058830715715885,0.016656070947647],[0.11191450804472,-0.1262620985508,-0.071388386189938],[-0.027001369744539,0.050815135240555,0.052148427814245]],[[0.010222023352981,-0.034666303545237,-0.017989415675402],[0.13330581784248,0.042415991425514,-0.042145717889071],[0.04259181022644,-0.022822599858046,0.046086698770523]],[[-0.10320142656565,0.042880494147539,-0.037740584462881],[-0.018390644341707,0.05441765114665,0.118791423738],[-0.07797060161829,0.082768321037292,0.097833201289177]],[[-0.06301923841238,0.089828379452229,0.016249625012279],[0.077791191637516,0.0014388430863619,0.022712435573339],[-0.18221575021744,-0.033244259655476,0.26648280024529]],[[-0.11281372606754,-0.049550972878933,-0.050225108861923],[0.025521410629153,0.073168978095055,-0.043249327689409],[-0.11169286072254,0.019085142761469,-0.011188414879143]],[[0.014531246386468,0.057980269193649,0.015722565352917],[-0.067631788551807,-0.046818263828754,-0.080425642430782],[-0.11328049749136,-0.061476793140173,0.12026104331017]],[[0.042551945894957,-0.092501021921635,0.072942346334457],[0.024030309170485,0.0039234482683241,0.028375511988997],[-0.018661273643374,-0.0091869179159403,0.055626712739468]],[[0.033447526395321,-0.029771998524666,0.036566585302353],[0.023859431967139,-0.032196585088968,0.065779700875282],[0.057192575186491,-0.039245780557394,0.078304022550583]],[[-0.030428754165769,0.21018008887768,-0.10787016153336],[-0.17699754238129,0.084463372826576,-0.10632235556841],[-0.050860360264778,0.066613912582397,0.15113663673401]],[[-0.030556490644813,0.021765973418951,0.025478985160589],[-0.057806104421616,-0.010335079394281,0.086017645895481],[-0.1398970335722,-0.063996486365795,0.049625765532255]],[[0.10991154611111,-0.064461730420589,0.016333365812898],[0.14531686902046,0.073899082839489,0.06161493062973],[0.087358474731445,0.039557788521051,0.0011410950683057]],[[0.01304494868964,-0.10785043239594,0.034592069685459],[0.081079564988613,0.045406304299831,0.062119942158461],[-0.065746791660786,0.081056416034698,0.026463197544217]],[[-0.051891654729843,0.060425084084272,0.053883757442236],[-0.030210610479116,-0.024325236678123,0.0017833455931395],[0.062267407774925,-0.076700240373611,-0.0038399891927838]],[[0.04275918379426,0.030729755759239,0.081559613347054],[0.090740531682968,-0.012227512896061,0.04639020934701],[0.15469864010811,0.019635180011392,0.074027501046658]],[[-0.012853715568781,0.11782169342041,0.031976316124201],[0.0093672461807728,0.078730881214142,0.065457917749882],[0.0075657414272428,0.055954825133085,-0.045947022736073]],[[-0.071362629532814,0.041311711072922,-0.16088281571865],[-0.021287683397532,0.062878750264645,-0.029603788629174],[-0.065119385719299,-0.036993488669395,0.1451191753149]],[[0.013477036729455,0.015212154947221,-0.036502860486507],[0.0031713114585727,0.011995050124824,-0.070424623787403],[0.11471082270145,0.09885623306036,0.15686132013798]],[[0.1215443983674,0.025080349296331,0.043313756585121],[0.025097394362092,0.089095272123814,-0.064175762236118],[-0.028604254126549,-0.17402122914791,0.018330389633775]],[[0.052428148686886,0.06438884139061,-0.016146846115589],[0.06695693731308,0.024231635034084,-0.11559507995844],[0.032213229686022,0.090152405202389,-0.060025442391634]],[[0.019300777465105,0.10233893990517,0.018289072439075],[-0.15975424647331,-0.044964928179979,0.079850919544697],[-0.0065277242101729,0.085716210305691,0.051798678934574]],[[-0.066288031637669,-0.071663856506348,0.076453074812889],[-0.010179177857935,-0.035513170063496,0.0076015642844141],[0.10058433562517,0.021651402115822,0.035382017493248]],[[0.026110507547855,0.18558210134506,0.029712278395891],[0.012788229621947,0.02693267352879,0.054272670298815],[-0.027291113510728,-0.00013163205585442,-0.05406516045332]]],[[[-0.15071335434914,-0.10753880441189,-0.015950346365571],[-0.169822499156,-0.069908611476421,0.11506778746843],[-0.072534091770649,-0.012959633953869,-0.063613101840019]],[[0.0013878374593332,0.1009855568409,0.068030089139938],[0.059359516948462,0.022268552333117,-0.088113903999329],[0.028266325592995,0.020490251481533,0.073187820613384]],[[-0.046932581812143,-0.20637463033199,-0.072649873793125],[-0.075586296617985,-0.12602016329765,0.018321169540286],[0.013798256404698,-0.081983618438244,-0.0030123069882393]],[[-0.13238976895809,0.00175870815292,0.057994108647108],[-0.048822730779648,-0.088248759508133,-0.018275922164321],[0.039716728031635,-0.071981996297836,-0.029124215245247]],[[0.081178314983845,-0.14009869098663,0.0063676671124995],[-0.07896862924099,-0.043770413845778,-0.10685667395592],[0.085002243518829,-0.0038482171948999,0.049691956490278]],[[-0.085446894168854,-0.095415450632572,0.05927736312151],[0.013622843660414,0.068078428506851,-0.049635462462902],[-0.18648195266724,-0.024056075140834,-0.08524177968502]],[[-0.095132857561111,0.013356219045818,0.033639907836914],[-0.02594280615449,-0.10374136269093,-0.14232386648655],[-0.11329456418753,-0.0065983887761831,-0.1281460672617]],[[-0.077860310673714,-0.1201348900795,0.0039394376799464],[-0.012653247453272,0.026570145040751,0.0045786509290338],[0.12708653509617,0.006206626072526,-0.099944435060024]],[[-0.073221661150455,-0.15943536162376,0.071397833526134],[-0.017594920471311,-0.10992973297834,0.026201568543911],[-0.045529451221228,0.031618468463421,0.04849961027503]],[[0.054158426821232,0.0092450771480799,-0.0355044901371],[-0.075492918491364,-0.11865310370922,0.014759683050215],[0.039554718881845,0.092664413154125,0.025776920840144]],[[0.074636414647102,0.14318545162678,-0.058450005948544],[-0.13908471167088,-0.19469986855984,0.011933916248381],[-0.11863812059164,-0.089358970522881,0.021939050406218]],[[-0.022307876497507,-0.042404938489199,-0.16181667149067],[0.088127076625824,-0.08404166251421,-0.17664209008217],[-0.026498576626182,-0.038823682814837,-0.12284594029188]],[[-0.032684151083231,0.094185046851635,0.12442784756422],[0.036900863051414,0.06684310734272,0.014328016899526],[-0.065638072788715,-0.026962954550982,0.0085456827655435]],[[-0.13952702283859,0.07058984041214,-0.0067018768750131],[0.055630918592215,0.066896468400955,-0.044513780623674],[-0.04613932967186,-0.18827910721302,0.025039423257113]],[[-0.13384874165058,-0.087586864829063,0.055913709104061],[-0.040563944727182,-0.087038770318031,-0.14151495695114],[0.096497088670731,-0.019180096685886,0.13773018121719]],[[-0.043220892548561,0.10948035120964,0.20216089487076],[-0.15574608743191,-0.0061610536649823,0.18341508507729],[0.10010439902544,0.10420229285955,0.12318603694439]],[[-0.06571402400732,-0.22661629319191,-0.019728630781174],[0.041492905467749,-0.062553010880947,-0.10958296060562],[-0.062925808131695,-0.051447339355946,-0.061459083110094]],[[-0.0032683880999684,0.11554194241762,-0.025725491344929],[-0.00044361298205331,-0.031248910352588,0.078467458486557],[-0.078642457723618,-0.013162254355848,0.00062550528673455]],[[-0.077941864728928,-0.049815740436316,0.15678024291992],[-0.028569618239999,0.052922159433365,-0.032075461000204],[-0.25349673628807,0.041105039417744,-0.1804226487875]],[[-0.15888847410679,0.033848132938147,0.0083768768236041],[-0.10743760317564,0.016924418509007,0.06117383018136],[-0.069888927042484,-0.10471732914448,-0.049438156187534]],[[-0.061485096812248,-0.10991202294827,-0.091035440564156],[-0.019293416291475,-0.080284751951694,0.10632651299238],[-0.14296765625477,-0.019270846620202,0.090797983109951]],[[-0.021866243332624,-0.032687708735466,0.012069404125214],[-0.036145724356174,0.024395857006311,-0.020226091146469],[0.0025853437837213,-0.076950147747993,0.010469350963831]],[[-0.022629460319877,-0.046086527407169,-0.033174321055412],[-0.023989642038941,-0.12100884318352,0.13872499763966],[-0.073120847344398,-0.19682671129704,-0.056564528495073]],[[0.043682921677828,0.096138179302216,0.10026819258928],[0.073412701487541,0.084339492022991,0.12785302102566],[-0.02334270067513,-0.069333381950855,-0.060714665800333]],[[0.061876878142357,-0.10848372429609,-0.096700727939606],[0.061799537390471,0.10926349461079,-0.0079222936183214],[0.20504604279995,0.086789190769196,0.032609783113003]],[[0.014972516335547,0.0045259092003107,-0.033562924712896],[0.013458961620927,-0.082360796630383,-0.028441030532122],[-0.033031854778528,0.014275161549449,0.027230670675635]],[[-0.029528608545661,-0.010286240838468,0.012582347728312],[0.18418538570404,0.064690120518208,0.10969261825085],[0.067324958741665,0.0025013759732246,-0.13514024019241]],[[-0.095037423074245,-0.092399209737778,-0.23772631585598],[0.09058989584446,-0.059332422912121,0.11869772523642],[0.021483020856977,-0.058141779154539,-0.078869313001633]],[[-0.055461425334215,0.045579314231873,0.055511947721243],[-0.094752714037895,-0.028910676017404,0.068617090582848],[0.078376777470112,0.098637744784355,-0.16853505373001]],[[0.055685292929411,0.00075829226989299,-0.074797593057156],[0.054958697408438,0.029853533953428,-0.290781468153],[-0.065911889076233,-0.065593630075455,-0.14954121410847]],[[-0.048055186867714,0.027450921013951,0.040634844452143],[-0.0031857066787779,-0.089004196226597,-0.0151885766536],[0.0028924816288054,-0.058756142854691,0.10222544521093]],[[0.18968264758587,0.025290736928582,0.094939403235912],[-0.058632135391235,-0.04901921376586,-0.087194755673409],[0.083450242877007,-0.015852713957429,0.062211524695158]],[[-0.022458480671048,0.022615822032094,0.18946214020252],[-0.053455516695976,-0.061651635915041,-0.063260704278946],[0.13605213165283,0.047781366854906,0.1005762591958]],[[0.035452201962471,-0.058682058006525,-0.083101727068424],[0.088974565267563,0.1159745156765,0.016152640804648],[-0.1203516125679,-0.16592505574226,-0.21217408776283]],[[-0.076749093830585,-0.015393381007016,-0.088567078113556],[0.064245231449604,0.029299546033144,-0.25747200846672],[0.09174320101738,-0.027958227321506,0.15922649204731]],[[0.0091812033206224,0.039340265095234,-0.028044609352946],[0.014072716236115,0.033881444483995,0.04106616973877],[0.057899791747332,0.074640698730946,0.18754389882088]],[[0.021489245817065,-0.0026809545233846,0.074932686984539],[0.097998358309269,-0.012177244760096,0.058413207530975],[-0.088757686316967,-0.083792045712471,0.0051078866235912]],[[0.053699225187302,-0.061312537640333,-0.13579541444778],[0.043301600962877,0.012589800171554,-0.095330692827702],[-0.037334699183702,-0.095096483826637,-0.069982439279556]],[[-0.098315097391605,-0.13376232981682,-0.1311276704073],[-0.017295975238085,-0.052255768328905,0.026430808007717],[0.00040994482696988,-0.076743692159653,0.090914785861969]],[[-0.039832297712564,-0.11505508422852,0.050072535872459],[-0.007201611995697,0.082983940839767,0.064878456294537],[-0.12768015265465,0.10561969876289,-0.014158794656396]],[[-0.034412704408169,0.1475814729929,0.014953300356865],[0.060335334390402,-0.14544020593166,-0.023538045585155],[-0.070925831794739,-0.026822842657566,-0.056189619004726]],[[0.061958149075508,-0.091710180044174,-0.09579761326313],[-0.10549049079418,-0.058635696768761,0.029962437227368],[0.11447320133448,0.092818818986416,-0.15645430982113]],[[-0.14143827557564,-0.011336912401021,0.090084612369537],[-0.081977836787701,0.074603922665119,-0.036430928856134],[0.12226143479347,-0.024634204804897,-0.18165965378284]],[[-0.15273526310921,-0.19314986467361,-0.11855532228947],[0.056439407169819,-0.00093376857694238,0.13715255260468],[0.038552030920982,-0.12958008050919,-0.13897819817066]],[[-0.016651164740324,-0.0280452799052,-0.064363166689873],[0.002063870197162,-0.16840979456902,0.0085912272334099],[-0.055953923612833,0.06464659422636,-0.0057068592868745]],[[-0.10338903218508,-0.019417729228735,-0.020262166857719],[-0.029209926724434,0.085407190024853,0.090347126126289],[-0.03179344907403,-0.091240800917149,-0.17279590666294]],[[0.041679240763187,0.10854133963585,0.066045865416527],[-0.13147874176502,-0.075110174715519,-0.053604487329721],[0.0022124827373773,-0.015211615711451,-0.0025341643486172]],[[0.011729697696865,-0.041174307465553,-0.23743286728859],[-0.047291468828917,-0.032567989081144,0.030073467642069],[-0.11500456929207,-0.050471521914005,-0.099673457443714]],[[-0.015092334710062,0.060984432697296,0.20704428851604],[0.017322435975075,0.087824858725071,0.015924753621221],[-0.076315581798553,-0.15221562981606,-0.11360089480877]],[[-0.028868101537228,-0.16155390441418,-0.092818334698677],[0.048852507025003,-0.01824826002121,-0.016774287447333],[-0.071427762508392,-0.058828145265579,-0.24174603819847]],[[-0.13455800712109,-0.06016331166029,-0.18997824192047],[-0.14280061423779,-0.07784379273653,-0.054208297282457],[-0.038160815834999,0.118497595191,0.064183503389359]],[[-0.038338210433722,0.070602297782898,0.031899385154247],[-0.096390657126904,0.050730165094137,-0.058476578444242],[-0.070100829005241,-0.16101762652397,0.10470758378506]],[[-0.045169282704592,0.065147861838341,-0.040016107261181],[0.069384850561619,-0.092482902109623,0.06817390024662],[-0.020619936287403,0.099722564220428,-0.047009948641062]],[[0.03097540140152,-0.054911497980356,-0.022389778867364],[0.021045118570328,-0.051356133073568,-0.051459338515997],[-0.14997531473637,-0.12230273336172,-0.0020610634237528]],[[0.011176716536283,-0.081497825682163,-0.030304906889796],[-0.067195534706116,-0.064142853021622,-0.15568141639233],[-0.12078961730003,-0.032585144042969,-0.19153559207916]],[[0.094133608043194,0.07732205837965,0.1453804820776],[-0.031967923045158,0.036801043897867,0.026961078867316],[0.047018438577652,0.097234308719635,0.031301856040955]],[[0.19487449526787,0.11089544743299,-0.03151585534215],[-0.14014026522636,-0.098445169627666,0.040017060935497],[-0.020641664043069,0.059610564261675,-0.052520547062159]],[[0.058520272374153,0.0091097233816981,0.012461705133319],[-0.018227156251669,0.0071604489348829,0.11128541827202],[-0.094696424901485,-0.096260137856007,-0.25797361135483]],[[-0.05520898476243,-0.048896662890911,0.075042620301247],[0.068468376994133,-0.023204954341054,0.098971515893936],[0.0941102206707,-0.065418027341366,0.048156544566154]],[[0.19161128997803,0.054867174476385,-0.032702174037695],[-0.051855232566595,0.071189068257809,0.046475272625685],[-0.032328993082047,-0.05039332434535,-0.028916843235493]],[[-0.19079333543777,-0.24541476368904,-0.10489662736654],[0.003369334153831,-0.043038081377745,-0.10582530498505],[-0.0053728115744889,0.042876441031694,0.063422635197639]],[[0.069393008947372,0.0020462132524699,-0.093539871275425],[-0.073651731014252,0.03957162052393,-0.056322392076254],[-0.13509640097618,-0.097920812666416,-0.019266167655587]],[[-0.062780745327473,-0.11547822505236,0.014707838185132],[0.011921528726816,0.080120384693146,0.055077467113733],[0.051163580268621,-0.029458228498697,0.0023744448553771]],[[0.13557831943035,-0.087907053530216,-0.10025524348021],[0.018176795914769,0.045172799378633,-0.10570850223303],[-0.1605211943388,-0.078822836279869,0.0072752181440592]]],[[[0.036193989217281,0.03578782081604,-0.020855791866779],[-0.089215561747551,0.025945277884603,0.053436644375324],[-0.0082665095105767,0.068165570497513,-0.06939260661602]],[[-0.083570510149002,-0.012398582883179,-0.071284927427769],[-0.11421965807676,-0.10278522223234,0.045109234750271],[0.006791447289288,0.020630728453398,-0.12399726361036]],[[-0.050720930099487,0.022211372852325,0.12713055312634],[-0.15869610011578,-0.1122864112258,0.0052660796791315],[-0.067879691720009,-0.1267569065094,0.008981972001493]],[[0.02575171366334,-0.010828096419573,0.015831522643566],[0.0055919913575053,0.067140497267246,0.0077243368141353],[-0.015877092257142,-0.070402331650257,0.017555452883244]],[[0.10379776358604,0.11140903830528,0.078593567013741],[-0.00662114424631,-0.048098042607307,-0.12372425198555],[-0.1272524446249,-0.040816392749548,-0.051146704703569]],[[0.13511691987514,-0.0045560006983578,0.02343357168138],[-0.10800245404243,-0.1374297440052,-0.032156467437744],[-0.1842855066061,0.06204916536808,0.022297475486994]],[[-0.037967137992382,-0.008431457914412,0.13273955881596],[0.069014981389046,0.08700842410326,-0.076817601919174],[-0.053347408771515,-0.06992445141077,-0.097296364605427]],[[-0.10706430673599,-0.16380408406258,-0.10923428833485],[-0.063144944608212,0.11262732744217,-0.11113011091948],[-0.040499854832888,0.13444824516773,0.27547258138657]],[[0.16619038581848,0.071098007261753,-0.04399836063385],[0.043614968657494,-0.019192630425096,0.046739116311073],[-0.016503851860762,-0.068909533321857,-0.13078713417053]],[[0.009271695278585,0.077793046832085,0.073572672903538],[0.14270044863224,-0.097432985901833,-0.21854424476624],[0.023044429719448,-0.021958813071251,-0.15378265082836]],[[0.11431154608727,-0.10078976303339,0.01295832823962],[-0.12764213979244,-0.008432999253273,-0.101711563766],[-0.021039079874754,0.010296658612788,-0.064658232033253]],[[0.058475580066442,-0.085940130054951,0.062135983258486],[0.021076515316963,-0.005892829503864,-0.073789931833744],[-0.015197787433863,0.074174836277962,-0.029179129749537]],[[-0.085416749119759,-0.13560916483402,-0.041739489883184],[0.04345466569066,-0.070122860372066,-0.066475428640842],[-0.019240634515882,-0.058594033122063,0.0018030304927379]],[[-0.14381819963455,0.1427509188652,0.014346295967698],[0.0028962118085474,-0.060021303594112,0.053993325680494],[0.022605339065194,0.046938247978687,0.037860512733459]],[[-0.068444237112999,0.041025724261999,-0.061291851103306],[0.010316445492208,0.025838097557425,0.00046786334132776],[-0.088761150836945,0.091276794672012,0.036018289625645]],[[0.071183383464813,0.019641246646643,0.15337519347668],[0.092671789228916,0.039813235402107,-0.036720082163811],[0.0093114925548434,0.10846937447786,0.19574473798275]],[[-0.050425689667463,-0.16200739145279,-0.15407666563988],[0.067729540169239,-0.034155800938606,-0.15518307685852],[0.080944247543812,-0.060489490628242,0.031356256455183]],[[-0.034472931176424,0.08468371629715,0.027530279010534],[0.0042733452282846,-0.046838987618685,-0.041911143809557],[-0.13152095675468,-0.0095869610086083,-0.062928073108196]],[[0.0056434385478497,-0.014048838056624,-0.11831830441952],[0.052024021744728,-0.072889238595963,0.057776536792517],[0.10500574856997,0.0057001626119018,-0.076493322849274]],[[-0.050739891827106,-0.093919277191162,-0.028469769284129],[-0.029873223975301,-0.0046702180989087,0.077093563973904],[-0.059213735163212,0.035442885011435,-0.02749097160995]],[[0.21235385537148,0.0047845914959908,-0.05781576409936],[-0.060591332614422,0.071123719215393,0.081131920218468],[-0.17055656015873,-0.087656535208225,0.032948039472103]],[[-0.0082900524139404,-0.00052682613022625,-0.027782632037997],[-0.037378195673227,-0.022471403703094,-0.011205658316612],[-0.0037085674703121,0.030002277344465,-0.005707903765142]],[[0.031116846948862,0.0094423023983836,0.071556285023689],[-0.15640044212341,-0.026669459417462,-0.014601827599108],[0.10209941118956,-0.022366661578417,-0.0076472298242152]],[[0.21780548989773,0.034096203744411,-0.012091791257262],[0.065113440155983,0.069719545543194,0.088378243148327],[0.028564481064677,-0.056441556662321,0.082350239157677]],[[0.11515232920647,0.016824025660753,-0.0020345374941826],[0.082369163632393,0.086902186274529,-0.022638622671366],[0.13665409386158,0.13308027386665,0.018599305301905]],[[-0.015412826091051,-0.040864385664463,0.016919979825616],[-0.05684307217598,-0.029487244784832,-0.027001207694411],[0.025245495140553,0.030392445623875,0.057047050446272]],[[0.02078372426331,-0.032279446721077,-0.060404129326344],[0.17728240787983,0.13120771944523,0.031148603186011],[-0.14047315716743,-0.033273920416832,0.081878922879696]],[[0.062281295657158,-0.16465072333813,0.01827003993094],[0.045018695294857,-0.036031000316143,-0.20692072808743],[0.019238507375121,0.044817872345448,0.079899445176125]],[[-0.093332208693027,-0.020371589809656,-0.15454711019993],[0.12404027581215,-0.032450545579195,-0.0016372903482988],[0.07869865000248,-0.041591543704271,-0.055696189403534]],[[-0.039654333144426,-0.01060551777482,0.056134466081858],[0.056725852191448,0.031572744250298,-0.044767610728741],[0.10008235275745,-0.013242062181234,-6.1463342717616e-06]],[[0.016460921615362,0.047378867864609,0.062895178794861],[-0.11279059201479,-0.078681834042072,0.13230009377003],[-0.043008115142584,-0.027236495167017,0.059733796864748]],[[0.019118776544929,0.024918707087636,-0.045620400458574],[-0.11511664092541,-0.066179923713207,-0.024817703291774],[0.015956280753016,-0.0025586595293134,0.012444108724594]],[[-0.016775665804744,-0.014438993297517,-0.042948346585035],[0.21405754983425,0.039212547242641,-0.049094785004854],[-0.074347473680973,-0.0091373976320028,-0.13931272923946]],[[-0.0072668408975005,-0.013514745980501,-0.080187894403934],[0.054090764373541,0.024875497445464,0.038425236940384],[0.01986033283174,-0.13122217357159,-0.0035429222043604]],[[0.10602568089962,-0.0026991264894605,-0.1069725677371],[0.09776970744133,0.085300453007221,-0.091942869126797],[-0.19497282803059,-0.14335046708584,-0.035228572785854]],[[-0.033860243856907,0.098019927740097,0.12745320796967],[-0.041829660534859,-0.11006291210651,0.1126319244504],[0.019226001575589,0.10889036208391,-0.0067553441040218]],[[0.074191085994244,0.099370144307613,0.066280417144299],[-0.019745040684938,-0.052018728107214,-0.024515161290765],[-0.0086723752319813,0.24371284246445,0.047089822590351]],[[-0.051425706595182,-0.069136768579483,-0.077210821211338],[-0.042862989008427,0.012614014558494,-0.034325066953897],[-0.14609569311142,-0.071001455187798,-0.041147954761982]],[[-0.036089729517698,0.02524920925498,0.099165596067905],[-0.062568813562393,-0.080488212406635,-0.17040310800076],[-0.051418203860521,0.00093153602210805,-0.17646765708923]],[[0.024025313556194,0.075428552925587,-0.051511842757463],[0.10349979251623,-0.090441815555096,-0.076564088463783],[0.055754259228706,0.085006967186928,0.022023810073733]],[[-0.10779847949743,0.082916863262653,0.090690545737743],[-0.16554591059685,-0.18348367512226,0.03273793309927],[-0.085266627371311,-0.18752598762512,-0.065894819796085]],[[0.048739925026894,-0.00028672293410636,0.035710904747248],[0.10420770943165,0.0055128470994532,-0.06490683555603],[0.052656646817923,0.092106774449348,0.10120835155249]],[[0.026453891769052,-0.061590693891048,-0.07813860476017],[-0.15632463991642,0.019001757726073,-0.037027154117823],[-0.10869415849447,-0.10814854502678,-0.029619514942169]],[[-0.034774497151375,0.1630345582962,0.19243682920933],[-0.047346845269203,0.047513976693153,-0.02792545966804],[-0.082779355347157,-0.16369450092316,-0.057897664606571]],[[-0.008217447437346,-0.10582941025496,0.10987167060375],[-0.013946268707514,0.028273487463593,-0.041463322937489],[0.078344464302063,0.06005610153079,0.03867631405592]],[[-0.11015563458204,0.035882066935301,0.057224445044994],[-0.063642792403698,-0.12770144641399,-0.022373706102371],[-0.1709851026535,-0.040783792734146,0.11515308171511]],[[-0.23331283032894,-0.056695893406868,0.13794845342636],[-0.043319784104824,-0.065932013094425,-0.11572276800871],[0.11045365780592,-0.042197871953249,-0.099669940769672]],[[-0.062250059098005,0.1124961450696,-0.10506171733141],[-0.016249207779765,-0.048390794545412,-0.020965976640582],[-0.0097373612225056,0.085522167384624,0.052347507327795]],[[-0.024187304079533,-0.010226594284177,0.033408675342798],[0.041162192821503,-0.02774247713387,0.042207881808281],[-0.089805595576763,-0.11263874918222,0.1275690048933]],[[0.090579234063625,0.09683271497488,-0.11976561695337],[-0.045398823916912,-0.090728886425495,-0.032288044691086],[-0.075470753014088,-0.054767437279224,-0.075149178504944]],[[-0.06941644102335,-0.071169838309288,-0.12366076558828],[-0.057513933628798,-0.032457381486893,-0.012514119036496],[-0.082108356058598,-0.36600762605667,-0.03398086130619]],[[-0.078321874141693,0.014724262058735,-0.14353831112385],[0.14492093026638,-0.16514591872692,-0.070626802742481],[-0.11090280115604,-0.089469507336617,0.12765949964523]],[[0.072094827890396,-0.016951093450189,0.0279321372509],[0.032274302095175,-0.021328710019588,0.016467796638608],[0.081639461219311,0.044463369995356,0.010376608930528]],[[-0.13946270942688,-2.3388658519252e-05,0.087144173681736],[0.043308664113283,-0.080862633883953,-0.10706110298634],[-0.064864076673985,0.038786306977272,0.070873200893402]],[[-0.090642541646957,-0.014036301523447,0.067838050425053],[0.063650123775005,-0.14064203202724,-0.12994748353958],[0.068734407424927,-0.018178256228566,-0.0067062852904201]],[[0.024727245792747,0.0616185516119,0.25498434901237],[-0.071964271366596,-0.14305827021599,-0.13247209787369],[0.074288703501225,-0.00031173179741018,-0.031161069869995]],[[-0.084714666008949,0.018687892705202,-0.041126761585474],[0.067410849034786,-0.038144618272781,-0.032454781234264],[-0.023651648312807,0.074426986277103,0.057515926659107]],[[-0.12908257544041,-0.084701105952263,-0.060762997716665],[-0.038277547806501,-0.071756832301617,-0.076902955770493],[-0.035456918179989,-0.038698472082615,-0.07913139462471]],[[0.039125993847847,-0.036683473736048,0.0079564116895199],[-0.03413137793541,-0.00095857941778377,0.095518656075001],[0.016471384093165,0.10182319581509,0.075806602835655]],[[0.069985933601856,-0.073344640433788,-0.26059508323669],[-0.031885895878077,0.07053305208683,0.048916660249233],[0.033016793429852,0.033190127462149,-0.09710118919611]],[[-0.029131054878235,0.10656721889973,0.053635653108358],[-0.12341126054525,-0.019684914499521,0.01498700119555],[-0.13203713297844,-0.15101732313633,-0.11552487313747]],[[0.11981397867203,0.0081599690020084,-0.10840681940317],[-0.053110878914595,0.024070058017969,0.18464685976505],[-0.011791215278208,-0.14471861720085,0.029462652280927]],[[0.068875938653946,-0.04379491508007,0.026857390999794],[0.037026848644018,-0.023928934708238,0.0047529549337924],[-0.076161742210388,-0.035539694130421,0.22867353260517]],[[0.037496887147427,-0.057172294706106,0.039338391274214],[0.078483641147614,0.091242410242558,-0.076036706566811],[-0.21267119050026,-0.064251631498337,0.025894746184349]]],[[[-0.0965890660882,0.074607163667679,-0.25079247355461],[-0.09327107667923,0.069451116025448,-0.026444792747498],[0.083663813769817,0.074405536055565,0.015563679859042]],[[-0.034375306218863,-0.058711025863886,-0.23881506919861],[-0.044719733297825,-0.052741762250662,-0.11653602868319],[0.07688570022583,-0.069726191461086,-0.027491167187691]],[[-0.17897564172745,-0.22800730168819,0.060101434588432],[-0.10647767782211,-0.22648751735687,-0.054622281342745],[0.047070734202862,-0.14980116486549,0.070997096598148]],[[-0.41748249530792,0.11255722492933,-0.024762002751231],[-0.19347439706326,0.030292401090264,-0.035146594047546],[-0.10974960029125,0.08187098801136,-0.082620643079281]],[[0.041878636926413,-0.11246153712273,-0.066721491515636],[-0.013232164084911,-0.11912393569946,-0.12929271161556],[0.040926575660706,-0.12969435751438,-0.22540281713009]],[[-0.061923023313284,0.089841268956661,-0.053000416606665],[-0.17261452972889,-0.033562269061804,0.062507718801498],[-0.095208801329136,0.042956288903952,0.013685151003301]],[[0.021481050178409,-0.058992125093937,-0.12607124447823],[-0.05273474380374,-0.00065137236379087,-0.096476435661316],[-0.042043879628181,-0.099643543362617,-0.034148268401623]],[[0.0075892154127359,-0.049763355404139,0.1040972173214],[-0.053246937692165,0.036472197622061,0.065160326659679],[-0.058864127844572,-0.028731219470501,0.072269968688488]],[[-0.013146505691111,-0.0031870459206402,0.10641399770975],[-0.01466516032815,-0.050267197191715,0.099381744861603],[-0.12381597608328,0.055388774722815,0.099917210638523]],[[-0.13980276882648,-0.09304254502058,0.12436919659376],[-0.064797930419445,-0.10660453140736,-0.0091995168477297],[-0.10502319782972,-0.027734605595469,-0.081175118684769]],[[0.0060542467981577,-0.016901699826121,-0.41693291068077],[-0.042143505066633,-0.05290637537837,-0.083085253834724],[0.09722263365984,0.079487174749374,0.28352203965187]],[[0.16567893326283,0.055996231734753,-0.26911169290543],[0.03433496132493,-0.10158937424421,-0.07792991399765],[-0.098138481378555,-0.11267294734716,0.051983367651701]],[[-0.062756136059761,-0.032750908285379,-0.086394891142845],[0.019482119008899,0.054265528917313,-0.032203789800406],[-0.032595854252577,0.010441086255014,-0.033187497407198]],[[-0.0028765911702067,0.011008405126631,0.038394659757614],[0.039165023714304,-0.0065225814469159,0.035581242293119],[-0.1101803407073,0.021536191925406,0.010549115017056]],[[-0.047817468643188,0.015268408693373,-0.10721535980701],[0.0098040038719773,-0.01857628673315,-0.17712089419365],[-0.051433254033327,-0.10680448263884,-0.18184950947762]],[[0.061711248010397,-0.11331613361835,-0.020602965727448],[-0.089660309255123,-0.10867709666491,0.14311355352402],[-0.12930709123611,-0.11719261109829,0.086422547698021]],[[-0.0044057671912014,-0.059708908200264,0.0099946698173881],[0.068499617278576,-0.041057147085667,-0.080530233681202],[-0.019296105951071,-0.11523836106062,-0.11226590722799]],[[-0.040936250239611,0.11176607757807,-0.17436867952347],[-0.050676599144936,0.15205132961273,-0.15440018475056],[0.083734378218651,-0.013609677553177,-0.01974437944591]],[[0.02612191811204,-0.072028756141663,-0.00501748919487],[-0.15095257759094,-0.084838517010212,-0.11569267511368],[-0.29153463244438,-0.050786461681128,-0.042090576142073]],[[-0.056544717401266,-0.069985575973988,-0.070084191858768],[-0.05263239517808,-0.10521625727415,-0.029296025633812],[-0.1698172390461,-0.23528204858303,-0.06786122918129]],[[0.072289653122425,0.02928889170289,-0.022259540855885],[0.17781308293343,-0.023064494132996,-0.057180650532246],[-0.030425362288952,0.11647816747427,0.047983404248953]],[[-0.018267890438437,0.023391507565975,-0.050633601844311],[-0.028986498713493,-0.14714430272579,-0.049223940819502],[0.064781531691551,0.034979972988367,-0.03861815482378]],[[-0.093687638640404,0.056877233088017,-0.030709411948919],[-0.15804615616798,0.015678260475397,-0.021395526826382],[-0.15610009431839,0.082169331610203,-0.02203063480556]],[[0.020697398111224,0.26472818851471,-0.10229318588972],[0.17062644660473,0.12181513756514,-0.076586782932281],[0.13823798298836,0.072035066783428,-0.079297952353954]],[[0.064464047551155,-0.040805660188198,0.062140796333551],[0.014780103228986,-0.032770089805126,0.047071184962988],[-0.03303599730134,0.10623879730701,0.03782669082284]],[[0.0021467602346092,0.044251039624214,-0.041919894516468],[-0.059177696704865,-0.029703460633755,-0.015504724346101],[-0.070108614861965,0.060308527201414,0.050123274326324]],[[-0.051371414214373,0.043956022709608,-0.013179081492126],[-0.078413583338261,-0.015387432649732,-0.1070818156004],[0.022055078297853,-0.040553167462349,0.11349850147963]],[[-0.098825141787529,-0.01424075756222,-0.095405265688896],[-0.095112793147564,-0.051174007356167,-0.10740731656551],[-0.072473250329494,-0.14094740152359,-0.040692538022995]],[[-0.12562343478203,-0.058009557425976,-0.20824682712555],[-0.027701707556844,0.0080862194299698,0.014348403550684],[0.062854453921318,-0.16382823884487,-0.074394188821316]],[[0.0085248807445168,-0.16045396029949,-0.18444150686264],[0.013087750412524,-0.086583115160465,-0.046446416527033],[-0.028978211805224,-0.074392698705196,-0.065314814448357]],[[0.13691288232803,-0.068273909389973,-0.053048383444548],[0.0058188773691654,0.071734800934792,-0.043268635869026],[-0.014891694299877,0.077430918812752,-0.0017032374162227]],[[0.0705880895257,-0.02318112552166,-0.04084612429142],[0.020555272698402,-0.0030599739402533,-0.050847645848989],[0.27172461152077,0.019789734855294,-0.016318041831255]],[[0.10537817329168,-0.067348629236221,-0.06412748247385],[0.093716666102409,-0.1649704426527,0.057948857545853],[0.18248838186264,-0.038494940847158,0.077724754810333]],[[0.08669251948595,0.0091147720813751,-0.04067450761795],[-0.030632423236966,-0.1750795096159,0.012853398919106],[-0.081355772912502,-0.10770477354527,-0.033733777701855]],[[0.05264649912715,-0.070162869989872,0.011844404041767],[0.0031930687837303,-0.084499768912792,0.066503994166851],[0.015852687880397,-0.15400892496109,0.14984355866909]],[[-0.0048134298995137,0.095548890531063,0.03494593501091],[-0.02522686123848,0.058047007769346,0.085590593516827],[-0.045649953186512,-0.05154075101018,0.16352505981922]],[[-0.11352045089006,0.083347879350185,0.048680938780308],[0.071006186306477,0.12713797390461,0.048198323696852],[0.24536521732807,0.15395221114159,0.0069476533681154]],[[0.071528911590576,0.094332113862038,-0.038780938833952],[-0.039399661123753,0.014872135594487,-0.20434917509556],[0.018399612978101,-0.086136072874069,-0.23733213543892]],[[-0.0038106134161353,-0.026829773560166,0.064866714179516],[-0.095758154988289,0.046606183052063,0.033817909657955],[-0.056080613285303,0.01586427539587,0.15046308934689]],[[0.09515692293644,-0.081862203776836,-0.001930090598762],[0.066102609038353,0.0094268461689353,-0.081979095935822],[0.11210857331753,-0.023705957457423,-0.11497455090284]],[[-0.03048942796886,-0.057558298110962,0.011247143149376],[-0.080844700336456,-0.20791505277157,-0.021026799455285],[0.10715252161026,-0.22819590568542,-0.012948517687619]],[[-0.19608181715012,-0.15210269391537,-0.17265041172504],[-0.0677370429039,-0.0060974527150393,-0.14785975217819],[-0.14958463609219,0.15769313275814,-0.01840502768755]],[[-0.025843339040875,-0.06401951611042,0.28591629862785],[0.076182626187801,-0.024444619193673,0.0080881556496024],[-0.079509496688843,-0.02227683365345,-0.11098759621382]],[[0.19110006093979,-0.16012778878212,0.030734669417143],[0.049622487276793,-0.14058990776539,-0.041483372449875],[-0.073659315705299,-0.13297773897648,0.093391232192516]],[[-0.10881381481886,-0.014923152513802,0.030796155333519],[-0.17003192007542,0.083541162312031,-0.072687432169914],[-0.098601415753365,0.18184538185596,0.070625551044941]],[[0.049954362213612,0.020640641450882,0.075528338551521],[-0.067652344703674,-0.041572511196136,0.1221217662096],[-0.0091046802699566,-0.21326711773872,-0.0069647976197302]],[[0.0028078856412321,0.041291322559118,-0.096315674483776],[-0.056408364325762,0.016531974077225,-0.08644487708807],[0.03856136277318,-0.046669669449329,-0.043818078935146]],[[0.0014407616108656,-0.18214184045792,-0.05854170396924],[0.029408030211926,-0.10691394656897,-0.004736106377095],[0.064388692378998,-0.0065460209734738,0.00095926295034587]],[[0.067522250115871,-0.063899524509907,-0.075901612639427],[0.0011036451905966,-0.032645709812641,0.014250855892897],[-0.1291012018919,-0.043449901044369,0.16553170979023]],[[0.19109192490578,-0.12860068678856,0.10667759925127],[0.092531360685825,-0.12091257423162,0.025237910449505],[0.006671232637018,-0.030936600640416,-0.083012022078037]],[[0.16938748955727,-0.14559286832809,-0.049596313387156],[0.044449955224991,-0.088605582714081,-0.014846235513687],[0.098185695707798,-0.070833452045918,0.095622196793556]],[[0.11709187924862,0.17861722409725,-0.12928830087185],[0.0050077335909009,-0.15278802812099,-0.10133717209101],[-0.035090293735266,0.068414464592934,-0.045759104192257]],[[-0.12791676819324,0.17098186910152,0.028030406683683],[-0.14753060042858,0.015271326526999,-0.023333679884672],[-0.23184041678905,0.24857717752457,-0.093826949596405]],[[-0.17757435142994,0.18032975494862,0.096019618213177],[-0.071216374635696,0.019598346203566,-0.097376756370068],[-0.10797534883022,-0.11171206831932,0.028046371415257]],[[-0.078553408384323,0.018695199862123,-0.14016801118851],[0.0056561785750091,0.060604099184275,-0.13366831839085],[-0.00095701997634023,0.0076008383184671,0.097674764692783]],[[0.035977937281132,-0.022604120895267,0.03242564946413],[0.044489592313766,-0.069308124482632,-0.10229108482599],[-0.24424502253532,-0.034366060048342,-0.18900217115879]],[[-0.13851316273212,-0.11732398718596,0.13754293322563],[-0.054745763540268,-0.097452759742737,0.016263697296381],[0.014297680929303,0.006685615517199,-0.035073518753052]],[[-0.060357760637999,0.072204358875751,0.068992391228676],[-0.031064722687006,0.049798421561718,0.035120312124491],[-0.059339888393879,-0.021647350862622,-0.025366626679897]],[[0.085187360644341,0.092353135347366,0.035526357591152],[0.010242565535009,-0.0014955217484385,0.11160509288311],[0.084954060614109,-0.047801837325096,0.08051997423172]],[[-0.13206557929516,0.04508376121521,-0.058902233839035],[0.012197518721223,-0.060161430388689,0.060659926384687],[0.016304317861795,-0.052750568836927,-0.021248454228044]],[[-0.073371566832066,-0.13383173942566,-0.02208324149251],[0.046890445053577,-0.025530086830258,0.0092076137661934],[0.10337047278881,-0.028397623449564,0.079648219048977]],[[-0.023237390443683,-0.10513693094254,-0.14329306781292],[-0.039435997605324,-0.059034198522568,0.0036812457256019],[-0.039180152118206,-0.01659313775599,0.099242955446243]],[[-0.11434657126665,0.078810125589371,-0.029983028769493],[-0.056802026927471,0.0068439515307546,0.02531916461885],[0.056892842054367,-0.11165457963943,0.040067404508591]],[[0.13752646744251,-0.042019002139568,-0.0017848865827546],[-0.032402079552412,-0.15243856608868,-0.0090474486351013],[-0.021891867741942,-0.17941334843636,-0.32178929448128]]],[[[-0.061255734413862,-0.049634281545877,-0.097842693328857],[-0.042382333427668,0.0039850529283285,-0.058558080345392],[0.0010249805636704,0.05109142139554,-0.0058267479762435]],[[0.028525387868285,0.02532934397459,-0.086174644529819],[0.051346212625504,-0.042936280369759,0.0032166354358196],[-0.045182950794697,-0.071099184453487,0.011733269318938]],[[-0.019071457907557,-0.055636841803789,0.027965487912297],[0.0031592028681189,0.023638935759664,0.040641482919455],[-0.030669502913952,-0.084875732660294,-0.084731869399548]],[[-0.013773510232568,0.06796520203352,-0.085641704499722],[-0.007985052652657,-0.095880053937435,-0.088523395359516],[0.025723870843649,0.014597960747778,-0.061618845909834]],[[0.026484936475754,0.019966999068856,-0.13467422127724],[0.082447521388531,0.018072510138154,0.082768335938454],[0.075368113815784,-0.019374521449208,0.0704026222229]],[[-0.015241258777678,0.0089167393743992,0.073608048260212],[0.041832990944386,-0.022453119978309,-0.033758848905563],[-0.00033962613088079,0.10683190822601,0.0031227834988385]],[[0.023627620190382,-0.065424025058746,-0.024343119934201],[-0.072886250913143,-0.043998491019011,-0.12737601995468],[0.021389618515968,0.12479545921087,0.0270338319242]],[[-0.048351563513279,0.067123219370842,0.011464023031294],[-0.013892461545765,0.032633572816849,-0.10553951561451],[0.1301875859499,0.017290554940701,0.01467087585479]],[[0.046496361494064,0.016367089003325,-0.065640054643154],[-0.051681354641914,-0.037662208080292,-0.022616811096668],[-0.042468570172787,0.024987848475575,0.018553268164396]],[[-0.016690086573362,0.085510358214378,0.05666159465909],[-0.080468125641346,-0.11771877855062,0.019573854282498],[0.066641300916672,-0.077634371817112,0.10082091391087]],[[0.053706951439381,-0.03034602291882,-0.044564127922058],[0.055729314684868,-0.078167103230953,-0.083612091839314],[0.051253352314234,0.034988965839148,-0.010216815397143]],[[0.036741070449352,0.048118583858013,0.0532261505723],[-0.051691640168428,-0.052957359701395,0.045140575617552],[0.055627465248108,-0.054370876401663,0.11474859714508]],[[0.028447521850467,0.028781456872821,0.032576631754637],[0.012083837762475,0.0044502131640911,0.14072740077972],[0.072668097913265,0.013427679426968,4.9916543503059e-05]],[[-0.14543707668781,-0.010501072742045,0.091989919543266],[0.11238621175289,0.021310651674867,0.026413293555379],[-0.11273326724768,0.039573937654495,0.0964600071311]],[[0.0052772122435272,0.079496026039124,0.060323789715767],[0.038053084164858,0.052534956485033,-0.054066032171249],[-0.014565118588507,0.028993954882026,0.13106912374496]],[[0.079738214612007,0.098386496305466,-0.0015727279242128],[0.053396359086037,-0.063025616109371,-0.014312441460788],[0.020806943997741,0.0052796434611082,-0.10809818655252]],[[0.027690147981048,0.023752111941576,0.026759335771203],[-0.068480141460896,-0.050527106970549,0.045047003775835],[0.10121786594391,0.01501489430666,0.085461124777794]],[[0.034315180033445,-0.077296353876591,0.016090685501695],[-0.023893183097243,-0.053407032042742,-0.033159404993057],[0.08634702116251,-0.01034037861973,-0.076821357011795]],[[0.012665152549744,0.061536774039268,-0.046540550887585],[0.018382707610726,0.03389997407794,0.012153735384345],[0.057751018553972,-0.046725165098906,-0.025113686919212]],[[-0.065419241786003,-0.10551866143942,0.09044548869133],[-0.030303640291095,-0.018416970968246,0.10345815867186],[0.026636589318514,-0.023121105507016,-0.092578187584877]],[[0.012405529618263,-0.081796564161777,-0.00049671938177198],[-0.049179721623659,0.043671492487192,-0.044432744383812],[0.063608147203922,-0.023281747475266,-0.013972255401313]],[[-0.0061165574006736,0.050008088350296,-0.062200143933296],[-0.019683929160237,0.087538868188858,0.077599562704563],[0.0023523874115199,0.041713654994965,0.045215770602226]],[[-0.048793070018291,-0.080749034881592,-0.012119937688112],[-0.080557823181152,0.055650807917118,0.12729300558567],[-0.073778614401817,-0.028067380189896,-0.018447758629918]],[[0.082803152501583,0.023379120975733,0.027678020298481],[0.094379737973213,0.074022524058819,0.050379939377308],[-0.013082318939269,-0.0087360441684723,0.093193396925926]],[[0.028481801971793,0.0072973137721419,-0.049073863774538],[0.024935042485595,0.031615484505892,0.018851432949305],[0.024457795545459,0.071746774017811,-0.019750325009227]],[[-0.011323377490044,0.0034060995094478,-0.067463546991348],[0.013434786349535,0.1238077506423,0.10580315440893],[-0.068484626710415,0.0094997873529792,0.0224196203053]],[[0.0049046073108912,-0.034252393990755,-0.024251798167825],[0.035355005413294,0.12575489282608,0.073484264314175],[0.046194262802601,0.010634275153279,0.028191218152642]],[[-0.14173825085163,-0.038011752068996,0.040049977600574],[0.093187518417835,-0.040439125150442,-0.16174870729446],[-0.036538999527693,0.046979330480099,0.013545509427786]],[[-0.036603111773729,-0.067028999328613,-0.025697803124785],[-0.027247488498688,0.0077674528583884,0.030468543991446],[0.051078099757433,-0.027986254543066,0.023213218897581]],[[0.059048134833574,-0.043568830937147,0.015912130475044],[-0.019549338147044,-0.053755134344101,0.10304758697748],[0.014997508376837,-0.038814093917608,0.003583442652598]],[[-0.029068555682898,0.065038926899433,0.1405843347311],[-0.12447019666433,0.041670732200146,0.060575567185879],[-0.10128421336412,-0.037196546792984,0.041226468980312]],[[-0.033836804330349,-0.06981435418129,0.040902767330408],[0.012423045933247,0.15062570571899,0.15576216578484],[-0.046436965465546,-0.081840120255947,-0.11862390488386]],[[-0.0090602030977607,-0.15962472558022,0.021078934893012],[0.003017702139914,-0.14457945525646,-0.16162131726742],[0.11131182312965,-0.078939013183117,-0.095931991934776]],[[-0.030790315940976,-0.065007127821445,0.11915174871683],[0.10002794116735,-0.10475746542215,0.014124758541584],[-0.028483808040619,-0.062635123729706,0.097559936344624]],[[0.061253920197487,-0.03531052544713,0.035082679241896],[0.090274088084698,0.014140045270324,0.10130929201841],[0.0048947734758258,0.018146110698581,-0.13192015886307]],[[0.04498303681612,0.10160870850086,0.073887705802917],[0.076193399727345,0.027861939743161,-0.014146745204926],[0.07746871560812,0.024672362953424,0.0086462153121829]],[[-0.073440998792648,-0.053133498877287,0.041798487305641],[0.062630392611027,-0.026382690295577,0.044135414063931],[-0.030494535341859,0.07408045232296,-0.082415357232094]],[[0.033009257167578,0.06251834332943,0.043664667755365],[0.0095678716897964,0.054763417690992,-0.066078819334507],[0.033298876136541,-0.016697328537703,-0.059075996279716]],[[0.053239651024342,-0.018378170207143,0.019743530079722],[-0.055724266916513,0.048260349780321,-0.00031231960747391],[-0.11452529579401,-0.11709979921579,0.041515812277794]],[[0.065764166414738,0.018171608448029,0.056251276284456],[-0.061216522008181,-0.036385279148817,0.089517794549465],[0.017370779067278,-0.008918278850615,-0.059615664184093]],[[0.048814967274666,0.11097782850266,0.074710883200169],[0.10729666799307,-0.01308695692569,0.10592237859964],[0.10875762999058,0.10518737137318,0.057246617972851]],[[0.017599577084184,0.045918259769678,0.028654638677835],[0.0024146097712219,0.017362229526043,0.092865027487278],[0.034188542515039,-0.032604273408651,-0.0040932237170637]],[[-0.038870561867952,-0.010658848099411,-0.046859420835972],[0.1619176119566,-0.071024663746357,-0.072556264698505],[-0.0069848578423262,-0.019977817311883,-0.071969777345657]],[[-0.11687575280666,-0.021305486559868,0.026719875633717],[0.10500147938728,0.023706888779998,0.03051426820457],[-0.018414091318846,-0.022761350497603,0.086972631514072]],[[0.076448507606983,0.12600806355476,0.082862481474876],[-0.03820076584816,0.070846363902092,0.045328546315432],[-0.086516566574574,0.039764001965523,-0.10101549327374]],[[0.047050774097443,0.0062612597830594,-0.031878333538771],[-0.012975547462702,0.060278132557869,-0.089952737092972],[0.011050815694034,0.063557885587215,0.00082193623529747]],[[0.071889750659466,-0.11100562661886,-0.022017605602741],[0.018473520874977,0.091314591467381,0.042556654661894],[-0.071475073695183,-0.062013782560825,-0.031552139669657]],[[-0.097779899835587,-0.14614728093147,0.088970363140106],[0.062245652079582,0.041019454598427,-0.061285585165024],[-0.17675399780273,-0.050573509186506,0.0057712751440704]],[[-0.094025604426861,0.014028943143785,-0.04403480887413],[0.02399517595768,-0.036922745406628,-0.048520024865866],[-0.020561598241329,0.040227174758911,0.02879530377686]],[[-0.012293805368245,0.049709618091583,0.037584967911243],[0.022586515173316,0.059070102870464,0.012456723488867],[-0.11739429086447,-0.0047311196103692,-0.0035179052501917]],[[-0.014997326768935,0.058793067932129,0.036373060196638],[-0.10222551971674,0.0028946525417268,0.053693149238825],[-0.045491050928831,0.026421591639519,0.014441310428083]],[[-0.021208306774497,-0.0053153610788286,-0.02616798132658],[-0.11922925710678,-0.12319947034121,-0.10735364258289],[0.0028927198145539,-0.088641837239265,-0.13022644817829]],[[-0.039939556270838,0.05645664036274,-0.0007642432465218],[-0.10120237618685,-0.1036432236433,-0.04834408685565],[0.077841810882092,0.019379185512662,0.022721843793988]],[[0.034014645963907,0.018323302268982,-0.019236411899328],[-0.043957281857729,-0.0019892659038305,0.046624328941107],[-0.048653122037649,-0.11681807786226,-0.084845796227455]],[[0.022759264335036,-0.032139755785465,-0.047572888433933],[0.034260537475348,-0.058166153728962,-0.051947597414255],[0.0080367298796773,0.061085656285286,0.050783269107342]],[[0.027035497128963,0.031587768346071,0.049778591841459],[0.057448964565992,-0.035518247634172,-0.0096494005993009],[0.024476557970047,0.14055836200714,-0.026239970698953]],[[-0.022648196667433,0.046122595667839,0.05516155436635],[0.015172938816249,-0.049363493919373,0.033057056367397],[0.0079889083281159,-0.010258437134326,-0.0025780261494219]],[[-0.025103027001023,-0.0065302127040923,0.058794196695089],[0.006651861127466,0.052223235368729,0.056969113647938],[0.073216490447521,0.0017212411621585,-0.016400368884206]],[[-0.038417395204306,-0.077368699014187,-0.12927755713463],[-0.10014967620373,-0.072470776736736,-0.063242979347706],[-0.22054578363895,-0.11452924460173,-0.051915757358074]],[[-0.02581712603569,0.030352169647813,0.060303036123514],[-0.068865858018398,-0.0045693782158196,-0.032675698399544],[-0.037991244345903,-0.037602078169584,0.01008018758148]],[[0.03660211712122,-0.058204744011164,0.060788817703724],[-0.029057597741485,-0.021197378635406,-0.018815828487277],[-0.061886955052614,0.057054530829191,-0.00046191294677556]],[[-0.024051867425442,0.0016102615045384,0.11331002414227],[-0.064248256385326,-0.0046568303368986,0.017300454899669],[-0.060211829841137,0.0089086340740323,-0.01194765791297]],[[-0.12127728015184,-0.1316731274128,-0.1271201223135],[0.050334636121988,0.033194907009602,0.11644516140223],[-0.10039784014225,-0.045380413532257,-0.089619696140289]],[[0.0046089901588857,-0.014177227392793,-0.10199543833733],[0.02144511975348,0.029658140614629,0.0065459990873933],[0.085887782275677,0.066336251795292,-0.036609001457691]]],[[[0.025666400790215,-0.08633965998888,0.11148438602686],[0.00099021522328258,-0.024484310299158,0.0051559321582317],[-0.029630079865456,-0.029297094792128,0.11903596669436]],[[-0.12044322490692,-0.051977459341288,-0.050519928336143],[0.016010001301765,0.0036464279983193,-0.011149923317134],[0.023054776713252,0.0066678659059107,-0.11725506186485]],[[0.036977034062147,0.0020666045602411,-0.17173513770103],[-0.021030195057392,-0.0053845481015742,-0.026997046545148],[-0.0549107901752,-0.062627501785755,0.00086435640696436]],[[-0.10336917638779,0.011096489615738,-0.034656211733818],[-0.04988282546401,0.045321632176638,0.049279291182756],[-0.044751588255167,0.084100730717182,-0.07189580053091]],[[-0.14587058126926,0.0048777032643557,0.037583075463772],[-0.0048849899321795,0.031371846795082,-0.03979580104351],[-0.023661982268095,0.053007882088423,-0.046451151371002]],[[-0.036988746374846,0.082775637507439,-0.18920908868313],[-0.0011253168340772,0.073458641767502,0.011385885067284],[-0.056910663843155,-0.041746400296688,0.04655084758997]],[[-0.0066200783476233,0.005789658986032,0.053273972123861],[0.030974494293332,0.060219470411539,-0.0015100305899978],[0.1084823384881,0.15021266043186,-0.15535502135754]],[[0.020878380164504,-0.02400628477335,0.046023350208998],[0.0050820163451135,-0.050749618560076,0.0070272409357131],[0.27063971757889,-0.11153221875429,0.20137210190296]],[[-0.036183644086123,-0.0061358870007098,-0.064237356185913],[0.083437241613865,-0.0046424074098468,-0.025532070547342],[0.044550139456987,-0.13784709572792,0.15514548122883]],[[-0.060731209814548,-0.0060382750816643,0.041158333420753],[0.064873516559601,0.048547837883234,-0.11162093281746],[0.048089038580656,-0.034835074096918,0.064205557107925]],[[-0.032594259828329,-0.1097429767251,0.048507411032915],[0.13062040507793,-0.027446022257209,0.012839576229453],[-0.01140308752656,0.044465392827988,-0.097196377813816]],[[-0.061110220849514,-0.048950102180243,-0.15969988703728],[0.031338825821877,-0.057876914739609,-0.033660691231489],[0.093462504446507,-0.067635633051395,-0.053944855928421]],[[-0.04363164678216,-0.14376001060009,0.087609194219112],[-0.010489852167666,0.026792228221893,0.056186109781265],[0.22110670804977,-0.0076854196377099,-0.039855804294348]],[[-0.10344403237104,-0.076992973685265,0.10457099229097],[0.051346145570278,-0.053379524499178,-0.017796570435166],[0.15116229653358,0.069961979985237,0.046686325222254]],[[0.0042504514567554,-0.10524675995111,-0.016723161563277],[-0.074215538799763,0.011384921148419,-0.031799949705601],[-0.058706734329462,0.077146470546722,0.089684538543224]],[[0.029286948964,-0.058995027095079,0.024901486933231],[0.003446604590863,-0.085724405944347,0.011999696493149],[0.058479908853769,-0.053928378969431,-0.081951178610325]],[[-0.017516678199172,-0.03896301612258,0.0049471496604383],[0.039968799799681,0.026787435635924,0.020956892520189],[-0.10696467012167,0.13664591312408,0.18876241147518]],[[-0.055089615285397,-0.083289757370949,0.13059376180172],[0.0021750906016678,-0.026754088699818,0.040684964507818],[0.0036840287502855,0.064929537475109,-0.045416682958603]],[[-0.1072331815958,-0.022052835673094,-0.20921759307384],[-0.16080412268639,-0.0073346709832549,-0.068673759698868],[-0.31126308441162,-0.086087964475155,-0.015325943939388]],[[-0.066432915627956,0.021525874733925,-0.014344660565257],[-0.078389905393124,0.10010565817356,-0.092771150171757],[-0.051827233284712,0.049566078931093,0.0051028528250754]],[[0.054345056414604,-0.00079198408639058,0.0043350216001272],[0.016176605597138,0.035686925053596,0.1441196501255],[0.034594904631376,0.010576604865491,0.044362060725689]],[[-0.015632467344403,0.023793315514922,-0.083374582231045],[0.036185652017593,-0.026337886229157,-0.0089982384815812],[0.010679412633181,-0.040498968213797,0.0025919459294528]],[[-0.1078672632575,0.0761578977108,0.072085909545422],[-0.23680663108826,-0.10566653311253,0.010927646420896],[-0.044294066727161,-0.013526622205973,0.0030385851860046]],[[0.012790541164577,-0.03114845789969,-0.061398170888424],[0.14071597158909,-0.11479324102402,0.052645064890385],[0.17202690243721,0.11344520002604,0.12994711101055]],[[0.12465339899063,0.16239780187607,0.017504770308733],[-0.032175432890654,-0.059322606772184,0.14165323972702],[-0.091932371258736,-0.04964117705822,0.041971918195486]],[[-0.067647375166416,-0.025718787685037,0.011364376172423],[0.011083313263953,-0.035996347665787,0.033074237406254],[0.0046192542649806,0.090000316500664,-0.0015224417438731]],[[-0.10448861122131,0.064669258892536,-0.046261932700872],[-0.065117046236992,0.022478006780148,0.05661728978157],[-0.11098254472017,0.017788831144571,-0.025115996599197]],[[-0.043495830148458,0.042329721152782,0.11957418173552],[-0.07657253742218,-0.071187674999237,-0.10795016586781],[-0.059178557246923,0.092619054019451,-0.09279740601778]],[[-0.059959046542645,-0.093312688171864,0.13493674993515],[-0.0032651817891747,0.078669764101505,0.010383631102741],[0.13091149926186,0.071803793311119,-0.079192772507668]],[[-0.061228953301907,-0.068037442862988,0.061645440757275],[-0.024901013821363,-0.022987581789494,-0.051633138209581],[0.15335489809513,-0.024361049756408,-0.072048343718052]],[[0.11040221899748,0.066419623792171,0.072422809898853],[-0.060323759913445,-0.039636064320803,0.016051355749369],[0.06752172857523,-0.0015690647996962,-0.098704271018505]],[[-0.00095752824563533,-0.0060251001268625,0.010071453638375],[0.059521660208702,-0.02744653634727,-0.0019591676536947],[0.050980318337679,0.11348231881857,0.18976670503616]],[[0.062845893204212,0.0096835838630795,-0.016845820471644],[-0.053900960832834,0.037406008690596,-0.02435396052897],[-0.006861868314445,-0.071750342845917,-0.2104799747467]],[[0.013874375261366,0.074250519275665,-0.110535338521],[0.028975190594792,-0.043813373893499,-0.071138940751553],[-0.085848055779934,-0.093114048242569,0.019524246454239]],[[-0.026960723102093,-0.051255468279123,-0.043420694768429],[0.010324998758733,-0.039896510541439,-0.11487990617752],[-0.01764890179038,0.1222151517868,0.03064346127212]],[[0.010680532082915,0.05768895894289,0.00073644338408485],[-0.051814902573824,0.018843771889806,-0.021415019407868],[-0.020664393901825,-0.003188933013007,0.12116047739983]],[[-0.094863444566727,0.04189221560955,0.04904905334115],[-0.0036688337568194,0.14019300043583,0.037110161036253],[0.18234324455261,0.1370253264904,0.1590037047863]],[[-0.081149108707905,0.019780889153481,0.069245763123035],[0.0020984252914786,-0.055497124791145,0.10885170847178],[0.11274245381355,0.044624555855989,-0.16343192756176]],[[-0.1957460641861,-0.0012359786778688,-0.093043960630894],[-0.023320388048887,0.018907487392426,0.052625719457865],[-0.17067831754684,-0.15332210063934,0.085271283984184]],[[0.060208603739738,0.17806272208691,-0.019434586167336],[-0.10942313075066,0.094933621585369,0.032745212316513],[-0.10201286524534,0.019509008154273,-0.030814794823527]],[[-0.068926729261875,-0.0068485545925796,0.094535566866398],[-0.054196234792471,0.012988192029297,0.020011169835925],[-0.095145553350449,-0.12445205450058,-0.13420908153057]],[[0.032746952027082,0.020070025697351,0.077185727655888],[0.0077091935090721,0.049576725810766,-0.072736747562885],[-0.060660850256681,0.092062257230282,0.11935314536095]],[[-0.13888086378574,0.095577985048294,-0.050550270825624],[-0.13077741861343,0.090358518064022,-0.019955867901444],[-0.14266522228718,-0.014017885550857,-0.12832400202751]],[[-0.08659727871418,-0.039295796304941,-0.0082906493917108],[0.053792890161276,0.016697404906154,-0.11628881841898],[0.01830030605197,-0.041095279157162,0.17130117118359]],[[-0.01701819896698,-0.067487768828869,0.16741953790188],[0.040329672396183,-0.088635437190533,0.026483492925763],[-0.093338318169117,-0.082182638347149,-0.031849566847086]],[[-0.058133780956268,0.066601611673832,-0.088491179049015],[0.014594621956348,-0.038250617682934,-0.07320462167263],[0.083735607564449,0.0096497721970081,-0.043662063777447]],[[0.0061164060607553,-0.051875475794077,0.091658271849155],[0.039739698171616,-0.10213436931372,0.065713450312614],[0.1673074811697,-0.19082477688789,0.0084614912047982]],[[-0.094679951667786,0.10269251465797,-0.013228840194643],[0.035222455859184,-0.10964994877577,-0.0081922588869929],[0.051814399659634,-0.0041385679505765,0.096335597336292]],[[0.013732413761318,-0.017043324187398,-0.029480850324035],[0.043904654681683,-0.029127728193998,-0.12227281928062],[0.1064637824893,-0.007837476208806,0.027118830010295]],[[0.17869704961777,-0.0038331444375217,-0.084695443511009],[-0.024717284366488,-0.12200008332729,-0.034587260335684],[0.15129894018173,-0.025241767987609,-0.047429233789444]],[[0.077333711087704,0.015065321698785,-0.049699515104294],[0.016380408778787,-0.0072360951453447,0.019456520676613],[-0.00029503178666346,0.15241985023022,-0.14407795667648]],[[-0.065367169678211,0.013938842341304,-0.036405354738235],[-0.079097047448158,0.092745780944824,0.09566418081522],[-0.066975399851799,0.04165817797184,-0.018213184550405]],[[0.16213680803776,0.11063937097788,-0.040376130491495],[0.046767238527536,-0.018103277310729,0.0035419766791165],[-0.26739263534546,-0.075994089245796,0.10168951749802]],[[0.089387319982052,-0.079816162586212,0.034829154610634],[0.039486035704613,0.066357992589474,0.10452865064144],[0.17376391589642,-0.063982449471951,-0.017463548108935]],[[-0.01752769947052,-0.021134793758392,-0.016261478886008],[0.0591313354671,-0.054877903312445,-0.035763449966908],[-0.039955627173185,-0.1313132494688,0.02724134363234]],[[0.05245990306139,-0.10586062073708,0.045092418789864],[-0.058893956243992,0.10378659516573,-0.001680733053945],[-0.056889016181231,0.13404208421707,0.091204807162285]],[[-0.046594068408012,0.0016954991733655,-0.11228927969933],[-0.094820484519005,0.062314745038748,-0.11010313034058],[0.090775154531002,-0.062483564019203,0.075612358748913]],[[0.017115509137511,0.006422015838325,0.063871711492538],[-0.018420293927193,-0.019262485206127,-0.036332111805677],[-0.093350864946842,-0.15740159153938,0.032300263643265]],[[0.036150153726339,0.017316272482276,0.073260240256786],[0.037689160555601,0.033475808799267,0.12591122090816],[-0.002395890885964,-0.0047198482789099,0.073520742356777]],[[-0.066658027470112,0.04716993495822,0.096059687435627],[0.080847099423409,-0.035352416336536,0.16074167191982],[-0.10322053730488,-0.15392875671387,0.043386217206717]],[[-0.10756397247314,0.094670742750168,-0.033924549818039],[0.018924370408058,0.015553625300527,-0.03941984474659],[-0.10303963720798,-0.051829520612955,-0.038781888782978]],[[-0.13578800857067,0.031680561602116,-0.012105251662433],[-0.12300729751587,0.028596166521311,0.10086565464735],[-0.050815142691135,0.0032179292757064,0.11032424122095]],[[-0.13111588358879,0.10522805899382,0.070242658257484],[-0.034596033394337,-0.026726299896836,-0.013618689030409],[0.16560460627079,0.010421647690237,0.059843510389328]],[[0.11186684668064,-0.051979083567858,-0.05424015969038],[0.083379715681076,-0.17134629189968,0.0031664315611124],[-0.080608852207661,-0.10042922198772,-0.043958555907011]]],[[[0.048555914312601,-0.02192578278482,-0.060242645442486],[-0.090078338980675,0.0080558201298118,-0.022202476859093],[-0.0052768662571907,0.11762756109238,-0.015713304281235]],[[0.011950258165598,0.13221754133701,-0.057967979460955],[-0.14246867597103,0.016634184867144,-0.082415357232094],[-0.16900213062763,-0.0038030445575714,-0.14462815225124]],[[0.010702648200095,-0.059235829859972,-0.12675288319588],[-0.010360733605921,0.039870474487543,-0.012712168507278],[-0.027315426617861,-0.087934285402298,-0.064638070762157]],[[-0.055574744939804,0.024216078221798,0.029971366748214],[-0.030162429437041,-0.12424291670322,0.055183731019497],[-0.024779258295894,0.019262610003352,-0.035080634057522]],[[-0.056362003087997,-0.083401657640934,-0.0038152253255248],[0.015561029314995,0.0041107991710305,0.021140156313777],[-0.016126830130816,-0.033604603260756,-0.0030611755792052]],[[-0.0068755419924855,0.059554141014814,-0.024318102747202],[0.055484101176262,0.06023683026433,-0.024511745199561],[0.041688248515129,-0.10834950953722,0.078984424471855]],[[-0.095863148570061,-0.16679622232914,0.024203443899751],[-0.10622727125883,0.090477496385574,-0.07203746587038],[0.15880714356899,0.00011964222358074,0.017873384058475]],[[-0.058298666030169,0.069033585488796,0.057090409100056],[-0.12012504786253,0.11952577531338,-0.11886860430241],[0.012372631579638,-0.020942091941833,-0.01673817075789]],[[-0.031618230044842,-0.077488653361797,-0.016506751999259],[0.072294294834137,-0.063508525490761,0.010795928537846],[0.041325643658638,-0.053643729537725,-0.097528867423534]],[[0.01710438914597,0.095117829740047,0.047955702990294],[0.078759305179119,-0.12921591103077,-0.03458134829998],[0.0062267035245895,-0.037665449082851,-0.0051360526122153]],[[-0.090527780354023,-0.008430490270257,0.09632308781147],[-0.044742666184902,0.023775199428201,0.04413253068924],[-0.012726808898151,-0.013006560504436,0.0025244446005672]],[[0.030797867104411,-0.047614216804504,-0.07390208542347],[-0.010287939570844,-0.016920896247029,0.01954773068428],[-0.064001820981503,0.068101570010185,-0.0626615062356]],[[-0.20174579322338,0.026854902505875,0.056612230837345],[-0.058535095304251,-0.053305845707655,-0.034983392804861],[-0.030632020905614,0.10075362026691,0.069481544196606]],[[0.047920752316713,0.0053367498330772,0.055915586650372],[0.042679846286774,0.026512296870351,-0.054292943328619],[-0.083895966410637,-0.0096167735755444,-0.09506855905056]],[[-0.03279098123312,0.068154357373714,-0.0075996234081686],[-0.0080039612948895,-0.04614045470953,0.069554075598717],[0.013668355531991,-0.056674748659134,0.019596770405769]],[[-0.0096115320920944,0.063179187476635,0.083604663610458],[-0.064152367413044,-0.11497592180967,0.11677347123623],[-0.0086131785064936,0.015143134631217,-0.015098626725376]],[[-0.011391149833798,-0.17292483150959,-0.053796585649252],[0.00020838908676524,0.050105389207602,-0.0030991758685559],[0.0042898370884359,0.097655221819878,-0.031248329207301]],[[-0.042066417634487,0.070181109011173,0.046901896595955],[-0.0090503469109535,-0.087146081030369,-0.14084707200527],[0.076919548213482,0.070715375244617,0.061714675277472]],[[-0.017896980047226,0.09541080147028,-0.01600719243288],[0.020633175969124,0.06078277155757,-0.072152279317379],[0.13404993712902,-0.02714348770678,-0.15074473619461]],[[0.071844890713692,0.050761889666319,0.050615105777979],[-0.15508812665939,-0.088521331548691,-0.11351623386145],[0.06092332676053,-0.060125783085823,0.027133099734783]],[[0.059189599007368,0.04531118273735,0.053407363593578],[0.085571236908436,-0.032308157533407,-0.049363687634468],[-0.078689485788345,-0.043991822749376,0.021482629701495]],[[-0.03663482889533,-0.034685119986534,-0.029544960707426],[-0.0046479986049235,-0.021130150184035,-0.020186820998788],[-0.020416917279363,-0.0094157410785556,0.015514843165874]],[[0.13301835954189,0.00824926327914,-0.14261934161186],[0.0079611865803599,0.065671026706696,-0.041573144495487],[-0.22229669988155,-0.022499844431877,0.024728493764997]],[[0.10555996000767,0.084939576685429,0.15075857937336],[-0.061913151293993,-0.031090274453163,-0.015295603312552],[0.10015146434307,-0.22491833567619,-0.071894459426403]],[[0.074984326958656,0.25216695666313,0.020164316520095],[-0.056355122476816,0.25026977062225,0.18234492838383],[-0.091740950942039,0.027202757075429,0.063541635870934]],[[0.0003941485483665,-0.018948558717966,0.02858174405992],[-0.0092159397900105,-0.020797537639737,-0.0016267899191007],[0.0042935139499605,-0.031676776707172,0.027096211910248]],[[-0.054601073265076,0.11702292412519,0.087012991309166],[0.20912927389145,0.039237417280674,-0.1369152367115],[0.018480097874999,-0.19990272819996,0.10422052443027]],[[-0.067540921270847,-0.12896700203419,0.13113415241241],[0.076071292161942,-0.052365396171808,0.079993225634098],[-0.0010763320606202,-0.12329822778702,-0.055208507925272]],[[-0.022453144192696,0.0017856318736449,0.009101964533329],[-0.0032225258182734,0.044482674449682,-0.045976046472788],[-0.056128263473511,-0.051667645573616,0.0208689738065]],[[-0.11968726664782,0.012483404949307,0.09080371260643],[-0.022404449060559,-0.037636019289494,-0.094361528754234],[0.048346273601055,-0.075529888272285,-0.14849448204041]],[[-0.061045095324516,-0.075543217360973,0.12304705381393],[0.062034789472818,-0.047051087021828,-0.035387516021729],[0.1473488509655,0.13496072590351,9.1009074822068e-05]],[[0.063393913209438,-0.10800967365503,0.028484331443906],[0.034787222743034,-0.036856394261122,-0.0087863747030497],[0.014541585929692,0.017030503600836,0.00858392752707]],[[-0.057613026350737,0.076793856918812,0.069864138960838],[0.08028356730938,0.060234759002924,-0.029206916689873],[0.080145612359047,-0.042899541556835,-0.067727632820606]],[[0.087148420512676,-0.098965138196945,0.029114168137312],[-0.047987017780542,0.0065765767358243,-0.017768094316125],[-0.094445385038853,0.0094818044453859,0.052150849252939]],[[-0.20718002319336,0.015524015761912,-0.10685904324055],[0.06403786689043,0.079388998448849,-0.021217280998826],[0.11756101250648,-0.063362099230289,-0.029724068939686]],[[0.18207101523876,0.084641553461552,-0.13822524249554],[0.028312414884567,0.026787338778377,0.060465980321169],[0.16932129859924,0.05574356764555,0.064351297914982]],[[0.060840211808681,0.013173659332097,-0.070941604673862],[0.055361524224281,0.04216455295682,-0.11841544508934],[-0.13040305674076,0.13885988295078,-0.14670671522617]],[[-0.14719191193581,0.0077684391289949,0.054187182337046],[0.028429783880711,-0.01293362211436,-0.069389000535011],[0.025107357650995,0.019258294254541,-0.062570489943027]],[[0.075628325343132,0.0076212426647544,0.0068450681865215],[0.0052228369750082,-0.01988347619772,-0.013903896324337],[-0.10441248118877,0.013565090484917,-0.053932223469019]],[[0.12608276307583,-0.059547636657953,-0.028181599453092],[-0.00040390630601905,-0.029138706624508,0.011326836422086],[-0.064402014017105,0.15001407265663,-0.16502721607685]],[[0.0010420578764752,0.12244235724211,-0.15490989387035],[0.0080096311867237,0.0026133900973946,-0.050633292645216],[0.021059462800622,0.021325163543224,0.0038153373170644]],[[-0.15350925922394,-0.032034087926149,-0.0074270186014473],[0.013666695915163,-0.011235099285841,0.034595396369696],[-0.0040058852173388,0.025829337537289,0.01869797334075]],[[0.035790905356407,0.059344992041588,-0.10896760970354],[0.039306320250034,-0.082769267261028,-0.035134758800268],[-0.00019862339831889,-0.011349953711033,-0.070721693336964]],[[-0.037007085978985,0.13115087151527,0.052407369017601],[-0.060748167335987,-0.080376155674458,0.045831814408302],[-0.13539057970047,0.069663412868977,-0.064517214894295]],[[-0.12914635241032,-0.087392747402191,0.16450493037701],[-0.097665570676327,-0.12257073074579,-0.10860271751881],[-0.14620205760002,-0.0879997164011,-0.18429431319237]],[[0.054442673921585,0.061938371509314,-0.036795541644096],[-0.095527902245522,-0.032082822173834,0.041824471205473],[-0.025102768093348,0.0030503617599607,0.017957853153348]],[[-0.079277276992798,0.062559045851231,0.11447228491306],[-0.096142202615738,-0.048652805387974,0.0038273115642369],[0.13286752998829,-0.029253199696541,0.015418612398207]],[[-0.083083398640156,-0.078170537948608,-0.052493039518595],[-0.02832661755383,0.051578897982836,-0.067221529781818],[0.08186337351799,-0.053464572876692,-0.0033633045386523]],[[-0.026414129883051,-0.090491026639938,0.11661049723625],[0.1339223831892,-0.085236147046089,-0.074713580310345],[0.11888182908297,-0.16439831256866,-0.13779181241989]],[[0.0027611164841801,-0.117376498878,0.018333397805691],[0.021917890757322,-0.068589203059673,-0.066621489822865],[0.015030276030302,-0.045694213360548,0.075328558683395]],[[0.054858241230249,-0.090665571391582,-0.09273998439312],[-0.075444169342518,-0.0083577120676637,-0.045024562627077],[0.07016421854496,0.023781875148416,0.071644358336926]],[[0.0073582883924246,0.037547800689936,-0.0011473441263661],[-0.0088128093630075,-0.22458131611347,0.025904463604093],[-0.0034463442862034,-0.071818955242634,-0.036723207682371]],[[0.062800981104374,0.026059802621603,-0.088225238025188],[-0.082260124385357,-0.10089477151632,0.0074656968936324],[0.023482555523515,-0.043589193373919,0.061835110187531]],[[0.11372627317905,0.075928509235382,0.042384799569845],[-0.081613451242447,-0.11262350529432,0.082510769367218],[-0.083771057426929,-0.11367469280958,-0.090772993862629]],[[-0.046876318752766,0.030655415728688,-0.10529045760632],[-0.093910686671734,0.003418255597353,0.00078178325202316],[-0.19262060523033,0.063173398375511,-0.093893267214298]],[[0.065022103488445,0.10627397149801,-0.0064849522896111],[-0.022990956902504,-0.037891786545515,-0.074361115694046],[0.0080506289377809,0.085495173931122,-0.018097393214703]],[[-0.045602656900883,0.057866100221872,-0.038891680538654],[-0.067137509584427,0.049856804311275,-0.040166027843952],[-0.075243808329105,-0.11837606877089,0.0014575733803213]],[[-0.025024484843016,0.029267694801092,-0.046811271458864],[-0.067834921181202,-0.016557555645704,-0.097096510231495],[-0.070106901228428,-0.040151279419661,0.017883958294988]],[[0.050166126340628,-0.012054070830345,0.17996989190578],[0.022874312475324,-0.029883440583944,0.092574618756771],[0.043235663324594,0.073358930647373,0.037105444818735]],[[0.027249880135059,-0.023898532614112,-0.050063408911228],[-0.012896590866148,0.042634673416615,-0.033287424594164],[-0.07929603010416,0.074059724807739,-0.12922328710556]],[[-0.019668109714985,-0.11037228256464,-0.027657605707645],[0.050716746598482,-0.11919559538364,-0.058506328612566],[0.07597579061985,0.066247783601284,-0.041220091283321]],[[0.077504403889179,0.011774984188378,0.010403485968709],[-0.12569311261177,-0.028957232832909,0.03431374579668],[-0.015059086494148,-0.089994162321091,0.020605467259884]],[[-0.12434954941273,0.055896546691656,0.019617065787315],[-0.0417360663414,-0.081425718963146,-0.027530090883374],[-0.0039823804982007,0.0087198596447706,-0.086374744772911]],[[0.01794945821166,0.024540117010474,-0.055143587291241],[-0.015626549720764,0.030407637357712,0.085938349366188],[-0.091571599245071,-0.053822781890631,0.016782511025667]]],[[[-0.1150491386652,-0.037782348692417,0.052474413067102],[0.073183886706829,-0.06060753762722,0.016322968527675],[-0.048902407288551,0.08819854259491,-0.082985587418079]],[[-0.053234912455082,0.020108861848712,-0.092136465013027],[-0.055263232439756,-0.049644347280264,0.063679218292236],[0.10465336591005,-0.03127084672451,0.08928170800209]],[[-0.031320210546255,0.098547630012035,0.096134305000305],[-0.094667978584766,-0.048242557793856,-0.048424288630486],[-0.017285168170929,0.018185803666711,-0.036793615669012]],[[0.030535284429789,0.074168033897877,0.042359966784716],[0.11730980873108,0.020059468224645,-0.057682454586029],[0.05197548866272,-0.060121044516563,-0.12085678428411]],[[0.079097077250481,-0.027413895353675,0.020100716501474],[-0.0019824134651572,-0.041419614106417,0.0050288992933929],[-0.05168953537941,0.052302479743958,0.021517271175981]],[[0.047533176839352,-0.11586326360703,0.0052027641795576],[-0.0071813953109086,-0.041252221912146,0.0006758130621165],[-0.037017371505499,0.084707222878933,0.05716885253787]],[[-0.077059350907803,0.025673760101199,-0.0056007215753198],[-0.16724617779255,0.031661059707403,-0.084208406507969],[-0.042489096522331,-0.0015927174827084,0.061223711818457]],[[-0.050242576748133,-0.011954949237406,-0.072421565651894],[0.0048792753368616,-0.038360241800547,0.053466565907001],[-0.045201186090708,0.14658637344837,0.12764303386211]],[[0.0083267819136381,0.0070474985986948,-0.014393659308553],[-0.042204834520817,0.12417448312044,0.05315026640892],[-0.13357502222061,0.078237935900688,0.10950274020433]],[[0.077684693038464,0.017359346151352,-0.10443583875895],[-0.18849042057991,0.044665891677141,-0.039141289889812],[-0.036848373711109,-0.076655842363834,-0.095265403389931]],[[0.061626899987459,-0.087785482406616,0.02636905759573],[0.068916067481041,-0.057177025824785,-0.063900001347065],[0.099188484251499,0.056780103594065,0.017277108505368]],[[0.050148013979197,-0.054125521332026,0.014840145595372],[0.041857119649649,-0.051092714071274,-0.056412093341351],[-0.02048990689218,0.037362460047007,-0.15121449530125]],[[-0.060874722898006,0.038129482418299,-0.012105462141335],[-0.032528907060623,0.037926271557808,0.073559790849686],[-0.013650693930686,0.0012546251527965,-0.015067867003381]],[[-0.0081631727516651,0.060910861939192,0.0032667170744389],[0.034212075173855,0.0024943046737462,-0.052303791046143],[-0.041498206555843,-0.094786494970322,0.095573924481869]],[[0.076132193207741,0.037363898009062,-0.089227013289928],[-0.039531882852316,0.036217253655195,0.025937059894204],[0.049523882567883,0.099370189011097,0.079905234277248]],[[0.040918868035078,0.0080043012276292,-0.095813103020191],[0.023941123858094,-0.030017970129848,0.014244142919779],[-0.026150962337852,-0.087689749896526,-0.06847783178091]],[[-0.016541110351682,-0.0032476894557476,0.013212641701102],[-0.099943213164806,0.096776910126209,-0.066246017813683],[-0.098975725471973,-0.032688710838556,0.11233127862215]],[[-0.02738968655467,-0.0037064938805997,-0.035442888736725],[-0.091478511691093,0.051616191864014,-0.12553025782108],[-0.017228625714779,-0.04813763871789,-0.015124910511076]],[[0.0034926247317344,-0.014432246796787,0.13325284421444],[0.034848388284445,0.037508502602577,0.020484128966928],[-0.090085916221142,0.016410171985626,0.091172441840172]],[[0.010735213756561,0.095362327992916,0.0086937872692943],[0.00086890737293288,0.040765304118395,0.097394995391369],[-0.017959918826818,-0.096266888082027,-0.13648067414761]],[[0.03843017667532,0.08124090731144,0.11226560920477],[0.042800150811672,0.089059941470623,0.06205915287137],[-0.10284033417702,0.028223514556885,0.0038404832594097]],[[0.0064232898876071,0.00048180064186454,-0.0093947825953364],[-0.025002807378769,0.030128946527839,-0.044196050614119],[0.019229494035244,0.0034647728316486,-0.017641404643655]],[[0.0155407236889,0.088338829576969,-0.021013628691435],[-0.087526760995388,0.072913713753223,0.017684547230601],[0.0062725520692766,-0.018107626587152,-0.091063745319843]],[[0.030260935425758,0.14683730900288,0.17563115060329],[0.14176715910435,0.038312263786793,0.078225828707218],[-0.16333240270615,0.099627897143364,-0.23185071349144]],[[-0.062903538346291,-0.028993900865316,0.037777502089739],[0.018344443291426,0.052599649876356,-0.096470229327679],[-0.049307066947222,0.045168712735176,0.071434557437897]],[[0.015119625255466,-0.011215931735933,0.00034043352934532],[-0.0047756494022906,-0.027712872251868,-0.0057344622910023],[0.039045579731464,-0.0071043674834073,-0.019565489143133]],[[0.032908998429775,-0.10115700960159,-0.082178480923176],[0.088139407336712,-0.030734086409211,-0.10917901992798],[-0.076896838843822,0.1772795766592,-0.015798460692167]],[[0.063020639121532,-0.0032633091323078,0.01021915115416],[-0.13143762946129,0.046875786036253,0.010877234861255],[-0.023292472586036,0.013036808930337,-0.079444691538811]],[[-0.027497811242938,0.13355901837349,-0.02226547524333],[0.12790539860725,-0.016189485788345,-0.045067578554153],[0.064994797110558,-0.035203035920858,-0.02750507555902]],[[-0.013289637863636,-0.12084142118692,-0.11028895527124],[0.069348841905594,-0.0021227186080068,0.090235777199268],[-0.11039767414331,-0.041352827101946,0.024662923067808]],[[0.025132263079286,-0.03325067460537,0.075208969414234],[0.11476150900126,-0.02881895005703,0.016421848908067],[-0.10020987689495,-0.080423265695572,0.057345315814018]],[[-0.11656483262777,0.062606662511826,-0.10560210049152],[0.056531403213739,0.028110440820456,0.10283612459898],[0.017720840871334,0.020346276462078,0.063166029751301]],[[0.0362762324512,0.10771375894547,0.14802987873554],[-0.069430902600288,-0.062435802072287,-0.083960548043251],[-0.030255982652307,-0.15348844230175,0.038164462894201]],[[-0.071631774306297,-0.13990078866482,-0.099518693983555],[-0.027639141306281,0.035316381603479,-0.03334329649806],[0.10383550077677,-0.059421088546515,0.1195402815938]],[[-0.080177448689938,-0.13349643349648,0.0090347295626998],[0.020944632589817,0.08136710524559,0.11551436781883],[-0.02088737487793,0.089470639824867,-0.029497310519218]],[[0.022341694682837,-0.021798247471452,0.14761017262936],[0.03813099116087,0.041885275393724,0.018364734947681],[0.0041338563896716,-0.03671620041132,0.057556159794331]],[[0.11680603772402,0.051215168088675,0.18269400298595],[0.0061970730312169,0.028979266062379,0.04834421351552],[0.060212340205908,0.06720782071352,0.11914663761854]],[[-0.0089007494971156,0.032415371388197,0.11380675435066],[-0.12002781033516,-0.066268965601921,-0.015839548781514],[0.039482276886702,-0.038452964276075,-0.061209660023451]],[[0.12241373956203,-0.039115648716688,0.08414077013731],[-0.056379541754723,-0.011765390634537,-0.010652210563421],[-0.032628983259201,-0.13440275192261,-0.10899567604065]],[[0.062431924045086,0.083371505141258,-0.049119561910629],[-0.024810848757625,-0.14145587384701,-0.016736118122935],[0.008033930324018,-0.035610549151897,0.04816210269928]],[[0.20335811376572,-0.0071634058840573,0.091644458472729],[0.004935426171869,-0.097050130367279,0.052726902067661],[-0.031585149466991,0.038324031978846,-0.020451566204429]],[[0.12599192559719,-0.0098851304501295,0.059313457459211],[-0.13447636365891,0.05411571636796,-0.14612765610218],[0.076885491609573,0.035587970167398,0.07447300106287]],[[0.042413957417011,0.027819529175758,-0.05031818151474],[-0.061969295144081,0.067452020943165,0.096014104783535],[-0.14873565733433,0.034518081694841,0.091156750917435]],[[-0.018714735284448,-0.036855943500996,0.061097409576178],[-0.03693276271224,-0.064710646867752,0.098790891468525],[-0.028603702783585,0.11405755579472,0.10751439630985]],[[0.012531184591353,-0.058254320174456,-0.05337069183588],[0.0057769999839365,0.072653584182262,-0.04413527995348],[-0.0067562093026936,0.072604425251484,-0.043602835386992]],[[0.067797094583511,-0.014521634206176,-0.002369120484218],[-0.073011234402657,-0.059829045087099,-0.009727219119668],[0.076785758137703,0.050209365785122,-0.078156396746635]],[[-0.051525916904211,-0.019324887543917,-0.03836303576827],[-0.069430842995644,0.018636841326952,-0.034671310335398],[0.074360452592373,-0.0047583789564669,-0.048950601369143]],[[-0.10393890738487,-0.0029612309299409,0.075455002486706],[0.075396984815598,-0.076941907405853,-0.065043263137341],[-0.081405945122242,0.016867272555828,0.068734839558601]],[[0.019945044070482,-0.0014040153473616,-0.067922808229923],[-0.055599078536034,-0.028633773326874,-0.087172232568264],[0.18513974547386,0.079058110713959,-0.076007477939129]],[[-0.019085021689534,-0.092608563601971,-0.1215855255723],[-0.043507944792509,-0.050072375684977,-0.011368248611689],[0.17503064870834,0.075732663273811,0.09388180822134]],[[-0.0018205578671768,0.018694493919611,0.14539800584316],[-0.090746887028217,0.063789129257202,-0.10584612190723],[-0.021629830822349,-0.051893670111895,0.0090009793639183]],[[0.058141995221376,-0.087694950401783,0.12135951966047],[0.00036093930248171,-0.037921607494354,0.036404900252819],[-0.0016234209761024,-0.097364827990532,0.13595548272133]],[[-0.1455020904541,-0.11255794018507,-0.064826294779778],[-0.037103831768036,-0.0025869179517031,0.0043869176879525],[0.097343005239964,-0.017153602093458,-0.0089608365669847]],[[0.056253582239151,-0.023826545104384,0.12915402650833],[0.0075236489064991,-0.079457499086857,0.05025465041399],[0.072469465434551,0.010357423685491,-0.03754049539566]],[[-0.048757735639811,0.080243311822414,0.078897066414356],[-0.042925078421831,0.0042069652117789,0.064368173480034],[-0.017696740105748,0.005315778311342,-0.011081950739026]],[[-0.09914419054985,0.049403939396143,0.088866703212261],[-0.0061477720737457,0.074949085712433,0.05570300668478],[-0.10815896838903,-0.0053672618232667,0.017043724656105]],[[0.02527098543942,0.023990405723453,-0.064898580312729],[-0.03853227570653,-0.0051636761054397,0.003973969258368],[-0.14926289021969,-0.0061822696588933,-0.093080453574657]],[[-0.022007346153259,-0.072546273469925,0.045022755861282],[-0.11205248534679,0.025435078889132,0.0728550106287],[-0.05925340950489,-0.10208576917648,0.0018850384512916]],[[-0.027954651042819,0.033833395689726,0.10080503672361],[-0.023791704326868,0.0063550001941621,0.1174970343709],[-0.025433458387852,0.0171810798347,0.087852917611599]],[[0.089100934565067,0.12480906397104,-0.090131647884846],[0.055052489042282,-0.065397411584854,0.045808609575033],[-0.024991462007165,0.02700530923903,-0.045550141483545]],[[-0.019345859065652,-0.065187387168407,-0.17372433841228],[0.024692103266716,0.072642125189304,-0.014235048554838],[-0.1988796889782,0.090919099748135,-0.095189347863197]],[[0.075065173208714,-0.037175185978413,-0.068332426249981],[-0.0068532289005816,-0.018607538193464,-0.084614224731922],[-0.059101395308971,-0.052602797746658,0.053632844239473]],[[-0.033401306718588,-0.059498865157366,0.14933595061302],[-0.035623718053102,0.079576879739761,0.049946248531342],[-0.048949345946312,-0.019140595570207,0.04727503657341]],[[-0.089138984680176,-0.080056756734848,0.063578523695469],[-0.15917155146599,-0.062694698572159,-0.099654868245125],[-0.0721490457654,-0.024099951609969,-0.044271796941757]]],[[[-0.13754999637604,-0.020398732274771,-0.16451466083527],[-0.14256888628006,0.070066429674625,-0.092853851616383],[-0.074333429336548,0.0099230594933033,0.012979864142835]],[[0.16026464104652,-0.018062878400087,0.011708907783031],[0.088935934007168,0.014697964303195,0.10423769056797],[0.052336171269417,-0.030305067077279,-0.056383475661278]],[[0.042736511677504,-0.10793760418892,-0.07309602946043],[0.035210285335779,-0.058710973709822,0.013984885066748],[0.037353746592999,-0.12011411786079,-0.027336221188307]],[[-0.15368650853634,0.12103280425072,-0.0056187552399933],[-0.069681525230408,0.064147762954235,-0.021661829203367],[-0.064988382160664,-0.121551848948,-0.06809900701046]],[[-0.075097501277924,-0.17337818443775,-0.035388711839914],[-0.17972642183304,-0.036925051361322,0.029576921835542],[-0.19926439225674,-0.071638435125351,-0.026539510115981]],[[-0.029234763234854,0.05928348377347,0.015203394927084],[0.10607177019119,0.050364203751087,-0.020480796694756],[0.057371847331524,-0.10155721008778,-0.084973201155663]],[[-0.0014839250361547,-0.078158020973206,-0.016827972605824],[0.057933162897825,-0.0067268302664161,-0.011503263376653],[0.076591722667217,-0.063373565673828,-0.054005812853575]],[[0.072932906448841,-0.020541919395328,-0.016534129157662],[-0.057381179183722,-0.049220506101847,0.043702557682991],[-0.11235222220421,-0.0053341253660619,0.077634446322918]],[[-0.076907962560654,-0.080265671014786,0.14225454628468],[0.066049426794052,-0.054762501269579,-0.0071677747182548],[-0.040321435779333,-0.20110227167606,-0.068513311445713]],[[0.13612808287144,0.041146829724312,-0.14991194009781],[0.046092838048935,-0.0068842652253807,0.010335021652281],[0.031240787357092,-0.063378140330315,0.22976446151733]],[[0.041181240230799,0.083498992025852,-0.073628462851048],[0.033201437443495,0.12229224294424,-0.084785990417004],[0.020740700885653,-0.029539974406362,0.06073460355401]],[[0.083845764398575,0.05285781249404,0.012369004078209],[0.025688981637359,-0.051088359206915,-0.082250669598579],[0.026867287233472,-0.050777465105057,0.025865945965052]],[[-0.058750338852406,0.037189152091742,0.044907595962286],[0.025261299684644,-0.031547430902719,0.0092842141166329],[-0.17192688584328,-0.014234308153391,-0.10387320071459]],[[-0.054375786334276,-0.029041742905974,-0.041190382093191],[-0.18956533074379,0.16999398171902,0.083658345043659],[0.082367211580276,0.0050013838335872,-0.12018446624279]],[[0.085447855293751,0.00059246143791825,-0.10608754307032],[0.04571919888258,0.084366887807846,-0.018314339220524],[-0.015896111726761,-0.078469343483448,-0.024482037872076]],[[-0.13192619383335,-0.040172789245844,0.12213565409184],[-0.004183046054095,-0.1674533188343,0.099389992654324],[-0.080694906413555,0.0028032693080604,-0.041225016117096]],[[-0.13089182972908,-0.036763552576303,0.052945103496313],[-0.040594801306725,-0.064620584249496,0.0093191470950842],[0.088244900107384,-0.03837550804019,0.044017545878887]],[[0.047976464033127,-0.10971713811159,-0.005435022059828],[0.013880894519389,-0.11341882497072,0.0973961353302],[-0.087819784879684,-0.050540823489428,-0.027967749163508]],[[-0.055247977375984,-0.009435061365366,-0.020451700314879],[-0.010911263525486,-0.043346878141165,0.02405977062881],[0.0016939248889685,0.0083654588088393,0.099949061870575]],[[-0.018120374530554,-0.056899797171354,-0.12647596001625],[-0.001866796403192,-0.031946111470461,-0.11634580790997],[0.19154199957848,-6.7850080085918e-05,-0.072122126817703]],[[0.1196728348732,-0.085882514715195,-0.069297693669796],[-0.078919850289822,-0.04891474917531,-0.11559927463531],[-0.15897937119007,0.070873066782951,-0.068540401756763]],[[-0.0049932422116399,0.044242613017559,0.051882356405258],[-0.059860270470381,-0.057134315371513,-0.023859415203333],[-0.086765334010124,0.0076178256422281,0.0060053998604417]],[[0.12074638158083,-0.055195968598127,-0.034903813153505],[-0.10618935525417,0.029842704534531,-0.033777054399252],[-0.16246800124645,-0.017412697896361,-0.10078417509794]],[[0.23122669756413,0.024334536865354,-0.049226719886065],[0.014849652536213,0.034129247069359,0.13027203083038],[-0.012295957654715,-0.0013682099524885,0.075043424963951]],[[0.01801048964262,0.11375018209219,0.096748910844326],[0.016539791598916,0.082279212772846,0.10553035885096],[-0.025781927630305,0.036929737776518,0.078701503574848]],[[0.030522532761097,0.0034241057001054,-0.036665230989456],[0.049314241856337,-0.0019933930598199,-0.074646860361099],[0.034058462828398,-0.013857200741768,0.0073691164143384]],[[-0.060930114239454,-0.061537951231003,0.039656698703766],[0.034394707530737,0.057567991316319,-0.037540819495916],[0.147546261549,0.009638262912631,-0.055106818675995]],[[-0.11355958878994,-0.099482461810112,0.21025116741657],[-0.043241903185844,-0.038493763655424,0.024823743849993],[-0.12620969116688,-0.036110449582338,-0.00065329414792359]],[[0.11015985161066,-0.029488334432244,0.0049413712695241],[0.08817183226347,0.016131781041622,-0.063797533512115],[-0.096473217010498,0.15984836220741,-0.050138056278229]],[[0.046068362891674,-0.01226310711354,0.084611669182777],[-0.022279001772404,-0.043063148856163,0.036228083074093],[-0.080319672822952,0.037861868739128,-0.059866324067116]],[[-0.086658515036106,0.094211675226688,-0.056045077741146],[-0.077087804675102,0.052327822893858,-0.074498318135738],[-0.053989175707102,0.0038568642921746,0.11810369044542]],[[-0.043862391263247,-0.021097922697663,-0.045238628983498],[0.093116991221905,0.035383865237236,-0.097017511725426],[0.044739171862602,0.078349247574806,-0.023208657279611]],[[-0.029626071453094,0.096385337412357,-0.24205562472343],[-0.035597026348114,-0.028141995891929,-0.084323920309544],[0.028365537524223,-0.10695847868919,0.10829547792673]],[[-0.028395457193255,-0.0066431788727641,-0.1549437046051],[-0.0039612632244825,0.017501845955849,-0.074338920414448],[-0.019954454153776,0.0569605268538,-0.07564090937376]],[[0.028906693682075,-0.010652787983418,0.10900795459747],[-0.086614020168781,-0.024570563808084,0.062567673623562],[0.022107016295195,-0.058872256428003,-0.042233031243086]],[[0.048559527844191,-0.020676124840975,0.11505153775215],[-0.052759360522032,0.091776855289936,0.06091071292758],[-0.028740748763084,-0.0037320093251765,0.05893025919795]],[[0.073456481099129,0.015228412114084,0.1117525100708],[-0.024477675557137,0.095817901194096,0.0045131575316191],[-0.040936276316643,-0.0092022214084864,0.13684631884098]],[[0.019235655665398,-0.10758753865957,0.012097821570933],[-0.028921311721206,-0.057388499379158,-0.043507110327482],[-0.060097727924585,-0.13063409924507,0.20336355268955]],[[-0.013554885983467,0.19602946937084,0.01206804253161],[0.026456210762262,0.0023867532145232,-0.099781528115273],[0.0023760832846165,-0.17859362065792,0.14778812229633]],[[-0.02895374968648,-0.10300873219967,-0.088502794504166],[-0.10890414565802,-0.011113580316305,0.13137896358967],[0.12570181488991,0.019647601991892,0.095123320817947]],[[0.057210028171539,-0.10624916851521,0.040002077817917],[0.00081174093065783,-0.079007118940353,-0.034376725554466],[0.10977389663458,-0.04875011369586,-0.088531360030174]],[[-0.059818409383297,0.092091709375381,0.048640571534634],[-0.11637957394123,-0.086635790765285,0.016943579539657],[-0.058985557407141,0.018272275105119,0.083452560007572]],[[0.018871754407883,0.07030076533556,-0.11614206433296],[-0.15228281915188,-0.0066950530745089,-0.035748839378357],[-0.049534671008587,-0.19213281571865,0.019911019131541]],[[-0.057706736028194,-0.053040642291307,0.033003512769938],[0.022441634908319,-0.027148881927133,0.016610883176327],[0.10592044144869,-0.11166014522314,-0.0076122502796352]],[[-0.051954921334982,-0.028625322505832,0.1965399235487],[0.12674234807491,0.00076404004357755,-0.050619319081306],[0.059928443282843,-0.14644150435925,0.0016171303577721]],[[0.069921731948853,0.074626535177231,-0.051656804978848],[0.026406185701489,-0.031950749456882,-0.010952175594866],[0.0011073466157541,-0.019004521891475,-0.082316130399704]],[[0.1573970168829,-0.046859331429005,0.0099590430036187],[-0.072050973773003,-0.030557028949261,0.01402304880321],[0.040942307561636,-0.066622376441956,-0.031541347503662]],[[-0.058832135051489,0.055614359676838,-0.032881405204535],[0.088703587651253,-0.11228777468204,-0.032902602106333],[-0.086685068905354,-0.038767136633396,-0.10484836250544]],[[-0.14362831413746,0.10119688510895,-0.13502064347267],[-0.016258435323834,-0.00059082475490868,0.027174567803741],[0.039983253926039,-0.066074132919312,-0.011736432090402]],[[-0.050893936306238,-0.041902557015419,-0.059607040137053],[-0.010372092947364,-0.083576738834381,0.10072577744722],[0.12692964076996,0.085294365882874,0.028240026906133]],[[-0.093113049864769,-0.13348594307899,-0.0080716228112578],[0.081464186310768,-0.12989316880703,-0.066066652536392],[0.11018434911966,0.11315081268549,0.083752386271954]],[[0.0739656239748,-0.063253358006477,0.062197603285313],[-0.17752110958099,0.06623999029398,0.10958747565746],[-0.02494858764112,0.066459968686104,-0.097763933241367]],[[-0.0088335620239377,-0.077294662594795,0.0010094919707626],[-0.030158121138811,-0.070725120604038,0.035076022148132],[0.050795696675777,0.016806971281767,0.068178914487362]],[[0.058360990136862,-0.030219797044992,-0.043942980468273],[0.0142304841429,0.019432304427028,-0.010845425538719],[0.003041289979592,0.079439543187618,0.071029976010323]],[[-0.061972986906767,0.010017580352724,0.073277130723],[-0.071614235639572,-0.074073821306229,-0.11012710630894],[-0.15768350660801,-0.059012461453676,0.094728164374828]],[[0.02229412458837,0.057951334863901,0.040030777454376],[0.0077223111875355,-0.0070957387797534,-0.0059818169102073],[0.072341129183769,-0.041438620537519,0.085318453609943]],[[-0.025312844663858,0.18504795432091,-0.098001852631569],[-0.11432877928019,0.10931716859341,0.094732016324997],[0.035919904708862,0.1304604113102,-0.042092427611351]],[[0.0065056001767516,0.022202018648386,-0.00074584322283044],[-0.079001910984516,0.037513725459576,0.11643897742033],[0.030249934643507,0.13562120497227,0.096960455179214]],[[0.043084006756544,0.099636651575565,0.011231436394155],[-0.091635808348656,0.091240733861923,0.045610409229994],[0.048306077718735,0.01830723695457,0.080480210483074]],[[-0.021227000281215,-0.054939419031143,-0.0011052233166993],[0.049117077142,-0.09232534468174,-0.029301324859262],[-0.043245580047369,0.018430335447192,-0.058932464569807]],[[-0.044531546533108,0.020011899992824,-0.0011798640480265],[-0.10804922878742,0.027741050347686,-0.020709957927465],[-0.019922614097595,0.027833363041282,0.076357066631317]],[[-0.16189977526665,-0.020706592127681,-0.08935484290123],[0.00038350030081347,0.033896595239639,-0.06592932343483],[0.09469024091959,-0.054849036037922,-0.03065968118608]],[[0.1834568977356,0.13332960009575,0.092413917183876],[-0.066546224057674,-0.013954266905785,-0.043884582817554],[-0.00144520890899,0.1120638474822,-0.096019946038723]],[[-0.16459436714649,-0.1929846405983,-0.04753340408206],[-0.18105752766132,-0.027674306184053,0.035413008183241],[0.084759034216404,0.082787863910198,0.14395758509636]]],[[[-0.065723076462746,-0.048755746334791,-0.040485724806786],[0.019660972058773,-0.026294285431504,-0.050795044749975],[-0.11190017312765,-0.012286555022001,0.015402506105602]],[[0.0034435286652297,-0.13375988602638,-0.017471712082624],[0.048234894871712,-0.035202242434025,-0.11253257840872],[0.0026033448521048,0.090718232095242,-0.093128979206085]],[[-0.1397930085659,-0.047077018767595,0.15158711373806],[0.15830408036709,-0.11755577474833,-0.088091723620892],[-0.021197197958827,-0.0058890865184367,0.019503658637404]],[[0.01931662671268,-0.079668954014778,0.01689200848341],[-0.028943460434675,-0.042236093431711,0.11351066082716],[-0.058096006512642,-0.051517352461815,0.024805540218949]],[[-0.068183064460754,-0.096367932856083,-0.11641575396061],[0.00081607885658741,0.00023078548838384,-0.11198420077562],[0.0093260314315557,-0.076249204576015,-0.040415853261948]],[[-0.057224575430155,0.061533775180578,0.0024422516580671],[-0.11664704978466,-0.052565649151802,-0.077800944447517],[0.046943303197622,0.11438525468111,0.080671966075897]],[[-0.18449580669403,0.056082628667355,0.21159419417381],[-0.0080550154671073,-0.022118180990219,0.0068380427546799],[-0.019075917080045,-0.091417156159878,-0.079113900661469]],[[-0.15196554362774,0.022368017584085,-0.046153623610735],[0.10242190957069,-0.13739956915379,-0.015884490683675],[0.13031409680843,0.02833934314549,0.056145835667849]],[[0.0025432843249291,0.015102894045413,-0.00092703063273802],[0.002672617090866,-0.043905798345804,0.065462306141853],[0.075589783489704,-0.067715995013714,0.063851393759251]],[[0.0015283469110727,-0.045307878404856,0.15128919482231],[-0.01164136826992,0.067177101969719,-0.059160482138395],[-0.017291637137532,0.084083423018456,-0.093697033822536]],[[0.014885603450239,-0.027288679033518,-0.037706036120653],[-0.029792441055179,-0.11642715334892,0.0033340349327773],[0.060813795775175,0.095795996487141,-0.077336624264717]],[[-0.043104667216539,-0.15816120803356,-0.0092239379882812],[-0.049664232879877,-0.03022381849587,-0.059659965336323],[-0.016491325572133,-0.030134694650769,-0.10128726810217]],[[0.16218116879463,0.067809171974659,-0.18798464536667],[0.039991669356823,0.049708906561136,0.065035201609135],[-0.016827018931508,0.1037954390049,-0.0058381911367178]],[[-0.0080656623467803,-0.028641974553466,0.045482154935598],[0.21219600737095,0.015974575653672,-0.2307296693325],[-0.022632963955402,-0.075794726610184,-0.063030660152435]],[[0.028960693627596,0.040023047477007,0.066836789250374],[0.11030869930983,0.056251030415297,-0.13129904866219],[-0.08848000317812,0.078834161162376,0.17571732401848]],[[-0.09495160728693,-0.1029309257865,0.14312747120857],[-0.055337935686111,-0.064494028687477,0.20361588895321],[-0.014154821634293,-0.056972052901983,0.069993667304516]],[[0.03999925032258,-0.03101921826601,-0.0026920347008854],[0.040782809257507,-0.071105644106865,0.13475359976292],[0.043376546353102,-0.058117687702179,0.085963182151318]],[[-0.12705585360527,0.065521933138371,0.1198698580265],[-0.079628400504589,-0.0060364329256117,0.067819111049175],[-0.085965432226658,0.005773046053946,0.20418751239777]],[[-0.11694490164518,-0.066986888647079,0.085786730051041],[-0.026505855843425,-0.016596155241132,-0.074158310890198],[-0.099456317722797,-0.050748109817505,-0.14145146310329]],[[0.028607998043299,0.0033329690340906,0.065286122262478],[0.089751027524471,0.058734808117151,0.096612632274628],[-0.01533923111856,0.047272488474846,0.11975315213203]],[[0.032535288482904,-0.041266866028309,0.097848027944565],[0.12927863001823,0.028523558750749,-0.064963079988956],[0.040312264114618,-0.076247967779636,-0.0018309146398678]],[[0.0025057145394385,-0.052419438958168,0.04705672711134],[-0.026797879487276,-0.074255533516407,0.016959998756647],[-0.051872361451387,-0.0057141720317304,0.025056859478354]],[[-0.1158669963479,0.060094758868217,0.15459769964218],[-0.18373389542103,-0.011360909789801,-0.07185024023056],[0.10049296915531,0.0057945405133069,0.12031074613333]],[[-0.019227726384997,-0.13189387321472,0.026252690702677],[-0.016571369022131,-0.028315765783191,0.031832121312618],[-0.090231113135815,0.0089863575994968,0.10255431383848]],[[0.074220828711987,0.0067677088081837,-0.22463047504425],[0.17300933599472,0.16204008460045,-0.057473435997963],[0.10231889784336,0.0940171033144,-0.043227560818195]],[[0.050857879221439,0.063906595110893,-0.079732961952686],[-0.046180911362171,0.043598398566246,-0.016348879784346],[0.010559716261923,-0.0073090544901788,0.054277073591948]],[[-0.018734758719802,0.0019238786771894,0.036068219691515],[0.038421437144279,-0.0020122400019318,-0.2147858440876],[-0.0031220004893839,-0.15575787425041,-0.21263994276524]],[[-0.048293318599463,0.14306226372719,0.10561970621347],[0.11392087489367,-0.012973244301975,0.19418299198151],[-0.11733284592628,-0.078669123351574,-0.011042425408959]],[[0.092098034918308,-0.050132166594267,0.07519692927599],[-0.017119746655226,-0.057546652853489,-0.10751847177744],[-0.024614099413157,-0.11715166270733,-0.11047853529453]],[[0.0071849413216114,-0.068720735609531,-0.043738048523664],[0.088951475918293,0.12118697911501,0.030180167406797],[0.037903644144535,0.062881797552109,0.0073613058775663]],[[0.107486538589,0.060239516198635,0.030949223786592],[0.0082187782973051,-0.033528726547956,0.0064582535997033],[-0.093607753515244,-0.056950200349092,0.037577837705612]],[[-0.12317850440741,-0.10090945661068,0.049993552267551],[-0.10646288096905,-0.016050972044468,-0.0077351778745651],[0.16949014365673,0.15873020887375,0.077137403190136]],[[-0.16554728150368,0.049048747867346,0.22170643508434],[-0.13799819350243,0.060282077640295,-0.00059339380823076],[0.02838290669024,-0.04861643910408,-0.23944766819477]],[[0.076700799167156,-0.0023884337861091,-0.040367215871811],[0.0343411937356,-0.087078556418419,-0.096713870763779],[-0.069312147796154,0.1184843853116,0.016445366665721]],[[0.088952526450157,0.028705462813377,-0.0087618259713054],[-0.17656986415386,-0.21805746853352,0.012312065809965],[-0.089059002697468,-0.16619078814983,0.052259512245655]],[[0.066651359200478,0.069075480103493,0.069657750427723],[0.023338487371802,0.049487087875605,0.078181199729443],[-0.053675994277,0.027673877775669,-0.030716622248292]],[[-0.052208051085472,0.089508198201656,0.090898774564266],[0.061324506998062,0.060655552893877,0.025570996105671],[-0.10035467892885,0.071247592568398,0.00050444330554456]],[[-0.044118903577328,0.066124528646469,0.0035034276079386],[0.022496094927192,0.061271227896214,-0.035348303616047],[0.14874769747257,-0.044208727777004,-0.070281870663166]],[[-0.11630509793758,0.073569543659687,-0.025790797546506],[-0.0020080970134586,0.067851759493351,0.07991211861372],[-0.033551260828972,-0.074217014014721,-0.0081050926819444]],[[0.034956447780132,-0.062379844486713,0.16738373041153],[-0.13620099425316,-0.042695865035057,-0.19536978006363],[0.039694711565971,-0.041464086622,-0.0082120066508651]],[[-0.049033690243959,0.02544080093503,0.076285429298878],[-0.094562761485577,-0.03219835832715,0.13396832346916],[-0.12134768813848,-0.097400851547718,-0.11675062030554]],[[-0.00078572961501777,0.065590478479862,0.078213416039944],[0.016834393143654,-0.10312651842833,-0.11120961606503],[-0.03043720126152,-0.020906008780003,-0.21663618087769]],[[-0.05786894634366,-0.052473030984402,-0.073930770158768],[0.14070975780487,-0.069359980523586,0.10753517597914],[0.10868596285582,-0.011072332039475,-0.0025385892949998]],[[-0.043325606733561,0.0089502604678273,-0.13260054588318],[0.0085361963137984,0.15346063673496,-0.12673841416836],[-0.065004430711269,-0.073231652379036,0.24927490949631]],[[0.1057513281703,0.10674105584621,-0.10333231091499],[0.032072190195322,0.10897234082222,-0.2089130282402],[-0.1555400788784,0.11580139398575,-0.1810267418623]],[[0.065366737544537,0.048497948795557,-0.022610360756516],[-0.015038281679153,0.057134497910738,0.023245191201568],[-0.029012214392424,0.092168532311916,0.016997445374727]],[[0.021211134269834,-0.14337661862373,-0.026275664567947],[0.045922797173262,0.059700977057219,-0.034004829823971],[-0.09452822804451,0.040393672883511,0.17356108129025]],[[0.10216762125492,0.0058342139236629,0.13223354518414],[0.026454262435436,0.028746800497174,0.073233373463154],[-0.075924001634121,-0.13469994068146,-0.011809882707894]],[[-0.12372141331434,0.13681018352509,-0.016844248399138],[0.019928438588977,-0.017752703279257,0.0048273908905685],[-0.10253010690212,0.036160480231047,0.13525341451168]],[[-0.19646044075489,0.12985573709011,0.031264673918486],[-0.068028420209885,-0.06684210896492,0.048192672431469],[-0.05887845531106,-0.019037591293454,-0.036427076905966]],[[0.012693712487817,0.0145008796826,0.045282270759344],[0.19272848963737,0.03676076233387,0.045199178159237],[0.10089316964149,0.030256701633334,0.12817198038101]],[[0.1241137906909,-0.15921269357204,0.077292375266552],[0.13782188296318,-0.074617497622967,0.13853345811367],[-0.059268668293953,0.087729327380657,0.0075083887204528]],[[0.13779793679714,0.03541936352849,-0.0060758548788726],[-0.0059657283127308,-0.026085648685694,-0.11425297707319],[0.034560825675726,0.036066684871912,-0.049434881657362]],[[0.02816903591156,-0.078872457146645,-0.051179792732],[-0.0080308262258768,-0.027088589966297,-0.077973917126656],[0.15097400546074,0.028594404459,-0.061311036348343]],[[-0.0023065500427037,-0.014487866312265,0.061535492539406],[-0.01118908636272,0.0028071908745915,-0.053415820002556],[-0.05953312292695,-0.079886510968208,0.13002152740955]],[[-0.10564941912889,-0.040006514638662,0.11475637555122],[0.11486840993166,-0.015149126760662,0.008487407118082],[0.083878576755524,-0.069953173398972,0.10066930949688]],[[-0.046375997364521,-0.0021596455480903,0.010813269764185],[0.25069439411163,-0.015535085462034,0.081503324210644],[0.045494761317968,-0.015499140135944,-0.07354249805212]],[[0.0062378779985011,0.030289962887764,0.13026683032513],[-0.0023932158946991,0.093145586550236,0.17134784162045],[-0.065078511834145,-0.028841791674495,-0.086425960063934]],[[-0.020521448925138,0.033068086951971,0.03011223860085],[0.073866546154022,0.10844848304987,0.054523717612028],[0.17110602557659,0.10207138210535,0.099051535129547]],[[0.12301862239838,0.090986058115959,-0.082077279686928],[0.039439272135496,0.057376552373171,0.056207317858934],[0.04045844450593,0.02212599106133,0.072809480130672]],[[0.071205250918865,-0.0072673326358199,0.28739610314369],[0.047390535473824,-0.060127772390842,-0.067277535796165],[-0.07729447633028,0.014396527782083,0.051896117627621]],[[-0.012337831780314,0.075352817773819,0.19209215044975],[-0.13038915395737,0.073435619473457,0.22273369133472],[-0.021101290360093,0.042504861950874,0.0012332274345681]],[[0.05882254242897,0.071101427078247,0.030103508383036],[0.040305234491825,0.029205689206719,-0.10052632540464],[-0.0043180231004953,-0.15873509645462,-0.023859983310103]],[[0.074113368988037,-0.11166792362928,-0.10200072079897],[0.036207672208548,-0.11245238780975,0.038666602224112],[0.0083073601126671,0.08322723954916,-0.11330734193325]]]],"nOutputPlane":128,"kW":3,"kH":3,"bias":[-0.026056891307235,-0.01298064738512,-0.024744998663664,-0.011116101406515,-0.013614369556308,-0.013507729396224,-0.011666486039758,-0.013749482110143,-0.01103846821934,-0.01778019964695,-0.018776880577207,-0.017901923507452,-0.012289841659367,-0.022361056879163,-0.021210491657257,-0.025892226025462,-0.015301206149161,-0.0088251093402505,-0.017149278894067,-0.01425720565021,-0.0053577721118927,-0.014356612227857,-0.011739789508283,-0.015014932490885,-0.012453930452466,-0.01022866833955,-0.01662041246891,-0.016718292608857,-0.025303898379207,-0.013617545366287,-0.016530144959688,-0.013714022003114,-0.0093134166672826,-0.0095264064148068,-0.0047531425952911,-0.014066753908992,-0.015279632993042,-0.01047260966152,-0.0088733714073896,-0.016312979161739,-0.010930553078651,-0.016044275835156,-0.0098395086824894,-0.012551329098642,-0.012774123810232,-0.013133616186678,-0.016300950199366,-0.010053531266749,-0.017217565327883,-0.0080712949857116,-0.029427010565996,-0.017391532659531,0.0018669569399208,-0.013150968588889,-0.017300115898252,-0.014890076592565,-0.011541057378054,-0.037836469709873,-0.013079909607768,-0.021200481802225,-0.0046205767430365,-0.012706366367638,-0.01949249394238,-0.019509268924594,-0.0081580597907305,-0.014825160615146,-0.017855560407043,-0.016442134976387,-0.0078561026602983,-0.018782671540976,-0.016015127301216,-0.010170502588153,-0.01113766245544,-0.015113985165954,-0.01031953189522,-0.014269861392677,-0.014078508131206,-0.010404966771603,-0.013500208035111,-0.015408399514854,-0.015370397828519,-0.0090552642941475,-0.014136315323412,-0.0081526823341846,-0.01516848616302,-0.013745142146945,-0.013203728012741,-0.011619112454355,-0.011737931519747,-0.013722442090511,-0.014394938014448,-0.010360977612436,-0.01226307824254,-0.014138614758849,-0.019313085824251,-0.01179035846144,-0.012571267783642,-0.015276987105608,-0.017866861075163,-0.019991874694824,-0.017199084162712,-0.023151688277721,-0.014199679717422,-0.010476110503078,-0.014493627473712,-0.017161309719086,-0.016990605741739,-0.0078994259238243,-0.025786651298404,-0.0081925205886364,0.0061315684579313,-0.0032970020547509,-0.011756276711822,-0.009323813021183,-0.019316293299198,-0.014668634161353,-0.010882104746997,-0.01656480692327,-0.010522462427616,-0.018867613747716,-0.01336432993412,-0.027132168412209,-0.036285288631916,-0.011756669729948,-0.017150057479739,-0.0089635876938701,-0.01076752319932,-0.019921321421862],"nInputPlane":64},{"weight":[[[[0.002193491673097,-0.026343662291765,0.059390231966972],[0.041366688907146,0.077055849134922,0.0136853819713],[-0.01859756372869,-0.0088797872886062,0.056477084755898]],[[0.029942356050014,0.0012539674062282,-0.014807171188295],[-0.051094070076942,-0.044345956295729,0.11678379774094],[0.059287399053574,-0.035706236958504,0.0064384979195893]],[[-0.066179156303406,0.09411558508873,-0.033154919743538],[-0.030113581568003,0.025107221677899,-0.10236317664385],[-0.16188292205334,0.061129715293646,0.039531502872705]],[[0.0015544410562143,0.019944915547967,0.086357094347477],[-0.038147576153278,0.10574308782816,-0.02452278137207],[-0.050509948283434,0.045593701303005,-0.046336606144905]],[[-0.035785555839539,-0.026030000299215,0.011650580912828],[0.015804609283805,-0.071549415588379,-0.016833707690239],[-0.010902862995863,0.033854067325592,0.0089342361316085]],[[0.060494516044855,-0.034500066190958,-0.071442320942879],[-0.064746372401714,-0.061941970139742,-0.072247833013535],[0.038295529782772,-0.034705750644207,0.020479012280703]],[[0.048058155924082,-0.021403826773167,0.040319487452507],[-0.069683313369751,-0.08758457750082,-0.042080134153366],[0.012940253131092,-0.0041856323368847,-0.11551296710968]],[[0.037533447146416,0.01967491954565,-0.030125986784697],[-0.074879482388496,-0.070922777056694,0.025635298341513],[0.032100461423397,0.020845778286457,0.0096325539052486]],[[-0.0021050807554275,-0.036377780139446,-0.035024959594011],[0.02036695368588,-0.053793713450432,0.013241368345916],[0.058169215917587,-0.090981587767601,0.034386280924082]],[[-0.013576854020357,0.085576802492142,0.14048963785172],[0.0062414412386715,0.017179235816002,-0.0010153187904507],[0.1097933575511,-0.03682392463088,-0.0067676585167646]],[[-0.0076148575171828,-0.068699322640896,-0.051809057593346],[0.026029514148831,-0.0086307926103473,0.095271125435829],[0.018464859575033,0.04365673661232,0.15108253061771]],[[-0.030429707840085,-0.085183046758175,-0.060971554368734],[0.15941132605076,0.0089211827144027,-0.1070284768939],[-0.033926151692867,0.0086055137217045,-0.017069889232516]],[[-0.059630084782839,0.027141775935888,0.033748313784599],[0.056116443127394,0.018638405948877,0.10309729725122],[-0.054773684591055,-0.0061697689816356,0.056038174778223]],[[-0.0064563411287963,-0.027739698067307,-0.092848375439644],[-0.041297242045403,-0.081799626350403,0.025691539049149],[0.049391236156225,-0.070556372404099,-0.071592062711716]],[[-0.061055224388838,-0.010852982290089,0.09359685331583],[-0.084164142608643,-0.0012298407964408,0.0379419028759],[0.10570511966944,-0.087447255849838,0.020606867969036]],[[-0.061760939657688,-0.089273370802402,-0.024544781073928],[0.043230384588242,0.034178901463747,0.031247586011887],[0.03752314299345,-0.087044768035412,0.0047242511063814]],[[-0.061017625033855,0.029851207509637,0.011353057809174],[-0.090817578136921,0.0021802575793117,0.13471284508705],[-0.0068099927157164,0.096251927316189,-0.023148549720645]],[[-0.027284979820251,0.018578104674816,0.087953843176365],[0.048895843327045,-0.011935733258724,-0.11366354674101],[0.039803486317396,0.10139346122742,-0.064997725188732]],[[-0.082417599856853,0.015411512926221,0.026173045858741],[-0.0052024628967047,-0.019227648153901,0.018115309998393],[0.00054378749337047,0.10317244380713,-0.026496205478907]],[[0.012559584341943,0.0057862508110702,-0.00918123498559],[0.0095873661339283,-0.060349695384502,-0.035689245909452],[-0.010243133641779,0.028520155698061,-0.064117021858692]],[[-0.081892818212509,0.025465257465839,0.042531467974186],[0.094268843531609,-0.061742469668388,0.033077705651522],[0.043062124401331,-0.0027691961731762,0.086255103349686]],[[0.013925894163549,-0.024206617847085,-0.0052762539125979],[-0.033126812428236,0.039780888706446,0.038133949041367],[0.031924281269312,-0.0038489433936775,-0.02513382025063]],[[0.052513178437948,0.0075355009175837,0.21120496094227],[-0.001591513864696,0.16589738428593,-0.052699044346809],[0.015614179894328,0.01627142354846,0.030280258506536]],[[-0.01244411431253,0.0025572960730642,0.17043836414814],[-0.11271585524082,0.046504497528076,0.013213052414358],[0.079245388507843,0.045732408761978,-0.0031748886685818]],[[-0.056148488074541,0.0057858065702021,-0.082170754671097],[0.0045002861879766,-0.016367366537452,-0.017096124589443],[0.015291515737772,0.05727468803525,0.013611457310617]],[[-0.054326042532921,0.070697106420994,-0.098802641034126],[0.04796876758337,0.000730944739189,-0.021889420226216],[-0.0041133463382721,0.054430078715086,-0.088302627205849]],[[-0.057868231087923,-0.041931334882975,0.044851537793875],[-0.071388386189938,-0.10638187080622,-0.019358113408089],[0.1034814119339,0.11129852384329,0.044968325644732]],[[-0.051343072205782,-0.010446235537529,0.006668436806649],[0.016796454787254,0.087842337787151,-0.0070303371176124],[0.035918649286032,0.0054802186787128,-0.06999022513628]],[[-0.0048565655015409,0.026585290208459,-0.028658891096711],[-0.096546947956085,-0.070238165557384,-0.056704264134169],[-0.014228958636522,-0.11086022853851,-0.040588911622763]],[[-0.051704175770283,-0.0036281095817685,0.011680463328958],[-0.00053904112428427,-0.045187693089247,0.034577004611492],[-0.040910467505455,-0.033998969942331,0.023022683337331]],[[-0.0021128377411515,0.15080931782722,0.056606907397509],[0.058277010917664,0.054814595729113,-0.057392466813326],[-0.078716620802879,-0.055374186486006,-0.063703626394272]],[[-0.020854851230979,0.00042087846668437,-0.082978136837482],[0.15160767734051,-0.033665034919977,-0.023321583867073],[-0.047283057123423,0.077418938279152,-0.085263691842556]],[[-0.026599576696754,-0.055711813271046,0.016688590869308],[-0.014317535795271,-0.017315734177828,-0.019079275429249],[0.0050233122892678,0.061557155102491,0.0085306344553828]],[[-0.001536502270028,-0.10267613828182,0.041496217250824],[-0.040122769773006,-0.09245041757822,-0.034444432705641],[-0.021651152521372,0.021354109048843,-0.0092707881703973]],[[-0.014279455877841,-0.052276019006968,-0.025197541341186],[0.11027812957764,0.0046453946270049,0.002081910148263],[0.056622497737408,0.089373782277107,0.044421963393688]],[[-0.025221072137356,0.082623928785324,-0.0027625125367194],[-0.016365991905332,0.047218564897776,0.11711078137159],[-0.032868985086679,0.056405462324619,0.14176125824451]],[[-0.06103939563036,-0.0082453629001975,0.1844352632761],[0.033835168927908,0.001429806696251,0.095469668507576],[-0.0094410879537463,-0.072198122739792,0.097277984023094]],[[0.035097949206829,-0.014050574973226,-0.0039840368553996],[-0.11113210022449,-0.011680863797665,-0.067696914076805],[0.027866523712873,0.0056507061235607,-0.010537272319198]],[[0.016738042235374,0.029554085806012,0.12009145319462],[0.074844039976597,0.066161334514618,0.15857098996639],[0.036919131875038,-0.058068290352821,-0.0058492328971624]],[[-0.012751116417348,0.01272436697036,0.038694024085999],[-0.032697204500437,-0.091044075787067,-0.01116893813014],[-0.037441369146109,0.11746252328157,0.1424113959074]],[[0.063033379614353,-0.060624599456787,0.059969402849674],[0.035340663045645,0.024511329829693,-0.0049368618056178],[-0.021927986294031,0.022244423627853,0.07330996543169]],[[0.06061102449894,-0.031573358923197,-0.076496221125126],[-0.026498937979341,-0.013958926312625,-0.0082616582512856],[0.014916378073394,0.065251424908638,0.038418244570494]],[[-0.041620589792728,0.099888429045677,-0.042061042040586],[-0.0083896098658442,0.022906308993697,0.0048391208983958],[0.038687974214554,0.063142843544483,-0.0013712967047468]],[[-0.00047176494263113,0.021581623703241,0.027584372088313],[-0.01605524122715,0.039138235151768,0.061242297291756],[0.043896671384573,0.00028717800159939,0.033870499581099]],[[0.034492086619139,0.084454752504826,0.036016531288624],[0.018503295257688,0.0010167809668928,0.047895226627588],[-0.06845211237669,-0.049960557371378,-0.047369241714478]],[[0.059348218142986,0.013157812878489,0.025214463472366],[-0.014110292308033,0.05044823884964,-0.04375459626317],[-0.07074423879385,-0.017738562077284,-0.021073557436466]],[[0.0027800993993878,0.034255895763636,-0.015731193125248],[0.066465385258198,-0.049578003585339,-0.0042849876917899],[-0.056898593902588,-0.01745668426156,0.020300367847085]],[[-0.029953634366393,-0.025840785354376,-0.058464013040066],[0.040665436536074,-0.0091030560433865,-0.02400385402143],[-0.013139609247446,0.070122443139553,-0.013939563184977]],[[0.023080689832568,0.0085967434570193,0.1510643362999],[-0.027722127735615,0.017373658716679,0.28036525845528],[0.037484116852283,-0.019448174163699,0.067095600068569]],[[-0.046095490455627,0.0068424013443291,-0.040299605578184],[0.015819007530808,0.038799095898867,-0.049305539578199],[-0.0048201992176473,0.0032208214979619,0.05152914300561]],[[0.0012619006447494,0.017029773443937,-0.024575820192695],[-0.031120132654905,-0.027157114818692,-0.036856293678284],[0.031400661915541,-0.069934763014317,0.019271804019809]],[[-0.039550378918648,0.056685093790293,-0.0043269130401313],[-0.09246701747179,-0.040047202259302,0.058411344885826],[0.032348338514566,-0.042010843753815,0.073952682316303]],[[-0.048562649637461,-0.094984963536263,-0.0888641923666],[-0.026238964870572,-0.057940829545259,-0.042105928063393],[-0.0085037294775248,-0.062047224491835,0.026170393452048]],[[0.028034629300237,0.080543428659439,-0.067420333623886],[-0.034965436905622,-0.039737034589052,-0.039597049355507],[0.11408071219921,0.066203609108925,0.053117070347071]],[[0.11942525207996,-0.075013235211372,0.02469433285296],[-0.035819120705128,-0.085798807442188,-0.049928408116102],[-0.022309696301818,-0.049151014536619,-0.03236435353756]],[[0.04336966201663,0.062910325825214,-0.0016732928343117],[-0.0081973671913147,-0.0068379784934223,0.050048064440489],[-0.013938182033598,-0.034087561070919,0.021319083869457]],[[-0.011017244309187,0.030811684206128,0.089361943304539],[0.017746031284332,-0.076852686703205,0.0049696797505021],[0.047771971672773,-0.046155512332916,0.038548659533262]],[[-0.051541745662689,-0.10052659362555,-0.0063350452110171],[-0.012823083437979,-0.046587504446507,-0.073225654661655],[0.009040329605341,0.0059323040768504,0.051740549504757]],[[0.026154981926084,-0.020638575777411,0.0078957881778479],[0.047298464924097,-0.045680154114962,-0.078669779002666],[0.054212737828493,0.031525235623121,0.056562524288893]],[[-0.019403928890824,-0.011455188505352,0.025823585689068],[0.01403811853379,0.1241691634059,-0.068128041923046],[0.022215705364943,-0.077591516077518,0.059241972863674]],[[-0.054712485522032,0.015519262291491,0.058283470571041],[-0.0004367847868707,-0.0079975547268987,0.11259559541941],[0.074379585683346,0.044449437409639,0.0041275676339865]],[[0.030218442901969,-0.067570634186268,0.035254061222076],[0.013150949962437,-0.058128658682108,0.06030248478055],[-0.0093319648876786,0.027425857260823,0.034250672906637]],[[-0.070271693170071,-0.017256347462535,0.027484398335218],[-0.010051776655018,0.0268694460392,0.018954031169415],[0.015181997790933,0.034942995756865,-0.048645325005054]],[[0.017281789332628,0.15221227705479,0.0032631151843816],[0.037712730467319,-0.0003632205480244,0.13783125579357],[-0.017602672800422,-0.053195778280497,-0.018540415912867]],[[-0.05272500962019,-0.13808661699295,-0.025799833238125],[-0.067085430026054,-0.028343871235847,0.00058053358225152],[0.003135334700346,0.015319338068366,0.053601481020451]],[[-0.023432049900293,-0.062258709222078,0.077775083482265],[-0.0041549503803253,0.015205474570394,-0.070142716169357],[0.035553999245167,0.043947003781796,-0.055249113589525]],[[0.077886551618576,-0.0045526847243309,-0.013520433567464],[0.036948293447495,-0.043199893087149,-0.023286048322916],[0.043439798057079,0.056262861937284,0.095334388315678]],[[0.040648065507412,-0.036601763218641,0.046913590282202],[-0.070145636796951,-0.015652950853109,0.038209993392229],[-0.035325407981873,0.065706714987755,-0.021997980773449]],[[0.012092026881874,-0.083404801785946,0.070068039000034],[0.0057061952538788,-0.089158073067665,0.040993854403496],[0.052768718451262,-0.051147282123566,0.027172639966011]],[[-0.04803067818284,0.026451103389263,0.025549583137035],[-0.075019724667072,-0.015865629538894,0.084571309387684],[0.065943971276283,-0.020953714847565,-0.025796113535762]],[[-0.035326465964317,-0.019077239558101,-0.072204396128654],[-0.042255025357008,0.09289439022541,0.023847067728639],[-0.052635375410318,0.04496318846941,0.027927219867706]],[[-0.02555906958878,-0.050649799406528,0.0019775384571403],[-0.073826797306538,-0.053694434463978,0.047129984945059],[0.020268203690648,0.073219127953053,-0.024855364114046]],[[-0.059014778584242,-0.028375338762999,0.032927192747593],[-0.090630732476711,0.017350943759084,0.036925621330738],[0.0099034812301397,-0.061905093491077,-0.021259225904942]],[[0.047073472291231,0.011092516593635,-0.01336928550154],[0.0047002835199237,0.0021800512913615,0.015413421206176],[0.011670306324959,-0.0051372521556914,-0.038867615163326]],[[-0.020628018304706,0.018086235970259,-0.087675474584103],[0.066185601055622,-0.083554148674011,-0.16240562498569],[-0.040845111012459,0.0016854366986081,-0.017399739474058]],[[-0.041836567223072,0.10573336482048,0.070515312254429],[-0.00065935397287831,0.00069920701207593,0.02773655205965],[-0.040337327867746,0.03003716096282,0.010649467818439]],[[-0.052541043609381,0.051866874098778,0.11884678900242],[-0.07225788384676,-0.060864750295877,0.039120849221945],[-0.023118183016777,-0.10611882060766,0.022738868370652]],[[-0.011679821647704,-0.0044359229505062,-0.022718204185367],[0.012824374251068,0.050174508243799,0.00072024285327643],[0.021927028894424,0.055762771517038,0.005678819026798]],[[0.060346785932779,-0.052368510514498,-0.01016036234796],[0.023937055841088,-0.11265441775322,-0.035478003323078],[0.067525841295719,-0.094123296439648,-0.03959571570158]],[[-0.049213960766792,-0.019059062004089,-0.05889506265521],[0.036295954138041,0.044159166514874,-0.07934532314539],[0.023005312308669,0.051856972277164,0.074568323791027]],[[0.028526874259114,-0.031303595751524,-0.025422366335988],[0.030895506963134,-0.0014947716845199,-0.019106457009912],[-0.025358028709888,0.03059222176671,-0.073510684072971]],[[-0.013574659824371,-0.011818498373032,0.014137648977339],[0.07831209897995,0.063532955944538,-0.056262124329805],[0.032389830797911,0.060283154249191,-0.0048281997442245]],[[-0.11989615857601,0.053306605666876,0.036398638039827],[-0.062073778361082,-0.010803824290633,-0.096220821142197],[-0.070745915174484,0.027159456163645,-0.07949435710907]],[[-0.076399937272072,-0.06215563416481,0.0063922652043402],[0.016441900283098,0.031573325395584,-0.0056721824221313],[-0.011163086630404,-0.007463475689292,0.033642590045929]],[[0.039953846484423,0.05934776738286,0.048942424356937],[-0.11014331877232,0.012350281700492,-0.0063235401175916],[0.017992086708546,0.078505001962185,0.059845726937056]],[[0.062208209186792,0.037787139415741,-0.01599932461977],[-0.10330981016159,-0.009713594801724,0.039072204381227],[-0.0066439583897591,0.05038084462285,0.023345753550529]],[[0.036537908017635,-0.010097464546561,-0.07098001986742],[-0.058153491467237,-0.062488995492458,0.024221720173955],[0.036571186035872,0.056379970163107,0.055320639163256]],[[0.00047730727237649,0.035766333341599,-0.00040326893213205],[0.032512094825506,-0.062730401754379,-0.015000952407718],[-0.0025278716348112,0.0054341312497854,-0.014870224520564]],[[-0.0070135979913175,-0.034797292202711,-0.044884592294693],[0.011977000162005,-0.090515457093716,-0.061601679772139],[-0.0041117831133306,0.023844765499234,-0.098639652132988]],[[0.0049258316867054,0.12563981115818,-0.0047751246020198],[0.015425154007971,0.014226264320314,0.012746868655086],[-0.097129441797733,-0.037584610283375,0.075150787830353]],[[-0.11161372065544,-0.022031277418137,0.0012648304691538],[0.012498659081757,-0.092193298041821,-0.012372331693769],[-0.0057802596129477,-0.065213777124882,-0.07268625497818]],[[0.021051252260804,0.095750346779823,0.024759005755186],[-0.016129432246089,-0.015130587853491,0.0034587413538247],[-0.073297657072544,0.0064581697806716,0.078895635902882]],[[0.0013404566561803,-0.042224653065205,0.095639705657959],[0.047461729496717,-0.0030860116239637,0.092216819524765],[0.11288499087095,-0.063792638480663,-0.011347536928952]],[[0.0010604725684971,0.050626926124096,-0.049693875014782],[-0.01917508803308,-0.054922662675381,0.017145946621895],[0.0089565245434642,0.19800417125225,0.034788146615028]],[[-0.025207413360476,-0.050344206392765,-0.0070034293457866],[-0.0326320938766,0.0024325281847268,0.050047356635332],[0.063198938965797,0.025235936045647,-0.16658215224743]],[[-0.047847364097834,0.043930381536484,-0.044790796935558],[0.010113805532455,0.095643542706966,-0.06841766089201],[0.047174051403999,0.0036393627524376,-0.0051865712739527]],[[-0.077309250831604,0.10915834456682,-0.0080052800476551],[0.090540766716003,0.013460349291563,-0.050066888332367],[-0.0072284773923457,-0.0027471389621496,0.015593942254782]],[[0.055998370051384,-0.064369156956673,0.011692237108946],[0.058862544596195,-0.073778048157692,0.066368781030178],[-0.12407242506742,-0.01009860727936,-0.0047469176352024]],[[0.043895959854126,-0.049198031425476,-0.095961451530457],[-0.019121624529362,0.04301805794239,-0.081705503165722],[-0.0098006427288055,-0.016592100262642,0.0016843072371557]],[[-0.044595513492823,-0.051477201282978,-0.040136996656656],[-0.055433981120586,0.014495971612632,0.086927630007267],[-0.013580150902271,-0.030605427920818,0.025016797706485]],[[-0.046394411474466,-0.02964342199266,-0.031798496842384],[0.059741090983152,0.024940919131041,-0.046418372541666],[-0.067060083150864,-0.02543899603188,-0.0057399868965149]],[[0.09325996786356,0.064866915345192,-0.018026540055871],[-0.030723111703992,0.0022993220482022,-0.029975084587932],[0.0027454332448542,0.015117510221899,-0.035771869122982]],[[0.022817248478532,0.00012689814320765,-0.081494048237801],[-0.040225494652987,-0.080699540674686,-0.052848197519779],[0.033605147153139,0.036063350737095,0.032256331294775]],[[0.078656598925591,0.013432913459837,0.043587613850832],[-0.026865780353546,0.054283905774355,0.086880624294281],[-0.03471415117383,-0.064866684377193,0.074991419911385]],[[0.011570989154279,0.028194211423397,-0.0626240670681],[-0.0003833650262095,0.025499049574137,0.04807997867465],[-0.023975221440196,-0.040714383125305,-0.0015328729059547]],[[-0.063228212296963,0.014013444073498,-0.040834441781044],[-0.020291037857533,0.031868495047092,-0.12368860095739],[0.076956890523434,-0.064869701862335,0.0011191871017218]],[[-0.096115671098232,-0.027658574283123,-0.026160098612309],[0.070680856704712,0.010157915763557,-0.0092480415478349],[-0.018193056806922,0.020357372239232,-0.018335578963161]],[[0.066966898739338,0.010359667241573,-0.033010717481375],[0.059220857918262,-0.023922571912408,0.029916141182184],[-0.057958334684372,0.033554594963789,-0.0076612131670117]],[[0.033992882817984,-0.032268777489662,-0.0040961797349155],[-0.018998887389898,0.024681642651558,-0.0073278751224279],[-0.025042694061995,-0.020591240376234,-0.038379088044167]],[[0.084858231246471,-0.068939097225666,0.0051777074113488],[-0.04223133996129,-0.02410639077425,0.0057815918698907],[0.016209542751312,-0.015878358855844,-0.020982308313251]],[[0.040170647203922,0.055466212332249,0.053448535501957],[0.049463599920273,-0.049571804702282,-0.013795069418848],[0.062760084867477,0.042237676680088,0.014170775189996]],[[-0.046538800001144,0.026990927755833,0.027581259608269],[-0.019589437171817,-0.0079223737120628,-0.032981120049953],[-0.011216249316931,-0.0055917464196682,0.029431192204356]],[[-0.040649354457855,0.0040727942250669,-0.036914192140102],[0.12891738116741,0.054213605821133,-0.1378385424614],[0.012865654192865,0.081917822360992,-0.0049421079456806]],[[-0.053749404847622,0.035489302128553,-0.033403843641281],[-0.005282764788717,0.00096767756622285,-0.0032063382677734],[-0.071007318794727,-0.014874218963087,-0.04506092146039]],[[-0.10815131664276,-0.12583735585213,0.12150823324919],[-0.050101570785046,-7.8967743320391e-05,-0.013969174586236],[0.048727095127106,0.015221307054162,-0.044597148895264]],[[-0.07699066400528,-0.10833416879177,-0.021493019536138],[0.02838035300374,-0.042401093989611,0.03264033421874],[-0.058196738362312,-0.01026442181319,-0.046196222305298]],[[0.03830849006772,0.014545197598636,0.00055050308583304],[-0.027269808575511,-0.066937707364559,0.011127691715956],[0.028638510033488,-0.083991691470146,0.027261186391115]],[[0.063022799789906,-0.039298143237829,0.0057147643528879],[0.046801265329123,-0.004188702441752,0.010742635466158],[0.024533351883292,0.057494394481182,0.19408150017262]],[[0.017341239377856,0.074282176792622,-0.0049242782406509],[-0.022292330861092,-0.0032934264745563,0.0080578550696373],[-0.025370748713613,0.019742909818888,0.14685563743114]],[[0.10625275969505,-0.047922100871801,0.038803473114967],[0.095832973718643,0.098282910883427,0.10192365199327],[-0.074578799307346,-0.0120301945135,0.035363972187042]],[[0.021450880914927,0.010527268052101,0.042820960283279],[0.087480686604977,-0.018535600975156,0.032234381884336],[-0.028427235782146,-0.037331365048885,-0.045057602226734]],[[-0.0041358615271747,0.017582813277841,-0.091102577745914],[-0.046378392726183,-0.10288435965776,-0.061743631958961],[-0.068744421005249,0.064411491155624,0.038943376392126]],[[-0.021950012072921,-0.0030543010216206,0.08904954791069],[-0.075615264475346,-0.02100563980639,0.018811970949173],[0.048631552606821,-0.0096426587551832,-0.0080588310956955]],[[0.04829603433609,-0.029942199587822,-0.092240236699581],[-0.012181241996586,0.046163350343704,0.068832628428936],[-0.061557628214359,0.044937886297703,-0.0071318671107292]],[[-0.023506155237556,-0.033480100333691,0.041526846587658],[0.024834685027599,-0.025646874681115,0.1443490087986],[-0.094265550374985,-0.042934514582157,0.1094767972827]],[[0.011258947663009,0.17327371239662,-0.0091777322813869],[-0.0051930923946202,0.079916179180145,0.041017718613148],[-0.004107678309083,-0.069927982985973,-0.038417026400566]],[[-0.081704713404179,0.038112748414278,0.023335224017501],[0.018750378862023,0.017137516289949,0.084389828145504],[0.057229604572058,0.041421353816986,-0.034156031906605]],[[-0.050408612936735,-0.011691942811012,-0.0051430347375572],[0.035018343478441,0.078752584755421,-0.033916611224413],[-0.020464830100536,0.031115222722292,0.024683309718966]]],[[[0.077103108167648,-0.021051915362477,0.10382452607155],[0.059121530503035,0.017459340393543,0.15040558576584],[-0.058175999671221,-0.050818059593439,0.12088514119387]],[[-0.17456857860088,-0.036891765892506,-0.046947222203016],[-0.1126311942935,0.0011953325010836,-0.029790446162224],[0.1289467215538,0.07414898276329,0.033280786126852]],[[-0.020043166354299,-0.006128222681582,0.030804697424173],[-0.00038451570435427,0.027280103415251,0.029601693153381],[0.02986559830606,0.073657140135765,-0.028455479070544]],[[0.032902806997299,0.038937468081713,-0.18290156126022],[0.052964892238379,-0.082754477858543,-0.10493645071983],[-0.049880005419254,-0.059811916202307,-0.17054450511932]],[[0.15512280166149,0.10028520226479,0.11893307417631],[-0.038281410932541,0.096099071204662,0.18258677423],[-0.1154398098588,-0.058208022266626,0.13545259833336]],[[0.11733058840036,-0.015646953135729,0.092890933156013],[0.061093106865883,-0.097023367881775,0.012415976263583],[0.24965991079807,-0.12482789158821,-0.0054883160628378]],[[0.044623665511608,0.11900552362204,0.20174154639244],[-0.027629688382149,0.056747835129499,0.050141375511885],[0.13524509966373,0.0074750292114913,-0.032953061163425]],[[-0.01532293856144,-0.050176691263914,0.0040021636523306],[-0.044446025043726,0.040527701377869,-0.051514390856028],[-0.12071803212166,0.0028826738707721,-0.024472245946527]],[[-0.0094522181898355,-0.12134228646755,-0.026276065036654],[-0.084920383989811,0.048051729798317,-0.024111568927765],[-0.056785851716995,-0.083440691232681,0.068162299692631]],[[-0.023769477382302,0.055267155170441,-0.029412023723125],[0.020947942510247,-0.07877004891634,0.061677373945713],[0.027825783938169,-0.085488103330135,0.042336728423834]],[[0.13471041619778,0.1204826682806,0.11813539266586],[0.17335945367813,0.17215517163277,-0.10711435973644],[0.069847099483013,-0.0057841218076646,0.038075018674135]],[[0.13609965145588,0.037210531532764,0.087294466793537],[0.16513961553574,0.075993582606316,0.0024786049034446],[-0.11628787219524,-0.047812666743994,-0.15608805418015]],[[-0.097247630357742,-0.1070487126708,0.0036373571492732],[-0.032739974558353,0.036131769418716,0.20600567758083],[-0.11176580935717,0.13887679576874,0.10575672984123]],[[0.0069918809458613,0.073580019176006,0.057626210153103],[0.029173040762544,0.034901406615973,0.040792752057314],[0.045416701585054,0.12005236744881,0.019241468980908]],[[-0.090864382684231,-0.031289514154196,-0.16755838692188],[-0.059901222586632,-0.12331796437502,-0.14991898834705],[0.012097164057195,0.026065777987242,-0.050739578902721]],[[0.27607959508896,-0.056753642857075,0.14884477853775],[0.071764536201954,-0.06064311042428,-0.014633799903095],[0.20511493086815,-0.10350408405066,-0.078800603747368]],[[-0.025076147168875,0.092074789106846,0.07192649692297],[-0.0069492165930569,0.012274581007659,-0.031019359827042],[-0.14094687998295,-0.012963309884071,-0.02720233798027]],[[0.0204819701612,0.043982457369566,0.022195804864168],[-0.018225584179163,-0.00023277233412955,-0.0013968325220048],[-0.059841115027666,-0.11072313040495,0.11160077154636]],[[0.21770480275154,0.18038833141327,0.090130746364594],[0.061937712132931,-0.015342248603702,0.041746359318495],[-0.069211587309837,0.064302772283554,-0.12341138720512]],[[0.015705805271864,0.061610259115696,-0.082311823964119],[-0.19372898340225,0.059970751404762,-0.12789061665535],[-0.15434929728508,0.02854048833251,-0.14006446301937]],[[-0.10159692168236,-0.062590695917606,-0.036311995238066],[-0.11271995306015,-0.089270375669003,-0.13652269542217],[-0.057475171983242,-0.19121362268925,-0.10147169232368]],[[0.22671057283878,-0.069088660180569,-0.12977387011051],[0.15615785121918,0.080978736281395,0.0037811859510839],[0.12331146001816,0.03208677098155,0.093021936714649]],[[0.031710416078568,-0.078392557799816,0.0074164369143546],[0.0086996704339981,0.13374321162701,0.029107235372066],[0.001468475908041,-0.016943216323853,-0.099580988287926]],[[-0.095981270074844,-0.0060616596601903,0.086862683296204],[-0.058520261198282,-0.026085337623954,-0.02564200013876],[-0.027442755177617,0.055200155824423,-0.095974683761597]],[[0.09739201515913,-0.0071024755015969,0.11998685449362],[0.15827108919621,0.076344840228558,-0.093975827097893],[0.072488434612751,-0.035442519932985,0.086526416242123]],[[0.039886463433504,0.12887388467789,-0.059563837945461],[0.052362184971571,-0.071085207164288,-0.004492592997849],[-0.017040247097611,-0.13649424910545,0.19401784241199]],[[-0.087105602025986,0.14041709899902,0.027623688802123],[-0.12801806628704,0.1121481359005,-0.070044241845608],[-0.0069489497691393,0.1423653960228,0.017737753689289]],[[-0.134850025177,-0.080198511481285,-0.083115339279175],[-0.043037191033363,0.12417820096016,0.054096072912216],[0.10979671031237,0.050409618765116,-0.1761082559824]],[[-0.068719767034054,0.070642083883286,-0.10249399393797],[-0.061986643821001,0.021780323237181,-0.025982413440943],[-0.034411385655403,0.031110025942326,-0.15030743181705]],[[-0.034016858786345,0.040936984121799,-0.021165611222386],[0.097955718636513,-0.13508814573288,-0.044658344238997],[0.11083343625069,0.042408850044012,0.071757666766644]],[[-0.075620487332344,0.22390885651112,0.0442880615592],[0.030752839520574,-0.01161321438849,-0.11308114975691],[0.093436501920223,-0.095399118959904,-0.017994608730078]],[[-0.077947579324245,-0.073247388005257,0.19600276648998],[-0.10694513469934,0.095476172864437,0.21883401274681],[-0.08318030834198,-0.074399426579475,-0.010603429749608]],[[-0.022819010540843,-0.015811499208212,0.12642017006874],[-0.10412066429853,0.034034091979265,0.082816310226917],[0.066748969256878,0.044674906879663,-0.064278200268745]],[[-0.0063618305139244,-0.081416487693787,0.043893273919821],[0.059775438159704,-0.097762361168861,-0.037650167942047],[-0.13650232553482,-0.052178487181664,-0.043936550617218]],[[-0.18283653259277,-0.17816011607647,-0.052871156483889],[-0.17255061864853,-0.14458109438419,-0.069010496139526],[0.036557044833899,-0.090279422700405,-0.061713993549347]],[[-0.14809164404869,-0.068115808069706,0.025270108133554],[-0.089363485574722,-0.094284974038601,-0.084351375699043],[-0.18136976659298,-0.097958073019981,-0.093495026230812]],[[0.037337590008974,-0.0091379350051284,-0.048500649631023],[0.013587386347353,0.051933884620667,0.016372490674257],[-0.0015857273247093,-0.020889231935143,0.034804027527571]],[[-0.10148590803146,-0.065670095384121,0.17012667655945],[0.04912431165576,-0.083989500999451,-0.083301767706871],[0.23895111680031,0.1276952624321,0.13204400241375]],[[-0.024995669722557,0.033293254673481,-0.025477590039372],[0.11005206406116,-0.018664311617613,0.0060946238227189],[0.10271557420492,0.076202623546124,0.02241675183177]],[[0.13420939445496,-0.019363747909665,-0.1311709433794],[0.11463911086321,-0.085764594376087,0.064361400902271],[0.12167804688215,0.014047355391085,0.050803352147341]],[[0.059313531965017,-0.041486851871014,0.061488468199968],[0.062202133238316,-0.018409300595522,-0.087117224931717],[0.13399671018124,-0.0068607525900006,0.072515554726124]],[[-0.043508604168892,0.074382737278938,0.0011033961782232],[0.094287104904652,-0.05227754637599,-0.043919064104557],[0.090787477791309,0.061570946127176,-0.060845587402582]],[[-0.09725184738636,-0.065566748380661,0.021205069497228],[0.0065581556409597,-0.054243113845587,-0.10115669667721],[-0.098420158028603,0.078709818422794,-0.019172843545675]],[[0.082025274634361,-0.0025034788995981,-0.022831970825791],[-0.046931114047766,-0.033314812928438,-0.038652915507555],[-0.011964983306825,-0.041746497154236,-0.01835785806179]],[[0.0061327153816819,0.015559522435069,-0.013218875043094],[-0.056947231292725,-0.019659079611301,-0.044859360903502],[-0.01638706587255,0.036183629184961,0.033026628196239]],[[0.0029244171455503,-0.072646521031857,0.033644780516624],[0.030105514451861,-0.074289232492447,-0.15685008466244],[0.056638836860657,-0.057499572634697,-0.14893038570881]],[[-0.06046960875392,0.038237281143665,0.028080837801099],[0.058464221656322,-0.036743436008692,-0.16196075081825],[0.13641960918903,-0.11412643641233,0.024306502193213]],[[-0.031038971617818,-0.055873181670904,0.12258096784353],[-0.026204045861959,0.13920797407627,-0.0066401418298483],[0.067617811262608,0.099252730607986,-0.061304952949286]],[[-0.19602899253368,0.17473767697811,-0.011098459362984],[-0.015368731692433,0.10789308696985,-0.076715104281902],[-0.16768887639046,-0.029615877196193,-0.05763653293252]],[[-0.082114569842815,-0.0085088228806853,-0.11543869227171],[-0.010410679504275,-0.052396576851606,-0.086425460875034],[0.052682109177113,-0.021459838375449,0.042967423796654]],[[0.11164008826017,0.056472424417734,-0.050920747220516],[-0.051511213183403,-0.062112309038639,-0.053252335637808],[0.17265841364861,-0.14051350951195,-0.079069070518017]],[[-0.034581877291203,-0.07229145616293,0.07479389756918],[-0.0026338375173509,-0.074177756905556,0.020197782665491],[-0.061709146946669,-0.0115200066939,0.011440518312156]],[[0.11954761296511,0.014127026312053,0.012145280838013],[0.16965049505234,0.044556751847267,0.026243647560477],[0.10153391957283,-0.024635348469019,-0.063502639532089]],[[-0.097751371562481,-0.035485420376062,0.032636076211929],[-0.086956940591335,-0.022458432242274,0.0070199174806476],[-0.072143271565437,-0.051953759044409,-0.16825066506863]],[[0.013786602765322,0.12629766762257,0.054214015603065],[0.063408955931664,0.031622994691133,-0.19071233272552],[0.16040273010731,0.044855501502752,-0.066534735262394]],[[-0.045717295259237,0.0093620223924518,-0.014817145653069],[-0.074041962623596,-0.092521734535694,0.017499770969152],[0.003430649638176,0.081222787499428,-0.055081509053707]],[[-0.030501561239362,-0.038812264800072,0.060432583093643],[-0.093100994825363,-0.0077532799914479,-0.066785842180252],[-0.08315359801054,0.099132023751736,0.13352578878403]],[[-0.11939137428999,-0.10402311384678,0.046988505870104],[-0.10591910034418,-0.10403582453728,0.039182599633932],[-0.11438358575106,-0.055881977081299,0.11017994582653]],[[0.084105089306831,0.052503492683172,-0.1088273152709],[-0.087085075676441,-0.13567298650742,-0.033438064157963],[-0.081226423382759,-0.23158337175846,0.038241378962994]],[[0.11537938565016,0.2106748521328,-0.087567202746868],[0.094129115343094,0.091045245528221,-0.065561838448048],[0.15263076126575,0.20829510688782,0.027211895212531]],[[-0.082441806793213,-0.11721784621477,0.018235767260194],[-0.15222555398941,-0.047883603721857,-0.13361783325672],[-0.21795709431171,-0.19978168606758,0.16341538727283]],[[0.042511951178312,0.011244983412325,-0.091336190700531],[0.045574598014355,-0.11626848578453,-0.077614463865757],[-0.097118370234966,-0.12813402712345,-0.22213363647461]],[[0.020080370828509,0.05451736971736,0.017904227599502],[0.067397460341454,0.084152095019817,-0.0082078268751502],[-0.028354614973068,0.018040362745523,-0.097881272435188]],[[0.050163563340902,0.018527103587985,0.013995999470353],[0.0057588252238929,-0.061867985874414,-0.031593590974808],[-0.062889970839024,-0.1452903598547,0.041368070989847]],[[0.079007923603058,0.1043052598834,0.063652113080025],[0.011748882941902,0.10752414911985,0.00034852733369917],[0.075731813907623,0.080617420375347,-0.063013166189194]],[[-0.099907211959362,-0.12690107524395,-0.053125705569983],[-0.1532037705183,-0.053337458521128,0.089902520179749],[-0.11633114516735,0.065934404730797,0.043266288936138]],[[-0.086899429559708,-0.10575263947248,-0.1364706158638],[0.0083980038762093,-0.019440300762653,-0.034601025283337],[-0.0018826071172953,-0.061664681881666,-0.038501124829054]],[[0.0076706307008862,-0.03915848955512,-0.08824572712183],[-0.031742606312037,-0.021455204114318,0.0013079902855679],[0.035105992108583,-0.020741274580359,0.038231063634157]],[[-0.072821132838726,0.0034533804282546,0.091513000428677],[-0.060986246913671,0.048615451902151,0.12137264758348],[-0.009485905058682,0.092351645231247,0.094669133424759]],[[-0.008939272724092,-0.027830712497234,-0.073776841163635],[0.016613436862826,-0.011345730163157,0.097176052629948],[0.052291225641966,0.082209937274456,0.26100769639015]],[[0.075009562075138,-0.054670289158821,-0.090139873325825],[-0.11410906165838,-0.050293650478125,0.026562940329313],[-0.057698294520378,-0.062047388404608,-0.0012570032849908]],[[0.004251595120877,0.043545592576265,0.062999919056892],[0.066568225622177,0.0022841542959213,-0.053304892033339],[-0.0039322758093476,0.030216535553336,-0.010706044733524]],[[-0.0024505243636668,0.0034291534684598,-0.025059776380658],[-0.10247500240803,-0.050507560372353,-0.02463635802269],[-0.14164301753044,-0.087946467101574,-0.035440947860479]],[[0.044992972165346,-0.034570805728436,0.066551819443703],[-0.044456716626883,0.029664015397429,0.069319382309914],[-0.08762776106596,0.12483599036932,0.03239881247282]],[[-0.054658520966768,0.044924523681402,-0.15533097088337],[0.029184063896537,-0.024318479001522,-0.041292071342468],[-0.17163722217083,-0.10233172029257,-0.081933595240116]],[[-0.091616094112396,0.087966188788414,0.16327160596848],[-0.046588554978371,0.096947759389877,0.096679411828518],[-0.13528577983379,0.077655129134655,0.13514798879623]],[[-0.15824228525162,-0.070783250033855,-0.08604821562767],[-0.074703246355057,-0.12953196465969,-0.063664801418781],[-0.10120491683483,-0.052774362266064,-0.0099736480042338]],[[-0.19664327800274,-0.11143489181995,-0.14161556959152],[-0.1285116225481,0.049530282616615,-0.13780845701694],[-0.12405840307474,0.029657419770956,-0.086424879729748]],[[0.082717880606651,0.19075298309326,-0.032229721546173],[0.090648628771305,-0.16467675566673,-0.06719733774662],[-0.057842083275318,0.010177769698203,-0.031979586929083]],[[-0.11299058794975,-0.043127864599228,-0.043757576495409],[-0.075485624372959,-0.087083645164967,-0.097317092120647],[-0.15291680395603,-0.019792271777987,-0.094390779733658]],[[0.03932423889637,-0.020036716014147,0.089423142373562],[0.038091454654932,0.044419445097446,0.096429087221622],[0.1292409747839,-0.13042399287224,-0.100047506392]],[[0.11969677358866,0.1518137305975,-0.10439898073673],[0.0031314725056291,0.1215011999011,0.05573658645153],[-0.090195998549461,-0.11137188225985,-0.066371187567711]],[[-0.031155176460743,0.27775430679321,0.21866625547409],[-0.090242385864258,0.099555172026157,0.09120536595583],[-0.17349129915237,0.063509918749332,0.28199303150177]],[[-0.028130883350968,-0.0666608735919,-0.14951014518738],[-0.13320653140545,-0.18324725329876,-0.11706801503897],[-0.16784903407097,-0.23996469378471,-0.17554724216461]],[[-0.031295362859964,-0.05754966288805,-0.039493631571531],[0.17220084369183,-0.12402641773224,0.024034580215812],[0.021232267841697,-0.029799304902554,0.064384952187538]],[[0.0068989377468824,-0.011393553577363,-0.012195257470012],[0.037093739956617,0.014981852844357,0.016941379755735],[-0.00068351451773196,-0.019083393737674,0.091183595359325]],[[-0.014549496583641,0.0081500178202987,-0.12704975903034],[-0.025316998362541,-0.098249733448029,-0.18762159347534],[0.035420220345259,-0.068208202719688,0.020329490303993]],[[0.13319200277328,-0.035304475575686,-0.1081984937191],[0.063983872532845,-0.074046581983566,-0.040586918592453],[0.045793510973454,0.062874428927898,-0.029712246730924]],[[0.1861307322979,0.25415608286858,0.028986174613237],[0.05552290007472,0.036855962127447,0.030850669369102],[0.13430140912533,0.091601982712746,0.0096584353595972]],[[-0.013290020637214,0.074616007506847,-0.075358361005783],[0.12682415544987,-0.019450413063169,-0.13707469403744],[0.00059931754367426,0.054567441344261,-0.1619931012392]],[[-0.058052472770214,-0.050863593816757,-0.074833884835243],[-0.022776773199439,-0.070116862654686,-0.022424563765526],[0.0029288732912391,-0.074312642216682,-0.025224670767784]],[[-0.060801845043898,-0.049034889787436,-0.12030076980591],[-0.048320766538382,-0.14859004318714,-0.055129330605268],[-0.074643075466156,0.039140336215496,0.055824428796768]],[[-0.055992156267166,-0.066946960985661,-0.065900802612305],[0.1367542296648,0.032678924500942,0.035265140235424],[-0.10653983056545,-0.0034432862885296,0.21976183354855]],[[-0.13524259626865,-0.26510936021805,0.063874401152134],[-0.20281879603863,-0.12845702469349,0.050260197371244],[-0.058014653623104,-0.14473402500153,0.055464956909418]],[[-0.020847389474511,0.039159383624792,0.043737601488829],[-0.051031198352575,0.001760576153174,0.1693709641695],[0.17000895738602,0.18609030544758,0.1344732940197]],[[0.061933856457472,0.047802969813347,0.092353366315365],[0.02887493185699,0.015184610150754,0.032819129526615],[0.10390955209732,-0.18612568080425,-0.040669403970242]],[[-0.093076936900616,0.015713788568974,-0.063636139035225],[-0.16319900751114,-0.12733022868633,-0.023557767271996],[-0.13827387988567,-0.053545568138361,0.10957191884518]],[[-0.048023615032434,0.1257041990757,0.056720815598965],[0.077311061322689,0.20341883599758,-0.02415824867785],[-0.20661024749279,0.11388869583607,0.071641214191914]],[[0.16922828555107,-0.071974046528339,0.083992436528206],[0.1449479162693,-0.0048639192245901,0.044855903834105],[-0.021705580875278,0.015983030200005,0.018140260130167]],[[-0.020992636680603,-0.048279251903296,0.065227784216404],[-0.02877744846046,-0.11122053861618,0.099450968205929],[-0.016564413905144,0.18166179955006,-0.0061612520366907]],[[0.1382692605257,-0.040315695106983,0.0262869913131],[0.10691588371992,-0.11858499795198,-0.062994055449963],[0.14570833742619,-0.046214748173952,0.012248460203409]],[[-0.038594868034124,0.015359216369689,-0.0038681121077389],[-0.028079129755497,-0.040306694805622,-0.079042471945286],[0.029253479093313,0.054840326309204,-0.072907671332359]],[[0.040130250155926,0.080816395580769,-0.018655197694898],[-0.12084545195103,-0.0047578634694219,-0.016040785238147],[-0.082993768155575,0.011030539870262,-0.019949147477746]],[[-0.039017587900162,-0.081886619329453,-0.0090137645602226],[0.035857461392879,0.0040709259919822,-0.15636935830116],[0.18112826347351,0.14948581159115,0.032526541501284]],[[0.10255194455385,0.075283259153366,-0.015689788386226],[-0.0073014921508729,-0.058232069015503,-0.06974969804287],[-0.052082695066929,-0.097808994352818,-0.0064704427495599]],[[-0.199921682477,0.089717529714108,0.0087044015526772],[-0.048630300909281,-0.14207488298416,0.01859463006258],[-0.071930520236492,-0.0065300026908517,0.063297212123871]],[[-0.016015162691474,0.044671066105366,0.11676818132401],[-0.052428841590881,0.040545593947172,-0.041149731725454],[0.077083326876163,-0.013227036222816,0.038230564445257]],[[-0.03439849242568,-0.16725018620491,-0.11154244095087],[0.11534620821476,-0.054397825151682,-0.042266000062227],[0.11926183104515,0.037465427070856,0.052956018596888]],[[-0.072438418865204,-0.0024357330985367,0.017233360558748],[-0.17180535197258,0.13305027782917,0.090550966560841],[0.064927808940411,-0.019668905064464,-0.018914690241218]],[[0.11525718122721,-0.014955352060497,-0.020666962489486],[0.089430935680866,-0.037632331252098,-0.072147466242313],[0.10934084653854,0.018400214612484,-0.077011279761791]],[[0.043550778180361,0.014060145244002,0.074179075658321],[-0.0097960690036416,-0.028926907107234,0.039206329733133],[0.070205457508564,0.017133047804236,0.021561274304986]],[[-0.14075915515423,-0.054839886724949,-0.088380314409733],[-0.08812803030014,-0.07844927161932,-0.088319510221481],[-0.10128479450941,-0.055332947522402,0.19040089845657]],[[-0.19258505105972,0.018400015309453,0.13664048910141],[-0.017370412126184,0.01664043776691,-0.0070516308769584],[-0.0048528788611293,0.097866460680962,-0.08753590285778]],[[-0.041359562426805,0.11956576257944,0.031526669859886],[0.038689069449902,-0.0095841065049171,-0.070983856916428],[0.0025020043831319,0.085148423910141,0.14058639109135]],[[-0.12609265744686,0.044651046395302,0.013478874228895],[0.034049741923809,0.034397684037685,-0.019328910857439],[0.0038925653789192,0.045538369566202,0.14878740906715]],[[-0.24156963825226,0.041408631950617,0.013338849879801],[-0.11224763095379,0.024538857862353,-0.0016078882617876],[-0.10603310167789,0.0333561450243,-0.076458588242531]],[[0.10524070262909,0.068193078041077,0.021244596689939],[0.060881048440933,-0.074045471847057,0.023547975346446],[0.13261780142784,-0.014993561431766,0.0021440058480948]],[[0.027122320607305,0.12939091026783,-0.01257502194494],[0.14809529483318,0.13877546787262,0.0038108418229967],[-0.052887510508299,0.011496712453663,0.082475088536739]],[[-0.12588195502758,-0.15423321723938,0.086452841758728],[-0.00052757502999157,0.003492291085422,0.016161348670721],[-0.069402612745762,-0.039579432457685,-0.021156843751669]],[[-0.0059705702587962,0.050579324364662,0.062498286366463],[-0.097080029547215,0.0048929695039988,-0.066416174173355],[-0.065045267343521,0.099459648132324,-0.054325394332409]],[[-0.084586657583714,0.00028649833984673,-0.010673657990992],[-0.028520841151476,-0.10477010905743,-0.039934985339642],[0.0049428693018854,-0.075054571032524,-0.14759522676468]],[[0.042134296149015,0.024790331721306,0.1107510253787],[0.051964342594147,0.11915099620819,-0.054630059748888],[0.10589745640755,0.09311555325985,-0.078667424619198]],[[-0.026451528072357,-0.044016845524311,-0.041808094829321],[-0.033863127231598,-0.11590645462275,-0.14376227557659],[-0.10001397877932,-0.10959593206644,-0.059574585407972]],[[0.043984271585941,0.081676855683327,-0.034867417067289],[0.082952126860619,-0.071254000067711,0.044493824243546],[0.19061775505543,-0.15795198082924,-0.1445452272892]],[[0.0065589360892773,-0.0089462259784341,-0.068418979644775],[-0.071668803691864,-0.026560992002487,-0.079705528914928],[-0.18349181115627,0.047784332185984,0.13244280219078]],[[0.039089851081371,0.072216175496578,-0.030033625662327],[0.047883417457342,0.072044752538204,-0.038710109889507],[0.055443003773689,0.12857455015182,0.038091275840998]],[[-0.022818718105555,0.0067868214100599,0.15339447557926],[-0.024406811222434,-0.1151932477951,0.15966761112213],[-0.14791359007359,-0.11251999437809,0.039506431668997]],[[0.10942406952381,-0.083046428859234,-0.082985654473305],[0.13886032998562,0.18741217255592,-0.13109469413757],[0.16208127140999,-0.10954997688532,-0.054086480289698]]],[[[0.033455148339272,-0.098556071519852,-0.099130481481552],[0.0079052206128836,-0.07055327296257,-0.076725021004677],[0.031570944935083,-0.096655905246735,-0.0063263759948313]],[[-0.16783161461353,0.084573969244957,0.025232603773475],[0.0868134573102,0.053623147308826,0.027109529823065],[-0.18518368899822,-0.19005288183689,-0.14702329039574]],[[0.056474037468433,0.10030870139599,0.10523119568825],[0.018109472468495,-0.0026103514246643,-0.1113972440362],[-0.01914443820715,-0.089317888021469,0.021012535318732]],[[-0.14758488535881,0.009150986559689,-0.046224977821112],[-0.0036778764333576,-0.025456020608544,-0.029541244730353],[-0.022274870425463,-0.12180442363024,-0.021512728184462]],[[-0.11230149120092,-0.076379202306271,-0.1363575309515],[0.13780750334263,0.027832992374897,-0.078871481120586],[0.046471983194351,0.090673811733723,0.069375641644001]],[[0.10186926275492,-0.070578187704086,-0.1279436647892],[0.34618440270424,0.12790854275227,0.028511280193925],[-0.074172928929329,0.052259143441916,-0.097445704042912]],[[0.090417861938477,0.035862442106009,0.021886838600039],[0.17601205408573,-0.00010873537394218,-0.022790757939219],[-0.14167815446854,-0.015601447783411,0.00090001081116498]],[[0.098070047795773,0.12542730569839,0.055571913719177],[0.080432645976543,0.018126158043742,0.057307798415422],[0.032068956643343,-0.0063739437609911,-0.025078307837248]],[[-0.0067578968591988,-0.040975738316774,0.0078143188729882],[0.034896168857813,-0.041249427944422,0.024475362151861],[-0.15380667150021,-0.039288185536861,-0.076647341251373]],[[-0.026112684980035,-0.092657126486301,-0.0049997474998236],[-0.092147782444954,0.10748954117298,0.081388778984547],[0.010598788969219,-0.062306582927704,-0.067034311592579]],[[-0.049604307860136,-0.024320079013705,0.044440370053053],[-0.09896194934845,0.076491162180901,0.023857513442636],[-0.080424353480339,-0.061433773487806,-0.051401741802692]],[[-0.0039713173173368,-0.043761499226093,-0.063307762145996],[0.093753091990948,0.050567537546158,0.011436725966632],[0.01762449927628,0.00064110296079889,-0.0029644719325006]],[[-0.10377738624811,-0.087477400898933,-0.10128600895405],[-0.15972773730755,-0.08131555467844,-0.018720410764217],[-0.10393967479467,-0.024924984201789,0.15569403767586]],[[-0.03830248862505,0.034774526953697,0.062014497816563],[-0.085647642612457,-0.074719846248627,-0.13859108090401],[0.095337003469467,0.055208962410688,-0.034794341772795]],[[0.026939863339067,0.094564959406853,0.14077077805996],[0.099912196397781,-0.0041751442477107,-0.084746539592743],[-0.014149868860841,-0.073400504887104,-0.068108402192593]],[[-0.0024937151465565,-0.16873136162758,-0.12070360779762],[-0.069071009755135,-0.073876149952412,0.067679204046726],[0.078300185501575,-0.0010042794747278,-0.012164828367531]],[[0.030311744660139,-0.073614746332169,0.013565971516073],[-0.055526055395603,-0.10290071368217,-0.059112273156643],[0.031265310943127,-0.030448168516159,0.0082487231120467]],[[0.016567004844546,0.088092595338821,-0.049016840755939],[0.022677686065435,-0.038402449339628,0.038772888481617],[0.033286351710558,0.0086901104077697,-0.050736978650093]],[[-0.026868041604757,-0.0024827742017806,-0.15960296988487],[0.041241142898798,-0.041373427957296,0.017283489927649],[0.038480263203382,0.051252603530884,0.019123911857605]],[[0.0067633581347764,0.051346629858017,0.04133927449584],[-0.0074289869517088,0.087562747299671,0.1031830906868],[0.051778040826321,0.099148035049438,0.10684804618359]],[[0.061730094254017,0.078794658184052,-0.015791162848473],[-0.098910182714462,0.0036719017662108,0.04305112361908],[0.12644077837467,0.11587162315845,0.14468298852444]],[[-0.029023420065641,0.067143261432648,-0.0070001953281462],[0.1149825155735,0.073165901005268,-0.023073362186551],[0.054072722792625,0.13118359446526,0.037499584257603]],[[0.20687292516232,-0.058495759963989,-0.1099905371666],[-0.011441676877439,0.065531648695469,-0.14902153611183],[0.031132327392697,0.089388273656368,0.015181992202997]],[[0.0098113985732198,0.081450402736664,0.068869806826115],[-0.013134852051735,-0.11574210971594,0.16717217862606],[-0.17689780890942,-0.15535841882229,-0.092983677983284]],[[-0.0040877908468246,0.052209291607141,0.17327113449574],[0.010120898485184,0.029442731291056,0.11080374568701],[0.1392230540514,0.041294705122709,-0.0092129744589329]],[[-0.084294997155666,-0.034113578498363,-0.011964166536927],[-0.011194640770555,-0.025411933660507,-0.059894274920225],[-0.061392772942781,-0.050038430839777,0.024394964799285]],[[-0.1733630001545,-0.041469924151897,0.10640218853951],[-0.0074727730825543,-0.011986420489848,0.017406027764082],[-0.15576414763927,-0.1070125028491,-0.010500937700272]],[[-0.06781841814518,0.062873922288418,0.00058150291442871],[-0.023059379309416,-0.1643425822258,-0.23712919652462],[0.045527722686529,-0.066384516656399,-0.073337577283382]],[[-0.049060940742493,-0.0094438726082444,0.14095109701157],[-0.072008617222309,-0.21271885931492,0.079163439571857],[-0.10261107981205,-0.038362458348274,-0.15232495963573]],[[0.042124882340431,-0.11580044776201,-0.098255984485149],[-0.065681830048561,-0.023629790171981,0.056419108062983],[0.091384552419186,0.0078752096742392,0.027847437188029]],[[-0.09044698625803,0.0069329007528722,-0.025413850322366],[-0.0065416470170021,0.14100454747677,0.048396557569504],[-0.049415051937103,0.04700043424964,-0.13353942334652]],[[0.015758618712425,-0.062476318329573,-0.11526431143284],[-0.022273907437921,-0.10307773947716,0.06641598790884],[0.061255443841219,0.13817885518074,0.13812249898911]],[[0.084093302488327,0.24487036466599,-0.095557890832424],[0.019916821271181,-0.008445180952549,0.059934936463833],[0.059894166886806,0.1257980465889,0.077848866581917]],[[-0.04655534401536,-0.018154818564653,0.03313010185957],[0.090033315122128,-0.037326212972403,0.11371014267206],[0.09224746376276,0.13113079965115,0.041045855730772]],[[-0.047238979488611,-0.12773910164833,0.11273281276226],[-0.0024495769757777,-0.042723283171654,0.010729122906923],[-0.084786750376225,-0.022170709446073,0.04169213399291]],[[0.012995501980186,0.10159296542406,0.04038443416357],[0.069384023547173,0.098452545702457,-0.037629745900631],[-0.11269804090261,0.12573041021824,0.034475475549698]],[[-0.074477031826973,-0.081646032631397,0.024830577895045],[0.12182348966599,0.10759846121073,0.10268551111221],[0.066535152494907,-0.030213402584195,-0.012936799786985]],[[0.036733716726303,0.076616302132607,0.041906103491783],[-0.065393500030041,0.055711459368467,0.26723510026932],[0.049801807850599,0.054602399468422,-0.054162997752428]],[[-0.082861892879009,-0.15607240796089,-0.086502194404602],[0.20639838278294,0.15422143042088,-0.11474598199129],[-0.17852975428104,-0.18176874518394,-0.039592988789082]],[[-0.042292557656765,-0.019126206636429,-0.025004411116242],[-0.020916795358062,0.076313532888889,-0.02031166665256],[0.043649692088366,-0.20727935433388,-0.13406957685947]],[[-0.070593513548374,0.057314049452543,-0.013814534060657],[0.096371918916702,0.014793615788221,-0.027909507974982],[0.056514043360949,0.11237221956253,0.13523635268211]],[[-0.040143936872482,0.018773375079036,-0.040914259850979],[0.16838225722313,0.042091097682714,-0.019068608060479],[0.060202423483133,0.1044958755374,0.14786878228188]],[[-0.07515736669302,0.0027261483483016,-0.11118193715811],[-0.12992325425148,0.10562171041965,-0.2192716896534],[0.017929105088115,0.040777575224638,-0.037262920290232]],[[0.035799492150545,0.0080262487754226,-0.017389683052897],[-0.020732171833515,-0.052981749176979,-0.03638456389308],[0.022566528990865,0.028402164578438,0.072060845792294]],[[-0.088106013834476,-0.1174003854394,-0.014808714389801],[0.011658053845167,0.015343164093792,-0.025291364639997],[0.063096016645432,-0.04273796081543,0.019188629463315]],[[0.025196667760611,0.034955766052008,-0.10507345944643],[-0.039400804787874,-0.14549849927425,-0.010160781443119],[-0.019838642328978,0.044544477015734,0.015287447720766]],[[-0.12154863029718,-0.013127572834492,-0.0038963456172496],[-0.055091641843319,0.052920591086149,0.0084779728204012],[-0.11770759522915,-0.027994522824883,-0.075956590473652]],[[-0.024781106039882,-0.066369421780109,-0.046988774091005],[0.008975806646049,0.056092843413353,0.11088710278273],[-0.019593698903918,0.032789118587971,-0.07133112102747]],[[-0.053402584046125,-0.089980967342854,-0.046679001301527],[-0.024084454402328,-0.019878394901752,0.047410763800144],[0.014551483094692,0.04923228546977,0.035583768039942]],[[0.024066949263215,-0.053398717194796,0.027224209159613],[-0.017742646858096,-0.044130500406027,0.040660120546818],[0.033549249172211,-0.038598049432039,-0.049953259527683]],[[0.075915932655334,-0.11615508794785,-0.035074520856142],[0.13640250265598,-0.032939065247774,-0.042165622115135],[0.052236050367355,-0.057064671069384,-0.09756064414978]],[[0.026097631081939,-0.023715630173683,0.09457428753376],[-0.049808949232101,-0.029279518872499,-0.018245270475745],[-0.0045548821799457,-0.091473832726479,-0.080980025231838]],[[-0.087358146905899,-0.01067640632391,-0.028576826676726],[0.029199520125985,-0.095112234354019,0.00077490886906162],[-0.029269766062498,-0.014907649718225,0.036245580762625]],[[0.075156711041927,-0.032649803906679,0.05435735732317],[-0.12103261053562,0.029245676472783,0.16877630352974],[-0.054376143962145,-0.14388306438923,-0.1105647161603]],[[-0.05653129145503,-0.040065199136734,-0.13384585082531],[0.04618039354682,-0.0088201798498631,-0.11274904757738],[0.096017822623253,-0.022624982520938,0.067433170974255]],[[0.051784764975309,-0.082078129053116,-0.032909911125898],[0.25287976861,0.17931331694126,0.19407126307487],[-0.065948829054832,-0.11271954327822,-0.023101521655917]],[[-0.0089318640530109,-0.068242892622948,0.028406174853444],[-0.011461564339697,0.014702544547617,0.22281733155251],[0.008039272390306,-0.057899873703718,0.053939748555422]],[[-0.047295957803726,-0.087824702262878,-0.11134940385818],[-0.023957030847669,-0.13636121153831,-0.19458608329296],[0.015759769827127,0.17267286777496,0.13380055129528]],[[0.043411135673523,0.07400219887495,-0.0097532020881772],[-0.095435343682766,-0.0017762773204595,-0.15634196996689],[0.047030434012413,-0.12717238068581,0.023042114451528]],[[0.048453584313393,0.036220479756594,-0.018690085038543],[-0.019296053797007,-0.11778555065393,-0.051539070904255],[-0.07447961717844,0.033755023032427,0.082678645849228]],[[-0.046375688165426,-0.068269155919552,-0.023699743673205],[-0.11379777640104,-0.052633006125689,0.041031312197447],[-0.016601327806711,-0.01989983394742,0.019497837871313]],[[-0.035655084997416,-0.022709771990776,-0.027550583705306],[-0.075989089906216,0.017354786396027,-0.080943912267685],[-0.050137162208557,-0.13726231455803,-0.020781151950359]],[[-0.0998545140028,0.015808345749974,0.0442687086761],[-0.061528354883194,0.06467816978693,-0.084537915885448],[0.083660751581192,0.1122861802578,-0.009613280184567]],[[0.12258572876453,0.059508722275496,0.020970124751329],[-0.088014237582684,-0.028763186186552,0.048062983900309],[0.041406825184822,-0.052017003297806,0.042810682207346]],[[0.054525654762983,0.056912034749985,0.0096862195059657],[-0.036650374531746,0.007479231338948,-0.023823888972402],[0.051466707140207,0.00020688996301033,-0.07130504399538]],[[-0.060910541564226,-0.062368776649237,-0.11582667380571],[-0.023347167298198,-0.038156691938639,0.032106224447489],[0.053597193211317,0.038836888968945,0.10838109254837]],[[0.078566081821918,0.048052776604891,0.069157339632511],[0.042155537754297,-0.081292077898979,-0.050904881209135],[0.22261871397495,-0.040498323738575,-0.12069829553366]],[[0.058036290109158,0.071004204452038,0.021488906815648],[-0.023706909269094,-0.018887596204877,0.0080844592303038],[0.0063706361688673,-0.13202714920044,0.030949046835303]],[[0.089075073599815,-0.02065865881741,-0.022839512676001],[0.043828949332237,-0.0076002036221325,0.041677568107843],[-0.03777165338397,-0.026997150853276,0.0072644497267902]],[[0.035755515098572,0.068993620574474,-0.026401439681649],[-0.030362315475941,-0.076085932552814,-0.084334783256054],[0.012336472980678,-0.063263662159443,-0.064825847744942]],[[0.033795595169067,0.0060626599006355,0.043461013585329],[0.030120654031634,-0.089815989136696,-0.088923029601574],[0.0015605326043442,-0.065502882003784,-0.13962338864803]],[[0.00634890422225,0.012179077602923,-0.063301980495453],[0.049419429153204,-0.057871628552675,-0.0032322849147022],[0.011808813549578,0.013775343075395,-0.054548356682062]],[[0.012822279706597,0.034628294408321,-0.050606213510036],[-0.053879037499428,0.013279265724123,-0.15030036866665],[-0.11511114984751,-0.0053484193049371,0.043721668422222]],[[0.058572243899107,0.055924735963345,0.084435947239399],[-0.016645954921842,-0.032635614275932,-0.045526005327702],[-0.090869724750519,0.038309145718813,0.10734057426453]],[[-0.083798781037331,0.024147275835276,0.016117250546813],[0.043922942131758,-0.049341268837452,-0.006394614931196],[-0.0057280394248664,0.042619861662388,0.072630733251572]],[[-0.13798981904984,-0.023618575185537,-0.055074289441109],[-0.051340062171221,-0.020676465705037,0.013455213978887],[-0.012458376586437,0.050951156765223,0.043382946401834]],[[-0.084253385663033,-0.078375652432442,-0.29331058263779],[-0.055015947669744,-0.15547430515289,0.13202902674675],[-0.10723220556974,0.011080608703196,-0.042912915349007]],[[-0.065351635217667,-0.069616451859474,-0.0060523650608957],[-0.016830136999488,-0.099689319729805,-0.11106012761593],[0.075373366475105,0.14089596271515,0.10176082700491]],[[-0.17936912178993,-0.018985327333212,-0.047362700104713],[-0.130526304245,0.11554373800755,-0.042525567114353],[0.035422623157501,-0.0036688135005534,0.012136415578425]],[[0.006674240808934,-0.040325272828341,0.046398647129536],[-0.10900474339724,0.010673493146896,-0.15790230035782],[0.088809154927731,0.082341872155666,-0.052822083234787]],[[-0.071650698781013,-0.033235818147659,-0.090230047702789],[0.00018946637283079,-0.045204523950815,-0.0053164218552411],[-0.032352175563574,0.032843001186848,-0.0045456918887794]],[[-0.21366068720818,-0.018562769517303,0.10179165750742],[-0.14999336004257,-0.050418604165316,-0.10415450483561],[-0.038200072944164,-0.0016054636798799,0.020819816738367]],[[-0.092416651546955,-0.003182431217283,0.12978114187717],[0.09548994153738,-0.020082479342818,0.11307884007692],[-0.022472577169538,-0.059030119329691,-0.028172036632895]],[[-0.044934879988432,-0.051667857915163,0.035960994660854],[0.17553219199181,0.099080942571163,-0.078099317848682],[-0.15551018714905,-0.01364247687161,-0.096435986459255]],[[0.01005152054131,0.0034128606785089,0.15757863223553],[-0.05586015060544,-0.12360879778862,-0.019758090376854],[0.035811435431242,-0.067114152014256,-0.091289207339287]],[[-0.083511359989643,-0.12481579184532,0.027265908196568],[0.033909648656845,-0.04372725263238,-0.10579404979944],[0.087216183543205,0.063010856509209,0.062421374022961]],[[-0.011065248399973,0.019944464787841,0.088870942592621],[0.14909607172012,0.044815365225077,0.15313740074635],[0.095353305339813,-0.12929405272007,-0.16878642141819]],[[0.069810248911381,0.066453047096729,-0.11950666457415],[-0.014054927043617,0.040869846940041,0.048706740140915],[0.030712319537997,0.10796228051186,0.038736261427402]],[[0.020141802728176,-0.087794743478298,-0.18740662932396],[-0.012822532095015,-0.070038914680481,-0.088692180812359],[-0.064380496740341,0.037807945162058,0.032737735658884]],[[0.026692507788539,-0.0022167935967445,-0.026434069499373],[-0.0050287870690227,0.063758991658688,0.063037045300007],[-0.059069309383631,-0.10453616082668,0.0044472105801105]],[[-0.07876630872488,-0.0013759755529463,0.052230149507523],[-0.00071418093284592,0.14290682971478,0.16821978986263],[-0.010059813037515,0.027693631127477,0.039746459573507]],[[-0.13427165150642,-0.13670901954174,-0.047059569507837],[-0.020115152001381,-0.014423428103328,-0.039974268525839],[-0.071558333933353,0.13230808079243,0.1835573464632]],[[0.074247509241104,-0.13145296275616,0.0065344539470971],[0.026419831439853,-0.012152012437582,-0.065214544534683],[0.037955746054649,-0.059902481734753,0.10200268775225]],[[-0.055142868310213,-0.045674663037062,-0.051517907530069],[0.023157751187682,0.062908411026001,-0.038843762129545],[0.089963398873806,0.0082198353484273,-0.032655984163284]],[[-0.11179325729609,-0.053178567439318,-0.12392719089985],[0.024867083877325,0.10665334761143,0.15336088836193],[-0.096515685319901,-0.05635192245245,0.079169735312462]],[[-0.058502208441496,0.041561130434275,0.036088701337576],[0.094438627362251,-0.024341013282537,-0.060029588639736],[-0.022264458239079,0.0048800818622112,-0.13961933553219]],[[0.044062867760658,0.050956342369318,0.053002685308456],[-0.16050137579441,-0.014214660041034,-0.039378389716148],[-0.056000728160143,-0.15663236379623,-0.10101272910833]],[[0.11201591789722,0.055937387049198,0.01048875413835],[0.0032487106509507,0.010672741569579,-0.10626276582479],[0.049158934503794,-0.02751780860126,-0.015937376767397]],[[0.14129117131233,-0.10985933244228,0.0038407621905208],[-0.0096668489277363,-0.024152953177691,0.0057902331463993],[0.025051549077034,-0.075716271996498,0.14591360092163]],[[0.11641470342875,-0.020892530679703,-0.10483992099762],[-0.097666293382645,-0.047221839427948,-0.11500103771687],[0.055902633816004,0.12729249894619,0.15948411822319]],[[0.01723125576973,-0.042047243565321,-0.019999876618385],[0.031627401709557,-0.051594454795122,-0.18478482961655],[0.17759491503239,0.02734993211925,0.093090273439884]],[[-0.11406745761633,-0.044299446046352,-0.13017563521862],[0.025472795590758,0.053541589528322,-0.077959224581718],[0.16140861809254,0.21388599276543,0.26332256197929]],[[0.068253375589848,-0.039641801267862,-0.11434696614742],[0.11854419857264,-0.052859354764223,-0.11030641198158],[0.041578143835068,-0.038204837590456,-0.081766568124294]],[[-0.17119033634663,-0.0848558396101,-0.068409152328968],[0.047485541552305,0.071706004440784,0.04265046864748],[-0.023853113874793,-0.077458254992962,-0.026413494721055]],[[0.010765110142529,-0.071499891579151,0.064017780125141],[0.035585183650255,-0.023785268887877,-0.066037356853485],[-0.029452642425895,0.0049368110485375,-0.071981526911259]],[[-0.0024952017702162,0.012217881157994,-0.020574351772666],[0.074720203876495,-0.04945470765233,-0.0033151074312627],[0.02638585306704,0.020036537200212,-0.014410808682442]],[[-0.013855089433491,-0.15682969987392,-0.051780816167593],[0.058419641107321,0.0012971865944564,0.15557692945004],[0.14845255017281,0.082369402050972,0.11783330887556]],[[-0.065455354750156,0.015083978883922,-0.059213675558567],[-0.10968559980392,-0.032010648399591,-0.031785633414984],[0.025855973362923,0.034931920468807,0.091103330254555]],[[0.030684744939208,-0.057638987898827,-0.0214016251266],[0.046628143638372,0.11114744842052,0.19370974600315],[0.099796995520592,0.1510506272316,0.060515698045492]],[[-0.050964653491974,-0.052724856883287,-0.032366804778576],[0.046360023319721,0.027745364233851,-0.042062915861607],[-0.065330013632774,-0.0073285414837301,0.022217569872737]],[[-0.008453774265945,0.016099018976092,0.066223330795765],[-0.012072741985321,0.040987357497215,0.080769047141075],[-0.0079482588917017,-0.025348218157887,0.021680265665054]],[[0.069565385580063,-0.016591107472777,-0.0030525589827448],[-0.12182878702879,-0.11194591969252,0.0014208941720426],[-0.052538186311722,0.011844164691865,-0.032991912215948]],[[-0.031726591289043,-0.065498925745487,0.090647220611572],[-0.08490976691246,-0.06368312984705,-0.025545531883836],[0.061753302812576,0.10759814083576,-0.055144872516394]],[[-0.030788717791438,-0.10945648699999,0.023162022233009],[0.10093890875578,0.020259544253349,-0.055291425436735],[0.075451456010342,0.02598319388926,-0.070551633834839]],[[0.0024798654485494,-0.029971841722727,-0.090579263865948],[0.038586370646954,-0.037220884114504,0.028846429660916],[0.067691892385483,0.030699798837304,-0.0060890344902873]],[[0.11851562559605,0.033375862985849,-0.046580612659454],[0.28264084458351,0.068953357636929,-0.061853110790253],[-0.054296486079693,-0.042792525142431,-0.018708921968937]],[[0.045290574431419,-0.012270139530301,0.042557053267956],[0.029229687526822,0.0038858340121806,-0.10060030221939],[-0.0045490004122257,-0.024975320324302,-0.024934640154243]],[[-0.042492359876633,-0.032004911452532,0.041729018092155],[0.11975309252739,-0.010578528046608,-0.057949081063271],[0.053006500005722,-0.10969571024179,-0.062647059559822]],[[-0.051676392555237,0.0055757299996912,0.013533205725253],[-0.047972526401281,-0.093605920672417,-0.020950092002749],[0.31090068817139,-0.031504634767771,-0.085630364716053]],[[-0.082802996039391,-0.10855683684349,-0.036993101239204],[-0.026463899761438,-0.060950018465519,-0.037613570690155],[0.019812554121017,0.16560412943363,0.22325806319714]],[[-0.042233139276505,-0.041694026440382,0.09452810883522],[-0.018743662163615,-0.023918781429529,-0.088740214705467],[0.03843916580081,0.030412139371037,0.14876639842987]],[[0.025396404787898,-0.014454126358032,-0.072172701358795],[-0.029287094250321,0.089089579880238,-0.067966409027576],[0.0035341673064977,0.12558279931545,0.093626581132412]],[[-0.0037906891666353,0.11734331399202,-0.0032377680763602],[0.014431556686759,0.037133269011974,-0.078334711492062],[-0.089653126895428,-0.09674384444952,-0.090585649013519]],[[-0.021198624745011,0.039362315088511,-0.045895766466856],[-0.044117450714111,-0.072587318718433,-0.030255381017923],[0.049561239778996,0.015312636271119,0.00082587794167921]],[[0.2357884645462,0.011847820132971,-0.024298205971718],[0.17937183380127,-0.018097018823028,-0.019654894247651],[-0.1082076728344,-0.049256842583418,-0.026597332209349]],[[0.022213973104954,-0.0041744569316506,-0.047109331935644],[-0.052797764539719,-0.032416637986898,-0.03152371942997],[-0.049123588949442,0.15375569462776,-0.10830161720514]],[[0.081018313765526,0.087080053985119,0.055195782333612],[0.039019253104925,0.25755017995834,0.12326653301716],[-0.05565383285284,-0.018067156895995,-0.1717407554388]],[[-0.16836413741112,-0.05146250128746,-0.11532747745514],[-0.057562783360481,-0.051497273147106,-0.1675331890583],[-0.096314266324043,0.10115487128496,-0.060692980885506]]],[[[0.040438685566187,0.086416505277157,0.07262510061264],[0.049955978989601,-0.0628722012043,-0.028456285595894],[0.0030354438349605,-0.0094741079956293,0.07386189699173]],[[0.07010468095541,0.1451056599617,0.12203569710255],[-0.073537416756153,-0.0079498961567879,0.057186063379049],[-0.12020696699619,-0.039406932890415,0.072059378027916]],[[0.035269573330879,0.1152832582593,0.11861126124859],[0.099467501044273,-0.0038680923171341,-0.0096606155857444],[0.055300861597061,0.076056554913521,0.09343346953392]],[[0.054797485470772,-0.020271761342883,-0.01322215795517],[0.049792021512985,0.022015165537596,0.061570435762405],[0.012589524500072,-0.0068915542215109,0.0011964651057497]],[[-0.15223759412766,0.088443428277969,0.00098124344367534],[0.04891674220562,-0.030522083863616,0.0095427511259913],[-0.14709806442261,-0.010490064509213,0.16136860847473]],[[-0.0045385747216642,0.16256611049175,0.049608685076237],[-0.005122097209096,-0.18822430074215,-0.17145346105099],[-0.086641125380993,-0.023144863545895,0.0039669186808169]],[[0.15268479287624,0.17533776164055,0.091781951487064],[0.0028908534441143,0.02559806779027,-0.096390463411808],[-0.15285368263721,-0.1099361255765,0.053417392075062]],[[0.012081574648619,-0.032020390033722,-0.04120858758688],[0.19645331799984,-0.10535897314548,-0.022600760683417],[0.058817699551582,0.0083463788032532,0.12986919283867]],[[-0.072523735463619,-0.13255453109741,0.045484349131584],[0.078590378165245,0.16373614966869,0.14038994908333],[0.14665092527866,0.12680384516716,0.12482339143753]],[[-0.0096420450136065,-0.12999105453491,0.10019166767597],[0.080594040453434,-0.092689722776413,-0.033051185309887],[0.016381835564971,0.094131343066692,-0.039566077291965]],[[-0.015420783311129,-0.091984674334526,0.011026105843484],[-0.15712293982506,-0.021544262766838,0.030139923095703],[-0.092804469168186,0.090623416006565,-0.13990832865238]],[[-0.19376230239868,-0.056897964328527,-0.019220825284719],[0.0565648637712,0.14340604841709,-0.087003953754902],[-0.068133741617203,0.036470130085945,-0.038738664239645]],[[-0.028051434084773,-0.058470722287893,0.071280166506767],[-0.12172081321478,-0.014626716263592,-0.093106836080551],[0.033607918769121,0.054361026734114,0.11897134035826]],[[-0.039016980677843,0.043714795261621,-0.11155427992344],[0.090038917958736,0.017622077837586,0.087690122425556],[-0.11789195239544,-0.056958053261042,0.063434451818466]],[[-0.06010452285409,-0.033352300524712,-0.057276751846075],[-0.018672024831176,-0.039058655500412,-0.0097409784793854],[-0.17196153104305,0.045307978987694,0.043089456856251]],[[-0.033097628504038,-0.011599496006966,-0.051472011953592],[-0.010534052737057,-0.094810180366039,-0.18170031905174],[0.10302016884089,0.078165046870708,-0.087066359817982]],[[-0.080057621002197,-0.059581734240055,-0.13471874594688],[0.037950649857521,0.017805125564337,-0.044430378824472],[0.036817591637373,-0.098203599452972,-0.17801868915558]],[[-0.060980167239904,0.091246157884598,0.032185796648264],[-0.001689319498837,0.017082961276174,0.10040140897036],[-0.025023384019732,0.059318799525499,-0.037015527486801]],[[-0.032499391585588,-0.07588753849268,0.0046310196630657],[0.061423245817423,-0.027574561536312,-0.0081421872600913],[0.013073396869004,0.044750973582268,0.071903504431248]],[[-0.019137278199196,-0.054564535617828,-0.063416995108128],[0.070234946906567,0.016320988535881,-0.063300549983978],[-0.031718745827675,0.063377216458321,0.16657263040543]],[[0.025476695969701,0.011034300550818,-0.01306801661849],[-0.0025167618878186,-0.08162335306406,-0.10337446630001],[-0.082938529551029,-0.16405045986176,-0.012026078999043]],[[0.050306767225266,-0.014272751286626,0.042747717350721],[0.025817988440394,-0.040276002138853,-0.06246304884553],[0.0010845225770026,0.016010483726859,-0.043782707303762]],[[0.08945194631815,-0.0055295499041677,0.0011086296290159],[-0.047811433672905,0.00039237673627213,0.064606331288815],[-0.12116497755051,-0.0056063034571707,0.066002383828163]],[[-0.049465704709291,-0.075112447142601,-0.12341812252998],[0.054463367909193,-0.04291107878089,-0.011605899780989],[-0.11460815370083,-0.081487737596035,0.042746338993311]],[[-0.035825040191412,-0.12073384970427,0.10585160553455],[0.12305062264204,-0.06712681800127,0.12814472615719],[-0.12907557189465,0.00059160456294194,0.040014948695898]],[[0.15298196673393,-0.1127105653286,-0.037391819059849],[0.10675832629204,0.025334136560559,-0.11084040999413],[0.098068416118622,0.061873860657215,-0.10903358459473]],[[0.077245242893696,-0.038200620561838,-0.06495213508606],[-0.035676803439856,0.075615882873535,-0.011318052187562],[-0.010182270780206,0.20993928611279,-0.014479015953839]],[[0.07137344032526,0.023298854008317,0.01328135933727],[-0.10574757307768,-0.083750136196613,-0.093163371086121],[0.088642574846745,0.037141002714634,0.028785850852728]],[[-0.10197580605745,-0.099250979721546,-0.11341784149408],[-0.030427733436227,-0.10379172116518,-0.20814177393913],[-0.17343474924564,-0.032235253602266,-0.13067285716534]],[[0.017773669213057,-0.097304694354534,-0.12861326336861],[0.0075408136472106,0.058221448212862,-0.033068224787712],[0.097138866782188,0.057721503078938,0.03983785957098]],[[0.14836658537388,-0.0044623613357544,0.0040543940849602],[0.023166811093688,0.088059358298779,0.014054553583264],[0.091841638088226,0.096593007445335,-0.065063208341599]],[[-0.036051340401173,0.038023982197046,0.10090756416321],[-0.059776090085506,-0.072808109223843,-0.0603540353477],[-0.01836609095335,0.056404732167721,0.16574689745903]],[[-0.034453902393579,0.028607172891498,0.041751313954592],[0.00099656241945922,-0.065641783177853,-0.19779522716999],[-0.061357848346233,-0.0020415673498064,-0.0011072661727667]],[[-0.042523492127657,-0.020560132339597,0.0087117068469524],[-0.011132273823023,0.052795015275478,-0.11394526064396],[-0.073282703757286,-0.045590627938509,-0.015897816047072]],[[-0.023528259247541,-0.0039996923878789,-0.052926652133465],[-0.007630574516952,-0.075298279523849,-0.14180485904217],[-0.068177595734596,-0.093438260257244,0.020300613716245]],[[-0.019426004961133,0.0067435284145176,0.13764005899429],[0.045818034559488,0.13524234294891,0.0093835610896349],[-0.038922876119614,-0.08123854547739,0.062608815729618]],[[-0.017156571149826,-0.026235712692142,-0.032260198146105],[-0.034793015569448,-0.0092884264886379,0.10948570817709],[-0.048101484775543,-0.057004433125257,-0.18344888091087]],[[-0.049201983958483,-0.08098492026329,0.00011795591854025],[0.035035483539104,-0.12206445634365,0.033712737262249],[-0.014137137681246,-0.010826875455678,0.10224042832851]],[[-0.023932242766023,-0.041803177446127,0.018520936369896],[-0.20403125882149,-0.10738109797239,-0.0048945690505207],[-0.083061799407005,-0.11050254106522,-0.096968226134777]],[[-0.12429873645306,-0.06446997821331,-0.000827846233733],[0.084738478064537,0.018319305032492,-0.14664888381958],[0.033203881233931,-0.028144352138042,-0.021207936108112]],[[-0.060863792896271,-0.079745054244995,0.10117974132299],[-0.018802369013429,0.01606385409832,0.021130951121449],[0.038304544985294,0.056975059211254,0.043325524777174]],[[0.013202315196395,-0.022417332977057,0.096824251115322],[-0.0063099386170506,0.0067727700807154,-0.015917833894491],[-0.030423898249865,-0.0067879632115364,-0.09012345969677]],[[-0.039235286414623,-0.033508993685246,-0.030825916677713],[0.031054101884365,-0.00031688259332441,-0.053539093583822],[-0.017469985410571,-0.089144617319107,-0.077169485390186]],[[-0.0063644219189882,0.022021999582648,0.04862305149436],[0.077857322990894,0.035202633589506,-0.020453989505768],[0.025112487375736,0.043558333069086,-0.022939890623093]],[[-0.031959287822247,0.037112917751074,0.015676712617278],[0.1423991471529,0.15518763661385,0.15226879715919],[-0.0025907859671861,-0.012754863128066,-0.0035579251125455]],[[-0.0098016178235412,-0.029234098270535,-0.13893492519855],[0.084710255265236,0.092819474637508,0.033760588616133],[-0.064101532101631,0.033490754663944,-0.055009488016367]],[[0.04752392321825,0.14197362959385,0.19832636415958],[-0.0047163176350296,0.14915907382965,0.13355092704296],[0.073330201208591,0.12840536236763,-0.062943652272224]],[[-0.086266964673996,0.10957902669907,0.21546645462513],[0.11601906269789,0.15345230698586,0.12355022132397],[0.16038145124912,0.12710422277451,0.048100341111422]],[[-0.0078617092221975,0.0031299411784858,-0.080719441175461],[-0.011869582347572,0.029087180271745,-0.057936027646065],[-0.012989712879062,-0.049696367233992,0.07323307543993]],[[0.00475456379354,0.085421420633793,-0.06016980856657],[-0.099234215915203,-0.0073311603628099,-0.054321218281984],[-0.023653250187635,-0.040676813572645,0.10264502465725]],[[-0.053561847656965,-0.092945344746113,-0.059626266360283],[0.077948711812496,-0.10514806210995,0.016872331500053],[-0.055426266044378,-0.081232160329819,0.11356132477522]],[[-0.067212298512459,-0.065423734486103,-0.00051572959637269],[-0.032911695539951,-0.025182075798512,-0.019363019615412],[-0.0056277411058545,0.029919877648354,0.058481015264988]],[[-0.0030246942769736,0.056093811988831,0.0034844630863518],[0.046250332146883,0.05836396291852,-0.020713154226542],[-0.021467357873917,-0.052179735153913,0.023687954992056]],[[-0.023042345419526,-0.038755223155022,-0.057352785021067],[-0.013015924021602,-0.043048109859228,-0.0077649299055338],[-0.050705663859844,-0.013335117138922,-0.024870179593563]],[[0.12460857629776,0.18118363618851,0.047978851944208],[-0.0046898941509426,-0.005482907872647,-0.0046595307067037],[0.012657349929214,-0.010985320433974,-0.21181945502758]],[[0.013179588131607,-0.065606825053692,-0.0054057165980339],[-0.018087185919285,0.049222685396671,0.0080028604716063],[0.086077265441418,0.14705714583397,0.07032598555088]],[[-0.124436609447,0.036483380943537,0.062555365264416],[0.065712928771973,0.00379669200629,0.10752443224192],[-0.17574845254421,-0.036306742578745,0.0035742362961173]],[[-0.064093247056007,0.00044412189163268,-0.066752813756466],[-0.029498247429729,0.075303956866264,-0.054550498723984],[-0.077931113541126,-0.090340495109558,0.12928658723831]],[[0.02880541048944,-0.050200924277306,0.082224518060684],[0.018346222117543,-0.043109375983477,-0.049539484083652],[-0.19836470484734,-0.059086658060551,-0.089845806360245]],[[0.020007507875562,0.025267856195569,-0.011241711676121],[0.031109493225813,-0.032502189278603,0.024509990587831],[0.062298253178596,0.15526258945465,0.057522732764482]],[[-0.04108502343297,-0.035210222005844,-0.025005739182234],[-0.082426212728024,0.014410860836506,-0.06825352460146],[-0.048689104616642,-0.014224845916033,-0.074761182069778]],[[0.02016026340425,0.18890415132046,0.012413853779435],[-0.014337016269565,0.025498067960143,-0.10928235948086],[-0.047474984079599,0.032272908836603,0.066580377519131]],[[0.0084705129265785,-0.023326871916652,0.0074360547587276],[-0.090993069112301,-0.050537053495646,0.0046917381696403],[0.0093809654936194,-0.059079512953758,-0.0060214935801923]],[[0.076150096952915,0.0523900128901,-0.0095969522371888],[-0.099379405379295,0.030955268070102,-0.053620275110006],[-0.059096340090036,-0.080408677458763,-0.054711163043976]],[[0.030263680964708,0.004684439394623,0.11046984791756],[0.031720612198114,0.0034303641878068,-0.12010932713747],[-0.022144891321659,-0.070984497666359,-0.12237310409546]],[[0.044325336813927,-0.071415327489376,0.11371178179979],[0.13215844333172,0.040794499218464,-0.0053594298660755],[0.069229185581207,0.047101721167564,-0.047122109681368]],[[0.04328977316618,-0.01387220621109,-0.035630013793707],[0.025647800415754,-0.066228859126568,-0.11819646507502],[0.056221727281809,-0.0018097425345331,0.090843051671982]],[[-0.013582003302872,-0.0048165870830417,-0.042371675372124],[-0.033176209777594,0.0515031889081,-0.0055487207137048],[-0.077900461852551,-0.0005660277674906,-0.049355570226908]],[[-0.014911117963493,-0.033176574856043,-0.025042915716767],[0.01011308748275,-0.087323352694511,-0.04977572709322],[-0.025799311697483,0.020052453503013,0.063483454287052]],[[0.065203368663788,-0.052429389208555,0.10337891429663],[0.05686604231596,-0.12852634489536,0.050974559038877],[0.040171522647142,-0.0081484727561474,-0.012639679014683]],[[-0.0028436512220651,0.0062515093013644,0.020949073135853],[0.052893217653036,0.020376903936267,-0.033914882689714],[0.087826274335384,0.0072884880937636,0.10045911371708]],[[-0.050247069448233,-0.15442188084126,-0.086438998579979],[0.12602885067463,0.10120625793934,-0.10581665486097],[0.0862100943923,-0.087399989366531,-0.017307821661234]],[[0.13495662808418,-0.051220458000898,-0.025437075644732],[-0.065121963620186,-0.048031207174063,0.014105282723904],[0.038921549916267,0.011350353248417,0.052672646939754]],[[-0.074802681803703,0.059837598353624,0.087106242775917],[0.029737545177341,-0.053994938731194,0.0030566395726055],[0.067483499646187,0.023968379944563,-0.016386978328228]],[[0.020581692457199,0.05599182471633,0.041202932596207],[-0.0080838995054364,-0.0035516696516424,-0.10206884890795],[-0.083503864705563,-0.11689952015877,-0.16241413354874]],[[-0.052376184612513,0.068877257406712,-0.045335344970226],[-0.059127744287252,0.0066171577200294,-0.020263073965907],[0.00934131257236,-0.056040786206722,0.071283951401711]],[[-0.10025786608458,-0.038635559380054,0.058185312896967],[-0.033748265355825,-0.011566792614758,0.10134270787239],[0.051101163029671,-0.079699344933033,-0.091481573879719]],[[0.0022345846518874,0.016688242554665,-0.041075449436903],[-0.083079136908054,-0.034332491457462,-0.015039489604533],[0.0085114128887653,-0.070103615522385,0.10366579890251]],[[-0.0097493482753634,-0.096203818917274,-0.078381687402725],[-0.17914833128452,-0.032690644264221,-0.059694986790419],[-0.041199054569006,0.03147741779685,0.0014413235476241]],[[-0.072734639048576,0.070484258234501,0.0066972742788494],[0.015545351430774,-0.088560499250889,-0.068959131836891],[0.078162327408791,-0.011399795301259,0.052681215107441]],[[-0.029926342889667,0.14437061548233,0.011248811148107],[-0.039315663278103,0.030530055984855,0.028523255139589],[-0.010118681937456,-0.05652754753828,0.039715025573969]],[[-0.0079962145537138,-0.058150250464678,0.073948003351688],[-0.026557110249996,-0.042976520955563,-0.087002456188202],[0.030028948560357,0.093850158154964,-0.0042087100446224]],[[0.042820896953344,0.044160146266222,0.047568462789059],[-0.030048614367843,-0.017949175089598,0.0060121300630271],[0.11203093081713,0.052476678043604,0.10857529938221]],[[0.17397853732109,0.016601290553808,0.055514242500067],[0.001088080345653,-0.041066877543926,-0.076565988361835],[-0.096839182078838,0.039198707789183,-0.018429713323712]],[[-0.10872555524111,-0.18318282067776,0.047024942934513],[0.023372745141387,0.18760015070438,0.13950099050999],[0.10292712599039,0.17221342027187,-0.054267957806587]],[[-0.1375303119421,0.0049965586513281,0.10702972114086],[0.093386009335518,0.071893461048603,-0.078341126441956],[-0.016575196757913,-0.06017142534256,-0.1138751283288]],[[0.0096024135127664,-0.021511316299438,0.0077066286467016],[-0.0028142107184976,0.01314193662256,0.016824560239911],[0.15164026618004,-0.12558034062386,0.18981136381626]],[[-0.028059154748917,-0.079638130962849,-0.00039492693031207],[0.087708659470081,0.035831145942211,-0.0012087182840332],[0.098847858607769,-0.040797337889671,-0.10699143260717]],[[0.067601047456264,0.15025237202644,0.0065211141481996],[-0.032939556986094,0.080228313803673,-0.0022189423907548],[0.013074513524771,0.0065844533964992,-0.068891324102879]],[[0.037761569023132,-0.0056032510474324,0.073812313377857],[0.079083599150181,-0.00012852151121479,-0.041212424635887],[-0.078973107039928,-0.13591974973679,-0.079808905720711]],[[-0.033073227852583,-0.065587975084782,0.037289559841156],[-0.044352166354656,-0.029742186889052,0.037047237157822],[0.11452497541904,-0.084661811590195,-0.014536429196596]],[[0.10892002284527,-0.062236815690994,-0.086046546697617],[0.031741660088301,0.04494459554553,-0.013620693236589],[0.018300604075193,-0.030569290742278,-0.12197618931532]],[[0.031363908201456,0.0087600201368332,0.033561021089554],[0.018252436071634,0.027334714308381,-0.04935697466135],[0.03933572396636,0.010975661687553,-0.029669651761651]],[[0.054888159036636,0.077430412173271,0.068210534751415],[0.021049225702882,-0.028628969565034,0.11443125456572],[-0.072666220366955,-0.02186750434339,0.10139358788729]],[[0.00065867562079802,-0.088674314320087,-0.026219071820378],[0.0090057086199522,0.061795249581337,0.074310153722763],[0.12914688885212,0.067987263202667,0.0032636527903378]],[[-0.057191733270884,-0.015751346945763,0.057400699704885],[-0.0055231917649508,0.018086850643158,0.019676564261317],[-0.16219690442085,0.086108818650246,0.050690308213234]],[[0.020402494817972,0.079548314213753,-0.046931628137827],[-0.12154464423656,-0.097902595996857,-0.034956723451614],[-0.023911837488413,-0.027810012921691,-0.10200761258602]],[[0.002404096769169,-0.082050234079361,0.11325993388891],[0.0060412497259676,-0.034198716282845,-0.070079647004604],[0.01997697353363,0.017543757334352,-0.00091663160128519]],[[0.09929558634758,-0.03212396800518,-0.0079521089792252],[0.0712905600667,-0.022405588999391,-0.028512723743916],[-0.016989605501294,-0.15044572949409,-0.079436495900154]],[[0.068590402603149,0.021977372467518,0.17114801704884],[0.093222267925739,0.19324621558189,0.27550947666168],[-0.022414289414883,0.019597142934799,0.089173808693886]],[[-0.10027226805687,-0.049981310963631,-0.02882887609303],[-0.00014819196076132,-0.073433078825474,-0.010483603924513],[0.10784178227186,0.097338639199734,-0.011908022686839]],[[-0.10974612832069,-0.077719390392303,0.01904233917594],[0.19322249293327,0.10915689915419,0.166528403759],[-0.0037971972487867,0.075598120689392,0.0037739323452115]],[[-0.068310938775539,-0.013069082051516,-0.048835135996342],[-0.088871337473392,-0.10180336982012,0.0021604329813272],[-0.043708320707083,0.031137943267822,0.023876735940576]],[[-0.0035901693627238,-0.15235111117363,-0.0047440747730434],[0.010190368629992,-0.15430435538292,-0.060855835676193],[-0.099725358188152,-0.11902451515198,-0.043144818395376]],[[0.081145450472832,-0.095294423401356,-0.16665199398994],[0.019258514046669,-0.056154422461987,-0.0056449803523719],[-0.064673528075218,0.010161780752242,0.018215326592326]],[[-0.01792710646987,0.02062770165503,0.031890615820885],[0.028125813230872,-0.10997761785984,-0.073238953948021],[0.058122612535954,0.039233881980181,0.079094395041466]],[[-0.021299738436937,-0.056634318083525,-0.047321226447821],[-0.058940730988979,-0.02237112633884,-0.0050474447198212],[-0.0010401501785964,0.10448986291885,0.1793926358223]],[[-0.0637177079916,0.062962263822556,0.021783594042063],[-0.039560973644257,-0.082403421401978,-0.030388530343771],[-0.046044442802668,-0.017884202301502,0.10026276111603]],[[0.012934420257807,0.031047694385052,0.043461561203003],[0.0074542947113514,0.074343308806419,0.072216145694256],[-0.20277242362499,-0.18413154780865,-0.07559222728014]],[[-0.11180627346039,-0.010995950549841,0.1375630646944],[-0.037455283105373,-0.13815078139305,-0.039584908634424],[0.10390482097864,0.041300799697638,0.13218382000923]],[[-0.022958669811487,-0.028788777068257,0.068344689905643],[0.014271715655923,0.0013382423203439,0.032132424414158],[0.022187672555447,0.012030477635562,0.041053507477045]],[[0.0098392674699426,0.0058611598797143,-0.026421753689647],[-0.028055852279067,-0.028494441881776,0.11732129752636],[-0.071410953998566,-0.049880359321833,-0.075995251536369]],[[0.094864875078201,0.20621500909328,0.009673529304564],[0.14456795156002,0.082557022571564,0.043109610676765],[-0.08599765598774,-0.047264337539673,-0.033567480742931]],[[-0.01981164701283,0.061587926000357,-0.10149962455034],[0.055440407246351,0.062407366931438,0.094428785145283],[-0.11269802600145,0.0068913614377379,0.027160599827766]],[[0.014585935510695,0.10638599097729,-0.044470377266407],[-0.040540106594563,0.084135830402374,-0.05008989199996],[-0.0023471114691347,-0.008152836933732,-0.029966605827212]],[[0.049327973276377,0.012305348180234,0.067209668457508],[-0.095119841396809,0.1012124940753,0.19437648355961],[-0.047051258385181,-0.063557259738445,-0.10643257200718]],[[0.028422705829144,-0.0132379187271,-0.10212223231792],[-0.027371684089303,0.054219719022512,0.078799337148666],[-0.1344129294157,0.022960733622313,-0.0065686423331499]],[[-0.026349196210504,-0.0036507658660412,0.045997433364391],[0.058058891445398,0.025241352617741,-0.0275789629668],[0.023645110428333,-0.01909951120615,0.0012318709632382]],[[0.06028376147151,-0.044138859957457,-0.04160949587822],[0.03952906280756,-0.099977821111679,-0.13413497805595],[0.024794787168503,-0.015727957710624,-0.15781970322132]],[[-0.095672212541103,0.034882176667452,0.076482810080051],[-0.02562372200191,-0.013917373493314,-0.081902056932449],[0.016699030995369,-0.09620688855648,-0.12078870087862]],[[0.024681994691491,0.078785978257656,0.14029330015182],[0.081674225628376,-0.034825306385756,0.077381730079651],[0.085435502231121,0.018105451017618,-0.0096970312297344]],[[0.092443443834782,-0.054851599037647,0.0083165038377047],[-0.045696835964918,-0.039295747876167,0.056639447808266],[0.11234712600708,0.010167766362429,-0.027386272326112]],[[-0.035015717148781,-0.21759554743767,-0.096768870949745],[-0.14225323498249,-0.14288590848446,-0.190500035882],[-0.017536098137498,0.015167632140219,-0.039299011230469]],[[0.047845005989075,0.053060721606016,-0.027178285643458],[-0.081033706665039,0.0040316702798009,-0.019029067829251],[0.0085517317056656,-0.0062115020118654,-0.020929027348757]],[[-0.038681846112013,0.14203810691833,0.029665978625417],[-0.062613613903522,0.052450623363256,-0.053657792508602],[-0.0039600180462003,-0.10825960338116,0.026465093716979]],[[0.0097275134176016,0.019822711125016,0.02183118276298],[-0.018575273454189,0.0018712194869295,-0.046393323689699],[0.051188863813877,-0.11040224134922,-0.031896241009235]],[[-0.07615077495575,0.067655108869076,0.094075255095959],[-0.088065609335899,0.061823453754187,-0.10077315568924],[-0.10382417589426,0.039810128509998,0.078533224761486]],[[-0.054202400147915,-0.070719860494137,-0.063971385359764],[-0.063934229314327,-0.027207862585783,0.079075314104557],[0.030915690585971,-0.027523992583156,-0.016058720648289]]],[[[-0.029335685074329,0.034515712410212,-0.06877489387989],[0.014437671750784,0.029051104560494,0.12295355647802],[0.017225250601768,0.18659949302673,-0.096087835729122]],[[0.10964647680521,0.081837795674801,-0.079207621514797],[-0.015764130279422,0.10506148636341,-0.017047548666596],[-0.047586429864168,-0.067525260150433,0.012224617414176]],[[-0.12286034971476,0.080093093216419,-0.016217026859522],[-0.08822713047266,0.16332158446312,-0.010938478633761],[0.089264750480652,0.066347815096378,0.12088707089424]],[[-0.42874851822853,-0.019647929817438,0.06943354010582],[-0.079124785959721,-0.023943487554789,-0.2114665210247],[-0.13088412582874,-0.051869191229343,-0.10270418971777]],[[-0.037821870297194,0.0061145997606218,-0.034587830305099],[0.018596842885017,0.14001031219959,-0.16614782810211],[0.061659548431635,0.013566613197327,-0.14229425787926]],[[-0.020316137000918,-0.10459232330322,0.01266485452652],[-0.0060739424079657,0.06028963252902,0.075993023812771],[-0.0020232419483364,0.030852429568768,0.05369957536459]],[[0.045665591955185,0.11199050396681,0.019477417692542],[0.071341030299664,-0.1508751064539,0.02871829085052],[0.025331147015095,-0.052412200719118,0.097335882484913]],[[0.15017144382,-0.00084114848868921,0.053487159311771],[-0.021930051967502,0.046584192663431,0.026593711227179],[0.044970404356718,0.0049487836658955,-0.10581809282303]],[[-0.10922352224588,0.046988889575005,0.051084812730551],[-0.093518011271954,-0.053137458860874,0.035750154405832],[-0.075185351073742,-0.089829690754414,-0.13774316012859]],[[0.03103200532496,-0.10562529414892,0.020226802676916],[-0.01744269579649,-0.32812616229057,0.065643787384033],[-0.30467599630356,-0.17101934552193,0.082086466252804]],[[0.012532765977085,0.018131967633963,-0.070861250162125],[0.041038542985916,0.044429711997509,-0.075500771403313],[0.010164723731577,-0.0068734767846763,0.042093981057405]],[[-0.061395660042763,-0.26951590180397,-0.047032661736012],[-0.062088839709759,0.13921894133091,0.18713094294071],[-0.0020270503591746,-0.049474984407425,0.038542360067368]],[[-0.070088028907776,-0.090792141854763,-0.086217418313026],[-0.14648897945881,-0.099838018417358,-0.084187552332878],[-0.063940331339836,0.003504999447614,-0.030706519261003]],[[0.22224327921867,0.018512325361371,-0.0036763183306903],[0.022517079487443,0.019985031336546,-0.034074682742357],[0.096539333462715,0.18405398726463,0.1098640114069]],[[0.1058162972331,0.14374662935734,0.057416282594204],[-0.28172218799591,0.14438499510288,0.14924636483192],[-0.0017992937937379,0.068991057574749,0.29768601059914]],[[-0.029492473229766,0.032975994050503,0.046226069331169],[-0.060147684067488,0.052265226840973,0.03858045861125],[-0.034253600984812,0.090441726148129,-0.10044905543327]],[[0.065945468842983,0.0083820512518287,-0.11780913174152],[-0.044153951108456,0.12007768452168,-0.0017083556158468],[0.039331585168839,0.10166446119547,-0.034872278571129]],[[0.022853158414364,-0.031523663550615,0.11822444200516],[0.0058246445842087,0.0092965783551335,-0.083168894052505],[0.039990868419409,-0.010215525515378,-0.1337206363678]],[[0.0009976556757465,-0.012967985123396,0.17027258872986],[0.043303813785315,-0.13392278552055,0.021780280396342],[-0.13534384965897,-0.12760682404041,0.070421017706394]],[[0.034539338201284,-0.19028899073601,-0.067298218607903],[0.066465526819229,0.021471230313182,0.054798658937216],[-0.12168817967176,-0.06621976941824,-0.045412741601467]],[[-0.057067513465881,0.061161741614342,-0.10301244258881],[0.10292489826679,-0.059781912714243,-0.16801096498966],[-0.0091601414605975,-0.084236890077591,-0.16368770599365]],[[-0.085568852722645,0.069377034902573,0.08683592826128],[0.022665426135063,-0.11570020765066,0.015387350693345],[-0.047230541706085,-0.26245081424713,-0.10693027079105]],[[-0.05525366589427,0.12341165542603,-0.01103110704571],[0.034392226487398,0.027748193591833,0.069568999111652],[-0.20462834835052,-0.030720734968781,-0.14567555487156]],[[0.094501003623009,-0.1075529307127,-0.035747263580561],[-0.37287610769272,0.015315906144679,-0.16258178651333],[-0.14815239608288,0.0073525900952518,-0.02368644811213]],[[0.082558326423168,0.013331949710846,0.010085021145642],[-0.14255483448505,0.036111298948526,-0.045584846287966],[0.016868716105819,0.062496069818735,-0.08861393481493]],[[0.052432097494602,-0.094809360802174,-0.0030220788903534],[-0.076997563242912,-0.068630456924438,-0.0049802339635789],[-0.078334920108318,0.058779627084732,-0.10480739921331]],[[0.073548071086407,0.015633827075362,0.085175901651382],[0.16487880051136,0.028740614652634,-0.015829794108868],[0.21905748546124,-0.017341360449791,-0.12220130860806]],[[-0.061983231455088,0.1048004925251,0.12639738619328],[-0.12915661931038,0.066594831645489,-0.021983617916703],[-0.052197925746441,0.16422712802887,-0.032264970242977]],[[0.13162705302238,-0.079875819385052,-0.045154739171267],[0.0068320166319609,-0.17421643435955,0.0064311777241528],[-0.14838218688965,-0.063387528061867,0.03314771130681]],[[0.12871330976486,-0.023288331925869,0.066976100206375],[-0.092433616518974,0.035603743046522,-0.062488723546267],[-0.13977421820164,0.067668281495571,-0.017370611429214]],[[-0.11911052465439,-0.12900784611702,0.067754067480564],[-0.11517877131701,0.10021831840277,-0.029678361490369],[0.088163204491138,0.11365862935781,-0.0070351986214519]],[[-0.12720602750778,0.0069881877861917,0.057789124548435],[-0.11575192958117,0.073055788874626,-0.064432322978973],[0.093779243528843,0.046946723014116,-0.080987609922886]],[[0.044584166258574,-0.10238391906023,0.068808548152447],[0.10702076554298,-0.026363981887698,-0.010753485374153],[0.10534831881523,-0.084897488355637,-0.065498769283295]],[[-0.06558907777071,0.062593951821327,-0.029126832261682],[-0.019729744642973,0.11420779675245,-0.11883390694857],[-0.26002588868141,0.2460590749979,-0.081375785171986]],[[0.013551612384617,-0.069322600960732,0.023120906203985],[-0.0002451213367749,0.012647248804569,0.030441587790847],[-0.047058936208487,-0.02581874653697,0.00078909017611295]],[[0.15087859332561,0.011244861409068,-0.039211060851812],[0.13047677278519,0.033431954681873,-0.12552280724049],[0.27619004249573,-0.16024546325207,-0.10589870810509]],[[-0.12795680761337,-0.0096333744004369,-0.13516815006733],[-0.11560375243425,-0.04896342754364,0.18932923674583],[-0.10736456513405,0.11147689819336,0.14885364472866]],[[-0.034080237150192,-0.15364266932011,0.00228590820916],[-0.0081989578902721,-0.061046004295349,-0.078074440360069],[-0.053929507732391,-0.039048191159964,0.019620969891548]],[[0.015634406358004,0.097825013101101,0.035109914839268],[-0.076387390494347,-0.043835833668709,-0.011815235950053],[-0.098042987287045,0.00049118342576548,0.026858814060688]],[[-0.061771150678396,0.14325062930584,0.025913601741195],[-0.020094411447644,0.12688754498959,-0.083548091351986],[-0.21826495230198,0.092885673046112,-0.047779850661755]],[[-0.054446008056402,0.046470187604427,-0.036694940179586],[0.20016947388649,0.09887669980526,-0.054393406957388],[0.09368622303009,-0.13030667603016,-0.14874640107155]],[[-0.0055661629885435,0.14106456935406,-0.01242078281939],[0.043594967573881,0.055586878210306,0.064306810498238],[-0.0053468951955438,-0.02503720484674,-0.031010614708066]],[[0.022113926708698,-0.019448585808277,0.0090160295367241],[0.044206351041794,-0.011176290921867,-0.044075462967157],[0.12539114058018,-0.1026923879981,-0.24180433154106]],[[0.073079645633698,0.15572987496853,0.078750893473625],[0.10124496370554,-0.025931980460882,-0.11044110357761],[0.058055330067873,-0.20968960225582,-0.17242369055748]],[[-0.086081370711327,0.067804545164108,0.095173060894012],[0.2088810056448,0.11467517912388,0.19405317306519],[-0.0069124666042626,-0.044142633676529,-0.019423274323344]],[[-0.43794560432434,-0.057180669158697,0.13310493528843],[0.049790296703577,0.067151010036469,0.10031847655773],[-0.014882451854646,0.041046231985092,0.02800434269011]],[[0.12241118401289,0.16896325349808,-0.05379756167531],[0.051734536886215,0.014684963971376,-0.12178789824247],[-0.016434106975794,-0.055971123278141,-0.018783750012517]],[[-0.061651021242142,-0.062851510941982,-0.19092781841755],[0.0037674789782614,0.028705360367894,0.031962256878614],[0.16955353319645,-0.059469848871231,-0.051859375089407]],[[0.10485699027777,-0.12192863225937,-0.10056136548519],[0.0048303189687431,-0.082006961107254,-0.0096632586792111],[0.085667237639427,0.006710309535265,0.069195598363876]],[[0.097210988402367,-0.028521744534373,-0.018475212156773],[0.0061432463116944,-0.055921725928783,-0.12969137728214],[-0.10721293091774,0.075998961925507,-0.055096536874771]],[[0.029754925519228,-0.15359728038311,-0.078645765781403],[-0.062835805118084,-0.076685301959515,-0.0044882013462484],[-0.096525572240353,-0.02553660236299,0.085905849933624]],[[-0.040907353162766,-0.037521786987782,0.13220883905888],[-0.088369384407997,0.012589476071298,-0.0067949276417494],[-0.012150485999882,0.012455205433071,-0.098769016563892]],[[0.087682120501995,0.10965583473444,-0.039773873984814],[0.076123125851154,0.068929605185986,-0.074966408312321],[0.035529647022486,-0.048321265727282,-0.35476186871529]],[[0.068596892058849,0.00042252423008904,-0.29864618182182],[0.059891302138567,-0.13378366827965,-0.1920682489872],[0.037661883980036,0.01551063824445,0.034366521984339]],[[0.068030290305614,-0.10557749122381,0.0047911498695612],[0.0018356911605224,0.011320475488901,0.012787664309144],[-0.018756398931146,-0.064871892333031,-0.071401424705982]],[[0.0070811165496707,0.11915470659733,0.013414300046861],[0.11332924664021,0.071538105607033,-0.068468384444714],[0.026301274076104,-0.050781089812517,-0.053840961307287]],[[-0.23429988324642,0.067404113709927,0.098642684519291],[0.12786540389061,0.15061855316162,-0.020098628476262],[0.011500340886414,-0.26371505856514,-0.16449561715126]],[[-0.031829997897148,0.066602513194084,-0.04057714343071],[0.051155261695385,0.014179985038936,0.0070286206901073],[-0.06233024597168,-0.066511787474155,0.010214563459158]],[[0.024504220113158,-0.08517137914896,-0.070966936647892],[-0.013729712925851,-0.057178184390068,-0.042664896696806],[0.031292319297791,-0.064799420535564,-0.098758913576603]],[[-0.030368315055966,-0.024929068982601,0.11415310949087],[-0.076016888022423,-0.1045830398798,0.045537885278463],[0.056863464415073,0.12280263006687,0.085066586732864]],[[0.012416185811162,0.031148687005043,0.016777031123638],[-0.045596860349178,-0.039387356489897,-0.20682023465633],[-0.025342851877213,-0.17569889128208,-0.41653588414192]],[[0.054937839508057,0.090989321470261,-0.077420987188816],[0.066243246197701,0.038687851279974,-0.024111678823829],[0.027704147621989,-0.13616898655891,-0.053790956735611]],[[0.049709092825651,0.11721000820398,-0.0599644780159],[0.1354940533638,0.10918156057596,-0.040975738316774],[-0.039692338556051,0.017035225406289,0.084702461957932]],[[0.05395445972681,0.059076376259327,-0.099515080451965],[-0.067887306213379,0.11603542417288,0.081662110984325],[-0.043199490755796,0.086804077029228,-0.025501834228635]],[[0.20132987201214,-0.18623028695583,0.05523869022727],[-0.055375501513481,-0.068797148764133,0.064739666879177],[-0.016558609902859,-0.0036189574748278,0.13586683571339]],[[0.0039633088745177,-0.097685389220715,0.1749881953001],[-0.044372744858265,0.028370866551995,0.1314439624548],[-0.18620620667934,0.0064763901755214,-0.060639925301075]],[[0.24271070957184,0.047626990824938,-0.19639666378498],[-0.001374275656417,-0.023216899484396,-0.1714383661747],[0.10299483686686,-0.031196365132928,0.069349430501461]],[[0.019055342301726,-0.085920214653015,-0.051912236958742],[-0.15165154635906,-0.063712581992149,-0.070639476180077],[-0.02378972619772,-0.081211008131504,-0.1304045021534]],[[0.030295142903924,-0.0031654997728765,-0.11894427239895],[0.080022968351841,-0.056353762745857,0.070246666669846],[0.17866924405098,0.091443911194801,0.04756398499012]],[[0.0074591310694814,0.19744390249252,0.021962953731418],[-0.068350948393345,0.14172838628292,-0.02455380000174],[-0.041847709566355,0.11159564554691,0.099446564912796]],[[0.063429221510887,0.044682580977678,0.0622170381248],[0.11291559040546,-0.087727405130863,-0.18982598185539],[0.13448947668076,0.027763860300183,0.11117780208588]],[[-0.10080935060978,0.14167308807373,-0.10186978429556],[0.16468481719494,-0.074645824730396,-0.0098546240478754],[0.019060617312789,-0.036935467272997,0.087837189435959]],[[0.04126800596714,-0.10541152954102,-0.045350097119808],[-0.040978897362947,-0.011182622984052,0.00070782890543342],[0.18535080552101,0.059841062873602,-0.18706710636616]],[[0.17371261119843,0.15279899537563,0.073526360094547],[-0.071987561881542,0.01438729185611,0.010071781463921],[-0.09222798794508,-0.12936393916607,-0.10408426821232]],[[-0.14014849066734,-0.084359131753445,-0.004162791185081],[-0.041113026440144,0.17869481444359,0.070884644985199],[-0.0072619873099029,-0.22939531505108,-0.13565830886364]],[[0.1104456409812,0.066647544503212,-0.31133258342743],[0.084984540939331,-0.024342007935047,-0.056913547217846],[0.076995901763439,-0.11468741297722,-0.12279126793146]],[[-0.033463284373283,-0.1247119680047,0.10864701122046],[-0.070861116051674,-0.13994318246841,0.12220185250044],[-0.046858716756105,-0.015927804633975,0.21354384720325]],[[-0.26399683952332,-0.17587786912918,0.074998788535595],[-0.018055053427815,-0.068937286734581,-0.010839831084013],[-0.043406933546066,-0.014686704613268,-0.15873603522778]],[[0.37524047493935,-0.21143431961536,-0.024314895272255],[0.14867641031742,0.023821467533708,0.049366403371096],[-0.072742648422718,0.010757693089545,0.19290564954281]],[[-0.076684139668941,-0.18913999199867,-0.20827850699425],[0.056346725672483,-0.065601825714111,-0.14915028214455],[-0.052583511918783,-0.020847523584962,0.067280128598213]],[[-0.13065592944622,-0.021059967577457,-0.044357191771269],[0.11573439091444,-0.0071216118521988,0.062108296900988],[0.032534047961235,0.0029783931095153,0.15903927385807]],[[-0.088154464960098,-0.020066201686859,-0.084184043109417],[-0.10086699575186,-0.09568128734827,-0.054321583360434],[0.15540705621243,-0.033996116369963,-0.13150815665722]],[[0.17068417370319,0.034609738737345,-0.080154433846474],[0.17510642111301,0.030199956148863,-0.093270339071751],[0.078870043158531,-0.090440593659878,0.026506828144193]],[[0.1299249380827,0.06910902261734,0.0047249044291675],[-0.045524176210165,-0.10539861023426,-0.14670512080193],[-0.26972037553787,-0.049295075237751,-0.12588204443455]],[[-0.062206238508224,0.055494859814644,0.015234953723848],[-0.11604532599449,0.024554163217545,0.048746861517429],[-0.062939420342445,0.018880501389503,0.31124177575111]],[[0.018773091956973,-0.14500823616982,0.056315839290619],[0.028897427022457,0.13333940505981,0.041388187557459],[0.1504190415144,-0.11984705924988,-0.10329244285822]],[[0.067721083760262,0.12608514726162,-0.019361888989806],[0.22200536727905,0.18753549456596,0.02753565274179],[0.049165677279234,0.064294762909412,-0.029463050886989]],[[0.076631881296635,-0.038621854037046,-0.09157957136631],[0.030213298276067,0.0065606175921857,0.1341807693243],[0.066941693425179,-0.09162113815546,-0.13619691133499]],[[-0.035317916423082,0.093126460909843,-0.024200307205319],[0.057677194476128,-0.036395065486431,0.026529368013144],[-0.16397327184677,-0.073284506797791,0.0311638712883]],[[-0.1098645851016,-0.032774306833744,0.074370130896568],[-0.061308443546295,0.17573261260986,-0.028191827237606],[-0.049390070140362,-0.12513893842697,-0.056018959730864]],[[-0.033086076378822,0.26880392432213,0.058491747826338],[0.033077497035265,0.14909641444683,0.11319147050381],[0.0033919143024832,-0.031941451132298,-0.16159997880459]],[[-0.10819976776838,0.012600501067936,-0.024970481172204],[-0.12227445095778,-0.071034006774426,0.17967423796654],[-0.14200215041637,-0.019229643046856,-0.02185845375061]],[[0.00091848452575505,-0.13643763959408,-0.056532587856054],[0.047835160046816,-0.18214249610901,0.0053551862947643],[-0.02387466467917,-0.051254075020552,-0.088175266981125]],[[0.10185139626265,0.18638782203197,0.090053960680962],[0.027747746556997,0.050971738994122,-0.14120961725712],[-0.10988780856133,0.081949263811111,-0.1302352398634]],[[0.18996340036392,0.032872952520847,-0.093589298427105],[0.065120793879032,-0.017376249656081,-0.064064703881741],[-0.069687001407146,-0.045541003346443,-0.028562968596816]],[[-0.14018572866917,0.032166071236134,-0.058137983083725],[0.013797879219055,0.065518736839294,0.044400986284018],[0.014005054719746,0.086851224303246,-0.076492160558701]],[[0.039679512381554,0.099820882081985,0.059380702674389],[-0.11377380788326,0.016552453860641,-0.12083398550749],[-0.01700091548264,-0.071520239114761,-0.12647460401058]],[[-0.038422502577305,-0.020616451278329,-0.0084282951429486],[-0.041006304323673,-0.14797724783421,0.02936383895576],[-0.19218389689922,-0.034117698669434,0.10688903182745]],[[-0.31713664531708,0.17236340045929,0.091462604701519],[-0.005654779728502,0.049562342464924,0.045352626591921],[-0.13329854607582,0.01285419985652,-0.013278149999678]],[[0.11018991470337,0.021752515807748,-0.079072460532188],[-0.068781584501266,0.13355702161789,-0.08972006291151],[0.0032986195292324,-0.083729758858681,-0.096086673438549]],[[-0.14407621324062,-0.10158969461918,0.20426915585995],[-0.26567152142525,0.026675401255488,0.16047494113445],[-0.21990396082401,0.018421923741698,0.10360185056925]],[[-0.068730764091015,-0.060195431113243,-0.11199229955673],[0.025781445205212,0.10813626646996,0.12891466915607],[0.082554534077644,0.00066198309650645,-0.045918438583612]],[[0.15283887088299,0.13870252668858,-0.0142622301355],[-0.14004103839397,0.022647764533758,0.015579015947878],[-0.093853503465652,0.020501136779785,0.0095095774158835]],[[-0.075098432600498,-0.076084449887276,0.18768073618412],[-0.070088401436806,-0.21145111322403,0.107157073915],[-0.052418071776628,0.037240002304316,0.15135529637337]],[[-0.12014515697956,-0.041325528174639,-0.14545878767967],[-0.046290919184685,-0.052319120615721,-0.01970561221242],[-0.046515867114067,-0.063243210315704,0.22006425261497]],[[0.061997000128031,0.061403851956129,-0.38050302863121],[0.081831499934196,-0.083648659288883,0.070153325796127],[0.096641108393669,0.11006104201078,0.32647097110748]],[[-0.049792777746916,-0.064369760453701,-0.1254658550024],[-0.026456251740456,0.0042185746133327,-0.12712849676609],[-0.046416576951742,0.0051316670142114,-0.13953211903572]],[[0.11725196242332,0.14098818600178,-0.028349686414003],[0.092360474169254,0.031956572085619,0.0087267784401774],[0.075810626149178,-0.064334310591221,-0.041916653513908]],[[-0.015636816620827,-0.077969804406166,0.075389742851257],[-0.094687923789024,0.11302425712347,-0.085449025034904],[-0.1034789904952,0.023132033646107,-0.045838877558708]],[[-0.045868583023548,0.051349759101868,0.06984993070364],[0.0034914494026452,-0.056410148739815,-0.023438571020961],[0.046061176806688,0.11087190359831,-0.01649677567184]],[[-0.0018857043469325,-0.067854627966881,0.030888855457306],[-0.029612168669701,-0.16519092023373,0.023338848724961],[-0.071310684084892,0.055953621864319,0.1028131172061]],[[-0.041041482239962,-0.030953986570239,-0.1142992824316],[-0.028997261077166,-0.031208531931043,-0.17924748361111],[0.063144065439701,-0.17800828814507,0.0052679716609418]],[[-0.057841565459967,-0.11071560531855,-0.16206347942352],[0.029642380774021,-0.00097659637685865,-0.013326873071492],[0.036871396005154,0.17232565581799,0.036326754838228]],[[-0.077980689704418,-0.03481874987483,-0.21343886852264],[0.11111164838076,-0.062694311141968,-0.074840858578682],[0.1307584643364,0.040364030748606,-0.075971618294716]],[[-0.0174709726125,0.08987332880497,-0.080307736992836],[0.048584457486868,0.07064513117075,0.089485727250576],[0.0045884088613093,0.15269392728806,0.078495934605598]],[[0.11920347064734,-0.14769175648689,-0.1268140822649],[0.026193536818027,0.033881783485413,0.039118036627769],[0.091719977557659,0.070491507649422,-0.12792395055294]],[[-0.14196103811264,0.0034376559779048,-0.060117620974779],[0.025138350203633,-0.048501931130886,-0.063399769365788],[0.025283792987466,-0.046212948858738,0.14561587572098]],[[0.031467337161303,-0.016037929803133,0.10479222238064],[-0.01258126553148,-0.039724607020617,0.030647372826934],[-0.093694940209389,0.031898573040962,0.024918297305703]],[[-0.0079981042072177,-0.016275698319077,0.33241307735443],[-0.12348448485136,-0.017827117815614,0.044397346675396],[-0.043510746210814,-0.004480391740799,0.10920443385839]],[[-0.12487418949604,0.016511388123035,-0.076016999781132],[0.023544991388917,0.011140318587422,-0.046214390546083],[0.11847473680973,-0.027155557647347,-0.16097855567932]],[[-0.13507971167564,-0.1611365377903,-0.2619691491127],[-0.12608858942986,-0.16038164496422,0.028500787913799],[0.062843963503838,0.17417761683464,0.011203777045012]],[[0.024362998083234,0.11636831611395,0.097837626934052],[0.073077537119389,0.02405614964664,-0.019176479429007],[-0.010189686901867,-0.096597246825695,0.08563493937254]],[[0.044872190803289,-0.14175622165203,-0.0077174194157124],[0.071740314364433,-0.15398977696896,-0.063952155411243],[0.061813104897738,-0.028363738209009,-0.033575978130102]],[[0.19990223646164,-0.085365027189255,-0.11220820248127],[-0.053468391299248,-0.017589952796698,-0.049622338265181],[-0.22974403202534,-0.0095481174066663,0.18358966708183]],[[-0.056273248046637,-0.14458599686623,-0.027754694223404],[-0.17876544594765,0.026917727664113,0.12502703070641],[-0.067712716758251,0.19388304650784,-0.047772120684385]],[[0.014882562682033,-0.0096808886155486,-0.1436328291893],[-0.11582347005606,0.16843071579933,-0.020166646689177],[0.020140394568443,0.153568983078,0.026877854019403]],[[0.015773123130202,-0.04573717340827,0.018002977594733],[-0.0084779411554337,0.0078943697735667,-0.010812195017934],[-0.01526132132858,0.14279444515705,-0.002936395816505]],[[-0.070980109274387,0.047577310353518,-0.16805475950241],[-0.051032137125731,0.001265564118512,0.019314043223858],[-0.017281411215663,-0.014360365457833,0.20166689157486]]],[[[0.0050557861104608,-0.077645912766457,0.0085223177447915],[-0.012308852747083,-0.081694968044758,0.1708750128746],[-0.011404870077968,-0.12967403233051,-0.071364842355251]],[[0.20736065506935,0.091601446270943,0.098000958561897],[-0.31748279929161,-0.16348916292191,0.055260017514229],[0.11884132027626,0.019471833482385,0.15666735172272]],[[-0.040330447256565,-0.052240993827581,-0.062475431710482],[0.16469405591488,0.10986471176147,0.24712918698788],[0.047790288925171,0.058123271912336,-0.023443492129445]],[[0.035290036350489,-0.013065834529698,0.027495853602886],[0.17331270873547,0.012825244106352,-0.036466598510742],[-0.0089153284206986,-0.088241271674633,-0.11148485541344]],[[-0.17802281677723,-0.23333404958248,-0.12296660989523],[0.044878032058477,-0.11495883017778,0.11548440903425],[0.12565405666828,-0.039535660296679,-0.019959818571806]],[[-0.037845809012651,-0.1906965225935,0.059036064893007],[-0.026076065376401,-0.076361127197742,-0.059185147285461],[0.049747779965401,0.074158422648907,0.0024369270540774]],[[0.23904100060463,0.11904475092888,0.38096162676811],[0.083631083369255,0.033376134932041,-0.078040316700935],[0.040160056203604,0.049315098673105,-0.033503651618958]],[[0.088644102215767,0.0024059535935521,0.0090901739895344],[-0.09246451407671,0.064062483608723,-0.13310487568378],[0.12294578552246,0.17693266272545,0.21063894033432]],[[0.081040509045124,0.088860809803009,0.1541847884655],[-0.077020838856697,-0.16930666565895,-0.2860144674778],[0.18851953744888,0.24533638358116,0.21535423398018]],[[0.0024038935080171,-0.016670050099492,-0.028960986062884],[-0.0049676015041769,-0.12590856850147,-0.097211591899395],[-0.13945932686329,-0.18670761585236,-0.12153104692698]],[[0.049677163362503,0.053855169564486,0.068456403911114],[-0.052620694041252,-0.055837973952293,-0.12018578499556],[-0.11911875009537,0.0026119623798877,-0.099357835948467]],[[-0.16902239620686,0.064887583255768,0.048626538366079],[0.00063522555865347,-0.1165349110961,-0.147221326828],[0.12694358825684,0.11175640672445,-0.036234553903341]],[[-0.037398405373096,-0.090248741209507,-0.14984580874443],[0.037005800753832,0.076946698129177,0.064714185893536],[-0.067177459597588,0.0087395282462239,-0.032545026391745]],[[-0.096623472869396,-0.18829600512981,-0.15361461043358],[0.082347311079502,0.060250222682953,0.12212787568569],[0.0085006877779961,-0.27343580126762,-0.21639105677605]],[[0.010706068016589,0.011737760156393,-0.104681417346],[-0.19679978489876,-0.014351720921695,-0.033380825072527],[0.077384777367115,0.09400749206543,0.18361438810825]],[[-0.0098752975463867,0.016978971660137,-0.038633909076452],[0.047921985387802,-0.046477481722832,-0.13398016989231],[-0.080803819000721,-0.14411704242229,-0.0060055758804083]],[[-0.11166197061539,-0.038572564721107,-0.16473273932934],[0.032639946788549,0.10467925667763,0.034503437578678],[0.029933884739876,0.02509168908,0.010086756199598]],[[-0.029431242495775,-0.14164170622826,-0.090065605938435],[-0.010253366082907,-0.074389509856701,0.23526304960251],[0.19292585551739,-0.0047051892615855,-0.015684517100453]],[[-0.13115257024765,-0.16536226868629,-0.10226362943649],[0.089136026799679,0.036409161984921,0.013135050423443],[-0.05832277983427,-0.075816303491592,-0.054109260439873]],[[-0.098749130964279,-0.047306068241596,0.046551492065191],[-0.35744363069534,-0.25460115075111,-0.081982165575027],[0.15133728086948,0.16400182247162,0.029161611571908]],[[-0.0065988609567285,-0.1123570650816,0.13709968328476],[-0.033219739794731,0.096820876002312,0.011653489433229],[-0.12902051210403,-0.14675225317478,-0.17867782711983]],[[0.043243445456028,-0.0014954820508137,-0.10727227479219],[0.040624100714922,0.036657821387053,-0.09245590120554],[-0.12038383632898,-0.0055790282785892,0.039911072701216]],[[0.22847080230713,0.30829209089279,0.071859240531921],[0.074364364147186,0.010160990990698,-0.2858834862709],[-0.20520479977131,-0.13096046447754,0.31581428647041]],[[0.003740751883015,-0.074568092823029,-0.0022947585675865],[0.0077652619220316,0.047313705086708,0.11294943094254],[-0.08561584353447,-0.017019491642714,-0.030249267816544]],[[0.1309901624918,0.11803319305182,-0.022629249840975],[-0.14263191819191,0.072302721440792,0.17586217820644],[0.18155510723591,0.059097066521645,-0.023115841671824]],[[0.0040460838936269,0.056556273251772,0.091894842684269],[0.026153823360801,0.06312558054924,0.040776796638966],[-0.02728271856904,0.0038565977010876,-0.073630653321743]],[[0.13399629294872,0.025960199534893,-0.0018591965781525],[-0.05757112801075,0.031260095536709,0.12213700264692],[-0.11435066908598,0.015739683061838,0.0070941685698926]],[[-0.011596945114434,-0.095818534493446,-0.046976700425148],[0.14429548382759,-0.05214386433363,-0.29223683476448],[0.030661588534713,0.11448711156845,0.21905234456062]],[[0.10552775859833,-0.050478585064411,0.0067945877090096],[-0.11999669671059,-0.034481707960367,-0.0062834126874804],[-0.21857409179211,-0.37473577260971,-0.030942298471928]],[[0.13479523360729,0.051541212946177,0.062996402382851],[0.039302591234446,0.048326544463634,0.13382244110107],[-0.051158297806978,-0.062637954950333,-0.0063878018409014]],[[0.028755631297827,-0.0014329577097669,-0.024656169116497],[-0.17354273796082,-0.2025258243084,-0.36940687894821],[0.17708422243595,0.058986525982618,0.2057881206274]],[[0.026950491592288,-0.081479072570801,-0.079154334962368],[0.16731618344784,-0.064049057662487,-0.1552450209856],[0.083195358514786,0.080186106264591,-0.037826735526323]],[[0.0038033886812627,-0.13023538887501,-0.24141411483288],[-0.086188219487667,-0.047262910753489,-0.13365970551968],[0.05499966070056,0.063911288976669,-0.087965585291386]],[[0.12977042794228,0.069202855229378,-0.0022318563424051],[-0.0074874004349113,0.0021765113342553,0.046475358307362],[-0.098543718457222,0.025320701301098,0.22220626473427]],[[-0.10002915561199,-0.19933576881886,-0.25890654325485],[-0.022073408588767,0.022849339991808,0.089438006281853],[-0.016384931281209,0.1444994956255,0.012908408418298]],[[0.20532709360123,0.15494124591351,0.056707579642534],[-0.096004955470562,0.012232297100127,0.2110782712698],[-0.21491731703281,-0.23556858301163,-0.097693294286728]],[[-0.1271336376667,-0.20527356863022,-0.22350727021694],[0.2013938575983,0.07156641036272,0.13061946630478],[-0.010131911374629,-0.050128143280745,-0.069545306265354]],[[0.047656707465649,0.071392722427845,0.06516619771719],[-0.15117847919464,-0.049808956682682,0.01134722866118],[0.017798354849219,0.096122868359089,-0.14377239346504]],[[-0.02034879103303,0.074233293533325,0.23406359553337],[-0.19967222213745,-0.15229517221451,-0.22146531939507],[0.048949081450701,-0.03960819914937,-0.090359777212143]],[[0.038479536771774,0.1341817677021,0.11575295776129],[-0.062833487987518,-0.1784729808569,-0.33313602209091],[-0.084059663116932,-0.029349371790886,0.046738021075726]],[[-0.03520493209362,-0.1595162153244,-0.097969807684422],[-0.12569218873978,-0.039189796894789,-0.082808211445808],[0.20811195671558,0.015531476587057,-0.023844413459301]],[[0.020781209692359,-0.044978473335505,-0.10105570405722],[0.16689977049828,0.12398856133223,0.072996266186237],[0.10207366198301,0.038143839687109,0.17494282126427]],[[0.13391713798046,-0.068558894097805,-0.10954511165619],[0.014617162756622,0.010022666305304,-0.017505964264274],[-0.16607548296452,-0.18572020530701,-0.16791521012783]],[[-0.056599386036396,-0.070871107280254,-0.055039823055267],[-0.11507019400597,-0.041270174086094,-0.10801637172699],[-0.04024950787425,-0.072662115097046,-0.067647844552994]],[[-0.076779536902905,-0.064113274216652,0.016286317259073],[0.03375206142664,-0.073779992759228,-0.11930736899376],[0.026476930826902,-0.029283095151186,-0.10323694348335]],[[-0.29316967725754,-0.14153629541397,-0.14447683095932],[0.10773400962353,-0.001140222302638,-0.080488212406635],[0.065693005919456,0.0092004025354981,0.1666584610939]],[[0.086474105715752,-0.13568818569183,-0.010147421620786],[0.0081816557794809,-0.058532513678074,-0.13423083722591],[-0.031915776431561,-0.081364221870899,-0.059131674468517]],[[0.24455085396767,0.18047586083412,-0.024722268804908],[-0.31989747285843,-0.13566035032272,0.051934018731117],[-0.027090560644865,-0.031650882214308,-0.093793146312237]],[[-0.07703310251236,0.067269824445248,0.26445156335831],[0.0096141006797552,0.017001563683152,-0.19738571345806],[-0.064423531293869,0.048822153359652,0.11691850423813]],[[-0.033131401985884,-0.062464442104101,0.022642608731985],[-0.12761831283569,-0.16238364577293,-0.18768756091595],[-0.17557805776596,-0.22206792235374,-0.073471255600452]],[[-0.094755277037621,-0.060087408870459,-0.02810394577682],[-0.15714132785797,0.026079995557666,0.064629055559635],[0.2691907286644,-0.072589874267578,-0.14122360944748]],[[0.03731831908226,-0.067654512822628,-0.037782792001963],[0.007118908688426,0.062233489006758,-0.057008441537619],[-0.06472585350275,0.072442620992661,0.15851517021656]],[[0.0051764808595181,-0.0089868027716875,-0.086840711534023],[-0.040009327232838,-0.060727998614311,-0.21351464092731],[-0.063961766660213,-0.099111638963223,-0.15684349834919]],[[0.058215044438839,-0.01766861975193,-0.052677143365145],[-0.10656001418829,-0.0066585610620677,-0.037170883268118],[0.051501367241144,-0.0078746750950813,-0.16895687580109]],[[-0.053982526063919,-0.088646769523621,-0.049713894724846],[0.053047861903906,-0.073614172637463,-0.038128715008497],[-0.038484305143356,-0.063640065491199,-0.15503799915314]],[[0.31905317306519,0.076951257884502,0.085940755903721],[-0.13442888855934,-0.093482926487923,0.0016048032557592],[-0.007472091820091,-0.029163980856538,0.035251215100288]],[[0.034560773521662,0.18852891027927,0.27492865920067],[-0.10946094989777,-0.03886005282402,-0.03248530998826],[-0.028759216889739,-0.10212767869234,-0.10295759886503]],[[-0.018243864178658,0.029206950217485,-0.039195485413074],[-0.089933715760708,-0.13055349886417,-0.20147490501404],[-0.051421266049147,-0.11464973539114,-0.11048530042171]],[[-0.093853674829006,-0.14797347784042,-0.098989434540272],[0.13481602072716,0.070597797632217,0.066478572785854],[0.012056936509907,-0.021463459357619,-0.063465692102909]],[[-0.010865598917007,0.080558128654957,0.091692090034485],[-0.062017932534218,-0.15519724786282,0.10231442004442],[0.15107025206089,0.12612894177437,0.099713504314423]],[[-0.054807402193546,-0.0065057151950896,0.053711954504251],[0.04341647028923,0.041856098920107,-0.088222108781338],[-0.031796958297491,-0.051623169332743,-0.2150661945343]],[[0.10387662053108,-0.0075493766926229,-0.030258128419518],[-0.1626254171133,-0.025672424584627,-0.09079310297966],[-0.33752253651619,-0.10785360634327,-0.069435745477676]],[[-0.0080404598265886,0.022671481594443,-0.00014831531734671],[0.10023221373558,0.036668494343758,-0.066898547112942],[0.065589621663094,0.047632556408644,-0.012721803039312]],[[-0.073452509939671,0.17742726206779,-0.039145097136497],[-0.02901654317975,-0.16750898957253,0.10614190995693],[0.0024048562627286,0.017070706933737,0.14287127554417]],[[0.074291698634624,-0.00087642681319267,-0.3114430308342],[-0.018891518935561,0.020888710394502,0.017625300213695],[0.13227878510952,0.15950526297092,-0.059854537248611]],[[0.10600595921278,0.14595128595829,0.066041193902493],[-0.018427807837725,-0.1193203702569,-0.091869324445724],[0.062912449240685,-0.051664981991053,-0.0084459856152534]],[[0.037112198770046,0.012319153174758,-0.042924452573061],[0.03087367489934,-0.073936082422733,-0.02492188103497],[0.05405554920435,-0.10239122062922,-0.054966788738966]],[[0.114263266325,0.036518596112728,-0.00025090420967899],[-0.29212737083435,-0.10646431148052,-0.0088272094726562],[0.1270337998867,-0.0091633992269635,-0.014469330199063]],[[-0.067788943648338,-0.017867399379611,-0.00254648597911],[-0.017750980332494,0.10978320986032,0.11908759921789],[0.045605570077896,0.06868351995945,-0.084135271608829]],[[0.14599741995335,0.045281793922186,0.0016986518166959],[0.12409700453281,-0.04772125557065,-0.06083495542407],[-0.05035899579525,-0.034469615668058,0.094216652214527]],[[-0.0041630091145635,-0.062286715954542,-0.032742667943239],[-0.020938936620951,0.067590832710266,-0.27142006158829],[-0.034491632133722,0.17005479335785,0.26620575785637]],[[-0.22021161019802,-0.11636160314083,-0.10936036705971],[0.14719085395336,0.082159399986267,-0.16921058297157],[-0.28220996260643,-0.052570197731256,0.28777250647545]],[[0.039569228887558,0.13542747497559,-0.0051850364543498],[-0.030774915590882,-0.062674060463905,0.034111279994249],[-0.077476941049099,-0.01626555249095,0.12932989001274]],[[0.090080723166466,-0.0036055452656001,0.01486399769783],[-0.031480967998505,-0.0045002079568803,-0.0291349850595],[0.0092092379927635,-0.095348834991455,-0.069343343377113]],[[0.034426305443048,0.036728423088789,-0.10325666517019],[-0.044413931667805,-0.051600027829409,-0.075356461107731],[-0.052881967276335,0.077785953879356,-0.025274086743593]],[[-0.17403504252434,-0.067036010324955,0.066288791596889],[0.20032708346844,-0.052177987992764,0.063993878662586],[0.013385689817369,0.010520666837692,-0.068219371140003]],[[-0.21903942525387,-0.13560362160206,-0.026858057826757],[-0.13152286410332,-0.14796794950962,-0.09917775541544],[0.049906671047211,0.11998584866524,0.19131955504417]],[[0.052165843546391,-0.0062714284285903,-0.010898604989052],[-0.059655640274286,0.020411562174559,-0.1044315174222],[0.045897450298071,-0.072826191782951,0.016490902751684]],[[0.0831228941679,0.11666126549244,-0.1499011516571],[0.0090105542913079,-0.022631831467152,-0.32765892148018],[-0.1770224571228,-0.096328407526016,0.17091837525368]],[[-0.082293167710304,-0.15350715816021,-0.06683499366045],[-0.083569742739201,-0.11079128831625,-0.29595991969109],[-0.037786871194839,-0.053247094154358,-0.035118222236633]],[[0.0071419286541641,-0.024169066920877,-0.085569269955158],[0.0241618771106,-0.11641918122768,0.15872643887997],[0.040701799094677,-0.061177290976048,-0.089507542550564]],[[-0.010741178877652,-0.0096891606226563,-0.012092153541744],[-0.19401289522648,0.074155576527119,-0.049914076924324],[0.034243188798428,-0.037904240190983,-0.16447646915913]],[[0.06214414909482,0.22399432957172,0.20111778378487],[0.16698455810547,0.00054301950149238,0.025288289412856],[-0.03406298533082,-0.049289897084236,-0.1297013014555]],[[0.046437565237284,-0.01480969414115,0.0068296273238957],[-0.082462206482887,-0.017027487978339,0.1318529099226],[0.12131248414516,-0.063325770199299,-0.069259785115719]],[[0.10930448770523,0.10731294006109,-0.19230158627033],[0.091412521898746,-0.025502284988761,-0.10016518831253],[-0.078347608447075,-0.10586309432983,-0.057303465902805]],[[-0.13584487140179,-0.087052315473557,-0.077099665999413],[-0.0042905481532216,-0.015425474382937,-0.21926957368851],[-0.16354924440384,-0.11414517462254,-0.086918219923973]],[[0.002019222592935,-0.081120453774929,-0.043903857469559],[0.07528705149889,0.1922695338726,0.18250188231468],[0.0098671205341816,-0.0041942643001676,-0.025383422151208]],[[-0.20174595713615,0.13795477151871,0.14646770060062],[0.066556021571159,-0.051673948764801,-0.057124648243189],[0.0026343809440732,-0.0085343858227134,0.016323946416378]],[[-0.0027180942706764,-0.049135334789753,-0.18182294070721],[-0.087090760469437,-0.044298999011517,0.17803274095058],[0.13171009719372,-0.11946097016335,-0.22061578929424]],[[0.060517214238644,-0.062968380749226,-0.24484795331955],[0.0021341082174331,-0.033788122236729,-0.04023252427578],[0.010172718204558,0.05257710069418,-0.054433234035969]],[[-0.024401795119047,0.0027519352734089,0.13261045515537],[-0.1534843146801,0.0032433739397675,0.068163380026817],[0.049205891788006,0.088048994541168,0.014176433905959]],[[0.034364942461252,0.073801353573799,0.1668950766325],[0.066261239349842,-0.16515313088894,-0.25186169147491],[-0.017995353788137,0.047972191125154,-0.035440292209387]],[[0.19451792538166,0.14781826734543,0.29876947402954],[0.24065342545509,0.18745076656342,0.057546369731426],[0.22759284079075,0.11637932807207,0.086950287222862]],[[0.12461525946856,0.053589399904013,-0.052825435996056],[0.1206369176507,0.057147979736328,0.0095362346619368],[0.022550100460649,-0.017743702977896,0.030863970518112]],[[-0.076207652688026,-0.055187970399857,0.026447147130966],[0.26405185461044,0.029832638800144,-0.092113599181175],[0.16427847743034,0.26376539468765,-7.6747855928261e-05]],[[0.23015563189983,0.063150219619274,-0.055238109081984],[-0.070758402347565,0.054388247430325,0.10136964917183],[0.078628145158291,0.070042639970779,0.1332161128521]],[[0.0090118171647191,-0.11061830818653,-0.10874970257282],[0.13793931901455,-0.0063899829983711,-0.14243702590466],[0.042764391750097,0.00059490848798305,0.076175294816494]],[[-0.079126797616482,-0.11475718766451,0.0055224359966815],[-0.030838398262858,-0.039566166698933,0.027780013158917],[0.078275121748447,0.071645744144917,0.078059613704681]],[[0.0085168955847621,-0.26317286491394,-0.16968920826912],[0.056945320218801,0.0062248515896499,0.32859990000725],[0.038089662790298,-0.20409746468067,-0.030422579497099]],[[-0.17089352011681,-0.11565463989973,-0.10728742927313],[0.11870732903481,0.10283406078815,0.27578893303871],[-0.14243766665459,-0.25291123986244,-0.10403329133987]],[[-0.11060661822557,-0.071251802146435,0.015140756033361],[0.34685415029526,0.049461405724287,0.036886665970087],[-0.042683437466621,0.13969597220421,-0.0082455966621637]],[[-0.15805704891682,-0.21295249462128,-0.21643954515457],[0.15070730447769,0.084984123706818,0.17699672281742],[-0.029486499726772,0.087120935320854,0.12866793572903]],[[0.064249649643898,0.051151320338249,0.024751607328653],[-0.040885038673878,-0.038804929703474,-0.010850926861167],[0.20192117989063,0.15254704654217,0.18372118473053]],[[-0.18595753610134,-0.04216755181551,-0.0099047236144543],[-0.11862111091614,-0.00040030106902122,-0.016004288569093],[0.096773512661457,0.025655578821898,0.048487827181816]],[[-0.12295885384083,-0.019325293600559,-0.139050796628],[0.058528177440166,-0.08910259604454,-0.043966043740511],[0.076777204871178,-0.011717145331204,0.069033369421959]],[[-0.076387867331505,-0.030338782817125,-0.031479127705097],[0.0097548784688115,-0.05045598372817,0.2271730452776],[-0.023119930177927,-0.0014976866077632,0.00054218404693529]],[[0.10672008991241,-0.17945595085621,-0.21924519538879],[0.110744535923,-0.046988271176815,-0.082764036953449],[0.12351856380701,0.060080241411924,-0.036307636648417]],[[-0.072902493178844,0.066015832126141,0.23008060455322],[0.015574552118778,-0.034997474402189,0.091625593602657],[0.02206589281559,-0.043051760643721,-0.19372908771038]],[[0.11485002189875,0.13714082539082,0.059580385684967],[0.0017876989440992,-0.014051715843379,0.010514325462282],[0.032041274011135,-0.033183045685291,-0.061978563666344]],[[0.0523423217237,-0.11290960758924,-0.066970378160477],[-0.027687547728419,-0.052471682429314,-0.064502909779549],[0.015409464016557,0.091638013720512,-0.010776174254715]],[[-0.078420758247375,-0.16198931634426,-0.087568081915379],[-0.019508829340339,-0.0018377755768597,0.0038009809795767],[-0.08594274520874,-0.028654934838414,-0.034978859126568]],[[0.26881182193756,0.081299893558025,0.0534125007689],[0.051775362342596,-0.009361770004034,0.15261423587799],[-0.088977888226509,0.064725250005722,-0.094496108591557]],[[0.0015435785753652,-0.080289714038372,0.068778999149799],[0.088118933141232,0.050530795007944,0.15975883603096],[0.048282083123922,-0.07983024418354,-0.14335271716118]],[[-0.099875405430794,0.087164461612701,0.030106719583273],[0.11324387043715,-0.0032933379989117,-0.037840109318495],[-0.078150659799576,-0.051570277661085,0.09341486543417]],[[-0.217952221632,0.0024648527614772,0.17323586344719],[0.10210338234901,0.076692804694176,0.058878928422928],[-0.015202247537673,0.0162681825459,-0.013345166109502]],[[-0.075702011585236,-0.073107868432999,-0.1522007137537],[0.11013080179691,0.13794803619385,0.14279280602932],[0.068485662341118,-0.047943606972694,-0.10795247554779]],[[-0.048117253929377,-0.18508368730545,-0.19214610755444],[0.15696968138218,0.07041396945715,0.079944863915443],[-0.18846599757671,-0.13593958318233,-0.12439353764057]],[[0.19148434698582,0.065084144473076,0.20701114833355],[-0.16239231824875,-0.09234980493784,-0.41979563236237],[-0.17137950658798,-0.28881683945656,0.22589196264744]],[[0.089929327368736,0.0068484987132251,-0.027568802237511],[-0.25511303544044,0.035625521093607,-0.066119208931923],[0.002466231584549,-0.029695531353354,-0.08116153627634]],[[0.020839713513851,-0.059255618602037,0.057716846466064],[0.00077968992991373,-0.046143531799316,-0.13655467331409],[0.069027721881866,0.083553530275822,0.02116772159934]],[[-0.13907362520695,-0.12604986131191,-0.13256481289864],[0.1497025936842,-0.036015022546053,0.052224140614271],[-0.10989430546761,-0.10616730898619,-0.13938207924366]],[[0.0035110495518893,0.072900928556919,-0.16197954118252],[0.021588625386357,-0.0079230330884457,0.055391307920218],[0.061054892838001,0.042263608425856,-0.15232366323471]],[[-0.13383373618126,-0.10470206290483,0.064491979777813],[-0.10510443150997,-0.075486458837986,-0.11153142154217],[-0.071983553469181,-0.053982000797987,0.025761237367988]],[[0.070232398808002,0.014270330779254,0.020790135487914],[-0.0017941216938198,-0.0013224974973127,0.093461230397224],[-0.031887710094452,-0.057788226753473,-0.10537408292294]],[[0.077718995511532,0.046778921037912,-0.11217506974936],[0.12312086671591,-0.0092687476426363,0.014708681032062],[0.02584763802588,-0.07828427106142,0.054047636687756]],[[0.016350893303752,0.11548996716738,-0.033668104559183],[-0.034773930907249,-0.090438656508923,0.10876747220755],[-0.20331364870071,-0.22012105584145,-0.048647399991751]],[[-0.12151055037975,0.15697675943375,0.12189142405987],[0.079329498112202,-0.032847639173269,-0.22518013417721],[0.14595393836498,0.025332206860185,-0.1948554366827]],[[-0.13957034051418,0.22815330326557,0.11981399357319],[0.066801443696022,-0.088249281048775,-0.30731666088104],[0.28791549801826,0.0049525401555002,0.057776249945164]]],[[[-0.037482567131519,0.020291185006499,-0.036244872957468],[-0.031217481940985,0.019094102084637,-0.011226302944124],[0.014820409938693,-0.00018281739903614,0.014944690279663]],[[-0.016753137111664,-0.00020889958250336,0.0054118507541716],[0.035122785717249,-0.027050567790866,-0.017569269984961],[0.07249054312706,0.041595116257668,-0.0083242654800415]],[[-0.075617723166943,0.097454331815243,0.00082389591261744],[0.012467669323087,0.0069585307501256,-0.01070521119982],[0.045029152184725,-0.043702725321054,-0.0022912919521332]],[[0.030869940295815,-0.0062342737801373,-0.043082375079393],[0.056841235607862,-0.0091730039566755,0.061851553618908],[0.0021330539602786,0.018886549398303,-0.034933034330606]],[[-0.01407587248832,0.011304575018585,0.016557542607188],[0.037124611437321,0.053992949426174,0.026125513017178],[-0.018026256933808,-0.019590677693486,-0.041246242821217]],[[-0.033561609685421,0.054761502891779,0.057147197425365],[-0.015684382990003,-0.00073375052306801,0.049270279705524],[0.0002040836843662,-0.050876885652542,-0.0018655599560589]],[[-0.017131658270955,0.043441854417324,-0.015276637859643],[0.0137730371207,-0.039405308663845,-0.0036173926200718],[-0.020231056958437,-0.021400913596153,-0.02916513197124]],[[0.016471363604069,0.039036478847265,0.021362382918596],[0.0085953855887055,-0.0059717460535467,0.0090304287150502],[0.00043155555613339,-0.0047748424112797,0.0089600188657641]],[[-0.0031157224439085,-0.033672623336315,-0.069695673882961],[0.042038347572088,0.036236681044102,0.047434668987989],[0.017781089991331,0.03852915391326,0.022116901353002]],[[0.066819220781326,-0.013338059186935,-0.077987655997276],[0.013224065303802,-0.089827507734299,-0.026502443477511],[-0.081290677189827,0.034013483673334,0.030638210475445]],[[-0.0095104249194264,0.07017770409584,0.030410999432206],[0.042796932160854,0.067170023918152,-0.04854353889823],[-0.015650853514671,-0.024822097271681,-0.069788336753845]],[[-0.02281161211431,-0.0052682682871819,0.06182038038969],[-0.0066793914884329,0.030891498550773,0.019306406378746],[0.020106939598918,-0.016944583505392,-0.040951512753963]],[[-0.054002206772566,-0.027293788269162,0.06006820872426],[0.044926557689905,-0.037609368562698,0.016509428620338],[-0.02603068575263,-0.029753044247627,-0.042718309909105]],[[0.056880220770836,-0.0044442913495004,-0.025688530877233],[0.020152552053332,0.057508561760187,-0.089998170733452],[0.025094706565142,0.0088545009493828,-0.10997777432203]],[[0.017977133393288,-0.023416107520461,-0.094616539776325],[0.014569438993931,-0.016058156266809,0.050314594060183],[-0.010851562954485,-0.026674322783947,0.021743509918451]],[[0.0015784405404702,-0.029500374570489,-0.0048145735636353],[-0.0097123757004738,-0.073864102363586,-0.0094844419509172],[-0.020061725750566,-0.087024942040443,-0.037263236939907]],[[0.020025946199894,-0.018451100215316,-0.02480592764914],[0.0083403550088406,0.032622195780277,-0.07963889837265],[0.0059123090468347,0.011085712350905,0.0036091990768909]],[[-0.0034706192091107,-0.017026552930474,0.020000535994768],[-0.030195817351341,-0.028818070888519,-0.10103129595518],[0.0090311318635941,-0.051815688610077,-0.006006630603224]],[[0.067586816847324,0.045906230807304,-0.039971314370632],[0.0092048197984695,0.020297192037106,-0.025167599320412],[0.060755245387554,-0.023835187777877,0.037637751549482]],[[0.032412506639957,-0.022850807756186,-0.10590931028128],[0.0085303271189332,0.016057955101132,-0.082158751785755],[0.042763497680426,0.081356227397919,-0.037567082792521]],[[0.038264792412519,0.016859902068973,0.07731518894434],[-0.0010467841057107,0.0063531678169966,-0.014876615256071],[-0.077538304030895,-0.062705233693123,-0.019966933876276]],[[0.021916760131717,-0.010817999951541,-0.00033249935950153],[-0.022608026862144,-0.099888227880001,0.035070594400167],[0.018459876999259,-0.031299751251936,-0.029892081394792]],[[-0.015539351850748,-0.053311992436647,0.0054159113205969],[0.038262609392405,0.073573023080826,0.015750613063574],[-0.017046272754669,0.010358523577452,-0.071690484881401]],[[-0.023996122181416,-0.047242607921362,0.0055764955468476],[-0.027290441095829,-0.054414879530668,-0.055291704833508],[0.019992552697659,-0.010950561612844,-0.019107015803456]],[[0.0091808196157217,0.038623616099358,0.0091297114267945],[0.017377436161041,0.015560928732157,-0.040167968720198],[-0.021760907024145,-0.056833248585463,0.0054261847399175]],[[0.049672223627567,0.061860036104918,0.03295898810029],[0.021838322281837,-0.029389284551144,0.0062613370828331],[0.0080137392506003,-0.029287973418832,0.021778874099255]],[[0.010616808198392,-0.00020090458565392,0.053877219557762],[-0.019555432721972,-0.042136259377003,0.042696159332991],[-0.057753145694733,0.023280575871468,-0.081446997821331]],[[-0.077770128846169,0.0066707502119243,-0.053727705031633],[0.0042401948012412,0.04262076690793,0.040066417306662],[0.019326014444232,0.017254503443837,0.012908237986267]],[[-0.02276579849422,-0.041789572685957,-0.073562294244766],[-0.0041056727059186,0.050641074776649,-0.033925138413906],[-0.026337483897805,0.005706153344363,-0.078755803406239]],[[-0.004112521186471,0.0074149668216705,-0.056370053440332],[0.01873011700809,-0.03572853654623,-0.086816571652889],[0.039628144353628,0.020912025123835,0.072605445981026]],[[-0.010882578790188,-0.029105888679624,0.010970273055136],[-0.066358231008053,-0.046218227595091,0.043067626655102],[-0.00199353415519,0.038333382457495,0.0020179869607091]],[[0.0069815027527511,-0.043759200721979,-0.043883446604013],[-0.015315946191549,-0.055914223194122,0.058721665292978],[-0.0029699732549489,-0.049467418342829,0.031423304229975]],[[-0.048558924347162,-0.051674965769053,0.072181947529316],[-0.002054939744994,0.0026768869720399,0.052802335470915],[0.0088321547955275,-0.020927004516125,0.0049206973053515]],[[0.040616329759359,-0.026902871206403,-0.003840803867206],[-0.023461943492293,0.021390093490481,-0.014058401808143],[-0.023468013852835,0.0883759111166,-0.024079989641905]],[[0.0052174828015268,0.041039638221264,-0.019679315388203],[-0.016216373071074,0.0088508613407612,-0.010390910319984],[0.0062772706151009,0.01314552500844,3.9278245822061e-05]],[[-0.046438775956631,0.053323179483414,-0.034497156739235],[-0.028128771111369,0.052832614630461,0.010235925205052],[-0.10177652537823,0.034561440348625,0.034542791545391]],[[-0.060681503266096,-0.029959546402097,0.071181014180183],[0.0032769958488643,-0.028623595833778,-0.057105891406536],[-0.005218478385359,0.034366827458143,0.003292205510661]],[[0.082810014486313,0.041410759091377,0.020138751715422],[-0.027981827035546,0.027077861130238,-0.01558815408498],[0.0074792369268835,0.00041363737545907,0.036434900015593]],[[0.0712865665555,0.0030429719481617,0.035512924194336],[0.029219448566437,-0.11020562797785,-0.020459102466702],[0.018311660736799,-0.052183859050274,0.020000936463475]],[[0.013339818455279,-0.012789513915777,-0.015569092705846],[0.073669515550137,0.011557016521692,-0.06366079300642],[-0.018979210406542,-0.023130962625146,-0.023587618023157]],[[-0.017252080142498,0.033191282302141,0.072581134736538],[0.044425271451473,-0.038585774600506,-0.005902387201786],[-0.034238662570715,-0.10053351521492,-0.016003135591745]],[[-0.013269794173539,-0.013916939496994,0.012484157457948],[-0.013704570010304,-0.010676821693778,0.010255295783281],[-0.08645636588335,0.033571321517229,0.02065491117537]],[[-0.10263882577419,-0.019331997260451,0.036322046071291],[-0.049063358455896,0.0042931726202369,0.00637446064502],[0.0026403963565826,-0.0069535835646093,0.0017388392006978]],[[-0.056573394685984,-0.01756988465786,0.045563388615847],[-0.053688310086727,0.00048227413208224,-0.025065680965781],[-0.028119517490268,-0.04796464368701,0.0022927902173251]],[[-0.0041285110637546,-0.015695139765739,0.047038670629263],[-0.0048017604276538,0.011651124805212,0.010414591990411],[0.015293742530048,0.098211333155632,-0.018966248258948]],[[-0.02246243134141,-0.038928296416998,-0.011493534781039],[-0.011725530959666,-0.062259454280138,0.0008975884411484],[-0.052945986390114,0.0030075656250119,0.019568527117372]],[[-0.01815795339644,0.034285038709641,0.051319167017937],[0.041437730193138,0.0022090547718108,-0.034623622894287],[0.033277917653322,0.021518718451262,0.073566138744354]],[[-0.042276348918676,-0.044354915618896,0.042134132236242],[0.068890757858753,0.076680816709995,-0.018154826015234],[-0.007808486931026,0.046789240092039,0.046060647815466]],[[-0.071275420486927,-0.039168290793896,0.0067924670875072],[0.030789053067565,-0.016277926042676,-0.054034117609262],[0.027778904885054,0.045664053410292,0.030198909342289]],[[-0.032932292670012,0.0013170109596103,0.029678747057915],[0.016564222052693,-0.056667409837246,-0.044257987290621],[-0.0267827026546,-0.040616437792778,0.052048169076443]],[[0.0048671392723918,-0.059336539357901,-0.074270784854889],[0.080136217176914,-0.017380479723215,-0.011291297152638],[-0.0090031586587429,-0.09437520056963,-0.028690187260509]],[[-0.029376516118646,0.051950816065073,0.011626196093857],[0.061801847070456,0.022442184388638,-0.00040254445048049],[-0.016825169324875,-0.040723912417889,-0.016169821843505]],[[-0.0068687633611262,0.060484834015369,0.05255451053381],[-0.041903730481863,0.034890126436949,0.17720405757427],[0.045148402452469,0.091793574392796,0.020414290949702]],[[0.01347129046917,0.018893213942647,-0.039178226143122],[-0.0019453013082966,-0.031873252242804,-0.034186951816082],[0.025203432887793,-0.0092597482725978,-0.026340261101723]],[[-0.038715183734894,-0.032902076840401,0.0089811142534018],[0.079077698290348,0.029652690514922,-0.048804853111506],[0.0076179238967597,-0.016875566914678,-0.051421273499727]],[[-0.01229527592659,0.0059055178426206,-0.016226874664426],[-0.062550656497478,-0.009643791243434,0.030392916873097],[0.0014250760432333,-0.024797823280096,0.051544114947319]],[[-0.018738323822618,-0.0097817834466696,-0.089784219861031],[-0.011017167009413,0.035072550177574,-0.044163208454847],[0.057666588574648,0.0088623389601707,0.0089401826262474]],[[-0.085105866193771,0.065110117197037,0.053015079349279],[-0.024928953498602,-0.031874030828476,-0.0094690639525652],[0.032789830118418,0.040882464498281,-0.016581363976002]],[[0.035871610045433,-0.01862009242177,-0.031517542898655],[0.036520335823298,-0.022269489243627,0.036590702831745],[-0.035634897649288,0.053652055561543,0.037390865385532]],[[0.0059055127203465,0.025820288807154,-0.05864292755723],[0.033763218671083,0.035688571631908,-0.0034752865321934],[-0.023032177239656,-0.014769778586924,0.029905522242188]],[[-0.011729064397514,0.011387442238629,0.0037973402068019],[-0.034243952482939,-0.013073636218905,-0.011274714022875],[0.024625968188047,0.075458951294422,0.010217132046819]],[[0.041029896587133,-0.016231125220656,-0.0012769188033417],[-0.019172074273229,-0.030795820057392,-0.0062614772468805],[0.010179131291807,-0.00013594560732599,0.028962079435587]],[[0.055713806301355,-0.0054926271550357,-0.017760535702109],[-0.028883770108223,0.046874564141035,0.031911607831717],[-0.081439442932606,-0.0012222825316712,-0.025291195139289]],[[0.059235662221909,0.084294907748699,0.063660055398941],[-0.049001321196556,-0.026232728734612,0.079185754060745],[-0.016484055668116,-0.0065097380429506,0.055043905973434]],[[-0.010128773748875,-0.036983817815781,0.007298284675926],[0.017259346321225,0.030480585992336,-0.0036921573337168],[-0.019204039126635,-0.012071146629751,0.035684026777744]],[[0.020278647542,-0.036659050732851,-0.036955282092094],[0.096328862011433,0.0041720629669726,0.031895093619823],[-0.024718867614865,-0.030352327972651,-0.0051143844611943]],[[-0.025030009448528,0.014445997774601,0.027153547853231],[-0.026452891528606,-0.044212371110916,0.014338710345328],[-0.005060110706836,0.013829367235303,0.031134465709329]],[[-0.022400539368391,-0.020901819691062,0.012284805066884],[0.051541946828365,-0.025691159069538,-0.058828074485064],[0.014070116914809,0.053704414516687,0.038127154111862]],[[-0.013174905441701,-0.0057100672274828,0.024474460631609],[-0.056312337517738,0.049120236188173,-0.015868643298745],[0.026484860107303,0.039483789354563,-0.10131860524416]],[[-0.038697116076946,0.020723558962345,-0.026071097701788],[0.0059583531692624,0.093953147530556,0.025675058364868],[-0.0046954532153904,0.054448626935482,0.0061297114007175]],[[-0.014845747500658,0.016526130959392,-0.018249612301588],[0.017132440581918,0.0050359689630568,0.054381541907787],[0.031809598207474,-0.028383232653141,0.014885392971337]],[[-0.037680856883526,-0.031861439347267,-0.0083037577569485],[-0.028641242533922,0.029654296115041,0.067037038505077],[-0.016430495306849,0.094473019242287,-0.0053148553706706]],[[-0.04362054169178,0.0027145219501108,0.045503985136747],[-0.0026860430371016,-0.016600726172328,0.062314234673977],[-0.033843599259853,0.0157575532794,0.063163869082928]],[[0.035714339464903,0.0094722174108028,0.0098213758319616],[-0.0083360997959971,0.039406735450029,-0.098122879862785],[-0.035684559494257,0.018734315410256,0.001621030154638]],[[-0.037825219333172,-0.061372186988592,0.064434945583344],[0.031849253922701,-0.013112443499267,-0.0085890125483274],[0.028876844793558,0.017289109528065,0.02010433934629]],[[0.02026760391891,-0.00079878605902195,0.01759173348546],[0.013408116996288,0.0095905708149076,0.037796165794134],[-0.024168346077204,0.013657392933965,0.0055415984243155]],[[0.0099737821146846,0.022753871977329,-0.011108988896012],[-0.058225903660059,-0.039483118802309,0.011635513976216],[0.060262251645327,0.0095728328451514,0.023476867005229]],[[-0.033808507025242,0.00079469347838312,0.015168339014053],[0.025731131434441,0.031711127609015,-0.056592110544443],[0.0036268085241318,0.048391491174698,-0.0078451558947563]],[[0.016727847978473,-0.0095202783122659,-0.043208602815866],[-0.025977065786719,-0.03064919449389,0.010405123233795],[-0.032090704888105,0.004819116089493,-0.038591507822275]],[[-0.0076498258858919,0.0018400760600343,0.092227473855019],[-0.029356654733419,-0.085178002715111,-0.0092247035354376],[0.026617413386703,0.033540230244398,-0.015522942878306]],[[-0.0098384618759155,-0.046336036175489,-0.015182579867542],[0.029188899323344,0.032828122377396,-0.027479819953442],[-0.004866308066994,-0.0026326947845519,-0.0045643150806427]],[[0.010962176136672,0.028806721791625,-0.019994432106614],[0.027360301464796,0.0012201125500724,0.0085163256153464],[0.030206715688109,0.028259364888072,-0.023012721911073]],[[-0.025182854384184,-0.029399709776044,-0.025533033534884],[0.035324916243553,-0.093702808022499,0.037327900528908],[0.030522776767612,0.069482140243053,0.023595590144396]],[[0.013468141667545,-0.039204847067595,-0.024583451449871],[0.058533299714327,-0.0070398016832769,0.038980703800917],[0.018604496493936,0.020485835149884,0.071675255894661]],[[-0.016343927010894,0.010855969041586,0.009520823135972],[-0.03613992407918,0.0030940975993872,-0.018552541732788],[-0.082921355962753,0.011288954876363,0.035231340676546]],[[-0.015797141939402,-0.074845492839813,-0.071049556136131],[-0.014182926155627,0.046536095440388,0.01566063053906],[0.0021813693456352,-0.017462708055973,0.097226798534393]],[[0.033627711236477,0.018788741901517,-0.013569433242083],[0.0079446267336607,-0.031294737011194,-0.031730987131596],[-0.066871501505375,0.018782332539558,0.010710370726883]],[[0.063254587352276,-0.068488694727421,0.01106804702431],[0.044442787766457,-0.036135442554951,0.011038221418858],[0.050298925489187,0.041549384593964,-0.0261519998312]],[[0.062412235885859,0.0040763765573502,0.041221745312214],[0.013150366023183,0.017826793715358,-0.026046836748719],[0.067721500992775,-0.030629973858595,-0.059167440980673]],[[0.057770285755396,0.01770949177444,-0.051865600049496],[-0.0057148095220327,-0.0047301244921982,-0.051756747066975],[0.05560003593564,0.030158214271069,-0.01188390981406]],[[0.021237006410956,0.041103832423687,-0.07335003465414],[0.03839760273695,0.026798529550433,-0.057948380708694],[0.040638349950314,0.063043035566807,0.072250664234161]],[[0.036539498716593,-0.050563629716635,0.058170273900032],[-0.048187714070082,-0.010940848849714,0.089961156249046],[0.061263673007488,-0.011882945895195,-0.052303392440081]],[[-0.035646498203278,0.032142542302608,0.0071284337900579],[0.061755035072565,-0.0052935681305826,0.066687248647213],[-0.026058463379741,0.0032017279881984,-0.021358828991652]],[[0.0062335515394807,0.022935463115573,0.020059967413545],[-0.034911908209324,0.074636250734329,-0.031285796314478],[-0.0043708360753953,0.039777055382729,-0.0072579509578645]],[[-0.0061679575592279,0.03131890296936,-0.039687011390924],[0.066092856228352,-0.011643433943391,-0.01904465071857],[0.005469880066812,0.026729179546237,-0.095499500632286]],[[-0.03739295527339,0.032875493168831,0.024588728323579],[-0.014049225486815,0.0071825929917395,-0.029613394290209],[-0.011928605847061,0.025126028805971,0.026579637080431]],[[0.065564334392548,-0.018868679180741,0.030886335298419],[-0.016890499740839,-0.016394261270761,0.026281338185072],[-0.020504876971245,-0.0010303416056558,0.02746444940567]],[[0.038535960018635,-0.024480991065502,-0.10314776003361],[0.038648698478937,0.04968535900116,0.006181369535625],[-0.044404447078705,0.043427661061287,-0.0074731903150678]],[[-0.094055019319057,-0.004109850153327,-0.013748676516116],[0.027596823871136,0.0070282127708197,0.049584593623877],[-0.021089663729072,-0.0049053407274187,-0.021081125363708]],[[0.01203123293817,0.03192937746644,0.008708412759006],[-0.022238543257117,-0.015031495131552,-0.028780685737729],[0.024579063057899,-0.031063610687852,-0.046406537294388]],[[-0.068678766489029,-0.08608690649271,0.027766177430749],[0.046733044087887,-0.058832820504904,0.01354063488543],[0.023269968107343,-0.083259493112564,0.061669785529375]],[[-0.0020232468377799,0.013914036564529,-0.0068607958965003],[-0.042611062526703,-0.039887808263302,-0.016108041629195],[0.014764815568924,0.088974297046661,0.078359626233578]],[[0.072694577276707,-0.026201292872429,-0.0082992007955909],[-0.022831643000245,-0.015340806916356,0.0081186192110181],[-0.049601297825575,0.0040011364035308,-0.0055669583380222]],[[-0.015645379200578,-0.0089186187833548,0.056712664663792],[-0.052572377026081,-0.027972569689155,0.04198145866394],[-0.031045407056808,-0.029436776414514,0.05296366661787]],[[0.025503849610686,0.0092483460903168,0.014926750212908],[0.0056619262322783,-0.017916200682521,-0.042790167033672],[-0.019581386819482,-0.088972508907318,0.03237434849143]],[[0.0060443463735282,0.072195611894131,-0.020525678992271],[0.023619063198566,-0.024065399542451,0.016073577105999],[-0.021503325551748,-0.0061113750562072,0.033316180109978]],[[-0.031358174979687,0.037410214543343,-0.018141010776162],[0.0005650011007674,0.080013789236546,0.033888068050146],[-0.073753707110882,-0.057466812431812,-0.037067778408527]],[[0.017534006386995,0.049015827476978,-0.0098099485039711],[0.023510487750173,-0.017214745283127,0.065930418670177],[0.017827836796641,-0.071195028722286,-0.024571757763624]],[[-0.022629793733358,0.0027080522850156,0.014034733176231],[-0.0097335791215301,-0.035922273993492,0.038982138037682],[0.023874562233686,-0.14017477631569,0.059979371726513]],[[-0.0014613498933613,0.011572118848562,0.010011356323957],[-0.04831151291728,0.0043356460519135,0.078848548233509],[0.03400868922472,-0.049620978534222,0.02549079619348]],[[0.014437128789723,-0.0084233488887548,-0.049448352307081],[-0.055475387722254,-0.061003934592009,-0.19165161252022],[-0.023292638361454,-0.027354450896382,-0.093493320047855]],[[-0.051286917179823,0.00039730494609103,0.029132537543774],[0.014491288922727,0.029986625537276,-0.011569926515222],[0.050687275826931,0.011300092563033,0.018045740202069]],[[-0.051336206495762,-0.0016367436619475,0.0148068331182],[0.0049716057255864,-0.025456147268414,-0.028978582471609],[-0.011226112954319,0.059876028448343,-0.039303429424763]],[[-0.043657515197992,0.0081440145149827,-0.087442196905613],[0.0054893926717341,0.023693270981312,0.062684051692486],[0.062933504581451,-0.030718626454473,0.046243991702795]],[[0.023650407791138,-0.034950785338879,-0.0079344753175974],[-0.037468038499355,-0.016436936333776,-0.01308776345104],[0.032220847904682,0.0065023140050471,-0.037641365081072]],[[0.024303995072842,-0.0073891514912248,0.005638100206852],[-0.019767388701439,0.029742268845439,-0.046072591096163],[0.048266410827637,0.037227515131235,-0.012579741887748]],[[0.0011609983630478,-0.071631088852882,-0.01411734521389],[-0.018019426614046,0.02548948302865,-0.015461380593479],[-0.0039711436256766,0.021082075312734,0.037314645946026]],[[0.071668088436127,-0.030877279117703,-0.059840645641088],[-0.03036648593843,0.067225821316242,0.045294132083654],[0.019580690190196,0.0062947375699878,-0.016083106398582]],[[0.019055336713791,0.039229478687048,0.0011512149358168],[-0.072973266243935,0.040692504495382,0.010677839629352],[0.014860856346786,-0.014943667687476,-0.0095506627112627]],[[0.0098084704950452,0.0085923196747899,-0.010462874546647],[0.0030449193436652,-0.049826145172119,0.0023787163663656],[0.036266092211008,-0.00070707662962377,0.049801889806986]],[[-0.0064712730236351,0.0031146605033427,0.044188763946295],[0.01205753069371,-0.042240671813488,0.0023348135873675],[-0.01509408839047,0.083170473575592,-0.013548876158893]],[[-0.028623320162296,-0.010853399522603,-0.028356937691569],[0.033758945763111,0.046745616942644,-0.012194822542369],[-0.0036154054105282,0.046784609556198,0.0023845427203923]],[[-0.0016026392113417,-0.040372129529715,-0.05196363478899],[0.004149675834924,-0.05247126147151,-0.00093269051285461],[0.055137101560831,-0.039373364299536,0.015978427603841]],[[-0.035239949822426,0.030845684930682,0.02249614149332],[-0.031999729573727,0.050835404545069,0.055033255368471],[0.058688499033451,-0.05284321680665,-0.021045003086329]],[[-0.0071045998483896,-0.022583171725273,-0.074653439223766],[-0.014736531302333,0.090869165956974,0.03239792957902],[0.012054244987667,0.077840998768806,0.0051492238417268]],[[-0.002444141311571,0.01524196844548,0.043046690523624],[0.042608797550201,0.016959922388196,0.0028657633811235],[-0.0077047869563103,-0.0063297562301159,-0.0062229624018073]],[[0.0089682685211301,0.039430841803551,0.070189498364925],[-0.0089137982577085,-0.017082808539271,-0.056571424007416],[0.026226226240396,0.011961092241108,0.02524147555232]],[[0.049333099275827,0.004716937430203,-0.010354427620769],[-0.039383009076118,0.027289470657706,0.019723178818822],[-0.021739842370152,0.003048510523513,-0.012210861779749]]],[[[0.044091131538153,0.06082596629858,-0.043855916708708],[-0.014987239614129,-0.066087566316128,0.047613803297281],[-0.027755090966821,0.062016244977713,-0.00037662338581868]],[[0.033309541642666,0.013475183397532,0.028386747464538],[-0.042129345238209,-0.14384885132313,0.043488215655088],[0.011454480700195,0.037706669420004,-0.0532580986619]],[[0.17174373567104,0.12466319650412,0.031624462455511],[0.0079681714996696,-0.049205716699362,0.027698412537575],[-0.075996853411198,0.0072709759697318,-0.024934848770499]],[[0.018010653555393,-0.1044353172183,-0.057802826166153],[0.054662019014359,0.0023770304396749,-0.037093207240105],[0.041412077844143,-0.11211221665144,0.00081725732889026]],[[0.0097986645996571,-0.026707602664828,0.0020264480262995],[-0.024447042495012,0.055731792002916,-0.044967129826546],[0.029160166159272,-0.035099044442177,-0.058823827654123]],[[-0.04080218449235,0.04939953237772,0.034955363720655],[0.020337224006653,-0.010201591067016,0.095035582780838],[-0.04044171795249,-0.0065979114733636,-0.059481978416443]],[[-0.020934034138918,-0.016746481880546,-0.015161736868322],[-0.02330445125699,-0.05132257193327,-0.063108332455158],[-0.0028504598885775,0.026555201038718,0.038120720535517]],[[0.037223473191261,-0.055456858128309,0.0027577185537666],[-0.0096575915813446,-0.0086328526958823,0.017104625701904],[3.4785545722116e-05,0.057173158973455,-0.032635297626257]],[[0.016925852745771,-0.0091774081811309,0.088195793330669],[0.03223617747426,-0.042683303356171,0.03101827763021],[-0.076405130326748,0.036709025502205,0.012032681144774]],[[0.0017928568413481,-0.018009584397078,0.025369267910719],[0.025267204269767,-0.0062044183723629,-0.025565860792994],[0.043902676552534,-0.043782774358988,0.016450891271234]],[[-0.062244057655334,-0.012772924266756,0.01037114020437],[-0.045382261276245,-0.037469588220119,0.0059210662730038],[-0.010885957628489,0.041555009782314,0.036260910332203]],[[0.095984108746052,-0.029744679108262,0.015910398215055],[-0.019619384780526,0.074448235332966,-0.033623792231083],[0.044821888208389,-0.021494379267097,0.034992702305317]],[[0.0035797564778477,-0.10058477520943,0.025548744946718],[0.013465812429786,-0.013796293176711,0.033202718943357],[-0.0059220483526587,0.051061768084764,0.052565280348063]],[[0.032396297901869,-0.011769033037126,-0.067749783396721],[0.13715577125549,0.10210394114256,-0.088686369359493],[-0.061750371009111,0.07712334394455,0.026362475007772]],[[0.0090156821534038,-0.027849610894918,0.069639712572098],[0.094748064875603,-0.0060819569043815,0.01067622192204],[0.048261307179928,-0.077690921723843,0.072300247848034]],[[0.021504655480385,-0.0053203441202641,0.095425352454185],[-0.017550999298692,-0.069068886339664,0.092868097126484],[-0.034123532474041,-0.026178363710642,-0.014296183362603]],[[-0.0059934947639704,-0.042817059904337,0.014186912216246],[-0.0075073833577335,-0.021509243175387,-0.024069342762232],[0.026430066674948,0.030186150223017,0.017743719741702]],[[-0.072833828628063,-0.04976012930274,0.024469267576933],[0.0060082082636654,0.06998860090971,-0.025763096287847],[-0.0029184196610004,0.0041683842428029,-0.0094905067235231]],[[-0.030352374538779,0.01426150277257,0.0018252423033118],[0.029932105913758,-0.00295459642075,0.059295177459717],[-0.013328940607607,-0.10462684929371,-0.040019568055868]],[[0.010455654002726,0.017002178356051,-0.0028218643274158],[-0.00057469663443044,-0.0039808177389205,-0.0069835493341088],[0.027648167684674,-0.070473186671734,-0.030150292441249]],[[0.050130680203438,-0.032149828970432,-0.03203009814024],[-0.043758291751146,0.064159341156483,0.084036871790886],[0.016336830332875,0.039892785251141,0.051745925098658]],[[0.066744431853294,0.046827748417854,0.0024643079377711],[0.0028338718693703,-0.03260375931859,0.0315259732306],[0.045922487974167,-0.015405494719744,-0.024612726643682]],[[0.05533516779542,-0.022024147212505,0.031789902597666],[-0.044168066233397,-0.024562485516071,-0.016334859654307],[-0.020517123863101,-0.056689973920584,0.014829653315246]],[[-0.053742133080959,0.023259352892637,0.00032540562096983],[0.019593227654696,-0.022335970774293,0.049009200185537],[0.11035217344761,0.063342228531837,-0.015144426375628]],[[0.016200365498662,0.061594877392054,0.034808319061995],[-0.087595507502556,-0.029076889157295,-0.054421070963144],[-0.070724859833717,0.0030799969099462,0.0065493402071297]],[[0.012855329550803,-0.083766870200634,0.042049612849951],[-0.019033934921026,-0.017987785860896,0.011100078001618],[-0.050673499703407,0.037238102406263,0.0040521170012653]],[[0.0040896800346673,0.0033428827300668,-0.008964273147285],[0.086023837327957,0.027963120490313,-0.042055539786816],[0.10261651128531,0.034635502845049,0.014233849011362]],[[-0.024824094027281,-0.012147760950029,0.0056894333101809],[-0.079578131437302,-0.04122057929635,-0.037473112344742],[-0.00040528306271881,0.010553136467934,-0.0038127144798636]],[[-0.031488880515099,0.053935948759317,0.018220501020551],[0.033907990902662,0.051682960242033,-0.004867862444371],[0.024646146222949,0.027040064334869,0.014176925644279]],[[0.042024854570627,-0.017857229337096,-0.0088655781000853],[-0.015292873606086,0.03009639121592,-0.004159374628216],[0.067927829921246,-0.009066253900528,0.02965965680778]],[[0.011586298234761,0.04400971159339,0.026128154247999],[-0.020608380436897,-0.052628334611654,-0.014749303460121],[0.052088290452957,0.0053184307180345,-0.0065886816009879]],[[-0.066705875098705,0.0029577061068267,-0.0092844357714057],[0.040803886950016,0.020698850974441,0.010138512589037],[0.063949823379517,-0.026923945173621,0.064977332949638]],[[-0.012058837339282,-0.052863527089357,-0.0081722037866712],[-0.0070150000974536,-0.037370376288891,0.035827323794365],[-0.033073928207159,-0.0022258760873228,-0.035162884742022]],[[-0.032920762896538,-0.020336030051112,-0.016824120655656],[-0.018975293263793,0.017380449920893,0.065975710749626],[-0.038383889943361,0.039987493306398,0.074605546891689]],[[-0.016574686393142,-0.073227785527706,0.00020566051534843],[-0.097212456166744,0.05771504342556,0.010967815294862],[0.017683839425445,0.0042361817322671,-0.0091535178944468]],[[0.0018214468145743,-0.017569102346897,-0.044806338846684],[-0.006040814332664,-0.013319820165634,-0.016732485964894],[-0.049365289509296,-0.074417747557163,-0.058879353106022]],[[0.028076799586415,-0.0024925270117819,0.0046601551584899],[0.043110549449921,-0.022676220163703,0.083183154463768],[-0.020093843340874,-0.025139756500721,0.047689951956272]],[[0.058429040014744,-0.011697188019753,-0.055524948984385],[0.030807370319963,0.034651774913073,0.0081825759261847],[0.032404314726591,0.020441994071007,0.039698086678982]],[[0.021241119131446,-0.02798219025135,0.027993761003017],[0.10081385076046,-0.061671115458012,0.055586166679859],[-0.018219847232103,0.034269347786903,0.036383461207151]],[[0.0068942564539611,-0.033277455717325,-0.0097753284499049],[0.0099262129515409,0.029428392648697,-0.02481385320425],[-0.013862116262317,0.021138336509466,0.011032238602638]],[[0.025063090026379,-0.072955839335918,-0.039291616529226],[0.027974603697658,-0.034346856176853,-0.025661928579211],[0.057414434850216,0.063385397195816,-0.049511045217514]],[[0.020827664062381,0.06598124653101,-0.045113317668438],[0.015902927145362,0.040230982005596,-0.02265296317637],[-0.099636770784855,-0.031393580138683,-0.00025122010265477]],[[0.013237707316875,-0.040850806981325,0.039073083549738],[0.040384531021118,0.054976940155029,-0.017669161781669],[0.053188469260931,0.10367579758167,0.077646754682064]],[[-0.042045675218105,-0.012267495505512,-0.027222149074078],[-0.06432843208313,0.040413420647383,-0.0094364043325186],[-0.011962303891778,-0.0068002296611667,-0.045722346752882]],[[0.060962155461311,-0.050088748335838,0.010093741118908],[0.015812626108527,-0.0030888665933162,0.010239444673061],[-0.013007499277592,-0.017446732148528,-0.029637701809406]],[[-0.040064111351967,-0.05829294770956,0.012011175975204],[0.052084963768721,-0.10122079402208,-0.0080357128754258],[0.013863136991858,-0.082001961767673,0.031803093850613]],[[-0.02400297857821,0.1312490850687,0.014007661491632],[-0.033636119216681,-0.0030057057738304,-0.0064950888045132],[-0.04017736390233,0.0044104028493166,-0.032825622707605]],[[-0.012811101041734,-0.023183207958937,-0.025319267064333],[0.085746847093105,0.015279286541045,-0.021799882873893],[-0.012803190387785,0.010979793034494,-0.036832004785538]],[[-0.012275581248105,-0.063016310334206,-0.02414633706212],[0.050523590296507,0.0038831245619804,0.014682834967971],[-0.00096917111659423,0.071276821196079,0.024051479995251]],[[0.013654467649758,-0.041670456528664,0.0144222388044],[-0.11662080138922,0.026211760938168,0.02730611898005],[-0.021226378157735,0.0011677979491651,0.095396555960178]],[[0.019811859354377,0.01614405401051,-0.039234776049852],[0.064701117575169,0.050029881298542,0.026352565735579],[0.010568030178547,0.033835489302874,0.037393800914288]],[[0.025218490511179,-0.018201034516096,-0.020087203010917],[-0.052003003656864,0.026523241773248,-0.038762900978327],[-0.0050193280912936,0.053771458566189,0.044912669807673]],[[0.019873548299074,-0.080807410180569,-0.0048574567772448],[-0.14558014273643,0.044890146702528,0.014352290891111],[0.020978922024369,-0.010456137359142,-0.016481513157487]],[[-0.0016873355489224,0.07630418241024,0.0067312060855329],[-0.0054811052978039,-0.0036151499953121,-0.00034786175820045],[-0.012428386136889,0.038757815957069,-0.035768840461969]],[[0.089389353990555,-0.04985672980547,0.0037667383439839],[-0.00027351113385521,0.052900712937117,0.027483362704515],[0.034162055701017,-0.01046519447118,0.0074882749468088]],[[-0.039210636168718,-0.007933889515698,0.051368203014135],[0.037353329360485,0.071688242256641,0.041129488497972],[0.0085595240816474,0.053822949528694,-0.011818652972579]],[[0.050871826708317,-0.038884703069925,-0.044092550873756],[-0.02460153773427,0.034576028585434,-0.052950534969568],[0.036985471844673,0.021502805873752,-0.065548703074455]],[[0.015577550977468,-0.038429789245129,-0.028090983629227],[-0.035872347652912,0.036259617656469,-0.014565775170922],[-0.041530191898346,0.04581455886364,0.044454727321863]],[[-0.039796508848667,0.01844827644527,0.0038793440908194],[0.025889417156577,0.023953752592206,-0.0065854014828801],[0.049111440777779,0.057450525462627,-0.018366526812315]],[[0.057821031659842,-1.8402606656309e-05,0.001026201993227],[-0.043836664408445,-0.013615516014397,-0.043099530041218],[-0.034629285335541,-0.011436111293733,0.0019733265507966]],[[-0.022652851417661,0.012574479915202,0.049526542425156],[-0.060918219387531,0.0053540044464171,0.0048549775965512],[0.031372271478176,0.060521617531776,0.10332282632589]],[[-0.10581380873919,0.0089061446487904,0.065163888037205],[0.023563090711832,0.012871905229986,0.0048114354722202],[0.051621060818434,0.0030644221697003,0.038210671395063]],[[-0.044477354735136,0.040423292666674,-0.050630882382393],[0.040500979870558,0.074711330235004,-0.05559054762125],[0.024266537278891,0.045780126005411,-0.0034640813246369]],[[-0.016649845987558,0.068402327597141,0.0077850902453065],[0.025094905868173,-0.069939561188221,-0.022325215861201],[0.013178842142224,-0.0012586588272825,-0.013752859085798]],[[0.062573276460171,0.0043053906410933,0.03508061543107],[0.062223389744759,-0.03312636911869,0.0028467604424804],[-0.0062230448238552,-0.063416019082069,0.038435488939285]],[[0.082826867699623,0.034226723015308,0.018843833357096],[-0.046380590647459,0.049556545913219,-0.001377064967528],[0.033922526985407,-0.018203200772405,0.060423400253057]],[[-0.038227695971727,-0.0096023110672832,0.01150416303426],[-0.024267744272947,-0.031214606016874,-0.025768231600523],[-0.033581592142582,0.0095272529870272,0.065742515027523]],[[0.029754374176264,-0.0011576582910493,0.0076704644598067],[-0.0033650782424957,0.015817115083337,0.015746789053082],[0.042736046016216,-0.0016054107109085,-0.013182879425585]],[[-0.015001565217972,-0.011753601022065,0.045688390731812],[-0.015022514387965,-0.061098162084818,0.002296342048794],[-0.078289300203323,-0.043710563331842,0.050421219319105]],[[0.036584462970495,-0.022808698937297,-0.013387472368777],[-0.021710079163313,0.035451259464025,0.020936323329806],[-0.01019490044564,-0.011680580675602,-0.062315013259649]],[[0.023837713524699,0.018445655703545,-0.054375611245632],[0.037830837070942,0.059985291212797,0.029850048944354],[0.044405408203602,0.01582520082593,0.10935606062412]],[[0.017510816454887,-0.075075149536133,0.00089904345804825],[-0.036163438111544,-0.033944342285395,0.021863862872124],[0.06918141245842,-0.014017811976373,0.021422930061817]],[[-0.0053769992664456,-0.047712001949549,-0.018249144777656],[0.021822458133101,-0.098848395049572,0.064407266676426],[-0.014223455451429,-0.072173021733761,0.038330640643835]],[[-0.03396400436759,0.0026902097743005,-0.02579484321177],[0.048897564411163,0.050720848143101,0.057979576289654],[0.05676743760705,-0.043840169906616,-0.03168199211359]],[[0.13832189142704,0.010098796337843,-0.078661106526852],[-0.032382898032665,-0.028326461091638,0.098421491682529],[0.00035283938632347,0.027998708188534,0.084909923374653]],[[0.022066982463002,0.067827805876732,0.049025852233171],[0.035636685788631,0.051248028874397,-0.011424698866904],[0.0082038873806596,0.025062719359994,0.04686389490962]],[[-0.043724823743105,0.026298396289349,-0.030506227165461],[0.059919379651546,0.01404757797718,-0.0082973586395383],[-0.025072725489736,-0.032521713525057,0.01586939021945]],[[0.032724492251873,0.046484958380461,0.070059932768345],[0.0028919517062604,0.021067542955279,0.04517088830471],[0.054330132901669,0.024546694010496,-0.019453251734376]],[[0.058686703443527,0.016335131600499,0.03762125223875],[0.077861987054348,-0.026633253321052,-0.0054968362674117],[-0.01683497428894,0.00014560583804268,0.035683825612068]],[[0.015851775184274,-0.06120440736413,0.0040564779192209],[0.00053494144231081,0.041177406907082,0.012035730294883],[-0.016609337180853,0.033075645565987,-0.031142082065344]],[[-0.0045720469206572,-0.093568220734596,-0.04925324395299],[0.020883643999696,-0.031642813235521,0.040412113070488],[-0.011999450623989,-0.024960709735751,0.005392637103796]],[[-0.046504247933626,0.066796369850636,0.0099090505391359],[0.033782128244638,-0.05736580491066,0.027967792004347],[-0.01635012216866,0.050706144422293,-0.085504546761513]],[[-0.036010175943375,0.047507792711258,0.02738780900836],[-0.049043200910091,0.010922701098025,-0.10646384209394],[0.027363484725356,0.071968503296375,-0.05309472233057]],[[0.0058309105224907,0.01607707887888,0.070738427340984],[0.058195319026709,0.056718688458204,0.054451245814562],[-0.0028768982738256,0.048538185656071,-0.088699720799923]],[[-0.012884595431387,0.056918893009424,0.091375529766083],[-0.071592345833778,0.038460627198219,-0.015734728425741],[-0.041865237057209,0.051854569464922,0.04232669621706]],[[0.039560593664646,-0.043506354093552,-0.025092551484704],[-0.011073214933276,0.007594789378345,-0.030578667297959],[-0.033928006887436,-0.024868007749319,-0.01847118884325]],[[0.04847714677453,-0.0014349016128108,0.014159240759909],[-0.056407675147057,-0.0032607917673886,0.046030189841986],[0.037122279405594,0.00064186961390078,-0.048433281481266]],[[0.033111352473497,-0.063367567956448,0.041942946612835],[0.085422836244106,-0.005835501011461,-0.035677026957273],[-0.020143758505583,-0.060455124825239,0.093873336911201]],[[0.052947726100683,-0.063250996172428,-0.036599304527044],[-0.034878134727478,-0.015863670036197,-0.0068355356343091],[0.020465409383178,0.048504203557968,-0.034297522157431]],[[-0.022073367610574,-0.11151088029146,-0.0136684384197],[-0.0078013413585722,0.0097529506310821,-0.013217872008681],[-0.002347094938159,0.024434689432383,-0.062488291412592]],[[0.034388147294521,-0.083083972334862,-0.017355445772409],[-0.01208127476275,-0.044589001685381,0.094098635017872],[-0.023952333256602,-0.012651047669351,-0.024733865633607]],[[-0.02958063967526,0.10946263372898,-0.0072891269810498],[0.0084703667089343,-0.035804186016321,-0.044659923762083],[0.089450195431709,0.049851022660732,0.056771248579025]],[[-0.01267062406987,0.01584231108427,-0.012493495829403],[0.084614053368568,-0.068703509867191,-0.026768185198307],[0.024164894595742,-0.11518298834562,0.055675383657217]],[[0.025097478181124,0.043558653444052,0.027328617870808],[-0.067663840949535,0.073298908770084,0.040492277592421],[-0.05814965441823,0.015720818191767,0.04356487467885]],[[0.0046615796163678,0.0052284654229879,-0.0044370428659022],[-0.011949674226344,-0.019205808639526,-0.036582492291927],[0.032895892858505,0.0034226761199534,0.016731923446059]],[[0.070992857217789,-0.039668191224337,0.077432282269001],[-0.006075004581362,-0.071970768272877,-0.086440160870552],[0.021429013460875,-0.03466035053134,-0.016270842403173]],[[0.054872404783964,0.025188768282533,0.0019068866968155],[-0.0022084368392825,-0.0066358204931021,0.055019613355398],[0.0070907776243985,0.010727072134614,-0.01621475815773]],[[-0.032677978277206,0.026233322918415,0.011521592736244],[0.013547282665968,0.072877384722233,0.0076319924555719],[-0.014913698658347,-0.026293002068996,-0.013593346811831]],[[-0.040514100342989,-0.064543679356575,0.018802665174007],[-0.014903761446476,-0.038541398942471,0.037725307047367],[-0.081827431917191,-0.024400614202023,-0.041879151016474]],[[-0.026578135788441,-0.077519133687019,-0.082284308969975],[-0.012924055568874,0.033913057297468,0.0025091872084886],[0.019464880228043,-0.027708796784282,-0.053401481360197]],[[-0.0093556558713317,0.0072614601813257,-0.037896770983934],[-0.0020102118141949,-0.018277866765857,-0.034751713275909],[-0.077410452067852,0.0019760113209486,0.075280658900738]],[[0.021383328363299,0.049541532993317,0.090095922350883],[0.037422575056553,-0.0026836241595447,-0.052601624280214],[0.11287041753531,0.015804069116712,0.0070263454690576]],[[0.064829148352146,-0.013891149312258,0.10141510516405],[-0.022814530879259,0.05364903435111,-0.010515603236854],[-0.0017118849791586,-0.0019864616915584,-0.040467903017998]],[[0.058730166405439,-0.046452265232801,-0.005588608328253],[-0.049501035362482,-0.0015098211588338,-0.028895009309053],[0.047229062765837,-0.03644135594368,0.019216388463974]],[[0.014402382075787,-0.035896401852369,-0.0080914394930005],[0.075220748782158,-0.060642596334219,-0.027672590687871],[0.014104286208749,0.029632318764925,-0.03968620672822]],[[0.0087389731779695,0.011929485946894,-0.034197799861431],[0.039371408522129,-0.017072079703212,-0.064352124929428],[0.0098755676299334,0.033429812639952,0.032755672931671]],[[-0.076116450130939,-0.031873293220997,0.031844865530729],[0.073716968297958,0.01511824503541,-0.022719763219357],[-0.010183040983975,-0.00652049575001,0.026685748249292]],[[0.030322367325425,0.022255895659328,0.025093646720052],[-0.025077262893319,0.0098390681669116,-0.015044927597046],[-0.043975234031677,-0.0078605990856886,-0.0097748497501016]],[[0.015578961931169,0.045689582824707,0.00045713200233877],[-0.041605737060308,0.081685252487659,0.0036477579269558],[-0.039529666304588,0.047308828681707,-0.030271867290139]],[[-0.016500879079103,0.092761673033237,0.028017852455378],[0.079540900886059,-0.0034264642745256,0.029064318165183],[-0.11373598128557,0.029869996011257,0.036881297826767]],[[-0.015859736129642,0.0027073773089796,0.028042213991284],[0.079547390341759,0.0083773974329233,0.081360131502151],[0.050058968365192,0.040529675781727,0.0436503700912]],[[0.011375023052096,-0.015446092002094,0.03279834985733],[0.01432482432574,-0.021136790513992,0.0094873299822211],[0.028697924688458,-0.012248943559825,0.0050322087481618]],[[0.0150325614959,-0.005603073630482,0.057095244526863],[0.030706189572811,-0.016583397984505,-0.01430357247591],[-0.010772566311061,0.033805120736361,-0.037199161946774]],[[0.074984312057495,-0.0028858766891062,0.010223158635199],[0.00068579195067286,0.060760200023651,-0.019501527771354],[0.055915802717209,-0.04101138189435,0.037224438041449]],[[0.0076623125933111,-0.0072114537470043,0.060337278991938],[0.057100292295218,-0.018936922773719,0.032506018877029],[0.087260738015175,-0.042252540588379,-0.053207349032164]],[[-0.026494722813368,-0.002402521437034,0.00069290969986469],[0.034111578017473,-0.034353580325842,-0.12145718187094],[0.001656383392401,0.032203748822212,0.0041696894913912]],[[0.051977977156639,0.026166727766395,0.061309792101383],[-0.040064595639706,0.0031997011974454,-0.041082616895437],[-0.023046130314469,0.0033430159091949,-0.011289623565972]],[[0.031683467328548,0.0095481611788273,-0.020224925130606],[0.028018120676279,-0.024008620530367,0.0095429820939898],[-0.00064732308965176,0.0010579817462713,0.0037873408291489]],[[0.02839083224535,-0.021205937489867,-0.051458582282066],[-0.023270297795534,0.055321712046862,-0.055696457624435],[0.028316039592028,0.012045292183757,-0.0096142599359155]],[[0.021369783207774,0.00055101671023294,-0.036475110799074],[-0.039067007601261,0.056920479983091,-0.0079587753862143],[-0.010705194436014,-0.024589456617832,-0.027753308415413]],[[0.016445586457849,0.056562714278698,0.03497938066721],[0.087611146271229,0.0078743221238256,-0.026775633916259],[-0.01503677200526,-0.0029199223499745,0.024201676249504]],[[-0.014844374731183,0.017964852973819,-0.033960122615099],[0.077511914074421,0.026832405477762,-0.017596242949367],[0.027091352269053,-0.024052623659372,-0.11612588167191]],[[-0.020164009183645,0.072805933654308,0.040950749069452],[0.0099386293441057,0.040007881820202,-0.0076889228075743],[-0.046578340232372,0.036262936890125,0.045730318874121]],[[-0.032584704458714,0.015679961070418,0.05826111137867],[-0.019385991618037,0.027540864422917,0.010762376710773],[0.0046225474216044,0.013657773844898,0.0089181130751967]],[[-0.0094429207965732,-0.036993578076363,0.0078748660162091],[-0.0046520251780748,-0.036210350692272,0.063911557197571],[0.034878175705671,-0.084115043282509,-0.046712145209312]],[[0.023369269445539,-0.043385729193687,-0.021111559122801],[0.027437467128038,0.050610050559044,0.080891832709312],[-0.037729404866695,0.059123106300831,0.032166600227356]],[[0.026922872290015,0.016172841191292,0.04585312306881],[-0.03487116470933,0.051813114434481,-0.019546067342162],[-0.013602850958705,0.012860701419413,-0.028599124401808]],[[0.018997022882104,-0.014308547601104,0.029284812510014],[0.041263174265623,-0.041040655225515,0.0137226479128],[-0.023854941129684,-0.024075133726001,0.054511211812496]]],[[[0.12051810324192,0.032065328210592,0.047575887292624],[0.10874333977699,-0.0071566598489881,0.077124446630478],[-0.0071814521215856,-0.02906690351665,0.10279305279255]],[[-0.090381100773811,0.0087127704173326,0.038837522268295],[0.025220960378647,0.056288179010153,-0.034511245787144],[0.043922118842602,0.0043740887194872,-0.027084907516837]],[[0.018643777817488,0.10998487472534,0.0044048996642232],[-0.033942319452763,-0.0074870805256069,0.13526253402233],[0.10556731373072,0.016562463715672,-0.057323358952999]],[[-0.04351482540369,-0.066547580063343,-0.054579302668571],[-0.035612601786852,-0.017178542912006,0.058743216097355],[0.032148491591215,-0.0034167319536209,0.0031716916710138]],[[-0.062394920736551,0.079053871333599,0.055680375546217],[-0.05568789690733,-0.018190221861005,0.040290646255016],[0.015964228659868,-0.054073594510555,0.058858744800091]],[[0.05389317497611,0.038824178278446,0.01995431818068],[0.11165111511946,-0.044565979391336,-0.098013907670975],[0.15061743557453,0.037499107420444,0.012440764345229]],[[0.10163863003254,-0.0020725147332996,0.014703697524965],[0.11790043860674,-0.12332794815302,-0.087471775710583],[-0.035524677485228,0.0044427923858166,0.079485327005386]],[[0.030258731916547,0.035933747887611,0.046868190169334],[0.084949016571045,0.041855443269014,-0.025364128872752],[-0.043412819504738,0.044466983526945,-0.050368264317513]],[[0.0058028707280755,0.074045032262802,-0.050746511667967],[-0.040243107825518,-0.0034773440565914,-0.078681997954845],[-0.10694576054811,0.026315454393625,-0.12196611613035]],[[0.012898626737297,-0.031863357871771,0.044871602207422],[-0.091135285794735,0.014386930502951,-0.052788849920034],[-0.0044613783247769,-0.025526056066155,-0.024359932169318]],[[-0.066728860139847,0.0046219569630921,-0.003372760489583],[-0.034924130886793,-0.021794931963086,0.0071167810820043],[-0.073042139410973,-0.10679461807013,-0.003308076877147]],[[-0.01155908498913,0.018945302814245,0.03935743495822],[0.0021046455949545,0.033762417733669,-0.072738640010357],[-0.14911159873009,0.021846564486623,-0.13946378231049]],[[0.013865411281586,-0.051821529865265,0.044036533683538],[0.050948798656464,-0.012091281823814,0.004983430262655],[0.050587043166161,-0.017356431111693,0.01915124990046]],[[0.016273438930511,-0.10095649212599,0.080915898084641],[-0.063769400119781,-0.01256338506937,-0.053234845399857],[-0.0090173538774252,0.029413467273116,0.020732831209898]],[[0.011901778168976,0.04979620501399,0.035409014672041],[0.073837593197823,0.018656129017472,0.07085856795311],[-0.046284072101116,0.0080753471702337,-0.015566009096801]],[[-0.0093760145828128,-0.054457683116198,0.061459045857191],[-0.043929398059845,-0.044172871857882,0.030468510463834],[-0.035780563950539,-0.12094239890575,-0.044267546385527]],[[-0.074027843773365,-0.082641668617725,-0.0581044703722],[0.03280596062541,0.03437152504921,-0.039830937981606],[-0.00081930559827015,0.0034994643647224,-0.039028834551573]],[[-0.059178851544857,0.0071510835550725,-0.16128297150135],[-0.059390038251877,0.070017918944359,-0.04835420101881],[-0.11229465156794,0.16052454710007,-0.072441920638084]],[[0.035928461700678,0.012887933291495,-0.094245977699757],[0.01001781783998,0.035088937729597,-0.029158782213926],[-0.020680179819465,-0.0011436061467975,-0.057472329586744]],[[-0.098367393016815,0.052438955754042,-0.12965826690197],[-0.11236375570297,0.08480117470026,-0.10902256518602],[-0.088505670428276,0.027616422623396,-0.045604862272739]],[[0.017054906114936,-0.089464388787746,-0.010252031497657],[-0.0016711049247533,-0.053816359490156,-0.010076984763145],[-0.12509618699551,-0.0025440822355449,-0.065854467451572]],[[-0.0072379591874778,0.1033426001668,-0.062642015516758],[0.035722866654396,0.055752832442522,-0.016021527349949],[-0.040701381862164,0.028878325596452,-0.014353388920426]],[[-0.0044706389307976,-0.056803055107594,-0.037296410650015],[0.060101203620434,-0.034458067268133,-0.05987923592329],[0.094093479216099,0.0043291482143104,-0.010735994204879]],[[-0.0037908814847469,-0.053368169814348,-0.020116448402405],[0.010789077728987,-0.0026854036841542,0.014938106760383],[0.052841022610664,0.051001947373152,0.033934369683266]],[[-0.02080606482923,0.020627895370126,-0.024508928880095],[-0.061244729906321,0.062684014439583,0.006684890948236],[0.018024558201432,0.10965748876333,-0.021887036040425]],[[0.14956094324589,-0.043213654309511,0.0053385710343719],[-0.0039404714480042,-0.022502159699798,0.054691385477781],[-0.089395962655544,0.042066670954227,-0.083396837115288]],[[0.032113201916218,0.060431305319071,-0.002710118656978],[0.0065023005008698,0.061426408588886,-0.025368237867951],[0.037847045809031,-0.050773844122887,-0.0040597505867481]],[[0.017034312710166,-0.019298136234283,-0.049716554582119],[0.012348296120763,-0.026215082034469,0.02044589817524],[0.043637406080961,0.0043829260393977,0.032741822302341]],[[-0.042995125055313,0.0046874000690877,-0.0069013540633023],[0.038471415638924,-0.027648730203509,0.030132122337818],[0.068471290171146,-0.11920643597841,-0.0093419160693884]],[[-0.01718757301569,0.03210387378931,0.034991513937712],[0.10314471274614,-0.054170697927475,-0.021656971424818],[0.10518635809422,-0.019587365910411,0.030285593122244]],[[0.06065608561039,-0.017569232732058,0.032025974243879],[-0.11851661652327,-0.062796860933304,-0.018671689555049],[-0.078835599124432,-0.0024042786099017,0.042219746857882]],[[-0.00086922460468486,-0.014331147074699,-0.066325485706329],[-0.0089135505259037,0.037198483943939,-0.024269971996546],[-0.083932988345623,0.14199627935886,0.13415029644966]],[[-0.029742801561952,-0.067835383117199,-0.060329604893923],[-0.060643285512924,-0.037188339978456,0.052930895239115],[-0.10199098289013,0.013650570064783,0.091549277305603]],[[0.044248163700104,0.0062994663603604,0.11666235327721],[-0.0024962811730802,-0.016789166256785,0.032746262848377],[-0.052092686295509,0.04444732144475,0.056862071156502]],[[-0.10829040408134,-0.058920759707689,0.055486723780632],[-0.082068875432014,-0.1406369805336,-0.088245630264282],[-0.042743839323521,-0.10661173611879,-0.089445009827614]],[[-0.01073829177767,-0.02492424659431,-0.074334695935249],[-0.036990258842707,-0.040315393358469,0.0067392331548035],[-0.016392467543483,0.049460802227259,-0.0039921905845404]],[[0.099839821457863,-0.021975573152304,0.031772200018167],[0.0023134313523769,0.0041435700841248,0.05085926130414],[0.047730851918459,-0.010379897430539,0.063442587852478]],[[0.0005167024792172,-0.058776721358299,0.023712133988738],[0.0065660462714732,-0.0031796814873815,-0.012790245003998],[0.0031841879244894,0.078929468989372,-0.048998277634382]],[[0.026698913425207,0.0020980653353035,0.056468788534403],[0.049476895481348,-0.019616508856416,-0.066746897995472],[0.019408801570535,0.052850723266602,-0.14271904528141]],[[-0.069035768508911,0.019991975277662,-0.075018845498562],[-0.0036994246765971,-0.067607007920742,-0.012865578755736],[0.085210353136063,-0.08179048448801,-0.079381883144379]],[[0.06972724199295,-0.0069112782366574,0.047840062528849],[0.052170317620039,-0.063585177063942,-0.081812717020512],[0.14935803413391,-0.0028267775196582,0.0059822942130268]],[[-0.017680758610368,0.073512740433216,0.005878790281713],[-0.053267020732164,-0.029666969552636,0.090746700763702],[-0.010089627467096,0.023744601756334,0.017868928611279]],[[0.0054438202641904,0.044127073138952,0.035241190344095],[0.011262270621955,0.042347095906734,0.027155561372638],[0.017791902646422,-0.12155989557505,0.049757838249207]],[[-0.020969236269593,-0.051018167287111,-0.040222283452749],[-0.032394483685493,-0.093331940472126,0.040462959557772],[-0.12634825706482,-0.091483540832996,-0.01288253441453]],[[-0.03079504519701,-0.017128763720393,-0.040958799421787],[0.016909396275878,0.0081269480288029,-0.047885578125715],[0.093191087245941,0.016544545069337,0.075652681291103]],[[0.039695411920547,-0.016182875260711,-0.048333369195461],[0.03400969132781,-0.043041002005339,0.04929842799902],[-0.030047377571464,-0.056167125701904,0.034038748592138]],[[-0.011283996514976,-0.015167543664575,0.025444239377975],[-0.022570975124836,0.0087859639897943,-0.092581130564213],[-0.057806201279163,-0.05467976629734,-0.018547108396888]],[[0.051925919950008,-0.074439331889153,-0.019225699827075],[0.0027217452879995,0.050238110125065,0.013156794942915],[-0.00071668962482363,0.095220036804676,-0.01124837808311]],[[0.07361414283514,-0.13998264074326,-0.042344518005848],[0.021995477378368,0.018118090927601,-0.082680016756058],[-0.023750772699714,0.077122740447521,-0.04272161051631]],[[-0.02363614551723,0.0015335339121521,-0.048802141100168],[-0.0062607452273369,0.024526555091143,-0.020208371803164],[-0.0086586633697152,0.091980345547199,0.075217604637146]],[[-0.0078267585486174,0.022958433255553,0.018820442259312],[-0.00055079843150452,-0.033460505306721,0.019146522507071],[-0.026555508375168,0.063758887350559,0.037758748978376]],[[-0.0012188535183668,0.0047906902618706,0.041207700967789],[0.072505719959736,-0.0066652442328632,-0.00060257560107857],[0.022883478552103,-0.10006178170443,-0.062816254794598]],[[-0.011477202177048,-0.013778240419924,-0.033494766801596],[0.00070145993959159,-0.075289234519005,-0.0051549873314798],[-0.066679328680038,-0.039729986339808,0.02447921037674]],[[0.045367952436209,-0.028278540819883,-0.043272968381643],[0.043507318943739,-0.042011931538582,-0.022910984233022],[0.054835073649883,0.093762151896954,-0.037488091737032]],[[-0.038792673498392,-0.013686943799257,0.0082424031570554],[0.10057047009468,-0.043435998260975,-0.074282929301262],[0.079692490398884,0.055265329778194,-0.024431377649307]],[[-0.067090056836605,-0.0055366670712829,0.060443751513958],[0.04586760699749,0.012601256370544,-0.0056101614609361],[-0.017313301563263,-0.0086062820628285,0.075902126729488]],[[-0.014762063510716,0.030787525698543,0.045951329171658],[-0.045571066439152,0.031250339001417,0.0084351757541299],[0.0078790923580527,0.050072725862265,0.054216887801886]],[[-0.016241738572717,-0.13579742610455,0.087213650345802],[-0.022250408306718,-0.044474236667156,0.022046880796552],[-0.035065483301878,-0.011848656460643,-0.025685653090477]],[[-0.0023950566537678,0.061428233981133,-0.014499485492706],[-0.045103598386049,-0.027938891202211,-0.090034537017345],[0.10569213330746,-0.057326387614012,0.04757571592927]],[[0.099330499768257,-0.04554596170783,0.087296716868877],[0.081438489258289,-0.10510674864054,0.0097820907831192],[0.042123936116695,-0.10997363179922,0.068117327988148]],[[-0.061146542429924,-0.05234656855464,0.10504410415888],[-0.017192896455526,-0.0015442384174094,0.11455008387566],[-0.059447921812534,0.01191498618573,0.045145865529776]],[[-0.092493802309036,-0.077409006655216,0.12047722190619],[0.15237954258919,-0.034348551183939,-0.089945040643215],[0.038309801369905,-0.018388569355011,-0.054827611893415]],[[0.075506821274757,-0.0037156483158469,0.034850306808949],[0.036056023091078,0.07349019497633,0.012842427007854],[0.015091547742486,-0.043936539441347,0.10038352012634]],[[0.057806454598904,-0.092553220689297,0.14613696932793],[-0.057906717061996,0.00274977250956,-0.13198806345463],[-0.029925744980574,0.11800348013639,-0.052879687398672]],[[-0.019134096801281,-0.052439864724874,-0.028166674077511],[0.18222211301327,-0.055489934980869,-0.0095775835216045],[0.068575739860535,-0.066356651484966,0.16952058672905]],[[-0.0042209690436721,0.019481647759676,-0.022989286109805],[-0.031429503113031,0.070536755025387,0.0066353674046695],[-0.052210614085197,-0.044444032013416,-0.039974380284548]],[[0.013324149884284,0.044853273779154,0.032799035310745],[-0.043978273868561,0.014709059149027,-0.011513731442392],[-0.066251590847969,0.026078619062901,-0.083217054605484]],[[-0.0787717923522,-0.012483485043049,-0.014675484970212],[-0.0074232104234397,-0.05500403046608,-0.047592170536518],[0.038819316774607,-0.013544973917305,-0.023843340575695]],[[-0.046215087175369,0.017572592943907,0.099639765918255],[0.013568412512541,-0.023931516334414,0.029589267447591],[-0.014475932344794,0.052038338035345,0.013988324441016]],[[-0.061049979180098,-0.038080412894487,0.19721777737141],[-0.052539844065905,-0.0075582605786622,0.02542726136744],[-0.074141904711723,-0.0043044821359217,-0.0016356974374503]],[[-0.016361808404326,0.078251756727695,0.078507095575333],[-0.031181482598186,0.021976731717587,0.022474834695458],[-0.014803527854383,0.019629383459687,0.029859790578485]],[[-0.010702693834901,-0.012036170810461,0.03451881930232],[0.07720248401165,0.059150472283363,0.045656379312277],[-0.012746605090797,0.016644543036819,0.011794248595834]],[[0.16884668171406,0.012444143183529,-0.053562480956316],[-0.041455507278442,-0.043206267058849,0.02584794908762],[-0.0046800696291029,-0.017914662137628,0.0018652359722182]],[[0.077091418206692,-0.037000693380833,0.0083539253100753],[0.23362989723682,0.051062989979982,-0.046163659542799],[0.051702059805393,0.033171195536852,-0.0066301850602031]],[[-0.04224057123065,0.0023740839678794,0.096910089254379],[-0.021860329434276,-0.052653394639492,0.085510358214378],[-0.092080898582935,0.056055754423141,0.042090825736523]],[[-0.052940618246794,0.065135918557644,-0.024126872420311],[-0.0079112648963928,0.035484571009874,-0.036880172789097],[-0.025294085964561,0.063679538667202,0.10626255720854]],[[-0.017339019104838,-0.0058443266898394,-0.029518850147724],[0.0033013408537954,-0.0064165783114731,-0.071301870048046],[-0.020983086898923,0.024161256849766,-0.10479974746704]],[[0.071408480405807,-0.022033026441932,0.057775944471359],[-0.0025552085135132,-0.04775808006525,0.085607834160328],[0.010413161478937,-0.025551445782185,0.002122926292941]],[[-0.07839073985815,0.034881960600615,-0.042153131216764],[0.0076505681499839,0.040956016629934,-0.057108499109745],[0.088352732360363,-0.036828171461821,0.061789784580469]],[[-0.0073807612061501,-0.070778779685497,-0.044512700289488],[0.0082097975537181,-0.049494609236717,-0.072505354881287],[-0.040175251662731,-0.0048261731863022,-0.016249887645245]],[[-0.0076976371929049,-0.10480158030987,-0.043661169707775],[0.063302494585514,-0.024388272315264,-0.083290502429008],[0.14421632885933,-0.020203748717904,0.00069877953501418]],[[0.089608751237392,-0.025859549641609,0.051445163786411],[0.1566102206707,0.049162060022354,0.050389144569635],[0.080285966396332,0.13016836345196,-0.019671656191349]],[[-0.012956990860403,0.081837795674801,-0.023834496736526],[-0.085274398326874,-0.0056651555933058,-0.076042391359806],[-0.0073887673206627,0.082107961177826,-0.028141688555479]],[[-0.078944772481918,-0.0012224458623677,-0.016955573111773],[-0.001793367555365,-0.0114870890975,-0.06244794651866],[0.0023804274387658,0.072564318776131,0.021072411909699]],[[0.07073749601841,0.059587236493826,0.032781679183245],[0.066027164459229,-0.021390035748482,-0.013224681839347],[0.1537903547287,-0.0024040343705565,0.052561894059181]],[[-0.064395032823086,-0.10225226730108,-0.014015995897353],[-0.035402316600084,0.02667879126966,-0.020426597446203],[-0.00053407158702612,0.045436073094606,0.1180714070797]],[[-0.056381419301033,-6.4119165472221e-05,-0.035403698682785],[-0.092092737555504,-0.057079020887613,0.005423238966614],[-0.072900734841824,0.025249475613236,0.042691513895988]],[[0.099078394472599,-0.055338568985462,0.1012069657445],[-0.042200930416584,0.0097484132274985,0.023698169738054],[-0.033813718706369,-0.11838237941265,0.094558358192444]],[[0.1520179361105,-0.027549488469958,0.050783988088369],[0.16832143068314,-0.074952833354473,-0.050069849938154],[0.17321082949638,-0.01353451795876,-0.020541924983263]],[[-0.068177320063114,-0.033523596823215,0.0043460461311042],[-0.026961153373122,0.038143984973431,0.033442843705416],[-0.03129268810153,0.065415263175964,0.055181354284286]],[[0.013054797425866,-0.0059630903415382,0.026816682890058],[0.033604472875595,-0.029215192422271,-0.031788375228643],[0.0015624252846465,-0.091452941298485,0.086426310241222]],[[0.011200752109289,-0.022725565358996,0.076747164130211],[0.00096014956943691,-0.0080956751480699,0.13607650995255],[0.065594181418419,-0.018703565001488,0.037981364876032]],[[0.12551508843899,-0.039553869515657,0.0031107675749809],[0.057005155831575,0.069487124681473,-0.028042351827025],[0.017264990136027,0.0026545806322247,-0.00450628856197]],[[-2.6560617698124e-05,-0.025393648073077,-0.076787427067757],[0.005206678994,0.010464820079505,0.10083985328674],[0.047603398561478,0.051996100693941,0.011191387660801]],[[-0.031377870589495,0.03968570381403,0.0090622063726187],[0.002972332527861,-0.1163881868124,-0.069799937307835],[-0.05273362249136,-0.10309947282076,-0.086620151996613]],[[-0.013225103728473,-0.019258754327893,-0.00011470598838059],[-0.027957316488028,-0.013372480869293,0.0032774917781353],[0.0079559832811356,-0.084959998726845,0.0066001545637846]],[[0.0064615234732628,0.038930870592594,0.038976583629847],[0.026705961674452,-0.075492151081562,-0.078791238367558],[0.089513659477234,0.025139182806015,-0.07695734500885]],[[0.0081853093579412,0.070576205849648,-0.030135333538055],[-0.016380855813622,0.11550508439541,0.055035885423422],[-0.054176989942789,0.13267865777016,-0.01761824823916]],[[-0.021125921979547,0.010429702699184,0.041776180267334],[0.012320646084845,-0.070102699100971,-0.023674616590142],[0.13369663059711,-0.068928815424442,-0.038712911307812]],[[0.099773891270161,0.088834770023823,-0.016084503382444],[0.020517280325294,-0.019314726814628,-0.042505528777838],[-0.029668781906366,-0.015028766356409,-0.065838374197483]],[[0.004398993216455,-0.00071958155604079,0.014036254957318],[0.090503968298435,-0.012065763585269,0.015728877857327],[-0.011151392944157,-0.030848156660795,-0.039955545216799]],[[0.016518298536539,0.040530186146498,0.030853964388371],[-0.018400363624096,-0.025985268875957,0.011118992231786],[0.019782559946179,-0.0096016181632876,-0.0051176212728024]],[[-0.074616618454456,0.026343932375312,0.0042505622841418],[0.021021069958806,0.0030165461357683,-0.014049983583391],[0.053116653114557,0.053769618272781,-0.062438808381557]],[[-0.069887332618237,0.083001099526882,0.083655901253223],[-0.0031955852173269,0.032992489635944,0.013949191197753],[0.064335405826569,-0.038827698677778,0.021425249055028]],[[-0.018563166260719,0.10004772245884,0.021571483463049],[-0.075232468545437,-0.0058696065098047,-0.023847319185734],[-0.016336366534233,-0.057727009057999,-0.057377982884645]],[[-0.067021682858467,-0.10978902131319,0.069947183132172],[0.0044985888525844,0.018246417865157,-0.020659007132053],[0.061480462551117,-0.018250420689583,-0.077104806900024]],[[0.092773869633675,0.036158282309771,-0.0049039479345083],[0.05649771541357,0.15099188685417,0.087435245513916],[0.018888220191002,0.0022869361564517,-0.089183963835239]],[[0.052495636045933,0.040752202272415,-0.059784173965454],[0.03807745501399,0.077240020036697,0.061270423233509],[-0.007154889870435,0.0036692896392196,-0.064878605306149]],[[-0.009296391159296,0.050102166831493,0.074221804738045],[-0.016587940976024,0.035011079162359,0.0050739729776978],[-0.0073661846108735,-0.0052518676966429,-0.0071775037795305]],[[-0.032968055456877,-0.0024820088874549,-0.056222911924124],[-0.096388004720211,0.0044777230359614,0.034101851284504],[-0.13611224293709,0.036713521927595,-0.02383241802454]],[[-0.054004717618227,-0.044262770563364,-0.042674817144871],[-0.040426336228848,0.023038476705551,0.0058159735053778],[0.0030592500697821,0.019585452973843,-0.045933969318867]],[[0.077160961925983,-0.02198065072298,-0.048036623746157],[0.076633214950562,-0.017877524718642,-0.027816582471132],[0.018679533153772,-0.025850921869278,-0.076990649104118]],[[0.054853390902281,-0.0020878331270069,0.056199803948402],[0.053312815725803,-0.033612500876188,-0.018390322104096],[-0.0059241745620966,0.1016301959753,0.012754880823195]],[[-0.13367792963982,-0.02410439774394,-0.016523102298379],[-0.020964134484529,0.04148007184267,-0.020810993388295],[0.007678103633225,0.0688306838274,-0.19083838164806]],[[0.031005915254354,-0.088449388742447,-0.03771772608161],[0.024877771735191,-0.06349316239357,0.033329430967569],[0.0010401743929833,-0.075765490531921,0.031748402863741]],[[0.059095200151205,-0.095050387084484,0.011073226109147],[0.029101399704814,-0.033175151795149,-0.044971209019423],[-0.00027285519172437,0.012508847750723,-0.010852058418095]],[[-0.063635498285294,0.055198479443789,0.10835853219032],[-0.04875835776329,-0.0032227598130703,-0.0032611761707813],[0.018694225698709,0.025547279044986,-0.066131077706814]],[[-0.014894152991474,0.011226443573833,0.097730793058872],[0.06865881383419,0.089511804282665,0.037027511745691],[-0.14048078656197,-0.039478160440922,-0.10266977548599]],[[-0.027502121403813,0.018394574522972,0.11346980184317],[-0.077458038926125,0.067359171807766,0.085067674517632],[-0.016196364536881,-0.037770558148623,0.054217990487814]],[[0.024997418746352,-0.014010481536388,-0.040399149060249],[0.030564615502954,-0.049185823649168,0.022641686722636],[0.037219107151031,0.0034345246385783,0.014945416711271]],[[0.0084323147311807,0.012254118919373,-0.0020376541651785],[-0.026503227651119,0.013154529966414,0.041622225195169],[-0.034352011978626,-0.01865728199482,0.054099675267935]],[[0.0052315103821456,0.01049857866019,-0.12341595441103],[0.054060779511929,-0.054419994354248,-0.001219252939336],[0.047177892178297,-0.024118674919009,-0.021899228915572]],[[-0.09836932271719,-0.012792535126209,0.05879732593894],[-0.086142994463444,-0.019370852038264,0.041541405022144],[-0.10007740557194,-0.065132699906826,0.042611435055733]],[[-0.036802466958761,-0.035877149552107,0.036095291376114],[0.057459693402052,-0.01089514605701,0.05396169051528],[0.14074409008026,0.0006099488819018,0.0061807432211936]],[[0.019330956041813,0.05569064244628,0.015753757208586],[0.014345386996865,0.12827786803246,-0.051541432738304],[0.047082748264074,0.13306541740894,-0.09707298874855]],[[0.08085635304451,-0.037936478853226,0.14334863424301],[-0.037021990865469,0.016231084242463,0.093913078308105],[-0.047411765903234,-0.0023010834120214,0.098004668951035]],[[-0.056138146668673,0.0027685626409948,-0.0063383006490767],[0.0084783351048827,0.0071713360957801,0.096197798848152],[-0.0045111095532775,0.056328613311052,0.010600361973047]],[[-0.069912604987621,0.070006772875786,0.041226956993341],[0.10190853476524,-0.081415332853794,-0.024897867813706],[0.15666720271111,-0.097071692347527,0.061196628957987]]],[[[-0.088079020380974,0.08333470672369,-0.020624889060855],[0.043380137532949,0.021055268123746,-0.17322246730328],[0.10646160691977,-0.071927219629288,0.052657727152109]],[[0.045260310173035,0.055140871554613,0.0037302831187844],[0.072626039385796,0.050872195512056,0.0088190250098705],[0.050054520368576,-0.072400934994221,0.035239044576883]],[[0.0090119866654277,0.028916129842401,-0.030982432886958],[0.15833960473537,0.027206083759665,0.11389791965485],[0.080764912068844,0.14779764413834,0.10384041815996]],[[0.021687271073461,-0.15223222970963,-0.060058694332838],[0.057172831147909,0.11742556095123,-0.038922972977161],[-0.069702878594398,0.089827597141266,0.2128933519125]],[[0.10981518775225,0.028271030634642,-0.0010993235046044],[-0.0078690703958273,-0.026473969221115,0.12451048195362],[0.05183406919241,0.05187950655818,0.22643262147903]],[[-0.015817996114492,-0.032042410224676,0.056534703820944],[-0.055857885628939,0.0027203799691051,-0.036951001733541],[0.01256406866014,0.092105410993099,-0.016964053735137]],[[-0.02525088749826,0.0057045640423894,-0.064332440495491],[-0.083650313317776,0.073687747120857,0.053117591887712],[-0.10201245546341,-0.15103407204151,0.078320182859898]],[[0.078294150531292,0.041716475039721,-0.014521948061883],[0.075020462274551,0.094579622149467,-0.026452582329512],[-0.016904227435589,-0.0042396574281156,0.17995642125607]],[[0.10470309108496,-0.0026326491497457,0.041533906012774],[-0.14978101849556,-0.064600102603436,0.10469325631857],[-0.062123779207468,-0.05711780115962,0.023222245275974]],[[-0.065447673201561,-0.032732550054789,0.001557806506753],[-0.0029778741300106,0.031187515705824,-0.18873471021652],[0.022050023078918,-0.12129423767328,-0.10853833705187]],[[-0.092114426195621,-0.14941515028477,-0.13781055808067],[0.01630051061511,-0.0071815685369074,-0.032000076025724],[-0.11617155373096,0.006030258256942,-0.033690605312586]],[[0.14048950374126,0.13696923851967,0.079779304563999],[0.084820210933685,0.022272257134318,-0.015966311097145],[0.079162888228893,0.1244590356946,0.015196395106614]],[[0.0068486891686916,-0.0020656047854573,-0.073249988257885],[-0.0030457093380392,-0.040976271033287,0.048614539206028],[-0.082761317491531,-0.090628311038017,-0.093395031988621]],[[-0.010719651356339,-0.064368203282356,0.02064929716289],[0.0028260364197195,-0.0042805010452867,-0.04343156516552],[-0.035497359931469,0.063256077468395,-0.039198510348797]],[[0.074545055627823,-0.034442491829395,-0.022941365838051],[-0.052814874798059,0.11770135909319,0.014451037161052],[0.062011390924454,0.049200590699911,0.0029009662102908]],[[0.17224596440792,-0.00082565791672096,-0.051838107407093],[0.10789006948471,-0.016648262739182,-0.075119987130165],[0.20179244875908,0.016900632530451,-0.13051114976406]],[[0.070454604923725,0.14912863075733,0.12527844309807],[-0.033990819007158,0.098527796566486,-0.11925396323204],[-0.052847988903522,-0.10073402523994,-0.16737526655197]],[[-0.052091132849455,0.015147192403674,0.15074591338634],[-0.15749758481979,0.041264697909355,-0.032833263278008],[-0.039803497493267,0.055114459246397,0.0039883586578071]],[[0.14890596270561,0.065407618880272,0.081329636275768],[-0.051340490579605,-0.020805209875107,0.010751126334071],[-0.036096647381783,0.098652139306068,-0.016265055164695]],[[0.020772011950612,-0.059739898890257,0.043342173099518],[-0.013399217277765,-0.028185337781906,-0.04072318598628],[-0.11112725734711,-0.016237590461969,0.06676884740591]],[[-0.02946756593883,-0.11698895692825,-0.072855934500694],[-0.13771748542786,-0.17890872061253,-0.04473938792944],[0.17026257514954,-0.011185981333256,-0.040068238973618]],[[0.065774999558926,-0.029866769909859,0.10214776545763],[-0.0022668263409287,0.074790827929974,0.15436758100986],[-0.11135514825583,0.22358727455139,0.021943088620901]],[[-0.09579449146986,-0.11602783203125,-0.035961236804724],[0.026929454877973,-0.0012697473866865,-0.041118625551462],[0.0015575463185087,0.027470080181956,-0.07018568366766]],[[-0.0043418412096798,-0.10219472646713,0.053308833390474],[-0.05155511572957,0.038165561854839,-0.086819484829903],[-0.10324707627296,-0.028839798644185,-0.093953408300877]],[[0.008340478874743,-0.054063834249973,0.097814545035362],[0.10731006413698,0.13580337166786,0.042815621942282],[0.069088764488697,-0.064817234873772,0.070727236568928]],[[-0.028204724192619,0.020969165489078,-0.052127417176962],[0.030472576618195,0.034867517650127,-0.059096775949001],[-0.035160232335329,0.091709442436695,-0.029610861092806]],[[0.088074557483196,-0.0075883585959673,-0.1002047508955],[0.006316845305264,-0.041873056441545,-0.042104873806238],[-0.1271924674511,-0.0033515016548336,0.042298164218664]],[[0.022085497155786,-0.055345762521029,0.049778383225203],[0.14609517157078,0.15872503817081,-0.0057423985563219],[-0.053862538188696,-0.027382081374526,-0.025231149047613]],[[-0.067548453807831,-0.24995629489422,-0.048248868435621],[-0.11298771947622,-0.16440105438232,-0.090352177619934],[0.13858659565449,0.063862010836601,0.01232379861176]],[[0.0096655488014221,-0.024527706205845,0.046443425118923],[-0.029321320354939,-0.17876876890659,0.03011011146009],[-0.09734508395195,-0.077532447874546,0.024014724418521]],[[0.079759746789932,0.029023807495832,-0.021022533997893],[0.073712818324566,-0.068197682499886,0.12042769044638],[-0.0034357635304332,-0.087346538901329,-0.022651506587863]],[[0.12783226370811,0.13539026677608,0.028107702732086],[-0.034125577658415,0.057548146694899,0.011462994851172],[0.043870683759451,-0.022498067468405,-0.05240435898304]],[[0.012155813165009,0.06467105448246,-0.093665726482868],[-0.079390622675419,0.068784706294537,-0.12714587152004],[0.12779825925827,0.091304250061512,-0.15716913342476]],[[-0.061613783240318,-0.029260484501719,-0.0256506819278],[0.095896482467651,0.10339800268412,-0.028554458171129],[0.10407155752182,-0.11973062157631,-0.056471087038517]],[[0.055440757423639,-0.021221086382866,-0.20607227087021],[-0.075272113084793,-0.057498995214701,-0.15468309819698],[-0.02605596370995,-0.10422962158918,-0.17037592828274]],[[-0.13546296954155,-0.10144747048616,-0.040149632841349],[-0.24894058704376,-0.059351067990065,-0.011411760002375],[-0.01715294457972,-0.07182727009058,0.0085646035149693]],[[0.01865565776825,0.068941235542297,0.0045365621335804],[-0.032647915184498,-0.045063443481922,-0.11347169429064],[0.044747076928616,-0.12808129191399,-0.11745186895132]],[[0.067570187151432,-0.20128256082535,-0.00082042062422261],[-0.0099463677033782,0.016951425001025,-0.011871141381562],[-0.097859255969524,-0.11569125950336,0.10472043603659]],[[0.038436967879534,-0.0074277450330555,0.00060278980527073],[-0.066340543329716,0.094779133796692,0.088461220264435],[-0.11851840466261,-0.0051931403577328,-0.10793141275644]],[[0.045637972652912,0.03461105749011,-0.044021423906088],[-0.075753606855869,-0.083273284137249,-0.051529634743929],[-0.025542652234435,-0.15475870668888,-0.23398892581463]],[[0.020680755376816,0.016940297558904,-0.098160728812218],[-0.059841461479664,0.075770437717438,0.02031615935266],[-0.10776390135288,-0.0050600958056748,-0.025395734235644]],[[-0.0087123848497868,-0.044017046689987,0.010033311322331],[0.087775535881519,-0.04286926984787,-0.0080208089202642],[0.035531990230083,0.10765888541937,-0.088240161538124]],[[-0.0026309732347727,0.001404075184837,-0.024187600240111],[0.083200059831142,-0.011936062946916,0.047616939991713],[0.072017662227154,0.019118253141642,0.041994675993919]],[[0.030489543452859,-0.023534137755632,-0.062347270548344],[0.052387487143278,-0.0382922552526,0.052757658064365],[-0.025078563019633,-0.027257906273007,-0.072049111127853]],[[0.12387999892235,0.13771259784698,0.10244450718164],[-0.095901466906071,0.02264703437686,0.010813491418958],[0.023777771741152,-0.02666231431067,0.10432217270136]],[[0.10702145844698,0.007843516767025,-0.0015076515264809],[-0.015360534191132,-0.16096062958241,-0.16837881505489],[0.1739923208952,-0.07643998414278,-0.099856719374657]],[[-0.051533553749323,0.051026459783316,-0.072152756154537],[-0.050012782216072,0.0523417070508,-0.10325399786234],[-0.043555371463299,0.071539372205734,-0.061794236302376]],[[-0.020843099802732,0.076291032135487,0.038041289895773],[0.052124205976725,-0.13206949830055,-0.085587151348591],[-0.10031425207853,-0.010731095448136,0.15956816077232]],[[-0.092632465064526,0.020834753289819,-0.053178615868092],[-0.0035868433769792,0.088239558041096,-0.11900246143341],[0.002909520175308,-0.01284854952246,-0.1250986456871]],[[-0.14426909387112,-0.064596630632877,-0.11264151334763],[-0.052437886595726,0.0065980893559754,-0.026281731203198],[0.011378317140043,0.031893324106932,0.046786982566118]],[[-0.22657556831837,-0.04584338888526,0.0030236376915127],[-0.13823775947094,-0.11584129184484,-0.02852519415319],[0.030026618391275,-0.13648895919323,-0.035924728959799]],[[-0.028509601950645,0.013225567527115,0.069550886750221],[-0.11396173387766,0.012837863527238,0.0016531181754544],[-0.11708461493254,0.062003087252378,0.04274532943964]],[[-0.0028709422331303,-0.0075406543910503,-0.063294813036919],[-0.03167612105608,-0.0016962471418083,-0.12979221343994],[0.093223080039024,0.035055678337812,-0.032150618731976]],[[0.018706928938627,-0.05325635150075,-0.19084487855434],[-0.036428108811378,0.0034415908157825,-0.034045439213514],[0.018228743225336,-0.003150001866743,-0.0029801269993186]],[[-0.028026308864355,-0.085635483264923,-0.082024350762367],[-0.068149320781231,-0.17661906778812,-0.088618695735931],[0.014806629158556,-0.14284299314022,-0.10791502147913]],[[0.0033963585738093,0.026764864102006,0.055580426007509],[-0.074103325605392,-0.0028734924271703,0.031077584251761],[0.063562303781509,-0.083528354763985,0.015843566507101]],[[0.080207318067551,-0.066328562796116,-0.17184171080589],[-0.1007032468915,0.050807412713766,-0.067140951752663],[0.037300914525986,-0.06338120251894,-0.25263419747353]],[[0.041964627802372,-0.022783344611526,0.050198066979647],[-0.10138596594334,-0.1203503087163,0.014866415411234],[-0.09429194778204,-0.24773301184177,-0.1761771440506]],[[-0.01017134077847,-0.053164131939411,-0.11216801404953],[-0.0069104707799852,-0.077589616179466,-0.005392414983362],[-0.052280958741903,-0.098339959979057,-0.0019477905007079]],[[0.0083053605630994,0.061000071465969,0.0084373373538256],[-0.041709329932928,0.089087158441544,0.067445069551468],[0.041822351515293,0.056368265300989,0.090914510190487]],[[-0.081333301961422,-0.019988264888525,-0.097336664795876],[-0.015208459459245,0.045226514339447,-0.057423979043961],[0.036335125565529,0.13493585586548,-0.028603207319975]],[[-0.1452060341835,-0.089408531785011,-0.052531212568283],[-0.22251337766647,0.006623606197536,-0.039989415556192],[0.00044646955211647,0.013124346733093,-0.20210964977741]],[[0.0059273336082697,0.013569193892181,0.048563275486231],[-0.039244521409273,0.1764664798975,0.096622355282307],[0.020426623523235,0.034547299146652,0.063012801110744]],[[0.1825425028801,0.13408400118351,-0.0062126754783094],[0.14993505179882,0.016635878011584,0.013329195789993],[0.063959531486034,-0.0096689136698842,-0.075700245797634]],[[-0.054746422916651,-0.19118849933147,-0.24143619835377],[-0.0076018669642508,-0.064214780926704,-0.080923087894917],[0.019719259813428,0.1894595772028,-0.054675836116076]],[[0.021094284951687,-0.033986538648605,0.044547222554684],[-0.032031495124102,-0.0062552760355175,0.058717958629131],[0.012533899396658,0.22981829941273,0.069662556052208]],[[-0.17171432077885,-0.10532422363758,7.8375553130172e-05],[-0.10074408352375,0.051649209111929,0.21048736572266],[-0.2120491117239,-0.050481114536524,0.11591067910194]],[[-0.22785221040249,-0.29263332486153,-0.0023766285739839],[0.047589957714081,-0.20704013109207,-0.19364482164383],[0.031674787402153,0.048215948045254,0.16976743936539]],[[-0.020561423152685,0.036177325993776,0.037819810211658],[-0.11186146736145,0.023438449949026,0.017668353393674],[-0.018928773701191,0.05879084020853,0.11482734233141]],[[-0.050026290118694,-0.13818094134331,-0.1065441891551],[0.070619441568851,0.16826890408993,0.1971633285284],[-0.0041187712922692,0.091299712657928,0.0042711137793958]],[[-0.095621913671494,-0.10309702903032,-0.091577336192131],[-0.0099588558077812,0.0040737381204963,0.078252106904984],[0.018434086814523,0.06896186619997,0.0015384878497571]],[[0.042236503213644,0.010796301066875,-0.097645401954651],[-0.074697159230709,-0.06787895411253,-0.10106794536114],[0.064970374107361,-0.040524180978537,-0.046446599066257]],[[0.032152816653252,-0.028324721381068,-0.16622218489647],[0.0085923355072737,-0.088923573493958,-0.14057137072086],[-0.046088345348835,-0.19373244047165,-0.13937623798847]],[[-0.042507354170084,-0.036320444196463,0.064723789691925],[-0.060744389891624,-0.060113687068224,0.063367657363415],[-0.081414490938187,-0.007312876638025,-0.064578227698803]],[[0.1218232139945,-0.01605605892837,-0.093210071325302],[-0.13656403124332,-0.17886956036091,-0.11209930479527],[0.034071069210768,-0.11278805881739,-0.11715284734964]],[[-0.049548204988241,0.0053859655745327,-0.051446225494146],[-0.038973446935415,0.041688285768032,0.069709241390228],[-0.021433550864458,-0.0177938695997,0.14659057557583]],[[-0.15845699608326,-0.13632430136204,-0.14319282770157],[-0.058488048613071,-0.077094532549381,-0.1645178347826],[-0.039859365671873,-0.18300005793571,0.01460683811456]],[[-0.026015909388661,0.00042410279274918,-0.03429302200675],[-0.13772538304329,-0.032558381557465,0.047644227743149],[-0.02855141274631,-0.074356846511364,0.059683818370104]],[[0.030474357306957,0.0029030914884061,-0.14994512498379],[-0.046756997704506,0.099749781191349,-0.061717078089714],[0.05543114989996,0.032998684793711,0.056316681206226]],[[-0.16801978647709,-0.010094727389514,-0.049718830734491],[-0.074499256908894,-0.17968226969242,-0.03225152939558],[0.14356634020805,-0.047426857054234,-0.034324955195189]],[[-0.05288802087307,-0.019765404984355,0.050783790647984],[0.040210619568825,-0.27596417069435,0.068941608071327],[0.044368308037519,-0.091730177402496,0.075615830719471]],[[-0.080096431076527,-0.077407717704773,-0.18022659420967],[-0.0096941776573658,0.010318458080292,0.10451622307301],[-0.068753682076931,-0.092581488192081,0.049958676099777]],[[-0.066746041178703,0.084809653460979,-0.0062500312924385],[0.054304771125317,0.11099338531494,-0.13619334995747],[-0.10089416801929,0.0091045061126351,-0.084343835711479]],[[-0.0042749061249197,-0.09537848085165,-0.015122056938708],[0.17092993855476,-0.02327279932797,-0.010433527640998],[0.19103163480759,-0.07145956158638,-0.10740583389997]],[[0.086549803614616,0.030678696930408,0.080772258341312],[0.07260063290596,-0.031276240944862,-0.052606128156185],[0.052836541086435,-0.15040351450443,-0.076728008687496]],[[0.070900097489357,0.17385469377041,0.081160232424736],[-0.025163520127535,-0.025184957310557,-0.05193293094635],[-0.046914346516132,0.033583901822567,-0.11783166229725]],[[0.0821268633008,0.042315866798162,0.074686594307423],[0.014272443950176,-0.14609760046005,-0.061582397669554],[-0.054599557071924,-0.058356143534184,-0.22636839747429]],[[-0.16176438331604,-0.10375786572695,-0.13290943205357],[0.077413201332092,-0.027599344030023,-0.02545964345336],[0.17559711635113,0.18073047697544,0.14530889689922]],[[0.049905579537153,0.056552600115538,0.026530234143138],[-0.045101780444384,0.079940430819988,-0.04888815805316],[0.051194287836552,0.11328677088022,0.010454884730279]],[[-0.14010578393936,-0.02759176492691,-0.083185359835625],[-0.060684777796268,0.056702949106693,-0.1281603127718],[0.055429149419069,0.0091826738789678,0.020247355103493]],[[0.14344450831413,0.0031593847088516,0.075962916016579],[-0.089715726673603,-0.011238071136177,-0.12320541590452],[0.093475766479969,0.033889107406139,0.10286063700914]],[[-0.0069681550376117,-0.054040838032961,0.025062639266253],[-0.021403256803751,-0.080472692847252,-0.043319687247276],[0.18744166195393,0.084776937961578,0.03988828882575]],[[-0.18699234724045,-0.029042100533843,0.010004381649196],[0.15646307170391,-0.072207510471344,0.076984114944935],[0.056289758533239,0.017697025090456,0.012296248227358]],[[-0.044092793017626,-0.10491290688515,-0.098120115697384],[-0.088820107281208,-0.033152338117361,-0.042101621627808],[0.0080723352730274,-0.063141159713268,0.1501856148243]],[[0.11162445694208,0.17506539821625,0.072317555546761],[0.015513373538852,0.09712390601635,0.087571449577808],[0.0094702914357185,-0.086147129535675,-0.11410838365555]],[[-0.022899555042386,-0.10540077090263,-0.023736510425806],[0.052855085581541,-0.0037117598112673,0.14801703393459],[0.12310692667961,-0.029109947383404,0.11258585751057]],[[-0.14414814114571,-0.10948179662228,-0.16844899952412],[0.010332075878978,-0.0010218470124528,-0.078250870108604],[-0.14735712110996,-0.057822667062283,0.022643657401204]],[[-0.097281701862812,-0.080395385622978,0.057660594582558],[-0.024905800819397,0.14870958030224,0.15203931927681],[-0.042838398367167,0.06197502091527,0.33469706773758]],[[-0.0081134717911482,0.024293266236782,-0.18475955724716],[0.11307698488235,0.066642493009567,-0.13875414431095],[0.19811303913593,0.055287767201662,0.20228108763695]],[[0.12269730865955,0.1076373681426,0.12575104832649],[0.022236876189709,0.048852514475584,-0.00025755009846762],[-0.036168247461319,0.017802201211452,0.043295215815306]],[[0.13927759230137,0.1062003672123,0.027772163972259],[0.010698743164539,-0.0079359225928783,-0.090866483747959],[-0.0197126660496,-0.03762586787343,0.012457757256925]],[[0.067205429077148,0.13982443511486,0.18732400238514],[0.080517999827862,0.085026018321514,0.099206157028675],[-0.0047524054534733,-0.09428483247757,0.048240672796965]],[[-0.11082699149847,-0.074114084243774,-0.17679026722908],[0.012085787020624,0.056302584707737,0.11811626702547],[-0.024890340864658,-0.098035871982574,0.1589727550745]],[[-0.022960675880313,0.028386624529958,0.018605962395668],[-0.025119297206402,-0.016570402309299,-0.056742880493402],[0.15411333739758,-0.03747108951211,-0.0043474524281919]],[[-0.057578470557928,0.040199626237154,-0.0026176981627941],[0.037560898810625,0.043695937842131,-0.095066145062447],[-0.14860372245312,-0.10751842707396,-0.17132297158241]],[[-0.16869914531708,0.027844293043017,-0.094190932810307],[-0.027254972606897,0.16736075282097,0.06092407554388],[0.0066309929825366,-0.077761486172676,0.12588953971863]],[[0.072170108556747,0.024302517995238,0.14207556843758],[0.021379852667451,-0.015125377103686,-0.0057566273026168],[-0.033175688236952,0.042842537164688,-0.09293619543314]],[[0.12398298829794,0.006110935471952,0.06369286775589],[0.066600956022739,0.0097676925361156,-0.087418757379055],[-0.084904722869396,-0.085280656814575,0.14144395291805]],[[0.030057661235332,-0.015347208827734,0.00062278448604047],[0.11041705310345,0.1665558218956,0.035551082342863],[0.023619906976819,0.10734181106091,-0.0055246660485864]],[[0.0012116773286834,-0.034049101173878,0.033667013049126],[0.011536079458892,0.059065639972687,0.061615381389856],[-0.10514085739851,-0.030633050948381,-0.061006926000118]],[[-0.029780874028802,-0.0819361358881,-0.0040683904662728],[0.0293446816504,0.061772953718901,-0.035174086689949],[-0.05701282247901,-0.05474703758955,0.055291142314672]],[[-0.018544007092714,-0.06714728474617,-0.025574656203389],[0.021060531958938,0.02181782014668,0.10837287455797],[-0.024174511432648,-0.036715980619192,0.091690108180046]],[[-0.040030103176832,0.11448697000742,-0.035714693367481],[-0.0022797179408371,0.01659993454814,-0.032318245619535],[-0.022462142631412,-0.036112453788519,-0.10813961923122]],[[0.02265333943069,-0.033226232975721,0.076421439647675],[-0.080148234963417,-0.12759947776794,0.0011149436468259],[-0.071689307689667,-0.096567519009113,-0.067451179027557]],[[-0.1352531015873,0.034939423203468,0.13717545568943],[0.093119889497757,-0.053133513778448,0.10087639093399],[0.14213162660599,-0.034398410469294,0.092913866043091]],[[0.0018551761750132,0.038951829075813,-0.10934156179428],[0.068813033401966,0.060648895800114,-0.045290313661098],[0.038388583809137,-0.085954576730728,0.027307234704494]],[[-0.14005002379417,-0.0040214355103672,0.11695941537619],[-0.10322303324938,0.00088387954747304,0.074596032500267],[0.031156526878476,0.077249735593796,0.04428855702281]],[[-0.0014467283617705,0.030280141159892,0.089241832494736],[0.038720186799765,-0.010365884751081,0.051586020737886],[0.14024245738983,-0.049072250723839,-0.025266973301768]],[[0.053121600300074,-0.010803789831698,-0.10873383283615],[0.073255568742752,0.019948484376073,-0.058851473033428],[-0.078630231320858,-0.021633056923747,-0.13649037480354]],[[0.12838986515999,0.11861496418715,0.17991678416729],[0.017547627910972,0.0081532346084714,0.079454563558102],[0.039417717605829,0.02594905719161,0.070045471191406]],[[-0.040569756180048,0.067743726074696,0.14640931785107],[-0.02436931245029,0.10069738328457,-0.041979402303696],[-0.25382813811302,-0.10283598303795,-0.068568497896194]],[[-0.021947603672743,-0.03617487102747,0.063036113977432],[0.056976173073053,-0.00042059581028298,-0.080116994678974],[0.13219285011292,0.10152961313725,0.10436986386776]],[[-0.16828368604183,-0.1835520118475,-0.17861846089363],[-0.099795490503311,-0.1858794093132,-0.19403879344463],[-0.027662880718708,0.02734512090683,-0.052404321730137]],[[-0.084343314170837,-0.066570043563843,-0.0086333891376853],[0.090066701173782,0.070532113313675,0.1240075007081],[0.11657729744911,0.11441565304995,0.03123914450407]],[[0.067874379456043,0.0492820776999,0.0039880275726318],[0.10202418267727,-0.029611438512802,0.065212272107601],[-0.029646323993802,0.029199151322246,0.07941509783268]],[[0.015594338998199,-0.012317650951445,0.067700669169426],[0.0020473033655435,-0.042956575751305,0.03575662150979],[-0.18260169029236,0.01689512655139,-0.018623610958457]],[[0.096409998834133,0.17316626012325,-0.065702773630619],[0.068766258656979,-0.061451286077499,-0.064315192401409],[0.068004295229912,-0.061411995440722,-0.0015688466373831]],[[0.048170261085033,-0.048098791390657,0.071873337030411],[-0.085556738078594,0.16289712488651,0.047633692622185],[-0.20599873363972,0.045125678181648,-0.17166613042355]]],[[[0.070399343967438,0.0032619272824377,0.03213469684124],[0.10621566325426,0.053421728312969,0.0027305660769343],[0.054179716855288,0.013084081932902,0.048385232686996]],[[0.12387958168983,0.02611449919641,-0.047992017120123],[-0.0039174645207822,-0.026384262368083,-0.059621393680573],[-0.023672856390476,0.017325680702925,0.073135904967785]],[[-0.059753622859716,-0.093992091715336,-0.040908925235271],[-0.045268371701241,0.036258120089769,0.010894949547946],[0.029778180643916,0.11056450009346,0.085601195693016]],[[0.057805713266134,-0.023996533825994,0.0088995369151235],[0.049982957541943,0.0045803692191839,-0.099050045013428],[0.025617862120271,0.01343579031527,0.020731519907713]],[[-0.13719621300697,-0.027300518006086,0.031839799135923],[0.17642234265804,0.026806868612766,0.24245543777943],[-0.024731555953622,-0.0022261682897806,-0.046574838459492]],[[-0.083007805049419,0.01905881613493,0.038817845284939],[0.036065917462111,-0.017131373286247,-0.00044330241507851],[0.017062792554498,0.0084171816706657,0.053932193666697]],[[0.12142764031887,0.13263833522797,0.17332501709461],[0.021542528644204,-0.093771055340767,-0.19708502292633],[-0.024305567145348,-0.0032363387290388,0.073836229741573]],[[0.049922920763493,0.082190148532391,-0.053645145148039],[-0.015684412792325,-0.019780643284321,0.029516279697418],[0.10318224877119,-0.040407288819551,-0.10388488322496]],[[-0.064027152955532,-0.027662573382258,-0.05111275985837],[-0.026801439002156,-0.080528579652309,-0.1515838354826],[0.022951135411859,-0.0025934677105397,0.055448994040489]],[[0.015833226963878,-0.011014330200851,0.0095322355628014],[0.063807040452957,0.017755338922143,0.0061347745358944],[0.041509542614222,-0.045599199831486,0.036849204450846]],[[-0.034291088581085,0.021230509504676,-0.0041255406104028],[0.03482685610652,0.077829226851463,-0.034787286072969],[-0.0052976836450398,-0.020550087094307,-0.021309422329068]],[[-0.079999826848507,-0.022295594215393,0.042728669941425],[0.054312396794558,0.0020541122648865,0.079553052783012],[0.094098217785358,0.11200121790171,0.14817737042904]],[[-0.059225805103779,-0.10680032521486,-0.021873768419027],[-0.056670274585485,-0.072896346449852,-0.090095743536949],[0.05040742456913,0.063057012856007,-0.048243004828691]],[[-0.053388405591249,-0.021690519526601,-0.0073324991390109],[-0.063174925744534,-0.039857428520918,-0.080425925552845],[-0.020297693088651,-0.084874734282494,0.094719752669334]],[[0.019537279382348,0.071245469152927,-0.097258806228638],[0.047774445265532,-0.049172602593899,-0.040506593883038],[-0.018551578745246,-0.0092816669493914,0.04305324703455]],[[-0.0057125319726765,-0.065158121287823,0.0036162671167403],[0.0032954681664705,-0.025983531028032,-0.03674716129899],[-0.045370861887932,-0.11614916473627,-0.11186207830906]],[[0.0041171228513122,0.0038668601773679,-0.13180400431156],[-0.032633580267429,0.01718876324594,0.028429470956326],[-0.02167739905417,0.059902179986238,-0.0045765973627567]],[[-0.13419654965401,-0.11845225095749,-0.021516831591725],[0.084004245698452,0.059358980506659,0.17102265357971],[-0.025863438844681,-0.05132383108139,-0.038790814578533]],[[-0.059150956571102,-0.04585837572813,0.038591846823692],[0.081274196505547,0.13535226881504,0.11025611311197],[0.023665057495236,0.018468456342816,0.1327448040247]],[[0.050222747027874,0.035996120423079,-0.10550802201033],[0.026469433680177,0.068780727684498,0.10185202211142],[0.082999497652054,0.080647483468056,0.053326439112425]],[[-0.032240387052298,0.0015604043146595,0.014136975631118],[-0.098702229559422,-0.059475310146809,0.04393444955349],[-0.065097779035568,-0.03037790581584,-0.023531069979072]],[[-0.064907222986221,0.071901746094227,0.14902406930923],[0.059300802648067,0.14715558290482,-0.01273700594902],[0.11371959000826,0.042431976646185,0.041724693030119]],[[0.053722877055407,0.015251383185387,-0.040471665561199],[-0.00013089171261527,0.078377313911915,0.1089381724596],[-0.061750553548336,0.05387445166707,0.08278214931488]],[[0.016849108040333,-0.024276550859213,-0.099512986838818],[-0.027901289984584,-0.033704981207848,-0.16151633858681],[-0.035058107227087,0.023429593071342,-0.0079484507441521]],[[-0.014698894694448,-0.0013614312047139,0.028977377340198],[0.0016303197480738,0.010307732969522,0.092597633600235],[0.063479416072369,0.035126369446516,0.074461176991463]],[[0.18723680078983,-0.014927207492292,-0.01144434325397],[0.06884577870369,-0.044924076646566,0.099614366889],[0.10268352925777,-0.0073639615438879,0.048322379589081]],[[-0.045179482549429,-0.042108468711376,-0.10001092404127],[-0.12784914672375,-0.070775993168354,-0.13110855221748],[-0.018366660922766,0.077928930521011,0.033107306808233]],[[-0.035456452518702,-0.070039242506027,-0.057751853018999],[0.03945168107748,0.026898747310042,-0.093111179769039],[-0.014339236542583,0.047217652201653,0.013595066964626]],[[-0.039883960038424,0.035058289766312,-0.12683913111687],[-0.12807035446167,-0.10441742092371,0.027516148984432],[-0.10960722714663,-0.051469013094902,0.087917625904083]],[[0.076850078999996,0.024476382881403,0.014422397129238],[0.0013073853915557,0.036667224019766,-0.018503105267882],[0.01555208209902,0.027197228744626,0.017734529450536]],[[0.087971910834312,0.036273207515478,-0.12154122442007],[0.019038604572415,-0.065011598169804,0.096805803477764],[0.032010097056627,0.15581548213959,0.17662985622883]],[[0.032619751989841,0.015233535319567,-0.051556225866079],[0.14322379231453,0.013417228125036,0.097363486886024],[-0.14570836722851,-0.085224486887455,-0.15992443263531]],[[0.017198633402586,0.015425007790327,0.14800848066807],[0.020123591646552,0.043057050555944,-0.10680761188269],[-0.10478037595749,0.076225891709328,-0.052409950643778]],[[0.064801231026649,0.0036125821061432,-0.069097653031349],[0.032934915274382,0.056479126214981,0.011705438606441],[0.0088840546086431,0.05870708823204,0.10189548879862]],[[-0.014723489060998,0.027316324412823,-0.010915320366621],[-0.031682658940554,0.011901564896107,0.038820896297693],[-0.074438758194447,-0.037170723080635,-0.061839427798986]],[[-0.0105787999928,-0.016266256570816,-0.074795432388783],[0.04388489574194,0.054724518209696,0.018085898831487],[0.034775968641043,0.050796329975128,0.050872772932053]],[[0.047549493610859,-0.020055940374732,-0.0083832005038857],[0.1117065474391,0.023271072655916,0.11763977259398],[-0.030339013785124,0.081207759678364,0.0045360340736806]],[[0.0096961818635464,0.034934658557177,-0.041870772838593],[-0.040204588323832,-0.034570064395666,-0.073357485234737],[-0.038744259625673,0.080827295780182,0.12901255488396]],[[0.11228033900261,0.081914961338043,0.098244868218899],[-0.075484104454517,-0.16254848241806,-0.10115931928158],[0.09722650796175,-0.056745883077383,0.041492775082588]],[[0.053124636411667,0.022297509014606,-0.022708605974913],[-0.037539321929216,-0.13748654723167,-0.16057187318802],[0.023094575852156,-0.074124254286289,0.096746474504471]],[[-0.085062019526958,0.0065908832475543,-0.03495030850172],[0.07118683308363,-0.037659000605345,-0.0027283956296742],[-0.017701035365462,-0.027868457138538,0.030555220320821]],[[-0.072956591844559,-0.073886275291443,0.03989052772522],[0.063046984374523,0.078713692724705,0.042947854846716],[0.023566193878651,-0.019629184156656,-0.029037782922387]],[[0.036757294088602,0.019697209820151,0.050252575427294],[-0.0024471725337207,-0.051397144794464,0.076971724629402],[-0.020436804741621,-0.016596863046288,0.0026845869142562]],[[-0.08264072239399,-0.096144303679466,-0.032585076987743],[0.030721785500646,0.024715293198824,0.076191686093807],[0.031187893822789,0.0076544657349586,0.10167320072651]],[[-0.028692891821265,0.022684464231133,-0.0083549069240689],[0.069675244390965,0.027742132544518,-0.018075034022331],[0.043173778802156,0.093841746449471,0.035276964306831]],[[0.014209146611392,0.0430553779006,0.0087478840723634],[0.10414046049118,-0.043911553919315,0.014670335687697],[0.019626470282674,-0.028522444888949,0.086564257740974]],[[-0.015293532982469,0.020193917676806,-0.045104004442692],[-0.025599513202906,0.0044213701039553,-0.0053284405730665],[0.097745656967163,0.015222186222672,-0.0044453395530581]],[[0.040559850633144,0.10084818303585,0.056238874793053],[-0.08349821716547,0.076909385621548,-0.00095057114958763],[-0.03260649740696,0.031833562999964,0.17800347507]],[[0.10629941523075,0.11684803664684,0.13629998266697],[-0.0025730011984706,0.050770003348589,0.082572355866432],[-0.064466379582882,-0.099079139530659,-0.060976002365351]],[[0.065891362726688,0.11516724526882,0.00049931916873902],[0.037668462842703,-0.0017919619567692,0.056572966277599],[-0.027539474889636,-0.050455737859011,-0.057471632957458]],[[0.03344950824976,-0.093773491680622,-0.079735167324543],[0.090902961790562,-0.083098083734512,-0.07116686552763],[0.17823967337608,0.046093221753836,-0.05043138563633]],[[-0.01694718003273,-0.036594428122044,0.094318486750126],[0.035234730690718,0.12517212331295,0.075137376785278],[-0.057407040148973,0.025776194408536,0.015897836536169]],[[-0.10268829017878,-0.10146813839674,-0.0014553482178599],[-0.06065259873867,0.030837843194604,0.10101844370365],[0.18740454316139,0.064206354320049,0.17799310386181]],[[-0.04239609465003,-0.089989148080349,-0.14866928756237],[-0.013354844413698,-0.084259778261185,-0.0074932244606316],[0.0055587156675756,-0.011812008917332,-0.0061179464682937]],[[-0.14288146793842,-0.052750419825315,0.034551098942757],[-0.074139654636383,-0.06169805303216,-0.053822427988052],[0.014091803692281,-0.076900534331799,-0.057700235396624]],[[0.21331995725632,0.14491680264473,0.13184793293476],[0.0016086706891656,-0.029258260503411,0.017682928591967],[-0.051328111439943,-0.087703943252563,0.012470036745071]],[[-0.010025950148702,0.045044589787722,0.031011110171676],[-0.026943109929562,0.03051383793354,-0.019387673586607],[0.047840155661106,-0.023586271330714,0.015310297720134]],[[-0.00028769989148714,0.063771642744541,-0.013088840991259],[-0.016958164051175,0.077795751392841,-0.05126978084445],[-0.064280994236469,-0.070577293634415,-0.019932374358177]],[[-0.095690526068211,-0.071204759180546,0.033439770340919],[-0.039389237761497,0.055896759033203,0.016660027205944],[0.079196073114872,0.072788797318935,0.076587624847889]],[[-0.081722252070904,0.038181357085705,-0.083567567169666],[0.056780889630318,0.11191748827696,0.1380966603756],[0.048833850771189,-0.00072661874582991,0.12668332457542]],[[-0.010935042053461,0.029556026682258,0.015200569294393],[0.060219470411539,0.051128715276718,0.10602115094662],[-0.015172288753092,-0.0089640682563186,-0.092457167804241]],[[-0.11250492930412,-0.014766757376492,-0.050492882728577],[-0.02873457223177,0.009844190441072,-0.039328776299953],[-0.11253670603037,-0.085147090256214,0.0050039566121995]],[[0.036103796213865,0.10721391439438,0.084030374884605],[0.030787946656346,-0.0031698613893241,-0.012891914695501],[0.01998395845294,-0.025939887389541,0.094225406646729]],[[0.15052507817745,0.061595659703016,-0.029212191700935],[0.092116266489029,0.010566805489361,0.13595102727413],[0.06120690703392,0.068308062851429,0.034627910703421]],[[-0.044272527098656,-0.069528244435787,0.0042471778579056],[0.10064151883125,0.021083794534206,0.097356401383877],[0.00067618204047903,0.060333613306284,0.11231809109449]],[[0.074004955589771,-0.0044015645980835,-0.066477954387665],[-0.0098324464634061,0.015159490518272,0.10059298574924],[-0.067345127463341,0.06764917075634,0.066483415663242]],[[0.019997037947178,0.072015911340714,-0.067965805530548],[0.055874560028315,-0.072945423424244,-0.057470094412565],[-0.048806838691235,0.064464092254639,0.14681842923164]],[[0.024059010669589,-0.030083995312452,-0.0026376920286566],[0.036738380789757,6.1372847994789e-06,-0.081001162528992],[0.071664907038212,0.046987868845463,0.078408874571323]],[[-0.069106079638004,-0.012265492230654,0.018972799181938],[-0.072568692266941,0.093715339899063,0.017242109403014],[-0.0054901158437133,0.042578689754009,0.088684305548668]],[[0.011747540906072,-0.050727859139442,-0.03296972066164],[0.040332056581974,-0.032993201166391,-0.029529541730881],[0.093258246779442,0.022669918835163,0.032543543726206]],[[-0.036167200654745,0.02065054513514,-0.037873812019825],[-0.035135503858328,0.071918994188309,-0.042178872972727],[0.079336993396282,0.11594375967979,0.065046697854996]],[[-0.17686073482037,-0.11347560584545,-0.01374227553606],[0.049607500433922,-0.014851400628686,-0.0082957902923226],[0.13443000614643,0.058046143501997,0.13401670753956]],[[-0.040640309453011,-0.016267145052552,-0.15858969092369],[0.022489994764328,0.072707615792751,0.077143616974354],[-0.02504001557827,-0.0047511863522232,0.025072280317545]],[[-0.047674290835857,0.0068712686188519,0.033639799803495],[0.089237488806248,0.072554662823677,0.043251421302557],[-0.023637540638447,0.043315801769495,0.082013554871082]],[[-0.046054068952799,-0.05163786932826,-0.045999050140381],[0.037919107824564,-0.0082931406795979,-0.036617510020733],[0.079631835222244,-0.031931530684233,0.076154604554176]],[[-0.04794180765748,-0.0069083329290152,-0.11063167452812],[0.079586938023567,-0.035220138728619,-0.015853427350521],[0.023311598226428,-0.071156807243824,-0.047529309988022]],[[-0.037150945514441,-0.093838080763817,0.011524096131325],[-0.10400667786598,-0.058492597192526,-0.01772253215313],[-0.0079613253474236,-0.023274702951312,0.10563603788614]],[[-0.035597026348114,-0.064513564109802,0.029678357765079],[-0.016227032989264,0.061517409980297,-0.01405241433531],[-0.00591752352193,0.047980062663555,-0.014840928837657]],[[-0.049474507570267,-0.085782334208488,-0.093632094562054],[-0.086991287767887,-0.022473957389593,-0.035141713917255],[0.00273621478118,-0.064814142882824,0.058625090867281]],[[-0.04494147375226,-0.021360861137509,0.043472196906805],[-0.031484495848417,-0.047927301377058,-0.011275606229901],[-0.0020020874217153,0.082539573311806,-0.022148743271828]],[[-0.0797024294734,-0.085015662014484,-0.022279152646661],[-0.084944814443588,-0.073171727359295,-0.0337132550776],[-0.054335284978151,-0.012577262707055,-0.052373304963112]],[[-0.053482059389353,-0.081702843308449,-0.077475778758526],[-0.083827026188374,-0.044244814664125,-0.0012370423646644],[-0.10313533991575,0.0080414777621627,0.025749666616321]],[[0.078702807426453,0.13814949989319,0.12444639205933],[-0.019763924181461,0.02884035371244,0.018150139600039],[0.097824402153492,0.059041362255812,-0.045574896037579]],[[-0.1246685013175,-0.055016808211803,-0.0092213740572333],[0.012625531293452,-0.078020177781582,0.00025585043476894],[0.072300836443901,-0.031504198908806,-0.021313341334462]],[[-0.051614962518215,-0.022088335826993,0.072756230831146],[-0.07577507942915,-0.1044130474329,-0.052584115415812],[0.12695387005806,0.060399800539017,-0.084058046340942]],[[-0.006181257776916,-0.036376409232616,0.030410442501307],[0.081696286797523,-0.01081367675215,0.10480254888535],[0.062192421406507,-0.024988308548927,0.026148175820708]],[[-0.096166953444481,-0.0021476128604263,0.052521921694279],[0.0075406488031149,-0.003385332878679,-0.0013295421376824],[0.022850908339024,0.00614163139835,0.014229389838874]],[[-0.065896697342396,-0.048084430396557,0.0028687182348222],[0.15357914566994,0.056399289518595,0.0042652902193367],[0.033825114369392,-0.047323510050774,-0.031831916421652]],[[-0.052984420210123,-0.0066297482699156,0.10641584545374],[-0.011064572259784,-0.018864328041673,0.037767503410578],[0.099941194057465,-0.048644509166479,-0.16209925711155]],[[-0.10447030514479,-0.063811257481575,-0.14728935062885],[0.039724983274937,0.038870874792337,0.074522040784359],[0.056702945381403,0.040163230150938,-0.028065903112292]],[[0.1552527397871,0.049589015543461,0.024908835068345],[0.052776411175728,0.19604657590389,0.056838009506464],[-0.026035530492663,-0.10427452623844,0.0078552076593041]],[[0.024129394441843,0.030188543722034,-0.0083244126290083],[-0.0011570369824767,0.060137379914522,-0.09198834747076],[0.089392803609371,0.04284892976284,0.10081747174263]],[[0.052342616021633,0.030157467350364,0.084276974201202],[0.011000983417034,-0.049701582640409,-0.060881834477186],[0.096708379685879,-0.022497599944472,-0.025622276589274]],[[-0.0031287034507841,0.049717642366886,0.00054304039804265],[0.012587548233569,0.16156582534313,0.058701444417238],[0.089185170829296,0.09445782750845,0.022787731140852]],[[-0.045288894325495,0.0095407329499722,0.020805530250072],[0.12895336747169,0.046679075807333,-0.029484242200851],[0.012469438835979,-0.11840863525867,-0.057177055627108]],[[-0.013664921745658,0.047205749899149,-0.15360687673092],[0.074046202003956,-0.075166247785091,-0.027389334514737],[0.0442182905972,-0.011261829175055,-0.020012510940433]],[[-0.073120757937431,-0.08177550137043,-0.052544258534908],[-0.025312269106507,-0.041875429451466,-0.048601638525724],[0.048692271113396,0.029048681259155,0.0049894829280674]],[[-0.14646792411804,-0.096219934523106,-0.047296863049269],[0.010216873139143,0.062180750072002,0.04857238009572],[0.037990543991327,0.13127702474594,0.056419473141432]],[[-0.049325309693813,-0.055796898901463,-0.034011498093605],[0.0014645048649982,0.17109994590282,0.20046862959862],[0.11798296868801,0.052089132368565,-0.033234972506762]],[[0.040378712117672,-0.036258172243834,-0.027295617386699],[0.14753326773643,0.078901939094067,0.14407166838646],[0.035353843122721,-0.1349151879549,-0.20168074965477]],[[-0.080472186207771,-0.0048207901418209,0.0034559878986329],[0.0733382999897,0.0062652882188559,0.078203946352005],[0.13222949206829,0.015313585288823,0.03910380974412]],[[-0.050842184573412,-0.083887614309788,-0.054946694523096],[0.24981351196766,0.23538893461227,0.25048613548279],[-0.035031527280807,0.096001014113426,-0.006169896107167]],[[-0.043570343405008,-0.041437219828367,-0.043366178870201],[-0.13570488989353,-0.094816647469997,0.016991464421153],[0.014867591671646,0.044133134186268,0.08861368149519]],[[0.10857155919075,0.060075584799051,0.027644647285342],[-0.11459724605083,-0.14535208046436,-0.052675873041153],[-0.025733793154359,-0.10203247517347,-0.044454652816057]],[[-0.029348345473409,-0.025991477072239,-0.047732375562191],[-0.04163671284914,-0.027368219569325,0.025766735896468],[0.084658950567245,0.0033530537039042,0.10744038969278]],[[0.13426618278027,0.0053528579883277,-0.012845404446125],[0.063565261662006,0.049079261720181,0.10642309486866],[-0.041040793061256,0.040628273040056,0.1215840280056]],[[-0.046382628381252,0.037915773689747,-0.13435736298561],[0.077710844576359,-0.012912883423269,0.033759716898203],[0.011645044200122,-0.096878319978714,0.019445588812232]],[[-0.096169903874397,-0.086750358343124,0.0056362058967352],[0.089059583842754,0.028117839246988,0.0010869228281081],[-0.023228881880641,0.058430351316929,0.070772707462311]],[[0.067683562636375,0.0013100698124617,-0.034954506903887],[0.1678079366684,0.088311567902565,0.055945854634047],[0.13255260884762,-0.011123850010335,-0.045105125755072]],[[0.10415940731764,0.097942307591438,0.081358022987843],[0.021137457340956,0.0064063952304423,0.083283729851246],[0.09159193187952,-0.039825096726418,-0.034909933805466]],[[0.11614156514406,0.21785329282284,0.095591925084591],[0.048164740204811,0.022231949493289,-0.079559959471226],[-0.092164270579815,-0.088104166090488,-0.030953206121922]],[[0.11543901264668,-0.054350752383471,0.074123479425907],[0.14179143309593,0.065689370036125,0.040711347013712],[-0.023902162909508,0.0074895415455103,0.084478572010994]],[[0.05174271017313,0.037399236112833,0.026747902855277],[0.030855942517519,-0.0013607647269964,0.0032584019936621],[0.069366790354252,-0.043087050318718,-0.021264413371682]],[[0.089632585644722,-0.05243606120348,0.14190937578678],[0.10915447771549,0.015609135851264,-0.11600241065025],[0.027416905388236,0.13042034208775,-0.13044740259647]],[[-0.06973821669817,-0.11243287473917,-0.00051631539827213],[0.0722286850214,0.061636008322239,-0.063039943575859],[-0.052329149097204,-0.045117270201445,0.01374701783061]],[[-0.06267511844635,0.040049217641354,-0.017811061814427],[-0.029740853235126,-0.12804208695889,-0.053379263728857],[0.070520401000977,-0.0080237314105034,0.02337234467268]],[[-0.062374278903008,-0.031418982893229,-0.067454226315022],[0.030480973422527,0.046451933681965,0.068784922361374],[0.008778503164649,0.029397211968899,0.0047529144212604]],[[-0.060888648033142,0.087756119668484,-0.089613743126392],[-0.043837241828442,0.0047148787416518,-0.073983624577522],[0.11584697663784,0.077645368874073,0.17863301932812]],[[0.025999577715993,-0.072807960212231,-0.061392284929752],[-0.10532452911139,-0.06949445605278,-0.04038106277585],[0.047011502087116,-0.017701299861073,0.052604425698519]],[[-0.12830881774426,-0.042584210634232,0.14130218327045],[0.017242142930627,-0.055153273046017,0.054980337619781],[0.04783445969224,-0.030559550970793,-0.059973631054163]],[[-0.0032452458981425,0.018647128716111,0.017459271475673],[0.018376486375928,0.051757678389549,0.042075853794813],[-0.040007218718529,-0.014849725179374,0.015767745673656]],[[-0.06466556340456,-0.051611579954624,0.00034548778785393],[0.021703699603677,0.068403117358685,0.079623505473137],[0.05390215292573,-0.055182959884405,0.11550656706095]],[[-0.11365825682878,-0.031707771122456,0.051241487264633],[-0.11875043064356,-0.083653844892979,-0.012340146116912],[-0.18371839821339,-0.10087634623051,0.098120845854282]],[[0.10093849152327,-0.012818341143429,0.018510973080993],[0.05557394400239,0.042060770094395,0.13770313560963],[0.015850778669119,-0.056849844753742,0.039941020309925]],[[0.043916177004576,-0.026785800233483,0.074943691492081],[0.023319121450186,0.10721853375435,0.044876024127007],[-0.03570581972599,0.026166437193751,0.066906653344631]],[[0.096031464636326,0.033317983150482,0.21279795467854],[-0.0141407167539,-0.055462051182985,-0.013575511053205],[-0.089069478213787,-0.033688604831696,-0.065296530723572]],[[0.079285182058811,0.14495526254177,0.025337496772408],[-0.020722098648548,0.0075123677961528,-0.029801264405251],[0.022187691181898,-0.075799949467182,0.0052906642667949]],[[-0.018512338399887,-0.063101716339588,-0.094723455607891],[-0.0053044371306896,-0.0098650567233562,-0.014896272681653],[0.0064246826805174,0.11338643729687,0.026488941162825]]],[[[0.024784363806248,-0.062131077051163,0.097870513796806],[-0.0012552094412968,0.03542959317565,0.045398995280266],[-0.034693792462349,0.026407305151224,-0.016338495537639]],[[0.0053365402854979,-0.014324363321066,-0.035180062055588],[0.003548794426024,-0.025586638599634,-0.0044137854129076],[0.031076263636351,-0.023773254826665,-0.11725224554539]],[[-0.040431182831526,-0.0033081145957112,0.030568176880479],[0.052578814327717,-0.068232022225857,-0.03225264698267],[-0.0046087983064353,0.042200800031424,-0.027939217165112]],[[0.069699205458164,0.024249490350485,-0.051647707819939],[-0.0050257770344615,0.034425314515829,0.046713873744011],[-0.032767727971077,-0.048840388655663,-0.017106480896473]],[[-0.02257994376123,-0.056499592959881,-0.055326197296381],[-0.024077640846372,0.060606632381678,0.0042955884709954],[0.049824677407742,0.12346070259809,-0.077398329973221]],[[0.073183469474316,0.072682619094849,0.019912637770176],[-0.017978643998504,0.049041192978621,-0.02972942776978],[0.063662707805634,0.015915859490633,-0.10299371927977]],[[-0.0057203941978514,0.1269022077322,-0.045253176242113],[-0.0066445893608034,0.084654100239277,-0.020710630342364],[-0.032510403543711,0.074655570089817,0.026172680780292]],[[0.13585631549358,-0.065716981887817,-0.049829829484224],[0.076175309717655,-0.023302601650357,0.043485395610332],[-0.077798530459404,-0.026740221306682,-0.091227255761623]],[[0.034876309335232,0.032683707773685,0.010895191691816],[-0.041838869452477,-0.14779303967953,0.053645968437195],[0.046732023358345,-0.041041664779186,0.015865867957473]],[[-0.031452376395464,0.01935151964426,-0.14190842211246],[0.056281991302967,0.023683350533247,-0.060314174741507],[-0.012039267458022,-0.10035318136215,-0.057314608246088]],[[0.051892653107643,-0.077055208384991,0.018955593928695],[-0.095498085021973,-0.018627224490047,-0.063515365123749],[0.060766570270061,-0.010539254173636,-0.007862513884902]],[[-0.037628941237926,-0.082595221698284,-0.0048004263080657],[0.097373567521572,0.039497133344412,0.077765762805939],[0.016920778900385,-0.044053681194782,-0.079474054276943]],[[-0.062394179403782,-0.015349832363427,0.070118755102158],[-0.0043540755286813,0.045603401958942,-0.061206698417664],[0.05745504796505,0.08097318559885,0.0083430232480168]],[[0.0063282991759479,0.047073971480131,0.027983855456114],[-0.025930024683475,0.018994972109795,0.030412701889873],[-0.03732518479228,0.053678777068853,0.055209569633007]],[[0.0044967150315642,-0.079188197851181,-0.075640842318535],[-0.023425415158272,-0.029435953125358,0.015108979307115],[0.046458829194307,-0.016881881281734,-0.0034903085324913]],[[0.061781246215105,-0.044407282024622,-0.067076608538628],[0.041860688477755,-0.061205312609673,-0.02058701403439],[0.047851376235485,-0.04972991719842,-0.1267883181572]],[[0.03682142868638,0.099547699093819,-0.070424415171146],[0.022121109068394,-0.10980653017759,-0.03545493260026],[-0.04004093632102,-0.097029991447926,-0.052680894732475]],[[-0.069595575332642,-0.0091186864301562,0.017044175416231],[0.012033494189382,-0.11875528842211,0.12978535890579],[0.032747730612755,-0.057011347264051,0.092160150408745]],[[-0.060730911791325,-0.053809877485037,0.03075035661459],[-0.047710705548525,-0.058991655707359,-0.093769192695618],[0.025264652445912,-0.1270005851984,-0.010202766396105]],[[0.04005379602313,-0.1369845867157,0.011921611614525],[-0.012160423211753,-0.077343642711639,0.061032220721245],[-0.067683286964893,-0.20072580873966,0.0035989265888929]],[[-0.093570739030838,-0.072376638650894,0.06128503382206],[0.015716092661023,-0.018108926713467,-0.036102809011936],[0.0015819263644516,-0.013261372223496,0.017022056505084]],[[-0.05663176625967,-0.10303331166506,-0.108598344028],[-0.040264595299959,0.047461494803429,-0.0001507958950242],[0.00047369778621942,0.090273886919022,-0.023953484371305]],[[-0.0033100552391261,0.043431658297777,0.0022771556396037],[0.065994516015053,0.028345579281449,0.08964803814888],[-8.8390035671182e-05,-0.061730865389109,-0.058707635849714]],[[0.038120545446873,0.025150125846267,-0.012718605808914],[-0.046605382114649,-0.021860785782337,0.028727177530527],[0.065773241221905,-0.012823226861656,-0.015142142772675]],[[-0.0016965979011729,-0.068529851734638,-0.025703575462103],[0.070895455777645,0.041985582560301,-0.12238281220198],[0.017958356067538,0.073058590292931,0.040754854679108]],[[0.10542101413012,0.012410758063197,0.05315350741148],[0.05049516633153,-0.001801478327252,0.045405294746161],[0.021796526387334,-0.058414038270712,-0.033831007778645]],[[-0.02576350979507,0.019590927287936,0.050689645111561],[-0.045007586479187,-0.058555122464895,0.025054346770048],[-0.11344718188047,-0.010721473954618,0.075411476194859]],[[0.049936320632696,0.10993868112564,-0.041460286825895],[0.083486281335354,-0.1421727836132,0.025070143863559],[-0.034958533942699,0.053861826658249,-0.10938950628042]],[[0.021390369161963,0.0081195728853345,-0.083222739398479],[-0.030987912788987,-0.11984081566334,-0.073175475001335],[-0.070649527013302,-0.034669443964958,0.0024465871974826]],[[-0.019693572074175,-0.020656244829297,-0.055453401058912],[0.00028297345852479,0.072269454598427,-0.043295815587044],[0.080949865281582,-0.013920981436968,-0.10718570649624]],[[-0.12212952971458,-0.031971700489521,-0.1223364546895],[-0.014957375824451,-0.023810433223844,-0.0076223257929087],[-0.024290025234222,0.05081644281745,0.082014471292496]],[[-0.019434753805399,-0.014838590286672,0.11706508696079],[-0.061374884098768,-0.08664682507515,0.0057486537843943],[-0.073794603347778,-0.028143899515271,0.10563652962446]],[[-0.052997052669525,-0.030975420027971,0.034650005400181],[-0.011566987261176,-0.033154007047415,-0.053703419864178],[-0.040362246334553,0.0070471065118909,-0.081869930028915]],[[0.023351779207587,0.0061093727126718,-0.015359645709395],[-0.078747071325779,0.00075973448110744,-0.011980446055532],[0.02852857299149,0.060314293950796,0.035063497722149]],[[-0.0031577178742737,-0.0843106508255,-0.13436049222946],[0.016982289031148,-0.032744131982327,-0.061566591262817],[-0.051383212208748,0.057732556015253,-0.045600239187479]],[[-0.13670501112938,0.03299729898572,0.027355579659343],[0.082302175462246,-0.03266541659832,-0.073599353432655],[-0.061813149601221,-0.027052769437432,-0.028401106595993]],[[0.02267299592495,-0.080738015472889,-0.039857737720013],[0.042744655162096,-0.059736002236605,-0.069773316383362],[0.004742787219584,-0.019369930028915,-0.090697608888149]],[[0.0066912402398884,0.042840082198381,-0.035392951220274],[0.12003197520971,-0.067067310214043,0.0016301792347804],[0.15479989349842,-0.021757766604424,0.056715987622738]],[[0.11115894466639,-0.00014813398593105,-0.010129529051483],[-0.011863929219544,-0.096302784979343,-0.043513935059309],[0.065346591174603,0.010850319638848,-0.024636838585138]],[[0.019355174154043,0.082608096301556,-0.050925306975842],[0.088439740240574,-0.072090424597263,0.032714165747166],[0.0033234048169106,0.015432628802955,0.10138013958931]],[[-0.052178353071213,-0.069166637957096,-0.01748569868505],[-0.013035628944635,0.086300753057003,-0.053672697395086],[0.065569430589676,0.15950758755207,-0.006956263910979]],[[0.042619738727808,-0.05094288662076,-0.028673840686679],[-0.020878694951534,-0.020620668306947,0.024737387895584],[-0.039675995707512,-0.0057904282584786,0.022588239982724]],[[-0.021210849285126,-0.054791964590549,0.12425308674574],[-0.060461588203907,-0.08968397974968,0.030677143484354],[0.033713441342115,0.012913032434881,-0.073844760656357]],[[-0.042271375656128,-0.016707891598344,0.013493252918124],[0.046749860048294,-0.063970722258091,-0.068212546408176],[0.014275797642767,-0.030660361051559,-0.075518593192101]],[[-0.042342163622379,0.048356428742409,-0.021749308332801],[0.056715495884418,0.040892995893955,-0.05772290751338],[0.0020243364851922,0.042726445943117,0.036083452403545]],[[-0.025474930182099,-0.059436619281769,-0.070597931742668],[0.090482316911221,0.022398307919502,-0.037779334932566],[0.055237576365471,0.019659010693431,-0.07189965993166]],[[-0.058454919606447,-0.14243224263191,0.028399165719748],[-0.092488467693329,-0.0066674230620265,0.042149394750595],[0.035887006670237,-0.064245909452438,0.027931723743677]],[[0.064367555081844,-0.048108492046595,-0.11852536350489],[-0.027296096086502,-0.08365810662508,-0.019141169264913],[0.090816490352154,0.02645605057478,0.079762406647205]],[[-0.047161608934402,-0.015585504472256,0.031930439174175],[-0.047605037689209,0.03775005415082,0.13583055138588],[0.084105849266052,-0.015832614153624,-0.16636714339256]],[[0.020530737936497,0.014458633959293,-0.051425244659185],[-0.055796530097723,0.035714190453291,-0.028080860152841],[-0.041325483471155,0.037187360227108,-0.021357107907534]],[[-0.008378230035305,0.0063990424387157,-0.066184006631374],[0.0098812822252512,0.060768861323595,-0.084861405193806],[0.094729773700237,-0.11499878019094,-0.060147237032652]],[[0.023993147537112,-0.058942347764969,0.042125441133976],[-0.044126257300377,0.0036259796470404,0.0067861783318222],[0.024862768128514,5.2786479500355e-05,0.089096777141094]],[[-0.043095357716084,-0.098085224628448,-0.1054301187396],[-0.069625772535801,-0.052831627428532,-0.043473742902279],[-0.011588812805712,-0.036053486168385,-0.020486261695623]],[[0.031137332320213,-0.023540936410427,0.011649606749415],[0.054779995232821,0.025078028440475,-0.031025346368551],[0.013460672460496,-0.0026034882757813,-0.011811432428658]],[[0.019145250320435,0.049613017588854,-0.044640742242336],[-0.077991388738155,0.067829981446266,0.068614974617958],[-0.096624001860619,0.016205722466111,0.083954192698002]],[[0.091579027473927,-0.0098631242290139,0.044176045805216],[0.013038551434875,-0.035801775753498,0.01470394525677],[0.1102231964469,-0.0065268934704363,0.034784648567438]],[[-0.062570855021477,0.045730575919151,-0.025367589667439],[0.11351478844881,-0.067618601024151,0.0097120385617018],[-0.082332208752632,-0.04863403365016,0.082430303096771]],[[0.071022912859917,-0.032715685665607,-0.088321916759014],[-0.056440878659487,-0.025216685608029,-0.053537964820862],[-0.024165688082576,-0.020744636654854,0.036938648670912]],[[-0.0584373511374,-0.00022976219770499,-0.030290722846985],[0.028635641559958,-0.049312062561512,-0.040431998670101],[-0.00051304569933563,-0.056871920824051,0.031079458072782]],[[-0.085169218480587,0.14657452702522,-0.006013672798872],[-0.084576807916164,0.10060968250036,-0.065504737198353],[0.085225775837898,-0.017026210203767,-0.023556262254715]],[[0.078717857599258,-0.004119236022234,0.012272300198674],[-0.013769082725048,-0.0011146445758641,-0.00023248707293533],[-0.083970874547958,-0.024763470515609,-0.096642799675465]],[[0.013702359981835,-0.0074641136452556,0.035068601369858],[-0.0050337458960712,-0.0086252186447382,0.078473709523678],[0.082212194800377,-0.014167523942888,-0.078429579734802]],[[0.082270629703999,0.014285313896835,-0.053827211260796],[-0.0533930324018,0.02459972910583,0.023674292489886],[0.023841099813581,-0.088563375174999,0.0092116370797157]],[[0.1411114782095,0.087624453008175,-0.023112509399652],[-0.034714546054602,-0.088258296251297,0.00010633213969413],[-0.097138844430447,-0.042760848999023,0.020492585375905]],[[0.02315079793334,0.014294705353677,0.043380748480558],[0.033652827143669,0.033805046230555,0.0086514158174396],[0.018767012283206,0.043679792433977,0.037473421543837]],[[-0.020003976300359,0.059266649186611,-0.0098363263532519],[0.06683661788702,-0.041157837957144,-0.0058041317388415],[0.011290253140032,0.0059916698373854,0.003684125142172]],[[-0.053951125591993,-0.065248936414719,0.030419755727053],[-0.01278386451304,-0.064584597945213,-0.037049606442451],[0.0032608322799206,-0.054876856505871,0.00049083243357018]],[[0.0044495463371277,-0.02881140075624,-0.024057283997536],[-0.064290717244148,-0.027870366349816,0.01175647135824],[-0.0057910145260394,-0.024230550974607,-0.087992966175079]],[[-0.078431077301502,-0.050160650163889,0.01127533428371],[-0.067491769790649,-0.099545232951641,0.032317657023668],[-0.018237836658955,-0.026125809177756,0.083285570144653]],[[0.0031737303361297,0.0094418842345476,0.028431063517928],[0.020155834034085,-0.022875702008605,0.036717180162668],[0.0019556705374271,0.06892029941082,0.040129251778126]],[[-0.015000968240201,-0.039500020444393,-0.045920014381409],[-0.0092420587316155,-0.018514866009355,-0.064228892326355],[-0.038898717612028,-0.065834052860737,0.054832234978676]],[[0.10227449983358,0.068335376679897,-0.0010735742980614],[-0.010270199738443,-0.032559774816036,0.022577350959182],[0.00085357844363898,0.048224192112684,-0.050876665860415]],[[0.094799757003784,0.013019178994,0.042092468589544],[-0.017228551208973,0.097356624901295,-0.086983785033226],[-0.09138759970665,0.044773694127798,-0.1154528260231]],[[0.012371115386486,0.031167451292276,-0.036785945296288],[-0.0076887276954949,0.02654042840004,-0.035387393087149],[-0.047171652317047,0.0027299844659865,0.092764191329479]],[[-0.15961715579033,0.025396587327123,0.018044266849756],[0.061096251010895,-0.084901750087738,-0.038432314991951],[0.058951999992132,-0.028954299166799,0.1158390045166]],[[-0.010388439521194,0.0013649101601914,0.19791376590729],[-0.033633772283792,0.087035432457924,0.087336868047714],[-0.060928951948881,-0.03821475058794,0.067492969334126]],[[0.028863979503512,-0.011323993094265,0.057213321328163],[-0.081328324973583,0.014165833592415,-0.041288547217846],[-0.055930953472853,-0.06652095913887,-0.0063098650425673]],[[0.0014258611481637,-0.002688241424039,-0.011106064543128],[-0.053986623883247,-0.060717694461346,-0.026802625507116],[-0.077447317540646,-0.097717478871346,-0.00613615475595]],[[0.016932850703597,0.027734834700823,0.087820209562778],[0.0066550117917359,-0.013695248402655,-0.021513288840652],[-0.071359433233738,-0.12524969875813,-0.054424073547125]],[[-0.012636865489185,0.054488461464643,-0.024421118199825],[0.029231496155262,0.09959751367569,-0.048068810254335],[-0.040326125919819,-0.063293732702732,-0.0088105127215385]],[[0.11130550503731,0.055307347327471,0.025205181911588],[-0.018276792019606,0.072068966925144,0.084160663187504],[-0.00011617362906691,-0.020606664940715,-0.055561352521181]],[[0.097013458609581,-0.00062023440841585,-0.048529133200645],[-0.0038939518854022,0.011799116618931,-0.010586069896817],[-0.02247797138989,0.076695486903191,0.043132465332747]],[[-0.0098571805283427,-0.047865405678749,0.073906362056732],[-0.042490657418966,0.00020212244999129,0.0014471194008365],[-0.04241931438446,-0.0087031442672014,0.018052611500025]],[[-0.010898380540311,0.021329378709197,0.017646249383688],[-0.077736407518387,-0.063219092786312,-0.12895420193672],[-0.0067523154430091,-0.03463939204812,-0.11357811838388]],[[-0.1343582123518,-0.10756582021713,0.0084977382794023],[-0.058722976595163,-0.048972465097904,0.094858236610889],[-0.068326108157635,0.052200544625521,0.10281639546156]],[[-0.095110207796097,-0.018857995048165,-0.031829319894314],[-0.042095135897398,0.00050267088226974,-0.020929297432303],[-0.0162691809237,0.089162908494473,-0.0092970291152596]],[[-0.056450691074133,0.018726002424955,0.032858144491911],[-0.01896995678544,-0.048930011689663,-0.061716727912426],[0.04323161765933,0.04151464253664,-0.087679699063301]],[[-0.090055882930756,-0.02467748709023,-0.003410023637116],[-0.12178830057383,0.032151632010937,-0.17050884664059],[-0.010429104790092,0.027898702770472,-0.068570487201214]],[[0.024018388241529,0.11012171208858,0.078058548271656],[-0.066641710698605,-0.018181649968028,-0.011456448584795],[0.0055479928851128,0.06730829924345,-0.048617083579302]],[[0.06816354393959,0.055516134947538,-0.0182587467134],[0.046161815524101,0.048630781471729,0.050343085080385],[0.068010099232197,0.088227510452271,0.14888335764408]],[[-0.13145489990711,0.0061190482228994,-0.044278670102358],[-0.073638536036015,-0.0031323658768088,-0.0091307647526264],[-0.013073829934001,-0.0547836124897,-0.089989170432091]],[[-0.043422501534224,0.10003230720758,0.070125468075275],[0.027014888823032,0.18519428372383,-0.047928232699633],[-0.011291646398604,-0.010217314586043,0.0001683943264652]],[[-0.0089503061026335,-0.031527485698462,0.044412694871426],[-0.024222444742918,-0.014648516662419,-0.0099291885271668],[0.038191616535187,0.021659277379513,-0.0095319515094161]],[[0.057750314474106,0.060251895338297,-0.041244242340326],[0.036071989685297,-0.068831719458103,-0.076477468013763],[-0.036804385483265,0.01802503503859,-0.043337125331163]],[[-0.076907299458981,-0.030108464881778,-0.04061284288764],[-0.051012028008699,-0.0056526195257902,0.12801930308342],[-0.036214545369148,-0.098320879042149,0.0059868535026908]],[[0.031801640987396,0.0049298126250505,-0.07541586458683],[0.093226946890354,0.06753695756197,-0.014710391871631],[0.080807559192181,-0.070353142917156,-0.089921489357948]],[[0.017323298379779,-0.054450668394566,-0.06208024546504],[-0.065786398947239,0.016882076859474,0.0006896075210534],[-0.032620683312416,-0.11249504983425,-0.018623759970069]],[[-0.027132466435432,0.071339793503284,-0.047903161495924],[0.031257398426533,0.06984119862318,0.13408666849136],[-0.065604232251644,-0.06520214676857,0.023146839812398]],[[-0.019846083596349,-0.0093494923785329,-0.022962354123592],[0.01269717887044,-0.0067613949067891,-0.040273666381836],[-0.008473189547658,0.041771840304136,0.022945428267121]],[[-0.069745279848576,-0.13090115785599,-0.030702915042639],[-0.00084565376164392,-0.045175734907389,0.030684346333146],[-0.075177758932114,-0.082556396722794,-0.026615876704454]],[[0.046850465238094,0.024315608665347,-0.082659751176834],[0.065094113349915,-0.036854479461908,-0.079340025782585],[0.065490633249283,-0.028208550065756,-0.036235120147467]],[[0.008159264922142,0.035585463047028,-0.18567715585232],[0.023168614134192,0.042624436318874,-0.057815443724394],[0.021757706999779,-0.031884294003248,-0.049060545861721]],[[0.021954949945211,0.019503360614181,-0.0066556897945702],[-0.010843186639249,-0.012970290146768,-0.14338542521],[0.033979974687099,-0.11229377985001,0.028720706701279]],[[0.055616572499275,0.10210187733173,-0.015019745565951],[0.0083548650145531,0.016916627064347,0.067989476025105],[0.053106758743525,-0.075831428170204,-0.057565849274397]],[[-0.027831876650453,-0.072274342179298,-0.036390587687492],[0.0077403238974512,0.021053962409496,-0.0035818726755679],[0.042829267680645,-0.027275031432509,-0.047003645449877]],[[-0.033706825226545,0.081212013959885,0.0084705576300621],[-0.052504818886518,-0.036751911044121,-0.00064354832284153],[0.082442410290241,-0.074903085827827,-0.050910152494907]],[[0.10293099284172,0.0097814872860909,0.070587895810604],[0.051401704549789,-0.023978598415852,-0.074872568249702],[-0.0022847808431834,-0.049625210464001,0.021432945504785]],[[0.049433670938015,-0.069561168551445,-0.068064883351326],[0.0042680464684963,-0.026131311431527,-0.04341684654355],[0.047328252345324,0.054577115923166,-0.088694103062153]],[[0.10663784295321,-0.029881281778216,-0.041252676397562],[0.079346545040607,0.028213430196047,-0.0045608449727297],[-0.02218522131443,-0.071268610656261,0.011720755137503]],[[-0.05577414855361,0.026424499228597,-0.031779196113348],[0.023886684328318,0.013423258438706,-0.041690602898598],[-0.06976605951786,-0.018079007044435,-0.041921090334654]],[[0.0099223861470819,0.08500874787569,0.048182267695665],[-0.0024223295040429,0.086295567452908,-0.0075636012479663],[0.027953300625086,-0.046226531267166,-0.056555166840553]],[[0.0056719221174717,-0.039558727294207,0.0055818385444582],[-0.055694323033094,-0.015468463301659,0.06267873197794],[-0.025382477790117,0.14826618134975,-0.031302928924561]],[[-0.04711202904582,-0.1143686696887,0.011734200641513],[0.040971912443638,-0.14821287989616,0.028207253664732],[0.0027786940336227,-0.027793558314443,0.071868367493153]],[[-0.050619687885046,0.11281832307577,0.020469035953283],[-0.041162952780724,-0.028876284137368,0.016233181580901],[0.011625290848315,-0.0063342987559736,-0.047020591795444]],[[0.0091571947559714,0.022685371339321,0.0032679049763829],[0.015700256451964,0.02060654759407,0.084248475730419],[-0.016669292002916,0.032054789364338,0.022033227607608]],[[-0.061699628829956,0.032148081809282,0.038236808031797],[-0.078078292310238,-0.032638944685459,0.0090937661007047],[0.031429503113031,-0.081649497151375,0.02480979450047]],[[-0.059001058340073,-0.10144598782063,-0.085715636610985],[-0.035841181874275,0.086668282747269,-0.09707172960043],[-0.0089453998953104,-0.087187267839909,-0.13861073553562]],[[0.062366206198931,-0.047594897449017,0.0044458443298936],[-0.089681230485439,-0.0038806018419564,0.062094189226627],[-0.041016139090061,-0.078475594520569,-0.0057167271152139]],[[0.045656491070986,0.069406487047672,0.060666874051094],[-0.034185007214546,-0.1301824003458,-0.08829765021801],[-0.0182368401438,-0.036814369261265,-0.049274940043688]],[[-0.031690988689661,0.0082642612978816,-0.11105346679688],[-0.031516101211309,-0.11557519435883,0.01166969165206],[0.0049942685291171,-0.0032146463636309,0.098209552466869]],[[-0.077914014458656,0.075826339423656,-0.087449379265308],[-0.033848240971565,-0.032823991030455,-0.09266410022974],[0.083600975573063,0.024148792028427,-0.013050589710474]],[[0.021800557151437,-0.0067396746017039,0.086899824440479],[0.0045210742391646,0.030861111357808,0.048268031328917],[0.010193483904004,0.15054522454739,0.017722329124808]],[[0.027421966195107,-0.028563724830747,-0.12475774437189],[-0.01656830497086,-0.062796205282211,-0.018167350441217],[-0.022209141403437,-0.0043684118427336,-0.0038088869769126]],[[-0.054963067173958,0.0011685906210914,-0.077586092054844],[0.051523186266422,-0.0081749986857176,-0.014201325364411],[0.00028729211771861,-0.12127701938152,-0.0056875082664192]],[[-0.018063228577375,0.0225745793432,-0.069882400333881],[0.019113421440125,0.066227436065674,-0.014879961498082],[0.012685754336417,-0.051903124898672,0.035670507699251]],[[-0.055229287594557,0.119419015944,0.12107256799936],[0.022673854604363,0.0044585685245693,-0.0071396534331143],[-0.065048694610596,0.030436474829912,-0.032712128013372]],[[-0.076399572193623,0.0027650399133563,-0.019586930051446],[-0.022436399012804,-0.0060654301196337,-0.04289036989212],[-0.0015576344449073,-0.014559114351869,0.086075872182846]],[[-0.040309172123671,-0.043145380914211,-0.026112496852875],[-0.044862754642963,0.0036960488650948,-0.06412061303854],[-0.038062520325184,0.050678871572018,0.029907142743468]]],[[[-0.15111082792282,0.045282032340765,0.16854618489742],[0.1172326952219,0.025795139372349,0.11016274243593],[0.13175556063652,0.13031284511089,0.090203069150448]],[[-0.045035097748041,-0.050808541476727,-0.034805785864592],[0.054599948227406,0.011438431218266,-0.069173999130726],[0.031497895717621,0.037988811731339,-0.062412727624178]],[[0.063433930277824,0.0036470845807344,0.020840045064688],[0.23469686508179,0.024838307872415,-0.015467681922019],[0.11593180149794,0.042273171246052,0.043449491262436]],[[-0.092421911656857,0.092137776315212,0.045098975300789],[0.091492854058743,0.1473023891449,0.006710956338793],[-0.073488779366016,-0.15225699543953,0.17077811062336]],[[0.011515120044351,0.17095202207565,0.072993434965611],[0.0086559625342488,0.029576798900962,0.069679126143456],[0.086716040968895,0.08549539744854,-0.047239042818546]],[[-0.047166604548693,0.05116256698966,-0.002502225805074],[0.00091186352074146,-0.0028452782426029,-0.05672400072217],[0.033337477594614,-0.14634746313095,-0.018766077235341]],[[-0.07073500007391,0.034880764782429,0.050406809896231],[-0.19747552275658,0.038799338042736,-0.059537820518017],[0.092850536108017,-0.094457685947418,-0.057785976678133]],[[-0.049600850790739,-0.044165071099997,0.17220628261566],[-0.0061742966063321,0.11755913496017,0.091323174536228],[0.15676552057266,0.17288419604301,0.066411726176739]],[[-0.05167543888092,-0.014136116020381,0.1038571819663],[0.0028673689812422,-0.050840109586716,-0.035835545510054],[0.03070499189198,-0.053103931248188,0.021191468462348]],[[0.057963848114014,-0.064472414553165,-0.21671076118946],[0.0096124261617661,0.042806077748537,-0.1530958712101],[0.021985849365592,0.025118617340922,-0.22829413414001]],[[0.075414523482323,-0.041028387844563,-0.14827090501785],[0.013056033290923,-0.081694737076759,-0.037858314812183],[-0.081517398357391,-0.052683688700199,-0.098523043096066]],[[-0.063363507390022,-0.14866699278355,-0.0084363427013159],[0.13717287778854,0.16363069415092,0.20753239095211],[-0.013406244106591,0.0036561049055308,0.066086679697037]],[[0.1115216165781,-0.046689476817846,0.034759037196636],[0.027686066925526,-0.11723925173283,-0.041503701359034],[-0.0132937701419,0.0078147640451789,-0.059631798416376]],[[-0.078755974769592,0.027035064995289,-0.12190959602594],[-0.11012219637632,-0.059247769415379,-0.072290167212486],[-0.042982034385204,0.021529983729124,-0.01084653660655]],[[-0.057475212961435,0.0087115792557597,0.061105892062187],[-0.10668163746595,-0.089212290942669,0.055584318935871],[-0.14050929248333,0.012389114126563,0.13555045425892]],[[0.17671675980091,0.021107779815793,-0.12276746332645],[-0.037820532917976,0.055090356618166,-0.10491519421339],[-0.055461172014475,-0.054230730980635,0.14326897263527]],[[0.040427584201097,0.037198558449745,0.088995613157749],[-0.044241439551115,0.11027014255524,0.040884729474783],[-0.13974437117577,0.01085955183953,-0.089001588523388]],[[-0.12069225311279,0.081943541765213,0.091155596077442],[-0.094781421124935,0.16848801076412,0.14720785617828],[0.027589531615376,0.13142871856689,-0.040402099490166]],[[-0.060403596609831,0.090935729444027,0.0060302522033453],[-0.031789977103472,-0.07695734500885,0.0058416691608727],[0.074988670647144,-0.19650404155254,0.039577912539244]],[[0.02369362488389,0.088400550186634,-0.19419105350971],[0.09755926579237,0.033611189574003,-0.15633592009544],[0.012224201112986,-0.042268119752407,-0.0287767034024]],[[-0.074208229780197,-0.022461613640189,0.047496363520622],[-0.0045122890733182,-0.083842098712921,0.023485148325562],[-0.02447353862226,-0.10696355253458,-0.0090348348021507]],[[0.11716041713953,-0.040179152041674,0.0054403245449066],[0.015246287919581,-0.00089665676932782,-0.073829285800457],[0.14295953512192,-0.13364078104496,-0.018611634150147]],[[-0.0012736263452098,0.12267003208399,0.052442383021116],[-0.09213911741972,-0.063083074986935,0.089365139603615],[0.055440120398998,-0.18991392850876,-0.076099194586277]],[[-0.084859572350979,0.091477058827877,0.031525600701571],[-0.0074058384634554,-0.086247973144054,0.080853931605816],[-0.054523829370737,0.029867811128497,0.045361444354057]],[[0.04603473469615,-0.20555032789707,0.054433938115835],[-0.018101800233126,-0.11894694715738,0.03639929741621],[-0.0093376282602549,-0.0065780146978796,0.014493689872324]],[[0.17119413614273,-0.00048664142377675,0.043713692575693],[0.059931613504887,0.18116638064384,0.080639950931072],[0.090314105153084,0.064179576933384,0.15504536032677]],[[-0.093962296843529,-0.0085510052740574,-0.016833851113915],[-0.045772347599268,0.098632007837296,0.036273784935474],[-0.054025143384933,0.073806956410408,-0.061453748494387]],[[0.022250210866332,-0.06894439458847,0.14735308289528],[0.12763659656048,-0.0045597869902849,-0.11628092825413],[0.1294729411602,0.026036456227303,-0.055511180311441]],[[-0.10795164853334,-0.060989286750555,0.024528795853257],[-0.11330877244473,0.02473109215498,-0.095548763871193],[-0.010667161084712,-0.036514334380627,0.019655948504806]],[[-0.033303655683994,-0.097797572612762,0.050009962171316],[-0.013929994776845,-0.036149971187115,-0.076774753630161],[0.013079807162285,0.040994100272655,-0.00066996860550717]],[[-0.013583493418992,0.042549807578325,0.049438282847404],[-0.069398239254951,-0.086388938128948,0.018919117748737],[0.0091195786371827,-0.049641564488411,0.056084699928761]],[[0.10765177756548,-0.0097706858068705,-0.05111725628376],[-0.029957311227918,-0.0040066540241241,0.12977078557014],[0.015169781632721,0.031650338321924,0.038938827812672]],[[-0.083095371723175,0.028211921453476,0.091799326241016],[0.083158582448959,0.036189541220665,0.049167551100254],[0.00046947604278103,-0.014367771334946,0.034991819411516]],[[-0.033587951213121,0.030609333887696,0.048794750124216],[0.049517575651407,-0.0019256955711171,-0.010972914285958],[0.091377817094326,-0.12549203634262,-0.014367014169693]],[[0.010023555718362,-0.021044539287686,-0.083785459399223],[-0.069342687726021,-0.086169466376305,-0.062845312058926],[-0.012626585550606,-0.074285678565502,-0.15758612751961]],[[0.025319196283817,0.019414573907852,-0.011955031193793],[-0.20475041866302,0.081813335418701,0.027270969003439],[-0.060409337282181,0.058564126491547,0.053499352186918]],[[-0.051910031586885,-0.057895116508007,0.028759397566319],[-0.00032031437149271,0.13525228202343,-0.11190609633923],[0.0087498156353831,-0.016126049682498,-0.01509618666023]],[[0.037136014550924,-0.022360341623425,0.086678333580494],[0.075225837528706,-0.012993693351746,-0.14941562712193],[-0.05652978643775,-0.056298371404409,-0.2748983502388]],[[-0.023419314995408,0.02093418687582,0.036892417818308],[0.001608218299225,-0.080039575695992,-0.046447530388832],[-0.17603208124638,0.055302418768406,0.06240376830101]],[[0.048234134912491,-0.065221399068832,0.026596644893289],[-0.054279077798128,0.08473938703537,0.071479983627796],[-0.12151402235031,0.13732369244099,0.1007451787591]],[[-0.068739980459213,-0.023931723088026,0.010227862745523],[0.0061917705461383,-0.060380227863789,-0.10732877254486],[0.076665014028549,0.088119186460972,-0.053443737328053]],[[0.056172549724579,0.096508793532848,-0.12048686295748],[0.036901827901602,0.01466454192996,-0.15778535604477],[0.071411497890949,-0.034835025668144,0.077390410006046]],[[-0.044062085449696,0.070295892655849,-0.072190038859844],[-0.026069825515151,-0.051134254783392,0.051613502204418],[-0.024853745475411,0.14134074747562,-0.043060153722763]],[[-0.093815580010414,0.0031930874101818,-0.0042583262547851],[-0.0079852109774947,0.027302442118526,0.056798215955496],[0.15350748598576,-0.060428857803345,-0.1616545766592]],[[-0.076166488230228,-0.060248084366322,-0.011194048449397],[-0.072895474731922,-0.097689159214497,0.084191843867302],[0.038040924817324,0.044342909008265,0.11026052385569]],[[-0.07786899805069,-0.047233082354069,-0.054234229028225],[0.039487835019827,0.024309484288096,-0.01456359680742],[-0.037321746349335,0.0015387673629448,-0.087522141635418]],[[-0.019164046272635,-0.14180916547775,0.10763730108738],[-0.03092747181654,-0.094348952174187,-0.0046333079226315],[0.099941968917847,-0.069188691675663,-0.074241779744625]],[[0.035476617515087,0.069622963666916,0.073234580457211],[0.012719073332846,-0.04013154655695,0.0085881315171719],[0.087202578783035,-0.25516587495804,-0.11004752665758]],[[-0.19675858318806,0.046609967947006,0.11574859917164],[-0.20897160470486,0.044898707419634,-0.13545368611813],[-0.028974147513509,-0.08317892998457,-0.040123324841261]],[[0.03294962644577,-0.0039362222887576,0.0037177363410592],[-0.038815911859274,0.045560911297798,-0.004886454436928],[-0.039904057979584,-0.12384239584208,-0.059814512729645]],[[-0.055661112070084,0.1045540496707,0.01413518935442],[0.040712974965572,-0.035710077732801,-0.14210444688797],[-0.019041394814849,-0.18957091867924,-0.24524450302124]],[[0.0060505568981171,0.06406294554472,0.017117159441113],[-0.16054946184158,-0.14856323599815,-0.043223764747381],[0.015709662809968,-0.10043130815029,0.080415606498718]],[[-0.023052113130689,-0.036430429667234,0.043447807431221],[-0.031495243310928,-0.023225026205182,-0.021041583269835],[0.028682136908174,0.10824634134769,-0.081136398017406]],[[-0.052559725940228,0.086086139082909,-0.05186066403985],[0.0038614384829998,0.059082046151161,-0.046285476535559],[-0.033174965530634,-0.053520292043686,-0.017374204471707]],[[0.045089196413755,0.018292704597116,0.1981984525919],[-0.12453034520149,-0.021821996197104,0.12940396368504],[-0.12599696218967,-0.11582470685244,-0.21381928026676]],[[0.03400507569313,-0.080591686069965,-0.082311049103737],[0.11216732859612,0.036819264292717,0.018260594457388],[0.065467096865177,0.13929262757301,-0.020713118836284]],[[0.02069192007184,-0.032948337495327,-0.16952760517597],[0.0031724239233881,0.10871966928244,0.069658704102039],[0.050163701176643,0.14048555493355,-0.041936665773392]],[[0.013747560791671,-0.062041908502579,0.16473969817162],[-0.12281215935946,-0.10893140733242,0.048147406429052],[-0.099711231887341,-0.092017769813538,0.0054159262217581]],[[0.0086507564410567,0.0057176756672561,-0.070548415184021],[0.02798236720264,-0.016596825793386,-0.16065938770771],[0.019453179091215,-0.2450352460146,-0.21021647751331]],[[0.0061684120446444,-0.043422408401966,-0.089854054152966],[0.04124678298831,0.052128966897726,0.029207387939095],[-0.081399172544479,-0.046984560787678,0.087726682424545]],[[-0.086150892078876,-0.0020873483736068,-0.051374685019255],[-0.1360247284174,-0.020336121320724,0.0022262472193688],[0.014560790732503,0.063708908855915,0.073553316295147]],[[-0.057872887700796,-0.0561284981668,-0.023204449564219],[-0.13446393609047,-0.12376388907433,-0.035079196095467],[0.0042923269793391,-0.12116487324238,-0.078671790659428]],[[0.031875390559435,-0.14598509669304,0.056748401373625],[0.065967716276646,-0.12065587937832,0.072526149451733],[0.091405563056469,0.021245891228318,0.19145500659943]],[[0.0080287484452128,0.071406722068787,0.14158882200718],[-0.045995999127626,0.070626027882099,0.24843323230743],[-0.017863595858216,0.015870273113251,0.15368157625198]],[[0.12028460204601,0.12757427990437,-0.16006916761398],[-0.024673886597157,0.024798832833767,-0.039728872478008],[0.035336427390575,0.055772256106138,0.045173246413469]],[[-0.041813302785158,0.12566161155701,-0.046856045722961],[0.086422935128212,0.12826393544674,0.037479016929865],[0.037887036800385,0.046431232243776,-0.013879033736885]],[[-0.038867462426424,-0.010826184414327,-0.025470538064837],[0.0030455456580967,-0.048477780073881,-0.021956792101264],[-0.060462865978479,0.044072926044464,-0.075254261493683]],[[0.15738002955914,0.19864219427109,0.070653893053532],[0.080430507659912,0.018718795850873,0.051468089222908],[0.12863899767399,0.010212198831141,0.10423668473959]],[[0.013216529041529,-0.05969950184226,0.10535215586424],[-0.033785346895456,0.034309554845095,0.074983514845371],[0.13531130552292,0.071495212614536,-0.12411820143461]],[[0.11218331754208,-0.097624525427818,0.0032074467744678],[0.085691228508949,0.089689634740353,-0.022899381816387],[0.031459826976061,0.017577975988388,0.11606086790562]],[[-0.08239109814167,-0.023066449910402,-0.066589683294296],[-0.084649361670017,-0.011360595934093,0.16215546429157],[-0.054851252585649,0.17561180889606,0.32432961463928]],[[0.076419144868851,-0.037956189364195,0.010213632136583],[0.10440514981747,-0.03521791100502,-0.15998414158821],[0.07660036534071,-0.0021078097634017,0.00036150575033389]],[[-0.074553847312927,-0.030421858653426,-0.12610317766666],[-0.06696567684412,-0.077274933457375,-0.058742497116327],[-0.049370680004358,-0.059296049177647,-0.0703429505229]],[[-0.046828035265207,0.025622563436627,0.0095784971490502],[0.10576828569174,0.081157170236111,0.09276806563139],[0.020888743922114,-0.068648889660835,-0.031052425503731]],[[0.082128874957561,-0.048027638345957,-0.16326121985912],[-0.038923341780901,0.10683900862932,-0.076754383742809],[0.039570085704327,0.11017356812954,0.20870658755302]],[[-0.026198890060186,0.081646263599396,-0.0053417515009642],[-0.0024689056444913,0.098865337669849,-0.043354019522667],[0.03574787825346,-0.032698277384043,-0.08069159835577]],[[-0.072733469307423,0.10753356665373,0.020521961152554],[0.056216698139906,-0.12352687120438,0.06683524698019],[0.060775574296713,-0.02185875736177,-0.16311816871166]],[[0.067678086459637,-0.020583441480994,-0.012829839251935],[-0.1306591629982,-0.06793636828661,-0.17443969845772],[-0.23147967457771,0.12754186987877,-0.07965874671936]],[[-0.04355176538229,-0.081360690295696,0.034238554537296],[0.0084406509995461,0.041755776852369,-0.1791367828846],[0.089686691761017,0.044671729207039,-0.098426558077335]],[[0.08083338290453,-0.10161260515451,-0.026030717417598],[-0.2766780257225,0.059441510587931,-0.26468175649643],[-0.020065074786544,0.17837576568127,0.00088818249059841]],[[-0.0064162365160882,0.10585623979568,0.019765051081777],[-0.012368644587696,0.086848475039005,-0.033221136778593],[-0.08003906160593,-0.16538746654987,-0.090284153819084]],[[0.11427804082632,-0.06222964450717,-0.073231317102909],[0.047637015581131,0.017810210585594,-0.028037494048476],[0.075671724975109,0.25835698843002,-0.0073474245145917]],[[0.1000811830163,-0.04440750926733,0.16050326824188],[-0.032642368227243,0.035219352692366,-0.0011491253972054],[0.18100124597549,0.043204184621572,0.044597517699003]],[[-0.031667914241552,0.029048230499029,-0.077267698943615],[0.078671641647816,0.039608314633369,-0.12339888513088],[0.063039027154446,-0.079044386744499,-0.087291218340397]],[[0.0047110905870795,-0.1072052270174,0.040998939424753],[-0.090260781347752,-0.082907170057297,0.12607336044312],[-0.025116439908743,-0.15839725732803,0.087231025099754]],[[0.17667047679424,-0.14167413115501,-0.13320808112621],[0.0641138702631,0.14854335784912,-0.02223689481616],[0.040820505470037,0.016973530873656,0.042890660464764]],[[0.049331501126289,0.0034640619996935,0.061266612261534],[-0.00018433650257066,0.048872951418161,0.0012468425557017],[-0.098209090530872,0.036431681364775,0.011603282764554]],[[0.076571561396122,0.020601103082299,-0.15676894783974],[0.048394944518805,0.096454448997974,-0.03998776897788],[-0.013376483693719,-0.038214862346649,0.056390982121229]],[[-0.13959287106991,-0.0037254723720253,-0.041175622493029],[0.047953430563211,0.12727230787277,0.03188593685627],[0.062135748565197,0.03799807280302,-0.085421673953533]],[[0.13337975740433,-0.040431436151266,-0.025169154629111],[-0.060915317386389,-0.095491498708725,0.066365323960781],[-0.047531042248011,-0.034640166908503,0.068431697785854]],[[-0.080367363989353,-0.0046690260060132,0.064245752990246],[-0.055466361343861,-0.014830347150564,0.036356009542942],[0.17204955220222,0.19916258752346,0.13061451911926]],[[-0.0035682506859303,0.049720481038094,0.02493411116302],[-0.038153674453497,-0.060498457401991,0.097052931785583],[0.094598993659019,0.061899069696665,0.07419741153717]],[[0.036003246903419,0.0071813417598605,0.17101284861565],[-0.035950947552919,-0.089782357215881,0.0083669712767005],[0.012278405018151,-0.11665320396423,-0.033649150282145]],[[0.033150233328342,-0.23998036980629,-0.060427155345678],[-0.22411680221558,-0.026093078777194,0.086005583405495],[-0.10610499233007,-0.098105758428574,-0.042989742010832]],[[-0.0016232362249866,0.038719512522221,0.073936589062214],[0.017612194642425,0.040932025760412,-0.018842427060008],[0.11257814615965,0.052620366215706,-0.03937591984868]],[[0.080381527543068,-0.17077521979809,0.0075934827327728],[0.096085771918297,0.02319660782814,-0.0066069466993213],[0.00041561835678294,0.063366338610649,0.1338281929493]],[[0.010371377691627,0.01107345148921,0.13250122964382],[-0.069646425545216,-0.032673817127943,0.17742362618446],[0.047793444246054,-0.00076745927799493,-0.15288807451725]],[[-0.10581781715155,0.054782394319773,0.18643875420094],[-0.085040882229805,0.023060772567987,0.053970728069544],[0.10814587026834,-0.047253325581551,-0.15760526061058]],[[0.072478458285332,0.00064177979947999,0.020098477602005],[0.015210365876555,0.038358882069588,0.068039506673813],[0.13724462687969,0.049971874803305,-0.021926809102297]],[[0.11735099554062,0.031357765197754,0.094156049191952],[0.047955207526684,0.067452035844326,0.076697446405888],[-0.14095263183117,-0.15800556540489,-0.0018112324178219]],[[0.055176321417093,-0.053504467010498,-0.086678683757782],[0.063049964606762,-0.26930338144302,-0.12416987121105],[-0.14543358981609,-0.22731301188469,0.053441546857357]],[[-0.0090594943612814,-0.094067312777042,0.0670126080513],[0.15195892751217,-0.097783803939819,0.11485780775547],[0.17657840251923,0.036594491451979,0.1212647408247]],[[-0.056585773825645,-0.019480492919683,-0.074653550982475],[0.098953820765018,-0.0013669913168997,-0.064594864845276],[0.018562588840723,0.061885487288237,-0.22938071191311]],[[0.16015507280827,-0.056864906102419,-0.087668992578983],[0.14979170262814,-0.13338093459606,-0.029609484598041],[0.0089849522337317,0.077587574720383,0.015573589131236]],[[-0.022156689316034,0.027010798454285,-0.064098693430424],[0.01659044995904,0.067039787769318,-0.15532252192497],[0.013715336099267,0.10953490436077,-0.087967254221439]],[[-0.053405914455652,0.11921997368336,-0.046854972839355],[0.045865576714277,-0.013150494545698,-0.119205750525],[-0.024874333292246,-0.043936714529991,0.075430706143379]],[[-0.027324492111802,0.073250576853752,-0.010927572846413],[0.020629860460758,-0.004931359551847,0.0022091884166002],[0.16960407793522,0.15320754051208,0.097782447934151]],[[-0.19064672291279,-0.047295123338699,0.0033169039525092],[-0.025776566937566,0.0092170536518097,0.083014093339443],[0.095889940857887,-0.16008052229881,-0.048715341836214]],[[0.02506747841835,0.16382579505444,-0.08440189063549],[-0.034990459680557,0.18237383663654,0.13219384849072],[-0.0018515849951655,0.076762162148952,0.2754193842411]],[[0.088773727416992,-0.16768155992031,0.051066558808088],[0.039714783430099,-0.12832261621952,0.11423389613628],[0.10987461358309,-0.051046743988991,0.0011248579248786]],[[0.048802681267262,0.099322207272053,-0.085552357137203],[0.028199402615428,-0.058819141238928,-0.025252064689994],[-0.034290727227926,-0.098514564335346,0.081717908382416]],[[-0.01186952739954,0.2464891076088,-0.053948607295752],[0.081729710102081,0.073698252439499,-0.049579981714487],[0.038956474512815,0.10646933317184,-0.15584369003773]],[[-0.029196999967098,0.074322804808617,0.062276393175125],[-0.073495075106621,0.23187302052975,-0.088659726083279],[-0.091606102883816,0.035465650260448,-0.19936473667622]],[[0.11002629250288,0.032899543642998,0.028469361364841],[-0.023101136088371,-0.034658081829548,-0.0083952266722918],[0.041900772601366,-0.13998387753963,0.042286112904549]],[[-0.063249759376049,0.072370871901512,0.11584767699242],[-0.034607294946909,0.091335020959377,-0.074204623699188],[0.045826710760593,0.043710242956877,-0.060547292232513]],[[0.082466371357441,0.079152166843414,0.0068526049144566],[0.20653750002384,0.13958004117012,-0.078578323125839],[-0.11524090915918,0.12208030372858,-0.0094671985134482]],[[-0.027629183605313,0.076274305582047,-0.001256933202967],[0.059438094496727,0.051214046776295,-0.047378562390804],[0.047662556171417,-0.11498260498047,0.047460272908211]],[[0.093031235039234,0.014251460321248,0.083600886166096],[0.10385566949844,0.13048353791237,-0.0017635704716668],[0.094641707837582,0.0085540292784572,0.1358916759491]],[[0.04365848004818,-0.21360886096954,0.0041035125032067],[-0.017153054475784,-0.11767095327377,0.081221230328083],[0.13894920051098,-0.048054654151201,0.01629338786006]],[[0.19547255337238,-0.02680517360568,-0.071670912206173],[-0.19324116408825,-0.09868698567152,0.12642367184162],[0.12427432835102,0.19664065539837,0.083594873547554]],[[0.030609408393502,0.070515960454941,-0.0056639183312654],[0.1265250146389,-0.13354381918907,-0.096218541264534],[-0.037187110632658,-0.084776662290096,0.0067003541626036]],[[0.1004668623209,0.056044187396765,-0.047317527234554],[0.0010390708921477,0.014712694101036,-0.17812845110893],[-0.015340765938163,-0.024436727166176,-0.22462595999241]],[[-0.10267993807793,-0.028257388621569,-0.2023578286171],[-0.063759967684746,-0.12596936523914,-0.061658702790737],[-0.0097696976736188,0.041769616305828,-0.091296344995499]],[[-0.00026618360425346,0.039904810488224,0.29517567157745],[0.037752069532871,-0.0042001926340163,0.16065628826618],[0.082784920930862,0.074221603572369,-0.10103696584702]],[[0.077262625098228,-0.066853880882263,0.052032593637705],[0.11740173399448,-0.028660323470831,0.056768644601107],[-0.048388827592134,-0.0062326015904546,0.078527122735977]],[[-0.016444699838758,0.0075602713041008,-0.13465563952923],[-0.063018590211868,-0.022119533270597,-0.1240738928318],[0.019748480990529,-0.17842800915241,0.040071327239275]],[[0.037618439644575,-0.028315652161837,0.066816583275795],[-0.047024592757225,-0.10626824200153,0.083946958184242],[-0.0040293256752193,-0.038548164069653,0.01694100536406]],[[-0.14468911290169,-0.042388994246721,0.0062289298512042],[0.10627999901772,0.015934091061354,-0.055658750236034],[0.075143575668335,-0.0086552565917373,-0.057153519243002]]],[[[0.10427587479353,0.072962015867233,0.073833160102367],[-0.018124461174011,-0.084057129919529,-0.08915102481842],[-0.069129787385464,0.044584028422832,0.033558405935764]],[[-0.14667794108391,-0.15005770325661,0.025145247578621],[0.064958371222019,-0.022150302305818,0.018055476248264],[0.021308165043592,-0.0023087833542377,-0.055955231189728]],[[0.22984649240971,0.092253163456917,0.17388479411602],[-0.05956557393074,-0.033900640904903,-0.072624042630196],[0.019462445750833,0.0012901746667922,0.14395540952682]],[[-0.0083674965426326,0.10653242468834,-0.0084169246256351],[-0.21008843183517,-0.12342766672373,-0.15637685358524],[0.010840550996363,-0.055708691477776,0.03488052636385]],[[0.0057249758392572,0.11141848564148,0.033376503735781],[0.03461292386055,-0.018677446991205,-0.048472568392754],[0.11204273998737,0.04936308413744,0.15861997008324]],[[0.009773681871593,0.090766608715057,-0.0083486987277865],[0.040604505687952,-0.11428865790367,-0.092541858553886],[-0.070929728448391,-0.092820301651955,0.0080192657187581]],[[0.058194756507874,-0.052698217332363,-0.022847754880786],[0.05015629902482,-0.0023913315963,0.010265158489347],[0.13380743563175,0.059347793459892,0.16729590296745]],[[0.051847711205482,0.1085157468915,0.040434956550598],[-0.075196012854576,0.072013169527054,0.086327478289604],[0.053534049540758,0.019380090758204,0.013289659284055]],[[-0.15709240734577,-0.11865694075823,0.0055959010496736],[-0.0015311203896999,-0.10884698480368,-0.068881146609783],[-0.04195748642087,0.024482810869813,-0.11460646241903]],[[0.041303485631943,-0.088801600039005,0.1109332293272],[-0.084132149815559,-0.093126483261585,-0.065037935972214],[0.026716934517026,-0.10292667895555,0.0024795529898256]],[[0.10397195070982,0.044860474765301,-0.0036181989125907],[-0.09216845035553,0.09662040323019,0.15547026693821],[0.035786032676697,0.057102374732494,-0.15806494653225]],[[-0.084085777401924,0.0023052336182445,0.052341483533382],[-0.026456408202648,0.057146158069372,0.084500521421432],[0.031428799033165,0.11682672053576,0.11082616448402]],[[0.16417135298252,-0.038544438779354,0.06903812289238],[-0.026976093649864,-0.11275213956833,-0.12146750092506],[0.064131021499634,-0.0027318927459419,-0.021326147019863]],[[-0.15401582419872,-0.13668854534626,-0.11446596682072],[-0.0033995360136032,-0.02556124702096,-0.1280684620142],[-0.021361449733377,-0.23374716937542,-0.10832661390305]],[[-0.044065527617931,-0.013787693344057,-0.050573378801346],[-0.060545414686203,0.066747702658176,0.13847208023071],[0.032332200556993,0.084250383079052,0.058836411684752]],[[0.073051728308201,-0.027707576751709,-0.050808612257242],[-0.11669871211052,0.03857621923089,-0.036407630890608],[-0.13320343196392,-0.036277156323195,-0.11323793977499]],[[-0.11647343635559,-0.086097225546837,0.0039572189562023],[-0.023181768134236,-0.13006311655045,-0.19285003840923],[-0.090349175035954,-0.084693595767021,-0.04487781971693]],[[0.015788858756423,0.075680091977119,0.1113221347332],[-0.083468608558178,-0.10374768078327,-0.088744662702084],[0.057566870003939,-0.034496407955885,0.1287622153759]],[[-0.028415281325579,0.010311542078853,0.013638775795698],[-0.11420852690935,-0.069642037153244,-0.19098281860352],[-0.027943635359406,-0.080465659499168,-0.076502569019794]],[[0.13049620389938,-0.03064058534801,0.10253693163395],[-0.014056889340281,0.057717014104128,-0.065478540956974],[0.055580087006092,0.028228498995304,0.090765401721001]],[[-0.11453355848789,-0.054404720664024,-0.080040536820889],[0.09985227137804,-0.059932127594948,-0.09602066129446],[0.051644772291183,0.046083554625511,-0.065627135336399]],[[0.056764170527458,-0.050968162715435,-0.028941314667463],[-0.03173803165555,-0.051249992102385,0.05995150655508],[-0.087375178933144,-0.12886670231819,0.061439421027899]],[[-0.0062269465997815,-0.041340555995703,0.010758748278022],[-0.16588723659515,0.019784552976489,0.035110205411911],[0.046528592705727,0.088901974260807,0.041160617023706]],[[-0.043783813714981,0.040099501609802,-0.066397689282894],[-0.042539391666651,0.098366111516953,0.14418323338032],[-0.024573165923357,0.060094069689512,0.0038983458653092]],[[-0.05361457914114,0.17416799068451,0.022447530180216],[-0.058056440204382,0.018270414322615,0.013607162050903],[0.0023587790783495,-0.17108762264252,0.011261269450188]],[[-0.003016113769263,-0.10246649384499,0.018946409225464],[-0.069792166352272,0.047814689576626,-0.03264494612813],[-0.11608528345823,0.070397205650806,0.010603779926896]],[[-0.068177372217178,-0.061424352228642,0.056847378611565],[0.022199900820851,0.056226555258036,0.080574534833431],[0.051215276122093,0.093405924737453,0.040100283920765]],[[-0.08406325429678,0.089117586612701,-0.0061011770740151],[-0.017258139327168,0.09561974555254,0.21078903973103],[0.13218376040459,-0.012597707100213,-0.0494020357728]],[[-0.042111571878195,-0.15208910405636,-0.19816844165325],[-0.038698568940163,-0.036856703460217,0.0050651957280934],[-0.097568839788437,-0.046643484383821,0.0092138042673469]],[[-0.076003007590771,-0.063451439142227,-0.037253424525261],[-0.022115936502814,0.026038574054837,-0.0060584121383727],[0.032455489039421,0.018776413053274,0.11025129258633]],[[-0.1324795037508,0.04430540651083,-0.088935144245625],[-0.1523452848196,-0.035308331251144,-0.024627732113004],[-0.021059764549136,-0.034956317394972,-0.021065762266517]],[[0.10569336265326,0.17314746975899,0.12802739441395],[-0.061513051390648,-0.097094237804413,0.075216218829155],[-0.029744887724519,0.032533798366785,0.039652097970247]],[[0.20035035908222,0.082570180296898,0.13873946666718],[-0.02668871358037,-0.080308564007282,-0.0657764300704],[0.042315889149904,-0.02547855488956,0.03973426297307]],[[0.10587873309851,-0.03943408280611,0.10355713218451],[-0.033820725977421,0.021830096840858,-0.015084389597178],[0.054158050566912,0.14429308474064,-0.19752068817616]],[[-0.022624369710684,-0.046747095882893,-0.074568390846252],[-0.020330110564828,-0.10307066887617,-0.10560027509928],[-0.086348451673985,-0.076520748436451,0.071884997189045]],[[-0.12144332379103,0.041324526071548,0.044283635914326],[-0.013583379797637,-0.025455597788095,0.084470383822918],[-0.013288456946611,-0.052155308425426,0.03902368620038]],[[0.14676335453987,0.042495954781771,0.12676383554935],[-0.11785931140184,0.032729018479586,-0.047161750495434],[0.062475360929966,0.069745138287544,0.056254222989082]],[[-0.060190986841917,-0.031640414148569,-0.044993836432695],[-0.10823081433773,-0.055810321122408,-0.0073533835820854],[-0.03339309990406,0.0052205012179911,-0.044970959424973]],[[-0.069504223763943,-0.055919464677572,0.048787664622068],[-0.11510716378689,0.091206900775433,0.027848923578858],[-0.032310865819454,-0.042278334498405,-0.032788764685392]],[[0.039282742887735,0.1375824213028,0.050320040434599],[0.022115400061011,0.043698087334633,0.050682596862316],[-0.065783709287643,0.010469724424183,-0.056983765214682]],[[0.038738053292036,-0.010127848945558,0.11062097549438],[-0.012134028598666,-0.015305796638131,0.035624537616968],[-0.0063656554557383,0.034070536494255,0.017625253647566]],[[0.27381429076195,0.16945713758469,0.019408136606216],[0.046671971678734,-0.092166781425476,0.075664564967155],[0.084602057933807,0.053907386958599,0.098261028528214]],[[0.035568881779909,-0.082960560917854,-0.019126310944557],[-0.080632425844669,0.0082579413428903,-0.019835405051708],[-0.082169905304909,-0.012087425217032,-0.20823699235916]],[[-0.010518849827349,-0.067079335451126,-0.030304538086057],[-0.020270239561796,-0.086932778358459,-0.064087353646755],[-0.017662623897195,-0.0032989757601172,0.045222628861666]],[[-0.018892548978329,-0.10999593138695,0.11212962865829],[0.014451276510954,-0.066206708550453,-0.093939661979675],[0.18603906035423,0.079532943665981,-0.11793383955956]],[[0.048987485468388,-0.071935027837753,0.00061698909848928],[0.057326011359692,0.073162414133549,-0.046456478536129],[0.010768574662507,0.0029113697819412,-0.043370634317398]],[[0.15480999648571,0.0019355331314728,-0.105205334723],[0.097952842712402,0.051597520709038,-0.056961312890053],[-0.026582410559058,-0.049387268722057,-0.10431203991175]],[[-0.023899773135781,0.019477862864733,0.092300616204739],[0.15127728879452,0.13632740080357,0.11712292581797],[-0.0013892869465053,-0.061840198934078,-0.090543821454048]],[[-0.13290756940842,0.027283243834972,-0.042366120964289],[0.088307753205299,-0.03183301910758,0.045019906014204],[0.15005452930927,0.040743935853243,-0.14083750545979]],[[0.028577994555235,-0.08047791570425,0.0068730120547116],[-0.085083454847336,-0.18045541644096,-0.18102411925793],[-0.014135526493192,0.18515089154243,0.10618226975203]],[[-0.075870364904404,-0.045138280838728,-0.023464066907763],[-0.031257092952728,-0.03877392411232,0.0049857497215271],[0.067378044128418,0.085507459938526,-0.23623593151569]],[[-0.027407083660364,-0.04640294238925,0.13066336512566],[-0.059927389025688,0.03977283462882,-0.019292978569865],[0.034970641136169,0.065313279628754,0.075154528021812]],[[0.089084103703499,-0.028451595455408,0.040414460003376],[-0.023453811183572,-0.0062645375728607,-0.089182153344154],[-0.049267750233412,-0.091582402586937,0.035964220762253]],[[-0.21876913309097,0.037966344505548,0.093415960669518],[0.054416429251432,0.098416686058044,-0.042508691549301],[-0.013659328222275,0.079653814435005,0.031044417992234]],[[0.1083135008812,0.038218181580305,0.056473731994629],[-0.014861042611301,0.11071030050516,0.045818962156773],[-0.029736343771219,0.01702886633575,-0.014352654106915]],[[-0.11850848048925,-0.22328525781631,-0.086239688098431],[0.021530017256737,0.10868647694588,0.012519340962172],[0.0090269539505243,0.085014007985592,0.13067060709]],[[0.084529362618923,0.079813860356808,0.054885782301426],[0.077643483877182,-0.040866099298,0.04819468781352],[0.065590210258961,-0.055566564202309,0.18346627056599]],[[-0.10457892715931,0.03548601269722,-0.071069598197937],[-0.10300532728434,-0.13808639347553,-0.1340918391943],[0.036497868597507,0.056871850043535,-0.040527630597353]],[[-0.1469019651413,-0.06098559871316,-0.19389875233173],[0.043214846402407,0.0080905146896839,-0.1429720968008],[-0.073591008782387,-0.12750449776649,0.0055182976648211]],[[-0.20640352368355,-0.040886800736189,0.099540531635284],[0.011998331174254,0.043798357248306,-0.037097159773111],[0.15783473849297,0.039100077003241,-0.11852434277534]],[[-0.093579448759556,0.032361164689064,-0.096394903957844],[-0.12866827845573,-0.082410424947739,-0.09125691652298],[0.012777864001691,-0.0058419746346772,0.01194894593209]],[[-0.075154490768909,-0.06115822121501,0.059276949614286],[-0.022171748802066,-0.11439923942089,-0.070109806954861],[-0.1115652397275,-0.066875994205475,-0.047612745314837]],[[-0.18111537396908,-0.18379981815815,-0.012578594498336],[0.14984983205795,-0.038727760314941,0.13906882703304],[0.097107358276844,0.0021459020208567,0.007736049592495]],[[0.008547430858016,0.14048482477665,0.13145130872726],[-0.074664950370789,0.080429285764694,-0.034138824790716],[0.051694929599762,0.10354109108448,0.085610799491405]],[[0.10416971892118,0.070586107671261,-0.091016426682472],[-0.014065822586417,-0.015079508535564,-0.083520315587521],[0.034211523830891,-0.074660003185272,-0.024128958582878]],[[-0.14410704374313,-0.0022822266910225,-0.10957004129887],[0.17874389886856,0.00772814033553,-0.13207125663757],[-0.030048336833715,-0.019010009244084,0.034339897334576]],[[0.25552985072136,-0.058533795177937,0.038981441408396],[-0.13405522704124,0.077468931674957,0.081598646938801],[-0.14999827742577,0.095079325139523,0.0043027983047068]],[[-0.035115081816912,-0.046678237617016,-0.076529376208782],[-0.11279430985451,0.093500249087811,0.029923919588327],[-0.06913560628891,-0.016704071313143,-0.076259300112724]],[[-0.14352902770042,0.043863222002983,0.030431538820267],[0.029330538585782,-0.018496172502637,0.028472615405917],[0.18938153982162,0.073428593575954,-0.073010332882404]],[[-0.20544396340847,0.098343215882778,-0.0091945342719555],[0.15049484372139,-0.057687997817993,0.022335084155202],[-0.0091497590765357,-0.079704381525517,-0.065383672714233]],[[0.0034401128068566,0.073082953691483,-0.038956858217716],[-0.023544739931822,-0.073089256882668,-0.0022715134546161],[0.02490221336484,0.034170474857092,0.0011522357817739]],[[-0.17343620955944,-0.055620033293962,0.043169386684895],[-0.081066839396954,-0.15448473393917,-0.095143690705299],[0.11857401579618,0.10023531317711,0.028050364926457]],[[-0.058590736240149,-0.012714387848973,0.11539076268673],[-0.083394855260849,-0.19020095467567,-0.17513005435467],[-0.021549228578806,-0.01634095236659,-0.11212419718504]],[[0.12811122834682,-0.063231736421585,0.031549800187349],[-0.063828103244305,-0.05096634849906,0.045867428183556],[0.044632639735937,0.033125810325146,0.0074332309886813]],[[0.029269028455019,-0.028152326121926,0.077781543135643],[0.035399440675974,-0.038446635007858,-0.13203774392605],[0.10313935577869,-0.0019693428184837,-0.0084991557523608]],[[0.070896036922932,-0.021667305380106,0.10069750249386],[-0.0036496720276773,0.039285212755203,-0.052159540355206],[-0.01273126527667,-0.027632491663098,-0.032157350331545]],[[0.035691697150469,-0.034356214106083,0.032650582492352],[-0.083209067583084,-0.039125137031078,0.13690078258514],[-0.077869653701782,-0.034910097718239,-0.10954953730106]],[[0.062530301511288,0.072995699942112,-0.13930894434452],[0.10348524153233,0.021881835535169,-0.018156282603741],[-0.045071233063936,0.0033746785484254,-0.053248025476933]],[[0.064065389335155,0.10362573713064,0.073568619787693],[0.1473616361618,0.046414211392403,0.08840511739254],[-0.027908805757761,-0.023826586082578,-0.12553125619888]],[[-0.036994393914938,-0.16474169492722,-0.10623073577881],[0.16640591621399,0.045395769178867,-0.016108885407448],[-0.13591247797012,-0.024923872202635,-0.061191953718662]],[[-0.014120342209935,-0.032267175614834,-0.22089189291],[-0.013794249854982,-0.021831501275301,-0.094869993627071],[0.02518549375236,-0.10367664694786,0.0093882260844111]],[[-0.071786627173424,0.069177538156509,0.15798999369144],[0.10596454888582,0.016932740807533,0.079075433313847],[0.029520394280553,0.00090323289623484,0.15368303656578]],[[-0.005542020779103,0.12189797312021,0.16603635251522],[0.11081050336361,0.074443966150284,-0.036519944667816],[0.05335184559226,0.16584125161171,0.23019593954086]],[[0.10711009800434,-0.0051400414668024,0.051401000469923],[-0.067851603031158,0.023385982960463,0.038363497704268],[0.067514680325985,-0.071380242705345,0.036332227289677]],[[0.05307162553072,0.15621520578861,0.18228876590729],[-0.048686072230339,0.046558260917664,0.14711908996105],[-0.073181599378586,0.058016449213028,-0.094239994883537]],[[0.019028328359127,0.25580003857613,0.10110465437174],[0.13293541967869,-0.11183577775955,-0.24330413341522],[-0.07225401699543,0.030010487884283,-0.07354997843504]],[[-0.033466003835201,0.0064114313572645,-0.057824369519949],[0.027606211602688,-0.036204725503922,-0.0061098951846361],[-0.14849281311035,-0.013592102564871,0.043220985680819]],[[0.005262091755867,0.030773648992181,0.0013417475856841],[0.08190630376339,-0.014340690337121,-0.064574211835861],[0.072924122214317,0.015301599167287,-0.013275677338243]],[[-0.083935506641865,-0.095644824206829,0.024440279230475],[-0.045859914273024,-0.035678375512362,0.03792392462492],[-0.011519462801516,-0.031631723046303,-0.025048974901438]],[[0.082860738039017,0.028754372149706,-0.1137949898839],[-0.13511823117733,-0.078936077654362,0.034919839352369],[-0.072960808873177,-0.070178084075451,0.051692627370358]],[[-0.048618357628584,-0.033909011632204,-0.12603610754013],[-0.059945542365313,0.050532937049866,0.016842918470502],[0.10714880377054,0.016044804826379,0.013675260357559]],[[-0.047985766083002,-0.037640701979399,0.083089485764503],[0.0039508733898401,-0.19358289241791,-0.069900631904602],[-0.1264196485281,0.11659130454063,0.0050181159749627]],[[0.10575817525387,0.096307851374149,0.07711511105299],[-0.054946150630713,0.0064887735061347,0.0066800233907998],[0.049550902098417,0.042759232223034,0.06229891628027]],[[0.035424031317234,-0.025709431618452,0.028369646519423],[-0.035912651568651,-0.050940357148647,0.016819378361106],[0.020497251302004,-0.038869805634022,-0.0068341628648341]],[[-0.1199389398098,0.021248226985335,0.10749696195126],[0.083751827478409,0.065336652100086,0.19894871115685],[-0.088048830628395,0.025805616751313,0.012345707975328]],[[0.051209062337875,0.026195740327239,-0.003331518964842],[0.026293916627765,0.072548113763332,0.031288560479879],[-0.073227070271969,0.08377343416214,0.012160523794591]],[[-0.11933811753988,-0.099179789423943,-0.038986556231976],[-0.084048233926296,-0.060387536883354,0.056239236146212],[-0.015592597424984,0.092984080314636,0.002387166256085]],[[-0.1765441596508,0.024082392454147,0.083250910043716],[-0.073657140135765,-0.11244529485703,0.05382078140974],[-0.026562463492155,-0.18839679658413,-0.090274184942245]],[[0.0062301228754222,-0.038204032927752,-0.0023157196119428],[-0.12085405737162,0.03872299566865,0.16233307123184],[0.13733297586441,0.059974066913128,0.055745486170053]],[[-0.18819057941437,-0.1782703101635,-0.0098412679508328],[-0.053925678133965,0.048092197626829,-0.061108026653528],[0.0035524263512343,-0.086663372814655,-0.084622509777546]],[[-0.049904614686966,-0.0026208406779915,-0.040745347738266],[0.059914451092482,-0.090439647436142,-0.015892589464784],[-0.072025910019875,-0.10792499780655,0.059060122817755]],[[0.10930692404509,0.073674842715263,0.10104393959045],[0.12085206061602,0.094681777060032,0.085408702492714],[0.039710313081741,0.058134362101555,-0.11470883339643]],[[-0.086763702332973,0.015746267512441,0.09235955029726],[-0.03085563890636,-0.09125304967165,-0.11573388427496],[0.10213067382574,-0.11377177387476,-0.043046317994595]],[[-0.1648001819849,-0.13350383937359,0.027700699865818],[-0.0060027153231204,-0.051184635609388,0.10946420580149],[-0.0089619141072035,0.03853015974164,-0.074747897684574]],[[-0.17051541805267,0.080858580768108,-0.02035397104919],[0.012229010462761,-0.0015278769424185,-0.071236409246922],[-0.048376012593508,-0.022833859547973,0.062611468136311]],[[-0.058650307357311,0.052125740796328,-0.073974125087261],[-0.1115008443594,0.071507446467876,0.014437129721045],[0.060811441391706,-0.15556545555592,-0.046672221273184]],[[0.11839602142572,0.0041535734198987,0.16695462167263],[0.041526809334755,-0.0012621108908206,-0.06963224709034],[-0.0032004714012146,0.011493610218167,0.0016666307346895]],[[-0.16753853857517,0.0053772097453475,-0.019214078783989],[-0.1488128900528,0.02114881016314,0.14798729121685],[0.075112789869308,-0.014297698624432,-0.0019116128096357]],[[-0.042873956263065,-0.057286035269499,-0.079251252114773],[0.039535783231258,0.13868580758572,-0.010381737723947],[0.019996654242277,0.065640300512314,0.15656170248985]],[[0.083622798323631,0.094016849994659,0.083791993558407],[-0.085595071315765,-0.11304304003716,0.033094599843025],[0.034476533532143,0.16434210538864,-0.081182383000851]],[[-0.024253387004137,-0.028428973630071,-0.00015560898464173],[0.059803415089846,-0.033051732927561,0.056798063218594],[-0.052682608366013,-0.059389431029558,-0.027650281786919]],[[-0.016192657873034,-0.00854167714715,0.033167757093906],[-0.10633007436991,-0.037635151296854,0.095494091510773],[0.046560604125261,0.064118884503841,-0.12471809983253]],[[-0.10757306218147,-0.10259408503771,-0.044713396579027],[0.13953301310539,0.034694135189056,-0.10176540911198],[-0.051822584122419,-0.060999117791653,0.0088015366345644]],[[0.033255651593208,-0.017953008413315,-0.051752261817455],[-0.07494243234396,-0.11202903091908,0.029617760330439],[0.073219336569309,0.029067335650325,-0.026222912594676]],[[-0.089512936770916,-0.077761106193066,0.13183817267418],[0.052891451865435,0.060901664197445,-0.066130489110947],[-0.038349580019712,0.012312543578446,0.041543018072844]],[[-0.028210185468197,0.018755588680506,0.034414764493704],[-0.033081546425819,0.084844939410686,0.056209307163954],[0.10860530287027,0.063970968127251,-0.18343365192413]],[[-0.027633249759674,-0.0044731078669429,-0.063935488462448],[0.14763978123665,0.097062490880489,0.057463325560093],[0.063200399279594,-0.14206770062447,-0.063507243990898]],[[0.079711146652699,0.028394103050232,0.057832777500153],[-0.054968126118183,0.04690146446228,0.14435900747776],[0.044798113405704,0.015343985520303,-0.0092384843155742]],[[-0.030285220593214,-0.058240052312613,-0.025274204090238],[-0.026929024606943,-0.059884123504162,-0.023939089849591],[-0.047265604138374,-0.069635353982449,-0.015801744535565]],[[-0.033681709319353,-0.010501463897526,-0.021715082228184],[0.11220326274633,-0.082704730331898,-0.014397397637367],[-0.023613793775439,-0.015832709148526,0.030375400558114]],[[-0.082114912569523,-0.015180435031652,0.0678486302495],[-0.032964788377285,0.14144895970821,-0.0033541196025908],[0.08022316545248,0.021082520484924,-0.023192038759589]],[[0.0089341243728995,-0.093867175281048,0.078387707471848],[0.056218311190605,0.024020668119192,0.037522971630096],[0.055112767964602,0.09714712202549,0.061160825192928]],[[-0.060128998011351,-0.0061934124678373,0.01607839949429],[-0.065414324402809,-0.112484395504,-0.17904591560364],[0.0039286427199841,-0.073087722063065,-0.15648759901524]],[[0.083285234868526,-0.018829153850675,-0.027333753183484],[0.12396570295095,-0.0033392142504454,-0.052843496203423],[-0.10457176715136,-0.01858102530241,-0.048440605401993]],[[-0.048948992043734,-0.098886176943779,-0.042062412947416],[0.037530388683081,-0.059105239808559,0.0076043317094445],[0.12129215151072,0.014914890751243,0.043541572988033]],[[0.081717140972614,0.028560129925609,0.051921535283327],[-0.051302015781403,-0.14446827769279,-0.08588208258152],[-0.07414123415947,-0.071727842092514,-0.031406104564667]],[[-0.052621722221375,0.14003059267998,0.010664526373148],[-0.040336694568396,-0.010241861455142,-0.12258398532867],[-0.013786428608,0.028524618595839,0.033234558999538]],[[0.028080619871616,0.062686905264854,-0.067587718367577],[0.12070599198341,0.036280903965235,0.12292115390301],[0.038163993507624,0.0011100606061518,-0.038053140044212]]],[[[0.00049580860650167,-0.1339291036129,0.01318278349936],[0.037589807063341,-0.029831189662218,-0.10142125934362],[0.065567083656788,0.017514174804091,-0.07458309084177]],[[0.21914911270142,-0.061872702091932,0.15944503247738],[0.088000513613224,0.055756635963917,-0.040841087698936],[-0.10858969390392,0.017166821286082,0.0035739000886679]],[[0.19620697200298,0.069892667233944,-0.12892092764378],[0.15334644913673,-0.0040518292225897,0.015424507670105],[0.15808318555355,0.0097741922363639,0.19514806568623]],[[-0.094512544572353,-0.17186132073402,0.011839903891087],[0.021861290559173,-0.011489543132484,-0.1385934650898],[-0.086897075176239,-0.03191801905632,-0.054544195532799]],[[0.13606348633766,-0.12767365574837,-0.031565628945827],[-0.037168376147747,-0.039128191769123,0.065050765872002],[-0.043658714741468,0.14539438486099,-0.088165365159512]],[[-0.072866372764111,0.076761871576309,-0.12698702514172],[-0.095504894852638,0.063367702066898,0.11117296665907],[-0.15126855671406,-0.10851982235909,0.21838885545731]],[[0.041891776025295,-0.011675769463181,0.12991161644459],[0.01828889735043,-0.042308803647757,0.12506966292858],[0.02559152059257,-0.12048525363207,-0.018601996824145]],[[0.26848289370537,-0.1252083927393,-0.12002240866423],[-0.079691268503666,0.029953157529235,0.016227819025517],[-0.053056947886944,-0.067907765507698,-0.14785812795162]],[[0.062208969146013,-0.16874338686466,-0.085825107991695],[0.021875718608499,0.051212202757597,0.04174517467618],[-0.0048234690912068,-0.1285620033741,-0.012400213629007]],[[0.083029344677925,-0.0050022979266942,0.01926201954484],[0.10844811052084,0.0051145730540156,-0.014678528532386],[0.053596112877131,-0.18882839381695,-0.11162773519754]],[[0.039506867527962,-0.13140670955181,-0.086286514997482],[-0.12995333969593,-0.03436791524291,-0.26800355315208],[0.010496207512915,-0.036409981548786,-0.10749834775925]],[[0.056858580559492,0.018867941573262,0.093346990644932],[-0.0012045191833749,-0.042598482221365,0.05968177318573],[0.088786065578461,0.02812922373414,-0.022892190143466]],[[-0.051092583686113,0.10494787245989,-0.060434646904469],[-0.032172199338675,0.051408533006907,-0.055488146841526],[0.068628735840321,-0.019407022744417,-0.042263422161341]],[[-0.029473504051566,0.0047884308733046,-0.043029565364122],[-0.042346116155386,0.034777719527483,-0.075244233012199],[-0.029856074601412,-0.15587536990643,-0.14424949884415]],[[0.0063396641053259,-0.03492908924818,-0.12988938391209],[-0.013925031758845,-0.03940211981535,0.06094890460372],[-0.11318577080965,0.012796469032764,-0.010657051578164]],[[0.19447663426399,0.023258863016963,-0.079907357692719],[-0.0018574619898573,0.042458705604076,-0.15671610832214],[0.041660230606794,0.11620769649744,-0.14357812702656]],[[0.12369497865438,0.011306936852634,-0.25212052464485],[-0.10304141789675,0.054285567253828,-0.1696110367775],[-0.024072868749499,0.15715730190277,-0.19308997690678]],[[-0.043398026376963,-0.10799866169691,0.081016324460506],[0.080102272331715,-0.1419782191515,-0.1822135001421],[0.01108992099762,-0.1767461001873,0.04497379809618]],[[-0.0096094310283661,-0.016770053654909,0.30530485510826],[0.025607939809561,-0.12422048300505,0.18494288623333],[-0.027885494753718,-0.10257342457771,0.24261517822742]],[[-0.053015980869532,-0.085781827569008,0.09354667365551],[-0.076197400689125,0.023125898092985,0.059525176882744],[0.068321876227856,-0.074439890682697,-0.030789017677307]],[[-0.035862557590008,-0.049088157713413,-0.062779940664768],[-0.1975215524435,-0.087476521730423,-0.045551992952824],[-0.10281886905432,0.11516393721104,0.00025918110623024]],[[0.12385984510183,-0.070711016654968,0.027748864144087],[-0.089363418519497,-0.084735572338104,-0.031581971794367],[-0.023172793909907,0.013639183714986,0.01478405483067]],[[-0.03888637945056,0.0094466833397746,0.050021976232529],[-0.13127008080482,0.16356064379215,-0.19238053262234],[-0.28499352931976,0.12416715174913,-0.21970704197884]],[[0.033144850283861,0.055597748607397,-0.040995124727488],[0.017494944855571,0.031891658902168,-0.071422822773457],[-0.1742377281189,0.12931904196739,0.036298699676991]],[[-0.049282521009445,-0.038448225706816,-0.047956027090549],[0.028146674856544,0.091916717588902,-0.040279060602188],[0.0071172998286784,0.092060275375843,0.038621429353952]],[[0.039357468485832,0.049803551286459,-0.007192010525614],[0.045098688453436,0.021225292235613,0.065200500190258],[0.2559589445591,0.0077449535019696,0.091211132705212]],[[-0.043309893459082,-0.13525021076202,0.11219596862793],[-0.017636617645621,-0.13089147210121,-0.013032688759267],[0.076774261891842,0.011634046211839,-0.037693448364735]],[[0.056496735662222,0.065263286232948,-0.05175331607461],[0.05823215842247,0.0070853787474334,-0.050112143158913],[0.20593771338463,0.0068387538194656,-0.058747578412294]],[[-0.10729088634253,-0.069742456078529,0.079006537795067],[0.097628906369209,-0.42151847481728,-0.041042935103178],[0.12192176282406,-0.45648902654648,-0.11732797324657]],[[0.12156264483929,0.11587250232697,0.044700238853693],[-0.0022980913054198,0.023737117648125,-0.22153601050377],[-0.050006974488497,0.090424783527851,-0.14720936119556]],[[-0.10448841005564,0.0272943880409,-0.034817516803741],[-0.041166570037603,0.098243333399296,-0.15858210623264],[-0.021217629313469,0.12771683931351,-0.058225806802511]],[[-0.08503583073616,-0.0077413041144609,0.17112189531326],[-0.062926486134529,-0.0030637925956398,-0.025333063676953],[-0.11820837110281,-0.024422595277429,0.095952957868576]],[[0.071537524461746,-0.08211175352335,-0.19763816893101],[0.094663314521313,-0.21306864917278,-0.16034749150276],[0.10711441934109,-0.13091893494129,-0.11961306631565]],[[-0.064934425055981,-0.10507979989052,-0.095830775797367],[-0.061838734894991,0.0040700202807784,-0.17682832479477],[-0.047844719141722,0.3116948902607,-0.030979622155428]],[[0.049538113176823,0.10779667645693,-0.031257901340723],[-0.077525824308395,0.026051545515656,-0.10024058073759],[-0.060644078999758,-0.013116180896759,-0.16947187483311]],[[0.12135708332062,-0.022047579288483,0.018992748111486],[0.15149971842766,-0.0023544263094664,-0.068725876510143],[0.017874840646982,0.047555360943079,-0.06693521887064]],[[0.058911584317684,0.058703415095806,0.15825833380222],[-0.017321968451142,-0.030139341950417,0.05354044213891],[0.13314908742905,0.085912853479385,-0.030451068654656]],[[-0.25417041778564,-0.025222988799214,-0.1316998898983],[0.033639255911112,-0.071341216564178,-0.044740453362465],[0.035360563546419,0.03128058463335,-0.026277832686901]],[[0.20833452045918,-0.060214642435312,-0.043259974569082],[0.069163076579571,-0.0066643981263041,0.1423245370388],[0.099178403615952,-0.062941305339336,0.0032228911295533]],[[0.0023034559562802,-0.11219700425863,0.046788420528173],[-0.078728266060352,-0.12936463952065,0.026974581182003],[-0.027203690260649,-0.011659996584058,-0.14888782799244]],[[0.052346885204315,0.094471864402294,0.12082390487194],[0.011389886029065,0.028334319591522,0.053238566964865],[-0.045458823442459,-0.036590602248907,-0.044344179332256]],[[-0.12343253195286,0.016333963721991,0.042704656720161],[-0.0091857109218836,0.11301788687706,0.058539617806673],[-0.10885136574507,0.22164213657379,0.11029940098524]],[[-0.046470191329718,-0.020640812814236,-0.08451072871685],[0.03135284408927,-0.13174173235893,-0.087111912667751],[0.20671762526035,-0.016185417771339,-0.12574334442616]],[[-0.018156066536903,-0.10124219208956,-0.020232208073139],[-0.0053206225857139,-0.18370309472084,-0.05406891182065],[0.069694466888905,-0.051066346466541,-0.0052222483791411]],[[-0.030577855184674,0.078285858035088,0.035125941038132],[-0.077926158905029,0.10582394897938,0.064388856291771],[0.14653007686138,-0.016000872477889,-0.015458065085113]],[[-0.17501863837242,-0.11156143993139,-0.072666831314564],[0.044697161763906,0.048421140760183,-0.1013322994113],[0.12380985915661,0.073989361524582,0.016876289620996]],[[0.16201025247574,0.045512244105339,-0.070105351507664],[-0.011097183451056,0.069752037525177,-0.13425706326962],[0.12984734773636,0.062324199825525,-0.18282681703568]],[[-0.0299152135849,0.0095667308196425,-0.013002871535718],[0.011565500870347,0.0047637042589486,-0.013709026388824],[-0.062662810087204,-0.072688736021519,-0.00826421007514]],[[-0.029941154643893,0.065144307911396,-0.068109713494778],[-0.082190632820129,0.11328922957182,-0.11722041666508],[0.11124294251204,0.036928802728653,-0.018404329195619]],[[-0.01492870785296,-0.22306986153126,-0.023261640220881],[0.051968730986118,-0.10535348951817,-0.054064624011517],[-0.041379675269127,-0.02455017529428,0.018770180642605]],[[0.047164987772703,-0.094851978123188,-0.21076990664005],[-0.0021100516896695,-0.061779867857695,0.030834717676044],[0.03267027810216,-0.10206948965788,0.004252509213984]],[[0.12559741735458,0.12242253124714,0.06404572725296],[0.065389171242714,-0.035657159984112,0.096249654889107],[-0.046414524316788,0.016619939357042,-0.060295920819044]],[[0.011737387627363,0.080920450389385,-0.00098987005185336],[0.088497087359428,-0.063400834798813,-0.028126308694482],[0.13074600696564,-0.015801049768925,-0.02323236130178]],[[0.038815557956696,0.1206828057766,-0.19505648314953],[-0.042745281010866,-0.00014887003635522,-0.13824519515038],[-0.057295959442854,0.043262850493193,-0.058330301195383]],[[-0.1225938424468,-0.060195870697498,-0.064165994524956],[0.02687375806272,-0.12679460644722,0.062401443719864],[1.0766798368422e-05,-0.095706634223461,0.33412832021713]],[[0.036456566303968,-0.054486896842718,-0.0085135186091065],[-0.033912088721991,0.016941390931606,-0.044433798640966],[0.050423935055733,-0.059956464916468,-0.01075575593859]],[[0.012526923790574,0.067672327160835,0.28871366381645],[0.0097884517163038,-0.086632639169693,0.15130019187927],[0.030135834589601,-0.1571372449398,0.039474319666624]],[[-0.042405009269714,-0.12125872075558,-0.028097530826926],[-0.23260639607906,-0.023087644949555,-0.17207379639149],[-0.17928585410118,0.057351022958755,-0.13828721642494]],[[-0.058622002601624,0.0066278302110732,-0.14971199631691],[-0.025477884337306,0.093421913683414,0.095937103033066],[-0.092376329004765,0.1098510324955,0.073407530784607]],[[0.0075542503036559,0.032368265092373,-0.11505103856325],[-0.011852068826556,-0.069853655993938,0.062337540090084],[0.0019572875462472,-0.0082067865878344,-0.082970559597015]],[[0.095976382493973,-0.091061301529408,-0.15113815665245],[0.050495032221079,-0.04503671079874,-0.20667277276516],[-0.050036042928696,0.1095300167799,-0.19226716458797]],[[-0.052739854902029,-0.055315274745226,-0.012188325636089],[-0.065419308841228,-0.024927845224738,-0.034621089696884],[-0.051319573074579,-0.10576392710209,-0.081310287117958]],[[0.13722708821297,0.061921630054712,-0.005988631863147],[0.13243545591831,0.043895211070776,-0.032457053661346],[-0.020738141611218,0.10704422742128,-0.064865924417973]],[[0.18241986632347,0.07718364149332,-0.031748462468386],[0.020437635481358,0.29381078481674,0.04572805762291],[-0.21684746444225,0.1976330280304,-0.078759610652924]],[[0.024263851344585,-0.11089435964823,-0.070037089288235],[0.11523353308439,0.018886137753725,-0.094015568494797],[0.020096603780985,0.14761838316917,-0.088175259530544]],[[-0.012862334959209,0.013559936545789,0.089829750359058],[-0.013756727799773,0.13349126279354,0.12921315431595],[0.047170251607895,0.080940194427967,0.046781919896603]],[[-0.11777681857347,0.037098817527294,0.19126079976559],[0.13425147533417,0.16798374056816,-0.018406176939607],[0.003247543470934,-0.031118214130402,-0.0041964114643633]],[[0.043012522161007,-0.16370299458504,-0.017448967322707],[0.095026835799217,-0.19580940902233,-0.071878284215927],[-0.035539854317904,-0.092410050332546,0.00046519271563739]],[[-0.0093740606680512,0.062119796872139,-0.001873146626167],[-0.036506202071905,-0.092662587761879,0.044673897325993],[0.12672998011112,-0.14521735906601,-0.10556188970804]],[[0.069952517747879,-0.10049577057362,0.098314672708511],[-0.11234552413225,-0.017264826223254,-0.032812356948853],[-0.057773899286985,-0.17933435738087,0.091931462287903]],[[-0.010911174118519,-0.019180618226528,0.026997132226825],[0.023206459358335,-0.0086344070732594,0.042443942278624],[0.075156912207603,-0.012637193314731,0.0048990682698786]],[[0.16875194013119,-0.012829034589231,-0.077778153121471],[0.11297754943371,0.056312799453735,-0.075599886476994],[0.068199463188648,0.037297826260328,-0.17269048094749]],[[0.033603295683861,-0.020907327532768,-0.090983673930168],[0.077382050454617,-0.10605507344007,-0.21288193762302],[0.040823310613632,-0.14867357909679,-0.16033318638802]],[[-0.021909357979894,0.0012298807268962,0.16910834610462],[0.10038540512323,-0.0017747945385054,0.0072128898464143],[0.18583863973618,-0.10949449241161,0.036754928529263]],[[-0.059052634984255,-0.097649730741978,-0.0067697269842029],[-0.093217439949512,0.094241969287395,0.029914453625679],[-0.075740143656731,-0.10598763078451,-0.074437886476517]],[[-0.064893610775471,-0.10421647876501,0.048772312700748],[-0.048018164932728,-0.026211060583591,0.072347804903984],[0.11768887937069,-0.048757374286652,0.066866807639599]],[[-0.004201730247587,-0.017735430970788,-0.1553331464529],[-0.013811807148159,-0.31327855587006,0.16558416187763],[0.11463701725006,-0.17077159881592,-0.025264974683523]],[[0.041120395064354,-0.12997402250767,-0.095390662550926],[0.18424995243549,0.014472523704171,-0.077220119535923],[0.025459725409746,0.14645148813725,-0.083410657942295]],[[0.098949328064919,-0.014849081635475,0.097894817590714],[-0.079939126968384,0.062795653939247,0.038423765450716],[-0.10813831537962,0.093088835477829,-0.14992293715477]],[[-0.12848362326622,-0.2776143848896,-0.16801878809929],[0.064076393842697,-0.11512080579996,0.015177592635155],[0.028004912659526,-0.068101920187473,-0.005439090076834]],[[-0.16770839691162,0.089312098920345,-0.16147914528847],[0.073198139667511,-0.13681003451347,-0.021112766116858],[-0.046356204897165,-0.040608037263155,0.10438062250614]],[[-0.11830544471741,0.0051502236165106,-0.034862272441387],[-0.17160923779011,-0.25918075442314,0.13415566086769],[0.10730738192797,-0.017325861379504,0.043471120297909]],[[0.14293740689754,-0.052503671497107,-0.01682417653501],[0.075746275484562,0.17726543545723,0.00056143605615944],[-0.016424221917987,-0.1720078587532,-0.084886811673641]],[[-0.11631710082293,0.20326937735081,0.00089074671268463],[-0.19070148468018,-0.042699314653873,0.053806435316801],[-0.24737155437469,-0.06367938965559,-0.058042120188475]],[[0.059313360601664,0.12336577475071,-0.16522726416588],[-0.011333791539073,-0.024600848555565,-0.1976325660944],[-0.0026250702794641,-0.05477237701416,0.034177739173174]],[[-0.13324557244778,-0.055384919047356,0.11765579134226],[-0.053421940654516,0.050109099596739,-0.05338703840971],[0.24365508556366,-0.11320561170578,-0.096307203173637]],[[0.084679558873177,0.081774652004242,-0.19821129739285],[0.059040274471045,0.18570649623871,-0.090084381401539],[0.063845671713352,-0.18901063501835,-0.10577126592398]],[[0.017729504033923,0.0058535984717309,-0.089885488152504],[-0.050606846809387,0.19652786850929,-0.16766396164894],[-0.040007088333368,0.06706865131855,-0.13910485804081]],[[0.013067159801722,-0.013221833854914,-0.017053866758943],[0.091802716255188,-0.028070818632841,0.066336311399937],[-0.077581770718098,0.0043544555082917,0.079110905528069]],[[-0.14637576043606,-0.052467759698629,0.067120365798473],[0.042664580047131,-0.067555792629719,0.035314533859491],[-0.057507015764713,-0.045323818922043,0.06719883531332]],[[-0.093851089477539,0.088455528020859,0.016171408817172],[0.05635305121541,0.013940894976258,-0.028627224266529],[-0.041061900556087,0.024583362042904,-0.040901731699705]],[[0.045503739267588,-0.0035340196918696,0.034677591174841],[-0.11353974789381,0.2023604363203,-0.10784494131804],[-0.17664797604084,0.21893826127052,-0.0059623871929944]],[[0.096100680530071,-0.057682115584612,-0.022542865946889],[-0.044164683669806,-0.016627239063382,0.028905192390084],[0.049508567899466,-0.077688962221146,-0.10915283858776]],[[-0.063664212822914,-0.033568371087313,-0.063623040914536],[-0.067427851259708,-0.10463097691536,-0.055450037121773],[0.052250675857067,-0.15496844053268,-0.057984795421362]],[[-0.11316078901291,0.21387831866741,0.11766367405653],[0.037363339215517,-0.12751945853233,-0.037668220698833],[0.02157774195075,-0.0025610134471208,-0.10049064457417]],[[0.16007786989212,0.039531216025352,0.040053997188807],[-0.13281263411045,0.016568219289184,-0.089409098029137],[0.066832609474659,-0.011278575286269,-0.11187057942152]],[[-0.04123829677701,0.091144077479839,0.044393584132195],[0.051232106983662,0.059097867459059,-0.050085667520761],[-0.07665491849184,0.069721102714539,0.10740447044373]],[[0.074851907789707,0.016087662428617,0.034131642431021],[0.22919923067093,0.062696538865566,-0.029487123712897],[0.086736463010311,-0.055363804101944,0.051824174821377]],[[-0.1771577000618,-0.095032930374146,0.20870526134968],[-0.17028295993805,-0.09472794085741,0.050366882234812],[-0.018097434192896,-0.056298870593309,0.063393086194992]],[[-0.015578100457788,0.01062700804323,0.016287457197905],[0.090540833771229,0.02671192958951,0.063161171972752],[0.010479065589607,0.032721798866987,0.13896045088768]],[[-0.15944328904152,-0.0035473264288157,0.059362351894379],[-0.24059833586216,-0.032719168812037,-0.041752696037292],[-0.35507974028587,-0.15598705410957,0.012320744805038]],[[-0.14629548788071,0.030195165425539,0.01144649926573],[-0.044253166764975,-0.086492717266083,-0.025641981512308],[0.010768828913569,0.047513414174318,0.041090205311775]],[[0.1698262244463,-0.05637613683939,-0.060595024377108],[0.095170460641384,-0.00071534217568114,0.087664514780045],[0.1156317666173,0.14757220447063,0.022354315966368]],[[-0.090485312044621,0.02271606400609,0.10707872360945],[-0.12686036527157,-0.25253629684448,0.11144584417343],[-0.13788118958473,-0.18911658227444,0.12283955514431]],[[0.16445094347,0.021131938323379,-0.0189113561064],[-0.026550417765975,-0.18792054057121,-0.058492347598076],[0.14114366471767,-0.13610924780369,-0.022089378908277]],[[0.028153512626886,0.14628332853317,-0.15968132019043],[-0.023068575188518,0.047089695930481,0.024835212156177],[-0.026345571503043,-0.12286259233952,0.13984397053719]],[[-0.047365050762892,0.10915197432041,0.10869061201811],[0.16474507749081,0.079377971589565,-0.019737491384149],[0.076710507273674,-0.022075649350882,0.034894946962595]],[[0.17289417982101,-0.11615157872438,-0.083709381520748],[0.24850419163704,-0.1883462369442,-0.10508066415787],[-0.0049064690247178,-0.27573928236961,-0.21862459182739]],[[0.21866716444492,0.20038098096848,-0.06421535462141],[0.055008821189404,0.15682418644428,0.031427435576916],[-0.18175315856934,0.22824560105801,-0.026853675022721]],[[0.10011565685272,-0.050206143409014,0.017478164285421],[-0.0038227851036936,0.0067245638929307,-0.10755798220634],[0.16683760285378,-0.00525220669806,-0.020839178934693]],[[-0.10479225218296,-0.001987601397559,-0.0037519410252571],[0.051525700837374,-0.067693173885345,-0.03248356282711],[0.052549857646227,-0.057020619511604,0.0094998953863978]],[[0.029659066349268,-0.15512412786484,0.020201332867146],[-0.026005942374468,-0.061630234122276,-0.040229700505733],[-0.14416259527206,-0.092108450829983,0.042729161679745]],[[-0.073925510048866,0.012015791609883,-0.051628403365612],[-0.033616721630096,0.029144652187824,-0.17896391451359],[0.13397566974163,0.16114085912704,-0.057526361197233]],[[0.012018345296383,-0.063610650599003,-0.2158800214529],[0.14149349927902,0.062722451984882,-0.018213909119368],[-0.06419513374567,0.058401957154274,-0.041210889816284]],[[-0.040135521441698,0.044049520045519,0.009494611993432],[-0.065528757870197,0.0026617546100169,0.050975278019905],[-0.035594664514065,-0.14390973746777,0.075621098279953]],[[-0.080744452774525,0.0063219806179404,0.00094983208691701],[-0.013265625573695,-0.1620884090662,0.14967179298401],[-0.012294321320951,0.014247911982238,0.21375952661037]],[[-0.19427651166916,0.050492636859417,-0.034879840910435],[-0.055130075663328,-0.053409371525049,0.019267516210675],[0.053157445043325,-0.064840488135815,0.039436139166355]],[[-0.08551649749279,-0.10122368484735,0.15246906876564],[-0.057802479714155,-0.13363954424858,-0.058387439697981],[0.057657886296511,-0.24054628610611,0.059640858322382]],[[0.10959979891777,0.0022317057009786,0.0020318019669503],[0.1442299336195,-0.084057115018368,0.01683260127902],[-0.042480126023293,-0.22922247648239,-0.012984513305128]],[[0.0038463321980089,0.0095363762229681,-0.081653892993927],[0.025624724105,0.078554682433605,-0.079120777547359],[0.010252860374749,0.057276040315628,-0.13600814342499]],[[-0.14913964271545,-0.12046675384045,-0.0082395831122994],[-0.14000187814236,-0.10793494433165,0.071934580802917],[-0.036091383546591,0.17345587909222,0.13429135084152]],[[0.0091846771538258,0.027894603088498,0.043901827186346],[0.059995695948601,0.017800223082304,0.044380165636539],[0.056682720780373,0.0059823771007359,0.070614442229271]],[[0.058685336261988,-0.078251011669636,-0.063990578055382],[-0.05932703986764,-0.12714193761349,-0.23667195439339],[0.044678203761578,-0.040820755064487,-0.15274007618427]],[[0.055439092218876,0.084631338715553,0.021127013489604],[0.0067405328154564,0.11180152744055,-0.038768243044615],[-0.10788045823574,0.00741499196738,0.15452751517296]],[[0.10970243066549,0.031993176788092,0.049033429473639],[0.081620626151562,0.026372974738479,0.016281493008137],[0.056135766208172,0.039527609944344,0.0049789738841355]],[[-0.083081983029842,-0.072407081723213,0.11792116612196],[-0.047573667019606,-0.019676819443703,-0.018068050965667],[0.096805304288864,-0.0037583312951028,0.12738925218582]],[[0.14578692615032,-0.026541693136096,-0.10570472478867],[0.045875735580921,0.089189298450947,-0.072031810879707],[-0.095481373369694,0.23964641988277,-0.077964968979359]],[[-0.19092507660389,0.12094256281853,0.026867812499404],[-0.31977498531342,0.068195797502995,0.12252688407898],[-0.04229461401701,-0.027176601812243,0.084235079586506]]],[[[0.1316427141428,-0.042680289596319,0.047570448368788],[-0.054968517273664,0.031279250979424,0.025715664029121],[0.038974527269602,-0.091606862843037,0.055435046553612]],[[0.15094885230064,0.095471628010273,0.13365942239761],[-0.025685120373964,-0.009429857134819,-0.089309029281139],[0.17782555520535,0.11320747435093,0.10502353310585]],[[0.083309352397919,-0.13085705041885,-0.086844623088837],[0.024371061474085,0.04657531902194,-0.018779469653964],[-0.061452139168978,0.00013793323887512,-0.020479748025537]],[[0.024061946198344,0.09912633150816,-0.016424270346761],[0.0014104201691225,-0.0023000321816653,0.033307179808617],[0.02890095487237,-0.10002725571394,-0.023324305191636]],[[0.028993085026741,-0.028727233409882,-0.11353744566441],[0.028298428282142,0.14358608424664,0.010362681932747],[-0.090483896434307,-0.11791826039553,-0.17460003495216]],[[0.0035693778190762,0.11266525089741,0.026764158159494],[-0.026020754128695,-0.071916304528713,-0.17774701118469],[0.20941372215748,0.11369811743498,0.24971780180931]],[[0.095424823462963,0.043860170990229,-0.11347333341837],[0.0020100742112845,0.20681299269199,0.21871493756771],[0.039790369570255,-0.045371528714895,0.026413211598992]],[[-0.0073905866593122,0.0055142729543149,-0.0042993891984224],[-0.067581050097942,0.11396756768227,0.10576802492142],[-0.026287015527487,0.099362038075924,0.13930357992649]],[[-0.022955927997828,-0.00055889110080898,0.12721863389015],[-0.13842959702015,0.11872448027134,-0.042316198348999],[0.10600221157074,-0.055996492505074,-0.086302310228348]],[[0.04840274527669,0.091902159154415,-0.14241985976696],[-0.19505427777767,-0.027765657752752,-0.014323047362268],[-0.036010947078466,-0.02298198081553,-0.022159427404404]],[[0.26897543668747,-0.021709814667702,-0.23549874126911],[0.011803149245679,0.084916710853577,0.14701688289642],[-0.048851948231459,0.054644826799631,0.043621022254229]],[[-0.077979348599911,-0.085644863545895,-0.0051936246454716],[-0.062993235886097,0.01657434925437,0.13603720068932],[0.021391166374087,-0.12660127878189,-0.040010549128056]],[[-0.098978698253632,-0.10237788408995,0.053292080760002],[0.013518462888896,0.093519859015942,0.12662544846535],[-0.12943908572197,0.10652178525925,-0.18870902061462]],[[-0.26280185580254,-0.12139771878719,-0.081505157053471],[-0.13660261034966,-0.012276759371161,-0.0094025637954473],[-0.13561044633389,0.03284402564168,-0.024153085425496]],[[-0.12142933905125,-0.020586043596268,-0.010641412809491],[0.012869141064584,0.063175097107887,-0.0064908526837826],[-0.031861111521721,0.087063401937485,0.069526150822639]],[[0.002129839733243,-0.048250164836645,-0.11035253107548],[-0.10454711318016,-0.20931750535965,-0.24382548034191],[0.060028411448002,-0.081329397857189,0.09615246206522]],[[-0.057745426893234,-0.0071280640549958,0.064976036548615],[0.0079104043543339,0.063391819596291,0.016218742355704],[-0.071169748902321,-0.095759861171246,-0.02313594892621]],[[0.10166005045176,0.082938224077225,-0.10203278064728],[-0.016693295910954,-0.0052249110303819,-0.15334564447403],[-0.021885991096497,-0.023295478895307,0.10686783492565]],[[0.015953252092004,0.038369543850422,0.027171578258276],[-0.078092001378536,0.012029723264277,-0.015627706423402],[-0.11189702898264,0.087460167706013,0.045089311897755]],[[0.073772348463535,-0.043267883360386,0.10711569339037],[0.11023695766926,0.0047528333961964,0.18775922060013],[0.091146692633629,0.0014051262987778,0.096233271062374]],[[-0.081654600799084,-0.13951678574085,0.081729039549828],[-0.056725565344095,0.042322378605604,0.083373121917248],[-0.16518089175224,-0.029262023046613,0.043648615479469]],[[0.25003775954247,0.21536296606064,-0.15132406353951],[0.20776470005512,0.040816180408001,0.067230977118015],[0.13786809146404,-0.11056257784367,-0.082222491502762]],[[-0.18325044214725,0.042436100542545,0.032142996788025],[0.23817133903503,0.0057445205748081,-0.085926108062267],[-0.037472765892744,-0.10259170085192,-0.019740061834455]],[[-0.10503723472357,-0.12058793008327,-0.032904677093029],[-0.078538447618484,-0.053704813122749,0.07755184173584],[-0.027042403817177,-0.013322263024747,0.041111644357443]],[[0.060495190322399,0.094107434153557,0.05072757601738],[0.071462772786617,-0.0083777830004692,-0.13820640742779],[0.054206810891628,-0.040159411728382,0.074757240712643]],[[0.012802362442017,0.044568076729774,0.068449608981609],[0.036720767617226,0.039379842579365,-0.064651004970074],[-0.030082821846008,-0.049325421452522,0.10734594613314]],[[-0.0043118284083903,-0.10144907981157,0.0032864287495613],[0.13702245056629,-0.018493846058846,0.0015146908117458],[-0.075881645083427,-0.059623897075653,0.096602767705917]],[[-0.058244373649359,-0.09038582444191,0.014389109797776],[0.08373299241066,0.055733773857355,0.057183735072613],[-0.061268337070942,0.071940466761589,-0.16423024237156]],[[-0.063271783292294,-0.11484844982624,-0.027628462761641],[-0.059357479214668,-0.10096430033445,-0.063509464263916],[0.089656859636307,-0.049384281039238,-0.0039055056404322]],[[-0.00088540610158816,-0.097806707024574,0.026204816997051],[-0.071466028690338,0.010927479714155,0.021139778196812],[-0.015071788802743,-0.019736556336284,0.077967718243599]],[[-0.014741668477654,0.076909966766834,-0.071377314627171],[-0.17760014533997,0.030641390010715,0.046471893787384],[-0.1477165222168,-0.060219794511795,-0.12732771039009]],[[-0.028111455962062,-0.083713933825493,0.0249203145504],[0.076880641281605,0.010647416114807,-0.043426256626844],[0.055330630391836,-0.058135878294706,-0.037371456623077]],[[0.012278941459954,-0.05114721506834,0.11845551431179],[-0.075271189212799,0.083986558020115,0.21909555792809],[0.080398507416248,0.0051773372106254,0.15539188683033]],[[0.057861428707838,0.011863799765706,0.042441748082638],[0.017378391698003,0.024016056209803,0.12282062321901],[-0.12867951393127,-0.013591683469713,0.05179350450635]],[[-0.14038954675198,0.02956379763782,0.12039453536272],[0.048079416155815,-0.03603358566761,-0.049731153994799],[0.072982229292393,-0.052093394100666,0.11314731836319]],[[0.1011720225215,0.10257063806057,0.11243513971567],[-0.021995345130563,0.074484221637249,0.063210293650627],[0.11912098526955,-0.026160951703787,0.047567896544933]],[[-0.012546797282994,0.11650489270687,-0.054773427546024],[-0.082259438931942,-0.066855855286121,0.097166500985622],[0.03633051738143,0.21672734618187,0.13947296142578]],[[0.067213855683804,-0.081468790769577,0.13865548372269],[-0.13658040761948,-0.11402716487646,-0.037335313856602],[-0.10377156734467,0.14309392869473,-0.031765282154083]],[[-0.065852150321007,-0.016386574134231,0.047863822430372],[0.029217211529613,-0.034400723874569,0.10394329577684],[0.06089449301362,0.016853848472238,-0.15444934368134]],[[-0.068382665514946,0.047588441520929,-0.010985365137458],[0.026868341490626,-0.098933905363083,0.14020405709743],[0.22793439030647,0.093232586979866,-0.086591117084026]],[[0.0099561614915729,-0.056155357509851,-0.0017698808806017],[0.18672388792038,-0.12220155447721,-0.084839276969433],[-0.13921271264553,0.022009497508407,0.01250178553164]],[[0.011216089129448,-0.036200672388077,-0.042957872152328],[0.073790922760963,0.091884531080723,-0.035722322762012],[0.092749118804932,0.094626471400261,0.043194092810154]],[[-0.083782158792019,0.028089124709368,-0.0041689602658153],[-0.1484280526638,-0.14895284175873,-0.12137298285961],[-0.12109655886889,-0.1209390386939,-0.074603147804737]],[[-0.061684530228376,0.007413865532726,0.061849217861891],[-0.10310868173838,-0.029504096135497,0.032321289181709],[-0.099940478801727,-0.016412096098065,-0.037583753466606]],[[0.064589984714985,-0.024950971826911,-0.075780153274536],[0.016456961631775,0.0011899142991751,-0.0021928385831416],[-0.071263089776039,-0.11433947831392,0.0997444242239]],[[-0.049334522336721,-0.084637366235256,0.012078128755093],[-0.058151792734861,-0.058361738920212,-0.062346085906029],[0.071886211633682,0.088919296860695,0.053499169647694]],[[-0.21690194308758,0.011269732378423,-0.092608921229839],[-0.13374379277229,-0.047409750521183,-0.11101664602757],[0.054819978773594,0.047701310366392,-0.12893134355545]],[[0.085293628275394,0.038785714656115,-0.020322095602751],[0.0076878690160811,0.053530592471361,0.029759267345071],[-0.028413994237781,-0.06857892870903,-0.14129796624184]],[[-0.052782036364079,0.095023699104786,-0.045328371226788],[-0.20314824581146,-0.020992953330278,0.16918736696243],[-0.016396034508944,-0.028816377744079,0.046192206442356]],[[-0.027941005304456,-0.0056096194311976,0.12159779667854],[-0.017787832766771,-0.07595919072628,-0.0020837991032749],[-0.1265586912632,-0.029550518840551,0.006047869566828]],[[-0.031537771224976,-0.036056775599718,0.082158260047436],[-0.062266621738672,-0.084918789565563,0.033823005855083],[-0.01982232183218,0.0058580646291375,-0.054389975965023]],[[-0.0060274451971054,0.0053358967415988,-0.20454104244709],[0.090469874441624,0.0081716785207391,-0.070915497839451],[-0.072685614228249,-0.02935953065753,0.1012322679162]],[[-0.033205363899469,-0.099114246666431,-0.022031037136912],[-0.019828444346786,0.021446391940117,0.062800422310829],[-0.15542224049568,-0.038411367684603,0.026728490367532]],[[0.032044388353825,-0.059571713209152,-0.014872077852488],[0.013356698676944,0.10328076779842,0.022109905257821],[0.12253663688898,-0.014406681060791,0.071826539933681]],[[0.0058984365314245,0.070350386202335,-0.040554858744144],[0.15935331583023,-0.001187375979498,-0.078829534351826],[-0.0028084937948734,-0.065703183412552,-0.090506695210934]],[[0.0028658458031714,-0.092348620295525,0.020045092329383],[0.051455419510603,0.0013372398680076,0.030820857733488],[-0.0070179798640311,0.065480619668961,0.060081638395786]],[[0.26502719521523,0.10950464755297,-0.036707926541567],[0.12622061371803,-0.052572883665562,-0.055687945336103],[0.041793316602707,0.028274020180106,0.057112619280815]],[[-0.23000472784042,0.017115268856287,-0.015203597024083],[-0.089756272733212,0.079873852431774,0.060271665453911],[-0.063220232725143,-0.011204329319298,-0.015752628445625]],[[-0.053111348301172,-0.073636747896671,-0.14179237186909],[-0.0024278468918055,0.0063363970257342,-0.12949529290199],[0.15560410916805,-0.0086926436051726,0.018381331115961]],[[0.045387595891953,-0.11336454004049,-0.0002419437514618],[-0.073607690632343,0.0062966137193143,-0.0064052399247885],[-0.11853573471308,-0.027748718857765,0.017008872702718]],[[0.049319706857204,0.0019191286992282,0.053992208093405],[-0.072431959211826,0.026853194460273,0.022558934986591],[0.035520248115063,-0.044044580310583,-0.013500440865755]],[[-0.034373801201582,0.01643673889339,0.0074390871450305],[-0.27522704005241,-0.041492313146591,-0.11184992641211],[0.079643249511719,-0.054832153022289,-0.12524470686913]],[[-0.067041829228401,-0.1150171533227,0.080360725522041],[-0.024736527353525,-0.0291494615376,0.096130341291428],[-0.05263901501894,0.10100062191486,0.031969424337149]],[[0.097356073558331,0.20767840743065,0.21780508756638],[-0.13143393397331,0.056986715644598,0.032042410224676],[-0.035833723843098,-0.086244203150272,0.013919001445174]],[[-0.013067119754851,-0.056536510586739,0.021329265087843],[-0.14269331097603,-0.13654331862926,-0.011285700835288],[-0.017513072118163,-0.019574768841267,0.048354394733906]],[[-0.01575155928731,0.036628883332014,-0.037709821015596],[-0.03719787299633,0.050467886030674,-0.039687715470791],[-0.11526846885681,-0.01181935146451,-0.017249051481485]],[[-0.13636758923531,0.076711289584637,0.16183356940746],[0.061287984251976,-0.044808845967054,-0.0037897638976574],[-0.11978314071894,-0.092532135546207,0.019596500322223]],[[0.07638156414032,0.090486660599709,0.041614904999733],[0.10669109225273,0.02972506172955,-0.12128769606352],[-0.21472570300102,-0.02514368109405,-0.056296870112419]],[[0.11390920728445,-0.015278616920114,-0.091642469167709],[-0.14572714269161,-0.061847239732742,-0.037686571478844],[-0.02466688118875,0.043291423469782,0.058145999908447]],[[0.033267062157393,-0.07527170330286,-0.12012568861246],[-0.10967288911343,0.012281315401196,0.11362982541323],[0.035746324807405,-0.032773889601231,-0.044874224811792]],[[-0.22874172031879,-0.099548034369946,0.15309903025627],[-0.13672597706318,-0.097788959741592,0.21118004620075],[0.10935448110104,0.10378652065992,-0.10659784078598]],[[-0.016605116426945,0.00020815699826926,-0.010909389704466],[-0.10596975684166,-0.055679902434349,0.028355808928609],[-0.073298864066601,-0.02964872866869,-0.063207790255547]],[[-0.0032294834963977,-0.055609431117773,0.03162981197238],[0.14379018545151,-0.0062477504834533,0.021513141691685],[-0.021930411458015,0.001725368318148,-0.16187578439713]],[[0.25955593585968,0.13533096015453,0.014206939376891],[-0.058140508830547,-0.0063605047762394,-0.024308633059263],[-0.041541017591953,-0.05776109918952,-0.057533971965313]],[[0.0014447016874328,-0.07457721978426,-0.083441987633705],[-0.0029499211814255,0.1548684835434,0.1361081302166],[-0.05151080712676,-0.037170495837927,0.014057309366763]],[[0.022218994796276,0.033484313637018,-0.020620100200176],[0.065246902406216,0.034634161740541,-0.01291395444423],[0.036211278289557,-0.066504530608654,-0.11583568155766]],[[0.070210032165051,-0.0048378692008555,-0.018251948058605],[-0.12548054754734,-0.038759004324675,0.0030179845634848],[-0.050642259418964,-0.029169846326113,-0.15794493257999]],[[0.054191559553146,0.106210693717,0.021981630474329],[-0.068274304270744,-0.060771577060223,0.031495906412601],[-0.13232257962227,-0.028446661308408,-0.06484616547823]],[[0.077513411641121,0.038191150873899,-0.18386834859848],[0.053123958408833,-0.10090228170156,-0.13721679151058],[0.036511715501547,0.18683452904224,-0.064338527619839]],[[-0.043696690350771,-0.21973812580109,0.052113104611635],[-0.050343960523605,-0.041562162339687,0.048185743391514],[-0.10040985792875,0.0032885877881199,-0.03262535110116]],[[-0.13400158286095,0.046407356858253,0.024011069908738],[-0.0018709996948019,0.091651603579521,-0.12385097146034],[0.045813445001841,-0.11156367510557,0.026085942983627]],[[0.015953253954649,-0.047976937144995,0.030090283602476],[-0.072621546685696,-0.093303442001343,0.22149883210659],[-0.10433495044708,0.12124706059694,0.20238962769508]],[[0.071485832333565,-0.07296422123909,0.062913320958614],[0.047729030251503,-0.01460678409785,0.1932045519352],[0.061817366629839,0.048752713948488,0.23477466404438]],[[-0.12507367134094,0.0090901236981153,0.015332563780248],[-0.018865093588829,-0.040636297315359,0.071257308125496],[-0.063032425940037,-0.073633961379528,0.00070797908119857]],[[0.16580517590046,0.063701882958412,0.11598693579435],[-0.034858420491219,-0.14276073873043,-0.012067331932485],[-0.069785706698895,-0.092658437788486,0.16212238371372]],[[-0.10944962501526,-0.16879899799824,-0.071684889495373],[-0.08066088706255,-0.083899356424809,-0.038282930850983],[-0.0066294739954174,0.034857179969549,0.1148661673069]],[[-0.046016443520784,-0.016378507018089,0.098354339599609],[-0.2028785943985,-0.0072503690607846,-0.026096314191818],[-0.045524481683969,0.029865758493543,0.18022894859314]],[[0.015468962490559,-0.0462346971035,0.047532614320517],[-0.0096690021455288,0.070722922682762,0.27705651521683],[-0.061416033655405,-0.064887724816799,-0.039543125778437]],[[0.097107194364071,0.011598568409681,0.017489239573479],[0.092075571417809,-0.030033148825169,-0.024546219035983],[0.015999898314476,0.011876105330884,0.098053082823753]],[[-0.00014022755203769,-0.07486379891634,-0.16251912713051],[-0.091840289533138,0.055365957319736,0.063061811029911],[-0.043860957026482,0.039228811860085,-0.060133788734674]],[[-0.1183143928647,-0.12996666133404,0.041276589035988],[0.032989140599966,0.047715310007334,-0.1475456058979],[0.069477632641792,-0.036872591823339,0.07513090223074]],[[0.012241130694747,-0.15838240087032,-0.095967635512352],[-0.040791656821966,-0.0074418517760932,0.059563223272562],[-0.11744800209999,-0.092581741511822,-0.13962130248547]],[[0.015885140746832,-0.062584206461906,-0.1648486405611],[0.097316391766071,-0.10511447489262,-0.1019941046834],[-0.044700782746077,0.081225924193859,0.085431188344955]],[[0.0023599164560437,0.016341730952263,0.045050691813231],[-0.12080402672291,-0.079307518899441,0.22336541116238],[-0.081124417483807,-0.14327216148376,-0.14762072265148]],[[-0.11658737063408,0.0431800596416,0.076846711337566],[0.11066257208586,-0.071480788290501,-0.0024361156392843],[0.087720692157745,0.0014062586706132,-0.05864791944623]],[[0.14779898524284,0.04914953187108,0.31015685200691],[0.030512474477291,-0.099748097360134,-0.14894695580006],[-0.16668510437012,0.097684815526009,0.073515973985195]],[[0.044826284050941,-0.058921318501234,0.11005759984255],[0.016385046765208,-0.12747757136822,-0.043950345367193],[0.1725447922945,-0.057677160948515,0.092823952436447]],[[0.039708618074656,0.063262164592743,0.03269974142313],[0.16901601850986,-0.010591830126941,-0.050267666578293],[-0.089204400777817,-0.044891759753227,0.099075451493263]],[[0.18416824936867,-0.019246209412813,0.22355446219444],[0.142468765378,0.041093289852142,-0.073414094746113],[-0.0090165883302689,0.045354634523392,0.072965763509274]],[[0.061153367161751,0.079673208296299,-0.04929768294096],[-0.019058678299189,-0.14802937209606,-0.038052592426538],[0.13748523592949,0.060403119772673,0.12083918601274]],[[0.077847898006439,-0.13914428651333,-0.049716088920832],[0.027652956545353,0.011413619853556,-0.014033616520464],[0.023978598415852,-0.052851788699627,-0.057460028678179]],[[0.037879224866629,0.23278634250164,0.11115119606256],[-0.052803780883551,0.038171887397766,0.0415646918118],[0.015644242987037,-0.024258373305202,0.23276650905609]],[[0.045145981013775,-0.0080070970579982,0.047758065164089],[0.042168606072664,-0.059182692319155,-0.0025300993584096],[0.031659416854382,0.1030620932579,-0.015758968889713]],[[0.06408953666687,-0.09038307517767,0.08920618891716],[0.096149072051048,-0.01870740018785,-0.073107838630676],[0.28864648938179,-0.010419991798699,-0.0077835530973971]],[[0.20488023757935,0.074881330132484,0.0013204582501203],[-0.019032441079617,-0.048623103648424,-0.011725327000022],[-0.11396779865026,0.030227676033974,0.10162150114775]],[[-0.19132730364799,-0.0072627924382687,0.10819343477488],[0.10434582084417,-0.018833734095097,-0.034612767398357],[-0.072530932724476,0.0050101233646274,0.085906937718391]],[[0.0044140368700027,-0.030926004052162,-0.045386783778667],[0.043432742357254,0.062147669494152,0.011388155631721],[0.11469706147909,-0.032614901661873,0.046258863061666]],[[-0.0048169242218137,-0.076417773962021,0.050912506878376],[-0.043802917003632,-0.11967486143112,0.079331934452057],[0.0099955983459949,0.0046244193799794,0.057928897440434]],[[0.057611990720034,-0.045296475291252,-0.10624176263809],[0.19523426890373,-0.060521569103003,-0.013037542812526],[0.13757091760635,-0.016053631901741,-0.05364028736949]],[[0.14611166715622,-0.21600763499737,-0.15820989012718],[-0.0013371715322137,-0.21476259827614,-0.029847823083401],[-0.179732888937,-0.093650713562965,-0.059937849640846]],[[-0.090079367160797,-0.039449255913496,0.00046812710934319],[-0.043750341981649,-0.13906900584698,0.030704475939274],[-0.13662992417812,0.039035007357597,0.058364797383547]],[[0.084089189767838,-0.22472773492336,-0.068167045712471],[0.026664637029171,-0.0076702455990016,-0.067718230187893],[0.06866242736578,-0.016835892572999,0.14370833337307]],[[-0.0060043539851904,-0.037534099072218,0.042338885366917],[-0.027196044102311,-0.23309154808521,-0.11168036609888],[0.0050441860221326,-0.06909653544426,0.079741179943085]],[[-0.0021407618187368,-0.051844451576471,0.0049809422343969],[0.0080989794805646,0.068070866167545,0.024325650185347],[-0.064903669059277,-0.24134540557861,-0.076595962047577]],[[-0.17941805720329,-0.079446017742157,-0.037543907761574],[-0.079623483121395,0.087310045957565,0.086023397743702],[-0.016092240810394,-0.033154759556055,-0.051795188337564]],[[-0.15370285511017,-0.094063371419907,-0.0068566990084946],[0.018948467448354,-0.0077168480493128,-0.13261310756207],[-0.048865657299757,0.084699906408787,0.093532249331474]],[[-0.11783240735531,-0.042621400207281,0.022439792752266],[-0.19836373627186,0.0076989531517029,0.037531733512878],[0.015302072279155,-0.059794161468744,0.078108720481396]],[[-0.12221238017082,-0.18479070067406,-0.025944627821445],[0.18387362360954,0.14458313584328,0.13161239027977],[-0.1278340369463,-0.054388139396906,0.0029333212878555]],[[-0.004071562550962,-0.064103163778782,0.18217547237873],[-0.12952522933483,-0.13197903335094,0.005698730237782],[-0.11767143756151,0.13520310819149,0.13000081479549]],[[0.039970614016056,-0.034538373351097,-0.0644626095891],[0.067535854876041,0.066349320113659,0.066345922648907],[0.12153427302837,-0.14923577010632,-0.1542022973299]],[[-0.033386953175068,0.087088376283646,-0.032291632145643],[0.014179925434291,-0.026201155036688,0.017564382404089],[0.12835384905338,0.064560115337372,0.11623629927635]],[[-0.17923252284527,0.0092511521652341,0.011190097779036],[0.058908373117447,0.030581576749682,-0.011060275137424],[0.13706061244011,0.10542418062687,-0.043066654354334]],[[-0.14078429341316,-0.09428945928812,0.084725901484489],[-0.04797950387001,-0.02115485817194,-0.12427466362715],[-0.13121035695076,-0.053094815462828,0.098360955715179]],[[0.13013558089733,0.2268008440733,0.11969146132469],[-0.077929444611073,-0.086010359227657,0.054247479885817],[-0.0063617206178606,0.074445180594921,-0.075826376676559]],[[0.1439632922411,0.043786562979221,0.10586399585009],[0.065488688647747,-0.0088254250586033,-0.014619122259319],[0.016493868082762,0.017830586060882,-0.018026866018772]],[[-0.11687289178371,-0.069692187011242,-0.16190156340599],[-0.039517808705568,0.068336397409439,0.053620472550392],[-0.13729213178158,0.052234925329685,0.12850169837475]],[[-0.078086040914059,-0.13786877691746,-0.20838794112206],[-0.019790897145867,-0.15283182263374,-0.046241540461779],[-0.10187015682459,-0.064435340464115,0.043791152536869]],[[-0.072003990411758,-0.0094345891848207,-0.12296330183744],[0.062500432133675,0.055409613996744,0.025563424453139],[0.032752823084593,-0.016021126881242,0.088419117033482]]],[[[-0.025758748874068,0.051337938755751,-0.016370354220271],[0.00093361467588693,-0.061271119862795,-0.064287632703781],[-0.10368327796459,-0.037328783422709,0.10097035765648]],[[-0.028610406443477,-0.010002074763179,-0.061690367758274],[0.043957866728306,0.026108540594578,0.073881953954697],[-0.012139193713665,0.028009511530399,0.051019605249166]],[[0.065208084881306,0.015673082321882,0.06322006881237],[0.0035340636968613,0.019616812467575,0.074000038206577],[-0.051902242004871,0.15274888277054,-0.060448762029409]],[[0.028945261612535,0.028396911919117,0.0081611201167107],[0.0065215979702771,0.040420614182949,-0.090832784771919],[-0.025436751544476,-0.082869634032249,-0.02424369007349]],[[0.046635422855616,0.046379584819078,0.07783117890358],[-0.16928680241108,-0.025047631934285,-0.100800588727],[0.0437624566257,-0.025648169219494,0.037992373108864]],[[-0.0073267975822091,0.11668381839991,0.010463820770383],[0.0011258077574894,-0.050382472574711,0.086146086454391],[-0.032832950353622,-0.053744550794363,0.057846073061228]],[[-0.011870186775923,0.011162236332893,0.018092010170221],[0.022147366777062,0.10101324319839,0.038849331438541],[0.1253447085619,0.024649940431118,0.096354372799397]],[[-0.024526281282306,0.02241051569581,-0.045720677822828],[-0.057029191404581,0.15006938576698,0.017885873094201],[-0.0067317588254809,0.0077636176720262,0.015170380473137]],[[0.11223394423723,-0.052915371954441,-0.02882357686758],[0.033278722316027,0.023747589439154,0.003647344186902],[-0.076249592006207,0.014229850843549,-0.12455838173628]],[[-0.051683429628611,-0.011842909269035,0.028591400012374],[0.084951221942902,0.032459188252687,-0.1595423668623],[0.1488830447197,-0.032974593341351,0.053538955748081]],[[-0.006249887868762,-0.040220089256763,0.07972002774477],[0.038681164383888,0.098721444606781,0.26188141107559],[-0.058289241045713,-0.044861912727356,-0.0067139961756766]],[[0.12427131831646,0.014074726961553,0.1658433675766],[-0.051217559725046,-0.016016699373722,-0.083656780421734],[-0.025427835062146,-0.15413352847099,-0.028686689212918]],[[-0.028949785977602,-0.0235211327672,0.0045069507323205],[-0.020016197115183,-0.088037915527821,0.069901287555695],[0.015839092433453,-0.017756933346391,0.16137273609638]],[[0.00010661745909601,-0.082347892224789,-0.21811793744564],[0.0049558887258172,-0.15081289410591,-0.15445721149445],[0.11782573163509,-0.089876763522625,-0.13667361438274]],[[0.08478906750679,-0.0076064043678343,0.01791482232511],[0.033545326441526,0.10687501728535,0.12167855352163],[-0.12496150285006,-0.018574561923742,0.050959940999746]],[[0.0042651537805796,-0.07482784986496,0.03683078661561],[-0.01853839494288,-0.0059252064675093,-0.01010603364557],[0.0058811297640204,-0.020693665370345,-0.15345656871796]],[[0.040055766701698,0.077157996594906,0.10879632085562],[0.029970932751894,-0.012421649880707,-0.16192774474621],[-0.025753267109394,-0.129245236516,-0.12131555378437]],[[-0.052473671734333,0.10877088457346,-0.031604893505573],[-0.080457463860512,0.060690704733133,-0.14316491782665],[0.077214024960995,0.084227077662945,-0.0010039417538792]],[[0.099752247333527,0.1521563231945,0.053441163152456],[0.0042805494740605,-0.13491037487984,-0.022816998884082],[0.042367484420538,-0.078239500522614,-0.053538389503956]],[[0.03327676281333,-0.058262553066015,-0.010393525473773],[0.12938092648983,-0.14634412527084,-0.20676116645336],[0.094964325428009,0.027989992871881,-0.16583172976971]],[[-0.030046006664634,-0.063285753130913,0.015061048790812],[-0.15344312787056,-0.074513077735901,-0.013487997464836],[0.020828170701861,0.0022582039237022,0.051287416368723]],[[-0.057831615209579,-0.1225877776742,0.034764483571053],[0.067244432866573,-0.033633317798376,0.14095583558083],[-0.00078762345947325,0.026508579030633,0.026026276871562]],[[0.09453772008419,-0.074232280254364,-0.18198017776012],[0.020904738456011,0.11673980951309,0.050888001918793],[0.055917769670486,-0.0081929387524724,0.099367700517178]],[[0.1077983379364,-0.00040717417141423,0.013708622194827],[0.1022681593895,0.10772088170052,0.045415930449963],[-0.30917993187904,-0.034539517015219,0.063130989670753]],[[-0.035158157348633,-0.055034603923559,-0.027186285704374],[-0.03438563272357,0.037250895053148,0.072963774204254],[0.09791387617588,-0.015968177467585,0.090948916971684]],[[0.076652191579342,0.014828139916062,0.021606801077724],[0.077477477490902,-0.012499394826591,0.052388422191143],[-0.073919363319874,-0.055981382727623,0.014701947569847]],[[0.023111678659916,0.034437995404005,-0.052457381039858],[0.031426727771759,0.17913107573986,-0.07198241353035],[-0.023495644330978,0.12863519787788,-0.011337115429342]],[[-0.017637759447098,0.12362992763519,-0.0031020094174892],[-0.05832751467824,-0.055132407695055,0.045764721930027],[0.036184851080179,-0.090381629765034,-0.13442553579807]],[[0.098522238433361,-0.020377818495035,0.011562426574528],[0.031774617731571,-0.10585264116526,-0.024866107851267],[-0.038692519068718,-0.00088044442236423,-0.07184062898159]],[[-0.035753194242716,0.062680661678314,-0.016406847164035],[0.081748314201832,-0.0041777542792261,-0.09060924500227],[0.0096602393314242,-0.032004028558731,0.076407589018345]],[[0.045268382877111,0.079287633299828,-0.077117130160332],[-0.044459946453571,0.071683652698994,-0.043606750667095],[-0.017970392480493,0.050416052341461,-0.11328868567944]],[[-0.09096834808588,0.01863794401288,-0.0059399516321719],[-0.16635544598103,-0.083880253136158,0.035649705678225],[0.059124540537596,0.15856094658375,-0.026953183114529]],[[-0.0097016729414463,0.077659420669079,0.053320404142141],[-0.028625149279833,-0.053574170917273,0.068614669144154],[0.0048864125274122,0.049490731209517,0.11093493551016]],[[0.034248080104589,0.049507223069668,0.06465570628643],[0.022023390978575,-0.031158205121756,0.025207862257957],[-0.039857380092144,-0.14879144728184,0.031373307108879]],[[-0.080722324550152,0.039715200662613,-0.056076068431139],[-0.043115302920341,-0.11955872178078,0.041941158473492],[-0.091933533549309,0.065576791763306,0.050721950829029]],[[0.12605153024197,0.055086150765419,0.019519750028849],[-0.072104193270206,-0.055098630487919,0.0094674304127693],[-0.11179180443287,-0.036921374499798,-0.052808340638876]],[[-0.13170702755451,0.0068811783567071,0.037907123565674],[0.029686946421862,0.0099156247451901,0.04183766618371],[-0.053721342235804,0.029061222448945,0.14591926336288]],[[-0.040227867662907,0.03524224460125,-0.038285650312901],[-0.048101063817739,0.1109349951148,0.11553776264191],[0.089949890971184,0.027960224077106,0.11626805365086]],[[-0.030286578461528,-0.079856708645821,0.0052053383551538],[0.13876312971115,0.056688010692596,0.039425812661648],[-0.079984322190285,-0.12233585119247,0.034898068755865]],[[-0.12719810009003,-0.028100186958909,-0.029857879504561],[-0.01591962389648,0.043157335370779,0.13491521775723],[-0.0065069212578237,-0.042402971535921,0.023539204150438]],[[0.047339972108603,-0.012624894268811,0.068743132054806],[-0.12308663129807,0.028937969356775,0.037352573126554],[-0.070228666067123,-0.10582552105188,0.078725390136242]],[[0.062799066305161,-0.020661693066359,-0.075426027178764],[-0.031593523919582,0.019061487168074,-0.10335025191307],[0.054176099598408,0.051712527871132,-0.03232441842556]],[[-0.085024476051331,0.071490436792374,0.034060638397932],[-0.046458411961794,0.021419737488031,0.032659132033587],[-0.018497241660953,-0.065919652581215,-0.16736473143101]],[[-0.027579916641116,0.015177179127932,-0.045743890106678],[-0.027361858636141,0.018121773377061,0.038438778370619],[-0.03297409042716,0.0641720443964,0.011536265723407]],[[-0.01099366042763,0.053012359887362,0.053181495517492],[-0.073196887969971,-0.0094261476770043,-0.017099764198065],[-0.031415894627571,-0.053098142147064,0.026082133874297]],[[0.09390639513731,-0.027452234178782,0.078419245779514],[-0.012297832407057,-0.063187547028065,-0.069354377686977],[-0.021327586844563,-0.14162886142731,-0.062670812010765]],[[-0.13514867424965,-0.020164065063,-0.022242883220315],[-0.011358198709786,0.11515990644693,-0.30095461010933],[0.12067487090826,0.024296065792441,-0.17594896256924]],[[0.082673586905003,0.056030821055174,0.035806424915791],[0.011970235034823,0.046280097216368,0.10241743177176],[-0.08677676320076,0.02156868763268,-0.043608509004116]],[[-0.012198716402054,0.041922632604837,-0.13316532969475],[0.034974008798599,0.12453779578209,0.094631060957909],[-0.12568850815296,-0.12557779252529,0.080522820353508]],[[0.0015628391411155,0.016350654885173,-0.006015682592988],[-0.013101343996823,-0.13879558444023,-0.060178149491549],[-0.080138713121414,-0.045611165463924,-0.065114207565784]],[[0.018046472221613,0.020565927028656,0.0015304452972487],[0.064822971820831,0.028524985536933,-0.090462110936642],[-0.032109621912241,-0.043544948101044,-0.02372819185257]],[[0.060237061232328,-0.029289161786437,-0.017203548923135],[-0.022774111479521,-0.042399007827044,0.011355572380126],[-0.012291848659515,0.039544425904751,-0.0084583647549152]],[[0.0057019218802452,0.025907807052135,0.016386177390814],[-0.081126622855663,0.1012900993228,0.031932286918163],[0.012757866643369,0.13285081088543,0.029475370422006]],[[0.065250173211098,0.08480454236269,0.027399268001318],[0.0029826427344233,-0.0072022783569992,-0.0072453552857041],[0.12806364893913,-0.0040344544686377,-0.12248064577579]],[[0.02201677300036,-0.074001990258694,-0.087411940097809],[0.095441125333309,0.085908807814121,-0.054022382944822],[0.11084980517626,-0.033602483570576,0.045856270939112]],[[-0.23353333771229,-0.011215445585549,-0.010209825821221],[-0.06519041210413,0.048230569809675,0.010991584509611],[0.22116127610207,0.077478244900703,0.066081255674362]],[[-0.055617853999138,-0.095877304673195,-0.11937122792006],[0.054554127156734,0.051916182041168,0.14456069469452],[-0.086553037166595,0.095567621290684,0.13014374673367]],[[-0.044816106557846,-0.011085051111877,-0.0025148731656373],[-0.0035363216884434,-0.00090776587603614,0.029202729463577],[-0.012388358823955,-0.087150305509567,-0.091619789600372]],[[0.090577952563763,0.071557015180588,0.063883729279041],[-0.074154034256935,-0.1602411866188,-0.13506677746773],[-0.018676282837987,-0.26026204228401,-0.024280767887831]],[[0.19474650919437,0.089508906006813,-0.011006657965481],[0.14773134887218,0.015316370874643,-0.099325515329838],[0.1278790384531,-0.082818597555161,-0.066086791455746]],[[-0.032217666506767,-0.082405619323254,-0.024881744757295],[-0.035340268164873,-0.057296719402075,0.037031300365925],[-0.10296620428562,-0.07476069778204,-0.023077676072717]],[[-0.070262506604195,-0.065333969891071,0.014624437317252],[0.017502913251519,0.028852673247457,-0.10200475156307],[0.18460549414158,-0.15024466812611,-0.11896806210279]],[[0.012802544981241,0.09341511875391,0.18584589660168],[-0.10877378284931,0.10198437422514,0.15980334579945],[0.15776850283146,0.0073880250565708,-0.0034145868849009]],[[0.065485060214996,0.062802813947201,-0.022163987159729],[-0.013882299885154,0.013402575626969,0.031808819621801],[-0.15273809432983,0.041743505746126,0.13417048752308]],[[0.012943198904395,0.009542596526444,-0.0084298020228744],[-0.054935779422522,-0.0031417738646269,-0.10991933941841],[0.0075029185973108,0.018947528675199,-0.087368346750736]],[[0.099679976701736,0.015202910639346,-0.01511821616441],[0.042812746018171,0.032609991729259,0.028942242264748],[-0.15175822377205,0.026719637215137,0.091248445212841]],[[-0.12018448859453,0.080448754131794,-0.0099767483770847],[0.16945153474808,0.020150147378445,-0.053727645426989],[0.051976248621941,0.0038526821881533,-0.074784725904465]],[[0.086395882070065,-0.045959200710058,-0.025721983984113],[0.14438320696354,-0.055462136864662,-0.16554927825928],[-0.065505541861057,-0.032294701784849,-0.042278297245502]],[[-0.066501349210739,0.068386420607567,-0.058782037347555],[-0.01842980273068,-0.032515440136194,-0.06730604916811],[0.0048964926972985,0.014436920173466,-0.037651225924492]],[[-0.0068924585357308,0.03394628316164,0.1076732724905],[0.068194560706615,0.010683567263186,-0.046841513365507],[-0.03726564347744,-0.043611709028482,0.058129291981459]],[[-0.016155878081918,-0.038118168711662,-0.034846220165491],[-0.083305269479752,0.022846724838018,0.22286015748978],[-0.034317277371883,0.0079917935654521,-0.1220797598362]],[[0.038896750658751,0.080579407513142,0.22025932371616],[-0.059393391013145,-0.0051514646038413,-0.0685148909688],[0.08708830177784,0.085345663130283,-0.12599357962608]],[[0.053790494799614,0.16073590517044,0.060944128781557],[0.022135490551591,-0.036230590194464,-0.025432066991925],[-0.14115713536739,-0.057958692312241,-0.12317206710577]],[[-0.057039462029934,0.0069005750119686,-0.070543818175793],[0.04050849750638,-0.00023175968090072,-0.13481329381466],[0.0072114174254239,0.10360988229513,0.068653717637062]],[[-0.027694094926119,-0.035392723977566,-0.04287401214242],[-0.013651371002197,-0.066836751997471,-0.07538565248251],[0.01291379891336,-0.086051695048809,-0.15562528371811]],[[-0.0079272696748376,0.12601742148399,-0.065708100795746],[0.033408746123314,0.10132183134556,-0.25547647476196],[-0.018802648410201,0.13088369369507,-0.13246701657772]],[[-0.027703216299415,-0.015312402509153,-0.074813552200794],[-0.047137558460236,-0.090496994554996,0.1115864366293],[0.089829459786415,-0.019868146628141,0.13766676187515]],[[-0.017590193077922,-0.080040022730827,-0.054520960897207],[-0.052138555794954,-0.074928045272827,-0.11343157291412],[0.090198121964931,-0.13222140073776,-0.084255583584309]],[[-0.029431704431772,0.11003839224577,0.12518766522408],[0.024292940273881,0.0065788463689387,-0.085126265883446],[-0.061890982091427,-0.033411797136068,-0.060424417257309]],[[-0.0093872928991914,-0.11075796931982,0.039968598634005],[0.0035125478170812,-0.046506267040968,-0.071384064853191],[0.055991474539042,0.070672392845154,-0.11569462716579]],[[0.011122534051538,0.048441506922245,0.011194466613233],[-0.0534862652421,-0.0015675013419241,0.0086638182401657],[-0.013387621380389,0.075417302548885,-0.073978111147881]],[[0.094762161374092,-0.056334231048822,0.13420151174068],[-0.048929814249277,0.013518399558961,0.0034328149631619],[-0.012963718734682,-0.082036800682545,0.014462298713624]],[[-0.01397951412946,-0.0062552276067436,-0.043249350041151],[0.055056281387806,0.054396353662014,-0.098945945501328],[0.056614402681589,0.2026205509901,0.2638965845108]],[[-0.026638524606824,-0.040174819529057,-0.054866280406713],[-0.10471702367067,-0.16942240297794,-0.071424975991249],[-0.093546345829964,-0.16042837500572,-0.032947830855846]],[[-0.024781903252006,0.040751066058874,0.10449846088886],[-0.050718322396278,-0.0026372733991593,-0.13000564277172],[0.100401699543,-0.054821562021971,0.078569941222668]],[[-0.14383700489998,-0.15457762777805,-0.15812201797962],[-0.063069112598896,-0.091462031006813,-0.08412392437458],[-0.010537137277424,0.017535703256726,0.12437354028225]],[[0.026541182771325,0.040927782654762,-0.049831710755825],[0.081897363066673,-0.02665738388896,0.064331874251366],[-0.024830512702465,0.043167971074581,0.065839402377605]],[[-0.045127909630537,-0.044516790658236,-0.074040286242962],[-0.025278070941567,0.024450672790408,0.036189883947372],[-0.068122439086437,-0.012238996103406,-0.0040849009528756]],[[-0.042286645621061,-0.12904892861843,0.044475179165602],[0.097792066633701,-0.092737846076488,-0.1182067245245],[0.074599489569664,0.0035896387416869,-0.063551187515259]],[[0.02508645132184,-0.097788043320179,-0.18086375296116],[0.0039564701728523,0.034910377115011,0.17905215919018],[0.014755392447114,0.066828578710556,0.058723103255033]],[[0.0061749652959406,0.018265023827553,0.03934883326292],[-0.080809041857719,-0.038440588861704,0.0081420755013824],[0.036262456327677,0.13423404097557,0.13873034715652]],[[-0.0015899330610409,-0.026419589295983,-0.071628272533417],[-0.085294663906097,-0.10195485502481,-0.081751570105553],[0.025454923510551,-0.0684854388237,-0.031747490167618]],[[-0.076617240905762,-0.087745808064938,0.15615808963776],[0.051496237516403,0.042084977030754,0.066615179181099],[-0.010742265731096,-0.025341600179672,0.074009515345097]],[[-0.14366181194782,-0.1558613628149,-0.014645227231085],[-0.14503416419029,-0.068897344172001,0.13066582381725],[0.022966785356402,-0.05023218691349,0.06839819252491]],[[0.0090464567765594,0.12628622353077,-0.028926448896527],[-0.028166992589831,-0.034288678318262,0.053861532360315],[0.066741734743118,0.041194342076778,-0.011038096621633]],[[0.024405913427472,-0.0067918309941888,0.13255102932453],[-0.10620906203985,0.074656412005424,0.0048883962444961],[-0.016137370839715,-0.033650752156973,-0.070065826177597]],[[0.0012238493654877,-0.037061143666506,0.021730935201049],[0.051307201385498,0.06406494230032,0.13031031191349],[-0.1471604257822,-0.10357218235731,-0.074516579508781]],[[0.10669182986021,0.075228035449982,0.067820847034454],[0.070964947342873,-0.059209477156401,-0.0087121101096272],[-0.13808317482471,0.024993095546961,0.11588428914547]],[[0.061706330627203,-0.017382428050041,0.075671434402466],[-0.041704095900059,-0.030373211950064,0.060677461326122],[-0.036313775926828,0.0082042813301086,-0.040688283741474]],[[-0.024023503065109,0.055513922125101,0.090880043804646],[-0.006361732725054,0.10635093599558,-0.062238529324532],[-0.19306898117065,0.10017527639866,0.11162804067135]],[[0.012857309542596,0.036466404795647,-0.041010480374098],[-0.1166989132762,-0.17437919974327,-0.063170813024044],[-0.064188048243523,-0.099616691470146,0.070754632353783]],[[-0.012953665107489,-0.022287331521511,-0.068996980786324],[-0.019787443801761,-0.074643604457378,0.0095469551160932],[-0.081131227314472,-0.02717025578022,0.11515067517757]],[[0.17163369059563,0.078106828033924,0.028932960703969],[0.1070638820529,0.030498081818223,0.078712739050388],[-0.071513816714287,-0.066186301410198,-0.029509704560041]],[[0.043942116200924,-0.024866383522749,0.076007708907127],[0.049201928079128,0.020160432904959,-0.020366653800011],[0.00183890608605,-0.0029396994505078,0.1216854378581]],[[-0.065288335084915,-0.078373536467552,-0.019279211759567],[0.028050504624844,0.0083568189293146,0.030694354325533],[-0.098435118794441,-0.086730062961578,-0.082587726414204]],[[0.049712512642145,0.11682445555925,-0.012731130234897],[0.10402988642454,0.030275765806437,0.16750091314316],[-0.038989700376987,0.010286868549883,-0.014430003240705]],[[-0.10532362014055,-0.012640533968806,-0.017657505348325],[0.1156208589673,-0.032481268048286,-0.12531153857708],[0.042417742311954,0.055758718401194,-0.088505581021309]],[[-0.03994358330965,0.0016606367425993,-0.00026501680258662],[-0.10047115385532,-0.11506306380033,0.12427116930485],[-0.032787971198559,0.066357895731926,0.058774001896381]],[[-0.14186137914658,0.12618860602379,-0.12626734375954],[0.091134168207645,0.036455571651459,-0.093909345567226],[0.15187315642834,0.16729664802551,0.17106507718563]],[[-0.069051027297974,0.045391980558634,0.042181592434645],[-0.056878536939621,0.001395836356096,-0.0069677527062595],[-0.14713218808174,-0.018262354657054,-0.03791918605566]],[[-0.0022585256956518,0.03627921640873,-0.0093575483188033],[-0.066391505300999,-0.10144556313753,-0.027482707053423],[-0.032311700284481,0.059724159538746,0.023217100650072]],[[-0.055783033370972,-0.0080831982195377,0.022492572665215],[-0.025140378624201,-0.031378425657749,0.039879214018583],[0.030137011781335,-0.020476011559367,-0.091590754687786]],[[-0.044103376567364,-0.036234483122826,-0.013493564911187],[-0.04809495806694,0.0010922406800091,-0.096324630081654],[0.072263278067112,-0.0040218704380095,0.033251401036978]],[[-0.01186175365001,0.010811859741807,-0.024308508262038],[0.039553642272949,-0.02933556586504,0.038492932915688],[0.019123433157802,0.060985662043095,0.12934474647045]],[[-0.041182171553373,0.14741268754005,0.0035920697264373],[-0.13581517338753,0.092103131115437,-0.026103515177965],[-0.14607337117195,0.071064963936806,-0.013478085398674]],[[-0.076393902301788,0.077897615730762,0.12815898656845],[0.03217763453722,0.064735554158688,0.14729532599449],[-0.20515623688698,-0.11050987243652,-0.079117253422737]],[[-0.043543983250856,0.016057573258877,-0.098575875163078],[0.0051849805749953,0.019453890621662,-0.072474293410778],[0.052262328565121,-0.010112174786627,0.079196318984032]],[[-0.012331211008132,0.017889088019729,0.034967724233866],[0.19157899916172,0.099274024367332,0.093740992248058],[-0.074864521622658,0.0087531488388777,-0.10137610882521]],[[-0.031689804047346,-0.048330672085285,-0.1085774153471],[-0.07729659229517,0.07635722309351,0.0081362202763557],[-0.03832894936204,-0.058825135231018,0.018902977928519]],[[0.0118686882779,-0.031780865043402,0.017156314104795],[-0.069621555507183,-0.06890993565321,-0.085357047617435],[-0.054796680808067,0.016317363828421,0.053260833024979]],[[-0.13896438479424,0.02794087678194,-0.015047760680318],[-0.011746332980692,-0.026484558358788,0.0075608002953231],[-0.12854088842869,-0.00087906332919374,0.14198544621468]],[[0.021083360537887,-0.13701629638672,-0.12804459035397],[0.069149181246758,0.0064916522242129,-0.064811371266842],[0.18503215909004,0.02374585904181,-0.021739929914474]],[[0.073283463716507,-0.085624694824219,0.085183225572109],[-0.12209840863943,-0.047609876841307,-0.087173312902451],[-0.036635965108871,0.017240196466446,-0.10602109879255]],[[0.053873550146818,0.12496990710497,-0.047524459660053],[-0.055098328739405,0.0024441857822239,0.023555092513561],[0.065897896885872,-0.022870456799865,-0.019071584567428]],[[0.093401454389095,-0.13195717334747,0.01072418410331],[0.073224298655987,-0.060705740004778,0.12629270553589],[-0.038114920258522,0.035676971077919,-0.029943788424134]],[[0.015556441619992,-0.033663250505924,-0.0063333832658827],[-0.004388861823827,-0.15069809556007,-0.0053612045012414],[0.070048168301582,-0.014279931783676,-0.052263386547565]],[[-0.047316577285528,-0.049003254622221,0.060657903552055],[-0.046405903995037,0.14563101530075,0.073511987924576],[-0.17118418216705,0.18140561878681,0.12576103210449]],[[-0.0088532445952296,0.075352787971497,-0.032261978834867],[-0.0047925538383424,0.13822712004185,0.06210982427001],[-0.15309730172157,-0.085819035768509,0.0087251467630267]]],[[[0.0029569908510894,-0.12634845077991,0.12376814335585],[0.1014923080802,0.039545089006424,0.00060244026826695],[0.016995804384351,-0.055269178003073,-0.0099133895710111]],[[0.052421253174543,0.047450583428144,0.10979793220758],[0.23440663516521,0.0074308314360678,0.023417051881552],[-0.0018859980627894,0.1076831817627,-0.024920631200075]],[[0.0092238942161202,-0.02899007499218,0.067583978176117],[0.10779057443142,0.039981342852116,0.047795545309782],[-0.052775342017412,-0.008997998200357,0.038683284074068]],[[-0.031840160489082,-0.068374820053577,0.051177740097046],[-0.074274852871895,-0.014281750656664,0.041857372969389],[0.0027706767432392,-0.11521900445223,-0.21910026669502]],[[0.09148445725441,0.024073412641883,-0.088568389415741],[-0.099979542195797,-0.025200502946973,-0.10793981701136],[-0.076433941721916,-0.016731314361095,-0.021757168695331]],[[0.055262017995119,0.081673160195351,-0.11122401058674],[0.11848310381174,-0.14366787672043,-0.13194128870964],[-0.14863541722298,0.092695191502571,0.13095469772816]],[[-0.024956421926618,-0.041683178395033,0.036796592175961],[0.35194125771523,0.12003897875547,-0.022370748221874],[0.10352094471455,0.14868932962418,0.16275672614574]],[[-0.11745523661375,0.056706424802542,0.052746638655663],[-0.23734223842621,-0.055694699287415,0.10271167010069],[-0.0040023876354098,0.047965697944164,0.20880423486233]],[[-0.037281554192305,0.050699304789305,0.053648635745049],[-0.025809749960899,0.062150049954653,-0.17591221630573],[-0.12544772028923,0.0038361800834537,0.088517412543297]],[[-0.026784727349877,-0.004494528286159,-0.093885608017445],[-0.070433303713799,-0.030701665207744,-0.044483069330454],[-0.13528996706009,0.13154102861881,-0.040327910333872]],[[-0.064125344157219,0.041186384856701,-0.070697903633118],[0.14837741851807,0.11207086592913,-0.085231423377991],[-0.15475445985794,-0.15198780596256,-0.028774194419384]],[[0.17102190852165,0.064396448433399,-0.015249476768076],[-0.062034480273724,-0.088597327470779,0.0043845516629517],[-0.044701110571623,-0.041427135467529,0.060207791626453]],[[-0.025006704032421,-0.049758441746235,-0.11796163022518],[0.047937326133251,-0.0086828144267201,0.015399046242237],[-0.11699459701777,-0.090690992772579,-0.019882764667273]],[[-0.089037381112576,-0.13698214292526,-0.14161752164364],[-0.17594675719738,-0.15024769306183,-0.25969436764717],[0.10512932389975,0.1496552079916,-0.064945727586746]],[[-0.061503119766712,0.096843004226685,0.13337157666683],[-0.076961509883404,0.020244097337127,0.1058047786355],[0.15973699092865,0.0060003204271197,0.0020107708405703]],[[0.19550225138664,0.030814345926046,0.0013553047319874],[0.051758699119091,-0.084268234670162,-0.087923921644688],[0.1600461602211,-0.062392186373472,-0.063884250819683]],[[-0.10448449850082,-0.084832616150379,0.21893784403801],[-0.045008212327957,-0.013142784126103,-0.077262818813324],[0.058388017117977,-0.029155725613236,-0.017380084842443]],[[0.051949348300695,0.1652234941721,-0.021592305973172],[0.046586394309998,0.12555566430092,0.14936004579067],[0.10327423363924,0.16549451649189,0.078072004020214]],[[-0.13148069381714,0.16464245319366,0.22496098279953],[-0.12536412477493,-0.10528495162725,-0.11175931245089],[-0.10842404514551,-0.072228878736496,-0.18553249537945]],[[-0.073485925793648,0.036756303161383,0.062762297689915],[-0.04401983320713,-0.055164691060781,0.14719869196415],[-0.076877772808075,-0.086829654872417,0.21623283624649]],[[0.0085468590259552,-0.058176640421152,-0.054420311003923],[-0.055583275854588,0.0069045717827976,0.1167426481843],[-0.12193815410137,-0.15152278542519,-0.070967689156532]],[[0.13183709979057,-0.006338270381093,-0.057628843933344],[0.026293680071831,-0.09324286878109,-0.074064344167709],[0.027282025665045,0.074346102774143,-0.15126492083073]],[[-0.16688714921474,-0.15167720615864,-0.19455425441265],[-0.12009758502245,0.0079067656770349,0.086429096758366],[-0.12657107412815,0.18272888660431,-0.068888336420059]],[[0.023417454212904,0.029347123578191,-0.036731049418449],[0.16757334768772,-0.10827945172787,-0.079344138503075],[-0.14944532513618,-0.076111756265163,-0.10187654197216]],[[0.050827961415052,0.15718333423138,0.22365047037601],[-0.011779327876866,-0.066534399986267,-0.16935211420059],[0.16222797334194,0.024708116427064,0.065453663468361]],[[0.034502688795328,0.017401164397597,-0.043199118226767],[0.080211699008942,0.063971988856792,-0.10630894452333],[-0.06053926050663,-0.024665707722306,0.00076010060729459]],[[-0.1082306727767,-0.035913269966841,-0.014527366496623],[0.24527876079082,0.066269107162952,-0.086705356836319],[-0.15765127539635,0.01112250238657,0.13313591480255]],[[-0.074022673070431,-0.062746696174145,0.2289883941412],[0.11402502655983,0.037062246352434,0.027749130502343],[0.06859664618969,-0.036158952862024,-0.14656917750835]],[[-0.32094851136208,-0.15913504362106,-0.011039067991078],[0.10990323126316,0.055650781840086,-0.050948418676853],[0.059686843305826,-0.15446312725544,-0.086085140705109]],[[-0.0094804875552654,0.19145973026752,0.29140523076057],[0.045446962118149,-0.25509369373322,0.017184235155582],[-0.014497484080493,0.057121451944113,-0.098550207912922]],[[0.028313366696239,-0.037423606961966,-0.085599809885025],[-0.10193636268377,-0.036019627004862,0.076645858585835],[0.03719786554575,-0.17370228469372,-0.24774658679962]],[[0.020521787926555,0.057953421026468,0.096710540354252],[0.018384970724583,0.0018975816201419,0.02311784774065],[0.19118767976761,-0.05913420766592,-0.021199323236942]],[[0.096790984272957,-0.075680337846279,0.058601219207048],[-0.13091187179089,-0.031304717063904,0.019223177805543],[0.087864421308041,0.13163359463215,0.17639510333538]],[[-0.22653180360794,0.041385918855667,0.046081345528364],[-0.053946457803249,-0.09710506349802,-0.0098430048674345],[0.048006776720285,0.015934243798256,0.036688506603241]],[[0.09789264947176,-0.012027328833938,-0.20272427797318],[0.099275179207325,-0.0072757634334266,0.0084291631355882],[-0.072436191141605,-0.05939119681716,-0.11879347264767]],[[0.082307226955891,0.1588124781847,0.13107123970985],[-0.13007648289204,0.0020255853887647,0.099494487047195],[-0.010205653496087,-0.10440424084663,-0.031471695750952]],[[-0.019411416724324,-0.015590498223901,-0.14142400026321],[0.10381116718054,0.10729705542326,0.14806668460369],[-0.079274900257587,-0.085105672478676,0.081195667386055]],[[-0.045484721660614,0.0024152593687177,-0.067863836884499],[0.033731620758772,-0.0028474638238549,-0.065166853368282],[-0.10347648710012,-0.28379526734352,0.046520505100489]],[[-0.21948359906673,-0.17129692435265,-0.12636561691761],[0.33549031615257,0.17367668449879,-0.20942676067352],[-0.12742325663567,0.099593013525009,-0.061559066176414]],[[0.059349574148655,0.025094319134951,-0.10151804238558],[-0.076079629361629,0.030268738046288,0.23875191807747],[-0.033457580953836,-0.17868214845657,0.038742002099752]],[[0.059494152665138,-0.086736917495728,-0.053282048553228],[-0.020575977861881,-0.0063827186822891,-0.050771772861481],[-0.13135519623756,0.044016916304827,-0.036176674067974]],[[0.0062138983048499,0.051609586924314,0.022570822387934],[-0.048190414905548,-0.0026272805407643,-0.092387013137341],[0.21989274024963,0.028075374662876,0.016753144562244]],[[0.026007406413555,-0.15815553069115,-0.058211892843246],[0.059864081442356,0.018953358754516,0.0042699030600488],[-0.037457067519426,-0.075815908610821,-0.13477294147015]],[[-0.0010116117773578,0.015315691940486,0.025520293042064],[-0.027089068666101,-0.040910247713327,-0.077417500317097],[-0.067410044372082,-0.1561628729105,-0.06409066170454]],[[0.084270641207695,0.02494609169662,-0.056931149214506],[-0.11994061619043,0.064519934356213,0.10943153500557],[0.018310625106096,0.0036794836632907,0.026929277926683]],[[0.13303500413895,0.075472511351109,0.16453719139099],[-0.082548141479492,-0.1797007471323,-0.15623824298382],[-0.010183289647102,0.029144970700145,0.022514212876558]],[[-0.035367012023926,0.064347855746746,-0.10689265280962],[0.016786105930805,-0.10778118669987,-0.096918985247612],[-0.021622467786074,-0.13237282633781,-0.077226929366589]],[[-0.048481117933989,0.096098862588406,-0.10807363688946],[-0.16177900135517,0.043901011347771,-0.0064454777166247],[0.15290722250938,0.016839489340782,-0.089054718613625]],[[-0.059087295085192,0.017437543720007,-0.23422430455685],[0.068704716861248,0.06552542001009,0.23731663823128],[-0.094248861074448,-0.13340063393116,-0.02336204610765]],[[-0.24980247020721,-0.070369184017181,-0.12605644762516],[-0.069130964577198,-0.14489595592022,-0.083328902721405],[0.058457221835852,0.15324276685715,0.0067780208773911]],[[-0.17155115306377,-0.2012926787138,0.17153643071651],[0.068126440048218,-0.092493936419487,-0.1065179258585],[0.0076221800409257,0.021567855030298,0.14649739861488]],[[0.066700860857964,0.030629247426987,0.10433955490589],[0.012569349259138,-0.012337451800704,0.06304506957531],[-0.0045368750579655,-0.023573752492666,-0.10527947545052]],[[0.0089753940701485,-0.0083224000409245,0.015021404251456],[-0.0031218912918121,0.027210131287575,-0.03483409434557],[-0.058606900274754,-0.087310880422592,-0.11588518321514]],[[0.048975639045238,0.059412237256765,0.09039881080389],[-0.0057161059230566,0.023808805271983,0.014691831544042],[0.0816266015172,0.11743178963661,0.047125354409218]],[[0.10177024453878,-0.043137211352587,-0.090413555502892],[0.097314901649952,0.13426867127419,-0.0087075596675277],[0.018129535019398,-0.17034101486206,-0.063595414161682]],[[-0.0016020536422729,-0.06514085829258,0.012309871613979],[0.1214404553175,-0.076720610260963,-0.078053005039692],[0.14247883856297,0.18977573513985,0.024056788533926]],[[-0.044926967471838,0.054659500718117,-0.059490084648132],[0.17384365200996,0.096241801977158,-0.0021340502426028],[0.079681783914566,-0.11990423500538,-0.10042141377926]],[[-0.011718499474227,-0.019670072942972,0.015435303561389],[-0.12296813726425,-0.13141171634197,-0.15793401002884],[-0.10163449496031,-0.27253794670105,-0.24349687993526]],[[-0.073953829705715,-0.17663368582726,-0.23321188986301],[-0.10517019033432,-0.022475736215711,0.067909255623817],[-0.0036526506301016,-0.0096399644389749,-0.070716202259064]],[[0.1410271525383,0.17881086468697,0.19607636332512],[-0.062582656741142,-0.13239409029484,-0.13216543197632],[-0.057459078729153,0.076606452465057,-0.018903899937868]],[[-0.093209572136402,-0.080334305763245,-0.016778582707047],[0.076752051711082,0.037906792014837,-0.071489043533802],[0.096295893192291,0.049406353384256,-0.012128181755543]],[[-0.2772125005722,-0.0097286654636264,0.11223251372576],[-0.058784212917089,0.0011415897170082,0.018280664458871],[-0.26854529976845,-0.087743997573853,-0.013281500898302]],[[-0.036517433822155,-0.081747218966484,-0.088117346167564],[0.093145184218884,0.098344877362251,0.0063467491418123],[0.024771781638265,0.03943108394742,-0.038658656179905]],[[0.04536310210824,0.048178244382143,0.15749981999397],[0.15937553346157,-0.024358049035072,-0.11906361579895],[0.050683561712503,0.062895737588406,0.02270769700408]],[[-0.15847036242485,-0.17378842830658,-0.2480149269104],[-0.086342208087444,0.077825859189034,0.033972974866629],[0.022979220375419,0.049363326281309,0.063177332282066]],[[-0.12397088110447,0.041224610060453,0.012646046467125],[-0.054974108934402,0.015112828463316,-0.011862539686263],[-0.033959534019232,0.17384620010853,0.066274903714657]],[[0.15875937044621,0.022976061329246,-0.057623561471701],[-0.10258544236422,-0.0054622273892164,-0.13201551139355],[-0.023172685876489,-0.013241704553366,-0.053275737911463]],[[-0.097336567938328,0.016091147437692,-0.015992915257812],[0.099156461656094,-0.0031511541455984,-0.041209060698748],[-0.025316495448351,-0.031233737245202,-0.03433271497488]],[[0.023710096254945,-0.0042807725258172,0.015365646220744],[-0.16492147743702,0.050534952431917,0.12085948139429],[-0.00064089137595147,-0.041330754756927,-0.36131557822227]],[[-0.12855778634548,-0.048957325518131,0.036737900227308],[-0.0024173981510103,0.043445117771626,0.21502286195755],[0.080248951911926,-0.0067928074859083,-0.17681691050529]],[[0.05482105910778,0.052845828235149,-0.032488934695721],[-0.11312481760979,0.019514016807079,0.089275166392326],[-0.072775661945343,-0.0029700959566981,-0.1876584738493]],[[-0.18540339171886,-0.030469065532088,0.15730331838131],[-0.037783853709698,-0.11300609260798,0.022018671035767],[-0.10204131156206,-0.03479515388608,0.10916571319103]],[[-0.010639691725373,-0.025190392509103,0.024634568020701],[-0.041030414402485,-0.13958756625652,-0.083567500114441],[0.009160085581243,-0.0024282732047141,0.043206959962845]],[[0.11126402765512,0.010506422258914,-0.06289217621088],[0.019695254042745,0.1262144446373,0.17144918441772],[-0.14160062372684,-0.096090607345104,-0.067739114165306]],[[0.26427471637726,0.082408554852009,-0.16037850081921],[-0.03162007778883,-0.015410291962326,-0.035180598497391],[-0.018907267600298,-0.018747439607978,-0.066705167293549]],[[0.10913015156984,0.14019554853439,0.064079701900482],[-0.0089440606534481,-0.15501122176647,-0.0058975424617529],[0.013240196742117,-0.013263803906739,-0.11866832524538]],[[-0.052963279187679,-0.26756137609482,-0.012271178886294],[-0.067734777927399,-0.061180077493191,0.015236547216773],[0.056830663233995,-0.095106244087219,-0.024234525859356]],[[-0.0018145112553611,0.0075402269139886,-0.035314403474331],[-0.035470250993967,-0.20567338168621,-0.22348310053349],[-0.040285792201757,-0.043702837079763,-0.057212188839912]],[[0.20600712299347,0.17725473642349,0.0059269848279655],[-0.10592789947987,-0.072430349886417,-0.13173781335354],[0.10826782137156,0.2902794778347,-0.015674188733101]],[[-0.10476498305798,0.0078111798502505,-0.065368331968784],[-0.12570321559906,-0.13190957903862,-0.14214549958706],[-0.081215038895607,-0.073997989296913,-0.053753457963467]],[[-0.12937122583389,-0.0024011447094381,-0.15603074431419],[0.17843301594257,0.042390797287226,-0.062902852892876],[0.083634875714779,-0.14398966729641,0.047630224376917]],[[0.055251743644476,0.11766338348389,-0.16884933412075],[-0.070441514253616,-0.13209772109985,0.059815559536219],[0.07019080221653,-0.11085683852434,-0.043610602617264]],[[-0.046374708414078,0.00031228412990458,-0.083933979272842],[-0.055782347917557,-0.15128995478153,0.020412901416421],[-0.085030443966389,0.068121522665024,0.17352496087551]],[[-0.067997984588146,-0.025372803211212,0.052692130208015],[0.040124166756868,0.047825131565332,0.052941121160984],[-0.23809154331684,-0.0039076413959265,0.0079983929172158]],[[0.13418810069561,0.24606867134571,-0.039532110095024],[-0.16358721256256,-0.10008930414915,0.0190992616117],[0.03752014040947,0.054747052490711,-0.068886250257492]],[[0.08001496642828,-0.10217490047216,-0.033308397978544],[-0.12300885468721,-0.085614830255508,-0.03343452885747],[-0.058154653757811,-0.035875838249922,-0.077309809625149]],[[0.031538750976324,0.06636855751276,-0.0020917833317071],[0.14372284710407,-0.083681546151638,-0.14532718062401],[-0.016710346564651,0.004032074008137,0.13178937137127]],[[0.24207159876823,-0.017619842663407,-0.086391024291515],[0.17149285972118,0.086751334369183,0.040772203356028],[0.20512099564075,0.075693145394325,0.09109553694725]],[[-0.043540131300688,-0.086303539574146,0.074716992676258],[0.029432568699121,0.085355453193188,-0.22134444117546],[0.096365407109261,-0.11890816688538,0.11580868810415]],[[-0.030078433454037,-0.08467174321413,-0.13998159766197],[-0.041158005595207,0.018868118524551,0.0075742439366877],[0.042550001293421,0.083548747003078,0.073443733155727]],[[-0.017543544992805,0.069519340991974,-0.045725885778666],[0.066619604825974,-0.065973848104477,-0.2932850420475],[0.29673781991005,0.032331500202417,0.27900785207748]],[[0.059834700077772,0.047789558768272,0.018050758168101],[-0.2191154062748,-0.19726030528545,-0.11537417024374],[-0.011798144318163,-0.03365545719862,-0.014635260216892]],[[0.08268653601408,0.073544688522816,0.099515944719315],[0.19852744042873,0.29433616995811,-0.083263263106346],[0.031152531504631,-0.073033027350903,-0.035622227936983]],[[-0.093878619372845,-0.034524794667959,-0.030384000390768],[0.064108587801456,0.032679088413715,0.065627373754978],[0.089169584214687,-0.034103937447071,0.0088281519711018]],[[-0.093902342021465,-0.091986872255802,-0.16088709235191],[-0.066612392663956,-0.075093433260918,-0.081862710416317],[-0.069188892841339,0.18358035385609,0.23351255059242]],[[-0.037064179778099,0.17001101374626,0.32461470365524],[0.066365294158459,0.01231896225363,-0.081677854061127],[-0.024895720183849,-0.069939501583576,-0.0044996626675129]],[[-0.047940962016582,0.048368375748396,-0.053290687501431],[0.065232783555984,0.10149370878935,0.025581303983927],[-0.055351924151182,0.053583778440952,-0.036649953573942]],[[-0.028747595846653,0.065486282110214,0.13596628606319],[-0.052527014166117,-0.14212477207184,-0.11310479044914],[0.039287161082029,-0.16036275029182,-0.11220330744982]],[[-0.001846781000495,0.16441048681736,0.049203097820282],[-0.0079408371821046,0.21162174642086,-0.0016392020042986],[0.034243918955326,0.017491713166237,-0.079359620809555]],[[-0.0050285989418626,-0.080928958952427,-0.091051943600178],[-0.038518182933331,0.05117242410779,0.031881522387266],[-0.053820833563805,-0.024874063208699,0.10111308097839]],[[0.12271467596292,0.08285066485405,-0.089985877275467],[0.061106327921152,-0.11800169944763,-0.027773819863796],[-0.17788249254227,-0.037487186491489,0.020691392943263]],[[0.0041861683130264,0.058908879756927,0.08125851303339],[-0.0981714874506,0.020515998825431,0.064903661608696],[0.16505855321884,-0.10028260201216,-0.093763262033463]],[[0.04314037784934,0.14514015614986,0.039383929222822],[0.15885923802853,0.18924556672573,0.076829440891743],[-0.014248923398554,-0.021426193416119,-0.039760958403349]],[[-0.019173892214894,0.00057855201885104,0.072919227182865],[-0.13946868479252,-0.28458577394485,-0.19781041145325],[0.34802913665771,0.021052196621895,0.032175965607166]],[[-0.13322009146214,0.010117143392563,-0.054941594600677],[-0.0087821092456579,-0.06796370446682,-0.061566781252623],[-0.14763560891151,-0.013850037939847,0.13512156903744]],[[-0.12147853523493,0.075531825423241,0.10166165232658],[0.036215968430042,0.081055954098701,-0.17102380096912],[-0.1220566406846,0.091502226889133,0.021058099344373]],[[-0.061519078910351,-0.046355716884136,-0.064549677073956],[-0.080508403480053,-0.057002924382687,0.01274583209306],[0.0080978330224752,-0.058663967996836,0.053385708481073]],[[0.094931915402412,-0.16960510611534,-0.18365977704525],[-0.046000428497791,-0.087714478373528,-0.23421870172024],[0.19727028906345,0.047727931290865,-0.13001607358456]],[[-0.01068015396595,0.05158644169569,-0.11230204254389],[-0.20624633133411,-0.059832140803337,-0.1493923664093],[0.28234601020813,0.19828808307648,0.22482052445412]],[[0.035128049552441,-0.059555951505899,-0.10247460007668],[0.078302592039108,-0.03919580206275,0.089085124433041],[0.12648949027061,0.17168015241623,-0.20793128013611]],[[-0.085593275725842,-0.055688235908747,-0.010317528620362],[0.056157603859901,0.0097732283174992,-0.08610025793314],[0.0046518594026566,-0.080494947731495,-0.14393459260464]],[[0.078488290309906,0.063839957118034,-0.064173065125942],[-0.068495206534863,0.077964499592781,0.25821363925934],[-0.1120927259326,-0.050158049911261,0.26533395051956]],[[-0.0024403997231275,0.2209020704031,0.17879861593246],[-0.037111282348633,-0.049444120377302,-0.02430160716176],[0.11489824205637,0.022585120052099,-0.071899473667145]],[[0.069278724491596,-0.13262560963631,-0.020221468061209],[0.032707802951336,-0.080680467188358,0.18726052343845],[0.012560329400003,0.068725183606148,0.2180353552103]],[[0.014952788129449,-0.086158357560635,-0.079437740147114],[-0.01475559361279,-0.08122219145298,-0.13234987854958],[0.13787280023098,-0.0004622784035746,0.031473107635975]],[[-0.042293939739466,-0.18454383313656,-0.071066670119762],[0.10293370485306,-0.03990563377738,-0.0037550127599388],[0.046072576195002,-0.022698758170009,-0.10010174661875]],[[-0.026115128770471,-0.120306186378,-0.058721449226141],[0.021519258618355,0.11494234204292,0.14111010730267],[0.27070331573486,0.16751569509506,-0.0051129986532032]],[[-0.1111571341753,-0.12317658215761,-0.11123190820217],[0.32848426699638,-0.017048880457878,-0.026889964938164],[-0.0032085762359202,-0.0089513827115297,-0.2447783946991]],[[-0.098516091704369,0.059323560446501,-0.070750407874584],[0.077744506299496,0.039664037525654,0.011848597787321],[-0.14579689502716,-0.1308710873127,-0.03455226495862]],[[0.21677102148533,0.087423570454121,0.044211450964212],[0.0028770279604942,0.019991664215922,-0.10825951397419],[0.12939018011093,0.09068638831377,-0.011062906123698]],[[-0.25137406587601,-0.22878636419773,-0.049356989562511],[-0.21503567695618,-0.043380279093981,-0.020411198958755],[-0.062168192118406,-0.0080823125317693,0.15174099802971]],[[0.076470099389553,-0.096940986812115,-0.13760276138783],[0.10740869492292,0.04912032186985,0.010400513187051],[0.014012557454407,-0.083099216222763,-0.046130269765854]],[[0.001200629863888,-0.031055150553584,0.096500903367996],[-0.044055569916964,-0.16951014101505,-0.10738841444254],[0.04430165886879,-0.21027174592018,-0.11148115247488]],[[-0.064915738999844,-0.089996725320816,-0.018240148201585],[0.20929583907127,0.24852053821087,0.0186478625983],[0.081664495170116,0.036408163607121,0.030780432745814]],[[0.17849446833134,0.053803905844688,-0.085225529968739],[0.091947682201862,0.00076989451190457,0.10872274637222],[0.013819499872625,0.073522977530956,-0.1873244792223]],[[-0.18488456308842,0.064310804009438,0.12243834137917],[-0.078907661139965,0.0040280465036631,-0.053868263959885],[-0.036997228860855,-0.16610193252563,-0.085454791784286]],[[0.061045441776514,-0.087727397680283,-0.26684063673019],[-0.089388430118561,-0.028638128191233,-0.17625848948956],[-0.13112780451775,-0.11860940605402,0.11258727312088]],[[0.023413078859448,0.013061414472759,0.043144356459379],[0.13025361299515,0.11185378581285,0.04635414108634],[0.028683856129646,-0.082237541675568,-0.19472232460976]]],[[[0.011848399415612,-0.0047088828869164,-0.17840996384621],[-0.0076567674987018,0.09834861010313,0.10764457285404],[0.014025061391294,0.069667458534241,0.023385588079691]],[[0.10005756467581,-0.074333637952805,-0.074316740036011],[-0.095634005963802,-0.17220625281334,-0.13721041381359],[0.086749851703644,0.19997657835484,0.050500489771366]],[[0.089793212711811,-0.0063681788742542,-0.041408460587263],[0.055215284228325,0.039429690688848,0.070870012044907],[-0.022890765219927,0.096545688807964,0.040153499692678]],[[-0.10228371620178,-0.086588613688946,0.038683623075485],[0.0022479479666799,-0.26483818888664,-0.011821217834949],[0.051787242293358,0.010098529048264,-0.030363015830517]],[[0.095781296491623,0.042111333459616,-0.078958600759506],[0.094574920833111,-0.015123296529055,-0.074384719133377],[-0.087911814451218,0.13813085854053,0.045956701040268]],[[-0.03228098154068,0.045416180044413,0.02148206345737],[-0.16322304308414,-0.13898155093193,-0.0015068536158651],[0.24388629198074,-0.021762546151876,-0.036700773984194]],[[0.071300536394119,-0.024663720279932,-0.099690191447735],[0.054981850087643,0.11500138789415,-0.18192213773727],[-0.082166261970997,-0.016075225546956,-0.20928260684013]],[[0.051384445279837,-0.030421515926719,-0.028671752661467],[0.031160101294518,-0.095312118530273,-0.11083678156137],[0.17491829395294,0.12048264592886,0.061971344053745]],[[-0.074289292097092,0.090441271662712,0.19760683178902],[-0.020454017445445,-0.14563439786434,-0.02052484638989],[0.017051136121154,-0.088880397379398,-0.16485604643822]],[[0.017185565084219,-0.046139501035213,-0.063251972198486],[-0.044435348361731,-0.059207551181316,-0.073187872767448],[-0.15685033798218,-0.0057444721460342,-0.043096378445625]],[[-0.043746814131737,0.041263327002525,0.095890931785107],[0.054066821932793,-0.044428691267967,0.038673646748066],[-0.051283862441778,-0.13177220523357,-0.076819464564323]],[[0.053611263632774,0.1136777177453,0.17699337005615],[0.042742501944304,0.14570865035057,0.1480005979538],[-0.0045084105804563,-0.01139972358942,-0.094393208622932]],[[-0.020217126235366,-0.10342438519001,-0.10775778442621],[0.016688551753759,0.074869371950626,0.12108379602432],[0.045914825052023,0.073108121752739,0.047621414065361]],[[-0.058593358844519,-0.19101858139038,-0.13362072408199],[-0.058403003960848,-0.0183080509305,-0.0024773734621704],[-0.033041644841433,-0.19567610323429,0.046557169407606]],[[-0.040361318737268,0.0015602639177814,0.011283800937235],[0.060690879821777,-0.0007081709918566,-0.092108331620693],[-0.011094029992819,-0.060941811650991,-0.10475086420774]],[[0.056404557079077,0.087264165282249,0.088148303329945],[0.0099100368097425,-0.003004583530128,-0.14080803096294],[-0.048572231084108,0.017935365438461,0.097945973277092]],[[-0.010546151548624,-0.037156410515308,0.054871328175068],[-0.067297995090485,-0.15465368330479,-0.0062051499262452],[-0.0560157969594,-0.034793753176928,0.097599714994431]],[[-0.037179719656706,0.040461696684361,0.0078433472663164],[-0.012854773551226,0.027243345975876,-0.030575037002563],[0.02756386063993,-0.022293958812952,0.034392725676298]],[[-0.08326194435358,0.0047261635772884,0.04925849661231],[-0.12014458328485,-0.072007179260254,-0.0085884546861053],[-0.060500156134367,-0.1062027066946,-0.16289179027081]],[[-0.050486844033003,0.10375355929136,0.060751762241125],[0.094762310385704,0.11299365758896,0.18374755978584],[-0.031901892274618,0.070531122386456,0.160949036479]],[[0.01942216604948,0.02289779111743,0.0011362334480509],[0.012653040699661,-0.16330580413342,-0.054262150079012],[-0.1351176649332,-0.081436447799206,-0.13582587242126]],[[0.17610386013985,0.11370805650949,-0.086954332888126],[0.021105527877808,0.0048010917380452,0.11760760098696],[-0.037646107375622,-0.17461259663105,-0.01370120421052]],[[-0.096054442226887,-0.040502432733774,0.048117827624083],[0.120206810534,-0.0025720768608153,-0.065132774412632],[-0.11456929892302,-0.098537839949131,-0.06091470271349]],[[-0.046170458197594,0.014029701240361,0.10754856467247],[0.014719246886671,-0.14937403798103,-0.064344555139542],[-0.04090354219079,0.077306874096394,0.077913708984852]],[[0.10896586626768,0.15872409939766,0.07599513977766],[-0.037792883813381,-0.10135066509247,0.026870984584093],[0.018001055344939,0.13546065986156,-0.041304361075163]],[[-0.072811484336853,0.0046387822367251,0.03302351385355],[-0.022366421297193,-0.1044499874115,-0.010750846005976],[-0.04969859868288,-0.14935718476772,0.068744644522667]],[[-0.10290624946356,0.075300619006157,-0.073396138846874],[-0.017755389213562,0.019522693008184,-0.16023914515972],[0.019897600635886,-0.16219842433929,-0.012520666234195]],[[-0.12210115790367,-0.064088955521584,-0.10306324064732],[-0.034883450716734,-0.075683683156967,0.16445170342922],[-0.11337622255087,-0.094561479985714,0.086703181266785]],[[-0.05861246958375,-0.19087827205658,-0.052961673587561],[-0.19480004906654,-0.087562426924706,0.070077165961266],[-0.12320282310247,-0.041798904538155,0.063034810125828]],[[-0.024539444595575,0.045998837798834,0.0088465344160795],[0.050054151564837,0.12884485721588,0.16325688362122],[0.16644132137299,0.099586211144924,-0.046639531850815]],[[-0.03410817310214,-0.098737627267838,-0.065374970436096],[-0.10154144465923,-0.08315010368824,-0.0051525882445276],[0.10500071197748,0.034199565649033,-0.11637205630541]],[[-0.028462201356888,0.19020517170429,0.050880175083876],[-0.0035024660173804,-0.05738503113389,-0.037981003522873],[0.009513913653791,0.12534731626511,-0.032381221652031]],[[0.063964642584324,-0.05559778958559,-0.10747098922729],[0.028968274593353,-0.031247803941369,0.094689466059208],[-0.036901276558638,-0.014378109946847,-0.16209203004837]],[[-0.16390313208103,0.044988941401243,0.13134083151817],[-0.092779748141766,-0.040242057293653,0.10619097203016],[-0.057196274399757,0.019316710531712,-0.032969005405903]],[[-0.0070793754421175,-0.054073318839073,-0.086324855685234],[-0.10056085884571,-0.083992801606655,-0.24856448173523],[0.0010567632270977,-0.10842573642731,-0.00056920322822407]],[[0.040126696228981,0.070669442415237,0.14702181518078],[-0.057608671486378,0.058080211281776,-0.014825899153948],[-0.022926911711693,-0.098042599856853,0.038492117077112]],[[0.060968328267336,0.12745748460293,-0.0028603069949895],[-0.050498653203249,-0.0046468880027533,-0.023822342976928],[-0.10940107703209,0.095712132751942,0.085255786776543]],[[-0.028046052902937,-0.10228348523378,-0.088234074413776],[-0.061129342764616,-0.062341555953026,-0.076625309884548],[-0.07134597748518,0.032045736908913,0.17813292145729]],[[-0.043238833546638,0.018671246245503,-0.11339116096497],[-0.00054077635286376,-0.22925592958927,-0.29881143569946],[0.061128813773394,0.025875905528665,0.00773138506338]],[[-0.0066769807599485,-0.054874625056982,0.16914486885071],[0.048301491886377,0.1631130874157,0.12148253619671],[-0.016146844252944,0.10317020863295,0.0028017943259329]],[[0.031115502119064,-0.054201319813728,-0.036683708429337],[-0.13148047029972,-0.027445502579212,0.017299426719546],[0.046825811266899,0.11555344611406,0.20265516638756]],[[0.14319632947445,0.12010408937931,0.13910794258118],[-0.034796308726072,0.027229942381382,0.16463565826416],[-0.025789953768253,-0.074375219643116,0.10107543319464]],[[-0.061129055917263,-0.07087729126215,-0.021449482068419],[-0.093091160058975,-0.045509144663811,0.14761854708195],[0.014049723744392,-0.086783833801746,-0.029130376875401]],[[-0.022942280396819,-0.00069648417411372,-0.0014363069785759],[-0.081024669110775,-0.16470630466938,-0.056197807192802],[0.0032552508637309,-0.044113039970398,-0.052698343992233]],[[0.028920015320182,-0.091994285583496,0.13656932115555],[-0.10074400901794,-0.054902099072933,0.12356273829937],[0.081891156733036,0.030553260818124,0.12737327814102]],[[-0.0065338904969394,-0.085773713886738,0.064794220030308],[-0.012473245151341,-0.049123477190733,0.1828637868166],[-0.0096495356410742,0.034600205719471,0.036754887551069]],[[0.096250288188457,0.012187229469419,0.074791334569454],[0.049235884100199,-0.075225695967674,0.020341424271464],[-0.14119502902031,-0.086696915328503,-0.10665702074766]],[[-0.095620393753052,-0.03938203305006,-0.10787331312895],[-0.054045684635639,-0.091456912457943,-0.0096847517415881],[0.016791131347418,-0.0058776829391718,-0.092987135052681]],[[0.05072284117341,0.18976955115795,-0.11608316004276],[0.088605388998985,0.1263512969017,0.26340559124947],[-0.024423798546195,-0.097591333091259,-0.12050042301416]],[[-0.19342675805092,-0.10727403312922,-0.049410659819841],[0.033658239990473,-0.31368979811668,-0.076362088322639],[-0.042939819395542,-0.041111625730991,-0.060445915907621]],[[-0.1254420876503,-0.089998081326485,0.20079629123211],[0.08075226098299,-0.15350651741028,0.072660878300667],[-0.033246818929911,-0.022532081231475,0.033576529473066]],[[-0.04842484369874,-0.12039998918772,-0.0074887457303703],[0.091247886419296,0.010582177899778,-0.065269909799099],[0.055954989045858,0.079964078962803,-0.039610266685486]],[[-0.060068033635616,-0.0035332038532943,-0.063856065273285],[-0.061592593789101,-0.090860180556774,-0.01733211055398],[0.025334959849715,-0.12236313521862,0.022355811670423]],[[0.19004648923874,0.00055430445354432,-0.019121935591102],[-0.016646593809128,-0.12420435249805,-0.064519375562668],[0.080891765654087,-0.034994889050722,-0.041460227221251]],[[0.024205151945353,0.010520811192691,-0.083778642117977],[-0.056777630001307,-0.014434354379773,0.097121320664883],[-0.16777990758419,-0.062080971896648,-0.030775923281908]],[[0.059532474726439,0.081410549581051,-0.021853057667613],[0.0092265103012323,-0.011758270673454,-0.0057572177611291],[0.13921213150024,-0.061019998043776,-0.031218713149428]],[[0.24103643000126,0.19255371391773,0.1113920211792],[0.21903379261494,0.065093375742435,0.02599148452282],[-0.0723876953125,0.10660783946514,0.018456298857927]],[[0.057786926627159,-0.027282156050205,-0.030826907604933],[-0.15927405655384,0.019266184419394,-0.1789331138134],[-0.08645536750555,-0.13270047307014,-0.12442315369844]],[[-0.045694962143898,-0.1040630787611,-0.067432962357998],[-0.16146019101143,-0.1025325730443,0.03541511297226],[-0.1357941031456,0.010722265578806,0.043074697256088]],[[-0.052775368094444,-0.027087820693851,0.016214048489928],[-0.050190441310406,0.016661569476128,0.066532149910927],[-0.092689074575901,0.013726516626775,0.064437203109264]],[[-0.10372366011143,0.0023970261681825,-0.0098723312839866],[-0.065271586179733,-0.032329142093658,0.09595663100481],[-0.09309134632349,-0.10901986807585,-0.14594887197018]],[[-0.01609624363482,-0.076009258627892,-0.10895761102438],[-0.18099494278431,-0.043226100504398,0.015653382986784],[-0.20734848082066,-0.071196116507053,0.042337868362665]],[[-0.042293228209019,-0.17340196669102,0.017197515815496],[-0.083207748830318,-0.010426101274788,0.032570518553257],[0.077439658343792,0.063717901706696,0.026497850194573]],[[0.18062414228916,0.22120444476604,0.2318219691515],[-0.032038688659668,-0.059267800301313,-0.091159410774708],[0.36544853448868,0.34039524197578,0.11863226443529]],[[0.10254696756601,-0.0025492396671325,-0.059477530419827],[0.0024886042810977,-0.081634722650051,-0.011011898517609],[0.18351593613625,-0.031437337398529,0.05745206028223]],[[-0.18317237496376,0.16051432490349,0.064330711960793],[0.018961414694786,0.058882426470518,0.021313913166523],[0.0045816372148693,0.048448365181684,-0.086383633315563]],[[0.16726180911064,-0.052035272121429,-0.099145576357841],[-0.0035009202547371,-0.056426126509905,-0.0096715986728668],[-0.02369219250977,-0.015450454317033,-0.12318517267704]],[[-0.02005142532289,-0.097642958164215,-0.10414071381092],[-0.080245472490788,-0.19457899034023,0.031164642423391],[-0.019741337746382,-0.013357286341488,-0.063518390059471]],[[-0.071181401610374,-0.10293509066105,-0.063401192426682],[-0.084685154259205,-0.029166102409363,-0.084125094115734],[0.085484400391579,0.012255706824362,0.016240524128079]],[[-0.050159826874733,0.0014576320536435,0.16009993851185],[0.051319543272257,0.058308981359005,0.1604570299387],[0.086503706872463,0.015790207311511,0.021856222301722]],[[0.078416712582111,0.11477985978127,0.027485521510243],[-0.011719891801476,-0.10706305503845,0.11218053847551],[0.20212237536907,-0.067443929612637,-0.084795065224171]],[[0.0024136444553733,0.048670180141926,-0.043127149343491],[-0.15179033577442,-0.14556935429573,-0.14273218810558],[-0.052764017134905,0.083214722573757,-0.035310637205839]],[[0.0017568439943716,-0.048600733280182,0.035875231027603],[-0.13608746230602,-0.078827418386936,-0.014217145740986],[-0.070200257003307,-0.036981444805861,-0.053604744374752]],[[0.0069826957769692,0.0092137381434441,0.0072820903733373],[0.0081578223034739,-0.013856493867934,0.014898876659572],[0.047336302697659,0.049177434295416,-0.037522234022617]],[[-0.086155034601688,0.012797249481082,0.067325636744499],[-0.069004155695438,-0.064695201814175,-0.012345541268587],[0.054073192179203,0.046639245003462,0.054637085646391]],[[0.13893359899521,-0.026801582425833,-0.04402219504118],[-0.0087651554495096,-0.045787211507559,0.1027330160141],[-0.096098162233829,-0.16491530835629,-0.091631889343262]],[[-0.059145648032427,-0.049951240420341,0.0064315763302147],[-0.038116849958897,0.075306266546249,0.0079140523448586],[-0.065340928733349,0.1726398319006,-0.010899202898145]],[[-0.04453244805336,-0.042222339659929,0.058501150459051],[-0.26839604973793,-0.14285290241241,-0.090473987162113],[0.0068719340488315,0.081021793186665,-0.098529770970345]],[[0.04078122600913,0.028009420260787,-0.060829896479845],[0.0040215644985437,-0.090086713433266,0.091770276427269],[-0.047335293143988,0.14015185832977,0.09044636040926]],[[-0.081002540886402,-0.088997721672058,-0.068131946027279],[-0.11968938261271,0.037642937153578,0.087963543832302],[-0.13560868799686,-0.058636747300625,-0.071004658937454]],[[-0.15748301148415,-0.0061938571743667,0.090507484972477],[0.065619006752968,-0.0076479720883071,-0.026794010773301],[-0.00033952028024942,-0.0063281208276749,-0.035885933786631]],[[0.018014362081885,0.2216545343399,0.10214184969664],[0.05796454846859,0.249572083354,-0.057891361415386],[-0.13197086751461,0.13604006171227,0.17212104797363]],[[0.092861205339432,-0.016814436763525,0.043823383748531],[0.0033953541424125,-0.098029069602489,-0.10866170376539],[0.25725322961807,0.18161456286907,0.036841697990894]],[[-0.018559649586678,-0.070810131728649,-0.056167367845774],[-0.037158098071814,-0.054770983755589,0.035137128084898],[0.0022458559833467,-0.047396503388882,0.036238517612219]],[[0.066979192197323,-0.080561682581902,-0.0057187103666365],[0.18915818631649,0.059068694710732,-0.31532165408134],[0.00044659190461971,0.10606303811073,-0.12541821599007]],[[0.17844769358635,0.095542512834072,0.074930422008038],[-0.17262269556522,-0.18050794303417,-0.018346836790442],[-0.035544872283936,-0.00058781285770237,0.065049819648266]],[[0.094973884522915,0.055395495146513,-0.074547320604324],[-0.15668632090092,-0.23784820735455,-0.14717271924019],[0.068569019436836,0.0015183588257059,-0.0096935117617249]],[[0.034319810569286,0.1672043800354,-0.03163293749094],[-0.10737657546997,-0.24827298521996,-0.10304368287325],[0.064086124300957,-0.026450365781784,0.0076933316886425]],[[0.04636899754405,-0.021659158170223,-0.10342712700367],[-0.096858568489552,-0.01884869672358,-0.066320471465588],[-0.17085064947605,0.058370549231768,0.2184244543314]],[[-0.10104274749756,0.049783919006586,-0.016307150945067],[-0.019901603460312,-0.0098199239000678,-0.084839269518852],[0.025052074342966,-0.08403243124485,-0.020816348493099]],[[-0.096370361745358,-0.079439617693424,-0.19254226982594],[-0.0071057216264307,-0.10063390433788,-0.14385493099689],[-0.043657906353474,0.013134652748704,0.064483322203159]],[[-0.076536558568478,-0.0035030110739172,0.016300613060594],[-0.13951475918293,-0.095569722354412,0.014533779583871],[-0.19036445021629,-0.15226164460182,0.036817904561758]],[[-0.027718665078282,0.095555163919926,0.079997733235359],[0.14940474927425,0.068464323878288,0.12618632614613],[-0.048044458031654,0.05016328021884,0.11100893467665]],[[0.031476784497499,0.055972564965487,0.06420911103487],[-0.0067465645261109,0.018495557829738,-0.025386840105057],[0.0048872800543904,-0.0081011578440666,0.04682245850563]],[[-0.012387666851282,0.022255405783653,-0.039436738938093],[0.017749682068825,-0.035979937762022,-0.0026904309634119],[0.11541704833508,-0.00017446352285333,0.031548794358969]],[[0.17778186500072,0.11648123711348,0.28486275672913],[0.23213455080986,-0.016142044216394,-0.12721785902977],[0.11341672390699,-0.043265696614981,-0.034325126558542]],[[-0.025755813345313,-0.09967627376318,-0.018223622813821],[-0.038026310503483,-0.17472399771214,-0.11633831262589],[-0.070107735693455,-0.07240579277277,-0.035137042403221]],[[0.0019293911755085,0.017909843474627,-0.052869476377964],[-0.10235767811537,-0.13177338242531,-0.022861694917083],[-0.10184121876955,0.044850509613752,0.11028439551592]],[[0.10530892759562,-0.027071252465248,0.1273206025362],[0.19363775849342,0.1037013605237,0.044823933392763],[-0.063541598618031,-3.890030347975e-05,-0.05170164629817]],[[-0.070484504103661,0.010743991471827,0.056687664240599],[0.1033910214901,-0.047158431261778,-0.0083926841616631],[0.023525945842266,-0.085714906454086,-0.070494212210178]],[[0.018719570711255,0.054332591593266,-0.15944595634937],[-0.00042936787940562,0.05837718769908,0.12175535410643],[-0.0562495701015,0.028627954423428,-0.0047795409336686]],[[-0.012366166338325,0.0094752470031381,0.014611688442528],[-0.018003819510341,0.0052255489863455,0.051178000867367],[0.29954507946968,0.11020602285862,-0.11596345901489]],[[0.070030957460403,0.047783304005861,-0.11471342295408],[0.016922762617469,0.036735128611326,-0.054198376834393],[0.023203622549772,-0.067123018205166,-0.074379935860634]],[[-0.024743542075157,0.00053631694754586,0.055171027779579],[-0.09104872494936,0.061349496245384,-0.0090316757559776],[0.12063357234001,-0.049172181636095,-0.11940478533506]],[[-6.8471359554678e-05,0.032756388187408,0.037523999810219],[-0.15471115708351,0.0065413084812462,-0.049698159098625],[0.083676218986511,0.049769055098295,-0.049468565732241]],[[-0.067689307034016,0.06490071117878,-0.096527919173241],[0.029341293498874,0.0042070127092302,0.081399947404861],[-0.011494822800159,-0.015345407649875,0.13427186012268]],[[-0.044056240469217,0.028141362592578,-0.042595852166414],[0.1010968759656,0.10117080062628,0.066477753221989],[0.03634862229228,-0.10867081582546,0.012522585690022]],[[0.058868039399385,-0.19084291160107,-0.042783863842487],[-0.063251674175262,-0.036271963268518,-0.11889263242483],[-0.095786601305008,0.078638665378094,-0.062469143420458]],[[0.072532452642918,0.038572765886784,0.074340283870697],[0.055155463516712,0.019970517605543,0.086991526186466],[0.0050006932578981,0.14564499258995,0.0031281325500458]],[[-0.0068675400689244,0.17559839785099,0.11711427569389],[0.1057590842247,-0.077085085213184,-0.16241197288036],[-0.01318518538028,-0.062129657715559,0.008979894220829]],[[-0.070634379982948,-0.028772197663784,0.010799371637404],[-0.098560363054276,-0.059682574123144,0.013498640619218],[-0.062882170081139,-0.12599202990532,0.011011453345418]],[[-0.042041633278131,-0.11018149554729,-0.1131576821208],[0.092346183955669,-0.036474756896496,-0.10569585859776],[-0.093034483492374,0.071038775146008,0.094665542244911]],[[0.13679248094559,0.020443879067898,0.0034546924289316],[0.098670080304146,-0.028991019353271,-0.12444289773703],[0.049087442457676,0.040995266288519,0.053635001182556]],[[-0.019759317860007,0.0021470561623573,0.028313372284174],[-0.063380889594555,0.030427884310484,-0.010327140800655],[-0.19940359890461,0.18936631083488,0.25895866751671]],[[-0.038775999099016,0.17182163894176,-0.12013433873653],[-0.010576688684523,0.15926890075207,0.0025474601425231],[-0.13304896652699,0.0066403318196535,0.087463900446892]],[[0.078587606549263,0.11678240448236,-0.066616088151932],[0.1635183095932,0.0647794008255,-0.040396511554718],[-0.023412082344294,0.0069655617699027,0.035361427813768]],[[0.038840752094984,0.030091555789113,-0.026102187111974],[-0.020815214142203,0.12346276640892,0.083002395927906],[-0.091826736927032,-0.01683335006237,-0.058449883013964]],[[0.0058370232582092,0.089170999825001,0.042110428214073],[0.067681238055229,0.11191370338202,0.090671397745609],[-0.084021188318729,-0.034209240227938,-0.27352559566498]],[[-0.14923183619976,-0.020660139620304,-0.011975408531725],[-0.087460376322269,-0.054860237985849,0.18703791499138],[0.0033917026594281,0.043516807258129,-0.17505741119385]],[[-0.0061684078536928,-0.16112443804741,0.0015861005522311],[0.19054648280144,0.070805661380291,0.058954924345016],[0.051693800836802,0.044349927455187,-0.068446010351181]],[[-0.040163297206163,-0.096131816506386,0.025188501924276],[0.031979687511921,0.019312247633934,-0.040238194167614],[0.0861576795578,-0.067611612379551,-0.16944462060928]],[[-0.033606614917517,-0.009389154613018,0.01355951000005],[-0.037685003131628,0.097762614488602,-0.011591411195695],[0.025516340509057,0.014246439561248,-0.090382657945156]],[[-0.034872770309448,-0.15730118751526,-0.14462301135063],[-0.1453772932291,-0.062718942761421,0.028038576245308],[-0.030075374990702,-0.25154852867126,0.093983240425587]],[[0.1617446243763,0.0047420538030565,-0.010954591445625],[-0.016996731981635,-0.039702355861664,-0.027868671342731],[-0.053979750722647,0.041654504835606,0.049576882272959]],[[-0.020684557035565,0.054576005786657,0.10185933858156],[0.17349547147751,0.099366746842861,-0.10524306446314],[0.10042123496532,0.015440329909325,-0.093701161444187]],[[-0.10631566494703,-0.13599723577499,0.1189800798893],[0.12500831484795,-0.099675849080086,-0.03319551050663],[0.18973326683044,-0.015089670196176,0.068098202347755]],[[0.017375465482473,-0.044120218604803,0.024829650297761],[-0.00048918795073405,0.16044847667217,0.074917808175087],[0.056895803660154,0.13578774034977,0.11441840231419]],[[0.15945166349411,-0.074900478124619,-0.21566313505173],[0.030798144638538,0.22382988035679,0.12750838696957],[-0.10213029384613,0.0042628576047719,-0.30610090494156]]],[[[-0.081289559602737,-0.016668971627951,-0.040184915065765],[-0.052621714770794,-0.011981724761426,-0.096262380480766],[0.097145952284336,-0.053948029875755,0.13702170550823]],[[-0.026186155155301,-0.069648064672947,-0.045644536614418],[-0.16393890976906,-0.036929529160261,0.075603947043419],[-0.09277705848217,0.095779865980148,0.06577081233263]],[[0.1316389888525,0.065957129001617,0.085456214845181],[0.10816738754511,0.11677243560553,0.11862197518349],[0.035645574331284,0.048462174832821,0.14143246412277]],[[0.19376309216022,-0.17412780225277,-0.07252586632967],[-0.0063172238878906,-0.018924329429865,-0.11523228883743],[-0.14116103947163,0.045989826321602,0.039261382073164]],[[-0.015664761886001,0.074518799781799,0.061840392649174],[0.045047748833895,0.0082184737548232,0.070755787193775],[0.21853609383106,0.080843731760979,-0.056959349662066]],[[-0.10200352966785,-0.096923418343067,-0.042450893670321],[0.026154672726989,0.034503046423197,0.093680329620838],[-0.032704848796129,0.18901595473289,0.12171157449484]],[[-0.10040478408337,-0.12761847674847,0.062770575284958],[0.10067531466484,0.020004229620099,-0.018238950520754],[0.10723850131035,0.10208258777857,0.077859193086624]],[[-0.18973775207996,0.054478202015162,-0.05488546192646],[-0.055434305220842,-0.026063527911901,0.014589527621865],[0.1051192805171,0.0081744752824306,-0.076463930308819]],[[0.058846659958363,0.1310226470232,-0.12142576277256],[0.15865038335323,-0.16479453444481,0.10631870478392],[-0.18934637308121,-0.086991019546986,-0.25182807445526]],[[0.10204702615738,-0.078546144068241,-0.072855554521084],[-0.14229182898998,-0.23481348156929,-0.032421503216028],[-0.010882862843573,-0.15733096003532,-0.26695802807808]],[[0.15117999911308,0.17278738319874,-0.0044204783625901],[0.036269668489695,-0.064422555267811,0.23589226603508],[-0.034642282873392,-0.028835857287049,0.18187609314919]],[[0.024143977090716,0.10796343535185,0.033458806574345],[0.0080408249050379,0.14047585427761,0.10078781098127],[0.10555875301361,-0.012366663664579,-0.036807682365179]],[[-0.11082008481026,-0.00079867674503475,-0.17027156054974],[0.049511056393385,-0.039517641067505,-0.24628742039204],[-0.0081896018236876,-0.11763071268797,-0.26890376210213]],[[0.070558331906796,0.09598658233881,0.076334990561008],[-0.17524360120296,-0.11181785166264,-0.12761217355728],[-0.16216573119164,-0.080001667141914,0.10275024175644]],[[0.19653388857841,0.15757511556149,0.050653833895922],[-0.14336141943932,-0.053972560912371,-0.013021070510149],[0.16162008047104,0.12477158755064,0.3731517791748]],[[0.038301549851894,0.11139009147882,0.074992939829826],[0.10057185590267,-0.010105967521667,-0.069810211658478],[0.030603295192122,0.0091692740097642,-0.064108282327652]],[[-0.013321128673851,-0.1237016171217,0.078529693186283],[-0.045634467154741,-0.1472755074501,0.12452785670757],[0.12036424875259,0.0777308344841,0.040935754776001]],[[0.025791265070438,0.10780619829893,0.088651023805141],[-0.049642030149698,0.048311032354832,0.1865067332983],[0.0027300058864057,0.0055469651706517,-0.089152857661247]],[[-0.23053434491158,-0.12548296153545,0.10997220873833],[-0.052952580153942,-0.10442239791155,0.21535043418407],[0.049059797078371,-0.024801814928651,-0.0098568508401513]],[[-0.14383442699909,-0.019122371450067,0.15917007625103],[-0.013096446171403,-0.0069790743291378,0.0032011156436056],[0.065095081925392,0.011772945523262,-0.034601252526045]],[[-0.16002371907234,-0.039081640541553,0.1914356648922],[0.050750199705362,0.028579693287611,-0.043247271329165],[-0.075701311230659,-0.032355934381485,-0.072237603366375]],[[-0.050484005361795,-0.026286534965038,0.078656084835529],[0.10224023461342,-0.067493908107281,-0.057995855808258],[-0.12429689615965,0.032023917883635,-0.027586791664362]],[[-0.16086106002331,0.031304992735386,0.11200861632824],[0.13091567158699,0.15886449813843,0.080401718616486],[0.10134054720402,0.050762079656124,-0.030498865991831]],[[0.18259845674038,0.025393517687917,-0.031962148845196],[0.0015939947916195,-0.072657220065594,-0.012042414397001],[-0.13299567997456,-0.0014177118428051,0.25370103120804]],[[0.074131816625595,0.12659952044487,0.032778713852167],[-0.046695463359356,0.060777973383665,-0.0037282886914909],[-0.33283519744873,0.020786363631487,0.17258858680725]],[[-0.026322031393647,0.095232896506786,0.014410643838346],[-0.071140542626381,0.049671936780214,-0.10112976282835],[-0.025263929739594,0.12962958216667,-0.00066107948077843]],[[-0.0076888017356396,0.0012246404075995,0.095158107578754],[-0.07494480907917,-0.018803158774972,0.084665834903717],[-0.0076603624038398,0.14791014790535,0.099763043224812]],[[0.083026796579361,0.12355428934097,-0.01862152479589],[-0.15378026664257,-0.017606798559427,0.12709553539753],[-0.086573846638203,0.074814237654209,-0.062783673405647]],[[0.0092861130833626,-0.01148394215852,0.011453943327069],[-0.015238597989082,-0.093018509447575,-0.12158701568842],[-0.051325812935829,-0.021319741383195,-0.084896355867386]],[[-0.081914253532887,-0.10373478382826,0.010799412615597],[-0.0042996099218726,-0.03394427895546,0.13937711715698],[-0.0048641464672983,0.059228155761957,0.18018874526024]],[[0.17961557209492,0.024161467328668,-0.25057926774025],[-0.070881895720959,0.15637159347534,0.12696477770805],[-0.14754548668861,-0.011624721810222,-0.020225359126925]],[[-0.13206939399242,0.061409048736095,-0.095287829637527],[0.062939815223217,0.038902845233679,-0.14689058065414],[0.011700475588441,0.027584342285991,-0.20880338549614]],[[0.02434578537941,0.0065854177810252,0.1337828785181],[-0.11157906800508,0.0849978774786,-0.039229307323694],[-0.011769971810281,-0.087694473564625,0.061584200710058]],[[-0.0033758641220629,-0.077601179480553,-0.049065075814724],[-0.075189150869846,-0.058481678366661,-0.0047219255939126],[0.10752761363983,-0.0012825690209866,-0.11645901203156]],[[-0.025209084153175,0.031053498387337,-0.055705882608891],[0.063063889741898,0.018782004714012,0.02293567918241],[0.13338309526443,-0.0066626211628318,0.034544236958027]],[[-0.042083330452442,-0.051949936896563,0.097415782511234],[0.046057570725679,-0.069045670330524,-0.017715992406011],[0.17292565107346,-0.019095201045275,0.05399027466774]],[[-0.050509944558144,0.023849135264754,0.056099433451891],[-0.11605475842953,-0.1195207759738,0.11962210386992],[-0.12388671189547,0.078743107616901,0.047636415809393]],[[0.054020326584578,0.17803330719471,-0.038368694484234],[-0.18596591055393,0.016016883775592,-0.10092598944902],[-0.075255282223225,-0.04610226675868,0.057145599275827]],[[0.072680570185184,-0.035948906093836,0.026812292635441],[0.11285042762756,-0.032348647713661,-0.0073731066659093],[-0.12303436547518,-0.1184513643384,-0.060825482010841]],[[0.052992101758718,-0.020211005583405,0.012900475412607],[0.025830933824182,-0.08600427210331,-0.013872871175408],[-0.15748496353626,-0.22862982749939,0.17324137687683]],[[-0.028862480074167,0.014336028136313,0.21547690033913],[0.059995707124472,0.064814321696758,-0.063622340559959],[0.14909397065639,0.09657409787178,0.17569401860237]],[[0.016872519627213,-0.0028959817718714,-0.076342009007931],[0.20964553952217,0.093702167272568,0.015435862354934],[0.17141869664192,-0.059364050626755,0.024962093681097]],[[-0.097735799849033,-0.13550825417042,-0.042313862591982],[0.023005170747638,-0.16431260108948,0.081546731293201],[0.13690941035748,0.067332454025745,-0.05660929530859]],[[-0.14704698324203,-0.078289955854416,0.049064259976149],[0.10012807697058,0.084457531571388,0.076080068945885],[0.058005172759295,-0.01014999859035,-0.11461428552866]],[[-0.049832750111818,-0.0035036175977439,0.14268618822098],[-0.095476076006889,0.0069950739853084,-0.020512264221907],[0.01039694994688,0.063725970685482,0.016652626916766]],[[0.075674548745155,0.048689033836126,0.14123797416687],[-0.051702801138163,-0.07672992348671,0.014826173894107],[0.12169001251459,0.080524288117886,0.060475397855043]],[[0.1468136459589,-0.050360385328531,-0.09516579657793],[0.10169793665409,-0.052123315632343,0.032725773751736],[-0.090714380145073,-0.069508649408817,-0.11685016751289]],[[0.084531001746655,0.095561563968658,0.060775369405746],[-0.02708749845624,-0.059762254357338,0.041151288896799],[-0.1738882958889,-0.2031974196434,-0.1960728764534]],[[0.041841439902782,0.020042106509209,-0.12497343868017],[0.085952877998352,-0.19087888300419,-0.06936601549387],[0.023361839354038,0.00079860893310979,0.027946626767516]],[[-0.17980298399925,-0.1090365126729,-0.10374829173088],[-0.18873080611229,0.014344994910061,-0.038622885942459],[-0.078255370259285,-0.03942146897316,-0.012251607142389]],[[-0.01495995093137,-0.027169836685061,0.00023974015493877],[-0.27719834446907,-0.0001764286425896,-0.095427222549915],[-0.094817727804184,-0.26764711737633,-0.059075515717268]],[[0.096486128866673,0.095080770552158,0.074149169027805],[0.091913662850857,0.047046601772308,0.088234387338161],[0.027447329834104,0.12162268161774,0.15146768093109]],[[-0.12043410539627,0.0040041576139629,0.032547384500504],[0.024208061397076,0.067177027463913,0.076793283224106],[0.056421723216772,-0.06402875483036,-0.087778754532337]],[[0.087208889424801,0.016174094751477,-0.069625750184059],[0.072622165083885,0.10804699361324,0.41988748311996],[-0.034125331789255,-0.060841538012028,-0.1115340590477]],[[0.12426690012217,0.040071938186884,-0.025865888223052],[0.082828365266323,0.0059306118637323,-0.041518848389387],[-0.17995209991932,-0.11431755870581,0.11019482463598]],[[0.020744746550918,-0.069789066910744,-0.14878304302692],[0.027625933289528,0.041683055460453,-0.077258713543415],[-0.015478582121432,0.014171243645251,0.091443434357643]],[[-0.057104647159576,-0.057327385991812,-0.053064443171024],[0.055571291595697,-0.044539339840412,0.066570602357388],[0.031539048999548,0.13719248771667,-0.034084051847458]],[[-0.071859709918499,-0.086285747587681,-0.19979251921177],[-0.12104085087776,-0.070379756391048,0.026604508981109],[0.14179389178753,0.015679702162743,-0.25504821538925]],[[-0.034595109522343,-0.028853677213192,0.048761770129204],[-0.1544638723135,-0.095814391970634,0.016641931608319],[-0.02305905520916,0.069197118282318,-0.078144125640392]],[[-0.1726076155901,-0.1003770083189,0.15162461996078],[0.1190485060215,0.064369112253189,0.24800257384777],[0.036721624433994,0.072169274091721,-0.045631933957338]],[[-0.044589288532734,-0.049350757151842,0.00030350501765497],[0.002561210654676,0.0016898476751521,0.012099822051823],[-0.0043983231298625,0.091866910457611,0.049545053392649]],[[0.032349698245525,0.048424057662487,-0.032519984990358],[-0.13885879516602,-0.087395906448364,-0.096091397106647],[-0.14209027588367,0.078128650784492,-0.21360950171947]],[[0.017134381458163,0.017056936398149,-0.027338907122612],[-0.13132625818253,-0.014983643777668,0.041909106075764],[-0.16026909649372,-0.016619296744466,0.11101424694061]],[[0.12169034034014,0.019497195258737,-0.025575999170542],[0.039748702198267,0.13225317001343,0.039460096508265],[-0.071421906352043,-0.032647736370564,0.13180769979954]],[[-0.17167699337006,-0.12083664536476,-0.083293169736862],[0.019537238404155,-0.18006548285484,-0.13609001040459],[-0.0060701072216034,-0.0060188365168869,-0.10631185024977]],[[-0.038802739232779,-0.13555397093296,-0.031853042542934],[0.029236551374197,0.021682936698198,-0.070899218320847],[0.13509868085384,-0.11701648682356,-0.078163303434849]],[[0.083876356482506,0.056919079273939,-0.11988990753889],[-0.075039356946945,-0.13203904032707,-0.023504925891757],[-0.23889867961407,-0.088103704154491,-0.11901462823153]],[[0.17172828316689,0.013956533744931,0.13666726648808],[-0.090341001749039,0.065748013556004,-0.10992223769426],[0.0084024332463741,0.043556202203035,-0.40840321779251]],[[-0.051765505224466,0.06827475130558,-0.1462269872427],[0.10836864262819,0.0064167589880526,-0.30599799752235],[0.12478483468294,0.056661337614059,-0.041978009045124]],[[-0.059999320656061,0.013838657177985,0.11233063042164],[0.0043900101445615,-0.04022204130888,-0.069778293371201],[0.16444334387779,0.14622129499912,0.076481848955154]],[[0.19339133799076,0.088820569217205,-0.045206874608994],[-0.04354028403759,0.065592095255852,0.48658990859985],[-0.11023159325123,0.071169070899487,0.23900429904461]],[[-0.054029621183872,0.019328193739057,0.14562897384167],[-0.0040197521448135,-0.16898815333843,0.030098538845778],[-0.10344714671373,-0.11558346450329,-0.11250736564398]],[[-0.043303295969963,-0.15632313489914,-0.1987672150135],[-0.073809944093227,-0.17347922921181,-0.12161819636822],[0.11673550307751,-0.11003634333611,-0.21210107207298]],[[-0.026389436796308,0.068300068378448,0.090802304446697],[-0.021137610077858,0.040911715477705,-0.01161289960146],[-0.037769269198179,-0.039512977004051,0.04361454769969]],[[-0.23131942749023,0.016273258253932,-0.049820318818092],[-0.079457230865955,-0.13296909630299,0.16992449760437],[0.098961591720581,0.20242327451706,-0.14561919867992]],[[0.070810317993164,0.032815352082253,0.027049159631133],[0.044487152248621,-0.0092565845698118,-0.044120490550995],[0.089828319847584,-0.077561467885971,-0.0628961622715]],[[0.15674588084221,-0.078766174614429,-0.0148721691221],[-0.061747923493385,0.16038106381893,-0.014165545813739],[0.096854656934738,-0.17921762168407,-0.22368834912777]],[[0.15259301662445,-0.051167976111174,-0.02362060546875],[-0.051437571644783,-0.084634467959404,0.032739754766226],[0.018879994750023,0.015093848109245,0.083202458918095]],[[0.18252111971378,-0.036914937198162,-0.084699399769306],[-0.071757882833481,-0.045484401285648,-0.021833835169673],[0.14955298602581,0.0099566243588924,-0.094573087990284]],[[-0.15406489372253,-0.10790023952723,0.1190220862627],[0.12319462746382,-0.26269215345383,0.056882500648499],[0.16323685646057,-0.1047293022275,-0.1013941988349]],[[-0.11927395313978,-0.088206581771374,-0.14680820703506],[-0.098196811974049,-0.10081318765879,0.19786943495274],[-0.12864890694618,-0.14049160480499,-0.18551181256771]],[[-0.023752013221383,0.1080486997962,-0.028167748823762],[0.14220766723156,0.018784878775477,-0.040095012634993],[-0.18862900137901,0.033615507185459,0.099447712302208]],[[0.20778359472752,0.042903963476419,0.061560716480017],[-0.0055365874432027,0.071094043552876,-0.024956522509456],[0.081035688519478,0.23528784513474,0.19044627249241]],[[0.0014172064838931,-0.047273423522711,-0.0057398709468544],[0.039811190217733,-0.013566522859037,-0.0012731207534671],[-0.11616979539394,0.013197223655879,-0.050349108874798]],[[0.047882780432701,0.2228826135397,0.16730734705925],[-0.071380019187927,0.005509375128895,-0.089969679713249],[0.18529137969017,-0.027040392160416,0.07708865404129]],[[-0.22088062763214,-0.0041445298120379,0.042387165129185],[0.013524712063372,0.033565800637007,0.11623428016901],[0.12072809785604,-0.042676344513893,-0.035677924752235]],[[-0.0045568617060781,0.11402372270823,0.22023303806782],[0.22794443368912,0.055901285260916,-0.11692003160715],[-0.15769661962986,-0.082937352359295,0.18304228782654]],[[-0.15467375516891,0.15178783237934,0.11068527400494],[-0.12087223678827,-0.0036194110289216,-0.18985445797443],[0.073110714554787,0.03261961042881,-0.03091849386692]],[[0.098448306322098,-0.14010608196259,-0.09410884976387],[-0.025049541145563,0.048026110976934,0.064860545098782],[-0.036757286638021,-0.10478471964598,0.052695099264383]],[[-0.092656366527081,-0.027849121019244,-0.27869665622711],[-0.17822487652302,-0.1594165712595,-0.27915507555008],[-0.045182548463345,-0.095783807337284,0.12890185415745]],[[-0.035854067653418,-0.0037260262761265,-0.0062490813434124],[0.20754544436932,0.22091722488403,0.1419263780117],[0.1512666195631,0.041156310588121,0.094299592077732]],[[-0.036944955587387,-0.0045772707089782,0.014242326840758],[-0.095356568694115,0.044492889195681,0.074238769710064],[0.21239739656448,0.059500191360712,0.0021438605617732]],[[-0.020513538271189,0.12904942035675,0.025426840409636],[0.10422165691853,0.17622861266136,0.031185872852802],[-0.29078933596611,0.078632190823555,0.19210800528526]],[[-0.053651582449675,-0.061172533780336,-0.084242612123489],[-0.034479811787605,-0.083761945366859,-0.22900408506393],[0.003823607461527,0.023584010079503,-0.080052301287651]],[[0.12602688372135,0.038122341036797,-0.055921670049429],[0.22430761158466,-0.085642851889133,-0.0087729580700397],[-0.11569136381149,-0.11317967623472,0.084433481097221]],[[-0.10700982809067,0.2226482629776,-0.0019190264865756],[0.12878772616386,-0.068620815873146,-0.16659271717072],[0.028940944001079,-0.042501252144575,-0.032662905752659]],[[0.13684484362602,0.091775320470333,0.12545523047447],[0.0075029856525362,-0.0006260511581786,-0.10343809425831],[0.14890511333942,-0.097298957407475,0.069351814687252]],[[0.031392756849527,-0.11804791539907,0.18729367852211],[-0.016717305406928,-0.06708636879921,-0.061960309743881],[0.016337513923645,0.048799090087414,-0.050130270421505]],[[-0.034146942198277,0.029809361323714,0.050819825381041],[-0.051616042852402,-0.02832000143826,-0.04607467353344],[0.0097235813736916,-0.088027112185955,-0.090818718075752]],[[0.002748851897195,0.10358948260546,0.029958138242364],[0.093386866152287,0.17004914581776,-0.051054604351521],[0.13221354782581,0.050281830132008,-0.072872415184975]],[[-0.17316855490208,0.030169133096933,-0.034764394164085],[-0.17990949749947,-0.0066507747396827,-0.068948596715927],[0.011657167226076,0.085976675152779,-0.036549691110849]],[[-0.2442961782217,-0.010704596526921,0.078129820525646],[0.03530065715313,0.19870118796825,0.1625112593174],[0.07625587284565,0.073783129453659,0.043675549328327]],[[0.10898326337337,0.041752636432648,0.043066564947367],[0.023559365421534,-0.044417664408684,0.21157382428646],[0.020564619451761,-0.079969219863415,0.016228530555964]],[[0.13551141321659,0.0020701137837023,-0.039470184594393],[0.10615813732147,0.12845128774643,-0.020315993577242],[-0.062842383980751,0.018020883202553,-0.091285534203053]],[[-0.11042136698961,-0.045971140265465,0.028472892940044],[-0.0021401992999017,-0.08067836612463,0.062348309904337],[0.0045558954589069,-0.19933654367924,-0.09106607735157]],[[0.20347025990486,-0.26312431693077,-0.028691910207272],[0.14730642735958,0.036833059042692,0.026882695034146],[0.096064455807209,0.14648859202862,0.16024771332741]],[[0.012719877995551,0.026747377589345,0.096182256937027],[0.073705740272999,-0.0016219652025029,-0.13497099280357],[0.10084488242865,0.049248289316893,-0.06896810978651]],[[0.0019111136207357,-0.03907947987318,-0.07015098631382],[-0.063772097229958,-0.066586636006832,0.00055247789714485],[-0.021717855706811,-0.076160095632076,0.13485658168793]],[[0.12853802740574,0.13037873804569,0.038772750645876],[0.041923731565475,-0.018902000039816,-0.09072682261467],[0.010687823407352,0.12882797420025,-0.031816571950912]],[[-0.17969685792923,-0.060636304318905,-0.0021378756500781],[-0.075000800192356,-0.15851786732674,0.21093994379044],[0.076580211520195,-0.036919478327036,-0.07674440741539]],[[0.045172609388828,-0.074879042804241,-0.044577728956938],[-0.081341080367565,-0.13257613778114,0.0023057693615556],[0.018430694937706,0.13387805223465,0.10864927619696]],[[0.091328278183937,0.061639919877052,0.072132125496864],[0.023718301206827,0.083918407559395,0.031587608158588],[0.063773602247238,0.07947850227356,-0.025699753314257]],[[0.014729474671185,-0.053272988647223,0.21256506443024],[0.14150854945183,-0.067698866128922,-0.02264322899282],[-0.036288011819124,-0.13838037848473,-0.03960307314992]],[[-0.012413518503308,-0.10081931948662,-0.0017371190479025],[0.0024081938900054,-0.0095070768147707,-0.062007334083319],[0.082856193184853,0.13925428688526,0.089020378887653]],[[0.13046528398991,0.10882283747196,0.049366682767868],[0.10130474716425,-0.071751199662685,0.14900200068951],[0.15983927249908,0.074386708438396,0.064696818590164]],[[0.14029021561146,0.025537123903632,-0.074492901563644],[-0.14090266823769,-0.20277914404869,-0.048418302088976],[-0.0076049934141338,-0.15202564001083,-0.13647635281086]],[[0.037877075374126,0.041303083300591,0.07897000014782],[-0.091072149574757,-0.035987555980682,0.016331002116203],[-0.066382840275764,-0.11047445237637,0.052050206810236]],[[0.15267071127892,0.12361914664507,-0.056177511811256],[0.15351960062981,-0.01384746003896,0.015227862633765],[0.13841393589973,-0.071795247495174,-0.041883837431669]],[[-0.040502160787582,0.074845604598522,-0.04830813780427],[-0.082069858908653,-0.12249534577131,-0.078999251127243],[0.022344067692757,0.0047597256489098,0.11836936324835]],[[-0.032232955098152,0.0055580828338861,0.019755333662033],[0.0062254276126623,-0.04387828707695,-0.1642784178257],[0.25153523683548,0.099394015967846,-0.18081487715244]],[[0.043543573468924,0.01781496219337,0.14273236691952],[0.015900783240795,0.098560832440853,0.018862422555685],[0.044776033610106,-0.10923210531473,-0.20707258582115]],[[0.024040546268225,-0.066972561180592,0.019556416198611],[0.072202362120152,-0.048605944961309,0.01068128272891],[0.039709128439426,-0.062496729195118,0.010581829585135]],[[-0.15783888101578,-0.029490577057004,-0.11481355875731],[0.10168305039406,-0.11674480885267,-0.10517130792141],[-0.068902164697647,0.03241752833128,0.059955194592476]],[[0.010215288959444,-0.043619800359011,-0.02073928155005],[0.099139526486397,0.054210487753153,0.056613266468048],[0.19325856864452,-0.04287613555789,0.13861601054668]],[[0.06570590287447,0.018174815922976,-0.010347790084779],[-0.091088734567165,0.14962346851826,-0.020511690527201],[-0.062105175107718,0.10132879018784,0.071403644979]],[[0.041764475405216,0.077191017568111,0.15797500312328],[-0.10742200165987,-0.051886040717363,-0.055154293775558],[-0.081709362566471,-0.081264965236187,0.0079074427485466]],[[0.018798651173711,0.0085489479824901,-0.03611595928669],[-0.075191237032413,0.1008620634675,-0.0089498590677977],[0.093049600720406,-0.15117113292217,-0.019108716398478]],[[0.013953365385532,0.012331199832261,0.031882815063],[-0.10705483704805,-0.067763321101665,0.025914253666997],[-0.17164567112923,-0.064182229340076,0.1382872313261]]],[[[0.073229782283306,0.046833980828524,-0.12110675126314],[0.11701713502407,0.088238194584846,-0.067591182887554],[0.13500939309597,0.10781543701887,-0.18898072838783]],[[-0.044061101973057,-0.031810730695724,0.012481381185353],[-0.015816630795598,-0.046502791345119,0.011670712381601],[-0.034213114529848,0.065768852829933,0.14840722084045]],[[-0.050395630300045,0.086999095976353,-0.087386704981327],[0.074306443333626,0.014795604161918,0.014150975272059],[-0.012607891112566,-0.02077298425138,0.0037135947495699]],[[-0.12164121121168,-0.24599993228912,0.076119437813759],[0.046749290078878,-0.04622008278966,-0.066108100116253],[0.063958793878555,0.12740212678909,-0.038083728402853]],[[-0.026593048125505,0.040588270872831,-0.03146231174469],[-0.027380296960473,0.052281506359577,-0.0013801000313833],[0.016244783997536,0.018719371408224,-0.0044137956574559]],[[0.030615163967013,0.0042637409642339,0.042017180472612],[-0.014481381513178,0.021160863339901,0.044168133288622],[0.07048399746418,-0.023414392024279,-0.0024785629939288]],[[-0.089420400559902,0.037644356489182,0.15789058804512],[-0.00065623567206785,-0.14181786775589,0.014609536156058],[0.021984532475471,-0.093593567609787,-0.017463894560933]],[[0.023457955569029,-0.14409075677395,-0.22491706907749],[0.12653769552708,0.020275481045246,-0.032432910054922],[0.090885370969772,-0.037529122084379,-0.024174902588129]],[[-0.032987449318171,-0.047111961990595,0.06047535687685],[-0.0029081958346069,-0.025592219084501,-0.092460669577122],[0.017897222191095,-0.010908861644566,-0.11392847448587]],[[-0.076560162007809,-0.0028318986296654,0.12222497910261],[0.0094546470791101,-0.1360606700182,0.01649340428412],[-0.20430773496628,0.0094781666994095,-0.085622079670429]],[[-0.072309747338295,-0.085380166769028,0.024003490805626],[-0.11861638724804,-0.018357815220952,-0.06988587975502],[-0.11755565553904,0.016601769253612,0.011065388098359]],[[0.0060136318206787,0.11958031356335,0.047470398247242],[-0.076180495321751,-0.06464671343565,0.16441051661968],[-0.032429587095976,0.013286120258272,-0.026872303336859]],[[-0.088211290538311,-0.1429398804903,-0.10900124162436],[-0.065096028149128,-0.19453357160091,-0.17880094051361],[-0.04721749946475,0.049832250922918,-0.1174928098917]],[[0.0014975273516029,0.015725856646895,0.0042488677427173],[-0.041714485734701,0.080432742834091,0.03247419372201],[0.02290010266006,-0.015551894903183,0.036009956151247]],[[-0.064398549497128,0.053893800824881,-0.077315598726273],[-0.11705496907234,0.020884126424789,-0.051256582140923],[0.0073862839490175,-0.091209672391415,0.064714103937149]],[[-0.093510612845421,-0.1234400421381,0.0056739165447652],[-0.016960619017482,-0.04027821496129,-0.033408477902412],[0.089962251484394,-0.062860518693924,-0.00073483982123435]],[[0.010888984426856,-0.00079104118049145,0.061803583055735],[0.083107367157936,-0.0054715168662369,-0.0053287041373551],[0.0086631523445249,-0.16250267624855,-0.11299633234739]],[[0.067816041409969,0.11279048025608,0.043242752552032],[-0.0013831577962264,-0.037097472697496,0.02175759524107],[-0.05849876254797,-0.098075360059738,0.026473058387637]],[[0.048821114003658,-0.084602147340775,0.068976223468781],[0.06219270080328,-0.16838729381561,-0.0295803938061],[0.0053969421423972,-0.12592768669128,0.0089112175628543]],[[0.026208659633994,0.02460714802146,0.13008281588554],[0.035662196576595,0.0055219079367816,0.13151358067989],[-0.011298461817205,0.11458691954613,0.1157124787569]],[[0.03371562063694,-0.055075436830521,-0.081568747758865],[-0.089200869202614,-0.073058106005192,-0.07755471020937],[-0.13021975755692,-0.12959679961205,-0.035196609795094]],[[-0.08346976339817,-0.0071399821899831,0.16074791550636],[0.0032265828922391,0.030844124034047,0.12719570100307],[-0.11304998397827,0.10127233713865,0.11731051653624]],[[-0.028118936344981,0.022733455523849,0.030663840472698],[0.080783449113369,0.0048470352776349,0.0018809970933944],[0.0073264022357762,-0.069062769412994,0.049278743565083]],[[-0.10932725667953,-0.14294855296612,-0.032421424984932],[0.10048586130142,-0.011699953116477,-0.027788691222668],[-0.027289621531963,-0.0131995677948,-0.021067935973406]],[[-0.018526596948504,-0.052004769444466,-0.13225929439068],[0.0011179153807461,0.056993037462234,0.031082138419151],[0.099969126284122,0.23231266438961,0.012559027411044]],[[0.040858767926693,0.038572080433369,0.1802794188261],[0.011729598976672,-0.0018832453060895,-0.030752323567867],[0.010403485968709,-0.10187143087387,-0.19525837898254]],[[0.055042810738087,-0.13807785511017,0.062975808978081],[0.090315163135529,-0.015337833203375,-0.019945237785578],[0.1505671441555,-0.040652986615896,-0.0085954377427697]],[[-0.17958995699883,-0.049217816442251,0.058512307703495],[-0.031281027942896,-0.049782179296017,0.066501922905445],[0.020897872745991,-0.1231284737587,0.064331375062466]],[[0.034616973251104,0.022034078836441,0.030540501698852],[-0.15320320427418,0.10038837790489,0.10053962469101],[-0.13602739572525,0.015081187710166,-0.021686783060431]],[[-0.072268806397915,-0.084070198237896,0.070199005305767],[0.1105707064271,-0.038792375475168,-0.029708718881011],[0.071484886109829,0.0090660629794002,-0.1008880212903]],[[-0.053945429623127,0.027036918327212,0.012825818732381],[0.10557913780212,-0.071790665388107,-0.015907159075141],[0.078267313539982,-0.017805881798267,0.10488083958626]],[[0.01348537299782,0.064907521009445,-0.0084284897893667],[0.050637576729059,0.025335622951388,0.001864317455329],[0.11621807515621,0.051553126424551,-0.066751696169376]],[[0.049321841448545,-0.031976241618395,0.096496470272541],[0.070439107716084,-0.018765904009342,-0.032156318426132],[0.020538453012705,-0.12701714038849,-0.089367374777794]],[[-0.022079152986407,0.079313337802887,0.0034623239189386],[-0.19214648008347,0.10612475126982,0.092491649091244],[-0.030097616836429,-0.033140797168016,0.026192553341389]],[[-0.10703778266907,-0.11702094227076,-0.020770845934749],[-0.06428836286068,-0.0021876450628042,0.031765282154083],[-0.076149448752403,0.024586779996753,0.08431713283062]],[[-0.1475891917944,-0.20443074405193,-0.067853778600693],[0.013041363097727,-0.17004717886448,-0.035891007632017],[-0.050908152014017,-0.13916365802288,-0.13466691970825]],[[0.039359975606203,-0.068871200084686,-0.11225891858339],[-0.00015551774413325,-0.1016446724534,-0.06552766263485],[0.030257558450103,-0.061936371028423,0.004846144001931]],[[0.0077576548792422,-0.086515553295612,-0.17361801862717],[0.039005428552628,0.14670869708061,-0.0017460285453126],[-0.051225181668997,0.076430648565292,0.048742942512035]],[[0.058944132179022,-0.080283261835575,0.044920194894075],[0.008149185217917,-0.071328587830067,-0.004235050175339],[0.0097985723987222,-0.0069669326767325,0.0051353680901229]],[[-0.024552967399359,0.026180390268564,-0.05886547267437],[0.12353067100048,-0.010480672121048,-0.013545543886721],[-0.026958450675011,-0.029600312933326,-0.068759508430958]],[[-0.03832296282053,0.032444395124912,0.082643106579781],[-0.043205678462982,0.11036802828312,0.099124364554882],[-0.189024284482,0.016050487756729,-0.0015469378558919]],[[-0.049955129623413,0.12612400949001,0.11670059710741],[-0.047328539192677,-0.030830813571811,0.12348382920027],[-0.047772813588381,0.099873214960098,0.19173273444176]],[[-0.13945898413658,0.0084376102313399,-0.012023739516735],[-0.012880403548479,-0.018657678738236,0.028990106657147],[0.00017051663598977,-0.30109062790871,-0.031456056982279]],[[-0.067754551768303,-0.060366615653038,0.074118852615356],[0.039036460220814,-0.0075885010883212,0.010283777490258],[0.0035574191715568,-0.028548194095492,0.020405093207955]],[[-0.0072260592132807,0.083634786307812,-0.14741133153439],[-0.08208791911602,-0.015594220720232,-0.033076092600822],[-0.1133768260479,0.022419353947043,0.029921704903245]],[[0.10920464247465,0.068142771720886,0.064256139099598],[-0.011194366961718,-0.001696907915175,-0.028108578175306],[0.065346285700798,0.11284126341343,-0.10058778524399]],[[-0.20009368658066,0.09374888241291,0.13888861238956],[0.030979704111814,-0.017339523881674,0.062709651887417],[0.030609434470534,-0.057989399880171,0.042470443993807]],[[0.10134409368038,-0.0062112119048834,0.01293468195945],[0.025342706590891,-0.087119996547699,-0.032078437507153],[0.052545316517353,0.060613706707954,0.051958348602057]],[[-0.093861997127533,-0.14505918323994,-0.028708789497614],[0.05866776406765,-0.054946325719357,0.070740960538387],[0.084844574332237,-0.004519993904978,-0.087338231503963]],[[-0.04373974353075,-0.18175055086613,-0.052753742784262],[0.00023022954701446,-0.056537613272667,-0.082281045615673],[0.026980230584741,0.039700292050838,-0.11464340239763]],[[-0.023279951885343,-0.00119112606626,-0.055363658815622],[0.21865683794022,0.12226800620556,0.080534555017948],[0.13847449421883,0.1807946562767,-0.04957627505064]],[[-0.0083787105977535,0.11151859164238,-0.10483877360821],[0.014667356386781,0.092979766428471,0.013282274827361],[-0.079209730029106,-0.035062108188868,0.10108609497547]],[[-0.017326502129436,-0.022098958492279,0.037910725921392],[0.07026618719101,-0.11088561266661,-0.088924750685692],[0.15391774475574,-0.071536980569363,-0.043002109974623]],[[0.0369972884655,0.0051250359974802,0.14274656772614],[-0.056456610560417,-0.14622583985329,0.049420658499002],[-0.073810406029224,-0.076130583882332,0.073255054652691]],[[-0.10757089406252,-0.037761673331261,-0.196333527565],[-0.099198125302792,0.022447099909186,-0.028520621359348],[0.001247244537808,0.11900536715984,0.044841460883617]],[[-0.15073010325432,0.0017229780787602,-0.062251675873995],[-0.080263733863831,0.053388942033052,-0.067585125565529],[-0.00052487466018647,-0.020996183156967,0.033852186053991]],[[-0.017678646370769,0.030793998390436,0.059770364314318],[0.063956096768379,0.06495850533247,0.027432963252068],[-0.078681342303753,-0.034833494573832,0.13563607633114]],[[-0.052904713898897,-0.021811822429299,-0.080930083990097],[-0.14488960802555,-0.017464006319642,-0.14040368795395],[-0.24705432355404,-0.13052763044834,-0.20338207483292]],[[-0.038215756416321,-0.0075455685146153,-0.058095756918192],[0.079200312495232,0.004504413343966,0.0099871987476945],[0.026647290214896,-0.017631875351071,-0.020512159913778]],[[-0.073432058095932,-0.049282897263765,0.014136031270027],[-0.004167492967099,-0.0097297327592969,-0.094353303313255],[0.04829241335392,-0.018597692251205,-0.025855660438538]],[[0.049934938549995,0.084908694028854,0.14128202199936],[-0.046472284942865,0.091850109398365,0.061065975576639],[-0.10422372072935,-0.080916441977024,-0.0253586769104]],[[-0.073602229356766,0.01522677205503,0.02530649676919],[-0.025439405813813,-0.032674416899681,0.029960779473186],[-0.17472465336323,-0.038345731794834,0.019988596439362]],[[-0.057276863604784,-0.023195100948215,-0.039180669933558],[-0.12200626730919,0.042631916701794,-0.031506266444921],[-0.090843759477139,0.098289802670479,-0.068470731377602]],[[-0.0080556403845549,-0.12582977116108,-0.053314048796892],[0.065577156841755,0.077719517052174,-0.065876051783562],[0.049236033111811,0.069300256669521,0.011365346610546]],[[-0.10252752155066,0.069946236908436,0.083331622183323],[-0.090405322611332,-0.0056175389327109,0.11211552470922],[-0.048866286873817,-0.029033793136477,0.10031607747078]],[[0.019432839006186,0.036080926656723,-0.0069127245806158],[0.091627180576324,0.020711934193969,-0.059915777295828],[-0.038129705935717,-0.12944003939629,-0.13052204251289]],[[-0.057869233191013,0.026373291388154,0.1107160449028],[-0.11066956818104,-0.14568342268467,0.030992109328508],[0.0029572634957731,-0.027009986341,-0.055713258683681]],[[-0.16187316179276,0.044238045811653,0.12449157983065],[0.033466201275587,-0.18190515041351,0.016094142571092],[-0.014909680001438,-0.01156167127192,-0.14847153425217]],[[0.024677099660039,0.023595113307238,0.15177340805531],[-0.071378111839294,-0.028273038566113,0.056670110672712],[-0.0049822484143078,0.0040092300623655,0.019543346017599]],[[0.011534424498677,-0.014365723356605,0.046436350792646],[-0.039861179888248,0.036159578710794,-0.054566655308008],[0.043803527951241,0.019335193559527,-0.043296486139297]],[[-0.12639366090298,0.071231842041016,0.026388961821795],[-0.013958186842501,0.070539765059948,0.080916471779346],[0.014971856027842,0.037667974829674,0.06892529129982]],[[0.033954013139009,0.023221302777529,0.11290727555752],[-0.013133326545358,-0.12003838270903,0.1021387130022],[-0.045866262167692,0.08481589704752,0.044095806777477]],[[0.0021502741146833,-0.03362175822258,-0.084613546729088],[-0.047589126974344,-0.12210476398468,-0.15541400015354],[-0.033116694539785,-0.24109324812889,-0.14323946833611]],[[0.088205598294735,-0.024755399674177,0.052165511995554],[-0.027897210791707,0.012287305667996,0.046637900173664],[-0.14759193360806,0.036553390324116,0.026013588532805]],[[-0.085496962070465,0.11670122295618,0.056015692651272],[0.121262781322,0.0018836450763047,0.10921780765057],[5.8476831327425e-05,0.034301534295082,0.093539848923683]],[[0.027701081708074,0.094618707895279,0.02686870470643],[0.053736850619316,-0.041541133075953,0.095191434025764],[-0.027026010677218,0.055097874253988,0.10363833606243]],[[0.070888862013817,-0.052974831312895,-0.148712053895],[-0.051222216337919,0.094139687716961,-0.093718349933624],[-0.042031761258841,0.059863526374102,0.12197262793779]],[[0.070643313229084,-0.025178141891956,0.0067695979960263],[-0.053131259977818,0.021633785218,-0.10752441734076],[-0.070887602865696,-0.052947383373976,-0.0012597828172147]],[[-0.02110449783504,-0.025446783751249,-0.035980448126793],[0.0066620935685933,0.085550203919411,-0.031183309853077],[-0.047576852142811,0.0063611553050578,-0.062223840504885]],[[-0.035569485276937,0.12536980211735,-0.020144246518612],[0.041074965149164,0.070936597883701,0.12007752805948],[0.073963403701782,-0.053485840559006,0.061396446079016]],[[0.063390903174877,-0.027413381263614,0.044434785842896],[0.10046398639679,0.03500023111701,-0.17844519019127],[0.064796879887581,0.097375012934208,0.02942525036633]],[[0.070177182555199,0.019342174753547,0.0079128788784146],[0.040754415094852,-0.034795869141817,0.041425801813602],[0.023403143510222,-0.062218546867371,0.050942972302437]],[[-0.12228998541832,-0.022828582674265,0.099391885101795],[0.018782705068588,0.018124325200915,0.00037168507697061],[0.0040796939283609,0.084282577037811,0.1459755897522]],[[-0.15367546677589,-0.03146917745471,-0.028008628636599],[-0.21676474809647,-0.041940040886402,0.035717491060495],[-0.33504885435104,-0.19699980318546,0.0080711096525192]],[[-0.045328743755817,0.037120897322893,0.091286763548851],[-0.019324513152242,0.029386701062322,0.064674332737923],[-0.047361075878143,0.10887290537357,-0.094134151935577]],[[-0.12978784739971,0.033184953033924,0.068931393325329],[-0.13163362443447,-0.068261973559856,0.038134820759296],[-0.09036573767662,-0.12361623346806,-0.067912474274635]],[[-0.041150711476803,-0.040597818791866,0.0024942338932306],[-0.048913184553385,-0.078883782029152,-0.049926433712244],[0.012693003751338,-0.033884420990944,-0.055821530520916]],[[-0.0096941366791725,0.13799020648003,0.10232543945312],[0.010139754973352,0.029884049668908,0.045937024056911],[0.033958032727242,0.064502276480198,0.043319080024958]],[[-0.057208485901356,0.14142763614655,0.11997072398663],[-0.068568877875805,-0.033642075955868,0.019649092108011],[0.069325424730778,-0.03574838116765,0.013776131905615]],[[-0.049598801881075,-0.086479932069778,0.0076671009883285],[0.036219913512468,-0.080164335668087,-0.10517101734877],[-0.28274917602539,-0.13431741297245,-0.0010190319735557]],[[-0.069665670394897,-0.11213993281126,-0.029746858403087],[0.016748338937759,-0.087836474180222,-0.15548804402351],[0.095044165849686,0.01166086550802,0.0068838056176901]],[[0.025876112282276,-0.030536022037268,0.040850073099136],[-0.093435488641262,0.072950057685375,-0.034479174762964],[0.059480901807547,-0.016902258619666,0.10588955879211]],[[0.027453240007162,0.048216879367828,0.0015770768513903],[-0.043078437447548,-0.048257555812597,-0.16444529592991],[-0.030619060620666,0.089144825935364,-0.17587757110596]],[[-0.038157939910889,-0.0080270506441593,-0.16943602263927],[-0.090318687260151,-0.0090538579970598,-0.16196832060814],[-0.12680278718472,-0.032493103295565,-0.077162578701973]],[[0.11863668262959,0.074121043086052,0.10299183428288],[0.062101472169161,0.014005306176841,0.12159088999033],[-0.026893693953753,-0.0182517003268,0.14178900420666]],[[0.043497141450644,-0.018893672153354,0.052638627588749],[-0.071880899369717,0.055172555148602,-0.051141623407602],[-0.0078814020380378,0.05046571046114,0.049703858792782]],[[0.061960272490978,-0.076102823019028,-0.14079943299294],[0.026340099051595,0.019017426297069,-0.10007148236036],[-0.097306840121746,-0.0031580023933202,0.023383324965835]],[[0.018823944032192,-0.061286263167858,-0.030455308035016],[-0.0037097975146025,0.020036865025759,-0.057167798280716],[0.033607445657253,0.051147647202015,-0.0072854259051383]],[[0.085559107363224,0.050196155905724,-0.08707420527935],[-0.016845693811774,-0.11791767179966,-0.026040602475405],[0.0074634063057601,-0.065144792199135,-0.073413982987404]],[[0.064427882432938,-0.10976696014404,-0.069725997745991],[0.098586387932301,-0.018064562231302,-0.072257772088051],[0.068673633038998,-0.0052198129706085,-0.14992864429951]],[[-0.0038279846776277,0.047260269522667,-0.066706024110317],[-0.089852221310139,0.033950325101614,-0.1191741079092],[-0.085733979940414,-0.095442675054073,-0.099693335592747]],[[-0.071198314428329,-0.009177815169096,0.11948435753584],[-0.071371749043465,-0.0011024224804714,-0.048963770270348],[-0.0070556784048676,0.020944509655237,-0.038709655404091]],[[0.076198637485504,-0.086435057222843,-0.0726073756814],[-0.1636393815279,-0.054559860378504,-0.010005728341639],[-0.15111842751503,-0.16417346894741,0.039381265640259]],[[-0.037634272128344,0.10106813907623,0.01821275241673],[-0.078425571322441,0.066979579627514,-0.076664477586746],[0.060852728784084,-0.014297907240689,-0.08864389359951]],[[0.058564722537994,-0.10434970259666,0.099371641874313],[-0.017933281138539,-0.023898785933852,0.1001004204154],[0.061645373702049,-0.05762630328536,-0.28962218761444]],[[-0.010347529314458,-0.15404053032398,0.098294578492641],[0.052697323262691,-0.056115485727787,-0.024382209405303],[0.063436880707741,0.04769666865468,0.095620885491371]],[[0.0864322707057,0.11962512880564,-0.017931392416358],[0.040727157145739,0.084304362535477,-0.017722880467772],[0.16055403649807,0.03743128105998,-0.023557798936963]],[[0.012607679702342,-0.024066654965281,-0.030223436653614],[0.010758923366666,-0.087864257395267,0.043485194444656],[-0.007412975654006,-0.021072341129184,0.02780039049685]],[[0.066262647509575,0.0078603532165289,0.063724480569363],[0.0042314436286688,0.031869266182184,-0.071275264024734],[0.094846367835999,0.0066636903211474,0.062219694256783]],[[0.025724202394485,0.028571810573339,0.093123488128185],[-0.039449203759432,-0.050141602754593,0.065830923616886],[0.048507530242205,-0.035992991179228,0.021595865488052]],[[0.026220500469208,0.023795152083039,0.046874560415745],[-0.19953635334969,-0.035757027566433,0.13763278722763],[-0.10885896533728,-0.027814226225019,0.085358761250973]],[[-0.06965609639883,-0.10381320118904,0.048187427222729],[-0.16863343119621,-0.068750992417336,0.077953778207302],[-0.12645764648914,0.04939141497016,0.069478556513786]],[[0.023185864090919,-0.019529718905687,-0.002753317123279],[0.071450084447861,-0.053762972354889,0.060269095003605],[0.090262167155743,0.044501408934593,-0.026664661243558]],[[-0.02943136356771,0.020753988996148,0.010507246479392],[0.085165828466415,-0.035291738808155,-0.0055036977864802],[-0.028549076989293,-0.087144769728184,-0.1032826602459]],[[0.092899322509766,-0.010208734311163,0.12857080996037],[0.070754297077656,0.0060146022588015,0.14937570691109],[0.099510505795479,-0.083314180374146,0.010875906795263]],[[0.016629964113235,-0.036930423229933,0.0096770999953151],[-0.068141900002956,-0.037612427026033,0.11639070510864],[0.036712773144245,-0.046247661113739,-0.04087944701314]],[[-0.04523141682148,-0.018863901495934,-0.078473396599293],[-0.018864322453737,-0.020384153351188,-0.016930775716901],[0.0081523805856705,0.0021496186964214,-0.050484109669924]],[[-0.0093951532617211,-0.019031735137105,-0.044942308217287],[0.040528606623411,-0.072862632572651,-0.11892238259315],[0.077578850090504,0.036009959876537,0.015052614733577]],[[0.11686981469393,0.093275167047977,-0.086123809218407],[0.11856477707624,0.018794035539031,0.0018019422423095],[-0.058292038738728,-0.070301428437233,-0.22801597416401]],[[-0.14579182863235,0.022709168493748,0.028146367520094],[0.018377752974629,-0.082928851246834,0.051678646355867],[0.037995621562004,-0.057898957282305,-0.044185321778059]],[[-0.16580459475517,-0.12269599735737,-0.033093880861998],[-0.085946135222912,-0.023790020495653,-0.091615349054337],[0.048244763165712,0.0037434466648847,-0.14634069800377]],[[0.047379583120346,0.17647051811218,0.093282602727413],[-0.028833448886871,0.11880933493376,0.13612185418606],[0.014346952550113,-0.012649832293391,0.19306123256683]],[[0.031184390187263,0.11737778782845,0.0406858548522],[-0.14528968930244,0.074478685855865,0.042776677757502],[-0.021597789600492,-0.10553483664989,0.077450051903725]],[[0.029844513162971,-0.079439520835876,0.089784771203995],[0.079754263162613,-0.043432030826807,-0.018293619155884],[-0.067514657974243,-0.0071246419101954,-0.031374424695969]],[[-0.032803893089294,0.06896510720253,-0.033067677170038],[-0.041224356740713,0.035122957080603,0.0015077700372785],[-0.0305903442204,-0.10618980228901,0.025785667821765]],[[-0.022189982235432,0.039832130074501,-0.028056124225259],[-0.044661935418844,0.046747159212828,0.011202366091311],[-0.00077604438411072,-0.044679407030344,0.046362645924091]],[[-0.0053208847530186,-0.014980654232204,0.066157653927803],[0.091946817934513,0.10060165077448,-0.12482018023729],[0.16826148331165,-0.042157325893641,-0.13226945698261]],[[0.07679895311594,0.0038769100792706,-0.10234747081995],[0.099849671125412,0.13752581179142,-0.072415225207806],[-0.0071761207655072,-0.048435792326927,-0.12783022224903]]],[[[-0.037957448512316,0.019253699108958,0.090602189302444],[-0.076964065432549,-0.099118299782276,-0.019013445824385],[-0.02090035378933,-0.08907875418663,-0.053142238408327]],[[-0.10401356965303,0.053863316774368,0.015391795895994],[-0.12032654136419,-0.041116431355476,0.017237873747945],[-0.073299206793308,0.094758898019791,0.069215558469296]],[[0.069980971515179,-0.081540010869503,0.013490512035787],[-0.017298016697168,0.024197213351727,0.019699042662978],[0.038835361599922,0.086925961077213,0.23878015577793]],[[-0.12825042009354,0.0031512845307589,-0.10154626518488],[0.047548662871122,0.030696822330356,-0.15078546106815],[0.36354610323906,0.058532740920782,0.015275808982551]],[[-0.027376927435398,0.010026436299086,0.040203422307968],[-0.012711481191218,-0.018339723348618,-0.020246973261237],[0.051544155925512,-0.01535162422806,-0.0048307697288692]],[[-0.0085194120183587,0.069277673959732,-0.14003682136536],[0.094802498817444,-0.026153212413192,-0.10433715581894],[0.045776940882206,0.11388774961233,-0.072234153747559]],[[0.055673535913229,-0.032863490283489,-0.0083041051402688],[-0.011910978704691,0.079486452043056,0.090500272810459],[-0.045505650341511,0.17289328575134,-0.039039060473442]],[[-0.11251141875982,0.015784405171871,-0.08259042352438],[-0.025494704023004,0.039638739079237,0.1778694242239],[-0.024002788588405,-0.13330166041851,0.18193912506104]],[[0.0045036543160677,-0.11466209590435,0.11156792938709],[0.0082333320751786,-0.12733301520348,0.060556404292583],[-0.14107185602188,0.0051163965836167,0.11386086046696]],[[-0.077851258218288,0.051041219383478,-0.015355644747615],[-0.070485584437847,-0.11880315840244,0.095729641616344],[-0.24666318297386,-0.069792687892914,-0.09503497928381]],[[0.12781795859337,0.1148983463645,-0.0072607938200235],[-0.10369435697794,-0.14363189041615,-0.0089339492842555],[0.039419367909431,0.0071764015592635,-0.18533138930798]],[[-0.25495654344559,-0.22354376316071,0.10094378888607],[-0.073303230106831,-0.19018357992172,0.12313931435347],[0.19878789782524,0.13052143156528,0.13411474227905]],[[-0.035449765622616,0.048416908830404,0.078488752245903],[0.16803082823753,0.021947771310806,-0.043588124215603],[-0.047449339181185,-0.067475348711014,-0.11155597120523]],[[-0.020693985745311,0.059291865676641,-0.026367334648967],[-0.12490200996399,-0.0070141707547009,-0.054181329905987],[0.016318963840604,0.094494894146919,0.036142915487289]],[[-0.12680380046368,-0.040943190455437,-0.067394755780697],[0.02018029242754,0.025706171989441,0.14975097775459],[0.18996687233448,0.069269277155399,0.03797971829772]],[[0.19445668160915,0.026096731424332,-0.039261929690838],[0.28542956709862,0.0075709074735641,-0.025865657255054],[0.23964367806911,-0.0014298548921943,-0.11728782206774]],[[-0.057428419589996,0.031301129609346,0.083580106496811],[0.12804155051708,0.09862557798624,0.00078812061110511],[0.039028760045767,-0.15193995833397,-0.14487428963184]],[[-0.16316130757332,-0.04685415700078,0.052759241312742],[-0.10703212767839,-0.022146055474877,0.19336186349392],[-0.032458659261465,-0.070446401834488,0.10020190477371]],[[-0.09338591247797,0.033926334232092,0.12721833586693],[-0.068737499415874,-0.13494016230106,-0.061024181544781],[0.070721171796322,-0.14832247793674,-0.17297361791134]],[[-0.1314785182476,-0.090572126209736,0.16909128427505],[-0.049579109996557,-0.26643562316895,0.014818717725575],[0.040846552699804,0.03438414260745,-0.046898484230042]],[[-0.012078723870218,-0.065943628549576,-0.23031531274319],[-0.0059961257502437,-0.17757549881935,-0.14995723962784],[-0.15241934359074,0.0063387658447027,0.15826822817326]],[[0.047861453145742,-0.17918895184994,0.139004945755],[-0.10927125066519,0.044184539467096,0.07946440577507],[0.075996197760105,0.13968266546726,0.11342012882233]],[[0.0049999472685158,0.15378297865391,-0.2430005967617],[-0.037625331431627,-0.067570611834526,-0.17771025002003],[0.1656316369772,0.19524104893208,-0.015845108777285]],[[-0.034870374947786,0.037912618368864,-0.037891961634159],[-0.0077196480706334,-0.037545874714851,-0.058374516665936],[0.20153969526291,0.15712893009186,0.1004725843668]],[[-0.064581915736198,-0.25660315155983,0.047667477279902],[0.27879104018211,0.083678565919399,0.098058953881264],[0.33110764622688,-0.031692393124104,0.10613638907671]],[[-0.1151807308197,0.035283025354147,-0.044918924570084],[-0.16720589995384,-0.18219713866711,-0.096065945923328],[0.079884573817253,-0.051404654979706,-0.077248953282833]],[[-0.024917518720031,-0.0092394407838583,0.026802679523826],[-0.020120538771152,-0.049185872077942,0.01552992593497],[0.010053136385977,-0.022681508213282,0.087113581597805]],[[-0.072615347802639,-0.023086182773113,-0.038271445780993],[0.0040383520536125,0.18011458218098,0.077811688184738],[0.0060645015910268,0.16238622367382,0.027678936719894]],[[0.0068910857662559,-0.11320120841265,-0.10836295038462],[0.012586526572704,-0.032447274774313,-0.19511558115482],[0.031294379383326,0.074642740190029,-0.12481255084276]],[[0.082441471517086,0.050148744136095,0.032777354121208],[-0.030402099713683,0.12472526729107,0.10518879443407],[-0.11317965388298,-0.10232135653496,-0.075768828392029]],[[-0.066206060349941,0.099929414689541,0.10695303976536],[0.025716859847307,-0.0015652906149626,-0.066995419561863],[-0.059086658060551,0.086630187928677,-0.01360924448818]],[[-0.11192187666893,0.078103870153427,0.15637795627117],[-0.059134777635336,0.10567159950733,0.087585844099522],[0.035121981054544,-0.01872518286109,0.22212569415569]],[[-0.18116447329521,-0.30767676234245,0.027544289827347],[-0.10596270114183,-0.064713984727859,-0.068974561989307],[-0.094444297254086,-0.08188683539629,0.12039374560118]],[[-0.10318870842457,-0.084349900484085,0.0014983724104241],[-0.014143800362945,0.12671437859535,0.0089424680918455],[-0.039561472833157,-0.152756690979,0.031527746468782]],[[-0.051626939326525,-0.14587892591953,-0.21662846207619],[-0.070926703512669,-0.11210674792528,-0.10538671910763],[-0.0048757884651423,0.052843768149614,0.095529288053513]],[[0.044379498809576,0.049906309694052,-0.040975462645292],[-0.23829065263271,-0.09838155657053,0.050995945930481],[-0.12254207581282,0.097156912088394,0.089506529271603]],[[0.061929453164339,0.16249030828476,0.23062448203564],[-0.12986077368259,0.1096834987402,0.17081552743912],[0.055053263902664,0.068121135234833,0.026916172355413]],[[0.082065209746361,-0.017543086782098,-0.070232428610325],[0.12820142507553,0.037386540323496,0.070632226765156],[-0.035510573536158,-0.07357993721962,-0.051476191729307]],[[0.013395407237113,0.074251495301723,-0.12208608537912],[-0.079428732395172,0.10626673698425,-0.089557990431786],[-0.085966691374779,0.1241614818573,0.031874429434538]],[[0.077201902866364,-0.00032568705501035,-0.2002794444561],[0.065644025802612,-0.11133075505495,-0.074292823672295],[0.044488571584225,0.021820455789566,0.0557931214571]],[[0.19276875257492,0.11649738252163,-0.12677465379238],[0.040123283863068,0.098194748163223,-0.054416809231043],[-0.095513537526131,-0.02299521677196,-0.053521182388067]],[[-0.079092249274254,-0.11658953130245,-0.0062118349596858],[-0.093784764409065,-0.035420808941126,-0.019220490008593],[-0.015943627804518,0.0081898961216211,0.040889501571655]],[[0.024408295750618,-0.052381794899702,0.10076504945755],[-0.054808974266052,0.009866688400507,0.10970874875784],[0.14940336346626,0.055780224502087,0.058929562568665]],[[0.055051982402802,-0.042748887091875,-0.19229248166084],[-0.0088555132970214,0.074084378778934,-0.05643117800355],[0.093454107642174,0.12425817549229,0.061108700931072]],[[0.2407564073801,0.057682987302542,0.06426914781332],[0.02779552526772,0.029609974473715,-0.10935293883085],[-0.093482658267021,-0.11255409568548,-0.0020452002063394]],[[-0.092873848974705,0.059538345783949,0.1159937530756],[0.04166017845273,-0.054248616099358,-0.11172028630972],[0.087500162422657,-0.087321512401104,0.0028244501445442]],[[0.076827876269817,-0.011122800409794,0.073901019990444],[-0.13341026008129,0.059854663908482,0.11466640233994],[-0.020465919747949,-0.080964386463165,-0.070113107562065]],[[0.037517964839935,-0.1089831367135,-0.1071093082428],[-0.046966403722763,-0.066818132996559,-0.030479477718472],[0.16988848149776,0.069006986916065,0.031740710139275]],[[0.13722802698612,0.12071893364191,0.093206338584423],[-0.023360902443528,0.007790117058903,0.017262240871787],[-0.08654660731554,0.11772228032351,0.026977738365531]],[[-0.17812788486481,-0.14371663331985,-0.010576019063592],[-0.089030772447586,-0.031982116401196,0.010382478125393],[0.18082648515701,0.17069923877716,-0.067083470523357]],[[0.02015246078372,-0.22097107768059,-0.090672679245472],[0.12884469330311,-0.10324236750603,-0.1764170229435],[0.23929008841515,-0.031985875219107,-0.16313929855824]],[[-0.026515679433942,-0.14847633242607,0.00095534860156476],[-0.048371020704508,-0.044100921601057,0.032708648592234],[-0.058288294821978,0.029728496447206,0.035455949604511]],[[0.018155585974455,0.028797136619687,-0.075350977480412],[-0.028220096603036,-0.079463429749012,-0.13013733923435],[-0.062868662178516,0.046506240963936,0.010573441162705]],[[0.0043655135668814,-0.1851352006197,0.12552677094936],[-0.0068557299673557,0.011327258311212,0.28649908304214],[0.02681627497077,-0.01254549715668,0.15822087228298]],[[0.047940246760845,-0.11228999495506,-0.043483108282089],[-0.063055999577045,0.10699237138033,0.054919123649597],[-0.028621532022953,0.19368295371532,-0.028656031936407]],[[0.181028008461,0.19074414670467,0.014430715702474],[-0.087712109088898,-0.0218610111624,-0.051804985851049],[-0.069011963903904,0.012980452738702,-0.12390103191137]],[[0.17324833571911,0.12645399570465,0.029094234108925],[-0.080001160502434,-0.2443164139986,-0.12448676675558],[-0.00091081066057086,-0.062991760671139,0.035957798361778]],[[-0.0058478699065745,0.042334821075201,-0.16953858733177],[-0.03185185790062,-0.086989812552929,-0.16079807281494],[-0.07616151124239,-0.078284367918968,-0.1359695494175]],[[-0.092521734535694,-0.21818551421165,-0.10062233358622],[0.041000984609127,-0.07521778345108,-0.08808384090662],[0.018721541389823,-0.006290627643466,-0.057883951812983]],[[-0.12800607085228,0.24631734192371,0.10518802702427],[0.0916353687644,0.15744322538376,-0.03713097423315],[-0.0010215558577329,0.1914250254631,-0.022961538285017]],[[-0.12648595869541,0.01586196012795,-0.24162559211254],[-0.018835948780179,-0.037102531641722,-0.14992608129978],[-0.018862005323172,-0.085987530648708,-0.27138325572014]],[[-0.10826401412487,-0.027224253863096,-0.036038409918547],[-0.016334444284439,-0.038257420063019,-0.00012574694119394],[-0.17576706409454,0.11052003502846,0.0016623802948743]],[[0.19153727591038,0.10379153490067,-0.024818560108542],[0.20069283246994,0.022981520742178,0.14139986038208],[0.033224560320377,0.037421133369207,-0.0022441816981882]],[[-0.03427405282855,-0.11717792600393,0.12520115077496],[0.066329322755337,-0.1514151096344,0.031736399978399],[-0.18021357059479,-0.082231745123863,-0.031268805265427]],[[0.052432790398598,0.00064194807782769,-0.13588351011276],[-0.1195956543088,-0.050394657999277,-0.13095673918724],[-0.071461260318756,0.22023703157902,-0.057868622243404]],[[-0.026265792548656,0.23375777900219,0.047462236136198],[0.1058720946312,-0.25575163960457,-0.13032196462154],[-0.054550513625145,-0.24872294068336,-0.0051026493310928]],[[0.055097568780184,-0.14120553433895,0.031899146735668],[-0.0053832968696952,0.058294251561165,0.23636414110661],[0.14792008697987,0.22917465865612,-0.012520065531135]],[[-0.048910412937403,-0.086714893579483,-0.0058449422940612],[-0.22595508396626,0.084034271538258,0.015639401972294],[0.049460962414742,-0.0074774310924113,-0.18028385937214]],[[-0.066970981657505,0.13235092163086,-0.0926508679986],[0.068834275007248,0.056314308196306,0.055805373936892],[-0.17445883154869,0.017553858458996,-0.017753195017576]],[[0.057885330170393,-0.13302539288998,-0.022369248792529],[-0.03605742752552,-0.053177457302809,-0.043286766856909],[0.065576985478401,0.048504404723644,0.061748564243317]],[[0.18720415234566,-0.045555979013443,-0.25025707483292],[0.076774425804615,0.022974144667387,0.10363269597292],[0.018603779375553,0.14352776110172,0.12589906156063]],[[-0.16150869429111,-0.16849610209465,-0.095886960625648],[0.10924506187439,0.054400082677603,0.063354328274727],[0.047680646181107,0.033467885106802,0.06561791151762]],[[-0.16788904368877,0.038961168378592,-0.01040968298912],[0.033616714179516,0.026492601260543,-0.20209188759327],[-0.017151821404696,-0.14617936313152,-0.15498381853104]],[[0.051025025546551,0.068979047238827,0.088424660265446],[-0.024921135976911,0.090419471263885,-0.062968038022518],[-0.14871464669704,0.077333971858025,0.07899434864521]],[[-0.0048845764249563,-0.11806085705757,0.14188024401665],[0.098202958703041,-0.048240929841995,-0.085723608732224],[-0.10609902441502,-0.10444040596485,-0.21960717439651]],[[0.036083854734898,-0.022608313709497,0.053107682615519],[0.016684573143721,-0.0070748799480498,0.01324852462858],[-0.024422314018011,0.022237375378609,0.14442798495293]],[[-0.017069453373551,0.043305438011885,0.0019298248225823],[-0.27764675021172,-0.21929600834846,0.094210252165794],[-0.027520708739758,-0.0014047004515305,-0.097725555300713]],[[-0.052283920347691,-0.10040651261806,-0.086933583021164],[-0.071305528283119,0.037831332534552,0.054702986031771],[0.074056811630726,0.0042113978415728,-0.034941434860229]],[[-0.12049826979637,-0.054016962647438,0.25908741354942],[0.0062432438135147,0.022071791812778,0.14137896895409],[0.020935367792845,0.086795710027218,-0.14298410713673]],[[-0.23457218706608,-0.032601252198219,-0.067320257425308],[0.024430029094219,-0.086226291954517,-0.11502425372601],[-0.30793786048889,-0.1244270503521,-0.098192602396011]],[[0.083388857543468,-0.057119697332382,-0.094820939004421],[0.060054987668991,-0.069813795387745,-0.11139003932476],[0.19445748627186,0.022784972563386,0.051084756851196]],[[-0.07039175927639,-0.088057555258274,-0.11178071051836],[-0.02653413079679,0.26049757003784,0.079981230199337],[-0.11273141950369,-0.043317686766386,0.031095517799258]],[[-0.092267088592052,-0.098867334425449,0.18009513616562],[0.057969458401203,-0.062870539724827,0.075003899633884],[-0.13063265383244,-0.0893834233284,0.19450840353966]],[[-0.078286290168762,-0.10612006485462,0.015345829539001],[-0.0047657852992415,0.092430032789707,-0.083753906190395],[-0.039768908172846,0.036284480243921,0.046293240040541]],[[-0.24909962713718,0.11942121386528,0.16446137428284],[-0.072900056838989,0.11940295249224,0.0058130156248808],[0.16260726749897,0.082878544926643,-0.094743520021439]],[[0.024640429764986,0.017034878954291,0.034725651144981],[-0.0037952119018883,0.046679951250553,-0.19100886583328],[-0.086657926440239,0.059111416339874,-0.064444482326508]],[[0.11109772324562,0.083912126719952,0.03024286031723],[-0.0085505731403828,0.032894257456064,-0.053582150489092],[0.050837486982346,0.043857716023922,0.078890085220337]],[[-0.12724241614342,0.10851309448481,0.11939343065023],[-0.11616203933954,-0.041841775178909,-0.053799882531166],[-0.14379358291626,-0.13550496101379,0.067975118756294]],[[-0.062563866376877,0.20185087621212,-0.0073465425521135],[-0.073353812098503,0.2762211561203,0.04023939371109],[0.071229040622711,0.0043413583189249,-0.20901933312416]],[[0.084259800612926,0.1873324662447,0.044487059116364],[-0.19149021804333,-0.064362429082394,-0.020743871107697],[-0.15245132148266,-0.0078383758664131,0.11415485292673]],[[0.12071766704321,0.14516888558865,-0.17372900247574],[-0.13435357809067,0.039007555693388,0.10168511420488],[0.06032944098115,-0.030424786731601,-0.05990120023489]],[[-0.29545414447784,0.16809548437595,0.027448870241642],[-0.062682338058949,0.025991279631853,-0.031360808759928],[-0.097708351910114,-0.0058156554587185,-0.15434347093105]],[[0.18584084510803,0.066581159830093,0.0055557647719979],[-0.035714223980904,-0.06295882165432,-0.038771077990532],[-0.22079718112946,-0.23403126001358,0.019581135362387]],[[0.099289007484913,-0.065860696136951,-0.31182068586349],[-0.14502690732479,-0.096787758171558,-0.022429618984461],[-0.12334226071835,-0.21154341101646,0.030826875939965]],[[0.069641262292862,-0.17082969844341,0.2472475618124],[0.0049615260213614,-0.074238300323486,0.20249554514885],[0.061128407716751,0.0055551948025823,0.086839139461517]],[[-0.053613059222698,-0.14280673861504,-0.35553884506226],[-0.061898168176413,0.076349020004272,-0.084796778857708],[0.058618720620871,0.23314239084721,-0.12387461215258]],[[-0.05539495497942,-0.10726395994425,-0.12843529880047],[-0.055987890809774,0.011777643114328,-0.074714459478855],[-0.046849381178617,0.029153544455767,-0.13983288407326]],[[-0.027586866170168,0.016434662044048,0.14429984986782],[0.087702035903931,0.012557441368699,0.044850882142782],[0.016723968088627,-0.30345219373703,0.15894460678101]],[[0.057233341038227,0.055710230022669,-0.13220307230949],[0.18177911639214,0.13667298853397,-0.12370181828737],[0.21708717942238,0.16328735649586,-0.18593207001686]],[[0.053026333451271,-0.061717797070742,-0.088752143085003],[0.046041946858168,0.10259448736906,0.0042034653015435],[0.10977856069803,0.16001349687576,0.022998476400971]],[[0.1783509850502,-0.05216496065259,0.042547333985567],[0.10717714577913,-0.069265186786652,-0.1070254445076],[-0.079997465014458,-0.096962042152882,0.057609800249338]],[[0.036382421851158,0.17341676354408,0.17980813980103],[0.076091177761555,0.11809565126896,0.20107300579548],[-0.046950649470091,0.02587534300983,-0.020857777446508]],[[-0.20106762647629,-0.080014318227768,-0.10887979716063],[-0.24767896533012,0.053849037736654,-0.028392696753144],[0.026488553732634,0.03177010640502,0.10101683437824]],[[-0.037245944142342,0.094732537865639,0.015735026448965],[-0.058220505714417,0.059901148080826,0.042512699961662],[0.17501427233219,-0.12230394035578,-0.26491305232048]],[[-0.15612806379795,-0.082652546465397,0.14943426847458],[-0.17566402256489,0.12147045135498,0.11366745084524],[0.14132592082024,0.0075197238475084,-0.14671596884727]],[[-0.082311905920506,-0.028403179720044,0.0051440172828734],[0.056217886507511,0.025264289230108,-0.10127730667591],[0.060486417263746,0.066417723894119,0.20717583596706]],[[-0.14254827797413,-0.13581281900406,0.10169418901205],[-0.0072220312431455,-0.065589748322964,0.11509272456169],[-0.090994656085968,-0.056881859898567,0.082436516880989]],[[0.13562551140785,0.11316706985235,-0.11261392384768],[0.01519878115505,0.10893889516592,-0.021619077771902],[-0.0449059009552,0.089879266917706,0.15413676202297]],[[0.061222456395626,0.055435303598642,-0.021140834316611],[-0.013343437574804,-0.050331927835941,-0.13619907200336],[-0.11573909968138,0.03655356913805,0.0023737633600831]],[[0.17331850528717,-0.030136620625854,0.089630872011185],[0.052770372480154,-0.03208713978529,0.0093178069218993],[0.027622696012259,-0.048002954572439,-0.036587283015251]],[[-0.090673863887787,-0.15621180832386,-0.014745812863111],[-0.023663908243179,-0.079744540154934,0.076516352593899],[0.072277210652828,0.038892261683941,0.026910958811641]],[[0.021308036521077,0.10417369008064,-0.13626971840858],[-0.17385835945606,-0.081748403608799,0.064724080264568],[-0.011736523360014,-0.048454258590937,0.039297591894865]],[[-0.0063116848468781,-0.098437413573265,0.086050488054752],[0.12409427762032,-0.010881367139518,-0.12273342907429],[-0.13909189403057,-0.039520796388388,0.078994892537594]],[[-0.0082264449447393,0.097343444824219,-0.010365876369178],[-0.017489813268185,-0.065801829099655,-0.15293857455254],[-0.010607959702611,-0.13549143075943,-0.040075957775116]],[[0.043767523020506,-0.081652976572514,0.13481901586056],[0.0077911769039929,-0.083761028945446,0.048584472388029],[-0.091753415763378,-0.083449140191078,0.13067443668842]],[[-0.13768567144871,-0.019405610859394,0.076127201318741],[0.033232729882002,-0.0039457622915506,0.035876505076885],[-0.082742981612682,0.023667577654123,-0.061180338263512]],[[0.023116292431951,-0.13405959308147,-0.058340724557638],[0.018914215266705,-0.081973731517792,0.039432931691408],[0.10037879645824,-0.074966356158257,0.054061181843281]],[[0.15560533106327,0.054385807365179,0.043856129050255],[0.1049365401268,-0.17216211557388,0.0031915418803692],[-0.021472157910466,-0.13554830849171,-0.12864680588245]],[[0.084389626979828,0.045860446989536,-0.17968122661114],[0.14751599729061,-0.1205323562026,0.12340508401394],[-0.0018490849761292,0.053767722100019,-0.026698186993599]],[[0.042207855731249,-0.027923399582505,0.10268031060696],[0.0021624544169754,0.077826902270317,-0.048614501953125],[-0.24741776287556,0.078217566013336,0.021868452429771]],[[-0.077229432761669,-0.014012143947184,0.26718392968178],[-0.071245402097702,0.19095402956009,0.10766865313053],[0.019618067890406,-0.071371309459209,0.0057036834768951]],[[-0.048594381660223,0.027516517788172,-0.027660666033626],[0.046523571014404,-0.14455725252628,-0.057591531425714],[-0.028761902824044,-0.077938839793205,-0.015840176492929]],[[-0.088809959590435,-0.19168062508106,-0.21427993476391],[-0.10771681368351,0.037809561938047,-0.097078673541546],[0.042262513190508,0.065260618925095,0.1212947294116]],[[-0.022382574155927,-0.050068452954292,0.046575658023357],[0.064760752022266,0.19752961397171,-0.027757722884417],[-0.033971030265093,0.0059787090867758,-0.20220053195953]],[[-0.12111568450928,0.026185732334852,0.11711899936199],[-0.24153539538383,-0.0058603254146874,0.045201774686575],[-0.29540428519249,0.062315721064806,0.11320351809263]],[[-0.13611371815205,0.14915476739407,0.18121965229511],[0.0023970226757228,-0.038776025176048,0.070783920586109],[-0.14430552721024,-0.067798621952534,0.039071835577488]],[[-0.0097749978303909,-0.0019671621266752,-0.057847816497087],[0.14339737594128,0.21321666240692,-0.03009333088994],[-0.16701476275921,0.076627001166344,-0.041627265512943]],[[0.26510947942734,-0.044319119304419,-0.10175576806068],[0.12409000098705,0.015527518466115,-0.088170602917671],[0.038302805274725,0.21672789752483,-0.044283919036388]]],[[[-0.016057081520557,0.061236280947924,0.085311278700829],[0.042900178581476,0.064281567931175,-0.20575819909573],[-0.093959793448448,-0.23690840601921,-0.16480255126953]],[[-0.09756276011467,-0.077681720256805,-0.0054619326256216],[-0.052637189626694,-0.12797951698303,-0.037113688886166],[0.23233704268932,0.17193314433098,-0.11454606801271]],[[0.1748251914978,0.13735453784466,0.14188906550407],[0.022956917062402,0.057123977690935,0.25028136372566],[0.16502794623375,0.080427564680576,0.069487780332565]],[[-0.11088091880083,-0.22272384166718,-0.028760425746441],[0.022076420485973,0.032094482332468,-0.010950311087072],[0.12384019047022,0.030234796926379,-0.090814776718616]],[[0.15831780433655,0.19468247890472,-0.072520643472672],[-0.10693939775229,-0.01406963262707,0.080935575067997],[0.015153654851019,-0.03430100530386,-0.014639628119767]],[[-0.0089480467140675,0.026607435196638,-0.10499806702137],[-0.0012955567799509,-0.086901053786278,-0.0089498749002814],[0.10004382580519,0.062411595135927,0.047784563153982]],[[0.16693273186684,0.11217427998781,0.022091338410974],[-0.13996529579163,0.038548521697521,-0.044698890298605],[0.15915790200233,0.12056095153093,-0.23879024386406]],[[-0.065252058207989,0.010628144256771,-0.15529882907867],[-0.044121898710728,0.15366567671299,0.15593938529491],[0.15359948575497,0.094030916690826,0.1297240704298]],[[0.029701605439186,0.059997037053108,-0.11789902299643],[-0.034528415650129,-0.11691857874393,-0.26299524307251],[0.039470832794905,0.1838740259409,0.039653070271015]],[[0.13063071668148,-0.087065175175667,0.17069073021412],[0.071714095771313,-0.23481607437134,0.10017791390419],[-0.087422020733356,-0.025320872664452,-0.27818989753723]],[[0.074969068169594,0.15780048072338,-0.00097577029373497],[-0.072836615145206,0.028645120561123,0.21996438503265],[-0.072926983237267,0.045011423528194,0.030866239219904]],[[-0.12868438661098,0.035650610923767,0.16035470366478],[-0.20621444284916,0.13427184522152,0.13866458833218],[0.15608704090118,0.006449275650084,-0.18194505572319]],[[-0.19647759199142,-0.32952296733856,-0.19781759381294],[0.16445882618427,0.19930648803711,-0.030475897714496],[0.012750322930515,0.026587085798383,0.28800898790359]],[[-0.14603336155415,-0.10625100135803,-0.060280416160822],[-0.16440889239311,-0.067945621907711,0.074568517506123],[0.014971074648201,0.0022646132856607,-0.03637208417058]],[[-0.33076664805412,0.033791039139032,-0.040393467992544],[-0.1469556838274,0.19755195081234,0.15130929648876],[0.034010861068964,0.076168686151505,0.15125319361687]],[[0.025743644684553,-0.088371589779854,-0.015071731060743],[-0.043352991342545,-0.053617257624865,-0.093346580862999],[0.10422840714455,-0.041146833449602,-0.0038655342068523]],[[-0.11605293303728,0.026067491620779,0.29184192419052],[0.018141081556678,0.052389651536942,0.051118820905685],[0.11407990753651,-0.043248314410448,-0.20587733387947]],[[-0.13396202027798,-0.038834266364574,0.028343172743917],[-0.0035813618451357,0.14699168503284,0.051754504442215],[-0.092982038855553,-0.088803425431252,-0.050351042300463]],[[0.083709508180618,-0.10002788156271,0.091379433870316],[-0.029665097594261,0.12076694518328,0.23563039302826],[-0.034055780619383,-0.10242829471827,-0.091742433607578]],[[0.0035062881652266,0.11665150523186,0.16374626755714],[-0.16902197897434,0.014417706057429,0.050381992012262],[-0.10304389148951,-0.04586673900485,-0.1678669154644]],[[-0.012976047582924,0.016944944858551,-0.041236236691475],[-0.20097561180592,-0.10342959314585,-0.042199362069368],[-0.091409727931023,0.10667516291142,0.23964589834213]],[[0.13137619197369,0.16122370958328,0.11018554866314],[0.070306502282619,-0.025008274242282,0.1956779807806],[-0.11541886627674,0.091014198958874,0.10672751814127]],[[-0.0099003696814179,-0.12875844538212,-0.23301926255226],[0.0064718574285507,0.012008164077997,-0.074873067438602],[0.015285153873265,0.081809528172016,-0.04785580188036]],[[-0.07475421577692,-0.15029312670231,-0.13805669546127],[-0.16936472058296,-0.19289509952068,-0.19229716062546],[0.15760163962841,0.09548681974411,-0.035942450165749]],[[-0.13815021514893,0.045273315161467,-0.067390091717243],[-0.041889499872923,0.053552463650703,0.14940971136093],[0.11359021812677,-0.061062712222338,-0.055183075368404]],[[0.045097563415766,0.12161096185446,-0.04324896261096],[-0.12071291357279,-0.094121769070625,-0.16622510552406],[0.077464513480663,0.057595103979111,0.019003828987479]],[[-0.070274025201797,-0.13794043660164,-0.11863594502211],[-0.045045744627714,-0.049360614269972,-0.064571186900139],[0.18561035394669,0.020322415977716,-0.025898534804583]],[[0.17711387574673,0.14561440050602,0.094676055014133],[0.046894948929548,0.1300960034132,0.15261323750019],[0.042082190513611,-0.12315817177296,-0.19929499924183]],[[-0.095411382615566,-0.13850976526737,0.024530082941055],[-0.067615635693073,-0.032371703535318,-0.039743013679981],[0.091217294335365,-0.00094692362472415,-0.17949970066547]],[[0.056948378682137,-0.007628149818629,-0.016182214021683],[0.059767782688141,0.089538902044296,-0.032412484288216],[-0.19695600867271,-0.17733466625214,0.015614371746778]],[[-0.0043649994768202,0.055011063814163,-0.061233587563038],[-0.033765219151974,0.072273597121239,0.077182345092297],[-0.13503777980804,-0.12772123515606,0.11769817024469]],[[0.16897138953209,0.1432196944952,0.003264352446422],[-0.14415900409222,0.12799689173698,-0.018031606450677],[0.041161682456732,0.073894806206226,0.14704512059689]],[[-0.18456076085567,-0.270626693964,0.022844789549708],[0.078249387443066,0.073571033775806,0.11884617060423],[-0.21441718935966,-0.074963919818401,0.025411458685994]],[[0.089729748666286,0.037474066019058,-0.012905465438962],[0.12561310827732,0.13097932934761,0.10823742300272],[-0.16450768709183,-0.19390968978405,0.11180236190557]],[[-0.11795773357153,-0.11269876360893,-0.00043496920261532],[0.084049500524998,-0.14516419172287,-0.1543186455965],[0.12766985595226,0.076570689678192,0.018257373943925]],[[-0.083805255591869,0.17582152783871,0.25943422317505],[-0.0085508087649941,-0.28586110472679,-0.15641701221466],[-0.064660310745239,-0.024537544697523,0.013537126593292]],[[0.045561231672764,0.095607705414295,0.084580853581429],[-0.094527997076511,0.081659972667694,0.19697692990303],[-0.088693164288998,0.037363775074482,0.062253639101982]],[[0.15678034722805,0.12488868832588,-0.051154650747776],[-0.0049189757555723,0.039001610130072,0.055354662239552],[-0.061448212713003,0.024806000292301,0.0320481993258]],[[-0.11374204605818,-0.12664468586445,-0.13033980131149],[0.076198101043701,-0.12648259103298,-0.062289018183947],[0.05839316546917,0.00032911487505771,-0.0079827522858977]],[[0.12781836092472,0.051684595644474,-0.099254876375198],[-0.059434678405523,-0.18789514899254,-0.10812250524759],[0.029781028628349,0.12981301546097,0.21227245032787]],[[0.16538907587528,0.15681172907352,-0.066206395626068],[-0.063905656337738,-0.17932166159153,-0.084807068109512],[-0.1762270629406,-0.058246847242117,0.14193615317345]],[[-0.036158539354801,0.087063901126385,0.095542751252651],[-0.10749605298042,0.15031078457832,0.071300834417343],[-0.015914358198643,0.0010608488228172,-0.1340903788805]],[[-0.073426887392998,-0.092332817614079,-0.11754832416773],[-0.094405338168144,-0.21507708728313,-0.06083770096302],[-0.015450493432581,0.20630203187466,0.19241604208946]],[[0.13126468658447,-0.042302459478378,-0.087841995060444],[0.09218192845583,0.1405483931303,0.1735152900219],[-0.093558333814144,-0.071611121296883,-0.023224776610732]],[[0.26342770457268,0.20100477337837,0.16898603737354],[-0.11300954967737,0.0098957745358348,-0.070361457765102],[0.024257481098175,0.068781189620495,0.01858764141798]],[[-0.10392440855503,-0.022510766983032,0.12406805157661],[-0.2017797678709,-0.25396764278412,-0.13333374261856],[-0.01850757189095,0.046862661838531,0.048156205564737]],[[0.0041822362691164,-0.012550682760775,-0.071983464062214],[0.031077183783054,-0.24251328408718,0.037435662001371],[0.07932037115097,0.079399079084396,-0.30763548612595]],[[0.062567017972469,0.023368628695607,0.032178103923798],[-0.038331273943186,-0.12423135340214,-0.027445731684566],[0.12771493196487,-0.030901493504643,0.01071198284626]],[[0.1225812509656,0.037123497575521,0.043361466377974],[-0.14457987248898,-0.087928049266338,-0.030140455812216],[0.042564004659653,0.089325055480003,-0.12063854932785]],[[-0.23078928887844,-0.43761530518532,-0.22606302797794],[-0.074008889496326,-0.05369109287858,-0.056414753198624],[-0.092841379344463,-0.10966540127993,-0.034409057348967]],[[-0.12370051443577,-0.073385588824749,0.087190061807632],[-0.17024584114552,0.007212798576802,-0.046115972101688],[0.21675212681293,-0.17241680622101,-0.31331139802933]],[[0.16620613634586,-0.076092831790447,0.0097440127283335],[0.17477962374687,0.14408439397812,-0.10589976608753],[-0.10289640724659,-0.14709083735943,-0.092999510467052]],[[-0.0048512951470912,-0.011668385006487,-0.044406231492758],[0.12391738593578,0.055570106953382,-0.013978569768369],[-0.11929576843977,-0.060185953974724,-0.04932252317667]],[[-0.013807468116283,-0.01200136449188,0.050129484385252],[-0.055229868739843,-0.0031371605582535,0.06264490634203],[-0.018588664010167,0.019919926300645,-0.080738969147205]],[[-0.047688864171505,-0.18989835679531,0.050623796880245],[0.070502407848835,-0.083458870649338,-0.14815483987331],[0.00062028982210904,0.036079701036215,0.11555992811918]],[[0.10140381008387,-0.1720877289772,-0.059831857681274],[-0.0050975251942873,0.072678476572037,0.032798934727907],[0.002026041271165,0.051434420049191,0.034648790955544]],[[0.27714878320694,0.31731957197189,0.050476081669331],[-0.24081142246723,-0.020709300413728,-0.085498571395874],[-0.15924282371998,0.028312738984823,0.086550779640675]],[[-0.11652977764606,-0.15020237863064,-0.196463316679],[-0.084394909441471,-0.067955553531647,-0.10373230278492],[-0.25089529156685,-0.21057385206223,-0.049029517918825]],[[0.080765791237354,0.012534042820334,-0.063804775476456],[-0.036735434085131,-0.093658208847046,-0.00036933514638804],[-0.078420862555504,-0.14364016056061,-0.14920824766159]],[[-0.22233252227306,-0.10877449810505,-0.095104321837425],[0.23209400475025,0.1669750213623,0.12347114831209],[-0.14941690862179,-0.25781500339508,-0.096284031867981]],[[-0.013527699746192,-0.042641881853342,-0.067473724484444],[-0.014863914810121,-0.0051699918694794,-0.086960077285767],[-0.044907305389643,-0.053921088576317,-0.1930967271328]],[[-0.0028028725646436,-0.049939669668674,-0.0407296679914],[-0.025239469483495,-0.084028899669647,0.040301870554686],[0.076191008090973,0.025855042040348,-0.030283484607935]],[[0.15577811002731,-0.0017758930334821,-0.039083201438189],[-0.041116688400507,-0.053197804838419,-0.11699343472719],[0.18393929302692,0.14431062340736,0.0070939655415714]],[[-0.015372073277831,-0.0067607127130032,-0.021733758971095],[0.03481100872159,-0.10021491348743,0.042619582265615],[0.16762375831604,0.028417967259884,0.053435627371073]],[[-0.18436869978905,-0.16145861148834,-0.048745162785053],[0.020475378260016,-0.081527851521969,-0.10234607756138],[0.0005919118411839,0.032500717788935,0.10115095973015]],[[0.048794280737638,-0.10360813885927,-0.24215869605541],[-0.04420517757535,0.1249777302146,0.023443784564734],[0.0057857651263475,0.075163923203945,0.031379368156195]],[[0.10627865791321,-0.056331925094128,0.022096425294876],[-0.14353528618813,-0.098289124667645,-0.050177033990622],[0.40341785550117,0.10427316278219,-0.12874558568001]],[[-0.29407957196236,-0.10997917503119,0.052887711673975],[-0.086088083684444,-0.0092176022008061,-0.048679288476706],[0.10684044659138,-0.14985139667988,-0.19461578130722]],[[-0.030278054997325,-0.088783942162991,0.051234636455774],[0.26466143131256,0.16640022397041,-0.043743882328272],[-0.24478633701801,-0.1310783624649,0.014483531937003]],[[0.035584237426519,0.050134528428316,-0.051070027053356],[-0.19010703265667,-0.057649109512568,0.09387468546629],[0.0061721187084913,-0.0095803635194898,-0.047147262841463]],[[0.17481029033661,0.046561319380999,-0.015682017430663],[-0.013305880129337,0.088400788605213,0.37174773216248],[0.096198283135891,0.076060228049755,0.0982471331954]],[[0.10106239467859,0.20356529951096,0.1250236928463],[-0.075086697936058,-0.061471149325371,0.048605173826218],[-0.060573760420084,-0.11014577746391,-0.17300170660019]],[[-0.15409271419048,-0.19400304555893,-0.17430098354816],[0.20049987733364,0.075302116572857,0.00099522050004452],[-0.27574035525322,-0.41492515802383,-0.24996620416641]],[[-0.12748849391937,0.01786451973021,0.064393691718578],[-0.0049469079822302,-0.037220064550638,-0.1090250313282],[-0.081390902400017,0.004949058406055,0.18267534673214]],[[-0.15008723735809,-0.17737585306168,0.030951736494899],[-0.035021800547838,-0.0049879676662385,-0.033472545444965],[-0.11979437619448,-0.19391220808029,-0.24151457846165]],[[0.17276832461357,0.20324824750423,0.11927742511034],[-0.19248993694782,-0.17439059913158,-0.064687192440033],[-0.054634798318148,0.0010143128456548,0.049594704061747]],[[-0.051639400422573,-0.17392578721046,-0.095080025494099],[-0.13976126909256,0.037582609802485,0.22510023415089],[0.011628600768745,0.047890197485685,0.1602231413126]],[[-0.20729990303516,-0.29290056228638,-0.1123448908329],[0.16479797661304,0.17353831231594,0.011772589758039],[0.0011301545891911,-0.040441710501909,-0.085624352097511]],[[-0.033576726913452,-0.04746326059103,-0.12351302802563],[-0.093255154788494,0.11948385089636,0.25234878063202],[-0.1440681219101,-0.093296974897385,-0.017269482836127]],[[-0.029890257865191,-0.0084883123636246,-0.11833100020885],[-0.23860363662243,-0.080195091664791,-0.094503365457058],[-0.13203608989716,-0.16802203655243,0.030342804268003]],[[-0.030920015648007,-0.00013441426563077,0.1816531419754],[-0.15638795495033,-0.19533924758434,0.0050094872713089],[-0.091175496578217,0.079294376075268,0.15363636612892]],[[-0.004130071029067,-0.098394922912121,-0.02798230573535],[0.29683029651642,-0.064118981361389,0.05467239394784],[-0.22363293170929,-0.14469446241856,0.16347278654575]],[[0.17549709975719,-0.0086646750569344,0.061340123414993],[0.13535363972187,-0.019885635003448,-0.069676004350185],[0.084310464560986,0.10396962612867,0.14169025421143]],[[-0.075743608176708,-0.032729919999838,0.037781227380037],[-0.026992298662663,-0.017944788560271,0.0060346038080752],[0.0092160599306226,-0.071025162935257,-0.093690223991871]],[[0.034277532249689,0.032663699239492,0.017543340101838],[0.036635499447584,-0.051777295768261,-0.12892132997513],[0.3249988257885,0.019168255850673,-0.048453390598297]],[[0.031812340021133,0.11366395652294,0.1265009790659],[-0.12823607027531,-0.21967819333076,-0.26545202732086],[0.0021883219014853,-0.027056489139795,-0.035678062587976]],[[0.043332286179066,0.12370036542416,0.04734942317009],[-0.14736573398113,-0.10666354745626,-0.057375974953175],[0.15456163883209,0.082646332681179,-0.044940285384655]],[[0.013300951570272,0.19324070215225,0.072280056774616],[-0.025488115847111,-0.036960408091545,0.023818587884307],[-0.060355760157108,0.036881621927023,-0.039636112749577]],[[0.14663442969322,0.028976961970329,-0.060692511498928],[-0.017069520428777,-0.046930108219385,0.12184242904186],[0.0061128591187298,-0.27424156665802,-0.22999396920204]],[[-0.36678332090378,-0.24368397891521,-0.27829194068909],[-0.077129691839218,-0.070172563195229,-0.15946988761425],[0.19145078957081,0.029479632154107,-0.023003762587905]],[[0.025748778134584,-0.011409358121455,-0.17050644755363],[0.025171065703034,0.2300326526165,0.21291832625866],[-0.15081577003002,-0.1059505790472,-0.17049258947372]],[[-0.056351341307163,-0.17368178069592,0.031056731939316],[-0.041369177401066,-0.038845706731081,-0.10405900329351],[0.073282346129417,-0.048954259604216,-0.080135866999626]],[[-0.0016313593368977,0.053423378616571,-0.061678372323513],[0.15555277466774,0.14180214703083,-0.033850349485874],[-0.17028401792049,0.033840883523226,0.046273477375507]],[[-0.18593716621399,-0.13050737977028,-0.31978553533554],[-0.14035651087761,-0.099591866135597,-0.13074408471584],[0.0076102875173092,0.032687056809664,0.0885054692626]],[[0.18197576701641,0.022997869178653,-0.031640846282244],[-0.024567170068622,-0.078513972461224,-0.082798808813095],[0.18857511878014,0.10677109658718,-0.047730199992657]],[[0.064694851636887,-0.018959963694215,-0.44782611727715],[-0.00099996663630009,0.071382433176041,0.25185170769691],[0.016571464017034,-0.019632523879409,-0.032801009714603]],[[-0.14779032766819,-0.11033809185028,-0.018284656107426],[-0.012668686918914,-0.013849342241883,-0.043320152908564],[0.089849002659321,-0.029766552150249,-0.11179277300835]],[[-0.027621809393167,-0.1089206263423,-0.0052494262345135],[-0.07661247998476,0.026408994570374,0.047160647809505],[0.036143157631159,-0.041085280478001,-0.1187646985054]],[[-0.16651073098183,0.037721257656813,0.1313858628273],[-0.044391464442015,0.021774053573608,-0.012363810092211],[-0.025129906833172,0.018540499731898,-0.10401651263237]],[[0.085591249167919,0.11582393199205,0.1135675907135],[0.0088574904948473,-0.027035731822252,-0.080148339271545],[-0.01012138556689,-0.078509174287319,-0.13463453948498]],[[-0.11856213957071,-0.010359570384026,-0.024977242574096],[0.045150652527809,0.077852427959442,-0.10698894411325],[0.086624540388584,-0.041631691157818,-0.11015820503235]],[[0.080162815749645,0.20826645195484,0.23575869202614],[0.045021113008261,0.15062940120697,0.21593005955219],[-0.22141444683075,-0.080897465348244,-0.042872577905655]],[[0.034728296101093,-0.05659008026123,0.091707460582256],[0.012592788785696,-0.051206141710281,-0.059337548911572],[-0.053420539945364,-0.12348570674658,-0.054691132158041]],[[-0.096621431410313,0.07492433488369,0.034665152430534],[0.089269384741783,0.039990529417992,-0.028926910832524],[-0.030563738197088,-0.23124194145203,-0.1196658462286]],[[-0.064266487956047,-0.043069999665022,-0.035513445734978],[0.020304959267378,0.099246755242348,0.2097302377224],[-0.29816263914108,-0.18182972073555,-0.33360746502876]],[[-0.0043836841359735,-0.0069622904993594,0.047881703823805],[0.046389784663916,0.086751036345959,0.023171657696366],[0.13238377869129,0.23415400087833,0.18920934200287]],[[0.014757034368813,0.1303378790617,-0.0018869556952268],[0.080614246428013,0.034506168216467,-0.016655305400491],[-0.22305031120777,-0.024333106353879,0.26499545574188]],[[-0.1401475071907,-0.29610377550125,-0.15057246387005],[0.17993386089802,0.099486112594604,0.086789906024933],[-0.014173457399011,0.02740240842104,0.12593632936478]],[[-0.065039329230785,0.071296118199825,-0.09504073113203],[0.044569700956345,0.15424607694149,-0.060451660305262],[-0.010696392506361,0.051778357475996,0.0024080250877887]],[[0.23536144196987,-0.076459050178528,-0.16434143483639],[0.20146091282368,0.059056259691715,-0.00074576120823622],[-0.071949355304241,0.059952825307846,-0.027850920334458]],[[-0.038451224565506,-0.053716469556093,0.067887626588345],[-0.11761847883463,-0.14061297476292,-0.060257531702518],[0.14744518697262,0.062941558659077,0.046940945088863]],[[0.021513186395168,-0.046146966516972,-0.11699620634317],[-0.16738411784172,-0.06113513186574,0.22567161917686],[0.012813056819141,-0.068059422075748,-0.10010382533073]],[[0.11803507804871,0.07821974158287,0.026925001293421],[0.19875305891037,0.00041852123104036,-0.14195983111858],[-0.059652164578438,-0.044975657016039,-0.016976531594992]],[[0.13993845880032,-0.031687393784523,0.022143632173538],[-0.12061816453934,-0.1545112580061,-0.17928944528103],[-0.047155387699604,0.0052826618775725,0.051237393170595]],[[-0.019920751452446,-0.020664365962148,-0.11477607488632],[0.053199861198664,0.13295881450176,0.054448898881674],[0.058763023465872,-0.070273160934448,-0.11875484138727]],[[0.079938150942326,0.13594369590282,0.13258691132069],[-0.14376325905323,-0.053132738918066,-0.081993959844112],[0.025918014347553,-0.027710285037756,-0.11699274927378]],[[0.0021343189291656,0.051664061844349,0.085741713643074],[-0.11025938391685,-0.14282897114754,-0.23708416521549],[-0.056833688169718,0.15897271037102,0.20730628073215]],[[0.06820984184742,0.14925415813923,-0.09548632055521],[-0.10929092019796,0.05976477265358,0.18437622487545],[0.0091815143823624,0.0069294730201364,-0.0050444412045181]],[[-0.014261464588344,-0.031767133623362,-0.12145991623402],[-0.064301505684853,-0.061611700803041,0.08781535923481],[-0.11411544680595,0.096524797379971,0.014240034855902]],[[0.15651504695415,0.089121118187904,0.087275430560112],[0.13173979520798,-0.0025768431369215,-0.068535685539246],[-0.029375953599811,-0.059428907930851,-0.37870642542839]],[[0.052443694323301,0.10249370336533,0.25065636634827],[0.015284921042621,0.07258340716362,-0.013261369429529],[-0.063956156373024,-0.0094359647482634,0.031835746020079]],[[-0.066573403775692,-0.046202130615711,0.078164666891098],[0.055490635335445,0.015631441026926,-0.0028861011378467],[-0.013369319029152,0.11263153702021,0.015863578766584]],[[-0.26863843202591,-0.16291515529156,0.0020987477619201],[0.00132105499506,-0.096386507153511,-0.026172321289778],[0.13101433217525,0.10877680778503,0.068290568888187]],[[0.03327240422368,0.023439040407538,0.012305337935686],[-0.03488290309906,-0.027000464498997,0.1203597933054],[-0.072131603956223,-0.13948318362236,-0.19399903714657]],[[-0.16861361265182,-0.080898612737656,-0.078896343708038],[-0.039292968809605,-0.067132510244846,-0.16533078253269],[0.055190246552229,0.053731825202703,0.053235348314047]],[[0.00022457650629804,0.079895056784153,0.11315909773111],[-0.0046067689545453,0.071911446750164,0.1172159537673],[-0.09337230026722,-0.18308208882809,0.088174656033516]],[[-0.079673737287521,0.053313266485929,-0.04975912719965],[0.090369291603565,-0.0011677230941132,-0.012142417952418],[0.056489709764719,0.033181451261044,0.010394188575447]],[[-0.017865799367428,-0.14430271089077,-0.37025332450867],[0.044458284974098,0.10541810840368,0.028388511389494],[0.083124078810215,0.14041887223721,-0.059370934963226]]],[[[0.10838847607374,0.044081509113312,-0.019308118149638],[0.0086970711126924,0.024107562378049,0.059366833418608],[-0.1526795476675,0.066583022475243,0.14350566267967]],[[0.045153703540564,0.038048185408115,-0.021926367655396],[-0.025340979918838,0.079198554158211,-0.042915105819702],[-0.026202090084553,-0.083451390266418,0.066171765327454]],[[0.22267250716686,0.061725918203592,-0.13695727288723],[0.17072583734989,-0.03150413185358,0.11542208492756],[0.22601369023323,0.21005961298943,0.092522814869881]],[[0.033736284822226,0.018372483551502,-0.17359955608845],[-0.068933047354221,-0.077180445194244,0.068436667323112],[-0.081728465855122,-0.31794822216034,-0.10030939429998]],[[0.0465107858181,-0.017365720123053,-0.070539899170399],[-0.089827731251717,0.10462721437216,0.12602168321609],[-0.067143447697163,0.21834486722946,0.27682235836983]],[[-0.13385806977749,-0.062629535794258,-0.0082056354731321],[-0.0015687295235693,0.013956937007606,0.098906166851521],[-0.056615177541971,0.047908402979374,0.064135745167732]],[[-0.027962552383542,0.072023883461952,-0.11401417851448],[0.21938155591488,0.061197027564049,0.058352097868919],[0.005550931673497,-0.15929514169693,-0.095530800521374]],[[-0.027660889551044,-0.028578758239746,0.057593651115894],[0.010215136222541,-0.022934155538678,0.061364062130451],[0.016823779791594,-0.041048243641853,-0.042792186141014]],[[0.055450342595577,-0.035105425864458,0.11341581493616],[0.13899146020412,0.10901995003223,-0.050178743898869],[0.10040137916803,-0.12845955789089,0.094210863113403]],[[-0.086027458310127,-0.018807467073202,-0.1593241840601],[0.10666683316231,-0.053243961185217,-0.095343872904778],[0.091455794870853,-0.034154880791903,0.19596476852894]],[[0.15270522236824,0.03695073351264,0.31803289055824],[-0.018780251964927,0.0029167083557695,-0.099705383181572],[-0.16170893609524,-0.096517577767372,0.043597456067801]],[[0.11162972450256,0.14834399521351,-0.036795187741518],[-0.020428638905287,0.061561074107885,-0.060620822012424],[0.048877164721489,-0.0029461495578289,0.092501029372215]],[[0.019692301750183,0.009985102340579,-0.10691097378731],[0.053770828992128,-0.040771529078484,0.079756654798985],[0.10666026175022,-0.025392428040504,-0.19610027968884]],[[-0.2085595279932,0.018996305763721,0.16115766763687],[-0.046071913093328,-0.06445524841547,0.0008786633843556],[-0.099697090685368,-0.053632766008377,-0.11528433859348]],[[0.1419168561697,0.05410086363554,0.13424211740494],[-0.050587367266417,0.02076586522162,0.027009705081582],[-0.079607039690018,0.0043361280113459,-0.093712128698826]],[[-0.066739149391651,-0.10741154849529,0.073527365922928],[-0.036462415009737,0.0072995536029339,-0.11845856159925],[-0.12503297626972,-0.097454264760017,-0.10623220354319]],[[-0.1069063693285,-0.1762351244688,-0.20196563005447],[-0.1232552677393,-0.0554573610425,0.056934569031],[-0.0018519791774452,0.0058916411362588,-0.056269869208336]],[[-0.044329009950161,-0.12198519706726,-0.10132562369108],[-0.011661233380437,0.11242343485355,0.073645189404488],[0.10797227174044,0.17716896533966,0.2408035248518]],[[0.12115052342415,0.023185629397631,-0.17557026445866],[0.031079847365618,-0.021885070949793,-0.020506232976913],[-0.065266020596027,0.094807550311089,0.0040744771249592]],[[-0.001158828032203,0.057102847844362,-0.12420084327459],[0.067507177591324,0.095684759318829,-0.14350482821465],[0.0085476329550147,0.057016666978598,-0.11182099580765]],[[-0.085762605071068,-0.18665319681168,0.045602612197399],[0.010069404728711,-0.071694374084473,0.038515016436577],[0.0028301347047091,-0.068067654967308,0.04122468829155]],[[0.013939862139523,0.13827440142632,-0.057411756366491],[0.13346087932587,0.1713659465313,-0.010572752915323],[-0.019927436485887,-0.038543615490198,0.055184736847878]],[[0.027962746098638,-0.046844992786646,-0.01368123292923],[0.10441891103983,-0.024503270164132,0.038048651069403],[-0.015992363914847,-0.020890170708299,-0.049081649631262]],[[0.038900449872017,0.055088952183723,0.079223245382309],[-0.10683622211218,-0.12800835072994,-0.02209085226059],[-0.05392974242568,-0.19219976663589,-0.25984761118889]],[[0.11248511075974,-0.065020546317101,-0.031810950487852],[0.1130256652832,0.098506025969982,0.10115951299667],[0.060652516782284,-0.14566724002361,-0.21822082996368]],[[0.20174343883991,-0.062870115041733,0.066989041864872],[0.16526751220226,0.052820023149252,0.096872419118881],[-0.046922076493502,0.092803858220577,0.36738169193268]],[[0.026160560548306,0.034292660653591,0.099844850599766],[-0.041798751801252,0.20107297599316,0.12119130790234],[-0.050926096737385,0.25004497170448,-0.034136332571507]],[[0.082175172865391,-0.051908016204834,-0.0417745038867],[0.016583422198892,0.0069607752375305,-0.10604888945818],[0.14800649881363,-0.049994647502899,0.025463718920946]],[[-0.066312871873379,-0.070562481880188,-0.018366878852248],[-0.049724314361811,-0.060299403965473,-0.03416458889842],[0.019904512912035,0.0073918052949011,-0.04641617834568]],[[0.0091589763760567,-0.13641467690468,-0.082114271819592],[-0.16406200826168,-0.017391581088305,-0.041915319859982],[-0.1356281042099,-0.09390103071928,-0.063551537692547]],[[0.089039698243141,0.0070853941142559,0.054164338856936],[0.020663095638156,-0.071959011256695,0.080018021166325],[-0.073897056281567,-0.17580936849117,-0.17569133639336]],[[0.05441253259778,-0.23752737045288,0.035912871360779],[-0.03088734485209,0.031285911798477,0.081541024148464],[0.069602459669113,0.076169848442078,-0.11287415027618]],[[-0.022552121430635,-0.022716676816344,-0.039492394775152],[-3.6811350582866e-05,-0.01825663074851,0.17510382831097],[-0.12598377466202,-0.075543656945229,0.1070399954915]],[[-0.061634786427021,0.075278148055077,0.094988889992237],[0.0025229842867702,-0.025167267769575,0.053428884595633],[-0.15956661105156,0.093518294394016,0.24223808944225]],[[-0.012691911309958,-0.046484459191561,0.05377396941185],[0.040855940431356,-0.070830777287483,0.061676431447268],[0.0093390345573425,0.044776331633329,-0.19306647777557]],[[0.03458371385932,-0.16277879476547,-0.017673561349511],[-0.08058388531208,-0.13832624256611,0.045838709920645],[-0.1541049182415,-0.013547269627452,-0.012780372984707]],[[0.10025305300951,-0.023072661831975,0.16373616456985],[0.055264692753553,0.099793508648872,0.016949044540524],[-0.098152115941048,0.014587067998946,0.11849521100521]],[[-0.060334768146276,-0.043284587562084,0.070243142545223],[0.0038378860335797,-0.041629549115896,0.0049618603661656],[0.10354239493608,-0.013303061015904,-0.066624604165554]],[[0.097039841115475,0.02804990299046,0.10332145541906],[-0.034287363290787,-0.13599489629269,0.033317007124424],[0.11383225023746,-0.12104859948158,-0.12387893348932]],[[-0.054789576679468,-0.093817070126534,0.080908164381981],[0.019429059699178,-0.047257516533136,0.039498526602983],[0.043610256165266,0.003493539057672,0.042787600308657]],[[-0.015843516215682,0.063896238803864,0.03305509313941],[0.084841191768646,-0.027425304055214,-0.15400655567646],[-0.076304100453854,0.010842566378415,-0.18626882135868]],[[0.14720694720745,0.011345289647579,-0.033109921962023],[-0.0032032041344792,0.055467050522566,0.043821699917316],[0.04914154112339,0.061358004808426,-0.2146589756012]],[[-0.020853837952018,-0.10592655837536,-0.025747867301106],[-0.034399267286062,0.020582521334291,-0.19636315107346],[-0.12059555947781,0.006461035925895,0.0064944527111948]],[[-0.0058844271115959,-0.035536032170057,-0.10702119767666],[0.014721737243235,0.05804331600666,0.028465613722801],[0.0063932705670595,0.051763493567705,-0.10506735742092]],[[0.013075677677989,-0.22075016796589,-0.030324056744576],[0.073213934898376,0.03328350186348,-0.0071464236825705],[0.26218456029892,-0.076028600335121,-0.013093234039843]],[[-0.05233845859766,0.1499324887991,-0.02572737634182],[-0.091233558952808,0.072376534342766,-0.013836619444191],[0.070148579776287,0.045579243451357,0.14295069873333]],[[-0.2073920071125,-0.31395190954208,-0.03054678440094],[-0.05554535984993,-0.19212119281292,-0.10364204645157],[0.0040030064992607,-0.12211824953556,0.021800329908729]],[[0.31940680742264,0.066652819514275,-0.079155676066875],[0.041392914950848,-0.11562493443489,-0.05314539372921],[-0.048975847661495,0.053295880556107,-0.061657670885324]],[[-0.047855086624622,0.018822524696589,0.13068072497845],[0.04100476205349,-0.1091950237751,-0.063002973794937],[-0.0063028018921614,0.046745501458645,0.033439848572016]],[[-0.11782786250114,0.083829686045647,-0.053697314113379],[-0.12805317342281,0.070876248180866,0.022828947752714],[-0.18574047088623,0.055189643055201,0.0029318192973733]],[[0.02464959397912,0.10264237970114,0.010538570582867],[-0.081859923899174,-0.0086989188566804,-0.057466465979815],[-0.13154679536819,-0.12726134061813,0.083660446107388]],[[-0.036652319133282,-0.0013852212578058,0.072034329175949],[-0.10607766360044,-0.077721178531647,-0.049258891493082],[-0.06704269349575,-0.030188195407391,-0.27827432751656]],[[-0.035855017602444,-0.065541870892048,-0.021382911130786],[-0.058008961379528,0.037110384553671,0.11285188794136],[-0.044112350791693,-0.032263644039631,-0.047787737101316]],[[0.0560362637043,0.0039175045676529,0.2583295404911],[0.058914478868246,0.1102499589324,0.054834600538015],[-0.0094245644286275,0.0042179129086435,0.09440029412508]],[[-0.010623105801642,-0.062678709626198,-0.052463002502918],[0.12737515568733,0.0073874713853002,-0.14120168983936],[0.031236682087183,-0.0056334775872529,-0.047270715236664]],[[-0.053866852074862,0.028295876458287,0.11191172897816],[0.14399933815002,0.21890370547771,0.14699606597424],[-0.16789329051971,-0.05121672898531,-0.040761265903711]],[[-0.058776948601007,0.11597185581923,-0.06636606156826],[-0.049273829907179,0.07348944246769,-0.01670647226274],[-0.036454405635595,0.25206169486046,0.091032482683659]],[[-0.13105526566505,-0.1633660197258,-0.0069977953098714],[-0.15993103384972,-0.11316215246916,0.0094536235556006],[0.093356572091579,-0.023046590387821,0.0059197847731411]],[[-0.015286871232092,-0.16386315226555,-0.0013569083530456],[-0.061835449188948,-0.20375697314739,0.033505752682686],[-0.070521101355553,-0.16001579165459,0.16727821528912]],[[-0.053636748343706,-0.087384082376957,0.088261224329472],[-0.13217562437057,0.0064180134795606,0.093916989862919],[0.039994668215513,0.02500019967556,-0.0044725751504302]],[[0.011354741640389,-0.10782294720411,0.084977738559246],[0.034251891076565,-0.089619942009449,0.14946855604649],[-0.041281789541245,-0.13878773152828,0.10187335312366]],[[-0.083485558629036,-0.045862894505262,0.10454270988703],[-0.14349041879177,-0.13121192157269,-0.10304307937622],[-0.12779405713081,-0.10904340445995,0.070985212922096]],[[-0.21621745824814,-0.03812513500452,0.085965760052204],[-0.020241919904947,0.019053434953094,-0.0066952044144273],[0.074397332966328,0.041787128895521,0.044482320547104]],[[0.1405066549778,0.14673440158367,-0.15492503345013],[-0.013424498029053,-0.035696353763342,0.021276228129864],[0.074048087000847,-0.10612569004297,-0.013194551691413]],[[-0.095167383551598,0.17257004976273,-0.057957652956247],[0.055811163038015,0.083775632083416,-0.082355596125126],[0.20706327259541,-0.088051497936249,-0.25812396407127]],[[-0.02686501480639,-0.11771741509438,-0.081850282847881],[-0.11057447642088,-0.0032435541506857,0.092442534863949],[0.053975656628609,0.098817370831966,0.14006595313549]],[[0.045915737748146,0.25392755866051,0.11771916598082],[0.067493811249733,-0.21728900074959,-0.087731517851353],[-0.16341483592987,-0.14640361070633,8.4426421381067e-05]],[[0.045807924121618,0.069776758551598,-0.035345602780581],[0.037930835038424,0.19794072210789,-0.052406448870897],[0.010397274978459,0.0040203551761806,0.061372850090265]],[[0.03072233684361,-0.037920817732811,-0.076616510748863],[0.070167697966099,-0.12453370541334,-0.009311355650425],[-0.17583391070366,-0.096536129713058,0.17287673056126]],[[-0.11396659910679,-0.10648261010647,-0.093795575201511],[-0.009648572653532,0.034366734325886,0.093632832169533],[0.087731294333935,0.12176471948624,0.054057270288467]],[[-0.10157129913568,-0.098150789737701,0.17854072153568],[-0.16982924938202,-0.00015357267693616,-0.030646394938231],[0.01865841448307,0.015151872299612,0.064551994204521]],[[-0.063751339912415,-0.039833679795265,0.070901021361351],[-0.074415415525436,-0.043948598206043,0.061543002724648],[0.069799259305,-0.0028878266457468,0.061404973268509]],[[-0.033972024917603,-0.079622998833656,-0.1339875459671],[-0.1702588647604,-0.029146628454328,0.021638991311193],[-0.104861356318,0.2292422503233,-0.096457481384277]],[[-0.0090868696570396,-0.0838922560215,-0.033722925931215],[0.039518930017948,0.089635334908962,0.027895702049136],[-0.064070910215378,0.19473387300968,-0.01503651868552]],[[-0.073712795972824,-0.032980248332024,-0.076029077172279],[-0.15582655370235,-0.090146735310555,-0.11471307277679],[-0.11917603760958,0.033661212772131,0.0046512843109667]],[[0.077769935131073,-0.090394996106625,-0.052431002259254],[-0.14544884860516,-0.099977537989616,-0.10768651217222],[0.0379448980093,0.073688641190529,-0.011896220967174]],[[0.00036336146877147,-0.0020014396868646,0.011119140312076],[-0.042105488479137,-0.058500483632088,-0.15968102216721],[-0.092219665646553,-0.19893816113472,-0.19674551486969]],[[-0.019413439556956,-0.050291556864977,0.043339181691408],[-0.10199911147356,-0.21674829721451,0.0502924695611],[0.028724918141961,-0.013804364018142,0.0019907355308533]],[[0.087781459093094,-0.078923642635345,-0.030061544850469],[0.19440613687038,-0.16088654100895,-0.045931503176689],[0.03081139922142,0.058883186429739,0.0095439683645964]],[[-0.070378452539444,-0.10739915072918,-0.10468756407499],[-0.10352292656898,-0.080292768776417,-0.16813398897648],[-0.072028264403343,-0.0068401349708438,-0.086706176400185]],[[-0.0021231635473669,0.031728036701679,-0.095646291971207],[-0.025013333186507,-0.055237129330635,-0.048410214483738],[0.12726204097271,-0.087487518787384,-0.047727417200804]],[[0.012155878357589,0.17303644120693,0.010692606680095],[0.0079828593879938,-0.065135523676872,0.021562676876783],[0.043476980179548,0.024075666442513,-0.051842756569386]],[[-0.012541154399514,-0.042493637651205,0.055416233837605],[-0.063773311674595,0.011797539889812,0.21313013136387],[0.058424383401871,-0.014856864698231,0.028931122273207]],[[-0.16036495566368,0.014848339371383,-0.01933884434402],[0.00049995706649497,-0.065754719078541,-0.0068439459428191],[-0.13542303442955,0.051239900290966,-0.052004970610142]],[[0.034128494560719,0.12919442355633,0.11395969241858],[0.057285130023956,-0.14659336209297,-0.14591112732887],[-0.085964061319828,-0.18797953426838,-0.03349469602108]],[[-0.080452173948288,-0.081666350364685,-0.15253072977066],[-0.032236590981483,-0.0053234361112118,0.097384378314018],[-0.11020521819592,0.15166445076466,0.10280232131481]],[[-0.078972488641739,-0.032161455601454,0.047880977392197],[-0.047561921179295,0.12036810815334,0.16303203999996],[-0.11079873144627,0.0035713026300073,-0.13534741103649]],[[0.034003637731075,-0.061488073319197,0.11000951379538],[0.021973449736834,0.015317391604185,0.12881650030613],[0.042850024998188,0.0088412165641785,0.054684977978468]],[[0.074346840381622,-0.13949801027775,0.03771510720253],[0.04114593937993,-0.096150755882263,-0.024097092449665],[0.053644303232431,0.04377993196249,-0.026794815436006]],[[-0.052125230431557,-0.1359826028347,-0.078633144497871],[-0.032531797885895,-0.20429104566574,0.0084408102557063],[-0.11637842655182,-0.11209483444691,-0.012530430220068]],[[-0.068411976099014,-0.11293122917414,-0.10253494977951],[0.042713485658169,0.094373933970928,0.10184221714735],[-0.01183832809329,-0.00015548756346107,0.10936068743467]],[[0.031156983226538,-0.070211037993431,0.052545238286257],[0.071563735604286,-0.15475767850876,0.09213649481535],[0.043109953403473,0.032653525471687,0.14344881474972]],[[0.042298011481762,-0.011723261326551,0.039276335388422],[0.032061204314232,0.00013743946328759,0.15175086259842],[0.06182038038969,-0.13696609437466,0.081115558743477]],[[-0.12805992364883,0.030919369310141,-0.033048551529646],[-0.023581681773067,-0.09174906462431,-0.061133544892073],[0.040043346583843,0.0600003041327,-0.037341009825468]],[[-0.073045283555984,-0.026572136208415,0.11073610186577],[0.1297681927681,-0.054298263043165,0.043777193874121],[-0.071818336844444,-0.076808296144009,0.061046328395605]],[[0.0021009037736803,-0.12266482412815,0.014420839957893],[0.064199298620224,0.011852925643325,-0.077998474240303],[-0.012331138364971,0.039116501808167,-0.20188136398792]],[[-0.046157948672771,0.1509665697813,0.16318841278553],[-0.066039897501469,-0.071056447923183,-0.08561235666275],[-0.052376769483089,-0.061614319682121,-0.1142480224371]],[[-0.023091001436114,0.12388032674789,-0.039574034512043],[0.12317810952663,-0.081853747367859,-0.072530820965767],[0.040631480515003,-0.00082094111712649,-0.0053352080285549]],[[0.014851629734039,0.043126918375492,0.040340222418308],[-0.050603341311216,-0.11096065491438,0.010115241631866],[0.015148204751313,-0.10498032718897,0.14464960992336]],[[0.13283550739288,0.035221677273512,0.15249234437943],[-0.010550533421338,-0.21702462434769,0.1883831769228],[-0.048554085195065,-0.044797852635384,0.11602399498224]],[[-0.036945149302483,-0.0068682134151459,-0.1726426333189],[-0.16867445409298,-0.18397460877895,-0.0022360116709024],[-0.21655640006065,-0.078487128019333,-0.066572532057762]],[[0.094543986022472,-0.085656344890594,-0.16833847761154],[0.034084405750036,0.030908754095435,-0.049775049090385],[0.19652852416039,0.066951021552086,0.099590755999088]],[[0.056762740015984,-0.020301252603531,-0.075426816940308],[0.085506238043308,-0.064066022634506,-0.11135447770357],[0.098491951823235,0.092684872448444,0.055825415998697]],[[0.076868258416653,-0.055886227637529,-0.063756465911865],[0.027480566874146,0.063355579972267,-0.045816946774721],[-0.11851233989,-0.015248088166118,0.044705979526043]],[[0.0093848798424006,-0.089128538966179,-0.18890769779682],[0.019915755838156,-0.0067321015521884,0.013091961853206],[0.025938870385289,-0.0453846976161,0.080816090106964]],[[0.075423888862133,0.15940189361572,0.11150287091732],[-0.098390012979507,0.011396955698729,-0.0068335402756929],[-0.11639599502087,-0.1340290158987,0.035661101341248]],[[-0.16632756590843,-0.060251329094172,0.070075206458569],[-0.041368115693331,0.046957205981016,-0.025680508464575],[0.11323381215334,0.098096027970314,0.014731313101947]],[[-0.10217745602131,0.057727672159672,0.02333315834403],[0.006327835842967,-0.16531074047089,-0.14194722473621],[0.067911744117737,-0.14619439840317,-0.044833369553089]],[[-0.083515956997871,0.0030540910083801,0.041768752038479],[0.098030880093575,0.067816182971001,0.19422869384289],[-0.010024555958807,-0.11047620326281,0.11155075579882]],[[-0.0096111129969358,0.0054844962432981,0.083583995699883],[0.045440651476383,-0.011803907342255,-0.052047152072191],[-0.0062070232816041,0.087637424468994,0.051192931830883]],[[-0.13524144887924,-0.039105486124754,-0.069494977593422],[-0.052720308303833,0.017596550285816,0.051907360553741],[0.029076231643558,0.027057681232691,0.048188541084528]],[[0.12321688979864,-0.0034959705080837,-0.1108819693327],[0.036291066557169,0.055787637829781,-0.019550627097487],[-0.028285268694162,-0.11285749822855,0.11851321905851]],[[0.040984977036715,-0.036806248128414,0.12635132670403],[-0.039559125900269,-0.22042062878609,-0.036756593734026],[0.16625688970089,-0.059562988579273,0.028340762481093]],[[-0.00037492316914722,-0.033759146928787,0.03215391561389],[-0.19841133058071,-0.060769714415073,0.11541614681482],[0.0085835177451372,-0.058443062007427,0.022193795070052]],[[0.0285863019526,-0.050188329070807,-0.02014896273613],[-0.041610512882471,0.16186222434044,-0.05506107583642],[-0.12672631442547,0.1162148937583,0.032625392079353]],[[0.035573836416006,0.13889899849892,0.18197906017303],[-0.0019844728522003,0.14529553055763,-0.082764521241188],[-0.044881403446198,0.051088023930788,0.024580769240856]],[[-0.049394335597754,-0.079711206257343,-0.055985894054174],[0.038201324641705,0.058940649032593,0.030932797119021],[-0.066150546073914,0.12613974511623,-0.05814029276371]],[[0.011988562531769,0.23089677095413,0.20528756082058],[0.051155149936676,0.0066003357060254,-0.066410459578037],[0.015918569639325,-0.13582979142666,0.051642071455717]],[[-0.13082139194012,-0.22291420400143,0.015740064904094],[-0.2000772356987,-0.031495381146669,0.02264304831624],[-0.059759292751551,0.14781744778156,0.095462426543236]],[[0.07453577965498,-0.11553771793842,-0.10175509005785],[-0.052477609366179,-0.086666814982891,-0.084736764431],[0.16384008526802,0.10785488784313,0.11479014158249]],[[0.065273940563202,0.058495070785284,0.038473080843687],[0.070629343390465,-0.13013757765293,-0.14072303473949],[-0.18408177793026,-0.085314214229584,-0.008262692950666]],[[-0.042227398604155,0.00093610212206841,0.17024737596512],[0.051491025835276,0.011147009208798,0.010037608444691],[0.20776754617691,0.13610033690929,0.01443896163255]],[[-0.077077686786652,-0.21733540296555,0.11788763850927],[-0.049462862312794,-0.010816305875778,-0.030691856518388],[-0.068368278443813,-0.1060376688838,-0.10442999750376]],[[0.10133591294289,0.099983893334866,0.09820207208395],[0.046408165246248,0.062869645655155,0.054382313042879],[-0.10179480910301,-0.0075984094291925,-0.052039068192244]],[[-0.10410133749247,0.15055298805237,0.11042648553848],[-0.048746407032013,-0.1427758038044,0.22989153862],[-0.061579260975122,0.28867974877357,0.14790222048759]],[[0.21382002532482,-0.12027054280043,0.16422654688358],[0.2120097130537,-0.2114255130291,-0.026415573433042],[0.16324865818024,0.050120372325182,0.012477825395763]],[[-0.027847938239574,-0.01939089782536,-0.064653716981411],[0.0033080985303968,0.013164114207029,0.032081369310617],[-0.078257203102112,-0.026836156845093,-0.00045863585546613]],[[-0.043189931660891,0.085754781961441,0.090990297496319],[-0.17569363117218,0.032463379204273,-0.0032991478219628],[-0.01262164209038,-0.02650910243392,0.070389650762081]]],[[[-0.0012103518238291,-0.063334375619888,-0.144312530756],[0.0050047719851136,0.021105121821165,-0.044557090848684],[0.064482539892197,0.042817048728466,-0.12737910449505]],[[0.14914682507515,0.039768543094397,-0.1571751832962],[0.11795403063297,0.004400831181556,0.089268110692501],[0.082132562994957,0.0065742023289204,0.090992324054241]],[[0.055460777133703,0.010101335123181,0.029660446569324],[0.094043359160423,-0.0078698880970478,-0.024683706462383],[0.067744456231594,-0.040246102958918,-0.011914917267859]],[[-0.073171272873878,-0.096181385219097,0.068305715918541],[-0.048003327101469,-0.090853080153465,-0.14604043960571],[-0.013418059796095,-0.10627397149801,0.067169696092606]],[[0.036733817309141,0.094151802361012,0.089496456086636],[0.16329853236675,-0.10752521455288,-0.053571164608002],[0.050724398344755,0.14222203195095,0.14620168507099]],[[-0.13177017867565,-0.053137123584747,-0.03705221414566],[-0.0085591981187463,-0.18846620619297,0.010801349766552],[0.096124544739723,0.14754372835159,-0.07488851249218]],[[0.037864930927753,0.055005419999361,0.039367966353893],[-0.033072698861361,0.017048362642527,-0.11126685887575],[0.043929696083069,0.11331272870302,-0.0076868059113622]],[[-0.1057303622365,0.019978636875749,-0.015503260307014],[0.065425164997578,0.036266598850489,0.057016212493181],[0.069971688091755,-0.011168808676302,0.055032018572092]],[[0.11189265549183,-0.039698641747236,-0.17710100114346],[0.1237118691206,0.011554501950741,-0.096923977136612],[-0.14838024973869,-0.15972228348255,0.0024150302633643]],[[-0.10674127191305,-0.027462201192975,0.022417092695832],[-0.014930114150047,-0.076851941645145,-0.0014560286654159],[-0.11584631353617,0.042477581650019,0.012004098854959]],[[-0.021056381985545,0.17037670314312,0.085884660482407],[0.11537929624319,0.2443054318428,0.21407505869865],[0.1497447937727,0.075740821659565,0.10980526357889]],[[0.25866806507111,0.098688594996929,0.047025211155415],[-0.01208427362144,-0.026087751612067,-0.068046189844608],[0.0060393954627216,-0.035903606563807,0.076023578643799]],[[0.050698913633823,-0.044065956026316,0.013966523110867],[0.016787678003311,0.014012672938406,0.0076394914649427],[-0.016982052475214,-0.17406913638115,-0.20915828645229]],[[-0.11394184082747,-0.079661458730698,0.099540568888187],[-0.065684743225574,0.021707022562623,0.053751304745674],[-0.1504852771759,-0.14509277045727,-0.045158449560404]],[[0.16853298246861,-0.0049164495430887,0.099047400057316],[-0.081673078238964,-0.0133051360026,-0.10369561612606],[-0.055400557816029,-0.057327914983034,-0.11752105504274]],[[0.070200130343437,-0.16709633171558,-0.10983266681433],[-0.010809354484081,0.0020261774770916,0.073367729783058],[0.11666483432055,0.0024497555568814,-0.020467396825552]],[[0.025628076866269,-0.018312135711312,0.1094391644001],[-0.02493929490447,-0.099330671131611,-0.022371951490641],[0.086863480508327,-0.005098550580442,-0.088002525269985]],[[0.00047671410720795,0.061719287186861,0.034106239676476],[-0.1082823947072,-0.090684436261654,-0.048578839749098],[-0.016252873465419,0.025069061666727,0.15791930258274]],[[0.018835477530956,0.10877513885498,0.013888790272176],[-0.040107034146786,-0.021906085312366,0.046385824680328],[-0.075810216367245,0.1025610640645,-0.12332189083099]],[[0.029695767909288,-0.00073835923103616,0.023244628682733],[-0.057817399501801,-0.0075409552082419,0.025467088446021],[0.074613116681576,0.058982010930777,0.13781842589378]],[[0.032576560974121,-0.00098656571935862,-0.07454926520586],[-0.12811881303787,0.023674754425883,-0.11599249392748],[-0.062392204999924,0.061177995055914,-0.071698598563671]],[[-0.042573112994432,0.02124260365963,0.062659330666065],[0.15859414637089,0.028216140344739,0.05442363396287],[-0.1035795211792,0.057510070502758,0.038754682987928]],[[0.0054573132656515,0.010173191316426,-0.10851361602545],[0.12948653101921,0.072784997522831,-0.029136497527361],[0.034244816750288,-0.016866577789187,0.1410016566515]],[[-0.067799210548401,-0.063559308648109,0.026537457481027],[0.090531297028065,-0.042324490845203,0.050719883292913],[0.067194692790508,-0.10546381771564,0.055752765387297]],[[0.017624277621508,-0.017246963456273,0.014495161361992],[-0.052438747137785,0.039176102727652,-0.080565944314003],[-0.0036103096790612,0.20806621015072,0.091180615127087]],[[-0.049500960856676,0.060053005814552,0.056901577860117],[0.025138109922409,-0.11003582924604,0.14732210338116],[0.021041059866548,-0.0078636761754751,-0.045217074453831]],[[0.25378581881523,-0.085256852209568,-0.05972870066762],[0.15775698423386,-0.020893845707178,0.14868314564228],[0.17372994124889,0.014100880362093,0.026342749595642]],[[0.040639337152243,0.042335901409388,-0.059163223952055],[-0.12404931336641,-0.048201620578766,0.045618426054716],[0.070519834756851,0.042388040572405,0.091282866895199]],[[0.1559020280838,-0.08331398665905,-0.10761951655149],[0.088892698287964,0.061590258032084,-0.13937972486019],[-0.1448518037796,-0.00026746050571091,-0.055294755846262]],[[0.082610405981541,0.004229492507875,-0.060360301285982],[-0.090889386832714,0.064653217792511,0.065683931112289],[0.10749060660601,-0.11744849383831,-0.15764817595482]],[[-0.15993583202362,-0.13497510552406,0.038520716130733],[0.021957622841001,0.1237618625164,0.044240117073059],[0.11896463483572,-0.053043887019157,0.23405984044075]],[[0.0091085433959961,0.010664885863662,-0.053730588406324],[0.014907341450453,-0.046674203127623,0.16698119044304],[-0.025073351338506,0.07168436050415,0.073123052716255]],[[0.12988391518593,0.058965463191271,-0.041662264615297],[0.094464935362339,-0.0082971742376685,-0.027454573661089],[0.079437211155891,0.063542768359184,-0.088274598121643]],[[-0.18506963551044,-0.036416992545128,-0.040347095578909],[0.02043455094099,-0.045114476233721,-0.088221460580826],[0.027455728501081,-0.13896237313747,0.063496023416519]],[[-0.0076226722449064,0.090852633118629,0.17604824900627],[0.060641754418612,-0.034257609397173,-0.098392024636269],[-0.11811709403992,-0.10127314925194,0.0040856474079192]],[[0.0012704071123153,-0.079726621508598,0.02279919013381],[-0.11518575996161,-0.027388399466872,-0.02085193246603],[-0.086022391915321,-0.042172554880381,0.049924563616514]],[[0.080696910619736,0.033882711082697,-0.031004352495074],[-0.026934485882521,0.024668481200933,-0.032562356442213],[-0.05276158079505,0.042354788631201,0.075229421257973]],[[-0.083935081958771,0.10830161720514,-0.1322827488184],[-0.18331032991409,0.12549766898155,0.018293689936399],[0.019463090226054,0.085301786661148,0.23394836485386]],[[0.087704867124557,0.12623709440231,-0.044664617627859],[0.055682566016912,0.055218789726496,0.056308086961508],[0.10859956592321,-0.011390740051866,-0.0096423048526049]],[[0.14474362134933,-0.082674399018288,-0.080947734415531],[0.0043727937154472,0.15669891238213,0.081870414316654],[-0.0030022680293769,-0.059774339199066,0.13400569558144]],[[0.11187364161015,0.10844183713198,-0.013579702936113],[-0.15559142827988,-0.096360012888908,0.014439556747675],[-0.07786963135004,-0.095315806567669,0.023903960362077]],[[-0.063609801232815,0.067793779075146,-0.018587827682495],[-0.050145860761404,-0.10018686950207,-0.031267825514078],[0.068544805049896,0.12760488688946,0.045206468552351]],[[0.026249160990119,-0.021388782188296,-0.029354497790337],[-0.014501227997243,-0.092295452952385,0.08447377383709],[-0.028969299048185,-0.18716152012348,-0.07964651286602]],[[0.050120744854212,-0.080551914870739,-0.015230055898428],[-0.098062492907047,0.10615382343531,-0.030352452769876],[0.053561709821224,-0.095128789544106,-0.045998815447092]],[[-0.0075413435697556,0.0072231646627188,0.091595135629177],[-0.16669483482838,-0.020648811012506,-0.049744412302971],[0.077157415449619,-0.034233767539263,-0.0046826186589897]],[[0.094614632427692,0.027344575151801,-0.017127316445112],[-0.047183446586132,-0.039877131581306,-0.060651332139969],[-0.069378845393658,0.043445564806461,0.0050933132879436]],[[-0.01451397780329,-0.1122558042407,-0.038284529000521],[-0.12294737249613,-0.049891103059053,-0.036509435623884],[-0.10661835223436,-0.020555581897497,0.068823806941509]],[[0.052103023976088,-0.079393766820431,0.11823629587889],[-0.0034611762966961,0.03233128413558,0.051939737051725],[0.080541163682938,0.038668312132359,-0.11844855546951]],[[-0.10411912947893,-0.1347282230854,-0.036028224974871],[-0.0026617427356541,0.075613468885422,0.11534614861012],[-0.10984525084496,0.10375166684389,0.028505127876997]],[[-0.0081344349309802,-0.12626896798611,-0.068469263613224],[-0.049659762531519,-0.10715578496456,-0.053730741143227],[0.063275411725044,0.011586708016694,-0.0022262311540544]],[[0.06812921911478,-0.045109882950783,-0.11270116269588],[-0.084343262016773,0.083997510373592,-0.035085201263428],[0.18763007223606,-0.0098500140011311,-0.10957379639149]],[[0.099670648574829,-0.011670936830342,0.13921734690666],[0.083041071891785,0.075951665639877,-0.025391526520252],[-0.048006009310484,-0.1241277679801,0.05970124900341]],[[0.013505980372429,0.096588291227818,0.019355358555913],[-0.011512761935592,0.0013170458842069,-0.043883677572012],[0.017124926671386,-0.0026841543149203,-0.063913442194462]],[[0.020966600626707,0.048627097159624,0.068470165133476],[-0.0011984414886683,-0.11268100142479,-0.097591750323772],[-0.058850232511759,-0.11906442791224,-0.012589198537171]],[[-0.020889410749078,-0.15797439217567,-0.046294789761305],[0.11140663176775,0.11222160607576,-0.0080081224441528],[-0.075036086142063,0.12263788282871,-0.021425068378448]],[[-0.02366304397583,-0.039834231138229,-0.088059209287167],[-0.13859851658344,0.15253435075283,0.10498747974634],[0.15710413455963,0.14160330593586,0.15109035372734]],[[-0.039822105318308,0.076199725270271,0.088257662951946],[0.027149586006999,0.037289090454578,0.02402526140213],[-0.05976290255785,-0.011012189090252,0.018823938444257]],[[-0.12873513996601,0.0041782278567553,0.0028001109603792],[-0.014687724411488,-0.15920130908489,-0.043837312608957],[-0.075112700462341,-0.066205583512783,-0.16466848552227]],[[0.0093719512224197,0.03924697637558,0.14551682770252],[-0.17679518461227,-0.05921733006835,-0.019826404750347],[-0.17536698281765,-0.092055946588516,0.070911206305027]],[[0.1631570905447,0.068825580179691,0.080368168652058],[-0.059437017887831,-0.009776615537703,0.082948327064514],[-0.11065112799406,-0.041442532092333,-0.0027475035749376]],[[0.010834312997758,-0.052809506654739,-0.043910760432482],[-0.088515065610409,-0.063713565468788,-0.092562116682529],[-0.040124088525772,-0.034963168203831,-0.010045155882835]],[[-0.087630696594715,-0.18486098945141,-0.057423755526543],[-0.11767413467169,0.038536109030247,-0.14726030826569],[-0.21148210763931,0.0099735101684928,-0.072101712226868]],[[-0.15044158697128,0.12658739089966,0.024568682536483],[-0.21393114328384,-0.040521264076233,0.1169863268733],[0.030304847285151,0.047416061162949,0.0058293957263231]],[[-0.04526075348258,0.1427840590477,0.017781395465136],[0.1255419999361,0.10818187147379,0.11373651772738],[0.15841369330883,0.1255155056715,0.19176515936852]],[[-0.098039619624615,0.050692368298769,-0.12467683851719],[-0.14314332604408,-0.084870770573616,-0.043764535337687],[-0.017645699903369,-0.011097208596766,0.010351978242397]],[[-0.12419524043798,-0.035299073904753,0.15044967830181],[-0.16608157753944,-0.030841529369354,0.022568732500076],[-0.054231610149145,-0.090495653450489,-0.069898523390293]],[[0.022767558693886,0.014046602882445,-0.083575122058392],[0.068817526102066,0.10355572402477,-0.050236657261848],[-0.040318209677935,0.0027949521318078,-0.019141308963299]],[[-0.096044465899467,-0.064176745712757,0.029243815690279],[0.026504170149565,0.0066435961052775,-0.036890611052513],[-0.028835998848081,-0.036933228373528,0.065753094851971]],[[-0.013496716506779,-0.05451949685812,0.052896670997143],[-0.051883205771446,-0.05431804805994,0.0625219643116],[-0.045888539403677,0.045651562511921,0.012529640458524]],[[0.1008118018508,-0.084222570061684,-0.04464315995574],[0.1258150190115,-0.048904810100794,0.08670949190855],[0.058909449726343,0.00097202201141044,-0.065446607768536]],[[0.054361566901207,-0.21945229172707,0.16568921506405],[0.039920933544636,0.1338464319706,0.026991374790668],[-0.077621333301067,0.062843345105648,-0.14858739078045]],[[0.13365736603737,0.037151698023081,0.085157006978989],[-0.0084099005907774,0.096930846571922,-0.040185332298279],[0.005929371342063,-0.14124251902103,-0.037461124360561]],[[0.018877357244492,0.12741114199162,0.011813186109066],[-0.028965305536985,-0.14198623597622,-0.13344193994999],[0.075371667742729,-0.19182658195496,-0.06554152071476]],[[0.060394313186407,-0.00034345022868365,-0.027643594890833],[0.20012576878071,0.022359477356076,-0.050344277173281],[0.1711613535881,-0.0089866723865271,-0.012790556997061]],[[0.038326054811478,0.011699329130352,-0.083554305136204],[-0.069972634315491,-0.031645026057959,0.038739245384932],[-0.026494668796659,0.081211671233177,0.033905986696482]],[[-0.010265675373375,-0.0082439053803682,0.030249319970608],[-0.030492251738906,-0.087607808411121,0.035589266568422],[-0.019365193322301,0.0058455718681216,-0.049982208758593]],[[-0.022688673809171,-0.029233815148473,0.019126949831843],[0.055116139352322,0.047267556190491,0.073749803006649],[-0.016548609361053,-0.026043675839901,0.064274214208126]],[[-0.11164573580027,-0.095970936119556,0.065433911979198],[0.050745651125908,0.032435048371553,-0.12645417451859],[0.022573683410883,0.035456374287605,-0.012290213257074]],[[0.096231929957867,-0.16365388035774,-0.025016250088811],[0.0420788154006,-0.025398444384336,-0.17694096267223],[0.059829421341419,0.19156524538994,0.012890118174255]],[[-0.0012637746986002,0.012644764967263,0.021814007312059],[-0.22519175708294,-0.050225131213665,0.053035087883472],[-0.087825432419777,-0.05587524920702,0.098725035786629]],[[0.042744435369968,-0.077104412019253,-0.13118168711662],[-0.0093489363789558,-0.091089203953743,-0.049260772764683],[-0.066868953406811,0.050031129270792,-0.041173379868269]],[[0.15193882584572,0.025678670033813,0.17676940560341],[-0.14654995501041,0.0023836176842451,0.10483787953854],[-0.015299779362977,0.097792342305183,-0.038383357226849]],[[0.16108672320843,0.13716615736485,0.065619483590126],[0.0068304762244225,0.028517568483949,-0.015536434017122],[0.26009932160378,0.19261573255062,0.21771642565727]],[[-0.14681567251682,-0.010878465138376,0.039395827800035],[-0.029013453051448,0.034336421638727,-0.067429788410664],[0.037661392241716,-0.177002415061,-0.069651901721954]],[[0.0402314029634,0.13970784842968,0.072870880365372],[0.2259935438633,0.050584308803082,-0.012835066765547],[-0.098158419132233,0.013186995871365,0.17055828869343]],[[0.11124280840158,0.13382783532143,0.046645551919937],[-0.063584163784981,0.0044226697646081,0.079439908266068],[-0.037178564816713,-0.01419236138463,0.22148059308529]],[[0.041675999760628,-0.10331385582685,0.037324611097574],[0.038778502494097,0.0073442873544991,-0.015201856382191],[-0.099787667393684,-0.074424602091312,0.038072191178799]],[[-0.061633910983801,-0.075611062347889,-0.013993533328176],[-0.0088248057290912,0.04101499542594,-0.041788462549448],[-0.040256384760141,0.070854544639587,-0.01324491482228]],[[-0.02735054679215,0.10875390470028,0.021824738010764],[-0.083656303584576,0.0171625521034,-0.18089927732944],[-0.0064364750869572,0.12449018657207,-0.084030576050282]],[[-0.036547906696796,-0.0091179255396128,-0.044437974691391],[-0.06110779568553,0.012523358687758,0.15251633524895],[-0.02794399484992,-0.079098246991634,0.053607143461704]],[[-0.099600270390511,-0.1739235073328,0.045537073165178],[0.056405786424875,-0.066874802112579,-0.13840542733669],[0.16224181652069,-0.027323685586452,0.1905609369278]],[[-0.099241212010384,-0.11510195583105,-0.087254375219345],[-0.070382140576839,-0.0047928565181792,0.0043794945813715],[-0.0038489126600325,0.0098947770893574,0.094782024621964]],[[-0.12374450266361,-0.12421765178442,0.091512322425842],[0.034549400210381,-0.075902529060841,0.13781303167343],[0.21792328357697,0.2767262160778,0.17612405121326]],[[-0.062800385057926,-0.030365763232112,0.034014370292425],[-0.075845666229725,-0.061805695295334,0.006003824993968],[-0.094180338084698,-0.022809717804193,-0.049438074231148]],[[0.0039360006339848,0.029932102188468,0.23085342347622],[-0.1445564776659,-0.088528610765934,0.14053691923618],[0.016566053032875,0.12138544768095,-0.01500415802002]],[[-0.0049983942881227,-0.019358037039638,-0.033679734915495],[0.04681109264493,0.12699887156487,0.077254183590412],[0.04942936077714,0.0029542138800025,-0.039074890315533]],[[-0.10768757015467,0.024952705949545,0.1347920447588],[0.044548574835062,-0.12060344219208,0.009143047966063],[0.083690866827965,-0.12337651103735,0.085586659610271]],[[0.10325989127159,0.17990632355213,0.088784888386726],[-0.07439336925745,-0.051332902163267,-0.14185643196106],[0.049094755202532,0.019979257136583,-0.013728345744312]],[[0.025730034336448,-0.076051332056522,0.012634823098779],[0.015003133565187,-0.11799881607294,0.050491463392973],[0.0029597629327327,0.099252268671989,-0.088898107409477]],[[0.062676280736923,0.031113181263208,0.13000148534775],[0.0013946407707408,-0.052086059004068,-0.2126416862011],[0.040827844291925,0.078035719692707,-0.018764024600387]],[[0.01325464900583,0.099046029150486,0.0015380923869088],[-0.052029091864824,0.04624193534255,-0.035995088517666],[-0.082005925476551,-0.013612027280033,0.00058114569401368]],[[0.10727326571941,-0.1100212931633,0.051464527845383],[-0.12098489701748,-0.037522286176682,0.13981065154076],[-0.0055039208382368,0.096482574939728,0.10049469769001]],[[0.069342263042927,0.10196992009878,0.16911552846432],[0.063634894788265,0.002700716489926,0.024243749678135],[-0.081132091581821,-0.10174918174744,0.048753023147583]],[[0.040519572794437,-0.10667803138494,0.020640900358558],[-0.15781958401203,0.011631241999567,-0.19004544615746],[0.032755378633738,0.016587696969509,0.091202475130558]],[[-0.08350595831871,-0.076454661786556,0.035276830196381],[-0.2231123149395,-0.045335821807384,-0.091421149671078],[-0.18862801790237,-0.15595233440399,0.010823948308825]],[[0.09464219212532,-0.023213490843773,0.011173226870596],[0.074844248592854,0.0012565409997478,0.026305897161365],[0.0042731827124953,-0.091672524809837,0.096022963523865]],[[0.0031260335817933,-0.0093855941668153,0.13354420661926],[0.051782052963972,-0.066119767725468,-0.10830869525671],[-0.0070297420024872,-0.1488429158926,0.017868874594569]],[[-0.055160701274872,0.073259018361568,-0.031788535416126],[0.12876836955547,0.047776639461517,0.027860747650266],[-0.032034374773502,-0.093254126608372,-0.034264400601387]],[[-0.13048741221428,0.019978687167168,0.076189249753952],[0.094824358820915,-0.045156575739384,0.00026835291646421],[0.11873683333397,-0.017961604520679,0.066652521491051]],[[-0.067083694040775,0.068465121090412,-0.068577781319618],[0.032010614871979,0.0051752915605903,-0.059537306427956],[0.19436924159527,0.14197917282581,-0.00054954673396423]],[[-0.089771576225758,0.028311187401414,-0.0023816137108952],[0.02437486872077,0.032237131148577,0.049014076590538],[-0.013478860259056,-0.0018605361692607,-0.072159834206104]],[[-0.027716068550944,-0.033266820013523,-0.090367451310158],[-0.054718028753996,-0.11995130032301,0.037972997874022],[-0.10669694840908,-0.05671376734972,-0.022401098161936]],[[0.043404784053564,-0.063141472637653,-0.12931095063686],[-0.00023564658476971,0.042292322963476,-0.033664062619209],[0.070894069969654,0.11387673020363,-0.1245031952858]],[[0.029108205810189,0.044175788760185,0.092523343861103],[-0.082403160631657,0.11865186691284,0.14994513988495],[0.072044596076012,-0.039940200746059,-0.00071529258275405]],[[-0.022846683859825,-0.033926155418158,0.098588034510612],[-0.031505189836025,-0.047165300697088,0.088281437754631],[-0.096479579806328,0.095906361937523,-0.02437992952764]],[[0.18457774817944,-0.013033370487392,0.085680082440376],[0.072354264557362,-0.024607546627522,0.081787399947643],[-0.082054436206818,-0.037535458803177,-0.10994200408459]],[[0.024285413324833,0.083673730492592,-0.00039974242099561],[-0.087317936122417,-0.049366191029549,-0.07977220416069],[0.024861127138138,0.046029113233089,-0.13834461569786]],[[-0.065600827336311,0.054581519216299,0.14686843752861],[0.11159083992243,0.06968566775322,0.14298167824745],[0.24539570510387,0.10331243276596,-0.051085840910673]],[[0.086370572447777,0.082520812749863,-0.012934905476868],[-0.081023097038269,0.046662051230669,-0.16736389696598],[-0.070898726582527,-0.013859775848687,-0.25240874290466]],[[-0.034589067101479,-0.073700517416,-0.0036792864557356],[-0.1023116633296,-0.09045398235321,-0.024030491709709],[-0.020260315388441,0.096067868173122,0.1190539598465]],[[0.047177564352751,0.017743479460478,0.02756929025054],[-0.084074601531029,-0.037979502230883,-0.02899251319468],[-0.039016854017973,-0.045016627758741,-0.067360281944275]],[[0.042206231504679,0.00019549056014512,-0.040436118841171],[0.027860667556524,0.0014391342410818,-0.028551673516631],[-0.068746984004974,-0.043629754334688,0.030719321221113]],[[-0.12701328098774,-0.020764131098986,-0.08686488121748],[-0.034025106579065,-0.096878699958324,-0.039314955472946],[-0.012363311834633,-0.1526034027338,-0.058127976953983]],[[-0.040353607386351,-0.029220350086689,0.1087191849947],[0.055510148406029,-0.022414335981011,0.0038067020941526],[0.027944115921855,0.0386026725173,-0.092352032661438]],[[0.059920437633991,0.01148546487093,-0.065458312630653],[0.063403189182281,0.097777709364891,-0.017605429515243],[-0.029071029275656,0.065493732690811,0.067916244268417]],[[-0.079972445964813,0.042054805904627,-0.066613659262657],[-0.12634447216988,-0.093905046582222,-0.0046286131255329],[-0.12849575281143,-0.0077018309384584,-0.041557375341654]],[[-0.10138404369354,-0.07281606644392,0.091869547963142],[0.02167734131217,-0.089813180267811,0.021597580984235],[0.020106727257371,0.0089217210188508,0.26973450183868]],[[0.022656248882413,0.040599629282951,0.0049149440601468],[0.11192450672388,-0.020548259839416,0.054914932698011],[0.029072627425194,-0.081132121384144,-0.066992364823818]]],[[[-0.096501842141151,0.33248996734619,-0.016488650813699],[0.04609065130353,0.11682546138763,0.18764364719391],[0.02171135880053,-0.12194181978703,-0.0837761759758]],[[-0.084278114140034,-0.090955100953579,0.066769227385521],[-0.06105187907815,0.032678473740816,-0.15017172694206],[-0.096483245491982,-0.043741255998611,-0.12166794389486]],[[-0.031509425491095,0.17857877910137,0.145910769701],[-0.13167640566826,0.12797519564629,0.16154535114765],[-0.050734434276819,-0.01784005574882,-0.025127435103059]],[[-0.17888356745243,0.057938743382692,0.18038129806519],[-0.057197816669941,0.16090148687363,0.014169354923069],[-0.17302712798119,0.079465687274933,-0.14559000730515]],[[0.045139346271753,0.1155359223485,-0.062291998416185],[0.10001097619534,0.01697857119143,-0.19506374001503],[-0.16157661378384,0.039283271878958,-0.10176202654839]],[[0.049751259386539,-0.078762397170067,0.060051910579205],[0.018672304227948,0.014840553514659,-0.040202371776104],[0.011304401792586,0.0076544852927327,-0.16871812939644]],[[-0.16985784471035,-0.14030359685421,0.062236972153187],[0.11653196811676,0.039194207638502,0.23149426281452],[0.16665430366993,0.016620188951492,-0.043144803494215]],[[0.12361372262239,-0.033628948032856,0.0693394318223],[0.017816212028265,0.1008059233427,-0.10329215228558],[-0.063608728349209,0.09783872961998,0.25357508659363]],[[0.080201163887978,-0.020209031179547,-0.020779689773917],[-0.12462501227856,-0.094036139547825,-0.07499697804451],[-0.016873244196177,0.040577288717031,0.042725492268801]],[[-0.09748862683773,-0.12460334599018,-0.050245456397533],[-0.088231913745403,0.062528476119041,0.11424534022808],[-0.09549418836832,-0.064707010984421,-0.017487443983555]],[[0.077125810086727,-0.061645790934563,0.028811484575272],[0.095014937222004,-0.073015168309212,-0.060876030474901],[0.16826857626438,-0.031487129628658,0.16071380674839]],[[-0.20778684318066,0.0046549770049751,-0.092504359781742],[-0.16934821009636,-0.08797000348568,0.16625098884106],[-0.12873357534409,-0.086666747927666,0.13506276905537]],[[0.14010490477085,0.066433101892471,0.022119151428342],[0.032762538641691,-0.042816959321499,-0.080526798963547],[0.060983307659626,0.0677605047822,-0.12630477547646]],[[-0.085556536912918,0.073947727680206,-0.066553995013237],[-0.24765531718731,-0.089014209806919,-0.16522026062012],[-0.012020993977785,-0.078999549150467,-0.12101095914841]],[[0.074004925787449,0.042440690100193,0.082131288945675],[-0.069905050098896,0.043453983962536,-0.05024267360568],[0.062810823321342,-0.004872118588537,0.038330905139446]],[[0.23022817075253,-0.11636892706156,-0.014632127247751],[0.15202075242996,-0.046998258680105,-0.096442021429539],[0.043793994933367,-0.02035466581583,-0.039726629853249]],[[0.18261498212814,-0.22741669416428,-0.19350196421146],[0.011170417070389,0.079773686826229,0.040650278329849],[0.096065379679203,-0.00062467297539115,-0.11855226010084]],[[-0.11211388558149,-0.070018418133259,-0.039429500699043],[0.081105574965477,-0.052846789360046,-0.31183135509491],[0.045430794358253,0.0095985606312752,0.0068387966603041]],[[0.0042535210959613,-0.040825322270393,0.16048803925514],[-0.033442441374063,-0.0083225164562464,-0.1473995745182],[-0.11426309496164,0.056267727166414,0.05345019325614]],[[-0.032143548130989,-0.17555348575115,0.01727632060647],[0.082670614123344,0.0046575223095715,-0.050595443695784],[0.041057024151087,0.018476467579603,-0.13692943751812]],[[-0.11099418252707,-0.0460304915905,0.044648554176092],[-0.095216445624828,-0.18974535167217,-0.12588493525982],[0.014249264262617,-0.0174680352211,-0.11325936019421]],[[-0.16042299568653,0.066261537373066,0.10597859323025],[0.13150873780251,0.048867154866457,-0.077464953064919],[-0.17434629797935,0.025466861203313,-0.02400828525424]],[[-0.13317038118839,0.15428926050663,0.21503984928131],[0.063008241355419,0.091105297207832,-0.15415017306805],[-0.094532907009125,0.087836310267448,0.13020797073841]],[[-0.1308871358633,-0.069954246282578,-0.061606325209141],[-0.12642841041088,-0.019820973277092,0.099507287144661],[-0.21567219495773,0.039647713303566,0.017182337120175]],[[-0.050828214734793,-0.01246889680624,0.084266625344753],[-0.31402882933617,-0.096835277974606,0.035888962447643],[-0.0047121196985245,0.1690845489502,0.037811350077391]],[[-0.0405726544559,0.10799530893564,-0.10688742995262],[-0.048795133829117,0.0091836685314775,-0.0077217514626682],[-0.10493842512369,-0.22374951839447,-0.0042580757290125]],[[0.11305355280638,-0.13411454856396,-0.12012400478125],[0.065798245370388,-0.17598286271095,-0.1403691470623],[0.089029565453529,-0.10128979384899,0.05633832514286]],[[-0.072970248758793,0.11296889930964,-0.0065928450785577],[0.16790181398392,0.085973851382732,0.082904681563377],[0.10615891218185,0.069729872047901,-0.083116546273232]],[[-0.10261031985283,0.053496241569519,-0.030379055067897],[-0.14017537236214,0.10289357602596,-0.011406801640987],[-0.13183243572712,0.0069501912221313,-0.054614145308733]],[[0.11715508252382,0.085290692746639,-0.20788922905922],[-0.14808419346809,0.049866247922182,0.12667478621006],[-0.080369889736176,0.012405665591359,0.10217034071684]],[[0.089497543871403,-0.068993084132671,-0.15147766470909],[0.02705130726099,-0.052903268486261,0.039961837232113],[-0.18936583399773,-0.046363439410925,-0.035575196146965]],[[-0.29679164290428,0.1381199657917,0.0066085155121982],[-0.065026134252548,-0.062558859586716,-0.078541621565819],[0.085792079567909,-0.18312571942806,-0.15959437191486]],[[0.02841647900641,-0.045792490243912,-0.13222628831863],[-0.035137854516506,-0.04210002720356,0.21013820171356],[0.20515212416649,0.2104022949934,-0.056661453098059]],[[-0.02816597558558,0.015041826292872,-0.04596209898591],[-0.12173217535019,-0.038994204252958,-0.047765951603651],[0.014536221511662,0.025478271767497,-0.0044664181768894]],[[0.1601300239563,0.068048618733883,0.14604119956493],[-0.068865284323692,-0.043273281306028,-0.12248190492392],[0.0043145716190338,0.00091028900351375,-0.095785893499851]],[[0.17322219908237,0.17971216142178,0.040342345833778],[-0.0027279257774353,0.040670730173588,0.0053023886866868],[-0.024115452542901,-0.018388448283076,-0.018948724493384]],[[-0.1083407253027,0.070414081215858,-0.11274061352015],[-0.012199119664729,0.03265730664134,0.066965483129025],[-0.094276674091816,0.12270987778902,0.10878942161798]],[[0.12902329862118,-0.0031872324179858,-0.1893297880888],[-0.040229458361864,0.081781901419163,0.04115617275238],[-0.19746500253677,0.07032935321331,0.22768659889698]],[[-0.08938917517662,0.17144700884819,-0.017928505316377],[-0.026153545826674,-0.0019281185232103,-0.15719868242741],[-0.035110618919134,-0.084797531366348,0.11781629920006]],[[0.16653156280518,0.051870051771402,-0.042574670165777],[0.05091392621398,0.054698754101992,-0.085582934319973],[-0.11040391772985,-0.061706468462944,0.07039200514555]],[[-0.082297921180725,-0.078491218388081,-0.05187876522541],[-0.20885048806667,-0.071056917309761,0.073295645415783],[0.091290131211281,0.008951298892498,0.1364509165287]],[[-0.015415603294969,0.069684691727161,0.039832446724176],[-0.020691160112619,0.1608529984951,0.055906627327204],[0.014328133314848,0.13062563538551,0.13187822699547]],[[0.04160575941205,0.013195735402405,-0.023136287927628],[-0.074859954416752,-0.021483588963747,-0.10140071064234],[-0.16872572898865,-0.12304212152958,-0.20980477333069]],[[0.039608780294657,0.031461369246244,0.040383964776993],[-0.019958443939686,-0.051712401211262,-0.078188829123974],[-0.034378424286842,-0.030504576861858,-0.074889957904816]],[[-0.023287583142519,0.023852922022343,0.12641203403473],[0.081792213022709,0.022094303742051,0.01127558387816],[-0.021656148135662,0.01287089381367,-0.039965827018023]],[[-0.17260472476482,-0.054928604513407,-0.14693959057331],[-0.084757544100285,-0.074476100504398,0.075611218810081],[0.12922701239586,0.02256571687758,-0.042472403496504]],[[-0.057106465101242,-0.021808484569192,0.26234996318817],[0.044326577335596,0.061811365187168,-0.056216605007648],[0.036748562008142,-0.004658589605242,-0.051847107708454]],[[-0.15930490195751,-0.17707960307598,-0.11343011260033],[-0.019261529669166,-0.097304813563824,0.13807821273804],[0.20174491405487,0.072606854140759,-0.10373308509588]],[[-0.099385723471642,0.1743596047163,0.082675606012344],[-0.11799705773592,0.05916753411293,-0.17658396065235],[-0.068293876945972,0.11003534495831,0.051734328269958]],[[-0.11589138954878,0.074258796870708,-0.20494775474072],[0.066793911159039,0.011879255063832,0.031464286148548],[0.0040293768979609,0.025885673239827,0.043065547943115]],[[0.11744863539934,-0.13574673235416,0.059238441288471],[0.1502585709095,-0.084050811827183,0.039713174104691],[0.04912967607379,-0.13663800060749,-0.077261127531528]],[[-0.01852591149509,0.02286353521049,-0.023900635540485],[-0.040610138326883,0.080060914158821,-0.020740609616041],[0.12416711449623,-0.091397911310196,0.026650262996554]],[[0.0020859795622528,0.083391353487968,0.11088719964027],[0.08404678106308,0.0047928420826793,-0.058304473757744],[-0.060822870582342,-0.14907512068748,-0.07900246232748]],[[-0.12505774199963,0.013158721849322,0.12061104923487],[0.040587514638901,-0.035179652273655,0.069275543093681],[0.0044636828824878,-0.097451344132423,0.011048970744014]],[[0.12912811338902,0.052405413240194,-0.063765145838261],[0.088769853115082,0.047873340547085,0.010912111960351],[0.14092336595058,0.075689531862736,0.07046340405941]],[[0.02364275418222,0.081342294812202,0.087985903024673],[0.12053364515305,-0.013030092231929,0.022179795429111],[0.11596702039242,-0.04874587059021,-0.0085802637040615]],[[-0.027158452197909,-0.14833037555218,0.045868068933487],[0.050600193440914,-0.026378057897091,-0.05406516417861],[-0.22277590632439,-0.16891241073608,0.055438920855522]],[[-0.053145907819271,-0.042745519429445,-0.10397602617741],[-0.12251484394073,-0.12910979986191,-0.25018456578255],[0.0079342154785991,-0.26853561401367,-0.22866687178612]],[[-0.038685638457537,-0.0421460904181,0.064155839383602],[0.055231004953384,0.047169990837574,0.1094757989049],[-0.16606795787811,-0.01593442261219,-0.13161909580231]],[[-0.11415484547615,0.18712329864502,-0.083523795008659],[-0.19831569492817,0.071282349526882,0.088622413575649],[-0.1821556687355,-0.069582425057888,-0.067154563963413]],[[0.03046689927578,-0.079496249556541,0.31474676728249],[-0.041103061288595,-0.20595501363277,0.095666475594044],[0.045540302991867,-0.15606184303761,-0.076342083513737]],[[-0.19826500117779,-0.075025141239166,0.16241003572941],[-0.0076058986596763,0.00023824692470953,0.068134501576424],[-0.10881480574608,-0.13110503554344,-0.057521179318428]],[[0.053334970027208,0.073922522366047,0.055231336504221],[0.037046521902084,-0.016446564346552,-0.020361235365272],[0.04807323589921,0.11100015044212,0.10784006118774]],[[-0.065704748034477,-0.022075833752751,0.18593873083591],[0.25072810053825,0.032422572374344,0.04350746050477],[0.18028208613396,0.23492063581944,0.11207938194275]],[[0.045704528689384,0.24764731526375,-0.053212847560644],[0.099110022187233,0.058103747665882,-0.024718269705772],[0.043824151158333,-0.012004700489342,-0.0065130693838]],[[-0.034881506115198,0.022023582831025,-0.10950103402138],[-0.049397595226765,0.059935562312603,-0.11846847087145],[-0.080629095435143,0.2214050590992,-0.054296016693115]],[[0.071327291429043,0.012953764759004,0.026030628010631],[0.13107125461102,0.13703317940235,-0.082891918718815],[0.014467411674559,-0.12335227429867,-0.20255635678768]],[[-0.067546263337135,-0.047008968889713,0.012355268001556],[-0.05964944884181,-0.20679853856564,0.027395598590374],[-0.018765585497022,0.033783119171858,-0.095199666917324]],[[0.040701415389776,0.086602360010147,-0.022243788465858],[-0.076609015464783,0.048487775027752,0.049975618720055],[0.12751239538193,0.031278621405363,-0.028067901730537]],[[0.11612497270107,0.0080538624897599,-0.056185532361269],[0.050185415893793,-0.21279336512089,-0.087557516992092],[0.080093383789062,-0.041426226496696,0.099370889365673]],[[0.081232130527496,0.13172715902328,0.021063458174467],[0.080788850784302,0.023798720911145,-0.21242682635784],[-0.09755253046751,-0.12032671272755,0.13023924827576]],[[-0.17982432246208,0.098840139806271,0.013404445722699],[-0.17324954271317,0.067790381610394,0.083269350230694],[-0.1358223259449,0.082348793745041,0.036913331598043]],[[-0.19215828180313,-0.0051586730405688,-0.15728344023228],[0.0059988284483552,-0.091225519776344,-0.10454033315182],[-0.18926198780537,-0.14894314110279,-0.21666851639748]],[[0.081275679171085,0.076771542429924,0.05446045845747],[-0.011721846647561,-0.066677786409855,0.055795177817345],[-0.029551260173321,0.047479964792728,0.0075082923285663]],[[-0.054949998855591,-0.012931671924889,-0.05818909406662],[-0.00046731941984035,-0.0065766964107752,-0.049325603991747],[-0.049711443483829,-0.0056612635962665,-0.18604040145874]],[[0.086896575987339,-0.12142535299063,0.20455113053322],[0.052487555891275,-0.085029691457748,0.11241076886654],[0.0048458892852068,-0.060323398560286,0.11484979093075]],[[0.069997176527977,0.021590504795313,-0.095332287251949],[0.015380304306746,-0.11069843918085,-0.15715831518173],[-0.30530396103859,-0.01989228464663,-0.3106983602047]],[[0.05040306225419,0.086194515228271,0.0079701282083988],[-0.096775978803635,-0.033188793808222,-0.041565697640181],[-0.044937718659639,-0.061583049595356,-0.217659547925]],[[-0.074468217790127,-0.063776627182961,-0.10825857520103],[0.044291518628597,0.13721427321434,-0.013491047546268],[0.015586568042636,0.12134198099375,0.12611408531666]],[[-0.11195959150791,0.072294235229492,0.027726486325264],[-0.071193724870682,-0.10132770985365,0.19518761336803],[-0.077824741601944,-0.093132428824902,-0.030980583280325]],[[0.34074723720551,0.066104352474213,-0.039434298872948],[0.041767545044422,-0.05775374174118,-0.088471613824368],[0.26059284806252,0.073120251297951,-0.01907854154706]],[[-0.080642767250538,-0.17096255719662,0.053048495203257],[-0.045242786407471,0.024562383070588,-0.035336755216122],[0.045855268836021,0.021796233952045,-0.17130501568317]],[[0.24663443863392,-0.12279926985502,0.3351463675499],[0.017383348196745,-0.0081812385469675,0.16407544910908],[0.12079291790724,-0.096656374633312,0.12833167612553]],[[0.14113965630531,0.054997712373734,0.10885211825371],[-0.12244287133217,-0.086339011788368,-0.082846291363239],[-0.195357888937,-0.018159436061978,0.017206007614732]],[[0.056170336902142,-0.10274750739336,0.12488187849522],[0.032637540251017,-0.13492479920387,0.3207203745842],[0.019790345802903,-0.012844995595515,-0.22984881699085]],[[0.15327650308609,0.232492223382,0.16693505644798],[0.078172534704208,-0.022920995950699,-0.071514323353767],[-0.10662841051817,-0.012863747775555,-0.055146232247353]],[[-0.047312755137682,-0.050364144146442,0.022128824144602],[0.13051001727581,0.090000934898853,0.021689174696803],[0.011610577814281,0.10517771542072,-0.029982140287757]],[[0.013206016272306,0.19415727257729,0.21750696003437],[0.078249432146549,-0.057142946869135,0.041348166763783],[0.03504665941,0.094661206007004,0.049711626023054]],[[-0.13194014132023,0.035094946622849,0.073097802698612],[-0.031590864062309,-0.019435841590166,0.11108990758657],[-0.063471734523773,-0.01214153598994,0.11195947229862]],[[-0.019817057996988,-0.067448131740093,-0.037524521350861],[0.090492881834507,0.00057718582684174,0.0085075758397579],[0.10449835658073,-0.013211127370596,0.089668959379196]],[[0.17498734593391,0.064587131142616,-0.088209338486195],[0.15153627097607,-0.14639267325401,0.1370492130518],[0.063715182244778,0.10531356185675,-0.041062895208597]],[[-0.40929448604584,-0.048182740807533,0.10030630975962],[0.021944688633084,-0.032354880124331,0.065320506691933],[-0.086216315627098,-0.050485864281654,-0.049908526241779]],[[0.12980614602566,0.017691703513265,0.015247879549861],[-0.085165061056614,-0.07440173625946,-0.089589230716228],[0.14755344390869,-0.037469401955605,0.12468350678682]],[[0.18127411603928,0.014995628967881,0.038511779159307],[-0.024620270356536,-0.042165689170361,-0.0025224175769836],[-0.095401160418987,-0.117565497756,-0.033280074596405]],[[0.12540157139301,0.11179689317942,-0.048660468310118],[-0.045465130358934,-0.087183214724064,-0.10065171122551],[0.06426640599966,-0.02356931194663,-0.093446180224419]],[[0.1148395165801,-0.008053875528276,-0.0017238999716938],[0.0264707878232,0.063298672437668,-0.020463529974222],[0.23605117201805,-0.052581481635571,0.010498349554837]],[[-0.12635080516338,-0.097050122916698,0.11657612025738],[0.029665097594261,0.06395560503006,-0.011977416463196],[-0.11121740937233,0.15655879676342,-0.14413547515869]],[[-0.13358923792839,-0.15719895064831,-0.16928933560848],[0.04843233525753,-0.03280682861805,0.10786591470242],[0.14901737868786,0.010874387808144,0.18132744729519]],[[-0.038110069930553,-0.087981887161732,0.077563978731632],[0.14908744394779,0.069695971906185,-0.053242303431034],[-0.053746037185192,0.058991122990847,0.022215152159333]],[[0.027410328388214,-0.070670142769814,-0.11513114720583],[0.29423877596855,0.014344768598676,-0.171650364995],[-0.040681406855583,-0.1150982901454,-0.0044592800550163]],[[-0.10785514116287,0.092355661094189,0.055466905236244],[-0.058092597872019,-0.010488641448319,-0.010029927827418],[-0.090746842324734,-0.066541880369186,-0.041933462023735]],[[-0.01329146604985,0.19985938072205,0.071356326341629],[0.078392930328846,0.23086777329445,-0.10404205322266],[0.076409094035625,0.15189705789089,0.045459114015102]],[[0.061321638524532,0.0013548947172239,-0.067470371723175],[-0.14063656330109,0.019300024956465,0.20631647109985],[-0.10397873073816,0.053931999951601,0.067550532519817]],[[-0.061705898493528,0.19392244517803,0.071870148181915],[-0.048090919852257,-0.16417714953423,-0.19863441586494],[0.17228990793228,0.028878381475806,-0.12526859343052]],[[-0.092910066246986,0.034839075058699,-0.067064456641674],[0.035140804946423,0.00706229172647,-0.07141251116991],[-0.095724247395992,-0.13743223249912,-0.098954543471336]],[[-0.031744886189699,0.33751657605171,0.28497964143753],[-0.11464677006006,0.030423479154706,0.071737095713615],[0.031954605132341,-0.019482932984829,-0.083883449435234]],[[-0.13682463765144,-0.080845907330513,-0.015100403688848],[0.032680418342352,-0.17409935593605,-0.066843874752522],[0.093138061463833,-0.035323731601238,0.031479083001614]],[[0.059814382344484,0.11451818794012,0.052810546010733],[-0.0049368245527148,0.091392278671265,0.0074615464545786],[-0.01972115598619,0.078716456890106,0.067389585077763]],[[-0.0093010496348143,-0.024549249559641,-0.095158852636814],[-0.015534186735749,0.0073858085088432,-0.022542580962181],[0.31570142507553,0.014069265685976,0.11262098699808]],[[-0.026781095191836,-0.10976607352495,0.13058641552925],[0.024512683972716,-0.13453531265259,-0.079891309142113],[0.26588121056557,-0.014666301198304,-0.13867522776127]],[[-0.035707961767912,-0.06881208717823,-0.03990925103426],[0.0051139621064067,0.11766201257706,0.10824332386255],[0.023249380290508,-0.16283145546913,-0.02811667881906]],[[-0.028531411662698,-0.10246562212706,0.0040921811014414],[-0.041784696280956,-0.096305459737778,-0.10232726484537],[0.026181507855654,0.11625149101019,-0.062132228165865]],[[-0.099555984139442,0.04675880074501,0.048705622553825],[-0.065713629126549,0.0027908352203667,0.02436506934464],[0.051824301481247,-0.036258801817894,-0.064372323453426]],[[0.12838692963123,-0.31151708960533,-0.11237888783216],[0.17051146924496,0.024667106568813,0.035058781504631],[-0.010260445997119,-0.068708941340446,-0.021378010511398]],[[0.13555333018303,0.016319965943694,-0.093891486525536],[0.045927301049232,0.07020466029644,-0.098495632410049],[0.0050325291231275,0.18435771763325,-0.011158592067659]],[[0.014957653358579,-0.055544845759869,-0.089252680540085],[0.014310019090772,0.021439148113132,-0.04670637100935],[-0.043079689145088,-0.078887864947319,0.075372241437435]],[[-0.13992464542389,-0.11643245071173,0.030881443992257],[-0.030388586223125,-0.11038138717413,0.040589269250631],[0.11859174817801,-0.11008571088314,-0.091323308646679]],[[0.064641579985619,-0.070588879287243,-0.14445006847382],[0.059754528105259,-0.031606957316399,0.059358388185501],[0.15611644089222,0.040759313851595,-0.17678672075272]],[[-0.15157371759415,0.074792049825191,0.10595498979092],[0.054687574505806,0.085470490157604,0.18051105737686],[0.076228894293308,0.048323810100555,0.1222885325551]],[[0.10220680385828,0.069157034158707,-0.032607134431601],[0.059814538806677,0.0021321498788893,-0.051726043224335],[-0.0289311632514,0.050028972327709,-0.025120476260781]],[[0.0075323907658458,-0.099700421094894,-0.078205958008766],[-0.05534278601408,-0.047728091478348,-0.13751113414764],[0.097061574459076,0.019839758053422,-0.15529027581215]],[[-0.036770716309547,0.26712852716446,0.066564902663231],[0.0087495418265462,0.037298277020454,-0.034538265317678],[0.021604377776384,0.072207652032375,0.036056715995073]],[[-0.0087748412042856,0.029498025774956,0.042533621191978],[-0.26578223705292,-0.2017939388752,0.010804931633174],[-0.26374199986458,-0.135602414608,-0.070356272161007]],[[0.029037779197097,-0.021489130333066,0.08614057302475],[0.016668325290084,0.19713787734509,0.05523930862546],[-0.12873767316341,-0.056462105363607,-0.037110488861799]],[[-0.035158846527338,0.11148056387901,0.0090245893225074],[-0.011170251294971,-0.16795931756496,0.091463997960091],[-0.080609828233719,-0.066963210701942,0.00031546090031043]],[[0.18581813573837,0.064876973628998,0.050670605152845],[-0.02662069350481,-0.12995588779449,0.14664393663406],[-0.0096992226317525,-0.13102486729622,-0.11899379640818]],[[-0.14599400758743,0.13830152153969,0.0055592288263142],[-0.10615053772926,0.097346618771553,-0.23860286176205],[-0.073086775839329,0.12735864520073,-0.22579792141914]],[[-0.035182263702154,-0.065472967922688,-0.085688851773739],[-0.14896361529827,-0.11556386202574,-0.24922576546669],[0.025895580649376,0.070107519626617,-0.08020357042551]]],[[[-0.060500685125589,-0.068131059408188,0.10285021364689],[-0.037919823080301,-0.11209500581026,-0.173682898283],[0.085884377360344,-0.060606308281422,-0.16444678604603]],[[-0.22338120639324,-0.058304157108068,0.071785360574722],[0.11636979877949,0.045480374246836,0.074293754994869],[-0.079890340566635,-0.085399515926838,-0.0024086378980428]],[[-0.062464106827974,-0.042291458696127,-0.019527122378349],[0.077293083071709,0.13714727759361,0.071793854236603],[0.044621337205172,0.037008438259363,-0.0048021478578448]],[[0.11303214728832,-0.088232412934303,-0.096900820732117],[-0.12694784998894,-0.038987163454294,0.011691238731146],[0.071237429976463,-0.1275962293148,-0.1472048163414]],[[0.33747944235802,0.1915749758482,-0.22426845133305],[-0.16971012949944,0.021537374705076,0.074114710092545],[-0.059973172843456,-0.01831573061645,-0.016745151951909]],[[0.09893724322319,0.13884580135345,0.07803812623024],[-0.071917720139027,-0.15086376667023,0.04839925467968],[0.23814836144447,0.13815774023533,0.0075097884982824]],[[0.1582704782486,0.042920932173729,-0.046142101287842],[-0.040108688175678,-0.026012163609266,-0.039917044341564],[0.35730537772179,0.067800611257553,-0.13602374494076]],[[-0.12460277974606,-0.08040077984333,-0.17879918217659],[-0.1892018020153,0.08014751970768,0.22501893341541],[-0.090700060129166,0.054005540907383,0.068804994225502]],[[0.057499617338181,0.04256359115243,-0.0051880241371691],[0.0034862556494772,-0.048991911113262,-0.06773491948843],[0.03071372397244,0.14025405049324,-0.058470871299505]],[[-0.014026834629476,0.017143037170172,-0.021254425868392],[-0.036803022027016,-0.10311855375767,0.022907288745046],[-0.15472622215748,-0.031211141496897,-0.084684669971466]],[[-0.06122499704361,-0.088306613266468,-0.17013093829155],[0.08518660068512,0.075833544135094,0.10939154773951],[-0.31189322471619,-0.37263402342796,-0.22096037864685]],[[0.081879317760468,-0.038918226957321,-0.059564173221588],[0.042819984257221,-0.065875463187695,-0.023839101195335],[0.14771310985088,0.15891468524933,0.019018022343516]],[[0.11668940633535,0.075279697775841,-0.0011648423969746],[0.025849882513285,-0.079909712076187,-0.081949561834335],[0.07561045140028,0.0067357174120843,-0.12479522079229]],[[0.069718092679977,-0.0057241483591497,-0.11207991093397],[-0.025826923549175,-0.047845929861069,-0.050789520144463],[0.11393573880196,-0.082994721829891,0.016902957111597]],[[-0.30442863702774,-0.063159249722958,-0.037247873842716],[-0.053566176444292,0.047216799110174,0.13727617263794],[-0.1537506878376,-0.0057742153294384,-0.024594657123089]],[[-0.026725526899099,-0.029377873986959,-0.0076191551052034],[0.10447496175766,0.0060574836097658,-0.14743641018867],[-0.19450287520885,-0.17167234420776,-0.099337607622147]],[[-0.11433492600918,-0.038462933152914,0.12555700540543],[0.015102337114513,-0.10139186680317,-0.19067293405533],[-0.044024899601936,-0.033969786018133,-0.075367622077465]],[[-0.10049071907997,0.014188559725881,0.053667943924665],[0.070636160671711,-0.02679505571723,-0.079347863793373],[-0.073299773037434,-0.074824370443821,0.086312830448151]],[[-0.24733355641365,0.031751677393913,0.02161268144846],[-0.26451227068901,-0.2194606512785,-0.18562990427017],[-0.13069948554039,0.069102935492992,0.13765606284142]],[[0.096278071403503,0.15043444931507,0.18066589534283],[-0.15370392799377,-0.045776207000017,-0.081557400524616],[0.14657624065876,-0.034235715866089,-0.024567363783717]],[[-0.11302779614925,-0.075814418494701,-0.082479238510132],[0.029773980379105,0.013029020279646,-0.087325990200043],[-0.043111059814692,-0.0066705229692161,0.17659251391888]],[[0.083505652844906,0.16712319850922,0.0093844942748547],[-0.029890669509768,-0.071696482598782,0.053867064416409],[0.003419749205932,-0.065760806202888,-0.0069700083695352]],[[0.043773796409369,-0.18338073790073,-0.24157489836216],[-0.093764796853065,-0.1137088611722,-0.030675487592816],[-0.027778334915638,0.029814852401614,-0.0064895614050329]],[[-0.071537703275681,-0.057656198740005,-0.026661133393645],[-0.08118361979723,-0.121930077672,-0.098630152642727],[0.094388067722321,-0.050756469368935,-0.03429339453578]],[[-0.012775405310094,0.13067401945591,0.161288022995],[0.023497108370066,0.20702718198299,0.1245773807168],[0.10835310071707,0.067132316529751,-0.0715172290802]],[[-0.079643540084362,-0.051656197756529,0.019704699516296],[0.12288857251406,0.015524769201875,-0.0471494756639],[-0.035947095602751,-0.031666502356529,0.10957919806242]],[[-0.14443410933018,-0.19638405740261,0.065344527363777],[0.13354559242725,0.019323710352182,0.027860816568136],[0.17448209226131,0.023600067943335,-0.013872163370252]],[[0.17201425135136,-0.032918248325586,-0.20955596864223],[-0.056575261056423,-0.015471896156669,0.062784507870674],[-0.023700248450041,-0.10295102000237,-0.14116878807545]],[[-0.074607856571674,-0.077343791723251,0.024500232189894],[0.1974935978651,0.020229615271091,-0.083973444998264],[-0.08007575571537,-0.079039670526981,-0.14858105778694]],[[0.048566356301308,0.029012629762292,-0.058106578886509],[0.081521451473236,-0.038761265575886,-0.056667774915695],[0.017927970737219,-0.13869965076447,0.017972346395254]],[[-0.1047520712018,-0.11089894175529,-0.18915867805481],[-0.15878157317638,0.027997093275189,0.18409761786461],[0.19130204617977,0.017002059146762,-0.15352441370487]],[[-0.092499226331711,-0.0061979489400983,0.01867993734777],[-0.0040449728257954,0.064702644944191,0.049486376345158],[0.033058546483517,0.025615258142352,0.15197806060314]],[[-0.080789975821972,-0.11672470718622,0.29889950156212],[-0.14829936623573,0.10898298025131,0.040203802287579],[0.053701538592577,-0.019400989636779,-0.025671934708953]],[[-0.083634100854397,-0.047072622925043,-0.081442564725876],[0.088244400918484,0.15380494296551,0.087992802262306],[-0.097932755947113,-0.11388391256332,-0.0077041313052177]],[[0.015060839243233,0.053651440888643,0.033875696361065],[-0.18093967437744,-0.19623054563999,-0.30783903598785],[0.03346773609519,0.11221338808537,0.078198447823524]],[[-0.036859143525362,0.24902307987213,0.22012919187546],[0.19825260341167,0.156639367342,-0.0020906438585371],[-0.025949966162443,-0.089406132698059,-0.0216397754848]],[[-0.0837447270751,0.054725799709558,0.096872270107269],[0.088122025132179,0.11298113316298,0.19315095245838],[-0.10641918331385,-0.0455705486238,-0.0080625582486391]],[[-0.0070774429477751,-0.0762098133564,-0.050817888230085],[-0.045387834310532,0.033370707184076,0.12900753319263],[0.058342102915049,0.0046346308663487,-0.033707957714796]],[[0.0039780787192285,-0.12543001770973,-0.12771327793598],[0.15882752835751,-0.11733838915825,-0.25446844100952],[-0.10865031927824,0.012456316500902,0.14995019137859]],[[0.18521669507027,0.076451726257801,-0.054114911705256],[-0.1073611676693,-0.0068177944049239,0.073467805981636],[-0.17765878140926,0.034044273197651,0.076690204441547]],[[-0.071336440742016,-0.093357935547829,-0.14434073865414],[0.034070525318384,0.030168827623129,-0.051274765282869],[-0.062932379543781,-0.0059810257516801,-0.010694068856537]],[[0.048613350838423,0.10046508163214,0.0085448212921619],[-0.12677527964115,0.048506900668144,0.037898648530245],[0.055712260305882,0.17084443569183,0.10290199518204]],[[-0.036114897578955,-0.055617276579142,-0.048919845372438],[-0.0025630933232605,-0.035003375262022,-0.031662423163652],[-0.12402070313692,-0.1676032692194,-0.13209688663483]],[[0.031739827245474,-0.014384543523192,0.0060732434503734],[-0.051593698561192,-0.085733361542225,-0.14319176971912],[0.016243901103735,0.014251040294766,0.048184275627136]],[[0.12682241201401,0.019573669880629,0.080358564853668],[-0.11873265355825,-0.037545822560787,-0.10715365409851],[-0.081928722560406,-0.09493599832058,-0.14968028664589]],[[0.044239539653063,0.061338808387518,0.14888252317905],[0.020640483126044,-0.19914814829826,-0.15033200383186],[0.074476324021816,-0.03218400105834,-0.042789064347744]],[[-0.015514198690653,-0.0055073741823435,-0.04457675293088],[0.05364953354001,0.028427433222532,-0.089536838233471],[-0.11244880408049,-0.066753655672073,-0.097881004214287]],[[-0.084082618355751,-0.060959193855524,0.072206266224384],[0.1453368216753,-0.13750039041042,-0.28803858160973],[-0.023027688264847,-0.058168940246105,-0.16850942373276]],[[-0.042740598320961,-0.051361452788115,-0.20925994217396],[0.049935802817345,0.17903539538383,0.27984148263931],[-0.050430096685886,-0.13185907900333,-0.32006549835205]],[[-0.014756097458303,-0.15215994417667,-0.20040239393711],[-0.07065537571907,-0.22295945882797,-0.20567785203457],[-0.063086152076721,-0.17470505833626,-0.042197786271572]],[[-0.095616303384304,-0.047613952308893,0.078002147376537],[0.044570036232471,-0.058413472026587,-0.097485035657883],[0.076783426105976,0.0016307521145791,0.080614380538464]],[[0.096415475010872,0.15320506691933,0.068147651851177],[-0.026939705014229,0.11885286122561,-0.096637897193432],[0.092921815812588,0.043066818267107,0.019090348854661]],[[0.031850419938564,0.024904020130634,-0.067566238343716],[-0.11291532218456,-0.07994382828474,-0.14019513130188],[-0.07485131919384,-0.086042188107967,-0.12235327810049]],[[-0.12817032635212,-0.10347634553909,-0.10629057884216],[0.070940755307674,0.07477418333292,0.031124975532293],[0.20790940523148,0.14985871315002,-0.13102760910988]],[[-0.081354767084122,-0.0065447431989014,0.10158731788397],[0.051040533930063,-0.1142239049077,-0.090374380350113],[-0.14694833755493,-0.0038834838196635,-0.0230015181005]],[[-0.11573915183544,-0.068761900067329,-0.0049524330534041],[0.020658103749156,-0.0077473297715187,-0.066917605698109],[0.2626790702343,0.10789933800697,0.052649628371]],[[0.12937366962433,0.083596348762512,-0.1734477430582],[-0.072669513523579,0.095453225076199,0.063832148909569],[0.033108949661255,-0.061462372541428,-0.1233903542161]],[[-0.22171945869923,-0.1649000197649,-0.1359169781208],[0.18919710814953,0.12574397027493,0.045830681920052],[-0.095571517944336,-0.12720522284508,-0.1525787115097]],[[-0.017317967489362,0.0074895643629134,-0.090898051857948],[-0.19096191227436,-0.1789475530386,-0.17328879237175],[0.12865036725998,-0.023405469954014,0.075149066746235]],[[-0.027768708765507,-0.083604417741299,0.099542155861855],[-0.018896946683526,0.0058044530451298,0.055094324052334],[-0.15784764289856,0.0021204224321991,-0.029448175802827]],[[0.098043642938137,0.035899881273508,-0.054031778126955],[-0.041544295847416,-0.080910876393318,-0.21321494877338],[0.013851264491677,0.040137335658073,0.053758203983307]],[[0.035543292760849,-0.091041468083858,-0.091764651238918],[-0.21494208276272,-0.10161639750004,-0.13631869852543],[-0.085125260055065,-0.13217194378376,-0.10494215041399]],[[0.073707066476345,0.041485495865345,-0.036694291979074],[0.036486651748419,0.042445320636034,0.12677536904812],[-0.03590590134263,-0.0012326602591202,0.0018753325566649]],[[-0.052710622549057,0.086542762815952,0.049650628119707],[0.058605901896954,-0.076123237609863,-0.030431328341365],[0.031844992190599,0.083192959427834,-0.14744518697262]],[[0.10818349570036,0.0078778453171253,-0.0026376778259873],[0.0025244595017284,-0.041851900517941,-0.11823435127735],[0.0028729566838592,0.014245261438191,0.0105363400653]],[[0.053862735629082,-0.01135749835521,-0.062447547912598],[-0.053594499826431,0.0378547757864,0.058667622506618],[0.012239540927112,-0.040319465100765,-0.14867348968983]],[[0.0055739055387676,0.05146811902523,-0.13944035768509],[-0.070423483848572,-0.067952260375023,-0.18270875513554],[-0.048085816204548,-0.13594569265842,-0.074556820094585]],[[-0.18523365259171,-0.13009326159954,-0.046499658375978],[-0.026133760809898,-0.08602923899889,0.014369747601449],[-0.042840983718634,-0.048185359686613,-0.016461262479424]],[[0.080743253231049,-0.022610321640968,-0.0809426009655],[0.16502480208874,0.062314607203007,0.010336820036173],[-0.090556390583515,-0.16528777778149,-0.19792027771473]],[[-0.077212356030941,-0.0091317165642977,0.09445209056139],[-0.095448657870293,0.089988380670547,0.12908232212067],[0.18973526358604,-0.032632853835821,-0.23379319906235]],[[0.047037854790688,-0.014071650803089,-0.25989583134651],[-0.1363846808672,0.046819649636745,0.32287937402725],[-0.06270057708025,-0.10389029234648,-0.17159232497215]],[[0.016617685556412,0.034553196281195,0.19823460280895],[-0.21708016097546,-0.11025649309158,0.056018088012934],[0.10364314168692,0.089476510882378,0.062308985739946]],[[-0.085865087807178,-0.11580606549978,-0.024741005152464],[-0.15858595073223,-0.17513421177864,-0.027041830122471],[-0.028507897630334,-0.025977615267038,-0.20751149952412]],[[-0.052260924130678,0.019065357744694,0.012411819770932],[0.060380656272173,-0.051092650741339,-0.03006461635232],[-0.13659445941448,-0.081965059041977,-0.042364925146103]],[[0.11881159245968,-0.0224565025419,-0.00869897659868],[0.047152750194073,-0.11101341247559,-0.11139159649611],[-0.042419467121363,-0.10049275308847,-0.22293336689472]],[[0.1496376991272,0.13746050000191,0.09068613499403],[-0.074988327920437,-0.056334655731916,-0.054381344467402],[0.075290396809578,-0.016265628859401,0.0050580711103976]],[[-0.084209442138672,-0.18600070476532,-0.23251062631607],[-0.13210116326809,0.087978594005108,0.1936374604702],[0.097907595336437,-0.019256062805653,-0.17694309353828]],[[0.020603328943253,-0.059713251888752,-0.12780579924583],[-0.15198631584644,-0.25128018856049,-0.32232490181923],[-0.068733982741833,-0.086611606180668,-0.17910847067833]],[[-0.10756712406874,-0.092478305101395,-0.16672812402248],[-0.13560354709625,-0.091158129274845,0.15122973918915],[0.040180042386055,-0.013086740858853,-0.085163660347462]],[[-0.14169670641422,-0.13700489699841,-0.098140373826027],[-0.16695256531239,-0.17223919928074,-0.1541935056448],[-0.055882483720779,-0.10035119205713,-0.27921062707901]],[[0.092347607016563,0.017979262396693,-0.054393406957388],[-0.04549290984869,-0.0021419739350677,0.032917317003012],[0.032284703105688,0.071367487311363,0.11471552401781]],[[-0.089275524020195,-0.093893595039845,-0.097730495035648],[0.1981778293848,0.043354526162148,-0.0094929486513138],[-0.077582985162735,-0.057608745992184,0.052835416048765]],[[0.060662522912025,0.090322487056255,0.046170104295015],[-0.058184087276459,-0.044039715081453,-0.040790848433971],[-0.081249721348286,0.092172957956791,0.16896235942841]],[[-0.018829422071576,-0.011425203643739,-0.018295157700777],[0.008186592720449,0.080132529139519,0.12053832411766],[-0.11744765937328,-0.055632088333368,-0.073788844048977]],[[-0.11372029036283,-0.046481620520353,0.012777593918145],[0.09121211618185,0.077973037958145,-0.019810842350125],[-0.010116731747985,-0.046431019902229,-0.15537658333778]],[[0.010863576084375,0.0070002153515816,0.099261574447155],[0.076038211584091,-0.093764394521713,-0.17574916779995],[0.068513184785843,0.0021635070443153,-0.080869719386101]],[[0.03538516908884,0.036234878003597,0.034211155027151],[0.057711862027645,-0.16502891480923,-0.27963837981224],[0.13189427554607,0.024576883763075,0.055394131690264]],[[0.10551682859659,0.20569065213203,-0.048833064734936],[0.11770234256983,-0.033506952226162,-0.098521701991558],[-0.031691458076239,-0.087312899529934,-0.012130073271692]],[[-0.079106956720352,-0.10826820135117,-0.11165785044432],[0.15245118737221,0.011035654693842,0.048765581101179],[0.041220385581255,-0.13803912699223,-0.071120403707027]],[[0.04164269939065,0.049412161111832,-0.06140149757266],[-0.11431642621756,-0.034291189163923,-0.075340181589127],[0.11845456063747,-0.034508783370256,-0.041275780647993]],[[-0.018768714740872,0.0083467308431864,-0.066833645105362],[-0.0086543206125498,0.23562042415142,0.2550091445446],[0.0099000735208392,0.13064368069172,0.15568535029888]],[[-0.027781706303358,-0.14099329710007,-0.19040060043335],[-0.2290703356266,-0.1107430383563,-0.091349966824055],[-0.023898173123598,0.029504302889109,-0.045191910117865]],[[-0.1113189086318,-0.076038353145123,-0.044851634651423],[0.011885430663824,-0.023979539051652,-0.016882993280888],[-0.027436394244432,0.1423474997282,0.095454923808575]],[[-0.051811680197716,-0.045280177146196,0.043673351407051],[0.032885205000639,-0.049504775553942,-0.00016216392396018],[-0.060260914266109,-0.14630927145481,-0.16594853997231]],[[0.095367819070816,0.052594948559999,-0.025438588112593],[-0.14836367964745,0.05070823803544,0.12536592781544],[0.26230749487877,0.040915310382843,-0.26173281669617]],[[-0.079929493367672,-0.063051484525204,0.13529185950756],[0.024163790047169,-0.009942295961082,-0.010299830697477],[0.029289657250047,-0.019092177972198,-0.060040663927794]],[[-0.072050370275974,-0.089127205312252,-0.15636625885963],[-0.074552625417709,-0.093084573745728,0.073526293039322],[-0.053032118827105,0.0033597403671592,0.017223291099072]],[[0.002492095110938,0.088418669998646,0.14899168908596],[0.016261639073491,-0.084411986172199,-0.16427631676197],[0.045840255916119,-0.08051386475563,-0.078252911567688]],[[-0.18686302006245,-0.057990334928036,0.19435377418995],[-0.020000712946057,0.084741547703743,0.071298450231552],[0.14211103320122,0.047533351927996,-0.028499634936452]],[[0.0060000820085406,0.13911683857441,0.27260857820511],[0.18469762802124,0.12360659986734,-0.0018950236262754],[0.022274723276496,-0.16126368939877,-0.16855476796627]],[[0.082538895308971,-0.10940560698509,-0.077606849372387],[-0.1763699054718,-0.008882169611752,-0.010922022163868],[-0.10692945122719,-0.088375844061375,0.038690067827702]],[[0.13550336658955,0.13066498935223,0.044114619493484],[-0.067912951111794,0.064082585275173,-0.072424277663231],[-0.033080939203501,-0.15652295947075,-0.30657085776329]],[[-0.02980225160718,0.012753364630044,-0.0013946547405794],[0.0025930760893971,-0.10108390450478,-0.044303648173809],[0.080470129847527,-0.062296938151121,-0.23464831709862]],[[-0.084454454481602,-0.099152684211731,-0.063237704336643],[-0.10800145566463,0.056329909712076,0.083599120378494],[0.1510109603405,0.14410015940666,-0.015731828287244]],[[-0.04288050159812,0.0073151220567524,0.0086246989667416],[-0.029469098895788,-0.088028781116009,0.034932874143124],[-0.1390615105629,0.089334860444069,0.034129865467548]],[[0.075343362987041,-0.029102206230164,-0.065328359603882],[-0.030682049691677,0.050833363085985,0.14470234513283],[0.027479983866215,-0.071957841515541,-0.087087012827396]],[[-0.18172560632229,0.010293678380549,-0.0092091578990221],[0.01458509452641,0.12276926636696,0.056654535233974],[0.0088691152632236,0.042294658720493,0.051563281565905]],[[-0.029975896701217,-0.0012261623051018,-0.016300518065691],[0.11672949045897,0.04493996873498,0.2233490049839],[-0.20779299736023,-0.082215890288353,-0.046839125454426]],[[0.033496119081974,-0.06006433069706,-0.18092165887356],[-0.059889256954193,0.07468655705452,0.1345978975296],[0.2744822204113,0.15325845777988,-0.021850420162082]],[[-0.0031818835996091,-0.040006946772337,-0.082013882696629],[0.027224054560065,-0.10504530370235,-0.014283650554717],[0.17134507000446,-0.042560938745737,-0.19413013756275]],[[-0.042367465794086,-0.15454271435738,-0.047388531267643],[-0.082908622920513,-0.10909777879715,-0.16711433231831],[-0.12694479525089,-0.16771766543388,-0.053322087973356]],[[0.12795619666576,0.086096607148647,0.11052651703358],[0.067375123500824,0.1122081130743,0.211077272892],[-0.12594990432262,-0.21790038049221,-0.14937117695808]],[[0.044902797788382,-0.099037311971188,0.12914070487022],[0.14588332176208,0.0055955206044018,-0.13844218850136],[-0.03438676148653,-0.062475327402353,-0.024518448859453]],[[0.17023082077503,-0.1396906375885,-0.0027710380963981],[-0.13075049221516,-0.23862454295158,-0.055998053401709],[-0.14028222858906,0.034922707825899,0.3720511496067]],[[-0.0012770897010341,-0.063258409500122,-0.035161521285772],[0.085893996059895,0.078640818595886,-0.013530345633626],[-0.056510239839554,-0.12113114446402,-0.14335830509663]],[[-0.031937807798386,0.15832562744617,0.06254781037569],[0.042522173374891,0.14242886006832,0.16213342547417],[-0.14059795439243,-0.078088529407978,-0.16493266820908]],[[0.10002179443836,0.018187500536442,0.03243950381875],[-0.21181927621365,0.025919616222382,-0.02140742726624],[-0.063987717032433,-0.063179567456245,-0.0084290346130729]],[[-0.0031730348709971,0.13958731293678,-0.087695978581905],[0.15554927289486,0.076133735477924,0.19608429074287],[-0.050794918090105,-0.14736515283585,-0.2832972407341]],[[-0.17602044343948,-0.13489644229412,-0.18848592042923],[0.14498156309128,0.098286345601082,0.065873615443707],[-0.21839284896851,-0.12317985296249,-0.16159671545029]],[[0.010965992696583,0.014194875955582,-0.093400746583939],[0.028766553848982,-0.047422092407942,-0.090245246887207],[-0.015293770469725,0.014892569743097,-0.0037572977598757]],[[0.025272522121668,0.076120346784592,0.045361079275608],[-0.030968144536018,0.12303854525089,0.077682502567768],[-0.11157566308975,-0.17202371358871,-0.11504023522139]],[[-0.090248294174671,-0.021105388179421,0.16407981514931],[0.088300161063671,0.054992619901896,0.062143102288246],[0.0021997219882905,0.15820075571537,0.11502179503441]],[[-0.18621179461479,-0.065952330827713,0.054643910378218],[-0.026378467679024,-0.024844607338309,-0.12561784684658],[-0.096658080816269,-0.021282825618982,-0.0060079144313931]],[[-0.13606439530849,-0.099465407431126,0.097254015505314],[0.076058924198151,0.11947444826365,0.12661875784397],[0.15861436724663,-0.021929949522018,-0.088352762162685]],[[-0.037127498537302,0.078193642199039,-0.062833845615387],[0.010790385305882,0.11433970928192,-0.040075063705444],[0.04674094542861,-0.016972130164504,-0.064416132867336]],[[-0.10275904089212,-0.070250898599625,0.0082683647051454],[-0.062607325613499,-0.022564308717847,-0.0468341819942],[-0.021212495863438,0.025915298610926,-0.078821018338203]],[[0.063003160059452,0.064531899988651,-0.12092917412519],[-0.027841543778777,0.031868942081928,-0.05740836635232],[-0.0048694931901991,-0.041223868727684,0.0043567456305027]],[[0.046819780021906,-0.10899129509926,-0.21427081525326],[-0.097178839147091,0.10594862699509,0.31388103961945],[0.071993663907051,-0.19822666049004,-0.06481958180666]]],[[[-0.075407385826111,-0.028754130005836,0.0057287230156362],[-0.022367876023054,0.023619074374437,0.037320766597986],[-0.088618822395802,-0.047472342848778,-0.041684653609991]],[[-0.028903264552355,-0.041592594236135,0.084459789097309],[0.053851701319218,0.046641778200865,0.018854737281799],[-0.0081396410241723,-0.083126038312912,-0.055541332811117]],[[0.063766211271286,-0.065118908882141,-0.014075967483222],[-0.0058972290717065,-0.018193881958723,-0.081620410084724],[-0.074369534850121,-0.032136987894773,-0.0086181331425905]],[[-0.10185301303864,0.0025314975064248,-0.077530853450298],[-0.087798826396465,-0.063398413360119,-0.064957395195961],[0.024908514693379,-0.043296564370394,-0.00085456867236644]],[[-0.011627778410912,-0.03940661624074,0.019335212185979],[-0.031708151102066,0.044889088720083,0.10424534976482],[0.0019652941264212,-0.0095368092879653,0.038501542061567]],[[0.079290471971035,-0.010562762618065,0.108179949224],[0.075180657207966,-0.078003980219364,0.059433087706566],[-0.010630274191499,-0.076710976660252,-0.04238648340106]],[[0.097113542258739,0.056469030678272,0.10384979844093],[-0.022818321362138,0.02236595377326,-0.013591812923551],[0.012468824163079,0.02593139745295,0.062201749533415]],[[-0.080752417445183,-0.049944773316383,-0.10151851922274],[0.090465165674686,0.018104357644916,-0.0045737405307591],[-0.062558516860008,-0.050518475472927,-0.074050031602383]],[[0.014051303267479,-0.0087337819859385,0.023897891864181],[-0.039444219321012,0.023587644100189,-0.02886794321239],[0.0031518589239568,0.023921351879835,-0.030551116913557]],[[-0.035081993788481,-0.00011313192226226,-0.10919155925512],[0.038086872547865,0.027935096994042,-0.065707825124264],[-0.023804055526853,0.01047926209867,0.1131951585412]],[[-0.009343458339572,-0.10451962798834,0.0076296939514577],[-0.10840059071779,0.022010806947947,0.021343925967813],[-0.062618084251881,0.019214125350118,-0.15309754014015]],[[-0.04401196166873,-0.046491131186485,0.017335580661893],[-0.024936450645328,-0.037292398512363,-0.011808322742581],[-0.058270812034607,-0.13693714141846,-0.031452752649784]],[[-0.053663019090891,-0.028711598366499,0.095696091651917],[-0.0019430819666013,-0.10098775476217,0.1259933412075],[-0.1138811558485,-0.076630413532257,0.0034799231216311]],[[0.11332758516073,-0.015358814038336,-0.12348027527332],[0.092014275491238,0.03650140017271,-0.035253711044788],[0.0017047259025276,0.072278708219528,-0.023347878828645]],[[-0.088136687874794,-0.044728204607964,0.041823923587799],[-0.0035968672018498,-0.067027188837528,-0.10022080689669],[-0.026510303840041,-0.054995402693748,0.029251156374812]],[[-0.053728833794594,-0.036408383399248,-0.040893886238337],[0.093647412955761,-0.02452933229506,-0.0073520755395293],[0.13217142224312,-0.10215018689632,-0.042686577886343]],[[-0.1268143504858,0.08792944252491,0.087384954094887],[0.043773535639048,-0.02187979221344,0.039169572293758],[-0.10240755975246,-0.039537314325571,-0.004108255263418]],[[-0.042235147207975,0.096585847437382,0.074523687362671],[0.056867580860853,0.11755578964949,0.064914658665657],[0.060351826250553,0.064912788569927,-0.020822932943702]],[[-0.050446584820747,0.035937402397394,-0.065952226519585],[0.14755526185036,0.036811385303736,0.031405888497829],[-0.042543191462755,-0.030422629788518,-0.066411100327969]],[[-0.042404413223267,0.038631033152342,0.065437339246273],[-0.05956569686532,0.089694403111935,0.019364856183529],[0.047896977514029,0.044935770332813,0.015842126682401]],[[-0.040992673486471,-0.01381518971175,-0.06025380268693],[-0.031312424689531,0.044099871069193,0.068322844803333],[0.054598171263933,-0.069373063743114,-0.071049056947231]],[[-0.042381651699543,-0.022458884865046,-0.010780986398458],[0.10164488852024,0.078518845140934,0.0072664585895836],[0.017313865944743,-0.096208281815052,-0.038715310394764]],[[0.050004858523607,-0.0026783461216837,-0.051731843501329],[-0.0081352684646845,0.01823260448873,0.028990872204304],[-0.011078333482146,-0.012868281453848,-0.051925644278526]],[[-0.019464997574687,-0.031334217637777,0.037978671491146],[0.03471789881587,-0.036141917109489,-0.044039465487003],[0.034407023340464,-0.1131806820631,-0.088504865765572]],[[0.005572771653533,-0.065434776246548,-0.071885146200657],[0.062411911785603,-0.09042950719595,-0.051541872322559],[-0.0088400226086378,-0.013529579155147,-0.06139912083745]],[[-0.0028240261599422,-0.025183433666825,-0.058394268155098],[-0.013497695326805,-0.018747884780169,0.068355284631252],[-0.027973368763924,0.0085337748751044,0.1486751139164]],[[0.010523139499128,0.060942217707634,0.018193300813437],[-0.002569587668404,0.062369853258133,-0.015206419862807],[-0.060881894081831,0.042773868888617,-0.089198268949986]],[[-0.019174629822373,0.0056206285953522,0.032235272228718],[0.063046932220459,0.044961154460907,-0.024494687095284],[-0.032979026436806,0.061394724994898,0.04009297862649]],[[0.045494075864553,-0.015041410923004,-0.046255808323622],[-0.072359956800938,-0.072253979742527,0.01957637257874],[-0.031995497643948,-0.029020451009274,0.060368604958057]],[[-0.010443692095578,-0.027894454076886,-0.023845432326198],[0.018120294436812,0.012622813694179,-0.10553713142872],[0.18149387836456,-0.025643000379205,0.055347643792629]],[[0.051349472254515,0.064042322337627,-0.027169877663255],[-0.10997971892357,-0.045086942613125,-0.047132302075624],[0.027427123859525,0.084095776081085,-0.014297733083367]],[[-0.079582452774048,0.01675364933908,0.0035300401505083],[0.052045054733753,-0.006296522449702,0.050777271389961],[0.047999434173107,0.067231416702271,-0.015434003435075]],[[-0.015854921191931,-0.044674891978502,0.04257794469595],[-0.058098044246435,-0.085911028087139,-0.063212968409061],[0.0272920075804,-0.054363869130611,-0.0058870338834822]],[[-0.024500206112862,0.019502006471157,0.055474374443293],[-0.11100450158119,0.0021281726658344,0.045076604932547],[-0.057179886847734,-0.00058835599338636,0.048986367881298]],[[-0.047386076301336,-0.14514355361462,0.014921388588846],[0.022944388911128,-0.042443498969078,-0.11065953969955],[0.0074938093312085,-0.035490337759256,-0.024115500971675]],[[-0.055716242641211,0.0072226556949317,-0.0046528675593436],[-0.067197419703007,-0.026226762682199,-0.051681440323591],[0.072478458285332,0.022004889324307,-0.040603138506413]],[[0.045529898256063,0.028003010898829,0.087407074868679],[0.052616953849792,0.11849697679281,0.098553113639355],[-0.020830513909459,-0.093891061842442,0.057107325643301]],[[-0.0017127932514995,-0.0944784283638,-0.055857699364424],[-0.051034029573202,-0.012042849324644,-0.021528040990233],[0.0072734863497317,0.030093505978584,0.063143238425255]],[[0.06839607656002,-0.0014873936306685,-0.056167230010033],[-0.093844823539257,0.089335389435291,-0.0023187869228423],[0.04413540288806,-0.005451035220176,-0.022335199639201]],[[-0.070947229862213,-0.018277373164892,0.022120317444205],[-0.021797811612487,0.026879785582423,-0.026402479037642],[-0.074161991477013,-0.0018929780926555,-0.099384754896164]],[[-0.083397023379803,-0.058939445763826,-0.020939007401466],[-0.019811926409602,-0.05536138266325,0.040835101157427],[0.013444378972054,-0.049524568021297,-0.042180869728327]],[[0.023146500810981,-0.033300153911114,-0.038266330957413],[-0.070562064647675,-0.10434597730637,0.016650410369039],[-0.0073453555814922,-0.03632639721036,0.06471835821867]],[[-0.046848587691784,-0.091749407351017,-0.0045327814295888],[-0.094432525336742,0.036172270774841,-0.039335817098618],[-0.015449597500265,0.016067862510681,-0.01452019251883]],[[0.0081810429692268,-0.073165684938431,0.031923905014992],[-0.020160043612123,-0.040537249296904,0.022981144487858],[0.0051477951928973,-0.035053431987762,0.0019948149565607]],[[0.032492276281118,-0.027466399595141,0.028923235833645],[-0.11362663656473,0.041723895817995,-0.049669746309519],[-0.027560664340854,0.031649179756641,-0.089977912604809]],[[0.003878268878907,-0.066946111619473,-0.02038367651403],[0.011183824390173,-0.071508675813675,-0.087817080318928],[-0.01112109888345,-0.053644277155399,0.018050061538815]],[[-0.11690558493137,-0.037161059677601,-0.0012340748216957],[-0.017662551254034,0.072766005992889,-0.018417535349727],[0.013550150208175,-0.10529518127441,0.062342371791601]],[[0.14609831571579,0.027239486575127,-0.02037170343101],[0.081787332892418,0.021136242896318,-0.0031915479339659],[-0.039081308990717,0.11281080543995,-0.041242614388466]],[[0.051204580813646,0.0050633563660085,-0.012357736937702],[0.021523321047425,0.017316495999694,-0.0005710240220651],[0.013026462867856,0.029804425314069,0.0079537378624082]],[[-0.002120564924553,-0.057239279150963,0.046941056847572],[0.028316214680672,-0.024560613557696,-0.035566564649343],[-0.023273630067706,-0.031269907951355,-0.02901416644454]],[[0.010156096890569,-0.061057586222887,0.020400540903211],[0.031844418495893,-0.070229537785053,-0.035980023443699],[-0.020949564874172,-0.065114960074425,-0.049539282917976]],[[-0.084159784018993,-0.039713773876429,-0.021628506481647],[-0.014855856075883,-0.02294728346169,-0.065228141844273],[-0.0067289127036929,0.065548799932003,0.010756447911263]],[[-0.064039118587971,-0.03575349226594,-0.06947884708643],[-0.022276248782873,-0.059718351811171,-0.012638347223401],[-0.065597958862782,-0.0072621325962245,-0.033137258142233]],[[0.045877628028393,-0.07808630168438,-0.029981065541506],[0.077341675758362,-0.052278056740761,-0.022063482552767],[0.033232171088457,-0.039089128375053,-0.0030978838913143]],[[0.060019452124834,0.0044281780719757,0.04070832952857],[-0.10325565189123,-0.091190628707409,0.036380060017109],[-0.066826872527599,-0.088683411478996,-0.036600604653358]],[[0.024004964157939,-0.019649725407362,0.046870525926352],[0.031885851174593,0.11199469864368,0.056928139179945],[0.064150892198086,-0.082193218171597,0.013889774680138]],[[0.04492661729455,-0.0039798892103136,-0.0240837354213],[-0.011579159647226,0.034653834998608,-0.016649732366204],[-0.024959886446595,0.093176998198032,-0.015269176103175]],[[0.005215800832957,-0.022887352854013,-0.016253739595413],[0.006782861892134,-0.021781764924526,0.047199886292219],[-0.14880204200745,-0.025548255071044,0.05712528154254]],[[-0.086954042315483,-0.05793996155262,-0.1110522300005],[-0.014313850551844,0.033514529466629,0.12357542663813],[0.0018963359761983,-0.01100958045572,0.075495198369026]],[[0.12657748162746,0.19715492427349,0.14706826210022],[0.024070391431451,0.093013271689415,0.015815755352378],[-0.093592740595341,-0.0093927066773176,-0.040111113339663]],[[-0.041833739727736,-0.077672533690929,0.01639449223876],[-0.0089667923748493,-0.12851114571095,0.029591472819448],[-0.015248956158757,-0.079576976597309,0.069517381489277]],[[0.0098092164844275,-0.066258013248444,-0.11893144249916],[-0.066352933645248,-0.0032306725624949,-0.033379338681698],[0.022727254778147,0.072013899683952,-0.097410149872303]],[[0.0022274544462562,-0.028628662228584,-0.028555389493704],[-0.094188898801804,-0.042923659086227,0.013014160096645],[-0.044935170561075,0.013726208359003,-0.055422347038984]],[[-0.037259720265865,0.023434992879629,-0.010767922736704],[-0.083462320268154,-0.060388766229153,0.068438313901424],[-0.074151955544949,0.030116133391857,-0.030940027907491]],[[-0.050140108913183,-0.12652350962162,0.028074054047465],[0.015834122896194,-0.071587480604649,-0.049527242779732],[-0.0065322313457727,-0.045766789466143,0.0019299281993881]],[[0.017279332503676,-0.0018634193111211,-0.092079237103462],[-0.021610112860799,0.014683905988932,0.021827578544617],[-0.050711248070002,0.045052673667669,-0.016596227884293]],[[-0.0048903729766607,0.086854256689548,-0.037314884364605],[0.047095499932766,0.00095413404051214,-0.058669965714216],[0.016004497185349,-0.048243667930365,0.045621443539858]],[[0.063281178474426,-0.074728697538376,0.0092382375150919],[0.12887439131737,-0.091991789638996,-0.017518846318126],[0.037326171994209,-0.015790978446603,0.035131882876158]],[[-0.085488967597485,0.11249557137489,0.17688873410225],[0.032037977129221,0.12470651417971,0.18096342682838],[-0.026068272069097,0.05335733294487,0.14514616131783]],[[-0.0026569447945803,-0.11208620667458,0.030576637014747],[0.012827098369598,0.011577418074012,0.040143612772226],[-0.05852210149169,0.073711186647415,-0.0059651155024767]],[[0.092294804751873,0.086462169885635,0.041845567524433],[-0.053894232958555,-0.095436438918114,-0.13898172974586],[0.022594535723329,-0.0092117562890053,-0.017795430496335]],[[-0.015406752005219,-0.027162499725819,0.078398838639259],[-0.0051509267650545,4.607160735759e-05,-0.033283483237028],[-0.062490552663803,-0.027322217822075,-0.021465323865414]],[[-0.076469734311104,0.0081879384815693,0.01447407528758],[-0.028392009437084,-0.010143912397325,0.053943153470755],[0.010230634361506,0.021140325814486,-0.024822333827615]],[[0.017337575554848,0.062450934201479,-0.001569346524775],[-0.064560122787952,-0.05986101180315,-0.029325950890779],[-0.0029730247333646,-0.026906402781606,-0.051600486040115]],[[0.046751033514738,0.018799159675837,0.0053601008839905],[-0.16084572672844,-0.062703564763069,0.070771798491478],[-0.063378505408764,-0.074314132332802,0.01194422505796]],[[0.099239371716976,0.032339174300432,-0.02750632725656],[0.03696221113205,0.020407166332006,-0.057838458567858],[-0.085158944129944,0.065546222031116,0.021456342190504]],[[0.081150874495506,-0.015222775749862,0.14699566364288],[-0.040473878383636,-0.0074927154928446,0.057613149285316],[-0.029860777780414,-0.072636157274246,0.0077000074088573]],[[0.052239820361137,0.046910356730223,0.0046377065591514],[-0.029671058058739,0.04967001453042,0.021477706730366],[-0.079014763236046,0.013221407309175,0.045603100210428]],[[-0.0079020615667105,0.021104553714395,-0.064052179455757],[-0.13074247539043,-0.11821828782558,0.0028270983602852],[-0.11653365939856,-0.0051527717150748,-0.011181090958416]],[[-0.054255083203316,-0.023848325014114,0.010715273208916],[-0.043763279914856,0.035759586840868,-0.005614151712507],[-0.024220267310739,0.083349540829659,-0.045431312173605]],[[0.17885231971741,-0.044950440526009,-0.023172738030553],[-0.0014785774983466,-0.055637467652559,0.005919084418565],[0.049561001360416,-0.019364699721336,0.033354565501213]],[[-0.080444745719433,-0.0026527317240834,0.031746011227369],[-0.024321805685759,0.072008818387985,-0.0029941909015179],[0.056240811944008,0.02884660474956,-0.10168259590864]],[[0.021160624921322,0.014980478212237,0.037299033254385],[0.1030213907361,0.001208643312566,0.020937412977219],[0.073370136320591,-0.034009825438261,-0.034878108650446]],[[0.040156733244658,-0.0081309089437127,-0.032851491123438],[0.11099588125944,-0.097978726029396,-0.023785823956132],[0.12142530828714,-0.0382931381464,-0.067105673253536]],[[-0.063328221440315,-0.021064942702651,0.021201537922025],[-0.081836901605129,-0.016820300370455,-0.034387979656458],[-0.068019866943359,-0.012729803100228,0.019930094480515]],[[-0.081040307879448,0.027112662792206,-0.085481725633144],[0.0083046788349748,-0.046423532068729,-0.01513209939003],[-0.026636632159352,-0.046704594045877,-0.12073792517185]],[[-0.034649524837732,-0.10046820342541,-0.11744618415833],[0.25996625423431,0.084928520023823,-0.04568238183856],[0.17021781206131,-0.018048731610179,0.088143043220043]],[[0.092807240784168,-0.017688754945993,-0.029040183871984],[0.080694235861301,0.046232033520937,-0.058138940483332],[0.038576077669859,-0.024214459583163,0.0054246578365564]],[[0.046131730079651,-0.047859776765108,-0.01907991990447],[0.14998741447926,0.056282576173544,-0.0080770505592227],[-0.062022142112255,-0.034015741199255,0.013483956456184]],[[0.0049319081008434,0.047069393098354,-0.025747451931238],[-0.072773694992065,0.002383470069617,0.10803139954805],[0.010864918120205,-0.040979389101267,-0.070188112556934]],[[-0.036583930253983,-0.01145613566041,0.10348247736692],[-0.020294602960348,0.12602080404758,0.12286703288555],[-0.01726989634335,0.13173691928387,0.14470548927784]],[[0.046429835259914,0.014991356059909,0.021269449964166],[-0.03080028668046,-0.052463833242655,-0.11265602707863],[-0.017172817140818,-0.021708723157644,0.00078361708438024]],[[-0.08876496553421,0.022251078858972,0.038739655166864],[-0.058818012475967,-0.037561468780041,0.0045058159157634],[0.11018130928278,-0.073296181857586,0.085384540259838]],[[0.035828828811646,-0.075735308229923,0.045797452330589],[-0.081991314888,-0.10952840000391,-0.05901362746954],[0.044005677103996,-0.06744284927845,-0.034044522792101]],[[0.0038667826447636,0.049649350345135,-0.0087331933900714],[-0.00087506475392729,0.046652719378471,0.016269745305181],[-0.010438653640449,0.18082788586617,0.0055017080157995]],[[-0.083343453705311,-0.08686425536871,0.0086387619376183],[0.051343515515327,-0.030284190550447,-0.0894475877285],[-0.048763025552034,0.051710326224566,-0.033428676426411]],[[-0.086430326104164,0.015886101871729,-0.046272732317448],[-0.0615129545331,-0.093632891774178,0.06819710880518],[-0.1059635579586,0.028277924284339,-0.0026877247728407]],[[-0.026649326086044,-0.025327000766993,-0.0054745501838624],[-0.07757942378521,0.093827165663242,0.060165520757437],[-0.13391031324863,0.099054038524628,-0.033342953771353]],[[0.079091563820839,-0.020626522600651,-0.018853871151805],[0.04297336563468,-0.11375706642866,-0.041583117097616],[-0.015108819119632,-0.0012301510432735,-0.03305945917964]],[[0.06655029207468,-0.0028616089839488,0.11064179986715],[0.010132931172848,0.087761372327805,0.20605038106441],[-0.043922401964664,0.023178651928902,0.062399566173553]],[[0.12185971438885,0.025722444057465,-0.06348130851984],[0.026232661679387,0.0027460332494229,0.0046654804609716],[-0.0088737737387419,-0.03856997191906,-0.054316826164722]],[[0.00489312550053,-0.036708142608404,-0.031632326543331],[0.065120249986649,0.046954121440649,0.04393270239234],[-0.042576160281897,-0.087906420230865,0.039154462516308]],[[0.041188634932041,-0.028960179537535,-0.025061162188649],[0.014813555404544,0.015817474573851,-0.037202961742878],[-0.092591553926468,0.00058777973754331,0.0084250597283244]],[[0.14389169216156,0.074505046010017,-0.026301445439458],[0.022300930693746,0.035052292048931,0.032094560563564],[-0.069729290902615,0.041008315980434,0.14405247569084]],[[0.041763722896576,-0.0074811447411776,-0.056024588644505],[-0.013381002470851,-0.05712878331542,-0.039519157260656],[-0.016863316297531,-0.029158668592572,0.0003661798837129]],[[0.060418382287025,0.06910814344883,-0.0014559004921466],[0.035716868937016,-0.0177904330194,0.0052948701195419],[0.01701538823545,-0.091296009719372,0.0092684039846063]],[[0.01052138581872,0.066350787878036,0.03033378534019],[-0.043339468538761,0.046851873397827,0.037521872669458],[-0.053898606449366,0.11449704319239,0.022451937198639]],[[0.033723562955856,-0.019711131229997,-0.046962738037109],[0.0095480559393764,0.10914008319378,-0.1395225673914],[0.094053827226162,0.048371363431215,-0.076342105865479]],[[-0.057593114674091,-0.074268594384193,0.074213244020939],[-0.0051902970299125,-0.040500555187464,0.0044307475909591],[0.0047236019745469,-0.012980097904801,0.056943222880363]],[[-0.034688100218773,-0.046257469803095,0.0057986243627965],[0.011515998281538,-0.065718241035938,-0.023078450933099],[0.17264828085899,0.030314411967993,0.028095016255975]],[[0.047426491975784,-0.052348989993334,0.018537016585469],[0.023881705477834,0.055877849459648,0.04056554287672],[0.018006762489676,-0.030205082148314,0.016730140894651]],[[-0.065040051937103,-0.061662282794714,-0.0051875421777368],[-0.01398295443505,0.058442424982786,0.056997291743755],[-0.0403738245368,-0.057307548820972,0.036104843020439]],[[-0.027865344658494,0.09391326457262,0.0052928789518774],[0.0048860525712371,0.077545940876007,0.05147959291935],[0.019532281905413,-0.010214745998383,0.039897087961435]],[[0.058559656143188,0.045105863362551,0.01531430426985],[-0.018539778888226,0.075196750462055,-0.059451691806316],[0.013056550174952,0.015336233191192,-0.014228626154363]],[[-0.031524941325188,0.070980153977871,0.064664199948311],[0.0025230420287699,0.045937746763229,-0.008016319014132],[-0.049372233450413,0.0041220840066671,-0.036442957818508]],[[0.062211010605097,0.077384628355503,-0.0025245971046388],[0.037665076553822,-0.0090300720185041,0.077730797231197],[-0.06101493537426,0.0032462778035551,-0.15125150978565]],[[0.0329270362854,0.048699054867029,-0.02621609903872],[0.072463653981686,0.068958185613155,-0.062912739813328],[0.072076082229614,-0.00810432061553,-0.067438513040543]],[[-0.023316934704781,0.0088594369590282,0.089718990027905],[0.019019303843379,0.049158506095409,-0.028997050598264],[-0.058185558766127,-0.070425271987915,0.02359713613987]],[[0.026515208184719,-0.024476647377014,-0.078181929886341],[0.019056791439652,-0.037848006933928,-0.023555181920528],[0.054325371980667,-0.0035263306926936,-0.042612113058567]],[[0.061064619570971,-0.049390859901905,0.014330813661218],[-0.16180305182934,-0.024937389418483,-0.01682566665113],[-0.072437331080437,-0.027943395078182,-0.023724379017949]],[[-0.014963848516345,-0.034548509865999,0.05132669955492],[0.042159173637629,0.0069935796782374,0.045829821377993],[-0.07817592471838,0.11560494452715,0.13317538797855]],[[0.043412499129772,0.089643485844135,0.019308444112539],[0.060675069689751,-0.018640635535121,-0.037319768220186],[0.083688884973526,-0.023591209203005,-0.075101464986801]],[[-0.0060498877428472,-0.075015105307102,-0.092601142823696],[0.058106031268835,-0.10134573280811,-0.080684371292591],[0.072154320776463,0.0014779295306653,-0.078284330666065]],[[-0.02026554197073,-0.042070884257555,0.0085782408714294],[0.034674521535635,-0.035399127751589,-0.0074091921560466],[0.051341913640499,-0.090162798762321,-0.0025963233783841]],[[-0.0046349428594112,0.014832301065326,-0.0034120145719498],[-0.079353950917721,0.010807516984642,0.032126676291227],[0.048615679144859,0.016687242314219,-0.030567709356546]],[[-0.057079646736383,-0.044698692858219,-0.055103078484535],[0.010882004164159,-0.078591607511044,-0.065300211310387],[0.058959372341633,-0.075230360031128,0.0055923103354871]],[[-0.072765536606312,0.12257377058268,0.085033364593983],[-0.057497221976519,0.087530955672264,0.099713705480099],[-0.065226428210735,0.096160627901554,0.1141192317009]],[[0.073347650468349,0.038082040846348,0.1294933706522],[-0.052839402109385,-0.10857144743204,-0.023205326870084],[-0.045789070427418,-0.072013847529888,-0.057806078344584]]],[[[0.044986676424742,-0.025580838322639,0.019127720966935],[0.055937733501196,-0.0032180796843022,0.025383749976754],[0.0013018011813983,-0.0079117873683572,-0.038604632019997]],[[-0.11116109788418,0.021822212263942,-0.037979938089848],[-0.083340637385845,0.091466076672077,-0.040416430681944],[0.017006147652864,-0.035889461636543,0.045333717018366]],[[0.035955861210823,-0.0024926245678216,0.079064130783081],[-0.049521498382092,0.062719322741032,0.034235924482346],[-0.054329425096512,0.049991615116596,0.037033531814814]],[[-0.028895776718855,-0.019424349069595,0.016709834337234],[0.081593878567219,-0.07299429923296,0.030722606927156],[0.0047788098454475,0.0038356154691428,-0.018019335344434]],[[0.065818414092064,-0.05461323261261,0.0029173716902733],[0.0094049470499158,-0.021885158494115,0.029232911765575],[0.037210486829281,0.020939277485013,0.074687406420708]],[[-0.0045993090607226,0.052427064627409,0.070562794804573],[0.024202885106206,-0.031669784337282,-0.015114213339984],[0.079969085752964,0.051467657089233,-0.07224328815937]],[[-0.0033787726424634,-0.00032512305187993,0.01433527469635],[0.035048540681601,-0.0091673284769058,0.021939717233181],[-0.022126952186227,-0.016809117048979,0.066976308822632]],[[0.0011816365877166,0.0093072568997741,0.049292255192995],[-0.0073021999560297,0.017098359763622,-0.024378588423133],[-0.038708433508873,0.030945098027587,0.01195708848536]],[[0.026259563863277,0.027847904711962,-0.054955072700977],[0.042848821729422,0.0067123267799616,-0.022820804268122],[0.026619425043464,-0.049678038805723,0.033007737249136]],[[-0.0022564174141735,-0.046554673463106,0.033526930958033],[-0.085110664367676,-0.035059779882431,0.020863629877567],[-0.069780305027962,-0.01287370081991,0.040630374103785]],[[-0.048382189124823,0.031093010678887,0.0048168189823627],[-0.076368696987629,0.029574161395431,0.024227827787399],[-0.00098532694391906,-0.030099362134933,-0.0092380065470934]],[[0.014930532313883,-0.050748161971569,-0.080117084085941],[-0.031489014625549,0.049621935933828,0.061570253223181],[0.050638068467379,0.09074167907238,-0.056540422141552]],[[-0.0046950709074736,0.012727780267596,0.16028654575348],[0.0093167433515191,0.058282785117626,0.029563406482339],[0.039923902601004,-0.054402638226748,-0.022588655352592]],[[-0.034171044826508,-0.067781575024128,-0.049566593021154],[0.0031624985858798,-0.050732094794512,-0.0036909312475473],[-0.10591720044613,-0.025954684242606,0.019197823479772]],[[0.0094339959323406,0.099537186324596,0.062718033790588],[-0.017630590125918,-0.058247338980436,-0.023591203615069],[-0.041640419512987,0.044173326343298,-0.016819505020976]],[[0.0021042497828603,0.080289006233215,0.030071437358856],[0.043586850166321,-0.064357914030552,-0.016620444133878],[0.084093742072582,-0.00063799048075452,0.035879820585251]],[[-0.029212303459644,-0.058868039399385,-0.0049101505428553],[-0.03243312984705,0.019081875681877,0.015804262831807],[-0.010470479726791,0.021488448604941,0.022736720740795]],[[-0.029632579535246,-0.033293500542641,-0.010743453167379],[0.013154413551092,-0.054840125143528,-0.0051367627456784],[0.047960124909878,0.043020758777857,0.036434222012758]],[[0.010742655023932,-0.058556616306305,-0.030108902603388],[0.036460269242525,-0.073004156351089,-0.047583747655153],[-0.018469234928489,0.026547389104962,-0.025949416682124]],[[-0.051266368478537,-0.010863087140024,-0.010116536170244],[-0.050604052841663,-0.069088958203793,-0.025131545960903],[-0.036027379333973,-0.076354898512363,-0.016964677721262]],[[0.004427635576576,-0.026121124625206,-0.03692590072751],[0.026337685063481,0.042455658316612,-0.02274901419878],[0.06239427626133,0.014721363782883,-0.041312392801046]],[[0.02371827326715,0.021413050591946,0.064941473305225],[-0.07199615240097,0.033922515809536,-0.056614443659782],[-0.074257589876652,-0.037087552249432,-0.012399095110595]],[[-0.13711373507977,-0.030787337571383,0.037647109478712],[0.015049867331982,-0.015566192567348,-0.047090720385313],[0.04596421867609,0.0069549335166812,-0.039314325898886]],[[-0.02114618755877,-0.070323877036572,-0.0097177037969232],[0.022082725539804,-0.054278567433357,-0.079263389110565],[-0.070006720721722,-0.0079813115298748,-0.023352472111583]],[[0.011066077277064,-0.043357729911804,0.07905450463295],[0.057391181588173,0.02646860294044,-0.062395818531513],[0.0024100637529045,0.002688362961635,-0.044849779456854]],[[-0.068097062408924,-0.061523098498583,-0.057564198970795],[0.15856473147869,0.012509566731751,0.028014713898301],[0.033990602940321,-0.023308269679546,0.044249843806028]],[[0.10926171392202,0.029214352369308,0.0015778046799824],[0.031086482107639,-0.02535349316895,0.083788864314556],[0.014738659374416,-0.059686195105314,0.022490903735161]],[[0.025311272591352,-0.0086264368146658,0.07347559928894],[0.064639277756214,-0.035266496241093,0.0081785330548882],[-0.059446476399899,-0.030206054449081,-0.028085853904486]],[[-0.095760174095631,-0.0084666963666677,0.0045532998628914],[-0.054233286529779,0.065297573804855,0.032934296876192],[0.026257324963808,0.033675957471132,0.037969194352627]],[[-0.036846902221441,-0.04230609536171,0.025420220568776],[-0.10569678246975,-0.023455888032913,-0.0098791252821684],[0.023739065974951,0.040695074945688,0.042654190212488]],[[-0.076995961368084,0.03383269533515,-0.047837756574154],[-0.037174291908741,-0.058913629502058,-0.0059828250668943],[0.041913639754057,-0.010766007006168,0.048097722232342]],[[-0.038792487233877,-0.026020899415016,-0.009584104642272],[0.0011081534903497,-0.068664066493511,0.0033428349997848],[-0.013416835106909,-0.04370005056262,-0.053953684866428]],[[0.052590128034353,0.00020086432050448,-0.020182091742754],[0.0067733875475824,-0.062240712344646,-0.0018897792324424],[0.063356161117554,0.019158523529768,-0.068893775343895]],[[-0.020858323201537,-0.047758847475052,0.088208943605423],[0.069076776504517,0.081641152501106,0.075134813785553],[-0.00079500989522785,0.0060491729527712,-0.016749408096075]],[[-0.021813821047544,0.000384789891541,-0.019561689347029],[0.045174855738878,0.015356807969511,-0.03508585691452],[0.032436888664961,-0.06831830739975,0.01885998621583]],[[-0.0069051799364388,0.071609728038311,0.012239081785083],[0.033601000905037,0.0041984026320279,-0.010035301558673],[0.037203390151262,0.020221604034305,-0.014400783926249]],[[0.017979450523853,-0.034363210201263,-0.010839601047337],[0.053797010332346,-0.046885851770639,-0.01539814658463],[-0.053351227194071,-0.067904561758041,0.01019854657352]],[[-0.038224406540394,-0.034243702888489,0.056113287806511],[-0.033411707729101,-0.050462108105421,-0.011377213522792],[-0.014210348017514,-0.024278677999973,0.063210919499397]],[[-0.0039857062511146,-0.064035907387733,-0.011012827977538],[0.015840237960219,-0.02773111872375,0.063914075493813],[-0.0028867584187537,0.0213677380234,0.014672364108264]],[[-0.019264943897724,0.040670953691006,0.022388454526663],[0.014874290674925,-0.022673727944493,-0.059186182916164],[0.022536499425769,-0.012763344682753,-0.039285786449909]],[[0.016376780346036,-0.031742259860039,0.05136001855135],[-0.019683720543981,0.0051055196672678,-0.060120422393084],[-0.041136432439089,0.023858735337853,-0.018724791705608]],[[0.056547440588474,-0.0076692611910403,-0.022237505763769],[-0.01364687550813,-0.044113975018263,-0.0039596231654286],[-0.014763047918677,-0.058521941304207,-0.050749626010656]],[[0.012182762846351,-0.028724113479257,0.020310329273343],[-0.017032520845532,0.040506467223167,0.0070916297845542],[-0.094946719706059,-0.042903780937195,0.01157302968204]],[[0.054934117943048,0.060637600719929,0.048339325934649],[-0.024275591596961,-0.049738690257072,-0.10140033811331],[-0.044920206069946,0.021608110517263,0.0033911159262061]],[[-0.011699432507157,0.036099456250668,-0.031120853498578],[0.086674332618713,0.00045971435611136,0.028921689838171],[0.011599493212998,-0.0017257948638871,0.00087820208864287]],[[-0.024399550631642,0.023503867909312,-0.05524580553174],[0.044424224644899,0.035590119659901,-0.023444190621376],[-0.052072141319513,0.066045112907887,0.0073527512140572]],[[-0.041971545666456,0.021967358887196,0.031993202865124],[-0.030415501445532,0.029518608003855,0.031940761953592],[0.020916240289807,0.015095238573849,0.026964502409101]],[[0.0067958431318402,0.046398106962442,0.0069427443668246],[0.028289340436459,0.078810423612595,0.017682051286101],[0.001252586604096,-0.044045373797417,0.0016730779316276]],[[0.0097085339948535,-0.02832905203104,-0.042151980102062],[-0.02481210231781,0.03013501316309,0.023917881771922],[-0.062215533107519,0.068033039569855,-0.0078103742562234]],[[-0.068357326090336,0.011081567965448,-0.029001798480749],[-0.027533326297998,0.053987488150597,-0.010530164465308],[-0.058276928961277,0.022283753380179,0.0043555302545428]],[[0.0031898613087833,-0.056319199502468,-0.030485354363918],[0.015722848474979,0.0040654139593244,0.029302345588803],[0.036729481071234,0.032729115337133,0.034871060401201]],[[0.012814744375646,0.035565212368965,-0.0072589609771967],[-0.071859069168568,0.0094981910660863,0.035675391554832],[-0.030532449483871,-0.064586348831654,-0.040135964751244]],[[-0.03285575658083,0.01132841501385,-0.060121301561594],[0.11673574149609,-0.03504915907979,-0.024861540645361],[-0.013002346269786,-0.14585347473621,-0.10290357470512]],[[0.084496319293976,0.032234873622656,0.025423899292946],[0.066071458160877,-0.053816091269255,0.030466161668301],[0.024934086948633,-0.0064723291434348,-0.049461796879768]],[[0.0090459557250142,0.04454730078578,0.026237171143293],[0.060088403522968,0.023381045088172,-0.052813272923231],[-0.010850071907043,0.028871906921268,-0.028330489993095]],[[-0.03804948925972,0.00049737119115889,0.05110489577055],[0.050488840788603,-0.019999435171485,-0.020981790497899],[0.028027098625898,-0.093687862157822,0.019449189305305]],[[-0.025977930054069,0.00052673433674499,0.0036976502742618],[-0.018854100257158,0.03674903512001,0.014167658053339],[-0.025477822870016,0.01433421485126,-0.03522215783596]],[[0.021113423630595,-0.0090421363711357,0.058733392506838],[0.04467211291194,-0.0064696902409196,0.023463770747185],[0.040223270654678,0.014658147469163,-0.011962747201324]],[[0.015297330915928,0.0062707285396755,-0.02288861759007],[-0.089738130569458,-0.093354478478432,-0.024385957047343],[-0.025694807991385,-7.0765963755548e-05,0.063748344779015]],[[-0.02446223795414,-0.03161296248436,0.019739096984267],[-0.071561716496944,-0.026607107371092,0.032688479870558],[-0.04092625156045,-0.028589587658644,-0.023307604715228]],[[0.0071060778573155,0.0086507648229599,0.034566041082144],[-0.013064163736999,-0.0643420368433,-0.022686161100864],[0.089881800115108,0.043466195464134,0.011391616426408]],[[-0.0084649827331305,-0.0049315788783133,0.036102429032326],[-0.0078325532376766,-0.0053499964997172,-0.021778784692287],[-0.032572373747826,-0.01750099286437,0.066138096153736]],[[0.039298038929701,-0.019883370026946,0.061720136553049],[0.016175666823983,-0.0094151878729463,-0.025697050616145],[-0.042763836681843,0.02358871512115,0.076055943965912]],[[0.0035325684584677,-0.040170203894377,-0.034327238798141],[-0.073903515934944,-0.027518888935447,-0.010217037983239],[-0.020749878138304,0.014266004785895,-0.0064703789539635]],[[-0.03114509396255,0.042954534292221,0.064923271536827],[0.042955886572599,-0.073721848428249,-0.0043868869543076],[0.0072448463179171,0.073138132691383,-0.013328629545867]],[[-0.031976606696844,-0.025859337300062,0.01625706627965],[-0.047257050871849,-0.03573165461421,0.013385744765401],[-0.016999661922455,-0.0807179287076,-0.046727206557989]],[[-0.067832782864571,0.13708950579166,-0.037324462085962],[-0.045554503798485,0.019617415964603,-0.019074631854892],[0.032529454678297,0.016815923154354,-0.027750371024013]],[[0.0078679537400603,-0.034789215773344,0.031732264906168],[-0.026399685069919,-0.052890621125698,-0.0509241707623],[0.031332921236753,0.10196094959974,0.0015732879983261]],[[-0.0077095231972635,-0.0015661031939089,0.053090542554855],[0.025085171684623,-0.02594968304038,0.05269418284297],[0.028050150722265,-0.01524904742837,0.059237346053123]],[[-0.0078079095110297,-0.011623315513134,-0.095226526260376],[-0.087521947920322,-0.0556327290833,0.011533097364008],[0.05457641556859,-0.036177821457386,-0.016161277890205]],[[0.037219669669867,0.05481731146574,0.050511565059423],[0.019797299057245,-0.0092695746570826,-0.025111801922321],[-0.0063774711452425,-0.081726081669331,-0.047055449336767]],[[0.085428208112717,0.053116232156754,0.015737427398562],[-0.03035506978631,-0.073959402740002,0.070214755833149],[0.07619409263134,-0.082480736076832,0.017661541700363]],[[-0.0032285291235894,0.056304380297661,0.0097808064892888],[-0.0021703687962145,0.00026126968441531,0.024237921461463],[-0.08614706248045,0.045069433748722,0.024625571444631]],[[-0.071535959839821,-0.010146323591471,0.077244535088539],[0.0052316389046609,-0.012943282723427,0.055770225822926],[0.011982598342001,-0.034195259213448,0.038576077669859]],[[0.031481064856052,0.011616027913988,-0.050171356648207],[0.097430132329464,0.10075000673532,0.040982201695442],[-0.034225076436996,-0.073883734643459,0.024557130411267]],[[0.080879643559456,0.093278937041759,-0.024500930681825],[0.0012573330895975,0.00074221537215635,0.080843523144722],[-0.01836546882987,0.0015636302996427,0.017833646386862]],[[0.059971854090691,-0.022657202556729,0.049340061843395],[0.005633195862174,-0.013739313930273,0.093187116086483],[-0.0010912561556324,0.048399288207293,-0.0015223993686959]],[[0.032468795776367,0.093656621873379,0.017431868240237],[0.031916540116072,0.033031158149242,-0.081646054983139],[0.064219020307064,-0.049305655062199,-0.031181799247861]],[[0.021725978702307,-7.2107119194698e-05,0.032511543482542],[0.024160873144865,0.028017371892929,0.059233535081148],[0.090216860175133,0.043187670409679,0.029681276530027]],[[-0.017977047711611,0.036883514374495,-0.099426202476025],[-0.020095735788345,-0.010610725730658,-0.056277591735125],[0.054269548505545,-0.022963743656874,-0.094452083110809]],[[0.040208034217358,0.0099357077851892,0.073919683694839],[-0.021069630980492,0.053521886467934,0.032024629414082],[-0.019383007660508,0.082276076078415,-0.081152953207493]],[[0.026228256523609,0.038968697190285,0.011423765681684],[0.01910094358027,-0.014579886570573,0.015463086776435],[-0.018945723772049,-0.015423898585141,-0.022412311285734]],[[0.015707036480308,-0.080055370926857,-0.012608800083399],[-0.063186712563038,0.033321175724268,-0.058574739843607],[-0.033198807388544,0.070827312767506,0.0010825514327735]],[[0.1111952662468,0.072936944663525,0.036585811525583],[0.089755296707153,-0.061685126274824,-0.076412208378315],[0.046411857008934,-0.013857436366379,0.029276683926582]],[[-0.029828997328877,0.062663860619068,0.052349425852299],[0.022642517462373,0.17573055624962,0.0066686873324215],[-0.014793774113059,-0.0034078618045896,0.012128607369959]],[[0.021146651357412,0.014526562765241,0.011898207478225],[0.016323117539287,0.02754987962544,0.048106353729963],[0.0089959474280477,0.0052646198309958,0.033574797213078]],[[-0.034510672092438,0.10692834854126,-0.011834995821118],[-0.028711622580886,0.090707905590534,-0.070459075272083],[-0.075272358953953,0.021181927993894,0.012471812777221]],[[0.1167012155056,-0.0050824829377234,0.14090193808079],[-0.026139026507735,0.047768656164408,0.062219172716141],[-0.0081200245767832,0.059652101248503,0.00048584619071335]],[[0.10132462531328,0.065551280975342,-0.071943372488022],[0.028279911726713,-0.046743609011173,-0.055199723690748],[0.02334058098495,-0.020519087091088,-0.056709222495556]],[[0.055771913379431,0.066422834992409,-0.040211863815784],[-0.039091192185879,0.045142952352762,-0.050023660063744],[-0.083286121487617,0.031025899574161,0.033397853374481]],[[0.058005057275295,-0.066121086478233,0.018626885488629],[-0.070996947586536,0.047638326883316,-0.0022191544994712],[0.046682223677635,0.010096788406372,-0.030972080305219]],[[-0.0093820886686444,-0.05427934601903,0.00095197919290513],[0.00012885770411231,0.0083516044542193,0.077694155275822],[0.046401042491198,0.0026652573142201,-0.050042636692524]],[[0.018241019919515,0.017851792275906,0.066852979362011],[-0.043337032198906,-0.0010532176820561,0.067070998251438],[0.052725117653608,0.0023676012642682,0.062341921031475]],[[0.0095037911087275,0.034040287137032,0.032780829817057],[-0.023560544475913,0.062017079442739,-0.061757486313581],[-0.034095238894224,0.09527613222599,-0.046097066253424]],[[0.030968753620982,0.075162656605244,-0.044949315488338],[0.014011655002832,-0.017617093399167,-0.034654024988413],[0.061814356595278,0.054065898060799,-0.1088310033083]],[[-0.012624244205654,-0.0099178710952401,0.026180008426309],[0.051667992025614,0.05111175775528,-0.01779299043119],[0.035892877727747,-0.030513495206833,0.05277456343174]],[[0.070755526423454,-0.0025535095483065,0.045909114181995],[0.017756724730134,0.013836848549545,0.012860516086221],[-0.042613014578819,-0.040913075208664,-0.012962796725333]],[[0.072029925882816,-0.10718131810427,0.051877591758966],[0.013526005670428,-0.046809501945972,0.032402530312538],[-0.069312952458858,-0.09079348295927,0.021658787503839]],[[-0.017058646306396,0.011504119262099,0.044775649905205],[0.16936632990837,-0.0079972259700298,0.054251477122307],[0.034484621137381,0.030346686020494,-0.099529884755611]],[[-0.016964539885521,0.023093638941646,0.043964389711618],[0.021251726895571,-0.027217045426369,0.020140409469604],[0.10596095025539,-0.076666064560413,-0.067202061414719]],[[0.1144697740674,-0.017158763483167,-0.0026209831703454],[0.053339459002018,-0.076126672327518,-0.00064327946165577],[0.0025709308683872,0.0027515657711774,0.092350237071514]],[[0.014807909727097,0.025576585903764,0.068720296025276],[-0.074055224657059,0.0046375975944102,0.078236289322376],[-0.021037178114057,-0.12658669054508,-0.0077917547896504]],[[0.0012311914470047,-0.068082869052887,0.053242743015289],[0.0007705322932452,0.037621714174747,-0.06556474417448],[-0.12654174864292,0.08330687135458,-0.0455063842237]],[[0.032039746642113,0.079899974167347,-0.052101671695709],[0.022864948958158,0.00027118250727654,-0.031527325510979],[-0.013513663783669,0.034156400710344,0.019964808598161]],[[0.032741837203503,0.029539905488491,-0.012865690514445],[-0.033004868775606,0.061679873615503,-0.0057359985075891],[0.010275768116117,0.022711949422956,0.033337783068419]],[[0.086603969335556,-0.031423144042492,-0.057245824486017],[0.028086686506867,-0.022091440856457,0.047428674995899],[0.031379785388708,0.0072050476446748,0.042980123311281]],[[0.031211111694574,-0.025825645774603,-0.037486717104912],[-0.037490483373404,0.011910342611372,0.00058399175759405],[-0.058211393654346,-0.024482764303684,-0.0354213565588]],[[0.076285906136036,0.036109630018473,0.024473531171679],[-0.043028227984905,0.011314737610519,0.0056283865123987],[0.010312966071069,0.024497443810105,0.052858453243971]],[[-0.020959416404366,-0.029577886685729,0.023795790970325],[0.071664996445179,0.0046233586035669,0.017109887674451],[-0.011394189670682,-0.11139698326588,-0.057087913155556]],[[-0.067418366670609,-0.057403463870287,0.034350514411926],[-0.026804186403751,-0.019027600064874,-0.01766144298017],[-0.0081140575930476,0.073567323386669,-0.039079383015633]],[[0.00069037062348798,0.093632265925407,0.0080674942582846],[0.042303115129471,0.030820190906525,-0.0030832877382636],[0.017644887790084,0.022490656003356,0.017695870250463]],[[0.040588177740574,0.003227541455999,0.020616959780455],[0.019946662709117,-0.043423768132925,0.024899119511247],[0.0086703924462199,0.021636305376887,0.15992772579193]],[[-0.012062050402164,0.022051546722651,-0.019201964139938],[0.061254266649485,0.070694893598557,-0.072115160524845],[-0.015220776200294,3.1851210223977e-05,-0.073334380984306]],[[-0.054742690175772,0.082854844629765,0.016785429790616],[0.01656936481595,0.015689028427005,-0.01301983371377],[-0.01726583763957,-0.026946492493153,-0.0058784852735698]],[[0.060850348323584,-0.068486548960209,0.028571488335729],[-0.062916375696659,-0.088982917368412,0.081775970757008],[-0.069894962012768,0.057979632169008,0.092712506651878]],[[0.051591567695141,-0.00026518292725086,-0.015897246077657],[0.060524243861437,0.064206376671791,0.027949906885624],[0.020458351820707,-0.032202031463385,-0.040844634175301]],[[0.091908596456051,0.025860138237476,0.021920207887888],[-0.0079388134181499,-0.027335567399859,-0.015710646286607],[-0.017862420529127,0.009541692212224,-0.0065628685988486]],[[-0.073113553225994,-0.033721510320902,-0.019494270905852],[-0.029064824804664,-0.045822203159332,0.025269286707044],[-0.043614219874144,0.020231133326888,-0.0906782746315]],[[-0.0041555967181921,0.028217835351825,-0.1216533780098],[-0.035511542111635,0.065029963850975,-0.020003056153655],[-0.019973592832685,-0.032104533165693,-0.045466613024473]],[[0.047586191445589,-0.00089623167878017,-0.0013739739079028],[-0.001537086092867,0.024588230997324,0.071258559823036],[0.014911621809006,0.034729156643152,0.066253952682018]],[[-0.027034178376198,-0.0198959633708,0.022982640191913],[0.014642072841525,0.031299948692322,0.06841691583395],[-0.0048762559890747,0.025537379086018,0.023255376145244]],[[-0.044834405183792,0.099159851670265,-0.034777536988258],[-0.025486312806606,-0.019255945459008,-0.011799939908087],[0.015103492885828,-0.0022499572951347,-0.049792423844337]],[[-0.0022208886221051,0.057255536317825,-0.069728635251522],[0.028134729713202,0.0021581954788417,-0.039188113063574],[0.06021374091506,0.013386667706072,0.025954823940992]],[[0.020892800763249,-0.070180758833885,-0.052516222000122],[0.03817131370306,0.049571424722672,0.0034778576809913],[-0.019588679075241,-0.046882051974535,0.025870887562633]],[[-0.00038313757977448,-0.046060249209404,0.043101485818624],[-0.044708073139191,-0.036850322037935,-0.017124300822616],[-0.041684359312057,-0.039251014590263,0.053158193826675]],[[0.042756240814924,0.03626636788249,-0.017909172922373],[0.0092406868934631,0.058367643505335,0.059445258229971],[-0.0098963351920247,0.02740890905261,0.042182665318251]],[[0.013079216703773,0.016452925279737,-0.020374244078994],[0.018865128979087,0.03754897415638,-0.01922420784831],[-0.045004416257143,-0.081914819777012,0.014290581457317]],[[-0.026682889088988,-0.039092041552067,0.051154412329197],[-0.018948741257191,0.089073747396469,0.02786005474627],[-0.012181448750198,0.0060073188506067,0.0052576512098312]]],[[[0.017640324309468,-0.0044413949362934,-0.070816747844219],[0.0041721509769559,0.091872215270996,-0.025194380432367],[-0.039421144872904,0.056303225457668,-0.12708796560764]],[[-0.021830532699823,-0.084027864038944,-0.24637489020824],[0.067531928420067,0.13943545520306,0.087438873946667],[-0.021095998585224,-0.040499780327082,-0.040735602378845]],[[-0.040687035769224,0.096531949937344,0.13231483101845],[0.081515945494175,0.069278754293919,0.00091280433116481],[0.099926881492138,0.022743159905076,-0.042457651346922]],[[0.036794688552618,0.00066605082247406,-0.055478893220425],[-0.055202651768923,-0.016355341300368,-0.0777418166399],[-0.07632078230381,-0.042398691177368,-0.060680419206619]],[[-0.081120766699314,0.089676409959793,0.056022044271231],[-0.1034502312541,0.0081902556121349,0.21231870353222],[-0.064923815429211,0.074553705751896,0.062747567892075]],[[0.028138473629951,-0.07377003133297,-0.13357576727867],[-0.036222286522388,0.019246397539973,0.0100760422647],[0.23037537932396,0.058872494846582,-0.046617463231087]],[[0.084498047828674,-0.050502452999353,-0.0081157945096493],[-0.086837574839592,0.071564450860023,0.11691145598888],[-0.02229524217546,0.017304021865129,0.047654218971729]],[[0.0060801529325545,-0.095662996172905,-0.088583767414093],[0.080467753112316,0.15223775804043,0.073594272136688],[0.085220858454704,0.050670396536589,0.007022256962955]],[[-0.038228120654821,-0.093904785811901,-0.083963580429554],[0.060669098049402,0.0058584553189576,-0.13993842899799],[-0.070885702967644,0.012648044154048,0.019358141347766]],[[0.0086129670962691,0.01702325232327,-0.030086990445852],[-0.092177607119083,0.030259078368545,0.020728502422571],[0.031985875219107,-0.046859864145517,0.13113659620285]],[[0.055309884250164,0.0060336007736623,0.027867998927832],[-0.059571653604507,-0.06957696378231,0.12965126335621],[-0.032749772071838,0.015234497375786,0.0010437567252666]],[[0.049584295600653,0.069571197032928,0.043717630207539],[0.11891974508762,0.068314790725708,-0.075344562530518],[-0.054929170757532,-0.038883581757545,-0.13655990362167]],[[-0.023987444117665,0.015120825730264,0.0046641635708511],[-0.051098223775625,-0.070757508277893,-0.0044671515934169],[0.040300730615854,-0.071311138570309,-0.030168106779456]],[[0.11078970134258,0.011259602382779,-0.030293984338641],[0.017683850601315,-0.052246455103159,-0.05041504278779],[-0.091767691075802,-0.020399887114763,-0.00038242639857344]],[[0.041905906051397,0.047599796205759,-0.085646852850914],[-0.049228362739086,0.03438751026988,-0.075548008084297],[0.034083388745785,-0.0824069455266,-0.10206019878387]],[[-0.10064980387688,0.073784239590168,0.12281912565231],[-0.0065904520452023,0.097868084907532,0.055370844900608],[0.049603655934334,-0.0013008445966989,-0.06458505243063]],[[0.11668439954519,-0.08002857118845,-0.20603521168232],[0.047395899891853,0.019292073324323,0.085468783974648],[-0.069973692297935,-0.081654280424118,-0.086814112961292]],[[0.043527886271477,0.0202008318156,-0.23400504887104],[-0.070029683411121,0.10529480874538,0.085255511105061],[-0.054239384829998,-0.19876381754875,-0.098205327987671]],[[-0.019756047055125,-0.090345449745655,-0.061602536588907],[-0.028230359777808,0.06335362046957,0.015440951101482],[0.013337531127036,-0.12418480962515,0.089305862784386]],[[-0.022675268352032,0.0095002865418792,-0.078179351985455],[-0.0080823665484786,0.1595099568367,-0.053798615932465],[0.040547259151936,0.088440500199795,0.23742187023163]],[[-0.10809399932623,-0.13045500218868,-0.055684849619865],[-0.044876273721457,-0.088549934327602,-0.08430977165699],[0.25718414783478,0.028583463281393,-0.010139980353415]],[[0.016950787976384,0.0091289803385735,0.16507099568844],[0.13666209578514,0.16257174313068,-0.045364111661911],[0.036678794771433,-0.040905084460974,0.049283731728792]],[[-0.071906186640263,0.10839094221592,0.15257124602795],[-0.086779370903969,-0.19834643602371,-0.104048833251],[0.017615126445889,-0.053811598569155,-0.03070336394012]],[[0.074289798736572,-0.047524310648441,-0.042452748864889],[-0.1318836659193,0.028690915554762,-0.06262993067503],[-0.077931329607964,-0.059172861278057,-0.0021975294221193]],[[0.16173510253429,0.090842358767986,-0.081506110727787],[0.05999469384551,0.041910238564014,-0.058511845767498],[0.10723527520895,-0.011675666086376,-0.091375306248665]],[[0.043388169258833,-0.011720207519829,-0.0015032534720376],[0.029211327433586,0.00908078905195,-0.011431423947215],[0.069409549236298,-0.10551539063454,-0.032281640917063]],[[-0.010286844335496,0.00039528484921902,-0.033631686121225],[0.062051247805357,0.10164258629084,0.061623748391867],[-0.076444528996944,-0.045964043587446,-0.0059774583205581]],[[-0.071568466722965,-0.1090832054615,0.017802624031901],[-0.0094629041850567,-0.033499829471111,0.013109171763062],[-0.035827342420816,0.010218188166618,0.089026220142841]],[[-0.036621935665607,-0.18651881814003,-0.11990924179554],[-0.030066978186369,-0.0503542535007,0.14323271811008],[0.16054593026638,-0.025092696771026,-0.013499667868018]],[[-0.066729225218296,-0.1322278380394,0.063917055726051],[-0.036437276750803,0.0469382815063,-0.017666568979621],[-0.033555887639523,0.10594388842583,-0.033088408410549]],[[-0.019851306453347,0.085618086159229,0.017133692279458],[-0.021924085915089,0.00056239106925204,-0.098492048680782],[-0.023288397118449,0.076449625194073,0.17276231944561]],[[-0.024781173095107,-0.071726739406586,0.042714770883322],[-0.13144814968109,-0.039272259920835,0.020272729918361],[0.061397481709719,0.18770244717598,0.12386734783649]],[[0.097752340137959,0.015545612201095,-0.19064316153526],[-0.035889908671379,-0.055085707455873,-0.014535269699991],[0.096726924180984,0.10561253130436,-0.0087579842656851]],[[0.11945329606533,-0.034983474761248,0.028179068118334],[0.020842997357249,0.01807308010757,-0.15532159805298],[0.081929504871368,-0.060258913785219,0.010606460273266]],[[-0.094862267374992,-0.12640985846519,-0.16874217987061],[0.0085478341206908,0.010421355254948,-0.053392879664898],[-0.071077659726143,-0.063796646893024,-0.11781318485737]],[[0.045666504651308,0.15042677521706,-0.013236812315881],[0.021527202799916,0.026582485064864,0.013738989830017],[0.0015514877159148,-0.070460706949234,-0.10675040632486]],[[-0.046210836619139,-0.10634515434504,-0.20641984045506],[0.010618225671351,0.020752642303705,0.081377446651459],[-0.023137200623751,-0.044664818793535,-0.12615719437599]],[[0.036169268190861,0.063157983124256,0.03059620782733],[0.0027591821271926,0.032378599047661,0.14001457393169],[0.094458684325218,0.03663769364357,0.01011704094708]],[[-0.063022024929523,-0.019790787249804,-0.087998874485493],[-0.16506737470627,-0.033702418208122,0.045880194753408],[-0.057637970894575,-0.044919095933437,0.027568114921451]],[[-0.082706615328789,0.15990996360779,0.18214365839958],[0.0017192995874211,0.17818063497543,0.072959519922733],[-0.13360235095024,-0.10419895499945,-0.098035782575607]],[[0.041902925819159,-0.023853231221437,-0.082901500165462],[-0.087235979735851,0.038618233054876,0.1690129339695],[0.14811627566814,0.038194380700588,-0.093338787555695]],[[-0.034062158316374,-0.056343130767345,-0.030851200222969],[-0.12388044595718,-0.13149909675121,0.051038857549429],[0.0393943823874,-0.0028714882209897,0.029845137149096]],[[-0.059256564825773,-0.064663909375668,-0.029191363602877],[-0.00073158321902156,-0.00021753276814707,-0.025220971554518],[0.00046626210678369,-0.03158662840724,-0.081957250833511]],[[-0.038927890360355,-0.020733639597893,-0.1185956671834],[-0.035672210156918,0.069284878671169,-0.021369708701968],[-0.022708613425493,-0.054529346525669,-0.090764418244362]],[[0.056212075054646,0.13437759876251,0.10949540883303],[-0.026966065168381,0.055223371833563,0.080787278711796],[0.0035015158355236,0.064666464924812,0.037688251584768]],[[0.052227817475796,0.038567401468754,0.027784870937467],[0.013497557491064,0.10939773917198,0.072287008166313],[0.0092540802434087,-0.004442451056093,-0.03650663793087]],[[-0.036193430423737,-0.027038402855396,-0.0042968820780516],[-0.091794811189175,0.030727049335837,-0.049148231744766],[0.070822507143021,0.037185586988926,-0.027665708214045]],[[0.29688739776611,-0.090827889740467,-0.11288814991713],[-0.083091549575329,-0.096578896045685,0.02501124329865],[0.016609502956271,-0.012174131348729,0.073989450931549]],[[0.069236740469933,0.16439850628376,0.19534339010715],[0.0036148126237094,0.027177393436432,-0.25936925411224],[-0.027363277971745,-0.011158246546984,0.029261553660035]],[[-0.048851478844881,-0.15073871612549,-0.090692073106766],[-0.11563587188721,-0.08962969481945,-0.083857096731663],[-0.010685360990465,0.057901058346033,-0.035619579255581]],[[0.036541420966387,0.0012843492440879,-0.036530509591103],[0.069113150238991,0.026137746870518,0.03945654630661],[-0.049277696758509,0.092030830681324,0.035422071814537]],[[-0.041146323084831,0.041483551263809,0.088174916803837],[0.092727459967136,0.10162981599569,0.10576882213354],[-0.10243240743876,0.017687302082777,0.0026965527795255]],[[-0.098340019583702,-0.0074651036411524,-0.075204819440842],[-0.047187458723783,0.010650875046849,0.0045100492425263],[-0.088921010494232,-0.01336901076138,-0.096909523010254]],[[0.029007824137807,-0.023251179605722,-0.093274556100368],[-0.0019775494001806,-0.016023783013225,-0.058086406439543],[0.04117089137435,-0.055754262953997,-0.067054629325867]],[[0.0088985916227102,-0.062368661165237,-0.056437503546476],[-0.029365940019488,-0.064807735383511,-0.18131841719151],[0.070586919784546,-0.015189163386822,0.040816500782967]],[[0.094856753945351,0.026946192607284,-0.00055992207489908],[0.022237984463573,-0.066127143800259,-0.034344851970673],[0.29302257299423,0.05694318190217,0.044819168746471]],[[-0.082446776330471,-0.058792944997549,-0.00071806873893365],[-0.16505153477192,-0.06799603998661,0.016743015497923],[0.11992687731981,0.06850516051054,0.12733961641788]],[[0.037287667393684,0.061915904283524,0.086297251284122],[-0.084537446498871,-0.043887220323086,-0.062937669456005],[0.015104561112821,-0.067137852311134,-0.071080006659031]],[[-0.19634048640728,-0.0070491936057806,-0.014644499868155],[-0.065983675420284,-0.061646047979593,-0.0014764585066587],[-0.085222281515598,0.0034238414373249,0.089035972952843]],[[-0.054159551858902,-0.045792240649462,-0.017535842955112],[0.02115536108613,-0.051249139010906,0.0060984799638391],[-0.042139429599047,-0.19682165980339,-0.13734343647957]],[[-0.10582212358713,0.047520212829113,-0.012678912840784],[-0.088056869804859,0.056023564189672,-0.056485436856747],[-0.13875760138035,-0.093978904187679,0.048129633069038]],[[-0.1442192196846,-0.1231903731823,-0.14696694910526],[-0.023575518280268,-0.043963432312012,-0.02340760268271],[-0.1700983196497,-0.035183303058147,0.042827367782593]],[[0.0044304491020739,0.043894723057747,0.1137426123023],[0.042857207357883,0.017396416515112,-0.04360768571496],[-0.0050976923666894,-0.077652215957642,0.11195189505816]],[[0.055662050843239,-0.0622903034091,0.006802795920521],[0.011627956293523,0.14068040251732,-0.0048203025944531],[0.024345692247152,0.091095492243767,-0.0080235367640853]],[[0.0073491376824677,0.025829801335931,0.03790221363306],[-0.058535795658827,-0.039044998586178,0.062484335154295],[-0.07605916261673,0.037180442363024,0.060172714293003]],[[0.052197281271219,0.02534768357873,0.017033774405718],[0.025039441883564,-0.10146671533585,0.034773088991642],[0.006136286072433,0.016781706362963,-0.10013802349567]],[[0.08755062520504,0.095846079289913,0.011302136816084],[-0.010359056293964,-0.094501487910748,0.0084066372364759],[-0.033158637583256,-0.043052151799202,0.031219029799104]],[[0.13068489730358,0.059049759060144,-0.056080158799887],[0.00068269786424935,-0.0047973315231502,-0.049266420304775],[-0.059238635003567,-0.0084191029891372,-0.061381347477436]],[[0.024621048942208,0.07567036896944,-0.095481604337692],[0.070058733224869,0.001530323526822,-0.017604123800993],[-0.029970973730087,-0.068885780870914,-0.036046616733074]],[[-0.046014849096537,-0.0060368441045284,0.14834794402122],[0.00062142394017428,0.0053664017468691,0.06404647231102],[-0.087510228157043,0.042082902044058,0.053020730614662]],[[-0.26694387197495,-0.081357717514038,0.024695562198758],[0.22099314630032,0.076944001019001,-0.13465702533722],[-0.091354385018349,-0.010889227502048,0.19806818664074]],[[-0.11245641112328,-0.038732796907425,0.013915735296905],[-0.060766573995352,0.053996827453375,-0.043938934803009],[0.15101538598537,0.090187318623066,-0.012770871631801]],[[-0.13939772546291,-0.012577061541378,0.037517465651035],[-0.077098317444324,-0.0080825863406062,-0.17685884237289],[-0.055528115481138,0.014859068207443,0.074818044900894]],[[0.014374475926161,-0.057028215378523,0.045740444213152],[0.065973103046417,0.069978035986423,-0.023995833471417],[0.0044670673087239,0.14765188097954,0.035570241510868]],[[-0.0068206754513085,0.029335495084524,0.036076545715332],[-0.016580149531364,0.033863805234432,-0.073848359286785],[-0.11087194085121,-0.06049969419837,-0.11172236502171]],[[-0.027832202613354,0.064578719437122,-0.022677956148982],[-0.005199474748224,-0.028438052162528,0.07604992389679],[0.015676878392696,0.016329763457179,0.052927121520042]],[[-0.18130491673946,-0.089509695768356,0.18181149661541],[0.047302003949881,0.020187612622976,-0.12489879876375],[0.094549410045147,-0.04704325273633,-0.0041888244450092]],[[-0.023715704679489,-0.035726260393858,0.034143023192883],[-0.099605157971382,-0.10338092595339,-0.049672123044729],[-0.078113406896591,0.033202484250069,-0.010719675570726]],[[-0.066998384892941,-0.10383553802967,0.079637832939625],[0.15663638710976,0.080438509583473,-0.0056626726873219],[-0.15285524725914,-0.046052675694227,0.02583989687264]],[[-0.0036319706123322,-0.075925596058369,-0.071077227592468],[-0.12054555863142,-0.024854224175215,0.00072847900446504],[-0.035090610384941,-0.041155625134706,-0.017418267205358]],[[-0.034911006689072,-0.12658117711544,-0.032177355140448],[-0.11564855277538,0.016487723216414,0.052852906286716],[-0.040342640131712,-0.10359673202038,-0.033258803188801]],[[0.014604999683797,0.11371444165707,-0.033241406083107],[-0.044643674045801,0.0043792892247438,-0.034579925239086],[-0.058510236442089,-0.011506851762533,-0.14664059877396]],[[-0.08208442479372,-0.074859254062176,-0.15918995440006],[0.098475486040115,0.02835289388895,0.11622807383537],[0.035250287503004,-0.037806026637554,-0.022422825917602]],[[0.025323273614049,-0.016686139628291,-0.030943224206567],[0.078787289559841,0.014184338971972,0.07971166074276],[-0.062124032527208,-0.021546702831984,-0.11472027003765]],[[0.02509868517518,-0.0077014518901706,-0.14943689107895],[0.10810696333647,-0.083234950900078,0.021161170676351],[-0.052599783986807,-0.0089702596887946,0.066263563930988]],[[0.086597271263599,0.046744253486395,0.011024232022464],[-0.13400961458683,-0.072416730225086,-0.041635293513536],[0.12151543051004,0.033819656819105,0.049967732280493]],[[-0.011554761789739,0.043395288288593,0.047617521136999],[0.13671998679638,-0.045202076435089,0.026616515591741],[-0.09871219098568,-0.18110217154026,-0.068583451211452]],[[0.048878096044064,0.045931298285723,0.086115047335625],[0.10969104617834,0.021911256015301,-0.073998391628265],[0.09336020052433,-0.1188016012311,-0.021584011614323]],[[0.019051089882851,-0.055116631090641,0.0064481305889785],[0.0045362086966634,-0.015879027545452,0.08179235458374],[-0.0048810127191246,-0.09829880297184,-0.020311513915658]],[[0.022385310381651,0.0042918561957777,-0.076420910656452],[-0.041053466498852,-0.080733649432659,-0.190130636096],[0.029538240283728,-0.053278122097254,-0.097360268235207]],[[0.067533098161221,-0.0084271272644401,-0.22028559446335],[-0.07913812994957,-0.008433859795332,0.15159545838833],[0.099880069494247,0.069693103432655,0.09242045879364]],[[-0.01455453876406,-0.058962289243937,-0.11500796675682],[-0.056588415056467,-0.0066774045117199,-0.0086022205650806],[0.059950854629278,-0.0043650642037392,0.084408268332481]],[[0.027988256886601,-0.025339167565107,0.089114710688591],[-0.033578813076019,-0.0799845084548,0.065088868141174],[0.12997613847256,-0.0051665687933564,-0.083819717168808]],[[0.025733700022101,0.075642943382263,-0.0022382100578398],[-0.032956220209599,-0.059139274060726,-0.017141973599792],[0.045832935720682,0.014094093814492,-0.045062098652124]],[[-0.021578527987003,0.044282097369432,0.11596358567476],[0.19483616948128,-0.057482846081257,-0.056657891720533],[0.056111734360456,0.093882963061333,0.13105995953083]],[[0.078234955668449,0.025577161461115,0.014871646650136],[0.15400628745556,0.053613215684891,0.074430115520954],[-0.01110143493861,0.10765778273344,-0.015829985961318]],[[-0.0076952739618719,-0.046172201633453,0.016021372750401],[0.0012707099085674,0.004734137095511,0.012181933969259],[-0.1611505150795,-0.08561810106039,-0.092576071619987]],[[-0.019990991801023,0.0053592417389154,-0.019827218726277],[-0.060756530612707,0.016754474490881,0.064505591988564],[-0.020015614107251,-0.036775816231966,-0.12549148499966]],[[-0.017351347953081,-0.077376611530781,0.040494777262211],[0.02268292941153,-0.076613262295723,0.076898254454136],[-0.06406457722187,-0.023879883810878,-0.086943797767162]],[[0.0090390862897038,-0.040487952530384,-0.080069497227669],[0.098446868360043,0.0017723131459206,0.15852810442448],[-0.11190793663263,-0.042782563716173,-0.18417793512344]],[[-0.050923999398947,-0.018063675612211,0.070506647229195],[-0.034764282405376,-0.124577075243,0.040640495717525],[-0.13334210216999,-0.063340306282043,-0.032359197735786]],[[0.080855093896389,0.059297859668732,-0.00086408597417176],[0.050453048199415,-0.089385345578194,0.12173856049776],[0.06241175532341,0.083131805062294,0.096992962062359]],[[-0.073244772851467,-0.0016125927213579,-0.038471572101116],[0.027987990528345,-0.01131431851536,-0.0079091871157289],[0.078696899116039,0.055638164281845,0.09285157173872]],[[-0.016942318528891,-0.13401220738888,-0.066327892243862],[-0.064275667071342,-0.088298320770264,0.071776308119297],[0.1218543201685,0.078581862151623,0.22485263645649]],[[0.048695936799049,-0.039652600884438,-0.18394576013088],[-0.03280908241868,-0.016847994178534,-0.018373586237431],[-0.0066843079403043,0.030231542885303,-0.054180521517992]],[[0.14120624959469,0.01160151977092,0.10491032153368],[0.070686586201191,-0.054697293788195,-0.06611429899931],[0.12963277101517,0.11899691820145,0.015395347028971]],[[-0.033261820673943,0.10600444674492,0.1741821616888],[0.01078487187624,-0.056212145835161,-0.060877043753862],[0.074567809700966,-0.10919468849897,0.037115328013897]],[[-0.11648081988096,0.039898611605167,-0.093178652226925],[0.02386862039566,0.012244974263012,0.032127402722836],[0.058213248848915,-0.10191921144724,-0.1854534894228]],[[-0.079945668578148,-0.0012814207002521,0.12463898211718],[-0.03395052626729,-0.074874982237816,-0.068731002509594],[0.045658443123102,0.07693737000227,-0.031192040070891]],[[0.07996828854084,-0.082608796656132,-0.012806189246476],[-0.085560739040375,-0.071419022977352,0.0024180319160223],[0.13638371229172,0.072163350880146,0.048259809613228]],[[-0.083762757480145,-0.12577621638775,-0.034549951553345],[-0.10139525681734,-0.16808764636517,-0.11295731365681],[-0.10882047563791,-0.13215850293636,-0.13481837511063]],[[0.044329758733511,0.11915472149849,-0.054316867142916],[0.045264396816492,0.030447410419583,-0.11519092321396],[-0.050943661481142,-0.11496933549643,-0.026853308081627]],[[0.091466844081879,0.12309151887894,0.094657756388187],[0.080684304237366,0.089701950550079,0.22857977449894],[-0.10247006267309,-0.05847941711545,-0.072494007647038]],[[-0.024984510615468,0.13935692608356,0.070471845567226],[-0.34666296839714,-0.099701337516308,0.26696100831032],[-0.033672887831926,-0.041538778692484,-0.034107692539692]],[[0.028128424659371,0.065216921269894,-0.065584950149059],[0.027280449867249,-0.033820651471615,-0.011108967475593],[-0.082099691033363,0.074232384562492,0.018850117921829]],[[0.046719647943974,0.06112863868475,0.10487702488899],[-0.0015460189897567,0.13119280338287,0.065185338258743],[-0.0055031985975802,-0.11437319219112,-0.13028129935265]],[[-0.041184831410646,0.050107859075069,0.047672763466835],[0.14967411756516,-0.07343577593565,3.3372030884493e-05],[0.1117654889822,0.034913446754217,0.097240313887596]],[[-0.062808036804199,0.0031440637540072,0.16790646314621],[0.0087027121335268,0.0065174237824976,-0.27730756998062],[-0.048268217593431,-0.0025691101327538,0.17555910348892]],[[-0.0060600624419749,0.021389193832874,0.18648192286491],[0.036798045039177,-0.036644246429205,-0.040427036583424],[-0.070309653878212,0.043008424341679,0.059735249727964]],[[0.082220740616322,0.18854165077209,0.11925591528416],[0.054229069501162,-0.0027101167943329,0.018755223602057],[-0.02449650131166,0.027436994016171,-0.044196642935276]],[[0.047536700963974,-0.0026800611522049,-0.11991932988167],[0.077030070126057,-0.029145902022719,-0.14928288757801],[0.040294427424669,0.036669701337814,0.1295041590929]],[[0.06557908654213,0.054947972297668,-0.01205710042268],[0.015492127276957,-0.020364293828607,0.00031987036345527],[0.13360613584518,0.037879925221205,-0.048018284142017]],[[-0.11847680807114,-0.059413034468889,0.0001554612244945],[-0.080225676298141,-0.044373843818903,-0.049596086144447],[-0.013918051496148,0.008964067324996,0.13398243486881]],[[-0.024852573871613,0.027135279029608,-0.034168545156717],[0.086888357996941,-0.021755823865533,0.077008686959743],[-0.093909434974194,-0.029087064787745,0.047113861888647]],[[0.023646516725421,0.016023691743612,0.088663026690483],[0.22905871272087,0.091578364372253,0.045267555862665],[0.0023222102317959,0.13227422535419,0.011009903624654]],[[0.032391592860222,0.10001049935818,-0.021609332412481],[-0.17456224560738,-0.021702151745558,-0.05820082873106],[-0.090316347777843,0.030239203944802,-0.036791764199734]],[[-0.11532174795866,0.00077907321974635,0.096460521221161],[-0.025934504345059,0.098253950476646,0.030464731156826],[0.020026311278343,0.13005772233009,-0.013660792261362]],[[0.086482167243958,0.057625740766525,0.19333782792091],[0.0454296246171,-0.10990007221699,-0.18623608350754],[-0.057680781930685,0.087822534143925,0.098368406295776]]],[[[-0.065547071397305,0.022963682189584,-0.10849054902792],[0.051371216773987,0.026063283905387,0.023973196744919],[-0.030699837952852,-0.058983489871025,0.02694002725184]],[[-0.075288072228432,-0.046448811888695,0.15317852795124],[0.036761976778507,0.067043252289295,0.10269695520401],[0.018389388918877,0.12006983160973,0.12338151037693]],[[0.091339886188507,0.074639499187469,-0.09765636920929],[0.012604017741978,0.036988440901041,0.087844125926495],[0.073492743074894,-0.0045933346264064,0.04250805079937]],[[-0.019831446930766,-0.052304849028587,-0.074771329760551],[-0.096416674554348,-0.08317593485117,-0.068924933671951],[-0.016128649935126,-0.038188565522432,-0.13680408895016]],[[0.3333834707737,0.23848153650761,0.16674707829952],[-0.16148197650909,-0.086233131587505,-0.053544029593468],[0.023463685065508,-0.033887386322021,0.10107753425837]],[[0.044874466955662,-0.06985879689455,-0.017468929290771],[0.081978254020214,-0.093286454677582,-0.04241681843996],[0.10053964704275,-0.066645696759224,0.21191762387753]],[[0.1735754609108,0.098599843680859,-0.006516148801893],[-0.19937939941883,-0.14568608999252,-0.013466666452587],[0.20038819313049,0.17550177872181,-0.047557435929775]],[[-0.14569917321205,-0.12469059228897,-0.025300730019808],[-0.10574521124363,0.15944720804691,0.25689291954041],[-0.21868278086185,-0.05192955583334,0.17278751730919]],[[-0.027378641068935,0.071383856236935,-0.068450249731541],[0.030669629573822,0.089861899614334,-0.17441296577454],[-0.099797688424587,0.074920199811459,0.12934333086014]],[[-0.01939426548779,-0.085924364626408,-0.14762178063393],[-0.05943588167429,-0.028950080275536,0.050692498683929],[0.021414121612906,-0.062606915831566,0.018364327028394]],[[0.028286311775446,0.094048090279102,-0.017426252365112],[-0.055061243474483,0.12046751379967,0.11219946295023],[0.15089066326618,0.16193981468678,0.26953855156898]],[[-0.043151870369911,-0.044613283127546,0.1949916779995],[0.018551768735051,-0.049215786159039,0.071952015161514],[0.16148367524147,0.058887306600809,-0.020888976752758]],[[0.065422683954239,0.027380898594856,-0.13037167489529],[0.067373961210251,0.1685231924057,0.041526671499014],[-0.073809787631035,-0.030999468639493,-0.0080388737842441]],[[-0.030719900503755,-0.16487443447113,-0.26944279670715],[-0.058421801775694,-0.15619565546513,-0.12185925245285],[0.093857184052467,0.19303797185421,0.17006260156631]],[[-0.061560984700918,0.0039307880215347,-0.093958973884583],[0.017000196501613,0.14251507818699,0.054938938468695],[-0.029783818870783,-0.082486771047115,-0.047323025763035]],[[0.15788768231869,-0.055572867393494,-0.12189246714115],[-0.032750532031059,0.057925432920456,-0.1675239354372],[0.17849844694138,-0.0064858691766858,-0.2512683570385]],[[0.0024093203246593,-0.32760715484619,-0.14783644676208],[-0.15243858098984,-0.10138711333275,0.075590096414089],[-0.11169787496328,-0.18679574131966,-0.19909660518169]],[[0.14146737754345,0.087070599198341,0.04114643484354],[0.10172116011381,0.18189489841461,0.18221588432789],[-0.13539227843285,-0.15277759730816,-0.043212965130806]],[[0.015664367005229,0.062934398651123,-0.013653779402375],[-0.09588123857975,0.047105427831411,0.069503292441368],[-0.18498419225216,-0.12735928595066,-0.026249961927533]],[[0.067573234438896,0.060252718627453,0.096629358828068],[-0.23563718795776,-0.12355855107307,0.14620099961758],[-0.12097841501236,-0.16617307066917,-0.0041420329362154]],[[0.035215031355619,0.057895302772522,0.06000180542469],[-0.094779051840305,-0.039145190268755,-0.11086612939835],[-0.16755332052708,0.022975726053119,0.17707024514675]],[[0.032152585685253,-0.066954612731934,-0.054498914629221],[0.04644513502717,-0.099143728613853,-0.14602211117744],[0.16070587933064,0.072584345936775,-0.03378576412797]],[[0.045926366001368,-0.020761828869581,-0.020038271322846],[-0.18753786385059,-0.063003972172737,-0.17399816215038],[-0.12877528369427,0.0087218638509512,0.061084646731615]],[[0.0060206511989236,-0.017173139378428,-0.089188143610954],[-0.16409818828106,-0.076987475156784,-0.054599232971668],[0.12513466179371,0.13470557332039,-0.012146872468293]],[[0.092655315995216,0.010977981612086,0.083938650786877],[-0.095476523041725,0.12610204517841,0.14379034936428],[-0.16305446624756,0.19385439157486,0.10518213361502]],[[0.015117873437703,-0.056097876280546,0.055306069552898],[-0.0091361301019788,-0.052451245486736,-0.076934993267059],[0.097288258373737,0.22553490102291,0.083651594817638]],[[0.048340927809477,-0.039941351860762,-0.0047733383253217],[-0.026780311018229,-0.029959056526423,-0.047741089016199],[0.22108821570873,0.076891012489796,0.082893878221512]],[[0.11634753644466,0.17557422816753,-0.030865913257003],[0.043398708105087,-0.20765507221222,-0.37785452604294],[0.0012733056209981,-0.054049395024776,-0.17192056775093]],[[-0.0037629983853549,-0.046058420091867,-0.021164612844586],[-0.0091567626222968,-0.16318592429161,0.02834328263998],[0.083848878741264,-0.013821532018483,-0.068297252058983]],[[0.014641826041043,0.10967525839806,-0.064067468047142],[-0.017836764454842,0.16786129772663,0.0026268891524523],[-0.10375069081783,-0.080743588507175,-0.17693711817265]],[[0.009025851264596,-0.040880776941776,0.046718407422304],[0.24714174866676,-0.014032600447536,-0.18520730733871],[0.032541006803513,-0.21632029116154,0.053144861012697]],[[-0.022933756932616,0.15369589626789,0.17060658335686],[-0.053238313645124,0.035761956125498,-0.036858730018139],[-0.16235177218914,-0.10346518456936,-0.10971725732088]],[[0.20893117785454,-0.14676338434219,-0.023427601903677],[0.013030409812927,-0.10479956865311,-0.039529453963041],[-0.047225285321474,-0.049641575664282,0.049959532916546]],[[0.08033512532711,0.026989601552486,-0.19759447872639],[0.0014153686352074,0.011243521235883,0.052550561726093],[-0.32188728451729,-0.27364218235016,-0.11406850069761]],[[-0.012931846082211,-0.09060987830162,-0.12447620928288],[-0.009841475635767,-0.085913486778736,-0.10505428165197],[0.11992873251438,-0.093221552670002,-0.15352426469326]],[[-0.078261345624924,0.12911286950111,0.10608629137278],[-0.15767827630043,-0.12108820676804,0.066931679844856],[0.045289050787687,0.14639323949814,0.11927846074104]],[[0.19343015551567,0.12153486162424,0.2540667951107],[-0.096362046897411,0.12972454726696,0.23049046099186],[0.064007915556431,0.055057696998119,0.1033735498786]],[[-0.062059842050076,-0.022437492385507,-0.0768036916852],[0.011613981798291,-0.043070908635855,-0.049888715147972],[-0.088739074766636,0.0025856466963887,0.30986964702606]],[[-0.20525228977203,-0.055319789797068,-0.17134130001068],[0.31736409664154,0.098393104970455,-0.19508588314056],[0.0032702831085771,0.02375009842217,-0.039049349725246]],[[0.24836660921574,-0.019816694781184,-0.072608403861523],[-0.11817160248756,-0.13478980958462,0.16549542546272],[-0.088404357433319,-0.067533731460571,0.050958622246981]],[[0.15851256251335,0.13368126749992,0.062783062458038],[0.20387054979801,0.066734850406647,-0.0065430589020252],[-0.040194064378738,0.027853036299348,0.020940629765391]],[[0.14183081686497,0.14747233688831,0.12825621664524],[-0.16021746397018,-0.071004249155521,-0.011903532780707],[-0.033021219074726,0.14446178078651,0.060438875108957]],[[-0.025247579440475,-0.044244274497032,-0.048562880605459],[-0.12143298238516,-0.21668343245983,-0.064916729927063],[0.031494088470936,-0.0010057357139885,0.070588871836662]],[[-0.02792102470994,-0.10593762248755,-0.056753505021334],[-0.035385448485613,0.10531385242939,0.058046072721481],[0.098283529281616,0.0084036197513342,0.054551105946302]],[[0.13518100976944,-0.062013737857342,0.062142573297024],[0.024505279958248,0.063950307667255,0.017918288707733],[0.072921968996525,-0.010943994857371,0.021349966526031]],[[0.0831628292799,0.010371278040111,0.010050917044282],[0.029713919386268,-0.10017287731171,-0.23070888221264],[-0.10663612186909,-0.024518363177776,-0.036965601146221]],[[0.10850305855274,0.078499272465706,-0.10201685130596],[-0.10171702504158,-0.095464080572128,-0.28535577654839],[-0.0070211836136878,0.044265128672123,0.011476909741759]],[[-0.063532643020153,0.1400475949049,0.33811190724373],[0.02235060557723,0.1026759147644,-0.081071510910988],[0.094508484005928,0.028530905023217,0.074569039046764]],[[-0.0892154276371,0.13096977770329,0.020022897049785],[-0.14557078480721,0.14967937767506,0.13645887374878],[-0.26905518770218,-0.11480231583118,-0.038176346570253]],[[-0.23799946904182,-0.12772937119007,0.035405986011028],[0.035161174833775,0.081781670451164,-0.07567372918129],[0.064896263182163,0.0076291686855257,0.065148517489433]],[[-0.10867984592915,-0.016132773831487,-0.030024532228708],[-0.031132746487856,-0.099623672664165,-0.075639463961124],[-0.14780260622501,0.15136653184891,-0.020458173006773]],[[0.25356274843216,-0.032669946551323,-0.076741173863411],[0.013619634322822,-0.036484401673079,-0.14389692246914],[0.097255349159241,-0.076028414070606,0.044697154313326]],[[-0.048698537051678,-0.16605545580387,-0.14152647554874],[0.024411400780082,-0.13296581804752,-0.068375907838345],[-0.067223399877548,-0.016529578715563,0.021763846278191]],[[0.072030603885651,0.093873970210552,-0.08865612745285],[-0.043550860136747,-0.020135896280408,0.036559324711561],[0.014998842030764,0.014112432487309,-0.13203023374081]],[[0.038787603378296,-0.11110750585794,-0.18050640821457],[-0.038483057171106,0.038672748953104,-0.066357895731926],[-0.030985407531261,-0.038493931293488,0.21470794081688]],[[0.020604237914085,-0.014090779237449,-0.026472702622414],[0.015642963349819,-0.060664303600788,0.00059777247952297],[0.07923474162817,0.074798613786697,-0.22128829360008]],[[0.015969326719642,-0.10533159971237,-0.089092776179314],[-0.18889723718166,0.021766068413854,0.017689133062959],[0.056593999266624,0.053842958062887,0.094155184924603]],[[-0.083537638187408,-0.092630214989185,-0.05505957826972],[-0.015493758954108,-0.022227605804801,0.008011338301003],[-0.13228300213814,-0.22832246124744,-0.075767509639263]],[[0.092591352760792,0.0075901038944721,-0.0056450855918229],[-0.13659352064133,0.031158469617367,-0.16166391968727],[0.12851069867611,0.05195577442646,-0.039248876273632]],[[0.035483404994011,-0.22865153849125,-0.055636465549469],[0.038039535284042,0.12522901594639,0.087091319262981],[-0.1899491250515,-0.11333061754704,-0.1311843842268]],[[0.15960486233234,-0.019835911691189,-0.19023251533508],[-0.038886319845915,-0.032655656337738,-0.07662620395422],[-0.034536622464657,-0.041929218918085,-0.19344083964825]],[[-0.14136140048504,-0.1009319126606,-0.07928279042244],[-0.16494365036488,0.017579074949026,0.10607291013002],[-0.13873820006847,-0.017216201871634,-0.050407197326422]],[[0.026778873056173,0.007149625569582,0.10330918431282],[-0.068523228168488,-0.11202292889357,0.011616032570601],[0.11952210217714,0.23681224882603,0.22638314962387]],[[-0.035265378654003,-0.2122557759285,-0.1300061494112],[-0.050377164036036,-0.020737919956446,-0.11026906222105],[-0.073854818940163,-0.013175524771214,0.10109756886959]],[[0.12380046397448,-0.15037901699543,0.075276345014572],[-0.026180721819401,-0.10640431940556,-0.041271850466728],[-0.28068089485168,0.027207143604755,0.0094627141952515]],[[-0.092995621263981,-0.048039488494396,-0.052173718810081],[-0.06584171205759,0.025610335171223,0.08509910851717],[0.13193099200726,0.12255338579416,-0.044205524027348]],[[-0.026843965053558,-0.10568635165691,-0.13129390776157],[-0.0025590073782951,0.032764319330454,0.031313303858042],[0.12980109453201,0.040954876691103,-0.12835273146629]],[[-0.30084645748138,-0.13133136928082,-0.099196657538414],[-0.027563573792577,0.055692430585623,-0.081544108688831],[0.12920248508453,0.022645676508546,-0.042836286127567]],[[0.10462784022093,-0.095214381814003,0.11727680265903],[0.27948886156082,0.0099849589169025,0.1243763640523],[0.00047443236690015,-0.22156420350075,-0.16202600300312]],[[0.15859386324883,0.14309899508953,-0.03001437522471],[-0.14445795118809,-0.057829391211271,0.1612665951252],[0.040932159870863,0.057215921580791,-0.088775172829628]],[[-0.030976252630353,-0.032257687300444,-0.15914446115494],[-0.13669529557228,-0.15713162720203,0.044144473969936],[-0.0094058690592647,0.0099181504920125,0.12478674203157]],[[-0.24182336032391,-0.026021759957075,0.12886315584183],[-0.17959372699261,-0.02412099391222,-0.075945995748043],[0.025165531784296,-0.081482298672199,0.072649419307709]],[[0.0086855934932828,-0.16802097856998,-0.13911071419716],[0.071210741996765,-0.094419032335281,-0.10693597793579],[-0.24816651642323,0.033728908747435,-0.0059126419946551]],[[-0.12087531387806,0.046530157327652,0.005311640445143],[-0.082679584622383,0.082767814397812,-0.023359324783087],[-0.062963344156742,0.099235482513905,0.10994456708431]],[[-0.067589066922665,-0.021626148372889,0.038098961114883],[-0.059103228151798,-0.0039770049043,-0.086088195443153],[-0.064371041953564,-0.11839606612921,-0.29668912291527]],[[0.052491839975119,0.022225838154554,0.011090411804616],[-0.12807421386242,-0.030362049117684,0.069118656218052],[0.1599098443985,-0.023509122431278,-0.087911389768124]],[[-0.058223474770784,-0.087993763387203,-0.097455106675625],[-0.13823740184307,-0.26579806208611,-0.13997931778431],[0.044654626399279,-0.0392788015306,-0.11555513739586]],[[-0.15212450921535,-0.022607965394855,0.080904491245747],[0.080706745386124,0.093915887176991,-0.073246575891972],[-0.078141890466213,-0.10539098829031,-0.15966513752937]],[[-0.23727732896805,-0.037014357745647,-0.018624717369676],[-0.059449799358845,-0.086680099368095,0.079036146402359],[-0.20118334889412,-0.0053959814831614,0.008806062862277]],[[-0.021546157076955,0.086821816861629,-0.023179568350315],[-0.027989460155368,-0.11349976807833,0.013276994228363],[-0.13135062158108,-0.13588327169418,-0.097582034766674]],[[0.11952274292707,-0.029597556218505,-0.06121464446187],[0.0051822611130774,0.069058284163475,-0.064502976834774],[-0.13063961267471,-0.060648549348116,0.031147789210081]],[[-0.12899130582809,-0.040263053029776,-0.15758812427521],[0.17851895093918,0.084298335015774,-0.32082781195641],[-0.30829626321793,-0.082477435469627,0.18623985350132]],[[0.14726942777634,0.0062623918056488,0.0054810326546431],[-0.048504594713449,0.035863805562258,0.038001980632544],[-0.268121778965,-0.089902594685555,0.16089673340321]],[[-0.1896505355835,-0.059756748378277,0.05204738676548],[0.15317961573601,-0.010198597796261,0.25147506594658],[-0.15422254800797,-0.12924559414387,-0.12718325853348]],[[0.074611999094486,0.040255811065435,0.13205303251743],[0.054641138762236,0.18711146712303,-0.013131436891854],[0.21328136324883,-0.0018037229310721,-0.1174865141511]],[[-0.01778413169086,-0.13922780752182,0.042781490832567],[-0.0095596192404628,-0.0058307093568146,-0.022216616198421],[-0.095532134175301,0.012943798676133,-0.0078808004036546]],[[0.076634429395199,0.067859336733818,0.092444092035294],[0.035128731280565,0.0019547794945538,-0.042607232928276],[0.12888053059578,0.058749321848154,0.045464232563972]],[[0.036548838019371,-0.078386895358562,-0.25956788659096],[0.045946832746267,0.085076801478863,0.045040681958199],[-0.057060893625021,-0.06215588748455,-0.12150647491217]],[[-0.11711337417364,-0.073946423828602,0.068508110940456],[-0.058637712150812,0.092989839613438,-0.015206566080451],[-0.042993769049644,0.036090850830078,-0.11338947713375]],[[-0.097392827272415,-0.0073941187001765,-0.14406484365463],[-0.097488738596439,-0.084897682070732,0.02927827462554],[0.052107695490122,0.0075358655303717,0.026619801297784]],[[-0.18804237246513,0.015020440332592,0.064328424632549],[-0.064609810709953,0.10572725534439,0.13601410388947],[-0.14545869827271,0.029833914712071,-0.013751776888967]],[[0.013783460482955,-0.11113335937262,-0.107765391469],[-0.14676794409752,-0.07893168926239,-0.075073577463627],[0.026235148310661,-0.0057023148983717,-0.085363745689392]],[[-0.042508531361818,-0.063009671866894,-0.26508623361588],[0.22388929128647,0.15693981945515,0.011558758094907],[-0.016910986974835,0.12864536046982,0.10276412218809]],[[-0.034816056489944,-0.092792227864265,-0.048783931881189],[-0.14469760656357,-0.19235099852085,-0.049334518611431],[0.061326842755079,0.072901077568531,-0.0045134974643588]],[[0.10135082900524,-0.044544883072376,-0.12338143587112],[0.0071928091347218,-0.086426988244057,-0.14513927698135],[0.00031044788192958,0.16657100617886,0.10456990450621]],[[-0.079469740390778,0.024615295231342,-0.096986070275307],[0.022711956873536,-0.028276067227125,0.12120480835438],[0.09345118701458,-0.015182494185865,-0.060840293765068]],[[-0.19559502601624,-0.13994908332825,-0.21328927576542],[-0.025111591443419,0.0013874997384846,0.062149610370398],[-0.098388850688934,-0.049929857254028,0.016408320516348]],[[-0.0044942772947252,-0.029883516952395,-0.024054048582911],[0.046610236167908,0.070541150867939,-0.061572443693876],[-0.066347405314445,-0.17532439529896,-0.049706369638443]],[[0.37539613246918,-0.11059250682592,0.1437746733427],[0.090316623449326,-0.055920258164406,-0.03216277807951],[-0.038371033966541,0.094645477831364,-0.033550824970007]],[[0.21105355024338,0.16049993038177,0.25008577108383],[-0.043843753635883,-0.10932283848524,-0.25721874833107],[0.15224142372608,0.0012658759951591,-0.093005962669849]],[[-0.00092435599071905,0.00050758954603225,0.015973571687937],[0.062658384442329,-0.066606998443604,-0.14724187552929],[0.061747416853905,0.086790025234222,0.071622908115387]],[[0.17534551024437,0.15752278268337,0.27868646383286],[-0.16577485203743,-0.11109772324562,-0.067340649664402],[-0.054531697183847,0.0046079019084573,-0.06217285618186]],[[-0.058133620768785,0.024611307308078,-0.15944665670395],[0.16127786040306,0.085501998662949,0.036312162876129],[-0.18537798523903,-0.12121692299843,-0.26243016123772]],[[-0.1572280973196,-0.064208917319775,-0.011054726317525],[0.047208748757839,-0.012369078584015,-0.051861029118299],[-0.087609730660915,-0.0051339515484869,-0.070881426334381]],[[-0.19700984656811,-0.12866379320621,-0.045385729521513],[-0.13952803611755,0.11097709834576,0.18093179166317],[0.14123399555683,-0.10889767110348,-0.071636103093624]],[[-0.14542266726494,-0.13693472743034,-0.039682943373919],[0.058020304888487,0.017622651532292,-0.065611615777016],[0.048109214752913,0.099992968142033,-0.21102598309517]],[[-0.020573990419507,0.10007137805223,0.068193733692169],[0.013379918411374,-0.067494504153728,-0.070957720279694],[-0.13068969547749,-0.036207992583513,0.13180312514305]],[[-0.26267674565315,-0.30041852593422,-0.20062954723835],[0.10277414321899,0.010139152407646,0.057831596583128],[0.00023509270977229,-0.04004243761301,0.0269008371979]],[[-0.080068163573742,0.02709343098104,0.027074418962002],[0.099010653793812,0.04853480681777,0.13202531635761],[0.055680524557829,0.12247752398252,-0.051253028213978]],[[0.012359200045466,0.0028036865405738,0.0058328141458333],[0.042131509631872,0.032666277140379,-0.0030196935404092],[-0.061847843229771,-0.048425935208797,0.053583193570375]],[[-0.11410720646381,-0.055956311523914,-0.068927064538002],[0.00094135745894164,-0.13958364725113,-0.07792703807354],[0.095480069518089,0.0006748215528205,0.046030443161726]],[[0.087746843695641,0.064638681709766,0.081082597374916],[-0.12892904877663,-0.065041936933994,0.043713450431824],[-0.057624764740467,-0.0052283341065049,0.1603902131319]],[[0.17178791761398,0.12048849463463,-0.0834925994277],[0.075487732887268,0.16951586306095,0.063937090337276],[-0.15284280478954,-0.2093670964241,-0.0061084153130651]],[[0.052363038063049,0.080408357083797,0.011875945143402],[-0.067161679267883,-0.15078313648701,-0.013239784166217],[0.0007358412258327,-0.080127686262131,0.084931142628193]],[[-0.045751452445984,-0.17765089869499,-0.11521915346384],[-0.1536025851965,0.041055779904127,0.045519631356001],[-0.047352060675621,0.072722442448139,0.1279159039259]],[[-0.14300872385502,-0.027831742540002,0.12211332470179],[-0.0059309415519238,0.035223949700594,0.001841134740971],[-0.099668689072132,-0.13841247558594,-0.027739072218537]],[[0.11300235241652,0.097904123365879,-0.11247789859772],[-0.17044578492641,-0.22227405011654,-0.15834613144398],[0.24349097907543,0.12851391732693,0.27847623825073]],[[-0.033005822449923,0.21211041510105,0.19330768287182],[-0.097483605146408,0.048251304775476,0.18088303506374],[0.26991650462151,0.052963774651289,-0.14958725869656]],[[-0.0041873571462929,-0.1223958581686,0.1004334166646],[0.067654296755791,0.12732741236687,0.1479653865099],[0.00176399666816,-0.12516516447067,-0.031889028847218]],[[-0.060308333486319,-0.0092540504410863,-0.11392400413752],[0.33741214871407,0.1787426918745,-0.011612124741077],[-0.082371450960636,0.053115624934435,-0.11965673416853]],[[-0.033494878560305,-0.014524973928928,0.22090731561184],[0.0043070144020021,0.084991171956062,-0.068279430270195],[-0.23602047562599,-0.12114251405001,-0.11497768759727]],[[-0.033913597464561,-0.10784243047237,0.021619517356157],[-0.048707742244005,0.055191364139318,0.068981602787971],[-0.14168471097946,-0.092910550534725,0.047857739031315]],[[-0.42127481102943,-0.20723353326321,0.0080918241292238],[0.10341589897871,-0.063089929521084,0.08650778979063],[-0.014840226620436,-0.1435689330101,-0.087051540613174]],[[0.1476107686758,-0.024237642064691,0.036828510463238],[-0.086687594652176,-0.026102969422936,-0.099957644939423],[-0.0070224795490503,0.072977215051651,0.041012663394213]],[[-0.030375441536307,-0.064165659248829,5.7343866501469e-05],[0.09553088247776,-0.14953063428402,-0.031811010092497],[-0.031509395688772,-0.12818183004856,-0.031294792890549]],[[-0.037653759121895,0.19895356893539,-0.28399351239204],[-0.10908635705709,-0.059909638017416,-0.23251181840897],[-0.062154352664948,0.055219698697329,0.091649003326893]],[[-0.11677719652653,-0.031149929389358,0.17488014698029],[-0.15247912704945,-0.010520366951823,-0.055699624121189],[0.098708122968674,0.025229591876268,0.28875216841698]],[[0.24855546653271,-0.088343784213066,0.051620561629534],[-0.11769310384989,-0.094703190028667,-0.10867268592119],[-0.09867762029171,-0.24667665362358,-0.052916511893272]]],[[[0.11895646154881,-0.036450009793043,-0.051175780594349],[0.022977344691753,-0.065571285784245,-0.0027093521784991],[0.08878705650568,0.097286842763424,0.052778102457523]],[[0.036247882992029,-0.093204148113728,0.061691366136074],[-0.00030426736338995,0.12253659963608,0.20176775753498],[-0.10749346762896,-0.031519699841738,-0.077007226645947]],[[0.012438800185919,-0.072162993252277,0.083200104534626],[-0.039991784840822,0.13882702589035,0.044460695236921],[0.040449965745211,0.0036077713593841,0.019470866769552]],[[-0.047557901591063,-0.0056157479993999,-0.051978468894958],[-0.079307533800602,0.12453325837851,0.043417666107416],[-0.0067922016605735,0.019353527575731,-0.019185619428754]],[[0.041110768914223,-0.067024022340775,-0.0018098248401657],[0.040492404252291,-0.017161400988698,-0.147181853652],[-0.059019010514021,0.028186656534672,-0.0055009829811752]],[[-0.01609836705029,0.052269738167524,0.004226328805089],[-0.13482488691807,0.056339289993048,-0.070432551205158],[-0.19507001340389,0.20805697143078,0.0087015954777598]],[[0.095778942108154,-0.15721170604229,0.11895614117384],[-0.04035023227334,0.019073214381933,0.095709599554539],[0.13123835623264,-0.0046214214526117,-0.029806107282639]],[[0.20724631845951,-0.026084577664733,0.01951108686626],[0.043568838387728,-0.052572064101696,-0.051984392106533],[0.015613592229784,-0.15984578430653,0.00092587393010035]],[[-0.10967516154051,-0.0051234583370388,0.027392819523811],[-0.039897404611111,0.058151625096798,-0.11910870671272],[0.076536156237125,-0.028961701318622,-0.054128762334585]],[[-0.1171341240406,-0.13009396195412,-0.02747967839241],[0.10717127472162,-0.076985463500023,-0.057446517050266],[0.066823229193687,-0.16675201058388,0.0088299252092838]],[[-0.053042352199554,-0.099399842321873,-0.088846169412136],[-0.063879981637001,-0.11632319539785,-0.0069734607823193],[-0.069828368723392,-0.26590967178345,0.001778818317689]],[[0.082107484340668,-0.0036960423458368,0.11173040419817],[0.039747506380081,-0.15585336089134,-0.11418914049864],[0.018966676667333,-0.13708904385567,-0.037092007696629]],[[-0.0070331380702555,-0.18513011932373,-0.1535606533289],[0.0028179201763123,0.051341291517019,-0.0081260977312922],[-0.012585985474288,0.0086433859542012,-0.18086941540241]],[[-0.031770296394825,-0.0042446595616639,0.055493172258139],[-0.19134782254696,-0.072014532983303,0.093872830271721],[-0.073600247502327,0.079228594899178,0.080910205841064]],[[-0.088457398116589,-0.068052545189857,-0.0063232621178031],[0.0041028498671949,-0.10072072595358,0.066893592476845],[-0.17867921292782,0.0049014170654118,-0.11081495136023]],[[-0.02843096666038,0.070945337414742,-0.098160676658154],[0.013071064837277,0.1130038946867,-0.0038670094218105],[-0.20065450668335,0.08827368915081,-0.037273474037647]],[[0.018369371071458,-0.039745345711708,0.1140460819006],[0.079310841858387,-0.046604100614786,-0.017163628712296],[-0.084265500307083,-0.033635959029198,0.02619612403214]],[[0.0023724660277367,-0.022789914160967,0.0061474330723286],[0.11008819192648,-0.028037892654538,-0.12349332123995],[0.10347940772772,-0.0547935962677,-0.095990963280201]],[[0.044694818556309,-0.062677554786205,0.12907773256302],[0.056168060749769,0.13327816128731,0.026065420359373],[-0.011216560378671,-0.015244771726429,0.0062401043251157]],[[-0.026761543005705,-0.14471906423569,0.18295048177242],[-0.021820982918143,-0.11182627826929,0.013649710454047],[0.05278592184186,-0.063483312726021,0.040536880493164]],[[-0.040204159915447,-0.15312702953815,-0.056045312434435],[0.010383167304099,-0.12217933684587,-0.04072193056345],[-0.028821105137467,-0.045771569013596,-0.072197817265987]],[[-0.11303683370352,-0.0050825835205615,-0.10519879311323],[-0.063855491578579,0.091364555060863,-0.022210976108909],[0.0029343541245908,0.093793965876102,0.021768288686872]],[[0.22169168293476,-0.074776373803616,0.091009542346001],[0.068107850849628,-0.020680507645011,0.081333436071873],[0.033677987754345,0.12029234319925,0.057421986013651]],[[0.038198348134756,-0.080955140292645,-0.088410265743732],[0.043747682124376,0.048120807856321,-0.026669841259718],[0.018352545797825,-0.011812161654234,0.027787627652287]],[[0.0010518360650167,0.06943191587925,-0.083717972040176],[-0.063879311084747,-0.0060281152836978,-0.0076469294726849],[0.0014637468848377,-0.10116043686867,0.073210522532463]],[[0.051807034760714,-0.037900231778622,0.055805396288633],[0.13505877554417,0.067959919571877,0.063894495368004],[0.067445859313011,-0.014590158127248,-0.00110595067963]],[[-0.1047794893384,-0.06135006248951,-0.058871977031231],[-0.043795600533485,-0.039791528135538,0.058839399367571],[0.015760228037834,-0.037929654121399,-0.058456603437662]],[[0.1724541336298,-0.06343774497509,-0.11945198476315],[-0.020736498758197,0.067694038152695,0.0062606385909021],[-0.14987644553185,-0.090014882385731,-0.027794996276498]],[[-0.10561822354794,0.082560427486897,-0.025623692199588],[0.070439264178276,0.046961344778538,-0.063825242221355],[0.068753100931644,0.022154398262501,0.012270169332623]],[[0.10135332494974,0.02484636195004,-0.065516978502274],[0.043028350919485,0.036753211170435,-0.11279611289501],[0.024548863992095,-0.099430166184902,0.044765215367079]],[[0.20903432369232,-0.075896129012108,-0.01897919178009],[-0.062978863716125,0.036094523966312,0.026461845263839],[0.089905478060246,0.16465723514557,0.076269790530205]],[[0.1355587542057,-0.060475777834654,0.026918094605207],[-0.0089254258200526,-0.013756705448031,0.06770271062851],[0.17066332697868,0.032496839761734,-0.044809732586145]],[[-0.20769467949867,-0.10570187866688,-0.091760389506817],[-0.077517986297607,-0.013709155842662,-0.022962626069784],[0.10434900224209,-0.041196670383215,0.091177821159363]],[[-0.0079246554523706,0.065732359886169,0.096403263509274],[-0.14283880591393,-0.068107552826405,0.032525070011616],[0.010266566649079,0.040095139294863,0.13717785477638]],[[-0.043630518019199,0.025582198053598,-0.022886537015438],[-0.10843930393457,-0.085811287164688,-0.024104738608003],[-0.001298911171034,-0.095776431262493,-0.087403498589993]],[[0.012536437250674,-0.10903784632683,-0.024085350334644],[-0.047138027846813,-0.10275623947382,0.028260711580515],[0.053943246603012,0.053860202431679,0.026644831523299]],[[0.06132086366415,-0.042370017617941,-0.032054141163826],[-0.14991594851017,-0.092251308262348,0.080105118453503],[0.075601294636726,0.24315589666367,-0.020972959697247]],[[-0.22780910134315,0.24745731055737,0.0042894352227449],[-0.13988526165485,-0.020470019429922,-0.11704494804144],[-0.18445092439651,-0.044963575899601,-0.040863163769245]],[[0.011605687439442,0.0019770343787968,-0.049893077462912],[-0.064323782920837,0.086733773350716,-0.044385377317667],[-0.13441042602062,-0.10755708813667,-0.13354226946831]],[[0.072715789079666,-0.065298356115818,-0.011995051987469],[-0.031412187963724,0.10173736512661,-0.11327723413706],[-0.089162178337574,-0.077164880931377,-0.071924351155758]],[[0.013462208211422,-0.072999440133572,-0.074060924351215],[-0.077001675963402,-0.032271951436996,-0.057893868535757],[-0.061418142169714,0.01141039095819,0.060281112790108]],[[-0.076595909893513,-0.0017955162329599,0.11938248574734],[0.018642405048013,0.044833932071924,0.061628255993128],[-0.097744554281235,0.024326143786311,0.10003936290741]],[[0.012654674239457,-0.030567687004805,0.022417424246669],[-0.0059938183985651,-0.095278516411781,0.077264465391636],[0.0064479517750442,-0.00077629764564335,0.024401465430856]],[[0.037371225655079,-0.054035004228354,0.051049809902906],[-0.0066459476947784,-0.11007129400969,0.037547491490841],[0.011891469359398,0.07047538459301,0.056255787611008]],[[-0.032195065170527,-0.092522799968719,-0.16311502456665],[-0.047255299985409,-0.096436277031898,0.011911101639271],[0.077390983700752,0.066469244658947,0.073315978050232]],[[-0.10338851809502,-0.00024786128778942,-0.12842088937759],[-0.054567094892263,-0.028687577694654,-0.065311625599861],[-0.039851233363152,0.18173731863499,-0.082928277552128]],[[-0.13257762789726,-0.10015771538019,-0.058245860040188],[0.0066954139620066,-0.0039975130930543,-0.021301962435246],[-0.0384351760149,-0.12437861412764,-0.15130466222763]],[[-0.047472067177296,0.0037512113340199,0.12361790239811],[0.026654083281755,0.074110977351665,-0.11621112376451],[-0.13578914105892,0.042646620422602,-0.048683013767004]],[[0.14729896187782,-0.21338519454002,0.018439052626491],[0.070095963776112,-0.047161396592855,-0.01156154833734],[0.043849777430296,0.070351779460907,0.12189017981291]],[[0.017897356301546,-0.025031518191099,0.11484955251217],[-0.12277252227068,0.084122851490974,-0.012678536586463],[0.0013461820781231,0.041037701070309,0.0077816797420382]],[[0.049717027693987,0.24738109111786,0.019370755180717],[0.01847823150456,0.16259324550629,-0.050833750516176],[-0.16998176276684,0.036862969398499,0.059332367032766]],[[-0.12400625646114,0.0033362549729645,-0.027746601030231],[-0.0041734627448022,-0.19289410114288,0.024252790957689],[-0.063268236815929,0.059870511293411,-0.058891244232655]],[[-0.024399824440479,0.013795429840684,0.030725300312042],[-0.077184364199638,-0.073882505297661,-0.015422379598022],[-0.023128807544708,-0.04538968205452,0.018621956929564]],[[-0.0074847610667348,-0.037572730332613,0.080093063414097],[-0.0086763324216008,-0.11026953160763,-0.052787479013205],[-0.016784464940429,-0.029276439920068,-0.097018241882324]],[[-0.12191231548786,0.14000423252583,-0.088306799530983],[0.075895920395851,0.068108111619949,0.080888487398624],[0.00076058355625719,-0.016223618760705,0.11151838302612]],[[-0.044373549520969,-0.013499739579856,-0.027233673259616],[-0.010293372906744,-0.0054009091109037,-0.046579211950302],[0.16173872351646,-0.050156153738499,0.055058673024178]],[[-0.040566563606262,-0.07103031873703,-0.088811457157135],[0.08169724047184,0.14323683083057,-0.097974993288517],[-0.10351190716028,0.064139395952225,-0.12544232606888]],[[-0.057237952947617,-0.045683525502682,-0.17993155121803],[0.039617411792278,0.0040295608341694,-0.063101246953011],[-0.073331296443939,-0.05934252589941,-0.10573192685843]],[[-0.0078380731865764,-0.035353533923626,0.09854581207037],[0.002951672533527,-0.036471109837294,0.078054420650005],[-0.066664211452007,-0.012130402959883,0.034347634762526]],[[0.0084009040147066,-0.062079463154078,0.15203042328358],[-0.166488930583,-0.11457236856222,0.15086653828621],[-0.053395867347717,0.039025206118822,0.0844956189394]],[[0.0087102651596069,-0.10919214785099,-0.13995230197906],[0.067202068865299,-0.055009093135595,0.1002844274044],[0.02562971226871,-0.07700614631176,0.053859110921621]],[[-0.045988503843546,-0.043483830988407,0.03141912445426],[0.00033581073512323,-0.19549317657948,0.10655573010445],[0.037351153790951,0.0025950069539249,0.0029367618262768]],[[0.047831695526838,-0.10792969167233,-0.038635615259409],[0.013287626206875,-0.075419165194035,-0.021766230463982],[-0.06632212549448,-0.10241202265024,0.0069209118373692]],[[0.12276300042868,0.051586415618658,-0.082822121679783],[0.25116929411888,0.00024003499129321,0.061305295675993],[0.025617966428399,0.071210809051991,0.097987331449986]],[[-0.05650619417429,-0.054192285984755,-0.030736148357391],[0.052395306527615,0.018123298883438,0.0038725822232664],[-0.071927316486835,0.067919619381428,-0.058240298181772]],[[0.1119823679328,0.082447461783886,-0.037939507514238],[0.059679247438908,0.015327072702348,0.12592560052872],[0.048891242593527,-0.053828220814466,0.0061075612902641]],[[0.094569534063339,-0.01251907646656,0.060687780380249],[0.15093849599361,-0.042064771056175,-0.15176090598106],[-0.055488437414169,0.098844721913338,0.036672353744507]],[[-0.093062095344067,-0.13685135543346,0.10718328505754],[0.072531558573246,0.059770300984383,-0.058703798800707],[-0.0007083005621098,-0.074830509722233,0.054657619446516]],[[0.018688147887588,-0.0011659451993182,0.087082847952843],[-0.051548514515162,-0.022679956629872,0.072773583233356],[-0.15635654330254,0.036265712231398,0.050267476588488]],[[0.014410207979381,-0.014357658103108,-0.045362398028374],[0.047033682465553,0.088599987328053,0.043066300451756],[-0.012058241292834,-0.13661675155163,0.055023994296789]],[[-0.081453666090965,-0.013352930545807,-0.095461301505566],[0.046637769788504,-0.084986127912998,-0.043176412582397],[0.15364287793636,0.023512717336416,-0.089737042784691]],[[0.04158741235733,-0.054555725306273,0.13416787981987],[0.024165965616703,0.0083759622648358,-0.099111035466194],[0.039504516869783,-0.035875458270311,0.032711010426283]],[[0.13996827602386,-0.25681775808334,0.011666532605886],[0.031188862398267,-0.13993754982948,0.010446258820593],[0.028708709403872,-0.046398941427469,0.0369265191257]],[[-0.15697805583477,0.026993598788977,-0.040347293019295],[0.012513004243374,-0.061950258910656,0.10405097156763],[-0.023659283295274,-0.034925438463688,-0.053978305310011]],[[0.082826845347881,-0.012287011370063,0.089300535619259],[-0.092971406877041,-0.092954143881798,-0.056208796799183],[0.06498758494854,-0.083680666983128,-0.073125645518303]],[[-0.0022156096529216,-0.15558782219887,-0.022719707340002],[-0.064573138952255,-0.065368436276913,-0.13106028735638],[0.061422936618328,-0.083169855177402,0.023103134706616]],[[-0.045530743896961,0.06400790065527,0.084738038480282],[-0.0022755519021302,-0.043088354170322,-0.05270142480731],[-0.040691886097193,0.1018378958106,0.028718695044518]],[[0.033566374331713,0.1453298330307,0.047057915478945],[0.033733792603016,-0.0069335238076746,0.0058089811354876],[-0.017247961834073,-0.067984394729137,-0.21591633558273]],[[0.12092946469784,0.14712856709957,-0.039974816143513],[-0.0067807510495186,0.0028066716622561,0.13437612354755],[-0.078317403793335,-0.13222873210907,-0.042638324201107]],[[0.061471473425627,-0.099263183772564,0.094266392290592],[-0.048750057816505,-0.16091799736023,-0.19606500864029],[0.044162582606077,0.060976177453995,-0.082134753465652]],[[-0.015957448631525,0.11895377933979,0.047873008996248],[-0.042044438421726,0.21100425720215,-0.04862293228507],[-0.063471779227257,0.095560356974602,0.04888316616416]],[[-0.11643362790346,0.032387666404247,-0.011277882382274],[0.032802354544401,-0.041629105806351,0.084197580814362],[0.01694561354816,-0.19826656579971,-0.065219461917877]],[[-0.020371492952108,-0.13016280531883,0.021642751991749],[0.058601710945368,-0.038275089114904,0.043865822255611],[-0.055455766618252,-0.14269599318504,0.054935369640589]],[[-0.17296408116817,0.013502329587936,-0.026042673736811],[-0.057792529463768,-0.10960391908884,-0.038664318621159],[-0.073364920914173,0.019075462594628,-0.043529707938433]],[[-0.12388344854116,0.02898358926177,-0.11351436376572],[-0.10026177018881,0.023909796029329,-0.022538118064404],[0.081372871994972,0.021343905478716,0.02642484754324]],[[-0.021074948832393,-0.057333536446095,-0.13856741786003],[-0.058909986168146,0.012826836667955,-0.098187036812305],[0.095537625253201,-0.0062096952460706,-0.055803369730711]],[[0.071116752922535,-0.10751980543137,0.011943906545639],[-0.042003005743027,-0.13310565054417,-0.015723198652267],[-0.038196157664061,-0.047499470412731,-0.09145949780941]],[[-0.032596226781607,0.052194572985172,0.037157397717237],[-0.0041130152530968,0.0013603995321319,-0.036169558763504],[-0.19960422813892,-0.028601242229342,0.024176295846701]],[[-0.031252142041922,-0.0046358518302441,-0.076257161796093],[-0.035316944122314,0.036601167172194,-0.068691983819008],[0.012025443837047,0.047191370278597,-0.15128642320633]],[[-0.030773179605603,-0.11277341097593,-0.12348192930222],[-0.088214658200741,0.0044182469137013,-0.060309566557407],[0.070420689880848,0.046187497675419,0.0085141072049737]],[[-0.032200235873461,0.043877486139536,0.048211019486189],[0.010065681301057,-0.0070210206322372,-0.1213144287467],[0.080392360687256,0.065271198749542,0.10483707487583]],[[0.011462544091046,0.019269786775112,0.015139383263886],[0.079257130622864,0.056096524000168,0.017528314143419],[-0.10462743788958,0.11125819385052,0.025185881182551]],[[-0.035920973867178,-0.014819083735347,-0.033592168241739],[0.12291110306978,-0.068738341331482,-0.036582913249731],[0.029970526695251,-0.091966539621353,0.010270433500409]],[[0.036082241684198,-0.10282281041145,-0.15519292652607],[0.034939810633659,-0.12032061070204,-0.032167766243219],[0.012470523826778,-0.051835600286722,0.11695566028357]],[[-0.082737989723682,-0.066176369786263,0.021136553958058],[-0.064619086682796,-0.04041513800621,-0.21519963443279],[0.0002851779863704,0.022039735689759,-0.060421973466873]],[[0.10948632657528,-0.043064419180155,-0.0043419473804533],[0.013964612036943,0.020067296922207,0.04034561663866],[0.13733598589897,0.10228622704744,-0.090042002499104]],[[0.085099495947361,-0.0061864606104791,-0.084853179752827],[0.061604578047991,-0.17225949466228,-0.018517406657338],[0.0029340393375605,-0.10379578918219,-0.015599315054715]],[[-0.018897663801908,-0.096561282873154,-0.057006690651178],[-0.034263394773006,0.067920424044132,0.069951072335243],[-0.03669386729598,0.041060045361519,0.12421117722988]],[[0.068609938025475,0.0039829956367612,-0.036460012197495],[-0.065686821937561,-0.09360608458519,0.069543324410915],[0.13641142845154,-0.04675816744566,-0.031843151897192]],[[-0.0070802932605147,-0.027047947049141,-0.067377120256424],[0.017384650185704,0.10261377692223,0.0028885535430163],[0.072112262248993,0.10537300258875,-0.1143563836813]],[[-0.097147844731808,0.096077680587769,-0.060905281454325],[-0.065287262201309,-0.072658859193325,0.022620687261224],[-0.043380580842495,0.087383389472961,0.038706503808498]],[[-0.05807139724493,-0.0098246354609728,-0.029131319373846],[0.12435699254274,0.041185941547155,0.044845882803202],[0.13811032474041,-0.080514527857304,-0.062758073210716]],[[0.046769712120295,-0.059743102639914,0.072892867028713],[-0.080232113599777,-0.065321445465088,-0.016282761469483],[-0.09223909676075,-0.18099376559258,0.015035443007946]],[[-0.061269018799067,0.14562556147575,0.06631988286972],[0.060901839286089,-0.029215885326266,0.026821102946997],[-0.11171120405197,-0.015673849731684,0.088255889713764]],[[-0.084312707185745,0.15341146290302,-0.00011194626858924],[0.055058412253857,-0.12048770487309,-0.19051443040371],[0.048623517155647,0.058609426021576,0.071674920618534]],[[-0.023365885019302,0.077568061649799,-0.012574781663716],[0.015651324763894,0.10671993345022,0.010655702091753],[-0.032272014766932,-0.041629999876022,-0.049498409032822]],[[0.028742633759975,0.0094345863908529,0.10182861983776],[-0.040828723460436,-0.077661544084549,-0.041425820440054],[0.13091236352921,-0.044788971543312,-0.0030425733420998]],[[0.10812247544527,0.087633445858955,-0.079617463052273],[-0.049767766147852,0.041866421699524,-0.13566379249096],[-0.024076664820313,-0.023127589374781,0.15218046307564]],[[0.19105088710785,0.014855451881886,0.071318320930004],[0.066197343170643,0.02489011362195,-0.16453044116497],[0.012393278069794,0.0014072955818847,0.047489691525698]],[[0.046093475073576,-0.082298740744591,-0.072401240468025],[0.011253190226853,-0.02721906080842,0.037052754312754],[-0.064118251204491,0.093959204852581,-0.0032974893692881]],[[0.034222483634949,0.08284118026495,0.085530057549477],[-0.0013822126202285,0.12555649876595,0.016544979065657],[-0.06207324936986,-0.067656815052032,-0.034731689840555]],[[-0.07997053861618,-0.084097653627396,0.038784354925156],[0.070199102163315,0.018990473821759,-0.043384358286858],[-0.057876016944647,-0.10808397829533,0.11761180311441]],[[-0.0016395014245063,-0.038339789956808,0.097398512065411],[-0.044012647122145,-0.022221233695745,0.13597813248634],[-0.044418647885323,-0.12031056731939,0.056330803781748]],[[0.15330970287323,-0.048879407346249,-0.014364157803357],[-0.037284824997187,-0.11752738058567,-0.026717392727733],[-0.059429835528135,-0.090988151729107,-0.11662607640028]],[[-0.053196601569653,0.080581374466419,0.074646145105362],[-0.035269934684038,0.047168027609587,0.028007976710796],[-0.13034535944462,0.05053773149848,0.003613794920966]],[[-0.029352555051446,-0.0070569054223597,-0.10497809946537],[-0.051031671464443,0.078743934631348,-0.0050820102915168],[-0.073816984891891,-0.019106527790427,-0.016141967847943]],[[0.078674107789993,-0.036808732897043,0.083104752004147],[-0.022110240533948,-0.0068381074815989,0.002228630008176],[0.10951662063599,-0.022059101611376,0.064593695104122]],[[-0.1123059168458,-0.0099376374855638,0.03727238252759],[-0.027881829068065,-0.0088862655684352,0.059384990483522],[0.038166433572769,-0.073213018476963,0.053164530545473]],[[0.073367364704609,-0.094403900206089,-0.010720959864557],[0.0065957615152001,0.09766960144043,-0.11674798280001],[-0.060920711606741,-0.053636271506548,-0.075792618095875]],[[0.045881550759077,-0.2651369869709,-0.063261196017265],[0.030921893194318,-0.056059148162603,-0.016209553927183],[-0.11478447914124,0.041835188865662,0.059220127761364]],[[0.060559917241335,-0.11150044947863,-0.1746257096529],[-0.11603753268719,-0.12669789791107,-0.22953279316425],[-0.14325828850269,0.074681609869003,0.16051462292671]],[[0.0062568485736847,-0.085088156163692,0.13129423558712],[-0.076898247003555,-0.00782136246562,0.13799232244492],[-0.1147575750947,-0.01932273991406,0.028906026855111]],[[-0.029911864548922,0.023985419422388,0.040698979049921],[-0.080970302224159,-0.011228336952627,-0.025379313156009],[-0.17052683234215,-0.21560008823872,-0.020522017031908]],[[-0.04336154460907,0.034745752811432,0.060098525136709],[-0.093041382730007,0.15188702940941,0.056432146579027],[-0.059998709708452,0.1335192322731,0.049309011548758]],[[-0.092131055891514,-0.070183776319027,-0.054820600897074],[-0.14824058115482,-0.11804766207933,-0.025256345048547],[-0.024259036406875,0.077314235270023,0.1123488843441]],[[0.087656438350677,0.0091120237484574,-0.10538621246815],[-0.033005941659212,0.0362329185009,-0.085040338337421],[-0.013343118131161,-0.013521443121135,0.084485314786434]],[[0.18308487534523,-0.10130981355906,-0.16236087679863],[0.3133470416069,-0.03584573790431,-0.064229853451252],[0.12439627945423,0.089836068451405,0.029158227145672]],[[0.006223383359611,0.11659169197083,0.0038558091036975],[-0.060999568551779,-0.01444061845541,0.026283994317055],[-0.17095908522606,0.17346455156803,0.05363254994154]]],[[[0.038046527653933,-0.03208564221859,-0.011553393676877],[-0.011397486552596,-0.05012721195817,0.041148729622364],[0.011806478723884,0.060766246169806,0.036337498575449]],[[0.03742216527462,0.0026363984216005,0.0016056777676567],[0.078845843672752,0.045438371598721,-0.035922799259424],[-0.041109718382359,-0.075786039233208,0.031754918396473]],[[0.055745877325535,0.050933383405209,0.13297471404076],[0.1568668782711,0.11380129307508,0.038566473871469],[0.10473357141018,-0.020924679934978,0.083455823361874]],[[-0.016612140461802,0.0016789984656498,-0.0746880620718],[0.019346360117197,-0.025729320943356,-0.01292856130749],[-0.046955812722445,-0.018506173044443,-0.0038092888426036]],[[-0.054408192634583,-0.13213554024696,-0.058790948241949],[0.09679951518774,-0.035621728748083,-0.035370763391256],[0.055420871824026,0.019749820232391,-0.01428300421685]],[[-0.11238824576139,-0.12365444004536,-0.029656823724508],[-0.057421419769526,-0.0082088755443692,0.059908162802458],[-0.16351547837257,-0.047207225114107,0.0719004124403]],[[0.00142617453821,0.053541444242001,0.0041023176163435],[-0.055331636220217,-0.10190296918154,-0.015771128237247],[-0.01651063375175,0.066016770899296,0.04382386058569]],[[-0.086346261203289,-0.0062823900952935,0.11152151972055],[-0.10891378670931,0.0074858679436147,-0.02752647921443],[-0.062251199036837,-0.046130891889334,0.057543937116861]],[[0.095691278576851,0.062518522143364,-0.044470150023699],[0.011173368431628,-0.046986367553473,0.031263284385204],[0.0365618057549,-0.10721571743488,-0.084155231714249]],[[-0.029157619923353,0.012824546545744,0.040143478661776],[-0.015496855601668,0.10162530839443,0.025052478536963],[-0.10660055279732,0.036709044128656,0.07597254961729]],[[-0.11497960239649,-0.054552789777517,-0.005256234202534],[-0.040704533457756,-0.022405942901969,0.016271498054266],[-0.10496302694082,-0.094447292387486,-0.091462075710297]],[[0.00023242642055266,-0.056734766811132,-0.18370616436005],[-0.04159115254879,-0.0053428146056831,-0.055551640689373],[0.011373460292816,-0.0010552166495472,0.18784806132317]],[[0.084873020648956,-0.077888175845146,-0.0027462923899293],[0.053616099059582,-0.0029795996379107,-0.066361047327518],[0.055750768631697,0.060880642384291,-0.0063929511234164]],[[-0.036180909723043,-0.014983270317316,-0.013781259767711],[-0.029232043772936,-0.1500339359045,0.029080851003528],[0.060314364731312,-0.046555213630199,-0.13117547333241]],[[0.01241366006434,0.011957016773522,0.021222271025181],[0.01420921087265,-0.04229674115777,-0.11512356251478],[-0.040157195180655,-0.077753119170666,-0.022786987945437]],[[-0.018713396042585,-0.05418873950839,-0.037422128021717],[0.094627812504768,0.070371933281422,0.035502001643181],[-0.033702682703733,-0.094737537205219,0.0088321100920439]],[[0.080422773957253,0.055965725332499,-0.14129294455051],[0.022220719605684,0.021747134625912,0.068914443254471],[-0.0048138899728656,0.11207051575184,0.099061235785484]],[[-0.019545130431652,0.031642273068428,-0.085938930511475],[0.014653320424259,0.10256376117468,-0.050000887364149],[-0.064209803938866,-0.070652805268764,-0.088182888925076]],[[-0.047830745577812,0.032180543988943,-0.0071753016673028],[-0.055630765855312,-0.00865837931633,-0.057639297097921],[0.026159029453993,-0.047765117138624,0.03125075250864]],[[-0.19755040109158,-0.056990299373865,-0.16140833497047],[-0.066343478858471,0.04997668042779,-0.011576494202018],[0.023841040208936,0.060917489230633,-0.098608173429966]],[[-0.048727385699749,0.039417322725058,-0.022504638880491],[-0.059066031128168,-0.05830517411232,0.029797073453665],[0.048559468239546,-0.011310566216707,-0.053411245346069]],[[0.024892948567867,-0.021871615201235,0.027169000357389],[0.04133066162467,0.0041149402968585,0.047329008579254],[0.18572163581848,0.035052351653576,0.020706798881292]],[[-0.016659531742334,-0.042886100709438,-0.019637208431959],[0.026829663664103,-0.0026984112337232,-0.014729419723153],[0.10402955114841,0.067820578813553,0.037011433392763]],[[-0.031419556587934,0.028685154393315,0.03595107793808],[0.064287662506104,-0.086877226829529,0.0020654492545873],[-0.01274901162833,-0.099606774747372,-0.090505242347717]],[[-0.043112136423588,-0.033344451338053,-0.0030880537815392],[-0.088277049362659,-0.11778473854065,0.042042169719934],[0.041500944644213,-0.023017957806587,-0.0051530981436372]],[[-0.04371852055192,-0.040526945143938,-0.037752866744995],[0.041441403329372,-0.046182569116354,0.041728641837835],[0.012598267756402,-0.023916410282254,0.0052112727425992]],[[-0.0096075991168618,-0.048634704202414,0.018713489174843],[-0.078443832695484,0.037700034677982,0.016672911122441],[0.16406856477261,0.0067178290337324,0.006589655764401]],[[0.077442564070225,0.051402855664492,-0.064007826149464],[-0.011834336444736,-0.071513503789902,0.00047730625374243],[-0.09051339328289,-0.01051430311054,0.07148689776659]],[[0.060231305658817,-0.029249710962176,-0.14211218059063],[0.07852353900671,0.057253941893578,-0.087267331779003],[0.071752838790417,0.0729004368186,-0.05745666846633]],[[-0.0034435736015439,-0.0037345609162003,0.078309580683708],[0.066083580255508,-0.028106667101383,-0.065416783094406],[-0.0072580613195896,-0.03457061201334,-0.08561959117651]],[[0.022882366552949,0.017395474016666,0.025482160970569],[0.017772549763322,-0.11642478406429,-0.022083474323153],[0.013201636262238,-0.062343206256628,-0.016143074259162]],[[0.015630094334483,-0.067617282271385,-0.10580676048994],[-0.11008539795876,-0.056433547288179,0.089743845164776],[0.059128731489182,0.19010485708714,0.06432818621397]],[[-0.064130336046219,-0.007088671438396,-0.0058049215003848],[-0.017281459644437,0.093501545488834,0.10803527384996],[0.015525857917964,-0.035292580723763,0.070852756500244]],[[-0.0053695035167038,-0.11085102707148,-0.062807522714138],[-0.011109285987914,0.036912210285664,0.019931675866246],[0.065643563866615,0.09026587754488,0.072186447679996]],[[0.024547388777137,-0.082465916872025,-0.085348427295685],[0.011379070580006,-0.042120963335037,-0.019066073000431],[0.069914154708385,-0.025815661996603,-0.038096819072962]],[[-0.065001361072063,-0.071384400129318,-0.049785491079092],[-0.084838502109051,-0.035378184169531,-0.043495878577232],[-0.028819063678384,-0.018468178808689,-0.02585232257843]],[[-0.054283052682877,0.099011972546577,0.063279591500759],[0.11152313649654,0.084469527006149,-0.060226231813431],[-0.022182773798704,-0.010373608209193,0.017573213204741]],[[-0.011535068042576,-0.060933668166399,0.062595620751381],[0.014215830713511,-0.083366669714451,0.059130150824785],[0.024786587804556,-0.020935228094459,0.004375752992928]],[[0.061761029064655,-0.007278420496732,0.0024472055956721],[0.060646913945675,0.026383960619569,0.13954356312752],[-0.049928698688745,-0.052540101110935,0.0027823830023408]],[[0.013846898451447,0.071495279669762,0.047267597168684],[-0.12586723268032,-0.0055351508781314,0.067033492028713],[-0.12502267956734,-0.1263739913702,-0.082265548408031]],[[-0.049720577895641,-0.0040348912589252,-0.0058915093541145],[-0.038479454815388,0.024707598611712,-0.034458220005035],[0.10547789186239,-0.016736503690481,-0.064050190150738]],[[-0.042513720691204,0.0066073606722057,-0.03104785643518],[-0.027715925127268,-0.08414226770401,-0.11789342015982],[-0.038438461720943,0.0062523847445846,-0.087032712996006]],[[-0.061223100870848,-0.049786433577538,0.012828039936721],[-0.016781641170382,-0.10456855595112,-0.033569850027561],[-0.031582102179527,-0.047294192016125,-0.031940899789333]],[[-0.097897060215473,-0.078808039426804,-0.028547840192914],[-0.10165420174599,-0.10517989099026,0.00086828373605385],[-0.017425011843443,-0.021634690463543,-0.0045063910074532]],[[0.07369089871645,0.0673693343997,-0.025224532932043],[-0.043508738279343,-0.087737746536732,-0.082784429192543],[-0.11226788163185,-0.08658442646265,-0.089623734354973]],[[0.041734989732504,-0.018117714673281,-0.055335637181997],[-0.04532752558589,0.0067816530354321,0.044107135385275],[-0.057554960250854,-0.0065640225075185,0.10644758492708]],[[-0.14433054625988,-0.028440076857805,0.037414882332087],[0.031075792387128,-0.048842288553715,-0.016515171155334],[-0.025846818462014,-0.2071860730648,-0.037719585001469]],[[0.11275292187929,0.013229499571025,-0.021921427920461],[0.024604197591543,0.042290989309549,0.043744511902332],[0.073717065155506,0.083229385316372,0.0089101539924741]],[[-0.017294738441706,-0.033330477774143,-0.036655455827713],[0.030317528173327,0.018030039966106,-0.024180365726352],[0.075553998351097,-0.082160003483295,-0.036881864070892]],[[-0.16556078195572,-0.10993558168411,-0.0056228209286928],[-0.043545875698328,-0.019825113937259,-0.077086068689823],[-0.0039981938898563,0.017270090058446,0.023899985477328]],[[-0.087469637393951,0.037885084748268,-0.052664965391159],[0.0035251448862255,0.0059023527428508,-0.081718616187572],[-0.013111305423081,0.052844688296318,0.054227970540524]],[[-0.062963932752609,0.01032464299351,-0.05797491595149],[-0.11568365991116,-0.0085883215069771,-0.039938002824783],[0.026019208133221,-0.046871710568666,-0.067537724971771]],[[-0.15993006527424,-0.17767389118671,-0.077530324459076],[-0.10508867353201,-0.026362325996161,0.034058053046465],[-0.02975794300437,0.0078078317455947,0.071514330804348]],[[-0.088382348418236,-0.034726187586784,0.034102234989405],[0.056781299412251,-0.027502130717039,-0.04231459274888],[0.049083814024925,-0.041529633104801,-0.0065926900133491]],[[-0.045775458216667,-0.011995991691947,0.031254906207323],[-0.045620284974575,-0.014330103062093,0.020944233983755],[0.078105621039867,-0.072749890387058,-0.10756684094667]],[[-0.076780766248703,-0.025213044136763,-0.0022267901804298],[0.019472237676382,0.14136356115341,0.015605308115482],[0.012860129587352,0.056804969906807,-0.022759072482586]],[[-0.070004805922508,-0.095610976219177,0.033178728073835],[-0.082708239555359,-0.058005701750517,-0.014769802801311],[-0.01547818351537,-0.016244782134891,-0.073359318077564]],[[0.00015496270498261,-0.019656339660287,-0.0029399541672319],[0.0092268390581012,-0.02115329541266,0.020533174276352],[-0.10433548688889,-0.05249011516571,-0.0039872680790722]],[[0.001396979787387,-0.067322120070457,-0.09604711830616],[-0.040134575217962,-0.016918133944273,0.031995177268982],[0.0019569892901927,0.032791182398796,0.040151663124561]],[[-0.12204122543335,-0.0057058590464294,0.026844851672649],[-0.042943727225065,-0.065989322960377,-0.014285795390606],[0.090718202292919,-0.027828278020024,0.061290133744478]],[[-0.016255090013146,-0.038090065121651,-0.0053187552839518],[-0.030545178800821,-0.017277309671044,-0.057111404836178],[0.04917823150754,-0.083246402442455,0.099855378270149]],[[-0.021330965682864,0.020966140553355,-0.0031902408227324],[0.030122784897685,0.073283657431602,0.055605251342058],[-0.10634709894657,-0.028635695576668,0.024128194898367]],[[0.047453876584768,0.10516750812531,-0.033683985471725],[-0.032530963420868,0.0012661698274314,-0.062318526208401],[0.074507020413876,0.10105160623789,-0.032855954021215]],[[0.11137337982655,-0.08776880055666,-0.12431051582098],[-0.004969141446054,0.0050400914624333,-0.042311239987612],[0.04120821878314,0.075554221868515,0.014821402728558]],[[-0.15730160474777,0.003866744460538,-0.10195014625788],[-0.084357365965843,-0.014863251708448,0.019134389236569],[0.027811078354716,-0.036038566380739,0.048218261450529]],[[0.031581282615662,-0.040200553834438,-0.015249776653945],[0.036323722451925,-0.00029995132354088,-0.02386998385191],[-0.0039913123473525,0.022319110110402,-0.036461558192968]],[[0.065882422029972,0.051956877112389,-0.035782556980848],[0.0070766555145383,0.039494313299656,-0.0067440341226757],[-0.10293184220791,-0.057595893740654,0.054751884192228]],[[-0.044424135237932,0.012240829877555,-0.088905997574329],[0.022628914564848,-0.030112560838461,-0.014345971867442],[-0.025104809552431,-0.0062729208730161,-0.012740745209157]],[[-0.11394546926022,-0.092981308698654,-0.020872803404927],[0.0016860782634467,-0.049043267965317,-0.038629196584225],[-0.064810074865818,-0.10649930685759,-0.071375228464603]],[[0.069555453956127,-0.096584349870682,-0.015158796682954],[-0.011256502941251,-0.06590760499239,-0.057673402130604],[-0.098343707621098,-0.044519357383251,-0.037291098386049]],[[-0.0057360143400729,0.024160649627447,0.079179041087627],[-0.047642719000578,0.044083442538977,-0.047535952180624],[-0.0076277977786958,0.061550311744213,0.0110700186342]],[[-0.10102818906307,0.011663345620036,0.027573507279158],[-0.093325637280941,-0.045137822628021,0.064988069236279],[-0.072355568408966,0.024815319105983,0.0059844898059964]],[[0.096226200461388,0.060850333422422,0.0014392239972949],[0.0077582355588675,-0.045003019273281,0.040018673986197],[-0.016057575121522,0.034108426421881,-0.049764819443226]],[[0.02177107706666,-0.0015756154898554,-0.0083632301539183],[0.0091454964131117,0.017478747293353,0.010156321339309],[-0.029729722067714,-0.067394807934761,-0.03425433114171]],[[0.0069029033184052,0.0882268846035,-0.021177930757403],[-0.087025061249733,-0.027383940294385,0.035841781646013],[-0.021075189113617,0.018354987725616,-0.053996730595827]],[[-0.073779419064522,-0.072365902364254,0.0096969706937671],[-0.0726248472929,-0.090324871242046,-0.018816266208887],[0.06863721460104,0.10264927148819,-0.13379155099392]],[[-0.005550492554903,0.022147038951516,-0.029174238443375],[0.072798430919647,-0.0084156570956111,-0.087207861244678],[0.046333819627762,-0.044896632432938,-0.0083545334637165]],[[0.013382151722908,0.026810945942998,0.0042197620496154],[-0.0018729198491201,0.0054460312239826,-0.051182050257921],[-0.032704710960388,0.048495747148991,0.034540947526693]],[[0.056241679936647,0.12355070561171,0.076021865010262],[-0.0039435941725969,-0.01245120447129,-0.0064473622478545],[0.011145705357194,0.089113794267178,0.00054537021787837]],[[-0.034487180411816,-0.10065066814423,-0.068840332329273],[-0.0048128212802112,-0.012369057163596,-0.052515801042318],[-0.0030446785967797,-0.053828861564398,0.010122057981789]],[[-0.11746103316545,-0.00092507037334144,-0.016563070937991],[-0.053064402192831,-0.074739016592503,-0.021313907578588],[0.085839599370956,0.062288247048855,0.020947482436895]],[[-0.016110744327307,-0.052217427641153,-0.029950277879834],[-0.014320693910122,0.04584052041173,0.074776723980904],[-0.05378507822752,-0.040576264262199,0.068743638694286]],[[-0.097052946686745,0.0017508311429992,-0.0060958256945014],[-0.079470135271549,-0.10895921289921,0.026450963690877],[-0.0061335819773376,-0.083286620676517,-0.025705803185701]],[[-0.021758133545518,0.034160915762186,-0.010940259322524],[-0.065811768174171,-0.01391847897321,0.0048013632185757],[-0.092136837542057,-0.043271940201521,0.019963946193457]],[[0.007031680084765,0.033135078847408,0.12318933755159],[0.039484888315201,-0.039699338376522,-0.028362100943923],[-0.012574390508235,-0.080601617693901,0.028093447908759]],[[-0.017697144299746,-0.011874323710799,-0.054094217717648],[0.014362219721079,0.014617948792875,-0.021178742870688],[-0.039902396500111,-0.017686581239104,0.019216375425458]],[[-0.055439561605453,0.027857355773449,0.036365061998367],[0.024339497089386,0.0061001358553767,-0.0045324969105422],[-0.10027598589659,-0.07467033714056,-0.022923542186618]],[[-0.098497159779072,0.00099909189157188,-0.012673039920628],[0.11170935630798,0.12897634506226,0.030900306999683],[0.062259346246719,-0.029928801581264,-0.06947398930788]],[[-0.043484598398209,0.012352895922959,0.02361479587853],[0.13471546769142,-0.019422885030508,-0.040620923042297],[0.0028175082989037,-0.025311481207609,-0.031587831676006]],[[0.059005372226238,0.053156562149525,-0.014680188149214],[-0.013813393190503,-0.01065198238939,0.1043476909399],[-0.0033396368380636,0.027114685624838,0.007977039553225]],[[-0.15939885377884,-0.031770080327988,-0.0035631072241813],[-0.047665301710367,0.095485851168633,0.046050820499659],[0.002272286452353,-0.046373214572668,-0.01506563834846]],[[0.017994340509176,-0.030458450317383,-0.037298887968063],[0.075741276144981,-0.036605712026358,-0.11773920804262],[0.021615527570248,0.049095887690783,0.12874484062195]],[[-0.055067852139473,-0.055382318794727,0.069215387105942],[-0.059328302741051,0.0059994226321578,0.10950869321823],[-0.0045570568181574,0.023505307734013,0.058479212224483]],[[-0.10606723278761,-0.062507770955563,-0.063342578709126],[-0.033145435154438,-0.053807787597179,0.047629501670599],[-0.013854835182428,-0.02201703377068,-0.024584831669927]],[[-0.13976910710335,-0.12827889621258,-0.054578542709351],[-0.049500860273838,0.1982059776783,-0.10273943841457],[0.064040325582027,0.1175394654274,-0.10384953767061]],[[-0.25418829917908,-0.13675709068775,-0.10587560385466],[0.060549050569534,0.046332120895386,0.0095542902126908],[-0.050106022506952,-0.064231157302856,0.0014074244536459]],[[-0.094590656459332,-0.074224308133125,-0.039746943861246],[0.084348373115063,0.034848921000957,-0.060341954231262],[-0.0033045234158635,0.034763135015965,0.027934823185205]],[[-0.019604412838817,0.00105137785431,0.08068235963583],[0.01995961740613,0.030947539955378,-0.03010818362236],[-0.12945021688938,0.03419453650713,0.085669130086899]],[[0.09640746563673,0.0036231367848814,0.042682718485594],[-0.0058019873686135,-0.065870493650436,0.046360053122044],[-0.0046187052503228,0.065344616770744,0.027421344071627]],[[0.07793004065752,-0.057820122689009,-0.047459091991186],[0.085680648684502,-0.022498842328787,0.10602337867022],[-0.081168621778488,0.058398403227329,0.11884719133377]],[[-0.014224307611585,-0.027755107730627,-0.032093215733767],[0.037600465118885,-0.0024680155329406,-0.012002606876194],[-0.11461532115936,-0.045965250581503,0.054379284381866]],[[0.007484647911042,-0.0098798368126154,0.043815955519676],[-0.044696446508169,-0.091357499361038,-0.053469456732273],[0.043218638747931,-0.04273508861661,-0.05446806922555]],[[0.070756681263447,0.034297399222851,0.071304202079773],[0.024719739332795,0.017654350027442,0.017591316252947],[0.0016408553346992,0.00095473299734294,-0.030043227598071]],[[0.011842983774841,0.016631511971354,0.042133703827858],[-0.025681147351861,0.022062169387937,0.021871017292142],[-0.095539592206478,-0.021938985213637,0.07059346139431]],[[0.021566584706306,0.020130084827542,-0.05684432387352],[-0.011323279701173,0.032789587974548,-0.0341189019382],[0.038147501647472,-0.079015284776688,0.014071568846703]],[[0.045414060354233,0.036579269915819,-0.11065366864204],[-0.043513815850019,0.0079082250595093,0.042617287486792],[0.01940506696701,-0.07048986107111,-0.042681269347668]],[[0.014391222037375,-0.077585406601429,-0.085926897823811],[-0.11321108043194,-0.029674377292395,-0.07355260103941],[0.071982860565186,0.071366205811501,0.010755819268525]],[[-0.012394225224853,-0.11992174386978,0.011208678595722],[0.052737765014172,0.049077861011028,0.02006446942687],[0.0070106838829815,-0.018153924494982,-0.003038095543161]],[[-0.0062231691554189,-0.11312332004309,-0.015317682176828],[-0.077873945236206,-0.005119273904711,0.028915163129568],[0.1126451715827,0.082403607666492,0.037513043731451]],[[-0.04308158159256,0.0087140686810017,-0.050177719444036],[0.0014195455005392,0.01707680337131,-0.053625106811523],[0.015785247087479,0.025584544986486,0.081661127507687]],[[-0.05428659170866,0.051688753068447,0.034059219062328],[0.030423875898123,0.0027734232135117,-0.033397380262613],[-0.026715440675616,-0.034926597028971,-0.0029200315475464]],[[0.022580439224839,-0.056183107197285,0.0053796009160578],[-0.0069670495577157,0.008419874124229,-0.027467042207718],[-0.010340177454054,-0.086618065834045,-0.024741681292653]],[[-0.07365494966507,0.045606356114149,-0.010864392854273],[-0.054507024586201,-0.10995963960886,-0.0013811513781548],[0.044720787554979,-0.056435395032167,0.0088830525055528]],[[-0.053386658430099,0.037222530692816,0.045511212199926],[-0.063954219222069,-0.11419708281755,0.059399634599686],[0.013581656850874,-0.089406229555607,0.10063590854406]],[[-0.05505196005106,-0.046073418110609,0.075147107243538],[0.047093689441681,0.038929454982281,0.023555260151625],[-0.052115306258202,-0.077334575355053,-0.044576361775398]],[[0.085342660546303,0.034576654434204,-0.070656649768353],[-0.13549926877022,0.055804673582315,0.028118954971433],[-0.038268379867077,0.022446267306805,0.07500808686018]],[[0.049832344055176,-0.042406369000673,-0.052399523556232],[0.034426897764206,-0.028446163982153,0.00064250425202772],[-0.024709418416023,-0.019688470289111,-0.061555996537209]],[[-0.031289804726839,0.050047121942043,0.013879886828363],[-0.088254496455193,-0.093012675642967,-0.045682586729527],[-0.0062747290357947,-0.026143319904804,-0.019102552905679]],[[0.018161699175835,0.0087326988577843,-0.040871877223253],[-0.058089423924685,0.00075242377351969,-0.0011992600047961],[-0.033728893846273,0.048648670315742,-0.0042907032184303]],[[0.11567801982164,0.054826185107231,-0.03347672149539],[0.070582687854767,0.059570945799351,-0.0020642743911594],[0.068370699882507,0.1356593221426,0.13268613815308]],[[0.047540135681629,0.10512702167034,-0.013024558313191],[0.061386123299599,-0.02296382561326,0.0077160261571407],[0.048866018652916,0.11814122647047,0.098805867135525]],[[-0.094772383570671,0.06720757484436,0.076578058302402],[-0.035479616373777,-0.028660854324698,-0.03818640857935],[0.078088574111462,-0.11571060866117,-0.050440859049559]],[[0.015736984089017,0.047011736780405,-0.014068132266402],[0.082415945827961,0.032715085893869,-0.038785167038441],[-0.020359843969345,-0.015910755842924,-0.029133504256606]],[[0.063151217997074,0.024235563352704,0.034110620617867],[0.032290533185005,-0.040234606713057,-0.048394128680229],[-0.028324004262686,-0.0071121812798083,0.067139945924282]],[[0.063365191221237,0.01038795337081,-0.042678594589233],[0.036388341337442,-0.045015934854746,-0.016605079174042],[-0.0089134704321623,-0.02884672023356,0.038692552596331]],[[-0.041878927499056,0.013119503855705,0.023825535550714],[-0.057805147022009,-0.0098318122327328,-0.027066022157669],[0.14600004255772,0.016096830368042,-0.007297707721591]],[[0.020289193838835,-0.058476753532887,-0.00021874238154851],[-0.0063916565850377,0.023113841190934,0.083718009293079],[-0.13833647966385,-0.069108262658119,0.0014595765387639]],[[-0.022170281037688,-0.085369758307934,0.0051897284574807],[0.070701204240322,-0.039402667433023,0.030163520947099],[-0.058771781623363,-0.076028056442738,0.0013497584732249]]],[[[-0.057399976998568,0.031377382576466,0.071011446416378],[0.016567932441831,0.017293242737651,-0.010923183523118],[-0.016832761466503,-0.027454126626253,-0.0043145422823727]],[[0.040122393518686,0.017306718975306,0.032927941530943],[-0.029990153387189,-0.014263838529587,0.037858054041862],[-0.052712090313435,0.036847647279501,0.08857150375843]],[[-0.032829258590937,0.054843574762344,-0.025302583351731],[-0.05958790704608,-0.037692729383707,-0.0055126706138253],[0.0056359199807048,0.070365011692047,0.00050827593076974]],[[-0.067105107009411,-0.006451865658164,-0.025891615077853],[-0.0043774032965302,0.037771228700876,-0.048911798745394],[0.032783936709166,-0.067242607474327,0.020255533978343]],[[0.0033600095193833,-0.022610757499933,-0.022772416472435],[0.0084814233705401,-0.017398789525032,-0.039779908955097],[0.030980782583356,0.03511967509985,-0.018423058092594]],[[-0.08394318073988,0.0038316370919347,-0.0010694336378947],[-0.0079572163522243,-0.087989702820778,-0.069915652275085],[-0.039822306483984,0.11358840018511,0.053934633731842]],[[-0.061704311519861,0.0080997096374631,0.0092788264155388],[0.01340293046087,-0.0031121450010687,0.038913991302252],[-0.001802391721867,0.086925327777863,-0.049311466515064]],[[-0.024057911708951,0.060630425810814,0.037835754454136],[-0.0034673237241805,-0.022433472797275,-0.01488883420825],[-0.025356693193316,0.01258784532547,-0.00069684587651864]],[[0.014780982397497,0.062099039554596,0.018110029399395],[-0.005984858609736,-0.0040616802871227,-0.004051161929965],[-0.084842912852764,-0.0099742766469717,0.076970495283604]],[[0.027676977217197,0.035551760345697,-0.062736324965954],[0.046964552253485,-0.052550382912159,-0.028589673340321],[-0.024143017828465,-0.04971494525671,0.022210823372006]],[[0.075028315186501,-0.012034022249281,0.02012218721211],[-0.090210884809494,0.041289854794741,0.034109406173229],[-0.012350438162684,-0.05061687156558,0.0090210800990462]],[[0.004980206489563,0.011490535922348,-0.0052180434577167],[-0.0046104122884572,0.013429894112051,-0.066051006317139],[0.037200786173344,-0.052143350243568,0.0042084190063179]],[[-0.011057587340474,0.010145870968699,0.012160143814981],[-0.00042152739479207,0.080133184790611,-0.023473292589188],[-0.087729714810848,0.0024660031776875,-0.099543526768684]],[[0.069766834378242,-0.054982099682093,0.028033457696438],[-0.045038513839245,-0.11744628101587,0.051506791263819],[0.024495102465153,-0.021780585870147,0.053927898406982]],[[0.097918272018433,0.022457037121058,-0.014845975674689],[-0.033230058848858,0.044521514326334,0.061385799199343],[-0.10296078026295,0.034819696098566,0.037987943738699]],[[-0.0054992004297674,-0.057827685028315,-0.0091551598161459],[0.04953008890152,0.090349346399307,-0.064446672797203],[-0.020478127524257,0.031328026205301,-0.017275193706155]],[[-0.001192290452309,-0.086359120905399,-0.020616583526134],[0.0058173793368042,0.022074174135923,0.019004145637155],[-0.010159684345126,0.053824312984943,0.078595623373985]],[[0.034121509641409,0.030529264360666,-0.07011853903532],[-0.028186501935124,0.0086599281057715,0.031261961907148],[-0.036549437791109,0.0091666914522648,0.02167184650898]],[[0.0038388988468796,0.023427646607161,0.044347047805786],[0.019635297358036,-0.0066369688138366,-0.054659958928823],[0.037161216139793,-0.061568774282932,0.05709046125412]],[[-0.011811689473689,0.0071068606339395,0.059468254446983],[-0.012155969627202,-0.060913242399693,0.032562606036663],[0.042268618941307,-0.012597480788827,-0.019547108560801]],[[-0.014398970641196,0.063427783548832,-0.02366915345192],[-0.053957115858793,0.099598929286003,0.0058661811053753],[0.0019235257059336,-0.11107707023621,-0.0024492926895618]],[[-0.046363834291697,0.038044951856136,0.059263683855534],[-0.026734076440334,-0.028496580198407,-0.047801245003939],[0.058426722884178,-0.012523209676147,-0.0069542904384434]],[[-0.0040534944273531,-0.058009546250105,0.043638341128826],[-0.010891857556999,0.037195958197117,-0.027275824919343],[-0.053567226976156,-0.018451683223248,0.037790473550558]],[[-0.027812581509352,0.046832870692015,-0.019517742097378],[0.041562605649233,0.067378275096416,-0.058190122246742],[-0.040181864053011,0.033583998680115,-0.045664697885513]],[[0.012320040725172,-0.014311927370727,0.034977704286575],[0.015198263339698,-0.027008395642042,-0.066714182496071],[-0.044041004031897,-0.027809783816338,0.074576757848263]],[[0.032819762825966,-0.034630309790373,-0.043275769799948],[0.0032631792128086,0.0078783184289932,0.047585189342499],[-0.034114759415388,-0.042133770883083,0.043048854917288]],[[0.016337418928742,-0.07741167396307,0.0079917991533875],[0.023844482377172,0.021224115043879,-0.027127647772431],[0.0024207613896579,-0.047647703438997,0.021886536851525]],[[0.053721785545349,0.045035790652037,0.0020448751747608],[-0.043522860854864,-0.023197922855616,0.036737192422152],[0.048092398792505,-0.03280395641923,-0.0036813446786255]],[[-0.010268018580973,-0.065452583134174,-0.020565878599882],[-0.030400248244405,-0.063694536685944,0.011019674129784],[-0.03553843870759,0.01507303211838,0.084859669208527]],[[-0.066884234547615,0.017717652022839,0.032917127013206],[0.006543408613652,-0.078854337334633,-0.013462343253195],[0.029503785073757,-0.045264784246683,0.025644497945905]],[[0.0088030723854899,-0.012849771417677,-0.099370300769806],[-0.044056188315153,0.033176656812429,0.020821219310164],[-0.0078530022874475,0.018220312893391,-0.028927348554134]],[[0.041529409587383,-0.062703318893909,0.0010078811319545],[0.071090556681156,0.0096024964004755,-0.075264297425747],[0.041607163846493,-0.03762860968709,0.034685656428337]],[[-0.025973625481129,0.019613033160567,0.05846469476819],[-0.021674139425159,-0.0047261100262403,-0.067703172564507],[0.01502831839025,0.0056816549040377,-0.10147403180599]],[[0.036697067320347,-0.018516277894378,0.014342459850013],[0.02093100361526,-0.075567357242107,-0.041348110884428],[-0.065996997058392,-0.0045304247178137,0.027488023042679]],[[-0.0098669305443764,-0.011969771236181,0.032468970865011],[-0.014216946437955,0.10161908715963,-0.018390389159322],[-0.029633287340403,-0.0046883332543075,-0.025263598188758]],[[-0.038400676101446,-0.070026442408562,0.089749872684479],[-0.090248890221119,0.076069384813309,0.0039179469458759],[-0.03598627448082,0.055197168141603,0.010650628246367]],[[-0.0087407054379582,0.01754173822701,-0.020344097167253],[-0.033661831170321,-0.028304060921073,-0.024970768019557],[-0.033464699983597,0.047454543411732,-0.013861166313291]],[[-0.031810946762562,-0.027498092502356,0.055808752775192],[0.025097098201513,-0.036053773015738,-0.02988669835031],[0.0085800299420953,-0.058993194252253,0.0038624301087111]],[[0.011178622953594,0.087616637349129,-0.020429059863091],[0.028322529047728,0.017712457105517,0.022931715473533],[-0.006190799176693,-0.012893553823233,0.035487975925207]],[[0.017919357866049,-0.013237146660686,0.080342233181],[0.0017153593944386,0.0047882255166769,-0.016621563583612],[-0.024509871378541,-0.064102463424206,0.067633233964443]],[[0.041010566055775,0.013722599484026,0.039894800633192],[0.05898167565465,-0.039260055869818,0.020770229399204],[0.0061469622887671,0.013835266232491,-0.054838705807924]],[[0.025701990351081,0.037633243948221,-0.029144085943699],[0.044699903577566,-0.021237319335341,-0.0070467521436512],[0.02757409773767,-0.048971608281136,-0.016089091077447]],[[-0.0057588182389736,-0.011990014463663,-0.058481805026531],[0.040767405182123,-0.013476589694619,0.018814068287611],[-0.0093593699857593,0.014379411004484,0.029445234686136]],[[0.076747603714466,0.042716067284346,-0.014396840706468],[0.11415089666843,-0.019662177190185,0.093801476061344],[-0.024732911959291,0.0054975906386971,-0.0455950088799]],[[0.018812544643879,0.040474992245436,0.034204352647066],[-0.040057882666588,0.0011147682089359,0.070684820413589],[-0.071062974631786,0.058986414223909,0.0097460839897394]],[[-0.078430473804474,0.048990346491337,0.042953416705132],[-0.043829068541527,0.031960483640432,0.020613888278604],[0.010981578379869,0.12557856738567,0.0039952956140041]],[[0.01445406768471,0.040608190000057,-0.032106917351484],[-0.047431368380785,0.014800431206822,-0.027452636510134],[-0.033944003283978,-0.040495190769434,-0.059831030666828]],[[0.042712569236755,0.021157724782825,-0.042512476444244],[0.010370017960668,0.037406098097563,-0.011819646693766],[-0.021104216575623,0.027409851551056,-0.037296205759048]],[[-0.056172478944063,-0.011403142474592,-0.0010661364067346],[0.045511275529861,-0.023895617574453,0.065578922629356],[-0.062863953411579,-0.0036171893589199,-0.026073319837451]],[[-0.0013605082640424,-0.038173075765371,0.0067609292455018],[-0.036791037768126,0.051966521888971,-0.062580220401287],[0.052274957299232,0.067282490432262,0.015882695093751]],[[-0.020042736083269,0.038176994770765,-0.0090618673712015],[-0.0015824207803234,-0.084689453244209,0.015175119042397],[0.10494031012058,-0.041419982910156,-0.015427188016474]],[[-0.00011398040805943,-0.007815832272172,-0.0027408546302468],[-0.050287447869778,0.038940757513046,-0.027026902884245],[-0.020238194614649,0.050359051674604,0.040130037814379]],[[-0.033426325768232,0.032747067511082,0.020326446741819],[0.037923652678728,0.11856025457382,0.028643783181906],[0.051542937755585,0.060785971581936,0.066614292562008]],[[-0.0067127859219909,0.11719158291817,-0.0037293278146535],[0.0078850891441107,0.036069720983505,0.01546364929527],[0.015298845246434,0.082326143980026,0.0086742788553238]],[[0.018497599288821,0.056375674903393,-0.011555621400476],[0.005579000338912,0.061884053051472,-0.034834127873182],[0.0048391683958471,-0.0047198492102325,-0.053289480507374]],[[-0.0096205519512296,0.032993707805872,0.01831965893507],[0.039259050041437,0.047382842749357,-0.031742550432682],[0.0089726522564888,0.075518749654293,-0.019421566277742]],[[-0.022916479036212,-0.018818626180291,0.028559193015099],[-0.028293989598751,-0.040081702172756,0.080278910696507],[0.030925642699003,0.068082377314568,-0.014055972918868]],[[-0.015367621555924,-0.076665937900543,0.02872403524816],[0.0098820216953754,-0.03548551723361,0.036937963217497],[-1.303838507738e-05,-0.027419397607446,-0.066535905003548]],[[-0.035289879888296,-0.017268681898713,-0.067139528691769],[-0.086707524955273,0.007395704742521,-0.032061144709587],[0.036089036613703,-0.084379322826862,0.047600790858269]],[[-0.011248530820012,0.052413828670979,0.034815307706594],[-0.035605452954769,-0.028728771954775,0.10714508593082],[-0.0028220245148987,0.023047108203173,0.090415425598621]],[[-0.068276949226856,-0.039007518440485,0.018744161352515],[0.02313657104969,0.021423205733299,-0.015582519583404],[0.052937220782042,-0.013009141199291,-0.024287885054946]],[[-0.020887680351734,0.016603965312243,0.025906255468726],[-0.020819921046495,0.048514004796743,-0.0040737856179476],[0.0010152974864468,-0.078194662928581,-0.054748725146055]],[[-0.01831902936101,-0.0053879907354712,-0.010182062163949],[0.02154878526926,0.051978923380375,-0.024508243426681],[0.012202505022287,-0.033045429736376,0.028906190767884]],[[-0.0039257509633899,-0.084816224873066,-0.020024627447128],[0.0072843278758228,-0.043518342077732,0.013024593703449],[0.0023646871559322,0.025466047227383,-0.031990427523851]],[[-0.015118410810828,-0.06585381925106,0.014336087740958],[-0.078969769179821,0.027342466637492,0.015235062688589],[-0.035797100514174,0.0921630859375,-0.048660974949598]],[[0.042190603911877,-0.050693619996309,-0.04929568246007],[-0.0031922846101224,0.016023462638259,-0.015385481528938],[0.028374098241329,0.013525885529816,-0.0063700554892421]],[[0.04021142795682,0.010542118921876,0.10086544603109],[0.03204808011651,-0.033117059618235,-0.032926496118307],[-0.021426133811474,-0.044458977878094,-0.0061288885772228]],[[0.0038446041289717,-0.021909900009632,-0.041549775749445],[-0.0048121083527803,-0.016552995890379,0.019182132557034],[-0.032393414527178,0.044407110661268,-0.01751347258687]],[[-0.00066648947540671,0.023659180849791,0.00043108846875839],[0.083729438483715,0.033365916460752,-0.087713196873665],[0.017864694818854,0.041696116328239,-0.039538010954857]],[[0.031052833423018,-0.020308081060648,-0.0045283515937626],[-0.03065299987793,0.10818812996149,0.05711455270648],[0.0060460516251624,0.017541721463203,-0.03594559431076]],[[0.036614533513784,0.021827949211001,-0.072204440832138],[0.017617404460907,0.015212868340313,0.066618591547012],[-0.02582174167037,0.034097481518984,0.053682625293732]],[[-0.011737736873329,0.013017624616623,0.023702310398221],[-0.003849171102047,0.07659424841404,-0.0056963982060552],[-0.036166474223137,-0.015022551640868,0.067090265452862]],[[-0.0073464792221785,-0.080450259149075,-0.019546130672097],[-0.073561258614063,-0.069121435284615,0.032491058111191],[-0.084445767104626,0.06020737811923,0.036244474351406]],[[0.029156889766455,0.0014196180272847,-0.089887000620365],[-0.061296295374632,0.034507468342781,0.013733044266701],[0.0043682660907507,-0.096687182784081,0.038188308477402]],[[-0.020439630374312,-0.060811530798674,-0.011829511262476],[-0.0083659291267395,0.052040636539459,0.0023077584337443],[0.031831882894039,0.06910914182663,0.0083169685676694]],[[0.050434164702892,-0.017495896667242,-0.054788798093796],[-0.016662709414959,0.047397494316101,-0.035564497113228],[0.031473908573389,-0.023274114355445,-0.034146096557379]],[[0.026442494243383,-0.01041282620281,0.0068556442856789],[-0.0085363909602165,-0.018848940730095,-0.0033423723652959],[-0.015257590450346,0.0056646349839866,-0.046901699155569]],[[0.025700200349092,0.01741898432374,-0.043561477214098],[0.05238301306963,0.038554914295673,0.037150003015995],[-0.061520118266344,0.05328157171607,-0.043621074408293]],[[0.10597310215235,0.01307004224509,-0.012910650111735],[-0.064690686762333,0.07321348041296,-0.097770310938358],[-0.039387602359056,0.0053393268026412,-0.056605435907841]],[[-0.016008788719773,-0.041390363126993,0.064838007092476],[0.010313460603356,-0.0031190933659673,-0.041124559938908],[-0.0095408577471972,0.054013755172491,0.0036479246336967]],[[0.0054459301754832,-0.026364795863628,0.04420306161046],[-0.019594214856625,0.012555827386677,0.02353055588901],[-0.029557280242443,0.062393579632044,-0.081035651266575]],[[-0.015228307805955,0.045838207006454,0.040580406785011],[-0.089744068682194,-0.016664434224367,0.04827544465661],[0.034401699900627,-0.013311959803104,0.0085550053045154]],[[-0.030683683231473,-0.043600734323263,-0.0055858287960291],[-0.072771325707436,0.049141343683004,0.048760425299406],[-0.0027772444300354,-0.012148212641478,0.00052389217307791]],[[0.036369629204273,-0.11340042203665,-0.0086765270680189],[-0.016880426555872,-0.027738142758608,0.0078983642160892],[-0.0061762011609972,-0.017501965165138,0.001646877033636]],[[0.054127722978592,-0.022169293835759,-0.0071943909861147],[-0.026464398950338,0.0046145850792527,0.043185215443373],[0.0542813539505,0.056186012923717,-0.036964740604162]],[[-0.058556154370308,0.012073488906026,-0.018869280815125],[0.0058296453207731,-0.030837727710605,0.044216830283403],[0.079886384308338,-0.022788586094975,0.030450457707047]],[[0.0031917346641421,0.055775430053473,0.020416203886271],[0.00042504561133683,0.023309074342251,-0.032198052853346],[-0.075399093329906,0.023103134706616,0.031578090041876]],[[0.015533139929175,-0.01083050109446,-0.010107018984854],[0.05155112221837,-0.019235529005527,0.0031365882605314],[-0.015592346899211,-0.039609782397747,-0.014804674312472]],[[-0.011923766694963,0.057772744446993,-0.026082644239068],[-0.061598390340805,0.037161391228437,0.04090341553092],[0.090919643640518,-0.0045931302011013,-0.12369476258755]],[[-0.062493599951267,0.0092972824349999,0.021294053643942],[-0.029608409851789,0.080660186707973,0.051067754626274],[0.012774536386132,0.039585024118423,0.019872929900885]],[[-0.088218055665493,-0.028689347207546,0.018373699858785],[-0.065059594810009,-0.021176867187023,0.05425687879324],[-0.046320490539074,-0.011075856164098,0.0049014515243471]],[[0.0056004892103374,-0.023240931332111,-0.063078857958317],[0.0037032684776932,0.019175617024302,0.025225883349776],[-0.0050815897993743,-0.03903378918767,0.010969541035593]],[[0.12797717750072,-0.10301112383604,-0.016797685995698],[-0.0062408810481429,0.064160063862801,-0.036823481321335],[-0.0082826605066657,0.0012333507183939,0.020965112373233]],[[-0.061165098100901,0.035212300717831,-0.024275681003928],[-0.032517217099667,-0.019074169918895,0.025391539558768],[-0.0035202063154429,0.020866783335805,-0.032392211258411]],[[0.10950639098883,0.00054897728841752,-0.032325383275747],[0.046812996268272,0.014233268797398,-0.061216589063406],[0.0094333533197641,-0.13350631296635,-0.035826038569212]],[[-0.023695720359683,-0.029837720096111,0.026622811332345],[-0.033494934439659,-0.026922496035695,0.06124011054635],[-0.075600661337376,0.029177576303482,0.034777645021677]],[[0.04006477817893,-0.0052548442035913,0.012255942448974],[0.022856438532472,0.049604412168264,-0.054675374180079],[-0.013394009321928,0.017884301021695,0.066407144069672]],[[0.010469444096088,-0.093394227325916,-0.038227267563343],[-0.056574854999781,-0.00020498549565673,-0.0077460338361561],[-0.0073030991479754,-0.044975906610489,0.065309807658195]],[[-0.029024921357632,0.047638393938541,-0.011838350445032],[0.0078942822292447,0.07866345345974,0.061319638043642],[0.011463349685073,0.0043686046265066,-0.051878616213799]],[[-0.0052591459825635,0.013534917496145,-0.038959704339504],[-0.0044590765610337,-0.052747596055269,0.022674525156617],[0.062874503433704,0.039967689663172,0.010654080659151]],[[-0.009511549025774,-0.098663054406643,0.014059566892684],[-0.01593304425478,0.02468940615654,0.011293269693851],[0.022201014682651,0.079935267567635,0.027633970603347]],[[0.0072311572730541,-0.074808776378632,0.0080898534506559],[-0.017089014872909,-0.015480465255678,-0.0107581326738],[0.021519707515836,-0.0063915285281837,0.094742380082607]],[[-0.060126222670078,0.0055616921745241,0.017591645941138],[0.008547461591661,-0.034009929746389,-0.0083284173160791],[-0.057959798723459,0.055837851017714,-0.071954257786274]],[[-0.05697975680232,-0.071273319423199,0.028153328225017],[0.032719854265451,-0.05434949696064,0.012107632122934],[0.055625081062317,-0.038589254021645,0.052885591983795]],[[-0.0047362404875457,-0.014673323370516,-0.0017298426246271],[0.063248470425606,-0.087156176567078,0.049119923263788],[-0.0032569959294051,-0.049369886517525,0.0585055090487]],[[0.021543068811297,-0.055594291538,0.022308338433504],[0.038915503770113,-0.0062639182433486,-0.056894037872553],[-0.03513028845191,0.023294674232602,0.036525022238493]],[[0.051274888217449,-0.031400974839926,-0.014407373033464],[-0.020905120298266,-0.0086916694417596,-0.0099115017801523],[0.026554703712463,-0.090859539806843,-0.030891869217157]],[[0.0072214496321976,-0.0077738268300891,0.022326136007905],[0.077480226755142,0.089659973978996,-0.034183960407972],[-0.031225709244609,-0.042152415961027,-0.022526288405061]],[[0.053345929831266,-0.04082927852869,-0.022947575896978],[-0.018345871940255,0.055057246237993,-0.0051075681112707],[0.012559121474624,-0.0046590031124651,-0.059646748006344]],[[0.01797186397016,0.018738962709904,-0.0030661155469716],[0.0059796986170113,-0.036569003015757,0.047826170921326],[0.0043405913747847,0.09960500895977,-0.028222279623151]],[[-0.034866597503424,-0.13701741397381,-0.056123144924641],[-0.005979108158499,-0.026081930845976,0.014946402981877],[-0.032389331609011,-0.023846378549933,-0.066608153283596]],[[-0.0084848897531629,0.003444712376222,-0.020313050597906],[-0.013143370859325,0.0038213701918721,-0.03546354547143],[-0.0045285257510841,0.047251228243113,-0.016283040866256]],[[0.023321745917201,0.02274720184505,0.0047980113886297],[-0.076245673000813,0.040735740214586,-0.039902478456497],[0.096695356070995,0.031662825495005,0.00038467918056995]],[[-0.042364601045847,0.020610990002751,-0.0013112424639985],[0.0095459027215838,-0.018172595649958,-0.011134460568428],[-0.058382116258144,0.035378195345402,0.025387160480022]],[[0.0019108414417133,-0.022976491600275,0.0036401473917067],[0.0065915849991143,0.0098662609234452,-0.082290641963482],[0.011595569550991,-0.04405539855361,0.073180191218853]],[[0.021612405776978,-0.017973624169827,-0.0012858791742474],[-0.030450658872724,0.019533555954695,0.012261739932001],[-0.03749381005764,0.049951422959566,0.02980293892324]],[[0.0033408873714507,-0.0042354092001915,0.012247115373611],[-0.023738533258438,0.013201404362917,0.026815883815289],[-0.0078819068148732,-0.03438875451684,0.016717894002795]],[[0.085433579981327,0.035798206925392,-0.0040393485687673],[0.061894174665213,-0.097707524895668,0.07863812148571],[-0.069099128246307,0.010613737627864,-0.046283610165119]],[[-0.10930965840816,0.023553820326924,0.0088378181681037],[-0.093738049268723,0.063290968537331,0.084920465946198],[-0.051875673234463,0.072026021778584,-0.0014747626846656]],[[-0.016346883028746,-0.012077541090548,0.028026839718223],[-0.027367187663913,-0.016278253868222,0.0049266805872321],[0.0087227141484618,-0.041644245386124,0.046441495418549]],[[-0.032249953597784,0.032925806939602,0.022406188771129],[-0.020379163324833,-0.078888759016991,0.057990770787001],[-0.01770350895822,0.070062629878521,0.047345161437988]],[[-0.043216556310654,0.0030795314814895,-0.10152319073677],[0.074051082134247,0.012136589735746,0.0073619950562716],[-0.019750863313675,-0.047222927212715,-0.017112733796239]],[[-0.030402371659875,-0.074450060725212,-0.025332102552056],[-0.084322668612003,0.022468278184533,-0.017100859433413],[0.024243738502264,-0.043085943907499,-0.042988434433937]],[[-0.025729477405548,0.016184179112315,-0.01139478571713],[0.0065349503420293,0.0061784139834344,-0.020623030140996],[0.036661148071289,0.064054325222969,-0.079959034919739]],[[-0.010814289562404,0.0013772018719465,-0.03200701251626],[-0.061865862458944,-0.032133389264345,-0.0084877014160156],[-0.029855759814382,0.053045388311148,0.0378752425313]],[[-0.02469103038311,0.060737263411283,0.016240451484919],[-0.016582714393735,0.029853673651814,0.022939855232835],[-0.0056372634135187,-0.030219743028283,0.021876012906432]],[[0.039815668016672,-0.044626642018557,-0.0053924107924104],[0.033237867057323,-0.020995868369937,-0.026574762538075],[-0.0029069571755826,0.0571169257164,-0.017958406358957]],[[0.016684003174305,0.057377487421036,0.0032979291863739],[-0.022714963182807,-0.00061582145281136,-0.039200235158205],[-0.029836239293218,-0.018236497417092,0.020854506641626]]],[[[0.0010796278947964,-0.085456863045692,-0.10715219378471],[0.074861161410809,0.070459492504597,-0.044390685856342],[0.046389825642109,0.04243478178978,0.083294354379177]],[[-0.056827258318663,-0.089266195893288,0.086761310696602],[0.089476674795151,0.093837715685368,0.068538226187229],[0.033789832144976,0.095858693122864,0.010581684298813]],[[0.095249518752098,0.03211771696806,0.040265504270792],[-0.079015970230103,-0.034739810973406,-0.015841986984015],[-0.061720132827759,0.036099810153246,0.027899933978915]],[[0.080541335046291,0.0053337197750807,0.023622330278158],[0.044769782572985,-0.010773493908346,-0.034441456198692],[0.040509637445211,-0.03732018917799,0.016659326851368]],[[0.0077341008000076,-0.061911683529615,0.079896003007889],[-0.020702138543129,-0.082061886787415,0.01051230635494],[0.074467778205872,0.073119312524796,-0.13519175350666]],[[0.012434378266335,0.069483175873756,0.012284797616303],[-0.047678727656603,-0.019115801900625,0.040606886148453],[-0.17346686124802,-0.05046546086669,0.034161623567343]],[[0.03682453930378,-0.043229311704636,0.037205711007118],[0.076622247695923,0.14320144057274,-0.11399826407433],[-0.043259143829346,-0.037977449595928,-0.060441210865974]],[[0.063471503555775,0.15736071765423,-0.0032512722536922],[-0.00073866645107046,0.049010939896107,0.089913442730904],[-0.10617239028215,-0.11044988036156,0.1104614213109]],[[-0.035767078399658,-0.040230724960566,0.079496748745441],[0.010505461134017,0.047376397997141,-0.094233147799969],[-0.014612047933042,0.00050171971088275,0.14979559183121]],[[-0.034557800740004,-0.056576948612928,0.12106732279062],[-0.062456667423248,-0.034568820148706,0.021296812221408],[0.037681892514229,-0.012600528076291,-0.048644229769707]],[[0.10931003838778,-0.015190991573036,0.10852229595184],[-0.0025876534637064,-0.041995625942945,0.10113164782524],[-0.12360644340515,-0.089526325464249,0.074610039591789]],[[0.11906146258116,-0.09008127450943,0.0020292333792895],[0.011681883595884,0.082949459552765,-0.001414623693563],[0.10815563797951,-0.013053829781711,0.15401412546635]],[[-0.011589537374675,-0.099642038345337,0.026031609624624],[0.050434246659279,-0.010123743675649,-0.07488390058279],[-0.10449463874102,0.049802083522081,-0.0073649599216878]],[[0.11882378160954,0.012730528600514,-0.12971146404743],[-0.072021782398224,-0.034697148948908,-0.10389380902052],[-0.0069551691412926,-0.093196205794811,-0.10246592015028]],[[0.050574537366629,0.11579582095146,-0.036504749208689],[0.047551121562719,-0.0080375289544463,-0.053529463708401],[-0.060606256127357,0.0031099263578653,0.0074515463784337]],[[0.11828450113535,-0.028779683634639,0.082194805145264],[0.011251931078732,-0.11139677464962,-0.00020015146583319],[0.021010337397456,0.038784801959991,-0.0051244860514998]],[[-0.027158202603459,-0.050351619720459,0.0083004590123892],[0.040623787790537,-0.058039542287588,0.019542790949345],[0.025976242497563,0.078433193266392,-0.0086796777322888]],[[-0.048004604876041,-0.0098793962970376,-0.035964582115412],[0.096601031720638,-0.043442785739899,-0.037576090544462],[-0.11717145889997,0.080603837966919,-0.068182922899723]],[[-0.033520247787237,-0.066799782216549,-0.02302135899663],[-0.0055699893273413,0.008678212761879,-0.042782235890627],[-0.074077092111111,0.12440873682499,-0.081660807132721]],[[0.071088306605816,-0.054139066487551,-0.040086399763823],[-0.065487928688526,-0.072019159793854,-0.059904597699642],[-0.042301405221224,0.014728283509612,0.051552023738623]],[[0.03894617035985,0.0028520084451884,-0.070024006068707],[-0.041044529527426,-0.041087429970503,0.0073107052594423],[0.044719010591507,-0.012799414806068,0.0047939084470272]],[[0.00073654641164467,-0.038844171911478,0.11954285204411],[-0.018430991098285,-0.09631621837616,0.16316412389278],[-0.028399920091033,-0.046684082597494,-0.015821225941181]],[[-0.06486077606678,-0.012819714844227,-0.051546208560467],[0.030852500349283,0.10619853436947,-0.0038017171900719],[0.0019836670253426,-0.044725734740496,-0.088313892483711]],[[-0.041119396686554,-0.11311788856983,-0.063154637813568],[0.060630839318037,0.01296822540462,-0.0270811971277],[-0.025163689628243,-0.021769531071186,0.093925036489964]],[[0.016708848997951,0.0049679251387715,0.030883714556694],[-0.0065510766580701,0.11446914076805,-0.087462522089481],[0.043790638446808,0.095120415091515,0.094410441815853]],[[0.001850760425441,0.021048976108432,-0.019133558496833],[-0.0055975564755499,-0.084009997546673,0.082159325480461],[0.027954811230302,-0.037724852561951,0.062973871827126]],[[-0.0046242694370449,0.040262941271067,-0.044503305107355],[0.055877242237329,0.027092520147562,0.025249356403947],[-0.11627947539091,0.00044692476512864,-0.034052602946758]],[[-0.2075239866972,0.080698408186436,-0.0046656555496156],[0.076124481856823,0.080023571848869,0.13871279358864],[0.04838677123189,-0.0074738790281117,0.16051022708416]],[[-0.13507668673992,-0.099185094237328,0.073240645229816],[-0.055926498025656,0.024582656100392,0.0015499601140618],[0.043183960020542,-0.019108556210995,-0.018915584310889]],[[-0.0038018776103854,-0.007424580398947,-0.063387759029865],[-0.08411867171526,-0.0091553553938866,0.10408252477646],[0.050197374075651,0.074388280510902,0.027716774493456]],[[-0.070873610675335,-0.074581161141396,0.012536068446934],[0.060961410403252,-0.09400799870491,0.13338160514832],[-0.03927057236433,-0.0091922944411635,0.048238880932331]],[[0.031736671924591,0.05482154712081,-0.14387103915215],[0.11253389716148,-0.06150471046567,-0.023079032078385],[0.15127699077129,-0.06299414485693,-0.012798664160073]],[[-0.18645004928112,-0.01701950468123,0.019306467846036],[0.015526964329183,0.058474570512772,-0.06086528673768],[-0.051275730133057,0.068808950483799,-0.10392263531685]],[[-0.053149193525314,0.070145592093468,0.12803423404694],[0.018095675855875,-0.059988666325808,0.0019009001553059],[0.083912342786789,0.010993195697665,-0.069783344864845]],[[-0.019745336845517,-0.055598892271519,-0.030173398554325],[0.081583626568317,0.003007325110957,-0.022690009325743],[0.019299078732729,-0.075432896614075,-0.002500151982531]],[[0.005166080314666,-0.024101477116346,0.040313802659512],[0.032535545527935,-0.010349256917834,-0.094155259430408],[-0.15215553343296,0.014461427927017,0.032350763678551]],[[-0.057444181293249,-0.065034210681915,-0.076817147433758],[-0.0065252184867859,-0.038318328559399,0.091968283057213],[-0.038387704640627,-0.014302203431726,0.10916575044394]],[[0.036803100258112,0.019204016774893,-0.076412096619606],[0.0047706342302263,0.039698485285044,0.13767187297344],[0.049193549901247,-0.059889324009418,-0.13275974988937]],[[-0.027869088575244,0.063309632241726,0.19224789738655],[-0.066823296248913,0.063063099980354,0.013784226030111],[0.045903068035841,0.038675978779793,-0.027867523953319]],[[-0.00066513515776023,-0.13015063107014,-0.016569463536143],[-0.0086320657283068,-0.059409260749817,0.038265887647867],[0.010386257432401,0.038741078227758,-0.091676466166973]],[[-0.0022655182983726,-0.056392949074507,-0.045840617269278],[0.0032001531217247,0.050831075757742,0.079379439353943],[0.10838931053877,0.028220307081938,0.029095837846398]],[[-0.099637344479561,-0.083088539540768,0.060130596160889],[0.041489344090223,0.072966821491718,-0.029420215636492],[0.0054100886918604,-0.053890351206064,-0.047209173440933]],[[-0.12050129473209,-0.093533791601658,-0.054424617439508],[-0.117550753057,-0.063603349030018,0.041841827332973],[-0.084737353026867,-0.032764311879873,-0.01799545250833]],[[0.0022932197898626,0.020156813785434,-0.0090439841151237],[-0.033741284161806,0.040041580796242,-0.044414393603802],[0.020215481519699,0.023110786452889,-0.0059483456425369]],[[-0.12244736403227,0.049987319856882,-0.097558215260506],[-0.10153486579657,-0.12027240544558,0.019801067188382],[0.063840620219707,0.032692905515432,-0.020587828010321]],[[0.062013078480959,-0.015819270163774,-0.083211466670036],[-0.029618017375469,-0.023884816095233,-0.016843024641275],[-0.016824932768941,0.077314682304859,-0.0041756960563362]],[[-0.14599977433681,0.030639130622149,-0.052099067717791],[-0.016448646783829,-0.012953110039234,0.0621722266078],[-0.014387041330338,-0.041901044547558,0.047722637653351]],[[0.037701942026615,0.037528913468122,-0.052811786532402],[-0.0066847912967205,-0.0077164052054286,-0.033348258584738],[-0.088973306119442,-0.12294100224972,0.010273579508066]],[[-0.15155450999737,0.018774075433612,-0.098322130739689],[-0.022960668429732,0.047768380492926,0.10628995299339],[0.049542468041182,-0.084298089146614,-0.078829601407051]],[[0.038185779005289,-0.035529538989067,-0.12600527703762],[0.011416674591601,-0.045517671853304,-0.023335574194789],[0.029060991480947,-0.054613314568996,0.013774412684143]],[[-0.010206905193627,-0.093262650072575,0.026144806295633],[0.13940532505512,0.0017929080640897,0.034785084426403],[-0.041050512343645,0.079802468419075,-0.081098556518555]],[[0.079960353672504,0.08548778295517,0.047393448650837],[0.14883027970791,0.019850142300129,-0.065860643982887],[0.023646216839552,-0.001907627331093,0.10604050010443]],[[0.018352378159761,0.030758043751121,0.0049510821700096],[0.014776209369302,0.051558822393417,0.0039781234227121],[-0.048825610429049,-0.024312632158399,-0.080544754862785]],[[0.054731480777264,-0.084215946495533,-0.038334004580975],[0.040219128131866,0.007694358471781,-0.015778489410877],[0.047012474387884,-0.060517188161612,-0.031025778502226]],[[0.11924672871828,-0.02784726396203,-0.12077010422945],[-0.021485446020961,0.069219626486301,-0.12410732358694],[-0.017187805846334,-0.030696429312229,0.0031808353960514]],[[-0.02458156272769,-0.021709596738219,-0.021815072745085],[-0.066732443869114,-0.052867982536554,0.027011452242732],[-0.091332770884037,-0.083719350397587,-0.068132527172565]],[[0.059204433113337,-0.097028166055679,-0.021078919991851],[-0.087708249688148,0.0084615871310234,0.078181110322475],[0.014264103025198,0.10044558346272,-0.13561584055424]],[[-0.052064899355173,-0.024962427094579,0.0038553702179343],[-0.12568338215351,0.077935762703419,0.03602847084403],[-0.016707750037313,-0.1010125502944,-0.11016300320625]],[[-0.037017051130533,0.047388602048159,-0.065259791910648],[-0.11163350939751,-0.073924779891968,0.019615607336164],[-0.026261225342751,-0.033418022096157,-0.076351635158062]],[[0.064775712788105,0.044613517820835,-0.094368554651737],[-0.05766025185585,0.074059419333935,-0.011795207858086],[-0.0083646532148123,0.042410578578711,0.022692615166306]],[[-0.050398677587509,-0.024381797760725,0.00082220102194697],[-0.046846035867929,-0.016985515132546,0.0087804514914751],[-0.048572719097137,-0.054407544434071,-0.012121087871492]],[[-0.068770691752434,-0.068245455622673,-0.13937935233116],[0.016966605558991,-0.051270361989737,-0.038317143917084],[-0.0027529711369425,-0.011134287342429,0.14867562055588]],[[0.15294733643532,0.035683013498783,-0.0077007026411593],[-0.0078378319740295,0.044319938868284,-0.063502468168736],[0.020624365657568,-0.069548234343529,0.090219661593437]],[[-0.041628908365965,0.15958924591541,0.11221898347139],[0.11163138598204,0.074901916086674,-0.069342650473118],[0.073824055492878,0.010472923517227,0.084742158651352]],[[0.060681834816933,-0.011077092029154,0.099676996469498],[-0.032415203750134,-0.090603552758694,-0.022087726742029],[0.024886241182685,-0.03610947355628,-0.099897034466267]],[[-0.10876502841711,0.046315919607878,0.0023279821034521],[-0.104646474123,0.13618378341198,0.0054669273085892],[-0.071949653327465,0.0017794281011447,-0.019612208008766]],[[-0.019162407144904,-0.036510970443487,0.025809211656451],[0.032502550631762,0.016158724203706,-0.017321163788438],[-0.0097770877182484,0.019213369116187,-0.009072876535356]],[[-0.12774100899696,0.018463918939233,0.10771486908197],[-0.014069688506424,0.033147193491459,-0.052252434194088],[-0.093805246055126,-0.026807015761733,-0.065620794892311]],[[0.034338049590588,0.014717751182616,-0.031077342107892],[-0.08389950543642,0.060480993241072,-0.071848422288895],[-0.088354304432869,-0.012614538893104,-0.012739610858262]],[[0.00023151162895374,-0.015479293651879,0.01934826374054],[0.016695819795132,0.072526194155216,0.0050336956046522],[-0.025571094825864,0.053050126880407,-0.041727222502232]],[[0.03477456048131,-0.0025509663391858,-0.065358176827431],[-0.060071934014559,0.053000215440989,0.087534084916115],[0.0076037822291255,-0.1150311306119,0.11182763427496]],[[0.013213478028774,0.074903815984726,0.08885595202446],[-0.092228263616562,-0.071993224322796,-0.062277723103762],[-0.00016204988060053,0.034966316074133,0.056801594793797]],[[0.024240974336863,0.055792097002268,0.08976523578167],[0.029797084629536,-0.02676977775991,0.058559209108353],[0.016572434455156,-0.062517054378986,-0.030490687116981]],[[-0.062008026987314,-0.075819574296474,0.10364283621311],[-0.026939479634166,-0.02777330763638,0.048291355371475],[0.0096002528443933,0.03313871845603,-0.055661864578724]],[[0.076128341257572,-0.048909600824118,-0.027919713407755],[0.022623289376497,0.021814996376634,0.062489330768585],[0.050586402416229,-0.031464703381062,0.034976024180651]],[[0.070460893213749,0.05841314420104,-0.08633130043745],[-0.019784964621067,-0.045165546238422,-0.013963120058179],[-0.029579795897007,-0.00019375476404093,-0.041201714426279]],[[-0.091287277638912,-0.11012402176857,-0.085019625723362],[0.090122126042843,0.022372322157025,0.066046856343746],[-0.077636040747166,0.028352398425341,0.027282070368528]],[[-0.021883739158511,0.022329980507493,0.021714536473155],[0.075278766453266,-0.022799357771873,-0.099264293909073],[0.11146166920662,-0.12724992632866,0.016365773975849]],[[-0.11766674369574,0.10335183888674,0.01957356184721],[-0.020172560587525,0.13753889501095,0.083152107894421],[0.13538330793381,-0.035465382039547,-0.028876673430204]],[[0.11581394821405,-0.039016358554363,0.020464155822992],[0.023882776498795,0.049194525927305,-0.022894823923707],[-0.034553863108158,-0.063128761947155,-0.013856212608516]],[[0.077659122645855,0.016268979758024,0.098245695233345],[0.032723374664783,-0.094330206513405,-0.042044475674629],[-0.092688784003258,0.07563728094101,0.082843661308289]],[[0.054269507527351,-0.0037817440461367,0.11041821539402],[-0.032974269241095,-0.12629333138466,-0.086017847061157],[-0.069485060870647,0.063730210065842,0.19018302857876]],[[-0.015426278114319,0.07717490196228,0.18394187092781],[-0.059812378138304,-0.12913607060909,0.06521350890398],[-0.022412557154894,0.015291050076485,-0.024952713400126]],[[-0.06268598139286,0.006473480258137,-0.011323738843203],[0.028440846130252,-0.066696420311928,-0.030614092946053],[-0.022107288241386,-0.022498769685626,-0.11619903147221]],[[-0.10488053411245,-0.067991480231285,0.012347117066383],[-0.096846967935562,0.12048482149839,0.093932054936886],[0.029434502124786,0.10912140458822,-0.087476782500744]],[[0.0094421729445457,0.0037526243831962,-0.10520397126675],[-0.04786029458046,-0.082768268883228,-0.0067399321123958],[0.037522550672293,-0.0042193699628115,0.050395738333464]],[[0.048045270144939,-0.030470943078399,0.081558801233768],[0.11380667239428,-0.048326697200537,0.045720051974058],[-0.032743733376265,0.016393667086959,0.056795675307512]],[[0.004213840700686,0.032803632318974,-0.068486362695694],[0.15711386501789,0.058269076049328,-0.054019149392843],[0.019133133813739,-0.01624540053308,-0.063033618032932]],[[-0.0082693044096231,0.020795926451683,0.034178733825684],[-0.15951146185398,-0.068426452577114,-0.020427197217941],[0.014581781812012,0.12965998053551,-0.088393300771713]],[[-0.0927799269557,-0.048638101667166,-0.0056847427040339],[0.10322639346123,-0.024122219532728,0.10692499577999],[-0.0046933866105974,0.087245211005211,0.015126577578485]],[[-0.011207804083824,-0.051544610410929,0.015589143149555],[0.10268406569958,0.082491241395473,0.04310342296958],[-0.004605368245393,0.066634058952332,0.064034380018711]],[[-0.1240304633975,-0.11184798181057,0.10274799913168],[-0.078272566199303,-0.016831601038575,-0.070482559502125],[0.087572157382965,-0.011796662583947,-0.11470024287701]],[[-0.012198529206216,-0.012499104253948,0.04139981418848],[-0.028693391010165,0.0031495720613748,0.012395136989653],[-0.052766047418118,0.039969649165869,0.016226107254624]],[[-0.069955915212631,-0.15227617323399,-0.017298022285104],[0.012095710262656,0.0041165160946548,0.053678154945374],[0.0051755905151367,-0.040656838566065,-0.021826606243849]],[[-0.031542621552944,0.063670128583908,-0.085574939846992],[0.079758286476135,-0.077804699540138,-0.080378450453281],[0.10592767596245,0.016881581395864,-0.079663202166557]],[[-0.0044991378672421,-0.014296818524599,-0.060632441192865],[-0.073864281177521,0.058781694620848,-0.16651783883572],[-0.015736756846309,0.036786418408155,-0.034890197217464]],[[-0.072512090206146,0.025356775149703,-0.075508147478104],[0.028249341994524,0.031885076314211,0.048971552401781],[0.0071122040972114,-0.047166105359793,0.019093293696642]],[[-0.12097460776567,0.10596729069948,0.071939669549465],[-0.026930429041386,0.04191342741251,-0.016797790303826],[-0.070678494870663,0.053667291998863,-0.021517489105463]],[[-0.062747724354267,-0.036110807210207,0.024503666907549],[-0.048992227762938,-0.039334360510111,-0.007970055565238],[-0.033768601715565,0.1858397424221,-0.095881938934326]],[[0.0286810323596,0.04238086938858,0.031685367226601],[-0.066636838018894,-0.033034086227417,0.079092286527157],[-0.075637333095074,-0.078342601656914,-0.072970174252987]],[[-0.013219292275608,0.14094583690166,0.026410166174173],[0.088888257741928,0.079435378313065,-0.007693441119045],[0.13148830831051,-0.073220886290073,0.018999176099896]],[[-0.03987655416131,0.10768410563469,0.053505137562752],[-0.03983573243022,-0.05354218930006,-0.021918697282672],[-0.016104098409414,-0.10273175686598,-0.057209085673094]],[[0.044579766690731,-0.053800337016582,-0.049268271774054],[-0.00981405377388,0.0041755079291761,0.06160020455718],[-0.0044117146171629,0.016097076237202,-0.075352050364017]],[[-0.053091697394848,-0.12012489885092,-0.042881511151791],[-0.098699621856213,0.089367486536503,0.0036304963286966],[-0.017005849629641,0.026365801692009,0.10278259217739]],[[0.047144893556833,-0.06558171659708,0.036702044308186],[0.031728375703096,-0.016378749161959,0.053757876157761],[-0.089885503053665,-0.019770668819547,0.0086397007107735]],[[0.0070011503994465,0.074879169464111,0.0040459325537086],[-0.033126588910818,-0.10540896654129,-0.0032130186446011],[0.087121270596981,0.0058558718301356,-0.016817107796669]],[[-0.046777710318565,0.00622822297737,-0.092932090163231],[-0.016637993976474,-0.05250982567668,0.049504157155752],[0.067768573760986,-0.09704177826643,0.048920225352049]],[[0.0030524246394634,-0.03187869861722,0.020430848002434],[0.077506773173809,0.15310600399971,0.18808798491955],[0.038921449333429,0.11117298901081,0.006661799736321]],[[-0.076396554708481,0.014571361243725,0.0091435760259628],[0.22212754189968,-0.13423019647598,-0.066712625324726],[0.17268393933773,-0.038681756705046,0.074915416538715]],[[-0.0010003021452576,0.058894108980894,-0.079598620533943],[0.020356021821499,-0.0066529344767332,-0.017257776111364],[-0.030524929985404,0.03618323430419,-0.022518828511238]],[[0.040354754775763,0.071471706032753,-0.029590619727969],[-0.043701522052288,0.037981159985065,-0.034664154052734],[0.013514100573957,0.023756846785545,0.011892938055098]],[[-0.018534207716584,-0.11483073979616,0.028499765321612],[0.088398434221745,-0.050639234483242,-0.038294095546007],[0.0077977972105145,0.073953174054623,-0.039045616984367]],[[0.049783978611231,-0.024490978568792,-0.042119555175304],[0.016294730827212,0.0022641192190349,-0.03929403424263],[0.064338222146034,0.031136926263571,-0.11578776687384]],[[-0.072179704904556,-0.036267384886742,0.10553047806025],[0.054618272930384,-0.012249049730599,0.13147865235806],[0.044366959482431,-0.025995705276728,0.089947707951069]],[[0.012954393401742,0.15887625515461,0.040528982877731],[0.028363039717078,0.043604552745819,0.0070825316943228],[-0.021169060841203,-0.020070618018508,-0.028658222407103]],[[0.041853256523609,0.097476869821548,-0.077123552560806],[-0.053872033953667,0.035805087536573,-0.015602335333824],[-0.1042405962944,0.022494290024042,-0.016077632084489]],[[-0.1099575906992,-0.068402051925659,0.046919111162424],[-0.043528191745281,0.011376740410924,-0.075015313923359],[0.023680595681071,0.21284908056259,-0.10826347023249]],[[0.13965927064419,0.037988681346178,-0.16190803050995],[0.072433575987816,0.0078554786741734,0.091761976480484],[-0.17947041988373,0.094294898211956,-0.0044172136113048]],[[-0.083424896001816,0.063045285642147,-0.066033475100994],[-0.11836747080088,0.035203263163567,-0.034041102975607],[-0.081117510795593,-0.019711948931217,-0.1273762434721]],[[0.021308345720172,-0.035243675112724,0.038996692746878],[-0.005830202717334,-0.017410503700376,-0.043924789875746],[-0.15147611498833,-0.022932371124625,0.025616087019444]],[[-0.10783609002829,-0.13528372347355,-0.11333564668894],[-0.091551341116428,-0.024718686938286,-0.01393711194396],[-0.19805966317654,-0.11302350461483,0.043460283428431]],[[-0.081263653934002,-0.019919024780393,-0.11085826158524],[0.029417103156447,-0.031580604612827,0.05582756921649],[-0.032739873975515,-0.071082212030888,-0.057154104113579]],[[-0.052428849041462,-0.095117725431919,-0.026642136275768],[0.043295718729496,-0.072710566222668,-0.058314569294453],[-0.0448895432055,-0.063856057822704,0.0047827209345996]],[[0.012688619084656,-0.076828449964523,0.049304023385048],[0.007485649548471,-0.079063408076763,0.066998928785324],[0.0013168016448617,-0.040819954127073,-0.0096835540607572]],[[-0.061259008944035,-0.044237472116947,0.010127156041563],[0.093575455248356,0.012742323800921,-0.029104847460985],[-0.069860726594925,0.036182448267937,0.0041418983601034]],[[-0.048151019960642,-0.00072105368599296,-0.15273056924343],[-0.13754497468472,-0.088396653532982,-0.013451462611556],[0.044467758387327,-0.08586423099041,0.068392589688301]],[[0.11575614660978,0.04424923658371,0.14178436994553],[-0.051565896719694,-0.022095590829849,-0.037210669368505],[0.0047901519574225,-0.034249994903803,0.062675975263119]],[[0.0098236287012696,-0.047212615609169,-0.018200341612101],[-0.027186468243599,0.039044078439474,-0.073836117982864],[0.11318957805634,0.027867732569575,0.015400839969516]]],[[[-0.035916343331337,-0.0085006281733513,-0.1153861656785],[0.022611478343606,0.042821183800697,-0.057569835335016],[0.080637089908123,-0.036310207098722,-0.10103967040777]],[[0.060993101447821,0.081944793462753,-0.025801619514823],[-0.0085013173520565,0.055824555456638,-0.069291926920414],[-0.11200452595949,-0.046465765684843,-0.054496645927429]],[[0.037793148308992,0.056886717677116,-0.064677700400352],[-0.024351358413696,-0.013517362065613,-0.021556315943599],[-0.07114052772522,-0.015310314483941,0.031274434179068]],[[0.0027406807057559,-0.0061505143530667,-0.020240524783731],[-0.019097382202744,0.022321332246065,0.067890249192715],[-0.0036346991546452,0.090095616877079,0.078752130270004]],[[-0.029313331469893,-0.025470994412899,-0.026633573696017],[0.045083280652761,0.0091176107525826,0.0057150074280798],[0.12807080149651,-0.018672393634915,0.024072308093309]],[[8.8684300862951e-06,-0.031300116330385,0.016058035194874],[0.016944227740169,0.050508297979832,0.034015461802483],[-0.0056032603606582,-0.10298589617014,-0.0086424462497234]],[[-0.035694435238838,-0.04342332482338,0.013528430834413],[-0.051284819841385,9.0097681095358e-05,0.015070318244398],[-0.032931081950665,-0.040007039904594,-0.035402033478022]],[[0.034346006810665,-0.055797234177589,-0.0085625573992729],[-0.11084444075823,-0.095826700329781,-0.021158402785659],[-0.022330813109875,-0.026071710512042,0.023488881066442]],[[-0.00083143130177632,-0.037645727396011,-0.055781006813049],[-0.096078306436539,-0.070766784250736,0.025435358285904],[0.0029947853181511,0.0091599952429533,0.052643872797489]],[[0.096295587718487,-0.054695297032595,0.029846731573343],[-0.027512503787875,-0.0020882557146251,0.062433250248432],[-0.020194638520479,0.078571543097496,-0.014792843721807]],[[-0.011188738048077,0.003179415827617,0.036145437508821],[-0.023929005488753,0.0070865447632968,0.019482823088765],[0.060140591114759,0.03561032563448,0.067833386361599]],[[-0.1022299900651,-0.072097755968571,-0.04686276614666],[-0.0039921165443957,0.031689405441284,0.045927993953228],[-0.0084079308435321,0.066224656999111,0.045475795865059]],[[0.011233862489462,0.13604730367661,0.045351251959801],[0.078649789094925,0.057284209877253,-0.18964402377605],[0.069601804018021,-0.050073072314262,-0.097099430859089]],[[-0.046288840472698,0.018912520259619,-0.044547371566296],[0.0018415432423353,-0.11896316707134,0.022273935377598],[7.1339833084494e-05,0.047482244670391,-0.0099425744265318]],[[-0.042129803448915,0.025647215545177,-0.043729770928621],[-0.066976621747017,-0.084764964878559,-0.057429056614637],[0.098412699997425,-0.01687808893621,-0.089775159955025]],[[-0.020429275929928,0.02914316020906,0.096118122339249],[0.050046928226948,-0.050223868340254,-0.024396477267146],[0.027891842648387,-0.025489388033748,0.0097944578155875]],[[0.016971884295344,-0.059625416994095,-0.083611525595188],[-0.025146877393126,-0.036214966326952,0.027606032788754],[0.14106416702271,0.068496845662594,-0.027394637465477]],[[-0.0018076515989378,-0.049269042909145,0.074715465307236],[0.011731198057532,0.037236277014017,-0.015614503063262],[-0.0036867258604616,-0.057369079440832,0.054557107388973]],[[-0.00090306950733066,-0.046207338571548,0.075002357363701],[0.0026987157762051,-0.039924163371325,-0.12743239104748],[0.053744416683912,0.08807410299778,0.02580900862813]],[[-0.048062585294247,-0.012645041570067,0.078987337648869],[0.076585464179516,-0.010300494730473,0.046413905918598],[0.035500429570675,-0.015798663720489,0.058554735034704]],[[0.028566488996148,0.077499464154243,0.044582050293684],[0.0190564468503,0.012132409960032,0.021261418238282],[-0.050228349864483,-0.055542979389429,0.032175794243813]],[[0.033382561057806,0.011186338029802,-0.025037635117769],[0.067888490855694,-0.023060573264956,0.054803323000669],[0.042848501354456,-0.0028375566471368,0.0052305683493614]],[[-0.067800834774971,-0.018881732597947,0.035868030041456],[-0.019267719238997,0.025260105729103,0.0044573782943189],[0.052895713597536,-0.005843672901392,0.044324230402708]],[[0.054427575320005,-0.0086923772469163,0.05271901935339],[-0.056864764541388,-0.038976911455393,-0.0019401824101806],[-0.0124392490834,0.012191540561616,0.0036837789230049]],[[0.025211052969098,-0.0027663393411785,0.0053678108379245],[-0.027815062552691,-0.064554415643215,0.010972040705383],[0.028972718864679,0.065734632313251,0.0078289555385709]],[[0.039074745029211,-0.034551415592432,-0.0032746193464845],[0.080887876451015,0.023407027125359,-0.05065680667758],[-0.077959537506104,0.065587483346462,-0.10256592929363]],[[0.048259954899549,-0.05205187574029,0.0047938865609467],[0.030651329085231,-0.080344215035439,0.030056420713663],[0.032753050327301,-0.022416839376092,-0.010314279235899]],[[0.031359367072582,-0.019921761006117,-0.0074575217440724],[0.026292230933905,-0.024018691852689,-0.04322400316596],[-0.052519470453262,-0.03403302654624,0.041591666638851]],[[0.055916555225849,0.046090792864561,0.1259318292141],[-0.082419946789742,-0.10591781139374,0.11291151493788],[-0.00065048324177042,-0.054159093648195,0.0096117714419961]],[[0.070208169519901,0.051971558481455,-0.032095186412334],[0.038905378431082,0.020792933180928,0.063237197697163],[0.050559803843498,-0.029848089441657,-0.10550062358379]],[[0.0027811671607196,0.0221559535712,-0.061548870056868],[0.031630460172892,0.068159095942974,0.0017466496210545],[-0.092946238815784,0.020875407382846,-0.0026847140397877]],[[0.027022734284401,0.0026994796935469,-0.075436770915985],[0.013212291523814,-0.076749831438065,-0.057264149188995],[-0.088969975709915,-0.0049372334033251,0.0086880587041378]],[[-0.033828124403954,-0.034618884325027,0.020395016297698],[-0.00058942358009517,0.0075730895623565,0.0057053146883845],[0.058849938213825,0.039875607937574,-0.028312869369984]],[[-0.034325767308474,-0.018984662368894,-0.041291169822216],[0.020705452188849,0.090499825775623,0.039358016103506],[-0.074609115719795,0.099683023989201,0.043223217129707]],[[-0.014291509054601,0.0050857998430729,0.011760008521378],[-0.017094353213906,0.019906306639314,-0.019745780155063],[-0.02881851233542,-0.016805546358228,0.046205122023821]],[[-0.0099822664633393,0.00033696854370646,-0.003163650399074],[-0.0086978729814291,-0.058996718376875,-0.026208708062768],[-0.0034524041693658,-0.060063067823648,-0.026323173195124]],[[-0.063529551029205,0.035773057490587,0.014261102303863],[0.090094141662121,0.039790209382772,0.018486583605409],[0.034860480576754,0.096743054687977,0.0029944174457341]],[[-0.040410526096821,0.062477264553308,0.0036540278233588],[0.039572063833475,-0.041086323559284,0.032076265662909],[-0.0098307197913527,-0.099818371236324,-0.00090648210607469]],[[0.014684036374092,0.0090335626155138,0.070512570440769],[-0.011967338621616,-0.011858072131872,0.015388038940728],[-0.080057516694069,-0.0064799725078046,0.016078388318419]],[[-0.070166744291782,0.031611125916243,0.05085926502943],[-0.033938065171242,-0.0046039456501603,-0.020834345370531],[0.028576416894794,0.050512623041868,-0.094681657850742]],[[-0.0045218146406114,0.016296723857522,-0.00044198846444488],[0.0095448819920421,0.047602638602257,-0.040113661438227],[0.038633041083813,0.015072400681674,-0.034821759909391]],[[-0.01587593741715,0.01082762889564,0.15994825959206],[-0.01802702434361,-0.089572906494141,0.068434648215771],[-0.058945327997208,-0.13071522116661,0.1195954978466]],[[0.056949269026518,-0.0097888214513659,-0.0052421218715608],[0.070565097033978,-0.024462936446071,-0.013094620779157],[-0.01359426882118,-0.0026837172918022,0.027177447453141]],[[0.03973587974906,-0.032086059451103,-0.075652524828911],[0.013986541889608,-0.030664028599858,0.0084351487457752],[-0.070717342197895,-0.019190203398466,-0.027945617213845]],[[0.0010005618678406,-0.044851507991552,-0.054791640490294],[-0.02899568900466,0.031887874007225,-0.0053805164061487],[0.036019932478666,-0.0075164129957557,-0.024796640500426]],[[-0.075534328818321,-0.087970644235611,0.00084903050446883],[0.0095446547493339,0.029779881238937,-0.027071956545115],[-0.00099644111469388,0.074417501688004,0.083974465727806]],[[0.013628167100251,-0.035342868417501,-0.043714661151171],[0.036473490297794,0.018471138551831,0.074603296816349],[-0.042422447353601,0.071870416402817,-0.053204007446766]],[[0.043712325394154,-0.0015073561808094,-0.055139265954494],[-0.026477325707674,-0.0078204488381743,-0.076775811612606],[-0.042811419814825,0.07863525301218,-0.0028011659160256]],[[0.020852219313383,-0.079319126904011,-0.011371102184057],[0.00071730150375515,0.014594155363739,0.035243559628725],[0.040667437016964,-0.10641368478537,0.0048632593825459]],[[-0.0580816231668,-0.0088041266426444,-0.035941038280725],[-0.03221895173192,0.052155997604132,-0.036919884383678],[-0.039975367486477,-0.010828816331923,0.00090098194777966]],[[0.054083943367004,-0.047362435609102,-0.0013946236576885],[0.039323389530182,-0.050784274935722,0.035830020904541],[0.0022711372002959,0.036818642169237,0.045757666230202]],[[0.021392442286015,0.058328215032816,0.055725421756506],[0.0058717196807265,0.047485109418631,-0.019757075235248],[-0.013348440639675,0.0056421970948577,0.0057466393336654]],[[0.074255883693695,0.026641309261322,-0.040817383676767],[0.047016154974699,-0.00024279972421937,0.0066871107555926],[-0.045206021517515,0.012723048217595,-0.051254339516163]],[[-0.018124552443624,-0.050134807825089,-0.071513943374157],[0.028423177078366,-0.021275965496898,-0.011500252410769],[0.060035519301891,0.095546722412109,0.076880134642124]],[[-0.012403039261699,-0.049879129976034,0.068644449114799],[-0.0068011097609997,-0.038701228797436,0.037034414708614],[0.03713234141469,-0.0054896608926356,0.015050614252687]],[[0.060495153069496,0.086905464529991,-0.037004929035902],[0.063667438924313,0.064000725746155,0.016824623569846],[-0.12814386188984,-0.025914676487446,-0.085154831409454]],[[0.001764512504451,0.013237367384136,0.016593188047409],[0.0091409152373672,-0.02444376796484,-0.0038114441558719],[-0.028785225003958,-0.035375200212002,-0.046086881309748]],[[0.044930689036846,0.0077694226056337,0.0067147263325751],[0.03034813515842,0.013136353343725,-0.054406989365816],[0.054334755986929,-0.011999655514956,-0.051849454641342]],[[-0.050589147955179,-0.003606129437685,-0.0050710765644908],[0.014852922409773,0.070462711155415,0.015747619792819],[0.049076516181231,0.055414356291294,-0.022378966212273]],[[-0.015410461463034,-0.019359802827239,0.0081905722618103],[-0.021771319210529,-0.049377631396055,-0.034206621348858],[0.035803381353617,-0.012996540404856,-0.053097873926163]],[[0.018534203991294,0.0032587829045951,-0.041020423173904],[0.074683114886284,0.033870827406645,-0.013656256720424],[0.049067366868258,0.049346223473549,0.03146256506443]],[[0.0054842508397996,0.013091579079628,0.0095547838136554],[-0.030456565320492,0.023088555783033,0.044330451637506],[0.024104669690132,0.089138448238373,0.010746276006103]],[[0.058153230696917,-0.030832810327411,-0.010074223391712],[0.01522119063884,0.0081804804503918,0.037987738847733],[-0.038401927798986,0.0085380179807544,0.1087204888463]],[[0.018577646464109,0.060562677681446,-0.10436231642962],[-0.057813998311758,0.05130971968174,0.01216178573668],[-0.05270453915,0.028416261076927,-0.060205325484276]],[[0.065272212028503,-0.0585111156106,0.027012838050723],[-0.0093124667182565,-0.072341918945312,0.040652874857187],[0.046025238931179,0.0048059169203043,0.14021547138691]],[[0.040087707340717,-0.042233038693666,0.011005830951035],[0.034753754734993,-0.0090605104342103,0.022873483598232],[0.021582901477814,-0.010013898834586,-0.029001971706748]],[[0.019101668149233,-0.023745127022266,-0.027946934103966],[-0.08128710091114,-0.069119997322559,0.01253151614219],[-0.016881141811609,0.012097527272999,0.026268051937222]],[[-0.029060248285532,-0.037344295531511,0.04753090441227],[0.036004267632961,-0.0014726005028933,0.061688456684351],[-0.0010281363502145,0.042584292590618,-0.062519453465939]],[[0.058019701391459,-0.041835874319077,0.029259398579597],[0.010110374540091,0.069209307432175,-0.021273910999298],[0.085621066391468,0.017817161977291,-0.075284458696842]],[[-0.034061178565025,0.015140445902944,0.020478567108512],[0.061564575880766,0.037583120167255,-0.012706391513348],[-0.023329332470894,0.052702866494656,-0.095086380839348]],[[0.035656329244375,-0.023626146838069,-0.015726260840893],[-0.083187736570835,-0.062672384083271,-0.11825925111771],[0.0060569122433662,0.044509999454021,0.11772039532661]],[[-0.080964520573616,0.026702942326665,-0.028338534757495],[0.005917021073401,-0.088602364063263,-0.023330323398113],[0.023600932210684,0.028100445866585,0.046078085899353]],[[-0.083151444792747,-0.0073201004415751,0.015429600141943],[0.071290969848633,-0.040823314338923,-0.0081545440480113],[0.006954237818718,-0.0095202196389437,-0.064227841794491]],[[-0.046459414064884,-0.00046306266449392,-0.066859155893326],[0.0037469614762813,-0.028192354366183,-0.014872391708195],[0.0080258892849088,0.013042380101979,0.015545416623354]],[[-0.010361534543335,-0.029321452602744,0.035576045513153],[0.062579840421677,-0.016902858391404,0.074595220386982],[0.090021245181561,-0.0053359996527433,0.03706319257617]],[[0.085786305367947,0.057243186980486,-0.023869721218944],[0.016608772799373,-0.047903452068567,-0.0044295876286924],[0.038565151393414,-0.046650368720293,-0.096830651164055]],[[0.042096674442291,0.070599988102913,0.052601024508476],[0.055695187300444,0.042565796524286,0.030310554429889],[0.037873964756727,-0.003131001489237,-0.055891860276461]],[[-0.051224708557129,0.043579127639532,-0.035108454525471],[-0.015127467922866,0.034600432962179,-0.033168371766806],[0.019015904515982,0.056964129209518,0.062779635190964]],[[-0.013858973048627,0.014257076196373,0.0089661320671439],[-0.019104607403278,-0.0015617941971868,0.057948101311922],[-0.03028099052608,0.016401184722781,-0.017842279747128]],[[-0.0095386141911149,0.089076168835163,0.031171627342701],[0.11508169025183,0.013454599305987,-0.0070942863821983],[0.019310919567943,-0.054746139794588,0.018979601562023]],[[0.013115087524056,-0.06785499304533,-0.036806534975767],[0.045206088572741,-0.011387773789465,-0.0018730852752924],[-0.016749065369368,-0.003530424553901,-0.022047437727451]],[[-0.037430197000504,-0.039864752441645,-0.045660473406315],[0.080261990427971,0.048898443579674,-0.028140492737293],[-0.051309362053871,0.0047869421541691,0.026455473154783]],[[-0.097097121179104,0.059905257076025,-0.052319202572107],[-0.081943459808826,-0.042870953679085,0.026273366063833],[-0.14177224040031,-0.062534503638744,0.014157018624246]],[[-0.065496280789375,0.056623950600624,0.064730815589428],[-0.0016539787175134,0.039359785616398,0.0096313552930951],[-0.009499242529273,0.062840759754181,0.073091194033623]],[[0.0041002319194376,0.093955375254154,0.035966321825981],[-0.05397829785943,0.042258445173502,-0.05645327270031],[0.00081484188558534,0.02335854806006,-0.04421291872859]],[[-0.0094515327364206,0.02139618806541,0.025220127776265],[0.098291724920273,0.04388152807951,0.048160806298256],[-0.022559555247426,-0.035825610160828,0.049329232424498]],[[-0.012467888183892,0.0025719741825014,0.0089739998802543],[-0.043290741741657,-0.041132409125566,-0.052753608673811],[-0.034305155277252,0.040371250361204,0.016343599185348]],[[0.065477460622787,0.030680680647492,0.018685290589929],[0.03213419392705,2.0811166905332e-05,0.0067496178671718],[-0.046530455350876,-0.013984588906169,0.017769686877728]],[[-0.030687503516674,-0.033789128065109,0.0067752790637314],[0.02246730029583,-0.015572984702885,-0.011115974746644],[0.050049103796482,-0.016631741076708,0.024313813075423]],[[-0.056028801947832,0.033737003803253,0.01121726538986],[0.096442639827728,0.0267105512321,-0.074578076601028],[0.016535529866815,-0.10301674157381,0.013252324424684]],[[-0.028506092727184,0.018745491281152,0.028177343308926],[-0.089308835566044,-0.031525779515505,0.016157733276486],[-0.01620502024889,-0.078399702906609,-0.026902692392468]],[[0.0781055316329,0.082052446901798,0.043438147753477],[-0.0015180635964498,0.10441073030233,0.054572638124228],[-0.042607113718987,0.020568525418639,-0.021560300141573]],[[0.055934604257345,-0.057874623686075,-0.056723617017269],[0.06719982624054,0.052700858563185,-0.029418129473925],[0.021747648715973,0.0073811132460833,-0.036592684686184]],[[-0.017284134402871,0.040706984698772,-0.070560522377491],[-0.053982008248568,0.059810698032379,-0.085691183805466],[0.020657435059547,0.028727980330586,-0.039600964635611]],[[0.030987996608019,0.014632301405072,0.0099692735821009],[0.0096268812194467,-0.0038354229182005,-0.0075715123675764],[-0.039347484707832,-0.044218078255653,-0.022830879315734]],[[-0.04908861964941,-0.0045599192380905,-0.028419708833098],[-0.012349154800177,-0.038887895643711,-0.074904926121235],[-0.011116625741124,-0.026137925684452,0.083064369857311]],[[0.046509180217981,-0.033264644443989,-0.040034666657448],[-0.042861007153988,-0.039137076586485,0.030921721830964],[-0.047728255391121,0.085572607815266,0.0065552429296076]],[[-0.040391497313976,0.015400308184326,0.033647052943707],[0.02682789042592,0.0057690790854394,0.050273146480322],[-0.023168478161097,-0.02822283282876,0.023995205760002]],[[-0.0024394846986979,-0.01041339430958,-0.0095830010250211],[-0.0034103819634765,0.031399428844452,-0.0022012367844582],[0.00079420383553952,-0.0027603630442172,0.01086981035769]],[[0.071457579731941,0.073647037148476,-0.052456323057413],[0.05529598519206,-0.065008737146854,-0.073398627340794],[-0.039066344499588,-0.038895957171917,-0.019861603155732]],[[-0.095244742929935,-0.0088902022689581,0.051594264805317],[-0.014980151318014,0.018347319215536,0.0087353810667992],[-0.040520001202822,-0.010218985378742,-0.043188326060772]],[[-0.016653325408697,-0.0038715137634426,0.052327562123537],[-0.088840492069721,0.064175359904766,0.058084331452847],[-0.084781527519226,-0.081065259873867,0.020220711827278]],[[-0.049086578190327,-0.012078437022865,0.0080301547423005],[-0.053870476782322,0.036576252430677,-0.0011698643211275],[0.039496742188931,0.014811959117651,0.031847536563873]],[[-0.067391939461231,0.0094182398170233,0.067989751696587],[-0.005788981448859,0.0049693859182298,0.0066588623449206],[-0.032266762107611,0.03492745757103,-0.036469921469688]],[[-0.053653221577406,-0.01416773442179,-0.073399350047112],[-0.042109310626984,0.081805527210236,0.1187816336751],[-0.0097360732033849,0.07711286842823,-0.045697879046202]],[[0.029988896101713,-0.092326879501343,-0.059110317379236],[-0.068655580282211,-0.052988164126873,-0.011634329333901],[0.070800989866257,-0.048739518970251,-0.019673500210047]],[[0.069472134113312,0.015824066475034,-0.093932092189789],[0.022604446858168,0.050727345049381,0.010991616174579],[-0.05894660577178,-0.028339821845293,-0.0069095003418624]],[[-0.0047514098696411,-0.10904643684626,-0.085028417408466],[0.076112493872643,-0.083135418593884,0.016935434192419],[0.075449824333191,-0.033465579152107,0.011399384588003]],[[-0.076058655977249,-0.099720902740955,0.019059708341956],[-0.07401854544878,0.0081206252798438,0.024403708055615],[-0.0098550450056791,0.027235426008701,0.0081480601802468]],[[-0.10076653957367,-0.031668376177549,-0.08093149214983],[0.0065414714626968,-0.010436097159982,0.084600575268269],[-0.039453718811274,-0.012708527967334,0.0034683886915445]],[[-0.027111021801829,-0.064147941768169,0.053987331688404],[-0.092305906116962,0.011440888047218,0.010590637102723],[0.044644016772509,-0.03835191950202,0.0691993907094]],[[-0.0194475594908,0.064900435507298,0.025689939036965],[-0.049117002636194,-0.0282635204494,0.047720771282911],[0.0023397516924888,0.028351752087474,0.029913987964392]],[[0.010437613353133,-0.01086039096117,0.0099111767485738],[-0.031209202483296,-0.033756073564291,0.01949673704803],[-0.033392634242773,-0.036108862608671,0.00730289099738]],[[0.044686775654554,-0.092243917286396,0.035757634788752],[0.036944016814232,-0.10087709873915,0.032629784196615],[-0.012810268439353,-0.088812075555325,0.011108971200883]],[[0.058084327727556,-0.092195779085159,-0.017425775527954],[-0.034885324537754,-0.072267778217793,0.079685255885124],[0.0059481598436832,-0.084813289344311,-0.051824614405632]],[[-0.049053229391575,-0.073850199580193,-0.072898134589195],[-0.097385607659817,-0.020962176844478,0.053761024028063],[0.099250502884388,-0.03148515895009,0.011820081621408]],[[0.047824032604694,-0.036841258406639,-0.05118490383029],[0.00058544136118144,-0.051969967782497,0.026709282770753],[0.044662702828646,0.028798427432775,-0.028422212228179]],[[-0.033274356275797,-0.0032781050540507,-0.053193300962448],[0.0075975493527949,-0.010300809517503,-0.014388100244105],[-0.064288906753063,0.018020501360297,-0.01694960705936]],[[-0.07034407556057,0.039014063775539,-0.081862553954124],[0.053765080869198,0.067255690693855,-0.045966520905495],[-0.079590737819672,0.025345915928483,-0.0073702312074602]],[[0.01976366341114,0.052422322332859,-0.017231764271855],[0.13489864766598,0.06339219212532,0.02688673324883],[0.032963275909424,-0.076712891459465,0.042406391352415]],[[-0.040210455656052,-0.055207598954439,0.021019635722041],[0.010065586306155,0.030937120318413,0.020431820303202],[0.030597966164351,-0.047429453581572,-0.044301867485046]],[[-0.06199523806572,-0.058793190866709,0.0087574133649468],[0.04457538947463,-0.015372372232378,0.00046731921611354],[-0.069817006587982,-0.10540506243706,-0.003107744269073]],[[-0.018257386982441,0.035073012113571,0.0010143213439733],[0.032284647226334,-0.097733989357948,0.002307360060513],[0.065898381173611,-0.023401100188494,0.02331461571157]],[[-0.01583637110889,-0.04193552583456,-0.057263839989901],[-0.017934195697308,-0.054973777383566,0.042917270213366],[-0.039836473762989,-0.054198775440454,0.06328409910202]],[[-0.061000470072031,-0.0072290590032935,0.015904657542706],[0.028394581750035,0.024574970826507,-0.018832726404071],[0.011909014545381,-0.080274388194084,-0.034123472869396]],[[0.028207272291183,-0.036842215806246,-0.029561446979642],[0.030488815158606,-0.0043187942355871,0.0021894297096878],[0.035627696663141,-0.036089278757572,-0.028808174654841]],[[0.040917295962572,0.039111290127039,0.053902238607407],[0.058893468230963,-0.055880915373564,-0.026619264855981],[0.026734350249171,0.044553965330124,0.032456796616316]],[[-0.036550015211105,-0.0076970914378762,0.061433907598257],[-0.044728100299835,-0.01702019199729,0.013066690415144],[0.0060251578688622,0.033953167498112,-0.032976806163788]]],[[[-0.12288059294224,0.10139665007591,-0.16182143986225],[-0.03776691108942,-0.066383138298988,-0.12294932454824],[0.017942434176803,0.027021734043956,-0.062234912067652]],[[0.094996899366379,-0.078801400959492,-0.046570647507906],[-0.078663595020771,-0.11070131510496,-0.11207865178585],[0.012106689624488,0.10803279280663,-0.047684714198112]],[[0.063813388347626,-0.081653796136379,0.046380020678043],[-0.0081040328368545,-0.051685757935047,0.15415480732918],[-0.13224786520004,0.069658651947975,-0.051604595035315]],[[0.089441858232021,0.028183914721012,-0.01264773029834],[0.048761397600174,0.043267413973808,0.046776507049799],[0.094528891146183,0.24783585965633,-0.01616445183754]],[[0.012841139920056,-0.053176268935204,-0.093070492148399],[0.086513511836529,0.050065435469151,0.075575016438961],[0.068444974720478,0.025727022439241,-0.19637018442154]],[[-0.052651200443506,0.016322145238519,0.018244972452521],[-0.05059626698494,0.033291153609753,0.11587723344564],[-0.10441116243601,-0.0786112844944,0.013347133994102]],[[-0.072301641106606,-0.13285322487354,-0.004599719773978],[0.052431728690863,-0.058998174965382,0.022407602518797],[0.073255196213722,-0.013720722869039,-0.16292186081409]],[[-0.071289137005806,0.051072165369987,0.012705131433904],[-0.069278933107853,-0.091293729841709,0.040171541273594],[-0.018972242251039,0.1041878759861,0.027921888977289]],[[-0.20538640022278,-0.035612743347883,0.010321865789592],[-0.0032073114998639,-0.080078527331352,0.0083691729232669],[-0.028784304857254,-0.031263440847397,-0.099789150059223]],[[-0.26337972283363,-0.064124897122383,0.030625583603978],[-0.017232425510883,-0.084797747433186,0.022391524165869],[-0.1433560103178,-0.2388678342104,-0.14578148722649]],[[0.11076820641756,0.015933074057102,0.2016866505146],[-0.088229365646839,0.025806756690145,0.055395536124706],[0.15640537440777,0.16997511684895,0.10100036859512]],[[-0.0075775473378599,-0.011077492497861,-0.080713912844658],[0.17458714544773,0.097008556127548,-0.068791165947914],[0.038581471890211,0.089490130543709,0.054158508777618]],[[0.024805041030049,0.063990190625191,-0.17509399354458],[0.058088719844818,0.083277560770512,-0.23859034478664],[-0.032189063727856,-0.13346959650517,-0.18355977535248]],[[-0.18339814245701,-0.024016570299864,0.015537702478468],[-0.045047298073769,-0.035163935273886,-0.052600990980864],[-0.12406072020531,-0.077221021056175,0.089897871017456]],[[0.13691575825214,0.0029366628732532,-0.11584054678679],[0.19899562001228,0.11525171250105,-0.031311746686697],[0.068447537720203,-0.095744661986828,-0.082792587578297]],[[0.066696770489216,-0.0039874771609902,0.03790345415473],[-0.068645365536213,-0.11860878020525,-0.15901198983192],[0.043712493032217,-0.10092809051275,-0.076047986745834]],[[0.025808421894908,0.0426429733634,0.033670138567686],[-0.031882014125586,0.043840155005455,0.014403255656362],[0.051728241145611,0.023491457104683,-0.1400533169508]],[[-0.071403034031391,0.042915653437376,-0.030898736789823],[-0.10734888166189,0.070425651967525,0.082604438066483],[-0.016985859721899,-0.0087035736069083,0.073257237672806]],[[-0.037670563906431,-0.077337488532066,0.079682528972626],[0.043583981692791,0.072342537343502,-0.044430866837502],[0.13485877215862,0.17927214503288,0.054440964013338]],[[-0.14134834706783,0.022068688645959,0.14573010802269],[0.13422276079655,0.090924419462681,0.21883144974709],[0.048088651150465,-0.07917059212923,0.18267033994198]],[[0.19117741286755,-0.014523486606777,0.017602559179068],[-0.038257483392954,-6.6518841776997e-06,-0.0013465834781528],[-0.063144862651825,-0.069332785904408,0.0011706373188645]],[[0.17281755805016,-0.16707855463028,-0.04387079551816],[-0.037611916661263,-0.020563412457705,0.068769536912441],[-0.084713310003281,0.078436240553856,0.052610378712416]],[[-0.088876701891422,0.002854289021343,-0.020431999117136],[-0.15899978578091,-0.039248649030924,0.057051364332438],[0.061781942844391,0.04943922534585,0.088357158005238]],[[-0.023013738915324,-0.0248091109097,-0.053419463336468],[0.024528680369258,0.05793322622776,0.056140575557947],[0.090256340801716,0.042062420397997,-0.068016298115253]],[[0.1274174451828,0.18755976855755,0.11760606616735],[0.029176415875554,0.10444329679012,0.033890895545483],[0.01810017041862,0.077764339745045,0.15491260588169]],[[-0.20515407621861,-0.045173779129982,0.032952103763819],[-0.086560815572739,-0.069845199584961,-0.11708166450262],[0.15031704306602,-0.040074847638607,-0.19293001294136]],[[-0.090075500309467,-0.022439388558269,0.16047194600105],[-0.043552838265896,-0.16720670461655,0.019706012681127],[-0.028251780197024,-0.07677011936903,-0.088454388082027]],[[-0.063441634178162,-0.099719181656837,-0.062636107206345],[0.0061812936328351,-0.084357053041458,-0.02994554489851],[-0.029274640604854,0.043373927474022,0.00743767619133]],[[-0.2569714486599,-0.2192215770483,0.031593296676874],[-0.074434243142605,-0.19157631695271,0.042284328490496],[0.048397425562143,-0.16732338070869,0.037990242242813]],[[-0.083400890231133,-0.086894758045673,-0.048343863338232],[-0.088627256453037,-0.091054506599903,-0.074182830750942],[-0.01671627163887,0.17174370586872,0.010646952316165]],[[-0.014889486134052,0.049586594104767,-0.086392059922218],[-0.080842800438404,-0.05326946079731,0.018901256844401],[-0.037441704422235,0.050093252211809,0.049204971641302]],[[0.012802174314857,0.11568737030029,-0.13304416835308],[0.061179779469967,-0.028905790299177,-0.11389848589897],[0.008441093377769,-0.0097492532804608,0.16162942349911]],[[-0.0069104703143239,-0.062715776264668,-0.057567305862904],[0.079362653195858,-0.06203680485487,-0.010625586844981],[0.00032964942511171,0.067245960235596,0.083953119814396]],[[-0.094615891575813,0.060027107596397,-0.061739757657051],[0.043005652725697,0.042244028300047,0.10480071604252],[0.093989722430706,0.10841699689627,-0.098581671714783]],[[-0.013309198431671,-0.021916106343269,0.0035079463850707],[-0.078917488455772,-0.04526561871171,0.07289545238018],[0.045455802232027,-0.090175047516823,0.07025670260191]],[[0.27380269765854,0.066310398280621,-0.037369474768639],[0.084735684096813,0.099804431200027,0.027084592729807],[0.068202905356884,0.058234561234713,0.044528272002935]],[[-0.039035428315401,0.1041018217802,0.021571127697825],[-0.050489269196987,0.034372009336948,-0.056900642812252],[0.094690173864365,0.065451443195343,0.10585294663906]],[[0.11463487148285,-0.042238604277372,-0.088432528078556],[0.12259460985661,-0.047063618898392,-0.038202479481697],[0.01120965462178,0.05675371363759,-0.0067222155630589]],[[-0.0078981043770909,0.09258946031332,-0.04963955655694],[-0.11939514428377,-0.039051249623299,0.014702177606523],[0.091182351112366,-0.061032794415951,-0.083852186799049]],[[-0.098695188760757,0.055875092744827,-0.10944572836161],[-0.14679892361164,-0.06282702088356,-0.24626119434834],[0.0078428294509649,0.035106092691422,-0.054080069065094]],[[0.018089132383466,0.021454038098454,0.11065472662449],[0.11679740250111,0.030808873474598,0.038820996880531],[0.047370091080666,0.035783614963293,0.11246971786022]],[[-0.13902492821217,0.04154110699892,0.17378352582455],[0.013072320260108,-0.0097195375710726,0.091971598565578],[-0.05698286741972,-0.034146174788475,0.33602970838547]],[[0.024055169895291,-0.0018938195426017,0.025479113683105],[0.0040332213975489,0.022269234061241,0.063945412635803],[-0.0093914465978742,0.031483493745327,0.076950788497925]],[[0.017747899517417,-0.0064251250587404,-0.032002802938223],[0.018280172720551,0.062042139470577,0.0286183077842],[-0.092210255563259,0.022466132417321,-0.0046419794671237]],[[0.034474827349186,0.095220863819122,-0.13817577064037],[0.088587433099747,0.097940407693386,0.096159420907497],[-0.091772317886353,-0.0086073717102408,0.10799168050289]],[[-0.20467264950275,0.019724195823073,-0.019609149545431],[0.029080843552947,0.048744533210993,0.049615103751421],[0.011892987415195,0.042159661650658,0.065093524754047]],[[0.083463028073311,-0.21444976329803,-0.00011398404603824],[-0.13203932344913,0.014219380915165,0.029101485386491],[-0.075668349862099,0.049687169492245,-0.22953897714615]],[[-0.072731859982014,0.034811470657587,-0.041831977665424],[0.011636584997177,-0.025235606357455,-0.055302307009697],[0.0023619045969099,-0.091865994036198,-0.027520548552275]],[[0.18535155057907,0.19669331610203,-0.0086493138223886],[0.082663111388683,0.030283281579614,-0.012819933705032],[0.061046913266182,-0.025762517005205,0.006083823274821]],[[0.10401581972837,0.12211929261684,0.080536752939224],[-0.045338824391365,0.065277434885502,-0.012345541268587],[-0.048520471900702,-0.078679263591766,0.0080366404727101]],[[-0.13456976413727,0.094752833247185,0.039248906075954],[-0.14088612794876,-0.0042501175776124,0.0071681938134134],[0.010572803206742,-0.02339244261384,0.02344342879951]],[[-0.14043712615967,-0.041039582341909,0.01494633872062],[0.11329171806574,0.035685796290636,0.069210708141327],[0.020804740488529,0.12445075064898,-0.17972281575203]],[[0.066255941987038,0.068907581269741,-0.11517062038183],[0.10304690897465,0.018249977380037,-0.048031505197287],[0.02128411270678,-0.056736912578344,0.0048861890099943]],[[-0.076515942811966,-0.30665448307991,-0.31995248794556],[-0.0047398838214576,-0.053753949701786,0.044574230909348],[-0.029262211173773,-0.12096474319696,-0.087259329855442]],[[-0.056975990533829,0.013655635528266,-0.0014900852693245],[-0.15202076733112,-0.056343778967857,-0.0084735853597522],[-0.017087707296014,-0.018598515540361,-0.019585784524679]],[[0.19224306941032,-0.027374697849154,-0.026698568835855],[-0.092986807227135,-0.023652335628867,0.064881458878517],[0.050178173929453,0.039180040359497,0.014625854790211]],[[0.062659189105034,0.050670504570007,0.019682735204697],[0.09621924161911,-0.029197156429291,0.056373707950115],[0.022368226200342,-0.14035035669804,-0.085904181003571]],[[0.06812447309494,0.040012091398239,-0.11105137318373],[0.068914815783501,0.01972939260304,-0.19027881324291],[-0.043192964047194,0.023881012573838,-0.057252071797848]],[[0.02119517698884,-0.0043911822140217,0.072148770093918],[0.033027973026037,0.02449893206358,-0.10906448960304],[0.055368300527334,0.010391980409622,-0.048968777060509]],[[0.086409941315651,0.16595333814621,0.048264488577843],[0.046317379921675,-0.012904382310808,0.10140354186296],[0.12953120470047,0.029343375936151,0.0070000132545829]],[[-0.021666711196303,-0.14862675964832,-0.15868034958839],[-0.029630618169904,0.094295971095562,0.016693197190762],[0.03002081438899,-0.0054293833673,-0.09322190284729]],[[-0.030716720968485,-0.0586127191782,0.01184609811753],[0.096313960850239,0.07530964165926,0.070076733827591],[0.18805931508541,0.028673008084297,0.030397914350033]],[[0.20101441442966,0.12354464828968,-0.073548272252083],[0.084101244807243,0.020889803767204,0.10083431750536],[0.09682173281908,0.06811385601759,-0.15685480833054]],[[0.19097025692463,0.069640025496483,-0.075429402291775],[0.11481266468763,0.051623214036226,0.033958725631237],[0.075500495731831,-0.079198732972145,0.096105717122555]],[[-0.062845505774021,0.0078569585457444,0.057550895959139],[0.11186039447784,0.067584961652756,-0.041578941047192],[-0.058718822896481,0.080573819577694,0.071903109550476]],[[0.094699740409851,-0.054913926869631,0.078543692827225],[-0.10417218506336,0.086448468267918,0.15778858959675],[-0.057545982301235,0.057012606412172,0.14792717993259]],[[-0.12327219545841,0.090265013277531,0.1543984413147],[0.050034526735544,0.036232922226191,-0.0036818867083639],[0.19874599575996,0.050258193165064,-0.10485716164112]],[[-0.090732291340828,-0.11332350224257,0.056645169854164],[0.13311031460762,-0.10361842811108,-0.085113510489464],[0.053259879350662,0.078451976180077,-0.039280503988266]],[[0.091338530182838,-0.26621496677399,-0.16596914827824],[0.011927369982004,-0.082745976746082,-0.060786034911871],[0.1007192209363,0.055938959121704,-0.063106648623943]],[[0.10687001794577,-0.016420913860202,0.034134246408939],[-0.021058427169919,-0.0030195377767086,-0.10475642979145],[-0.035554584115744,-0.10897852480412,-0.056170754134655]],[[0.19685737788677,0.10295349359512,0.043562322854996],[-0.047990389168262,-0.14395396411419,-0.073012113571167],[-0.019789529964328,0.038949120789766,0.034419491887093]],[[0.040338832885027,-0.028016427531838,-0.11172071099281],[0.072641953825951,0.066188037395477,-0.026503903791308],[-0.080287426710129,0.063243590295315,0.12034983932972]],[[-0.081978306174278,-0.095182724297047,-0.05096247792244],[0.069646321237087,0.08740209788084,0.0001772029499989],[-0.11653247475624,0.023210186511278,-0.031259153038263]],[[-0.12642301619053,0.058134473860264,-0.11843970417976],[0.041083823889494,0.033199552446604,0.032603830099106],[-0.13578198850155,-0.052637048065662,0.094169706106186]],[[0.032044600695372,0.20413529872894,0.061287026852369],[0.20036838948727,-0.066347569227219,0.15792544186115],[0.14129497110844,0.052567407488823,0.19735492765903]],[[0.12157924473286,-0.078087136149406,-0.015465494245291],[0.069267131388187,-0.096699476242065,0.053207073360682],[0.015092324465513,-0.11110320687294,-0.058108281344175]],[[0.03603158146143,0.031899426132441,-0.096203625202179],[0.07348158210516,-0.0091563249006867,-0.041984561830759],[0.091444998979568,0.080980904400349,-0.11694864183664]],[[0.025908572599292,0.053878925740719,0.010105557739735],[-0.083266399800777,0.12071903795004,0.030519584193826],[-0.023266807198524,0.044102769345045,0.20173774659634]],[[-0.15178529918194,-0.14206847548485,0.02971469797194],[-0.057550057768822,0.083811074495316,-0.025547189638019],[-0.077431976795197,0.028333889320493,-0.0015189829282463]],[[0.11207113415003,0.11696782708168,0.054781582206488],[0.10826481878757,0.054105628281832,0.039621375501156],[-0.059383530169725,0.0086564598605037,0.056872941553593]],[[0.016465438529849,0.017673283815384,-0.041849978268147],[-0.055083122104406,0.0030586465727538,0.0046014916151762],[-0.012103700079024,0.071004964411259,0.022938754409552]],[[0.0075795510783792,0.059612471610308,0.14226929843426],[0.030545759946108,-0.055928807705641,-0.01586707867682],[-0.071911051869392,0.011752079240978,0.16035339236259]],[[-0.02624873071909,0.087323792278767,0.056833285838366],[-0.078131005167961,-0.10637181252241,-0.0076431236229837],[-0.012988422997296,-0.02544748224318,-0.076113343238831]],[[0.16604854166508,0.21711002290249,0.064495578408241],[0.033924736082554,0.08458986133337,0.0015439374838024],[0.10580759495497,0.13308289647102,0.14494667947292]],[[0.11680299788713,0.041518393903971,-0.027449905872345],[0.0056083831004798,0.046355448663235,0.10339126735926],[0.051232036203146,0.029827650636435,-0.085799507796764]],[[0.065365746617317,0.093107752501965,-0.0026016519404948],[0.025062313303351,0.0063043450936675,0.050587400794029],[0.040217231959105,-0.037696216255426,-0.088129431009293]],[[0.039314992725849,0.01792050153017,0.12411667406559],[-0.11331748962402,-0.089087069034576,0.010455775074661],[0.19769947230816,0.18754501640797,0.07829063385725]],[[-0.10000526160002,0.0012400990817696,0.012901272624731],[0.049893029034138,0.027509296312928,-0.032454684376717],[0.024686802178621,-0.045154385268688,0.017235862091184]],[[0.037348952144384,-0.1289881169796,0.010937783867121],[-0.097412548959255,-0.0035876706242561,0.021404730156064],[0.00061570852994919,-0.023989927023649,0.20030814409256]],[[-0.032656438648701,-0.069576911628246,-0.18110880255699],[0.044218152761459,-0.034297499805689,0.053555261343718],[0.060234144330025,0.040181692689657,-0.019750919193029]],[[0.11034058779478,0.023030489683151,-0.057155556976795],[0.0018692028243095,-0.034217029809952,0.031705781817436],[-0.17409159243107,0.013064886443317,-0.082640297710896]],[[0.10287721455097,0.02979258261621,0.01042468007654],[0.0029682500753552,0.18946366012096,-0.011125012300909],[0.0018954271217808,-0.010034654289484,0.034675423055887]],[[0.09528312087059,-0.1314130872488,-0.18595476448536],[-0.17673739790916,-0.091535612940788,-0.13738863170147],[0.0011158217675984,-0.038261774927378,-0.044656503945589]],[[-0.022798417136073,-0.057400286197662,-0.15556009113789],[-0.0079837245866656,-0.086787886917591,-0.058758080005646],[-0.041785109788179,-0.069370195269585,0.083946488797665]],[[-0.034067250788212,-0.084069222211838,-0.037065971642733],[-0.11244706064463,-0.038353480398655,0.076138988137245],[0.081312164664268,-0.021535143256187,-0.04298010468483]],[[0.10663332790136,-0.089412584900856,-0.26668268442154],[-0.038775943219662,-0.064033560454845,0.095656014978886],[0.037179730832577,0.0068569583818316,0.055609308183193]],[[0.12395706027746,0.04061321541667,-0.07560933381319],[0.0067430213093758,0.12409665435553,-0.060776870697737],[-0.020134633406997,0.0030034391675144,0.13594622910023]],[[-0.095767073333263,0.13651339709759,-0.018490198999643],[-0.01233624946326,0.015413896180689,0.034573446959257],[0.099762447178364,-0.10366475582123,-0.049304716289043]],[[-0.10798832029104,0.13501887023449,0.041512589901686],[-0.074402712285519,-0.090398997068405,0.013962199911475],[0.0059852753765881,0.0067205922678113,0.053527493029833]],[[-0.12158825993538,-0.10339975357056,-0.17460457980633],[-0.02680385299027,-0.1939732581377,-0.10443092882633],[-0.079689875245094,-0.096256114542484,-0.043835483491421]],[[-0.25559258460999,0.0072635943070054,-0.017115389928222],[0.076624862849712,0.024692505598068,-0.063329800963402],[-0.11649104207754,-0.049116224050522,-0.019608031958342]],[[0.17194233834743,0.21078504621983,0.095158562064171],[0.10917147994041,0.12010057270527,0.06700948625803],[0.051952347159386,0.12740036845207,0.092076517641544]],[[0.02310474589467,0.03864173963666,-0.066369943320751],[0.086875602602959,0.010752554982901,-0.030641905963421],[0.053836580365896,-0.16021972894669,0.028829839080572]],[[0.055380396544933,0.082730516791344,-0.019933169707656],[0.11372467875481,0.13080310821533,0.075293898582458],[0.012399162165821,-0.020690696313977,-0.012219396419823]],[[0.017324885353446,-0.042564764618874,0.085286118090153],[0.054819263517857,0.076556116342545,-0.011408142745495],[0.020316638052464,0.083111852407455,-0.11080391705036]],[[0.03574837744236,0.06476678699255,-0.0019412154797465],[0.019702196121216,0.0047522000968456,-0.058509133756161],[-0.030059384182096,-0.14379927515984,-0.020541099831462]],[[-0.038282964378595,0.097466804087162,-0.029064999893308],[-0.040916532278061,0.021581687033176,0.047156140208244],[-0.15783381462097,0.072474643588066,0.08317569643259]],[[-0.00040441082092002,-0.04751730710268,0.02881195768714],[0.094374664127827,-0.080328024923801,-0.039159063249826],[0.030971724539995,0.17688836157322,-0.041943114250898]],[[0.044424831867218,0.01789285428822,-0.031467910856009],[0.025400921702385,-0.024119796231389,-0.044945869594812],[-0.0020706253126264,-0.026316359639168,-0.059345353394747]],[[0.042490296065807,0.1330202370882,0.03852117434144],[-0.014172706753016,-0.056717544794083,-0.081735663115978],[-0.063822977244854,0.00011604010069277,0.086867697536945]],[[-0.091058902442455,-0.012563371099532,0.07043631374836],[-0.043817099183798,0.067036509513855,-0.026769107207656],[-0.029274439439178,0.075228154659271,-0.014820997603238]],[[-0.0078693320974708,-0.045300658792257,0.0055681788362563],[-0.037957847118378,-0.016583455726504,0.13876125216484],[0.054828468710184,0.038493756204844,-0.18890964984894]],[[-0.0034943609498441,0.024068716913462,0.040445677936077],[-0.059681788086891,-0.077142715454102,0.05742309615016],[-0.089212320744991,-0.052844163030386,0.037832871079445]],[[-0.13439445197582,-0.083669848740101,0.038772791624069],[-0.023476053029299,-0.01569071225822,0.078535981476307],[-0.039925683289766,-0.073480531573296,-0.0081824520602822]],[[0.0046336185187101,-0.22632738947868,0.025465859100223],[-0.079235941171646,-0.053768992424011,0.027632515877485],[-0.030755270272493,-0.041782833635807,-0.092799350619316]],[[0.050771076232195,-0.071804285049438,-0.022291958332062],[0.062413971871138,-0.0073179644532502,-0.11057519167662],[-0.019412776455283,0.092501066625118,-0.052532535046339]],[[-0.0099875843152404,-0.050883218646049,-0.0031419293954968],[0.010228344239295,-0.0085949972271919,-0.017017526552081],[-0.00052751071052626,-0.043012388050556,-0.061458811163902]],[[0.09685293585062,0.06416667252779,0.039674941450357],[-0.024068431928754,-0.025041807442904,-0.0095931766554713],[0.067073293030262,0.030368283390999,-0.034192733466625]],[[-0.012133589945734,0.01000396721065,-0.16858761012554],[-0.044129684567451,-0.034902039915323,-0.024750038981438],[0.014741102233529,0.033177193254232,-0.068697974085808]],[[0.12418647110462,0.22604285180569,0.076375558972359],[0.0837522149086,0.0458266697824,-0.082606270909309],[0.10185760259628,0.11165697127581,0.061415977776051]],[[-0.046140149235725,-0.070307694375515,-0.066086642444134],[0.036750674247742,0.053483609110117,-0.089401803910732],[-0.073698729276657,-0.032786402851343,-0.02158579416573]],[[-0.035850770771503,-0.16178534924984,0.31620839238167],[-0.19814941287041,0.032214052975178,0.079443328082561],[-0.13862290978432,-0.098098829388618,-0.075713083148003]],[[0.01023143902421,-0.068430624902248,-0.068204656243324],[-0.1185964718461,-0.14133356511593,-0.12212599813938],[0.0025150158908218,-0.0071608959697187,-0.023037178441882]],[[-0.022401750087738,0.013370892032981,0.022977333515882],[-0.21058039367199,-0.13598358631134,-0.0088000651448965],[-0.30945089459419,0.042306769639254,0.01178168412298]],[[-0.08578023314476,-0.044864356517792,-0.031331639736891],[0.10091618448496,-0.04398500546813,-0.0079776654019952],[-0.036658372730017,-0.087717995047569,-0.066173680126667]],[[0.12097933143377,0.082308307290077,0.050682991743088],[-0.041824080049992,0.059974119067192,-0.038469918072224],[0.028977449983358,-0.0073217921890318,0.010733257979155]],[[0.042918160557747,0.077092573046684,-0.0055666882544756],[-0.039025709033012,0.0030137726571411,0.041231069713831],[0.094531662762165,0.042766649276018,0.013671054504812]],[[0.028159575536847,0.10147053003311,0.061626642942429],[-0.12051521241665,0.019749645143747,0.0071524945087731],[0.013856206089258,0.064822837710381,0.066532924771309]]],[[[0.042794700711966,0.085147693753242,0.13357546925545],[-0.032544452697039,0.030286069959402,0.09254963696003],[-0.010103909298778,-0.16391532123089,0.049188926815987]],[[-0.034192834049463,0.045639935880899,-0.081036999821663],[-0.040388863533735,-0.040356811136007,-0.095530293881893],[0.028384944424033,0.046984374523163,0.082704678177834]],[[0.14980880916119,0.039515178650618,0.46077305078506],[0.0099393436685205,0.14551156759262,-0.045185044407845],[0.15671388804913,-0.047912128269672,-0.039659939706326]],[[0.040293719619513,0.12662303447723,0.038259990513325],[0.051188927143812,0.13315615057945,0.0017020347295329],[0.21936988830566,0.15116795897484,-0.027383886277676]],[[0.01871001906693,-0.012623010203242,0.06555300205946],[0.047261513769627,-0.00075610121712089,0.066047810018063],[-0.028674848377705,0.028262672945857,-0.054581061005592]],[[0.067213706672192,-0.0067984079942107,0.019185844808817],[0.063276454806328,-0.14395433664322,-0.018565073609352],[0.11525270342827,-0.1513307094574,-0.14920479059219]],[[0.030070243403316,0.10026694089174,0.10362012684345],[-0.050289206206799,-0.041855316609144,0.11320825666189],[-0.040607564151287,0.029350800439715,0.048297341912985]],[[-0.040182936936617,-0.035221058875322,-0.10601903498173],[-0.043048560619354,0.03805610165,-0.030043695122004],[0.1959076821804,0.10747540742159,-0.027783477678895]],[[-0.069751121103764,-0.11088814586401,-0.054556675255299],[0.02413490973413,-0.10028173029423,0.046734821051359],[-0.11741277575493,0.032815560698509,-0.1134043186903]],[[-0.064499326050282,0.053434677422047,-0.10757260769606],[0.026237828657031,0.011285852640867,-0.1615723669529],[0.030201552435756,-0.26477938890457,-0.15653501451015]],[[0.015870437026024,-0.0080137746408582,0.015614720061421],[0.0035665829200298,-0.06011901050806,-0.029565211385489],[0.022005746141076,0.088470377027988,-0.016165185719728]],[[0.011859910562634,-0.017356313765049,-0.031706657260656],[-0.032465569674969,0.15359431505203,0.17257790267467],[-0.058208558708429,0.010686273686588,-0.019291253760457]],[[0.048929933458567,-0.068042486906052,0.032410640269518],[0.064175218343735,0.077760234475136,-0.099413111805916],[0.028576953336596,-0.029788551852107,0.10913613438606]],[[-0.061864048242569,-0.165357619524,-0.15086376667023],[-0.0041811233386397,-0.078275613486767,0.0024805085267872],[-0.096878595650196,-0.032722119241953,-0.11431666463614]],[[-0.092863999307156,0.015651782974601,0.14109624922276],[0.085337199270725,-0.036175463348627,0.0023424280807376],[0.10720317810774,0.077920414507389,0.0023919793311507]],[[0.024072043597698,-0.05393011122942,-0.011114649474621],[0.038912400603294,-0.039813622832298,0.048100791871548],[0.037617046386003,0.0095945121720433,-0.044856242835522]],[[-0.010690747760236,-0.10322970896959,-0.15661372244358],[-0.0045024543069303,-5.9384004998719e-05,-0.048580765724182],[-0.042776819318533,-0.031030736863613,0.00026557277305983]],[[0.063195168972015,0.074054703116417,-0.023691348731518],[-0.11797914654016,0.016462668776512,-0.096772655844688],[-0.10420005023479,-0.15457743406296,-0.078726142644882]],[[-0.11492978036404,-0.092651404440403,0.037250880151987],[-0.084027387201786,0.10479746758938,-0.054858524352312],[0.039980839937925,-0.016565855592489,0.14308826625347]],[[-0.028841590508819,0.00844038836658,-0.0098330629989505],[-0.10205283015966,0.012607327662408,0.035823669284582],[-0.13003581762314,-0.0036019021645188,0.033227276057005]],[[-0.032431479543447,-0.038308419287205,-0.10296832770109],[0.02693522349,-0.042398951947689,-0.02504912763834],[-0.10266784578562,-0.011497652158141,-0.06611917167902]],[[0.076683528721333,0.089492648839951,-0.07897525280714],[-0.084200896322727,-0.080745778977871,-0.016358830034733],[-0.10389912128448,-0.06642684340477,-0.035775497555733]],[[-0.044192478060722,-0.001392865087837,0.051829893141985],[-0.087004445493221,0.024007150903344,0.099313095211983],[-0.0081441644579172,-0.034178603440523,0.049005966633558]],[[0.13590131700039,0.079202026128769,0.10525718331337],[0.13723853230476,0.14163199067116,0.03693975135684],[0.13951754570007,0.080024518072605,0.071431510150433]],[[0.039471328258514,0.019599433988333,0.04034373909235],[-0.051777303218842,0.055711701512337,-0.017147628590465],[0.10648564994335,0.020548058673739,-0.04748198390007]],[[-0.059045780450106,-0.085779644548893,-0.17457744479179],[0.019529316574335,-0.070544190704823,-0.016265761107206],[0.046545643359423,-0.053209900856018,0.0068994988687336]],[[-0.064545534551144,-0.14559845626354,-0.065706923604012],[-0.083765000104904,-0.086529947817326,0.035647310316563],[-0.083738803863525,-0.031490560621023,-0.018366418778896]],[[0.017509896308184,0.044844567775726,0.018944576382637],[-0.0044297832064331,-0.0054355612955987,-0.059792790561914],[0.079643189907074,-0.060203406959772,-0.049507234245539]],[[0.04024388641119,-0.032351475208998,-0.0054819425567985],[0.013858936727047,0.05245403572917,0.024262243881822],[-0.046030927449465,-0.12842299044132,-0.013453893363476]],[[-0.0074988203123212,0.12057377398014,-0.011369892396033],[-0.075853116810322,0.045139916241169,-0.01575873605907],[-0.0013633558992296,-0.022051325067878,0.032538905739784]],[[0.043891169130802,8.1263577158097e-05,-0.10892160981894],[-0.045417800545692,-0.057760771363974,-0.10198707133532],[0.01759928278625,0.047572702169418,0.074426487088203]],[[0.077799774706364,-0.036004841327667,0.025106320157647],[0.16168214380741,0.15110516548157,0.0090063316747546],[-0.13996605575085,-0.016662161797285,0.040733233094215]],[[0.041997846215963,-0.041207369416952,0.034413289278746],[0.13502839207649,0.11472816765308,-0.021845443174243],[-0.079684868454933,-0.025642339140177,-0.095636673271656]],[[0.013705935329199,-0.10439571738243,-0.044795569032431],[0.034807618707418,-0.007459759246558,-0.04487357661128],[-0.041688207536936,-0.043926659971476,-0.017310328781605]],[[-0.028910016641021,-0.09484276920557,-0.072267889976501],[-0.025418125092983,0.030145391821861,-0.10607575625181],[-0.099801644682884,-0.017062794417143,-0.099451541900635]],[[0.083663284778595,0.12685592472553,-0.017832137644291],[-0.043796338140965,0.041667737066746,0.023368000984192],[-0.17235471308231,-0.060582492500544,0.0071100918576121]],[[0.12088479101658,0.048844777047634,-0.10520695149899],[0.068088792264462,0.089237213134766,-0.044056352227926],[0.016362566500902,0.030414119362831,0.01545335073024]],[[0.045245565474033,0.015323831699789,0.0078125083819032],[-0.052799478173256,-0.085594817996025,0.094174146652222],[0.069779224693775,-0.013938457705081,-0.07132113724947]],[[-0.0022811754606664,-0.15172155201435,-0.01814211346209],[-0.061351113021374,-0.039201878011227,0.050233155488968],[0.042175438255072,0.036257937550545,0.04552061483264]],[[0.081708677113056,0.00069581618299708,0.022008234634995],[0.019818808883429,-0.014886188320816,0.0065614678896964],[-0.0095338197425008,-0.088412627577782,-0.083960868418217]],[[-0.078698165714741,0.0097300764173269,0.019674645736814],[0.058903034776449,-0.074016042053699,0.015059947967529],[-0.040957078337669,-0.068687081336975,0.015669587999582]],[[-0.12692178785801,0.0001183216663776,-0.078181549906731],[-0.047246713191271,-0.02818419970572,-0.1005887016654],[-0.00072009762516245,-0.073205426335335,-0.023263158276677]],[[0.052179533988237,-0.063060507178307,-0.093402072787285],[-0.025235196575522,-0.085557818412781,-0.13333579897881],[-0.021736528724432,-0.04904618114233,-0.12402327358723]],[[-0.064272992312908,-0.015900352969766,0.029230762273073],[0.074544630944729,-0.00031675267382525,0.034827452152967],[-0.041378121823072,-0.045150969177485,-0.050212644040585]],[[-0.053292572498322,-0.092720292508602,0.033940333873034],[0.027961049228907,0.06426789611578,0.00203538662754],[-0.033125728368759,0.0028591156005859,-0.016739433631301]],[[-0.086456269025803,-0.15969514846802,0.037937350571156],[-0.021364977583289,-0.037894200533628,-0.011614628136158],[-0.024779066443443,-0.082679577171803,-0.060098223388195]],[[0.041560005396605,0.035496287047863,-0.15887545049191],[-0.18258209526539,-0.0026622076984495,-0.053633697330952],[-0.051905781030655,0.029000885784626,0.015456181019545]],[[0.12581364810467,0.012207250110805,0.031183315441012],[0.03831659629941,0.05984740331769,0.055320233106613],[-0.058610755950212,-0.072305925190449,-0.081734217703342]],[[-0.068225726485252,0.020562058314681,0.050852179527283],[0.018246214836836,0.016103951260448,-0.077598296105862],[-0.017746610566974,-0.058011267334223,-0.074500478804111]],[[-0.0083680301904678,-0.038179464638233,-0.084926389157772],[0.013986891135573,0.05470172315836,-0.099396385252476],[0.029050404205918,-0.12774920463562,-0.10870955139399]],[[-0.030785489827394,-0.036209773272276,0.022650692611933],[-0.0015029691858217,0.016024624928832,-0.00066955998772755],[-0.022790528833866,-0.028491193428636,-0.067108027637005]],[[0.020520962774754,-0.15294395387173,0.042663853615522],[-0.024324199184775,0.11908058822155,0.12681978940964],[-0.013363024219871,0.12700593471527,0.16298893094063]],[[0.060674730688334,0.10615814477205,0.083257734775543],[-0.11860702186823,-0.014616069383919,0.05178652331233],[-0.040035411715508,-0.14422760903835,-0.049332104623318]],[[-0.21399390697479,-0.1521370857954,0.064699470996857],[-0.047716960310936,0.11843079328537,0.093119531869888],[-0.032639175653458,-0.13159722089767,-0.049690034240484]],[[0.14351420104504,-0.038261227309704,0.029283614829183],[-0.07965162396431,-0.11435029655695,-0.032208614051342],[-0.030868027359247,-0.044540379196405,-0.067062616348267]],[[0.026841547340155,0.064911037683487,-0.092718124389648],[-0.018848359584808,-0.022665152326226,-0.019486023113132],[-0.049338154494762,0.078236877918243,-0.066434197127819]],[[-0.020836029201746,0.065061070024967,0.16368468105793],[0.026718154549599,0.0046453522518277,0.10711874812841],[-0.030791532248259,-0.044267080724239,0.061799045652151]],[[-0.01299365144223,-0.024970324710011,0.045716248452663],[-0.017108159139752,-0.092588528990746,-0.013917246833444],[-0.055801972746849,0.010677117854357,-0.18120129406452]],[[-0.016688982024789,-0.013472152873874,-0.16147768497467],[-0.088793881237507,-0.049882348626852,-0.079010851681232],[0.072362408041954,-0.053070068359375,-0.18163813650608]],[[-0.11918993294239,-0.049101568758488,-0.11922988295555],[0.032207787036896,0.071307584643364,-0.068336270749569],[-0.11609793454409,-0.039393797516823,-0.035270974040031]],[[-0.039690092206001,0.017131563276052,0.0710444226861],[-0.088602229952812,-0.061865143477917,-0.042827345430851],[0.12120221555233,-0.027549065649509,-0.1338499635458]],[[0.11071569472551,-0.016831694170833,0.0228092353791],[-0.049120720475912,-0.10513973981142,-0.056463152170181],[-0.13860014081001,-0.075799584388733,-0.043298695236444]],[[0.041175901889801,-0.030724024400115,-0.024063587188721],[0.268540173769,0.21474768221378,0.05458839982748],[0.010257124900818,-0.11032236367464,-0.17891331017017]],[[0.023762518540025,0.14205592870712,0.037182219326496],[-0.017548393458128,-0.012457760050893,0.0068249413743615],[0.049588177353144,-0.057217545807362,-0.0057441801764071]],[[-0.040331333875656,-0.050114922225475,0.13194665312767],[-0.057002861052752,-0.076550140976906,-0.061219397932291],[-0.041046164929867,0.095856294035912,0.033072639256716]],[[0.0092982798814774,0.023375168442726,-0.014132093638182],[-0.044073019176722,0.053967963904142,0.098805412650108],[0.084277361631393,0.021776709705591,-0.047337409108877]],[[0.086652375757694,0.01222525537014,0.014178956858814],[0.017574703320861,0.20040890574455,-0.074704527854919],[0.051990114152431,0.062537901103497,-0.007297505158931]],[[0.11351093649864,0.02826271392405,-0.061654552817345],[-0.21982572972775,0.024484876543283,0.095198072493076],[-0.0084934560582042,-0.16984233260155,0.044290073215961]],[[-0.0063269133679569,-0.052410248667002,-0.10831900686026],[-0.068080455064774,-0.05355117097497,-0.1041085422039],[-0.090866521000862,-0.083709418773651,0.026131771504879]],[[-0.031500667333603,0.055517114698887,0.021089788526297],[-0.078541107475758,-0.064081504940987,0.033838495612144],[0.086936891078949,0.019141774624586,0.00057643087347969]],[[-0.018022254109383,0.032382987439632,-0.056501396000385],[-0.053663577884436,-0.057888973504305,-0.062220592051744],[-0.070967264473438,0.00062557600904256,-0.13978695869446]],[[-0.11374993622303,0.092101156711578,0.043628986924887],[-0.069350317120552,-0.065088421106339,-0.046901248395443],[0.026415970176458,0.039498895406723,0.046285819262266]],[[-0.22716768085957,-0.17061822116375,-0.1492760181427],[-0.083853647112846,0.0062350886873901,-0.052497565746307],[0.037449941039085,0.014469391666353,0.052169233560562]],[[0.11237306147814,0.0013161620590836,0.038693800568581],[0.036840155720711,0.016341159120202,0.094478383660316],[-0.27590277791023,0.03229221329093,0.11140294373035]],[[0.15220527350903,-0.11878652125597,0.013702783733606],[0.032160624861717,0.041854683309793,0.036136690527201],[-0.09860972315073,-0.08809532225132,0.05822704359889]],[[0.071047529578209,0.1060741096735,-0.072866715490818],[-0.096440374851227,0.065236307680607,0.079097121953964],[-0.12444448471069,-0.19972415268421,0.015644021332264]],[[-0.049866244196892,0.094618052244186,0.089602038264275],[0.038152858614922,-0.042680598795414,0.10839814692736],[-0.14226819574833,0.027267016470432,0.12370437383652]],[[-0.067077651619911,-0.11414295434952,0.00045814664917998],[0.11407289654016,-0.056367848068476,0.018411502242088],[0.014465169981122,0.11763492226601,-0.0079479068517685]],[[-0.077952913939953,0.057270660996437,0.069801777601242],[0.037222772836685,-0.057816598564386,0.019797654822469],[0.033985503017902,0.060079302638769,-0.09096621721983]],[[0.17909647524357,0.067994937300682,-0.023778257891536],[0.030818201601505,0.15384516119957,0.092774875462055],[-0.26433876156807,-0.044613115489483,0.07594708353281]],[[-0.072804279625416,-0.005670411977917,0.11785597354174],[-0.029314199462533,-0.054059725254774,0.011411614716053],[-0.046301547437906,0.020556202158332,-0.040369749069214]],[[-0.031748369336128,0.049532230943441,-0.034092053771019],[0.022532591596246,0.09570125490427,0.080729648470879],[0.055047679692507,0.085107639431953,0.006330787204206]],[[-0.072307392954826,0.0070133740082383,-0.0044204676523805],[-0.094075202941895,-0.048093967139721,0.049841869622469],[0.086707726120949,0.032037451863289,0.091061949729919]],[[-0.084162160754204,-0.058096382766962,0.0022139605134726],[-0.028353333473206,-0.071332715451717,-0.0056461337953806],[0.046615809202194,-0.069990649819374,-0.064309671521187]],[[-0.02076100744307,0.013963400386274,-0.012745443731546],[0.033581264317036,0.047557856887579,-0.059233672916889],[0.093280643224716,0.033027861267328,0.065611079335213]],[[0.21235008537769,0.077418722212315,-0.052141517400742],[-0.018704213202,0.12818239629269,0.033279433846474],[0.048900693655014,-0.056091215461493,0.03082992695272]],[[-0.0069048465229571,0.018814818933606,-0.0086552919819951],[-0.073035255074501,0.0079305600374937,-0.12978658080101],[-0.10511706024408,-0.05721352994442,-0.16547407209873]],[[-0.10190510004759,-0.056858111172915,0.064342595636845],[-0.006010846234858,0.032901179045439,0.10238833725452],[-0.0094536123797297,0.038998354226351,0.028290437534451]],[[-0.015134639106691,-0.094506628811359,-0.11287052184343],[0.097292318940163,-0.02130882255733,-0.063848465681076],[-0.0093775410205126,0.074957475066185,0.045269921422005]],[[0.0024949489161372,0.034907888621092,-0.086490780115128],[-0.13966129720211,-0.13973450660706,-0.15148049592972],[-0.0037214965559542,-0.041553799062967,-0.034044094383717]],[[-0.003961181268096,0.026988584548235,0.0028685918077826],[0.17185732722282,-0.081525929272175,0.007855162024498],[-0.0012059318833053,0.01577134616673,-0.034227646887302]],[[-0.0053374408744276,-0.0064304312691092,-0.161048412323],[0.095830075442791,-0.029505595564842,-0.030333947390318],[-0.0906081199646,0.053303528577089,0.0014852787135169]],[[0.050288338214159,0.021663947030902,0.091120921075344],[-0.015174732543528,-0.068213142454624,-0.080789305269718],[0.10785105824471,0.0091494210064411,-0.072469316422939]],[[0.02456471696496,0.13316555321217,0.18046130239964],[-0.086385950446129,-0.066757790744305,0.02450281009078],[-0.11623449623585,-0.056751202791929,-0.15849696099758]],[[0.15161624550819,0.0074766334146261,0.022324349731207],[-0.0078047658316791,0.0043674311600626,-0.013433361425996],[-0.10652207583189,-0.06495364010334,-0.036643631756306]],[[0.083541318774223,0.00500029604882,-0.093025997281075],[0.035719204694033,0.019575016573071,0.18523745238781],[-0.040516659617424,-0.0091916443780065,0.068705298006535]],[[-0.065121687948704,0.0088871465995908,0.12467440962791],[-0.076504737138748,-0.13009689748287,-0.048907227814198],[0.053968522697687,0.042084611952305,-0.00077606906415895]],[[-0.077594920992851,0.21934868395329,0.18178801238537],[0.031352084130049,0.013851832598448,0.17956379055977],[0.032293863594532,-0.028540533035994,-0.087247975170612]],[[0.025700002908707,-0.0057041579857469,-0.03013726323843],[-0.013660002499819,-0.052283696830273,0.080064848065376],[0.045088943094015,-0.086777672171593,0.057509664446115]],[[-0.020020799711347,-0.00037532649002969,0.028483273461461],[0.017835943028331,0.003972239792347,0.087821900844574],[0.086032919585705,-0.017085701227188,-0.05495573207736]],[[-0.010195991024375,-0.086590453982353,-0.048172891139984],[0.0898167937994,0.014438507147133,0.024175694212317],[0.10020115226507,0.039579406380653,-0.04188135266304]],[[0.010538315400481,0.10323329269886,0.076204657554626],[0.028021963313222,0.093585908412933,0.014123265631497],[0.018923096358776,-0.079840712249279,-0.031884633004665]],[[0.011753654107451,-0.062712490558624,0.087496288120747],[-0.021050056442618,-0.013108108192682,-0.10821612179279],[-0.1083737835288,-0.00040606572292745,0.068132005631924]],[[-0.012990726158023,0.014577257446945,-0.058322452008724],[0.074465289711952,0.073662206530571,0.062796898186207],[-0.0085175028070807,0.038149692118168,-0.029620474204421]],[[-0.046841911971569,-0.065972335636616,-0.10302905738354],[-0.018977679312229,0.096454761922359,0.087002620100975],[-0.025628328323364,-0.01327983289957,0.002064888831228]],[[-0.18640594184399,-0.11219204217196,-0.013328525237739],[-0.079912729561329,-0.059515852481127,-0.040738832205534],[0.10015528649092,0.1436910033226,0.08312015235424]],[[-0.010046502575278,0.023033652454615,-0.049338579177856],[-0.024820463731885,-0.068399079144001,-0.0005674937274307],[0.071216277778149,-0.026610855013132,0.0038505119737238]],[[-0.083777137100697,0.057372000068426,0.015327426604927],[-0.10708571970463,-0.11471208184958,0.021449137479067],[0.18797086179256,0.10697591304779,0.01211188454181]],[[0.23560126125813,0.00036008603638038,0.072647742927074],[0.11392875760794,-0.060918118804693,0.013741821050644],[0.11750938743353,0.020022090524435,-0.07331570237875]],[[0.058156341314316,-0.015565649606287,0.009641058743],[0.019168823957443,-0.019846836104989,-0.070297978818417],[-0.010771233588457,-0.049170020967722,-0.11483078449965]],[[-0.033717878162861,-0.067336440086365,-0.072230562567711],[0.03735438361764,0.00160693959333,-0.083772547543049],[0.020048961043358,0.088692843914032,0.037612579762936]],[[-0.079558253288269,-0.031939655542374,-0.029121389612556],[-0.024420535191894,-0.046846468001604,-0.09566742181778],[0.067218862473965,0.072957374155521,-0.032543014734983]],[[0.052667211741209,-0.050479020923376,-0.10459333658218],[0.011014685034752,-0.035305988043547,-0.050425689667463],[-0.18474814295769,0.11770705133677,-0.0033238548785448]],[[0.025459123775363,-0.0021289484575391,-0.042682506144047],[0.010184097103775,-0.030242197215557,-0.11109831929207],[-0.046176057308912,-0.012809459120035,-0.022063178941607]],[[-0.07573939114809,0.1533177793026,-0.24220645427704],[-0.091645397245884,-0.11837330460548,0.021085189655423],[0.056887187063694,-0.016745256260037,0.037972420454025]],[[-0.14842060208321,-0.080816954374313,-0.098893865942955],[0.059819214046001,0.12240704149008,0.066589772701263],[-0.073883958160877,-0.038168974220753,-0.16990618407726]],[[-0.02814052067697,0.021996108815074,-0.010409006848931],[0.022862082347274,-0.0032269433140755,-0.026671739295125],[0.020983453840017,-0.08354078233242,-0.11543553322554]],[[-0.057643998414278,-0.0011922534322366,0.096976563334465],[0.00075557047966868,0.050134595483541,0.017736231908202],[-0.0020042767282575,0.14527678489685,0.012156646698713]],[[0.036015879362822,0.0058211158029735,0.0027272612787783],[-0.073279410600662,-0.026219721883535,0.0090909516438842],[0.099940545856953,0.025652881711721,0.0041393348947167]],[[0.15569365024567,0.081490375101566,-0.017081242054701],[-0.026337634772062,0.144894272089,0.17712400853634],[0.019164107739925,-0.08478169888258,-0.0098189627751708]],[[0.014922161586583,0.039773900061846,0.14752227067947],[-0.016295578330755,0.015939688310027,-0.1139372959733],[-0.12961314618587,-0.16605859994888,-0.18485082685947]],[[0.084827154874802,0.030864749103785,-0.20320416986942],[-0.046137265861034,-0.051260229200125,-0.0077144848182797],[0.0026642654556781,-0.054577518254519,-0.052849836647511]],[[-0.055054850876331,0.11685390770435,-0.030849970877171],[-0.068480871617794,-0.020542163401842,-0.0070245559327304],[0.036039378494024,-0.015922915190458,-0.036649711430073]],[[0.013474298641086,0.003216820769012,-0.060787789523602],[-0.048460993915796,-0.05651868134737,-0.003748178249225],[0.057710025459528,0.085521645843983,-0.0081238457933068]],[[0.071104161441326,0.084236472845078,0.13023118674755],[-0.063097305595875,-0.023182265460491,0.050943866372108],[0.024078825488687,0.030794551596045,0.046905599534512]],[[-0.034883856773376,-0.053274542093277,0.066399373114109],[-0.012482489459217,-0.052893929183483,0.002455591224134],[0.010298079811037,0.081222765147686,-0.023991266265512]],[[0.050516333431005,0.059935860335827,0.079821012914181],[-0.028037086129189,-0.079955816268921,-0.035196274518967],[0.0098776603117585,-0.00098188489209861,-0.1172794252634]],[[0.0092281131073833,0.083921477198601,-0.00084156257798895],[0.10033039748669,0.00074299820698798,0.0039506191387773],[-0.0042650420218706,-0.047759719192982,-0.090928643941879]]],[[[-0.031482826918364,0.0051818052306771,0.00045100628631189],[5.371832230594e-06,-0.045762348920107,-0.048208981752396],[-0.09623471647501,-0.034301750361919,0.077852658927441]],[[-0.07428602874279,-0.036784864962101,-0.080946713685989],[0.089676223695278,-0.18376445770264,-0.25256967544556],[-0.1371735483408,-0.046189941465855,-0.020064095035195]],[[-0.015954913571477,0.04768194258213,-0.021057756617665],[0.018255580216646,0.0030404645949602,-0.030546620488167],[-0.060337774455547,0.069629654288292,0.060854498296976]],[[-0.041210863739252,-0.031020628288388,-0.12633095681667],[-0.028154920786619,0.041967064142227,-0.048278164118528],[-0.051540859043598,-0.043019115924835,-0.036295510828495]],[[0.040374498814344,-0.05474104359746,-0.069867886602879],[-0.027264442294836,0.060908827930689,-0.012426028028131],[0.043025393038988,-0.070283800363541,-0.012644802220166]],[[-0.023340068757534,0.046335872262716,0.00034889148082584],[-0.13333685696125,-0.15174631774426,-0.092604883015156],[0.14990980923176,0.16388881206512,0.16097520291805]],[[0.017003424465656,0.0038303760811687,-0.14581604301929],[-0.13135613501072,-0.1047373265028,-0.045942071825266],[0.096153095364571,-0.076071098446846,-0.014553953893483]],[[0.05190834030509,-0.042647249996662,0.03576522693038],[-0.048413123935461,0.10050059854984,-0.070990093052387],[0.06026915460825,0.082517571747303,0.1149981841445]],[[0.0099219055846334,0.08994734287262,-0.031082360073924],[-0.036513965576887,0.052884180098772,-0.012675527483225],[0.28532755374908,0.072618469595909,-0.013931349851191]],[[0.024375848472118,-0.14184015989304,-0.0076550664380193],[-0.03352552652359,-0.11377841979265,-0.1443225890398],[0.077855601906776,-0.11264608055353,0.0040868739597499]],[[-0.15627954900265,-0.036528393626213,-0.14048424363136],[0.094890207052231,0.08154558390379,0.26107379794121],[0.033656042069197,-0.23004770278931,-0.14700256288052]],[[-0.2831711769104,-0.18535371124744,0.16042259335518],[-0.0046996991150081,-0.032696221023798,-0.0047314963303506],[0.015524321235716,-0.0096753565594554,0.035132370889187]],[[0.1094511076808,0.1232041940093,0.039016149938107],[-0.069975435733795,0.055341996252537,0.10985842347145],[0.0097363060340285,0.051213156431913,-0.16333089768887]],[[0.023271232843399,-0.019667267799377,0.043954957276583],[0.014466341584921,-0.12395188212395,-0.24366772174835],[0.081528224050999,-0.040627505630255,-0.071307547390461]],[[-0.0401974581182,0.045442186295986,0.032045491039753],[-0.036179590970278,-0.16010054945946,-0.10062319785357],[-0.081562124192715,0.066677898168564,0.21658651530743]],[[-0.014020158909261,-0.022277437150478,-0.022134328261018],[-0.02223901450634,-0.093306221067905,-0.061385281383991],[-0.16663412749767,-0.029050797224045,-0.0029305287171155]],[[-0.067622296512127,0.098727345466614,0.26823228597641],[0.019352078437805,-0.15964543819427,-0.34472399950027],[-0.028241526335478,-0.014556163921952,0.03499923273921]],[[-0.033464316278696,0.071448855102062,0.037354696542025],[0.02245113439858,0.070408873260021,-0.047731321305037],[0.013822832144797,0.10881082713604,0.19543631374836]],[[0.016976494342089,0.021655501797795,0.22859932482243],[0.076478451490402,0.070928350090981,0.14046692848206],[-0.017635615542531,0.0061415648087859,-0.020360484719276]],[[0.0075584636069834,0.10427122563124,0.07731582224369],[-0.084905467927456,0.034523844718933,0.072103232145309],[-0.0043982318602502,0.019737988710403,-0.057028841227293]],[[0.022833283990622,-0.073619566857815,-0.095965504646301],[0.02116304077208,-0.027439480647445,-0.07936255633831],[-0.16339822113514,-0.10628572106361,-0.031825169920921]],[[0.11892118304968,0.11330097168684,0.097714602947235],[-0.02065584808588,-0.024994552135468,-0.032114516943693],[-0.0058096218854189,-0.0099334781989455,-0.00096395931905136]],[[-0.034048017114401,-0.10487368702888,-0.10595580935478],[-0.08148617297411,-0.0067059933207929,0.067744612693787],[0.026114964857697,-0.10508409142494,-0.092054843902588]],[[-0.12201002240181,-0.1026499569416,0.060395408421755],[0.034823063760996,-0.010667057707906,0.043919548392296],[-0.026788176968694,-0.15908259153366,-0.14175686240196]],[[-0.00020455376943573,-0.0014072430785745,-0.04535635560751],[-0.0010847764788195,-0.035652592778206,-0.12114143371582],[0.062493041157722,0.15386728942394,0.27607679367065]],[[-0.016763204708695,-0.025398982688785,-0.096700899302959],[0.069923207163811,0.082271553575993,0.055717084556818],[0.028123334050179,-0.059877716004848,-0.081077851355076]],[[-0.16191835701466,-0.15655915439129,-0.076190672814846],[0.24628046154976,0.10014494508505,0.045000366866589],[0.061567302793264,-0.10742358118296,0.0027475417591631]],[[-0.11455754190683,-0.095201976597309,-0.071561269462109],[0.11823135614395,0.074206739664078,0.07352152466774],[-0.10466397553682,-0.035890482366085,-0.088352546095848]],[[0.10484934598207,0.015469253063202,0.04283544421196],[-0.10047400742769,-0.012754399329424,-0.053219400346279],[-0.10634867846966,-0.061283200979233,-0.096362374722958]],[[0.027949582785368,0.082142271101475,-0.021865332499146],[0.063490375876427,-0.083476305007935,0.045442763715982],[0.042662978172302,-0.023465985432267,0.094238698482513]],[[-0.108931183815,-0.1350069642067,-0.13282534480095],[-0.32093948125839,-0.20649297535419,0.067591682076454],[0.064989790320396,0.10179959237576,-0.15732069313526]],[[0.028465632349253,0.12199274450541,-0.016314119100571],[0.017884159460664,0.10290931165218,0.06434266269207],[-0.039187137037516,-0.058469295501709,-0.12268932908773]],[[0.079676255583763,0.0072616771794856,-0.0060473675839603],[0.027393840253353,0.076542116701603,0.086495421826839],[0.12096229195595,0.10113071650267,0.09195863455534]],[[-0.066660523414612,-0.20600652694702,-0.23257420957088],[-0.08284093439579,-0.039372678846121,0.071238942444324],[-0.09664573520422,-0.072693549096584,-0.088465340435505]],[[0.026431342586875,-0.004590954631567,-0.030438762158155],[-0.028188386932015,-0.047855608165264,-0.23936745524406],[-0.069705039262772,0.045641265809536,0.12198883295059]],[[-0.031034711748362,0.13437451422215,0.17892780900002],[0.016364503651857,-0.049939081072807,-0.0042951428331435],[-0.020229740068316,-0.0037315774243325,-0.065334178507328]],[[-0.08207780122757,-0.13647755980492,-0.054617889225483],[0.040164206176996,0.11305200308561,0.13402409851551],[0.16482003033161,0.10469211637974,0.10915275663137]],[[-0.048320945352316,0.056115292012691,0.049280099570751],[0.0060320147313178,-0.11695371568203,-0.096997044980526],[-0.12002771347761,0.09055782109499,0.29867109656334]],[[-0.077369831502438,-0.10871195793152,0.09186814725399],[-0.11294360458851,-0.15671654045582,-0.15458132326603],[0.017548713833094,0.023185469210148,0.0025600420776755]],[[-0.005933003500104,0.0065250666812062,-0.18257042765617],[-0.026452951133251,-0.026406036689878,0.12590312957764],[-0.0091134505346417,-0.095321975648403,-0.16471695899963]],[[0.062119200825691,-0.18406029045582,-0.13422974944115],[-0.018894387409091,-0.030150014907122,-0.19928817451],[0.062312096357346,0.046841561794281,0.33221152424812]],[[0.13189041614532,0.085136473178864,0.075535416603088],[-0.023286079987884,0.054722458124161,0.16363917291164],[0.12047258764505,0.072550050914288,-0.012759969569743]],[[-0.086582630872726,0.042522300034761,-0.17444670200348],[0.019177356734872,-0.0528131313622,-0.055524177849293],[-0.076886385679245,-0.036101650446653,-0.12694723904133]],[[0.080447755753994,-0.031711176037788,0.049196965992451],[0.046955637633801,-0.076559215784073,-0.028421362861991],[-0.07105065882206,-0.048869729042053,-0.0077956290915608]],[[-0.1184349283576,0.021545177325606,0.12082956731319],[0.013983014971018,0.004705497995019,-0.0046130875125527],[-0.11500864475965,-0.0066383797675371,-0.038775973021984]],[[-0.25422686338425,-0.18812462687492,0.045626059174538],[0.070678994059563,0.0022667769808322,-0.11191166192293],[0.029830571264029,0.031934950500727,-0.053350429981947]],[[0.06754843890667,0.051256828010082,-0.024331593886018],[0.18345774710178,0.078010134398937,0.0073164724744856],[0.024543160572648,-0.084493406116962,-0.097451560199261]],[[-0.12244842946529,-0.057759243994951,0.023342890664935],[0.14618393778801,-0.018069626763463,-0.22747406363487],[-0.047495175153017,-0.014837052673101,-0.06475093215704]],[[-0.032175794243813,0.11404260993004,-0.0082388427108526],[-0.13517008721828,0.078010387718678,0.23879797756672],[0.12339189648628,-0.076538726687431,0.082291588187218]],[[-0.032685451209545,-0.20872189104557,-0.14665731787682],[-0.0048544649034739,-0.034244026988745,-0.050326861441135],[-0.18040059506893,-0.089947700500488,-0.10528991371393]],[[0.046098332852125,-0.087530493736267,0.0182802118361],[0.0043944860808551,-0.044727135449648,-0.1765880137682],[0.0096404710784554,0.099883668124676,0.16626091301441]],[[-0.10991782695055,-0.08269839733839,0.010217787697911],[0.099419102072716,0.0076820105314255,-0.018020737916231],[0.059018298983574,0.054001461714506,-0.056912787258625]],[[0.053112763911486,-0.023313095793128,-0.034942876547575],[-0.070484720170498,-0.028637126088142,0.024996381253004],[-0.018798897042871,-0.056577533483505,0.030615471303463]],[[-0.11813829094172,-0.097081810235977,-0.098050989210606],[-0.14113439619541,0.016673183068633,-0.046261761337519],[-0.003617606125772,-0.086460545659065,-0.14135800302029]],[[-0.018513487651944,0.014425839297473,0.021434284746647],[-0.015254467725754,-0.024897811934352,-0.0010401343461126],[-0.079145073890686,-0.046719588339329,-0.098369382321835]],[[0.0521653406322,-0.061290673911572,-0.090761803090572],[0.0014693146804348,-0.026716096326709,-0.035104729235172],[0.18633018434048,-0.059234976768494,-0.043903037905693]],[[0.18737334012985,0.071265377104282,-0.042780790477991],[-0.014206627383828,0.074852310121059,-0.032819412648678],[0.27350875735283,-0.022036639973521,-0.079988099634647]],[[0.0051461975090206,-0.0033817966468632,-0.09914842993021],[0.0070073581300676,-0.2072748541832,-0.22271291911602],[-0.19458900392056,-0.24454754590988,-0.17571675777435]],[[-0.026528645306826,0.02326126024127,-0.027162851765752],[-0.095135569572449,-0.18509148061275,-0.058940928429365],[0.1751860678196,-0.0041565652936697,0.034764759242535]],[[0.15622888505459,0.09018499404192,-0.010425496846437],[0.010649720206857,-0.087289534509182,-0.048955731093884],[-0.070557154715061,-0.093629829585552,-0.20313914120197]],[[0.081049777567387,-0.087670154869556,-0.016882359981537],[-0.0075248759239912,-0.13238576054573,-0.10083101689816],[0.064577922224998,0.023784270510077,0.042396266013384]],[[0.13154998421669,0.04164494946599,0.091034919023514],[-0.070023529231548,-0.027254935353994,0.13930977880955],[-0.029283359646797,-0.29348117113113,-0.11555106937885]],[[-0.072333671152592,-0.069384016096592,0.01495810970664],[0.088636346161366,0.082145497202873,0.18496738374233],[-0.14641582965851,0.030059937387705,-0.017510831356049]],[[0.12741151452065,0.02681328356266,-0.031037881970406],[0.082882545888424,0.088225461542606,0.018870308995247],[0.03475658595562,0.021487085148692,-0.12490351498127]],[[0.12948349118233,-0.04174966365099,0.043330401182175],[-0.008763313293457,0.035566624253988,0.088126204907894],[-0.017766069620848,-0.067517787218094,-0.093836762011051]],[[-0.10311127454042,-0.017522601410747,0.0015698664356023],[0.011687274090946,-0.014078461565077,0.0048284353688359],[-0.048686437308788,-0.078552395105362,-0.094888679683208]],[[-0.052317872643471,-0.062003836035728,0.017344743013382],[-0.019477538764477,-0.10109745711088,-0.14516513049603],[-0.043244928121567,0.046470772475004,-0.027474945411086]],[[-0.11157719045877,-0.046803906559944,0.025211399421096],[0.10158620774746,0.16234643757343,0.081874586641788],[-0.022404355928302,-0.078770935535431,-0.014781494624913]],[[-0.0081981299445033,-0.0088720610365272,0.0023786132223904],[0.09405305981636,0.078205838799477,-0.047585669904947],[0.1078532859683,0.068647742271423,-0.021425474435091]],[[-0.060616623610258,-0.13319362699986,-0.12039983272552],[-0.064645186066628,0.16663648188114,0.40522655844688],[0.13020335137844,-0.13010261952877,-0.29047885537148]],[[-0.093075409531593,-0.031739674508572,0.0026368168182671],[0.098854251205921,0.056640334427357,0.27158433198929],[0.056312378495932,0.097913086414337,-0.17894299328327]],[[0.11309692263603,0.17972983419895,0.17861048877239],[-0.021201783791184,0.013249156065285,0.0059865480288863],[0.067668311297894,-0.046200346201658,0.064142018556595]],[[0.12090067565441,-0.083719812333584,0.1055218949914],[-0.057045768946409,-0.1113435998559,-0.073025517165661],[-0.063716553151608,-0.083041101694107,-0.17533031105995]],[[0.11464077234268,0.081663049757481,-0.0074282037094235],[-0.037240657955408,0.10896997898817,0.0059261294081807],[-0.095814801752567,-0.012674315832555,-0.019874947145581]],[[0.0076549286022782,-0.04422352463007,-0.14640679955482],[0.0023317174054682,-0.090727955102921,-0.13530060648918],[0.00012466334737837,-0.038228340446949,-0.16023553907871]],[[0.07255057990551,0.10979746282101,0.088474854826927],[-0.061298355460167,0.083460330963135,0.045520506799221],[0.10677684098482,0.0044790832325816,-0.0016396775608882]],[[-0.16484032571316,-0.14636425673962,-0.15704552829266],[-0.074925005435944,-0.05968788638711,0.15042172372341],[0.089069001376629,0.010001440532506,-0.0083179846405983]],[[0.036545280367136,-0.027516324073076,-0.018391935154796],[-0.027196928858757,-0.017927546054125,-0.16757579147816],[-0.049278974533081,0.020814888179302,0.011510939337313]],[[0.1874268501997,0.24759791791439,0.10660246759653],[-0.0099686486646533,0.052977256476879,0.22645278275013],[-0.022479567676783,-0.06718472391367,0.015383921563625]],[[0.077738001942635,0.10391908884048,0.029316807165742],[-0.1900459676981,-0.12731310725212,0.046213511377573],[0.097499668598175,-0.020716767758131,0.051689401268959]],[[-0.19908317923546,-0.13757222890854,0.025782553479075],[-0.039568599313498,-0.15273036062717,-0.070843316614628],[-0.077330581843853,-0.018214073032141,0.067255236208439]],[[-0.26023983955383,-0.036235809326172,-0.22863303124905],[-0.10781913250685,-0.042223323136568,-0.11674004793167],[-0.23827317357063,-0.091492958366871,0.072248391807079]],[[-0.030648654326797,0.047985732555389,-0.01215404458344],[0.074808828532696,-0.025293312966824,-0.066220514476299],[-0.17690381407738,-0.02118475921452,0.13356050848961]],[[-0.13592910766602,-0.018373651430011,0.02269383892417],[0.082093931734562,-0.024827294051647,-0.012541886419058],[0.06994803994894,-0.012172168120742,0.11544814705849]],[[0.045172873884439,0.1691892594099,0.10661204904318],[0.068661659955978,-0.039646215736866,-0.24381397664547],[0.0025250464677811,-0.069303266704082,-0.011044771410525]],[[-0.071850337088108,-0.077762074768543,-0.1183871999383],[0.02044533751905,-0.06903712451458,-0.21048054099083],[0.087919779121876,0.018153632059693,0.054832894355059]],[[-0.050141919404268,-0.092343419790268,-0.054865565150976],[0.15321937203407,-0.059808969497681,-0.08188059926033],[0.037060558795929,0.054749347269535,0.17213143408298]],[[0.04590617865324,-0.048407200723886,-0.058422524482012],[0.060185499489307,0.092241629958153,0.045152556151152],[-0.060640782117844,-0.049587652087212,-0.04473103582859]],[[-0.12565523386002,-0.060956999659538,-0.16021643579006],[0.10583973675966,0.028697350993752,0.01207219529897],[-0.072073616087437,0.0045500639826059,0.0064475177787244]],[[0.028312776237726,0.0032117604278028,0.034939784556627],[-0.041849236935377,-0.036472219973803,-0.025662481784821],[0.10041829943657,0.08882998675108,0.076099798083305]],[[0.093576893210411,-0.02416299469769,0.022512074559927],[0.070249825716019,-0.047841530293226,-0.2326608300209],[-0.01216721534729,-0.042251624166965,0.091905348002911]],[[0.13437785208225,0.15109872817993,0.058769781142473],[-0.14583434164524,-0.058428272604942,-0.0096240406855941],[-0.14971525967121,-0.13329070806503,-0.12585355341434]],[[-0.094064384698868,-0.049169760197401,-0.030401919037104],[0.1197140365839,-0.028460692614317,0.28646859526634],[0.0028046332299709,0.068189717829227,-0.048504862934351]],[[0.11575519293547,0.16197225451469,0.14955677092075],[-0.091400049626827,0.064061097800732,0.034375552088022],[-0.10103264451027,-0.017632709816098,-0.11726471781731]],[[0.087300889194012,-0.013950772583485,0.20238427817822],[-0.083755195140839,0.0037307031452656,0.01960732601583],[0.12046006321907,-0.11749602854252,-0.18842463195324]],[[-0.09453347325325,0.17695571482182,0.41620117425919],[0.057979941368103,-0.069457471370697,-0.028349008411169],[-0.034381479024887,0.044560138136148,0.17109140753746]],[[-0.12855131924152,-0.10168205201626,-0.036390569061041],[0.079854190349579,0.078374437987804,0.15262416005135],[0.0096056666225195,-0.048822775483131,0.021191598847508]],[[-0.2132104486227,0.021498143672943,0.31832846999168],[0.066122829914093,0.025657856836915,-0.14220671355724],[0.017559273168445,-0.05662427470088,-0.072234004735947]],[[-0.062420476227999,-0.016280133277178,-0.045901585370302],[0.077215231955051,0.12084496766329,-0.00047506578266621],[-0.011990290135145,0.14855869114399,0.041602753102779]],[[0.026506222784519,0.030996311455965,0.19375862181187],[0.24361801147461,0.083811283111572,0.047580219805241],[0.074633121490479,0.17144864797592,-0.03640341386199]],[[0.017191395163536,-0.13169953227043,-0.17222511768341],[-0.11518762260675,-0.050145484507084,0.10073766857386],[-0.077939264476299,-0.085333868861198,-0.07599700242281]],[[-0.082529850304127,0.05733884871006,0.083593383431435],[0.020016089081764,0.11047852784395,0.011072328314185],[-0.030853055417538,0.017227211967111,-0.00417844299227]],[[-0.088164910674095,0.01303484942764,0.091774754226208],[-0.048280838876963,0.02974995970726,0.042825937271118],[0.20190885663033,-0.039238777011633,-0.12221013754606]],[[0.021413242444396,-0.0158004257828,0.060147743672132],[-0.17815952003002,-0.0991265848279,-0.16526101529598],[0.2653911113739,0.14984719455242,0.12041674554348]],[[0.038536477833986,0.18717497587204,0.10419162362814],[-0.15201213955879,-0.21104879677296,-0.23937258124352],[0.036089051514864,0.013469837605953,-0.029325477778912]],[[0.073428578674793,0.047590266913176,-0.052373547106981],[0.0041948859579861,-0.058951750397682,-0.13080430030823],[-0.021501269191504,-0.045689523220062,0.10168106853962]],[[-0.13332605361938,-0.02081985399127,-0.040914446115494],[-0.093556970357895,0.011845545843244,0.12870544195175],[-0.11719214916229,-0.2329158782959,-0.043734561651945]],[[-0.036942049860954,0.16164150834084,0.075302943587303],[-0.10660342872143,0.012421581894159,0.18029560148716],[-0.051791179925203,0.0012343598064035,0.10602556169033]],[[0.037494201213121,0.012951358221471,-0.038293566554785],[0.0036617077421397,0.029807576909661,-0.094271324574947],[-0.16120776534081,-0.011554129421711,-0.030677210539579]],[[-0.14513485133648,-0.014208681881428,-0.063746459782124],[-0.066891103982925,-0.0081999972462654,-0.0060090371407568],[0.042410995811224,0.070165701210499,-0.14121636748314]],[[-0.044585783034563,-0.031722620129585,0.032420311123133],[0.044536247849464,0.0163903683424,-0.010444510728121],[-0.025859082117677,-0.0070029837079346,0.013672007247806]],[[0.052960202097893,0.0071170786395669,0.097391568124294],[0.11059363186359,0.19623105227947,0.14340031147003],[0.00580869987607,-0.096832692623138,-0.19536581635475]],[[0.13620840013027,-0.038354773074389,-0.18146885931492],[0.18064711987972,0.035025741904974,-0.16090169548988],[-0.10589621216059,-0.022834494709969,0.083174258470535]],[[0.033666633069515,0.030392151325941,-0.049342885613441],[-0.0095163891091943,0.029414974153042,0.059365186840296],[-0.14872051775455,0.15188723802567,0.32081857323647]],[[0.093370720744133,0.046694986522198,-0.0051172124221921],[-0.01542554423213,0.10219970345497,0.041832134127617],[-0.083595432341099,-0.040969744324684,-0.071245551109314]],[[-0.15281283855438,-0.1533063352108,-0.03369377925992],[0.044005382806063,0.10891503840685,0.28214132785797],[-0.039164315909147,-0.022406963631511,-0.014988821931183]],[[0.036016814410686,-0.035619258880615,-0.17369219660759],[-0.038061939179897,0.081019572913647,-0.04161050543189],[0.03620259091258,0.030850494280457,-0.051410179585218]],[[-0.13879483938217,-0.21064677834511,-0.070543892681599],[0.3613568842411,0.2350800037384,0.29985803365707],[0.18123844265938,-0.030678953975439,-0.2581872344017]],[[0.0035734272096306,-0.024727715179324,-0.073110356926918],[-0.043080318719149,0.081770025193691,-0.036279920488596],[-0.059719305485487,-0.041969772428274,-0.052129711955786]],[[0.26230496168137,0.11512803286314,0.028823219239712],[-0.094144135713577,-0.063817292451859,-0.015310648828745],[-0.062329117208719,0.020875940099359,-0.050695929676294]],[[-0.087101720273495,-0.060986544936895,-0.009701881557703],[-0.0042856940999627,0.084017105400562,0.051049582660198],[-0.031205456703901,-0.036756653338671,0.0050759189762175]],[[0.044243577867746,0.030177725479007,-0.051234714686871],[0.092756077647209,0.10681673139334,0.067895941436291],[0.042560633271933,-0.066648967564106,0.091452300548553]],[[-0.11984202265739,-0.11530259996653,0.009079223498702],[-0.14468413591385,-0.1292182803154,-0.16790135204792],[-0.26842314004898,-0.16960056126118,-0.13772043585777]],[[0.071424536406994,0.11043810844421,0.030683513730764],[0.025891024619341,-0.053222548216581,-0.016060000285506],[-0.17517583072186,-0.031286314129829,-0.014212415553629]],[[0.032382726669312,-0.14106121659279,-0.21984554827213],[-0.02673964202404,-0.01137226074934,0.12002655863762],[0.012725175358355,0.011804843321443,-0.12313392758369]],[[-0.21914900839329,-0.25619965791702,-0.031296223402023],[-0.092687889933586,-0.066331654787064,0.09543240070343],[-0.12504768371582,-0.064386561512947,-0.12554332613945]],[[0.047872766852379,0.027704833075404,0.025443805381656],[-0.071133904159069,-0.075585946440697,-0.016988039016724],[-0.0027310946024954,0.086064644157887,0.12417463958263]],[[0.047281347215176,0.043836187571287,0.01318549644202],[0.11974508315325,-0.0070515968836844,0.12030766904354],[-0.082943581044674,-0.021898975595832,0.0050008576363325]]],[[[0.032047659158707,-0.0066349543631077,-0.014533607289195],[-0.10494861006737,-0.021722489967942,-0.056011877954006],[-0.13788184523582,-0.008509655483067,0.090498149394989]],[[-0.067959204316139,-0.068324856460094,-0.12605766952038],[-0.032583583146334,0.012083947658539,-0.27027601003647],[-0.047973725944757,-0.0078299650922418,0.086414754390717]],[[0.0051155528053641,-0.063503786921501,-0.17333129048347],[0.12405037134886,0.10383826494217,0.14873941242695],[0.10400739312172,0.17554211616516,-0.0053515648469329]],[[-0.14010082185268,-0.21826723217964,0.099898114800453],[-0.064058661460876,-0.14000210165977,-0.26004993915558],[-0.063463792204857,-0.058455776423216,0.028602756559849]],[[0.12480993568897,-0.025175524875522,0.059568211436272],[0.085794821381569,0.085822738707066,0.068557813763618],[-0.071495324373245,-0.044368024915457,-0.1096418350935]],[[0.062955893576145,-0.11334695667028,0.042569443583488],[0.071303926408291,-0.031547177582979,-0.10104165971279],[0.061074551194906,-0.061276152729988,-0.09459076821804]],[[-0.077894888818264,0.1050082296133,-0.08955043554306],[0.057651966810226,0.018672691658139,-0.074312634766102],[0.033612359315157,-0.016126314178109,0.044813700020313]],[[0.0023688864894211,0.020135743543506,0.28748807311058],[-0.081544227898121,0.026776324957609,-0.03626549616456],[-0.11182985454798,-0.11140520125628,-0.016883317381144]],[[0.091774925589561,0.14897613227367,0.068279437720776],[0.050791248679161,-0.0087633272632957,0.0032356211449951],[-0.16848909854889,-0.072816096246243,-0.10896000266075]],[[-0.16137018799782,0.069011688232422,0.094198368489742],[0.084034845232964,-0.092515751719475,-0.1865690946579],[0.014175181277096,-0.18763968348503,0.14200738072395]],[[0.025989137589931,0.036878559738398,0.07960806787014],[-0.2270128428936,-0.014698699116707,0.03898985683918],[-0.277199447155,-0.080680266022682,-0.066813439130783]],[[-0.018566394224763,-0.018000530079007,-0.20905630290508],[0.043476767838001,-0.06198401376605,0.0059136897325516],[-0.026828294619918,0.032108094543219,0.067505389451981]],[[0.24279306828976,0.012259002774954,-0.18702083826065],[-0.13893808424473,-0.053703416138887,0.080201014876366],[0.030773287639022,0.034481685608625,0.063572391867638]],[[-0.040933299809694,0.0044481819495559,-0.075296431779861],[0.019103517755866,-0.0029724212363362,-0.061903826892376],[-0.1453769505024,-0.086457192897797,-0.043304357677698]],[[0.26393982768059,0.18058326840401,-0.059111498296261],[0.29415273666382,0.092573665082455,0.093461357057095],[0.027783626690507,0.11938621848822,0.08171334862709]],[[-0.041679918766022,-0.14896048605442,-0.011005723848939],[-0.07033609598875,-0.007690692320466,0.054188463836908],[-0.097044229507446,0.10121607035398,-0.12840136885643]],[[0.059693228453398,-0.0021605479996651,-0.18285685777664],[0.050758928060532,0.018311517313123,0.039690319448709],[0.045038253068924,0.014004435390234,0.082917802035809]],[[-0.092288158833981,0.044873811304569,0.10271336138248],[0.016813769936562,0.098170749843121,0.032547526061535],[-0.035585206001997,0.11924561858177,-0.0076849707402289]],[[-0.018926406279206,0.14975593984127,-0.13280326128006],[-0.011713333427906,0.0081160236150026,-0.090186022222042],[0.055611848831177,-0.038475222885609,-0.10645205527544]],[[-0.022208886221051,-0.24584800004959,-0.038566019386053],[0.0096087018027902,-0.0024600164033473,0.04956816136837],[-0.035476867109537,-0.08553422242403,-0.06302447617054]],[[0.1817329376936,-0.075136050581932,-0.17700277268887],[-0.046592015773058,0.016701988875866,0.0019382365280762],[-0.044776517897844,-0.2993791103363,-0.29942563176155]],[[0.10652500391006,0.093735374510288,-0.037081327289343],[0.18345330655575,0.029421549290419,-0.18814758956432],[0.0094042848795652,-0.091372460126877,-0.027822935953736]],[[0.094639800488949,0.010044162161648,-0.013569705188274],[-0.097797304391861,-0.023899076506495,0.071115180850029],[-0.018013019114733,0.068362213671207,-0.018726106733084]],[[-0.00015231060388032,-0.26734346151352,-0.060600660741329],[-0.070934854447842,-0.018096370622516,-0.0035695428960025],[-0.036099020391703,-0.033489551395178,-0.037209399044514]],[[-0.061303734779358,-0.17636984586716,-0.036249171942472],[0.10853213816881,0.12319707870483,0.025519384071231],[-0.094947218894958,-0.070155650377274,-0.011019926518202]],[[0.044008865952492,-0.0040212064050138,0.13806930184364],[0.10818739980459,0.09895096719265,0.068900361657143],[-0.010588620789349,0.26714900135994,-0.25326511263847]],[[0.0060514626093209,-0.02113719470799,0.088322587311268],[0.18050774931908,-0.020854901522398,0.064604945480824],[0.3036073744297,0.034974239766598,0.018647300079465]],[[0.18326342105865,0.21167069673538,-0.071568384766579],[0.062466714531183,0.1315538585186,-0.22792275249958],[0.064180694520473,0.12463367730379,-0.035862006247044]],[[0.045892544090748,-0.11906042695045,-0.12967239320278],[-0.021859096363187,-0.25854724645615,-0.014132199808955],[0.013841721229255,-0.17504735291004,0.074545219540596]],[[-0.078542537987232,-0.055231213569641,-0.029096949845552],[0.11916161328554,0.053943283855915,-0.10226526111364],[0.086659304797649,0.052759952843189,0.0035574520006776]],[[0.066384553909302,-0.031557243317366,0.072735019028187],[-0.15431588888168,0.044007487595081,0.01647955738008],[0.10887431353331,0.14793168008327,-0.04201790317893]],[[-0.064288221299648,-0.171670794487,-0.15529595315456],[0.0016018834430724,-0.23229420185089,0.089442901313305],[0.10621550679207,-0.0061241392977536,0.11165761202574]],[[0.038773272186518,0.071855016052723,0.022013509646058],[-0.098671399056911,0.046385079622269,0.017877787351608],[-0.07546192407608,0.091959901154041,-0.027329815551639]],[[-0.032475475221872,0.09971471875906,0.051978331059217],[0.071248382329941,-0.037742510437965,-0.032159019261599],[0.040330622345209,0.009498561732471,0.022633472457528]],[[0.025541305541992,-0.099332988262177,-0.064063981175423],[-0.063157998025417,-0.046059757471085,-0.0070153004489839],[-0.13574397563934,-0.093368761241436,0.01958080753684]],[[0.18936790525913,-0.10685593634844,0.072938643395901],[0.04584090039134,-0.0067724497057498,-0.052064973860979],[0.082629181444645,-0.10351231694221,-0.072042748332024]],[[0.036710657179356,0.10832490026951,-0.16808177530766],[-0.063405007123947,-0.09161589294672,-0.12361011654139],[-0.017386192455888,-0.039830099791288,-0.039488945156336]],[[-0.024852192029357,0.047741807997227,0.0095121841877699],[0.074034750461578,0.10495220124722,0.12467028945684],[-0.0089198555797338,-0.10799114406109,-0.21983291208744]],[[-0.080013372004032,-0.070719160139561,0.056700762361288],[-0.086229152977467,-0.14575207233429,0.001306087593548],[-0.00097147119231522,0.0012058020802215,-0.012287752702832]],[[0.10031887888908,0.039287865161896,-0.023607663810253],[-0.075350806117058,-0.22309473156929,-0.073238879442215],[0.0070082382299006,0.0052591105923057,-0.11920141428709]],[[0.045315660536289,0.12669943273067,0.01703910715878],[-0.031983941793442,0.055313035845757,0.067617230117321],[0.016469242051244,0.0099953226745129,-0.10572878271341]],[[-0.21325595676899,-0.01961225643754,-0.07852054387331],[0.07237796485424,0.02315809391439,-0.13120819628239],[0.10996127873659,0.069001354277134,0.020609455183148]],[[-0.21833649277687,-0.11028984189034,0.13595801591873],[-0.030581586062908,-0.16529196500778,-0.21582147479057],[-0.19524815678596,-0.38224387168884,-0.37717065215111]],[[-0.067143768072128,-0.0045738373883069,-0.044282559305429],[-0.0067422296851873,-0.1152997687459,0.08092949539423],[0.046268906444311,0.0032298068981618,0.02199667878449]],[[-0.012421657331288,-0.027731504291296,-0.20826704800129],[-0.055177040398121,0.049115289002657,0.02315229922533],[0.029740551486611,-0.006541243288666,0.011271879076958]],[[0.011759883724153,0.093706533312798,-1.6554469766561e-05],[0.014262979850173,0.10693303495646,0.12446413189173],[-0.12611791491508,0.074152879416943,0.13139922916889]],[[0.0049700397066772,-0.15143758058548,0.22473613917828],[-0.079815156757832,0.0017904039705172,-0.14639291167259],[-0.027858255431056,-0.042006324976683,-0.072792500257492]],[[-0.04179535061121,-0.099492654204369,-0.004523394163698],[-0.2015326321125,-0.11833155155182,0.016486274078488],[0.034013852477074,0.10948139429092,0.003539661411196]],[[-0.13941626250744,-0.13749772310257,0.063536569476128],[-0.041685231029987,0.12223989516497,0.0037814392708242],[-0.094255454838276,-0.063171595335007,-0.060331858694553]],[[0.066590674221516,0.091002471745014,-0.11020571738482],[-0.0053129959851503,-0.1027924567461,-0.075031347572803],[-0.0054172016680241,-3.7850488297408e-05,0.062628716230392]],[[-0.050928138196468,0.20276002585888,-0.077218785881996],[-0.1309178173542,0.00339773343876,0.027158265933394],[-0.14461493492126,-0.015906594693661,0.092628635466099]],[[0.076418370008469,-0.10669592022896,-0.091114714741707],[-0.17968997359276,-0.13383355736732,0.056451812386513],[-0.047703221440315,-0.085256531834602,-0.10590387880802]],[[-0.013626932166517,-0.099682882428169,-0.11358401924372],[0.050292957574129,0.02465084195137,0.06251759827137],[0.028178764507174,-0.061597224324942,0.052882600575686]],[[0.1447906345129,0.082804501056671,-0.072744928300381],[0.015843579545617,-0.036716222763062,-0.012072207406163],[0.049089573323727,0.048135694116354,0.21272164583206]],[[-0.0055427453480661,-0.051594279706478,-0.080727018415928],[-0.088459245860577,0.10021298378706,-0.10310129821301],[-0.086149364709854,0.04594774544239,0.022264942526817]],[[-0.21017850935459,-0.043616648763418,-0.11586144566536],[0.26512160897255,0.15035749971867,0.083185851573944],[-0.034696359187365,0.058220416307449,0.17433904111385]],[[-0.124272570014,-0.014687624759972,0.09139184653759],[0.15268149971962,0.028966085985303,0.16430972516537],[0.055546421557665,-0.10886133462191,-0.053021632134914]],[[0.026940299198031,-0.060306087136269,-0.049207139760256],[-0.12520037591457,-0.16042950749397,-0.041466929018497],[-0.0074567692354321,-0.086203902959824,-0.063516944646835]],[[-0.033209830522537,-0.01055676676333,0.032992396503687],[0.037562485784292,0.063312418758869,-0.068161457777023],[0.01026551052928,-0.066477388143539,0.010482370853424]],[[0.092187456786633,-0.030599495396018,-0.11543832719326],[0.029945017769933,-0.0047526215203106,-0.070610947906971],[0.069508709013462,0.11274739354849,0.16752228140831]],[[-0.072860069572926,-0.11263719201088,-0.11945272982121],[0.11657179147005,-0.15176795423031,-0.14622043073177],[-0.055266335606575,-0.060761161148548,-0.37363862991333]],[[0.043385282158852,0.030400883406401,-0.0001737576094456],[0.034466840326786,0.031153613701463,-0.14090633392334],[0.07008221000433,-0.036912180483341,-0.086454071104527]],[[-0.1406394392252,-0.038890309631824,0.099608764052391],[0.096650406718254,0.11496774107218,0.049849838018417],[0.36806163191795,-0.07990974187851,-0.035176087170839]],[[0.10480440407991,-0.13212065398693,-0.049598917365074],[0.24482701718807,-0.1100696772337,-0.15672183036804],[0.018783841282129,0.012625442817807,-0.10992428660393]],[[-0.065093636512756,-0.0095238294452429,0.0013457472668961],[0.024463707581162,0.033192791044712,0.006354290060699],[-0.083215653896332,-0.048773899674416,-0.047037903219461]],[[0.03471839427948,-0.12753114104271,0.10067532211542],[0.15031191706657,0.033532559871674,0.057769913226366],[-0.059412080794573,0.01958280429244,-0.12898024916649]],[[-0.1674687564373,0.15095707774162,0.11074658483267],[-0.088709361851215,-0.057102356106043,-0.11550608277321],[-0.15927812457085,0.027592964470387,0.15744736790657]],[[-0.0070572374388576,0.0020828358829021,0.11938899755478],[0.10847499221563,-0.2343041151762,-0.10442908108234],[0.10628264397383,0.010437450371683,0.002073580166325]],[[-0.058503966778517,-0.041573747992516,-0.074612393975258],[-0.070616446435452,-0.098952688276768,-0.059522710740566],[0.033721342682838,-0.024045275524259,-0.1080831810832]],[[0.085219785571098,-0.055293902754784,0.078421138226986],[0.14941799640656,-0.13482615351677,-0.004775342065841],[-0.023164669051766,-0.16621708869934,-0.070686541497707]],[[0.029739310964942,-0.061724126338959,0.060995861887932],[-0.1740552932024,-0.065731637179852,-0.19878566265106],[0.1293663084507,0.17650835216045,0.062069568783045]],[[0.14167107641697,0.082461729645729,0.19577026367188],[-0.0017396553885192,0.074218608438969,-0.11746251583099],[0.079311013221741,-0.12261797487736,0.014518354088068]],[[0.054770950227976,-0.22450621426105,-0.11945933848619],[-0.076756425201893,0.018193639814854,0.006031452678144],[-0.027441672980785,0.018015023320913,0.057099260389805]],[[-0.10893882066011,0.081230349838734,0.06315054744482],[-0.10321316868067,0.12542751431465,0.09959152340889],[0.088169954717159,0.09893823415041,-0.22455036640167]],[[0.0093101989477873,0.091912448406219,0.021847065538168],[0.10392187535763,0.11225035041571,0.1368493437767],[-0.15340635180473,-0.17148593068123,0.072892650961876]],[[-0.033664904534817,-0.13758471608162,0.15347729623318],[-0.018899330869317,-0.17606143653393,-0.024368619546294],[0.051213245838881,-0.02267855964601,-0.011701217852533]],[[0.055714681744576,-0.11668951809406,-0.14564199745655],[-0.1518272459507,-0.009381596930325,-0.057002179324627],[-0.048452310264111,-0.074572995305061,-0.048307124525309]],[[-0.053329981863499,-0.15636353194714,-0.085568249225616],[0.078737817704678,-0.031547904014587,-0.051278296858072],[0.0028920331969857,0.024714477360249,0.24530234932899]],[[0.0053028054535389,0.088182531297207,0.08738424628973],[-0.063103571534157,-0.034056466072798,-0.14261278510094],[0.0079524451866746,-0.023493438959122,0.17054104804993]],[[-0.014139105565846,0.0020572480279952,-0.051040273159742],[0.026568789035082,-0.095861569046974,0.014889614656568],[0.039249677211046,-0.21296188235283,0.0085770059376955]],[[-0.018261222168803,-0.017421055585146,-0.024060605093837],[-0.060531351715326,-0.12432849407196,0.01022336166352],[0.02552324347198,0.067793264985085,0.05266385525465]],[[0.042066525667906,-0.12634032964706,0.012235770002007],[-0.060203228145838,0.090669371187687,0.0073557938449085],[-0.084460958838463,0.054007399827242,0.057135209441185]],[[0.097636610269547,0.21788901090622,0.1668227314949],[0.26318776607513,0.15597316622734,0.0044762743636966],[-0.03848035261035,-0.033376641571522,-0.21582521498203]],[[0.033958066254854,-0.008312713354826,0.00028594487230293],[0.080110400915146,-0.033287528902292,-0.088024437427521],[0.0061165001243353,0.11387123167515,-0.0078910989686847]],[[-0.049135964363813,-0.063501060009003,-0.078571654856205],[-0.13597692549229,0.032682444900274,0.14945435523987],[0.12906582653522,-0.074399285018444,-0.014804377220571]],[[-0.26048928499222,-0.027751855552197,-0.093321807682514],[0.012072265148163,0.13583670556545,0.19396391510963],[0.00056188937742263,-0.0093140779063106,0.081993326544762]],[[0.0062377252615988,-0.036234859377146,-0.073687702417374],[0.061119135469198,-0.0072464123368263,0.053449828177691],[-0.015253115445375,-0.088772058486938,-0.078326836228371]],[[0.043493703007698,0.074082054197788,0.019007490947843],[0.10413326323032,0.15062525868416,-0.064356714487076],[-0.011424414813519,0.055413227528334,-0.11669571697712]],[[0.0057501643896103,0.088330902159214,0.017933279275894],[-0.0017003099201247,0.08923564106226,-0.035212017595768],[-0.08564780652523,0.03182527422905,0.11155999451876]],[[-0.040526062250137,-0.085260681807995,-0.013519746251404],[0.11396479606628,0.16154216229916,0.10983792692423],[0.19656905531883,0.18652367591858,-0.067359164357185]],[[-0.10908979922533,0.05152203887701,-0.24889525771141],[-0.042251877486706,0.11095610260963,0.16274328529835],[0.042774729430676,0.041611559689045,-0.013142777606845]],[[-0.056424744427204,0.043615143746138,-0.075083114206791],[0.013197177089751,-0.060475576668978,-0.041358206421137],[-0.098586767911911,-0.058466259390116,-0.036816582083702]],[[0.023221902549267,0.10104091465473,0.15466386079788],[0.03273057192564,0.12430559843779,0.18189823627472],[0.19581708312035,-0.01561663672328,-0.024128600955009]],[[0.045621562749147,0.131108507514,0.14103838801384],[0.1102147102356,0.062940612435341,-0.036276236176491],[-0.0084228217601776,0.064124502241611,-0.064842037856579]],[[-0.036608632653952,0.0089552607387304,0.16519816219807],[0.022782016545534,0.085463121533394,0.11731558293104],[0.023182384669781,0.078798905014992,-0.17141105234623]],[[-0.0083889421075583,-0.046308886259794,0.10109758377075],[-0.13838320970535,0.084137670695782,-0.027479495853186],[-0.019810795783997,-0.095043018460274,0.042494054883718]],[[0.036115296185017,0.039626337587833,0.11503254622221],[0.026547832414508,-0.045633833855391,0.0061777345836163],[-0.083777546882629,0.030117297545075,-0.070032827556133]],[[-0.017754463478923,-0.14427305757999,-0.027032554149628],[0.033897306770086,-0.056519292294979,0.1751401424408],[-0.088390484452248,0.16926072537899,0.043866481631994]],[[-0.019147729501128,0.018751457333565,-0.016880908980966],[0.062780223786831,-0.008384014479816,-0.10874933749437],[0.036628093570471,0.022227445617318,0.0079531027004123]],[[0.0408192910254,-0.015881560742855,0.028069024905562],[0.074682503938675,0.074224643409252,-0.058199644088745],[-0.012029766105115,0.0051951776258647,-0.010235563851893]],[[-0.10026846826077,-0.18273350596428,-0.10293810069561],[-0.16424544155598,-0.12635220587254,0.017546312883496],[-0.2041692584753,-0.093862883746624,-0.024202106520534]],[[0.072676949203014,-0.042538538575172,-0.14327767491341],[0.15138667821884,0.1227368041873,-0.031822744756937],[0.21647468209267,0.034833882004023,0.016161412000656]],[[0.12256613373756,0.067675068974495,0.1286434084177],[0.13918556272984,-0.0070722056552768,0.046879377216101],[-0.0029781751800328,-0.041122946888208,0.084093704819679]],[[0.25140652060509,-0.056960426270962,-0.37523910403252],[0.026163982227445,-0.02334801107645,0.058903623372316],[-0.053969588130713,-0.038616914302111,-0.083234861493111]],[[0.011556592769921,-0.059050466865301,-0.18374814093113],[-0.025841351598501,0.025928555056453,0.056428749114275],[-0.051108174026012,0.054547380656004,0.11026885360479]],[[0.12511713802814,0.11230027675629,-0.1854709982872],[-0.063253916800022,-0.032713074237108,-0.081834390759468],[-0.078325681388378,-0.04729038849473,0.11541604995728]],[[0.0097886808216572,0.0056287576444447,0.13956032693386],[0.073888562619686,0.047194305807352,-0.047721896320581],[0.15879888832569,0.20566764473915,0.023071795701981]],[[-0.14598850905895,-0.032147943973541,-0.10554677248001],[-0.037750579416752,-0.031653199344873,-0.0012514817062765],[0.063032329082489,-0.099994733929634,-0.1284011900425]],[[0.1728325933218,0.11071233451366,0.12693975865841],[-0.062315847724676,0.17537555098534,-0.051098752766848],[-0.20789551734924,0.045205395668745,-0.19157922267914]],[[0.14370900392532,0.05652054771781,0.053516004234552],[-0.0044225789606571,-0.00083966803504154,-0.020662000402808],[0.032810565084219,0.068384923040867,0.098727867007256]],[[-0.0042197187431157,0.18685364723206,0.095404379069805],[-0.016123061999679,0.049976069480181,-0.20707920193672],[-0.038736760616302,-0.024104254320264,-0.084489539265633]],[[0.067636147141457,0.053396128118038,0.15537358820438],[-0.064535848796368,-0.10743848234415,-0.051494456827641],[-0.10733550041914,-0.00060783687513322,-0.24634981155396]],[[0.018000926822424,-0.11775129288435,-0.095314912497997],[-0.12525832653046,-0.002498711226508,0.098839767277241],[-0.088860653340816,-0.06937575340271,0.061398714780807]],[[-0.085523754358292,0.055194914340973,0.14408147335052],[-0.06151756644249,0.10301844030619,0.069417148828506],[-0.14284056425095,-0.057603798806667,0.072349779307842]],[[-0.016268575564027,0.0076726949773729,0.0049925283528864],[0.12986168265343,-0.0053675519302487,0.029349707067013],[0.061782460659742,-0.082158297300339,0.070928551256657]],[[-0.24061992764473,0.17960464954376,0.22288566827774],[-0.0033676188904792,0.088965326547623,-0.011732436716557],[0.10945075005293,0.070804744958878,0.10275464504957]],[[-0.14946405589581,-0.0072048269212246,0.0016345416661352],[0.10904797166586,0.06196054443717,-0.10433027893305],[-0.05085976421833,-0.036388628184795,0.06878674030304]],[[0.019354548305273,0.024492993950844,0.10913347452879],[-0.072053104639053,-0.094675123691559,-0.1924414485693],[0.0011915903305635,0.03364859893918,0.07182040810585]],[[0.047021105885506,0.0038331283722073,-0.026816470548511],[-0.14763648808002,-0.083240516483784,-0.040184989571571],[0.07077407091856,-0.021818047389388,0.077136814594269]],[[-0.13210637867451,-0.1395138502121,-0.27452909946442],[-0.054678283631802,0.05496322363615,0.082678511738777],[0.029119577258825,0.31017020344734,0.0424979403615]],[[-0.012607801705599,-0.065430633723736,-0.029924497008324],[-0.084007255733013,0.064027197659016,0.21054860949516],[0.15589390695095,0.25785738229752,0.11773129552603]],[[0.14366002380848,0.082704365253448,0.13703572750092],[-0.01203662995249,0.015028610825539,0.029420906677842],[-0.16344057023525,0.0452427752316,-0.066037490963936]],[[-0.0023299225140363,0.011400525458157,-0.095026902854443],[-0.24319629371166,-0.13442130386829,-0.15709814429283],[-0.031702551990747,-0.038075093179941,-0.10250568389893]],[[0.15060716867447,0.002675308380276,-0.027100218459964],[0.045893304049969,-0.0057560382410884,-0.01347922347486],[-0.29812398552895,0.047195464372635,0.25231266021729]],[[0.012782575562596,-0.13611820340157,-0.0090198693796992],[-0.079920917749405,0.13692533969879,0.036798156797886],[-0.17814444005489,0.14025196433067,-0.098239354789257]],[[0.038552328944206,0.10828719288111,-0.0029160196427256],[-0.032314345240593,0.093705765902996,-0.015882031992078],[-0.035005617886782,0.15284229815006,-0.19510814547539]],[[-0.0034666478168219,-0.23710298538208,-0.1012365296483],[-0.080549828708172,-0.1014960706234,-0.05976876989007],[0.01587650179863,-0.095304645597935,-0.025858948007226]],[[-0.029521519318223,0.04759793356061,-0.081745021045208],[-0.0097975181415677,-0.028759514912963,-0.097370497882366],[0.013816636987031,0.068106956779957,-0.023755431175232]]],[[[0.095248155295849,-0.017709361389279,-0.087020143866539],[0.009440272115171,0.054089486598969,-0.10712276399136],[0.069915592670441,-0.02118106931448,-0.066427312791348]],[[-0.082163937389851,-0.0018859520787373,0.019665949046612],[0.19663035869598,-0.034935895353556,0.025278756394982],[0.01447032392025,0.077698983252048,-0.032379817217588]],[[0.02699083276093,0.12462798506021,0.17334821820259],[0.080000527203083,0.037971675395966,0.066652812063694],[0.053460329771042,0.0013437413144857,0.15975907444954]],[[0.075840547680855,-0.017024450004101,-0.099199950695038],[-0.013898669742048,0.15501503646374,-0.078207924962044],[-0.0052389334887266,-0.070098295807838,0.14596597850323]],[[0.032943651080132,0.03697382286191,-0.1904422044754],[-0.20227636396885,-0.098539091646671,-0.065371371805668],[-0.087586931884289,0.087857581675053,-0.0021622225176543]],[[-0.055782724171877,0.0086078094318509,0.064368180930614],[-0.03792355582118,0.056026294827461,-0.10792098939419],[-0.074095889925957,0.1013972312212,0.015818284824491]],[[-0.083902694284916,-0.081927172839642,0.028588190674782],[0.00338358967565,0.021049777045846,0.027896312996745],[-0.032381806522608,0.012325977906585,0.073608316481113]],[[0.090644873678684,-0.017360219731927,0.022029573097825],[-0.023954534903169,0.047699183225632,0.15500085055828],[0.11784155666828,0.13055595755577,0.089910380542278]],[[0.019594280049205,-0.079304575920105,0.10770416259766],[0.018153699114919,0.076567694544792,0.13237406313419],[0.15698838233948,0.22188651561737,-0.10495468974113]],[[0.10056287795305,0.093755535781384,0.21206909418106],[-0.082336328923702,0.16838467121124,0.14296312630177],[0.28909987211227,0.10996115207672,0.14979086816311]],[[-0.063991285860538,-0.085144050419331,0.074367821216583],[-0.073004439473152,0.10059372335672,0.016437565907836],[-0.0028086670208722,0.023164879530668,-0.059184465557337]],[[0.10869316756725,0.02570160664618,0.32800644636154],[0.044817466288805,-0.079976573586464,-0.037257850170135],[0.041588485240936,-0.061607532203197,0.058751996606588]],[[0.02567002363503,-0.025812149047852,-0.15787775814533],[-0.026089200749993,-0.0032589926850051,-0.23139695823193],[-0.045273095369339,-0.1209864243865,-0.010672914795578]],[[-0.065113887190819,-0.00040456201531924,-0.08738424628973],[-0.039920415729284,0.075928129255772,-0.08203299343586],[-0.044692698866129,-0.13830268383026,0.020220382139087]],[[0.16162514686584,0.008354957215488,-0.0010708258487284],[0.13054914772511,0.12749110162258,0.1711497604847],[-0.075055442750454,-0.029026784002781,0.079126559197903]],[[-0.07962241768837,0.077821284532547,-0.01629769988358],[0.063289724290371,0.048275154083967,0.017446182668209],[-0.05952251330018,0.096813715994358,-0.02520321123302]],[[-0.12805539369583,0.030087672173977,0.090889409184456],[0.068174548447132,0.029399750754237,0.045877706259489],[0.0041330722160637,0.02283782325685,-0.167196393013]],[[0.089832566678524,-0.035352069884539,-0.028528466820717],[-0.062722265720367,-0.20339773595333,-0.016282733529806],[-0.015183720737696,-0.0090907486155629,-0.023921912536025]],[[-0.019122445955873,0.12503133714199,0.052676197141409],[-0.018178956583142,-0.033079046756029,-0.0081377821043134],[-0.14989383518696,-0.007345830090344,-0.010503356344998]],[[-0.21494691073895,-0.10306085646152,0.13518679141998],[-0.049383834004402,-0.067165426909924,-0.070713087916374],[-0.10270781815052,-0.0028505921363831,0.06442865729332]],[[-0.15682943165302,-0.061822652816772,-0.041851796209812],[0.027224311605096,-0.051152266561985,0.0096317445859313],[0.17947337031364,-0.030825084075332,-0.024323601275682]],[[0.11551712453365,-0.17845889925957,0.19662208855152],[0.0066492133773863,0.19148448109627,0.04557316377759],[0.244264960289,0.035235900431871,0.15141126513481]],[[0.1328299343586,0.052676606923342,-0.22601775825024],[0.14498181641102,-0.072746723890305,-0.069382503628731],[-0.061186302453279,0.099387288093567,0.085686966776848]],[[0.14556041359901,0.014775180257857,-0.087537840008736],[-0.071500033140182,-0.0047829519025981,-0.076476216316223],[-0.16063439846039,-0.21262925863266,0.037570595741272]],[[-0.12545235455036,-0.069435231387615,0.0554184243083],[0.1366955190897,0.0045767761766911,0.034071922302246],[0.044977635145187,0.091733530163765,0.0051562851294875]],[[0.01646489277482,-0.0019080087076873,0.29531028866768],[0.11461257189512,0.066074885427952,-0.083624005317688],[0.13268530368805,-1.1590205758694e-05,-0.014173362404108]],[[-0.058468632400036,-0.059053830802441,-0.076862506568432],[0.086584247648716,0.014340979978442,0.071078740060329],[-0.009610366076231,-0.11091554164886,0.24649851024151]],[[0.051302887499332,0.1729129254818,-0.099614754319191],[0.099179863929749,0.0092187412083149,0.11768900603056],[-0.083990171551704,-0.045520178973675,-0.080571666359901]],[[-0.18266318738461,-0.08855514228344,0.093695610761642],[-0.11809481680393,-0.089390926063061,0.060183949768543],[-0.45079857110977,0.055791482329369,0.03885093331337]],[[-0.13570955395699,-0.14818848669529,-0.10156683623791],[-0.12196777760983,0.039955586194992,-0.10361605137587],[-0.13772277534008,0.1525020301342,0.0028939133044332]],[[-0.016598103567958,0.003952459897846,-0.039518255740404],[0.078961342573166,0.06881520152092,-0.025233598425984],[-0.0017884509870782,0.015523009002209,0.086471691727638]],[[-0.044280864298344,-0.0030807838775218,-0.0017927382141352],[-0.011680410243571,-0.1334547996521,0.026829913258553],[0.13121421635151,0.056924272328615,0.14566761255264]],[[0.059496391564608,0.080092370510101,0.058243241161108],[-0.058820761740208,-0.18132475018501,-0.0072173182852566],[0.019973523914814,-0.12048298120499,-0.098142474889755]],[[0.082621276378632,0.080323480069637,0.13774996995926],[-0.087056346237659,-0.046272143721581,0.018460497260094],[0.11922919750214,0.11783947050571,-0.084086358547211]],[[-0.034311603754759,0.072512283921242,-0.063573345541954],[-0.0073563843034208,-0.070834331214428,0.040340699255466],[0.010759976692498,-0.16736727952957,0.023623051121831]],[[-0.017746834084392,-0.157624989748,-0.14791287481785],[-0.0057852352038026,-0.093448825180531,-0.04655284807086],[-0.22932651638985,-0.075114771723747,-0.089296437799931]],[[-0.16242259740829,-0.11851321905851,0.096160143613815],[0.034655220806599,-0.013888632878661,-0.033616438508034],[-0.019505778327584,-0.020313737913966,-0.061745524406433]],[[0.00054016528883949,-0.055144540965557,0.11293832212687],[0.018015207722783,0.023638362064958,-0.025343025103211],[0.065697118639946,-0.11995729058981,-0.082108676433563]],[[-0.0074024237692356,-0.062167502939701,-0.041487656533718],[0.0273691508919,0.011292977258563,0.016253320500255],[-0.066660694777966,0.0031850857194513,0.010765173472464]],[[-0.023989433422685,-0.11392189562321,-0.16481600701809],[-0.070697650313377,0.041961036622524,-0.080124251544476],[0.048439238220453,0.077059343457222,-0.064013622701168]],[[-0.039542462676764,-0.034812808036804,0.30408558249474],[-0.15145380795002,-0.1666824221611,0.060531299561262],[-0.11236990988255,-0.034183613955975,0.034541230648756]],[[0.013739400543272,-0.011916105635464,0.029568189755082],[6.14482050878e-05,-0.049119461327791,0.16034033894539],[0.082264326512814,-0.01599807292223,0.16934050619602]],[[-0.12981282174587,-0.28037482500076,-0.052526481449604],[-0.08960185945034,-0.070646353065968,0.072643764317036],[-0.019184278324246,0.029938906431198,-0.012707808054984]],[[-0.057094987481833,0.015112063847482,0.0082165226340294],[-0.084716461598873,0.03493494912982,-0.10604220628738],[-0.063391931355,-0.031895831227303,-0.04872228205204]],[[-0.032159838825464,-0.073610559105873,-0.15481367707253],[-0.21887469291687,-0.13230486214161,-0.043107867240906],[0.1107644289732,-0.0040343748405576,0.10919096320868]],[[0.10797344893217,0.07153332233429,-0.16334071755409],[-0.10499726980925,0.065456703305244,-0.1513125449419],[-0.07498412579298,0.050429258495569,-0.15825612843037]],[[-0.036236278712749,-0.04903320223093,0.1011970564723],[-0.054358404129744,0.16414186358452,0.06397970020771],[0.16423964500427,0.14422002434731,-0.015344151295722]],[[-0.0040826271288097,0.074189722537994,0.090175062417984],[0.0094045922160149,0.036866161972284,0.0094837676733732],[0.022292409092188,0.010825001634657,-0.075285919010639]],[[-0.015981361269951,-0.06635470688343,0.10824090987444],[-0.052662383764982,0.055793236941099,0.014569965191185],[0.054929591715336,0.042771510779858,-0.060507498681545]],[[0.065770722925663,-0.080494962632656,0.075694128870964],[-0.046197135001421,-0.027646727859974,-0.022032231092453],[-0.040433090180159,-0.14462684094906,0.055108088999987]],[[-0.062979936599731,0.040327176451683,-0.10729452967644],[0.001163620967418,-0.013352368958294,0.012078585103154],[0.0013850072864443,-0.061293762177229,-0.059052020311356]],[[-0.099085204303265,0.073829643428326,-0.01000274065882],[-0.040616806596518,0.079698406159878,0.12754124403],[-0.055644374340773,0.0089411623775959,0.063395358622074]],[[-0.053272947669029,-0.070363730192184,0.069927252829075],[0.023521825671196,0.058551538735628,0.047528002411127],[-0.034568890929222,0.050240904092789,-0.04453644156456]],[[0.093803517520428,0.069195263087749,0.099681802093983],[-0.13357274234295,-0.037667848169804,-0.040942870080471],[-0.22647275030613,-0.027307795360684,0.075255252420902]],[[-0.1269762814045,0.043902073055506,-0.0348045155406],[0.013928102329373,0.076451562345028,0.15703748166561],[-0.17733035981655,0.055207882076502,0.15486074984074]],[[-0.35778987407684,-0.05274448543787,0.033535782247782],[0.2391125112772,0.0077700042165816,0.014590357430279],[0.079075738787651,0.17615814507008,-0.14474777877331]],[[0.15211600065231,0.14873379468918,0.0037009685765952],[0.015379270538688,-0.086991146206856,-0.076050646603107],[0.083551213145256,0.13504953682423,0.17260150611401]],[[-0.01787793636322,-0.087240278720856,-0.048432134091854],[0.021088382229209,-0.19377726316452,-0.097997881472111],[0.016158463433385,-0.1031936481595,0.034048065543175]],[[-0.0111363241449,0.079584985971451,0.1032285168767],[-0.021947458386421,-0.045380111783743,-0.1026189699769],[-0.019917421042919,-0.25131946802139,0.0065779974684119]],[[0.10088460892439,-0.058526180684566,0.11298691481352],[0.011908818036318,-0.073318921029568,0.090604223310947],[-0.16887927055359,-0.06372944265604,-0.04079806432128]],[[-0.08107178658247,-0.0028589351568371,-0.064320780336857],[0.049698013812304,-0.079187996685505,-0.217081412673],[-0.2331600934267,0.018902748823166,-0.020733768120408]],[[-0.060410939157009,-0.12536132335663,0.03781071677804],[-0.058543238788843,0.061717197299004,0.038360945880413],[0.00063593772938475,0.041384130716324,0.080694690346718]],[[0.18043361604214,0.11945480853319,0.2318559139967],[-0.40373677015305,-0.041593782603741,0.097461484372616],[0.036593578755856,0.067890748381615,0.20054341852665]],[[0.0921436175704,-0.053188536316156,0.031637001782656],[0.098637454211712,0.1045134216547,-0.006395407486707],[0.13205021619797,-0.082629472017288,0.043610330671072]],[[-0.20905117690563,-0.044471155852079,0.13829949498177],[-0.16592620313168,0.0060521569103003,0.17386274039745],[-0.28671881556511,-0.13260613381863,0.16272939741611]],[[-0.11299436539412,0.056297652423382,-0.037431057542562],[0.14231300354004,0.061243690550327,-0.1259041428566],[0.079326689243317,0.098132021725178,0.076788440346718]],[[0.067714154720306,-0.074106924235821,0.13690248131752],[0.14127339422703,0.20592123270035,0.13906511664391],[0.15263825654984,0.012720864266157,-0.076090753078461]],[[-0.019870897755027,0.029751257970929,-0.0034556668251753],[0.10126119852066,0.067123159766197,-0.067859575152397],[0.09831216186285,-0.033966120332479,-0.00028013496194035]],[[-0.089794218540192,-0.11514610052109,0.13772732019424],[-0.14954182505608,0.081119284033775,-0.04904954880476],[-0.043211568146944,0.1236506998539,-0.28652134537697]],[[0.10821304470301,0.041571818292141,-0.045791879296303],[0.066858425736427,-0.033416822552681,-0.035032842308283],[-0.0078683728352189,-0.059291291981936,-0.096619121730328]],[[0.091384433209896,0.044836662709713,0.14031814038754],[0.14223395287991,0.065303236246109,0.28565937280655],[0.012274035252631,-0.057752136141062,-0.074583791196346]],[[0.065047487616539,0.011871309019625,0.08139606565237],[-0.16359177231789,-0.055096592754126,0.070660993456841],[0.10094231367111,0.062711477279663,0.11884642392397]],[[0.0627526268363,0.11886788904667,0.095045760273933],[0.10669392347336,-0.0088906949386001,-0.090435020625591],[-0.10504166781902,-0.14525057375431,-0.096433199942112]],[[-0.018026171252131,0.045088745653629,-0.020948890596628],[-0.051987424492836,-0.0094158407300711,0.080920971930027],[-0.025545356795192,0.15288862586021,0.231370434165]],[[-0.16575729846954,0.00061731232563034,0.14881986379623],[-0.078881487250328,-0.031132047995925,-0.047333143651485],[-0.14837916195393,0.039874348789454,-0.20348758995533]],[[-0.025267120450735,-0.29355067014694,0.095522694289684],[-0.14727257192135,-0.27032545208931,-0.14048551023006],[0.07605904340744,-0.16551080346107,-0.0068997391499579]],[[0.10906238108873,0.21569213271141,-0.097552925348282],[-0.1793437898159,0.043621890246868,0.18267630040646],[-0.15532575547695,-0.1875443905592,-0.13721124827862]],[[0.039909921586514,0.03460280969739,-0.0010023985523731],[0.089439548552036,-0.035738982260227,-0.031331483274698],[0.0085301538929343,-0.068033784627914,0.037564050406218]],[[-0.0074260826222599,0.014021977782249,0.102703794837],[-0.013091022148728,0.058025516569614,-0.033723458647728],[-0.047482188791037,0.016218043863773,-0.0098326783627272]],[[-0.065617240965366,-0.08856962621212,0.12446618080139],[0.0034827555064112,-0.1941331923008,-0.12367499619722],[0.0080991629511118,-0.13055668771267,-0.15893577039242]],[[-0.075719304382801,0.16897305846214,-0.12186891585588],[0.095515049993992,0.038000453263521,0.10248356312513],[-0.052500553429127,-0.066431187093258,-0.13674539327621]],[[0.116425588727,0.069982290267944,0.080867789685726],[-0.094316199421883,-0.058533407747746,-0.084116064012051],[0.11705643683672,-0.31765753030777,0.085874401032925]],[[0.041799869388342,0.0546870008111,-0.012909026816487],[-0.0067229908891022,-0.060590244829655,0.070768155157566],[0.089314967393875,0.055716872215271,0.11191216111183]],[[0.05307799950242,0.10801831632853,0.068680331110954],[0.097192957997322,-0.087337680160999,-0.19524621963501],[0.12800353765488,-0.11873266845942,-0.053781867027283]],[[-0.021307023242116,-0.087077625095844,-0.027330340817571],[-0.045325573533773,0.07472950220108,0.02846228890121],[0.10680477321148,0.12575577199459,0.056555300951004]],[[-0.17482954263687,-0.041157156229019,-0.077655047178268],[-0.058931183069944,-0.092563778162003,-0.29058849811554],[0.11309901624918,0.054841957986355,0.06364718079567]],[[-0.043216183781624,-0.11982532590628,-0.027930300682783],[-0.029454939067364,0.017843579873443,0.017473807558417],[0.0097506307065487,0.038650222122669,0.081021845340729]],[[0.11545106768608,0.15943610668182,0.12589932978153],[0.011212817393243,-0.043180227279663,0.20018145442009],[0.041809435933828,0.063275642693043,0.039633430540562]],[[-0.23607197403908,-0.12234218418598,0.090985558927059],[-0.033367063850164,-0.033606093376875,0.07718151807785],[-0.2204914689064,-0.062495157122612,0.013901562429965]],[[0.069774501025677,-0.034581299871206,-0.18365769088268],[0.17172829806805,-0.13280045986176,-0.048084251582623],[-0.12156326323748,-0.058500673621893,0.068271994590759]],[[0.14204457402229,0.18187817931175,-0.092133410274982],[0.063574731349945,0.028339058160782,0.12104185670614],[0.039137527346611,0.15942354500294,0.17210330069065]],[[-0.043513316661119,-0.04617365449667,0.035321608185768],[0.12274787575006,-0.09561912715435,-0.0098774740472436],[0.034604877233505,0.15507951378822,0.11322799324989]],[[0.028866562992334,0.041912343353033,-0.043281834572554],[0.1214594244957,0.013939185999334,0.03989689424634],[-0.14575324952602,0.16906681656837,-0.099592544138432]],[[0.098749563097954,-0.0033143155742437,-0.2237186729908],[0.094094276428223,0.1037463247776,-0.071085296571255],[0.080470718443394,0.091319762170315,0.024618966504931]],[[-0.10573290288448,0.03477119654417,-0.070966742932796],[-0.088662594556808,0.014734817668796,-0.049083653837442],[-0.094713024795055,0.16833646595478,-0.019328350201249]],[[0.13932086527348,-0.16553150117397,0.085105992853642],[-0.010317231528461,-0.025848673656583,-0.10153142362833],[-0.14371851086617,0.087889991700649,0.030119733884931]],[[-0.035737160593271,-0.090078845620155,-0.071243032813072],[0.074058689177036,-0.096221968531609,0.16298630833626],[-0.13926823437214,0.11423926055431,-0.19806081056595]],[[0.10450341552496,0.07107987254858,-0.12501180171967],[0.034587439149618,-0.1386071741581,0.063165336847305],[-0.069865092635155,-0.16998137533665,-0.05810372158885]],[[-0.0049879462458193,-0.024357553571463,0.036385409533978],[-0.041348449885845,-0.039605371654034,0.062453497201204],[0.0057134041562676,-0.051595274358988,0.031216096132994]],[[0.062033448368311,-0.010547329671681,-0.11301925778389],[-0.054432354867458,0.047589600086212,-0.24177260696888],[-0.0048457556404173,-0.024308415129781,-0.025033066049218]],[[0.15623977780342,0.19892419874668,0.076437667012215],[0.1489881426096,0.098722390830517,0.019200287759304],[0.043636329472065,0.04760130867362,0.11795059591532]],[[0.056239854544401,0.046870458871126,0.078163839876652],[-0.12266260385513,0.052555911242962,0.0069605936296284],[0.14378133416176,0.10415577888489,0.13254640996456]],[[0.028702918440104,0.079526767134666,0.19181606173515],[0.0094781266525388,0.077879473567009,-0.047172423452139],[0.025692714378238,-0.16261164844036,0.1052957624197]],[[0.071912817656994,0.062031600624323,-0.18851587176323],[-0.066656269133091,0.17141464352608,0.00062671647174284],[-0.05175169557333,0.084885112941265,0.010642766952515]],[[0.023184847086668,-0.0060877338983119,0.087963581085205],[-0.009524273686111,0.016880305483937,-0.098428174853325],[0.060527056455612,0.060878172516823,-0.10200476646423]],[[-0.017818344756961,-0.03063778206706,0.09248349070549],[0.035011701285839,-0.085199810564518,0.16003201901913],[-0.054506078362465,-0.28440019488335,0.082800857722759]],[[-0.068844504654408,-0.097836352884769,-0.063565582036972],[-0.092293485999107,-0.06683711707592,-0.027140151709318],[-0.06251859664917,0.025591569021344,0.017429906874895]],[[0.10985879600048,-0.14966128766537,-0.066640615463257],[-0.14547914266586,0.12276507169008,0.16871422529221],[-0.060815658420324,-0.11383468657732,0.17129909992218]],[[0.023575024679303,0.14955112338066,-0.037914048880339],[-0.087456256151199,0.0026094338390976,-0.040525808930397],[0.0017261013854295,-0.05027537420392,0.088449597358704]],[[-0.037825901061296,0.042456109076738,0.020971329882741],[0.096248462796211,-0.074555695056915,-0.04060672968626],[0.095201775431633,-0.0065868590027094,-0.097657106816769]],[[0.04623594135046,-0.036152556538582,-0.0044000223278999],[0.037892669439316,-0.12873314321041,0.012795397080481],[-0.0096464203670621,-0.039124455302954,0.088598638772964]],[[-0.13178288936615,-0.10608822852373,0.10791016370058],[-0.15601924061775,0.0036189758684486,0.084689795970917],[-0.030027655884624,-0.12205872684717,-0.00056432525161654]],[[-0.022788474336267,0.020752316340804,-0.032646957784891],[-0.12631198763847,-0.10760674625635,-0.054629433900118],[-0.25116249918938,0.036641266196966,-0.0056048207916319]],[[0.03128232434392,-0.31598165631294,-0.14422062039375],[-0.057099424302578,-0.20842364430428,0.019301641732454],[0.088528513908386,0.0037132350262254,-0.08661937713623]],[[0.021543905138969,-0.12235826998949,0.18663010001183],[-0.043933592736721,0.078634507954121,0.046930093318224],[0.14741607010365,0.0078451484441757,-0.018329491838813]],[[-0.13629929721355,0.065009258687496,-0.023269049823284],[0.053305298089981,0.009635210968554,0.050944805145264],[-0.023569608107209,0.086464658379555,-0.28377315402031]],[[-0.043944269418716,-0.020261250436306,-0.026140028610826],[-0.060696013271809,-0.11819479614496,-0.021213475614786],[0.070962555706501,0.022874571382999,0.045534856617451]],[[0.11031226068735,-0.049220722168684,-0.12060947716236],[0.1623457968235,0.011117300018668,-0.14208255708218],[0.043771285563707,0.0002845955605153,-0.14177413284779]],[[0.18141724169254,-0.07440597563982,-0.077614486217499],[-0.06304407119751,0.047424256801605,-0.015228514559567],[-0.030376313254237,0.106569416821,-0.11465862393379]],[[-0.2067543566227,0.0032701515592635,0.041890867054462],[-0.13086412847042,-0.041971746832132,-0.12275034189224],[-0.041201762855053,0.11144311726093,-0.067241512238979]],[[0.08211774379015,1.1122521755169e-05,0.10912093520164],[0.14241977035999,0.13848005235195,-0.24775302410126],[0.0012675640173256,-0.01563574001193,-0.0059004439972341]],[[0.025010913610458,0.10051748901606,0.30236145853996],[0.026497995480895,0.12250299006701,0.042105533182621],[0.076231330633163,0.079196326434612,0.20299500226974]],[[0.056338977068663,-0.10514799505472,-0.047430850565434],[0.026787731796503,-0.23499171435833,-0.042031668126583],[-0.041280884295702,-0.13026967644691,-0.032524060457945]],[[-0.15459926426411,0.067708857357502,0.1810732036829],[0.021185657009482,0.035048235207796,0.065973594784737],[0.12624831497669,0.11900562793016,0.064549274742603]],[[0.22387427091599,0.124571621418,0.19447727501392],[0.26880595088005,0.066440120339394,0.031797405332327],[0.011138522997499,0.003404859919101,0.0064995479770005]],[[0.056206591427326,-0.015299802646041,-0.012143191881478],[0.052552927285433,-0.045384112745523,-0.011747726239264],[0.014657782390714,0.04753265157342,-0.051267467439175]],[[-0.034506645053625,0.14229011535645,-0.068902157247066],[0.05099007114768,0.037900432944298,0.059088665992022],[0.048733096569777,0.032609213143587,0.072558544576168]],[[0.0050999028608203,0.039808124303818,-0.14084006845951],[-0.0089334361255169,-0.012183175422251,0.019551686942577],[-0.19422160089016,0.085845857858658,0.048227101564407]]],[[[0.17041184008121,0.18600608408451,-0.044234149158001],[0.13527712225914,0.087484441697598,-0.046107050031424],[0.065341040492058,0.081310078501701,-0.076903961598873]],[[0.10514637082815,0.09158232063055,0.13909189403057],[0.072921954095364,0.0489506945014,0.16819079220295],[-0.012223777361214,0.049040168523788,0.019828170537949]],[[-0.044992040842772,0.036609247326851,-0.10496263951063],[0.076013974845409,-0.0037073250859976,-0.047018487006426],[0.11229322105646,0.041149664670229,-0.019198140129447]],[[-0.13119304180145,-0.077648177742958,-0.13653282821178],[-0.10615132004023,-0.023611074313521,-0.029180677607656],[-0.084494784474373,-0.097673781216145,-0.013497556559741]],[[-0.13772812485695,0.11657430976629,-0.026140721514821],[-0.11227267235518,0.015821482986212,-0.087353393435478],[-0.084863059222698,0.22000455856323,-0.11550077795982]],[[0.025063889101148,-0.14726862311363,-0.070717625319958],[0.054236941039562,-0.17504340410233,-0.15256735682487],[-0.056293878704309,0.017079813405871,-0.18149714171886]],[[-0.034570142626762,-0.0099360020831227,-0.098372869193554],[-0.040742140263319,-0.06895712018013,-0.10554444789886],[0.039885010570288,-0.04982865601778,0.026627957820892]],[[-0.047013998031616,-0.11537243425846,-0.072642646729946],[-0.23267628252506,-0.09039531648159,0.022430507466197],[0.054337784647942,-0.025617243722081,-0.045294418931007]],[[0.13527642190456,-0.0044538835063577,-0.018893875181675],[-0.076036177575588,0.056819226592779,-0.016076827421784],[-0.080945938825607,0.085079148411751,-0.0557791441679]],[[-0.025345183908939,-0.086007788777351,-0.12670800089836],[-0.065672941505909,-0.041254457086325,-0.040167827159166],[-0.10566116124392,-0.072366774082184,-0.013638688251376]],[[-0.044784475117922,0.12711106240749,0.071163401007652],[-0.16764661669731,0.080759435892105,0.0041587166488171],[0.019604755565524,0.075833693146706,0.031949177384377]],[[-0.0089817084372044,0.12838751077652,0.092789091169834],[0.039432816207409,0.014875253662467,0.17971424758434],[0.0026256621349603,0.081365011632442,-0.13606309890747]],[[-0.14607866108418,-0.078293055295944,-0.052011575549841],[-0.021834911778569,-0.025742657482624,-0.029097756370902],[-0.021172078326344,0.024127108976245,-0.037115018814802]],[[0.13354773819447,-0.12109677493572,0.085069075226784],[-0.024503283202648,-0.01890261657536,0.050201565027237],[-0.059356350451708,-0.082809180021286,0.037008810788393]],[[0.087056510150433,0.054170921444893,0.08644937723875],[-0.026001710444689,-0.066250398755074,-0.021718518808484],[0.031280823051929,-0.041909713298082,-0.081339009106159]],[[-0.040688246488571,0.14498737454414,0.0055580628104508],[-0.13482089340687,0.021515564993024,-0.12326174974442],[0.021569965407252,-0.030255649238825,-0.056534267961979]],[[-0.02621060796082,-0.043255358934402,-0.014407741837204],[0.13063222169876,-0.008630508556962,-0.080860935151577],[-0.025491645559669,0.09287166595459,0.047771491110325]],[[0.042051263153553,0.1021019294858,-0.063767321407795],[0.1404442936182,-0.01362064294517,-0.049139138311148],[0.11531461030245,-0.071681462228298,-0.044891849160194]],[[-0.024967137724161,-0.033503588289022,0.17257644236088],[-0.08538818359375,-0.016681807115674,-0.030646102502942],[-0.2153522670269,0.028589114546776,0.066111370921135]],[[-0.061594910919666,0.044153541326523,-0.026753192767501],[-0.017006505280733,-0.016948806121945,-0.063731759786606],[-0.015101173892617,-0.082592375576496,-0.09775160998106]],[[0.17254640161991,0.099058650434017,-0.14793384075165],[-0.048653744161129,0.037542246282101,-0.036263439804316],[-0.17086863517761,-0.036477062851191,-0.16194678843021]],[[-0.059219609946012,0.1716226786375,0.16767053306103],[-0.082434222102165,0.13108611106873,0.021124174818397],[-0.069879993796349,0.036839131265879,-0.0860505849123]],[[0.11495514959097,-0.091927774250507,0.050624568015337],[0.035381242632866,0.057230249047279,0.10551078617573],[-0.10607099533081,-0.0025882499758154,0.10050939023495]],[[-0.052213922142982,-0.094622522592545,-0.010437529534101],[0.029916826635599,0.015060316771269,-0.044356264173985],[0.010107356123626,0.087044976651669,-0.14656330645084]],[[-0.083678513765335,-0.070119336247444,0.15593795478344],[0.0098775252699852,-0.091420501470566,0.033303011208773],[-0.043077319860458,-0.093930020928383,0.10237442702055]],[[-0.042871918529272,-0.056934144347906,0.14750991761684],[-0.14693699777126,-0.13853743672371,0.10184121131897],[-0.045690283179283,-0.13842985033989,-0.0014816797338426]],[[0.054408013820648,0.049970895051956,-0.064436502754688],[0.06445237249136,0.027494005858898,-0.066347479820251],[0.081073321402073,-0.029129073023796,0.0087665719911456]],[[-0.17668138444424,-0.041768241673708,0.13642106950283],[-0.039917331188917,0.070203930139542,-0.029923982918262],[0.024725155904889,-0.034368481487036,-0.042460285127163]],[[-0.075946778059006,-0.0018106427742168,-0.0016700755804777],[-0.074774637818336,0.0079379007220268,-0.13037869334221],[-0.030466170981526,0.0022462613414973,-0.14492121338844]],[[-0.018087992444634,0.09056781232357,0.062931098043919],[-0.12430379539728,-0.049111861735582,-0.025943482294679],[0.069752782583237,-0.0091561088338494,-0.22269158065319]],[[-0.070754304528236,-0.10335375368595,0.12052484601736],[0.054514054208994,-0.1173792257905,-0.010771016590297],[0.012103036046028,-0.12363696098328,-0.0038610014598817]],[[0.011932929046452,-0.0092809004709125,0.13249850273132],[0.044056259095669,-0.010477115400136,0.08293505012989],[-0.020402317866683,0.033530227839947,-0.062099635601044]],[[-0.072801448404789,0.15983678400517,-0.08498277515173],[-0.11912333965302,0.053396239876747,0.064101234078407],[0.033191412687302,-0.015807300806046,0.22004483640194]],[[-0.049200780689716,0.0013316858094186,0.02890663407743],[-0.065282344818115,0.039428807795048,0.06022884324193],[-0.02098448947072,0.11304425448179,0.035154920071363]],[[-0.061706751585007,-0.13013136386871,-0.040931642055511],[-0.02884834446013,0.014266873709857,-0.037033464759588],[-0.022357665002346,-0.049755915999413,-0.24495528638363]],[[-0.20925867557526,-0.085382640361786,-0.07997103780508],[-0.11011591553688,0.11374887079,0.031440798193216],[-0.11813822388649,-0.038676887750626,0.056121993809938]],[[-0.018675768747926,0.098013527691364,0.15585578978062],[0.1779819726944,0.030146669596434,-0.047255322337151],[0.021182350814342,0.052894428372383,-0.0064992578700185]],[[-0.067702285945415,-0.13143838942051,-0.10087105631828],[-0.0307059828192,0.014056339859962,-0.090603984892368],[0.038840226829052,0.031072087585926,-0.034636646509171]],[[0.17328956723213,-0.15412433445454,-0.019008846953511],[-0.035562366247177,-0.10497078299522,-0.16413879394531],[0.0093819331377745,-0.012765415944159,-0.15512053668499]],[[0.093157105147839,0.044212877750397,-0.029892232269049],[-0.010879852809012,-0.09538159519434,0.037720024585724],[0.056412864476442,0.014527740888298,-0.14467251300812]],[[0.18684794008732,0.0044083399698138,-0.090658523142338],[0.086091294884682,-0.07058322429657,-0.048503253608942],[-0.05329941958189,-0.083386026322842,-0.061514791101217]],[[-0.024426745250821,0.064623452723026,-0.043811280280352],[0.0024040751159191,0.050967816263437,0.038094345480204],[-0.082109272480011,0.084293611347675,-0.028311528265476]],[[0.049684379249811,-0.037245400249958,0.035963967442513],[-0.030921237543225,0.022617798298597,-0.0015446576289833],[-0.063004285097122,-0.15673212707043,-0.10969857126474]],[[0.040214851498604,0.0348283611238,-0.017346438020468],[-0.05182858556509,-0.069429971277714,-0.077351175248623],[-0.019266033545136,-0.063895151019096,-0.04002158343792]],[[-0.22287885844707,-0.0017047064611688,0.02261745557189],[-0.052521951496601,0.11551736295223,-0.0080229677259922],[-0.029646998271346,-0.082450598478317,-0.049355525523424]],[[-0.10531764477491,-0.0084449434652925,0.050793819129467],[0.068792968988419,-0.030983531847596,-0.07704234868288],[-0.034200932830572,0.025457071140409,0.070178039371967]],[[2.714326728892e-05,-0.026045266538858,0.031847856938839],[0.060446348041296,0.065149009227753,-0.025485251098871],[-0.018812865018845,0.08144348859787,-0.011054811067879]],[[-0.089363001286983,-0.10337883979082,0.057992622256279],[-0.036125220358372,-0.017528602853417,3.3612926927162e-05],[-0.078661277890205,0.019563334062696,-3.4878714359365e-05]],[[-0.10925205051899,-0.11069599539042,-0.065197922289371],[0.072232350707054,0.04352418333292,0.091814547777176],[0.012844528071582,0.17817194759846,0.075298070907593]],[[-0.085997521877289,-0.081300757825375,0.12175617367029],[-0.021916838362813,-0.019090034067631,0.20185613632202],[0.049127850681543,0.030975906178355,0.14671686291695]],[[0.02338445559144,0.10881619900465,-0.069468542933464],[-0.076708726584911,-0.014277666807175,-0.041681833565235],[-0.0082297883927822,-0.093276470899582,-0.1166658103466]],[[0.13170233368874,0.078107550740242,-0.069887660443783],[0.046729393303394,-0.059182114899158,-0.067143641412258],[0.087340921163559,-0.052398025989532,-0.10832813382149]],[[-0.011066725477576,0.024927606806159,-0.06108458712697],[-0.040027566254139,-0.038167223334312,0.0047046369872987],[-0.067194685339928,-0.1073305606842,-0.20705746114254]],[[-0.13440583646297,0.082771115005016,0.069535866379738],[-0.092280432581902,-0.002493946114555,-0.0057855052873492],[-0.095431827008724,0.028489325195551,-0.015298498794436]],[[-0.19971369206905,0.1288880109787,-0.030544875189662],[0.12932057678699,0.048795562237501,0.014570357277989],[0.047426097095013,-0.015080713666975,-0.0029657143168151]],[[-0.042281184345484,0.090806134045124,0.068015344440937],[-0.062905535101891,0.018921609967947,-0.096506729722023],[0.10695367306471,0.054680299013853,-0.039729915559292]],[[-0.079764746129513,0.22825507819653,-0.019343253225088],[-0.0048268693499267,0.049415815621614,0.015129648149014],[-0.057305116206408,-0.044737685471773,-0.037396892905235]],[[0.0006346509908326,0.018125319853425,-0.017442334443331],[0.010517383925617,0.029324987903237,-0.075516186654568],[-0.11142888665199,-0.055429272353649,-0.090781725943089]],[[-0.046119283884764,-0.28692647814751,-0.12303547561169],[0.014121952466667,-0.083843782544136,0.011431253515184],[0.06963312625885,-0.12309502065182,0.0060934345237911]],[[-0.10969351232052,-0.01379176042974,0.23951953649521],[-0.089089341461658,-0.10245930403471,0.077515564858913],[-0.036849305033684,-0.029213761910796,0.096012376248837]],[[0.083506807684898,0.021482730284333,-0.039627250283957],[0.018425244837999,-0.022866735234857,0.0070896684192121],[0.065445557236671,0.047936916351318,-0.098788782954216]],[[0.061485126614571,0.096456304192543,-0.0560004375875],[-0.01353714056313,-0.074656888842583,-0.091420590877533],[-0.19002938270569,-0.20169158279896,0.080483593046665]],[[-0.0650619789958,0.024339070543647,-0.015380744822323],[-0.11987192183733,-0.024997882544994,-0.067898780107498],[-0.15439288318157,-0.073845461010933,-0.046402759850025]],[[0.020047646015882,-0.04193688929081,-0.12459763884544],[0.18085038661957,0.041211679577827,-0.083730950951576],[0.18824000656605,0.12130704522133,-0.019290745258331]],[[-0.29116457700729,-0.0009261456434615,0.01760290376842],[-0.18784664571285,0.019263178110123,0.070282377302647],[-0.097629502415657,0.10393776744604,0.11503628641367]],[[0.054627671837807,-0.042399547994137,0.12962628901005],[-0.010044581256807,0.011740694753826,0.030745765194297],[0.01361539773643,-0.02256041765213,0.040025688707829]],[[-0.035399422049522,-0.0068525141105056,0.073248900473118],[-0.043832298368216,-0.040354270488024,0.0038983835838735],[-0.036728076636791,-0.051029149442911,0.092216491699219]],[[-0.11271281540394,0.0020253458060324,-0.028377015143633],[-0.1489185988903,0.011216763406992,-0.14187788963318],[-0.083699434995651,-0.023764912039042,0.0033830567263067]],[[0.027329985052347,0.029490476474166,-0.010018093511462],[0.023215947672725,-0.026549383997917,0.039859261363745],[0.051045332103968,-0.043460369110107,0.086140386760235]],[[0.19369328022003,0.24622364342213,-0.17093032598495],[0.015954617410898,0.16373744606972,0.020043043419719],[0.03892907127738,0.05646463856101,-0.01420711260289]],[[0.067690402269363,0.0087430281564593,0.012931130826473],[-0.099794819951057,0.028246961534023,0.0035039277281612],[-0.07267153263092,0.00068226596340537,-0.16963548958302]],[[0.11782666295767,0.070496678352356,0.098692320287228],[0.17306445538998,-0.014927044510841,0.065823100507259],[-0.011818936094642,0.014631631784141,0.18616254627705]],[[-0.065251886844635,-0.044942408800125,0.093413397669792],[0.039353109896183,-0.042451199144125,0.096517279744148],[0.031422935426235,0.020757682621479,0.033305257558823]],[[-0.031752686947584,0.099591664969921,-0.11001859605312],[0.061670888215303,-0.016876898705959,-0.010040113702416],[0.036743775010109,-0.10105215013027,-0.04601526632905]],[[-0.032181799411774,-0.038852009922266,0.16267865896225],[0.016394259408116,0.1360277980566,0.052983377128839],[-0.11200602352619,-0.081821069121361,-0.08291707187891]],[[0.048401691019535,-0.0078779347240925,-0.02130464091897],[0.11888499557972,0.01446839235723,-0.022978974506259],[-0.00010514447785681,0.02869002148509,-0.021888563409448]],[[0.04908874258399,0.089348517358303,0.045886892825365],[-0.19116654992104,-0.017141975462437,-0.027686523273587],[0.063951388001442,0.021489242091775,-0.10163505375385]],[[-0.068780310451984,0.056112688034773,-0.047873422503471],[-0.057957898825407,0.022550048306584,0.037714567035437],[0.07170233130455,-0.070372126996517,-0.095299430191517]],[[0.077124856412411,-0.047878544777632,0.030604628846049],[0.18801748752594,0.041922561824322,0.057400532066822],[-0.018512038514018,0.11805936694145,0.24127614498138]],[[-0.14563919603825,-0.16829095780849,-0.089041866362095],[0.024462891742587,-0.0579440779984,-0.076381668448448],[-0.18298318982124,-0.10429234802723,0.039593212306499]],[[0.017928343266249,-0.030284266918898,-0.0047845537774265],[0.04314973205328,0.037433505058289,-0.091204807162285],[0.16295590996742,0.020203387364745,0.027648963034153]],[[-0.037932325154543,0.035533562302589,0.13231855630875],[-0.092090100049973,-0.17102491855621,-0.037035457789898],[-0.11772323399782,0.01072908192873,-0.0035095962230116]],[[0.052674267441034,-0.080367267131805,-0.12752763926983],[0.10156109184027,0.032460227608681,0.13164468109608],[0.13576698303223,0.0026931273750961,0.0088893873617053]],[[-0.04083263874054,-0.10155216604471,-0.0088991168886423],[-0.067929282784462,-0.044182289391756,-0.027744982391596],[-0.17239452898502,-0.046373378485441,0.022560687735677]],[[0.11599786579609,-0.074759215116501,0.031585913151503],[-0.035309012979269,-0.074630379676819,0.16147750616074],[-0.073750205338001,0.046082273125648,0.23768745362759]],[[-0.088423393666744,-0.057075459510088,-0.061923079192638],[-0.095632240176201,-0.064323380589485,0.1469541490078],[0.052548911422491,-0.26687574386597,-0.10402172803879]],[[0.060888402163982,0.043058108538389,0.013551659882069],[-0.0028274853248149,-0.050595600157976,-0.038808856159449],[-0.10625459998846,0.05505907535553,-0.046354681253433]],[[-0.077370561659336,0.025518057867885,0.058949124068022],[-0.0014825778780505,0.10196118801832,0.12412100285292],[0.062047474086285,-0.12846696376801,0.0012217096518725]],[[-0.054970469325781,0.14908380806446,-0.10821091383696],[-0.0023600899148732,0.063759744167328,0.047301739454269],[0.023605965077877,0.047755558043718,0.029728580266237]],[[-0.12164869904518,0.12344998121262,-0.017338860780001],[0.092030517756939,0.089853093028069,0.16186910867691],[0.014888535253704,-0.013978444039822,-0.025458011776209]],[[0.15179917216301,0.044918712228537,-0.17481826245785],[-0.10188542306423,-0.1176143810153,0.055041652172804],[-0.083801478147507,-0.086882472038269,-0.00071627536090091]],[[0.017496839165688,-0.0030004056170583,0.10308192670345],[0.10193824768066,-0.0058427406474948,-0.0047764000482857],[0.040360137820244,0.028708333149552,0.019362540915608]],[[-0.071458458900452,0.036123808473349,0.023387812077999],[-0.055748984217644,-0.029455939307809,0.033505294471979],[0.01991730183363,0.013691463507712,-0.013604940846562]],[[-0.19691771268845,-0.0056352741084993,-0.15433087944984],[0.041983623057604,0.048817053437233,0.043836385011673],[0.071667194366455,0.037256889045238,0.06874743103981]],[[0.15806610882282,-0.057116482406855,-0.065285451710224],[-0.034893393516541,-0.023747971281409,-0.089879877865314],[-0.20273230969906,0.014124420471489,-0.0040970724076033]],[[-0.15962806344032,0.087440520524979,-0.069513209164143],[0.03386028110981,0.052521113306284,-0.042632903903723],[0.074350096285343,0.12686507403851,-0.044932939112186]],[[-0.074785307049751,0.066708013415337,0.0039446726441383],[-0.019377749413252,-0.13651037216187,-0.010384098626673],[0.13518467545509,0.061469968408346,-0.061061751097441]],[[0.21663148701191,0.015255398117006,-0.023187151178718],[-0.08242542296648,-0.16423968970776,-0.0028636909555644],[0.057525414973497,0.040251560509205,0.0063943169079721]],[[0.029536060988903,-0.061506781727076,0.11293893307447],[-0.13449442386627,-0.24879024922848,0.095351807773113],[-0.086919166147709,-0.045280519872904,0.077215403318405]],[[0.073555178940296,-0.066865190863609,-0.086607843637466],[0.030836520716548,-0.079614371061325,0.068196929991245],[0.080454736948013,-0.035680018365383,0.014914492145181]],[[-0.10899437963963,-0.063695020973682,0.010234493762255],[0.040518697351217,-0.022798718884587,-0.12085581570864],[-0.068113811314106,-0.068826138973236,0.073466137051582]],[[0.090146861970425,-0.089275047183037,-0.015805723145604],[0.071928016841412,0.027192791923881,0.0078827608376741],[-0.085207276046276,0.047920539975166,-0.0069564837031066]],[[-0.15082080662251,-0.034682597965002,0.085874758660793],[0.079038307070732,-0.0012894017854705,0.076616130769253],[-0.011250815354288,-0.064334414899349,-0.10619442164898]],[[0.033950492739677,0.11878455430269,-0.024092633277178],[-0.04772986471653,0.028387641534209,-0.063284240663052],[0.061349760740995,-0.082361556589603,0.0031833969987929]],[[0.016208056360483,0.029141310602427,-0.059658419340849],[0.084302216768265,0.016977002844214,-0.15726824104786],[-0.067983277142048,-0.054652880877256,-0.19626159965992]],[[0.011581285856664,0.066733404994011,0.018987251445651],[0.010589171200991,0.011919595301151,-0.017385594546795],[0.08536072075367,0.14113248884678,0.135318338871]],[[-0.035206831991673,0.097687482833862,0.15996368229389],[-0.071234032511711,0.049998257309198,-0.019860336557031],[0.014331698417664,-0.0006727174622938,0.065395765006542]],[[0.0066852946765721,-0.0035298303700984,-0.12738099694252],[0.027157759293914,-0.057695213705301,0.0096380086615682],[-0.024931382387877,0.044604808092117,-0.017327046021819]],[[0.099368773400784,-0.0060845063999295,7.4092560680583e-05],[0.071453295648098,-0.1022355556488,0.11042736470699],[0.056478254497051,-0.072938561439514,-0.078589007258415]],[[0.0071367332711816,-0.03764234110713,0.086057297885418],[0.040525510907173,0.011695418506861,0.2353673428297],[0.14451490342617,0.043184723705053,0.1061832010746]],[[-0.0027909390628338,-0.0012824509758502,0.048080995678902],[-0.067751251161098,-0.049441423267126,-0.053728219121695],[-0.06998148560524,-0.058211028575897,-0.014167071320117]],[[0.0020328499376774,-0.01531966868788,-0.078100122511387],[0.074076421558857,-0.07430512458086,0.021955236792564],[0.22233816981316,-0.21628195047379,-0.0052000051364303]],[[0.072411082684994,0.21316300332546,0.0016429921379313],[-0.036783341318369,0.20408238470554,-0.22840429842472],[0.023529179394245,0.032309025526047,-0.10261235386133]],[[0.11678963899612,-0.09566342830658,-0.01591457799077],[0.073880851268768,0.0073636625893414,0.099831968545914],[0.096526198089123,-0.014715085737407,-0.17390538752079]],[[-0.045687444508076,0.037766948342323,-0.047548297792673],[-0.039764072746038,0.16469709575176,0.0043744859285653],[0.084211677312851,0.17090880870819,0.046019922941923]],[[0.042968779802322,0.13345769047737,0.09268119931221],[-0.030878970399499,-0.046523656696081,0.093601375818253],[-0.023429069668055,0.057912852615118,0.064212374389172]],[[0.020459525287151,0.011451479047537,-0.076629430055618],[0.052919618785381,0.024162087589502,0.0054629966616631],[-0.044975493103266,-0.010959789156914,0.11087507754564]],[[0.15497319400311,0.13058714568615,0.15921021997929],[-0.039661530405283,-0.055100608617067,0.039505913853645],[0.099034063518047,0.0048428871668875,0.066753678023815]],[[0.045722268521786,0.080964647233486,0.2170912027359],[-0.13040389120579,-0.088754415512085,0.094752408564091],[-0.14855079352856,0.096245728433132,0.1025292724371]],[[-0.058858796954155,-0.028778690844774,0.0048439265228808],[-0.07701737433672,0.015275334008038,-0.052793726325035],[-0.11203690618277,-0.056085105985403,-0.027355125173926]],[[-0.20795418322086,-0.13683868944645,-0.12156787514687],[-0.18585160374641,-0.093146197497845,-0.09019497781992],[0.005187067668885,0.059499777853489,-0.04856239631772]],[[-0.080339297652245,-0.01897244527936,0.0052851918153465],[-0.076225802302361,-0.0081426901742816,-0.02940090559423],[-0.042561497539282,0.03184412047267,0.073379814624786]],[[0.0073660225607455,-0.074004419147968,-0.10570166260004],[0.17921251058578,0.0095250597223639,-0.21768569946289],[-0.075239457190037,-0.18246366083622,-0.09730003029108]],[[0.12834484875202,-0.0062116337940097,-0.07757855951786],[-0.0052921869792044,0.010791904293001,-0.040322378277779],[0.068907260894775,0.12988945841789,0.15981814265251]],[[-0.0064579481258988,-0.055179286748171,0.030251694843173],[0.20496219396591,0.0080776158720255,-0.027953412383795],[0.059145014733076,-0.085887484252453,-0.01870815269649]],[[-0.11775535345078,-0.028790343552828,-0.039461776614189],[0.10395811498165,-0.064426966011524,0.062626451253891],[-0.018999068066478,-0.056278228759766,0.051102247089148]],[[0.067965775728226,-0.15167063474655,0.0053308987990022],[0.06569742411375,-0.07263158261776,0.066884629428387],[0.17610505223274,0.1730220168829,-0.041822552680969]],[[-0.0046412795782089,0.029098637402058,0.18289710581303],[-0.020597418770194,0.0066136671230197,0.22403997182846],[-0.0047592925839126,-0.1729651093483,0.089194752275944]]],[[[0.016239086166024,-0.148955732584,0.094233669340611],[-0.063049741089344,-0.041836820542812,0.040288917720318],[0.013568217866123,0.12874375283718,0.10419115424156]],[[-0.036309976130724,-0.011601956561208,-0.017638746649027],[0.0072451280429959,-0.10235420614481,-0.12920366227627],[0.22353580594063,0.038946267217398,-0.042440705001354]],[[-0.036119636148214,0.055775441229343,0.30053198337555],[0.021936740726233,0.23714825510979,0.071890249848366],[0.12730923295021,0.1839125752449,0.01416240632534]],[[-0.026970513164997,-0.18652401864529,0.00076289696153253],[-0.11633077263832,-0.11764783412218,-0.11970437318087],[-0.036380730569363,-0.18912447988987,-0.15485318005085]],[[0.19132865965366,0.081932164728642,0.020502725616097],[-0.14076247811317,-0.14168661832809,-0.0027699626516551],[-0.11238386482,-0.10681203007698,0.066200375556946]],[[-0.012963624671102,0.0080074444413185,0.026678906753659],[0.065574429929256,-0.071699649095535,0.10130104422569],[0.11715468764305,-0.015540491789579,-0.0115558039397]],[[0.076140463352203,0.079993292689323,-0.0097701046615839],[-0.093381389975548,-0.077033638954163,-0.0049795261584222],[0.047236777842045,0.021133024245501,-0.00069984764559194]],[[-0.011144436895847,0.016741530969739,0.025067392736673],[-0.0028968488331884,0.051388517022133,0.104835703969],[0.10913296043873,0.10881394147873,0.22135743498802]],[[-0.034398298710585,-0.05588024482131,0.032889630645514],[-0.013782378286123,0.042196854948997,0.077831856906414],[0.05292896181345,0.039366029202938,0.043067418038845]],[[0.031559962779284,0.095885910093784,0.021238576620817],[0.060088127851486,-0.016231929883361,-0.051701705902815],[0.050555977970362,0.1325401365757,0.04995484650135]],[[-0.096104420721531,0.045242924243212,-0.055878277868032],[0.0025953357107937,0.024588990956545,0.12753938138485],[0.026408202946186,0.075579099357128,0.11780884861946]],[[-0.040264189243317,0.070711195468903,0.0034487305674702],[-0.017339685931802,0.065702997148037,0.12350142747164],[-0.12850275635719,-0.00085081555880606,-0.021256668493152]],[[-0.032072469592094,-0.081634864211082,-0.037773475050926],[-0.0097352201119065,-0.055943824350834,0.090583249926567],[-0.017989255487919,-0.050726640969515,0.012737951241434]],[[-0.048231910914183,-0.03782681375742,0.1102633997798],[0.019718982279301,-0.01051224861294,-0.015634346753359],[0.002489018952474,-0.10322087258101,0.0053063193336129]],[[-0.069857001304626,0.058525465428829,0.16770479083061],[0.20706836879253,0.10068194568157,-0.028631018474698],[0.036419384181499,0.16660468280315,0.16224551200867]],[[0.13012613356113,0.085823304951191,-0.086970880627632],[0.02720439620316,-0.043114278465509,-0.059162624180317],[0.052035678178072,-0.02094266936183,0.0089805768802762]],[[-0.020280916243792,-0.048808716237545,-0.017700606957078],[-0.071780890226364,-0.082156032323837,0.038199622184038],[-0.018090143799782,-0.097202286124229,-0.013900901190937]],[[0.066072709858418,0.0037918940652162,-0.0067537981085479],[0.080724388360977,0.006185797508806,0.096256524324417],[-0.068592540919781,0.11100335419178,0.042213100939989]],[[0.017062168568373,0.13795238733292,0.19237130880356],[-0.098575852811337,0.05027787014842,0.097236230969429],[0.0046193227171898,-0.17765557765961,-0.068972326815128]],[[-0.011198843829334,-0.0011464514536783,0.067201837897301],[-0.085375003516674,-0.11900088191032,-0.05197187140584],[0.0050735059194267,-0.12100201100111,-0.092286631464958]],[[-0.039529580622911,0.11490948498249,0.059834096580744],[0.02851665392518,0.06088625267148,-0.047370862215757],[-0.095360219478607,-0.027405692264438,-0.01521719712764]],[[-0.098604068160057,0.063008464872837,-0.0075002913363278],[-0.10515406727791,0.0041012158617377,0.008660489693284],[0.18136827647686,-0.083157382905483,0.0039726789109409]],[[0.060367200523615,0.09780840575695,-0.06236544251442],[-0.020286543294787,0.061735481023788,-0.061019126325846],[-0.036909710615873,-0.044851865619421,0.017571479082108]],[[-0.13439908623695,0.042824774980545,0.10266172885895],[0.040907081216574,-0.094992913305759,-0.066065698862076],[0.18040782213211,0.011696006171405,-0.079141654074192]],[[-0.19915452599525,-0.043668169528246,-0.051882635802031],[0.055699147284031,-0.063179060816765,0.049323916435242],[0.16788764297962,0.08890775591135,-0.076053962111473]],[[-0.045761946588755,-0.12690724432468,-0.069465070962906],[0.077038079500198,-0.01676283031702,-0.016522735357285],[-0.093113727867603,-0.093970529735088,0.14404584467411]],[[-0.072061397135258,0.055409908294678,0.062445379793644],[-0.10833367705345,0.11459401994944,0.028129488229752],[0.081877492368221,0.1099106669426,0.25529536604881]],[[0.067371442914009,-0.0055849091149867,0.20751555263996],[0.039846643805504,-0.087110862135887,0.077515281736851],[0.026193056255579,-0.0062411674298346,0.063319206237793]],[[-0.12426889687777,-0.059127230197191,-0.2147105038166],[-0.1025605276227,0.072687231004238,-0.20919321477413],[-0.034442506730556,-0.026795687153935,-0.15015742182732]],[[-0.1112896502018,0.032613411545753,0.013949383050203],[-0.12834203243256,-0.13905741274357,-0.02162042632699],[-0.017759120091796,-0.078369207680225,-0.010768444277346]],[[-0.0010360771557316,0.001444740104489,-0.018982904031873],[-0.031841564923525,-0.065810769796371,-0.020986415445805],[-0.044173754751682,0.0067661972716451,0.034102100878954]],[[-0.001134840073064,-0.095230527222157,0.045556362718344],[0.042581290006638,0.23580907285213,-0.064238213002682],[0.029124120250344,0.055691093206406,-0.016446407884359]],[[0.0092778224498034,-0.0073501719161868,-0.017505725845695],[-0.060391217470169,-0.1522780507803,0.047245513647795],[0.037513080984354,-0.033370766788721,0.038425553590059]],[[0.08586522936821,0.11176744103432,-0.074756324291229],[0.088728427886963,-0.092589691281319,0.075384512543678],[-0.055682331323624,0.029516851529479,0.032943777740002]],[[0.032612904906273,-0.018110791221261,-0.09255001693964],[-0.034748192876577,-0.081184096634388,-0.11550542712212],[-0.02866954728961,-0.042329490184784,0.011158953420818]],[[-0.17670777440071,0.042589906603098,-0.038349352777004],[-0.17092701792717,-0.069018021225929,-0.087547607719898],[-0.1401331871748,-0.0096031976863742,-0.026852179318666]],[[0.19815531373024,0.060697067528963,-0.026799144223332],[-0.095685020089149,0.079919762909412,0.087543249130249],[0.12406972050667,0.063164733350277,-0.11162880063057]],[[-0.039795059710741,0.0064967512153089,-0.033381298184395],[0.0010409144451842,-0.0054245083592832,-0.15530274808407],[0.16127480566502,-0.044814713299274,-0.027004506438971]],[[-0.083037719130516,-0.059855774044991,0.050990786403418],[0.058025125414133,-0.14675861597061,-0.02437367849052],[0.020331814885139,0.062725067138672,-0.056271366775036]],[[0.11683723330498,-0.081021592020988,-0.087228432297707],[0.031733900308609,-0.12550459802151,-0.016659153625369],[0.092479936778545,-0.11798059940338,0.08854054659605]],[[0.072238408029079,0.041226241737604,0.065196871757507],[-0.062196828424931,0.048520505428314,-0.011017015203834],[-0.21476176381111,0.1012257412076,0.030600801110268]],[[0.043510992079973,0.03874197602272,-0.12584978342056],[-0.083515740931034,0.026484865695238,-0.044741544872522],[0.094916604459286,0.16068245470524,0.0022580286022276]],[[-0.10288822650909,-0.021640373393893,-0.20119592547417],[-0.024250460788608,-0.048652935773134,-0.041808135807514],[-0.011214127764106,-0.0014037231449038,0.044627226889133]],[[0.04034323617816,0.005877731833607,-0.05914717912674],[-0.011910445056856,-0.0085458094254136,-0.033594336360693],[0.0205934997648,-0.11241352558136,0.08498115837574]],[[0.11389841884375,-0.054556615650654,-0.019554410129786],[-0.10360932350159,0.021785382181406,0.071599327027798],[-0.057192549109459,-0.21386256814003,-0.12683868408203]],[[0.051262386143208,-0.077490866184235,-0.13561624288559],[0.063305377960205,-0.068405270576477,-0.034789584577084],[0.06477253139019,-0.17541615664959,-0.29915097355843]],[[-0.016254911199212,0.13847568631172,0.043666575103998],[0.035975225269794,0.022158773615956,0.042469438165426],[0.10546600818634,0.0073246345855296,0.074562974274158]],[[-0.079736083745956,-0.071516767144203,0.15163993835449],[0.04899637401104,-0.065856769680977,-0.046355500817299],[0.17410488426685,-0.02522044070065,-0.081273138523102]],[[-0.15087287127972,0.0019216113723814,0.16480156779289],[0.017540995031595,-0.060200165957212,-0.070711001753807],[-0.031141871586442,-0.060152374207973,-0.1139652505517]],[[-0.083351813256741,-0.13004693388939,-0.052753821015358],[-0.045078214257956,0.0044462592341006,0.0090462965890765],[-0.0082514863461256,-0.018530992791057,-0.1056090965867]],[[-0.061003021895885,-0.12930469214916,-0.036353096365929],[0.12458708882332,-0.031606063246727,-0.095534041523933],[0.0019082562066615,-0.024254018440843,-0.16022726893425]],[[-0.012779716402292,0.11392396688461,-0.28843441605568],[-0.0028572999872267,-0.034328527748585,-0.080304928123951],[0.15951210260391,0.1277019828558,0.0055030193179846]],[[-0.025588618591428,0.086729772388935,0.017200767993927],[0.0075738364830613,-0.044747453182936,-0.041594430804253],[0.020028702914715,-0.067196294665337,-0.017203472554684]],[[-0.018404582515359,0.083498299121857,-0.0035726162604988],[0.031494792550802,0.11505351960659,0.13439807295799],[-0.09581084549427,-0.04178112372756,0.10282947868109]],[[0.022393807768822,-0.010774487629533,0.045894499868155],[0.1112238317728,-0.022374425083399,-0.032331682741642],[0.077962227165699,0.071166910231113,-0.090090900659561]],[[0.051009852439165,-0.10120122879744,0.1032669916749],[0.0083293998613954,0.065744146704674,-0.038063738495111],[-0.028501152992249,0.04277466610074,-0.038678281009197]],[[0.11731088161469,0.046109519898891,-0.026382017880678],[-0.064899198710918,0.023691922426224,-0.12620261311531],[0.012732358649373,0.018329748883843,0.089504472911358]],[[0.062577687203884,-0.067777991294861,-0.053984694182873],[0.069573953747749,-0.099293008446693,-0.15215495228767],[-0.058150801807642,-0.085674211382866,0.036209914833307]],[[-0.0015560159226879,0.11494150012732,-0.10366108268499],[0.014720734208822,-0.054643295705318,-0.020126899704337],[0.022468471899629,-0.077608242630959,0.017494451254606]],[[0.036430064588785,0.015525811351836,0.0019261086126789],[0.11017307639122,0.073880411684513,0.053024910390377],[-0.0061009884811938,0.048202224075794,0.082652613520622]],[[-0.14659963548183,-0.23963275551796,-0.052716549485922],[-0.096642434597015,-0.14217501878738,-0.048175618052483],[-0.042213443666697,-0.095780275762081,-0.043400071561337]],[[0.086813293397427,0.038520082831383,-0.025817945599556],[0.025808276608586,-0.01346396561712,0.01754704862833],[-0.015411233529449,-0.023033145815134,-0.099939353764057]],[[0.12469917535782,0.051450401544571,0.093255192041397],[0.084049142897129,-0.034586075693369,-0.079460509121418],[-0.10394094884396,0.055717274546623,0.0091563137248158]],[[0.075030907988548,0.21457380056381,-0.0158572178334],[-0.0040102931670845,0.060514569282532,0.07792292535305],[0.020756550133228,0.065839737653732,-0.11740048974752]],[[-0.06926391273737,0.0026914079207927,-0.05653952434659],[-0.018109496682882,-0.018808968365192,-0.13158279657364],[-0.04919309169054,0.073845416307449,-0.25638338923454]],[[-0.059993881732225,0.049685478210449,-0.0028306464664638],[0.041981164366007,0.0098366355523467,0.0011048571905121],[-0.015169594436884,0.078370995819569,-0.040712304413319]],[[0.11551371961832,-0.0014511115150526,-0.001946137053892],[0.021650444716215,-0.017250398173928,-0.1527144163847],[0.21756632626057,0.11564177274704,0.08309967815876]],[[-0.091394752264023,0.010928372852504,-0.16318063437939],[-0.067202158272266,-0.057692985981703,-0.017586190253496],[0.021152876317501,-0.038950905203819,0.051226191222668]],[[0.047151580452919,0.0021300970111042,-0.19520330429077],[0.034836694598198,0.031889587640762,0.033214066177607],[-0.019099786877632,-0.15508028864861,0.10285749286413]],[[-0.0033120266161859,-0.10429299622774,0.12086650729179],[0.026456823572516,-0.13150344789028,0.014327378943563],[0.075952731072903,-0.039399839937687,0.0048076235689223]],[[0.079668566584587,-0.07206004858017,0.11334107816219],[0.15279674530029,0.13795246183872,0.011711401864886],[0.04375447332859,0.040446393191814,0.10896722227335]],[[-0.013246951624751,0.043644655495882,-0.073904618620872],[-0.0048026950098574,0.02559725753963,0.047438722103834],[-0.064249441027641,0.097322486341,0.023180881515145]],[[-0.19417157769203,0.0081362435594201,-0.10227819532156],[-0.046793479472399,0.021406896412373,-0.0029823610093445],[-0.0061017642728984,-0.00028561486396939,0.079057529568672]],[[0.006829344201833,0.035857062786818,0.0065416656434536],[0.091724887490273,0.098534516990185,-0.0088553363457322],[0.15501165390015,0.045611247420311,-0.049358226358891]],[[0.069149538874626,0.028273493051529,-0.10942459106445],[0.061389718204737,-0.080338805913925,-0.08753464370966],[-0.18714667856693,-0.081831701099873,-0.033345218747854]],[[-0.089832879602909,-0.049628686159849,-0.12720549106598],[-0.076686009764671,-0.056622352451086,0.010991562157869],[-0.16468614339828,-0.0034515205770731,0.053072657436132]],[[0.11829147487879,-0.13295723497868,-0.036496590822935],[-0.016860585659742,0.021043168380857,-0.11208642274141],[-0.11341623961926,-0.024749079719186,-0.089093558490276]],[[-0.033873844891787,-0.040835831314325,-0.18872042000294],[0.08523678034544,0.039163455367088,0.020526301115751],[0.082218207418919,0.15232633054256,-0.016953432932496]],[[-0.060746014118195,0.059880934655666,0.063593573868275],[0.097177319228649,-0.039694715291262,0.098831199109554],[0.0052631334401667,-0.048238877207041,-0.0035632918588817]],[[-0.12781359255314,-0.030313517898321,-0.12028636783361],[-0.12188681960106,-0.07774630934,-0.078159421682358],[-0.19050844013691,-0.045135032385588,-0.053584709763527]],[[0.13679373264313,0.056487020105124,-0.019603416323662],[-0.0065855029970407,0.0060949828475714,-0.02160682156682],[-0.1022574454546,0.0091654490679502,-0.077894732356071]],[[-0.045090205967426,0.065838932991028,-0.038042917847633],[-0.02374192327261,-0.041834026575089,-0.14618973433971],[-0.13172011077404,-0.01479608938098,0.11146507412195]],[[0.12143579125404,0.081399448215961,0.095570400357246],[0.053793419152498,0.027362244203687,0.048748161643744],[0.029660642147064,0.1030742302537,0.14109826087952]],[[0.07383705675602,0.018953308463097,-0.056741524487734],[0.08249082416296,0.034681841731071,-0.064823299646378],[0.016721488907933,-0.061545506119728,-0.011230025440454]],[[-0.042917266488075,-0.0020230952650309,0.035641722381115],[-0.04583689942956,-0.047247085720301,0.0076660593040287],[0.18028979003429,0.10518077760935,0.082283146679401]],[[0.13375525176525,0.10289847105742,-0.015433246269822],[0.030789336189628,0.050387490540743,-0.039342861622572],[-0.031904738396406,-0.032651048153639,0.016780961304903]],[[0.10619013756514,0.095599375665188,0.10225855559111],[0.013365296646953,0.015189237892628,-0.042475391179323],[0.20380286872387,0.020057642832398,0.098869100213051]],[[0.052161443978548,-0.025636481121182,-0.032108079642057],[0.071039192378521,-0.037372376769781,0.070017091929913],[0.14857518672943,-0.057814653962851,-0.051841758191586]],[[0.1214959397912,0.021306816488504,-0.029160743579268],[0.058663167059422,0.064844459295273,0.04197945073247],[0.041232012212276,-0.058263398706913,0.032035164535046]],[[-0.032795581966639,-0.06107510253787,-0.029155798256397],[0.036472592502832,-0.053852867335081,-0.074405640363693],[-0.1148933917284,-0.012248699553311,-0.0020716655999422]],[[0.037342414259911,0.069336518645287,0.13866695761681],[-0.018228156492114,-0.042166754603386,-0.022821361199021],[0.041993513703346,-0.068088717758656,0.16774946451187]],[[-0.017103103920817,-0.070348918437958,0.020900880917907],[-0.055708561092615,-0.070710644125938,-0.052933745086193],[-0.03281943500042,-0.025206273421645,0.13518336415291]],[[0.083716817200184,0.084377266466618,-0.0089422138407826],[-0.002988668391481,0.061898734420538,0.15086850523949],[-0.048461224883795,0.0019655269570649,0.064834766089916]],[[-0.058201111853123,0.15892745554447,0.088443279266357],[-0.04686064273119,0.057979308068752,0.063782937824726],[0.1013046130538,0.07427641749382,0.09510250389576]],[[0.022254642099142,-0.011181721463799,-0.079212114214897],[0.044570747762918,0.099928572773933,0.047311551868916],[0.16536885499954,0.14666122198105,0.056307423859835]],[[-0.10767533630133,-0.040359675884247,-0.0031532142311335],[0.10565576702356,0.025662649422884,0.017595184966922],[-0.031945087015629,0.098921097815037,-0.084854736924171]],[[-0.0083592915907502,-0.089337982237339,-0.069667436182499],[-0.025141879916191,-0.16604901850224,-0.12834960222244],[-0.011716212145984,0.032464526593685,-0.039781864732504]],[[-0.030641213059425,0.044444635510445,0.037004474550486],[-0.030692277476192,-0.013794461265206,0.029763232916594],[0.038048300892115,-0.050753533840179,-0.057371586561203]],[[0.097637377679348,-0.062070827931166,0.045763775706291],[0.00065875123254955,0.058868490159512,0.027264988049865],[-0.04503507912159,-0.16021598875523,0.053380455821753]],[[0.049563899636269,-0.054035156965256,0.093446061015129],[-0.037094559520483,-0.043995954096317,0.059933770447969],[0.048713330179453,-0.079760827124119,0.026299089193344]],[[0.17405441403389,-0.062987096607685,0.020897287875414],[0.10449879616499,-0.056843858212233,0.036856956779957],[0.081118419766426,0.048974074423313,0.0096620684489608]],[[0.077347844839096,0.084263451397419,0.15399120748043],[0.01947801373899,0.12441927194595,0.16448998451233],[-0.067470625042915,-0.052591759711504,0.065747998654842]],[[-0.064099974930286,-0.0094494828954339,0.14495220780373],[0.17877864837646,0.063267752528191,-0.039188057184219],[-0.12816928327084,0.02951231226325,0.013338304124773]],[[0.00093635381199419,-0.076654329895973,-0.099361024796963],[0.13399405777454,0.092194832861423,-0.050333678722382],[-0.0072512184269726,-0.10141908377409,-0.038491372019053]],[[0.015785375609994,0.011437238194048,-0.15946643054485],[-0.015234094113111,-0.039811115711927,0.0233696680516],[-0.071997381746769,-0.046519618481398,0.016655353829265]],[[-0.088620759546757,0.013414662331343,0.20411042869091],[-0.046968217939138,0.027624340727925,0.054346226155758],[-0.13012488186359,-0.029924543574452,0.063064329326153]],[[-0.023941352963448,-0.15144127607346,-0.029084565117955],[0.056912392377853,-0.00094605848425999,0.11034717410803],[-0.11420508474112,0.0085506131872535,0.03282230719924]],[[-0.17407967150211,-0.10159739106894,-0.0040437215939164],[-0.11175179481506,0.027491385117173,-0.06554176658392],[-0.1287600249052,-0.021368203684688,0.044248148798943]],[[0.015145885758102,-0.063757963478565,0.09168279916048],[-0.1164832636714,0.088480517268181,-0.05888257175684],[-0.019982162863016,0.069542996585369,0.094029195606709]],[[0.15607923269272,0.1024312376976,-0.086289659142494],[0.080682069063187,-0.021196946501732,-0.048513695597649],[-0.11151208728552,-0.026229487732053,-0.10111181437969]],[[0.024340324103832,-0.09770804643631,-0.029568638652563],[-0.030709307640791,0.050428349524736,-0.05328319221735],[-0.014100657775998,0.055319599807262,0.039337676018476]],[[-0.046836342662573,-0.043168619275093,-0.027531791478395],[0.064403705298901,-0.0027250428684056,-0.081935174763203],[-0.043254442512989,-0.040307823568583,-0.029149584472179]],[[0.061310037970543,-0.085289880633354,0.088340595364571],[0.09527288377285,0.053561426699162,0.021236717700958],[-0.10554179549217,-0.001768505666405,-0.078793182969093]],[[0.0027145892381668,0.029602840542793,0.066027998924255],[-0.15343707799911,-0.087517008185387,0.019221775233746],[-0.079254306852818,-0.029464431107044,0.079480670392513]],[[-0.20148411393166,0.033863972872496,0.026713140308857],[-0.099439315497875,-0.01285745203495,0.0051493588835001],[-0.061387483030558,0.018895940855145,0.064863763749599]],[[0.10490836948156,0.027275798842311,-0.16479396820068],[-0.019747106358409,0.089683949947357,0.019493944942951],[0.032481513917446,-0.077917940914631,-0.056050769984722]],[[-0.046068884432316,0.063268952071667,-0.048199616372585],[-0.015546335838735,-0.096975281834602,0.038319870829582],[0.034256670624018,-0.016047550365329,0.019025994464755]],[[-0.0046582766808569,-0.006938268430531,0.023462150245905],[0.12151602655649,0.11235765367746,0.080664113163948],[-0.13577914237976,-0.15299168229103,-0.016145860776305]],[[0.052899941802025,-0.094493202865124,0.051074530929327],[-0.0142054380849,-0.074803397059441,-0.037913039326668],[0.031322877854109,-0.075475037097931,-0.087368726730347]],[[0.15690369904041,0.0075073931366205,-0.13814306259155],[-0.016970915719867,-0.062338601797819,0.019444385543466],[0.042778231203556,-0.0090732555836439,0.088092766702175]],[[0.071976810693741,0.10282162576914,0.017734300345182],[0.0050267120823264,-0.069167263805866,0.11144889891148],[0.011896472424269,-0.0077296169474721,-0.053697746247053]],[[-0.0041065174154937,0.095034591853619,0.028847478330135],[0.092851266264915,0.11213224381208,-0.029412388801575],[0.03905175998807,0.11371342092752,-0.055000945925713]],[[-0.081999011337757,0.005423576105386,-0.14587381482124],[-0.039339151233435,-0.10911850631237,-0.061966829001904],[0.020926222205162,-0.062329582870007,0.039240553975105]],[[0.022657334804535,0.043981298804283,0.062087494879961],[0.10936053842306,-0.004407711327076,0.10254339873791],[0.28461068868637,-0.074285298585892,0.047518469393253]],[[0.087253101170063,-0.088193222880363,0.1242087110877],[0.055266082286835,-0.053150031715631,0.18088093400002],[-0.31118205189705,0.24235093593597,0.020960424095392]],[[-0.068171307444572,0.19120892882347,-0.15655337274075],[-0.034812226891518,-0.019817937165499,0.096682153642178],[-0.0084901750087738,0.028813993558288,-0.072973430156708]],[[0.059814851731062,-0.044555269181728,-0.011132013984025],[-0.12300096452236,-0.14208403229713,0.11920406669378],[0.020555097609758,0.016930628567934,-0.016257293522358]],[[0.002262043999508,-0.048051610589027,-0.10824377089739],[0.0046685170382261,0.065679475665092,-0.11378236860037],[0.019884165376425,-0.041982937604189,0.0064240237697959]]],[[[-0.043868202716112,0.077088080346584,-0.047763306647539],[-0.054100431501865,0.065667286515236,0.08073940128088],[0.044171139597893,0.040366899222136,-0.052993983030319]],[[-0.0084688607603312,0.00075368990655988,0.13006570935249],[0.060405276715755,0.010910152457654,0.018733045086265],[-0.055309388786554,-0.03413674607873,-0.029697893187404]],[[0.084936589002609,0.028638500720263,0.10219466686249],[0.046246603131294,-0.010782539844513,0.044096779078245],[-0.039163999259472,-0.013504199683666,-0.12093038111925]],[[-0.031257402151823,0.10342518240213,0.018775209784508],[-0.067758850753307,0.0026363059878349,0.092185877263546],[-0.010529106482863,-0.049841187894344,-0.099446341395378]],[[0.074184745550156,0.064110524952412,-0.062778562307358],[-0.10328032821417,-0.017659671604633,-0.033626228570938],[0.058606449514627,0.02683786675334,0.074845418334007]],[[0.02098279632628,-0.019331000745296,0.086646191775799],[0.12140788137913,-0.016747796908021,-0.02966801635921],[-0.013065070845187,-0.036588821560144,0.019826171919703]],[[0.10150636732578,-0.010391793213785,-0.027027351781726],[0.12065809220076,0.091716714203358,0.19055461883545],[0.039940014481544,0.020614538341761,-0.017181236296892]],[[0.10495956987143,0.022393079474568,0.013853813521564],[0.0013579335063696,-0.047668933868408,-0.01337858941406],[0.060108050704002,-0.022559359669685,-0.013510829769075]],[[0.10354472696781,-0.032584715634584,0.015590566210449],[0.056599240750074,0.013744018040597,0.066626571118832],[-0.039333589375019,-0.028252381831408,0.068403244018555]],[[0.0205297190696,-0.03025277890265,0.015979690477252],[-0.027966737747192,-0.0023825850803405,0.083277709782124],[-0.014599780552089,-0.049388226121664,0.030479770153761]],[[0.14086237549782,-0.031252346932888,-0.10170360654593],[0.021879030391574,-0.031061189249158,0.012962938286364],[-0.065282434225082,-0.14599066972733,-0.0076987366192043]],[[-0.031630232930183,0.022802418097854,-0.041263937950134],[-0.084402918815613,0.030587153509259,-0.037262331694365],[-0.098508313298225,0.075372837483883,-0.030419865623116]],[[0.061608742922544,0.040017161518335,-0.015582318417728],[-0.001044028555043,-0.076434381306171,-0.033613607287407],[-0.088388733565807,-0.028154810890555,0.091650046408176]],[[0.10285774618387,0.081977359950542,-0.095632821321487],[-0.060765322297812,-0.055298123508692,-0.11477276682854],[-0.068675152957439,-0.089694477617741,-0.071103945374489]],[[-0.017436195164919,0.078005321323872,-0.03887577727437],[-0.017894353717566,-0.035440441220999,-0.016282793134451],[-0.033563498407602,-0.01466156821698,-0.049903362989426]],[[-0.027673311531544,0.011642208322883,-0.009912614710629],[-0.0272815246135,-0.1264876127243,-0.069679379463196],[-0.032523524016142,-0.0029117304366082,0.079325906932354]],[[-0.024165822193027,-0.082299545407295,0.0078315697610378],[-0.011756795458496,-0.061816498637199,-0.078625895082951],[-0.086861088871956,-0.095044650137424,0.0086075812578201]],[[0.00086922291666269,-0.036232899874449,0.09062784910202],[0.0035282366443425,-0.037884626537561,-0.058146886527538],[-0.012077065184712,0.12866459786892,0.15973275899887]],[[-0.038752984255552,0.057649921625853,-0.034956235438585],[0.016786748543382,-0.050568412989378,-0.0065413694828749],[0.0062507945112884,-0.050370696932077,0.1019180342555]],[[-0.083601236343384,0.032189138233662,0.0268484223634],[-0.059826817363501,0.019946439191699,-0.077194556593895],[0.074831195175648,0.050176121294498,-0.0098050246015191]],[[-0.022365817800164,-0.046000309288502,-0.041254922747612],[-0.011545621789992,-0.039402019232512,-0.030225848779082],[-0.08232606947422,-0.028097791597247,0.081672437489033]],[[0.11248564720154,0.029233874753118,0.075025103986263],[-0.053571976721287,0.030032189562917,0.059348687529564],[-0.11909485608339,-0.036593321710825,-0.02334613353014]],[[-0.028173707425594,0.05777920410037,-0.042904928326607],[0.1591621786356,-0.090439699590206,-0.060223858803511],[0.024380512535572,0.11318464577198,0.22395122051239]],[[-0.061184708029032,0.090275414288044,0.069205343723297],[-0.088421449065208,-0.050950180739164,0.055174458771944],[-0.014734086580575,-0.004932246170938,-0.055729333311319]],[[-0.0024264187086374,0.013227702118456,0.0088770911097527],[-0.0093207266181707,-0.063146643340588,-0.16790466010571],[-0.079143427312374,-0.026975309476256,-0.064097307622433]],[[0.033951807767153,-0.064982324838638,0.014068368822336],[-0.016364064067602,0.03985034301877,0.012555063702166],[0.070284679532051,0.015097158960998,-0.0043554231524467]],[[-0.014455041848123,0.018774712458253,0.022105250507593],[0.048972103744745,-0.0097759272903204,-0.0060314005240798],[0.013210366480052,-0.059688881039619,-0.059105046093464]],[[-0.06080199405551,-0.018858255818486,0.0065362700261176],[-0.028497623279691,0.048688758164644,-0.039932560175657],[-0.011188749223948,0.09123120456934,-0.018791612237692]],[[-0.085661850869656,-0.12093911319971,0.03462990000844],[0.042556289583445,-0.092041335999966,-0.055558238178492],[-0.02917992323637,0.022030035033822,-0.03550585731864]],[[-0.17971657216549,-0.12620432674885,-0.065123952925205],[-0.036006171256304,0.0018390895565972,0.027519350871444],[-0.035606492310762,-0.071857176721096,-0.014445275068283]],[[-0.099640123546124,-0.039162989705801,0.093029037117958],[-0.044382534921169,-0.19686545431614,-0.020374892279506],[-0.026837093755603,0.13313882052898,-0.019345698878169]],[[-0.026136439293623,-0.079938948154449,0.051553804427385],[-0.058678898960352,0.039118383079767,-0.11781571060419],[0.055366281419992,0.038771845400333,-0.010564580559731]],[[0.02890545129776,-0.014711589552462,0.024516927078366],[0.028187675401568,-0.012181197293103,-0.036740686744452],[0.0023880111984909,0.056415103375912,-0.12352524697781]],[[-0.062885090708733,0.024041395634413,0.02926947362721],[0.092198736965656,-0.0033276227768511,0.07940361648798],[0.086472697556019,-0.026498319581151,0.0009075942216441]],[[-0.027189265936613,0.023911442607641,-0.0066265095956624],[-0.016151584684849,-0.069058790802956,-0.043359749019146],[0.0067045572213829,0.00870062969625,-0.080521143972874]],[[0.094038136303425,0.05140919983387,0.0088590476661921],[-0.02259087562561,0.014526470564306,-0.037186592817307],[0.037694808095694,-0.0083316685631871,-0.057370632886887]],[[0.1185365691781,-0.028650464490056,-0.12990880012512],[-0.091336794197559,0.10626482218504,-0.039524059742689],[-0.081065364181995,0.011683174408972,-0.02222952619195]],[[-0.026188176125288,-0.019991936162114,0.01659144833684],[0.10385521501303,-0.08494108915329,-0.0055201714858413],[-0.026560777798295,0.0069648339413106,-0.014426762238145]],[[0.046127080917358,-0.11692550033331,-0.110725492239],[0.17681302130222,0.021348474547267,-0.0063811521977186],[-0.12609267234802,0.025740129873157,0.065761350095272]],[[-0.13282339274883,-0.0050005381926894,0.019528528675437],[0.018881168216467,0.034916453063488,0.077745094895363],[-0.053426656872034,-0.086787521839142,-0.11289502680302]],[[-0.003800202626735,-0.019699454307556,-0.071690648794174],[0.0085462210699916,-0.035271797329187,-0.030964452773333],[0.0061638103798032,0.10421344637871,-0.065675891935825]],[[0.00080292741768062,0.03805947303772,0.084065079689026],[0.066782616078854,0.010478646494448,0.022406065836549],[0.05897868052125,0.028696354478598,0.027224006131291]],[[0.046182371675968,-0.0022314256057143,0.0021784156560898],[-0.0031109359115362,0.046315249055624,-0.057083442807198],[-0.038744259625673,-0.041972976177931,0.054933469742537]],[[0.13659225404263,-0.036353230476379,0.019101401790977],[-0.03603595495224,0.01899821870029,0.035162817686796],[-0.073388323187828,-0.07767553627491,-0.089049689471722]],[[-0.11270604282618,-0.10984935611486,-0.028767226263881],[-0.04030404612422,0.035554170608521,0.085097439587116],[0.056273616850376,0.036305595189333,0.046295795589685]],[[-0.09289376437664,0.10329278558493,0.07874708622694],[0.026367427781224,0.037465501576662,-0.035366579890251],[0.05933041870594,0.066645354032516,0.029593225568533]],[[-0.042630914598703,0.071431584656239,0.037234660238028],[0.081421300768852,0.037444364279509,-0.089527189731598],[-0.030261697247624,-0.069266945123672,0.070560783147812]],[[0.14355009794235,-0.14283414185047,-0.11206280440092],[0.081011973321438,0.082311108708382,0.09854094684124],[-0.086222812533379,-0.060938499867916,-0.044082038104534]],[[-0.036934394389391,-0.046242989599705,-0.089653335511684],[0.022202137857676,0.15340356528759,-0.042323533445597],[0.13410034775734,0.069679342210293,0.0093329381197691]],[[-0.045019753277302,0.026269000023603,0.066721871495247],[-0.029858414083719,-0.016442865133286,-0.074310392141342],[0.11951775103807,-0.0032965121790767,-0.049887374043465]],[[-0.087499678134918,0.036791834980249,0.13073436915874],[-0.069698758423328,0.0074583129025996,-0.037618327885866],[0.13526731729507,-0.019666891545057,-0.038571197539568]],[[0.015117052011192,0.094267033040524,0.020852111279964],[-0.018303778022528,-0.089078687131405,-0.021521998569369],[-0.014686700887978,-0.022796057164669,0.041332740336657]],[[0.069643601775169,0.098803333938122,0.025544140487909],[0.042595621198416,-0.0061251646839082,-0.035057943314314],[-0.06038286909461,-0.20199179649353,-0.24412615597248]],[[0.0078473314642906,-0.019377503544092,0.0091769434511662],[-0.002071711467579,0.01391601189971,0.029962170869112],[0.036301895976067,0.050715263932943,-0.023160574957728]],[[0.018814163282514,-0.065377861261368,-0.02835570089519],[0.081096917390823,0.012866634875536,-0.026616469025612],[-0.042176101356745,-0.014325398020446,-0.039409037679434]],[[-0.0038027588743716,0.071499556303024,0.062472276389599],[-0.0025062980130315,0.061221271753311,0.073237270116806],[-0.030558750033379,0.039695717394352,-0.029120821505785]],[[-0.029925873503089,-0.072151146829128,0.022232294082642],[0.026570474728942,0.096720032393932,0.01257885992527],[0.11038118600845,0.053140841424465,-0.02052647806704]],[[0.0056417705491185,0.018738629296422,-0.045306637883186],[0.0099006462842226,-0.08921342343092,-0.041888773441315],[0.015447876416147,-0.13715240359306,-0.046959616243839]],[[0.011220579966903,0.101517342031,-0.028661049902439],[0.10901054739952,-0.024375880137086,-0.066988572478294],[-0.0090617192909122,0.036168746650219,-0.030557176098228]],[[0.046841353178024,0.016318272799253,-0.087938360869884],[0.057397060096264,0.036923993378878,0.011723396368325],[-0.037462741136551,-0.016280984506011,0.01189187541604]],[[-0.15620847046375,-0.1024636849761,0.0063569997437298],[-0.068742573261261,0.0010416652075946,-0.01439318433404],[0.080928541719913,0.062494862824678,-0.043496508151293]],[[-0.021103171631694,-0.10011100769043,-0.022014517337084],[-0.069968491792679,0.074993677437305,0.010939427651465],[-0.044586591422558,-0.074271656572819,0.054458245635033]],[[0.0023691523820162,-0.030648281797767,0.026266772300005],[0.086448192596436,-0.0039180885069072,-0.12331742793322],[-0.01196101680398,-0.003207441419363,-0.1198660954833]],[[-0.068421326577663,0.077839739620686,-0.028422577306628],[0.015075873583555,0.13851682841778,0.21392315626144],[-0.03284153714776,-0.050376806408167,-0.073815621435642]],[[-0.0051100049167871,-0.021034155040979,0.10706304013729],[-0.070800945162773,0.014237500727177,0.032466232776642],[0.084074780344963,0.0039785709232092,-0.052115302532911]],[[-0.046636488288641,0.06245356798172,0.10688476264477],[-0.019667573273182,-0.021242197602987,-0.083173125982285],[-0.072149194777012,0.095812059938908,-0.047793816775084]],[[0.10270299017429,-0.0041355136781931,0.03749892860651],[0.024357903748751,-0.028016462922096,0.0086624613031745],[0.070077076554298,-0.012987896800041,0.022504422813654]],[[0.016588127240539,0.096401356160641,0.02029337361455],[0.011625041253865,-0.04979121312499,0.10427610576153],[-0.070829465985298,-0.10338363796473,0.022009249776602]],[[0.10601285845041,-0.057221319526434,-0.052807364612818],[0.0064791953191161,-0.13057447969913,-0.026432979851961],[0.065682262182236,0.051730766892433,-0.069338358938694]],[[-0.11561547219753,-0.0027517629787326,-0.021086532622576],[-0.0084780491888523,0.013899982906878,0.018480556085706],[0.0047009601257741,0.032296169549227,0.035042729228735]],[[0.043539572507143,0.031813833862543,0.022864174097776],[0.052611075341702,-0.0048726685345173,-0.025172540917993],[-0.09286480396986,-0.078159213066101,-0.064643792808056]],[[0.010140058584511,-0.043884955346584,0.092121236026287],[0.039236895740032,0.12555475533009,0.017563041299582],[-0.011321960017085,-0.061345960944891,-0.0058465301990509]],[[-0.12009446322918,-0.15350848436356,0.050728343427181],[0.031375002115965,-0.031111115589738,0.022013429552317],[0.0008348966948688,0.059205062687397,-0.15035633742809]],[[-0.011571914888918,0.10786739736795,0.15236064791679],[0.088314160704613,-0.04426246508956,0.026509866118431],[0.064122423529625,-0.0038462779484689,0.050644401460886]],[[0.0071654273197055,-0.076619654893875,-0.11998958140612],[-0.0066880248486996,0.004593470133841,-0.045966677367687],[-0.019063588231802,0.027226334437728,-0.10993880778551]],[[0.047059930860996,-0.11405174434185,0.035712864249945],[0.068639703094959,0.009575973264873,0.029567446559668],[0.039481181651354,0.069849260151386,0.033309634774923]],[[-0.14188013970852,-0.042806673794985,-0.07237184792757],[-0.0012930871453136,-0.068907603621483,-0.082541853189468],[0.083364523947239,-0.046797163784504,-0.15888205170631]],[[-0.028869729489088,0.026415696367621,-0.033120919018984],[0.0024513860698789,0.013336901552975,-0.013491329737008],[0.20780357718468,-0.05517740920186,0.036391481757164]],[[0.073058485984802,0.047893837094307,0.087335661053658],[-0.012328234501183,0.033983435481787,0.015836814418435],[0.14162343740463,0.023524176329374,-0.07110133767128]],[[-0.02738931402564,-0.040374185889959,-0.034363985061646],[-0.04945195838809,0.0002456316142343,-0.067287586629391],[0.039165701717138,-0.0022175789345056,-0.055322773754597]],[[0.093027524650097,-0.023739900439978,-0.14226622879505],[0.049304611980915,0.099868088960648,0.060137689113617],[0.066290289163589,-0.019227309152484,-0.077808916568756]],[[0.077004581689835,0.0045486907474697,-0.054760884493589],[-0.11624359339476,0.030308995395899,0.0025715623050928],[0.080206543207169,-0.11343270540237,-0.10000308603048]],[[0.032337322831154,-0.1334915459156,-0.082342766225338],[0.094208069145679,0.055606566369534,0.020919654518366],[0.029358517378569,-0.027893448248506,0.063780657947063]],[[0.033617228269577,0.10429102927446,-0.021229326725006],[-0.082040585577488,0.014303441159427,-0.019414708018303],[-0.05068625882268,0.0094611728563905,0.075741238892078]],[[-0.0025086607784033,-0.077806249260902,-0.053015112876892],[0.036317024379969,0.04174766689539,-0.027035931125283],[-0.05745117738843,-0.014716612175107,-0.024210846051574]],[[0.045709732919931,-0.079879686236382,-0.092763416469097],[-0.0094821015372872,0.13509859144688,0.02093000896275],[0.039713263511658,0.027877809479833,-0.020004210993648]],[[0.021137434989214,0.044624950736761,-0.0096750613301992],[0.053481690585613,-0.029085436835885,-0.041587095707655],[0.032738141715527,-0.042984940111637,-0.046808958053589]],[[-0.095311433076859,0.042139679193497,0.022880382835865],[-0.043582748621702,-0.013690184801817,0.012039213441312],[-0.085318937897682,0.0099501283839345,0.083950072526932]],[[0.073866836726665,0.028979724273086,-0.064146861433983],[0.056344542652369,0.09960924834013,-0.060570754110813],[-0.060164358466864,0.092584393918514,0.030469890683889]],[[-0.073075674474239,-0.033677741885185,0.014553095214069],[-0.14186306297779,0.0019676391966641,-0.022691773250699],[-0.080733612179756,-0.070129081606865,-0.12481836229563]],[[-0.026106860488653,0.018689716234803,0.081453926861286],[0.025514353066683,-0.12101345509291,-0.050996717065573],[-0.029642196372151,0.013915739953518,-0.012996912002563]],[[-0.076680578291416,-0.040751196444035,0.01508626434952],[0.061274215579033,0.021905042231083,0.13593758642673],[0.010364255867898,-0.068948209285736,-0.020329643040895]],[[0.046165846288204,0.024209976196289,-0.13363140821457],[0.0044324370101094,0.12721586227417,0.1188050955534],[0.0098607856780291,-0.0045173610560596,-0.01253451872617]],[[0.037236258387566,0.021821267902851,-0.041756447404623],[0.033897269517183,0.015479127876461,-0.025036621838808],[0.059420581907034,0.056524395942688,-0.0011506327427924]],[[0.061520293354988,0.059256251901388,0.10020598769188],[0.089807771146297,-0.013895995914936,-0.058420944958925],[0.045698326081038,-0.034167498350143,0.031678065657616]],[[0.045906934887171,-0.013756304048002,0.019072234630585],[0.069700889289379,0.04407599568367,0.032655697315931],[0.014437451958656,0.052620239555836,0.084247946739197]],[[0.043437909334898,-0.033721867948771,-0.058290883898735],[0.026335613802075,-0.070620931684971,0.050374899059534],[0.060964956879616,0.022291509434581,-0.029126886278391]],[[0.055766813457012,0.12467238306999,-0.0088265370577574],[-0.055893983691931,-0.017204709351063,-0.001996845472604],[-0.010900785215199,-0.049028567969799,0.00035858055343851]],[[-0.11589590460062,-0.0078400606289506,0.058040022850037],[0.036798838526011,0.028090445324779,-0.028519632294774],[0.015766508877277,0.082647494971752,0.12643484771252]],[[0.082954056560993,-0.0091531286016107,0.062077809125185],[-0.047153808176517,-0.074318818747997,-0.0016574355540797],[0.080514907836914,0.1414824873209,0.25083872675896]],[[-0.076109476387501,0.0042352150194347,-0.019371248781681],[-0.070287398993969,-0.10740605741739,0.15751954913139],[-0.041871130466461,0.023456150665879,-0.01708647981286]],[[0.071271769702435,0.094557426869869,0.095566660165787],[-0.074830256402493,0.0017899200320244,0.039267506450415],[0.12468163669109,0.15064303576946,0.22091279923916]],[[0.045279063284397,0.069196097552776,0.065507397055626],[0.069345809519291,0.057764902710915,-0.0096758808940649],[0.015285941772163,-0.0067324051633477,0.0072432458400726]],[[-0.027059901505709,0.038136508315802,0.072737395763397],[0.079195164144039,0.017859678715467,0.0094554452225566],[0.089108854532242,0.051553092896938,0.012234893627465]],[[0.047505751252174,-0.030210748314857,-0.072315901517868],[0.043531484901905,-0.066009789705276,-0.027977170422673],[-0.018055764958262,-0.051177427172661,0.082135654985905]],[[0.015510071069002,0.0097346436232328,-0.047457192093134],[-0.063077807426453,-0.02370261400938,-0.0074241985566914],[-0.051453519612551,0.055455699563026,0.0066532664932311]],[[-0.047056093811989,0.092833042144775,0.032637927681208],[0.080934584140778,0.083918072283268,0.035969577729702],[0.066760778427124,-0.036679949611425,0.028450300917029]],[[0.025441780686378,0.0026489922311157,-0.010990411043167],[-0.059643547981977,-0.11292168498039,-0.12857684493065],[-0.02192422375083,-0.12716390192509,0.10298542678356]],[[-0.06534743309021,0.045298270881176,0.1640260219574],[-0.1165796071291,-0.016946163028479,-0.021708361804485],[-0.11392816901207,-0.026972493156791,0.047292191535234]],[[0.0023673032410443,-0.11748402565718,-0.034812293946743],[0.10183439403772,0.015934998169541,0.035543922334909],[0.039043437689543,0.04791971296072,-0.06027739867568]],[[-0.11496036499739,-0.10584361851215,-0.095179073512554],[0.079119510948658,-0.0012983474880457,0.0097134495154023],[0.044982317835093,0.16644023358822,0.063631176948547]],[[0.13018652796745,-0.019266746938229,-0.10026577115059],[0.018628066405654,-0.022526197135448,-0.078059308230877],[0.085761018097401,0.0076392129994929,0.059807524085045]],[[-0.033864419907331,-0.061595421284437,-0.11072707176208],[0.040252320468426,-0.026019461452961,-0.0046322508715093],[0.043503452092409,0.010391732677817,-0.053191334009171]],[[-0.046688761562109,-0.070107243955135,-0.031121967360377],[-0.055403985083103,-0.025331608951092,-0.046720903366804],[-0.014581257477403,-0.042164452373981,0.019359258934855]],[[0.011390700936317,0.030100133270025,0.088182143867016],[-0.010132469236851,0.080237969756126,-0.0098689189180732],[-0.038768135011196,0.018337411805987,-0.0040363185107708]],[[0.01960588991642,-0.0087692262604833,-0.028102684766054],[0.10248177498579,0.12461429834366,0.026726791635156],[0.0089517785236239,-0.12380569428205,-0.056775610893965]],[[0.0050183311104774,-0.009174101985991,0.084369651973248],[-0.048825331032276,0.0046940133906901,0.056860812008381],[0.017845407128334,-0.041064620018005,-0.012399258092046]],[[-0.022915385663509,-0.11065909266472,0.10987248271704],[-0.012783212587237,-0.00079773523611948,0.083749920129776],[-0.003874747781083,-0.10055933892727,-0.04617452993989]],[[-0.090047806501389,-0.071664690971375,-0.018049636855721],[0.012178582139313,0.1536091119051,-0.12819312512875],[0.12499614804983,-0.0084016602486372,0.04758620634675]],[[0.08596259355545,0.0019542900845408,-0.095522992312908],[-0.0067465635947883,-0.011994582600892,-0.040836114436388],[0.0019638845697045,0.016265420243144,0.013207805342972]],[[-0.008329389616847,-0.067802488803864,-0.1031796336174],[-0.01321008708328,-0.1250081807375,0.043935034424067],[-0.041471488773823,0.12406945228577,0.017899807542562]],[[0.12165941298008,0.10676146298647,0.090343236923218],[0.073376215994358,0.052902698516846,0.019909508526325],[0.071213632822037,-0.046479091048241,0.032644309103489]],[[-0.084883950650692,-0.020061185583472,-0.023798927664757],[0.024909134954214,-0.071805357933044,-0.15246678888798],[-0.070472665131092,0.030000988394022,-0.2084464430809]],[[0.058228775858879,0.021441714838147,0.042822193354368],[-0.032821342349052,-0.0060846703127027,-0.0080872708931565],[0.025014398619533,0.1893947571516,0.064027301967144]],[[-0.051627025008202,0.022472951561213,-0.050695259124041],[0.01337266433984,-0.019781259819865,0.077912554144859],[0.091091170907021,0.032121937721968,-0.14739429950714]],[[-0.19159443676472,-0.1113688647747,-0.12151872366667],[0.076391480863094,0.10460520535707,-0.10768359154463],[0.04029892757535,-0.14693143963814,-0.021110059693456]],[[-0.050517499446869,-0.05303118750453,-0.0029572169296443],[0.010738091543317,0.0071070725098252,-0.035814255475998],[-0.057410936802626,-0.0054775876924396,-0.018324119970202]],[[0.048414506018162,-0.012084622867405,0.072926171123981],[-0.018039530143142,0.089020520448685,0.017212450504303],[0.032539620995522,0.0050623151473701,-0.10663741827011]]],[[[-0.013230589218438,-0.045713309198618,-0.044803474098444],[-0.011859086342156,0.10691899806261,0.044790808111429],[-0.024264015257359,0.003766133915633,-0.034933529794216]],[[0.072254590690136,0.042461384087801,-0.025079376995564],[-0.052976064383984,-0.079113058745861,-0.056482758373022],[-0.06703544408083,0.016288036480546,0.03691016882658]],[[-0.00140791607555,0.018459824845195,-0.021324148401618],[0.0062186312861741,-0.01558347325772,0.065162301063538],[-0.019838742911816,-0.0088610630482435,0.04430764913559]],[[0.027695167809725,0.0024873921647668,-0.074121452867985],[0.026004230603576,0.013222917914391,-0.035672727972269],[0.03959284350276,-0.039284076541662,0.011795673519373]],[[0.011385079473257,0.0053671044297516,0.044704202562571],[0.055879849940538,-0.074172407388687,0.0088649271056056],[0.041713457554579,-0.037579528987408,-0.0079881595447659]],[[0.0095891552045941,-0.015925841405988,-0.033479992300272],[0.034057319164276,-0.037313029170036,-0.026799492537975],[0.091590754687786,0.015715653076768,0.010462035425007]],[[-0.0065434798598289,0.01040871348232,-0.010080264881253],[0.062638252973557,-0.071493417024612,0.05106782540679],[-0.011651078239083,0.017911391332746,-0.013600526377559]],[[-0.056286223232746,0.0099420789629221,0.06483993679285],[-0.068537123501301,-0.063645049929619,0.028592137619853],[-0.013501165434718,-0.026521796360612,-0.026360997930169]],[[0.013200813904405,0.0298170465976,0.0048035057261586],[0.048613213002682,-0.043189432471991,-0.095457650721073],[0.024530239403248,0.033369112759829,-0.060545425862074]],[[0.043359875679016,0.019396828487515,0.061350014060736],[0.024157457053661,-0.011353526264429,-0.1032857298851],[0.089357018470764,-0.042901441454887,-0.074375115334988]],[[0.016528597101569,-0.016389392316341,-0.0094866016879678],[0.0049794907681644,0.047474060207605,0.042637839913368],[0.018705306574702,0.028660053387284,0.012371427379549]],[[0.13043415546417,0.069609746336937,0.002060430822894],[-0.043801989406347,0.0053462865762413,-0.029984660446644],[0.060247559100389,-0.02064978890121,-0.013673093169928]],[[-0.017006505280733,-0.050968274474144,-0.052421689033508],[-0.022676628082991,-0.056031160056591,0.010690415278077],[-0.0084962453693151,-0.023937026038766,0.052452970296144]],[[0.038843162357807,0.058538433164358,-0.019403634592891],[0.010859567672014,0.037080284208059,-0.031922657042742],[0.019354848191142,-0.02249744720757,0.0058149453252554]],[[-0.050298128277063,0.024700740352273,0.01979841850698],[0.0029835305176675,0.038452453911304,-0.067745245993137],[0.072349771857262,0.00083657162031159,0.0028617156203836]],[[-0.0049963938072324,0.012338427826762,0.061932422220707],[0.065139599144459,0.013771949335933,0.0090683866292238],[-0.016799287870526,-0.02338869869709,-0.020599933341146]],[[0.028780015185475,-0.053356856107712,-0.001013069995679],[-0.037600807845592,0.0092475516721606,0.0089680543169379],[0.038903329521418,0.027948819100857,0.025033924728632]],[[-0.027279673144221,0.022657012566924,0.058194238692522],[0.042132496833801,-0.022919420152903,-0.040184065699577],[-0.023860869929194,-0.011702503077686,-0.015048886649311]],[[0.036901298910379,-0.0083076981827617,-0.057059865444899],[0.036776222288609,0.045855935662985,-0.058851566165686],[-0.082402385771275,-0.020603474229574,0.010052889585495]],[[0.0024144134949893,0.0015464799944311,0.0090585248544812],[-0.029905114322901,0.048869356513023,-0.036267790943384],[0.062377754598856,-0.0096356850117445,-0.06213490664959]],[[-0.021848840638995,0.051792372018099,0.0054544718004763],[-0.020683024078608,-0.01071825157851,0.069682367146015],[0.02093212492764,-0.019907988607883,0.010297471657395]],[[-0.0079727070406079,-0.018576474860311,-0.027397045865655],[0.02193302847445,0.041051346808672,-0.0043757380917668],[0.052098888903856,-0.049034159630537,0.029733838513494]],[[0.00025328213814646,-0.052469119429588,-0.023662094026804],[-0.058428984135389,0.010062034241855,-0.025215327739716],[0.045879181474447,-0.026749646291137,-0.044734686613083]],[[0.01964059099555,-0.0036799069494009,0.014942867681384],[0.07550136744976,0.036178540438414,-0.054646134376526],[0.039983741939068,0.042236752808094,0.091888234019279]],[[-0.0034617327619344,-0.11533480882645,-0.029097950085998],[0.074195310473442,0.015984812751412,-0.048654392361641],[0.049000278115273,-0.0053887479007244,-0.016436133533716]],[[-0.049685578793287,0.065687999129295,0.011086591519415],[-0.023153342306614,0.02853231690824,-0.03298020362854],[-0.037107687443495,0.069782003760338,0.017977437004447]],[[0.0085635958239436,-0.036911137402058,0.032394833862782],[-0.01850326359272,-0.039374027401209,-0.049798626452684],[-0.0070384116843343,-0.039466295391321,0.018051780760288]],[[0.030378147959709,-0.026537740603089,0.027044197544456],[0.067925989627838,-0.043662071228027,0.064271621406078],[0.045682400465012,0.022712301462889,0.032433714717627]],[[0.028397107496858,-0.0047383420169353,0.034509763121605],[0.012211137451231,0.023089030757546,-0.011486776173115],[-0.069727391004562,0.024551579728723,-0.028893016278744]],[[0.044766623526812,0.044752355664968,-0.053758684545755],[-0.0035531399771571,0.063972942531109,0.044561050832272],[-0.020736088976264,0.0065548890270293,0.024492857977748]],[[-0.056109916418791,-0.011389574036002,0.015768447890878],[-0.0011765606468543,-0.013270330615342,0.036400429904461],[-0.0099717946723104,-0.0025919589679688,0.050037000328302]],[[-0.0048470222391188,-0.078331753611565,0.04552948102355],[0.040736507624388,-0.023979345336556,-0.0026671348605305],[0.012872373685241,-0.028599016368389,-0.020603721961379]],[[-0.10866896063089,-0.012711510062218,0.063782297074795],[-0.025994351133704,-0.0020647605415434,-0.0013912380672991],[0.069674119353294,0.076506480574608,0.027942486107349]],[[0.030978336930275,0.009876380674541,-0.039341364055872],[0.016512647271156,0.019582914188504,0.011908086948097],[-0.01683546602726,-0.047633334994316,0.042582575231791]],[[0.022858692333102,0.056362770497799,-0.045861463993788],[-0.022897446528077,-0.046022888273001,0.016095830127597],[-0.020179230719805,-0.014507615938783,0.016172906383872]],[[0.081792667508125,0.060295857489109,0.02450885809958],[0.033553142100573,0.017727956175804,-0.027107765898108],[-0.021317023783922,-0.016179002821445,-0.032984379678965]],[[0.043569024652243,-0.046958915889263,-0.042425952851772],[0.0307512357831,0.032591160386801,0.053354647010565],[0.046496659517288,-0.035374157130718,-0.070396676659584]],[[0.0034928938839585,-0.078258119523525,-0.042001388967037],[-0.0027476511895657,0.011918666772544,0.015200250782073],[0.02179210446775,0.0080197155475616,0.0013991417363286]],[[0.064025834202766,0.03744237869978,-0.04206520691514],[0.012161137536168,-0.042628407478333,-0.058110222220421],[-0.042410284280777,0.0027676105964929,0.043680906295776]],[[0.010861318558455,-0.0020237930584699,-0.0071603637188673],[-0.0038355011492968,-0.087142996490002,-0.054257988929749],[0.010560855269432,0.086877331137657,0.056576620787382]],[[0.0030609178356826,0.023109819740057,0.01433820463717],[0.025281470268965,0.01310230139643,0.0021442212164402],[0.015786219388247,-0.03185136243701,-0.039942670613527]],[[0.017484897747636,-0.0052703078836203,0.059137012809515],[0.084661491215229,0.0094295656308532,0.057095758616924],[-0.068368837237358,-0.010121203958988,0.026056874543428]],[[-0.03678072988987,-0.051538918167353,0.039754062891006],[-0.027580240741372,0.0057881409302354,0.011154561303556],[0.014772676862776,0.084853209555149,0.042912501841784]],[[0.0056199762038887,0.026339519768953,0.0045430287718773],[0.0023247238714248,-0.10584261268377,-0.048407766968012],[-0.025936774909496,0.064300246536732,-0.069713972508907]],[[0.070735417306423,-0.035431608557701,-0.0051151714287698],[-0.0039624371565878,-0.032536890357733,-0.020459473133087],[0.066944628953934,-0.028461622074246,0.0491110868752]],[[0.059106092900038,0.055824622511864,-0.07563366740942],[0.019135199487209,-0.016235873103142,-0.053364027291536],[0.044781375676394,0.00018466560868546,0.01193046476692]],[[0.042175732553005,0.021318102255464,-0.031248811632395],[-0.068286933004856,-0.044857542961836,0.034540507942438],[0.068823330104351,-0.0085603427141905,0.035716820508242]],[[-0.0063335979357362,-0.056933503597975,-0.042477760463953],[-0.0073407650925219,-0.052168056368828,-0.021445654332638],[-0.014700781553984,0.080778725445271,0.031147954985499]],[[-0.024230867624283,0.096228636801243,-0.027768548578024],[-0.019700294360518,-0.026872437447309,-0.0020254696719348],[-0.068835720419884,-0.030002407729626,-0.023034565150738]],[[0.0065376749262214,-0.012492557056248,0.05164648219943],[0.015376162715256,-0.0083722658455372,0.013324773870409],[-0.039955206215382,0.006242688279599,-0.04502185434103]],[[0.086587101221085,-0.087466798722744,-0.039178337901831],[-0.024338012561202,-0.035275466740131,-0.018732938915491],[0.096788056194782,-0.057332389056683,0.046992138028145]],[[0.010765042155981,0.03123950958252,-0.030710531398654],[-0.053094912320375,0.046007171273232,0.076646916568279],[0.012349063530564,-0.0065533774904907,0.032070267945528]],[[0.027552481740713,-0.10701711475849,-0.042090255767107],[-0.079195506870747,-0.081442438066006,-0.0017641945742071],[-0.051218423992395,-0.04869170486927,0.030778296291828]],[[0.0044480310752988,0.090124078094959,0.057103093713522],[-0.010796912014484,0.00049056217540056,0.15430560708046],[-0.020006164908409,-0.0305055975914,0.032925367355347]],[[-0.055232219398022,-0.05298650637269,-0.010519050993025],[0.019584152847528,0.015410742722452,0.062634713947773],[-0.021726164966822,0.0050380891188979,-0.07131065428257]],[[0.033681876957417,0.024937823414803,0.058851968497038],[-0.0035358888562769,-0.024383872747421,0.040304701775312],[-0.10388714820147,-0.039479836821556,-0.061639957129955]],[[0.049536682665348,-0.079659089446068,-0.0061374353244901],[-0.050350695848465,0.052964836359024,-0.010769275948405],[0.074647597968578,0.021678168326616,-0.035952042788267]],[[-0.060254629701376,0.09330765157938,0.082734607160091],[0.020261397585273,0.057039178907871,0.071769237518311],[-0.055519416928291,0.0098717221990228,-0.027065703645349]],[[0.065702766180038,0.067868143320084,0.042072810232639],[-0.018770571798086,-0.069503977894783,-0.05087860673666],[0.052602905780077,-0.0080208955332637,-0.00043104391079396]],[[0.039273101836443,0.039680887013674,-0.05652067065239],[0.053493112325668,-0.018460227176547,0.049037471413612],[0.035035394132137,-0.054466966539621,-0.058955293148756]],[[0.050669848918915,0.059863574802876,0.063840568065643],[-0.075750768184662,0.038090411573648,0.030538285151124],[0.08870542794466,-0.06104264035821,-0.059681005775928]],[[-0.0082778548821807,0.068915069103241,0.084432430565357],[-0.015403135679662,0.011563062667847,-0.044017974287271],[0.010640523396432,0.035020969808102,-0.12074208259583]],[[-0.033765781670809,-0.073803447186947,0.033971980214119],[0.017418067902327,-0.044289890676737,0.047124050557613],[-0.0068394681438804,0.065874628722668,0.036842245608568]],[[0.0033666535746306,0.006909841671586,-0.006491469219327],[-0.035353668034077,0.0342753008008,-0.019962972030044],[-0.08022103458643,0.033450476825237,0.056174870580435]],[[-0.00080290867481381,0.094588421285152,0.016928944736719],[0.03727450594306,-0.0019915569573641,0.0068442835472524],[0.00080369965871796,-0.026005445048213,0.0029438198544085]],[[0.022997884079814,-0.0081061236560345,0.030425937846303],[-0.058383516967297,0.010304652154446,-0.027517786249518],[0.051761522889137,-0.057077724486589,0.048806663602591]],[[0.018979633226991,0.061240021139383,-0.05786370113492],[0.0079723559319973,-0.10742636024952,0.045323017984629],[0.071713969111443,-0.0058182240463793,0.026106620207429]],[[0.036559693515301,-0.02184746414423,0.05467401444912],[0.055796708911657,0.045010548084974,-0.052217107266188],[0.023047629743814,0.012106248177588,-0.022166505455971]],[[-0.012580710463226,-0.00081980146933347,-0.0020808456465602],[0.022221183404326,0.041031528264284,0.023890413343906],[-0.031404834240675,-0.0021272986195982,-0.074761651456356]],[[-0.021714404225349,0.024861743673682,0.0061768619343638],[0.078947141766548,0.050416581332684,0.039643820375204],[0.012906258925796,-0.0043602795340121,0.045481480658054]],[[-0.0085776606574655,-0.016320547088981,0.00073245266685262],[0.028661666437984,0.03176149725914,-0.056620333343744],[-0.016743345186114,0.11742559820414,-0.069514103233814]],[[-0.04477072134614,0.035059429705143,-0.034306913614273],[-0.061197951436043,0.042852379381657,0.0036546268966049],[0.056267391890287,0.013383004814386,0.042927235364914]],[[0.051057811826468,-0.0084379436448216,0.021336928009987],[0.021905353292823,-0.023711707442999,0.036439638584852],[-0.08262387663126,0.031977329403162,0.029375901445746]],[[-0.004734814632684,0.001407221192494,0.0084315687417984],[-0.036641620099545,0.050063285976648,-0.011259270831943],[0.027677752077579,0.016805317252874,-0.056669291108847]],[[-0.010051442310214,-0.052607960999012,-0.041690438985825],[0.065459556877613,0.030004316940904,0.041041761636734],[0.058412037789822,0.056271594017744,-0.045313511043787]],[[-0.0082127507776022,0.033905204385519,-0.0031428772490472],[0.0036279065534472,0.032446309924126,0.0051658418960869],[-0.047893472015858,0.012227240949869,0.0027193734422326]],[[-0.014532052911818,-0.0072816866450012,0.018852466717362],[0.017907202243805,-0.021798342466354,-0.01871389336884],[-0.0093967197462916,-0.0076750875450671,0.064759723842144]],[[0.0069343359209597,-0.0003163461224176,0.047380208969116],[-0.084595903754234,-0.0014077569358051,-0.056952301412821],[0.018536888062954,-0.017194705083966,-0.0037085206713527]],[[-0.029463533312082,0.062412682920694,0.07168447971344],[-0.064980179071426,0.031950455158949,0.013007891364396],[-0.023465445265174,0.051716074347496,-0.0044433958828449]],[[-0.031532514840364,0.014863289892673,0.076160706579685],[0.026018748059869,0.036938793957233,0.0014231159584597],[-0.01325932238251,0.045550737529993,0.0055472045205534]],[[0.003132690442726,0.016810672357678,0.053153481334448],[-0.067590326070786,0.020902907475829,0.038585100322962],[-0.011191487312317,-0.10313679277897,0.031155189499259]],[[0.0091696735471487,0.0024005961604416,-0.0019568358547986],[0.018675945699215,-0.11571624875069,0.0044480450451374],[0.056051172316074,0.02195462025702,-0.078254222869873]],[[-0.031757544726133,0.042056333273649,-0.028690569102764],[0.023018561303616,-0.025369958952069,-0.053508166223764],[-0.026909390464425,-0.023523829877377,0.074605874717236]],[[-0.003414788050577,0.0072998758405447,0.020186534151435],[0.023220149800181,0.027822250500321,0.076367944478989],[-0.063722416758537,-0.082551553845406,0.051868505775928]],[[-0.071577735245228,-0.01763179898262,0.083758600056171],[0.00082432059571147,0.015016074292362,-0.026497231796384],[-0.068200342357159,0.045458164066076,0.0061745289713144]],[[-0.010953916236758,0.029740585014224,0.054463610053062],[0.0097914859652519,0.020423647016287,-0.044811327010393],[-0.0043074223212898,0.076386198401451,0.011067501269281]],[[0.077177368104458,-0.027170864865184,-0.017979616299272],[-0.070637598633766,-0.050006367266178,-0.016659328714013],[0.044326573610306,-0.029559629037976,0.060936883091927]],[[0.0058620199561119,0.0035464451648295,0.029044084250927],[-0.0024567532818764,0.028790405020118,-0.016891233623028],[0.018249716609716,0.047183379530907,-0.014754471369088]],[[0.021768048405647,-0.10986345261335,-0.0056236651726067],[0.069642104208469,0.0023515848442912,0.0059012048877776],[0.045317344367504,0.046759508550167,-0.056579612195492]],[[-0.0014463511761278,0.019854929298162,-0.012955140322447],[-0.065369084477425,0.055094294250011,0.091263666749001],[-0.017732515931129,0.064341373741627,-0.054526526480913]],[[-0.00092266709543765,0.017054814845324,0.020159758627415],[0.037696685642004,0.024870909750462,-0.025581954047084],[0.018640417605639,-0.065541155636311,-0.073506735265255]],[[-0.010197681374848,-0.030395412817597,-0.0074793361127377],[0.013398101553321,-0.025533478707075,-0.047670934349298],[-0.038646150380373,0.01854757219553,0.022985095158219]],[[-0.007358297239989,-0.0074788937345147,0.057719681411982],[-0.076479740440845,0.049762241542339,-0.036003831773996],[-0.077284902334213,0.037883501499891,-0.012598394416273]],[[-0.048612479120493,-0.023226423189044,-0.026695163920522],[-0.052124623209238,0.074043899774551,-0.013334806077182],[0.019702767953277,-0.021631443873048,0.021779479458928]],[[0.016351485624909,-0.022997600957751,0.053526885807514],[0.041995447129011,0.024323537945747,-0.0039181909523904],[-0.014474788680673,0.058562017977238,-0.040172286331654]],[[0.070171363651752,0.013026714324951,-0.005291863810271],[-0.023998750373721,-0.069635115563869,-0.021030219271779],[-0.047978933900595,0.056251034140587,-0.013843500986695]],[[0.03044687025249,0.0017166758188978,-0.009184037335217],[0.043378561735153,-0.021135775372386,0.077052287757397],[0.017104556784034,0.0092386184260249,0.015440043061972]],[[-0.024312626570463,-0.0034728518221527,0.0043379385024309],[-0.044984854757786,-0.0069058015942574,0.026050368323922],[0.088785201311111,-0.025967970490456,-0.027081614360213]],[[0.0441042073071,-0.042111188173294,0.047802362591028],[0.028427923098207,-0.08640693128109,-0.019533276557922],[0.047992117702961,0.0087341712787747,-0.017859404906631]],[[-0.01723543740809,0.078634731471539,-0.037476982921362],[-0.09092128276825,-0.0046111596748233,-0.0033482883591205],[0.027344217523932,0.032095231115818,-0.042426079511642]],[[-0.022340223193169,0.040270421653986,-0.023813823238015],[0.062690265476704,0.018094521015882,-0.00256133149378],[0.022342635318637,-0.047143720090389,0.00089223810937256]],[[-0.0047154230996966,0.030650233849883,-0.038500182330608],[0.046927094459534,-0.034433741122484,0.027857651934028],[-0.010314230807126,-0.020812727510929,-0.072639338672161]],[[0.016578897833824,0.029855789616704,0.032876893877983],[0.030179915949702,0.026674207299948,-0.056893784552813],[-0.034658964723349,0.047460194677114,0.01801860332489]],[[0.071012943983078,0.025462161749601,0.037786554545164],[-0.041385442018509,-0.0078813889995217,-0.070350110530853],[0.018088957294822,-0.036219984292984,-0.002752329222858]],[[-0.059129245579243,0.022993663325906,-0.0031112118158489],[0.0089556537568569,0.061071965843439,0.016225600615144],[-0.059094097465277,0.041706304997206,0.053244270384312]],[[-0.017263039946556,0.0041454695165157,-0.021841669455171],[0.041408117860556,0.0092209419235587,0.011586570180953],[0.035125244408846,0.011937708593905,0.067935563623905]],[[0.034152906388044,0.027995623648167,-0.01691547781229],[-0.050336591899395,0.082789778709412,-0.0026133335195482],[-0.021006921306252,0.023883854970336,-0.0066719767637551]],[[0.00028405478224158,0.024056049063802,-0.00028471631230786],[0.035227939486504,0.057739190757275,-0.0027670359704643],[-0.095550306141376,-0.033092446625233,-0.029952973127365]],[[-0.024223232641816,-0.050855848938227,-0.0062993061728776],[-0.029968656599522,-0.017413515597582,0.048445917665958],[0.01975279673934,-0.043899018317461,-0.0088549060747027]],[[-0.029021225869656,0.0084480624645948,0.013411902822554],[-0.040796756744385,-0.047451201826334,0.048513658344746],[-0.021109856665134,0.027105029672384,-0.0074684014543891]],[[0.022798877209425,-0.020432310178876,0.075216248631477],[-0.010261369869113,0.077967002987862,0.045316938310862],[0.010530821979046,0.044208232313395,0.011433239094913]],[[-0.045490961521864,0.0107585741207,0.044356051832438],[0.05714076012373,-0.023895084857941,0.057221632450819],[-0.030579682439566,0.017273740842938,0.10358212143183]],[[0.035125724971294,-0.015618599019945,0.048750448971987],[0.10407442599535,0.00066237588180229,-0.058237515389919],[-0.007883932441473,-0.0026822150684893,0.026052337139845]],[[0.02155171148479,-0.050070509314537,-0.041666872799397],[-0.090754978358746,0.011225966736674,0.0058417278341949],[-0.0013294697273523,-0.011647635139525,0.037036187946796]],[[-0.067317269742489,0.02731985040009,-0.062601506710052],[-0.011143476702273,0.09081144630909,-0.029405197128654],[-0.049311269074678,0.025513205677271,0.006040901876986]],[[0.055689986795187,0.026354473084211,0.016549604013562],[-0.00040450046071783,-0.016641827300191,0.040515206754208],[-0.039469435811043,-0.022093005478382,0.017526250332594]],[[0.075741156935692,0.086916990578175,-0.027829580008984],[-0.034646719694138,-0.062878333032131,-0.030757319182158],[-0.034089736640453,-0.01013127155602,0.004256731364876]],[[-0.031395215541124,-0.022464249283075,0.00048388380673714],[0.0097928727045655,-0.006114799529314,-0.019142853096128],[-0.028601098805666,0.046473693102598,-0.030473560094833]],[[-0.025369770824909,-0.070645272731781,0.014713637530804],[0.03208314627409,0.018298549577594,0.11832156777382],[0.029483731836081,-0.05742896348238,0.0092528350651264]],[[-0.022425945848227,0.035205356776714,0.028435125946999],[0.0056502125225961,0.041934844106436,0.043298035860062],[0.025684809312224,-0.0058220173232257,-0.080054633319378]],[[0.065665222704411,-0.0036209288518876,-0.048029035329819],[0.012528464198112,0.0053866025991738,-0.04501223936677],[-0.087492667138577,-0.0082818036898971,-0.064631029963493]],[[0.022140899673104,-0.01400138437748,-0.073853939771652],[0.050560083240271,0.052454743534327,0.03505302220583],[-0.00081570295151323,0.097514867782593,0.062848389148712]],[[-0.0040435241535306,-0.0046212389133871,0.013800271786749],[0.01237247698009,0.024525569751859,0.036578230559826],[-0.0019693623762578,0.06434428691864,0.03367655351758]],[[0.012137735262513,0.0017153945518658,0.079672962427139],[0.020729266107082,-0.024780245497823,0.029592530801892],[0.0054128915071487,0.0032886050175875,-0.0066922968253493]],[[-0.001471588620916,0.036828052252531,0.007877629250288],[-0.023358941078186,0.002742437645793,-0.046860381960869],[0.11345706880093,-0.051939345896244,0.051656119525433]],[[-0.011639256961644,-0.049659017473459,-0.010457145981491],[0.0015369364991784,-0.11476481705904,-0.045397102832794],[0.046311818063259,-0.071021504700184,0.027741214260459]],[[-0.072306841611862,0.0037954864092171,0.0056779026053846],[0.017361974343657,-0.082652486860752,0.032429568469524],[-0.019481735303998,-0.029863642528653,0.016294905915856]],[[-0.079610675573349,-0.071476444602013,0.038981355726719],[-0.079950556159019,0.059590838849545,0.04137122258544],[0.030265407636762,-0.043925441801548,-0.097769245505333]]],[[[0.056864973157644,-0.10237057507038,-0.23353934288025],[0.13404336571693,-0.044831786304712,-0.16033884882927],[0.22948907315731,0.016573650762439,-0.29803162813187]],[[0.034890413284302,0.12268293648958,-0.0063027287833393],[-0.19498543441296,0.0045059924013913,0.014393736608326],[-0.21146187186241,0.083285756409168,0.1285312473774]],[[0.10355357080698,-0.012540682218969,-0.014574171975255],[0.044450234621763,0.21224477887154,0.16074119508266],[-0.031904306262732,-0.0052436990663409,0.22636835277081]],[[-0.061126347631216,-0.25637894868851,0.14107689261436],[-0.042039681226015,-0.2261111587286,-0.13040751218796],[-0.0095364451408386,-0.32985210418701,-0.044490572065115]],[[-0.028758449479938,-0.14858250319958,-0.087338455021381],[0.17810858786106,0.14068232476711,-0.008119547739625],[0.17472697794437,-0.0027662876527756,0.03802152723074]],[[-0.057687748223543,0.015722157433629,-0.11399612575769],[-0.0092717753723264,-0.10386177152395,-0.091811448335648],[0.031245093792677,-0.007848315872252,-0.1778474599123]],[[0.088665828108788,0.15431103110313,-0.13897687196732],[0.15364600718021,-0.0080686938017607,-0.0086322603747249],[0.029664380475879,0.077646307647228,-0.0038465852849185]],[[-0.044166687875986,-0.056614093482494,0.010688671842217],[0.17740966379642,-0.059109028428793,0.19154298305511],[0.055772498250008,-0.21956008672714,0.10597309470177]],[[-0.23648507893085,0.065152399241924,-0.14637321233749],[0.14196988940239,-0.074715577065945,-0.044152561575174],[0.15261641144753,-0.059356436133385,-0.1892989128828]],[[-0.059235751628876,-0.15272875130177,0.34856387972832],[-0.021263090893626,-0.13663321733475,0.24896505475044],[-0.17374166846275,-0.14774338901043,0.099471747875214]],[[0.018529001623392,-0.042314238846302,-0.10739448666573],[-0.099883884191513,0.029435554519296,0.071929089725018],[-0.11120339483023,-0.037053558975458,0.25658357143402]],[[0.051969978958368,-0.11498790979385,-0.090088471770287],[0.030938057228923,-0.078018009662628,0.19034068286419],[-0.021146200597286,0.11138395220041,0.11521320790052]],[[-0.045409932732582,0.016575656831264,0.07160060107708],[-0.094422474503517,-0.095103286206722,-0.042785186320543],[-0.048240326344967,-0.010302768088877,0.022084478288889]],[[-0.067643478512764,-0.133320748806,0.10086570680141],[0.0072970842011273,0.017818393185735,-0.069655075669289],[0.0060104695148766,0.035156402736902,-0.030692543834448]],[[-0.094730392098427,-0.035347953438759,0.02611256018281],[-0.33762395381927,0.013639571145177,0.17646326124668],[-0.12239165604115,-0.049607936292887,0.071951918303967]],[[-0.0038535168860108,-0.056322522461414,-0.039637494832277],[0.021024921908975,-0.13305112719536,0.04794729501009],[0.0076749646104872,-0.27071160078049,0.015740288421512]],[[-0.13616114854813,-0.053966250270605,0.049168892204762],[-0.15583674609661,-0.17029617726803,0.10358321666718],[0.019295051693916,-0.060369569808245,0.1783479899168]],[[0.17204396426678,0.020868601277471,0.029854172840714],[0.073175579309464,0.0036559426225722,-0.08512844145298],[-0.10012805461884,0.042373903095722,-0.0024642837233841]],[[0.13596002757549,-0.21798503398895,0.19293355941772],[0.12273373454809,-0.078226432204247,-0.092250347137451],[0.13077552616596,-0.0096030831336975,0.053038500249386]],[[0.054684720933437,-0.11762508004904,0.11340797692537],[0.18445257842541,0.028585374355316,0.11992778629065],[0.030876357108355,0.12200126796961,0.058431062847376]],[[-0.14436058700085,0.078124113380909,-0.080543033778667],[-0.26905718445778,-0.17799364030361,0.14376385509968],[-0.20453368127346,-0.079465173184872,0.02273609675467]],[[0.1040995195508,0.039899859577417,0.064841881394386],[-0.055227782577276,0.032111175358295,-0.0057345726527274],[-0.080446846783161,-0.12080805748701,-0.084476158022881]],[[0.16298589110374,-0.20598839223385,0.15156832337379],[0.062886945903301,-0.077316388487816,-0.020145755261183],[0.028871806338429,0.0066605685278773,0.0097715277224779]],[[0.021787993609905,-0.16449330747128,-0.10695917904377],[-0.11527391523123,-0.072201497852802,-0.14308515191078],[0.012968689203262,-0.051609981805086,-0.25980147719383]],[[-0.071215286850929,-0.12471664696932,0.032807610929012],[-0.016351774334908,-0.057774044573307,0.13363553583622],[0.12317889928818,0.056862477213144,0.035088438540697]],[[0.013708321377635,-0.011214413680136,0.29146862030029],[0.053718384355307,-0.12378443777561,-0.05013582110405],[0.084493301808834,-0.021281247958541,-0.33721780776978]],[[-0.13637273013592,-0.054881196469069,-0.068389765918255],[-0.067515499889851,-0.0068756877444685,0.004105981439352],[-0.02902708761394,0.17978863418102,-0.082831308245659]],[[-0.17520269751549,0.12778057157993,-0.038097184151411],[-0.041179325431585,0.10711689293385,-0.14502537250519],[0.022105645388365,0.11404424160719,0.16808122396469]],[[-0.098316058516502,-0.0060373367741704,0.058351561427116],[-0.16123370826244,0.037194646894932,0.086461625993252],[0.085761941969395,-0.079762153327465,0.00010833042324521]],[[0.061695318669081,-0.02235291339457,0.10727847367525],[0.10402707010508,-0.1450881510973,-0.072706557810307],[0.20018242299557,-0.11088456213474,-0.14447802305222]],[[-0.17087088525295,0.023333538323641,0.15417155623436],[-0.043410740792751,0.10101364552975,-0.069376394152641],[0.099490784108639,-0.014935899525881,-0.12071532011032]],[[0.062938310205936,-0.096470952033997,-0.025734342634678],[0.22001655399799,-0.2682640850544,-0.17682941257954],[0.22609789669514,0.028535114601254,-0.080838263034821]],[[-0.027178129181266,-0.014069323427975,-0.092279456555843],[0.041470136493444,-0.037141434848309,-0.0085511682555079],[-0.044471345841885,0.016094041988254,0.08745688945055]],[[-0.12309786677361,0.011404419317842,-0.070294104516506],[-0.19661583006382,-0.14173470437527,-0.14772894978523],[-0.07439149916172,0.044718757271767,0.12531293928623]],[[-0.091466754674911,0.069072932004929,0.084809973835945],[-0.1548086553812,0.042975548654795,-0.036478020250797],[-0.0097102439031005,0.073563449084759,0.017646059393883]],[[-0.19241663813591,-0.16311876475811,0.012192738242447],[-0.25808715820312,-0.083585716784,-0.097741797566414],[-0.21599669754505,0.016553957015276,0.016657885164022]],[[-0.1149377822876,-0.059693209826946,0.02179098315537],[-0.067250214517117,-0.16417779028416,0.2030808031559],[-0.23310296237469,0.0017433853354305,0.12441850453615]],[[-0.1048908829689,0.048233341425657,-0.10417803376913],[0.07271932810545,0.13994689285755,0.019084934145212],[0.10424529016018,-0.070340760052204,0.091527923941612]],[[0.10030556470156,0.067903123795986,-0.20148968696594],[0.036168482154608,-0.14948591589928,0.029328644275665],[0.22715276479721,-0.10824601352215,-0.059491865336895]],[[0.06245806068182,-0.14596059918404,-0.037408854812384],[0.11683061718941,-0.11201656609774,-0.25162941217422],[0.039212670177221,-0.023578656837344,-0.063598871231079]],[[-0.0096449386328459,0.0071003846824169,0.18276014924049],[0.045278567820787,-0.0015956655843183,-0.014630206860602],[-0.081924423575401,0.051198441535234,0.17000058293343]],[[0.1624948233366,0.063158512115479,0.16829612851143],[0.22975912690163,0.078086100518703,0.27657827734947],[0.07476069778204,0.13861657679081,0.30481716990471]],[[-0.017267167568207,-0.10376363247633,0.0023167449980974],[-0.1029756218195,0.011147392913699,-0.068036764860153],[-0.12827110290527,-0.16164723038673,-0.050730247050524]],[[-0.067248411476612,0.094213157892227,-0.018266752362251],[-0.19825881719589,0.13252891600132,-0.074785843491554],[-0.092938639223576,0.12535305321217,-0.059093873947859]],[[0.19138814508915,0.091354489326477,-0.12547248601913],[-0.04198918864131,-0.080286681652069,0.010727484710515],[0.10899244248867,-0.081039629876614,-0.01895915158093]],[[-0.2373653948307,0.20991033315659,-0.25715455412865],[-0.050309173762798,-0.081693314015865,0.076070234179497],[0.10401468724012,-0.017275022342801,0.073057532310486]],[[-0.088052928447723,0.027908340096474,0.25457382202148],[0.014832518063486,-0.13909062743187,0.23182910680771],[0.043607335537672,-0.073777250945568,0.049736954271793]],[[-0.018573703244328,-0.11067774146795,-0.27805694937706],[0.034216970205307,0.092899978160858,-0.050141960382462],[0.01773508451879,0.17908829450607,-0.064988024532795]],[[0.027997635304928,-0.23439635336399,0.19924916327],[0.019918559119105,-0.021537130698562,0.064084030687809],[-0.010489950887859,-0.021734580397606,0.00016561204392929]],[[-0.15343579649925,-0.18863318860531,0.074380747973919],[-0.12670758366585,0.022295594215393,0.077627293765545],[0.01386409625411,0.019650565460324,-0.14361111819744]],[[-0.064776949584484,-0.11050079762936,-0.22546343505383],[-0.029735302552581,-0.04658655077219,-0.086048297584057],[-0.11726229637861,0.127895206213,-0.034700151532888]],[[-0.13203428685665,0.075978271663189,-0.0032752731349319],[0.051666136831045,0.0068285944871604,0.0735028013587],[0.027936842292547,-0.089134849607944,-0.052621006965637]],[[0.099338449537754,0.089587591588497,-0.10114049166441],[-0.12422127276659,0.11220378428698,-0.049116648733616],[-0.19058763980865,0.10128450393677,-0.054318021982908]],[[0.09896245598793,-0.028113374486566,-0.10399655997753],[0.22421564161777,0.11643848568201,0.076844498515129],[0.10428164899349,0.024515621364117,0.15784803032875]],[[0.066342532634735,-0.10563381016254,-0.11834762245417],[0.077834077179432,-0.072230778634548,0.027009250596166],[-0.037464872002602,0.013136460445821,-0.041160076856613]],[[-0.13570809364319,0.059807367622852,-0.050485156476498],[-0.094340041279793,-0.17612433433533,0.099208123981953],[0.017359858378768,-0.0012197790201753,-0.056165918707848]],[[-0.10100837796926,0.18067996203899,0.078638285398483],[-0.076597042381763,0.04976162686944,0.013336063362658],[-0.14184050261974,-0.010408005677164,0.06255067884922]],[[-0.15918734669685,0.059460166841745,-0.13330714404583],[-0.15910495817661,-0.062561862170696,-0.22639386355877],[-0.14080272614956,0.049337849020958,-0.012724151834846]],[[-0.035799916833639,-0.052256178110838,0.18980319797993],[-0.019596662372351,-0.0098832324147224,0.20032635331154],[-0.036163844168186,-0.053715799003839,0.079922176897526]],[[0.067112781107426,0.030246591195464,0.222835034132],[0.12869335711002,-0.024049708619714,0.036692313849926],[0.10462738573551,-0.03884195163846,0.015209742821753]],[[-0.0080241896212101,0.038789849728346,0.0001738586142892],[-0.062329184263945,-0.029104279354215,-0.035078670829535],[-0.10584457963705,-0.064543940126896,0.11258988082409]],[[0.053205873817205,-0.16774010658264,-0.085862554609776],[-0.10903875529766,-0.24881716072559,0.070881851017475],[-0.10646942257881,-0.131677120924,-0.067815892398357]],[[0.11368859559298,-0.046331640332937,0.14059384167194],[0.08687836676836,0.022183297201991,-0.0075209531933069],[-0.037648350000381,-0.03693363815546,0.086532294750214]],[[-0.068904712796211,0.023988753557205,-0.14472265541553],[-0.014313950203359,0.059089802205563,-0.042393460869789],[-0.018171640112996,0.14194218814373,0.044636938720942]],[[-0.023154702037573,-0.10852634161711,0.17982706427574],[-0.042998671531677,-0.10260451585054,0.11189007759094],[0.038865935057402,-0.083604268729687,-0.028243666514754]],[[-0.065277136862278,0.079209625720978,0.34884735941887],[0.049006588757038,0.15908925235271,0.06013747677207],[-0.086949221789837,0.1484851539135,-0.15259720385075]],[[0.084715619683266,0.022097684442997,-0.093605414032936],[-0.087414339184761,0.03377677872777,0.045371439307928],[-0.11170860379934,-0.08673594892025,0.063555993139744]],[[-0.020056381821632,-0.11998629570007,0.3169130384922],[-0.14419098198414,0.057982861995697,-0.094644755125046],[-0.30994924902916,0.080497808754444,-0.17472092807293]],[[-0.017100574448705,-0.12652468681335,-0.15610101819038],[-0.072004452347755,-0.10381657630205,-0.039792973548174],[-0.063069574534893,0.1347721517086,0.10317591577768]],[[0.1431774944067,0.051992673426867,-0.091046825051308],[0.0059691066853702,0.12398460507393,0.023972375318408],[-0.092135265469551,0.11441147327423,-0.14686997234821]],[[-0.090217724442482,0.083140045404434,0.25304904580116],[0.16211761534214,0.056892484426498,-0.23665671050549],[-0.14751373231411,-0.0064390255138278,0.14661946892738]],[[-0.027640543878078,-0.12177864462137,-0.065896801650524],[0.007630864623934,-0.051334779709578,0.029483994469047],[0.023008508607745,-0.061603907495737,-0.034934937953949]],[[-0.082299523055553,-0.27801755070686,-0.16561712324619],[-0.32990077137947,-0.16440246999264,0.14649325609207],[-0.38604566454887,-0.27558517456055,0.044940121471882]],[[0.22849906980991,-0.093505933880806,-0.040561951696873],[-0.028113543987274,-0.07132812589407,-0.096313573420048],[0.00037271928158589,-0.21723045408726,-0.14503706991673]],[[-0.19209751486778,0.043388072401285,0.32883358001709],[-0.19365456700325,-0.099270448088646,0.29456639289856],[-0.060414701700211,0.088804446160793,0.098168291151524]],[[-0.022556668147445,-0.15769736468792,-0.17398345470428],[0.052042677998543,0.056867755949497,-0.11476700007915],[-0.076976709067822,0.1225798279047,-0.27173247933388]],[[0.095707461237907,-0.0051070447079837,-0.14175501465797],[-0.022375980392098,0.11199331283569,-0.18596011400223],[-0.072251707315445,-0.024183642119169,-0.111447699368]],[[-0.074099764227867,0.072157338261604,0.13422486186028],[0.075446791946888,-0.10987811535597,0.23408392071724],[0.12830628454685,-0.17703078687191,0.22320705652237]],[[-0.083943240344524,-0.030547197908163,-0.01442155521363],[-0.042392775416374,-0.013800664804876,0.0084659866988659],[0.076280735433102,0.097004607319832,0.24928234517574]],[[0.0031483059283346,-0.14103062450886,-0.20986123383045],[-0.08634290099144,-0.19268278777599,-0.12194728851318],[-0.1361158490181,0.012681992724538,-0.063039347529411]],[[0.051815096288919,-0.1015807017684,-0.050518993288279],[0.09804467856884,-0.084548629820347,-0.074861407279968],[0.034124657511711,0.074796803295612,-0.13611218333244]],[[-0.054686322808266,0.14777719974518,0.11416586488485],[-0.096204027533531,-0.092752151191235,0.11188973486423],[0.042663816362619,-0.11518838256598,0.074835285544395]],[[-0.13074767589569,0.18717662990093,-0.10177717357874],[-0.036513034254313,0.11491694301367,0.10842078924179],[0.094542004168034,0.095683932304382,0.0053682350553572]],[[-0.1484035551548,-0.1340204179287,-0.071855142712593],[-0.070567362010479,-0.14706778526306,-0.045998629182577],[-0.20284426212311,-0.21117120981216,-0.013824794441462]],[[-0.10397680848837,0.061442688107491,-0.058173794299364],[-0.018381278961897,0.077615596354008,0.1054757386446],[-0.061356335878372,0.078689217567444,0.12382901459932]],[[-0.15520168840885,-0.094101808965206,-0.0013107055565342],[-0.10373265296221,-0.073552496731281,0.23982693254948],[0.025214793160558,0.1369923055172,0.071690991520882]],[[0.073504537343979,0.077338367700577,0.12731209397316],[0.042980521917343,-0.033876225352287,0.13247326016426],[-0.02698901668191,-0.082619875669479,0.06653755158186]],[[-0.10252872109413,-0.21497942507267,0.21875122189522],[0.033898383378983,0.0050664166919887,0.31300443410873],[0.19956110417843,-0.12467316538095,0.12883915007114]],[[0.27439421415329,-0.025602217763662,0.017746355384588],[0.045753553509712,-0.043831773102283,0.074422210454941],[0.095773994922638,0.020988481119275,0.01830237545073]],[[0.10514214634895,0.11075307428837,0.14866836369038],[-0.07086043804884,0.11666792631149,-0.033037360757589],[0.09068413823843,0.13964508473873,-0.10855170339346]],[[0.027487026527524,0.016288682818413,0.027220040559769],[0.00033314723987132,0.027724649757147,0.12970671057701],[-0.053851041942835,0.017732815816998,0.045714251697063]],[[0.02051349170506,-0.049826361238956,-0.17004919052124],[0.071360029280186,-0.14693364500999,0.077213406562805],[0.038350179791451,0.11072570085526,0.14953255653381]],[[0.052620831876993,-0.1214343085885,-0.08793181926012],[0.10824481397867,-0.057951625436544,0.072655364871025],[0.086449764668941,0.17228372395039,0.15317909419537]],[[0.064241282641888,0.21410542726517,-0.26546064019203],[-0.041912067681551,0.00044885926763527,-0.15777459740639],[-0.065850779414177,-0.068599350750446,0.12062243372202]],[[-0.044714402407408,-0.087134599685669,-0.098743081092834],[0.10900657624006,-0.030961150303483,-0.065432973206043],[-0.10144813358784,0.082007691264153,-0.11010146141052]],[[-0.074055925011635,0.17971913516521,-0.15947118401527],[-0.06077167391777,0.13211639225483,-0.14158700406551],[0.0020925798453391,-0.048080265522003,0.26467221975327]],[[0.048427887260914,0.063670910894871,0.0088212238624692],[-0.039642043411732,0.027840910479426,-0.11290070414543],[-0.012816619127989,-0.16429017484188,0.020033208653331]],[[-0.16988933086395,0.051602602005005,-0.12621532380581],[0.011290559545159,0.065337523818016,-0.098066754639149],[-0.047287404537201,0.076243117451668,-0.023072818294168]],[[0.14045177400112,0.23930081725121,-0.18292082846165],[-0.019969720393419,0.01457840949297,-0.13727857172489],[0.20334967970848,-0.053721565753222,-0.061512000858784]],[[0.12850883603096,-0.086756579577923,-0.20464546978474],[0.070611760020256,0.025274081155658,0.0053785010240972],[0.071984715759754,-0.10256021469831,-0.073106482625008]],[[-0.032837145030499,0.072376243770123,-0.095664225518703],[-0.097771510481834,-0.16792783141136,-0.050788104534149],[-0.099441021680832,-0.10826727747917,-0.21840612590313]],[[-0.0035721189342439,0.084022626280785,0.20788784325123],[-0.090422429144382,0.062888659536839,0.19108046591282],[-0.036523263901472,0.044953212141991,0.35979741811752]],[[0.061840575188398,0.21621809899807,-0.14606390893459],[-0.095638409256935,0.070806033909321,-0.14055743813515],[-0.1485029309988,-0.027113724499941,-0.0054748603142798]],[[-0.14126153290272,-0.036243006587029,0.02425979077816],[0.076901964843273,-0.095151506364346,-0.051417570561171],[0.063425034284592,-0.021990906447172,0.058062698692083]],[[-0.11592645198107,-0.056728202849627,0.013134627602994],[-0.039094422012568,0.077420972287655,0.063546486198902],[-0.17742185294628,0.1177910938859,0.13746352493763]],[[0.023406902328134,-0.13155847787857,0.050693914294243],[-0.029533578082919,0.062570437788963,-0.021593371406198],[-0.1744410097599,0.22934687137604,-0.0084097003564239]],[[0.030090032145381,0.081530936062336,0.0429259352386],[-0.0087776519358158,0.18769246339798,-0.059234131127596],[0.17759980261326,0.17398579418659,0.046513929963112]],[[0.079406060278416,-0.019064342603087,-0.18959371745586],[0.041185539215803,-0.095951668918133,0.016593283042312],[0.036881133913994,-0.13902738690376,-0.048944599926472]],[[0.059335142374039,0.011512001976371,0.11372011899948],[0.17656853795052,-0.038373123854399,0.0061922343447804],[0.1977810561657,-0.11272488534451,0.075360789895058]],[[0.01447225548327,-0.0066890753805637,0.18197616934776],[-0.031650364398956,-0.031552951782942,0.014143889769912],[-0.22878842055798,-0.050304625183344,0.10329941660166]],[[-0.055298052728176,-0.038952793926001,0.14908885955811],[0.026491586118937,-0.17763257026672,0.14025248587132],[-0.0079290773719549,-0.23195089399815,0.07970917224884]],[[0.015699774026871,-0.04246311634779,-0.12292262166739],[-0.099132791161537,0.016503281891346,0.039630264043808],[0.014222891069949,-0.080863811075687,0.18844883143902]],[[0.11244316399097,-0.0081864250823855,-0.21256439387798],[0.14113692939281,-0.024483107030392,-0.16529826819897],[0.20503403246403,0.037844866514206,-0.2347332239151]],[[-0.17181634902954,-0.10932016372681,0.052674416452646],[-0.036396909505129,-0.043644718825817,-0.14728599786758],[0.11269338428974,0.0073006986640394,-0.16234160959721]],[[0.045115623623133,-0.048277694731951,0.22363576292992],[0.040778920054436,0.14146026968956,0.0093378759920597],[-0.051667682826519,0.077743448317051,-0.15952740609646]],[[-0.058870539069176,-0.084246821701527,-0.028518486768007],[-0.025147281587124,0.012132933363318,-0.010044268332422],[-0.21547293663025,0.1001672744751,0.046405840665102]],[[0.095911733806133,0.091595239937305,-0.15180386602879],[-0.09618467092514,0.022139601409435,-0.20489105582237],[-0.033503226935863,0.096625410020351,-0.16500587761402]],[[0.074596002697945,0.086496502161026,-0.15146398544312],[-0.068978272378445,0.12702016532421,-0.083698101341724],[-0.10867250710726,-0.029353473335505,0.030510623008013]],[[0.11717631667852,0.036763481795788,0.02440938539803],[-0.04968523606658,0.036543250083923,-0.11574786156416],[-0.23735126852989,-0.13070107996464,-0.00042464534635656]],[[-0.0031606783159077,0.059050209820271,0.094170764088631],[-0.11625078320503,-0.043195065110922,0.19657735526562],[-0.013979473151267,-0.030369553714991,0.16110974550247]],[[-0.14236372709274,-0.14639757573605,-0.029963821172714],[-0.048709355294704,0.030463403090835,0.22368770837784],[-0.079471327364445,0.11575815081596,0.13125313818455]],[[0.15482683479786,-0.048072822391987,0.5660582780838],[0.089534074068069,-0.0063970498740673,0.10207866877317],[0.18462745845318,-0.067071311175823,0.11741474270821]],[[-0.16185501217842,-0.050502687692642,0.0023210761137307],[-0.14421103894711,-0.21075612306595,-0.11888708174229],[0.057235553860664,-0.065641984343529,0.033895779401064]],[[0.04670737311244,-0.14062337577343,0.068302504718304],[0.14966931939125,-0.082430064678192,-0.028093194589019],[0.13796204328537,0.042753059417009,0.005629459861666]],[[0.1434433311224,-0.044367428869009,0.075944758951664],[0.07948461920023,0.12408416718245,-0.11739695072174],[-0.16429936885834,-0.051804088056087,-0.022806415334344]],[[-0.10454353690147,0.038974147289991,0.1591717004776],[-0.049842484295368,-0.063614778220654,0.12833759188652],[-0.078920654952526,-0.12068255990744,0.016079569235444]],[[0.040922090411186,0.038251891732216,-0.087012335658073],[0.0444276034832,-0.0046968129463494,0.061343070119619],[0.034853029996157,-0.13069106638432,0.030611347407103]],[[0.079030588269234,0.11708424985409,-0.14149667322636],[0.036043513566256,0.14963902533054,-0.053763423115015],[-0.034289114177227,0.037516575306654,0.061309646815062]]],[[[0.032456055283546,0.011362486518919,0.02789100073278],[0.15899886190891,-0.036350391805172,-0.023311613127589],[-0.10730572789907,0.0092290434986353,-0.13973650336266]],[[-0.10595859587193,-0.052016369998455,0.017557660117745],[0.067187458276749,-0.001352462451905,-0.025882819667459],[-0.10453630238771,0.043160166591406,0.040421437472105]],[[0.091521792113781,-0.014959502965212,0.060142066329718],[0.0030272146686912,0.069153271615505,0.074198722839355],[-0.030003124848008,0.2195950448513,-0.045427069067955]],[[-0.12444438040257,-0.045245587825775,-0.16016943752766],[-0.022893592715263,0.13046568632126,-0.0078837545588613],[-0.17679111659527,-0.05509190633893,0.0098468298092484]],[[0.27348607778549,-0.078889615833759,-0.15426522493362],[0.060637392103672,0.032455716282129,-0.023705838248134],[0.039392068982124,0.0094036310911179,-0.0034655483905226]],[[0.13507607579231,-0.061939168721437,-0.087456494569778],[-0.13894771039486,0.079975791275501,0.095611229538918],[-0.10433954745531,-0.055899642407894,-0.09612038731575]],[[-0.10802086442709,-0.013522858731449,0.1304112970829],[0.15136623382568,0.23874621093273,0.023411445319653],[0.088141493499279,-0.047861717641354,-0.093091361224651]],[[-0.1172684431076,-0.097316920757294,-0.027586378157139],[-0.040356792509556,0.11345360428095,0.192542552948],[-0.23525419831276,0.1075376495719,0.16411140561104]],[[0.081795252859592,0.16727055609226,0.036174554377794],[-0.045612648129463,0.0041227033361793,-0.12265579402447],[0.057016219943762,0.033278297632933,-0.017143152654171]],[[-0.2129862755537,-0.058661412447691,-0.093648172914982],[-0.15148310363293,-0.0098848659545183,-0.069998376071453],[-0.065534852445126,-0.095490120351315,0.014323471114039]],[[-0.13071028888226,0.026812875643373,0.03440473228693],[-0.035925585776567,0.048171132802963,0.17404353618622],[-0.13698355853558,-0.036304216831923,-0.17606501281261]],[[0.22615434229374,0.17832982540131,0.2070080190897],[-0.084494784474373,-0.0038867902476341,-0.075299948453903],[-0.020431848242879,0.01771954447031,0.011993042193353]],[[0.079401165246964,-0.1444678902626,-0.11528780311346],[-0.13820464909077,-0.04059211909771,0.01239126548171],[0.019414618611336,-0.16273283958435,-0.15044236183167]],[[0.064781807363033,0.046253874897957,-0.0015772891929373],[-0.1917677372694,-0.10318143665791,-0.13864432275295],[-0.07837575674057,-0.015250761061907,-0.077206075191498]],[[-0.11070509254932,0.087280809879303,0.087854444980621],[0.19087563455105,0.038110200315714,0.14521464705467],[-0.058742113411427,0.05130609869957,-0.060056336224079]],[[-0.021264167502522,0.0039014462381601,-0.20595550537109],[-0.0095417778939009,0.072341188788414,-0.00057934853248298],[-0.15633690357208,-0.24747353792191,-0.30633535981178]],[[0.023618616163731,0.15603296458721,0.035044047981501],[-0.20761315524578,-0.080093413591385,-0.19613246619701],[-0.14853212237358,-0.1204905807972,0.012236166745424]],[[-0.02665308304131,-0.10381866246462,-0.036795310676098],[-0.084992580115795,-0.083994768559933,0.015679819509387],[0.030967175960541,0.04910346493125,0.1530694514513]],[[-0.012347311712801,0.16667075455189,0.085777774453163],[-0.051716733723879,-0.013035923242569,-0.05736181885004],[-0.029906207695603,0.050125490874052,-0.18280552327633]],[[0.00034822765155695,-0.086065888404846,-0.033836137503386],[-0.1208595559001,0.10165165364742,0.023426720872521],[-0.0087431604042649,0.10536941885948,0.022265022620559]],[[-0.021723840385675,-0.096830859780312,0.013156338594854],[-0.2208726555109,-0.09848602861166,0.0097866542637348],[-0.047608952969313,-0.10076356679201,-0.13864925503731]],[[-0.17518101632595,0.038430705666542,-0.15069115161896],[0.1074155792594,0.18722212314606,0.07493545114994],[-0.19844943284988,-0.14635869860649,-0.046007674187422]],[[0.14213798940182,0.02497873455286,-0.017093177884817],[-0.0176413487643,-0.045688904821873,-0.064385250210762],[0.008147575892508,0.066552892327309,-0.019696602597833]],[[0.10233203321695,-0.017038729041815,-0.0016087946714833],[0.11599157750607,0.08795315772295,0.06068080291152],[0.0035524691920727,-0.29915028810501,-0.25838756561279]],[[-0.084497034549713,-0.15050548315048,0.022534498944879],[0.063314288854599,0.081051968038082,0.034606274217367],[0.098900809884071,0.13602557778358,0.19430769979954]],[[-0.044902134686708,0.062796480953693,-0.0138567853719],[0.039365410804749,0.023419486358762,-0.067618228495121],[0.041859418153763,-0.23569296300411,-0.064177997410297]],[[-0.090396419167519,-0.099963918328285,-0.090477764606476],[0.21242859959602,0.080641366541386,-0.1049660295248],[-0.10317991673946,-0.091637142002583,-0.18005545437336]],[[0.18658961355686,-0.022471182048321,-0.026533745229244],[-0.083759061992168,-0.011831418611109,0.0066765667870641],[0.19069197773933,0.076304279267788,-0.14947564899921]],[[0.070893138647079,0.1541493833065,-0.1494392156601],[0.068755626678467,-0.056209817528725,0.089272499084473],[0.042028207331896,-0.056747298687696,-0.13446737825871]],[[-0.064440228044987,0.056448947638273,0.10220724344254],[-0.1171357780695,-0.027911690995097,0.029036667197943],[-0.062824204564095,0.15147688984871,0.0070701339282095]],[[-0.17186838388443,-0.052776336669922,-0.097231827676296],[-0.20920950174332,-0.19841338694096,0.021135514602065],[0.22980752587318,0.28812649846077,-0.07591000944376]],[[-0.17547743022442,-0.17822062969208,-0.032409910112619],[-0.070074334740639,-0.01251083612442,-0.12601593136787],[-0.099128469824791,-0.045664954930544,0.074517294764519]],[[-0.069460496306419,-0.020229090005159,-0.053203515708447],[0.2606044113636,0.07438924908638,-0.052733313292265],[-0.10310655087233,-0.13782168924809,-0.08778028935194]],[[-0.12161558866501,-0.066663734614849,0.047317262738943],[-0.14576077461243,-0.0080133033916354,0.067135199904442],[0.03505140542984,0.081073254346848,0.058102395385504]],[[0.030085202306509,-0.0042089293710887,-0.18446560204029],[-0.070172421634197,-0.00029714312404394,0.036077119410038],[0.023926053196192,-0.034050323069096,-0.14257764816284]],[[0.20061014592648,0.058478962630033,0.054841119796038],[-0.17058028280735,-0.056170683354139,0.059962585568428],[-0.032979723066092,-0.075385123491287,0.0052407924085855]],[[-0.25802633166313,-0.033518254756927,-0.058774687349796],[-0.038443457335234,0.025603413581848,0.087142370641232],[0.1711645424366,0.2027785629034,0.18553657829762]],[[0.12771119177341,0.066653251647949,0.027752576395869],[-0.076978795230389,0.024532763287425,0.13221327960491],[-0.19440418481827,-0.12176502496004,-0.11603808403015]],[[-0.11918406933546,0.020456947386265,-0.12162162363529],[0.078557826578617,0.051995448768139,-0.035710480064154],[-0.16984270513058,-0.098000451922417,0.036864433437586]],[[-0.077097661793232,-0.04663023352623,-0.026545917615294],[-0.080455265939236,-0.041675940155983,0.11329536139965],[-0.17179219424725,0.0045822891406715,0.079349674284458]],[[0.15644419193268,0.09155235439539,-0.02697947062552],[-0.19738025963306,0.044404286891222,0.020935112610459],[-0.12012183666229,0.086349450051785,0.060952924191952]],[[-0.29094198346138,-0.10271725803614,0.064537987112999],[0.031742990016937,0.088823534548283,-0.0068341046571732],[0.28838405013084,0.12376736849546,0.19195236265659]],[[-0.16796100139618,-0.079479798674583,-0.03743327409029],[-0.063527412712574,0.011921744793653,-0.018475169315934],[-0.026294572278857,-0.25272488594055,-0.36770850419998]],[[-0.020367294549942,0.061440162360668,0.087263211607933],[0.10932487994432,0.11269918084145,0.021971104666591],[-0.014334936626256,0.0069887829013169,-0.071787662804127]],[[0.079621262848377,0.069453120231628,0.021659955382347],[-0.2821498811245,-0.14749775826931,0.046892143785954],[-0.068573921918869,0.02338695526123,-0.046485364437103]],[[0.14209580421448,0.046766594052315,0.11304084956646],[-0.055326968431473,-0.086727790534496,-0.058983191847801],[-0.069387428462505,-0.075754746794701,0.095954701304436]],[[-0.10934127122164,-0.023265743628144,0.074433699250221],[-0.10970524698496,0.0032424628734589,-0.1506667137146],[0.043006103485823,-0.0086994497105479,-0.11734408140182]],[[0.024241454899311,-0.0011753146536648,0.11091501265764],[0.27907803654671,-0.032981801778078,-0.1226174607873],[-0.049502145498991,-0.096857011318207,0.05590283498168]],[[-0.1614748686552,0.082955360412598,-0.17866076529026],[0.066489703953266,0.098332926630974,0.12957412004471],[0.090804353356361,0.0018805669387802,0.10410345345736]],[[-0.067833252251148,-0.18356023728848,-0.1407969892025],[0.22436285018921,0.10242193937302,-0.23082074522972],[-0.18524447083473,-0.011106880381703,0.12498942762613]],[[-0.0030873841606081,0.012707392685115,-0.068314768373966],[0.15890835225582,0.033385276794434,-0.049157097935677],[-0.10384745150805,-0.089707434177399,-0.028082072734833]],[[0.083510518074036,-0.057035893201828,0.018527807667851],[0.11719188094139,-0.10260375589132,0.014159888960421],[0.13695521652699,0.049719262868166,-0.048269391059875]],[[-0.10193641483784,0.004894376732409,0.048089787364006],[0.10536663234234,-0.017639745026827,-0.077182210981846],[-0.017835535109043,-0.032008785754442,-0.13909085094929]],[[0.23139955103397,0.14387194812298,0.062456548213959],[-0.089629031717777,-0.10076153278351,-0.047059815376997],[0.12764537334442,0.079568073153496,0.0187050960958]],[[-0.19623272120953,-0.24537640810013,-0.14042884111404],[-0.05363667756319,0.1327637732029,0.08127498626709],[-0.050264827907085,0.22686810791492,0.084134586155415]],[[-0.24687187373638,-0.1143185198307,-0.047379277646542],[0.0059845522046089,-0.19197233021259,0.11104334890842],[0.23507882654667,0.0022052556741983,-0.12172721326351]],[[-0.14856195449829,-0.12032137066126,-0.054527208209038],[-0.23259408771992,0.087875738739967,0.062255393713713],[0.06597263365984,0.039109420031309,0.26479890942574]],[[-0.091331236064434,-0.064785540103912,-0.088920652866364],[-0.10155789554119,-0.20067696273327,-0.18987615406513],[-0.043010286986828,-0.00012537679867819,0.17668852210045]],[[-0.0011702458141372,0.0078126778826118,0.16659307479858],[0.00083195645129308,-0.099648877978325,-0.10920791327953],[0.14595213532448,-0.056190762668848,-0.041483044624329]],[[0.20044384896755,0.13822157680988,0.082287795841694],[0.02810912206769,-0.039949107915163,-0.1471980959177],[-0.078735992312431,0.0045450502075255,0.050984263420105]],[[0.13524051010609,-0.12212695926428,0.0038840700872242],[0.037416003644466,-0.058599911630154,-0.098706871271133],[-0.20041304826736,-0.11368022114038,-0.16825257241726]],[[-0.035078417509794,-0.093949489295483,-0.28401735424995],[0.083655424416065,-0.017796570435166,-0.11802074313164],[0.10742748528719,-0.19296130537987,-0.21667194366455]],[[-0.077861085534096,-0.062108159065247,0.039883244782686],[-0.079546891152859,0.117481559515,0.01240944582969],[0.098811730742455,-0.011310629546642,-0.001087864045985]],[[-0.00057548499898985,0.023292347788811,0.00088655587751418],[-0.017138732597232,0.023692721500993,-0.0035305945202708],[-0.026499247178435,0.23103128373623,0.16645091772079]],[[0.09717895835638,-0.091098457574844,-0.096936598420143],[-0.087798319756985,-0.13936567306519,-0.1079872623086],[-0.0023284566123039,-0.04688959941268,-0.0098959524184465]],[[0.029790515080094,0.061753064393997,0.050063651055098],[-0.068674586713314,0.10954194515944,-0.08967437595129],[-0.07635111361742,-0.037649124860764,-0.019535468891263]],[[-0.039236407727003,-0.032204758375883,-0.10547073930502],[0.37050613760948,0.14198045432568,-0.06760673224926],[0.25211083889008,-0.066356487572193,-0.0081336824223399]],[[-0.12839424610138,-0.0084272148087621,0.098364099860191],[0.15910257399082,0.025613462552428,-0.21340963244438],[-0.14064115285873,-0.050379116088152,0.084906876087189]],[[0.23034562170506,0.13719727098942,0.13343900442123],[-0.063852950930595,-0.20977266132832,0.071741119027138],[-0.058182686567307,-0.15431037545204,-0.21009209752083]],[[0.19131754338741,0.01980160176754,0.073649913072586],[-0.114781036973,-0.057400830090046,-0.028144758194685],[0.085779756307602,-0.065438568592072,-0.20473842322826]],[[0.029669919982553,0.051901936531067,-0.0064309020526707],[-0.040582846850157,0.027134971693158,-0.04008087143302],[0.13521258533001,0.09159866720438,0.054702330380678]],[[0.19261600077152,0.093256860971451,0.20079766213894],[-0.24481900036335,-0.091216877102852,0.0064050275832415],[-0.12466714531183,-0.070187695324421,0.086038671433926]],[[0.11475371569395,0.1882866024971,0.19943629205227],[0.086786881089211,-0.24943020939827,-0.2380219399929],[-0.17534156143665,-0.036596726626158,-0.11041143536568]],[[-0.12819743156433,-0.0014014268526807,0.027195470407605],[0.0050337039865553,0.054470274597406,0.089841805398464],[-0.13914133608341,0.016796283423901,0.11917781829834]],[[-0.046282779425383,-0.13157649338245,0.13404475152493],[-0.023230919614434,-0.011896614916623,-0.012289345264435],[-0.026578433811665,-0.16581030189991,-0.09483876824379]],[[0.036803938448429,0.065335363149643,0.092727541923523],[0.052914831787348,0.044233169406652,0.033233486115932],[-0.01755953207612,-0.076084539294243,-0.012396525591612]],[[0.05790289118886,-0.079071797430515,-0.07745897769928],[-0.095836900174618,-0.12730199098587,0.025740083307028],[-0.040529273450375,-0.0074236146174371,-0.0651625841856]],[[-0.13527138531208,-0.11380613595247,-0.012752365320921],[0.12901276350021,-0.0039462018758059,-0.076876670122147],[-0.029367856681347,-0.013083186000586,-0.14684143662453]],[[0.016431471332908,0.20400772988796,0.16097179055214],[-0.1310378909111,-0.035994090139866,0.031387940049171],[0.076928965747356,0.16213768720627,-0.031468484550714]],[[0.052544739097357,-0.038305502384901,0.12845201790333],[-0.031806353479624,-0.13905368745327,-0.087538622319698],[-0.004127380438149,0.039167005568743,-0.075224719941616]],[[-0.015740314498544,-0.013596650213003,0.052821714431047],[-0.10060061514378,-0.039942499250174,0.034226164221764],[0.017496464774013,0.087391130626202,-0.053041525185108]],[[0.14999493956566,0.24723517894745,-0.0039991526864469],[-0.037513416260481,-0.092639870941639,-0.14983196556568],[-0.0092863719910383,-0.018680296838284,-0.10685565322638]],[[-0.020003320649266,0.089535489678383,-0.042481455951929],[0.083667606115341,0.037236969918013,0.030382575467229],[-0.030296389013529,0.19492965936661,0.28538683056831]],[[0.0019130184082314,0.049344342201948,0.083195365965366],[-0.15245772898197,-0.079768769443035,-0.14521960914135],[-0.015989057719707,-0.011024064384401,0.10433328896761]],[[-0.14225125312805,-0.099452890455723,-0.14602491259575],[0.19448259472847,0.068536534905434,-0.12193512171507],[0.024032812565565,0.063051953911781,-0.12116238474846]],[[-0.0073859407566488,-0.06967306882143,-0.060901254415512],[-0.064426779747009,-0.036597337573767,0.086598910391331],[0.014413209632039,0.056359514594078,-0.075134739279747]],[[-0.088819243013859,-0.06606812030077,-0.089337855577469],[0.04580357298255,0.049097009003162,-0.079494945704937],[0.15670225024223,-0.043569479137659,0.00093173485947773]],[[0.12575860321522,0.087629184126854,0.0096168499439955],[0.24942614138126,-0.10066854953766,-0.15838818252087],[-0.0034353425726295,-0.084287114441395,0.13078981637955]],[[-0.046477288007736,-0.057806134223938,0.085459604859352],[0.016295021399856,0.016230270266533,-0.063111498951912],[0.15146863460541,0.03675714880228,0.06189688667655]],[[0.12414721399546,-0.042422767728567,0.019539972767234],[-0.02674345113337,0.081919826567173,-0.10851730406284],[-0.078936964273453,-0.036599837243557,0.11777605861425]],[[0.073985226452351,-0.10745319724083,-0.080272696912289],[0.069655813276768,0.095160491764545,0.081402510404587],[-0.050676885992289,0.031381797045469,0.22154773771763]],[[-0.18282575905323,-0.017244309186935,0.0091460337862372],[-0.049862954765558,-0.18041621148586,-0.20303170382977],[0.024113094434142,0.047392435371876,-0.036960233002901]],[[-0.096484437584877,-0.035991072654724,0.081180676817894],[-0.025176905095577,0.028496135026217,0.060506738722324],[0.035624891519547,0.23447133600712,-0.009367254562676]],[[-0.17994926869869,-0.12742191553116,0.087698131799698],[-0.10071919858456,0.028896268457174,-0.1432863920927],[-0.095813021063805,-0.083131283521652,-0.084140174090862]],[[0.022855950519443,0.18234287202358,-0.033853434026241],[-0.1811730414629,0.047924853861332,-0.040632970631123],[-0.029177293181419,-0.0545294880867,-0.1255444586277]],[[-0.049241665750742,-0.17120654881001,-0.0037951692938805],[-0.11207996308804,-0.14924202859402,0.013251735828817],[0.022335045039654,0.13269492983818,0.036229256540537]],[[-0.020564870908856,-0.065762288868427,-0.11560525000095],[0.11603488028049,-0.064784616231918,0.10801790654659],[-0.069690711796284,0.025682164356112,-0.036454133689404]],[[0.13528524339199,-0.091849744319916,0.071509540081024],[-0.10091225802898,0.078516513109207,0.11252802610397],[-0.18495166301727,-0.059664759784937,-0.013036017306149]],[[-0.17782521247864,0.10245387256145,0.014837476424873],[-0.097705513238907,-0.041292533278465,-0.0071551995351911],[-0.077670074999332,0.016027918085456,-0.11442574858665]],[[0.034517128020525,-0.0022314509842545,-0.092155732214451],[0.034314878284931,0.029586965218186,0.040514264255762],[-0.056682672351599,-0.060281220823526,0.11172337085009]],[[0.089270941913128,0.1106011942029,-0.0097772730514407],[-0.010541110299528,-0.05525441467762,0.083860673010349],[-0.021726375445724,-0.1528354883194,-0.083262987434864]],[[0.16516660153866,0.13962858915329,0.22501792013645],[-0.11409709602594,-0.066510610282421,0.035759523510933],[0.041383855044842,0.10724610835314,0.041823577135801]],[[0.072194278240204,0.19900915026665,0.075180754065514],[-0.070225074887276,0.027568753808737,0.019825719296932],[-0.05451924726367,0.020194401964545,-0.033867500722408]],[[0.11011826992035,0.033382188528776,-0.041348237544298],[-0.01682198792696,-0.11970556527376,-0.12614722549915],[-0.067175410687923,0.0027847706805915,-0.094502910971642]],[[-0.0023643772583455,0.095642425119877,0.040653742849827],[-0.043502759188414,-0.14559870958328,-0.13530445098877],[0.013767119497061,0.018940359354019,-0.0711430311203]],[[0.075197018682957,-0.0093780839815736,-0.050646211951971],[-0.19314208626747,-0.14962913095951,0.046229112893343],[0.057889558374882,0.031390935182571,-0.10256085544825]],[[-0.12586961686611,-0.13114462792873,0.0028196529019624],[-0.12924426794052,-0.02865001372993,0.064899191260338],[-0.032878156751394,0.04853992164135,0.034344378858805]],[[0.0218894071877,0.012979961931705,0.072909384965897],[-0.17464081943035,-0.26713064312935,-0.16815233230591],[0.14682570099831,-0.044204089790583,-0.04125352576375]],[[0.013548153452575,0.0015445719473064,0.10270071029663],[-0.040387690067291,-0.080021746456623,0.011889366433024],[0.15183153748512,0.14235137403011,0.11663106828928]],[[-0.029901873320341,0.032120194286108,-0.025498025119305],[-0.059198558330536,-0.19266636669636,0.025087306275964],[0.062542349100113,0.04247147589922,0.01982706040144]],[[0.015855006873608,-0.020441871136427,0.029680848121643],[0.024880688637495,-0.12515133619308,-0.042702797800303],[0.025749092921615,-0.032296814024448,-0.031939066946507]],[[-0.11826514452696,-0.016295222565532,-0.055880282074213],[-0.072661757469177,-0.019380457699299,0.016120733693242],[0.028999753296375,-0.039398074150085,-0.036437153816223]],[[-0.16146789491177,-0.0032809958793223,0.038682319223881],[-0.035775523632765,-0.045864123851061,-0.02867410518229],[-0.049280531704426,0.074917532503605,0.052273321896791]],[[-0.20506691932678,-0.11456550657749,0.0050031966529787],[-0.01595726236701,0.089029766619205,0.10210792720318],[-0.14128363132477,-0.16063348948956,0.035719756036997]],[[-0.048809818923473,0.093982107937336,0.063899733126163],[-0.0023370992857963,-0.0014050917234272,0.00098876398988068],[-0.040346421301365,0.095612436532974,0.083841159939766]],[[-0.074299864470959,-0.019371943548322,0.1477769613266],[0.0098915137350559,0.014420863240957,0.067874796688557],[-0.04303252696991,0.072037771344185,0.13282430171967]],[[0.083294972777367,-0.035019043833017,0.0043086628429592],[-0.031391784548759,-0.015348938293755,-0.026232976466417],[0.17982521653175,-0.0050151757895947,0.030905546620488]],[[-0.032758243381977,-0.038966622203588,-0.15461499989033],[0.10937681049109,-0.021760331466794,0.0084645673632622],[0.11864368617535,-0.025485387071967,-0.081135839223862]],[[-0.015935966745019,-0.066098794341087,-0.15934696793556],[-0.049716763198376,-0.06980000436306,0.12656331062317],[-0.020232331007719,0.031035769730806,0.093697801232338]],[[-0.05748887360096,0.065706431865692,0.062423571944237],[-0.17364412546158,-0.061221554875374,-0.085980512201786],[-0.0011487535666674,0.05920298025012,0.099511004984379]],[[-0.019347770139575,0.023226909339428,0.013789961114526],[-0.052572458982468,-0.059865806251764,0.029231462627649],[-0.077934689819813,0.07745622843504,0.11912073194981]],[[0.051342397928238,0.064941637217999,0.081757470965385],[0.0079444451257586,0.036603268235922,0.040208704769611],[-0.019781701266766,0.089657582342625,0.092144101858139]],[[-0.05041890591383,0.051978714764118,0.097259238362312],[-0.097015164792538,-0.30476823449135,-0.075538620352745],[0.06875129789114,-0.20218609273434,-0.1325109899044]],[[-0.11323174834251,0.11109913140535,-0.048834040760994],[0.033897910267115,0.075419969856739,0.025223258882761],[0.04316172003746,-0.0033971634693444,-0.033625237643719]],[[0.078468449413776,-0.040894839912653,0.025388507172465],[-0.0446394123137,-0.16797795891762,0.076712153851986],[0.12314172834158,0.17886109650135,0.020547050982714]],[[0.020167998969555,0.028207752853632,-0.081857956945896],[-0.038259662687778,-0.12779727578163,-0.14626657962799],[0.068299174308777,-0.067361243069172,-0.11685111373663]],[[0.11385378986597,0.042762640863657,-0.033537182956934],[0.03116387873888,0.052316341549158,-0.21667572855949],[0.10390336066484,0.072505317628384,0.065517254173756]],[[0.10410889238119,-0.051050558686256,0.0013349270448089],[-0.19876420497894,0.092766143381596,0.10847236216068],[-0.11285460740328,-0.13064755499363,-0.1072119474411]]],[[[0.01924329996109,-0.002553992671892,-0.093460872769356],[0.0081206737086177,0.053232952952385,0.023598177358508],[0.044601432979107,-0.00043261196697131,0.013512575998902]],[[0.0032880669459701,-0.015525460243225,0.020256586372852],[-0.0091694174334407,0.0063477209769189,-0.059247847646475],[-0.032633863389492,-0.032007858157158,0.0065285209566355]],[[0.043534509837627,-0.0019576798658818,0.020437654107809],[-0.031026320531964,0.020644653588533,-0.043770898133516],[0.010429648682475,0.047946989536285,-0.017969466745853]],[[-0.029929306358099,0.019663570448756,-0.054741084575653],[0.035271588712931,-0.025503600016236,-0.047503534704447],[0.057822048664093,0.01624122262001,0.0020919342059642]],[[0.065350040793419,0.042508412152529,-0.031411554664373],[-0.0084090558812022,0.051555588841438,-0.058285787701607],[-0.0031842419411987,-0.0057737343013287,0.024421751499176]],[[-0.073258712887764,-0.0037080028560013,0.04112683236599],[-0.049895953387022,0.000971126020886,0.027016781270504],[0.06009267270565,-0.037014815956354,-0.067646205425262]],[[-0.005825653206557,0.053469620645046,0.012523264624178],[0.032817449420691,0.010318037122488,0.0049038580618799],[-0.08529132604599,0.0071386112831533,0.024540293961763]],[[-0.03136607632041,-0.035013996064663,0.046699360013008],[0.0068907267414033,0.041332732886076,-0.011462050490081],[0.006412910297513,-0.0036101273726672,0.017953494563699]],[[-0.062776066362858,0.045947287231684,-0.083806373178959],[-0.021304845809937,0.0053714839741588,0.032568797469139],[0.079147234559059,-0.025009961798787,-0.045143082737923]],[[-0.0017904770793393,-0.02639969624579,-0.0027031013742089],[-0.056026514619589,-0.015205803327262,0.010646051727235],[-0.086121059954166,0.033435434103012,-0.0040044542402029]],[[0.017917132005095,0.043628912419081,-0.0029266376513988],[0.024109605699778,0.035231672227383,0.0049211587756872],[0.055540885776281,-0.0059927767142653,0.012744781561196]],[[-0.024471215903759,0.0069222683086991,-0.00021025593741797],[0.0048215589486063,-0.029227748513222,-0.07181292027235],[0.038910340517759,0.086399123072624,-0.016308778896928]],[[0.024074878543615,0.055168353021145,0.044593006372452],[-0.051831487566233,0.021713251248002,0.019964894279838],[0.055530320852995,0.065582193434238,0.033995471894741]],[[0.03009295836091,0.033053796738386,0.031530905514956],[0.0052577061578631,0.026040500029922,-0.017587449401617],[0.025958329439163,0.050933092832565,0.020816653966904]],[[-0.011341762728989,0.0061642327345908,-0.064649239182472],[-0.0087252585217357,0.0041191382333636,-0.026073276996613],[0.018008537590504,0.0086388662457466,0.020604407414794]],[[0.01248833257705,0.056495126336813,0.030424203723669],[-0.020622417330742,-0.014203981496394,-0.028950363397598],[0.011697452515364,0.067482940852642,0.03504441678524]],[[-0.02761360257864,-0.0418158210814,-0.044471632689238],[-0.023370718583465,-0.0094695445150137,-0.056283704936504],[0.010894299484789,0.047860350459814,-0.010774159803987]],[[-0.013768915086985,-0.020621862262487,-0.033516716212034],[0.011215458624065,-0.061183024197817,-0.02028532512486],[-0.015457069501281,0.047972142696381,-0.0032923861872405]],[[0.021561868488789,0.022214727476239,0.052091419696808],[-0.025627600029111,-0.01337833236903,0.021574614569545],[0.019213397055864,-0.061691228300333,-0.062738433480263]],[[-0.0030674445442855,-0.083469279110432,0.010718433186412],[0.04243627935648,-0.023990718647838,0.042176216840744],[0.035453293472528,-0.010668382048607,-0.037695977836847]],[[0.0056239715777338,0.079502388834953,0.013290457427502],[0.054753437638283,0.0065614255145192,0.010072713717818],[-0.042490728199482,-0.062259003520012,0.038272339850664]],[[-0.0063067050650716,0.048948898911476,-0.080138027667999],[-0.0091631188988686,0.027284227311611,0.0085025578737259],[-0.033389445394278,0.017794897779822,-0.086077906191349]],[[-0.047811150550842,-0.045203134417534,0.026967661455274],[0.027842985466123,0.0020190535578877,-0.036081362515688],[0.039055120199919,0.01847330108285,0.0073669119738042]],[[-0.0082806879654527,-0.02513131685555,0.049413789063692],[0.020512094721198,-0.026725251227617,-0.070758916437626],[-0.054189879447222,0.032748676836491,-0.020565340295434]],[[-0.04393457248807,-0.052043009549379,0.022998750209808],[0.047303181141615,-0.037267602980137,-0.075568154454231],[0.022247022017837,-0.014202134683728,0.001101900357753]],[[0.063858732581139,0.0075020920485258,-0.030591666698456],[-0.0055313548073173,-0.0097526228055358,0.031332850456238],[0.034891206771135,-0.036426853388548,0.0042092553339899]],[[0.039229769259691,0.013119927607477,0.046914990991354],[-0.024868180975318,0.0091654341667891,0.017154859378934],[0.0042096246033907,0.024207890033722,0.0026903734542429]],[[-0.029672760516405,0.02886051684618,-0.03713271021843],[0.077189035713673,-0.026166535913944,0.019899753853679],[0.015980886295438,-0.055655352771282,-0.021379129961133]],[[-0.094577856361866,-0.021793816238642,-0.09938096255064],[-0.056944902986288,-0.027714496478438,0.041161559522152],[0.055037602782249,0.032831255346537,-0.0058204778470099]],[[0.079634174704552,-0.010631259530783,0.0030141384340823],[0.029122890904546,0.012861672788858,0.03576273471117],[-0.019950434565544,-0.036282349377871,0.0072160330601037]],[[-0.015450272709131,-0.018210032954812,0.038915224373341],[-0.0027322517707944,-0.064313307404518,0.016345012933016],[-0.015299883671105,0.075463242828846,0.028865348547697]],[[-0.036119788885117,0.010029828175902,0.0081923054531217],[0.0053682536818087,-0.034597590565681,-0.037783235311508],[-0.023658592253923,-0.023986730724573,-0.00042049796320498]],[[0.017100756987929,0.036291174590588,-0.010815737769008],[-0.0039600501768291,0.048268813639879,-0.036010630428791],[0.05481032282114,0.027607975527644,-0.0018259375356138]],[[0.039270732551813,-0.055615980178118,0.013910967856646],[-0.016218081116676,0.012536046095192,-0.023774348199368],[-0.0046829818747938,-0.053247883915901,0.051763523370028]],[[-0.025619119405746,-0.00442462740466,0.016143752261996],[0.057575430721045,0.027302987873554,0.021681545302272],[-0.024306805804372,0.019212646409869,0.07000970095396]],[[0.017499262467027,0.0243358630687,0.068706944584846],[-0.034247271716595,-0.0043194689787924,0.049574218690395],[-0.0073760743252933,0.0082123940810561,0.0011511230841279]],[[0.027155663818121,-0.016511412337422,-0.075255565345287],[0.037225112318993,-0.0026395458262414,-0.0080506587401032],[0.014366961084306,-0.018105864524841,-0.067881293594837]],[[-0.017620963975787,-0.032009985297918,-0.0058554201386869],[0.10148135572672,0.021576834842563,0.045678485184908],[0.063166335225105,-0.018530467525125,0.017546977847815]],[[0.018419168889523,0.020635545253754,0.10009359568357],[-0.030760701745749,0.025743899866939,-0.029564347118139],[-0.065302468836308,-0.0083215842023492,0.044828493148088]],[[-0.027866005897522,0.071300268173218,-0.00028008883236907],[0.079840295016766,0.057399034500122,0.035130776464939],[-0.04126363247633,0.041519392281771,-0.089298918843269]],[[0.0015184450894594,-0.015725513920188,0.022363444790244],[-0.027143016457558,-0.001883901655674,-0.044832479208708],[0.048348553478718,-0.01755385287106,-0.0017502896953374]],[[0.086255557835102,0.066908709704876,0.015991017222404],[-0.05730727314949,0.005461135879159,0.03709776699543],[-0.011047195643187,-0.017041062936187,-0.036330979317427]],[[0.014878711663187,-0.019187914207578,0.020076641812921],[-0.028688851743937,-0.0084129767492414,0.063163347542286],[0.035280931740999,-0.036551494151354,0.0059108235873282]],[[0.016675425693393,-0.062627218663692,-0.023216098546982],[-0.023943534120917,-0.090128093957901,0.01457357313484],[0.062908798456192,-0.10312066972256,-0.0072101741097867]],[[0.06051604822278,-0.011593115516007,0.040187612175941],[0.012982593849301,-0.0035877551417798,-0.020999928936362],[0.01888183504343,0.020498026162386,-0.021895514801145]],[[0.0057848240248859,0.0031171485316008,0.014361136592925],[-0.015905223786831,-0.063963733613491,-0.093477055430412],[0.020565040409565,-0.013809111900628,0.02528927475214]],[[-0.017313132062554,-0.0044788448140025,0.027665005996823],[0.065675787627697,0.01978662237525,0.021882407367229],[0.003689325414598,0.030709998682141,0.009216170758009]],[[0.026115775108337,-0.020316548645496,-0.049400940537453],[0.023383418098092,-0.05139384791255,-0.036212101578712],[-0.040271431207657,0.012194320559502,0.020907154306769]],[[0.021499022841454,0.0087250871583819,0.036462876945734],[-0.014204703271389,-0.077109277248383,0.096303790807724],[-0.059038795530796,0.013580685481429,-0.0052399709820747]],[[-0.013864208012819,0.029239924624562,0.044955343008041],[0.022657373920083,0.04199255630374,-0.051296442747116],[-0.021721528843045,-0.022785291075706,0.039569206535816]],[[0.061570376157761,-0.013211268000305,0.00752496952191],[-0.047590535134077,0.034792929887772,-0.037987906485796],[0.080122657120228,0.065960049629211,-0.041950147598982]],[[0.037354849278927,-0.030974444001913,0.089592888951302],[0.01836565323174,0.04719614982605,0.0077395890839398],[-0.032714556902647,-0.0044082091189921,0.013005048967898]],[[0.02962944470346,0.054966364055872,0.043693751096725],[-0.029649483039975,-0.043140284717083,-0.0036079173441976],[-0.030078779906034,0.031768348067999,0.0148567231372]],[[-0.0058156601153314,-0.021142454817891,-0.04501274228096],[0.033323038369417,-0.020127607509494,0.067738957703114],[0.04455691576004,0.022145345807076,-0.014802253805101]],[[-0.048299610614777,0.001801572390832,-0.030715951696038],[-0.008439414203167,-0.019856240600348,0.0078590698540211],[0.0060185985639691,0.02973709627986,-0.044220913201571]],[[0.025150571018457,0.019117558375001,-0.01610504090786],[-0.0086149871349335,0.024993671104312,0.034706067293882],[0.02325040474534,-0.079416915774345,0.057281628251076]],[[-0.019600657746196,-0.042856320738792,-0.046800214797258],[0.079768940806389,-0.005177287850529,0.05657123029232],[-0.01239812001586,-0.033792391419411,0.028986591845751]],[[0.0047256336547434,-0.00092631013831124,-0.013534344732761],[-0.02939079515636,0.071719601750374,-0.070772729814053],[-0.10074437409639,-0.05219491571188,-0.11239632964134]],[[-0.0041603748686612,0.0053181201219559,-0.011048947460949],[-0.019560797140002,-0.058259546756744,0.012328199110925],[0.022151546552777,-0.024856694042683,-0.0013043584767729]],[[-0.078126862645149,0.0045855343341827,-0.015982862561941],[-0.084905326366425,-0.01497239805758,0.0054503050632775],[-0.0014803041703999,-0.0043703271076083,-0.0035496351774782]],[[-0.023893369361758,0.022435110062361,0.027564210817218],[-0.019109522923827,-0.029762502759695,-0.0084460154175758],[0.017508294433355,-0.0052207880653441,0.0022764515597373]],[[-0.062588758766651,0.047489888966084,0.012887825258076],[-0.015358815900981,-0.038419391959906,-0.006223801523447],[0.033271417021751,0.01119760517031,-0.036508448421955]],[[0.010712744668126,0.012379873543978,0.04698646068573],[-0.0019300773274153,0.021044105291367,0.027771038934588],[-0.11579301208258,-0.0044136289507151,0.016531938686967]],[[0.024648198857903,0.0166543032974,-0.0075178267434239],[0.02319872379303,-0.030616462230682,0.039039451628923],[-0.037356734275818,-0.00011667070793919,-0.030804554000497]],[[-0.039429511874914,-0.0082535315304995,0.055079206824303],[-0.079435288906097,-0.010604989714921,0.043240267783403],[-0.0024415671359748,0.0093681570142508,-0.02220062725246]],[[-0.034346170723438,0.0034725687000901,0.023245088756084],[0.00043576868483797,0.0048950607888401,0.067863039672375],[-0.037271793931723,-0.012656582519412,-0.014174826443195]],[[0.054363429546356,-0.042501524090767,-0.061549477279186],[0.011675009503961,-0.075853876769543,-0.034949481487274],[-0.0097310710698366,-0.022151751443744,0.040232926607132]],[[0.027622103691101,0.037468109279871,0.0079264054074883],[0.053428016602993,-0.016401916742325,-0.02465801872313],[-0.0073778429068625,0.034170992672443,0.0072564715519547]],[[0.012293938547373,-0.0099271722137928,-0.0096168061718345],[-0.058390934020281,0.054743688553572,0.0053368131630123],[0.052189540117979,0.046938616782427,-0.045600421726704]],[[0.036980655044317,0.0057659847661853,-0.028292013332248],[0.022221874445677,0.072905659675598,0.015458447858691],[0.033239614218473,-0.0038283090107143,-0.030340125784278]],[[-0.034636676311493,0.071243822574615,0.019925516098738],[0.02253750897944,-0.023474680259824,0.010479795746505],[0.021386275067925,0.0060202116146684,-0.057874355465174]],[[-0.027290243655443,-0.0045015569776297,0.0097216442227364],[0.037133928388357,-0.038087271153927,-0.069410420954227],[-0.006739788223058,-0.041280426084995,0.042096085846424]],[[0.020796354860067,-0.033598411828279,0.019003694877028],[0.0063544237054884,0.016990587115288,0.059004534035921],[-0.011461118236184,0.026027880609035,0.016218978911638]],[[0.0066820625215769,-0.053925514221191,0.01528559718281],[0.0029726366046816,0.064419128000736,-0.0054702889174223],[-0.030503865331411,-0.10220416635275,-0.035944741219282]],[[-0.14992520213127,0.033421784639359,-0.026369100436568],[-0.02647846378386,-0.10661565512419,0.048734229058027],[0.0059635872021317,0.057254571467638,0.0035993936471641]],[[0.04498228430748,-0.029131190851331,-0.023861587047577],[0.028541397303343,0.0011230235686526,-0.013935592956841],[0.030889078974724,0.073857396841049,0.038757104426622]],[[-0.054297372698784,-0.0070359143428504,-0.030530996620655],[-0.030789323151112,0.031068131327629,-0.026416938751936],[0.046542253345251,-0.065375424921513,0.016816671937704]],[[-0.050127349793911,0.047892943024635,-0.028529150411487],[-0.0032565155997872,0.0021789590828121,-0.0056283776648343],[0.0080841695889831,-0.070337355136871,0.0097501669079065]],[[-0.042006202042103,-0.028720270842314,-0.033992446959019],[-0.0048644323833287,-0.072331719100475,-0.033969961106777],[-0.061449557542801,-0.020385967567563,-0.043651610612869]],[[-0.01487825345248,-0.023178482428193,-0.038375623524189],[-0.013179945759475,-0.0021760065574199,0.028658231720328],[0.023068897426128,0.01032823882997,-0.039918452501297]],[[0.0069347154349089,0.044536095112562,-0.030396834015846],[0.01832552999258,0.058974768966436,0.046326339244843],[0.020466424524784,0.0085686845704913,0.035915341228247]],[[0.05217432230711,-0.0088542941957712,0.032458934932947],[-0.042046613991261,-0.026082348078489,0.02454661205411],[-0.045114811509848,-0.051194377243519,-0.059383522719145]],[[-0.0035713631659746,-0.092889837920666,0.062206905335188],[0.040566265583038,-0.058403108268976,-0.056047517806292],[-0.039373863488436,-0.040375608950853,0.0089812651276588]],[[0.054587371647358,0.0071637453511357,0.02360301092267],[-0.0145293623209,-0.033734273165464,-0.029686730355024],[-0.038033567368984,-0.025836676359177,-0.046076316386461]],[[-0.004008618183434,-0.045819640159607,-0.063001275062561],[-0.0020567798055708,0.012016110122204,0.00040894822450355],[0.0086112851276994,-0.033382795751095,0.042272716760635]],[[-0.022472025826573,0.004381475970149,-0.0045446008443832],[0.055789943784475,-0.073528274893761,0.06189901381731],[-0.048519600182772,0.072356358170509,0.0043423711322248]],[[-0.035241290926933,0.044839072972536,0.013753631152213],[-0.023507693782449,-0.028555948287249,-0.0040241959504783],[0.005950341001153,-0.004404915496707,0.0043601035140455]],[[-0.0030400694813579,-0.029137481004,0.0084839267656207],[-0.012012365274131,-0.023035626858473,0.030860468745232],[0.04847875982523,0.0003092200786341,0.0027062410954386]],[[-0.030909333378077,0.017977857962251,0.057610135525465],[0.034919813275337,-0.020013941451907,-0.050418272614479],[0.040479488670826,-0.0045144101604819,0.027937553822994]],[[-0.030057555064559,-0.054303701967001,-0.018718384206295],[-0.012897506356239,0.056717298924923,0.00082757888594642],[-0.072984002530575,0.077754974365234,-0.0034874088596553]],[[0.075713060796261,0.027187613770366,0.075697883963585],[0.047789383679628,0.0081537896767259,-0.0015324411215261],[0.010101935826242,-0.015909036621451,0.061899270862341]],[[0.059634897857904,-0.080627851188183,-0.0031800977885723],[-0.033720761537552,0.041424382477999,-0.017810942605138],[0.018371107056737,-0.047022607177496,0.042443264275789]],[[0.015140384435654,0.051053866744041,0.042366348206997],[0.051652807742357,0.043393943458796,-0.03919168561697],[-0.0039344881661236,-0.023211719468236,0.015019954182208]],[[-0.0099665569141507,0.0099276658147573,-0.013393758796155],[0.015741817653179,0.033755157142878,-0.017911460250616],[0.043721806257963,0.0023963691201061,-0.00046809474588372]],[[-0.046824917197227,0.014533624053001,0.079199872910976],[-0.022124180570245,-0.047584842890501,0.065304532647133],[0.019720202311873,-0.016906285658479,0.046384241431952]],[[0.020039841532707,0.02815836854279,0.012777714990079],[-0.015702525153756,0.021741786971688,0.069725036621094],[-0.020192410796881,-0.033102579414845,-0.0088592628017068]],[[0.033646494150162,-0.035696659237146,0.015886582434177],[-0.090035393834114,-0.0099278623238206,-0.0091666653752327],[-0.0023687609937042,-0.034231256693602,0.019846806302667]],[[-0.074187964200974,-0.079491101205349,0.012571425177157],[0.046105332672596,-0.067543894052505,-0.0050743333995342],[0.05159729346633,-0.030165333300829,-0.018639171496034]],[[-0.050737176090479,0.011799203231931,-0.050541669130325],[-0.089907266199589,0.036177173256874,0.012930028140545],[0.025089543312788,-0.016645230352879,0.0040938993915915]],[[0.061612837016582,-0.0012244414538145,0.025472125038505],[-0.067457608878613,0.0035994662903249,0.030176050961018],[0.024089425802231,-0.034262020140886,-0.04001572728157]],[[-0.036594603210688,-0.030729077756405,0.0023063118569553],[-0.059670384973288,0.03454215452075,-0.0048151314258575],[-0.019762577489018,-0.020264204591513,-0.037217661738396]],[[-0.038419146090746,0.032706700265408,0.015757700428367],[0.036370374262333,0.027824655175209,0.0027239623013884],[-0.027301678434014,0.019811132922769,0.020608171820641]],[[0.022955559194088,-0.021612169221044,0.008431239053607],[-0.0043382933363318,0.015020336955786,-0.0064110378734767],[-0.035222928971052,0.053282342851162,0.0041671898216009]],[[0.028135625645518,0.02523946762085,0.012764335609972],[-0.016581105068326,-0.068736881017685,-0.013373523950577],[-0.027451371774077,-0.042038526386023,-0.0239840131253]],[[0.014715441502631,-0.086884342133999,-0.010860088281333],[0.011323648504913,0.038745515048504,0.032378032803535],[0.038039427250624,-0.0189229529351,0.048258673399687]],[[0.035066295415163,0.034500494599342,-0.0056194453500211],[-0.0028797797858715,0.0045676929876208,0.033678159117699],[-0.0012258448405191,0.025731956586242,0.025171872228384]],[[-0.059123069047928,0.048514612019062,0.048174720257521],[0.032720480114222,0.019655730575323,0.033743593841791],[-0.013812806457281,-0.023490950465202,0.014426482841372]],[[-0.00046139163896441,0.011397639289498,0.0049541261978447],[-0.017466701567173,0.0048896027728915,0.049142517149448],[0.013137064874172,0.012863310053945,0.04818594828248]],[[0.0024613090790808,-0.01136967446655,0.028315028175712],[0.023482043296099,0.0096593834459782,0.014980905689299],[-0.016434675082564,-0.0083356155082583,0.020491659641266]],[[-0.030987326055765,0.032026704400778,0.074253641068935],[-0.031104542315006,-0.023874146863818,0.06247103959322],[-0.023131189867854,0.0025038062594831,-0.0096433199942112]],[[-0.059862781316042,-0.060169752687216,-0.12504312396049],[-0.0041683595627546,-0.060877781361341,-0.035145480185747],[-0.065476275980473,-0.055993434041739,-0.14718002080917]],[[0.040022473782301,-0.060548342764378,0.045086916536093],[-0.033976145088673,-0.020251808688045,0.023114794865251],[-0.038848146796227,-0.017024055123329,0.031422175467014]],[[-0.027920622378588,-0.024518609046936,-0.0040329727344215],[0.0070750247687101,-0.074055381119251,-0.010951709933579],[0.0084679266437888,-0.0041780034080148,0.059978771954775]],[[-0.015564586035907,-0.023062175139785,-0.013081073760986],[0.070881403982639,-0.038617186248302,0.050118025392294],[0.061956465244293,0.037790816277266,-0.024431250989437]],[[0.038395520299673,0.047922216355801,0.012906611897051],[1.1715083019226e-05,0.042431231588125,0.0069862548261881],[-0.01137482188642,-0.059847790747881,0.076806671917439]],[[-0.055276624858379,-0.0085650617256761,-0.019014062359929],[0.016293298453093,-0.051989085972309,0.01042044442147],[0.03061431273818,-0.028233835473657,0.01272295974195]],[[0.052953712642193,0.0040655564516783,-0.0010453638387844],[-0.051095616072416,0.074022434651852,-0.022676700726151],[0.014584272168577,0.023780304938555,0.044378887861967]],[[0.03047170676291,0.033213187009096,-0.0035200412385166],[0.036710057407618,-0.065607845783234,-0.043442707508802],[0.064274996519089,0.029277300462127,-0.012412073090672]],[[-0.012134302407503,-0.00019223104754928,-0.046244356781244],[0.061727181077003,0.034717578440905,-0.028154795989394],[0.019083572551608,-0.0070346663706005,-0.013077663257718]],[[-0.046559270471334,0.090816929936409,-0.015108594670892],[-0.018231941387057,-0.03938864544034,0.04402381926775],[-0.012956532649696,-0.033981069922447,0.013594512827694]],[[-0.00076904619345441,0.0044537605717778,-0.051445588469505],[-0.022466717287898,-0.032483484596014,0.0028766260948032],[-0.00019207768491469,-0.017039820551872,-0.019346751272678]],[[0.011258230544627,-0.071277007460594,0.063418477773666],[0.049962721765041,0.10930705815554,-0.065318122506142],[0.02674057148397,0.02063750103116,-0.013168340548873]],[[-0.0062898192554712,0.019840098917484,0.037282403558493],[0.0057956548407674,-0.0066305114887655,-0.058088231831789],[0.012642783112824,0.032766222953796,-0.030605537816882]],[[0.056048974394798,0.0097323628142476,-0.021241899579763],[0.0028723478317261,0.050344541668892,-0.014534915797412],[-0.0097390115261078,0.012924171052873,0.041391845792532]],[[0.02634122595191,-0.098046228289604,-0.0047116987407207],[0.00011731322592823,-0.019693519920111,0.056554056704044],[0.017432989552617,-0.012754513882101,-0.081705078482628]],[[-0.036976717412472,0.016595877707005,-0.022651946172118],[-0.03817418590188,-0.016262670978904,-0.017725652083755],[0.054895829409361,-0.0037171717267483,0.0040205013938248]],[[0.046412937343121,0.0025047075469047,-0.017707545310259],[-0.040116410702467,0.024640521034598,-0.016962885856628],[-0.024211008101702,0.029900280758739,-0.038087341934443]],[[-0.0101064061746,0.11866094917059,0.026888843625784],[-0.05604213103652,-0.021685987710953,0.044932313263416],[-0.057164125144482,0.04392833262682,-0.063959166407585]]],[[[-0.036685701459646,-0.093380086123943,-0.12891773879528],[0.0033586749341339,-0.023260416463017,-0.12382412701845],[0.14109070599079,0.051761239767075,0.082663558423519]],[[0.18587586283684,-0.016958875581622,0.010880364105105],[0.034995302557945,0.044228706508875,-0.12591169774532],[-0.15651679039001,0.10065364092588,0.18447422981262]],[[0.0043206228874624,0.093119248747826,0.20288591086864],[0.14319618046284,0.089538365602493,-0.040875378996134],[0.068180583417416,-0.0019676631782204,-0.053073309361935]],[[-0.026784809306264,-0.049607146531343,-0.056601896882057],[-0.054082315415144,-0.0011401554802433,0.028184156864882],[0.020163489505649,-0.022597217932343,0.017894417047501]],[[-0.02669333666563,-0.062444604933262,-0.029264450073242],[-0.12238229066133,-0.028016161173582,0.073813311755657],[0.090458646416664,0.064563237130642,0.075357340276241]],[[0.043991889804602,-0.067015066742897,-0.023071700707078],[-0.034584280103445,-0.035467311739922,0.024763753637671],[0.039384305477142,0.061318952590227,-0.023858156055212]],[[0.018939547240734,-0.085571579635143,0.003023000434041],[0.18574106693268,0.018101679161191,-0.070322699844837],[-0.079888381063938,0.038985431194305,0.12196412682533]],[[-0.049837470054626,-0.033845063298941,0.20946118235588],[-0.13203191757202,0.017976120114326,-0.12085910141468],[-0.13142257928848,0.11255392432213,-0.011014758609235]],[[0.035767905414104,-0.031924426555634,0.0255131945014],[-0.082317136228085,0.13907296955585,0.049132466316223],[-0.050881743431091,-0.070372365415096,0.023544240742922]],[[0.099794432520866,-0.075957991182804,-0.023442147299647],[0.025640035048127,-0.039928700774908,-0.087661556899548],[0.022149883210659,-0.019340636208653,-0.022610360756516]],[[-0.12792517244816,-0.014549505896866,-0.011575015261769],[-0.013797088526189,-0.024363957345486,-0.087595663964748],[-0.0093716168776155,0.055185947567225,-0.024175142869353]],[[-0.035175509750843,-0.024378646165133,-0.020466044545174],[0.010292042978108,-0.13322108983994,-0.10911787301302],[0.084328547120094,0.0073411865159869,0.033757530152798]],[[-0.035035610198975,-0.043581783771515,-0.031600303947926],[-0.0069058807566762,0.011008089408278,-0.1138444468379],[0.022134803235531,-0.0594785772264,-0.023357626050711]],[[-0.017549203708768,0.012265022844076,0.034700222313404],[0.042631283402443,-0.018317703157663,0.024755032733083],[-0.019619550555944,-0.077000170946121,0.23462536931038]],[[-0.06097249686718,0.1531116515398,0.028982542455196],[0.052842665463686,-0.011775483377278,-0.10998084396124],[-0.067575693130493,0.0014998170081526,-0.053928058594465]],[[0.0041059316135943,0.015524999238551,-0.15166670084],[0.0041991956532001,0.085695005953312,-0.10657675564289],[0.063922040164471,-0.074424706399441,0.00096028798725456]],[[-0.085712857544422,0.046818323433399,-0.073734417557716],[-0.043131686747074,0.015315508469939,-0.0037524388171732],[-0.059945151209831,-0.054487686604261,0.048821713775396]],[[-0.062536545097828,0.11787810921669,0.045098453760147],[0.12606917321682,-0.11090387403965,0.065050087869167],[0.20214737951756,0.11634000390768,-0.030724728479981]],[[0.1434917896986,-0.066865980625153,0.10399777442217],[-0.012973602861166,-0.068834647536278,0.12659376859665],[0.059883140027523,-0.038193218410015,-0.0082858810201287]],[[0.011136161163449,-0.018926789984107,-0.048211243003607],[-0.15834361314774,-0.020230451598763,-0.10200400650501],[-0.056438073515892,-0.018843676894903,0.053408347070217]],[[-0.061662290245295,-0.079796835780144,0.0093521662056446],[-0.20484012365341,-0.086346298456192,0.027483858168125],[0.025945853441954,-0.07161932438612,-0.13193167746067]],[[-0.02705449424684,0.025921009480953,0.093695871531963],[0.081349492073059,-0.0060004624538124,-0.061788696795702],[-0.049929104745388,-0.036269690841436,0.08905977755785]],[[0.041574265807867,-0.062302943319082,0.050827506929636],[0.12776623666286,0.079481035470963,0.037868704646826],[0.071250297129154,0.15057575702667,0.15094688534737]],[[-0.086329355835915,-0.048849638551474,-0.069418802857399],[-0.097558841109276,-0.077916607260704,-0.14616478979588],[-0.081238090991974,-0.056010387837887,0.013664590194821]],[[-0.026535654440522,-0.0087929796427488,-0.028679998591542],[-0.099161513149738,0.094920642673969,0.020321803167462],[0.077974326908588,0.071024261415005,0.062111459672451]],[[0.026300851255655,-0.023963877931237,0.029379520565271],[-0.046776913106441,-0.0089844036847353,-0.15033875405788],[-0.050101641565561,-0.019710652530193,-0.015646871179342]],[[-0.070765718817711,-0.028668599203229,0.068270228803158],[0.095365740358829,-0.027887286618352,0.026928141713142],[0.046623427420855,0.08084599673748,0.10710849612951]],[[0.12232233583927,0.052256647497416,-0.076633311808109],[0.16215334832668,0.020587887614965,0.08555056899786],[0.0090594263747334,-0.047288458794355,-0.10842663049698]],[[-0.055194996297359,-0.034466698765755,0.020747544243932],[0.13506269454956,-0.03720324113965,-0.086478464305401],[0.1201778948307,0.052028838545084,-0.11875532567501]],[[-0.010496894828975,0.0021394349168986,-0.087904788553715],[-0.024865165352821,-0.029420336708426,-0.073489725589752],[-0.059006109833717,0.016914859414101,0.021767368540168]],[[-0.11646222323179,-0.051871459931135,-0.0049202917143703],[-0.020933602005243,-0.044453397393227,-0.14811298251152],[0.038404569029808,-0.074310399591923,0.013457616791129]],[[-0.036852270364761,0.047671999782324,0.081763572990894],[-0.093270890414715,-0.11605910211802,0.18576236069202],[0.027945149689913,-0.026369186118245,-0.10231872648001]],[[0.087989084422588,0.022728785872459,0.073042668402195],[0.050805665552616,0.078518956899643,0.06471610814333],[0.26010408997536,-0.01161751896143,0.0075777904130518]],[[-0.18377240002155,-0.022804953157902,-0.058458413928747],[-0.018839422613382,0.032368768006563,-0.030676880851388],[-0.10575220733881,0.078804582357407,0.057567562907934]],[[0.056299354881048,-0.10935243964195,-0.025028385221958],[-0.049266871064901,0.025215597823262,-0.21610414981842],[0.073909439146519,-0.19643096625805,-0.056148566305637]],[[0.079035870730877,0.041026793420315,-0.025883989408612],[-0.042378768324852,-0.021768176928163,-0.052548337727785],[0.034414526075125,0.007464709226042,0.080418854951859]],[[0.027632921934128,0.072646111249924,0.083112612366676],[-0.25492402911186,0.056807484477758,-0.00089527940144762],[0.10170331597328,0.074582122266293,0.10305541008711]],[[-0.074176385998726,0.0046498156152666,-0.10337193310261],[-0.22226963937283,-0.0018538244767115,-0.10303885489702],[0.0063203405588865,0.044053364545107,-0.10781851410866]],[[0.099092431366444,0.0026547312736511,-0.19441749155521],[0.059135500341654,0.080372519791126,-0.032708957791328],[-0.10699321329594,0.029948277398944,-0.12370349466801]],[[-0.1690977960825,-0.12667346000671,-0.098322823643684],[-0.1448310315609,-0.06334026902914,-0.041294876486063],[-0.0056832525879145,-0.06998473405838,-0.15734019875526]],[[0.11116804182529,-0.059791691601276,0.10386870801449],[-0.0022700710687786,-0.10804423689842,-0.0006148818647489],[0.1243689134717,0.11489727348089,-0.1866413205862]],[[0.089794665575027,0.051207363605499,0.077748164534569],[0.037658702582121,0.020290832966566,-0.025452632457018],[0.048695430159569,0.14301306009293,0.1097866743803]],[[-0.060975335538387,-0.014347762800753,-0.090758092701435],[-0.013941280543804,0.011274528689682,0.0090460767969489],[-0.10664735734463,-0.083299688994884,0.016204543411732]],[[0.011747095733881,-0.10423295944929,-0.082043275237083],[-0.12306468188763,-0.12690787017345,0.063177995383739],[-0.015102168545127,0.025355748832226,-0.060517285019159]],[[-0.28592255711555,-0.13265062868595,-0.18925474584103],[-0.032183669507504,-0.08702015131712,0.044644266366959],[0.017019640654325,0.024482730776072,0.027805760502815]],[[-0.078374221920967,-0.064306847751141,-0.097494162619114],[0.029819142073393,0.037416715174913,0.0086463242769241],[0.016845164820552,-0.097783334553242,0.05973307788372]],[[-0.028966963291168,-0.051258374005556,0.0069149555638433],[-0.030320949852467,0.0051311394199729,0.025507451966405],[-0.038916178047657,0.0082331858575344,-0.050618283450603]],[[-0.032006490975618,0.039469007402658,-0.068854883313179],[0.20491698384285,-0.17549483478069,-0.12133470922709],[-0.078911282122135,-0.0083142323419452,0.023682570084929]],[[0.031319614499807,0.11997303366661,-0.090106830000877],[-0.015353146009147,0.063314974308014,-0.072356477379799],[-0.0090199178084731,0.091578409075737,-0.018799535930157]],[[-0.14041219651699,-0.027726555243134,0.0074683260172606],[-0.034338880330324,-0.00094928848557174,0.021076234057546],[-0.038707669824362,0.021996693685651,0.0070419455878437]],[[-0.089344955980778,-0.11596418917179,-0.095519438385963],[0.010770953260362,-0.087702892720699,-0.033644393086433],[-0.062045209109783,-0.18630020320415,-0.0073097548447549]],[[0.032253783196211,0.021196139976382,0.022610554471612],[0.080677039921284,0.020858209580183,0.053217262029648],[0.031700421124697,-0.085480257868767,-0.013103095814586]],[[0.032540339976549,-0.028934912756085,-0.037465374916792],[-0.059643644839525,-0.13005854189396,-0.076864518225193],[0.011847310699522,0.060445081442595,-0.018243113532662]],[[-0.023830361664295,0.017479833215475,0.016304617747664],[0.090498760342598,0.0038674173410982,-0.045520693063736],[0.0064694932661951,-0.12568221986294,-0.1513856947422]],[[0.023051405325532,0.0031217790674418,0.097993984818459],[-0.027083242312074,0.062324535101652,0.012301662005484],[0.15796168148518,-0.027824504300952,-0.0091421660035849]],[[-0.10866229236126,0.10084418952465,-0.11777985841036],[0.073970012366772,0.0041176602244377,-0.04632580652833],[-0.027751849964261,0.17999158799648,-0.034076705574989]],[[0.17247334122658,-0.039062470197678,-0.018296079710126],[0.067720130085945,-0.063340149819851,-0.0083761168643832],[0.033791765570641,-0.0029356507584453,-0.040420483797789]],[[0.064653016626835,0.041333772242069,-0.13681855797768],[-0.10431727766991,-0.1190973892808,-0.11154392361641],[-0.21474686264992,-0.051316320896149,-0.053936116397381]],[[-0.072863213717937,-0.038551446050406,-0.097713999450207],[-0.080673955380917,-0.061082378029823,-0.0043295947834849],[0.11511810868979,-0.046870328485966,-0.08296550065279]],[[0.049727652221918,0.1138930618763,0.088554501533508],[0.0007279755664058,-0.0050607086159289,0.10702101141214],[0.033794529736042,0.016826247796416,-0.091534428298473]],[[-0.059039678424597,0.016515430063009,-0.12040705233812],[-0.036763153970242,0.039673734456301,-0.034965887665749],[0.095366261899471,0.00083861977327615,0.0060740900225937]],[[-0.079160779714584,-0.081453509628773,0.019863791763783],[0.012473993003368,0.031917829066515,0.023780751973391],[-0.054552841931581,-0.054774526506662,-0.0069935154169798]],[[-0.050697196274996,0.07642612606287,0.077429637312889],[-0.10932234674692,-0.048499975353479,-0.065769255161285],[0.022779809311032,0.037520244717598,0.0063137798570096]],[[0.061960976570845,0.006037219427526,-0.039859116077423],[-0.034564804285765,-0.029354710131884,0.073773913085461],[-0.026202397421002,-0.012281202711165,0.10029618442059]],[[-0.033845879137516,-0.016382938250899,0.007787236943841],[-0.043937411159277,-0.012875307351351,-0.020593177527189],[-0.029571359977126,-0.099568098783493,-0.083736851811409]],[[0.056823823601007,0.13803462684155,-0.012869804166257],[0.079988472163677,-0.17865993082523,0.039833500981331],[-0.10328681021929,-0.090201072394848,0.061308603733778]],[[-0.10797925293446,0.1039327532053,0.012517138384283],[0.14665116369724,-0.07809616625309,-0.14533333480358],[0.030769612640142,-0.046362489461899,-0.037425938993692]],[[-0.025264352560043,-0.060739636421204,-0.005412470549345],[-0.082979321479797,-0.017851209267974,-0.019461734220386],[-0.044842761009932,0.034149870276451,0.045742563903332]],[[0.07612581551075,0.08121719956398,-0.085588961839676],[-0.017670020461082,-0.058846227824688,0.097738705575466],[-0.037211805582047,0.0017868349095806,-0.029730694368482]],[[0.1409023553133,0.0028410556260496,-0.1225012242794],[0.030028888955712,-0.091987475752831,-0.037641048431396],[0.020584834739566,-0.14064674079418,-0.022291649132967]],[[-0.022750632837415,0.035937380045652,0.081523634493351],[-0.31514385342598,-0.12583386898041,-0.16043123602867],[0.05439330637455,-0.18668948113918,-0.16746307909489]],[[-0.11304011195898,-0.10220196098089,-0.044401232153177],[-0.051860678941011,0.024964703246951,-0.048853851854801],[0.098009124398232,-0.012667908333242,0.0080205565318465]],[[0.056511208415031,-0.037764806300402,0.010241280309856],[-0.079682871699333,-0.0081814061850309,-0.065661750733852],[-0.05517952144146,-0.03316643461585,0.070653036236763]],[[-0.11827677488327,0.006411811336875,-0.08386555314064],[-0.028956895694137,0.080713011324406,0.043140094727278],[-0.053317073732615,-0.083519451320171,0.044727079570293]],[[-0.046068198978901,0.074374832212925,-0.10810534656048],[-0.065130122005939,-0.0090522235259414,-0.11327577382326],[-0.06749289482832,-0.092818304896355,0.0094749936833978]],[[-0.031610023230314,0.056598499417305,-0.027590366080403],[-0.040842138230801,0.099613174796104,-0.095056183636189],[-0.030748097226024,0.0088235205039382,-0.14585180580616]],[[-0.008092800155282,-0.17549504339695,-0.122154250741],[0.095713399350643,-0.038520891219378,0.039273094385862],[-0.044310040771961,-0.071615405380726,-0.057016685605049]],[[-0.050589621067047,-0.011087303981185,-0.052788104861975],[-0.025397529825568,-0.055096969008446,0.0087531376630068],[0.043556533753872,-0.0077994805760682,0.066187165677547]],[[0.009688881225884,0.026227284222841,0.027687642723322],[0.052946880459785,0.13093835115433,-0.0029154722578824],[0.013622239232063,0.0090982327237725,-0.054721027612686]],[[-0.17806036770344,-0.0091961631551385,-0.046429648995399],[0.012881391681731,-0.019226087257266,-0.01947470381856],[-0.0033349387813359,-0.12598173320293,-0.084044992923737]],[[0.040343482047319,-0.098999112844467,-0.015736758708954],[-0.0089854663237929,-0.21379202604294,0.0063120760023594],[0.0055648637935519,-0.054814741015434,0.024326683953404]],[[0.0017881491221488,-0.10622017085552,0.075959384441376],[-0.036968983709812,-0.08535074442625,-0.088920071721077],[-0.020139828324318,-0.031204411759973,0.22275651991367]],[[-0.02319055236876,-0.10409858077765,-0.0029239587020129],[0.031550422310829,-0.054435562342405,0.15126124024391],[0.011166031472385,-0.078253351151943,0.10117972642183]],[[-0.17159329354763,-0.12962606549263,-0.017905615270138],[-0.010390828363597,0.017212141305208,0.00036921701394022],[0.052153412252665,0.016280544921756,0.043999016284943]],[[0.025607148185372,0.05611352995038,0.0034816386178136],[0.01854676194489,0.079312466084957,0.066324926912785],[0.09459562599659,-0.1115964949131,0.03172318264842]],[[-0.0083365365862846,-0.035014152526855,-0.03936817497015],[0.010228624567389,-0.088940866291523,0.15126278996468],[0.018418239429593,-0.0686189904809,-0.067511849105358]],[[-0.11507868021727,-0.12348221987486,-0.048107873648405],[0.11598126590252,0.029414316639304,0.034684527665377],[0.18888038396835,0.085468575358391,0.12860400974751]],[[0.077470399439335,0.15141256153584,-0.023020938038826],[0.089190974831581,0.12005840986967,-0.15755289793015],[0.073893837630749,-0.035030424594879,-0.046326745301485]],[[-0.032691340893507,-0.043898314237595,0.13106371462345],[0.23975411057472,0.02289566770196,-0.042590655386448],[0.060871880501509,-0.16538500785828,0.13610441982746]],[[-0.071173496544361,-0.021009175106883,0.066494531929493],[0.0016154082259163,-0.099501803517342,-0.044081065803766],[0.058900903910398,0.19005489349365,0.13323938846588]],[[-0.070499390363693,-0.021859969943762,0.032254353165627],[-0.10057897120714,-0.041473083198071,0.21478505432606],[-0.12352821975946,0.16855448484421,0.23333147168159]],[[0.079279020428658,0.049557730555534,-0.056805364787579],[0.13014568388462,-0.017395939677954,-0.050732579082251],[0.057795096188784,-0.042255729436874,-0.10529022663832]],[[-0.031155006960034,0.0035111114848405,-0.037256218492985],[0.11467745900154,-0.045511528849602,0.012726034037769],[0.095993742346764,0.048716515302658,-0.0090041421353817]],[[-0.16563960909843,0.02078877389431,-0.013164579868317],[0.020644688978791,0.009638256393373,-0.030817797407508],[-0.046395864337683,-0.11778222769499,0.030850408598781]],[[0.021297601982951,-0.033187318593264,0.043335687369108],[-0.00054535927483812,0.0008018035441637,-0.064864195883274],[0.071551702916622,-0.066400997340679,-0.021705120801926]],[[0.024990554898977,-0.0099005224183202,0.18678265810013],[-0.039875436574221,-0.0060374946333468,-0.10865399241447],[0.097844958305359,-0.018138159066439,0.0029993599746376]],[[-0.013143216259778,0.026939205825329,-0.12580391764641],[-0.048541411757469,0.037141244858503,0.11452358961105],[0.089997529983521,-0.036551363766193,-0.091917671263218]],[[0.14367605745792,0.11000769585371,0.028944218531251],[0.015248832292855,0.053774476051331,-0.048405721783638],[0.032761868089437,0.022033795714378,0.13531011343002]],[[0.056836605072021,0.012885793112218,-0.033878780901432],[-0.030561190098524,0.043202802538872,0.026834713295102],[0.12078589200974,0.066392906010151,0.19266065955162]],[[0.14726603031158,0.011238526552916,-0.021789453923702],[-0.2009659409523,-0.07341130822897,0.033631276339293],[0.084905065596104,0.035750523209572,0.17664377391338]],[[-0.078383006155491,-0.026706743985415,0.046552859246731],[-0.1183946877718,-0.081263996660709,-0.029655199497938],[0.017889088019729,-0.022748973220587,0.081413820385933]],[[0.040514048188925,0.12403508275747,0.19257770478725],[-0.08462581038475,0.081001117825508,-0.040178935974836],[0.19829873740673,0.16183958947659,0.15951406955719]],[[-0.071134313941002,-0.036792956292629,-0.026831859722733],[-0.06319971382618,-0.046751715242863,0.043348833918571],[-0.062155928462744,-0.077740557491779,0.031983595341444]],[[0.066610358655453,-0.03021857701242,-0.068247616291046],[0.042021997272968,0.14943379163742,0.10056519508362],[-0.16263265907764,0.012767042033374,-0.031256139278412]],[[-0.21600842475891,-0.072003230452538,0.071491412818432],[-0.13249671459198,-0.06474856287241,-0.056304309517145],[-0.034548718482256,-0.088579699397087,0.039125606417656]],[[0.050961900502443,-0.022591177374125,-0.011064733378589],[-0.058696873486042,-0.059030741453171,0.038070749491453],[-0.032732527703047,0.00015764763520565,0.010093620046973]],[[0.0034441414754838,-0.049883991479874,0.014770613051951],[-0.091489858925343,-0.011021417565644,-0.084299065172672],[-0.024950888007879,0.017488412559032,-0.099793016910553]],[[0.13266718387604,0.0031294412910938,-0.073566451668739],[-0.067261554300785,-0.089547470211983,0.082341909408569],[-0.045122519135475,-0.021583866328001,-0.10045566409826]],[[-0.040516313165426,-0.0060194847173989,0.015020292252302],[-0.050619650632143,0.14270363748074,-0.0056623197160661],[0.12441899627447,0.1174529120326,-0.065966308116913]],[[0.040041755884886,-0.011596451513469,-0.16295462846756],[0.076505765318871,0.037013698369265,0.047335602343082],[0.071372427046299,0.069112606346607,-0.043072216212749]],[[-0.062787212431431,0.0030650445260108,-0.0065838377922773],[-0.033846043050289,-0.11006473749876,0.010294679552317],[0.074232690036297,-0.050067767500877,0.0022697909735143]],[[-0.046325620263815,0.022282706573606,-0.099211648106575],[0.0072847572155297,-0.027270957827568,-0.021790759637952],[0.052911460399628,0.13647918403149,0.00079062447184697]],[[0.22702230513096,-0.0020993368234485,-0.11550357192755],[0.084192268550396,0.013717716559768,0.04804403334856],[0.051894992589951,0.11507875472307,-0.04077447578311]],[[-0.092710189521313,-0.0078591564670205,-0.14985539019108],[0.1134784668684,-0.010358467698097,-0.051222559064627],[-0.023289300501347,-0.067583099007607,-0.042874567210674]],[[0.021614246070385,-0.012895487248898,0.008328627794981],[0.13101187348366,0.029820678755641,0.086436033248901],[0.013831445947289,0.0197479929775,0.079973638057709]],[[-0.0028992341831326,-0.014967511408031,-0.059322822839022],[0.045541230589151,-0.30675095319748,-0.0410599373281],[0.012411015108228,-0.051651444286108,-0.063477851450443]],[[-0.093750298023224,-0.04976113140583,0.12484530359507],[0.01768190599978,-0.18437673151493,-0.048038497567177],[0.182327657938,0.084890089929104,-0.081542074680328]],[[0.081091471016407,0.063896186649799,-0.05102427303791],[-0.028405437245965,-0.02123055793345,0.010880152694881],[0.037070374935865,-0.047938473522663,-0.024862287566066]],[[-0.0077536865137517,-0.087881967425346,-0.052096702158451],[-0.10451224446297,-0.040244780480862,-0.0048928819596767],[0.18621258437634,0.047943171113729,0.075579971075058]],[[0.073718577623367,0.04289722815156,0.047469362616539],[0.07195557653904,0.11055780947208,0.093216069042683],[0.023915795609355,-0.10313984751701,-0.13035251200199]],[[0.072311475872993,0.025075880810618,0.090430252254009],[-0.10859589278698,-0.06396197527647,-0.043813321739435],[0.033201139420271,0.077623806893826,0.0099278911948204]],[[-0.0070603373460472,0.011423771269619,0.14875696599483],[0.022588096559048,0.03057680465281,0.077571392059326],[0.026795089244843,0.02618146315217,-0.072052545845509]],[[-0.0052358764223754,-0.1705064624548,-0.15022569894791],[-0.17465651035309,0.038860026746988,0.0088954083621502],[-0.061086274683475,0.023804772645235,-0.13687001168728]],[[-0.073161318898201,0.045429553836584,-0.0062796012498438],[0.01180870551616,0.084911420941353,-0.13852880895138],[0.057648751884699,0.072681002318859,-0.046384498476982]],[[0.026108166202903,0.14602756500244,0.1007466390729],[0.13018351793289,0.15435756742954,0.10892909020185],[0.18219664692879,0.034004736691713,0.011318858712912]],[[-0.088664174079895,-0.12838992476463,-0.068555295467377],[-0.051288519054651,-0.061575617641211,0.038231402635574],[-0.026356615126133,0.15164233744144,0.066261455416679]],[[0.041636865586042,-0.0033067790791392,0.083174876868725],[-0.1647674292326,0.020467210561037,-0.022148475050926],[-0.034590557217598,-0.078056700527668,-0.1070763617754]],[[-0.18208834528923,-0.046955905854702,-0.15591666102409],[-0.15311181545258,0.004219176247716,0.019349036738276],[-0.10095544159412,0.013093180954456,0.10412143170834]]],[[[-0.049110602587461,0.04320428147912,0.0088166976347566],[-0.028002787381411,0.039396747946739,0.019535453990102],[0.055781103670597,0.10919815301895,-0.024810411036015]],[[0.017733052372932,0.026503641158342,-0.039970114827156],[-0.019930550828576,-0.016610980033875,-0.045313637703657],[0.0064161135815084,-0.0063794045709074,0.0074242237024009]],[[0.016504799947143,0.017211530357599,-0.0064281583763659],[-0.0079255076125264,0.0071996748447418,-0.036969117820263],[-0.020989885553718,0.066715352237225,-0.031109860166907]],[[0.038439102470875,-0.015746630728245,-0.006783923599869],[0.029649967327714,-0.010891994461417,-0.031781803816557],[0.092585124075413,-0.013098791241646,0.021391877904534]],[[0.037878908216953,-0.049838125705719,-0.028180696070194],[0.0054964912123978,-0.026413876563311,0.029703553766012],[0.055908534675837,-0.0073008961044252,-0.0092760985717177]],[[0.04433187097311,0.05534228682518,0.036270529031754],[-0.051087979227304,-0.047230340540409,-0.024661436676979],[-0.015801956877112,-0.0089442795142531,-0.01043183170259]],[[0.0058715869672596,0.02150378935039,-0.014159788377583],[-0.065944448113441,-0.018382845446467,0.025205684825778],[0.016918327659369,0.058245461434126,-0.074715010821819]],[[0.027186894789338,-0.08045819401741,0.0088781248778105],[0.010424359701574,-0.0092951431870461,0.049214370548725],[-0.026535782963037,0.034538269042969,-0.0018314671469852]],[[-0.041733089834452,0.038307759910822,0.07068257778883],[0.0052299043163657,0.065563179552555,-0.055674847215414],[-0.0046607097610831,-0.02069922350347,-0.10266941785812]],[[0.024439543485641,0.014324749819934,0.0059861661866307],[0.045720152556896,-0.032310955226421,0.023491602391005],[0.0084425499662757,0.0015099416486919,-0.053801160305738]],[[0.0042805848643184,0.01763566210866,0.094431392848492],[-0.0031603008974344,-0.021327367052436,0.0046292981132865],[0.033567111939192,0.056599330157042,0.040376335382462]],[[-0.00098595418967307,-0.019338890910149,0.014437754638493],[0.012148128822446,-0.030812457203865,0.042601443827152],[-0.0041242907755077,-0.051324050873518,0.0048771211877465]],[[0.017171135172248,-0.018348036333919,-0.0047083552926779],[0.038575518876314,0.020151764154434,0.025258496403694],[0.012864088639617,0.022241909056902,-0.015097455121577]],[[-0.0032636565156281,0.029319867491722,-0.057661108672619],[0.00069428631104529,0.031240684911609,0.024375971406698],[0.034639753401279,-0.02721350826323,0.019588829949498]],[[0.014901418238878,-0.04717905074358,-0.0095512717962265],[0.0162587556988,-0.030475948005915,-0.026258256286383],[0.040446538478136,-0.0051700756885111,-0.043639652431011]],[[-0.0097166765481234,0.057090152055025,0.0071352627128363],[0.023081013932824,0.031942799687386,0.040959604084492],[0.020258389413357,0.034591868519783,0.028484603390098]],[[0.13075104355812,-0.0050203194841743,0.037979226559401],[0.028636870905757,0.047920394688845,0.048725638538599],[0.041868858039379,-0.017400586977601,0.01643499545753]],[[-0.032674536108971,-0.019506836310029,0.0010914453305304],[0.017967481166124,0.10236493498087,0.027731789276004],[0.0054611363448203,-0.065149985253811,9.6797091828194e-05]],[[0.0070939459837973,-0.018778579309583,-0.021948114037514],[-0.088251128792763,0.0062504694797099,0.064419731497765],[0.019753752276301,0.0252645034343,0.025487314909697]],[[0.0048834602348506,0.013995897956192,-0.086978375911713],[0.045270722359419,0.03116169758141,0.016873858869076],[0.037276182323694,0.012292099185288,-0.013115248642862]],[[-0.014088114723563,0.011954741552472,0.0014665269991383],[0.019939243793488,0.044151771813631,-0.017611863091588],[-0.045097380876541,0.027397505939007,0.078151263296604]],[[-0.044023081660271,-0.0078810174018145,-0.01749187707901],[0.03412052989006,0.084567464888096,0.050993178039789],[-0.0017948581371456,0.012726216576993,-0.054500345140696]],[[0.085728667676449,0.14349377155304,-0.014127120375633],[0.073168009519577,0.042190656065941,0.013872675597668],[-0.045106548815966,0.00082912860671058,0.0061148679815233]],[[0.018685707822442,-0.05337005853653,-0.07455039024353],[0.033217694610357,-0.0070357164368033,-0.024961285293102],[0.024798907339573,0.11245132982731,0.023751867935061]],[[0.010489037260413,-0.021780986338854,-0.012204530648887],[0.050915792584419,0.0061075268313289,-0.07884768396616],[0.024041162803769,0.0092332735657692,-0.0021381643600762]],[[-0.028418499976397,0.02713880315423,0.031804271042347],[0.0088739432394505,-0.086639270186424,-0.064760655164719],[0.043634213507175,0.01981589011848,0.031767092645168]],[[0.012942387722433,0.031560752540827,-0.0072013819590211],[-6.9712623371743e-05,-0.0092430971562862,-0.019326541572809],[-0.024084521457553,-0.023452239111066,-0.025485053658485]],[[0.083672642707825,-0.089836746454239,-0.041540559381247],[0.071801342070103,0.069466814398766,0.0055413339287043],[0.039641413837671,0.014292822219431,-0.05883539095521]],[[0.019764311611652,0.01930127106607,-0.022224985063076],[-0.012853540480137,-0.011263371445239,-0.014366495423019],[-0.013739542104304,0.065613090991974,-0.012569161131978]],[[0.092023275792599,0.0041175237856805,-0.044110354036093],[0.022150952368975,0.0045760120265186,-0.028268333524466],[-0.078663989901543,0.052402295172215,0.0029120454564691]],[[0.061218906193972,-0.071732625365257,-0.032793845981359],[0.05724349245429,-0.010524277575314,0.035022661089897],[-0.043927721679211,-0.019166901707649,0.0064278915524483]],[[0.075058557093143,-0.036076828837395,-0.032755397260189],[-0.018570087850094,0.015875123441219,0.027583112940192],[0.11290118843317,0.014486471191049,-0.017015419900417]],[[0.10535009950399,0.031198831275105,-0.065179102122784],[-0.0031195175834,0.099112704396248,-0.022120121866465],[-0.0014918717788532,0.00097824411932379,0.0049206083640456]],[[0.026865703985095,0.032345294952393,0.032914005219936],[0.049532059580088,-0.038571648299694,-0.092822082340717],[-0.00058348558377475,0.036456938832998,0.098930716514587]],[[0.0053342636674643,-0.018094416707754,-0.054840665310621],[-0.027222521603107,0.074620448052883,0.023727240040898],[0.053627166897058,0.023971566930413,0.051632005721331]],[[0.026286594569683,0.12464635074139,-0.10328847169876],[-0.02921905554831,0.097304299473763,0.017804063856602],[0.046970680356026,0.027943387627602,-0.0013025862863287]],[[0.069746345281601,-0.040632277727127,-0.063854426145554],[-0.10211121290922,0.033545922487974,0.078039057552814],[0.025371426716447,-0.030012371018529,-0.065578535199165]],[[-0.039316955953836,0.0086206691339612,0.010479674674571],[-0.031304880976677,0.015400931239128,0.058911558240652],[0.044572904706001,0.024465912953019,0.016546208411455]],[[-0.06610843539238,0.0071873902343214,-0.0029336500447243],[-0.062807522714138,0.0063322721980512,-0.00732914917171],[0.11294870823622,0.041109070181847,-0.023041831329465]],[[0.069530658423901,-0.0078967306762934,-0.013819498941302],[0.094794183969498,0.004538384731859,-0.010729792527854],[-0.065083429217339,-0.0075763883069158,0.057863090187311]],[[0.086432032287121,0.10545569658279,-0.070899315178394],[0.00980185251683,-0.021107343956828,-0.077997349202633],[0.050036258995533,-0.050492029637098,-0.040263514965773]],[[0.038132101297379,0.067665927112103,0.0015233942540362],[0.014003322459757,-0.046289056539536,-0.03506139293313],[0.035358421504498,-0.071881055831909,0.11031644791365]],[[-0.0092585049569607,-0.017942145466805,0.063731357455254],[0.017542455345392,-0.013563133776188,0.0074367267079651],[0.032978985458612,0.077453151345253,0.065547548234463]],[[0.027104487642646,-0.0049771093763411,-0.002847473602742],[0.043582439422607,-0.011221644468606,-0.020407848060131],[0.041622918099165,0.040827374905348,0.022296741604805]],[[-0.027114121243358,0.048205304890871,0.01393414940685],[0.022186813876033,0.031187441200018,-0.00030704314121976],[0.012714922428131,-0.087139248847961,-0.0053537175990641]],[[0.041720416396856,-0.012252676300704,0.01826992444694],[-0.013384215533733,0.051117897033691,-0.026818117126822],[-0.025888429954648,0.0063669048249722,0.0039588105864823]],[[0.069032751023769,-0.059496331959963,-0.0248295776546],[0.021796483546495,-0.037930469959974,0.06034229695797],[0.054029114544392,-0.00062564248219132,-0.047872472554445]],[[0.031572464853525,0.037735987454653,0.059387821704149],[0.0234061088413,0.074772857129574,0.0012301581446081],[-0.05134966224432,-0.028604570776224,0.080745384097099]],[[-0.055002134293318,0.022751918062568,0.057914990931749],[-0.016124051064253,0.03407571464777,-0.036037921905518],[0.018891450017691,-0.011015658266842,0.062794119119644]],[[0.025812910869718,0.078477300703526,-0.10751653462648],[-0.015152947045863,-0.018237370997667,0.063956744968891],[0.036385573446751,-0.071509122848511,-0.089839838445187]],[[0.089615508913994,-0.064599610865116,-0.0058188773691654],[-0.045377980917692,0.047248657792807,-0.018226973712444],[0.089988946914673,0.012590534985065,0.058262076228857]],[[-0.045733977109194,0.058220200240612,-0.062038093805313],[0.0064386422745883,-0.00092021701857448,-0.0049248170107603],[-0.00097748881671578,-0.013033883646131,0.086084328591824]],[[-0.0066053662449121,-0.059601321816444,-0.061803445219994],[-0.075324699282646,0.0036979021970183,-0.050261437892914],[0.0016269503394142,0.010674591176212,-0.029337015002966]],[[-0.00013255915837362,-0.013768107630312,-0.021791754290462],[0.044751051813364,0.0077981208451092,-0.028213026002049],[-0.042413018643856,-0.014340575784445,0.081750191748142]],[[0.097889862954617,-0.035357665270567,0.037897165864706],[0.036814033985138,-0.056250918656588,-0.0035317961592227],[-0.039673488587141,0.080795511603355,-0.040664911270142]],[[0.017586337402463,-0.042383119463921,0.06722205132246],[-0.013936066068709,0.038971964269876,-0.089511096477509],[0.14852479100227,-0.056608285754919,0.025683503597975]],[[0.050444878637791,0.064417645335197,0.011255111545324],[0.024699239060283,0.015009321272373,-0.022773753851652],[0.010487034916878,0.053647380322218,-0.040993057191372]],[[0.047148793935776,0.0046010194346309,-0.019827961921692],[0.037969801574945,0.018567049875855,0.016663221642375],[0.056803412735462,0.020047275349498,0.025613561272621]],[[-0.080763459205627,0.032047554850578,0.058343943208456],[-0.070721708238125,0.029938021674752,0.10316313058138],[0.0015888758935034,-0.0048079541884363,-0.054652482271194]],[[-0.046202816069126,0.036834176629782,-0.022770114243031],[0.10872894525528,0.045120555907488,0.0071848873049021],[0.08265195786953,-0.068418741226196,-0.031293205916882]],[[-0.078831501305103,0.039017397910357,0.030410967767239],[-0.0045452965423465,0.039337109774351,0.065160371363163],[-0.013031763955951,0.043117646127939,-0.0020066879224032]],[[0.044076293706894,-0.011846085079014,0.014210385270417],[-0.014190081506968,-0.02800758741796,-0.008609370328486],[-0.041283562779427,0.021407822147012,-0.014326776377857]],[[0.019662270322442,0.040435254573822,0.078855849802494],[-0.02122550085187,0.009632021188736,0.0046000462025404],[-0.022413514554501,0.017156481742859,0.058114849030972]],[[-0.040401373058558,0.0040162089280784,0.041306830942631],[0.0034925574436784,-0.018958384171128,-0.036084901541471],[0.02396803535521,0.022239172831178,0.024067435413599]],[[-0.017480749636889,-0.044491246342659,-0.029806843027472],[0.10846300423145,0.063065439462662,0.024018526077271],[0.0020324077922851,0.012252235785127,-0.012639227323234]],[[-0.016873246058822,0.039678364992142,-0.045246902853251],[-0.10370025038719,0.057628590613604,-0.016818586736917],[0.025674445554614,0.01083371322602,0.098678559064865]],[[-0.044193137437105,-0.0086033251136541,0.04653724655509],[-0.035196222364902,-0.042956721037626,-0.095929928123951],[0.013371204957366,0.01730490103364,0.039293069392443]],[[0.02180259861052,-0.053097922354937,-0.03907785192132],[0.0092817116528749,-0.0073776510544121,0.0011677677975968],[0.061613883823156,0.051562041044235,-0.025446346029639]],[[-0.02321195974946,-0.0021670099813491,0.053036488592625],[-0.043639797717333,-0.023296032100916,0.021101724356413],[-0.047222130000591,-0.067926354706287,0.030567882582545]],[[0.00025236196233891,-0.019000392407179,0.012302195653319],[-0.044458501040936,-0.0018468134803697,0.0094116255640984],[0.034774977713823,-0.0092455511912704,-0.0055674435570836]],[[0.021078232675791,-0.042273994535208,0.015278288163245],[-0.019543450325727,-0.02362048253417,0.013722543604672],[0.004351899959147,0.012140387669206,-0.010403862223029]],[[-0.031693905591965,-0.070495635271072,-0.0046990080736578],[0.0096485139802098,0.0007549449801445,0.0024282766971737],[-0.071878209710121,0.049378182739019,-0.070438347756863]],[[0.014551673084497,0.053651511669159,0.03500010818243],[-0.01638612523675,-0.059718787670135,0.11445650458336],[-0.062733389437199,0.019504368305206,0.029212789610028]],[[-0.028596453368664,-0.046688243746758,-0.068739674985409],[-0.02380427159369,0.035026431083679,-0.028294306248426],[-0.037380885332823,0.085763081908226,0.025437833741307]],[[0.019865589216352,0.018222378566861,0.099162504076958],[-0.0012134128483012,-0.085120804607868,-0.082503452897072],[-0.053304471075535,-0.023210408166051,-0.0030599841848016]],[[-0.023998258635402,0.025647949427366,-0.02116509154439],[-0.027636161074042,0.02853143401444,-0.027471391484141],[-0.05684595182538,0.00053190847393125,0.023975731804967]],[[0.068553797900677,0.0071541694924235,0.0041614673100412],[-0.065541289746761,0.020462574437261,-0.040108174085617],[-0.069537580013275,0.017062194645405,0.023346012458205]],[[-0.024214185774326,0.040472406893969,0.011474719271064],[-0.018974395468831,-0.00035452467272989,-0.027149787172675],[0.013909007422626,-0.024437306448817,0.049305081367493]],[[-0.0059604058042169,-0.042191803455353,0.010925189591944],[-0.025985954329371,-0.00040272148908116,-0.022702805697918],[-0.0091981319710612,-0.02392509765923,-0.0035480703227222]],[[0.046660136431456,0.036153271794319,-0.037873756140471],[-0.00051154982065782,0.042365554720163,-0.0064169652760029],[-0.037448383867741,-0.023710090667009,0.0040928814560175]],[[-0.04576276242733,-0.0069130323827267,0.092047244310379],[0.025559531524777,-0.028476145118475,-0.017918031662703],[0.010421079583466,-0.02111079916358,-0.017269605770707]],[[0.058114528656006,0.0075854654423892,0.069039173424244],[-0.013354973867536,-0.07012628018856,-0.0047212331555784],[-0.13758051395416,-0.019947489723563,0.026868561282754]],[[0.0010100660147145,0.0033860225230455,0.020702756941319],[-0.031643442809582,-0.063970223069191,0.013269895687699],[-0.0069410847499967,-0.011510417796671,-0.010377549566329]],[[0.077902600169182,0.031583156436682,0.0054118703119457],[0.035105589777231,-0.044026475399733,0.053331572562456],[0.030820742249489,-0.062779061496258,0.092806905508041]],[[-0.015946367755532,-0.029009537771344,-0.048568863421679],[-0.020312743261456,-0.1363168656826,0.065460398793221],[-0.014584567397833,0.0025378235150129,0.040901705622673]],[[-0.081067003309727,0.010202093981206,0.030353570356965],[0.0018762330291793,0.033372677862644,-0.031017893925309],[0.023336824029684,0.082006111741066,0.03840759024024]],[[-0.02808797173202,0.0013060505734757,-0.065546818077564],[-0.050331551581621,-0.032967794686556,0.029238415881991],[0.009651648811996,0.073139555752277,-0.026413772255182]],[[0.028663270175457,0.03416583687067,-0.080850645899773],[-0.029933022335172,0.034596141427755,-0.011528385803103],[0.059850670397282,0.051353070884943,0.018558003008366]],[[0.094304628670216,-0.016980592161417,-0.086262218654156],[-0.028060872107744,-0.0026976470835507,0.038254447281361],[0.053864739835262,-0.060973405838013,0.011538818478584]],[[-0.00052497733850032,0.016251357272267,-0.10421993583441],[0.054950427263975,0.0005776027101092,-0.0081380773335695],[0.059591494500637,0.03100273385644,0.046459581702948]],[[-0.0041334526613355,-0.0014972081407905,-0.023989446461201],[-0.0098099401220679,0.09382026642561,0.05983667448163],[0.043779373168945,-0.012333971448243,0.032202251255512]],[[0.020945863798261,0.030427491292357,-0.020127952098846],[-0.0010452724527568,0.018945327028632,-0.01650850661099],[-0.057116135954857,0.06875155121088,0.10325019806623]],[[-0.036441892385483,0.009349619038403,0.023879263550043],[-0.063228353857994,-0.0025768300984055,0.015417842194438],[-0.045587297528982,-0.077385082840919,0.017616394907236]],[[-0.046359956264496,0.043200418353081,-0.020412050187588],[-0.0074566560797393,-0.049521837383509,-0.055172584950924],[0.022510170936584,-0.02557959780097,0.034015338867903]],[[0.0081180594861507,-0.010449821129441,-0.057319734245539],[-0.021631764248013,0.070892244577408,-0.084971189498901],[0.0081181703135371,0.085070505738258,-0.06129015609622]],[[0.0033899457193911,-0.0034171699080616,-0.022924082353711],[0.066995576024055,0.0066174976527691,0.012437793426216],[0.013897745870054,0.091205351054668,0.011576153337955]],[[-0.013900510035455,-0.00066626450279728,-0.047201942652464],[0.024590002372861,-0.040656886994839,-0.043129775673151],[0.038953669369221,0.0065006786026061,-0.02639371715486]],[[0.010452172718942,-0.08872127532959,0.040452886372805],[-0.046973820775747,-0.026655290275812,-0.0074551575817168],[0.1017784550786,-0.0085585759952664,-0.040129259228706]],[[-0.0083429301157594,-0.07104429602623,-9.3853996077087e-05],[0.0087704649195075,0.019012892618775,-0.020036160945892],[0.012398988008499,-0.0094484072178602,-0.014429724775255]],[[-0.062847010791302,-0.062514282763004,0.023995904251933],[0.0066064866259694,0.018181735649705,0.016375200822949],[-0.025417692959309,-0.0073379427194595,-0.00057214580010623]],[[0.042807020246983,-0.0058350921608508,0.040828499943018],[-0.018252786248922,-0.055858463048935,0.029137326404452],[0.11077217012644,0.048625208437443,0.017417358234525]],[[-0.015098508447409,-0.053614433854818,0.025459978729486],[0.013984986580908,-0.065543867647648,-0.0018094122642651],[-0.043284960091114,-0.013898407109082,0.035515248775482]],[[0.007832046598196,0.012155499309301,0.065941654145718],[-0.046860739588737,0.0026176241226494,0.0003825202875305],[-0.048526983708143,-0.053895574063063,0.010139781050384]],[[0.015192233026028,0.0025232571642846,-0.06522785872221],[-0.0074571459554136,-0.0078661413863301,-0.048334270715714],[-0.087955415248871,-0.13845811784267,-0.032561354339123]],[[0.015031713061035,0.070809803903103,-0.031813710927963],[-0.037838786840439,0.048313550651073,-0.020617816597223],[-0.052216477692127,0.042035773396492,0.028452072292566]],[[-0.0039721466600895,-0.024245681241155,0.0014430282171816],[-0.040551852434874,-0.051185946911573,-0.054493844509125],[0.014972237870097,-0.023332744836807,0.032653026282787]],[[-0.029084246605635,0.031249785795808,0.070043213665485],[0.013423820957541,-0.020902875810862,0.014484798535705],[-0.027688814327121,0.09702505171299,0.018012711778283]],[[0.00089463125914335,-0.070577554404736,0.053988464176655],[0.059741701930761,-0.042122080922127,0.0020824519451708],[0.022513713687658,-0.039577502757311,0.026001004502177]],[[0.0077843475155532,-0.027770360931754,0.0059998123906553],[0.013260128907859,0.044665601104498,-0.011755666695535],[-0.037138026207685,0.041780162602663,-0.058928404003382]],[[-0.059269964694977,0.016712771728635,-0.0047630616463721],[-0.016217248514295,-0.0024476181715727,0.034526664763689],[-0.020843436941504,0.0049282424151897,-0.028217915445566]],[[0.046014446765184,0.035570595413446,0.093324892222881],[0.014643254689872,-0.024214396253228,0.033686377108097],[0.012982380576432,0.062359426170588,0.017637154087424]],[[-0.035508655011654,-0.01356967817992,0.005520008970052],[-0.043530486524105,0.081039406359196,-0.0045702303759754],[-0.0026426983531564,-0.0032451061997563,-0.016907498240471]],[[0.02085929736495,0.04853680357337,-0.040388811379671],[0.019601548090577,0.012567953206599,-0.05509477481246],[0.085146449506283,-0.039422478526831,-0.039224244654179]],[[0.052366815507412,-0.02540509775281,0.018019137904048],[0.073778614401817,0.01265418343246,0.034638218581676],[0.062906615436077,-0.021271605044603,0.029493192210793]],[[-0.0086043085902929,0.039130799472332,-0.01023199595511],[0.0024252103175968,0.039134986698627,-0.029041392728686],[0.0089956354349852,0.0057930271141231,-0.028409721329808]],[[-0.060852490365505,-0.040710836648941,-0.033493127673864],[0.032717920839787,-0.016817545518279,-0.037902735173702],[-0.15995524823666,-0.11818380653858,0.028692375868559]],[[0.02991103567183,0.007044477853924,-0.013633171096444],[0.01606978662312,-0.036457903683186,0.023977246135473],[-0.029838459566236,0.022124946117401,-0.026961056515574]],[[0.052183471620083,0.019307374954224,0.0088813118636608],[0.02857987396419,-0.05617268383503,0.022004868835211],[0.012140940874815,0.027634421363473,0.026125136762857]],[[0.027679182589054,0.0073108584620059,0.0087693026289344],[-0.067544236779213,-0.020287968218327,0.015310692600906],[-0.036307282745838,0.0050610019825399,-0.03478816151619]],[[0.065584100782871,-0.051510110497475,-0.0028971950523555],[0.010098529979587,0.055926792323589,0.091914728283882],[0.061744567006826,-0.02560818195343,0.0086617786437273]],[[0.056325230747461,0.014751426875591,0.025798987597227],[0.088442534208298,0.087860748171806,0.051903910934925],[-0.024888098239899,-0.02992282807827,-0.072378173470497]],[[-0.056444108486176,0.043774388730526,0.07128519564867],[0.090820528566837,0.025613598525524,0.047027584165335],[0.0066614258103073,-0.035259019583464,-0.004814675077796]],[[0.011691762134433,0.053903590887785,0.0581319257617],[-0.046252366155386,0.030524656176567,-0.025729781016707],[-0.019619107246399,0.060184143483639,0.040622279047966]],[[0.067718289792538,-0.048880353569984,-0.10147597640753],[-0.05527151748538,-0.068337768316269,-0.0054323747754097],[0.0045623229816556,-0.040876697748899,-0.071328312158585]],[[0.033306505531073,0.030589578673244,0.016335118561983],[-0.026717565953732,-0.0038119109813124,-0.073100283741951],[-0.0078773573040962,0.0083613088354468,0.041225418448448]],[[0.010751349851489,-0.011629085056484,0.07897225022316],[-0.044072173535824,0.012226982973516,0.023287311196327],[-0.0067749032750726,0.018439264968038,-0.019568417221308]],[[-0.083949938416481,-0.014128590933979,0.0011687816586345],[-0.0060427044518292,0.031905610114336,-0.10603015869856],[0.026118472218513,-0.045669298619032,0.011617380194366]],[[0.031638845801353,-0.044195208698511,0.005491201300174],[0.063875466585159,-0.047501124441624,-0.023467566817999],[0.010561344213784,-0.00035435272729956,-0.070880495011806]]],[[[-0.03735426068306,-0.070262283086777,-0.046997494995594],[0.046624977141619,0.017495224252343,0.11259020864964],[-0.074565693736076,0.17329579591751,0.11584760993719]],[[-0.0071199652738869,-0.10754255950451,-0.0057620238512754],[-0.087742924690247,0.071450456976891,0.077358342707157],[-0.14349608123302,-0.070705354213715,0.050682060420513]],[[-0.0045378254726529,0.028042044490576,-0.092827439308167],[-0.010359800420702,-0.017356289550662,-0.02884410507977],[0.036694929003716,0.046468138694763,-0.012616931460798]],[[-0.032714556902647,-0.10926999896765,0.0253318361938],[-0.033325396478176,-0.0058516664430499,-0.03887490183115],[-0.018771128728986,-0.13429574668407,-0.10473446547985]],[[0.017722034826875,0.083657696843147,-0.071754686534405],[-0.066596537828445,-0.08683256059885,-0.0055278418585658],[-0.0091072591021657,-0.018223438411951,-0.060762286186218]],[[0.041782278567553,0.024475576356053,-0.011086384765804],[-0.087686963379383,0.030454033985734,-0.0056083458475769],[0.052549947053194,0.0082535594701767,-0.020174395292997]],[[0.019697733223438,0.011634651571512,0.06301087886095],[0.10437021404505,-0.011794555932283,-0.012984982691705],[0.072590462863445,0.034401003271341,-0.0051278648898005]],[[-0.19023048877716,0.048530843108892,0.039877314120531],[-0.16630049049854,0.0068467324599624,0.031450897455215],[-0.017974440008402,-0.012321583926678,-0.00092724029673263]],[[-0.0087567055597901,-0.015472429804504,0.0058352909982204],[0.065372586250305,-0.039115000516176,-0.0063021723181009],[-0.022407084703445,0.011132691055536,-0.033106878399849]],[[0.048680264502764,0.19209723174572,0.043046414852142],[0.1160536184907,0.065642692148685,0.06794710457325],[0.15261569619179,0.072991646826267,0.14867372810841]],[[-0.075666561722755,0.15161897242069,0.090295881032944],[0.061452653259039,0.061066776514053,-0.014564897865057],[-0.033128377050161,-0.031776804476976,0.03445141389966]],[[-0.022306112572551,-0.026967389509082,-0.052433256059885],[-0.052719440311193,-0.012369221076369,-0.0039340616203845],[0.0032351762056351,0.022818114608526,0.045995835214853]],[[-0.0085514523088932,-0.040734119713306,0.11238648742437],[0.062607616186142,0.020554376766086,0.065561667084694],[0.0096382526680827,0.067479439079762,0.10871483385563]],[[0.059077799320221,0.0023832891602069,-0.072057083249092],[0.0027891609352082,0.0090559413656592,-0.11498776078224],[0.052058160305023,-0.097563467919827,-0.091807834804058]],[[-0.012013541534543,-0.042231634259224,0.021724883466959],[-0.088702589273453,0.069554284214973,-0.021474286913872],[-0.069595873355865,-0.006166182924062,-0.069586671888828]],[[0.016455087810755,-0.02672821842134,-0.035217881202698],[-0.052694041281939,-0.026383211836219,0.032466262578964],[0.0069213514216244,-0.042929876595736,0.025227837264538]],[[0.03232579678297,0.12485101819038,-0.048011709004641],[-0.021793581545353,-0.067895531654358,0.054440889507532],[-0.035105232149363,-8.0813835666049e-05,0.076179102063179]],[[0.031201681122184,-0.075834043323994,0.04569048807025],[-0.031736847013235,0.0023974513169378,0.090883821249008],[-0.045616790652275,-0.028142092749476,-0.029565146192908]],[[0.047309644520283,0.082185328006744,-0.084433749318123],[0.035377725958824,-0.062315348535776,0.049140438437462],[0.020712591707706,0.027931595221162,0.10243522375822]],[[0.056435205042362,0.10146031528711,-0.15777704119682],[-0.068563193082809,0.070758886635303,-0.095332227647305],[0.066577650606632,-0.070872895419598,0.036328751593828]],[[-0.012678172439337,-0.050895012915134,0.013898014090955],[0.0095828361809254,-0.016076313331723,0.028846299275756],[0.15503264963627,-0.0077473013661802,-0.030999448150396]],[[-0.10222297161818,-0.081283859908581,0.037200920283794],[0.031597591936588,0.06072261184454,0.047352112829685],[0.1134230941534,0.033603198826313,0.069587200880051]],[[0.008314517326653,0.056448955088854,-0.019444348290563],[0.011036908254027,0.021222844719887,0.067787811160088],[0.046347383409739,-0.021943986415863,-0.02684130705893]],[[0.016018949449062,0.036390572786331,0.053239606320858],[-0.13967943191528,0.060585096478462,-0.1168877184391],[-0.0251031704247,-0.11569822579622,-0.048179104924202]],[[0.018217505887151,-0.15015684068203,-0.021392730996013],[0.078071415424347,0.057543259114027,0.046165872365236],[0.064509212970734,-0.03235199674964,0.0021771674510092]],[[0.11002527922392,0.013947274535894,-5.8996622101404e-05],[-0.006046811118722,-0.061142470687628,0.0089496877044439],[-0.030445767566562,-0.10029999166727,0.0094366883859038]],[[-0.055558074265718,0.030435072258115,-0.042361155152321],[-0.097541399300098,-0.03971454501152,-0.074092656373978],[0.05830891430378,-0.0020582280121744,-0.12863998115063]],[[0.10705649107695,0.050391405820847,0.052097469568253],[0.054343681782484,-0.014573664404452,0.08760692179203],[0.038406353443861,-0.058352287858725,0.049886707216501]],[[-0.030845075845718,-0.054472994059324,-0.011458732187748],[-0.071348078548908,-0.094432279467583,-0.0086647626012564],[0.0062377299182117,-0.0038594969082624,-0.0042054364457726]],[[0.028509022668004,0.075497552752495,-0.02346726693213],[-0.072686687111855,-0.10198070853949,-0.024148074910045],[-0.065978899598122,-0.056244924664497,-0.099214896559715]],[[0.05521671846509,0.079938039183617,0.032163824886084],[-0.043162658810616,0.050319582223892,-0.01171491574496],[-0.10331137478352,-0.10211872309446,-0.0067787608131766]],[[0.0013908584369346,-0.12269506603479,0.050576012581587],[-0.035295099020004,0.10107866674662,0.075260527431965],[0.078578524291515,0.13090208172798,-0.089074701070786]],[[-0.055023159831762,0.047063603997231,0.006173268891871],[0.029664766043425,-0.0747359842062,0.064462788403034],[6.4918608586595e-06,0.054743349552155,0.082828991115093]],[[-0.038592375814915,0.015474293380976,0.00047814651043154],[0.0029386072419584,0.068644568324089,0.030030108988285],[0.074866451323032,0.039231274276972,0.0253387670964]],[[0.017104081809521,-0.048078581690788,0.0026263112667948],[0.012780041433871,-0.017514336854219,0.028725193813443],[0.0027558419387788,-0.0068550305441022,0.00081984087591991]],[[-0.043302740901709,-0.043918691575527,-0.091571420431137],[-0.068232953548431,0.015350102446973,-0.017677528783679],[-0.041420798748732,-0.010919536463916,0.0077800005674362]],[[-0.088902197778225,-0.018876187503338,-0.0073603792116046],[0.095712244510651,-0.065598912537098,-0.095241561532021],[-0.097695700824261,-0.061211932450533,0.10874117165804]],[[0.016539281234145,-0.032042346894741,0.032485194504261],[0.042819909751415,-0.03575474396348,-0.032309927046299],[0.11573456227779,-0.01529635861516,-0.098959483206272]],[[0.017211636528373,-0.013191422447562,0.00031073516584001],[-0.051957190036774,-0.015836976468563,-0.080370984971523],[-0.10255230218172,0.005217079538852,-0.028232797980309]],[[-0.018685264512897,-0.00025783234741539,-0.051818486303091],[0.00040106568485498,-0.00042940871207975,-0.05246938765049],[0.12064239382744,0.037032060325146,0.088296197354794]],[[-0.022424945607781,0.13531197607517,0.02735922858119],[0.091891065239906,0.0094015616923571,0.00097093859221786],[0.074529781937599,-0.0088142501190305,-0.017453862354159]],[[-0.049661885946989,0.021445829421282,-0.019957831129432],[0.062686957418919,-0.0030706655234098,-0.058878306299448],[0.07052218914032,-0.0063099195249379,-0.18205963075161]],[[-0.069052115082741,0.012486743740737,-0.032052155584097],[-0.10056988149881,-0.090080715715885,-0.073532953858376],[0.020968556404114,0.1157627850771,0.051005840301514]],[[-0.036804378032684,-0.054252851754427,0.026348611339927],[0.028856597840786,0.033979885280132,0.031602099537849],[-0.052400417625904,0.011007354594767,-0.10741639137268]],[[-0.20649439096451,-0.034921538084745,-0.069719307124615],[0.014645365066826,-0.19392612576485,-0.073208309710026],[0.04989605024457,-0.048636816442013,0.024063041433692]],[[0.15014731884003,-0.087484665215015,-0.086907789111137],[0.046041578054428,0.1194271594286,0.0069426954723895],[-0.0035288901999593,0.0010444484651089,0.033522807061672]],[[-0.1220830604434,0.083335720002651,-0.002600894542411],[0.036396909505129,0.043430786579847,-0.067017436027527],[0.026111075654626,-0.015627849847078,0.088634587824345]],[[-0.038627810776234,-0.063757069408894,-0.024002173915505],[0.032421253621578,0.038664922118187,0.058156318962574],[-0.0071351849474013,0.0043053771369159,0.023250067606568]],[[-0.23407824337482,0.050412856042385,0.044379618018866],[-0.012734709307551,-0.072822257876396,0.071697041392326],[0.0029790517874062,0.057287268340588,0.064137324690819]],[[-0.051429372280836,-0.019635299220681,-0.041773322969675],[-0.14711917936802,-0.079620465636253,-0.0044273701496422],[-0.069645084440708,-0.01492437813431,0.04889265075326]],[[0.091292411088943,-0.065560422837734,0.0022292518988252],[0.042181648313999,-0.022809034213424,-0.02494409494102],[-0.0094953700900078,0.032862633466721,0.021443441510201]],[[-0.026972107589245,0.038596104830503,-0.11916437000036],[0.010253852233291,-0.017385717481375,-0.064625114202499],[-0.056615747511387,-0.016433410346508,-0.04508851096034]],[[-0.08378291875124,-0.073090516030788,-0.046814657747746],[-0.066181473433971,-0.00026910641463473,0.071160227060318],[-3.4304437576793e-05,0.074419505894184,0.10347887128592]],[[0.18662846088409,0.17166456580162,0.022327532991767],[-0.014934227801859,0.021035715937614,0.044028408825397],[-0.081021651625633,0.046540874987841,0.021843453869224]],[[0.054917372763157,-0.0033150012604892,0.023230968043208],[0.15839385986328,0.015792163088918,-0.042903956025839],[-0.083464503288269,-0.065558224916458,0.026750151067972]],[[0.11217138171196,-0.047125954180956,0.060516558587551],[0.049443546682596,0.036724656820297,-0.074127443134785],[-0.055981855839491,-0.01621862500906,-0.10281608998775]],[[0.0090756397694349,0.0052211075089872,-0.11654192954302],[-0.088442392647266,-0.092886835336685,0.05957181379199],[-0.10794502496719,-0.074567504227161,0.078506655991077]],[[0.02023977227509,-0.0074818208813667,0.10037033259869],[0.060780368745327,-0.031855180859566,-0.029572639614344],[0.047895912081003,-0.0046289036981761,-0.0038614408113062]],[[0.15674537420273,0.0027842302806675,-0.054923590272665],[-0.00026222461019643,-0.039585057646036,-0.04295652359724],[0.038693066686392,-0.057120651006699,0.039249375462532]],[[-0.0066277938894928,0.0046183704398572,-0.033978272229433],[-0.079181015491486,-0.050551798194647,-0.035516928881407],[-0.012773316353559,-0.100232668221,0.051549453288317]],[[-0.0099273398518562,-0.041506089270115,0.061867620795965],[-0.032024383544922,0.011571890674531,-0.023690456524491],[0.010159295983613,-0.09131833165884,0.029186340048909]],[[-0.037062253803015,0.009668811224401,0.054740805178881],[0.07786376029253,-0.1245995759964,-0.083179846405983],[-0.0035505085252225,-0.0019469494000077,0.048159588128328]],[[-0.0028481394983828,0.071446724236012,0.046958990395069],[0.028659449890256,-0.16497167944908,-0.035266052931547],[0.014894320629537,0.039020195603371,0.057270620018244]],[[0.13801744580269,-0.12481531500816,-0.036310657858849],[-0.048344139009714,-0.055529803037643,-0.089300528168678],[-0.027530811727047,-0.031735770404339,-0.039269864559174]],[[-0.10009621083736,-0.057471968233585,-0.046164140105247],[-0.10277393460274,-0.055539689958096,0.023656262084842],[-0.0042814142070711,-0.14962686598301,-0.037311930209398]],[[0.13772208988667,0.05374388769269,0.052138779312372],[-0.1389015763998,0.062665462493896,0.0090058958157897],[0.058986097574234,0.04987209290266,0.081660509109497]],[[-0.14207109808922,0.11519402265549,0.09154736250639],[0.11932788789272,-0.0078635355457664,-0.018408767879009],[-0.088797032833099,0.026848925277591,0.087598256766796]],[[0.19382791221142,-0.04468984156847,-0.074938990175724],[-0.0051507921889424,0.087145999073982,-0.078024119138718],[-0.025003157556057,0.018477881327271,-0.17408232390881]],[[0.00094500882551074,0.019524004310369,0.071964658796787],[-0.060174316167831,0.033896990120411,0.00061497342539951],[-0.10250376164913,0.0033884854055941,-0.042726088315248]],[[0.072106465697289,-0.046747237443924,-0.030513921752572],[-0.04349172860384,-0.02365068346262,0.026472650468349],[-0.042529430240393,-0.066089503467083,0.11954128742218]],[[-0.090528137981892,-0.10164687037468,-0.14087995886803],[0.02956815995276,-0.0081692850217223,-0.046332530677319],[-0.033070001751184,0.046708449721336,0.031634461134672]],[[0.012805985286832,0.043455082923174,-0.041777703911066],[-0.060933660715818,0.010263556614518,-0.00042370407027192],[0.036786187440157,0.059617515653372,-0.042639754712582]],[[0.15622512996197,0.1120038703084,0.068898372352123],[0.010835954919457,0.010886657051742,-0.01607857644558],[0.0010920708300546,0.0080569349229336,0.014954322017729]],[[0.05911298841238,0.10856229811907,0.047569364309311],[0.10937441140413,0.013216221705079,0.0061906552873552],[0.02178674377501,0.063180789351463,-0.084703028202057]],[[-0.062170226126909,-0.16213454306126,-0.048534739762545],[-0.013530635274947,-0.0059664668515325,0.0096228858456016],[-0.065856516361237,-0.022826729342341,0.13124889135361]],[[-0.047186739742756,0.061818893998861,0.028687106445432],[-0.050480902194977,-0.0067546260543168,-0.065500378608704],[0.04212486371398,0.037143044173717,-0.091767556965351]],[[-0.047013465315104,-0.036360546946526,-0.093750543892384],[-0.012515891343355,-0.080876238644123,0.011819684877992],[0.0014356824103743,-0.06062488630414,-0.018377665430307]],[[0.064914703369141,0.028321243822575,-0.056870248168707],[0.066537156701088,0.013549700379372,-0.1804211884737],[0.10972572863102,-0.0035333018749952,-0.094802230596542]],[[0.063145652413368,0.11198633909225,0.10470222681761],[-0.017606446519494,-0.0091917188838124,0.049870375543833],[0.0017194049432874,0.0085476115345955,0.016082856804132]],[[-0.059426579624414,0.0035118984524161,-0.11664243042469],[-0.10606655478477,-0.14646457135677,-0.15145829319954],[-0.074306488037109,-0.09265523403883,-0.045950897037983]],[[-0.049970921128988,0.042803768068552,-0.047098472714424],[0.076300375163555,-0.069162242114544,-0.053261857479811],[0.073642238974571,0.074531689286232,-0.091786593198776]],[[-0.0084910448640585,-0.059245850890875,0.00030672366847284],[0.012145574204624,0.034491140395403,0.01281604450196],[-0.066937625408173,0.020758440718055,0.059306092560291]],[[0.019192131236196,0.15012758970261,0.041153650730848],[0.010541362687945,-0.0021014334633946,0.060621865093708],[0.027620354667306,0.0032483618706465,-0.030428381636739]],[[0.025544594973326,-0.10995569825172,-0.050922680646181],[-0.068472430109978,-0.088613525032997,-0.041396755725145],[0.020300634205341,-0.078576937317848,-0.0075557185336947]],[[0.047393098473549,-0.0074038710445166,0.016759663820267],[0.077792465686798,0.030939012765884,-0.020824905484915],[-0.0043518580496311,0.015040853992105,0.10289294272661]],[[0.0043634595349431,-0.099009118974209,-0.081033781170845],[0.030867157503963,0.056827541440725,0.010831178165972],[0.035960271954536,0.0072295512072742,0.095186039805412]],[[0.036724239587784,0.002756378846243,0.095525562763214],[0.061911031603813,0.03447488322854,0.028812766075134],[0.0056734513491392,-0.078776262700558,-0.077541850507259]],[[0.036124099045992,0.063261389732361,-0.00025159731740132],[-0.011393728666008,-0.015295103192329,0.078769110143185],[0.0073081706650555,-0.048796329647303,-0.065019227564335]],[[0.070721007883549,0.061436768621206,0.018877599388361],[0.1587105691433,-0.079362437129021,0.0064248163253069],[0.050972875207663,-0.04968423768878,0.033252563327551]],[[0.015461987815797,-0.055648703128099,0.1258503049612],[0.043989352881908,-0.081623397767544,-0.09084639698267],[0.077137336134911,-0.05594277754426,-0.079114608466625]],[[0.017626572400331,-0.029514290392399,0.1265135705471],[-0.014718211255968,0.022066332399845,0.022054450586438],[0.065304718911648,-0.12015433609486,-0.10092397779226]],[[0.0032922357786447,-0.052414704114199,-0.05189536511898],[0.038637239485979,0.032738287001848,-0.11771392822266],[0.10197099298239,-0.006816663313657,-0.041973296552896]],[[-0.065520957112312,-0.065466739237309,0.19135150313377],[0.035239167511463,-0.016539134085178,0.084986001253128],[-0.027844885364175,-0.057987026870251,0.060332838445902]],[[-0.13623262941837,-0.21353614330292,-0.0083428015932441],[-0.009440834634006,-0.04372913017869,-0.053285457193851],[-0.0040862346068025,-0.020074490457773,-0.03707205876708]],[[-0.038572672754526,0.044165994971991,-0.059192083775997],[0.0084405681118369,-0.10347582399845,-0.14190419018269],[0.13755123317242,-0.039559975266457,-0.074743531644344]],[[0.062092553824186,0.078631438314915,0.10275316238403],[0.10413315147161,0.11133876442909,-0.030456932261586],[-0.078139416873455,0.056587938219309,-0.027618672698736]],[[0.12536303699017,0.029558330774307,0.041204303503036],[-0.040493682026863,-0.029873326420784,-0.040801670402288],[-0.07435979694128,-0.0053464449010789,-0.092200919985771]],[[-0.096823289990425,-0.028896788135171,-0.034765742719173],[-0.032721880823374,-0.034431923180819,-0.01571642421186],[0.09186676889658,-0.080211818218231,-0.017364049330354]],[[0.043097198009491,-0.048348430544138,-0.043112259358168],[-0.021569728851318,0.0073450705967844,-0.026735791936517],[-0.05581658706069,-0.044603645801544,-0.035333570092916]],[[0.013944630511105,-0.0018268885323778,0.047590103000402],[-0.081220954656601,0.011192853562534,-0.0065196193754673],[-0.098415970802307,0.12117993831635,0.031593166291714]],[[0.20764960348606,-0.010313055478036,-0.03520479798317],[0.05758048593998,0.037177886813879,-0.00072794058360159],[0.073317803442478,0.064919203519821,0.018805788829923]],[[-0.096593715250492,-0.069176480174065,0.0017133416840807],[-0.12569257616997,-0.071785166859627,0.013667338527739],[-0.0066187717020512,0.0055770468898118,0.11007668823004]],[[-0.019533444195986,-0.032535847276449,-0.031053222715855],[-0.114258505404,0.037193402647972,0.02778965048492],[-0.051341950893402,-0.14100009202957,-0.02396628074348]],[[0.039504863321781,-0.10557553172112,-0.00034235481871292],[0.092417940497398,0.018135007470846,0.034622859209776],[0.0092688584700227,-0.0057698292657733,-0.018741928040981]],[[-0.029832070693374,0.0096949618309736,-0.027485182508826],[0.018306998535991,0.0097437016665936,-0.058702185750008],[-0.0032945682760328,0.16602355241776,0.15577667951584]],[[-0.11912871897221,-0.084454901516438,0.031664613634348],[-0.10680054873228,-0.093136847019196,-0.036719646304846],[-0.061740785837173,-0.030560877174139,-0.053408589214087]],[[-0.016663884744048,-0.036470387130976,0.01360097527504],[0.067515403032303,0.06072498485446,0.039771784096956],[0.064676240086555,-0.048106957226992,0.015927428379655]],[[-0.027794441208243,-0.11404695361853,-0.031077226623893],[-0.082724414765835,0.0056954617612064,0.050283063203096],[0.0028575907927006,-0.12874592840672,0.036464411765337]],[[0.085598543286324,0.11500011384487,0.043520286679268],[-0.026114135980606,-0.06489109992981,0.11955554038286],[0.037430811673403,0.033166740089655,-0.12146858125925]],[[-0.093325451016426,0.019908796995878,-0.0071823885664344],[-0.010310111567378,-0.045448217540979,-0.023049805313349],[-0.022321594879031,0.11834976822138,0.028400538489223]],[[0.093368127942085,0.038842115551233,-0.020426161587238],[-0.0046475855633616,-0.15833796560764,-0.11466628313065],[0.02017636783421,-0.048601388931274,0.12519492208958]],[[-0.038545567542315,-0.017884938046336,-0.080120362341404],[0.045201476663351,0.041439164429903,-0.040139012038708],[0.052279636263847,-0.080625981092453,0.11799725145102]],[[0.007816219702363,-0.090896680951118,-0.048787012696266],[0.042238209396601,-0.042270381003618,-0.028776044026017],[0.15910437703133,0.093338370323181,0.043634328991175]],[[0.062690258026123,0.025835622102022,0.010154399089515],[-0.027606872841716,0.10892916470766,0.077062249183655],[0.055360585451126,-0.030229268595576,-0.046545922756195]],[[-0.21261839568615,0.10343786329031,-0.066089414060116],[-0.088602431118488,-0.022764507681131,0.0089681204408407],[-0.04232057929039,-0.025218140333891,-0.021509408950806]],[[0.073503866791725,0.19993235170841,0.088187277317047],[-0.033108171075583,-0.07765619456768,-0.023361038416624],[-0.11131005734205,0.030263924971223,0.038463700562716]],[[-0.0082021169364452,0.015635227784514,-0.026086067780852],[-0.037544716149569,-0.072969496250153,-0.056079436093569],[0.066285111010075,-0.048135634511709,-0.031514070928097]],[[0.073900431394577,0.040267582982779,-0.054495260119438],[0.076397694647312,0.076033338904381,-0.12833920121193],[-0.071842640638351,0.12366844713688,0.062463663518429]],[[0.023955406621099,-0.063499204814434,0.096034847199917],[-0.016310028731823,-0.03110328130424,-0.0037879310548306],[0.036133084446192,-0.11228480190039,-0.024648817256093]],[[-0.093153513967991,-0.066359281539917,0.077110610902309],[0.075544252991676,0.048528410494328,-0.12107563018799],[-0.038621950894594,0.11552516371012,0.0057947277091444]],[[0.084553882479668,0.072957724332809,-0.014547922648489],[0.024056769907475,0.021144000813365,0.064797282218933],[-0.02630160190165,0.079477518796921,0.091419339179993]],[[0.034309022128582,0.12134258449078,-0.090564869344234],[0.015319839119911,-0.0076774996705353,0.052784658968449],[0.049978110939264,-0.053206920623779,0.12012556940317]],[[0.074147716164589,0.043168719857931,-0.026090258732438],[-0.0092364698648453,-0.060949932783842,-0.016810031607747],[-0.048247460275888,-0.038146544247866,-0.052806317806244]],[[-0.1084953173995,0.032344710081816,-0.05804256349802],[-0.056194309145212,-0.046959679573774,0.059351779520512],[0.082843899726868,-0.015549072995782,0.08137734234333]],[[0.11172103136778,-0.055316250771284,-0.10876421630383],[0.034756362438202,-0.055496852844954,0.11335316300392],[-0.035039778798819,0.1423152834177,-0.0084963431581855]],[[-0.010968523100019,0.028991047292948,0.024112852290273],[0.099149249494076,-0.034905064851046,-0.01021555904299],[0.018306955695152,0.046097166836262,0.041879441589117]],[[-0.11987660825253,-0.049913689494133,-0.0099778193980455],[-0.031933456659317,0.033202581107616,0.043754108250141],[-0.091879360377789,-0.077206648886204,0.097720079123974]],[[-0.024928409606218,-0.080228634178638,-0.028657197952271],[-0.029251491650939,-0.033074241131544,-0.075071163475513],[-0.017425119876862,0.083106055855751,0.034031722694635]]],[[[-0.086093686521053,-0.017659317702055,0.067008748650551],[-0.100770868361,-0.076140649616718,0.086914159357548],[-0.10117558389902,-0.1519405990839,0.13800738751888]],[[0.040870990604162,-0.021943824365735,0.011882483959198],[-0.025633668527007,-0.078049048781395,0.018318751826882],[0.0068024657666683,-0.10778442770243,-0.044044461101294]],[[0.28789687156677,-0.080705881118774,-0.038877673447132],[0.015949023887515,-0.057859197258949,-0.027972009032965],[-0.098961211740971,0.10204627364874,-0.025124540552497]],[[0.1058779284358,0.0066057564690709,-0.028853783383965],[0.091583833098412,0.0095415059477091,-0.077306732535362],[0.041055656969547,0.01237937156111,-0.12152434140444]],[[-0.0073482664301991,-0.0046840999275446,-0.034695006906986],[0.056531596928835,-0.033726651221514,-0.017194755375385],[0.02387104742229,-0.038135390728712,0.033678036183119]],[[0.0019316544057801,-0.03796324506402,0.0022899319883436],[-0.033888053148985,-0.025333605706692,-0.031783282756805],[0.033988706767559,0.0082489037886262,-0.036847300827503]],[[0.039653521031141,0.01026335824281,-0.014821110293269],[-0.079344838857651,0.058736305683851,0.0089879333972931],[-0.096119791269302,-0.014272981323302,-0.13501466810703]],[[-0.05254952609539,0.062701851129532,0.11004169285297],[-0.084152586758137,-0.02628044039011,0.069074392318726],[-0.074592612683773,-0.11335707455873,-0.13326032459736]],[[-0.0013739053392783,0.048215307295322,-0.06564749032259],[-0.063299812376499,0.032238576561213,-0.067878313362598],[0.13555562496185,-0.0022446482907981,0.071564294397831]],[[-0.01403979677707,0.033331338316202,0.013686430640519],[0.062806896865368,0.061229411512613,-0.092517539858818],[0.04394243657589,-0.047408476471901,-0.044869672507048]],[[0.021133257076144,-0.00084160850383341,0.069429934024811],[0.038311876356602,-0.028741830959916,0.055114775896072],[0.025467095896602,-0.0078128362074494,-0.029756588861346]],[[0.031811770051718,-0.019287277013063,-0.071209266781807],[-0.038713406771421,0.014879757538438,0.025823829695582],[-0.037543933838606,0.035068709403276,0.044366579502821]],[[0.041608974337578,0.0081311743706465,-0.017961917445064],[0.0020078392699361,0.054719850420952,0.12433284521103],[-0.0059255356900394,0.031575448811054,0.10795655101538]],[[0.070371985435486,-0.0045912633650005,-0.060979682952166],[0.036381810903549,-0.038556162267923,-0.044718973338604],[-0.025491626933217,-0.025102535262704,-0.013625162653625]],[[-0.066027872264385,0.0012793244095519,-0.002750386018306],[-0.12426660209894,-0.039330460131168,-0.040274262428284],[-0.05491117015481,-0.088350459933281,0.0012897348497063]],[[0.018740475177765,0.025159630924463,0.0078671080991626],[0.0062809456139803,-0.0047219954431057,-0.0069315410219133],[0.020308384671807,-0.00028765577008016,-0.21262753009796]],[[-0.040033672004938,-0.0067452951334417,0.049325954169035],[-0.034601796418428,-0.045095570385456,-0.014685875736177],[-0.023353883996606,-0.0081312926486135,0.050824742764235]],[[0.048761311918497,-0.025630623102188,0.00041333510307595],[-0.021116074174643,-0.012286369688809,-0.022526450455189],[0.0058621945790946,0.018707392737269,-0.052032887935638]],[[0.10303784906864,0.0099721672013402,0.039783965796232],[0.041279088705778,0.017776163294911,0.054477624595165],[-0.020530005916953,0.10585752129555,0.0031170784495771]],[[-0.075899861752987,-0.050901725888252,-0.039981372654438],[0.033878482878208,-0.006755065638572,-0.053802706301212],[0.050659686326981,0.013198030181229,0.013689470477402]],[[-0.0020310096442699,-0.020017918199301,-0.047167416661978],[0.024196971207857,0.058889523148537,-0.0083192978054285],[0.051907390356064,0.052524443715811,-0.0096972975879908]],[[-0.054050955921412,0.035730108618736,0.047044929116964],[-0.10660172998905,-0.051931317895651,0.038756586611271],[-0.030713992193341,-0.13042080402374,-0.16570718586445]],[[-0.028133507817984,-0.057446360588074,-0.027609724551439],[-0.071177616715431,0.028105229139328,-0.0009147206437774],[0.081667989492416,0.099094077944756,0.0059243957512081]],[[0.0058538978919387,-0.036713507026434,0.053060054779053],[0.0027735189069062,-0.040736384689808,-0.061236523091793],[0.090526334941387,-0.18250697851181,-0.15259663760662]],[[-0.047069050371647,0.017845783382654,-0.03061712346971],[0.075477220118046,0.028416238725185,3.9687380194664e-05],[0.090957917273045,-0.033224329352379,-0.032741788774729]],[[-0.039775680750608,-0.10281033813953,-0.019296688959002],[0.020138302817941,-0.080498144030571,-0.081038273870945],[0.016646413132548,-0.084184385836124,-0.0095117380842566]],[[0.00051202392205596,0.027771322056651,-0.031631492078304],[-0.061060514301062,0.11602590978146,-0.0072903004474938],[-0.071164719760418,0.062668442726135,-0.01466906350106]],[[0.032970234751701,0.003320834832266,-0.0063246805220842],[-0.017946818843484,-0.030815314501524,-0.11038076132536],[0.014605596661568,0.049193371087313,0.099796310067177]],[[0.059284538030624,-0.035954512655735,0.030141055583954],[-0.067319482564926,-0.038494668900967,-0.10142880678177],[0.0052238111384213,0.09172784537077,-0.017995176836848]],[[0.038027126342058,0.030593939125538,0.006310386583209],[-0.050701234489679,-0.098928958177567,-0.02907451801002],[-0.051573447883129,-0.10915256291628,-0.07102807611227]],[[-0.0082522751763463,0.037312645465136,0.052678484469652],[-0.040533717721701,-0.016211351379752,0.10056015849113],[-0.071957819163799,-0.031454969197512,-0.019397679716349]],[[0.019710069522262,-0.031296856701374,-0.095394544303417],[0.033936060965061,0.032658450305462,-0.0017003568354994],[0.022301012650132,0.068484030663967,-0.016655361279845]],[[-0.0091268913820386,-0.026379315182567,-0.07595831900835],[0.032131221145391,-0.026266645640135,-0.015518778935075],[0.07434955984354,0.071061886847019,0.017069818452001]],[[-0.0039015237707645,-0.011727982200682,-0.013965289108455],[0.022486863657832,-0.0070520802401006,-0.026110347360373],[-0.045008674263954,-0.019316874444485,-0.00032166909659281]],[[-0.0051720961928368,0.034909084439278,-0.022988528013229],[0.0087290285155177,0.0095882983878255,-0.021426096558571],[-0.03053418174386,-0.00086482765618712,-0.0048842201940715]],[[0.010738995857537,-0.007785099092871,0.020654844120145],[-0.1323983669281,-0.032544620335102,-0.010175840929151],[-0.077011503279209,0.041822489351034,-0.021027335897088]],[[0.0070082703605294,0.18556194007397,-0.052217591553926],[0.048035979270935,0.037779923528433,0.056019529700279],[0.057718489319086,-0.11039906740189,0.078729420900345]],[[0.036387946456671,0.025327695533633,-0.011347983963788],[-0.03412402421236,0.027510398998857,-0.0045802039094269],[0.0073255021125078,-0.028566798195243,-0.046437539160252]],[[-0.028038723394275,-0.024911781772971,0.0082520302385092],[-0.0096227070316672,0.044807761907578,-0.007179067004472],[0.038101557642221,-0.16636134684086,-0.020372740924358]],[[0.015625832602382,-0.017280058935285,-0.045320577919483],[0.023745764046907,0.041699010878801,0.047892339527607],[0.029245836660266,-0.012241748161614,0.10811750590801]],[[0.00027648356626742,0.040753912180662,-0.0070868288166821],[0.011894817464054,-0.029473206028342,0.10138323158026],[0.04170174151659,-0.092185087502003,0.039914030581713]],[[0.061995677649975,0.0038047702983022,-0.051048036664724],[0.0017488854937255,0.05144127830863,-0.024925982579589],[-0.047911163419485,0.021288596093655,-0.11503104120493]],[[0.0069726696237922,-0.014319258742034,0.0068026734516025],[-0.024067798629403,-0.0074924007058144,-0.021611230447888],[0.001506311353296,0.043489683419466,0.10097159445286]],[[0.033387865871191,0.056973915547132,0.059992678463459],[0.070954769849777,0.062868498265743,0.056779019534588],[-0.037734027951956,0.051185954362154,0.033074762672186]],[[-0.13459397852421,0.01992910169065,-0.02140125259757],[0.040133498609066,0.032312553375959,-0.0017400289652869],[0.061151590198278,-0.013655186630785,0.016916822642088]],[[-0.151192471385,-0.070458456873894,-0.049057140946388],[-0.076643645763397,-0.087585598230362,-0.036534521728754],[-0.056995656341314,-0.0096653373911977,0.059404253959656]],[[-0.018020207062364,0.020564058795571,0.016458265483379],[0.025368474423885,0.024920597672462,-0.12025734037161],[0.079648233950138,0.022466978058219,0.036803286522627]],[[0.017751166597009,-0.0019945786334574,-0.10382978618145],[-0.024995325133204,0.056322377175093,-0.10377285629511],[-0.012188196182251,-0.014609274454415,0.022892678156495]],[[-0.049728199839592,-0.023522598668933,-0.013362214900553],[-0.012149529531598,0.1105387583375,0.031024254858494],[0.013808021321893,0.004984519444406,0.07182352989912]],[[-0.0051571470685303,0.0014533310895786,0.0039038644172251],[0.017664436250925,-0.090629041194916,0.01631835103035],[-0.0025997592601925,-0.054953623563051,0.059739254415035]],[[0.046273082494736,0.0099431369453669,0.025425752624869],[0.078909501433372,-0.060883544385433,0.029562750831246],[0.079871341586113,-0.080197468400002,-0.026782006025314]],[[0.024002382531762,0.024982783943415,-0.040190543979406],[0.044221892952919,-0.014351403340697,-0.011199847795069],[-0.028305444866419,-0.0098976362496614,-0.10263279080391]],[[0.0027273334562778,0.14054934680462,0.059925153851509],[0.059706661850214,0.14178557693958,0.14855639636517],[-0.033565334975719,0.084155887365341,0.066001109778881]],[[0.040834952145815,0.062481556087732,0.0015512795653194],[-0.0081504955887794,0.039899088442326,-0.00046576303429902],[-0.055345602333546,0.016037587076426,0.006381459068507]],[[0.059924770146608,0.039700660854578,0.079736396670341],[0.05505495890975,0.018437491729856,0.031150318682194],[-0.029037935659289,-0.010866929776967,-0.097463719546795]],[[0.14120291173458,0.09571848064661,0.036301996558905],[0.1232045814395,0.016740681603551,-0.03723705932498],[-0.21083626151085,-0.047821573913097,0.076835922896862]],[[0.02661063708365,-0.039719939231873,-0.038575548678637],[0.013555127196014,-0.035734165459871,0.024597864598036],[0.0027948985807598,0.041919432580471,-0.052870944142342]],[[-0.02615138143301,0.057919550687075,0.052186839282513],[-0.022054363042116,0.02576039172709,0.072841726243496],[0.045686434954405,-0.028575081378222,0.06433267146349]],[[0.057867303490639,-0.040141634643078,-0.06272204965353],[0.019181966781616,-0.0059150913730264,-0.058663818985224],[0.0143654756248,0.0037040009628981,0.011922399513423]],[[0.016434455290437,-0.047998823225498,-0.0060355635359883],[-0.061911314725876,-0.027044838294387,-0.007554991170764],[0.0052423938177526,0.026432240381837,0.091377586126328]],[[-0.031473461538553,0.011469420976937,0.027048669755459],[0.034770458936691,-0.036349557340145,-0.038787242025137],[0.051785167306662,-0.062525220215321,-0.044475737959146]],[[0.01065191347152,0.078370667994022,0.014927576296031],[0.019276883453131,0.10492224991322,-0.10968936234713],[0.011651247739792,-0.040494497865438,-0.07658938318491]],[[-0.15471263229847,0.022890269756317,0.10293982177973],[0.10310822725296,0.008193944580853,-0.13359153270721],[0.021965144202113,0.16329398751259,0.064851105213165]],[[0.0458091981709,0.10156947374344,-0.048718675971031],[0.0028794943355024,0.0044980435632169,0.076866522431374],[-0.05756189674139,-0.081867456436157,0.016755843535066]],[[-0.016992790624499,-0.062253568321466,-0.032049667090178],[-0.053867060691118,-0.038516461849213,-0.082245007157326],[-0.025589726865292,-0.032294936478138,-0.0049120667390525]],[[0.086478590965271,-0.057335738092661,0.02915595844388],[0.1004738509655,-0.14459316432476,0.00072921678656712],[-0.012623669579625,0.011966221034527,0.070548512041569]],[[0.0014936053194106,0.1025742739439,0.046445652842522],[0.049167327582836,-0.060417246073484,0.047270845621824],[-0.14900140464306,-0.11700167506933,0.016376597806811]],[[0.030361579731107,-0.034478738903999,-0.025580273941159],[-0.043182365596294,-0.042246535420418,-0.027017401531339],[-0.0020692043472081,-0.091346241533756,0.041214041411877]],[[0.020701734349132,0.00059012888232246,0.01522274967283],[-0.040917441248894,-0.011324550956488,0.016417630016804],[-0.043985135853291,-0.063652023673058,0.12522627413273]],[[0.03833370283246,-0.021603662520647,-0.016438817605376],[0.12749552726746,-0.0031624091789126,-0.020362062379718],[-0.00079356791684404,0.032305799424648,-0.048917096108198]],[[-0.03797085210681,0.013992588035762,0.042568139731884],[-0.048261567950249,-0.067329660058022,-0.044169075787067],[0.11243672668934,0.020790992304683,-0.070942543447018]],[[-0.070482231676579,0.046502597630024,0.037517491728067],[0.00026468088617548,0.0018793324707076,-0.0018002308206633],[0.053084965795279,-0.0096731381490827,-0.048641372472048]],[[-0.030532572418451,-0.06301262229681,-0.022884180769324],[-0.13496208190918,-0.12103130668402,0.035709511488676],[-0.066371969878674,0.023506747558713,0.050376437604427]],[[-0.0041025928221643,-0.1301567107439,0.085812330245972],[0.068336755037308,-0.075392879545689,0.057574398815632],[0.033783197402954,0.18311746418476,-0.10087425261736]],[[0.021058011800051,0.018399994820356,-0.21326479315758],[0.027836438268423,0.092573121190071,0.0645811855793],[0.026107491925359,-0.054505337029696,0.090247042477131]],[[0.031704280525446,0.029024921357632,-0.014353764243424],[0.017376892268658,0.011805027723312,0.049597088247538],[-0.014417207799852,0.017870197072625,0.018731687217951]],[[0.0081476988270879,-0.039326183497906,-0.047740269452333],[0.01769220456481,0.024746114388108,0.0099998731166124],[-0.083469823002815,0.043510150164366,0.088690623641014]],[[-0.070915579795837,0.058874171227217,-0.003748191986233],[-0.069284647703171,0.031610738486052,-0.018769361078739],[-0.012196444906294,0.046204082667828,-0.0023199236020446]],[[-0.048634827136993,0.087111316621304,-0.035865750163794],[-0.061479769647121,0.0080952839925885,0.029632093384862],[-0.059348538517952,-0.033325713127851,0.021748231723905]],[[0.013695594854653,-0.028705989941955,0.038885869085789],[-0.018123831599951,0.046065583825111,0.026585591956973],[-0.010570839047432,0.039558589458466,-0.0017948230961338]],[[-0.075705662369728,-0.070462703704834,0.092347651720047],[-0.042369198054075,-0.013769891113043,0.068263240158558],[0.043626148253679,0.074194259941578,0.01140119228512]],[[-0.004457329865545,-0.0070694996975362,0.0086415819823742],[0.020312815904617,-0.086376659572124,-0.025122355669737],[0.054041896015406,0.042176179587841,-0.036879923194647]],[[-0.025014836341143,0.0093158483505249,0.045748524367809],[-0.13326391577721,0.021204326301813,-0.065514393150806],[-0.00063277233857661,-0.073002144694328,-0.10215225070715]],[[0.059132650494576,0.0021835851948708,-0.024794526398182],[0.092687629163265,-0.040832050144672,-0.039611849933863],[0.056085038930178,0.0039982199668884,-0.024960976094007]],[[-0.033458516001701,0.024803763255477,0.028282834216952],[-0.010233697481453,0.020934442058206,-0.038955889642239],[0.016461765393615,-0.033888105303049,-0.0073143346235156]],[[0.090535245835781,0.0154172712937,-0.012544210068882],[0.082347497344017,0.11749728024006,0.061669234186411],[-0.0017227283678949,0.065626367926598,-0.0087118726223707]],[[0.029732139781117,0.010577086359262,0.018788743764162],[0.059241604059935,-0.014895747415721,0.031893689185381],[-0.085561983287334,-0.097028508782387,-0.083667613565922]],[[0.028340008109808,-0.034824293106794,-0.03352128714323],[0.037953983992338,0.053198829293251,0.0005406835116446],[0.0061379484832287,-0.0012408933835104,-0.031193384900689]],[[0.053415227681398,0.029130648821592,0.1233831718564],[-0.024208856746554,0.029169213026762,0.17574395239353],[-0.033739667385817,0.14230611920357,-0.018947741016746]],[[-0.076970688998699,-0.09380691498518,-0.10100966691971],[-0.022003075107932,0.063566654920578,0.088327959179878],[0.019226873293519,0.063299410045147,-0.017585320398211]],[[0.041914150118828,0.024976946413517,0.062638372182846],[0.021420650184155,-0.014686234295368,-0.0047288979403675],[0.044771824032068,-0.0073306919075549,0.10782355070114]],[[0.063506603240967,-0.071048691868782,-0.064156822860241],[0.055098917335272,0.0069460207596421,-0.025969993323088],[-0.033311285078526,0.098826222121716,0.014219925738871]],[[-0.1001423150301,0.0010291780345142,0.075110740959644],[-0.018502170220017,-0.020800601691008,0.052296720445156],[0.14500343799591,-0.18679195642471,-0.053028486669064]],[[0.033732004463673,-0.014897140674293,0.038284093141556],[0.0004621219704859,0.037472292780876,0.040003333240747],[-0.0028444912750274,-0.024457572028041,-0.041401110589504]],[[0.010037712752819,0.046011600643396,0.034320149570704],[-0.062123320996761,0.029195614159107,-0.061296798288822],[-0.037399493157864,0.028719803318381,-0.12363199144602]],[[0.0019730373751372,-0.015379723161459,0.080656416714191],[-0.0077597876079381,-0.050184834748507,0.10370493680239],[-0.0056484350934625,-0.10389686375856,0.04840561747551]],[[0.012793704867363,0.030106257647276,0.11061114817858],[0.023767417296767,-0.027392543852329,-0.01562774553895],[-0.06952029466629,0.031446602195501,-0.037306718528271]],[[0.052294533699751,-0.043892908841372,0.088353008031845],[0.018969701603055,-0.10927854478359,0.085858836770058],[-0.027991993352771,0.09017576277256,0.044133018702269]],[[-0.042517177760601,-0.039498969912529,-0.012379378080368],[0.041247464716434,-0.052724353969097,0.019197829067707],[0.078868374228477,0.038247056305408,0.066224791109562]],[[-0.057833548635244,0.044297624379396,0.0020820314530283],[-0.072024986147881,-0.063311398029327,0.014696626923978],[0.03484321013093,0.012237389571965,0.010225930251181]],[[0.017946910113096,0.029924180358648,-0.002563611138612],[0.010452684946358,-0.053449500352144,0.0014089307514951],[0.031315267086029,-0.00053003669017926,0.035075049847364]],[[-0.10630267858505,-0.058347370475531,-0.019659589976072],[-0.055076636373997,0.057268876582384,-0.0034241359680891],[-0.040916658937931,0.030878828838468,0.0018581873737276]],[[0.037096627056599,-0.02831170335412,0.0014147171750665],[0.04786567017436,-0.043394114822149,0.030961705371737],[-0.073865629732609,0.035748839378357,-0.01489972975105]],[[0.014126558788121,0.0072217448614538,0.0083024818450212],[0.013302446343005,0.029916061088443,-0.049849633127451],[0.015124881640077,-0.046756472438574,0.0032712118700147]],[[-0.024992916733027,-0.05831752717495,-0.011716480366886],[-0.041376184672117,-0.070002555847168,-0.0081191789358854],[0.0080571891739964,0.018797241151333,0.1125997453928]],[[0.078925639390945,0.035087306052446,0.06349878013134],[0.0007288814522326,0.039305403828621,0.038419868797064],[0.014177223667502,0.001590344356373,-0.040699705481529]],[[-0.023764966055751,-0.01016738358885,-0.0075856484472752],[0.010950297117233,0.066899850964546,0.01208970323205],[0.005307930521667,0.12419846653938,0.026724185794592]],[[-0.049482271075249,-0.014031804166734,-0.022146716713905],[0.0039052939973772,0.040736962109804,-0.021146979182959],[-0.011101210489869,0.033167619258165,0.038675528019667]],[[0.034044444561005,0.027604239061475,-0.024345383048058],[-0.051992282271385,0.083049163222313,-0.022146042436361],[-0.037385057657957,0.1141828969121,-0.065351963043213]],[[0.0030292158480734,-0.073942884802818,-0.0045215440914035],[0.022105935961008,-0.070776484906673,0.046442229300737],[-0.0295843873173,0.04483700171113,0.075857646763325]],[[0.013991604559124,0.037178214639425,-0.031193861737847],[-0.017628965899348,0.12517242133617,0.091463983058929],[0.04363988339901,-0.023867854848504,-0.20656920969486]],[[0.0056549930013716,0.0014126695459709,-0.0082230614498258],[-0.028060561046004,-0.057698387652636,-0.032753869891167],[-0.038745626807213,-0.012487132102251,-0.04647483304143]],[[0.021286739036441,-0.011137492954731,-0.12362357228994],[0.045665480196476,0.083175770938396,-0.13563504815102],[0.030801892280579,0.083025388419628,-0.10124480724335]],[[0.010216725990176,-0.0026941881515086,0.021346325054765],[0.024156130850315,0.054708696901798,0.046146016567945],[0.072138242423534,0.032870933413506,0.013701684772968]],[[-0.014963140711188,0.070188485085964,-0.035606574267149],[-0.04523890838027,0.027072373777628,-0.039245307445526],[-0.097535319626331,-0.072564877569675,-0.003587853629142]],[[-0.046280652284622,0.11261006444693,0.093413792550564],[0.014740486629307,0.10281832516193,0.015761587768793],[0.11041488498449,0.031280044466257,0.035858009010553]],[[0.003679073182866,0.035720251500607,-0.0053613255731761],[-0.085567630827427,0.024427575990558,-0.069116190075874],[-0.0030919124837965,0.03087367489934,-0.041786804795265]],[[0.042782478034496,-0.0058038830757141,0.028564533218741],[-0.037358641624451,0.017397133633494,-0.02023096382618],[0.0092366226017475,0.011032943613827,-0.069631785154343]],[[-0.087721720337868,-0.061049867421389,-0.035035271197557],[0.012876452878118,0.063854910433292,-0.010634491220117],[0.0060124299488962,0.020980989560485,-0.0034560312051326]],[[-0.031487479805946,-0.043503075838089,0.043536905199289],[-0.067476570606232,0.056607808917761,0.045855138450861],[-0.050297446548939,-0.042650815099478,0.039110582321882]],[[-0.017817137762904,0.034475743770599,-0.060833431780338],[-0.026590254157782,0.0087634148076177,-0.094048567116261],[-0.08698359131813,0.040840458124876,0.14977495372295]],[[-0.015462107025087,-0.066250666975975,0.05977438390255],[0.0064921397715807,-0.013049336150289,-0.0031463156919926],[0.031711764633656,0.15751172602177,-0.12612488865852]],[[-0.0034586458932608,-0.0094693973660469,0.078019551932812],[0.038211222738028,-0.068242684006691,0.0072147781029344],[0.038119945675135,0.086564563214779,-0.0065278671681881]],[[-0.0032119208481163,-0.0022067811805755,-0.0029419427737594],[0.051319301128387,-0.0023181212600321,-0.0074676470831037],[-0.03318965062499,0.022580802440643,-0.0075374888256192]],[[0.08012580126524,-0.13071984052658,-0.078035034239292],[0.051187384873629,-0.044710990041494,0.020667690783739],[-0.068895600736141,0.0099941175431013,-0.012052623555064]],[[0.038077149540186,-0.019931500777602,0.033084936439991],[0.066562458872795,-0.048045568168163,0.0056813829578459],[0.08050923794508,0.032189723104239,-0.032564498484135]],[[-0.017654210329056,-0.013887902721763,-0.02542581781745],[-0.022227190434933,0.068614013493061,0.0030512611847371],[0.059465374797583,-0.034947548061609,-0.028356865048409]],[[0.0089130708947778,0.0065878056921065,-0.015704875811934],[0.042007073760033,0.054682742804289,-0.010440741665661],[-0.042833726853132,0.06941931694746,-0.069117896258831]]],[[[-0.082996197044849,-0.056233942508698,-0.026813011616468],[-0.042045909911394,0.14267092943192,-0.024460652843118],[0.11732973903418,-0.098563529551029,-0.18473017215729]],[[0.0034287213347852,-0.01921116374433,0.057823814451694],[-0.061140283942223,0.1162747964263,0.22763682901859],[0.15559256076813,0.16279418766499,0.18562722206116]],[[-0.095291212201118,-0.12029653042555,0.26933178305626],[-0.14051085710526,-0.060063946992159,0.16239640116692],[-0.059390049427748,0.1860890686512,0.045328058302402]],[[0.082128398120403,0.092950336635113,-0.1428824365139],[0.035913001745939,0.21669107675552,-0.0029116724617779],[-0.11903281509876,0.15608260035515,0.23200762271881]],[[-0.11722208559513,-0.073305636644363,0.09948842972517],[-0.0092150187119842,0.015252839773893,0.091459780931473],[0.090266935527325,0.03337823599577,0.090019024908543]],[[-6.3415704062209e-05,0.062343124300241,0.16672794520855],[0.098535276949406,0.065587878227234,0.093074962496758],[0.02477565035224,0.06959743052721,0.029010064899921]],[[-0.12880206108093,-0.0041920966468751,0.2014140188694],[-0.051865447312593,-0.036906983703375,0.27934336662292],[-0.024032656103373,0.030676778405905,0.11531084775925]],[[0.25128620862961,0.0059075630269945,-0.021886616945267],[-0.097731128334999,-0.1063916310668,-0.070650644600391],[-0.021515492349863,0.010584260337055,0.014255564659834]],[[0.071290113031864,0.12383020669222,-0.16676314175129],[0.11739629507065,-0.20910845696926,-0.19702553749084],[0.02882144600153,-0.055121392011642,0.12527525424957]],[[0.042120937258005,-0.10879781842232,-0.10294350981712],[-0.36506617069244,-0.16672573983669,-0.019249809905887],[0.012053391896188,-0.019897380843759,-0.059691220521927]],[[0.19315713644028,0.046681623905897,0.12153412401676],[0.026104789227247,-0.27682822942734,-0.020963337272406],[-0.033704571425915,-0.076209090650082,0.098405323922634]],[[-0.29584467411041,-0.36207655072212,-0.0002980510762427],[0.20778967440128,0.020438298583031,-0.1182523816824],[0.021169651299715,0.034485790878534,-0.007418539840728]],[[-0.10078828036785,0.10688553750515,0.13356424868107],[0.1809511333704,0.13957352936268,-0.41336780786514],[0.071204662322998,-0.051993809640408,-0.49604603648186]],[[-0.070714570581913,-0.026620853692293,0.052711419761181],[0.056595575064421,-0.12126330286264,0.062050577253103],[-0.10109426826239,-0.10349982231855,0.078846819698811]],[[-0.076379902660847,0.0086833629757166,-0.10211989283562],[-0.20056441426277,-0.23310063779354,-0.10228503495455],[0.06376701593399,-0.24946735799313,-0.24336282908916]],[[0.077742658555508,0.17323811352253,-0.016631430014968],[-0.0891253054142,-0.063620805740356,-0.19902928173542],[-0.2857945561409,-0.084026508033276,-0.083075113594532]],[[-0.11948103457689,-0.31727448105812,-0.36438122391701],[-0.22141775488853,-0.13384404778481,-0.024490211158991],[0.064904525876045,0.046447176486254,-0.2145718485117]],[[-0.021765267476439,-0.0010129883885384,-0.10110822319984],[0.1020880267024,-0.044569052755833,0.02480929158628],[0.052085541188717,-0.078617244958878,-0.01302547659725]],[[-0.056910507380962,-0.079214371740818,0.013294505886734],[-0.099930338561535,0.049088299274445,-0.046428497880697],[0.1731214672327,0.013016707263887,-0.067756623029709]],[[0.082257844507694,-0.10708574950695,0.2947111427784],[0.25335720181465,-0.047504391521215,0.22346846759319],[0.13694134354591,-0.044734362512827,0.10987909883261]],[[-0.019357914105058,0.044608540832996,0.17086365818977],[0.15821082890034,0.10617613047361,0.070184789597988],[-0.092736005783081,-0.10771393030882,0.01020544487983]],[[0.12160047888756,0.11952781677246,-0.042398016899824],[0.008176458068192,0.080406077206135,0.13423782587051],[0.17366687953472,0.081246681511402,0.25058481097221]],[[-0.15600752830505,0.045608337968588,0.10609344393015],[0.14626540243626,0.065461501479149,-0.14583531022072],[0.042158659547567,-0.080699875950813,-0.044764652848244]],[[0.11070370674133,0.19547115266323,-0.067442148923874],[-0.28249564766884,0.029152456671,-0.015300991013646],[-0.30818316340446,-0.29394888877869,-0.088225647807121]],[[-0.043715760111809,0.05799487605691,0.049801677465439],[-0.1456506550312,0.16640028357506,0.2149610966444],[-0.33606544137001,0.015488267876208,0.12146667391062]],[[0.19406343996525,0.18298833072186,0.014093002304435],[0.23177950084209,0.058354377746582,-0.050958681851625],[0.35476776957512,0.23896689713001,-0.085107460618019]],[[0.17033052444458,0.042897690087557,0.061287999153137],[0.12410037219524,-0.062596842646599,0.11373098194599],[0.065015688538551,-0.1090774834156,0.065455064177513]],[[0.052207514643669,-0.23836998641491,0.012103796005249],[0.038628868758678,-0.065357096493244,-0.24366796016693],[0.16573344171047,0.012614919804037,-0.015273123979568]],[[-0.18843156099319,-0.11048095673323,0.044808451086283],[-0.25163441896439,-0.013385972008109,0.12860462069511],[-0.016682179644704,0.036221086978912,0.14016975462437]],[[-0.087606124579906,-0.091729290783405,0.021427340805531],[0.054480034857988,-0.0083917574957013,-0.075949318706989],[0.033244375139475,-0.12708821892738,-0.10261023044586]],[[-0.080335505306721,-0.13951078057289,-0.12696275115013],[0.10886086523533,-0.013877723366022,-0.15064339339733],[-0.061164949089289,-0.03447999060154,0.035227730870247]],[[-0.085821405053139,-0.024860870093107,-0.15858007967472],[0.059587892144918,-0.028931418433785,-0.29157948493958],[0.079775266349316,0.079531148076057,-0.049622256308794]],[[-0.014836240559816,-0.024217832833529,-0.051514524966478],[0.056312687695026,0.040843870490789,0.063195154070854],[-0.11914017051458,-0.09048031270504,-0.10362492501736]],[[-0.070681400597095,-0.021194130182266,0.086818180978298],[-0.043989822268486,0.076149336993694,0.16107480227947],[0.17060519754887,0.25785040855408,0.072206445038319]],[[0.052388962358236,0.046307623386383,0.037257421761751],[0.096336364746094,0.087443791329861,0.14554125070572],[-0.057665158063173,-0.031472757458687,0.080794222652912]],[[-0.072337001562119,-0.085411086678505,-0.038004204630852],[0.13651958107948,-0.093337774276733,-0.066170506179333],[0.22067435085773,-0.057611849159002,-0.010385496541858]],[[-0.023886194452643,-0.1088794991374,-0.11933674663305],[-0.11425491422415,-0.066443800926208,-0.19219943881035],[-0.059760589152575,-0.090705581009388,-0.051558528095484]],[[-0.21771037578583,0.10793788731098,0.17470069229603],[-0.15696409344673,0.024854648858309,0.26028901338577],[-0.12552562355995,-0.12573337554932,0.097964011132717]],[[0.13744448125362,-0.09759147465229,0.15432012081146],[0.12517458200455,0.052741713821888,-0.053894016891718],[0.10808508098125,0.047464959323406,-0.095875337719917]],[[0.045940391719341,0.040124524384737,0.29272383451462],[0.019827205687761,0.021742161363363,-0.086170203983784],[0.0073946425691247,0.045740108937025,-0.07100710272789]],[[0.029309188947082,0.026739621534944,0.072047352790833],[0.019425531849265,-0.021750193089247,-0.011228980496526],[-0.28488993644714,-0.1078707203269,-0.16456139087677]],[[0.055601384490728,0.13176545500755,0.19770039618015],[-0.11128081381321,0.10126808285713,0.26283466815948],[-0.013445392251015,-0.087890438735485,0.12473555654287]],[[-0.0096571408212185,-0.023738292977214,0.14959518611431],[0.13630336523056,0.11286589503288,0.17612601816654],[0.14380976557732,0.2609161734581,0.22781829535961]],[[0.066268391907215,0.057059362530708,-0.012958424165845],[0.034664448350668,0.036035567522049,-0.031472753733397],[-0.23878398537636,-0.033310826867819,-0.081395484507084]],[[-0.08784182369709,-0.12062356621027,-0.18877206742764],[0.022539529949427,-0.034797284752131,0.044030133634806],[0.057002183049917,-0.00071374338585883,0.055709805339575]],[[-0.060021657496691,-0.14308099448681,-0.17393153905869],[0.12371150404215,-0.058290891349316,-0.00062767451163381],[-0.014280824922025,0.10293707251549,0.051812093704939]],[[0.19642770290375,0.032730612903833,0.086264863610268],[0.1123496517539,0.049987502396107,0.19114711880684],[-0.20823290944099,0.066826663911343,0.11760201305151]],[[-0.071234501898289,0.034096546471119,-0.14359985291958],[-0.0008461699471809,0.18394212424755,-0.1264341622591],[-0.09890116751194,0.078639231622219,0.0016499613411725]],[[0.019109776243567,0.089016437530518,0.099985763430595],[-0.1195427775383,-0.16984003782272,-0.039737705141306],[-0.060760784894228,-0.14884604513645,-0.0036405113060027]],[[0.12231729179621,0.015747705474496,0.15398959815502],[0.16089953482151,0.076243981719017,0.043118067085743],[0.053717777132988,0.049353748559952,0.11822813749313]],[[0.0069939726963639,-0.13771145045757,-0.15359787642956],[-0.049020998179913,0.0096117192879319,0.028572691604495],[-0.030211327597499,0.065336786210537,0.022945754230022]],[[-0.02215769328177,0.090722188353539,0.035761084407568],[0.089989341795444,-0.041069995611906,0.017019040882587],[0.0039564003236592,-0.15522648394108,-0.059387605637312]],[[0.012016708031297,-0.032198164612055,-0.065950639545918],[0.17506085336208,0.095176689326763,-0.034438706934452],[0.042124629020691,-0.039242520928383,-0.071389757096767]],[[-0.049241229891777,-0.17869333922863,-0.11731959879398],[-0.18792895972729,-0.20182441174984,-0.38681980967522],[0.031104888767004,0.0908133238554,0.036730345338583]],[[-0.061145335435867,-0.081914864480495,0.037662923336029],[-0.0067080580629408,-0.095925882458687,-0.03153920173645],[-0.23564924299717,-0.0028257328085601,0.086859203875065]],[[0.091014765202999,-0.047200050204992,-0.096182517707348],[-0.065405696630478,-0.19420571625233,-0.18262678384781],[0.016973467543721,0.14947767555714,-0.051328040659428]],[[0.1470489948988,0.11520309746265,0.195577070117],[0.038095597177744,-0.060703013092279,0.10123383998871],[0.012431954964995,-0.13318394124508,-0.080582864582539]],[[0.032416228204966,0.079463623464108,-0.099538035690784],[0.021925158798695,0.11984159052372,-0.11316271871328],[0.07104155421257,0.0015652653528377,-0.098133057355881]],[[-0.083964116871357,-0.23324742913246,-0.086376547813416],[-0.092112220823765,0.0053957267664373,0.035729851573706],[0.029184581711888,0.11185936629772,0.020860768854618]],[[-0.091260254383087,-0.18303607404232,-0.14037261903286],[0.0082763414829969,0.094733692705631,0.13769802451134],[0.073397897183895,-0.003738830331713,0.069777362048626]],[[0.055423744022846,0.090702474117279,-0.15497487783432],[-0.079491585493088,0.091332882642746,-0.17809067666531],[-0.073101714253426,0.1111211925745,0.056740466505289]],[[0.13402445614338,-0.024301690980792,-0.033210340887308],[-0.2243529856205,-0.29936608672142,-0.052281346172094],[-0.0041681895963848,-0.002734481357038,0.032276652753353]],[[-0.13711984455585,0.10361573845148,0.065587051212788],[0.032966431230307,-0.11072909086943,-0.053248941898346],[0.18253099918365,0.17222210764885,0.026271462440491]],[[-0.0011406670091674,0.069449886679649,-0.17414581775665],[-0.1616403311491,-0.076199889183044,-0.063996978104115],[-0.075479991734028,-0.00080237293150276,0.0089202513918281]],[[-0.17303067445755,-0.032632380723953,-0.1307325065136],[-0.10376021265984,-0.031860176473856,-0.18708522617817],[0.016570242121816,-0.053673036396503,-0.087861321866512]],[[-0.057467125356197,-0.017213229089975,0.21143354475498],[0.0080762635916471,0.06192084774375,0.085271909832954],[0.080195344984531,0.026906063780189,0.061586748808622]],[[0.1415338665247,-0.13887283205986,-0.13583153486252],[-0.19804446399212,-0.095091938972473,-0.15591470897198],[-0.049047581851482,0.10444352030754,-0.28319361805916]],[[0.093123771250248,-0.10090404003859,-0.147465929389],[0.071818366646767,0.049263820052147,-0.0013842330081388],[-0.024290524423122,0.11865427345037,0.091678820550442]],[[-0.15819720923901,0.055921655148268,-0.025735761970282],[0.020694253966212,0.1749913841486,0.074089638888836],[0.29047951102257,0.2031157463789,0.13685683906078]],[[0.09328830242157,-0.033818773925304,-0.13320603966713],[0.075616806745529,-0.06581936776638,-0.048751410096884],[0.22676326334476,0.27047157287598,0.064391016960144]],[[-0.083979487419128,0.11928428709507,0.3792516887188],[-0.068289786577225,-0.050707686692476,-0.3601832985878],[-0.078680448234081,0.084746174514294,0.10076107084751]],[[-0.060876999050379,-0.082265004515648,-0.38325130939484],[-0.028716959059238,0.0068196719512343,-0.13767471909523],[0.047910206019878,0.057468328624964,0.024293541908264]],[[-0.35937967896461,-0.11541470140219,-0.132069632411],[-0.060117624700069,-0.013336106203496,0.028956864029169],[0.032129131257534,-0.046270381659269,0.082692861557007]],[[0.052070092409849,0.098810531198978,0.04257432743907],[0.19540350139141,0.10305520892143,-0.31010222434998],[0.30808052420616,-0.064317643642426,-0.1242920383811]],[[-0.26196658611298,0.046932861208916,0.060562618076801],[0.065196998417377,-0.26338389515877,-0.11976367980242],[-0.012662246823311,-0.13480319082737,-0.091728061437607]],[[-0.030809020623565,-0.035754036158323,0.061647072434425],[0.13713756203651,-0.01229761634022,0.12421482056379],[0.13761100172997,0.098626039922237,-0.10114423185587]],[[-0.019166897982359,0.1758691817522,0.26040935516357],[-0.19296500086784,-0.070920065045357,0.16897238790989],[0.016184370964766,0.012801456265152,0.047008499503136]],[[-0.11267837882042,-0.068033173680305,-0.2817260324955],[-0.029731806367636,0.1646142154932,-0.03923461958766],[-0.011462637223303,0.16972380876541,0.063544347882271]],[[-0.072547435760498,-0.094007112085819,-0.13155481219292],[-0.22303402423859,-0.043790355324745,0.052999503910542],[0.064167529344559,0.12401496618986,0.015926297754049]],[[-0.065116323530674,-0.009449296630919,0.10841105878353],[0.085921809077263,0.057085160166025,-0.15756870806217],[0.12997370958328,0.12059624493122,-0.24672567844391]],[[-0.090463452041149,-0.089089445769787,-0.094694465398788],[0.12485811859369,0.079921789467335,-0.0026227121707052],[-0.12498796731234,-0.022324299439788,0.048782467842102]],[[-0.1002160385251,0.021679516881704,0.052105944603682],[-0.017729805782437,-0.032879091799259,0.20058855414391],[0.099958695471287,0.052493765950203,0.01698362082243]],[[0.038560416549444,0.020852128043771,-0.053251720964909],[-0.038547154515982,0.11895852535963,0.10784071683884],[0.10817630589008,-0.031338103115559,-0.074964478611946]],[[-0.052812710404396,0.0031299898400903,0.030730970203876],[0.025347776710987,-0.0032396833412349,0.050575986504555],[0.13502295315266,0.046935278922319,0.012195078656077]],[[0.08522467315197,0.052140343934298,0.064255133271217],[0.095176309347153,0.0097242072224617,0.073539234697819],[0.024868221953511,-0.032141640782356,0.014368646778166]],[[-0.032196491956711,-0.028153797611594,0.012651758268476],[0.12300810962915,-0.057428002357483,0.093305476009846],[-0.024317560717463,-0.065425544977188,0.031332679092884]],[[0.12089396268129,0.1094970703125,0.2257355004549],[0.016936818137765,-0.025934744626284,-0.17774951457977],[-0.14164239168167,-0.053058713674545,0.040386069566011]],[[0.077630281448364,0.019441103562713,0.17738690972328],[-0.0020400930661708,0.12545195221901,0.022535623982549],[-0.095064416527748,0.21623864769936,0.093912936747074]],[[0.13017511367798,-0.095704667270184,-0.13936614990234],[-0.16572396457195,-0.20446807146072,0.10003777593374],[-0.037461306899786,0.016537634655833,0.091119267046452]],[[0.027586821466684,-0.0033846367150545,-0.031453594565392],[-0.1364044547081,-0.16966646909714,-0.00059391255490482],[-0.13084729015827,-0.17841689288616,0.047610431909561]],[[-0.060249619185925,0.18558070063591,0.088452942669392],[-0.17082972824574,0.059185523539782,0.061924815177917],[-0.023125723004341,-0.033123649656773,0.016583025455475]],[[0.093143068253994,-0.0078506674617529,0.019252043217421],[0.23824208974838,0.11219916492701,0.2478931248188],[0.051865488290787,0.21637754142284,0.26814812421799]],[[0.013761010020971,-0.1157503053546,-0.046820409595966],[0.067544624209404,0.013122507371008,0.029428027570248],[-0.088246203958988,-0.077707201242447,-0.19010983407497]],[[0.15933334827423,0.055775426328182,-0.091289721429348],[0.010209686122835,-0.0005591475055553,0.022953968495131],[0.034860301762819,0.026015788316727,0.050187539309263]],[[0.11641877144575,0.14388944208622,0.064265921711922],[0.12849925458431,-0.006741545163095,-0.016252944245934],[-0.050706669688225,-0.11923491954803,0.053384486585855]],[[0.10236648470163,0.1532389819622,-0.37409850955009],[0.18519952893257,-0.14681899547577,-0.017616353929043],[-0.10599929094315,0.02875298447907,0.1545508056879]],[[-0.051065731793642,-0.064760729670525,-0.087705925107002],[-0.23323076963425,-0.14513655006886,-0.021151596680284],[-0.037769056856632,-0.18755947053432,-0.061268359422684]],[[0.080340094864368,-0.047184940427542,0.063662603497505],[0.072992518544197,0.050980042666197,0.23507291078568],[0.013935420662165,-0.068356908857822,0.085552215576172]],[[-0.091387845575809,-0.08669101446867,-0.016034778207541],[0.049016423523426,0.19699560105801,0.048483777791262],[0.040250401943922,0.1477030813694,0.080482259392738]],[[0.10513692349195,0.17164240777493,-0.13718047738075],[0.0089209182187915,0.1269103884697,-0.13053907454014],[0.065545670688152,0.049995213747025,-0.1272901147604]],[[-0.14612324535847,0.1090028360486,0.037328075617552],[0.008765434846282,0.092201501131058,-0.0057655936107039],[-0.019236404448748,-0.018496342003345,0.050504364073277]],[[0.033973824232817,-0.084005445241928,-0.22279906272888],[-0.016337551176548,-0.021051097661257,0.047013647854328],[-0.0025634213816375,0.081639528274536,0.13745279610157]],[[-0.14226396381855,-0.17285308241844,-0.034945912659168],[-0.19637867808342,-0.27156573534012,0.035413097590208],[-0.0048050316981971,0.057748038321733,-0.075817488133907]],[[-0.045667793601751,0.038630217313766,0.23448963463306],[-0.13480070233345,0.13656817376614,0.017236052080989],[0.118324264884,-0.00014225668564904,-0.074329152703285]],[[0.024198397994041,-0.098525643348694,-0.021932205185294],[-0.060194987803698,-0.094369508326054,0.052947580814362],[-0.085456773638725,-0.16390587389469,-0.1303121894598]],[[0.11190935969353,0.15067693591118,-0.00084180093836039],[-0.11302804201841,0.0007328552310355,0.082473754882812],[0.049202058464289,-0.014126230962574,0.0031014564447105]],[[0.16810810565948,0.010344476439059,-0.06521325558424],[0.18267714977264,0.0070363422855735,0.15527464449406],[0.1074555143714,-0.11687359213829,0.046733722090721]],[[0.00048777478514239,0.10669171065092,0.069605477154255],[0.021215436980128,0.18932656943798,0.093502141535282],[-0.00019132683519274,-0.13160093128681,0.039359070360661]],[[0.047822382301092,-0.010797558352351,-0.12408645451069],[0.053788691759109,0.057255644351244,0.068265594542027],[0.055331632494926,-0.064778782427311,0.088743112981319]],[[0.11151427030563,0.11950968205929,-0.18396344780922],[0.088444754481316,0.045143481343985,-0.070513881742954],[0.0095361238345504,0.029412338510156,0.070264980196953]],[[-0.20784977078438,-0.10596144199371,0.024603823199868],[-0.059875804930925,-0.018550677224994,0.055395003408194],[0.076389744877815,0.096963569521904,0.11584698408842]],[[-0.0025294320657849,0.032275345176458,0.048573985695839],[0.06990011036396,0.045509327203035,0.15355759859085],[0.12242151796818,0.17623488605022,-0.065296575427055]],[[0.092163808643818,-0.010413073003292,-0.15910787880421],[0.098690986633301,0.043440043926239,0.19057878851891],[0.19177801907063,0.074513867497444,0.14580251276493]],[[0.10355494171381,0.041993323713541,0.070201776921749],[0.12298032641411,0.059521500021219,-0.10903080552816],[-0.086520999670029,0.0047680786810815,-0.03825007379055]],[[0.043733727186918,-0.018457954749465,0.011499485932291],[-0.0016476942691952,0.043950114399195,0.001473403419368],[-0.014801611192524,0.016983106732368,0.084513127803802]],[[-0.059245593845844,-0.31339490413666,-0.095417872071266],[-0.14416337013245,-0.043341748416424,-0.011520559899509],[0.041865464299917,0.01552202180028,0.10300346463919]],[[-0.051099296659231,-0.090118207037449,0.0063285431824625],[0.067533507943153,-0.067093335092068,0.0068133729510009],[0.054130990058184,-0.020553471520543,-0.025793306529522]],[[0.097283512353897,-0.039613742381334,-0.058873973786831],[-0.090611055493355,-0.18726374208927,-0.18371523916721],[0.15033705532551,0.065849974751472,0.062917843461037]],[[-0.024744229391217,0.075920484960079,0.054356586188078],[0.10519869625568,0.011531719937921,-0.018430104479194],[0.045805584639311,-0.037565264850855,-0.1008515432477]],[[-0.20114919543266,0.051338937133551,0.055910706520081],[0.22429117560387,0.13983660936356,-0.10045116394758],[-0.17612199485302,-0.14201007783413,0.062054064124823]],[[-0.14960658550262,-0.18715772032738,-0.21028284728527],[-0.14826026558876,-0.10969846695662,-0.082426071166992],[-0.061299957334995,-0.16090193390846,-0.077958360314369]],[[0.085650436580181,0.034688830375671,0.10098975151777],[0.18056839704514,0.22213280200958,0.024503972381353],[0.094018988311291,0.13995487987995,0.094176575541496]],[[-0.081699945032597,0.098002150654793,0.11058256030083],[-0.21692456305027,-0.19736133515835,-0.045727256685495],[-0.099851354956627,-0.23385836184025,-0.078021548688412]],[[0.066068761050701,0.07844764739275,0.063450954854488],[0.0046535991132259,0.069456547498703,-0.01129088550806],[0.11526750773191,0.071985870599747,0.013900515623391]],[[-0.17368420958519,0.0020999680273235,0.020883549004793],[0.0036954923998564,0.020014550536871,0.073645919561386],[0.13619345426559,-0.015727870166302,0.012789615429938]],[[-0.060738798230886,-0.052135109901428,-0.16372808814049],[0.033424861729145,0.028856508433819,-0.080326274037361],[0.027587827295065,0.037287943065166,0.1434306204319]],[[0.0073354137130082,0.023748882114887,0.098495863378048],[0.017326114699244,0.20998595654964,-0.047462657094002],[-0.13293626904488,0.060794286429882,0.059331938624382]],[[0.067829266190529,0.21342101693153,0.29001352190971],[-0.099825896322727,0.12073010951281,-0.022029440850019],[0.079590752720833,0.042115218937397,0.029675142839551]]],[[[-0.037904910743237,0.04201402887702,-0.076923713088036],[-0.00082840339746326,0.015205228701234,-0.02952528372407],[0.050201207399368,-0.028869697824121,-0.016825065016747]],[[0.05094563215971,0.11318142712116,0.055579848587513],[0.010548697784543,-0.060214959084988,0.014286315999925],[-0.024595443159342,0.049561038613319,0.044492520391941]],[[-0.035047940909863,0.11191350966692,0.016986900940537],[-0.096747972071171,-0.031499803066254,-0.044998079538345],[0.052126433700323,0.11425463855267,-0.014518409967422]],[[0.1027350500226,0.024064535275102,-0.10495340824127],[0.084293760359287,0.1254774928093,0.045057147741318],[-0.035946886986494,-0.029858807101846,-0.043323859572411]],[[-0.069472536444664,-0.029629474505782,-0.11218804121017],[0.08170472830534,-0.0077603496611118,-0.01536687463522],[0.068532191216946,0.012182766571641,0.12945131957531]],[[-0.019003106281161,-0.050316866487265,-0.051118765026331],[0.11543649435043,0.037672683596611,0.05778044834733],[0.001843778649345,0.013146730139852,0.023267235606909]],[[-0.0094020869582891,0.036163002252579,-0.031925197690725],[0.0097922030836344,-0.049961965531111,0.078227125108242],[-0.0035094879567623,-0.094349935650826,-0.079102978110313]],[[0.038957871496677,-0.071695193648338,-0.039073638617992],[0.048830043524504,-0.011319593526423,-0.042656484991312],[-0.0036898609250784,-0.01182821020484,0.028621232137084]],[[-0.07364983856678,-0.046761482954025,0.051763135939837],[0.040132883936167,-0.034894466400146,0.15672633051872],[0.03917820006609,0.12852613627911,-0.1013392880559]],[[0.062479820102453,-0.09455381333828,0.035809423774481],[0.020569058135152,0.13689833879471,0.018724260851741],[0.029524981975555,-0.075641252100468,0.060132090002298]],[[0.034272596240044,0.11217056959867,0.074142508208752],[-0.018645217642188,0.0069978437386453,0.10107217729092],[-0.015784146264195,-0.084366649389267,-0.027479944750667]],[[-0.02086902782321,-0.11819573491812,-0.30628588795662],[-0.088527478277683,-0.03271247074008,-0.0092897284775972],[0.032086793333292,0.020744364708662,-0.041859086602926]],[[0.023093026131392,-0.052636858075857,0.073264189064503],[-0.083281435072422,0.023711616173387,-0.068540617823601],[0.020960399881005,0.0022982060909271,-0.065288797020912]],[[-0.07700403034687,-0.075562618672848,0.032875683158636],[-0.10327684134245,-0.14511424303055,-0.052070938050747],[-0.013824140653014,-0.095133922994137,-0.11430777609348]],[[0.04958276450634,0.070748426020145,-0.0088176848366857],[0.1082419231534,0.072135508060455,-0.021830374374986],[0.0029878506902605,0.090489096939564,0.08467973023653]],[[0.015522812493145,-0.080499224364758,-0.025542350485921],[0.16850152611732,-0.096363112330437,-0.11266712099314],[-0.040225345641375,-0.12529072165489,-0.032289039343596]],[[0.060368809849024,0.058570973575115,-0.052577868103981],[-0.0047581666149199,-0.012753980234265,0.089718334376812],[0.051005631685257,0.054414268583059,0.032156907021999]],[[-0.036592617630959,-0.042811784893274,-0.031819276511669],[-0.057267256081104,-0.011428691446781,0.023904440924525],[-0.018365763127804,0.048428639769554,0.11910706013441]],[[-0.03855037689209,-0.0094219595193863,0.0032544923014939],[0.053996112197638,-0.051426813006401,-0.070465862751007],[-0.0024832924827933,-0.090559780597687,-0.064531318843365]],[[-0.054772756993771,-0.069791212677956,-0.00088512897491455],[0.060923561453819,0.05875289440155,-0.075453728437424],[0.13234782218933,-0.069500051438808,-0.037731401622295]],[[-0.17225754261017,-0.041598994284868,-0.00018101866589859],[-0.043061930686235,0.024209301918745,0.082372963428497],[0.0010570357553661,-0.049577042460442,0.012173363938928]],[[0.12610404193401,0.04379328340292,0.085966773331165],[0.008342077024281,-0.014132277108729,0.011442512273788],[-0.1434079259634,-0.016562178730965,-0.022212764248252]],[[-0.050766557455063,-0.0050984709523618,0.048833474516869],[0.044075772166252,-0.056350968778133,-0.14951966702938],[0.0076632709242404,0.004904477391392,-0.0027040883433074]],[[0.17441542446613,-0.0080217029899359,0.0099280970171094],[-0.020059378817677,0.084390595555305,-0.082563690841198],[-0.13176286220551,-0.038822326809168,-0.02973847836256]],[[0.064382173120975,-0.088201396167278,0.021528504788876],[0.053207021206617,0.065696604549885,-0.0031817019917071],[0.11628193408251,-0.14689555764198,-0.051270671188831]],[[-0.0061745280399919,-0.044648818671703,-0.099541269242764],[-0.048378828912973,-0.049422722309828,0.040362626314163],[-0.15575765073299,-0.073652319610119,-0.043955840170383]],[[-0.059400718659163,-0.014024497941136,0.0029103606939316],[-0.047345709055662,-0.11527752876282,-0.024428822100163],[0.088999599218369,0.017381748184562,0.099984116852283]],[[-0.046095326542854,-0.050732493400574,0.03844902291894],[-0.083716727793217,0.032155890017748,-0.064071327447891],[-0.017909858375788,-0.01911442913115,0.15505969524384]],[[-0.047722477465868,-0.10089667141438,-0.1371281594038],[0.014671855606139,0.0099157961085439,-0.20316381752491],[0.073989585042,0.072663143277168,0.03281258046627]],[[0.05111712962389,-0.0025485195219517,0.094284802675247],[0.10717466473579,-0.051692318171263,-0.10766262561083],[0.051929838955402,-0.097970388829708,0.0464584864676]],[[-0.10736035555601,-0.052640095353127,-0.077419124543667],[0.001257615396753,0.027662046253681,0.045678813010454],[0.042704492807388,-0.0048888092860579,-0.084135614335537]],[[-0.093407846987247,-0.030486429110169,0.082925371825695],[0.080574221909046,0.088144212961197,-0.036565683782101],[-0.06035690382123,-0.13381192088127,0.10026260465384]],[[0.058167673647404,-0.0012872904771939,-0.0051926216110587],[0.069377668201923,-0.037995807826519,-0.028478737920523],[-0.097626872360706,-0.13458609580994,0.05887608230114]],[[-0.0016442864434794,0.060561306774616,-0.067593462765217],[-0.0094092134386301,-0.051596898585558,-0.12909722328186],[0.0033261207863688,0.15418462455273,-0.063453584909439]],[[-0.06315591186285,0.085360467433929,0.053217615932226],[-0.050480712205172,-0.029381185770035,-0.068718791007996],[-0.11187620460987,0.051168795675039,-0.018610868602991]],[[0.015009411610663,0.073067255318165,0.06054038181901],[-0.025941221043468,-0.02818220667541,-0.043275602161884],[0.020250737667084,0.058270715177059,-0.0036406959407032]],[[0.019461985677481,-0.026324851438403,0.13724568486214],[0.10287376493216,-0.028774756938219,-0.030695669353008],[0.076685637235641,0.095230527222157,0.038947124034166]],[[0.086768180131912,-0.0042711226269603,0.016736237332225],[0.10027687996626,0.012008180841804,-0.040442287921906],[-0.1100365370512,-0.055722795426846,0.16766962409019]],[[0.065911062061787,0.11497647315264,0.04890963435173],[-0.022660622373223,-0.075770825147629,-0.034375727176666],[-0.031832978129387,-0.095297232270241,-0.025123925879598]],[[0.014222367666662,0.032950185239315,0.1480471342802],[0.10887681692839,-0.0061220419593155,0.057102598249912],[-0.017256701365113,-0.02632556296885,-0.13708709180355]],[[-0.04593314230442,-0.069293648004532,0.054794806987047],[0.073908776044846,0.088590286672115,-0.048659335821867],[0.017166826874018,0.080624401569366,0.1477989256382]],[[0.052736561745405,-0.013254627585411,-0.083706423640251],[0.12889790534973,0.071763016283512,0.037673272192478],[0.066673025488853,-0.0033202997874469,0.03156029060483]],[[-0.091257594525814,-0.024743439629674,-0.020207159221172],[-0.0012272557942197,-0.0343800149858,0.0060632359236479],[0.019623620435596,0.019891807809472,0.079048648476601]],[[0.054138068109751,0.0059346775524318,-0.012822742573917],[-0.058784477412701,0.041458647698164,-0.091243512928486],[-0.066990092396736,0.009568084962666,-0.14006586372852]],[[-0.034056548029184,-0.14124467968941,-0.093938209116459],[-0.019384263083339,0.066013276576996,0.05268881842494],[-0.09131545573473,0.0073237321339548,-0.063790090382099]],[[0.032445896416903,-0.10251028835773,-0.060481961816549],[-0.029608426615596,-0.085118442773819,0.046825259923935],[-0.09889479726553,-0.040885150432587,0.069330163300037]],[[-0.045997895300388,-0.06644381582737,-0.049769308418036],[-0.015140059404075,-0.085092142224312,0.041359603404999],[-0.10793821513653,0.001360741793178,-0.033171776682138]],[[-0.039772544056177,-0.071230717003345,0.018014332279563],[0.087520949542522,0.042007081210613,-0.0071285753510892],[0.069886811077595,-0.058865513652563,-0.026179308071733]],[[0.031157106161118,0.027312876656651,0.1272354722023],[0.04264410212636,-0.047223299741745,-0.13298298418522],[0.048499006778002,-0.20592315495014,-0.052858788520098]],[[-0.05495672300458,-0.055231358855963,0.085581831634045],[-0.078536324203014,-0.065230175852776,-0.02811156027019],[-0.041113667190075,-0.1420324742794,-0.045931156724691]],[[-0.099491268396378,0.015436397865415,-0.024419579654932],[-0.12197499722242,-0.15542833507061,-0.019616292789578],[-0.023451745510101,-0.15985284745693,-0.013194520026445]],[[-0.1768706291914,0.045973237603903,-0.058315254747868],[-0.10878293961287,-0.023233588784933,-0.042367838323116],[-0.012286320328712,0.089465886354446,0.028815591707826]],[[-0.0077813300304115,0.049134775996208,0.0080249533057213],[-0.076215617358685,-0.017393447458744,-0.0091130640357733],[-0.063609547913074,-0.018492098897696,-0.046501267701387]],[[0.069806784391403,0.041661988943815,0.015588361769915],[0.042249869555235,0.05014119297266,0.038792703300714],[0.04375946521759,0.095696404576302,0.10901187360287]],[[0.0085699399933219,0.099304430186749,-0.0068631018511951],[0.057276267558336,-0.029756477102637,0.06049595400691],[-0.14026300609112,-0.048577677458525,-0.0059635848738253]],[[0.15448352694511,0.012160125188529,0.019924553111196],[-0.10938601195812,-0.0012065654154867,0.07927006483078],[-0.0092146014794707,-0.016279825940728,-0.094957120716572]],[[-0.11992762237787,-0.096234820783138,-0.078526556491852],[0.071193970739841,-0.028633745387197,-0.01941435597837],[-0.09318570047617,-0.015606637112796,-0.067951560020447]],[[0.00093094166368246,0.0073750745505095,-0.034282553941011],[-0.094714008271694,-0.024890432134271,-0.025425186380744],[-0.073295556008816,-0.025400307029486,-0.14732074737549]],[[-0.12476459890604,-0.19402612745762,-0.068993702530861],[-0.06461663544178,-0.030004573985934,0.0072856284677982],[-0.12893690168858,-0.083225883543491,0.1095994785428]],[[0.02633242867887,-0.022055556997657,-0.047739259898663],[-0.14771308004856,-0.084091320633888,-0.065970234572887],[0.050687603652477,0.090186759829521,-0.094440713524818]],[[-0.001406854018569,0.0038369293324649,0.0026192010845989],[-0.064835421741009,0.034909851849079,-0.10123648494482],[-0.057979490607977,0.15564922988415,0.0047185816802084]],[[0.11447101086378,0.049158569425344,0.060654107481241],[0.11596056073904,-0.030050890520215,0.048568286001682],[0.018306460231543,0.086287543177605,0.04868470877409]],[[-0.00013098966155667,0.041546825319529,0.032167077064514],[-0.084642700850964,-0.005785008892417,-0.058073926717043],[-0.13372722268105,-0.013854909688234,0.0051639582961798]],[[-0.051428712904453,-0.0045246044173837,0.074505999684334],[-0.024574402719736,-0.074308544397354,-0.0098693948239088],[-0.069359973073006,0.084434300661087,0.030868513509631]],[[-0.16947624087334,-0.1267137080431,-0.088268347084522],[-0.093703664839268,-0.025736277922988,0.10062531381845],[0.0087001770734787,-0.05534116178751,-0.047799807041883]],[[0.0045304642990232,0.082530163228512,-0.056035820394754],[-0.074733406305313,0.04406376928091,0.033425856381655],[-0.15524816513062,-0.088900297880173,-0.0066226152703166]],[[0.052153091877699,0.038096494972706,0.11227923631668],[0.007941672578454,-0.0051549347117543,0.065636307001114],[-0.19214430451393,0.012643836438656,0.01741099730134]],[[0.073014132678509,-0.11374169588089,-0.019052751362324],[0.14202588796616,-0.031465914100409,-0.002475299872458],[-0.075813919305801,-0.11182916909456,0.021343586966395]],[[0.032600689679384,-0.15975545346737,-0.20652697980404],[0.014822325669229,-0.11007431149483,-0.15928207337856],[0.11439996212721,-0.020906960591674,-0.1156300380826]],[[-0.0058263237588108,-0.11177478730679,0.0087922923266888],[-0.02798711322248,0.015502865426242,0.0087063349783421],[0.017944592982531,0.046905789524317,-0.042022399604321]],[[-0.077827543020248,-0.014549892395735,-0.024646192789078],[-0.012879038229585,-0.030470279976726,-0.08271386474371],[-0.1095904558897,-0.078636661171913,0.044066041707993]],[[0.062616236507893,0.032188076525927,-0.0366315767169],[-0.039866276085377,0.010753592476249,-0.057599551975727],[0.020147826522589,0.0090962033718824,-0.054103419184685]],[[0.0049200938083231,0.078024208545685,-0.0086170714348555],[-0.075548462569714,-0.084727726876736,-0.08682356774807],[-0.011762053705752,-0.026886304840446,-0.14763812720776]],[[-0.049876157194376,0.0090043982490897,-0.068130932748318],[-0.056141961365938,0.0094745270907879,-0.11500792205334],[-0.030099596828222,-0.013041381724179,0.089523538947105]],[[-0.096850626170635,-0.10563358664513,-0.086176089942455],[0.075704477727413,-0.095471762120724,0.065315827727318],[0.015284136869013,-0.048238858580589,-0.015245988033712]],[[-0.059072196483612,0.082373410463333,-0.10994692146778],[0.066395275294781,0.06525581330061,0.013711790554225],[-0.02521601319313,0.030754148960114,0.089494787156582]],[[-0.076014660298824,0.044806782156229,0.072332672774792],[-0.082620777189732,0.022831667214632,-0.054333344101906],[0.072280682623386,0.089508004486561,-0.045381639152765]],[[-0.045273598283529,0.13534308969975,-0.031507834792137],[0.0096803018823266,-0.030300548300147,0.016644801944494],[-0.028854750096798,-0.0065551027655602,-0.030856095254421]],[[0.14451485872269,0.024061154574156,0.031886156648397],[-0.056473016738892,-0.18332417309284,0.090894758701324],[0.12607999145985,0.054389234632254,0.085757061839104]],[[-0.20179241895676,0.010403390042484,-0.028202144429088],[0.0052430601790547,-0.039629872888327,-0.053387183696032],[0.065398253500462,0.065319567918777,0.0047931149601936]],[[-0.045040991157293,-0.022735733538866,-0.055805429816246],[0.065633647143841,0.02524901740253,-0.0041542164981365],[0.063637956976891,0.13931335508823,0.028714312240481]],[[-0.077165633440018,-0.038226924836636,0.023740917444229],[-0.23176465928555,-0.11919822543859,-0.098211206495762],[0.062016822397709,-0.054213047027588,-0.0075136697851121]],[[-0.073974721133709,0.0098995082080364,-0.065280199050903],[-0.093749783933163,0.029000530019403,-0.0059309843927622],[0.022878108546138,-0.0093960640951991,0.042289111763239]],[[-0.073007375001907,-0.079467996954918,-0.029313860461116],[-0.081664636731148,-0.016735317185521,-0.067974142730236],[-0.084455490112305,-0.010060145519674,-0.12439508736134]],[[-0.056371968239546,-0.019854534417391,0.0030637951567769],[-0.0054667345248163,-0.15318731963634,0.069470204412937],[-0.013992037624121,0.049260914325714,0.094804145395756]],[[-0.054579332470894,-0.096521891653538,-0.15027315914631],[0.008436287753284,0.0448446162045,0.029876761138439],[-0.017264164984226,0.0067579657770693,0.0065980297513306]],[[0.01695897616446,0.014163821935654,0.074575036764145],[-0.012637252919376,0.13504423201084,-0.083724573254585],[-0.16076192259789,-0.0027873229701072,0.14071509242058]],[[-0.048247184604406,-0.17091655731201,-0.18216374516487],[0.017787585034966,0.024849323555827,0.076759144663811],[-0.044697370380163,0.036308776587248,0.027316404506564]],[[0.070523627102375,0.0076078809797764,-0.029732571914792],[-0.065172471106052,0.074694134294987,0.023843424394727],[0.098137781023979,0.017887061461806,-0.018011199310422]],[[-0.0061183031648397,0.046739175915718,0.11672589182854],[-0.075098887085915,-0.075390428304672,-0.018383037298918],[-0.16728368401527,-0.1468219012022,0.056600607931614]],[[-0.11218535900116,0.1171730235219,0.097858749330044],[-0.013782953843474,0.11398351937532,-0.035210207104683],[-0.16066728532314,0.0045828400179744,0.096313826739788]],[[-0.11873504519463,0.094911016523838,-0.02369163185358],[0.036553420126438,0.012775645591319,0.14320296049118],[0.11650715023279,0.047874823212624,-0.025136852636933]],[[0.13119603693485,-0.050095833837986,0.066161178052425],[-0.043335344642401,-0.025382177904248,-0.019625790417194],[0.039410278201103,-0.08524326980114,-0.051498968154192]],[[-0.033278331160545,0.020853394642472,-0.081963375210762],[-0.0083642592653632,0.049051273614168,-0.11040886491537],[-0.054730422794819,-0.014947327785194,-0.112259760499]],[[0.01726278103888,-0.0016614303458482,0.17751455307007],[0.010380192659795,0.093307994306087,-0.037055775523186],[-0.11162497103214,-0.14315278828144,0.026427188888192]],[[-0.030873952433467,0.049107134342194,-0.051240064203739],[0.0082574402913451,0.00062687526224181,-0.047458060085773],[0.092007175087929,0.23250734806061,0.094811499118805]],[[0.04396740719676,0.079315364360809,0.018623130396008],[0.019228596240282,-0.074736535549164,-0.065362423658371],[-0.12283238768578,-0.13264693319798,-0.057326681911945]],[[0.1110529974103,0.087849013507366,0.089980699121952],[-0.012463493272662,0.095614172518253,0.048654660582542],[-0.072437025606632,0.073967844247818,0.088372826576233]],[[-0.057836256921291,-0.035701632499695,-0.038048684597015],[-0.062626264989376,0.01416892092675,0.038836017251015],[-0.068277627229691,0.06201246380806,0.060541186481714]],[[-0.040595985949039,0.016823397949338,-0.00063196825794876],[-0.040102906525135,-0.092235289514065,-0.14463376998901],[-0.049120396375656,0.046303186565638,-0.10293969511986]],[[-0.047033876180649,-0.012940066866577,0.023151950910687],[0.018372301012278,-0.074933029711246,-0.077947616577148],[0.0060309246182442,-0.047313179820776,-0.098573222756386]],[[0.00093212199863046,-0.058598767966032,0.023870445787907],[0.045900605618954,0.052349712699652,0.1309218108654],[0.006187888327986,0.054119009524584,0.044360384345055]],[[0.1003649532795,-0.071130700409412,-0.064001001417637],[-0.098108626902103,-0.12960702180862,-0.074554935097694],[-0.06145453825593,-0.017025031149387,0.023928616195917]],[[-0.0034847354982048,0.11997366696596,-0.029254829511046],[-0.09323950111866,0.012358732521534,0.045948322862387],[-0.072727374732494,-0.044024206697941,0.037924434989691]],[[0.098090991377831,-0.031683068722486,0.0057841925881803],[-0.050455179065466,-0.059652060270309,0.04275806620717],[0.11244393140078,-0.020763983950019,-0.01119345612824]],[[-0.037319533526897,-0.15860702097416,-0.055457729846239],[0.06632224470377,-0.11204723268747,-0.0045637623406947],[0.16854964196682,0.14228500425816,0.003402269911021]],[[-0.13472014665604,0.027201434597373,0.073463618755341],[-0.08545196801424,-0.00045654602581635,0.029121190309525],[-0.0097061851993203,0.038535218685865,0.0015505076153204]],[[0.018928768113256,0.057006105780602,0.050456132739782],[-0.024467147886753,0.13769952952862,-0.13627733290195],[-0.067386671900749,-0.037068422883749,0.097485691308975]],[[0.040043152868748,0.011193986982107,-0.037804197520018],[9.7548778285272e-05,0.028217863291502,0.12331631034613],[0.022074308246374,-0.013204795308411,-0.1508753746748]],[[0.072448261082172,0.063346453011036,-0.12923787534237],[0.087865263223648,0.073316283524036,0.071704536676407],[0.01138305105269,0.045687291771173,-0.089280650019646]],[[-0.052493970841169,-0.10274459421635,-0.15771019458771],[-0.055403087288141,-0.05522795766592,0.0058436430990696],[0.006830123718828,-0.031543109565973,0.038645662367344]],[[-0.021485604345798,-0.091942228376865,-0.056005030870438],[-0.070366367697716,-0.0085759619250894,-0.021316787227988],[0.075783304870129,-0.02077847160399,0.077596083283424]],[[-0.042037270963192,0.028230609372258,-0.030873937532306],[-0.024835478514433,0.057845890522003,0.17094784975052],[0.08407811075449,0.0063910568132997,-0.0071856747381389]],[[0.096289046108723,-0.023119833320379,-0.037317249923944],[-0.0080918958410621,-0.062071561813354,-0.02197896130383],[-0.023109572008252,-0.14408844709396,-0.007281135302037]],[[0.0099379466846585,0.050888992846012,0.031233625486493],[0.012185205705464,-0.083196610212326,-0.053719155490398],[0.17722500860691,0.090149149298668,-0.0071979016065598]],[[0.10148810595274,0.058917727321386,-0.047635342925787],[-0.017163321375847,-0.093694239854813,-0.12007536739111],[0.037380777299404,0.11276054382324,0.046230178326368]],[[0.039003655314445,0.026300124824047,0.034641545265913],[-0.030922228470445,0.056555811315775,-0.072387382388115],[-0.055121690034866,-0.10388816893101,0.011847391724586]],[[0.036253314465284,-0.018530365079641,-0.024166870862246],[0.042826902121305,0.033052712678909,0.027252422645688],[-0.10671979188919,-0.095749996602535,0.10874021798372]],[[0.0024365452118218,0.023289270699024,-0.0056601637043059],[0.010036784224212,0.033350937068462,-0.0555040538311],[-0.092504397034645,0.010224617086351,0.1337411403656]],[[0.041235011070967,0.038154546171427,0.036752514541149],[-0.028157627210021,0.025764489546418,-0.079025074839592],[0.022479558363557,0.0060907988809049,0.10197431594133]],[[0.063550814986229,0.0077480780892074,-0.036369580775499],[-0.024293307214975,0.08820079267025,0.11505402624607],[-0.059871409088373,-0.022123878821731,-0.081623956561089]],[[0.070355623960495,0.0060992646031082,-0.087554216384888],[0.058481596410275,0.027584468945861,-0.15277314186096],[0.064298801124096,0.13292892277241,-0.12456756830215]],[[0.010094031691551,0.051339894533157,-0.058199264109135],[-0.17367427051067,-0.060793537646532,-0.061383757740259],[0.038368422538042,-0.069774754345417,-0.038696773350239]],[[-0.056544449180365,-0.075958289206028,0.0068259220570326],[0.023584781214595,-0.015907026827335,0.0068228151649237],[0.036799173802137,0.0026030419394374,0.026967270299792]],[[0.0047950642183423,-0.0065534664317966,-0.060888659209013],[-0.010633773170412,0.0011717332527041,-0.016482479870319],[-0.12321703881025,0.044851269572973,-0.019779350608587]],[[-0.11840333789587,0.10576420277357,0.053744077682495],[-0.056021172553301,-0.022358985617757,-0.025238877162337],[0.12273934483528,-0.052406970411539,0.045203153043985]],[[-0.045703958719969,-0.027239516377449,-0.0081825125962496],[0.12502819299698,-0.065682142972946,-0.045511700212955],[-0.0064094471745193,0.14555542171001,0.10822732746601]],[[-0.13778328895569,-0.051660429686308,0.0045767859555781],[0.010185309685767,0.066633462905884,-0.064451582729816],[-0.056812353432178,0.010646513663232,0.062176991254091]]],[[[0.089187182486057,-0.032621562480927,0.057330649346113],[-0.0016460980987176,-0.021165190264583,0.02798131108284],[-0.069715559482574,0.032764229923487,-0.035244170576334]],[[-0.045697931200266,0.0071370131336153,0.014195846393704],[-0.01357916276902,-0.05536724627018,0.024583356454968],[0.089192733168602,0.056877098977566,0.098677858710289]],[[-0.046770881861448,0.079155832529068,0.016049269586802],[0.084851823747158,0.019175043329597,-0.081287816166878],[0.017942050471902,-0.049498073756695,0.00054489949252456]],[[0.10162171721458,-0.033426716923714,-0.021779514849186],[-0.020838346332312,0.020630856975913,0.047576263546944],[0.055685855448246,0.038159463554621,0.015011666342616]],[[-0.057378940284252,-0.042755637317896,0.08235177397728],[0.101148866117,-0.029791340231895,0.002065708860755],[0.033037070184946,0.0047538173384964,-0.002218563342467]],[[0.017263259738684,0.059927806258202,-0.040575686842203],[0.058263797312975,-0.048143610358238,0.012410746887326],[0.036687929183245,0.027766728773713,0.056441407650709]],[[-0.012945375405252,0.051714856177568,0.0091919442638755],[-0.0074414233677089,0.0026038929354399,-0.019737683236599],[-0.0055655119940639,-0.0073530157096684,-0.019138865172863]],[[-0.053976193070412,-0.020907109603286,0.007654064334929],[-0.015820555388927,0.08735291659832,-0.0013537119375542],[-0.0014124416047707,0.022815860807896,0.024258818477392]],[[0.072970241308212,-0.045116595923901,0.065352633595467],[-0.00933035928756,0.047242719680071,-0.023236785084009],[0.015437719412148,-0.049721959978342,-0.0048489649780095]],[[-0.048428673297167,-0.0020200435537845,0.0076145902276039],[-0.066140294075012,0.062506146728992,0.032559718936682],[0.032418832182884,0.029118031263351,0.015069988556206]],[[0.0099356025457382,-0.015654424205422,0.047593031078577],[-0.031755838543177,-0.038152497261763,0.068216428160667],[0.0028669140301645,0.0059736296534538,-0.0089960806071758]],[[-0.02876858972013,0.051116477698088,-0.10922024399042],[0.041473276913166,0.038833174854517,0.0025517044123262],[0.038470167666674,-0.00701944809407,0.0066561391577125]],[[0.0029824092052877,0.033782854676247,0.084988750517368],[-0.044198501855135,-0.017354203388095,0.03118665330112],[-0.0072978143580258,0.046427369117737,0.060653883963823]],[[-0.030002990737557,0.027145968750119,0.045991122722626],[0.013419594615698,-0.00078944099368528,0.052683841437101],[0.038102112710476,0.049975693225861,-0.019380170851946]],[[0.076803840696812,0.032453153282404,0.0056805894710124],[-0.058864284306765,0.094996526837349,-0.0021150002721697],[-0.022498965263367,0.069960370659828,0.011672583408654]],[[-0.043471720069647,-0.025253459811211,0.092020690441132],[0.010614639148116,0.020589431747794,0.030474610626698],[-0.001610956271179,0.00010755640687421,-0.037949036806822]],[[0.00090845854720101,-0.016081392765045,-0.057798430323601],[0.053589444607496,-0.011072376742959,-0.045640408992767],[-0.0081717250868678,0.0052916496060789,0.082369774580002]],[[0.0048863044939935,-0.01169765740633,-0.002070982940495],[-0.0090671423822641,-0.020506300032139,-0.031869981437922],[-0.056347541511059,-0.034382548183203,-0.070008099079132]],[[0.02705785818398,-0.03752950578928,0.026127230376005],[0.017090098932385,0.047766081988811,-0.013532347045839],[0.022331215441227,0.029095785692334,0.0032462205272168]],[[0.022354083135724,-0.017257260158658,0.003843866288662],[0.04632531479001,-0.0059891119599342,-0.041119858622551],[0.044866822659969,0.029473351314664,0.017018241807818]],[[-0.063596166670322,-0.051414970308542,-0.013108015060425],[-0.074705734848976,-0.017021484673023,-0.059280347079039],[0.023644210770726,-0.034260679036379,0.059170037508011]],[[0.080184236168861,0.10864038020372,-0.0044841286726296],[-0.083383746445179,0.043972041457891,-0.040365926921368],[-0.0066694463603199,-0.040403492748737,0.029606875032187]],[[-0.06120814755559,0.10832693427801,-0.059653725475073],[0.052797190845013,0.038100503385067,0.020886426791549],[-0.06523223221302,0.023458287119865,0.010693272575736]],[[0.056914482265711,-0.049804486334324,0.03556202724576],[-0.0013922698562965,-0.01884893886745,-0.020605403929949],[0.091324709355831,0.036991413682699,0.058303762227297]],[[0.01371522154659,-0.045257031917572,0.020136734470725],[0.018308494240046,0.0052489945665002,0.00096200936241075],[-0.0017484634881839,-0.016770148649812,0.030311960726976]],[[0.0097650717943907,0.0052309376187623,0.073127694427967],[0.021142797544599,-0.071919739246368,0.018717369064689],[0.016941428184509,-0.034878868609667,0.041267745196819]],[[0.088284038007259,0.025705637410283,-0.066778600215912],[-0.074787929654121,0.0030075013637543,0.0013986094854772],[-0.0056187380105257,0.010234377346933,-0.083818852901459]],[[-0.025958510115743,-0.058876127004623,-0.0042613460682333],[-0.004044946283102,0.01494558993727,-0.04653063043952],[0.052385587245226,0.058273926377296,-0.054783053696156]],[[-0.024096896871924,0.025266917422414,0.023002538830042],[-0.021266281604767,0.046651534736156,0.021174790337682],[0.077853262424469,0.014355819672346,-0.0095752133056521]],[[-0.038030628114939,-0.072760336101055,-0.010779165662825],[-0.014176390133798,0.024866702035069,-0.0030293168965727],[-0.010509765706956,0.062011435627937,-0.061310350894928]],[[0.027770204469562,0.010755970142782,0.012673003599048],[0.042993541806936,-0.025456098839641,-0.023689068853855],[-0.022928301244974,0.020658761262894,-0.01295861043036]],[[-0.0059151742607355,0.020364226773381,-0.066715009510517],[0.07756794244051,-0.020456006750464,-0.018438430503011],[0.0077950465492904,-0.0061534247361124,-0.0076892790384591]],[[-0.011118356138468,0.019382502883673,-0.0009741157409735],[-0.01013580430299,0.034376736730337,-0.058372631669044],[0.012054512277246,0.030539436265826,-0.047223515808582]],[[0.033760659396648,-0.015609127469361,-0.0019912135321647],[0.027600925415754,-0.068766973912716,0.0051405695267022],[0.0053261714056134,-0.02606888115406,-0.046554677188396]],[[-0.018706882372499,-0.01252528000623,0.027427991852164],[0.032542031258345,0.033199489116669,0.0041108750738204],[0.023136077448726,-0.011426868848503,-0.086835868656635]],[[-0.022098321467638,0.024046247825027,-0.026551468297839],[-0.015385023318231,-0.053460314869881,0.019498866051435],[-0.034036129713058,-0.035686578601599,-0.047181900590658]],[[-0.035858828574419,-0.061458986252546,0.0036702509969473],[-0.019185241311789,0.028857950121164,0.025990281254053],[0.01949973963201,-0.03797585517168,-0.049596764147282]],[[0.064431883394718,0.023459862917662,0.0022617618087679],[0.029359940439463,-0.09246651083231,0.011974514462054],[0.0060731796547771,-0.0028100735507905,-0.020337341353297]],[[-0.049296848475933,-0.046661455184221,-0.029507625848055],[0.058008965104818,-0.028157653287053,0.023227844387293],[0.012017918750644,0.020528303459287,0.068244799971581]],[[-0.0070634200237691,-0.027809329330921,0.0013964392710477],[-0.017736664041877,0.028059551492333,-0.035843919962645],[-0.015779327601194,-0.041206318885088,-0.0393299870193]],[[0.020359991118312,0.011174432933331,0.052920892834663],[0.015330619178712,-0.011742507107556,0.061090800911188],[0.033046636730433,-0.0070717502385378,0.007258580531925]],[[0.0049788164906204,0.068474866449833,-0.061938662081957],[-0.027047280222178,-0.04349073022604,0.067685306072235],[-0.038984507322311,-0.022889567539096,-0.024435929954052]],[[0.061641301959753,-0.037334591150284,0.020281897857785],[0.015234576538205,0.015548065304756,-0.060268275439739],[-0.0043783881701529,-0.07790695130825,0.12317733466625]],[[-0.020874394103885,-0.0056491522118449,0.033486057072878],[-0.078977510333061,-0.065110266208649,-0.043996300548315],[0.022824957966805,-0.042869452387094,0.00032848439877853]],[[-0.028827786445618,0.0081300083547831,-0.015838600695133],[0.012173757888377,-0.052467588335276,0.052925940603018],[0.016394909471273,0.023443130776286,0.012097072787583]],[[0.051539786159992,0.023262977600098,0.045869164168835],[-0.055939394980669,-0.0060042021796107,-0.045045867562294],[0.071785181760788,0.061281710863113,0.036066453903913]],[[0.058263845741749,-0.01256447378546,-0.026029473170638],[0.051477178931236,0.036318231374025,-0.038531698286533],[0.0034799906425178,-0.014407499693334,0.013180833309889]],[[-0.0035546894650906,-0.039257526397705,-0.010581411421299],[0.086852610111237,0.040985949337482,0.017060130834579],[0.03006180934608,0.030457731336355,0.0060257124714553]],[[0.014377585612237,-0.008402762003243,0.047759994864464],[-0.070934928953648,-0.062114596366882,0.035299602895975],[-0.065383315086365,0.05033141002059,-0.016918789595366]],[[0.0033235137816519,0.03015998378396,-0.049089826643467],[-0.015719600021839,-0.034820400178432,0.062679842114449],[0.037786547094584,0.02455117739737,0.012721553444862]],[[0.017844296991825,0.018559869378805,0.021718434989452],[0.028804609552026,0.04015027731657,0.04331087321043],[0.064038619399071,-0.022996075451374,-0.0040360908024013]],[[-0.067612439393997,0.025385117158294,0.0070784278213978],[-0.04118213057518,0.02579159848392,0.038780219852924],[0.041713241487741,-0.03163256123662,0.044669825583696]],[[0.023257810622454,-0.074911013245583,-0.0020718807354569],[-0.016829568892717,-0.0013044704683125,-0.078281059861183],[-0.096160463988781,-0.051333300769329,-0.064929254353046]],[[-0.0007118207286112,0.0045247790403664,0.04704649373889],[0.0056015136651695,0.017262754961848,0.01417763158679],[0.028983406722546,-0.018507298082113,-0.058637984097004]],[[0.14469023048878,-0.01016169693321,-0.034074105322361],[0.046283472329378,0.072901763021946,-0.045633666217327],[0.077948413789272,-0.012381861917675,-0.0076281200163066]],[[-0.0029162070713937,0.057665977627039,0.020739920437336],[-0.037890765815973,-0.054491750895977,-0.013571910560131],[-0.024579890072346,0.006294081453234,0.08112546056509]],[[0.011280707083642,0.073037840425968,0.059280313551426],[-0.019724948331714,-0.010157093405724,-0.05336407199502],[-0.0067364433780313,-0.003290694206953,0.035890430212021]],[[0.032520305365324,0.039003308862448,0.05188462883234],[0.071316123008728,0.024303616955876,-0.030248818919063],[-0.0046834670938551,-0.046558547765017,0.050465304404497]],[[0.093753427267075,0.021669181063771,-0.092723831534386],[-0.040519095957279,-0.056399263441563,-0.011499610729516],[0.033132176846266,-0.063640221953392,0.026860069483519]],[[-0.045834790915251,-0.043883699923754,-0.063788399100304],[-0.046588484197855,-0.010775286704302,-0.054270166903734],[-0.045811101794243,0.0010797772556543,0.088080763816833]],[[0.041742190718651,0.0038812819402665,0.037183202803135],[-0.018020927906036,0.016829622909427,0.032751467078924],[0.0029479926452041,-0.088827595114708,0.082481734454632]],[[0.044715419411659,0.042583033442497,-0.030101872980595],[-0.09427186101675,0.03172592073679,-0.026246646419168],[0.010320419445634,-0.02330656722188,0.010031596757472]],[[0.024241177365184,0.0042965430766344,0.011450721882284],[-0.013963709585369,0.0017274518031627,0.012094106525183],[0.047832529991865,0.0074765216559172,0.0025901144836098]],[[-0.096648246049881,-0.044388175010681,0.034313067793846],[0.056938759982586,0.017727211117744,-0.083131209015846],[0.033803854137659,0.0010256862733513,-0.0068240188993514]],[[-0.082949422299862,-0.016624039039016,0.077253714203835],[-0.011513029225171,0.059123657643795,0.06345771998167],[0.0062424810603261,-0.018326027318835,0.074800983071327]],[[-0.073663361370564,-0.021341608837247,0.082326017320156],[0.0051289051771164,-0.025437097996473,-0.0078955227509141],[0.053173281252384,0.055212408304214,-0.011946487240493]],[[-0.0068318038247526,-0.032130338251591,0.038733825087547],[0.018063917756081,0.0038972126785666,0.01932991668582],[0.062249761074781,-0.045220777392387,0.087733581662178]],[[0.037986602634192,-0.0029288185760379,-0.10238066315651],[-0.0081926342099905,-0.068654373288155,-0.005581266246736],[0.065172933042049,0.024905050173402,0.016700075939298]],[[-0.015007593668997,-0.048321504145861,0.062519289553165],[0.0040731076151133,-0.025927083566785,0.013613681308925],[-0.026815747842193,-0.00082920037675649,0.059159498661757]],[[0.012614491395652,-0.042104780673981,-0.041917454451323],[-0.0022512159775943,0.028929818421602,-0.090672105550766],[-0.021447541192174,-0.13792784512043,0.04094972088933]],[[0.0649818405509,-0.000574694306124,-0.0074435821734369],[0.039172373712063,0.022912921383977,0.018995121121407],[-0.01008293312043,0.09600418061018,-0.023109264671803]],[[0.02860951796174,0.0061299228109419,-0.08056640625],[0.043980587273836,0.031203154474497,-0.086023814976215],[-0.0075032631866634,0.035161972045898,0.03608625754714]],[[0.017905008047819,0.062909282743931,0.037347879260778],[-0.080144688487053,0.023997040465474,-0.065938971936703],[-0.0082195028662682,0.0087610706686974,0.038355425000191]],[[-0.025470286607742,0.01006877515465,0.014873821288347],[-0.035519782453775,-0.012945708818734,-0.0021274283062667],[-0.0040607750415802,0.016837099567056,-0.05306351929903]],[[0.10273808240891,0.033184431493282,0.067000940442085],[0.026065912097692,-0.014533097855747,0.02204236574471],[-0.02591091580689,-0.023692050948739,0.055809918791056]],[[-0.0090218558907509,0.029681468382478,-6.1417100368999e-05],[-0.039541613310575,-0.013620092533529,-0.0035514731425792],[-0.12328840047121,0.00031870105885901,-0.05306876078248]],[[-0.077111095190048,-0.0032853544689715,-0.011897613294423],[0.026576299220324,0.046149298548698,0.039557863026857],[0.03440235555172,-0.014812921173871,0.0091036967933178]],[[0.020681980997324,-0.017948590219021,0.042986046522856],[0.035864111036062,-0.028563480824232,-0.061734553426504],[0.02924813143909,0.074953600764275,-0.023365970700979]],[[0.061999771744013,-0.024542137980461,0.024548064917326],[0.053160801529884,-0.0080334600061178,-0.037176568061113],[-0.03425657749176,0.0021289528813213,-0.030274560675025]],[[0.018628485500813,-0.052474550902843,-0.052785985171795],[-0.019588930532336,0.013329892419279,-0.046811416745186],[-0.05316448956728,0.018396833911538,-0.068800084292889]],[[-0.0047224247828126,0.042077157646418,0.031129429116845],[-0.031629581004381,0.0015067560598254,-0.007082344032824],[0.048224169760942,-0.018267020583153,0.011182245798409]],[[0.080220080912113,0.07970766723156,0.077243961393833],[-0.0082401894032955,0.026899065822363,-0.092606835067272],[-0.039027120918036,-0.092170126736164,0.044972881674767]],[[-0.10427512973547,0.0032744170166552,-0.043103285133839],[0.029519775882363,0.0079248640686274,-0.073353238403797],[0.0025082938373089,-0.01044278498739,-0.0044183288700879]],[[0.060543023049831,-0.004853330552578,-0.023874189704657],[0.067585676908493,-0.010048305615783,0.043043661862612],[0.025378679856658,0.020411420613527,0.00036941838334315]],[[-0.062007989734411,0.025287156924605,0.048118110746145],[0.076559528708458,-0.015764586627483,-0.054418046027422],[-0.0149429095909,0.018440712243319,-0.021709920838475]],[[0.0069189975038171,0.0094781285151839,-0.034300416707993],[-0.05173597484827,0.060969989746809,-0.035110734403133],[-0.0029161621350795,0.10388473421335,-0.0042751007713377]],[[-0.027619479224086,-0.013595325872302,-0.058433074504137],[-0.045463901013136,-0.10954991728067,5.18832130183e-05],[0.048669032752514,0.13374961912632,0.0052164010703564]],[[-0.0512376986444,-0.015443408861756,0.095799215137959],[0.026422407478094,0.023294866085052,-0.061054944992065],[-0.011230302974582,0.0072730709798634,0.007355616427958]],[[0.050168953835964,0.00368144758977,0.049994226545095],[-0.01001757197082,-0.028811570256948,-0.0065458090975881],[0.0059678284451365,-0.011969288811088,0.034468155354261]],[[0.005434600636363,0.018229208886623,0.0040253843180835],[-0.036829277873039,-0.045911800116301,-0.014657125808299],[0.056746829301119,0.011169224977493,-0.034561421722174]],[[-0.058892834931612,-0.013321115635335,-0.066482827067375],[0.039755694568157,-0.038587626069784,-0.029228745028377],[0.017287852242589,-0.0099840620532632,0.0051827770657837]],[[-0.030463511124253,0.031282965093851,-0.037484765052795],[0.050499264150858,-0.020679147914052,-0.031057827174664],[-0.031689181923866,0.0032971750479192,0.049007821828127]],[[-0.010279531590641,-0.0081368796527386,0.049434840679169],[0.085497967898846,0.0002388384018559,-0.028705406934023],[0.007996303960681,-0.066260188817978,0.011891394853592]],[[-0.0058591021224856,0.010552840307355,-0.0034342345315963],[0.037998043000698,-0.0060162926092744,-0.022085942327976],[-0.033002339303493,0.063868157565594,-0.089264772832394]],[[0.036482863128185,0.028525775298476,-0.074835829436779],[-0.045816846191883,-0.028875602409244,0.028996469452977],[0.10643856227398,0.02307278290391,-0.040917314589024]],[[-0.012491861358285,0.0081450305879116,0.067915134131908],[0.02602931112051,-0.0094767706468701,0.034495174884796],[-0.035218771547079,-0.046204086393118,0.0096144964918494]],[[-0.017716886475682,0.052048597484827,0.053988050669432],[-0.09958229213953,0.0078904954716563,0.030543470755219],[-0.01959240436554,-0.0060950284823775,0.055118348449469]],[[0.12170054018497,0.039587061852217,-0.019357724115252],[0.024766491726041,0.035341423004866,0.037357464432716],[0.065599650144577,0.010029977187514,-0.15651340782642]],[[0.015525457449257,-0.022863185033202,0.027101092040539],[0.028263175860047,-0.042809545993805,-0.038890440016985],[0.0341637134552,-0.030122304335237,-0.024815585464239]],[[0.095442853868008,-0.038374822586775,0.0021397203672677],[0.06474693864584,0.022317992523313,-0.024455325677991],[-0.031439315527678,-0.0047854585573077,-0.053824309259653]],[[0.058456484228373,-0.094862073659897,-0.061693876981735],[0.051826950162649,-0.042622160166502,-0.032740328460932],[0.082927674055099,-0.073506005108356,-0.0057195592671633]],[[0.03880774602294,0.037446714937687,0.0051432480104268],[0.02661026827991,0.10292199254036,-0.02431807667017],[-0.033324081450701,-0.014912402257323,-0.0077374121174216]],[[0.03406148031354,0.053587764501572,-0.010380753315985],[0.024387508630753,-0.077238112688065,0.041741047054529],[-0.076933801174164,0.0065526203252375,-0.066759862005711]],[[0.046573042869568,-0.027157664299011,-0.035689860582352],[0.036297410726547,0.0027754558250308,0.0012522967299446],[0.053936716169119,-0.02515416033566,-0.071771651506424]],[[0.031095819547772,-0.058387231081724,0.070132732391357],[-0.037006985396147,-0.046322427690029,-0.0069959703832865],[0.01473715621978,0.07750541716814,0.025277201086283]],[[0.0051908264867961,-0.020190047100186,0.031440433114767],[0.034842982888222,-0.06937225908041,0.008208941668272],[-0.059678748250008,-0.0067004221491516,-0.026597971096635]],[[0.049947500228882,0.03313086181879,0.033921048045158],[0.013950662687421,0.053059048950672,-0.027617385610938],[-0.012279257178307,-0.01002695877105,0.012604471296072]],[[-0.036407068371773,-0.006424053106457,-0.011104696430266],[0.017892783507705,-0.03914375975728,0.05529111623764],[-0.021788440644741,0.0084726484492421,0.05873666331172]],[[0.034174237400293,-0.034318253397942,0.079678185284138],[0.0037213028408587,-0.055789668112993,-0.0087782181799412],[-0.025136560201645,0.056980695575476,-0.064330369234085]],[[-0.096217133104801,-0.043731350451708,-0.041230715811253],[-0.046984180808067,-0.034705124795437,0.038213301450014],[-0.051138997077942,-0.0064075565896928,0.0031691065523773]],[[0.050214108079672,0.053989931941032,0.012016413733363],[0.014807012863457,0.072225861251354,0.022155217826366],[0.027545958757401,0.0045283604413271,-0.001869433792308]],[[-0.023681191727519,-0.082035787403584,-0.0092855961993337],[0.0044361082836986,0.00016162064275704,0.00021282708621584],[-0.0099049406126142,0.0089029986411333,0.060908555984497]],[[-0.090877629816532,0.0037277624942362,-0.029687894508243],[-0.0070870043709874,-0.034194178879261,-0.035588856786489],[-0.042480427771807,0.028569966554642,6.1446524341591e-05]],[[0.018903171643615,-0.038080610334873,-0.015673434361815],[0.096593976020813,0.0020438206847757,0.042048178613186],[0.0031568286940455,-0.054498106241226,-0.026872798800468]],[[0.048447135835886,-0.018392492085695,-0.0098071275278926],[0.0075112287886441,-0.015156590379775,0.020813532173634],[0.057059656828642,-0.037681024521589,-0.011942882090807]],[[0.049213912338018,0.026092188432813,-0.02755780890584],[-0.050764832645655,-0.013126797042787,0.099774278700352],[0.04743093624711,0.049045324325562,0.036236986517906]],[[-0.0017133604269475,0.036635376513004,0.044437870383263],[-0.06754382699728,0.057936932891607,-0.0052035846747458],[0.0056569040752947,0.0041644396260381,-0.0057263504713774]],[[0.053150985389948,0.022419786080718,0.0084137516096234],[-0.056506544351578,0.098391249775887,-0.059805199503899],[-0.053871013224125,-0.085063017904758,0.004204825963825]],[[-0.035150717943907,0.024636011570692,0.014962288551033],[-0.014468244276941,0.028256366029382,-0.047757312655449],[-0.047176722437143,0.029056483879685,0.025450041517615]],[[-0.012025036849082,-0.038047894835472,-0.02938686683774],[0.064760535955429,-0.03320001065731,0.021885229274631],[-0.073407545685768,-0.017214441671968,0.050242830067873]],[[-0.011692569591105,-0.012453514151275,0.0043198708444834],[0.0023359190672636,-0.014292355626822,0.054367508739233],[-0.020041599869728,-0.020180700346828,0.038570113480091]],[[-0.020232120528817,0.041944157332182,-0.093638837337494],[0.017236385494471,0.0054649137891829,-0.052122808992863],[0.0517892614007,0.11308564990759,-0.0072371400892735]],[[0.0058032642118633,-0.055474732071161,0.063606470823288],[0.012480990961194,-0.01502597797662,-0.080979324877262],[0.065087132155895,-0.0087972888723016,0.012771661393344]],[[0.013382295146585,0.026986815035343,0.014153347350657],[0.042587079107761,-0.042271066457033,-0.00035572017077357],[0.014159588143229,0.01382646523416,0.06486614793539]],[[0.033125579357147,-0.092541456222534,-0.0085573215037584],[-0.062217526137829,-0.017996493726969,-0.048291921615601],[-0.0031569614075124,0.088684402406216,-0.037982616573572]],[[-0.037188589572906,-0.067555628716946,-0.0066041750833392],[0.047792907804251,-0.022742684930563,0.004421572200954],[0.098321184515953,-0.007583396974951,-0.023607032373548]],[[-0.038237892091274,0.0071075242012739,0.068904653191566],[0.0092822974547744,0.038622390478849,0.020294357091188],[-0.015365852043033,0.0025483965873718,0.0051527721807361]],[[-0.022142054513097,0.022729819640517,-0.00028196405037306],[0.050366889685392,0.04938368499279,-0.016284322366118],[0.010259514674544,-0.017944384366274,-0.0077535691671073]]],[[[-0.0086312368512154,-0.046518933027983,0.0040705632418394],[-0.080699294805527,-0.002011091215536,0.033215083181858],[-0.00094141816953197,-0.04905616864562,0.19923821091652]],[[-0.076184287667274,0.045021437108517,0.10932824760675],[-0.078569874167442,0.0018659203778952,-0.016512790694833],[0.0092268399894238,-0.018671363592148,-0.077302388846874]],[[0.069695740938187,0.021305102854967,0.046888809651136],[-0.011055986396968,-0.085693053901196,0.074844256043434],[0.076896786689758,0.050334189087152,-0.12333632260561]],[[0.0063352519646287,-0.018824635073543,-0.098423384130001],[0.027085291221738,-0.052395619452,0.035363260656595],[-0.024840038269758,-0.19895771145821,-0.094191767275333]],[[0.1964408904314,0.040419798344374,0.069863744080067],[0.15432859957218,0.081816807389259,0.065976567566395],[-0.045981504023075,-0.087815247476101,0.031610254198313]],[[-0.026437129825354,-0.022898668423295,0.057421430945396],[-0.024890916422009,-0.017256535589695,0.028949623927474],[0.10000655055046,-0.022505616769195,-0.043885242193937]],[[0.024090554565191,0.10134615004063,-0.034324962645769],[-0.062810704112053,-0.10305937379599,-0.20004650950432],[0.036590248346329,-0.07423759251833,-0.015669515356421]],[[-0.125384375453,0.00082959717838094,0.032693427056074],[-0.089098453521729,-0.028999496251345,0.16117843985558],[-0.060427471995354,-0.079933427274227,-0.099440045654774]],[[-0.039505243301392,0.033535622060299,0.059515163302422],[-0.03442769497633,0.0047403508797288,0.13647040724754],[0.085887350142002,0.030773447826505,-0.042035412043333]],[[-0.054950598627329,0.069021478295326,-0.17894695699215],[-0.0044402503408492,-0.017552800476551,-0.051566887646914],[-0.032376937568188,-0.043552301824093,-0.0046468018554151]],[[-0.15512783825397,-0.15270154178143,0.013944536447525],[0.049291525036097,0.012591488659382,0.074886038899422],[0.23862542212009,0.20703049004078,0.088618360459805]],[[-0.0010655706282705,-0.11504237353802,-0.090739108622074],[0.054483667016029,0.029141932725906,-0.056607950478792],[-0.04495107755065,0.072884552180767,0.11811922490597]],[[-0.049530114978552,-0.06109069660306,0.029374225065112],[-0.0068853949196637,0.07291866093874,0.088086366653442],[-0.06475205719471,0.014862257055938,0.18360117077827]],[[0.07304772734642,0.0021701822988689,0.047768138349056],[0.021310625597835,-0.002023572800681,0.017613466829062],[0.050858240574598,-0.019879983738065,0.0077996589243412]],[[0.014910012483597,-0.033585969358683,-0.030167639255524],[-0.0084718596190214,-0.017403736710548,-0.18530882894993],[0.125692024827,0.081446133553982,0.060411252081394]],[[-0.034677863121033,-0.033868551254272,0.06297891587019],[0.0096845990046859,-0.020229993388057,-0.019614774733782],[0.039682108908892,-0.074833415448666,0.079244531691074]],[[-0.01469885930419,-0.036954201757908,0.10341204702854],[0.058677725493908,-0.090672053396702,-0.088287346065044],[-0.053121119737625,-0.033199638128281,0.025152401998639]],[[-0.022298702970147,-0.049643564969301,0.14460277557373],[0.10160661488771,-0.098572842776775,0.031059440225363],[-0.10017920285463,-0.049543380737305,-0.085857279598713]],[[0.055611588060856,-0.061900712549686,-0.0057539283297956],[0.26937875151634,0.11519560962915,0.087887957692146],[0.091753281652927,-0.0057972213253379,-0.061050951480865]],[[-0.031346764415503,0.039452809840441,-0.053861897438765],[0.013422633521259,0.013108462095261,-0.10232274979353],[-0.19659723341465,-0.022684816271067,-0.09181497246027]],[[-0.083260059356689,-0.096112571656704,-0.059579532593489],[-0.058081936091185,-0.16758754849434,-0.0013310532085598],[-0.048983961343765,0.10096302628517,-0.025373738259077]],[[0.063640981912613,0.074572637677193,0.0086734406650066],[-0.05235705524683,0.17094051837921,-0.015296973288059],[-0.023980244994164,-0.023550029844046,0.092707894742489]],[[-0.048483569175005,-0.12965829670429,-0.040325839072466],[-0.0086979679763317,-0.00041268789209425,-0.0025448349770159],[-0.11348336189985,-0.084583759307861,0.018869623541832]],[[-0.2633361518383,-0.027107510715723,0.018502447754145],[-0.17428141832352,-0.083776727318764,0.053320653736591],[0.025612788274884,0.041133809834719,0.07491859793663]],[[0.041016612201929,0.072323083877563,-0.0071149123832583],[-0.14304549992085,0.020513879135251,-0.06887923181057],[-0.071434065699577,-0.094688437879086,-0.070330388844013]],[[0.012536532245576,0.041098963469267,-0.10045651346445],[0.0066613093949854,0.030608696863055,0.0089033087715507],[0.0081636849790812,-0.059499323368073,0.10656186938286]],[[0.037575662136078,0.16539894044399,0.052684552967548],[-0.080997250974178,0.069151110947132,-0.028954818844795],[0.073918290436268,0.0023524404969066,-0.027285585179925]],[[0.018367951735854,-0.11586948484182,-0.11058850586414],[-0.011853172443807,-0.057472553104162,-0.0057845036499202],[0.0020725645590574,-0.11446607112885,0.052110742777586]],[[0.015525775030255,0.028577534481883,0.053757790476084],[0.03342654928565,-0.0060248989611864,-0.2227825075388],[-0.018848203122616,0.12189146876335,-0.016300644725561]],[[0.014262772165239,0.010091591626406,-0.053790595382452],[-0.030871940776706,-0.042970132082701,-0.05210118740797],[0.032006647437811,0.0026823931839317,-0.035239540040493]],[[-0.0075671607628465,-0.13555891811848,-0.019375188276172],[0.031402379274368,0.11324919760227,0.16512294113636],[0.088780000805855,-0.054979164153337,-0.051976568996906]],[[-0.029263779520988,-0.070592001080513,-0.020044712349772],[-0.044898096472025,-0.026407329365611,0.017604662105441],[-0.078241020441055,-0.099834628403187,-0.079476170241833]],[[-0.00058586802333593,0.013048830442131,0.04033450782299],[0.02757253870368,-0.065454132854939,-0.047897316515446],[-0.078304015100002,0.033093236386776,0.093992248177528]],[[-0.035609494894743,-0.030503284186125,-0.050429821014404],[0.070150583982468,-0.05848516523838,0.04388303309679],[-0.08193564414978,-0.052229888737202,-0.088512353599072]],[[-0.08190655708313,0.056582640856504,-0.023569716140628],[0.012903819791973,-0.16647818684578,-0.057238757610321],[-0.016449807211757,-0.061251923441887,-0.046293862164021]],[[-0.077960886061192,0.020003691315651,0.0086731491610408],[-0.15013279020786,0.012316345237195,-0.013801734894514],[-0.09485499560833,-0.043221563100815,-0.064144417643547]],[[0.01504394877702,-0.016369674354792,0.022795671597123],[-0.038744408637285,0.056431945413351,-0.039627701044083],[-0.025928501039743,-0.056859947741032,0.0032261137384921]],[[-0.096204958856106,-0.1809468716383,0.01893169619143],[-0.15474410355091,-0.17274858057499,-0.084366127848625],[-0.086937919259071,-0.05461597442627,-0.066214188933372]],[[0.041473146528006,-0.0035304252523929,-0.034118738025427],[-0.13050700724125,-0.0065482095815241,-0.0041340449824929],[0.1410033851862,0.012113240547478,0.078232035040855]],[[0.12765243649483,-0.04676254466176,-0.003939441870898],[-0.1407516002655,-0.048651292920113,-0.069628193974495],[0.047862514853477,0.068766206502914,0.13752456009388]],[[-0.01691984385252,-0.028044773265719,0.02933263964951],[-0.098391570150852,0.044854033738375,-0.10010606795549],[-0.089278042316437,0.05999356135726,-0.056555386632681]],[[-0.037648964673281,-0.028817178681493,-0.068895138800144],[0.023973060771823,-0.079831749200821,-0.15619353950024],[-0.004945233464241,-0.077167503535748,-0.088126808404922]],[[-0.037411272525787,-0.046922646462917,-0.0036288604605943],[-0.012343493290246,-0.059666492044926,-0.0036603780463338],[-0.042926233261824,-0.017464322969317,-0.0015658324118704]],[[0.11751163005829,-0.10210133343935,0.054054979234934],[-0.022593520581722,-0.21281957626343,0.028507648035884],[0.01584398932755,-0.017342656850815,0.00874880887568]],[[0.15775743126869,-0.037616223096848,0.014336971566081],[0.012991088442504,-0.051069900393486,0.087602443993092],[-0.026584452018142,-0.067412339150906,-0.095774255692959]],[[-0.038959380239248,0.057346742600203,-0.014865511097014],[0.014950624667108,-0.11800224334002,-0.063142724335194],[0.019956070929766,-0.029047595337033,-0.11071015149355]],[[-0.027516888454556,0.086373277008533,-0.038846462965012],[0.028678460046649,0.067868232727051,-0.058858096599579],[-0.055844962596893,-0.075952894985676,-0.013184383511543]],[[-0.002740342868492,0.019931703805923,0.13036344945431],[0.0069614253006876,0.048604108393192,0.063904911279678],[0.089954845607281,-0.041255217045546,0.037689261138439]],[[-0.050094995647669,0.067643843591213,0.021651536226273],[-0.17546127736568,-0.057312041521072,0.035898018628359],[-0.089676819741726,0.0083867320790887,-0.0047743888571858]],[[-0.017102202400565,0.076519936323166,0.15179771184921],[-0.054301705211401,-0.030132707208395,-0.022813925519586],[-0.097833178937435,-0.054917708039284,0.0158960968256]],[[0.050824709236622,-0.033096101135015,-0.04809707775712],[0.022959278896451,0.11406418681145,0.0022359520662576],[-0.035329796373844,0.011282538063824,0.015966696664691]],[[0.057344656437635,-0.011353787966073,0.038994513452053],[0.01522012706846,-0.06691287457943,-0.061931282281876],[0.038059763610363,0.097784042358398,-0.09369957447052]],[[-0.0052463063038886,-0.025909835472703,-0.010990776121616],[0.12740294635296,-0.070680998265743,-0.021102800965309],[0.22318644821644,-0.10049163550138,-0.08099365234375]],[[-0.064069755375385,-0.012486015446484,-0.058765824884176],[-0.030256893485785,0.11040616780519,0.081502765417099],[-0.030563786625862,-0.091035157442093,0.077880457043648]],[[-0.022424679249525,-0.011271180585027,0.013931493274868],[0.055294498801231,-0.094241954386234,-0.031863275915384],[0.097558811306953,-0.051101822406054,0.030285287648439]],[[-0.040241368114948,-0.019197901710868,-0.0058810277841985],[0.020251097157598,-0.065077312290668,0.0037089588586241],[-0.0088495314121246,-0.03413688018918,-0.090335316956043]],[[-0.021381735801697,-0.002522069728002,-0.070570774376392],[-0.074799433350563,0.042999841272831,-0.085901916027069],[-0.15483808517456,-0.0089234299957752,-0.046401251107454]],[[0.017440464347601,-0.01082447078079,0.075097873806953],[-0.055020269006491,-0.070794209837914,0.10199307650328],[0.070866219699383,-0.15157780051231,0.13793866336346]],[[-0.052230812609196,-0.03956800326705,0.049562778323889],[-0.046829093247652,-0.04243528842926,0.028632361441851],[-0.0029009303543717,-0.022671937942505,0.0047862851060927]],[[0.10876483470201,0.03101553209126,0.0058435960672796],[0.13352747261524,-0.084891445934772,0.085282415151596],[0.060955971479416,-0.090576037764549,-0.06234909966588]],[[0.028060592710972,-0.021448127925396,-0.03903479501605],[-0.047517035156488,-0.054842580109835,0.078780137002468],[-0.08930366486311,-0.17679518461227,0.064857259392738]],[[-0.024743989109993,-0.079161524772644,-0.00011568702757359],[0.0042949472554028,-0.012606316246092,-0.037902642041445],[0.012494087219238,-0.056244269013405,0.028698978945613]],[[0.031734719872475,0.00079436704982072,-0.068727158010006],[-0.022792916744947,-0.071957722306252,-0.094750002026558],[0.092313796281815,0.04177750274539,0.058302469551563]],[[0.035189528018236,0.19037036597729,0.014563954435289],[0.041169285774231,0.055423565208912,0.17401379346848],[-0.0349395647645,0.0030833519995213,0.020804736763239]],[[0.015993675217032,0.05253616720438,-0.088010095059872],[-0.06183348596096,0.077011115849018,0.030971234664321],[0.045735206454992,0.010743895545602,-0.12674115598202]],[[0.077801242470741,-0.028251936659217,-0.10666773468256],[-0.096188552677631,0.091182023286819,-0.049340698868036],[-0.13788761198521,-0.051304936408997,-0.03837451711297]],[[-0.049406565725803,0.024978313595057,0.093133598566055],[-0.046371553093195,-0.0063549769110978,-0.13378246128559],[0.022992415353656,-0.10392790287733,-0.025110268965364]],[[0.017433352768421,-0.0234644562006,0.031471133232117],[0.058887157589197,0.040128856897354,-0.060936309397221],[-0.10406424105167,-0.090615332126617,-0.0018854829249904]],[[-0.10942602157593,0.038418740034103,0.060195308178663],[-0.17149271070957,0.014112972654402,0.095578446984291],[-0.15132024884224,0.060846015810966,0.084152117371559]],[[-0.024325797334313,-0.005248405970633,0.0060912147164345],[-0.03213794901967,0.05744481086731,0.059000160545111],[0.070503808557987,-0.045926850289106,0.085591077804565]],[[-0.022035440430045,-0.053590688854456,-0.18199108541012],[-0.026655646041036,0.12395785003901,0.012542324140668],[0.097004026174545,-0.0024631950072944,0.15138819813728]],[[-0.16365693509579,-0.071654699742794,-0.086030840873718],[0.018381102010608,0.055951520800591,0.084436111152172],[-0.026553696021438,0.063700839877129,0.023815162479877]],[[-0.025189008563757,-0.064367741346359,0.048608094453812],[-0.056888349354267,-0.056607950478792,0.060494933277369],[-0.068882197141647,-0.016423175111413,-0.012124106287956]],[[0.075644515454769,0.085117474198341,0.0081140277907252],[-0.072928801178932,-0.066023431718349,0.0046265106648207],[0.021863613277674,0.14180593192577,-0.042944490909576]],[[-0.008245337754488,-0.0257403627038,-0.072493612766266],[0.11886470764875,-0.13834263384342,-0.047218430787325],[-0.095063261687756,0.14900571107864,-0.10514139384031]],[[0.05891515687108,0.03849183395505,0.092863231897354],[0.023471279069781,0.12087466567755,0.024422261863947],[0.01389573700726,0.083791978657246,0.11224670708179]],[[0.0085035730153322,-0.023922367021441,0.11210560798645],[0.022712145000696,-0.081871151924133,0.05434862524271],[-0.027981363236904,-0.08947579562664,-0.021214433014393]],[[-0.032760694622993,0.017189508304,0.016715813428164],[-0.10556502640247,-0.08494221419096,-0.042678378522396],[-0.075544834136963,-0.096721284091473,-0.13839450478554]],[[-0.057949513196945,-0.070402681827545,0.021338582038879],[0.14722874760628,0.11539400368929,0.090801268815994],[0.057624571025372,0.019685907289386,0.035787124186754]],[[0.015518594533205,-0.08775395154953,-0.055593255907297],[0.0044287457130849,-0.041239891201258,-0.10124979913235],[-0.087539464235306,0.068714566528797,0.028179742395878]],[[0.035241615027189,0.036458056420088,-0.054497677832842],[-0.068003535270691,-0.045060023665428,0.02216431312263],[-0.16389316320419,-0.01864573545754,0.015137475915253]],[[-0.031286720186472,0.014932272024453,0.014069926925004],[0.076921209692955,0.039779704064131,-0.14891931414604],[0.049841206520796,-0.015750117599964,-0.10385781526566]],[[0.12104547768831,0.18870992958546,0.036652434617281],[-0.043237339705229,0.056782145053148,-0.02813396602869],[0.038585845381021,0.051789060235023,0.04492224752903]],[[-0.0073020355775952,-0.094240367412567,-0.01321519818157],[-0.062321219593287,0.033696249127388,0.086434036493301],[0.034238804131746,-0.14336323738098,-0.016661275178194]],[[-0.089721016585827,0.10452292859554,-0.023753829300404],[-0.012837693095207,0.020372049883008,-0.058340713381767],[0.056753765791655,0.11111283302307,0.033305216580629]],[[0.12160567194223,0.11976413428783,-0.02875854447484],[0.073799528181553,0.027928339317441,0.024850083515048],[-0.18768414855003,-0.11722909659147,-0.010599712841213]],[[0.072309762239456,-0.03578532487154,0.011433139443398],[-0.078992329537868,-0.082657746970654,-0.035061221569777],[0.11285671591759,-0.00089886726345867,0.12791183590889]],[[-0.032297983765602,0.051078110933304,-0.095112152397633],[-0.0069614984095097,0.024351991713047,0.042687896639109],[0.036770034581423,0.027627255767584,0.050112079828978]],[[-0.030997697263956,-0.033851072192192,0.0069480356760323],[-0.024082459509373,0.088926427066326,0.022470748052001],[-0.0019851068500429,-0.051713425666094,-0.12681701779366]],[[-0.040223430842161,-0.077146299183369,-0.06340004503727],[0.07790769636631,-0.017098339274526,-0.061217989772558],[-0.0034104634542018,-0.13764515519142,-0.099157311022282]],[[-0.017157835885882,-0.056547064334154,0.01215479336679],[-0.018622750416398,0.025734247639775,0.11976498365402],[-0.13614538311958,-0.15084904432297,-0.12122041732073]],[[0.060311183333397,0.062200367450714,-0.0083772409707308],[-0.035519666969776,0.0024474016390741,-0.0927599593997],[-0.13260626792908,0.064733035862446,-0.10184691846371]],[[-0.080455921590328,-0.17694208025932,0.046565465629101],[-0.01531489379704,0.034287001937628,0.048667766153812],[-0.015214660204947,-0.079026073217392,0.14426057040691]],[[0.036661498248577,0.044853340834379,0.10789082944393],[0.063692428171635,0.059454694390297,0.11405313014984],[-0.11495378613472,-0.11597544699907,-0.013113333843648]],[[0.043199084699154,-0.00082567369099706,-0.057692654430866],[0.12692253291607,0.035604763776064,0.10477746278048],[-0.063474543392658,0.053663190454245,-0.10996110737324]],[[-0.035034161061049,-0.12209492921829,-0.19361145794392],[-0.022777130827308,0.12279514223337,0.038531400263309],[-0.098459146916866,0.034930177032948,-0.09764302521944]],[[0.03139940276742,-0.087953448295593,-0.040901314467192],[-0.089465856552124,0.0079259080812335,0.024941006675363],[0.03196007758379,-0.12569560110569,0.053891450166702]],[[0.13751558959484,0.019435167312622,0.05146337300539],[-0.0027254819869995,0.13422958552837,0.080705799162388],[-0.070207975804806,0.069214776158333,0.12119219452143]],[[0.041702471673489,-0.0066918102093041,0.032064188271761],[0.051311787217855,-0.035201825201511,-0.017387831583619],[-0.019510447978973,-0.026918094605207,-0.051255706697702]],[[-0.02087833546102,-0.0056959264911711,0.10946259647608],[-0.049880485981703,-0.016597596928477,0.14702962338924],[0.073450550436974,-0.011455938220024,0.021752716973424]],[[0.039916791021824,-0.023755887523293,-0.068697862327099],[0.034543555229902,-0.18518643081188,-0.069706737995148],[0.0040290621109307,-0.11083835363388,-0.085404299199581]],[[0.10217652469873,0.04921867698431,0.065889477729797],[-0.023091364651918,-0.065044440329075,-0.063798286020756],[-0.08617364615202,-0.086613416671753,-0.21142067015171]],[[-0.045319873839617,-0.063466794788837,0.040805660188198],[-0.0026254393160343,-0.14246225357056,-0.017250012606382],[-0.016370672732592,0.034711249172688,-0.074301309883595]],[[0.15587106347084,-0.0041507431305945,-0.077749326825142],[0.065806522965431,0.0682118460536,0.022934580221772],[0.018976518884301,-0.052092101424932,-0.1053017154336]],[[-0.042532488703728,0.13213391602039,0.028836926445365],[-0.03273656591773,-0.0087962709367275,-0.06852325797081],[0.0014422723324969,-0.092989906668663,-0.055455390363932]],[[-0.019787790253758,-0.0074671041220427,-0.0017940879333764],[-0.11187145113945,0.0078366044908762,-0.021244045346975],[0.017873786389828,-0.032236691564322,-0.085505984723568]],[[0.046714007854462,0.011742725037038,0.064348600804806],[-0.079603724181652,0.016172060742974,0.064218163490295],[-0.17580033838749,-0.10040834546089,-0.057931493967772]],[[0.083032734692097,0.079277023673058,-0.075216226279736],[-0.12189052253962,-0.061331186443567,-0.079848766326904],[-0.015653038397431,-0.11242657899857,0.028584696352482]],[[-0.15907929837704,0.047775261104107,0.0062342942692339],[0.31477823853493,0.073529921472073,-0.012938186526299],[-0.19761855900288,-0.059152137488127,-0.086532443761826]],[[0.017885807901621,-0.074899211525917,0.025972858071327],[-0.038732834160328,-0.080212257802486,0.034746333956718],[-0.12661941349506,0.0096326544880867,-0.020995629951358]],[[0.024882512167096,-0.010257366113365,-0.044480815529823],[0.10349277406931,0.048875518143177,-0.035238519310951],[0.088267117738724,0.099541753530502,-0.077224537730217]],[[0.025156762450933,-0.016574826091528,0.012850282713771],[0.036670990288258,-0.02082353644073,-0.044273439794779],[-0.099305711686611,-0.037150409072638,-0.078964851796627]],[[0.061967521905899,0.055600456893444,0.071468465030193],[0.00036016691592522,0.050218142569065,-0.021882994100451],[-0.027772096917033,-0.040682457387447,0.0020774465519935]],[[0.12741777300835,0.10631769895554,-0.11134024709463],[-0.17881010472775,0.034853592514992,-0.075259186327457],[0.040713299065828,-0.0052752187475562,0.028505859896541]],[[-0.020715722814202,-0.010199800133705,-0.069814555346966],[0.10605371743441,-0.0011550383642316,-0.0039304024539888],[0.026117214933038,0.10243644565344,0.068859964609146]],[[0.026378089562058,0.090534143149853,-0.012686139903963],[-0.084138058125973,0.038651619106531,-0.067237541079521],[-0.18863481283188,-0.025517124682665,0.066252946853638]],[[0.091656737029552,0.14185053110123,0.061452779918909],[-0.14014154672623,-0.060653377324343,-0.047212988138199],[0.033563125878572,0.11194881051779,-0.026094295084476]],[[-0.022779647260904,0.055941395461559,-0.078390777111053],[0.050862118601799,0.23134145140648,0.16558679938316],[-0.080685980618,-0.070730336010456,0.11030294001102]],[[0.019744386896491,-0.033842202275991,0.04473028331995],[0.026789542287588,0.08699831366539,0.076973989605904],[-0.0060429871082306,-0.10293613374233,-0.0065521532669663]],[[0.033365752547979,0.01997141726315,-0.055210683494806],[0.020374985411763,-0.00010149656736758,-0.018055314198136],[-0.089803986251354,0.0054427231661975,0.064931862056255]],[[-0.00092586752725765,0.11298641562462,0.018123891204596],[0.023270543664694,-0.021866017952561,0.036537416279316],[-0.14956010878086,-0.071575678884983,0.014834405854344]],[[0.02891955152154,0.12568745017052,-0.11850941926241],[0.02829273045063,0.040657199919224,-0.10839170962572],[0.028920393437147,0.046928096562624,-0.067867182195187]],[[-0.02903189137578,-0.056326925754547,-0.0017455299384892],[0.049513787031174,0.093461662530899,-0.035777140408754],[0.028888151049614,0.047344855964184,-0.027845961973071]],[[-0.040961053222418,0.094633594155312,0.012725110165775],[-0.060824163258076,0.041398517787457,-0.042875606566668],[-0.0005222653853707,0.030317960307002,-0.13641384243965]],[[0.019487742334604,0.0045526144094765,-0.031896959990263],[0.0012752127368003,0.066982626914978,-0.11294227093458],[0.020907428115606,-0.085410118103027,-0.018202932551503]],[[-0.0094824386760592,0.018339861184359,-0.070285573601723],[-0.089574620127678,-0.10254307091236,0.029327385127544],[0.16473799943924,0.055454213172197,-0.0047438875772059]],[[-0.030822919681668,0.0012097394792363,0.060773339122534],[0.045345015823841,-0.066786050796509,-0.011798452585936],[-0.022888729348779,0.013121168129146,0.064166195690632]],[[-0.026536416262388,-0.13328455388546,-0.020440330728889],[0.02692742459476,-0.076316215097904,-0.00031099971965887],[0.067689396440983,-0.0026548062451184,-0.024752588942647]]],[[[-0.086520828306675,-0.059935759752989,-0.1071133390069],[-0.0075301309116185,-0.12996166944504,0.046762559562922],[-0.13074041903019,-0.026566009968519,0.028476966544986]],[[0.021185589954257,0.17038922011852,0.1203178986907],[-0.10590840876102,-0.1459204852581,-0.14330868422985],[0.041255008429289,-0.032687701284885,0.096892580389977]],[[0.075174145400524,0.050653137266636,-0.026980370283127],[-0.022683685645461,0.0076668090187013,0.036511786282063],[-0.0053897346369922,-0.029809568077326,0.025718891993165]],[[0.038807138800621,-0.015821447595954,0.10253223776817],[-0.049468796700239,-0.042325258255005,-0.0199293512851],[-0.014938087202609,-0.036900371313095,0.0099467653781176]],[[0.060784388333559,-0.078365832567215,0.049703471362591],[0.13490542769432,0.022881021723151,0.014797478914261],[0.026753857731819,0.051985550671816,-0.041893851011992]],[[-0.033711299300194,-0.085797116160393,-0.041893478482962],[-0.0024056730326265,-0.096721798181534,0.072129040956497],[0.031400091946125,-0.098858013749123,-0.083832629024982]],[[-0.049691803753376,0.03739970177412,0.24240396916866],[0.11251003295183,-0.017949791625142,-0.13276122510433],[0.17628021538258,0.10050955414772,0.058302517980337]],[[0.082893773913383,-0.09697238355875,-0.018521310761571],[-0.0045398650690913,-0.043209258466959,-0.13974989950657],[0.063244797289371,0.074665039777756,0.1352419257164]],[[-0.14816908538342,-0.12494118511677,-0.14226840436459],[0.023036472499371,-0.057974252849817,-0.10639311373234],[-0.13001975417137,-0.069539040327072,-0.013062159530818]],[[0.020507074892521,-0.015164478681982,-0.021671554073691],[-0.013327245600522,-0.037815973162651,-0.020951079204679],[0.013301345519722,0.021943211555481,0.069367311894894]],[[-0.096301093697548,-0.05984028801322,-0.0300183724612],[-0.10530117154121,-0.11440625786781,-0.11071705818176],[0.018925404176116,0.058182060718536,-0.0072295009158552]],[[-0.077171109616756,-0.090128175914288,0.0084651028737426],[0.091373063623905,-0.00019374085240997,0.033829506486654],[0.040730215609074,0.1766649633646,0.13994935154915]],[[0.060039114207029,0.13028207421303,-0.018352905288339],[0.003329413710162,-0.060576751828194,-0.010665775276721],[0.079137206077576,-0.0087017128244042,0.012637533247471]],[[-0.064617142081261,-0.10648235678673,-0.078663036227226],[-0.078554295003414,0.056302677839994,-0.074926249682903],[-0.07116874307394,-0.015362350270152,-0.053095147013664]],[[0.17482270300388,0.076267831027508,0.099504865705967],[0.048204462975264,-0.042476944625378,0.14078606665134],[0.041494332253933,0.069055624306202,0.031974796205759]],[[0.076963789761066,-0.083084836602211,-0.062507048249245],[0.032871376723051,0.022450851276517,-0.051501326262951],[-0.056722890585661,-0.052798520773649,-0.14570811390877]],[[0.034561559557915,0.071279503405094,0.076590485870838],[-0.0282739456743,-0.024280162528157,0.061285406351089],[0.0070337424986064,-0.035467755049467,-0.019346624612808]],[[-0.0059442459605634,-0.032890040427446,0.080336548388004],[0.19206362962723,0.17765663564205,0.10709970444441],[-0.037255927920341,0.10681811720133,0.14238627254963]],[[-0.013121595606208,0.039049383252859,0.044984370470047],[-0.0075372694991529,-0.037736020982265,0.087182596325874],[0.064715377986431,0.019699905067682,-0.028301360085607]],[[0.050072267651558,0.10447523742914,0.036897040903568],[0.0046026571653783,-0.042024426162243,0.051097221672535],[-0.030436590313911,-0.08518997579813,-0.07352527230978]],[[-0.021190997213125,-0.0061747920699418,0.039971850812435],[-0.085914626717567,0.066173851490021,0.090726524591446],[0.047242552042007,-0.022425714880228,-0.020449202507734]],[[0.099564619362354,-0.039919435977936,-0.031968742609024],[0.041201092302799,0.01854913495481,-0.082063116133213],[0.10400576889515,0.074572689831257,-0.084254749119282]],[[-0.068043194711208,-0.042792554944754,0.015937261283398],[0.041479900479317,-0.11350038647652,-0.054647214710712],[-0.00070012651849538,-0.036999832838774,0.010720612481236]],[[0.023258933797479,-0.065513379871845,0.13224405050278],[-0.088096432387829,-0.037213668227196,0.027078203856945],[-0.032256908714771,0.064486064016819,0.036227371543646]],[[0.12824593484402,0.097930394113064,0.087749615311623],[0.028775993734598,-0.085036359727383,0.057342134416103],[0.10803436487913,-0.083714686334133,-0.12254086881876]],[[0.024303618818521,-0.02307198010385,0.020363096147776],[0.01000424195081,-0.00010277432011208,-0.030272359028459],[-0.044700868427753,-0.099162124097347,0.037437949329615]],[[-0.12648651003838,0.048125516623259,-0.030346853658557],[-0.15986788272858,-0.14457549154758,-0.088984943926334],[-0.07219323515892,0.087015941739082,-0.039460152387619]],[[0.059075005352497,0.016523744910955,-0.10941595584154],[0.077982485294342,0.041546858847141,0.08707519620657],[0.033258065581322,0.12200125306845,0.14395326375961]],[[-0.007167031057179,-0.015478668734431,-0.12920360267162],[-0.065257199108601,0.02262294664979,0.01450205873698],[-0.097732327878475,-0.015081600286067,0.0080614350736141]],[[-0.13027760386467,-0.024100972339511,-0.030247114598751],[-0.018560608848929,-0.071731649339199,-0.0079491110518575],[-0.045515887439251,0.0015334740746766,-0.06402512639761]],[[-0.16979798674583,0.076229520142078,-0.033265080302954],[-0.0024238412734121,-0.079214245080948,-0.011477714404464],[0.066725142300129,-0.018462205305696,-0.051134098321199]],[[0.0098292352631688,0.011942196637392,0.090032204985619],[0.06941194832325,0.10575763881207,0.15680673718452],[-0.01947670429945,0.10480404645205,-0.076956272125244]],[[0.075420394539833,-0.02308296225965,0.053454797714949],[-0.02138820849359,-0.0027659318875521,0.061675164848566],[-0.078897565603256,-0.051240608096123,-0.055376444011927]],[[0.078289270401001,0.036139063537121,-0.068760313093662],[-0.043841104954481,-0.0084357904270291,0.10511646419764],[-0.0040325550362468,-0.033784288913012,0.016733653843403]],[[0.026504708454013,-0.035456638783216,-0.037809889763594],[0.10624863952398,-0.052823401987553,0.010948624461889],[-0.14453719556332,-0.15484026074409,-0.14826826751232]],[[-0.068375915288925,0.026065148413181,-0.061265390366316],[-0.046713497489691,-0.025139287114143,0.034772366285324],[-0.10367419570684,-0.026040999218822,-0.045483779162169]],[[0.06099047139287,0.072347819805145,0.16809457540512],[0.018548546358943,0.098267830908298,0.036873698234558],[0.01131793204695,-0.12979331612587,-0.031017318367958]],[[0.035727731883526,0.042336858808994,0.019362470135093],[-0.050702627748251,0.026427341625094,-0.027034111320972],[0.14131458103657,-0.0075793568976223,-0.035441137850285]],[[-0.055582575500011,-0.031060911715031,-0.10912171006203],[0.023434521630406,-0.045674193650484,-0.15586894750595],[-0.012985753826797,0.018418878316879,0.020846175029874]],[[0.075476668775082,0.046712279319763,0.052932225167751],[0.030495349317789,0.040385834872723,0.088071659207344],[-0.039908595383167,-0.029398335143924,0.0059716012328863]],[[-0.073682390153408,0.11974934488535,-0.026581129059196],[-0.011513851583004,0.069989316165447,-0.066616527736187],[-0.04636849462986,-0.04170023649931,-0.16654787957668]],[[-0.021233716979623,-0.10025527328253,-0.033621452748775],[0.0022404305636883,-0.018905339762568,0.055100195109844],[-0.10968156158924,-0.017599180340767,0.017783369868994]],[[0.0055053541436791,0.10504072904587,-0.0075728194788098],[-0.086380958557129,0.10155253112316,0.067997336387634],[0.0038687160704285,0.03025159984827,0.099202089011669]],[[-0.016834728419781,0.017401494085789,0.018478924408555],[0.05417450517416,0.033296551555395,0.031610764563084],[0.030094729736447,0.0067644407972693,-0.032551165670156]],[[0.074638530611992,0.037779450416565,0.020486639812589],[-0.019192218780518,0.046338599175215,-0.019262157380581],[-0.074199549853802,0.014067957177758,-0.058711614459753]],[[-0.04668103903532,0.0016970776487142,0.071205601096153],[0.034643415361643,0.014859859831631,0.035356897860765],[0.0014520065160468,-0.065342657268047,-0.037565242499113]],[[-0.0020796835888177,-0.1078152358532,-0.15197567641735],[0.064549818634987,-0.0033847857266665,-0.10722100734711],[-0.028400380164385,0.056857582181692,-0.097566336393356]],[[0.11757887154818,0.0034352585207671,0.098341889679432],[0.037803184241056,0.0017716018483043,-0.08327454328537],[0.11372328549623,0.049559000879526,-0.071116469800472]],[[0.0050808708183467,0.05737492442131,0.040148597210646],[0.11468719691038,0.027395956218243,-0.0053345952183008],[-0.046634431928396,-0.0600202716887,-0.097258150577545]],[[-0.12733766436577,-0.10457084327936,-0.029965257272124],[-0.095719680190086,0.014378314837813,-0.095562338829041],[0.016575695946813,0.045385312289,-0.095768995583057]],[[-0.050318207591772,-0.047427367419004,-0.11628810316324],[-0.019144145771861,-0.075224243104458,-0.042726684361696],[0.087798357009888,-0.0041670529171824,-0.15882556140423]],[[-0.0034500502515584,-0.027067184448242,-0.0004020239575766],[-0.12426207959652,-0.010975903831422,0.0088319135829806],[0.12590144574642,0.11607966572046,0.097277872264385]],[[-0.014443377032876,-0.040356669574976,0.018835593014956],[-0.017168303951621,-0.0023630629293621,-0.026367608457804],[-0.015704290941358,0.038302041590214,0.029477953910828]],[[0.013958533294499,0.089872300624847,0.024271171540022],[-0.025225844234228,-0.0024219262413681,-0.047562349587679],[0.013958919793367,0.14526239037514,0.027554767206311]],[[0.01031733956188,-0.011745912954211,0.0044915862381458],[-0.023894798010588,-0.11325896531343,-0.058817662298679],[-0.11344479769468,-0.052710365504026,-0.21574009954929]],[[0.096756100654602,0.11756195873022,0.11142952740192],[0.04705011472106,0.014558580704033,0.030567087233067],[0.046573217958212,0.047875884920359,-0.045560825616121]],[[-0.029607161879539,0.090401835739613,0.15266688168049],[0.058106169104576,-0.0039922422729433,-0.018975477665663],[-0.17105177044868,-0.028325006365776,0.055897392332554]],[[0.086404390633106,0.073779419064522,-0.04896867275238],[-0.094313018023968,-0.0054090647026896,-0.061432436108589],[-0.039943393319845,-0.064063504338264,0.040433306246996]],[[-0.14577606320381,-0.05328368768096,0.0063955774530768],[-0.015099192038178,-0.021274670958519,0.039088226854801],[-0.11371436715126,-0.15453930199146,0.027594918385148]],[[0.045769859105349,0.056635323911905,-0.13845692574978],[0.073590122163296,-0.0017107828753069,-0.062478560954332],[0.0018694080645218,0.056022591888905,0.13883784413338]],[[0.044134858995676,-0.10331957787275,-0.019966239109635],[0.055895417928696,0.0032074318733066,-0.05202079564333],[-0.037275794893503,-0.1021865233779,-0.042774096131325]],[[-0.031502824276686,0.0021343808621168,-0.061438530683517],[0.063032135367393,-0.069981530308723,-0.052705358713865],[-0.075094260275364,-0.084859579801559,0.015559583902359]],[[0.02253439091146,-0.069518536329269,-0.077658139169216],[0.096884109079838,0.057091098278761,0.0059049632400274],[-0.00043210870353505,-0.070801258087158,-0.011602983810008]],[[0.055952686816454,0.060706526041031,0.051888972520828],[-0.0064307586289942,-0.069617822766304,-0.10428968071938],[0.061086941510439,0.032265983521938,-0.011215033009648]],[[-0.029335036873817,0.0026730094105005,-0.061152517795563],[-0.0031154318712652,0.057680156081915,-0.022818958386779],[0.032972391694784,0.020843435078859,-0.086430184543133]],[[-0.053573552519083,-0.030914949253201,-0.089671790599823],[0.057113371789455,0.0301793217659,-0.10465077310801],[-0.048364099115133,-0.043956983834505,-0.035036504268646]],[[0.002052138093859,0.0041763046756387,0.06672203540802],[0.17525596916676,0.0022418207954615,0.01082865986973],[-0.018212949857116,-0.0056359805166721,0.029114397242665]],[[-0.041481181979179,-0.15530440211296,-0.091047219932079],[0.0012153791030869,-0.11098354309797,0.04626377671957],[-0.052363462746143,-0.046391103416681,-0.031145896762609]],[[-0.09129923582077,-0.02572350949049,-0.089970327913761],[0.016921620815992,-0.034055653959513,0.054212711751461],[-0.020331690087914,-0.036394193768501,-0.10972464084625]],[[0.045954618602991,0.027849046513438,0.061481606215239],[-0.086433164775372,-0.053969364613295,-0.13998551666737],[-0.084363482892513,-0.12810122966766,0.035012543201447]],[[-0.026770932599902,0.08025749027729,-0.020978851243854],[-0.045306552201509,-0.043107412755489,-0.027352537959814],[0.030012464150786,0.048210695385933,0.1853843331337]],[[0.19012512266636,0.11947526782751,0.038138672709465],[0.031500279903412,0.0040939976461232,0.053800601512194],[0.0073181726038456,-0.017881019040942,-0.0080464286729693]],[[-0.048972472548485,-0.088363297283649,-0.10791143029928],[-0.12694324553013,-0.07133961468935,-0.073783807456493],[-0.15621122717857,0.03383532166481,0.10095500946045]],[[0.014647511765361,-0.034423340111971,-0.11116699874401],[0.012282241135836,0.0076632224954665,-0.033759217709303],[-0.093176640570164,0.096121646463871,0.035870216786861]],[[0.021281987428665,-0.031960505992174,0.051104236394167],[-0.050112441182137,-0.017763029783964,-0.025806648656726],[-0.011871074326336,0.071795389056206,0.14066237211227]],[[-0.057147722691298,-0.061328627169132,0.062075693160295],[-0.10971739143133,-0.022726753726602,-0.019374817609787],[0.075746640563011,-0.025683684274554,-0.051570653915405]],[[-0.083321653306484,-0.041605975478888,-0.068820714950562],[-0.16692148149014,-0.04519747197628,0.045460678637028],[-0.041293185204268,0.048507656902075,0.15608863532543]],[[-0.065376915037632,0.023010816425085,-0.02275655977428],[-0.024703180417418,-0.15217025578022,-0.0053034061565995],[-0.099204741418362,-0.009380217641592,-0.015817731618881]],[[-0.16751651465893,-0.068215638399124,0.0029869459103793],[0.0033144541084766,-0.086524464190006,-0.10883328318596],[-0.099421858787537,-0.00049588282126933,0.099396795034409]],[[-0.010971315205097,-0.030329566448927,-0.089071348309517],[0.048970714211464,0.11802054196596,0.087534107267857],[-0.07794663310051,0.00019963033264503,-0.012798942625523]],[[0.057536765933037,-0.029043890535831,-0.0060937502421439],[-0.010149732232094,-0.01395215280354,-0.044543955475092],[0.012502617202699,-0.085797168314457,-0.11120876669884]],[[0.17316460609436,-0.013695552945137,-0.1004217043519],[0.071795798838139,0.084575116634369,0.13425274193287],[0.05383450910449,0.13594697415829,0.11617178469896]],[[-0.0063048535957932,0.0091321412473917,0.018301356583834],[0.020550375804305,0.026557901874185,0.094425559043884],[0.075005255639553,0.17214605212212,0.17697747051716]],[[-0.022374581545591,0.0091915875673294,0.043821692466736],[0.0092122256755829,-0.048479039222002,0.12643539905548],[-0.04745727404952,-0.038901753723621,-0.057378370314837]],[[-0.090328812599182,-0.0859130397439,0.16486349701881],[0.046085044741631,-0.058564722537994,-0.085082016885281],[0.035325367003679,0.0017987395403907,0.11578855663538]],[[0.14149443805218,-0.063177585601807,-0.026354921981692],[0.021951880306005,0.067509360611439,-0.0053831986151636],[-0.079360410571098,0.065391398966312,-0.0019480418413877]],[[-0.15671834349632,-0.041272938251495,0.041409026831388],[0.13812594115734,-0.039705459028482,-0.091443955898285],[0.10555440932512,-0.014050372876227,-0.089657321572304]],[[0.1127400547266,-0.046264622360468,-0.044668097048998],[0.20832380652428,0.061638291925192,-0.099686369299889],[0.098953008651733,0.031657390296459,0.018912917003036]],[[0.012557867914438,0.075616605579853,-0.014478098601103],[0.0457310564816,-0.0038158965762705,0.079566031694412],[0.033056519925594,0.01711161993444,-0.011566704139113]],[[-0.0065175020135939,0.048264354467392,-0.005425734911114],[-0.032123230397701,-0.0010281588183716,-0.027676999568939],[0.12123893201351,0.078746967017651,0.02476847358048]],[[0.051049459725618,0.0066884574480355,0.042084544897079],[-0.0036113522946835,0.20911109447479,-0.032349891960621],[0.12078023701906,0.046351667493582,-0.023047175258398]],[[0.15074346959591,0.13354448974133,0.01824477314949],[0.047085098922253,-0.0070394575595856,-0.032158058136702],[-0.082042269408703,-0.082361504435539,-0.037534311413765]],[[0.03066498041153,0.12075654417276,0.050174232572317],[-0.11973116546869,-0.012075788341463,-0.10392293334007],[0.031713634729385,-0.037293471395969,-0.018153803423047]],[[-0.036370918154716,-0.012917178682983,0.062844082713127],[0.0054999538697302,-0.047599744051695,0.0018106816569343],[-0.01510669849813,-0.04917111992836,-0.038495928049088]],[[-0.059984218329191,-0.042907241731882,-0.018783925101161],[0.11028187721968,0.030425233766437,0.15647618472576],[0.0096395453438163,0.0090327877551317,0.050338495522738]],[[-0.033562287688255,-0.08124577999115,0.0069484608247876],[-0.035338390618563,0.00092118920292705,0.062638759613037],[0.008517942391336,-0.041981779038906,-0.069834776222706]],[[-0.098488189280033,-0.04964391887188,-0.046120963990688],[-0.031438536942005,0.00072391505818814,0.0055953562259674],[-0.024747189134359,0.096438318490982,-0.0056666070595384]],[[-0.24379593133926,-0.085281066596508,0.017505429685116],[-0.016953708603978,0.083489492535591,0.047879345715046],[-0.016554577276111,-0.061748154461384,-0.053268864750862]],[[0.026963004842401,-0.080195888876915,-0.12457825988531],[-0.017678413540125,-0.084116525948048,-0.10604052245617],[-0.0036413685884327,-0.12377062439919,0.018786696717143]],[[-0.0021210282575339,0.031121948733926,-0.073457300662994],[0.14364050328732,0.12276918441057,0.070313535630703],[-0.028646172955632,-0.060447085648775,-0.0092527307569981]],[[0.10461312532425,-0.088618636131287,-0.032423470169306],[0.18409034609795,-0.077331155538559,-0.08157853782177],[0.096517816185951,-0.044694919139147,-0.061772093176842]],[[0.1018031090498,0.1625824123621,0.19993425905704],[0.051047090440989,0.17853705585003,0.18161934614182],[-0.001738207298331,0.064693868160248,0.034416474401951]],[[-0.097386330366135,0.10562032461166,0.084101997315884],[0.00092892156681046,0.094132483005524,-0.063147388398647],[-0.0031438916921616,-0.059748813509941,0.033408675342798]],[[0.084601812064648,0.16869011521339,0.13199888169765],[-0.0034488120581955,-0.20286743342876,0.060920160263777],[0.09334459155798,0.066062077879906,0.0057607023045421]],[[-0.0077161081135273,0.10389328747988,0.0524668879807],[-0.10910034179688,-0.11750474572182,-0.040119376033545],[-0.047765363007784,-0.01484824065119,-0.017484804615378]],[[0.054546885192394,0.019819255918264,0.014198915101588],[-0.035634569823742,-0.062621735036373,-0.0042945388704538],[-0.079623639583588,-0.059600953012705,-0.077101454138756]],[[0.04393757134676,-0.062700517475605,0.068601429462433],[-0.11559861153364,0.024765318259597,0.059787541627884],[-0.054877333343029,-0.081523068249226,0.016872080042958]],[[-0.083039209246635,-0.095428228378296,-0.086639903485775],[-0.081073313951492,-0.074754394590855,-0.041070703417063],[-0.024170998483896,0.026429057121277,0.078294709324837]],[[-0.045614115893841,-0.012598629109561,-0.029012115672231],[-0.11750768125057,-0.12215156108141,0.15555921196938],[0.10388708114624,-0.027922201901674,-0.031975440680981]],[[-0.043198172003031,0.099187031388283,0.09113659709692],[-0.02437905408442,0.14796656370163,0.1283633261919],[0.094224818050861,0.0095361303538084,-0.01126504316926]],[[-0.046877149492502,0.050902184098959,0.073539346456528],[-0.030541822314262,0.049060393124819,-0.0092402780428529],[-0.037859622389078,-0.031642351299524,0.038233984261751]],[[0.0019991768058389,-0.069544047117233,0.025456380099058],[0.021270908415318,0.10802268981934,0.11883598566055],[-0.0059815356507897,-0.015740785747766,0.10418521612883]],[[-0.12474223226309,-0.019724398851395,-0.028078958392143],[-0.0052555561996996,-0.0034056566655636,0.043561145663261],[-0.01263848412782,0.03513041511178,-0.037768721580505]],[[-0.1926466524601,-0.088027231395245,-0.055760063230991],[-0.0059511414729059,0.098494574427605,0.12345189601183],[0.010026538744569,0.10621812194586,0.048685252666473]],[[0.0058631123974919,-0.044318880885839,-0.0026310381945223],[-0.086782284080982,-0.086751893162727,-0.096954323351383],[0.0066827903501689,0.043871119618416,0.063477486371994]],[[0.047666780650616,-0.030964538455009,-0.021048592403531],[0.038568023592234,0.11136564612389,0.05913844332099],[-0.029092539101839,-0.14263121783733,-0.093425661325455]],[[0.0033064493909478,-0.038270752876997,-0.13947220146656],[0.075810343027115,0.23518501222134,0.24366699159145],[-0.043323840945959,-0.18623161315918,0.0077802697196603]],[[0.037781529128551,0.0034368454944342,-0.07033533602953],[-0.095991231501102,0.016976749524474,-0.081221327185631],[0.084120571613312,-0.030030341818929,-0.072724424302578]],[[-0.07013463228941,-0.012719159014523,-0.028783326968551],[-0.024157354608178,-0.045016631484032,-0.11570400744677],[-0.0065322369337082,-0.11805606633425,-0.042568370699883]],[[0.056435208767653,-0.020080069079995,-0.057123649865389],[-0.039132550358772,0.019114414229989,0.044679999351501],[-0.0054824878461659,0.052324157208204,-0.10603618621826]],[[0.050807539373636,0.15846773982048,0.014898271299899],[0.070751272141933,0.053638216108084,0.20565612614155],[-0.050576016306877,0.05988697335124,0.024379270151258]],[[0.042490433901548,0.035318445414305,-0.034876402467489],[0.020911945030093,0.057958524674177,-0.024888889864087],[0.069248378276825,-0.0012682009255514,-0.12313828617334]],[[-0.012342466972768,-0.011119327507913,-0.17782007157803],[-0.11370965093374,-0.043009027838707,-0.098553448915482],[-0.032693143934011,-0.027923794463277,-0.027182746678591]],[[0.034210722893476,0.0039313975721598,0.045319765806198],[0.030129726976156,-0.071563765406609,0.033918425440788],[0.12592773139477,-0.064090073108673,0.010045480914414]],[[0.0420743227005,0.086476370692253,0.0082521522417665],[-0.13800728321075,-0.085331961512566,0.07231929153204],[-0.097563251852989,-0.00066808145493269,-0.054903354495764]],[[0.00068227807059884,0.023013418540359,-0.039577081799507],[0.057187978178263,-0.0043775080703199,0.018037328496575],[-0.19033464789391,-0.12234352529049,-0.0050063407979906]],[[-0.098019503057003,0.077234216034412,0.099395804107189],[-0.042199395596981,-0.13914926350117,0.014584570191801],[0.01256362721324,0.033735398203135,-0.011851315386593]],[[-0.063236586749554,-0.074499316513538,-0.096601016819477],[-0.15347790718079,-0.077549651265144,0.16383472084999],[0.032717812806368,0.035885211080313,0.12164346128702]]],[[[0.011338119395077,0.03603870049119,0.06158172339201],[0.056923568248749,-0.023764118552208,0.071417309343815],[0.10855198651552,-0.077017173171043,0.049703817814589]],[[-0.12668772041798,0.10423156619072,-0.059163220226765],[-0.057460404932499,-0.045145656913519,-0.088505528867245],[-0.11265247315168,0.044684138149023,0.015119700692594]],[[0.16319313645363,0.0013943136436865,-0.0036445010919124],[0.098313644528389,-0.054009161889553,-0.11965794861317],[0.043197896331549,0.13721549510956,-0.13697361946106]],[[0.23126830160618,0.05948169901967,0.046958107501268],[0.19557224214077,0.12653285264969,0.074277870357037],[-0.015508400276303,-0.0047466368414462,-0.035921279340982]],[[0.054375693202019,-0.015094326809049,0.18085809051991],[0.0094612594693899,-0.056072875857353,0.26033398509026],[-0.05901451036334,-0.081180490553379,0.16344228386879]],[[-0.051517639309168,-0.017541455104947,-0.025217553600669],[0.23750665783882,-0.010877630673349,-0.058208525180817],[0.083435960114002,-0.059350978583097,0.18790747225285]],[[-0.11625520139933,0.010717713274062,0.18450580537319],[-0.11355691403151,0.14173552393913,0.081144772469997],[-0.090539894998074,0.062192916870117,-0.019062517210841]],[[0.18410469591618,-0.040975607931614,-0.0096128052100539],[0.18520264327526,0.055761087685823,0.020775122568011],[-0.049210801720619,-0.079536862671375,0.018043925985694]],[[0.17002287507057,0.10077763348818,-0.095506310462952],[0.03533910959959,-0.077689453959465,-0.027526853606105],[0.011163555085659,0.088255152106285,-0.062909983098507]],[[-0.12164513021708,0.031283035874367,-0.058039285242558],[-0.20702537894249,0.10550226271152,-0.037606034427881],[-0.033295229077339,0.0046929405070841,0.018538953736424]],[[0.028416072949767,0.051000390201807,0.14024791121483],[-0.016493953764439,0.065287038683891,0.027312386780977],[0.065482392907143,0.036825425922871,0.084552280604839]],[[-0.019101545214653,0.15892525017262,0.21746717393398],[-0.032285187393427,0.0096164233982563,0.069598250091076],[-0.020478075370193,-0.019356705248356,-0.061627130955458]],[[-0.02819343470037,-0.13793113827705,0.099858932197094],[0.16363956034184,-0.029534552246332,0.14466023445129],[-0.026172047480941,0.011793842539191,0.09559353441]],[[0.051785215735435,0.091879397630692,-0.098799020051956],[0.081900022923946,0.039924114942551,-0.16721318662167],[0.014453840442002,-0.0073400209657848,-0.18071675300598]],[[-0.071839064359665,-0.23719342052937,-0.079264879226685],[-0.11852353811264,-0.0050515602342784,-0.25128442049026],[-0.27179878950119,-0.12385411560535,0.28848248720169]],[[0.1304278075695,-0.10113329440355,0.028049444779754],[0.0075683766044676,-0.06549646705389,-0.14596889913082],[0.10423086583614,-0.010733457282186,-0.16739900410175]],[[-0.034602150321007,-0.10812973976135,0.013004146516323],[-0.14181806147099,-0.043710507452488,0.017432009801269],[-0.06023721024394,0.0057263104245067,0.039980158209801]],[[-0.049295041710138,0.12781208753586,-0.10607974231243],[-0.0016888797981665,-0.025393823161721,-0.037151757627726],[-0.097773015499115,-0.045702438801527,-0.047465186566114]],[[0.035306006669998,0.10851194709539,-0.17696215212345],[-0.040413230657578,0.04719402641058,-0.045055475085974],[-0.12384529411793,-0.090366080403328,0.13243034482002]],[[-0.16652831435204,0.047740556299686,-0.0043868445791304],[-0.11488708108664,0.10925395786762,-0.13931851089001],[-0.065215513110161,0.036490987986326,-0.083630859851837]],[[0.01591837964952,-0.029850760474801,0.091276861727238],[-0.094591751694679,-0.024392511695623,0.0073181535117328],[-0.19091264903545,-0.053796462714672,0.011181049980223]],[[0.039512481540442,-0.017188696190715,0.09912695735693],[-0.091189935803413,0.041174031794071,-0.11024054139853],[-0.070971935987473,0.11621294170618,-0.0045132571831346]],[[0.14618355035782,-0.18261063098907,-0.03715993091464],[0.18716523051262,-0.050598852336407,0.074869588017464],[0.11555701494217,-0.03935930877924,0.032466880977154]],[[0.087310396134853,0.041566286236048,0.079717040061951],[0.040373753756285,0.14065389335155,-0.046487376093864],[0.040156058967113,0.0010440003825352,0.04555481299758]],[[0.094550885260105,0.011414489708841,-0.021325130015612],[0.13101963698864,0.066686302423477,-0.030451824888587],[-0.046708311885595,-0.01966181024909,-0.054291319102049]],[[0.16753232479095,0.0026099206879735,-0.063599847257137],[0.087684966623783,-0.071197815239429,0.063541635870934],[0.010045917704701,-0.25089302659035,0.21538265049458]],[[-0.09841912984848,0.0042392895556986,-0.016430322080851],[-0.012467228807509,0.1274741590023,0.12471113353968],[-0.003706679912284,0.12763878703117,0.090248264372349]],[[0.12990906834602,-0.14949209988117,-0.070344254374504],[-0.056892268359661,-0.062153339385986,0.11880512535572],[-0.072201862931252,-0.15820297598839,0.14469467103481]],[[-0.13248746097088,0.067405350506306,-0.0043979776091874],[0.036141861230135,-0.035207871347666,0.022518198937178],[0.013571019284427,0.1158684939146,-0.14783829450607]],[[-0.14193545281887,-0.040990818291903,0.0039733750745654],[-0.1030332967639,-0.072354666888714,0.011475424282253],[0.040912725031376,0.058740459382534,0.021271143108606]],[[-0.13220548629761,-0.011860946193337,0.027420286089182],[-0.1069899648428,-0.027551885694265,0.19989325106144],[0.072293199598789,-0.016440046951175,-0.030169606208801]],[[0.076304763555527,0.063936598598957,-0.064310498535633],[0.077469475567341,0.10516351461411,-0.11019472032785],[-0.06250225007534,0.010397303849459,-0.027982417494059]],[[0.12884038686752,-0.019814835861325,0.034903716295958],[0.16521093249321,0.029261404648423,0.13242392241955],[-0.062894426286221,-0.10226845741272,-0.018158949911594]],[[0.061266425997019,-0.021366180852056,0.11274541914463],[0.060736790299416,-0.013468307442963,0.11257183551788],[0.00038215861422941,-0.024543777108192,0.030871566385031]],[[-0.12673312425613,-0.050856806337833,-0.11246419698],[-0.21038961410522,-0.11312765628099,-0.080876812338829],[-0.069101102650166,-0.041660293936729,0.02802924066782]],[[-0.11605686694384,-0.080413945019245,0.086877435445786],[-0.080828070640564,0.034763760864735,-0.061543986201286],[-0.016723638400435,-0.042922962456942,-0.031417351216078]],[[-0.019833724945784,-0.0019109816057608,-0.035824444144964],[-0.033996094018221,0.090638138353825,-0.062262717634439],[-0.019863398745656,0.08991065621376,0.073983900249004]],[[0.090888522565365,0.053737670183182,0.043602827936411],[0.098266042768955,-0.037024989724159,-0.069815784692764],[0.047220062464476,-0.0094481045380235,0.10886393487453]],[[0.075004681944847,-0.14678077399731,0.009913569316268],[0.097116321325302,0.013997299596667,-0.10996528714895],[0.029032537713647,0.03526233881712,-0.13392640650272]],[[0.048239592462778,-0.10804058611393,0.032239146530628],[-0.057766873389482,-0.031571909785271,-0.052557092159986],[-0.11292658001184,-0.096350654959679,0.010929233394563]],[[-0.0022468566894531,0.017909551039338,0.11104801297188],[-0.041840508580208,-0.052012257277966,0.12962561845779],[-0.19764368236065,-0.071915879845619,-0.022900814190507]],[[0.07400618493557,-0.080017149448395,-0.10602981597185],[0.10343392938375,-0.11286332458258,0.013560796156526],[0.11061291396618,-0.039271812886,-0.21919645369053]],[[0.019149200990796,-0.048992108553648,0.027133733034134],[0.10663372278214,0.013599949888885,-0.071131177246571],[0.042516805231571,-0.014861093834043,-0.058924023061991]],[[-0.014491160400212,-0.083628855645657,-0.067397885024548],[0.010626423172653,-0.0057652872055769,0.069135680794716],[-0.072002276778221,0.030898248776793,0.014226539991796]],[[0.081777967512608,-0.0054280944168568,0.043570417910814],[-0.10150842368603,-0.036517467349768,-0.11647666245699],[0.07242526859045,0.033638954162598,-0.12334670871496]],[[-0.14566592872143,0.1713061183691,0.030961435288191],[-0.084252759814262,0.091694608330727,0.015320814214647],[-0.13990144431591,0.070136576890945,-0.11175419390202]],[[0.021506529301405,-0.19590424001217,-0.072282239794731],[-0.062141533941031,-0.073625020682812,-0.1856706738472],[-0.0047095967456698,-0.029822653159499,0.062833197414875]],[[0.015024892054498,0.045716896653175,-0.12169770151377],[0.081464737653732,0.0014800210483372,0.10949464887381],[0.002289249561727,0.10459019243717,0.012640103697777]],[[0.097291134297848,0.013947641476989,0.0012361307162791],[0.025277705863118,0.076152101159096,0.079406261444092],[-0.04010546207428,0.071962371468544,-0.040622543543577]],[[-0.035722471773624,0.067091457545757,-0.085217662155628],[0.085172936320305,0.099349029362202,-0.13848680257797],[0.09363067150116,0.1037223264575,-0.012080677784979]],[[0.018747489899397,0.010786888189614,-0.021684775128961],[0.0074767088517547,-0.032799944281578,-0.00085768714779988],[-0.023748451843858,-0.175189062953,-0.086440607905388]],[[0.070059426128864,0.066558092832565,-0.038036789745092],[0.030064761638641,0.050444986671209,-0.016976607963443],[0.11677900701761,0.0023238207213581,0.091327235102654]],[[-0.068656034767628,0.09387195110321,0.061894327402115],[-0.0092644933611155,-0.091203480958939,0.053805351257324],[-0.062968231737614,-0.10766687989235,0.019128546118736]],[[0.10513422638178,0.036200519651175,0.12049223482609],[-0.12094455957413,0.0052328347228467,0.039730932563543],[-0.11101821810007,0.11564611643553,0.019278660416603]],[[-0.054561551660299,0.10629418492317,-0.0020721696782857],[0.065995752811432,0.011745179072022,-0.07201287150383],[-0.031919129192829,0.084058038890362,-0.021964345127344]],[[-0.065293125808239,0.18112625181675,0.041501738131046],[-0.02140305750072,-0.086700409650803,0.023012734949589],[0.21572080254555,-0.011953813955188,0.059406589716673]],[[-0.065082177519798,-0.070049375295639,0.10999268293381],[0.049455758184195,-0.027229066938162,0.076988086104393],[-0.060913760215044,0.033625449985266,0.018896520137787]],[[0.10828395932913,-0.10394447296858,0.008694676682353],[-0.005326674785465,-0.01446960773319,0.0523766502738],[-0.1791807115078,-0.094471916556358,0.0021986535284668]],[[-0.079892292618752,0.05821368843317,0.11145156621933],[-0.15390761196613,-0.035681664943695,0.13760775327682],[-0.050872940570116,-0.13336572051048,0.069540999829769]],[[0.024746989831328,-0.033864203840494,-0.085657343268394],[-0.0077435690909624,0.043160200119019,-0.1996237039566],[-0.034960880875587,0.024456430226564,-0.15907342731953]],[[0.071001924574375,0.0019206820288673,0.021235566586256],[0.099096834659576,-0.049056671559811,0.081473864614964],[-0.00027332018362358,-0.072902910411358,0.063895121216774]],[[-0.077760614454746,-0.040219459682703,-0.18836005032063],[-0.088991306722164,-0.036097977310419,-0.21245010197163],[-0.05341675132513,0.023016415536404,-0.074110046029091]],[[0.1051497682929,0.050289452075958,-0.12365734577179],[-0.1541393995285,0.035816740244627,-0.052279554307461],[-0.062090635299683,-0.083701565861702,-0.016636909916997]],[[0.040638756006956,-0.047767803072929,-0.083024874329567],[0.10076632350683,0.08201490342617,0.015989540144801],[0.11966046690941,0.29139912128448,0.021105712279677]],[[-0.025725526735187,-0.14125676453114,0.1723974943161],[0.0035269549116492,-0.015863675624132,-0.018281197175384],[0.045676056295633,0.01045111194253,-0.11287518590689]],[[-0.13775599002838,-0.0045942105352879,0.033150415867567],[-0.032978091388941,-0.10254687815905,0.070215754210949],[-0.080662578344345,-0.12131253629923,-0.007057152222842]],[[0.029655637219548,-0.057989526540041,0.048349309712648],[-0.0095422696322203,0.014422016218305,0.039318677037954],[0.098585933446884,-0.032175149768591,0.035633902996778]],[[-0.1668446958065,-0.025514628738165,0.12394120544195],[0.084848634898663,-0.10684418678284,0.10066728293896],[0.0031443033367395,-0.065165176987648,0.017727505415678]],[[0.028592702001333,-0.15322270989418,0.064215779304504],[0.063025653362274,-0.17136535048485,0.065367937088013],[0.081559218466282,-0.098510004580021,0.10198352485895]],[[0.033816169947386,0.0010505554964766,-0.03532087802887],[0.038500029593706,0.011645848862827,-0.024459272623062],[0.017155658453703,-0.0024416260421276,-0.088547639548779]],[[-0.1192332431674,0.04836642742157,-0.040745783597231],[-0.023920932784677,0.017357718199492,0.058487880975008],[-0.0078238900750875,-0.014573578722775,-0.0068241278640926]],[[0.080888666212559,0.10156086832285,0.037437677383423],[-0.0061804065480828,0.062483504414558,-0.059256374835968],[0.003536228556186,0.029494717717171,0.17601127922535]],[[-0.20114099979401,-0.12454035133123,-0.078499294817448],[-0.21874910593033,-0.0073374952189624,-0.051439698785543],[-0.18263237178326,-0.31056064367294,0.072067350149155]],[[0.0017031407915056,-0.032976843416691,0.032595824450254],[0.034070517867804,0.02527760900557,0.08536110073328],[0.026669353246689,-0.038849696516991,0.2401088476181]],[[-0.12908008694649,0.010027629323304,0.027177326381207],[-0.12265215814114,-0.021176174283028,0.003271552734077],[-0.15402111411095,-0.0086852163076401,0.050942596048117]],[[0.077634371817112,-0.0046271239407361,0.08313624560833],[-0.059571783989668,0.038247175514698,0.11501444131136],[0.025812935084105,0.13052244484425,0.1363677829504]],[[0.043568037450314,0.060286086052656,-0.069539979100227],[-0.13579587638378,0.016038902103901,0.076924979686737],[-0.055771041661501,0.04814799502492,-0.02480629645288]],[[0.043479897081852,-0.022167362272739,-0.088062152266502],[0.0090137012302876,0.0049642315134406,-0.11724326014519],[-0.080806255340576,-0.093404039740562,0.016727479174733]],[[-0.033303625881672,-0.0070801447145641,-0.012986178509891],[-0.12800870835781,-0.0055187954567373,0.0045054797083139],[-0.11033898591995,-0.039630185812712,0.072108559310436]],[[-0.088188774883747,0.080830797553062,0.12474375963211],[-0.12684245407581,-0.1327518671751,0.085768431425095],[0.064318150281906,-0.10018387436867,0.10190150886774]],[[0.12072928249836,-0.032018978148699,-0.020392401143909],[0.12668126821518,0.04468472674489,-0.0033163849730045],[-0.022801188752055,-0.026837645098567,-0.039263818413019]],[[-0.15553650259972,0.10603308677673,-0.009335090406239],[-0.11063365638256,-0.017449133098125,0.087930344045162],[-0.062662236392498,-0.032956216484308,-0.015630360692739]],[[-0.0072382600046694,0.070133872330189,0.036580868065357],[-0.11693125218153,0.12257964909077,-0.00018957964493893],[-0.090040303766727,0.18602201342583,0.019405897706747]],[[-0.10708228498697,-0.11065970361233,-0.012564371339977],[-0.11982991546392,-0.062659814953804,-0.13459062576294],[-0.19377660751343,-0.11454246193171,-0.12734454870224]],[[0.17457266151905,-0.18639308214188,-0.080491468310356],[0.011161059141159,-0.0099829062819481,0.13423417508602],[-0.032656718045473,-0.08799222111702,-0.13496570289135]],[[-0.15187184512615,0.050348840653896,-0.030753683298826],[-0.10443206876516,0.075333446264267,0.073728628456593],[0.027435602620244,-0.096847981214523,0.15873849391937]],[[0.046637814491987,0.036244586110115,0.025080109015107],[0.058538448065519,0.13968089222908,-0.005299324169755],[0.022413115948439,0.085009664297104,0.12665762007236]],[[-0.0018696789629757,-0.03775055706501,0.26284635066986],[0.11942017823458,-0.041773967444897,-0.12653979659081],[0.112045571208,0.033708203583956,-0.061466168612242]],[[-0.063712142407894,-0.074957296252251,-0.047887962311506],[-0.024102220311761,0.024410285055637,-0.053713042289019],[0.11304000765085,0.11848879605532,0.0211948659271]],[[0.14207702875137,0.055042278021574,0.11002609878778],[0.012286092154682,-0.094868175685406,0.056719582527876],[-0.1030158996582,-0.068560838699341,0.01569726318121]],[[0.11585823446512,0.050782606005669,0.0029555028304458],[0.093638554215431,0.077238917350769,0.12609955668449],[-0.0095617426559329,0.030237145721912,0.063366189599037]],[[-0.086368322372437,0.087898261845112,-0.08800383657217],[-0.12202728539705,-0.015579715371132,0.095818668603897],[-0.023021575063467,-0.050858564674854,-0.078266695141792]],[[0.051764477044344,-0.13745810091496,0.031334564089775],[-0.0082529904320836,0.010276265442371,0.16157062351704],[-0.055656656622887,0.0053744646720588,0.13331846892834]],[[-0.099652320146561,-0.081235490739346,0.11673033982515],[-0.073853671550751,-0.094343759119511,0.012693230994046],[0.014187124557793,-0.074450992047787,0.054959874600172]],[[0.033190924674273,-0.060287449508905,-0.016395345330238],[-0.010980312712491,-0.0058886804617941,-0.13843509554863],[-0.013683126308024,-0.038156557828188,-0.16879199445248]],[[-0.1801510900259,-0.059603605419397,0.096084251999855],[-0.042892128229141,-0.031290717422962,0.19985461235046],[0.021588530391455,-0.0078159747645259,-0.094183757901192]],[[0.091384164988995,0.011129735037684,-0.16074167191982],[0.15686136484146,0.028366958722472,0.035925686359406],[0.075897805392742,0.031706657260656,0.0095073580741882]],[[0.15089392662048,0.065378494560719,-0.054168071597815],[0.023135589435697,0.18938063085079,-0.075400903820992],[0.076494000852108,0.20938143134117,0.022560492157936]],[[0.041938602924347,-0.07512404024601,-0.056828159838915],[0.18578703701496,-0.059602271765471,-0.076730638742447],[0.070930972695351,0.10267645120621,-0.15292696654797]],[[0.11450643092394,-0.11881002038717,0.096781820058823],[0.037331681698561,-0.10451599210501,0.049838650971651],[0.0081744939088821,0.028103237971663,0.086287528276443]],[[0.054900113493204,-0.1006643474102,-0.17180490493774],[0.023128014057875,-0.074380308389664,-0.10774137824774],[-0.031597051769495,-0.088116496801376,0.019912471994758]],[[0.16249379515648,0.13164931535721,0.072215378284454],[0.12840032577515,0.018127815797925,-0.065004527568817],[0.032229065895081,-0.0028430460952222,-0.043134532868862]],[[0.0017138908151537,0.019977333024144,-0.049972139298916],[-0.11409931629896,0.039464261382818,-0.037237834185362],[0.025940122082829,0.07277949154377,0.057794459164143]],[[0.055311191827059,-0.017834328114986,0.089825704693794],[0.018601952120662,-0.00062286102911457,0.010576925240457],[0.10212741792202,-0.0116260163486,-0.03576222807169]],[[-0.10352131724358,-0.044011529535055,-0.038756348192692],[-0.0013846439542249,-0.15109895169735,-0.11507243663073],[0.080458141863346,0.020073503255844,0.030323063954711]],[[-0.12565158307552,0.058824062347412,-0.048617351800203],[-0.041461825370789,0.013423438183963,-0.010970826260746],[-0.011460857465863,0.0062422966584563,0.07035006582737]],[[0.074064284563065,0.035950168967247,-0.039986647665501],[0.064107991755009,-0.014068142510951,0.056528851389885],[-0.12053786963224,-0.066503912210464,0.022837022319436]],[[-0.0011274141725153,0.039445694535971,0.026312559843063],[-0.0336421020329,-0.037104122340679,0.025553831830621],[-0.095685474574566,-0.034196406602859,-0.20319086313248]],[[0.080580174922943,0.10482707619667,0.022066479548812],[-0.12168791145086,0.052691198885441,-0.012580436654389],[0.0036373427137733,-0.003756387392059,0.097931198775768]],[[0.060543734580278,0.072500720620155,-0.11135701090097],[0.0054327719844878,-0.068377077579498,-0.012859080918133],[-0.050009835511446,-0.042786795645952,0.056514095515013]],[[-0.058448612689972,-0.056292537599802,0.02387809753418],[-0.044173628091812,-0.018040237948298,0.00010140886297449],[-0.015313301235437,0.070255160331726,0.005438978318125]],[[-0.070811286568642,-0.0065817846916616,-0.015488393604755],[-0.11408888548613,-0.015389620326459,-0.0012506293132901],[-0.10453170537949,-0.088931210339069,-0.01816344819963]],[[-0.022556031122804,0.087096363306046,0.0059758159331977],[-0.042120758444071,0.15145610272884,0.093274123966694],[0.039733566343784,-0.072440132498741,-0.024772049859166]],[[-0.13395594060421,0.016492223367095,0.0091539835557342],[0.10291783511639,0.021085500717163,0.007194853387773],[-0.015437837690115,-0.055066496133804,-0.0010290722129866]],[[-0.063519217073917,0.09231124818325,0.090571209788322],[0.019387897104025,0.051499981433153,0.13221262395382],[0.061377577483654,0.049458127468824,0.013124579563737]],[[-0.084218055009842,-0.038896597921848,0.0041768131777644],[0.032424349337816,0.0026107933372259,0.1498174071312],[-0.048078965395689,-0.059497226029634,0.16798293590546]],[[-0.035006534308195,-0.024623101577163,-0.029764896258712],[-0.084255337715149,0.068919323384762,0.019423553720117],[-0.065530903637409,0.016971739009023,-0.022322837263346]],[[0.0086574582383037,-0.075769610702991,-0.056935977190733],[0.043616805225611,0.084154888987541,0.0950947701931],[0.11005581170321,0.074397601187229,0.1633530408144]],[[-0.014202285557985,0.035807337611914,-0.20832431316376],[-0.040038675069809,0.0054923705756664,-0.007245269138366],[-0.015052076429129,0.0063337008468807,0.018176322802901]],[[-0.12191604822874,0.062706634402275,0.053859483450651],[0.011139768175781,2.6354264264228e-05,-0.14098179340363],[0.29092836380005,-0.073360502719879,-0.056616932153702]],[[-0.06887774169445,-0.15686365962029,0.11803908646107],[-0.073124028742313,-0.033616010099649,0.040141209959984],[0.029608955606818,-0.025008667260408,-0.02717506699264]],[[-0.0067699146457016,0.063492596149445,-0.053657542914152],[-0.026811836287379,0.062903419137001,-0.036790687590837],[-0.021874971687794,0.011636234819889,0.022962566465139]],[[-0.060537654906511,-0.03912316262722,0.050684105604887],[-0.063088640570641,-0.2151522487402,0.0041819834150374],[0.066836640238762,0.069757521152496,-0.096077606081963]],[[-0.036242373287678,-0.14273709058762,-0.051359746605158],[0.021783342584968,0.042106471955776,-0.046830099076033],[0.0788833796978,0.038779564201832,-0.097570888698101]],[[0.12887433171272,-0.10512302815914,-0.017847247421741],[-0.053298894315958,0.03220334276557,0.21459153294563],[0.0068916361778975,-0.0293177254498,0.012800577096641]],[[0.0081044994294643,-0.14202584326267,-0.053175713866949],[-0.028298849239945,0.041432622820139,0.21518908441067],[0.031826350837946,0.06052577868104,0.069507732987404]],[[0.058014784008265,-0.067155756056309,0.017086360603571],[-0.057525970041752,0.0035452484153211,-0.15810237824917],[0.11129964143038,0.057829406112432,0.086596667766571]],[[0.16566881537437,0.10300905257463,0.12122808396816],[0.14232629537582,0.045100059360266,0.010489633306861],[0.21133932471275,-0.072871997952461,-0.016340725123882]]],[[[0.0038385221268982,-0.030882526189089,0.087673634290695],[0.043631657958031,0.13259649276733,0.082524329423904],[0.0037478860467672,0.11660224199295,0.02161081135273]],[[0.08806911110878,-0.086963698267937,-0.0018843588186428],[-0.14268855750561,-0.059971489012241,-0.053850583732128],[-0.0020113154314458,-0.10679552704096,-0.064088582992554]],[[-0.11411153525114,-0.1132554858923,0.051315564662218],[-0.05192169547081,0.2113011777401,-0.077533639967442],[0.16982667148113,0.15247121453285,-0.18845263123512]],[[0.20364139974117,0.069812245666981,0.03479365631938],[-0.0014063196722418,-0.12540225684643,0.12314918637276],[0.033025428652763,-0.31589937210083,-0.036413710564375]],[[0.028424955904484,0.066325820982456,0.057147167623043],[0.017989818006754,0.18296146392822,-0.072749674320221],[-0.021489204838872,0.13868616521358,0.03345862030983]],[[-0.055840276181698,-0.0440011061728,0.012495553120971],[-0.069937720894814,-0.11539804935455,0.046354912221432],[-0.017985733225942,-0.026585983112454,0.010093569755554]],[[-0.040495831519365,0.0038094162009656,-0.03089994750917],[-0.080585986375809,-0.0016044685617089,0.026266293600202],[0.049790181219578,0.11383217573166,0.019290398806334]],[[-0.047846045345068,0.040942657738924,0.031891915947199],[0.065681599080563,0.048746056854725,0.055336106568575],[-0.01484951749444,-0.029574256390333,0.077383227646351]],[[-0.095113925635815,0.037020042538643,0.057434722781181],[-0.049619320780039,0.16781988739967,-0.064621604979038],[0.085180960595608,-0.019686298444867,0.023724118247628]],[[-0.077748112380505,-0.11847355216742,-0.28077295422554],[-0.046375345438719,-0.22840297222137,0.074913986027241],[-0.19745354354382,0.019982105121017,-0.0094735007733107]],[[-0.081697233021259,-0.035890746861696,-0.14071729779243],[0.056971520185471,-0.047777023166418,-0.11219890415668],[0.00050832470878959,0.064467340707779,0.11382892727852]],[[0.10347875952721,0.014219898730516,0.032681602984667],[-0.13937729597092,0.056904532015324,-0.016664791852236],[-0.070133931934834,0.056561026722193,-0.095107272267342]],[[-0.034510012716055,-0.01152047328651,-0.022838359698653],[-0.025654952973127,-0.079448290169239,0.067567758262157],[-0.14452873170376,-0.17040809988976,-0.22432440519333]],[[-0.10317371785641,-0.11182944476604,-0.051889348775148],[0.0017087261658162,-0.069027282297611,-0.11569004505873],[0.0097121149301529,-0.081398077309132,-0.082046627998352]],[[0.12575420737267,-0.036843698471785,-0.16452570259571],[0.090889647603035,0.014920980669558,-0.012795147486031],[-0.045543946325779,0.046292837709188,0.0048582185991108]],[[-0.036086168140173,-0.028412785381079,-0.11079740524292],[-0.12276695668697,-0.035955369472504,-0.022599531337619],[-0.13827215135098,-0.034140568226576,-0.047120854258537]],[[-0.12835682928562,-0.19323366880417,-0.20625752210617],[-0.19081923365593,-0.026825021952391,0.0089070964604616],[-0.025297457352281,0.084167532622814,0.060630794614553]],[[0.067476809024811,0.03128007799387,0.014586756937206],[0.02882713265717,-0.0016288572223857,-0.11034172773361],[0.0038959833327681,0.077501364052296,-0.067720972001553]],[[-0.096980266273022,-0.15982733666897,0.17056921124458],[-0.029840502887964,0.072915196418762,0.055785905569792],[0.092952914535999,-0.012600936926901,0.11925826966763]],[[0.10865428298712,-0.0043952353298664,-0.19274470210075],[0.11174796521664,0.078072927892208,-0.038949549198151],[-0.1152690127492,-0.026007939130068,0.044625137001276]],[[-0.12105546146631,0.014858591370285,-0.040752850472927],[-0.0095365848392248,-0.091860458254814,-0.11501240730286],[-0.19948284327984,-0.093866616487503,-0.021763481199741]],[[-0.026895644143224,0.099535062909126,0.019563047215343],[0.14680318534374,0.031740006059408,0.015728559345007],[-0.14450611174107,-0.11863622814417,-0.093502052128315]],[[-0.078251451253891,-0.052483525127172,0.15613582730293],[0.10124760866165,0.099232107400894,0.19746075570583],[0.070187933743,-0.04656994342804,0.062384132295847]],[[0.089829102158546,-0.10025976598263,-0.038309935480356],[-0.093672394752502,-0.18853741884232,-0.21684676408768],[-0.028434300795197,-0.079529270529747,-0.1587173640728]],[[0.12418181449175,-0.095188304781914,-0.023196240887046],[0.083280719816685,-0.11337365210056,-0.030148424208164],[-0.17606644332409,-0.067373633384705,-0.078904144465923]],[[0.025300053879619,0.05107094347477,0.083593592047691],[-0.015314208343625,-0.0029411870054901,0.07015735656023],[-0.014524830505252,-0.025922359898686,-0.015563598833978]],[[-0.056194242089987,0.079789012670517,-0.019269745796919],[-0.013898374512792,-0.01123268995434,0.049728851765394],[-0.049760058522224,-0.033870693296194,0.074216060340405]],[[0.0054231397807598,-0.044990517199039,-0.10907863080502],[-0.030067594721913,0.029506238177419,-0.051123570650816],[0.010226312093437,0.036044351756573,0.0014867163263261]],[[-0.090586319565773,-0.018939914181828,-0.11634557694197],[-0.078497424721718,-0.12986500561237,-0.2041080147028],[-0.16410225629807,-0.20702917873859,0.042017538100481]],[[0.091811448335648,0.018085028976202,0.067510291934013],[-0.012416340410709,0.036018446087837,-0.032451834529638],[0.033658966422081,0.021998165175319,-0.011317666620016]],[[0.11444194614887,-0.20399042963982,-0.053329192101955],[-0.073948331177235,-0.11548605561256,-0.028982805088162],[-0.00012030144716846,0.031439185142517,-0.017935752868652]],[[0.12895861268044,0.0027157126460224,-0.0041713421232998],[0.026782581582665,-0.055077038705349,-0.053192116320133],[-0.086486987769604,-0.10409503430128,0.091171711683273]],[[-0.023143962025642,-0.05714713409543,0.013479168526828],[-0.021288778632879,-0.13937950134277,0.018052401021123],[-0.06073959544301,0.015973376110196,0.068646639585495]],[[0.055734943598509,0.058076120913029,-0.01092017441988],[-0.032636165618896,-0.017911743372679,-0.037781924009323],[-0.18679058551788,-0.04036795347929,-0.065515041351318]],[[-0.09354655444622,-0.045430291444063,-0.23036643862724],[-0.091642089188099,0.013761102221906,-0.14482839405537],[-0.033583149313927,0.11889760196209,-0.069800481200218]],[[0.084543891251087,0.066497884690762,0.029413931071758],[0.14885047078133,0.07880076020956,0.019233264029026],[0.094605334103107,-0.004524833522737,0.0018992415862158]],[[0.23829309642315,0.0006439316784963,-0.064192466437817],[-0.0074040642939508,0.034676034003496,0.16606540977955],[-0.082690492272377,-0.0041354415006936,0.076437257230282]],[[0.13642020523548,-0.043945096433163,-0.026233330368996],[0.023927671834826,0.01667881757021,-0.19433900713921],[0.072205886244774,-0.023458635434508,-0.13799878954887]],[[-0.04234891757369,0.10482301563025,0.1154296323657],[-0.025572875514627,-0.0032562087289989,-0.070979863405228],[0.045037217438221,0.0040403618477285,-0.096964783966541]],[[-0.060118343681097,-0.067368239164352,-0.0092540057376027],[-0.054708871990442,0.0028583556413651,-0.011258414015174],[0.026010325178504,0.061649486422539,-0.0088769858703017]],[[-0.128188341856,-0.018193170428276,-0.092805348336697],[0.010505115613341,0.063869789242744,-0.042765758931637],[-0.032753668725491,-0.13047015666962,-0.020712373778224]],[[0.17459879815578,0.096609465777874,0.13333375751972],[-0.013395195826888,0.078459948301315,-0.021249826997519],[-0.03290069848299,-0.06194569543004,0.1175367385149]],[[0.10591144859791,-0.17233736813068,-0.057288125157356],[0.036390207707882,-0.12310442328453,0.0051572453230619],[0.14440163969994,-0.00098541704937816,0.15137946605682]],[[0.013837624341249,-0.049992140382528,-0.0018101475434378],[-0.009716366417706,-0.12024726718664,0.032591782510281],[-0.13430492579937,-0.16681487858295,-0.10769040882587]],[[-0.097137242555618,0.014021710492671,-0.023060709238052],[0.065500132739544,-0.022764207795262,0.090233474969864],[0.091677837073803,0.0265773832798,-0.034538943320513]],[[-0.19761733710766,0.12551227211952,0.12440976500511],[-0.03228235244751,-0.10210756957531,0.012582785449922],[-0.029344528913498,-0.057320311665535,-0.0036223724018782]],[[-0.13737374544144,-0.0095728756859899,-0.27581009268761],[-0.073351316154003,-0.15934599936008,0.064196057617664],[-0.034128248691559,-0.10751794278622,0.18169611692429]],[[0.044069267809391,0.011878021992743,0.069216199219227],[-0.003032457549125,-0.054632812738419,-0.03731419891119],[-0.058217324316502,-0.079545080661774,0.065719738602638]],[[0.29833447933197,0.036697082221508,0.0081639746204019],[0.073713794350624,-0.12844009697437,-0.00050241523422301],[-0.015415334142745,0.012671263888478,-0.027592139318585]],[[-0.0090781869366765,0.12899442017078,-0.04402782022953],[0.0020514482166618,-0.030762642621994,0.012685623019934],[-0.039815865457058,-0.031050723046064,-0.0035441173240542]],[[-0.19670778512955,-0.053605291992426,-0.031964145600796],[-0.16366142034531,0.099125407636166,0.027161110192537],[-0.024193048477173,-0.04807810112834,0.077636115252972]],[[-0.040838669985533,0.043749298900366,0.17557439208031],[-0.023814680054784,0.14895023405552,-0.037376046180725],[0.029004065319896,-0.080716297030449,0.0062261577695608]],[[-0.017177768051624,-0.004387404769659,-0.01249959692359],[0.10073484480381,0.050810888409615,-0.017725488170981],[0.025264488533139,-0.015996469184756,-0.1000140234828]],[[-0.022347237914801,0.10223966836929,-0.16706067323685],[-0.074346520006657,0.072534345090389,-0.056203935295343],[0.089037388563156,0.045624479651451,0.15327610075474]],[[0.095686763525009,-0.029982605949044,-0.032711774110794],[-0.016880646348,-0.016040036454797,-0.057900484651327],[0.024202829226851,-0.000959069468081,0.034963339567184]],[[0.043475825339556,-0.024522859603167,0.020603163167834],[-0.14812409877777,-0.068697884678841,0.031130198389292],[-0.048537351191044,0.14083136618137,0.097408458590508]],[[0.071193158626556,0.069966927170753,0.22531193494797],[0.18577791750431,0.0003494911652524,-0.093379072844982],[0.13718953728676,-0.023151967674494,-0.087308712303638]],[[0.01302454341203,0.04129696264863,-0.031117465347052],[-0.059433907270432,-0.082490339875221,-0.0042061801068485],[-0.10517823696136,-0.22247122228146,-0.030986508354545]],[[-0.063321687281132,0.040528055280447,0.06903462857008],[0.016464365646243,0.027644472196698,0.059455275535583],[0.005236960016191,0.066257499158382,0.01773900911212]],[[-0.20159788429737,-0.069690823554993,-0.16395428776741],[-0.049079120159149,0.065133042633533,0.014101174660027],[0.15472868084908,0.15913498401642,-0.004156194627285]],[[0.019642408937216,0.009747501462698,-0.12608717381954],[-0.12587486207485,-0.035025276243687,-0.070443004369736],[-0.022822342813015,-0.032779194414616,-0.16828989982605]],[[-0.12258619815111,0.046720948070288,-0.11006473749876],[-0.040486294776201,-0.012677064165473,-0.10845060646534],[-0.026170030236244,0.10047720372677,0.05291235819459]],[[0.069818623363972,0.002173668704927,0.04787988960743],[0.061769567430019,0.01215457636863,0.080055586993694],[-0.043736517429352,-0.10327120870352,-0.080602250993252]],[[-0.0096524180844426,0.061319258064032,0.15687285363674],[-0.12324760109186,0.036648757755756,-0.037514235824347],[0.011089213192463,0.028614459559321,-0.14085321128368]],[[0.03604768589139,-0.059657875448465,0.048388086259365],[0.011857588775456,0.12459591776133,-0.03484770283103],[0.026464818045497,0.052610527724028,-0.069887436926365]],[[0.21586042642593,-0.1679921746254,0.25773152709007],[-0.088965557515621,-0.081448592245579,0.14436265826225],[0.018082505092025,0.05012571811676,-0.16049993038177]],[[0.053116016089916,-0.049001827836037,-0.075294733047485],[-0.12103866040707,-0.12780743837357,0.080706693232059],[-0.067191742360592,0.15529699623585,0.099692024290562]],[[0.22923628985882,-0.075844898819923,-0.10193299502134],[0.075866140425205,-0.054563939571381,-0.040075164288282],[-0.10690139234066,-0.16380459070206,-0.064211159944534]],[[0.060916110873222,-0.040476992726326,0.099507734179497],[0.042447246611118,0.039890874177217,0.17844489216805],[0.10694930702448,0.14491434395313,-0.11993373930454]],[[0.092148974537849,0.01261006295681,0.049003645777702],[-0.024733621627092,-0.1267294883728,0.010864993557334],[0.056031614542007,-0.072286807000637,0.056124072521925]],[[-0.053375650197268,-0.017758373171091,-0.100331582129],[0.11136709153652,0.006304292473942,-0.22891485691071],[-0.0092880884185433,-0.01172495726496,-0.048154555261135]],[[0.06222528219223,0.10864505916834,0.014584746211767],[0.12261497229338,0.059589151293039,0.043959673494101],[-0.017762521281838,0.095502503216267,0.19465743005276]],[[-0.052042737603188,-0.18847031891346,0.0010549820726737],[-0.27936336398125,-0.039045408368111,0.013223809190094],[0.01927980966866,-0.01384150609374,-0.060690000653267]],[[0.081337876617908,0.23421891033649,0.075639814138412],[0.12055347859859,0.14872846007347,-0.085008777678013],[-0.0766516700387,0.049171723425388,-0.17719319462776]],[[-0.075108624994755,-0.16705822944641,-0.04737451300025],[-0.047823201864958,0.0742222443223,-0.075114116072655],[0.049785692244768,-0.088952578604221,0.029924463480711]],[[-0.057695161551237,-0.018942391499877,-0.044215586036444],[0.047709934413433,0.1154870018363,0.11685566604137],[-0.011744066141546,0.12666468322277,0.26949393749237]],[[-0.014636304229498,-0.034182868897915,-0.078084841370583],[-0.06772505491972,-0.14032500982285,-0.13998794555664],[-0.063240498304367,-0.013138717971742,-0.1416769772768]],[[-0.13081561028957,0.0093800043687224,0.041663698852062],[-0.14115349948406,-0.033356551080942,0.056877516210079],[-0.051873747259378,-0.012893628329039,0.032601822167635]],[[0.019704332575202,-0.14922538399696,-0.073134452104568],[0.062026381492615,0.1686674952507,0.018478056415915],[-0.0042698113247752,0.053594667464495,-0.022508818656206]],[[-0.033282443881035,-0.098487593233585,0.074515983462334],[0.05764226987958,0.011558178812265,-0.055142749100924],[0.10600761324167,0.040278468281031,0.13984102010727]],[[-0.026537304744124,-0.032250091433525,0.11859758943319],[0.028107572346926,-0.038426656275988,0.018457885831594],[0.086042433977127,-0.11961040645838,-0.016492705792189]],[[0.070443361997604,-0.067927986383438,0.0053034075535834],[-0.05478011071682,-0.020269185304642,-0.079672917723656],[0.16056381165981,0.14338918030262,-0.092969961464405]],[[0.0493826828897,0.11366391927004,0.0045227515511215],[-0.018913483247161,0.059734281152487,0.098215438425541],[-0.098541729152203,-0.039164531975985,0.019763646647334]],[[0.064567148685455,-0.054461520165205,0.0037396557163447],[-0.041097652167082,-0.020134214311838,0.037604749202728],[0.03932711109519,-0.015581241808832,-0.046198703348637]],[[0.017518261447549,0.080294318497181,0.12774531543255],[0.0031141734216362,-0.050990123301744,0.093198463320732],[0.16497325897217,0.054745052009821,0.095289126038551]],[[-0.19671818614006,0.0039759748615324,0.04721873998642],[0.04471579939127,0.13072238862514,0.051737483590841],[-0.060283485800028,-0.0094587942585349,0.02456590719521]],[[-0.14862291514874,0.027917616069317,0.043015450239182],[-0.011020108126104,-0.13285200297832,-0.22187937796116],[-0.015471916645765,-0.004164501093328,0.080482669174671]],[[0.099581450223923,0.01270819734782,-0.18978418409824],[-0.040781307965517,0.14174517989159,-0.0049886666238308],[-0.024510201066732,0.048617299646139,-0.1634819060564]],[[-0.12692475318909,0.073014914989471,-0.1058105006814],[0.024893512949347,0.20055116713047,-0.040826547890902],[0.07091511040926,0.12137477099895,-0.01011429540813]],[[-0.25533896684647,-0.14018136262894,0.079676382243633],[-0.13200636208057,0.075120367109776,-0.079235829412937],[0.037346988916397,-0.077245652675629,-0.10225217789412]],[[0.088679067790508,-0.12799100577831,-0.046091176569462],[0.075988434255123,-0.0014252620749176,0.024677941575646],[-0.069454729557037,-0.0587471537292,0.13902924954891]],[[0.076483674347401,-0.025786967948079,-0.054492045193911],[0.092855021357536,-0.063749372959137,0.017194343730807],[-0.040130890905857,0.024737175554037,-0.16296216845512]],[[0.063356906175613,0.035133395344019,0.080707892775536],[0.063637785613537,-0.013911948539317,0.13394756615162],[-0.070184707641602,-0.024702301248908,0.047008082270622]],[[-0.046389885246754,0.2843961417675,0.013771822676063],[0.048453610390425,0.047518063336611,-0.055456478148699],[0.034564502537251,-0.018904477357864,0.026537025347352]],[[0.068376213312149,-0.0069610457867384,-0.071853518486023],[-0.026159375905991,-0.00067977543221787,0.065695151686668],[-0.15388445556164,-0.03563229739666,0.11264836788177]],[[0.07411228120327,0.11918452382088,0.11426191776991],[0.038998622447252,0.079495243728161,-0.012042382732034],[0.022822350263596,-0.097671918570995,0.11954854428768]],[[-0.11073730885983,-0.03868255391717,-0.092031665146351],[-0.064216949045658,-0.074672065675259,-0.034957956522703],[-0.034133344888687,-0.004259972833097,-0.045849997550249]],[[-0.019406128674746,-0.067257650196552,0.077035084366798],[0.0073562203906476,0.03714232891798,0.057452436536551],[-0.02928027138114,0.093551829457283,-0.1229208484292]],[[-0.28676107525826,0.021643599495292,0.11212733387947],[0.036945976316929,-0.036823637783527,0.09804979711771],[-0.0049416683614254,-0.02019507996738,0.11829282343388]],[[-0.0040681250393391,-0.078699477016926,0.11560528725386],[-0.047672528773546,-0.050463330000639,0.087730951607227],[-0.15673843026161,-0.24242746829987,-0.096102692186832]],[[-0.1414267718792,-0.13202184438705,0.13538472354412],[-0.098591379821301,0.056775625795126,0.10092844069004],[0.00013113113527652,-0.010622153058648,0.012962583452463]],[[0.16502901911736,0.029064230620861,-0.17690277099609],[0.25525930523872,0.12664406001568,0.036406863480806],[0.028155937790871,0.030761305242777,0.060360610485077]],[[0.11842075735331,-0.049863059073687,0.083842873573303],[-0.027512384578586,0.12052027136087,0.120386749506],[0.031371928751469,0.015394929796457,-0.037261877208948]],[[0.013404256664217,0.099867589771748,0.11998983472586],[-0.026577804237604,0.018344309180975,0.053245324641466],[-0.0031746146269143,0.044973876327276,-0.090349711477757]],[[0.10886962711811,-0.17759139835835,-0.030519163236022],[0.050827644765377,-0.044530317187309,0.055718924850225],[-0.16457761824131,0.06498010456562,0.11750865727663]],[[0.14483295381069,0.13491621613503,-0.0019845399074256],[0.097644738852978,0.059541832655668,0.060916490852833],[0.081843197345734,0.10262068361044,0.071714334189892]],[[-0.001417636172846,0.13457931578159,0.030764874070883],[0.16261856257915,0.065231971442699,0.001764586311765],[-0.027808573096991,0.025896914303303,-0.070659659802914]],[[-0.034448724240065,-0.051153372973204,-0.071443289518356],[0.05425401777029,-0.0032191853970289,-0.060685452073812],[-0.036368157714605,-0.064114339649677,-0.049165155738592]],[[0.010239759460092,-0.13702961802483,0.11918675154448],[0.016125325113535,0.063346803188324,0.15027904510498],[-0.15854394435883,0.055310290306807,0.067133784294128]],[[0.17978392541409,0.076557695865631,0.077652238309383],[0.071518965065479,0.055798340588808,0.02427695505321],[0.0050063552334905,-0.13480301201344,-0.087781772017479]],[[-0.041295100003481,0.11180333793163,0.060670875012875],[-0.082422211766243,-0.083409242331982,-0.080563232302666],[-0.027015961706638,0.09618055075407,-0.0068115894682705]],[[0.021557305008173,-0.11313343793154,-0.19251950085163],[-0.14882925152779,-0.10724415630102,-0.16056104004383],[0.0090612014755607,-0.089655995368958,-0.13565704226494]],[[0.0013930768473074,0.021747961640358,-0.011304413899779],[0.098237164318562,-0.0056833322159946,-0.12462560087442],[0.098366156220436,0.041836142539978,-0.032139271497726]],[[-0.13796475529671,0.099322311580181,-0.0028336546383798],[-0.13950541615486,0.0092458613216877,0.081484600901604],[0.0049985088407993,-0.04383983835578,0.0035131261684]],[[0.32045033574104,0.020024197176099,0.12723277509212],[0.052919369190931,-0.023100486025214,0.054468609392643],[0.058460790663958,-0.069296054542065,0.17958973348141]],[[-0.014032476581633,-0.082031190395355,-0.28606781363487],[0.02249925211072,-0.051817875355482,0.019711822271347],[0.17148065567017,0.12444032728672,0.11548488587141]],[[0.13187186419964,-0.032355535775423,0.035161040723324],[0.13333332538605,-0.050982866436243,0.01064826361835],[0.015904607251287,-0.051003571599722,-0.035949431359768]],[[0.16766257584095,0.07593972235918,0.12995563447475],[0.034954644739628,-0.013410301879048,0.0085596814751625],[-0.046734426170588,0.054178651422262,0.091951325535774]],[[0.012332979589701,-0.037635587155819,0.072609469294548],[0.03491036221385,-0.087732695043087,-0.11276540160179],[0.06059891730547,-0.018766378983855,-0.019774695858359]],[[-0.0030749484430999,-0.030067725107074,0.12147038429976],[0.13509018719196,0.1580980271101,0.094435758888721],[-0.10044527053833,-0.033990956842899,-0.089960642158985]],[[-0.020761225372553,-0.1004835665226,-0.18128383159637],[-0.071108348667622,-0.0094066588208079,0.045281626284122],[-0.091892339289188,-0.022852707654238,-0.11064834147692]],[[0.10903024673462,0.062780506908894,0.028555557131767],[0.061614885926247,0.11528211086988,-0.060074556618929],[0.029948489740491,0.07082799077034,0.0066387243568897]],[[-0.17850594222546,-0.19963869452477,-0.20255973935127],[-0.021343536674976,-0.044567637145519,-0.23039770126343],[-0.01371147017926,-0.092990182340145,-0.079403273761272]],[[0.11990915238857,0.050925750285387,-0.011543122120202],[0.14733311533928,0.064589940011501,0.091710649430752],[0.18770232796669,-0.074738368391991,-0.037499438971281]],[[0.10314723849297,-0.064004272222519,0.038594514131546],[-0.048131048679352,0.036361541599035,-0.067718811333179],[-0.087987661361694,0.014855105429888,0.015614349395037]],[[0.03504291549325,-0.17666544020176,0.13848781585693],[-0.051709923893213,-0.0021643592044711,-0.13885714113712],[0.034836009144783,0.13666565716267,-0.052717875689268]],[[0.025826305150986,-0.047203201800585,0.088701888918877],[0.041605107486248,-0.13976469635963,0.039096549153328],[-0.050472911447287,-0.033117458224297,-0.046936612576246]],[[-0.10407716035843,0.0048296684399247,-0.063872404396534],[-0.14516896009445,-0.0078712105751038,-0.017097203060985],[0.041823867708445,0.05242395401001,0.035682514309883]]],[[[0.0039557842537761,0.083197452127934,-0.0019357107812539],[-0.08791646361351,0.24818104505539,0.1340613514185],[-0.032563880085945,0.085519574582577,0.11534199863672]],[[0.056827437132597,0.10531952232122,0.12059642374516],[-0.042797327041626,-0.15805459022522,-0.14564915001392],[0.11161480098963,-0.022807596251369,-0.019840745255351]],[[0.1120942980051,0.046786729246378,0.26774543523788],[-0.030139533802867,-0.064738124608994,-0.037489853799343],[0.077386163175106,-0.027483873069286,0.034780219197273]],[[-0.087943986058235,-0.059098914265633,-0.072410725057125],[-0.033736303448677,0.038185484707355,-0.041074778884649],[0.20897875726223,-0.074343331158161,-0.11914885789156]],[[0.020122174173594,-0.053750284016132,0.093721240758896],[0.060451533645391,0.11242792755365,0.18304190039635],[0.12228969484568,-0.035513136535883,-0.027466414496303]],[[-0.064225293695927,-0.11412565410137,0.013364936225116],[0.0071093821898103,-0.049291867762804,0.034134544432163],[0.062375593930483,-0.049459211528301,0.039590738713741]],[[0.055474109947681,0.12413734197617,0.1501139998436],[-0.022372238337994,-0.12394238263369,0.0020780847407877],[-0.15297494828701,-0.047287706285715,-0.0020650883670896]],[[0.056012887507677,0.050375614315271,0.00015393408830278],[0.0025484713260084,-0.01166514493525,0.0014174513053149],[0.031105725094676,0.055469028651714,0.055771388113499]],[[-0.11375681310892,-0.17350742220879,-0.11812096834183],[0.037855565547943,-0.054611928761005,-0.06694807857275],[-0.10527782142162,0.029785534366965,-0.024756006896496]],[[0.02553934790194,0.020408952608705,-0.0050890976563096],[-0.02756242454052,-0.03058466501534,-0.031789749860764],[-0.081519953906536,0.0028965747915208,0.12750700116158]],[[-0.089490428566933,0.099085606634617,0.01376086473465],[0.068050093948841,-0.076957613229752,-0.14268162846565],[0.058194242417812,0.079412348568439,0.10936941951513]],[[0.022665092721581,-0.05223560705781,-0.24623286724091],[0.11023057252169,0.12484011799097,0.11871293187141],[-0.034361407160759,0.012965266592801,0.24596416950226]],[[0.048014972358942,0.010091058909893,0.056672383099794],[-0.059098199009895,-0.096355557441711,-0.068154506385326],[-0.037639763206244,0.037101745605469,0.025901880115271]],[[-0.085041508078575,-0.09084240347147,-0.051224306225777],[-0.026374388486147,-0.21970249712467,-0.16987401247025],[-0.033387623727322,-0.17390070855618,-0.049831677228212]],[[-0.017889911308885,-0.094829969108105,0.0036217886954546],[-0.017752794548869,-0.085568830370903,-0.13363648951054],[0.16972802579403,0.14414197206497,0.059418644756079]],[[-0.16817127168179,-0.14770555496216,0.0077957818284631],[-0.12880930304527,-0.13088397681713,0.0044008796103299],[0.011460865847766,-0.063781902194023,-0.038822446018457]],[[-0.041924018412828,-0.00057567877229303,-0.18053983151913],[-0.09525740146637,-0.072984874248505,0.1440082937479],[-0.0024103834293783,0.044471368193626,-0.031438820064068]],[[0.025634113699198,0.054097399115562,-0.030745267868042],[0.041014283895493,0.11291546374559,0.13228832185268],[-0.048072461038828,0.051296830177307,-0.038322743028402]],[[0.14376990497112,-0.077064014971256,-0.0085955346003175],[0.023433335125446,0.15078355371952,0.088143430650234],[0.064576290547848,0.058116465806961,0.025076173245907]],[[0.083821915090084,-0.11510954797268,-0.070828467607498],[0.12588362395763,0.1709697842598,-0.0730220079422],[-0.14583477377892,0.05755989253521,-0.11932394653559]],[[-0.0094547849148512,-0.0082822721451521,0.092557519674301],[0.017632568255067,-0.0043351929634809,0.00035303336335346],[-0.052719995379448,-0.077113121747971,-0.059360310435295]],[[0.030540069565177,-0.052340626716614,0.043264802545309],[-0.041989222168922,-0.023989735171199,0.02941520512104],[-0.060937158763409,-0.0027916068211198,0.10229874402285]],[[-0.0020404623355716,0.045605842024088,0.10808686167002],[-0.043695509433746,-0.038208890706301,0.091956131160259],[0.005512255243957,-0.13737381994724,-0.14005881547928]],[[0.012167991138995,-0.071901351213455,-0.076012074947357],[-0.18475487828255,-0.066914387047291,-0.13347905874252],[-0.015503196977079,-0.099485754966736,-0.015721619129181]],[[-0.017663363367319,-0.007305106613785,-0.13799540698528],[0.049771144986153,-0.08259741216898,0.020750112831593],[0.078672513365746,0.0074788257479668,0.13676328957081]],[[0.058441922068596,0.028804147616029,0.065626926720142],[-0.074662618339062,-0.045573461800814,0.018836313858628],[-0.037883721292019,-0.020359912887216,-0.044084619730711]],[[0.035972870886326,0.066174991428852,0.034673228859901],[-0.051782306283712,-0.028439033776522,-0.042921576648951],[-0.011502509005368,0.087378218770027,-0.013550824485719]],[[-0.060303378850222,-0.098396517336369,0.012726892717183],[0.067194558680058,0.047248352319002,0.012687673792243],[-0.018215481191874,0.027243895456195,0.119498886168]],[[0.052457541227341,-0.12070573121309,-0.10867846757174],[-0.15461403131485,-0.16293069720268,-0.092788361012936],[0.010559595189989,-0.2371618449688,0.020590322092175]],[[-0.096987783908844,-0.06212455406785,-0.024890180677176],[-0.0071512646973133,-0.046785280108452,-0.060955230146646],[-0.025777772068977,0.19343531131744,0.00012120913743274]],[[-0.10404641926289,0.010883437469602,0.19163778424263],[-0.17546385526657,0.011699565686285,0.071882523596287],[-0.071253634989262,0.072975426912308,-0.024963414296508]],[[-0.02326768450439,0.0051896814256907,-0.075712479650974],[0.1377891600132,0.12538422644138,-0.048806697130203],[0.0043653668835759,0.16385427117348,0.15516467392445]],[[0.037425618618727,-0.041098151355982,0.122902572155],[0.1124369353056,-0.040037233382463,0.13605387508869],[0.10482431203127,0.10453571379185,-0.057336986064911]],[[0.035189177840948,0.090544424951077,0.21960417926311],[0.035490602254868,0.004368738271296,-0.10962922871113],[-0.03556877374649,0.084262505173683,0.018800185993314]],[[0.038598150014877,-0.22096772491932,0.080256797373295],[0.070538505911827,-0.12262624502182,-0.082230530679226],[-0.11968309432268,-0.20834822952747,-0.10003188997507]],[[0.10879168659449,0.088287398219109,0.073142521083355],[0.06678631901741,0.10457117110491,-0.054046001285315],[-0.048696771264076,-0.067220114171505,-0.055897921323776]],[[0.034892756491899,0.028650818392634,0.048110537230968],[0.11115781962872,0.11419289559126,0.1750628054142],[-0.083061650395393,0.070971645414829,0.20747476816177]],[[0.16854344308376,-0.025106210261583,-0.012941031716764],[0.062481049448252,0.081274084746838,0.11436818540096],[0.17513512074947,-0.09270291775465,-0.064676225185394]],[[0.0029672486707568,0.096517771482468,0.18310315907001],[-0.19672624766827,-0.28544288873672,-0.019874991849065],[0.1307417601347,0.071274384856224,0.037114903330803]],[[-0.055918626487255,0.031290072947741,-0.0062342076562345],[0.11347518116236,-0.0090352008119226,-0.136992380023],[-0.023669585585594,0.022277291864157,-0.079377412796021]],[[-0.021193187683821,0.022873297333717,0.07626735419035],[0.098000094294548,0.066461071372032,0.18766039609909],[0.023426320403814,-0.056214302778244,0.087989822030067]],[[0.055014409124851,0.22888261079788,0.13806386291981],[-0.11034841835499,0.014326666481793,0.11262468993664],[-0.12391632795334,-0.16706065833569,-0.12529125809669]],[[0.076073050498962,-0.039847351610661,0.069329403340816],[-0.14740392565727,-0.22710928320885,-0.21467436850071],[-0.11683049052954,-0.089525811374187,-0.19926844537258]],[[0.085692495107651,0.060672096908092,0.00038751860847697],[-0.0042165317572653,0.048885826021433,0.052241429686546],[-0.022635612636805,0.036450378596783,0.00070075714029372]],[[-0.064854517579079,0.022882513701916,0.067115277051926],[0.21542716026306,0.10217407345772,0.11498455703259],[0.088654935359955,-0.18279251456261,-0.11761125177145]],[[-0.21608605980873,-0.15169836580753,-0.058432918041945],[0.062437225133181,0.061940334737301,0.0012233447050676],[-0.087982527911663,-0.09050364792347,0.08842983096838]],[[-0.12992559373379,-0.12507300078869,-0.10612543672323],[-0.0015594519209117,-0.019231198355556,-0.11482722312212],[-0.012234193272889,-0.12561473250389,-0.031497392803431]],[[0.050634365528822,-0.084199674427509,-0.10148729383945],[-0.1703782081604,-0.010620056651533,0.046755503863096],[-0.00920754019171,-0.057737704366446,0.12551745772362]],[[0.014323519542813,0.058494132012129,0.19909742474556],[-0.0004867157258559,0.015306732617319,-0.05742222815752],[-0.0069065657444298,0.13722455501556,0.042447950690985]],[[-0.022166216745973,-0.0032231295481324,0.011707431636751],[-0.12808761000633,-0.16110216081142,-0.11988282948732],[0.053257461637259,-0.095416828989983,-0.17841716110706]],[[0.014389458112419,-0.09978473931551,-0.16278623044491],[-0.21523442864418,0.025421129539609,-0.025826478376985],[-0.10498646646738,-0.24217446148396,0.044491391628981]],[[0.081868775188923,0.096818529069424,0.082901634275913],[-0.027451058849692,-0.081144884228706,-0.036049466580153],[0.028018180280924,-0.0035107305739075,0.054840199649334]],[[-0.031296387314796,-0.056261666119099,-0.018516723066568],[0.043386995792389,0.11093923449516,-0.0035596257075667],[0.040947653353214,-0.015479776076972,0.063579343259335]],[[-0.1654299646616,-0.045153975486755,0.0040097134187818],[-0.092619672417641,-0.034281171858311,0.037605784833431],[-0.045452065765858,0.16356900334358,0.16549158096313]],[[0.054569937288761,0.0086618633940816,-0.026553539559245],[0.028161650523543,-0.19080157577991,-0.035393226891756],[-0.050340913236141,-0.016400961205363,-0.095042027533054]],[[0.070288330316544,0.010233119130135,0.081843197345734],[0.05576553568244,0.014898217283189,0.063563771545887],[-0.036044523119926,-0.033403646200895,-0.15091796219349]],[[-0.086594454944134,0.027714448049664,0.097697660326958],[0.019912211224437,0.094987444579601,0.18667474389076],[0.08158928155899,-0.15679316222668,-0.1635949909687]],[[-0.012829529121518,0.029039174318314,-0.002621787134558],[-0.013670538552105,-0.10839704424143,0.040024314075708],[-0.13674023747444,-0.025633016601205,-0.051457330584526]],[[-0.038298476487398,0.051311854273081,-0.00055147294187918],[0.050917327404022,0.031055696308613,0.14076685905457],[-0.018850240856409,-0.016532046720386,-0.071376509964466]],[[-0.12567700445652,-0.046937789767981,0.065935872495174],[0.039002150297165,0.1307862251997,0.04865013435483],[0.30239850282669,0.14262801408768,0.16733920574188]],[[0.10186000913382,0.19432680308819,-0.030095977708697],[-0.0037454161792994,-0.054667193442583,0.15584269165993],[-0.09401547908783,-0.3078850209713,-0.10010645538568]],[[0.023707872256637,-0.06565897911787,-0.071703098714352],[0.20116309821606,-0.11270660161972,-0.053597182035446],[-0.13560463488102,-0.17341615259647,-0.095454752445221]],[[-0.027032332494855,0.035822570323944,0.050108011811972],[0.17421086132526,0.044292986392975,-0.0040159705094993],[0.1989943832159,0.12428826093674,0.05887520685792]],[[-0.05503749102354,0.095093913376331,0.045986820012331],[0.0030016298405826,0.10381910204887,0.095199003815651],[-0.099693961441517,-0.11741607636213,-0.17577470839024]],[[0.013017321005464,0.045659635215998,0.044498603790998],[-0.0088849579915404,-0.037733394652605,0.034553650766611],[-0.098589971661568,-0.025752443820238,-0.064655184745789]],[[-0.028163397684693,0.011135849170387,0.043412651866674],[-0.061636790633202,-0.061540432274342,-0.025074224919081],[0.014157276600599,-0.045125838369131,-0.078664742410183]],[[0.020663928240538,-0.083510994911194,0.073206625878811],[-0.13279713690281,-0.19969014823437,-0.068701185286045],[-0.086600385606289,-0.079862356185913,0.033222686499357]],[[0.12404561787844,0.066013045608997,-0.042460680007935],[-0.12835745513439,0.11420004069805,0.0063096024096012],[-0.10214469581842,-0.075865924358368,-0.11781597137451]],[[-0.09446693956852,0.093884967267513,-0.15975442528725],[-0.011421649716794,0.067396737635136,-0.11149526387453],[0.064223080873489,0.18736131489277,0.013016081415117]],[[-0.0012205579550937,0.1078579351306,-0.020522229373455],[-0.0063026766292751,-0.048051483929157,0.030974080786109],[0.034043863415718,-0.028855184093118,0.16550509631634]],[[0.021795244887471,0.11615984886885,0.1354161798954],[-0.075601331889629,-0.047925438731909,-0.1094958037138],[0.038228757679462,0.10777027904987,0.17295591533184]],[[-0.069078907370567,-0.15391823649406,-0.076645083725452],[0.034969817847013,0.12642443180084,0.05331340059638],[-0.13090993463993,0.022453373298049,0.0071436767466366]],[[-0.21013647317886,-0.21153026819229,-0.026388633996248],[-0.32532060146332,-0.1695673763752,-0.05909338593483],[0.099841751158237,0.15022929012775,0.067909307777882]],[[0.016090486198664,-0.054558787494898,0.004637349396944],[0.10587841272354,0.031220158562064,0.017550893127918],[0.0044160834513605,-0.036578103899956,-0.055911272764206]],[[0.057406134903431,-0.30679038167,-0.26257014274597],[0.12811121344566,0.12403273582458,0.062995344400406],[-0.20608557760715,0.14784732460976,0.13226318359375]],[[0.077866338193417,0.06685858219862,-0.10725574195385],[0.023354275152087,0.19504536688328,-0.2594039440155],[-0.10127440840006,0.09711841493845,-0.076857335865498]],[[0.070136941969395,-0.041754756122828,-0.038054898381233],[0.025528145954013,-0.10750855505466,-0.20378768444061],[-0.1063973903656,0.051076721400023,0.092448078095913]],[[-0.03575224429369,0.030489426106215,0.064350232481956],[-0.069558873772621,-0.2222483754158,0.077657632529736],[-0.0079135401174426,0.010887741111219,-0.097256608307362]],[[-0.035470560193062,-0.093435265123844,-0.08075300604105],[0.074957050383091,-0.045490093529224,0.059094574302435],[-0.080339871346951,0.018633875995874,0.25167232751846]],[[0.076957687735558,-0.15976247191429,-0.17057110369205],[0.06281353533268,0.056105189025402,-0.28904736042023],[-0.17899395525455,0.19075778126717,0.095973141491413]],[[0.0016707696486264,-0.047453060746193,-0.099731981754303],[0.049950089305639,-0.066715955734253,0.045952253043652],[-0.23278760910034,-0.1328297406435,-0.13511575758457]],[[0.079982027411461,0.027070973068476,0.14624562859535],[-0.038613598793745,-0.020254716277122,-0.10097718983889],[0.077414028346539,0.13496026396751,0.016669793054461]],[[0.053863015025854,0.18952821195126,0.05886197835207],[0.0018152703996748,0.020903620868921,0.11388815939426],[-0.0095545146614313,-0.00040544208604842,-0.11827191710472]],[[0.13704723119736,-0.010396251454949,0.015139636583626],[0.042960811406374,-0.14278380572796,-0.0059832679107785],[0.08027008920908,-0.20996038615704,-0.15666654706001]],[[-0.081638820469379,0.050971515476704,0.045627269893885],[-0.096597388386726,0.085329644382,0.16170983016491],[0.094501599669456,0.048686981201172,0.035823661834002]],[[-0.0067064762115479,-0.14954130351543,-0.12197094410658],[0.13809357583523,0.055964078754187,0.21039596199989],[0.055708978325129,-0.10251009464264,0.048753820359707]],[[0.021403718739748,0.020953787490726,0.089688889682293],[0.0844981148839,0.05462322384119,0.050805743783712],[-0.18701395392418,-0.12398836761713,-0.095487803220749]],[[0.036907576024532,0.036803096532822,0.21577233076096],[-0.00038129044696689,0.067296847701073,0.23358134925365],[-0.036505028605461,0.11777739971876,0.022480022162199]],[[0.07500834017992,-0.0030568223446608,-0.012506526894867],[0.093243442475796,-0.059798121452332,0.00046985447988845],[-0.029533185064793,-0.12433474510908,-0.023946687579155]],[[-0.046401720494032,0.03276751935482,0.13108190894127],[0.055956661701202,0.13997411727905,0.078022316098213],[0.2636926472187,-0.18478788435459,-0.21027509868145]],[[0.085484832525253,0.10075976699591,0.088196136057377],[0.09286667406559,0.001329567283392,0.13754630088806],[0.078834764659405,0.065342254936695,0.035813134163618]],[[-0.068305216729641,0.030865892767906,0.024307187646627],[0.0029663261957467,-0.10471598058939,0.020168965682387],[-0.086012646555901,-0.062871180474758,-0.1962910592556]],[[-0.001646853168495,0.065837569534779,0.0081715313717723],[0.011156171560287,0.016067070886493,0.19813443720341],[0.016106713563204,-0.038382641971111,-0.13347865641117]],[[0.082454994320869,0.11232347041368,0.13512882590294],[0.10015862435102,-0.04712313786149,0.004683515522629],[-0.13127127289772,-0.14618952572346,-0.0055665578693151]],[[0.048502273857594,0.014542487449944,-0.16212873160839],[0.041710577905178,-0.053152680397034,-0.02808435074985],[0.22402742505074,0.088259331882,-0.039859000593424]],[[0.048006799072027,0.10497815161943,0.004716828931123],[-0.039014976471663,-0.064876012504101,-0.024308476597071],[0.0063601485453546,0.08164269477129,0.14383502304554]],[[0.063778005540371,0.026295593008399,-0.10239634662867],[-0.082539059221745,-0.040364250540733,0.14466233551502],[0.074673131108284,-0.073272727429867,-0.075171656906605]],[[-0.14700429141521,-0.091429904103279,-0.25073647499084],[0.10299382358789,0.014565179124475,0.18551532924175],[0.052175644785166,0.0019591038580984,0.054869409650564]],[[-0.014694676734507,0.017985206097364,0.022485787048936],[-0.049713179469109,-0.0068082655780017,0.033932395279408],[0.13927717506886,-0.090180225670338,0.097865894436836]],[[-0.10039449483156,0.075658038258553,-0.035424444824457],[-0.02859597094357,0.19640071690083,0.24786143004894],[-0.037956811487675,0.046664539724588,0.001354347448796]],[[-0.20059806108475,-0.27258741855621,-0.00084889447316527],[-0.062741577625275,-0.068967498838902,-0.01533131301403],[0.13488012552261,-0.061069633811712,-0.074866563081741]],[[0.083867833018303,0.06789356470108,0.11024069041014],[0.19173035025597,0.13015988469124,0.22841553390026],[0.086203016340733,-0.037363018840551,0.052354142069817]],[[-0.080352053046227,-0.014394598081708,-0.042482111603022],[-0.015377472154796,-0.074657179415226,0.02303878031671],[-0.051489856094122,-0.047100588679314,0.071961969137192]],[[0.072435952723026,-0.018619408831,0.023387281224132],[-0.026595782488585,-0.13097956776619,-0.029744062572718],[0.011981924064457,-0.048561058938503,-0.090640135109425]],[[-0.013745636679232,-0.006858226377517,0.0045818188227713],[-0.022758742794394,-0.078956045210361,0.0056581827811897],[-0.083766438066959,0.10978843271732,0.082597121596336]],[[0.11339782178402,0.034355096518993,0.058128088712692],[-0.13527090847492,-0.099222466349602,0.048239976167679],[0.011183989234269,-0.010199211537838,-0.0064494302496314]],[[-0.059631377458572,-0.090648718178272,0.055525060743093],[0.089256539940834,0.12517422437668,0.062236189842224],[0.041158206760883,-0.01382964476943,0.026674192398787]],[[-0.18089215457439,-0.079756624996662,0.0043935561552644],[-0.13417394459248,-0.076944850385189,0.064046755433083],[0.20352029800415,-0.0053458996117115,-0.037683364003897]],[[0.0073090856894851,0.04717143625021,-0.048023089766502],[0.030386302620173,0.018843948841095,0.083868093788624],[0.30668172240257,0.0063695013523102,0.031173231080174]],[[-0.0053321686573327,0.047987710684538,0.081297881901264],[0.020188264548779,-0.10460215806961,0.0527871735394],[-0.040031440556049,0.083255283534527,0.031769808381796]],[[0.041720874607563,0.08098341524601,0.012235960923135],[-0.052745532244444,-0.016689786687493,0.012090811505914],[-0.079131871461868,0.01516826916486,-0.093926928937435]],[[-0.035274717956781,0.06304969638586,0.081416636705399],[0.010243516415358,-0.031495183706284,-0.060016602277756],[-0.029375646263361,-0.18880586326122,-0.026244901120663]],[[-0.031020035967231,-0.12736074626446,-0.11055170744658],[0.11238099634647,0.1125280931592,0.028208650648594],[0.065357975661755,0.14435938000679,0.00059845700161532]],[[0.017836276441813,0.1599473208189,0.043490029871464],[0.057526107877493,0.12323985993862,0.0048143360763788],[0.020091108977795,-0.020060610026121,-0.15486554801464]],[[0.04564343765378,-0.088107340037823,-0.0026695968117565],[-0.093422055244446,0.052605599164963,-0.1176301240921],[-0.072145037353039,-0.058946862816811,-0.062695309519768]],[[-0.070278413593769,0.072895087301731,-0.027636641636491],[-0.11021175980568,0.016621498391032,0.041138220578432],[0.12778478860855,0.0049517890438437,0.16390939056873]],[[-0.088474951684475,-0.025187315419316,-0.13269540667534],[0.084839463233948,0.0018923728493974,-0.064397260546684],[-0.13369129598141,-0.16400563716888,-0.20395204424858]],[[0.056004676967859,0.096895173192024,0.151665776968],[-0.11777101457119,0.054289545863867,-0.094361081719398],[0.041219744831324,0.16445058584213,0.1767820417881]],[[-0.014262369833887,0.00010011121048592,0.053542405366898],[-0.017711834982038,-0.054233126342297,0.029143262654543],[0.042014118283987,-0.029870495200157,0.082523599267006]],[[-0.031288057565689,-0.020256742835045,-0.065545499324799],[0.12374898046255,0.066617950797081,0.11599696427584],[-0.1261715143919,-0.11504216492176,-0.052888359874487]],[[-0.096421621739864,-0.056092146784067,-0.048529881983995],[-0.06965409219265,-0.010468696244061,0.18446023762226],[0.017443573102355,0.011062833480537,0.037356469780207]],[[0.11099041253328,0.12916795909405,0.07333966344595],[0.034151934087276,0.022366147488356,0.03157939016819],[0.038557518273592,-0.11188507080078,-0.069910660386086]],[[0.034045744687319,-0.1396104991436,-0.06891056895256],[-0.1051679700613,-0.073472999036312,-0.11816532164812],[-0.046310890465975,-0.18366557359695,-0.1919796615839]],[[0.06207275018096,-0.017512828111649,0.14519272744656],[0.063564032316208,0.024222083389759,0.040626771748066],[0.0046746009029448,-0.067856937646866,0.095779664814472]],[[-0.032931685447693,-0.018097752705216,0.11630176752806],[-0.08073566108942,0.0039929710328579,-0.079583339393139],[-0.067317232489586,-0.057707823812962,-0.14457891881466]],[[0.0056499885395169,-0.048062480986118,0.13290153443813],[0.10771357268095,-0.004183903336525,0.054790448397398],[0.0070930072106421,0.16399325430393,0.01723014190793]],[[-0.027677485719323,0.12868255376816,0.18173664808273],[-0.2037732899189,-0.12579737603664,0.088571988046169],[0.1020396053791,-0.015614025294781,0.04724183306098]],[[-0.045436847954988,0.060078099370003,0.0049222195520997],[-0.058423861861229,-0.17213702201843,-0.065474279224873],[0.18937642872334,0.011669629253447,0.13463127613068]]],[[[0.043588891625404,0.035037476569414,-0.058348510414362],[-0.13195756077766,-0.12772983312607,0.020165234804153],[-0.045720849186182,0.087089605629444,-0.39472898840904]],[[0.016195757314563,-0.098719879984856,-0.10439465194941],[-0.045462340116501,0.05760895088315,-0.034876316785812],[-0.031600147485733,0.1299887150526,0.12635654211044]],[[0.15648879110813,-0.11086921393871,-0.23185329139233],[0.11453990638256,-0.16247397661209,-0.030129391700029],[0.27916818857193,0.12894660234451,0.017656143754721]],[[0.1420471072197,-0.2108801305294,0.0048245564103127],[0.05529672652483,-0.084196530282497,-0.071988813579082],[-0.19798663258553,0.078841358423233,-0.013710407540202]],[[0.06981660425663,0.0052817082032561,-0.17236083745956],[-0.090175747871399,-0.066098183393478,-0.046646118164062],[-0.10825608670712,-0.10857683420181,-0.11477989703417]],[[-0.080729216337204,0.03994395211339,-0.066157139837742],[-0.22619906067848,-0.18176534771919,-0.0077663296833634],[0.0046199625357985,0.068284846842289,-0.009640141390264]],[[0.045876991003752,0.10910124331713,0.048837024718523],[-0.023365607485175,-0.11471106112003,0.018956638872623],[-0.025940351188183,-0.028759909793735,0.00020784801745322]],[[0.17766392230988,0.090120732784271,0.063080877065659],[0.055882912129164,0.14333963394165,-0.028780961409211],[0.052489280700684,0.038079172372818,0.17650632560253]],[[-0.03967572748661,0.032716784626245,-0.14471405744553],[0.025895152240992,0.036827899515629,0.0038818912580609],[0.17546226084232,-0.039666093885899,0.041823402047157]],[[0.13335177302361,0.21491473913193,0.21222342550755],[0.26098793745041,0.23391868174076,-0.12097939103842],[0.13019959628582,-0.0023782942444086,0.21891859173775]],[[0.015847513452172,0.019527597352862,-0.15005585551262],[0.19805990159512,0.13835042715073,0.15434643626213],[-0.01071875821799,0.0098416358232498,0.082491487264633]],[[0.098132647573948,0.23692174255848,0.15692341327667],[-0.13165020942688,-0.15559552609921,0.1017407849431],[-0.14126302301884,-0.13532420992851,-0.037530370056629]],[[0.047836385667324,0.0081199211999774,-0.30027940869331],[0.039413671940565,-0.17406013607979,-0.33315819501877],[0.1585568934679,0.016711169853806,-0.29142314195633]],[[-0.22344283759594,0.041169829666615,-0.043039176613092],[-0.20270252227783,-0.0037511650007218,-0.03374245762825],[-0.017794316634536,0.10126475989819,-0.021864576265216]],[[0.020544404163957,-0.049839913845062,-0.006666568107903],[0.41280683875084,0.14641985297203,0.055323362350464],[0.032121773809195,0.21652112901211,0.0075350464321673]],[[-0.032201092690229,0.077269479632378,0.054317906498909],[0.045427437871695,0.042054072022438,-0.022331604734063],[0.028030823916197,0.13196490705013,0.014878841117024]],[[0.07881960272789,0.013480562716722,-0.098595671355724],[-0.010228870436549,-0.015566936694086,-0.12692186236382],[0.056417755782604,0.065970703959465,-0.17682161927223]],[[-0.16700711846352,-0.038060866296291,-0.050470795482397],[-0.10526738315821,-0.18556107580662,0.092819862067699],[-0.12643171846867,-0.12626574933529,-0.044881038367748]],[[0.16436405479908,-0.025602767243981,0.11293902248144],[0.070981398224831,-0.080350428819656,-0.23295557498932],[0.039754554629326,0.14282560348511,0.016337390989065]],[[-0.1688434779644,-0.21139794588089,0.14091241359711],[-0.038366075605154,-0.088259518146515,0.21276666224003],[-0.12732516229153,-0.028735449537635,0.19308826327324]],[[-0.053703308105469,-0.12708379328251,-0.046919614076614],[0.029438074678183,-0.032162986695766,0.1055950075388],[0.25564974546432,0.11269653588533,0.046662732958794]],[[-0.16780766844749,-0.041105836629868,0.14982894062996],[-0.076181970536709,0.091805882751942,0.10140918940306],[0.42616850137711,0.19299380481243,0.053147908300161]],[[0.094387896358967,-0.046442490071058,0.018404265865684],[0.1004412099719,0.1098321378231,0.0860740467906],[-0.03503342717886,0.12233770638704,0.035268414765596]],[[0.097692042589188,-0.18433201313019,-0.026305630803108],[0.041613049805164,0.068000316619873,-0.070996843278408],[-0.27112174034119,-0.028632193803787,0.093667276203632]],[[0.042656566947699,-0.12881737947464,-0.022624120116234],[0.031692933291197,0.03635985404253,0.065093576908112],[-0.23907354474068,-0.11997986584902,0.054109942167997]],[[-0.17566224932671,0.0012236239854246,0.10240037739277],[-0.12495762854815,-0.021091582253575,0.019825560972095],[0.044195782393217,0.22945988178253,-0.077824547886848]],[[-0.02046019397676,0.075903423130512,-0.048925533890724],[0.025960026308894,0.098006390035152,-0.003412714228034],[0.24897679686546,-0.035509217530489,0.16509911417961]],[[-0.074324615299702,0.18143081665039,0.059719607234001],[-0.097914837300777,0.068810299038887,0.12575793266296],[0.16975066065788,0.048977021127939,0.086953796446323]],[[-0.10029646009207,-0.11129447072744,-0.067546173930168],[0.061968196183443,-0.15625706315041,0.062135174870491],[-0.15019918978214,0.027805216610432,0.20237481594086]],[[-0.0066803423687816,0.12793922424316,0.13548532128334],[0.049973413348198,-0.081411965191364,0.028962980955839],[-0.042017798870802,-0.13480585813522,-0.0089136026799679]],[[-0.051951143890619,0.12766250967979,0.028452860191464],[0.0013672881759703,0.14772021770477,0.011584379710257],[0.020133538171649,0.066843710839748,-0.1474891602993]],[[-0.10262884944677,0.056680276989937,0.03212583437562],[0.059172987937927,0.1174314469099,0.08690570294857],[0.056091740727425,-0.01711292937398,-0.11059352755547]],[[-0.072372034192085,-0.038574874401093,-0.18643386662006],[-0.13761864602566,0.073694363236427,-0.050768900662661],[-0.10600639879704,-0.030142644420266,-0.066443800926208]],[[-0.028594151139259,-0.092788457870483,0.044043302536011],[-0.011032523587346,0.063454113900661,0.028312746435404],[0.17384971678257,0.032284565269947,0.17692102491856]],[[0.0037967127282172,0.018187049776316,-0.27609577775002],[-0.051756922155619,-0.095685504376888,-0.056635264307261],[0.017984297126532,-0.1459437161684,-0.12341652065516]],[[0.0089210802689195,-0.14922042191029,-0.044585347175598],[-0.10214658081532,-0.03724367544055,0.011824863031507],[0.18578569591045,0.038754012435675,0.003302039578557]],[[-0.11299526691437,0.21612539887428,-0.087802551686764],[0.0099567547440529,0.075030334293842,0.088730171322823],[0.13411296904087,0.19027644395828,0.11921663582325]],[[0.0057555329985917,-0.052344646304846,-0.17996864020824],[0.046908464282751,-0.021732861176133,0.049516268074512],[-0.10824190825224,-0.017515743151307,0.080697037279606]],[[-0.026710491627455,-0.085491150617599,0.057902399450541],[-0.11746663600206,0.031575035303831,0.059759359806776],[-0.25789007544518,-0.099836565554142,0.14382012188435]],[[-0.02817864716053,-0.084706224501133,-0.022136749699712],[-0.061890807002783,-0.070206433534622,0.13122035562992],[-0.014528174884617,-0.095924824476242,-0.034172724932432]],[[-0.078639090061188,-0.0051641026511788,-0.1453612446785],[-0.10602551698685,0.001511785783805,0.025917276740074],[0.059405162930489,-0.050184693187475,-0.055866152048111]],[[-0.061790507286787,-0.018194349482656,0.13767494261265],[-0.15045121312141,-0.018984766677022,-0.0032274990808219],[0.10375898331404,-0.097938872873783,0.19992479681969]],[[-0.11188950389624,-0.021309001371264,-0.00086030462989584],[0.021200340241194,-0.088670253753662,0.065541930496693],[0.15949347615242,-0.018939185887575,-0.0040913582779467]],[[0.0021648313850164,-0.009868087247014,-0.04398487508297],[0.1108882650733,0.010952495038509,0.0064213066361845],[0.056589368730783,0.056886222213507,-0.054439399391413]],[[-0.10303585231304,-0.12999239563942,-0.37492430210114],[-0.022406315430999,-0.05828345939517,-0.18118976056576],[-0.037805195897818,0.013275507837534,0.11559096723795]],[[-0.13855513930321,0.04374960437417,-0.1822138428688],[-0.028663497418165,0.065006799995899,0.035265807062387],[-0.045076083391905,0.083621509373188,0.0049780542030931]],[[0.016543760895729,0.021755903959274,0.35105293989182],[0.13013184070587,0.084947884082794,0.20202760398388],[0.20985640585423,0.059424616396427,0.1236644461751]],[[0.15622296929359,-0.06318473815918,-0.088385492563248],[0.13605433702469,0.06243384256959,-0.021565554663539],[0.21318556368351,-0.086701855063438,-0.027404954656959]],[[-0.03448349609971,-0.26754304766655,-0.0062190690077841],[0.093532904982567,-0.16737534105778,-0.12787634134293],[0.10061953961849,-0.015529410913587,0.029172625392675]],[[-0.063077673316002,-0.072854459285736,0.019868604838848],[-0.2164289355278,-0.11872462928295,-0.06877475976944],[-0.23558585345745,-0.1657467931509,-0.067955583333969]],[[-0.024358386173844,0.031567599624395,-0.24078342318535],[0.060158349573612,-0.027301682159305,-0.095710180699825],[-0.09758697450161,0.010955516248941,0.05774712562561]],[[0.014246625825763,-0.11568227410316,-0.18414750695229],[-0.10032337158918,-0.10935196280479,0.027681780979037],[-0.15438459813595,-0.080030791461468,0.12542210519314]],[[-0.054122976958752,-0.10695122927427,-0.047751266509295],[0.04717855527997,0.0032376991584897,-0.085094802081585],[0.10635239630938,0.094466358423233,0.03141587600112]],[[0.18131954967976,-0.1975224763155,-0.14099012315273],[-0.0041749225929379,-0.34547436237335,-0.40790820121765],[-0.022605599835515,-0.280452221632,-0.047439195215702]],[[-0.065325833857059,-0.12059565633535,0.011296346783638],[-0.016599653288722,0.008768311701715,0.031185930594802],[-0.021870288997889,0.046811278909445,-0.021349981427193]],[[0.12075103074312,0.036588095128536,0.063920944929123],[0.18791171908379,-0.031347811222076,-0.15382425487041],[0.07285088300705,-0.098102726042271,-0.06025792658329]],[[-0.063583984971046,-0.0079718204215169,-0.20893812179565],[-0.088056907057762,0.069749861955643,0.033537801355124],[0.15741172432899,0.011832754127681,-0.084385462105274]],[[-0.024161165580153,-0.082969598472118,-0.021453803405166],[-0.023611407727003,-0.079425193369389,-0.28619250655174],[-0.048652876168489,-0.11518895626068,-0.26209688186646]],[[0.10646969825029,-0.0084976712241769,-0.10354608297348],[-0.0084299370646477,-0.015357071533799,-0.041942857205868],[-0.20140367746353,-0.0092371655628085,0.12846927344799]],[[0.074145250022411,0.028876669704914,0.23248691856861],[-0.11896280944347,-0.1186374053359,-0.014243270270526],[0.11492466181517,-0.13874305784702,-0.037805452942848]],[[0.0095811747014523,-0.063315071165562,0.057959593832493],[-0.048297859728336,-0.010060797445476,-0.13005644083023],[-0.13264860212803,-0.095664322376251,-0.091719761490822]],[[-0.14038603007793,-0.088783346116543,0.081068031489849],[-0.048522770404816,0.0087402388453484,0.039773065596819],[-0.25715842843056,-0.20416516065598,-0.10544838011265]],[[0.0035195662640035,-0.1403149664402,-0.04621834307909],[0.13449768722057,0.16979412734509,0.1481895595789],[0.11141606420279,-0.065766572952271,0.10528919845819]],[[0.10183320194483,0.079725839197636,0.26371031999588],[0.099831946194172,0.059760212898254,-0.011057362891734],[0.080053254961967,-0.14047741889954,0.0062172599136829]],[[-0.099563173949718,-0.15931259095669,-0.19787666201591],[-0.085802257061005,-0.037532556802034,-0.064492166042328],[0.062416922301054,0.18131263554096,-0.043701913207769]],[[0.095400832593441,0.062993995845318,0.050308588892221],[0.087335459887981,0.022448292002082,0.0035700974985957],[0.28029546141624,0.097456552088261,-0.070628054440022]],[[-0.011196877807379,0.10919667780399,-0.020349601283669],[0.18841287493706,-0.051617220044136,-0.23147508502007],[-0.2083643078804,-0.15644147992134,-0.013453359715641]],[[-0.078684508800507,-0.20101554691792,0.089050658047199],[0.10666222125292,-0.022810976952314,-0.060453038662672],[0.0048096291720867,0.00090855866437778,-0.034501783549786]],[[-0.13938094675541,-0.082567825913429,-0.054961249232292],[0.10980340093374,-0.16521310806274,0.0019889273680747],[0.10175065696239,-0.020534297451377,-0.17636178433895]],[[0.028996758162975,-0.03761649876833,-0.1465550661087],[-0.10755842924118,0.053467094898224,-0.097363978624344],[-0.090359300374985,0.0050632623024285,-0.11777561903]],[[-0.12303820997477,-0.056860513985157,0.057871796190739],[0.11433206498623,0.15575340390205,0.24939899146557],[0.055887423455715,0.10396952182055,0.02146608568728]],[[-0.033377218991518,0.037032634019852,0.1231095418334],[-0.096066534519196,-0.16920520365238,-0.18600270152092],[0.065410502254963,0.010798911564052,-0.12466006726027]],[[0.060445673763752,0.098460309207439,-0.073186561465263],[0.03153694793582,-0.13462659716606,-0.17417079210281],[0.036127720028162,0.025559173896909,-0.15300431847572]],[[0.26522400975227,-0.055603012442589,-0.024772657081485],[0.083601072430611,-0.023116560652852,-0.047178942710161],[-0.05571448430419,0.27369710803032,0.18151789903641]],[[-0.064342014491558,0.24782611429691,0.1823194026947],[-0.14633463323116,0.092353530228138,0.24748151004314],[0.21292105317116,0.016121977940202,-0.21202670037746]],[[0.072344407439232,-0.1279536485672,0.13439731299877],[0.12652924656868,-0.14022946357727,-0.14111737906933],[0.26362136006355,-0.14415234327316,-0.072628192603588]],[[0.10641517490149,-0.0056581553071737,-0.16553929448128],[-0.13572841882706,0.13353794813156,-0.074892155826092],[-0.07057024538517,0.033613346517086,-0.13928729295731]],[[-0.11653420329094,-0.20429654419422,-0.10078590363264],[-0.012634710408747,-0.11026860773563,-0.095641151070595],[0.22825486958027,0.057581648230553,0.06927028298378]],[[-0.012693092226982,-0.071971669793129,0.098977215588093],[-0.097865223884583,-0.014048247598112,-0.017467522993684],[-0.22315387427807,0.0045002875849605,-0.029696384444833]],[[-0.2460113465786,0.071814969182014,-0.007309524808079],[-0.22037515044212,-0.3257874250412,0.093086265027523],[-0.21025924384594,-0.50684505701065,-0.20417019724846]],[[-0.097427144646645,0.16031938791275,-0.1370030194521],[-0.035503603518009,0.10185795277357,-0.010025904513896],[0.056041799485683,0.052999403327703,-0.29916018247604]],[[0.16781543195248,0.091863334178925,-0.041495349258184],[-0.26532474160194,0.062090817838907,0.088131159543991],[-0.17618501186371,0.0037636286579072,0.023238422349095]],[[-0.21247953176498,0.00019870267715305,0.061914898455143],[-0.026539174839854,-0.0052869799546897,0.053571172058582],[-0.050237789750099,-0.041395917534828,0.19284002482891]],[[0.065385617315769,-0.022352781146765,-0.043604254722595],[0.20923162996769,0.081013165414333,-0.02440919354558],[0.23484770953655,0.2586567401886,0.065892741084099]],[[0.045027304440737,-0.047943349927664,-0.0044234953820705],[-0.13040733337402,0.011476693674922,-0.009506200440228],[0.026643380522728,0.088022738695145,0.085888743400574]],[[-0.093121357262135,0.04408922046423,-0.02079164981842],[-0.049345642328262,-0.11405576020479,-0.11019025743008],[0.40572029352188,-0.015214222483337,-0.029260717332363]],[[0.13168975710869,-0.093200370669365,-0.021787207573652],[0.10630942881107,0.050516080111265,0.063275203108788],[-0.11859109997749,-0.043361905962229,-0.080006018280983]],[[-0.12125601619482,0.060425866395235,-0.014897190965712],[-0.11075098067522,0.0026422361843288,-0.0069245812483132],[0.037315171211958,0.055082686245441,0.036406300961971]],[[-0.16119338572025,-0.13103550672531,0.152577906847],[-0.39168283343315,0.020273188129067,-0.069525144994259],[-0.29543033242226,0.063178360462189,-0.00065133412135765]],[[-0.12854380905628,-0.34002354741096,-0.12468780577183],[-0.1468108445406,-0.1866260021925,-0.13869193196297],[-0.039676014333963,-0.14442770183086,0.022211311385036]],[[-0.039467852562666,0.19266334176064,0.13887129724026],[-0.010918406769633,0.042251970618963,0.040123984217644],[-0.029234156012535,0.16034558415413,-0.042629882693291]],[[0.083977669477463,0.096438251435757,-0.067322827875614],[0.049374915659428,-0.036160279065371,0.04025861248374],[-0.021919189020991,0.0721200928092,-0.10393094271421]],[[-0.14747561514378,-0.081186532974243,-0.14413952827454],[0.1936554312706,0.1048289835453,-0.15579174458981],[0.13314029574394,0.058162033557892,-0.32357624173164]],[[0.060678657144308,0.11814294755459,-0.041545048356056],[0.08305562287569,0.027755605056882,-0.030589658766985],[0.016981929540634,0.052111871540546,-0.04013404250145]],[[0.043710548430681,-0.072737902402878,-0.0068950774148107],[-0.024401132017374,0.11142019182444,0.10127996653318],[-0.0046177827753127,0.26340839266777,0.031847268342972]],[[0.11993936449289,0.16598342359066,0.18219318985939],[-0.075587771832943,-0.054457642138004,0.091075256466866],[-0.10093257576227,-0.17874000966549,-0.095991469919682]],[[0.035474635660648,-0.05756102129817,0.056828700006008],[0.057409226894379,-0.0052742208354175,-0.23451685905457],[-0.37425652146339,-0.08088307082653,-0.086338549852371]],[[0.023221056908369,-0.093663558363914,-0.060195799916983],[0.11550676822662,-0.14733889698982,-0.069735482335091],[0.057891815900803,0.18749922513962,-0.094102501869202]],[[-0.11747434735298,0.023607447743416,0.07943968474865],[-0.06423607468605,-0.074932955205441,0.011713157407939],[-0.080158531665802,-0.029130320996046,0.17152960598469]],[[0.10741470754147,0.024985309690237,0.073471926152706],[-0.04770252853632,0.059316728264093,-0.047995399683714],[-0.17768797278404,0.034982059150934,-0.20298245549202]],[[0.086419939994812,0.14938344061375,0.090588919818401],[-0.033759381622076,-0.03191490098834,0.13144460320473],[-0.11339190602303,0.03230369463563,0.00030031488859095]],[[0.074546463787556,-0.032628919929266,-0.032280642539263],[0.2144770026207,0.27263176441193,0.23248580098152],[0.22959439456463,0.32527732849121,0.24862159788609]],[[-0.083637468516827,-0.1241952329874,-0.32556244730949],[-0.014141368679702,-0.23074495792389,0.038384296000004],[-0.08226589858532,-0.16278746724129,-0.0042447443120182]],[[0.077972158789635,0.01008774805814,0.046498894691467],[-0.072165444493294,-0.024524874985218,0.12379758059978],[-0.23890908062458,0.017372416332364,0.0052878092974424]],[[0.095738306641579,-0.071437180042267,0.14348165690899],[0.022712295874953,-0.074031352996826,0.063170783221722],[0.056036803871393,0.25225776433945,0.0060688895173371]],[[-0.17107945680618,-0.085907399654388,0.081364937126637],[0.16852381825447,-0.052326451987028,-0.054288748651743],[0.10757408291101,-0.051683556288481,-0.039663273841143]],[[-0.14369988441467,-0.11603723466396,-0.055834822356701],[-0.11318536102772,-0.057124450802803,-0.020171159878373],[0.084684491157532,0.15476539731026,-0.10998260974884]],[[0.25139692425728,0.06321094930172,0.061916332691908],[0.057680774480104,0.10953789949417,-0.11583762615919],[-0.21342228353024,-0.10923543572426,-0.017702901735902]],[[0.057748608291149,0.17139248549938,0.0070762052200735],[-0.086622677743435,-0.13066744804382,0.053853966295719],[-0.25345787405968,-0.088433235883713,0.19010607898235]],[[-0.1792064756155,-0.04380040243268,0.1394667327404],[-0.070300661027431,0.12488998472691,-0.026184486225247],[-0.11209356784821,0.12875670194626,0.072331078350544]],[[0.079882271587849,0.016926674172282,0.0056707235053182],[-0.058005355298519,-0.047990825027227,-0.045284155756235],[-0.043075866997242,-0.010458169505,0.064083077013493]],[[0.062867537140846,-0.090137168765068,0.024954402819276],[0.032123003154993,-0.02641043253243,0.061900395900011],[0.019483551383018,-0.049438741058111,0.116833768785]],[[-0.072083339095116,-0.018772885203362,0.028695767745376],[-0.049624983221292,-0.006629909388721,0.16164989769459],[-0.16971299052238,-0.18568360805511,0.11796084046364]],[[-0.01396503392607,0.065315820276737,0.072691850364208],[-0.058542910963297,-0.064498893916607,0.040031064301729],[0.16395226120949,0.024647722020745,0.030285716056824]],[[0.11445751786232,-0.27776566147804,0.12236442416906],[-0.070366926491261,-0.19445177912712,-0.020983010530472],[-0.039242513477802,-0.16886593401432,-0.11082553863525]],[[0.21082970499992,0.07584323734045,0.010817644186318],[0.12627971172333,-0.041032813489437,-0.10728348046541],[-0.004655540920794,0.022442359477282,-0.20513580739498]],[[-0.031159024685621,0.037061415612698,-0.038842815905809],[-0.036605671048164,0.025810535997152,-0.047096710652113],[0.1653868407011,0.099603340029716,-0.067180775105953]],[[-0.062708124518394,-0.075484149158001,0.095813006162643],[0.12626379728317,-0.024114061146975,-0.065213389694691],[0.17314600944519,0.077889963984489,0.062301177531481]],[[0.11440588533878,-0.11480294913054,-0.023261142894626],[0.10845889151096,0.082092858850956,-0.082201942801476],[-0.00098375778179616,-0.086100205779076,0.021016450598836]],[[0.003427280113101,0.13958366215229,-0.15440635383129],[-0.063392452895641,-0.04814362898469,0.056912705302238],[-0.0098571591079235,-0.18924871087074,-0.22338962554932]],[[-0.052915144711733,-0.026300119236112,-0.14623028039932],[0.09076502174139,0.097392506897449,0.22360257804394],[-0.045037295669317,0.28149285912514,-0.17353616654873]],[[-0.0015764001291245,0.0066247526556253,0.3429097533226],[-0.0088488142937422,0.054491203278303,0.098631367087364],[0.075454756617546,0.10907576233149,0.14379370212555]],[[-0.068515881896019,-0.034170728176832,-0.076073907315731],[-0.12306745350361,-0.11997278034687,0.045121155679226],[-0.065263085067272,-0.23089878261089,-0.0599060729146]],[[0.10442169010639,0.063002958893776,-0.10437535494566],[0.03265917673707,-0.072378247976303,0.096819661557674],[-0.050930522382259,0.057727515697479,0.056349851191044]],[[0.057933356612921,0.093343704938889,0.052962820976973],[-0.085265584290028,0.014824270270765,0.15445727109909],[-0.11828081309795,0.16590645909309,0.0083514144644141]],[[0.10736611485481,0.015080437995493,-0.059681944549084],[0.16094928979874,0.028672775253654,-0.010455571115017],[0.24601197242737,0.03076421841979,0.18703456223011]],[[-0.043689604848623,-0.066293582320213,-0.291732609272],[0.0098382756114006,0.032521262764931,0.10395944863558],[-0.10071083158255,0.11091996729374,0.15253092348576]],[[0.14915795624256,0.061592001467943,-0.1646429002285],[-0.027215441688895,0.040074799209833,0.21058765053749],[-0.28278169035912,-0.045561600476503,0.11819306761026]]],[[[0.027436008676887,-0.10211788117886,-0.1925203949213],[0.043635111302137,-0.13574303686619,0.10259340703487],[-0.18603293597698,-0.056180208921432,-0.1159383058548]],[[0.13992209732533,-0.018859427422285,-0.13867239654064],[0.13632589578629,0.10904414951801,0.17027814686298],[-0.21505162119865,-0.17478597164154,-0.062274862080812]],[[0.11289124190807,-0.049854304641485,-0.13889068365097],[0.16999134421349,-0.015258587896824,-0.030654579401016],[-0.0027958452701569,-0.04351793602109,0.083805479109287]],[[-0.0046216738410294,-0.19414655864239,-0.046135772019625],[-0.16135862469673,-0.088977992534637,-0.13250702619553],[0.063887558877468,-0.0022536653559655,0.044516123831272]],[[0.10134348273277,0.010807070881128,5.5609096307307e-05],[0.0014241050230339,-0.18180930614471,-0.12021213024855],[0.40711638331413,0.22283455729485,0.35468083620071]],[[-0.14831294119358,-0.001420141896233,0.18558897078037],[0.061294104903936,0.0815469622612,0.013383496552706],[-0.044844064861536,0.033935088664293,0.20021118223667]],[[0.23965962231159,0.023435812443495,-0.18504047393799],[0.2475139349699,0.3877469599247,0.39133030176163],[0.033597942441702,-0.1874668598175,-0.2060457020998]],[[-0.0012289957376197,-0.010985037311912,-0.15038201212883],[0.20271208882332,0.07774268835783,-0.0055228765122592],[-0.060488015413284,0.12182798981667,0.13371668756008]],[[-0.074011757969856,-0.035944428294897,0.075907230377197],[-0.12545968592167,0.028920959681273,0.14335386455059],[-0.11076493561268,-0.14441077411175,-0.096424490213394]],[[-0.0068751620128751,-0.20218290388584,0.022477461025119],[-0.15414655208588,0.05054310336709,0.20078685879707],[-0.12425970286131,-0.079248175024986,-0.0033972985111177]],[[0.11154533922672,0.14193914830685,0.23819667100906],[0.16324926912785,0.042503632605076,0.032745007425547],[0.13653701543808,-0.035349048674107,-0.20569303631783]],[[-0.093733429908752,-0.2474599480629,-0.32791349291801],[-0.041102807968855,-0.12262738496065,-0.13967345654964],[0.12393422424793,-0.010190242901444,0.098419614136219]],[[-0.19953103363514,-0.10854206979275,-0.11036032438278],[0.065005362033844,-0.020268270745873,0.074139036238194],[-0.19029298424721,-0.16404284536839,-0.25938084721565]],[[-0.023644199594855,-0.22861041128635,-0.23730754852295],[-0.12068688869476,-0.10009361058474,-0.22456461191177],[-0.0091205108910799,-0.21463607251644,0.0056460169143975]],[[-0.033257327973843,0.0047816592268646,0.028093434870243],[0.0041289427317679,0.018416931852698,0.032885555177927],[-0.17689713835716,-0.1379671394825,-0.04350596293807]],[[0.19639709591866,-0.021087683737278,-0.035127270966768],[-0.077815763652325,-0.2589019536972,-0.041456561535597],[0.11426161974669,-0.048569239675999,-0.16892956197262]],[[-0.13279712200165,-0.095190428197384,-0.12776727974415],[0.023144841194153,-0.024445690214634,-0.062911041080952],[-0.20550155639648,-0.085106827318668,-0.086007416248322]],[[0.1144265756011,-0.0074466103687882,-0.0012899301946163],[0.097527489066124,-0.062746062874794,-0.19090031087399],[0.12767833471298,0.15831477940083,0.34081882238388]],[[0.19622546434402,0.006264251191169,0.065685532987118],[-0.15926441550255,-0.037777744233608,0.017399562522769],[0.15171499550343,0.11709931492805,0.23358032107353]],[[-0.10090687125921,-0.17485281825066,-0.030340015888214],[-0.078573800623417,0.075703896582127,0.090161316096783],[-0.055082142353058,0.11242697387934,0.091546855866909]],[[-0.18888141214848,-0.059795394539833,0.041337747126818],[-0.088335059583187,-0.13804161548615,0.06332390755415],[-0.097639471292496,0.01526565849781,-0.13124147057533]],[[0.15049231052399,0.14601650834084,0.10778563469648],[-0.079290382564068,-0.14395996928215,-0.067624978721142],[-0.068104662001133,-0.04778940603137,0.0021354595664889]],[[0.011091288179159,-0.034070003777742,-0.03559235855937],[-0.043274167925119,-0.091486983001232,-0.11641728878021],[0.072242081165314,0.39731687307358,0.28346422314644]],[[0.043649822473526,-0.10675422847271,0.0011221236782148],[-0.075293205678463,-0.090741381049156,-0.071858175098896],[0.0071234283968806,-0.024879613891244,-0.11973334103823]],[[0.0055898325517774,0.021486014127731,0.0052145826630294],[0.15128928422928,0.28385883569717,0.12285704165697],[-0.20381747186184,0.011002258397639,0.070859834551811]],[[0.22701290249825,0.034060526639223,0.013218889012933],[-0.079379454255104,-0.0090416688472033,-0.16056658327579],[-0.028488833457232,-0.048657681792974,-0.14202758669853]],[[-0.033096559345722,-0.012341223657131,0.15239441394806],[0.020524974912405,-0.097862660884857,-0.135193541646],[-0.10223548859358,-0.068290874361992,-0.11519314348698]],[[0.20249980688095,0.27196994423866,0.09241496771574],[-0.13364386558533,-0.078134924173355,-0.41743606328964],[0.10883876681328,-0.05174807086587,-0.064178869128227]],[[-0.0024506084155291,0.068876072764397,-0.054927077144384],[-0.18943758308887,-0.12531572580338,-0.1692691296339],[0.035627730190754,-0.061728645116091,-0.1649104654789]],[[0.034552834928036,-0.097971856594086,0.043197341263294],[0.047604653984308,-0.069294862449169,0.02942487411201],[-0.0099421171471477,0.0073268823325634,-0.043016511946917]],[[-0.17043992877007,-0.083900772035122,-0.12659624218941],[0.0510648265481,0.01822093129158,-0.10182951390743],[-0.037324238568544,-0.059069003909826,-0.028648413717747]],[[0.032921928912401,-0.040436189621687,0.22604170441628],[0.056781623512506,0.06548448652029,0.13872128725052],[0.0074949907138944,-0.025822969153523,0.15285076200962]],[[-0.22188599407673,-0.18850861489773,-0.22127535939217],[0.11142814904451,0.12667083740234,0.10500800609589],[0.065592363476753,0.030210526660085,-0.0095706852152944]],[[-0.14646117389202,-0.027467170730233,-0.0089317513629794],[0.095667645335197,0.076560668647289,0.172672316432],[-0.12728370726109,-0.012899972498417,-0.057023949921131]],[[0.13623557984829,0.046445727348328,0.01416808180511],[-0.044594708830118,-0.1602096259594,0.039867803454399],[0.17764328420162,0.027120966464281,-0.097264766693115]],[[0.066837728023529,0.17279480397701,0.14119476079941],[-0.19187588989735,-0.11360167711973,-0.11530383676291],[0.00591363850981,0.2106259316206,0.263238042593]],[[0.011927261948586,0.14332790672779,0.15205377340317],[-0.13521935045719,-0.049839034676552,-0.043251685798168],[0.12358445674181,0.15567611157894,0.22704648971558]],[[-0.10544537752867,0.18112003803253,0.13839018344879],[-0.089963600039482,-0.14591608941555,-0.12320286780596],[-0.12476346641779,-0.21501713991165,-0.037298411130905]],[[0.088621623814106,-0.019379185512662,0.03667600825429],[0.062790997326374,0.082059867680073,0.15736992657185],[-0.048444114625454,-0.011852452531457,-0.13353994488716]],[[0.001646789140068,0.07575885951519,0.14875581860542],[-0.03064988926053,0.021101210266352,0.089619122445583],[0.20469787716866,-0.050692033022642,-0.21214933693409]],[[-0.031579595059156,-0.0285081602633,0.048240814357996],[0.041743662208319,-0.0051382151432335,-0.050831899046898],[0.038399301469326,-0.078757777810097,-0.22356684505939]],[[0.13868543505669,0.053284451365471,0.00038618809776381],[0.20130126178265,0.1024996265769,0.093449905514717],[0.064204044640064,0.070501208305359,0.17911112308502]],[[0.14218392968178,-0.065571941435337,-0.16902710497379],[-0.034678962081671,-0.11901507526636,-0.034926291555166],[-0.088702484965324,-0.0075148930773139,0.025600785389543]],[[-0.2551466524601,-0.11364068090916,0.033734779804945],[-0.27715820074081,-0.11504198610783,-0.030000058934093],[-0.054171174764633,0.0027857651002705,0.0074143190868199]],[[-0.31956002116203,-0.37168446183205,-0.35190510749817],[0.027569387108088,0.08415125310421,0.080374300479889],[0.038290720432997,0.032463774085045,0.062053736299276]],[[0.10759817808867,0.0082515217363834,-0.0061772377230227],[-0.025656031444669,-0.088220372796059,-0.10562889277935],[0.069321751594543,0.075900785624981,0.033379975706339]],[[0.13785360753536,0.067156068980694,0.030346801504493],[-0.19082382321358,-0.13009820878506,-0.13057726621628],[-0.16123919188976,-0.10412717610598,-0.043271914124489]],[[0.05288028344512,0.02592246606946,-4.0964710933622e-05],[0.013561583124101,0.016113234683871,-0.09969137609005],[-0.032577320933342,-0.028721388429403,-0.1346844881773]],[[-0.18930473923683,-0.18551999330521,-0.27789789438248],[-0.012983620166779,-0.087789386510849,0.020004637539387],[0.080501578748226,0.14241544902325,0.10087692737579]],[[-0.13734702765942,-0.21462140977383,-0.093367859721184],[0.016244823113084,-0.11613436788321,-0.12303306162357],[0.06082995980978,0.013388159684837,0.067155092954636]],[[-0.16384543478489,-0.051740344613791,0.093489624559879],[-0.15711857378483,0.0059677083045244,-0.11199207603931],[-0.21821974217892,-0.19506821036339,-0.0340376496315]],[[0.030196715146303,0.073350965976715,-0.1501651853323],[-0.044799316674471,-0.15687088668346,-0.11933746933937],[0.2127294242382,0.13238777220249,0.14850480854511]],[[-0.092988424003124,-0.17267379164696,-0.11307664960623],[-0.22613866627216,-0.23203332722187,-0.11909436434507],[-0.0037374426610768,-0.053709018975496,0.12312759459019]],[[0.021245894953609,0.029124042019248,-0.064374350011349],[0.15823125839233,0.096652828156948,-0.039240721613169],[-0.075796380639076,0.05921334028244,0.0068879770115018]],[[0.14758375287056,0.026282897219062,-0.13746809959412],[-0.028857059776783,0.040432933717966,-0.15330699086189],[-0.053239688277245,-0.039126373827457,0.054864097386599]],[[-0.10241876542568,-0.093741729855537,-0.13879145681858],[0.17009097337723,-0.022033886983991,0.12937453389168],[-0.12017602473497,-0.12182250618935,-0.12748070061207]],[[0.13517074286938,0.15974609553814,0.0027268810663372],[0.10345273464918,0.14640404284,-0.032151374965906],[-0.21061499416828,-0.17944112420082,-0.10912662744522]],[[0.00051275966688991,-0.13203525543213,-0.11727151274681],[-0.096388198435307,-0.29155391454697,-0.18129059672356],[-0.28734689950943,-0.28897330164909,-0.11262262612581]],[[-0.078454002737999,-0.10925228893757,-0.15545937418938],[-0.12382344156504,-0.17351318895817,-0.19254179298878],[0.035918146371841,-0.00046535080764443,-0.10537888854742]],[[-0.14315867424011,-0.11259528249502,-0.13487611711025],[0.056239545345306,0.053125843405724,0.23658080399036],[-0.010583658702672,-0.11036765575409,0.14482007920742]],[[0.021514544263482,0.040987644344568,-0.08218290656805],[0.11274839192629,0.081825286149979,-0.052258186042309],[0.014719552360475,0.011216349899769,-0.12191320955753]],[[0.071905337274075,0.035249095410109,-0.026870593428612],[-0.060778055340052,-0.17130769789219,-0.13015322387218],[-0.063745759427547,-0.16393016278744,-0.015881430357695]],[[-0.084093444049358,-0.07201361656189,0.078528888523579],[-0.051358722150326,-0.052890848368406,-0.056744758039713],[0.061150759458542,0.071775838732719,0.085092023015022]],[[0.10317352414131,0.042277351021767,0.037865374237299],[-0.046766839921474,-0.24018274247646,-0.12340267002583],[-0.074832260608673,-0.13499557971954,-0.13737273216248]],[[-0.062147799879313,-0.0043375426903367,-0.092453435063362],[-0.0091054327785969,-0.025961935520172,-0.090251810848713],[-0.064220227301121,-0.051208920776844,-0.017698111012578]],[[0.09624020755291,-0.13493676483631,0.016939559951425],[-0.011941692791879,0.049285173416138,-0.1555747538805],[-0.018092958256602,-0.01745673827827,-0.0193458404392]],[[0.089106805622578,0.055341348052025,-0.041252907365561],[0.0087918024510145,0.046679351478815,-0.096656300127506],[-0.017032420262694,0.07525771856308,0.11721073836088]],[[-0.17522519826889,0.010945518501103,-0.0047703459858894],[-0.070091597735882,0.018818667158484,-0.088105194270611],[-0.25437200069427,-0.015523091889918,0.12465839087963]],[[0.33815547823906,0.090571165084839,0.051499035209417],[0.034698642790318,-0.021624756976962,-0.1268534809351],[-0.0092358468100429,0.00021690329595003,-0.04219738021493]],[[-0.12216697633266,-0.15908010303974,-0.10663516819477],[0.16448158025742,0.040775518864393,-0.13721011579037],[0.20713877677917,0.16565398871899,0.070592261850834]],[[-0.012079355306923,0.025791427120566,0.13900159299374],[-0.21186868846416,-0.19006004929543,-0.28448760509491],[0.21881146728992,-0.0566466152668,-0.27069672942162]],[[0.05815776064992,0.056315395981073,0.056555215269327],[-0.080422841012478,0.053599249571562,0.07531301677227],[-0.19136781990528,0.030521742999554,0.0023525566793978]],[[0.095577672123909,0.015829510986805,-0.024617565795779],[-0.085870876908302,-0.10169737040997,-0.149015635252],[-0.17945683002472,-0.11524145305157,0.048284918069839]],[[0.0292898863554,0.13254837691784,-0.12494005262852],[-0.13149750232697,-0.042642049491405,-0.10322940349579],[0.0080048553645611,-0.11081954091787,0.015780366957188]],[[0.10960087925196,-0.023814238607883,-0.099379368126392],[-0.043088082224131,0.0046755722723901,0.017387775704265],[-0.060830287635326,-0.062085259705782,-0.12311238050461]],[[0.044615004211664,-0.091991610825062,-0.051998138427734],[-0.25019317865372,-0.15605539083481,-0.15659320354462],[0.2024202644825,0.027411667630076,-0.0052615525200963]],[[0.024338591843843,0.079414077103138,0.031230088323355],[0.14324541389942,0.046770960092545,0.026604695245624],[-0.046897418797016,-0.047637350857258,0.072278030216694]],[[0.027300776913762,0.093100696802139,-0.013758695684373],[-0.067008420825005,-0.046299558132887,0.02357324026525],[-0.12360979616642,0.050656370818615,0.046760246157646]],[[0.057802479714155,-0.077012076973915,-0.27488577365875],[-0.17777383327484,-0.063927091658115,-0.31380394101143],[-0.052189443260431,0.031255733221769,0.059324342757463]],[[-0.20336617529392,-0.26219153404236,-0.15784230828285],[-0.056645456701517,-0.071601696312428,-0.14811514317989],[-0.11791729182005,0.0048013152554631,-0.088793560862541]],[[0.0099505856633186,0.067708015441895,0.14082522690296],[-0.050829660147429,-0.06889270991087,-0.042526077479124],[0.016034193336964,-0.064306296408176,0.074440434575081]],[[-0.14148782193661,-0.015131471678615,0.0067609902471304],[-0.12415561079979,-0.05409412458539,0.02994579076767],[0.070203967392445,0.050559941679239,0.33778840303421]],[[0.14198045432568,-0.046176452189684,-0.055003453046083],[-0.1057848110795,0.17789344489574,0.11120752990246],[0.043404303491116,0.057872030884027,0.057101584970951]],[[-0.10204447060823,-0.0056966729462147,0.12414442002773],[0.01607252843678,0.0052405381575227,0.053544361144304],[0.026021407917142,0.17236991226673,0.2453211247921]],[[0.20749343931675,0.18039037287235,0.12076799571514],[-0.011447448283434,0.0053165131248534,-0.11136650294065],[-0.10662996768951,0.0062363846227527,-0.024274580180645]],[[-0.027194829657674,-0.1768748909235,-0.22248835861683],[-0.047644138336182,0.0072583784349263,0.0032053519971669],[0.064166188240051,0.071957558393478,0.16684862971306]],[[-0.016253544017673,-0.085273027420044,-0.095170542597771],[-0.18814566731453,-0.31021043658257,-0.1553605645895],[-0.15614160895348,-0.11751942336559,0.069234676659107]],[[0.28979247808456,0.1697012335062,0.0093838321045041],[-0.059767283499241,0.093870289623737,0.33912995457649],[-0.23810929059982,-0.08059074729681,-0.021612713113427]],[[0.15760996937752,0.085157051682472,-0.18673224747181],[-0.28848627209663,-0.031251512467861,0.006317020393908],[-0.16480585932732,0.024587854743004,0.20683312416077]],[[-0.047910049557686,-0.022740935906768,0.0078866351395845],[-0.028430515900254,0.011361450888216,-0.032591588795185],[-0.071167401969433,-0.1272399276495,-0.06938960403204]],[[-0.17528028786182,-0.028753101825714,0.00018359793466516],[-0.066763557493687,-0.066711604595184,0.11035579442978],[-0.0042430642060935,-0.002221362432465,0.23740176856518]],[[-0.13340075314045,-0.068345241248608,-0.076721534132957],[0.076398208737373,0.025224747136235,0.090810351073742],[-0.097157321870327,-0.15536962449551,-0.1561703979969]],[[0.041809536516666,0.084578171372414,-0.11815267056227],[0.21780000627041,0.151258289814,0.065672412514687],[0.011046301573515,0.0049140346236527,0.0067419819533825]],[[-0.047183234244585,-0.075794346630573,-0.11526060849428],[0.026042418554425,0.074659392237663,-0.019069226458669],[-0.12095480412245,-0.12402371317148,-0.18778289854527]],[[0.053540457040071,0.037705566734076,0.038085803389549],[-0.041704691946507,-0.052658814936876,0.0088977487757802],[0.20114804804325,-0.014111762866378,-0.088696196675301]],[[0.021451288834214,0.016423938795924,-0.10089958459139],[0.096638098359108,0.0091963559389114,-0.14553532004356],[-0.033172532916069,-0.16538470983505,-0.064422927796841]],[[0.16665828227997,0.18070586025715,0.048313558101654],[0.034407287836075,0.064953349530697,-0.038403652608395],[0.055655583739281,-0.03522315248847,-0.126848295331]],[[0.20868934690952,0.27290657162666,0.12265763431787],[-0.0028968511614949,-0.16222919523716,-0.21991920471191],[-0.12744039297104,-0.030772041529417,0.10097414255142]],[[0.090175740420818,0.12339524179697,0.060768987983465],[-0.053067728877068,-0.038484241813421,-0.013205787166953],[0.082512088119984,0.22024492919445,0.33548712730408]],[[0.21036459505558,0.12631790339947,0.063155986368656],[-0.31207504868507,-0.24528574943542,-0.1982811242342],[0.13008767366409,0.19467884302139,0.30283251404762]],[[0.0063146506436169,0.11439468711615,0.10032266378403],[-0.10246529430151,-0.11012434959412,-0.062571078538895],[0.20075552165508,0.0096825379878283,0.12890185415745]],[[0.038491453975439,0.14854244887829,0.055246856063604],[-0.25166377425194,-0.17263330519199,-0.14499549567699],[0.18729247152805,0.18581713736057,0.42849710583687]],[[-0.10187817364931,0.0071467007510364,0.059808038175106],[-0.068273946642876,-0.11799412220716,-0.088002108037472],[0.013880013488233,-0.080817945301533,-0.051333591341972]],[[-0.10644511133432,-0.10734733194113,-0.044776190072298],[0.17311821877956,0.2249793112278,0.24822065234184],[-0.39671120047569,-0.27015286684036,-0.25988441705704]],[[-0.060663584619761,0.15329790115356,0.18120716512203],[-0.027565663680434,-0.031408533453941,-0.05739114806056],[-0.16393698751926,-0.10589174926281,0.074560038745403]],[[-0.074567936360836,-0.048421584069729,0.032096482813358],[-0.076750352978706,0.10993105173111,0.14770717918873],[-0.18021920323372,-0.039355285465717,-0.028331935405731]],[[-0.016537254676223,0.080613404512405,-0.00019750731007662],[0.15267898142338,0.12297205626965,0.018770476803184],[-0.04993262514472,0.15566532313824,0.17036202549934]],[[0.11272875219584,0.11696396023035,0.11312233656645],[-0.097886435687542,0.011046617291868,0.02361030690372],[-0.03531002625823,-0.05481019243598,0.12990215420723]],[[0.08442085236311,0.07208401709795,-0.033846065402031],[-0.1180098131299,-0.086777649819851,-0.043834690004587],[-0.064012251794338,-0.13778300583363,0.049391839653254]],[[-0.024152001366019,0.041044902056456,0.13623097538948],[0.14506728947163,-0.0047520496882498,-0.09079072624445],[0.12884086370468,-0.20117519795895,-0.083345718681812]],[[-0.13646076619625,-0.22551779448986,-0.12856785953045],[-0.040283437818289,-0.11328192055225,-0.058763988316059],[0.041514549404383,0.031662989407778,0.070158451795578]],[[0.10370713472366,-0.06922373175621,-0.0097593916580081],[0.21916735172272,0.016321154311299,-0.11349435895681],[0.14559470117092,0.13798603415489,0.13647201657295]],[[0.18998084962368,0.022604513913393,0.012311518192291],[-0.027691375464201,-0.071668855845928,-0.029732501134276],[0.05125929787755,-0.017982529476285,0.097383596003056]],[[-0.16629877686501,-0.13526691496372,-0.01695828512311],[-0.0077779181301594,-0.072109751403332,-0.041883934289217],[0.26177123188972,0.026956271380186,0.096887782216072]],[[-0.11649265885353,0.081613585352898,0.034778963774443],[0.031930696219206,0.096176765859127,-0.038171902298927],[0.22809138894081,0.014011526480317,-0.027680300176144]],[[0.21268257498741,0.10722533613443,0.024469399824739],[-0.084852173924446,-0.1415096372366,-0.096021711826324],[0.02792102843523,0.084842033684254,0.22543340921402]],[[-0.080917775630951,0.10823174566031,0.1869488209486],[-0.029337827116251,0.068071767687798,-0.2578290104866],[0.20788487792015,0.083959221839905,-0.072391964495182]],[[0.21492858231068,0.10813245922327,0.32676169276237],[0.044891376048326,0.155925527215,-0.057099100202322],[-0.15329366922379,-0.16715358197689,-0.19141136109829]],[[-0.23739503324032,-0.20043154060841,-0.11098324507475],[-0.1384172141552,0.0039663827046752,-0.025737021118402],[0.20653939247131,0.29697412252426,0.26780161261559]],[[0.017002984881401,0.0065194824710488,-0.030081221833825],[0.031414248049259,0.0052510197274387,0.19757011532784],[-0.018530961126089,-0.12147106230259,0.036827735602856]],[[-0.068055048584938,0.033280041068792,0.093719609081745],[-0.177939042449,-0.074623480439186,0.021028678864241],[0.061379816383123,0.095417268574238,0.11779226362705]],[[0.18164144456387,-0.10493179410696,0.059170719236135],[0.053913455456495,0.25926557183266,0.11508271843195],[-0.11631456017494,-0.0016010041581467,0.034482534974813]],[[-0.20187279582024,-0.14498366415501,0.069954223930836],[0.067409113049507,0.0043704165145755,0.0050322078168392],[-0.035818476229906,-0.13973486423492,-0.0079835280776024]],[[-0.065237961709499,-0.023198839277029,-0.020105551928282],[0.029257711023092,-0.0013532364973798,-0.072543606162071],[0.2489447593689,0.24569970369339,0.20006699860096]],[[-0.0047594136558473,0.05580148473382,0.020434306934476],[0.093426287174225,0.086293146014214,0.10357785224915],[0.11504078656435,0.017908243462443,-0.14993512630463]],[[-0.04671198502183,0.073611378669739,-0.0067104115150869],[0.19635698199272,0.064090251922607,-0.069760262966156],[0.0098206996917725,0.010559216141701,-0.063046842813492]],[[-0.072075702250004,0.022883793339133,-0.0045030219480395],[-0.2383508682251,0.006004249677062,0.0021303510293365],[-0.084856644272804,-0.022891934961081,-0.0082882111892104]],[[0.21521699428558,0.10902490466833,0.061332941055298],[-0.066691771149635,0.02335481159389,-0.086411014199257],[-0.12530842423439,-0.096137344837189,-0.16807869076729]]],[[[0.021819971501827,-0.016453010961413,0.01582289673388],[0.078020438551903,0.018903482705355,-0.012682656757534],[0.037699174135923,-0.012946632690728,-0.081250503659248]],[[0.03331445530057,-0.017255332320929,-0.026105288416147],[0.11171674728394,0.090723007917404,0.0916433557868],[-0.0062582814134657,-0.040380999445915,-0.019124675542116]],[[0.012561706826091,-0.047292329370975,-0.067310705780983],[0.076912261545658,0.033192954957485,-0.04793319106102],[-0.072529338300228,0.057214684784412,0.08047042042017]],[[-0.0083483261987567,-0.018227087333798,-0.041588056832552],[0.08306086063385,-0.1159837692976,0.029435003176332],[0.032660815864801,-0.0044638002291322,0.026139289140701]],[[0.06117082759738,-0.019336942583323,-0.048312734812498],[0.031035665422678,0.029051221907139,0.01355351973325],[0.053834035992622,-0.079269930720329,0.0079517383128405]],[[0.023140968754888,0.032030768692493,-0.018818862736225],[0.035550978034735,-0.049725826829672,-0.10787130892277],[0.067571513354778,0.048315569758415,-0.072855964303017]],[[0.046247996389866,-0.021870944648981,-0.08204673230648],[-0.028629824519157,0.086486682295799,0.042500518262386],[0.12920813262463,0.031226655468345,0.035381570458412]],[[-0.040808148682117,-0.015346447937191,-0.081873297691345],[-0.0356185734272,-0.0035052571911365,0.089202702045441],[-0.037451483309269,0.033551018685102,0.0094444435089827]],[[-0.03964551910758,0.016313308849931,0.01032632868737],[0.016436813399196,-0.049404557794333,-0.066264450550079],[-0.068097539246082,-0.061130866408348,0.089330434799194]],[[-0.030190233141184,-0.025720596313477,-0.032290060073137],[-0.041233789175749,-0.039332658052444,0.036009609699249],[0.07809941470623,0.042146690189838,-0.080704391002655]],[[-0.025983914732933,-0.10575150698423,0.0099432021379471],[0.026866715401411,-0.068005494773388,0.046801403164864],[0.054508920758963,0.020686065778136,-0.037853676825762]],[[0.046291764825583,0.03002417460084,0.10480734705925],[0.0074714124202728,-0.091310046613216,-0.026397163048387],[-0.015747513622046,0.073623344302177,0.084182031452656]],[[0.051829278469086,-0.021070478484035,0.041791640222073],[0.056476175785065,0.039345275610685,0.062220975756645],[-0.078044846653938,-0.063612163066864,0.087079092860222]],[[-0.030813112854958,-0.0097360974177718,-0.049776073545218],[0.0087900357320905,0.0024520352017134,-0.044222496449947],[-0.059730235487223,0.03062279894948,-0.04739660769701]],[[-0.0919498950243,0.00031994862365536,-0.016428975388408],[0.016426730901003,-0.014749576337636,0.0071146977134049],[-0.017964700236917,-0.043019492179155,-0.054097667336464]],[[0.076702192425728,0.014593769796193,0.022012704983354],[0.025726485997438,-0.014696304686368,-0.10464991629124],[0.04054169729352,0.034035425633192,-0.079532727599144]],[[-0.03827403113246,0.063462682068348,0.14442047476768],[0.019441090524197,0.041983425617218,-0.0054938709363341],[0.019890051335096,-0.0069690542295575,-0.082728251814842]],[[-0.049847017973661,-0.056187462061644,-0.044127248227596],[-0.059006337076426,0.018726238980889,-0.012593784369528],[-0.0038130066823214,-0.052193179726601,-0.047097373753786]],[[0.035995073616505,0.048661578446627,-0.003280668752268],[0.032381940633059,0.017041822895408,-0.019006382673979],[0.012472315691411,-0.0074253887869418,-0.084717340767384]],[[0.0072634341195226,0.018359109759331,-0.03538653254509],[-0.080868132412434,-0.039734430611134,-0.051248155534267],[-0.02490390650928,-0.035693973302841,0.030700987204909]],[[0.029727792367339,0.0026617634575814,-0.077645979821682],[-0.0088954344391823,-0.036290906369686,0.032637301832438],[-0.036920357495546,-0.0041482225060463,0.049791321158409]],[[-0.0050649102777243,-0.0173912756145,0.019320150837302],[-0.13197685778141,-0.067183896899223,0.020679382607341],[0.051692970097065,-0.086004145443439,-0.042084831744432]],[[0.053076270967722,-0.0018052480882034,0.03682142496109],[0.087064117193222,-0.020157661288977,-0.017398506402969],[0.034584119915962,-0.017906114459038,-0.032798606902361]],[[-0.0027491534128785,0.020235462114215,-0.016786186024547],[0.052428465336561,-0.029646400362253,0.029999235644937],[0.12207737565041,0.019915975630283,0.019443584606051]],[[-0.0027912608347833,0.067445620894432,0.008206988684833],[0.075279116630554,-0.083610445261002,-0.13163860142231],[0.14571739733219,0.013115507550538,-0.086335681378841]],[[-0.00070229946868494,0.091606363654137,-0.018320810049772],[0.0041108760051429,0.065085805952549,-0.039680309593678],[-0.07654345780611,0.0094365077093244,-0.056288652122021]],[[-0.016862623393536,0.0058114253915846,0.013222347944975],[-0.10458021610975,-0.15487238764763,-0.003908431623131],[-0.047876223921776,0.0069488892331719,-0.079508401453495]],[[0.1559864282608,-0.044242572039366,0.056563466787338],[0.023367021232843,0.0437899120152,0.056712463498116],[0.013666937127709,0.029871586710215,-0.024506511166692]],[[-0.15172550082207,-0.033289402723312,-0.054119072854519],[0.030924024060369,0.037477906793356,-0.072291307151318],[0.051099121570587,-0.024597907438874,-0.050265125930309]],[[0.063349731266499,-0.060564421117306,-0.016375536099076],[0.030311098322272,0.086349651217461,0.03173641115427],[0.05447544157505,-0.012762654572725,-0.048365496098995]],[[-0.053022142499685,0.079558558762074,0.040224455296993],[0.00034532140125521,-0.096880666911602,-0.069987833499908],[0.058650091290474,0.020200159400702,-0.056428298354149]],[[0.057027332484722,0.051959618926048,-0.035163432359695],[-0.051043048501015,-0.065676830708981,-0.055362597107887],[0.0069068572483957,-0.027996120974422,0.074974730610847]],[[-0.017964785918593,-0.014914719387889,-0.037945445626974],[-0.053207695484161,0.06213379278779,0.00060204014880583],[-0.0010550558799878,-0.034775502979755,0.061948344111443]],[[-0.062227215617895,-0.037148684263229,-0.14114367961884],[0.12294282764196,-0.084583051502705,-0.014276823960245],[0.0050001102499664,-0.071069620549679,0.0068974276073277]],[[0.021175891160965,-0.067713864147663,-0.10393841564655],[0.032974254339933,-0.015461597591639,-0.017524460330606],[-0.1154812797904,0.020923810079694,0.021075854077935]],[[0.096651330590248,0.039267119020224,-0.047317892313004],[-0.098780997097492,-0.051209468394518,-0.045819614082575],[-0.020477464422584,-0.09447356313467,-0.022022297605872]],[[-0.018495790660381,0.043892279267311,0.058109752833843],[0.0069644688628614,-0.0036067822948098,0.0045294957235456],[-0.089300692081451,0.015538228675723,0.062152218073606]],[[-0.050783473998308,-0.032212279736996,-0.01156759262085],[-0.022048974409699,-0.012167144566774,0.034504283219576],[-0.012611770071089,0.027745297178626,-0.041299622505903]],[[-0.044969949871302,-0.052262388169765,-0.084411710500717],[0.079863786697388,0.021011235192418,-0.0696861743927],[-0.075374476611614,-0.064053773880005,-0.070383489131927]],[[0.054815080016851,0.035194464027882,0.036815349012613],[-0.057316605001688,0.039608459919691,0.015336546115577],[-0.05191783234477,-0.0032109131570905,0.080515079200268]],[[0.080992318689823,0.01118681114167,-0.065009906888008],[-0.025571875274181,-0.0087281251326203,0.029626095667481],[-0.038210034370422,0.0080679878592491,-0.020010598003864]],[[-0.013901381753385,-0.010334080085158,0.068074882030487],[0.031821262091398,0.082400590181351,-0.010206774808466],[-0.018730839714408,-0.0319001711905,-0.064853847026825]],[[0.029564706608653,-0.025346176698804,-0.0079910596832633],[-0.069219380617142,-0.050333853811026,0.0010774577967823],[-0.031141839921474,0.083509922027588,0.014657849445939]],[[0.044667277485132,-0.050189487636089,0.037546042352915],[-0.0037766320165247,0.012889172881842,-0.0024775562342256],[-0.018761713057756,-0.0083473073318601,0.018867518752813]],[[0.056444451212883,0.095135860145092,0.027409622445703],[0.0095480279996991,-0.023496577516198,0.0050872135907412],[-0.031221680343151,-0.06502341479063,-0.028041630983353]],[[0.07640577852726,-0.0069895838387311,-0.021577313542366],[0.087127842009068,-0.0011177253909409,-0.066171608865261],[0.04107553884387,-0.073249191045761,0.033238656818867]],[[0.024952802807093,0.088445298373699,-0.085511058568954],[0.062102537602186,-0.049310263246298,0.016475882381201],[-0.074735917150974,0.14607813954353,-0.089353568851948]],[[0.03333605825901,0.021490907296538,-0.16196335852146],[0.028480974957347,0.03374857455492,-0.054875247180462],[0.064912617206573,-0.021364159882069,-0.04167053475976]],[[-0.11467216163874,-0.084667079150677,0.021908598020673],[-0.075379364192486,0.0074050133116543,-0.04041787609458],[-0.062166955322027,-0.059122953563929,0.0047063110396266]],[[-0.031900852918625,-0.017143713310361,0.022361919283867],[-0.0086026005446911,-0.052476435899734,-0.018873706459999],[0.028648775070906,-0.020712681114674,0.010865698568523]],[[0.0068674362264574,0.013199045322835,0.1053281724453],[0.06298616528511,0.0088048381730914,-0.061095766723156],[0.088511072099209,0.011123131029308,-0.024196518585086]],[[0.0041972361505032,-0.060019508004189,0.028109237551689],[-0.025550916790962,-0.030412623658776,0.047862641513348],[-0.0062399497255683,0.017084712162614,0.02883667498827]],[[0.0036147180944681,-0.033866599202156,0.028410851955414],[-0.029837053269148,-0.003289274405688,-0.083225354552269],[0.029427293688059,-0.015833331272006,0.0015092890243977]],[[0.012279186397791,0.047739055007696,0.086430408060551],[0.013452325947583,-0.060017567127943,-0.011581192724407],[-0.0022687560413033,0.03986069560051,0.0904486104846]],[[0.051220048218966,0.0020419051870704,-0.074390456080437],[0.053254965692759,-0.036348778754473,0.005852626170963],[-0.016419468447566,0.12788613140583,-0.0093733705580235]],[[-0.057750537991524,-0.0070394626818597,-0.042003944516182],[0.0045312321744859,-8.5819250671193e-05,-0.01849496550858],[-0.021319523453712,0.00056678871624172,-0.046353045850992]],[[0.038191441446543,-0.075798586010933,0.010002067312598],[-0.03202011808753,-0.086962185800076,0.046476136893034],[-0.035737916827202,-0.033100683242083,-0.0066255494020879]],[[-0.064575247466564,-0.096703045070171,-0.04058676213026],[-0.030429068952799,0.065843559801579,-0.093534648418427],[0.026413399726152,-0.056637227535248,-0.059922732412815]],[[-0.065465368330479,-0.1112756729126,-0.030317209661007],[-0.030419588088989,0.071408055722713,-0.02233799919486],[-0.012037854641676,-0.088539928197861,0.016574304550886]],[[-0.0028725862503052,0.030622543767095,0.024502431973815],[0.022616455331445,0.097928680479527,-0.0035044879186898],[-0.084431909024715,0.0027155207935721,-0.038486503064632]],[[-0.046633120626211,-0.022616498172283,0.026269709691405],[-0.029259251430631,-0.064287073910236,0.043886944651604],[-0.061197582632303,-0.013734510168433,0.11072837561369]],[[-0.017725521698594,-0.11535703390837,-0.038616959005594],[0.024707464501262,-0.017701169475913,0.12476982921362],[0.0022476327139884,0.047995209693909,0.024950716644526]],[[-0.029002539813519,0.068660415709019,-0.040182203054428],[-0.081360287964344,-0.0074317455291748,-0.01787305995822],[-0.023563656955957,0.010044423863292,-0.041635259985924]],[[0.01054953224957,-0.044591251760721,-0.072111003100872],[0.052819617092609,-0.029522029682994,-0.019491095095873],[-0.020760314539075,0.069807425141335,-0.034766674041748]],[[-0.033429116010666,-0.06997437775135,0.029020916670561],[0.012317221611738,-0.048977367579937,-0.094282194972038],[-0.03418755531311,0.028503596782684,0.026287609711289]],[[0.03453466668725,0.0090703004971147,-0.018751552328467],[-0.0082011772319674,-0.03692876547575,-0.0017600764986128],[-0.029106557369232,-0.078997701406479,-0.03909208253026]],[[0.031758029013872,-0.046475924551487,-0.023516228422523],[-0.10021221637726,0.013712901622057,0.065821945667267],[0.062963381409645,0.080006957054138,-0.028756627812982]],[[-0.094856150448322,-0.016019225120544,0.089457705616951],[0.030772032216191,-0.030981289222836,-0.034899886697531],[0.042366810142994,-0.034627746790648,-0.018624322488904]],[[-0.048201911151409,-0.014449161477387,0.041265659034252],[0.057815968990326,0.02591260150075,0.018373230472207],[-0.062271054834127,-0.00031228020088747,-0.028157874941826]],[[0.032350905239582,-0.064871609210968,-0.0020870331209153],[-0.0064770807512105,-0.0067717558704317,-0.046076774597168],[0.0080853160470724,-0.040093366056681,0.053569197654724]],[[0.044036023318768,0.030021000653505,-0.13695205748081],[-0.074918240308762,0.029440714046359,-0.029175946488976],[-0.091854274272919,0.068388924002647,0.046338297426701]],[[0.13959577679634,-0.11059198528528,-0.043828763067722],[-0.0084517430514097,0.022875525057316,0.05387881398201],[-0.044000096619129,-0.071398943662643,-0.029923209920526]],[[0.022030355408788,0.041476096957922,0.065318785607815],[0.12852512300014,0.016383659094572,-0.041734118014574],[-0.059538889676332,-0.0050987615250051,-0.029324855655432]],[[-0.021758638322353,0.024368597194552,0.018784198909998],[-0.038961339741945,0.044842965900898,0.083725862205029],[0.033916529268026,-0.0055918591096997,-0.025300372391939]],[[0.068432070314884,0.054411843419075,0.0084064789116383],[-0.064997844398022,0.011945242062211,0.010837037116289],[-0.025667905807495,0.085011571645737,-0.040658604353666]],[[0.10335831344128,0.0064336359500885,0.007575596217066],[-0.0072903661057353,0.0020237830467522,-0.047904923558235],[-0.048181723803282,-0.021831192076206,0.02235172688961]],[[-0.016850849613547,-0.013209607452154,0.010404984466732],[-0.017243037000299,0.0059583112597466,-0.022794922813773],[-0.07278111577034,0.017347661778331,0.036867510527372]],[[0.10581708699465,0.045694027096033,0.013009080663323],[0.034662265330553,-0.086893297731876,-0.039990328252316],[-0.013176186941564,0.026158796623349,0.051382798701525]],[[0.015717048197985,-0.027512205764651,-0.031711813062429],[-0.043314848095179,0.014675857499242,0.009321422316134],[-0.050949200987816,0.05488496273756,0.024953512474895]],[[-0.022525468841195,-0.0060725542716682,-0.02710760384798],[-0.054271701723337,-0.037383902817965,-0.033210501074791],[-0.16278269886971,0.030127581208944,-0.042078897356987]],[[0.039463464170694,0.020940633490682,-0.12516911327839],[0.039651330560446,-0.075447335839272,-0.064457513391972],[0.048424690961838,-0.0095452256500721,-0.0039976523257792]],[[0.097961477935314,-0.024541404098272,-0.0013665646547452],[0.084584757685661,-0.015543370507658,0.033280603587627],[-0.011778635904193,-0.015894090756774,-0.069095738232136]],[[-0.13304910063744,0.011220119893551,-0.065081372857094],[0.016700565814972,-0.05611164867878,-0.047968421131372],[0.035342343151569,0.070371054112911,-0.05365040525794]],[[-0.0080076139420271,0.025284061208367,-0.0036210238467902],[0.067094288766384,0.054587598890066,0.026837538927794],[0.051900397986174,-0.07141488045454,0.062301650643349]],[[0.020903626456857,0.04898776486516,-0.05534427985549],[-0.076678082346916,0.10227639973164,-0.040488343685865],[0.033398043364286,0.15116588771343,0.063754051923752]],[[-0.082007884979248,-0.10240612179041,0.014154721051455],[-0.083432778716087,-0.091467402875423,-0.087768234312534],[-0.06151420250535,0.0073056444525719,-0.046118319034576]],[[0.097801141440868,0.051615506410599,-0.10221313685179],[-0.037213653326035,0.029856082051992,0.028681987896562],[0.08168962597847,-0.084002092480659,-0.039552759379148]],[[-0.053542025387287,0.0241958219558,0.021632365882397],[0.04326468333602,-0.063146986067295,0.018546769395471],[0.010361428372562,-0.042754519730806,-0.095460705459118]],[[0.070931032299995,-0.020882861688733,-0.055036928504705],[0.011492473073304,0.053111024200916,0.10116095840931],[0.0017709946259856,0.10325683653355,-0.033358700573444]],[[0.069888062775135,0.097235396504402,0.072487555444241],[-0.041408807039261,-0.0054638367146254,0.026813142001629],[-0.037079051136971,0.02610488422215,0.015000751242042]],[[0.062614932656288,0.032846957445145,0.043232936412096],[0.063287183642387,-0.087379641830921,-0.061361245810986],[-0.04338001832366,-0.039597406983376,0.017794104292989]],[[0.034596733748913,0.020396200940013,-0.086433485150337],[-0.056885309517384,0.010072520002723,-0.11253403872252],[-0.065120227634907,-0.037190306931734,0.078934386372566]],[[-0.00014951749471948,-0.00022776941477787,-0.021210642531514],[0.030403614044189,0.0061009996570647,-0.019832748919725],[-0.0057288277894258,0.0039103012531996,0.080898523330688]],[[0.09839653223753,-0.090106062591076,-0.11400920897722],[0.0065491120330989,-0.039009783416986,-0.0229845456779],[0.0090405521914363,-0.030346266925335,0.004300766158849]],[[0.058498341590166,0.089376352727413,-0.035554870963097],[-0.018754478543997,0.016608694568276,-0.082104369997978],[-0.091209232807159,0.033165317028761,0.033409211784601]],[[0.11804714053869,0.03276052698493,-0.037392351776361],[-0.035647816956043,-0.021278012543917,-0.028385328128934],[-0.090261198580265,0.008090234361589,0.076701872050762]],[[-0.06231864541769,0.028455168008804,0.055174380540848],[-0.098071582615376,-0.056803844869137,-0.010914858430624],[-0.12606929242611,0.037442494183779,-0.0014191061491147]],[[-0.10090406239033,0.063344433903694,-0.0078959483653307],[-0.024191234260798,-0.12398248910904,0.01565670594573],[0.072911515831947,0.064831115305424,0.038870241492987]],[[0.047315776348114,-0.052658315747976,-0.029574166983366],[0.05826023966074,0.02797313965857,0.017191564664245],[0.05185504257679,0.067223973572254,0.036796454340219]],[[-0.0087933409959078,-0.041691474616528,-0.02081448957324],[-0.063374012708664,-0.0066038467921317,-0.048175048083067],[0.0098131643608212,0.054490260779858,-0.011098843999207]],[[0.0076430197805166,0.17575800418854,0.014960148371756],[0.17530737817287,-0.0026783256325871,-0.062685891985893],[0.077164106070995,-0.023070819675922,0.0091400574892759]],[[-0.0030333970207721,0.066501319408417,0.019680522382259],[0.1123865544796,0.072289109230042,-0.0008567328331992],[-0.031197043135762,-0.01945573091507,0.017444141209126]],[[-0.068777807056904,-0.021493842825294,-0.075780339539051],[0.0047980370000005,-0.04559313878417,-0.08509773761034],[-0.037150718271732,-0.015420502051711,-0.10910184681416]],[[-0.044973067939281,0.030710583552718,0.0098153008148074],[0.043558977544308,0.018421666696668,-0.024957932531834],[-0.029376968741417,0.036982193589211,-0.04500475153327]],[[-0.1109219416976,-0.071934759616852,0.00097725971136242],[-0.068351328372955,0.048384979367256,0.095518499612808],[0.06635694205761,-0.031359288841486,0.017486419528723]],[[0.027273433282971,0.024266473948956,0.021164340898395],[-0.03409182280302,-0.038350753486156,0.057682652026415],[-0.00040095965960063,-0.015872830525041,-0.087733015418053]],[[0.048997554928064,-0.016284240409732,-0.036738935858011],[0.068620815873146,-0.032251004129648,0.03466372936964],[-0.015718078240752,-0.049705069512129,0.14549446105957]],[[0.0054183010943234,-0.031154502183199,-0.029835421591997],[-0.01366666238755,0.026912217959762,-0.081733167171478],[-0.060604050755501,-0.022625589743257,-0.098013266921043]],[[-0.00090956565691158,-0.062002122402191,0.060677878558636],[0.0020247991196811,-0.066666133701801,-0.032083339989185],[0.066668994724751,0.078510336577892,0.035009302198887]],[[-0.0020878240466118,-0.0057977121323347,-0.0018248285632581],[0.062807828187943,0.021434910595417,-0.027526091784239],[-0.10682015866041,0.0036850033793598,0.066483795642853]],[[-0.021402724087238,0.014737899415195,0.040202565491199],[0.048915784806013,0.036933492869139,0.034234561026096],[0.047123335301876,-0.010773791000247,0.007919036783278]],[[0.024970173835754,-0.065305531024933,0.042712721973658],[-0.039738684892654,-0.00098843651358038,-0.03863013163209],[0.037012536078691,-0.018211916089058,-0.021399794146419]],[[0.1336622685194,0.068421751260757,0.0095738116651773],[0.033621542155743,0.0051783500239253,-0.01324129011482],[-0.003030635882169,-0.010177534073591,-0.072460286319256]],[[0.085635349154472,0.032339133322239,0.060687385499477],[0.018985573202372,0.073584102094173,-0.050427719950676],[0.032518975436687,-0.033589072525501,-0.0042208773083985]],[[-0.013574492186308,-0.089816249907017,-0.013105376623571],[0.00016723125008866,0.018926559016109,0.0094008175656199],[-0.0095468536019325,0.040004052221775,-0.0076977666467428]],[[0.024030352011323,0.097239919006824,0.09768558293581],[-0.0096220709383488,-0.070137195289135,-0.0057792575098574],[-0.03598153963685,0.042040914297104,-0.07292428612709]],[[-0.027537299320102,0.018508482724428,0.015462534502149],[-0.036703824996948,0.022216314449906,-0.087487794458866],[0.1040333211422,0.048071786761284,0.016087926924229]],[[-0.073572345077991,-0.010673022828996,0.011518863961101],[-0.020333314314485,-0.045287176966667,-0.033993642777205],[0.046703986823559,0.011149050667882,0.054932255297899]],[[-0.058992374688387,0.050787467509508,-0.032235398888588],[-0.0039747203700244,0.023068817332387,0.025409523397684],[-0.021620081737638,-0.039876259863377,-0.034142721444368]],[[0.030669294297695,0.019581515341997,0.040382750332355],[-0.030450845137239,-0.036548309028149,0.053239725530148],[-0.078664347529411,-0.061543803662062,-0.018156118690968]],[[0.026667762547731,0.057455360889435,0.068899922072887],[0.034315153956413,0.085050776600838,0.059392563998699],[0.061952367424965,-0.020347258076072,-0.04850347712636]],[[0.02755107358098,-0.012277093715966,0.0082584843039513],[0.043059412389994,0.0015645793173462,0.02533365227282],[-0.049337118864059,-0.072492152452469,0.035189229995012]],[[-0.095045857131481,-0.097344979643822,-0.038645900785923],[-0.074617438018322,-0.027574736624956,-0.080097325146198],[0.019089454784989,0.066670477390289,0.057745549827814]],[[0.043282598257065,0.0080620190128684,0.027769781649113],[0.020698234438896,0.032288461923599,0.052565783262253],[0.10644346475601,-0.049339264631271,-0.066229164600372]],[[0.0067181494086981,0.027773169800639,-0.035715326666832],[-0.050742276012897,-0.067110732197762,-0.012993034906685],[0.017313813790679,0.022425472736359,0.00023001155932434]],[[0.051513727754354,0.022087309509516,-0.0035704516340047],[0.029498469084501,-0.012093875557184,0.0269965082407],[0.072922296822071,0.050381977111101,-0.021425584331155]],[[-0.031567689031363,0.038970187306404,-0.056010372936726],[0.026464788243175,-0.026373481377959,0.021782923489809],[-0.066418543457985,-0.02011670358479,-0.0084979915991426]],[[0.032642874866724,-0.00050656805979088,-0.027800653129816],[-0.041340485215187,0.03619547188282,0.03739046305418],[0.0085060931742191,0.083478979766369,0.1208822503686]]],[[[-0.04566302895546,0.14806245267391,0.049675934016705],[0.02902152761817,-0.056914176791906,-0.12140967696905],[0.039360903203487,-0.1367799192667,-0.062421232461929]],[[-0.0017719723982736,-0.084072329103947,-0.012961114756763],[0.096154078841209,-0.033889405429363,0.076167613267899],[0.024796154350042,0.034291956573725,0.1584234982729]],[[0.096585966646671,-0.034888833761215,-0.059249918907881],[0.074264980852604,-0.068674609065056,0.038091141730547],[-0.11864475905895,0.0026726655196398,0.12193375825882]],[[0.016485791653395,-0.12018218636513,0.010333821177483],[0.07176623493433,-0.06187479197979,-0.061857033520937],[-0.01311048772186,0.11757373064756,-0.12074352800846]],[[0.25489592552185,0.015807408839464,-0.00082836067304015],[0.0078153312206268,-0.11209492385387,-0.069108940660954],[-0.018328512087464,0.034988261759281,-0.049846820533276]],[[-0.053463127464056,-0.092200540006161,-0.036206610500813],[0.17906183004379,0.051569547504187,-0.06162391975522],[-0.053621530532837,0.0083952201530337,0.035776074975729]],[[0.046486143022776,-0.041697051376104,0.0080475909635425],[0.0075392322614789,0.081743724644184,0.034973256289959],[0.0027068776544183,-0.049722455441952,0.05725996568799]],[[-0.071915864944458,-0.22199745476246,-0.10210508108139],[-0.025718796998262,-0.073381192982197,0.17705217003822],[-0.01072726584971,-0.01032364461571,0.022420538589358]],[[-0.045694999396801,-0.0061508822254837,0.041427485644817],[-0.022429192438722,-0.079735338687897,0.093006648123264],[-0.078074522316456,0.034817766398191,-0.025340193882585]],[[-0.085479155182838,-0.078231886029243,0.11503548920155],[-0.0226377453655,0.0672936886549,0.013043076731265],[0.060558751225471,-0.0077559021301568,-0.13516107201576]],[[-0.063168026506901,-0.12669494748116,-0.14478991925716],[0.14550495147705,0.05050390586257,0.17820823192596],[-0.025120289996266,0.096599772572517,0.026789298281074]],[[0.03372223302722,0.15829110145569,0.21472296118736],[-0.018332783132792,0.075274422764778,0.16584978997707],[0.05134491622448,-0.10508572310209,-0.10405490547419]],[[-0.01333430968225,-0.022318134084344,0.0046215089969337],[-0.018764773383737,-0.12537249922752,0.023027980700135],[-0.10226479917765,-0.013192724436522,0.14778037369251]],[[-0.022542910650373,0.013760014437139,0.014948070049286],[-0.075446270406246,0.016064118593931,0.058878738433123],[-0.089484415948391,-0.018254946917295,0.071982622146606]],[[-0.13489016890526,-0.03992123901844,-0.046060912311077],[0.045131538063288,0.062468968331814,0.089382253587246],[0.027729783207178,0.034270200878382,0.13738793134689]],[[0.073764942586422,-0.063784070312977,-0.014722456224263],[0.061605274677277,-0.012467809952796,0.054070640355349],[0.089084915816784,0.091279163956642,-0.019674511626363]],[[-0.024703197181225,-0.017735287547112,0.16327822208405],[0.030071001499891,-0.041868701577187,-0.023855734616518],[0.058587655425072,-0.17359903454781,-0.11592834442854]],[[0.012932692654431,-0.026958936825395,0.063490092754364],[-0.046672888100147,-0.054130639880896,0.14938527345657],[-0.0010624716524035,-0.084094278514385,0.15772320330143]],[[-0.021817944943905,0.064266994595528,0.023076323792338],[0.10863237828016,0.013527186587453,-0.068050473928452],[-0.10712533444166,-0.20931258797646,-0.088507242500782]],[[-0.0079682013019919,0.035569082945585,0.094733141362667],[-0.20695486664772,-0.14373999834061,0.10806474089622],[-0.016570281237364,-0.025267427787185,0.064267210662365]],[[0.027735950425267,-0.094280034303665,-0.00780697632581],[-0.17300818860531,-0.19009678065777,-0.097169116139412],[-0.072101905941963,0.026206914335489,0.011146196164191]],[[-0.030262343585491,-0.072046011686325,-0.041571844369173],[-0.13386042416096,-0.0010467482497916,0.054100584238768],[0.034687936306,0.15129812061787,-0.02666893415153]],[[0.017540194094181,-0.028508512303233,-0.073561079800129],[-0.096385307610035,-0.030753096565604,0.0049289492890239],[0.04602412506938,0.11996155232191,0.034178204834461]],[[-0.031814202666283,-0.20249941945076,-0.028704637661576],[0.13723127543926,-0.040723271667957,-0.06882655620575],[0.082027241587639,0.10318910330534,0.0018194697331637]],[[-0.081550471484661,-0.065772578120232,-0.078213036060333],[0.074422836303711,-0.028109293431044,0.011076642200351],[0.0033022821880877,0.12417716532946,-0.053226195275784]],[[-0.010666359215975,0.044829644262791,0.071716837584972],[-0.0018070784863085,-0.057298045605421,-0.054889164865017],[0.04642091691494,-0.078542202711105,-0.16710130870342]],[[-0.067421466112137,-0.075450740754604,0.052814930677414],[-0.0091407867148519,-0.046568389981985,0.13179011642933],[-0.13336354494095,0.010230243206024,0.047640338540077]],[[0.0037657439243048,-0.073084101080894,-0.042110685259104],[0.058152627199888,0.041770979762077,0.1035765632987],[-0.045686203986406,0.028092250227928,-0.015821807086468]],[[0.012146489694715,0.037858597934246,-0.018149241805077],[-0.060666449368,0.084116198122501,0.030462263152003],[0.045745301991701,0.0079172980040312,0.029445404186845]],[[0.061225391924381,0.13130231201649,0.094728529453278],[0.085639886558056,-0.092250160872936,0.016297273337841],[0.085356153547764,-0.028470546007156,-0.050290118902922]],[[0.017008874565363,0.076395392417908,-0.0021184743382037],[0.11234294623137,0.049008540809155,-0.081399403512478],[0.041063871234655,0.052338641136885,0.038010597229004]],[[0.07918693870306,0.089436791837215,-0.052771419286728],[0.010363285429776,-0.084584951400757,-0.024149589240551],[0.048856139183044,-0.053820885717869,0.021776607260108]],[[0.17208854854107,0.017528269439936,0.035865385085344],[-0.072074800729752,0.063155204057693,-0.11442146450281],[-0.021717958152294,0.020443830639124,0.09081257879734]],[[0.0076359524391592,0.023053683340549,-0.0044003631919622],[-0.051461461931467,-0.089908339083195,-0.016188938170671],[0.04111735150218,-0.091225437819958,0.062898986041546]],[[-0.13428278267384,0.0053321607410908,-0.11080950498581],[-0.15088342130184,-0.12220809608698,-0.078198246657848],[-0.11702301353216,-0.13360807299614,0.15959873795509]],[[0.017750760540366,-0.045607198029757,-0.017309797927737],[-0.21895463764668,-0.24032835662365,-0.21258248388767],[-0.22285966575146,-0.17085279524326,-0.15504141151905]],[[-0.1281810849905,0.045007310807705,0.079417414963245],[0.018800761550665,0.21960513293743,0.13317775726318],[0.083394721150398,0.073231421411037,-0.058987226337194]],[[0.0062608420848846,-0.070255026221275,-0.18592390418053],[-0.019488984718919,0.013555913232267,-0.16232070326805],[-0.12266478687525,0.084063746035099,0.097716018557549]],[[-0.10168068856001,-0.035244718194008,-0.12764565646648],[0.13277833163738,-0.035229478031397,-0.026655239984393],[-0.0060748914256692,0.021193573251367,0.048272367566824]],[[0.034209348261356,0.020567031577229,-0.092862986028194],[0.075551576912403,-0.010003817267716,0.09829019755125],[0.00041454020538367,-0.094416655600071,-0.095541104674339]],[[0.10051937401295,-0.055819232016802,-0.020375359803438],[-0.19085682928562,-0.11748803406954,-0.0090143401175737],[-0.040722515434027,0.05523544549942,0.098621621727943]],[[-0.10925400257111,-0.096729777753353,0.036784496158361],[-0.093479573726654,-0.14199331402779,0.0061784218996763],[0.021016685292125,0.031285967677832,0.11314626038074]],[[-0.012819766998291,0.073585540056229,0.041585333645344],[-0.059023480862379,0.011258045211434,0.1231711730361],[0.025787487626076,-0.14563804864883,-0.046168617904186]],[[-0.014116640202701,-0.001822391175665,-0.049772128462791],[-0.081383652985096,-0.060885936021805,-0.070165634155273],[-0.11308528482914,0.012108445167542,0.020636836066842]],[[0.18695737421513,0.2187215834856,0.045537319034338],[-0.095125146210194,0.013308200985193,-0.067126706242561],[-0.09981495141983,-0.11852273344994,-0.14484991133213]],[[0.085551492869854,0.056460347026587,0.09413530677557],[0.016019310802221,-0.00046115371515043,-0.13369634747505],[0.059376064687967,0.089178182184696,-0.16062296926975]],[[-0.13005375862122,-0.15308183431625,0.05289988592267],[-0.062454763799906,0.025895452126861,0.089910790324211],[0.040862657129765,0.11148773878813,-0.11937549710274]],[[0.057384744286537,0.0956015214324,0.091815799474716],[0.11959857493639,-0.016252670437098,-0.073050498962402],[-0.022497622296214,0.0032041422091424,0.038565147668123]],[[-0.10271643847227,-0.14471612870693,-0.017866786569357],[0.082655660808086,0.070305563509464,-0.058377545326948],[0.056615702807903,0.0017298611346632,-0.007606138009578]],[[-0.0057719028554857,-0.047894511371851,-0.0085320249199867],[0.0085516786202788,-0.10973390936852,0.0081602288410068],[-0.0051440605893731,-0.081813715398312,0.026390045881271]],[[0.010353786870837,0.035582255572081,0.033772278577089],[0.13113869726658,0.13792562484741,-0.13620889186859],[0.077537499368191,0.13101333379745,-0.14762422442436]],[[-0.028977330774069,-0.012273201718926,-0.070887930691242],[-0.081529840826988,-0.06518891453743,-0.11238557100296],[-0.023034492507577,-0.092774249613285,0.090684555470943]],[[-0.12436424195766,-0.1696560382843,-0.15109175443649],[-0.086933992803097,0.098856940865517,0.0023654676042497],[-0.071455419063568,-0.078350909054279,-0.12395134568214]],[[0.09325198829174,0.0040668374858797,0.051498144865036],[0.026652911677957,-0.087423466145992,0.15381932258606],[0.11858823150396,0.022048065438867,-0.08251766115427]],[[-0.10592088103294,-0.030049355700612,-0.019707879051566],[-0.16781023144722,0.036248326301575,0.030715055763721],[-0.00072268449002877,0.22368167340755,-0.036798398941755]],[[-0.18116843700409,-0.14687699079514,-0.12234592437744],[-0.12559361755848,-0.01914793625474,-0.14713773131371],[0.076971404254436,-0.019784616306424,0.025190550833941]],[[0.060771457850933,-0.083450801670551,-0.17405761778355],[-0.071007318794727,-0.12354180961847,-0.15192571282387],[-0.15172553062439,-0.0703115016222,0.10779246687889]],[[-0.010566940531135,-0.0035011565778404,-0.034694705158472],[0.04110087454319,-0.023372195661068,-0.10035369545221],[-0.091585397720337,-0.22318038344383,-0.097972325980663]],[[-0.0072391284629703,-0.031412120908499,0.050432808697224],[-0.002084206789732,-0.071818776428699,-0.13666914403439],[-0.012968381866813,-0.022348074242473,-0.02817471139133]],[[0.068763978779316,0.035442024469376,0.13935314118862],[-0.022332392632961,-0.074861571192741,-0.051225669682026],[-0.12868495285511,-0.005327389575541,0.067441575229168]],[[-0.060394458472729,-0.13342486321926,0.010991348885],[-0.03039631433785,-0.13307954370975,-0.11866231262684],[0.0045336498878896,0.012201712466776,-0.17106038331985]],[[-0.029362913221121,-0.025752726942301,0.0019656051881611],[-0.20582535862923,0.05966854467988,0.064899481832981],[0.059471718966961,-0.077738240361214,-0.046768352389336]],[[0.081479325890541,-0.052806559950113,-0.16236931085587],[0.088894262909889,0.05356215685606,0.04235727339983],[-0.16230940818787,-0.10116624832153,-0.17652899026871]],[[0.025860356166959,-0.082129083573818,0.056632705032825],[0.20883192121983,-0.068940706551075,0.04313838109374],[0.052945744246244,0.026864664629102,-0.015710975974798]],[[-0.17498713731766,-0.051444187760353,-0.096455067396164],[-0.12295784056187,-0.081978864967823,-0.20716780424118],[-0.047956362366676,0.058199465274811,0.018213029950857]],[[-0.06286907941103,0.043046124279499,-0.11280093342066],[0.029133403673768,-0.07430661469698,-0.11063101887703],[0.0053619197569788,-0.11476597189903,-0.0060692117549479]],[[-0.13218605518341,-0.012044216506183,-0.035910245031118],[-0.036077231168747,0.10068748146296,-0.028454292565584],[0.16239647567272,-0.00082326924894005,-0.098842479288578]],[[-0.21540802717209,-0.033795710653067,0.096146680414677],[-0.023849675431848,-0.15676988661289,-0.010547877289355],[0.063471578061581,0.02775825932622,-0.089246176183224]],[[-0.1800874620676,-0.067405968904495,0.10270371288061],[0.023678621277213,-0.1382310539484,0.026752311736345],[-0.1067950874567,-0.19579449295998,0.03477218747139]],[[0.012676687911153,-0.018481956794858,-0.0098907938227057],[0.059232089668512,-0.035992532968521,0.089228823781013],[-0.039009355008602,-0.20733085274696,-0.25414234399796]],[[-0.12398254871368,-0.075512170791626,-0.18400582671165],[-0.036488313227892,-0.10555265843868,0.17937012016773],[-0.055777776986361,0.031545929610729,-0.019826624542475]],[[-0.0010818596929312,-0.011722307652235,0.05454284325242],[-0.075195461511612,-0.028081316500902,0.069798827171326],[-0.065718211233616,-0.032891314476728,-0.045600563287735]],[[0.0047253449447453,0.15725150704384,0.042158599942923],[0.13481870293617,-0.11876083165407,-0.16675338149071],[-0.013553555123508,-0.18503394722939,0.012806762941182]],[[-0.06635769456625,-0.10118409991264,-0.011485023424029],[-0.10804102569818,0.014197751879692,0.033787693828344],[-0.10118425637484,-0.091421194374561,-0.053621180355549]],[[0.043660182505846,0.18954902887344,0.12439681589603],[-0.20103059709072,0.00084022316150367,0.13319720327854],[-0.11533421278,-0.18898248672485,-0.071650117635727]],[[-0.11037065833807,0.021551739424467,0.12262415140867],[-0.13914130628109,-0.13552729785442,0.17519335448742],[-0.076343663036823,-0.15672606229782,0.060632396489382]],[[-0.003875877475366,-0.038007877767086,-0.20492254197598],[-0.032384689897299,0.19835540652275,0.016885237768292],[-0.010498340241611,-0.018282528966665,0.0011791738215834]],[[0.029938317835331,0.0023723342455924,0.081722214818001],[-0.15130576491356,-0.061920396983624,-0.025416072458029],[-0.20321461558342,-0.10059309005737,-0.032602835446596]],[[-0.043475788086653,0.020461024716496,0.1163095086813],[0.1001094058156,0.14968031644821,0.074911661446095],[-0.056664377450943,-0.018664272502065,0.020484177395701]],[[-0.033328127115965,0.1259340941906,0.066637106239796],[-0.17916770279408,-0.090863861143589,0.11807961016893],[-0.066070780158043,-0.27310132980347,-0.013495627790689]],[[0.026095459237695,0.022460892796516,0.025397496297956],[-0.023388845846057,-0.023727063089609,-0.041188854724169],[-0.1177906692028,0.11797101795673,0.050604768097401]],[[0.049952123314142,0.047313477844,-0.050560597330332],[0.02554558031261,0.14482428133488,0.082164950668812],[-0.16995599865913,0.023206917569041,0.15155667066574]],[[-0.13786797225475,-0.080081678926945,0.029232693836093],[-0.086441516876221,-0.069334656000137,-0.028169659897685],[0.030858963727951,0.052096139639616,0.04638908430934]],[[-0.022193761542439,-0.023216012865305,-0.017724899575114],[0.038150582462549,-0.03613668680191,-0.0095570357516408],[-0.13331459462643,-0.032571233808994,-0.060973409563303]],[[-0.01042852550745,-0.09302544593811,-0.014314795844257],[-0.0040008495561779,0.19254486262798,-0.044117167592049],[0.041959036141634,0.047808792442083,-0.14823819696903]],[[-0.065689012408257,0.17832919955254,0.07707442343235],[-0.2028643488884,-0.098586447536945,-0.080594971776009],[-0.13569974899292,-0.074283055961132,-0.099950917065144]],[[-0.024677075445652,-0.13723109662533,-0.058407101780176],[0.054200429469347,-0.0053627206943929,0.063572205603123],[0.13103197515011,0.044416461139917,0.07053791731596]],[[-0.07079191505909,0.11208228766918,-0.05376809835434],[-0.0096109202131629,-0.012306830845773,-0.024095017462969],[0.020866500213742,0.1219209805131,0.006280361674726]],[[-0.096146620810032,0.042170893400908,0.098204180598259],[0.040729872882366,0.13990046083927,0.056878965348005],[0.012607782147825,-0.0011755989398807,-0.0034092545975]],[[0.12789569795132,-0.019720453768969,-0.078044675290585],[-0.012570502236485,-0.1524323374033,-0.029000664129853],[-0.099568925797939,-0.10679902136326,0.055951364338398]],[[0.069813758134842,-0.10780171304941,-0.13960605859756],[0.036186341196299,-0.075517691671848,-0.042577013373375],[0.033795904368162,0.14439935982227,0.099196024239063]],[[0.036681715399027,0.047779876738787,0.010945666581392],[-0.12460286170244,-0.038390606641769,-0.041957322508097],[0.0065575870685279,-0.15278987586498,-0.072517327964306]],[[0.010183123871684,-0.055288672447205,-0.055168341845274],[0.13272488117218,-0.057469192892313,0.0093563115224242],[-0.0065428861416876,0.026596713811159,-0.054124433547258]],[[0.071344539523125,-0.10158316046,-0.031700741499662],[-0.05807413905859,-0.14557808637619,-0.13699774444103],[-0.082125432789326,-0.14322349429131,-0.043219491839409]],[[-0.023183058947325,-0.079215869307518,0.04301030933857],[-0.26674368977547,-0.086329728364944,0.088228784501553],[-0.22000882029533,0.11785779893398,0.039994277060032]],[[0.03394478186965,0.090825967490673,-0.10044250637293],[-0.097834721207619,0.023399012163281,0.12769745290279],[0.019564805552363,0.097376309335232,0.025433942675591]],[[0.028380157426,-0.19060246646404,-0.088352717459202],[0.068304404616356,-0.012318882159889,-0.024347804486752],[-0.028345042839646,0.045773092657328,0.10616192221642]],[[0.0018304603872821,-0.040504857897758,0.17033977806568],[0.05487160384655,0.05593428760767,0.0045432345941663],[0.11953795701265,0.073150008916855,0.087178252637386]],[[0.10870815068483,0.0602126121521,0.030706990510225],[-0.00190274650231,0.048382539302111,-0.062531158328056],[0.059191737323999,-0.0030001329723746,-0.091642305254936]],[[0.051424603909254,0.077004916965961,0.0045223869383335],[0.10772179812193,-0.021495133638382,-0.038201805204153],[0.049558408558369,-0.056972853839397,-0.024291781708598]],[[0.12178804725409,0.06670705229044,-0.070121899247169],[0.061815563589334,0.026246845722198,-0.14331313967705],[0.057483620941639,-0.039445716887712,-0.17489950358868]],[[-0.023293238133192,-0.02151345834136,0.012112298980355],[0.00296770199202,-0.10151821374893,-0.07480776309967],[-0.07366544008255,-0.11308174580336,-0.051441162824631]],[[-0.085129141807556,0.038870017975569,-0.036418300122023],[-0.053371086716652,0.060158438980579,-0.04310554638505],[-0.099871747195721,-0.04777392745018,0.066067203879356]],[[-0.015958281233907,0.024047907441854,-0.054572187364101],[0.085795141756535,0.12293954193592,-0.066569678485394],[0.035679709166288,-0.029451737180352,-0.13779392838478]],[[-0.033641148358583,-0.01764951646328,0.1498182117939],[-0.078765973448753,-0.092139862477779,0.039933312684298],[0.081223055720329,0.0056753004901111,-0.20103779435158]],[[-0.092666320502758,-0.1233673542738,-0.079378463327885],[0.024940557777882,0.066794626414776,-0.11807598173618],[-0.03384055569768,0.084966585040092,0.15370082855225]],[[-0.022559698671103,-0.0048168082721531,0.13615950942039],[-0.12060783803463,-0.20228800177574,0.10509485006332],[-0.057706031948328,-0.083826676011086,0.09621798992157]],[[-0.048225983977318,0.019516933709383,0.015812918543816],[-0.014440517872572,-0.13631255924702,0.035932339727879],[-0.04799821600318,0.046852964907885,0.072963818907738]],[[0.16682015359402,-0.17463883757591,-0.057963326573372],[0.04377444088459,-0.15289705991745,-0.05173896253109],[0.16425865888596,0.17948386073112,0.11717290431261]],[[0.030940784141421,-0.0582365244627,-0.12654086947441],[0.043336473405361,-0.057425566017628,-0.090477257966995],[0.034844994544983,-0.021127890795469,-0.031125551089644]],[[-0.078647650778294,0.12466531246901,-0.0024339114315808],[0.00084061553934589,0.19788397848606,0.036836117506027],[-0.027289876714349,0.0295365806669,-0.031439188867807]],[[-0.055523224174976,-0.022681627422571,0.0087706167250872],[-0.037447527050972,0.09295504540205,0.04186199977994],[-0.10283310711384,-0.015862518921494,-0.068567045032978]],[[0.04489754140377,-0.0014442425454035,-0.0054015871137381],[-0.018039798364043,0.05226967856288,0.0074443956837058],[-0.28168711066246,-0.037068236619234,0.011705624870956]],[[-0.060919508337975,-0.0059798490256071,-0.055254064500332],[-0.0018510869704187,0.044768981635571,-0.022096887230873],[-0.017348596826196,-0.087317079305649,0.0025460615288466]],[[-0.0017054725904018,-0.081171192228794,0.097479723393917],[0.070866107940674,0.028516285121441,0.093849681317806],[-0.0049801031127572,0.0063738934695721,0.041363850235939]],[[0.0061648949049413,0.1035955324769,0.036386393010616],[0.0028122579678893,0.096257388591766,0.031837366521358],[-0.095314264297485,-0.044509880244732,-0.16413040459156]],[[-0.10660068690777,0.074329130351543,0.0051215011626482],[0.028343701735139,0.032193198800087,0.014548007398844],[0.11875296384096,0.069693110883236,0.061769921332598]],[[-0.086926735937595,-0.021453404799104,-0.048693850636482],[-0.013040117919445,0.031786665320396,0.036868315190077],[0.054494433104992,-0.10236453264952,-0.12195564061403]],[[0.043942335993052,0.0043669086880982,-0.090757884085178],[0.032209783792496,-0.073359079658985,0.0087727447971702],[0.0094730313867331,0.0019201665418223,-0.028915734961629]],[[0.033982183784246,0.089965581893921,0.042935654520988],[0.023370616137981,-0.10907717049122,-0.0036802391987294],[-0.0014748354442418,0.002051385352388,-0.062773264944553]],[[-0.017704889178276,0.074955612421036,0.12221765518188],[0.066766075789928,0.074645288288593,-0.099829658865929],[0.010792499408126,-0.1207355260849,-0.1138434112072]],[[-0.091294422745705,0.0047718235291541,0.052170131355524],[-0.19206120073795,-0.0059200180694461,0.057962022721767],[-0.22241659462452,0.069082155823708,-0.002946971450001]],[[-0.0046250121667981,0.008518167771399,-0.040882356464863],[0.070678845047951,0.013159468770027,0.03603133186698],[0.045792136341333,0.02662886492908,0.045373871922493]],[[-0.077943123877048,-0.0098822377622128,-0.044204901903868],[-0.027565695345402,-0.013383285142481,-0.064683258533478],[0.11627867817879,-0.043294496834278,-0.020615845918655]],[[0.082096919417381,0.096920512616634,-0.060915119946003],[0.31099426746368,-0.082849018275738,-0.027227072045207],[-0.052976384758949,-0.086676403880119,0.030499240383506]],[[0.086162067949772,0.071229666471481,0.043300177901983],[-0.044030994176865,0.075784407556057,0.046796943992376],[-0.12912139296532,-0.043415330350399,0.064620561897755]],[[-0.059289801865816,0.032897673547268,-0.013683001510799],[0.061568222939968,-0.11617267131805,-0.087536416947842],[0.20900318026543,0.052201334387064,-0.0029750394169241]],[[0.11932338029146,-0.069562792778015,-0.18026785552502],[-0.010383412241936,0.19525118172169,-0.0032749040983617],[-0.05609642341733,0.08524040132761,-0.02724801748991]]],[[[5.8073059335584e-05,0.056313205510378,0.053887043148279],[0.065477214753628,-0.15677037835121,0.004325469955802],[0.11360593140125,0.051324993371964,-0.14054274559021]],[[0.044720370322466,-0.052952341735363,0.13010700047016],[0.18730385601521,0.10780999064445,0.055698681622744],[0.088399119675159,0.085989564657211,-0.006912115495652]],[[-0.079781040549278,-0.099457532167435,0.015820752829313],[-0.020261077210307,-0.075345203280449,-0.010972257703543],[-0.010046605020761,0.14041824638844,-0.063829235732555]],[[-0.0055224089883268,-0.046529125422239,-0.013639520853758],[-0.097863212227821,-0.044613067060709,-0.057567108422518],[-0.14947021007538,-0.019187660887837,-0.10840435326099]],[[-0.1556356549263,-0.028025759384036,-0.04995321854949],[-0.042338795959949,0.065652437508106,0.1538999080658],[0.11982329934835,-0.064560331404209,0.0046124993823469]],[[-0.17334781587124,-0.024683235213161,-0.034268535673618],[-0.070536144077778,-0.12367866188288,0.018383201211691],[-0.056091878563166,0.0028084085788578,0.12945626676083]],[[-0.039464630186558,0.092542335391045,-0.0062949783168733],[-0.063482105731964,-0.19974897801876,-0.021213412284851],[-0.091908894479275,0.028401721268892,0.073292374610901]],[[0.032338798046112,-0.13538675010204,-0.0058794631622732],[-0.045342534780502,-0.066890306770802,0.22487196326256],[0.048195116221905,0.15565873682499,0.10487394779921]],[[0.072557590901852,-0.0500846542418,-0.010388278402388],[0.047110848128796,-0.068729765713215,0.13729348778725],[-0.02095440775156,-0.060599274933338,0.21370321512222]],[[0.077937766909599,-0.040973730385303,-0.10035439580679],[0.012448400259018,-0.0046770358458161,-0.082108892500401],[-0.016965821385384,-0.0016179598169401,-0.11062514036894]],[[-0.01701370999217,-0.0014950579497963,-0.049503456801176],[0.061595976352692,-0.10892803221941,-0.057049583643675],[-0.062797039747238,0.10564244538546,0.14832253754139]],[[0.023960074409842,-0.07389410585165,0.060525447130203],[-0.0086529655382037,-0.067487724125385,0.0034977979958057],[0.043341156095266,0.02498540468514,-0.13085123896599]],[[0.022808531299233,-0.090961523354053,0.036539223045111],[-0.054806888103485,-0.01187523920089,0.009209412150085],[-0.0093241259455681,-0.077418312430382,-0.1645790040493]],[[0.072792284190655,-0.17842617630959,0.08798560500145],[0.031681045889854,-0.082750588655472,0.031010618433356],[0.026536757126451,0.022480860352516,0.13018721342087]],[[0.063214205205441,-0.019991749897599,-0.031686697155237],[-0.052173055708408,-0.074512302875519,-0.048478350043297],[-0.041112683713436,0.050412002950907,-0.038915563374758]],[[-0.047705877572298,0.11101274192333,-0.078841984272003],[-0.04030816257,0.0013051654677838,-0.0055814003571868],[-0.038424145430326,0.10581478476524,-0.039679083973169]],[[0.04438191652298,-0.10611113905907,-0.066105872392654],[-0.0021966865751892,-0.078573659062386,-0.019732130691409],[-0.066677942872047,-0.064108841121197,-0.12695832550526]],[[0.0054989666678011,0.036995444446802,-0.031568825244904],[-0.096388332545757,-0.0055734841153026,-0.087930291891098],[-0.02266732044518,-0.01517500076443,0.097524859011173]],[[0.033576428890228,0.006022029556334,0.062981575727463],[-0.0871876552701,-0.047481343150139,0.10311159491539],[-0.067025728523731,-0.11635056138039,-0.014767782762647]],[[0.043232601135969,-0.044958043843508,0.15146803855896],[-0.066047303378582,0.033572513610125,-0.053822342306376],[-0.045254148542881,0.053341466933489,-0.0091734929010272]],[[0.069214545190334,0.10755928605795,0.014862638898194],[-0.11428690701723,-0.0039515891112387,-0.12501464784145],[-0.038482569158077,-0.17380595207214,-0.0076809995807707]],[[-0.08712650090456,0.056447718292475,0.12924337387085],[0.025308525189757,0.024433506652713,0.086230911314487],[-0.018033526837826,-0.03144695609808,0.11171792447567]],[[0.049634553492069,-0.039476364850998,0.07554866373539],[-0.085163056850433,-0.092411987483501,0.06958394497633],[-0.21704168617725,0.082681894302368,0.012128722853959]],[[-0.042118594050407,-0.044869266450405,-0.062937863171101],[0.018406754359603,-0.077273055911064,0.00029575714142993],[0.0056168008595705,0.015698377043009,0.051675751805305]],[[0.051266342401505,-0.099077269434929,0.17344819009304],[0.043644942343235,-0.051836229860783,-0.044351056218147],[0.085839822888374,-0.0070623564533889,0.10454153269529]],[[-0.051550928503275,-0.0040621245279908,0.094735398888588],[-0.013639559037983,-0.11127752065659,0.14654703438282],[-0.045550264418125,-0.047055032104254,0.09469898045063]],[[0.072700515389442,-0.024083757773042,-0.16502912342548],[0.063484542071819,0.02909048832953,0.0082758227363229],[0.10604405403137,-0.0057605295442045,0.047594081610441]],[[0.018646001815796,-0.1189337298274,-0.052955109626055],[0.19224256277084,0.079881563782692,0.060081079602242],[0.21675065159798,-0.045941539108753,-0.042003720998764]],[[-0.047315392643213,0.011169486679137,-0.089890658855438],[-0.037014279514551,0.040358394384384,0.085680663585663],[0.0037666026037186,-0.013827610760927,0.026091752573848]],[[-0.025105254724622,0.095069266855717,0.036864634603262],[0.14783722162247,-0.10222447663546,-0.13078184425831],[0.08646409958601,-0.01646344922483,-0.036240614950657]],[[-0.046504367142916,-0.04300981014967,0.0097999963909388],[-0.14810879528522,-0.090856924653053,0.1500292122364],[0.052527811378241,0.021599037572742,0.10235492885113]],[[-0.083959624171257,0.11962156742811,0.14354686439037],[-0.029152443632483,0.04331199079752,0.14848609268665],[0.032690979540348,-0.16301177442074,-0.17944569885731]],[[-0.095260627567768,-0.070517480373383,-0.077938169240952],[0.1345551609993,-0.085483379662037,0.11466819792986],[0.027847941964865,0.049816999584436,0.070976920425892]],[[-0.021954607218504,0.073584578931332,0.054316207766533],[-0.047635994851589,0.0060722250491381,0.025232225656509],[0.0055676940828562,-0.019821152091026,0.059601627290249]],[[-0.050669267773628,-0.028434097766876,-0.051726002246141],[0.0034863702021539,-0.13228605687618,-0.15791715681553],[0.016084022819996,0.035373624414206,0.041180208325386]],[[-0.031249148771167,0.0098909167572856,0.044040910899639],[0.10755776613951,0.1587618291378,-0.0056597148068249],[-0.13398841023445,-0.033438432961702,-0.0096593424677849]],[[-0.15945547819138,0.0082439891993999,0.0006487414939329],[-0.00037490794784389,0.077612854540348,0.053379759192467],[0.0069114533253014,0.044798225164413,0.14937129616737]],[[0.086533345282078,-0.066068008542061,-0.053235709667206],[-0.039030101150274,0.036988701671362,-0.13619959354401],[-0.00010370614472777,0.12099764496088,0.18749080598354]],[[-0.070463433861732,-0.15355385839939,-0.024868242442608],[-0.063417583703995,-0.076470240950584,0.038895003497601],[0.033701419830322,0.03732842206955,-0.076901532709599]],[[-0.071536377072334,0.042383920401335,-0.034406915307045],[0.018737973645329,-0.013944102451205,-0.19819089770317],[0.15038672089577,0.096426516771317,-0.030501052737236]],[[0.096064858138561,0.016717588528991,-0.10352683067322],[0.10931177437305,-0.08308220654726,-0.1164009347558],[-0.10017995536327,0.1123735755682,-0.11102753132582]],[[-0.027103105559945,-0.018233224749565,0.0026291094254702],[0.097224995493889,0.16355818510056,0.081823609769344],[-0.093102246522903,0.16165278851986,-0.0073077576234937]],[[0.16375176608562,-0.064045041799545,-0.021782200783491],[0.08482663333416,-0.11433576792479,-0.13457636535168],[-0.1275724619627,-0.060980942100286,-0.18115071952343]],[[-0.019721541553736,0.037776559591293,-0.040176317095757],[0.0095566054806113,-0.045270215719938,0.036651905626059],[0.083283968269825,-0.0043614218011498,-0.067227683961391]],[[0.032945729792118,0.05146250128746,0.057690627872944],[0.16162121295929,0.057748276740313,-0.04946218803525],[0.1473149061203,0.046152126044035,0.057252701371908]],[[-0.037031516432762,-0.016163818538189,-0.048602167516947],[-0.11685004085302,0.0094921868294477,-0.15782661736012],[-0.012099052779377,-0.018021190539002,-0.042732585221529]],[[0.11921552568674,0.040295343846083,-0.0042260130867362],[0.07378913462162,-0.02986660413444,0.027984902262688],[0.17723581194878,-0.072353899478912,0.028608042746782]],[[0.024030460044742,-0.10802223533392,-0.14444300532341],[0.17946927249432,-0.068528093397617,-0.033704955130816],[-0.01716042123735,0.096318334341049,0.066752910614014]],[[0.025632308796048,0.090929359197617,0.093732908368111],[0.036576557904482,-0.091050744056702,0.12133211642504],[-0.051632568240166,-0.035191997885704,-0.024326223880053]],[[-0.077420957386494,-0.0097367139533162,0.017339181154966],[-0.092677034437656,-0.03723156824708,-0.0038577397353947],[0.023117586970329,-0.00036201227339916,0.15298856794834]],[[-0.049321223050356,-0.13535134494305,0.11326433718204],[-0.11085555702448,-0.11169948428869,-0.12772032618523],[0.10424848645926,0.044305983930826,-0.1063209399581]],[[0.033630594611168,0.019887905567884,0.017860051244497],[-0.030616655945778,0.035963095724583,0.041698817163706],[0.2357954531908,-0.032234013080597,-0.10180854052305]],[[0.0034084527287632,-0.030481087043881,-0.10047008097172],[0.026951186358929,-0.11273185908794,-0.06478301435709],[-0.04415163770318,-0.024179635569453,-0.089431427419186]],[[0.047192949801683,-0.078414998948574,-0.045397952198982],[0.0021978849545121,-0.051236353814602,0.066470228135586],[-0.055262740701437,0.039988875389099,0.048804815858603]],[[0.12016936391592,-0.0048942333087325,-0.10114078223705],[-0.067421302199364,-0.019279900938272,-0.12938562035561],[-0.11452732235193,0.13017080724239,0.069884419441223]],[[0.054428569972515,0.1250012665987,-0.066108949482441],[0.014860882423818,0.081110805273056,0.023660099133849],[0.042071562260389,0.04484723880887,0.0094483345746994]],[[0.12768729031086,0.063850030303001,0.058241009712219],[-0.24580238759518,-0.0004727095074486,-0.065647542476654],[0.010584694333375,0.14435844123363,-0.019508542492986]],[[-0.0524034909904,0.0069869267754257,-0.17452089488506],[0.026554059237242,-0.047018602490425,-0.1061951443553],[-0.08227875828743,-0.097859099507332,-0.011653888970613]],[[0.037572681903839,-0.10298558324575,-0.053672805428505],[0.064423337578773,-0.073077499866486,0.084791205823421],[-0.033687822520733,0.097483716905117,-0.0098084369674325]],[[-0.051327679306269,-0.17710684239864,0.069725774228573],[0.016290495172143,0.0074834949336946,0.1548728197813],[-0.061407554894686,-0.046934083104134,0.23189949989319]],[[-0.086033299565315,0.019867213442922,-0.064177431166172],[0.02112390846014,0.1400101929903,-0.029506586492062],[0.018982950598001,0.1324500888586,-0.059563264250755]],[[0.0642114803195,-0.032833572477102,-0.0063991295173764],[0.12934125959873,0.0098917093127966,-0.0034284279681742],[-0.091723680496216,0.012862059287727,-0.052016459405422]],[[-0.043376885354519,0.037666540592909,0.014734535478055],[-0.051289606839418,0.08742281794548,0.13487957417965],[0.13920757174492,0.0016619090456516,-0.053409479558468]],[[0.07042533904314,0.14172817766666,0.080403253436089],[-0.015400589443743,-0.18069563806057,-0.11035773903131],[0.10509421676397,0.064383164048195,0.11139779537916]],[[-0.078197881579399,-0.13515482842922,-0.11589290946722],[-0.2256602793932,-0.014542904682457,-0.019258625805378],[0.068909965455532,-0.060022220015526,-0.035127058625221]],[[0.076681807637215,0.059508059173822,0.036842554807663],[-0.050296727567911,0.00094084878219292,-0.078580714762211],[-0.035370927304029,0.072606444358826,-0.088424168527126]],[[-0.027151487767696,-0.10419034957886,0.050931014120579],[-0.068456873297691,0.048610724508762,0.15155705809593],[-0.14777451753616,-0.024655483663082,-0.0078545762225986]],[[0.13878038525581,-0.078645721077919,-0.082231745123863],[-0.098707281053066,0.010469824075699,0.062576361000538],[-0.063492111861706,0.084374032914639,-0.045104496181011]],[[-0.011526338756084,-0.079001046717167,0.04703214392066],[0.050466191023588,-0.10391420871019,0.041704587638378],[0.13294431567192,-0.04010858014226,0.040245238691568]],[[0.046389739960432,0.16966962814331,0.032427746802568],[0.049882330000401,0.027530649676919,0.037413626909256],[0.045661419630051,0.06298603117466,0.0097530875355005]],[[-0.089655816555023,-0.069584034383297,0.081595882773399],[-0.035420663654804,-0.040604818612337,-0.17471934854984],[0.1336771696806,-0.082765191793442,-0.098176494240761]],[[-0.0058530778624117,0.014810120686889,-0.044725321233273],[0.11097147315741,0.037352085113525,-0.036885887384415],[-0.036147236824036,-0.0502386726439,0.17159458994865]],[[-0.055970348417759,0.064800210297108,0.079737611114979],[-0.055306244641542,-0.037508219480515,-0.21549373865128],[0.017583794891834,-0.023760499432683,-0.045000452548265]],[[0.05900014936924,0.038495667278767,-0.061083231121302],[-0.018307762220502,0.054372329264879,-0.064686864614487],[-0.048830814659595,-0.014465490356088,0.057654213160276]],[[0.029353367164731,0.098906382918358,0.032431397587061],[-0.005099153611809,-0.046620771288872,-0.027392419055104],[-0.01974687166512,0.024663157761097,-0.092597886919975]],[[-0.02688180655241,-0.048645127564669,-0.0054088435135782],[-0.060660887509584,-0.024403309449553,0.00058526359498501],[-0.061332408338785,-0.062475852668285,0.020849829539657]],[[0.043205812573433,-0.026675513014197,-0.057356581091881],[-0.053115274757147,-0.083740524947643,-0.1127191260457],[-0.060017626732588,-0.016346462070942,-0.068280585110188]],[[-0.14672242105007,-0.052998390048742,-0.09108742326498],[0.0074191940948367,-0.14412711560726,-0.077718786895275],[-0.072523638606071,-0.012595147825778,-0.12847204506397]],[[0.1410266906023,-0.032111629843712,0.10418033599854],[-0.052912965416908,-0.2756096124649,0.19284576177597],[-0.042286284267902,-0.096657365560532,0.13309592008591]],[[-0.059366524219513,-0.017433209344745,-0.017738614231348],[-0.064610980451107,-0.0034606999251992,-0.031682077795267],[0.077652841806412,0.064700022339821,-0.013740496709943]],[[-0.12582384049892,-0.085323102772236,-0.082828357815742],[0.13414645195007,-0.042479623109102,0.013227803632617],[-0.0070768590085208,0.10392575711012,-0.032891165465117]],[[0.13858796656132,0.10746854543686,0.082053259015083],[0.040173452347517,0.063900321722031,0.014644929207861],[-0.17430777847767,0.040668908506632,-0.068570092320442]],[[0.076152369379997,0.099653549492359,-0.14839236438274],[0.066894970834255,-0.083385407924652,0.02601059153676],[-0.055580567568541,-0.12031280994415,-0.13377039134502]],[[0.012289769947529,-0.11133346706629,0.042672887444496],[-0.036014977842569,-0.03784579411149,-0.03424634411931],[-0.039687607437372,0.09395831823349,0.10893680155277]],[[0.031775314360857,0.067402422428131,0.2337991297245],[-0.23597940802574,-0.064206346869469,0.091137737035751],[-0.028473885729909,-0.14830382168293,0.035401407629251]],[[-0.19286902248859,0.099636487662792,-0.009955151937902],[-0.002827734220773,-0.035166893154383,-0.10659661889076],[0.025036441162229,-0.10974600166082,-0.032106604427099]],[[0.15633065998554,0.05353669822216,-0.020537735894322],[0.0056391372345388,0.10264156013727,-0.20271241664886],[0.061736036092043,0.076609961688519,0.076370306313038]],[[-0.01592567935586,-0.0031752467621118,0.16203621029854],[0.12717336416245,-0.029084011912346,0.013787367381155],[0.024155480787158,-0.1320673674345,-0.068461388349533]],[[0.12424034625292,0.038155265152454,-0.015258532948792],[-0.013719133101404,0.14628219604492,0.15045401453972],[0.097808301448822,0.12627586722374,0.0026833224110305]],[[0.16301284730434,0.04273035377264,0.029395271092653],[-0.094120994210243,-0.0026433789171278,-0.06058306992054],[0.089092530310154,-0.016993032768369,0.098262719810009]],[[0.10167001932859,0.080595180392265,0.019343880936503],[-0.13702848553658,-0.036160103976727,0.047207180410624],[0.11505869030952,0.17583811283112,0.13685829937458]],[[0.055372476577759,0.030033227056265,0.01735907047987],[-0.0068859234452248,0.10914124548435,-0.026950957253575],[-0.10875356197357,0.099945269525051,0.030476892367005]],[[-0.066691391170025,-0.10906030237675,0.059341348707676],[-0.010865136049688,0.071678407490253,-0.0078569892793894],[-0.1365270614624,0.053653657436371,0.17030902206898]],[[-0.041659109294415,-0.010416102595627,-0.064540237188339],[0.012605506926775,-0.006588488817215,0.015658503398299],[0.0039613414555788,-0.05003022775054,0.032932739704847]],[[0.091382429003716,0.077720873057842,-0.084602244198322],[0.15474365651608,0.030947878956795,-0.21382667124271],[0.079132080078125,-0.011087692342699,-0.12176677584648]],[[-0.18027450144291,0.011791665107012,-0.14544756710529],[0.058038264513016,0.00053942372323945,0.082049898803234],[0.036303389817476,0.16186182200909,0.061932727694511]],[[-0.030160384252667,0.10485504567623,0.076319016516209],[0.041263811290264,-0.053095832467079,0.0026044668629766],[0.089360907673836,-0.043549694120884,-0.12007636576891]],[[-0.014109576120973,-0.11359150707722,-0.021996619179845],[-0.094026766717434,0.10438391566277,0.28808128833771],[0.049623772501945,-0.10214925557375,0.25756439566612]],[[-0.08126387745142,0.014175059273839,-0.037129886448383],[-0.1612039655447,-0.064841315150261,-0.12910859286785],[-0.062820218503475,0.067631162703037,0.023965254426003]],[[0.12257197499275,-0.023986201733351,-0.01043167244643],[-0.071818836033344,-0.078036092221737,0.037589713931084],[0.092217437922955,-0.028268482536077,0.005154955200851]],[[-0.12374545633793,-0.043869730085135,0.089015707373619],[-0.043862942606211,0.0044807689264417,-0.11216382682323],[0.023809615522623,-0.061828751116991,-0.0062857042066753]],[[-0.04318318516016,-0.016247220337391,0.0069057368673384],[0.15297563374043,0.15317851305008,0.067823752760887],[-0.027249542996287,-0.028156436979771,-0.020272912457585]],[[-0.01634562946856,0.0050202235579491,-0.060608085244894],[-0.015801766887307,0.11989153176546,0.042851317673922],[-0.018328173086047,-0.077326826751232,-0.025409588590264]],[[0.030538477003574,0.032451678067446,-0.073193021118641],[0.012781845405698,0.0059524062089622,0.030469702556729],[-0.10421808809042,0.079196341335773,-0.023271020501852]],[[-0.072181716561317,0.1147116497159,0.007137767970562],[-0.076624296605587,-0.081965073943138,-0.15232585370541],[-0.06639713793993,-0.062374670058489,-0.096038274466991]],[[-0.089516304433346,-0.048765759915113,-0.056962132453918],[0.074732922017574,-0.064735122025013,-0.062659651041031],[-0.082907095551491,0.015245225280523,0.011704935692251]],[[-0.089356519281864,0.12571522593498,0.099461786448956],[0.038183156400919,0.040548514574766,0.028585352003574],[-0.1365620046854,-0.082365922629833,-0.01545453350991]],[[0.001672726473771,0.025711763650179,-0.022263882681727],[-0.095583371818066,-0.014066400937736,-0.040369190275669],[-0.030714686959982,0.066522009670734,0.040707774460316]],[[0.021181164309382,0.059768330305815,0.012900589033961],[-0.12526994943619,-0.059409849345684,-0.0071158269420266],[-0.03265493735671,0.019688185304403,-0.0034973993897438]],[[-0.058554891496897,0.05907828360796,0.020512118935585],[0.00795085914433,0.079350121319294,-0.024553000926971],[0.21764041483402,0.051802210509777,-0.072221830487251]],[[-0.014785076491535,-0.057325340807438,-0.0062801013700664],[-0.04732271283865,0.022316684946418,0.0070537352003157],[0.0040576248429716,-0.07136408239603,-0.078528724610806]],[[0.076901167631149,0.097240224480629,-0.15865321457386],[0.01969825476408,-0.08221123367548,-0.029300432652235],[0.17623981833458,-0.15171998739243,-0.17542603611946]],[[0.080871507525444,0.17994397878647,-0.044826198369265],[-0.088657513260841,-0.007183475419879,0.088952399790287],[-0.045912496745586,0.011531196534634,0.036601927131414]],[[0.048409469425678,0.10145548731089,0.017074268311262],[0.04681060090661,-0.08222022652626,-0.015732243657112],[0.14256170392036,-0.10717795044184,-0.029252478852868]],[[-0.048544067889452,0.04316246509552,0.14173485338688],[0.17113365232944,-0.0099370293319225,0.021006189286709],[0.042657375335693,0.0017913682386279,-0.043864451348782]],[[-0.15624961256981,-0.15846589207649,-0.046273447573185],[0.081466108560562,0.009572958573699,-0.143763884902],[-0.051655236631632,0.096529312431812,0.10213398188353]],[[-0.038096118718386,0.10359169542789,-0.064587488770485],[-0.01443135086447,-0.099698007106781,-0.029694342985749],[0.071878254413605,-0.050533331930637,-0.023004155606031]],[[-0.060385275632143,-0.18741618096828,-0.086649969220161],[0.12027740478516,-0.02350933291018,-0.070985719561577],[0.019225789234042,0.01400054898113,0.087508417665958]],[[-0.076421312987804,0.027716776356101,0.10325869172812],[0.082262672483921,-0.14023426175117,0.19272522628307],[0.0063507203012705,-0.089497402310371,0.060881160199642]],[[-0.011099571362138,0.10913168638945,-0.0073333545587957],[0.062747307121754,-0.11889540404081,-0.0758917927742],[0.034413658082485,-0.095954820513725,0.0832479596138]],[[-0.027599155902863,-0.12925873696804,-0.0065886932425201],[0.11403546482325,0.1144442781806,-0.051757983863354],[-0.036403477191925,0.0074113034643233,-0.016347568482161]],[[0.0084621394053102,0.078742943704128,0.046580720692873],[0.056000299751759,-0.025498619303107,0.023721788078547],[-0.13367314636707,0.16877573728561,0.022109363228083]],[[-0.036125525832176,0.07431998103857,0.12288254499435],[-0.037018198519945,-0.066841281950474,-0.16351887583733],[-0.035584252327681,-0.1562464684248,0.015182256698608]],[[-0.053923897445202,-0.021404145285487,-0.027317566797137],[0.02630022726953,0.089759558439255,-0.029538011178374],[0.044397760182619,-0.0064087193459272,-0.098857246339321]],[[-0.053365703672171,0.0033365972340107,0.091532722115517],[-0.097799614071846,-0.026567356660962,0.11038233339787],[0.17196726799011,-0.0027367351576686,0.018542865291238]],[[0.031553093343973,0.0081651508808136,0.011867028661072],[-0.10149237513542,0.091628879308701,0.10144434124231],[-0.031755719333887,-0.089048951864243,0.078994393348694]],[[-0.028678854927421,0.12465260177851,0.12469460815191],[-0.028273362666368,0.1433062851429,-0.14495532214642],[0.019981568679214,0.13391564786434,0.058876544237137]],[[-0.024880852550268,-0.013991871848702,0.076929561793804],[0.022587222978473,-0.030964370816946,0.0053392564877868],[-0.0091089159250259,-0.13067862391472,0.058014754205942]]],[[[0.0027976599521935,0.03057231195271,-0.094106294214725],[-0.027077509090304,0.044178437441587,-0.1312425583601],[0.010111967101693,0.024344753473997,0.030250318348408]],[[-0.13894970715046,-0.069143652915955,0.036255180835724],[0.030853934586048,-0.013316106982529,-7.8907622082625e-05],[0.14293740689754,0.013502083718777,0.18478934466839]],[[-0.048348624259233,0.10071896761656,-0.006993399001658],[0.092593178153038,-0.079405285418034,0.016808731481433],[0.074239082634449,0.02729487977922,-0.009258602745831]],[[-0.075848266482353,0.067135520279408,-0.0544025413692],[-0.077429302036762,-0.022469319403172,-0.014158402569592],[-0.062991105020046,0.07553793489933,0.043797735124826]],[[0.12320391833782,0.10453767329454,0.06570015847683],[-0.13528029620647,0.003391261678189,-0.068229101598263],[-0.028703229501843,0.080493681132793,0.015896717086434]],[[0.10308694839478,0.020292811095715,0.16083011031151],[-0.15197138488293,-0.070688024163246,-0.046899177134037],[0.042949832975864,0.054618142545223,0.0027434146031737]],[[0.11465246975422,0.098405793309212,0.072737880051136],[-0.073853395879269,-0.05056369304657,-0.026289459317923],[0.051755759865046,0.10661658644676,0.19032789766788]],[[-0.079426266252995,-0.011441268958151,0.033290017396212],[-0.13927783071995,-0.013055772520602,0.034547083079815],[0.046810083091259,0.032360073179007,-0.035995580255985]],[[0.010988930240273,-0.12176578491926,-0.015146308578551],[0.040276523679495,0.043950811028481,-0.029134782031178],[-0.047257654368877,0.021018005907536,-0.087521366775036]],[[-0.041819054633379,-0.026065651327372,0.027684107422829],[-0.069614320993423,7.6555705163628e-05,0.029177870601416],[0.016305584460497,0.061625063419342,-0.045169282704592]],[[0.0016852337867022,-0.073218189179897,-0.0093634594231844],[0.17914935946465,0.060882050544024,0.12835742533207],[0.046630054712296,0.022632122039795,0.1345739364624]],[[0.15508610010147,0.16672548651695,-0.043619111180305],[-0.073824301362038,-0.071741849184036,0.028130754828453],[0.1506090760231,-0.093023404479027,-0.055777948349714]],[[-0.150091573596,-0.17540894448757,0.0016914713196456],[0.013996622525156,-0.11464645713568,-0.021367110311985],[-0.055612348020077,0.044284854084253,0.10208269953728]],[[-0.060545515269041,-0.063263811171055,-0.0049525825306773],[-0.15492625534534,-0.088559746742249,-0.11805704981089],[0.021170323714614,0.012302859686315,-0.15338815748692]],[[0.080340772867203,-0.084732688963413,-0.1685513406992],[0.085469529032707,0.08703388273716,-0.0099790338426828],[0.085522517561913,0.12241547554731,0.063582129776478]],[[-0.10975687205791,0.019868336617947,0.041884370148182],[-0.04531766846776,-0.003576721297577,-0.13992483913898],[0.057414524257183,-0.028707945719361,-0.026528967544436]],[[-0.033802852034569,0.054624978452921,0.10400558263063],[0.051113076508045,-0.034140404313803,0.035929679870605],[-0.059135999530554,-0.11769203841686,-0.048227306455374]],[[0.04193989560008,0.15131936967373,0.19853776693344],[0.06550221145153,-0.041798692196608,-0.12232640385628],[-0.035093609243631,-0.050464749336243,0.034912470728159]],[[-0.041246268898249,0.073802568018436,0.15298506617546],[0.063856109976768,-0.094492472708225,0.13296487927437],[-0.094549462199211,-0.086326770484447,-0.078335776925087]],[[-0.015796206891537,0.024055339396,-0.013083813712001],[-0.14583399891853,0.021354982629418,0.0042526731267571],[0.041703101247549,-0.026250462979078,-0.048324972391129]],[[-0.078828603029251,0.0008522451389581,-0.009698199108243],[-0.02531767450273,-0.032775156199932,-0.18499992787838],[-0.043959960341454,0.059531014412642,0.033191490918398]],[[0.031467732042074,0.09648060053587,0.092193737626076],[-0.047196753323078,0.069638431072235,-0.11093366146088],[0.019560696557164,-0.041349489241838,0.034950286149979]],[[0.041548367589712,-0.16188363730907,-0.040083054453135],[-0.13806037604809,-0.13434259593487,0.021857174113393],[-0.064801782369614,-0.043817423284054,-0.045761343091726]],[[-0.055405765771866,-0.036134198307991,-0.1758850812912],[0.002771909115836,-0.1024926751852,-0.032545518130064],[0.056614596396685,0.03321098908782,0.062796123325825]],[[-0.09049466997385,0.022268246859312,0.047734547406435],[-0.053290300071239,-0.0054203607141972,-0.048176933079958],[0.052759394049644,0.05916915461421,-0.050495754927397]],[[-0.063558138906956,0.0060877013020217,0.0051154955290258],[-0.095677800476551,-0.060561142861843,-0.16061162948608],[0.073652714490891,-0.059296373277903,-0.078131161630154]],[[0.0015829270705581,-0.10515315830708,-0.067892879247665],[0.028690977022052,0.018755462020636,0.041431285440922],[0.21158640086651,-0.00092343235155568,0.13185888528824]],[[0.0019950428977609,0.068864688277245,0.091238476336002],[0.055158127099276,0.035066977143288,0.087747730314732],[0.023515120148659,-0.082719512283802,0.20214119553566]],[[-0.12514355778694,-0.079236745834351,-0.16843129694462],[0.092320770025253,-0.11148502677679,-0.049979958683252],[-0.036799360066652,-0.081813640892506,-0.14352104067802]],[[0.001327506150119,-0.044393565505743,-0.03646881878376],[-0.10398495197296,0.11307077854872,0.13313014805317],[-0.080077201128006,-0.16530995070934,0.036971498280764]],[[-0.16736741364002,-0.19594745337963,-0.073618575930595],[0.017811149358749,-0.034934662282467,0.17529554665089],[-0.012610814534128,-0.077942371368408,-0.050710123032331]],[[-0.080204173922539,-0.01949012838304,-0.040502801537514],[0.0065689510665834,-0.0056131207384169,-0.0058201989158988],[-0.015272815711796,-0.1131192818284,-0.095619641244411]],[[-0.02385943941772,0.044847551733255,0.11889779567719],[-0.020243275910616,-0.11997455358505,0.047248739749193],[-0.055011056363583,0.023237694054842,0.030613848939538]],[[0.10892825573683,0.21877688169479,0.081412278115749],[0.084425501525402,-0.080581247806549,0.090042367577553],[-0.21168212592602,-0.16069978475571,-0.14841973781586]],[[-0.020283978432417,0.06205441057682,0.020432084798813],[-0.16546459496021,-0.094807222485542,-0.12705263495445],[0.12616616487503,-0.062106221914291,0.11094535887241]],[[0.036638278514147,0.0084119020029902,0.034477598965168],[-0.00097119127167389,-0.0098597807809711,0.092585161328316],[-0.029273072257638,-0.015704780817032,0.11318094283342]],[[0.19606265425682,0.17032745480537,0.16330975294113],[0.034393802285194,0.055580649524927,-0.11230305582285],[-0.016702206805348,-0.11684048175812,0.05959989130497]],[[-0.09996559470892,-0.12596537172794,-0.11251699924469],[-0.13712832331657,-0.21442824602127,-0.19415840506554],[0.16422753036022,0.10393534600735,0.045618552714586]],[[-0.17378507554531,-0.07779898494482,-0.17070251703262],[0.0045523750595748,-0.068097867071629,-0.037017904222012],[0.090152718126774,0.00060041894903407,0.028002580627799]],[[-0.030508147552609,-0.021214021369815,-0.14672346413136],[0.059177238494158,0.13041169941425,0.062820546329021],[0.061447013169527,0.0041279555298388,0.069668866693974]],[[0.13078720867634,0.12402091175318,0.017348952591419],[0.16733987629414,-0.029559288173914,0.024705847725272],[-0.052250079810619,-0.012161890976131,0.096736155450344]],[[0.12724278867245,0.1146891862154,0.091894634068012],[0.023891661316156,0.048631202429533,-0.039034467190504],[0.078114748001099,-0.079424887895584,-0.034016463905573]],[[-0.11179041862488,-0.057806819677353,-0.071520604193211],[0.025884732604027,-0.051982510834932,-0.088881582021713],[0.0051167332567275,-0.052069026976824,-0.045120511204004]],[[0.0046736616641283,0.1170644685626,0.010085581801832],[0.052149958908558,0.03921739757061,0.03794077411294],[-0.0043282103724778,0.027263380587101,0.051396116614342]],[[0.12313382327557,0.012615957297385,0.069145657122135],[-0.17039927840233,-0.14592704176903,-0.17237208783627],[-0.015175848267972,0.006501832511276,-0.054643649607897]],[[0.058662571012974,0.015942607074976,-0.031880185008049],[-0.11051122099161,-0.10710998624563,-0.090256683528423],[-0.046743288636208,-0.022944990545511,-0.050848927348852]],[[0.084328681230545,0.062959067523479,-0.051851470023394],[-0.075052328407764,-0.050179932266474,-0.030850889161229],[-0.088242404162884,-0.080635003745556,0.038667120039463]],[[-0.17140786349773,-0.029454443603754,0.092630699276924],[0.060729674994946,0.057620752602816,0.006832520943135],[0.011312566697598,0.01505714468658,0.033536311239004]],[[-0.087608367204666,-0.22994457185268,-0.10253596305847],[0.075686618685722,0.0081044463440776,0.10742947459221],[-0.078764371573925,-0.025091014802456,-0.075541719794273]],[[-0.12556844949722,-0.099245652556419,0.050696521997452],[-0.035125069320202,-0.063873425126076,-0.049365315586329],[0.030893972143531,0.026828387752175,0.036841191351414]],[[-0.1558796018362,0.076660461723804,0.056390333920717],[-0.13586713373661,-0.026804884895682,-0.091403029859066],[-0.084696538746357,0.06447809189558,-0.0062470911070704]],[[0.061663530766964,0.036527447402477,-0.00085561478044838],[-0.0020176279358566,-0.094059459865093,-0.13384149968624],[0.17728598415852,0.058084577322006,0.12054112553596]],[[0.0014602944720536,0.080679073929787,0.012696964666247],[-0.020533906295896,-0.010969725437462,0.021276300773025],[0.096278578042984,-0.015404582954943,0.042806338518858]],[[0.048606727272272,0.018624069169164,0.040782582014799],[0.00063696457073092,0.039561245590448,0.14951580762863],[0.085885860025883,0.010758120566607,-0.0025805165059865]],[[0.071571446955204,0.069549098610878,-0.09874289482832],[0.084078274667263,-0.070534907281399,-0.12830320000648],[-0.079497046768665,-0.0072178211994469,0.076431713998318]],[[-0.058089066296816,-0.0088354479521513,-0.0010050571290776],[0.0091646816581488,-0.039928495883942,-0.032392084598541],[0.17893941700459,0.086189284920692,0.030765805393457]],[[-0.086908146739006,-0.077237591147423,0.040231246501207],[0.13431377708912,-0.041149120777845,-0.10904818028212],[-0.11982772499323,0.047321766614914,0.02996451407671]],[[-0.037715584039688,-0.05555372685194,-0.073376052081585],[-0.019591458141804,-0.045964390039444,-0.0078731821849942],[-0.18720695376396,-0.12878035008907,-0.072795391082764]],[[-0.0018048669444397,-0.011648231185973,0.061967231333256],[-0.10726497322321,-0.015886915847659,0.14678370952606],[0.08478245139122,0.0090867690742016,-0.029655175283551]],[[0.049536801874638,-0.040500070899725,-0.036831170320511],[0.1315001398325,0.028314309194684,0.032572336494923],[0.07499573379755,-0.034697405993938,0.0099602118134499]],[[-0.038944203406572,-0.076061591506004,-0.094698593020439],[-0.19281008839607,-0.079987697303295,-0.02860070951283],[0.0058372225612402,-0.10069594532251,-0.15541858971119]],[[-0.13150304555893,-0.18212646245956,-0.010182987898588],[-0.11084384471178,-0.027114460244775,-0.0055115059949458],[-0.03740843385458,-0.11916584521532,-0.080864392220974]],[[0.18465507030487,0.058982595801353,0.013272576965392],[-0.025510001927614,0.073779702186584,0.14294569194317],[-0.084921590983868,-0.042114656418562,0.057117000222206]],[[0.1239659935236,0.19925346970558,0.096960015594959],[0.075141847133636,-0.041727110743523,-0.10473772138357],[0.071888715028763,0.055447190999985,0.0055489721708]],[[0.0061009936034679,0.010247961618006,0.092418722808361],[0.0075331469997764,-0.029824705794454,-0.029141180217266],[0.045416809618473,0.025254242122173,-0.0066426028497517]],[[-0.010973050259054,-0.014761415310204,-0.080227218568325],[0.025750190019608,0.046652361750603,-0.086603276431561],[-0.05958566069603,-0.11558127403259,-0.03897001594305]],[[-0.011613859795034,0.071164719760418,-0.017148964107037],[0.0035607141908258,-0.0030162034090608,0.13741473853588],[0.13898971676826,-0.054796393960714,0.024149630218744]],[[-0.066029407083988,-0.049372598528862,-0.15837353467941],[-0.090006873011589,-0.021583771333098,0.072414748370647],[0.0039530005306005,0.038152646273375,-0.057467386126518]],[[-0.0063745309598744,-0.071668229997158,-0.05143404006958],[-0.018440458923578,-0.059941790997982,0.022219575941563],[-0.039124391973019,-0.079320557415485,0.0082084937021136]],[[0.032982513308525,0.057298444211483,0.020320650190115],[-0.088309556245804,0.054158322513103,0.060670278966427],[-0.14189536869526,-0.074818789958954,-0.12076815962791]],[[-0.022321492433548,0.028212347999215,-0.15575148165226],[0.030310263857245,0.029119553044438,0.24893254041672],[-0.052533365786076,-0.072613939642906,-0.11220167577267]],[[0.13575305044651,0.071693278849125,-0.032447788864374],[-0.064415939152241,-0.10953629016876,0.05023580417037],[0.0073113683611155,-0.065089158713818,-0.037775967270136]],[[0.067746385931969,-0.015097055584192,-0.043470498174429],[-0.038549926131964,-0.049813941121101,0.01379712857306],[-0.074737675487995,-0.045313127338886,-0.055149018764496]],[[0.080086342990398,0.036265127360821,-0.046420682221651],[-0.019503464922309,0.040804818272591,0.041777674108744],[-0.019262425601482,-0.051253601908684,-0.052175618708134]],[[-0.092180527746677,0.052661694586277,0.02917636744678],[-0.020542751997709,0.003133901162073,0.052126109600067],[-0.05842973664403,0.020218938589096,0.0021819651592523]],[[-0.0046063526533544,-0.0033427784219384,0.019691914319992],[0.082495175302029,0.033974751830101,0.093946054577827],[-0.13713511824608,0.018125729635358,-0.058161925524473]],[[0.001105792587623,-0.04102973267436,-0.1120610833168],[0.023718314245343,-0.0056367889046669,-0.019962139427662],[0.020145088434219,-0.0067592356353998,0.030984623357654]],[[-0.075217641890049,-0.098099000751972,-0.023347668349743],[0.093475610017776,0.0464395172894,-0.15897662937641],[-0.0048007816076279,-0.055230747908354,-0.074964769184589]],[[0.076220244169235,-0.0055267754942179,-0.05365876108408],[-0.0038264985196292,0.061925463378429,-0.0018837315728888],[-0.020174261182547,-0.080466732382774,-0.066466219723225]],[[0.012364630587399,-0.027000559493899,-0.17092141509056],[-0.062259543687105,-0.035231966525316,0.024753764271736],[-0.12635166943073,-0.095538169145584,0.028611244633794]],[[-0.050912957638502,0.054368745535612,0.087027125060558],[0.028172615915537,0.0084815118461847,0.032118782401085],[-0.13223759829998,-0.049989886581898,-0.0086593572050333]],[[-0.1332950592041,-0.080749996006489,0.0077070128172636],[0.087718285620213,-0.029327223077416,-0.0062099462375045],[0.060582049190998,0.11878364533186,0.040244769304991]],[[0.16463966667652,0.11188328266144,0.21841245889664],[0.093542538583279,-0.075689107179642,-0.18003040552139],[0.025320814922452,0.12563651800156,0.1488374620676]],[[-0.0017448626458645,0.04534200951457,0.049377419054508],[-0.012972149066627,-0.039529018104076,0.034956593066454],[-0.065034821629524,-0.19596345722675,-0.079581551253796]],[[-0.019663715735078,0.040205705910921,0.11329117417336],[0.013873387128115,-0.0069780866615474,0.032065652310848],[0.10852257162333,-0.047564778476954,0.056597255170345]],[[0.054882138967514,0.10812972486019,0.093352220952511],[-0.072049804031849,-0.14106172323227,-0.020729692652822],[-0.04082203283906,0.015993189066648,-0.04775120690465]],[[0.042015891522169,0.032488781958818,0.033259604126215],[-0.17041240632534,-0.10016635805368,-0.026605570688844],[0.20190009474754,0.10210070014,0.1738950163126]],[[-0.10954110324383,0.05525791272521,-0.080490097403526],[-0.042494643479586,-0.091649860143661,-0.052089083939791],[-0.051595687866211,-0.046783600002527,-0.085325226187706]],[[0.13096994161606,-0.091122440993786,0.066068612039089],[-0.019865790382028,-0.069121792912483,-0.05907478928566],[-0.058600313961506,-0.164506316185,-0.13527499139309]],[[-0.057289686053991,-0.044256702065468,0.1526158452034],[-0.038440879434347,-0.13430194556713,-0.049379598349333],[-0.0083655091002584,-0.02538981102407,-0.080757848918438]],[[0.078246422111988,0.12463422864676,0.066032841801643],[0.13780546188354,0.026018749922514,0.13096122443676],[0.12698552012444,0.074103526771069,0.11980319023132]],[[0.016366243362427,0.075604423880577,-0.12740044295788],[-0.056934729218483,-0.14318598806858,-0.055951919406652],[-0.044372525066137,-0.01339727640152,-0.068285718560219]],[[0.036847610026598,-0.11654350161552,0.070259563624859],[0.13769993185997,-0.04769142344594,0.041884575039148],[0.0091413129121065,-0.059556003659964,0.016384745016694]],[[-0.061029776930809,0.075726181268692,0.081625208258629],[-0.14426918327808,-0.12198425084352,-0.12135901302099],[0.066379629075527,0.017353888601065,0.030771508812904]],[[0.043223820626736,-0.015651274472475,-0.019921042025089],[0.0092542059719563,-0.05028847232461,0.021115830168128],[-0.059309553354979,0.07608600705862,-0.004520860966295]],[[0.063427984714508,-0.016780721023679,-0.025973346084356],[-0.030473651364446,0.012486726045609,-0.10534825176001],[0.039353117346764,-0.039333563297987,0.19578871130943]],[[-0.073002345860004,0.018127327784896,-0.063439562916756],[0.0088218944147229,0.051502220332623,0.063774727284908],[0.054900042712688,0.049627009779215,0.1325049996376]],[[0.16973853111267,-0.0310238301754,-0.0301703363657],[0.021296821534634,-0.10037130117416,-0.022984014824033],[0.19853502511978,0.17172323167324,-0.077588997781277]],[[0.022256901487708,0.10845454782248,0.051683068275452],[-0.046013880521059,-0.046725671738386,-0.073360443115234],[0.03261948004365,-0.14655908942223,-0.11403115838766]],[[0.15429648756981,0.090685203671455,0.22218792140484],[-0.030019108206034,-0.10233805328608,-0.049261316657066],[0.0010893848957494,-0.04815910756588,-0.022271392866969]],[[-0.020520953461528,0.044741921126842,-0.10390627384186],[-0.023167319595814,0.082319810986519,-0.081423223018646],[-0.089374288916588,-0.064827010035515,-0.0064455475658178]],[[0.24068324267864,0.16022209823132,0.1305847465992],[0.21917271614075,0.032207619398832,0.066919647157192],[0.014325992204249,-0.16057109832764,-0.07054727524519]],[[-0.083736844360828,0.021633323282003,0.026717076078057],[-0.03813036903739,0.021011728793383,0.026653833687305],[-0.064698860049248,-0.14858223497868,0.078987412154675]],[[-0.043203812092543,0.082521989941597,0.015160196460783],[0.083802253007889,0.062117844820023,-0.047616466879845],[0.03324918076396,0.10925898700953,0.066030412912369]],[[-0.008291207253933,0.031672324985266,-0.020209718495607],[-0.015259142033756,0.022451998665929,-0.089210845530033],[-0.14617444574833,0.032138507813215,-0.07547178119421]],[[-0.0524742603302,-0.022828863933682,0.051445290446281],[0.11460103839636,-0.024814043194056,-0.014057321473956],[0.027327828109264,0.084150463342667,-0.015175431966782]],[[0.15459503233433,0.036062207072973,0.058502670377493],[-0.03919942677021,-0.023110745474696,-0.023213762789965],[-0.2380492836237,-0.0024468882475048,-0.090545929968357]],[[0.043901264667511,-0.045098591595888,-0.11021142452955],[-0.0084884027019143,0.061513334512711,0.045673850923777],[0.034054137766361,-0.074891574680805,-0.020268423482776]],[[-0.03231542557478,0.0010122380917892,-0.074601694941521],[0.037618689239025,-0.044853940606117,0.0055571394041181],[0.087502300739288,0.013011392205954,0.022873131558299]],[[0.024261020123959,0.18249675631523,-0.078709051012993],[0.068153694272041,0.01917327195406,0.032433178275824],[0.14918410778046,-0.045462131500244,0.044295631349087]],[[0.038210593163967,0.11103378236294,-0.10500028729439],[0.081397920846939,-0.002816625405103,-0.030056679621339],[0.060153238475323,0.018577806651592,-0.023583194240928]],[[0.12856486439705,0.042861770838499,0.14810937643051],[-0.014923472888768,-0.018225172534585,-0.0072795418091118],[-0.16029600799084,-0.15534794330597,-0.052908774465322]],[[0.15703199803829,0.11929920315742,0.0091261481866241],[-0.004018597304821,0.015711098909378,0.023885127156973],[0.031149685382843,-0.023308217525482,0.009595887735486]],[[0.094211615622044,0.0085669755935669,0.012421765364707],[0.13111394643784,-0.14615869522095,-0.099793471395969],[0.052449587732553,0.028101939707994,0.0723015666008]],[[0.046062391251326,0.019705278798938,-0.1014931499958],[0.054597586393356,0.086391232907772,-0.065832197666168],[-0.012352885678411,-0.06562864035368,-0.036845665425062]],[[0.017509751021862,0.13243274390697,0.0023372787982225],[-0.058276806026697,-0.016772616654634,-0.094516597688198],[-0.04039142280817,0.038714338093996,0.089534312486649]],[[0.15702274441719,-0.021553354337811,-0.025561654940248],[-0.082457199692726,-0.071577407419682,-0.081062518060207],[0.087746992707253,0.047807347029448,0.050580319017172]],[[-0.23907160758972,-0.069459825754166,-0.30053243041039],[-0.0010937168262899,0.084445677697659,0.25959557294846],[0.03420190140605,-0.0088351266458631,0.09215534478426]],[[-0.017650747671723,0.061272650957108,0.02061596699059],[0.018891902640462,0.030594184994698,0.04129571467638],[-0.1645417958498,-0.11828849464655,-0.21891236305237]],[[-0.02451760135591,0.035502124577761,0.068593077361584],[0.13752083480358,-0.075571246445179,0.077345050871372],[-0.073770098388195,-0.10566042363644,-0.15710435807705]],[[0.027236964553595,0.13442850112915,-0.017657110467553],[-0.076543636620045,0.088038086891174,0.05265299603343],[-0.027532564476132,-0.01089421659708,-0.05149257928133]],[[-0.057702247053385,0.0017027127323672,-0.12181171029806],[-0.081141084432602,-0.079249486327171,-0.052850112318993],[-0.11970471590757,-0.096746705472469,0.018654607236385]],[[-0.048956818878651,-0.063510730862617,-0.11891867220402],[-0.024689581245184,-0.048465400934219,0.021379075944424],[-0.0093750953674316,-0.01084116101265,-0.060318157076836]],[[0.017027374356985,-0.046083569526672,-0.026980470865965],[0.099782861769199,-0.040626123547554,-0.067405886948109],[-0.041905160993338,-0.019001530483365,-0.1098392829299]],[[0.032854426652193,-0.025574568659067,-0.10478869825602],[0.0034391407389194,0.016811920329928,-0.12749487161636],[3.5895689507015e-05,-0.016285253688693,-0.13702762126923]],[[-0.099577181041241,-0.09352533519268,0.070536464452744],[-0.092534549534321,-0.0012752742040902,-0.0016756106633693],[-0.060603514313698,-0.050597462803125,0.0094335833564401]],[[-0.060988288372755,-0.00034782476723194,-0.002231547376141],[0.045588258653879,0.094192199409008,0.17116436362267],[0.005595579277724,-0.014014834538102,0.098431453108788]],[[0.049425877630711,-0.097380451858044,-0.20977938175201],[0.19214035570621,0.093335628509521,0.25886207818985],[-0.0029345583170652,0.038175966590643,-0.078862376511097]]],[[[0.044193889945745,0.15457019209862,-0.044196467846632],[-0.10664644092321,0.1194516569376,0.065398797392845],[-0.17385886609554,0.19293549656868,0.11666993051767]],[[-0.055060628801584,-0.092754133045673,0.0018345722928643],[0.10032804310322,-0.0116529148072,0.028343798592687],[-0.038444545120001,-0.26349478960037,-0.15416561067104]],[[-0.017129948362708,0.061528898775578,0.14758950471878],[0.064137503504753,0.058420170098543,0.19180764257908],[0.15931794047356,-0.15004658699036,0.094742059707642]],[[-0.32814183831215,-0.11997251957655,-0.09720417112112],[-0.10291349887848,0.0027181443292648,0.045363020151854],[-0.16833907365799,-0.14226333796978,0.35472333431244]],[[0.080014362931252,0.39577904343605,-0.13805355131626],[-0.13633398711681,0.26529121398926,-0.016936302185059],[-0.054677192121744,0.10127042979002,-0.037930775433779]],[[-0.15850573778152,0.077050678431988,-0.083135642111301],[-0.064365185797215,-0.053808309137821,-0.035531349480152],[-0.17199343442917,-0.044300749897957,0.23257730901241]],[[-0.10372941195965,-0.0013654493959621,-0.11106325685978],[-0.039817493408918,-0.013265049085021,0.11356630176306],[0.14083208143711,0.17548541724682,0.11562466621399]],[[0.035503264516592,0.33786445856094,-0.13303409516811],[-0.091282293200493,0.09530346095562,-0.038269653916359],[-0.2389073073864,-0.088747180998325,-0.052450720220804]],[[0.1599970459938,0.11787330359221,-0.044665560126305],[0.042854495346546,0.032736118882895,-0.075547501444817],[0.053156767040491,0.024792682379484,-0.0061126733198762]],[[-0.18002854287624,-0.026114484295249,0.1080024689436],[-0.055645477026701,-0.04250044003129,-0.027764843776822],[0.19935223460197,-0.29403233528137,-0.07301989197731]],[[0.16054649651051,0.005931235384196,-0.075313493609428],[-0.0063140918500721,0.038099240511656,0.072185441851616],[-0.10930474102497,0.076338417828083,0.033303987234831]],[[-0.22556105256081,0.091376416385174,0.010802916251123],[0.028954435139894,0.071872152388096,-0.063972480595112],[0.18647599220276,0.095884971320629,-0.034415885806084]],[[0.032983832061291,-0.18333527445793,-0.13025143742561],[-0.046044293791056,-0.053116030991077,-0.1420487165451],[0.11769150942564,-0.1045213341713,0.086587525904179]],[[-0.14907445013523,-0.060188993811607,-0.097941368818283],[0.035983324050903,-0.076466485857964,-0.0036216320004314],[0.063870429992676,-0.19350798428059,-0.040893882513046]],[[-0.037676066160202,-0.020415533334017,0.12543171644211],[0.0015238601481542,-0.045023448765278,0.039922747761011],[0.23694229125977,0.0047541153617203,-0.14528837800026]],[[-0.010007550008595,0.045765195041895,0.15091662108898],[-0.10904701799154,-0.049768317490816,-0.10996250808239],[-0.077000580728054,0.075514182448387,-0.059971667826176]],[[0.11372420936823,-0.11321108788252,-0.058671694248915],[-0.058456674218178,-0.01795225776732,-0.17612735927105],[-0.014464934356511,-0.0093766506761312,-0.12562525272369]],[[-0.01648873090744,0.076929435133934,-0.099286668002605],[-0.027391528710723,0.11865568161011,-0.12831304967403],[-0.014394431374967,0.16019347310066,-0.18812341988087]],[[-0.00055730604799464,0.02543131262064,0.095040485262871],[-0.1773809492588,0.02442305535078,0.071015901863575],[-0.11894158273935,-0.055832017213106,-0.14731456339359]],[[-0.099880583584309,-0.011281678453088,0.0048270877450705],[-0.100141890347,-0.067417539656162,-0.016440195962787],[0.050111293792725,0.0056738411076367,-0.094827741384506]],[[-0.10843484848738,0.12449042499065,-0.083173654973507],[-0.097608581185341,0.10290359705687,-0.074014365673065],[-0.23940767347813,-0.104163646698,0.2351386398077]],[[-0.084225386381149,-0.095040619373322,-0.035591006278992],[0.056828819215298,0.055407702922821,0.0047561689279974],[-0.072725780308247,0.16276532411575,0.0076918574050069]],[[-0.16879598796368,0.02175872027874,-0.16261734068394],[-0.090403668582439,0.0092774098739028,-0.094138517975807],[0.0090278619900346,0.069410145282745,-0.23871195316315]],[[-0.18336386978626,0.083135232329369,-0.20601107180119],[-0.2210388481617,-0.083154708147049,0.12486128509045],[-0.023316601291299,-0.049880068749189,0.13243013620377]],[[-0.022024907171726,0.24993892014027,-0.069348931312561],[-0.097442276775837,0.035475544631481,0.089756019413471],[-0.089890167117119,-0.025372361764312,0.067735739052296]],[[-0.10732934623957,-0.075752921402454,-0.079513512551785],[-0.05947083979845,0.13287943601608,-0.062958352267742],[-0.041085500270128,0.35120141506195,-0.046190172433853]],[[0.34506621956825,0.026753367856145,-0.023238491266966],[0.25046277046204,-0.082684367895126,0.093666478991508],[0.40938496589661,-0.050471711903811,0.026701701804996]],[[-0.14180397987366,0.060133796185255,-0.15069180727005],[0.16392052173615,0.19553881883621,-0.1444415897131],[0.051539313048124,-0.063875205814838,-0.10937896370888]],[[-0.14255785942078,-0.076516434550285,-0.020587831735611],[0.056922536343336,-0.021602092310786,-0.11728789657354],[-0.15800611674786,-0.08342270553112,-0.1183293685317]],[[0.053419504314661,0.079346597194672,0.079915225505829],[-0.045885678380728,-0.0011209727963433,0.12116115540266],[-0.13363678753376,-0.072747878730297,0.03360765054822]],[[0.12792448699474,0.08235627412796,-0.08296100795269],[-0.10941658169031,0.051703728735447,-0.042919084429741],[-0.066972456872463,-0.078609742224216,-0.00080800731666386]],[[-0.01937535777688,0.04491962864995,-0.30892929434776],[-0.16841793060303,0.044088248163462,-0.10422424226999],[-7.2176873800345e-05,-0.060523182153702,0.058430787175894]],[[-0.10318578779697,-0.27262082695961,-0.067989863455296],[0.052145879715681,0.038685977458954,0.033383846282959],[0.006432852242142,0.046147547662258,0.13547441363335]],[[-0.24430871009827,0.051407057791948,-0.026549262925982],[-0.11808948218822,-0.033422041684389,-0.023616416379809],[0.031147530302405,0.12548308074474,0.11173802614212]],[[-0.053773645311594,-0.11526016891003,-0.09177216142416],[0.0010113754542544,0.11657448858023,-0.22340922057629],[-0.040177993476391,-0.0075731971301138,-0.38473591208458]],[[-0.20969814062119,-0.0029674067627639,-0.089214012026787],[-0.34914374351501,0.017292764037848,0.042026713490486],[-0.16326585412025,0.05366350337863,-0.044483635574579]],[[-0.0035639107227325,-0.017952129244804,0.098494030535221],[-0.023064333945513,-0.12332501262426,-0.028608668595552],[-0.0042814738117158,0.12546360492706,-0.19785197079182]],[[-0.1545557975769,0.048812352120876,0.224773183465],[-0.096772074699402,0.038626808673143,-0.0069205807521939],[-0.021755056455731,0.020636051893234,-0.030747681856155]],[[0.01130214240402,0.086340993642807,-0.096745751798153],[0.070911958813667,0.0059079076163471,-0.070015951991081],[-0.13174532353878,0.062304925173521,0.083068415522575]],[[-0.051460351794958,0.083796806633472,-0.14073127508163],[-0.019275352358818,0.036446463316679,-0.079281464219093],[-0.018758228048682,0.16935634613037,0.18730732798576]],[[0.2925617992878,0.066627778112888,-0.0096945594996214],[0.2166103720665,-0.076161444187164,-0.00888991355896],[0.0042239921167493,-0.054798010736704,-0.04008649662137]],[[-0.057936817407608,0.103300742805,-0.052039112895727],[-0.063411869108677,0.096323773264885,-0.012520858086646],[0.038290247321129,-0.12734258174896,-0.077861860394478]],[[-0.11543848365545,0.017364284023643,-0.016995832324028],[0.11621751636267,-0.10623098164797,-0.12918326258659],[0.20349703729153,-0.00049255561316386,-0.23972330987453]],[[-0.13139574229717,-0.20418517291546,-0.014179496094584],[-0.036419127136469,-0.14070621132851,0.062471099197865],[0.069683007895947,-0.06060753017664,0.082827888429165]],[[0.12875792384148,0.067431502044201,0.097741983830929],[0.17789249122143,-0.1142236739397,-0.06230079382658],[0.11330044269562,-0.063857153058052,-0.11548651009798]],[[-0.059490371495485,-0.15328001976013,0.1760651320219],[-0.090745367109776,-0.18485037982464,0.10982446372509],[-0.041346725076437,-0.1221624687314,0.2991264462471]],[[0.098255671560764,-0.023545809090137,-0.22507750988007],[-0.05081632360816,-0.010434268973768,-0.078782960772514],[-0.35387599468231,-0.030855882912874,-0.014624265953898]],[[-0.095001801848412,0.031591206789017,0.035387527197599],[-0.029894690960646,-0.074135206639767,-0.045700319111347],[0.17269951105118,-0.0046508912928402,0.052300754934549]],[[-0.081859655678272,0.0096677299588919,-0.14621102809906],[-0.26874384284019,0.067804589867592,-0.048976559191942],[-0.081523507833481,0.070701874792576,-0.1135647892952]],[[0.019536502659321,-0.076886795461178,0.043999202549458],[-0.037593964487314,-0.089096948504448,0.16672945022583],[0.066631272435188,-0.0040607191622257,0.051529388874769]],[[-0.088627390563488,-0.016123376786709,0.15992327034473],[-0.20887772738934,-0.02791147492826,-0.033689990639687],[-0.053274303674698,-0.17519870400429,-0.088133677840233]],[[0.11849416792393,0.02558221668005,0.21440027654171],[0.12847894430161,-0.030361980199814,-0.081653319299221],[0.13098646700382,-0.09325697273016,-0.2842678129673]],[[0.031531728804111,-0.11664624512196,-0.044016368687153],[-0.033639818429947,-0.1272539794445,-0.010676039382815],[0.037665586918592,-0.0069786249659956,0.038514003157616]],[[-0.057698030024767,0.10543613880873,-0.058406990021467],[-0.074993573129177,0.067400239408016,-0.14105507731438],[-0.073992647230625,-0.050263918936253,-0.13570530712605]],[[-0.15415994822979,-0.016315018758178,-0.015408431179821],[-0.051499012857676,0.033428952097893,0.083922706544399],[0.046248905360699,0.29366561770439,-0.02769928611815]],[[-0.18269081413746,-0.13305781781673,0.021804474294186],[-0.082033306360245,-0.092280998826027,0.0597959831357],[-0.28979828953743,0.25137087702751,-0.10174001008272]],[[-0.078029952943325,0.040200989693403,0.1893597394228],[0.051436528563499,-0.027978520840406,-0.0088449763134122],[0.26352527737617,-0.0056510786525905,-0.039899170398712]],[[-0.067140698432922,-0.18432423472404,-0.20963090658188],[-0.090036116540432,-0.12101177126169,-0.034767244011164],[-0.090543568134308,-0.12769620120525,-0.22049634158611]],[[-0.085336074233055,-0.22588531672955,-0.18060354888439],[-0.042153105139732,-0.1348088234663,-0.09313652664423],[0.10420781373978,-0.010826910845935,-0.26596555113792]],[[-0.12011702358723,-0.058511152863503,0.0085561815649271],[-0.0021145176142454,0.006082805339247,0.041940461844206],[0.035413943231106,0.046727269887924,-0.11488480865955]],[[-0.15377056598663,0.19357904791832,-0.028177328407764],[-0.1268190741539,0.076445855200291,-0.18539156019688],[-0.21812652051449,-0.11139576882124,-0.39878144860268]],[[-0.025420805439353,-0.075240097939968,-0.084261320531368],[-0.058828923851252,-0.24101823568344,0.1395497918129],[-0.19198979437351,-0.15709643065929,0.0013135531917214]],[[0.027548559010029,0.085908599197865,0.14216011762619],[-0.068183101713657,0.035022899508476,0.13379123806953],[0.21575377881527,-0.085068322718143,-0.03482761234045]],[[-0.1095864623785,0.18408906459808,-0.11143596470356],[-0.045731540769339,0.048271019011736,-0.047084782272577],[0.058732569217682,0.10030757635832,0.044725697487593]],[[-0.19273695349693,-0.0027444697916508,-0.024204663932323],[0.0076681468635798,-0.10836406797171,0.050229523330927],[0.080117851495743,-0.14021484553814,0.33621269464493]],[[0.38754752278328,-0.22132302820683,0.23767617344856],[0.096528634428978,-0.10887668281794,0.17425952851772],[0.01995681039989,0.11894712597132,-0.044521704316139]],[[-0.038628667593002,0.011385166086257,-0.11435696482658],[-0.029579620808363,0.26078802347183,-0.018734097480774],[0.004007626324892,0.086951211094856,-0.075659923255444]],[[-0.18376380205154,-0.10096806287766,-0.092272065579891],[-0.17633247375488,-0.0703309699893,0.06719408929348],[-0.097713284194469,-0.019978933036327,-0.038984321057796]],[[0.10327313095331,-0.0010325758485124,-0.045822579413652],[0.092657364904881,-0.033127687871456,-0.019662482663989],[-0.031188039109111,-0.16806297004223,-0.10256062448025]],[[-0.028286088258028,0.18294291198254,-0.1551728695631],[-0.012055958621204,0.10639578849077,0.049057673662901],[-0.033313546329737,-0.17108510434628,0.0059986617416143]],[[-0.032835502177477,0.086847685277462,-0.0036269631236792],[-0.1185494363308,0.0041980412788689,0.071993432939053],[-0.11373156309128,-0.033444669097662,-0.013553124852479]],[[-0.02704693377018,0.10479041934013,0.034220647066832],[-0.076487883925438,-0.01008424628526,-0.025935515761375],[-0.21337735652924,-0.061687849462032,0.12621377408504]],[[-0.021534575149417,-0.092555426061153,0.11922939121723],[0.036822784692049,-0.20184805989265,-0.0024023787118495],[-0.018895363435149,-0.023550163954496,-0.11925207823515]],[[-0.1790317595005,-0.041033446788788,0.16185481846333],[-0.041156824678183,-0.07987055927515,0.007715932559222],[0.03192126005888,0.078205175697803,-0.21470728516579]],[[0.065785050392151,0.027521656826138,-0.011818715371192],[-0.0452068336308,-0.10352778434753,-0.24639689922333],[-0.10801920294762,-0.044552210718393,-0.058975551277399]],[[0.070626229047775,-0.071495942771435,0.048073090612888],[-0.0073585966601968,0.023270530626178,-0.047701466828585],[0.12439725548029,-0.14599853754044,-0.15715743601322]],[[-0.015158708207309,-0.038006749004126,0.18649671971798],[-0.10343838483095,-0.078107461333275,0.19639974832535],[0.12732514739037,0.021874103695154,0.019526990130544]],[[0.12675015628338,-0.15318614244461,0.15053252875805],[-0.14144568145275,-0.10920884460211,0.15932483971119],[-0.026153985410929,-0.16748283803463,-0.064072452485561]],[[0.40513548254967,0.0066100317053497,0.0016168471192941],[0.033726748079062,-0.063636556267738,0.17310176789761],[0.065586850047112,-0.10084228217602,0.21759530901909]],[[0.05915042757988,0.005093895830214,-0.15599122643471],[-0.062669299542904,0.15783530473709,-0.21415473520756],[0.086298197507858,-0.18777306377888,-0.10749923437834]],[[-0.094085954129696,-0.070912763476372,-0.028002997860312],[0.16914530098438,-0.17533172667027,0.12880007922649],[0.033278372138739,-0.033009652048349,0.26457619667053]],[[-0.10249824821949,0.0067434059455991,0.0097977975383401],[0.27779552340508,0.070236593484879,-0.090360634028912],[0.17955127358437,-0.088518969714642,0.01535994745791]],[[0.037225715816021,-0.092181473970413,-0.034279134124517],[0.20002499222755,0.16044640541077,0.09822578728199],[0.18019297719002,-0.042394425719976,-0.14089907705784]],[[-0.18134027719498,-0.085166588425636,-0.17961885035038],[-0.192432269454,0.049847606569529,-0.048447404056787],[-0.18521632254124,-0.13824336230755,-0.17045645415783]],[[0.114242836833,0.0043692192994058,0.085364229977131],[0.053034070879221,-0.015951637178659,0.20899201929569],[0.067513696849346,0.0026748303789645,-0.043693900108337]],[[0.034060250967741,0.053771704435349,0.14142836630344],[0.056331850588322,-0.070589981973171,-0.053504258394241],[0.033271118998528,-0.049471780657768,0.0020167212933302]],[[0.32664254307747,0.021708726882935,-0.033557955175638],[0.055267553776503,-0.03604606166482,-0.045115809887648],[0.03486941754818,-0.0049431519582868,0.22361935675144]],[[-0.14637364447117,0.0068724071606994,0.051829647272825],[-0.10461820662022,0.13318602740765,0.007670626975596],[-0.035428296774626,0.069871440529823,-0.11638985574245]],[[-0.14183610677719,0.16583327949047,-0.041214101016521],[-0.16302229464054,0.10187432914972,-0.18747924268246],[-0.20555853843689,0.1963717341423,-0.087368756532669]],[[0.077600479125977,-0.062100559473038,-0.14971986413002],[-0.084646284580231,-0.13831369578838,-0.023033354431391],[-0.062557354569435,-0.020730109885335,-0.10445178300142]],[[0.033932611346245,0.14772163331509,-0.069430276751518],[-0.015255681239069,0.041210386902094,-0.062517285346985],[-0.18160556256771,-0.12809881567955,0.06930760294199]],[[0.084583535790443,0.17407447099686,-0.15513506531715],[0.048247333616018,0.084922157227993,-0.06713479757309],[-0.28608822822571,-0.056643597781658,-0.21067047119141]],[[-0.093016162514687,0.0048819975927472,0.14960777759552],[0.090552121400833,-0.025997452437878,0.25393804907799],[-0.091387562453747,0.015981843695045,0.041433647274971]],[[-0.11400888115168,0.053899463266134,-0.11604142934084],[-0.080918602645397,0.061081305146217,-0.035553183406591],[0.030976517125964,-0.031236128881574,0.033429935574532]],[[-0.01758467592299,0.083437047898769,0.14933690428734],[-0.19117468595505,0.055123068392277,-0.0567337423563],[0.0059428410604596,0.044702209532261,-0.093800634145737]],[[-0.033071734011173,-0.30219104886055,-0.089894689619541],[0.078943863511086,-0.23944519460201,0.094404868781567],[0.057630758732557,0.068903900682926,0.13334469497204]],[[-0.1891837567091,0.0058567067608237,-0.034108359366655],[0.091497860848904,-0.049897257238626,-0.049782816320658],[-0.13280335068703,-0.02661425806582,-0.12170942127705]],[[0.25312632322311,-0.0099071254953742,0.0088708372786641],[0.052294846624136,-0.010573838837445,-0.21286380290985],[0.096567876636982,0.087791472673416,-0.22083610296249]],[[-0.044095609337091,-0.072793483734131,0.15989604592323],[0.037399381399155,0.07797609269619,-0.23262587189674],[-0.17842316627502,0.043123755604029,-0.36971122026443]],[[-0.07289557158947,0.39208260178566,0.096932902932167],[-0.15481127798557,0.17365831136703,-0.10843594372272],[-0.16128838062286,0.056430768221617,-0.23242086172104]],[[-0.1949924826622,-0.1610459536314,0.040696557611227],[-0.039543073624372,-0.15044811367989,-0.0072142160497606],[-0.12440074235201,-0.02849193662405,0.03133350610733]],[[-0.0092945452779531,-0.017939548939466,-0.034180119633675],[0.065948255360126,0.16738514602184,0.03388299420476],[0.056433290243149,0.065166473388672,-0.083328075706959]],[[-0.20607531070709,-0.02548942156136,-0.036925945430994],[-0.088504582643509,-0.078939869999886,0.028450734913349],[0.42637073993683,-0.12289205938578,-0.061652157455683]],[[-0.016632383689284,-0.082518182694912,-0.13613855838776],[0.11229123175144,0.070982158184052,-0.05711318179965],[-0.037159010767937,0.058379508554935,0.057401854544878]],[[0.02378960326314,-0.11461102962494,0.012560191564262],[0.089465864002705,-0.15285266935825,0.026233138516545],[-0.0059483083896339,0.00068566470872611,0.15271700918674]],[[-0.08378779143095,0.11916755884886,-0.46293678879738],[0.15675267577171,0.044483166188002,-0.1703085899353],[0.16952735185623,-0.045616321265697,0.12081228941679]],[[-0.053538743406534,0.06625884771347,0.11716677993536],[-0.10289145261049,0.024654414504766,0.055677212774754],[-0.23561000823975,-0.10403546690941,0.037086747586727]],[[-0.020742747932673,0.041897535324097,-0.13144026696682],[0.060390803962946,0.049477133899927,0.088343806564808],[-0.018752489238977,0.055265635251999,0.020985510200262]],[[0.067256130278111,0.055145397782326,0.17877335846424],[0.035413209348917,-0.18722435832024,-0.11081078648567],[-0.016954850405455,-0.18178653717041,0.099744498729706]],[[0.065196610987186,-0.20679315924644,0.13019561767578],[0.2539883852005,-0.066620819270611,0.16686058044434],[0.26315230131149,-0.022230381146073,0.11563643813133]],[[-0.056938771158457,-0.012172510847449,-0.095634303987026],[0.056603878736496,-0.076820895075798,-0.067224562168121],[0.039527092128992,-0.057911496609449,0.0072128805331886]],[[-0.0043951622210443,0.0045396396890283,0.0036108235362917],[0.071164578199387,-0.13658514618874,-0.056583393365145],[-0.069550454616547,-0.15435640513897,-0.011108997277915]],[[0.053075041621923,0.13561409711838,-0.010573945939541],[0.02882376499474,0.027646578848362,-0.1158627346158],[0.00038634301745333,-0.0075309653766453,-0.019212316721678]],[[0.057405032217503,0.058199182152748,0.15002554655075],[-0.061149697750807,-0.04864563792944,0.033621996641159],[0.12304189801216,-0.025508370250463,0.028455104678869]],[[0.35500380396843,0.14829286932945,0.053960718214512],[0.10011956095695,-0.012029238976538,0.028858987614512],[0.0055463467724621,-0.033526137471199,0.15706101059914]],[[0.13091313838959,-0.011748285032809,0.027710409834981],[-0.04399174451828,-0.17172047495842,-0.035772331058979],[0.014143765904009,-0.060476314276457,0.20878881216049]],[[0.1267307549715,-0.027050541713834,-0.0038716262206435],[0.061187103390694,-0.13770784437656,0.046890575438738],[0.045766454190016,0.12921389937401,0.17142124474049]],[[0.087225645780563,-0.066963128745556,0.22516757249832],[0.19456678628922,-0.088129043579102,-0.0067671714350581],[0.044599372893572,-0.10656597465277,0.050750032067299]],[[0.013148942962289,-0.12938964366913,0.26247316598892],[0.1466138958931,-0.11688183248043,0.042415998876095],[0.094984769821167,-0.011292818002403,-0.078101083636284]],[[-0.058811515569687,-0.05064807087183,-0.036986146122217],[0.12014290690422,-0.017789445817471,-0.077801749110222],[-0.063006766140461,0.11133664101362,-0.025063535198569]],[[-0.050959646701813,0.031651675701141,0.021693021059036],[0.0019622393883765,-0.0216352827847,-0.033783789724112],[-0.11307063698769,-0.083402462303638,-0.099388629198074]],[[0.014537333510816,-0.048060573637486,-0.038956560194492],[0.0017228479264304,0.027332227677107,-0.0099988412111998],[-0.014994439668953,-0.059607077389956,0.0062688337638974]],[[-0.25996667146683,-0.2589328289032,-0.16753567755222],[-0.12201790511608,-0.049422070384026,-0.018656378611922],[-0.11378824710846,0.068098798394203,0.21087519824505]],[[0.049089178442955,0.050692696124315,-0.11445128917694],[0.092000275850296,0.15223258733749,-0.045340199023485],[-0.17082248628139,0.16736403107643,0.094497077167034]],[[-0.052581209689379,-0.15764208137989,0.046825144439936],[0.039542738348246,-0.00062451016856357,-0.093523323535919],[-0.085897915065289,0.086353644728661,-0.11936924606562]],[[0.064301773905754,0.13250379264355,-0.01738359965384],[-0.044827505946159,0.16018769145012,-0.25051924586296],[-0.11675649881363,-0.073627658188343,0.071816965937614]],[[-0.026964001357555,0.14322802424431,0.024396477267146],[-0.092306293547153,-0.041399519890547,-0.083710908889771],[-0.14215512573719,0.039338458329439,-0.063920900225639]],[[0.0073209945112467,-0.074678063392639,0.20357020199299],[0.080368094146252,-0.0079390201717615,0.10334232449532],[0.17167435586452,-0.0073497439734638,0.10229158401489]]],[[[0.042507644742727,-0.024954210966825,-0.024314723908901],[-0.0043278555385768,-0.0072617698460817,0.060057159513235],[-0.064097993075848,-0.018651446327567,0.076607689261436]],[[0.0062372949905694,0.029240256175399,0.024545162916183],[-0.0066613093949854,0.028738556429744,0.052352573722601],[0.011109240353107,0.07281831651926,-0.052467551082373]],[[0.059882115572691,-0.035001635551453,-0.025862900540233],[0.075311295688152,-0.075913108885288,-0.047871999442577],[-0.036221027374268,0.06137190759182,-0.056508287787437]],[[0.021522162482142,-0.050224635750055,-0.049073997884989],[0.015917493030429,-0.099228426814079,0.028708308935165],[0.034841906279325,-0.1034481972456,-0.043115139007568]],[[0.015036456286907,0.024669481441379,0.035062085837126],[-0.051688984036446,0.069419287145138,-0.015108434483409],[-0.046782366931438,0.015790173783898,0.034818928688765]],[[-0.038889121264219,-0.015847500413656,0.021773301064968],[0.081253588199615,-0.0653395652771,-0.058114383369684],[0.026483610272408,-0.084126777946949,-0.05337480455637]],[[-0.0082904286682606,-0.059030849486589,-0.022399397566915],[-0.046472579240799,-0.036686733365059,-0.04934723675251],[0.033206284046173,0.049736153334379,0.00011929169704672]],[[0.051319446414709,0.0090863686054945,0.051221244037151],[-0.047618709504604,0.031117906793952,0.045817255973816],[-0.034974709153175,0.0061410870403051,-0.033134661614895]],[[-0.030429925769567,0.035768713802099,0.01736955717206],[-0.047778822481632,0.065671794116497,-0.040377631783485],[0.031892776489258,0.073570929467678,0.013602454215288]],[[-0.059641569852829,-0.02961353212595,-0.090578354895115],[-0.0090893097221851,0.017303682863712,-0.10534530878067],[0.014415640383959,-0.052294563502073,0.00048852839972824]],[[0.042197100818157,0.023301275447011,0.088220179080963],[0.045141916722059,0.057044580578804,0.019427143037319],[0.0023220330476761,0.021156430244446,-0.019558466970921]],[[0.052799601107836,-0.031527578830719,-0.097386851906776],[0.061384398490191,0.054539650678635,-0.0126574318856],[0.021608170121908,0.01519410405308,0.077191777527332]],[[-0.041394636034966,-0.026853466406465,-0.038430437445641],[0.042946711182594,-0.028363488614559,-0.058828685432673],[0.065583482384682,-0.019055884331465,-0.016420623287559]],[[0.036150172352791,-0.021128717809916,-0.074166305363178],[0.027282049879432,-0.066731482744217,-0.045435860753059],[0.064856007695198,-0.030638389289379,-0.089234404265881]],[[-0.024055328220129,-0.01758873835206,0.02153268456459],[-0.055439330637455,-0.0018715261248872,-0.045993555337191],[-0.021483283489943,-0.015257393009961,0.023130245506763]],[[-0.0056685567833483,0.0039167827926576,0.11387921124697],[0.054037537425756,-0.023474268615246,0.027851736173034],[0.002986861160025,-0.05707561224699,-0.02356761880219]],[[-0.016333669424057,-0.021708942949772,-0.023527048528194],[0.045003853738308,0.02909935079515,0.005314682610333],[0.0049342857673764,-0.034883826971054,0.095752470195293]],[[0.068173132836819,-0.012064815498888,0.068838223814964],[0.085975639522076,0.035203449428082,-0.0091912085190415],[-0.030412364751101,-0.0056250523775816,0.0051903449930251]],[[0.13056944310665,0.014540240168571,-0.10758067667484],[0.049990504980087,-0.082183219492435,-0.01128335762769],[-0.013367275707424,0.041535075753927,0.028673080727458]],[[-0.029139747843146,0.04539380595088,-0.02946000918746],[0.076596342027187,0.043205734342337,-0.030925353989005],[-0.01628833077848,0.084365285933018,-0.08190494030714]],[[-0.059785146266222,0.021288210526109,0.014742062427104],[-0.087178103625774,-0.023697387427092,0.047083474695683],[-0.053351607173681,0.0054390300065279,-0.029816841706634]],[[-0.016472864896059,0.032121445983648,0.0035083077382296],[-0.012432934716344,0.074533469974995,0.0057183504104614],[-0.034120794385672,-0.015638681128621,-0.0048440056852996]],[[-0.092943333089352,-0.039601605385542,-0.039529953151941],[0.019542522728443,0.061752311885357,-0.010322386398911],[0.058806378394365,0.082854136824608,-0.0039856438525021]],[[0.031855676323175,0.012758020311594,0.015696113929152],[0.01262884400785,-0.079454734921455,-0.05458565056324],[0.067905627191067,-0.041193667799234,-0.010716966353357]],[[-0.016189416870475,-0.050666525959969,0.016034005209804],[0.014394289813936,0.029696116223931,0.040076363831758],[0.022154305130243,-0.096467331051826,0.0075624114833772]],[[-0.014766396954656,0.032713364809752,-0.028454562649131],[-0.079367250204086,0.038072247058153,-0.0608922354877],[-0.077232465147972,0.083016276359558,0.081669256091118]],[[-0.046670768409967,-0.068113714456558,-0.082960411906242],[0.035106245428324,0.013511825352907,-0.036008335649967],[-0.011809222400188,0.0085629094392061,-0.01509424764663]],[[-0.0072685834020376,0.10673128813505,-0.056079346686602],[-0.0054323831573129,-0.061312548816204,0.031920362263918],[-0.031495168805122,0.00046703525003977,0.085705243051052]],[[0.096412912011147,0.0045502781867981,0.031335160136223],[-0.026687674224377,0.025074439123273,-0.10811275988817],[0.069555789232254,-0.01041245739907,0.0057560293935239]],[[0.020410070195794,-0.0080455662682652,0.020567879080772],[0.081819199025631,-0.034021094441414,0.0030168744269758],[0.014878670684993,-0.010529449209571,0.0039290767163038]],[[-0.032716099172831,-0.025737013667822,-0.03727425262332],[-0.039558526128531,0.020313706248999,0.023783583194017],[-0.022011851891875,0.10024093836546,0.03030276671052]],[[0.0017567577306181,0.069736085832119,-0.031287707388401],[0.025645360350609,0.021802812814713,0.072843074798584],[0.082272656261921,0.045301117002964,0.037693150341511]],[[-0.053560558706522,0.076134882867336,0.070638284087181],[-0.070197872817516,0.013111675158143,0.087374828755856],[0.029434695839882,0.084451586008072,0.012394678778946]],[[0.046764243394136,0.011644356884062,-0.00846026558429],[0.058437503874302,0.018087612465024,0.007053763139993],[-0.0017525206785649,0.010886398144066,-0.019211804494262]],[[0.0068809264339507,-0.005737267434597,-0.0078123500570655],[-0.026050442829728,0.03288697078824,0.017885690554976],[-0.034491520375013,0.010598947294056,-0.040567427873611]],[[0.066778644919395,-0.037314429879189,0.00082531804218888],[-0.031743388622999,0.058236751705408,0.052908286452293],[-0.052579883486032,0.025015465915203,0.042187642306089]],[[0.013834901154041,-0.005054157692939,-0.037103708833456],[-0.016433283686638,-0.067495532333851,-0.022274537011981],[0.0058186333626509,-0.0040172291919589,0.011245656758547]],[[0.025590218603611,0.044247437268496,0.12081096321344],[0.038468189537525,0.057248000055552,0.075115583837032],[-0.0056049395352602,-0.01943944580853,-0.11639814078808]],[[0.060430739074945,0.053835220634937,0.066709592938423],[0.059346657246351,-0.0074794637039304,0.068628057837486],[0.032902304083109,0.024817444384098,0.028785420581698]],[[-0.010172101669014,-0.011577970348299,-0.063400976359844],[0.064228676259518,-0.041273713111877,0.072246417403221],[-0.077006697654724,0.014894348569214,0.049738071858883]],[[0.020404612645507,0.045765653252602,-0.04766908288002],[0.058944690972567,0.024235853925347,-0.018676852807403],[-0.04202913865447,0.055818151682615,-0.076299749314785]],[[0.042393431067467,-0.013390996493399,-0.03524275124073],[-0.014586320146918,-0.043423522263765,-0.15128147602081],[-0.070601612329483,-0.058196235448122,-0.054835043847561]],[[0.024517647922039,-0.074718296527863,0.011693889275193],[0.0085166990756989,-0.037630792707205,-0.05732211843133],[0.0052656857296824,-0.017548562958837,0.033626332879066]],[[-0.044192831963301,-0.0036998735740781,0.011207806877792],[-0.058239828795195,0.029804468154907,0.0024262317456305],[-0.056718409061432,-0.0090446965768933,0.048918720334768]],[[-0.10333971679211,0.00039787098648958,-0.00024197829770856],[-0.003922778647393,0.024453232064843,0.03465697914362],[0.097957044839859,0.068680815398693,0.033638041466475]],[[0.0028194384649396,-0.038246255367994,0.041648548096418],[0.011013898067176,-0.032414823770523,0.0060434201732278],[0.061421327292919,-0.0021233374718577,-0.001950831967406]],[[0.025800451636314,-0.040241811424494,-0.069071486592293],[0.035016570240259,0.038885239511728,-0.046245761215687],[-0.015365663915873,-0.0035375675652176,-0.029806271195412]],[[0.0024944762699306,-0.029340956360102,-0.052533458918333],[-0.038311187177896,0.0083807138726115,-0.024551326408982],[-0.051089555025101,0.036409217864275,0.038685262203217]],[[0.0011854682816193,0.031616874039173,0.019062453880906],[-0.027605503797531,0.008573935367167,-0.034831065684557],[-0.063137911260128,0.032570868730545,0.010810738429427]],[[-0.015203133225441,-0.0046502398326993,-0.070509746670723],[-0.049480274319649,-0.06601956486702,-0.050504274666309],[-0.057671632617712,0.054733213037252,-0.0066500371322036]],[[-0.045401349663734,0.1302557438612,0.0034224195405841],[0.0049747317098081,0.005441184155643,0.11559277027845],[-0.038112696260214,-0.074089206755161,0.077073998749256]],[[-0.05083942040801,0.012607442215085,0.0093181049451232],[-0.01054076012224,-0.023808626458049,0.012699043378234],[0.052765376865864,-0.033185679465532,-0.044453978538513]],[[-0.014398980885744,0.061263903975487,-0.016033755615354],[0.0011739559704438,-0.0030630561523139,-0.052402995526791],[-0.016637086868286,-0.027148675173521,-0.01319095492363]],[[-0.0005640501040034,0.036464460194111,0.0072369822300971],[0.071497246623039,-0.012187597341835,-0.042798992246389],[-0.0021668039262295,0.085689589381218,0.022478865459561]],[[0.061404205858707,0.085486821830273,0.039243191480637],[0.10781319439411,0.063017472624779,0.062971174716949],[0.006807962898165,0.022247970104218,-0.051487188786268]],[[0.011348675005138,0.085651241242886,-0.01600044220686],[0.019084066152573,-0.070550829172134,-0.036845739930868],[-0.059794537723064,-0.11528512835503,-0.0020740726031363]],[[-0.0042627872899175,-0.074639976024628,-0.035395592451096],[-0.037977740168571,-0.0239597260952,0.017908357083797],[-0.0031821259763092,0.032818753272295,-0.030709562823176]],[[-0.024773858487606,0.038484618067741,-0.0098809720948339],[-0.030601397156715,0.052959598600864,-0.027771612629294],[0.01875901222229,-0.016720583662391,0.055535744875669]],[[-0.0020788933616132,0.0068720090202987,-0.015817642211914],[-0.0089285019785166,-0.050915148109198,-0.029664484784007],[-0.053051739931107,-0.026029467582703,-0.031718734651804]],[[-0.045147143304348,-0.024814510717988,0.033573053777218],[-0.075739577412605,-0.05878933519125,-0.047559253871441],[-0.064526736736298,0.024104503914714,-0.039371605962515]],[[-0.0099063087254763,0.011197867803276,0.062979035079479],[0.035053450614214,0.014367490075529,-0.012748093344271],[0.048874601721764,-0.014559179544449,-0.021291188895702]],[[0.070952534675598,0.061138533055782,-0.022606432437897],[0.053719878196716,0.061716966331005,-0.10281425714493],[0.025490019470453,-0.013621657155454,-0.010506946593523]],[[-0.096970610320568,-0.0031059586908668,-0.078811317682266],[-0.0035958280786872,0.013862737454474,-0.079202093183994],[0.0079055791720748,0.099057041108608,-0.011033355258405]],[[-0.04250218346715,0.017630299553275,0.00027249471168034],[0.029802123084664,-0.097890146076679,-0.030287593603134],[-0.00018156156875193,-0.036940321326256,-0.074706591665745]],[[-0.060334526002407,-0.034281779080629,-0.11598858982325],[-0.054627623409033,-0.029554713517427,-0.051314756274223],[-0.089471571147442,8.3189341239631e-05,-0.054057132452726]],[[-0.070662140846252,-0.0047775711864233,-0.051230452954769],[-0.014038765802979,-0.086946412920952,0.010441010817885],[0.0024153690319508,-0.046352844685316,-0.032716203480959]],[[-0.034084293991327,0.075498253107071,-0.085607305169106],[0.065558768808842,-0.051431532949209,-0.031838107854128],[-0.038162793964148,-0.087449386715889,-0.013716357760131]],[[-0.0070639122277498,0.010570730082691,-0.011860742233694],[0.006016003433615,0.036176305264235,0.053177777677774],[-0.071495160460472,0.018144052475691,0.062846302986145]],[[0.027034090831876,0.11838795989752,-0.035657811909914],[-0.048185355961323,-0.031260646879673,-0.025103103369474],[-0.080984719097614,-0.01097487937659,-0.0036815549246967]],[[-0.058921594172716,0.054953824728727,-0.0011807839618996],[-0.0072666760534048,0.00090979185188189,0.020860807970166],[-0.027486003935337,-0.041622459888458,-0.025504767894745]],[[0.0090509690344334,0.0040539633482695,0.03392330929637],[-0.011347554624081,-0.011990854516625,-0.019236074760556],[0.066354498267174,0.0013533619930968,-0.0025408887304366]],[[-0.032934378832579,-0.015520831570029,-0.0076112439855933],[-0.0033221582416445,-0.010558137670159,0.032990448176861],[-0.036212578415871,-0.041981093585491,-0.027531690895557]],[[0.045191694051027,0.020523276180029,0.097909346222878],[-0.01124913059175,-0.0042143114842474,0.014531553722918],[-0.011116112582386,0.026060231029987,0.055750381201506]],[[-0.1111246496439,0.017446400597692,-0.0071830344386399],[-0.070759192109108,-0.065153926610947,-0.033551666885614],[-0.027465960010886,-0.0019789878278971,-0.062537953257561]],[[0.043906476348639,0.031194284558296,0.031729508191347],[0.09951551258564,0.072826735675335,-0.02178736589849],[0.015798952430487,0.061570405960083,0.083251036703587]],[[0.027162995189428,-0.015689626336098,-0.01339051220566],[0.090381652116776,0.020767709240317,-0.026745688170195],[0.073025234043598,0.085341729223728,-0.0015301945386454]],[[-0.030482200905681,-0.07884656637907,0.059857215732336],[-0.02013423293829,0.0098654329776764,0.029945120215416],[-0.028825528919697,0.069881856441498,-0.00085853564087301]],[[-0.053513620048761,-0.0069488049484789,0.012936741113663],[0.028992114588618,0.018948581069708,0.028198011219501],[0.02970977127552,0.0010347415227443,0.062766753137112]],[[0.043378382921219,0.045293778181076,-0.0041767945513129],[-0.009579480625689,0.027640281245112,-0.057224426418543],[-0.05885062739253,0.013360626064241,0.035099662840366]],[[-0.020383816212416,-0.040500108152628,-0.031890861690044],[0.0058811497874558,-0.052804600447416,-0.0080098509788513],[0.0078184185549617,0.048167433589697,0.011175231076777]],[[0.028931975364685,-0.082035519182682,-0.035368680953979],[0.042997568845749,-0.050262629985809,0.0094633819535375],[0.071287415921688,0.011053711175919,-0.054554600268602]],[[0.0032625843305141,-0.057752966880798,0.024495301768184],[-0.0062092244625092,-0.015375199727714,-0.027242302894592],[0.12472285330296,0.028877791017294,-0.01183299254626]],[[-0.025553997606039,-0.094443261623383,0.09491603821516],[-0.044481582939625,0.11292987316847,0.0076886131428182],[0.0044716806150973,-0.024729497730732,-0.032397676259279]],[[-0.02170842513442,-0.047407109290361,-0.027648441493511],[-0.043371289968491,-0.040582213550806,-0.075493007898331],[0.0066238325089216,-0.014432076364756,-0.05009051412344]],[[-0.12468606233597,0.0083967447280884,-0.015915954485536],[-0.026404965668917,0.029124803841114,-0.04520570114255],[-0.030480461195111,-0.0070378249511123,-0.074170306324959]],[[0.037566050887108,-0.062284007668495,-0.0641083791852],[-0.016124986112118,0.075887843966484,0.019288867712021],[0.015103853307664,0.053564470261335,0.023209212347865]],[[-0.017169550061226,-0.036414552479982,0.03357620537281],[-0.021639470010996,-0.11599610745907,-0.030486475676298],[-0.035591531544924,-0.098273001611233,-0.055842630565166]],[[-0.068871460855007,-0.032209809869528,-0.03787088394165],[-0.045412439852953,-0.0062374975532293,0.059651661664248],[0.0013461647322401,-0.07150200009346,-0.0061172591522336]],[[0.0497653670609,0.034124854952097,-0.014172567985952],[-0.018668603152037,-0.053500391542912,-0.033662933856249],[0.02478501200676,-0.0063623148016632,-0.059510968625546]],[[0.021093778312206,0.033047411590815,0.049990374594927],[0.025436716154218,0.043846234679222,0.058264847844839],[-0.0050064921379089,0.054889772087336,0.0065156542696059]],[[0.0032353282440454,0.055922381579876,0.05140445381403],[0.052289124578238,0.018415806815028,-0.014262776821852],[0.021170252934098,-0.093153491616249,-0.041001282632351]],[[0.04785518348217,-0.029330402612686,0.01281450688839],[0.088821902871132,-0.0045816418714821,0.01955734193325],[0.031154334545135,0.076940938830376,-0.062871806323528]],[[0.0084870597347617,0.036625735461712,-0.0073034521192312],[-0.042577277868986,0.063056282699108,-0.0050290217623115],[-0.037411462515593,-0.011632016859949,-0.13630656898022]],[[0.013872882351279,-0.012525038793683,-0.044868435710669],[0.014090635813773,-0.037021372467279,0.04142278060317],[-0.014697388745844,-0.017628513276577,0.01270451862365]],[[0.014584062620997,-0.033400446176529,-0.011394119821489],[-0.0066570281051099,-0.079769425094128,0.022018974646926],[0.034318011254072,0.0022477637976408,-0.063914515078068]],[[0.06614626199007,-0.064414523541927,0.017246996983886],[0.0050310478545725,-0.006113198120147,-0.020997680723667],[0.026890842244029,-0.11455554515123,-0.023491268977523]],[[-0.044773913919926,0.027158146724105,0.044514156877995],[-0.026039397343993,0.015517307445407,0.010527556762099],[-0.002566144336015,0.013611486181617,-0.081467680633068]],[[-0.043146256357431,0.00017138080147561,0.023765670135617],[-0.023874709382653,-0.037859749048948,0.034139651805162],[-0.12862206995487,-0.0028527381364256,-0.06993193179369]],[[0.016375318169594,-0.018117539584637,-0.062959708273411],[0.048363585025072,0.019098844379187,-0.036001238971949],[0.032332744449377,-0.023835361003876,0.0095244813710451]],[[-0.012357736937702,-0.011211216449738,0.027312083169818],[-0.075239881873131,0.018064374104142,0.072973258793354],[-0.022817092016339,0.044095128774643,0.10228585451841]],[[0.0022751777432859,-0.10636343061924,0.042248010635376],[-0.045286793261766,-0.06463772803545,0.024824632331729],[0.10169541090727,0.0080780712887645,0.016337148845196]],[[-0.052261117845774,-0.049849230796099,-0.0082148164510727],[-0.0131871458143,-0.020030388608575,-0.011554472148418],[0.045424059033394,0.042005978524685,0.06778422743082]],[[-0.022388838231564,-0.014564985409379,0.033446557819843],[-0.0045730313286185,-0.046330869197845,0.0060325874947011],[-0.028232514858246,0.014515056274831,-0.046989616006613]],[[0.084250837564468,0.0073459367267787,-0.044687572866678],[0.042387660592794,-0.063309915363789,0.011056423187256],[0.0027879315894097,-0.11075044423342,-0.011896712705493]],[[0.039217974990606,-0.019951332360506,-0.00065201963298023],[-0.046750981360674,-0.043376542627811,-0.016081904992461],[0.033034864813089,-0.051889274269342,0.0058818864636123]],[[0.007352284155786,0.017491322010756,0.035037118941545],[0.09041690081358,-0.028481254354119,0.017173016443849],[0.028542788699269,-0.043516330420971,-0.073750697076321]],[[0.038402263075113,-0.091764904558659,0.0064400653354824],[0.036511965095997,0.032802078872919,0.045250654220581],[0.032084546983242,0.10352000594139,-0.0082827191799879]],[[0.036705244332552,0.053765431046486,0.0097562689334154],[0.0073809963651001,-0.0049459054134786,0.051241237670183],[0.024682043120265,0.041338995099068,-0.023766992613673]],[[0.096160523593426,-0.045734122395515,-0.0046462751924992],[0.028821788728237,-0.057783260941505,0.077482983469963],[-0.060946147888899,-0.075579255819321,-0.08543922752142]],[[0.09344369918108,0.019806288182735,0.038512632250786],[0.010801637545228,-0.0042339656502008,-0.0039118891581893],[0.03117586299777,-0.024808613583446,-0.01533271651715]],[[0.019594620913267,-0.0089215114712715,-0.00035698129795492],[-0.015661651268601,-0.080785840749741,-0.09658794850111],[0.016753807663918,-0.011933889240026,-0.066394545137882]],[[0.013409268110991,0.015641057863832,0.022303117439151],[-0.025142412632704,-0.043398819863796,0.016806129366159],[-0.081490978598595,-0.026019223034382,-0.017677513882518]],[[-0.0078286798670888,-0.033623777329922,-0.051365714520216],[0.012712854892015,0.05080384016037,-0.073576152324677],[0.023206368088722,0.03125337511301,0.010336547158659]],[[-0.024965412914753,-0.0015692802844569,0.08298010379076],[0.011289332993329,0.073050610721111,-0.0073888599872589],[0.099769338965416,0.0096302898600698,0.011597412638366]],[[0.011294206604362,0.028503539040685,0.094161733984947],[0.019537765532732,-0.089179627597332,0.069306135177612],[0.026792619377375,-0.059143021702766,-0.018806317821145]],[[0.024346265941858,-0.020670240744948,0.078988291323185],[-0.07736224681139,0.03281594440341,0.042290534824133],[-0.045587290078402,0.015989873558283,0.10452494770288]],[[0.012028539553285,0.031198918819427,0.019040694460273],[-0.034817166626453,0.026376603171229,-0.030719576403499],[0.076824799180031,-0.0026852379087359,-0.070634223520756]],[[-0.030606903135777,-0.023929877206683,0.036129605025053],[-0.070589184761047,-0.01441843714565,-0.082811594009399],[0.016387356445193,0.095721401274204,0.036050919443369]],[[-0.0056582153774798,0.0082657709717751,-0.033688221126795],[-0.011444685980678,0.029632233083248,0.045416530221701],[0.014451145194471,-0.079624742269516,-0.023428799584508]],[[0.010863005183637,-0.068916440010071,-0.056573901325464],[0.0014564397279173,0.073489397764206,0.10913580656052],[0.065127365291119,0.066742599010468,0.10956874489784]],[[-0.087518282234669,-0.001773392315954,-0.028405355289578],[0.049614634364843,0.04267405718565,-0.00091708829859272],[-0.038813434541225,0.10334084182978,0.10606034845114]],[[-0.019486598670483,-0.026136731728911,-0.10028585791588],[-0.031402137130499,-0.023868592455983,-0.034218706190586],[0.0025358316488564,-0.051204707473516,-0.098114527761936]],[[0.085369519889355,0.046103175729513,0.0057335086166859],[-0.03965874761343,-0.010727101936936,0.00084377964958549],[0.053904097527266,0.039872784167528,-0.012172686867416]],[[-0.075679421424866,0.02927421964705,0.0028838433790952],[0.045114450156689,-0.035598058253527,-0.0092524914070964],[0.010771051049232,-0.11916103959084,-0.042444832623005]],[[0.049344316124916,-0.083423413336277,0.07938788831234],[0.0038607600145042,-0.042478635907173,-0.074521884322166],[-0.11654548346996,0.056581497192383,-0.021515803411603]],[[-0.042504277080297,0.043654933571815,-0.10902243107557],[0.02160308137536,0.043072398751974,0.028100380674005],[0.077936343848705,0.12222827970982,-0.05791849270463]],[[0.01136982999742,-0.0010812405962497,0.10556503385305],[-0.071162045001984,0.0029048996511847,0.070929884910583],[-0.063358277082443,-0.048293761909008,0.0031512333080173]],[[-0.025607112795115,-0.00091415114002302,0.043593343347311],[0.065917797386646,0.023106746375561,0.020407453179359],[0.041427612304688,-0.020634055137634,-0.03581627830863]]],[[[0.027307054027915,0.17111228406429,0.13149119913578],[0.0058858632110059,0.123559884727,-0.086901940405369],[-0.087479203939438,0.1631021797657,0.012187252752483]],[[-0.030094472691417,-0.083339914679527,-0.070954225957394],[0.050314150750637,-0.038311917334795,-0.078065350651741],[0.016205687075853,-0.059521742165089,0.12084328383207]],[[0.083637148141861,-0.0088838925585151,0.038538135588169],[-0.0027971398085356,-0.032155264168978,0.013680567033589],[0.00017128478793893,-0.038914728909731,-0.016984310001135]],[[-0.074886746704578,0.060786079615355,0.0077066193334758],[-0.11849073320627,-0.014885775744915,0.024179700762033],[-0.066177420318127,-0.074230246245861,-0.011349708773196]],[[0.00068517413455993,0.013983243145049,-0.052938524633646],[0.046633746474981,0.072659201920033,-0.030010089278221],[-0.013460370711982,0.0074615245684981,-0.0074958642944694]],[[0.011698849499226,0.16432857513428,0.059581242501736],[-0.10381370037794,-0.023042634129524,0.036749929189682],[0.32759088277817,-0.11079522222281,-0.14122241735458]],[[0.0016534628812224,-0.1095886528492,0.20681230723858],[0.0023344359360635,0.059817124158144,0.013087053783238],[0.10194850713015,0.01642887853086,0.040143791586161]],[[0.0068985288962722,-0.011865680105984,0.0036144559271634],[0.014652751386166,-0.091428503394127,0.080922596156597],[0.017662059515715,-0.095550917088985,0.20326535403728]],[[0.037622433155775,-0.01616583019495,-0.017441809177399],[0.024391064420342,-0.040854915976524,-0.032277993857861],[-0.034366343170404,-0.061506520956755,-0.058572173118591]],[[-0.075397588312626,0.020984601229429,0.013985282741487],[-0.080485753715038,0.018428601324558,-0.010617553256452],[-0.080018565058708,0.020831417292356,0.018413556739688]],[[0.08626751601696,-0.064348228275776,-0.06122051179409],[0.17063309252262,0.099270954728127,0.013278343714774],[-0.077111274003983,0.10451330989599,0.049248278141022]],[[-0.066277183592319,0.074937611818314,0.016129340976477],[0.0059176152572036,0.0015590301482007,0.0079169189557433],[-0.057169839739799,-0.098309777677059,0.079195231199265]],[[-0.0026174243539572,-0.07317778468132,0.10531955212355],[0.026752522215247,0.0090087112039328,-0.10796368867159],[0.05092054978013,0.0096326731145382,0.041924241930246]],[[0.031920779496431,-0.055408332496881,0.006959374062717],[-0.0012843823060393,-0.047194920480251,-0.034397523850203],[0.0060604140162468,-0.096416920423508,0.016231629997492]],[[-0.049700263887644,0.026169680058956,0.032326579093933],[0.067293420433998,-0.0069089848548174,-0.0071657202206552],[-0.027607217431068,0.06739005446434,0.082510128617287]],[[-0.047382097691298,0.050949614495039,-0.070782124996185],[0.0082260761409998,0.11571416258812,0.057505331933498],[-0.10767529159784,-0.017682677134871,0.12390888482332]],[[0.080492801964283,0.049476783722639,-0.08694152534008],[0.096776641905308,0.013482317328453,-0.064416281878948],[-0.12491039186716,-0.033373221755028,-0.05490155518055]],[[0.094515204429626,0.0033730776049197,-0.059284817427397],[0.077174052596092,-0.041944425553083,-0.033691503107548],[-0.068753227591515,0.09620101749897,0.035720977932215]],[[-0.019680846482515,0.068757496774197,-0.040107544511557],[0.081176944077015,0.13495080173016,0.10593263804913],[0.019234608858824,0.087010979652405,0.070902854204178]],[[0.047465667128563,0.06834564357996,0.05160665512085],[-0.1169319152832,-0.11827543377876,-0.037148449569941],[-0.018786825239658,-0.012600031681359,0.047162514179945]],[[-0.022552795708179,-0.11135372519493,-0.090956434607506],[-0.00052302022231743,-0.030728600919247,-0.079227231442928],[-0.039724476635456,0.043750684708357,-0.046300202608109]],[[-0.050241537392139,-0.012777080759406,-0.02871330268681],[0.084448844194412,0.15729555487633,-0.011321756988764],[0.0059003033675253,0.075992435216904,-0.079027883708477]],[[-0.034403860569,-0.0023294112179428,-0.0089654633775353],[0.23119397461414,0.11746453493834,0.0027026236057281],[-0.11587295681238,-0.012482544407248,0.13343465328217]],[[-0.11428959667683,0.00052353879436851,0.11878537386656],[-0.10094124823809,-0.04307472333312,0.00066425354452804],[0.078160189092159,-0.099849678575993,0.0027198973111808]],[[-0.097436353564262,-0.019112458452582,0.0085494890809059],[-0.10799636691809,0.019432883709669,-0.025485958904028],[-0.1237897798419,0.21791924536228,0.18237955868244]],[[0.034607272595167,-0.024612536653876,-0.026085274294019],[0.032191153615713,-0.05260518565774,-0.01041363645345],[-0.035234745591879,0.0069816550239921,-0.073569387197495]],[[0.07230282574892,-0.035072915256023,0.043064180761576],[0.089505761861801,-0.0080956909805536,-0.045729797333479],[0.15362060070038,0.063679933547974,0.00078268413199112]],[[-0.053646545857191,0.029316367581487,-0.047688152641058],[0.015665922313929,0.053828980773687,0.039191737771034],[-0.017287991940975,-0.04939978197217,-0.083931960165501]],[[-0.13024146854877,-0.13605678081512,0.045193880796432],[-0.086867824196815,0.12110435962677,0.0066018220968544],[-0.087541751563549,-0.046229895204306,-0.096130520105362]],[[-0.10233364999294,-0.055460821837187,-0.15425965189934],[-0.22176969051361,-0.07475259155035,0.1445517539978],[-0.19740357995033,-0.01731026917696,-0.23650394380093]],[[-0.020286459475756,0.19566382467747,0.07030837982893],[0.078344292938709,-0.088592246174812,-0.08073303103447],[0.17924043536186,-0.044967949390411,-0.011821707710624]],[[-0.081098884344101,0.092963792383671,0.13211505115032],[0.10995279997587,0.08142713457346,-0.0067087239585817],[0.030962346121669,-0.034767989069223,-0.011262020096183]],[[0.073486164212227,0.08901359140873,0.020668024197221],[0.11936493217945,0.17316800355911,-0.12026201933622],[0.055303461849689,0.050980545580387,0.064559169113636]],[[0.10700686275959,-0.084894552826881,-0.032706040889025],[-0.0026716650463641,0.14844056963921,0.049230765551329],[0.017597453668714,0.094041585922241,-0.006226958706975]],[[-0.032630201429129,-0.0016644145362079,-0.11730093508959],[-0.033194281160831,-0.034488949924707,-0.051153764128685],[0.10684103518724,0.036071561276913,-0.022222582250834]],[[0.064131066203117,0.041553124785423,-0.0097520090639591],[0.051596418023109,-0.013403874821961,-0.06850603967905],[0.012826985679567,0.016425123438239,0.017870154231787]],[[-0.048871878534555,0.041566710919142,0.082962676882744],[-0.0067855305969715,0.00069862836971879,-0.08238497376442],[-0.030894199386239,0.0025623210240155,0.046131547540426]],[[-0.0052961586043239,0.030104041099548,0.054242271929979],[-0.11191452294588,-0.061157636344433,0.13840885460377],[0.065342128276825,-0.073850028216839,0.1951112896204]],[[-0.080752842128277,-0.044210407882929,-0.11425089091063],[-0.064700983464718,0.070883423089981,-0.17287394404411],[0.0715307071805,0.086969837546349,0.02077716588974]],[[0.04258481040597,0.02597520314157,0.062984727323055],[0.07104230672121,0.0078263897448778,0.13044622540474],[-0.087207935750484,0.029509393498302,0.087100356817245]],[[0.038073837757111,-0.012672170996666,0.013555617071688],[0.090101674199104,0.042150214314461,0.040518276393414],[0.073199428617954,0.081710152328014,-0.025323087349534]],[[0.035993047058582,0.0042166532948613,-0.018366489559412],[-0.066015936434269,-0.097651556134224,0.012999621219933],[0.12277572602034,0.021596904844046,-0.06637965887785]],[[-0.040157090872526,0.030739543959498,-0.054810013622046],[-0.080001376569271,-0.005822139326483,-0.082490906119347],[0.01588043384254,-0.075419582426548,-0.02984955534339]],[[0.038021124899387,-0.030891623347998,-0.0026030195876956],[-0.0048636361025274,-0.036358028650284,-0.047635141760111],[-0.0098863588646054,0.012704017572105,0.018167743459344]],[[-0.004537673201412,-0.038755912333727,-0.014856432564557],[-0.047258201986551,-0.087047807872295,-0.054291814565659],[0.094145953655243,0.098820433020592,-0.044553637504578]],[[0.031883340328932,0.01826455630362,0.0090620797127485],[-0.024643460288644,-0.039245910942554,0.030870541930199],[-0.048664420843124,-0.025204543024302,0.096443884074688]],[[0.13184458017349,-0.041955687105656,0.10153862088919],[0.042669922113419,0.0574523024261,0.026228429749608],[-0.11800392717123,0.071850761771202,-0.079043880105019]],[[-0.10556560009718,-0.040818948298693,-0.076452530920506],[-0.041493456810713,0.13858476281166,-0.065761804580688],[0.158870190382,0.027604633942246,0.011421806178987]],[[-0.068092226982117,0.056831162422895,-0.025219125673175],[0.18877428770065,0.045698761940002,0.18603499233723],[0.061286669224501,-0.012813382782042,-0.063968554139137]],[[-0.0076907882466912,0.043954782187939,0.045350100845098],[-0.052813429385424,-0.026368582621217,-0.0064321011304855],[-0.021695356816053,-0.002790734404698,0.019160268828273]],[[-0.18552476167679,0.074909657239914,-0.061690341681242],[-0.13891197741032,0.0014280617469922,0.035109288990498],[-0.039976689964533,-0.080184988677502,-0.018843661993742]],[[0.0040777898393571,-0.054199893027544,0.01016881223768],[-0.0028325214516371,0.12319608032703,0.016968814656138],[0.10022467374802,-0.11240543425083,-0.0020117366220802]],[[0.052863486111164,-0.045761186629534,-0.025371262803674],[-0.033564694225788,-0.066351190209389,0.10361833125353],[-0.020919701084495,-0.0063940142281353,0.044714450836182]],[[-0.068483181297779,0.021580565720797,0.092307515442371],[0.01907461322844,0.029798535630107,0.095970578491688],[0.032497983425856,-0.045906592160463,-0.0025085245724767]],[[-0.08308257162571,0.029288843274117,0.052576869726181],[-0.042759336531162,-0.048896737396717,-0.079741187393665],[-0.089582860469818,0.023867055773735,-0.013371286913753]],[[-0.12826690077782,0.025082314386964,0.094547040760517],[0.11411625146866,0.047929521650076,-0.0045296642929316],[0.16595290601254,0.11565953493118,0.093438789248466]],[[-0.097258724272251,0.024573834612966,0.052385061979294],[0.043172597885132,-0.052679616957903,-0.019666731357574],[-0.084321312606335,-0.023272229358554,0.094392351806164]],[[-0.063036888837814,0.0071063810028136,-0.12606561183929],[0.01036386564374,-0.0059537044726312,-0.056240636855364],[-0.029442755505443,-0.047377929091454,-0.20472450554371]],[[-0.013447878882289,-0.078834749758244,0.055874306708574],[-0.028832720592618,-0.077462404966354,-0.12850511074066],[-0.12190525978804,-0.054522465914488,-0.13231149315834]],[[0.084654040634632,-0.043127603828907,0.088754937052727],[-0.013237933628261,0.03248393535614,0.16879265010357],[-0.055194228887558,-0.086148470640182,0.15677858889103]],[[0.028453031554818,-0.010273955762386,0.014936680905521],[0.0082232393324375,-0.021328901872039,-0.11795093119144],[-0.050213433802128,-0.22687567770481,-0.1606270968914]],[[0.074906125664711,0.038918852806091,-0.019794441759586],[0.03035699762404,-0.013093785382807,-0.084451198577881],[-0.16635392606258,-0.21033847332001,-0.13613232970238]],[[-0.062158793210983,-0.07551671564579,-0.045897327363491],[-0.20621418952942,-0.00017359132471029,0.057211548089981],[0.063722297549248,0.009883432649076,0.10043279826641]],[[-0.0016639740206301,0.091174252331257,0.12086793780327],[0.046556811779737,0.14872442185879,0.17775569856167],[0.17175902426243,-0.074110873043537,0.062134649604559]],[[-0.090571440756321,-0.018480194732547,-0.037449795752764],[-0.051488626748323,-0.13488700985909,-0.034120760858059],[0.064060218632221,0.032544959336519,-0.012602156028152]],[[-0.024674866348505,0.0078833941370249,0.020038049668074],[0.013306142762303,0.048064589500427,0.058886218816042],[-0.062365379184484,0.029360298067331,0.029240960255265]],[[-0.028608353808522,0.016751358285546,-0.052750524133444],[-0.082952938973904,0.032620809972286,0.036186389625072],[0.050713147968054,0.090367391705513,0.080054961144924]],[[-0.0099147288128734,-0.042013399302959,-0.10507368296385],[0.0065943961963058,-0.052015587687492,0.00037821955629624],[0.028259603306651,-0.063976228237152,-0.085299916565418]],[[0.013586305081844,-0.043195519596338,0.01416939869523],[-0.041062530130148,-0.042042504996061,0.042929917573929],[-0.093016780912876,0.042101010680199,-0.039346657693386]],[[0.18681824207306,0.10167755186558,0.0058593200519681],[0.0068152914755046,0.019720874726772,-0.07492221146822],[-0.095551878213882,0.040372278541327,-0.061131052672863]],[[0.015820359811187,0.068738862872124,0.022142874076962],[-0.032822482287884,-0.079918786883354,0.13319945335388],[-0.12307046353817,-0.056233793497086,0.049412824213505]],[[0.10261829942465,0.0351407751441,0.062096130102873],[-0.096164047718048,-0.092692971229553,0.032646864652634],[-0.14711645245552,-0.036040384322405,0.15121024847031]],[[-0.034979678690434,-0.0087058022618294,-0.015073705464602],[0.012103551998734,0.048192378133535,0.066922530531883],[0.021582899615169,-0.043434452265501,0.022813899442554]],[[-0.02503052726388,-0.069425947964191,-0.10200672596693],[-0.015544267371297,-0.012978129088879,0.020426478236914],[0.023794244974852,-0.051996890455484,-0.079393237829208]],[[-0.031962312757969,0.052001979202032,-0.12162716686726],[0.0084037613123655,-0.045105464756489,-0.058257386088371],[-0.095509201288223,-0.037890270352364,0.0027842235285789]],[[0.074146948754787,-0.041921719908714,0.0066190953366458],[0.013071446679533,-0.015786251053214,-0.041424863040447],[0.037104438990355,-0.11663511395454,-0.12506578862667]],[[-0.045271568000317,0.052194256335497,-0.090574122965336],[-0.083614028990269,-0.13035829365253,-0.025030389428139],[0.052308492362499,-0.13991025090218,-0.02793494425714]],[[-0.080666050314903,0.013201964087784,-0.038208935409784],[-0.0078768357634544,0.0077750450000167,0.022360881790519],[0.039957493543625,-0.014990644529462,0.051930457353592]],[[0.11114900559187,-0.012842509895563,0.10022774338722],[0.1101648658514,-0.018766343593597,-0.021200681105256],[0.2318284958601,-0.055207379162312,-0.16393809020519]],[[-0.055734656751156,-0.0590500831604,-0.076787367463112],[-0.0371073782444,-0.11609675735235,0.024656299501657],[-0.029472993686795,-0.027818899601698,-0.023069879040122]],[[-0.010407110676169,-0.062116634100676,-0.061592113226652],[-0.11032991111279,-0.012532825581729,0.04797463491559],[-0.026056742295623,-0.20476602017879,-0.098942570388317]],[[0.018786961212754,-0.17924907803535,-0.070199050009251],[0.050586476922035,-0.017344005405903,0.20813632011414],[-0.1015497893095,-0.064409516751766,-0.1320553869009]],[[0.1964700371027,0.073496758937836,-0.036290243268013],[0.16050353646278,-0.039649907499552,-0.0040886127389967],[0.28184896707535,0.011461764574051,0.051615472882986]],[[-0.070694282650948,-0.054537165910006,0.0049533476121724],[-0.057274349033833,-0.024074057117105,0.068568579852581],[-0.12708187103271,-0.0074122077785432,-0.079104125499725]],[[-0.037841685116291,-0.10961113870144,0.095889739692211],[0.1014783680439,0.10348429530859,-0.0023397479671985],[-0.0041030803695321,0.053704023361206,0.08657793700695]],[[-0.019702173769474,-0.021695269271731,0.13838405907154],[-0.03305958211422,-0.060231551527977,0.01909819804132],[0.076020151376724,-0.10281373560429,-0.010599008761346]],[[0.079401269555092,-0.024744290858507,0.17019578814507],[0.031957440078259,0.036391865462065,0.0074721444398165],[0.036077037453651,0.17767407000065,0.0063652885146439]],[[0.095396667718887,0.012253338471055,0.060202065855265],[-0.010754345916212,0.034277345985174,-0.019481560215354],[0.0095693040639162,-0.0010555697372183,-0.0045996718108654]],[[-0.080914787948132,-0.031773164868355,0.1104574650526],[-0.11584213376045,-0.044500093907118,-0.038619104772806],[-0.10519948601723,0.012727063149214,-0.1246357858181]],[[0.07172953337431,0.12272187322378,0.024513946846128],[0.012293717823923,-0.01893363147974,-0.083564035594463],[-0.058316994458437,0.10003287345171,-0.084355004131794]],[[0.083636805415154,-0.1003255173564,-0.073481194674969],[0.0073788114823401,0.0048874882049859,-0.083560921251774],[0.30262431502342,0.10631825774908,-0.037916097790003]],[[-0.06949071586132,0.00060507439775392,-0.049563113600016],[-0.023863373324275,-0.030685601755977,0.0011980870040134],[0.016723815351725,0.01306866388768,0.049453679472208]],[[-0.0028030250687152,-0.09709694236517,0.17516216635704],[-0.13890831172466,-0.043949648737907,0.067952707409859],[0.072255983948708,-0.026886431500316,0.044842500239611]],[[-0.10800492018461,0.010838454589248,-0.017871029675007],[-0.0092942537739873,0.033605448901653,0.012245003134012],[0.072512067854404,0.046037074178457,0.053869612514973]],[[0.013160780072212,0.028842298313975,-0.032481916248798],[0.042247585952282,-0.03653559833765,-0.091491855680943],[0.11308687925339,0.099337674677372,0.14148080348969]],[[0.18002933263779,0.049679175019264,0.056207805871964],[-0.092905901372433,-0.075602233409882,-0.022883957251906],[-0.0099846487864852,0.058640629053116,-0.042215961962938]],[[-0.087253920733929,-0.035501226782799,0.0078418208286166],[0.011786552146077,-0.046022240072489,-0.11123188585043],[-0.055331248790026,-0.062634237110615,-0.23113594949245]],[[0.045655444264412,0.04994086548686,0.040303509682417],[0.0055920635350049,0.02471174672246,-0.015150657854974],[0.18389345705509,0.020663134753704,-0.16563932597637]],[[-0.051149882376194,0.033688958734274,-0.049561619758606],[-0.1690536737442,0.068188138306141,-0.089556999504566],[-0.16120263934135,0.041683629155159,-0.089042581617832]],[[0.046637836843729,0.033096231520176,0.12252159416676],[0.056329745799303,0.14766584336758,-0.011451420374215],[-0.0013536846963689,0.056052681058645,-0.051971819251776]],[[0.046582385897636,0.059272196143866,-0.031098181381822],[0.029105447232723,0.095436774194241,0.10259972512722],[-0.091208718717098,0.067746877670288,0.13723766803741]],[[0.048650346696377,0.05850625038147,0.095314800739288],[0.059964124113321,-0.10807303339243,-0.089147463440895],[0.047323387116194,0.0028217453509569,-0.035984802991152]],[[-0.032414875924587,0.090479679405689,-0.023130428045988],[-0.043534055352211,-0.07459856569767,0.063373573124409],[0.073428191244602,-0.061173766851425,-0.11571334302425]],[[-0.087088838219643,0.20468084514141,0.13475382328033],[-0.1894902586937,-0.024264108389616,-0.10696319490671],[0.18110072612762,-0.030771831050515,0.15701630711555]],[[-0.0062241298146546,0.093709297478199,0.12015733122826],[-0.037294670939445,-0.1446378827095,0.058670409023762],[-0.013922719284892,-0.12342454493046,-0.076969020068645]],[[0.019287839531898,-0.023909099400043,0.11484434455633],[0.051772888749838,-0.13475771248341,-0.0048699462786317],[-0.0036264546215534,-0.058716047555208,-0.060141388326883]],[[0.10180026292801,0.082231856882572,0.023484595119953],[0.00020876733469777,0.014020621776581,0.0192467328161],[-0.041556086391211,-0.092620685696602,0.078559167683125]],[[-0.084732607007027,-0.059204254299402,-0.027922637760639],[0.020424462854862,0.087759949266911,-0.052867621183395],[-0.069572128355503,0.16581277549267,0.10920114815235]],[[-0.004989177454263,0.058948516845703,0.050008680671453],[0.052795629948378,0.0051164757460356,-0.039841324090958],[0.013476026244462,0.04592739790678,-0.044777859002352]],[[-0.0072373440489173,0.026499142870307,0.046745989471674],[0.082759119570255,0.075129084289074,0.045977804809809],[0.1058988198638,-0.0011604339815676,0.0076441303826869]],[[-0.037640139460564,-0.061919789761305,-0.11936162412167],[0.091067880392075,0.069747716188431,-0.12319535762072],[0.0110023021698,0.0058310409076512,-0.11186952888966]],[[0.12396715581417,-0.12755374610424,0.020349178463221],[0.018543608486652,-0.055157333612442,0.078591197729111],[0.029743747785687,-0.020200364291668,0.10278403013945]],[[-0.049909871071577,0.018379954621196,0.0020356092136353],[0.054673843085766,0.086015865206718,0.00080760882701725],[0.099110424518585,-0.0052635762840509,-0.036737252026796]],[[0.058682303875685,0.18567623198032,-0.073697306215763],[0.079628437757492,-0.067058742046356,-0.028948817402124],[0.069613188505173,0.0319206379354,0.05622698366642]],[[-0.056884359568357,0.087133355438709,-0.048668287694454],[0.14685092866421,0.033400844782591,0.04701728746295],[0.098663903772831,0.10220380872488,0.075400233268738]],[[0.041577517986298,-0.035770416259766,-0.084223710000515],[0.0099640563130379,0.055544648319483,0.062476120889187],[0.085600666701794,-0.086683869361877,-0.11170039325953]],[[0.015133379027247,0.0046684630215168,0.053110186010599],[0.079553425312042,0.027179230004549,-0.04156356304884],[-0.015085243619978,0.04995134100318,-0.0054416847415268]],[[0.06017692387104,0.083572536706924,-0.049839284271002],[0.098043948411942,0.045368298888206,0.11103270947933],[0.35457584261894,-0.09206360578537,-0.076764896512032]],[[-0.036061819642782,0.069274246692657,0.10667176544666],[0.044766839593649,0.14885114133358,0.012905186973512],[-0.0062661292031407,0.0022380461450666,0.032735358923674]],[[-0.019925920292735,0.027743706479669,0.094549305737019],[-0.010073136538267,-0.015609775669873,0.00013886386295781],[-0.065553054213524,-0.0077483532950282,-0.028181657195091]],[[-0.022455366328359,-0.034582205116749,0.018085621297359],[-0.10460563004017,0.14119032025337,-0.031014613807201],[0.024337895214558,0.17601971328259,-0.064941324293613]],[[0.01063952036202,-0.0094030518084764,-0.10875868797302],[-0.0576226785779,0.00016800305456854,0.013063313439488],[-0.01007500756532,-0.0083772512152791,0.1231280490756]],[[-0.1262194365263,-0.080781735479832,-0.071285165846348],[-0.092239014804363,-0.20151178538799,-0.11003909260035],[0.053297765552998,-0.073772020637989,-0.078155018389225]],[[0.067342057824135,-0.064066655933857,0.024492017924786],[0.03156129643321,0.018267830833793,-0.040749341249466],[-0.18413057923317,0.044312473386526,0.039368916302919]],[[0.050993755459785,0.13997434079647,0.016519151628017],[0.039615318179131,0.033636853098869,0.006126903463155],[-0.0048492830246687,-0.10996405035257,0.033553812652826]],[[0.074591636657715,-0.0082726301625371,-0.028526743873954],[0.066274769604206,0.10051617771387,-0.20628164708614],[-0.15299253165722,-0.05830604583025,0.059859171509743]],[[-0.071073912084103,-0.026354277506471,0.071785621345043],[-0.11185672879219,0.01757930777967,-0.045913372188807],[-0.060801018029451,0.16152286529541,-0.064020805060863]],[[-0.13516379892826,-0.049201637506485,0.056344822049141],[-0.1704393029213,-0.010338041931391,0.086810693144798],[-0.16100391745567,-0.00087500567315146,0.090435586869717]]],[[[-0.031298544257879,0.021952591836452,-0.099263414740562],[0.068621896207333,0.062025833874941,-0.020057616755366],[0.063911363482475,0.016034629195929,-0.11315487325191]],[[0.051704458892345,-0.025268722325563,-0.049901351332664],[-0.087998650968075,-0.10129235684872,0.09113497287035],[-0.14887417852879,-0.07086418569088,0.054824162274599]],[[-0.024525986984372,-0.024689042940736,-0.17351257801056],[-0.0011051234323531,-0.034102063626051,-0.048046782612801],[-0.030357014387846,-0.087383829057217,0.00073755532503128]],[[0.019435618072748,-0.0032838536426425,-0.03907760605216],[0.012256499379873,-0.0066493954509497,-0.018991321325302],[-0.085005842149258,-0.079433158040047,0.085607469081879]],[[0.031319312751293,0.050108693540096,-0.14629580080509],[0.080115370452404,0.078569926321507,-0.1571396291256],[0.003266841173172,-0.016597272828221,-0.058186899870634]],[[-0.11099106818438,-0.032367467880249,0.03714732453227],[-0.0045368215069175,0.023795239627361,-0.084970228374004],[-0.031013179570436,-0.008741375990212,-0.026207573711872]],[[0.017843846231699,-0.0055228020064533,-0.00059055187739432],[-0.090237691998482,-0.11657743155956,-0.0076030022464693],[-0.058337241411209,-0.024964459240437,-0.0049659218639135]],[[0.061401687562466,-0.094534978270531,0.019344622269273],[0.02877520956099,0.010897884145379,-0.069023281335831],[0.016056228429079,0.020805895328522,-0.076809942722321]],[[-0.05679789930582,0.017065273597836,-0.074552655220032],[0.068321049213409,-0.047004371881485,0.019071275368333],[0.00039271541754715,0.055299766361713,0.064253479242325]],[[-0.058656703680754,0.0050808847881854,0.023814817890525],[-0.033677242696285,0.11647390574217,0.14841729402542],[-0.038355495780706,0.12368297576904,0.081090867519379]],[[0.13598194718361,-0.044265564531088,-0.001970165874809],[-0.04863515496254,0.026990408077836,-0.039486702531576],[-0.011371211148798,0.031003376469016,-0.013673167675734]],[[-0.022118559107184,-0.14832045137882,0.063912220299244],[0.001960406312719,-0.092600107192993,0.057176232337952],[-0.047302771359682,-0.044707022607327,0.060632687062025]],[[0.054713293910027,-0.1165511533618,-0.041264582425356],[-0.056638486683369,-0.12994812428951,-0.14091598987579],[0.1120302900672,-0.056584045290947,-0.04693790152669]],[[0.043231517076492,0.062477085739374,0.014366865158081],[-0.0958212018013,0.0078445160761476,-0.013688769191504],[-0.22590033710003,-0.074948646128178,0.085801310837269]],[[0.057910218834877,-0.00033984001493081,0.015502264723182],[-0.11349504441023,-0.11144114285707,-0.091469414532185],[-0.0013662499841303,-0.020156560465693,-0.03994470089674]],[[-0.00994957331568,0.1437426507473,0.0023466921411455],[-0.088109605014324,0.04529594630003,-0.037878897041082],[-0.020916055887938,0.1005327180028,-0.013520830310881]],[[-0.045108206570148,-0.06561616808176,-0.05742709711194],[0.00072198739508167,-0.078847140073776,0.044434979557991],[-0.019796371459961,0.05405655503273,0.022726960480213]],[[0.041409455239773,-0.070538759231567,-0.097703270614147],[0.12052720040083,-0.049259398132563,-0.020932590588927],[0.0043381014838815,0.019114414229989,0.043209906667471]],[[0.03744700551033,0.10106902569532,0.1207999587059],[0.068144828081131,-0.0031800954602659,-0.043194368481636],[0.026665417477489,-0.015912869945168,0.051134705543518]],[[-0.084520906209946,-0.071216478943825,0.20826442539692],[-0.027219338342547,-0.10247042030096,0.17360717058182],[-0.13631594181061,-0.10962536931038,0.07388511300087]],[[0.034538544714451,-0.048490602523088,-0.014462438412011],[-0.0011652049142867,-0.20298536121845,-0.15884275734425],[-0.02136904746294,-0.035925477743149,0.046990342438221]],[[0.011789876967669,-0.10514210909605,0.0060133952647448],[-0.15091453492641,-0.088198110461235,0.04484561830759],[-0.065975412726402,0.030307734385133,-0.028888171538711]],[[0.10572303831577,-0.020242173224688,0.088982902467251],[0.10530895739794,0.048595402389765,0.077698767185211],[-0.013531516306102,-0.097584612667561,0.0059623271226883]],[[0.017428047955036,-0.047020457684994,-0.081955820322037],[-0.13536347448826,-0.013302993960679,-0.022101502865553],[-0.057188678532839,-0.1385093331337,-0.026386501267552]],[[0.011670256964862,0.079366765916348,0.01381311006844],[-0.0028807197231799,-0.0061123440973461,-0.036402199417353],[-0.071252733469009,0.079053223133087,-0.01217036601156]],[[-0.036386989057064,-0.00037071295082569,0.11324485391378],[0.012383783236146,-0.082873620092869,-0.073002062737942],[0.078287847340107,-0.018797783181071,-0.16803878545761]],[[0.063587076961994,-0.09188337624073,0.052626833319664],[0.016376281157136,-0.11444082856178,0.051241524517536],[-0.073423825204372,-0.071611382067204,0.023426804691553]],[[-0.018434498459101,-0.024337762966752,0.03360315784812],[-0.0060399509966373,-0.0417165979743,-0.011671226471663],[-0.06101955473423,0.080440454185009,-0.030735958367586]],[[-0.07947614043951,0.023542772978544,0.1036150380969],[-0.12955425679684,0.056119177490473,0.089848011732101],[-0.072816282510757,0.049981568008661,0.098952628672123]],[[-0.022891582921147,-0.13919560611248,0.033983960747719],[-0.011553823947906,-0.036964181810617,0.10919260233641],[-0.086650677025318,-0.0096000600606203,0.054976284503937]],[[-0.038640696555376,-0.02162410505116,0.057842787355185],[0.00052649719873443,0.0074791223742068,-0.040119417011738],[0.076311454176903,0.030751230195165,0.0051853135228157]],[[0.045103501528502,0.084773115813732,-0.041717607527971],[0.034693028777838,0.098980382084846,-0.093673393130302],[0.029158605262637,-0.0033538453280926,-0.084044083952904]],[[0.025905635207891,-0.027927296236157,-0.14679503440857],[0.10078417509794,0.02872315980494,-0.012347449548542],[0.02809352427721,-0.0079977819696069,-0.051378961652517]],[[0.01411098241806,0.10585786402225,-0.1426447480917],[0.042585626244545,-0.0085070356726646,-0.0070596067234874],[0.0045436713844538,0.02052734978497,0.060459062457085]],[[-0.058406695723534,-0.035940531641245,0.055630147457123],[-0.022034958004951,-0.10098203271627,0.0031945779919624],[0.013056052848697,-0.066485323011875,0.055111587047577]],[[0.0066286502406001,0.05511611700058,0.10182524472475],[0.09276058524847,0.029478268697858,-0.074107848107815],[0.20978531241417,-0.055008728057146,-0.052141483873129]],[[-0.031165516003966,-0.073879599571228,-0.06112140417099],[-0.0019197618821636,-0.015033380128443,0.10270925611258],[-0.073081068694592,0.095858804881573,0.043855935335159]],[[0.0089990179985762,0.057378474622965,0.046829577535391],[-0.05327832698822,0.011477375403047,-0.036009334027767],[0.14686287939548,-0.060173250734806,-0.030655954033136]],[[0.13847921788692,-0.0016208888264373,0.032827649265528],[0.03307168930769,-0.11624985188246,0.035380840301514],[-0.0051238806918263,-0.085978537797928,-0.024610390886664]],[[0.1018397808075,0.0020211676601321,-0.061164516955614],[0.030230578035116,0.0051698763854802,-0.088225603103638],[-0.00038849664269947,0.081535786390305,-0.038718096911907]],[[-0.10616522282362,0.06753234565258,0.10212390124798],[0.054422780871391,0.030218521133065,0.022515065968037],[-0.045862402766943,-0.099136874079704,-0.056422028690577]],[[0.036730393767357,-0.039620690047741,0.13065120577812],[0.02521782182157,0.020304696634412,0.18376211822033],[0.035257529467344,0.045249737799168,0.079667687416077]],[[0.011071117594838,-0.03247195482254,-0.044091090559959],[-0.022580437362194,-0.099350474774837,-0.15783725678921],[0.034743458032608,-0.11484003067017,0.070257492363453]],[[0.087169401347637,0.13030901551247,-0.019349029287696],[0.062255211174488,0.030992763116956,-0.0063609615899622],[0.080825172364712,-0.038546364754438,-0.030807591974735]],[[0.0028213220648468,0.057479534298182,-0.017010284587741],[-0.011837530881166,-0.053932674229145,-0.0060252738185227],[-0.028876852244139,-0.037152521312237,0.10718755424023]],[[-0.0016558991046622,0.075889937579632,0.0011404259130359],[0.04608678072691,0.05589534342289,-0.053661741316319],[0.011799197643995,0.056546837091446,0.053576100617647]],[[0.0063517866656184,-0.020111374557018,0.094824597239494],[0.14162112772465,-0.067868836224079,0.061470612883568],[-0.026404704898596,0.006676325108856,0.011649304069579]],[[0.079647220671177,-0.052233502268791,-0.13848471641541],[-0.012392293661833,0.12950219213963,-0.062606170773506],[-0.045794982463121,-0.034710999578238,0.023820551112294]],[[0.10203214734793,-0.1409652531147,0.068524576723576],[-0.053907752037048,-0.11168728768826,0.023157685995102],[-0.0096573010087013,-0.0051120277494192,-0.049256224185228]],[[0.029411599040031,-0.011955711059272,-0.045846980065107],[-0.0065740109421313,-0.026248630136251,-0.071413315832615],[0.097480930387974,-0.020836429670453,-0.06217060610652]],[[-0.023773178458214,0.048344578593969,-0.030890468508005],[-0.14251309633255,0.15376986563206,0.045671813189983],[-0.097518853843212,0.026703862473369,0.013374335132539]],[[-0.067772448062897,0.11488351225853,0.040891699492931],[0.00079358892980963,0.058638412505388,0.066741123795509],[-0.013587713241577,0.023761378601193,0.11421467363834]],[[0.033294100314379,-0.0083587132394314,-0.091953463852406],[-0.00017732798005454,0.064673572778702,-0.0077908947132528],[0.071835651993752,0.02606619335711,0.064544521272182]],[[0.014149846509099,-0.076793424785137,0.057820122689009],[-0.074932724237442,-0.15459567308426,0.099656984210014],[-0.068932086229324,-0.0383420586586,0.087440855801105]],[[0.037072964012623,0.14117453992367,0.0019328853813931],[-0.079403065145016,-0.083447195589542,0.13354904949665],[-0.12160881608725,0.0073431632481515,0.061205744743347]],[[0.15222983062267,-0.033386789262295,0.051900744438171],[0.15293076634407,-0.022909056395292,-0.035181619226933],[0.027573650702834,-0.091889455914497,-0.0061598005704582]],[[-0.036293812096119,0.0056417412124574,0.18657825887203],[0.14059004187584,0.051537781953812,0.16539326310158],[-0.19890454411507,-0.20858383178711,0.050261367112398]],[[-0.025923270732164,-0.055549703538418,-0.10199155658484],[0.038159228861332,-0.039467740803957,-0.086510471999645],[-0.015367705374956,-0.12809610366821,-0.010958748869598]],[[0.0051674712449312,-0.046295300126076,0.12587974965572],[-0.0092108147218823,-0.037483222782612,-0.050531666725874],[-0.079206645488739,-0.038690485060215,-0.10801467299461]],[[-0.0402518697083,-0.048191860318184,0.18011480569839],[-0.043589450418949,0.015910537913442,0.091149635612965],[0.084209449589252,-0.11413982510567,0.087637558579445]],[[-0.029168235138059,-0.088774837553501,-0.034855380654335],[-0.042287893593311,-0.092640414834023,-0.067743219435215],[-0.12161634862423,-0.11473375558853,-0.029547160491347]],[[0.051611952483654,0.062774278223515,-0.030076913535595],[-0.00099218741524965,-0.026290770620108,0.053516034036875],[-0.12170893698931,0.011611961759627,-0.03460244089365]],[[0.029292499646544,-0.0466926433146,0.092189148068428],[0.052397921681404,-0.0014822568045929,-0.063269846141338],[0.0026116294320673,-0.0080741764977574,-0.028312249109149]],[[0.034326530992985,-0.014790018089116,-0.13633814454079],[0.035663805902004,0.11794109642506,0.016705861315131],[-0.016450427472591,0.0033546302001923,0.026227150112391]],[[-0.094116777181625,0.13879676163197,0.11478450894356],[-0.048647776246071,0.05042913928628,0.090805932879448],[-0.061694148927927,-0.00528813758865,0.11636818945408]],[[0.030025169253349,-0.018737148493528,0.08835507184267],[0.12957689166069,-0.019698575139046,0.017992535606027],[0.1447646021843,-0.076635196805,-0.040616679936647]],[[-0.0049354531802237,-0.047222513705492,0.0099540818482637],[-0.072613999247551,-0.059917327016592,0.053386736661196],[0.045481625944376,0.074316255748272,-0.0077599231153727]],[[0.035140790045261,-0.029177689924836,-0.031100114807487],[-0.038743607699871,-0.091762229800224,-0.061384420841932],[-0.0062015489675105,-0.10826551169157,-0.022437134757638]],[[-0.013772127218544,-0.097244806587696,-0.021468508988619],[-0.02867654338479,-0.018870681524277,0.058560397475958],[0.15826004743576,0.05675745382905,0.049983847886324]],[[0.19012348353863,0.073701873421669,-0.060823526233435],[0.13659773766994,-0.0080867484211922,-0.12770971655846],[0.020814860239625,0.022813022136688,-0.047567680478096]],[[0.015098110772669,0.030081724748015,-0.012921450659633],[0.074015207588673,0.04692704603076,-0.082676097750664],[0.007909850217402,0.041326854377985,-0.025113638490438]],[[0.068977512419224,0.030794467777014,0.068195946514606],[0.067571230232716,-0.10094873607159,-0.10118284076452],[0.011699190363288,0.021301217377186,0.090635806322098]],[[-0.055064540356398,-0.096347741782665,-0.051895242184401],[0.0087368739768863,0.066401138901711,-0.013394568115473],[0.098710909485817,0.03311625868082,-0.13882538676262]],[[0.16286563873291,-0.067541964352131,-0.0014609815552831],[0.0036971943918616,-0.048126257956028,0.046283937990665],[0.015327469445765,0.070910163223743,0.068814024329185]],[[-0.04821727052331,0.04043060541153,0.05224970728159],[-0.063012257218361,-0.072808720171452,-0.011211903765798],[0.0066416868939996,-0.08077434450388,-0.045236989855766]],[[0.047489322721958,-0.097492396831512,0.0068479622714221],[0.072146035730839,-0.042679022997618,0.067457467317581],[0.030938049778342,-0.068826586008072,-0.012734499759972]],[[-0.096935234963894,0.026715114712715,-0.030329937115312],[-0.069530189037323,-0.022781819105148,-0.017384169623256],[-0.14137674868107,-0.084199458360672,0.10502254217863]],[[-0.089763671159744,-0.15833805501461,0.048359751701355],[-0.10776682198048,-0.10991430282593,0.069065228104591],[-0.036210585385561,-0.031155670061707,0.10980071872473]],[[0.0039311032742262,-0.11564893275499,0.12006333470345],[-0.006370781455189,-0.076129525899887,0.02995284833014],[-0.092263676226139,-0.01271293964237,0.066923454403877]],[[-0.06703869253397,-0.028915444388986,0.056725796312094],[-0.063757590949535,-0.028083005920053,0.038664046674967],[-0.016975523903966,-0.069632776081562,0.08525725454092]],[[0.0056519210338593,0.0006516994908452,0.033695548772812],[0.1889908015728,-0.07592549175024,0.045324683189392],[0.0030186041258276,0.05987873673439,0.15354661643505]],[[-0.13257230818272,0.037163283675909,0.089293614029884],[-0.17147727310658,-0.11676314473152,0.064165189862251],[-0.01560059376061,0.021283756941557,0.0080348458141088]],[[0.017677547410131,-0.037985917180777,0.068248465657234],[-0.10413325577974,-0.0026948093436658,-0.040467001497746],[-0.063192404806614,-0.070492051541805,-0.014031518250704]],[[0.065920151770115,0.011381419375539,-0.099130921065807],[0.01954516209662,-0.1305875480175,-0.12077090889215],[-0.14918553829193,-0.071622923016548,-0.0010704044252634]],[[-0.04156368970871,0.052597306668758,-0.017106486484408],[-0.032511334866285,0.12339814007282,0.054787155240774],[-0.045271549373865,0.040675677359104,-0.058007389307022]],[[-0.09619003534317,-0.046905074268579,0.087711706757545],[0.034885562956333,-0.054678380489349,0.051082715392113],[0.052624624222517,-0.028449475765228,0.012796897441149]],[[-0.035590797662735,-0.021871909499168,-0.0082226293161511],[-0.011741016991436,0.069615639746189,-0.041112881153822],[-0.0044289114885032,0.024007830768824,-0.036422219127417]],[[-0.01819084584713,-0.024881640449166,0.15334330499172],[0.065097607672215,0.098617732524872,0.055166114121675],[0.050104655325413,9.3325979833025e-05,0.024075590074062]],[[-0.015538497827947,0.022549219429493,-0.067541547119617],[-0.1077398955822,-0.033771757036448,-0.0095022870227695],[-0.089606553316116,-0.068898752331734,0.075649105012417]],[[0.063835553824902,0.15632294118404,0.11933735013008],[0.042328789830208,0.089567840099335,0.025607347488403],[0.010711861774325,-0.15904867649078,-0.075216747820377]],[[0.0095835002139211,0.030698718503118,-0.12067326903343],[0.031788803637028,0.11835195124149,0.083892963826656],[0.15326911211014,-0.079177230596542,-0.050071246922016]],[[-0.0079995961859822,-0.025628760457039,-0.018192701041698],[-0.025370452553034,-0.10478346049786,0.032593164592981],[-0.082741506397724,-0.0089341541752219,0.034026514738798]],[[0.054606683552265,-0.014162457548082,-0.02282147295773],[0.090859740972519,-0.052944853901863,-0.018986713141203],[0.0038614871446043,-0.081660695374012,-0.063816539943218]],[[0.12276366353035,0.10184823721647,-0.092522278428078],[0.076623320579529,-0.12503741681576,-0.22932370007038],[0.07395888119936,-0.08704599738121,-0.11595234274864]],[[-0.069458797574043,0.044008664786816,0.0015852788928896],[0.058039925992489,-0.063619635999203,0.050998538732529],[-0.12339156866074,-0.035033710300922,0.072079785168171]],[[0.016071505844593,0.00066982075804844,0.0505036637187],[0.072110131382942,0.0017441059462726,0.092914551496506],[-0.09684881567955,-0.053887821733952,0.13551695644855]],[[0.12519934773445,-0.046313494443893,-0.11233152449131],[-0.0018968972144648,-0.098405122756958,-0.020285563543439],[-0.047887582331896,-0.096841894090176,0.0019723703153431]],[[0.082662776112556,0.027813093736768,-0.20569910109043],[0.02061178535223,-0.10245680063963,-0.12773318588734],[0.03498588129878,-0.11457777023315,0.072961032390594]],[[0.12752199172974,0.14537642896175,-0.066693246364594],[0.050307806581259,0.0027892596554011,-0.076270051300526],[0.054831430315971,0.069869093596935,-0.035816445946693]],[[0.069609008729458,0.023595128208399,-0.14963711798191],[0.041532035917044,0.025671372190118,-0.053688399493694],[0.081966400146484,0.12417156249285,-0.023337554186583]],[[-0.1296394020319,0.10331135243177,0.0066327569074929],[-0.081499688327312,0.069990627467632,-0.025882808491588],[-0.040967397391796,0.050888638943434,0.002790804952383]],[[-0.051016747951508,-0.047808762639761,-0.053812544792891],[0.19000506401062,0.22262759506702,0.091376930475235],[0.051517460495234,0.063960179686546,0.086800634860992]],[[-0.051180247217417,-0.04133366048336,0.10169976204634],[-0.010247676633298,-0.03375469148159,0.034787096083164],[-0.00086962309433147,-0.019960774108768,-0.059586305171251]],[[-0.033740766346455,-0.0064710108563304,-0.055815007537603],[-0.011469946242869,-0.010953905060887,0.06197327747941],[-0.046872887760401,0.040867414325476,-0.00079124164767563]],[[-0.11800918728113,-0.16503125429153,-0.037620864808559],[-0.040231116116047,-0.0011229523224756,0.067430563271046],[-0.020567091181874,0.25077122449875,0.091151267290115]],[[0.12547817826271,-0.088335566222668,-0.012753459624946],[0.090050481259823,-0.017690187320113,0.087751157581806],[0.12969535589218,-0.02878263220191,0.036303784698248]],[[-0.0063860458321869,0.069355800747871,-0.081762097775936],[0.028607485815883,-0.057589497417212,-0.040187872946262],[-0.051080740988255,0.036762773990631,-0.022543270140886]],[[0.072415560483932,-0.0014520805561915,0.024627657607198],[0.13010264933109,0.019571278244257,-0.064625732600689],[0.028823452070355,-0.074424728751183,0.022269628942013]],[[0.014330229721963,0.062979951500893,-0.0059061069041491],[0.11125013232231,0.0091365091502666,0.025972776114941],[0.049406241625547,-0.03459457680583,-0.0028039896860719]],[[0.033030267804861,-0.030396919697523,0.10829751193523],[-0.0082763032987714,0.037143845111132,-0.026943737640977],[0.097726196050644,0.13545817136765,-0.0046006985940039]],[[0.016396082937717,0.039261430501938,0.0033201654441655],[0.034078374505043,-0.11282463371754,-0.027637926861644],[-0.04410894215107,-0.0080684339627624,-0.011275376193225]],[[0.031209323555231,-0.039864659309387,-0.083943299949169],[-0.017897009849548,-0.12486401945353,-0.058268040418625],[-0.1024254783988,-0.057282909750938,0.12833553552628]],[[-0.041024029254913,-0.10588480532169,-0.077126808464527],[-0.13254444301128,0.032881923019886,0.055117964744568],[0.03068227507174,-0.025916727259755,0.067912839353085]],[[0.010762561112642,-0.0012464647879824,-0.053938824683428],[0.064673289656639,-0.0090692974627018,-0.089287117123604],[0.0043778079561889,-0.10251186043024,-0.076999336481094]],[[0.093911878764629,-0.13621664047241,0.047647565603256],[0.042068630456924,0.0091604106128216,0.016320936381817],[0.10284321755171,-0.0048597892746329,-0.091685816645622]],[[-0.057732347398996,-0.20410816371441,-0.16286341845989],[-0.068460293114185,-0.11522682011127,0.05627778545022],[0.12360113114119,-0.016672452911735,0.014999337494373]],[[-0.0049493913538754,-0.053597815334797,-0.066123001277447],[0.069856524467468,0.052953526377678,-0.02297773770988],[-0.028298795223236,0.062800101935863,-0.05908040329814]],[[0.16884049773216,0.18738919496536,0.052569195628166],[0.0066867163404822,0.032137278467417,-0.033427260816097],[-0.068822488188744,-0.060148447751999,0.060979016125202]],[[0.010217139497399,0.12809783220291,0.019536718726158],[0.070393480360508,-0.038592252880335,-0.034591641277075],[-0.0018967151409015,0.040391072630882,0.018408611416817]],[[0.028982196003199,-0.054990358650684,-0.011539979837835],[0.013346558436751,-0.10002318769693,0.03216752782464],[-0.038389194756746,0.010060747154057,0.018505109474063]],[[-0.070348873734474,-0.15973478555679,-0.030266547575593],[-0.056328684091568,0.021760139614344,0.016741393133998],[0.20377200841904,0.085988618433475,-0.069772437214851]],[[-0.10311860591173,0.044047717005014,0.15878093242645],[-0.061669159680605,0.040870431810617,0.075392156839371],[-0.054261021316051,0.018891733139753,-0.010173364542425]],[[-0.073413372039795,-0.037975311279297,0.021179787814617],[-0.10953303426504,0.031771786510944,-0.0080438535660505],[-0.055336084216833,-0.13393414020538,0.0012961874017492]],[[-0.013967488892376,-0.044410940259695,-0.075729556381702],[0.025760104879737,0.053806349635124,0.010413000360131],[-0.096923992037773,0.13863569498062,0.033600457012653]],[[0.036443810909986,0.20516118407249,0.12034516781569],[0.012869856320322,0.12564997375011,0.0011283397907391],[0.058762211352587,0.006468003615737,-0.12041386961937]],[[-0.01958167925477,-0.041071459650993,0.024947525933385],[-0.06654167920351,-0.0057240263558924,0.0030824036803097],[-0.077194467186928,0.04407574981451,0.019229931756854]],[[0.068333745002747,-0.048908624798059,-0.024676205590367],[0.035926539450884,0.042224004864693,-0.044388812035322],[0.056967258453369,0.078066930174828,-0.044384058564901]],[[0.045959986746311,0.11504578590393,-0.035252567380667],[-0.066906079649925,0.0098013831302524,0.021926918998361],[-0.14514592289925,0.15853805840015,0.020817801356316]]],[[[0.030499204993248,-0.026646791025996,0.16538779437542],[0.060792002826929,-0.058090284466743,0.2461469322443],[0.14613458514214,-0.085066542029381,0.21962079405785]],[[0.0084650292992592,-0.0048541822470725,0.13594210147858],[0.036484360694885,0.00074568530544639,-0.0011807332048193],[-0.23758064210415,-0.14714226126671,-0.12657073140144]],[[-0.058668829500675,-0.12145645171404,0.23575185239315],[-0.14416410028934,0.019442332908511,0.017406355589628],[-0.11097022891045,0.05051140114665,0.14646093547344]],[[-0.10916442424059,-0.13831907510757,-0.086616039276123],[-0.23639580607414,-0.1375025510788,0.001325566554442],[-0.12218559533358,-0.02449624799192,0.075570322573185]],[[0.052711650729179,-0.024085227400064,0.08897303789854],[0.16154278814793,-0.11225794255733,0.22497947514057],[0.11996314674616,0.046147760003805,0.30831828713417]],[[-0.16414546966553,-0.02744759246707,0.16087345778942],[-0.015633573755622,0.02448452450335,0.025124050676823],[0.13068976998329,0.081481590867043,0.035915955901146]],[[-0.13430914282799,0.055255334824324,0.03515687212348],[0.17165377736092,0.060510944575071,0.069173291325569],[0.17936804890633,-0.07940636575222,0.024350877851248]],[[0.0077415332198143,-0.10041459649801,-0.16756623983383],[0.068783774971962,-0.11042727530003,-0.090495154261589],[0.061698455363512,-0.092547431588173,0.11423976719379]],[[0.20341344177723,-0.046895831823349,0.13328422605991],[0.17246413230896,0.0091725597158074,-0.085571065545082],[0.0067572887055576,-0.11604207009077,-0.053686544299126]],[[-0.041964042931795,-0.19725507497787,-0.29755488038063],[-0.021786002442241,-0.18858785927296,-0.11267342418432],[-0.029778890311718,-0.18493881821632,-0.24610221385956]],[[0.022969145327806,0.013946457765996,0.096147082746029],[0.098225861787796,-0.063717976212502,-0.040552455931902],[0.083513803780079,-0.098741061985493,-0.097069777548313]],[[0.13928286731243,-0.11630875617266,-0.096424013376236],[-0.064572848379612,-0.14727878570557,0.0018869112245739],[-0.0038926624692976,0.13979870080948,-0.026254797354341]],[[0.052201792597771,-0.11990778148174,-0.083580762147903],[0.053183823823929,-0.14782510697842,-0.12911462783813],[0.04551662504673,0.01286712475121,-0.027313690632582]],[[-0.010472727939487,0.012379350140691,-0.14583659172058],[-0.026391616091132,-0.0031559108756483,-0.074741907417774],[0.034698199480772,0.16590911149979,-0.083694964647293]],[[-0.14770187437534,-0.079976417124271,0.012705555185676],[-0.10619033873081,-0.078923873603344,-0.032406348735094],[-0.16133446991444,0.020445309579372,-0.10891488194466]],[[0.26368823647499,-0.15151263773441,-0.084105364978313],[0.16887059807777,-0.045983657240868,0.017584452405572],[0.22774136066437,-0.042887862771749,-0.096847325563431]],[[0.012912421487272,-0.086770549416542,-0.11305675655603],[0.055887747555971,-0.086301311850548,-0.19220475852489],[0.064754098653793,0.041462238878012,0.24272617697716]],[[0.089205853641033,0.062265112996101,0.16512282192707],[-0.0051182783208787,-0.094118893146515,-0.043533027172089],[-0.086005203425884,0.053591668605804,0.11362188309431]],[[0.10515443235636,0.12424886971712,0.0086785331368446],[0.1689430475235,-0.10543197393417,-0.088914796710014],[0.13412150740623,0.090822614729404,-0.053391415625811]],[[0.1163842305541,-0.064619094133377,-0.28696078062057],[0.15396413207054,-0.031663380563259,-0.058109827339649],[-0.016782538965344,-0.073451437056065,-0.051357332617044]],[[-0.053281310945749,-0.036471519619226,0.090713769197464],[-0.13293725252151,-0.089505277574062,0.07734452188015],[-0.14784355461597,-0.14234943687916,0.082308679819107]],[[0.16952110826969,0.0096500609070063,-0.15966683626175],[0.18264780938625,-0.056045610457659,-0.1809139996767],[-0.044297218322754,-0.029212206602097,-0.017309259623289]],[[0.048015657812357,0.014430529437959,-0.16098538041115],[-0.14623257517815,0.089534670114517,0.0097423018887639],[0.080676190555096,0.12009409815073,0.20063136518002]],[[-0.13085088133812,0.042901739478111,0.1039901226759],[-0.12072590738535,0.039416253566742,0.16176378726959],[-0.12096567451954,-0.035568285733461,0.052576795220375]],[[-0.15909847617149,-0.035276919603348,0.071322791278362],[-0.10964814573526,-0.081588603556156,-0.063904397189617],[0.12661424279213,0.067799784243107,0.045075319707394]],[[0.22105261683464,0.058541979640722,-0.089223340153694],[0.032404899597168,0.093018881976604,0.069299250841141],[-0.18088863790035,-0.034550797194242,0.28041902184486]],[[-0.19996145367622,0.21908274292946,0.084373764693737],[-0.1209951788187,0.12275119125843,-0.10069145262241],[-0.23040686547756,0.20947198569775,-0.155308380723]],[[-0.10409074276686,-0.17027215659618,0.02471156604588],[0.00726159196347,-0.22439169883728,0.0057063223794103],[0.043571427464485,-0.13796980679035,-0.025749484077096]],[[0.04776044562459,0.011443002149463,-0.07945516705513],[-0.040028911083937,-0.088963411748409,-0.086579218506813],[-0.0059434561990201,-0.059003487229347,-0.17098324000835]],[[0.12069722265005,0.042313549667597,-0.0099866380915046],[0.17523001134396,-0.049499563872814,-0.14948634803295],[0.12351504713297,-0.19623924791813,-0.16601060330868]],[[0.016612911596894,0.22262834012508,-0.37979251146317],[-0.0075963023118675,0.11003828793764,0.026490237563848],[-0.0020828617271036,0.10013726353645,0.010184516198933]],[[0.055236589163542,-0.0054912487976253,0.09471184015274],[-0.075084514915943,0.062711127102375,-0.047620635479689],[0.0090683419257402,0.12459290027618,0.045790910720825]],[[0.10492897778749,-0.18777684867382,-0.099319510161877],[0.18409435451031,0.0036314050666988,0.021545493975282],[0.25546783208847,-0.051230657845736,0.14852337539196]],[[0.17625859379768,-0.054172433912754,0.052985578775406],[0.10267043858767,-0.20515032112598,-0.001498680212535],[-0.082888461649418,-0.090959243476391,0.10920437425375]],[[-0.012534011155367,-0.1045101210475,-0.17546404898167],[-0.014351243153214,-0.15737475454807,-0.12052015960217],[0.013135825283825,-0.09724398702383,0.011440218426287]],[[-0.15519250929356,0.0041499813087285,0.062220200896263],[-0.13771365582943,-0.2034532725811,-0.095051728188992],[-0.067023284733295,-0.21382169425488,0.055577956140041]],[[0.031023066490889,0.061884667724371,-0.0011917410884053],[-0.026702210307121,-0.053882710635662,-0.14954671263695],[-0.038958929479122,-0.050275981426239,-0.06654316931963]],[[-0.096598662436008,-0.12889865040779,0.043998759239912],[-0.092595346271992,0.012202443554997,0.1180457174778],[-0.0081797447055578,0.077845863997936,0.062457241117954]],[[0.058294259011745,0.029921539127827,-0.00044920030632056],[0.073631480336189,0.05471159517765,0.053864117711782],[0.038475919514894,0.17234298586845,0.024865940213203]],[[0.057378865778446,-0.034695275127888,-0.12351097166538],[0.039061345160007,-0.034202996641397,-0.024842141196132],[0.038744889199734,-0.1735266149044,0.035774163901806]],[[-0.018896928057075,0.011332767084241,-0.062583513557911],[-0.035852171480656,-0.021819042041898,-0.10307615250349],[0.06188827008009,-0.029278578236699,-0.096026256680489]],[[0.00789700075984,-0.018664697185159,-0.14063343405724],[-0.012888460420072,-0.015582361258566,-0.11132436990738],[0.13694408535957,-0.12446754425764,-0.0832634344697]],[[-0.069390907883644,-0.027170093730092,0.091833919286728],[0.046902913600206,0.043520338833332,-0.047670170664787],[-0.11420375108719,0.014900511130691,-0.069463029503822]],[[-0.09728530049324,-0.070696167647839,-0.072246797382832],[-0.09771192073822,-0.15613554418087,-0.01214730553329],[-0.02772912196815,-0.10043880343437,0.076875701546669]],[[-0.28916129469872,-0.19905911386013,0.12754245102406],[0.070277266204357,-0.059637568891048,0.016618436202407],[0.035093493759632,0.00030925808823667,-0.13085792958736]],[[0.14049544930458,0.018968509510159,0.00078314851270989],[-0.043485131114721,0.11084834486246,0.0034484174102545],[-0.074950002133846,-0.079285249114037,0.063015297055244]],[[0.0010397132718936,0.16125160455704,-0.030938537791371],[0.14856068789959,-0.19399742782116,0.00056397821754217],[0.08291782438755,-0.15227825939655,0.076615549623966]],[[0.16887603700161,0.003505514934659,0.13013343513012],[0.015418319962919,-0.27367302775383,-0.068254694342613],[0.076241955161095,-0.025726458057761,0.01465661264956]],[[-0.03111975081265,0.032716754823923,0.055434573441744],[0.1015706807375,-0.10011748969555,-0.039623588323593],[0.25895345211029,0.0061148009262979,0.099106922745705]],[[-0.11653409153223,0.13825319707394,-0.083104386925697],[-0.12202831357718,0.06192671880126,0.016165463253856],[-0.022293731570244,0.02534132450819,0.078727468848228]],[[0.083800606429577,-0.0041251317597926,0.050816923379898],[-0.061206217855215,-0.088901154696941,-0.012267689220607],[-0.062303200364113,-0.056198470294476,0.072016030550003]],[[-0.11834815889597,-0.055097315460443,-0.077398344874382],[-0.1681791394949,0.12351907044649,-0.17684137821198],[-0.067645318806171,0.099861346185207,-0.05820182338357]],[[0.045056905597448,-0.055515497922897,0.0080676078796387],[-0.038724154233932,-0.10709021240473,-0.031610537320375],[0.014716413803399,-0.13451208174229,-0.11638607829809]],[[0.057450834661722,-0.089278347790241,0.068944297730923],[0.092049621045589,0.09577327221632,0.020086938515306],[0.017580263316631,-0.056400913745165,-0.06847720593214]],[[0.031605858355761,-0.096234619617462,-0.031844787299633],[0.025568574666977,0.020346201956272,-0.13253164291382],[0.039382871240377,0.091616578400135,0.042131204158068]],[[0.22245141863823,-0.064391292631626,-0.055695209652185],[0.26311871409416,0.013110147789121,0.099132746458054],[0.069405853748322,0.023766241967678,-0.11194647848606]],[[0.023935852572322,-0.15622583031654,-0.052239209413528],[0.10353717952967,0.077236630022526,-0.12290047109127],[-0.15189801156521,0.1211110278964,-0.09160927683115]],[[0.047453094273806,-0.0073059923015535,0.018520714715123],[-0.07752900570631,-0.08615842461586,-0.19996713101864],[-0.11843188107014,-0.18532887101173,0.1170452684164]],[[0.13618913292885,-0.12736923992634,-0.48293477296829],[0.0064663249067962,-0.0070573859848082,-0.20400801301003],[-0.10557694733143,0.19479241967201,-0.027401719242334]],[[0.05141806602478,0.31726342439651,-0.065815716981888],[0.052781172096729,0.17803910374641,0.14261814951897],[0.16400356590748,0.27853372693062,-0.029380680993199]],[[-0.12033288925886,-0.21523058414459,0.027372011914849],[0.05456705018878,-0.20976679027081,0.222805544734],[0.03710426017642,-0.25594854354858,0.23365703225136]],[[-0.05593353882432,-0.1163944453001,0.049878049641848],[0.11770956218243,-0.02921456284821,0.027199115604162],[0.013571180403233,-0.087526969611645,0.015402064658701]],[[0.0083913253620267,-0.050671949982643,0.13896621763706],[0.042600303888321,-0.062147472053766,0.027044581249356],[0.12501147389412,-0.13382689654827,0.040464799851179]],[[0.052896041423082,0.1914895772934,-0.035754345357418],[-0.084797017276287,-0.14095582067966,0.012566211633384],[-0.12485185265541,-0.0088421162217855,0.040554899722338]],[[0.050989404320717,-0.011366012506187,-0.11118724942207],[0.031700294464827,-0.041482396423817,0.019147530198097],[0.11915335804224,-0.029166832566261,-0.069774828851223]],[[0.28957536816597,0.28610441088676,-0.21180392801762],[0.052914191037416,0.14711686968803,-0.13486808538437],[-0.14497543871403,0.16856734454632,-0.14130572974682]],[[-0.074057206511497,-0.089052706956863,-0.14425447583199],[0.038833636790514,-0.12224496901035,0.010152078233659],[-0.10512381792068,0.058145929127932,0.030670477077365]],[[0.32292687892914,-0.11735963821411,-0.17462660372257],[-0.099306225776672,-0.11870882660151,-0.071417771279812],[-0.15061481297016,-0.071711495518684,-0.11986476182938]],[[0.10512232035398,0.068957462906837,0.064062401652336],[0.12435654550791,0.1002935692668,-0.042535167187452],[0.15099601447582,0.018277689814568,-0.12632729113102]],[[-0.10738757997751,-0.048986978828907,0.2597009241581],[0.051228079944849,-0.086959660053253,0.10521995276213],[0.067718699574471,-0.067072831094265,-0.017174772918224]],[[0.10036999732256,-0.093793824315071,0.083011239767075],[-0.10518741607666,-0.044721681624651,0.064426071941853],[0.05940667912364,-0.14499075710773,-0.17148919403553]],[[-0.18514247238636,0.192566588521,0.094242416322231],[0.14174944162369,0.097755245864391,0.017847798764706],[0.024726135656238,0.067947447299957,0.069697797298431]],[[-0.1917175501585,-0.091845847666264,0.063831381499767],[-0.14519388973713,-0.050833594053984,-0.027270395308733],[-0.16455118358135,-0.15081870555878,-0.054297246038914]],[[0.0029779390897602,-0.06781842559576,0.015566346235573],[0.045145336538553,-0.02229280397296,-0.015354332514107],[-0.015205130912364,0.011753621511161,-0.040335029363632]],[[0.23354819417,0.035038579255342,-0.021683860570192],[0.025195930153131,-0.012594386003911,-0.044107381254435],[-0.13240729272366,-0.060589861124754,-0.14829191565514]],[[0.052277117967606,0.11009636521339,0.22275663912296],[-0.052592091262341,-0.079338446259499,0.098501414060593],[-0.015652846544981,-0.026254013180733,0.10884641110897]],[[-0.0024892163928598,0.026601614430547,0.15713977813721],[0.0020856640767306,0.0070298295468092,0.0068679214455187],[-0.04997468367219,-0.037892449647188,-0.0026207955088466]],[[-0.034878265112638,-0.091841854155064,-0.014109431765974],[-0.11205281317234,-0.089349426329136,-0.043635472655296],[-0.062906585633755,-0.12717637419701,-0.21877062320709]],[[0.017481740564108,0.22909562289715,-0.15873791277409],[-0.0168851390481,0.028258815407753,-0.050160378217697],[0.03858894482255,0.036268498748541,0.082440130412579]],[[-0.16755498945713,-0.15878166258335,-0.15867201983929],[0.0071654208004475,-0.098892621695995,-0.17378662526608],[0.025584623217583,-0.15806694328785,-0.14281415939331]],[[0.088834904134274,-0.17926478385925,-0.17526558041573],[0.060448583215475,0.12761195003986,-0.017431193962693],[0.14818039536476,0.035864178091288,0.075717806816101]],[[0.092293441295624,-0.09873316437006,-0.057133123278618],[-0.0073373913764954,-0.039147481322289,-0.060693804174662],[-0.056094571948051,0.11391578614712,0.045236434787512]],[[0.037529915571213,0.33541256189346,0.032360274344683],[-0.055478058755398,0.088072046637535,0.031878810375929],[-0.059240281581879,0.085045747458935,0.13605685532093]],[[-0.09595100581646,-0.14463223516941,-0.12392186373472],[-0.15392529964447,-0.030998451635242,0.019173003733158],[-0.090116903185844,-0.12041828781366,0.010483978316188]],[[-0.058453910052776,0.19971790909767,0.14628271758556],[-0.11841043829918,0.10543852299452,-0.21991060674191],[-0.10479988157749,-0.076465241611004,-0.12949366867542]],[[0.14320200681686,0.022796085104346,-0.091750726103783],[-0.019086124375463,-0.019872922450304,-0.12687340378761],[-0.03017914481461,0.016236374154687,0.067153245210648]],[[0.076387822628021,-0.037537388503551,0.029825359582901],[0.029753170907497,-0.15797053277493,-0.064507991075516],[-0.033968891948462,0.0095243556424975,-0.051962692290545]],[[0.065846778452396,0.085983544588089,-0.30613997578621],[-0.086665511131287,0.046887692064047,-0.075717523694038],[-0.037085462361574,-0.075815141201019,0.025209741666913]],[[-0.099958784878254,-0.079574346542358,-0.020662212744355],[0.016773089766502,-0.13144542276859,0.019488727673888],[-0.056070763617754,-0.028594743460417,0.19966068863869]],[[-0.1827302724123,-0.1310034096241,0.0032153585925698],[0.088307544589043,0.068515740334988,0.048484392464161],[0.021767608821392,0.17844533920288,0.10808461904526]],[[-0.083971567451954,-0.13230317831039,0.12905678153038],[0.063059039413929,-0.10929674655199,0.061432335525751],[0.0045485366135836,-0.10015907138586,0.06486614793539]],[[-0.070637233555317,-0.014734494499862,-0.12021677941084],[0.096747897565365,0.066111259162426,-0.097840458154678],[-0.018444087356329,-0.013833300210536,-0.053879428654909]],[[0.019790356978774,0.094285733997822,0.027730891481042],[0.058733351528645,0.18223695456982,-0.038416136056185],[0.012284744530916,0.095535337924957,-0.089570559561253]],[[-0.27082186937332,-0.23190140724182,0.32068786025047],[-0.060704998672009,-0.046568021178246,0.0089178467169404],[-0.02740584500134,0.032671097666025,-0.098741434514523]],[[0.12961104512215,-0.036815699189901,0.1556221395731],[0.10898531228304,-0.02572275698185,0.25881496071815],[0.14121508598328,-0.11357165127993,0.13764300942421]],[[-0.19424863159657,0.013374152593315,0.045715566724539],[-0.17783653736115,0.14516673982143,-0.02401290461421],[-0.078356005251408,0.079346261918545,-0.08348809927702]],[[0.063877582550049,-0.087746672332287,0.14394713938236],[0.058355212211609,-0.13558088243008,0.15265609323978],[0.06588364392519,0.10054609924555,-0.097785338759422]],[[-0.06251709908247,0.15413799881935,0.22474436461926],[-0.10856348276138,0.16920943558216,0.025405986234546],[-0.082595251500607,0.24126367270947,0.20774735510349]],[[0.14492399990559,0.019523808732629,0.051992941647768],[-0.17103163897991,-0.056270536035299,-0.041523296386003],[0.050566829741001,0.00064977607689798,0.10764616727829]],[[0.073158293962479,-0.018098376691341,0.1424720287323],[0.049869079142809,-0.15809318423271,0.080334842205048],[0.16175210475922,-0.037474047392607,0.15939807891846]],[[-0.10758098959923,-0.10162528604269,-0.13114905357361],[-0.17639523744583,0.06302996724844,-0.077514931559563],[-0.03120150603354,0.1257701665163,0.091498114168644]],[[0.04811430349946,-0.068636670708656,0.045580185949802],[-0.039383117109537,-0.018444109708071,-0.044503133744001],[0.12156683206558,0.02152507007122,0.19128507375717]],[[0.056012943387032,-0.048628605902195,0.093907490372658],[-0.16374370455742,0.027584591880441,0.0040149316191673],[-0.21263870596886,0.19271463155746,-0.062610290944576]],[[-0.017213577404618,0.014799767173827,0.0064718932844698],[0.034852627664804,0.071712546050549,0.080991081893444],[-0.12113060802221,-0.11460434645414,-0.2411612868309]],[[-0.010703125968575,0.052683942019939,0.093582063913345],[-0.061156712472439,0.16766658425331,-0.025614965707064],[-0.15219090878963,0.16452287137508,-0.041648142039776]],[[0.18233549594879,0.063117831945419,-0.061380438506603],[0.026830567047,-0.11477848887444,-0.010020302608609],[-0.01163384038955,0.17427209019661,-0.13175015151501]],[[0.15006665885448,-0.0042945011518896,0.17647981643677],[0.063455380499363,0.0077111637219787,0.021911228075624],[0.09855879098177,0.24166044592857,-0.044299095869064]],[[0.066919110715389,0.063376620411873,0.13460355997086],[0.015502818860114,-0.12564240396023,0.12925365567207],[0.039380934089422,-0.18810871243477,0.085178717970848]],[[0.16270238161087,-0.02909910865128,-0.017885033041239],[0.0024136931169778,-0.099242359399796,0.017629683017731],[-0.054967653006315,-0.088582120835781,-0.0014902562834322]],[[0.05352821201086,-0.14716883003712,-0.17595937848091],[0.053782153874636,-0.01678954064846,0.01087530516088],[0.20484463870525,0.036905359476805,-0.10079256445169]],[[-0.01277142111212,-0.03942958265543,-0.016608767211437],[-0.084644041955471,0.055138546973467,-0.0001523552055005],[-0.10350682586432,-0.012241046875715,-0.022346250712872]],[[-0.051568500697613,-0.067571371793747,-0.0020746185909957],[-0.030620589852333,0.06526942551136,-0.12356505542994],[-0.027165379375219,-0.034326866269112,-0.1567964553833]],[[-0.080559231340885,0.096827052533627,0.19918049871922],[-0.085954517126083,-0.1943995654583,0.076899066567421],[0.10835433751345,0.054535858333111,0.17108568549156]],[[-0.17690597474575,-0.0013345630140975,0.043017286807299],[-0.031369935721159,0.1861228197813,0.20326299965382],[-0.18893386423588,0.14851424098015,0.11508232355118]],[[-0.087426587939262,0.2861068546772,-0.025139203295112],[-0.039131116122007,0.15526792407036,-0.07614029943943],[-0.0089591844007373,0.13735254108906,0.053404498845339]],[[0.021491842344403,0.18756110966206,0.21482910215855],[-0.10416926443577,-0.16370075941086,0.021245868876576],[-0.066138133406639,-0.10340780764818,-0.12569324672222]],[[-0.10889139771461,-0.065615549683571,0.032903663814068],[0.17867282032967,-0.07479452341795,-0.11640983819962],[0.24418120086193,0.060564864426851,-0.070218168199062]],[[0.20945616066456,0.1222991719842,0.21830481290817],[0.02373543381691,0.14295069873333,0.0088923145085573],[-0.1052043363452,-0.0067114275880158,0.12421600520611]],[[-0.02778335660696,-0.15335504710674,0.072074979543686],[0.039774660021067,0.046444181352854,0.029018577188253],[0.025968441739678,0.0095933983102441,0.025205932557583]],[[-0.012978184036911,0.084601998329163,-0.084009051322937],[-0.0099272569641471,0.021519713103771,-0.14214478433132],[-0.1165571436286,-0.078680418431759,-0.12764064967632]],[[0.027931433171034,-0.1041321605444,-0.024185001850128],[-0.053225990384817,-0.14388307929039,0.061234343796968],[-0.081646643579006,-0.065354064106941,0.03467533737421]],[[0.051424473524094,-0.024273658171296,-0.16845460236073],[0.13230311870575,-0.034336812794209,-0.0042975950054824],[0.1899897903204,-0.024461632594466,-0.10859908908606]],[[-0.13405434787273,-0.27011969685555,-0.084596619009972],[-0.067752830684185,-0.18622031807899,-0.15534579753876],[-0.058089662343264,-0.024510556831956,0.02508133649826]],[[-0.023160628974438,-0.043234247714281,-0.005432699341327],[-0.034808784723282,-0.013899212703109,0.047563418745995],[0.16223534941673,-0.011072455905378,0.077271468937397]],[[-0.11308288574219,0.022506454959512,-0.016186337918043],[-0.061010736972094,0.1815118342638,-0.074714623391628],[0.12390458583832,0.12918215990067,-0.11173432320356]],[[-0.22820322215557,-0.057183738797903,0.060338158160448],[-0.06073696538806,0.075882270932198,0.1191575601697],[0.071424178779125,0.075093701481819,0.15454438328743]],[[-0.080257028341293,0.053407847881317,0.06854248046875],[0.023266708478332,-0.080008737742901,0.16250610351562],[-0.055780552327633,-0.05784772336483,0.17724877595901]],[[0.14960591495037,-0.033197484910488,0.077226161956787],[0.037659022957087,0.051298305392265,0.13946139812469],[0.10686685144901,0.057286448776722,0.04000710695982]]],[[[-0.058960575610399,0.073640614748001,-0.018646724522114],[0.058379217982292,-0.090270087122917,-0.063526317477226],[-0.060958560556173,-0.10124850273132,-0.028583485633135]],[[0.035070069134235,-0.040990773588419,-0.061758443713188],[-0.12655761837959,0.029452720656991,0.015591344796121],[0.083483800292015,0.049168489873409,0.0070634037256241]],[[0.093697480857372,0.069519139826298,0.046734627336264],[0.023843949660659,0.011197609826922,0.031932704150677],[0.022619483992457,0.021718064323068,0.056591641157866]],[[0.043357636779547,-0.047445967793465,-0.032617561519146],[-0.016808733344078,-0.052398130297661,-0.094385899603367],[0.14939548075199,-0.045976400375366,0.12268570810556]],[[0.034144174307585,-0.096318326890469,0.15176455676556],[-0.05436273291707,0.050212275236845,0.07945355027914],[0.062709867954254,-0.068272188305855,-0.066776469349861]],[[-0.068962670862675,0.073911584913731,-0.19153715670109],[-0.12336555123329,0.093543782830238,0.044801216572523],[-0.11547880619764,0.011905648745596,0.12219851464033]],[[-0.036981672048569,0.030414547771215,-0.078479498624802],[-0.0096876611933112,0.052185222506523,-0.00073340890230611],[0.058568581938744,0.01560156326741,0.10464415699244]],[[0.032626956701279,-0.029712423682213,0.048633988946676],[0.04715083912015,0.11285860836506,0.14472648501396],[0.13221523165703,0.094391360878944,0.10050082951784]],[[0.019857758656144,0.19606192409992,0.095421746373177],[-0.015647722408175,0.032408948987722,-0.025452442467213],[-0.10414645075798,-0.13419669866562,-0.022928297519684]],[[0.025717936456203,0.028504636138678,-0.052603330463171],[0.070060320198536,-0.018039269372821,0.029035748913884],[-0.061671316623688,-0.12384160608053,-0.012147154659033]],[[0.095784410834312,0.025542998686433,0.095940984785557],[-0.029962323606014,0.0011366822291166,0.053685963153839],[0.10366640985012,0.15519614517689,0.031982488930225]],[[-0.11980575323105,-0.0068393382243812,0.030563363805413],[-0.13062936067581,-0.079107254743576,-0.036372259259224],[0.047966569662094,0.040557816624641,-0.080570630729198]],[[0.0024176111910492,-0.040632423013449,-0.05449290946126],[0.049037095159292,-0.045080956071615,-0.056546904146671],[-0.01957100071013,-0.16070048511028,-0.16319964826107]],[[0.0031724856235087,-0.10410647839308,-0.10540270805359],[-0.088673017919064,-0.055918894708157,-0.052665628492832],[-0.039928920567036,-0.038187772035599,0.066416829824448]],[[0.019368633627892,-0.027233473956585,-0.076328486204147],[0.14839275181293,-0.091056860983372,-0.045644756406546],[0.049505852162838,-0.022764092311263,-0.066544614732265]],[[-0.11511133611202,-0.087565295398235,0.069573432207108],[-0.037796791642904,0.060956753790379,-0.083113625645638],[-0.067672364413738,0.062628768384457,-0.17919827997684]],[[0.079538434743881,-0.093476161360741,-0.04653637111187],[-0.065607391297817,-0.0089712087064981,0.042794819921255],[-0.11658126860857,-0.038635514676571,0.020419931039214]],[[-0.061285607516766,0.090242467820644,-0.018775915727019],[-0.063841849565506,0.099097535014153,-0.081449419260025],[0.1229926943779,0.1371003985405,-0.063634462654591]],[[0.0075976732186973,-0.078527733683586,0.0065983738750219],[0.08063030987978,-0.15496292710304,0.059103313833475],[0.13017931580544,-0.086853258311749,-0.072744525969028]],[[-0.025870550423861,0.021654192358255,-0.079705566167831],[-0.11036559939384,0.022083470597863,-0.058833584189415],[0.18021079897881,0.073301307857037,-0.15287587046623]],[[0.044801324605942,0.0030726387631148,-0.11284445971251],[-0.093113042414188,-0.15862601995468,0.037130627781153],[-0.061435081064701,-0.10268665105104,-0.050224557518959]],[[0.21319258213043,-0.19245590269566,-0.029085857793689],[0.061216689646244,-0.015820791944861,-0.019271858036518],[-0.19406765699387,-0.048350784927607,0.0081413835287094]],[[0.091190129518509,-0.015229589305818,-0.01318568456918],[0.047654543071985,-0.023559499531984,0.067755781114101],[-0.11710115522146,-0.091241583228111,0.024359539151192]],[[-0.0010484687518328,0.018638109788299,-0.082365654408932],[0.022831318899989,0.08952447026968,-0.055820923298597],[0.026823041960597,-0.078594461083412,-0.025714199990034]],[[0.10312672704458,-0.063365198671818,0.075306206941605],[-0.11821253597736,-0.00067974365083501,0.096011310815811],[0.13685345649719,0.11152662336826,0.074316598474979]],[[-0.020382130518556,-0.16376234591007,0.046999238431454],[-0.070943504571915,-0.031864363700151,0.096200078725815],[-0.033998388797045,-0.049644291400909,-0.026257324963808]],[[-0.12547490000725,-0.002919529331848,0.033927328884602],[-0.037128712981939,-0.0048504797741771,0.098500542342663],[-0.13207304477692,0.035927724093199,0.15541538596153]],[[-0.094613969326019,0.070506930351257,-0.18130119144917],[0.08243303745985,-0.0080006802454591,-0.073075786232948],[0.028509415686131,-0.061219193041325,-0.0080961650237441]],[[-0.02328503318131,-0.034907553344965,-0.0060570454224944],[-0.014229978434741,-0.11872895807028,-0.060134746134281],[-0.058101959526539,-0.050096184015274,-0.09103624522686]],[[-0.047679256647825,0.069802217185497,0.11886207014322],[-0.033377345651388,-0.046947758644819,0.13413539528847],[0.015923200175166,-0.10421258956194,0.053473327308893]],[[-0.1069628149271,-0.05056830868125,-0.014999036677182],[-0.062763914465904,0.034877918660641,-0.039379559457302],[-0.093025639653206,0.0007948909769766,-0.20306214690208]],[[-0.086874678730965,0.076266497373581,-0.15162451565266],[-0.090150915086269,0.033990904688835,-0.025803146883845],[0.050737638026476,-0.099296264350414,-0.035051863640547]],[[0.064820170402527,0.017955791205168,0.062697611749172],[-0.078676119446754,0.067193664610386,0.10364708304405],[0.061216827481985,0.056991253048182,0.027465268969536]],[[-0.014616599306464,0.015870532020926,0.069608628749847],[0.042058296501637,0.13912908732891,-0.056548666208982],[-0.10752886533737,0.056570239365101,-0.092881590127945]],[[-0.081314861774445,-0.06025006249547,-0.10190402716398],[-0.12180323898792,0.046244509518147,-0.20694276690483],[-0.082527704536915,-0.052313592284918,-0.27259811758995]],[[-0.017849747091532,-0.0070855729281902,0.0070717358030379],[0.0056710974313319,0.03143135458231,0.031851824373007],[0.033817302435637,0.030088175088167,-0.093307808041573]],[[0.038524780422449,0.039832063019276,0.025389788672328],[-0.023489033803344,-0.082995913922787,-0.065426848828793],[-0.02986435033381,-0.015759726986289,-0.18985430896282]],[[0.070305250585079,0.039194669574499,0.25997224450111],[0.061169814318419,-0.094225838780403,-0.0035974134225398],[0.14159618318081,-0.15850958228111,-0.1557350307703]],[[-0.0059436247684062,0.04235116392374,0.10264405608177],[-0.033312425017357,-0.058150593191385,0.04291545599699],[-0.031853787600994,-0.14652200043201,-0.058731403201818]],[[-0.17594814300537,-0.057065803557634,-0.042074527591467],[0.09433663636446,0.042732495814562,-0.024904735386372],[0.19133749604225,0.14021581411362,0.11214178055525]],[[-0.046631403267384,0.0018037488916889,0.022544836625457],[-0.050653301179409,0.0037295329384506,0.044655721634626],[-0.20807974040508,0.053222984075546,-0.015497392974794]],[[0.0097306342795491,-0.090968154370785,-0.066661700606346],[-0.035395592451096,-0.031878966838121,0.0040359837003052],[0.046358436346054,0.055454079061747,0.012480312027037]],[[0.040344957262278,-0.058960217982531,-0.10294754803181],[-0.0016942038200796,-0.12584419548512,-0.0059863366186619],[-0.10623918473721,-0.046370308846235,0.030853819102049]],[[-0.029807915911078,-0.068182788789272,0.029364502057433],[-0.049991875886917,0.047998867928982,0.011540737003088],[0.025446094572544,-0.061907153576612,-0.10206052660942]],[[-0.02895568497479,-0.090092375874519,0.1233776062727],[0.01048441324383,-0.22314375638962,-0.03798770159483],[0.12883758544922,-0.020198764279485,0.055161412805319]],[[-0.21506029367447,-0.026126949116588,-0.11144904792309],[-0.1566813737154,-0.016918076202273,-0.018125854432583],[-0.025328991934657,0.015374838374555,0.037141870707273]],[[-0.056407950818539,0.097333870828152,-0.1589629650116],[-0.022853001952171,0.12947361171246,-0.028953094035387],[-0.12987227737904,0.073067232966423,-0.037054259330034]],[[0.027958435937762,0.0049641174264252,-0.079362727701664],[-0.028903611004353,0.010152168571949,-0.087153732776642],[0.020084971562028,-0.10893292725086,0.074781887233257]],[[0.46273228526115,-0.036517761647701,0.0038529236335307],[0.079519458115101,0.061975926160812,-0.018998637795448],[0.1803353279829,0.09762691706419,0.089788749814034]],[[-0.23385478556156,-0.11556816846132,0.019561968743801],[-0.094478510320187,-0.062842957675457,0.015904318541288],[-0.17281965911388,-0.10014868527651,-0.068860337138176]],[[-0.23473539948463,0.066419444978237,-0.04365623742342],[-0.10632419586182,-0.0029358747415245,0.062425598502159],[0.011933828704059,-0.12391440570354,-0.07251538336277]],[[-0.072712056338787,0.00047177218948491,-0.019726483151317],[-0.14786882698536,-0.0308184530586,0.19825604557991],[-0.091045916080475,-0.011547027155757,-0.23532330989838]],[[-0.023896815255284,-0.043140698224306,-0.04867460206151],[0.036110207438469,0.0076298336498439,-0.046037837862968],[0.0014574355445802,-0.11970137804747,-0.15943431854248]],[[-0.035583153367043,0.11967945843935,-0.12214773148298],[-0.050868805497885,0.020776720717549,-0.085585348308086],[-0.061432532966137,-0.012854691594839,0.015607505105436]],[[0.095884799957275,0.030843053013086,-0.055587466806173],[0.13599114120007,0.054717406630516,0.071565449237823],[0.09473480284214,-0.053140193223953,-0.014950883574784]],[[-0.20247296988964,0.028417823836207,0.0086784129962325],[-0.06337508559227,0.12895372509956,0.093112707138062],[-0.061349380761385,0.013450682163239,0.05085576325655]],[[-0.064153157174587,0.03084465675056,-0.0069547360762954],[0.167475938797,0.082410134375095,-0.09836620092392],[-0.055808052420616,0.014549748972058,0.012965342029929]],[[0.030562689527869,-0.061159465461969,-0.061451017856598],[0.045948330312967,-0.0064708101563156,0.018148999661207],[-0.057867255061865,-0.16581055521965,-0.083050779998302]],[[-0.10904283821583,0.046429976820946,-0.017172882333398],[0.038582924753428,0.0019643064588308,-0.095961935818195],[-0.033583842217922,-0.039573952555656,-0.091695174574852]],[[0.11235309392214,0.05376848205924,-0.01273167040199],[0.075044691562653,0.10426103323698,0.02131200581789],[0.0099885510280728,0.068087741732597,-0.053885404020548]],[[0.0074999933131039,-0.026183731853962,-0.067121654748917],[-0.092565648257732,0.11498216539621,-0.30257922410965],[-0.20896010100842,-0.12036536633968,-0.092195652425289]],[[0.088175989687443,-0.12255065888166,-0.098874926567078],[0.026133857667446,-0.035901073366404,0.0033082140143961],[-0.094433665275574,-0.10986208170652,-0.120685338974]],[[0.017024671658874,0.0029041729867458,-0.044077314436436],[0.0094144809991121,-0.039241138845682,0.062075614929199],[0.052783630788326,-0.028269350528717,0.021078169345856]],[[0.17666724324226,0.1467105448246,0.067678183317184],[0.17544117569923,0.13181455433369,0.17767512798309],[0.11800250411034,-0.021099012345076,0.20048321783543]],[[-0.082026861608028,-0.0090407263487577,0.059333849698305],[0.0071318582631648,0.0065366043709219,-0.07575435936451],[0.08932201564312,0.050921078771353,0.042018827050924]],[[0.20429287850857,-0.16525721549988,-0.053935073316097],[0.034537676721811,-0.039172206073999,0.0086019588634372],[0.046076592057943,-0.089305900037289,-0.033594757318497]],[[-0.029228547587991,-0.02673839405179,-0.14865179359913],[-0.005147690884769,-0.068802766501904,-0.065474435687065],[-0.10260466486216,-0.08206008374691,-0.045074552297592]],[[-0.064041763544083,-0.22525852918625,-0.10011278092861],[-0.016895154491067,-0.21793980896473,-0.086680047214031],[-0.035177797079086,-0.051477212458849,-0.16007320582867]],[[0.23053665459156,-0.034119382500648,-0.024043705314398],[-0.0068497331812978,-0.090273328125477,0.033537928014994],[-0.0012005212483928,-0.031251024454832,-0.026758192107081]],[[-0.04700219258666,-0.0062531284056604,-0.03134560585022],[0.040344513952732,0.044832549989223,-0.099339962005615],[0.021973809227347,-0.15234877169132,-0.069976724684238]],[[-0.026520371437073,0.044534251093864,-0.12722064554691],[-0.025525826960802,0.071664065122604,0.20973359048367],[0.16735453903675,-0.033508203923702,-0.049971673637629]],[[-0.060233615338802,-0.023986160755157,0.086584724485874],[0.019148014485836,0.010275911539793,0.016723992303014],[-0.10993666946888,0.015526070259511,0.16740903258324]],[[-0.15422378480434,-0.12676613032818,-0.02400310151279],[-0.058137852698565,-0.11922448128462,-0.14979121088982],[-0.052419163286686,-0.013701976276934,-0.058364659547806]],[[0.040788371115923,-0.094916127622128,-0.055345505475998],[-0.031000768765807,0.090873047709465,0.023672942072153],[0.07538628578186,0.035623889416456,-0.039367947727442]],[[-0.022451791912317,0.02951423637569,-0.075096189975739],[-0.034401684999466,0.14235895872116,-0.024643866345286],[-0.011522741988301,0.099942274391651,-0.11598289757967]],[[0.018221722915769,0.014544955454767,0.065417639911175],[0.017652705311775,0.019794719293714,0.046784318983555],[0.0040611368604004,0.011692117899656,0.0021338460501283]],[[0.024171946570277,0.018677413463593,-0.15073399245739],[-0.085632339119911,-0.02769859880209,0.17303515970707],[-0.0032295915298164,-0.061048410832882,-0.025221470743418]],[[-0.047907065600157,-0.061141449958086,0.12741589546204],[-0.14513774216175,0.029063014313579,0.19455912709236],[-0.05550891906023,-0.059765495359898,-0.12663616240025]],[[-0.091363452374935,0.005422763992101,-0.057123489677906],[0.023299142718315,-0.061604477465153,0.016213294118643],[0.14497864246368,-0.093031838536263,-0.035890631377697]],[[0.09060975164175,-0.014900562353432,0.18515238165855],[0.21074612438679,0.010532533749938,-0.17581261694431],[0.14579457044601,-0.053337972611189,-0.19013944268227]],[[-0.10492044687271,0.060120243579149,-0.028739614412189],[0.012094512581825,-0.021286914125085,0.090074002742767],[0.094150193035603,-0.034624442458153,0.14044472575188]],[[0.048366274684668,-0.1501742452383,-0.037844825536013],[-0.15878339111805,-0.0012211727444082,-0.11275204271078],[0.17513354122639,0.21647806465626,0.17989818751812]],[[0.15130038559437,0.19586031138897,-0.029597764834762],[-0.016840158030391,0.052195586264133,-0.062963970005512],[0.12782533466816,-0.0066235652193427,0.049809910356998]],[[-0.10344760864973,0.006469301879406,0.048194050788879],[-0.13377526402473,-0.069177851080894,-0.051550313830376],[-0.11227530241013,-0.026933182030916,-0.13622523844242]],[[0.13186159729958,-0.067877493798733,-0.0063809677958488],[0.15982772409916,0.031412191689014,0.016214165836573],[0.034435719251633,-0.032319445163012,-0.032972931861877]],[[0.0007868628599681,-0.065234586596489,0.0047738775610924],[0.054038841277361,0.048108007758856,0.038230881094933],[0.13938410580158,0.025718221440911,0.07470627874136]],[[0.050894636660814,0.062610447406769,0.15371109545231],[0.03852965682745,0.045661792159081,0.12959662079811],[-0.046298567205667,0.071952350437641,-0.085332587361336]],[[0.15048240125179,-0.027153041213751,0.023961547762156],[0.082914561033249,-0.011450471356511,0.044622700661421],[0.17683300375938,-0.0097924442961812,-0.041115406900644]],[[0.0069545195437968,0.056268248707056,-0.039921432733536],[-0.065196372568607,0.1233831346035,-0.1298069357872],[-0.050661955028772,0.21218860149384,0.023328932002187]],[[-0.029211916029453,0.014021798036993,0.05237253010273],[-0.040898062288761,-0.13228471577168,0.1223908290267],[0.063647709786892,-0.05385185033083,0.00090553797781467]],[[-0.0053922086954117,0.068137615919113,-0.1168177947402],[0.064080983400345,0.12488287687302,0.025487240403891],[-0.062937639653683,0.13350038230419,-0.044568005949259]],[[-0.05851361528039,0.0046554016880691,-0.21281291544437],[-0.06805632263422,-0.029696365818381,-0.16130276024342],[-0.13354207575321,-0.077221974730492,0.0041318158619106]],[[0.074804216623306,-0.056977346539497,0.048884626477957],[-0.016563626006246,-0.018766792491078,-0.010322376154363],[-0.078875333070755,-0.11470051109791,-0.011530455201864]],[[0.044462785124779,0.033490315079689,-0.033193577080965],[-0.12547911703587,-0.022138020023704,-0.031497910618782],[-0.050475887954235,-0.016869092360139,0.0070107989013195]],[[-0.024860458448529,0.0053844400681555,-0.039669774472713],[-0.1352236866951,0.05183332040906,0.037271816283464],[-0.058275260031223,0.013291396200657,-0.066103182733059]],[[-0.053445026278496,-0.085705526173115,0.095845505595207],[-0.057425726205111,-0.096811674535275,0.099908471107483],[-0.040634009987116,-0.010389999486506,0.14334812760353]],[[-0.037981059402227,-0.040135510265827,-0.12051017582417],[-0.023640885949135,0.10994040220976,-0.043816287070513],[0.10705957561731,0.13030363619328,-0.10191696882248]],[[0.089775957167149,0.10830899327993,-0.067524664103985],[0.088081486523151,-0.0025348190683872,0.12348004430532],[0.024320939555764,-0.013303277082741,0.074870988726616]],[[-0.10211612284184,-0.093764215707779,0.073144428431988],[-0.0080489404499531,0.095873862504959,-0.020172609016299],[-0.15510241687298,0.12083251029253,-0.091568171977997]],[[-0.011790765449405,0.074955724179745,0.092446900904179],[0.092589676380157,0.037257522344589,-0.070580743253231],[0.070775792002678,-0.18417932093143,-0.022239280864596]],[[-0.13198031485081,-0.090890243649483,0.031745426356792],[-0.098500587046146,-0.083140194416046,0.0019586498383433],[0.098175458610058,0.012889946810901,-0.017697967588902]],[[0.18817301094532,0.20673301815987,-0.048669703304768],[0.065673790872097,0.025778835639358,-0.077613823115826],[0.16031748056412,0.091486148536205,0.047411568462849]],[[-0.16788457334042,0.031519867479801,-0.11715666949749],[-0.063225127756596,-0.0047706020995975,-0.059805657714605],[0.084207460284233,-0.028615027666092,0.024922579526901]],[[-0.079489678144455,0.032811868935823,-0.065105102956295],[0.064780659973621,0.14994736015797,0.076324269175529],[-0.08406089246273,0.05191695690155,0.047189835458994]],[[0.0737075060606,0.066144049167633,-0.057572335004807],[0.033339105546474,0.10841137170792,-0.0035781199112535],[-0.011610995978117,-0.11414393782616,-0.022369677200913]],[[0.037400711327791,0.11477538198233,-0.15047414600849],[0.23366409540176,-0.033344388008118,-0.14223681390285],[0.048679169267416,-0.065837673842907,-0.017424937337637]],[[-0.06661069393158,-0.095490597188473,0.0053625795990229],[-0.049059122800827,-0.0086566470563412,0.065478108823299],[0.015845037996769,0.073312625288963,0.054042015224695]],[[-0.1381973028183,-0.051705975085497,0.14237236976624],[-0.073593206703663,0.064273647964001,0.090477518737316],[-0.20992960035801,-0.026059767231345,0.060417599976063]],[[-0.077139668166637,0.069201409816742,0.086260385811329],[-0.070839643478394,0.036299899220467,0.097587689757347],[-0.002670003566891,0.055637177079916,0.045981999486685]],[[0.036572799086571,-0.0080679226666689,-0.0048103234730661],[0.040644768625498,-0.042953677475452,0.11232443153858],[0.05465342849493,-0.043622098863125,0.17512290179729]],[[-0.10763419419527,-0.028663609176874,0.048644371330738],[-0.076235838234425,-0.040379710495472,-0.11124809831381],[0.04752954095602,0.10337641835213,-0.065895676612854]],[[-0.062069192528725,0.12720508873463,-0.041963253170252],[0.084666043519974,-0.0057591926306486,-0.086319886147976],[0.00050856493180618,-0.028668571263552,-0.13765022158623]],[[-0.0013897635508329,-0.048732612282038,0.04286940023303],[-0.023748455569148,-0.02898657694459,-0.13124094903469],[0.10192577540874,0.088072799146175,-0.15314148366451]],[[-0.22568106651306,-0.017316428944468,0.11873926967382],[-0.17883569002151,0.14478187263012,0.015957843512297],[0.0038478926289827,0.037678018212318,0.23836946487427]],[[0.26717957854271,0.0081839626654983,0.04064841940999],[-0.041311219334602,0.038300581276417,0.017646290361881],[-0.10904249548912,-0.013667281717062,0.21453246474266]],[[0.013190464116633,0.017181230708957,0.002588365226984],[0.0042314035817981,-0.035266563296318,-0.038177948445082],[-0.09369120746851,-0.065565817058086,-0.0324940495193]],[[-0.05541755631566,0.011990980245173,0.038760684430599],[0.045967292040586,-0.041235364973545,0.014940774999559],[-0.071903765201569,-0.032055452466011,0.069467335939407]],[[-0.055492050945759,-0.2254695892334,0.077994413673878],[0.075899794697762,-0.032824825495481,0.01171493716538],[-0.063072517514229,0.0062899151816964,0.11680825054646]],[[0.11338663101196,-0.063125565648079,-0.091278672218323],[0.045870706439018,-0.053865224123001,-0.054875772446394],[0.084532402455807,0.038683567196131,-0.060603097081184]],[[0.11757542937994,-0.15949659049511,0.0024715650361031],[0.074835382401943,-0.027478136122227,-0.17055788636208],[0.088229395449162,-0.053420446813107,0.0022475235164165]],[[0.0031373361125588,-0.099700599908829,-0.027637124061584],[-0.021536368876696,-0.079151123762131,-0.084514789283276],[-0.0076611079275608,-0.055475238710642,-0.014255071990192]],[[0.11632249504328,0.073650851845741,0.072855658829212],[0.12758672237396,0.022072687745094,-0.077230013906956],[0.083700880408287,-0.060746621340513,0.010925807058811]],[[-0.001593297929503,-0.078592866659164,0.0053886920213699],[-0.050619658082724,-0.074670284986496,-0.098163262009621],[-0.15401986241341,0.089753523468971,-0.088360592722893]],[[-0.11255179345608,0.019611967727542,0.12273213267326],[-0.099995709955692,0.070965856313705,0.17526540160179],[-0.044013660401106,0.063555017113686,0.10217423737049]],[[-0.01553856022656,-0.081230737268925,-0.057479467242956],[0.076502583920956,-0.015908874571323,0.010543844662607],[0.27367636561394,-0.055301815271378,0.011125350371003]],[[0.19080872833729,-0.14957213401794,0.03291030600667],[0.12862609326839,0.070643156766891,0.0041130632162094],[-0.14044317603111,-0.05414317920804,-0.031549114733934]],[[0.034007929265499,0.11441134661436,-0.081359103322029],[-0.060106258839369,0.13373713195324,-0.026924120262265],[-0.010537046939135,-0.059505935758352,0.049932043999434]],[[0.0039219008758664,-0.11844005435705,-0.087076976895332],[-0.020625406876206,0.047285381704569,-0.050757370889187],[0.034151088446379,0.082437686622143,0.0086223827674985]]],[[[0.10512008517981,-0.068870157003403,-0.091752238571644],[-0.076210640370846,-0.071031980216503,-0.010499324649572],[0.1264985203743,-0.015966964885592,0.23882347345352]],[[-0.055240858346224,0.021509168669581,0.067461542785168],[-0.020873451605439,0.047758799046278,0.096070043742657],[0.0098932385444641,-0.045773919671774,-0.029572427272797]],[[0.071931764483452,-0.035186175256968,-0.17508259415627],[-0.11332774162292,-0.030069313943386,-0.058389570564032],[0.1176830381155,0.043816439807415,-0.096833527088165]],[[0.017873318865895,-0.0097459061071277,-0.045258115977049],[-0.002772472333163,0.027277270331979,0.010489657521248],[-0.042242527008057,0.031665436923504,0.037117663770914]],[[-0.014172601513565,-0.036424551159143,0.054126460105181],[-0.036120254546404,0.046398036181927,-0.054649323225021],[0.10338363051414,-0.045115005224943,-0.016804967075586]],[[-0.011568293906748,0.10313151031733,-0.08200778067112],[0.077217310667038,-0.028640605509281,-0.15249049663544],[0.026880392804742,0.011070135980844,0.019818147644401]],[[-0.10439188033342,-0.12906266748905,-0.20998638868332],[0.0060986783355474,0.050069756805897,0.02296101115644],[0.10557205975056,0.023188730701804,-0.10098399221897]],[[0.046436592936516,0.059421449899673,0.10206325352192],[-0.14724338054657,-0.14738456904888,0.15206131339073],[0.018312446773052,0.010432220995426,-0.017046838998795]],[[-0.1212967261672,0.012542667798698,0.27238327264786],[-0.11119350790977,-0.13669426739216,0.18034537136555],[-0.089954681694508,-0.12154957652092,0.084232792258263]],[[0.0033931666985154,0.002098229015246,0.067681223154068],[-0.063327461481094,0.031085407361388,0.025416009128094],[-0.038336958736181,-0.17323982715607,-0.039491824805737]],[[-0.096860267221928,-0.13518120348454,0.082053028047085],[-0.075482279062271,-0.040851350873709,0.16404092311859],[0.0035795005969703,0.025882882997394,-0.13542573153973]],[[-0.053671855479479,0.040522631257772,-0.046394556760788],[-0.12687356770039,-0.046601563692093,-0.03987854346633],[0.064511880278587,-0.01975361071527,0.1586646437645]],[[-0.019896060228348,-0.035256110131741,-0.11936562508345],[-0.027437206357718,-0.13605996966362,-0.097529537975788],[-0.0030080005526543,0.017162779346108,0.13541676104069]],[[-0.14250014722347,0.0096811782568693,0.078786052763462],[-0.13976658880711,-0.07361363619566,0.048666935414076],[-0.13618367910385,-0.1757190823555,-0.016861816868186]],[[0.076170936226845,-0.052304066717625,-0.093111611902714],[-0.044839642941952,-0.09007553011179,0.024914028123021],[0.0014504541177303,-0.077106654644012,0.040218699723482]],[[0.018280619755387,0.033126082271338,-0.0066527700982988],[-0.21851855516434,-0.033725541085005,0.10522083193064],[0.20099875330925,0.04930404573679,-0.1478786021471]],[[0.12909126281738,-0.064744174480438,0.11075986921787],[-0.12473265081644,-0.035157531499863,-0.084447778761387],[0.01594141125679,-0.041737999767065,-0.072012029588223]],[[0.049334082752466,-0.10499010235071,-0.17135488986969],[-0.044523399323225,-0.16836538910866,0.024457773193717],[-0.081567965447903,-0.010234551504254,0.11604794114828]],[[0.0067706205882132,0.010857599787414,0.16331896185875],[0.012062013149261,0.021126799285412,-0.11372624337673],[0.075294710695744,0.055841598659754,-0.043322619050741]],[[-0.13286723196507,0.016327200457454,0.098882228136063],[-0.054015044122934,-0.022060779854655,-0.0081364559009671],[-0.13292117416859,0.0098697654902935,0.14205996692181]],[[-0.01821593567729,-0.02739480510354,-0.081311218440533],[-0.00012215174501762,-0.084474712610245,-0.027488360181451],[-0.019032953307033,-0.050219189375639,0.011652344837785]],[[0.060287021100521,0.10847284644842,0.0011496201623231],[-0.10589348524809,-0.082124605774879,0.13840121030807],[0.025418637320399,0.12957514822483,0.064348593354225]],[[0.0054058451205492,0.0047456752508879,-0.16582041978836],[0.067943729460239,-0.23732925951481,0.18651100993156],[0.096746742725372,-0.037099651992321,-0.05827571451664]],[[0.10094077885151,-0.0084562916308641,-0.01297277584672],[0.050256073474884,0.0044733211398125,0.008480510674417],[-0.058436177670956,-0.12572965025902,-0.087936788797379]],[[0.05254365876317,0.0090739158913493,0.022437773644924],[0.15719164907932,-0.039036840200424,0.077755525708199],[0.29705372452736,-0.090672001242638,0.03616776317358]],[[0.031603459268808,0.0052006337791681,0.10634904354811],[-0.0064479229040444,-0.030807228758931,0.00049776525702327],[0.12505008280277,-0.081908442080021,-0.017368087545037]],[[0.10502380132675,-0.0077095930464566,0.16928897798061],[0.097188822925091,0.02761759236455,0.00019338095444255],[0.071782469749451,-0.013716647401452,-0.10861359536648]],[[-0.01245663035661,0.11949513107538,-0.025468384847045],[0.12487588077784,0.037462458014488,-0.13147522509098],[0.086692966520786,0.0015104956692085,-0.046446796506643]],[[-0.04316221177578,0.090130604803562,0.033313781023026],[-0.031567420810461,-0.1387941390276,0.0057072984054685],[0.0046150181442499,0.078711844980717,0.15850201249123]],[[-0.10137980431318,0.027703927829862,0.10251963883638],[-0.11059335619211,0.1462650001049,-0.14318686723709],[0.033808387815952,0.018279068171978,-0.055162347853184]],[[0.018612034618855,0.049265716224909,0.037052880972624],[-0.092733412981033,0.069738499820232,0.015544173307717],[-0.007495338562876,0.06433892250061,0.15391254425049]],[[-0.033176802098751,-0.016029955819249,-0.061655525118113],[0.0078944768756628,-0.10846411436796,-3.1927556847222e-05],[0.0095938872545958,-0.023101527243853,0.16446049511433]],[[0.00065112445736304,0.0078741339966655,-0.11067263782024],[0.10492916405201,0.040999542921782,-0.052739802747965],[-0.13720959424973,0.038161363452673,0.29288274049759]],[[0.12650261819363,0.19846421480179,-0.044201109558344],[-0.042929138988256,-0.069442927837372,0.10690323263407],[0.085723668336868,-0.041112840175629,0.10071762651205]],[[-0.012269867584109,-0.044531267136335,-0.35390573740005],[-0.063251383602619,-0.081417299807072,-0.15187485516071],[-0.11525136232376,0.053281754255295,-0.11677045375109]],[[0.019865462556481,0.030992677435279,0.047615930438042],[0.018012570217252,-0.048461426049471,0.00096458964981139],[-0.016645720228553,0.0317687317729,0.0094117280095816]],[[-0.019393917173147,-0.0033814730122685,-0.13602244853973],[-0.021323541179299,-0.076308198273182,-0.063086286187172],[0.059767004102468,-0.037845768034458,-0.041962511837482]],[[0.04940078407526,0.068364143371582,-0.15073232352734],[-0.0234414935112,0.10289894044399,-0.019375160336494],[0.089119732379913,-0.19285915791988,-0.067665211856365]],[[0.1640337407589,0.15984040498734,-0.040996268391609],[0.013897600583732,0.03992860391736,-0.018276281654835],[-0.033406518399715,0.00081203237641603,0.068847186863422]],[[0.034967496991158,0.071248397231102,-0.0249984562397],[-0.086026079952717,0.056922197341919,0.10183344781399],[-0.029293285682797,0.0010533137246966,-0.045244120061398]],[[-0.028556987643242,0.076956391334534,-0.051513817161322],[-0.22669726610184,0.17125786840916,0.057321265339851],[0.07793091237545,0.13129875063896,0.0033321981318295]],[[0.10759481787682,-0.020395737141371,-0.11499363183975],[0.16499409079552,0.017549503594637,0.016510225832462],[0.031025268137455,0.028620585799217,0.092671163380146]],[[-0.0014694205019623,-0.13547985255718,-0.01164944190532],[-0.07864934951067,-0.097283996641636,0.035515636205673],[0.005767063703388,-0.014698014594615,-0.08762389421463]],[[-0.098639890551567,-0.0075717950239778,-0.0069855842739344],[-0.094078697264194,0.072341226041317,0.0039847483858466],[-0.082727327942848,-0.01852941699326,0.036844298243523]],[[0.065538622438908,-0.011081168428063,-0.11019063740969],[-0.10843480378389,-0.064534492790699,0.013614550232887],[0.046438876539469,-0.049043614417315,0.090764589607716]],[[-0.22765783965588,0.060555007308722,-0.046419642865658],[-0.013357805088162,-0.061145395040512,-0.12056629359722],[-0.022637212648988,0.036885503679514,0.051378909498453]],[[0.10530173778534,0.049544218927622,-0.090263493359089],[-0.10367418825626,0.075913317501545,-0.078966744244099],[-0.15367107093334,-0.073924511671066,0.024996688589454]],[[0.018973294645548,-0.071638084948063,0.035307481884956],[-0.050650294870138,0.060294479131699,-0.0035870077554137],[0.016957551240921,0.074882015585899,-0.14404094219208]],[[-0.1119993403554,-0.14041547477245,-0.11139278113842],[-0.024965358898044,0.055755581706762,0.046177748590708],[-0.0069071780890226,0.0071437880396843,0.023431079462171]],[[-0.065977834165096,-0.16468307375908,0.0064422874711454],[-0.14238139986992,-0.016484241932631,0.040483310818672],[-0.043362021446228,0.12434992194176,-0.0089881671592593]],[[-0.24414396286011,0.2013141810894,-0.013542961329222],[0.012854190543294,0.059923660010099,-0.027715757489204],[0.11425670236349,0.060120828449726,0.083729334175587]],[[-0.081386312842369,0.077836230397224,-0.11660280823708],[0.04845366999507,-0.0062053301371634,0.0071461265906692],[0.067089036107063,0.028480345383286,-0.059471789747477]],[[-0.019953282549977,0.0012572630075738,0.076593577861786],[0.002717153634876,0.049199771136045,0.020050229504704],[-0.03208114951849,-0.11625017225742,0.087157644331455]],[[0.042976919561625,-0.14059956371784,0.21637307107449],[0.15864369273186,-0.11925829201937,0.036585830152035],[-0.0029640349093825,-0.15647280216217,-0.063849695026875]],[[-0.16303806006908,0.10237184911966,0.13441653549671],[0.044003643095493,-0.1983787715435,0.057592879980803],[0.04872303083539,0.1233981102705,-0.02455597743392]],[[-0.23010575771332,-0.086353488266468,-0.098606392741203],[0.0095784179866314,0.068197339773178,0.063445493578911],[0.1254920065403,0.0073118670843542,-0.020191933959723]],[[0.080736480653286,0.069508738815784,-0.0056982934474945],[0.0036030423361808,-0.075501777231693,-0.044108092784882],[0.019194930791855,-0.14157031476498,0.0079527301713824]],[[-0.21922446787357,-0.11940531432629,-0.13275980949402],[0.010401364415884,-0.019196452572942,-0.067373432219028],[-0.1272259503603,-0.083153575658798,0.0195331890136]],[[-0.041410699486732,-0.13751761615276,-0.0059842211194336],[-0.18389488756657,-0.055657938122749,-0.11139775812626],[0.13525965809822,0.0017784076044336,-0.16958385705948]],[[-0.17547436058521,-4.8690555559006e-05,0.10421673953533],[-0.089437492191792,-0.011418795213103,0.097676567733288],[0.10742032527924,0.16906820237637,0.21234738826752]],[[0.0084900027140975,0.0073389052413404,-0.094437018036842],[0.035575717687607,-0.066546157002449,-0.025957284495234],[0.084276229143143,0.075919158756733,0.10888323932886]],[[-0.013585923239589,-0.13252130150795,-0.032421141862869],[-0.15986980497837,0.12492394447327,0.060153644531965],[0.12387152761221,0.01487962435931,-0.063062585890293]],[[-0.014709790237248,-0.016107140108943,-0.0069331885315478],[-0.016916990280151,-0.013657850213349,0.03132251650095],[-0.0050085769034922,0.015311380848289,0.084920085966587]],[[-0.0052561168558896,-0.029236735776067,-0.057596102356911],[-0.036140415817499,-0.027490485459566,-0.014694647863507],[0.025192406028509,-0.023828869685531,-0.0063488511368632]],[[-0.096211433410645,-0.0014038186054677,0.032662499696016],[-0.10831562429667,-0.0071164257824421,0.099118143320084],[-0.038691479712725,0.012375209480524,0.21294811367989]],[[0.00014607401681133,0.028409386053681,0.083569258451462],[0.09135527908802,0.086681425571442,0.025371342897415],[0.04498066753149,0.068896181881428,0.082927018404007]],[[-0.084326058626175,0.036014493554831,0.15076649188995],[0.020626906305552,-0.076741322875023,-0.057178288698196],[-0.026089051738381,-0.0054480396211147,-0.0034418518189341]],[[-0.056897312402725,-0.12930943071842,-0.068317472934723],[0.069833755493164,0.052916392683983,0.00091200764290988],[-0.02141310274601,-0.0063080149702728,-0.058001089841127]],[[-0.030858753249049,0.023983599618077,-0.050020083785057],[-0.055928330868483,-0.063255600631237,-0.051424838602543],[-0.014968141913414,-0.016148572787642,-0.009922482073307]],[[-0.013928459957242,-0.00017542199930176,-0.048348683863878],[0.048641797155142,-0.031781334429979,-0.15192343294621],[-0.016693640500307,-0.05215135216713,-0.10821852833033]],[[-0.14392161369324,0.068827852606773,-0.047746557742357],[-0.018477890640497,-0.020087713375688,-0.068611554801464],[-0.035814087837934,-0.027957454323769,-0.096433192491531]],[[0.05997546762228,-0.079560607671738,-0.014350237324834],[-0.22308650612831,-0.14759609103203,0.030097860842943],[-0.029524050652981,-0.12356353551149,0.005392097402364]],[[0.013663165271282,0.038390371948481,-0.072889372706413],[0.16879063844681,-0.041932493448257,-0.085976526141167],[-0.048082929104567,-0.13041815161705,-0.041237022727728]],[[-0.025299897417426,-0.11782800406218,0.10584484785795],[-0.12361256033182,-0.025092478841543,0.022649941965938],[-0.044975284487009,0.0096726799383759,0.0068653603084385]],[[0.027657819911838,0.053000871092081,-0.051967944949865],[0.092670693993568,-0.019627088680863,0.028274225071073],[-0.066948242485523,0.00033275529858656,-0.061175785958767]],[[-0.014756984077394,-0.12557674944401,0.091641314327717],[-0.0055560152977705,-0.11317104846239,0.11462727934122],[-0.03033328615129,0.081064082682133,-0.15798027813435]],[[-0.091726332902908,-0.12925700843334,-0.04686425998807],[-0.094758838415146,-0.039160791784525,-0.032707706093788],[-0.073987349867821,0.066161870956421,-0.097873404622078]],[[-0.098248951137066,-0.071723118424416,-0.056447945535183],[-0.15366318821907,-0.075302623212337,-0.011253669857979],[0.036785908043385,-0.18124562501907,0.027366518974304]],[[-0.072529286146164,-0.014977800659835,0.19544032216072],[0.095651514828205,0.056888349354267,0.14601092040539],[0.04750694334507,0.13458979129791,0.080546215176582]],[[0.0092262076213956,-0.11900586634874,0.0036473779473454],[-0.11915551871061,-0.12407636642456,-0.079574190080166],[-0.099526457488537,-0.084095850586891,0.025314407423139]],[[-0.1217010691762,-0.026635635644197,-0.032088615000248],[0.083271190524101,-0.046442359685898,0.0038335772696882],[-0.083979189395905,0.035842351615429,-0.0065195024944842]],[[0.035240322351456,0.036046840250492,0.065841548144817],[-0.024592963978648,-0.18924804031849,0.12678511440754],[0.047355849295855,0.028283653780818,-0.058981921523809]],[[0.064699314534664,-0.15396420657635,0.028657181188464],[-0.094353996217251,0.064516469836235,0.10502272844315],[0.058642737567425,0.027973469346762,0.017093054950237]],[[-0.08861255645752,-0.12311847507954,-0.0092936549335718],[-0.0016151000745595,-0.035664092749357,0.070428319275379],[0.016708299517632,-0.046102683991194,-0.023456029593945]],[[-0.043801084160805,0.072797663509846,-0.029908962547779],[-0.0012442368315533,-0.13294273614883,-0.057158373296261],[0.16059152781963,0.082463569939137,-0.04835557192564]],[[0.001621013158001,0.012168943881989,0.023674188181758],[0.16352786123753,-0.0031325039453804,-0.0366255864501],[0.10426650196314,-0.089786723256111,0.01876806281507]],[[0.076066851615906,-0.068687960505486,0.04555843397975],[0.027253875508904,-0.022345194593072,0.011279055848718],[-0.10407155007124,-0.069922424852848,0.0029887582641095]],[[-0.11883752048016,0.18695601820946,0.12385973334312],[0.21965856850147,-0.19402641057968,0.045629151165485],[0.15463604032993,-0.1684567630291,-0.011209889315069]],[[-0.078047223389149,-0.12286465615034,-0.068175762891769],[0.079609081149101,0.19073089957237,0.18360070884228],[0.11370553076267,0.18184754252434,0.0044840667396784]],[[0.066028505563736,-0.02424537204206,-0.012796635739505],[0.068751342594624,0.0616071857512,0.029250120744109],[-0.034170970320702,-0.056883577257395,-0.04782922193408]],[[0.13486589491367,-0.047073792666197,-0.10282443463802],[0.16197487711906,0.03383532166481,-0.045655600726604],[0.11988553404808,0.053949289023876,-0.028882201761007]],[[0.0036067510955036,-0.13883516192436,-0.11515104025602],[0.10237818956375,-0.0014393740566447,-0.066200353205204],[-0.071039445698261,-0.07873472571373,0.024134581908584]],[[0.02034879475832,-0.032498482614756,0.10860361903906],[0.084701292216778,0.034392781555653,-0.030971741303802],[-0.084221318364143,0.12063986063004,-0.096658870577812]],[[0.042408932000399,-0.10384614020586,-0.025697726756334],[-0.068249121308327,0.026289207860827,-0.038274366408587],[-0.0028808421920985,0.041625265032053,-0.032373663038015]],[[0.034691289067268,-0.13544617593288,-0.082608014345169],[-0.20969848334789,0.036143153905869,-0.03965200483799],[-0.21781933307648,0.08210988342762,-0.10587185621262]],[[-0.092551007866859,-0.070029884576797,-0.00038540756213479],[-0.11922236531973,-0.14240719377995,-0.043130859732628],[0.094338729977608,-0.058405313640833,-0.15285120904446]],[[-0.041429996490479,-0.045084923505783,0.10802988708019],[-0.022562967613339,0.0088524855673313,0.052068192511797],[-0.15517993271351,-0.055174060165882,0.094089843332767]],[[-0.065447933971882,-0.054968453943729,0.18627192080021],[0.018671730533242,-0.0969617664814,0.24179589748383],[0.1849802583456,-0.062759734690189,-0.096424706280231]],[[-0.10796082019806,0.20767712593079,0.010657745413482],[-0.01260182261467,-0.10380332171917,0.082545399665833],[0.21855312585831,-0.039643727242947,-0.17015874385834]],[[0.066210597753525,0.048904180526733,0.032219219952822],[0.034199215471745,-0.12752050161362,0.23053243756294],[-0.0094654140993953,0.097643204033375,0.20645201206207]],[[0.039437413215637,0.15538378059864,-0.030762795358896],[0.15378224849701,-0.1258110255003,-0.026050208136439],[-0.036298274993896,-0.017667144536972,-0.02520496584475]],[[0.11753240227699,-0.029667902737856,-0.029297495260835],[0.048972010612488,-0.074950769543648,-0.11138171702623],[-0.010874506086111,0.059754692018032,0.03126509860158]],[[-0.086660802364349,-0.032354403287172,-0.031361013650894],[0.037547651678324,-0.050838392227888,-0.063773058354855],[-0.15606488287449,-0.081464678049088,-0.042385593056679]],[[0.10056448727846,-0.01797111146152,-0.06276323646307],[-0.088291123509407,0.15350124239922,0.023064371198416],[0.048181291669607,0.1275942325592,-0.054996881633997]],[[-0.015475619584322,0.065141208469868,0.0087713869288564],[-0.058243501931429,-0.011134908534586,0.012153595685959],[-0.14147964119911,-0.044373445212841,-0.047582577914]],[[0.07911566644907,-0.084389291703701,-0.030170984566212],[0.073673695325851,-0.019826712086797,-0.031359244138002],[-0.091081753373146,-0.037157643586397,0.09781850874424]],[[0.10807634145021,0.058911200612783,0.041418138891459],[-0.010610396973789,0.097650930285454,0.0057984469458461],[-0.020572900772095,0.13713644444942,0.018366942182183]],[[0.20027536153793,0.0061554173007607,-0.0893819257617],[0.098504945635796,0.001855157664977,-0.0036988307256252],[0.093964271247387,-0.068608984351158,-0.061203353106976]],[[0.0089443232864141,-0.046230521053076,-0.074191533029079],[-0.0056133586913347,-0.044631559401751,-0.003370238468051],[0.052145835012197,0.21550232172012,0.022664654999971]],[[-0.046250693500042,0.18960483372211,0.079362966120243],[0.010908912867308,0.04497491940856,0.00040192482993007],[0.00033893424551934,0.014542855322361,0.035054598003626]],[[0.027726419270039,0.14188815653324,-0.094424217939377],[-0.028422944247723,-0.023840501904488,-0.11989539116621],[0.032674003392458,-0.041911073029041,0.0010511348955333]],[[0.042691774666309,0.13633218407631,0.0081417011097074],[0.054580342024565,0.044770773500204,-0.0059737004339695],[0.06836986541748,-0.038508292287588,-0.021890005096793]],[[-0.13927517831326,-0.11423491686583,-0.064423799514771],[-0.024625655263662,-0.025156103074551,0.048496913164854],[-0.11763583123684,0.0020374939776957,0.01733809709549]],[[-0.039196223020554,0.10045769810677,-0.08727990090847],[-0.0067947162315249,0.1322233825922,-0.082847073674202],[-0.077140256762505,-0.078869767487049,0.024397665634751]],[[0.075838692486286,-0.036420568823814,0.10859640687704],[0.062521547079086,-0.029134836047888,-0.033413898199797],[0.086734689772129,0.072157487273216,-0.04405989870429]],[[-0.052012477070093,-0.069083727896214,-0.12379263341427],[-0.11093518137932,-0.062915906310081,0.11806197464466],[-0.13247515261173,-0.0091003701090813,0.1236449405551]],[[-0.032059751451015,0.053121905773878,0.00081010686699301],[0.17816208302975,0.060205798596144,-0.09600505232811],[0.23332168161869,0.0026714242994785,0.0012744059786201]],[[0.019825987517834,-0.087660603225231,0.086542889475822],[0.0087341535836458,0.015618665143847,0.091684706509113],[0.12500309944153,-0.13293832540512,-0.095852203667164]],[[0.021313419565558,-0.072122745215893,-0.083183981478214],[0.1596969217062,0.10957679897547,-0.099038943648338],[-0.049610547721386,0.013243390247226,-0.082871183753014]],[[0.053400911390781,-0.11071081459522,-0.019705712795258],[0.035652182996273,-0.10939741879702,0.0365458317101],[0.093332394957542,-0.031641270965338,0.047914978116751]],[[-0.15162874758244,-0.051125675439835,-0.082563243806362],[-0.031666696071625,-0.042115677148104,0.022372785955667],[0.095431007444859,-0.065000131726265,0.1439573019743]],[[-0.006847876124084,0.015570940449834,0.067601755261421],[-0.037368033081293,0.062857061624527,-0.10447949916124],[-0.038805443793535,-0.018802581354976,0.14468365907669]],[[0.046317148953676,0.062639288604259,-0.033012572675943],[-0.1050902530551,0.016134217381477,-0.10802206397057],[-0.03093602322042,0.039783641695976,0.00097316160099581]],[[-0.18791177868843,-0.0255844052881,-0.049820888787508],[-0.15392492711544,-0.014021423645318,-0.11541227996349],[0.080981090664864,0.021027570590377,0.032006099820137]],[[-0.080049261450768,0.044718712568283,-0.14557489752769],[0.10016474872828,-0.018132220953703,-0.014643443748355],[0.13319501280785,-0.06744297593832,-0.14754094183445]],[[-0.082145683467388,0.041890788823366,-0.011953938752413],[-0.12837898731232,0.06704318523407,0.050586372613907],[-0.096570685505867,-0.033361129462719,0.096542559564114]],[[-0.0017017921200022,-0.0040650456212461,0.0035987137816846],[0.02953053638339,0.013941926881671,0.018454566597939],[0.15762366354465,0.12750102579594,0.064773969352245]],[[-0.08855727314949,0.076392501592636,-0.070533834397793],[-0.11428038775921,0.073415480554104,0.11443752795458],[0.14300549030304,0.019759096205235,0.11083352565765]]],[[[-0.090055085718632,-0.00090805598301813,0.015307425521314],[0.017688985913992,-0.043436832726002,-0.039162125438452],[0.036604594439268,-0.033984031528234,0.047788567841053]],[[-0.0057399244979024,0.051780343055725,0.069568730890751],[-0.019326591864228,0.014783192425966,-0.048000503331423],[0.039294060319662,-0.014096347615123,-0.016034362837672]],[[0.029032399877906,0.0095777846872807,-0.012496612034738],[-0.04350944980979,0.020697172731161,0.031745210289955],[-0.050254687666893,0.055389676243067,-0.013773739337921]],[[0.021054999902844,-0.041367698460817,-0.056164272129536],[0.021799782291055,0.012659350410104,-0.048278175294399],[-0.010917750187218,0.086224161088467,-0.040181931108236]],[[-0.13615125417709,0.096679031848907,0.039254020899534],[-0.036085970699787,0.066110320389271,-0.016204692423344],[-0.08162958920002,0.0026603208389133,0.040789756923914]],[[0.0086670238524675,0.042136084288359,0.1028890311718],[-0.0071997880004346,-0.087012253701687,0.040854938328266],[-0.039878260344267,-0.016462514176965,-0.014489823020995]],[[0.065642446279526,0.057016670703888,-0.0097609478980303],[-0.00057305727386847,0.0037270435132086,-0.033742006868124],[-0.0023182553704828,-0.059373501688242,0.021257396787405]],[[0.0057461457327008,-0.0093409521505237,-0.0058507430367172],[0.067414358258247,0.012403875589371,-0.0031227110885084],[-0.012826226651669,-0.0095624048262835,-0.1063637137413]],[[0.050823070108891,-0.032933749258518,0.032031577080488],[0.0067470483481884,-0.018140692263842,0.0027438953984529],[0.0002907962189056,-0.035141244530678,0.11094925552607]],[[0.11007302999496,-0.0042609497904778,-0.044182356446981],[0.059354726225138,0.016180908307433,-0.12201908230782],[0.0029315345454961,-0.05425388738513,0.018994048237801]],[[-0.067019626498222,0.044576082378626,-0.075000405311584],[0.0046313069760799,0.020726315677166,-0.081175617873669],[0.076014474034309,0.00024346954887733,-0.015152282081544]],[[0.028262859210372,-0.028913479298353,0.036393828690052],[0.016315246000886,-0.069517135620117,-0.0036180655006319],[0.0028652534820139,-0.0596016459167,-0.041676014661789]],[[-0.074288912117481,-0.081042677164078,0.058060865849257],[-0.046880476176739,-0.010846775025129,0.09804929047823],[-0.061620119959116,0.1191019937396,-0.0094152046367526]],[[0.052380200475454,0.01960944570601,-0.01530084758997],[0.053683429956436,-0.0033591631799936,-0.00038659202982672],[-0.014677170664072,-0.036444786936045,-0.040926910936832]],[[-0.045547176152468,0.032732207328081,0.040628865361214],[0.087238721549511,0.0027884098235518,0.0051763779483736],[0.0067067267373204,-0.02703358605504,0.046293023973703]],[[-0.034305099397898,-0.042281713336706,0.077331319451332],[0.13377478718758,0.027649220079184,0.028735492378473],[0.0026921241078526,-0.030627368018031,-0.057800330221653]],[[0.067334614694118,0.06693434715271,-0.021436715498567],[-0.03702911362052,-0.018853943794966,-0.060864381492138],[0.10182417184114,-0.006991948466748,0.0092926286160946]],[[0.064538784325123,-0.015780121088028,-0.088905021548271],[-0.0063765086233616,-0.0039159101434052,-0.0152334459126],[-0.010957803577185,-0.0036154321860522,-0.089475870132446]],[[-0.09886546432972,-0.09362368285656,0.013926904648542],[0.04054918885231,0.1076323762536,0.12175918370485],[0.0713205114007,0.073442585766315,0.048212733119726]],[[-0.060775950551033,-0.061810862272978,-0.091650955379009],[0.11671952158213,0.09144601970911,0.04550439491868],[-0.053072921931744,0.07961543649435,0.021374695003033]],[[0.047906253486872,-0.088470928370953,0.022384053096175],[-0.0064428918994963,0.0081929247826338,0.042629707604647],[0.0062331855297089,0.080471470952034,0.012881570495665]],[[-0.046551924198866,-0.0098798396065831,-0.025031629949808],[0.035774279385805,0.018085166811943,-0.078264452517033],[-0.066709704697132,-0.072181224822998,0.019278505817056]],[[-0.015177804976702,-0.012506024912,-0.0082200961187482],[-0.065000735223293,0.032048296183348,-0.0050227781757712],[0.0036576320417225,-0.0050076302140951,0.050508178770542]],[[0.029305297881365,-0.00061554659623653,-0.0068819522857666],[-0.026300141587853,0.0042551173828542,-0.098121412098408],[0.065791301429272,-0.0095526976510882,0.024870615452528]],[[0.07342741638422,-0.028402602300048,0.066252164542675],[0.019742049276829,-0.022499870508909,0.018746148794889],[-0.0016115707112476,0.00011704923963407,0.040953289717436]],[[-0.051412105560303,-0.025091174989939,-0.02931147441268],[0.036655642092228,-0.018915502354503,-0.04703102260828],[0.057752773165703,0.09603101760149,0.089612856507301]],[[0.0024348304141313,-0.04964479804039,0.0053790267556906],[0.078890651464462,0.010275884531438,-0.0092999013140798],[0.049934767186642,-0.049247212707996,0.018723115324974]],[[0.067348748445511,0.0038645656313747,0.028009325265884],[0.048816040158272,-0.0064995693974197,-0.0375652089715],[0.02873932570219,-0.00045017836964689,0.024350209161639]],[[-0.046771470457315,0.077647864818573,0.025349350646138],[-0.011345461942255,0.063795782625675,-0.04428480938077],[-0.002163311233744,0.044803231954575,0.047282751649618]],[[-0.025082599371672,-0.036008063703775,0.0058251656591892],[-0.033556520938873,0.017869308590889,-0.026578390970826],[-0.0017076440853998,0.0077355024404824,0.050464615225792]],[[0.0059884577058256,-0.043023444712162,-0.056383229792118],[-0.027223220095038,0.033488567918539,0.11478845775127],[0.040711313486099,0.036240126937628,0.062283206731081]],[[0.06910078972578,-0.12466140091419,-0.016871208325028],[0.12154541909695,0.094735726714134,-0.060727622359991],[0.093674682080746,0.066744886338711,-0.070671632885933]],[[-0.006599800195545,-0.081768743693829,0.011203618720174],[-0.07154706120491,0.0030150830280036,0.0022943271324039],[-0.13286638259888,-0.053981367498636,0.032126352190971]],[[-0.015975028276443,0.091188088059425,-0.0025197071954608],[0.051858063787222,0.0053944825194776,0.025205943733454],[0.036893699318171,0.089308999478817,0.035875495523214]],[[0.017203342169523,-0.025338565930724,-0.018943950533867],[-0.016016678884625,-0.0069787944667041,-0.018349729478359],[-0.037727776914835,0.030349729582667,-0.02360531128943]],[[-0.025348670780659,0.014368634670973,-0.034131210297346],[-0.035894904285669,-0.03437902033329,-0.0097136441618204],[0.0067911827936769,0.062230207026005,0.010369055904448]],[[0.028604542836547,-0.11891080439091,-0.11147670447826],[0.016388228163123,-0.039790622889996,0.035122081637383],[-0.013062204234302,-0.080995567142963,0.0047248024493456]],[[-0.04010072350502,-0.085434645414352,0.0017575961537659],[-0.050685737282038,-0.028642131015658,0.0058094449341297],[0.073172464966774,-0.099721737205982,-0.029797501862049]],[[0.0043543479405344,-0.019890898838639,0.036881908774376],[0.046041492372751,-0.015316741541028,-0.01830449141562],[0.0089627653360367,0.053953967988491,-0.0043928772211075]],[[0.015189237892628,-0.024763904511929,-0.010477625764906],[-0.019841218367219,0.029747104272246,-0.014650977216661],[0.049024019390345,-0.059088725596666,0.068384125828743]],[[0.065105445683002,0.0074371648952365,0.037538945674896],[0.04250992834568,0.038258027285337,-0.0074472213163972],[-0.038150694221258,-0.022245405241847,-0.033788248896599]],[[-0.011803220957518,0.14165656268597,-0.039088901132345],[0.006538893096149,0.094300627708435,-0.072688855230808],[0.05036073923111,-0.011498903855681,-0.00068460794864222]],[[-0.03886316344142,-0.17089028656483,0.022489201277494],[0.080566845834255,0.00081843620864674,-0.028236107900739],[-0.019951524212956,-0.0013155755586922,-0.031185235828161]],[[-0.011672005988657,0.044019766151905,-0.01185386069119],[0.0065800142474473,0.046350818127394,0.076460264623165],[-0.0050821923650801,-0.11389998346567,0.0073514156974852]],[[0.010743046179414,-0.021175265312195,-0.036825370043516],[0.016642559319735,-0.029232798144221,0.012099189683795],[0.044073086231947,-0.036593485623598,0.049109436571598]],[[0.029147805646062,0.010593438521028,-0.0041690575890243],[0.061917688697577,-0.063860043883324,-0.028572805225849],[0.069159485399723,0.018878165632486,-0.0066530546173453]],[[0.048788718879223,0.051419831812382,-0.06096276268363],[-0.020819025114179,-0.080569334328175,0.10072208195925],[0.024340465664864,0.051883336156607,-0.069615043699741]],[[0.040653172880411,-0.023373952135444,0.06841404736042],[-0.0091095371171832,-0.01158089004457,0.065662488341331],[-0.032901134341955,0.0055132005363703,0.013607623055577]],[[-0.02862274646759,0.033741232007742,-0.076264813542366],[0.023634739220142,0.0029985192231834,0.050886001437902],[-0.097578346729279,0.03417270258069,0.0080679580569267]],[[-0.1043867841363,0.047019869089127,-0.054109890013933],[0.01392057724297,0.022136269137263,-0.013498722575605],[0.049532115459442,-0.019173357635736,0.01089720800519]],[[0.0295799523592,-0.048384621739388,0.032788269221783],[0.079117178916931,-0.041917979717255,-0.069121293723583],[-0.0070050270296633,0.005312105640769,0.044485330581665]],[[-0.054294597357512,-0.0018644825322554,-0.014298904687166],[0.0077673103660345,-0.055388320237398,0.07350081205368],[-0.044726353138685,-0.040834154933691,0.015807516872883]],[[-0.079626470804214,-0.023894464597106,-0.02752947434783],[0.041511543095112,0.043613854795694,0.062167923897505],[-0.065267078578472,-0.046337407082319,-0.082323282957077]],[[-0.019147116690874,0.035760227590799,0.044772870838642],[-0.014493915252388,-0.027289237827063,0.055128861218691],[-0.0052692661993206,0.038215540349483,0.043543688952923]],[[0.022991152480245,-0.001865710131824,0.089180611073971],[-0.048640739172697,0.059858907014132,0.066347904503345],[-0.030810214579105,-0.074401147663593,0.040921978652477]],[[0.06110680475831,0.075516313314438,-0.017198123037815],[0.080011285841465,0.021841926500201,0.0089432597160339],[-0.039028998464346,-0.060156136751175,-0.0065632071346045]],[[0.013567324727774,-0.016252873465419,-0.074746385216713],[-0.018872201442719,-0.044320054352283,-0.011482636444271],[0.059107940644026,-0.040558725595474,-0.0038803475908935]],[[-0.014631513506174,-0.00023121717094909,-0.015326892025769],[-0.054981011897326,-0.036345168948174,0.084403052926064],[-0.015937818214297,-0.019286435097456,0.057613883167505]],[[-0.025094952434301,-0.026639642193913,0.065329544246197],[-0.13396319746971,-0.099563874304295,-0.02757709287107],[-0.0085274381563067,0.050008803606033,0.0033205507788807]],[[0.0046599712222815,-0.076536819338799,-0.047892164438963],[-0.01049595605582,-0.0020571744535118,0.013257370330393],[-0.032975405454636,-0.12087325006723,0.042470570653677]],[[-0.0012618300970644,0.011721248738468,-0.00039317112532444],[0.076558038592339,0.015875153243542,0.075644105672836],[0.044521301984787,-0.033783677965403,0.055776335299015]],[[-0.043776996433735,0.074828207492828,-0.052428923547268],[0.092812202870846,0.027036426588893,0.009865147061646],[0.012587766163051,-0.073272556066513,0.0075613553635776]],[[-0.0091763027012348,-0.0047096544876695,0.036012940108776],[-0.042482607066631,-0.075713694095612,-0.0097305485978723],[0.01046828366816,0.027959544211626,0.082882009446621]],[[0.049770709127188,-0.06457656621933,-0.069752998650074],[-0.047633327543736,-0.012417862191796,-0.020461769774556],[0.10335967689753,-0.019513815641403,-0.0007221283740364]],[[-0.014621507376432,0.026638982817531,0.046939190477133],[0.041818119585514,-0.059444181621075,-0.011322066187859],[-0.019706195220351,-0.047493364661932,-0.015234618447721]],[[-0.0030300926882774,0.024834850803018,0.046300496906042],[0.031256198883057,-0.004121124278754,-0.044203817844391],[0.0038375621661544,-0.0012501515448093,-0.037317626178265]],[[0.079250976443291,0.035303603857756,0.025729972869158],[0.035050068050623,-0.06608022749424,-0.030335886403918],[-0.010158239863813,0.014632386155427,-0.013107769191265]],[[-0.03535432741046,0.019366320222616,0.072147354483604],[0.0069028530269861,0.024554112926126,0.00072985253063962],[0.0042762253433466,-0.060226436704397,0.015037218108773]],[[0.079727530479431,0.048687927424908,0.044988170266151],[0.049519240856171,-0.048032529652119,-0.05567429214716],[-0.091997817158699,-0.047104328870773,0.057272419333458]],[[0.049370143562555,-0.033412709832191,-0.049357138574123],[0.067491449415684,-0.046069260686636,0.038677275180817],[-0.036859206855297,0.023959152400494,-0.055045988410711]],[[0.043938662856817,0.037665840238333,-0.06707976013422],[0.068377740681171,0.024171544238925,0.0020792870782316],[0.11146146059036,0.096311263740063,0.017224406823516]],[[-0.11387902498245,0.043179839849472,0.053002074360847],[-0.047516815364361,0.047625105828047,-0.046121746301651],[0.071611866354942,-0.00019173105829395,-0.017819741740823]],[[0.055547837167978,-0.024219378829002,-0.01559682842344],[0.031918190419674,0.07390633970499,0.023967586457729],[-0.047426983714104,0.055238172411919,0.067458026111126]],[[-0.052776660770178,0.017630100250244,-0.052568275481462],[0.057177744805813,0.015656027942896,0.064683146774769],[-0.034010753035545,0.01582545787096,-0.092225149273872]],[[0.026233445852995,0.019318580627441,-0.052617143839598],[-0.03661286085844,-0.047362677752972,0.064492911100388],[-0.020548002794385,-0.025917060673237,-0.067077971994877]],[[0.025361815467477,0.011098441667855,0.058232996612787],[0.027282051742077,0.12569811940193,-0.035490591078997],[-0.076856009662151,0.076770506799221,0.050258610397577]],[[-0.037811636924744,0.068752430379391,0.095588572323322],[0.082271002233028,0.0011807949049398,0.041551440954208],[-0.093443140387535,0.061566583812237,0.025701075792313]],[[-0.022867303341627,0.021504368633032,-0.067375250160694],[0.0063358219340444,0.043581087142229,-0.0066759609617293],[0.026791635900736,-0.044577989727259,-0.096328906714916]],[[0.093301929533482,0.03399333357811,0.064201198518276],[-0.083804734051228,-0.098044633865356,-0.012521617114544],[-0.042235288769007,0.0071918312460184,-0.026514241471887]],[[0.019957365468144,-0.030217813327909,-0.030187100172043],[0.06615424156189,0.038223959505558,0.07037690281868],[-0.060902498662472,-0.024110632017255,0.039277855306864]],[[-0.029016260057688,-0.04502847418189,0.0092505346983671],[-0.0049511417746544,0.0081641925498843,-0.040336892008781],[-0.032755795866251,-0.090988531708717,0.028227200731635]],[[0.0057056755758822,0.056205313652754,-0.060216896235943],[0.080325447022915,-0.064462304115295,0.0097150439396501],[-0.0073493113741279,-0.036427143961191,-0.04197733476758]],[[0.17123478651047,0.017059113830328,-0.0069805225357413],[0.042515426874161,0.01732868142426,-0.028266794979572],[0.10157904773951,0.048051591962576,-0.034459382295609]],[[0.039449606090784,0.084740847349167,0.04489827901125],[-0.034612964838743,-0.062006335705519,0.010877884924412],[0.010287072509527,-0.03408969193697,-0.051951181143522]],[[-0.015719521790743,-0.12118688970804,0.03431348502636],[-0.015901485458016,-0.016161751002073,0.048466239124537],[-0.01887415163219,-0.012956442311406,-0.0057339360937476]],[[-0.0080386968329549,0.022216368466616,-0.016053974628448],[-0.042492531239986,-0.0082983104512095,0.010147206485271],[-0.059036873281002,0.028047036379576,-0.022525105625391]],[[-0.048005167394876,-0.097428619861603,-0.029809651896358],[-0.039578683674335,-0.025617917999625,-0.035971723496914],[0.03127146884799,0.051936764270067,-0.088180460035801]],[[0.035703554749489,-0.046651143580675,0.0070782462134957],[-0.055425066500902,0.10193356126547,0.036547049880028],[0.04130382835865,0.077144019305706,-0.051482494920492]],[[0.017658626660705,0.003791494295001,0.078764483332634],[0.0041750892996788,0.0099104586988688,0.055467911064625],[0.0065785637125373,0.044201303273439,-0.043492298573256]],[[-0.043785121291876,-0.054267574101686,0.042017102241516],[-0.035872474312782,0.034266520291567,-0.014921619556844],[-0.01624995097518,-0.017273887991905,-0.058233007788658]],[[-0.027045737951994,-0.045997574925423,-0.048700414597988],[-0.016089707612991,-0.10560511052608,0.0057607032358646],[-0.057402424514294,0.0079962518066168,-0.030956340953708]],[[0.030222719535232,-0.080786608159542,0.003952098544687],[0.022802069783211,0.0065854950807989,-0.086406119167805],[0.023871704936028,0.11579013615847,0.041499011218548]],[[-0.013438560068607,0.02936914935708,0.061194930225611],[-0.014739833772182,-0.017690688371658,0.0083124125376344],[-0.051988795399666,-0.030162440612912,-0.025910645723343]],[[0.0045599318109453,0.055429212749004,0.0038412499707192],[-0.020871860906482,-0.0006966270157136,-0.087520740926266],[-0.016938308253884,0.021161563694477,-0.041666574776173]],[[-0.00040946481749415,-0.026721222326159,-0.00926564168185],[0.027285045012832,0.079220861196518,-0.064810834825039],[0.022476216778159,-0.088510386645794,0.020567368716002]],[[-0.019166627898812,0.00013715909153689,0.065383225679398],[0.034830112010241,-0.016822086647153,0.10686088353395],[-0.10323852300644,0.062037885189056,0.023047491908073]],[[0.048842459917068,0.040059547871351,-0.052356958389282],[0.059717331081629,0.047926925122738,-0.061846446245909],[0.0082355951890349,0.0028271072078496,0.014300769194961]],[[0.045446541160345,-0.092033483088017,0.045455146580935],[-0.041497301310301,-0.024650389328599,-0.020286625251174],[0.017824625596404,-0.014407844282687,0.058354914188385]],[[-0.0016172698233277,0.016690080985427,0.0079569015651941],[-0.017387764528394,0.034225661307573,0.023125272244215],[0.03429513797164,0.038664516061544,0.049315132200718]],[[0.14354267716408,-0.040486358106136,-0.07828164845705],[0.029570590704679,0.00036412669578567,-0.018689420074224],[0.013141518458724,-0.11801882833242,-0.066226154565811]],[[0.10114364326,-0.0047873691655695,0.060904320329428],[0.010953194461763,-0.012379377149045,-0.076396249234676],[0.097218863666058,-0.0082884402945638,-0.076728492975235]],[[0.0096054598689079,-3.5701188608073e-05,0.03608350455761],[0.019688259810209,0.042946197092533,0.05437820777297],[-0.045924369245768,-0.012958548031747,-0.010093899443746]],[[0.018517937511206,-0.021603487432003,0.051841329783201],[-0.019386818632483,-0.053462792187929,-0.045495428144932],[0.010543241165578,0.02651596441865,-0.038920365273952]],[[0.027795229107141,0.079208321869373,-0.010375267826021],[0.014995526522398,0.077330954372883,0.0094964057207108],[0.047804526984692,0.0040968088433146,0.00093352684052661]],[[0.015475294552743,-0.029662344604731,-0.012248681858182],[-0.089394986629486,0.0050253076478839,0.01581714861095],[-0.035905390977859,0.014527407474816,-0.0056665106676519]],[[0.027206024155021,-0.026927975937724,0.0076856166124344],[0.077224425971508,0.044951356947422,0.10348691046238],[0.053664106875658,0.034741640090942,0.020309576764703]],[[-0.010815384797752,0.00022428987722378,-0.040931381285191],[0.041682038456202,0.034132074564695,0.088334478437901],[-0.010517227463424,0.092931352555752,0.069616101682186]],[[-0.018196884542704,-0.06597064435482,-0.063683718442917],[-0.015461147762835,-0.034687209874392,0.081671185791492],[-0.0033968901261687,-0.03166675567627,-0.00041421048808843]],[[-0.061985962092876,-0.016589870676398,-0.051560536026955],[0.044211350381374,-0.051132544875145,-0.010924499481916],[-0.035678990185261,-0.039494089782238,-0.0040558446198702]],[[-0.022602081298828,-0.0036404763814062,0.020705269649625],[0.054595533758402,0.014947703108191,0.045519974082708],[-0.032740417867899,-0.061688203364611,0.051283344626427]],[[-0.005175806581974,0.062158554792404,0.048761583864689],[0.019807195290923,-0.0095094833523035,0.040595427155495],[0.033201895654202,0.030225016176701,-0.018641985952854]],[[-0.002117570489645,-0.01012409850955,-0.0050351223908365],[-0.039930615574121,0.067368686199188,-0.052023090422153],[-0.0038925029803067,0.019580343738198,0.018477102741599]],[[0.0093086790293455,0.037061702460051,-0.068276889622211],[-0.10562846809626,0.011405320838094,0.0017078003147617],[-0.025443498045206,-0.038374599069357,-0.01554514747113]],[[0.10514269769192,0.032183744013309,0.031049061566591],[-0.021425623446703,-0.023182658478618,-0.022935388609767],[-0.010521420277655,-0.016900444403291,-0.0013015464646742]],[[-0.029256142675877,0.046123180538416,0.07490435987711],[0.013429270125926,-0.035518083721399,-0.024451158940792],[-0.018876420333982,-0.1185245513916,-0.033807419240475]],[[0.10026446729898,-0.0014714694116265,0.08057327568531],[0.063834823668003,-0.029415069147944,0.0024601030163467],[0.018487296998501,0.0076828170567751,-0.030103536322713]],[[0.017604235559702,0.0025831789243966,0.082175135612488],[-0.018685581162572,0.041734088212252,0.016756584867835],[-0.086626030504704,-0.0015432417858392,0.010605252347887]],[[-0.016165176406503,0.0045186965726316,0.019733792170882],[0.031299412250519,-0.049933888018131,-0.029427232220769],[-0.06560992449522,-0.058781899511814,-0.014485125429928]],[[-0.028916694223881,-0.010090653784573,0.024370357394218],[0.099891930818558,0.035989675670862,0.03645733743906],[-0.12130866199732,-0.039397906512022,-0.0069707524962723]],[[0.0046910257078707,0.020173573866487,-0.0061469934880733],[0.0026298987213522,0.02506828121841,-0.022900100797415],[0.028221262618899,-0.050491448491812,-0.062721356749535]],[[-0.03566649928689,-0.004593072924763,-0.00048080351552926],[-0.034331653267145,-0.13401421904564,-0.044543452560902],[-0.0068197455257177,-0.00063645915361121,-0.01183101721108]],[[0.096238054335117,-0.10290884971619,0.0080194631591439],[-0.0023597709368914,-0.021889340132475,-0.026515098288655],[-0.011280403472483,-0.0041946074925363,0.058977007865906]],[[0.061022412031889,-0.02060448564589,-0.0050627649761736],[-0.012077379971743,0.0098424479365349,-0.026612620800734],[-0.03476919606328,-0.047175567597151,0.0052666468545794]],[[0.038017258048058,-0.026078609749675,0.047932602465153],[-0.061572372913361,-0.075866922736168,0.01128220744431],[-0.052112560719252,0.072082713246346,-0.0034646650310606]],[[-0.015535763464868,-0.017613423988223,-0.010340305045247],[0.061377760022879,0.054446738213301,-0.02625740878284],[0.13090698421001,-0.036276374012232,-0.022171102464199]],[[0.058509234338999,-0.027507876977324,0.020796546712518],[-0.00799903832376,0.024821789935231,0.027836101129651],[-0.011355654336512,-0.03079641610384,0.093992695212364]],[[-0.072579137980938,-0.018062714487314,-0.04153848439455],[0.089621938765049,0.041402999311686,0.10999903082848],[0.056312378495932,0.024878349155188,-0.067766062915325]],[[-0.0003083870105911,-0.011783076450229,-0.059017553925514],[-0.06709036231041,0.042985249310732,0.033451493829489],[-0.0048626121133566,-0.0069329459220171,-0.036065589636564]]],[[[-0.058827348053455,0.0089902970939875,0.13123957812786],[0.10124995559454,-0.049545470625162,0.11809030920267],[-0.020398896187544,0.096390075981617,-0.012068308889866]],[[-0.011831626296043,0.071270935237408,-0.066081151366234],[0.023621624335647,-0.050126276910305,-0.056796707212925],[-0.0076865321025252,0.025788204744458,-0.015669658780098]],[[0.092290014028549,-0.0065802559256554,0.10586885362864],[0.069471038877964,-0.026392759755254,0.11734561622143],[0.21419808268547,-0.018836405128241,0.12073308974504]],[[-0.049186520278454,-0.0012587722158059,-0.14783205091953],[-0.11531844735146,0.0080489655956626,-0.087575614452362],[-0.2216022759676,-0.054739322513342,0.033146899193525]],[[-0.085403196513653,-0.029270723462105,0.032288387417793],[0.069255486130714,-0.00087859173072502,0.084229096770287],[0.10854292660952,-0.051800839602947,-0.024034522473812]],[[0.069440826773643,0.091452553868294,0.093487322330475],[-0.035275597125292,-0.081027656793594,0.042482636868954],[0.20149955153465,-0.013391611166298,0.042459610849619]],[[-0.09472518414259,-0.15216483175755,0.074383735656738],[0.046131141483784,0.10243780910969,-0.030054666101933],[0.054897863417864,0.13808925449848,0.026967948302627]],[[-0.12022019922733,0.096820488572121,0.04519435018301],[-0.069577887654305,0.10216662287712,0.0096815498545766],[-0.25506281852722,-0.060775846242905,0.054427947849035]],[[0.012829193845391,-0.012054833583534,0.10893502831459],[0.070224761962891,-0.027236737310886,-0.088462322950363],[-0.21987344324589,-0.10278716683388,0.16418309509754]],[[0.01009904500097,-0.056543402373791,0.0048024714924395],[-0.13659565150738,-0.084073923528194,-0.11713612824678],[-0.10199835896492,-0.015112236142159,-0.072718910872936]],[[-0.0056103435344994,0.10779283195734,0.28083291649818],[0.029591605067253,0.057243876159191,0.14351558685303],[0.03821874037385,0.10438385605812,0.053304322063923]],[[-0.022241774946451,0.092167221009731,-0.013909412547946],[-0.10920063406229,0.027905099093914,-0.04819206520915],[0.046482384204865,0.060298372060061,-0.0011378886410967]],[[-0.030785733833909,-0.0048841112293303,-0.058469008654356],[-0.047297067940235,-0.046806011348963,0.063708581030369],[-0.008484723046422,-0.12723761796951,0.0065290941856802]],[[-0.015871241688728,-0.049487199634314,-0.10443101078272],[-0.057140707969666,-0.03342567756772,-0.17951808869839],[-0.16191351413727,-0.11414257436991,-0.061455741524696]],[[0.061866316944361,0.052682045847178,0.044948406517506],[-0.057352520525455,-0.1460854113102,-0.059050042182207],[-0.10580702871084,0.019349319860339,0.0033676857128739]],[[-0.10895229130983,-0.13367691636086,-0.10537770390511],[0.14895188808441,0.029836794361472,0.052269659936428],[0.0054318895563483,-0.13727001845837,-0.018711060285568]],[[-0.20763489603996,-0.16228853166103,0.14521738886833],[-0.047045204788446,-0.057862278074026,0.087114423513412],[0.0076106754131615,0.011824464425445,-0.073972038924694]],[[0.043499235063791,0.0056610712781549,-0.058092303574085],[0.072396829724312,0.031762458384037,-0.13036547601223],[-0.037465326488018,0.049873147159815,0.062381032854319]],[[0.16135375201702,0.04168564081192,0.066897854208946],[-0.067104160785675,0.057550374418497,0.032616432756186],[-0.043806098401546,-0.095568478107452,-0.080172337591648]],[[-0.12897548079491,-0.020633202046156,0.068606443703175],[-0.039379719644785,-0.084706872701645,-0.017178578302264],[-0.14794288575649,-0.078351207077503,-0.0022194115445018]],[[-0.015917778015137,-0.13182674348354,0.0037143139634281],[-0.075428754091263,-0.092868357896805,-0.017270553857088],[-0.095624573528767,-0.036758072674274,0.077195055782795]],[[-0.087930396199226,0.0070919590070844,0.19465212523937],[0.1390690356493,-0.068800643086433,0.17833027243614],[-0.016572941094637,0.086230307817459,0.15147358179092]],[[0.084547407925129,0.11525759100914,-0.022905485704541],[0.023916859179735,-0.029583664610982,0.052647635340691],[-0.043666794896126,-0.099377423524857,-0.00055324606364593]],[[-0.14395585656166,-0.030287886038423,-0.073575511574745],[-0.15535089373589,0.0020307963714004,0.0075173326767981],[0.045753575861454,0.02433230727911,0.11703857779503]],[[0.099716775119305,-0.08291557431221,-0.067454300820827],[0.078203149139881,0.10883279889822,0.078358896076679],[0.06304656714201,0.13645212352276,-0.035646244883537]],[[0.13434244692326,0.078377813100815,0.14912649989128],[0.071300402283669,-0.0050758421421051,-0.027376195415854],[0.024586142972112,0.12703208625317,0.06009241938591]],[[0.046373274177313,-0.13055634498596,-0.082012668251991],[-0.016159558668733,-0.0097800549119711,-0.031752642244101],[0.026600174605846,0.021528985351324,0.052096270024776]],[[0.092431180179119,-0.13901743292809,0.033632893115282],[0.04952946305275,-0.03469992056489,-0.16377691924572],[-0.03785202652216,0.27665862441063,0.18430642783642]],[[0.0048984452150762,-0.24654026329517,0.015572953037918],[0.12049775570631,0.056432865560055,-0.12732593715191],[-0.065325431525707,-0.059814561158419,0.026598444208503]],[[-0.071103498339653,0.022951098158956,-0.0063484334386885],[-0.04481578245759,-0.028940895572305,0.040964659303427],[-0.06555438041687,-0.11079143732786,0.046879269182682]],[[-0.057027403265238,-0.030222164466977,0.03991462662816],[-0.12748534977436,0.092572242021561,0.18193882703781],[-0.083772875368595,0.057966880500317,0.0097135901451111]],[[0.0068603311665356,0.076968349516392,0.020706439390779],[-0.13186147809029,0.061424098908901,0.1199973449111],[-0.00021221474162303,-0.029816124588251,-0.19336710870266]],[[0.016424337401986,-0.17561143636703,-0.036694575101137],[0.096881680190563,0.05204651132226,-0.029762046411633],[0.13220146298409,-0.0024120048619807,0.057364378124475]],[[-0.005591822322458,0.068380683660507,0.0011990087805316],[-0.021390814334154,-0.038978431373835,-0.016485730186105],[-0.086503431200981,-0.05346304923296,0.023230070248246]],[[-0.065657272934914,-0.13949930667877,-0.10301081836224],[-0.17222256958485,0.042969550937414,-0.11206337809563],[-0.0025269261095673,0.01641633361578,-0.013771492987871]],[[-0.10591048747301,0.14090184867382,0.13508158922195],[0.062155939638615,-0.041262254118919,-0.070502780377865],[0.11191627383232,0.0016278536058962,-0.0805294662714]],[[-0.10599657148123,-0.073929511010647,0.039531927555799],[0.077212370932102,0.024474577978253,-0.098232202231884],[-0.29778462648392,0.08341346681118,-0.0046480502933264]],[[0.016556680202484,0.0068312375806272,-0.029312266036868],[-0.0097139040008187,0.0062927515245974,-0.010668758302927],[0.12618823349476,0.053641684353352,-0.066944383084774]],[[-0.046872202306986,-0.12552452087402,0.040786251425743],[0.050611712038517,-0.062517538666725,-0.093936659395695],[0.031079391017556,-0.063194945454597,0.13192391395569]],[[0.084060527384281,0.0389524102211,-0.080074146389961],[0.091263130307198,0.11757054179907,-0.015158769674599],[-0.15494740009308,-0.0788239762187,0.014432702213526]],[[0.056210093200207,0.045098263770342,-0.0029488219879568],[-0.044699911028147,0.1260669529438,-0.086489900946617],[-0.053056657314301,0.032845988869667,-0.13661013543606]],[[0.050148330628872,0.0057392055168748,0.048372890800238],[0.050750184804201,0.063990272581577,-0.072355799376965],[0.051942430436611,0.10599949210882,0.080577991902828]],[[-0.040707979351282,-0.019849117845297,-0.085173636674881],[-0.032264281064272,0.041248068213463,-0.064309321343899],[-0.085088521242142,-0.010026919655502,-0.041153680533171]],[[-0.02391947619617,-0.012788490392268,0.014057252556086],[0.064527586102486,-0.010798147879541,-0.082703545689583],[-0.01029908657074,0.03980416059494,-0.02315510250628]],[[0.0046137878671288,-0.053410299122334,0.049115538597107],[-0.068191051483154,-0.19495597481728,0.0098947435617447],[0.051382474601269,0.060868065804243,0.032057639211416]],[[0.29327082633972,-0.011616363190114,-0.080444544553757],[0.019160307943821,0.037668097764254,0.073950976133347],[0.070944376289845,-0.066116318106651,0.18085803091526]],[[-0.12998352944851,0.034633912146091,-0.025511415675282],[-0.057285405695438,-0.044664304703474,0.0053329337388277],[0.055099137127399,0.005301340483129,-0.16956965625286]],[[-0.24471125006676,0.12975537776947,-0.085378520190716],[-0.11861868947744,0.081162974238396,-0.1108972504735],[-0.0081043848767877,-0.015182130038738,0.034257914870977]],[[-0.00045696765300818,0.042164143174887,0.18074348568916],[0.018597610294819,-0.1056173145771,0.01729479059577],[0.03478429839015,0.19294673204422,-0.028303490951657]],[[0.095151796936989,-0.048340607434511,-0.065292902290821],[0.016924601048231,-0.062049258500338,0.025078410282731],[0.043286111205816,-0.10916183143854,0.13258709013462]],[[0.0020882487297058,-0.024113157764077,0.1470051407814],[-0.11227881163359,-0.026851017028093,-0.044717568904161],[-0.0050036972388625,-0.019608857110143,-0.050074450671673]],[[-0.094322055578232,-0.10937041789293,-0.14168557524681],[-0.0091047482565045,-0.071755684912205,0.0079780630767345],[0.032943643629551,-0.09124431014061,0.08251466602087]],[[-0.0092180129140615,-0.079320646822453,0.030366027727723],[-0.01156906504184,-0.084972694516182,0.033826027065516],[0.059705026447773,-0.046136315912008,-0.16373305022717]],[[-0.0039920136332512,0.06917455047369,-0.035098899155855],[0.031219907104969,-0.0079048844054341,-0.068131238222122],[-0.10132779181004,0.088986165821552,0.07091423869133]],[[0.022220347076654,0.11137434840202,0.080710597336292],[0.10261245816946,-0.099636353552341,-0.015428775921464],[-0.025778839364648,-0.083581440150738,0.077735796570778]],[[0.09796267002821,-0.019617410376668,-0.074050299823284],[-0.071865677833557,0.11986338347197,-0.080808408558369],[0.12951318919659,-0.059919223189354,-0.10205264389515]],[[0.063574209809303,-0.093269802629948,-0.044095311313868],[-0.042375337332487,-0.11927738040686,0.10555528104305],[0.099667608737946,0.0442771948874,0.048534374684095]],[[-0.070064216852188,-0.060640022158623,0.092912033200264],[-0.028057001531124,-0.1101403310895,-0.069757349789143],[-0.10211230814457,-0.11750108748674,0.028726330026984]],[[-0.0026862779632211,-0.037114650011063,-0.10838501155376],[0.019287655130029,-0.030797904357314,-0.2398909330368],[-0.0052741202525795,0.024157244712114,-0.0589878000319]],[[-0.044972032308578,0.028261478990316,0.039810720831156],[0.070689015090466,-0.057080920785666,0.16994059085846],[-0.096685543656349,0.011550080031157,-0.064766399562359]],[[0.089902438223362,0.028730075806379,0.074411615729332],[-0.072858139872551,-0.13600905239582,-0.060442890971899],[-0.053031146526337,-0.072713069617748,-0.18483869731426]],[[0.14699740707874,-0.040937889367342,-0.0090265581384301],[-0.093672096729279,-0.094662062823772,-0.08984898775816],[-0.17712643742561,-0.11034292727709,-0.034835863858461]],[[-0.070772528648376,0.11636147648096,0.0071972417645156],[-0.17437066137791,0.03452356159687,0.065134935081005],[-0.064124375581741,0.13957284390926,0.21731221675873]],[[0.093302257359028,0.17039878666401,0.31486773490906],[0.046304821968079,0.063103534281254,0.11836740374565],[0.26355019211769,0.080642074346542,-2.8074253350496e-05]],[[-0.021694928407669,0.015759192407131,0.1733985543251],[0.070598669350147,-0.10132262855768,-0.14404508471489],[-0.099105514585972,-0.055153112858534,-0.056882653385401]],[[0.086173713207245,-0.014674305915833,-0.037170071154833],[-0.0034205398987979,-0.1208670809865,-0.06205053254962],[-0.03192974999547,-0.18154199421406,0.065917707979679]],[[0.033128842711449,0.077217027544975,-0.13725389540195],[-0.022213015705347,0.049798328429461,0.083214588463306],[-0.16846629977226,0.13865566253662,-0.068807348608971]],[[-0.11679740995169,0.0091107413172722,-0.046687331050634],[-0.15722262859344,-0.0261011980474,-0.13574403524399],[-0.027456443756819,0.037823770195246,-0.1147533506155]],[[-0.0098066562786698,-0.041010674089193,-0.044621996581554],[0.099743641912937,0.024063939228654,0.062890894711018],[0.059987962245941,-0.043624706566334,-0.04615081101656]],[[0.045400854200125,-0.016603022813797,-0.11954397708178],[0.096385344862938,0.061896339058876,0.039241060614586],[0.030422428622842,0.086849324405193,-0.011812548153102]],[[0.034807536751032,0.071584269404411,0.040869262069464],[-0.098879456520081,0.029518900439143,0.018541317433119],[0.044395975768566,-0.089931711554527,0.067732185125351]],[[-0.067573927342892,0.040028218179941,0.029083099216223],[-0.12191196531057,0.10043835639954,-0.084251746535301],[-0.076855689287186,0.066568374633789,0.024840760976076]],[[-0.092753857374191,-0.035110875964165,0.011797551997006],[0.024362625554204,-0.17705234885216,-0.22726257145405],[-0.055173020809889,-0.085257507860661,-0.13900542259216]],[[0.06133296713233,0.058344539254904,-0.076030664145947],[0.12206026911736,0.061029653996229,0.027692798525095],[-0.043620500713587,-0.030755870044231,0.0040266052819788]],[[-0.075307436287403,0.040979713201523,-0.029741832986474],[-0.1248677521944,-0.058936696499586,0.051922734826803],[-0.022635791450739,0.02874225564301,-0.13162139058113]],[[0.056355994194746,0.12060548365116,0.090190328657627],[-0.1029574945569,-0.047710686922073,0.0079906331375241],[-0.029332112520933,-0.08286190032959,-0.12379565089941]],[[-0.055858071893454,-0.080936409533024,-0.17537239193916],[-0.066825956106186,0.027936667203903,0.040748216211796],[0.042888756841421,0.040888205170631,0.0045419209636748]],[[-0.097816362977028,-0.038811713457108,-0.14946648478508],[-0.033924527466297,0.070879101753235,0.00093458069022745],[-0.09508890658617,-0.063842512667179,0.054851461201906]],[[-0.011388387531042,-0.060983281582594,-0.071419715881348],[0.032633643597364,-0.04347138106823,0.057514030486345],[0.012716705910861,-0.099457442760468,-0.061819855123758]],[[-0.23159243166447,-0.068053849041462,0.14099405705929],[-0.052472542971373,-0.2019282579422,0.12273904681206],[0.0027793375775218,-0.036362804472446,-0.11846308410168]],[[0.12891314923763,-0.058652836829424,-0.092595838010311],[-0.21708445250988,-0.051699511706829,-0.053839180618525],[-0.081017680466175,-0.024804212152958,0.041793562471867]],[[0.14284271001816,-0.021478408947587,0.021751383319497],[0.10080340504646,0.093119852244854,0.004893384873867],[-0.010629839263856,0.18433704972267,0.096758663654327]],[[0.0080844843760133,0.15883809328079,0.16998606920242],[-0.10950727015734,0.0035127447918057,0.15546530485153],[0.17983275651932,0.0568553134799,-0.14307627081871]],[[-0.11566800624132,-0.11342655867338,-0.020484391599894],[-0.043431859463453,-0.10220274329185,-0.01163980178535],[-0.030896734446287,0.034623887389898,0.061201103031635]],[[-0.0045770592987537,0.072177574038506,0.076249808073044],[0.055930308997631,-0.092888802289963,-0.065793849527836],[0.060451786965132,0.092695854604244,-0.12150830775499]],[[-0.067162804305553,0.042605146765709,0.044796034693718],[-0.097131587564945,-0.068411707878113,0.078183114528656],[-0.040963109582663,-0.083356574177742,0.015346110798419]],[[0.02026454731822,-0.041757483035326,0.048040773719549],[-0.010697856545448,-0.018040537834167,-0.0035473338793963],[-0.11562947183847,0.0241683665663,0.061156816780567]],[[-0.00574582349509,0.039985869079828,0.093393459916115],[0.081243745982647,0.034065846353769,-0.025730464607477],[-0.10064074397087,-0.039705131202936,0.095279917120934]],[[-0.1156797632575,0.06477665156126,0.055236663669348],[-0.12700960040092,-0.056427735835314,0.16813215613365],[0.12057535350323,0.02429274469614,-0.006361385807395]],[[-0.057734183967113,-0.0055723884142935,-0.04708432033658],[-0.020226152613759,-0.04300132393837,0.0041983993723989],[-0.071681194007397,-0.094085849821568,0.078230440616608]],[[-0.089963637292385,-0.12188581377268,-0.08618338406086],[0.040529634803534,-0.023903919383883,-0.018178498372436],[-0.085468143224716,-0.11197198927402,0.0076983137987554]],[[0.13585326075554,-0.13835111260414,-0.043536100536585],[-0.057349000126123,0.065100565552711,0.0083786295726895],[-0.058585051447153,0.035947449505329,-0.23940442502499]],[[-0.047047663480043,-0.168801009655,-0.098939076066017],[0.011046168394387,-0.08831837028265,-0.017939893528819],[-0.072959206998348,-0.074748754501343,0.015006793662906]],[[-0.0085963848978281,-0.12705691158772,0.14114393293858],[-0.0090877329930663,-0.090249620378017,-0.0014064843999222],[-0.030679240822792,0.11588665097952,-0.053708281368017]],[[0.011457595042884,0.037283133715391,-0.036959484219551],[-0.018528981134295,0.1481389850378,-0.072603270411491],[0.1642734259367,-0.018243417143822,-0.080313168466091]],[[0.1038620620966,0.10547555238008,0.018744418397546],[0.093153163790703,-0.0052093700505793,-0.0098923109471798],[0.059134893119335,0.074535168707371,0.10669860243797]],[[-0.16325540840626,-0.13165380060673,0.11916545033455],[-0.0038799997419119,0.031641378998756,0.067421026527882],[0.14860969781876,-0.11462672799826,-0.065855324268341]],[[-0.087224997580051,-0.19688901305199,-0.25334602594376],[-0.036082368344069,0.031824987381697,-0.082229785621166],[0.088467516005039,-0.0038135887589306,0.0043641980737448]],[[0.13166588544846,-0.10564969480038,-0.038546178489923],[0.063430905342102,-0.042417414486408,0.13927011191845],[-0.095165684819221,-0.093099996447563,-0.063857734203339]],[[0.080355748534203,-0.12935897707939,-0.011876976117492],[0.023943349719048,-0.092219293117523,-0.11133329570293],[0.0020184214226902,-0.080087229609489,-0.048402268439531]],[[0.16729961335659,0.022480607032776,-0.074178405106068],[-0.026229701936245,0.11285961419344,0.029625354334712],[-0.13131639361382,-0.031465031206608,0.096208907663822]],[[-0.030531974509358,0.016683781519532,0.14929811656475],[0.094245843589306,-0.036984693259001,-0.043228216469288],[-0.11112426221371,0.034175828099251,-0.033477656543255]],[[-0.012331023812294,-0.048975240439177,-0.044774118810892],[0.081492252647877,0.07431460916996,0.01979742012918],[-0.079486310482025,-0.084036894142628,0.044484350830317]],[[0.12420234084129,0.12682473659515,-0.066991783678532],[-0.23879569768906,-0.10552331805229,-0.02674569003284],[-0.089816741645336,-0.074398070573807,0.031957659870386]],[[0.081418804824352,0.10704170167446,0.0046264086849988],[-0.06104139983654,-0.031202509999275,-0.038101963698864],[-0.02154128625989,-0.090087309479713,0.097201436758041]],[[-0.019054923206568,-0.0087754298001528,0.25198245048523],[0.11808026582003,0.17530919611454,0.028989031910896],[0.047166295349598,0.1868512481451,0.030076233670115]],[[0.097473978996277,0.02258325368166,0.0070040640421212],[0.14954179525375,0.071906901896,-0.016068300232291],[-0.095522880554199,-0.092857122421265,0.13799880445004]],[[-0.12392900884151,-0.06995952129364,0.034883394837379],[-0.12638890743256,-0.076681591570377,0.017129350453615],[-0.0013868338428438,-0.0070392927154899,0.1459758579731]],[[0.05317635089159,0.19343560934067,0.083305455744267],[-0.0191436894238,0.24636191129684,-0.0040737385861576],[-0.01997996494174,0.12343602627516,-0.027072250843048]],[[-0.0032372949644923,0.045643094927073,0.0018256246112287],[0.10123368352652,-0.039836846292019,-0.18019923567772],[0.12510788440704,-0.036084905266762,0.035662595182657]],[[0.0064268233254552,-0.0092207137495279,-0.061282508075237],[-0.02152650244534,-0.036843568086624,-0.026707334443927],[-0.12488855421543,-0.023011339828372,0.030035063624382]],[[-0.014176132157445,-0.043303076177835,-0.11196256428957],[-0.066486537456512,-0.040928818285465,-0.15391357243061],[-0.10947345942259,-0.1122106090188,0.12189122289419]],[[0.036361202597618,0.0057237977162004,-0.086091913282871],[-0.071419179439545,0.044506475329399,0.026398671790957],[0.016564454883337,-0.041856355965137,0.049879893660545]],[[0.07384093105793,-0.034802310168743,0.040153816342354],[-0.16678555309772,-0.056334801018238,-0.10540618002415],[0.0065255626104772,-0.11132427304983,-0.12887182831764]],[[0.060088701546192,-0.086193054914474,0.10958686470985],[0.13510455191135,0.019744766876101,0.021397760137916],[0.072440750896931,0.11681209504604,0.064124122262001]],[[-0.03430087864399,0.024818930774927,0.15969222784042],[0.071393601596355,0.069082953035831,-0.00042021626722999],[0.071044363081455,-0.1744459271431,0.053892180323601]],[[-0.0019023078493774,-0.05239349976182,0.001266062958166],[0.045646723359823,-0.076536312699318,-0.024659357964993],[-0.066433742642403,-0.034238554537296,0.11027573794127]],[[-0.012592048384249,0.064628720283508,-0.052922662347555],[-0.082105316221714,0.054308600723743,0.22340527176857],[0.096196122467518,0.025992892682552,-0.090652547776699]],[[-0.046202834695578,-0.11615118384361,-0.14873170852661],[-0.073158845305443,-0.029903098940849,-0.03795799985528],[0.059086803346872,0.11626660078764,0.15496711432934]],[[-0.063436038792133,-0.06487137824297,-0.049295961856842],[-0.11551696062088,-0.089106179773808,-0.093768484890461],[-0.010776952840388,0.21888002753258,-0.044169902801514]],[[-0.0020781117491424,0.084192655980587,-0.043187141418457],[-0.033468414098024,-0.081539325416088,0.0419678427279],[-0.036354307085276,0.0086653381586075,-0.013469849713147]],[[0.027724778279662,0.014386217109859,0.11762406677008],[0.033029608428478,0.12376480549574,0.11547607928514],[0.064009554684162,-0.038951862603426,-0.12487594038248]],[[-0.10309222340584,-0.058710623532534,-0.049827091395855],[-0.10695502907038,-0.26290941238403,-0.018529949709773],[-0.088821403682232,0.013305751606822,-0.032523423433304]],[[-0.043392945080996,-0.11010207980871,-0.10455875843763],[0.072599962353706,-0.046658329665661,0.022890096530318],[0.012254036962986,-0.1983412951231,0.093828402459621]],[[0.053986020386219,0.21059389412403,0.059728927910328],[0.14781807363033,0.089246667921543,0.13214614987373],[-0.0056163002736866,0.09204974770546,-0.033608064055443]],[[-0.10556311160326,-0.058127734810114,0.11695872992277],[0.0078871613368392,0.043561678379774,-0.027277192100883],[-0.1200453042984,0.098197013139725,-0.0072277747094631]],[[-0.17366836965084,0.054439328610897,0.19442696869373],[0.02685415931046,0.10195895284414,0.054445587098598],[-0.022776506841183,0.01624770462513,0.047361928969622]],[[0.22478793561459,-0.025940969586372,-0.076997153460979],[0.15089930593967,-0.0582713522017,-0.0018683730158955],[-0.029220016673207,-0.056725572794676,-0.11233764886856]]],[[[-0.056380119174719,-0.038542289286852,-0.031813465058804],[0.017683042213321,0.055109925568104,0.064874805510044],[-0.0069244178012013,-0.013475196436048,-0.042001489549875]],[[0.0055781127884984,-0.040762219578028,0.016168938949704],[-0.0045362547971308,-0.005861614830792,-0.0056291962973773],[0.040241297334433,0.088497348129749,-0.0087673794478178]],[[-0.0094336047768593,0.0056352238170803,-0.053628940135241],[0.037046682089567,0.016614969819784,0.002162748714909],[0.00072051445022225,-0.069272398948669,0.00024194360594265]],[[-0.028651269152761,0.0051432810723782,0.032222233712673],[-0.040568966418505,0.017193710431457,-0.033577501773834],[0.012560293078423,-0.02505842037499,0.005854042712599]],[[0.070330791175365,-0.0017567772883922,-0.030788194388151],[-0.031091133132577,-0.0022198748774827,0.044842045754194],[0.025956494733691,0.043592318892479,-0.0048007862642407]],[[0.0057230568490922,0.039159629493952,-0.037708777934313],[0.013370091095567,-0.023164903745055,0.017578801140189],[-0.0072648446075618,0.04891512170434,-0.058206327259541]],[[-0.01850463822484,0.035559389740229,-0.020567387342453],[-0.0083891320973635,-0.042460780590773,-0.0011294285068288],[-0.02965378575027,-0.017122389748693,-0.028589971363544]],[[-0.085535421967506,0.010442459955812,0.024721415713429],[0.009940767660737,-0.042084041982889,-0.015390743501484],[0.035045713186264,0.055878035724163,0.00013528359704651]],[[-0.013405191712081,0.090705327689648,-0.026412477716804],[0.0030613343697041,-0.0013618043158203,-0.0042190798558295],[-0.0518355704844,0.06482121348381,0.035050272941589]],[[0.076467603445053,0.0024118730798364,0.017939550802112],[-0.00097452226327732,0.0027838030364364,0.025624820962548],[0.01237390562892,0.010841807350516,0.020598920062184]],[[-0.020239364355803,0.028351053595543,-0.027767824009061],[-0.004223519936204,0.0069233532994986,0.031806737184525],[0.075882196426392,-0.010823053307831,0.025012373924255]],[[-0.086267031729221,0.036083500832319,0.038156665861607],[0.019435469061136,0.07618809491396,0.015436455607414],[0.010684522800148,-0.0080134756863117,-0.096257738769054]],[[-0.028351865708828,-0.055543057620525,-0.032845485955477],[-0.0060349926352501,0.063314214348793,-0.016008036211133],[0.020986432209611,0.001170041738078,-0.057357829064131]],[[0.0099743865430355,0.0049435677938163,-0.0036436512600631],[0.013047023676336,-0.074239730834961,0.035639826208353],[0.074918143451214,0.076050877571106,0.019443668425083]],[[0.019946085289121,-0.013689490966499,0.011288679204881],[0.015922022983432,-0.042820334434509,0.014269724488258],[0.011482811532915,0.068452447652817,0.044464576989412]],[[0.030190318822861,0.101687528193,0.035462908446789],[0.0099023226648569,0.010808449238539,0.0037755246739835],[0.012024671770632,-0.023534061387181,-0.0011663562618196]],[[0.0045540514402092,0.026631506159902,-0.065385349094868],[0.0031375628896058,0.046422872692347,0.033915437757969],[0.037516407668591,-0.04548529163003,0.017884554341435]],[[0.05409486964345,0.0072902198880911,0.018072951585054],[0.026200463995337,0.0059540276415646,-0.023258436471224],[-0.044791046530008,0.02373355999589,0.069247208535671]],[[-0.048698734492064,0.036986034363508,-0.044861741364002],[0.011779066175222,-0.024501668289304,0.038156647235155],[0.023631015792489,-0.0079144546762109,-0.05892700701952]],[[0.025397045537829,0.01472445577383,0.03593523427844],[0.0061063901521266,-0.029531762003899,-0.039916880428791],[-0.0024839334655553,0.013824698515236,0.050536051392555]],[[-0.0029536252841353,0.012388868257403,-0.018134543672204],[0.011695213615894,0.022259891033173,-0.027356224134564],[-0.048096638172865,-0.0039764330722392,-0.0092820273712277]],[[0.029587024822831,0.036826200783253,-0.0057844826951623],[0.060300398617983,0.050820518285036,0.030957780778408],[-0.031053928658366,0.030111983418465,0.026579001918435]],[[-0.021769441664219,0.071661949157715,0.034449372440577],[-0.015296664088964,0.021859612315893,0.016930809244514],[-0.0085945790633559,0.0086819054558873,-0.036894120275974]],[[-0.014421274885535,0.027183288708329,0.0034996005706489],[-0.013213226571679,-0.011271456256509,0.030139310285449],[0.041326384991407,0.030943054705858,-0.0057213781401515]],[[0.025070391595364,-0.031773421913385,0.02160507813096],[-0.065084755420685,-0.047262005507946,-0.034706361591816],[-0.027897426858544,0.015898261219263,0.094880923628807]],[[-0.038433533161879,0.017619989812374,-0.068695664405823],[-0.0076643172651529,-0.05117642134428,-0.032356280833483],[0.03404314443469,0.0032587717287242,-0.018207145854831]],[[-0.040417592972517,-0.0073932148516178,0.028669161722064],[-0.015079493634403,0.0027774011250585,-0.043493162840605],[0.0036386838182807,0.0020555111113936,-0.030174732208252]],[[0.026097770780325,0.030577147379518,0.017094226554036],[0.047798037528992,0.024085721001029,-0.082544639706612],[0.06897209584713,0.0023121535778046,-0.0015743041876704]],[[-0.0072513073682785,-0.025180200114846,0.062247652560472],[-0.037325847893953,0.031849499791861,-0.02344966493547],[0.018327262252569,-0.0038518169894814,0.067583657801151]],[[-0.032681565731764,0.0035999813117087,0.018906440585852],[0.0090155191719532,0.050225492566824,0.043559737503529],[-0.050969310104847,-0.013146240264177,0.043421916663647]],[[0.0069685480557382,-0.021437836810946,0.015079624019563],[-0.018957076594234,0.0049494081176817,-0.031502153724432],[-0.026677198708057,0.058430958539248,0.044097550213337]],[[0.062199879437685,0.01455654669553,0.030087793245912],[0.014954412356019,0.073677659034729,-0.032361842691898],[-0.053064614534378,-0.022653697058558,-0.037555858492851]],[[0.007227698341012,0.021229548379779,0.099119268357754],[0.058329239487648,0.083862014114857,0.022730894386768],[-0.014702158980072,-0.013986474834383,-0.030884545296431]],[[0.0086440313607454,0.01880263723433,-0.026179959997535],[0.041943915188313,-0.023679515346885,0.033280573785305],[-0.024176588281989,-0.058150693774223,-0.035402446985245]],[[-0.024255933240056,-0.006671242415905,-0.042121082544327],[-0.034297492355108,0.034726444631815,-0.022266950458288],[0.065426357090473,-0.008221254684031,0.013478461652994]],[[-0.031415585428476,-0.0025293468497694,-0.019095307216048],[-0.064570695161819,0.03816794604063,0.028636939823627],[-0.040804270654917,0.06157137081027,0.0078192288056016]],[[0.071691319346428,0.015231161378324,0.014584961347282],[-0.042916864156723,-0.029903450980783,0.045185409486294],[0.019047467038035,0.034797199070454,0.020183565095067]],[[0.010066356509924,-0.041820101439953,0.014535073190928],[0.022919971495867,-0.062631912529469,0.031034106388688],[-0.050509680062532,-0.049255445599556,0.030202904716134]],[[0.0027488421183079,0.021527050063014,0.038833435624838],[-0.023833533748984,-0.020971585065126,-0.0080042164772749],[-0.015933917835355,0.021454714238644,0.021158693358302]],[[0.010083842091262,0.008730623871088,-0.021219603717327],[-0.012560266070068,-0.022084444761276,0.020450426265597],[0.002002292079851,-0.056520208716393,0.035029470920563]],[[-0.054931554943323,-0.021685631945729,-0.015355314128101],[0.029998172074556,-0.00053686741739511,-0.0025933077558875],[0.0021717136260122,0.0028529837727547,-0.068079441785812]],[[-0.021788448095322,-0.041616719216108,0.0042559611611068],[-0.021087318658829,-0.040464106947184,0.023343022912741],[-0.026796316727996,0.021093167364597,0.026898683980107]],[[-0.0092617133632302,0.021505363285542,0.0052627520635724],[0.045494955033064,0.023864129558206,-0.016910372301936],[0.038255803287029,0.049389775842428,-0.0087426071986556]],[[0.012093911878765,0.0029458354692906,-0.0090848011896014],[-0.044226445257664,-0.02376408316195,-0.025281745940447],[-0.031595166772604,-0.036577451974154,-0.0018837214447558]],[[-0.044540781527758,0.00048955052625388,0.040365565568209],[-0.010666881687939,0.05870209634304,-0.062780149281025],[0.019890956580639,-0.06589662283659,-0.0047299531288445]],[[-0.0059156799688935,-0.055558063089848,-0.046313866972923],[0.061338815838099,0.054230134934187,0.020831130445004],[0.036141820251942,0.019597196951509,-0.10374346375465]],[[0.030498800799251,-0.018575944006443,-0.019416321069002],[-0.025087412446737,0.0015690174186602,0.056480288505554],[-0.026604268699884,0.059218320995569,-0.023363994434476]],[[0.030777711421251,0.042282234877348,-0.03458634018898],[-0.0023571166675538,-0.020548829808831,-0.013131950050592],[0.023028755560517,-0.0036054658703506,0.026128757745028]],[[0.0036914176307619,0.02131537720561,0.011989875696599],[-0.075367368757725,0.0071595120243728,0.032162293791771],[-0.012313354760408,0.044990178197622,0.019536178559065]],[[0.030935009941459,-0.038448043167591,0.000932136841584],[-0.053070649504662,-0.0023995554074645,0.080591350793839],[-0.00048631746903993,-0.0014487588778138,-0.036840420216322]],[[-0.0044767111539841,0.059417147189379,-0.05314052850008],[-0.018766487017274,-0.019815444946289,0.0410116314888],[-0.049649719148874,-0.049531437456608,-0.022069608792663]],[[-0.085761703550816,0.011907546781003,-0.018990086391568],[-0.0094127785414457,-0.047898318618536,0.01411269698292],[0.001234162831679,0.040718071162701,-0.01124123763293]],[[-0.065222889184952,0.012893534265459,-0.023747349157929],[0.044878650456667,0.0093022529035807,-0.041153226047754],[-0.008855402469635,-0.0058601363562047,-0.026366120204329]],[[0.0054936432279646,0.020577311515808,-0.012038959190249],[0.017839400097728,-0.015524283051491,0.054370958358049],[-0.02684922516346,0.020774463191628,0.021988453343511]],[[0.058916170150042,0.039908770471811,-0.049647271633148],[-0.03041890822351,-0.037963401526213,-0.040952749550343],[-0.0049472376704216,0.007577090524137,0.00089261546963826]],[[-0.037157487124205,-0.010379773564637,-0.010649517178535],[0.0030882726423442,-0.030886024236679,-0.037891674786806],[-0.0095236795023084,0.0089789731428027,-0.025403587147593]],[[-0.035683628171682,-0.0074827368371189,-0.027008801698685],[-0.02486614510417,0.023525685071945,-0.046708200126886],[0.052764110267162,-0.041372284293175,0.02184303291142]],[[0.045958280563354,0.016136774793267,0.03053530678153],[-0.0044252006337047,0.039134375751019,-0.044333472847939],[0.026394531130791,-0.079604253172874,-0.0023171664215624]],[[-0.043544065207243,-0.03817131370306,-0.091108791530132],[0.052814200520515,-0.043122544884682,-0.075268007814884],[-0.014072485268116,0.012168282642961,-0.054576177150011]],[[0.038100741803646,-0.028510965406895,-0.0039026215672493],[-0.052145875990391,0.053107857704163,0.087202422320843],[0.056994747370481,-0.014871927909553,-0.061035521328449]],[[-0.001622396055609,-0.021498404443264,-0.017657225951552],[0.016539016738534,0.0005256193690002,-0.0054416889324784],[-0.0225186701864,0.029436189681292,0.016943246126175]],[[-0.01452726777643,0.058059521019459,-0.014364978298545],[0.086903922259808,0.013199512846768,0.013631763868034],[-0.02718199044466,0.062923096120358,0.027676245197654]],[[0.11261355876923,0.038228925317526,-0.026489509269595],[-0.10417547076941,0.067766405642033,-0.012000461108983],[0.020913101732731,-0.0037918901070952,-0.00936658680439]],[[0.031462762504816,-0.0074748476035893,0.038922671228647],[0.0062913638539612,0.0071066115051508,0.020331649109721],[0.070568799972534,-0.035051625221968,-0.021884806454182]],[[0.016300745308399,0.020411688834429,-0.040461651980877],[0.026837963610888,0.027195537462831,-0.023138662800193],[0.0053877327591181,0.031913556158543,0.02188147418201]],[[-0.1191083714366,-0.071416787803173,-0.00013068193220533],[-0.0019065137021244,-0.042940385639668,-0.01164694968611],[0.02091546356678,-0.046052798628807,0.010156118310988]],[[-0.028731014579535,-0.09306375682354,-0.010886684991419],[0.023972665891051,-0.014154335483909,-0.0056640217080712],[-0.067947737872601,-0.033847160637379,0.010922594927251]],[[0.018540402874351,0.004142009653151,0.0053000203333795],[-0.03049741499126,0.0081841144710779,-0.018956346437335],[0.011563922278583,-0.04834259301424,0.0085131088271737]],[[-0.00030206475639716,-0.062420062720776,-0.061177015304565],[-0.018073679879308,0.010097062215209,-0.0016972438897938],[0.044297412037849,-0.0036163404583931,-0.018076116219163]],[[-0.0094974059611559,-0.022802056744695,0.025076614692807],[0.035972349345684,-0.020577175542712,0.03193162381649],[-0.020345862954855,-0.034031558781862,-0.078305959701538]],[[-0.051128748804331,-0.058021672070026,-0.094211764633656],[0.059240080416203,0.015940206125379,-0.055333834141493],[0.0093073965981603,0.015029704198241,-0.0003864499158226]],[[0.020511668175459,0.018627297133207,0.020342517644167],[-0.024315213784575,-0.051514614373446,0.047666635364294],[0.010676498524845,0.030316982418299,-0.01158563606441]],[[-0.031928852200508,-0.016749747097492,0.045758951455355],[-0.012632425874472,0.036393083631992,-0.026026548817754],[-0.0084913987666368,-0.00030182648333721,-0.033245500177145]],[[0.006574175786227,0.045292042195797,-0.044601932168007],[-0.011672181077302,-0.016508061438799,0.014535596594214],[-0.059113647788763,0.0052028521895409,0.046457279473543]],[[-0.026409488171339,0.0043954085558653,0.0070172972045839],[0.076338313519955,0.062175448983908,0.0072527518495917],[-0.055741563439369,-0.057597793638706,0.014771998859942]],[[0.017856208607554,0.0099567472934723,0.0016831404063851],[-0.018402406945825,-0.049037922173738,0.00091322680236772],[-0.0092247789725661,0.015293268486857,0.0017570891650394]],[[-0.0066509833559394,-0.0073346383869648,0.028526702895761],[-0.0099183758720756,0.046690821647644,-0.0014117525424808],[-0.017026236280799,-0.023226510733366,-0.0029623114969581]],[[-0.0019005083013326,-0.021626709029078,0.01967291161418],[-0.023048179224133,0.0060446434654295,-0.038386646658182],[0.031905420124531,0.03040973097086,0.043635237962008]],[[-0.0003931212995667,0.0260168928653,-0.0027082683518529],[0.03773245215416,0.017692029476166,-0.048964351415634],[0.05590582638979,0.0088429572060704,0.052343402057886]],[[0.015919344499707,0.024097684770823,-0.038647077977657],[0.0027489797212183,0.01780634559691,0.066427446901798],[-0.052158121019602,-0.036373138427734,0.021083045750856]],[[-0.01240920741111,0.016162948682904,0.023265667259693],[0.061467178165913,-0.078499622642994,0.030934706330299],[0.011694367043674,-0.017456158995628,0.0013014808064327]],[[-0.011220142245293,0.020524449646473,-0.056925911456347],[0.074476972222328,-0.036855138838291,0.012405840680003],[0.05465080589056,-0.015468696132302,0.066067859530449]],[[0.0002786522381939,-0.062700405716896,-0.013100207783282],[0.011930574662983,0.036528270691633,-0.027502503246069],[-0.065932646393776,-0.028867334127426,-0.0027777410577983]],[[0.045122310519218,0.00030009992769919,0.016572402790189],[0.003413301659748,0.0089130839332938,0.021651098504663],[-0.026627575978637,-0.0098989680409431,0.028893096372485]],[[0.10205651074648,-0.033768154680729,-0.043860554695129],[-0.060375820845366,-0.034601092338562,-0.036540638655424],[0.039708934724331,-0.024697426706553,0.0059740208089352]],[[0.08546482026577,0.046521872282028,-0.035081010311842],[0.036996688693762,-0.070682808756828,0.013304049149156],[-0.032200135290623,0.0095992730930448,-0.02464578859508]],[[0.0033689099363983,0.015139528550208,-0.044931720942259],[0.024680836126208,-0.070924088358879,-0.077169127762318],[-0.019710760563612,0.016686897724867,0.061538010835648]],[[-0.029064871370792,-0.045052513480186,-0.11502403020859],[0.056662812829018,0.090825788676739,0.051358636468649],[-0.06046262010932,0.027783809229732,0.021502673625946]],[[0.068457707762718,0.057004891335964,-0.0084758987650275],[-0.012647041119635,-0.037679933011532,-0.023556577041745],[-0.032093338668346,0.056718409061432,0.0040193698368967]],[[0.020666470751166,-0.020999521017075,-0.018010152503848],[0.048289362341166,-0.012505589053035,-0.013770465739071],[-0.0026431966107339,0.014317931607366,-0.024384908378124]],[[-0.038674429059029,-0.018823789432645,-0.0099315233528614],[-0.03542597219348,0.049738746136427,0.034318335354328],[-0.07462527602911,-0.055566743016243,-0.014637775719166]],[[0.057895638048649,0.02780888043344,0.075572490692139],[0.023477835580707,0.020155772566795,-0.020081367343664],[0.041035830974579,0.070070564746857,-0.042632687836885]],[[-0.028222125023603,0.012823406606913,-0.047599133104086],[0.011055220849812,-0.030237896367908,-0.019330177456141],[0.024905083701015,0.00094669824466109,-0.028983192518353]],[[-0.026588689535856,-0.067319132387638,-0.070264860987663],[-0.025051765143871,-0.043554838746786,-0.0033462380524725],[-0.031894873827696,-0.062936387956142,-0.020570559427142]],[[-0.061050724238157,0.0084706619381905,0.027245327830315],[0.0027417747769505,0.051918413490057,0.021189836785197],[0.073969505727291,0.058142941445112,-0.032725792378187]],[[0.027627879753709,-0.035615809261799,-0.020659668371081],[0.058993577957153,0.045022141188383,-0.045944657176733],[-0.011540865525603,0.0042558987624943,-0.013913772068918]],[[-0.076466269791126,0.0035181960556656,-0.050179660320282],[-0.016668654978275,0.010605311021209,0.028567811474204],[-0.058054830878973,-0.0072040683589876,-0.013897876255214]],[[-0.031694088131189,0.050691001117229,-0.033071249723434],[-0.019808625802398,0.042816206812859,0.0024193217977881],[0.038858041167259,0.040643952786922,0.056208416819572]],[[-0.031800251454115,-0.046605713665485,0.0095015680417418],[0.012530204840004,-0.028431717306376,-0.0086060706526041],[-0.036213465034962,0.06417078524828,-0.033587988466024]],[[-0.042746212333441,0.014342048205435,-0.0096562914550304],[-0.044433422386646,-0.013947081752121,-0.046401489526033],[0.0067349951714277,-0.026726076379418,-0.021536137908697]],[[0.017904657870531,0.0017612110823393,0.050421021878719],[-0.006751349195838,0.054728671908379,-0.023383976891637],[0.032095890492201,-0.002320964820683,-0.020387781783938]],[[-0.016740353778005,-0.023949177935719,0.01067290827632],[-0.0010825098725036,0.011305689811707,0.0047037196345627],[0.0078290048986673,-0.065496146678925,-0.066553831100464]],[[0.03887265920639,0.03201312199235,0.072581253945827],[-0.04542588070035,0.011499870568514,-0.094133161008358],[-0.049822647124529,-0.0024984104093164,0.055596880614758]],[[-0.003934629727155,-0.075280047953129,-0.028672384098172],[0.059236232191324,-0.020647121593356,-0.044612880796194],[0.036902312189341,0.075767934322357,0.027467524632812]],[[0.020591676235199,-0.031560439616442,0.034524071961641],[0.032650705426931,0.029709037393332,0.062464285641909],[0.011790986172855,-0.03955889120698,0.063472710549831]],[[-0.061310768127441,-0.00095535162836313,-0.020037831738591],[0.031067103147507,-0.028210774064064,-0.026909474283457],[0.0398631952703,-0.05781464651227,0.032157387584448]],[[0.0471824221313,0.0010903482325375,-0.014507690444589],[-0.044790841639042,0.064083226025105,-0.043522089719772],[-0.037491254508495,-0.0036132482346147,-0.066778115928173]],[[0.023844508454204,-0.0089731477200985,0.0028561961371452],[0.006107060238719,0.0041139028035104,-0.00046119981561787],[-0.012137338519096,-0.029254814609885,0.02455522865057]],[[-0.043988022953272,0.041146606206894,-0.013599029742181],[0.005964488722384,-0.04602725058794,0.022807668894529],[0.025305042043328,0.041171591728926,-0.031356625258923]],[[-0.019322032108903,-0.01646570302546,-0.075721688568592],[0.041386436671019,0.0050137285143137,-0.052991822361946],[-0.092359408736229,-0.054373916238546,-0.076840341091156]],[[-0.016031099483371,-0.097458586096764,-0.013377229683101],[-0.061116002500057,-0.029001757502556,-0.099329061806202],[0.046230766922235,0.030902616679668,0.02867479622364]],[[-0.045997560024261,0.060554999858141,0.0017241525929421],[-0.024893429130316,-0.042575892060995,-0.019745294004679],[0.030093673616648,0.03694349899888,0.026858106255531]],[[0.0024993726983666,0.018724322319031,-0.021993098780513],[0.013048213906586,-0.033132445067167,-0.0021544443443418],[-0.036945089697838,-0.0068813851103187,0.039048466831446]],[[0.0046355021186173,0.026363380253315,-0.024332685396075],[0.044303920120001,-0.12901915609837,0.069178655743599],[0.033770319074392,0.028084125369787,0.0098671270534396]],[[-0.07268226146698,-0.050796702504158,0.029114605858922],[0.0017590565839782,0.076785169541836,-0.035456016659737],[0.050522182136774,0.0089445579797029,0.019325716421008]],[[0.054812457412481,0.0049532637931406,-0.012930553406477],[-0.035027593374252,-0.018990125507116,-0.0075516300275922],[0.0044559063389897,0.037055425345898,0.041143756359816]],[[-0.030806863680482,0.028778459876776,0.049367718398571],[-0.018689161166549,0.037113763391972,0.0024728928692639],[-0.073591902852058,0.0065883323550224,-0.052116010338068]],[[0.042071547359228,-0.035458512604237,-0.014264192432165],[0.038490731269121,-0.057067908346653,0.047672092914581],[-0.0054854261688888,0.011874491348863,0.0077354591339827]],[[0.03265692666173,0.019330875948071,-0.017904089763761],[-0.04804028943181,-0.023561848327518,0.042815130203962],[0.03408395498991,0.034756507724524,0.0015442293370143]],[[0.077498845756054,0.017908440902829,-0.025266306474805],[0.0022770019713789,-0.043091356754303,-0.058790449053049],[0.030432911589742,0.02387585118413,-0.072501942515373]],[[0.010270990431309,-0.044141240417957,-0.0053922426886857],[0.014883526600897,-0.030176153406501,0.040419332683086],[0.011539064347744,0.0096504688262939,-0.086449854075909]],[[0.042127139866352,-0.019465498626232,0.10324063897133],[-0.013023488223553,-0.027053020894527,0.02671992406249],[0.087267525494099,0.019401570782065,-0.055958595126867]],[[0.055461466312408,0.013637753203511,-0.011104852892458],[-0.089784704148769,-0.050864189863205,-0.098784111440182],[0.062527142465115,0.034766886383295,-0.015973227098584]],[[-0.033737920224667,-0.034868016839027,-0.014660195447505],[-0.045825224369764,-0.032360006123781,-0.014133269898593],[-0.011681493371725,0.0575140863657,0.013725978322327]],[[0.015135987661779,-0.016445165500045,0.0040918169543147],[0.070700995624065,0.0050863516516984,-0.0031861406750977],[-0.058599021285772,0.02141947299242,-0.017200648784637]],[[-0.0452582500875,-0.012781755067408,-0.016232803463936],[0.038128722459078,0.057754646986723,-0.015274110250175],[0.063027605414391,-0.017950607463717,-0.038730315864086]],[[-0.004220686852932,-0.0044635785743594,-0.055650625377893],[0.025569522753358,0.012162832543254,0.018480008468032],[-0.021947821602225,-0.022766068577766,-0.032107602804899]],[[-0.044360008090734,-0.049712650477886,0.031671285629272],[0.055845845490694,0.012003975920379,-0.025343004614115],[-0.0066465949639678,0.014796231873333,-0.021345296874642]]],[[[-0.0059489761479199,0.0098863579332829,-0.021161956712604],[0.0092943552881479,0.013921049423516,0.055942691862583],[-0.051413293927908,0.010430913418531,-0.021210551261902]],[[-0.01541533600539,-0.074022471904755,-0.036403585225344],[0.015316295437515,-0.0032191297505051,0.021338872611523],[0.025175606831908,0.0096035674214363,-0.022514110431075]],[[0.0023017136845738,-0.042496923357248,0.072289399802685],[0.022849932312965,-0.032147824764252,0.01552505698055],[0.014567812904716,0.00070103991311044,0.033231005072594]],[[0.065470419824123,-0.043482411652803,-0.058688364923],[0.0023266368079931,0.017945345491171,0.0083869332447648],[0.044920369982719,0.071041338145733,-0.017254421487451]],[[0.059394765645266,0.0085620414465666,-0.0080932686105371],[-0.01718975417316,0.052622254937887,0.030653106048703],[-0.013327651657164,0.027212254703045,0.0076559060253203]],[[-0.071885854005814,0.00078211043728516,-0.042898979038],[-0.01346078235656,0.015940602868795,0.004777449183166],[-0.054136838763952,0.057243663817644,-0.027956049889326]],[[0.014832977205515,-0.057766512036324,0.065200164914131],[-0.084853999316692,0.033346265554428,-0.048897463828325],[0.033996969461441,-0.016962137073278,-0.043014243245125]],[[-0.046120721846819,-0.10356777906418,0.024246765300632],[0.096278473734856,0.0049101077020168,0.0031640008091927],[-0.043370436877012,-0.013196850195527,-0.017200153321028]],[[-0.012288072146475,-0.051302675157785,-0.037201151251793],[0.016767915338278,0.0086169876158237,-0.0245216563344],[-0.02573000639677,-0.082312040030956,-0.016869047656655]],[[-0.023858496919274,-0.003566459286958,0.0045206863433123],[0.073725797235966,-0.016072332859039,0.0090396907180548],[0.018032228574157,0.025662340223789,0.010609242133796]],[[-0.014122559688985,-0.042912390083075,0.028155703097582],[0.0070459260605276,-0.049725819379091,0.0045870542526245],[0.034110579639673,-0.034876555204391,0.1020340770483]],[[0.076909065246582,0.046941623091698,0.058769516646862],[0.0096912533044815,-0.047511678189039,-0.010687456466258],[-0.036360539495945,-0.0012179751647636,0.055722795426846]],[[0.059041395783424,0.028405331075191,-0.039116397500038],[-0.013512765057385,-0.01521133352071,-0.088669016957283],[0.013676883652806,-0.022308887913823,-0.035150747746229]],[[-0.058318946510553,0.080643460154533,-0.0065618441440165],[0.085877276957035,-0.015206005424261,-0.026758603751659],[-0.050269562751055,0.0099582951515913,-0.016908967867494]],[[0.0029460261575878,-0.0051595056429505,-0.10739979147911],[-0.063123099505901,-0.045744903385639,0.017453404143453],[0.039014827460051,0.058373063802719,-0.033854484558105]],[[0.032333094626665,0.0026167382020503,0.0010992739116773],[0.053583901375532,0.0079649956896901,-0.0091771278530359],[-0.05903659388423,-0.0021815192885697,-0.098077513277531]],[[0.018696026876569,0.011177589185536,-0.055385384708643],[0.042467921972275,-0.029971294105053,-0.035339668393135],[0.0404042750597,0.0037179014179856,0.024431198835373]],[[-0.046269223093987,-0.028593668714166,-0.021670624613762],[0.022886849939823,-0.052976746112108,0.013627018779516],[-0.024084124714136,-0.0048757153563201,-0.079113259911537]],[[-0.056362014263868,0.0019675677176565,0.033835105597973],[0.045532073825598,-0.043530941009521,0.028283106163144],[0.068139269948006,0.037694841623306,0.031018720939755]],[[-0.00090381584595889,-0.056083269417286,0.0022797470446676],[0.024807773530483,-0.032014228403568,0.093687459826469],[0.080171138048172,0.0066368440166116,0.0122443260625]],[[-0.034522268921137,-0.01541739422828,0.1187865883112],[0.012897492386401,-0.034881826490164,0.027340464293957],[0.11289997398853,0.062997885048389,0.058935165405273]],[[-0.0070295515470207,-0.021890444681048,0.063177421689034],[0.05615845695138,-0.013576736673713,0.014043999835849],[0.015910089015961,-0.046741232275963,0.00053265801398084]],[[-0.01962523534894,0.099169030785561,0.031079569831491],[0.049415785819292,0.00053839053725824,0.0048831459134817],[-0.027706110849977,-0.059169087558985,0.005554667674005]],[[0.031954444944859,0.056413307785988,0.041994724422693],[0.085271373391151,0.0030752401798964,0.060788251459599],[0.050250023603439,0.029285619035363,0.01126769091934]],[[-0.035821460187435,0.025343095883727,-0.0013104055542499],[0.016460526734591,0.032697718590498,-0.024449784308672],[0.011759746819735,0.056221473962069,-0.057544454932213]],[[0.10620549321175,-0.025831766426563,0.037424713373184],[-0.048027157783508,0.015815991908312,-0.025076581165195],[-0.062841072678566,-0.016226634383202,0.10833466798067]],[[0.027235589921474,-0.044113397598267,-0.014227870851755],[-0.0012181325582787,-0.0028481995686889,0.011576787568629],[-0.04072055593133,0.12945683300495,0.061992395669222]],[[-0.12861306965351,-0.073148369789124,0.063834995031357],[0.046302564442158,-0.049942817538977,-0.066062621772289],[-0.022224862128496,0.026191050186753,-0.04262675344944]],[[0.069251358509064,0.029446503147483,-0.0059046377427876],[0.0084071271121502,0.030326515436172,0.065202064812183],[0.023397395387292,0.031514294445515,0.0087592946365476]],[[-0.012044771574438,0.07614516466856,0.050256963819265],[-0.0093633588403463,0.041962668299675,0.037348046898842],[0.054209016263485,0.0032298828009516,0.036346230655909]],[[0.029453970491886,0.06246430426836,0.0070399320684373],[-0.036227356642485,0.052972171455622,0.021202376112342],[-0.083163939416409,-0.035804729908705,0.026709159836173]],[[0.054131925106049,0.088241197168827,0.026141110807657],[0.0050404639914632,0.016913004219532,-0.038292232900858],[-0.035562567412853,0.064408704638481,-0.097509987652302]],[[0.010684729553759,-0.034433107823133,0.050377320498228],[0.0789395570755,0.030192041769624,-0.056320384144783],[-0.022968258708715,-0.074257537722588,0.012629737146199]],[[-0.074957594275475,0.014613878913224,0.054836422204971],[-0.030566604807973,-0.0010626198491082,-0.017368782311678],[-0.067799285054207,-0.0096939317882061,0.034121882170439]],[[0.010821038857102,0.009272669441998,0.0038984129205346],[0.026620263233781,0.02533726207912,-0.061731576919556],[0.061762612313032,0.022177409380674,0.0194684676826]],[[0.020967874675989,-0.01056229416281,0.057054329663515],[0.020110415294766,0.0010604999260977,-0.040152229368687],[-0.044530928134918,-0.041730623692274,0.073550224304199]],[[0.011179198510945,0.040077533572912,0.029051741585135],[0.058475472033024,-0.0015783075941727,0.035288780927658],[-0.041821375489235,-0.036107413470745,0.016506001353264]],[[0.036374639719725,-0.046965219080448,0.032275892794132],[0.094424568116665,-0.039016101509333,-0.035204757004976],[0.04814288020134,-0.047525212168694,-0.079997420310974]],[[-0.032947178930044,-0.0040920213796198,-0.084629289805889],[-0.021914849057794,0.00033858031383716,0.023244630545378],[0.0024007365573198,-0.071365304291248,0.020739378407598]],[[0.043783146888018,-0.0078401369974017,0.038680609315634],[-0.034288939088583,-0.020876603201032,0.012039750814438],[0.0034308158792555,0.062593176960945,0.079927608370781]],[[-0.071716994047165,-0.013235195539892,-0.0082920864224434],[0.01202691718936,-0.012762757949531,0.067301489412785],[0.06382892280817,0.094942405819893,0.025259535759687]],[[0.002701589372009,0.028286922723055,0.024505004286766],[-0.009125204756856,-0.018308695405722,0.0086116530001163],[-0.015522663481534,0.021109061315656,-0.021282374858856]],[[0.036253798753023,-0.043703556060791,-0.0061451997607946],[0.017197733744979,0.0011438254732639,-0.041832026094198],[0.040493831038475,0.10940279811621,0.082423709332943]],[[0.087812125682831,0.0052255024202168,-0.056482426822186],[-0.024814458563924,-0.043039117008448,-0.01077947486192],[-0.0048274411819875,0.043562445789576,-0.0088099511340261]],[[0.060472019016743,-0.082286857068539,0.016720674932003],[-0.052749678492546,-0.042760789394379,0.063625611364841],[0.024691330268979,0.0063468720763922,-0.024688728153706]],[[0.078765340149403,0.11362817138433,0.04794255644083],[0.013229234144092,0.0031829935032874,-0.012409348040819],[-0.021332964301109,-0.079072907567024,-0.033754363656044]],[[0.0096638649702072,-0.041976053267717,0.030793910846114],[0.10264302045107,-0.01408332772553,0.00030020179110579],[0.057944383472204,0.11244211345911,-0.0093641132116318]],[[-0.051723394542933,0.045126531273127,-0.086052797734737],[-0.083491943776608,-0.026439951732755,0.041734632104635],[0.01694893091917,0.017264598980546,0.0099551323801279]],[[-0.057686138898134,0.064445085823536,0.018278911709785],[-0.035713311284781,0.062638111412525,0.0034641390666366],[0.01413628552109,-0.0085377655923367,-0.065069481730461]],[[0.031194448471069,0.025234071537852,0.064350560307503],[0.083331480622292,-0.027285121381283,0.034132473170757],[-0.046458408236504,0.010641322471201,-0.015949374064803]],[[0.0022404447663575,-0.058149088174105,-0.025011667981744],[0.00052975787548348,0.0366021245718,0.039465334266424],[0.0650819465518,0.088244572281837,0.038672082126141]],[[-0.07543507963419,0.04698621481657,-0.059390231966972],[0.010090124793351,-0.043780487030745,-0.0057314783334732],[0.071200966835022,0.03053716942668,0.0710808634758]],[[-0.056624703109264,-0.016389649361372,-0.041273005306721],[0.0066060530953109,0.0024604075588286,-0.085834056138992],[0.018729694187641,-0.029952459037304,-0.073593102395535]],[[0.0018483749590814,-0.04328516125679,0.021240690723062],[0.00036534725222737,7.3760835221037e-05,-0.027244664728642],[-0.01927656494081,0.021479306742549,0.046434916555882]],[[0.040853682905436,-0.03280683234334,-0.029600551351905],[-0.018381269648671,0.034546609967947,0.039745066314936],[0.0040912344120443,-0.049253012984991,-0.054401643574238]],[[0.065519526600838,-0.012827846221626,-0.016606071963906],[0.010517636314034,0.004898973274976,0.045770980417728],[0.008145147934556,-0.02268054895103,0.071383140981197]],[[-0.012861615978181,0.007276261691004,0.00060547195607796],[-0.052824530750513,-0.074478723108768,-0.0093880342319608],[0.021679185330868,-0.036176532506943,0.04884784296155]],[[-0.0023290656972677,0.082232028245926,-0.059495590627193],[-0.038779284805059,0.042333003133535,-0.029209200292826],[0.064005069434643,0.0079203136265278,0.11618370562792]],[[0.063443034887314,0.02669813670218,0.056773651391268],[-0.065448947250843,-0.017869502305984,-0.0047036516480148],[0.0043211448937654,-0.056963808834553,0.036530081182718]],[[0.072108365595341,0.047357358038425,-0.045419070869684],[0.0070575773715973,-0.042862616479397,0.040516000241041],[0.043666355311871,0.096646547317505,-0.11299297958612]],[[-0.0010454815346748,-0.04091639816761,0.050723019987345],[0.022194791585207,0.026564141735435,-0.0023216663394123],[0.015053580515087,0.10501693934202,0.078930355608463]],[[-0.027400201186538,-0.014807174913585,0.014190231449902],[0.031655639410019,0.00059894111473113,0.027503315359354],[-0.011194158345461,-0.078485354781151,-0.031535014510155]],[[-0.02057876996696,0.082566171884537,-0.14391228556633],[-0.03285550698638,0.010949151590466,-0.0080928606912494],[-0.014407939277589,-0.10742349177599,-0.0058979643508792]],[[0.01068514958024,-0.043508537113667,0.077327072620392],[-0.005416358821094,-0.025250233709812,-0.0069124461151659],[-0.10216631740332,0.062037643045187,-0.064062878489494]],[[0.093005485832691,0.010576112195849,-0.0087356977164745],[-0.053144387900829,-0.045689731836319,0.08830551803112],[-0.053254541009665,0.016531294211745,-0.0023256372660398]],[[0.017028853297234,-0.0087475329637527,0.013006280176342],[-0.043124098330736,0.0034589592833072,-0.026339868083596],[0.090970754623413,-0.035355679690838,-0.019019132480025]],[[-0.07720672339201,0.010234492830932,-0.023511908948421],[0.022522808983922,0.021185265854001,0.010520280338824],[-0.0010973353637382,-0.0076825651340187,0.013585861772299]],[[0.037807889282703,0.0091161457821727,0.0010868215467781],[0.062849380075932,0.041984874755144,0.0079074734821916],[0.0160380769521,0.078118555247784,-0.034101486206055]],[[0.0089335674419999,-0.021007152274251,-0.036114290356636],[0.101702041924,0.07691053301096,-0.01990394666791],[0.042258437722921,-0.034802734851837,-0.01087992079556]],[[0.010870814323425,-0.0090801855549216,0.056319955736399],[-0.034650798887014,0.012710294686258,0.022479888051748],[0.051972717046738,0.060765039175749,-0.012663104571402]],[[-0.01200114749372,-0.0090164076536894,-0.055966258049011],[0.03368877992034,-0.050170470029116,-0.0052129933610559],[-0.028381766751409,-0.00056566938292235,0.032343097031116]],[[-0.031955756247044,-0.042015265673399,0.034478504210711],[-0.010974623262882,-0.038517717272043,-0.039071727544069],[0.039463385939598,-0.024417208507657,0.009761530905962]],[[0.042761396616697,-0.085629902780056,0.022074012085795],[0.029250655323267,-0.069064281880856,0.025570271536708],[-0.0092924982309341,-0.0015681547811255,-0.055212568491697]],[[0.078024052083492,0.02262769266963,-0.033181361854076],[-0.04083551838994,0.030999014154077,0.063076250255108],[0.026391530409455,-0.038982454687357,-0.0360092446208]],[[-0.044304687529802,-0.031056003645062,0.04652364552021],[0.010931540280581,0.041621468961239,-0.0022155803162605],[-0.075504034757614,-0.010021202266216,0.00028473327984102]],[[0.021085811778903,-0.10184541344643,0.034561902284622],[-0.028024649247527,-0.065161243081093,0.0082794558256865],[-0.017369022592902,-0.013530986383557,0.0059452946297824]],[[0.025542667135596,-0.068759568035603,-0.049969881772995],[0.046594265848398,0.031959757208824,-0.010527500882745],[-0.047452196478844,0.026719512417912,-0.030970500782132]],[[0.024857031181455,0.016842894256115,0.005334151443094],[-0.0014763883082196,0.0064413431100547,0.063961304724216],[0.0059211906045675,-0.012260485440493,0.027983071282506]],[[0.054675813764334,0.0063226330094039,-0.062209121882915],[0.0090808337554336,0.058619599789381,-0.028277320787311],[-0.061355717480183,0.024926334619522,-0.03083785623312]],[[0.084528930485249,-0.067000582814217,0.042834617197514],[0.006506519857794,0.0010360993910581,0.076544634997845],[0.041664645075798,0.00099589256569743,-0.035292252898216]],[[0.013308858498931,0.013398019596934,0.018251530826092],[-0.062791682779789,0.045046623796225,0.0084080686792731],[-0.036481309682131,-0.036603223532438,-0.038205899298191]],[[-0.014601053670049,-0.0042010708712041,-0.012348380871117],[0.03831746801734,0.010906603187323,-0.061775051057339],[0.031138176098466,0.0068487729877234,-0.0063294293358922]],[[0.071080803871155,0.059139136224985,0.014177531935275],[0.06315216422081,0.027404556050897,0.035735175013542],[0.097230225801468,-0.012620175257325,-0.031235050410032]],[[0.063445970416069,-0.058722324669361,0.090792410075665],[-0.047848269343376,0.0085653038695455,0.0074955495074391],[-0.098093912005424,-0.024684684351087,0.011646728031337]],[[0.0300257448107,-0.018856965005398,0.01429092977196],[0.023529380559921,-0.058013830333948,0.016689339652658],[0.012570171616971,-0.027940506115556,-0.065127283334732]],[[0.012551579624414,-0.021178280934691,-0.037138633430004],[0.0043932190164924,0.064012289047241,0.0066062668338418],[0.015682781115174,0.059855852276087,0.02080967463553]],[[-0.055494200438261,-0.023936418816447,0.037254840135574],[-0.021786300465465,-0.015105213969946,-0.056036729365587],[0.034965272992849,0.037571780383587,-0.10945194959641]],[[0.0026865093968809,-0.056158892810345,-0.069346889853477],[0.0012488558422774,0.046714406460524,-0.084953628480434],[0.11236610263586,-0.014955434948206,-0.030226653441787]],[[-0.0086785731837153,-0.081488542258739,0.060985464602709],[0.038139261305332,-0.031477864831686,-0.022777449339628],[-0.010215366259217,-0.067295908927917,-0.01822454854846]],[[-0.10453677922487,-0.02448009327054,0.014857438392937],[-0.0041086063720286,0.024916587397456,0.071454770863056],[0.080294393002987,-0.018975511193275,0.11365344375372]],[[0.0071263369172812,0.039214879274368,-0.0043006697669625],[0.031002040952444,-0.016356790438294,0.079674862325191],[0.012741016224027,-0.035986050963402,0.016366090625525]],[[-0.020691651850939,-0.0016225184081122,0.10174652934074],[0.00084889901336282,0.0087990686297417,0.014761102385819],[-0.0037550558336079,-0.00062508310656995,0.062283061444759]],[[-0.011773255653679,0.080878384411335,-0.12425199896097],[0.038822036236525,-0.02569773979485,0.029374685138464],[0.016252649948001,0.052447102963924,-0.092932023108006]],[[0.025070773437619,0.037441670894623,-0.095886766910553],[-0.019103912636638,-0.061424471437931,0.095076248049736],[0.057300489395857,0.055969409644604,0.038285791873932]],[[0.049146939069033,-0.041295446455479,-0.03825281187892],[0.021889561787248,0.026621848344803,-0.015622068196535],[0.097951263189316,0.039746381342411,0.04130445048213]],[[-0.022828450426459,-0.026907924562693,0.023606143891811],[0.045745439827442,-0.035358976572752,-0.039764113724232],[0.024461397901177,0.031115412712097,-0.003673397237435]],[[0.077511064708233,0.015148253180087,0.016230536624789],[-0.042952161282301,-0.083818972110748,0.038793995976448],[-0.0068171042948961,0.029399167746305,0.039894528687]],[[0.021585024893284,0.056841563433409,-0.088062532246113],[-0.01326855737716,0.0022217414807528,-0.048493400216103],[0.0053831404075027,0.058926913887262,-0.044616308063269]],[[0.031545527279377,-0.03452805429697,0.0031532077118754],[0.018109805881977,-0.076370194554329,-0.016595309600234],[0.058489840477705,-0.048897329717875,0.040340732783079]],[[-0.056614551693201,-0.020324612036347,-0.0012886656913906],[0.029880106449127,0.033705815672874,0.057990211993456],[0.014678093604743,0.021301954984665,-0.045477621257305]],[[-0.013136171735823,0.031132183969021,-0.00082969997311011],[-0.021720131859183,0.048977579921484,0.013729099184275],[-0.011041671968997,-0.012637826614082,-0.079845055937767]],[[0.012110291048884,0.057839497923851,-0.022002840414643],[0.067364886403084,0.09178002178669,0.020885279402137],[-0.032168958336115,-0.032800439745188,-0.092961221933365]],[[0.0088379280641675,-0.0559699870646,0.10891017317772],[0.022179871797562,0.025001039728522,-0.014477105811238],[-0.050827492028475,0.080837465822697,0.057315915822983]],[[0.066231593489647,0.014567465521395,0.041210107505322],[0.05220029130578,-0.020906656980515,0.053553771227598],[-0.0020495608914644,-0.054874423891306,-0.044297985732555]],[[0.0029450140427798,-0.054430514574051,-0.044207133352757],[-0.040444191545248,0.065383091568947,0.0028582806698978],[0.091307424008846,0.059305276721716,0.013410686515272]],[[0.024790031835437,0.0378343090415,0.0098906187340617],[-0.045867424458265,0.0051335808821023,0.025522571057081],[-0.019639134407043,0.079858869314194,-0.044114295393229]],[[0.022471398115158,-0.047625567764044,-0.059372298419476],[-0.062460023909807,0.045914635062218,0.034484315663576],[-0.0174112431705,0.015337548218668,0.039781708270311]],[[-0.0045589474029839,-0.0023274598643184,0.044907074421644],[0.12501156330109,-0.021858233958483,0.0084930816665292],[0.041398394852877,-0.056711360812187,-0.032791182398796]],[[0.061860598623753,0.0045767133124173,-0.0078149996697903],[0.041817028075457,0.037094291299582,-0.014399372972548],[0.030952252447605,0.042766537517309,-0.01387900300324]],[[-0.037032172083855,0.037960827350616,0.0042335242033005],[-0.043829172849655,0.0033587601501495,-0.051874615252018],[-0.0062045361846685,0.0042951591312885,0.011485978960991]],[[0.082735352218151,0.040700744837523,-0.040100231766701],[0.011666776612401,0.05806889384985,0.030389502644539],[0.030615506693721,0.12038134783506,-0.0077103460207582]],[[0.022233761847019,0.062600806355476,-0.10289788246155],[0.014908275566995,0.044581763446331,-0.012262064963579],[0.047411900013685,0.096207782626152,-0.0065342960879207]],[[0.020901013165712,-0.024164685979486,0.091356553137302],[0.0010216219816357,-0.0030402436386794,0.029405424371362],[-0.04382535815239,-0.039671409875154,0.071466237306595]],[[-0.036012478172779,0.087356641888618,0.020289039239287],[0.021580591797829,0.02077023871243,0.011385266669095],[-0.025790430605412,-0.035691514611244,-0.047447208315134]],[[0.010147100314498,-0.026165260002017,-0.014080294407904],[0.02965703047812,0.060519244521856,-0.069178462028503],[-0.058877486735582,0.047260951250792,0.011822585947812]],[[0.012890547513962,5.0419093895471e-05,-0.022829093039036],[-0.03591400757432,-0.047281175851822,-0.020356072112918],[-0.04308420047164,-0.046518370509148,0.020353727042675]],[[0.05876337736845,-0.0074867331422865,0.013545024208724],[-0.019895259290934,0.049607448279858,0.039456263184547],[-0.031995613127947,-0.035711139440536,0.0385817065835]],[[0.071980968117714,-0.10187932103872,0.011089550331235],[0.012560497969389,-0.093551851809025,0.04202863946557],[0.071344919502735,0.05540281906724,0.0832284912467]],[[-0.025537366047502,-0.0073565682396293,-0.017942612990737],[-0.03888826072216,0.0083087850362062,0.017500517889857],[-0.017787622287869,-0.02040433511138,-0.036187581717968]],[[0.045919392257929,-0.010199623182416,0.011245575733483],[0.042544655501842,0.052012406289577,0.029340386390686],[-0.023229040205479,0.07221832126379,-0.046178262680769]],[[0.076767466962337,0.070078819990158,0.034487433731556],[0.051543433219194,0.067483380436897,0.013647115789354],[-0.012794941663742,-0.011427332647145,0.03045267239213]],[[0.063573278486729,0.020916013047099,0.022011335939169],[0.073414392769337,-0.014942797832191,0.050285566598177],[-0.010900671593845,-0.053704217076302,-0.066105753183365]],[[-0.045281372964382,0.069669306278229,-0.0060143242590129],[-0.060097273439169,0.1029337644577,0.024140207096934],[0.0059867738746107,0.00045945402234793,0.054328564554453]],[[0.068740211427212,-0.02438884600997,0.004519562702626],[-0.014805121347308,0.027948701754212,-0.095767930150032],[-0.019665490835905,-0.018536224961281,-0.041241988539696]],[[0.059681225568056,0.047670926898718,0.0041697430424392],[0.023454485461116,0.061465661972761,-0.078647129237652],[0.066029742360115,-0.031051620841026,0.024356365203857]],[[-0.0046744821593165,0.00020851554290857,0.073608294129372],[-0.0056927255354822,-0.016483148559928,0.010449314489961],[-0.0033734131138772,-0.11932021379471,0.0011085299775004]],[[0.032907459884882,-0.040634784847498,0.060013480484486],[-0.023893451318145,-0.0037624610122293,0.053069185465574],[-0.00022436594008468,-0.060879424214363,0.0038691938389093]],[[0.022331219166517,-0.0084327021613717,-0.00056637491798028],[-0.074708424508572,0.024132618680596,0.029053278267384],[0.0022350077051669,0.014757620170712,0.07348857820034]]],[[[0.062163688242435,0.12886518239975,-0.050131294876337],[-0.029022125527263,0.00066744559444487,0.11489766836166],[-0.093251250684261,-0.0098314601927996,0.073736757040024]],[[0.017239440232515,0.047114830464125,0.018881818279624],[0.037909533828497,0.15522669255733,0.085487224161625],[-0.10175961256027,-0.17917431890965,0.0024350208695978]],[[0.0085993409156799,0.27532291412354,-0.19567000865936],[-0.070372380316257,-0.0095686484128237,0.031638465821743],[-0.010624784976244,-0.15169584751129,-0.12501008808613]],[[0.01754386536777,0.0089232549071312,-0.041855711489916],[-0.064087383449078,0.12697666883469,-0.052956197410822],[-0.17813275754452,0.016127116978168,0.13116984069347]],[[-0.010446668602526,-0.028311017900705,-0.055944539606571],[-0.012579489499331,0.050255872309208,-0.01040839497],[0.076058492064476,0.12006343901157,-0.068284206092358]],[[-0.026087628677487,0.053785771131516,-0.042614616453648],[-0.0028313605580479,0.0065050642006099,0.083516307175159],[0.10986037552357,-0.031571332365274,0.010340506210923]],[[-0.0061840433627367,0.045968476682901,0.062902189791203],[0.10753095895052,0.040006026625633,0.020183043554425],[-0.021075170487165,-0.066770955920219,-0.14983758330345]],[[0.046200294047594,0.076275803148746,0.13053153455257],[0.023187736049294,0.050712946802378,-0.0022521836217493],[-0.07246571034193,-0.043231498450041,-0.1031878888607]],[[0.012011575512588,-0.044643107801676,-0.022411709651351],[-0.13131374120712,-0.019276173785329,0.14473493397236],[0.10146186500788,0.16270895302296,-0.23131261765957]],[[-0.018470728769898,0.066533818840981,-0.030361881479621],[-0.00065993901807815,-0.01145881600678,-0.10645314306021],[0.095330819487572,-0.21087516844273,-0.020338147878647]],[[0.026420589536428,0.085180506110191,0.22465972602367],[0.075954414904118,0.19833318889141,0.085450753569603],[-0.027588818222284,-0.15250483155251,-0.22048716247082]],[[0.093029692769051,0.15363639593124,0.11930280923843],[-0.064780130982399,-0.21188545227051,-0.042072221636772],[0.074126213788986,-0.061093762516975,0.097249314188957]],[[0.00031868592486717,0.18262325227261,0.09626654535532],[0.056300118565559,0.030262228101492,0.19482910633087],[0.011516575701535,0.11127410084009,0.26641201972961]],[[0.025497613474727,-0.17072845995426,-0.10480912029743],[0.0020278566516936,-0.19424432516098,-0.1286546587944],[0.044803138822317,-0.11285030096769,-0.010254462249577]],[[0.10472429543734,0.059402901679277,0.028503246605396],[0.013044287450612,-0.067234516143799,-0.0019906717352569],[-0.11515371501446,-0.023070590570569,0.025466373190284]],[[-0.026181662455201,-0.073083356022835,0.15128418803215],[-0.083194740116596,0.0049964301288128,0.1742201000452],[0.039138950407505,0.0071902638301253,0.073521696031094]],[[-0.032465200871229,0.075582146644592,0.0028045251965523],[-0.08516788482666,-0.11844208836555,-0.10168888419867],[0.0084859980270267,0.1323232203722,-0.0044920006766915]],[[-0.02748361043632,-0.057235054671764,0.01435571257025],[0.021135095506907,-0.027905678376555,0.096592411398888],[0.05227717757225,0.014659877866507,0.0076260310597718]],[[0.26132753491402,0.024998789653182,-0.020417667925358],[-0.010189203545451,-0.0043257027864456,-0.052690356969833],[-0.031721841543913,-0.064605139195919,0.14975443482399]],[[0.065065830945969,-0.093327313661575,-0.11672502011061],[0.027685051783919,-0.098218098282814,-0.153588950634],[0.15820376574993,0.078496620059013,-0.064647331833839]],[[-0.0057406262494624,0.011431249789894,0.050462812185287],[-0.02782205119729,-0.028085306286812,0.0087502710521221],[0.20076106488705,0.013434310443699,0.047599032521248]],[[-0.0080264052376151,0.019737031310797,0.028837790712714],[0.056878156960011,0.04186138138175,-0.017964139580727],[0.013987394981086,0.10006861388683,-0.18145786225796]],[[0.092177636921406,-0.089527279138565,-0.17210386693478],[-0.11963655054569,-0.02807879075408,-0.025296417996287],[0.016916818916798,0.16318720579147,0.099199682474136]],[[0.23005425930023,-0.002090374706313,0.057440955191851],[0.20276941359043,0.19125068187714,0.10234819352627],[-0.12395039200783,0.095380388200283,0.080482997000217]],[[0.037748638540506,-0.040992826223373,-0.018455429002643],[-0.028284270316362,0.050194445997477,-0.023119792342186],[0.049552571028471,0.06927390396595,0.03481724858284]],[[-0.006723424885422,-0.11414798349142,-0.04336067289114],[0.1008935123682,0.029489237815142,0.10607492923737],[0.031387336552143,0.08370652794838,0.033625584095716]],[[-0.043758399784565,0.052109140902758,-0.091441921889782],[0.029734745621681,-0.01510246284306,-0.039266511797905],[0.12033977359533,0.036578472703695,-0.099848754703999]],[[-0.01022242102772,0.06871322542429,-0.17203944921494],[-0.034380082041025,0.011238224804401,-0.055689666420221],[0.034303538501263,-0.20479515194893,0.038343042135239]],[[-0.042691700160503,0.046733908355236,0.084330178797245],[0.012048333883286,0.0068765860050917,0.018329469487071],[-0.038890585303307,0.012091090902686,-0.024332460016012]],[[0.040985401719809,0.062315460294485,0.0071831322275102],[0.065123423933983,0.07625675201416,-0.011725033633411],[0.10015435516834,0.070759661495686,-0.00092820916324854]],[[0.084745347499847,-0.091218523681164,-0.066665448248386],[0.080320857465267,0.011298797093332,0.13033419847488],[-0.059872984886169,0.039592713117599,0.021303575485945]],[[-0.045886132866144,-0.075469680130482,0.03145020082593],[-0.090082861483097,0.0084748156368732,0.059874668717384],[0.034155450761318,0.03574201837182,0.055741380900145]],[[-0.09571735560894,-0.053038083016872,-0.014877204783261],[-0.11571235954762,-0.0020077817607671,0.050275914371014],[-0.013739131391048,0.06253719329834,0.091502279043198]],[[0.0076329219155014,-0.040358364582062,0.048832502216101],[0.059549022465944,0.094896800816059,0.084170013666153],[0.1386251449585,0.016272025182843,-0.015044132247567]],[[0.02619238384068,0.030651655048132,0.12470828741789],[-0.0071364678442478,-0.058894347399473,0.086110472679138],[-0.033744636923075,0.095973968505859,0.050577029585838]],[[0.09012883156538,0.073749862611294,-0.072604931890965],[0.0019349296344444,0.083475843071938,-0.082951553165913],[0.18562884628773,0.067965567111969,0.030767697840929]],[[-0.13724271953106,0.022678900510073,0.071675881743431],[0.028266275301576,-0.071596369147301,-0.031512927263975],[-0.094762422144413,0.072172246873379,-0.051049333065748]],[[0.017159936949611,-0.034692939370871,0.06358414888382],[-0.0050383098423481,0.1477038860321,0.083335101604462],[-0.043140068650246,0.071204140782356,0.026693819090724]],[[0.035613283514977,0.092965640127659,0.026833597570658],[0.10306909680367,0.065224125981331,0.056346576660872],[-0.27646023035049,-0.067205838859081,0.12213873118162]],[[-0.069635160267353,-0.054343096911907,0.043960504233837],[-0.047632116824389,0.010267063044012,-0.00013884043437429],[0.041015062481165,0.03886467218399,-0.044844172894955]],[[-0.076948948204517,0.11750736087561,0.011754857376218],[-0.0033348530996591,-0.0059401844628155,-0.05515893548727],[0.13866658508778,-0.085498884320259,-0.084591843187809]],[[0.040534038096666,-0.14204372465611,-0.11936739087105],[0.11184592545033,0.0025690023321658,-0.11186284571886],[-0.11122711747885,0.021123893558979,-0.028348580002785]],[[0.077693909406662,0.081717684864998,0.084333322942257],[0.04988294839859,0.029085334390402,0.057012636214495],[0.083742558956146,0.13631874322891,-0.11133212596178]],[[-0.027942420914769,0.040333416312933,0.032270468771458],[0.10039801895618,0.076639033854008,0.12195633351803],[0.14058618247509,0.18277576565742,0.058481071144342]],[[-0.14154388010502,-0.06730230897665,-0.058163315057755],[-0.19227087497711,-0.028968585655093,0.10221245139837],[0.071639984846115,-0.017886586487293,0.11674483865499]],[[-0.21964448690414,-0.014740855433047,0.050956565886736],[-0.12791596353054,0.033488154411316,0.022223820909858],[0.0035177390091121,0.062785349786282,0.21885976195335]],[[-0.047433812171221,0.06789606064558,-0.08434833586216],[0.026657197624445,0.12094724178314,-0.33722698688507],[0.218835324049,-0.013965680263937,-0.2636262178421]],[[-0.029954493045807,0.069286279380322,0.20985379815102],[0.14043065905571,0.12197498977184,-0.047961018979549],[-0.060320321470499,0.14561492204666,0.11106579750776]],[[0.035718992352486,0.028687322512269,-0.05281899869442],[-0.089861124753952,-0.031418431550264,-0.011751607060432],[-0.18487869203091,-0.03897812217474,0.052921626716852]],[[-0.024898048490286,0.10538227111101,0.017029022797942],[0.015635306015611,0.08813814073801,-0.062289737164974],[0.10514938086271,0.059035919606686,-0.020780757069588]],[[0.099867910146713,0.11799537390471,0.022211886942387],[-0.046410657465458,0.068213872611523,0.045789916068316],[-0.20366477966309,-0.092352747917175,0.097534291446209]],[[0.075969278812408,-0.022230833768845,0.12483485043049],[0.044951066374779,0.017200872302055,0.069566480815411],[-0.11291429400444,-0.013496900908649,0.012865913100541]],[[0.13986441493034,0.093742586672306,-0.0108703058213],[0.10188636183739,0.08032750338316,0.075896896421909],[0.092701204121113,0.16756026446819,0.12631942331791]],[[-0.00070124992635101,-0.020243559032679,-0.14032301306725],[0.15520413219929,-0.057068690657616,0.0058943815529346],[-0.024947378784418,-0.079850010573864,-0.11506386846304]],[[-0.098322443664074,-0.14305947721004,-0.056656364351511],[0.096710793673992,0.11867656558752,-0.03294513374567],[0.27178508043289,-0.020624905824661,0.054112147539854]],[[0.0044092987664044,0.050492264330387,0.019076470285654],[0.13179241120815,-0.02368620224297,0.072329066693783],[0.18206033110619,-0.16114012897015,0.10213243961334]],[[0.012331304140389,-0.047721583396196,-0.03710213303566],[-0.038999646902084,0.016308031976223,0.12814480066299],[0.075396001338959,-0.043370135128498,-0.095575124025345]],[[0.011218950152397,-0.0088622774928808,0.038604207336903],[0.072998978197575,0.028180565685034,-0.0040261750109494],[0.11809914559126,0.1824092566967,0.10477483272552]],[[0.033291082829237,0.086965017020702,0.036285687237978],[0.10038416832685,-0.048352815210819,-0.089486107230186],[0.015805717557669,-0.14144200086594,0.048416811972857]],[[0.14332517981529,0.03526121750474,0.010170699097216],[0.12429214268923,0.10038757324219,-0.023363653570414],[-0.031087355688214,0.049110691994429,-0.016801524907351]],[[0.059968672692776,-0.0064036096446216,0.025383066385984],[0.022894168272614,-0.0015212806174532,0.080557808279991],[-0.12722903490067,-0.095148757100105,0.01461950596422]],[[-0.086861670017242,-0.0011368258856237,0.081555522978306],[0.056207064539194,0.05226393789053,0.023414665833116],[0.072184696793556,-0.039872076362371,-0.087125957012177]],[[0.051284544169903,0.11137467622757,0.075553834438324],[-0.28830778598785,-0.03679321333766,0.052601967006922],[0.091433465480804,-0.010494052432477,0.024414338171482]],[[0.1186169013381,-0.12417128682137,-0.12330008298159],[-0.11868239939213,0.040080968290567,-0.00056561187375337],[0.011338961310685,-0.040582656860352,0.0090335626155138]],[[0.07693900167942,0.0012620468623936,-0.058055277913809],[0.019102646037936,0.013674536719918,0.014339506626129],[-0.023581508547068,-0.067921929061413,0.048328038305044]],[[0.22436444461346,-0.07666452229023,-0.26944035291672],[0.057160913944244,-0.10472817718983,0.077041640877724],[-0.026874361559749,0.076532833278179,0.16808091104031]],[[-0.060084264725447,0.14742268621922,0.10864645242691],[0.15648593008518,0.095784246921539,0.024974765256047],[-0.01902280561626,-0.1156889051199,0.019056780263782]],[[0.0382912568748,-0.17953787744045,-0.028043262660503],[0.19209390878677,-0.061078786849976,-0.079527512192726],[-0.050601683557034,0.21346388757229,0.0010242690332234]],[[0.02944946847856,0.11879394948483,-0.019321199506521],[0.058819461613894,0.15930926799774,-0.18282355368137],[0.028771713376045,0.1620704382658,-0.29097852110863]],[[0.01099228579551,0.18345281481743,0.036114603281021],[0.021288927644491,0.074394859373569,-0.0066041755490005],[-0.0075850682333112,-0.17680376768112,-0.029558945447206]],[[-0.051175434142351,0.030966782942414,0.024613501504064],[-0.069431409239769,-0.11410607397556,-0.11575699597597],[0.0074329422786832,0.034129317849874,-0.021579157561064]],[[-0.132672265172,0.12443881481886,0.17633011937141],[0.075420469045639,0.0038009202107787,-0.099874563515186],[0.057709712535143,-0.06865406036377,-0.059804543852806]],[[0.040401201695204,0.079993911087513,0.028948694467545],[-0.18046310544014,0.0034919357858598,0.10757809877396],[-0.26905289292336,0.034151453524828,0.0727549046278]],[[-0.045547053217888,-2.7147991204401e-05,0.0036460948176682],[-0.074715338647366,0.028563048690557,0.015119296498597],[-0.025868313387036,-0.13271816074848,-0.063816651701927]],[[-0.10192481428385,-0.17413291335106,0.042249690741301],[0.05709657818079,-0.0017813334707171,-0.011628245003521],[-0.00049186451360583,0.1799273788929,-0.031554773449898]],[[0.033729951828718,0.035090126097202,-0.050844378769398],[0.051950614899397,0.13858136534691,-0.26987910270691],[0.020770901814103,0.076861672103405,-0.23493249714375]],[[0.00765246944502,0.1588306427002,-0.033206507563591],[0.031873047351837,0.064682960510254,0.13886757194996],[-0.037067219614983,-0.13343551754951,0.082947336137295]],[[-0.0455252379179,-0.084922485053539,-0.10229267179966],[-0.030003843829036,-0.14443093538284,0.029579738155007],[0.091980561614037,-0.05105522274971,0.068687200546265]],[[0.1205178052187,0.1060795634985,0.10524664074183],[0.13067957758904,0.10387637466192,-0.072449810802937],[-0.13154564797878,-0.13719575107098,-0.063273504376411]],[[-0.2039583325386,0.018237320706248,0.16428804397583],[0.091081738471985,-0.1091567799449,-0.0074178744107485],[0.11429024487734,0.073554970324039,-0.16121132671833]],[[0.068822056055069,-0.034796264022589,-0.083904512226582],[0.013365909457207,-0.10276756435633,-0.012617258355021],[0.19966742396355,0.091820187866688,0.096311956644058]],[[0.0012837668182328,0.13404062390327,0.075180202722549],[-0.019763685762882,0.040337756276131,0.063024625182152],[-0.014998145401478,-0.11246364563704,0.035344149917364]],[[0.010455111972988,0.14810325205326,-0.012516357935965],[0.069845139980316,-0.072637178003788,0.0797039270401],[-0.0086002238094807,-0.16060681641102,0.041465453803539]],[[-0.077134378254414,-0.062824495136738,-0.032463349401951],[-0.0044581340625882,-0.096187219023705,-0.011346054263413],[-0.051175367087126,-0.16236920654774,0.04053595662117]],[[0.0054775178432465,0.14288249611855,0.10109341144562],[-0.0049218512140214,0.1555513292551,0.04648046195507],[0.047334428876638,0.039344731718302,0.0059464825317264]],[[-0.18213665485382,-0.19426797330379,-0.083246648311615],[-0.1126539260149,-0.16994033753872,-0.10481774061918],[0.14104615151882,0.15676392614841,0.11721409857273]],[[0.024198858067393,0.073792859911919,-0.016709960997105],[0.093699164688587,0.066976964473724,0.010863532312214],[0.088742591440678,0.1127066090703,-0.017063269391656]],[[0.041084703058004,-0.02662199921906,-0.024649566039443],[-0.0025007789954543,-0.09160503745079,-0.10032627731562],[-0.015190142206848,0.011273806914687,-0.089376516640186]],[[-0.13606849312782,-0.04344892129302,-0.029804592952132],[0.12070986628532,0.045740567147732,0.016001047566533],[0.18016701936722,-0.03194746747613,-0.11701985448599]],[[0.049020778387785,-0.19377072155476,-0.1542007625103],[-0.058906972408295,0.03873635455966,-0.078943319618702],[-0.041821431368589,0.065526276826859,0.0056483754888177]],[[0.063062213361263,-0.11429783701897,-0.20205807685852],[-0.07375418394804,0.11641599237919,0.091179884970188],[-0.045706581324339,-0.031119069084525,-0.058826811611652]],[[-0.02799111045897,-0.013073325157166,-0.15720202028751],[-0.19334311783314,-0.036113500595093,0.096902847290039],[0.14128664135933,-0.0581434071064,0.0037173461169004]],[[0.050788141787052,-0.041994951665401,0.16171969473362],[-0.048563495278358,0.0036257060710341,0.2266243994236],[-0.18400578200817,-0.077952615916729,0.13323853909969]],[[-0.19985121488571,-0.16117915511131,0.024394264444709],[0.11334221810102,0.19488874077797,0.046834923326969],[0.055098488926888,-0.094771936535835,-0.032778818160295]],[[0.19312812387943,-0.0090918028727174,-0.13980896770954],[0.050710257142782,-0.017056467011571,-0.069490671157837],[0.12706522643566,-0.060073133558035,-0.11086896061897]],[[-0.028096240013838,0.0049095610156655,0.25297731161118],[-0.051617536693811,0.036040961742401,0.074580289423466],[-0.13724502921104,0.085480757057667,-0.080387361347675]],[[0.033920723944902,0.11333180963993,0.087082520127296],[-0.10006905347109,0.14178289473057,0.031880415976048],[-0.18064294755459,-0.12730215489864,0.080886378884315]],[[0.16514348983765,0.049604024738073,-0.14582520723343],[-0.033997930586338,-0.012014069594443,0.080238610506058],[-0.044598165899515,-0.072827413678169,0.1075138002634]],[[-0.20985160768032,-0.035313244909048,-0.027224842458963],[0.00632139807567,0.043402846902609,-0.063131481409073],[0.065945543348789,0.013844921253622,-0.042833752930164]],[[0.016421681270003,0.033686336129904,0.015948748216033],[0.019081829115748,0.064763024449348,0.054421775043011],[-0.0086921593174338,0.087911292910576,0.15067906677723]],[[-0.029432212933898,-0.13844972848892,0.099011741578579],[-0.17666977643967,-0.14486794173717,0.098735503852367],[-0.195935562253,0.073385760188103,0.067780345678329]],[[-0.050840493291616,-0.015838531777263,-0.059874136000872],[-0.038443963974714,0.048375092446804,0.055178262293339],[0.0084119644016027,-0.0047087487764657,0.092998184263706]],[[0.03179894015193,0.15756686031818,-0.013661592267454],[-0.11010590195656,-0.049320891499519,-0.00081013649469241],[-0.13942708075047,-0.12350661307573,0.11995658278465]],[[-0.013394602574408,0.021090557798743,0.10962517559528],[0.040500156581402,-0.048363346606493,0.05953112617135],[-0.080733560025692,-0.14340478181839,0.079006232321262]],[[-0.068006440997124,-0.026899319142103,-0.09751283377409],[0.037999331951141,-0.080528929829597,0.041345350444317],[-0.080345489084721,0.10142443329096,0.054682675749063]],[[0.14232520759106,-0.03369077667594,-0.10489647090435],[-0.04376070946455,-0.20373837649822,-0.048589162528515],[-0.0086260735988617,-0.14481525123119,-0.046295404434204]],[[0.013133237138391,-0.0056445528753102,-0.099109016358852],[-0.1064261496067,-0.045655131340027,-0.034857749938965],[0.0024272319860756,0.21270968019962,0.048242755234241]],[[0.065719082951546,0.039379976689816,0.0063957679085433],[-0.023958599194884,0.0066635562106967,-0.091067016124725],[0.028977477923036,-0.11892329901457,-0.074326939880848]],[[-0.0059313913807273,-0.2730615735054,-0.0003720905224327],[0.036140058189631,0.029383108019829,0.11011371016502],[0.057303633540869,-0.032087724655867,-0.05454283580184]],[[-0.092369571328163,-0.063799880445004,-0.057350408285856],[-0.016780056059361,-0.01039332151413,0.12905333936214],[-0.036478087306023,0.19210444390774,0.18835240602493]],[[0.098840825259686,-0.0030150101520121,-0.0087187383323908],[0.030610911548138,0.018490804359317,-0.12685805559158],[-0.20408134162426,0.083857379853725,-0.073491804301739]],[[0.0078766169026494,-0.023065265268087,0.0052944631315768],[-0.043510027229786,-0.0080999527126551,0.054178811609745],[0.10171753913164,0.062333554029465,0.0025267170276493]],[[-0.0075986180454493,0.095962442457676,0.052502732723951],[-0.022125639021397,-0.028690123930573,-0.091149501502514],[0.17443585395813,0.013416394591331,-0.11659424751997]],[[0.097518354654312,-0.045791249722242,-0.11684656888247],[0.086170256137848,0.090986587107182,-0.020811723545194],[0.022594770416617,0.056641571223736,-0.046562511473894]],[[0.13446526229382,0.0060717510059476,-0.053913675248623],[-0.040182217955589,-0.027132846415043,-0.10865466296673],[-0.10606870055199,0.041824717074633,-0.12067369371653]],[[0.10504493862391,0.15413784980774,0.062285866588354],[-0.023096941411495,-0.12316133081913,-0.10781141370535],[0.011067041195929,0.0048266467638314,-0.10196126252413]],[[0.019154071807861,-0.051462180912495,-0.041403993964195],[0.046990305185318,0.021548779681325,0.016560051590204],[-0.020320290699601,-0.022762326523662,0.10942808538675]],[[-0.031522694975138,0.092988282442093,0.031091641634703],[0.0060715931467712,0.025994848459959,0.010133522562683],[0.087999694049358,-0.039902731776237,-0.20940911769867]],[[-0.090639904141426,0.04364700615406,0.03829800337553],[-0.028444876894355,0.036483317613602,0.10813692957163],[0.12627877295017,0.0015880768187344,0.014747534878552]],[[-0.22739136219025,-0.085051946341991,0.041931971907616],[-0.20711369812489,-0.13195334374905,0.12720590829849],[0.0029019245412201,0.20883317291737,0.10998667031527]],[[0.044695638120174,0.082922004163265,0.086207315325737],[-0.0030623869970441,-0.08820927888155,-0.085915565490723],[0.076339028775692,0.12446565181017,0.14526428282261]],[[-0.025699475780129,0.041175778955221,-0.19507247209549],[0.063446804881096,-0.082759566605091,-0.13318395614624],[0.16714245080948,-0.21478690207005,-0.18928271532059]],[[-0.023994190618396,0.0069830673746765,0.075728110969067],[-0.034439869225025,-0.043324649333954,0.14843639731407],[-0.062876731157303,-0.002647731686011,-0.03864674270153]],[[0.040639080107212,0.051862198859453,-0.10016234219074],[0.10612360388041,0.029179692268372,0.081709742546082],[-0.0030304840765893,0.06025093793869,0.022566286846995]],[[0.13653466105461,-0.12301745265722,-0.055972408503294],[-0.13439364731312,-0.092672556638718,0.10364574939013],[-0.17882235348225,0.0058733830228448,0.016669422388077]],[[0.077283382415771,-0.012350792996585,-0.048291232436895],[-0.0053329449146986,-0.043521672487259,0.058424264192581],[0.0073508503846824,-0.14261883497238,-0.077026672661304]],[[-0.036833621561527,0.07940536737442,-0.0043337107636034],[-0.16807289421558,-0.02222022973001,0.052309226244688],[-0.11927784979343,0.20195990800858,-0.0039620334282517]],[[0.04398861899972,0.12370526790619,0.12249054759741],[-0.087477378547192,-0.030583199113607,0.019285013899207],[0.09985239058733,-0.014163457788527,0.016441421583295]]],[[[0.053040612488985,0.067820511758327,0.095038957893848],[0.057290285825729,0.086929000914097,0.11674739420414],[-0.056094743311405,-0.030836187303066,0.0084357848390937]],[[0.087211653590202,0.11456259340048,-0.10356658697128],[-0.076963432133198,-0.18019948899746,0.0069204596802592],[-0.090787187218666,-0.078932844102383,-0.016388600692153]],[[-0.061448156833649,0.1567113250494,-0.20195931196213],[-0.045785471796989,-0.12761406600475,-0.074303969740868],[0.019341005012393,-0.068780519068241,0.014287102967501]],[[-0.13540276885033,-0.11946981400251,-0.050174418836832],[-0.11295682191849,-0.071387030184269,-0.015935536473989],[-0.265001475811,-0.15293049812317,0.067780144512653]],[[-0.0011423011310399,0.010872666724026,0.035224631428719],[-0.019436199218035,0.080922581255436,0.053526576608419],[-0.078841023147106,-0.099092721939087,-0.070993304252625]],[[-0.11497683823109,0.04771438986063,0.10201119631529],[-0.036307327449322,0.032875034958124,-0.022300591692328],[0.059089194983244,0.090788833796978,0.074922300875187]],[[-0.053118877112865,-0.074864864349365,-0.065302960574627],[-0.049802727997303,-0.021659402176738,-0.035531427711248],[0.10034509003162,-0.00063810060964897,0.048585176467896]],[[0.036602459847927,0.01737018674612,-0.05201417952776],[-0.077685222029686,-0.051934011280537,-0.012203810736537],[-0.010387225076556,0.021317476406693,-0.051484942436218]],[[0.035986185073853,-0.11951964348555,0.074437811970711],[-0.10837399214506,0.015312233939767,-0.039601631462574],[-0.13010857999325,0.033528052270412,0.10394427925348]],[[-0.10255531966686,-0.031521450728178,-0.040339834988117],[-0.11216843873262,0.032586790621281,-0.051304705440998],[0.054136607795954,0.13470774888992,0.059894122183323]],[[-0.08407748490572,0.029404424130917,-3.4172222513007e-05],[-0.029182519763708,0.057550344616175,0.0079337041825056],[0.10072653740644,0.12079944461584,0.03311525657773]],[[-0.10724115371704,-0.1121656820178,-0.027299929410219],[-0.021622015163302,-0.12812124192715,0.0023326915688813],[0.060384899377823,0.011149222962558,-0.0072046644054353]],[[0.066286616027355,0.066014029085636,-0.011521412990987],[0.098802715539932,0.016283258795738,-0.0093187056481838],[-0.092351876199245,0.087636396288872,-0.075100816786289]],[[0.068723686039448,0.015066721476614,-0.10827497392893],[-0.027532834559679,0.0029199493583292,-0.10244604200125],[0.053757783025503,-0.00052772706840187,0.011681940406561]],[[-0.071588680148125,0.0052526765502989,0.016585249453783],[0.035039566457272,0.014770749956369,-0.092175148427486],[-0.031043231487274,-0.1004948541522,0.00091615808196366]],[[-0.021234229207039,0.066054813563824,0.070344962179661],[-0.089378498494625,0.0048593664541841,-0.00063444790430367],[-0.022161282598972,0.011162174865603,-0.13554163277149]],[[0.016250850632787,-0.079619012773037,-0.082846701145172],[0.051662690937519,0.13042572140694,0.090905904769897],[-0.0123175913468,0.061247777193785,-0.04822077229619]],[[0.041462156921625,0.040748838335276,0.00067829212639481],[-0.078916400671005,0.072205536067486,0.068298421800137],[-0.022907128557563,0.099994227290154,0.10948187112808]],[[-0.01694418862462,-0.036926466971636,-0.050661891698837],[-0.018331192433834,-0.035415060818195,-0.029985962435603],[0.0017528844764456,-0.12066157907248,-0.067768409848213]],[[0.011382162570953,-0.14191627502441,-0.1772568076849],[-0.084572590887547,-0.22683157026768,-0.08860145509243],[0.062235541641712,0.02830732613802,0.086146555840969]],[[0.0016556715127081,-0.072156608104706,-0.10813375562429],[0.041822399944067,-0.081208348274231,-0.034255985170603],[-0.10544998943806,-0.10439792275429,-0.015510259196162]],[[-0.010148633271456,-0.23196351528168,-0.10047183185816],[-0.098921671509743,-0.053639080375433,0.04915527254343],[-0.058832969516516,0.025518774986267,0.025428155437112]],[[-0.088224522769451,0.070344753563404,0.097019679844379],[-0.0035447841510177,0.017659785225987,0.082817457616329],[-0.017796734347939,-0.0033955236431211,-0.051458787173033]],[[-0.059454403817654,-0.10051649063826,-0.043370001018047],[-0.03682654350996,-0.19957302510738,0.013131573796272],[-0.2007582783699,-0.15900555253029,0.022741239517927]],[[-0.03182752802968,-0.063935205340385,0.050658471882343],[-0.079185299575329,0.004368016961962,0.061523016542196],[-0.12924627959728,0.032269690185785,0.088147215545177]],[[0.12857231497765,-0.00654670689255,0.019451411440969],[0.080247402191162,-0.047596704214811,0.051962982863188],[-0.043116949498653,0.05251881107688,0.037165425717831]],[[0.13268537819386,0.046833254396915,-0.033479604870081],[0.04441723972559,0.039331264793873,-0.037805482745171],[0.076802305877209,0.039208181202412,0.013732705265284]],[[-0.011927209794521,0.089485041797161,-0.1105345338583],[-0.13926756381989,-0.050037924200296,0.095419019460678],[-0.1218683719635,-0.12064861506224,0.056492391973734]],[[0.03919743001461,-0.1860957890749,0.017221042886376],[-0.01603682897985,-0.17275886237621,-0.006286452524364],[-0.068410642445087,0.0058857435360551,0.17707917094231]],[[0.049586661159992,0.043387893587351,-0.060074180364609],[0.12473721802235,-0.10477621853352,-0.027838341891766],[0.00053066562395543,-0.095746770501137,-0.24275998771191]],[[0.073004148900509,0.10012640804052,0.070567049086094],[-0.15143303573132,0.013769581913948,0.078116156160831],[-0.037518281489611,-0.1148731932044,-0.018730187788606]],[[-0.090610399842262,-0.05175681039691,0.007107499986887],[-0.08988406509161,-0.072396717965603,0.088465437293053],[0.0091712269932032,-0.0088152140378952,0.082990132272243]],[[0.069512099027634,-0.1406025737524,0.12729646265507],[0.035437386482954,0.035546150058508,0.032698538154364],[0.048264998942614,0.076805584132671,0.0053807073272765]],[[-0.036201748996973,-0.072803512215614,-0.09637026488781],[-0.025374891236424,0.14444057643414,0.0035804056096822],[0.013625944964588,0.24795477092266,0.090343050658703]],[[0.009143965318799,0.040533874183893,-0.096428491175175],[0.038821280002594,-0.0037950754631311,0.058574363589287],[-0.0061894529499114,-0.04533463716507,0.019029842689633]],[[0.054782222956419,0.0093797501176596,-0.012568242847919],[0.11842541396618,-0.010164435021579,-0.015644924715161],[0.080236829817295,0.012940146960318,-0.0056652743369341]],[[0.0099572297185659,0.031955759972334,0.080608740448952],[-0.047184534370899,0.0049268687143922,0.022418219596148],[0.11314854770899,0.0030929585918784,-0.051896180957556]],[[-0.001531706075184,-0.059729296714067,0.013564890250564],[-0.0016997647471726,-0.019740793853998,-0.1989204287529],[0.022623693570495,0.042471930384636,-0.13382537662983]],[[0.068091601133347,0.031626213341951,0.15984630584717],[-0.17137569189072,-0.037942253053188,0.06870935857296],[-0.031903959810734,-0.084615267813206,0.062173746526241]],[[-0.070921748876572,0.039131373167038,0.10754060000181],[-0.039937723428011,-0.0079875225201249,0.085477873682976],[-0.091043144464493,-0.052037864923477,0.069198101758957]],[[-0.02914702706039,-0.081797517836094,-0.086166501045227],[0.064138531684875,-0.069835744798183,0.015091827139258],[0.13315457105637,0.02093318477273,-0.04842709377408]],[[-0.12716403603554,0.027948744595051,-0.014447769150138],[-0.031222473829985,-0.077461421489716,-0.001606157864444],[0.037486758083105,-0.052386961877346,0.051081050187349]],[[-0.0041495249606669,-0.021304987370968,0.055035315454006],[-0.014167916029692,-0.06935728341341,-0.022228017449379],[-0.03260537609458,0.021255619823933,-0.043307900428772]],[[-0.013644781894982,-0.016989033669233,0.0046698381192982],[-0.014555205591023,-0.050809729844332,-0.028510827571154],[0.0097973477095366,0.081732973456383,0.0019126439001411]],[[-0.05247375741601,-0.076304204761982,-0.096693687140942],[-0.15937307476997,-0.10277390480042,-0.089912571012974],[0.090374484658241,0.021019531413913,-0.015244512818754]],[[-0.16539859771729,-0.10044483840466,-0.028826462104917],[-0.051596757024527,-0.01528569124639,-0.00048991851508617],[-0.092456415295601,0.066597811877728,0.022602228447795]],[[0.18247181177139,-0.034675940871239,-0.013081930577755],[-0.071592770516872,0.066977426409721,0.12811097502708],[0.04024538770318,0.102429702878,0.068594187498093]],[[-0.014717321842909,-0.056076858192682,-0.0080692768096924],[-0.025406362488866,-0.0060723749920726,-0.020802490413189],[0.010162768885493,-0.054321017116308,0.046857971698046]],[[0.063352599740028,-0.032489724457264,0.043741319328547],[0.089447319507599,-0.071848571300507,-0.067544348537922],[-0.037334978580475,-0.013941403478384,-0.017519257962704]],[[-0.0069272611290216,-0.040355615317822,0.020668379962444],[-0.092429988086224,0.048712059855461,0.02701804228127],[-0.04609302803874,0.034012012183666,0.080361723899841]],[[-0.017716746777296,-0.017433345317841,-0.099842548370361],[0.00013989297440276,-0.042136482894421,-0.10273808240891],[-0.036595862358809,-0.0048286546953022,0.050449904054403]],[[0.0058511705137789,0.012241770513356,-0.070121459662914],[0.038755960762501,-0.059947859495878,-0.13420723378658],[0.043638002127409,-0.19496263563633,-0.20097608864307]],[[-0.017666764557362,-0.069824315607548,-0.076013423502445],[0.012646570801735,-0.055670160800219,-0.040958359837532],[0.10921465605497,0.030417608097196,0.0073980637826025]],[[0.00046152566210367,-0.095850549638271,-0.1806678622961],[0.15406019985676,-0.064665108919144,-0.092612996697426],[-0.013336126692593,-0.1976263821125,-0.12519565224648]],[[-0.027417132630944,0.10054748505354,0.10192661732435],[0.095618493855,0.051144026219845,0.11784264445305],[-0.023199075832963,0.036071438342333,0.086531691253185]],[[0.15299719572067,0.072646036744118,-0.050706069916487],[0.058392465114594,0.066420249640942,-0.1241986900568],[0.02828424423933,-0.0061299866065383,0.028954638168216]],[[-0.047236952930689,-0.012523286044598,0.057633779942989],[0.0010298527777195,-0.1822744756937,-0.14348430931568],[-0.0058698537759483,-0.1539693325758,-0.12487927824259]],[[0.028940403833985,0.03072676807642,0.11666478216648],[0.068091653287411,0.097700700163841,0.037324707955122],[0.098912537097931,0.060582280158997,-0.051612176001072]],[[0.044563505798578,-0.020581379532814,-0.098820857703686],[0.0094715878367424,-0.01519912108779,-0.076119370758533],[0.053929090499878,-0.023668633773923,-0.056837022304535]],[[-0.061124548316002,-0.15229691565037,-0.02291951701045],[-0.078492112457752,0.020983027294278,0.079630196094513],[-0.029690753668547,0.02489772066474,0.056561008095741]],[[-0.033983465284109,-0.066868841648102,0.030779296532273],[-0.0055248714052141,-0.16256552934647,-0.067531481385231],[-0.14802718162537,-0.22001783549786,-0.054198022931814]],[[0.039360761642456,0.014760309830308,0.051584906876087],[-0.041865415871143,-0.064990699291229,-0.019815566018224],[-0.054223828017712,0.0008999687852338,0.039267111569643]],[[0.073064595460892,-0.037367526441813,-0.055711675435305],[-0.0075050545856357,-0.0071404450573027,0.022871762514114],[0.16592665016651,0.11697970330715,0.008012218400836]],[[0.074691414833069,-0.13606199622154,0.022759579122066],[0.028527896851301,-0.023826560005546,0.010919461026788],[0.036547165364027,-0.023340120911598,0.04106343537569]],[[-0.077589362859726,-0.058806274086237,-0.081776440143585],[-0.03785077854991,-0.070210434496403,-0.055754538625479],[-0.060237038880587,-0.0017202553572133,0.0037392650265247]],[[0.10257454961538,0.16532891988754,-0.067009255290031],[-0.093078330159187,0.069502681493759,0.057421166449785],[-0.0057104099541903,0.090203560888767,-0.070090420544147]],[[0.044258698821068,-0.035067450255156,0.044434305280447],[-0.010262192226946,0.0316889770329,0.083771452307701],[-0.049624506384134,0.030737491324544,-0.046462707221508]],[[0.099112518131733,0.093443632125854,0.084108673036098],[0.0353147611022,-0.14111158251762,-0.089046515524387],[0.035490658134222,0.022161897271872,-0.20347014069557]],[[-0.036017302423716,0.0081435358151793,0.1267137080431],[0.013782129622996,0.028406044468284,0.095668114721775],[0.013948732987046,-0.0604093298316,-0.065448574721813]],[[0.011929538100958,-0.07469230145216,0.071806512773037],[-0.104611761868,-0.080891408026218,0.045569282025099],[-0.062810510396957,-0.096873350441456,0.069207280874252]],[[0.054469145834446,-0.021926257759333,0.029067004099488],[-0.074879616498947,-0.0061503201723099,-0.17124737799168],[-0.0022610733285546,-0.090011067688465,-0.026189317926764]],[[0.050207357853651,-0.076155878603458,0.034677680581808],[-0.047954201698303,0.036362629383802,0.009440484456718],[-0.0038731421809644,-0.076107919216156,0.07712335139513]],[[-0.087561644613743,-0.0083972066640854,0.049250364303589],[0.031058266758919,0.0017215921543539,-0.07173053920269],[0.053285241127014,0.052572440356016,-0.048711348325014]],[[0.05032367259264,0.0081956470385194,-0.078174605965614],[0.10269882529974,0.0064258091151714,-0.083502240478992],[0.20101656019688,0.014263113029301,-0.11184645444155]],[[0.097992815077305,-0.00080735189840198,-0.158351957798],[0.076281696557999,-0.18184623122215,-0.047658700495958],[0.056021895259619,-0.066952832043171,-0.041809026151896]],[[0.030159270390868,0.036290548741817,-0.062469601631165],[0.086903594434261,0.0059691639617085,-0.0090328259393573],[0.086292766034603,-0.01458646915853,-0.053918413817883]],[[0.02076617628336,-0.084353357553482,-0.078126423060894],[0.016705777496099,0.0051087969914079,-0.01455061417073],[0.067221134901047,0.042741261422634,0.013115130364895]],[[-0.013615492731333,-0.12877258658409,-0.020991204306483],[-0.1127791851759,-0.052397780120373,-0.054545275866985],[-0.079993598163128,-0.071437776088715,-0.098627462983131]],[[0.15640398859978,0.02472341991961,0.040458735078573],[-0.030678067356348,0.0027994075790048,0.039324015378952],[-0.13045808672905,-0.013917909935117,0.044721662998199]],[[-0.074452497065067,-0.055830333381891,-0.054194021970034],[0.064993821084499,-0.08942075073719,0.01447774656117],[0.0095504997298121,-0.13626547157764,-0.1154630035162]],[[0.023301128298044,-0.024365272372961,0.0079838829115033],[0.038538187742233,0.068599082529545,0.02836387604475],[-0.064667478203773,0.004755393601954,0.079434081912041]],[[-0.0068894270807505,-0.16361775994301,-0.00056225527077913],[0.073015496134758,-0.0397654697299,-0.10370314866304],[0.046508751809597,0.13476306200027,-0.046441216021776]],[[0.10950451344252,0.043496791273355,-0.095104411244392],[-0.084236286580563,0.00029287091456354,-0.018857045099139],[0.042888563126326,-0.0078164516016841,-0.03352639451623]],[[-0.010948780924082,0.0074289054609835,-0.035039961338043],[0.00065817590802908,0.026878653094172,-0.024522535502911],[-0.014131146483123,-0.097689650952816,-0.083105213940144]],[[0.10712806135416,0.073736600577831,0.089753217995167],[0.014510058797896,0.04138482734561,0.16987845301628],[-0.0039073009975255,0.027817964553833,-0.085754156112671]],[[0.04911832883954,-0.057352971285582,-0.14174331724644],[-0.026393672451377,-0.012962159700692,-0.030731402337551],[0.093910455703735,-0.037093482911587,0.065488517284393]],[[0.095345661044121,0.061535649001598,0.0062829945236444],[0.016272231936455,-0.029119910672307,-0.11356970667839],[0.014020926319063,0.025336617603898,-0.041263081133366]],[[-0.0067508304491639,-0.013435263186693,0.067666508257389],[0.033451084047556,0.018714128062129,-0.027362290769815],[0.068091906607151,-0.028513992205262,-0.076518543064594]],[[-0.034123536199331,0.0095437215641141,0.01304043456912],[-0.064862549304962,-0.043960232287645,0.014766840264201],[0.13031838834286,0.061467610299587,0.12339761853218]],[[0.15294754505157,0.1362869143486,0.08352218568325],[-0.11543621122837,0.0012531551765278,-0.012526346370578],[-0.021713301539421,0.015167488716543,-0.069091729819775]],[[0.010481150820851,0.083921998739243,0.0067967930808663],[0.094094254076481,0.022440122440457,0.11878458410501],[0.025157067924738,-0.083259709179401,-0.12033586204052]],[[-0.063664563000202,0.019151668995619,0.0096395760774612],[0.079513020813465,0.07130566239357,0.0094228098168969],[0.064971461892128,-0.075560294091702,-0.075979620218277]],[[-0.019619587808847,0.11588510125875,-0.20860946178436],[-0.011575735174119,-0.11096372455359,-0.11071495711803],[-0.062290847301483,0.0089271878823638,-0.14420127868652]],[[0.065983138978481,0.061027683317661,0.064252763986588],[-0.020313866436481,-0.081242904067039,0.027206307277083],[-0.019808914512396,-0.0064756581559777,-0.048086117953062]],[[0.026375018060207,0.028108092024922,0.0078891618177295],[0.12587293982506,-0.050697386264801,0.05873791128397],[0.044010858982801,-0.15421305596828,-0.10391762107611]],[[0.079056262969971,0.048500806093216,-0.050172097980976],[0.022435890510678,0.00052245851838961,0.01506285648793],[-0.034911751747131,0.03017814643681,0.1080609112978]],[[0.061570588499308,0.030420759692788,0.065153032541275],[0.045672845095396,0.0025647659786046,-0.088041722774506],[-0.00069038406945765,-0.084782131016254,-0.047696974128485]],[[-0.048098191618919,0.074538931250572,0.074423305690289],[0.0020284571219236,0.10912039130926,0.029696725308895],[0.073843508958817,0.084589138627052,0.073085322976112]],[[-0.14442820847034,-0.056476555764675,-0.074709370732307],[0.071644976735115,0.030479073524475,0.030615108087659],[0.015353822149336,0.023581918329,0.056872244924307]],[[0.059503793716431,0.022160613909364,0.098130136728287],[-0.013088350184262,0.028633212670684,0.13323560357094],[0.020402925089002,0.087884090840816,0.041064519435167]],[[-0.037830017507076,0.064751118421555,0.11732985824347],[-0.079664453864098,0.014203367754817,0.06869288533926],[0.0039172670803964,0.054425913840532,0.05439642816782]],[[-0.15253303945065,0.046991694718599,-0.054886594414711],[-0.047933362424374,-0.054254643619061,0.053531512618065],[0.11910650879145,-0.024450831115246,0.020028650760651]],[[0.0057015153579414,0.095522627234459,-0.0093702478334308],[-0.029583059251308,-0.033133484423161,0.041466906666756],[0.061899647116661,-0.0058396086096764,-0.037678629159927]],[[-0.11053522676229,-0.03532711789012,0.00543915014714],[0.032017309218645,0.10788493603468,0.052603513002396],[-0.003396455431357,0.051129873842001,0.14929912984371]],[[-0.010788421146572,0.029980756342411,-0.041108261793852],[0.037162855267525,0.0080816159024835,-0.015687134116888],[0.096942402422428,0.049933608621359,-0.036114685237408]],[[0.026390813291073,-0.21415683627129,-0.12872730195522],[0.078514628112316,-0.044780369848013,-0.033568650484085],[0.071673572063446,0.056716449558735,-0.011750143952668]],[[-0.024352967739105,-0.0098576303571463,0.034221846610308],[-0.038491196930408,0.10849703103304,0.013010355643928],[-0.080240704119205,-0.084600411355495,-0.055175233632326]],[[-0.0034272009506822,0.055239658802748,0.043750748038292],[-0.0095742186531425,-0.044489208608866,-0.036371968686581],[-0.023455729708076,-0.13182769715786,-0.14246651530266]],[[-0.13851974904537,0.024340653792024,-0.032588440924883],[-0.033959560096264,-0.014296107925475,0.043850656598806],[-0.086669944226742,-0.024177057668567,-0.043268039822578]],[[0.043682318180799,-0.027792209759355,-0.0031155161559582],[-0.050892867147923,0.074790894985199,-0.028455270454288],[0.029709303751588,0.011081885546446,-0.040106907486916]],[[0.082415029406548,-0.033739306032658,-0.078325554728508],[-0.070599429309368,-0.046865917742252,0.049660127609968],[-0.03846525773406,-0.027524791657925,0.017316590994596]],[[-0.035238731652498,-0.017651550471783,-0.053465772420168],[0.016456937417388,-0.0015446492470801,-0.18375886976719],[-0.055834986269474,-0.05215547606349,-0.093017645180225]],[[0.0021330162417144,-0.079924732446671,-0.080937847495079],[0.078999496996403,0.022328745573759,0.0016505514504388],[0.13367989659309,0.083789870142937,0.013855331577361]],[[0.07366818189621,0.02878207154572,-0.059032894670963],[-0.048901591449976,0.077848993241787,0.073338694870472],[0.02197197265923,0.084158338606358,0.10775561630726]],[[0.10844642668962,0.066349349915981,0.14586441218853],[0.037499453872442,0.017833093181252,0.093249164521694],[-0.035632852464914,0.094169139862061,-0.0072495774365962]],[[0.10643598437309,0.055875562131405,-0.060986440628767],[-0.049509458243847,0.068601615726948,-0.043578676879406],[0.034079261124134,0.10449090600014,-0.014226249419153]],[[0.016870681196451,-0.014084234833717,0.070666238665581],[0.053229156881571,-0.065829865634441,0.057395279407501],[-0.0040099755860865,0.042483888566494,0.067231610417366]],[[0.043224189430475,-0.032230913639069,-0.017408683896065],[0.066076643764973,-0.12238152325153,-0.15280522406101],[0.13849632441998,0.089965090155602,-0.034736666828394]],[[-0.088485270738602,-0.0076345750130713,0.0946409329772],[-0.043194338679314,-0.10999821871519,-0.0067558558657765],[-0.11199966073036,-0.09012833237648,0.046349789947271]],[[0.018567094579339,-0.068662188947201,-0.043110601603985],[0.06797207146883,0.0081902872771025,0.092618227005005],[0.11973144859076,-0.034724671393633,-0.12704190611839]],[[-0.10395155102015,0.087720073759556,0.036635857075453],[0.12772838771343,0.073812484741211,0.00040578743210062],[0.10677778720856,0.10635966062546,0.16405749320984]],[[0.033372137695551,-0.070087879896164,-0.07812212407589],[0.075719751417637,0.010550650767982,-0.07400157302618],[-0.04438329860568,-0.17134734988213,-0.013954085297883]],[[-0.028557876124978,-0.08740234375,-0.037856787443161],[-0.12725473940372,-0.039042998105288,-0.188231959939],[-0.043518200516701,-0.03660836443305,-0.05536700040102]],[[0.027373239398003,0.061097871512175,0.043858785182238],[0.060725335031748,0.059033993631601,0.030066529288888],[-0.13315571844578,0.024905057623982,0.10649909824133]],[[0.0217623449862,-0.079487651586533,0.00056648475583643],[0.12723441421986,-0.068293057382107,0.050640016794205],[0.14120088517666,0.041755739599466,-0.068315207958221]],[[0.026095731183887,0.061154551804066,-0.036766700446606],[0.050313200801611,-0.065858997404575,-0.002837561769411],[-0.040265530347824,-0.14398898184299,-0.025841768831015]],[[0.03819827735424,-0.001629447331652,0.070586256682873],[-0.033371672034264,0.076112620532513,-0.10725291073322],[-0.077005088329315,0.01437075715512,-0.047812081873417]],[[-0.042537603527308,0.12397858500481,0.14569413661957],[-0.073328502476215,-0.0036359678488225,0.1331200003624],[-0.052335876971483,0.067862518131733,0.0039892103523016]]],[[[-0.040468864142895,0.057115230709314,0.093621000647545],[0.012748115696013,0.064351193606853,-0.062807194888592],[-0.042815156280994,0.09003047645092,0.013557949103415]],[[-0.019013345241547,-0.049881022423506,0.0037080596666783],[0.01158348005265,0.022172043099999,-0.07256294041872],[-0.038535237312317,0.092146195471287,0.025438744574785]],[[-0.026592006906867,0.0089654140174389,-0.088163539767265],[0.036111276596785,0.063551500439644,-0.028830928727984],[-0.068523213267326,0.018792442977428,-0.0017951788613573]],[[-0.015703294426203,-0.039242420345545,-0.048415120691061],[0.079967275261879,-0.012471741996706,-0.14297826588154],[0.0095274904742837,0.19159771502018,0.078544825315475]],[[-0.016344353556633,0.012779320590198,0.041655816137791],[0.066080264747143,-0.076439373195171,0.019033376127481],[0.045387417078018,0.022824315354228,-0.073397696018219]],[[0.045727107673883,-0.076284378767014,0.06810512393713],[-0.033630859106779,-0.081740826368332,0.05042565241456],[-0.045752510428429,-0.043264515697956,0.043205391615629]],[[-0.023627765476704,-0.053728856146336,0.0044136820361018],[-0.077052243053913,0.038205094635487,0.0090687284246087],[-0.058752246201038,0.08676940202713,-0.011421645060182]],[[0.071255519986153,0.0042637512087822,-0.036541055887938],[0.046719510108232,0.054588459432125,-0.12908133864403],[-0.050849992781878,0.043509177863598,-0.032971519976854]],[[-0.035527508705854,0.048193469643593,-0.02476829662919],[0.095711454749107,-0.075526192784309,-0.049566227942705],[0.041549906134605,0.022674653679132,0.085388667881489]],[[-0.10408077389002,-0.0959557518363,-0.10844428092241],[-0.054004661738873,-0.03212558850646,-0.01496721804142],[0.01352589763701,-0.0025562609080225,0.059435028582811]],[[0.13619443774223,0.013516660779715,0.0075461445376277],[0.078132651746273,0.025329932570457,0.0095173185691237],[0.028757194057107,-0.0064228544943035,0.062466461211443]],[[-0.067245833575726,0.0081172920763493,0.16180488467216],[-0.019126230850816,-0.03031331114471,-0.061557315289974],[-0.026682961732149,-0.070141844451427,-0.0087921610102057]],[[-0.051067307591438,-0.01904584094882,-0.02955025061965],[-0.0064675384201109,-0.05381378158927,-0.11084678024054],[-0.031792838126421,-0.0009345420403406,-0.072693057358265]],[[0.020451316609979,-0.076938591897488,-0.014801093377173],[0.030133981257677,-0.00099257542751729,0.084166519343853],[-0.020682163536549,0.032562863081694,0.069601267576218]],[[-0.045310258865356,0.036678563803434,0.045858133584261],[-0.041136834770441,0.067385420203209,-0.031331818550825],[0.12773828208447,0.015900699421763,0.028603320941329]],[[-0.033666640520096,-0.044474516063929,0.077699147164822],[-0.10882885754108,-0.063603430986404,0.074427582323551],[-0.077416121959686,-0.056544601917267,0.12472458183765]],[[-0.033960767090321,0.029370190575719,0.00044334313133731],[0.14390946924686,0.12054029107094,-0.050123386085033],[0.0906947478652,0.1916341483593,0.038113299757242]],[[0.030555130913854,0.037640947848558,0.051228646188974],[0.068049006164074,-0.010289840400219,-0.060728572309017],[-0.056190479546785,0.020470585674047,-0.083809360861778]],[[0.054815508425236,0.055923063308001,0.072514042258263],[-0.00036787957651541,-0.048991877585649,0.059532351791859],[-0.011557585559785,-0.0767912119627,0.0098219262436032]],[[0.083720274269581,-0.094016380608082,-0.096296660602093],[-0.014204270206392,0.012422757223248,-0.0010319323046133],[-0.0052528311498463,0.020636409521103,-0.0039096809923649]],[[0.17762675881386,-0.043241512030363,-0.05040367692709],[-0.03562856093049,-0.12278337776661,-0.087573438882828],[0.11752738803625,-0.03985695540905,-0.14200416207314]],[[-0.019006064161658,0.13296581804752,0.10446167737246],[-0.011771903373301,-0.067034751176834,0.068348363041878],[0.10633328557014,-0.050545986741781,0.03197567909956]],[[0.035878393799067,-0.040282227098942,-0.04498902335763],[-0.027359133586287,-0.0030000330880284,0.00924251973629],[-0.03654432669282,0.024795800447464,0.059962023049593]],[[0.086730524897575,-0.10616007447243,-0.10979031026363],[0.12283964455128,0.077003672719002,0.15857924520969],[-0.11266715824604,-0.0051757316105068,0.043658390641212]],[[0.13391035795212,0.071792863309383,-0.012769089080393],[-0.015171543695033,0.15391127765179,0.017402585595846],[-0.0069814478047192,0.08869643509388,0.10161686688662]],[[-0.014221996068954,-0.02626758441329,-0.042885039001703],[0.0098645882681012,0.026053333655,-0.084333114326],[0.045279506593943,0.052418455481529,-0.033699862658978]],[[-0.019829392433167,0.04490152746439,-0.0002916157245636],[0.11351689696312,-0.075282402336597,-0.023111181333661],[0.069413959980011,-0.0058791558258235,0.02353248372674]],[[0.033353958278894,-0.016128230839968,0.01126413512975],[0.021165195852518,0.011238479986787,-0.10214260220528],[-0.0067585143260658,0.021227058023214,-0.029997531324625]],[[-0.028977628797293,0.074649505317211,0.079059854149818],[-0.03608275577426,0.0060076033696532,0.12313833087683],[-0.06638415157795,-0.016412504017353,0.070636115968227]],[[-0.059965241700411,-0.02565729804337,-0.051492411643267],[0.01564702577889,-0.055529825389385,-0.020019805058837],[0.0683434009552,0.04964841529727,-0.069305829703808]],[[-0.10846789181232,0.10563099384308,0.16741961240768],[0.0028104905504733,-0.048106301575899,0.037820365279913],[0.13649049401283,-0.028871292248368,0.064780846238136]],[[-0.089658357203007,0.013775386847556,0.0023928871378303],[-0.0031129843555391,0.034686055034399,0.0092621929943562],[-0.072639532387257,-0.04583153501153,0.044132795184851]],[[0.065647073090076,-0.0078920805826783,0.04821915179491],[0.027863373979926,-0.021134877577424,0.035647686570883],[-0.014603856019676,-0.028129937127233,-0.041064366698265]],[[-0.00031521919299848,-0.034654002636671,0.03855075314641],[0.0094686131924391,0.14806105196476,-0.025382824242115],[0.10068026930094,0.09341011941433,-0.028541672974825]],[[0.033568032085896,-0.059775404632092,0.08020181953907],[0.020421667024493,-0.090596318244934,0.014536183327436],[0.065654121339321,-0.064675487577915,0.035372577607632]],[[0.050957534462214,-0.01848173327744,-0.078272178769112],[0.069490030407906,-0.063553251326084,-0.022778844460845],[0.089350305497646,0.050582602620125,-0.06410626322031]],[[-0.027633931487799,0.038131415843964,-0.0069008809514344],[0.024260399863124,-0.036170747131109,0.017128309234977],[-0.11832185089588,0.04500088840723,-0.064729005098343]],[[0.12472005188465,0.042906198650599,-0.013803452253342],[-0.020410003140569,-0.013736176304519,-0.020426878705621],[-0.0042887800373137,-0.024982046335936,-0.042305059731007]],[[0.001117181032896,0.086253456771374,-0.010243409313262],[-0.026391020044684,-0.069279238581657,0.031298138201237],[-0.012726401910186,-0.094209238886833,-0.12066020816565]],[[-0.081666365265846,-0.011818276718259,-0.062093894928694],[-0.04381563141942,0.014261142350733,0.071005776524544],[0.11874297261238,0.032889630645514,-0.078287109732628]],[[-0.041407581418753,-0.042658295482397,-0.022750688716769],[-0.013261471875012,-0.09051638096571,-0.033304311335087],[-0.057274308055639,-0.039259992539883,0.064382120966911]],[[-0.027613040059805,-0.067198172211647,-0.0002532095531933],[0.016092408448458,0.045119769871235,0.026101918891072],[0.02555781789124,-0.021762689575553,0.045453432947397]],[[-0.0038019185885787,-0.14046913385391,-0.038384899497032],[0.059278685599566,0.10009525716305,-0.043548483401537],[0.14674232900143,0.02900936640799,-0.15570031106472]],[[0.068819403648376,-0.083955600857735,-0.012969349510968],[0.090251304209232,-0.038117446005344,0.022224679589272],[-0.017681775614619,-0.011353897862136,-0.048988573253155]],[[-0.020860113203526,-0.060851033776999,-0.10702217370272],[-0.030540186911821,-0.0035973791964352,0.0018217739416286],[-0.02229137532413,-0.034633610397577,-0.068688847124577]],[[-0.034650094807148,0.017116893082857,0.016075268387794],[-0.071766711771488,0.013694196939468,-0.019169064238667],[0.037620447576046,-0.019939176738262,-0.080054111778736]],[[0.038861948996782,-0.063594497740269,-0.10488017648458],[0.1113673299551,-0.088342286646366,-0.046339102089405],[0.068699188530445,0.04477421939373,0.040844976902008]],[[-0.070293337106705,-0.039206724613905,-0.063260689377785],[-0.0071416278369725,0.0089686466380954,-0.044450405985117],[-0.030163945630193,0.017875684425235,-0.090726442635059]],[[0.00069874263135716,0.018671043217182,0.0047939280048013],[0.069059684872627,-0.011010583490133,0.0037737963721156],[0.072513177990913,0.02937388047576,-0.0062109124846756]],[[0.061997875571251,-0.025775611400604,-0.025650443509221],[0.025624480098486,-0.014367658644915,0.018066147342324],[-0.0084670623764396,0.039153460413218,-0.0079334452748299]],[[0.042879294604063,-0.059970624744892,0.11723151057959],[0.13716584444046,-0.07637333124876,0.082939580082893],[-0.016794020310044,-0.051540985703468,0.03515899926424]],[[0.050647031515837,0.063480891287327,0.0017768203979358],[-0.020167188718915,-0.11868713796139,-0.071406200528145],[0.016091385856271,-0.05061287432909,0.074035093188286]],[[-0.030818019062281,0.015770258381963,-0.063099719583988],[-0.012118343263865,-0.092171832919121,-0.036579169332981],[-0.0210903249681,-0.051324632018805,-0.053151812404394]],[[-0.014312403276563,-0.097221232950687,-0.040840849280357],[-0.011598193086684,-0.12459582090378,-0.090284302830696],[-0.023667374625802,-0.081754803657532,-0.094190150499344]],[[-0.065332807600498,-0.078574299812317,-0.019611924886703],[-0.1027620062232,-0.07035780698061,0.027182403951883],[0.14305427670479,0.069910190999508,0.076154492795467]],[[-0.053103491663933,-0.12624955177307,-0.063260979950428],[-0.028541494160891,-0.047644093632698,-0.073638014495373],[0.071496680378914,-0.049379244446754,-0.11075308173895]],[[-0.028841508552432,-0.028748625889421,0.052694652229548],[0.025537878274918,0.088809281587601,0.049225732684135],[-0.02635670080781,-0.036765478551388,-0.040429327636957]],[[0.017999440431595,0.05635017901659,-0.038600880652666],[0.0019065659726039,0.031466331332922,-0.04961596056819],[0.0093013821169734,-0.084881402552128,-0.038719296455383]],[[0.0066162096336484,-0.051258895546198,0.031453359872103],[0.022775007411838,-0.12218502908945,-0.11764857172966],[0.048737492412329,0.065516456961632,0.0072475364431739]],[[-0.0019265983719379,0.0018007123144343,0.025959983468056],[-0.041293911635876,-0.049555044621229,-0.0047013955190778],[-0.072661504149437,-0.071505136787891,-0.025954894721508]],[[-0.016585757955909,-0.071298226714134,-0.05939593911171],[-0.15451826155186,0.014189939945936,-0.088301718235016],[-0.093899294734001,0.01296126190573,-0.040830537676811]],[[0.12521295249462,-0.054191097617149,-0.062855035066605],[0.0093636130914092,-0.10049352049828,-0.065846264362335],[0.017577949911356,0.019144272431731,-0.018534932285547]],[[0.0016196880023926,0.036168079823256,-0.0066350460983813],[-0.0054125664755702,0.012442016042769,0.032444983720779],[0.030314257368445,-0.044354915618896,0.00043001401354559]],[[0.016774592921138,0.12504211068153,0.033477485179901],[0.019542723894119,-0.024116992950439,-0.033466700464487],[-0.073588915169239,-0.029565898701549,-0.001099492656067]],[[-0.11358723044395,-0.088838174939156,0.074901841580868],[-0.094159655272961,-0.083172701299191,0.098260499536991],[-0.12017047405243,0.074726179242134,0.1257338821888]],[[0.06929075717926,-0.010394597426057,-0.072050780057907],[-0.029079638421535,-0.075000435113907,0.0046031335368752],[0.035160679370165,-0.0796267837286,0.052618663758039]],[[0.027130531147122,-0.033641163259745,-0.020197588950396],[0.094457142055035,-0.071560487151146,-0.013236056081951],[0.10468768328428,-0.021097220480442,-0.097805537283421]],[[-0.069231487810612,-0.096430644392967,0.018894147127867],[0.22268450260162,-0.04072580486536,-0.060316812247038],[0.0059641762636602,-0.023616999387741,0.01409833598882]],[[-0.031380496919155,-0.10024992376566,-0.026221882551908],[-0.020135655999184,0.0033762387465686,0.023158589377999],[-0.035837162286043,-0.026186196133494,0.055276963859797]],[[-0.036044102162123,0.019847044721246,0.085299879312515],[-0.01950885169208,0.059963088482618,-0.075529530644417],[-0.12127044796944,0.0010707355104387,-0.00096590077737346]],[[-0.083943627774715,-0.0089471442624927,-0.055228013545275],[-0.012772696092725,0.0035209595225751,-0.025793788954616],[0.016950078308582,-0.051378447562456,-0.023425804451108]],[[0.02608984336257,0.019615394994617,0.072802998125553],[-0.0082871047779918,-0.04408223927021,-0.16537284851074],[0.03196382895112,0.011777382344007,-0.015423537231982]],[[0.081293880939484,0.079317890107632,0.0057930457405746],[0.097260244190693,0.11925955861807,-0.11869338899851],[0.17694070935249,0.017737282440066,-0.082028262317181]],[[0.016719235107303,-0.036363158375025,-0.04326120018959],[0.018542421981692,0.019414315000176,-0.024436771869659],[-0.010211698710918,-0.029547587037086,0.014838736504316]],[[0.06688603758812,0.029530933126807,0.11206788569689],[0.0012235222384334,0.012456933967769,-0.15593503415585],[0.040574721992016,0.0025210629682988,0.013497930020094]],[[-0.080688022077084,0.023597650229931,0.029314929619431],[0.047191888093948,0.035250499844551,-0.082337416708469],[-0.067389778792858,-0.11993461102247,-0.018673034384847]],[[0.062413677573204,-0.040469605475664,0.10069530457258],[-0.086049444973469,-0.007272819057107,0.020392466336489],[0.0064244940876961,-0.11982411891222,0.021917277947068]],[[0.038844112306833,0.015270275995135,-0.034221664071083],[-0.066833391785622,-0.1311699450016,-0.0038653637748212],[-0.015210234560072,-0.017967393621802,-0.055813882499933]],[[0.047591179609299,0.071772426366806,0.0036250958219171],[0.014402297325432,-0.080627463757992,-0.072102971374989],[0.011296751908958,-0.011000148020685,-0.00067689950810745]],[[-0.10618991404772,0.041495561599731,0.0047855507582426],[0.018387017771602,-0.044012021273375,-0.017610594630241],[0.00082011352060363,-0.0006042638560757,-0.10248523205519]],[[0.020485028624535,-0.019219573587179,-0.038448642939329],[0.0057414583861828,-0.0075971162877977,0.006866458337754],[-0.0070340828970075,-0.0099842445924878,0.084676392376423]],[[0.048429276794195,0.037066772580147,0.03543321788311],[0.07286760956049,-0.05533654987812,0.031462699174881],[-0.032911144196987,0.0081096878275275,-0.13078191876411]],[[0.048933796584606,0.0096851028501987,0.0054169320501387],[0.036144338548183,-0.0078872432932258,-0.088193893432617],[0.094324238598347,0.013269234448671,0.021250415593386]],[[0.066305123269558,-0.066582664847374,0.02052560262382],[0.0090067600831389,-0.012154649943113,-0.021314479410648],[0.0033879617694765,-0.040837381035089,0.036974683403969]],[[-0.08356761187315,0.015559625811875,0.090319745242596],[-0.01776584982872,0.11219926923513,0.041929125785828],[-0.080024495720863,0.028430679813027,-0.10261332988739]],[[-0.034764990210533,-0.08068285882473,-0.017046071588993],[0.093281008303165,-0.040442548692226,-0.046606350690126],[0.14355520904064,-0.013945915736258,0.022815911099315]],[[0.11608508974314,-0.024352909997106,-0.043651133775711],[-0.051538553088903,0.04621846228838,-0.042924888432026],[0.14118519425392,0.021197529509664,-0.067600280046463]],[[-0.085590675473213,-0.04842859134078,-0.10701812058687],[0.022957203909755,-0.037581082433462,0.026179239153862],[0.04273458942771,-0.042569361627102,-0.071640998125076]],[[0.074032597243786,3.0898190743756e-06,0.046226605772972],[0.0022288863547146,-0.045382894575596,0.016783162951469],[0.057569235563278,0.047528110444546,-0.020031804218888]],[[-0.092714324593544,0.0111491875723,-0.1509925276041],[-0.037399370223284,-0.088148333132267,-0.1193265542388],[-0.047345045953989,-0.024850681424141,0.0052160350605845]],[[-0.070846877992153,0.10372061282396,-0.10286308079958],[0.070937447249889,0.034754537045956,-0.099818423390388],[-0.018736306577921,0.055309005081654,-0.11695384979248]],[[0.00021127503714524,0.019616270437837,0.063415825366974],[-0.10334171354771,0.052058316767216,-0.070212535560131],[0.18664455413818,0.091412350535393,-0.049574755132198]],[[0.035767909139395,-0.042097195982933,0.070657908916473],[0.031583916395903,0.0061459504067898,-0.029079833999276],[0.013895647600293,-0.017713917419314,0.026915123686194]],[[-0.11238263547421,0.02112895809114,-0.059389542788267],[0.0083619598299265,-0.032704047858715,-0.018509391695261],[0.025197710841894,-0.0015878507401794,-0.015863541513681]],[[0.0078512486070395,-0.013067787513137,0.012455536983907],[-0.023870766162872,0.049220576882362,0.029674585908651],[-0.085935682058334,-0.028751669451594,-0.018276503309608]],[[-0.033694796264172,0.010905991308391,-0.058442037552595],[0.029609674587846,0.094755202531815,-0.063713058829308],[-0.059189565479755,0.058575630187988,0.053683944046497]],[[0.10611596703529,0.0077270688489079,0.018184745684266],[-0.11797773838043,-0.057091858237982,-0.0093622552230954],[0.043683521449566,0.034763544797897,0.062861517071724]],[[0.084013193845749,-0.0072341747581959,0.017256630584598],[0.0065867560915649,-0.0048077316023409,-8.5604886407964e-05],[-0.04384246468544,0.018723810091615,-0.0552848726511]],[[0.1426328420639,0.0063434899784625,0.10909584909678],[0.027817960828543,0.023635374382138,0.11024640500546],[-0.030301040038466,0.096745356917381,0.048213306814432]],[[0.095319025218487,0.10013671219349,-0.032158948481083],[0.021996144205332,0.042341321706772,-0.058376666158438],[-0.048299580812454,0.026785798370838,-0.030277354642749]],[[0.024151302874088,0.065430946648121,0.063856892287731],[-0.080744102597237,-0.08424349874258,-0.035217389464378],[-0.036275345832109,-0.085683085024357,-0.011038235388696]],[[0.052612993866205,0.058594077825546,-0.054918840527534],[0.039567969739437,-0.01085227355361,-0.035333089530468],[-0.047259829938412,0.014613064937294,0.013077976182103]],[[-0.11965813487768,0.0376344807446,3.3181830076501e-05],[0.050893921405077,0.038039948791265,-0.0097954738885164],[0.0166856944561,0.01464468985796,-0.13934235274792]],[[0.033705018460751,0.045126158744097,0.040894191712141],[0.086618795990944,0.092658936977386,0.038575902581215],[0.059537682682276,-0.014273657463491,-0.068797007203102]],[[0.0061079026199877,-0.033399496227503,-0.033561881631613],[-0.0074209687300026,0.029639039188623,0.14199450612068],[-0.10182784497738,0.076334357261658,0.094439566135406]],[[0.010451043955982,-0.01254705619067,-0.13336151838303],[0.073905326426029,-0.081497251987457,-0.031223922967911],[-0.072431012988091,-0.068330235779285,0.048405651003122]],[[0.0036920020356774,-0.088182188570499,-0.042946793138981],[-0.021754728630185,-0.020861545577645,0.020021073520184],[-0.1182908937335,-0.031231001019478,-0.046522244811058]],[[0.10473222285509,-0.05066304281354,-0.022808793932199],[0.022506155073643,-0.019783120602369,0.036556929349899],[-0.010951436124742,0.00096145638963208,0.078421205282211]],[[-0.010863281786442,-0.12984819710255,-0.11031588166952],[0.0025982225779444,0.026035761460662,0.045931737869978],[0.0038143589626998,-0.00084572663763538,-0.015391066670418]],[[-0.04065965488553,0.042690496891737,0.083032332360744],[0.075118467211723,0.0064822295680642,0.089826188981533],[0.034721899777651,-0.033821661025286,0.029549792408943]],[[0.068800665438175,0.067340612411499,0.053833357989788],[0.0056649139150977,-0.088888645172119,0.015510499477386],[0.036591045558453,-0.016396660357714,0.01572646945715]],[[0.15323553979397,-0.096505843102932,-0.11569499224424],[0.11749349534512,-0.055237472057343,-0.022951774299145],[0.0044632111676037,-0.090177960693836,0.01134536229074]],[[0.03692664206028,-0.0458869561553,-0.11487723886967],[0.030309712514281,-0.031431410461664,0.093723125755787],[-0.010739332996309,0.079297669231892,0.036614004522562]],[[0.010779157280922,0.020533256232738,-0.0072197541594505],[-0.016947234049439,0.010986607521772,-0.0011927018640563],[-0.028842464089394,-0.025943178683519,0.018300538882613]],[[0.00038665151805617,0.015724094584584,-0.070870622992516],[0.0077949785627425,0.035709720104933,0.038025431334972],[-0.018761409446597,-0.046927854418755,0.051264919340611]],[[-0.051660049706697,-0.049305975437164,0.0066761164925992],[0.041619580239058,-0.063450381159782,0.012849144637585],[-0.030735330656171,-0.063815250992775,0.037390545010567]],[[0.030644191429019,-0.049977779388428,-0.0694824680686],[-0.091839022934437,0.021031994372606,0.1030108332634],[-0.095791980624199,-0.018217725679278,0.11100784689188]],[[-0.048836939036846,-0.034990314394236,0.0048340260982513],[0.072583213448524,0.085439629852772,-3.7843994505238e-05],[0.0091824335977435,0.10691817849874,-0.020064724609256]],[[0.056195303797722,0.02426172606647,0.070171274244785],[0.0052051623351872,0.040523305535316,0.067416571080685],[-0.0010693859076127,0.023485405370593,0.060454960912466]],[[0.10816019028425,-0.057574328035116,0.068560734391212],[0.037124007940292,0.049352146685123,0.014831999316812],[0.0113485455513,0.048820991069078,-0.10905437171459]],[[-0.053538672626019,-0.1056734547019,-0.14436513185501],[0.067549914121628,-0.0001417374733137,-0.078910909593105],[-0.021978639066219,0.022597627714276,-0.062470782548189]],[[0.033876098692417,-0.060782730579376,0.0066519337706268],[-0.071857899427414,0.052876830101013,-0.056977324187756],[-0.022103752940893,-0.081218674778938,0.022301252931356]],[[0.028225723654032,-0.037982661277056,0.055882912129164],[-0.015116070397198,-0.03007254563272,0.056153606623411],[0.018240535631776,-0.010144397616386,0.062066931277514]],[[0.053975712507963,-0.014545079320669,0.0547269359231],[0.084178559482098,-0.10092285275459,0.046783171594143],[-0.019588803872466,-0.023593934252858,0.091120213270187]],[[-0.094968318939209,0.036469284445047,-0.10248085856438],[-0.098448261618614,0.077391251921654,0.06612815707922],[-0.016491934657097,-0.0029814157169312,-0.025449112057686]],[[-0.024876274168491,0.0033805780112743,-0.056413762271404],[0.016778293997049,0.056541830301285,-0.003703989321366],[0.025657586753368,-0.054034426808357,0.049893889576197]],[[-0.0032331324182451,0.11828030645847,-0.026802521198988],[-0.089593909680843,-0.026733960956335,-0.009483247064054],[-0.02072443626821,0.050720680505037,0.061477109789848]],[[0.019629944115877,-0.0013654953800142,0.087747201323509],[-0.020662968978286,-0.081167586147785,-0.054426942020655],[0.036757737398148,-0.047976393252611,0.071431137621403]]],[[[0.0019808576907963,0.010881041176617,-0.061013851314783],[0.030983651056886,0.14336715638638,0.0057025547139347],[0.047423303127289,0.058827593922615,-0.05796442553401]],[[-0.095886424183846,-0.038747981190681,0.30557608604431],[-0.040391027927399,-0.072236970067024,0.14751204848289],[0.010030176490545,-0.052494592964649,-0.079834468662739]],[[0.17679199576378,0.19553101062775,-0.064088448882103],[0.034259654581547,0.0050405850633979,0.05654988065362],[-0.013354736380279,-0.043488677591085,0.16318002343178]],[[0.027970284223557,-0.064154230058193,0.10124562680721],[-0.11546228080988,-0.068451374769211,0.074760116636753],[-0.078990437090397,-0.029537681490183,0.078117862343788]],[[0.13336780667305,0.14851072430611,-0.045009858906269],[0.089067369699478,-0.10403878241777,0.043832547962666],[-0.042345505207777,-0.15969878435135,0.21646136045456]],[[0.081592381000519,0.14277501404285,0.093339838087559],[0.12533815205097,0.062848396599293,-0.093007579445839],[-0.066507503390312,0.11467610299587,0.11170587688684]],[[-0.051862951368093,-0.12310573458672,-0.19111287593842],[0.011715023778379,0.097023092210293,-0.03045386262238],[-0.025409026071429,0.13411888480186,-0.11395652592182]],[[0.021775886416435,0.011357322335243,-0.11328352987766],[-0.0037765232846141,0.045531682670116,0.023263102397323],[0.083168432116508,0.091115482151508,0.068251997232437]],[[-0.15280562639236,-0.12642782926559,-0.046151712536812],[0.11166679859161,0.12624816596508,0.088527970016003],[-0.26242026686668,-0.05465031042695,-0.28557151556015]],[[-0.14644891023636,-0.092500112950802,0.085845932364464],[-0.12431222200394,0.17449563741684,0.1115437746048],[-0.02905679307878,-0.025420896708965,-0.15768595039845]],[[0.026005825027823,-0.17627893388271,0.088696092367172],[0.010388448834419,0.08490265160799,-0.079106532037258],[0.12792629003525,0.13938035070896,0.23556990921497]],[[-0.27749568223953,-0.17285157740116,0.046429123729467],[-0.0039052839856595,0.07536193728447,0.036789812147617],[-0.044128481298685,0.15914575755596,0.19085903465748]],[[0.012242410331964,0.10841163992882,0.22357693314552],[-0.084212049841881,-0.049360617995262,-0.19987697899342],[0.0018678364576772,0.09672600030899,0.16395416855812]],[[0.038100656121969,0.21650588512421,0.10232837498188],[-0.11735983192921,-0.12351198494434,-0.20808388292789],[-0.10101792961359,0.0538045540452,0.16744673252106]],[[0.048722855746746,-0.0029412731528282,0.093766257166862],[0.042092241346836,-0.00061469391221181,0.060904331505299],[0.076298050582409,0.035513907670975,-0.013958271592855]],[[0.10266391187906,-0.058806225657463,0.031033284962177],[-0.074525505304337,-0.12602040171623,-0.011338259093463],[0.078830219805241,-0.027185667306185,-0.18342587351799]],[[-0.01063088607043,0.014612534083426,0.010527549311519],[-0.11613747477531,0.084408596158028,0.16073840856552],[-0.0062616905197501,0.0031973000150174,-0.0055689658038318]],[[-0.038271330296993,0.021013788878918,-0.12324200570583],[0.094475992023945,0.11444971710443,0.068203262984753],[-0.10350645333529,0.0085823507979512,-0.078222423791885]],[[0.061334349215031,-0.0077102286741138,0.024068089202046],[0.014625633135438,-0.15514767169952,0.022275926545262],[0.13950876891613,-0.050558444112539,0.10515002906322]],[[-0.19029992818832,-0.26915681362152,0.041804775595665],[0.11027704924345,0.029542233794928,0.084063030779362],[0.052314218133688,0.19350430369377,0.018610864877701]],[[-0.027554973959923,-0.12926523387432,-0.14396546781063],[-0.091456472873688,-0.13497054576874,-0.088247038424015],[0.047898072749376,-0.023426914587617,0.10189472138882]],[[-0.052230183035135,-0.16734863817692,-0.17226134240627],[-0.11392987519503,-0.022027771919966,0.12139954417944],[0.0051736189052463,-0.054024592041969,-0.13229861855507]],[[-0.12346297502518,-0.029503807425499,0.20744320750237],[0.05765463039279,0.0683364123106,0.10054548829794],[-0.033827755600214,-0.16568811237812,-0.24894876778126]],[[-0.058322928845882,-0.13669404387474,0.028944041579962],[-0.073939144611359,-0.09566592425108,-0.11141086369753],[0.015954336151481,-0.19053815305233,0.011103952303529]],[[-0.040760401636362,0.049550026655197,-0.0014255921123549],[0.014340745285153,-0.043728388845921,-0.040532972663641],[0.12929843366146,0.24334229528904,-0.0015215325402096]],[[0.074580006301403,0.13666546344757,-0.063420191407204],[0.050995163619518,0.08255285769701,0.063408650457859],[-0.12766928970814,-0.0095672747120261,-0.076659470796585]],[[-0.067932441830635,-0.08934311568737,0.18561694025993],[0.034956779330969,-0.020396457985044,0.015134195797145],[0.038188207894564,0.018159538507462,-0.023781174793839]],[[-0.028573540970683,0.070653207600117,-0.14521907269955],[-0.1230706423521,0.019708171486855,0.070507034659386],[-0.020894579589367,-0.018192991614342,-0.056812804192305]],[[-0.069859199225903,-0.052984077483416,0.059555094689131],[-0.2945060133934,-0.064091116189957,-0.029721351340413],[-0.14713799953461,0.040943533182144,0.017926435917616]],[[0.048705317080021,-0.025154259055853,0.06257064640522],[0.0078519945964217,-0.10885328799486,-0.086320750415325],[-0.10601442307234,-0.035855606198311,-0.055311404168606]],[[0.022389065474272,-0.032674871385098,0.11450964212418],[-0.073059365153313,-0.20129245519638,0.013117993250489],[0.092370003461838,-0.17508958280087,0.28904169797897]],[[0.081651926040649,-0.065035574138165,-0.1331140100956],[0.17535805702209,0.068626724183559,0.0057811439037323],[0.071497939527035,0.17982034385204,0.20958688855171]],[[-0.16990095376968,-0.19889518618584,0.040095932781696],[-0.071566455066204,0.1856676787138,0.1153532192111],[0.075554206967354,0.055531766265631,0.074761226773262]],[[-0.073416344821453,-0.16500133275986,-0.26985773444176],[0.12538427114487,-0.039771057665348,-0.082773946225643],[0.055896256119013,-0.1097366809845,-0.13813763856888]],[[0.028356783092022,0.17779986560345,0.044638019055128],[-0.15576386451721,0.14881487190723,-0.14878453314304],[-0.013377794064581,-0.073540024459362,-0.0088696498423815]],[[-0.003883316880092,0.080808758735657,0.0092644561082125],[0.090974189341068,0.043700717389584,-0.10670372843742],[-0.045197769999504,-0.05909401550889,0.01165025960654]],[[-0.089103765785694,0.15413236618042,0.026337699964643],[0.18297138810158,0.20792527496815,0.047908995300531],[-0.013527139090002,-0.023301193490624,0.13650053739548]],[[0.032825224101543,0.038301438093185,0.17396484315395],[0.0044651897624135,-0.042784430086613,-0.021533031016588],[-0.13751268386841,-0.022756112739444,-0.066204197704792]],[[0.1419385522604,0.11580870300531,-0.039108254015446],[0.01227961666882,0.060740042477846,-0.052633207291365],[-0.023061214014888,-0.13391014933586,0.12336830049753]],[[-0.067216642200947,-0.034412302076817,-0.12041941285133],[-0.023824607953429,-0.00085884006693959,0.073350951075554],[0.13192790746689,-0.077650040388107,-0.11551881581545]],[[0.033326435834169,0.070166580379009,-0.089863896369934],[-0.029725752770901,-0.11770878732204,-0.058836091309786],[0.094576202332973,-0.053535997867584,-0.089638598263264]],[[-0.010724738240242,-0.031041484326124,-0.0074367844499648],[0.068639352917671,-0.021994557231665,0.1376415938139],[-0.12746301293373,-0.0097359828650951,0.14503572881222]],[[-0.11298004537821,-0.11005173623562,0.0088872360065579],[-0.16914401948452,-0.15448454022408,-0.044811297208071],[-0.12578259408474,-0.043070912361145,0.014683797955513]],[[-0.015986038371921,-0.051707033067942,0.027536375448108],[-0.088870711624622,-0.0030943972524256,0.082788690924644],[0.022783210501075,0.05880443751812,0.017171747982502]],[[0.20843456685543,0.072988331317902,-0.082493342459202],[-0.12915466725826,-0.07710625231266,0.15007868409157],[0.01181757915765,-0.13226841390133,-0.07510519772768]],[[-0.0036987804342061,0.030740592628717,-0.0052470983937383],[-0.051143296062946,-0.083474598824978,0.10809647291899],[-0.057108409702778,-0.11908328533173,-0.16206011176109]],[[0.064022392034531,0.043847363442183,-0.16090805828571],[-0.14473642408848,-0.011421468108892,-0.064463041722775],[0.022863700985909,-0.039236590266228,0.093402169644833]],[[-0.2087791711092,-0.055374462157488,-0.026162911206484],[0.20787252485752,0.074464157223701,-0.060422796756029],[-0.091608263552189,-0.17250849306583,-0.039263542741537]],[[0.20306923985481,0.032381124794483,0.13714373111725],[-0.08467622846365,-0.18891830742359,-0.056740384548903],[0.051514115184546,0.064766854047775,0.015846349298954]],[[-0.14584086835384,-0.044870235025883,0.019295835867524],[-0.15621255338192,-0.19910003244877,-0.056101694703102],[-0.1613822132349,-0.047996878623962,-0.030423901975155]],[[-0.015372675843537,-0.11428735405207,-0.091117769479752],[-0.017048804089427,-0.12907588481903,-0.056565966457129],[-0.025615409016609,-0.056317672133446,0.19097170233727]],[[0.037287425249815,0.14241570234299,0.0050846533849835],[-0.038705311715603,-0.097420141100883,0.014266255311668],[-0.0028848173096776,-0.052340224385262,-0.19697025418282]],[[0.018188070505857,0.055999211966991,0.085331030189991],[0.027710665017366,-0.038815107196569,-0.051595415920019],[0.012483166530728,0.0037453814875335,-0.042819701135159]],[[-0.054277516901493,-0.038142051547766,0.018144957721233],[0.035846155136824,0.050802823156118,-0.19687166810036],[0.0020705438219011,-0.026770854368806,0.045210879296064]],[[0.17439344525337,0.085665918886662,0.16227573156357],[-0.074560597538948,0.14884662628174,-0.034365706145763],[-0.20147527754307,-0.0019255987135693,0.027013232931495]],[[-0.13721378147602,-0.064281366765499,-0.11875762790442],[0.0046374998055398,0.040819674730301,0.0045743761584163],[0.14536888897419,-0.050604201853275,-0.24994319677353]],[[-0.082991816103458,-0.13872462511063,0.32011145353317],[0.027174584567547,-0.058253940194845,0.091827102005482],[-0.23781155049801,-0.089383259415627,-0.10067860782146]],[[-0.10474090278149,-0.067127391695976,0.065208971500397],[-0.23762784898281,-0.20096175372601,-0.056117314845324],[-0.071271263062954,0.013156815432012,0.13760609924793]],[[-0.13752734661102,-0.061217229813337,-0.14631414413452],[-0.21357163786888,-0.13876819610596,-0.11980771273375],[0.0216373372823,-0.14909633994102,-0.17753660678864]],[[0.027647782117128,-0.066525660455227,-0.20707534253597],[-0.065609559416771,0.043632015585899,0.0050505446270108],[-0.22051203250885,-0.36264643073082,-0.17598524689674]],[[0.064309857785702,-0.019937474280596,0.0089139472693205],[0.11622255295515,-0.069964475929737,-0.17772062122822],[-0.082830160856247,-0.015822330489755,0.015305615030229]],[[-0.017317688092589,0.024512935429811,-0.056189808994532],[0.18426798284054,0.069587238132954,-0.16899524629116],[-0.2350931763649,-0.10073646903038,-0.022192411124706]],[[-0.097083784639835,-0.023988613858819,0.15234890580177],[0.17410071194172,-0.011724910698831,-0.29698050022125],[-0.043234124779701,0.031951263546944,0.047281712293625]],[[0.051298480480909,-0.1027095168829,-0.19224010407925],[0.096491061151028,-0.12175089865923,0.096172012388706],[0.27025789022446,-0.022164165973663,0.14165344834328]],[[-0.017257170751691,0.047570519149303,0.13238108158112],[-0.10659559816122,-0.019451702013612,-0.043123863637447],[-0.044669061899185,0.048536837100983,-0.045486737042665]],[[-0.017538027837873,0.39201098680496,-0.11886055022478],[-0.027644896879792,-0.11700966209173,0.20002172887325],[-0.012507423758507,-0.11688713729382,-0.17442800104618]],[[-0.13838547468185,-0.11770705878735,0.28831449151039],[-0.037614613771439,0.23869279026985,-0.072275497019291],[0.094793155789375,-0.089046075940132,-0.019738476723433]],[[-0.1186895892024,-0.075240939855576,0.010331889614463],[-0.23027727007866,-0.053870894014835,-0.066325359046459],[-0.015832738950849,-0.019645035266876,-0.063671827316284]],[[0.13346281647682,0.061736807227135,0.01804044470191],[0.04052272066474,0.069320894777775,-0.044337674975395],[-0.027474684640765,-0.036724302917719,0.027585638687015]],[[0.34742295742035,0.035563237965107,-0.042049366980791],[0.11601722985506,-0.035929948091507,-0.16191959381104],[0.11232466250658,-0.067669220268726,0.22250846028328]],[[-0.076411567628384,-0.055187791585922,0.28442537784576],[0.087845832109451,0.061188213527203,-0.35839837789536],[0.064602494239807,-0.0090489331632853,0.073556952178478]],[[0.10088235884905,-0.070600308477879,-0.020951360464096],[-0.024017378687859,0.022332813590765,0.032357074320316],[0.12078404426575,0.030394166707993,0.20198778808117]],[[-0.21150158345699,-0.040904156863689,0.043068554252386],[-0.17716427147388,-0.19275513291359,-0.17768873274326],[-0.046601627022028,-0.22830231487751,-0.02772630751133]],[[0.01615964435041,0.14815972745419,0.17117920517921],[-0.015979334712029,0.17706137895584,0.025358125567436],[-0.10103936493397,0.062067147344351,-0.12061244249344]],[[-0.049956131726503,0.019420417025685,0.11764723807573],[-0.069047011435032,-0.088482707738876,0.15989781916142],[0.016520133242011,-0.017748340964317,0.092563480138779]],[[0.10624057799578,-0.2226223051548,-0.21928925812244],[-0.075214013457298,-0.077973738312721,-0.034493029117584],[0.004129380453378,0.067753858864307,-0.022940121591091]],[[-0.1713724732399,-0.11646945029497,0.16628310084343],[0.06098422780633,0.06386286765337,-0.0067382389679551],[-0.10903167724609,0.05158881470561,0.050432614982128]],[[0.072911851108074,-0.11282927542925,-0.070580996572971],[-0.22000098228455,-0.27133885025978,0.086894936859608],[-0.13969868421555,0.11401214450598,-0.094635397195816]],[[-0.10758744925261,-0.062262665480375,-0.15695843100548],[-0.093880832195282,-0.089129209518433,0.0045669605024159],[0.21744139492512,0.27308210730553,0.02145629748702]],[[-0.24280570447445,-0.19755159318447,0.014175125397742],[-0.050083536654711,0.035581648349762,-0.11949899792671],[0.033060163259506,-0.059440720826387,-0.067813441157341]],[[-0.051591593772173,0.10703659057617,0.11194982379675],[-0.041938845068216,-0.13491390645504,0.10731609165668],[-0.061415389180183,0.054024580866098,0.077901273965836]],[[0.013230571523309,-0.0035373971331865,0.051823630928993],[-0.23741653561592,-0.087163418531418,0.074182115495205],[0.10435447096825,0.090999580919743,-0.15103761851788]],[[0.16653966903687,0.14940698444843,0.011216421611607],[0.18537314236164,0.092561289668083,0.16455341875553],[0.090277403593063,0.13865748047829,-0.091345332562923]],[[0.011481174267828,0.27471363544464,-0.043690767139196],[-0.031137833371758,-0.037825148552656,0.17637909948826],[-0.23078776896,-0.050005845725536,0.071983724832535]],[[-0.017920514568686,0.0077562029473484,-0.067549847066402],[-0.019625514745712,0.036784846335649,0.28362476825714],[0.047260884195566,-0.099944211542606,-0.20991460978985]],[[-0.13069041073322,-0.069802962243557,-0.12546946108341],[0.019579427316785,0.06713479757309,0.12845075130463],[-0.055281575769186,-0.064199261367321,-0.13755570352077]],[[-0.0040179276838899,0.095481537282467,-0.036998573690653],[0.018150003626943,-0.030592223629355,-0.066912606358528],[-0.020080588757992,0.055753722786903,-0.063886649906635]],[[-0.23755685985088,0.075821846723557,0.10051757097244],[0.27573198080063,0.2801548242569,0.038557201623917],[0.033766355365515,-0.010983034037054,-0.025380708277225]],[[-0.073361605405807,0.032099023461342,0.020748406648636],[-0.12326264381409,-0.044819716364145,-0.030404567718506],[-0.031661797314882,0.18216502666473,-0.011136323213577]],[[-0.053497221320868,0.041542753577232,0.0028857071883976],[-0.044448152184486,0.058770928531885,-0.05984777957201],[-0.0017224856419489,-0.020320598036051,-0.0376384742558]],[[0.26539254188538,0.15678428113461,-0.14949679374695],[0.18435600399971,0.050042111426592,0.069015897810459],[0.13185277581215,-0.056524604558945,0.017974801361561]],[[-0.035402975976467,-0.08833535015583,-0.2523986697197],[-0.10131012648344,-0.028908547013998,-0.019840827211738],[-0.097527645528316,-0.088603720068932,-0.0051974095404148]],[[-0.059162832796574,-0.16368640959263,-0.14419303834438],[0.0068870466202497,0.14463898539543,0.015279167331755],[-0.084313042461872,0.012266064062715,0.037944238632917]],[[0.028372958302498,-0.008865493349731,0.032796036452055],[0.034893691539764,0.075315825641155,-0.14991155266762],[-0.069797433912754,-0.041872166097164,0.1370442956686]],[[-0.045313119888306,-0.066989563405514,0.040086649358273],[0.093592397868633,-0.022829877212644,-0.14017023146152],[0.085958182811737,-0.063138104975224,-0.055497024208307]],[[0.0031468814704567,-0.013460895977914,0.011510392650962],[-0.19040848314762,-0.11891999840736,0.040738888084888],[0.086200550198555,0.11129215359688,0.38106673955917]],[[-0.053905870765448,-0.023692930117249,-0.076451599597931],[0.061053920537233,-0.12415362894535,-0.098196938633919],[0.025484388694167,-0.015994247049093,-0.093843527138233]],[[-0.065323814749718,0.066120199859142,0.064770072698593],[-0.060997929424047,0.12257830798626,0.12285581976175],[0.11999810487032,0.056444264948368,-0.32447728514671]],[[-0.073579035699368,-0.051891628652811,-0.26846170425415],[0.11957114934921,0.0076710321009159,0.069247841835022],[-0.021472780033946,0.099515192210674,0.15034618973732]],[[0.032349277287722,-0.015299315564334,0.012014137580991],[0.098193608224392,0.17017664015293,0.24433335661888],[0.0098019102588296,0.010644001886249,-0.052456568926573]],[[0.0228361915797,0.0057788132689893,0.10780534893274],[-0.080186888575554,-0.10530976206064,-0.061472848057747],[-0.26439064741135,-0.15934374928474,-0.011665348894894]],[[0.1633330732584,0.10325293987989,0.19367583096027],[-0.055339690297842,-0.082570113241673,-0.03984459489584],[0.10734327882528,0.1175896897912,0.085641995072365]],[[-0.016751041635871,-0.05637339502573,0.32322472333908],[-0.1195440813899,0.12978968024254,-0.019443495199084],[-0.047570653259754,-0.079217284917831,-0.087572433054447]],[[0.11021590977907,0.085969544947147,-0.047515869140625],[-0.092944175004959,-0.070246979594231,0.088834077119827],[0.14700329303741,0.12357969582081,0.12843126058578]],[[0.20650224387646,0.082445025444031,0.053649935871363],[-0.11345276981592,-0.12514373660088,-0.21721461415291],[-0.062307648360729,0.042194273322821,0.12750120460987]],[[0.19884234666824,0.087101265788078,0.068657286465168],[0.0040182690136135,-0.063627898693085,-0.049281284213066],[-0.10560975968838,0.065093457698822,0.0057163429446518]],[[0.034941483289003,-0.018742775544524,0.13769353926182],[0.014408311806619,-0.14190563559532,-0.058707341551781],[0.16489346325397,-0.041980411857367,-0.03132701292634]],[[-0.10519601404667,-0.0022680985275656,-0.0087641663849354],[-0.12204080820084,-0.07755982875824,-0.14268277585506],[0.061681680381298,0.071419447660446,0.21606960892677]],[[0.086100466549397,0.064725011587143,0.12179571390152],[-0.049174029380083,0.041920151561499,0.12489128857851],[0.12793064117432,0.10230088979006,0.075905412435532]],[[0.17309072613716,0.12967029213905,-0.010352713055909],[0.079271830618382,-0.09882877022028,0.041977509856224],[0.15245191752911,0.020886708050966,-0.11420840024948]],[[-0.013353222981095,-0.041822481900454,-0.065199427306652],[-0.0423234552145,-0.015987657010555,0.045173164457083],[-0.029405264183879,-0.015309621579945,-0.03917495906353]],[[-0.022343948483467,-0.11940842866898,-0.093624569475651],[-0.050150897353888,0.077220305800438,-0.14427238702774],[0.006298023276031,-0.16332702338696,-0.012907538563013]],[[0.13088956475258,0.041804641485214,-0.12877008318901],[0.11382955312729,-0.11690279096365,0.23577569425106],[0.11519471555948,-0.084495969116688,-0.14664316177368]],[[0.17933601140976,-0.042998012155294,-0.18296094238758],[0.075737528502941,-0.030169581994414,0.022276423871517],[-0.022630842402577,0.031835589557886,0.089891634881496]],[[-0.17802195250988,-0.032342117279768,-0.019781520590186],[-0.10010556131601,-0.084505699574947,0.18056787550449],[0.13311365246773,-0.19107101857662,-0.063527330756187]],[[0.034401949495077,0.04351570084691,0.089592605829239],[0.033027250319719,0.054916393011808,-0.074058517813683],[0.055179186165333,-0.016804799437523,0.058141887187958]],[[-0.0083673289045691,-0.022602083161473,-0.009878515265882],[0.11845996230841,-0.062594309449196,-0.12190941721201],[-0.04551575705409,-0.0020047251600772,-0.03088416531682]],[[0.10234447568655,0.11703904718161,-0.12358351051807],[0.074629262089729,-0.014794549904764,-0.18382468819618],[0.062194116413593,0.36740753054619,0.50906020402908]],[[0.097825057804585,-0.044051695615053,0.12539009749889],[0.020962845534086,0.00075714517151937,0.046532064676285],[-0.048388514667749,-0.10780312120914,-0.089046888053417]],[[0.034495029598475,0.071644529700279,-0.010474427603185],[0.017528761178255,-0.065188437700272,-0.1490174382925],[0.064785562455654,-0.10466372966766,0.014957227744162]],[[0.049521319568157,0.058642186224461,0.0071711675263941],[0.043100919574499,0.004873963072896,-0.21332284808159],[0.10107834637165,-0.0056297797709703,-0.0082257380709052]],[[0.23805579543114,0.13906893134117,-0.033256560564041],[-0.090637162327766,0.053170874714851,-0.0058313747867942],[-0.062458071857691,0.088268630206585,0.097743541002274]],[[-0.11759266257286,-0.087596781551838,-0.15619790554047],[-0.09437982738018,-0.03516973182559,-0.17978098988533],[0.026628106832504,-0.074863202869892,-0.056297205388546]],[[-0.011837036348879,-0.0065553281456232,0.23551894724369],[0.10873980075121,0.18156756460667,-0.020682414993644],[-0.041229479014874,0.069799110293388,0.028095273301005]],[[0.16363853216171,0.036605399101973,0.1147546172142],[-0.066804699599743,-0.056258428841829,0.11974535137415],[0.021461104974151,-0.11808973550797,0.038927044719458]],[[0.0039967922493815,0.0038563259877264,-0.15125948190689],[-0.026122743263841,-0.035064294934273,0.10076625645161],[-0.12120899558067,-0.27390652894974,-0.26137122511864]],[[-0.10720176249743,-0.19945350289345,0.15941362082958],[0.19752202928066,0.0084098810330033,0.084171108901501],[-0.0079207103699446,-0.13261990249157,0.05371019244194]],[[-0.034643948078156,-0.040521062910557,0.093502819538116],[0.071199223399162,-0.19871093332767,-0.47926431894302],[0.087847091257572,-0.024655777961016,-0.1702034175396]]],[[[0.11192412674427,0.063799619674683,0.099265098571777],[-0.0030936184339225,0.18522438406944,-0.028739778324962],[0.055802680552006,-0.0048283473588526,-0.15778854489326]],[[-0.16525650024414,0.083848014473915,0.17751869559288],[-0.054294355213642,0.081118911504745,0.062103968113661],[-0.065799944102764,0.029727350920439,-0.06585019081831]],[[-0.04784544557333,-0.15698601305485,0.13404260575771],[0.065737880766392,-0.078576289117336,0.051401942968369],[0.19458052515984,0.10825806856155,0.048477411270142]],[[-0.25268664956093,0.15352803468704,-0.14127832651138],[-0.14565382897854,0.046938590705395,-0.0033443735446781],[-0.018709385767579,-0.027927991002798,-0.11581360548735]],[[-0.10685969889164,0.034251555800438,-0.039189763367176],[-0.010355280712247,-0.015660876408219,-0.03759378567338],[-0.03233590722084,0.060554731637239,-0.023967610672116]],[[-0.16607749462128,0.0024777965154499,0.076083354651928],[0.15610404312611,0.024486567825079,-0.054081086069345],[0.26172092556953,-0.052078105509281,-0.079126589000225]],[[0.14271719753742,0.090330950915813,0.09414829313755],[-0.043292816728354,-0.18974928557873,0.067325934767723],[0.069150097668171,0.10538897663355,0.20116643607616]],[[-0.088516734540462,-0.067296966910362,0.018987538293004],[-0.112269744277,0.10714076459408,0.25738197565079],[-0.037705514580011,0.031431771814823,0.037440583109856]],[[0.029652968049049,0.039411198347807,-0.12896490097046],[-0.021119318902493,0.084626138210297,-0.022121349349618],[-0.10598724335432,0.048333950340748,0.10522900521755]],[[0.20170409977436,-0.085914224386215,-0.081971347332001],[-0.14011518657207,-0.058578040450811,-0.087860912084579],[0.0059094708412886,-0.033753760159016,0.17514303326607]],[[-0.078565940260887,-0.11369956284761,0.071192532777786],[-0.03991637378931,-0.21104614436626,0.060665760189295],[0.030593294650316,-0.022890860214829,0.05506731197238]],[[0.075832314789295,-0.027228217571974,-0.094005323946476],[0.070378914475441,-0.088113285601139,-0.057023476809263],[0.036859527230263,-0.14174211025238,0.13627006113529]],[[-0.10812097787857,-0.009175862185657,0.1276728361845],[-0.031564686447382,0.046891737729311,0.062460336834192],[0.008555413223803,0.015174188651145,-0.12716449797153]],[[-0.10372098535299,0.028069488704205,0.045451391488314],[0.033844243735075,0.053033154457808,-0.0015535856364295],[0.049345657229424,0.056522205471992,0.036702483892441]],[[-0.042271364480257,0.14054881036282,-0.0068373447284102],[0.042211662977934,0.12268169224262,0.076711736619473],[-0.058671876788139,-0.12748754024506,-0.13705915212631]],[[0.32926371693611,-0.16063487529755,-0.075629740953445],[0.27361351251602,-0.072644397616386,0.00043665189878084],[0.28266954421997,-0.13428971171379,0.02157891727984]],[[0.065870344638824,-0.084588587284088,-0.12719674408436],[-0.059249274432659,0.093908853828907,0.048396404832602],[-0.068247020244598,-0.081251613795757,-0.14989446103573]],[[0.13454182446003,-0.024951916188002,0.064996004104614],[0.0044326093047857,0.014116517268121,-0.017198275774717],[-0.1237937361002,-0.093417033553123,0.092505492269993]],[[0.19251720607281,-0.032630600035191,0.076271839439869],[0.10084077715874,0.038050960749388,-0.0074090622365475],[-0.11383472383022,-0.12283509224653,-0.10526688396931]],[[0.04681234434247,0.013319340534508,0.081806518137455],[-0.052146095782518,-0.16787922382355,0.10615279525518],[-0.056177031248808,-0.20470501482487,0.027784598991275]],[[0.14170011878014,-0.048986364156008,-0.018733434379101],[-0.053151551634073,-0.086303547024727,0.0041286847554147],[-0.073629796504974,-0.0053973980247974,0.052622754126787]],[[-0.010478830896318,0.044989738613367,-0.040404122322798],[0.038342278450727,0.03558437526226,-0.016840172931552],[-0.033996421843767,0.11132647842169,0.21558707952499]],[[0.063248567283154,0.091739483177662,-0.12097507715225],[-0.12324933707714,-0.076506040990353,-0.077426500618458],[-0.16885070502758,0.036394573748112,0.040096171200275]],[[-0.085027068853378,-0.087642692029476,-0.053286705166101],[0.052875768393278,-0.17459528148174,-0.25995847582817],[0.12395133823156,0.13005986809731,-0.13757833838463]],[[-0.16276448965073,0.025514394044876,0.10351115465164],[-0.035641726106405,0.089976839721203,0.13504801690578],[0.035174552351236,-0.019333129748702,0.2052855938673]],[[-0.13949503004551,0.24670518934727,-0.14328883588314],[-0.022794099524617,0.0044089807197452,-0.097189143300056],[0.033691726624966,-0.094899848103523,-0.0102718193084]],[[0.060598902404308,0.04155982658267,0.19313980638981],[-0.090111330151558,0.010994384996593,0.071145363152027],[0.078191474080086,0.035799384117126,0.082232736051083]],[[0.14598958194256,0.10197006911039,-0.20501266419888],[-0.030650662258267,0.08283357322216,-0.10125312954187],[-0.01537149399519,0.09533765912056,-0.062106322497129]],[[-0.13371801376343,0.18212586641312,-0.10448534786701],[-0.15670788288116,0.011289092712104,0.0084038954228163],[-0.10727731138468,0.03790270537138,-0.15950855612755]],[[0.18311209976673,0.044660415500402,0.088692866265774],[0.10312218219042,0.053726468235254,0.018404664471745],[-0.15584333240986,-0.052758727222681,-0.12695807218552]],[[0.046223107725382,0.13144913315773,-0.16933047771454],[0.068447515368462,0.0922611951828,0.041918393224478],[-0.13736538589001,0.0793496966362,0.039152804762125]],[[-0.036389291286469,0.0024924946483225,-0.01636298187077],[-0.032635822892189,-0.038599900901318,-0.05203515291214],[-0.072051629424095,-0.14347103238106,0.059717562049627]],[[0.15190081298351,-0.081685677170753,-0.13954104483128],[-0.11333422362804,0.09315001219511,-0.0075482283718884],[-0.07205231487751,0.10738050192595,0.045857086777687]],[[0.12637494504452,0.071653053164482,-0.039766188710928],[0.029389884322882,0.069088459014893,0.047414612025023],[-0.17745746672153,-0.11247390508652,0.074301764369011]],[[-0.0014390408759937,-0.16882489621639,-0.049301169812679],[-0.083811804652214,-0.14604000747204,-0.14178323745728],[-0.16381980478764,-0.19622273743153,-0.182601749897]],[[-0.078651413321495,0.092608653008938,-0.074804671108723],[0.10613492131233,-0.14866176247597,-0.043362848460674],[-0.16725273430347,0.014142208732665,-0.019647896289825]],[[0.19268694519997,0.043451875448227,0.077475100755692],[-0.14064493775368,0.054794244468212,0.10642982274294],[-0.12108494341373,0.092552870512009,-0.040284611284733]],[[-0.059440411627293,0.010227267630398,-0.16168197989464],[0.061810877174139,0.14915715157986,0.0150744356215],[0.12674300372601,-0.073216393589973,0.036750074476004]],[[-0.13613872230053,0.049739021807909,-0.033307544887066],[0.033233657479286,0.17594558000565,-0.3322694003582],[-0.05641632899642,0.038825284689665,-0.05437733605504]],[[0.13630716502666,-0.021783091127872,0.086945109069347],[0.011603221297264,-0.1097087264061,-0.03493670001626],[0.12160125374794,-0.1669335514307,-0.010703086853027]],[[0.15270632505417,0.15541957318783,-0.001532239606604],[0.06792738288641,-0.050207633525133,0.0009044156759046],[-0.073085501790047,-0.021439678966999,0.056252282112837]],[[-0.0025286329910159,-0.1830275952816,0.0031128111295402],[-0.035916600376368,-0.0244633667171,0.15628702938557],[0.050706826150417,-0.097368583083153,0.040121205151081]],[[-0.064506493508816,0.067347906529903,0.029224868863821],[-0.16080597043037,-0.047893084585667,-0.072055369615555],[-0.054069008678198,0.0075676757842302,0.017059780657291]],[[0.037377316504717,-0.0060557737015188,-0.11198782175779],[0.043473418802023,0.048245683312416,-0.038341864943504],[-0.01009279396385,0.10554514080286,-0.033227309584618]],[[0.081291295588017,-0.0026810767594725,0.070722095668316],[-0.044525749981403,0.042308513075113,-0.023557331413031],[-0.075764894485474,0.051520258188248,0.071533471345901]],[[-0.068768933415413,0.038098819553852,0.074289567768574],[-0.063965022563934,-0.14525382220745,-0.07911878824234],[0.075202986598015,-0.074970871210098,-0.031306453049183]],[[-0.025010075420141,-0.19288665056229,0.014127416536212],[-0.061416234821081,-0.095893554389477,-0.03966036438942],[-0.19175724685192,-0.13484880328178,0.11294129490852]],[[-0.10785681754351,-0.099774584174156,0.043426178395748],[-0.021671460941434,0.068316131830215,0.14698538184166],[0.093546688556671,0.079432941973209,0.067478649318218]],[[-0.25684678554535,0.012815552763641,0.12763784825802],[-0.099155217409134,-0.021564051508904,-0.04162310808897],[-0.021767124533653,0.07836727052927,0.032353147864342]],[[-0.074304968118668,-0.016217460855842,-0.044520493596792],[-0.049903459846973,0.073626659810543,0.088890440762043],[0.074220478534698,-0.020495645701885,0.060433939099312]],[[-0.10778067260981,0.0010276990942657,-0.064595863223076],[0.049388557672501,0.046045012772083,-0.080758914351463],[0.242276892066,0.0090091181918979,0.058872319757938]],[[0.19390942156315,-0.174181625247,0.01194959692657],[0.071202449500561,-0.10154494643211,0.14698658883572],[-0.0049235527403653,-0.13105425238609,0.11037259548903]],[[-0.045292027294636,-0.021462788805366,-0.084309682250023],[-0.0073117124848068,-0.0091990362852812,-0.053893528878689],[-0.069736450910568,-0.058221075683832,-0.018299167975783]],[[-0.017051750794053,0.11861667782068,-0.048869848251343],[0.069016799330711,0.06314904242754,-0.028663095086813],[-0.015830298885703,-0.034643687307835,-0.036075554788113]],[[0.19514779746532,-0.23985962569714,-0.087546229362488],[0.1087866127491,-0.011560317128897,-0.034968573600054],[0.13641534745693,0.21969549357891,0.048804629594088]],[[-0.071325726807117,0.046040154993534,-0.17091251909733],[0.012719583697617,-0.01372179761529,0.082163326442242],[-0.058697883039713,0.0099211195483804,-0.087444953620434]],[[0.22189384698868,0.051291208714247,0.020622646436095],[0.00037493029958569,-0.067650772631168,-0.11051069945097],[0.058670114725828,-0.20266003906727,-0.10677365958691]],[[-0.042669400572777,0.0085946964100003,-0.12523877620697],[0.038488533347845,-0.068027168512344,-0.10549090057611],[-0.14445823431015,-0.099017798900604,-0.062863670289516]],[[-0.054260294884443,-0.13520202040672,-0.10002725571394],[-0.026831030845642,-0.10404247790575,-0.0055859684944153],[0.053985957056284,0.024394363164902,-0.043614614754915]],[[-0.2205947637558,0.32806965708733,-0.071305274963379],[0.040551759302616,0.14313273131847,-0.075869709253311],[-0.26923459768295,0.28938338160515,-0.03488552942872]],[[0.013638229109347,-0.058509673923254,-0.14664261043072],[-0.081924416124821,-0.11803670227528,-0.034038763493299],[0.001986961113289,-0.016529127955437,-0.22368495166302]],[[-0.13795731961727,-0.030440462753177,-0.032854985445738],[-0.073337137699127,-0.0039140856824815,-0.043908827006817],[-0.13412560522556,-0.089026033878326,0.041915476322174]],[[0.092666245996952,-0.057155713438988,0.13005289435387],[-0.12338174134493,-0.044160932302475,0.051927648484707],[-0.0098727140575647,-0.076738357543945,0.069955758750439]],[[0.11792601644993,-0.15785846114159,0.028754318132997],[0.082620278000832,-0.022318851202726,-0.10651712864637],[0.069139033555984,-0.11794044822454,0.080543868243694]],[[0.068109847605228,-0.090783715248108,-0.14500172436237],[0.098917163908482,-0.0069600692950189,-0.1557589173317],[0.0076074292883277,0.12763594090939,0.0053449468687177]],[[-0.18308001756668,0.10856486111879,0.12404015660286],[-0.083894982933998,-0.064302496612072,0.11366051435471],[0.032044820487499,0.019220190122724,-0.11102946102619]],[[-0.0076240091584623,-0.11101866513491,-0.13257297873497],[-0.094655625522137,-0.099070519208908,-0.12745267152786],[0.35143375396729,0.18698517978191,0.086122795939445]],[[-0.18356893956661,-0.040861345827579,0.0094649223610759],[-0.027746815234423,-0.10791763663292,-0.028114799410105],[0.10063958913088,-0.024092081934214,-0.10031955689192]],[[-0.053217478096485,-0.04067449644208,0.01419311016798],[0.071594543755054,0.037946943193674,-0.15276016294956],[0.012061359360814,0.066160060465336,-0.13153512775898]],[[0.023082746192813,-0.11798349022865,-0.064634598791599],[-0.0078018908388913,-0.029111349955201,0.068501621484756],[0.070071808993816,0.011375986970961,-0.16801299154758]],[[0.11341904103756,0.069260634481907,0.14679419994354],[0.065168730914593,-0.039127476513386,-0.030252071097493],[-0.112723082304,-0.047887861728668,-0.12328588962555]],[[0.12644927203655,-0.0067261257208884,0.06648612767458],[-0.11558280140162,0.16905406117439,0.1238646581769],[-0.039704833179712,0.19689179956913,0.085238590836525]],[[-0.050488580018282,0.051881145685911,0.035482883453369],[-0.008938898332417,0.18293657898903,-0.016833901405334],[0.099606961011887,-0.18595272302628,-0.15027548372746]],[[0.013479279354215,-0.023724073544145,-0.034608501940966],[-0.14810240268707,0.09482092410326,-0.044370695948601],[-0.30865201354027,0.021097414195538,0.11961403489113]],[[0.09806002676487,0.23726652562618,-0.025225907564163],[-0.10995914041996,0.19462063908577,-0.0089056184515357],[-0.035237781703472,-0.11415834724903,0.0050212298519909]],[[0.061272285878658,-0.046914823353291,0.17437024414539],[0.046407159417868,-0.060196489095688,0.10350622981787],[-0.071099475026131,-0.11052372306585,0.11609937250614]],[[0.076644532382488,-0.081952817738056,0.03039501234889],[0.0085111651569605,-0.19573839008808,-0.083621807396412],[0.049281716346741,0.089345283806324,-0.024923419579864]],[[-0.14092816412449,0.026270966976881,0.013421035371721],[-0.0016065108356997,-0.086943328380585,0.051268760114908],[-0.029081674292684,-0.078311793506145,-0.10102267563343]],[[0.058632034808397,-0.060999762266874,-0.18594945967197],[0.11500310152769,-0.075980730354786,-0.043042581528425],[0.013681263662875,0.094722270965576,0.053877923637629]],[[-0.15834054350853,0.018586656078696,0.051629416644573],[-0.064629964530468,-0.024222290143371,-0.067997381091118],[-0.099787004292011,-0.17821773886681,-0.13372677564621]],[[-0.081199608743191,-0.071185931563377,-0.030027026310563],[0.15626160800457,0.10416328907013,0.029696725308895],[0.14570251107216,0.013247116468847,0.023917865008116]],[[0.086152128875256,0.11725186556578,0.032201051712036],[0.13225591182709,0.018840936943889,0.040404867380857],[-0.080416612327099,0.082872062921524,-0.02838565595448]],[[-0.10221727192402,-0.041158817708492,0.28387731313705],[-0.14653518795967,0.077169857919216,0.30768007040024],[-0.10292009264231,0.0061333640478551,0.31962794065475]],[[-0.059115048497915,-0.083707772195339,-0.054423470050097],[-0.10336749255657,-0.057408183813095,-0.083858668804169],[-0.34845557808876,-0.065616264939308,-0.012204620055854]],[[0.023745350539684,0.013182488270104,0.17789176106453],[-0.040367349982262,0.12990668416023,-0.032531440258026],[-0.14523814618587,0.097509823739529,-0.11077466607094]],[[-0.10516480356455,-0.022217078134418,0.0098505206406116],[-0.01615453325212,0.015787821263075,0.10893171280622],[0.065231658518314,-0.1413592249155,0.13361248373985]],[[0.076579824090004,0.051333904266357,-0.018119342625141],[-0.05782064422965,-0.041266895830631,-0.08124878257513],[0.2399564832449,-0.028376925736666,-0.076752744615078]],[[-0.069336503744125,-0.058632880449295,0.061416428536177],[-0.033421907573938,-0.091781973838806,-0.053408291190863],[0.054229330271482,-0.16579549014568,-0.056338805705309]],[[0.093440912663937,-0.14265727996826,-0.028193546459079],[0.084330089390278,-0.0043717194348574,0.099760226905346],[-0.049916461110115,0.20905196666718,-0.0032710814848542]],[[-0.23899321258068,0.071491897106171,0.099973380565643],[0.060089405626059,-0.05231412127614,-0.076094463467598],[0.045154452323914,0.055574305355549,-0.04764748364687]],[[-0.021981857717037,0.11081620305777,0.090594574809074],[0.039229288697243,-0.011321915313601,0.12816980481148],[-0.072338610887527,-0.12889048457146,0.055499896407127]],[[-0.079794496297836,0.19779281318188,-0.12187411636114],[-0.13187336921692,0.053440894931555,-0.068957485258579],[-0.17055578529835,0.030373137444258,-0.095051877200603]],[[0.084816515445709,-0.076262928545475,-0.11193531751633],[0.11804338544607,0.033106714487076,0.018314696848392],[-0.062478728592396,-0.049412082880735,0.033883556723595]],[[-0.042646244168282,-0.40203639864922,-0.1601328253746],[-0.013014656491578,-0.089484445750713,-0.10132502019405],[0.086151339113712,0.084797821938992,-0.044509578496218]],[[0.00015232908481266,-0.051640029996634,0.37651520967484],[0.023822145536542,0.020872242748737,0.16122342646122],[-0.14533770084381,-0.030600290745497,0.15253922343254]],[[-0.092849753797054,-0.18107235431671,-0.05706986412406],[0.10456009954214,-0.14317427575588,-0.31860128045082],[0.076380059123039,-0.11667334288359,0.099510379135609]],[[-0.017553627490997,-0.11783366650343,0.0091448295861483],[-0.068041041493416,-0.094402432441711,-0.0029643161688],[0.022108472883701,0.018659280613065,-0.10190689563751]],[[0.021940741688013,-0.079654760658741,0.055150203406811],[-0.010086303576827,-0.12480348348618,0.22324638068676],[0.0060847462154925,0.18609149754047,0.26759839057922]],[[0.170739620924,-0.034526076167822,0.011495119892061],[-0.024435799568892,-0.03923512622714,0.079076871275902],[-0.029434777796268,0.20510894060135,-0.028262617066503]],[[0.069749131798744,0.033191572874784,-0.14374496042728],[0.092210300266743,0.069612398743629,-0.078776895999908],[-0.017372949048877,-0.007872711867094,-0.019544968381524]],[[0.053448565304279,0.050996486097574,0.1330101788044],[0.094372183084488,-0.14403650164604,-0.0942003428936],[0.10159337520599,-0.071193113923073,-0.063245296478271]],[[0.044499184936285,0.04008724167943,0.20480811595917],[0.0057510924525559,-0.041398078203201,-0.0041517470963299],[0.010230829939246,-0.049543503671885,0.012900874949992]],[[-0.23910871148109,-0.12189998477697,-0.23114216327667],[-0.13908430933952,-0.063670910894871,-0.053778328001499],[-0.075250335037708,0.0089266411960125,-0.051223039627075]],[[0.015088690444827,-0.04341185092926,0.038281351327896],[0.12800148129463,-0.0088091203942895,0.11174663156271],[0.34958052635193,-0.022767569869757,-0.14377009868622]],[[0.020950742065907,0.068052195012569,0.30845221877098],[0.062233805656433,-0.10667958855629,-0.085973516106606],[0.050190296024084,-0.0054337079636753,-0.01061141025275]],[[0.051332615315914,0.0021223044022918,-0.030977198854089],[0.078179620206356,-0.0049029015935957,-0.16071055829525],[0.0067166462540627,-0.025356067344546,-0.12129934132099]],[[-0.14315503835678,0.071788959205151,0.17671492695808],[-0.060264237225056,0.098889343440533,0.20267872512341],[-0.11398628354073,-0.30756726861,-0.036069553345442]],[[0.1446445286274,-0.15291509032249,-0.12618233263493],[0.18091410398483,-0.13742445409298,-0.099143706262112],[0.1280857026577,-0.24477703869343,0.0085845505818725]],[[0.036823123693466,-0.09879170358181,-0.002720010234043],[0.047809060662985,0.033342804759741,0.13040806353092],[0.052280858159065,-0.11603966355324,0.020199857652187]],[[0.12239415198565,-0.15905766189098,-0.17866930365562],[0.1719172000885,0.061001442372799,-0.14331842958927],[0.17787332832813,0.10492742806673,0.039098296314478]],[[-0.0071990257129073,-0.035723105072975,0.054013658314943],[-0.026882283389568,-0.059887144714594,-0.11445562541485],[0.010146492160857,-0.18737161159515,-0.10764192789793]],[[0.0011489859316498,-0.066330350935459,0.042835664004087],[-0.089722648262978,0.03119751252234,-0.015460996888578],[-0.06590411812067,-0.11957281827927,0.016846800222993]],[[-0.079225987195969,-0.098184548318386,-0.020403793081641],[0.036858018487692,-0.0068068187683821,0.16903632879257],[0.046464778482914,0.099524147808552,0.045923642814159]],[[-0.016945252195001,-0.015649804845452,0.041965890675783],[-0.0077641126699746,0.0046396171674132,-0.030857155099511],[0.052111480385065,0.074073798954487,0.15223591029644]],[[0.019956350326538,-0.073671288788319,-0.086847849190235],[0.029519306495786,0.066568695008755,0.0097514726221561],[0.097953245043755,0.042634751647711,-0.10920667648315]],[[-0.060194872319698,-0.047010511159897,0.25490820407867],[-0.037165462970734,-0.1109371855855,-0.024449778720737],[-0.095931313931942,-0.058963160961866,-0.094142720103264]],[[-0.041579388082027,-0.073106624186039,-0.025621546432376],[0.058811444789171,-0.1694251447916,-0.046406246721745],[0.1633607596159,0.066663347184658,-0.023015022277832]],[[0.12382356822491,-0.019934885203838,0.019173670560122],[0.2745016515255,-0.19533544778824,-0.0056702634319663],[0.055507950484753,-0.12704725563526,-0.00016301011783071]],[[0.0091606704518199,0.068304724991322,-0.0067250193096697],[0.0359942689538,0.051701001822948,-0.046414211392403],[-0.067384481430054,-0.14987730979919,-0.035103876143694]],[[-0.14027707278728,0.024298863485456,-0.05221563950181],[0.12128513306379,0.08034048974514,-0.12436053901911],[-0.095241144299507,0.037415951490402,-0.15346752107143]],[[-0.062700569629669,0.04611012712121,0.033679153770208],[-0.091755039989948,0.054735578596592,-0.0089288577437401],[-0.12431394308805,-0.050499439239502,0.00085827137809247]],[[0.061534490436316,0.05736343935132,-0.085495509207249],[0.0031884924974293,0.07915785163641,-0.17194972932339],[0.048877995461226,0.0026312025729567,-0.0088563151657581]],[[-0.11313927173615,0.063961885869503,0.047768838703632],[-0.017885103821754,-0.0014428439317271,-0.083108775317669],[-0.052692219614983,-0.14030092954636,-0.04065440967679]],[[-0.016853380948305,-0.061732150614262,-0.017952680587769],[0.055623672902584,-0.037314265966415,0.02603318169713],[0.25262063741684,0.10870913416147,-0.058805610984564]],[[-0.036978684365749,-0.085653267800808,0.10669901221991],[0.017528895288706,-0.011151882819831,-0.0046525960788131],[-0.1459087729454,-0.086047425866127,0.21441000699997]],[[-0.15376909077168,0.25341239571571,-0.067801184952259],[-0.17187283933163,0.14009900391102,-0.0028825306799263],[-0.015944592654705,0.070382200181484,-0.0018306890269741]],[[-0.1066552400589,-0.034884389489889,0.10036150366068],[-0.10271495580673,0.049022700637579,0.065583229064941],[0.016348319128156,0.06540122628212,-0.026718761771917]],[[0.21446397900581,-0.034686509519815,-0.16390976309776],[-0.016466608271003,-0.1057843118906,0.16022665798664],[-0.13790705800056,-0.10431516170502,-0.19613900780678]]],[[[0.069703847169876,-0.10605509579182,-0.068341307342052],[-0.0041019232012331,-0.00029829569393769,-0.093293443322182],[0.20554815232754,-0.06262469291687,-0.065908506512642]],[[0.21318158507347,-0.2406567633152,0.20099315047264],[0.061001025140285,-0.32646119594574,0.23843517899513],[-0.12958531081676,-0.14022806286812,0.10300738364458]],[[0.12440383434296,-0.069713823497295,-0.075653664767742],[0.056517940014601,-0.021566832438111,-0.0014429623261094],[0.099095694720745,0.041801448911428,0.016702421009541]],[[-0.057199619710445,-0.10442999005318,-0.023012481629848],[-0.10186316072941,-0.15533930063248,-0.10359912365675],[-0.01887041144073,0.14079311490059,-0.024352576583624]],[[-0.015150042250752,0.0052468725480139,-0.10762715339661],[-0.014671920798719,-0.039525657892227,-0.086165718734264],[0.13418473303318,0.14891895651817,0.049328070133924]],[[0.089122541248798,-0.018985070288181,0.06285247951746],[-0.16077210009098,0.2614209651947,-0.0041967867873609],[-0.073747105896473,0.18749108910561,0.016001077368855]],[[0.077109411358833,-0.14121586084366,-0.034985780715942],[0.11376775056124,0.0088753830641508,0.094805173575878],[-0.10474461317062,-0.057293605059385,0.11014974862337]],[[-0.1077433899045,-0.1240700930357,-0.025431429967284],[0.10290701687336,-0.11863518506289,-0.037896182388067],[0.18923807144165,0.016075577586889,0.1035473048687]],[[0.086451187729836,-0.0020207935012877,0.042683213949203],[0.0389169678092,-0.046969469636679,0.032572947442532],[0.027067333459854,-0.041269663721323,0.029641671106219]],[[-0.042877815663815,-0.1341328471899,-0.12026821821928],[-0.11324829608202,0.026871562004089,-0.10422351956367],[-0.39874684810638,0.054784040898085,-0.13188742101192]],[[0.18518520891666,0.19355565309525,0.11897370219231],[0.018243484199047,-0.15541715919971,-0.076402500271797],[0.006753726862371,-0.1575843244791,-0.029684843495488]],[[-0.092188432812691,-0.021863266825676,-0.0029044030234218],[-0.11819826066494,-0.149986743927,-0.084598831832409],[0.075895935297012,-0.0038183173164725,0.019410254433751]],[[-0.097976095974445,-0.12053259462118,-0.04816772043705],[-0.085523009300232,-0.010069210082293,-0.0043781641870737],[0.024644114077091,0.061615001410246,-0.16159518063068]],[[0.096093155443668,-0.042759351432323,0.013562225736678],[0.059626214206219,-0.043894954025745,-0.011814102530479],[-0.03749293088913,-0.1197674870491,0.21010246872902]],[[-0.0021467709448189,0.010100619867444,0.065830126404762],[-0.11815485358238,-0.013169636949897,0.10352077335119],[-0.049239099025726,0.01173026766628,-0.06677833199501]],[[0.0079751508310437,0.17535324394703,-0.13356159627438],[-0.041516952216625,0.16296960413456,-0.1564364284277],[-0.044532906264067,0.19438757002354,-0.0728425309062]],[[0.068900391459465,-0.021811738610268,-0.043333042412996],[0.16418026387691,-0.029208645224571,-0.0043099597096443],[0.21130806207657,-0.019045257940888,-0.11533282697201]],[[0.011270336806774,-0.17449682950974,0.20198927819729],[0.047785349190235,-0.26794880628586,0.0080107627436519],[0.21942809224129,-0.17924256622791,0.029147805646062]],[[0.046531412750483,0.13619111478329,0.0012697585625574],[-0.14811535179615,0.17586506903172,-0.10270085930824],[0.20289482176304,0.17590175569057,-0.085280440747738]],[[-0.14828416705132,0.16153661906719,0.11988015472889],[-0.083231560885906,0.03438912704587,-0.0032505830749869],[0.11196318268776,0.12108798325062,0.052072025835514]],[[0.034702241420746,-0.034092545509338,0.093976706266403],[-0.037104837596416,-0.12168652564287,-0.055874586105347],[0.024849502369761,-0.10783282667398,0.070956386625767]],[[-0.073264211416245,0.1722549945116,-0.014836843125522],[-0.012306935153902,0.16582708060741,0.00027467202744447],[-0.11675185710192,0.094393312931061,0.026331696659327]],[[0.14151629805565,-0.11694836616516,0.033233299851418],[-0.036312174052,-0.085721299052238,-0.017372963950038],[0.17318390309811,-0.018553705886006,0.17203286290169]],[[0.042383372783661,0.00083865207852796,0.02092008665204],[0.0092777675017715,-0.15327689051628,-0.15179005265236],[0.048603691160679,0.074188180267811,-0.16085056960583]],[[-0.080981656908989,-0.05233633890748,-0.064780540764332],[-0.083141811192036,0.075919970870018,-0.10162292420864],[-0.1435994207859,0.13166892528534,-0.0024939216673374]],[[0.070776522159576,0.086593590676785,0.25698593258858],[-0.051377467811108,-0.057068679481745,0.042983397841454],[-0.025426024571061,0.13013899326324,-0.18209527432919]],[[0.14767876267433,0.10607112944126,0.045438896864653],[-0.051534112542868,0.068240836262703,0.002645731670782],[0.037272401154041,-0.10141909867525,-0.031633619219065]],[[0.071712151169777,-0.025736458599567,-0.072469592094421],[-0.014964299276471,-0.056521344929934,-0.11115361750126],[0.14674210548401,-0.068720757961273,-0.011234475299716]],[[-0.0092915575951338,-0.0056825475767255,-0.058219775557518],[-0.089353114366531,0.034651361405849,0.065688945353031],[0.079337678849697,0.083924345672131,0.15864858031273]],[[-0.11858425289392,0.070331811904907,-0.045663349330425],[-0.19899564981461,0.011058257892728,-0.032493125647306],[0.071821600198746,-0.021671455353498,-0.06816153973341]],[[0.081238090991974,0.096690431237221,0.23559413850307],[0.079290181398392,-0.0034484032075852,0.084970444440842],[-0.12173385173082,-0.045969177037477,0.20907689630985]],[[0.073940508067608,-0.10126672685146,0.05055420473218],[0.046249311417341,-0.14951309561729,-0.021671537309885],[0.21151956915855,0.11197212338448,-0.044891379773617]],[[-0.19656066596508,-0.026832254603505,-0.13207633793354],[0.049948789179325,-0.11416059732437,-0.027464495971799],[0.012800463475287,0.011190781369805,-0.085410602390766]],[[-0.17770040035248,-0.040511328727007,-0.074471287429333],[0.054478704929352,-0.03377827256918,0.034940533339977],[0.079125456511974,0.044910628348589,0.15310078859329]],[[0.072133719921112,-0.090131908655167,-0.1330804079771],[-0.031489565968513,-0.052643500268459,0.032511863857508],[0.10084421187639,0.023150602355599,0.095671340823174]],[[-0.2136073410511,-0.044664207845926,0.13256940245628],[-0.10525090247393,0.035331729799509,0.049779627472162],[-0.21051770448685,-0.059513736516237,0.097140945494175]],[[0.049846526235342,0.095018602907658,0.19648185372353],[-0.00058170396368951,-0.12112350016832,0.00049313326599076],[0.10148943960667,0.015002293512225,0.026562882587314]],[[-0.061071772128344,0.1448312997818,0.058854185044765],[-0.0018033118685707,0.15259711444378,-0.059238564223051],[0.009336699731648,-0.056162729859352,0.030582804232836]],[[0.087094403803349,-0.0094031589105725,0.17751675844193],[0.017371945083141,-0.1222123503685,0.047345072031021],[0.080350615084171,-0.12695579230785,-0.015006305649877]],[[0.11851318925619,-0.0090536074712873,0.078643426299095],[-0.087698623538017,-0.051500156521797,0.095830619335175],[0.046982504427433,-0.05671864002943,-0.10827625542879]],[[0.1631548255682,-0.023835627362132,0.15770597755909],[0.022485245019197,-0.070791639387608,-0.029264291748405],[0.008162978105247,-0.062005087733269,-0.056560166180134]],[[0.040701441466808,0.072422832250595,-0.081280916929245],[-0.0063246134668589,-0.044451031833887,0.090220659971237],[-0.0053278896957636,0.07074286043644,0.062231410294771]],[[0.049402218312025,-0.014777211472392,0.076070293784142],[-0.10863860696554,-0.031528737396002,-0.028166526928544],[0.1674679517746,-0.089345954358578,-0.090453460812569]],[[-0.13893540203571,-0.047788146883249,0.074134282767773],[-0.19989004731178,0.0092327734455466,-0.013172579929233],[0.010116953402758,0.078033640980721,-0.044118382036686]],[[-0.12730725109577,-0.1612104177475,-0.089684903621674],[-0.011552928946912,-0.074459925293922,-0.018551371991634],[-0.029624918475747,-0.086591340601444,0.011582294479012]],[[-0.075760498642921,-0.10864938050508,0.00040319838444702],[-0.054839253425598,0.024498170241714,-0.010487236082554],[-0.082736276090145,-0.058470919728279,0.076178140938282]],[[-0.1020575761795,0.013977123424411,-0.08069758862257],[-0.18209370970726,-0.033304713666439,-0.099327318370342],[-0.13863131403923,-0.11760382354259,0.095308564603329]],[[0.14923205971718,0.1125113889575,0.027303734794259],[-0.023545507341623,-0.045284774154425,-0.083771087229252],[0.022922351956367,-0.067220941185951,0.018030686303973]],[[0.1054982021451,-0.10032645612955,0.08719552308321],[-0.025345254689455,-0.022935064509511,0.082229427993298],[-0.033703409135342,-0.049799732863903,0.13605000078678]],[[0.0059259696863592,-0.11800845712423,0.061136230826378],[0.02582985535264,0.018136804923415,0.029649026691914],[0.11027729511261,0.040010675787926,0.042423404753208]],[[0.031408660113811,0.11305640637875,-0.10942512005568],[-0.081659317016602,-0.067367248237133,-0.10637461394072],[-0.10703061521053,0.13587705790997,-0.099998086690903]],[[-0.017124092206359,-0.00021857411775272,-0.092053927481174],[0.15395468473434,0.13409259915352,-0.11641857773066],[0.070220232009888,-0.076813541352749,-0.057319726794958]],[[-0.099306464195251,-0.064290001988411,-0.050724133849144],[-0.18397350609303,-0.15383179485798,-0.045522466301918],[-0.043797858059406,0.0046327267773449,0.04145585373044]],[[0.063147597014904,0.021112805232406,0.034345157444477],[0.0075084259733558,-0.014414365403354,0.033665589988232],[0.097615957260132,-0.045690272003412,0.28507429361343]],[[-0.033965814858675,0.17934101819992,-0.13471035659313],[-0.096278622746468,0.16906346380711,-0.057042732834816],[-0.043316334486008,0.15403881669044,0.092865727841854]],[[-0.01310065202415,-0.11156510561705,0.11245309561491],[0.22494389116764,-0.028890572488308,0.086355693638325],[-0.054668184369802,-0.045926038175821,-0.036392591893673]],[[-0.0049193422310054,0.25220304727554,-0.0085481349378824],[-0.06206813454628,0.074775815010071,-0.082696177065372],[-0.18795685470104,-0.039566408842802,-0.12132204324007]],[[0.035820815712214,-0.0088023785501719,-0.099246792495251],[-0.1560692191124,-0.081767655909061,-0.20502598583698],[0.13451334834099,0.15687789022923,-0.035775262862444]],[[0.089780539274216,0.069391213357449,-0.098676487803459],[0.066875718533993,-0.089781776070595,0.055999908596277],[0.035404480993748,-0.14889487624168,0.079085677862167]],[[-0.10220590978861,-0.078539095818996,0.10543181747198],[-0.028784489259124,0.10066650807858,0.23869018256664],[-0.108483299613,-0.15743274986744,0.29911109805107]],[[0.056909158825874,-0.19577603042126,-0.084814243018627],[0.017047112807631,-0.018015414476395,-0.073133207857609],[0.073316186666489,-0.00074232538463548,-0.2743943631649]],[[-0.088032610714436,-0.00085771188605577,0.00084254244575277],[0.02118318900466,-0.16696844995022,0.051290493458509],[-0.13303415477276,-0.020814379677176,0.20133352279663]],[[0.041067805141211,-0.076088778674603,-0.050070017576218],[-0.076777815818787,-0.079410418868065,0.10230219364166],[0.051402859389782,-0.089733146131039,-0.022959560155869]],[[0.22813975811005,-0.20538987219334,-0.013038603588939],[0.17555968463421,-0.16738012433052,-0.094963371753693],[0.24023868143559,-0.087750799953938,0.010405919514596]],[[-0.16718325018883,-0.017583321779966,0.11900820583105],[-0.071504160761833,0.079803913831711,0.11012338101864],[-0.20315703749657,0.11684527993202,0.19023585319519]],[[0.068121537566185,-0.19090127944946,0.019574074074626],[0.20456250011921,0.018727986142039,-0.076392024755478],[0.11865081638098,0.050323974341154,-0.017637992277741]],[[-0.095090441405773,-0.11902332305908,-0.14483699202538],[-0.019237447530031,0.035314340144396,0.038282413035631],[-0.047518417239189,0.028388414531946,-0.028642611578107]],[[-0.21728464961052,0.13405449688435,-0.098357252776623],[-0.26230221986771,-0.039399996399879,-0.24886335432529],[-0.039462249726057,0.11473628133535,-0.26145586371422]],[[-0.017041759565473,0.017700310796499,0.13621006906033],[0.078891925513744,0.047395184636116,0.10085193812847],[-0.065856620669365,-0.016421323642135,-0.036884885281324]],[[0.26952749490738,0.069867849349976,-0.11201701313257],[0.040959306061268,-0.1620554625988,-0.12489432096481],[0.13099007308483,-0.075653776526451,-0.10118158906698]],[[-0.007488755043596,-0.096768364310265,0.14074994623661],[0.050328820943832,-0.11011418700218,-0.10855946689844],[0.038586307317019,0.042295347899199,-0.1244730129838]],[[-0.088673062622547,0.014388316310942,0.13900411128998],[-0.011664731428027,0.010177657008171,0.11512227356434],[-0.050533108413219,0.06162628903985,0.10648620128632]],[[0.11137280613184,-0.20710791647434,0.099642671644688],[-0.14120365679264,-0.04076949134469,-0.03794352710247],[-0.06594655662775,-0.050579760223627,-0.050266236066818]],[[-0.099438287317753,0.13534058630466,-0.0080926446244121],[-0.020717445760965,-0.036144129931927,-0.079521030187607],[-0.12242430448532,-0.10974225401878,-0.017790470272303]],[[0.099811248481274,-0.10029722750187,0.14599815011024],[-0.024063108488917,-0.053947355598211,-0.072728306055069],[-0.076641470193863,0.028506709262729,-0.008317619562149]],[[-0.10553240776062,0.02448670193553,-0.00057673925766721],[-0.1678898781538,-0.021237004548311,-0.060048837214708],[-0.029997484758496,0.057800840586424,0.053633984178305]],[[0.03349569067359,0.25748971104622,0.072256676852703],[-0.023307211697102,-0.016232252120972,-0.11902455985546],[-0.043686576187611,-0.07837638258934,0.11821772903204]],[[0.038546469062567,0.12920704483986,-0.15696284174919],[-0.0015932217938825,-0.030976075679064,-0.036964051425457],[-0.070370130240917,-0.099362447857857,0.0088977944105864]],[[-0.011914619244635,-0.035710833966732,0.033203884959221],[-0.099525310099125,-0.12097437679768,-0.12245751172304],[0.11434359848499,-0.03012360073626,0.017530297860503]],[[-0.18487463891506,-0.00040097915916704,0.035524141043425],[-0.13804237544537,0.071158431470394,-0.099917896091938],[-0.030867796391249,-0.15170641243458,-0.038193807005882]],[[-0.19005627930164,-0.1110986918211,-0.023410553112626],[-0.14683087170124,-0.00073301093652844,0.056525804102421],[0.07082425057888,0.16738145053387,0.24218656122684]],[[-0.20671878755093,-0.082854419946671,0.050908554345369],[-0.14307096600533,-0.023065894842148,0.15484035015106],[0.033008895814419,-0.045960072427988,0.023838605731726]],[[0.084334790706635,-0.1482291072607,-0.029589980840683],[-0.12335880845785,-0.17541721463203,-0.078452236950397],[0.060412380844355,-0.085095666348934,-0.026728469878435]],[[0.025116235017776,0.097674556076527,-0.091526567935944],[-0.094895169138908,-0.074843734502792,-0.042122550308704],[-0.1461786031723,0.035088621079922,-0.05766573548317]],[[0.15750390291214,-0.050418931990862,-0.10227306932211],[-0.068252071738243,0.022394014522433,-0.0075136623345315],[-0.10323672741652,0.023391082882881,-0.088922210037708]],[[-0.038506962358952,-0.058612324297428,-0.075363211333752],[-0.063069559633732,-0.17375156283379,-0.057145785540342],[-0.046299256384373,-0.019008509814739,-0.066369771957397]],[[0.14990063011646,0.0022437714505941,0.12059470266104],[0.012986103072762,-0.067479826509953,0.059061389416456],[-0.14756751060486,-0.013825574889779,-0.031456265598536]],[[0.059673778712749,0.059276971966028,-0.14265245199203],[0.0041741160675883,0.03108804486692,0.028011737391353],[-0.14596542716026,-0.063411869108677,0.081738598644733]],[[0.0091656465083361,-0.082858435809612,-0.024317545816302],[0.021707028150558,-0.083135217428207,0.16822625696659],[0.11007279902697,0.078619338572025,0.085688769817352]],[[-0.02113937959075,-0.0096410680562258,0.12822403013706],[-0.0099992025643587,-0.052223343402147,-0.030317904427648],[0.038530167192221,0.085400238633156,-0.057844635099173]],[[0.11188999563456,-0.013794220983982,0.00044101662933826],[0.13093876838684,-0.024242665618658,-0.033578254282475],[0.12216022610664,-0.10372476279736,0.069837935268879]],[[-0.0077088908292353,0.011157878674567,0.074265286326408],[0.21325659751892,0.0055596926249564,0.080289833247662],[0.13406243920326,-0.060125160962343,0.15336893498898]],[[0.10050861537457,0.02585700340569,0.072530716657639],[0.08345028758049,-0.036224808543921,-0.0026069954037666],[0.092022977769375,0.0031906811054796,-0.047848992049694]],[[-0.076164484024048,0.037089765071869,-0.23957087099552],[0.020683977752924,-0.038859713822603,-0.13232159614563],[-0.051914684474468,0.014701290987432,-0.036722730845213]],[[-0.14794580638409,0.10615208745003,0.098326168954372],[0.11023684591055,-0.003586596576497,-0.18134307861328],[0.07790669053793,-0.23811723291874,-0.18906663358212]],[[-0.084532029926777,-0.058013696223497,0.015961682423949],[0.02307440713048,0.041423693299294,-0.1097738519311],[-0.054774213582277,0.21085923910141,0.047130037099123]],[[0.044497724622488,-0.0096395453438163,-0.11328331381083],[-0.036741141229868,-0.079366363584995,-0.17789921164513],[0.085835389792919,-0.030539561063051,0.033841319382191]],[[-0.0073387669399381,0.0076493108645082,0.044720694422722],[-0.097973674535751,-0.083266995847225,-0.1016853749752],[0.011593868024647,-0.023391030728817,-0.02105400338769]],[[0.033814027905464,-0.10564821958542,-0.18536289036274],[-0.091967590153217,0.053334455937147,0.079511120915413],[0.084074169397354,0.087107010185719,-0.092152170836926]],[[-0.016537632793188,-0.053123708814383,0.04698333516717],[0.10732997953892,-0.024273071438074,-0.075761154294014],[0.11163699626923,0.060030940920115,0.1840830296278]],[[-0.03919855505228,-0.0075329965911806,0.017477869987488],[-0.061430025845766,-0.056280560791492,-0.045345652848482],[0.056407608091831,0.079897545278072,0.00092525198124349]],[[-0.044159021228552,0.01256868056953,-0.009896264411509],[0.0088419420644641,-0.036208130419254,0.0085091423243284],[0.14067435264587,-0.12179289758205,0.11016735434532]],[[-0.0027996238786727,-0.035409070551395,-0.081160046160221],[-0.070082888007164,-0.037485107779503,-0.045012392103672],[0.042808141559362,-0.010655059479177,0.083801254630089]],[[-0.11867243051529,0.09753592312336,-0.14459542930126],[0.17753811180592,0.0098674958571792,0.021941935643554],[-0.12366446107626,0.042687635868788,-0.077943190932274]],[[-0.10067937523127,0.10985005646944,0.15038280189037],[-0.042968973517418,-0.0089356536045671,0.068316526710987],[-0.049179803580046,-0.072445727884769,-0.091170221567154]],[[-0.059829253703356,-0.07643985003233,0.0058899805881083],[-0.11614894121885,0.062915220856667,0.28628796339035],[-0.014315325766802,-0.0096054757013917,0.080517582595348]],[[-0.045092936605215,-0.047292392700911,0.066023446619511],[-0.039855398237705,0.075597673654556,-0.10429499298334],[0.1733520179987,0.021617319434881,-0.11952538788319]],[[-0.10153117775917,0.19973914325237,0.10882142931223],[-0.18545517325401,0.12827305495739,0.016691068187356],[-0.11724753677845,-0.072249382734299,-0.039403464645147]],[[-0.017912928014994,-0.019381342455745,-0.046038273721933],[0.015473704785109,-0.0067786863073707,-0.13281862437725],[-0.049199733883142,-0.092283070087433,-0.11197907477617]],[[-0.15338173508644,-0.032833240926266,-0.10605703294277],[-0.13349352777004,0.078129142522812,-0.062790893018246],[0.066167451441288,0.18416804075241,-0.094892702996731]],[[-0.040149748325348,-0.058375779539347,-0.09055732190609],[-0.07397647947073,-0.075637020170689,0.0056219133548439],[0.0013275712262839,-0.021022913977504,-0.025596408173442]],[[-0.0037152501754463,-0.056264899671078,0.046944726258516],[0.073764078319073,0.0013500100467354,0.018615977838635],[0.049849178642035,-0.072552338242531,0.16032691299915]],[[0.20309655368328,0.034515429288149,-0.17314147949219],[-0.032148476690054,-0.0032478526700288,0.1865526586771],[-0.086825296282768,-0.092216968536377,0.18329431116581]],[[-0.0038758700247854,-0.069732360541821,0.06003974378109],[0.0049475813284516,-0.113704174757,0.050421740859747],[0.047732461243868,0.073140323162079,-0.064314544200897]],[[0.022213881835341,0.01770780980587,0.064192824065685],[0.018640641123056,0.070060342550278,0.038557425141335],[-0.05550155043602,0.062479708343744,-0.0055648763664067]],[[-0.034865874797106,-0.0082027344033122,0.0135643100366],[-0.11587898433208,-0.038482185453176,-0.027206467464566],[-0.040755845606327,-0.045805379748344,0.05091842636466]],[[-0.11477836966515,-0.069594264030457,-0.088165909051895],[-0.037259314209223,0.1337788850069,0.042268566787243],[0.046185344457626,0.12596960365772,0.012557584792376]],[[0.18922451138496,0.10483057796955,-0.052716583013535],[0.15673904120922,-0.051649238914251,-0.27545356750488],[-0.10996913164854,0.013851696625352,-0.0092754671350121]],[[0.045634143054485,-0.027160478755832,-0.18054793775082],[-0.012798044830561,-0.04208605363965,-0.090352222323418],[0.099414929747581,0.10048675537109,0.077725283801556]],[[0.10547190159559,-0.075574442744255,-0.039187200367451],[0.014816106297076,-0.12309123575687,-0.0027318394277245],[-0.016758397221565,0.01390253379941,0.088344618678093]],[[-0.14929854869843,-0.062090557068586,0.034017097204924],[-0.12659227848053,-0.068553477525711,-0.11551804840565],[-0.011914484202862,0.028488831594586,0.065515719354153]],[[-0.034943368285894,-0.0042946892790496,-0.072027519345284],[-0.003368470352143,0.038707863539457,0.13245467841625],[0.029907520860434,-0.068096742033958,0.19585508108139]],[[-0.19795745611191,0.014423986896873,-0.024609729647636],[-0.12514291703701,-0.18273435533047,-0.061402224004269],[0.14493092894554,-0.11932925134897,0.009029951877892]],[[-0.066604465246201,-0.065987922251225,-0.021293902769685],[-0.048879541456699,0.16578906774521,-0.10276156663895],[0.14070165157318,0.13123722374439,-0.019959643483162]],[[0.099275648593903,-0.074552856385708,-0.069342762231827],[-0.043564528226852,-0.06355594098568,-0.0801787301898],[0.01811158657074,-0.05378445237875,-0.05613823980093]],[[0.14413692057133,-0.16639976203442,0.25236609578133],[-0.057968784123659,0.029962474480271,0.1489519327879],[-0.14324349164963,0.13870395720005,0.1256930232048]],[[0.042727969586849,0.043634623289108,0.12348774820566],[0.1969014108181,0.037637304514647,-0.19411262869835],[0.10341053456068,-0.0076305349357426,-0.13346640765667]],[[-0.11039737612009,-0.042873900383711,-0.027004154399037],[-0.13952450454235,0.11587931960821,-0.051375400274992],[-0.17029781639576,0.10250584036112,-0.1306754052639]]],[[[0.074960105121136,0.01356087718159,0.13887929916382],[0.02774466201663,0.058666907250881,0.1362179517746],[0.04661513864994,0.18380692601204,0.13444828987122]],[[0.0052222870290279,-0.02902221493423,-0.15322467684746],[0.02441743016243,-0.083692729473114,-0.15039817988873],[-0.18739400804043,-0.10157281160355,0.063376277685165]],[[-0.0068401610478759,-0.010857481509447,0.14063780009747],[0.26442530751228,0.19763362407684,-0.16685962677002],[0.30428794026375,-0.076125100255013,0.13540345430374]],[[-0.29633361101151,-0.10332591831684,0.03989901766181],[-0.083772152662277,0.0050589530728757,0.059912815690041],[-0.026487026363611,-0.27690359950066,0.00079252652358264]],[[0.11225216090679,0.038616571575403,0.30676546692848],[0.024632642045617,-0.043103855103254,0.21924071013927],[-0.04101774841547,-0.062928646802902,0.12614457309246]],[[-0.042456693947315,0.033446218818426,-0.0049805478192866],[-0.031509775668383,0.10446739941835,0.085304580628872],[-0.17911906540394,-0.041687689721584,-0.045180477201939]],[[0.048135325312614,-0.11761095374823,-0.015010666102171],[0.16885653138161,-0.033099453896284,0.054932445287704],[0.10612427443266,0.018236249685287,0.072934433817863]],[[0.05706238001585,0.1292919665575,0.098205290734768],[-0.097093336284161,0.049205955117941,0.0011265986831859],[-0.036129605025053,-0.10282231122255,-0.19841742515564]],[[0.16027329862118,0.083311729133129,-0.12996490299702],[-0.016251567751169,0.0049519375897944,0.16347472369671],[0.20610246062279,-0.19344538450241,-0.042309321463108]],[[0.012112484313548,-0.30839970707893,-0.14414384961128],[0.1293647736311,0.04189745336771,0.051984213292599],[0.20173516869545,-0.11677324026823,0.042689234018326]],[[0.010893194936216,0.00092095305444673,-0.0082140751183033],[-0.075784407556057,-0.093671806156635,-0.097377583384514],[-0.028095657005906,0.0015130820684135,-0.019491987302899]],[[0.1012440174818,-0.0070764124393463,0.19441555440426],[-0.018630562350154,-0.06131948158145,-0.012109165079892],[-0.008308531716466,-0.03711012750864,0.10890188068151]],[[0.0051055126823485,-0.23455606400967,0.04518073797226],[-0.0085933152586222,-0.1448869407177,-0.17023733258247],[0.081158898770809,-0.06665027141571,0.011730659753084]],[[0.11184542626143,-0.075376600027084,-0.11503937840462],[0.024606555700302,-0.081010907888412,-0.043317001312971],[0.0099978474900126,-0.010858680121601,-0.10464657098055]],[[0.2264067530632,0.17856429517269,0.03536344319582],[-0.054113507270813,0.057297199964523,0.067698918282986],[-0.062399204820395,-0.002277951920405,-0.029013019055128]],[[-0.070648021996021,-0.021803360432386,-0.14422836899757],[-0.033589947968721,-0.010199006646872,-0.092705219984055],[-0.11625967174768,-0.1443082690239,-0.31611236929893]],[[-0.0061382157728076,0.048076223582029,0.0060163848102093],[-0.25979670882225,-0.011110559105873,0.066402249038219],[0.084944322705269,-0.025432778522372,0.041559711098671]],[[0.083435073494911,-0.16997271776199,-0.13407105207443],[0.15068097412586,0.045673932880163,-0.063788294792175],[0.078092366456985,0.24364651739597,0.07445952296257]],[[-0.027179129421711,-0.044772878289223,-0.01750479452312],[-0.012674886733294,-0.046483710408211,0.0071059702895582],[0.13733023405075,0.10455871373415,0.12050601840019]],[[0.17414838075638,-0.17621199786663,-0.28194215893745],[0.11957548558712,-0.11826331168413,-0.11278145760298],[0.069316945970058,-0.18189905583858,0.077830612659454]],[[-0.096818543970585,0.026767786592245,-0.079744003713131],[-0.16127556562424,-0.18716961145401,-0.10495419800282],[-0.10345073789358,-0.15468141436577,-0.1145660802722]],[[0.13433642685413,-0.17966043949127,-0.15035405755043],[0.095253996551037,-0.051834873855114,0.089595079421997],[-0.20146146416664,-0.23239924013615,0.15172733366489]],[[-0.02669670060277,-0.059566456824541,0.14347279071808],[0.037631954997778,-0.062460914254189,0.003748805494979],[0.12513184547424,0.052878927439451,-0.051425844430923]],[[-0.0028464824426919,0.050674114376307,-0.0058380360715091],[-0.09047344326973,-0.11026825755835,-0.14348301291466],[-0.084719620645046,-0.15549923479557,-0.17048354446888]],[[-0.079368904232979,0.036410383880138,-0.057744283229113],[-0.14379905164242,-0.052709970623255,0.10884829610586],[-0.17202162742615,-0.048536457121372,0.081134833395481]],[[0.22580227255821,-0.12299005687237,-0.15342925488949],[0.1404076218605,0.21417027711868,-0.1246752589941],[0.030181035399437,0.029576973989606,-0.21997933089733]],[[0.1414847522974,0.13756576180458,-0.070781208574772],[0.050192411988974,0.14646989107132,0.14365290105343],[-0.05702055990696,0.20556461811066,0.03719474375248]],[[0.097184166312218,0.0010462341597304,0.11409793794155],[-0.020618477836251,-0.033130474388599,0.047314126044512],[-0.055683076381683,0.14777961373329,0.069509454071522]],[[-0.032362475991249,-0.050428662449121,-0.13419398665428],[-0.19433967769146,-0.069037757813931,-0.067785240709782],[-0.21886274218559,-0.027078460901976,0.070369236171246]],[[0.085100755095482,-0.059829153120518,-0.03734964504838],[0.095987074077129,0.059992741793394,0.024046458303928],[0.15867061913013,0.095283828675747,-0.017079619690776]],[[0.051984984427691,-0.16807091236115,-0.072910204529762],[0.0050628269091249,-0.058464962989092,0.063594795763493],[-0.05497208237648,-0.043893001973629,0.12017095834017]],[[0.089911721646786,-0.053420826792717,0.029415290802717],[-0.12264436483383,-0.084145113825798,0.063636176288128],[0.12612624466419,0.027517633512616,-0.066361032426357]],[[0.033267386257648,-0.084214195609093,0.062863230705261],[-0.0085191829130054,0.010418277233839,0.1667278110981],[-0.065790452063084,-0.021524349227548,0.084532491862774]],[[-0.12103897333145,0.16139775514603,0.05671950802207],[0.062188219279051,0.014409330673516,-0.044838275760412],[0.086988091468811,-0.096070401370525,0.047445300966501]],[[-0.07818628102541,0.044737845659256,0.081095889210701],[-0.0074062701314688,-0.035037633031607,-0.167032122612],[-0.10599625855684,-0.11675492674112,-0.026800690218806]],[[0.17447116971016,-0.012363833375275,-0.053036324679852],[0.092045523226261,-0.085632167756557,-0.098081827163696],[-0.088249586522579,-0.23740047216415,-0.1246629729867]],[[0.01286116335541,-0.22155439853668,-0.097613453865051],[-0.0067117097787559,0.014299537055194,0.10768651217222],[-0.087030313909054,-0.077757656574249,-0.039433538913727]],[[-0.031209591776133,-0.02632038295269,-0.21687214076519],[0.0037393667735159,-0.013193554244936,-0.14707931876183],[0.062018811702728,0.03221582993865,-0.12907280027866]],[[-0.03519444167614,-0.094081446528435,0.13253991305828],[-0.11729297041893,-0.066596895456314,0.01798771135509],[0.0048212590627372,-0.051382135599852,0.17824786901474]],[[0.017186915501952,0.044829826802015,-0.17400060594082],[0.14864736795425,-0.085795670747757,-0.042781684547663],[0.1418272703886,-0.2462772578001,0.070254907011986]],[[-0.090444266796112,0.022930137813091,0.0058076502755284],[-0.18201045691967,-0.018555691465735,0.071800783276558],[-0.0070640440098941,0.039640735834837,-0.10419198125601]],[[-0.14772242307663,-0.0073906891047955,-0.1891882866621],[0.019403971731663,0.19497355818748,-0.058929041028023],[-0.12059564143419,-0.0024906087201089,0.055400069802999]],[[0.090022966265678,0.015888119116426,0.026812164112926],[-0.026596881449223,-0.14547868072987,-0.085148490965366],[-0.046453185379505,-0.27337327599525,-0.10574504733086]],[[-0.056245237588882,-0.013650517910719,0.0024416239466518],[0.023345427587628,-0.034285340458155,0.042241305112839],[-0.10332714021206,0.025525607168674,-0.04677140712738]],[[-0.16809873282909,-0.029086159542203,-0.13475050032139],[0.12245688587427,-0.18193785846233,-0.03829775378108],[0.14112085103989,-0.071422576904297,-0.16964223980904]],[[-0.19908691942692,-0.061757653951645,0.071386121213436],[-0.0918228328228,0.046272486448288,-0.0050399987958372],[0.021486528217793,0.059682663530111,-0.082430861890316]],[[0.012424794025719,0.097255364060402,-0.031578257679939],[-0.030796268954873,0.029640255495906,0.050558991730213],[-0.05382153019309,0.0643220692873,0.018378099426627]],[[0.053441520780325,0.02607642300427,0.0031116150785238],[0.066564336419106,-0.0021459378767759,-0.017238480970263],[0.023229507729411,-0.13559943437576,-0.075155407190323]],[[0.17963895201683,-0.16918051242828,0.02950450219214],[-0.016830381006002,0.025110924616456,-0.15934109687805],[0.033958185464144,0.18624573945999,-0.1551661491394]],[[0.15642721951008,0.035895369946957,-0.12727592885494],[0.022148322314024,0.0017957291565835,-0.038480289280415],[-0.15352448821068,-0.041659031063318,0.013278232887387]],[[-0.13724946975708,0.10533178597689,-0.18156115710735],[-0.046118203550577,-0.069200426340103,0.046489473432302],[-0.041451003402472,-0.12486995011568,-0.084226973354816]],[[0.038987118750811,0.10819333046675,0.057013120502234],[-0.17278935015202,0.17951348423958,0.055288471281528],[-0.1799438893795,0.027350198477507,0.072687581181526]],[[-0.042127795517445,-0.067186094820499,0.083505988121033],[0.03041167370975,0.010700333863497,-0.053648229688406],[-0.0095822485163808,-0.018507050350308,-0.022921245545149]],[[0.050295993685722,0.10397271066904,-0.067401811480522],[0.12078511714935,-0.013600366190076,-0.011698446236551],[-0.01820339076221,-0.05750372633338,0.11134164780378]],[[-0.037810407578945,0.098228543996811,-0.033671371638775],[0.035105817019939,0.16387072205544,0.0356515198946],[0.015710268169641,-0.064344719052315,0.04549577832222]],[[-0.15865740180016,-0.1513274461031,-0.043034218251705],[-0.051060553640127,0.11098852753639,-0.14538113772869],[0.026397138834,0.040638338774443,-0.075179748237133]],[[-0.025865880772471,0.16079513728619,-0.057571716606617],[0.029977656900883,-0.0057111848145723,0.25270587205887],[-0.33283153176308,0.17778642475605,0.079690508544445]],[[-0.05188662186265,-0.068343929946423,-0.061604175716639],[-0.18225827813148,-0.27042886614799,-0.25000220537186],[-0.055701982229948,-0.15416222810745,-0.077326752245426]],[[0.18129312992096,-0.054164215922356,-0.24667409062386],[0.0055772196501493,-0.12972041964531,-0.074759423732758],[-0.087662108242512,-0.036063984036446,0.13904282450676]],[[-0.12350601702929,0.010976194404066,-0.02813958376646],[-0.2263256162405,-9.5146788225975e-05,0.036032173782587],[0.010966431349516,0.25656107068062,0.071214102208614]],[[-0.0041709067299962,-0.16252170503139,-0.13080236315727],[-0.028515974059701,0.0020975447259843,-0.15372876822948],[-0.019142523407936,-0.13880518078804,-0.2931259572506]],[[-0.12128386646509,-0.062948033213615,0.02361323684454],[-0.029718309640884,0.052008356899023,-0.12800557911396],[0.012712711468339,0.0033647746313363,-0.0074952812865376]],[[0.024368532001972,0.043778322637081,0.084727182984352],[-0.12187757343054,0.0030487684998661,-0.066987179219723],[0.10415493696928,0.15657739341259,0.10488623380661]],[[0.095944546163082,0.057920519262552,-0.065347135066986],[0.040706761181355,-0.035114012658596,-0.090229675173759],[0.034777287393808,-0.019500257447362,-0.21051296591759]],[[0.03609200194478,-0.093116700649261,-0.13975529372692],[0.025480741634965,-0.020583042874932,0.018752900883555],[0.079218417406082,0.099269144237041,-0.052164278924465]],[[0.30845963954926,-0.27399685978889,0.15954446792603],[0.053544551134109,-0.16601473093033,0.016453079879284],[0.024855550378561,-0.09521096944809,-0.12839451432228]],[[0.22894422709942,0.056927427649498,0.023434732109308],[-0.050206482410431,0.057757906615734,-0.10281208902597],[-0.28829210996628,-0.11915304511786,0.14196039736271]],[[-0.02647096849978,-0.15832936763763,-0.069537073373795],[-0.10226880013943,-0.077608488500118,-0.14489455521107],[-0.061882711946964,-0.099299639463425,-0.11010114103556]],[[0.030484206974506,0.054615393280983,0.27319175004959],[-0.064281970262527,-0.052267953753471,0.12132672220469],[0.15289407968521,0.022228663787246,-0.021521020680666]],[[-0.0063995365053415,0.054773360490799,0.040671337395906],[0.052685290575027,-0.046979665756226,-0.1297165453434],[0.10416715592146,-0.06982034444809,-0.28344005346298]],[[0.078535340726376,0.035603791475296,-0.016099533066154],[-0.090945713222027,-0.019425896927714,-0.016485569998622],[-0.065873228013515,-0.0049314550124109,0.074427053332329]],[[-0.087874598801136,0.077762857079506,0.14853069186211],[-0.048884436488152,-0.041465189307928,0.04277666285634],[0.071993038058281,0.048727199435234,0.018928872421384]],[[-0.0025618800427765,-0.17039254307747,-0.091300033032894],[0.0046368427574635,-0.14222501218319,-0.24040320515633],[-0.017599437385798,-0.19209609925747,-0.0038966892752796]],[[0.27677267789841,0.0071433135308325,0.037662360817194],[0.11056270450354,0.044305745512247,-0.06279481947422],[0.047733884304762,0.27262985706329,-0.25049009919167]],[[0.014048172160983,-0.19513559341431,-0.27224832773209],[0.084086231887341,-0.09058902412653,-0.30637884140015],[-0.010574617423117,-0.029782081022859,-0.14918747544289]],[[-0.045425906777382,0.008022085763514,-0.23931741714478],[0.075229197740555,-0.098567612469196,0.070263341069221],[-0.11078124493361,-0.15312653779984,0.1275656670332]],[[-0.0036137802526355,-0.0098992753773928,-0.048388566821814],[-0.17690877616405,0.10907568782568,-0.2134131193161],[-0.09676668047905,0.12581729888916,0.10500413924456]],[[-0.12544719874859,-0.12911696732044,0.10861636698246],[-0.00045339291682467,-0.096491932868958,0.022667653858662],[-0.083195678889751,-0.067268639802933,0.058305431157351]],[[-0.094627633690834,0.24202919006348,0.032754238694906],[-0.092449560761452,0.070417426526546,-0.034608792513609],[-0.16772493720055,0.10394942015409,0.072074800729752]],[[0.029379785060883,-0.15582384169102,-0.052105277776718],[-0.012027686461806,-0.17727854847908,-0.0022787267807871],[0.019845627248287,-0.16282740235329,0.13289549946785]],[[-0.27938178181648,0.094572305679321,-0.016648637130857],[-0.049416147172451,-0.056095980107784,0.086588606238365],[0.012935630045831,-0.15116941928864,0.044174186885357]],[[0.084352992475033,0.11753863841295,-0.050981312990189],[0.10633762180805,-0.023238945752382,-0.069895125925541],[0.0756990686059,0.093243196606636,0.12707683444023]],[[0.10892804712057,0.080947615206242,-0.15612860023975],[0.077173382043839,-0.031398005783558,0.16115902364254],[0.034081049263477,-0.17312507331371,0.018711242824793]],[[-0.066932082176208,-0.024726802483201,0.08458237349987],[-0.14346186816692,-0.061489272862673,0.024234142154455],[0.012751033529639,-0.02556911110878,-0.11702339351177]],[[-0.18184311687946,0.038408309221268,-0.013746563345194],[-0.00071656575892121,-0.010543367825449,0.041565667837858],[-0.044172845780849,-0.012709052301943,0.054363049566746]],[[0.015215580351651,-0.0050753387622535,0.054871521890163],[-0.074687965214252,0.009626217186451,-0.11778618395329],[-0.0067209089174867,0.20946989953518,0.024925341829658]],[[0.053960409015417,-0.043216668069363,0.048708401620388],[0.27290877699852,0.14187894761562,0.085186429321766],[-0.16283704340458,-0.053674425929785,-0.081672959029675]],[[0.18741978704929,0.12710906565189,-0.042140141129494],[0.12050114572048,0.087946332991123,0.17309087514877],[-0.11012329906225,-0.028255285695195,-0.022341361269355]],[[-0.039082713425159,0.058032564818859,0.22092789411545],[0.024349719285965,-0.083684727549553,-0.013081712648273],[0.020109901204705,0.068722389638424,-0.10620375722647]],[[-0.21328754723072,-0.21800050139427,-0.10612963885069],[0.020649362355471,0.029824892058969,-0.096033446490765],[-0.07183738052845,0.14946857094765,0.12153187394142]],[[-0.10133977979422,0.0082660196349025,-0.12377014756203],[-0.026712507009506,-0.17607329785824,-0.077386513352394],[0.18971693515778,0.26938223838806,0.066341184079647]],[[-0.051562536507845,-0.27558034658432,-0.14018861949444],[0.15886467695236,-0.046706568449736,-0.2649262547493],[0.052312441170216,-0.030947640538216,-0.085053227841854]],[[-0.17104336619377,-0.023747432976961,0.37213298678398],[0.08429229259491,-0.014231712557375,0.086523719131947],[-0.033829245716333,-0.070190407335758,-0.19582840800285]],[[-0.043036393821239,0.23690791428089,0.26293107867241],[0.12919238209724,0.10657718032598,-0.03349132090807],[0.13567239046097,-0.052608158439398,-0.19417709112167]],[[0.030617812648416,0.1073332503438,0.12531992793083],[0.014572926796973,-0.021234530955553,0.18333451449871],[-0.052412271499634,-0.016273701563478,0.2303663790226]],[[-0.052111689001322,0.10475936532021,0.24314373731613],[-0.25456136465073,-0.042669821530581,0.23735490441322],[-0.1672103703022,-0.21397210657597,0.053247563540936]],[[0.083269566297531,0.05723862349987,-0.079273097217083],[0.0414081774652,-0.19531066715717,-0.12541235983372],[0.01080178655684,0.030929610133171,-0.20462492108345]],[[0.056741468608379,-0.03127695992589,-0.037222191691399],[0.094641968607903,0.027388272807002,0.02872340194881],[-0.20111986994743,0.1729281693697,0.082875929772854]],[[-0.11757346987724,-0.043716665357351,0.17776402831078],[-0.032739758491516,-0.019347904250026,-0.093155279755592],[0.14887143671513,-0.038257796317339,0.018005736172199]],[[0.20311163365841,-0.017122255638242,0.033540301024914],[0.0035157185047865,0.027246400713921,0.20058169960976],[-0.029577575623989,-0.056721311062574,0.0076544294133782]],[[-0.31374645233154,-0.042679000645876,0.21156567335129],[-0.13847732543945,0.081498987972736,-0.12788434326649],[0.094829142093658,0.11647379398346,-0.076694339513779]],[[-0.0012148274108768,0.0089539177715778,0.044059541076422],[0.092398002743721,0.070227481424809,0.096776075661182],[0.13134664297104,0.16712620854378,0.13972061872482]],[[0.069711163640022,0.13531881570816,0.28628760576248],[-0.1464087665081,-0.027507279068232,0.06602793186903],[-0.16731731593609,-0.14204992353916,0.14381705224514]],[[-0.025972554460168,0.019879318773746,0.08894107490778],[-0.19283500313759,0.025280445814133,-0.15290811657906],[-0.13185857236385,0.052857667207718,0.032667566090822]],[[-0.053450550884008,-0.17160779237747,-0.064575225114822],[-0.0046330620534718,-0.025592563673854,-0.057519394904375],[0.020890682935715,-0.03405823931098,0.1818942129612]],[[0.24268011748791,-0.049695085734129,-0.13487388193607],[0.076006166636944,-0.092523992061615,0.13615192472935],[-0.054107528179884,-0.064632013440132,0.088775433599949]],[[0.1030518040061,0.1497965157032,-0.036561284214258],[0.011534927412868,-0.023617750033736,-0.002433467656374],[-0.05328144133091,-0.056030720472336,0.031207084655762]],[[0.14280119538307,0.076103515923023,0.087376967072487],[-0.051290828734636,-0.030173504725099,0.033593695610762],[0.017302118241787,-0.24718415737152,-0.13843800127506]],[[0.23522539436817,-0.046888086944818,0.17435117065907],[-0.051387261599302,0.23403631150723,0.25291210412979],[-0.18491341173649,0.051241602748632,0.11619026958942]],[[-0.094055414199829,0.023207487538457,0.083773754537106],[-0.058712758123875,0.018540529534221,0.043983489274979],[0.011932128109038,0.11798233538866,0.0035689591895789]],[[0.05747439712286,0.030429942533374,-0.064948700368404],[-0.047065943479538,-0.035795327275991,0.0053679458796978],[-0.037293907254934,0.033720042556524,-0.014817873947322]],[[0.028106223791838,-0.18463429808617,0.098384946584702],[0.050229497253895,-0.032235193997622,-0.17215746641159],[-0.12855006754398,-0.082242913544178,-0.29598957300186]],[[-0.070685215294361,-0.12161256372929,-0.046291913837194],[-0.08639570325613,-0.1741431504488,0.0069069983437657],[0.16565243899822,0.16182437539101,-0.044421244412661]],[[-0.13243016600609,-0.03214780241251,-0.12575736641884],[-0.0041926172561944,0.17762872576714,0.034336283802986],[-0.033945467323065,-0.024839052930474,0.10039805620909]],[[0.14288868010044,-0.097521409392357,0.047943744808435],[-0.08173243701458,-0.019468443468213,0.30938717722893],[-0.017437912523746,0.065760754048824,0.20342999696732]],[[0.19884516298771,0.21313689649105,-0.072594463825226],[-0.11606159806252,0.065675392746925,-0.020275432616472],[-0.086204074323177,0.15219737589359,-0.12617139518261]],[[-0.05877735838294,-0.22147819399834,0.040585804730654],[0.11244375258684,-0.11518494784832,-0.091428190469742],[0.17377607524395,0.14831525087357,-0.1344889998436]],[[-0.014971141703427,-0.068415611982346,0.18891568481922],[0.069263197481632,0.13853089511395,-0.0062359594739974],[0.0050777071155608,-0.050685252994299,-0.05343159660697]],[[-0.12883472442627,-0.12380098551512,0.12896026670933],[-0.076812066137791,0.0087104085832834,0.06926516443491],[-0.068426661193371,0.14777180552483,-0.057282783091068]],[[-0.22031807899475,-0.10372129827738,0.023806503042579],[-0.085583403706551,0.13210029900074,-0.0054249996319413],[-0.044225748628378,0.11146302521229,0.14563830196857]],[[-0.098135337233543,-0.15244589745998,-0.11642609536648],[-0.060901794582605,-0.030628414824605,-0.10302396863699],[0.016358196735382,0.043988112360239,0.13416197896004]],[[0.10356936603785,0.041702773422003,0.0096756955608726],[-0.0097987251356244,-0.10383751988411,0.039864618331194],[0.086296439170837,0.023753309622407,0.073127038776875]],[[-0.098035164177418,0.021530603989959,-0.17116259038448],[-0.19659021496773,-0.13651299476624,-0.051493417471647],[-0.092921018600464,-0.060132410377264,-0.16250571608543]],[[0.1378917992115,0.18188439309597,-0.11224339902401],[0.02712132781744,0.05241546779871,0.023169560357928],[0.10917460173368,0.067605242133141,-0.0045924484729767]],[[-0.14061038196087,-0.00048841023817658,0.11971306055784],[0.084106750786304,0.079534269869328,0.014718518592417],[-0.032525978982449,0.27158460021019,-0.037406455725431]],[[-0.043257094919682,-0.10796164721251,0.14569602906704],[0.047486752271652,-0.090866677463055,0.023142943158746],[-0.059149160981178,0.17652568221092,0.0070965732447803]],[[-0.072241887450218,0.025034470483661,-0.12501485645771],[0.045938048511744,-0.026619993150234,-0.017534269019961],[0.1504315584898,-0.12420079112053,0.05589396879077]],[[-0.075902886688709,0.1192991361022,0.14627657830715],[0.073344498872757,-0.015760239213705,-0.01552727073431],[0.029861528426409,0.06010639294982,-0.064585588872433]]],[[[-0.090088151395321,-0.082690611481667,0.039224360138178],[0.0071637351065874,0.021724728867412,0.020749924704432],[-0.0070062438026071,0.080180518329144,0.029135745018721]],[[0.027795085683465,-0.017828425392509,-0.034258767962456],[-0.0042902198620141,0.03750804066658,0.078939244151115],[0.028599238023162,-0.082219079136848,-0.014836360700428]],[[-0.063204288482666,0.054214790463448,-0.0026260989252478],[0.030405100435019,0.036462087184191,0.00046002227463759],[0.034005388617516,-0.012077127583325,-0.016631372272968]],[[0.026374312117696,0.079497180879116,-0.014489991590381],[-0.027995409443974,0.05227841809392,0.025104619562626],[0.0061319163069129,-0.023547245189548,-0.041520081460476]],[[-0.035558890551329,-0.033927459269762,-0.011410841718316],[-0.031088512390852,0.053663931787014,0.021331086754799],[0.03922363370657,-0.020489484071732,0.037540391087532]],[[-0.011382740922272,-0.0019406680949032,-0.022347509860992],[0.015896836295724,0.026568064466119,-0.073852464556694],[-0.0092224702239037,0.020069982856512,0.069937087595463]],[[-0.00087969785090536,0.0057564955204725,-0.022771332412958],[0.019909035414457,0.013909654691815,0.062566287815571],[-0.060322415083647,0.052996266633272,-0.062948495149612]],[[-0.0096068056300282,-0.044674020260572,-0.0029311424586922],[-0.05509752035141,0.046268288046122,-0.024285143241286],[-0.0055889599025249,-0.013637961819768,0.0015323508996516]],[[-0.082201898097992,-0.061901148408651,0.071186646819115],[0.053894117474556,0.09858488291502,-0.045369826257229],[-0.031270369887352,0.0090943966060877,-0.03924535214901]],[[0.039369482547045,0.072903200984001,0.011288314126432],[0.041290026158094,-0.022294705733657,-0.0045042168349028],[-0.032031200826168,0.0089086387306452,0.055725138634443]],[[0.028278857469559,0.0056878454051912,-0.023345803841949],[-0.039823982864618,-0.021361045539379,-0.0092198196798563],[0.084730960428715,-0.016300925984979,0.051300674676895]],[[0.0022141458466649,0.021916870027781,-0.034292362630367],[0.069203779101372,-0.022137198597193,-0.045701030641794],[0.037664156407118,-0.019763246178627,0.046340588480234]],[[0.0044096177443862,-0.0049188705161214,-0.011840426363051],[0.027410808950663,-0.068452037870884,-0.13179256021976],[-0.057590011507273,0.057361774146557,0.0073354369960725]],[[0.062576174736023,0.090011671185493,0.018740320578218],[-0.018674461171031,-0.012620381079614,0.0301428809762],[0.0315126106143,0.0080717811360955,0.033353623002768]],[[2.2385385818779e-05,-0.0008216739515774,-0.033403653651476],[0.084704972803593,0.021762348711491,0.011804959736764],[-0.022514920681715,0.01787699200213,0.025172851979733]],[[0.019674794748425,0.03064620308578,0.012148141860962],[-0.02470682375133,0.011728881858289,0.041851978749037],[0.046166602522135,-0.04987083747983,-0.011769972741604]],[[0.008239071816206,0.012578182853758,0.036893423646688],[0.015559354797006,0.0038062094245106,0.016549600288272],[-0.021607965230942,0.017026267945766,-0.011479946784675]],[[-0.0070628714747727,-0.035941187292337,0.019807413220406],[0.040115386247635,0.0035856198519468,-0.019763519987464],[-0.00045559802674688,0.0014875988708809,0.059805165976286]],[[-0.054047074168921,0.055331621319056,-0.042080461978912],[-0.041555009782314,0.063992485404015,-0.0021451148204505],[0.064500749111176,-0.013607010245323,-0.0077400733716786]],[[0.095412559807301,-0.020784024149179,-0.072626374661922],[0.060819026082754,0.00064472068333998,-0.02873414196074],[-0.0053879306651652,0.081388406455517,-0.011175814084709]],[[-0.021855782717466,0.00020038097864017,0.025472957640886],[-0.040981397032738,0.010285251773894,0.086606331169605],[-0.022394604980946,-0.025318417698145,-0.058039288967848]],[[0.067736066877842,0.014950452372432,-0.018754431977868],[-0.047425344586372,0.020365620031953,0.010692526586354],[-0.042319413274527,0.043836310505867,0.032505493611097]],[[-0.034798927605152,0.038228709250689,0.013980095274746],[0.024970304220915,-0.015560707077384,0.072150982916355],[-0.047017455101013,0.0069568869657815,0.0082412008196115]],[[0.0097001902759075,0.017894415184855,-0.013014680705965],[-0.095576070249081,0.027722675353289,0.040661342442036],[-0.058972682803869,0.012046264484525,-0.0021384626161307]],[[0.024385930970311,-0.0040773567743599,0.041508812457323],[-0.019291117787361,0.03980615735054,0.077099151909351],[-0.055503599345684,-0.062828063964844,0.018400253728032]],[[-0.0071461540646851,-0.020709626376629,0.017836507409811],[0.014778904616833,0.0073117385618389,0.052701074630022],[-0.0040709623135626,-0.021444011479616,-0.013931914232671]],[[-0.097104996442795,-0.025939336046576,-0.015727272257209],[-0.0088240895420313,-0.01065874285996,-0.0065348916687071],[-0.027027383446693,0.052941851317883,0.0038756041321903]],[[-0.049186281859875,0.069601781666279,-0.023000670596957],[0.015090766362846,0.022579126060009,0.042389336973429],[0.040858652442694,-0.0034292060881853,0.0086319893598557]],[[0.0035587225575,0.017073202878237,0.030965832993388],[-0.058663751929998,-0.091597817838192,0.052855607122183],[0.032798912376165,-0.022584047168493,0.026871621608734]],[[0.044100739061832,-0.028992395848036,0.0005361870280467],[0.0021574420388788,-0.068084754049778,0.034463543444872],[-0.041043110191822,-0.01421264000237,0.072714522480965]],[[0.016323152929544,-0.035703241825104,0.044087491929531],[-0.044043801724911,-0.033157993108034,-0.068018026649952],[0.016108453273773,-0.089554131031036,0.046611528843641]],[[-0.066974639892578,-0.052563779056072,0.017683720216155],[0.03714120388031,0.0079821106046438,-0.013572289608419],[0.049618870019913,0.047217298299074,0.0040423097088933]],[[-0.045705128461123,-0.026280924677849,-0.044190533459187],[-0.030705563724041,0.04260254278779,-0.013824469409883],[0.021732727065682,0.064057394862175,0.055803347378969]],[[-0.00496622081846,-0.030807638540864,-0.0098633533343673],[-0.034690201282501,-0.010117578320205,-0.0055867307819426],[0.00091158569557592,0.0067045083269477,-0.029339669272304]],[[0.0194390732795,0.023785253986716,-0.0028333473019302],[0.061876785010099,0.014163218438625,0.010514338500798],[-0.071120485663414,-0.11214984208345,0.041060533374548]],[[-0.066024750471115,0.020962871611118,-0.0065457611344755],[-0.042421173304319,0.083236314356327,0.018049763515592],[0.0011725197546184,0.077286057174206,0.051793571561575]],[[-0.008635357953608,0.073279984295368,0.0017654928378761],[-0.082413919270039,-0.028921358287334,0.022317718714476],[-0.050469037145376,0.078608304262161,0.015440131537616]],[[-0.027363900095224,0.018009224906564,-0.014869414269924],[-0.039027649909258,-0.0027720544021577,-0.080934181809425],[0.0074855796992779,0.037127941846848,0.068537287414074]],[[0.036039292812347,0.037401046603918,-0.050557799637318],[-0.013906355947256,0.0034738054964691,-0.0034299155231565],[0.011297573335469,0.036136660724878,-0.011684161610901]],[[0.021196702495217,0.028680292889476,0.015834135934711],[0.04497666656971,-0.029722021892667,0.034019608050585],[-0.0083388919010758,0.041671045124531,-0.024996362626553]],[[0.037987608462572,0.029319439083338,0.03447038307786],[0.011690810322762,-0.048787780106068,-0.056556213647127],[-0.06751399487257,0.0051382789388299,0.040220785886049]],[[0.023868650197983,-0.053677946329117,0.03891459107399],[0.0064226910471916,-0.018640605732799,0.0054749227128923],[-0.010319136083126,-0.063512533903122,0.0063135172240436]],[[0.021618783473969,-0.05481144413352,-0.027213154360652],[-0.0095508489757776,0.051162771880627,0.051929783076048],[0.0064112334512174,0.061591394245625,0.055721152573824]],[[0.00088818924268708,0.025951344519854,-0.049331292510033],[0.052595611661673,0.049994178116322,-0.063644424080849],[0.033451098948717,-0.013160029426217,0.05080782994628]],[[-0.076905749738216,0.081492237746716,0.023742051795125],[-0.080942183732986,0.055023480206728,-0.012396093457937],[-0.056464359164238,-0.0056628105230629,0.021740384399891]],[[0.060954660177231,-0.068306915462017,-0.028236528858542],[0.04012855514884,0.01634494587779,0.019053651019931],[0.017832085490227,0.017944782972336,0.023045286536217]],[[-0.0288245677948,-0.024138139560819,0.0021891167853028],[0.04024913161993,-0.033404089510441,-0.049647785723209],[-0.052343539893627,-0.031072609126568,-0.00029674920369871]],[[0.045640677213669,0.0080474754795432,-0.080008752644062],[-0.080179944634438,0.023718321695924,0.057090427726507],[-0.018178762868047,-0.078867934644222,-0.023469647392631]],[[-0.1245451644063,-0.029923874884844,0.016736725345254],[-0.054784528911114,0.036347210407257,-0.053260959684849],[0.0073757991194725,0.055028043687344,0.057911533862352]],[[-0.014029987156391,0.032129555940628,0.0019395615672693],[0.01307525485754,0.063429765403271,-0.021707752719522],[-0.023161137476563,-0.0155731998384,-0.0046391622163355]],[[-0.00035383878275752,0.063463240861893,-0.013677647337317],[-0.013302613981068,-0.022455101832747,0.0017727721715346],[0.054999653249979,0.025969127193093,0.054085418581963]],[[0.011714978143573,-0.015501622110605,0.039757985621691],[-0.011819635517895,0.0304658357054,0.0068154744803905],[-0.01750654540956,-0.018339974805713,0.035771146416664]],[[0.03384293243289,0.024391097947955,0.061809349805117],[0.081201404333115,0.013244008645415,0.14282895624638],[-0.0066388472914696,0.044148162007332,0.068297818303108]],[[0.027429135516286,0.001795589341782,-0.077835530042648],[0.047562342137098,0.05245316401124,-0.009230419062078],[0.030205938965082,-0.013834666460752,0.031567636877298]],[[-0.017185093834996,0.011207552626729,0.037664495408535],[0.022544329985976,0.063991002738476,0.0083500947803259],[-0.051264595240355,-0.036142081022263,-0.035893399268389]],[[-0.093258529901505,-0.0088742841035128,-0.0035805304069072],[-0.040364876389503,0.06093430891633,0.00090207392349839],[0.023772245272994,0.02536204457283,-0.047416619956493]],[[0.0048020440153778,0.078214406967163,0.041951511055231],[-0.00090728071518242,-0.0034068555105478,0.0089652677997947],[0.023077765479684,-0.038405269384384,-0.049622397869825]],[[-0.022836349904537,0.029531458392739,0.00094611570239067],[0.032808851450682,0.047435436397791,0.0051177437417209],[0.063866086304188,0.00372712360695,-0.01308654434979]],[[-0.018511708825827,-0.029082385823131,-0.038671731948853],[-0.031758408993483,-0.0010352588724345,0.013525133952498],[0.017039962112904,-0.02525257691741,-0.019475407898426]],[[0.016184218227863,0.058428131043911,0.069224968552589],[-0.013881822116673,-0.070326864719391,-0.058989357203245],[-0.030887076631188,0.072644881904125,0.060671754181385]],[[0.0012848131591454,-0.0013623114209622,0.015964651480317],[0.0072494074702263,0.048953425139189,0.027587095275521],[-0.054038230329752,-0.022008344531059,-0.015075931325555]],[[0.040415097028017,0.00015254778554663,-0.012612074613571],[-0.016469078138471,0.032946933060884,-0.02048072591424],[-0.077436096966267,0.0089537184685469,-0.027441227808595]],[[-0.03251614049077,0.037651050835848,-0.0056133139878511],[-0.019577970728278,0.057544086128473,0.0046831103973091],[-0.0069043408147991,-0.026632975786924,0.001523053040728]],[[-0.037974126636982,-0.0087590515613556,-0.02530918456614],[-0.038392212241888,0.002585617126897,0.030011121183634],[-0.018147656694055,-0.005736481398344,-0.043922379612923]],[[-0.020042188465595,0.0037404140457511,0.003938521258533],[-0.016278348863125,0.011783627793193,-0.017918486148119],[-0.039011757820845,0.039983469992876,0.04292406141758]],[[0.034990075975657,0.035638574510813,0.05321441590786],[-0.080801092088223,-0.033183265477419,-0.00039584716432728],[0.033508326858282,-0.049757026135921,0.044385824352503]],[[-0.035567726939917,0.036333728581667,-0.033211167901754],[0.022354731336236,-0.032925292849541,-0.0062964078970253],[-0.03969756513834,0.0041141477413476,0.10720656067133]],[[0.02688679471612,0.039431992918253,-0.049918904900551],[0.010126021690667,0.0018110974924639,-0.038822643458843],[0.02908219397068,-0.012601817958057,-0.038518439978361]],[[0.033115781843662,0.037184074521065,-0.083198726177216],[0.0022281506098807,0.036886636167765,-0.038221567869186],[0.002023468259722,0.097214229404926,-0.054141145199537]],[[-0.013499779626727,-0.067537665367126,-0.013809470459819],[0.039709560573101,0.022637160494924,-0.0097377290949225],[-0.026573579758406,0.0081567810848355,0.023066036403179]],[[0.0035670474171638,-0.034572325646877,-0.015989650040865],[0.0085844062268734,0.027910754084587,0.0043262080289423],[-0.046296898275614,-0.022618377581239,0.0060221315361559]],[[0.0046471003443003,-0.026529816910625,-0.00067995005520061],[-0.022808061912656,-0.051396403461695,0.0065440074540675],[0.0019008382223547,0.039222273975611,-0.023494960740209]],[[-0.0081679094582796,0.028596263378859,0.047728922218084],[-0.017875615507364,-0.026908399537206,0.029848581179976],[0.00068773096427321,0.07835078984499,0.01781833358109]],[[-0.049520652741194,0.086480118334293,-0.027149168774486],[-0.040999863296747,0.02666325122118,0.026456655934453],[-0.0062256781384349,-0.013271402567625,0.025435384362936]],[[-0.04861768335104,-0.16312381625175,0.024895129725337],[-0.057911060750484,0.13476844131947,-0.089719615876675],[-0.059085041284561,0.097463518381119,0.070089057087898]],[[-0.0054800589568913,-0.024433922022581,-0.12723368406296],[0.013941571116447,0.038155600428581,-0.017401738092303],[0.0092334495857358,-0.025656098499894,-0.0061588450334966]],[[0.042408213019371,-0.0042999978177249,0.026935225352645],[-0.019704615697265,-0.05222399532795,-0.016405712813139],[0.040623925626278,0.00742680253461,-0.0053201066330075]],[[-0.01114802248776,0.10135671496391,0.033387068659067],[0.045726422220469,0.025400169193745,-0.05200719833374],[0.0209382455796,-0.061951503157616,-0.086512714624405]],[[0.0018523638136685,0.041302144527435,0.057796943932772],[-0.020699165761471,-0.002190490718931,0.0050788121297956],[-0.013260778039694,0.003374271793291,-0.006683487445116]],[[-0.0057259458117187,-0.12175541371107,-0.030925791710615],[0.020524261519313,0.021137181669474,-0.11352872103453],[-0.020203966647387,0.090033955872059,0.0264040697366]],[[0.066970236599445,0.015899879857898,0.021002719178796],[0.028474254533648,0.024606790393591,-0.038760013878345],[-0.018890568986535,0.026409480720758,-0.0366470515728]],[[-0.016258843243122,-0.016570473089814,0.030923267826438],[-0.038643017411232,-0.01335880625993,0.046095706522465],[-0.031700689345598,-0.022926328703761,0.029157537966967]],[[-0.084262147545815,0.0007816850556992,0.063790388405323],[0.01551066339016,-0.021599190309644,0.03639293462038],[0.001770070521161,-0.0082630207762122,-0.025551876053214]],[[-0.054342348128557,-0.055362679064274,0.040377955883741],[-0.0487345084548,-0.041371300816536,-0.0016730135539547],[0.054962679743767,-0.0016744580352679,0.068577289581299]],[[0.045787740498781,0.062113907188177,-0.0071511282585561],[-0.075531922280788,0.037845402956009,-0.085600927472115],[0.011249974370003,-0.069304391741753,0.027234079316258]],[[-0.028437405824661,0.0095947915688157,-0.0096905529499054],[0.053507409989834,-0.0048264535143971,-0.044329352676868],[0.035222582519054,0.051046587526798,-0.013344710692763]],[[-0.0049908338114619,0.054273016750813,0.032985612750053],[0.015966564416885,0.032822970300913,0.043331228196621],[-0.048854883760214,0.0063761910423636,-0.013795855455101]],[[-0.0092659620568156,0.067520387470722,-0.039527457207441],[-0.058829635381699,0.028734786435962,-0.012813545763493],[-0.0022539286874235,0.016903964802623,0.0058418731205165]],[[-0.0094322888180614,0.037965837866068,0.00086862803436816],[0.035449802875519,-0.087854668498039,-0.033299800008535],[0.0344447940588,-0.040626719594002,0.045478485524654]],[[-0.0011482652043924,0.00086241163080558,-0.06777698546648],[0.016329288482666,0.046407628804445,0.043435782194138],[-0.041475802659988,0.04460921511054,-0.053676590323448]],[[-0.034824606031179,0.036850173026323,0.038098700344563],[0.012821880169213,-0.00080162193626165,-0.024913979694247],[-0.054495420306921,0.0069095431827009,0.048712778836489]],[[0.023748908191919,-0.04195998609066,0.010393305681646],[0.039537411183119,-0.010088293813169,-0.040862932801247],[-0.03246270865202,-0.0037264204584062,-0.050864525139332]],[[-0.054636389017105,-0.034283820539713,-0.013985535129905],[-0.0008375789038837,-0.025297874584794,0.03148215636611],[-0.027804771438241,0.03483622148633,0.064494743943214]],[[0.023106018081307,0.02531373500824,-0.018355283886194],[-0.021356914192438,0.0081550804898143,0.013772281818092],[0.0010734223760664,0.013072887435555,0.031460911035538]],[[0.033913288265467,0.044747810810804,-0.071102380752563],[0.087794631719589,-0.040224876254797,-0.075050696730614],[0.013577197678387,-0.033093858510256,-0.087417356669903]],[[0.014552939683199,0.039346486330032,0.021649865433574],[-0.015434523113072,0.020662225782871,0.0037637620698661],[-0.050357740372419,0.0385647341609,-0.0015983761986718]],[[0.031925119459629,-0.021712860092521,-0.0086004743352532],[0.01625551469624,-0.074937149882317,-0.0024638704489917],[-0.078215949237347,-0.022559890523553,0.053888194262981]],[[-0.042559951543808,-0.051143616437912,-0.0011022222461179],[0.05060126259923,-0.015122016891837,0.050845421850681],[0.051654897630215,-0.013449216261506,0.053383380174637]],[[0.012441709637642,0.064280904829502,0.029528154060245],[-0.0095008406788111,-0.074209004640579,-0.063166506588459],[0.019818373024464,-0.03179794922471,0.029269618913531]],[[-0.016088481992483,0.0086445584893227,-0.020159669220448],[-0.025330943986773,-0.01969762519002,0.028484249487519],[-0.028350032866001,0.0084022656083107,0.015755267813802]],[[0.02959082275629,0.023141594603658,0.022762073203921],[0.0058983745984733,0.029116373509169,-0.0096238935366273],[-0.015771282836795,-0.0018380518304184,0.0041004759259522]],[[-0.030501015484333,0.021018689498305,0.026228677481413],[-0.0024455194361508,-0.054574925452471,-0.022526243701577],[-0.0049735587090254,-0.0047723604366183,0.04180059954524]],[[0.022574845701456,-0.057972863316536,-0.011863885447383],[0.014433954842389,-0.066784404218197,-0.024722358211875],[-0.046581778675318,-0.0020462966058403,0.073716096580029]],[[-0.026753924787045,-0.093805156648159,0.00045563338790089],[0.03053967654705,0.026336153969169,-0.046276476234198],[-0.024766005575657,-0.059086039662361,0.064161956310272]],[[-0.0020008613355458,0.0011116791283712,-0.010510141961277],[-0.037293028086424,-0.059358056634665,-0.00379449268803],[-0.00122910074424,0.047583948820829,0.11660789698362]],[[-0.030938621610403,0.026943914592266,-0.033281520009041],[0.0084766866639256,0.01361290551722,0.079993203282356],[0.02787896245718,-0.063442826271057,0.024906594306231]],[[0.015600328333676,0.0031216242350638,-0.010218370705843],[-0.063609272241592,0.038119945675135,-0.029045632109046],[-0.015032441355288,0.042358081787825,-0.031835988163948]],[[-0.032682526856661,0.046940270811319,-0.034132786095142],[0.017351334914565,0.016649110242724,0.031320504844189],[0.027221739292145,0.02386648952961,-0.033660307526588]],[[0.064195439219475,-0.0049962219782174,-0.041293229907751],[0.021672977134585,0.065786831080914,-0.088605314493179],[0.066141180694103,-0.03696620464325,-0.03050747141242]],[[-0.028734659776092,-0.02805289812386,0.00040991418063641],[-0.038716778159142,-0.044074762612581,0.061997946351767],[-0.0063944226130843,-0.054745174944401,0.087088167667389]],[[-0.070782370865345,-0.057108763605356,-0.062575332820415],[-0.062543988227844,-0.09076914191246,-0.014448155649006],[-0.084873884916306,-0.028876129537821,-0.01168123818934]],[[-0.039142578840256,0.025428717955947,0.019920691847801],[-0.027304964140058,-0.00338936294429,0.015038773417473],[0.0008871799800545,-0.0072454139590263,0.012682553380728]],[[-0.0038438953924924,0.063179232180119,0.0053269290365279],[0.016386901959777,0.0091401450335979,0.018415307626128],[0.059672653675079,-0.037875592708588,0.0021059687715024]],[[-0.044202957302332,0.0028428088407964,-0.010034451261163],[-0.065957769751549,-5.6855114962673e-05,0.015004563145339],[0.0028489544056356,-0.016118936240673,-0.030822971835732]],[[-0.072684727609158,-0.037561565637589,-0.015941394492984],[-0.015651548281312,0.048632204532623,0.0295255407691],[-0.043855369091034,0.021137787029147,-0.062533743679523]],[[-0.061920009553432,0.017337672412395,-0.032747261226177],[-0.031150173395872,0.057754382491112,-0.030768968164921],[0.050506614148617,0.012374527752399,0.047328811138868]],[[-0.053937923163176,0.026545211672783,-0.039336696267128],[-0.040405102074146,0.01709196344018,-0.056564640253782],[-0.013789653778076,0.085223220288754,-0.089515440165997]],[[0.057186830788851,0.0090554654598236,-0.049022756516933],[-0.0090476162731647,0.033768340945244,-0.061639413237572],[-0.014375464059412,0.081109896302223,0.011409785598516]],[[-0.026731917634606,0.016530191525817,-0.0030208141542971],[0.0056794723495841,-0.048100799322128,-0.017162848263979],[-0.0070810238830745,0.10212155431509,0.0044615985825658]],[[-0.023391500115395,0.052260354161263,-0.01446545496583],[0.0066853929311037,-0.020214037969708,0.033265743404627],[-0.056451819837093,-0.019406391307712,-0.017466457560658]],[[0.025933731347322,0.042420979589224,-0.016805844381452],[-0.0057704253122211,0.034620258957148,-0.046450577676296],[0.041741922497749,0.070656560361385,-0.045385867357254]],[[-0.0015315270284191,-0.0083510270342231,0.073253378272057],[-0.036565005779266,-0.036009658128023,0.010091609321535],[0.068698197603226,-0.013128567487001,-0.013732306659222]],[[0.031194262206554,-0.073847360908985,-0.015586689114571],[-0.0035913204774261,0.014384311623871,-0.032027777284384],[0.10282969474792,0.020423455163836,-0.014407515525818]],[[0.043451175093651,-0.070042923092842,-0.0050331600941718],[0.025073409080505,0.058598168194294,-0.0017136423848569],[0.018297553062439,-0.029715592041612,-0.0070341727696359]],[[-0.01608994230628,-0.027152938768268,0.039230950176716],[-0.069539926946163,0.034426998347044,0.028248306363821],[-0.04213585704565,0.04536896198988,0.049279104918242]],[[-0.02342220954597,-0.061564043164253,0.031724404543638],[0.035661362111568,-0.040872901678085,0.049020707607269],[-0.025343110784888,0.040997486561537,-0.004092862829566]],[[-0.0051933880895376,-0.017546866089106,0.043645396828651],[0.01464840490371,0.013938631862402,-0.030481513589621],[-0.015135367400944,-0.047368180006742,-0.056897357106209]],[[0.034523967653513,0.038430411368608,-0.017147738486528],[-0.0013002923224121,-0.082643210887909,-0.0022880926262587],[-0.084711603820324,0.08020742982626,0.096371166408062]]],[[[0.09272201359272,0.011617099866271,-0.025026438757777],[0.13534545898438,0.030205838382244,-0.057254731655121],[0.10867208242416,0.0027224032673985,-0.13683693110943]],[[-0.0063651925884187,0.0051981126889586,0.098266057670116],[0.15026457607746,0.054242372512817,-0.013254607096314],[0.18281368911266,0.1082206517458,0.061991967260838]],[[-0.014958634972572,-0.064907997846603,-0.058573190122843],[0.098161056637764,0.025422548875213,-0.068356029689312],[-0.091040186583996,-0.0040536541491747,-0.042602185159922]],[[-0.044656436890364,-0.047990169376135,0.015900265425444],[-0.0050020795315504,-0.019633911550045,-0.05828382819891],[-0.079181984066963,0.049848958849907,0.03868106752634]],[[0.26361885666847,0.048485890030861,-0.00141272530891],[0.012726374901831,0.013658883050084,-0.17073108255863],[0.071931026875973,-0.00035432836739346,-0.057102408260107]],[[0.0016622159164399,0.19347207248211,-0.02965097874403],[-0.16859152913094,-0.060224018990993,-0.034730225801468],[0.082126036286354,0.1448962688446,0.095739290118217]],[[0.067038536071777,-0.022175902500749,0.0094706090167165],[0.011420062743127,0.0341816842556,-0.037118408828974],[0.23048481345177,0.17278796434402,0.072140246629715]],[[0.12477570772171,-0.04925087466836,-0.031654249876738],[0.022725496441126,-0.025940574705601,-0.07250252366066],[0.10189190506935,0.10471399873495,0.048963878303766]],[[0.038729447871447,-0.066270142793655,-0.011796815320849],[-0.039325229823589,-0.11265210062265,0.041415371000767],[-0.14696516096592,0.048571296036243,0.11494383215904]],[[-0.11730789393187,-0.090010464191437,0.029553692787886],[-0.11970199644566,-0.07539938390255,-0.0027126739732921],[-0.077730350196362,-0.12972667813301,-0.10283152014017]],[[-0.053932793438435,-0.055042810738087,-0.070761300623417],[0.0010333543177694,0.0084581933915615,0.10940951853991],[0.12216826528311,0.12802745401859,0.059712272137403]],[[0.038244195282459,0.06673189252615,0.10101390630007],[-0.072161890566349,-0.073628455400467,0.041444506496191],[-0.013128785416484,-0.06145242229104,0.11753709614277]],[[-0.0075448239222169,-0.092870324850082,-0.047514136880636],[-0.037971202284098,-0.031015571206808,-0.023749206215143],[-0.037707656621933,-0.080296203494072,-0.093122825026512]],[[0.076479472219944,0.0094538033008575,0.14072453975677],[0.047047305852175,-0.075897447764874,0.10518749803305],[-0.019643729552627,0.014050243422389,0.1736803650856]],[[-0.17895862460136,-0.071410290896893,-0.10784816741943],[0.090271688997746,0.06969428062439,0.080198086798191],[-0.0038671535439789,0.014042376540601,0.062111463397741]],[[-0.10650364309549,0.1727077960968,-0.0030315462499857],[0.021449470892549,0.12305971235037,-0.00086040131282061],[-0.0088738780468702,0.12382201105356,-0.19278724491596]],[[-0.057041760534048,-0.091130696237087,-0.026557609438896],[-0.042919628322124,-0.016857646405697,-0.10044477880001],[0.083939246833324,-0.087589427828789,-0.055483743548393]],[[0.14049881696701,-0.00074772036168724,0.077921062707901],[-0.060648836195469,-0.016096021980047,0.048083174973726],[0.02452839910984,-0.099275253713131,0.12613090872765]],[[-0.026939928531647,0.21081964671612,0.14931870996952],[-0.017999235540628,0.0051524634473026,-0.081859573721886],[-0.12257658690214,-0.060678672045469,-0.17047941684723]],[[0.16647830605507,-0.0036645792424679,0.19050559401512],[-0.0042898510582745,-0.080027833580971,0.072494380176067],[0.073300540447235,0.066517412662506,0.084758549928665]],[[0.10181929171085,-0.12312426418066,-0.086790144443512],[-0.026854375377297,-0.13870657980442,-0.034390334039927],[-0.0524537935853,-0.088794253766537,-0.059731349349022]],[[-0.076867543160915,0.032952792942524,-0.03005750849843],[-0.19360107183456,0.092276856303215,-0.10156055539846],[0.11541929841042,0.069723322987556,-0.042853340506554]],[[0.050249304622412,-0.0020744444336742,-0.062046121805906],[-0.0079778702929616,-0.011511026881635,0.051511261612177],[0.015037483535707,-0.073479145765305,0.041629672050476]],[[0.073123648762703,-0.14114087820053,-0.087339788675308],[0.061153683811426,0.026616036891937,0.056795358657837],[0.17362684011459,-0.014289911836386,0.046689096838236]],[[-0.041435789316893,-0.022577453404665,-0.03887365013361],[-0.0025590865407139,0.057346787303686,-0.0098125850781798],[0.090497732162476,0.24559332430363,0.14995262026787]],[[-0.07652336359024,-0.046799376606941,0.15938088297844],[0.0032280655577779,-0.056157074868679,-0.024642618373036],[-0.026781341060996,-0.095202818512917,-0.15495529770851]],[[-0.039787676185369,-0.10590149462223,-0.00055181083735079],[0.042002256959677,-0.030500743538141,0.03298531845212],[0.039598751813173,-0.076518513262272,-0.0078469961881638]],[[0.048939932137728,0.047637335956097,-0.011107414960861],[0.065449692308903,0.086113840341568,0.12934263050556],[0.10372276604176,0.022332850843668,-0.10351461172104]],[[-0.013845656067133,-0.075926385819912,-0.059935811907053],[0.037006385624409,0.059597667306662,0.026166612282395],[-0.030703691765666,-0.078894153237343,0.027657005935907]],[[0.0038229778874665,0.058112744241953,0.097802169620991],[-0.097161807119846,0.1090784072876,-0.069293893873692],[-0.12514682114124,0.085606262087822,0.023074068129063]],[[0.01000209338963,-0.12097518146038,0.040700651705265],[0.03875133022666,0.058012876659632,-0.067250147461891],[0.048663299530745,0.11947984993458,0.048087455332279]],[[0.10239575058222,-0.021353878080845,0.025917269289494],[0.055283572524786,-0.10918280482292,-0.02945670671761],[0.030690055340528,-0.0021412272471935,-0.08455952256918]],[[-0.0037430194206536,-0.082187071442604,0.068107947707176],[-0.054323460906744,-0.037523046135902,0.053690172731876],[-0.085551016032696,0.0049614198505878,-0.0091537041589618]],[[-0.030391812324524,0.044095873832703,0.073287159204483],[0.069946698844433,0.029799861833453,0.066086269915104],[0.013370105065405,-0.026431215927005,-0.12726578116417]],[[-0.027750473469496,-0.011048712767661,-0.12613540887833],[-0.049861699342728,-0.079819202423096,-0.18601250648499],[0.06216824054718,-0.0061189346015453,0.056733574718237]],[[0.070887006819248,-0.016670983284712,0.037363026291132],[-0.031398441642523,-0.1444379389286,-0.011294566094875],[0.13930007815361,-0.11915247142315,0.0048498781397939]],[[0.0036609403323382,0.054587502032518,0.078844912350178],[0.019466830417514,0.041272953152657,0.11407526582479],[0.052915386855602,0.026876343414187,0.016715137287974]],[[-0.10724283754826,-0.1171523630619,-0.13782857358456],[-0.16563421487808,-0.0066718468442559,0.014740710146725],[0.048573344945908,0.14769189059734,0.023430161178112]],[[-0.028334295377135,-0.011097601614892,-0.028577586635947],[0.11053792387247,0.0054055536165833,-0.097803138196468],[0.074363715946674,-0.04619374871254,0.093044452369213]],[[0.10123385488987,0.088472165167332,-0.011298435740173],[-0.024810280650854,-0.039668314158916,0.032530136406422],[-0.066874988377094,0.051207073032856,0.066464923322201]],[[-0.028628878295422,0.02057128213346,-0.055539559572935],[-0.032766688615084,-0.041470672935247,0.0056224260479212],[-0.11965946108103,-0.15913443267345,0.065517462790012]],[[0.011362666264176,0.079350136220455,0.02124984562397],[0.0045306570827961,0.015982134267688,-0.11232201009989],[0.16714489459991,0.051415525376797,0.050891552120447]],[[-0.004436835180968,0.025811353698373,-0.26786142587662],[0.080451011657715,-0.07093470543623,-0.059005208313465],[0.12005679309368,0.0086504220962524,-0.074079550802708]],[[0.08413128554821,0.025529203936458,-0.014235340990126],[-0.016244221478701,0.046380542218685,0.048730667680502],[-0.064019627869129,-0.029358491301537,0.033606398850679]],[[0.22110027074814,0.14312541484833,0.15631666779518],[0.08377630263567,-0.089370019733906,-0.10439279675484],[0.064863078296185,-0.04440800845623,-0.10393504798412]],[[0.032822247594595,-0.031441930681467,0.057414866983891],[-0.012202419340611,-0.05496634542942,-0.052418723702431],[-0.11596278101206,0.01086657308042,-0.0071666929870844]],[[0.0007272157818079,-0.012391459196806,-0.0063049015589058],[-0.0039782403036952,-0.17260214686394,0.011334279552102],[-0.031407356262207,-0.10289167612791,-0.046953834593296]],[[-0.09685879945755,-0.0070997220464051,0.10248655825853],[-0.011927768588066,0.0041910842992365,0.017616264522076],[-0.064995527267456,0.035845529288054,-0.020579116418958]],[[0.15538756549358,-0.072621874511242,-0.085171580314636],[0.034988235682249,-0.010417527519166,0.094556890428066],[-0.072398416697979,-0.12651082873344,0.039643082767725]],[[-0.043612271547318,-0.13666225969791,0.051306836307049],[0.067613564431667,0.02964423596859,0.066128224134445],[-0.029553016647696,0.10885722190142,0.022663941606879]],[[-0.15248395502567,0.089971765875816,-0.0035036047920585],[0.039214491844177,0.180251121521,-0.075810372829437],[-0.080666095018387,0.094448834657669,-0.06815842539072]],[[-0.048439633101225,0.076986812055111,-0.085680909454823],[-0.046977873891592,-0.097084425389767,-0.16114911437035],[0.053696472197771,0.066939860582352,0.0070648710243404]],[[0.0061167133972049,-0.031274680048227,-0.017151450738311],[0.015384768135846,0.0046422826126218,-0.015126328915358],[0.021092606708407,-0.0070206304080784,0.032044444233179]],[[0.0050951582379639,-0.086439594626427,-0.010752859525383],[0.084841556847095,0.0029255098197609,0.060688499361277],[0.1458412706852,0.031399324536324,-0.055404763668776]],[[0.053765241056681,0.064312428236008,-0.073247238993645],[-0.075591020286083,0.059369180351496,-0.014175821095705],[-0.095771700143814,0.10760430246592,0.1001650094986]],[[-0.069453798234463,-0.054742623120546,0.023379193618894],[-0.037669140845537,-0.14068453013897,-0.050390765070915],[0.2384162992239,0.089083284139633,0.070679761469364]],[[-0.080579102039337,0.091381892561913,-0.045205604285002],[-0.029723979532719,0.0015751684550196,-0.065530054271221],[-0.050118692219257,0.069770455360413,0.054973319172859]],[[-0.031979460269213,-0.047760963439941,-0.12718221545219],[0.10795136541128,-0.019232992082834,0.044667787849903],[-0.1247683763504,-0.093265607953072,-0.090077340602875]],[[-0.1014114394784,-0.11478757113218,-0.042172286659479],[-0.050000946968794,-0.22830066084862,-0.015290128998458],[-0.022598206996918,-0.065703220665455,0.040502194315195]],[[-0.015509082004428,0.043833520263433,0.1910142749548],[-0.058529626578093,0.023786954581738,0.12294913083315],[-0.10801275074482,-0.051789820194244,0.1015909165144]],[[-0.053076706826687,-0.15813367068768,-0.10118222981691],[-0.065307430922985,-0.18632212281227,-0.15151339769363],[-0.030942844226956,-0.18610742688179,-0.18046759068966]],[[-0.23375551402569,0.073137208819389,-0.068553730845451],[-0.11303839087486,0.05479196831584,-0.075130186975002],[-0.047141667455435,-0.024449367076159,0.0024279803037643]],[[0.052573025226593,0.070145569741726,0.0074687045998871],[-0.032585259526968,0.036345347762108,0.037389684468508],[-0.078778482973576,-0.034613896161318,-0.056632436811924]],[[0.16045187413692,0.033440735191107,-0.03181592002511],[0.27591949701309,0.079129219055176,-0.080169066786766],[0.1858873218298,0.084069423377514,-0.04125727340579]],[[-0.12686109542847,-0.027285804972053,-0.013895540498197],[-0.088329702615738,-0.0024030122440308,0.0057435566559434],[-0.20573614537716,0.076148241758347,0.11985245347023]],[[0.077678315341473,-0.00098216801416129,-0.0066019226796925],[0.003922204952687,-0.065911509096622,0.019836697727442],[0.1012304648757,0.020756537094712,-0.018755413591862]],[[-0.036411594599485,-0.042766101658344,-0.0035676446277648],[-0.1072204336524,-0.082517623901367,-0.027985688298941],[0.040624421089888,-0.11182933300734,-0.19110961258411]],[[-0.17685288190842,-0.10767979174852,-0.083161599934101],[-0.045272719115019,-0.030174802988768,-0.18844626843929],[-0.071755789220333,0.013961452059448,-0.058664359152317]],[[-0.035536423325539,-0.0030254556331784,0.032804567366838],[-0.035624071955681,-0.012711689807475,0.017772877588868],[-0.10597449541092,-0.052303582429886,0.055595275014639]],[[0.071372799575329,-0.046011801809072,-0.074953474104404],[0.073704607784748,0.051546089351177,-0.022275403141975],[0.031169906258583,-0.0044909627176821,-0.07998426258564]],[[-0.0011380381183699,-0.0040352470241487,-0.029396299272776],[-0.014797597192228,0.019712843000889,0.17664635181427],[-0.042689587920904,-0.0020989200565964,-0.057272396981716]],[[0.0079867551103234,-0.029218764975667,0.081532448530197],[-0.12535563111305,0.025821715593338,0.11559457331896],[0.0045209592208266,-0.023633953183889,5.1744365919149e-05]],[[0.010581257753074,-0.10488917678595,-0.0091734388843179],[-0.073151864111423,0.057911496609449,0.063710860908031],[0.086113676428795,-0.099522918462753,-0.07760263979435]],[[-0.090815640985966,0.034605767577887,5.9458965552039e-05],[-0.10119358450174,-0.033778388053179,-0.039185900241137],[-0.053307194262743,-0.055696446448565,-0.015888903290033]],[[0.13488188385963,-0.009612113237381,0.15630240738392],[0.067753814160824,0.00079974759137258,-0.036564834415913],[-0.075125947594643,-0.087669141590595,-0.1312343031168]],[[0.13983070850372,0.091669984161854,0.051992550492287],[-0.01301144529134,-0.040635917335749,0.042794439941645],[-0.016461620107293,0.025003040209413,0.024056533351541]],[[-0.097264058887959,0.12462718039751,-0.028611414134502],[-0.056438982486725,-0.012346114031971,0.070427849888802],[-0.10409402102232,0.072876155376434,-0.049224693328142]],[[-0.14236915111542,-0.040500551462173,-0.13109403848648],[-0.15698029100895,-0.09839303791523,-0.1759959757328],[0.0059325979091227,-0.10429284721613,-0.20568943023682]],[[-0.057436045259237,0.060163732618093,0.028909904882312],[0.01980709284544,0.036810614168644,0.050555817782879],[-0.038834381848574,-0.067945964634418,-0.13877859711647]],[[-0.03082930482924,-0.15163783729076,0.013489419594407],[0.0096852090209723,-0.12661881744862,-0.046805288642645],[-0.034830912947655,-0.1566556096077,-0.12553848326206]],[[0.16226628422737,0.079695589840412,0.0071135703474283],[-0.063351109623909,0.079952836036682,-0.0304897390306],[-0.072353191673756,0.076485373079777,0.097018241882324]],[[0.068109184503555,0.23209424316883,0.11836890876293],[-0.032892201095819,0.04263361915946,0.16321681439877],[0.0112194865942,-0.22046463191509,0.17407712340355]],[[0.12098295241594,0.059500332921743,0.15723524987698],[0.21826699376106,0.051520865410566,-0.078488722443581],[-0.039178799837828,0.13648037612438,0.15080592036247]],[[-0.030031885951757,-0.17810578644276,-0.074106901884079],[-0.01570201292634,-0.050092294812202,-0.03892171010375],[-0.09629237651825,-0.1422147154808,-0.041939578950405]],[[-0.041193459182978,-0.08244763314724,0.019963476806879],[0.086136303842068,0.18630853295326,0.041490994393826],[0.052105717360973,0.0055769588798285,-0.013681894168258]],[[0.061858385801315,0.02818725630641,0.051535081118345],[-0.0019271528581157,-0.10483943670988,-0.15560972690582],[-0.097039170563221,-0.09605859965086,-0.13326162099838]],[[0.1236142963171,-0.06571839004755,0.066209390759468],[0.071355313062668,-0.15801000595093,-0.13996490836143],[0.15692958235741,0.11365115642548,0.10924958437681]],[[-0.060457419604063,-0.026604495942593,0.067626692354679],[0.098068460822105,-0.034342888742685,-0.038560912013054],[-0.026900527998805,-0.0038504528347403,0.06820122897625]],[[-0.032754298299551,0.089796997606754,0.054352130740881],[-0.06322255730629,0.026653980836272,0.10333899408579],[0.099500812590122,0.13404282927513,-0.0025114889722317]],[[0.070115104317665,0.050605963915586,-0.077950455248356],[-0.087251752614975,-0.083459593355656,-0.039706610143185],[-0.095787592232227,-0.089345127344131,-0.062467679381371]],[[-0.0015647723339498,-0.025311026722193,-0.070550680160522],[-0.036938808858395,-0.017158817499876,0.041223082691431],[0.11482782661915,0.013494400307536,0.20069545507431]],[[0.1466780602932,-0.014285134151578,0.057750560343266],[-0.12874907255173,-0.059600546956062,-0.094785138964653],[-0.026027360931039,-0.0068134111352265,-0.12572993338108]],[[-0.13545142114162,-0.02875024266541,-0.048339810222387],[0.025510214269161,0.062938533723354,-0.018477199599147],[0.0064931381493807,-0.052548337727785,0.0014121866552159]],[[-0.020527457818389,0.014916810207069,-0.1488248705864],[-0.053744919598103,-0.099603697657585,-0.17963901162148],[-0.080343753099442,-0.022572198882699,-0.17887422442436]],[[-0.034443039447069,-0.02329333871603,-0.022432647645473],[-0.081890776753426,-0.06340990960598,-0.10705012083054],[0.050776828080416,0.082897454500198,0.0027637034654617]],[[-0.045886322855949,0.017081135883927,-0.14160253107548],[-0.03702051192522,0.029006984084845,-0.0030510909855366],[-0.046551961451769,-0.025733998045325,-0.033425182104111]],[[-0.15500573813915,-0.091759547591209,-0.14685006439686],[0.0061844638548791,-0.051192473620176,-0.0042417063377798],[-0.050738669931889,-0.092062227427959,-0.028300879523158]],[[0.021268632262945,0.06603167206049,0.11660578101873],[-0.019977670162916,0.097963109612465,0.072364665567875],[0.024244345724583,-0.0084320092573762,-0.10186158120632]],[[-0.088801316916943,0.072971642017365,0.12183061987162],[0.015460383147001,-0.053708408027887,-0.019762052223086],[0.11174400150776,0.015542959794402,0.033865131437778]],[[0.13359858095646,0.15659555792809,0.29838740825653],[0.054488033056259,-0.053233098238707,-0.059075735509396],[0.086712628602982,-0.15601760149002,-0.11657907813787]],[[0.069630242884159,0.086472325026989,-0.053692068904638],[-0.10451146960258,0.039544578641653,-0.080835819244385],[-0.12168247997761,0.09187239408493,-0.076433166861534]],[[0.12361703813076,0.040249235928059,0.16803675889969],[0.049426574259996,0.1647782176733,0.024418234825134],[-0.062962479889393,0.044584386050701,0.076056756079197]],[[-0.010118733160198,-0.078404150903225,-0.026288563385606],[0.0048780087381601,0.019805228337646,-0.023986607789993],[-0.063344664871693,-0.034378249198198,-0.18136732280254]],[[0.053742669522762,0.091962955892086,-0.020227693021297],[-0.01101359538734,0.012416594661772,-0.090892650187016],[0.1152336448431,0.14045843482018,-0.034811276942492]],[[-0.15126085281372,0.057914972305298,-0.060575734823942],[-0.021967688575387,-0.0075001399964094,-0.057863615453243],[0.074254281818867,0.097981050610542,-0.11721500009298]],[[-0.042779929935932,-0.12975598871708,0.068743146955967],[-0.094949312508106,0.042940709739923,0.075130000710487],[-0.073176153004169,0.11249690502882,0.025876816362143]],[[-0.042299803346395,-0.046240702271461,-0.025280175730586],[0.02909748069942,-0.08929530531168,-0.060275591909885],[-0.066093184053898,0.054047934710979,0.13792084157467]],[[-0.012097869068384,0.06095664948225,0.027390573173761],[-0.01714794524014,0.096640840172768,0.030796812847257],[0.015907535329461,0.08042960613966,-0.087957084178925]],[[-0.10334543138742,-0.00070250692078844,-0.17804574966431],[-0.048430189490318,-0.049250889569521,-0.077374845743179],[0.14366532862186,0.019892880693078,0.058505069464445]],[[0.00013011663395446,0.029813192784786,0.065170608460903],[0.079642154276371,0.015259147621691,-0.012652396224439],[0.013105005957186,0.038856640458107,0.021815974265337]],[[0.058905810117722,0.045486554503441,0.00064276438206434],[0.010170665569603,-0.0084300152957439,0.086348868906498],[0.074481807649136,-0.035445611923933,0.014947034418583]],[[0.12352792173624,-0.017993327230215,0.1190984621644],[0.042423170059919,0.12020731717348,0.013744967058301],[-0.021753024309874,-0.079963490366936,-0.039880607277155]],[[0.011226271279156,0.12910623848438,0.040852393954992],[0.071013651788235,0.019475793465972,0.02916064299643],[-0.028421094641089,-0.035771414637566,0.0033811635803431]],[[0.00050374213606119,0.038266468793154,-0.035751227289438],[0.018204871565104,-0.058357939124107,-0.031426265835762],[-0.014806245453656,-0.085749894380569,0.055580496788025]],[[0.080646075308323,0.010730784386396,-0.0033271878492087],[-0.0075038876384497,-0.059168834239244,0.02814426086843],[0.0151078235358,-0.11770209670067,-0.078085869550705]],[[-0.0035463231615722,0.0063667083159089,0.046157687902451],[0.057996280491352,0.10428088158369,0.19865265488625],[-0.10028627514839,-0.040558017790318,0.07734202593565]],[[0.0071115996688604,0.031114440411329,0.0068498835898936],[-0.13686296343803,0.081656858325005,-0.0074581573717296],[-0.034983187913895,0.043472081422806,0.16031956672668]],[[-0.13397724926472,-0.073074549436569,-0.066337361931801],[0.01610155031085,0.14532290399075,0.2465358376503],[-0.031025281175971,0.06581474095583,0.014234087429941]],[[0.03612894937396,-0.020482147112489,0.0011667531216517],[-0.0062275663949549,-0.036604702472687,0.039506535977125],[-0.055846925824881,-0.059912513941526,-0.13724753260612]],[[0.090073995292187,-0.06311846524477,0.1058641448617],[0.065127588808537,-0.040603075176477,-0.01681157015264],[-0.023159582167864,-0.089865267276764,-0.058407641947269]],[[-0.10294093936682,-0.034864772111177,0.033751264214516],[0.017984934151173,-0.087188184261322,-0.022458408027887],[-0.04423712939024,-0.076609060168266,-0.21326777338982]],[[-0.063758842647076,-0.064800314605236,0.081631273031235],[-0.040321975946426,-0.11394119262695,0.093500077724457],[-0.08178074657917,-0.045668996870518,0.020986130461097]],[[-0.078246735036373,-0.075320981442928,-0.03158512711525],[-0.055124554783106,-0.080789305269718,-0.0072008087299764],[0.027133595198393,-0.090241685509682,-0.093648947775364]],[[0.010727793909609,-0.050142150372267,0.010092213749886],[-0.080576203763485,0.055572688579559,-0.0033755258191377],[-0.01238280069083,0.099792085587978,-0.026593426242471]],[[0.014622558839619,0.010334542952478,0.0069907484576106],[-0.01207662653178,-0.10301785171032,-0.047617319971323],[-0.04344841465354,-0.055973511189222,-0.018096873536706]],[[0.066937893629074,-0.24111400544643,0.015300901606679],[-0.053480681031942,0.031778927892447,0.071578398346901],[-0.041198715567589,-0.057676754891872,0.074177838861942]],[[0.15374478697777,-0.019636387005448,-0.13947257399559],[0.15397089719772,0.13353309035301,-0.0047725499607623],[0.093446426093578,-0.046608690172434,0.037640791386366]],[[0.029654333367944,0.036248236894608,-0.10572402924299],[-0.0041813324205577,0.11426793038845,0.11808709800243],[-0.02728477306664,0.11472887545824,0.0031125592067838]]],[[[-0.1753001511097,0.0081969378516078,-0.006563232280314],[-0.10206275433302,-0.072760619223118,0.035042863339186],[-0.017229864373803,-0.010412001051009,0.083910062909126]],[[0.13597698509693,0.17766198515892,0.075118526816368],[0.10382352769375,0.046778246760368,-0.10060573369265],[-0.019928822293878,-0.043961551040411,-0.11139058321714]],[[0.027611216530204,0.080693863332272,0.14173656702042],[-0.086628757417202,-0.10871268063784,0.028978338465095],[0.015885522589087,-0.063217341899872,-0.018782898783684]],[[-0.10201227664948,-0.06303695589304,0.011618655174971],[-0.030536724254489,-0.025018410757184,0.10594834387302],[-0.047041982412338,-0.0026287988293916,0.12356591969728]],[[-0.081429623067379,0.099039554595947,-0.024426592513919],[0.12911304831505,0.19033782184124,-0.037566278129816],[0.0068016974255443,0.047262132167816,0.096597328782082]],[[0.22846096754074,0.099062219262123,0.063401229679585],[-0.14030204713345,-0.073616579174995,0.15178191661835],[0.14934216439724,0.048353314399719,0.1009818688035]],[[0.16584393382072,0.11817286908627,0.15594694018364],[0.11256673187017,0.10790704190731,0.11095727980137],[-0.026324408128858,-0.1246001496911,-0.081758603453636]],[[0.058814574033022,0.072396486997604,0.036547854542732],[0.057046573609114,-0.01528680510819,0.078277170658112],[0.025525731965899,0.15129585564137,0.024359550327063]],[[-0.031649861484766,-0.13393223285675,-0.0013381460448727],[-0.010120789520442,-0.060623656958342,0.018291182816029],[-0.12260826677084,-0.10104955732822,0.062094204127789]],[[0.048312745988369,-0.022391375154257,0.018154388293624],[0.044932391494513,0.029578413814306,0.010680486448109],[-0.066155530512333,-0.022864820435643,-0.2231550514698]],[[0.064501404762268,0.042234029620886,0.037191409617662],[0.009160322137177,0.043581016361713,0.076903283596039],[0.027372878044844,-0.01124179083854,0.097825646400452]],[[-0.01342942379415,-0.011766362935305,-0.06150534376502],[-0.053996734321117,-0.082654885947704,0.15347909927368],[0.074870862066746,0.096541695296764,-0.016118135303259]],[[-0.10154966264963,-0.052797447890043,-0.033198669552803],[-0.040437567979097,-0.096048019826412,-0.059083491563797],[-0.043855641037226,-0.03787549212575,0.015069498680532]],[[0.035549469292164,-0.083711981773376,-0.14569693803787],[0.0014108349569142,-0.056804165244102,-0.019407326355577],[0.11248631030321,0.067380994558334,-0.096009239554405]],[[-0.13690976798534,-0.023420365527272,0.1104841157794],[0.033626686781645,-0.0028185409028083,-0.22071523964405],[-0.04930417984724,-0.071002602577209,-0.04039940983057]],[[0.052059952169657,-0.04857500270009,-0.075000695884228],[0.0058826929889619,0.01023462228477,0.064313583076],[-0.074456341564655,-0.1345290094614,0.091316200792789]],[[-0.029410429298878,-0.047847457230091,-0.071708291769028],[0.033531062304974,-0.061630748212337,0.079294830560684],[-0.036326318979263,0.095240369439125,0.10186036676168]],[[-0.0075303572230041,-0.11350475996733,-0.25751748681068],[0.1336272507906,0.11490473896265,0.079754889011383],[0.057632263749838,0.20730826258659,0.11714144051075]],[[-0.092810429632664,-0.087087973952293,-0.014330044388771],[0.05052587389946,0.010093580931425,0.061707083135843],[0.02026079967618,0.094377264380455,0.059337101876736]],[[0.039216339588165,-0.12381062656641,-0.065001875162125],[0.14051224291325,-0.00052769493777305,-0.073983073234558],[-0.064919672906399,0.012110761366785,0.044701714068651]],[[-0.17498680949211,-0.081330038607121,0.0020133247599006],[-0.029439156875014,-0.040366571396589,-0.12036155164242],[0.06287881731987,0.15445198118687,0.015517846681178]],[[0.035838734358549,-0.10406175255775,-0.013751516118646],[0.20683211088181,0.046075347810984,0.089800000190735],[-0.10299865156412,-0.032674755901098,-0.0093965390697122]],[[0.028650972992182,-0.0075233331881464,-0.058881301432848],[-0.10744488239288,0.018064469099045,0.012543056160212],[0.026545152068138,0.046030212193727,0.12231795489788]],[[0.037282802164555,0.16954725980759,-0.035713128745556],[0.0024832955095917,-0.0074317948892713,0.08246411383152],[0.013576139695942,-0.036546308547258,-0.059517413377762]],[[-0.24208526313305,-0.0051223463378847,-0.12029881775379],[-0.14771555364132,-0.07802639901638,0.080678775906563],[-0.11400663852692,-0.18263778090477,-0.15658603608608]],[[-0.088471539318562,-0.067153058946133,0.14808794856071],[0.040219224989414,-0.066559731960297,0.1099401935935],[-0.031587742269039,-0.12404192984104,0.10786847770214]],[[-0.11343261599541,-0.070057615637779,0.032565359026194],[-0.029028236865997,0.0063022901304066,0.04353941604495],[0.19549639523029,0.043955739587545,0.05047332495451]],[[0.069750301539898,0.075325287878513,-0.079256005585194],[0.051225278526545,-0.043486531823874,-0.075594052672386],[0.080535121262074,-0.01506897713989,0.024861769750714]],[[0.035721305757761,0.025048952549696,0.073848001658916],[-0.030563762411475,-0.055206142365932,-0.1293538659811],[0.055376257747412,-0.0247747823596,-0.20458038151264]],[[-0.013197898864746,-0.015632007271051,-0.10933161526918],[-0.038599226623774,0.12676553428173,-0.017746986821294],[0.0051233489066362,-0.0289641097188,-0.013688919134438]],[[-0.073015995323658,-0.013892941176891,0.056096062064171],[-0.029312392696738,0.17048192024231,-0.003033057320863],[0.11991089582443,0.010745283216238,-0.098687395453453]],[[0.028262117877603,0.035086683928967,-0.1100831925869],[-0.10422626882792,0.053189191967249,-0.041697025299072],[0.074969939887524,-0.019225094467402,0.078615121543407]],[[0.046770490705967,0.033833391964436,-0.031768903136253],[0.082032680511475,0.020672196522355,0.01813231408596],[-0.055728815495968,-0.036658588796854,0.057196233421564]],[[-0.057035017758608,-0.10135423392057,0.10541439056396],[-0.032643284648657,0.020196069031954,0.13126802444458],[0.13732773065567,0.16241915524006,-0.050058715045452]],[[0.058050457388163,-0.069274850189686,-0.057715777307749],[0.031623873859644,-0.10283982008696,-0.056160699576139],[0.062030829489231,-0.11406912654638,-0.031345624476671]],[[0.14615173637867,0.060205981135368,-0.16776937246323],[0.14903324842453,0.094741448760033,-0.076812334358692],[0.22993192076683,-0.084730841219425,-0.16332916915417]],[[-0.21461395919323,0.009247412905097,0.069640584290028],[-0.040878057479858,0.12912358343601,0.021074937656522],[0.076173566281796,0.046232473105192,-0.072918482124805]],[[0.0037770105991513,-0.023530354723334,0.11730914562941],[-0.01758467592299,-0.021534876897931,0.1906980574131],[0.00087384943617508,0.032398711889982,0.044360186904669]],[[-0.052440095692873,-0.092003934085369,-0.064769826829433],[-0.12251023948193,-0.057242605835199,0.029906172305346],[0.046086639165878,0.12810416519642,-0.062000870704651]],[[-0.1756874024868,0.13915894925594,0.01584691926837],[0.1404032856226,0.18446972966194,0.086300753057003],[-0.11035791039467,0.075689367949963,-0.087251849472523]],[[-0.090621791779995,-0.02864845097065,-0.07814534008503],[-0.056522838771343,-0.052772298455238,-0.1500476449728],[0.0046278540976346,0.079194001853466,-0.019492054358125]],[[-0.011479444801807,0.049394674599171,-0.028088333085179],[0.02275906689465,0.016123529523611,-0.088762156665325],[0.051753934472799,0.057342879474163,0.015831433236599]],[[0.10306843370199,-0.10080766677856,-0.025453558191657],[-0.057918395847082,0.023604599758983,-0.18439050018787],[0.050083704292774,0.023912092670798,0.14875535666943]],[[0.085069417953491,-0.010982573032379,0.035695847123861],[0.056433942168951,-0.0095997136086226,0.021738706156611],[0.064959667623043,0.024228515103459,0.081709817051888]],[[-0.080873161554337,-0.032957974821329,-0.049457304179668],[0.077241882681847,0.024212602525949,-0.046491418033838],[-0.037404093891382,0.045981645584106,0.017045577988029]],[[-0.047700148075819,0.035780448466539,-0.17879393696785],[-0.081810593605042,-0.061092477291822,0.041843447834253],[-0.034102741628885,-0.095863863825798,0.018572222441435]],[[0.07048661261797,-0.068382583558559,-0.222989320755],[-0.10880946367979,-0.18001469969749,0.12523999810219],[0.0044090165756643,-0.051883947104216,0.050819981843233]],[[0.071552112698555,0.19865640997887,0.16999216377735],[0.058940522372723,-0.17672175168991,-0.096120603382587],[0.099615305662155,-0.082028590142727,-0.1833758354187]],[[-0.052654325962067,0.11827502399683,0.052789974957705],[0.018233494833112,-0.022106247022748,-0.013961465097964],[0.092607691884041,-0.030394209548831,-0.065843105316162]],[[0.0032522270921618,0.061456065624952,-0.053241096436977],[-0.063043050467968,-0.090979129076004,0.018756940960884],[0.059994611889124,0.089546605944633,0.083198964595795]],[[-0.12382451444864,-0.056446108967066,0.048478271812201],[-0.16418582201004,0.073848962783813,0.14169120788574],[0.083002492785454,-0.11337177455425,-0.042418368160725]],[[-0.051648411899805,-0.0096916258335114,0.033103659749031],[0.03430936858058,-0.060517325997353,-0.071982949972153],[-0.12820689380169,-0.11019421368837,-0.065989322960377]],[[0.088873997330666,0.057866033166647,0.12079190462828],[-0.033561550080776,0.059316970407963,0.019838621839881],[-0.023559069260955,0.014836460351944,-0.07883433252573]],[[0.032435607165098,0.12556391954422,-0.041844181716442],[-0.052067305892706,-0.016202114522457,-0.085709236562252],[0.010741695761681,-0.041394796222448,-0.038786940276623]],[[0.003477992489934,-0.18826803565025,0.012243449687958],[-0.045998200774193,-0.14315420389175,0.10089426487684],[0.035003837198019,0.010806675069034,-0.016360748559237]],[[0.039877232164145,-0.005559463519603,0.039985459297895],[0.12727807462215,0.10609132051468,-0.0052155102603137],[-0.10307161509991,-0.096012428402901,-0.081507056951523]],[[-0.096878193318844,-0.11635231226683,0.01256347913295],[0.036925505846739,-0.031996328383684,-0.049715064466],[0.021274721249938,-0.20785067975521,-0.094897173345089]],[[-0.11494087427855,-0.028517127037048,-0.011602492071688],[-0.034509863704443,-0.15932673215866,-0.11857964098454],[0.055099092423916,0.12130228430033,0.055113404989243]],[[-0.092523612082005,0.017271434888244,0.089216247200966],[-0.0080400044098496,-0.044314086437225,-0.09710393846035],[0.033505842089653,-0.08017510920763,0.022449748590589]],[[0.078917093575001,0.081817060709,0.063661716878414],[-0.081537790596485,-0.004801707342267,0.046735316514969],[-0.051190070807934,-0.065451592206955,-0.10218726843596]],[[-0.019573792815208,0.026830496266484,0.072992108762264],[-0.027406111359596,-0.14193919301033,-0.033838383853436],[-0.024054395034909,-0.061544861644506,0.030455784872174]],[[0.00529416045174,0.085064724087715,-0.11076050251722],[0.017946438863873,-0.010314336977899,0.021736517548561],[-0.099964246153831,-0.11302985996008,-0.1815173625946]],[[-0.0082938000559807,0.025790877640247,0.085056982934475],[0.043078318238258,-0.043867979198694,-0.054505605250597],[-0.023049222305417,-0.093878857791424,-0.023186193779111]],[[0.12239972501993,0.065137691795826,0.074960201978683],[0.12095207720995,-0.053178675472736,0.043712288141251],[-0.035842377692461,-0.13607667386532,-0.077248305082321]],[[0.12918704748154,-0.089097768068314,0.092261135578156],[0.020387204363942,-0.20134545862675,-0.080312199890614],[0.057155396789312,-0.026849254965782,-0.047911442816257]],[[0.13417695462704,0.12005242705345,0.0094665568321943],[0.069234549999237,0.13196262717247,0.056415919214487],[0.0099049722775817,0.077512793242931,0.056147921830416]],[[0.072729714214802,0.070306308567524,-0.077663466334343],[-0.11957946419716,-0.060195360332727,-0.082309126853943],[-0.084136039018631,-0.18505658209324,-0.049292523413897]],[[0.14034159481525,-0.066555269062519,-0.042523968964815],[0.040636204183102,0.080279245972633,0.020748915150762],[-0.062546513974667,-0.059047766029835,0.0018249185523018]],[[0.12113831937313,-0.017368976026773,-0.036090649664402],[0.059205561876297,-0.098005138337612,-0.14246597886086],[0.028944524005055,-0.1384851783514,-0.13510793447495]],[[-0.048115663230419,-0.050305631011724,-0.00071078247856349],[-0.12159804999828,-0.0043731015175581,-0.011058020405471],[-0.14693327248096,0.012939248234034,-0.060482706874609]],[[-0.10100293904543,0.0049558565951884,-0.064512766897678],[-0.10269290208817,-0.10760157555342,-0.085246697068214],[-0.077099740505219,-0.12027630209923,-0.074549630284309]],[[0.082938350737095,-0.12162797898054,-0.037578240036964],[0.018148887902498,0.029500683769584,-0.14474858343601],[-0.0060129649937153,-0.10214614868164,-0.058618310838938]],[[-0.18617942929268,-0.066628113389015,0.12695719301701],[-0.080275699496269,0.022151950746775,-0.097609922289848],[0.14747196435928,-0.012442777864635,-0.081749804317951]],[[-0.091256365180016,-0.086524121463299,-0.093655243515968],[-0.092587865889072,-0.07404762506485,-0.16186743974686],[-0.031489457935095,-0.0251320656389,-0.078896269202232]],[[-0.03055434115231,0.1167843490839,0.14700290560722],[-0.025763122364879,-0.14558357000351,-0.03703697770834],[-0.055878162384033,0.021969679743052,-0.0071738553233445]],[[0.046965233981609,0.093911848962307,-0.082736603915691],[0.10462839156389,0.075027652084827,-0.03372436389327],[0.02227414958179,-0.019388888031244,0.18090504407883]],[[-0.026716463267803,0.00061643606750295,0.010135139338672],[-0.10611178725958,-0.079921811819077,0.077291205525398],[0.031863752752542,0.098398305475712,-0.088391646742821]],[[0.01309706363827,-0.10548616945744,-0.13378764688969],[-0.14248305559158,-0.13410396873951,-0.1342248916626],[0.10102482140064,-0.020891014486551,0.0070578763261437]],[[-0.036047767847776,-0.012136512435973,-0.068151950836182],[0.037087488919497,-0.021349845454097,-0.017872842028737],[0.038102462887764,0.011654028669,-0.012980627827346]],[[-0.013034652918577,-0.03168723359704,0.039731968194246],[0.033658988773823,0.11302138864994,0.014281640760601],[0.012266463600099,0.1041586175561,-0.034245118498802]],[[-0.057130631059408,-0.020849816501141,0.11102498322725],[-0.0013248522300273,0.032221835106611,0.070576801896095],[0.031587976962328,-0.0032236359547824,0.13053828477859]],[[-0.015422131866217,-0.13102480769157,0.16382107138634],[0.061135109513998,-0.055261492729187,-0.10390872508287],[0.039320930838585,0.16034305095673,-0.058684412389994]],[[-0.011712780222297,0.061074409633875,-0.030605552718043],[0.023069750517607,0.15089583396912,0.025993501767516],[0.13430185616016,0.20275473594666,-0.0021541898604482]],[[-0.012024067342281,-0.083408579230309,-0.018626399338245],[-0.026693627238274,0.021678399294615,0.066281661391258],[0.0014317644527182,0.075750447809696,0.0011159763671458]],[[-0.085494510829449,0.13273721933365,0.068613849580288],[-0.077744610607624,0.010799518786371,0.056929744780064],[0.13295766711235,0.20120005309582,-0.02178462408483]],[[-0.039756003767252,-0.0024386253207922,0.068028979003429],[0.025520205497742,-0.20889581739902,-0.12601839005947],[0.043237466365099,-0.027470253407955,-0.093226455152035]],[[-0.031508360058069,-0.042418077588081,-0.034255005419254],[0.061638113111258,0.049275517463684,0.079673826694489],[0.0080030132085085,-0.0077090449631214,-0.051340527832508]],[[0.055194918066263,-0.06674225628376,-0.081847414374352],[-0.029502175748348,-0.083169095218182,-0.070220477879047],[-0.028185356408358,-0.16949756443501,-0.084293507039547]],[[0.10137434303761,-0.095979958772659,0.099567048251629],[0.022107854485512,0.075321331620216,0.078711301088333],[-0.10658629238605,-0.098260626196861,0.10249102115631]],[[-0.017231542617083,0.019060647115111,-0.015993393957615],[0.012911952100694,0.077336795628071,-0.062839902937412],[-0.037626702338457,-0.088906243443489,-0.10410962998867]],[[-0.058315444737673,-0.068437419831753,0.076873689889908],[-0.029619805514812,-0.028551332652569,0.016219228506088],[-0.11652866005898,0.06701522320509,-0.086576826870441]],[[-0.06794199347496,-0.057711932808161,-0.040647823363543],[-0.14575886726379,0.033489421010017,0.1106565669179],[-0.012137413024902,0.072936244308949,0.058868024498224]],[[-0.042489599436522,0.030188778415322,0.03820713609457],[0.017834497615695,0.083472728729248,-0.022333867847919],[-0.018197812139988,0.014390635304153,0.0044327294453979]],[[0.014270637184381,0.1020033583045,0.053953938186169],[0.066931858658791,-0.12450389564037,-0.065939195454121],[-0.12025766819715,-0.059791229665279,-0.014777555130422]],[[0.023288117721677,0.0066547519527376,-0.011432654224336],[0.042806163430214,-0.024531194940209,0.012297318316996],[-0.14485168457031,-0.083527155220509,0.064072042703629]],[[-0.014962180517614,-0.027039892971516,0.092313602566719],[0.025427766144276,0.05191956833005,0.14930345118046],[-0.021873654797673,-0.065887995064259,0.055333029478788]],[[0.062488552182913,0.15271383523941,-4.8640016757417e-05],[-0.00019908510148525,-0.03610485047102,-0.12064877152443],[-0.029837008565664,-0.019845934584737,-0.063045486807823]],[[0.018400110304356,-0.055445864796638,0.013558967038989],[-0.030187021940947,-0.071783363819122,-0.016000270843506],[0.02275899797678,0.030017064884305,0.06608310341835]],[[-0.059512238949537,-0.034962963312864,0.021842105314136],[-0.051995802670717,0.14060863852501,0.031079277396202],[-0.034819230437279,0.046910785138607,0.0074318367987871]],[[-0.11080113053322,0.079543992877007,0.0025988814886659],[0.03216940164566,0.058190997689962,0.053953032940626],[0.019441580399871,0.059991251677275,0.14272494614124]],[[-0.18366140127182,-0.16139449179173,-0.068890102207661],[-0.15234459936619,0.072158828377724,0.12365435063839],[0.00063617748674005,-0.090612269937992,-0.058834403753281]],[[-0.059010196477175,-0.02097007445991,-0.0065886084921658],[0.0079174675047398,0.058503728359938,0.041535593569279],[0.12973330914974,0.086716376245022,0.10766698420048]],[[0.10023608058691,-0.030976874753833,-0.073794342577457],[-0.12576547265053,-0.037589561194181,-0.019456457346678],[0.030336644500494,0.016439497470856,-0.11414800584316]],[[0.043482787907124,0.044908970594406,0.044161148369312],[-0.037106212228537,0.054605823010206,0.051651373505592],[-0.12727385759354,-0.15437249839306,-0.09232147783041]],[[0.041463430970907,-0.036992017179728,0.17649371922016],[-0.009284470230341,-0.11720185726881,0.087488695979118],[0.10355962067842,0.029668254777789,0.01766112819314]],[[0.0037213754840195,-0.092255622148514,-0.11032816022635],[0.011058554053307,-0.012191881425679,0.035219296813011],[0.062827035784721,0.050742961466312,0.056280288845301]],[[-0.026788637042046,-0.019525879994035,0.09253815561533],[0.1347304135561,0.061140600591898,0.16590875387192],[0.13107806444168,0.035488869994879,0.11973489075899]],[[0.086516469717026,0.098210617899895,0.075627855956554],[-0.037120088934898,-0.089163169264793,0.13117365539074],[-0.052992891520262,-0.033176630735397,-0.0070933857932687]],[[0.054732948541641,0.12304992228746,-0.065114475786686],[0.037540540099144,-0.036923605948687,0.060818541795015],[0.023406332358718,0.0075976746156812,0.11622089892626]],[[-0.02593102119863,0.016400579363108,-0.040293101221323],[0.058362409472466,0.055427953600883,0.05627515912056],[0.083802737295628,0.017586538568139,0.035792276263237]],[[0.040259394794703,0.054831020534039,0.10591509193182],[0.019773047417402,-0.021940955892205,0.0047475546598434],[-0.055030252784491,-0.00059733487432823,0.023683486506343]],[[-0.051894336938858,-0.051680713891983,-0.042061880230904],[0.03067765571177,0.11822026222944,-0.029954042285681],[0.14757660031319,0.10384852439165,0.044121567159891]],[[-0.094874680042267,-0.15466940402985,-0.046362113207579],[0.087090097367764,0.09244816750288,-0.012307188473642],[0.1079343110323,0.12818640470505,0.063075006008148]],[[0.14300589263439,-0.013533899560571,-0.043422196060419],[0.040166553109884,0.1109825745225,-0.080260828137398],[-0.13512006402016,0.21416951715946,0.12518920004368]],[[-0.019256668165326,0.13821218907833,0.015606528148055],[0.080472022294998,0.095337972044945,0.020823402330279],[0.010038656182587,0.04878568649292,0.044292274862528]],[[0.20596352219582,0.078837379813194,-0.10096695274115],[0.12630291283131,0.021331012248993,0.0027238896582276],[0.056331437081099,0.0735969170928,-0.071920894086361]],[[0.10265833884478,-0.10994186252356,-0.014909969642758],[0.028019471094012,0.060280200093985,-0.032397091388702],[0.11975105851889,0.083425626158714,-0.048605170100927]],[[0.12539941072464,0.14270955324173,0.16861261427402],[-0.12570270895958,0.063135005533695,-0.044762507081032],[-0.067460499703884,-0.056564379483461,-0.12375450879335]],[[-0.035924706608057,-0.053411994129419,0.068919092416763],[0.075690872967243,-0.14465588331223,-0.15112924575806],[-0.057742331176996,-0.040956225246191,0.014533930458128]],[[-0.11454171687365,0.0044972342438996,0.054127782583237],[-0.031066808849573,0.086206011474133,0.039328385144472],[-0.041410598903894,0.045078281313181,0.056053433567286]],[[0.1310680359602,-0.022363958880305,-0.073700778186321],[-0.13826026022434,0.1454039812088,-0.090660229325294],[0.14791125059128,0.050008371472359,0.067482568323612]],[[0.051049757748842,-0.1041965931654,0.11692200601101],[0.0077545372769237,-0.030856369063258,0.043479915708303],[0.12450017035007,0.059851095080376,0.027813263237476]],[[0.034955281764269,0.045786045491695,-0.12191477417946],[-0.12372437119484,-0.12396319210529,-0.16805802285671],[-0.059949859976768,-0.12039098143578,-0.0027843900024891]],[[-0.017232755199075,-0.0089079290628433,0.065215729176998],[-0.017814880236983,-0.029437571763992,0.087674878537655],[0.044695120304823,0.07969193905592,0.12789537012577]],[[-0.065522618591785,0.036966323852539,0.098469495773315],[0.038607634603977,-0.047632783651352,-0.052059914916754],[-0.050289738923311,-0.061808928847313,0.036618907004595]],[[-0.018067445605993,-0.10073890537024,0.028336133807898],[-0.045382775366306,-0.16376714408398,-0.066114671528339],[0.098374418914318,0.038430500775576,-0.035461902618408]],[[0.038769375532866,0.04676678404212,0.18069431185722],[0.093067400157452,0.046570800244808,0.072973258793354],[0.0022788953501731,0.0079722125083208,-0.058448184281588]],[[-0.15645115077496,-0.19895830750465,0.18418158590794],[-0.057309292256832,0.21630015969276,-0.0012289800215513],[-0.084108740091324,-0.037322826683521,0.081215254962444]]],[[[-0.0076585989445448,-0.025863846763968,-0.005889505147934],[-0.022324539721012,0.0015446585603058,0.058580689132214],[-0.051218215376139,0.014673819765449,-0.015453479252756]],[[-0.087206415832043,0.032202996313572,0.070679940283298],[0.070962622761726,0.036686021834612,-0.0059222732670605],[-0.034942418336868,-0.012786155566573,-0.045209795236588]],[[0.012540439143777,-0.011487589217722,-0.039810504764318],[-0.050568513572216,0.013693070039153,0.087463863193989],[0.0080754449591041,0.050318270921707,-0.041622884571552]],[[-0.033617466688156,-0.03063122369349,-0.079539611935616],[-0.099708527326584,0.047198317945004,0.070237226784229],[-0.051376301795244,-0.038237702101469,0.032919269055128]],[[-0.072301134467125,0.049201190471649,-0.0072497478686273],[0.02400316298008,0.043584872037172,-0.028697691857815],[0.026589283719659,0.043888881802559,-0.043253436684608]],[[-0.047515261918306,0.017147090286016,0.034692838788033],[0.010017660446465,0.026062516495585,-0.028175992891192],[0.06397882848978,0.045802161097527,-0.018989274278283]],[[-0.019755631685257,-0.043215580284595,-0.010138284415007],[0.042029540985823,0.0063981427811086,-0.037895537912846],[0.037343770265579,0.037345077842474,-0.022946355864406]],[[-0.019197806715965,0.0090751331299543,0.011051448993385],[-0.0030442825518548,-0.019748145714402,0.050588268786669],[-0.06914172321558,0.0023886389099061,0.027334852144122]],[[-0.035079378634691,0.004671972244978,0.042742285877466],[0.021986281499267,0.022881476208568,0.012157946825027],[-0.034496460109949,-0.049334287643433,-0.058958146721125]],[[-0.056012447923422,-0.010535617358983,-0.039224900305271],[-0.044163554906845,-0.070711486041546,-0.013877316378057],[0.049719735980034,-0.029380608350039,-0.013432441279292]],[[0.099728479981422,0.03906487673521,0.061750367283821],[0.025106307119131,-0.0080768028274179,-0.099573366343975],[0.019198587164283,-0.020560942590237,-0.0027039083652198]],[[0.022661089897156,-0.033643372356892,-0.049627605825663],[0.015068774111569,-0.00065460737096146,0.028833191841841],[0.031102092936635,0.04045419767499,0.045156810432673]],[[0.03329211473465,0.043769419193268,-0.010805324651301],[-0.070459775626659,-0.0024857432581484,0.016873264685273],[0.046643882989883,0.049351144582033,-0.03426194563508]],[[-0.013554508797824,-0.014605874195695,-0.07694648206234],[-0.0094690639525652,-0.017457727342844,-0.019452484324574],[0.017229253426194,-0.0076861553825438,0.0093492120504379]],[[0.0014874822227284,0.066155858337879,0.063508979976177],[-0.026458203792572,0.055171936750412,0.063174836337566],[0.0095904106274247,0.11733654141426,0.0064269518479705]],[[-0.026166887953877,0.0021113690454513,0.0087632527574897],[0.0076846652664244,0.034633103758097,-0.013243065215647],[-0.022190412506461,-0.0082285087555647,-0.0060883765108883]],[[-0.038878709077835,0.029989507049322,0.013885960914195],[-0.033105563372374,0.0023015865590423,0.019288709387183],[0.019077908247709,-0.0013202663976699,0.039616700261831]],[[-0.034137144684792,-0.0098017388954759,0.061748832464218],[0.014097786508501,0.061098694801331,-0.04297736659646],[-0.00054464454296976,0.049663074314594,0.079547062516212]],[[0.075377903878689,0.059386286884546,-0.041019752621651],[0.025756984949112,-0.027341747656465,-0.02703301422298],[-0.0082770772278309,0.060023318976164,0.012251880951226]],[[0.037121996283531,-0.04577449709177,-0.024683469906449],[0.058848634362221,0.020987594500184,-0.036747232079506],[-0.01540837623179,0.01692202500999,-0.009551634080708]],[[0.013381888158619,-0.027031920850277,0.025967495515943],[0.06837560236454,0.011146830394864,-0.049602787941694],[-0.0075622289441526,0.0024528806097806,-0.036851160228252]],[[-0.047917351126671,-0.045019164681435,-0.02912774309516],[0.018736280500889,0.052094988524914,0.022110378369689],[-0.038581237196922,0.00074747379403561,0.04022279009223]],[[0.053209654986858,-0.00040365423774347,-0.061598487198353],[-0.062984049320221,-0.02425667271018,-0.015418608672917],[0.018523389473557,0.01262663397938,-0.010498866438866]],[[0.054209653288126,0.052754327654839,0.018021190539002],[-0.040840271860361,0.087202645838261,0.049704600125551],[-0.072860039770603,-0.1291581094265,-0.024151178076863]],[[0.017815217375755,0.01132607460022,0.018948307260871],[0.013826040551066,0.062216941267252,-0.014315608888865],[-0.071250155568123,0.0019605355337262,0.011666480451822]],[[0.023181037977338,0.015105064027011,0.035694994032383],[0.051951378583908,0.026433896273375,0.006867490708828],[-0.031772777438164,-0.022390013560653,-0.032190401107073]],[[0.013181732036173,0.061977751553059,-0.020589487627149],[0.022557308897376,0.01654452458024,-0.025777067989111],[-0.01921034231782,-0.033411484211683,-0.055639952421188]],[[0.043042317032814,0.055167097598314,-0.048498582094908],[-0.020917104557157,0.033605229109526,-0.005920946598053],[-0.013816901482642,0.081907451152802,0.020253581926227]],[[0.023867918178439,-0.06471349298954,-0.013049576431513],[-0.023128675296903,-0.11663264036179,-0.00089146086247638],[0.040972791612148,-0.036563623696566,0.086632333695889]],[[0.064377024769783,0.0079410569742322,-0.041620399802923],[-0.044308625161648,-0.0041138483211398,0.020184468477964],[-0.066274791955948,-0.004358593840152,-0.009036005474627]],[[0.035112537443638,-0.044589594006538,0.0066955373622477],[0.025257054716349,0.0073957624845207,0.042627897113562],[-0.0083052488043904,-0.0344078540802,-0.0084113785997033]],[[-0.032472647726536,-0.017091553658247,0.06563064455986],[0.048023775219917,-0.015793947502971,-0.036983445286751],[-0.049833085387945,-0.0011279986938462,0.056638803333044]],[[-0.063798405230045,-0.0058289906010032,-0.046569861471653],[-0.024965643882751,0.01523272972554,-0.0033455062657595],[0.0081697124987841,0.00085833889897913,0.094470202922821]],[[0.017771564424038,0.014465192332864,-0.036469914019108],[0.030991965904832,0.015278175473213,0.025013703852892],[0.031953986734152,0.010105508379638,-0.043992359191179]],[[-0.057666931301355,-0.043786097317934,0.016632534563541],[-0.046884573996067,0.02018965780735,0.051791552454233],[0.04593462869525,-0.042471170425415,-0.009904470294714]],[[-0.010372336953878,0.042772352695465,-0.028781812638044],[0.063033752143383,-0.022391768172383,0.0093667330220342],[0.096346214413643,0.053103774785995,-0.0030291429720819]],[[-0.0054952101781964,0.03269899263978,0.075666911900043],[-0.01736555993557,-0.049480546265841,-0.034965697675943],[-0.050161071121693,0.10625744611025,0.033881727606058]],[[0.016105763614178,0.080517739057541,0.018096636980772],[-0.018753251060843,-0.027987621724606,-0.022897096350789],[-0.044341277331114,-0.023583460599184,-0.090675756335258]],[[-0.00014401139924303,0.060009624809027,0.057999096810818],[-0.063493870198727,0.0066697257570922,-0.015126122161746],[-0.047833614051342,-0.03005844168365,-0.023901399224997]],[[-0.038671929389238,-0.095864430069923,0.02961234934628],[-0.0076910485513508,-0.00089227024000138,0.023262064903975],[0.0028997515328228,-0.030959837138653,-0.035105597227812]],[[-0.015542194247246,-0.03880912438035,0.02138938382268],[0.051904071122408,-0.038067236542702,0.019024316221476],[-0.048846639692783,0.032577946782112,0.026027750223875]],[[0.032344251871109,-0.030445201322436,-0.067225120961666],[0.040944896638393,-0.011825540103018,-0.033809695392847],[-0.0060214223340154,-0.053307242691517,0.06415568292141]],[[0.080952003598213,0.048310410231352,0.031508378684521],[-0.0058031370863318,-0.001577487681061,-0.010017829947174],[-0.01359630189836,-0.0099986307322979,-0.051374323666096]],[[-0.068801127374172,0.015017151832581,0.080577038228512],[-0.02082453481853,-0.024015618488193,0.040705367922783],[-0.080860294401646,-0.024191405624151,0.024202467873693]],[[-0.093631267547607,-0.015293025411665,0.026051875203848],[0.0022767977789044,-0.030009727925062,0.025664120912552],[0.034764174371958,0.034703191369772,0.088272884488106]],[[-0.02907001785934,-0.032401122152805,-0.0039681834168732],[-0.045849241316319,-0.0411984808743,0.033780440688133],[-0.058403845876455,-0.0037610761355609,0.031532969325781]],[[0.03210224211216,0.0014562563737854,0.03835566714406],[0.054690521210432,0.088131487369537,-0.02372482419014],[0.047266714274883,0.011840154416859,-0.037607192993164]],[[-0.039025660604239,0.0078377537429333,0.012067361734807],[-0.057454962283373,0.025567190721631,0.050240036100149],[-0.0079094301909208,0.014867798425257,-0.033110722899437]],[[0.027895895764232,0.038521837443113,0.022149069234729],[-0.057784147560596,-0.04036108404398,0.01770661957562],[0.072107210755348,0.011146931909025,0.028861487284303]],[[-0.021141933277249,0.0099098701030016,0.01008328422904],[0.010625817812979,-0.0078744571655989,0.04589568823576],[0.012081111781299,0.0026289743836969,0.01521136239171]],[[-0.066668324172497,0.02004779689014,-0.012011366896331],[-0.06186781078577,0.026110347360373,-0.0012913874816149],[-0.032712869346142,0.010310148820281,0.023297164589167]],[[0.074413537979126,-0.010408859699965,0.045415118336678],[-0.025036523118615,-0.0088907722383738,0.044569849967957],[-0.022179894149303,-0.031105298548937,-0.056770633906126]],[[0.058727532625198,0.042221467941999,-0.011964186094701],[0.050396829843521,0.0089226104319096,0.0677854642272],[0.077669702470303,0.029273768886924,0.056471146643162]],[[0.023325184360147,0.065508559346199,0.013899875804782],[0.084327779710293,-0.0092674763873219,-0.0053015002049506],[-0.03583175316453,-0.10527532547712,-0.028649846091866]],[[0.029981777071953,0.052475474774837,-0.040655758231878],[-0.043023597449064,0.026504885405302,0.013248433358967],[0.017372598871589,0.0058415201492608,-0.0046279621310532]],[[0.029914973303676,0.079312957823277,0.071060478687286],[0.011031303554773,-0.036865655332804,-0.057427741587162],[0.043924130499363,-0.025841614231467,-0.051374197006226]],[[-0.0049315788783133,0.00062227860325947,-0.023438962176442],[0.033525746315718,-0.0076691936701536,-0.02283688634634],[0.010561022907495,0.012298282235861,-0.0142787322402]],[[-0.042928371578455,0.0097476625815034,0.013013472780585],[0.042916312813759,0.0036641731858253,-0.041538529098034],[0.020726883783937,0.012178007513285,0.060583416372538]],[[0.021895388141274,-0.0045374687761068,-0.020032776519656],[0.0027895912062377,-0.059920288622379,-0.023314472287893],[0.0059335781261325,0.030207900330424,0.016998179256916]],[[0.016579914838076,-0.048858571797609,-0.0097629316151142],[-0.052710048854351,-0.010474272072315,-0.011725651100278],[0.0072943647392094,-0.0044665476307273,0.011330543085933]],[[-0.0038312710821629,0.020321073010564,0.01347984932363],[0.019467022269964,0.024803843349218,0.018912689760327],[-0.021840469911695,-0.063290655612946,-0.044400222599506]],[[-0.053747534751892,0.029109185561538,0.041603337973356],[-0.015435113571584,-0.039165802299976,0.0057698311284184],[-0.00036849032039754,0.0018082894384861,-0.050160013139248]],[[-0.030608696863055,0.10657916218042,0.024553749710321],[-0.015511454083025,0.030075512826443,0.028539296239614],[0.051468327641487,-0.06346520036459,-0.10708069056273]],[[-0.029949516057968,-0.0056840223260224,0.058065041899681],[-0.017629198729992,0.03610260784626,0.06917217373848],[-0.020187553018332,-0.041858248412609,0.043090000748634]],[[-0.02380334213376,0.015263653360307,-0.0025263929273933],[0.011629020795226,-0.034555152058601,-0.010591968894005],[-0.044508509337902,-0.0019614310003817,0.0052136187441647]],[[0.054798897355795,-0.00062443205388263,-0.061398297548294],[-0.031304642558098,0.046146769076586,0.0076261945068836],[0.034710057079792,-0.063614018261433,0.0060984753072262]],[[-0.043396312743425,0.008213434368372,0.017338858917356],[-0.016451586037874,-0.0061245961114764,-0.010864148847759],[0.05129761248827,-0.0093970941379666,-0.013140309602022]],[[0.0014363501686603,-0.030126305297017,-0.043643567711115],[0.02370592020452,0.07304884493351,0.048539619892836],[-0.020437585189939,0.038967594504356,-0.027013430371881]],[[0.074314616620541,0.049033213406801,-0.042652238160372],[-0.022414954379201,0.022916836664081,-0.052847653627396],[0.04678637906909,0.11208361387253,0.0008970620110631]],[[-0.044388383626938,-0.016154322773218,-0.010743052698672],[0.0091005451977253,-0.069875538349152,0.041257366538048],[-0.079638466238976,-0.078962601721287,0.0020555737428367]],[[0.033920496702194,0.063673377037048,0.043372828513384],[-0.023185150697827,0.091818951070309,0.0051965774036944],[-0.014321425929666,-0.016211884096265,0.0097436578944325]],[[0.031270366162062,-0.052783537656069,0.042151819914579],[-0.034692317247391,0.023993609473109,-0.038934465497732],[0.030256249010563,-0.00092010985827073,0.041901618242264]],[[0.0096539696678519,-0.0080150589346886,0.05032617598772],[-0.11186301708221,0.078159458935261,0.046406056731939],[-0.01264557428658,0.0327411852777,0.013791061006486]],[[0.036108750849962,0.088380746543407,0.033222179859877],[-0.028540916740894,0.053365092724562,-0.0035970483440906],[0.014099027961493,0.0073410039767623,-0.012906391173601]],[[-0.011806415393949,-0.043054319918156,-0.0061604012735188],[0.050215847790241,0.024210944771767,0.067026726901531],[0.019461205229163,0.01659731939435,-0.013620055280626]],[[0.018619945272803,-0.031353089958429,-0.095538981258869],[0.0059408582746983,0.0065066595561802,-0.072622783482075],[0.054503101855516,0.048048254102468,-0.067403875291348]],[[-0.01113669667393,0.072682052850723,-0.0016515175811946],[-0.027331609278917,-0.021291116252542,-0.0079873465001583],[0.021027844399214,0.0084296818822622,-0.058333788067102]],[[-0.027642214670777,-0.0023351979907602,-0.010804697871208],[-0.02787315286696,0.019937414675951,0.040805630385876],[-0.0056446734815836,-0.036901440471411,0.028843991458416]],[[0.023817013949156,0.067349821329117,0.046864729374647],[0.010440573096275,-0.011857675388455,-0.047047853469849],[0.022811165079474,-0.014644953422248,-0.0025886916555464]],[[-0.098667673766613,-0.083648875355721,0.052624803036451],[0.028633004054427,-0.018852408975363,-0.09809884428978],[0.026820152997971,-0.0062368451617658,-0.041182663291693]],[[0.042913824319839,0.0059907804243267,-0.040633760392666],[0.047606263309717,-0.0056449128314853,0.057819221168756],[0.036071728914976,0.0059118675999343,0.058074828237295]],[[0.0046938699670136,0.0074430168606341,-0.024524154141545],[0.015652807429433,0.0046227271668613,0.0059056649915874],[0.01625401712954,0.0054777688346803,-0.035531658679247]],[[0.0026395483873785,0.019694425165653,-0.026544362306595],[0.022040730342269,-0.02123604901135,-0.073462210595608],[-0.0042826421558857,0.043605178594589,0.050384059548378]],[[-0.0035298520233482,0.0038944059051573,0.014182942919433],[0.034473653882742,0.031581353396177,0.034003224223852],[0.057492170482874,0.011985337361693,-0.034422282129526]],[[-0.0073533281683922,-0.083623185753822,-0.034834291785955],[0.0077605429105461,-0.0096651874482632,0.10233195871115],[0.045682229101658,0.043964471668005,-0.079579822719097]],[[-0.02229431271553,-0.080516383051872,-0.070434302091599],[0.054283626377583,0.025318009778857,0.02031878195703],[0.02483718842268,0.056036241352558,0.025744581595063]],[[-0.025941258296371,-0.03422762081027,0.0068484684452415],[-0.049699906259775,0.0050141550600529,-0.011581989936531],[-0.03803838416934,-0.024655545130372,0.039569746702909]],[[-0.023575382307172,-0.008952951990068,-0.042484927922487],[0.020778918638825,0.087224736809731,-0.0050365156494081],[-0.019044620916247,0.062264494597912,0.0126425717026]],[[0.018201189115644,-0.0097605595365167,0.061514653265476],[0.011247714050114,-0.01563679985702,0.027905782684684],[0.0055071976967156,-0.012746546417475,-0.06221279874444]],[[-0.026196552440524,-0.020148294046521,0.019858593121171],[-0.012772736139596,0.029637424275279,0.042878191918135],[0.040335208177567,0.013312836177647,0.037437364459038]],[[0.025159798562527,-0.010275663807988,0.0027039756532758],[0.044030092656612,-0.020980061963201,0.049789659678936],[-0.017795279622078,0.044761970639229,0.026846358552575]],[[0.013885153457522,0.05517864972353,-0.0048053790815175],[0.045310817658901,-0.027804205194116,0.0048906248994172],[-0.033965304493904,-0.017242472618818,-0.050873883068562]],[[-0.021692706272006,0.0094226812943816,-0.0039691436104476],[0.026161713525653,0.09069612622261,0.043402355164289],[-0.049602448940277,-0.067645736038685,-0.055450938642025]],[[0.0062364777550101,-0.086521111428738,0.044142358005047],[0.0073218150064349,0.023998651653528,0.05097196623683],[-0.047995284199715,0.052370890974998,0.011830511502922]],[[0.070544026792049,0.033142685890198,-0.014393667690456],[0.096912048757076,-0.048069629818201,-0.079657554626465],[0.054635837674141,-0.0062530171126127,0.053720474243164]],[[-0.049901761114597,-0.045556541532278,0.070126585662365],[0.053599078208208,0.021359970793128,0.0049655213952065],[-0.013916951604187,-0.0083753541111946,0.0066427602432668]],[[0.015968197956681,0.039951208978891,0.035209614783525],[-0.023125637322664,0.045402903109789,0.090413056313992],[-0.027070982381701,-0.068912819027901,-0.018784085288644]],[[0.047774456441402,0.060059815645218,-0.023213423788548],[-0.029073726385832,-0.10204002261162,-0.0040928404778242],[0.044869422912598,0.01544352248311,0.02150746807456]],[[-0.045715223997831,-0.048019271343946,0.0029867012053728],[0.0032622388098389,-0.0042577832937241,0.04185851290822],[0.0014736015582457,0.008559794165194,-0.013791278004646]],[[0.011229818686843,0.036871593445539,-0.013283602893353],[0.025565560907125,0.0059483107179403,0.0045819957740605],[-0.01974874548614,0.0019063974032179,0.029097298160195]],[[-0.0012184208026156,0.011681070551276,0.0083907525986433],[-0.08172170072794,-0.029528861865401,0.049636121839285],[-0.038516968488693,-0.0025907738599926,0.045346241444349]],[[-0.027972796931863,0.036447364836931,0.0027275334578007],[-0.0049275760538876,0.027991143986583,0.04220075905323],[-0.034567393362522,0.012110648676753,0.058382894843817]],[[0.055634748190641,0.083035796880722,-0.0040585389360785],[-0.034272450953722,0.010800142772496,-0.021223915740848],[-0.0084865046665072,-0.00049568881513551,-0.023984162136912]],[[-0.0254060421139,0.035568282008171,0.011267626658082],[-0.06638465821743,-0.056648101657629,0.067285560071468],[-0.080194219946861,0.020369196310639,-0.010968768969178]],[[0.038539536297321,0.030949536710978,-0.0099499551579356],[-0.021363485604525,-0.054089065641165,0.041197877377272],[0.017606735229492,-0.0028937312308699,-0.020556421950459]],[[-0.0071985870599747,0.020110122859478,0.024332074448466],[-0.0026814597658813,-0.060428325086832,0.022010840475559],[-0.049554213881493,-0.051444575190544,-0.046910919249058]],[[-0.0027190565597266,0.015163434669375,-0.032651908695698],[0.0090815909206867,0.042939621955156,0.00011173587699886],[-0.053269650787115,-0.055925600230694,0.0026611774228513]],[[0.0028019049204886,0.086844094097614,-0.012066850438714],[0.03693400323391,0.04973080009222,-0.047685459256172],[-0.0037013592664152,-0.1010080948472,-0.01680207811296]],[[0.02469140291214,0.030682334676385,0.021122690290213],[0.0051166596822441,-0.055955674499273,-0.017358822748065],[0.018576744943857,-0.018680144101381,-0.025671055540442]],[[0.0052343793213367,-0.017112344503403,-0.0010119398357347],[-0.025612315163016,-0.0020177364349365,0.068669766187668],[-0.010284447111189,-0.01195546798408,0.016470938920975]],[[0.017978239804506,-0.055570878088474,0.022069156169891],[-0.012287935242057,0.0089067937806249,0.018881918862462],[-0.028657736256719,-0.068668715655804,-0.020292142406106]],[[0.042314872145653,0.071071207523346,-0.023704782128334],[0.059094093739986,-0.0059319152496755,-0.10006370395422],[-0.0054296627640724,0.017005829140544,-0.015698822215199]],[[-0.035346139222383,-0.02157743088901,0.027631878852844],[-0.033295650035143,-0.022104015573859,0.043689955025911],[0.032585084438324,0.0060326205566525,0.041937701404095]],[[-0.0071684829890728,0.034401822835207,-0.016211435198784],[0.070560067892075,-0.012822832912207,0.044989004731178],[0.031666673719883,0.010652484372258,-0.034766145050526]],[[0.014671185053885,0.033840503543615,-0.052932552993298],[-0.0094116842374206,0.036006812006235,-0.021537445485592],[-0.0011069333413616,-0.040363505482674,-0.02140736952424]],[[-0.01756701990962,0.048901565372944,0.015411725267768],[0.016360715031624,0.046440672129393,-0.048030007630587],[0.060854751616716,0.044771406799555,-0.014589745551348]],[[-0.012617977336049,0.0073233456350863,-0.034246928989887],[0.028937900438905,0.0057871509343386,-0.032666809856892],[0.00021669926354662,0.032807946205139,0.020606840029359]],[[-0.0081307450309396,0.068909533321857,-0.022821007296443],[0.031848106533289,0.026440419256687,0.012414340861142],[0.004723415710032,0.013039117679,0.0074029979296029]],[[-0.056688360869884,-0.046524025499821,-0.052089758217335],[0.015183408744633,-0.050853978842497,-0.029575588181615],[-0.021867761388421,0.0048919795081019,0.026358863338828]],[[-0.023187570273876,-0.037195149809122,0.0048386100679636],[0.011477627791464,0.013313043862581,0.052636615931988],[0.11051791906357,0.082724541425705,0.063572265207767]],[[0.020495496690273,-0.010819209739566,-0.02076730877161],[0.0095371650531888,0.0044737006537616,0.012781318277121],[0.055085014551878,0.019645327702165,0.071052089333534]],[[0.052827704697847,-0.0082707675173879,-0.0050195925869048],[-0.0039074695669115,0.0070638707838953,0.041605427861214],[0.00719094555825,0.0070825372822583,0.023869754746556]],[[0.019010432064533,0.01190076675266,0.074522167444229],[-0.0088913459330797,-0.08375857770443,-0.018726743757725],[0.019461806863546,0.05885199457407,0.025076186284423]],[[-0.0072052665054798,0.04222010821104,-0.048762548714876],[-0.0012828344479203,0.0068603372201324,-0.0021650420967489],[-0.012115112505853,0.0010740909492597,0.017381140962243]],[[-0.0070780352689326,0.044062476605177,0.043813388794661],[-0.029963340610266,-0.041539963334799,-0.0010388316586614],[-0.029745930805802,0.050140865147114,0.016055561602116]],[[0.03520193323493,-0.026751801371574,-0.037268623709679],[-0.072709776461124,0.048813503235579,0.0029077590443194],[0.058174502104521,-0.02508906275034,-0.010119938291609]],[[0.015555532649159,0.12369658797979,0.019840026274323],[-0.017710730433464,-0.005457790568471,-0.039480239152908],[-0.0067809098400176,0.0051960102282465,0.040781673043966]],[[-0.016770230606198,0.026044772937894,0.080582834780216],[-0.011166292242706,-0.038674641400576,0.075196728110313],[0.0022831948008388,0.013488071970642,-0.059905365109444]]],[[[0.031915981322527,-0.021701458841562,-0.0021203805226833],[-0.028348315507174,-0.027065046131611,0.0045552775263786],[-0.0034507741220295,0.0088062062859535,0.080366395413876]],[[0.067583806812763,-0.096929244697094,0.016412951052189],[0.0070732887834311,-0.032123114913702,0.051663011312485],[-0.0048324600793421,0.0077401571907103,-0.013115448877215]],[[0.079277463257313,-0.073075011372566,0.0011797649785876],[-0.035257562994957,0.060855850577354,0.023769406601787],[0.054540522396564,-0.040576864033937,0.021916121244431]],[[-0.054265029728413,-0.026431603357196,0.036063089966774],[-0.0010514315217733,-0.063938848674297,-0.0030426767189056],[-0.023363824933767,0.027670569717884,0.020509479567409]],[[0.0054302830249071,-0.032429095357656,-0.047941919416189],[0.029172334820032,0.0090161254629493,0.0053898161277175],[-0.038320749998093,-0.026858372613788,0.0020551152992994]],[[-0.041843548417091,-0.017796872183681,0.0023337362799793],[-0.026185715571046,-0.033432822674513,-0.037136133760214],[-0.090154685080051,0.033622439950705,-0.062549792230129]],[[0.0094913905486465,-0.05295779556036,-0.034582171589136],[-0.038585059344769,-0.03902455046773,0.016882045194507],[0.021829416975379,-0.070569328963757,-0.018782280385494]],[[-0.014436163939536,-0.031544603407383,0.033022802323103],[-0.030390808358788,-0.024666979908943,-0.014281287789345],[-0.010400218889117,0.00029118341626599,0.021346272900701]],[[0.058464556932449,0.064003258943558,0.08580519258976],[-0.034120209515095,-0.10725260525942,0.0072570140473545],[0.014911478385329,0.073357217013836,0.014275215566158]],[[-0.077593103051186,0.091313019394875,-0.027755610644817],[0.079848147928715,-0.044905640184879,-0.0012610991252586],[0.044252831488848,0.0088218534365296,-0.022196443751454]],[[-0.0035218368284404,0.04056778550148,-0.011850458569825],[0.043440647423267,0.065876431763172,-0.032366495579481],[-0.028189519420266,0.05781002342701,0.0061161881312728]],[[0.039510179311037,0.041176363825798,-0.030001699924469],[0.035303346812725,0.04865350574255,0.011163876391947],[-0.021134752780199,0.023548310622573,-0.014391176402569]],[[-0.017926873639226,-0.080871596932411,0.023539040237665],[0.038225710391998,0.12097389250994,0.15427406132221],[-0.012934700585902,0.070628426969051,-0.011634742841125]],[[0.01634887047112,0.0087176291272044,0.0015401310520247],[0.01447482034564,-0.013784511946142,-0.0056403540074825],[-0.082713656127453,-0.025449801236391,-0.0070170927792788]],[[0.051106609404087,-0.0059806704521179,0.003485661232844],[0.054827120155096,-0.015867745503783,-0.020945785567164],[-0.0025834981352091,0.058699734508991,-0.019914116710424]],[[0.027549132704735,0.019468937069178,1.2869586498709e-06],[0.032296467572451,0.10526295006275,-0.016860201954842],[0.011330289766192,0.10878861695528,0.052610173821449]],[[0.03485232591629,-0.08587659150362,-0.054502613842487],[-0.034184794872999,0.0070448867045343,-0.024211077019572],[-0.046394370496273,0.077409647405148,-0.0023809848353267]],[[0.029775746166706,0.054566349834204,0.013666261918843],[-0.023836009204388,0.065894745290279,0.017763134092093],[0.0094143897294998,-0.027815522626042,-0.013283948414028]],[[-0.041174594312906,-0.021356258541346,-0.016437865793705],[-0.026621570810676,-0.073193609714508,0.0060160811990499],[-0.023786287754774,0.00088878540555015,0.09297101944685]],[[0.0033404298592359,0.042413078248501,-0.094625599682331],[0.0017864609835669,0.043180909007788,-0.042878437787294],[0.044130831956863,0.0026321453042328,-0.053955078125]],[[-0.073969207704067,0.075834505259991,0.12995789945126],[-0.034288235008717,-0.004441631026566,-0.021609438583255],[0.087822899222374,-0.05145637691021,-0.055704597383738]],[[0.003031411441043,-0.067392639815807,0.038271736353636],[-0.033004432916641,-0.01602203771472,-0.015603876672685],[0.073873803019524,-0.0044287457130849,-0.018059935420752]],[[0.021132307127118,-0.088424503803253,-0.037395637482405],[0.02873957529664,-0.010560026392341,-0.045259412378073],[-0.021046821027994,0.037183325737715,-0.025058642029762]],[[-0.073788598179817,-0.045851450413465,-0.03711399808526],[-0.044911339879036,0.041046541184187,-0.06977429240942],[-0.085409298539162,-0.0067704035900533,-0.04048316180706]],[[-0.0022107167169452,-0.02541846036911,0.033967416733503],[-0.081695824861526,0.02970345877111,-0.0028871498070657],[-0.038227513432503,0.049833849072456,0.059004973620176]],[[-0.012605586089194,0.079177729785442,-0.064774699509144],[-0.076240465044975,0.018338033929467,0.0014674622798339],[0.021578254178166,0.022992314770818,0.0049431314691901]],[[0.0040571447461843,0.056739505380392,-0.058475762605667],[0.045279439538717,0.057121776044369,-0.074354648590088],[0.080622360110283,-0.039312552660704,-0.066145747900009]],[[-0.067486241459846,-0.059016689658165,-0.0037676426582038],[-0.0092784073203802,0.10679945349693,-0.050549421459436],[-0.01810067333281,-0.057099182158709,0.001873814733699]],[[0.0034470760729164,-0.0041129593737423,-0.063635289669037],[0.10544492304325,0.0046323770657182,-0.029845327138901],[-0.054306920617819,0.027848433703184,0.026087038218975]],[[-0.11416406184435,0.11749998480082,-0.027506943792105],[0.024739008396864,-0.049038104712963,0.01094685960561],[-0.022922143340111,0.086243599653244,-0.016519386321306]],[[0.050197072327137,-0.068757690489292,0.06117345020175],[-0.044870015233755,-0.04728852212429,-0.034479800611734],[-0.0091078039258718,0.071956686675549,0.032373838126659]],[[-0.041483860462904,0.03327614441514,0.01301578246057],[0.050246972590685,0.0021216501481831,-0.075733177363873],[0.047332774847746,-0.072748020291328,0.026182547211647]],[[0.016911501064897,-0.01147978566587,0.056402023881674],[-0.049568921327591,0.0098923845216632,0.061254322528839],[0.018679782748222,-0.024771802127361,-0.03233740478754]],[[-0.0051425145938993,0.10239561647177,0.037253350019455],[0.0093059912323952,0.016474023461342,0.062988676130772],[-0.040220022201538,0.027738714590669,-0.061056479811668]],[[-0.020354829728603,0.0017025119159371,-0.0014462339458987],[0.0087555069476366,0.062006838619709,-0.037826288491488],[-0.032893303781748,0.093620918691158,0.05900764092803]],[[0.035609532147646,-0.025555085390806,-0.023328794166446],[0.032184008508921,0.0033856723457575,-0.0098037477582693],[-0.040505543351173,0.040690403431654,-0.021130761131644]],[[-0.06446348875761,0.042954333126545,-0.066491939127445],[0.029859704896808,-0.12079000473022,-0.0049007097259164],[-0.042028281837702,0.059791442006826,-0.017784690484405]],[[-0.085989341139793,-0.034718200564384,-0.0043609477579594],[-0.016633916646242,0.11138727515936,0.0509192943573],[0.033068422228098,0.023468604311347,-0.012452600523829]],[[-0.027502562850714,0.029758337885141,-0.036690380424261],[0.02149404771626,0.047643769532442,0.029187679290771],[-0.010888916440308,-0.018968861550093,0.050560045987368]],[[-0.056690819561481,-0.087845474481583,-0.0069096684455872],[-0.080877654254436,-0.019147021695971,-0.0025359641294926],[-0.013737237080932,0.036862898617983,0.022826896980405]],[[-0.029790164902806,-0.048568535596132,-0.081191867589951],[-0.027481595054269,0.032648168504238,0.047508157789707],[0.010762923397124,0.012344942428172,-0.085469767451286]],[[-0.005723366048187,-0.019221540540457,-0.041149400174618],[-0.015466865152121,-0.050340689718723,-0.090715110301971],[-0.0094594461843371,-0.01636953279376,0.017165208235383]],[[-0.053337879478931,0.062164004892111,-0.037489864975214],[0.0066383685916662,-0.009792672470212,0.14070878922939],[0.029956107959151,-0.054426312446594,-0.078340269625187]],[[0.0023267904762179,-0.029503049328923,0.0041785002686083],[0.020222106948495,0.057380672544241,-0.079366967082024],[-0.0032931894529611,0.10541332513094,-0.011491926386952]],[[0.00073572964174673,0.07649752497673,-0.037923190742731],[-0.021469481289387,0.044456254690886,-0.099711552262306],[-0.023665899410844,0.029530148953199,0.083170019090176]],[[-0.049013841897249,-0.09141393750906,0.029099741950631],[-0.068905793130398,-0.10713312774897,0.06170380115509],[0.047367811203003,-0.017582034692168,0.090682081878185]],[[0.058337416499853,-0.0025355238467455,0.0019726685713977],[-0.062589608132839,0.14980693161488,0.0059739924035966],[-0.0022696673404425,0.05622499063611,0.050101365894079]],[[0.045112635940313,0.063809134066105,0.036468803882599],[0.022838409990072,0.058942686766386,-0.057401563972235],[-0.023639131337404,0.02175104804337,0.023748090490699]],[[-0.0039320788346231,0.086109817028046,0.027859788388014],[0.083484962582588,-0.049971606582403,0.024132115766406],[0.0027596494182944,-0.047868195921183,0.021082883700728]],[[-0.038968559354544,-0.0010287578916177,-0.011795322410762],[-0.068766064941883,0.018820812925696,-0.039308149367571],[-0.056421779096127,-0.025891726836562,-0.033380754292011]],[[-0.025631584227085,0.038110718131065,0.043182857334614],[0.022047515958548,0.010132059454918,-0.011293171904981],[-0.058469649404287,0.050744868814945,-0.067416183650494]],[[-0.095998972654343,0.021711708977818,0.047389578074217],[-0.059179622679949,-0.029374156147242,-0.0067333853803575],[0.072013363242149,-0.060378581285477,-0.089121542870998]],[[-0.061947919428349,-0.074883237481117,-0.048908099532127],[-0.029274649918079,-0.020417340099812,-0.058280393481255],[-0.081995017826557,-0.0051228269003332,-0.0043565584346652]],[[0.042284071445465,0.03148428350687,-0.091354876756668],[0.085612840950489,-0.12363777309656,0.015117178671062],[-0.0018184336367995,0.043502930551767,-0.0054540643468499]],[[0.034118972718716,-0.041258215904236,-0.0015053362585604],[-0.028322376310825,-0.026518937200308,0.027125652879477],[-0.022798819467425,-0.053136423230171,-0.023585787042975]],[[-0.10809364169836,-0.017841544002295,0.0029081646353006],[0.041357219219208,0.058311138302088,0.055208567529917],[0.033664848655462,0.034671206027269,0.016141457483172]],[[0.070279985666275,-0.029630621895194,-0.043440140783787],[-0.0077797444537282,-0.079169057309628,-0.046506501734257],[-0.016956690698862,0.030708650127053,0.046534571796656]],[[0.057770904153585,-0.021840156987309,0.00046754788490944],[-0.047573573887348,0.017060009762645,0.029528023675084],[-0.047841001302004,-0.0032045317348093,-0.020533272996545]],[[0.0058866590261459,0.037740428000689,-0.035754412412643],[0.026751881465316,0.0035425801761448,-0.052216593176126],[-0.017353178933263,0.012963976711035,0.052485428750515]],[[-0.026137871667743,-0.017906878143549,-0.024601608514786],[-0.035403050482273,0.0022408554796129,0.0540941208601],[0.02046319283545,-0.060133200138807,-0.017414396628737]],[[-0.069521993398666,-0.010538804344833,0.037673097103834],[0.046821359544992,0.022046150639653,0.11027454584837],[-0.016523545607924,0.091967709362507,0.093587279319763]],[[-0.08610787242651,0.077481508255005,0.041844792664051],[-0.0091390861198306,0.040997616946697,0.010604397393763],[-0.026770887896419,-0.053334321826696,0.040164094418287]],[[0.037746246904135,0.024419695138931,0.0070453654043376],[-0.025768080726266,-0.024959158152342,0.0011609983630478],[-0.022972386330366,0.094125166535378,0.037286777049303]],[[-0.042038269340992,0.017600513994694,-0.020191645249724],[0.02272348664701,0.099343299865723,0.012913459911942],[0.014773278497159,0.026906151324511,-0.0021306914277375]],[[0.047031790018082,-0.013452772982419,-0.058220978826284],[-0.0047593736089766,-0.012964361347258,-0.00087502750102431],[-0.085681222379208,0.0038514174520969,0.057240597903728]],[[-0.11148004978895,-0.02839619666338,0.094491757452488],[-0.024516854435205,0.069375991821289,-0.0018481881124899],[-0.022206146270037,0.023702448233962,-0.0049131098203361]],[[0.13706341385841,0.19608125090599,-0.014398406259716],[0.012812171131372,-0.013223180547357,0.071710661053658],[-0.047898817807436,-0.05071809142828,0.040469855070114]],[[-0.018611267209053,-0.014174836687744,0.065331488847733],[0.02327173948288,0.010885437950492,-0.011484076268971],[0.016437070444226,-0.0055017848499119,-0.036092732101679]],[[0.034073460847139,-0.039860267192125,-0.041900105774403],[-0.05699434876442,-0.013813078403473,-0.040784116834402],[-0.041814681142569,0.033642683178186,0.091708309948444]],[[0.019259605556726,0.056367076933384,0.045683976262808],[-0.014166660606861,-0.040028180927038,0.028863824903965],[-0.036026012152433,0.042996279895306,-0.062075760215521]],[[0.017821317538619,0.02867504581809,0.047490485012531],[-0.062011819332838,0.05148259550333,-0.025923108682036],[0.070730097591877,-0.01984504237771,0.019291125237942]],[[-0.0065600383095443,-0.027980260550976,0.0036696216557175],[-0.00012039982539136,0.0691983923316,0.042528793215752],[-0.0041461107321084,-0.0035225588362664,-0.013366208411753]],[[0.010223576799035,0.024457501247525,0.034824885427952],[0.030149549245834,-0.0023990368936211,0.019254714250565],[0.040838059037924,0.035335697233677,0.08709804713726]],[[0.070324346423149,-0.069986715912819,0.02276187390089],[0.057444781064987,0.025195885449648,-0.02769004739821],[0.10786197334528,-0.0054781339131296,0.02154278755188]],[[0.068453028798103,0.023187555372715,-0.058624401688576],[-0.055079236626625,-0.020027140155435,0.019350901246071],[0.0066389325074852,-0.017846561968327,0.024152349680662]],[[-0.010978194884956,-0.0054738535545766,0.047837138175964],[-0.010086759924889,0.098644584417343,-0.043011296540499],[-0.0031955300364643,-0.010602815076709,0.034370485693216]],[[0.012228765524924,-0.013072985224426,0.0083088558167219],[0.026412095874548,-0.053538668900728,-0.044628210365772],[0.067979194223881,0.13901303708553,0.018335774540901]],[[-0.042068380862474,0.029960092157125,-0.084202527999878],[-0.071684651076794,-0.0014091765042394,0.023937119171023],[-0.057140801101923,0.047441758215427,0.094205126166344]],[[-0.029914261773229,0.039019472897053,-0.0037806129548699],[0.11724277585745,-0.043406829237938,-0.055191494524479],[0.10059187561274,0.03948163241148,0.063566908240318]],[[0.0077850455418229,-0.0038265809416771,-0.048938903957605],[-0.012769558466971,0.011489071883261,0.062081348150969],[0.067213498055935,-0.11398680508137,0.042117796838284]],[[-0.015407814644277,0.0056353444233537,-0.031193446367979],[-0.036528028547764,-0.032010886818171,0.0164739433676],[-0.057791650295258,-0.088931180536747,0.0070610293187201]],[[0.009183794260025,0.022160850465298,-0.0042366604320705],[-0.027624307200313,-0.093391723930836,0.044983148574829],[-0.014925445429981,-0.014216460287571,-0.017202150076628]],[[0.062675945460796,-0.0380336381495,-0.007108255289495],[0.032402630895376,-0.055876236408949,-0.054274868220091],[-0.045385800302029,0.021688723936677,0.0075198356062174]],[[0.046555481851101,0.11455630511045,0.054944258183241],[0.07141051441431,-0.023563098162413,-0.017782643437386],[-0.06560543179512,0.073131330311298,0.06486339867115]],[[-0.056414235383272,-0.014728716574609,0.013925411738455],[-0.0021873097866774,-0.095550335943699,0.055242720991373],[0.034773755818605,0.060156229883432,0.0035518435761333]],[[0.10173358023167,0.031004890799522,0.016786176711321],[0.024922795593739,-0.04531217366457,-0.079376101493835],[-0.024182412773371,0.071263127028942,0.072604425251484]],[[-0.0094956001266837,-0.008261970244348,0.055773697793484],[0.0096653308719397,0.020077528432012,0.0012916213599965],[-0.061584945768118,-0.091173775494099,-0.047277748584747]],[[0.009032841771841,0.049286231398582,-0.06938336789608],[-0.07681231200695,0.011769885197282,-0.051867727190256],[0.011925101280212,0.013052619062364,0.0099466349929571]],[[-0.007275755982846,0.0041444986127317,0.034371346235275],[-0.07586532831192,-0.0085442047566175,-0.0017906446009874],[-0.047206327319145,-0.021898943930864,0.019405871629715]],[[0.023272352293134,-0.045274216681719,0.0052481056191027],[-0.00043466870556585,-0.073439635336399,0.038397580385208],[-0.040854729712009,0.034016489982605,-0.021475875750184]],[[-0.01276321709156,-0.020538300275803,-0.090638712048531],[0.023754386231303,0.044183883816004,0.0069259740412235],[0.02945308201015,0.030179213732481,-0.015116462484002]],[[-0.058678034693003,-0.023771578446031,0.02160282433033],[-0.016803683713078,0.013936651870608,0.12142749130726],[0.061621353030205,0.02906846627593,0.034968391060829]],[[0.019217906519771,-0.0071842353790998,0.058042574673891],[0.025512555614114,0.066618680953979,0.029791133478284],[-0.082747347652912,0.018099473789334,0.054515913128853]],[[0.14677661657333,0.0013930023415014,0.05955283343792],[-0.042540919035673,0.043269157409668,-0.043725673109293],[-0.024485189467669,-0.0010741740697995,0.01486286893487]],[[0.043828055262566,-0.05233545601368,-0.024564379826188],[0.047629952430725,0.10538270324469,0.025022277608514],[-0.0044960239902139,-0.032329432666302,-0.044872421771288]],[[0.0013458315515891,0.010964443907142,0.021643314510584],[-0.069223538041115,-0.013183172792196,-0.036086048930883],[-0.0027597688604146,0.0055791260674596,0.029430903494358]],[[0.057891879230738,0.024974649772048,0.021395476534963],[0.022126886993647,0.042696215212345,0.0097853848710656],[0.05842961370945,-0.011528658680618,0.036377411335707]],[[0.028013167902827,-0.0037446492351592,-0.052979689091444],[-0.051172871142626,-0.0070894588716328,-0.031254500150681],[0.0062537412159145,0.0058204140514135,0.005765556357801]],[[0.0081506054848433,-0.024859897792339,-0.040424793958664],[-0.055715464055538,0.031560834497213,-0.019865991547704],[0.035365741699934,0.017267229035497,-0.060755867511034]],[[-0.0067694084718823,-0.0069757946766913,-0.034566685557365],[-0.04379441216588,0.0039746151305735,-0.029113832861185],[0.0029918954242021,-0.043803114444017,-0.035853464156389]],[[-0.020484942942858,0.085458181798458,0.0082420445978642],[-0.027279444038868,-0.084746569395065,-0.044117335230112],[0.020010812208056,0.012013559229672,0.074213854968548]],[[-0.086721628904343,-0.051306940615177,-0.020696442574263],[0.074563749134541,-0.0033442531712353,0.0024267474655062],[0.013421260751784,-0.00090647302567959,-0.010760131292045]],[[0.066555678844452,-0.017594236880541,0.024462381377816],[-0.028087340295315,-0.022564334794879,0.050605699419975],[-0.08308307826519,-0.0072528757154942,-0.021149268373847]],[[-0.057810440659523,0.007834680378437,0.010529545135796],[0.020825667306781,0.012289599515498,0.045339148491621],[-0.040564276278019,0.058424174785614,-0.052086532115936]],[[-0.047926496714354,0.024270443245769,-0.025083826854825],[0.001981902634725,0.015796225517988,-0.050582949072123],[0.060049258172512,-0.040620245039463,-0.008668695576489]],[[0.024985704571009,-0.043884560465813,0.0089979767799377],[0.029304277151823,0.013904201798141,-0.11457592248917],[-0.050886124372482,-0.048421639949083,-0.048008259385824]],[[0.043766353279352,0.0081937154754996,-0.048299182206392],[-0.019197342917323,0.08054293692112,-0.013935186900198],[0.040708716958761,0.023615948855877,0.02004424110055]],[[-0.0078670540824533,0.061227183789015,-0.089781440794468],[0.033904403448105,-0.010379930958152,-0.03982100635767],[0.012395474128425,0.012004569172859,0.017631500959396]],[[0.023986883461475,0.077716805040836,0.015250307507813],[0.080357976257801,-0.0014024925185367,-0.00096363539341837],[-0.025681870058179,0.03162207454443,-0.064028657972813]],[[0.028026869520545,-0.022285684943199,0.040477946400642],[-0.024842653423548,0.062206756323576,-0.063470631837845],[0.12522065639496,0.015227693133056,-0.028088163584471]],[[-0.025630302727222,-0.0020664792973548,0.033556375652552],[0.070490166544914,0.018831711262465,0.002740774769336],[0.092468999326229,0.0031195259653032,-0.0036264169029891]],[[-0.091200575232506,0.014836939051747,-0.023987045511603],[-0.0049003446474671,0.024383269250393,-0.065916769206524],[-0.00079883437138051,0.016273558139801,0.22316168248653]],[[-0.032352078706026,-0.027861122041941,0.026503914967179],[0.010762040503323,-0.025354567915201,0.026253703981638],[0.050517342984676,0.063010647892952,-0.010549809783697]],[[-0.081559680402279,0.067907027900219,0.0038445454556495],[-0.017345365136862,-0.02047217823565,0.028003687039018],[0.05979310721159,-0.01663925871253,0.033315721899271]],[[-0.032621245831251,-0.0023684692569077,-0.030221423134208],[0.068693794310093,-0.019222704693675,-0.05860561132431],[0.0091956732794642,-0.061089035123587,-0.013132252730429]],[[0.012792936526239,0.055848512798548,0.039226237684488],[-0.030963391065598,-0.0028903826605529,0.0090711219236255],[-0.010612232610583,0.046893678605556,-0.016927206888795]],[[-0.010839615948498,0.045714180916548,-0.0049699759110808],[0.083071328699589,-0.0074505838565528,-0.023636691272259],[0.0090955635532737,-0.0023838456254452,-0.040927957743406]],[[0.053017564117908,0.014603020623326,0.059198535978794],[-0.085482776165009,0.0055626216344535,-0.040065985172987],[-0.0034721514675766,-0.030692592263222,-0.014967359602451]],[[0.015667932108045,0.2095288336277,-0.062942415475845],[-0.0052020400762558,0.012924702838063,0.0058467779308558],[0.016778990626335,-0.021072793751955,0.0030193764250726]],[[-0.0087301535531878,-0.021993616595864,-0.025398572906852],[0.064139701426029,0.09007416665554,-0.0012116438010707],[0.0187300555408,0.047798819839954,-0.022380968555808]],[[-0.052208002656698,-0.049215212464333,0.0017094331560656],[0.027196563780308,0.012869573198259,-0.00020823271188419],[0.011869036592543,0.011240958236158,0.056621827185154]],[[0.046886723488569,0.071651831269264,0.018625069409609],[0.028979953378439,-0.032395303249359,0.050981245934963],[0.061976414173841,-0.025005482137203,0.028748940676451]],[[0.063321329653263,-0.0093542970716953,-0.025760807096958],[0.031660415232182,0.095103099942207,-0.017201593145728],[-0.024237411096692,-0.046533584594727,-0.033931821584702]],[[-0.030765548348427,-0.043493214994669,-0.0053592910990119],[-0.082066975533962,0.07021451741457,-0.0036975909024477],[0.023884730413556,0.069887332618237,0.058114573359489]],[[-0.079246148467064,-0.052983414381742,-2.6213136152364e-05],[-0.03972702473402,-0.04179796949029,0.065152138471603],[-0.017383506521583,-0.052381284534931,0.069716818630695]],[[0.00083490979159251,0.072021663188934,0.015218305401504],[-0.012962265871465,0.012415731325746,0.11953014135361],[-0.075539074838161,-0.011395079083741,0.068941988050938]],[[0.029353959485888,0.043146014213562,0.079869501292706],[0.08171034604311,0.00057175674010068,0.059652917087078],[0.0022545047104359,-0.016236832365394,-0.034229047596455]],[[0.0654571428895,0.063438728451729,0.061587922275066],[0.046577408909798,0.0027977991849184,0.018628956750035],[-0.026148630306125,-0.0058892476372421,0.0018166000954807]]],[[[-0.016151208430529,0.018451267853379,-0.050171449780464],[-0.019271245226264,-0.00067864387528971,0.08538842946291],[-0.016611788421869,-0.018345518037677,-0.016831424087286]],[[-0.049884248524904,0.054970901459455,0.015140577219427],[0.001394072198309,-0.058906603604555,0.0080279409885406],[-0.011573580093682,0.018211727961898,0.043009258806705]],[[-0.038850966840982,0.011177009902894,-7.5313866545912e-05],[0.0074072373099625,0.022446386516094,0.01600070297718],[-0.018817080184817,0.0092156222090125,0.00050204747822136]],[[-0.021755805239081,0.017125649377704,-0.015340289101005],[0.013987285085022,-0.038581002503633,0.042942635715008],[0.018005149438977,-0.029040018096566,-0.044370144605637]],[[-0.023283500224352,0.053885396569967,-0.0079002007842064],[-0.016796831041574,-0.013617999851704,-0.014058384113014],[-0.034340862184763,0.028967740014195,-0.034780543297529]],[[-0.020311553031206,0.0047889221459627,0.01609642803669],[-0.0011149146594107,-0.017933920025826,0.046796891838312],[-0.016389230266213,0.039258923381567,-0.023713877424598]],[[0.026445170864463,-0.040375024080276,0.013689898885787],[0.020694499835372,0.052815657109022,0.035540986806154],[-0.074809074401855,-0.036726079881191,0.01757625117898]],[[-0.0098039424046874,-0.0024972537066787,0.0031071379780769],[-0.024983713403344,0.050586733967066,-0.031190408393741],[-0.024004813283682,0.001908625010401,-0.0083047524094582]],[[-0.037506561726332,-0.024272242560983,0.0057457857765257],[0.036364577710629,0.013784551993012,-0.065421745181084],[0.047209594398737,0.013334800489247,0.0060458052903414]],[[0.036798905581236,0.026814665645361,-0.0065366355702281],[-0.03261125087738,0.031498022377491,-0.0099928416311741],[-0.028457555919886,-0.0056441109627485,0.021304648369551]],[[0.020302759483457,0.056795243173838,0.017277440056205],[0.0050214342772961,-0.0033204895444214,-0.017519576475024],[-0.042544350028038,-0.026164371520281,-0.077330067753792]],[[-0.024211224168539,-0.090618275105953,-0.009432652965188],[0.01777333766222,-0.052458070218563,0.0061532934196293],[-0.0025906118098646,0.066851645708084,0.040216382592916]],[[0.0042958674021065,-0.011004499159753,0.024051759392023],[-0.0275709182024,0.08279886841774,-0.028259236365557],[0.014199582859874,0.064009934663773,-0.045878611505032]],[[-0.033076349645853,-0.020079767331481,-0.053529676049948],[-0.03301802277565,-0.00315733673051,0.0039643957279623],[-0.0066573857329786,0.019525278359652,0.015932135283947]],[[0.014099197462201,-0.023463735356927,-0.018476113677025],[-0.0044963737018406,0.020491037517786,0.030382791534066],[0.019480587914586,-0.012317158281803,0.0040564187802374]],[[-0.046210844069719,-0.0025083031505346,0.014802860096097],[0.023568095639348,0.078204050660133,-0.0058444519527256],[-0.012597417458892,0.0051050884649158,-0.002215625718236]],[[0.01211129873991,0.0031170146539807,-0.0086108976975083],[-0.019775435328484,-0.0058086789213121,-0.016202909871936],[0.039032932370901,0.038977649062872,0.014699992723763]],[[0.018508240580559,-0.0097010061144829,-0.020877359434962],[-0.0076659079641104,0.075478874146938,-0.02779189683497],[0.0056657535023987,0.023703210055828,-0.038979072123766]],[[0.042939059436321,0.022638309746981,-0.0073697855696082],[-0.095155104994774,-0.025920415297151,0.0026102466508746],[0.019114462658763,-0.034295905381441,0.021305298432708]],[[-0.0015636151656508,-0.023465309292078,-0.016776664182544],[-0.011539721861482,-0.020125323906541,0.00070129631785676],[0.0034583678934723,-0.019461359828711,0.034913077950478]],[[0.01848940551281,0.03268213570118,-0.01928942091763],[0.063031740486622,-0.035484682768583,0.036293670535088],[-0.070131242275238,-0.010616044513881,-0.0037318076938391]],[[0.042739789932966,-0.032383102923632,-0.03853839635849],[-0.052229031920433,0.064950436353683,0.0087303314357996],[-0.022464696317911,0.059492710977793,-0.00070022570434958]],[[-0.021081157028675,0.0014488440938294,-0.00076239951886237],[0.034977171570063,0.013165408745408,-0.01643936894834],[-0.014807818457484,-0.050063174217939,0.020599963143468]],[[-0.011610365472734,0.099759988486767,-0.01171051710844],[0.030460609123111,0.088257342576981,0.047290369868279],[-0.014858838170767,0.015574958175421,0.019249381497502]],[[-0.018949329853058,-0.053731177002192,0.031975332647562],[7.6168535088073e-06,0.0033401057589799,-0.020974956452847],[0.045366544276476,0.013040099292994,0.020388394594193]],[[0.0074034705758095,-0.040702432394028,-0.044860348105431],[-0.055554609745741,-0.038308832794428,0.050142791122198],[0.026080273091793,0.0049360049888492,-0.014209284447134]],[[0.01810316927731,0.005236545111984,0.024092379957438],[-0.059747133404016,0.0052054594270885,-0.042372785508633],[0.049617242068052,0.035700395703316,-0.018673969432712]],[[0.023478500545025,0.0078868744894862,0.011787886731327],[-0.0019459566101432,-0.02502329647541,-0.021006369963288],[-0.031680081039667,-0.0062754955142736,-0.024174604564905]],[[0.070261262357235,-0.0046684588305652,0.027484642341733],[0.012058789841831,-0.0012514153495431,-0.016623359173536],[0.087829142808914,0.037671025842428,-0.046313308179379]],[[0.05662801861763,0.010349942371249,-0.0045582531020045],[0.0029278597794473,-0.014287834055722,-0.010303175076842],[-0.0049416567198932,-0.010788864456117,-0.032419979572296]],[[0.012188288383186,-0.017000442370772,-0.0040306635200977],[0.025462871417403,0.050407595932484,-0.0094204749912024],[-0.090359084308147,0.001468111993745,0.041121166199446]],[[-0.029912889003754,-0.01373128965497,0.043687511235476],[0.045008733868599,-0.040291380137205,0.016465924680233],[-0.038685638457537,0.053024560213089,0.0085444450378418]],[[-0.083742186427116,-0.010791446082294,0.04256746172905],[-0.061941310763359,0.053908485919237,0.030365066602826],[-0.0019002740737051,-0.045123852789402,-0.0029265061020851]],[[-0.012681999243796,0.031359482556581,-0.010130610316992],[-0.025382619351149,0.0082766432315111,0.023714719340205],[-0.06354945898056,0.013091715984046,0.038848303258419]],[[-0.043629847466946,-0.0079601407051086,-0.02235721796751],[-0.0079551674425602,0.012535957619548,-0.025062959641218],[-0.0099809262901545,0.028828877955675,-0.00039870874024928]],[[0.026778273284435,0.02919932641089,0.02831656858325],[-0.045443378388882,-0.0054994537495077,0.072204001247883],[-0.040964547544718,-0.019923759624362,0.00064714415930212]],[[0.022014336660504,-0.013302135281265,-0.010396697558463],[-9.2461541498778e-06,0.056672547012568,0.065735541284084],[0.0063688457012177,-0.048815920948982,-0.013398963026702]],[[0.020930372178555,-0.013602005317807,0.043284364044666],[0.050911344587803,0.036505553871393,-0.061811652034521],[-0.043559819459915,-0.036359403282404,-0.018352583050728]],[[-0.0063557839021087,-0.045302912592888,-0.039074048399925],[0.0045951274223626,0.017472177743912,-0.012768380343914],[-0.018711870536208,-0.034867443144321,0.075522094964981]],[[0.001823638449423,-0.030904473736882,-0.020209539681673],[0.040234111249447,-0.0094464719295502,-0.041174296289682],[-0.004574260674417,0.031879462301731,-0.00044157158117741]],[[0.019038779661059,-0.037451479583979,0.070678487420082],[0.021186988800764,-0.058034162968397,-0.027126934379339],[0.011070253327489,0.0039079179987311,-0.022134058177471]],[[0.015456158667803,0.040098272264004,-0.027564598247409],[0.019888767972589,0.022868238389492,0.049966175109148],[0.022285783663392,-0.053634844720364,-0.01460718177259]],[[-0.024353828281164,-0.0083925845101476,-0.013376420363784],[-0.020394578576088,-0.037653539329767,0.031634703278542],[0.063811138272285,0.0069814370945096,0.02029076218605]],[[0.0041561294347048,0.030217830091715,0.030922150239348],[-0.0042080795392394,-0.081955574452877,0.028854999691248],[-0.031552273780107,-0.02061727270484,-0.026742797344923]],[[0.055495236068964,0.032269563525915,-0.056642308831215],[0.028598625212908,-0.024853475391865,-0.0050777960568666],[-0.00074258423410356,-0.009064769372344,-0.04778316617012]],[[-0.0032573139760643,-0.035298995673656,-0.040714211761951],[0.012122671119869,0.032545827329159,0.046125791966915],[0.026217250153422,0.029335932806134,-0.0025903121568263]],[[-0.013695471920073,-0.01434884686023,0.0033865063451231],[0.0033628069795668,0.02033519744873,0.015536249615252],[0.046885956078768,0.009100086055696,-0.0096539659425616]],[[-0.054387874901295,0.033057544380426,0.010383285582066],[0.0056304442696273,-0.02291982062161,-0.021257631480694],[0.0028218084480613,0.052620779722929,-7.9649696999695e-05]],[[-0.027853829786181,0.061333224177361,0.041849698871374],[-0.024462094530463,-0.058016076683998,0.018926475197077],[0.045358337461948,-0.0050833844579756,-0.030200431123376]],[[-0.018551897257566,0.021471237763762,0.009440210647881],[-0.021654745563865,0.013125612400472,0.028058599680662],[-0.074299514293671,-0.058285586535931,0.066401898860931]],[[0.04253226146102,0.026945991441607,0.0060097677633166],[-0.0011627704370767,0.015849815681577,-0.0051499311812222],[0.034807864576578,-0.0056199580430984,-0.086831286549568]],[[-0.057985138148069,-0.034971740096807,-0.040888294577599],[0.0017690219683573,0.017358902841806,0.042494855821133],[-0.027830690145493,-0.039406105875969,0.036239389330149]],[[-0.0066816252656281,0.10324808210135,0.053026273846626],[0.054004609584808,0.041411884129047,0.0033488387707621],[0.10056249052286,0.040248613804579,0.031564082950354]],[[0.014123996719718,-0.018616819754243,-0.0026741442270577],[0.024890325963497,-0.027403922751546,-0.0074068955145776],[-0.056246373802423,0.033581860363483,-0.016544673591852]],[[-0.023310396820307,0.042177889496088,-0.0059527270495892],[0.032131262123585,-0.030908009037375,0.039370562881231],[0.06302635371685,0.028769411146641,-0.025592721998692]],[[7.0251597207971e-05,0.015065281651914,-0.036196801811457],[-0.0079185692593455,0.013642190955579,-0.016803422942758],[-0.02469396777451,0.058673638850451,0.014351237565279]],[[-0.033903438597918,-0.013769314624369,0.033878412097692],[0.06393951177597,0.027512008324265,-0.050420679152012],[-0.068279102444649,-0.049599602818489,0.022752553224564]],[[-0.02057727240026,0.0020131759811193,-0.011344583705068],[0.019621819257736,0.16923668980598,-0.0031787292100489],[0.037026699632406,0.012295695021749,-0.063825160264969]],[[0.049271918833256,-0.016390305012465,0.0047639794647694],[-0.020975880324841,3.2116498914547e-05,0.010381613858044],[-0.012413940392435,0.053391870111227,-0.025335995480418]],[[-0.0004324259061832,0.02990897744894,-0.037383265793324],[-0.012710669077933,0.027736738324165,0.030935991555452],[-0.029008507728577,0.0099430801346898,0.026587825268507]],[[-0.011298673227429,-0.018848363310099,0.01386303268373],[-0.015906769782305,-0.012329442426562,-0.048222657293081],[0.036512352526188,-0.022270057350397,0.04558253288269]],[[-0.014593466185033,0.044656626880169,0.064359411597252],[0.0074861841276288,0.0020806496031582,-0.01052416767925],[0.053167395293713,-0.051746249198914,0.00012506831262726]],[[-0.008740272372961,0.0080475518479943,-0.009900726377964],[0.0039953314699233,-0.012104153633118,-0.05019037425518],[0.05389191955328,0.0072873109020293,-0.029091008007526]],[[0.0030358373187482,-0.021215990185738,-0.0252420976758],[-0.00011356943286955,-0.011060463264585,-0.010187722742558],[0.020979605615139,0.0067695924080908,0.0050214845687151]],[[-0.029388887807727,-0.0075564826838672,-0.0056762504391372],[-0.025333561003208,-0.0053370231762528,0.014378528110683],[0.038115434348583,0.052411817014217,-0.032685685902834]],[[-0.088805571198463,-0.030604226514697,0.049574870616198],[0.061703305691481,-0.010997127741575,0.0029468995053321],[0.043022993952036,0.023463562130928,-0.081342913210392]],[[-0.024392575025558,-0.0053974511101842,-0.015118651092052],[0.009246913716197,0.03901731222868,-0.036869805306196],[0.02571476995945,0.0051624649204314,0.0085854735225439]],[[0.043211922049522,-0.026588702574372,0.0059431339614093],[-0.021234564483166,0.0015839356929064,-0.02988606877625],[-0.020190302282572,-0.023602250963449,0.035002194344997]],[[0.0090623330324888,-0.032017312943935,-0.023183524608612],[0.014835475943983,0.06285410374403,-0.08796001970768],[0.038806583732367,-0.02322512306273,-0.075326502323151]],[[-0.0074171195738018,-0.0077290721237659,0.010825552046299],[-0.062163427472115,-0.028021464124322,0.020416170358658],[0.057661518454552,0.0032544580753893,-0.056152977049351]],[[0.023662375286222,-0.10510435700417,0.052621133625507],[-0.045853819698095,0.032881621271372,0.00072113930946216],[0.014579706825316,-0.028398422524333,-0.0068893791176379]],[[0.063786923885345,0.0094031430780888,0.0011460206005722],[-0.067882038652897,0.043069016188383,-0.093559943139553],[0.027559893205762,0.029537186026573,0.028426812961698]],[[-0.032240606844425,-0.016650771722198,-0.023135133087635],[0.008964616805315,-0.011463785544038,0.058655306696892],[-0.090135298669338,0.010463698767126,0.044526942074299]],[[-0.025038128718734,-0.0040958793833852,-0.046276159584522],[-0.0072521595284343,0.010575289838016,-0.0054582916200161],[0.029302386566997,0.040352359414101,0.057258602231741]],[[0.0098840063437819,-0.033058028668165,0.012278415262699],[0.022075049579144,0.085025429725647,0.074535630643368],[-0.018551606684923,-0.0072231045924127,0.0062924353405833]],[[0.024185914546251,-0.0087535604834557,-0.024419508874416],[-0.0096161691471934,-0.040692586451769,0.023263439536095],[-0.0024090812075883,-0.0051114871166646,-0.002352632349357]],[[0.0073626106604934,0.010698868893087,-0.016659058630466],[0.0073991157114506,-0.045687463134527,0.019413908943534],[-0.023928863927722,0.044055920094252,0.017334086820483]],[[0.004553034901619,0.043487545102835,-0.044300064444542],[0.005876496899873,-0.01286880671978,0.017987476661801],[0.049220506101847,-0.031197080388665,-0.012137762270868]],[[0.034828633069992,0.037523970007896,0.045419532805681],[0.012529410421848,0.047102313488722,0.0060073868371546],[0.025826763361692,-0.00080050848191604,-0.029206676408648]],[[0.051764883100986,-0.041436035186052,0.0014497003285214],[-0.0092471968382597,0.03108405135572,0.032975122332573],[-0.021649908274412,0.034000344574451,0.00023050798336044]],[[-0.046188980340958,0.055286318063736,0.032323066145182],[0.020828699693084,0.0056933830492198,0.0020904566626996],[-0.037249594926834,-0.011504031717777,-0.03664518520236]],[[0.0055162245407701,0.061932235956192,0.013561179861426],[-0.026532426476479,0.0091166282072663,-0.029655784368515],[-0.042520768940449,-0.01573128439486,0.030700152739882]],[[0.056615665555,0.0035975573118776,0.07733790576458],[-0.010990045033395,-0.0086816130205989,0.01861460506916],[-0.081815809011459,0.027448166161776,-0.067304193973541]],[[0.013683964498341,0.0037081202026457,-0.017442774027586],[-0.022455204278231,0.035689625889063,0.0071638501249254],[-0.022154157981277,-0.028896529227495,-0.0091890897601843]],[[-0.0096812071278691,0.010510895401239,0.043805733323097],[0.0091799590736628,-0.021689077839255,-0.019185401499271],[0.046300895512104,0.015190217643976,0.050125513225794]],[[0.036166843026876,-0.0045533180236816,0.071829251945019],[0.020746760070324,0.025899551808834,-0.043218281120062],[-0.033381480723619,0.0019437606679276,-0.066993437707424]],[[-0.034506566822529,-0.0052477042190731,0.068911239504814],[0.029008917510509,-0.048487324267626,0.020989960059524],[-0.004050497431308,0.045203723013401,-0.031374417245388]],[[-0.040068306028843,0.0015226020477712,0.028547873720527],[0.0072381105273962,0.03133999556303,0.024648658931255],[-0.020362177863717,-0.077309176325798,-0.012251788750291]],[[-0.061355106532574,0.0027203534264117,0.054861444979906],[0.042254492640495,-0.015056057833135,-0.068810917437077],[-0.001340841408819,-0.019350511953235,0.0045439726673067]],[[-0.042059507220984,-0.033321268856525,-0.021887417882681],[0.069041818380356,-0.014605550095439,0.0065587875433266],[0.0055362391285598,0.021864797919989,-0.0047571277245879]],[[0.0018454906530678,-0.00062346260529011,0.025011347606778],[0.001666406635195,-0.093893654644489,-0.011818648315966],[0.0088188229128718,0.0060493908822536,-0.036315567791462]],[[-0.012381783686578,-0.034681316465139,0.015757204964757],[0.0073439390398562,0.037335895001888,-0.0025287638418376],[-0.0051135011017323,0.0070274011231959,-0.026940168812871]],[[0.020627377554774,0.050283327698708,0.02818719111383],[-0.033328663557768,-0.0057549411430955,0.022491652518511],[0.009744530543685,-0.13383340835571,0.014622033573687]],[[0.002636147197336,0.024750979617238,-0.014138727448881],[-0.0064676101319492,-0.02354827709496,0.014247009530663],[0.0077056791633368,-0.031228249892592,-0.0046815015375614]],[[-0.010275532491505,0.014084761962295,0.040062803775072],[0.022375034168363,-0.061372462660074,0.09026888012886],[-0.019050356000662,-0.022952934727073,-0.027990592643619]],[[0.0049903457984328,-0.015796301886439,-0.06077217310667],[-0.026112569496036,-0.029473144561052,0.064316608011723],[0.057026084512472,-0.024073587730527,-0.0069781392812729]],[[0.0010305994655937,-0.040046449750662,0.04776406660676],[0.012544818222523,-0.010839741677046,-0.015906663611531],[0.017395535483956,0.019664073362947,0.025001892820001]],[[-0.035599038004875,0.012362752109766,-0.03389660269022],[0.0031226989813149,-0.022481601685286,-0.0035483888350427],[0.10161542892456,-0.0016761667793617,-0.013922207057476]],[[0.0015646872343495,0.055817116051912,-0.031736668199301],[-0.0010820756433532,0.012108096852899,-0.0072357323952019],[0.035935703665018,-0.0111453384161,0.016299093142152]],[[0.028904223814607,0.0090455925092101,-0.036036804318428],[-0.05462708324194,0.034896671772003,0.07367105782032],[-0.0071120061911643,0.023874819278717,-0.056935824453831]],[[0.032511129975319,-0.0033702715300024,0.017775632441044],[0.0012360463151708,0.04327031224966,-0.01560968067497],[-0.0014894839841872,0.0039923689328134,-0.018261663615704]],[[-0.061537895351648,-0.068552300333977,-0.011334512382746],[0.027734991163015,0.043400764465332,0.0064993030391634],[0.034051366150379,-0.0023583406582475,-0.035101640969515]],[[0.0190787948668,0.014527203515172,0.0064589297398925],[0.025138396769762,0.0074051842093468,-0.0038067679852247],[0.017639109864831,-0.040032789111137,-0.016280990093946]],[[-0.015702161937952,0.088069923222065,-0.050097201019526],[-0.0064057973213494,-0.054824966937304,0.030520163476467],[0.082976832985878,-0.0082811033353209,0.018526509404182]],[[0.0072825411334634,-0.020476091653109,-0.020933277904987],[0.053341917693615,-0.045479234308004,0.050659526139498],[-0.031071025878191,0.067904002964497,-0.06679005920887]],[[-0.024511666968465,-0.016523849219084,0.048848308622837],[-0.02872303687036,-0.011420706287026,-0.029165541753173],[0.0071567115373909,0.0080274129286408,-0.023130718618631]],[[0.074164874851704,-0.0040832487866282,-0.0066357650794089],[-0.04792557656765,0.014525606296957,0.022133249789476],[-0.028691526502371,-0.0030334773473442,0.066632404923439]],[[-0.01534035615623,-0.042739115655422,-0.027336472645402],[-0.070805132389069,0.0072941523976624,0.014563024044037],[-0.018838351592422,-0.029771622270346,0.046422127634287]],[[0.085858955979347,-0.015312091447413,0.021694999188185],[0.020887322723866,-0.049177579581738,-0.066277012228966],[-0.020583629608154,0.021283326670527,0.0087683387100697]],[[-0.009882215410471,0.03690404817462,-0.031313918530941],[-0.03706194832921,-0.051789917051792,-0.0059024388901889],[-0.006627197843045,0.015336492098868,0.025645602494478]],[[-0.073798023164272,-0.042924933135509,-0.052781090140343],[0.022086327895522,-0.075141593813896,-0.19088116288185],[-0.091789148747921,-0.038178417831659,-0.14366140961647]],[[-0.026816515251994,-0.042174208909273,0.029351010918617],[0.031554061919451,-0.070863500237465,0.0077685373835266],[0.034571453928947,0.023126672953367,-0.00045994549873285]],[[-0.048273898661137,-0.0064868489280343,0.015155353583395],[-0.00906977429986,0.0059924456290901,-0.014634461142123],[0.049657259136438,-0.01535180862993,0.035605054348707]],[[0.040387760847807,0.069410018622875,-0.079062901437283],[0.01678055524826,-0.0046735033392906,-0.017657341435552],[0.0068236691877246,0.0022678866516799,-0.0037432261742651]],[[0.044029623270035,-0.056879173964262,0.020968532189727],[-0.030132500454783,0.052332080900669,-0.039595048874617],[0.0125393262133,-0.027183957397938,0.030312417075038]],[[-0.015182601287961,0.034337796270847,0.028757225722075],[-0.026562307029963,-0.034584194421768,-0.051230654120445],[0.037712637335062,0.012301844544709,-0.0085102487355471]],[[0.0060803629457951,-0.029212083667517,0.046210709959269],[0.01712329313159,-0.042411047965288,-0.0091502964496613],[0.059765230864286,-0.030220940709114,-0.010506563819945]],[[0.043997950851917,0.016982525587082,-0.035782765597105],[-0.0016080787172541,0.023450199514627,-0.031305741518736],[-0.10178074985743,-0.055385336279869,-0.024395775049925]],[[-0.019159782677889,-0.019757641479373,0.0066782548092306],[-0.037983514368534,-0.0052119940519333,0.050433624535799],[0.0047822347842157,-0.04321051761508,-0.019894286990166]],[[0.057368267327547,0.013519594445825,0.0066825333051383],[0.025333115831017,-0.046301927417517,-0.0070614274591208],[-0.01942566037178,-0.027251260355115,-0.00726268440485]],[[0.061860360205173,0.0080238794907928,-0.042028293013573],[0.0076297745108604,0.014671113342047,0.063690945506096],[-0.034830488264561,0.015109968371689,-0.024468215182424]],[[-0.039591085165739,0.033889465034008,0.031944613903761],[-0.047049794346094,-0.0041196304373443,5.9960591897834e-05],[0.0060889325104654,0.048340138047934,0.0021978369913995]],[[0.00069988681934774,0.082613296806812,-0.011045232415199],[-0.047636926174164,0.044119752943516,-0.019143426790833],[0.023070894181728,0.049745231866837,0.0090508460998535]],[[-0.037995673716068,0.015400813892484,-0.018543876707554],[0.0099395513534546,-0.083640888333321,0.0040494720451534],[-0.029279246926308,0.013693577609956,0.03997040912509]],[[-0.02712139301002,-0.02256129309535,-0.036024063825607],[0.099272057414055,-0.0062079611234367,0.0031001195311546],[0.050093848258257,-0.047015715390444,-0.036648463457823]],[[-0.031710989773273,-0.016121020540595,0.016462860628963],[-0.032286942005157,-0.043596796691418,0.034024976193905],[0.038877744227648,-0.0016654924256727,-0.012211988680065]],[[-0.007373858243227,0.027264475822449,0.011865981854498],[-0.020689519122243,0.017004733905196,-0.014314626343548],[0.028350671753287,0.00037325502489693,-0.073038682341576]],[[-0.041720900684595,-0.05506194755435,-0.018426110967994],[0.028370603919029,0.037220295518637,0.010490695014596],[-0.0083811627700925,0.043797723948956,-0.018288660794497]]],[[[-0.034349348396063,0.0055016940459609,-0.0068041696213186],[0.011236512102187,-0.037468302994967,0.061693955212831],[0.084407903254032,0.014916691929102,0.0034068592358381]],[[-0.025178989395499,0.038651943206787,0.019441807642579],[0.027690105140209,0.0022931115236133,0.014671497046947],[0.0073716370388865,-0.011221300810575,0.0016538891941309]],[[-0.001290388405323,0.043327324092388,0.045615550130606],[0.073013819754124,-0.0075626615434885,0.002263244939968],[-0.071039825677872,0.035578869283199,0.018204271793365]],[[-0.002866962691769,-0.024041900411248,-0.036961201578379],[-0.010121461004019,-0.030108110979199,-0.029226085171103],[0.0013132013846189,0.013795707374811,0.010554884560406]],[[-0.033148519694805,0.0025358125567436,0.085041001439095],[0.034224078059196,0.10738785564899,0.022460091859102],[-0.029499424621463,0.00067423470318317,-0.048809602856636]],[[-0.03390421718359,0.041399545967579,0.055134475231171],[-0.032093048095703,-0.022197864949703,0.029098138213158],[0.0071001858450472,0.036338675767183,-0.078942522406578]],[[-0.059958510100842,0.023498462513089,0.033177673816681],[-0.014101773500443,-0.018433876335621,-0.020555522292852],[-0.099844016134739,0.0064687710255384,0.078267142176628]],[[0.04022953286767,0.0049481359310448,0.028743080794811],[0.0026201894506812,-0.0073197716847062,-0.024211101233959],[-0.027886249125004,-0.043480396270752,-0.010113336145878]],[[0.0065689217299223,0.01182552985847,-0.023605892434716],[-0.0058234967291355,-0.0034360117278993,0.075036615133286],[0.031902305781841,0.058002285659313,0.026380963623524]],[[-0.039108287543058,-0.010087285190821,0.031487725675106],[-0.0064862258732319,-0.0043313684873283,-0.001039955066517],[0.063360817730427,0.038817655295134,0.0064529594965279]],[[-0.030476596206427,0.036808598786592,0.013520580716431],[-0.034058548510075,-0.01576216891408,-0.022177565842867],[0.0011874274350703,-0.01734465919435,0.066759712994099]],[[-0.024258555844426,-0.031017096713185,0.037173688411713],[-0.017632173374295,-0.051160469651222,0.046909261494875],[0.0042605409398675,0.054331455379725,0.032943416386843]],[[-0.021281287074089,-0.0068360045552254,-0.049674790352583],[-0.036248695105314,0.019738897681236,-0.013481516391039],[-0.030358867719769,-0.0021427732426673,-0.013902937062085]],[[0.038578424602747,-0.031716499477625,-0.095031909644604],[0.057057734578848,0.076344765722752,0.012706028297544],[-0.0066812774166465,-0.0064922175370157,0.014210007153451]],[[-0.0060012205503881,0.060175720602274,0.041282158344984],[0.05652591958642,-0.021805660799146,0.061490349471569],[-0.060928232967854,0.005958981346339,-0.0310831181705]],[[0.02822950668633,0.023234168067575,-0.068052746355534],[-0.006143004167825,0.032173775136471,-0.0035230990033597],[0.0069016139023006,0.050234857946634,-0.045038558542728]],[[-0.0057026227004826,0.041362404823303,-0.035039715468884],[0.031236229464412,-0.024731390178204,-0.024000477045774],[0.043167177587748,-0.017472065985203,0.018498528748751]],[[-0.00080569763667881,0.017123363912106,-0.040371559560299],[-0.0095926113426685,-0.0092402948066592,-0.063573449850082],[0.013628356158733,-0.0052355360239744,-0.047131948173046]],[[0.023330291733146,-0.049714244902134,-0.0038965055719018],[-0.011553270742297,0.045546039938927,0.013530863448977],[0.041784342378378,0.023108644410968,0.0020541187841445]],[[0.027861502021551,0.0009691480663605,-0.010197205469012],[-0.0056699197739363,0.019339565187693,-0.042820956557989],[0.018527125939727,0.059904765337706,-0.050465535372496]],[[0.020073963329196,-0.027848297730088,-0.019089989364147],[-0.027580000460148,0.019478822126985,-0.024740617722273],[-0.052367735654116,-0.0085214609280229,-0.017726691439748]],[[-0.039662901312113,-0.004798399284482,0.019078072160482],[7.7371762017719e-05,0.069225616753101,0.040843017399311],[0.035829249769449,-0.0014416406629607,-0.027609946206212]],[[-0.010175846517086,-0.025856288149953,-0.021640483289957],[0.065403580665588,-0.044040873646736,-0.0067393714562058],[0.0094090783968568,0.019071873277426,-0.019300866872072]],[[-0.020844183862209,-0.028797883540392,-0.060982473194599],[-0.052558336406946,-0.041692964732647,0.011784548871219],[-0.0091458559036255,-0.04739086702466,-0.00039520557038486]],[[0.029163161292672,-0.028655864298344,0.005528662353754],[0.028402211144567,-0.053184513002634,-0.011028877459466],[-0.026972955092788,-0.020821059122682,-0.0036978553980589]],[[0.048115566372871,-0.026410335674882,-0.030227737501264],[6.1923943576403e-05,0.041235942393541,0.026965502649546],[0.034292574971914,0.027364056557417,-0.043222948908806]],[[-0.022988179698586,-0.010219246149063,-0.025997007265687],[0.042457155883312,-0.0051306122913957,-0.030500587075949],[0.04645599424839,0.056499157100916,0.03059402294457]],[[0.019494021311402,0.0089295329526067,-0.0096264462918043],[-0.037341233342886,0.023217063397169,0.0071374112740159],[-0.015143057331443,-0.0095128733664751,0.040265515446663]],[[0.008944196626544,-0.016568459570408,-0.046250645071268],[0.0068550170399249,0.0013395259156823,-0.069756656885147],[-0.062032472342253,-0.0037568982224911,-0.042656432837248]],[[-0.010339844971895,0.018552789464593,-0.071321353316307],[-0.026255296543241,0.047630224376917,-0.052465453743935],[-0.042493119835854,-0.028038375079632,0.046855676919222]],[[-0.034109231084585,-0.061241514980793,0.042171109467745],[-0.015155984088778,0.034486435353756,0.047513619065285],[-0.013103479519486,0.037066325545311,-0.0089493142440915]],[[-0.045621022582054,0.022587658837438,0.011360383592546],[0.018740829080343,0.030371680855751,0.0015087836654857],[0.032880816608667,-0.017279725521803,-0.0015979151939973]],[[0.028002886101604,0.032439928501844,0.0048481612466276],[0.0097324391826987,0.05743009224534,-0.014545677229762],[0.087681382894516,-0.021629709750414,-0.020467810332775]],[[-0.049516595900059,0.019393641501665,0.0027121873572469],[-0.013475098647177,-0.092366717755795,0.11612338572741],[0.0094173699617386,-0.020966297015548,0.010530016385019]],[[-0.04209103807807,0.044225998222828,0.0099624311551452],[0.057891957461834,-0.0043605472892523,0.087211169302464],[0.024829111993313,0.0057660522870719,-0.020693268626928]],[[-0.031348370015621,-0.0032578953541815,0.036946356296539],[-0.048909187316895,-0.0016802487662062,0.021070972084999],[-0.026231242343783,-0.019347252324224,0.0092508904635906]],[[-0.040940813720226,0.01495548710227,0.011344725266099],[-0.0061199651099741,0.013894553296268,0.049782264977694],[0.016677582636476,-0.06317737698555,0.0036289899144322]],[[0.026723679155111,0.0078755281865597,-0.014984950423241],[0.029921101406217,0.021135913208127,0.0022448203526437],[-0.017862670123577,-0.035191677510738,-0.028936207294464]],[[0.022999081760645,0.019783392548561,0.058572478592396],[-0.055454149842262,-0.012892045080662,0.076708361506462],[-0.055336643010378,-0.035350814461708,0.0040642861276865]],[[-0.022738862782717,0.061968479305506,-0.071459800004959],[-0.014677856117487,0.04246449843049,0.019268376752734],[-0.028740353882313,0.047996591776609,0.0029470361769199]],[[-0.036409087479115,-0.014268586412072,0.010648970492184],[0.00097836717031896,-0.025006264448166,0.048184912651777],[0.024993410333991,-0.012919224798679,0.029082030057907]],[[0.046031914651394,-0.0012844568118453,0.003005699487403],[0.026468882337213,0.010756529867649,-0.031443357467651],[-0.055272784084082,-0.018913116306067,-0.0045027751475573]],[[0.0040941257029772,-0.014325309544802,-0.0084216883406043],[0.011490900069475,0.0070028211921453,-0.0053697302937508],[-0.048272002488375,-0.019025044515729,0.013773499988019]],[[-0.029657725244761,0.00082325481344014,-0.042251706123352],[-0.062935382127762,-0.039778236299753,0.01005370542407],[-0.017465012148023,0.023652793839574,0.031603530049324]],[[0.027622036635876,0.013549819588661,-0.0058188820257783],[0.017061997205019,-0.043865710496902,0.004564612172544],[-0.010831823572516,0.023075366392732,-0.0062832087278366]],[[0.014229293912649,0.043924748897552,0.038931909948587],[-0.038058746606112,0.011566001921892,-0.04025599732995],[-0.051020406186581,-0.013015572912991,-0.010093958117068]],[[-0.037184875458479,0.049996737390757,0.034204766154289],[-0.029558338224888,0.014308681711555,0.050488211214542],[-0.0054376581683755,0.046110212802887,-0.032324511557817]],[[0.037494245916605,0.060334458947182,-0.059840109199286],[0.054392538964748,-0.033977698534727,0.015496337786317],[-0.05335034430027,0.018511682748795,-0.011654919013381]],[[-0.0012300914386287,-0.025281740352511,-0.028781104832888],[-0.0076323510147631,-0.018910817801952,0.055472351610661],[-0.035500895231962,0.033129502087831,0.0042582112364471]],[[-0.046563420444727,-0.041326835751534,0.013110629282892],[0.004290257114917,0.00071858207229525,-0.0074045658111572],[0.057710319757462,-0.065162844955921,0.0049855378456414]],[[0.040100630372763,-0.0061041316948831,-0.043871961534023],[-0.01059156563133,0.047111753374338,-0.066690795123577],[-0.029814641922712,0.043652229011059,-0.10306561738253]],[[-0.052807159721851,0.027866680175066,-0.040353681892157],[0.020887145772576,-0.011040760204196,0.012672577984631],[-0.05070636048913,-0.017503758892417,0.0061442577280104]],[[-0.063299790024757,-0.019433023408055,-0.016619753092527],[0.021497884765267,0.026485525071621,-0.00067382131237537],[-0.045836485922337,0.0019206863362342,-0.0058317286893725]],[[-0.013376641087234,-0.051435213536024,-0.040123235434294],[0.023584339767694,0.020308382809162,0.044021122157574],[0.019415622577071,0.036876603960991,-0.033268269151449]],[[-0.0046696444042027,0.0034700515680015,-0.028673190623522],[0.041985847055912,0.011423609219491,-0.035104293376207],[0.01523077301681,0.067195057868958,-0.051596947014332]],[[0.031606562435627,-0.014789959415793,-0.02254581451416],[0.031036209315062,-0.010591057129204,-0.032837405800819],[0.065398499369621,-0.033745884895325,0.01576411165297]],[[0.024786924943328,-0.049650024622679,-0.069823630154133],[0.0052829594351351,-0.04784033074975,-0.078044787049294],[-0.0043832003138959,0.01569508947432,0.049508195370436]],[[-0.0034892503172159,0.043607648462057,-0.0057297018356621],[-0.012939941138029,0.061376303434372,-0.020107755437493],[-0.0088808909058571,-0.011819712817669,0.0048814886249602]],[[-0.080726251006126,-0.01590191014111,0.015964144840837],[-0.044022269546986,-0.00020966613374185,-0.056432418525219],[-0.024822516366839,0.028550362214446,-0.031472414731979]],[[-0.042275864630938,0.020458517596126,0.047171793878078],[0.020893696695566,0.0013416194124147,0.04011020436883],[-0.04273933172226,0.024278827011585,-0.011900804936886]],[[-0.0097478274255991,-0.0091087594628334,0.054204918444157],[0.02452133782208,-0.070136874914169,0.027573853731155],[-0.010722444392741,-0.0058664819225669,0.0035510547459126]],[[-0.054870564490557,0.040066439658403,-0.0032865146640688],[-0.014870163984597,-0.006248474586755,-0.030773960053921],[0.036560133099556,0.0050112335011363,-0.023800499737263]],[[0.0072229369543493,0.021185820922256,0.10394975543022],[-0.008395348675549,-0.023531103506684,-0.029522953554988],[0.043902214616537,-0.017167180776596,-0.049393143504858]],[[0.016391774639487,-0.041353285312653,0.037020329385996],[-0.0052930559031665,-0.060797289013863,0.0052586030215025],[0.033153761178255,-0.076730988919735,0.047716718167067]],[[-0.00058793887728825,0.02895962074399,0.053580548614264],[-0.011998657137156,-0.0036888441536576,-0.04456776753068],[0.005323835182935,0.016356769949198,0.010053530335426]],[[-0.02198164910078,0.011240505613387,-0.019363269209862],[0.027365230023861,0.0070480802096426,-0.022056665271521],[0.0069723767228425,0.029819400981069,0.036197878420353]],[[-0.0081641646102071,0.027027733623981,-0.027397615835071],[0.019867977127433,0.070622764527798,-0.071450024843216],[-0.039927579462528,-0.038727045059204,0.038901150226593]],[[-0.0089564519003034,-0.0060030906461179,-0.0033606877550483],[0.027078790590167,0.017023423686624,0.030981592833996],[0.038351949304342,0.0096934260800481,0.05177653208375]],[[0.042829480022192,0.059109028428793,-0.084665551781654],[-0.025322504341602,0.048069983720779,-0.0056162555702031],[0.080206856131554,0.035723406821489,-0.012115385383368]],[[-0.0037832173984498,-0.072826646268368,0.035173755139112],[0.03507299721241,0.045334532856941,-0.0034396969713271],[0.025392193347216,-0.001231923350133,-0.054223477840424]],[[0.0042659435421228,0.021437756717205,0.027988214045763],[-0.012193350121379,0.0035789124667645,-0.026397263631225],[-0.013104918412864,-0.0032610276248306,-0.027655174955726]],[[-0.042142994701862,0.023988611996174,0.10561971366405],[-0.018353957682848,0.025638114660978,-0.023544557392597],[-0.0095386449247599,0.048571329563856,0.00090917496709153]],[[0.033429674804211,0.0060167335905135,-0.021465701982379],[-0.017974250018597,0.025802079588175,0.0083521446213126],[-0.007985015399754,-0.0050280005671084,0.02974459528923]],[[-0.045481774955988,0.031503204256296,-0.0908557549119],[0.10460239648819,0.0067713363096118,-0.037902846932411],[-0.038026366382837,-0.072766229510307,-0.051036342978477]],[[-0.066568776965141,-0.012054538354278,0.040454842150211],[0.011653854511678,-0.098734721541405,0.028633274137974],[0.011595035903156,0.0708988904953,0.0012133989948779]],[[0.044661782681942,-0.030169920995831,0.017493715509772],[0.027445653453469,0.018873443827033,-0.02743742056191],[-0.02465314231813,0.054337568581104,0.016764424741268]],[[-0.024688258767128,0.0011664811754599,-0.045189660042524],[-0.025221830233932,0.038499977439642,-0.0030387863516808],[0.023889197036624,-0.0044461688958108,-0.000221782742301]],[[0.012889508157969,0.0085396468639374,0.0022047786042094],[0.00035947145079263,-0.0042645270004869,-0.039494432508945],[0.015712490305305,-0.070425637066364,0.0051544825546443]],[[0.035038191825151,-0.019646001979709,0.0076248743571341],[-0.0043414914980531,-0.00092454702826217,-0.051767915487289],[0.012820178642869,-0.012441404163837,-0.0022249866742641]],[[-0.011717516928911,-0.032356198877096,0.0064216563478112],[-0.022831028327346,0.0091437939554453,-0.0057409191504121],[0.054332248866558,0.011829516850412,-0.03922226652503]],[[0.06539411097765,0.026442648842931,0.0065872836858034],[0.0025974207092077,0.0069302092306316,-0.019351089373231],[0.01612807251513,0.03175064176321,0.012116619385779]],[[-0.077662721276283,0.025589644908905,0.033900171518326],[-0.037771731615067,-0.0031017097644508,0.013533717021346],[0.031079573556781,-0.04383797198534,0.050627160817385]],[[-0.040214296430349,-0.051179423928261,-0.030783088877797],[0.053259562700987,-0.038784738630056,0.045015543699265],[-0.072217866778374,-0.0074427034705877,-0.0087236510589719]],[[0.031725097447634,0.0055815246887505,0.024442709982395],[-2.8576629119925e-05,0.012397631071508,-0.034852564334869],[-0.009086187928915,-0.049520418047905,0.0051130056381226]],[[-0.052251789718866,0.011471576057374,0.090495757758617],[-0.046684674918652,0.023619905114174,0.011658460833132],[-0.029076304286718,-0.033794891089201,-0.0045902291312814]],[[-0.022911543026567,-0.049397315829992,0.0075975558720529],[0.022271687164903,-0.0030458478722721,-0.0074690016917884],[-0.11447783559561,0.012321136891842,0.0020243357867002]],[[-0.0040426352061331,-0.039232388138771,-0.057479567825794],[0.028233518823981,-0.040058378130198,0.044007159769535],[-0.019870100542903,0.068434797227383,-0.036760926246643]],[[0.0282799359411,0.012938726693392,-0.045797329396009],[0.013762674294412,-0.0312913171947,-0.044789638370275],[0.025629334151745,0.0099335061386228,-0.02759300544858]],[[0.0099640469998121,-0.0081016672775149,-0.0062853861600161],[0.049749262630939,0.019885236397386,-0.038916949182749],[-0.044129639863968,-0.0024875765666366,-0.01954859495163]],[[0.0095897978171706,-0.023767553269863,-0.045853108167648],[-0.0074514611624181,0.02108964510262,0.049933318048716],[-0.043047748506069,0.059709217399359,0.053712736815214]],[[0.061572328209877,-0.011097298003733,-0.0041762352921069],[0.062593221664429,-0.0063082301057875,0.057106915861368],[0.0030790958553553,-0.00076430552871898,0.028904786333442]],[[0.016024889424443,0.025267444550991,-0.022892452776432],[-0.0035893849562854,-0.024379942566156,0.0093286726623774],[-0.0032682400196791,0.01419130153954,-0.043412618339062]],[[0.028785012662411,-0.0084882909432054,0.00042986348853447],[-0.026142777875066,-0.030660880729556,-0.030872596427798],[0.022858668118715,-0.011917381547391,-0.0050671296194196]],[[0.0057866452261806,-0.061682872474194,0.029476402327418],[0.0041920226067305,-0.013278783299029,-0.02858972735703],[0.052988331764936,0.016456721350551,0.019067812711]],[[0.0074827633798122,0.047267999500036,-0.017445443198085],[0.0085914442315698,0.04429629817605,0.03280046582222],[0.027344046160579,-0.056285101920366,-0.06694770604372]],[[0.026589432731271,-0.013309615664184,-0.03801716119051],[-0.020128870382905,-0.045386590063572,0.0148716410622],[-0.035915076732635,0.030049877241254,0.0011891347821802]],[[-0.038007762283087,0.0073802261613309,0.00053940241923556],[0.0085371769964695,-0.06701672077179,0.028871359303594],[0.0068319654092193,-0.063621170818806,0.0028992616571486]],[[0.071747809648514,-0.0077589205466211,-0.021939273923635],[0.025322206318378,-0.03031836822629,-0.056729465723038],[0.011742462404072,0.033961527049541,-0.020600482821465]],[[0.026945721358061,0.011601251550019,0.042439743876457],[0.0039393636398017,-0.022428577765822,0.031608428806067],[-0.011227554641664,0.010102516971529,-0.10034764558077]],[[0.018104298040271,-0.022962195798755,0.018182836472988],[-0.018396023660898,0.013468696735799,0.022122744470835],[0.026200940832496,-0.074754923582077,-0.038809258490801]],[[0.014222901314497,-0.036819361150265,-0.02081080339849],[-0.043012458831072,0.0228061825037,-0.047067500650883],[0.018067004159093,-0.014321828261018,0.013593005947769]],[[0.070875570178032,0.014956630766392,-0.0072899651713669],[-0.012050459161401,-0.011009249836206,-0.016775615513325],[-0.0074995458126068,0.024963410571218,0.046410631388426]],[[-0.041737202554941,-0.015782367438078,0.013065625913441],[-0.010981989093125,-0.068702936172485,0.018927741795778],[0.034726466983557,-0.0073932195082307,0.011415328830481]],[[-0.011586777865887,-0.07328288257122,0.0057798521593213],[-0.014347961172462,0.014889342710376,-0.027928721159697],[-0.015342260710895,-0.045312333852053,0.094409592449665]],[[0.021202964708209,-0.047311566770077,-0.00554802082479],[-8.1325953942724e-05,-0.042812269181013,0.048319764435291],[-0.017301473766565,0.022601697593927,0.043264087289572]],[[-0.010506059974432,-0.027687031775713,0.013947822153568],[0.056532960385084,0.00021681480575353,-0.028321765363216],[-0.066035717725754,0.050559412688017,0.02268379367888]],[[-0.081172652542591,0.043350599706173,-0.040486704558134],[-0.081340603530407,-0.04322087392211,0.0080007119104266],[-0.06392277777195,0.00063464470440522,-0.0021206787787378]],[[-0.035344991832972,-0.011397326365113,-0.02759868837893],[-0.035194288939238,0.04903157427907,-0.065533578395844],[-0.034019611775875,0.005959028378129,0.040365364402533]],[[0.03149002417922,-0.017988735809922,-0.0072027314454317],[-0.053742025047541,-0.030552348122001,-0.08566789329052],[0.029734641313553,0.015099573880434,0.15046800673008]],[[-0.0095436461269855,0.0077965660020709,-0.02404722571373],[-0.017408791929483,-0.046613357961178,0.064823068678379],[-0.010902028530836,-0.0046457583084702,-0.042877778410912]],[[0.031716611236334,-0.079137742519379,-0.029298778623343],[-0.066414922475815,-0.11625951528549,0.012305466458201],[-0.011407335288823,-0.071115642786026,-0.034501884132624]],[[0.062041845172644,0.029913196340203,0.026972781866789],[0.013999531976879,-0.055444236844778,0.044636368751526],[0.020587008446455,-0.014641460031271,0.012525350786746]],[[-0.06546875089407,-0.012765203602612,0.032632127404213],[-0.06759250164032,0.049576457589865,0.013960467651486],[-0.052820660173893,-0.0351980663836,0.041890155524015]],[[0.065829962491989,0.020728765055537,-0.054283633828163],[0.013107230886817,0.043041914701462,-0.025047585368156],[0.031314831227064,-0.047755394130945,0.0017234752885997]],[[-0.008758925832808,0.008644106797874,-0.02129477635026],[-0.017087996006012,-0.017652627080679,0.03895977512002],[-0.026057740673423,0.076801396906376,-0.016268281266093]],[[0.028994871303439,0.012452428229153,0.017166448757052],[-0.039098467677832,0.036361489444971,0.0032535439822823],[0.0054300120100379,0.067542664706707,-0.032472800463438]],[[0.02972187846899,0.036947220563889,-0.030090464279056],[-0.019526021555066,-0.005958640947938,-0.042912106961012],[0.010240759700537,-0.017931543290615,0.030410503968596]],[[0.05567766726017,0.026111634448171,0.0083965063095093],[-0.0030860197730362,-0.021056462079287,-0.010040656663477],[0.01482439506799,0.010830035433173,-0.038424741476774]],[[-0.0089003192260861,-0.0060526919551194,-0.026915909722447],[0.029686290770769,-0.038632817566395,0.0084968907758594],[0.053308788686991,0.032807316631079,0.044803276658058]],[[-0.087126478552818,-0.0037057159934193,0.013089715503156],[-0.016043789684772,-0.0765360891819,0.020249277353287],[-0.069695606827736,-0.023852067068219,0.055741354823112]],[[-0.017902536317706,-0.0005655349814333,0.010282846167684],[-0.015261543914676,0.011854371055961,-0.017737744376063],[0.032295219600201,0.010778859257698,-0.019100157544017]],[[0.022833820432425,-0.00049444049363956,0.019147019833326],[0.045720357447863,0.026253145188093,0.012317396700382],[-0.013327958993614,0.00032378826290369,0.010078665800393]],[[0.0034666983410716,0.0019691353663802,-0.0019508021650836],[-0.029158359393477,-0.00051799044013023,0.023604925721884],[0.086142875254154,0.025162225589156,7.6230367994867e-05]],[[0.039634995162487,-0.010095944628119,0.034769676625729],[0.054644048213959,0.013617595657706,-0.035473514348269],[0.013925460167229,0.024197310209274,0.035208735615015]],[[0.056767981499434,0.034884203225374,0.045259043574333],[0.13952825963497,-0.064560368657112,-0.015346325933933],[0.043252386152744,0.0062735620886087,-0.0077494960278273]],[[-0.051207490265369,-0.022653803229332,0.046042874455452],[0.004615172278136,0.022380419075489,0.071501888334751],[0.022401576861739,-0.072865389287472,0.03473063185811]],[[0.017344957217574,-0.036597408354282,0.022454211488366],[0.0008882163092494,-0.06695094704628,-0.0060985824093223],[0.030330384150147,-0.066183529794216,0.012830953113735]],[[-0.0037821270525455,-0.034897863864899,0.085386298596859],[0.050675611943007,-0.022660495713353,0.080696500837803],[0.046567786484957,-0.05227904766798,-0.01066929101944]]],[[[0.013674081303179,0.022909909486771,-0.023698501288891],[0.03835653886199,0.00090129126328975,-0.025152655318379],[0.08093973249197,0.018878616392612,-0.024360537528992]],[[-0.010235893540084,0.028191402554512,-0.02724520675838],[-0.022852510213852,0.029999570921063,-0.019230585545301],[-0.018719147890806,0.0011818259954453,-0.10794543474913]],[[-0.094726137816906,0.098301507532597,-0.10133267939091],[0.053221471607685,0.11117497831583,-0.0078386757522821],[-0.0047339485026896,-0.07212869822979,0.015719141811132]],[[-0.066960841417313,-0.035500068217516,-0.027892652899027],[-0.067128166556358,0.013215823099017,-0.02844962477684],[0.014632019214332,-0.020425310358405,-0.023672446608543]],[[-0.032461013644934,0.050735402852297,-0.01174811180681],[0.027597445994616,-0.019954744726419,-0.010550556704402],[-0.032983988523483,-0.012316269800067,0.0030720224604011]],[[-0.034634467214346,-0.012435617856681,0.016909228637815],[-0.04207419604063,2.5655106583145e-05,0.0071268482133746],[-0.067135483026505,-0.038886569440365,0.012616978958249]],[[-0.0041488981805742,0.013847443275154,-0.016611052677035],[-0.056257996708155,0.0014943120768294,-0.037122614681721],[-0.077002815902233,0.069269105792046,-0.013767417520285]],[[0.16188335418701,0.083546482026577,1.1159318091813e-07],[0.0043584979139268,0.1332691013813,-0.033718604594469],[0.063460491597652,0.014741076156497,0.013440109789371]],[[-0.00018959182489198,-0.032269880175591,0.011346761137247],[-0.032323263585567,-0.046239964663982,0.013720123097301],[-0.051759652793407,0.08874324709177,0.096754349768162]],[[0.015496359206736,0.0010531496955082,0.11286480724812],[-0.1039462313056,0.012988868169487,0.042787838727236],[0.077348075807095,0.071079716086388,-0.059392269700766]],[[0.033449459820986,0.033268660306931,0.04026348143816],[-0.0042395014315844,0.029248002916574,0.031672891229391],[0.034235335886478,-0.025974713265896,0.0027446933090687]],[[0.043148510158062,-0.00823406688869,0.057887688279152],[-0.0027151242829859,0.036334410309792,-0.15268850326538],[0.079074829816818,-0.068985350430012,-0.0054759201593697]],[[-0.062297109514475,-0.06428450345993,-0.0093064066022635],[0.00035531813045964,-0.00035035685868934,-0.028543880209327],[-0.070762552320957,-0.052580323070288,0.12254808843136]],[[-0.016725735738873,0.03211584687233,0.055919371545315],[-0.033442873507738,-0.03738072514534,0.04082291200757],[-0.047442868351936,-0.062582552433014,0.054802004247904]],[[-0.0067896237596869,0.032399892807007,-0.048718586564064],[-0.015287400223315,-0.00049090845277533,-0.0096135316416621],[0.0089698806405067,-0.040530245751143,-0.069499522447586]],[[-0.0037238313816488,-0.040816675871611,0.015547259710729],[-0.06219544261694,-0.071921303868294,-0.078888662159443],[-0.0099360095337033,-0.031743682920933,0.0038732362445444]],[[-0.017172003164887,0.0080615505576134,0.01472801156342],[-0.055721312761307,-0.060305040329695,-0.036337502300739],[0.021456688642502,0.02627238817513,-0.076492711901665]],[[-0.040870230644941,-0.032653991132975,-0.064837597310543],[-0.039312731474638,0.0046962546184659,-0.053810622543097],[-0.010139501653612,-0.051452860236168,0.01695654541254]],[[-0.044220566749573,0.014715007506311,0.099106073379517],[-0.035448703914881,0.0089604808017612,-0.084933146834373],[0.0058161308988929,-0.10166646540165,-0.14780274033546]],[[-0.023449350148439,-0.057607643306255,-0.0075453510507941],[-0.02591198310256,-0.050257213413715,-0.042805828154087],[-0.0092200357466936,-0.036346353590488,-0.080162025988102]],[[0.029862785711884,-0.0032610571943223,-0.090614438056946],[-0.048455581068993,-0.015068782493472,-0.06383939832449],[-0.0085812676697969,0.04092950373888,0.026051443070173]],[[0.084761716425419,-0.038771968334913,-0.0085337590426207],[0.027076698839664,0.021670157089829,0.028988217934966],[-0.047582700848579,0.0035552685149014,0.079179883003235]],[[-0.06538200378418,0.010905041359365,-0.022536721080542],[0.0053184651769698,-0.016530631110072,0.03045929223299],[0.0025327517651021,0.029936045408249,0.0022651937324554]],[[-0.027851715683937,-0.029624192044139,-0.04818257689476],[-0.097330272197723,-0.029364241287112,-0.033311158418655],[0.016163101419806,-0.059029560536146,-0.026770690456033]],[[-0.034168422222137,0.0037927813827991,-0.047119379043579],[-0.074818402528763,0.02936158888042,0.032844036817551],[-0.043141938745975,-0.0031760379206389,0.0056886631064117]],[[-0.041541416198015,-0.010036036372185,-0.023656729608774],[0.030744453892112,0.0047492715530097,-0.068760499358177],[0.020650157704949,0.015782848000526,-0.040531624108553]],[[0.082117095589638,-0.038649428635836,0.10890145599842],[0.072689801454544,0.013800245709717,0.04826333373785],[0.08665519952774,0.0019211632898077,0.066710084676743]],[[-0.047186154872179,-0.0071307416073978,-0.0031529036350548],[-0.00019836015417241,-0.1062348857522,0.11739708483219],[-0.063134215772152,-0.052732776850462,0.048436135053635]],[[-0.0050750290974975,0.022300813347101,-0.0095928097143769],[-0.0088469116017222,0.032811302691698,-0.019127637147903],[-0.0023459864314646,0.029699474573135,0.00043532732524909]],[[-0.0040579973720014,0.002677288139239,0.0032828920520842],[-0.034778006374836,-0.037710279226303,-0.044301372021437],[-0.0027480099815875,0.017619194462895,0.017275737598538]],[[0.012472371570766,0.023831412196159,0.014237705618143],[0.094179518520832,0.017127189785242,0.062407933175564],[0.012182007543743,0.024144882336259,0.092033095657825]],[[0.049707226455212,0.015934709459543,-0.087696932256222],[-0.032874409109354,-0.050614766776562,-0.049865867942572],[0.058317646384239,0.12757016718388,0.048055242747068]],[[-0.045301008969545,-0.072945944964886,0.029731132090092],[-0.010097970254719,-0.12443450093269,-0.043402798473835],[-0.0027688753325492,-0.056641411036253,0.021938424557447]],[[-0.037068463861942,0.001521248370409,-0.041990585625172],[0.014970575459301,-0.0070689083077013,-0.047608084976673],[0.016744347289205,0.096722267568111,0.0075466982088983]],[[-0.0058915624395013,-0.040524024516344,-0.03694361820817],[-0.070319943130016,-0.056806527078152,-0.096303790807724],[0.014639348722994,-0.064761355519295,0.011315769515932]],[[0.14347933232784,-0.074100509285927,-0.088216297328472],[0.0053036520257592,-0.20995660126209,-0.044264286756516],[0.10746143013239,-0.066698372364044,-0.12566731870174]],[[-0.019478255882859,-0.083352081477642,-0.074285671114922],[0.055148314684629,0.035574428737164,0.045963283628225],[-0.12561117112637,-0.065870061516762,-0.021679483354092]],[[-0.066685281693935,0.078299283981323,-0.0069945263676345],[-0.0053512332960963,-0.00026219073333777,0.10149771720171],[0.023252237588167,0.038278073072433,0.18956081569195]],[[0.010076388716698,0.047991964966059,0.050064753741026],[-0.05185853689909,0.010807980783284,0.012950314208865],[-0.032281395047903,-0.0014630339574069,0.039940435439348]],[[0.028679441660643,-0.00069918931694701,0.0016966637922451],[-0.032532267272472,-0.0095706935971975,-0.041122101247311],[0.01865953579545,0.065324395895004,-0.039468694478273]],[[0.014108293689787,0.053684867918491,-0.0083811124786735],[-0.015999525785446,-0.028975276276469,-0.034213948994875],[-0.012503696605563,-0.032527841627598,0.092496708035469]],[[-0.002454430796206,0.024851335212588,0.0063543915748596],[0.012216849252582,0.030084833502769,0.043736021965742],[0.0064944187179208,0.027396457269788,-0.016622819006443]],[[-0.029262341558933,-0.03535033389926,-0.030813267454505],[0.045040067285299,-0.029631162062287,0.032875284552574],[-0.061553705483675,-0.03356259316206,-0.03448923304677]],[[0.0080352127552032,-0.037070345133543,-0.026276212185621],[-0.038914024829865,-0.0070083434693515,-0.031748484820127],[-0.018095672130585,0.050091683864594,0.095007918775082]],[[-0.063872568309307,-0.0039368942379951,-0.05294605717063],[0.034848112612963,-0.020531471818686,-0.076393976807594],[0.06237468495965,0.0061934413388371,-0.058301601558924]],[[-0.14398017525673,-0.006005167029798,-0.020340273156762],[-0.090744823217392,-0.014516326598823,0.016602387651801],[-0.045094318687916,0.026486821472645,0.031902261078358]],[[0.10455697029829,-0.021278394386172,0.054367665201426],[0.059941980987787,-0.064238607883453,0.068153545260429],[-0.11011556535959,0.10652594268322,0.11863238364458]],[[-0.020342458039522,0.010162915103137,0.02391242235899],[-0.026153642684221,-0.018514633178711,0.060703046619892],[-0.016242701560259,-0.0088386693969369,-0.025562707334757]],[[0.0061239488422871,-0.089486218988895,-0.011529747396708],[-0.027625437825918,0.041778583079576,-0.018346596509218],[0.044056821614504,0.050375245511532,-0.0077764810994267]],[[0.018747357651591,-0.095244869589806,-0.014490809291601],[-0.00151980179362,0.0038659733254462,-0.030313806608319],[0.0048023615963757,-0.022057803347707,0.0025883831549436]],[[-0.084649950265884,-0.047067377716303,-0.066885426640511],[-0.024178387597203,0.11294262856245,0.068018905818462],[0.005204307846725,0.027396328747272,0.061582453548908]],[[0.030367087572813,-0.0035922655370086,0.033044047653675],[0.031136615201831,-0.009709645062685,-0.085959993302822],[0.0034736101515591,0.0089704729616642,-0.09550341963768]],[[0.095082208514214,-0.0088142054155469,-0.058901559561491],[0.025110552087426,-0.049477204680443,-0.088355503976345],[0.018449116498232,0.034634217619896,-0.035582438111305]],[[-0.045134093612432,-0.053240261971951,-0.094751812517643],[0.051160398870707,-0.034146901220083,-0.057805884629488],[-0.013024896383286,-0.038125347346067,-0.062605366110802]],[[-0.0036615142598748,-0.033766385167837,-0.099565640091896],[-0.065254859626293,-0.010512782260776,0.030164826661348],[0.051786869764328,0.027342261746526,0.053198970854282]],[[-0.016664007678628,-0.042398288846016,0.036731395870447],[-0.040256127715111,0.026804054155946,-0.043261088430882],[0.047059454023838,0.040321040898561,-0.10673493891954]],[[0.077856928110123,-0.0042902752757072,-0.011434020474553],[0.054914768785238,-0.016984205693007,0.071072094142437],[0.0192537214607,-0.030171513557434,-0.090593218803406]],[[-0.076897464692593,-0.086404837667942,-0.094328097999096],[-0.10031448304653,-0.052331257611513,-0.098584488034248],[-0.063933245837688,-0.04347301274538,-0.042528614401817]],[[0.0057768123224378,0.018490839749575,-0.047310836613178],[-0.0010064200032502,-0.011805774644017,0.0051058949902654],[0.035904098302126,0.038826927542686,-0.030388282611966]],[[-0.011570393107831,0.038004841655493,-0.016197694465518],[-0.0021610108669847,0.0018323989352211,-0.015050332061946],[-0.014645378105342,-0.0034064729698002,-0.12052795290947]],[[0.021119754761457,0.020640587434173,-0.068942166864872],[-0.038381692022085,-0.035432875156403,-0.12038165330887],[-0.011100185103714,-0.037383325397968,-0.073151305317879]],[[0.055215194821358,-0.050488106906414,-0.034210193902254],[-0.093728221952915,-0.028513150289655,0.013590871356428],[-0.0645761936903,-0.030350254848599,-0.065508358180523]],[[-0.015605252236128,-0.001576938200742,-0.0069140982814133],[0.0080084232613444,-0.044458441436291,-0.045748580247164],[0.10112784057856,0.031414415687323,0.013301618397236]],[[0.006776652764529,0.016829697415233,-0.10318418592215],[-0.0055826976895332,-0.048723395913839,-0.084441028535366],[0.088199697434902,0.028005035594106,0.049325130879879]],[[-0.039539113640785,-0.05069175362587,-0.037895433604717],[-0.076952636241913,-0.00015680253272876,-0.092911519110203],[-0.035871066153049,-0.047927185893059,0.01670909486711]],[[0.04073690623045,-0.0068996865302324,0.1035815551877],[-0.072620891034603,-0.033257585018873,-0.089496694505215],[-0.014787794090807,-0.0082473736256361,-0.0071885529905558]],[[-0.046259500086308,-0.11116202175617,0.021088093519211],[-0.14873771369457,-0.063516840338707,-0.02194837667048],[0.081603333353996,-0.0050827320665121,-0.0008867493015714]],[[-0.016702760010958,-0.090255208313465,-0.052709951996803],[0.0011428105644882,0.0047836722806096,-0.068704232573509],[0.032222684472799,-0.016217110678554,-0.0047462144866586]],[[-0.029242862015963,0.018208738416433,0.011271870695055],[-0.0058301682583988,0.0042266328819096,-0.044457010924816],[0.065518125891685,-0.15434457361698,-0.10763024538755]],[[0.04113919660449,-0.052158549427986,-0.078554458916187],[-0.032504756003618,-0.071484640240669,-0.05197811126709],[-0.042039815336466,-0.04857674613595,-0.041231323033571]],[[0.019443169236183,0.0042437794618309,0.064582668244839],[0.00016408457304351,-0.093245908617973,-0.032977923750877],[-0.031133748590946,-0.011795351281762,-0.047323264181614]],[[0.056546494364738,-0.013523659668863,-0.02390524931252],[-0.029721900820732,-0.0078143095597625,-0.049176547676325],[-0.021045545116067,-0.041887186467648,-0.043200217187405]],[[-0.10065146535635,0.014196687377989,-0.068916410207748],[0.054964955896139,-0.10233096778393,-0.1277132332325],[0.1428480297327,-0.0454336181283,-0.072990447282791]],[[-0.11608774214983,0.0098281418904662,-0.045984573662281],[0.057528644800186,0.0026165568269789,-0.06269695609808],[0.22494718432426,-0.064223900437355,0.019812561571598]],[[-0.01264853682369,-0.012384579516947,0.0055222189985216],[-0.073505789041519,-0.13644254207611,-0.1122707426548],[0.0026178427506238,-0.024268619716167,-0.11370006203651]],[[0.013486913405359,-0.057705715298653,-0.038832705467939],[0.035547278821468,-0.073621027171612,-0.0037185768596828],[-0.026406425982714,-0.027519097551703,-0.01692970097065]],[[-0.0093455966562033,-0.0027638848405331,-0.042118854820728],[0.0051201223395765,-0.080479621887207,-0.062755912542343],[0.0050834165886045,-0.022266188636422,-0.0035210372880101]],[[0.031272400170565,0.049995172768831,-0.014724806882441],[-0.039082463830709,-0.021275261417031,-0.032585859298706],[0.014009539969265,-0.09046582877636,-0.087434858083725]],[[0.00023227302881423,-0.061854910105467,-0.0041234036907554],[0.0059973266907036,-0.011862390674651,0.023878613486886],[0.032585445791483,0.01216041110456,-0.049654740840197]],[[0.063770115375519,-0.099498279392719,-0.098281316459179],[0.084134943783283,-0.026594078168273,-0.13637863099575],[-0.033676903694868,-0.048740215599537,-0.039972443133593]],[[-0.061069414019585,0.063056424260139,-0.034108642488718],[-0.0098536629229784,-0.0098811713978648,0.037752207368612],[-0.094269193708897,-0.0057306471280754,0.13504254817963]],[[0.03403303399682,0.058296713978052,0.038794461637735],[0.041258249431849,-0.038008607923985,0.0094056650996208],[-0.023513879626989,0.021565670147538,-0.0088290954008698]],[[-0.016252420842648,-0.081312425434589,-0.028787471354008],[-0.048871167004108,0.09124667942524,0.047165766358376],[0.02426921762526,0.031036721542478,-0.031686905771494]],[[-0.086769267916679,0.0048982119187713,-0.020142134279013],[-0.097965113818645,0.023882087320089,0.00027002848219126],[0.022559447214007,-0.026027662679553,-0.021801756694913]],[[0.058596633374691,0.062890842556953,0.046155165880919],[0.012172555550933,-0.027050398290157,0.024721875786781],[-0.023127315565944,-0.038882941007614,0.0014387228293344]],[[-0.032001528888941,-0.060868475586176,0.03379188477993],[-0.023964457213879,-0.13318894803524,0.00057371018920094],[-0.019422143697739,0.015576488338411,0.0029359506443143]],[[0.054850336164236,0.0086546530947089,0.036829024553299],[0.039477247744799,0.028407508507371,0.051935084164143],[0.0059607462026179,-0.0019668838940561,0.009939837269485]],[[0.033330593258142,-0.044988628476858,0.031740061938763],[-0.033720567822456,0.018204767256975,0.013203088194132],[0.027073476463556,0.003768605645746,0.014332883991301]],[[-0.038589708507061,0.0044746901839972,0.068093590438366],[-0.016084080561996,0.0029831684660167,0.033330865204334],[-0.063574947416782,-0.065160199999809,-0.001160831307061]],[[-0.035408426076174,-0.015353103168309,-0.19613462686539],[-0.040221970528364,-0.066536925733089,-0.014602561481297],[-0.09587986767292,-0.073293805122375,-0.048821069300175]],[[0.10726001858711,0.0033286272082478,-0.085820071399212],[0.059386618435383,0.022438740357757,-0.015032763592899],[-0.023845767602324,0.0061046788468957,-0.065312698483467]],[[-0.0040601072832942,-0.019691737368703,-0.10000758618116],[0.018255528062582,-0.062157772481441,-0.095390915870667],[-0.038739826530218,-0.02308376505971,-0.061490330845118]],[[0.040481720119715,-0.054263733327389,-0.038562670350075],[0.019282219931483,0.053148977458477,0.0050679543055594],[-0.011251928284764,0.0091941803693771,-0.073120653629303]],[[0.098721042275429,0.06960741430521,-0.13050098717213],[0.032754007726908,0.047434087842703,-0.029362875968218],[0.064914882183075,0.00135827367194,-0.0091967405751348]],[[-0.01979273557663,-0.036330409348011,0.054618488997221],[-0.038389462977648,-0.080548696219921,-0.037559375166893],[0.016284540295601,-0.10672905296087,0.023103276267648]],[[0.0019615914206952,0.082209914922714,-0.086772292852402],[0.023950891569257,-0.034719850867987,0.052476484328508],[-0.050783418118954,0.012851463630795,0.088901445269585]],[[0.019737785682082,0.020600279793143,-0.034168977290392],[-0.1009333729744,-0.02606332488358,-0.03936554864049],[0.062616147100925,0.020931446924806,-0.005888101644814]],[[-0.053421318531036,0.055881734937429,0.0084636509418488],[-0.086128436028957,0.022017918527126,-0.030795535072684],[0.03926146030426,0.10541848838329,0.035857420414686]],[[-0.010337474755943,0.068658299744129,0.033263944089413],[-0.024459568783641,-0.011323399841785,0.00066478265216574],[0.048255663365126,-0.0023583688307554,-0.032212357968092]],[[-0.0027691586874425,0.011285775341094,0.011723331175745],[0.032176423817873,-0.055446915328503,-0.030862746760249],[-0.0054154507815838,0.0056017586030066,0.10283516347408]],[[-0.11523543298244,0.061823472380638,0.0049728830344975],[0.0011566296452656,0.070143237709999,-0.06944565474987],[-0.12619704008102,0.029347345232964,-0.0048852558247745]],[[0.014358816668391,0.046317540109158,-0.046960115432739],[0.026086587458849,-0.003482332220301,-0.04800684005022],[0.0066498899832368,-0.038880538195372,-0.060085833072662]],[[-0.021077781915665,-0.0018155197612941,-0.019395992159843],[-0.041772451251745,-0.0503687299788,0.038410056382418],[0.018899101763964,-0.081804476678371,0.03625051677227]],[[-0.067263282835484,0.024809254333377,-0.016736272722483],[-0.02324989810586,0.034247916191816,-0.02009604126215],[-0.030791319906712,-0.04827469214797,0.017279893159866]],[[-0.071434892714024,-0.035265624523163,0.056544192135334],[0.033030565828085,0.055257216095924,0.063872113823891],[0.027803331613541,0.11787257343531,-0.052782207727432]],[[-0.053215518593788,-0.020984511822462,-0.10859017819166],[0.019007498398423,0.054500471800566,0.015144458971918],[-0.04621859267354,0.05673848465085,-0.0064066988416016]],[[0.012754919938743,0.05618966370821,-0.005302888341248],[0.017033571377397,-0.015478272922337,-0.12450914829969],[-0.0056507680565119,0.038170587271452,-0.049474358558655]],[[0.00062487437389791,0.034968640655279,0.057338960468769],[-0.04413540661335,-0.044136326760054,-0.0035051852464676],[0.010183344595134,-0.062315322458744,-0.074061580002308]],[[-0.096255846321583,0.0036234767176211,-0.028655368834734],[0.044258244335651,0.088446348905563,-0.041409220546484],[0.029445543885231,0.029295902699232,-0.013716604560614]],[[0.0045640245079994,0.038834728300571,0.0083901090547442],[-0.03071940690279,0.033168192952871,0.052236143499613],[0.02111872471869,0.007610552944243,0.011379469186068]],[[-0.037079654633999,0.012989149428904,0.04647259041667],[-0.045094426721334,0.00053908280096948,-0.020095352083445],[-0.003579922253266,0.040175076574087,-0.026549072936177]],[[-0.06277572363615,-0.024944746866822,-0.041525784879923],[-0.090987831354141,-0.12792192399502,0.024659585207701],[-0.073679484426975,-0.04226528480649,-0.073702596127987]],[[-0.0074489843100309,0.022452458739281,0.037129368633032],[-0.016281273216009,-0.080379970371723,-0.014525977894664],[0.044702641665936,0.03503879532218,-0.0074214870110154]],[[-0.038603752851486,-0.044285703450441,0.019078692421317],[0.038300294429064,0.0028177897911519,0.023976383730769],[-0.031326539814472,0.05403670296073,0.043595489114523]],[[-0.080496653914452,-0.064512386918068,0.048771817237139],[0.005269949324429,0.0019583976827562,0.046892322599888],[-0.070590272545815,-0.023325365036726,0.065090671181679]],[[0.052772384136915,-0.006944599095732,0.062385022640228],[0.046243015676737,0.017397668212652,0.052941855043173],[-0.046961601823568,-0.015572912059724,0.025640342384577]],[[-0.12039043754339,-0.044321876019239,0.001558402669616],[-0.060065064579248,-0.030295332893729,-0.012579973787069],[0.048612304031849,0.061205133795738,0.071360886096954]],[[-0.075737588107586,-0.054001305252314,0.0097156539559364],[-0.056361958384514,0.021965365856886,0.036236833781004],[-0.017474101856351,-0.033011093735695,-0.0064854216761887]],[[0.018563199788332,0.064335480332375,-0.048430204391479],[-0.069685213267803,-0.021202683448792,-0.011649508029222],[-0.08620348572731,0.037883728742599,-0.013415957801044]],[[0.04784993827343,-0.0055525559000671,0.064160563051701],[0.060691878199577,-0.040633697062731,-0.0092972172424197],[0.062744490802288,0.022613056004047,0.034097701311111]],[[-0.081411346793175,0.02933651022613,0.05172223970294],[0.019318727776408,0.044649939984083,-0.059330932796001],[0.015461155213416,-0.01787687651813,0.029728604480624]],[[-0.0090159317478538,0.086546339094639,0.080926075577736],[0.023190271109343,-0.048644509166479,0.12618574500084],[-0.0026880037039518,-0.16137428581715,0.10605937242508]],[[-0.061054803431034,0.023568540811539,0.052844267338514],[-0.046210326254368,-0.056896608322859,0.057739697396755],[0.071012273430824,-0.0045870738103986,0.044426340609789]],[[-0.00082081515574828,0.0052532334811985,-0.0078492509201169],[-0.013848101720214,0.042435213923454,-0.0087182214483619],[-0.15901902318001,0.045052364468575,0.080469623208046]],[[-0.10321834683418,0.1018893122673,-0.085998937487602],[0.1372248083353,-0.015844931825995,-0.043885797262192],[0.1511415541172,-0.038855422288179,5.1833660108969e-05]],[[-0.041957907378674,0.063266530632973,0.013236153870821],[-0.03944981098175,-0.015110047534108,0.0022160063963383],[0.0039618345908821,-0.0094197299331427,0.071542717516422]],[[0.04060186073184,-0.036507308483124,-0.097655661404133],[0.099838636815548,0.035917893052101,-0.027233360335231],[-0.017839955165982,-0.033093489706516,0.045335475355387]],[[-0.044774621725082,0.014216001145542,-0.07054141908884],[-0.016343854367733,-0.10614676773548,-0.014644490554929],[0.025402639061213,-0.039477828890085,0.0045014210045338]]],[[[-0.075786285102367,-0.047309149056673,0.0068318573758006],[-0.04435233771801,-0.021658796817064,0.019891196861863],[0.032526727765799,-0.034812428057194,-0.014631262980402]],[[-0.0054518105462193,-0.017932053655386,0.016708085313439],[0.0016471355920658,0.034055791795254,-0.0064377300441265],[0.14465865492821,-0.054799053817987,-0.04827256500721]],[[-0.094735778868198,-0.015308628790081,-0.028807520866394],[-0.028303669765592,-0.015646114945412,-0.02310349047184],[0.0090019162744284,0.042375117540359,-0.077942132949829]],[[0.10050557553768,-0.034179221838713,0.0035722407046705],[0.052633050829172,0.014300924725831,0.0036759222857654],[0.048310618847609,0.0063845296390355,-0.026350539177656]],[[0.0072413291782141,0.062068399041891,0.089856423437595],[-0.056921895593405,0.064234562218189,0.062452133744955],[-0.088738307356834,-0.060673031955957,0.013905012048781]],[[-0.014189020730555,-0.0017919903621078,-0.011789054609835],[0.069241121411324,-0.089963503181934,-0.02931066788733],[0.16231836378574,0.053899921476841,-0.031110521405935]],[[0.032137136906385,0.16392107307911,-0.018915247172117],[-0.016453163698316,0.015218847431242,-0.084574863314629],[0.039580959826708,0.048088394105434,0.058989327400923]],[[0.020262019708753,-0.050278414040804,0.025719426572323],[-0.12080211192369,-0.047944739460945,0.10956170409918],[0.031963054090738,-0.058447409421206,0.03671495243907]],[[-0.035605564713478,0.059268210083246,0.0155931385234],[0.021150808781385,-0.067655757069588,-0.033041633665562],[0.035357423126698,-0.015915233641863,0.029879165813327]],[[-0.011027097702026,-0.030451100319624,0.011286239139736],[0.038261726498604,0.012204634025693,-0.035693325102329],[-0.024666916579008,0.10260534286499,0.025268021970987]],[[-0.056917510926723,-0.12022107839584,0.0044079129584134],[0.063287325203419,0.0022668209858239,0.063636258244514],[0.034064944833517,0.085946604609489,0.049549750983715]],[[0.079710982739925,0.17482505738735,0.14062567055225],[0.0034533718135208,-0.023909039795399,-0.047206535935402],[-0.0084992730990052,0.11599581688643,0.029511770233512]],[[-0.015552278608084,0.082157701253891,-0.020050041377544],[0.0098209735006094,-0.02188453823328,0.0064808153547347],[-0.053734969347715,-0.049267765134573,-0.060689996927977]],[[-0.020505029708147,0.0208396948874,-0.022250166162848],[-0.055982120335102,0.073372542858124,-0.062664724886417],[0.0055123446509242,0.13829435408115,-0.012521911412477]],[[-0.040423050522804,-0.012706031091511,-0.008952334523201],[0.010511596687138,-0.0074154022149742,0.0021239577326924],[0.099029064178467,-0.048727799206972,0.058303456753492]],[[0.070742480456829,0.007960606366396,-0.046083498746157],[0.024229597300291,-0.081149369478226,-0.019373178482056],[0.0020280641037971,0.02101375348866,0.0061440016143024]],[[-0.08244876563549,-0.025947660207748,-0.043044101446867],[-0.064776137471199,-0.0089829079806805,0.082597784698009],[-0.012500016018748,-0.025562968105078,-0.014379234053195]],[[-0.02272224612534,0.09047195315361,0.12075334042311],[-0.097215928137302,0.010545192286372,-0.024892158806324],[-0.07112006098032,-0.05810609459877,-0.13815434277058]],[[0.033680725842714,0.05267982557416,0.078628271818161],[0.07670122385025,0.0059477975592017,0.0098107969388366],[0.014305579476058,-0.018858643248677,-0.057257600128651]],[[-0.039942406117916,0.12804634869099,0.20230203866959],[-0.050534892827272,-0.053024709224701,0.059396676719189],[-0.083162739872932,-0.0050569651648402,-0.069612793624401]],[[-0.02125583961606,0.026197666302323,0.05035487562418],[0.0054989904165268,0.029899867251515,-0.0099488096311688],[-0.02455797791481,0.031713750213385,-0.012882091104984]],[[0.0024946618359536,-0.05405530333519,-0.020187547430396],[0.11861462146044,-0.0073771150782704,-0.022566337138414],[0.14596116542816,0.044296972453594,0.02752497792244]],[[-0.010927966795862,0.029850706458092,-0.064726889133453],[0.056812155991793,-0.022523520514369,-0.066961765289307],[-0.03277825191617,-0.077356904745102,-0.0098847057670355]],[[-0.019314061850309,0.014626716263592,0.020878044888377],[-0.10507170110941,-0.048158388584852,0.021938452497125],[0.14507785439491,0.059584103524685,-0.025406774133444]],[[0.041631326079369,-0.040806274861097,0.0056908777914941],[0.075860254466534,-0.09264212846756,0.034981749951839],[0.13533753156662,0.11142176389694,-0.023809319362044]],[[0.029360426589847,-0.0016382826725021,-0.048246495425701],[-0.0049059372395277,0.059596706181765,-0.0035543092526495],[-0.006442756857723,-0.063963830471039,0.02668890543282]],[[0.00010468659456819,0.011162425391376,0.01467839628458],[-0.13164441287518,0.0020469448063523,-0.049599256366491],[0.020849026739597,0.1364464610815,0.044025469571352]],[[-0.060051292181015,-0.021347060799599,-0.078594043850899],[0.015406074933708,-0.073190130293369,-0.037751726806164],[0.037599589675665,-0.0091057512909174,-0.021865155547857]],[[-0.013921083882451,0.003742101136595,0.0073778037913144],[0.015383860096335,-0.018553955480456,0.0065801064483821],[-0.079874373972416,-0.048683878034353,-0.032550886273384]],[[-0.016998587176204,-0.0067293918691576,0.01528652664274],[0.012406101450324,-0.016190674155951,0.03172056004405],[-0.015245934017003,0.029463717713952,-0.031487800180912]],[[0.072346039116383,-0.0099587710574269,-0.057490445673466],[-0.018864134326577,0.0072802142240107,-0.04983264580369],[-0.030948659405112,-0.038191687315702,0.0039038236718625]],[[0.010110995732248,-0.058515250682831,0.035378567874432],[-0.027968568727374,0.061374180018902,0.0064599509350955],[-0.09234269708395,-0.065240360796452,-0.03591625764966]],[[-0.038034874945879,-0.072366707026958,-0.039448462426662],[-0.052905797958374,-0.0021236033644527,-0.016438435763121],[-0.097485527396202,-0.084208942949772,0.0036223179195076]],[[-0.043260745704174,0.053914461284876,-0.10723301768303],[-0.025786362588406,-0.00041283917380497,0.036045365035534],[-0.078711472451687,-0.068473801016808,0.082883559167385]],[[-0.014654017984867,0.013352267444134,-0.064898081123829],[0.037000175565481,-0.036693811416626,-0.067415080964565],[0.046526793390512,0.01047754753381,0.0033469365444034]],[[-0.0049107349477708,0.097126431763172,-0.035382196307182],[-0.040079955011606,0.023480137810111,-0.097348183393478],[-0.083867602050304,-0.0080422731116414,0.035531230270863]],[[-0.037050660699606,0.0053287604823709,0.023191099986434],[0.12048887461424,0.025033345445991,0.013708519749343],[-0.032248426228762,0.0047921175137162,-0.050390154123306]],[[0.046809352934361,-0.077171370387077,-0.04783096909523],[0.057058937847614,-0.044353630393744,-0.038905262947083],[0.086943976581097,0.064623065292835,0.014696564525366]],[[0.0072383400984108,0.010346470400691,-0.030723677948117],[0.078010238707066,0.015034455806017,-0.019567823037505],[0.10196397453547,0.051626890897751,-0.046250071376562]],[[0.15140298008919,0.094640664756298,-0.013312295079231],[0.0095120398327708,-0.051070157438517,0.0078424233943224],[0.052331514656544,0.048572961241007,0.091302260756493]],[[0.067293010652065,0.037247743457556,0.045580826699734],[-0.065515413880348,-0.027310213074088,-0.08180171251297],[-0.07317204028368,-0.045626014471054,0.039967846125364]],[[-0.043868374079466,-0.021966146305203,-0.028036791831255],[-0.036530617624521,0.0034147554542869,-0.018827775493264],[-0.064955346286297,-0.025050995871425,0.033879697322845]],[[-0.052952241152525,-0.0035448961425573,0.02980106882751],[0.013576934114099,0.12811924517155,-0.028970619663596],[-0.042752727866173,0.11476314812899,0.10828267782927]],[[-0.04124915972352,-0.050893019884825,-0.0053665372543037],[-0.10436435043812,-0.012321660295129,-0.015551889315248],[0.006361267529428,0.036662958562374,-0.00010330229270039]],[[0.15186773240566,0.027056347578764,0.11462504416704],[0.04244739562273,-0.02887143753469,-0.016411164775491],[0.004056200850755,-0.027269065380096,0.038306783884764]],[[0.11822355538607,0.027741206809878,0.016157735139132],[0.00037613639142364,0.025264512747526,0.019388323649764],[-0.035822063684464,-0.0076412530615926,-0.0038897066842765]],[[0.0012021363945678,0.007470887620002,-0.024163028225303],[0.0034417223650962,-0.0030702778603882,-0.072733581066132],[0.0062378477305174,0.058771319687366,0.076107263565063]],[[-0.095880433917046,0.013697906397283,-0.099710881710052],[-0.0011418748181313,-0.029943643137813,0.00028717436362058],[0.048612911254168,-0.022918600589037,-0.084126569330692]],[[-0.023152209818363,0.0085218800231814,-0.031572513282299],[0.054879628121853,0.089877501130104,-0.021355859935284],[-0.052487466484308,-0.021302957087755,-0.015245758928359]],[[0.011526042595506,-0.029521597549319,-0.043577082455158],[-0.050255600363016,-0.002654587617144,-0.0088854013010859],[-0.029191538691521,-0.041113629937172,0.049427699297667]],[[0.023066619411111,-0.063333228230476,-0.034902680665255],[0.032115612179041,-0.01924448274076,-0.068650230765343],[0.13722345232964,-0.017846925184131,0.011599220335484]],[[0.075647585093975,0.070515863597393,-0.067559599876404],[-0.011758828535676,-0.10369286686182,-0.016354389488697],[-0.055293574929237,0.012671364471316,0.04907663911581]],[[-0.0085570057854056,0.0039277910254896,-0.041131142526865],[0.016947068274021,-0.045304585248232,-0.078927479684353],[-0.045258983969688,0.068219281733036,-0.028456909582019]],[[0.086806952953339,0.04996594414115,-0.0027219452895224],[0.052753087133169,0.012585045769811,0.049019612371922],[0.016032684594393,-0.10796186327934,-0.01473262347281]],[[0.099352791905403,-0.064205229282379,-0.066317521035671],[0.14313206076622,0.028288323432207,0.044954486191273],[-0.034987114369869,0.048784334212542,-0.0086584948003292]],[[0.023695604875684,-0.026319514960051,-0.042832370847464],[0.03184999153018,-0.0094263330101967,-0.070501677691936],[-0.034562561661005,-0.024850141257048,-0.050442740321159]],[[0.074209503829479,-0.0032211721409112,-0.059767063707113],[0.081728309392929,-0.017266033217311,0.054774221032858],[0.02118219435215,0.0042708008550107,0.031437292695045]],[[-0.025136819109321,0.0063795112073421,-0.097143225371838],[-0.0020995682571083,-0.017345491796732,-0.089166343212128],[-0.012484296225011,-0.018074905499816,0.019339514896274]],[[-0.096453785896301,-0.042628560215235,0.020379181951284],[-0.022821761667728,0.01093618851155,-0.040336292237043],[-0.016196871176362,0.047730524092913,-0.0011088917963207]],[[0.048363830894232,0.034856293350458,0.017718801274896],[-0.0014143373118713,-0.037658371031284,-0.02324484847486],[0.077695481479168,0.02999153919518,-0.029431652277708]],[[0.0035721324384212,0.037079025059938,0.032406415790319],[0.029810018837452,-0.076003588736057,0.0050006881356239],[-0.0090957991778851,0.03446489572525,0.028430396690965]],[[-0.020817652344704,-0.065895050764084,-0.025752037763596],[-0.061123006045818,-0.048681445419788,-0.054088901728392],[-0.011055470444262,-0.051758427172899,-0.091997876763344]],[[-0.053156524896622,0.0053088953718543,0.087248064577579],[0.04865987598896,0.013229311443865,-0.012403060682118],[-0.012964710593224,0.04297211393714,0.0018105248454958]],[[0.053958564996719,-0.02569954842329,0.0093998638913035],[0.035962413996458,0.044445212930441,0.06148224323988],[0.041383143514395,0.016069816425443,0.0012559160823002]],[[0.025038151070476,-0.063703939318657,-0.0062946123071015],[0.05763815715909,-0.08073553442955,0.0098638031631708],[0.072214297950268,0.11230279505253,0.027913330122828]],[[0.0033624120987952,-0.0025385867338628,-0.014997502788901],[-0.01630887016654,-0.0014874996850267,-0.0094838878139853],[-0.067103765904903,0.00028663719422184,-0.033442631363869]],[[-0.014772123657167,-0.011123512871563,-0.069877818226814],[0.015214725397527,-0.015018197707832,-0.0016354268882424],[0.068849615752697,-0.018865050747991,0.025083547458053]],[[-0.022023698315024,-0.10393568128347,0.023414321243763],[0.089072749018669,-0.0048657553270459,0.027953088283539],[0.077506497502327,0.052150193601847,0.0025107467081398]],[[-0.038318078964949,0.059136755764484,-0.0097758760675788],[0.041135098785162,-0.058579031378031,0.051317133009434],[-0.047908034175634,-0.045881364494562,-0.016285246238112]],[[0.17020820081234,-0.041564643383026,0.020008765161037],[-0.044104017317295,0.025180701166391,0.071157239377499],[0.014167638495564,0.00086301402188838,0.0052183046936989]],[[-0.022668302059174,-0.057739220559597,-0.015607936307788],[0.057559732347727,-0.0074516180902719,0.041721891611814],[-0.048257850110531,-0.018470803275704,0.046132382005453]],[[-0.051406487822533,-0.039010379463434,-0.010492672212422],[0.12040558457375,0.045459266752005,0.0016236549708992],[0.045899908989668,0.060328219085932,-0.015586217865348]],[[0.016441347077489,-0.039270810782909,-0.0034133298322558],[-0.063142538070679,0.0041225710883737,0.054441843181849],[-0.072633601725101,-0.038217362016439,-0.041342262178659]],[[-0.017939912155271,-0.054145034402609,-0.055786177515984],[-0.10292417556047,0.0051983338780701,-0.017804691568017],[0.050506446510553,-0.015340623445809,0.041027382016182]],[[0.011182812973857,0.079417988657951,0.015633042901754],[-0.12785311043262,-0.10717102140188,-0.046134658157825],[-0.056684847921133,0.037274215370417,0.058237183839083]],[[-0.0011806613765657,0.017806814983487,0.13009691238403],[0.021137714385986,0.080294638872147,0.013693421147764],[0.0016284608282149,0.027356788516045,0.0022366233170033]],[[-0.0076322765089571,0.016078112646937,-0.032342363148928],[-0.074296578764915,-0.018721470609307,0.042966011911631],[-0.10777615010738,-0.10766419023275,-0.0053736483678222]],[[-0.033738154917955,-0.023646932095289,0.032154515385628],[-0.036889810115099,0.074611105024815,0.0081956516951323],[-0.010888362303376,-0.008298615925014,0.030769463628531]],[[-0.064816311001778,0.0088083911687136,7.8263517934829e-05],[-0.0016009686514735,0.064066901803017,0.030728481709957],[0.0034793235827237,-0.091290511190891,-0.037500653415918]],[[0.030959125608206,-0.0097674708813429,0.035545542836189],[-0.015434175729752,0.0080647934228182,0.014162282459438],[-0.039854343980551,-0.0020339796319604,-0.047410443425179]],[[0.078923270106316,0.10622368007898,-0.0017699949676171],[-0.020266883075237,-0.0054743294604123,0.035519149154425],[0.10773823410273,-0.0013479577610269,-0.060996200889349]],[[0.12348831444979,0.0080914776772261,-0.087730586528778],[0.098696254193783,0.089463390409946,0.11850947886705],[0.0057094469666481,-0.012703699059784,-0.042502824217081]],[[-0.0061503872275352,0.026590434834361,0.038250707089901],[-0.031718242913485,0.062213309109211,0.040397994220257],[-0.10229247808456,-0.070471294224262,0.063883647322655]],[[-0.038711853325367,-0.11302834004164,-0.031082518398762],[0.0022843726910651,0.0018491658847779,0.14946593344212],[0.076489791274071,-0.089108116924763,0.026093937456608]],[[0.032855812460184,-0.080754809081554,-0.047191724181175],[-0.10165949165821,-0.057664386928082,-0.016123626381159],[-0.014391357079148,0.032893743366003,-0.102712854743]],[[0.010514349676669,0.04761877655983,-0.0015484326286241],[-0.071446552872658,-0.015498681925237,-0.016213783994317],[-0.051113307476044,0.082660377025604,0.033086180686951]],[[0.015825945883989,-0.082113102078438,-0.02334569580853],[-0.051787845790386,-0.087165638804436,-0.08240120857954],[0.1157132089138,0.11019242554903,0.050093814730644]],[[-0.059288747608662,0.055651355534792,-0.019953792914748],[0.097910590469837,0.046484582126141,-0.085291385650635],[-0.023072052747011,0.029985785484314,0.059653509408236]],[[-0.044579695910215,-0.013452823273838,0.010372253134847],[0.082182742655277,-0.015200992114842,0.056578829884529],[0.081363894045353,0.0065436344593763,0.0095679955556989]],[[0.05345443636179,0.012709625996649,-0.1022457331419],[-0.021848421543837,-0.052980944514275,-0.037228126078844],[0.0032441786024719,0.045819465070963,0.029486317187548]],[[0.0039440118707716,0.044273000210524,-0.056032672524452],[-0.15340255200863,0.047761742025614,-0.023764859884977],[0.01097475644201,-0.012650449760258,-0.092766314744949]],[[-0.046080779284239,0.0054970723576844,-0.016082959249616],[-0.065140061080456,0.036116421222687,-0.02152113057673],[0.0054904907010496,0.089946962893009,0.040636714547873]],[[0.037424709647894,-0.030206587165594,0.055984299629927],[0.019160341471434,-0.054491505026817,-0.0061540859751403],[-0.017978623509407,0.033425413072109,0.0035845416132361]],[[0.018555516377091,-0.086358927190304,0.0077039948664606],[-0.061113957315683,-0.058817181736231,-0.068446233868599],[0.053589358925819,0.041191890835762,0.010961403138936]],[[-0.021520379930735,-0.031803671270609,-0.001357309287414],[0.070791080594063,0.02032421156764,0.017623577266932],[-0.047909770160913,0.072124026715755,0.077220886945724]],[[-0.0053264452144504,-0.087000869214535,-0.013898756355047],[0.059422228485346,-0.042199324816465,-0.049811359494925],[-0.058055520057678,-0.094919785857201,0.051427982747555]],[[-0.10201787948608,-0.045506920665503,-0.0069696414284408],[0.034435376524925,-0.035370834171772,-0.021948952227831],[-0.037462927401066,0.030806124210358,-0.012153886258602]],[[-0.00081159477122128,-0.010952838696539,-0.037413962185383],[-0.025693563744426,-0.059563618153334,0.066623240709305],[-0.051628332585096,-0.022590961307287,-0.0078522711992264]],[[-0.030644251033664,-0.042241107672453,-0.010232428088784],[-0.010243515484035,0.033706404268742,-0.043114673346281],[0.032845854759216,-0.016533592715859,-0.044095553457737]],[[0.014714876189828,-0.045525994151831,-0.051341481506824],[0.011247017420828,-0.10576415061951,-0.04884085059166],[-0.0072932140901685,-0.037517625838518,-0.052942790091038]],[[0.14723092317581,0.031911913305521,-0.057633761316538],[0.079779535531998,0.060991458594799,0.087129913270473],[0.0063090021722019,-0.11271577328444,-0.0013082743389532]],[[0.077525079250336,-0.0011872383765876,-0.031266000121832],[0.03106995485723,-0.11337477713823,-0.028413230553269],[-0.015390696004033,-0.009680824354291,0.091058552265167]],[[-0.016035653650761,0.051757767796516,-0.075792901217937],[-0.01428553275764,0.021559389308095,-0.043160989880562],[-0.0087629416957498,-0.013960726559162,-0.019637620076537]],[[-0.037950899451971,0.068921439349651,-0.031016806140542],[-0.096131861209869,-0.10701335966587,-0.088143348693848],[-0.043938983231783,-0.055628448724747,-0.11090488731861]],[[-0.014743151143193,-0.097559228539467,0.020140796899796],[-0.057769995182753,-0.058822728693485,0.022775791585445],[0.011981531046331,-0.0061935386620462,0.07616451382637]],[[0.069817647337914,-0.0014499867102131,-0.0090643418952823],[0.021870223805308,0.0050192140042782,-0.023007042706013],[-0.089650958776474,-0.0010894995648414,-0.014015290886164]],[[0.041539002209902,-0.04000798612833,0.0132986465469],[-0.0042749512940645,0.063366435468197,-0.024626037105918],[-0.089119456708431,0.034173168241978,-0.063156694173813]],[[0.046891268342733,-0.035963032394648,0.0016369894146919],[0.12862119078636,0.11116685718298,-0.0040754335932434],[0.0064610517583787,0.007614754140377,-0.026397818699479]],[[-0.076983340084553,-0.064636193215847,-0.062018424272537],[0.064215518534184,-0.074293278157711,0.098515041172504],[-0.0099473875015974,-0.028640192002058,-0.021534187719226]],[[0.14016783237457,0.072187922894955,-0.049495257437229],[-0.029986396431923,0.068089053034782,0.011448810808361],[-0.0064537487924099,-0.022828040644526,-0.012091840617359]],[[-0.0074307592585683,0.080893941223621,0.073790267109871],[0.010721141472459,0.017693750560284,0.062784925103188],[-0.060462057590485,0.057730492204428,-0.050690528005362]],[[-0.1205338165164,0.043414112180471,0.086113639175892],[0.043679606169462,-0.0041207652539015,0.093086190521717],[-0.10379076004028,-0.0054551218636334,-0.083651527762413]],[[-0.04061720892787,-0.038167510181665,0.042704991996288],[-0.02792083658278,-0.082948982715607,-0.087121970951557],[0.024202009662986,0.068478889763355,-0.01635705307126]],[[0.027904303744435,-0.030274311080575,0.010022050701082],[-0.035119369626045,-0.06755393743515,0.0049214465543628],[-0.055451516062021,-0.019937535747886,-0.091569736599922]],[[-0.047529079020023,-0.06060890480876,0.11124955862761],[-0.015696005895734,0.045713808387518,0.0023124502040446],[-0.015124938450754,-0.10130688548088,0.029302459210157]],[[-0.028354166075587,0.037318360060453,0.033370461314917],[-0.057563606649637,-0.12360267341137,-0.0049328431487083],[0.016241764649749,-0.049093279987574,-0.0041376338340342]],[[0.065204337239265,0.0011160504072905,-0.067801810801029],[-0.076825238764286,-0.029677353799343,-0.082629323005676],[0.029696868732572,0.00040170809370466,0.033263005316257]],[[-0.046277899295092,-0.013435105793178,0.090385355055332],[-0.056168757379055,-0.015308764763176,-0.074676796793938],[-0.022542474791408,0.056104756891727,0.13618011772633]],[[0.027733417227864,-0.042047619819641,0.01407415792346],[-0.050036065280437,-0.018837969750166,-0.0442248955369],[-0.12333969026804,-0.011450693942606,-0.029510783031583]],[[0.050795614719391,-0.071085579693317,0.045417666435242],[-0.032851990312338,0.09591668099165,-0.005962367169559],[-0.10459367930889,0.021105827763677,-0.010862459428608]],[[0.025724103674293,0.061377268284559,0.067797377705574],[0.005210536532104,-0.00076141586760059,-0.026261327788234],[-0.093087449669838,-0.15223871171474,-0.06019189581275]],[[-0.024388842284679,0.034093637019396,0.018080750480294],[-0.035878587514162,-0.00049151567509398,-0.0022599908988923],[-0.037685092538595,0.093903452157974,0.0010230568004772]],[[-0.073233298957348,-0.045464262366295,-0.013527428731322],[-0.012206166051328,0.03597029671073,-0.048367734998465],[-0.037032060325146,-0.024939991533756,0.022171756252646]],[[-0.026783322915435,0.0073964432813227,-0.041655577719212],[0.080525651574135,0.026286710053682,-0.056034740060568],[-0.033103998750448,-0.079930655658245,-0.0117426821962]],[[-0.07105553150177,0.031906366348267,-0.063000082969666],[-0.077220380306244,-0.047682750970125,0.03052644431591],[-0.060190130025148,-0.056068621575832,-0.042164776474237]],[[-0.0073570050299168,0.0090573765337467,0.034766782075167],[-0.07191226631403,-0.038128420710564,-0.084154568612576],[-0.063868582248688,-0.085388265550137,-0.025110848248005]],[[-0.066799350082874,0.0045055472292006,-0.04383397474885],[0.16830007731915,0.067622140049934,-0.0072452798485756],[0.10108909755945,0.045346986502409,-0.093594580888748]],[[-0.013513531535864,-0.074529603123665,-0.077406778931618],[0.020558413118124,-0.052113492041826,-0.054571688175201],[0.022881414741278,0.029839606955647,-0.0006558588356711]]],[[[0.028607700020075,0.073455780744553,0.17489077150822],[-0.039378196001053,0.027311015874147,0.01846388168633],[0.05460037663579,-0.084309995174408,-0.037762988358736]],[[-0.0077928984537721,-0.027096156030893,-0.0045619551092386],[0.04138470068574,-0.036811288446188,0.10045128315687],[0.12470744550228,-0.0099568730220199,-0.15510109066963]],[[-0.034213278442621,0.023100947961211,-0.049038428813219],[0.16385987401009,0.0057443249970675,0.038235504180193],[0.15644551813602,0.068952538073063,0.024561965838075]],[[-0.066143840551376,-0.062304116785526,0.050267029553652],[-0.0069710211828351,-0.014362740330398,0.098593935370445],[0.04469133540988,-0.2162791788578,0.031231082975864]],[[-0.049924626946449,-0.11945520341396,0.075329378247261],[0.15871641039848,0.055335514247417,-0.020466445013881],[0.12995970249176,-0.1808956861496,-0.088680632412434]],[[0.15632998943329,-0.04524627327919,0.023418234661222],[-0.073992036283016,-0.057526495307684,-0.02525950036943],[0.072152301669121,0.060234747827053,-0.0052167703397572]],[[0.11747214943171,-0.022319488227367,0.010053936392069],[0.065897643566132,-0.02439184114337,-0.039450526237488],[-0.090444646775723,-0.10901398211718,0.20554766058922]],[[0.053074654191732,0.16028845310211,0.093513265252113],[-0.041240144520998,-0.022263180464506,0.013651452958584],[-0.0093801794573665,-0.093006148934364,0.045712739229202]],[[-0.0018458177801222,0.0069868811406195,0.080962412059307],[-0.049875400960445,-0.058699067682028,0.13128466904163],[-0.16859178245068,-0.0064397705718875,-0.11268708854914]],[[-0.018183657899499,-0.01903841458261,-0.045326765626669],[-0.028417548164725,-0.034689735621214,0.038596861064434],[-0.040622472763062,-0.033181946724653,0.066619083285332]],[[0.051153961569071,0.022738680243492,-0.08969634026289],[0.029013263061643,0.098006874322891,-0.053017128258944],[-0.087193593382835,-0.00070189713733271,-0.016967108473182]],[[0.13144378364086,0.19978681206703,-0.2003275603056],[0.023234756663442,0.02467972971499,-0.12975637614727],[-0.061307996511459,-0.012134397402406,-0.059936366975307]],[[-0.14661857485771,0.028077434748411,-0.016561014577746],[0.072877883911133,-0.060087587684393,0.10624644905329],[-0.0047169160097837,0.14730364084244,0.0046415929682553]],[[-0.070968307554722,0.083344742655754,-0.02448832243681],[-0.073685295879841,-0.086581908166409,-0.22080333530903],[-0.063694208860397,-0.039322629570961,-0.080016948282719]],[[0.075482301414013,-0.024304613471031,0.035006605088711],[0.16024252772331,-0.25607669353485,-0.045038100332022],[0.082548342645168,-0.16699700057507,-0.087162308394909]],[[-0.051388617604971,-0.089280664920807,-0.17289468646049],[-0.14217461645603,0.087684296071529,-0.14471651613712],[0.039143621921539,-0.019873028621078,-0.15723820030689]],[[0.074011020362377,-0.02158460021019,-0.048734799027443],[0.062243469059467,-0.10352507978678,0.11157432943583],[-0.11567293852568,-0.070993080735207,0.16732755303383]],[[0.028841249644756,-0.012776711955667,-0.047131072729826],[0.10369445383549,0.038486376404762,-0.097978852689266],[0.009333360940218,-0.037000015377998,-0.030974166467786]],[[-0.11623020470142,-0.034752704203129,-0.04024375975132],[0.018729910254478,0.13392105698586,-0.1001385524869],[-0.072030857205391,0.1396943628788,-0.096057459712029]],[[-0.030088096857071,-0.055511198937893,0.0613271035254],[0.078958950936794,-0.018770031630993,0.092205256223679],[-0.058301895856857,-0.096315987408161,0.13960207998753]],[[-0.015772510319948,-0.071503609418869,0.047375593334436],[-0.028065882623196,-0.020858868956566,-0.038672346621752],[0.025233574211597,-0.087233684957027,-0.22863534092903]],[[0.039702598005533,-0.047663670033216,-0.054655693471432],[0.10186648368835,0.091175675392151,0.14269289374352],[-0.12779849767685,0.12575732171535,0.037025611847639]],[[-0.0026441693771631,-0.25576573610306,0.075017973780632],[0.095452941954136,-0.018227493390441,0.18577028810978],[-0.07797733694315,-0.059534650295973,-0.085120715200901]],[[-0.043379861861467,-0.062366001307964,0.0044469237327576],[-0.050245631486177,-0.10062731057405,0.0018473251257092],[0.029112301766872,-0.096751779317856,0.0072744498029351]],[[0.079556927084923,-0.094422310590744,0.13351292908192],[0.046106282621622,-0.052864816039801,-0.077116884291172],[0.081959843635559,0.025414714589715,-0.071257933974266]],[[0.064311809837818,0.059388540685177,0.1437353938818],[0.060860563069582,0.061452258378267,0.037313062697649],[0.076074436306953,0.095493979752064,0.0151047995314]],[[-0.041623674333096,-0.10287055373192,0.00914725381881],[0.01418783981353,0.046890359371901,-0.013448556885123],[-0.099936775863171,0.0089321564882994,0.10935528576374]],[[-0.0548933185637,0.03365321457386,-0.06712194532156],[-0.042699981480837,-0.017449796199799,0.19505050778389],[-0.14097854495049,-0.028840363025665,0.13064500689507]],[[-0.05132969468832,-0.076864376664162,0.10516086965799],[-0.026177257299423,-0.0072785103693604,-0.060884300619364],[-0.098771691322327,0.062166403979063,-0.067687079310417]],[[-0.18677806854248,-0.047318894416094,0.14790427684784],[-0.020102044567466,-0.11393934488297,-0.071813300251961],[0.23263186216354,-0.024847440421581,-0.074453413486481]],[[-0.14888013899326,-0.17196959257126,0.15153017640114],[-0.061941605061293,-0.063241802155972,0.21102628111839],[0.010258664377034,0.056960765272379,0.048544809222221]],[[-0.084813438355923,0.031821466982365,-0.042612511664629],[-0.022035997360945,-0.14217288792133,-0.099004305899143],[0.16064660251141,-0.0072454013861716,-0.012075553648174]],[[0.1544473618269,-0.20051318407059,0.033360317349434],[0.008812821470201,0.2158769518137,0.024360697716475],[0.064061030745506,0.038937773555517,0.074298180639744]],[[-0.13853695988655,-0.087592966854572,0.15978787839413],[-0.052057296037674,0.05992030352354,-0.046389695256948],[0.031090505421162,0.033366739749908,-0.0077689662575722]],[[-0.010567898862064,0.053338047116995,-0.1065289452672],[-0.094630755484104,-0.11778073757887,-0.046018052846193],[-0.026548523455858,-0.079419426620007,-0.056303288787603]],[[-0.064742922782898,-0.1167624220252,-0.1467379629612],[0.068981394171715,-0.07386352866888,0.056161344051361],[-0.088996537029743,0.072063073515892,0.033246725797653]],[[-0.0020774048753083,-0.067678548395634,-0.059295486658812],[0.094415731728077,-0.041315902024508,-0.018748296424747],[0.1106173619628,-0.081418976187706,-0.036455370485783]],[[0.085194565355778,-0.003511187620461,-0.074608162045479],[-0.1408651471138,0.027956744655967,0.2151545137167],[0.11089312285185,0.1803615540266,-0.16450701653957]],[[-0.17905899882317,-0.18304765224457,-0.099657915532589],[-0.10901416838169,0.079693786799908,0.017801657319069],[0.051834762096405,0.021809240803123,-0.13568541407585]],[[0.22009932994843,0.071508824825287,0.040838427841663],[0.12851345539093,-0.022365560755134,0.013514149002731],[0.040689073503017,-0.11602875590324,-0.10640613734722]],[[-0.114910826087,0.035039521753788,-0.099977433681488],[0.030886752530932,-0.07802764326334,0.00081702455645427],[-0.015849651768804,0.12794174253941,0.061638679355383]],[[-0.075570650398731,0.064428240060806,0.17885720729828],[0.0042097200639546,0.096329264342785,-0.011540295556188],[0.094718247652054,0.014064697548747,-0.0066584148444235]],[[-0.09588085860014,-0.071001008152962,-0.075452275574207],[-0.00098921859171242,-0.012768303975463,-0.0039351731538773],[-0.17279833555222,0.018536791205406,0.012953841127455]],[[-0.032319951802492,0.030532237142324,0.046732176095247],[0.028209229931235,-0.061293859034777,-0.070737816393375],[-0.061712615191936,0.034219264984131,0.10316547006369]],[[-0.11816339194775,0.042564984411001,-0.061667926609516],[-0.015048707835376,-0.040614347904921,0.058472912758589],[0.10227432101965,0.030302219092846,0.092826381325722]],[[0.079557359218597,0.067110322415829,-0.062485188245773],[0.057154215872288,0.020602397620678,-0.084899924695492],[0.029780892655253,-0.054408103227615,0.050139170140028]],[[0.11714705824852,0.023935908451676,-0.072783060371876],[0.0072354334406555,0.01031796541065,-0.040215563029051],[-0.06300313770771,0.033146321773529,0.00084483897080645]],[[0.073016084730625,0.036446716636419,-0.11440548300743],[0.016836946830153,0.031707413494587,0.13644425570965],[-0.06552617251873,0.083221293985844,-0.14285103976727]],[[-0.15869414806366,-0.19368235766888,0.13703438639641],[0.054794792085886,0.035309493541718,-0.089394330978394],[0.16920405626297,0.073595769703388,0.036695446819067]],[[-0.19397877156734,-0.043946247547865,0.0066952854394913],[0.084695927798748,-0.1501982063055,0.094839490950108],[0.01253722794354,-0.019870217889547,0.00085416197543964]],[[-0.078415349125862,0.15821129083633,0.049128949642181],[0.064191110432148,0.10200413316488,-0.018400598317385],[0.0044251596555114,-0.13299417495728,-0.2027613222599]],[[0.0038465454708785,0.026770060881972,0.099753133952618],[-0.0018977306317538,-0.044696390628815,0.043696857988834],[0.01890822686255,0.073616810142994,0.045681916177273]],[[0.0014444583794102,0.063357800245285,0.024608435109258],[-0.050015110522509,0.003276492934674,-0.053786400705576],[-0.13210509717464,-0.13351115584373,-0.088287740945816]],[[-0.095241598784924,-0.044017545878887,-0.0066685499623418],[0.04641393199563,-0.022980319336057,-0.089294925332069],[0.11094623804092,-0.015506017953157,-0.074976183474064]],[[0.078018322587013,-0.095073044300079,-0.11220750957727],[-0.050916962325573,0.084925286471844,0.077355705201626],[-0.0010986202396452,-0.086362861096859,-0.022028710693121]],[[-0.021096527576447,-0.062867924571037,0.063708320260048],[-0.018887104466558,0.13010904192924,0.028439549729228],[0.08635538071394,0.058226376771927,0.10092456638813]],[[0.047841150313616,-0.10442392528057,0.091954991221428],[0.12017403542995,-0.0042645530775189,-0.039925470948219],[0.0084673743695021,0.093294702470303,-0.021076446399093]],[[-0.032286178320646,-0.10605751723051,0.03190365806222],[0.10148172080517,-0.10852812975645,-0.13161604106426],[0.081201240420341,-0.056654788553715,-0.067524701356888]],[[-0.04460609331727,-0.0077301124110818,-0.2177195250988],[0.025990759953856,-0.025235135108232,-0.1240020096302],[0.14943532645702,0.038485314697027,0.21457725763321]],[[0.023826183751225,0.039186134934425,0.048285629600286],[-0.088995657861233,-0.048734731972218,-0.13601011037827],[-0.035867769271135,-0.03399957716465,0.041969131678343]],[[0.024815212935209,0.12304014712572,0.14023530483246],[-0.002979502780363,0.0015807981835678,0.014039095491171],[-0.014845638535917,-0.11906681209803,-0.20084837079048]],[[-0.071235604584217,-0.052258726209402,0.080828353762627],[0.0073897349648178,0.035192169249058,0.065847098827362],[-0.073605813086033,-0.022970665246248,-0.07980864495039]],[[-0.072770781815052,0.037886463105679,0.011592879891396],[0.030408006161451,0.19317029416561,-0.14679943025112],[0.061929449439049,-0.043952498584986,-0.020408751443028]],[[-0.097369208931923,0.14766217768192,0.24152988195419],[0.28575676679611,0.025087518617511,0.12261842936277],[0.20588800311089,0.061380598694086,0.023941913619637]],[[-0.12268119305372,-0.028846608474851,-0.1164962053299],[-0.10886213183403,0.085603013634682,-0.063142545521259],[-0.029596975073218,-0.021943490952253,-0.096744559705257]],[[-0.028341082856059,-0.032810363918543,0.051181051880121],[-0.12165097147226,-0.0034628480207175,0.13423293828964],[-0.055356632918119,-0.049597445875406,0.03134424239397]],[[-0.036577951163054,0.15230245888233,0.058102153241634],[0.025127096101642,0.055393867194653,0.036049868911505],[0.063591144979,-0.012231004424393,0.10441426187754]],[[-0.11171923577785,-0.12315525859594,-0.062787875533104],[0.0086867334321141,-0.034560691565275,-0.015345166437328],[-0.11035343259573,-0.1000414416194,-0.0080320090055466]],[[0.0053085652180016,0.061856020241976,-0.05815752223134],[-0.056696366518736,-0.018904834985733,0.013770017772913],[0.061300203204155,-0.01379095390439,-0.0086536491289735]],[[-0.10190440714359,0.033966775983572,-0.070150390267372],[0.0056586223654449,0.068977676331997,0.042774252593517],[0.1321524977684,0.051783602684736,-0.034507602453232]],[[-0.041250627487898,0.032148454338312,0.022728115320206],[-0.10835875570774,0.024935537949204,0.041178818792105],[-0.0058726486749947,0.095967248082161,0.04393944144249]],[[0.13524992763996,0.0069497544318438,0.05007042363286],[-0.21204654872417,0.018389472737908,0.071572497487068],[-0.066305123269558,0.0022968156263232,0.064195163547993]],[[0.0036082086153328,0.015257607214153,-0.067049629986286],[-0.28048047423363,-0.12475781142712,-0.16369311511517],[-0.11626102030277,-0.14431275427341,-0.048454768955708]],[[0.046163689345121,0.014123039320111,0.00097378779901192],[0.083949983119965,-0.053604934364557,-0.025405721738935],[0.052419103682041,-0.017097661271691,0.12811106443405]],[[0.051188968122005,-0.075554341077805,-0.029315071180463],[0.036354526877403,-0.15666404366493,-0.048611525446177],[0.050075426697731,0.046606540679932,-0.04837754368782]],[[0.028023527935147,0.0929936170578,-0.2695580124855],[-0.1413349956274,-0.026667023077607,-0.03260675445199],[0.0024851860944182,-0.064174771308899,0.085988961160183]],[[0.0085698971524835,0.017271015793085,-0.042194448411465],[0.031195668503642,-0.0036639820318669,-0.089712731540203],[-0.03455001860857,-0.052824649959803,-0.046741224825382]],[[0.076462231576443,0.088206648826599,-0.14469617605209],[0.054712891578674,-0.093789078295231,0.0029179910197854],[-0.06752660125494,-0.029223777353764,0.047747779637575]],[[-0.017671206966043,0.077795118093491,-0.041692964732647],[-0.08112370967865,-0.013579938560724,0.14762715995312],[-0.04194812849164,0.070622004568577,-0.013889196328819]],[[0.037051234394312,-0.023244360461831,0.017617812380195],[0.1288655847311,0.13517138361931,-0.0042249034158885],[-0.035108868032694,-0.053164836019278,-0.043139804154634]],[[0.010247169062495,0.14962109923363,0.068665690720081],[0.053004484623671,0.10070396959782,-0.025744628161192],[0.10968405008316,0.0036549405194819,-0.060505472123623]],[[0.26890167593956,-0.029338553547859,-0.12363741546869],[0.15787976980209,0.18987244367599,0.15925662219524],[-0.069039732217789,0.026993326842785,0.11788207292557]],[[-0.061172537505627,-0.070357412099838,0.29239442944527],[0.0080499202013016,-0.063291490077972,0.095724619925022],[0.039174195379019,-0.05226257070899,-0.031251449137926]],[[-0.11515828222036,-0.035155277699232,-0.045813161879778],[-0.11220428347588,0.11310119926929,0.007118237670511],[0.17773441970348,-0.080725103616714,-0.052462015300989]],[[-0.17233088612556,-0.089263491332531,0.066814571619034],[0.12788440287113,0.12798467278481,-0.16490668058395],[-0.056985959410667,0.037157949060202,-0.09759096801281]],[[0.11597946286201,-0.011272209696472,-0.074911408126354],[-0.020497741177678,0.029902763664722,0.0050469329580665],[0.014808633364737,-0.10742778331041,-0.13480249047279]],[[0.076964877545834,0.0085930991917849,-0.047238778322935],[-0.026470482349396,-0.012997914105654,0.12351027131081],[0.049567461013794,-0.053274534642696,0.031687181442976]],[[0.19612142443657,0.17337533831596,0.026920905336738],[0.035230401903391,-0.01202395465225,-0.024924051016569],[0.069632261991501,0.081253863871098,0.14219270646572]],[[0.055553454905748,-0.11643149703741,0.0099329296499491],[0.052448369562626,-0.0051855421625078,-0.14188750088215],[0.077423207461834,0.27188304066658,-0.087522260844707]],[[0.097614586353302,-0.0049319067038596,-0.037444025278091],[0.056439343839884,0.072172597050667,0.050068493932486],[-0.0061418972909451,0.094090864062309,0.0092770839110017]],[[-0.050774179399014,-0.033215466886759,-0.02431265078485],[0.070721335709095,0.019601432606578,0.033090211451054],[0.18822036683559,0.054816052317619,0.014484660699964]],[[0.034561451524496,-0.1693190485239,0.071585737168789],[0.11731565743685,0.086829856038094,-0.10503033548594],[0.023495798930526,0.015371325425804,-0.14350670576096]],[[-0.034856431186199,0.013499156571925,-0.0054904771968722],[-0.10758427530527,0.094853088259697,-0.084049306809902],[-0.066419832408428,-0.044247359037399,-0.15153282880783]],[[-0.030501274392009,-0.05101539939642,-0.030763886868954],[-0.14221198856831,0.017994713038206,-0.11442348361015],[-0.060425564646721,-0.040213651955128,-0.04703912883997]],[[0.15705087780952,0.091246083378792,0.036338217556477],[0.11801940202713,-0.05813504755497,-0.0065944520756602],[-0.024269176647067,-0.0023269604425877,-0.041802939027548]],[[0.019543718546629,-0.036660902202129,0.14472077786922],[0.12028695642948,0.0004362229956314,0.14329597353935],[-0.056965731084347,0.016143959015608,0.0066562662832439]],[[0.030683590099216,0.14352867007256,0.1159333139658],[0.083563432097435,-0.12119923532009,-0.15355838835239],[0.11772732436657,0.0022307285107672,-0.013258860446513]],[[-0.035413946956396,-0.092898242175579,0.03399346768856],[0.027637384831905,0.14258667826653,0.011935476213694],[-0.07843267172575,0.11290509998798,0.10821551829576]],[[-0.20803381502628,-0.15209200978279,0.16704449057579],[0.16314604878426,-0.10517175495625,0.2214127779007],[-0.11208923906088,-0.0039842291735113,-0.016295123845339]],[[0.074939586222172,-0.006749396212399,-0.052880451083183],[0.046688809990883,-0.046038657426834,-0.028211576864123],[0.037000842392445,-0.093788176774979,0.0060659027658403]],[[-0.064038082957268,-0.11310499161482,-0.15119016170502],[-0.018593676388264,0.045328952372074,-0.033467814326286],[0.039148632436991,0.055561240762472,-0.049740187823772]],[[-0.020420929417014,0.16632589697838,-0.066453620791435],[-0.030758680775762,-0.074418425559998,0.0307641569525],[0.27066585421562,0.2066426128149,0.16172651946545]],[[0.074995845556259,-0.0053089810535312,0.10359717905521],[-0.024638833478093,0.03288447111845,0.16268143057823],[-0.03183913603425,-0.073205254971981,0.047415755689144]],[[0.13993185758591,0.13452698290348,0.12802846729755],[0.047536104917526,-0.12281127274036,-0.017851227894425],[0.020591096952558,0.079236529767513,-0.045897725969553]],[[0.039622008800507,0.17962852120399,-0.028456004336476],[-0.10643748939037,-0.051884923130274,0.082265801727772],[0.058591641485691,-0.0692238509655,0.090546101331711]],[[-0.048880878835917,-0.19839558005333,0.20048753917217],[-0.090359427034855,-0.10431991517544,-0.00053916015895084],[0.028708195313811,-0.11398086696863,-0.1132390871644]],[[-0.057478718459606,-0.079896993935108,-0.004314964171499],[-0.030970958992839,0.0048848735168576,0.014318668283522],[0.03005219809711,0.091005958616734,-0.10639720410109]],[[-0.099780343472958,-0.11294884234667,0.08888303488493],[-0.032537959516048,-0.039746392518282,-0.0065314341336489],[0.050754357129335,-0.084985695779324,-0.051115721464157]],[[0.017812289297581,0.018783574923873,0.013218988664448],[0.045701570808887,0.14490589499474,0.050962015986443],[-0.034128963947296,-0.080751731991768,-0.021869771182537]],[[0.18178510665894,0.11865466088057,-0.10089893639088],[0.056870613247156,-0.074397452175617,0.0014106690650806],[0.15732511878014,-0.12591488659382,-0.047543726861477]],[[-0.092602856457233,-0.047588806599379,-0.025310713797808],[-0.0063697132281959,0.10887813568115,-0.081155516207218],[-0.0477394759655,-0.0067305350676179,-0.024748211726546]],[[-0.071030050516129,0.028536276891828,0.024040479212999],[-0.080361470580101,-0.03741417080164,-0.0090916715562344],[0.016583735123277,0.016263473778963,0.058380991220474]],[[0.12432581931353,-0.030747493728995,-0.050024431198835],[-0.12883703410625,-0.048828717321157,-0.0056808618828654],[-0.045465156435966,0.013585992157459,-0.043371863663197]],[[0.01957737468183,-0.0087612131610513,0.083863116800785],[-0.051090158522129,0.025583673268557,0.041574385017157],[0.10976414382458,0.0078329630196095,0.16183367371559]],[[-0.03087105974555,0.097040742635727,0.066969595849514],[0.083287663757801,0.084138475358486,0.095112547278404],[-0.10204897075891,-0.05272775515914,0.057458087801933]],[[0.013238272629678,0.0051103699952364,0.027686418965459],[0.072556391358376,0.089555591344833,-0.13595335185528],[-0.11168451607227,-0.0096668656915426,0.035834524780512]],[[-0.069229565560818,-0.11495458334684,-0.054927825927734],[-0.013225409202278,0.05992678925395,-0.093186542391777],[0.051116950809956,0.051481384783983,-0.001717310748063]],[[-0.1062608063221,0.051911070942879,0.010495433583856],[-0.09451612085104,0.015136556699872,0.17094685137272],[0.14150503277779,-0.076389938592911,-0.10717947036028]],[[-0.098804302513599,-0.21843649446964,-0.081606343388557],[0.10329392552376,0.020644431933761,-0.049511767923832],[0.052645351737738,0.042411513626575,-0.062388863414526]],[[0.079315237700939,-0.058545805513859,-0.091227233409882],[-0.15127944946289,-0.047198113054037,0.013653595000505],[-0.046896614134312,0.025660011917353,-0.090504869818687]],[[-0.010946681722999,0.18444612622261,0.025024684146047],[-0.12166823446751,0.044101525098085,-0.033248528838158],[0.075864888727665,0.020079839974642,0.072745479643345]],[[0.19159089028835,0.052547175437212,-0.023459441959858],[-0.05035037919879,0.0080267228186131,-0.09400250017643],[0.060162872076035,0.040990628302097,0.010597268119454]],[[-0.08938767015934,-0.017266280949116,-0.026905383914709],[-0.11071714758873,-0.05952787026763,0.031703714281321],[0.0066515416838229,-0.01403843332082,-0.032424114644527]],[[0.10212615132332,-0.017707576975226,-0.12816613912582],[0.011842858977616,0.056079022586346,-0.048529703170061],[-0.085249103605747,0.051582265645266,0.030300000682473]],[[0.038171742111444,0.096711613237858,0.075610741972923],[0.082600705325603,-0.0022389627993107,-0.074296593666077],[0.24820381402969,0.04558664187789,0.03555991128087]],[[0.1001828238368,0.032872524112463,-0.049824971705675],[0.022314181551337,-0.063548274338245,-0.11265030503273],[-0.010860629379749,0.087713271379471,0.14996300637722]],[[-0.00058924750192091,-0.021638490259647,0.078496649861336],[0.078467294573784,-0.019089205190539,0.013478607870638],[-0.0016685610171407,-0.10099912434816,-0.085677199065685]],[[0.20488247275352,-0.055598363280296,-0.023258149623871],[0.090442143380642,-0.015521176159382,-0.049620639532804],[-0.12276645749807,-0.072005972266197,-0.1673020273447]]],[[[-0.049767930060625,-0.095379374921322,-0.12056296318769],[0.052646297961473,-0.028963478282094,0.05858876183629],[-0.081822127103806,-0.041825912892818,-0.074850864708424]],[[0.12134178727865,-0.067979127168655,-0.0060202619060874],[0.079887934029102,-0.093999527394772,0.039233162999153],[-0.0032455062028021,-0.20694534480572,-0.12243285030127]],[[0.065799757838249,-0.0023220863658935,0.023446502164006],[-0.01954847946763,-0.064130611717701,0.10736775398254],[0.11020165681839,0.061614751815796,0.036637432873249]],[[0.10271679610014,-0.18884909152985,-0.11960035562515],[-0.0043419143185019,0.0080257467925549,-0.10528815537691],[0.13289186358452,-0.16857561469078,-0.12210239470005]],[[-0.067634835839272,-0.068868905305862,-0.058272458612919],[0.070509664714336,0.055380471050739,0.020192284137011],[0.27188780903816,0.12386750429869,0.06637717038393]],[[-0.022269593551755,-0.0091863544657826,-0.070601239800453],[0.0054309433326125,0.078184366226196,-0.082601264119148],[0.10585395991802,0.035239763557911,-0.023943111300468]],[[0.016305608674884,0.13390086591244,0.14242592453957],[0.12316294759512,0.032901104539633,-0.12708111107349],[-0.093304932117462,0.069228120148182,0.047843437641859]],[[-0.28112328052521,0.0043295859359205,0.10904327780008],[-0.11894878000021,0.082390531897545,0.25727120041847],[0.090426333248615,0.036661807447672,0.16608768701553]],[[-0.02060423232615,-0.11750194430351,0.02576132491231],[0.021505935117602,0.17667175829411,-0.019474932923913],[0.0053665060549974,-0.10391874611378,-0.12664988636971]],[[-0.077690213918686,-0.034755975008011,0.060220077633858],[-0.17512130737305,-0.11236721277237,0.10827904939651],[0.17342709004879,-0.15319813787937,0.074708305299282]],[[0.10020831227303,0.11014595627785,0.30572515726089],[-0.10565835237503,-0.03804288059473,0.06037762761116],[-0.30481681227684,-0.23043800890446,-0.020094765350223]],[[-0.039977177977562,-0.01603608764708,0.049941301345825],[0.02734717912972,0.046842716634274,-0.045021262019873],[-0.15320853888988,0.10540600866079,0.061895001679659]],[[0.0034175417385995,-0.2601797580719,-0.21413849294186],[-0.16379538178444,-0.18319815397263,0.12871859967709],[0.13757634162903,-0.013477018103004,-0.25449761748314]],[[0.10630814731121,-0.086092449724674,-0.11864403635263],[0.0070451302453876,-0.09494623541832,-0.15054279565811],[0.20770563185215,-0.070017419755459,-0.0034383947495371]],[[-0.01944730989635,-0.053633611649275,0.13294959068298],[0.11899622529745,0.062534153461456,0.019933138042688],[0.03584461659193,-0.19657938182354,-0.38488993048668]],[[0.080370791256428,0.066072382032871,0.19817630946636],[-0.053347904235125,-0.045623831450939,-0.10080222040415],[0.13154679536819,-0.05286630243063,-0.08364924043417]],[[-0.037514716386795,-0.20190834999084,-0.25140687823296],[-0.090905629098415,0.01215204782784,0.0074851457029581],[0.056449249386787,-0.13812138140202,-0.033444806933403]],[[0.16243007779121,0.027410078793764,0.027785923331976],[0.05469499155879,-0.0013173507759348,0.057723566889763],[-0.042560078203678,-0.066406548023224,0.070387341082096]],[[-0.05835173651576,0.12667970359325,0.0085419220849872],[0.004243322648108,0.15329334139824,0.086988769471645],[0.10407000035048,-0.013171679340303,0.016446126624942]],[[-0.29529821872711,0.0066414969041944,0.072455383837223],[0.047939743846655,0.0012735861819237,0.0024256729520857],[0.14620387554169,-0.053935837000608,-0.034092642366886]],[[-0.21890802681446,-0.099010355770588,-0.020904667675495],[-0.047076798975468,-0.047959726303816,0.041683230549097],[0.083049990236759,0.066052198410034,0.09335058927536]],[[-0.12703149020672,0.034832935780287,0.075299508869648],[0.012261010706425,-0.061322506517172,0.16763180494308],[-0.022227188572288,0.017666740342975,0.021142626181245]],[[0.0032931212335825,0.0038896820042282,0.067818678915501],[0.013603944331408,0.015659708529711,-0.16864958405495],[0.10032846033573,0.054149799048901,-0.16332325339317]],[[0.088804729282856,-0.036831054836512,-0.061027716845274],[0.058007456362247,0.0018407190218568,-0.17226038873196],[-0.18468010425568,-0.3815313577652,-0.66971737146378]],[[-0.027545757591724,0.12441331893206,0.1404824256897],[-0.050346620380878,0.11036106199026,0.1319772452116],[-0.078990444540977,-0.2834013402462,-0.28509673476219]],[[0.078311093151569,0.13998800516129,0.18661695718765],[0.029980707913637,-0.039165258407593,-0.065676063299179],[-0.14306962490082,-0.14208589494228,0.039401799440384]],[[0.090948507189751,0.078836165368557,0.034678604453802],[0.072765298187733,-0.015030989423394,-0.068143412470818],[-0.055668257176876,-0.093524903059006,-0.08209577947855]],[[0.086447641253471,0.13030940294266,-0.0026668487116694],[0.12862074375153,0.054893061518669,-0.07446414232254],[0.076699502766132,0.055135454982519,0.032097931951284]],[[-0.0073952442035079,-0.17199571430683,-0.17546786367893],[-0.035530511289835,-0.050086110830307,-0.11526826769114],[0.045459438115358,-0.022068833932281,-0.092260293662548]],[[-0.09614209830761,-0.1075439080596,0.059905871748924],[-0.067200899124146,-0.018789257854223,0.0036979236174375],[-0.050380643457174,-0.13013279438019,-0.097160443663597]],[[-0.098432399332523,-0.12286448478699,0.043061200529337],[0.080773085355759,-0.016581520438194,-0.13160137832165],[-0.041813157498837,0.0010347272036597,0.035093192011118]],[[0.10533490777016,0.0023151582572609,-0.16068862378597],[-0.046708535403013,-0.22683675587177,-0.054890744388103],[0.10664863884449,0.24759870767593,0.30902254581451]],[[0.098695456981659,-0.042674746364355,-0.1943536400795],[0.014735316857696,0.072385050356388,0.13138556480408],[0.054144993424416,0.098912052810192,0.033376947045326]],[[-0.068853035569191,-0.12041171640158,-0.067092813551426],[-0.19125095009804,0.0091655077412724,-0.033996760845184],[0.23609685897827,0.035340700298548,-0.060487646609545]],[[-0.13182745873928,-0.10348848998547,-0.033737797290087],[0.11743730306625,0.038231357932091,0.104467228055],[0.023548394441605,-0.12019048631191,-0.16957581043243]],[[-0.073334746062756,0.1384906321764,0.14879469573498],[0.013768536038697,-0.12977284193039,-0.11961929500103],[-0.21389578282833,0.027757154777646,0.10315261036158]],[[-0.040715411305428,-0.13048435747623,-0.096980035305023],[0.098299331963062,0.17039406299591,0.079934425652027],[0.008728732354939,0.10789115726948,0.023781305179]],[[0.017300335690379,-0.01333483401686,0.043312463909388],[0.15391957759857,0.063650980591774,-0.061045590788126],[0.038082920014858,0.032149869948626,-0.14918269217014]],[[0.15775544941425,0.12643496692181,0.046095363795757],[-0.2159271389246,0.0017615255201235,-0.021798584610224],[-0.16833347082138,-0.088696025311947,-0.086322419345379]],[[-0.11735101044178,-0.0063357623293996,0.22133450210094],[-0.091661378741264,-0.072364583611488,-0.030356995761395],[-0.14292874932289,-0.13650695979595,-0.12302176654339]],[[-0.044204667210579,0.08977960050106,-0.0050362320616841],[-0.092566683888435,-0.094543792307377,-0.014529331587255],[0.34339413046837,0.10082749277353,-0.058120626956224]],[[-0.056689277291298,-0.071325056254864,-0.033661395311356],[0.15514719486237,0.0079472549259663,0.14431245625019],[-0.11023786664009,0.11604779213667,0.085328683257103]],[[-0.066417880356312,-0.06966395676136,-0.12143938243389],[-0.013347218744457,-0.1324604600668,-0.10648066550493],[-0.029870560392737,-0.072898514568806,-0.084466226398945]],[[-0.049820814281702,0.0019466879311949,-0.10370241105556],[-0.078828528523445,0.057443801313639,-0.01869123801589],[0.062537796795368,0.16476309299469,0.064517296850681]],[[-0.076382666826248,0.089064575731754,0.1262194365263],[-0.10763467848301,-0.15024343132973,-0.075436033308506],[0.071538038551807,-0.075673177838326,-0.024822467938066]],[[0.13310423493385,-0.069156929850578,0.012657566927373],[0.050350844860077,0.056362349539995,0.068840466439724],[0.11231528222561,0.042887881398201,0.070682689547539]],[[-0.31004211306572,-0.15346322953701,-0.024915210902691],[-0.10778491944075,-0.10062860697508,-0.15418595075607],[-0.18935658037663,-0.1786567568779,-0.12519899010658]],[[0.34637701511383,0.089727260172367,-0.21863554418087],[-0.23908787965775,-0.10918884724379,0.097130790352821],[-0.096681408584118,-0.10535775125027,-0.0076282704249024]],[[-0.034390836954117,0.082387924194336,0.084925420582294],[-0.047080021351576,-0.057862788438797,0.0007062258082442],[0.019671272486448,0.041466809809208,0.20290850102901]],[[-0.0036677308380604,-0.097212232649326,-0.22123456001282],[-0.084300830960274,-0.088611803948879,-0.048086542636156],[0.019126271829009,-0.028858261182904,0.04834820330143]],[[0.21332554519176,-0.0079341856762767,-0.10605683922768],[-0.15272988379002,-0.12443352490664,-0.039715498685837],[-0.084434702992439,-0.1143861413002,-0.064320266246796]],[[0.08222434669733,0.11718182265759,0.17468529939651],[0.07543770223856,0.042846761643887,-0.039102897047997],[-0.052106011658907,-0.23557785153389,-0.37449085712433]],[[-0.086500257253647,-0.070520140230656,-0.10520647466183],[-0.056503415107727,-0.10149838775396,-0.10532639920712],[0.20515982806683,0.073951281607151,0.13437473773956]],[[0.10686383396387,-0.0075363349169493,-0.048617396503687],[0.40948262810707,0.10952331125736,-0.19492323696613],[-0.063677653670311,-0.020585399121046,-0.092544004321098]],[[0.057072207331657,0.076537914574146,-0.0031452325638384],[-0.072250179946423,0.040960300713778,-0.12414579838514],[-0.086944811046124,-0.043968208134174,-0.048527549952269]],[[-0.06083582341671,-0.14686261117458,-0.039235107600689],[0.38067489862442,-0.014015651308,-0.040699779987335],[-0.076656140387058,-0.01661378890276,0.058885898441076]],[[0.027492847293615,0.14211092889309,0.018399024382234],[0.016548190265894,-0.065814472734928,-0.056102380156517],[0.22660745680332,-0.002432850189507,-0.23370349407196]],[[-0.07234612852335,-0.10336259007454,-0.17063303291798],[-0.11524853110313,-0.23377476632595,-0.18608002364635],[0.065386205911636,0.078981064260006,0.16277019679546]],[[-0.048034682869911,-0.044922985136509,-0.32842707633972],[-0.11120825260878,-0.13234657049179,-0.19422064721584],[-0.16203357279301,-0.051250025629997,0.13315181434155]],[[-0.026858173310757,-0.085993856191635,0.064671389758587],[0.012995520606637,0.068118557333946,0.14439870417118],[-0.16308794915676,-0.1644301712513,-0.026096416637301]],[[-0.10205756127834,0.014182692393661,-0.018907032907009],[-0.11380200088024,-0.028188290074468,-0.15001739561558],[-0.049845967441797,-0.009691022336483,-0.26538535952568]],[[-0.0392846763134,-0.060162790119648,-0.12479517608881],[-0.040764253586531,-0.10388016700745,-0.055029444396496],[-0.29200702905655,-0.12210538238287,-0.039434362202883]],[[0.23588879406452,0.11347956210375,-0.021120917052031],[-0.11910855025053,-0.074598878622055,-0.1391979008913],[0.62051892280579,0.16525731980801,0.24816486239433]],[[-0.11612997204065,-0.027441615238786,-0.0383032374084],[0.1827789247036,0.23781853914261,0.069376856088638],[-0.019355675205588,0.021571898832917,0.092525377869606]],[[-0.26967892050743,-0.2233719676733,-0.026558458805084],[-0.068894550204277,-0.11611372232437,-0.11759960651398],[0.015228035859764,-0.013205264694989,-0.16313678026199]],[[-0.074839696288109,-0.12244772911072,0.027266565710306],[-0.04806862026453,-0.012724654749036,0.095428258180618],[0.14244593679905,0.06732190400362,-0.02382530644536]],[[0.24539928138256,0.011565830558538,-0.030054938048124],[-0.11599130928516,-0.098084338009357,0.11706263571978],[-0.76141113042831,-0.15774628520012,0.10544288158417]],[[0.14895316958427,-0.091088816523552,-0.074136257171631],[-0.0093389851972461,0.07465597987175,0.085409559309483],[-0.15047341585159,-0.0014696146827191,-0.075415551662445]],[[0.11234069615602,-0.044194489717484,0.099665179848671],[-0.024710528552532,-0.053240764886141,0.022242704406381],[-0.031826496124268,-0.083566680550575,-0.13309758901596]],[[-0.057071007788181,0.079262375831604,0.1824721544981],[0.056668382138014,-0.01905271038413,-0.1550676971674],[-0.06570266187191,0.005861496552825,0.09219391644001]],[[-0.068412877619267,0.0084859533235431,0.17662397027016],[0.10592652112246,-0.045669924467802,-0.11933969706297],[0.032680660486221,0.066909052431583,-0.09792310744524]],[[0.037275344133377,0.00044340424938127,-0.032821055501699],[0.080399163067341,0.010711975395679,0.052362106740475],[-0.14688371121883,0.030154498293996,-0.0774916857481]],[[-0.053532026708126,-0.080617375671864,-0.078500062227249],[0.085705891251564,0.14576259255409,-0.10481339693069],[-0.030388075858355,0.066472366452217,0.1303896009922]],[[-0.076390109956264,-0.15584129095078,-0.017253683879972],[0.051439866423607,0.04701192677021,0.091114655137062],[-0.015164439566433,-0.091589368879795,-0.13930284976959]],[[0.14622859656811,0.1774956882,-0.078372351825237],[0.076856605708599,-0.15529626607895,0.0018689983990043],[-0.038259666413069,-0.052967086434364,0.099147789180279]],[[0.047871429473162,0.0027304224204272,0.085028387606144],[-0.046180609613657,-0.070334061980247,-0.11075368523598],[0.25197637081146,0.17002288997173,0.18875521421432]],[[-0.056855078786612,-0.04833871871233,0.079978883266449],[-0.0081644793972373,-0.082809008657932,-0.19939671456814],[0.20453630387783,-0.090329095721245,-0.043176934123039]],[[-0.013131448999047,0.03496390581131,0.031028375029564],[-0.031421896070242,0.033970661461353,-0.07219073176384],[-0.040279876440763,0.13165812194347,0.23570048809052]],[[-0.12622262537479,0.036259181797504,-0.038584783673286],[-0.086146391928196,-0.043074514716864,-0.20033979415894],[0.062695913016796,0.099668011069298,0.1053351983428]],[[-0.30140048265457,-0.30099430680275,-0.22561609745026],[-0.18412588536739,-0.15487377345562,-0.14936576783657],[-0.038660302758217,-0.14432150125504,-0.12686569988728]],[[-0.21504376828671,-0.09570623934269,0.019276546314359],[0.036140330135822,-0.037584308534861,-0.00055459787836298],[-0.16489069163799,-0.067084215581417,0.019171953201294]],[[-0.0058621051721275,-0.013352428562939,0.045160941779613],[-0.039145685732365,-0.041622448712587,-0.013941647484899],[0.051839593797922,0.17983987927437,0.080001085996628]],[[0.0041496576741338,0.021149454638362,-0.14641760289669],[-0.11992006003857,0.042276527732611,0.18243166804314],[-0.059824012219906,-0.0028906736988574,-0.021498888731003]],[[-0.0097897322848439,0.082579985260963,-0.0051088165491819],[-0.041701197624207,-0.04795441403985,0.019146177917719],[0.013910986483097,-0.1978305131197,-0.014646781608462]],[[0.19664876163006,0.14496754109859,0.038666766136885],[-0.027200203388929,0.04467961192131,-0.063974760472775],[-0.047861520200968,-0.11906924843788,-0.10847059637308]],[[0.020781166851521,-0.066102549433708,-0.08420142531395],[-0.087125971913338,0.00033343114773743,-0.12444672733545],[-0.018828893080354,0.070446155965328,0.15320655703545]],[[0.14308926463127,0.00015235385217238,0.057992469519377],[-0.0039457026869059,-0.082204684615135,-0.0010594626655802],[-0.60455429553986,-0.33449092507362,-0.32307815551758]],[[-0.055927824229002,0.014579867012799,-0.12098040431738],[-0.045068647712469,-0.031831227242947,0.047495562583208],[0.058701027184725,0.017811361700296,0.014273938722908]],[[-0.052653912454844,-0.050072286278009,0.029406020417809],[-0.080689169466496,-0.066680811345577,-0.17449553310871],[-0.06003725156188,0.19600750505924,0.12319802492857]],[[-0.0028605416882783,0.026896651834249,-0.035988703370094],[-0.18174646794796,-0.22771811485291,-0.058148089796305],[0.059371434152126,0.0094154672697186,-0.067078053951263]],[[-0.095402367413044,0.048006810247898,-0.17140144109726],[-0.044499635696411,0.2187192440033,0.30334860086441],[-0.16622275114059,0.19448979198933,-0.039969559758902]],[[-0.07428801804781,-0.071423709392548,-0.16874052584171],[0.015775974839926,0.00069400382926688,-0.13127771019936],[0.1566596776247,0.083816073834896,0.10499764978886]],[[0.1659038066864,0.070433758199215,0.017750855535269],[-0.011822040192783,0.20023433864117,0.24223007261753],[0.24838648736477,0.092358462512493,-0.095965161919594]],[[-0.021599611267447,-0.12800322473049,-0.15436805784702],[-0.24221675097942,-0.21381875872612,-0.13197650015354],[-0.012854050844908,-0.027060428634286,-0.016879118978977]],[[-0.13511890172958,0.044286835938692,0.095638759434223],[0.068299323320389,0.045077908784151,-0.24415244162083],[-0.077608570456505,-0.036610633134842,0.15373179316521]],[[-0.15318146348,-0.14258264005184,-0.057934895157814],[-0.0048550819046795,-0.01103229355067,0.0247887596488],[-0.0001927557750605,0.028251314535737,-0.070541575551033]],[[0.070637628436089,0.15669582784176,0.15526184439659],[0.04082129150629,0.081522606313229,-0.0041463579982519],[-0.19819556176662,-0.0034823089372367,-0.095375187695026]],[[-0.028602123260498,-0.17789682745934,-0.14873617887497],[-0.017180697992444,-0.020899893715978,0.24117033183575],[-0.13471022248268,-0.057464241981506,-0.10216683149338]],[[0.086129456758499,0.080947019159794,0.055675514042377],[-0.08182018995285,-0.073006868362427,0.0098055582493544],[-0.00045399414375424,0.051630903035402,0.094204515218735]],[[0.22978065907955,0.017301188781857,0.07195008546114],[-0.050360921770334,0.0077721602283418,-0.13825386762619],[-0.1722649782896,0.044592812657356,0.10247357934713]],[[-0.13525165617466,-0.00049403897719458,0.12849232554436],[-0.13875456154346,-0.098681017756462,-0.13739374279976],[-0.032658349722624,-0.13847160339355,-0.026695864275098]],[[0.068162359297276,0.18422624468803,0.20400011539459],[-0.023017760366201,0.0016541654476896,-0.047000803053379],[0.35660606622696,0.15750940144062,0.28960973024368]],[[-0.081052392721176,0.047960095107555,-0.095600754022598],[-0.080347560346127,0.12451108545065,-0.18372716009617],[0.14084765315056,0.0015823687426746,-0.16516342759132]],[[-0.029902722686529,-0.15097193419933,-0.064984537661076],[-0.094763532280922,0.0057355295866728,-0.039790745824575],[-0.12438817322254,0.03640703484416,0.053064197301865]],[[-0.098442703485489,0.025703690946102,0.021778030321002],[0.090392827987671,0.075889095664024,-0.054730791598558],[-0.040654260665178,-0.13845846056938,-0.018437815830112]],[[-0.18200720846653,-0.026864103972912,0.14573013782501],[0.065477021038532,0.089117988944054,0.095490172505379],[0.13110050559044,-0.030405456200242,0.11228512227535]],[[-0.010812670923769,-0.0014806404942647,0.0560157969594],[-0.028844518586993,0.0017902535619214,-0.074280291795731],[0.28455716371536,0.080067940056324,0.11448521912098]],[[0.0075669959187508,-0.077832736074924,-0.05551789700985],[0.053053393959999,0.09409311413765,0.059048946946859],[0.045517101883888,-0.098046697676182,-0.17249439656734]],[[-0.044964481145144,0.07347160577774,0.20659847557545],[0.1278927475214,0.16730532050133,0.096022836863995],[0.086852326989174,0.076536506414413,-0.091791033744812]],[[-0.040931418538094,-0.069689512252808,0.092862531542778],[0.026701791211963,0.00048792196321301,-0.048692297190428],[0.060073345899582,0.033648617565632,0.047555055469275]],[[0.044574987143278,-0.073696792125702,0.023883894085884],[0.028666703030467,-0.060150932520628,0.079445905983448],[-0.10620233416557,-0.014047715812922,-0.10804444551468]],[[0.04462118819356,-0.034972935914993,-0.063267536461353],[0.052635386586189,0.020277639850974,-0.10613415390253],[-0.084904618561268,-0.20668840408325,-0.03758929669857]],[[0.12887932360172,-0.013905412517488,-0.1193033978343],[-0.018860230222344,0.018927484750748,0.017710933461785],[-0.09072832018137,0.032523110508919,-0.15360313653946]],[[0.061542104929686,0.043416634202003,0.1101880595088],[-0.14552217721939,-0.10821693390608,-0.035749644041061],[0.19050066173077,0.020459327846766,0.10775104910135]],[[-0.11303512006998,-0.067039169371128,-0.026879167184234],[-6.6699558374239e-06,-0.076278574764729,0.11171913146973],[0.048282716423273,0.0024424900766462,0.10936966538429]],[[0.076899744570255,0.042117610573769,0.068525701761246],[-0.29100853204727,0.042391322553158,0.0031580426730216],[-0.069826990365982,-0.032422117888927,-0.017041923478246]],[[-0.19070343673229,0.016104588285089,-0.020067388191819],[-0.17268325388432,-0.12359593063593,0.019170846790075],[0.035431575030088,-0.17877100408077,-0.073321305215359]],[[0.19655883312225,0.064860694110394,0.10146317631006],[-0.046168714761734,-0.14030855894089,-0.20525236427784],[-0.050811871886253,0.0078974068164825,-0.015067025087774]],[[-0.048892367631197,-0.13980089128017,0.0056803934276104],[-0.041595838963985,-0.037586305290461,-0.075206585228443],[-0.24601575732231,0.069643527269363,0.038645625114441]],[[0.014885378070176,0.15339352190495,-0.17950870096684],[0.035742074251175,-0.0741942897439,-0.062554158270359],[0.079957336187363,0.20416525006294,0.30208361148834]],[[-0.1196530982852,-0.023358138278127,0.26998242735863],[0.029752803966403,-0.043487016111612,-0.019640576094389],[-0.052221436053514,0.2086006551981,0.27594387531281]],[[0.0045983889140189,0.1345020532608,0.14283762872219],[-0.0064537739381194,-0.031701609492302,0.065229766070843],[0.31047159433365,0.19180792570114,0.099717311561108]],[[-0.17981091141701,-0.21002115309238,-0.0035586743615568],[-0.034707676619291,-0.047615304589272,-0.077680312097073],[-0.025033665820956,-0.013822307810187,-0.15209664404392]],[[0.050164580345154,0.030275605618954,0.021616097539663],[0.12022193521261,-0.0011139023117721,0.018509985879064],[0.022222399711609,0.066481195390224,0.16749733686447]],[[-0.12410354614258,-0.058379206806421,0.054120931774378],[-0.10931063443422,-0.098047688603401,-0.013744978234172],[0.031029837206006,0.066388286650181,0.047711011022329]],[[0.0080193048343062,0.047347355633974,0.093292772769928],[-0.12307313084602,0.063958086073399,0.050359398126602],[-0.086848564445972,-0.14150743186474,0.14223378896713]],[[0.037555679678917,0.09292459487915,0.15210463106632],[-0.074775002896786,0.15534293651581,-0.13824859261513],[-0.11963970214128,0.079008400440216,0.020605884492397]],[[-0.0070367436856031,0.05245491489768,0.14127449691296],[0.096825622022152,-0.0084964009001851,0.087716639041901],[-0.040430948138237,-0.034029513597488,0.031316623091698]]],[[[-0.054388750344515,-0.080153927206993,-0.062332265079021],[-0.028874909505248,-0.042339842766523,0.053038749843836],[-0.019712947309017,0.010882380418479,0.026216261088848]],[[-0.045373428612947,-0.049589991569519,0.033688653260469],[-0.06099933758378,-0.025257095694542,-0.019481996074319],[0.032548442482948,-0.040247209370136,-0.022844692692161]],[[-0.024988086894155,-0.0045835245400667,0.054025799036026],[0.016730388626456,-0.03384380415082,-0.037702921777964],[0.014556696638465,0.00039895009831525,0.014433211646974]],[[-0.06724913418293,-0.009563441388309,0.049493458122015],[-0.0010874071158469,-0.030645685270429,-0.0092951217666268],[-0.019900584593415,0.038761582225561,-0.037285730242729]],[[-0.0048040375113487,0.015889694914222,0.033559437841177],[-0.055764578282833,0.011033850722015,-0.061891842633486],[-0.033151730895042,-0.029201824218035,-0.013270551338792]],[[0.0010118433274329,-0.034653190523386,0.092403963208199],[-0.029804913327098,0.043615769594908,-0.032632883638144],[-0.012982600368559,-0.037856288254261,0.0022841501049697]],[[0.020870693027973,0.063111811876297,0.0030151549726725],[-0.0053210235200822,0.028738413006067,-0.030673831701279],[-0.031453289091587,0.028595825657248,-0.056936129927635]],[[-0.028274258598685,0.017794689163566,-0.0076375417411327],[0.019999792799354,0.017781678587198,-0.014300007373095],[0.06594630330801,0.058125201612711,-0.018363239243627]],[[0.10205954313278,0.07212507724762,0.013670393265784],[-0.064415961503983,0.027716206386685,-0.015409072861075],[-0.00081745453644544,-0.035888619720936,-0.0016486581880599]],[[-0.016396878287196,-0.029690455645323,-0.014321558177471],[0.072676606476307,-0.085106000304222,-0.047225631773472],[0.019462522119284,0.063460141420364,-0.030355177819729]],[[-0.023467330262065,-0.014289702288806,-0.021567150950432],[-0.055024463683367,0.011698708869517,-0.0088450284674764],[-0.0061798575334251,-0.022944841533899,0.027048295363784]],[[-0.024356357753277,0.067997477948666,-0.067704819142818],[0.0037288037128747,-0.053714796900749,0.036872085183859],[0.033555205911398,-0.036474872380495,0.052551779896021]],[[-0.12027405202389,0.032413773238659,0.0091455327346921],[0.027389582246542,-0.054518107324839,-0.027879025787115],[0.007985039614141,0.015203642658889,-0.031279571354389]],[[0.06560804694891,0.038173593580723,-0.065143421292305],[0.033847384154797,-0.010394897311926,-0.014513281174004],[-0.04862979799509,-0.022306695580482,-0.023534992709756]],[[0.024131653830409,0.046226549893618,0.061782170087099],[0.010381204076111,0.020453050732613,-0.056319314986467],[-0.00035985335125588,0.035178869962692,0.040515378117561]],[[-0.027306387200952,0.034703075885773,0.0012031538644806],[-0.01758124306798,0.0055674603208899,0.0078211454674602],[-0.07248205691576,0.057916089892387,0.022385612130165]],[[0.0041734101250768,0.052264027297497,0.047740612179041],[0.0052881669253111,0.079817518591881,-0.0034000689629465],[-0.0061093429103494,-0.048635344952345,0.070751421153545]],[[-0.0025513814762235,0.058180816471577,-0.019863024353981],[0.09075839817524,-0.04115641489625,-0.00020796708122361],[-0.059187408536673,0.063363380730152,-0.083559282124043]],[[-0.03143348544836,-0.016288671642542,-0.041089620441198],[-0.037936914712191,-0.026592094451189,0.028791971504688],[-0.10919832438231,-0.0020999363623559,0.068811692297459]],[[-0.026972288265824,0.0070960642769933,-0.10924132168293],[0.062105618417263,0.028718009591103,0.020659562200308],[0.058393031358719,0.016301533207297,0.046413198113441]],[[0.045978464186192,0.029252978041768,-0.051615290343761],[0.017706556245685,0.0024088176432997,-0.025478862226009],[0.070445254445076,-0.059944361448288,0.026343110948801]],[[0.039268288761377,-0.059597074985504,-0.0074196606874466],[-0.074998073279858,-0.1110260412097,-0.029985705390573],[0.073038332164288,0.046572376042604,-0.042714338749647]],[[-0.037440620362759,0.023894609883428,-0.034379709511995],[-0.078705310821533,-0.018627546727657,-0.0056675877422094],[-0.026220669969916,-0.025298479944468,0.015841040760279]],[[-0.060217700898647,-0.050362072885036,0.0081753022968769],[0.035933542996645,-0.076545730233192,-0.099109254777431],[-0.023672016337514,0.068066641688347,0.036490745842457]],[[-0.024645237252116,-0.078075334429741,-0.033271376043558],[0.011856006458402,-0.012349120341241,0.046951241791248],[0.027288654819131,-0.01752789132297,0.023802330717444]],[[-0.059157121926546,0.012621074914932,-0.033890631049871],[-0.0042044064030051,0.051867164671421,0.0017829325515777],[-0.049791470170021,0.05527064204216,0.057065133005381]],[[0.046149991452694,-0.02472578920424,-0.046696241945028],[0.042901545763016,0.055454015731812,0.052669011056423],[0.0050614047795534,0.020111499354243,-0.017212746664882]],[[0.057029534131289,-0.020928747951984,-0.034578513354063],[-0.0039807567372918,-0.049397602677345,-0.020134188234806],[0.081999853253365,0.055146664381027,0.10014371573925]],[[0.014934103004634,-0.0056794444099069,-0.036129739135504],[0.047454945743084,0.070494547486305,0.13087832927704],[-0.088123880326748,-0.018049459904432,0.0089915208518505]],[[-0.012090785428882,-0.062935449182987,-0.009801828302443],[-0.022306207567453,-0.039032705128193,-0.0073269060812891],[-0.032088283449411,0.042542334645987,0.024712733924389]],[[-0.0069352821446955,-0.067776516079903,-0.036156266927719],[-0.0027517019771039,0.00014262647891883,-0.025549802929163],[0.025947459042072,0.045435734093189,0.02645555511117]],[[-0.020654430612922,-0.084047257900238,0.014382907189429],[0.0074323220178485,-0.023592054843903,0.079918637871742],[-0.067897990345955,-0.016186732798815,-0.075824402272701]],[[-0.0041620591655374,-0.0044911960139871,0.014382601715624],[0.040240757167339,-0.02808703482151,-0.028696842491627],[-0.077671051025391,-0.036056850105524,0.035823956131935]],[[0.085615016520023,-0.046407599002123,-0.039192538708448],[-0.022334549576044,0.080365493893623,0.058635003864765],[-0.047935534268618,0.015000926330686,-0.028202600777149]],[[-0.060117624700069,-0.028439117595553,-0.093452103435993],[0.035429481416941,0.010048931464553,-0.10009782761335],[-0.062548734247684,0.012012204155326,0.041994400322437]],[[0.071264252066612,0.082826115190983,0.012659586034715],[-0.019443295896053,0.021410623565316,-0.067123591899872],[-0.0062139146029949,0.014943079091609,-0.023132048547268]],[[-0.0022489647381008,-0.010752076283097,-0.011843115091324],[-0.051029868423939,-0.079965233802795,0.022639270871878],[-0.098485581576824,0.040595974773169,-0.015057279728353]],[[0.024946350604296,0.0081440154463053,-0.038719743490219],[-0.084155432879925,0.023358713835478,0.032435543835163],[0.047789290547371,0.0049675144255161,0.010304473340511]],[[-0.036240447312593,-0.045257218182087,0.064215391874313],[0.061613753437996,-0.031044635921717,-0.072813458740711],[-0.0069827893748879,-0.011745573952794,0.060069192200899]],[[-0.0071759866550565,-0.038913786411285,0.023897496983409],[0.029516426846385,0.017261909320951,-0.10678515583277],[0.011360105127096,0.025630598887801,0.086672864854336]],[[0.0086220856755972,0.013396295718849,-0.053846959024668],[0.012430887669325,-0.0026564358267933,0.031441304832697],[0.010783282108605,-0.018014496192336,0.084092065691948]],[[-0.020315803587437,-0.034075237810612,-0.076866447925568],[0.011590824462473,0.027006410062313,-0.003614567918703],[0.045382682234049,0.021513560786843,0.040426533669233]],[[-0.0057725510559976,-0.017013134434819,-0.0050697005353868],[-0.023909416049719,-0.026798918843269,-0.027057614177465],[0.035042952746153,0.051905937492847,-0.032112214714289]],[[8.5336381744128e-05,-0.015853142365813,-0.036195278167725],[0.0018412793288007,-0.020602123811841,0.084974929690361],[-0.10897266119719,-0.026281591504812,0.017512172460556]],[[0.046704530715942,-0.10928784310818,0.0094977449625731],[-0.040162820369005,0.020589323714375,0.0034884915221483],[0.073745988309383,-0.02620074339211,-0.0066351075656712]],[[0.017242485657334,-0.028733430430293,0.088776901364326],[0.05838667601347,-0.06425628811121,0.018316505476832],[0.014150224626064,0.053381182253361,-0.027376087382436]],[[0.041530925780535,0.011629620566964,-0.031716234982014],[0.018360611051321,0.049709536135197,-0.047201860696077],[-0.015027102082968,0.025443755090237,0.0025909312535077]],[[-0.017882630228996,-0.014719421043992,0.030920650810003],[-0.040471184998751,-0.030580369755626,0.096947759389877],[-0.020110601559281,-0.070555351674557,-0.060846801847219]],[[0.08545545488596,-0.014589409343898,-0.011899005621672],[-0.046298760920763,0.092068120837212,0.089500084519386],[-0.014600440859795,-0.014507804065943,-0.03695947304368]],[[0.029335564002395,0.067729905247688,0.022991513833404],[0.048499416559935,0.054185908287764,-0.0043433480896056],[0.039973028004169,0.043805606663227,0.078822329640388]],[[-0.012983616441488,0.02350091189146,0.028926653787494],[0.056617878377438,-0.054527524858713,0.091270282864571],[0.0080286720767617,-0.0034793806262314,0.041152641177177]],[[0.096963256597519,0.043395664542913,-0.018292836844921],[0.024647420272231,0.048385124653578,0.048664070665836],[0.036250121891499,-0.0052694114856422,-0.11181979626417]],[[-0.037326823920012,-0.067453920841217,-0.047940198332071],[-0.055707037448883,-0.0081811798736453,0.011328212916851],[-0.039665196090937,-0.015337523072958,0.029014931991696]],[[0.0025217211805284,-0.058203265070915,0.052609119564295],[-0.082311429083347,-0.045197334140539,0.015764117240906],[-0.0043915323913097,0.040735382586718,-0.033669106662273]],[[8.3956874732394e-05,-0.002159679774195,-0.040487922728062],[0.043834734708071,0.037463620305061,0.033499773591757],[-0.0087751094251871,-0.028173591941595,0.11105012893677]],[[-0.0092434016987681,0.00076694710878655,0.039079234004021],[-0.030833855271339,0.00065577565692365,0.027712823823094],[-0.03505402430892,0.072155460715294,-0.028578475117683]],[[-0.020504981279373,-0.056931108236313,0.032691899687052],[-0.04126350954175,-0.060176748782396,-0.03937741369009],[0.026660179719329,-0.013084033504128,0.011036675423384]],[[-0.069177716970444,0.044725354760885,-0.066771499812603],[0.11495944857597,0.0029914986807853,0.0191211681813],[0.025624763220549,0.017597438767552,0.026547281071544]],[[0.0098848305642605,0.054613079875708,0.047429129481316],[-0.012819348834455,-0.0090086255222559,-0.066671021282673],[0.017744833603501,0.01513974647969,-0.0066629694774747]],[[0.0051647932268679,0.049376681447029,-0.043209053575993],[-0.013952164910734,0.028567811474204,0.0052479589357972],[0.026598116382957,-0.016769902780652,0.035396263003349]],[[0.040953245013952,-0.032205544412136,-0.046171974390745],[0.043475389480591,0.011416990309954,0.001194067299366],[-0.016120605170727,0.024430114775896,0.031560331583023]],[[0.077539429068565,0.014134638942778,0.018109101802111],[0.030748315155506,-0.036699615418911,-0.015204182825983],[-0.0021861041896045,-0.08094722032547,0.020026048645377]],[[0.069238252937794,-0.059775345027447,-0.029119629412889],[0.067034877836704,0.04326906055212,0.0095129916444421],[-0.014426000416279,0.026522818952799,0.068468995392323]],[[0.043082419782877,-0.010501924902201,0.050780821591616],[0.04260852560401,-0.049127582460642,0.10311517119408],[-0.023959195241332,-0.014178862795234,0.049481797963381]],[[-0.012858941219747,-0.054701291024685,-0.0047998214140534],[0.029851591214538,-0.056156132370234,0.017318565398455],[-0.045922704041004,-0.017139688134193,-0.045650094747543]],[[0.025863945484161,0.056378670036793,-0.098508723080158],[0.01140911784023,-0.058065563440323,0.0056118089705706],[0.07656118273735,-0.012441319413483,0.093814618885517]],[[0.026206823065877,-0.026155905798078,-0.03981702029705],[-0.045407902449369,0.026233047246933,0.024402199313045],[-0.026621693745255,0.029450979083776,0.047976680099964]],[[-0.05499953776598,-0.07325354218483,-0.026095544919372],[0.04349909722805,-0.014997689053416,-0.02225062251091],[0.031046602874994,0.077806212007999,-0.015258505940437]],[[0.095937982201576,0.068207688629627,-0.013957688584924],[-0.070116698741913,0.003080629510805,0.031356893479824],[-0.099018037319183,0.067984253168106,-0.00095312495250255]],[[-0.053981058299541,0.037700042128563,0.087360613048077],[0.063275352120399,0.049683127552271,-0.018217524513602],[-0.048450145870447,0.068170450627804,0.0087874475866556]],[[-0.021130591630936,-0.11466443538666,-0.034974131733179],[-0.010045789182186,-0.017163619399071,0.062314957380295],[-0.0079302126541734,0.015693796798587,0.10331825166941]],[[-0.089485265314579,0.093631900846958,0.0044233333319426],[0.049304213374853,-0.0044223251752555,-0.042240135371685],[-0.056286428123713,-0.014070493169129,0.036237899214029]],[[0.019002992659807,0.0012887604534626,0.0013294330565259],[0.017660211771727,0.018278922885656,-0.0065813194960356],[0.014606022275984,-0.046396918594837,-0.1125378832221]],[[-0.0086806146427989,-0.0010908785043284,0.033092692494392],[0.016402572393417,0.014491001144052,0.029994860291481],[0.052003018558025,-0.042867034673691,-0.083897940814495]],[[-0.002248375210911,-0.017394553869963,0.034167271107435],[0.076213039457798,0.050554122775793,0.10553652793169],[-0.020738808438182,-0.042074978351593,0.023673528805375]],[[0.02522843144834,0.0067392741329968,-0.0028101690113544],[0.044123269617558,-0.062335077673197,0.11963798105717],[0.083402425050735,0.0038001923821867,-0.060594853013754]],[[-0.0032549877651036,-0.020576473325491,0.038695197552443],[0.029324194416404,0.010401372797787,0.023736765608191],[-0.029858468100429,0.051939900964499,0.011209108866751]],[[-0.012090402655303,0.040602713823318,0.022626621648669],[0.035011351108551,-0.018037332221866,-0.013125849887729],[-0.017591316252947,-0.082786537706852,0.071461260318756]],[[0.066990658640862,0.12454972416162,0.015199108049273],[-0.01604033075273,0.078960277140141,0.027163945138454],[-0.027726344764233,-0.011345724575222,-0.049995716661215]],[[0.031210288405418,-0.013713446445763,0.050401881337166],[0.059356652200222,-0.04697534814477,0.044811189174652],[0.071262963116169,0.097403168678284,0.0026406766846776]],[[0.085204362869263,0.012726213783026,-0.01886492408812],[0.046628355979919,0.013307039625943,0.012035084888339],[-0.031490594148636,0.034019518643618,-0.01921977289021]],[[-0.0065879309549928,-0.061862375587225,0.054176740348339],[0.041534453630447,0.012383872643113,-0.016797281801701],[-0.027881348505616,-0.0057167890481651,-0.0067585012875497]],[[-0.00075643393211067,-0.07898261398077,0.020604839548469],[0.021479785442352,-0.00040849996730685,-0.045510668307543],[0.074300572276115,0.0049671661108732,0.026863429695368]],[[0.015354196541011,0.079754769802094,0.072352349758148],[-0.059867259114981,0.042496342211962,-0.030984383076429],[-0.011425550095737,0.076648235321045,0.017875673249364]],[[-0.060498610138893,-0.0052168103866279,0.07073774933815],[-0.012983856722713,-0.020292075350881,0.013124022632837],[-0.028847597539425,-0.012137332931161,-0.0071434667333961]],[[0.037674032151699,0.028205033391714,0.055817998945713],[0.0064944587647915,0.1217257976532,-0.0059372456744313],[0.083611413836479,-0.0087918899953365,-0.029676167294383]],[[-0.030615326017141,-0.014453607611358,0.0027554165571928],[-3.9970047509996e-05,0.024625223129988,-0.012855384498835],[-0.044217564165592,-0.0032862431835383,0.033830337226391]],[[0.044130820780993,-0.11318601667881,0.0026734573766589],[-0.018465222790837,-0.063730396330357,-0.037717565894127],[0.01339044701308,-0.056061454117298,-0.027384772896767]],[[-0.016617814078927,0.047997757792473,0.090352155268192],[-0.037628997117281,0.0042994525283575,-0.021627383306623],[-0.024375922977924,-0.02674531377852,-0.013021998107433]],[[-0.044585522264242,-0.013996755704284,-0.049640338867903],[0.061309903860092,-0.022409807890654,-0.030784724280238],[-0.017550207674503,-0.048173457384109,0.029984936118126]],[[0.03070691972971,0.013922525569797,0.055159233510494],[0.013110514730215,0.029764175415039,0.0072112898342311],[-0.0320999994874,-0.059631250798702,0.023491883650422]],[[0.027724888175726,-0.0040918327867985,-0.047876998782158],[-0.068325236439705,-0.022597495466471,-0.065758779644966],[0.017685979604721,0.069993317127228,0.052243124693632]],[[0.0092317620292306,-0.032211016863585,5.5558255553478e-05],[-0.086798645555973,-0.039278849959373,-0.01862139813602],[-0.033089470118284,-0.082117453217506,0.016407661139965]],[[0.029831832274795,0.0039885272271931,0.0065359906293452],[0.0076998835429549,0.095865502953529,0.044576793909073],[-0.002164508216083,0.027344722300768,-0.079585202038288]],[[-0.013129717670381,-0.0096654957160354,0.040354371070862],[0.067301571369171,-0.041972286999226,-0.10168123245239],[0.025352340191603,0.071758389472961,-0.01482683699578]],[[-0.036174811422825,-0.032368574291468,-0.02479157410562],[-0.01227539498359,0.0087193679064512,0.08817720413208],[0.060142900794744,-0.074339598417282,-0.026462657377124]],[[-0.028112499043345,0.035480793565512,0.0093958489596844],[0.030142234638333,0.029414527118206,-0.076092384755611],[-0.015103132463992,0.0020414181053638,0.008773853071034]],[[0.052677594125271,-0.032213643193245,-0.0085498690605164],[-0.01261774264276,0.053673643618822,-0.01277263648808],[-0.053314421325922,0.07532425224781,-0.0068340483121574]],[[-0.01385509967804,0.01603508926928,-0.0079470463097095],[-0.0215920265764,0.024468356743455,0.037991885095835],[0.0063928700983524,0.0092584518715739,0.0099443858489394]],[[0.0033009455073625,0.042209219187498,0.079399056732655],[-0.03116125240922,0.0073827388696373,-0.054647281765938],[0.027976430952549,-0.045090563595295,0.015546433627605]],[[-0.042655263096094,0.0046848333440721,0.043417915701866],[0.019569978117943,-0.039003510028124,-0.013243856839836],[-0.002096766140312,-0.010720614343882,0.067663945257664]],[[0.055528428405523,0.080118082463741,0.056551571935415],[0.038604855537415,0.0098124630749226,-0.033598117530346],[0.049052353948355,0.016367068514228,-0.067703150212765]],[[0.029608381912112,-0.010013218037784,0.0092187616974115],[0.087668053805828,0.014957215636969,-0.045083813369274],[-0.023018406704068,0.027858981862664,0.0056782430037856]],[[0.01818291656673,0.03888601437211,0.0063246921636164],[-0.032120194286108,-0.080437563359737,0.019830986857414],[-0.00033325224649161,0.0068866973742843,-0.043722871690989]],[[0.063997015357018,0.13067938387394,-0.053342521190643],[0.062923304736614,0.034308310598135,0.0066002965904772],[0.018749050796032,-0.054652132093906,-0.020891552790999]],[[0.057201758027077,-0.034024849534035,-0.035188984125853],[-0.037140071392059,0.0031505902297795,-0.013492926023901],[-0.015394399873912,0.043936610221863,-0.04344229772687]],[[-0.026677815243602,-0.10953222960234,-0.0022693558130413],[0.0044373339042068,0.12165705859661,0.035397112369537],[0.016385715454817,-0.07134048640728,0.040395971387625]],[[-0.026982331648469,-0.0016432997072116,-0.12844084203243],[-0.015019777230918,-0.021693369373679,-0.0058060907758772],[-0.053271260112524,0.0098127210512757,-0.048491973429918]],[[0.046977631747723,0.070759192109108,0.012688887305558],[-0.0088974479585886,0.027123088017106,0.036774970591068],[-0.037964716553688,0.00064862123690546,0.073777921497822]],[[-0.014584457501769,-0.06545203179121,-0.028437756001949],[0.056038994342089,-0.005041535012424,0.0055748960003257],[0.079960070550442,0.013091970235109,0.059309277683496]],[[0.061633065342903,0.019115095958114,0.040014676749706],[0.02037806250155,0.030246017500758,-0.014377259649336],[0.00051255093421787,0.065187484025955,0.057361904531717]],[[0.0090594720095396,-0.096201673150063,-0.060982223600149],[-0.03944319114089,-0.036250479519367,0.034841556102037],[-0.053594212979078,0.048031974583864,-0.015805145725608]],[[0.04788950830698,-0.028868936002254,0.01716616563499],[0.026242284104228,0.045227512717247,-0.012635689228773],[0.0099134854972363,-0.054448015987873,0.0025250408798456]],[[0.0068644904531538,0.099308036267757,0.031040592119098],[0.045200910419226,-0.038545530289412,0.051183316856623],[0.05016890540719,0.031048316508532,-0.063299477100372]],[[0.086467087268829,0.043690975755453,-0.040807109326124],[-0.026770500466228,0.025409482419491,-0.028007671236992],[-0.055482532829046,0.043199129402637,-0.0093646440654993]],[[0.086370356380939,0.10406041890383,0.015979478135705],[-0.040223825722933,0.0098715098574758,0.028554791584611],[0.026343060657382,-0.00109675724525,0.033668514341116]],[[-0.0079310014843941,0.027188761159778,-0.029328277334571],[-0.027698671445251,0.044691246002913,0.041066013276577],[0.024966862052679,0.00036632103729062,0.036802034825087]],[[-0.02970059402287,-0.070372700691223,-0.05366362631321],[0.049029272049665,-0.014504752121866,0.0020140849519521],[0.057304292917252,-0.043773580342531,0.029545363038778]],[[0.00068467727396637,0.047925040125847,0.062412552535534],[-0.0049487417563796,0.01613799110055,0.018137946724892],[0.064445681869984,0.032465130090714,0.039984349161386]],[[0.054334823042154,-0.018383402377367,-0.029745601117611],[0.019720757380128,0.078431002795696,0.02392846904695],[-0.038289591670036,0.021132159978151,-0.036907110363245]],[[-0.014114779420197,-0.06590735912323,0.037204127758741],[0.027572510764003,-0.0091090807691216,0.049142882227898],[0.022122848778963,0.075379431247711,0.02375384233892]],[[0.12177435308695,0.047446865588427,0.040450852364302],[0.054004017263651,-0.015527758747339,-0.056586794555187],[0.076160565018654,-0.10341525822878,-0.011790001764894]],[[-0.0244898237288,0.01182749401778,-0.0024037549737841],[0.010770519264042,0.056786954402924,0.0010424960637465],[0.023097973316908,0.023310909047723,0.077554725110531]],[[-0.014360977336764,-0.043979421257973,0.025048978626728],[-0.015768803656101,-0.033656943589449,0.036600947380066],[-0.060844641178846,-0.1022619381547,-0.043784402310848]],[[-0.030844181776047,-0.0014446640852839,-0.016319304704666],[0.045522551983595,0.062782526016235,0.058054246008396],[0.032427851110697,0.063879482448101,0.010012811981142]],[[-0.0021705569233745,-0.037903394550085,-0.011244089342654],[0.012308996170759,-0.06578778475523,0.055692583322525],[0.053334400057793,-0.015304328873754,0.0048037134110928]],[[-0.0097771072760224,-0.0025245144497603,0.063571140170097],[-0.025759844109416,0.049206003546715,-0.06337883323431],[-0.043232709169388,-0.099710032343864,-0.021656319499016]],[[-0.0029594297520816,-0.00013604175182991,-0.0018516258569434],[0.04621683806181,-0.047728192061186,0.07069668918848],[-0.063659057021141,0.0019316934049129,-0.025508679449558]]],[[[0.089875146746635,-0.052881684154272,-0.12627840042114],[0.013786188326776,-0.10125418007374,-0.11977186799049],[0.14768517017365,0.014663239009678,-0.075875349342823]],[[0.10822851955891,-0.10778553038836,0.13184730708599],[0.082982309162617,0.02951474301517,0.15307269990444],[0.17359767854214,0.032372567802668,0.11866819858551]],[[0.020281799137592,-0.067197017371655,-0.0070795342326164],[-0.12442622333765,0.075150549411774,0.064696870744228],[-0.0034776309039444,-0.0358533449471,0.034970421344042]],[[0.0082296943292022,-0.13553240895271,0.075925529003143],[0.001485132961534,-0.058875750750303,0.06159258633852],[0.089896604418755,-0.066337965428829,-0.16218219697475]],[[0.20810666680336,0.0086396774277091,-0.011341578327119],[-0.0052893324755132,-0.013383762910962,-0.0086678043007851],[0.0047061499208212,-0.032165672630072,-0.17287303507328]],[[0.04453968256712,-0.03898586332798,-0.05670303478837],[-0.15674383938313,0.13051702082157,-0.19062165915966],[0.13718883693218,0.10979969054461,-0.13979104161263]],[[-0.12507492303848,0.090136133134365,0.048124484717846],[-0.023913908749819,0.017452672123909,0.013250236399472],[0.14221449196339,-0.0026973758358508,0.17139728367329]],[[0.31134214997292,-0.021053627133369,-0.030872706323862],[0.1723367869854,-0.17554883658886,0.037396337836981],[0.088849291205406,-0.12444104999304,0.064018383622169]],[[-0.018560122698545,0.058946061879396,0.039987113326788],[0.015190040692687,-0.038130965083838,0.035688187927008],[0.00028746880707331,-0.10451847314835,-0.013075673021376]],[[-0.042416453361511,-0.00047135748900473,0.017109751701355],[-0.056501004844904,0.035265676677227,-0.14494469761848],[-0.16331599652767,-0.11194900423288,-0.028403930366039]],[[0.025691378861666,0.081907138228416,-0.17046692967415],[-0.076007008552551,-0.14177620410919,-0.11796785145998],[-0.057825971394777,0.20073580741882,-0.0056460350751877]],[[0.061485603451729,0.1347201615572,-0.027540734037757],[0.0029505300335586,-0.01767092011869,0.04975813627243],[-0.010934270918369,0.027021529152989,-0.081829063594341]],[[0.011735016480088,-0.038765158504248,0.024646205827594],[-0.021795710548759,-0.059756461530924,-0.040749222040176],[-0.076092220842838,0.0082780057564378,0.11463788151741]],[[-0.068425521254539,-0.020744774490595,-0.012906533665955],[-0.086922951042652,-0.05693669244647,-0.037927329540253],[-0.070582740008831,0.09771766513586,0.10152284801006]],[[-0.040552768856287,-0.027262333780527,0.006164497230202],[-0.025772131979465,-0.092010118067265,0.028483580797911],[-0.16444310545921,0.1617973446846,-0.017865639179945]],[[0.0057143582962453,0.23716653883457,-0.11227031797171],[-0.057298149913549,-0.049884397536516,-0.14446341991425],[-0.051220275461674,0.1218291670084,-0.12426899373531]],[[-0.05792835354805,-0.088316582143307,-0.050380934029818],[-0.011874692514539,-0.072388723492622,0.09426848590374],[0.23561495542526,0.041715513914824,-0.12642732262611]],[[0.13278830051422,0.0059391381219029,0.067215994000435],[0.026808455586433,0.10772062093019,0.10133488476276],[0.062699899077415,-0.20053227245808,-0.096817091107368]],[[-0.080638326704502,-0.017799098044634,0.035522170364857],[-0.18677206337452,0.096285663545132,-0.087685950100422],[-0.13007600605488,0.091713927686214,-0.18869170546532]],[[-0.0025637461803854,0.04347862303257,0.08693453669548],[-0.0048797139897943,0.024559695273638,-0.034127872437239],[-0.055962529033422,0.017782436683774,0.062202125787735]],[[-0.073976203799248,-0.00084605952724814,0.0051135765388608],[0.14133349061012,-0.074394635856152,0.019987564533949],[0.11388060450554,-0.078911826014519,0.088589519262314]],[[-0.031636252999306,0.1060229241848,-0.067230112850666],[0.046290371567011,0.064241446554661,0.009858719073236],[0.13584335148335,0.15635532140732,-0.036095976829529]],[[0.051686581224203,0.027790982276201,0.069691076874733],[0.12950211763382,-0.039362139999866,0.0013593058101833],[0.073684319853783,-0.076123960316181,0.047922417521477]],[[0.08117289096117,-0.021832294762135,-0.021642759442329],[0.272365629673,-0.081515602767467,-0.12824177742004],[0.12202499806881,0.041445884853601,-0.021505482494831]],[[-0.0050514419563115,-0.25028783082962,0.045460760593414],[-0.11347879469395,0.11772628873587,-0.031746346503496],[0.1004985421896,0.24566739797592,-0.011011213995516]],[[0.0083968015387654,-0.11394190788269,0.013731930404902],[0.0049942587502301,-0.044131428003311,-0.023321710526943],[-0.042791038751602,-0.10628338158131,-0.13960537314415]],[[-0.052546419203281,-0.065487094223499,0.058556418865919],[-0.0093949772417545,-0.081198252737522,0.0037049162201583],[0.049948193132877,-0.018857268616557,-0.06016605719924]],[[0.13513995707035,-0.13244257867336,0.039264321327209],[0.047572005540133,0.011210055090487,0.11023903638124],[0.040097512304783,0.0086480835452676,-0.00053240009583533]],[[-0.044976200908422,-0.076757222414017,-0.053613517433405],[-0.030611475929618,-0.013373988680542,0.0062012090347707],[0.17743688821793,-0.090852320194244,-0.064938105642796]],[[-0.015033455565572,0.084538519382477,-0.06403574347496],[-0.1197402626276,-0.051307421177626,0.07945205271244],[-0.025494845584035,-0.079067818820477,-0.038578752428293]],[[0.12384732067585,-0.040087983012199,0.13764014840126],[0.0051272306591272,-0.16906666755676,0.091708436608315],[0.097605749964714,-0.065287172794342,0.19317376613617]],[[0.13195791840553,-0.17702274024487,0.12049809098244],[-0.07420651614666,-0.15257349610329,0.002293495927006],[0.041363839060068,-0.098093926906586,-0.07166438549757]],[[-0.053931936621666,0.031076785176992,-0.18199224770069],[-0.0079101584851742,0.10617154091597,-0.019039981067181],[-0.14634871482849,0.10187435150146,-0.017213195562363]],[[-0.093901082873344,-0.07926943898201,0.17615488171577],[0.04690195992589,-0.06566708534956,0.011717721819878],[0.12175389379263,-0.030691588297486,-0.028627457097173]],[[0.039984136819839,0.017821803689003,-0.037720214575529],[-0.023664956912398,-0.069430507719517,0.010506198741496],[0.093878865242004,0.015646340325475,-0.013700231909752]],[[-0.1308308839798,0.053883586078882,-0.07307992130518],[-0.16304297745228,0.011350962333381,-0.01238470338285],[-0.098597548902035,-0.0022931115236133,-0.069640070199966]],[[-0.027781710028648,0.095040060579777,-0.032188843935728],[0.0084509253501892,-0.049109235405922,0.1454176902771],[-0.030864058062434,-0.055550195276737,-0.0095382435247302]],[[-0.1203745380044,-0.12060360610485,-0.030694769695401],[-0.0091532440856099,0.048287056386471,0.08788526058197],[-0.0062024253420532,-0.08202189207077,-0.1131304576993]],[[0.055365443229675,-0.0075561045669019,-0.051685858517885],[0.019316840916872,-0.032348211854696,-0.054523788392544],[-0.012772087939084,-0.012689559720457,0.13615715503693]],[[-0.063756078481674,0.029644092544913,-0.057079579681158],[0.068533316254616,-0.029596280306578,-0.04369930177927],[0.17186395823956,-0.049462754279375,-0.020341290161014]],[[0.23617899417877,-0.11014177650213,0.14938589930534],[0.04946307092905,-0.099949777126312,0.14549519121647],[-0.12914703786373,-0.045867901295424,-0.016440495848656]],[[0.13847327232361,0.0678915604949,-0.14828936755657],[-0.014231337234378,-0.017602322623134,-0.077375739812851],[-0.0093438168987632,0.10188430547714,0.077360533177853]],[[-0.02247947268188,-0.013495704159141,0.035893619060516],[-0.072252623736858,0.056108728051186,0.069229058921337],[0.032122604548931,-0.11693142354488,0.026098154485226]],[[-0.030952455475926,0.00064818607643247,-0.090992480516434],[0.0013148006983101,0.024525141343474,0.011015384458005],[0.027600800618529,-0.022917417809367,0.045026294887066]],[[0.12715265154839,0.067696250975132,-0.040027145296335],[-0.028046950697899,-0.093565069139004,-0.093493930995464],[-0.055846054106951,0.05986899882555,0.021914426237345]],[[0.030257185921073,-0.040150489658117,-0.036296185106039],[-0.058667872101068,-0.097305990755558,0.033641222864389],[0.075093604624271,-0.074041575193405,0.0093758972361684]],[[0.033885203301907,-0.048465181142092,0.10692770779133],[-0.046444516628981,-0.095141932368279,-0.060535684227943],[-0.0036409227177501,-0.050592720508575,-0.10053574293852]],[[0.0026435651816428,-0.043709099292755,0.11400743573904],[-0.051099140197039,-0.044421073049307,0.10246673226357],[-0.070574134588242,-0.081949710845947,0.13123877346516]],[[-0.031843766570091,-0.19452479481697,-0.021396761760116],[0.073984615504742,0.11563357710838,-0.063410468399525],[-0.0072921281680465,0.00036116520641372,0.093961365520954]],[[0.00018457390251569,-0.093310035765171,0.13517944514751],[0.016425972804427,-0.021018767729402,-0.05479308962822],[-0.089046366512775,0.12992414832115,0.050759434700012]],[[-0.18518902361393,0.068995229899883,-0.10362084209919],[-0.026352103799582,0.091191001236439,-0.19843871891499],[0.18156526982784,-0.035509318113327,-0.10975047200918]],[[0.010881781578064,0.028419842943549,-0.002440897282213],[-0.085774287581444,-0.054686363786459,-0.0062860134057701],[0.073458679020405,0.076620638370514,-0.060585271567106]],[[-0.06670006364584,-0.035734370350838,-0.06744209676981],[0.017499569803476,-0.014354024082422,-0.082802981138229],[-0.0042319069616497,0.028475876897573,-0.12542697787285]],[[0.091693453490734,0.077733613550663,-0.14328315854073],[0.001365264877677,-0.062951914966106,0.013849915005267],[-0.087885484099388,0.0062198154628277,-0.00099795195274055]],[[-0.19945411384106,-0.1083360016346,-0.14126278460026],[-0.1686886548996,0.054774932563305,-0.026406532153487],[-0.014975170604885,0.076195001602173,0.16622485220432]],[[-0.030705632641912,0.23136211931705,-0.018672941252589],[0.025205779820681,0.055867277085781,-0.018043866381049],[0.05711006373167,0.10741685330868,0.17143154144287]],[[-0.069611385464668,0.085308402776718,-0.08549278229475],[-0.08281671255827,0.094445660710335,0.027819707989693],[-0.082429252564907,0.052373316138983,0.079709634184837]],[[-0.10867290198803,0.018678098917007,-0.041440464556217],[-0.036410104483366,-0.079425625503063,-0.068292997777462],[-0.098044879734516,-0.10707734525204,-0.077371560037136]],[[0.038175649940968,0.0011491065379232,-0.079782724380493],[0.0022902076598257,-0.07491172850132,0.063768409192562],[-0.044338915497065,-0.051719952374697,0.13131977617741]],[[-0.044293478131294,0.056522488594055,0.15532459318638],[-0.062813811004162,-0.06837172806263,0.18747314810753],[-0.10738155245781,-0.12208411097527,0.26285970211029]],[[-0.026257371529937,-0.039656531065702,-0.060352481901646],[0.021407641470432,-0.042923420667648,-0.1738533526659],[0.1070522069931,-0.075092732906342,-0.29131808876991]],[[-0.080659419298172,-0.088532358407974,0.055982653051615],[-0.11773185431957,-0.024492660537362,0.0096833975985646],[-0.13093957304955,-0.063311763107777,0.094450540840626]],[[-0.16915847361088,-0.063928604125977,0.052193135023117],[-0.051339358091354,-0.049433186650276,-0.080835089087486],[-0.062700092792511,-0.054611776024103,-0.084289878606796]],[[0.24883413314819,-0.14026619493961,-0.05180037021637],[0.29506549239159,0.096749767661095,0.00040042051114142],[0.087731584906578,0.13513197004795,0.11737763881683]],[[-0.23413528501987,0.12820264697075,-0.020230112597346],[-0.073711521923542,-0.089918702840805,0.025225916877389],[-0.065812416374683,0.051990143954754,-0.021510567516088]],[[-0.12979951500893,-0.0054779620841146,0.048854522407055],[0.094600558280945,-0.023195525631309,-0.027390221133828],[0.18069125711918,-0.0020332220010459,0.049157753586769]],[[0.0067849732004106,0.0019806488417089,-0.060557812452316],[0.042087815701962,-0.021696988493204,-0.13191814720631],[0.0054158023558557,0.073920041322708,-0.029103657230735]],[[-0.11604599654675,-0.01625282689929,-0.20492660999298],[-0.18286070227623,-0.11171787977219,-0.14220829308033],[-0.10012289881706,0.092299297451973,-0.054650489240885]],[[0.062191244214773,0.0062167453579605,0.013110657222569],[0.012726744636893,-0.0034588074777275,-0.0178102850914],[0.035373110324144,-0.0089878076687455,-0.10790440440178]],[[0.13248720765114,-0.086531847715378,-0.10848469287157],[-0.045707680284977,-0.10038318485022,0.0468884781003],[0.11829520016909,0.047407608479261,0.050172466784716]],[[-0.057743914425373,0.010042135603726,0.0048853377811611],[-0.020415784791112,0.041559867560863,0.0024200491607189],[-0.071217149496078,0.071018658578396,0.0051923273131251]],[[-0.21912364661694,-0.02627382799983,0.10366550087929],[-0.16322292387486,0.050933234393597,0.022115215659142],[0.11813698709011,-0.00075681821908802,0.031377013772726]],[[0.05062098056078,0.058181643486023,-0.02974428422749],[-0.13012246787548,-0.0541259534657,-0.13106751441956],[-0.072391301393509,0.049788895994425,-0.11702835559845]],[[-0.050235815346241,0.063809938728809,-0.013827625662088],[-0.043681185692549,0.016186384484172,0.085000872612],[-0.14135475456715,-0.10534643381834,0.053134821355343]],[[0.14299689233303,0.11287190765142,0.033964395523071],[0.042550779879093,-0.030156034976244,0.023690551519394],[-0.069856204092503,-0.0069511500187218,0.023253438994288]],[[0.031451009213924,0.10518649965525,-0.065873689949512],[0.06648438423872,0.022593110799789,-0.025444693863392],[-0.091856576502323,-0.041502855718136,0.033246822655201]],[[0.1324070841074,0.071492180228233,0.032434053719044],[-0.020628603175282,0.10665493458509,-0.021072797477245],[0.0091381706297398,-0.00969925429672,-0.040795706212521]],[[0.10763511806726,0.052024327218533,-0.05241771414876],[-0.0061915009282529,-0.10914514958858,-0.15295319259167],[-0.058592312037945,0.061206005513668,-0.063224226236343]],[[-0.0037086666561663,0.018483214080334,0.034271314740181],[0.027970440685749,-0.01591769978404,-0.11709978431463],[-0.052049394696951,-0.058501772582531,0.052543312311172]],[[0.038860313594341,-0.052145939320326,-0.035668898373842],[-0.065343342721462,-0.03811302781105,-0.0388018861413],[-0.12854345142841,-0.13037748634815,0.019486067816615]],[[-0.092538096010685,0.071569338440895,-0.051211219280958],[0.030131397768855,0.1737320125103,0.052217841148376],[-0.11349855363369,0.14771336317062,0.079747065901756]],[[0.0071975607424974,0.093800649046898,0.034447055310011],[0.092817798256874,0.012068748474121,0.08376782387495],[0.036784663796425,-0.088188543915749,0.24893879890442]],[[-0.11372535675764,-0.017322044819593,0.029206659644842],[0.12774401903152,-0.015927333384752,-0.0044275047257543],[0.11778485029936,0.011782554909587,-0.047792118042707]],[[-0.045663621276617,0.029034618288279,0.091876901686192],[-0.12697668373585,-0.027538103982806,-0.025446567684412],[-0.14655059576035,-0.1347324848175,-0.12439412623644]],[[0.031031535938382,-0.018029665574431,0.017099723219872],[-0.031275674700737,0.037927556782961,-0.074693061411381],[-0.045071493834257,0.18424156308174,-0.063266433775425]],[[-0.097225748002529,0.094610035419464,-0.077928990125656],[0.038420345634222,0.025901388376951,-0.050322841852903],[-0.0817985907197,-0.088978618383408,0.093569040298462]],[[0.020524466410279,0.11306198686361,-0.057052686810493],[0.1159925237298,-0.034961428493261,0.10802331566811],[0.03485756739974,-0.057143699377775,0.017886184155941]],[[0.084825910627842,-0.0071266847662628,0.11265633255243],[0.096233278512955,-0.13188913464546,0.0082082850858569],[0.025779375806451,0.013971918262541,-0.088463917374611]],[[-0.018661700189114,0.098995625972748,-0.035986445844173],[-0.060124672949314,-0.15006290376186,0.068408221006393],[-0.02434903383255,-0.1072094887495,0.014063501730561]],[[-0.14225108921528,0.016492029651999,0.039809085428715],[-0.021466931328177,0.023584323003888,0.086273744702339],[0.01386583596468,0.0096273859962821,0.13252291083336]],[[0.096914984285831,-0.012671728618443,-0.12901145219803],[-0.043968349695206,-0.19782242178917,-0.077117517590523],[0.32043471932411,-0.12881655991077,0.078987762331963]],[[0.061006762087345,0.029246121644974,0.12386360019445],[0.027525838464499,-0.078315213322639,-0.085025101900101],[-0.03648853674531,-0.083148270845413,0.043221402913332]],[[0.035341985523701,0.16556620597839,-0.018537634983659],[0.002510339487344,-0.010003483854234,-0.030293986201286],[-0.081523433327675,0.010937033221126,0.025563731789589]],[[-0.027199087664485,0.052603740245104,-0.078957945108414],[-0.048982683569193,0.0067063770256937,0.0113086393103],[-0.053484715521336,0.083515480160713,-0.0025537291076034]],[[-0.034218244254589,-0.048395313322544,-0.055632174015045],[-0.036864943802357,-0.013986066915095,0.0060853781178594],[0.095444604754448,-0.050153713673353,0.027392346411943]],[[-0.070971518754959,-0.081326454877853,-0.13632752001286],[-0.04223931953311,-0.006266113370657,0.078028775751591],[-0.049625337123871,-0.027813151478767,-0.20169320702553]],[[0.029178149998188,-0.064047999680042,-0.068371713161469],[0.044261157512665,-0.072128929197788,-0.035304594784975],[0.053679548203945,0.046699248254299,-0.0012242218945175]],[[-0.11196514964104,-0.010813728906214,-0.019969910383224],[-0.20779071748257,0.048418860882521,0.053960278630257],[-0.070095755159855,0.079355508089066,0.043196968734264]],[[0.019149765372276,0.054486259818077,-0.081149563193321],[-0.091387987136841,0.15446946024895,-0.035100821405649],[0.034704461693764,0.037319146096706,0.11809495091438]],[[0.10237024724483,-0.012370550073683,0.032264843583107],[0.19103041291237,0.00121389713604,0.16844525933266],[0.023085337132215,-0.12792198359966,0.059715025126934]],[[0.18478953838348,-0.027588743716478,-0.13646887242794],[-0.012178260833025,-0.046794936060905,-0.096302427351475],[-0.02595636062324,-0.074904687702656,-0.11470916867256]],[[0.058326471596956,-0.042622853070498,-0.064077228307724],[-0.0077554597519338,-0.082421436905861,0.1120777130127],[0.041419301182032,0.01298750936985,-0.046898823231459]],[[-0.25425711274147,0.0077287163585424,-0.012983328662813],[-0.081256411969662,-0.022508623078465,0.03578058630228],[-0.037190176546574,0.021591976284981,0.079881906509399]],[[-0.089576907455921,0.018317809328437,-0.04045931622386],[-0.020353032276034,-0.22491264343262,0.025778044015169],[0.064031220972538,0.1191124022007,-0.14335416257381]],[[-0.068274691700935,0.017231164500117,-0.050900731235743],[-0.014028871431947,-0.034377407282591,-0.10383585095406],[-0.15346585214138,0.14743067324162,-0.029121626168489]],[[0.0025239656679332,-0.047270279377699,-0.0033820930402726],[-0.077811628580093,-0.092450015246868,-0.0084671285003424],[0.041966408491135,0.039252266287804,0.1613842099905]],[[0.056715067476034,-0.034354016184807,0.11264153569937],[-0.074738837778568,0.031575381755829,0.06301661580801],[-0.14746740460396,-0.062255788594484,0.07082349807024]],[[-0.051098987460136,0.061364773660898,-0.020637542009354],[0.054156299680471,-0.023680958896875,0.032024651765823],[0.14884892106056,-0.043427780270576,-0.0068806819617748]],[[0.017422160133719,0.06667909771204,-0.10420173406601],[0.10754766315222,-0.0080691538751125,-0.067520596086979],[0.078589409589767,0.03215267136693,0.074691064655781]],[[-0.037525404244661,-0.036876063793898,-0.0075146425515413],[0.028269868344069,-0.067515909671783,-0.035597838461399],[0.0020869567524642,0.24451580643654,-0.065393164753914]],[[-0.080723389983177,-0.042774669826031,-0.019467679783702],[0.012750967405736,-0.14901581406593,-0.013925242237747],[0.033593874424696,-0.059164728969336,0.011348511092365]],[[0.020462559536099,-0.043305024504662,0.027634542435408],[-0.12332437932491,0.030558988451958,0.14093886315823],[0.07906748354435,-0.0838987454772,0.087127916514874]],[[0.063875429332256,-0.089386269450188,-0.11885799467564],[0.10250498354435,0.036026600748301,-0.028216561302543],[0.11401608586311,0.015510003082454,0.05997509136796]],[[0.0037038724403828,-0.085624672472477,0.13221578299999],[0.012188347987831,-0.07518658041954,-0.031372420489788],[-0.028766157105565,-0.1051674708724,-0.0089112985879183]],[[0.07584185898304,0.069014899432659,-0.12751334905624],[0.094229362905025,0.080094091594219,-0.043953705579042],[0.074698403477669,0.022848231717944,-0.040008414536715]],[[-0.10869724303484,-0.12513689696789,-0.17076307535172],[-0.1316582262516,0.052272368222475,0.10177873075008],[-0.0044127460569143,0.08529456704855,-0.11344723403454]],[[0.07527806609869,0.001577160670422,-0.078908957540989],[-0.19638286530972,-0.076920263469219,0.041049145162106],[-0.001725105335936,0.11396262049675,0.022502077743411]],[[-0.0055139884352684,0.088066503405571,0.076210238039494],[0.0015954406699166,0.024670720100403,-0.072562597692013],[0.10263155400753,0.059148192405701,-0.12153911590576]],[[-0.10453372448683,-0.046716779470444,-0.10210484266281],[0.047387011349201,-0.049746282398701,-0.14576935768127],[-0.047176327556372,0.027438780292869,-0.13513186573982]],[[-0.090382307767868,-0.0074834157712758,0.019468622282147],[-0.083585225045681,-0.013916390016675,0.038995020091534],[-0.00037600443465635,0.054872654378414,0.046360205858946]],[[-0.16319419443607,0.084094844758511,-0.019410684704781],[-0.074556812644005,-0.038969613611698,0.056270398199558],[-0.018376331776381,0.0012697118800133,-0.050433084368706]],[[-0.075936414301395,-0.012830237857997,0.024731097742915],[-0.0033128743525594,0.028674503788352,-0.038680505007505],[-0.019976871088147,-0.084998771548271,-0.085954315960407]],[[-0.13312982022762,0.011357496492565,-0.071388378739357],[-0.07156852632761,-0.090411305427551,-0.070275135338306],[0.18228954076767,-0.090181604027748,0.05073744058609]],[[0.044979207217693,0.018752155825496,0.018736151978374],[-0.057093150913715,-0.028590502217412,-0.053489077836275],[0.099516607820988,0.052573844790459,-0.041902601718903]],[[0.029952531680465,0.017137804999948,-0.069152124226093],[0.09539882093668,-0.10462525486946,-0.035019028931856],[0.012149480171502,-0.046539146453142,-0.077515468001366]],[[0.077071510255337,-0.037904065102339,0.11748333275318],[-0.14509189128876,-0.017018847167492,0.070090942084789],[-0.099461674690247,0.035906303673983,-0.054845135658979]],[[0.048585392534733,-0.14036065340042,0.079132668673992],[0.11213967204094,-0.28497484326363,0.053459543734789],[0.15007668733597,-0.10913059860468,0.038005758076906]],[[0.064724586904049,0.069082252681255,-0.060596011579037],[-0.18727758526802,0.1550714969635,-0.14127534627914],[-0.22925998270512,0.22587977349758,0.025285895913839]]],[[[-0.048563946038485,-0.00040737300878391,0.017543196678162],[-0.022505283355713,-0.01292075868696,0.018349274992943],[-0.0085652954876423,0.0089605525135994,-0.047841992229223]],[[-0.022568060085177,0.082880288362503,-0.017803521826863],[0.0087546929717064,-0.033526197075844,-0.10920109599829],[-0.0077360924333334,-0.015879204496741,-0.021279703825712]],[[0.037387676537037,-0.0054777655750513,-0.033920928835869],[0.0035846019163728,0.0019733151420951,0.04667429253459],[0.024811629205942,-0.066731758415699,0.076531946659088]],[[-0.0018755228957161,-0.081272795796394,-0.041398636996746],[0.0062478133477271,-0.0038617004174739,0.025044361129403],[0.0020042760297656,-0.032573275268078,0.017822505906224]],[[-0.034956879913807,0.0091234836727381,0.02541839890182],[-0.037540957331657,-0.092594988644123,0.045775435864925],[-0.076113097369671,-0.043277580291033,-0.013661291450262]],[[0.011105625890195,0.047202572226524,0.056082855910063],[-0.034269418567419,0.046853218227625,-0.0050889677368104],[-0.051148183643818,0.031764309853315,0.020563093945384]],[[0.022720739245415,0.042988650500774,0.10576463490725],[0.0071464008651674,0.014297702349722,-0.028879081830382],[-0.12399309128523,0.020377384498715,-0.010809208266437]],[[-0.0036808913573623,0.016003793105483,0.041482031345367],[-0.014732777141035,-0.011967982165515,-0.018721716478467],[-0.038649756461382,-0.024861048907042,-0.093678817152977]],[[0.0603445507586,-0.051803667098284,0.06293547898531],[0.0094025023281574,-0.026416599750519,0.026249308139086],[-0.053523220121861,-0.036230783909559,-0.02259680069983]],[[-0.0026586032472551,-0.036868825554848,-0.095899060368538],[-0.0085909068584442,0.0035823180805892,-0.09449727833271],[-0.023917680606246,-0.072543933987617,-0.013132870197296]],[[0.0084728188812733,-0.030588246881962,-0.024500571191311],[0.012862089090049,-0.038315884768963,0.098404370248318],[0.025105237960815,-0.015187089331448,0.018318751826882]],[[-0.017633145675063,0.028295908123255,-0.0076087131164968],[-0.15048556029797,-0.071542091667652,0.032521728426218],[0.040838342159986,-0.014964481815696,0.018075287342072]],[[0.014040530659258,-0.037885904312134,-0.078350774943829],[0.011410218663514,0.012481272220612,-0.018859345465899],[-0.028155410662293,0.075939416885376,0.053351406008005]],[[-0.027276072651148,0.070008896291256,0.038401115685701],[0.034418635070324,0.056021817028522,0.024184890091419],[0.039636678993702,0.034279353916645,0.01068314537406]],[[-0.023953793570399,0.039800353348255,0.022022565826774],[0.092284314334393,-0.024101763963699,-0.011557047255337],[0.028312522917986,0.018496921285987,-0.088740386068821]],[[-0.07898060977459,-0.060936506837606,-0.038162764161825],[0.074118159711361,-0.047838397324085,0.00072419934440404],[-0.029329784214497,-0.0024149715900421,-0.050780292600393]],[[0.086133264005184,-0.060645986348391,-0.037321016192436],[0.015305436216295,0.036893874406815,-0.031082091853023],[0.071685187518597,0.064104825258255,-0.022328900173306]],[[0.028082817792892,0.0079502174630761,0.035442311316729],[-0.046800378710032,0.019051972776651,0.024798793718219],[-0.030723914504051,-0.063334695994854,-0.0020392565056682]],[[-0.025941856205463,0.013214828446507,-0.019613582640886],[-0.014332831837237,0.011322619393468,0.18899729847908],[-0.018289148807526,-0.041926108300686,0.034834399819374]],[[0.0091241709887981,-0.0033038987312466,-0.02942568063736],[0.050599347800016,0.00037652446189895,-0.047987852245569],[0.028494067490101,0.008281690068543,-0.011851035058498]],[[-0.076578184962273,-0.016262045130134,0.019959464669228],[-0.070195950567722,-0.061058651655912,-0.010810443200171],[-0.07282305508852,-0.036971785128117,-0.051403440535069]],[[-0.073120944201946,0.071107961237431,-0.055370386689901],[0.062552429735661,-0.088492646813393,0.0041002072393894],[-0.035230908542871,-0.024193497374654,-0.032811310142279]],[[-0.07166413217783,-0.026177171617746,0.0030070734210312],[0.025203756988049,-0.016529472544789,0.055228788405657],[0.02973117865622,0.013956201262772,-0.0029255179688334]],[[0.0086390627548099,-0.025798233225942,-0.010055359452963],[0.043111644685268,-0.031529143452644,-0.068031623959541],[-0.0083914315328002,0.0023833450395614,5.0540736992843e-05]],[[0.075654402375221,0.072879180312157,-0.038155410438776],[-0.010911664925516,0.02256029099226,-0.053943984210491],[-0.019132098183036,-0.064945191144943,-0.012178014032543]],[[0.032408330589533,-0.029286621138453,0.045174725353718],[0.0091543085873127,-0.025177890434861,-0.015831483528018],[-0.055605988949537,0.027206743136048,0.026466181501746]],[[0.063962139189243,0.048168018460274,0.1184272095561],[0.00611273618415,-0.058322452008724,0.16413700580597],[0.038067273795605,0.052065100520849,0.051630917936563]],[[-0.07815158367157,0.016980789601803,0.029794553294778],[0.075048424303532,0.017637323588133,0.040342837572098],[0.064323849976063,0.06019139289856,-0.020137555897236]],[[0.048823185265064,-0.010701076127589,-0.047485765069723],[-0.049186814576387,-0.015339805744588,0.0026379853952676],[0.05244380608201,0.036738030612469,-0.089346922934055]],[[-0.024781418964267,0.051579520106316,-0.011521722190082],[0.041690923273563,-0.00033722858643159,-0.048176761716604],[-0.030160292983055,-0.035110622644424,-0.027110168710351]],[[0.03350842744112,0.027241617441177,-0.060265183448792],[-0.012523670680821,0.051332265138626,-0.047067053616047],[0.010600234381855,-0.0059699187986553,-0.031481049954891]],[[-0.0041362224146724,0.092144928872585,-0.028104338794947],[0.061804257333279,0.10917802155018,0.079069443047047],[-0.075443401932716,0.040639780461788,-0.0023652422241867]],[[-0.047962293028831,0.046104118227959,-0.019277745857835],[0.062281653285027,-0.01256494410336,-0.021496208384633],[-0.037983015179634,-0.058669440448284,0.012709651142359]],[[-0.01748320646584,0.040302317589521,-0.014556851238012],[-0.102125197649,0.0079905446618795,-0.067848704755306],[-0.050183422863483,0.071188300848007,0.046628557145596]],[[-0.052957370877266,0.035464726388454,0.043581984937191],[-0.0034527017269284,-0.014755317941308,-0.034024283289909],[0.031400382518768,-0.0012617827160284,0.0051581296138465]],[[0.08560723811388,-0.098884977400303,0.10558240115643],[0.071380712091923,-0.051381606608629,-0.0069334502331913],[0.093519300222397,-0.048523243516684,-0.061146520078182]],[[-0.037275813519955,-0.049022614955902,0.019520154222846],[-0.035124201327562,0.0043719247914851,0.01646232418716],[-0.013011907227337,-0.077667571604252,-0.013621591962874]],[[0.017623733729124,-0.064266838133335,0.030400147661567],[0.029641637578607,-0.018950143828988,-0.015717076137662],[0.025643339380622,-0.070099964737892,-0.012605632655323]],[[0.0040255091153085,-0.029952220618725,0.054481040686369],[-0.0053352792747319,-0.08641329407692,-0.033981826156378],[0.034779991954565,0.072753474116325,0.029933849349618]],[[0.02231608889997,0.0005055115907453,0.073857247829437],[0.054526690393686,-0.066741533577442,-0.014592639170587],[0.022297380492091,0.021402418613434,0.005370260681957]],[[-0.028238952159882,0.00010326956544304,-0.041247349232435],[-0.043131411075592,-0.045242886990309,0.020902698859572],[-0.047531213611364,0.0171486325562,-0.0047304974868894]],[[-0.010825244709849,0.031440433114767,0.046056311577559],[0.0068107270635664,0.032884545624256,-0.03142362087965],[-0.050170950591564,0.039428662508726,0.045190446078777]],[[-0.025795998051763,0.0065360255539417,-0.053530383855104],[0.0090119289234281,-0.0034783685114235,0.00051297625759616],[0.044874619692564,0.086116217076778,0.005599566269666]],[[0.095703028142452,0.11369297653437,0.032409157603979],[-0.047526571899652,0.051095351576805,-0.035649165511131],[0.059196073561907,-0.03812150657177,-0.02266520448029]],[[-0.036775354295969,-0.015627890825272,0.00013139429211151],[0.040628880262375,-0.021128376945853,0.089531593024731],[0.029705593362451,0.013956074602902,-0.00023716820578557]],[[0.1048875451088,-0.030582243576646,0.080449365079403],[0.011822774074972,-0.022051509469748,-0.00056898000184447],[0.081521607935429,0.041546430438757,0.10189171880484]],[[-0.0011188247008249,-0.017041331157088,0.077439956367016],[0.0066452152095735,0.017961034551263,-0.096744149923325],[-0.038813754916191,-0.0068012103438377,-0.030438117682934]],[[-0.002503021620214,-0.061923049390316,-0.04404878988862],[0.0027373805642128,0.019756752997637,-0.041923966258764],[-0.0066179041750729,-0.04536871239543,-0.03857109695673]],[[0.021206364035606,0.094998955726624,-0.034590408205986],[0.030479148030281,0.0010126922279596,-0.031923457980156],[-0.024230238050222,-0.0091770505532622,0.001391626894474]],[[2.7352343749953e-05,0.087538033723831,0.10903485864401],[-0.038034614175558,-0.015543601475656,-0.074622087180614],[0.059641513973475,-0.0010844168718904,-0.0025970845017582]],[[-0.059738703072071,-0.015469401143491,-0.081292450428009],[-0.004248125012964,-0.048250284045935,0.031546872109175],[0.037599954754114,-0.067231312394142,0.071294203400612]],[[-0.042125165462494,0.0031207306310534,-0.11402097344398],[0.0017069361638278,0.002247529104352,0.025434700772166],[0.010390582494438,0.012394499033689,0.082242786884308]],[[-0.0099099632352591,-0.020999869331717,-0.032602444291115],[-0.055830299854279,-0.0014321645721793,-0.080065846443176],[-0.019506299868226,0.014054241590202,-0.088537581264973]],[[-0.03721609339118,0.043092589825392,0.019459299743176],[0.10843624174595,-0.049339421093464,0.062875211238861],[-0.099458105862141,0.095077216625214,0.034878846257925]],[[0.027719335630536,-0.0035015081521124,0.023405371233821],[-0.059173379093409,-0.011976064182818,-0.031834833323956],[-0.012398635968566,-0.05661354586482,0.01549079734832]],[[-0.0044862306676805,0.033958926796913,-0.0016416214639321],[0.015503766946495,-0.00064805790316314,-0.02025075443089],[-0.028226995840669,0.015014540404081,-0.069690719246864]],[[-0.016745759174228,0.045983646064997,0.024663811549544],[-0.014527702704072,-0.046789955347776,0.027991840615869],[0.080184899270535,0.059339318424463,-0.033748280256987]],[[-0.0038127196021378,-0.065559811890125,-0.08025449514389],[0.13156694173813,-0.019027899950743,-0.025185313075781],[0.059481296688318,-0.071278430521488,0.047277774661779]],[[0.027942132204771,0.10840881615877,0.04018772393465],[-0.039652165025473,0.040446430444717,0.045141767710447],[-0.06633336097002,-0.049866959452629,-0.036881726235151]],[[0.077070809900761,-0.022847400978208,-0.057619452476501],[0.069685623049736,0.065001361072063,-0.030260285362601],[0.032741811126471,-0.012916431762278,-0.09019610285759]],[[0.024192029610276,0.032899957150221,-0.051025159657001],[0.018881117925048,-0.036990813910961,0.048349622637033],[-0.046568989753723,-0.030901342630386,0.02022516541183]],[[0.043248195201159,0.079419076442719,0.070470415055752],[0.065875671803951,0.068963296711445,0.009367685765028],[-0.042630847543478,0.01926845125854,-0.084118656814098]],[[-0.043974243104458,0.011648872867227,-0.027753915637732],[-0.032536573708057,0.085662297904491,-0.046512093394995],[0.0095134787261486,0.1148996129632,-0.02604410238564]],[[-0.093878529965878,0.016881676390767,0.099766910076141],[-0.052728671580553,0.0005576663534157,-0.020296281203628],[-0.035146698355675,-0.0067854071967304,-0.083045937120914]],[[0.0044391136616468,0.042285647243261,-0.017102520912886],[0.0070645832456648,0.0097900573164225,0.034126117825508],[0.0041708680801094,0.018495183438063,-0.032478287816048]],[[-0.041945658624172,-0.075850315392017,0.069293990731239],[-0.0084059545770288,0.074472233653069,0.087460555136204],[-0.029606822878122,0.039646901190281,0.049060814082623]],[[-0.069561079144478,-0.02058088965714,-0.038568697869778],[-0.035472769290209,-0.027192041277885,-0.060743164271116],[-0.056750848889351,0.049280345439911,-0.068724475800991]],[[0.038964934647083,0.039631135761738,0.01514910813421],[0.026419930160046,0.029167670756578,-0.07630555331707],[-0.051975943148136,-0.039492961019278,-0.018072590231895]],[[0.045463904738426,0.10247980803251,-0.014593904837966],[0.024424528703094,-0.020303206518292,0.0350521504879],[0.049767341464758,0.029235143214464,0.021325409412384]],[[0.011969580315053,-0.047950070351362,0.041938975453377],[0.0053757587447762,0.00066285365028307,0.11743980646133],[-0.04746463149786,-0.005059365183115,-0.1403688788414]],[[0.04598730802536,-0.010528897866607,0.034272886812687],[0.084805645048618,-0.013046211563051,0.024708101525903],[0.041768599301577,-0.073649756610394,0.017581108957529]],[[0.0082431538030505,-0.027702104300261,0.007606256287545],[-0.003718440188095,-0.026506161317229,-0.013144421391189],[0.017746564000845,-0.082034967839718,0.021152537316084]],[[0.078553050756454,0.020363986492157,-0.11856234073639],[0.023652559146285,-0.043488714843988,0.0068838088773191],[0.038295701146126,0.050186205655336,0.010922061279416]],[[0.044087897986174,-0.019148848950863,-0.011352685280144],[-0.042644277215004,0.018450450152159,0.049349885433912],[-0.073299594223499,0.096812546253204,-0.014985539019108]],[[0.0020995347294956,-0.017225105315447,0.071125641465187],[0.11939241737127,0.13131847977638,-0.014091949909925],[-0.048207640647888,0.0004792453837581,0.1241347938776]],[[-0.0063902577385306,-0.044841155409813,-0.055636875331402],[-0.080731481313705,-0.0041436813771725,0.012140969745815],[-0.07708552479744,-0.045377988368273,-0.067546181380749]],[[-0.033412728458643,-0.028206756338477,0.059182967990637],[-0.030428234487772,0.038104724138975,0.040186677128077],[-0.0039184596389532,-0.0043799402192235,0.0072927009314299]],[[-0.049363147467375,0.016613012179732,0.036047972738743],[-0.082691095769405,-0.09965643286705,0.11045881360769],[-0.064361125230789,-0.053722783923149,-0.0037043390329927]],[[-0.011276317760348,-0.037168923765421,-0.022581219673157],[-0.033039189875126,0.022751508280635,0.020312754437327],[-0.11609885841608,-0.069703169167042,-0.07069505751133]],[[0.0083301560953259,-0.059935562312603,-0.061941232532263],[0.071248359978199,0.0050529497675598,0.0023479438386858],[0.014658008702099,0.14536018669605,0.064533807337284]],[[0.092740759253502,-0.035949483513832,-0.0093358336016536],[-0.09563148021698,-0.075929343700409,0.0065836007706821],[-0.012565736658871,0.006780865136534,0.035772528499365]],[[0.063859425485134,-0.075275748968124,0.072065569460392],[0.0014215456321836,-0.016025079414248,0.070272020995617],[-0.0063633448444307,-0.035026643425226,0.005396424792707]],[[0.02796595543623,0.0070705516263843,-0.0026652810629457],[0.011617933399975,-0.011259341612458,0.084721855819225],[-0.15152567625046,-0.012240773066878,-0.040389858186245]],[[-0.039228145033121,0.013784727081656,0.006483506411314],[0.017185971140862,0.058444168418646,-0.036862034350634],[-0.13171164691448,0.033977214246988,-0.042806562036276]],[[-0.023538496345282,-0.02989598736167,0.0040231286548078],[-0.047741763293743,0.0049962033517659,-0.024085253477097],[0.035046454519033,0.0251379404217,-0.00082428264431655]],[[-0.0493387542665,-0.047407995909452,0.048771571367979],[0.03134199231863,-0.10262338072062,-0.0038807513192296],[-0.062556348741055,0.047384176403284,-0.054962169378996]],[[0.0066000414080918,0.056337382644415,0.045533608645201],[-0.022765284404159,-0.058835253119469,-0.073267005383968],[0.069675989449024,-0.042080979794264,-0.019607154652476]],[[0.077839083969593,0.062891066074371,0.018347037956119],[-0.014819454401731,0.084444813430309,-0.012145131826401],[0.0087011978030205,0.0024914087262005,-0.067521907389164]],[[0.033610824495554,-0.072269782423973,-0.019135601818562],[0.017939999699593,0.07591999322176,-0.0222471319139],[-0.020740795880556,0.0059781013987958,-0.049280598759651]],[[0.047139216214418,-0.097432382404804,-0.02084293961525],[0.017236087471247,-0.0053717717528343,0.032116804271936],[-0.040004506707191,-0.038885537534952,-0.01237091049552]],[[0.040961600840092,0.051200050860643,-0.065605312585831],[0.039520345628262,-0.037204023450613,-0.056184384971857],[-0.090816862881184,-0.059920098632574,-0.048411704599857]],[[-0.036073870956898,0.010422047227621,0.065436065196991],[-0.040421955287457,-0.04250530898571,0.010975095443428],[-0.031676422804594,-0.016982700675726,-0.022135820239782]],[[0.0015664345119148,0.044349305331707,0.026453226804733],[-0.010309205390513,-0.031947854906321,-0.00071592896711081],[-0.027450887486339,0.05577440559864,-0.078849270939827]],[[0.0071513392031193,-0.037960316985846,0.040224619209766],[0.057083200663328,0.1351712346077,-0.0089305192232132],[-0.017108727246523,-0.050692427903414,0.04937682300806]],[[-0.047290451824665,-0.0016401950269938,-0.038877625018358],[0.033029090613127,-0.041923478245735,-0.082807280123234],[-0.038957208395004,-0.04618614166975,-0.013116458430886]],[[-0.013929888606071,0.013371902517974,-0.079780340194702],[-0.037746228277683,0.017070798203349,0.024435156956315],[-0.0299754422158,0.080666273832321,0.013038751669228]],[[-0.012232118286192,-0.017253201454878,0.029893497005105],[-0.0074053141288459,-0.046064477413893,0.059405460953712],[-0.046544924378395,-0.0094482190907001,-0.03155030682683]],[[-0.026531789451838,-0.022258749231696,-0.063044093549252],[0.028620602563024,-0.06875903904438,-0.05824014917016],[0.042849253863096,-0.0063057546503842,-0.063582055270672]],[[-0.00047219413681887,0.010071123950183,-0.016283879056573],[0.18104790151119,0.012478263117373,-0.091954097151756],[0.040827222168446,0.026746151968837,-0.063641540706158]],[[-0.049052730202675,-0.031192786991596,0.0038220400456339],[0.092550836503506,0.012712638825178,0.011174453422427],[-0.030117282643914,-0.016695111989975,-0.077942453324795]],[[0.052393238991499,-0.012784495949745,-0.041176360100508],[-0.019174791872501,-0.01701882481575,-0.080731399357319],[0.067942246794701,-0.0070086363703012,0.078565336763859]],[[-0.032591763883829,-0.0058443075977266,0.050471607595682],[0.018396094441414,0.080747537314892,0.00087043683743104],[-0.018521992489696,-0.026893356814981,-0.07013039290905]],[[0.019498398527503,0.076203554868698,-0.0087347570806742],[0.0026977977249771,-0.038342047482729,-0.024397429078817],[-0.0214903075248,0.017322553321719,0.0019109853310511]],[[0.0097802486270666,0.054954435676336,0.015477813780308],[-0.033257964998484,0.0045051029883325,-0.053843211382627],[-0.054128099232912,-0.029677513986826,0.011329311877489]],[[0.019379189237952,0.018144581466913,0.037565726786852],[-0.031741999089718,-0.026623975485563,-0.067447908222675],[0.0091481050476432,0.017916340380907,-0.052804283797741]],[[-0.045951832085848,0.0085966531187296,-0.071870751678944],[-0.031215133145452,0.086134508252144,0.024788837879896],[0.023490842431784,0.098654307425022,0.058145750313997]],[[0.01128567289561,0.053949158638716,-0.0067094149999321],[-0.039238296449184,-0.020048703998327,-0.12221248447895],[0.010519379749894,-0.011289341375232,-0.068582959473133]],[[0.071548208594322,0.036601644009352,-0.0093999151140451],[-0.07724067568779,0.022218560799956,0.071332663297653],[-0.057242877781391,0.0055787428282201,0.013710785657167]],[[-0.027049487456679,-0.020238000899553,0.015129096806049],[0.010624470189214,0.014049276709557,-0.0016782581806183],[-0.01935120858252,0.036142338067293,0.057359702885151]],[[0.090357430279255,-0.087001971900463,0.010115787386894],[0.04118299856782,-0.030554719269276,0.010590865276754],[-0.054088469594717,0.025499697774649,-0.010648086667061]],[[0.017477573826909,0.056628804653883,0.025007031857967],[0.002398585435003,-0.11918463557959,0.058252066373825],[0.037908166646957,0.086453154683113,0.043120488524437]],[[0.032325759530067,0.02107254974544,-0.0017834280151874],[0.039118908345699,0.029399186372757,-0.032056912779808],[-0.063681051135063,-0.030635189265013,-0.076073072850704]],[[-0.009170338511467,0.073905862867832,-0.020859092473984],[0.059331964701414,0.00026066554710269,-0.0085391905158758],[-0.05152714625001,0.0044499062933028,0.0054123839363456]],[[-0.095233969390392,0.055158592760563,-0.036423277109861],[-0.018221702426672,-0.036467652767897,-0.12323845922947],[0.0050164144486189,0.015389204025269,-0.05571161210537]],[[-0.0098731527104974,0.090880259871483,0.20791864395142],[-0.067892126739025,0.018138524144888,0.11370326578617],[-0.038922410458326,0.039692644029856,0.013164069503546]],[[0.13321514427662,0.0042689447291195,0.010378305800259],[-0.048210777342319,0.04286940023303,0.040680717676878],[-0.0011875508353114,0.013725277967751,0.04645449668169]],[[0.011568003334105,-0.0049213166348636,-0.0081916889175773],[0.0237144716084,-0.077840954065323,-0.070091642439365],[-0.0052822879515588,-0.0098054753616452,0.025837307795882]],[[0.10608588159084,-0.035176619887352,-0.010807163082063],[-0.030282666906714,-0.024930166080594,0.12785129249096],[-0.058941841125488,0.0062136161141098,-0.0026294216513634]],[[-0.091123662889004,0.048901375383139,0.0017580571584404],[0.0052576279267669,-0.012791246175766,0.048336986452341],[0.030618652701378,0.0089406399056315,0.050952695310116]],[[-0.0029607221949846,-0.0061893076635897,-0.0039912206120789],[-0.0027704073581845,-0.020312059670687,0.041304264217615],[0.02472035586834,-0.00415901793167,0.050677798688412]],[[0.069788321852684,-0.011110717430711,0.075300961732864],[-0.0243676956743,-0.062283251434565,0.066759660840034],[-0.031138131394982,-0.062775231897831,-0.024012021720409]],[[0.14279299974442,-0.041409563273191,-0.035858556628227],[0.04090116545558,-0.061742845922709,-0.025948479771614],[0.047244995832443,-0.01142455264926,-0.018676670268178]],[[0.0034620848018676,-0.015512503683567,-0.07269161939621],[0.072779007256031,-0.11641050130129,0.012639892287552],[0.075574360787868,0.040262691676617,0.0015084791230038]],[[0.087498918175697,0.0055546313524246,-0.019020535051823],[-0.042229484766722,0.012798069044948,0.069225311279297],[-0.056874230504036,0.00042799182119779,-0.011988380923867]],[[-0.0014373071026057,0.006398010533303,0.11237100511789],[0.0027527487836778,-0.065076686441898,0.16683256626129],[-0.078455895185471,-0.0010234818328172,0.01736580953002]],[[-0.025164350867271,-0.010895289480686,-0.073515839874744],[-0.026576282456517,0.0023046652786434,-0.066113702952862],[0.081840306520462,0.037241876125336,-0.0037375595420599]],[[-0.11463665217161,0.034127939492464,-0.0029287189245224],[-0.013210532255471,-0.045928310602903,-0.001665627816692],[-0.023881945759058,0.017925921827555,-0.085326515138149]],[[0.0091303214430809,-0.039204221218824,0.027297215536237],[0.06048022210598,0.0070070694200695,0.015679713338614],[-0.01967341452837,-0.021305859088898,0.059371344745159]]],[[[0.11872605234385,-0.051444735378027,0.04381375014782],[-0.043632235378027,0.029312374070287,0.077633216977119],[0.025982791557908,0.047633577138186,0.045255437493324]],[[0.048104163259268,0.084721505641937,0.085566282272339],[0.028724174946547,-0.0061727613210678,-0.075655296444893],[-0.0008560343994759,-0.014076760038733,-0.091021120548248]],[[-0.1345534324646,-0.045154187828302,0.064814671874046],[0.079508796334267,0.0038539245724678,0.035168074071407],[-0.026622649282217,0.093629814684391,-0.063903227448463]],[[0.081217586994171,0.065148077905178,0.029582230374217],[-0.022605529054999,0.033490382134914,0.089527569711208],[0.070596054196358,0.050764430314302,0.037925716489553]],[[-0.054488904774189,-0.035457722842693,-0.099760182201862],[0.035675689578056,0.0067824041470885,-0.070840798318386],[0.065102383494377,0.040896914899349,0.071589179337025]],[[0.04740534350276,0.033041901886463,0.0021231127902865],[0.035867031663656,-0.0021997611038387,0.053784910589457],[-0.0083315530791879,-0.020187078043818,0.089123368263245]],[[0.13541427254677,0.06856045126915,0.092336274683475],[0.143250644207,0.080245211720467,0.040850147604942],[-0.072198897600174,-0.04656745120883,0.024763042107224]],[[0.010014385916293,0.061007399111986,0.0037860223092139],[0.041005410254002,0.10489122569561,0.0013434365391731],[0.021273590624332,-0.0075797974132001,-0.054226219654083]],[[-0.048530802130699,-0.022101506590843,-0.00075354386353865],[-7.7618373325095e-05,0.072994880378246,-0.085982069373131],[0.098431751132011,0.020850025117397,-0.03718463331461]],[[-0.045139200985432,-0.030936190858483,0.038251634687185],[-0.0020713552366942,-0.072019852697849,0.012300944887102],[0.028517665341496,-0.022505762055516,-0.011347598396242]],[[0.073571391403675,0.10231179744005,0.06211419403553],[0.010870832018554,0.056145437061787,-0.1200203448534],[0.036897324025631,0.081856817007065,0.054477635771036]],[[-0.012089144438505,-0.0025221055839211,-0.1347640901804],[0.022011075168848,0.095816656947136,-0.041580934077501],[0.050947856158018,-0.027078960090876,-0.011104981414974]],[[0.0079096639528871,-0.052165202796459,0.00431918958202],[-0.00059113278985023,0.0036835705395788,0.031398430466652],[-0.032692175358534,-0.0014330048579723,0.059536945074797]],[[-0.04100165143609,-0.079626254737377,-0.043152686208487],[0.038646589964628,0.0072081219404936,-0.014621954411268],[0.0053205331787467,-0.070860654115677,-0.028155324980617]],[[-0.03158612549305,-0.0013932854635641,0.05597934499383],[0.0064770905300975,0.019409002736211,0.021410204470158],[0.048222616314888,-0.061068058013916,0.01432497613132]],[[-0.033663719892502,-0.071785978972912,-0.030130444094539],[-0.052564736455679,0.024613685905933,0.0081598712131381],[-0.074017256498337,-0.0024493569508195,0.02052541449666]],[[-0.090003170073032,-0.085825636982918,-0.035861004143953],[-0.093185923993587,0.0017024812987074,0.013901488855481],[-0.070953197777271,0.041423391550779,-0.016665671020746]],[[-0.088017180562019,0.029425809159875,-0.077549792826176],[0.093869619071484,0.090392611920834,0.0069697392173111],[0.16552025079727,0.17738080024719,0.0096553321927786]],[[0.014204028993845,0.034672420471907,0.011846031062305],[-0.049764234572649,0.031209914013743,0.011029151268303],[0.017686661332846,0.10455437004566,0.082063302397728]],[[-0.051215160638094,0.0004778073343914,-0.050860747694969],[0.018695453181863,-0.040570072829723,0.0063804471865296],[0.077133432030678,0.063020102679729,-0.0074227126315236]],[[-0.030657384544611,-0.0029673192184418,0.053082320839167],[-0.023537980392575,-0.080164849758148,-0.084832802414894],[-0.031289920210838,-0.11016948521137,-0.11770489066839]],[[0.0032116465736181,-0.056577060371637,0.064615286886692],[-0.026261132210493,0.073782064020634,0.035287767648697],[-0.019288033246994,-0.035456348210573,0.020115397870541]],[[0.0040178396739066,-0.033284366130829,0.074431300163269],[0.021877516061068,0.0024096709676087,-0.0088612772524357],[0.067471779882908,0.025477597489953,0.019141821190715]],[[-0.012234416790307,0.016077499836683,0.056036297231913],[-0.042824890464544,0.013958315365016,0.0085065336897969],[0.028980171307921,-0.062753453850746,-0.021721910685301]],[[-0.059181872755289,0.038186337798834,0.078632362186909],[-0.065069161355495,0.092249125242233,0.016503198072314],[-0.011816680431366,0.089117608964443,0.064631447196007]],[[0.060606274753809,-0.014095639809966,0.057979989796877],[0.013343308120966,0.082759186625481,0.021783201023936],[-0.07593248039484,-0.040728908032179,-0.034200213849545]],[[0.047449868172407,-0.018254624679685,0.00077511626295745],[-0.031814057379961,0.066986382007599,-0.028803624212742],[-0.028820486739278,0.017433527857065,-0.024204755201936]],[[0.03390109166503,0.029121290892363,0.10158414393663],[0.033716414123774,-0.020467106252909,-0.16571505367756],[0.046029482036829,0.044688392430544,-0.048003204166889]],[[-0.026536833494902,-0.010295876301825,0.032332543283701],[-0.022996783256531,-0.15930370986462,0.017958015203476],[0.0063169039785862,-0.06134382635355,0.033275462687016]],[[-0.0082226889207959,-0.061239462345839,-0.17131555080414],[0.047036178410053,0.016755800694227,-0.044235676527023],[-0.079778634011745,0.096199028193951,0.071493804454803]],[[-0.10292617231607,-0.0035983477719128,0.061757419258356],[0.10121542215347,0.069796532392502,-0.031985860317945],[-0.0027827196754515,-0.00339793600142,-0.023332478478551]],[[-0.05278692394495,0.085593849420547,-0.021340999752283],[0.14008638262749,0.012703135609627,0.013637498021126],[0.063097476959229,0.078472524881363,-0.026220059022307]],[[0.10973794013262,0.023641470819712,0.0017844819230959],[-0.0022343802265823,0.14946082234383,0.063351668417454],[0.16000850498676,-0.024600556120276,-0.058977890759706]],[[0.072528511285782,0.094475351274014,0.069825895130634],[-0.075731866061687,0.027630960568786,0.039197783917189],[-0.097209565341473,-0.027040677145123,-0.0048430762253702]],[[-0.066072225570679,-0.02868265658617,0.035642817616463],[0.026473663747311,0.010327629745007,-0.046976394951344],[-0.020742481574416,-0.013142632320523,-0.094025962054729]],[[-0.015935914590955,-0.0086349239572883,0.09105595946312],[0.023050552234054,0.010636880062521,0.033930037170649],[0.017746064811945,-0.021336454898119,0.058130778372288]],[[0.017368486151099,-0.013556865043938,-0.035384394228458],[0.057667851448059,0.05394871532917,-0.0096023604273796],[0.045531209558249,0.050979662686586,0.020758582279086]],[[0.035725485533476,0.12422569096088,0.19412636756897],[0.036386325955391,0.026178732514381,0.023067563772202],[-0.050238329917192,-0.027733726426959,0.054043184965849]],[[0.084875628352165,-0.033826176077127,0.11207151412964],[-0.057431630790234,0.032878827303648,0.047677796334028],[-0.061573155224323,-0.082325167953968,-0.098595082759857]],[[0.072580754756927,-0.0048243482597172,-0.030811311677098],[-0.005140102468431,0.00017723241762724,-0.052644453942776],[0.0091719981282949,-0.025876192376018,0.016627604141831]],[[-0.0044817691668868,-0.027543464675546,0.035685040056705],[0.0057603856548667,-0.065321825444698,-0.037960682064295],[-0.087661445140839,-0.09279203414917,-0.036244932562113]],[[0.050286330282688,0.0061975191347301,-0.029237838461995],[-0.020930847153068,0.073752053081989,0.11602737754583],[0.02038086950779,0.02901017665863,-0.022024877369404]],[[0.022242549806833,0.02261352725327,-0.024835122749209],[-0.077635735273361,-0.077268928289413,-0.14810205996037],[-0.019398646429181,-0.0049353390932083,-0.082090340554714]],[[-0.015563894994557,0.020032471045852,-0.059899564832449],[0.051669254899025,0.010698131285608,-0.010395499877632],[-0.048943221569061,-0.066439718008041,0.0069054975174367]],[[-0.1019210293889,-0.033059310168028,-0.065165638923645],[-0.021182669326663,0.02796677313745,-0.015736818313599],[-0.0069558648392558,0.027319863438606,-0.0032473162282258]],[[-0.047883544117212,-0.06448095291853,-0.041542552411556],[0.014627034775913,0.052533891052008,-0.031567510217428],[-0.020570361986756,0.062158346176147,-0.016840286552906]],[[-0.018784668296576,-0.0083810640498996,-0.073477514088154],[-0.03175899758935,-0.060581006109715,-0.065850906074047],[-0.015879755839705,0.006070151925087,0.036772944033146]],[[-0.095939099788666,-0.089798226952553,-0.06256490945816],[0.041616033762693,0.033575840294361,-0.030599478632212],[-0.014571516774595,-0.060864940285683,-0.054087776690722]],[[0.15253348648548,-0.023579014465213,0.015142711810768],[0.105444021523,0.097917646169662,0.16146019101143],[0.082825601100922,0.011278931051493,0.14758408069611]],[[0.076211214065552,-0.033628731966019,-0.019213242456317],[-0.038312163203955,-0.068053267896175,-0.040689952671528],[-0.084919668734074,-0.035018116235733,-0.0033704158850014]],[[0.11816944926977,-0.049006264656782,-0.046748679131269],[-0.063329480588436,-0.06407830119133,0.062501758337021],[-0.11913595348597,-0.014626665972173,0.049652729183435]],[[-0.038287799805403,0.021955942735076,0.07622092962265],[0.0010006660595536,0.10305742919445,0.13388925790787],[-0.063510842621326,0.021326269954443,-0.031523879617453]],[[-0.026015318930149,-0.012152347713709,-0.053954478353262],[-0.067039780318737,-0.086890086531639,0.031175373122096],[0.049779031425714,-0.038575373589993,-0.022582395002246]],[[0.0058117522858083,-0.074845410883427,-0.01602303981781],[-0.10272518545389,-0.0086442921310663,-0.02672946639359],[0.015094213187695,0.022577540948987,-0.0082640228793025]],[[0.046850129961967,0.054422669112682,0.064386889338493],[-0.002557814354077,-0.0025122268125415,-0.050550386309624],[-0.038414113223553,-0.062232580035925,-0.042993206530809]],[[0.035388983786106,0.060006860643625,0.01182912196964],[0.022530753165483,0.010186411440372,-0.032837435603142],[-0.00054365012329072,0.030209286138415,0.039341270923615]],[[0.04858036339283,0.013826224952936,0.0073429085314274],[-0.039166625589132,0.068445079028606,0.070224560797215],[-0.096637718379498,0.021275451406837,-0.0022582008969039]],[[0.05665647238493,-0.0081272004172206,-0.05235343426466],[-0.019324166700244,-0.023592177778482,-0.032000381499529],[0.025286501273513,-0.059360284358263,-0.056214302778244]],[[-0.093363039195538,-0.091843590140343,-0.1002229899168],[-0.083213686943054,-0.034440517425537,-0.012149940244853],[0.0092684952542186,-0.011303053237498,0.045216426253319]],[[-0.02863840200007,-0.10806241631508,0.041224896907806],[0.021877702325583,-0.016174554824829,0.038683746010065],[0.015444653108716,-0.016698887571692,0.0089895911514759]],[[-0.087259531021118,0.11696584522724,-0.054628033190966],[-0.038894683122635,0.061586257070303,-0.069337397813797],[-0.075472667813301,0.040302336215973,-0.0254842415452]],[[-0.032890651375055,-0.059131607413292,-0.033654078841209],[-0.095641396939754,-0.041652679443359,-0.053188350051641],[0.009170938283205,0.021187409758568,-0.071235157549381]],[[0.044132597744465,0.045805707573891,0.045304473489523],[-0.057847183197737,-0.053900055587292,0.032035313546658],[0.010111912153661,0.021347032859921,-0.060414168983698]],[[0.14973981678486,0.10456393659115,0.0076079098507762],[0.048815902322531,0.1097763478756,-0.050073426216841],[-0.049814410507679,0.081983596086502,0.076354160904884]],[[-0.070370234549046,-0.026565996930003,0.014980348758399],[0.041201803833246,-0.026646327227354,-0.0037988275289536],[0.036364492028952,-0.054292358458042,-0.10296156257391]],[[-0.014840516261756,0.057478692382574,-0.074912846088409],[-0.031651180237532,-0.093480348587036,0.068898282945156],[0.033396244049072,0.005703398026526,-0.01818510890007]],[[-0.04205908626318,0.01426459942013,0.023658838123083],[0.023035077378154,-0.0080855786800385,0.028227381408215],[-0.033698074519634,-0.058168325573206,0.030676005408168]],[[0.025781368836761,0.024113731458783,-0.035303000360727],[0.045271031558514,-0.050236597657204,0.023319298401475],[-0.050887823104858,0.01363861002028,-0.039875209331512]],[[0.015693629160523,-0.0049859466962516,0.028145695105195],[0.0039893966168165,-0.051855452358723,0.026851389557123],[0.0031535576563329,-0.064843766391277,-0.069621481001377]],[[-0.012425209395587,0.071135215461254,-0.080857135355473],[0.065981954336166,-0.043462567031384,0.030889373272657],[0.084947504103184,-0.023594975471497,0.02572506479919]],[[-0.0076029608026147,-0.0089280782267451,0.056623354554176],[0.017618626356125,-0.046777863055468,-0.070333369076252],[-0.042400185018778,0.090230397880077,0.040736123919487]],[[-0.060950614511967,-0.12984938919544,-0.0514264293015],[-0.035929854959249,-0.0032252785749733,0.015329360961914],[0.0392215102911,-0.084652975201607,-0.0070462627336383]],[[-0.064075879752636,-0.052317347377539,0.028762172907591],[-0.041468437761068,0.048997286707163,0.037150576710701],[-0.064814373850822,-0.048214018344879,0.057061620056629]],[[-0.074759609997272,-0.079707309603691,0.025100333616138],[-0.042945995926857,-0.034540891647339,0.056371852755547],[0.04407100006938,0.12173555791378,-0.053101472556591]],[[-0.0024713762104511,-0.075990706682205,-0.062391076236963],[0.046454504132271,-0.030198348686099,-0.044341009110212],[0.018657512962818,0.078818842768669,-0.0046025263145566]],[[-0.048410639166832,0.0031173813622445,-0.011075599119067],[0.075456321239471,0.013581722974777,-0.052168682217598],[0.045232582837343,-0.049288041889668,-0.013177915476263]],[[-0.074712797999382,-0.023730106651783,0.1035313308239],[-0.059214394539595,-0.052654888480902,0.051754660904408],[-0.014678665436804,-0.008897403255105,0.058483354747295]],[[-0.065117046236992,-0.027297250926495,0.1443495452404],[0.00099160603713244,-0.037254460155964,0.11432430893183],[0.0088842371478677,-0.026109771803021,0.067326836287975]],[[-0.024404311552644,0.066535852849483,-0.025539869442582],[0.074593372642994,-0.1666105389595,-0.097206242382526],[-0.038201976567507,0.044669970870018,0.096068605780602]],[[0.068721152842045,-0.028841651976109,-0.06543455272913],[0.074478402733803,0.03736862167716,-0.083370596170425],[0.034134805202484,-0.006671798415482,0.057652782648802]],[[-0.0430006980896,-0.060114402323961,0.053762070834637],[-0.01379594579339,0.04843158647418,0.061634168028831],[-0.018624309450388,-0.032539989799261,0.097940176725388]],[[0.15412148833275,0.1163666844368,-0.030548829585314],[-0.048133444041014,-0.068555675446987,0.038774944841862],[0.23024007678032,-0.034262802451849,-0.023327605798841]],[[0.085724279284477,0.12778057157993,-0.0830949395895],[0.13385218381882,0.0050333132967353,-0.055824980139732],[0.0047658025287092,-0.035402592271566,0.050750263035297]],[[0.047350857406855,0.0088516920804977,-0.032903596758842],[-0.085039064288139,-0.056150160729885,-0.04453594237566],[-0.034893125295639,0.0032166610471904,-0.0027297742199153]],[[-1.0819602721313e-05,0.068786650896072,-0.10937819629908],[-0.02323137037456,-0.049928728491068,0.043272826820612],[0.050269410014153,0.013380400836468,-0.023985866457224]],[[-0.029644258320332,-0.081221789121628,-0.11007861047983],[-0.019889540970325,0.046097207814455,0.026393983513117],[-0.045769654214382,-0.0073455828242004,0.028296580538154]],[[-0.025477066636086,-0.0019019334577024,-0.048117469996214],[0.0047260769642889,0.041941456496716,-0.024742841720581],[-0.02594899572432,0.0026086186990142,-0.037368092685938]],[[-0.064973726868629,0.0068586780689657,0.0095098381862044],[-0.059290591627359,0.026517292484641,0.059000998735428],[0.032278195023537,0.071790486574173,0.060734584927559]],[[-0.09437944740057,0.016617618501186,0.019041687250137],[-0.066084563732147,-0.027004299685359,0.048257749527693],[0.010056728497148,0.048955764621496,-0.0058865710161626]],[[0.036223892122507,0.052278123795986,0.030802372843027],[-0.0077156717889011,-0.021428231149912,0.066711835563183],[-0.035063233226538,-0.064074143767357,-0.0096027199178934]],[[0.064828410744667,0.05552289634943,0.089655086398125],[0.046129908412695,-5.715097358916e-05,0.035460997372866],[-0.038236495107412,0.04567177593708,0.088431902229786]],[[-0.051331147551537,-0.03155866637826,0.0048094838857651],[-0.036961387842894,-0.069777198135853,-0.072339788079262],[-0.060963366180658,0.063524439930916,-0.04655472561717]],[[0.019565826281905,-0.060584481805563,-0.012173557654023],[0.019295297563076,0.00046310445759445,0.053652621805668],[0.063684962689877,-0.027022151276469,0.0088937534019351]],[[-0.027941796928644,0.059747572988272,-0.033969018608332],[-0.10960207879543,-0.050485033541918,-0.0007129730656743],[-0.043182704597712,-0.027576247230172,-0.04424923658371]],[[-0.028154995292425,0.0018724275287241,-0.11544249951839],[-0.065607443451881,-0.015197100117803,0.04499239102006],[0.042495060712099,0.03295186534524,0.018955189734697]],[[-0.034999810159206,-0.063487626612186,0.0062913321889937],[-0.033399533480406,-0.023203814402223,-0.0059800487942994],[-0.049695085734129,-0.07444054633379,-0.0095231914892793]],[[0.093588709831238,0.072432421147823,-0.029384627938271],[0.031733892858028,-0.028609041124582,-0.014586864039302],[-0.0089612221345305,0.040694396942854,0.015400578267872]],[[0.026011051610112,0.028975097462535,0.12974165380001],[0.071001641452312,0.026757430285215,0.12538358569145],[0.04326943680644,0.02286191098392,-0.024706041440368]],[[0.0017611869843677,-0.017317265272141,-0.069989398121834],[-0.10419581830502,0.032033815979958,-0.020180149003863],[0.050792288035154,0.032210905104876,0.017342044040561]],[[-0.0098515609279275,0.020172253251076,0.011856940574944],[-0.03340196236968,0.095411889255047,0.00132149271667],[0.15260528028011,0.10137918591499,0.10519473254681]],[[-0.15054976940155,-0.12825344502926,0.0043212822638452],[-0.10914100706577,-0.025367375463247,0.015190046280622],[-0.059103589504957,-0.031749792397022,-0.02759874984622]],[[0.072341054677963,0.065659925341606,0.036059785634279],[0.14146494865417,0.096997208893299,0.090760633349419],[0.23197381198406,0.039837263524532,0.10550907254219]],[[0.018130015581846,-0.059705495834351,0.0013497336767614],[0.090402118861675,0.02076349966228,0.085990786552429],[0.059713631868362,0.05060551315546,0.044097974896431]],[[0.016941437497735,0.039639592170715,0.050473906099796],[-0.0425705909729,0.063648924231529,0.021426074206829],[-0.14073447883129,-0.0040297508239746,-0.017001589760184]],[[-0.027552429586649,0.018833385780454,-0.061828400939703],[0.041108656674623,-0.043920904397964,-0.0033427320886403],[-0.0068658911623061,0.017523156479001,0.12350756675005]],[[-0.027968691661954,-0.0039022236596793,-0.11070039868355],[0.021315971389413,0.045442000031471,-0.074058786034584],[0.042312666773796,-0.055189061909914,-0.024114146828651]],[[0.016702866181731,-0.050434049218893,0.058297663927078],[0.11127955466509,0.079152464866638,-0.016164997592568],[0.043451383709908,-0.015172575600445,-0.12757049500942]],[[-0.064245037734509,0.013999270275235,-0.021142326295376],[-0.067463584244251,0.044240042567253,-0.038000870496035],[0.022040421143174,-0.07634261995554,0.044861696660519]],[[-0.062668055295944,0.0029000653885305,0.071522355079651],[0.1179352030158,0.032079566270113,0.043323911726475],[0.039839822798967,0.0107531407848,-0.026487654075027]],[[0.016697958111763,0.028912471607327,-0.021281637251377],[0.13831986486912,0.04471742734313,-0.0022255016956478],[-0.01654864102602,-0.020409375429153,0.015517803840339]],[[0.070852339267731,-0.060064032673836,-0.012588448822498],[-0.0049647646956146,0.0020566442981362,-0.072962611913681],[-0.021785574033856,0.036530684679747,-0.056200500577688]],[[0.078657381236553,0.04331574216485,-0.0044784778729081],[0.059033270925283,-0.034411139786243,0.06959991902113],[0.020866870880127,-0.039685305207968,-0.026950122788548]],[[-0.022543089464307,0.080600656569004,-0.035532124340534],[-0.0005094480002299,0.043033294379711,0.016983425244689],[0.0076127727515996,0.0085284588858485,-0.030294476076961]],[[-0.035129271447659,-0.0418497659266,-0.0021476547699422],[-0.032433696091175,-0.045633714646101,0.036972872912884],[-0.055974993854761,-0.065232023596764,-0.036936454474926]],[[0.13563804328442,0.018129266798496,0.024599306285381],[0.074672780930996,-0.032142464071512,0.0031159946229309],[0.047625966370106,0.031611327081919,0.05930445715785]],[[-0.0057092471979558,-0.029551446437836,-0.0019452581182122],[-0.0052783181890845,-0.0020644611213356,0.06993892043829],[-0.0070799882523715,-0.050981186330318,0.019300758838654]],[[-0.095722176134586,0.06497398763895,-0.013934037648141],[-0.039334859699011,-0.056492410600185,0.11389078944921],[-0.13666415214539,0.055924631655216,0.071219250559807]],[[0.031734574586153,0.051375035196543,0.056234501302242],[-0.037076953798532,0.0054651470854878,-0.059670194983482],[0.0084601119160652,0.026075068861246,0.12992298603058]],[[0.033904880285263,-0.027587816119194,-0.062101468443871],[-0.00063003931427374,-0.029139399528503,0.0067744445987046],[0.041976939886808,0.096922785043716,-0.021693907678127]],[[0.018347168341279,-0.02366853877902,-0.04260503873229],[0.071709789335728,0.072855040431023,0.017953474074602],[0.098047040402889,-0.072344683110714,0.0804108902812]],[[0.0032126870937645,-0.020397799089551,-0.058061558753252],[0.017932279035449,0.033389750868082,0.0066062668338418],[-0.014431498013437,0.026879260316491,0.013313257135451]],[[0.094633989036083,0.068401776254177,-0.0013332689413801],[0.044917985796928,-0.059522625058889,0.062645696103573],[0.073578417301178,-0.068314962089062,0.018549006432295]],[[0.036797594279051,-0.047149423509836,-0.040363475680351],[-0.03986394032836,-0.037451826035976,-0.0043881726451218],[0.048693235963583,-0.028114702552557,-0.092864349484444]],[[-0.076029881834984,0.045772381126881,-0.015100874006748],[-0.0085541838780046,0.0022633895277977,0.047438491135836],[0.021758954972029,0.052364647388458,0.037388868629932]],[[0.015975531190634,-0.013694827444851,-0.0025479667820036],[0.13511094450951,0.014931401237845,-0.11374823749065],[0.12136691063643,0.026814132928848,0.0059054745361209]],[[-0.088383048772812,0.057118065655231,-0.034224409610033],[-0.013227583840489,0.0019864335190505,0.037495706230402],[-0.050628174096346,0.00018735842604656,-0.11305487900972]],[[0.036633487790823,0.021353153511882,0.10152596980333],[0.067648693919182,0.089170277118683,-0.002095730509609],[-0.049340005964041,0.096736393868923,-0.042909469455481]],[[0.040377020835876,0.11010799556971,0.027823131531477],[-0.051743697375059,0.014264791272581,-0.088008925318718],[-0.034430488944054,-0.045996885746717,0.083537839353085]]],[[[0.006581456400454,0.066118866205215,0.032795261591673],[-0.0085183223709464,0.01935207284987,0.084287032485008],[0.13947555422783,0.1695936024189,-0.065432779490948]],[[-0.099378496408463,0.024458782747388,-0.0015333661576733],[-0.090343557298183,-0.064823858439922,0.055215556174517],[-0.062238574028015,0.040751688182354,0.018420042470098]],[[-0.0096291750669479,-0.014994486235082,0.056303936988115],[-0.00065068760886788,0.034099653363228,0.1147441342473],[0.13802747428417,0.027177939191461,0.094492048025131]],[[-0.0748191177845,0.013176660053432,0.14893998205662],[-0.078684687614441,-0.031781211495399,0.090077616274357],[-0.080803826451302,-0.072163261473179,0.084009118378162]],[[-0.093307755887508,0.025217911228538,0.010621059685946],[-0.036389403045177,0.036219216883183,0.041571579873562],[-0.032514650374651,-0.0092297354713082,0.040605153888464]],[[-0.047647804021835,-0.056824274361134,0.059937175363302],[0.0044906428083777,-0.069072552025318,0.08118999004364],[-0.20643676817417,0.018794720992446,0.058898381888866]],[[-0.02969978004694,-0.022413214668632,0.062215309590101],[-0.0058474144898355,0.04521307349205,0.015630681067705],[0.035417217761278,-0.0097145512700081,-0.095991410315037]],[[-0.0065733455121517,-0.050767853856087,-0.060491822659969],[0.13312518596649,-0.011737706139684,0.12530119717121],[0.019990082830191,0.018802987411618,0.010726250708103]],[[-0.10635881870985,0.058478590101004,-0.00089180446229875],[-0.1400665640831,0.012638972140849,-0.01896533370018],[-0.057091522961855,0.012276225723326,0.085330605506897]],[[-0.00046717881923541,0.018908502534032,-0.0063456636853516],[0.045543689280748,0.0017997083486989,-0.045164059847593],[-0.053569935262203,-0.085489749908447,0.0018342508701608]],[[0.13622318208218,0.12543112039566,0.047724414616823],[-0.05532406270504,0.080087140202522,-0.07212008535862],[0.021475648507476,0.099361151456833,0.061163011938334]],[[0.024468239396811,0.01134473271668,-0.04200541228056],[-0.0052080457098782,0.078463315963745,0.068220965564251],[-0.012084818445146,-0.038079924881458,0.016182998195291]],[[0.034784313291311,-0.021526886150241,-0.077371016144753],[0.083164028823376,-0.038000911474228,-0.017181620001793],[-0.0063454937189817,-9.3321701569948e-05,-0.034149512648582]],[[0.015038831159472,-0.060577630996704,0.013415359891951],[-0.0003104905190412,-0.064647831022739,-0.023536346852779],[0.061660651117563,-0.080305263400078,-0.020266901701689]],[[-0.0092259226366878,0.0049440851435065,-0.027940297499299],[0.058416999876499,0.030673326924443,-0.0068352064117789],[-0.17849124968052,-0.03483721986413,0.049099937081337]],[[-0.12910316884518,0.045408148318529,-0.02625866048038],[-0.14992280304432,0.027440253645182,0.06799079477787],[-0.011060896329582,-0.073501661419868,-0.084799006581306]],[[-0.0055280937813222,-0.031185194849968,0.0081005766987801],[0.018080219626427,0.043266125023365,0.069999694824219],[-0.0085806110873818,0.039627850055695,0.0087825022637844]],[[-0.055471666157246,0.023066895082593,-0.0097624203190207],[-0.03567073866725,0.10845027863979,-0.035955127328634],[-0.061546500772238,-0.018064392730594,-0.14847625792027]],[[-0.046968027949333,0.0066277799196541,0.078557938337326],[-0.073841847479343,-0.010242627933621,0.019383329898119],[-0.044469904154539,0.074394799768925,0.032302536070347]],[[-0.0097028855234385,0.0047692386433482,-0.063108846545219],[-0.014104383997619,-0.060838740319014,-0.077380903065205],[-0.0061041717417538,0.014648011885583,0.075708232820034]],[[-0.0045377295464277,-0.027429260313511,-0.01735014282167],[0.071856923401356,0.067862555384636,-0.06259161233902],[-0.096094653010368,-0.084672339260578,0.0012582733761519]],[[-0.036051001399755,-0.058818403631449,0.10431998968124],[0.050370559096336,-0.031144069507718,-0.017786402255297],[-0.010626637376845,-0.097806364297867,0.058619875460863]],[[0.071019940078259,-0.024947853758931,0.041589993983507],[-0.073768444359303,-0.02036452293396,0.056174855679274],[-0.1031991392374,0.056433167308569,0.041538238525391]],[[0.097151979804039,-0.0074984054081142,-0.029661497101188],[-0.019771572202444,0.04250255972147,-0.011694119311869],[-0.048707168549299,-0.055680226534605,0.00084807304665446]],[[-0.13000327348709,-0.0015283920802176,0.039152603596449],[-0.055742532014847,0.10537408292294,0.04835107922554],[-0.045745361596346,0.073066763579845,0.034624349325895]],[[0.06258974224329,0.06241212412715,0.014376614242792],[-0.019237359985709,0.06163776665926,-0.01264373306185],[0.019399041309953,0.12846361100674,-0.0088119683787227]],[[0.11543326824903,0.022253181785345,-0.044865373522043],[0.050832509994507,0.041675813496113,-0.051596608012915],[0.025235518813133,0.002338255988434,-0.084322392940521]],[[0.033748298883438,0.084199756383896,-0.021280048415065],[0.06745495647192,-0.11025456339121,-0.040228359401226],[0.052976131439209,-0.0086285322904587,0.018456857651472]],[[0.0076440274715424,-0.04093898460269,-0.062366779893637],[0.068092882633209,-0.094429761171341,0.045919883996248],[-0.064457848668098,0.0022592276800424,0.083232551813126]],[[-0.054094988852739,-0.014678133651614,-0.074649564921856],[-0.093574352562428,-0.052768424153328,0.0022153514437377],[0.024285791441798,0.025595365092158,0.0087792398408055]],[[0.093384101986885,-0.031119644641876,-0.094402939081192],[0.14361523091793,-0.043519001454115,-0.0077911056578159],[0.0068829953670502,0.022539235651493,0.022230954840779]],[[-0.065004020929337,-0.070008121430874,-0.024161560460925],[0.068863026797771,-0.012632146477699,-0.12544985115528],[-0.0474007204175,-0.059935923665762,0.030714878812432]],[[0.079390853643417,0.040869031101465,0.073334641754627],[-0.0070069283246994,-0.035594314336777,-0.022353585809469],[-0.00052111787954345,0.038849014788866,0.016022408381104]],[[-0.022732460871339,0.063021808862686,-0.0030364047270268],[0.016924669966102,0.009804155677557,-0.079345233738422],[-0.0024790649767965,0.040751781314611,0.076721802353859]],[[-0.061739772558212,-0.08959286659956,-0.060000278055668],[-0.032638493925333,0.099063545465469,-0.0044318838045001],[0.1049724817276,-0.080686792731285,-0.0006804145523347]],[[0.035539899021387,-0.048528980463743,0.015371171757579],[0.11423280835152,-0.0074348468333483,0.077819146215916],[0.094279892742634,-0.0082306219264865,0.020536728203297]],[[0.054014731198549,0.00097788614220917,0.037608128041029],[-0.0093177417293191,0.084216244518757,0.0072295456193388],[-0.030799482017756,0.045937430113554,-0.011581792496145]],[[0.010081211104989,-4.2162133468082e-05,-0.085536435246468],[0.18192018568516,0.048374973237514,-0.032720524817705],[-0.046014428138733,-0.027505021542311,-0.096822127699852]],[[0.036673743277788,0.061689134687185,-0.0016659965040162],[0.024713983759284,-0.063918314874172,-0.10627920180559],[-0.013168780133128,-0.0020711950492114,-0.11128058284521]],[[-0.094074487686157,0.059477142989635,0.014570752158761],[-0.027056243270636,0.044621713459492,-0.15923835337162],[-0.036509562283754,0.024778202176094,-0.04572244733572]],[[0.036184549331665,0.040563829243183,-0.039671801030636],[0.11657691001892,-0.0033733262680471,0.045541726052761],[-0.060891341418028,-0.0081653734669089,0.014049337245524]],[[0.027716660872102,0.03506787493825,0.11914286017418],[0.12080405652523,0.075723685324192,-0.0060518616810441],[0.073165535926819,0.0040792683139443,0.059416402131319]],[[0.054821312427521,0.026600621640682,-0.083252191543579],[-0.022075453773141,0.039772525429726,0.071261614561081],[-0.0060226544737816,-0.059148572385311,0.08757296204567]],[[-0.0019699400290847,0.033331319689751,0.043164558708668],[-0.0065418849699199,-0.029964784160256,-0.019708544015884],[0.031539626419544,-0.047612082213163,-0.00048653088742867]],[[0.019485585391521,-0.017556726932526,0.15610130131245],[0.035680487751961,0.095366194844246,0.07363422960043],[0.094974473118782,0.06170317903161,0.0032485076226294]],[[-0.05755714699626,-0.075402997434139,0.10283488035202],[-0.036645710468292,-0.049970366060734,0.063226625323296],[-0.034934844821692,0.066038496792316,0.05922219902277]],[[-0.048364300280809,-0.066521316766739,-0.12446712702513],[-0.057553865015507,-0.079965926706791,0.065655410289764],[-0.017112303525209,-0.060139108449221,-0.044111620634794]],[[-0.004388069268316,0.075472339987755,-0.041134726256132],[-0.027077542617917,-0.012186552397907,-0.0022788492497057],[0.014530533924699,-0.094824247062206,-0.018111443147063]],[[0.21430426836014,-0.031741738319397,-0.024036699905992],[0.081993520259857,0.08737501502037,0.044204778969288],[0.0078039527870715,0.050727795809507,0.10183070600033]],[[0.022929584607482,-0.0010238846298307,0.07856522500515],[-0.017497358843684,-0.057781349867582,0.010178699158132],[0.0062737269327044,-0.053616527467966,-0.051279090344906]],[[-0.074013620615005,-0.039460953325033,-0.039061482995749],[-0.19087214767933,-0.06225062161684,-0.11159164458513],[-0.16006216406822,0.021836318075657,0.050512049347162]],[[-0.010736147873104,0.017446713522077,0.10918457061052],[0.052469972521067,0.047832228243351,0.05036623030901],[0.037126272916794,-0.011562699452043,0.0092421937733889]],[[-0.077546194195747,-0.001386039191857,-0.016675654798746],[-0.051212541759014,-0.0059040440246463,0.0010306462645531],[0.042296715080738,0.027037439867854,0.048716202378273]],[[-0.035285703837872,0.00062427029479295,-0.065199784934521],[-0.10007417947054,0.0027139075100422,0.026558974757791],[0.074618518352509,0.0062403082847595,0.072719715535641]],[[-0.020225286483765,0.10905910283327,0.02858885936439],[-0.030768278986216,-0.044152367860079,0.072110451757908],[-0.099601201713085,0.043179176747799,0.060886416584253]],[[0.064512148499489,-0.047899015247822,-0.0095084616914392],[0.013788885436952,0.0096732284873724,0.072012089192867],[0.015571204945445,0.0017998032271862,-0.015885919332504]],[[-0.047129906713963,-0.012415227480233,0.070000156760216],[0.013098359107971,0.043201845139265,0.0079235350713134],[0.12690263986588,-0.033389586955309,0.019368099048734]],[[0.035452086478472,-0.16171212494373,-0.013430240564048],[-0.036851447075605,-0.10684674978256,-0.032842237502337],[-0.023140836507082,0.043095137923956,-0.076922461390495]],[[0.0055488580837846,-0.0020376073662192,-0.03355073928833],[0.062576532363892,-0.027866749092937,-0.018869614228606],[-0.039652191102505,-0.05445858091116,-0.063711196184158]],[[0.059171453118324,-0.031431585550308,-0.016980560496449],[0.001621954375878,-0.028323361650109,0.067547030746937],[-0.035097301006317,0.043454453349113,0.032472517341375]],[[-0.13951924443245,-0.037495922297239,-0.050636608153582],[-0.11456745117903,-0.069132797420025,-0.037310689687729],[-0.087237194180489,0.0049183899536729,-0.17798857390881]],[[-0.085809610784054,0.0053038029000163,0.022227646782994],[-0.081531949341297,0.0019077513134107,0.02852139621973],[-0.077367447316647,-0.12156348675489,0.015256314538419]],[[0.083077490329742,-0.010039418935776,0.082713522017002],[0.06905410438776,0.069084592163563,0.0057507180608809],[-0.012180102057755,-0.034006979316473,0.055666394531727]],[[0.13239400088787,0.061546433717012,-0.0074782883748412],[0.0061725052073598,-0.070089690387249,0.031590115278959],[0.12489197403193,-0.10027351975441,0.077096000313759]],[[0.0062713674269617,0.020294373854995,0.09308011084795],[0.0018985436763614,0.026329450309277,0.015953598544002],[0.055299893021584,-0.016466729342937,0.10596118122339]],[[0.10729678720236,-0.045793451368809,-0.037803240120411],[0.15858153998852,-0.047287199646235,-0.027095763012767],[0.083789937198162,-0.0084948521107435,0.072844088077545]],[[0.10717924684286,-0.068498358130455,0.0028246096335351],[-0.039999164640903,0.0090386997908354,-0.040804900228977],[-0.06613802164793,0.03557800501585,0.0059422133490443]],[[-0.027179295197129,-0.043915566056967,-0.031210009008646],[0.10337772965431,-0.00076097890269011,-0.10935421288013],[-0.017432555556297,-0.0090691661462188,-0.00069694191915914]],[[0.016301192343235,-0.077386252582073,0.030566619709134],[0.047587707638741,0.041224885731936,0.014723531901836],[0.021659582853317,-0.056053161621094,-0.039794471114874]],[[-0.060642048716545,-0.034670006483793,-0.019321298226714],[0.014739219099283,-0.019085811451077,-0.0098559772595763],[0.0022441891487688,-0.067178845405579,-0.014400105923414]],[[0.048169668763876,0.0040792333893478,0.090679310262203],[-0.015470674261451,-0.0088851703330874,0.035316605120897],[0.12148293107748,0.108372785151,-0.053883198648691]],[[-0.035815112292767,-0.069814518094063,-0.058382589370012],[-0.089080601930618,-0.06783826649189,0.016911270096898],[-0.0018369411118329,-0.023258827626705,0.007081865798682]],[[-0.054001823067665,-0.070237509906292,0.025223698467016],[-0.071367040276527,-0.0098246820271015,-0.0084544075652957],[-0.044755164533854,0.070444159209728,-0.035368904471397]],[[-0.049661666154861,-0.0087890047580004,0.0078563448041677],[0.07649327069521,-0.035997349768877,0.044916838407516],[0.054959692060947,-0.077028207480907,-0.010533329099417]],[[-0.07244561612606,0.0025396561250091,0.0047899992205203],[0.073064252734184,-0.01890348084271,-0.0096112750470638],[0.044597737491131,0.01945860683918,0.087123550474644]],[[-0.037888873368502,0.0010652360506356,0.039928030222654],[0.097565464675426,-0.057358555495739,-0.035022258758545],[0.026012158021331,-0.014563210308552,-0.040591988712549]],[[-0.0096418680623174,-0.069870047271252,0.052328862249851],[0.045674432069063,0.00090969423763454,0.017325859516859],[-0.015029050409794,0.039803557097912,-0.016676230356097]],[[-0.094480253756046,-0.029870765283704,0.094713993370533],[0.0061483741737902,-0.0036902145948261,0.069387853145599],[0.025706278160214,0.030896218493581,0.06832218170166]],[[-0.0049533834680915,-0.020674886181951,-0.077863417565823],[-0.035038325935602,0.0032230096403509,0.035690687596798],[0.026649815961719,0.07252486795187,-0.014974599704146]],[[0.10123600810766,-0.0079290000721812,-0.021851336583495],[0.074829176068306,0.10306788235903,0.0005114744999446],[0.059413503855467,-0.025699436664581,-0.0063021117821336]],[[-0.078066885471344,-0.029251616448164,0.045892465859652],[-0.088600553572178,-0.036727268248796,-0.047934602946043],[0.023287644609809,-0.037850115448236,-0.012967095710337]],[[0.0079509001225233,0.0017561871791258,0.090067952871323],[0.061681367456913,-0.074434153735638,-0.005419235676527],[-0.024228569120169,0.015654254704714,0.028080895543098]],[[0.1265944391489,-0.049861878156662,-0.031315021216869],[-0.0060151303187013,-0.02664160169661,0.10543287545443],[0.071949161589146,0.037031278014183,-0.043071907013655]],[[-0.0717978104949,-0.019791230559349,-0.13074211776257],[-0.059065107256174,0.033155333250761,-0.058695167303085],[-0.14894424378872,0.14570686221123,0.0064080483280122]],[[0.03620732575655,-0.01231558714062,0.12350688874722],[-0.074374534189701,0.027832973748446,0.02990709617734],[0.065283454954624,0.065520912408829,0.01997172087431]],[[0.031324587762356,-0.037853308022022,0.017674092203379],[-0.028447920456529,-0.064097568392754,0.047676656395197],[0.21757534146309,0.011105202138424,0.054105751216412]],[[-0.093302473425865,0.034655261784792,0.13470695912838],[0.028691401705146,0.026895074173808,-0.034348554909229],[-0.12613017857075,0.035892799496651,-0.0057854563929141]],[[0.044484492391348,-0.0029517845250666,0.10132327675819],[-0.0077776620164514,0.026794107630849,-0.085045203566551],[0.047005094587803,0.092062197625637,0.039052754640579]],[[0.091195076704025,-0.027208900079131,0.031935147941113],[0.02231558598578,0.051387820392847,-0.0073045520111918],[-0.062371004372835,0.039865348488092,0.0069933729246259]],[[0.077813513576984,-0.0062585435807705,0.039320684969425],[-0.026137920096517,0.067538551986217,-0.05694480240345],[0.019812827929854,0.071945801377296,0.042524088174105]],[[0.088659085333347,0.14893269538879,0.058936640620232],[-0.0021435099188238,0.05886947363615,0.065609954297543],[-0.0086078634485602,0.056992515921593,0.065057471394539]],[[-0.062545463442802,0.059393018484116,-0.035403825342655],[0.051542118191719,-0.027401611208916,-0.0013072192668915],[-0.021327139809728,-0.0096923364326358,0.052360907196999]],[[0.044034231454134,-0.076986111700535,0.036233272403479],[-0.021560257300735,0.01937665976584,-0.029892163351178],[0.081284210085869,-0.029978612437844,-0.067371502518654]],[[-0.055444061756134,0.0079434439539909,-0.018169775605202],[-0.089646130800247,-0.0048041283152997,0.077515237033367],[0.066581174731255,-0.046682361513376,0.011103419587016]],[[-0.0086081186309457,0.0091857993975282,-0.0062144915573299],[0.11394974589348,0.10844606161118,-0.065589345991611],[0.10384161770344,-0.12203264981508,0.065950624644756]],[[-0.025426154956222,-0.093771755695343,-0.080830596387386],[0.14247380197048,0.015143934637308,0.0073624774813652],[0.097534701228142,0.17917712032795,0.016232559457421]],[[0.12286533415318,0.097868859767914,-0.083852969110012],[0.0052330289036036,-0.059350416064262,-0.0061026094481349],[0.052911508828402,-0.042685516178608,-0.081239685416222]],[[0.012571298517287,-0.0094498842954636,-0.024800939485431],[0.041963495314121,0.014023514464498,-0.039994835853577],[0.066612526774406,0.038327634334564,0.0012918831780553]],[[-0.10438277572393,0.053670447319746,-0.0090959444642067],[-0.14998854696751,0.06987638771534,-0.010245659388602],[-0.092500746250153,0.029499359428883,0.007948150858283]],[[-0.059853471815586,0.092558555305004,-0.08162934333086],[-0.04811055213213,-0.047656856477261,0.01295336522162],[0.044992014765739,-0.049168236553669,-0.0098182084038854]],[[-0.15513800084591,0.04852694272995,0.074714533984661],[-0.18798857927322,0.084395848214626,0.056930553168058],[-0.088522531092167,0.097889997065067,0.015948131680489]],[[-0.025429610162973,0.0078421495854855,0.060888521373272],[0.18107993900776,0.020040988922119,0.14044682681561],[0.12157461792231,0.17200887203217,-0.03825519233942]],[[0.14250287413597,0.016572160646319,0.04186175391078],[0.066722735762596,-0.036970432847738,0.093810446560383],[0.086868785321712,-0.03829712420702,-0.0022909892722964]],[[-0.018530838191509,-0.014514940790832,0.023989610373974],[-0.11004111915827,-0.043833207339048,-0.032094672322273],[-0.013194262050092,-0.043726909905672,-0.0087636979296803]],[[-0.0027725310064852,0.067290715873241,-0.014540824107826],[0.057344231754541,0.021558908745646,0.0027445387095213],[0.043619055300951,-0.081738516688347,0.024935791268945]],[[0.051668558269739,-0.017561769112945,-0.026917262002826],[0.076416365802288,0.033640973269939,0.0086300494149327],[0.17181903123856,0.048877466470003,0.11634012311697]],[[0.030405703932047,0.093155339360237,-0.055035673081875],[-0.085010550916195,0.064339764416218,-0.086755186319351],[0.055364340543747,0.16669265925884,-0.039618294686079]],[[-0.096564464271069,-0.045476507395506,0.059807918965816],[0.027764787897468,-0.061755184084177,0.085931740701199],[0.066881038248539,-0.069340221583843,0.007121519651264]],[[-0.0068319356068969,-0.0050556645728648,-0.12284649908543],[0.043507847934961,0.13764627277851,0.027554849162698],[-0.032800380140543,0.036874577403069,0.030343921855092]],[[0.025558387860656,0.053488235920668,0.13740164041519],[0.024236848577857,0.035376034677029,0.033789452165365],[-0.0083325682207942,-0.021618293598294,0.030426912009716]],[[0.090254500508308,-0.083777852356434,-0.035592772066593],[0.049856223165989,-0.02108963765204,-0.10619836300611],[0.006355079356581,0.028989896178246,0.034075681120157]],[[-0.024411506950855,-0.065235584974289,-0.082852952182293],[0.082395352423191,-0.0041365413926542,-0.017135489732027],[0.11382804065943,0.018067449331284,0.042867965996265]],[[-0.036582808941603,0.045885812491179,0.003988629207015],[-0.039024543017149,0.022496001794934,0.01003341563046],[-0.06902439147234,-0.017451679334044,0.061201710253954]],[[0.097300484776497,-0.056895665824413,0.057516157627106],[0.0091536333784461,-0.033954232931137,0.01401056163013],[0.067643873393536,0.012131003662944,0.043651480227709]],[[0.1299017816782,0.016388185322285,-0.0010741888545454],[0.10158132761717,-0.055948741734028,0.073032565414906],[0.072189651429653,-0.037996042519808,0.14992454648018]],[[0.11785467714071,-0.11359114944935,-0.031286980956793],[0.029582962393761,0.029170140624046,-0.087066203355789],[-0.0013656938681379,0.014596465043724,-0.063566565513611]],[[-0.031884077936411,-0.044930480420589,0.0015715202316642],[-0.037147242575884,-0.0028534242883325,0.013429001905024],[-0.026969285681844,0.014241429045796,-0.080977015197277]],[[0.0039461343549192,-0.018147014081478,0.06959006935358],[0.024116100743413,0.012855714187026,0.013971704058349],[0.13491490483284,0.00063366693211719,0.066641263663769]],[[0.063760414719582,-0.00038604674045928,-0.012119484134018],[0.085945099592209,0.034969013184309,-0.052877906709909],[0.12045446783304,0.031281530857086,0.050700310617685]],[[0.075176745653152,0.072896100580692,0.010030562058091],[-0.036509715020657,0.08204160630703,0.075187109410763],[-0.010125461965799,0.090469636023045,-0.14795511960983]],[[0.019922291859984,0.018631199374795,0.052763056010008],[-0.071632616221905,-0.012861485593021,0.050312224775553],[-0.054747287184,0.051169790327549,0.033354789018631]],[[0.050938732922077,-0.04103384912014,0.081019900739193],[0.06860289722681,-0.12331116199493,0.054720714688301],[-0.0080112749710679,-0.11781594902277,0.1686727553606]],[[0.089755363762379,-0.12022725492716,-0.064558148384094],[-0.015022083185613,0.024815060198307,-0.051421694457531],[-0.1503179371357,0.14277809858322,-0.0075588263571262]],[[-0.068569771945477,0.028221912682056,-0.016663681715727],[-0.072890125215054,-0.01838456466794,0.05110440030694],[-0.12270317226648,0.1332044005394,0.067394517362118]],[[0.058662340044975,0.048777103424072,0.098415732383728],[0.041470017284155,0.025070926174521,0.036447666585445],[0.086010441184044,-0.047824002802372,-0.034192901104689]],[[0.080408625304699,0.034054048359394,-0.036521434783936],[-0.056870236992836,-0.059216547757387,0.021349674090743],[-0.23592773079872,-0.073314294219017,0.032945297658443]],[[0.1711512953043,0.10800509899855,0.056292440742254],[-0.0076436293311417,0.091766282916069,-0.065185345709324],[0.021891528740525,0.088118463754654,-0.057056948542595]],[[-0.068784356117249,0.028029691427946,0.074042670428753],[-0.021426558494568,0.086961045861244,0.15560993552208],[0.034497454762459,-0.065304651856422,0.088358238339424]]],[[[0.1073670014739,-0.14384472370148,-0.14099606871605],[-0.062925972044468,-0.015726324170828,0.039583697915077],[-0.077107526361942,-0.1334693133831,0.14943873882294]],[[-0.0040012779645622,0.0039501767605543,-0.099954441189766],[0.13327127695084,0.02686906978488,-0.22589416801929],[-0.11452682316303,0.036466848105192,0.080586858093739]],[[0.099125482141972,0.023283014073968,-0.018844708800316],[0.12968108057976,-0.129493907094,0.17071801424026],[0.047194730490446,0.071039870381355,0.10861567407846]],[[-0.067013375461102,-0.1815493106842,0.023227941244841],[0.12076846510172,-0.010641888715327,-0.21207815408707],[0.14987106621265,0.092108346521854,-0.023377103731036]],[[0.047547731548548,-0.051488239318132,0.10814193636179],[0.16069975495338,0.037401057779789,0.23880915343761],[0.19795617461205,-0.10636552423239,-0.080942451953888]],[[-0.025382500141859,-0.0074732452630997,-0.070294193923473],[-0.062402628362179,-0.048867028206587,0.061311058700085],[0.093160375952721,-0.03346773982048,0.11761796474457]],[[0.063600778579712,0.075110591948032,0.0042739920318127],[-0.12043730914593,-0.0035445571411401,-0.073297083377838],[-0.15177787840366,0.071465812623501,0.071701161563396]],[[-0.055419318377972,-0.13082459568977,0.018852105364203],[0.054641164839268,0.1235388815403,0.13573978841305],[-0.0077403504401445,0.044660519808531,0.15638029575348]],[[0.01655494235456,-0.021160367876291,-0.044343959540129],[0.02833203971386,0.11143510788679,0.01613942719996],[0.0094534140080214,-0.092674985527992,-0.03999911993742]],[[-0.22224009037018,-0.019061014056206,0.22635930776596],[-0.15228305757046,0.072682075202465,-0.1479656547308],[0.00073090149089694,0.0093113733455539,0.042865451425314]],[[-0.050525061786175,0.0044598267413676,0.10634403675795],[0.012448142282665,0.073072992265224,0.057673998177052],[-0.045090813189745,-0.20532786846161,-0.11318574100733]],[[0.0061044618487358,0.11361942440271,-0.079156391322613],[0.13363695144653,0.10425516217947,-0.14286336302757],[0.0089478427544236,0.038407776504755,-0.12045222520828]],[[0.082887232303619,-0.014435453340411,-0.18377700448036],[0.011181841604412,0.047658313065767,0.15572285652161],[0.081242255866528,-0.1170489937067,-0.085414797067642]],[[-0.051007237285376,-0.048465363681316,-0.0528026483953],[-0.065548501908779,-0.010781455785036,-0.060534801334143],[-0.024485450237989,0.020433099940419,-0.14507375657558]],[[0.0090826898813248,-0.13644523918629,-0.20583686232567],[0.052867539227009,0.032085072249174,-0.11299737542868],[0.068969205021858,-0.1405703574419,-0.24519938230515]],[[0.084894515573978,-0.073467060923576,-0.047140322625637],[0.066920258104801,0.016784768551588,-0.036575064063072],[0.011949012055993,-0.13299515843391,-0.1984004676342]],[[0.0035591670311987,0.03577782958746,0.042598325759172],[-0.13770325481892,0.0028862338513136,-0.027616610750556],[0.068369202315807,0.15455801784992,0.13474602997303]],[[-0.036448828876019,0.091889247298241,0.25060310959816],[-0.011224939487875,-0.044010397046804,0.055340580642223],[-0.30137729644775,-0.051914013922215,0.10167031735182]],[[-0.066368795931339,0.14261572062969,-0.11595281213522],[-0.064634017646313,0.080431692302227,-0.05238825827837],[-0.010932619683444,0.083053067326546,-0.15037617087364]],[[-0.10785979777575,0.14726339280605,0.051307078450918],[-0.087293282151222,0.086557388305664,0.12034806609154],[0.045755255967379,-0.0043057561852038,-0.22793845832348]],[[-0.17012929916382,-0.26765897870064,0.067588493227959],[-0.094391971826553,-0.22701443731785,0.12333350628614],[0.22850574553013,-0.0049419500865042,-0.09368110448122]],[[-0.063629366457462,-0.072670631110668,-0.15626199543476],[0.11705247312784,0.030678229406476,0.10402923822403],[0.038255997002125,0.080173633992672,-0.2511730492115]],[[0.040557783097029,0.025911811739206,0.051442865282297],[-0.045112028717995,-0.011486309580505,-0.11167962104082],[0.16620054841042,0.2263822555542,-0.025208119302988]],[[-0.0075573236681521,0.099789172410965,-0.26687273383141],[0.088490843772888,0.035380505025387,-0.26264744997025],[-0.30571705102921,0.052865471690893,-0.34060773253441]],[[-0.20115159451962,-0.16237561404705,-0.089129395782948],[0.025593154132366,0.10973536968231,0.081199571490288],[-0.057530019432306,-0.014778546988964,0.008424467407167]],[[-0.15970049798489,0.011325905099511,0.093156389892101],[-0.049208421260118,0.11730943620205,0.041875347495079],[-0.0074982573278248,0.27548694610596,0.10946110635996]],[[-0.25836479663849,0.0059946835972369,0.039697460830212],[-0.18074251711369,-0.0050797546282411,0.12120778858662],[-0.2128251940012,-0.017493054270744,0.11708704382181]],[[0.095259808003902,0.0030238372273743,-0.075775325298309],[0.011783584021032,-0.030100995674729,-0.12433615326881],[0.22407698631287,0.048165544867516,-0.1333194822073]],[[-0.065944999456406,0.057712115347385,-0.067672587931156],[-0.14827771484852,-0.13324575126171,-0.01484380569309],[-0.027195516973734,-0.11763968318701,-0.06158784031868]],[[0.090378008782864,-0.073784835636616,0.072427846491337],[0.039639972150326,-0.13630846142769,0.083641357719898],[0.042497400194407,-0.051795601844788,0.11642219871283]],[[0.027289355173707,0.21421629190445,0.1049247533083],[-0.17964619398117,-0.088192895054817,0.095326758921146],[0.0094747105613351,-0.0081491367891431,-0.0091552855446935]],[[0.10922434180975,0.062864080071449,0.013577258214355],[-0.055826332420111,-0.12672902643681,-0.013951872475445],[0.057621460407972,-0.0053529259748757,-0.12741203606129]],[[0.0018650513375178,0.019863732159138,-0.014128111302853],[-0.10744507610798,-0.033334795385599,0.12874756753445],[-0.22037251293659,0.067534610629082,-0.01338928937912]],[[0.13108012080193,0.06610281765461,-0.074006952345371],[0.12304527312517,-0.12160580605268,0.036684952676296],[-0.11047293245792,-0.22864471375942,-0.013320846483111]],[[-0.014082289300859,-0.19139911234379,-0.0019125463441014],[0.025135593488812,-0.024708142504096,0.058048911392689],[-0.091950654983521,0.1035066768527,-0.12905833125114]],[[0.24419963359833,0.081542156636715,-0.02022272720933],[-0.030900567770004,-0.042337443679571,-0.01461080275476],[-0.094781182706356,0.075349003076553,0.036554921418428]],[[-0.036690440028906,0.072551913559437,0.034222401678562],[-0.0090479450300336,0.068597733974457,-0.11264254152775],[-0.00027534540276974,0.0070214518345892,-0.10047496110201]],[[-0.04143101349473,-0.0090102897956967,-0.046776447445154],[0.033142287284136,0.14905112981796,0.023862870410085],[-0.14852567017078,0.081678912043571,-0.037359960377216]],[[-0.048410218209028,-0.11960514634848,-0.013942526653409],[-0.18660412728786,0.1286963224411,-0.052872240543365],[-0.12407776713371,-0.013331688940525,-0.031124446541071]],[[-0.0082251811400056,0.050529006868601,0.060026559978724],[-0.028777936473489,-0.072847984731197,-0.1136576384306],[-0.093449763953686,-0.18218667805195,-0.044380277395248]],[[0.059661708772182,0.027118725702167,-0.097715564072132],[-0.037239946424961,0.066617608070374,-0.098516270518303],[0.28065630793571,-0.044496089220047,-0.35545870661736]],[[-0.10479126125574,-0.039012562483549,0.032345715910196],[-0.11596711724997,0.055047318339348,-0.033353745937347],[0.12660005688667,0.24119135737419,-0.032992955297232]],[[0.19975115358829,0.022055808454752,-0.0083069363608956],[-0.089293882250786,-0.095169514417648,-0.029260342940688],[-0.18386666476727,-0.13020320236683,-0.13722836971283]],[[-0.040110498666763,-0.10145645588636,-0.0064569376409054],[-0.048966366797686,-0.092110812664032,0.12038987129927],[0.0093435849994421,0.015159513801336,-0.024858243763447]],[[0.27414238452911,0.073489435017109,-0.053141433745623],[0.095267400145531,-0.025960361585021,0.019670335575938],[0.098331734538078,0.021950343623757,0.073114350438118]],[[0.029847396537662,0.057500958442688,-0.024545269086957],[0.057285625487566,-0.014609217643738,0.099987894296646],[0.080019950866699,-0.035971075296402,0.25440868735313]],[[-0.12723465263844,-0.13104282319546,-0.13215591013432],[-0.0026528190355748,0.12073989957571,-0.10835601389408],[-0.11647446453571,0.02838958799839,-0.036595921963453]],[[0.019390683621168,0.012293174862862,0.14862670004368],[0.035321824252605,-0.089894533157349,-0.078916817903519],[0.070960782468319,0.077041834592819,-0.057477734982967]],[[0.20124933123589,0.084011420607567,0.025629675015807],[-0.0026687651406974,0.00092415849212557,-0.0073294914327562],[-0.078955829143524,0.071397103369236,-0.064994029700756]],[[-0.072321467101574,-0.014315620996058,-0.095796503126621],[0.012970769777894,-0.030615657567978,-0.18743479251862],[0.025030167773366,0.074042089283466,-0.1377112865448]],[[-0.094901047646999,0.086579360067844,0.085902534425259],[-0.090025782585144,-0.046307649463415,-0.12316694110632],[-0.019208412617445,-0.067511916160583,-0.026205198839307]],[[-0.044371966272593,-0.15358307957649,0.27141657471657],[0.26056322455406,-0.022502038627863,0.19240641593933],[0.000459014903754,0.0089388079941273,-0.035597629845142]],[[0.10917276889086,-0.019781457260251,-0.08070857077837],[-0.0080101983621716,-0.032573636621237,-0.015132498927414],[0.070776000618935,-0.016235088929534,-0.017719740048051]],[[0.013674579560757,0.14245872199535,-0.0014778234763071],[0.19037564098835,0.059821747243404,-0.01695866510272],[0.02426921389997,-0.050509516149759,-0.069440178573132]],[[-0.076891623437405,-0.081972196698189,-0.065617479383945],[-0.027831543236971,0.070749267935753,-0.025600623339415],[0.14811137318611,0.065741665661335,-0.14422281086445]],[[-0.031178690493107,-0.0071522435173392,0.081992298364639],[-0.015853574499488,-0.011792565695941,-0.14585562050343],[0.015850326046348,0.11130955070257,0.052538797259331]],[[0.024218199774623,-0.12886063754559,-0.0074968175031245],[-0.1310149282217,0.012009111233056,0.063402600586414],[-0.05446369946003,0.085851229727268,0.082977458834648]],[[-0.13657350838184,-0.09447342902422,-0.053590226918459],[-0.01783112809062,-0.10604316741228,-0.098038129508495],[-0.022839304059744,-0.092708371579647,-0.0062618460506201]],[[-0.072617344558239,-0.018047040328383,-0.07329697906971],[-0.1410059183836,-0.06063748896122,-0.20489911735058],[0.030472166836262,0.17054916918278,0.076947592198849]],[[0.045787934213877,-0.00046950558316894,-0.049216274172068],[0.061724785715342,-0.010745720937848,-0.028706395998597],[0.12365612387657,-0.095103420317173,0.11865083128214]],[[-0.14922797679901,0.051496658474207,-0.0038912470918149],[-0.088449329137802,-0.0056332270614803,0.026016134768724],[-0.10823767632246,0.014082110486925,0.012445660308003]],[[0.12936906516552,0.021439919248223,0.11601925641298],[0.049565941095352,0.016936047002673,0.010665261186659],[-0.30184268951416,-0.054873149842024,0.025091093033552]],[[0.12449164688587,0.028565617278218,0.11253532022238],[-0.14515474438667,0.025886457413435,0.073710471391678],[0.32462453842163,0.10837991535664,-0.030485851690173]],[[0.0068410621024668,-0.025822406634688,0.14474931359291],[0.061512339860201,0.093322955071926,-0.11548107862473],[0.091671660542488,0.031718980520964,0.010358755476773]],[[0.042718134820461,0.13655389845371,-0.29636690020561],[-0.062279041856527,0.0057153236120939,-0.17237484455109],[0.014512929134071,-0.061920341104269,0.085579432547092]],[[0.25561413168907,-0.11717664450407,-0.059356302022934],[0.044443100690842,0.1170579791069,0.11093091219664],[-0.008430665358901,0.1039674282074,0.12243769317865]],[[0.24011661112309,0.24838636815548,0.30028638243675],[0.14980660378933,0.11361756175756,0.023698925971985],[-0.040330369025469,0.056635409593582,0.05963583663106]],[[-0.13334973156452,-0.028148816898465,-0.0018776759970933],[0.018671067431569,0.021042613312602,0.0075435964390635],[-0.16128252446651,0.080097787082195,-0.11268615722656]],[[0.16682036221027,-0.1193168759346,0.077569171786308],[-0.10432334989309,-0.088895492255688,0.068785347044468],[0.032026614993811,-0.073427855968475,0.018310718238354]],[[-0.049482654780149,0.078517012298107,0.0067866067402065],[-0.023661695420742,0.076213665306568,0.068431548774242],[0.055011682212353,-0.041255049407482,0.077650956809521]],[[-0.02187243103981,-0.0187075920403,0.23948158323765],[-0.034341517835855,-0.044269569218159,-0.083769373595715],[-0.061622966080904,0.083169728517532,0.10248274356127]],[[-0.067030146718025,0.033985771238804,0.0069298474118114],[0.12935818731785,0.025690592825413,-0.056639831513166],[-0.0081456666812301,-0.010491409339011,-0.12615822255611]],[[-0.19031429290771,-0.14927622675896,-0.09188698977232],[-0.025625990703702,-0.0040168268606067,-0.099215939640999],[-0.23437425494194,0.092950955033302,0.052901688963175]],[[-0.13524754345417,-0.010020182467997,0.14764370024204],[0.011550563387573,0.056462481617928,0.03771123662591],[-0.068181619048119,0.070641331374645,0.036587484180927]],[[-0.072100758552551,0.049800552427769,-0.052822384983301],[0.024451488628983,-0.019469380378723,0.01810709387064],[0.10771100223064,0.07811001688242,-0.12166471034288]],[[0.039260540157557,0.052866522222757,0.30946660041809],[-0.087322443723679,0.053054437041283,0.2076558470726],[0.069169856607914,0.15583811700344,0.13600166141987]],[[-0.030092637985945,0.17375326156616,0.073780208826065],[-0.016320711001754,-0.093101359903812,0.041792873293161],[0.17329807579517,-0.061502180993557,-0.1071517765522]],[[0.0081084370613098,-0.20013645291328,0.14131706953049],[0.062367152422667,0.0024211027193815,0.07175151258707],[-0.032333802431822,0.081041917204857,0.1662073135376]],[[-0.28651285171509,0.00069173279916868,0.17231644690037],[-0.1771679520607,-0.032466735690832,-0.074999585747719],[-0.13539639115334,0.053188558667898,0.01326141692698]],[[0.18851719796658,0.056518882513046,0.025425430387259],[0.084995925426483,-0.032473869621754,0.085261039435863],[0.12466756254435,-0.086399577558041,0.089351303875446]],[[0.056493636220694,0.10333729535341,-0.08250879496336],[-0.09174357354641,-0.12284046411514,-0.1831369549036],[-0.031536526978016,0.004965987522155,-0.22536467015743]],[[-0.094451367855072,0.058670237660408,0.14360409975052],[-0.0085381977260113,0.060471795499325,0.0312340259552],[0.00064652197761461,0.1133119687438,-0.0087639922276139]],[[-0.084462851285934,0.12620116770267,0.052218470722437],[0.11823613941669,0.092466093599796,-0.066438645124435],[0.021090857684612,0.0017846890259534,0.05198247730732]],[[-0.10615173727274,-0.17906872928143,-0.05781763792038],[0.11155324429274,0.052869908511639,0.11219762265682],[0.18994647264481,0.05094550549984,-0.0637152120471]],[[0.014419043436646,-0.056974772363901,0.054348770529032],[-0.091017916798592,-0.1148042678833,-0.097424574196339],[0.2637505531311,-0.036704488098621,-0.058092467486858]],[[0.11402574181557,-0.12047999352217,-0.15475504100323],[-0.028651794418693,-0.0045383130200207,0.22656600177288],[-0.042715989053249,-0.04297786578536,-0.072246320545673]],[[0.010016054846346,-0.057000707834959,0.0043914304114878],[0.030072685331106,0.011737214401364,-0.0019609024748206],[-0.0049118688330054,0.07239244133234,-0.015422583557665]],[[-0.017755806446075,0.044435974210501,0.11180502176285],[0.083275474607944,0.01420280802995,0.04580994695425],[0.22472091019154,-0.039656084030867,-0.10801348090172]],[[0.047587297856808,-0.10088037699461,-0.053291920572519],[0.1740892380476,-0.080512404441833,-0.11390193551779],[0.058864433318377,0.11168146878481,-0.19914379715919]],[[0.044584527611732,-0.00065509753767401,-0.16220079362392],[-0.086105346679688,-0.043207466602325,0.099478550255299],[-0.12388110160828,0.0020873863250017,-0.036761768162251]],[[-0.011866200715303,-0.067330181598663,-0.049276780337095],[0.033718470484018,0.41339337825775,0.060909293591976],[0.0020142118446529,0.043035198003054,-0.030355194583535]],[[0.02186743170023,-0.13551290333271,-0.22714814543724],[-0.034608125686646,0.034953832626343,-0.18230649828911],[0.086216412484646,-0.012877451255918,0.074475824832916]],[[0.01604331843555,-0.012132768519223,0.035810813307762],[0.1609515696764,0.010329196229577,0.026856794953346],[0.060532823204994,-0.067660003900528,0.015705123543739]],[[-0.12019633501768,-0.15908662974834,-0.10629599541426],[-0.1842143535614,-0.21592842042446,-0.021289475262165],[0.0036563437897712,-0.18204064667225,-0.010872419923544]],[[-0.025507075712085,-0.083546109497547,0.08545508235693],[0.12171786278486,0.19789154827595,-0.012277732603252],[0.14687819778919,0.18448215723038,0.039731994271278]],[[-0.041945978999138,-0.21913729608059,-0.16115282475948],[0.11727128177881,-0.11006785929203,-0.041664894670248],[0.06694919615984,-0.25784412026405,0.13111887872219]],[[-0.18801999092102,0.11256486922503,0.14827539026737],[-0.03971378877759,0.10996563732624,-0.026796355843544],[0.13512589037418,-0.024006970226765,-0.17529088258743]],[[0.035773988813162,-0.14418865740299,-0.016499847173691],[0.0052527212537825,0.18257176876068,0.1751339584589],[-0.19852702319622,0.020731050521135,0.10527338087559]],[[0.064207307994366,0.075478747487068,0.0094139063730836],[0.18382760882378,-0.041565518826246,-0.047811072319746],[0.058441463857889,-0.038488160818815,-0.17198088765144]],[[0.026623753830791,0.10223752260208,0.11997224390507],[-0.040664326399565,0.077225930988789,-0.0086583578959107],[-0.035597112029791,-0.025007907301188,0.028089214116335]],[[-0.13403637707233,-0.081716626882553,-0.060406267642975],[0.075879417359829,-0.034345477819443,-0.12228034436703],[-0.27600252628326,0.031055612489581,-0.0059301848523319]],[[0.32827487587929,0.099998474121094,-0.012696492485702],[0.22531239688396,0.096820898354053,-0.063187338411808],[0.27680638432503,0.14212563633919,-0.089856304228306]],[[-0.039086736738682,-0.15338543057442,-0.066781714558601],[0.054799128323793,0.11898546665907,0.035303507000208],[0.12257710844278,-0.15158319473267,-0.082226976752281]],[[0.02939073368907,-0.0018692857120186,-0.11181804537773],[0.0035851923748851,0.089791648089886,0.071141324937344],[0.14282493293285,0.18786709010601,0.0012372849741951]],[[-0.28287094831467,-0.13221986591816,-0.064052887260914],[-0.027602463960648,-0.0024919263087213,0.17863336205482],[-0.08293853700161,0.09848740696907,0.21134069561958]],[[0.17917388677597,0.24911357462406,-0.1629760414362],[0.014446876011789,-0.060296788811684,-0.085172459483147],[-0.038446418941021,-0.044304315000772,0.09373864531517]],[[0.01728855445981,-0.031153390184045,0.028519010171294],[-0.082434847950935,-0.12415330857038,0.071529388427734],[0.06978802382946,-0.015287114307284,-0.24710635840893]],[[-0.073790192604065,-0.15906921029091,-0.17665114998817],[-0.046571079641581,0.011525995098054,-0.03892095759511],[0.066723123192787,0.036554746329784,-0.10387472808361]],[[0.0040159001946449,0.020797275006771,0.062410317361355],[0.1082181930542,-0.068396173417568,0.052863977849483],[0.13585957884789,-0.13336433470249,0.06971001625061]],[[0.17152011394501,-0.0047042882069945,-0.048623647540808],[0.054831851273775,-0.094734340906143,-0.16463689506054],[0.0013172827893868,-0.088373623788357,0.031830362975597]],[[-0.098654977977276,0.070804707705975,-0.04066901281476],[0.031785029917955,0.1392970085144,0.033816892653704],[-0.0502570271492,-0.027987001463771,-0.069136135280132]],[[-0.04658430442214,-0.17181257903576,0.024269480258226],[-0.037815693765879,-0.072349958121777,0.063523814082146],[-0.036678403615952,0.01461947709322,0.033305544406176]],[[0.14682738482952,0.082030840218067,-0.14047279953957],[0.014613713137805,0.041377428919077,0.07063540071249],[-0.018928375095129,-0.11209547519684,-0.13738699257374]],[[-0.12123208492994,0.01203325856477,0.14321230351925],[-0.12381676584482,0.0074359178543091,0.084664769470692],[-0.061651106923819,-0.13708791136742,-0.1363285779953]],[[0.22300803661346,-0.06033356115222,0.14200982451439],[-0.078256629407406,-0.15957364439964,0.067032307386398],[-0.10745987296104,-0.012280927039683,0.027495335787535]],[[0.022184390574694,-0.0057766577228904,-0.0058412686921656],[-0.036696795374155,-0.083959378302097,0.056542109698057],[-0.13656201958656,-0.080654054880142,0.15254628658295]],[[0.14495448768139,-0.014421887695789,-0.032043118029833],[0.010671659372747,-0.032982606440783,0.01883302628994],[-0.25117483735085,-0.0046212445013225,-0.072500623762608]],[[0.040358319878578,0.061775717884302,0.040845301002264],[0.0023705884814262,0.094173938035965,0.038400430232286],[0.038830615580082,0.03281344473362,-0.08914016187191]],[[-0.15017679333687,-0.12362976372242,0.03900720179081],[-0.0056807668879628,-0.10249730944633,-0.074653066694736],[0.066470190882683,0.072295740246773,0.074213169515133]],[[0.19990369677544,0.19642743468285,-0.042504131793976],[0.056066442281008,-0.066303759813309,0.028770193457603],[-0.094350457191467,-0.0050433301366866,-0.018468121066689]],[[0.11397793143988,0.23066517710686,0.21295131742954],[0.045328047126532,0.0073390058241785,-0.11223898082972],[0.14004008471966,0.19173161685467,0.11671082675457]],[[0.023130537942052,0.13244968652725,-0.00014444005500991],[0.07012514770031,0.067664198577404,0.0064564705826342],[0.21134582161903,-0.04721387848258,0.071558617055416]],[[-0.10557373613119,-0.066961362957954,-0.046896673738956],[-0.044939775019884,-0.10654720664024,0.034805230796337],[-0.14826327562332,-0.1051292270422,-0.02724307961762]],[[-0.12350986897945,0.033301815390587,0.072820030152798],[-0.071911670267582,0.06005135551095,0.03782944381237],[-0.23798626661301,0.048965837806463,-0.035241030156612]],[[-0.11908300220966,0.047345463186502,-0.064573474228382],[0.10882487148046,0.016914812847972,-0.059331968426704],[0.074288509786129,-0.18823359906673,0.17295631766319]],[[0.083642698824406,-0.028017809614539,0.061591420322657],[-0.051287714391947,0.14990980923176,-0.04812790080905],[-0.28085526823997,0.045631896704435,0.015368992462754]],[[-0.015930656343699,0.015853984281421,0.053231842815876],[0.0074835135601461,0.018745141103864,-0.062096633017063],[-0.021009946241975,-0.10578522086143,0.020741112530231]],[[0.11204095184803,0.077685318887234,0.022106908261776],[-0.034806061536074,0.00083117658505216,0.0394516736269],[-0.0026920330710709,-0.032336380332708,-0.044515453279018]]],[[[0.033815242350101,0.043475098907948,0.026221564039588],[0.18284203112125,0.12816232442856,-0.012846655212343],[0.2049755603075,0.012391679920256,-0.010478129610419]],[[-0.028156660497189,0.048753850162029,-0.066092155873775],[-0.028014313429594,-0.0083436341956258,-0.16831962764263],[0.026045629754663,0.066235721111298,-0.061223737895489]],[[-0.038138154894114,0.1155237480998,-0.23920339345932],[0.13620784878731,-0.10515146702528,0.15106774866581],[-0.074489161372185,0.073083408176899,-0.26094406843185]],[[-0.029830539599061,0.10499233007431,-0.12066699564457],[-0.016923060640693,0.096054792404175,0.14422808587551],[-0.071191154420376,-0.1686534434557,0.043236937373877]],[[0.11537576466799,0.023802747949958,-0.00610555941239],[0.0035382830537856,-0.040407780557871,0.048075079917908],[0.062522813677788,0.13042867183685,0.091163717210293]],[[0.01970611140132,-0.079733118414879,0.11103166639805],[0.035235080868006,-0.049993749707937,-0.027458380907774],[0.00042108417255804,-0.10099082440138,-0.011895630508661]],[[0.10390858352184,0.054682094603777,-0.061111960560083],[-0.001985298935324,0.018718095496297,-0.12979005277157],[0.0063473139889538,0.062522999942303,0.015130043961108]],[[-0.082118198275566,0.12201518565416,-0.0029226199258119],[-0.036128029227257,-0.15757381916046,0.039961598813534],[-0.024757517501712,-0.086200997233391,-0.099621340632439]],[[-0.01202981825918,0.08254624158144,0.0881407558918],[-0.014175122603774,0.064877606928349,-0.013550858013332],[0.08181232213974,0.098117634654045,-0.13153445720673]],[[0.13072650134563,0.079795442521572,-0.017401063814759],[-0.0713911652565,0.10595365613699,-0.12179414182901],[-0.026652446016669,-0.089735329151154,-0.31723305583]],[[0.1064333319664,-0.034887492656708,0.12351647019386],[0.13411566615105,0.11015676707029,0.025378994643688],[0.11467742174864,0.07346123456955,0.10345643758774]],[[-0.1308556497097,-0.16521985828876,-0.19356986880302],[0.059645012021065,0.13417267799377,0.14073264598846],[-0.095645032823086,-0.08851807564497,-0.0089399227872491]],[[-0.044833987951279,0.019408494234085,-0.0537044480443],[0.12831868231297,0.084588311612606,0.0077172610908747],[0.043808154761791,0.14784795045853,0.29901283979416]],[[-0.029500102624297,-0.081227481365204,-0.052584700286388],[-0.067475624382496,-0.09125854074955,-0.005722819827497],[0.13297425210476,0.055424757301807,0.017796989530325]],[[-0.1029195562005,0.032661344856024,0.21600635349751],[-0.091395892202854,-0.053518377244473,0.12282126396894],[0.073510222136974,0.030935250222683,0.032233901321888]],[[0.021939311176538,-0.051083579659462,0.022894384339452],[0.064569294452667,-0.034149166196585,-0.043863534927368],[0.008553683757782,-0.013953535817564,-0.038924898952246]],[[-0.026914885267615,-0.1563151627779,-0.15550495684147],[-0.076784923672676,-0.00048799053183757,-0.065902300179005],[-0.0064585888758302,0.015371103771031,0.023684157058597]],[[-0.035450723022223,0.046888433396816,-0.039599493145943],[0.097901478409767,-0.02232638001442,-0.028095733374357],[-0.025375962257385,-0.15407599508762,0.0067450609058142]],[[-0.033819448202848,0.058493260294199,0.06668795645237],[-0.13908913731575,0.0043713375926018,-0.10372918844223],[-0.071977488696575,0.047625459730625,0.16756051778793]],[[0.16981481015682,-0.15500108897686,0.10415544360876],[0.015674769878387,0.0021983757615089,-0.13205583393574],[0.036495968699455,-0.011696931906044,-0.027824301272631]],[[-0.037436030805111,0.055711805820465,-0.03985396027565],[-0.12998874485493,-0.18911902606487,-0.014357243664563],[-0.25549799203873,-0.10860416293144,-0.15774776041508]],[[0.13199871778488,0.064818546175957,0.070219956338406],[-0.064664885401726,-0.1066974028945,-0.034503377974033],[-0.29101634025574,-0.16049179434776,-0.049019303172827]],[[-0.098884582519531,-0.036432005465031,0.064033947885036],[-0.056991577148438,-0.03436066955328,0.0019168147118762],[-0.01169546879828,-0.021590629592538,0.12820337712765]],[[-0.15729346871376,-0.048613037914038,0.03145744279027],[-0.043112557381392,-0.034171964973211,0.20857256650925],[0.22611989080906,0.12282983958721,0.18361677229404]],[[-0.031229862943292,0.063192002475262,0.10539457947016],[-0.063858635723591,-0.062183648347855,-0.050708949565887],[0.089883796870708,-0.077848330140114,-0.034747418016195]],[[-0.057717029005289,-0.043761216104031,-0.069778583943844],[-0.10971710830927,-0.030435912311077,-0.11014759540558],[-0.218989610672,0.037375047802925,-0.26443275809288]],[[0.16765397787094,0.038223147392273,0.084241725504398],[0.083983704447746,-0.060812644660473,0.011179947294295],[0.050179477781057,0.0045286519452929,-0.017261020839214]],[[-0.013977874070406,0.17931492626667,0.048425197601318],[0.05591694265604,-0.0048450715839863,-0.012699921615422],[-0.0016494552837685,-0.025651451200247,0.18959288299084]],[[-0.071042940020561,-0.062568724155426,-0.055521752685308],[-0.053611256182194,-0.073134496808052,0.073620937764645],[-0.050069469958544,-0.1013011559844,-0.061800684779882]],[[0.096822611987591,0.13744714856148,0.028223732486367],[-0.14730848371983,-0.084559321403503,0.045233093202114],[-0.055303033441305,-0.073424749076366,-0.11963348835707]],[[-0.098752178251743,-0.090932667255402,-0.035861991345882],[-0.10569068789482,-0.065763898193836,-0.01863744482398],[-0.065500490367413,-0.072671674191952,-0.049286667257547]],[[0.069610573351383,0.16930946707726,0.10920752584934],[0.13184912502766,-0.025141654536128,-0.10203640162945],[0.023258950561285,-0.039116095751524,0.04278838634491]],[[-0.051679506897926,-0.013531987555325,0.16469998657703],[0.15137001872063,-0.043170936405659,-0.042753465473652],[0.022513426840305,-0.0088085159659386,-0.14113296568394]],[[0.066718466579914,0.023100096732378,-0.019524339586496],[0.0076152011752129,-0.013967682607472,0.089259698987007],[-0.064814642071724,-0.080177538096905,-0.06535879522562]],[[0.052688803523779,-0.02827949821949,0.061576683074236],[0.041600529104471,-0.0039910064078867,-0.054164122790098],[0.025493927299976,0.026469904929399,-0.0095252050086856]],[[0.1591323018074,0.12951776385307,0.047335166484118],[0.059023939073086,-0.049474433064461,-0.048283435404301],[-0.15113480389118,-0.17657607793808,0.050272699445486]],[[-0.05037273094058,-0.12868919968605,-0.25023770332336],[0.033455554395914,0.021902101114392,-0.039845895022154],[-0.049763705581427,-0.061677910387516,-0.019652966409922]],[[-0.034117050468922,0.077024661004543,-0.015586888417602],[0.030396439135075,-0.014975611120462,0.12332458794117],[-0.071621172130108,-0.067206718027592,-0.060190584510565]],[[-0.15326692163944,0.0018742611864582,0.022859498858452],[-0.027380207553506,0.014730584807694,-0.013939425349236],[0.020936084911227,-0.032463956624269,-0.050640009343624]],[[0.046594772487879,0.015561636537313,-0.040022999048233],[0.044760759919882,0.020037904381752,-0.078013457357883],[0.098297148942947,-0.033385951071978,0.045648414641619]],[[0.042963843792677,0.049356859177351,-0.013251547701657],[-0.044536732137203,-0.038085348904133,-0.052626475691795],[-0.22848843038082,0.11306199431419,0.13836212456226]],[[0.12706081569195,0.21383880078793,0.25211596488953],[-0.023946773260832,-0.16230861842632,0.094403065741062],[0.030546128749847,-0.043988935649395,0.045643709599972]],[[-0.058095443993807,-0.11892756819725,-0.095724456012249],[-0.14928629994392,-0.091427281498909,-0.10352633148432],[-0.12498389929533,-0.19790484011173,-0.22860120236874]],[[0.10490610450506,0.15801964700222,0.018471589311957],[-0.0008434759802185,-0.014487849548459,-0.042590536177158],[-0.048991944640875,-0.061443153768778,-0.0045454478822649]],[[-0.068174608051777,-0.10966356098652,0.032940652221441],[0.043171569705009,0.064570039510727,0.24270777404308],[-0.032718580216169,-0.065881378948689,0.067229047417641]],[[-0.16566586494446,-0.025012869387865,0.056231528520584],[0.015136666595936,-0.05364029482007,-0.028469422832131],[0.0049243457615376,0.035603825002909,0.069838851690292]],[[0.26134067773819,0.018968820571899,0.076662585139275],[-0.0012412214418873,0.054718293249607,-0.033983003348112],[-0.0056043872609735,-0.092155233025551,-0.22465978562832]],[[-0.093797363340855,0.021038185805082,-0.015659224241972],[0.061859540641308,0.043124914169312,0.036062303930521],[-0.029939979314804,-4.9883376050275e-05,-0.034235775470734]],[[-0.097202800214291,-0.0050227358005941,0.0041137975640595],[-0.00044308719225228,0.050617683678865,0.049000967293978],[0.042124826461077,0.024258704856038,-0.033743988722563]],[[-0.059829045087099,0.051801167428493,-0.05907878279686],[-0.0079548554494977,-0.066412873566151,-0.077360309660435],[0.025380544364452,0.015217536129057,-0.052723690867424]],[[-0.089581564068794,-0.10224521905184,-0.045929692685604],[-0.045375872403383,-0.11299023777246,-0.024469835683703],[-0.07703859359026,-0.023697700351477,-0.099674060940742]],[[-0.012436620891094,0.14018855988979,0.11260455101728],[-0.028758242726326,0.0065164160914719,0.0064077530987561],[-0.03409318998456,0.036200277507305,0.059251379221678]],[[0.090223789215088,0.12573648989201,0.038047205656767],[-0.064469866454601,0.075836017727852,-0.0074013755656779],[-0.1246151253581,-0.09620513021946,-0.092801123857498]],[[-0.18780951201916,-0.098258875310421,0.031955949962139],[0.027833614498377,0.015647605061531,0.074054852128029],[0.11709408462048,0.19472563266754,0.24194484949112]],[[0.15189276635647,0.03788910806179,-0.083365492522717],[0.1398941129446,0.018892182037234,0.066266775131226],[-0.015211261808872,-0.07863762229681,-0.037556018680334]],[[-0.041821956634521,0.010299932211637,0.025299273431301],[-0.0099723041057587,0.024680189788342,0.015756027773023],[-0.05230712890625,-0.06340354681015,-0.055801633745432]],[[-0.034516304731369,0.063404515385628,0.10480021685362],[0.004646114539355,-0.0013889076653868,0.10038138926029],[-0.11968570202589,-0.15528193116188,0.071545049548149]],[[-0.061465471982956,-0.022498495876789,-0.024391766637564],[-0.08190056681633,0.02526730671525,-0.033645831048489],[-0.050434529781342,-0.03025852330029,0.024868719279766]],[[-0.024412229657173,0.010857022367418,0.061772499233484],[0.048996847122908,0.064922012388706,-0.041725188493729],[-0.0031381924636662,-0.049920603632927,-0.06810487061739]],[[0.052424941211939,0.035671666264534,-0.17457085847855],[0.058444138616323,0.016503917053342,0.048472367227077],[-0.02278902195394,0.049599878489971,0.038104880601168]],[[0.080640599131584,0.069420218467712,0.091563209891319],[-0.027029749006033,0.057803321629763,0.11763783544302],[0.0022935394663364,-0.043071672320366,0.0025280308909714]],[[0.013298626989126,-0.08441236615181,0.039569322019815],[-0.038303595036268,-0.078314647078514,-0.0080875726416707],[-0.0088186776265502,-0.14871194958687,-0.093654185533524]],[[-0.061650104820728,-0.10789474099874,0.022855043411255],[0.25139400362968,0.057867236435413,0.024180857464671],[-0.070376746356487,0.11665187776089,0.055092882364988]],[[-0.028157841414213,-0.086169943213463,0.024028733372688],[0.028726166114211,0.033634215593338,0.0014512317720801],[0.088342271745205,0.071863770484924,-0.078032374382019]],[[0.09498905390501,0.16074940562248,0.18290744721889],[-0.15629744529724,0.00017004419350997,0.0088092060759664],[-0.051434956490993,-0.047908663749695,0.069795154035091]],[[-0.25164464116096,0.12905703485012,-0.16750979423523],[-0.17391151189804,-0.22726555168629,-0.03472738713026],[-0.17507065832615,0.03992023691535,0.091101065278053]],[[-0.01497786398977,-0.11053533107042,0.16213017702103],[-0.029121492058039,0.059080876410007,-0.116165779531],[0.040880907326937,-0.13561260700226,-0.021265294402838]],[[-0.012436952441931,-0.081042610108852,-0.04542263969779],[-0.053578343242407,0.033036280423403,-0.084787666797638],[-0.040635839104652,-0.01411946862936,0.064502112567425]],[[-0.030385008081794,0.0087636196985841,-0.2983193397522],[-0.061470538377762,-0.11991725862026,-0.15742254257202],[0.010525899939239,-0.029291536659002,-0.087886497378349]],[[-0.036233630031347,0.044343791902065,0.047818757593632],[0.051733925938606,0.051848374307156,0.01258188392967],[0.049329064786434,-0.022244319319725,-0.089533358812332]],[[-0.133235886693,0.043450202792883,-0.010322242043912],[-0.025581246241927,-0.071897447109222,-0.29469656944275],[-0.0036087785847485,-0.029856149107218,-0.055676594376564]],[[-0.15449059009552,-0.083835862576962,-0.24022826552391],[-0.022413179278374,-0.048582922667265,0.018978480249643],[0.00013476528692991,0.062993824481964,0.040219768881798]],[[-0.18676273524761,-0.26491755247116,-0.24058200418949],[-0.20538367331028,-0.027846155688167,-0.11844493448734],[-0.059097543358803,-0.25215566158295,-0.046266619116068]],[[0.0085675707086921,-0.011519719846547,-0.17161293327808],[-0.0065349265933037,-0.084447555243969,0.142972484231],[0.033916503190994,0.025587191805243,0.26445576548576]],[[-0.036869455128908,-0.25421398878098,0.020574510097504],[0.089537300169468,0.078522101044655,-0.08478868752718],[-0.055245865136385,-0.020069316029549,0.037126328796148]],[[0.066349841654301,-0.19877862930298,-0.1537284553051],[0.0093782097101212,-0.09877485781908,-0.202073097229],[-0.033014480024576,0.11041036993265,0.089447148144245]],[[-0.052605219185352,0.18815711140633,0.14122903347015],[0.055420890450478,-0.046450365334749,0.13946205377579],[-0.045133274048567,0.021214492619038,-0.038707215338945]],[[-0.064992725849152,0.16150242090225,-0.03059726767242],[0.064957179129124,-0.045156914740801,0.16710720956326],[-0.01288035325706,-0.058269742876291,-0.062318634241819]],[[-0.11726809293032,-0.20589165389538,0.062988936901093],[-0.014538418501616,0.047666195780039,0.042561456561089],[-0.14206166565418,-0.06829845905304,-0.047011915594339]],[[0.032652694731951,-0.18593417108059,0.038845293223858],[0.03226750716567,0.05112874135375,-0.25698268413544],[-0.047964718192816,-0.027209037914872,-0.067392013967037]],[[0.042619612067938,0.030660286545753,0.033865354955196],[0.13745306432247,0.1982596963644,0.14458179473877],[0.012914827093482,-0.022232074290514,0.039125710725784]],[[-0.039256274700165,-0.0039755553007126,-0.0065334145911038],[-0.073040790855885,0.031231807544827,-0.060727134346962],[0.034181497991085,0.0098962970077991,-0.056559175252914]],[[-0.14325587451458,-0.021186463534832,0.0023944538552314],[0.016923667863011,0.077397838234901,-0.014850022271276],[0.016397207975388,0.0078880647197366,0.052536260336637]],[[-0.037825901061296,-0.08800795674324,-0.026710871607065],[-0.14648382365704,-0.096601314842701,-0.051977291703224],[-0.067830458283424,-0.081228069961071,-0.015830742195249]],[[0.018217792734504,0.10823066532612,0.10273952037096],[0.018988877534866,0.10318056493998,0.15132027864456],[-0.085653133690357,-0.030406231060624,0.031849645078182]],[[0.06809675693512,0.054123319685459,0.056110665202141],[0.092497296631336,0.028424065560102,-0.012807754799724],[-0.051203362643719,-0.060136795043945,-0.11885344982147]],[[-0.067720681428909,-0.00022358533169609,-0.10910940915346],[-0.0084624262526631,0.00062613165937364,0.051722887903452],[0.1717916727066,0.083850972354412,-0.1145271062851]],[[-0.015672160312533,0.14085246622562,0.23584933578968],[-0.17758989334106,-0.20303224027157,0.10616573691368],[-0.090935155749321,-0.093424819409847,0.17666640877724]],[[0.037915751338005,0.086393736302853,-0.1125458702445],[0.073898367583752,0.039380643516779,-0.093696154654026],[0.0042837834917009,0.0013485103845596,-0.14381696283817]],[[-0.010950589552522,0.12246981263161,-0.12916234135628],[-0.026949809864163,-0.15124554932117,-0.19373668730259],[-0.20675905048847,-0.19028180837631,-0.08383571356535]],[[0.11740813404322,0.091535739600658,0.03527220711112],[0.069345280528069,0.055659662932158,-0.14071078598499],[0.099418833851814,-0.034307684749365,-0.053813979029655]],[[0.0086010219529271,0.065057806670666,-0.023970905691385],[-0.13788121938705,-0.070641182363033,0.0098895458504558],[-0.10170911252499,-0.03725116327405,-0.068374522030354]],[[-0.084898874163628,-0.02993313036859,-0.066991716623306],[0.066034227609634,0.099550515413284,-0.042090643197298],[-0.061214335262775,-0.062538683414459,-0.038969092071056]],[[0.088508546352386,0.11695110797882,0.027786631137133],[-0.047574657946825,-0.07630131393671,-0.033018197864294],[-0.055947192013264,-0.057019129395485,-0.036972045898438]],[[0.073243997991085,-0.055941466242075,0.028046194463968],[0.064741097390652,-0.086186178028584,0.10043764859438],[-0.02160582318902,-0.018065888434649,0.017478030174971]],[[-0.06727921962738,-0.058532867580652,0.082571685314178],[0.11220382153988,0.075672514736652,0.20729592442513],[0.076299533247948,-0.033272981643677,0.1321978867054]],[[0.011589929461479,0.047576777637005,-0.030392065644264],[-0.073274083435535,0.038466442376375,0.13132365047932],[0.14494515955448,0.02281522937119,0.089325375854969]],[[0.042588599026203,0.064443960785866,-0.14632149040699],[0.074989028275013,0.029624989256263,-0.029109345749021],[0.072000801563263,0.071576051414013,-0.070999182760715]],[[-0.069388724863529,-0.069870568811893,0.051208101212978],[0.026279628276825,-0.035315409302711,-0.10137416422367],[0.019891547039151,-0.067318052053452,-0.019997546449304]],[[0.03236323595047,0.012244385667145,0.0017146196914837],[-0.059252519160509,-0.14422756433487,-0.15192759037018],[0.083704352378845,-0.090125516057014,-0.0056094015017152]],[[-0.090206027030945,-0.21896195411682,-0.072794549167156],[-0.090159125626087,-0.0097390376031399,-0.049795068800449],[0.064425610005856,0.036175064742565,-0.10213036090136]],[[-0.10167364776134,0.081704214215279,0.26533082127571],[0.021028142422438,0.067406043410301,0.081849791109562],[-0.091092243790627,-0.014096915721893,0.076728448271751]],[[-0.17827247083187,-0.014582959003747,0.24521927535534],[0.060174647718668,-0.1652787476778,0.032564710825682],[0.00091724283993244,0.028258765116334,0.032354012131691]],[[-0.17287489771843,-0.022308886051178,-0.0026052659377456],[0.095737159252167,-0.055945347994566,0.011037481948733],[0.088546931743622,0.068977549672127,0.0069065010175109]],[[-0.050002533942461,-0.14074017107487,-0.16406753659248],[0.041113954037428,-0.098657369613647,-0.17926390469074],[0.053274784237146,-0.011099677532911,-0.01329611428082]],[[0.057910896837711,0.055368084460497,0.083202362060547],[-0.12921141088009,0.11519587039948,-0.13881647586823],[0.0053886333480477,0.10293202102184,-0.11039133369923]],[[-0.040740508586168,0.069363355636597,-0.12408650666475],[0.087893053889275,-0.041350804269314,0.051880922168493],[-0.018325164914131,-0.096533134579659,-0.19816739857197]],[[-0.02973759919405,0.0090779382735491,-0.052864100784063],[0.073878169059753,-0.088618144392967,-0.040183044970036],[-0.017937820404768,0.022170232608914,-0.01714095659554]],[[-0.0059029711410403,-0.035984020680189,-0.029470961540937],[-0.17294350266457,0.02909935079515,-0.019581520929933],[-0.093370102345943,0.072064235806465,0.069302685558796]],[[0.039141431450844,0.082125082612038,0.052684251219034],[0.11895357072353,0.086382441222668,-0.064078152179718],[-0.015212849713862,-0.059750080108643,0.052063021808863]],[[-0.12470929324627,-0.04849710687995,0.071427047252655],[-0.038430217653513,-0.088131442666054,-0.024606639519334],[0.025488406419754,0.030380021780729,0.095209524035454]],[[-0.065762534737587,-0.056678079068661,0.0059706280007958],[0.0069637368433177,0.0051016341894865,0.0084739588201046],[0.019078634679317,0.20390670001507,0.0027848661411554]],[[0.0069724256172776,-0.15831442177296,-0.033482644706964],[0.090707130730152,-0.083898067474365,0.00013500644126907],[0.11943985521793,-0.036551374942064,-0.016137631610036]],[[-0.079387962818146,0.027765097096562,-0.11093229800463],[-0.047705236822367,0.023619400337338,-0.037055660039186],[-0.065098747611046,-0.056176215410233,-0.13471709191799]],[[0.066805370151997,-0.016206782311201,-0.047076620161533],[-0.045400150120258,-0.031098406761885,-0.16820046305656],[-0.07647879421711,0.12258016318083,-0.0012695462210104]],[[-0.0079510221257806,-0.15345264971256,0.1074091270566],[-0.041734293103218,0.0069226184859872,-0.041793834418058],[0.0009890275541693,-0.06721793115139,0.0098802214488387]],[[0.021547749638557,0.062926284968853,0.0033551047090441],[-0.097778663039207,-0.042927779257298,-0.10527838766575],[0.031969327479601,-0.014291291125119,0.03548938781023]],[[-0.031184801831841,0.065608724951744,0.1184191852808],[-0.0071479184553027,0.028036575764418,0.082186467945576],[-0.13582408428192,0.0018923240713775,0.11698653548956]],[[-0.034015219658613,0.069529660046101,0.096039846539497],[-0.11079300940037,-0.033724199980497,-0.013801725581288],[0.089269205927849,0.04837354272604,-0.052136663347483]],[[-0.012903023511171,-0.004612329415977,0.0079037165269256],[0.05192643404007,0.18846274912357,0.10162930935621],[0.041615534573793,0.14068710803986,0.21937768161297]],[[0.0057814377360046,-0.014471533708274,-0.13148713111877],[-0.028063861653209,-0.013353777118027,0.0041325972415507],[0.0076369838789105,-0.12804932892323,-0.11061080545187]],[[0.016418335959315,0.045734971761703,0.13648030161858],[0.044761184602976,0.064180992543697,0.13009136915207],[-0.022754069417715,0.087227553129196,0.02511171810329]],[[-0.093157552182674,-0.025171332061291,-0.082435965538025],[-0.04240020737052,-0.076265074312687,-0.026522878557444],[-0.015592476353049,-0.018407871946692,-0.06774115562439]],[[-0.0088051818311214,0.025760963559151,0.087745368480682],[-0.070100471377373,0.020947132259607,0.048869509249926],[0.032604120671749,0.12245828658342,-0.12618392705917]],[[-0.16604904830456,-0.036438260227442,-0.16817712783813],[0.070737913250923,-0.023093584924936,-0.099956035614014],[0.011320951394737,-0.10846929252148,-0.018147651106119]],[[-0.011112404987216,-0.045646078884602,-0.037578787654638],[0.091478928923607,0.093939781188965,-0.010350218042731],[0.00021990868845023,0.14382220804691,0.0085333008319139]],[[0.23626630008221,-0.10007126629353,-0.091280065476894],[-0.04420904815197,-0.064237803220749,-0.18002793192863],[0.024558631703258,0.11568243056536,-0.054096534848213]],[[0.023220585659146,-0.011241726577282,0.1613290309906],[-0.072245247662067,-0.080770611763,-0.04601452127099],[0.10827188193798,-0.039867982268333,0.066010698676109]]],[[[0.042380847036839,0.18008421361446,-0.12390229105949],[-0.0019158479990438,0.073863744735718,-0.085807681083679],[0.27161422371864,-0.081518992781639,-0.016016753390431]],[[-0.11812641471624,-0.086185500025749,-0.068386167287827],[-0.18691079318523,0.038932479918003,0.11067525297403],[0.059356588870287,-0.041271232068539,-0.11816019564867]],[[0.049155313521624,0.00044524177792482,0.17986525595188],[0.1424595862627,-0.16674849390984,0.23753693699837],[0.15365062654018,0.1055184751749,0.1920713186264]],[[-0.2799776494503,-0.014587420038879,-0.208241507411],[-0.30372053384781,-0.019175861030817,-0.090081505477428],[-0.054585423320532,-0.071863397955894,0.14403605461121]],[[0.14407758414745,0.076101392507553,0.051810052245855],[-0.01247669570148,-0.042072586715221,0.095663599669933],[-0.017655180767179,0.032780688256025,0.21984562277794]],[[0.13568851351738,0.027423406019807,0.30176740884781],[-0.077102318406105,0.046947401016951,-0.033161293715239],[0.015490992926061,0.055848881602287,-0.011512511409819]],[[-0.055502869188786,0.048759151250124,-0.035464782267809],[-0.0047166850417852,0.055090505629778,0.15520319342613],[0.049765452742577,0.038271076977253,-0.026240194216371]],[[0.057847958058119,-0.00080770114436746,0.040763106197119],[0.027291296049953,-0.078778222203255,-0.011840332299471],[-0.07127183675766,-0.16814757883549,0.099767334759235]],[[0.060206361114979,-0.18078385293484,0.099754951894283],[-0.071488335728645,-0.011984286829829,-0.041994731873274],[-0.073498226702213,-0.045915447175503,-0.16495324671268]],[[-0.046413123607635,-0.03213894739747,0.042976319789886],[-0.24347177147865,-0.067830599844456,-0.45717436075211],[-0.19804175198078,-0.044018890708685,-0.22834770381451]],[[-0.14416971802711,-0.14910519123077,0.1759439855814],[-0.099746152758598,-0.015951596200466,0.18251717090607],[0.062541864812374,0.073637023568153,0.011790402233601]],[[0.07485918700695,-0.079947352409363,0.017903853207827],[0.12714624404907,0.072261974215508,-0.051878198981285],[0.21325600147247,0.065113946795464,0.10543772578239]],[[0.072891764342785,0.05535527318716,-0.1465545296669],[0.12834788858891,-0.078273214399815,-0.024276027455926],[-0.15674124658108,-0.014003437012434,-0.13036188483238]],[[0.043849363923073,-0.016521509736776,-0.043013505637646],[0.20824779570103,-0.031068202108145,-0.03660025075078],[-0.011498578824103,0.14346961677074,0.010520179755986]],[[-0.030807316303253,0.069552138447762,0.13133546710014],[-0.086930453777313,0.010389014147222,0.21912437677383],[0.17241285741329,0.096183151006699,-0.14414116740227]],[[-0.16749085485935,-0.059155773371458,-0.056101828813553],[-0.14097508788109,0.11335168778896,0.097537256777287],[-0.18598887324333,0.034592565149069,-0.083687104284763]],[[-0.013169311918318,0.0020481531973928,-0.086052753031254],[0.20348587632179,0.11594062298536,-0.26571014523506],[-0.0097497720271349,0.098027095198631,-0.0021540899761021]],[[0.0767917111516,-0.045427519828081,0.13613142073154],[0.28392028808594,0.19472546875477,-0.0050392048433423],[0.076367996633053,-0.050390668213367,0.18081264197826]],[[-0.27483242750168,-0.040082775056362,0.06567020714283],[0.03089433349669,0.079038739204407,-0.026033675298095],[-0.0023696639109403,0.10818064957857,0.08352392166853]],[[-0.13730286061764,-0.058968629688025,-0.056305609643459],[-0.086240574717522,-0.039441954344511,0.21856737136841],[-0.023107200860977,-0.098538488149643,-0.075445450842381]],[[0.098892770707607,0.031661730259657,-0.059002440422773],[0.1655869781971,-0.10508611798286,0.069630116224289],[-0.13243982195854,-0.085715919733047,-0.051281973719597]],[[0.29704338312149,-0.031902406364679,-0.13876642286777],[-0.030729170888662,0.11908499151468,0.0012499099830166],[-0.18441714346409,-0.078110158443451,0.15995451807976]],[[0.12364516407251,-0.21522781252861,-0.19356133043766],[0.11657195538282,-0.14475092291832,0.030053844675422],[0.08323173224926,-0.17522057890892,-0.023462170735002]],[[0.033581387251616,-0.023357195779681,0.060239352285862],[-0.30309954285622,0.17405325174332,0.16358083486557],[0.0922591984272,-0.15797579288483,0.11069300025702]],[[-0.32039681077003,-0.0018862570868805,-0.10006593167782],[-0.29579097032547,0.25093951821327,-0.018425846472383],[0.054913066327572,0.038282372057438,-0.068524301052094]],[[-0.086694844067097,-0.029989764094353,-0.11378443241119],[-0.19625680148602,-0.0048962254077196,-0.1390428841114],[-0.17249342799187,-0.039691172540188,-0.41483178734779]],[[0.27129107713699,-0.020322203636169,-0.01371234562248],[0.076319932937622,0.03954216465354,0.097019165754318],[0.13124394416809,-0.03020584769547,0.061410259455442]],[[-0.20829783380032,0.17739041149616,0.11114752292633],[0.11779882013798,0.11273949593306,-0.089705817401409],[0.016565393656492,0.13819389045238,0.018438808619976]],[[-0.27671602368355,-0.0031771012581885,-0.091355927288532],[-0.10802745074034,0.0015403159195557,-0.034527949988842],[-0.022978385910392,-0.18096378445625,0.057133134454489]],[[-0.092404656112194,0.018772697076201,0.095953240990639],[-0.23632888495922,0.037936888635159,-0.13072775304317],[0.014205162413418,0.012461044825613,-0.15622378885746]],[[-0.03715693578124,-0.038346018642187,-0.14138714969158],[-0.088625580072403,-0.18582406640053,-0.2573863863945],[0.1813558191061,-0.080286532640457,0.038375407457352]],[[0.09112111479044,-0.056081984192133,-0.11440117657185],[0.17799879610538,-0.13846273720264,-0.026736410334706],[0.20248584449291,-0.0017408068524674,0.12875884771347]],[[0.069645866751671,0.25708672404289,0.14835374057293],[-0.11478823423386,0.00038543029222637,-0.093193367123604],[-0.043889071792364,-0.046865299344063,-0.085618823766708]],[[-0.0094895008951426,0.13109554350376,-0.12103042751551],[0.091012462973595,-0.057805996388197,-0.25376251339912],[0.063433282077312,-0.022184710949659,0.046803679317236]],[[-0.19009748101234,0.014128400012851,-0.042143288999796],[0.0054708868265152,-0.033169262111187,0.1069740280509],[0.10606177151203,0.0083605032414198,-0.090559184551239]],[[-0.09001287072897,0.055530350655317,-0.050610296428204],[-0.020659094676375,0.037316001951694,0.075860530138016],[-0.083963960409164,0.14520862698555,-0.067632630467415]],[[0.26537349820137,0.016261987388134,0.36650264263153],[0.014538410119712,0.096005700528622,-0.14962022006512],[-0.033828739076853,0.17094396054745,0.090498380362988]],[[0.26439020037651,-0.085179261863232,-0.31746858358383],[0.096311755478382,0.029472008347511,0.28637126088142],[-0.19876766204834,0.052497565746307,-0.047069545835257]],[[0.0964390411973,0.019077837467194,0.096894152462482],[-0.17937996983528,-0.088493801653385,-0.02971969358623],[0.085076697170734,-0.036918040364981,-0.0024583234917372]],[[-0.043962877243757,-0.085081122815609,0.055428829044104],[-0.045118700712919,-0.0067270766012371,-0.062854446470737],[0.053682330995798,-0.079412512481213,0.06962525844574]],[[0.11550191789865,0.036918133497238,0.13729450106621],[0.34004667401314,-0.053306724876165,0.20992977917194],[-0.13057428598404,0.21196812391281,0.023711837828159]],[[0.3214330971241,0.19703564047813,0.042574968189001],[-0.0035230950452387,-0.062789887189865,0.10033051669598],[-0.062718421220779,-0.15315759181976,0.33351096510887]],[[-0.074017129838467,-0.099769271910191,0.053075514733791],[-0.33279013633728,-0.21219138801098,-0.30953913927078],[-0.11553671956062,0.085492104291916,-0.21347619593143]],[[-0.14310622215271,-0.082129970192909,0.096821546554565],[-0.03634662181139,-0.13282765448093,-0.040655057877302],[0.027551470324397,0.12458071857691,0.027086764574051]],[[0.065372057259083,0.036495115607977,-0.090452186763287],[-0.073247201740742,-0.10742019861937,-0.040898334234953],[-0.10952993482351,0.062038574367762,-0.12274442613125]],[[-0.074430465698242,-0.0059278989210725,-0.057345513254404],[-0.16710297763348,0.053774170577526,-0.0076532303355634],[-0.065221108496189,-0.075888857245445,0.053543794900179]],[[-0.11264874786139,-0.03505751490593,-0.056807935237885],[0.013405994512141,0.022016044706106,-0.20880927145481],[-0.091125197708607,-0.036905407905579,-0.18949118256569]],[[-0.089831791818142,0.017304059118032,0.14720164239407],[0.037027020007372,0.17072714865208,-0.010745763778687],[0.018760558217764,0.049313683062792,0.023983469232917]],[[-0.035295236855745,-0.061536300927401,-0.071078911423683],[0.12306816875935,-0.17715619504452,-0.08455653488636],[0.13675132393837,0.084430992603302,0.12575124204159]],[[-0.048382740467787,-0.26797565817833,-0.19392190873623],[-0.12540078163147,0.042912479490042,-0.039767507463694],[-0.07403526455164,0.00020674480765592,-0.2088159173727]],[[0.3263601064682,-0.20885725319386,-0.059458825737238],[0.0067398087121546,-0.22892899811268,-0.092603862285614],[-0.24150590598583,-0.10361278057098,-0.1766981035471]],[[0.075087994337082,0.14111784100533,-0.027238303795457],[-0.25238499045372,-0.083613105118275,0.26429322361946],[0.12206211686134,-0.22530253231525,-0.067261837422848]],[[-0.050581466406584,0.010633674450219,-0.048391569405794],[0.047077681869268,-0.084204263985157,-0.091700732707977],[0.07340993732214,0.016786953434348,0.045166343450546]],[[0.04778828471899,0.080955415964127,0.29381069540977],[-0.011474950239062,0.12387117743492,-0.088287271559238],[-0.05138324201107,0.12323507666588,0.096098460257053]],[[0.020619593560696,0.17998133599758,-0.052557073533535],[0.061185255646706,-0.018995402380824,0.080061845481396],[0.12071172147989,0.11566409468651,-0.018678735941648]],[[0.020281665027142,-0.051885642111301,0.18226544559002],[-0.041471276432276,0.14130449295044,0.077409066259861],[0.1149525269866,0.083294443786144,0.09517802298069]],[[-0.0077716675586998,0.016670528799295,-0.049551021307707],[0.15641491115093,-0.091764092445374,0.22478020191193],[9.0467685367912e-05,0.010485790669918,0.071063324809074]],[[-0.17261752486229,-0.1146986335516,-0.0093978736549616],[0.17944192886353,0.055724132806063,-0.11408711224794],[0.00037842761958018,0.026169806718826,0.069376721978188]],[[-0.069424785673618,0.089776426553726,-0.068873718380928],[-0.022426620125771,0.0037997353356332,-0.14061483740807],[0.00064913491951302,0.026599504053593,-0.005815401673317]],[[0.14589002728462,0.17630042135715,0.077871851623058],[0.15243555605412,-0.017306577414274,0.051425497978926],[0.26049518585205,-0.017494481056929,0.024774836376309]],[[-0.066849604249001,-0.071245484054089,-0.016105566173792],[-0.066857203841209,0.032039199024439,-0.088903091847897],[-0.059448976069689,-0.030499249696732,0.12359168380499]],[[-0.00041749814408831,-0.24278609454632,0.04484873637557],[-0.025875650346279,-0.084668062627316,0.10941853374243],[-0.062952786684036,-0.11137655377388,-0.12712581455708]],[[0.010679732076824,0.023955592885613,0.20016503334045],[0.28707331418991,0.035643976181746,0.13969975709915],[0.23104926943779,0.06574023514986,0.10868904739618]],[[0.17839378118515,0.15916113555431,0.023102840408683],[0.28079158067703,-0.018248341977596,0.046466842293739],[0.095839202404022,0.25814986228943,0.10594757646322]],[[-0.034759894013405,0.035273931920528,0.07345312088728],[-0.018407952040434,-0.041627291589975,0.095460869371891],[-0.022528883069754,0.038895465433598,-0.028280317783356]],[[-0.10584373027086,-0.063294366002083,-0.099002704024315],[-0.14942938089371,0.061504799872637,-0.20241741836071],[-0.10855417698622,-0.024093829095364,-0.016500825062394]],[[-0.2443171441555,-0.084257237613201,0.088110104203224],[-0.10837993770838,0.20115651190281,0.013307171873748],[0.20464825630188,-0.045390460640192,-0.076478257775307]],[[-0.08112658560276,-0.090831995010376,0.063187837600708],[-0.20651008188725,0.13514378666878,-0.15665040910244],[0.078539453446865,0.052800793200731,0.051947832107544]],[[0.060741312801838,-0.1224367544055,0.076364174485207],[-0.025780934840441,-0.040380820631981,-0.064935572445393],[0.11876472830772,-0.12980261445045,-0.054135251790285]],[[0.080054178833961,-0.014240466989577,0.05066853761673],[-0.03087661601603,0.11591941863298,-0.078444331884384],[0.039482686668634,0.026563534513116,-0.25993704795837]],[[0.078086763620377,0.045817241072655,0.32884648442268],[0.047946199774742,0.086692906916142,0.34505301713943],[0.090511694550514,0.15593358874321,0.063170365989208]],[[0.10772252082825,0.068997658789158,-0.024707460775971],[-0.0074496432207525,0.11899688839912,-0.010276079177856],[-0.019615396857262,0.18565729260445,-0.090164557099342]],[[-0.065877415239811,0.15908101201057,0.16016133129597],[-0.023355612531304,-0.043820489197969,-0.19335399568081],[0.088772237300873,-0.04807360842824,-0.0083440225571394]],[[-0.096823520958424,-0.11336547136307,-0.068114317953587],[-0.17154881358147,-0.050865676254034,-0.052465569227934],[0.26893302798271,-0.096353895962238,-0.08898139744997]],[[0.35114833712578,-0.064308494329453,0.21400725841522],[0.13302347064018,0.030785089358687,-0.11083993315697],[0.073013313114643,0.083252094686031,0.039867404848337]],[[0.020941697061062,-0.15434758365154,0.058906134217978],[0.079446822404861,-0.095414951443672,-0.13802048563957],[0.18096853792667,-0.035243362188339,-0.17326308786869]],[[-0.24142520129681,-0.085451476275921,-0.1427346765995],[0.092923641204834,0.016887856647372,0.070705458521843],[-0.020477445796132,-0.021306434646249,-0.11943982541561]],[[-0.019297756254673,-0.030025338754058,-0.0063906186260283],[0.086313292384148,-0.078157968819141,0.067021757364273],[0.13511788845062,-0.19745683670044,0.12819004058838]],[[0.061167016625404,0.041105151176453,0.24285277724266],[0.06454960256815,0.016866575926542,-0.13862407207489],[0.041452590376139,0.039867181330919,0.062744297087193]],[[0.17729440331459,-0.24512767791748,0.014138017781079],[0.037418033927679,-0.25542229413986,-0.20116195082664],[-0.069618195295334,0.089924685657024,-0.1047837510705]],[[0.066882759332657,0.17170314490795,-0.11251221597195],[0.036465335637331,0.062507979571819,-0.019883416593075],[-0.080196142196655,-0.0078900856897235,0.13379991054535]],[[-0.1264036744833,-0.10514738410711,-0.25408455729485],[-0.047935631126165,-0.074027083814144,0.079368375241756],[0.090000696480274,0.039699342101812,-0.18701177835464]],[[0.14847072958946,-0.13190066814423,-0.19036889076233],[-0.035086985677481,0.050430193543434,0.2173188328743],[0.19407048821449,-0.027611535042524,0.017447784543037]],[[-0.00072873401222751,0.016954625025392,0.041082125157118],[-0.22161377966404,-0.090718045830727,-0.055645775049925],[-0.071641996502876,-0.038402795791626,-0.014033668674529]],[[0.14374488592148,-0.13265191018581,-0.17593322694302],[-0.14467757940292,-0.046258948743343,0.063239142298698],[-0.071711748838425,0.032991107553244,-0.14380395412445]],[[0.11111154407263,0.059317316859961,0.014032021164894],[0.15418154001236,0.065752573311329,-0.19285950064659],[-0.051349766552448,0.047971472144127,-0.020314883440733]],[[0.18229335546494,-0.0069642323069274,0.034140091389418],[-0.13490591943264,-0.0095373885706067,0.2102739661932],[0.037728313356638,-0.059439077973366,-0.050400983542204]],[[0.0034591681323946,-0.12458934634924,-0.13758167624474],[-0.0021687548141927,0.049569431692362,0.084298066794872],[-0.11342949420214,-0.13940343260765,-0.076874114573002]],[[0.0021620402112603,-0.057978559285402,0.10946935415268],[-0.088720448315144,0.16778315603733,-0.12066950649023],[-0.12886540591717,0.026357941329479,-0.013958067633212]],[[-0.056113079190254,-0.0534921400249,-0.23726722598076],[0.051199715584517,-0.10941930860281,0.015902910381556],[-0.025342553853989,-0.082882978022099,0.089453250169754]],[[-0.087361685931683,0.036685392260551,-0.093510858714581],[-0.15402437746525,-0.15777276456356,-0.0041555250063539],[-0.00017086103616748,0.0030078033450991,0.29245233535767]],[[0.11286232620478,-0.013661502860487,0.082741446793079],[0.098625466227531,0.0095035340636969,-0.12498551607132],[-0.08136285841465,0.021662941202521,0.23159098625183]],[[0.040334269404411,0.072909966111183,0.15383073687553],[-0.036331944167614,0.22628040611744,0.078784748911858],[0.063971899449825,0.073905445635319,-0.11474273353815]],[[0.01420955825597,-0.13076069951057,-0.0042390176095068],[-0.12712776660919,-0.1398014575243,0.15171033143997],[-0.050258882343769,-0.1250811368227,0.052381753921509]],[[0.018884163349867,0.26158347725868,-0.013019958510995],[0.031089015305042,0.10121240466833,0.047530148178339],[0.021851958706975,-0.011700888164341,0.14811736345291]],[[-0.13772238790989,-0.28389245271683,0.10530700534582],[-0.0092953378334641,-0.037423629313707,0.087778225541115],[0.10290102660656,-0.12075088173151,0.10894814133644]],[[-0.086073830723763,-0.023858295753598,0.09814764559269],[-0.00054288847604766,0.019407330080867,0.097453124821186],[-0.060688886791468,-0.023909039795399,0.14675424993038]],[[-0.12819036841393,0.11363332718611,-0.062404736876488],[-0.1197859197855,-0.0043187630362809,-0.26210388541222],[-0.010516023263335,-0.12531337141991,0.13290037214756]],[[0.18282972276211,-0.033862806856632,0.0054195784032345],[-0.084487766027451,-0.026135660707951,0.015697764232755],[0.067299783229828,-0.045673687011003,-0.12593026459217]],[[-0.047445870935917,0.074047520756721,-0.21224890649319],[0.11906658113003,0.089225314557552,-0.15093497931957],[0.057621873915195,0.073551788926125,0.17298033833504]],[[-0.28081467747688,-0.037474222481251,-0.10993719100952],[-0.10036405920982,-0.16541682183743,-0.094167485833168],[-0.15893843770027,0.049561705440283,-0.082668103277683]],[[0.14327666163445,0.16081316769123,0.087700180709362],[0.27413406968117,0.13120740652084,0.16765460371971],[-0.1791628152132,0.030333247035742,-0.012715317308903]],[[-0.07058247923851,0.075475722551346,0.08682744204998],[0.12503358721733,0.022207491099834,0.10630666464567],[0.23221704363823,0.014893889427185,0.017224373295903]],[[-0.26127648353577,0.048216462135315,0.14374117553234],[0.041091863065958,0.011461525224149,-0.11837200820446],[0.10358907282352,-0.10856024175882,0.086597919464111]],[[-0.11291783303022,-0.10086729377508,0.12545068562031],[0.0019506553653628,-0.071447841823101,-0.081548325717449],[-0.055764675140381,0.15374368429184,-0.11923106759787]],[[-0.077229872345924,-0.040794026106596,-0.2484584748745],[-0.081193618476391,-0.22423607110977,0.021106589585543],[-0.10770782828331,-0.088105745613575,-0.050033953040838]],[[0.086354941129684,-0.0077042165212333,0.01410736143589],[0.094684332609177,-0.112144716084,0.012702591717243],[0.25180873274803,0.1767937541008,0.13798949122429]],[[0.030420212075114,-0.1501998603344,-0.13500618934631],[-0.2056700438261,0.094843484461308,0.14057125151157],[0.079917691648006,-0.041115250438452,0.23484551906586]],[[0.075533777475357,0.24975304305553,-0.21069718897343],[-0.022706508636475,0.10906410962343,0.092604838311672],[-0.011194055899978,0.00089029187802225,0.15137247741222]],[[0.072691336274147,0.10911341756582,0.16737768054008],[0.12933197617531,-0.041669607162476,-0.082004062831402],[0.16525363922119,0.053562495857477,0.12910307943821]],[[-0.11576085537672,0.12502253055573,0.023019604384899],[-0.04288362711668,0.014859290793538,-0.0026115034706891],[-0.06454211473465,-0.041986398398876,0.027541076764464]],[[0.020077604800463,-0.084932282567024,0.076344832777977],[-0.058158874511719,0.05912471935153,-0.05428621172905],[0.03312286734581,0.16837449371815,-0.058953311294317]],[[-0.17009191215038,-0.037074610590935,0.027657693251967],[0.068247951567173,-0.13027635216713,0.0077844657935202],[-0.097233444452286,-0.089001327753067,0.077650099992752]],[[0.13933451473713,0.11744391918182,0.14819443225861],[0.057326931506395,0.018691208213568,0.25310391187668],[0.034404385834932,0.050835896283388,0.086662255227566]],[[-0.10391594469547,-0.1257236301899,-0.019676318392158],[0.017199812456965,0.055597998201847,-0.020868431776762],[-0.16389292478561,0.11997950077057,-0.08765734732151]],[[0.055623214691877,0.045923180878162,0.2906112074852],[0.10354261100292,0.022756760939956,-0.068560630083084],[0.01400725543499,0.13314433395863,-0.04660901799798]],[[0.016322357580066,0.14279456436634,-0.0043299626559019],[0.16418036818504,0.081432856619358,0.072339043021202],[-0.030418213456869,0.012296673841774,-0.031576961278915]],[[0.090529166162014,0.018968839198351,0.13142462074757],[-0.05121822655201,0.098124697804451,-0.039438918232918],[0.16113249957561,0.019193552434444,0.12994958460331]],[[-0.026178536936641,0.0062204780988395,-0.12065215408802],[0.18263912200928,0.089643053710461,0.050260290503502],[-0.027181327342987,0.050238173455,-0.066727183759212]],[[0.19628266990185,0.0034057560842484,-0.099863812327385],[0.17204686999321,0.21418192982674,-0.32611328363419],[0.1969380825758,0.17139154672623,0.40437403321266]],[[0.012788995169103,0.13130617141724,-0.029362767934799],[0.17256532609463,0.134531006217,-0.11538165062666],[-0.095334902405739,-0.10577187687159,0.018927752971649]],[[-0.032722380012274,-0.13622519373894,0.067085646092892],[-0.15462556481361,-0.17674243450165,0.11358704417944],[-0.096188932657242,-0.091870166361332,0.0026239606086165]],[[-0.14130172133446,-0.064911194145679,-0.12512673437595],[-0.15901206433773,-0.10866306722164,0.16133883595467],[0.025264717638493,-0.045688152313232,-0.14933298528194]],[[-0.040521990507841,-0.14892816543579,-0.16064347326756],[-0.18661463260651,0.072185076773167,-0.017383487895131],[-0.33593234419823,0.12796801328659,-0.11404121667147]],[[-0.12494527548552,0.038571171462536,-0.045726243406534],[0.0052633313462138,-0.31421983242035,-0.1051682010293],[0.12904091179371,-0.25402081012726,-0.11329162120819]],[[-0.074906453490257,0.0029959846287966,0.037508815526962],[-0.059609770774841,-0.26807799935341,0.045912098139524],[0.0094443717971444,0.0053834151476622,0.0080384314060211]],[[0.20647364854813,-0.019069148227572,-0.0050458735786378],[-0.091913908720016,0.056787580251694,0.059440914541483],[-0.0032342269551009,0.10518102347851,-0.021770915016532]],[[-0.10382190346718,-0.095011211931705,-0.20806966722012],[-0.15947331488132,-0.083616487681866,0.12702271342278],[0.11038048565388,-0.10300194472075,-0.0031732942443341]]],[[[-0.021523429080844,0.0087219271808863,-0.091404713690281],[-0.044890213757753,-0.026172578334808,-0.079435914754868],[-0.088781744241714,-0.035097058862448,-0.011543170548975]],[[0.034498974680901,0.051893655210733,-0.0025573316961527],[-0.092649452388287,-0.10710405558348,-0.06191511079669],[0.044684834778309,0.056282237172127,0.012245746329427]],[[-0.088240578770638,0.0037144822999835,0.078335992991924],[-0.0053715365938842,-0.1463714838028,-0.0020818077027798],[0.048970509320498,0.027512542903423,-0.073909617960453]],[[0.070405341684818,-0.021198015660048,-0.010636609047651],[-0.02231053262949,-0.009211172349751,0.019041707739234],[-0.0081176590174437,-0.059039194136858,0.055595956742764]],[[0.036941792815924,-0.071352131664753,-0.012446342036128],[0.050227660685778,0.079661764204502,0.0082504907622933],[0.041575692594051,0.034632708877325,0.021513128653169]],[[0.01910075545311,0.047172579914331,-0.036267787218094],[0.026151893660426,0.065368756651878,-0.0065497350879014],[-0.0020517504308373,0.014907052740455,-0.003673639614135]],[[0.099792338907719,0.042269993573427,-0.048209182918072],[-0.086150772869587,0.063963390886784,-0.068256251513958],[-0.047879986464977,0.01454334706068,-0.0033046004828066]],[[0.0057098949328065,0.073350965976715,-0.12319879978895],[-0.028939589858055,0.065288804471493,0.0084582511335611],[0.04480741918087,0.058308601379395,-0.052802469581366]],[[0.050566174089909,0.059470161795616,0.075144872069359],[0.025903759524226,0.064799070358276,-0.024944253265858],[-0.018180245533586,-0.07923174649477,0.14958231151104]],[[0.010920620523393,-0.01177098415792,-0.020036661997437],[0.036682359874249,0.016953008249402,0.11320360004902],[-0.061797004193068,0.016685172915459,-0.14038889110088]],[[-0.023548383265734,-0.04026847705245,0.0027246859390289],[-0.011056407354772,-0.048844140022993,0.037231616675854],[0.016213292255998,-0.018845213577151,-0.0057440497912467]],[[-0.018687000498176,0.078965127468109,0.040727164596319],[0.029860600829124,0.014595410786569,0.015558668412268],[0.048251934349537,0.050566434860229,-0.11015293002129]],[[-0.0067014987580478,0.016190145164728,0.011888605542481],[0.071473620831966,0.048334985971451,-0.030992718413472],[0.015812816098332,0.070719353854656,-0.023145332932472]],[[-0.0057421638630331,0.029937010258436,-0.069637462496758],[-0.025029527023435,-0.05950478836894,-0.04249070957303],[0.056552086025476,0.059129692614079,-0.04260827973485]],[[0.027758261188865,-0.0052636661566794,-0.042937573045492],[-0.01073682308197,-0.040239881724119,-0.046852394938469],[0.053731806576252,0.026867998763919,0.018004160374403]],[[-0.071172252297401,-0.031486377120018,-0.02844930998981],[-0.050567127764225,-0.11238346248865,0.037549752742052],[-0.060019388794899,-0.014910259284079,-0.05862944573164]],[[0.11408247798681,-0.064663149416447,-0.0042627118527889],[0.077271498739719,-0.015498543158174,-0.10283147543669],[-0.0014991664793342,0.004883280955255,0.014215617440641]],[[-0.084071628749371,0.064465343952179,-0.016885347664356],[-0.053654443472624,0.0052843680605292,-0.012573857791722],[0.042484797537327,0.13193547725677,-0.043068058788776]],[[-0.0054194196127355,-0.023780589923263,-0.027830597013235],[0.015103326179087,-0.086797587573528,0.014423224143684],[-0.028867738321424,0.0063936063088477,-0.011298690922558]],[[0.0063810930587351,-0.00037739498657174,0.066611096262932],[-0.10727179050446,-0.0033232204150409,0.018144892528653],[-0.091625787317753,-0.034926202148199,0.047583002597094]],[[0.0025478394236416,-0.028759524226189,-0.0041353651322424],[0.047845251858234,-0.019399156793952,-0.013230135664344],[0.0093243317678571,-0.075222954154015,0.0070761712267995]],[[0.0046568089164793,-0.024837367236614,-0.032093115150928],[0.0097578689455986,-0.019022669643164,-0.048837978392839],[-0.011815707199275,0.0077514979057014,0.11186540126801]],[[0.028699047863483,-0.05142917484045,-0.056862067431211],[0.056827522814274,0.025822497904301,-0.073080062866211],[-0.042733449488878,-0.022954910993576,-0.107421413064]],[[0.014306983910501,0.016166301444173,-0.088749729096889],[-0.082062758505344,-0.073617681860924,0.038897436112165],[0.084643721580505,0.062389317899942,0.030051901936531]],[[-0.019964849576354,0.10553003847599,0.064000643789768],[-0.010367676615715,0.017724107950926,0.060592088848352],[0.00067449873313308,-0.095555789768696,0.048082448542118]],[[-0.057889316231012,-0.04124853760004,-0.059711683541536],[-0.063678629696369,-0.0042035426013172,-0.0039528817869723],[0.017233889549971,0.048215795308352,0.075734712183475]],[[0.020207207649946,0.030418733134866,0.011621678248048],[0.015605218708515,0.033837132155895,-0.024043133482337],[-0.037508454173803,0.012873069383204,-0.012478116899729]],[[-0.030921492725611,-0.042353615164757,-0.018849894404411],[-0.032443758100271,-0.063488319516182,0.060011029243469],[-0.008196066133678,0.0054626371711493,0.017584847286344]],[[0.012793566100299,-0.077836520969868,0.079913623631001],[-0.028451304882765,-0.041575029492378,0.09800685942173],[-0.057809147983789,-0.090405650436878,0.080628946423531]],[[0.055959977209568,0.028363713994622,0.069997914135456],[0.045505367219448,-0.065790265798569,-0.042590212076902],[0.023656999692321,0.03432110324502,-0.011345154605806]],[[0.078603588044643,-0.064378216862679,-0.052567709237337],[-0.046262733638287,0.01075005158782,0.086176827549934],[0.024909429252148,-0.00016500061610714,-0.015841785818338]],[[-0.0069093331694603,-0.041525427252054,-0.025493526831269],[0.010010720230639,0.020822819322348,-0.024891432374716],[-0.046229925006628,-0.024447424337268,-0.065859109163284]],[[0.055377595126629,0.00036324412212707,-0.0082202479243279],[0.067094154655933,0.061605047434568,-0.01686586625874],[-0.006034052465111,0.044453974813223,-0.064769543707371]],[[0.0016585953999311,0.0074503617361188,-0.019146693870425],[-0.026314150542021,0.018312763422728,0.048822190612555],[-0.01932480931282,-0.0035630424972624,0.087730340659618]],[[-0.044633220881224,-0.033282548189163,0.014579556882381],[0.022831723093987,-0.0017275422578678,0.0097685698419809],[-0.05398715659976,0.051847279071808,0.056308757513762]],[[0.17971394956112,0.011627388186753,-0.018844773992896],[0.087157376110554,-0.0026818111073226,0.027480946853757],[0.053083501756191,0.037057023495436,0.04298534989357]],[[0.0036861072294414,0.005304575432092,0.0023137833923101],[-0.012597991153598,0.040866214782,-0.012731863185763],[0.044726513326168,-0.0014385038521141,0.0026699139270931]],[[0.0049249650910497,-0.020539781078696,-0.032495189458132],[-0.011141510680318,-0.025774950161576,0.023042341694236],[-0.035828050225973,-0.0076854098588228,-0.0071282400749624]],[[-0.0574313364923,0.053189776837826,-0.055228419601917],[0.055503390729427,-0.07753624022007,-0.15672880411148],[0.033730529248714,0.10415291041136,-0.0049754730425775]],[[0.017500264570117,0.0064050052314997,0.024744993075728],[-0.034989010542631,-0.032715924084187,0.090404108166695],[-0.011567460373044,0.015515429899096,0.052845314145088]],[[-0.040699947625399,-0.030652554705739,0.063826717436314],[0.010207830928266,-0.072268784046173,-0.079947553575039],[0.03039681725204,0.067910611629486,-0.08345603197813]],[[0.011405345983803,-0.012567462399602,0.0009513352997601],[-0.0216662902385,-0.01793978177011,0.019185272976756],[-0.022375939413905,0.020887933671474,-0.014766476117074]],[[-0.029209107160568,-6.1946018831804e-05,-0.073323875665665],[-0.043211624026299,-0.0042380131781101,-0.069913670420647],[0.068489126861095,0.056459844112396,0.00072823476511985]],[[0.0089558716863394,0.051362350583076,0.039015211164951],[-0.0014096532249823,-0.10333635658026,-0.0044138305820525],[0.075013443827629,-0.042174551635981,-0.0022640731185675]],[[-0.030765146017075,-0.013867354020476,0.025703120976686],[0.077908545732498,0.03333006054163,-0.0017962412675843],[0.065247341990471,-0.054755590856075,-0.014975158497691]],[[-0.025763157755136,0.040987532585859,0.015106244012713],[0.059221494942904,0.022635508328676,-0.019035123288631],[-0.0012991256080568,-0.034924656152725,-0.023776678368449]],[[0.023096289485693,-0.051755178719759,-0.053989909589291],[0.026569783687592,-0.028125917539001,0.057002127170563],[0.045867193490267,0.0034306636080146,0.063272900879383]],[[-0.015804052352905,-0.009007265791297,0.014493493363261],[0.0068835867568851,-0.02529488503933,-0.066640019416809],[-0.043829962611198,-0.010278368368745,-0.076011203229427]],[[0.01029718387872,-0.035407926887274,-0.027677923440933],[-0.032822147011757,0.063095256686211,0.12917360663414],[-0.023323027417064,-0.014863115735352,-0.14005874097347]],[[0.033531062304974,0.022808834910393,-0.013875560835004],[-0.031065560877323,-0.047129053622484,0.0066146492026746],[-0.0076995245181024,0.040622565895319,-0.06132972240448]],[[-0.030853377655149,0.074951991438866,0.056729152798653],[-0.030593724921346,0.00095419539138675,0.029347039759159],[0.017972804605961,0.038654141128063,0.0063340314663947]],[[0.015111650340259,-0.044889733195305,0.0092488285154104],[0.0067610898986459,0.078033685684204,0.076114267110825],[-0.049158837646246,0.0055724340490997,0.059133887290955]],[[-0.038221266120672,-0.10603531450033,-0.033708639442921],[-0.012216578237712,0.01504282746464,-0.068030454218388],[-0.014045463874936,0.087141945958138,0.020813312381506]],[[-0.011377644725144,0.020766178146005,0.039510663598776],[0.0057364907115698,-0.029890054836869,-0.028143500909209],[0.012359336018562,0.0098543632775545,-0.082632996141911]],[[-0.076348252594471,0.084005035459995,0.090750873088837],[-0.01032704487443,-0.11155991256237,0.04247860237956],[-0.087803460657597,-0.08061645179987,-0.080940909683704]],[[0.03004464507103,0.005925758741796,0.069423027336597],[-0.030695362016559,-0.028151759877801,-0.01824944652617],[-0.051203459501266,-0.037402339279652,0.04878181964159]],[[-0.060646641999483,0.016197754070163,0.11688913404942],[0.020550673827529,0.053735449910164,-0.12180967628956],[0.029024805873632,0.045390758663416,0.007077788002789]],[[-0.090105012059212,0.044090259820223,-0.046232990920544],[0.022218184545636,-0.015590580180287,0.041654877364635],[-0.045168768614531,-0.031880170106888,-0.026683777570724]],[[0.052124619483948,0.05787942185998,0.028296092525125],[-0.0086194174364209,-0.020891360938549,0.05918188765645],[0.031994227319956,-0.053326588124037,-0.14801414310932]],[[-0.0064331283792853,-0.062536835670471,-0.069250546395779],[0.01410604454577,-0.069540359079838,-0.041222404688597],[0.082454591989517,-0.0094203185290098,-0.025958778336644]],[[-0.084959633648396,0.0041598151437938,-0.054264422506094],[-0.037570185959339,-0.046398833394051,-0.047539990395308],[0.018081333488226,0.094570524990559,0.01474884711206]],[[-0.055715534836054,0.071715377271175,-0.03196232765913],[0.0058637210167944,-0.068996392190456,0.047604732215405],[-0.079419329762459,0.054705508053303,-0.021367790177464]],[[0.03373458981514,0.025924317538738,-0.0042623542249203],[0.03166214004159,0.013003576546907,0.04652077704668],[0.038983199745417,0.031906049698591,0.022061098366976]],[[0.027687884867191,0.063648104667664,0.0089254854246974],[0.016671724617481,-0.098203465342522,0.030011884868145],[-0.025564847514033,-0.074942454695702,0.03637844696641]],[[0.056698363274336,-0.041465800255537,0.016073126345873],[0.094161845743656,-0.0019466201774776,0.038701549172401],[-0.059380546212196,-0.034750584512949,0.0057255639694631]],[[-0.060218811035156,-0.02795628271997,0.025531684979796],[0.044835839420557,0.035672556608915,-0.021705511957407],[-0.023744547739625,0.0038591634947807,-0.059622969478369]],[[0.02586230263114,0.0025184855330735,-0.038094002753496],[-0.095624551177025,-0.011418525129557,0.015075406990945],[0.02026430144906,0.098144687712193,-0.032578188925982]],[[-0.00040237494977191,0.02701248601079,-0.084135219454765],[-0.026479188352823,0.00068567803828046,0.08485147356987],[0.0012960188323632,0.042368292808533,-0.082266204059124]],[[0.014618418179452,-0.02135849930346,0.046692665666342],[-0.093372508883476,0.038678828626871,0.0082381088286638],[-0.15417358279228,-0.051848590373993,0.0064898752607405]],[[-0.027177369222045,0.076706431806087,0.0062331687659025],[-0.07162494212389,-0.0041491803713143,0.040486793965101],[-0.038109075278044,-0.023114062845707,-0.086896918714046]],[[3.2948126317933e-05,-0.0080020437017083,0.024216003715992],[0.0078498916700482,-0.041032273322344,-0.024932818487287],[0.039633013308048,0.10776834189892,0.090917408466339]],[[0.010037475265563,0.068049736320972,0.079624488949776],[0.10400418937206,0.014739013276994,0.016380872577429],[-0.013972273096442,0.015647308900952,0.012112188152969]],[[0.055664554238319,0.033628977835178,0.034769758582115],[0.035822842270136,0.088963367044926,-0.023141155019403],[0.069549217820168,0.060340918600559,-0.043131247162819]],[[0.10621076077223,-0.011798940598965,0.0060016228817403],[-0.028982255607843,0.068346485495567,0.054154254496098],[0.074215203523636,0.044580705463886,-0.071146696805954]],[[0.023754805326462,-0.017777677625418,0.0033345159608871],[0.031008968129754,-0.022162964567542,0.071285083889961],[-0.0094377398490906,-0.04249519482255,0.011281032115221]],[[-0.024940585717559,-0.060475144535303,0.059735711663961],[0.015674471855164,-0.080765016376972,0.037848696112633],[-0.028651988133788,-0.10568054020405,-0.096174642443657]],[[-0.0088050086051226,-0.039777185767889,-0.062922313809395],[-0.031003149226308,0.036253824830055,-0.075869329273701],[-0.02724957279861,0.011120222508907,-0.034986428916454]],[[0.0005832037422806,-0.033357765525579,0.029104763641953],[-0.058213662356138,0.031150430440903,-0.02813814021647],[-0.019944757223129,-0.10350321978331,0.001071349484846]],[[0.077871605753899,-0.005854838527739,-0.026156729087234],[-0.055747166275978,-0.0046939761377871,0.078769840300083],[0.00049479608424008,-0.060440815985203,0.014369358308613]],[[-0.026463350281119,0.055311925709248,0.049552988260984],[-0.024461761116982,-0.016879737377167,-0.016570251435041],[-0.022881835699081,-0.035045642405748,0.030998151749372]],[[-0.010193630121648,-0.026977859437466,-0.11222517490387],[-0.029428858309984,-0.028091063722968,-0.041819736361504],[0.035231743007898,-0.027681479230523,0.036195289343596]],[[0.054378170520067,0.021880980581045,-0.051077771931887],[0.031334336847067,0.027681894600391,0.045316774398088],[0.087354362010956,0.077355712652206,0.11016485095024]],[[-0.020769728347659,0.033021911978722,0.019271356984973],[-0.02817415073514,0.054443046450615,-0.046907182782888],[0.050936087965965,0.025325730443001,-0.064169771969318]],[[0.095704801380634,-0.020104382187128,-0.05071783810854],[0.027125028893352,-0.012251803651452,0.037901554256678],[-0.0033456480596215,-0.012183472514153,-0.0031658282969147]],[[-0.049490258097649,-0.046196196228266,-0.063432797789574],[0.011065354570746,-0.085638217628002,0.003619629656896],[-0.015967005863786,-0.061869066208601,0.058192249387503]],[[-0.077915094792843,-0.014495658688247,0.027003629133105],[0.073217064142227,0.012363609857857,-0.030245378613472],[-0.022527137771249,0.011524601839483,0.058207597583532]],[[-0.1147557720542,-0.028220914304256,-0.0048045134171844],[-0.1262644380331,-0.04057078063488,0.011150093749166],[0.036629971116781,0.056008532643318,0.081904239952564]],[[0.062717415392399,-0.052093882113695,0.0061611067503691],[0.049475710839033,-0.0080285733565688,-0.025331189855933],[-0.060910947620869,0.022401995956898,-0.0024998784065247]],[[-0.031802576035261,-0.052287757396698,-0.097521565854549],[0.081758879125118,-0.01831785030663,-0.037113830447197],[0.082249514758587,0.033846240490675,0.0071697705425322]],[[0.02135793492198,-0.014162404462695,-0.063362598419189],[0.085984192788601,0.026791522279382,0.016645373776555],[0.0097024785354733,-0.041744999587536,-0.065309099853039]],[[-0.041395127773285,-0.027858775109053,0.034790325909853],[0.020055171102285,0.042357888072729,0.019008755683899],[0.01185270305723,0.044241935014725,-0.087868891656399]],[[-0.078920304775238,-0.047915488481522,0.035013888031244],[0.0030511803925037,-0.091313540935516,0.036083169281483],[-0.02510317787528,0.056747909635305,0.11885701864958]],[[0.044292543083429,-0.057568978518248,-0.038414102047682],[-0.032003372907639,0.081971198320389,-0.039742916822433],[-0.033882595598698,0.0055913254618645,-0.048341520130634]],[[-0.0274768024683,-0.038219392299652,0.020329983904958],[0.093693822622299,-0.061155442148447,-0.040646452456713],[0.017235547304153,-0.046829361468554,0.021952958777547]],[[0.08820366859436,-0.053107500076294,-0.065604664385319],[0.009114095941186,-0.0058083236217499,-0.042928487062454],[0.060327630490065,-0.061331640928984,-0.057276926934719]],[[-0.06481347233057,-0.032290700823069,0.03616289049387],[0.072542086243629,-0.036083366721869,-0.021173104643822],[-0.044807359576225,-0.0056408713571727,-0.065055094659328]],[[0.052323970943689,0.045137844979763,-0.0093584395945072],[-0.053067073225975,0.071159966289997,0.038604073226452],[0.033498097211123,0.10475171357393,-0.098674304783344]],[[0.037865072488785,0.054607193917036,-0.054458871483803],[-0.042278312146664,-0.012769626453519,-0.035220127552748],[-0.041578281670809,0.092577069997787,-0.074097566306591]],[[-0.010447329841554,-0.014546318911016,0.015280262567103],[0.081900112330914,0.068552516400814,0.0095559442415833],[-0.00090083014219999,0.01520746294409,-0.038059633225203]],[[-0.048921525478363,-0.056055296212435,-0.0049036629498005],[-0.01814042031765,0.082695059478283,-0.052341680973768],[-0.025130597874522,0.022525992244482,0.054254814982414]],[[0.018748795613647,0.0062759974971414,-0.12754710018635],[0.015993949025869,0.085611134767532,-0.0018348093144596],[-0.090535037219524,-0.021222457289696,0.023892968893051]],[[-0.016119353473186,-0.020153898745775,-0.063442580401897],[0.053523760288954,0.0090425703674555,0.044391214847565],[0.020551268011332,0.011050689034164,-0.039396829903126]],[[-0.010849243961275,-0.083613976836205,0.088734038174152],[-0.053735803812742,-0.036441508680582,-0.053597152233124],[0.01786488480866,-0.0013820324093103,-0.022178305312991]],[[0.02727185934782,0.046142838895321,0.043505486100912],[-0.034797165542841,-0.060702282935381,-0.07258402556181],[-0.019271045923233,-0.098642066121101,-0.025993971154094]],[[-0.046909920871258,-0.0012652312871069,-0.052919171750546],[-0.024208819493651,0.10461983084679,-0.042143568396568],[-0.0023576731327921,0.084996193647385,-0.0031623221002519]],[[-0.016714172437787,-0.055641021579504,0.0037320868577808],[0.024907408282161,0.0417097248137,-0.045700114220381],[0.056394662708044,0.045946516096592,-0.021306267008185]],[[-0.0057136281393468,0.0027156011201441,0.006456920877099],[0.026411589235067,0.12462488561869,0.037578016519547],[-0.064193330705166,0.038586653769016,-0.027230739593506]],[[0.013925705105066,0.012492249719799,-0.093822672963142],[-0.065308772027493,0.036354046314955,0.048157956451178],[-0.061151627451181,-0.021783417090774,0.022191159427166]],[[-0.029463345184922,-0.0033100536093116,-0.0042672255076468],[-0.031992692500353,-0.023134712129831,-0.022944835945964],[-0.081631220877171,-0.037104055285454,-0.017533116042614]],[[-0.069368220865726,-0.083369016647339,0.055964797735214],[0.073266722261906,-0.098852954804897,0.013625394552946],[-0.027519445866346,0.080883994698524,-0.028181759640574]],[[0.048250578343868,-0.04742868617177,0.031233094632626],[-0.020774682983756,0.019159069284797,0.093164831399918],[0.010882840491831,0.039411809295416,0.0087017323821783]],[[-0.10762418806553,-0.020359043031931,-0.057979367673397],[-0.0032998148817569,-0.035421185195446,-0.018995106220245],[-0.096779875457287,0.018303485587239,-0.018420137465]],[[-0.014210366643965,-0.001580129028298,-0.073150858283043],[-0.015389629639685,-0.040104482322931,0.014912221580744],[0.051638353615999,0.012131446972489,0.0030512656085193]],[[-0.0066629154607654,-0.082778289914131,-0.025343477725983],[-0.032109957188368,0.0019448483362794,-0.03682142496109],[0.0048829196020961,0.014188874512911,0.035359632223845]],[[-0.039166800677776,0.021180786192417,-0.056170970201492],[-0.017721027135849,-0.027726270258427,0.045020814985037],[-0.060976721346378,-0.060925379395485,-0.10769741237164]],[[-0.031760144978762,-0.022522207349539,-0.016639461740851],[0.053068194538355,-0.10690316557884,0.065809592604637],[-0.015608737245202,-0.045609720051289,-0.060281489044428]],[[0.079853676259518,0.0027465410530567,-0.025973200798035],[-0.059939250349998,-0.021520955488086,-0.028286853805184],[-0.062417067587376,0.082580916583538,-0.021105460822582]],[[-0.067535899579525,0.00073971535312012,-0.028909988701344],[0.056263115257025,-0.064293190836906,0.044788803905249],[0.062341969460249,0.027622582390904,0.06450393050909]],[[-0.094968162477016,-0.024577843025327,-0.029499012976885],[-0.051263421773911,-0.11330511420965,0.02008318901062],[0.02595092728734,0.0098955584689975,0.022665979340672]],[[0.062039267271757,-0.033150650560856,-0.010715815238655],[0.041733469814062,-0.0022745174355805,-0.012723812833428],[-0.024726390838623,-0.071101322770119,-0.06733799725771]],[[0.016355030238628,-0.070614822208881,-0.022810002788901],[0.025431551039219,-0.060048319399357,-0.028863592073321],[0.070756569504738,-0.10020100325346,-0.037760093808174]],[[0.051674790680408,0.025708833709359,-0.054546292871237],[0.022953864187002,0.062335338443518,-0.0037242160178721],[0.050921436399221,-0.0213857088238,0.021913904696703]],[[0.068276613950729,-0.050663702189922,-0.0013051746645942],[0.004437540192157,-0.013668424449861,-0.058781068772078],[0.063839346170425,0.038452699780464,0.010599415749311]],[[0.10089889913797,-0.040797058492899,0.026651905849576],[0.054357446730137,-0.00051088671898469,-0.090620048344135],[-0.074429057538509,-0.028025040403008,-0.026851087808609]],[[0.012911249883473,0.056113574653864,-0.0055895233526826],[-0.017091196030378,0.063849776983261,-0.056194998323917],[-0.034464247524738,-0.054279115051031,-0.077548697590828]],[[-0.10695463418961,0.060920979827642,0.056118562817574],[-0.02641705609858,-0.0043574818409979,-0.0076864259317517],[-0.0033243966754526,0.014733699150383,-0.11841938644648]],[[-0.011286930181086,0.018366631120443,-0.033993102610111],[0.030567625537515,-0.037685543298721,-0.019370619207621],[0.066757775843143,-0.011991810053587,0.079448252916336]],[[0.0054538012482226,-0.090842448174953,0.0009688549907878],[-0.011106316000223,0.077908173203468,0.020528253167868],[0.034246500581503,0.023248249664903,0.035791676491499]]],[[[0.0022436471190304,0.28026384115219,0.098579220473766],[-0.028067052364349,0.092448033392429,0.1554124802351],[0.0079303169623017,0.055269628763199,0.25687703490257]],[[-0.13391065597534,-0.050895523279905,0.082077249884605],[-0.073352821171284,0.01709171384573,0.094517886638641],[-0.0084563931450248,-0.19970400631428,-0.085024021565914]],[[0.073355495929718,-0.0076592494733632,0.23480087518692],[0.060221370309591,0.08519934117794,0.021691920235753],[0.07227747887373,0.270666629076,-0.066073723137379]],[[0.16660323739052,-0.072516158223152,-0.15943045914173],[0.18800358474255,0.19132730364799,-0.06732814759016],[0.12273598462343,0.21720583736897,-0.12558756768703]],[[-0.0073911687359214,-0.05499529838562,-0.0027967463247478],[0.13477870821953,0.073588386178017,-0.019599609076977],[0.0073616094887257,-0.072858989238739,-0.056966066360474]],[[-0.10444366931915,-0.10472199320793,-0.12430966645479],[-0.052339643239975,-0.05667132511735,-0.13941809535027],[0.25346338748932,0.09924028813839,-0.020010342821479]],[[-0.089872792363167,0.033991437405348,-0.12898306548595],[0.0057582794688642,-0.042252000421286,0.037528701126575],[0.16960979998112,-0.14812889695168,0.12202750146389]],[[0.10556310415268,0.022051256150007,0.15830966830254],[-0.027127018198371,0.05816050991416,0.068213731050491],[0.051651999354362,0.035903196781874,-0.12914642691612]],[[-0.0071182535029948,0.12788231670856,0.13453164696693],[0.01457435823977,0.17574435472488,0.17542490363121],[-0.084714569151402,0.16109070181847,-0.072753459215164]],[[0.069354899227619,0.07735002040863,-0.27638438344002],[-0.00067439209669828,-0.12829674780369,-0.07745073735714],[0.17676146328449,0.032366368919611,0.12478442490101]],[[0.085507646203041,-0.091112375259399,0.076162233948708],[0.085182659327984,0.016658214852214,0.0014825635589659],[0.091041058301926,0.017658159136772,-0.0046468735672534]],[[0.16492280364037,0.047186009585857,0.26208019256592],[0.10749966651201,-0.17681826651096,-0.03492371737957],[-0.052125994116068,0.091797664761543,0.020383451133966]],[[-0.16236419975758,0.01654302328825,0.065965309739113],[-0.1428681910038,0.098601713776588,0.13291573524475],[-0.015230355784297,-0.13938944041729,-0.11367533355951]],[[-0.10117466002703,-0.028395231813192,-0.076578885316849],[-0.07307305932045,0.012320565059781,-0.074923604726791],[-0.0075137419626117,0.012746070511639,-0.040587980300188]],[[0.15399575233459,0.024902146309614,-0.20292496681213],[0.10174881666899,0.11644503474236,0.1203905493021],[0.032729778438807,-0.17986564338207,-0.13924786448479]],[[0.11069478839636,-0.11632537841797,0.0052094347774982],[0.18593706190586,0.0069890995509923,-0.035641886293888],[0.026513198390603,0.023087346926332,0.067921601235867]],[[0.061288025230169,-0.018625551834702,-0.2899366915226],[-0.013652358204126,-0.15165834128857,-0.11516755074263],[0.088656164705753,0.057080827653408,-0.08408696949482]],[[0.088994644582272,-0.13096418976784,-0.10165636986494],[0.036484688520432,-0.057043444365263,-0.036960396915674],[-0.10388749092817,-0.079382926225662,0.054794978350401]],[[0.10714018344879,0.037110574543476,-0.032302364706993],[0.068534411489964,0.030863674357533,-0.089960008859634],[-0.064017847180367,-0.025715868920088,-0.12643951177597]],[[-0.25486749410629,-0.039921741932631,0.12801590561867],[-0.18045775592327,-0.13944385945797,-0.041302286088467],[-0.17172966897488,-0.13807678222656,-0.092219263315201]],[[-0.12686325609684,-0.07989015430212,-0.14373409748077],[-0.17128939926624,0.042946703732014,-0.2361900806427],[-0.094193488359451,-0.21586388349533,-0.077530071139336]],[[-0.10259467363358,0.077256850898266,0.020453719422221],[0.18948599696159,-0.085290357470512,-0.19711028039455],[-0.034848790615797,-0.053965136408806,-0.11116621643305]],[[0.089294083416462,0.023493180051446,0.0047789253294468],[0.026427889242768,0.073966026306152,-0.02615967951715],[-0.05997521430254,0.090320602059364,-0.0073587629012764]],[[-0.088009729981422,-0.031660825014114,-0.078748978674412],[0.020401358604431,-0.015097726136446,0.0081821223720908],[-0.19073584675789,0.073178380727768,-0.13012892007828]],[[0.11927648633718,-0.17632183432579,-0.089776426553726],[0.27250412106514,-0.048526450991631,0.016271010041237],[0.23349951207638,-0.10684961825609,-0.21639207005501]],[[-0.062358312308788,0.14825995266438,0.06646678596735],[0.0061203017830849,-0.05727705731988,-0.02350995503366],[0.32989239692688,-0.1926131695509,-0.11884790658951]],[[-0.016263470053673,-0.0052839107811451,0.31904777884483],[-0.15030831098557,0.091262422502041,0.20332963764668],[-0.2341234087944,0.16666650772095,0.10797864198685]],[[-0.025534462183714,0.13551446795464,0.091777957975864],[-0.0063285366632044,0.17767821252346,-0.17621228098869],[-0.035595986992121,-0.0086417952552438,-0.12555280327797]],[[-0.10951732099056,-0.0076346006244421,0.14238576591015],[-0.059113893657923,-0.083251349627972,0.015520258806646],[0.086402885615826,-0.026246389374137,0.13621084392071]],[[-0.034156281501055,0.0032784789800644,0.072629556059837],[-0.079231843352318,0.071804165840149,0.041947524994612],[0.00019273198267911,-0.19370852410793,-0.28269901871681]],[[-0.063004404306412,-0.10712679475546,0.016384413465858],[-0.2188411206007,0.074468284845352,0.12187916785479],[-0.24799561500549,-0.098321013152599,-0.084986135363579]],[[-0.0032629389315844,-0.037145715206861,0.0222970508039],[0.068508751690388,-0.10151638090611,0.016707306727767],[0.23283992707729,0.069816537201405,0.14838017523289]],[[0.10623001307249,0.033910196274519,-0.19963385164738],[0.085256174206734,-0.064415812492371,-0.18456542491913],[-0.08595285564661,-0.057498052716255,0.029024858027697]],[[0.019401418045163,0.12604044377804,-0.05269817262888],[0.049957636743784,0.067997857928276,-0.0079974476248026],[0.10111394524574,-0.12935101985931,0.11896508932114]],[[-0.037092704325914,-0.1534713357687,-0.10355231165886],[0.02898439206183,-0.11335934698582,0.018546955659986],[-0.061793923377991,-0.029897622764111,0.051648400723934]],[[0.019813243299723,-0.028227841481566,0.026696102693677],[-0.21201686561108,-0.059818960726261,-0.17038834095001],[-0.23071835935116,-0.080459132790565,-0.041793882846832]],[[-0.12353777140379,0.16889497637749,0.055085353553295],[-0.083461329340935,-0.14272414147854,-0.16226428747177],[-0.065857887268066,-0.11464732140303,-0.1874622553587]],[[0.063350163400173,-0.0064010280184448,-0.05128250643611],[0.025106385350227,-0.11429526656866,0.062884829938412],[0.11083850264549,-0.052950832992792,0.059049975126982]],[[0.075978860259056,-0.010985502973199,0.0098258946090937],[-0.034810654819012,0.078312657773495,-0.074333317577839],[-0.12585660815239,0.01058341562748,0.12117148190737]],[[-0.0025095236487687,0.020321751013398,0.098442569375038],[0.015794930979609,0.073977872729301,0.11364272981882],[0.23231670260429,0.029213165864348,-0.027307210490108]],[[0.051998056471348,-0.11225792765617,0.01170118432492],[-0.21431390941143,-0.026776701211929,-0.19871342182159],[0.022971292957664,-0.29344043135643,-0.11792247742414]],[[0.019294520840049,-0.074345767498016,-0.066844090819359],[0.027445904910564,0.054186720401049,0.16604839265347],[-0.16307945549488,0.18228471279144,0.29292330145836]],[[-0.082316510379314,0.10559251904488,0.0025235689245164],[0.0050828191451728,-0.021093035116792,-0.095345176756382],[0.070690326392651,0.18664026260376,-0.061265386641026]],[[0.044165447354317,-0.01011417992413,0.12004963308573],[-0.083873607218266,0.0532446205616,0.071914158761501],[0.010226886719465,0.035627588629723,0.14679944515228]],[[0.093845255672932,-0.13066828250885,-0.22608290612698],[-0.067521467804909,0.070210963487625,-0.13642013072968],[-0.18700011074543,0.19321738183498,0.015877269208431]],[[0.18390446901321,0.14326551556587,-0.073662236332893],[0.16846016049385,0.0095514543354511,-0.086474277079105],[0.081584371626377,0.18186876177788,-0.1147747784853]],[[-0.15549968183041,0.17773923277855,0.088499493896961],[-0.043109677731991,0.10473281145096,0.0086466949433088],[0.22800512611866,0.058104585856199,-0.0057393810711801]],[[-0.087914124131203,0.069573178887367,0.17604230344296],[0.063259117305279,0.084244430065155,-0.018304035067558],[-0.057211816310883,0.18516086041927,0.1092811524868]],[[-0.042634338140488,0.020547538995743,-0.054760210216045],[0.0664983689785,0.036169156432152,-0.10762480646372],[0.053579740226269,-0.25224784016609,0.0085428291931748]],[[-0.011469905264676,0.010750539600849,0.023706361651421],[-0.0057586655020714,0.008444462902844,-0.097818747162819],[-0.082726269960403,-0.0034307423047721,0.036598138511181]],[[-0.042237095534801,0.016837375238538,-0.095766969025135],[0.19672453403473,0.0040780501440167,-0.065943978726864],[0.16513372957706,-0.027292612940073,0.04054631665349]],[[0.059263173490763,0.026979414746165,-0.0086633116006851],[-0.075150348246098,-0.15715061128139,-0.045747056603432],[-0.12184420973063,-0.036545284092426,0.0092298602685332]],[[0.044690545648336,-0.1853328794241,-0.088186658918858],[0.024969356134534,-0.053928136825562,-0.041783660650253],[-0.071684762835503,0.033781964331865,0.071137458086014]],[[-0.15297029912472,0.0036003810819238,-0.011956443078816],[-0.12871873378754,0.11841898411512,-0.11997782438993],[-0.11931695044041,-0.0062995962798595,-0.29746675491333]],[[-0.23636771738529,0.12676522135735,-0.072661362588406],[-0.070331811904907,0.070442065596581,-0.028600068762898],[-0.010095773264766,0.034583617001772,0.08387853205204]],[[-0.091959610581398,-0.022997535765171,-0.062134884297848],[-0.018259022384882,-0.011811028234661,0.087453588843346],[-0.029451413080096,-0.20359501242638,-0.14254596829414]],[[0.062255758792162,-0.00025127470144071,0.10985436290503],[-0.16944035887718,-0.032980002462864,0.19921784102917],[-0.40602487325668,-0.12826012074947,0.035363610833883]],[[0.01820906996727,-0.10152862966061,0.04370179772377],[0.10423614829779,-0.17653031647205,-0.10675071179867],[-0.099631831049919,0.02391148544848,-0.054661940783262]],[[0.028045743703842,-0.086035557091236,-0.3787769973278],[0.099657490849495,-0.091433994472027,-0.33954536914825],[0.10873055458069,-0.10493006557226,-0.0053637572564185]],[[-0.064335152506828,-0.053195938467979,-0.17121703922749],[-0.14952875673771,-0.093151330947876,0.0032877929043025],[-0.082651935517788,-0.033201020210981,-0.0011732772691175]],[[-0.093312561511993,-0.05939557030797,-0.24146354198456],[-0.018756009638309,0.030182607471943,-0.15402190387249],[-0.070915006101131,-0.093853160738945,-0.27595528960228]],[[-0.057467218488455,0.1112797409296,-0.072904594242573],[-0.058610718697309,0.049924150109291,0.019777229055762],[-0.19532109797001,0.043149199336767,-0.10270582139492]],[[-0.029262103140354,-0.018538679927588,-0.23905403912067],[0.059336189180613,-0.065384767949581,-0.014343082904816],[0.22252213954926,-0.015032555907965,-0.19521160423756]],[[0.018827650696039,-0.17212852835655,0.12974545359612],[0.1457521468401,-0.040614139288664,-0.060819111764431],[0.027555109933019,-0.052028305828571,-0.00032278065918945]],[[0.01677337102592,-0.11871272325516,-0.08919844776392],[-0.013244706206024,-0.043815813958645,0.096943490207195],[-0.12406864762306,0.12312189489603,0.1885704100132]],[[0.018500976264477,0.14233291149139,0.021117962896824],[-0.011854946613312,-0.045426148921251,0.15756370127201],[-0.034156728535891,-0.077007651329041,0.090494185686111]],[[-0.011802130378783,0.087605558335781,0.055153552442789],[0.20067998766899,-0.026426993310452,-0.21913808584213],[0.21085719764233,-0.30763590335846,-0.026756159961224]],[[-0.18410558998585,-0.090876154601574,-0.09535214304924],[0.11810683459044,-0.023050079122186,-0.10002198070288],[0.086939699947834,-0.025134645402431,-0.10296931862831]],[[-0.23959060013294,-0.12114195525646,0.13077872991562],[-0.29488757252693,-0.19691987335682,0.12707088887691],[-0.18816880881786,-0.27528873085976,0.074096225202084]],[[-0.019994029775262,-0.1064997240901,-0.11455496400595],[-0.091521970927715,-0.0082497159019113,0.079104065895081],[-0.048423767089844,-0.06346532702446,-0.22344174981117]],[[0.10592551529408,-0.015355132520199,-0.014934061095119],[-0.072467811405659,0.10215925425291,-0.12836809456348],[-0.088126547634602,0.016985826194286,-0.15465088188648]],[[-0.010848387144506,-0.009160753339529,0.10469490289688],[0.05414617061615,0.19803553819656,-0.10430631786585],[0.083545662462711,0.16764514148235,-0.043314095586538]],[[0.045588687062263,-0.16798649728298,-0.018934296444058],[-0.059377424418926,-0.1048244535923,-0.090022951364517],[-0.11157069355249,-0.20326671004295,-0.13983407616615]],[[0.14384543895721,0.25455194711685,0.16064594686031],[0.15285150706768,0.077185802161694,-0.1438594609499],[-0.18864069879055,0.15764205157757,0.072307467460632]],[[-0.23578934371471,-0.089330330491066,-0.10547210276127],[-0.13901294767857,-0.34857562184334,-0.090858340263367],[-0.3280568420887,-0.12951603531837,-0.16899774968624]],[[-0.37555047869682,-0.026938339695334,0.12085144221783],[-0.18020583689213,-0.070987120270729,0.19801370799541],[-0.24656158685684,-0.022115938365459,0.14655371010303]],[[0.15033802390099,0.23336684703827,-0.076316185295582],[-0.22714218497276,-0.11235349625349,-0.020649692043662],[-0.090076856315136,-0.24585150182247,-0.12660455703735]],[[-0.082377329468727,-0.1753047555685,-0.048547729849815],[-0.13553448021412,0.071042284369469,-0.092187009751797],[-0.15013740956783,0.11613728106022,-0.060290858149529]],[[-0.0079834116622806,0.022818209603429,0.1255748718977],[0.080387741327286,-0.016045419499278,-0.064011223614216],[-0.021858301013708,0.041186220943928,-0.062982432544231]],[[-0.23227922618389,0.039101004600525,0.064528577029705],[-0.28429800271988,-0.10629037767649,-0.031555991619825],[-0.14211057126522,1.2590931874001e-05,0.043179631233215]],[[0.28370478749275,-0.032993301749229,0.1725385338068],[-0.0035676527768373,0.083350896835327,-0.043996978551149],[-0.05123645812273,-0.053859882056713,-0.051649086177349]],[[0.02761510014534,-0.05543690174818,-0.11732245236635],[-0.13502283394337,0.12544998526573,0.10774554312229],[-0.066068768501282,-0.031237233430147,0.14209146797657]],[[0.0036543365567923,0.075022779405117,-0.12845098972321],[-0.11382951587439,0.014037130400538,-0.037544794380665],[-0.23306196928024,-0.095765210688114,0.039285000413656]],[[0.10123874247074,-0.056117616593838,-0.153434202075],[0.10068206489086,-0.046262938529253,-0.057346817106009],[0.20741236209869,0.034697446972132,-0.14168813824654]],[[-0.082454018294811,0.028147123754025,-0.11740381270647],[0.11413560062647,-0.040038421750069,-0.077797517180443],[-0.041112065315247,-0.12249021232128,0.016695357859135]],[[0.029773704707623,0.032966434955597,-0.12605294585228],[0.06308626383543,0.21124583482742,-0.10178007185459],[0.099451549351215,-0.0039248089306056,-0.013173842802644]],[[0.094361320137978,-0.15379343926907,-0.17356507480145],[-0.053568206727505,0.015767620876431,0.11969393491745],[0.20630456507206,0.075293570756912,-0.21469008922577]],[[0.090551346540451,0.1362883746624,-0.15956947207451],[0.075613349676132,0.026392761617899,-0.18839171528816],[0.11888544261456,0.060166142880917,-0.13437575101852]],[[-0.0632319226861,0.22082549333572,-0.15245190262794],[-0.034506309777498,0.26467046141624,0.055538050830364],[-0.21627615392208,0.07132188975811,0.12662300467491]],[[0.15754084289074,0.012349301949143,-0.0092771481722593],[0.12179497629404,0.053237404674292,0.16293922066689],[-0.052355978637934,-0.038848776370287,-0.045458991080523]],[[0.13129489123821,0.092374593019485,0.041233234107494],[-0.0120286392048,0.15046122670174,0.15199537575245],[0.1136529892683,-0.15891121327877,-0.087610997259617]],[[0.06966008991003,0.10070937126875,-0.22232441604137],[-0.037537261843681,0.0098806414753199,-0.31599608063698],[0.21828657388687,0.018213875591755,0.039412476122379]],[[0.073721803724766,-0.20004731416702,0.025866689160466],[0.065345801413059,-0.12982054054737,-0.02578960172832],[-0.084613814949989,0.01949873007834,0.061680939048529]],[[-0.0075156227685511,-0.20508566498756,-0.011113959364593],[0.0052838250994682,0.010040464811027,-0.08976723998785],[0.050182346254587,0.031380217522383,0.045134741812944]],[[-0.13398090004921,0.12890188395977,0.099586851894855],[-0.13393439352512,0.12019158899784,0.097619377076626],[-0.030044062063098,0.074309527873993,-0.026618998497725]],[[0.036949969828129,-0.15611009299755,0.040504090487957],[-0.13696871697903,0.00020527436572593,-0.06711433827877],[0.21774725615978,-0.0095832496881485,-0.078285530209541]],[[-0.15409429371357,-0.10864210128784,-0.068404644727707],[-0.13206444680691,-0.082035139203072,-0.13830575346947],[-0.15663899481297,-0.073324471712112,-0.062601752579212]],[[-0.036225266754627,0.027229037135839,0.05233246460557],[-0.14626687765121,0.051730420440435,0.055108532309532],[-0.083798453211784,-0.090139113366604,0.28441941738129]],[[0.1015957519412,0.0038483135867864,0.004582510329783],[0.15166658163071,0.09601803123951,0.096345812082291],[0.20165169239044,-0.0064598638564348,0.13241963088512]],[[0.059881422668695,-0.05480395630002,0.055810112506151],[-0.057074513286352,-0.14318780601025,0.11023270338774],[-0.011797190643847,0.11599808931351,0.085944257676601]],[[0.21960471570492,-0.17205525934696,0.03535782918334],[0.14219266176224,-0.013080598786473,0.0022089220583439],[0.28290215134621,0.11254327744246,0.033221479505301]],[[0.15511271357536,0.092944599688053,-0.10316424816847],[0.10782837867737,-0.16688147187233,-0.13647775352001],[0.15777426958084,0.0008821563096717,-0.1331722587347]],[[0.13382789492607,0.096749916672707,0.0018848569598049],[-0.043255243450403,-0.036845866590738,-0.087820440530777],[0.086816340684891,-0.045296631753445,0.098585948348045]],[[0.16144078969955,0.031669456511736,0.031251937150955],[0.028676103800535,0.087282955646515,-0.0056829354725778],[0.023716438561678,-0.078364536166191,-0.045143630355597]],[[-0.0248704534024,-0.15095987915993,0.063780263066292],[-0.028516165912151,-0.17654649913311,0.096409440040588],[-0.12521436810493,-0.15248176455498,-0.028631145134568]],[[-0.17256118357182,0.003016285598278,-0.18227465450764],[-0.083727285265923,0.048318531364202,0.10622865706682],[-0.05430955067277,-0.16387328505516,0.30390772223473]],[[-0.25301855802536,-0.016843318939209,0.2332716435194],[-0.17774905264378,-0.01033073477447,0.1689538359642],[0.008039677515626,-0.012216766364872,0.21176494657993]],[[0.11454381048679,0.080308303236961,-0.0068293935619295],[-0.041192382574081,0.103929489851,-0.059956010431051],[-0.07181741297245,-0.067703314125538,0.026838785037398]],[[0.034722223877907,0.068685039877892,0.30536478757858],[0.069644331932068,0.0127565683797,0.12210669368505],[-0.036775100976229,0.0072520105168223,-0.036281522363424]],[[0.077963292598724,-0.065472230315208,-0.085850454866886],[-0.061388913542032,-0.12395284324884,0.05349625274539],[-0.11906646192074,-0.073769629001617,0.024426510557532]],[[0.045236606150866,0.080388315021992,-0.16377118229866],[0.085480466485023,-0.09855367988348,-0.15262497961521],[0.11583913117647,-0.015563541091979,-0.044668316841125]],[[-0.0097667016088963,0.061859507113695,-0.13370597362518],[-0.040004909038544,-0.021623866632581,-0.16468025743961],[-0.14236627519131,-0.1799178570509,-0.16250723600388]],[[-0.22378584742546,0.038192208856344,-0.047000635415316],[-0.22047474980354,0.087417170405388,0.08815873414278],[-0.083873562514782,0.087325699627399,0.08760803937912]],[[0.059826906770468,0.0632104575634,0.13198329508305],[0.093034856021404,0.018931163474917,0.12226893752813],[0.0095922267064452,0.026713136583567,0.020152725279331]],[[-0.20425556600094,-0.011332575231791,0.23048940300941],[0.020762899890542,0.019091855734587,0.1431045383215],[0.12449219077826,0.037931442260742,-0.00039820084930398]],[[-0.25994783639908,0.044701714068651,-0.027171602472663],[-0.073288798332214,-0.0047444347292185,-0.11234313249588],[-0.18594959378242,0.10696489363909,-0.10158050060272]],[[0.026472229510546,0.053200945258141,0.099537558853626],[0.042234178632498,-0.068600848317146,0.096406325697899],[0.10422267019749,-0.11606279760599,0.18545328080654]],[[0.21674171090126,0.049702618271112,0.24704341590405],[-0.039661414921284,-0.035045828670263,0.0080667342990637],[0.11116733402014,-0.051480531692505,-0.15753474831581]],[[0.068832412362099,-0.1681781411171,-0.051196631044149],[0.0426842905581,-0.031264364719391,-0.042345810681581],[-0.012159651145339,-0.17276382446289,-0.068161867558956]],[[-0.054740481078625,-0.047948013991117,0.021066373214126],[-0.14275017380714,0.0078482143580914,-0.044634450227022],[-0.1161038056016,0.13692925870419,0.11565668880939]],[[0.053601447492838,-0.1512518376112,-0.26531916856766],[-0.046490855515003,0.005750447511673,0.05074467882514],[0.099328108131886,0.15418434143066,0.055800206959248]],[[-0.15041972696781,0.05566368624568,0.00076682138023898],[-0.037415102124214,0.21143186092377,-0.014226781204343],[-0.044444173574448,0.33059421181679,0.15810368955135]],[[0.025712816044688,-0.051864393055439,0.06858517229557],[0.079349547624588,-0.030786298215389,-0.059767264872789],[0.04206445813179,-0.11479091644287,-0.035743322223425]],[[-0.0074486304074526,0.0259047485888,0.034011378884315],[0.095814377069473,-0.078791029751301,0.016039658337831],[0.38319835066795,-0.05802883207798,0.0029319780878723]],[[0.095086060464382,-0.19228830933571,-0.030450545251369],[-0.009711679071188,-0.089805647730827,-0.030539216473699],[0.059682086110115,-0.070737048983574,0.12679497897625]],[[0.071418263018131,0.090933866798878,-0.12505623698235],[0.048754278570414,-0.047337576746941,-0.059358142316341],[0.032828222960234,0.043915826827288,0.017473408952355]],[[-0.1241070702672,-0.18574230372906,0.040772706270218],[0.10412296652794,0.063498340547085,0.10289762169123],[0.011758854612708,-0.090642526745796,-0.045701313763857]],[[0.10947799682617,0.050737280398607,0.065472595393658],[0.043867513537407,0.09188474714756,0.10373076796532],[-0.098078384995461,0.072765983641148,0.059124849736691]]],[[[-0.041057422757149,-0.12475507706404,-0.16866245865822],[-0.066542521119118,-0.095675848424435,0.085908614099026],[0.043344985693693,0.08454492688179,-0.14404593408108]],[[-0.15563406050205,-0.069706112146378,0.10541532933712],[0.11159280687571,0.039429299533367,0.018997840583324],[0.14886020123959,-0.015782298520207,-0.18972563743591]],[[0.13823318481445,0.072834730148315,0.043064799159765],[0.27043533325195,0.085494250059128,0.076722487807274],[-0.082114152610302,0.16538301110268,0.0093582374975085]],[[-0.053806714713573,-0.089244924485683,-0.11205434054136],[0.010580187663436,-0.12881104648113,0.087471537292004],[0.022930514067411,-0.16999404132366,-0.093983627855778]],[[0.2360972315073,0.12888944149017,-0.0099274469539523],[0.095835492014885,-0.069331556558609,-0.11766515672207],[-0.06003113090992,0.041620444506407,-0.099437735974789]],[[0.072184674441814,-0.085185542702675,0.036721970885992],[-0.069886468350887,0.00049430516082793,-0.061905156821012],[0.14260646700859,0.048797078430653,0.057520918548107]],[[0.17017140984535,0.041242111474276,0.0860386043787],[-0.091231934726238,-0.0038340853061527,0.0876105427742],[0.031876560300589,0.070712715387344,0.014299566857517]],[[-0.22430135309696,-0.034097362309694,-0.00051199307199568],[-0.20496790111065,0.121821179986,0.36962825059891],[0.1247191131115,-0.047122582793236,-0.029557591304183]],[[-0.062405653297901,-0.17113888263702,-0.061615940183401],[0.011455559171736,-0.024262264370918,-0.089520342648029],[-0.074465274810791,0.12078911066055,0.0089098373427987]],[[0.17912831902504,-0.019508950412273,-0.21410584449768],[-0.0032376237213612,-0.1492607742548,0.042270328849554],[-0.057810623198748,0.054495193064213,0.045290548354387]],[[-0.04662923887372,-0.014316352084279,0.13123862445354],[-0.072368174791336,-0.073406487703323,0.081088803708553],[0.039005525410175,-0.075194895267487,0.074213691055775]],[[0.092480458319187,0.057975102216005,0.15679015219212],[-0.013755884021521,0.0040597440674901,-0.10620203614235],[0.092139951884747,0.053305640816689,0.096892021596432]],[[0.12688145041466,0.025507522746921,-0.077672600746155],[0.091246120631695,-0.20517857372761,-0.012746699154377],[-0.07876992225647,-0.030883859843016,-0.023704079911113]],[[0.043910082429647,-0.12161964178085,-0.0024816137738526],[0.11612842977047,0.1771577745676,-0.10721639543772],[0.11293335258961,0.09797128289938,0.11688961833715]],[[-0.084797710180283,0.10666221380234,0.049981147050858],[0.05166706815362,0.065176256000996,0.13217885792255],[-0.029358340427279,0.017204012721777,0.056445345282555]],[[0.094463095068932,0.05457091704011,-0.12573209404945],[0.2032882720232,-0.10380859673023,-0.19970078766346],[0.038383632898331,-0.1100567355752,-0.062026169151068]],[[-0.02177145332098,-0.14359375834465,0.00091145921032876],[0.050917025655508,-1.6938251064857e-05,-0.030889654532075],[-0.11322400718927,0.0024044143501669,-0.11700122058392]],[[-0.0050655142404139,0.064895540475845,-0.019077051430941],[0.0066941417753696,0.055791292339563,0.093095853924751],[-0.02197191119194,0.055241450667381,0.10258817672729]],[[0.159628495574,0.096828684210777,-0.022682029753923],[0.051419097930193,0.080931410193443,0.13535413146019],[-0.10846656560898,-0.043225716799498,0.022239176556468]],[[0.096446678042412,-0.088849037885666,0.069063976407051],[-0.017993584275246,-0.051957476884127,0.14179360866547],[0.091190181672573,0.077359326183796,-0.11724607646465]],[[-0.0052342778071761,0.037223059684038,-0.099720172584057],[-0.088150732219219,-0.081125363707542,0.052761886268854],[-0.29690188169479,0.055460765957832,0.050033964216709]],[[0.016012419015169,0.0169597286731,-0.028246598318219],[0.088727988302708,0.13478147983551,-0.012466661632061],[-0.038470719009638,0.056557107716799,0.030723566189408]],[[0.0051547782495618,-0.01283429004252,-0.096785135567188],[-0.13435627520084,-0.018516337499022,0.0089016668498516],[0.043411992490292,0.10689118504524,0.1655226200819]],[[-0.091554507613182,-0.093106098473072,0.018148366361856],[-0.14521783590317,-0.11475072056055,0.068861916661263],[0.073974847793579,-0.12803815305233,-0.074121981859207]],[[0.19394047558308,0.021296493709087,0.10758510231972],[0.075956366956234,0.11898620426655,0.079088516533375],[0.0021486598998308,-0.038496244698763,-0.029333140701056]],[[-0.014462322928011,-0.011258263140917,0.031823191791773],[0.044850509613752,-0.0053207636810839,-0.029653530567884],[-0.08979856222868,-0.013634663075209,0.098316483199596]],[[0.025200260803103,0.053044084459543,0.011001866310835],[-0.057912077754736,0.038065314292908,0.10976243764162],[0.061753589659929,-0.011994071304798,-0.0414775647223]],[[0.00017206091433764,0.017134200781584,-0.096208140254021],[-0.026935303583741,0.00082798075163737,-0.072103478014469],[0.13053223490715,0.11925721168518,-0.080179512500763]],[[-0.11619345843792,-0.12862849235535,-0.086669690907001],[-0.05710170045495,-0.10783853381872,-0.09422941505909],[0.028713708743453,-0.14265094697475,-0.023231340572238]],[[0.12727703154087,-0.014598747715354,0.13369455933571],[-0.081024572253227,0.062942050397396,-0.075743779540062],[-0.054185546934605,-0.11360646784306,-0.056368831545115]],[[-0.07241166383028,-0.049152061343193,0.03328962624073],[0.062909558415413,-0.096154719591141,-0.10726774483919],[-0.0097146173939109,0.033089946955442,-0.097229659557343]],[[-0.095673434436321,-0.094846278429031,0.093895740807056],[-0.0095501663163304,-0.069551922380924,0.045233156532049],[0.091303326189518,0.036674439907074,0.085943795740604]],[[-0.069857314229012,-0.19133029878139,-0.19988633692265],[0.077940806746483,-0.049945905804634,0.035438228398561],[-0.094546750187874,0.1201661452651,0.094803892076015]],[[0.17885985970497,-0.20455193519592,-0.05873404815793],[-0.027671428397298,-0.029682375490665,0.03094289265573],[-0.29737392067909,-0.097188428044319,0.066886231303215]],[[0.11425922811031,0.023128310218453,-0.17673681676388],[-0.041913785040379,-0.15313681960106,-0.032048348337412],[0.088680490851402,0.017674036324024,-0.19413113594055]],[[-0.18464496731758,0.061490587890148,-0.0033723306842148],[-0.080827191472054,-0.078457832336426,-0.065052695572376],[-0.048170048743486,0.12195341289043,-0.0096507295966148]],[[0.07881686091423,-0.071905538439751,0.080190978944302],[0.0071385111659765,0.015593821182847,-0.0085587445646524],[-0.058587435632944,0.046607654541731,0.039248865097761]],[[0.09137898683548,-0.050446707755327,-0.14458383619785],[-0.061542183160782,-0.16287872195244,-0.075188830494881],[0.054137896746397,-0.18366785347462,-0.076152488589287]],[[-0.086326032876968,0.062041454017162,0.086747631430626],[-0.091481037437916,0.07139690965414,-0.050711121410131],[0.12998221814632,0.026048002764583,-0.063885718584061]],[[0.01396272983402,0.0070738825015724,-0.056132011115551],[-0.069956384599209,-0.075987234711647,0.016962788999081],[0.063191451132298,0.093253903090954,0.051108822226524]],[[0.16928841173649,0.074350818991661,0.065343178808689],[0.17401373386383,0.071662582457066,-0.1338479667902],[-0.0084545342251658,-0.10901130735874,-0.050697453320026]],[[-0.13253837823868,-0.0913280621171,0.065639495849609],[-0.019872780889273,0.10169667750597,0.12973481416702],[-0.11210252344608,0.044699497520924,0.026713687926531]],[[0.022044967859983,-0.09505932033062,0.050980795174837],[-0.031415697187185,-0.22975125908852,-0.034494519233704],[0.020060008391738,0.041707262396812,0.020188832655549]],[[-0.045420680195093,-0.06877413392067,-0.073689676821232],[0.049499146640301,-0.053718261420727,0.0059177880175412],[0.02095639705658,0.040141381323338,-0.07053891569376]],[[0.27100959420204,0.070056572556496,0.017792984843254],[-0.13170090317726,-0.14417596161366,-0.12897779047489],[-0.049965534359217,-0.018012546002865,0.032651703804731]],[[0.072116412222385,0.13096877932549,0.061888996511698],[-0.055330399423838,-0.064248733222485,0.0052852532826364],[-0.02557766251266,-0.052175536751747,-0.028791258111596]],[[-0.056053377687931,-0.10949212312698,-0.12405267357826],[-0.051734931766987,0.059093281626701,-0.10688328742981],[0.05547496676445,0.071992374956608,0.0094056241214275]],[[-0.059004709124565,-0.056346096098423,0.067414276301861],[-0.061436727643013,0.03292740136385,-0.058347646147013],[0.21196888387203,-0.040724206715822,0.029801595956087]],[[-0.22367300093174,-0.11894740909338,0.076625846326351],[-0.15695238113403,0.04608054459095,-0.076143704354763],[-0.032870024442673,0.015878681093454,0.033422589302063]],[[-0.029818873852491,-0.1605474203825,-0.1212390139699],[-0.19897620379925,-0.020850198343396,0.053524293005466],[0.014730675145984,-0.064397312700748,0.086667194962502]],[[-0.030071334913373,0.0087107103317976,-0.1151103451848],[-0.028189554810524,0.053035985678434,-0.061589527875185],[0.11862799525261,0.081188447773457,-0.19408151507378]],[[0.050062585622072,-0.16536115109921,-0.00078011356526986],[0.073855467140675,-0.066893242299557,-0.013677490875125],[0.10573948919773,0.19574858248234,0.014472029171884]],[[0.028258750215173,0.0087751429527998,-0.25083094835281],[0.046512622386217,-0.039350491017103,-0.15028309822083],[-0.02506790868938,-0.01056151278317,-0.020686909556389]],[[0.088576108217239,-0.1007187962532,-0.069468334317207],[0.037766832858324,0.085176855325699,0.084569223225117],[0.0026413341984153,0.02060073427856,-0.1495732665062]],[[0.17722053825855,-0.13898810744286,-0.16722643375397],[0.057085089385509,0.022468261420727,-0.005475765094161],[0.055942974984646,-0.038634814321995,0.088330417871475]],[[0.14781881868839,-0.22156509757042,-0.08454055339098],[-0.16994315385818,0.001498440396972,-0.054706029593945],[0.0051757306791842,-0.078415133059025,0.039189871400595]],[[-0.031935516744852,-0.021290624514222,-0.0022317313123494],[0.26386100053787,-0.033746793866158,0.0053801257163286],[-0.093093246221542,0.085109904408455,-0.19860212504864]],[[-0.066158808767796,-0.044107023626566,-0.19023643434048],[0.1504348218441,-0.045243695378304,-0.18053403496742],[-0.079183921217918,-0.13250303268433,0.0074392152018845]],[[0.0027960783336312,-0.10470481961966,-0.039219349622726],[-0.11498007923365,-0.085536509752274,-0.14850400388241],[0.011782020330429,-0.045586168766022,0.10226464271545]],[[0.074664212763309,0.043852150440216,0.04040515050292],[0.19438329339027,0.051186133176088,-0.16353741288185],[-0.058977331966162,-0.018917361274362,0.0057625616900623]],[[0.028626650571823,-0.12133227288723,-0.091942861676216],[-0.095409467816353,0.030745914205909,0.016742968931794],[0.036484081298113,-0.041633684188128,-0.11724285781384]],[[-0.0019096520263702,-0.097192928195,-0.077072404325008],[0.16601359844208,-0.24855560064316,-0.020887803286314],[0.0050414623692632,0.02237132564187,-0.065954744815826]],[[1.0956194273604e-05,-0.015905071049929,0.072590447962284],[0.023507103323936,-0.044407594949007,0.011720315553248],[0.12916511297226,0.086727529764175,0.053305711597204]],[[-0.15753877162933,0.11351803690195,0.13816402852535],[-0.018268609419465,0.16507357358932,0.043651930987835],[-0.049411837011576,0.080654039978981,0.0030180800240487]],[[0.10829149186611,-0.033551260828972,0.090367093682289],[0.063884973526001,-0.16735136508942,-0.06690638512373],[-0.014979823492467,-0.060469746589661,0.11943927407265]],[[-0.080477058887482,0.085551291704178,-0.018706588074565],[-0.1088200211525,0.026080789044499,-0.1641181409359],[-0.08051348477602,-0.13815414905548,-0.064657188951969]],[[0.36001318693161,-0.064231939613819,-0.265923589468],[0.07990999519825,-0.010512052103877,0.061996653676033],[0.20363153517246,-0.051321696490049,-0.071657903492451]],[[-0.11994230002165,-0.12517458200455,-0.14169313013554],[-0.01368179731071,0.040555831044912,-0.0849848985672],[-0.048585828393698,0.096410185098648,0.048486799001694]],[[0.031215293332934,-0.041940424591303,0.022317150607705],[0.11769507080317,-0.050593920052052,-0.041268512606621],[0.09291648119688,-0.057409286499023,-0.074397079646587]],[[0.0274453535676,-0.049901980906725,0.035107389092445],[-0.075288034975529,-0.0024243495427072,0.0028230235911906],[-0.15456210076809,-0.12438025325537,-0.27648800611496]],[[-0.088550738990307,0.060808338224888,-0.056615956127644],[0.043976183980703,0.029223477467895,-0.1633785367012],[-0.065739713609219,0.026881773024797,-0.0052802027203143]],[[0.030455553904176,-0.12166877835989,-0.030413921922445],[-0.017507199198008,0.10038514435291,0.066534228622913],[-0.16699877381325,-0.022706342861056,-0.10765765607357]],[[-0.13293592631817,0.035659357905388,-0.0062027517706156],[0.010208050720394,-0.041041616350412,-0.095536164939404],[0.060891535133123,-0.0020053754560649,-0.0080675557255745]],[[-0.027541099116206,-0.048849508166313,-0.077035702764988],[-0.0084537146613002,0.058113623410463,0.096817828714848],[-0.062294699251652,0.051069103181362,0.022788399830461]],[[-0.11357828974724,-0.10165353864431,0.1257738173008],[-0.088224843144417,0.023510372266173,-0.059035930782557],[-0.19384449720383,0.0026493237819523,-0.026598244905472]],[[0.14622305333614,-0.16226468980312,-0.10307776927948],[0.055515442043543,-0.047909218817949,-0.082772456109524],[-0.046926517039537,-0.011197987943888,-0.030478600412607]],[[-0.097188554704189,-0.0087799960747361,-0.045502778142691],[-0.070671990513802,-0.011002040468156,0.044101484119892],[-0.094141483306885,-0.067550607025623,-0.051137834787369]],[[-0.13500794768333,-0.15974490344524,-0.036409828811884],[-0.094313383102417,-0.07204919308424,-0.02066907659173],[0.0034884542692453,-0.03862201794982,0.01422924734652]],[[0.021582089364529,0.021438773721457,0.010601753368974],[-0.0040630991570652,7.5292700785212e-06,0.11829464137554],[0.018519833683968,0.17737208306789,0.16926048696041]],[[-0.088924326002598,-0.15878702700138,-0.062787488102913],[-0.033293023705482,-0.042653329670429,-0.097950957715511],[-0.057140853255987,-0.022222619503736,-0.1203647851944]],[[-0.18886081874371,-0.083399258553982,-0.12847872078419],[-0.033890273422003,0.11098698526621,0.21459463238716],[0.071696639060974,0.089160904288292,-0.095399245619774]],[[-0.083436049520969,-0.035533286631107,-0.030475692823529],[0.20872670412064,0.094197623431683,-0.095345817506313],[-0.040036510676146,0.036180783063173,0.010009008459747]],[[-0.030524779111147,0.09720866382122,-0.040757574141026],[0.045773983001709,-0.10921281576157,-0.05864654108882],[-0.0092838415876031,0.053867030888796,-0.10334064811468]],[[-0.0046851546503603,-0.00027839955873787,-0.11484825611115],[0.011635404080153,0.15065652132034,0.038490328937769],[-0.10578019171953,-0.037183903157711,-0.11843223124743]],[[-0.030633743852377,0.05189248546958,0.0075994995422661],[-0.019384123384953,-0.017629301175475,0.17254500091076],[0.068953819572926,0.10418572276831,0.07364147901535]],[[0.14045505225658,0.018296997994184,-0.21337158977985],[0.099973678588867,0.24222114682198,-0.097332157194614],[0.016559731215239,0.08151975274086,-0.0795494094491]],[[0.15374328196049,0.029954811558127,0.012972117401659],[-0.061306569725275,-0.1360279917717,0.045431636273861],[0.21312110126019,0.10297533124685,-0.013708470389247]],[[0.18836548924446,0.0093172807246447,-0.035007689148188],[-0.056770671159029,-0.081231810152531,-0.0097396392375231],[0.020360708236694,-0.059461500495672,0.0079673789441586]],[[0.13810397684574,-0.027030715718865,0.055222909897566],[-0.014115777797997,0.01057356595993,0.06934467703104],[0.11101739853621,0.036790702491999,0.026500422507524]],[[-0.11345163732767,-0.15158104896545,-0.21927988529205],[-0.071733802556992,0.051937200129032,0.057769384235144],[-0.066743195056915,-0.087442852556705,0.089817017316818]],[[0.045793604105711,0.08752865344286,0.084355734288692],[-0.053867660462856,-0.060728665441275,0.16263498365879],[-0.13017317652702,-0.15991844236851,-0.13078665733337]],[[0.055993631482124,-0.10126581788063,-0.06827200204134],[0.042678870260715,-0.0090221287682652,-0.033000010997057],[-0.090376302599907,-0.050115443766117,-0.023231411352754]],[[0.039753198623657,0.25823822617531,-0.092805936932564],[0.26327881217003,0.11596515029669,0.024846784770489],[-0.097247757017612,-0.063200920820236,-0.028033651411533]],[[-0.1968709975481,-0.11618817597628,-0.17533721029758],[-0.18385504186153,-0.087070249021053,0.016117556020617],[-0.11687423288822,-0.066285401582718,0.03279422223568]],[[0.0093008801341057,0.096974179148674,-0.1224941983819],[0.17617988586426,-0.12707033753395,-0.016835074871778],[0.080343849956989,0.072307735681534,-0.040239863097668]],[[-0.082050286233425,-0.095926381647587,-0.00363072543405],[0.031040240079165,0.020876076072454,0.1613477319479],[0.061688467860222,0.059500187635422,0.15065282583237]],[[-0.21848647296429,-0.030265996232629,-0.071633890271187],[0.028200773522258,-0.026199817657471,0.038574647158384],[0.075159095227718,-0.11294758319855,0.0016349462093785]],[[-0.0099061587825418,-0.0044508762657642,-0.014324677176774],[0.16817437112331,-0.055564675480127,0.15865829586983],[0.083810485899448,0.17309002578259,0.16405873000622]],[[0.18802672624588,-0.10740619152784,0.035736184567213],[-0.051709309220314,-0.0089496904984117,0.10463534295559],[-0.12653411924839,0.15284769237041,-0.0069734519347548]],[[0.097245797514915,0.12317677587271,0.030138654634356],[0.03763061016798,-0.074275597929955,-0.039097178727388],[-0.18371114134789,-0.11020135879517,-0.042842075228691]],[[-0.11004183441401,0.15680707991123,0.033752676099539],[-0.10967345535755,-0.14238895475864,-0.2197083979845],[-0.054783772677183,0.0072258710861206,-0.011408240534365]],[[0.20681436359882,0.15229213237762,0.17964762449265],[0.21601112186909,0.08984587341547,0.06839619576931],[-0.21613177657127,-0.093502216041088,-0.030306570231915]],[[0.066503152251244,-0.093977056443691,-0.034291800111532],[0.055995851755142,-0.0026847389526665,-0.012605000287294],[-0.023942247033119,0.06584033370018,0.11409559100866]],[[-0.034950416535139,-0.012002998031676,0.02085511945188],[-0.056405421346426,0.070906892418861,0.12754487991333],[-0.092443212866783,0.15861968696117,-0.064707361161709]],[[-0.073970809578896,-0.034871403127909,0.14583103358746],[-0.14308738708496,-0.069506488740444,-0.090441033244133],[0.1621195524931,0.1028863042593,0.14584039151669]],[[0.074236840009689,0.070341125130653,0.046413443982601],[-0.035977657884359,-0.012829104438424,-0.066490478813648],[-0.018308080732822,0.02647902444005,-0.039793249219656]],[[0.17114497721195,-0.023200722411275,0.040840897709131],[0.049317214637995,0.13787385821342,-0.11650364100933],[-0.17081955075264,-0.047411378473043,0.028930597007275]],[[0.11714608967304,-0.018841741606593,-0.2119250446558],[-0.02330319210887,0.019630016759038,-0.11500237137079],[-0.0837646946311,-0.064966231584549,0.0093111172318459]],[[0.24697947502136,0.01523928437382,-0.023871516808867],[-0.1319423019886,-0.039622951298952,-0.083346791565418],[0.013165057636797,0.057963836938143,0.0048649981617928]],[[-0.033471468836069,0.061280522495508,0.011529376730323],[-0.026264928281307,0.087897889316082,0.067736193537712],[0.0070300837978721,0.036989212036133,0.0070158997550607]],[[0.031581703573465,-0.059919811785221,-0.079668112099171],[-0.17228785157204,-0.089900329709053,-0.064237467944622],[-0.0052595571614802,0.054251499474049,-0.030157888308167]],[[0.072672367095947,-0.026734188199043,-0.031664576381445],[0.034370414912701,0.0064915460534394,-0.019113624468446],[-0.23574331402779,-0.028492761775851,-0.14405474066734]],[[0.063968785107136,-0.12586735188961,-0.05048318952322],[-0.080187775194645,0.075682684779167,0.036408100277185],[-0.012856275774539,-0.0083174733445048,0.046489112079144]],[[-0.060429356992245,-0.018687672913074,0.086253449320793],[-0.024603987112641,-0.025675205513835,-0.12658394873142],[-0.055489353835583,-0.063637621700764,-0.024294756352901]],[[-0.043008334934711,0.070921346545219,-0.10887663066387],[0.00089000433217734,0.067209079861641,0.029234308749437],[-0.028523763641715,-0.00086543295765296,-0.090933740139008]],[[0.10804759711027,-0.018210146576166,0.002297077793628],[-0.091421969234943,-0.27130344510078,-0.20237600803375],[0.0050552566535771,-0.055652696639299,-0.051963109523058]],[[0.035979203879833,0.058743678033352,-0.046856988221407],[0.017978260293603,-0.1570085734129,-0.10628896206617],[0.097703777253628,0.17323161661625,0.17999997735023]],[[0.0080313943326473,0.12533344328403,-0.0070692985318601],[-0.074097253382206,-0.041220113635063,0.18320132791996],[0.097860120236874,0.093575567007065,0.11874600499868]],[[0.0087490044534206,-0.05509252473712,-0.25418928265572],[-0.011153467930853,0.037872739136219,-0.0634675770998],[0.026878302916884,0.035487864166498,0.011057124473155]],[[-0.0049842512235045,0.072755791246891,-0.017436489462852],[0.095426835119724,0.017148425802588,0.0035697887651622],[-0.17022924125195,-0.054963167756796,0.012397356331348]],[[0.095366962254047,0.023183418437839,0.0055072619579732],[-0.091531552374363,0.066255882382393,-0.033178687095642],[0.0071725333109498,0.04752679541707,-0.096357174217701]],[[-0.010548302903771,0.011220409534872,0.052332196384668],[0.026112100109458,0.10621613264084,0.0028226522263139],[0.03610010445118,0.15535144507885,-0.020132401958108]],[[-0.046105150133371,-0.0039104372262955,0.0058147730305791],[0.018579063937068,-0.11466721445322,0.024899035692215],[-0.04599579423666,-0.073165401816368,-0.11405900865793]],[[0.025856923311949,0.025029929354787,0.09321691095829],[-0.011730396188796,0.0023755698930472,0.12911435961723],[0.11628770083189,0.1082790941,-0.051218766719103]],[[0.045471448451281,0.014938553795218,-0.084639824926853],[0.015940075740218,0.0088470615446568,0.084186032414436],[0.04512570053339,0.35944589972496,0.12615931034088]],[[-0.14518016576767,0.16650523245335,0.26614761352539],[-0.19673682749271,0.056876301765442,-0.13653475046158],[-0.11271051317453,0.0014266533544287,0.05747339874506]],[[-0.21503898501396,0.077963784337044,0.12224321067333],[-0.036434929817915,-0.0025193865876645,-0.042345870286226],[-0.046802129596472,-0.12293667346239,0.11401018500328]],[[0.11132266372442,-0.026039652526379,-0.026502845808864],[-0.030034273862839,0.13779205083847,0.088028214871883],[-0.056186594069004,0.13611024618149,0.0073666493408382]]],[[[-0.080075889825821,0.29025274515152,0.022741878405213],[-0.10270209610462,0.22471687197685,0.071730434894562],[0.09352795779705,0.19267855584621,-0.061827231198549]],[[0.027190567925572,-0.1343874335289,-0.069246612489223],[-0.0018243385711685,-0.13307465612888,-0.059321906417608],[0.019558630883694,0.055386334657669,0.17028769850731]],[[-0.048697803169489,0.055141724646091,0.1011795476079],[0.045531678944826,0.11735560745001,0.023053435608745],[0.010931183584034,0.10618878901005,0.045269057154655]],[[0.033877518028021,-0.0072936746291816,-0.19590006768703],[-0.10145319253206,-0.057518888264894,-0.10298127681017],[-0.20274260640144,-0.031650599092245,0.064727500081062]],[[-0.025594107806683,0.19628991186619,0.05146712064743],[0.0059278691187501,0.06266862154007,0.0096773039549589],[0.0068307225592434,0.14467260241508,0.036103710532188]],[[-0.066096492111683,0.33766561746597,0.026101438328624],[-0.044280670583248,0.061612226068974,-0.0032321067992598],[-0.2254284620285,-0.025045808404684,0.060255866497755]],[[-0.02068212069571,-0.0067778588272631,0.073955588042736],[-0.052927374839783,0.0053887153044343,0.044068314135075],[0.077253364026546,-0.036383919417858,-0.038102384656668]],[[0.17741084098816,0.062940239906311,-0.012417225167155],[0.080002650618553,0.21373587846756,-0.055459767580032],[-0.055826205760241,0.17048926651478,-0.0032363364007324]],[[-0.117496997118,-0.046658847481012,-0.13474099338055],[0.12206051498652,-0.074917532503605,0.035404443740845],[-0.10098863393068,-0.14207643270493,0.04890413954854]],[[-0.022628774866462,-0.29436522722244,-0.13353607058525],[-0.21960856020451,-0.27905145287514,-0.066765367984772],[-0.094446927309036,0.15336039662361,0.042092636227608]],[[-0.045161675661802,-0.0049254144541919,0.15352839231491],[0.060841884464025,0.01196245290339,0.1166020706296],[-0.012001038528979,-0.064437359571457,0.097388476133347]],[[-0.074366584420204,-0.13708543777466,-0.010351326316595],[-0.095850251615047,-0.0067267883569002,0.2337758988142],[0.08189082890749,0.018872374668717,-0.23260675370693]],[[-0.089305311441422,0.083108328282833,-0.078505836427212],[-0.041059296578169,-0.1294966340065,-0.011297984048724],[-0.035173092037439,-0.041095901280642,-0.084910899400711]],[[0.030907830223441,0.035539627075195,0.0056961635127664],[-0.0098091447725892,-0.063933551311493,0.0020305090583861],[-0.0094666117802262,-0.093606822192669,-0.053190313279629]],[[-0.049237221479416,-0.011785909533501,-0.039269249886274],[-0.10754179209471,0.11498761177063,-0.04397289082408],[-0.047276396304369,-0.014364201575518,-0.0083354506641626]],[[0.071279227733612,0.21536704897881,0.056972064077854],[-0.12841223180294,-0.051722068339586,0.0067082978785038],[-0.14029622077942,0.033800255507231,0.10227663815022]],[[0.039059955626726,0.095032572746277,0.092399932444096],[-0.00013335794210434,0.062674082815647,0.0062508475966752],[0.042704250663519,-0.029062477871776,-0.033195108175278]],[[0.035299152135849,0.085277311503887,0.0022957536857575],[-0.025437174364924,0.014875925146043,-0.035946775227785],[0.06784325838089,0.1339520663023,-0.23812362551689]],[[0.030526492744684,-0.068012125790119,0.046223387122154],[-0.086022652685642,-0.058240693062544,0.014734049327672],[-0.11119867861271,0.029885821044445,0.14436255395412]],[[-0.057069268077612,-0.13992962241173,-0.13159531354904],[-0.047189619392157,-0.006428062915802,-0.044993199408054],[0.016266265884042,-0.045190967619419,0.042040552943945]],[[0.13746631145477,-0.14471055567265,-0.078366100788116],[0.14272524416447,-0.19599094986916,-0.17660430073738],[-0.051906872540712,-0.12994848191738,-0.19194310903549]],[[-0.089541763067245,0.050848595798016,0.095640137791634],[-0.0044079450890422,-0.025530062615871,0.12282927334309],[0.10609701275826,-0.083600655198097,0.050323057919741]],[[-0.029798330739141,-0.041922718286514,0.15514995157719],[-0.0570347905159,-0.096604116261005,-0.08720026165247],[-0.10742408037186,-0.027315719053149,0.065085791051388]],[[0.0042675160802901,-0.20309539139271,-0.036643005907536],[-0.023529343307018,0.10558608919382,-0.029896888881922],[-0.26522645354271,-0.048548851162195,0.0027487471234053]],[[0.11154024302959,0.075595028698444,-0.088523298501968],[-0.093771710991859,0.056727610528469,-0.044484328478575],[-0.21612493693829,0.087695971131325,0.014739439822733]],[[-0.040948089212179,-0.10388823598623,0.12356682121754],[0.059384703636169,-0.013815900310874,0.090260364115238],[0.040770899504423,0.078918255865574,-0.057287469506264]],[[0.16851261258125,0.082266770303249,-0.0045376918278635],[0.25980278849602,0.031961761415005,0.032295476645231],[0.26982605457306,-0.10125031322241,0.18161608278751]],[[0.010897596366704,0.027795009315014,-0.042456097900867],[0.11799108237028,-0.029376808553934,-0.080987311899662],[0.11910425871611,0.066273704171181,0.22884605824947]],[[-0.10879208892584,-0.17846918106079,0.078107446432114],[-0.12318666279316,-0.12291548401117,0.0036787858698517],[-0.10285065323114,-0.12989860773087,-0.025193441659212]],[[2.4329645384569e-05,0.030626622959971,-0.21164444088936],[-0.09590756893158,0.058160703629255,-0.15138767659664],[0.036016188561916,0.12565071880817,-0.089613370597363]],[[-0.056741740554571,-0.080775670707226,-0.051870580762625],[0.084566883742809,-0.0073265498504043,-0.050790056586266],[-0.026831543073058,0.12468415498734,0.21540933847427]],[[-0.17318741977215,0.025845045223832,0.1764607578516],[-0.042929641902447,0.13671219348907,-0.28316241502762],[0.027259957045317,0.18410047888756,-0.085738338530064]],[[0.16663692891598,-0.051375009119511,0.056568779051304],[-0.011586149223149,-0.033647440373898,-0.0014157101977617],[0.080325469374657,-0.044643599539995,0.051205221563578]],[[-0.037497695535421,-0.28560587763786,-0.014059413224459],[-0.22729690372944,-0.11431492865086,0.044490654021502],[0.1427875906229,-0.022331094369292,0.11247286945581]],[[-0.070504270493984,-0.12544274330139,0.030499488115311],[0.010672282427549,-0.13921147584915,-0.025563150644302],[0.055868841707706,0.0030490893404931,-0.072846107184887]],[[0.18315993249416,-0.056143917143345,-0.14968645572662],[0.34616053104401,-0.12325460463762,-0.041868139058352],[0.29950654506683,0.025738203898072,-0.15736164152622]],[[-0.092141442000866,0.015453698113561,-0.073886565864086],[-0.11411136388779,-0.15049509704113,-0.00031642513931729],[0.018409334123135,-0.10771112889051,0.095656432211399]],[[0.059014543890953,0.0080430712550879,0.13492178916931],[0.011838845908642,0.0049732243642211,0.13546551764011],[-0.11181293427944,-0.11126309633255,0.053446684032679]],[[-0.0023680403828621,0.10884117335081,-0.12555368244648],[-0.13816624879837,-0.0085913464426994,-0.048448868095875],[-0.12402595579624,-0.021319517865777,-0.0027945274487138]],[[-0.17774739861488,0.18086671829224,-0.0028211385942996],[-0.058095425367355,0.098414659500122,-0.15329149365425],[-0.14458632469177,0.076051443815231,-0.18568867444992]],[[0.025301918387413,0.081138104200363,0.0080045135691762],[0.005615456495434,-0.0052202441729605,-0.077424764633179],[-0.017606809735298,-0.031765386462212,0.046566490083933]],[[-0.06119791418314,0.022192250937223,0.17837998270988],[0.0026092354673892,-0.024092305451632,0.057749655097723],[-0.069405794143677,0.03807170689106,0.19295416772366]],[[0.093355230987072,-0.042633883655071,-0.13968361914158],[0.28254717588425,-0.019911635667086,-0.16540046036243],[0.20678633451462,0.028740787878633,-0.12473273277283]],[[0.015552747994661,0.010997370816767,0.066997192800045],[-0.0069459285587072,-0.090013533830643,-0.047455195337534],[0.0309415217489,0.046556182205677,0.040163852274418]],[[0.18885324895382,0.058777887374163,0.014879651367664],[0.091143935918808,-0.073204398155212,0.16932402551174],[-0.013935841619968,-0.21021427214146,0.15320634841919]],[[-0.15564660727978,-0.037173796445131,0.11176408082247],[-0.25936394929886,-0.016014227643609,0.056611578911543],[-0.2115563005209,0.071383960545063,0.15755996108055]],[[0.027445588260889,-0.11828519403934,-0.062130335718393],[0.094226695597172,-0.048955608159304,-0.13356558978558],[0.066047862172127,-0.049218729138374,0.057253774255514]],[[-0.08004666864872,-0.064576111733913,0.024618109688163],[0.0011081866687164,0.041121512651443,-0.029131745919585],[-0.0083744917064905,-0.036410111933947,-0.013573073782027]],[[0.21453833580017,-0.091501459479332,-0.05331552401185],[-0.050400268286467,0.13637387752533,-0.066887073218822],[0.031967036426067,0.24066011607647,-0.017258506268263]],[[0.12343066930771,-0.057458929717541,-0.18377222120762],[-0.059080597013235,-0.048637125641108,-0.13895021378994],[0.046138420701027,-0.14297223091125,-0.085821606218815]],[[-0.073840588331223,-0.11085817217827,0.0047466703690588],[-0.13234114646912,-0.014367482624948,0.030965710058808],[-0.15051743388176,-0.033281773328781,0.018091235309839]],[[0.03047669492662,0.12898474931717,-0.063395090401173],[-0.0031540179625154,0.10896143317223,-0.01684389077127],[0.086436457931995,-0.064863547682762,0.077183239161968]],[[0.042058821767569,-0.098905168473721,-0.0071078082546592],[0.034029200673103,-0.028679953888059,-0.053291570395231],[0.012922239489853,-0.045484904199839,0.013974599540234]],[[-0.072654239833355,-0.14437378942966,0.016570966690779],[-0.072574347257614,-0.15367347002029,0.045453287661076],[-0.051507167518139,-0.15720178186893,0.018324801698327]],[[0.011976288631558,0.083969704806805,0.052384797483683],[-0.15243080258369,-0.096714168787003,-0.012579003348947],[-0.12420432269573,-0.067642644047737,0.093778818845749]],[[0.0025910334661603,-0.043540310114622,0.036115750670433],[-0.088541969656944,-0.10737284272909,-0.01066745352],[0.081665866076946,-0.15973940491676,-0.10295405238867]],[[0.015746876597404,0.11812433600426,0.060066774487495],[0.10997488349676,-0.083824574947357,0.078412070870399],[0.049088411033154,-0.16296924650669,0.24100282788277]],[[0.028097383677959,0.041174538433552,-0.067080840468407],[-0.15268766880035,-0.050986655056477,-0.079151190817356],[-0.042055040597916,-0.01787524484098,-0.036281183362007]],[[0.1226628869772,0.1102554872632,0.04792157933116],[-0.023420700803399,0.00635238410905,-0.08023677021265],[-0.18114744126797,-0.2196711152792,0.012908398173749]],[[0.033121090382338,-0.1825135499239,0.052428960800171],[0.10184267163277,-0.091775149106979,0.063348650932312],[-0.04933712258935,-0.09960000962019,0.070109739899635]],[[-0.016696438193321,-0.0081821177154779,0.069360092282295],[-0.074398428201675,-0.076975025236607,-0.059721723198891],[-0.052356254309416,-0.041424907743931,0.010752287693322]],[[0.24358625710011,0.13024140894413,-0.14736354351044],[-0.081602953374386,-0.14953243732452,-0.044187642633915],[0.0073470808565617,-0.11846419423819,-0.019140975549817]],[[0.018664363771677,-0.095604427158833,-0.009496814571321],[-0.016969230026007,0.0020199923310429,0.014888173900545],[-0.041408333927393,-0.074401065707207,0.013149720616639]],[[0.033958781510592,0.12866400182247,0.0073406710289419],[-0.08210776746273,0.090532645583153,-0.08401770144701],[-0.075840622186661,0.062773503363132,-0.075737439095974]],[[-0.092616729438305,-0.056861292570829,0.28778487443924],[-0.067868940532207,-0.15289422869682,0.099887758493423],[0.032368175685406,-0.27547225356102,0.076004803180695]],[[0.1316714733839,-0.027024198323488,0.11250931769609],[0.054668966680765,-0.035120442509651,0.070649057626724],[0.011184605769813,0.018356842920184,0.035198520869017]],[[-0.12851029634476,-0.056962594389915,-0.046324737370014],[0.044541455805302,0.0046563036739826,0.005654432810843],[-0.019402977079153,-0.055496033281088,-0.15008407831192]],[[-0.011395400390029,-0.10022933036089,-0.11486153304577],[0.077910989522934,-0.090024322271347,-0.096930183470249],[0.061789873987436,-0.098019063472748,0.0052297688089311]],[[0.085444733500481,1.4883213225403e-05,0.068139292299747],[0.016629058867693,0.013445780612528,-0.028575362637639],[0.1243913397193,0.061350155621767,0.022122038528323]],[[-0.025648334994912,0.17981201410294,-0.069889210164547],[-0.052796520292759,0.11144476383924,-0.046669870615005],[-0.1600494235754,0.15913835167885,-0.015773814171553]],[[-0.0069329040125012,-0.015471069142222,-0.065242849290371],[-0.037691526114941,-0.038997754454613,-0.086527168750763],[0.0087433652952313,-0.024153731763363,0.0035832631401718]],[[0.1268574744463,0.13911113142967,0.065421581268311],[0.034673687070608,-0.015269883908331,-0.016638988628983],[-0.094567477703094,0.061596397310495,-0.033178135752678]],[[-0.0042902971617877,0.039729181677103,-0.10571806132793],[0.053303346037865,0.13822005689144,-0.27930289506912],[0.19675478339195,0.0083549590781331,-0.28420588374138]],[[-0.092090539634228,0.12358130514622,0.092808067798615],[-0.029043918475509,0.029748344793916,0.052917499095201],[0.14071881771088,0.026916470378637,0.068643964827061]],[[-0.059421822428703,-0.00049794057849795,-0.04762364551425],[-0.1636518239975,0.020537961274385,0.088258340954781],[-0.098322257399559,-0.066132351756096,-0.10216931253672]],[[0.10502564907074,-0.017933137714863,-0.12242485582829],[0.031026635318995,-0.048345517367125,-0.114074036479],[0.06024757027626,-0.046464581042528,-0.10885363817215]],[[-0.058153185993433,-0.019890375435352,0.09983641654253],[-0.18340346217155,0.0086165303364396,0.18108263611794],[-0.082080170512199,-0.22421588003635,0.030476577579975]],[[-0.17440928518772,-0.095404863357544,-0.030305694788694],[-0.1333887130022,-0.15972140431404,0.018997959792614],[0.019011272117496,-0.077944293618202,-0.041253842413425]],[[0.097857855260372,0.073899768292904,-0.07422898709774],[0.18169243633747,-0.025105470791459,-0.042910542339087],[-0.0095968553796411,-0.12688639760017,-0.093258708715439]],[[-0.054730877280235,-0.10268171131611,0.20211601257324],[-0.027143556624651,-0.11101792752743,0.067678950726986],[-0.01407369505614,-0.062871962785721,-0.088150098919868]],[[-0.070185467600822,0.074253715574741,0.18352253735065],[-0.07854875177145,0.09660941362381,-0.12967039644718],[-0.17007465660572,-0.02770341001451,-0.087497405707836]],[[-0.12231185287237,-0.070264607667923,0.081723771989346],[0.10127235949039,-0.025034235790372,0.15060251951218],[0.18314178287983,-0.13324575126171,0.066694796085358]],[[0.16762465238571,0.018934706225991,-0.058639496564865],[0.17724998295307,0.015226585790515,0.1284307539463],[0.023018842563033,-0.034999590367079,0.017301313579082]],[[-0.1739696264267,-0.17845164239407,0.034293204545975],[-0.19606129825115,-0.15974180400372,-0.13548485934734],[-0.21914052963257,-0.13181023299694,-0.18637472391129]],[[-0.18877460062504,0.025482624769211,0.020151926204562],[-0.044714346528053,0.10728681087494,0.18716366589069],[-0.072351701557636,0.25661286711693,0.18142893910408]],[[0.0027535955887288,-0.063495963811874,0.16581942141056],[-0.10451838374138,-0.16814886033535,0.14683285355568],[-0.098031237721443,-0.16127432882786,0.0092187020927668]],[[0.030168982222676,-0.048869535326958,-0.16768826544285],[-0.0091245882213116,0.041853617876768,-0.014772708527744],[0.0098806619644165,-0.044450476765633,-0.034765802323818]],[[-0.0016281795687973,-0.064282990992069,0.12162230163813],[-0.01779106631875,-0.045488815754652,0.21661251783371],[0.071362093091011,0.013700092211366,0.015702506527305]],[[-0.042785096913576,0.13667081296444,-0.023813635110855],[-0.15566238760948,-0.078109569847584,0.12845951318741],[-0.18292804062366,-0.023160358890891,0.22328823804855]],[[0.099310450255871,0.068555325269699,-0.090717628598213],[0.20681349933147,0.029764194041491,-0.043710134923458],[-0.067734681069851,-0.015297343954444,-0.071644015610218]],[[0.070402666926384,0.069995872676373,-0.0097283320501447],[0.068379633128643,0.089277096092701,0.016592985019088],[-0.050608325749636,0.11941822618246,0.11211843788624]],[[-0.082688815891743,-0.077897623181343,0.10553926974535],[-0.088764935731888,-0.064529202878475,0.085593953728676],[0.043408941477537,-0.030694175511599,0.01486038044095]],[[0.057132665067911,-0.0019130076980218,0.058613497763872],[0.061648480594158,-0.0033154680859298,-0.04595635831356],[-0.035826288163662,0.0055706496350467,-0.0061410777270794]],[[0.092721715569496,0.3103800714016,-0.0088350456207991],[-0.18116682767868,0.069369539618492,-0.11374947428703],[-0.0011145230382681,0.034716378897429,-0.050282061100006]],[[0.034767054021358,0.096966817975044,0.044056832790375],[0.14063486456871,0.0026283748447895,-0.070919811725616],[0.13083396852016,0.02418608404696,-0.09681860357523]],[[-0.090840809047222,0.11790257692337,0.012494491413236],[0.024160671979189,-0.041867386549711,-0.072828620672226],[0.055073462426662,-0.086807258427143,0.037964396178722]],[[0.18297481536865,-0.002393112750724,-0.05278567969799],[-0.13159769773483,-0.081733226776123,-0.02659440971911],[-0.018711743876338,-0.095629803836346,-0.044430293142796]],[[0.066305428743362,-0.11614847928286,-0.018745586276054],[-0.020239450037479,-0.063116662204266,0.021147474646568],[-0.048382636159658,-0.11827258765697,-0.018261486664414]],[[0.15350237488747,-0.018485084176064,0.050168581306934],[-0.14505858719349,0.034701313823462,-0.0058643673546612],[-0.30835747718811,-0.019127121195197,-0.15787333250046]],[[0.041373033076525,0.10247359424829,-0.056886099278927],[-0.13667464256287,0.23434123396873,-0.029627811163664],[0.060155514627695,0.22913101315498,0.026423087343574]],[[-0.27417802810669,-0.039789196103811,0.015647312626243],[-0.15299934148788,0.074439309537411,-0.049087353050709],[-0.13904702663422,0.08944796025753,-0.18301597237587]],[[-0.08439851552248,0.039373107254505,0.051888912916183],[-0.063026137650013,0.072904415428638,-0.037317235022783],[-0.0098797157406807,0.064559176564217,0.01285046339035]],[[-0.015510308556259,0.0059334454126656,-0.0059229168109596],[-0.0067853503860533,-0.035163756459951,0.046726316213608],[0.0086973020806909,-0.11002690345049,-0.040215436369181]],[[-0.095953181385994,-0.1714251190424,-0.012071595527232],[-0.039458338171244,0.079965390264988,-0.02992195263505],[-0.11773443222046,-0.076128356158733,-0.15443164110184]],[[-0.03610123321414,-0.21289229393005,-0.16735574603081],[-0.13564458489418,-0.031243862584233,0.040830131620169],[0.018292021006346,0.10799665004015,-0.20160350203514]],[[0.043512679636478,-0.21294444799423,0.069197840988636],[0.047331608831882,-0.023039288818836,-0.06247241050005],[0.056199640035629,-0.18347936868668,-0.042609743773937]],[[0.14385588467121,-0.045205995440483,-0.10537841916084],[0.068702161312103,0.06591808795929,-0.17366786301136],[0.079558856785297,0.081586211919785,-0.044032126665115]],[[0.091014690697193,-0.056498166173697,0.0020060704555362],[0.039945874363184,-0.12533847987652,0.058079846203327],[-0.012857050634921,-0.11229377239943,0.17981892824173]],[[-0.0032837789040059,0.10444384068251,-0.052871707826853],[-0.072356142103672,-0.016697378829122,0.096145085990429],[0.064327374100685,-0.059725049883127,0.26125499606133]],[[-0.15421992540359,0.041019625961781,0.011153290048242],[0.045216720551252,-0.0047325328923762,0.054713107645512],[0.01365914940834,0.086068205535412,0.15416122972965]],[[-0.034950453788042,-0.0012577122543007,-0.0037418161518872],[0.036770366132259,-0.024843348190188,0.10425866395235],[0.017467649653554,0.047901526093483,0.14526887238026]],[[-0.11185470223427,-0.21099789440632,-0.15837997198105],[-0.091558665037155,-0.11640224605799,-0.13917452096939],[-0.067906387150288,-0.12445355951786,0.06637417525053]],[[-0.10719930380583,0.14367781579494,-0.13547959923744],[-0.041008703410625,0.1256347745657,-0.036600925028324],[0.072446532547474,0.031940244138241,0.068116962909698]],[[0.086639977991581,0.0032596215605736,0.073687180876732],[-0.020752023905516,0.011312669143081,0.011963840574026],[0.22046788036823,-0.058923240751028,-0.013205455616117]],[[0.2124103307724,0.02472697943449,-0.05666396394372],[0.094334773719311,0.04162860289216,0.015709353610873],[0.053860139101744,0.11904130131006,0.067954927682877]],[[0.078101322054863,-0.080032005906105,-0.041486766189337],[0.13713894784451,-0.04473140090704,-0.015125022269785],[-0.0050399065949023,-0.20357456803322,-0.096985407173634]],[[0.092982910573483,-0.10160890221596,-0.027284754440188],[0.047242619097233,0.0017444690456614,-0.036669164896011],[-0.14764210581779,0.063562259078026,0.13558313250542]],[[0.011127753183246,0.1525237262249,-0.077611587941647],[-0.002208647551015,0.027402278035879,-0.017175942659378],[-0.079696916043758,0.057989548891783,-0.02796964533627]],[[0.072755880653858,0.024618204683065,-0.057198405265808],[0.1089921221137,-0.0085857110098004,0.07431098818779],[-0.2350977063179,0.021368820220232,0.21202848851681]],[[-0.074207149446011,-0.10548131167889,-0.015384939499199],[0.021436344832182,-0.10043707489967,-0.019179979339242],[0.11678285896778,-0.033148106187582,-0.039091058075428]],[[-0.21487900614738,-0.18222481012344,0.2140027731657],[-0.11139337718487,0.090705752372742,0.051340505480766],[0.080302231013775,-0.11457604169846,-0.17940114438534]],[[0.056613001972437,-0.042038407176733,0.1122330725193],[0.0098259272053838,-0.067808076739311,0.037182506173849],[-0.064939849078655,-0.14120902121067,0.17259341478348]],[[-0.030582170933485,-0.15860828757286,0.09492165595293],[-0.075737275183201,-0.15147393941879,0.12287504971027],[-0.13693663477898,-0.09011273086071,-0.05348788574338]],[[-0.16114726662636,0.21261718869209,0.05015592649579],[-0.18762122094631,0.14786222577095,-0.14939422905445],[0.1086640805006,0.087873250246048,-0.081177897751331]],[[-0.081999823451042,0.040369752794504,0.046925447881222],[0.030663073062897,0.076806850731373,-0.0079920161515474],[0.045145213603973,0.0086276950314641,-0.098800823092461]],[[0.023662358522415,-0.09539308398962,0.22926224768162],[0.056560058146715,-0.074363194406033,0.19891165196896],[-0.04276555404067,0.038384158164263,-0.040389470756054]],[[0.053163439035416,0.1413502395153,0.052772428840399],[-0.059547442942858,0.1059820279479,-0.039440114051104],[0.049948640167713,0.10438483208418,0.021341918036342]],[[-0.059561934322119,-0.099915839731693,-0.12579303979874],[-0.12023365497589,0.11489897221327,-0.00075195136014372],[-0.10920348018408,0.16802440583706,0.017943559214473]]],[[[-0.072746358811855,0.06749103218317,-0.050776921212673],[0.0075033125467598,-0.062648586928844,-0.056967683136463],[-0.11175338923931,-0.10810386389494,-0.020602302625775]],[[-0.038036443293095,-0.0087713217362761,-0.04049913585186],[0.077925764024258,-0.10293516516685,-0.2649707198143],[-0.048888701945543,-0.031766973435879,-0.037212107330561]],[[0.099019087851048,0.0094610042870045,-0.038475718349218],[0.23713402450085,0.13915808498859,0.056956674903631],[-0.034907724708319,-0.058060109615326,0.0042855436913669]],[[-0.18321481347084,-0.041175298392773,-0.089394859969616],[-0.10289476811886,-0.12355309724808,0.030246917158365],[0.012973728589714,-0.074466742575169,-0.12243463844061]],[[0.013313299976289,0.04260416701436,0.070686236023903],[0.060218267142773,-0.060242764651775,0.076843529939651],[-0.037765130400658,-0.059060379862785,-0.026809586212039]],[[0.028771823272109,0.028511755168438,-0.078548811376095],[0.083604902029037,-0.18455566465855,-0.047376085072756],[-0.099987290799618,0.092263020575047,-0.0044494993053377]],[[0.089558750391006,-0.031339477747679,-0.049158502370119],[-0.027781473472714,0.07167087495327,-0.14422523975372],[0.091348297894001,0.07761537283659,-0.12454294413328]],[[-0.036906864494085,-0.025305528193712,0.092524275183678],[-0.012523857876658,0.12374287843704,0.13163614273071],[-0.18745569884777,-0.036223005503416,0.092225082218647]],[[0.15229354798794,-0.1374985575676,-0.014741213992238],[0.030546136200428,0.10020656138659,0.25476062297821],[-0.11957136541605,0.070598512887955,-0.0065836384892464]],[[0.079799883067608,-0.27696913480759,-0.13115940988064],[0.067484900355339,-0.18665416538715,-0.0052487030625343],[0.10374791920185,0.12130386382341,-0.0050297565758228]],[[-0.21492865681648,-0.11013212800026,0.36960065364838],[0.096552766859531,0.2107717692852,0.11932294815779],[0.083367384970188,0.045722555369139,-0.00013672542991117]],[[0.10938266664743,0.2472892999649,0.32899019122124],[-0.23554793000221,-0.030130939558148,-0.13466310501099],[0.074704445898533,-0.02764574624598,0.034714799374342]],[[0.002010410418734,-0.10629128664732,0.0031017616856843],[-0.050624035298824,0.024057963863015,0.041836496442556],[0.034168735146523,0.026952056214213,0.23823463916779]],[[0.035307738929987,-0.075787127017975,-0.03555303812027],[0.054887276142836,-0.079771712422371,-0.21725164353848],[-0.11510720849037,-0.22775827348232,-0.13029134273529]],[[-0.071036376059055,-0.0046624317765236,-0.005023293197155],[-0.27728587388992,0.063375063240528,0.082411408424377],[0.033546186983585,0.017335217446089,0.11211577057838]],[[-0.089660204946995,-0.019692063331604,-0.11424147337675],[0.12422227114439,-0.080917753279209,-0.1557103395462],[0.18057182431221,-0.07395776361227,-0.090809799730778]],[[0.018987409770489,0.26799339056015,0.24891048669815],[0.015900984406471,0.026205278933048,-0.06021848320961],[-0.08553821593523,-0.047157406806946,0.12916049361229]],[[0.013938933610916,0.11157517135143,0.066108703613281],[-0.066043972969055,-0.21692787110806,-0.28699830174446],[0.0046024168841541,0.02368557266891,-0.086120948195457]],[[0.36608508229256,0.31124186515808,0.16061392426491],[-0.10020033270121,-0.016021635383368,0.099641196429729],[-0.1937341094017,-0.13980042934418,-0.11598535627127]],[[0.009290168993175,0.02589332871139,0.21033972501755],[-0.27736946940422,-0.012748817913234,0.16800376772881],[0.00010683510481613,-0.05536151304841,-0.14003479480743]],[[-0.1540207862854,0.050368137657642,0.037670001387596],[-0.051487602293491,0.051596984267235,0.028893494978547],[-0.23291045427322,-0.0059114443138242,-0.1129452586174]],[[-0.10950987040997,-0.089085884392262,0.027404384687543],[0.096449881792068,0.1043092533946,0.060711517930031],[0.11674154549837,-0.16711051762104,0.0075580724515021]],[[0.12146124243736,-0.24142901599407,-0.1261323094368],[0.064419485628605,0.047803945839405,0.047366056591272],[0.14828749001026,-0.12185341119766,-0.18947169184685]],[[-0.0049462169408798,0.048810247331858,-0.052319351583719],[0.15997947752476,-0.07106651365757,-0.05312092974782],[0.16213072836399,-0.10396382957697,-0.07507511228323]],[[-0.07163230329752,0.067024476826191,0.17897625267506],[-0.02672865614295,-0.059895548969507,0.07363136857748],[0.1862056106329,-0.021633790805936,0.10259579867125]],[[-0.045980915427208,0.0062871808186173,-0.048635959625244],[-0.035275459289551,0.1064912751317,0.1577272862196],[-0.026925245299935,-0.10330920666456,-0.0324433632195]],[[-0.013929426670074,0.0012562613701448,0.083001717925072],[0.18437775969505,0.10689243674278,0.14620845019817],[-0.15044848620892,-0.13920465111732,0.13627408444881]],[[-0.20467400550842,-0.17209321260452,-0.29488226771355],[0.12508329749107,0.10230323672295,-0.082466520369053],[0.0453916862607,0.036376900970936,-0.02673752233386]],[[-0.02893259562552,-0.14976589381695,0.060368523001671],[0.03477143868804,-0.11326928436756,-0.15258111059666],[0.16189375519753,-0.14043256640434,0.21930703520775]],[[0.05218905210495,0.025590581819415,0.25362050533295],[0.047548577189445,0.036047663539648,-0.069692470133305],[0.015949008986354,0.042359653860331,0.0026469810400158]],[[0.087139151990414,-0.038898810744286,0.051196102052927],[-0.16740781068802,-0.055423472076654,0.087279841303825],[0.03841419890523,-0.063013672828674,0.012521331198514]],[[0.11525796353817,0.12293394654989,-0.026511110365391],[0.11428681015968,0.010579749010503,-0.3759109377861],[-0.17651697993279,-0.23245041072369,-0.11708385497332]],[[-0.013920347206295,0.25471284985542,0.061043910682201],[-0.060645684599876,0.23526783287525,-0.04566765204072],[-0.028607500717044,-0.07708752900362,-0.0036988097708672]],[[-0.0043425336480141,-0.10263527184725,0.18688894808292],[0.058414045721292,-0.092666201293468,0.23144991695881],[0.043176606297493,-0.01194915920496,-0.10167624801397]],[[-0.026103409007192,-0.17171773314476,-0.1790129840374],[-0.093622855842113,-0.067175649106503,-0.14566573500633],[-0.055315107107162,0.030034555122256,0.10624188184738]],[[0.035648431628942,0.056650694459677,-0.1786473095417],[-0.10192219913006,0.056068029254675,0.1009668558836],[-0.20365718007088,-0.040766831487417,-0.0072800545021892]],[[-0.37470299005508,-0.16368234157562,-0.17106872797012],[-0.028074955567718,0.16127812862396,0.18786120414734],[0.14501246809959,0.068003259599209,0.0047466875985265]],[[0.095151051878929,0.022534988820553,0.096040539443493],[-0.077826321125031,-0.2138630002737,0.044221740216017],[0.14428624510765,0.14979311823845,0.2700882256031]],[[-0.013193724676967,-0.093573145568371,-0.20422378182411],[0.027705203741789,-0.081121928989887,-0.19418661296368],[-0.15842366218567,-0.032651156187057,0.091019473969936]],[[-0.079109460115433,-0.084484852850437,-0.015665458515286],[-0.14313915371895,0.11989393830299,-0.016878569498658],[-0.089681304991245,0.0041937530040741,-0.19826744496822]],[[0.073857344686985,-0.1656029522419,-0.12777821719646],[0.24106881022453,-0.030843639746308,-0.046685144305229],[0.056065324693918,-0.17335711419582,0.012350311502814]],[[0.07250153273344,0.037402432411909,0.046351030468941],[-0.05474541336298,0.057937737554312,0.096934743225574],[-0.14458075165749,-0.086475320160389,-0.06687094271183]],[[-0.006231069099158,0.021171296015382,-0.00642095413059],[0.11337712407112,0.11765114217997,-0.076229020953178],[0.021418889984488,-0.12432138621807,-0.2254119515419]],[[-0.0076674045994878,-0.068614676594734,0.11110288649797],[0.034477967768908,-0.022073647007346,0.075539246201515],[-0.083776198327541,-0.055403895676136,0.16890548169613]],[[-0.065073437988758,0.13165624439716,0.092184290289879],[-0.12067060172558,0.058233808726072,0.062841095030308],[-0.021528137847781,0.076858170330524,-0.044184133410454]],[[-0.18484285473824,0.045984867960215,0.15051466226578],[-0.15236835181713,-0.081249237060547,-0.13160388171673],[-0.10042069107294,0.026759840548038,0.0096505144611001]],[[-0.031899850815535,-0.17342166602612,-0.18358559906483],[-0.083746500313282,0.0055958307348192,-0.13900750875473],[-0.062625259160995,-0.024419274181128,-0.22323375940323]],[[-0.021248187869787,0.0019294874509797,0.033448219299316],[0.31882607936859,0.21288220584393,-0.16231913864613],[-0.0337023884058,0.11205296218395,0.017267338931561]],[[-0.1439033895731,-0.053312014788389,-0.30832722783089],[-0.10088856518269,0.013656792230904,-0.080357678234577],[0.011864410713315,-0.024078665301204,0.16791440546513]],[[-0.077842429280281,-0.051219861954451,-0.087605707347393],[-0.076941162347794,-0.13188552856445,-0.092838689684868],[0.022136688232422,0.12849414348602,-0.067104063928127]],[[0.0010727718472481,0.11981810629368,-0.049589209258556],[-0.10542527586222,-0.29170539975166,-0.068361140787601],[0.14124675095081,-0.25680348277092,0.028945883736014]],[[0.046171758323908,0.032507162541151,0.14057710766792],[0.032199501991272,-0.033783540129662,0.11208144575357],[0.1098779514432,0.15791146457195,0.16423237323761]],[[0.056302357465029,0.006378635764122,-0.084134079515934],[-0.04220263287425,0.060013443231583,0.0039627742953598],[-0.048549119383097,-0.021705657243729,-0.044579669833183]],[[0.073249593377113,0.25655317306519,0.085058093070984],[-0.14493602514267,-0.045354068279266,0.012928417883813],[0.08448787778616,0.069364853203297,-0.044460617005825]],[[-0.012858999893069,-0.25893822312355,-0.13803307712078],[0.059286821633577,0.022996613755822,-0.097675055265427],[0.052518419921398,0.043846603482962,-0.15182688832283]],[[0.0049610477872193,-0.022134449332952,0.0066167018376291],[0.017439486458898,-0.04632305726409,-0.043676670640707],[0.21247272193432,0.068752154707909,-0.03073650971055]],[[-0.077583350241184,-0.10107342898846,0.038013692945242],[-0.12533095479012,-0.0091825099661946,0.19260181486607],[0.05926938354969,0.00112996972166,0.047511901706457]],[[-0.19071020185947,-0.077223524451256,-0.043920889496803],[0.022822100669146,-0.084136120975018,-0.2358583509922],[-0.16617925465107,0.071013167500496,0.11856193095446]],[[-0.12571254372597,-0.12278331816196,-0.08681932091713],[-0.11289592087269,-0.0042806374840438,-0.21041624248028],[0.0072614103555679,0.038646139204502,-0.22107762098312]],[[0.013535795733333,0.015931807458401,0.11498661339283],[0.013920043595135,-0.10785022377968,-0.11447089165449],[0.039179190993309,-0.13873964548111,0.040262751281261]],[[0.022774888202548,0.092617549002171,-0.1911786198616],[-0.054626021534204,-0.054310046136379,-0.060124550014734],[-0.039010111242533,-0.003228667890653,-0.23482823371887]],[[0.012529070489109,-0.082630567252636,-0.24891419708729],[-0.041424911469221,0.044984135776758,-0.063033282756805],[-0.073298610746861,0.065759435296059,-0.25959643721581]],[[0.0089480988681316,-0.049863930791616,0.053922783583403],[0.068618379533291,0.12589728832245,-0.028626589104533],[-0.096765257418156,-0.056407544761896,0.061097584664822]],[[0.20821723341942,-0.072744578123093,-0.042379081249237],[0.049368601292372,0.26012796163559,0.1627666503191],[0.15039922297001,0.14691223204136,0.032468613237143]],[[-0.041874036192894,0.11568915843964,-0.067931659519672],[-0.14267084002495,0.055588286370039,0.15596967935562],[0.0035079382359982,-0.013611906208098,0.04997231811285]],[[0.029833169654012,-0.054545346647501,0.0093070054426789],[0.0059674433432519,0.012888722121716,0.072525732219219],[-0.068520374596119,-0.044515334069729,0.0026287329383194]],[[0.026923511177301,0.031472112983465,-0.024883553385735],[0.15966041386127,-0.065317556262016,-0.22801524400711],[0.083863489329815,-0.17119862139225,-0.031581245362759]],[[-0.12824203073978,0.0017377171898261,0.15314213931561],[-0.10710828006268,-0.068409956991673,-0.089660987257957],[-0.019995806738734,-0.17735546827316,-0.055446114391088]],[[0.015391654334962,-0.12388739734888,-0.10953395068645],[-0.074861779808998,-0.18407434225082,-0.031897339969873],[0.0025666407309473,-0.11589064449072,-0.0057685109786689]],[[-0.071400016546249,0.13409478962421,0.25635072588921],[0.21457305550575,0.10796763747931,0.054835066199303],[-0.045753300189972,-0.21843123435974,-0.31967660784721]],[[-0.026504617184401,0.043483480811119,-0.074573956429958],[0.041042000055313,-0.010353449732065,-0.2898274064064],[-0.028628490865231,0.076005443930626,0.013390367850661]],[[-0.016578746959567,0.16835807263851,0.20800638198853],[0.027454923838377,-0.025118093937635,-0.036193873733282],[-0.031252268701792,-0.12314663827419,0.0019128444837406]],[[0.020347092300653,0.064044147729874,0.091341748833656],[-0.045233067125082,-0.10687923431396,-0.064583607017994],[-0.084531895816326,-0.13844187557697,0.020749691873789]],[[0.090430572628975,0.024009324610233,0.0021216350141913],[0.10351832956076,0.28677707910538,0.20266801118851],[-0.094275265932083,-0.12918570637703,0.09020284563303]],[[0.052912421524525,-0.097847543656826,-0.010280381888151],[-0.047250706702471,0.0056966757401824,-0.2263840585947],[-0.12206523865461,-0.21271196007729,0.016091955825686]],[[-0.083717949688435,-0.040582697838545,0.18660865724087],[-0.04748061299324,-0.050353024154902,0.15056423842907],[-0.10633256286383,-0.12891063094139,0.017479924485087]],[[-0.022707957774401,-0.030685415491462,-0.034732013940811],[0.042563609778881,0.12049976736307,-0.060470562428236],[-0.10940973460674,0.016372580081224,-0.14812751114368]],[[-0.10435222834349,-0.0096152480691671,0.066169656813145],[-0.056662727147341,-0.11173566430807,0.039308279752731],[0.035555381327868,-0.15687045454979,0.058490626513958]],[[0.04119049757719,-0.12050243467093,-0.25363728404045],[-0.3166915178299,-0.028793070465326,0.061617579311132],[-0.033097553998232,-0.15561570227146,-0.012494166381657]],[[-0.20307144522667,-0.12449810653925,0.04099677875638],[-0.11345437169075,0.0058923242613673,-0.070427104830742],[-0.23818008601665,-0.099331051111221,0.007986294105649]],[[-0.021780882030725,-0.045376803725958,-0.18299445509911],[0.0076401685364544,0.18104535341263,0.14185877144337],[0.14456009864807,0.04865749552846,-0.018495062366128]],[[-0.086694553494453,0.013808988034725,0.16020609438419],[-0.15581968426704,0.018434543162584,-0.053834337741137],[0.031645309180021,-0.2084014415741,0.020852683112025]],[[0.0215427223593,-0.069467641413212,-0.065744683146477],[0.0027317360509187,-0.11124686896801,0.052761636674404],[-0.27093368768692,0.30315804481506,0.25409093499184]],[[-0.078433349728584,-0.17048785090446,-0.038752391934395],[-0.061331395059824,-0.18774603307247,0.0091041494160891],[-0.0090603614225984,0.033994674682617,-0.01460818387568]],[[0.020155509933829,0.070790365338326,-0.15786714851856],[0.3537030518055,0.012804419733584,0.014647885225713],[0.053319983184338,0.059917557984591,0.0044661690481007]],[[0.12441205978394,-0.12675699591637,-0.014338097535074],[0.010027133859694,-0.032141901552677,-0.11324344575405],[0.093392729759216,-0.062252096831799,-0.095502562820911]],[[-0.086317524313927,-0.056251686066389,-0.134825527668],[-0.053107142448425,-0.014872084371746,0.056498769670725],[-0.0042319069616497,0.073187060654163,0.092238992452621]],[[-0.013667118735611,0.019557040184736,-0.16844962537289],[0.10115761309862,0.035470839589834,0.052406705915928],[0.064802974462509,-0.1087216809392,0.046554166823626]],[[-0.21434108912945,-0.10086595267057,-0.11677927523851],[-0.029481247067451,-0.045241788029671,-0.023461507633328],[0.12727928161621,-0.071320153772831,-0.063319265842438]],[[0.010448141023517,0.09729927033186,-0.13109448552132],[0.083694480359554,0.11502184718847,-0.14730714261532],[-0.033185556530952,-0.073525443673134,0.20776517689228]],[[0.11185422539711,0.097860388457775,0.020329657942057],[0.16400104761124,-0.025827778503299,-0.23913548886776],[0.12148970365524,0.22902722656727,0.10813531279564]],[[-0.063876785337925,0.095166951417923,-0.0061615984886885],[-0.029038194566965,-0.051624808460474,-0.12141953408718],[-0.035567779093981,-0.075802192091942,-0.1131991520524]],[[-0.052493993192911,-0.022084375843406,-0.032984934747219],[0.28267922997475,-0.02731085754931,-0.015413338318467],[0.072777234017849,0.066884584724903,0.1583196669817]],[[-0.1293767541647,-0.065205156803131,-0.033272139728069],[-0.020327363163233,0.10472679883242,0.023427583277225],[-0.10942658036947,0.035802945494652,-0.012017490342259]],[[-0.044433631002903,-0.05418473482132,-0.061027891933918],[-0.1972409337759,0.06712556630373,-0.090892113745213],[-0.029570024460554,0.12005852162838,-0.19038407504559]],[[-0.011631053872406,0.19661140441895,0.074432939291],[-0.022707222029567,0.022642187774181,-0.12595230340958],[0.23676933348179,0.0016493374714628,0.044756807386875]],[[-0.26765850186348,-0.21984386444092,-0.17832817137241],[-0.010669429786503,-0.10237959772348,0.061710398644209],[0.048385247588158,-0.016097906976938,-0.0020980574190617]],[[0.039358552545309,0.2890585064888,0.18501763045788],[0.081265062093735,0.037927467375994,-0.027696065604687],[-0.048891674727201,0.00070383038837463,0.0067954985424876]],[[-0.12214867770672,-0.10737448185682,0.0021594625432044],[-0.0073348605073988,0.08567426353693,0.29768446087837],[-0.038024056702852,-0.031109748408198,0.10697521269321]],[[0.0620774962008,0.11523853242397,-0.03137431666255],[0.030900277197361,-0.070547446608543,-0.12757757306099],[-0.11060032993555,0.14029410481453,0.22564627230167]],[[0.026339055970311,-0.06875616312027,-0.10124257206917],[-0.035718653351068,0.020403100177646,0.049823399633169],[0.35546895861626,-0.084357507526875,-0.11819464713335]],[[-0.030249519273639,0.082322329282761,0.070613332092762],[0.073678024113178,0.038711652159691,-0.011518485844135],[0.0087944660335779,0.014733416028321,-0.016418520361185]],[[0.20274356007576,0.27815121412277,0.095433063805103],[0.16498351097107,0.11212004721165,-0.14533656835556],[-0.1632971316576,0.0010379931190982,-0.061967007815838]],[[0.023767976090312,0.16536277532578,-0.01651793345809],[0.16950082778931,-0.11394024640322,0.065613903105259],[0.12154356390238,0.18869715929031,-0.057905051857233]],[[-0.011002482846379,0.13836167752743,0.077671900391579],[-0.0095988577231765,-0.26540344953537,-0.23524343967438],[-0.070606082677841,0.054826613515615,-0.066487863659859]],[[-0.10872551053762,0.0030682403594255,0.030623571947217],[0.065747484564781,0.029271511361003,0.13979202508926],[-0.23065435886383,-0.076488055288792,0.13627004623413]],[[-0.084757916629314,-0.0023031500168145,0.1098066419363],[-0.1298186480999,-0.13974723219872,-0.0097121894359589],[-0.089756429195404,-0.017052395269275,-0.18045246601105]],[[-0.020849216729403,-0.0097305187955499,0.0588623508811],[-0.03343253582716,-0.080898493528366,-0.055483162403107],[-0.0090528232976794,0.10593148320913,0.13662065565586]],[[0.068052843213081,-0.0054702167399228,0.19850496947765],[-0.22222258150578,-0.1275140941143,-0.026895027607679],[0.25153735280037,0.31352627277374,-0.063113287091255]],[[0.064415872097015,-0.048886582255363,-0.25325384736061],[0.003699452849105,0.12008340656757,0.22025530040264],[0.0061134207062423,-0.0091283349320292,-0.070195280015469]],[[-0.10974100977182,-0.048674844205379,-0.035369254648685],[0.022461073473096,-0.050753589719534,-0.00063834671163931],[0.10888236016035,-0.072157666087151,-0.039857670664787]],[[-0.011005596257746,0.014943720772862,-0.08600852638483],[0.019691051915288,-0.040467347949743,0.026023685932159],[-0.013557016849518,-0.075250864028931,-0.14286717772484]],[[-0.065211929380894,0.063329555094242,-0.096265122294426],[-0.056655030697584,-0.0049785268492997,-0.28359463810921],[0.025297062471509,0.22139526903629,-0.049164231866598]],[[0.044459253549576,-0.065671905875206,-0.1887322217226],[0.024399470537901,0.093429669737816,0.05951738730073],[-0.052627254277468,-0.036550670862198,0.12294479459524]],[[0.0016364670591429,0.10376198589802,0.054624933749437],[0.068054288625717,0.10891690850258,-0.0059302812442183],[0.096476636826992,0.12406682223082,-0.090659372508526]],[[-0.072827480733395,-0.060220167040825,-0.10974312573671],[0.077567137777805,0.080469734966755,0.073462978005409],[-0.080780826508999,0.0041818902827799,-0.037539478391409]],[[-0.088829927146435,-0.072453536093235,-0.025212056934834],[0.086865343153477,0.099458940327168,-0.12493054568768],[0.13441540300846,0.0054320930503309,-0.085802406072617]],[[0.071733057498932,0.0014491841429844,0.12536062300205],[-0.061126794666052,0.029952373355627,-0.058822922408581],[0.089426964521408,-0.0080741886049509,-0.15274032950401]],[[-0.015728240832686,-0.073877342045307,-0.069947734475136],[-0.1029044687748,-0.051192179322243,0.084861367940903],[-0.047731429338455,-0.12418165057898,-0.057961773127317]],[[0.055468566715717,0.058997694402933,0.013038299977779],[0.032825566828251,0.035632885992527,-0.20771142840385],[-0.039548374712467,-0.13995544612408,-0.12830331921577]],[[-0.057591512799263,-0.059796493500471,-0.14089116454124],[0.045700196176767,-0.025151915848255,-0.16400773823261],[0.081980906426907,0.19205760955811,0.11088376492262]],[[-0.05427472665906,0.12553876638412,-0.024421736598015],[-0.086315855383873,0.21528302133083,-0.00080738571705297],[0.10246952623129,0.11679576337337,-0.03978107124567]],[[0.08430290222168,-0.28746008872986,-0.27180141210556],[-0.038073439151049,-0.35559988021851,0.14899460971355],[0.21451012790203,-0.11407920718193,0.038653176277876]],[[-0.13669429719448,-0.041487198323011,0.10991973429918],[0.040825694799423,-0.1181206330657,-0.04517787694931],[0.21981191635132,-0.034404311329126,-0.044225580990314]],[[0.078264445066452,-0.062533520162106,-0.084920324385166],[0.033078249543905,0.10287042707205,0.14821228384972],[0.013582850806415,0.092738375067711,-0.030841084197164]],[[-0.13525345921516,0.24997600913048,-0.039198495447636],[-0.017895204946399,0.052530653774738,0.061109490692616],[-0.03888500854373,-0.076471954584122,-0.029610393568873]],[[-0.044641118496656,0.055702395737171,-0.092229813337326],[-0.11555267870426,-0.034556984901428,-0.0075825951062143],[0.086097776889801,-0.04394843801856,0.22910118103027]],[[-0.18084973096848,-0.26277324557304,-0.079676099121571],[-0.038648679852486,-0.17958794534206,0.039007741957903],[-0.24576517939568,-0.066765524446964,0.010048420168459]]],[[[-0.028898427262902,0.016813516616821,-0.0069395410828292],[0.008390111848712,0.023616092279553,0.045583810657263],[-0.077008612453938,-0.023957636207342,0.018743621185422]],[[-0.08466350287199,-0.031312253326178,0.019554983824492],[-0.00042183499317616,-0.034187741577625,-0.022937640547752],[0.075199402868748,0.053471997380257,0.15104909241199]],[[-0.067611023783684,-0.014388838782907,0.17705915868282],[0.069378204643726,0.07830536365509,-0.073836036026478],[0.05972495675087,0.061581991612911,0.086529619991779]],[[0.0066803661175072,-0.00539466785267,-0.068517759442329],[0.0012730328598991,-0.0043201479129493,-0.039769966155291],[-0.094721160829067,-0.040263745933771,0.0081801926717162]],[[-0.027422895655036,-0.020155614241958,-0.050057411193848],[0.031433258205652,0.10330048948526,0.1189241707325],[-0.097741343080997,-0.047953598201275,0.015834741294384]],[[-0.027626059949398,-0.068971633911133,0.011452940292656],[0.093622460961342,0.029168425127864,-0.0071714981459081],[0.068729281425476,-0.038358990103006,0.031994752585888]],[[0.051618944853544,0.025627695024014,0.031513992697001],[-0.080697290599346,0.034332942217588,0.088520839810371],[-0.023330621421337,-0.049304850399494,0.088660605251789]],[[-0.038173269480467,-0.052662152796984,0.00073459732811898],[0.020427348092198,-0.035892404615879,-0.046997770667076],[-0.035031262785196,-0.032152161002159,0.090507976710796]],[[0.045509994029999,-0.028097901493311,-0.030495481565595],[-0.017670145258307,0.032350812107325,-0.050396334379911],[0.09725172072649,0.0074408282525837,-0.026517672464252]],[[-0.0062587633728981,0.03301640599966,0.042329255491495],[-0.049647931009531,0.02660484239459,-0.022376637905836],[0.0075245080515742,-0.037235714495182,0.052688121795654]],[[-0.0045752399601042,0.031665328890085,-0.0050522508099675],[0.031105518341064,0.026979146525264,0.063483670353889],[0.089941069483757,0.067090012133121,0.011165554635227]],[[-0.08307546377182,-0.082753092050552,0.021629251539707],[0.037078205496073,-0.01702643185854,0.013129183091223],[0.033324211835861,0.024575879797339,-0.052607901394367]],[[-0.002764273667708,0.016616141423583,-0.0015969827072695],[-0.020911941304803,-0.013187008909881,0.069451488554478],[-0.058841824531555,-0.047295391559601,-0.066488683223724]],[[-0.020713878795505,-0.11046022176743,-0.066762343049049],[-0.10609579831362,0.027187913656235,-0.071952857077122],[-0.073608890175819,-0.011657539755106,-0.042426820844412]],[[-0.020283693447709,0.0092221535742283,-0.044465180486441],[0.0075978576205671,0.012671824544668,-0.036527562886477],[0.0024453676305711,0.031434506177902,0.027806237339973]],[[0.04242217540741,0.049312695860863,-0.018559111282229],[0.046623568981886,0.012701603583992,-0.054381899535656],[0.023973736912012,0.049710810184479,-0.095665998756886]],[[-0.0020494665950537,0.0011745749507099,-0.031159602105618],[0.042389109730721,-0.020829336717725,-0.08124203979969],[-0.038994781672955,0.0023296899162233,0.072862707078457]],[[-0.010546592064202,0.037135642021894,0.031723812222481],[0.0099859610199928,-0.018413869664073,-0.059904076159],[-0.030401341617107,-0.0053790146484971,-0.062295977026224]],[[0.004655571654439,0.017680959776044,-0.0012980587780476],[0.099324502050877,-0.0053072869777679,-0.011382199823856],[0.032254535704851,-0.085290558636189,-0.023473063483834]],[[0.038872886449099,-0.0021744547411799,-0.027631727978587],[0.046687766909599,0.0071516647003591,0.027736216783524],[0.024133663624525,-0.01676949672401,-0.040281753987074]],[[-0.050940319895744,0.016199830919504,0.02833379805088],[0.016786523163319,0.0088104661554098,0.029518093913794],[-0.023238690569997,-0.053162951022387,-0.03537879511714]],[[-0.010823019780219,-0.021205972880125,-0.069477938115597],[0.0669901445508,0.0091764274984598,-0.0066837752237916],[0.062720023095608,0.019562365487218,0.0054655498825014]],[[0.10496737062931,0.072285391390324,-0.10302310436964],[-0.038379412144423,-0.06288780272007,-0.022244604304433],[0.014214612543583,-0.0049077160656452,-0.049198534339666]],[[-0.0250986777246,-0.027377091348171,-0.016247548162937],[-0.059842057526112,0.0033707499969751,-0.022664945572615],[0.012437900528312,0.086398482322693,0.093411833047867]],[[-0.018345583230257,-0.035685200244188,-0.044636830687523],[0.04602737352252,0.049401361495256,0.025968318805099],[-0.039128221571445,-0.040644966065884,0.043377656489611]],[[0.035677913576365,-0.0051463986746967,-0.077822662889957],[0.061048414558172,0.050416920334101,-0.056061986833811],[0.072447329759598,0.094738870859146,0.047036685049534]],[[-0.0072979982942343,0.086546428501606,0.016970859840512],[-0.028347844257951,0.058570429682732,0.017339184880257],[-0.051473777741194,0.06624910980463,0.040544848889112]],[[0.015516683459282,0.019286116585135,0.054356630891562],[-0.059552546590567,-0.014807537198067,-0.011798752471805],[0.029494468122721,0.01321951393038,0.08659515529871]],[[0.069202393293381,-0.013971637934446,-0.029875345528126],[-0.0067457612603903,-0.042942244559526,-0.013258511200547],[0.023731565102935,-0.075157970190048,0.0052716513164341]],[[0.034122530370951,0.027728224173188,0.041245881468058],[-0.064194887876511,0.055005345493555,0.041988279670477],[-0.053495261818171,-0.027384649962187,-0.019973587244749]],[[0.083374679088593,-0.017385942861438,0.026186658069491],[0.0088231442496181,0.015830839052796,0.011639294214547],[-0.016794938594103,0.071862526237965,-0.044723901897669]],[[0.05544601380825,-0.063460126519203,-0.031442686915398],[0.043772138655186,0.13926804065704,0.013342306017876],[0.053770940750837,-0.044563449919224,0.0095236338675022]],[[0.10571443289518,0.054550025612116,-0.028355007991195],[0.026686798781157,-0.029431123286486,-0.024001950398088],[0.030706653371453,-0.00071203766856343,0.043083354830742]],[[0.044106084853411,-0.0070099239237607,-0.033097967505455],[0.0014396406477317,0.0030172748956829,0.026907740160823],[-0.086237095296383,0.013144751079381,-0.0048376526683569]],[[0.071430131793022,-0.052612509578466,0.07197667658329],[-0.069579482078552,-0.051602851599455,0.040521342307329],[-0.010743863880634,-0.028993748128414,-0.022002529352903]],[[-0.043962646275759,0.014383364468813,-0.034833777695894],[-0.015968229621649,-0.010457259602845,-0.039917256683111],[-0.044755265116692,-0.044702127575874,-0.012224364094436]],[[0.040482640266418,-0.012501779012382,0.010255433619022],[0.01926089450717,-0.046077828854322,0.022923525422812],[-0.036864578723907,0.02909361384809,-0.0024350858293474]],[[-0.0092399632558227,0.0025153895840049,0.0450992397964],[-0.035346928983927,-0.0017088388558477,0.10582706332207],[-0.0049490774981678,-0.094734527170658,0.01225827075541]],[[0.019520247355103,0.033500362187624,0.0054141259752214],[0.026936769485474,0.0023977090604603,0.11099830269814],[0.062621705234051,-0.056428629904985,0.024652985855937]],[[-0.032711047679186,-0.011798000894487,-0.0070076114498079],[0.013270133174956,-0.045145120471716,-0.0030338722281158],[0.049047902226448,-0.023278390988708,-0.0096429390832782]],[[0.020517723634839,-0.020534316077828,-0.045276124030352],[0.020572243258357,0.035254329442978,-0.015647117048502],[-0.062250178307295,-0.031648706644773,-0.10700687766075]],[[-0.0012226619292051,-0.054222341626883,-0.014847892336547],[0.0015846048481762,-0.0090568456798792,-0.0040055196732283],[-0.041558224707842,0.022691989317536,-0.035629201680422]],[[-0.024940995499492,-0.075389713048935,-0.034154511988163],[-0.037018831819296,0.014560120180249,0.043149616569281],[0.0075211734510958,0.031869392842054,0.018310924991965]],[[0.020182557404041,0.014070653356612,0.0064822304993868],[0.0046858605928719,0.00047879983321764,-0.079176560044289],[-0.019602628424764,0.022136893123388,0.023275103420019]],[[0.061901800334454,0.040496997535229,0.047239731997252],[0.052980024367571,0.027461653575301,0.0080445362254977],[-0.023222494870424,0.0011065711732954,0.003938015550375]],[[0.021420612931252,0.0093238512054086,0.029258174821734],[-0.026312600821257,-0.0073060020804405,0.0040280795656145],[-0.037088081240654,-0.054866760969162,0.054365340620279]],[[0.0014025550335646,0.0085857566446066,-0.084115162491798],[0.025289909914136,0.015678400173783,-0.098319239914417],[0.016632812097669,-0.028777411207557,0.024058444425464]],[[-0.018880065530539,-0.067602276802063,-0.035538002848625],[-0.039548382163048,0.02287732809782,0.024129187688231],[0.031380698084831,0.0057989880442619,-0.19135315716267]],[[0.022661937400699,-0.04740459471941,0.026937386021018],[-0.0049670920707285,-0.026878360658884,0.081157594919205],[-0.021057281643152,0.0024201031774282,-0.082029618322849]],[[-0.0066224187612534,-0.042732369154692,-0.019003257155418],[-0.096659436821938,-0.078486256301403,0.012564392760396],[0.035294778645039,-0.047447565943003,0.058439683169127]],[[0.010127580724657,-0.0039923638105392,0.011540497653186],[-0.022157672792673,-0.075196027755737,-0.094460859894753],[0.0057362644001842,-0.016403634101152,-0.03190678730607]],[[-0.070849061012268,-0.044482331722975,0.051019992679358],[0.081611774861813,-0.056129768490791,-0.0043899300508201],[-0.0062417215667665,-0.01715393178165,0.02193883061409]],[[-0.062547035515308,-0.040522236377001,0.0084656635299325],[0.0074523971416056,-0.049456421285868,-0.031904488801956],[0.0055173994041979,0.038560952991247,-0.027573674917221]],[[-0.053256046026945,-0.054115906357765,-0.035388063639402],[-0.074339367449284,0.047438103705645,0.0045284596271813],[0.093034863471985,0.0075885131955147,-0.032738585025072]],[[0.01601885817945,-0.05031568184495,0.046967674046755],[0.13537169992924,0.096966087818146,0.067184746265411],[-0.020573273301125,-0.00054623460164294,-0.03244398906827]],[[0.13434411585331,0.033416464924812,-0.047175232321024],[-0.021835057064891,-0.019071439281106,-0.05587050691247],[-0.011849359609187,0.018753493204713,-0.020542712882161]],[[0.04733382537961,-0.034839008003473,-0.098689511418343],[-0.031415816396475,0.021663136780262,0.066431261599064],[0.030174028128386,-0.064711973071098,0.090717494487762]],[[-0.024825073778629,-0.010142166167498,0.023156847804785],[0.028136026114225,-0.057597380131483,0.034646350890398],[0.013857807032764,-0.046451527625322,-0.024872055277228]],[[-0.051216650754213,-0.075832329690456,0.039958119392395],[-0.033823393285275,-0.12202231585979,0.031346365809441],[-0.048813115805387,-0.040191683918238,0.046922404319048]],[[0.031742781400681,0.011035349220037,-0.10729417204857],[0.038364071398973,-0.06132860481739,-0.089488849043846],[0.071894273161888,0.096147067844868,0.0055513316765428]],[[0.011162061244249,0.0025367338676006,-0.020242553204298],[-0.021381702274084,-0.0033743255771697,-0.013390957377851],[-0.073248274624348,-0.063777521252632,-0.01445075776428]],[[-0.077820554375648,0.015676571056247,0.0087503483518958],[0.028350362554193,0.018538821488619,0.0086615867912769],[0.028555057942867,-0.078675523400307,-0.068800546228886]],[[-0.0097225792706013,-0.0013646769803017,-0.085102044045925],[-0.035776346921921,-0.012430450879037,0.03134111315012],[0.088864326477051,-0.01796817407012,0.02712744474411]],[[-0.033381514251232,-0.0069450899027288,0.045951697975397],[0.065380074083805,0.017914796248078,-0.018207579851151],[-0.10316736251116,0.056578148156404,0.0068837404251099]],[[-0.0066362908110023,-0.090949058532715,0.0098691787570715],[0.057491544634104,-0.040722858160734,-0.071072153747082],[-0.061188999563456,-0.057940285652876,-0.022755682468414]],[[0.037396863102913,-0.065256856381893,-0.025725118815899],[0.0099406391382217,0.066163450479507,-0.076912619173527],[-0.016100339591503,0.07861353456974,0.019205251708627]],[[0.045248601585627,0.046939168125391,0.044118568301201],[-0.014974974095821,0.035734880715609,0.034635327756405],[0.062777690589428,0.048465143889189,0.027520766481757]],[[0.015274670906365,-0.028612237423658,-0.057073958218098],[0.028284976258874,-0.065566323697567,-0.04960960149765],[-0.024196235463023,-0.0028250541072339,0.021545212715864]],[[0.060702353715897,-0.04801008105278,-0.096753895282745],[0.0031632478348911,0.031502690166235,-0.11772995442152],[0.064941607415676,-0.038697022944689,-0.046604041010141]],[[0.017620891332626,-0.038478877395391,0.046379338949919],[-0.021646969020367,-0.016075402498245,-0.027997702360153],[-0.023659812286496,0.077590093016624,0.030831465497613]],[[0.038123890757561,-0.009421112947166,-0.02980144880712],[0.027191383764148,-0.060688953846693,0.02012350782752],[0.00094741256907582,0.072918735444546,-0.0022778641432524]],[[-0.010915308259428,0.025534816086292,0.0032625093590468],[-0.008812302723527,0.051795057952404,0.013401389122009],[-0.010798428207636,0.083007082343102,0.036617580801249]],[[0.04448664560914,0.017497839406133,-0.05434338748455],[0.018830116838217,-0.025158857926726,-0.018120070919394],[-0.019060559570789,-0.0098241483792663,0.05262153595686]],[[-0.024637268856168,0.015108266845345,-0.026285599917173],[0.05908614769578,0.0060775959864259,-0.024158040061593],[-0.030683742836118,0.019246898591518,0.031361058354378]],[[-0.014711853116751,0.013873578049242,0.027775397524238],[-0.038462772965431,0.021487267687917,0.068643502891064],[-0.052103914320469,-0.0073139877058566,-0.071986138820648]],[[-0.016274280846119,0.04601613804698,0.025061797350645],[0.027153126895428,-0.00015550456009805,0.084273412823677],[0.0056006973609328,-0.0094343321397901,0.011679180897772]],[[-0.07315431535244,-0.027120117098093,0.021135428920388],[-0.057490039616823,-0.10428252071142,0.019694950431585],[-0.010324134491384,-0.0030301280785352,-0.043252177536488]],[[-0.032343443483114,-0.07241952419281,-0.010779957287014],[-0.020039403811097,-0.055514242500067,0.031274065375328],[-0.0010515149915591,-0.007038370706141,0.00016982978559099]],[[0.03439287468791,0.014711803756654,0.0051308162510395],[-0.009798975661397,0.023232404142618,-0.031484887003899],[0.0072086900472641,0.013125052675605,0.051271229982376]],[[-0.030446222051978,-0.070685602724552,0.066976182162762],[-0.031235905364156,-0.063902944326401,-0.01394877396524],[0.0055537028238177,-0.039785668253899,-0.032589852809906]],[[0.015888990834355,0.012120577506721,-0.019856136292219],[-0.054181553423405,-0.078199930489063,-0.067149445414543],[0.022747298702598,-0.070465452969074,-0.039827808737755]],[[0.076245285570621,0.028896695002913,0.050294678658247],[-0.042876947671175,0.11838306486607,-0.037542432546616],[-0.10770089179277,-0.058204717934132,0.062948599457741]],[[0.067956164479256,0.15001283586025,0.066387221217155],[-0.023230610415339,0.011417820118368,0.037308983504772],[-0.036094844341278,-0.040803164243698,0.0063564693555236]],[[0.021997973322868,-0.069589920341969,-0.042876534163952],[0.052030146121979,0.0043451944366097,-0.040070153772831],[-0.065535590052605,-0.077394388616085,-0.044459339231253]],[[0.013044964522123,-0.004193049389869,0.065779693424702],[-0.0065879691392183,-0.052236665040255,0.089131191372871],[0.026894887909293,-0.093819685280323,-0.042019858956337]],[[-0.041315503418446,-0.042277332395315,0.01239915471524],[0.10976327210665,0.094193547964096,0.08580020815134],[-0.038504756987095,-0.009515093639493,-0.011270296759903]],[[-0.041775438934565,0.02845267392695,-0.0063088675960898],[-0.0064429710619152,-0.070015169680119,0.041683446615934],[0.021517187356949,-0.075611747801304,-0.02769536152482]],[[0.10542738437653,0.11038237810135,0.059049565345049],[-0.054221738129854,-0.031658004969358,-0.016431760042906],[-0.022057564929128,0.0096244113519788,-0.030099427327514]],[[0.10007800906897,0.070373825728893,-0.037503514438868],[0.054205071181059,-0.013449152000248,-0.0067624198272824],[0.06999210268259,0.046220019459724,0.016180314123631]],[[0.039020400494337,0.0027430371847004,0.07789108902216],[0.12163637578487,0.017647268250585,0.028875697404146],[0.045789070427418,-0.027141012251377,-0.037630774080753]],[[-0.10024590790272,-0.021059164777398,-0.0087462263181806],[-0.07121205329895,-0.064836777746677,0.066438749432564],[-0.034265622496605,-0.042913556098938,0.0032885516993701]],[[0.029598349705338,-0.030984804034233,0.0099401278421283],[-0.023161353543401,-0.047350838780403,-0.030501745641232],[-0.0038152751512825,-0.046432036906481,-0.0010706081520766]],[[0.1048194244504,0.05067216232419,-0.028247866779566],[0.049135405570269,-0.01084513310343,0.00045839583617635],[-0.060858119279146,0.041015330702066,0.062370721250772]],[[0.012386535294354,-0.012263760901988,0.047194767743349],[-0.047851994633675,-0.011161943897605,0.069796092808247],[-0.010772594250739,-0.014977669343352,0.13853795826435]],[[-0.0030136615969241,0.077475771307945,-0.0010276729008183],[0.083323411643505,0.14387111365795,-0.0071219424717128],[0.019466441124678,0.004050865303725,-0.005551680456847]],[[-0.019928891211748,-0.027193617075682,-0.10596766322851],[-0.022541828453541,-0.11637257039547,-0.038476653397083],[0.043734908103943,-0.071915529668331,-0.014573732391]],[[0.061377841979265,0.047027911990881,-0.020804710686207],[-0.044746376574039,-0.0096492627635598,-0.059062659740448],[0.080488681793213,-0.015327849425375,0.045675255358219]],[[-0.04826407507062,0.06669045984745,0.055920604616404],[-0.017307741567492,0.17610703408718,0.0016091915313154],[0.073262006044388,0.11728777736425,-0.0011677744332701]],[[0.079840309917927,0.019518552348018,0.023123495280743],[0.022554885596037,-0.068617507815361,0.018687242642045],[-0.041125185787678,0.0042320336215198,-0.0030287934932858]],[[-0.0038572030607611,0.017104860395193,0.062898725271225],[2.3859574866947e-05,0.0061272936873138,0.063217952847481],[-0.01871170476079,0.076294772326946,0.053566716611385]],[[-0.032131668180227,-0.030455127358437,0.029324647039175],[-0.026329586282372,-0.0068317521363497,0.0097133936360478],[0.089165210723877,0.077457047998905,0.0045035416260362]],[[-0.003535604570061,0.050491217523813,-0.060441832989454],[-0.014762124046683,0.17822228372097,0.073404990136623],[-0.034496445208788,-0.10379146039486,0.013621515594423]],[[-0.07888837903738,-0.049060963094234,0.033924404531717],[0.0039305030368268,-0.019685376435518,0.045751623809338],[0.056474283337593,0.028991755098104,-0.076188631355762]],[[-0.0053681498393416,0.054107997566462,0.052638050168753],[-0.021511195227504,-0.069078430533409,0.0088269840925932],[0.048782665282488,0.054551184177399,-0.029571954160929]],[[-0.0090795354917645,0.047791384160519,0.035912420600653],[-0.068207450211048,-0.053127776831388,0.0043810671195388],[0.012964479625225,-0.010406788438559,0.018495313823223]],[[0.0034521627239883,-0.052554622292519,-0.050463486462831],[0.0035789445973933,-0.0037871419917792,-0.033906873315573],[-0.026934152469039,0.0040582702495158,0.047421623021364]],[[-0.054882474243641,0.049113761633635,0.072460331022739],[0.046036340296268,0.0032612034119666,0.028396673500538],[-0.02738825045526,-0.042307663708925,0.053676795214415]],[[-0.06090847030282,-0.058676011860371,-0.07183426618576],[-0.050144955515862,-0.040815774351358,0.0061679659411311],[-0.051585417240858,-0.016319509595633,-0.026641394942999]],[[-0.11618886888027,-0.0016236967639998,0.066034518182278],[0.077835530042648,-0.0029732345137745,-0.010185912251472],[0.0022300386335701,-0.028348924592137,-0.0068034110590816]],[[0.0062332670204341,0.048395074903965,0.035117905586958],[0.080893717706203,0.028743542730808,-0.017699664458632],[0.046684388071299,0.021159518510103,0.025573624297976]],[[-0.049705784767866,-0.0018191961571574,0.0029271049425006],[-0.027595836669207,-0.081410683691502,-0.012136043049395],[-0.013029462657869,-0.0065988400019705,-0.0020028650760651]],[[-0.0074253114871681,0.0061877728439867,-0.050503455102444],[-0.040306132286787,-0.019705256447196,-0.12614141404629],[0.032298743724823,-0.060869269073009,-0.075760543346405]],[[0.015858137980103,0.11659348011017,0.011929562315345],[-0.00057145248865709,0.062149662524462,0.054961051791906],[0.091285176575184,0.036090176552534,0.024489834904671]],[[-0.062399350106716,0.00068095553433523,0.047269802540541],[0.065015517175198,0.032253529876471,-0.021610613912344],[0.0020741270855069,-0.057583317160606,-0.041379954665899]],[[0.013238446787,-0.056429021060467,-0.00035173233482055],[0.054256908595562,0.075360022485256,-0.025617256760597],[0.006482167635113,0.01629413664341,0.0043776156380773]],[[-0.044888969510794,-0.035002313554287,0.017513956874609],[0.033915355801582,-0.055324602872133,-0.012953359633684],[0.02123324945569,-0.038580842316151,-0.012052230536938]],[[0.042198602110147,-0.051195368170738,-0.021741239354014],[0.0023321576882154,-0.065456360578537,-0.1253113001585],[0.061704162508249,0.020789105445147,-0.017497135326266]],[[0.016364837065339,-0.03707430139184,-0.019914219155908],[0.10175157338381,0.045641753822565,-0.0054776328615844],[-0.006793599575758,0.010623962618411,0.083691239356995]],[[-0.13153381645679,-0.045663397759199,0.0090410318225622],[0.038854565471411,-0.016115425154567,0.0013368621002883],[-0.057428110390902,0.020765388384461,0.084931291639805]],[[-0.016869133338332,0.013512949459255,0.023843763396144],[0.041596073657274,0.086336307227612,-0.004652607254684],[0.13206775486469,0.092795580625534,0.016978170722723]],[[0.075577907264233,0.0076016834937036,0.07701501250267],[-0.057093288749456,0.066185958683491,0.06979039311409],[0.020945467054844,0.080186434090137,0.097720578312874]],[[0.058692120015621,-0.0056382571347058,0.128472879529],[0.083128087222576,-0.010474438779056,0.03113853558898],[0.041189733892679,0.010523780249059,0.00039730095886625]],[[-0.0049673104658723,0.055308274924755,-0.0061598173342645],[-0.025686249136925,-0.031592011451721,0.014520387165248],[-0.062823571264744,-0.052011042833328,-0.12765437364578]],[[0.058057229965925,0.011479780077934,0.052283804863691],[0.05748500302434,-0.050137717276812,0.010141681879759],[0.069706611335278,-0.012113251723349,0.064520493149757]],[[0.038105063140392,0.04454343393445,0.068351119756699],[0.068025931715965,0.10147649049759,-0.01102767046541],[-0.030927779152989,0.027055850252509,-0.020506089553237]],[[0.0071730143390596,0.00080902117770165,0.064004376530647],[-0.0029205996543169,0.069353871047497,-0.045387648046017],[-0.0013745260657743,-0.059631116688251,-0.043781604617834]],[[0.021619828417897,0.0029551680199802,0.057008229196072],[-0.032058533281088,-0.036881230771542,0.049513451755047],[-0.0027213878929615,0.05911548435688,0.1014017984271]],[[-0.0070648910477757,-0.035209875553846,-0.014640636742115],[-0.020625695586205,0.0044842441566288,-0.083612084388733],[-0.054520275443792,0.11511269956827,0.031386416405439]]],[[[0.10538905858994,0.01606728322804,0.094089820981026],[0.034666538238525,0.065241038799286,0.02570303529501],[-0.053401373326778,0.019158519804478,-0.073244906961918]],[[-0.073245353996754,-0.11621309071779,-0.080757699906826],[-0.05601505190134,-0.01208726875484,-0.080717325210571],[-0.049911469221115,-0.06603129953146,0.080044955015182]],[[0.015429819002748,0.039715003222227,-0.035407416522503],[0.079043671488762,0.039349790662527,-0.068842381238937],[0.048413388431072,0.037279043346643,0.075769893825054]],[[-0.029543485492468,-0.10392417758703,-0.069013774394989],[0.07203770428896,-0.018862484022975,-0.096202611923218],[0.1204764097929,-0.073382712900639,-0.14274038374424]],[[-0.15296210348606,-0.06568493694067,-0.11363703757524],[0.00035415546153672,0.10724724829197,-0.018219847232103],[-0.11902622133493,-0.096209526062012,-0.13631288707256]],[[-0.11993222683668,-0.068334504961967,-0.08832061290741],[0.16552966833115,0.15610331296921,0.16091349720955],[-0.12050330638885,-0.031820975244045,0.05434849858284]],[[-0.056163422763348,0.13181382417679,-0.10948745906353],[-0.0325967669487,0.10832893848419,-0.10180625319481],[0.11386189609766,0.17915235459805,-0.087996564805508]],[[-0.050477236509323,0.10687969624996,-0.04162398353219],[-0.11194560676813,-0.018301507458091,-0.11233862489462],[-0.06099808588624,0.057170860469341,0.10024043917656]],[[0.17170806229115,0.089693561196327,-0.05827260017395],[0.013388719409704,-0.02374485693872,-0.088376887142658],[-0.012718684971333,-0.021821713075042,-0.019949587062001]],[[0.0013680866686627,0.0026056643109769,-0.0080787884071469],[-0.057795450091362,-0.034264583140612,-0.099535308778286],[-0.030974872410297,-0.076267376542091,-0.0062635000795126]],[[-0.096987210214138,-0.057381685823202,0.0069006262347102],[-0.10042492300272,0.023357091471553,0.15352234244347],[0.038056664168835,-0.03703348338604,-0.075162529945374]],[[-0.031561601907015,0.043975744396448,0.091531299054623],[0.016724592074752,0.01220668386668,0.058146364986897],[0.17411153018475,0.10584864020348,0.035642992705107]],[[-0.00530771818012,-0.064064167439938,0.00081449357094243],[-0.0077127576805651,-0.056349251419306,-0.014343895949423],[-0.050635863095522,-0.059796907007694,0.070442661643028]],[[0.085642024874687,-0.021974042057991,0.060368597507477],[0.010782996192575,-0.10186566412449,-0.057468239217997],[-0.12502998113632,0.038171976804733,0.028134575113654]],[[0.20501846075058,0.059095866978168,0.037687469273806],[0.08437318354845,0.096598699688911,0.059970237314701],[-0.053569283336401,0.10010270029306,0.24057494103909]],[[0.08779039978981,-0.034644313156605,-0.031727325171232],[0.070238791406155,-0.060886073857546,-0.06962613016367],[0.17320887744427,-0.022959016263485,-0.14409480988979]],[[-0.16797691583633,-0.05557618662715,-0.10352724045515],[-0.021801801398396,0.11363992094994,-0.075963221490383],[0.070934593677521,0.051362551748753,-0.0014966436428949]],[[-0.029535170644522,0.13873985409737,0.25399196147919],[-0.044499687850475,-0.1077546775341,-0.0063443351536989],[0.03336950391531,0.053320404142141,-0.065679870545864]],[[-0.0042781224474311,0.027173236012459,0.080398611724377],[-0.1494725048542,0.0016838544979692,-0.082572974264622],[-0.069148346781731,0.015253104269505,0.02646248601377]],[[0.056502982974052,0.049324210733175,0.066318109631538],[0.021524183452129,-0.10602034628391,-0.041014209389687],[0.089188024401665,0.021192032843828,-0.065762050449848]],[[0.0093040429055691,-0.023884756490588,0.061595819890499],[0.046586647629738,0.064924001693726,0.081781111657619],[-0.22959439456463,-0.083240792155266,-0.0063047832809389]],[[-0.010210429318249,-0.062143117189407,-0.086984016001225],[0.042710117995739,-0.050302591174841,0.0756541416049],[-0.043638221919537,-0.078318953514099,-0.05626654997468]],[[-0.070541240274906,0.035014633089304,0.015245144255459],[0.017638843506575,0.006651715375483,-0.070149064064026],[-0.056340612471104,0.15970596671104,-0.18211644887924]],[[0.014563232660294,-0.029693726450205,-0.068346992135048],[-0.0045606829226017,-0.00093358557205647,-0.091658599674702],[0.064851306378841,-0.11977757513523,-0.048203885555267]],[[0.050345752388239,-0.17085506021976,-0.12754911184311],[-0.00071675237268209,0.064411893486977,-0.0026875562034547],[-0.030112106353045,0.012450077570975,0.022317925468087]],[[-0.033345334231853,0.10801274329424,-0.0057898052036762],[-0.11440980434418,0.018955763429403,0.018190471455455],[0.061957348138094,0.025117922574282,-0.014726508408785]],[[0.080464601516724,-0.032743155956268,0.053464073687792],[-0.064469859004021,0.099118858575821,0.091585956513882],[-0.095235593616962,-0.075493358075619,-0.11151476949453]],[[-0.02429386600852,0.024709595367312,-0.022342145442963],[-0.088812053203583,-0.088783994317055,-0.013979114592075],[0.15037167072296,0.070247985422611,0.043305266648531]],[[0.077687874436378,-0.070480890572071,-0.093722939491272],[-0.020761968567967,-0.085990078747272,0.0085918102413416],[-0.026439730077982,-0.066451892256737,-0.0089982142671943]],[[-0.010655763559043,-0.066365212202072,0.052293285727501],[0.012326260097325,-0.073472060263157,-0.042153239250183],[0.064871951937675,0.033566955476999,-0.16177037358284]],[[-0.0014751958660781,0.14587345719337,0.020773565396667],[-0.14512023329735,-0.035380832850933,-0.15305197238922],[0.026869922876358,-0.029786493629217,0.036241833120584]],[[0.00021479406859726,-0.16860155761242,-0.08203698694706],[-0.0479776263237,-0.019652828574181,-0.037973955273628],[0.056024789810181,-0.13488012552261,-0.12589283287525]],[[-0.054026708006859,-0.014852683059871,-0.08572182059288],[0.073212184011936,0.099436268210411,0.055511198937893],[0.028636325150728,0.028142904862761,0.12899163365364]],[[0.020636692643166,0.11107286065817,-0.025800613686442],[-0.010100814513862,0.027070458978415,0.023192381486297],[-0.10869007557631,-0.13567622005939,0.18824104964733]],[[0.056870769709349,-0.12941259145737,-0.14359745383263],[0.050049338489771,-0.0060465699061751,-0.032336015254259],[0.00022510610870086,-0.01833376288414,0.023144204169512]],[[-0.069637529551983,0.038021203130484,0.091560773551464],[-0.025856563821435,0.11591819673777,-0.061264168471098],[-0.013698714785278,0.0066902535036206,0.048942871391773]],[[0.042312204837799,0.024461710825562,-0.015559079125524],[0.047684449702501,0.0818165615201,0.043529037386179],[0.071232482790947,0.03516698256135,-0.073580645024776]],[[0.039817538112402,0.012436550110579,0.0069681471213698],[-0.00073484604945406,0.20445255935192,0.046539098024368],[-0.12961092591286,-0.064860612154007,-0.12352342158556]],[[-0.049413587898016,-0.035553529858589,-0.11882902681828],[-0.056479748338461,-0.11721123754978,-0.025539711117744],[0.0039930967614055,0.019839737564325,-0.030973250046372]],[[0.0013823418412358,-0.0047374982386827,0.082736365497112],[-0.066610231995583,-0.07868655025959,-0.018775532022119],[-0.052101705223322,-0.058596901595592,-0.045760158449411]],[[0.13098622858524,-0.054670281708241,-0.062851928174496],[-0.083641447126865,0.05226019397378,0.11904612928629],[-0.11109445244074,-0.040238186717033,-0.044467769563198]],[[0.047782566398382,-0.0036033242940903,-0.0037292442284524],[0.14544920623302,0.15012201666832,-0.0070846946910024],[-0.058475386351347,-0.064857073128223,0.083479017019272]],[[-0.011110138148069,0.041701976209879,0.063729114830494],[-0.093448661267757,-0.0047873170115054,0.025270799174905],[-0.18659645318985,-0.21835790574551,0.017839705571532]],[[0.0312519967556,0.0016629589954391,0.032862421125174],[-0.02955455891788,-0.042002592235804,0.0031005470082164],[-0.11387179046869,-0.078825362026691,-0.052470300346613]],[[-0.016732584685087,-0.066591985523701,0.043079525232315],[0.00085060938727111,-0.080369547009468,0.13639810681343],[0.029707042500377,-0.02441886253655,-0.065677218139172]],[[0.11977706849575,0.12090933322906,0.067322462797165],[0.16838052868843,-0.035474486649036,-0.10234542191029],[-0.028371073305607,-0.032367918640375,-0.017068071290851]],[[-0.05127777159214,-0.026813983917236,-0.037003867328167],[-0.045269589871168,0.11682967096567,0.080849647521973],[-0.14569768309593,-0.029956504702568,-0.01404495164752]],[[-0.062560141086578,0.04725619405508,0.059932824224234],[0.0084628956392407,0.13990639150143,-0.019499076530337],[-0.21735389530659,-0.037547875195742,0.09461747854948]],[[-0.035861123353243,-0.028481055051088,0.075522743165493],[0.030628746375442,0.021269721910357,-0.00031766184838489],[-0.0078433668240905,-0.010760155506432,0.051970865577459]],[[-0.083475790917873,0.017259109765291,-0.012164325453341],[-0.12200868874788,0.034213308244944,-0.051294185221195],[-0.095368109643459,0.079387299716473,0.002626733854413]],[[-0.021224422380328,0.038059875369072,-0.037335976958275],[0.015346290543675,0.01550763938576,-0.04346327111125],[0.018467653542757,-0.15275076031685,-0.05773576721549]],[[0.026652114465833,0.022725971415639,-0.0012907669879496],[-0.12470219284296,-0.072901204228401,-0.11410689353943],[-0.058372292667627,0.17239928245544,-0.03077694401145]],[[-0.063226409256458,-0.019701780751348,-0.063952937722206],[-0.071722134947777,0.014052896760404,-0.0022761840373278],[-0.015192334540188,-0.029612574726343,-0.070923879742622]],[[0.20626251399517,0.15460899472237,0.12832023203373],[-0.069590166211128,-0.011656652204692,-0.073017150163651],[0.030590213835239,-0.070082396268845,-0.10972327739]],[[-0.0047874008305371,0.0014149029739201,0.015867626294494],[0.097000740468502,-0.028092909604311,-0.003824383020401],[0.070431649684906,0.067533865571022,0.14157912135124]],[[-0.082839392125607,-0.014053140766919,-0.06665463000536],[0.025426179170609,-0.061545602977276,-0.046072393655777],[0.080705091357231,-0.012104860506952,0.046220354735851]],[[0.0069397487677634,-0.087091065943241,0.0046892859973013],[-0.020002357661724,-0.071973688900471,0.060140781104565],[-0.041148945689201,-0.07584423571825,0.22266764938831]],[[-0.0068501913920045,0.0069581330753863,0.024753306061029],[-0.086765177547932,-0.026022732257843,-0.077308475971222],[-0.24559772014618,-0.099010847508907,-0.027596101164818]],[[-0.11273416131735,-0.038871426135302,-0.024129040539265],[0.018729820847511,0.019000956788659,0.069673776626587],[-0.18493989109993,-0.079983025789261,0.014977020211518]],[[0.10422772169113,0.011563752777874,-0.1041129976511],[-0.036561120301485,0.10639153420925,-0.04528309032321],[0.05975865572691,0.13429248332977,0.15941059589386]],[[0.041270226240158,-0.0087060807272792,-0.066383183002472],[-0.018045229837298,-0.018358180299401,-0.075485795736313],[-0.0035486700944602,-0.11733867228031,-0.34526041150093]],[[-0.073682442307472,-0.093264132738113,-0.037402797490358],[-0.19896727800369,-0.15610897541046,-0.089062742888927],[-0.025353094562888,-0.10511307418346,-0.10184531658888]],[[-0.026752265170217,-0.066684193909168,-0.064175128936768],[-0.0051763644441962,-0.0063926880247891,-0.058848544955254],[0.12318986654282,0.0059471889398992,0.023866012692451]],[[0.040578328073025,0.1669859290123,0.087884664535522],[0.16214020550251,0.080834269523621,0.11317953467369],[-0.06712269037962,0.065632380545139,0.20536418259144]],[[0.016645612195134,0.032306101173162,-0.090205065906048],[-0.051229473203421,0.047104351222515,-0.021867679432034],[-0.026816984638572,-0.051356889307499,-0.030352924019098]],[[0.027648681774735,-0.079075664281845,0.048556942492723],[-0.17372851073742,-0.02193752489984,0.025630254298449],[-0.099049620330334,0.030135564506054,0.012458830140531]],[[0.068700842559338,0.00035304224002175,-0.0045477580279112],[-0.097634181380272,-0.023651452735066,0.013593155890703],[0.028351917862892,0.10183544456959,0.081705421209335]],[[-0.038882914930582,-0.087113596498966,-0.089605659246445],[-0.040763039141893,-0.24881802499294,-0.25510302186012],[-0.073719672858715,-0.12633486092091,0.078142911195755]],[[-0.055871974676847,-0.022841911762953,0.020504634827375],[-0.08014976978302,0.025844905525446,0.016012793406844],[0.17844562232494,0.048355475068092,-0.041783798485994]],[[0.039918839931488,0.014743393287063,0.15210500359535],[-0.11893121898174,-0.14597365260124,-0.051817186176777],[0.10743397474289,0.04311914741993,0.058437582105398]],[[-0.07403901219368,0.073074519634247,0.015191088430583],[0.038933973759413,-0.035889711230993,-0.1048039495945],[0.0077764526940882,0.030159847810864,0.16264365613461]],[[0.0091172736138105,0.069265402853489,0.27948445081711],[-0.038435883820057,-0.0076307407580316,-0.032722152769566],[0.042242523282766,-0.060120828449726,-0.042674336582422]],[[0.044304620474577,-0.11257966607809,-0.093335144221783],[0.0079016983509064,-0.095150656998158,-0.10635648667812],[-0.14989024400711,-0.086426235735416,-0.016779955476522]],[[0.082875147461891,0.10569523274899,0.17996220290661],[0.023726029321551,0.060016222298145,0.13494969904423],[-0.14841765165329,0.04531817138195,0.0088172052055597]],[[-0.047265850007534,-0.033627275377512,0.017022341489792],[0.021105049178004,-0.1185005903244,-0.019942954182625],[0.031776677817106,-0.014872336760163,0.070967003703117]],[[-0.067894503474236,0.023037157952785,-0.038764953613281],[0.12887717783451,-0.056027442216873,-0.070333652198315],[-0.02059942856431,0.11593719571829,-0.038198206573725]],[[0.044154595583677,0.033222913742065,0.050316352397203],[0.019402759149671,0.013593077659607,0.067219644784927],[-0.017302166670561,0.11030548065901,0.11855169385672]],[[0.21484661102295,-0.017153188586235,0.024935245513916],[0.09575679153204,0.052463561296463,-0.056576993316412],[0.021276365965605,-0.10136755555868,-0.067303344607353]],[[0.13422822952271,0.085635162889957,-0.033593516796827],[0.096320576965809,0.015072942711413,-0.071269541978836],[0.092492908239365,0.053699944168329,0.072121702134609]],[[-0.15103404223919,-0.0081289997324347,-0.016666818410158],[-0.11902114003897,-0.12465728074312,0.039938218891621],[-0.06396721303463,-0.093620024621487,0.053484976291656]],[[0.093121707439423,-0.075903169810772,-0.21920281648636],[0.078754663467407,0.022786760702729,0.079486072063446],[0.13438612222672,-0.133609816432,-0.013364149257541]],[[0.24649232625961,0.092685326933861,-0.099420182406902],[0.23233352601528,0.15090988576412,0.027244193479419],[0.052235763520002,-0.043931610882282,-0.1129435300827]],[[-0.18968936800957,0.061132181435823,-0.028292672708631],[0.13702476024628,0.10245011746883,-0.040410377085209],[-0.063967362046242,0.073374263942242,0.060950797051191]],[[0.04883237183094,0.054169785231352,0.093465082347393],[-0.055001564323902,-0.041619829833508,-0.076309949159622],[0.016902117058635,-0.013826945796609,-0.032661139965057]],[[0.099908351898193,0.17413838207722,0.011431174352765],[0.019085120409727,0.054628625512123,0.051467731595039],[0.082262597978115,0.013759283348918,-0.10529178380966]],[[-0.037709664553404,0.019814543426037,-0.071306981146336],[0.048912476748228,-0.00061526987701654,0.063347481191158],[0.14351199567318,0.081254340708256,-0.041588127613068]],[[0.077010773122311,0.074398227035999,0.01277787424624],[-0.11922572553158,-0.052231468260288,-0.086405947804451],[-0.10870210826397,-0.01632378809154,0.050832614302635]],[[0.055467665195465,-0.069922842085361,-0.034120973199606],[0.13998037576675,-0.024959845468402,-0.08416261523962],[0.017434291541576,0.074444152414799,0.05963684245944]],[[-0.10586325079203,-0.064797520637512,0.011178832501173],[-0.15290914475918,0.011508045718074,0.13488484919071],[0.02077616378665,0.013331225141883,0.23259837925434]],[[0.06093081086874,0.025439918041229,-0.073469787836075],[0.085104331374168,0.048371355980635,-0.051664475351572],[-0.074033841490746,0.026565564796329,-0.023362433537841]],[[0.07494679838419,-0.025464467704296,-0.185481518507],[-0.054636437445879,-0.035375420004129,0.043932162225246],[0.068990223109722,-0.090786777436733,0.081482253968716]],[[-0.044386852532625,-0.067330606281757,-0.1374703347683],[0.05080259218812,0.0037566577084363,-0.074198633432388],[-0.095101416110992,-0.072916112840176,-0.052037596702576]],[[0.10710525512695,0.043912619352341,0.018057458102703],[0.028520571067929,-0.068229384720325,0.061193011701107],[-0.01097047328949,0.046778250485659,-0.02404959499836]],[[-0.07598514854908,-0.08969421684742,0.020435158163309],[-0.062632620334625,0.027604257687926,-0.039006367325783],[0.034750107675791,-0.0073525966145098,-0.012232108972967]],[[-0.072960868477821,0.15718546509743,-0.01071544457227],[-0.062352042645216,0.04215070977807,0.0010426201624796],[-0.10450072586536,-0.066953971982002,-0.10477890074253]],[[-0.00030474431696348,0.25261923670769,0.15951664745808],[-0.068447232246399,-0.0073158219456673,0.064033046364784],[0.073841623961926,0.12105038017035,0.12868183851242]],[[0.086156941950321,-0.07378888875246,-0.015227729454637],[0.046942058950663,-0.08219338953495,-0.16086259484291],[-0.07266691327095,0.071886397898197,0.082639329135418]],[[-0.055649790912867,-0.0042404411360621,-0.0087867323309183],[0.043032228946686,-0.092595547437668,-0.0014261482283473],[-0.065120987594128,-0.091887623071671,0.13485553860664]],[[-0.13992114365101,-0.17334692180157,-0.080811485648155],[0.043390147387981,-0.08401083946228,0.16834509372711],[0.024590162560344,0.058086261153221,-0.021817715838552]],[[-0.071445271372795,0.031741991639137,0.0068480158224702],[-0.061362441629171,0.014864146709442,0.080566108226776],[-0.081666834652424,-0.05584404990077,-0.11974228918552]],[[-0.019858688116074,0.013458179309964,0.13821643590927],[-0.16502225399017,-0.087006211280823,-0.058775890618563],[-0.1524702757597,-0.049789916723967,0.058349020779133]],[[0.018660007044673,-0.013216587714851,-0.0032762985210866],[0.058618951588869,0.025395665317774,-0.0054323659278452],[-0.050096679478884,-0.0008803399396129,0.17049001157284]],[[0.15356236696243,0.086516745388508,0.012258906848729],[-0.0950892791152,-0.04130982235074,-0.058094970881939],[-0.057701259851456,-0.058545902371407,0.17779769003391]],[[0.081850223243237,0.011666517704725,0.08802580088377],[-0.12242221087217,-0.20887851715088,0.0039913733489811],[0.13857598602772,0.10603396594524,0.13749496638775]],[[-0.085732772946358,-0.0006250970182009,0.065450944006443],[-0.079571068286896,0.045463465154171,0.078773833811283],[-0.089117988944054,0.011176089756191,-0.015439945273101]],[[-0.12687259912491,-0.037909176200628,0.0093488013371825],[-0.10278477519751,-0.024439515545964,0.044290665537119],[0.019854666665196,0.026333687826991,0.090080380439758]],[[-0.14974428713322,0.055505216121674,0.018920093774796],[0.079370178282261,0.12250200659037,-0.077619567513466],[-0.020742205902934,0.12784604728222,-0.061065379530191]],[[-0.08323522657156,-0.024400483816862,-0.029120171442628],[0.028326507657766,0.00036741350777447,-0.077907755970955],[0.051052331924438,0.020578391849995,-0.079777501523495]],[[0.084445253014565,-0.025980357080698,0.037823457270861],[0.0087124314159155,0.059493009001017,0.018778184428811],[-0.11283247172832,0.131742015481,-0.032209418714046]],[[0.0022465309593827,-0.062955312430859,-0.030636955052614],[0.0074131153523922,0.059384353458881,0.0031417252030224],[-0.082267992198467,-0.021750712767243,0.029918290674686]],[[-0.014530797488987,-0.051040437072515,0.044012270867825],[-0.0079834964126348,-0.046917662024498,-0.019157338887453],[-0.0068862605839968,-0.14901266992092,0.052450258284807]],[[-0.033662095665932,-0.047379590570927,-0.04159889742732],[-0.1496921479702,-0.053291723132133,0.01045517809689],[0.057400289922953,0.027737615630031,-0.070942960679531]],[[0.078132636845112,-0.099897421896458,-0.05206087231636],[0.10672987997532,0.0088150398805737,-0.086488403379917],[-0.051228113472462,0.037799589335918,0.00070300354855135]],[[-0.13841581344604,-0.050225749611855,0.12012625485659],[0.039837516844273,-0.036048877984285,0.064628072082996],[0.11777944862843,-0.023113656789064,-0.11282300204039]],[[0.024677038192749,-0.078832700848579,0.10708354413509],[-0.052008032798767,-0.11402259021997,0.10549758374691],[0.21033066511154,-0.031253140419722,0.0068106367252767]],[[-0.17998132109642,-0.0056868991814554,0.046871162950993],[-0.098646447062492,0.047884069383144,0.085159495472908],[-0.024847500026226,0.029813604429364,0.043591439723969]],[[0.0012174430303276,-0.056083831936121,0.1034831777215],[-0.097079955041409,0.0061232945881784,0.0082030147314072],[-0.21458730101585,0.14407609403133,-0.011806212365627]],[[0.02020918391645,-0.072029963135719,-0.048828162252903],[0.097896590828896,0.16573548316956,-0.020408611744642],[-0.0010688747279346,-0.011331732384861,0.063355803489685]],[[-0.014149849303067,0.10404468327761,0.0085111493244767],[-0.015096430666745,0.044716864824295,0.017311530187726],[-0.032930053770542,-0.056217931210995,-0.052292991429567]],[[0.027546394616365,-0.10700790584087,0.091581553220749],[0.060384914278984,-0.055221702903509,-0.028574885800481],[-0.023554965853691,-0.055523984134197,0.001741451327689]],[[0.090198129415512,0.028716214001179,0.028021939098835],[-0.089961424469948,0.068982899188995,0.05512423068285],[-0.12052580714226,-0.078609280288219,-0.11283186078072]],[[-0.029148988425732,0.022905049845576,0.068030841648579],[0.006355385761708,-0.019453683868051,-0.061212077736855],[0.088882029056549,-0.010214962996542,0.082230463624001]],[[0.016457214951515,0.014379245229065,0.036929823458195],[-0.032769069075584,-0.082415170967579,-0.1960397362709],[-0.12943410873413,-0.055570986121893,0.0047590285539627]],[[0.0037561748176813,0.027994746342301,-0.11151047050953],[0.01138286665082,0.020485863089561,0.083913490176201],[0.05796229839325,-0.022335536777973,0.07191876322031]],[[0.060055561363697,-0.11601958423853,0.059086583554745],[-0.053987316787243,0.00061998004093766,0.057847771793604],[-0.031853534281254,-0.082390420138836,-0.066531583666801]],[[-0.03925683349371,-0.050586983561516,-0.0025363203603774],[-0.093681529164314,-0.026521584019065,-0.10013651847839],[-0.023895325139165,0.063566669821739,0.074098788201809]],[[-0.012620683759451,0.085492491722107,0.055141933262348],[0.040425602346659,0.072540372610092,-0.02843421138823],[0.010768420062959,0.064664959907532,0.071011148393154]],[[-0.019941069185734,0.048717822879553,0.037035774439573],[-0.14194288849831,-0.23304225504398,-0.085256770253181],[0.11350235342979,0.079056411981583,0.1613378226757]]],[[[0.045667920261621,0.028535138815641,-0.0093057630583644],[-0.0023948980960995,0.046949550509453,0.098377384245396],[-0.044806782156229,0.040457099676132,0.064437411725521]],[[0.048577826470137,0.023210112005472,0.028410056605935],[-0.031086964532733,0.062586754560471,-0.055305700749159],[-0.042414609342813,-0.081489115953445,0.0095047792419791]],[[0.033679556101561,-0.069369718432426,-0.05983828753233],[-0.027638072147965,0.070241138339043,-0.03140277788043],[0.028432287275791,-0.011937261559069,-0.087931714951992]],[[-0.05177815631032,0.054598055779934,0.00049708836013451],[-0.056316442787647,-0.020166154950857,-0.0048510855995119],[-0.050296775996685,-0.073454715311527,0.009113953448832]],[[-0.038766652345657,-0.056349255144596,-0.055323891341686],[-0.026769207790494,0.014474970288575,0.053105399012566],[0.056410066783428,0.05020272731781,0.066714629530907]],[[0.0017915123607963,0.044924195855856,0.059633269906044],[0.045104518532753,-0.035516284406185,-0.028731916099787],[0.021308524534106,0.031843259930611,-0.030570780858397]],[[-0.052147034555674,0.034850250929594,0.019156398251653],[0.03332407400012,-0.0019736534450203,0.062550857663155],[0.0041886768303812,-0.048738617449999,-0.039533957839012]],[[0.038726929575205,0.037982873618603,-0.022685375064611],[-0.0071853073313832,0.045684181153774,-0.017772616818547],[-0.0090247271582484,-0.028703505173326,0.0079391272738576]],[[-0.0085432361811399,0.079063072800636,0.12960438430309],[0.00037039609742351,-0.034270357340574,-0.11991538107395],[0.050406008958817,-0.012787891551852,-0.014592066407204]],[[0.0096548581495881,0.075415372848511,0.0066056838259101],[0.0059366715140641,-0.021704059094191,0.021349526941776],[-0.085255227982998,0.010739066638052,0.017968058586121]],[[0.0022294572554529,0.0092361411079764,0.035205125808716],[0.00851134583354,-0.0019974284805357,-0.09564570337534],[-0.067297279834747,-0.023121524602175,-0.058853402733803]],[[-0.040120895951986,-0.076951026916504,0.0022835484705865],[-0.052273597568274,-0.14568692445755,0.054507091641426],[0.028994496911764,0.11915744096041,0.093527585268021]],[[0.0094137638807297,-0.028736066073179,0.010910781100392],[0.011062466539443,0.026780439540744,0.1072468906641],[0.033213384449482,0.032208986580372,0.039182852953672]],[[-0.0043237465433776,-0.050374761223793,-0.048400763422251],[0.083663903176785,-0.039015159010887,0.029478181153536],[0.022960349917412,-0.0014041978865862,-0.052878644317389]],[[0.063534788787365,-0.083070382475853,0.01982855796814],[0.032150458544493,-0.043796259909868,-0.04531654343009],[-0.00079959543654695,0.023324102163315,0.024880863726139]],[[0.0093844812363386,0.0073735141195357,0.039590004831553],[-0.049672838300467,-0.037886805832386,-0.0089482180774212],[0.024613784626126,-0.14186714589596,-0.053885988891125]],[[-0.025528311729431,-0.030826961621642,-0.072014987468719],[0.073626756668091,0.052188977599144,0.038270831108093],[0.066119253635406,0.020548742264509,0.074295170605183]],[[0.054236080497503,-0.04223258420825,0.024587165564299],[0.033818267285824,0.081061214208603,-0.00041784046334215],[0.060618847608566,0.12695705890656,-0.034635413438082]],[[-0.01443530805409,0.00066533352946863,0.032418020069599],[-0.01424022577703,-0.032407507300377,0.067564629018307],[0.040107019245625,0.028766751289368,0.025084689259529]],[[0.062201969325542,-0.026477478444576,-0.14273604750633],[0.11213471740484,-0.010378081351519,-0.12311255931854],[0.047864273190498,0.036867212504148,-0.040420409291983]],[[0.036320071667433,0.0091418083757162,0.041593041270971],[-0.020160855725408,-0.012557649984956,-0.011051221750677],[-0.015040974132717,-0.070532083511353,-0.016472002491355]],[[0.027807205915451,0.066517047584057,0.048793524503708],[-0.09736492484808,0.02966677211225,-0.0077610570006073],[-0.10846947878599,-0.052517738193274,0.0089841829612851]],[[0.0053763594478369,0.040954917669296,0.094486229121685],[0.039270747452974,0.020671863108873,0.017391160130501],[0.0075441207736731,-0.044027376919985,-0.036431275308132]],[[-0.014422443695366,0.027836902067065,0.072186708450317],[-0.11788508296013,-0.015387793071568,-0.01717278547585],[-0.020735701546073,-0.040236059576273,0.022996559739113]],[[0.045029193162918,0.015859646722674,-0.050969634205103],[0.0089964708313346,0.021717006340623,0.037368781864643],[0.024311600252986,0.027340402826667,0.0103514874354]],[[0.081284463405609,0.032991509884596,-0.01514177583158],[0.032572284340858,0.0097334999591112,-0.022762794047594],[-0.097818300127983,0.061075109988451,0.065913699567318]],[[0.079907953739166,0.066953361034393,0.0078271422535181],[-0.026994226500392,-0.00073116953717545,-0.098764836788177],[-0.0024279882200062,-0.0085778441280127,-0.080477617681026]],[[-0.08568100631237,-0.11040037125349,-0.12460140138865],[0.0038529417943209,-0.19327475130558,-0.10423509776592],[0.1403845846653,-0.016298450529575,0.054103951901197]],[[-0.0026538483798504,0.087257526814938,0.079191543161869],[-0.10673453658819,-0.035171631723642,0.018195059150457],[0.10117088258266,0.059058021754026,0.043236318975687]],[[-0.012454895302653,-0.013875914737582,-0.038697801530361],[0.015737857669592,-0.030112812295556,-0.017530674114823],[-0.045743931084871,-0.039547551423311,-0.019655030220747]],[[0.007450622972101,0.042561043053865,-0.037425264716148],[-0.024699758738279,0.024774581193924,0.044467099010944],[-0.094643041491508,-0.0056314719840884,0.028365522623062]],[[0.019851490855217,-0.061492085456848,0.083214312791824],[0.001513420487754,0.068005375564098,0.11179849505424],[0.0014735463773832,0.029606606811285,0.0079614473506808]],[[-0.0039090355858207,0.035184383392334,0.0040886043570936],[-0.05262529104948,0.049500267952681,0.10623029619455],[-0.030061503872275,0.090268097817898,0.049574457108974]],[[-0.036787390708923,0.0027563152834773,0.01649908721447],[0.0093352850526571,0.01297757960856,-0.0026225994806737],[0.020899090915918,0.053425833582878,0.096181131899357]],[[0.068795531988144,0.013297590427101,-0.017815327271819],[0.012672380544245,0.052037842571735,0.01915187202394],[-0.017178356647491,0.071287490427494,-0.087155021727085]],[[-0.013099220581353,-0.01823677867651,-0.037296082824469],[0.027008237317204,-0.029264129698277,-0.02314093708992],[-0.044058624655008,-0.0043699354864657,-0.016303338110447]],[[0.039374690502882,0.027443001046777,0.011916200630367],[-0.025966323912144,0.0074326652102172,0.025157779455185],[0.00095898902509362,-0.06684323400259,0.038673833012581]],[[0.0067771561443806,0.035948801785707,0.043430726975203],[-0.021628245711327,-0.069147296249866,0.0073782321996987],[-0.051260963082314,-0.042876418679953,-0.049362186342478]],[[0.032801277935505,0.042585350573063,0.052320089191198],[-0.085725225508213,-0.028748182579875,-0.0079420236870646],[-0.06659297645092,0.010777904652059,-0.044442001730204]],[[-0.0265824329108,0.031363915652037,-0.0083312811329961],[-0.038733042776585,-0.090833231806755,0.062329974025488],[0.014240433461964,-0.047312214970589,0.079117491841316]],[[0.0074157477356493,0.030508659780025,-0.060303699225187],[0.057162974029779,0.0028401056770235,-0.11156570911407],[-0.076351463794708,-0.076330699026585,-0.051020346581936]],[[-0.036491550505161,-0.039848618209362,-0.03836777806282],[-0.028794584795833,-0.0016866037622094,0.0036639522295445],[-0.053135666996241,-0.081038743257523,-0.11551316082478]],[[0.04750519245863,0.0010412133997306,0.010407548397779],[-0.017615780234337,0.0076254969462752,-0.034540936350822],[0.039367932826281,-0.0081911282613873,0.010875436477363]],[[0.030859280377626,-0.010798471048474,0.061530962586403],[0.0026725528296083,-0.019228016957641,0.048447031527758],[-0.00068370014196262,0.010681224055588,-0.089227989315987]],[[-0.10571671277285,-0.056980971246958,-0.0057924841530621],[0.08417484164238,-0.044177606701851,-0.039702881127596],[0.014552492648363,0.011141813360155,-0.051805816590786]],[[-9.2300033429638e-05,-0.049286145716906,-0.069154433906078],[-0.0096731530502439,0.016434486955404,0.028915768489242],[-0.072151258587837,-0.057794533669949,0.058419052511454]],[[-0.003090264974162,0.037853881716728,-0.059189505875111],[-0.0061715780757368,-0.044695422053337,-0.1455389559269],[0.027227681130171,-0.066503666341305,-0.01604288443923]],[[-0.030316613614559,-0.021882899105549,-0.011384815908968],[0.011098380200565,0.009434343315661,0.045408848673105],[0.022077213972807,0.041896101087332,0.056220404803753]],[[-0.00083135179011151,0.016068002209067,0.051682643592358],[-0.050142869353294,0.038532145321369,-0.028866104781628],[0.0079186055809259,0.033036828041077,0.022989885881543]],[[-0.0043567400425673,-0.034523010253906,-0.02709829993546],[-0.055117730051279,-0.0079372357577085,-0.016519140452147],[0.036886375397444,-0.03516886010766,0.0048606651835144]],[[0.045693557709455,0.0098224692046642,0.031192004680634],[0.0029153162613511,-0.051172595471144,0.05389640852809],[-0.032003849744797,0.073089651763439,0.064078018069267]],[[-0.042085256427526,0.10925509780645,-0.019284846261144],[-0.0029411250725389,-0.072827026247978,0.027009716257453],[0.034837614744902,-0.092323400080204,-0.032241310924292]],[[-0.00959194265306,-0.015858495607972,-0.031538512557745],[-0.054050993174314,-0.037270676344633,0.01974574662745],[-0.021359959617257,0.026510128751397,0.037570171058178]],[[-0.050055764615536,-0.032849371433258,-0.020187515765429],[-0.11065016686916,0.033516373485327,-0.035358604043722],[0.090062730014324,0.058992307633162,0.039980355650187]],[[-0.03984335064888,0.011591232381761,0.0001930273429025],[0.12306490540504,-0.016710869967937,-0.0053331148810685],[0.17425209283829,-0.06814182549715,-0.032701916992664]],[[-0.0096133193001151,-0.0012718338984996,-0.11056941002607],[0.058549072593451,-0.022562187165022,0.028869669884443],[-0.034236971288919,-0.074582725763321,-0.072470337152481]],[[-0.044627420604229,-0.061916019767523,-0.055939447134733],[-0.021500745788217,0.014431927353144,-0.015301248058677],[0.010173560120165,-0.014999277889729,-0.010125643573701]],[[0.029098046943545,0.020047409459949,0.023582549765706],[-0.010212931782007,-0.013391073793173,0.017111966386437],[-0.037002451717854,-0.0137147475034,0.034458059817553]],[[0.042095541954041,-0.058620281517506,-0.14059048891068],[-0.033965900540352,-0.03392968326807,0.0066274800337851],[0.0013160706730559,0.019925998523831,0.0092121865600348]],[[-0.025906460359693,0.02918971516192,-0.032382685691118],[-0.078152760863304,-0.090201199054718,0.0031993873417377],[0.030494209378958,-4.2870080505963e-05,0.065729200839996]],[[-0.0079910364001989,-0.018317775800824,0.028438916429877],[-0.045448336750269,-0.045266393572092,0.015160800889134],[-0.0067267189733684,-0.012442600913346,-0.01186032500118]],[[-0.051074955612421,0.037110686302185,0.019354997202754],[0.051896795630455,-0.059821866452694,-0.034476924687624],[0.0073395986109972,0.04120109602809,0.066347822546959]],[[-0.017884004861116,-0.035960346460342,0.065501481294632],[0.011883182451129,0.031528532505035,0.031638216227293],[0.036223396658897,0.012926284223795,0.004079039208591]],[[0.0043128565885127,0.024356842041016,-0.11410150676966],[0.0016376790590584,0.029825827106833,-0.051381092518568],[-0.075698629021645,0.0041140145622194,0.015641475096345]],[[0.012435189448297,0.0606624558568,0.0029966242145747],[0.023163855075836,0.0049130572006106,-0.0076651959680021],[-0.012263951823115,-0.0052234805189073,0.058021772652864]],[[-0.019723920151591,0.042329989373684,-0.080514475703239],[0.0087042702361941,0.044902395457029,0.0046040415763855],[-0.05932629480958,-0.031543161720037,-0.017070107161999]],[[-0.012431130744517,-0.042458888143301,-0.0087792137637734],[-0.054144598543644,0.026137385517359,-0.0092826681211591],[-0.058390140533447,-0.073769629001617,0.03048101067543]],[[0.022673161700368,0.02040627039969,-0.023591293022037],[-0.043941006064415,0.0036333079915494,0.0063248239457607],[-0.023473314940929,0.0063021662645042,0.025607334449887]],[[-0.036150775849819,-0.013228273019195,0.082620531320572],[-0.027578853070736,0.0078865038231015,-0.053130865097046],[-0.018276399001479,0.024659194052219,0.02179236151278]],[[0.0073316763155162,0.0011936652008444,0.050406660884619],[-0.04569548740983,-0.055438432842493,-0.031528528779745],[-0.085750415921211,0.044991724193096,0.018517840653658]],[[-0.017164558172226,-0.003183777211234,-0.0059049976989627],[0.029096210375428,0.0069728391245008,0.060040917247534],[-0.038239736109972,-0.046683203428984,-0.070505045354366]],[[-0.080038607120514,-0.064030773937702,0.045753039419651],[-0.049454517662525,0.016057852655649,-0.0097572738304734],[0.055073294788599,0.060776147991419,0.0074414908885956]],[[0.038565788418055,0.047158174216747,0.043768037110567],[0.0026663686148822,0.012861705385149,-0.013772207312286],[0.10269582271576,-0.016100164502859,0.020001942291856]],[[-0.00030603830236942,0.00023939988750499,-0.039732780307531],[0.038034625351429,-0.0083613051101565,-0.020124381408095],[-0.017425552010536,0.036945197731256,-0.012486970052123]],[[-0.01641509309411,-0.017528008669615,-0.055698446929455],[-0.034073367714882,-0.080200918018818,-0.011606184765697],[0.015696324408054,0.028033593669534,0.031173272058368]],[[0.0074406513012946,0.02152656391263,0.036632031202316],[-0.0028322909492999,-0.022718438878655,-0.014056670479476],[0.061746284365654,0.13606548309326,0.013538303785026]],[[0.023354921489954,0.041174404323101,0.045889876782894],[0.019460143521428,-0.047649849206209,0.035721220076084],[-0.015841592103243,-0.047960594296455,0.00095427769701928]],[[-0.046304788440466,0.00055015098769218,0.025107624009252],[-0.048132881522179,-0.097451873123646,-0.041830316185951],[0.012646125629544,-0.11616027355194,-0.051785953342915]],[[0.054020766168833,-0.013142617419362,0.0018648324767128],[-0.0049968459643424,-0.038374237716198,0.033897411078215],[-0.0034322424326092,0.060825612396002,0.081198021769524]],[[-0.026846205815673,-0.046092677861452,0.0071527613326907],[-0.002228839090094,-0.017453679814935,0.047127276659012],[-0.018024703487754,-0.066194005310535,-0.064417794346809]],[[-0.061308521777391,-0.074830017983913,0.029615657404065],[0.025921627879143,0.036401528865099,-0.027773762121797],[0.045812461525202,0.055578600615263,-0.0026941618416458]],[[-0.059897426515818,0.026789788156748,-0.030342377722263],[-0.032504469156265,-0.009720210917294,0.16311459243298],[0.061985548585653,-0.049710217863321,0.090373046696186]],[[0.028736049309373,0.049253348261118,-0.00501349568367],[-0.067953169345856,-0.042979031801224,0.036466918885708],[-0.055878069251776,-0.028348818421364,0.0033083327580243]],[[-0.074408404529095,-0.03783181682229,-0.073723912239075],[-0.079436026513577,-0.013508386909962,0.028834676370025],[-0.063402824103832,-0.018064761534333,-0.025766842067242]],[[-0.046155445277691,0.020536337047815,0.034235756844282],[-0.10780739039183,0.054596859961748,0.08562908321619],[-0.069492004811764,0.027246030047536,-0.018373917788267]],[[0.0037176425103098,-0.066217496991158,-0.074693635106087],[-0.028932882472873,0.014398247934878,0.068914346396923],[0.066896609961987,0.052326656877995,0.034656926989555]],[[0.086246013641357,0.027687534689903,-0.053640637546778],[0.002301559317857,-0.056672241538763,0.0088361827656627],[-0.070296429097652,-0.11855375766754,-0.15430049598217]],[[0.057423628866673,-0.0043220040388405,0.075090788304806],[0.022179327905178,-0.028606422245502,0.032658435404301],[-0.0023549741599709,-0.093419246375561,-0.083094403147697]],[[-0.062366779893637,-0.038775991648436,0.087374590337276],[-0.012050894089043,0.0074091940186918,-0.037813730537891],[0.016200376674533,-0.016671795397997,0.01921309530735]],[[0.035547997802496,-0.0035376190207899,-0.018923867493868],[0.042287155985832,0.13354535400867,0.046110115945339],[-0.041671548038721,0.057345740497112,0.053123276680708]],[[0.045375820249319,0.010256422683597,0.027549652382731],[0.069832466542721,0.016229957342148,0.098413825035095],[-0.12010665237904,-0.059237848967314,-0.12352924793959]],[[-0.0404037758708,-0.0097119025886059,0.024052117019892],[-0.044741749763489,-0.050454273819923,0.021496405825019],[0.0071434108540416,0.039252173155546,-0.042937643826008]],[[0.058905351907015,0.052681282162666,0.085495576262474],[-0.018702559173107,-0.025682635605335,0.014542747288942],[0.046104572713375,-0.057814221829176,0.087870724499226]],[[-0.056457132101059,-0.037607543170452,-0.032045260071754],[0.050855983048677,0.024215415120125,-0.0027689118869603],[-0.01958660967648,-0.023334939032793,0.0063842972740531]],[[-0.10448142141104,-0.0265380628407,-0.0046256221830845],[0.02641187608242,-0.030702540650964,-0.068783842027187],[-0.037344679236412,-0.12422206997871,-0.089768201112747]],[[-0.07623303681612,-0.036832865327597,-0.053899854421616],[-0.0065162628889084,0.078014872968197,-0.038079440593719],[0.05935525521636,-0.017534736543894,0.096055239439011]],[[0.0033017201349139,0.052892088890076,0.078122012317181],[0.015061328187585,-0.036773141473532,-0.0031318918336183],[-0.052421301603317,0.005547218490392,0.031641345471144]],[[-0.0047458657063544,0.026755804196,-0.053267732262611],[-0.054505661129951,-0.011637368239462,-0.025640802457929],[-0.070804320275784,0.020657626911998,0.050503365695477]],[[0.010299979709089,-0.06121850758791,-0.034423232078552],[-0.042878191918135,-0.020420398563147,-0.0078560169786215],[-0.032080218195915,0.059637602418661,0.018120892345905]],[[-0.013377367518842,0.049981083720922,0.05752993747592],[-0.013201665133238,0.03415485098958,0.076559081673622],[0.0098471408709884,0.074087463319302,0.027907842770219]],[[0.076675824820995,0.059264868497849,-0.0086867827922106],[-0.057707257568836,-0.034198813140392,0.016233252361417],[-0.030759638175368,0.017155921086669,0.03958410769701]],[[0.028787449002266,-0.074781455099583,-0.040204230695963],[0.028677992522717,-0.016445159912109,-0.07372734695673],[-0.035124041140079,0.0046813157387078,-0.059782098978758]],[[-0.081625938415527,-0.083317957818508,-0.058279227465391],[0.0018140260362998,-0.0081905862316489,0.00028746141470037],[0.026558568701148,0.0049578980542719,-0.012722379527986]],[[-0.030902480706573,0.013336914591491,0.039481922984123],[0.02728215046227,0.023870913311839,0.0066959373652935],[-0.024046691134572,0.079633221030235,0.042580049484968]],[[-0.071131937205791,0.0093375751748681,0.024828804656863],[0.035144176334143,0.049664821475744,-0.02439147233963],[0.036678340286016,0.1157955005765,0.057539768517017]],[[-0.11236590147018,-0.048266835510731,-0.028804358094931],[-0.0013430067338049,-0.082887828350067,-0.084377974271774],[-0.021607760339975,0.10068666934967,0.035292942076921]],[[0.044505178928375,0.07466547191143,-0.015767611563206],[-0.026743952184916,0.056010592728853,0.00038872900768183],[0.0014974317746237,-0.044880375266075,-0.037378314882517]],[[-0.00086733372882009,0.0014233398251235,0.02423669397831],[0.051092576235533,0.046856887638569,0.041079755872488],[0.017657971009612,-0.010925464332104,0.054669518023729]],[[-0.071890957653522,-0.033131785690784,0.020788786932826],[-0.0358458571136,-0.066615425050259,0.041144005954266],[0.058364726603031,0.035961642861366,-0.042028430849314]],[[-0.048043061047792,0.0080450288951397,-0.012386735528708],[-0.059842873364687,-0.01141042727977,-0.071312867105007],[-0.02697310782969,0.073237478733063,0.050426293164492]],[[0.024117076769471,0.013081327080727,0.0065444577485323],[-0.0073363273404539,-0.052647490054369,-0.076779052615166],[-0.011133203282952,-0.027307203039527,-0.032380606979132]],[[-0.024475807324052,-0.010176738724113,0.011251075193286],[0.01645646058023,0.044304322451353,-0.030075993388891],[0.014088029973209,-0.016600571572781,-0.00014978888793848]],[[-0.031189497560263,0.046593893319368,0.042363580316305],[0.088442966341972,-0.061442706733942,-0.0087162600830197],[0.10152432322502,-0.013336725533009,-0.092183984816074]],[[0.038833864033222,-0.019032493233681,-0.038830827921629],[-0.083531878888607,-0.0038532747421414,-0.0069057918153703],[0.053146783262491,0.071038663387299,-0.083515904843807]],[[0.015654725953937,0.062779046595097,0.023979796096683],[0.036756113171577,0.042226638644934,0.011899725534022],[0.015068095177412,0.021672843024135,0.043771810829639]],[[-0.011780837550759,0.052919521927834,0.054248739033937],[-0.077344991266727,-0.030897716060281,-0.070105589926243],[0.050183851271868,-0.039805799722672,0.050950556993484]],[[0.050146363675594,-0.1013982668519,-0.076462283730507],[-0.011354827322066,-0.054554410278797,0.026362018659711],[0.05494849383831,0.067529149353504,0.012081642635167]],[[0.078841634094715,0.043617691844702,-0.024601232260466],[0.0068487068638206,0.013660846278071,-0.027494069188833],[0.032576866447926,0.012778365053236,-0.035089123994112]],[[0.049981255084276,0.085274636745453,0.10613520443439],[-0.0088878581300378,-0.052425235509872,0.019673638045788],[-0.087828263640404,-0.026160186156631,0.051096633076668]],[[-0.035347227007151,-0.1174002289772,-0.051746882498264],[-0.0020854799076915,0.05902186781168,0.042896691709757],[0.082656137645245,0.026405170559883,0.079112336039543]],[[0.012108125723898,-0.070716887712479,-0.085123345255852],[0.10875920206308,0.065838493406773,0.024057006463408],[0.021518353372812,0.097094394266605,0.019526647403836]],[[0.030177703127265,0.044288396835327,-0.11029195785522],[0.075391307473183,0.02940234541893,-0.035613011568785],[0.015120514668524,0.0085057374089956,-0.03357408195734]],[[-0.019732940942049,0.0045970706269145,-0.031506810337305],[-0.022589916363358,-0.073567368090153,-0.025057714432478],[-0.013832548633218,-0.063318490982056,0.051663741469383]],[[0.021074978634715,-0.095691487193108,-0.11203274875879],[-0.034390904009342,0.070197492837906,0.019841378554702],[0.060528058558702,0.0090733896940947,0.011947800405324]],[[0.017008880153298,-0.074427880346775,-0.071358658373356],[0.0029343110509217,-0.076254941523075,-0.0030681365169585],[0.036575257778168,0.06731965392828,-0.086221382021904]],[[0.027913184836507,-0.067494012415409,-0.0011622393503785],[0.080391816794872,0.016051733866334,-0.065243929624557],[-0.026090733706951,-0.036143593490124,-0.014103167690337]],[[-0.002448721555993,0.0093747721984982,0.07241702824831],[-0.038540210574865,0.030872073024511,0.082275673747063],[0.0050464360974729,0.011755045503378,-0.052720908075571]],[[-0.039324190467596,-0.023469524458051,0.023559546098113],[-0.11160940676928,0.056323897093534,0.057836558669806],[-0.014838124625385,0.062658049166203,0.074779167771339]]],[[[-0.029668159782887,-0.079752162098885,-0.012781887315214],[0.032218985259533,-0.10118145495653,-0.13885636627674],[-0.084854304790497,0.010727887973189,-0.062055729329586]],[[-0.1183220371604,-0.0096066882833838,0.14112508296967],[0.058647587895393,0.066130101680756,0.03027774952352],[0.072624891996384,0.086142636835575,0.041637420654297]],[[-0.11593867093325,-0.018650179728866,0.037078864872456],[0.081149138510227,0.091645523905754,0.088276326656342],[-0.086842186748981,0.088710017502308,-0.048808690160513]],[[0.06552267819643,0.0055949650704861,-0.043671179562807],[0.0032003005035222,-0.073420733213425,0.015182805247605],[0.042764518409967,0.0014878211077303,-0.094555787742138]],[[-0.16345171630383,-0.012992630712688,0.018831191584468],[-0.11811641603708,0.070443883538246,0.10311120003462],[0.16213332116604,-0.055978950113058,0.013326995074749]],[[0.018797473981977,-0.030885966494679,-0.019444430246949],[-0.13499779999256,-0.2273296713829,-0.081171289086342],[0.085336990654469,0.0052103851921856,-0.072179026901722]],[[0.082340106368065,0.033355910331011,-0.039637420326471],[-0.04155271500349,0.061752080917358,0.041942339390516],[0.13136000931263,-0.044638652354479,-0.18333749473095]],[[-0.078913576900959,-0.046674601733685,0.047043677419424],[-0.1417547762394,-0.12789542973042,-0.093752473592758],[-0.03854801133275,0.22020193934441,0.18947914242744]],[[-0.043929442763329,-0.014768179506063,-0.057599950581789],[-0.05110016092658,-0.033341690897942,0.038240220397711],[-0.056638136506081,0.081220850348473,0.0032904834952205]],[[-0.028028206899762,0.022760689258575,-0.030775943771005],[0.071645431220531,0.034561797976494,-0.0091067058965564],[-0.054995778948069,-0.059868231415749,-0.070956341922283]],[[-0.11465260386467,-0.019147522747517,0.0023416036274284],[-0.090825870633125,-0.025886757299304,0.031935125589371],[-0.13958603143692,-0.228510171175,0.049827251583338]],[[-0.076779641211033,-0.11301216483116,0.060046382248402],[0.13378541171551,0.0021324423141778,-0.021104341372848],[0.065740466117859,0.06954488158226,-0.099966280162334]],[[0.061327550560236,0.055706493556499,0.079186201095581],[0.0016390631208196,-0.0045632557012141,-0.083370342850685],[0.0093629332259297,-0.18083029985428,0.015460791997612]],[[-0.10411205887794,-0.072719193994999,-0.065743662416935],[0.094747327268124,0.0051011084578931,-0.096502937376499],[0.03981140255928,0.040539108216763,-0.010242147371173]],[[-0.11724729090929,-0.033542398363352,0.047014925628901],[0.12238206714392,0.031308434903622,-0.18610575795174],[-0.0025710922200233,0.021517021581531,0.12209480255842]],[[0.026393938809633,-0.14120188355446,-0.063930839300156],[0.11082285642624,0.016956565901637,0.10171916335821],[-0.088347375392914,-0.17009146511555,-0.089704684913158]],[[-0.13855336606503,-0.054609525948763,-0.086280643939972],[0.038645435124636,-0.096753269433975,-0.2980130314827],[0.006685899104923,0.049852337688208,0.079817123711109]],[[-0.035447560250759,0.014764661900699,0.083124786615372],[0.001538664335385,-0.076041206717491,-0.13496117293835],[-0.017637886106968,0.092483572661877,0.095752440392971]],[[-0.1095949858427,-0.090531751513481,0.049324560910463],[-0.15028674900532,-0.055590905249119,-0.11530290544033],[-0.15123984217644,-0.058902770280838,-0.04336104914546]],[[0.01756158657372,-0.10855626314878,-0.14680325984955],[-0.11657721549273,-0.032415118068457,-0.014457472600043],[0.12839391827583,0.17080153524876,-0.0073299934156239]],[[-0.030203761532903,0.042310673743486,0.036781437695026],[-0.053476262837648,-0.098369158804417,-0.052391692996025],[-0.10997030138969,-0.13604021072388,0.078376702964306]],[[-0.13042543828487,0.040731135755777,-0.077072963118553],[0.0057227597571909,0.21212755143642,0.20265927910805],[0.092574000358582,0.024112410843372,0.0062262993305922]],[[-0.0049787689931691,-0.089498713612556,0.048434041440487],[-0.16182155907154,-0.1154745593667,0.092568643391132],[0.046138323843479,0.041237749159336,0.052458584308624]],[[0.071605674922466,-0.0027870654594153,0.12400312721729],[0.11758299916983,0.045607503503561,0.062240350991488],[0.021619785577059,-0.09662813693285,-0.24164515733719]],[[0.027200041338801,-0.016965389251709,-0.074446864426136],[0.23451760411263,0.0023285520728678,-0.14869467914104],[0.078711070120335,0.045532207936049,0.1339131295681]],[[0.025797443464398,0.016159977763891,-0.11171595007181],[0.073449909687042,0.023482911288738,-0.036218337714672],[-0.0096393879503012,-0.048216074705124,-0.092210866510868]],[[0.069742031395435,-0.026391072198749,-0.10034504532814],[0.003303445642814,0.018455138429999,0.039806082844734],[-0.081339478492737,0.017843816429377,-0.0062588066793978]],[[-0.080840192735195,0.090179555118084,0.15457539260387],[-0.1929956972599,-0.04899375513196,0.074691273272038],[0.14463596045971,-0.037852600216866,-0.06013648211956]],[[-0.0075153172947466,0.0057207867503166,-0.11624802649021],[-0.0014432542957366,-0.097649365663528,-0.11457539349794],[-0.042925406247377,-0.16178022325039,-0.1707398891449]],[[0.1339352875948,-0.06475418061018,-0.06339904665947],[0.038927797228098,0.022334281355143,-0.048021446913481],[-0.032082546502352,-0.074319899082184,-0.020534690469503]],[[0.12788742780685,0.051480155438185,0.043045718222857],[0.028085775673389,-0.17352329194546,0.11165923625231],[0.0082215145230293,0.051914241164923,0.024091668426991]],[[0.048699699342251,0.021659819409251,0.075889132916927],[-0.060721766203642,-0.10220479220152,-0.081236571073532],[-0.019135972484946,-0.1279511153698,0.043789237737656]],[[-0.093343451619148,-0.011957598850131,0.16525568068027],[-0.040936592966318,-0.057314243167639,-0.11748094111681],[-0.076931312680244,0.038076419383287,0.23546707630157]],[[0.011100699193776,-0.083851486444473,0.023779945448041],[-0.085547484457493,0.0040351306088269,0.038380514830351],[-0.075440406799316,-0.16331295669079,-0.022346470504999]],[[0.049023631960154,-0.080061562359333,0.043570164591074],[-0.064704984426498,-0.1350010484457,0.0056639974936843],[-0.0030585175845772,-0.0047143059782684,0.13551931083202]],[[-0.12114176899195,0.11385101824999,0.23204363882542],[-0.058251526206732,0.077978849411011,0.022908687591553],[-0.072299309074879,0.036224603652954,0.13840928673744]],[[0.047463405877352,0.00080129428533837,-0.091061271727085],[0.14558032155037,0.022547049447894,0.045704364776611],[0.015837289392948,-0.06898058950901,-0.017052840441465]],[[-0.060600772500038,-0.078888431191444,-0.037524953484535],[-0.0012707366840914,-0.13565795123577,-0.018980614840984],[0.14029993116856,-0.0081903785467148,0.061449468135834]],[[-0.10205601155758,-0.03025484457612,-0.045536518096924],[0.062237281352282,0.093297816812992,0.043025743216276],[-0.061840083450079,-0.190957903862,-0.12445835769176]],[[0.017570018768311,-0.076487712562084,-0.13340982794762],[-0.10704682022333,-0.051830552518368,0.090452931821346],[-0.11962791532278,-0.057841323316097,-0.065318383276463]],[[-0.027075937017798,-0.063192866742611,0.058734372258186],[-0.133978754282,-0.11713464558125,0.061381012201309],[0.037154961377382,-0.053152401000261,-0.024072801694274]],[[0.013541256077588,0.077395536005497,0.098372012376785],[-0.19966495037079,-0.089012816548347,0.016347905620933],[0.033155709505081,0.13747431337833,0.04723310098052]],[[-0.069087244570255,-0.01964165084064,-0.036110654473305],[0.083885967731476,-0.048062860965729,0.05146024748683],[-0.025305556133389,-0.2782478928566,-0.18155290186405]],[[-0.0017870084848255,0.043536856770515,-0.036100529134274],[0.0093658221885562,-0.05737679079175,-0.04061010107398],[-0.025468641892076,0.010586493648589,0.0062316856347024]],[[-0.15064334869385,0.047057010233402,0.084832541644573],[0.15141361951828,0.17898578941822,-0.019024124369025],[-0.080255500972271,0.069634057581425,0.03444965928793]],[[-0.047629475593567,-0.08604259043932,-0.070873089134693],[0.18151968717575,0.069681987166405,-0.050339221954346],[-0.028188355267048,0.022307805716991,-0.040134828537703]],[[0.089092701673508,0.036022361367941,-0.10580901056528],[0.1656002253294,-0.025643324479461,-0.093769811093807],[0.029772369191051,0.047835685312748,0.073239415884018]],[[-0.020835936069489,-0.10682816058397,-0.035797484219074],[0.34450963139534,-0.05744693800807,-0.28693145513535],[-0.031294234097004,-0.0036441069096327,0.030080545693636]],[[0.14041192829609,0.0092624956741929,-0.059923280030489],[-0.17837582528591,-0.089863024652004,-0.0016606003046036],[-0.032416127622128,-0.041609186679125,0.096905589103699]],[[0.065334759652615,-0.010348794981837,-0.015710951760411],[-0.015192029066384,0.010385380126536,0.04938393458724],[-0.052164666354656,-0.065399087965488,0.050100259482861]],[[0.2358001768589,-0.052321217954159,-0.087174095213413],[0.018103580921888,-0.029753971844912,-0.090527385473251],[-0.16598351299763,0.028981156647205,0.015853954479098]],[[-0.019798615947366,0.16127189993858,0.0016360401641577],[-0.022174343466759,0.033774722367525,-0.026271276175976],[0.140998467803,0.025910163298249,-0.15094810724258]],[[-0.015413259156048,-0.08236288279295,-0.049501907080412],[0.03336501121521,-0.045048389583826,-0.029439089819789],[-0.0029045739211142,-0.025996908545494,-0.017788289114833]],[[0.099186822772026,0.11003672331572,-0.00050007569370791],[-0.093338847160339,-0.026781674474478,0.010241372510791],[0.033672068268061,0.059116590768099,-0.026237141340971]],[[-0.04244863986969,0.0057913674972951,0.0099385119974613],[0.013893190771341,-0.11847425252199,-0.17900811135769],[-0.0035513963084668,0.11150450259447,-0.016092432662845]],[[0.055540319532156,-0.022428326308727,-0.10252635926008],[-0.0097836228087544,0.0048649520613253,0.0022219310048968],[0.06663303822279,-0.022310556843877,-0.063000991940498]],[[-0.088167637586594,0.093031339347363,0.073163561522961],[-0.042167037725449,0.039839133620262,0.016800401732326],[0.017138782888651,0.047385104000568,-0.017724877223372]],[[0.076337903738022,-0.0035155799705535,-0.10670138150454],[0.01333425194025,-0.12137647718191,-0.057462386786938],[-0.16894613206387,-0.25022262334824,-0.24588897824287]],[[-0.028821833431721,0.026666510850191,-0.0094352373853326],[-0.0044267615303397,-0.10041780769825,-0.15405118465424],[-0.1348482221365,-0.043361488729715,0.073290333151817]],[[0.090026706457138,0.083353437483311,0.13978900015354],[-0.024621134623885,-0.07242027670145,-0.17179995775223],[-0.079448670148849,0.028855374082923,-0.11869509518147]],[[-0.017305418848991,0.031464751809835,-0.02080193720758],[0.059787165373564,-0.0055692289024591,0.053849812597036],[0.0035765662323684,-0.08886381983757,-0.00012583205534611]],[[0.11409084498882,0.13278180360794,-0.06247790157795],[-0.1557070761919,-0.18136242032051,0.068816907703876],[0.089105613529682,-0.065822549164295,-0.14706605672836]],[[0.0088864183053374,-0.074269540607929,-0.063758708536625],[0.027215715497732,0.033345598727465,0.11231000721455],[0.018544349819422,-0.054796941578388,0.0098416320979595]],[[0.024077543988824,-0.18056780099869,0.082187257707119],[-0.049579560756683,-0.10804701596498,0.015557142905891],[0.12938234210014,0.10623124241829,0.060310266911983]],[[0.20896404981613,0.14409068226814,-0.09065380692482],[-0.15167428553104,-0.022054517641664,-0.013701910153031],[-0.017473423853517,0.013505034148693,-0.050464481115341]],[[-0.046649396419525,-0.078908406198025,-0.024305598810315],[-0.074155353009701,-0.018378226086497,0.060740675777197],[0.085433624684811,-0.058823999017477,-0.063948072493076]],[[-0.0080109257251024,-0.016118366271257,-0.10624779015779],[0.040453366935253,0.068149000406265,0.18091557919979],[-0.0088837472721934,-0.10218404233456,-0.01956912688911]],[[-0.018407857045531,-0.028817215934396,0.066464759409428],[-0.096032358705997,-0.097567670047283,-0.073515467345715],[0.029423611238599,0.1105343028903,0.064586140215397]],[[-0.0013849862152711,0.26283228397369,0.028587076812983],[-0.010139308869839,-0.011765977367759,-0.091219581663609],[-0.0056367325596511,-0.054394293576479,0.0046622874215245]],[[-0.022665010765195,-0.059891387820244,-0.081663623452187],[0.0096818264573812,-0.0022453914862126,0.04997656494379],[0.16566605865955,-0.012756831943989,-0.13445675373077]],[[-0.14057485759258,-0.062317434698343,-0.086923874914646],[-0.089438177645206,-0.047993313521147,0.23883220553398],[0.15674011409283,0.16699117422104,-0.065975859761238]],[[0.090002790093422,-0.20979098975658,-0.1690713763237],[0.0051239146851003,0.027128208428621,0.16245932877064],[-0.0073199840262532,-0.031276807188988,0.023140026256442]],[[-0.26281517744064,0.025333970785141,0.24984154105186],[-0.10965330898762,-0.030659943819046,-0.062829591333866],[-0.12132728099823,-0.053159676492214,-0.12028996646404]],[[0.012436383403838,-0.0041606361046433,0.047081410884857],[-0.055621843785048,-0.016120148822665,0.040846724063158],[-0.049800451844931,0.0076887048780918,0.026840336620808]],[[0.08301630616188,-0.0073208473622799,0.0065816366113722],[0.053251620382071,0.014237207360566,-0.10750516504049],[-0.016481030732393,-0.0053792614489794,-0.049909185618162]],[[-0.044729128479958,-0.11703775078058,-0.069504544138908],[0.04196659475565,0.11031145602465,0.065006107091904],[0.19495598971844,0.30750834941864,-0.0057312152348459]],[[-0.17907604575157,-0.075935311615467,-0.045351207256317],[-0.022147512063384,0.042411629110575,0.1587045788765],[-0.11672015488148,-0.093763619661331,-0.20161132514477]],[[-0.044478353112936,0.013075113296509,0.031607683748007],[-0.033349946141243,0.012220800854266,0.014465192332864],[-0.038255214691162,-0.003146761097014,0.0092360842972994]],[[-0.042946346104145,0.073675855994225,-0.056207273155451],[-0.19239780306816,-0.12658548355103,-0.047182980924845],[0.061998080462217,0.12625543773174,-0.097517788410187]],[[-0.043125323951244,-0.0032947051804513,-0.028290277346969],[-0.05051650851965,0.029507970437407,-0.065856635570526],[-0.13149704039097,0.050687503069639,-0.01548913307488]],[[-0.061011824756861,-0.051289480179548,-0.028231408447027],[-0.070807404816151,-0.033520136028528,-0.16617718338966],[-0.020008563995361,0.05444011092186,0.13750430941582]],[[0.18535287678242,0.12694245576859,0.035596791654825],[0.01728636585176,-0.076085098087788,-0.088017806410789],[-0.097541056573391,0.0017099968390539,0.0022233834024519]],[[-0.029025055468082,-0.038899000734091,0.025375900790095],[-0.087003469467163,-0.16822308301926,-0.0079780062660575],[-0.01782257296145,0.26870766282082,0.23128119111061]],[[0.055704683065414,0.051726169884205,-0.07690791785717],[0.035620804876089,-0.079633258283138,0.066896468400955],[-0.052346266806126,0.012257948517799,0.064619392156601]],[[-0.19974115490913,-0.092536494135857,0.1901341676712],[0.40816763043404,0.069299846887589,-0.10765327513218],[0.0331691801548,-0.024837512522936,-0.15264686942101]],[[0.06273477524519,-0.020877508446574,-0.025485625490546],[0.10119090974331,-0.030367342755198,-0.15936563909054],[-0.0061122090555727,0.11782138049603,0.056491360068321]],[[-0.10085864365101,0.010624889284372,-0.061720047146082],[-0.072985306382179,-0.0099033089354634,0.031756430864334],[-0.0072037614881992,0.015776006504893,0.20673061907291]],[[-0.099210172891617,0.051712829619646,0.026096656918526],[0.29265281558037,0.02961840108037,0.092500232160091],[-0.089089587330818,-0.080432467162609,-0.18294139206409]],[[-0.19911852478981,-0.034735448658466,0.0027973942924291],[0.024798085913062,-0.054039865732193,-0.113818988204],[0.092182822525501,-0.092667497694492,-0.081986241042614]],[[0.12887468934059,-0.048418320715427,0.0098167527467012],[0.082845591008663,0.074279494583607,0.071170188486576],[-0.021863084286451,-0.0065496596507728,0.076902143657207]],[[-0.017562657594681,-0.05218219012022,-0.057667907327414],[-0.019317401573062,0.0371756516397,-0.037517249584198],[-0.11075109243393,0.11745724081993,0.25004249811172]],[[0.071328185498714,0.019387686625123,-0.020943267270923],[-0.059768110513687,-0.013745133765042,0.024998020380735],[0.033661633729935,-0.078911162912846,-0.090205028653145]],[[-0.030227433890104,0.032467193901539,-0.035655975341797],[-0.085372298955917,-0.13880489766598,-0.057340543717146],[-0.18653191626072,0.0052312631160021,0.29994815587997]],[[0.13639955222607,0.088517673313618,0.041881415992975],[-0.0041884328238666,0.18198186159134,0.057903397828341],[-0.052992835640907,-0.087288729846478,-0.014551091007888]],[[-0.048396345227957,-0.10446804016829,-0.068904742598534],[-0.067044422030449,-0.067884922027588,0.022619184106588],[0.075792945921421,0.2468186467886,-0.051453236490488]],[[-0.094979278743267,-0.14971233904362,-0.014892587438226],[0.047028116881847,-0.020532676950097,0.034251295030117],[0.032374884933233,0.013834460638463,-0.0029576122760773]],[[-0.02970721386373,0.0038242277223617,0.058206990361214],[-0.0088985878974199,-0.042958654463291,0.021173434332013],[-0.1390545219183,-0.078555695712566,-0.072834454476833]],[[-0.26543101668358,0.0012391830096021,0.10734941810369],[-0.034677121788263,0.0034893814008683,0.06407692283392],[-0.19153143465519,0.00066769775003195,0.079337447881699]],[[0.2598797082901,-0.07996229827404,-0.02336560934782],[0.086840815842152,-0.075365364551544,0.072529710829258],[-0.1194531917572,-0.0747010409832,-0.0094792051240802]],[[0.12151673436165,0.034439489245415,0.076524145901203],[0.22594420611858,0.13140785694122,-0.033317647874355],[0.11141286790371,-0.011119475588202,-0.054035883396864]],[[-0.11674290150404,-0.020500775426626,0.021124729886651],[0.16438390314579,0.00094463175628334,0.04789786413312],[0.012832099571824,-0.079092413187027,-0.030487827956676]],[[-0.088081285357475,0.010689243674278,-0.033715404570103],[-0.011788935400546,-0.0074858041480184,-0.093388572335243],[-0.03353488445282,0.096570052206516,0.018301777541637]],[[-0.040252681821585,0.061696138232946,0.098209604620934],[-0.037993542850018,-0.056391168385744,-0.084714375436306],[0.083833135664463,0.014447565190494,-0.083636239171028]],[[0.011184926144779,-0.048734605312347,0.066795438528061],[-0.031925782561302,-0.034543868154287,0.1104873791337],[0.045297831296921,-0.086769916117191,-0.030196074396372]],[[-0.25723308324814,-0.19034639000893,-0.10373533517122],[-0.018080107867718,-0.080254845321178,-0.063877135515213],[-0.052991636097431,0.059968050569296,-0.011067297309637]],[[-0.017442660406232,0.025817582383752,0.035604521632195],[-0.10627461969852,-0.013441099785268,0.13108831644058],[0.078503616154194,0.14362396299839,-0.03993809223175]],[[-0.13130024075508,-0.0068085337989032,-0.012054400518537],[0.022236319258809,-0.066856049001217,0.091818064451218],[-0.065774656832218,-0.13053447008133,-0.19294355809689]],[[-0.09785370528698,-0.010426366701722,0.024740908294916],[-0.0011396899353713,-0.16155810654163,-0.035936322063208],[0.041757427155972,0.034896146506071,0.16170030832291]],[[0.054320573806763,0.024990500882268,0.0078754918649793],[-0.13882778584957,0.060432463884354,0.085708454251289],[-0.0056485659442842,0.0023652941454202,-0.020649772137403]],[[0.087754480540752,0.042767472565174,-0.0091107860207558],[0.0053496151231229,-0.14766815304756,-0.0057706222869456],[-0.019254768267274,0.07661622017622,0.13155789673328]],[[0.04175691306591,0.05424165725708,0.056993760168552],[0.009184698574245,-0.035542473196983,0.0015976643189788],[-0.042207717895508,-0.035810012370348,-0.050979133695364]],[[0.025199230760336,0.068839900195599,0.013676878996193],[0.15981058776379,0.11688471585512,0.17473727464676],[-0.078725285828114,-0.041312333196402,-0.034110516309738]],[[0.12408969551325,-0.041987989097834,-0.1877808123827],[0.21243591606617,0.081967681646347,0.0035886999685317],[-0.19573616981506,-0.02346022054553,-0.029783779755235]],[[0.067659229040146,0.030688786879182,-0.021736886352301],[-0.034941010177135,-0.086367912590504,-0.10047577321529],[-0.10495376586914,-0.033810820430517,-0.026982950046659]],[[-0.045651607215405,0.049790184944868,0.11442243307829],[0.10241020470858,0.024369260296226,0.024925829842687],[-0.11129582673311,0.044558484107256,0.053720608353615]],[[-0.01588468067348,-0.17783446609974,0.0074837584979832],[0.018641337752342,0.086156733334064,0.132230296731],[-0.09745892137289,-0.011609835550189,0.10009717941284]],[[-0.079804517328739,0.042602479457855,0.053234096616507],[-0.049476083368063,0.021142235025764,-0.08100301027298],[-0.12301269173622,-0.10999006778002,-0.061944477260113]],[[-0.078023374080658,-0.033522926270962,0.046378996223211],[0.10267461836338,-0.047748789191246,-0.17388857901096],[0.079868607223034,-0.026138357818127,-0.14748230576515]],[[-0.030455091968179,-0.053998589515686,-0.038681365549564],[0.13802136480808,0.18283678591251,0.013234339654446],[-0.012005996890366,-0.029167361557484,-0.024438362568617]],[[0.21780756115913,0.072887428104877,0.065287560224533],[-0.0055449795909226,-0.058222498744726,0.039142366498709],[-0.11699924618006,-0.075861886143684,-0.013169433921576]],[[-0.075886838138103,0.1464511603117,0.13473679125309],[0.031443852931261,0.087398126721382,0.030654054135084],[-0.0014631712110713,-0.034536313265562,0.019297834485769]],[[-0.021608047187328,-0.0037247645668685,-0.060924738645554],[0.0095365140587091,0.088680572807789,0.060373600572348],[0.045153211802244,0.074550285935402,-0.041674941778183]],[[-0.031130513176322,0.058269493281841,-0.05642107874155],[-0.089172385632992,-0.16415496170521,-0.0812708735466],[-0.13171510398388,-0.25207549333572,0.0077601606026292]],[[-0.024506339803338,0.013664626516402,0.0033196089789271],[-0.012352963909507,-0.032187592238188,-0.028118319809437],[-0.015203161165118,-0.05505483224988,0.0091995038092136]],[[0.067251481115818,0.081920512020588,-0.15470220148563],[-0.037626005709171,-0.03105191141367,0.035712487995625],[0.048400290310383,0.035205282270908,0.049561899155378]],[[-0.020296473056078,-0.080349765717983,0.01934839040041],[0.13398657739162,0.041897498071194,0.036897908896208],[-0.085502706468105,-0.10856717824936,-0.0841154307127]],[[-0.093502782285213,0.021941659972072,-0.079542405903339],[0.00042608991498128,0.0075419577769935,-0.046966630965471],[0.05251294746995,-0.02046169899404,0.14558267593384]],[[-0.12819334864616,-0.087939858436584,-0.020474458113313],[-0.19943024218082,-0.1645555049181,0.13799802958965],[-0.025800459086895,-0.027232652530074,-0.014327550306916]]],[[[-0.027313580736518,-0.063681825995445,-0.021373117342591],[0.0021933361422271,-0.0069916415959597,0.014178970828652],[0.030881609767675,0.0098360246047378,-0.090659648180008]],[[0.053841784596443,0.06871971487999,0.0041546220891178],[-0.048507515341043,0.059807561337948,0.075379207730293],[-0.024808429181576,-0.12284390628338,-0.0010447556851432]],[[-0.075303599238396,0.068112447857857,0.049528017640114],[0.089078739285469,-0.15339931845665,0.053467079997063],[0.082505278289318,0.036973971873522,-0.057339329272509]],[[-0.10462254285812,0.082809634506702,0.038664199411869],[-0.083750508725643,-0.01849858649075,0.028724104166031],[-0.12528046965599,-0.1659209728241,0.12086337059736]],[[-0.048794236034155,-0.0035687796771526,-0.037746120244265],[0.052705980837345,-0.0037610551808029,0.011283887550235],[-0.0099371550604701,-0.089810386300087,0.073231898248196]],[[-0.0024590003304183,-0.01452655903995,-0.10108758509159],[-0.0030076936818659,0.033203195780516,0.078466780483723],[-0.015930192545056,-0.02065871655941,-0.080068178474903]],[[0.072632566094398,0.041891779750586,-0.060470931231976],[-0.0077332612127066,0.069283328950405,-0.070850305259228],[0.031024156138301,0.075822122395039,0.023822918534279]],[[0.032852802425623,0.033947799354792,-0.025948626920581],[0.022077007219195,-0.0050693736411631,0.14599804580212],[0.047282140702009,-0.09711055457592,0.0013720211572945]],[[0.023076361045241,-0.010265867225826,0.018850523978472],[0.0042581274174154,-0.04907638207078,-0.094568476080894],[-0.079462796449661,-0.048623032867908,0.015375797636807]],[[0.003792395349592,-0.090247444808483,-0.04722785204649],[-0.078471444547176,-0.026259243488312,-0.016517356038094],[0.036476373672485,0.021720333024859,-0.047745831310749]],[[0.0083647528663278,-0.044309437274933,0.041592601686716],[-0.044551331549883,-0.085822649300098,0.11193003505468],[-0.015802739188075,0.04327953979373,0.09437157958746]],[[-0.11179055273533,-0.10821227729321,0.10429474711418],[-0.0049879681318998,-0.015531735494733,-0.10099399089813],[0.02833378687501,-0.0079137068241835,-0.012414420023561]],[[-0.019146591424942,-0.13306865096092,-0.061866756528616],[-0.033064272254705,-0.0011681304313242,-0.057432025671005],[-0.068592093884945,-0.0097738215699792,0.0053137140348554]],[[-0.019988434389234,-0.061153795570135,-0.034430745989084],[-0.0010604107519612,-0.043008513748646,-0.020572258159518],[0.092377282679081,-0.12670662999153,-0.03235249966383]],[[0.03175675496459,0.021537072956562,0.044106401503086],[-0.098834060132504,0.034413862973452,0.023019086569548],[0.027583261951804,-0.02012518234551,-0.064084857702255]],[[-0.042192950844765,-0.0026739817112684,-0.010254064574838],[-0.068637020885944,0.0052377451211214,-0.051015742123127],[-0.063351675868034,0.048480965197086,0.060032982379198]],[[0.018596556037664,-0.062615893781185,0.013840635307133],[-0.006138595752418,-0.084634117782116,-0.070066273212433],[0.012715605087578,-0.043720487505198,0.10854405164719]],[[0.077272079885006,-0.016013817861676,0.012913862243295],[0.047566622495651,0.018607221543789,-0.041272185742855],[-0.0083778845146298,0.017921086400747,-0.05953474342823]],[[-0.054867580533028,-0.036972720175982,-0.0018574454588816],[0.045465383678675,0.0054852468892932,-0.02188454195857],[0.042402323335409,0.029344327747822,0.040613558143377]],[[-0.03897338733077,-0.087726145982742,-0.0055834106169641],[0.0001432879071217,-0.024146653711796,-0.0618014074862],[-0.054554186761379,0.025692192837596,-0.14536900818348]],[[-0.0296894274652,0.03668562695384,-0.036249853670597],[0.036109380424023,0.074405625462532,0.0098557602614164],[-0.0055932817049325,0.039093617349863,-0.033255372196436]],[[-0.01015535928309,-0.038766175508499,-0.14769318699837],[-0.064075693488121,0.010306596755981,0.023551760241389],[-0.12973430752754,-0.14194495975971,0.019134281203151]],[[0.026491986587644,-0.010728733614087,0.05264526233077],[0.044151201844215,-0.0091263754293323,-0.023092217743397],[0.04735466465354,-0.071554012596607,-0.05556982383132]],[[0.075426332652569,0.028712920844555,0.025191845372319],[-0.0412482842803,0.053092166781425,0.050691328942776],[0.0034257606603205,-0.068058423697948,-0.040000781416893]],[[-0.067131072282791,0.034831110388041,0.053483404219151],[-0.16618649661541,-0.084184564650059,-0.040703773498535],[-0.061726823449135,-0.084307707846165,-0.054964277893305]],[[0.074153058230877,-0.018885167315602,0.027277564629912],[0.094329871237278,0.09165333211422,-0.010722615756094],[0.024383183568716,0.10806491971016,-0.032471772283316]],[[0.049308694899082,0.082053475081921,-0.052739705890417],[0.059670716524124,0.015895051881671,-0.07646369934082],[0.073631718754768,-0.059682112187147,-0.053339213132858]],[[0.0045935036614537,-0.029894074425101,-0.062807582318783],[0.021018257364631,-0.053160101175308,-0.082966685295105],[-0.012417089194059,-0.00036924879532307,0.0047592036426067]],[[0.030790884047747,0.049917239695787,-0.010129256173968],[-0.044754777103662,-0.0067675965838134,0.0004675961099565],[-0.039482146501541,0.044595595449209,-0.018943725153804]],[[0.080213114619255,0.045692197978497,-0.069355025887489],[0.033198039978743,-0.011371210217476,-0.021533297374845],[-0.013715486973524,0.0015538494335487,-0.017642129212618]],[[-0.0049377777613699,-0.0394615419209,-0.14778932929039],[0.07337249815464,0.018819199874997,-0.046402901411057],[-0.048230912536383,-0.0082890782505274,0.020057482644916]],[[0.094309978187084,0.10892587900162,-0.11266375333071],[0.029803711920977,-0.0019083875231445,-0.026691231876612],[0.065321110188961,-0.057599730789661,-0.091591186821461]],[[-0.0072626513428986,-0.018093414604664,-0.087814748287201],[0.061140581965446,0.028550293296576,-0.11585183441639],[-0.020863700658083,-0.025914702564478,-0.10117010772228]],[[-0.0026945290155709,-0.02085093781352,-0.028361385688186],[-0.015780752524734,-0.011709194630384,-0.019667850807309],[0.010928872972727,0.13461849093437,0.025993432849646]],[[-0.045936852693558,0.010810737498105,-0.018403695896268],[-0.022624125704169,-0.011492398567498,-0.052941136062145],[0.013483829796314,-0.08856538683176,-0.10511971265078]],[[-0.00099770061206073,0.019070571288466,-0.00861556828022],[0.048442143946886,-0.034429617226124,-0.022418288514018],[0.068638786673546,0.031413018703461,-0.026829596608877]],[[-0.0032947950530797,-0.015780489891768,-0.0012231462169439],[0.012041625566781,0.064283177256584,-0.030528370290995],[-0.016653936356306,-0.071121446788311,-0.0052032386884093]],[[-0.019129250198603,-0.034214407205582,-0.021032040938735],[-0.040807161480188,-0.032136201858521,0.022875787690282],[0.014838145114481,0.028287218883634,0.066684402525425]],[[0.04206969961524,0.019897116348147,-0.061182904988527],[0.015537898987532,-0.014134967699647,0.083452351391315],[0.027512315660715,-0.026033423841,-0.13291124999523]],[[-0.013018478639424,-0.018029816448689,-0.040599845349789],[0.037656255066395,0.040443785488605,-0.015150112099946],[-0.0099710850045085,0.032188914716244,-0.029645599424839]],[[-0.01302867103368,0.020828591659665,-0.089350759983063],[-0.027746681123972,0.021094748750329,0.022345632314682],[0.023120744153857,0.093050546944141,0.0553786046803]],[[-0.050500325858593,-0.066524557769299,-0.033226650208235],[0.077115952968597,0.04632143676281,0.031369224190712],[-0.053039308637381,-0.088206067681313,-0.029126219451427]],[[0.030127502977848,0.042425062507391,-0.044044893234968],[0.0087918341159821,0.032948423177004,-0.03519431501627],[-0.065821476280689,-0.014678291045129,-0.050955753773451]],[[-0.037642657756805,-0.0092053767293692,-0.049495983868837],[-0.029602404683828,0.04981940984726,-0.020909659564495],[-0.025408802554011,0.12202877551317,0.12885184586048]],[[-0.038478203117847,-0.10071688890457,-0.067359462380409],[-0.038411129266024,-0.00010897297761403,-0.021550891920924],[-0.021804854273796,-0.01989683136344,-0.086284302175045]],[[-0.13863398134708,0.011634035035968,0.039838742464781],[-0.072808921337128,-0.040822718292475,0.023873958736658],[-0.032777961343527,-0.061629395931959,0.020207591354847]],[[0.040340591222048,0.02851041033864,-0.059285800904036],[0.027224456891418,-0.032715674489737,-0.010865102522075],[-0.12965372204781,-0.04452358931303,-0.034832932054996]],[[-0.044558443129063,0.034331027418375,0.012490710243583],[0.013790714554489,-0.03417930752039,-0.075320966541767],[0.013835368677974,0.064640402793884,0.012177903205156]],[[0.01810560002923,-0.045236177742481,-0.027989393100142],[-0.034081049263477,0.019108852371573,0.004933733958751],[0.026570618152618,0.022796351462603,-0.027103068307042]],[[0.0089413365349174,0.018195632845163,0.027164854109287],[-0.0071789012290537,0.007001037709415,0.01521263550967],[-0.024248376488686,-0.0011162912705913,-0.011640465818346]],[[-0.095629937946796,-0.070720545947552,-0.045579377561808],[-0.073521494865417,-0.050389662384987,-0.020872283726931],[-0.095274075865746,0.011365534737706,-0.0019879972096533]],[[-0.055970262736082,0.014660873450339,-0.020487960427999],[0.046239964663982,0.0096364486962557,-0.043930247426033],[-0.025222066789865,0.01247676089406,0.018581844866276]],[[-0.026229705661535,-0.020949728786945,-0.095881968736649],[0.040385168045759,0.0015981629258022,-0.20230887830257],[0.054869122803211,0.052292943000793,-0.071128197014332]],[[0.015009028837085,0.017404671758413,0.065276756882668],[0.073768027126789,0.077961817383766,0.037051640450954],[0.018705148249865,-0.014472999610007,-0.037882003933191]],[[-0.047129359096289,-0.020989133045077,0.018361968919635],[-0.098829120397568,-0.0031715021468699,0.079376719892025],[0.021275136619806,0.039479553699493,0.067434661090374]],[[-0.034812841564417,-0.02519566193223,0.021750319749117],[0.052368018776178,0.028461616486311,0.032129634171724],[0.036319140344858,-0.080689638853073,-0.13401809334755]],[[-0.026706675067544,-0.027226453647017,-0.11058141291142],[-0.025063732638955,0.030977739021182,-0.014107227325439],[-0.013131097890437,-0.013900625519454,-0.047085784375668]],[[-0.099901273846626,0.079467572271824,-0.03195882588625],[-0.084558591246605,-0.079032175242901,-0.13898248970509],[0.026961222290993,0.049195185303688,0.013964684680104]],[[0.013585769571364,-0.085143722593784,-0.023357234895229],[-0.049970418214798,0.044636864215136,0.034351043403149],[-0.0083572408184409,0.094393894076347,0.10990968346596]],[[0.020677655935287,0.012069898657501,0.045315425843],[0.0023227308411151,0.018121723085642,-0.015449879691005],[0.019809372723103,-0.032778035849333,-0.03624864295125]],[[-0.059402652084827,0.007079872302711,-0.12110399454832],[-0.065655723214149,-0.068647190928459,-0.034193158149719],[0.012210935354233,-0.052514418959618,0.0043425383046269]],[[-0.043102167546749,-0.049352947622538,0.019315842539072],[-0.065648473799229,0.052818298339844,0.074755288660526],[-0.032623711973429,-0.026547955349088,-0.03783717378974]],[[0.05743146315217,0.06648276746273,0.013181519694626],[-0.069964401423931,-0.035915151238441,-0.027950998395681],[0.1550732254982,-0.031817361712456,-0.0541559047997]],[[-0.0095549430698156,-0.080244608223438,-0.13233371078968],[-0.0451580286026,0.09519137442112,-0.05172173678875],[0.038853023201227,0.14434327185154,0.019822087138891]],[[-0.015385265462101,-0.05666321143508,-0.1367776542902],[-0.040843166410923,0.024116773158312,0.01398435421288],[-0.0089279729872942,-0.005424533970654,-0.021467013284564]],[[-0.054477889090776,-0.052571013569832,-0.049790188670158],[-0.04674531891942,0.021109392866492,0.049135230481625],[-0.0080343224108219,-0.02355107665062,-0.0068698227405548]],[[0.071556136012077,0.00077299005351961,0.017667366191745],[-0.021519806236029,0.091066092252731,0.035043064504862],[-0.10819709300995,-0.001205725944601,0.043605428189039]],[[0.05579761788249,0.026134442538023,-0.013929385691881],[0.037537857890129,0.013181566260755,0.010117483325303],[-0.021711830049753,0.043944481760263,0.0093799717724323]],[[0.014114095829427,0.018631355836987,-0.033859081566334],[-0.0025186841376126,-0.013654660433531,-0.026262301951647],[0.038517374545336,-0.034585628658533,-0.032968945801258]],[[-0.054636027663946,-0.013306483626366,0.0056966003030539],[0.019136847928166,0.049115728586912,-0.021298626437783],[-0.0031677563674748,-0.039414703845978,-0.094975478947163]],[[0.024984017014503,0.041077110916376,0.034032467752695],[0.0085592279210687,0.061064153909683,0.022727621719241],[0.029706533998251,-0.058643668889999,-0.031081095337868]],[[-0.044150784611702,-0.060676597058773,-0.02657188475132],[0.059229239821434,0.044726360589266,-0.03268351778388],[-0.075570814311504,-0.060795538127422,-0.015929060056806]],[[0.0018557625589892,0.020932838320732,0.025814360007644],[0.0046500563621521,-0.031560942530632,-0.069144122302532],[-0.075672954320908,-0.024323994293809,-0.049382328987122]],[[-0.03652011975646,-0.052113004028797,0.01455544680357],[-0.057763397693634,-0.12655293941498,0.033798731863499],[0.024809846654534,-0.013084228150547,0.015436763875186]],[[0.02432743832469,0.1046861037612,-0.058349523693323],[0.08283069729805,-0.04757422208786,-0.12787261605263],[0.067080982029438,0.059029508382082,-0.029322240501642]],[[0.044384729117155,-0.020181398838758,-0.11655098944902],[-0.0003912698593922,0.067239128053188,-0.01838119700551],[-0.0056374534033239,-0.00041163852438331,-0.094268709421158]],[[-0.024211511015892,0.049924042075872,0.10658039152622],[-0.030736073851585,-0.0046891239471734,0.0015879835700616],[-0.054898053407669,0.0035340848844498,-0.085744835436344]],[[0.0028217858634889,0.05799063295126,-0.032516129314899],[-0.038319803774357,-0.0017871115123853,0.040073674172163],[-0.010540822520852,-0.00080039777094498,0.0094230696558952]],[[0.035517279058695,-0.05705651268363,0.042901482433081],[0.013728336431086,-0.032105799764395,-0.011902469210327],[-0.03911592438817,-0.10473327338696,-0.026401363313198]],[[0.0074080848135054,-0.080234736204147,0.023618467152119],[0.10722927749157,0.0076585430651903,-0.005402413662523],[0.034311410039663,0.060514356940985,-0.024909960106015]],[[-0.02283651381731,-0.067375928163528,0.00071986217517406],[-0.047647096216679,-0.07149912416935,0.052027631551027],[-0.01347763556987,0.039665695279837,0.13107061386108]],[[-0.029462408274412,-0.081706516444683,-0.04316546395421],[0.052623655647039,-0.033602971583605,-0.17475156486034],[0.052013978362083,-0.011336851865053,-0.042285230010748]],[[0.056391097605228,0.0079932101070881,-0.046444602310658],[-0.028585597872734,0.067570023238659,-0.021154945716262],[-0.024120654910803,-0.044156040996313,-0.011567307636142]],[[-0.072940826416016,0.068346105515957,0.043839566409588],[-0.11535862833261,0.1202465519309,0.06089848652482],[-0.10747700929642,0.0044791591353714,0.078566461801529]],[[0.018764702603221,0.098637744784355,0.015773197636008],[-0.037989255040884,-0.0094178756698966,-0.046653475612402],[0.01711998321116,-0.057061284780502,-0.066355288028717]],[[0.044003162533045,0.050085820257664,-0.042134780436754],[0.036506474018097,0.014488601125777,-0.0063770231790841],[-0.073411777615547,-0.1406554877758,-0.13513007760048]],[[0.02735710516572,0.0074156918562949,-0.00429399125278],[0.087211266160011,0.074682615697384,0.10118914395571],[0.061811789870262,-0.017645368352532,0.063413821160793]],[[-0.047003522515297,-0.043081313371658,-0.076663427054882],[-0.030944399535656,0.015429949387908,-0.020537562668324],[-0.0061195502057672,-0.090460941195488,-0.069077007472515]],[[-0.078302882611752,0.020484454929829,0.097740188241005],[-0.021393613889813,-0.079271070659161,0.041111584752798],[0.032109662890434,0.0032835779711604,-0.073382757604122]],[[-0.056610260158777,-0.071810983121395,-0.11663986742496],[-0.037916880100965,-0.069632083177567,0.032256420701742],[-0.046816889196634,-0.0051175933331251,0.037458915263414]],[[-0.025239329785109,-0.029979713261127,-0.038176115602255],[0.020403176546097,0.018316183239222,-0.02104196511209],[0.05628589168191,-0.035901680588722,-0.0273402556777]],[[0.0064836461097002,0.049453292042017,0.00071151612792164],[-0.0048872018232942,0.038454949855804,-0.02107372879982],[-0.015273418277502,0.026577141135931,0.047567948698997]],[[0.063328303396702,-0.018396958708763,0.081604741513729],[0.0069859717041254,0.026721691712737,0.078326150774956],[0.042166545987129,0.035654608160257,-0.057286616414785]],[[-0.039294362068176,-0.013238314539194,-0.16453868150711],[-0.080089263617992,0.037968367338181,-0.014079303480685],[0.01386412512511,-0.049258373677731,-0.054454579949379]],[[-0.0068115070462227,-0.0030684852972627,-0.058179542422295],[-0.024741658940911,-0.0067331665195525,-0.032504666596651],[-0.01872044801712,-0.078121520578861,-0.091556593775749]],[[-0.017066838219762,-0.00026963275740854,0.013833562843502],[-0.014585056342185,0.056651756167412,-0.063514247536659],[0.054866272956133,-0.068340040743351,-0.024831533432007]],[[-0.020785821601748,0.038133341819048,-0.00060921208932996],[0.021936248987913,0.031592138111591,-0.026624079793692],[0.026132591068745,-0.04002196714282,-0.011222085915506]],[[0.031299497932196,0.014461741782725,0.014336963184178],[-0.087638236582279,-0.037877529859543,-0.024834794923663],[0.037404756993055,0.056182108819485,-0.044696994125843]],[[-0.064295150339603,0.00575136160478,-0.023244338110089],[-0.016918012872338,-0.058098278939724,0.038404747843742],[0.015699645504355,-0.0042691384442151,-0.011925396509469]],[[0.027290234342217,0.048955965787172,-0.059763543307781],[-0.0088760675862432,0.073984123766422,0.016177214682102],[0.098533369600773,-0.0021081697195768,0.026219543069601]],[[-0.1147740855813,0.091104477643967,0.096439674496651],[-0.058872018009424,0.022096635773778,0.0099853817373514],[-0.11166260391474,0.037112161517143,0.0028833558317274]],[[-0.019872162491083,-0.034195516258478,-0.05084378644824],[0.0080132074654102,0.061553552746773,-0.038972139358521],[0.010022108443081,0.10425791144371,0.016629941761494]],[[-0.065390944480896,-0.042751289904118,-0.012611123733222],[0.031398482620716,-0.045584980398417,0.015746111050248],[0.029766468331218,0.015184444375336,0.018236337229609]],[[-0.082672342658043,-0.062080442905426,-0.0033434212673455],[-0.11502296477556,-0.042268875986338,-0.0083947787061334],[0.016089573502541,0.15030901134014,0.046609170734882]],[[0.024798084050417,0.028592342510819,-0.011396610178053],[-0.065664499998093,-0.031334243714809,-0.046275723725557],[0.01126750651747,0.017150396481156,-0.076625004410744]],[[0.044267773628235,-0.01409397367388,-0.099932856857777],[-0.028053821995854,0.09390365332365,-0.01883258484304],[-0.041240327060223,-0.037305928766727,-0.08107552677393]],[[0.028930932283401,0.034740678966045,0.01761682331562],[0.040406323969364,-0.026689164340496,-0.12047322839499],[-0.00028950977139175,0.12856303155422,-0.028007162734866]],[[0.061207227408886,0.11777067184448,0.0034345716703683],[-0.059890933334827,-0.040925275534391,0.0063419723883271],[-0.042524877935648,-0.079859562218189,0.015090920031071]],[[0.022509951144457,-0.040906883776188,0.066917762160301],[-0.017187552526593,0.12706746160984,0.052117634564638],[-0.10823244601488,0.040009189397097,-0.032245192676783]],[[-0.025922141969204,0.0039856643415987,-0.019480872899294],[0.042161118239164,-0.023432001471519,0.015069677494466],[-0.094273671507835,0.071072615683079,0.046689290553331]],[[-0.0097659109160304,0.028733471408486,0.021447334438562],[-0.031728755682707,0.030934996902943,-0.027813859283924],[-0.0046140840277076,-0.090478949248791,-0.023362843319774]],[[-0.04226179048419,0.0039226221852005,-0.047423329204321],[-0.054802592843771,-0.056099202483892,0.00012283091200516],[-0.031840369105339,-0.055048108100891,-0.045154117047787]],[[0.082689583301544,0.057765305042267,0.047849379479885],[-0.012110223993659,0.035550188273191,0.032786596566439],[0.042165722697973,-0.060713313519955,0.023097429424524]],[[-0.06571027636528,-0.065227769315243,0.0069509651511908],[0.016804726794362,0.044910404831171,0.12130556255579],[-0.022929841652513,0.013243868015707,0.066787160933018]],[[0.073046371340752,-0.087897516787052,-0.095342941582203],[0.050851613283157,0.040967810899019,-0.072746500372887],[-0.0070781572721899,0.004100461024791,0.044813808053732]],[[0.021777369081974,0.0034380236174911,0.076831474900246],[0.093299999833107,0.056122153997421,-0.015471253544092],[-0.03275365754962,0.059323064982891,0.064277797937393]],[[-0.0070821018889546,0.06482645124197,0.090713381767273],[0.066632688045502,0.012671337462962,0.067747958004475],[0.037937141954899,-0.048387102782726,0.037549689412117]],[[0.025608098134398,-0.011322163976729,0.010158916004002],[0.020985567942262,-0.073742844164371,0.00058164732763544],[-0.0030953008681536,-0.037888877093792,0.012072106823325]],[[0.026119846850634,-0.012217360548675,0.012855112552643],[-0.058140967041254,-0.055509112775326,0.014211802743375],[-0.013547871261835,-0.00065916322637349,0.016225162893534]],[[-0.014812462963164,0.023186290636659,0.0083364564925432],[0.015556396916509,0.0055873175151646,-0.065766431391239],[-0.00066776148742065,0.11514087021351,0.072355985641479]],[[-0.0038725426420569,-0.017033785581589,0.013929431326687],[0.032519046217203,0.049025341868401,0.013192466460168],[-0.014072989113629,-0.018398379907012,0.081091441214085]],[[-0.01040645968169,-0.012694585137069,-0.031432032585144],[0.037724755704403,-0.034983269870281,0.055970452725887],[-0.029059818014503,-0.13672335445881,-0.03009695187211]],[[-0.076062984764576,-0.067091338336468,-0.045304168015718],[0.017630459740758,-0.045107077807188,0.026034431532025],[0.041706550866365,-0.031928885728121,0.0025102912914008]],[[0.020251914858818,-0.017172794789076,0.027326323091984],[-0.017273232340813,0.033936403691769,0.10006432235241],[-0.040479656308889,0.061344042420387,0.036282364279032]],[[-0.15972235798836,0.0018291256856173,0.086164340376854],[-0.011747675016522,-0.030832743272185,0.021243058145046],[0.14912681281567,-0.016978561878204,-0.071024261415005]],[[-0.0090255551040173,0.060321718454361,0.0024283514358103],[-0.022484930232167,0.010755077004433,0.0005485633155331],[-0.029584463685751,-0.067472755908966,0.0070862080901861]],[[0.013820280320942,0.071439333260059,-0.0042145689949393],[-0.0090047717094421,0.098660334944725,0.019099682569504],[-0.038057088851929,0.09943987429142,-0.032469771802425]],[[0.026015169918537,0.029268013313413,-0.031464282423258],[-0.077802605926991,0.026979625225067,0.066346175968647],[-0.036614451557398,0.089320302009583,0.0026980547700077]]],[[[0.073513761162758,-0.022205378860235,0.091055445373058],[0.0013819084269926,0.039045408368111,0.11597557365894],[0.080379664897919,0.078206904232502,0.014250049367547]],[[0.049009930342436,0.031960718333721,0.034469772130251],[0.1632394194603,0.083713419735432,0.017226684838533],[-0.066428415477276,-0.044333174824715,0.070384778082371]],[[-0.069005087018013,-0.01899079978466,0.037980105727911],[-0.034425731748343,0.057706780731678,-0.1398104429245],[-0.042505756020546,-0.10015762597322,0.091309279203415]],[[-0.10184067487717,-0.065641455352306,0.0037528409156948],[0.028257226571441,-0.081188432872295,-0.066554881632328],[0.18289269506931,0.073739089071751,-3.1014209525893e-05]],[[-0.092436917126179,-0.022037470713258,0.057953786104918],[0.061844691634178,-0.014049197547138,0.080566398799419],[-0.05153913423419,-0.078330315649509,-0.032555107027292]],[[-0.081195488572121,0.023059967905283,-0.043152458965778],[-0.14450995624065,-0.059366889297962,-0.051250856369734],[0.010265869088471,-0.062872223556042,-0.0014614553656429]],[[-0.016820335760713,-0.083103746175766,-0.03157801553607],[-0.026035379618406,-0.0076184519566596,-0.021082093939185],[-0.0049608866684139,0.020822426304221,0.058421541005373]],[[-0.018289117142558,0.044677376747131,-4.6726840082556e-05],[0.042279690504074,0.052042677998543,-0.035225078463554],[-0.12052567303181,-0.064474783837795,0.033943217247725]],[[0.070811361074448,0.057302359491587,0.0079378308728337],[0.029925299808383,-0.024205829948187,-0.073045320808887],[-0.12508362531662,-0.1522875726223,0.030104786157608]],[[-0.032269559800625,0.069772601127625,0.045771472156048],[0.0020157878752798,0.028019115328789,0.12245110422373],[-0.0050039235502481,0.19655223190784,0.058200217783451]],[[-0.051693979650736,0.010994967073202,-0.031170157715678],[0.024042500182986,0.023911530151963,-0.085151754319668],[-0.042944267392159,-0.098614476621151,-0.023359775543213]],[[0.10613086819649,0.16335579752922,0.062196023762226],[-0.037808310240507,-0.12133962661028,-0.12294618785381],[0.0046011069789529,-0.039947371929884,-0.027038073167205]],[[0.0561180151999,-0.075671792030334,-0.066845066845417],[-0.037603825330734,0.047864332795143,0.0067542204633355],[-0.022767681628466,-0.19038915634155,-0.20054678618908]],[[-0.091667614877224,-0.015045758336782,-0.00030721607618034],[-0.070179142057896,-0.02097874507308,-0.034357231110334],[-0.01237924117595,0.073325484991074,-0.095305651426315]],[[0.042280752211809,0.043521799147129,0.050440471619368],[0.12615318596363,0.043439906090498,0.019180012866855],[-0.1373705714941,-0.1237238496542,-0.035565067082644]],[[0.032246246933937,-0.031994249671698,-0.056651964783669],[0.040362741798162,-0.065639585256577,-0.02709742449224],[-0.021414715796709,-0.060578271746635,0.011961692012846]],[[0.052020434290171,0.02416362427175,-0.10332974046469],[-0.043522659689188,-0.085746891796589,0.010845711454749],[-0.067540787160397,-0.014908869750798,0.10179387778044]],[[-0.043942797929049,0.029013453051448,-0.038726005703211],[0.03215155005455,0.065236456692219,0.028433518484235],[-0.020628506317735,-0.037252988666296,-0.10166669636965]],[[0.02077267691493,-0.035486482083797,0.046505726873875],[-0.012370868586004,-0.056329175829887,0.003114118706435],[0.060122691094875,-0.062995791435242,0.0091551253572106]],[[-0.019143471494317,0.088220551609993,-0.070682294666767],[0.069194138050079,0.035875525325537,-0.074258752167225],[0.015329609625041,-0.033326506614685,-0.040458213537931]],[[-0.046056762337685,-0.017212573438883,-0.0196478869766],[0.012225616723299,0.014283738099039,0.039033524692059],[-0.023245887830853,-0.046742245554924,0.01893001422286]],[[-0.035311490297318,-0.03760452568531,0.070009648799896],[0.069110460579395,0.045358870178461,0.026568436995149],[0.10005328059196,0.045669060200453,-0.011216343380511]],[[0.018280608579516,0.007299555465579,-0.049233730882406],[0.015595617704093,0.0045286817476153,-0.04138084128499],[0.042428087443113,-0.043870855122805,-0.063892930746078]],[[-0.018441446125507,0.0091589335352182,0.034925173968077],[0.065655626356602,-0.02324178442359,-0.050076175481081],[0.0496008656919,0.03165852651,-0.098335929214954]],[[-0.046055752784014,-0.029152596369386,-0.055748105049133],[0.087525360286236,-0.068963825702667,-0.10993474721909],[0.022077281028032,-0.067057155072689,-0.050349283963442]],[[0.036629017442465,0.042142305523157,0.027824679389596],[0.0039938250556588,0.092707023024559,0.14122049510479],[0.031410664319992,0.078205704689026,0.20927701890469]],[[-0.084793210029602,-0.018042078241706,-0.012501146644354],[0.03659363090992,0.016022466123104,-0.036472417414188],[0.080152966082096,0.0073672393336892,-0.0015107643557712]],[[-0.0081928418949246,0.024604888632894,0.028314804658294],[0.0097445314750075,-0.064445182681084,0.032762579619884],[-0.092355854809284,-0.21196600794792,-0.049082193523645]],[[-0.034654751420021,0.057466324418783,-0.074375666677952],[0.074637986719608,0.08555293828249,-0.064787328243256],[0.0063622766174376,-0.12520794570446,-0.033560298383236]],[[-0.008153609931469,-0.08631094545126,0.027041213586926],[-0.057191755622625,0.039562117308378,0.060556184500456],[-0.019639063626528,0.031780060380697,-0.0045543853193521]],[[0.020843273028731,-0.086797788739204,-0.05253554880619],[-0.031365036964417,-0.070152349770069,-0.050049472600222],[-0.061161670833826,0.034331634640694,-0.045592296868563]],[[0.018018105998635,0.032261870801449,-0.057621784508228],[0.072687566280365,0.013765910640359,-0.032583635300398],[0.065783940255642,-0.021766427904367,-0.014492605812848]],[[-0.0092747639864683,-0.039859756827354,0.0068159191869199],[0.034879595041275,-0.033226683735847,-0.053749743849039],[-0.021208139136434,0.00042495803791098,-0.0072474046610296]],[[-0.06070863455534,-0.031836826354265,0.013534530997276],[0.0037247582804412,-0.029334491118789,-0.021514043211937],[0.014379734173417,-0.022466491907835,0.083997040987015]],[[0.010683853179216,-0.029927540570498,-0.067382253706455],[-0.035001710057259,0.04284331202507,-0.083566606044769],[-0.0014266712823883,0.018293857574463,-0.041336964815855]],[[-0.1524121761322,-0.097091600298882,0.019973756745458],[-0.077756300568581,-0.049385122954845,-0.050508923828602],[-0.096676915884018,-0.05946334823966,-0.037737958133221]],[[0.081180758774281,0.068557150661945,0.097491919994354],[0.026170773431659,0.064283631742001,0.10872116684914],[-0.0099129630252719,0.0056305602192879,0.0083600487560034]],[[0.012010372243822,-0.077467046678066,-0.02249906398356],[-0.023310657590628,0.027810299769044,0.047137722373009],[0.059117376804352,0.042401626706123,-0.041886188089848]],[[-0.00010405913053546,0.011622752994299,-0.011968093924224],[0.059812884777784,0.09417112916708,0.028447676450014],[-0.060634907335043,0.043533500283957,-0.020261811092496]],[[0.020583610981703,-0.057718675583601,0.012374381534755],[0.066499784588814,0.023656090721488,0.066794924438],[0.016580995172262,-0.032074481248856,-0.0037626549601555]],[[0.042237680405378,-0.09133118391037,-0.073725216090679],[-0.0020899048540741,0.020594170317054,0.0075101000256836],[0.085545994341373,-0.10146679729223,-0.077277861535549]],[[-0.030216397717595,0.048837509006262,-0.045550938695669],[0.0085601154714823,0.069670453667641,-0.011954613961279],[0.075631767511368,0.058997251093388,-0.10765214264393]],[[-0.033874996006489,-0.091389521956444,-0.031692039221525],[-0.095520488917828,-0.15006200969219,-0.0021023438312113],[-0.025309516116977,-0.10947681963444,0.018634121865034]],[[-0.085732311010361,-0.055554486811161,-0.012514657340944],[-0.043353460729122,0.010444237850606,0.027538247406483],[0.02880922332406,-0.00354567123577,-0.052518106997013]],[[-0.059339255094528,-0.055217798799276,-0.072541184723377],[-0.12643979489803,-0.12961165606976,-0.081600978970528],[-0.044043947011232,-0.058788865804672,-0.050429929047823]],[[0.088230535387993,0.043175883591175,-0.042451735585928],[-0.010023755021393,-0.017433859407902,0.01119505148381],[-0.011776205152273,-0.13192239403725,-0.0066541871055961]],[[-0.064144000411034,-0.093383617699146,-0.083361729979515],[-0.004065447486937,-0.11179696023464,0.048871196806431],[-0.094282686710358,-0.11976155638695,0.062202695757151]],[[-0.014006276614964,-0.019537787884474,-0.0038282852619886],[0.068726800382137,-0.014554232358932,-0.051011689007282],[0.0064268824644387,-0.038997754454613,-0.052037909626961]],[[-0.069517843425274,-0.072437755763531,-0.0084041450172663],[0.055969826877117,0.018966175615788,0.063388913869858],[0.017670834437013,-0.086938992142677,-0.018704397603869]],[[-0.038726672530174,-0.049760475754738,-0.039663150906563],[0.011340389028192,0.026047296822071,0.012539212591946],[0.024888874962926,-0.030297800898552,-0.036870576441288]],[[0.0111611392349,-0.076213397085667,-0.065516822040081],[0.025766707956791,-0.061823714524508,-0.038643423467875],[-0.025327587500215,-0.051250107586384,0.010706729255617]],[[-0.024803118780255,0.027000669389963,0.045373376458883],[-0.041917536407709,0.093294486403465,0.01509547047317],[-0.026810716837645,0.027082556858659,-0.055405247956514]],[[-0.11233665049076,-0.15400460362434,0.0029158357065171],[-0.083952642977238,-0.094680801033974,0.050538040697575],[0.12203650921583,0.087245009839535,0.099000178277493]],[[-0.024225521832705,0.081650517880917,0.037336148321629],[-0.071847833693027,-0.035444118082523,-0.066398411989212],[0.0097470432519913,-0.068142786622047,-0.15048195421696]],[[-0.069928005337715,-0.044918369501829,-0.023258587345481],[0.086008004844189,0.0075645199976861,-0.036719970405102],[0.11482834815979,0.053307473659515,-0.051565926522017]],[[-0.017489764839411,-0.018241006880999,-0.043916989117861],[-0.020692152902484,-0.025227222591639,-0.092973828315735],[-0.031411662697792,0.07769475877285,0.073073923587799]],[[0.049641110002995,0.089150123298168,-0.006877941545099],[-0.11044109612703,0.030883934348822,0.13287308812141],[0.042589511722326,0.093898206949234,-0.057383872568607]],[[-0.0032683422323316,-0.048993453383446,-0.041792493313551],[-0.042870257049799,-0.012442418374121,0.025264291092753],[0.022039726376534,-0.037583656609058,-0.053676925599575]],[[-0.024480815976858,-0.12239629030228,-0.071724660694599],[-0.07984983175993,-0.13770170509815,-0.028470110148191],[-0.0045273499563336,-0.025820419192314,0.032396223396063]],[[-0.015289282426238,0.070938050746918,0.044440805912018],[0.054628577083349,0.01688321493566,-0.0062364405021071],[0.022147407755256,-0.021963668987155,0.0024710346478969]],[[-0.025692846626043,-0.061638936400414,-0.028314184397459],[0.03304797783494,-0.034088853746653,-0.0095181176438928],[0.030266238376498,0.032146584242582,0.0049871788360178]],[[0.00039606919744983,-0.051926836371422,-0.062108438462019],[-0.13675591349602,-0.076664507389069,-0.051155306398869],[-0.076973937451839,0.075537845492363,0.0096835726872087]],[[-0.11266777664423,-0.032191753387451,-0.017085272818804],[-0.088231652975082,0.0035357880406082,0.033721163868904],[-0.017152251675725,0.081055775284767,0.074740886688232]],[[0.00083882047329098,0.021386442705989,0.12348303198814],[-0.053611271083355,-0.012412937358022,-0.13934017717838],[0.10211662203074,0.094194740056992,0.018388871103525]],[[-0.15944808721542,-0.11548551172018,-0.10370814800262],[-0.083054967224598,-0.056050844490528,-0.083552859723568],[-0.064081758260727,-0.0095371007919312,-0.045456238090992]],[[-0.012347893789411,0.021215589717031,0.0043783597648144],[-0.013584853149951,-0.085469238460064,-0.014987673610449],[-0.065189331769943,-0.051728628575802,-0.019788583740592]],[[0.040086358785629,-0.012651482596993,-0.077130429446697],[-0.067826136946678,-0.0093210283666849,0.057544536888599],[-0.21835720539093,0.0029936786741018,0.0054772226139903]],[[-0.001794210402295,0.031483251601458,0.004711686167866],[-0.062370680272579,0.075915925204754,0.054100640118122],[-0.0028986090328544,-0.033084876835346,0.02727079950273]],[[0.029994308948517,0.034740164875984,0.046353727579117],[0.00874337926507,0.035367406904697,0.027730673551559],[-0.055985406041145,0.015120038762689,0.029313923791051]],[[0.041011773049831,0.027993565425277,-0.017644317820668],[0.05172411724925,0.026624800637364,0.15035955607891],[0.032655507326126,-5.3132793254917e-05,0.051474697887897]],[[0.076875127851963,0.081043757498264,0.079679004848003],[0.062481015920639,0.050439886748791,0.17099392414093],[-0.015235525555909,-0.15456727147102,-0.09254115074873]],[[0.055157825350761,0.027794005349278,-0.061333730816841],[0.017084084451199,-0.054958298802376,-0.11498315632343],[-0.024542273953557,0.019260294735432,-0.030505264177918]],[[0.032833933830261,0.0054987049661577,-0.0017041780520231],[-0.0090811289846897,0.050768528133631,-0.042752671986818],[-0.03386964648962,0.041564229875803,-0.0058717620559037]],[[-0.036907318979502,0.058202181011438,-0.064033858478069],[-0.074944198131561,-0.0031545832753181,-0.036348827183247],[0.091579392552376,0.00062695454107597,-0.069108977913857]],[[0.089934438467026,0.12110465764999,-0.075147867202759],[-0.037717960774899,-0.061997581273317,-0.0023766583763063],[0.014708359725773,0.023136183619499,0.098938278853893]],[[-0.069684334099293,0.066922374069691,0.10754103213549],[-0.022344803437591,0.006831563077867,0.067550309002399],[0.069174207746983,0.090572997927666,-0.0027412232011557]],[[-4.0559832996223e-05,0.008852357044816,-0.023914366960526],[-0.021992476657033,-0.025758035480976,-0.028159372508526],[-0.11367905884981,-0.059296235442162,-0.019103910773993]],[[0.004672599490732,0.0073780831880867,0.024703366681933],[0.087480157613754,0.019248085096478,-0.098192945122719],[0.030835686251521,0.1095035225153,-0.0014643581816927]],[[-0.048721242696047,-0.024528998881578,0.040157683193684],[-0.045672371983528,-0.045314013957977,-0.04985973611474],[-0.038824237883091,-0.00096516532357782,-0.0070655210874975]],[[-0.0058565628714859,0.091029278934002,-0.043705902993679],[-0.024511694908142,0.088967174291611,0.058952108025551],[0.0060975700616837,-0.0074774674139917,0.02557903714478]],[[-0.07030376791954,-0.032406449317932,-0.019064011052251],[-0.054087571799755,-0.041186843067408,-0.029668858274817],[0.046243112534285,-0.035690899938345,-0.046493392437696]],[[0.019281100481749,-0.067717246711254,0.0059069995768368],[-0.05699310451746,0.01428718212992,-0.065012961626053],[-0.18476010859013,0.027092449367046,0.052684143185616]],[[-0.02803585678339,-0.0064211268909276,0.016876339912415],[-0.067250400781631,0.013921902514994,0.14402697980404],[0.0252127610147,0.032473690807819,0.028833152726293]],[[-0.085838444530964,-0.076207019388676,-0.053090579807758],[-0.086170420050621,-0.053124904632568,-0.0026001655496657],[-0.0049591762945056,-0.041855614632368,-0.04848700016737]],[[0.010665379464626,-0.054355259984732,-0.013577082194388],[-0.03940699249506,-0.10410661250353,0.0038610165938735],[-0.0015123311895877,-0.032429162412882,-0.012027267366648]],[[-0.06239040568471,-0.095922544598579,-0.029813401401043],[-0.12562973797321,-0.066442020237446,0.031662341207266],[-0.039073780179024,-0.04181244596839,-0.01636615395546]],[[0.016726354137063,0.075514361262321,0.049015812575817],[0.0129703450948,-0.046504642814398,-0.05172011628747],[-0.10770951211452,-0.026861241087317,-0.00069377076579258]],[[-0.042414575815201,0.1102871671319,0.080580703914165],[-0.011757642030716,-0.0041710147634149,0.033180344849825],[-0.011380481533706,-0.012493225745857,-0.018579475581646]],[[0.071654938161373,-0.036447994410992,-0.01893081702292],[0.03776341676712,-0.024811113253236,-0.08149491250515],[-0.010037896223366,-0.052675563842058,0.067750610411167]],[[-0.11256533116102,-0.0823690071702,-0.0012600020272657],[-0.11425985395908,0.011932856403291,-0.016527594998479],[0.063967913389206,-0.00097944703884423,-0.03986769542098]],[[-0.018086936324835,0.0039364262484014,0.12756726145744],[-0.012134633027017,0.047048728913069,-0.094086222350597],[0.025520158931613,0.082535542547703,-0.029033444821835]],[[-0.031014606356621,-0.0659244582057,-0.043792385607958],[0.086622290313244,0.048644945025444,0.0075804172083735],[0.080776922404766,0.12299743294716,0.14773979783058]],[[-0.021895326673985,-0.050276100635529,0.054194658994675],[0.0011725395452231,-0.030503664165735,0.11168079078197],[-0.018004190176725,-0.017054241150618,0.098406381905079]],[[-0.077994823455811,-0.10439425706863,-0.098987057805061],[-0.012219772674143,-0.06658111512661,-0.070540323853493],[0.011848338879645,0.0095073161646724,-0.062188271433115]],[[0.0080287326127291,0.019134417176247,-0.044701218605042],[0.043497774749994,-0.079259313642979,-0.012084647081792],[0.051810026168823,0.04237999767065,-0.072612725198269]],[[0.071076430380344,0.065666683018208,0.067738123238087],[0.011949839070439,0.05437484011054,-0.10034717619419],[-0.048966582864523,-0.090554624795914,0.0095068132504821]],[[0.002948653884232,-0.062473442405462,0.056021448224783],[0.056566331535578,0.029070256277919,-0.051727872341871],[-0.0032546510919929,-0.0060207219794393,0.0038342415355146]],[[-0.011565438471735,-0.00059660041006282,-0.0071495207957923],[0.10438339412212,0.026793254539371,-0.011851071380079],[0.013969486579299,-0.0011637120041996,0.05223797634244]],[[0.058842942118645,0.027545040473342,-0.028796659782529],[0.095581382513046,-0.014661117456853,-0.036511160433292],[0.014957927167416,-0.10320051014423,0.0064971535466611]],[[-0.0046242084354162,0.091471180319786,0.030986540019512],[0.032537050545216,0.073139235377312,0.044298555701971],[0.052148092538118,0.014831654727459,-0.082186058163643]],[[0.074758648872375,-0.068479187786579,-0.015888243913651],[-0.058045908808708,-0.1296658217907,0.06645218282938],[-0.028718762099743,-0.046622071415186,0.0502097196877]],[[-0.073695190250874,-0.072350271046162,-0.0016241288976744],[-0.026612399145961,-0.021398492157459,0.092090211808681],[-0.026974035426974,-0.0018101681489497,0.0049789561890066]],[[-0.082502752542496,-0.1027901917696,-0.014967851340771],[-0.016183761879802,-0.050863910466433,-0.040053453296423],[0.015566844493151,0.05134679377079,-0.044624261558056]],[[0.018203912302852,-0.070013433694839,-0.010930813848972],[0.0015228252159432,-0.069438762962818,-0.0028910590335727],[-0.011663927696645,0.044584285467863,0.031786903738976]],[[0.0045638708397746,0.079794190824032,0.025681454688311],[-0.054902143776417,-0.018568657338619,0.082981035113335],[-0.0012741667451337,-0.026275396347046,0.033529587090015]],[[0.030455948784947,0.062264077365398,-0.031827259808779],[0.078636914491653,0.12336812913418,-0.044200856238604],[0.061088029295206,0.099652379751205,0.1289616972208]],[[0.037619691342115,-0.0044144270941615,-0.021940497681499],[0.032934177666903,0.014161081053317,0.021992044523358],[0.022472949698567,0.022384783253074,0.01345925219357]],[[-0.011509922333062,-0.038625113666058,-0.034290052950382],[0.027101876214147,0.047173149883747,-0.048290606588125],[0.026570621877909,0.048245668411255,-0.060299217700958]],[[0.083073109388351,0.0096984803676605,0.063631892204285],[0.06431632488966,-0.13067169487476,0.071144878864288],[-0.00069176469696686,-0.13473874330521,0.0049242628738284]],[[-0.017056971788406,-0.047105703502893,-0.044937714934349],[0.01472647394985,0.00093804992502555,-0.038979511708021],[0.009199452586472,-0.0055839885026217,-0.049441665410995]],[[0.0039521846920252,0.085898473858833,-0.043562296777964],[0.015848215669394,0.0066303564235568,-0.057077016681433],[-0.092923559248447,0.0082959393039346,0.0043434463441372]],[[-0.071745082736015,-0.040827170014381,0.012596299871802],[0.065337710082531,0.052626226097345,0.047937322407961],[-0.047792863100767,-0.047750726342201,0.12777948379517]],[[-0.036613889038563,0.015666153281927,-0.088474161922932],[-0.0099876401945949,0.017304563894868,-0.050667218863964],[0.041110780090094,0.050645180046558,0.039325673133135]],[[-0.021099073812366,-0.010289566591382,0.0009515158017166],[0.012591950595379,-0.0059689381159842,-0.0093092834576964],[0.060037404298782,0.043479591608047,0.00078909430885687]],[[-0.015982016921043,-0.012133912183344,0.048991098999977],[0.10277780890465,0.0039815222844481,0.031340416520834],[0.01198816113174,0.023393420502543,0.075782470405102]],[[-0.05027474462986,0.050759799778461,-0.063354924321175],[-0.032460577785969,-0.02746263705194,-0.050480030477047],[-0.087449833750725,0.0056919464841485,-0.0069463304243982]],[[-0.012374879792333,-0.040778890252113,0.026348439976573],[-0.043014507740736,-0.022044122219086,0.024197524413466],[-0.036985818296671,0.033114831894636,0.057727444916964]],[[-0.054012041538954,-0.033090945333242,-0.041416864842176],[-0.088416434824467,-0.054159168154001,-0.03681567683816],[0.063554599881172,-0.035068966448307,-0.10724681615829]],[[0.014641661196947,-0.083661019802094,0.077979728579521],[-0.0065907682292163,0.021980106830597,0.058624479919672],[-0.02846603654325,-0.077769443392754,-0.030557433143258]],[[0.020128011703491,0.061720170080662,0.0040628057904541],[-0.1052457690239,0.026931136846542,0.090599447488785],[0.032590411603451,0.013743385672569,-0.028793012723327]],[[-0.002776738256216,0.0016873306594789,-0.013960104435682],[0.019304439425468,0.061160180717707,0.075133286416531],[0.079469926655293,0.11484342068434,0.050044313073158]],[[-0.067434757947922,-0.032417591661215,0.045062899589539],[-0.0098098451271653,0.11040686815977,-0.032990138977766],[0.021551724523306,0.057053074240685,0.066055960953236]],[[-0.044613771140575,0.067646443843842,-0.058274801820517],[0.085414685308933,-0.0038915800396353,-0.019984986633062],[-0.033732406795025,0.071267336606979,-0.013389102183282]],[[-0.0039045496378094,0.017560424283147,-0.043821401894093],[0.036508906632662,0.033167887479067,-7.7451317338273e-05],[0.060343638062477,-0.078165419399738,0.048410028219223]],[[0.074727118015289,-0.06189838051796,0.11131682991982],[-0.032346416264772,0.10289763659239,0.047518484294415],[0.051749732345343,0.068288795650005,-0.01968009956181]],[[-0.054188054054976,0.024027882143855,-0.031620569527149],[-0.031525287777185,0.034061588346958,-0.098064094781876],[-0.0050669871270657,0.039826344698668,0.059674311429262]],[[0.021838271990418,-0.040172301232815,-0.018656570464373],[-0.026362035423517,-0.050377327948809,0.055168937891722],[-0.12741883099079,-0.15793666243553,-0.00014711514813825]],[[-0.0054408675059676,0.001630237326026,-0.04648844897747],[0.040634643286467,0.013435104861856,0.0069061974063516],[-0.027043795213103,-0.039804674685001,-0.02779676951468]]],[[[0.016932383179665,-0.042374044656754,-0.068496227264404],[0.011494047939777,-0.044232606887817,0.014781658537686],[0.066044539213181,-0.058068245649338,-0.031841143965721]],[[-0.0046907449141145,-0.014632344245911,0.011265154927969],[0.074115864932537,0.042662117630243,0.0066599561832845],[0.0061366399750113,-0.0098992856219411,-0.065661668777466]],[[-0.074187479913235,0.066736206412315,0.030216056853533],[0.14990100264549,-0.048321478068829,0.0051030023023486],[0.012710731476545,-0.065156124532223,0.050485391169786]],[[-0.0090298727154732,0.0078633297234774,0.07609611004591],[0.038026854395866,-0.044651344418526,0.039172440767288],[0.095653183758259,-0.072277054190636,-0.025045156478882]],[[-0.014568998478353,0.030267478898168,0.087855093181133],[-0.020314201712608,-0.010983757674694,-0.050571791827679],[0.064225092530251,0.013743934221566,0.010164561681449]],[[0.041538316756487,-0.0038525685667992,-0.0087604960426688],[0.035170245915651,0.012330478988588,0.046176545321941],[0.014547327533364,0.021754253655672,0.015160279348493]],[[-0.031509678810835,0.010920373722911,-0.025727856904268],[9.1534209786914e-05,-0.0097437556833029,-0.021014602854848],[0.0037053902633488,0.014996028505266,-0.024555122479796]],[[-0.038647964596748,-0.012114871293306,-0.00083674764027819],[-0.042261332273483,0.010509910061955,0.070087105035782],[-0.029171101748943,-0.063345476984978,-0.044052820652723]],[[-0.048017855733633,0.033314809203148,0.024918183684349],[0.032579876482487,0.026976354420185,0.082976490259171],[-0.01482317969203,0.044729739427567,0.05123258382082]],[[-0.073547028005123,-0.041617605835199,-0.0086309248581529],[-0.070379830896854,0.040699206292629,0.10038420557976],[0.015091302804649,0.00063554994994774,-0.075932867825031]],[[0.048508107662201,0.031373489648104,-0.012871650978923],[-0.045548167079687,-0.1234985217452,-0.045118324458599],[-0.09409111738205,0.0068117091432214,-0.023716378957033]],[[-0.048838082700968,0.019892623648047,0.10640089213848],[0.0372059866786,0.073720887303352,-0.033951207995415],[-0.011128426529467,-0.042784415185452,0.1223054677248]],[[-0.0080536874011159,0.0079987952485681,0.068660907447338],[0.029347950592637,0.019202286377549,-0.012412159703672],[-0.013646624051034,-0.029140358790755,-0.089994177222252]],[[-0.044469732791185,-0.0065072844736278,-0.14442555606365],[0.095109485089779,-0.048433814197779,-0.051234424114227],[0.01256409380585,-0.02189471013844,-0.15362611413002]],[[0.086471490561962,0.043517578393221,0.050264354795218],[-0.10814704746008,-0.12449625134468,0.038531973958015],[0.0083732744678855,-0.083310686051846,-0.0051871538162231]],[[0.0021586227230728,-0.081470541656017,0.0026622987352312],[-0.015096055343747,-0.052891548722982,0.05729903653264],[-0.015670342370868,-0.019646732136607,-0.038571335375309]],[[0.035412777215242,0.036388993263245,0.029407167807221],[-0.0068177748471498,0.012844079174101,0.023681463673711],[0.099844112992287,-0.0087274191901088,0.080016702413559]],[[-0.045364324003458,-0.061199232935905,-0.047042697668076],[-0.032194845378399,-0.019402394071221,-0.013017577119172],[0.0071613974869251,0.030596893280745,-0.011835149489343]],[[-0.035153459757566,0.054590422660112,-0.078205123543739],[0.045156873762608,-0.044577479362488,-0.047762114554644],[0.008574309758842,0.021370429545641,0.056741114705801]],[[0.041662119328976,0.064160533249378,-0.029678761959076],[0.022191397845745,0.027237705886364,-0.1320606470108],[0.034030012786388,0.068096041679382,-0.092662870883942]],[[0.035041447728872,-0.027351776137948,0.027439147233963],[-0.026968961581588,-0.042487040162086,-0.062064446508884],[-0.0085461745038629,0.060777101665735,-0.025413107126951]],[[0.01339137647301,-0.0015155989676714,0.036722745746374],[0.022066028788686,0.11592708528042,0.091123536229134],[-0.15792912244797,0.034038078039885,-0.025022024288774]],[[0.1244580373168,0.019953286275268,-0.031442109495401],[-0.020072953775525,-0.038633298128843,-0.05944075807929],[-0.052426848560572,-0.016805447638035,-0.00027628263342194]],[[0.033412221819162,0.1290545463562,-0.025329392403364],[-0.070185802876949,0.020386964082718,-0.011803444474936],[0.027669593691826,-0.022557543590665,0.015824254602194]],[[0.095856383442879,-0.040726635605097,-0.03744463250041],[-0.026584668084979,0.028503704816103,-0.03992236033082],[0.14670664072037,-0.076587751507759,-0.063106670975685]],[[0.048784106969833,-0.016744002699852,-0.0071854633279145],[0.082406632602215,0.031175332143903,0.015351438894868],[-0.030464626848698,0.0074832523241639,0.030518244951963]],[[0.04091827198863,-0.029402125626802,-0.0049982350319624],[-0.050404958426952,-0.0077926469966769,0.067650564014912],[-0.17064897716045,0.011418484151363,0.0034839811269194]],[[-0.031762026250362,0.029834490269423,0.10727636516094],[0.014948467724025,-0.037856213748455,-0.017686434090137],[0.085863836109638,0.01037220004946,-0.088428311049938]],[[0.016716362908483,0.058249656111002,-0.013376153074205],[-0.0040978849865496,-0.09525790810585,-0.041216026991606],[-0.035969167947769,0.048926260322332,0.021454138681293]],[[-0.087535664439201,-0.024352874606848,0.010033838450909],[-0.054224632680416,0.023189069703221,0.04754601791501],[-0.021074123680592,-0.044011373072863,0.041804164648056]],[[-0.034730449318886,0.035005085170269,-0.1265576928854],[0.028968494385481,0.014440823346376,-0.028763486072421],[-0.070718072354794,-0.11234177649021,0.10633279383183]],[[-0.029177736490965,0.0019324643071741,-0.046182665973902],[-0.0034228565637022,-0.12159640341997,-0.087473690509796],[0.046158019453287,-0.031472060829401,0.069738008081913]],[[-0.038711488246918,0.014423215761781,0.01860967092216],[0.013865759596229,-0.0072254096157849,0.0065459623001516],[0.046517819166183,-0.066336400806904,0.054184295237064]],[[0.018591523170471,0.038498587906361,0.012329147197306],[0.012875654734671,-0.010102015919983,0.023732928559184],[-0.069308415055275,-0.009318052791059,-0.057735782116652]],[[0.039376210421324,0.0019349080976099,-0.024425335228443],[-0.028550012037158,0.038123562932014,-0.017344577237964],[-0.033240757882595,0.018421370536089,0.070018321275711]],[[0.078762948513031,0.025910042226315,0.0052428585477173],[-0.030698139220476,-0.049840502440929,0.07735588401556],[-0.1436058729887,0.0073937466368079,0.0088462280109525]],[[0.0036650262773037,-0.076213344931602,-0.01827765442431],[0.033266458660364,0.029527131468058,-0.080552943050861],[-0.035763453692198,-0.040575347840786,-0.072091273963451]],[[-0.10365246236324,-0.0034949334803969,-0.065518297255039],[-0.040527071803808,0.018636038526893,-0.059214390814304],[-0.015536651946604,0.013141087256372,-0.060072191059589]],[[0.030279336497188,-0.0063287834636867,-0.0058466610498726],[-0.0007224160945043,-0.044405680149794,0.0080870669335127],[-0.036886002868414,-0.033072885125875,-0.033393926918507]],[[-0.037301927804947,-0.02979969792068,-0.040752731263638],[0.032189998775721,0.060659620910883,-0.019381025806069],[0.018923001363873,0.029174767434597,-0.021974720060825]],[[0.050201747566462,-0.06435190141201,-0.028812013566494],[0.023618567734957,-0.026355074718595,-0.10893852263689],[0.046086490154266,0.034766718745232,-0.10400225967169]],[[0.025214072316885,0.0087408581748605,-0.067572712898254],[-0.012361238710582,0.069734089076519,0.011937556788325],[-0.073050789535046,0.056041453033686,-0.11494366079569]],[[0.071358703076839,0.030669087544084,0.087491892278194],[-0.021098542958498,-0.022313648834825,0.018126761540771],[-0.0011904147686437,-0.04621583968401,-0.012814270332456]],[[-0.060459919273853,-0.04935709387064,-0.010594381019473],[-0.049980696290731,-0.048119984567165,-0.020998263731599],[-0.064652241766453,0.036520522087812,0.030093057081103]],[[0.047251638025045,0.0012629933189601,0.042104881256819],[-0.020623303949833,0.0017554368823767,-0.0025960982311517],[0.015123761259019,0.063100270926952,-0.023216722533107]],[[0.1076622530818,-0.047300331294537,0.014065477065742],[-0.016033908352256,0.0069650197401643,-0.017179887741804],[0.03377616032958,-0.0044780876487494,0.052961427718401]],[[-0.041470848023891,-0.0019977577030659,-0.0048426538705826],[-0.13845884799957,0.0056682047434151,0.0020803897641599],[-0.023852322250605,0.079974845051765,-0.0023135649971664]],[[-0.018213225528598,-0.0068886457011104,0.056290406733751],[0.010825744830072,0.1022115200758,-0.045357719063759],[-0.075584687292576,-0.015905292704701,-0.029182702302933]],[[0.0085843224078417,0.051303461194038,0.11179969459772],[-0.022245533764362,-0.026313081383705,0.0048695746809244],[0.028691936284304,-0.046926647424698,0.077548161149025]],[[-0.051076523959637,0.031314376741648,0.071330986917019],[-0.043623864650726,0.030063135549426,0.025318993255496],[0.0090548666194081,0.0017215494299307,-0.010877984575927]],[[-0.090811781585217,0.078680358827114,-0.0039256499148905],[0.070969253778458,-0.042490988969803,0.057671632617712],[0.11054928600788,-0.035704106092453,0.0056767091155052]],[[0.075657360255718,0.095562487840652,0.038085293024778],[0.065490148961544,0.013512560166419,-0.038072869181633],[-0.074509754776955,-0.055067948997021,-0.029881872236729]],[[0.0065348106436431,-0.051672581583261,-0.017238546162844],[-0.056205820292234,-0.041163414716721,-0.06838933378458],[0.038549952208996,-0.016283681616187,-0.0091554149985313]],[[-0.027799151837826,-0.043779402971268,0.012780530378222],[0.0056561580859125,0.086828462779522,-0.015519126318395],[0.073184795677662,0.075612924993038,0.0089310007169843]],[[0.019556917250156,-0.033367201685905,-0.032335110008717],[-0.043245159089565,-0.015590939670801,-0.012409417890012],[0.039273031055927,0.11461941897869,-0.032325033098459]],[[-0.094202853739262,-0.10646694153547,0.062281858175993],[-0.034002851694822,0.11003053933382,-0.0087656257674098],[0.074938111007214,0.11731527745724,-0.037699095904827]],[[-0.00022046844242141,0.012162902392447,-0.0015586944064125],[-0.024809831753373,-0.041973643004894,0.023020226508379],[-0.052188117057085,-0.015716530382633,0.017487475648522]],[[0.042178202420473,-0.013844053260982,-0.0065357028506696],[0.042115353047848,0.05928236246109,0.0013838618760929],[0.062846027314663,-0.072916634380817,0.049464654177427]],[[-0.0010968664428219,0.094698339700699,0.03317553922534],[0.024270500987768,-0.055017374455929,-0.026070365682244],[-0.02626303397119,-0.032987512648106,-0.038446694612503]],[[-0.038239601999521,-0.016756365075707,0.0059456001035869],[-0.0493627153337,-0.030386289581656,0.0024202410131693],[-0.015302295796573,-0.089033462107182,0.010264461860061]],[[0.054039735347033,0.039262913167477,-0.019215185195208],[-0.012096421793103,0.0019473320571706,0.020983163267374],[0.015956573188305,-0.0095703806728125,-0.061346791684628]],[[0.018792251124978,-0.097406610846519,0.026211209595203],[-0.080694310367107,0.011786473914981,0.033661186695099],[0.12560050189495,0.098018862307072,-0.032825890928507]],[[0.014413273893297,0.093438044190407,0.057688068598509],[-0.12101855129004,-0.051371403038502,0.0092109562829137],[0.031249204650521,-0.043881017714739,-0.11277088522911]],[[0.024479093030095,0.01490655913949,-0.093447484076023],[0.012206600047648,0.095667608082294,-0.035284027457237],[-0.020659504458308,0.011679528281093,0.0033872167114168]],[[0.0066514145582914,-0.0039784638211131,-0.012537618167698],[0.0082701435312629,0.020974820479751,0.017911618575454],[0.01987386867404,0.14589181542397,0.018443997949362]],[[0.0041214837692678,0.13902960717678,-0.072466664016247],[0.084984473884106,0.038108561187983,-0.091526120901108],[0.042547028511763,-0.021623691543937,-0.010139194317162]],[[-0.10282085835934,-0.077846720814705,0.12536919116974],[-0.013936565257609,0.079904958605766,0.1015205308795],[0.0041285483166575,-0.016330767422915,-0.051045954227448]],[[0.061091087758541,0.011698751710355,-0.046207372099161],[0.01818017102778,0.11796314269304,0.053014650940895],[-0.050061997026205,-0.004533096216619,0.05464144423604]],[[-0.04208717867732,-0.048408057540655,0.050656780600548],[-0.06563962996006,0.032450344413519,0.023200385272503],[-0.0024753715842962,0.018638618290424,-0.02973810210824]],[[0.032306708395481,0.012629210017622,0.044179849326611],[0.056026242673397,-0.09397915750742,-0.01129190903157],[0.072362877428532,-0.074628122150898,-0.0068578030914068]],[[0.093027882277966,-0.051280498504639,0.020853888243437],[0.031624644994736,0.010766380466521,0.0074803787283599],[0.01842968352139,0.019467040896416,0.023254940286279]],[[0.012932763434947,-0.13096237182617,0.014856455847621],[-0.026342688128352,-0.029354212805629,0.046623237431049],[-0.023965053260326,0.095406331121922,0.02073391713202]],[[0.023415585979819,0.079059392213821,0.15312291681767],[0.097992449998856,-0.036938529461622,0.033991668373346],[-0.020106825977564,-0.097014993429184,0.073002316057682]],[[-0.018354833126068,-0.0055333846248686,-0.017240270972252],[0.075858637690544,-0.09065855294466,-0.016986839473248],[-0.076270841062069,-0.03772696480155,-0.074086301028728]],[[0.04744166135788,-0.028499351814389,-0.070862606167793],[0.04416885972023,0.0074000819586217,-0.21411389112473],[0.14447435736656,0.099348098039627,0.087435014545918]],[[-0.0041627124883235,0.012960334308445,0.057792879641056],[-0.024047672748566,0.022174548357725,0.025546053424478],[0.014475817792118,0.071392133831978,0.039066322147846]],[[-0.11789464205503,0.033917397260666,0.068673186004162],[0.011571726761758,0.042581994086504,0.055061895400286],[-0.031671512871981,-0.036334689706564,-0.052113503217697]],[[0.11189745366573,-0.0070355567149818,-0.0088842734694481],[0.0012980853207409,0.011700801551342,0.019765106961131],[-0.006917885504663,-0.036091566085815,-0.10188043117523]],[[-0.095435813069344,-0.079397097229958,0.094662293791771],[-0.001408388838172,-0.009941547177732,0.013432431966066],[-0.033730935305357,0.003191010793671,0.026927893981338]],[[0.00063811324071139,-0.12588515877724,-0.02407381683588],[0.050596091896296,0.077191598713398,-0.062376417219639],[-0.071721322834492,0.056935217231512,-0.027759689837694]],[[0.029048267751932,-0.012982130981982,-0.057253044098616],[-0.00073567626532167,-0.084772221744061,-0.022624453529716],[0.10971254110336,-0.020118063315749,-0.026873707771301]],[[0.057733342051506,0.068241007626057,0.03379288315773],[0.026781994849443,-0.07210698723793,-0.047996111214161],[0.038473002612591,0.075588174164295,0.059917986392975]],[[-0.0273855663836,-0.024245815351605,-0.037210498005152],[0.0092372167855501,0.020079277455807,-0.068729221820831],[0.041109185665846,-0.06082309037447,-0.15576110780239]],[[-0.02663179859519,0.023683300241828,-0.010412564501166],[0.012790064327419,0.014604263938963,0.027052624151111],[0.10573566704988,-0.058844715356827,-0.008376625366509]],[[0.0036938714329153,-0.032337836921215,0.086065888404846],[-0.069438926875591,-0.01992461271584,0.0057094413787127],[-0.087635919451714,-0.10429941862822,-0.03108412399888]],[[0.033535111695528,-0.044405542314053,0.0097498586401343],[0.11984375864267,-0.015459208749235,-0.059096813201904],[0.063043236732483,0.016148952767253,0.0022273166105151]],[[0.051026348024607,-0.078131720423698,-0.0010443397331983],[-0.023704454302788,0.051362525671721,-0.053175508975983],[-0.052924312651157,0.032907657325268,0.10389249771833]],[[-0.074900984764099,-0.0035770854447037,0.03955977410078],[0.012213997542858,0.023548705503345,-0.010469188913703],[-0.060394745320082,-0.08018521219492,-0.0080564459785819]],[[-0.030398655682802,-0.037124127149582,-0.082573853433132],[0.047247249633074,0.0019820183515549,-0.031452108174562],[0.091490097343922,0.020357461646199,-0.0179613083601]],[[0.034049987792969,0.039877265691757,-0.10086207836866],[-0.016180947422981,-0.011892299167812,0.0023432855959982],[0.033957447856665,0.12013725191355,0.088372029364109]],[[0.016649257391691,-0.010777085088193,-0.079481616616249],[0.049724496901035,-0.032164290547371,0.012408116832376],[-0.047208268195391,-0.034161794930696,0.027759961783886]],[[-0.031026966869831,-0.026607239618897,0.01458771713078],[-0.031804259866476,0.0082235801964998,0.0072198058478534],[-0.024455254897475,0.060603592544794,-0.048896044492722]],[[0.081721633672714,-0.10017221421003,0.075552746653557],[-0.10065921396017,-0.054412543773651,0.027858208864927],[-0.031776867806911,-0.047570563852787,0.061044167727232]],[[0.017617600038648,-0.11577907204628,-0.12457007914782],[0.0084890872240067,-0.00022816602722742,0.019659344106913],[0.015452799387276,0.032957762479782,0.047908503562212]],[[-0.046524699777365,0.055942267179489,0.0033524446189404],[0.0030593546107411,-0.038534566760063,-0.010481453500688],[-0.051171414554119,0.05547209084034,-0.055722665041685]],[[0.0091803334653378,-0.019476911053061,-0.08157504349947],[-0.069854252040386,-0.022773530334234,0.055644813925028],[-0.00367620610632,-0.00058283057296649,-0.020594418048859]],[[-0.0022962100338191,0.05601704865694,0.043673742562532],[0.084420122206211,0.018508199602365,0.087448738515377],[0.027784651145339,0.0024488545022905,0.019184054806828]],[[-0.065203197300434,0.09181485325098,0.11559648066759],[0.046990431845188,-0.08793018758297,-0.026281824335456],[0.01265530847013,-0.018272545188665,-0.0014898756053299]],[[0.18218937516212,-0.076598040759563,-0.029491992667317],[-0.0056672096252441,-0.017527030780911,0.060535702854395],[0.12905417382717,-0.099138475954533,0.027627343311906]],[[-0.03248330950737,-0.041978050023317,-0.010159364901483],[-0.015396142378449,-0.067397095263004,-0.038520768284798],[-0.013850976713002,-0.13570162653923,-0.0056968848221004]],[[0.033362522721291,0.057737551629543,-0.0075030592270195],[0.073955468833447,-0.022222578525543,-0.050615999847651],[0.15392462909222,-0.052561640739441,0.046773012727499]],[[0.10302665829659,-0.024759164080024,0.009546029381454],[-0.0021163108758628,-0.040846839547157,-0.090868592262268],[-0.017767867073417,-0.056330546736717,0.026689844205976]],[[-0.0011512691853568,0.048875205218792,0.10553482174873],[0.046019166707993,-0.062943778932095,-0.059376250952482],[0.00177417404484,-0.038260266184807,-0.032829605042934]],[[-0.034801207482815,-0.001468142378144,0.016553040593863],[-0.11426232010126,0.01231084484607,0.05288477614522],[-0.047574687749147,0.081855647265911,0.093038611114025]],[[-0.084812834858894,-0.0032213262747973,-0.018088430166245],[-0.033012710511684,0.043036170303822,-0.032422438263893],[-0.049102958291769,-8.369333227165e-05,-0.01945093460381]],[[-0.10877276957035,0.047521375119686,-0.092958346009254],[0.031593788415194,0.073394820094109,-0.044318880885839],[-0.016194706782699,-0.0075040110386908,0.018681142479181]],[[-0.000458928901935,-0.016429765149951,-0.034732647240162],[-0.043880622833967,-0.10474393516779,-0.025140859186649],[-0.0018015129026026,-0.0016380797605962,0.029832655563951]],[[0.060863498598337,0.008094004355371,-0.01513534784317],[-0.064309373497963,-0.055689916014671,0.0088924262672663],[0.013432657346129,-0.048911295831203,-0.01739040389657]],[[0.0070422454737127,0.0034594309981912,-0.13521069288254],[0.045488651841879,0.032329082489014,0.059754531830549],[0.037853244692087,0.040388166904449,-0.080656342208385]],[[0.011465498246253,-0.060302197933197,0.024373510852456],[-0.08714185655117,-0.085430905222893,-0.059257015585899],[0.089534468948841,-0.0074728541076183,0.03497926518321]],[[0.055319610983133,0.050919130444527,0.070361413061619],[0.069366924464703,-0.076279781758785,-0.20024268329144],[0.01180771086365,-0.081396259367466,-0.1931236833334]],[[0.029675396159291,-0.011995230801404,0.017466969788074],[0.019533632323146,0.014260065741837,-0.0030388387385756],[0.032351922243834,0.050970535725355,-0.015450890175998]],[[0.035101160407066,-0.027353530749679,-0.03045261092484],[0.015239771455526,-0.098501965403557,-0.096013844013214],[0.025751661509275,0.0068888193927705,-0.14111794531345]],[[0.024514596909285,0.0029073127079755,0.01708772778511],[-0.066391490399837,0.0040883747860789,0.060154944658279],[0.091688729822636,0.080672137439251,0.010705016553402]],[[-0.19579043984413,0.045931611210108,0.057445831596851],[-0.15818113088608,0.04853392764926,0.054568190127611],[-0.029334591701627,0.097986958920956,0.079749405384064]],[[-0.054432023316622,0.05243356525898,0.08775070309639],[-0.12954485416412,0.042214058339596,-0.044490542262793],[-0.090149812400341,-0.0072722160257399,0.0053931777365506]],[[-0.011193764396012,-0.045294892042875,-0.018760750070214],[-0.013063143007457,-0.0035393345169723,-0.028406763449311],[-0.042039014399052,-0.020931320264935,0.035386927425861]],[[-0.022497544065118,0.033888280391693,-0.00022854363487568],[-0.055552009493113,-0.017122756689787,-0.014344647526741],[-0.029203310608864,0.087187677621841,-0.013780818320811]],[[-0.028912961483002,-0.025076605379581,-0.045506976544857],[-0.077236421406269,-0.0049593923613429,-0.010839567519724],[-0.019103093072772,-0.0010659191757441,-0.067888647317886]],[[-0.050507120788097,-0.017099784687161,0.053755771368742],[-0.0036303917877376,0.0010688982438296,-0.13185219466686],[0.010845825076103,0.062004830688238,0.13869366049767]],[[-0.071139626204967,-0.072700709104538,0.027209466323256],[0.039576452225447,0.0065366066992283,-0.086688756942749],[0.009946471080184,-0.035211350768805,-0.037885375320911]],[[0.02419675886631,0.039569478482008,-0.038653820753098],[0.080991148948669,-0.024680610746145,-0.098762802779675],[0.063132479786873,-0.0016022461932153,-0.14743611216545]],[[0.079658664762974,0.032360650599003,-0.013954719528556],[0.07471752166748,-0.09810172021389,-0.0069476864300668],[0.11362856626511,-0.056454252451658,0.064199484884739]],[[-0.064052976667881,-0.053012389689684,-0.0069306907244027],[-0.0059093805029988,0.023789890110493,0.0028959994670004],[0.0037432909011841,-0.038172371685505,-0.072656199336052]],[[-0.036820665001869,0.10352290421724,-0.16059593856335],[0.06081747636199,-0.10747154802084,-0.098130367696285],[0.14966194331646,-0.070435926318169,-0.017091358080506]],[[-0.018125837668777,0.043434660881758,-0.016593897715211],[-0.049528375267982,0.040065687149763,0.0031295143999159],[-0.030381638556719,-0.031589392572641,-0.070945076644421]],[[0.0033307187259197,-0.10412795096636,0.018394494429231],[0.064195521175861,-0.021891860291362,0.067637324333191],[0.057643827050924,-0.1247836202383,-0.039954960346222]],[[-0.11235269904137,0.036938484758139,0.037546463310719],[0.051804881542921,0.033285774290562,0.062308952212334],[-0.073687024414539,0.0075965179130435,0.0068636890500784]]],[[[0.05978549271822,-0.091872490942478,-0.066060230135918],[-0.020745299756527,0.073281772434711,0.22297266125679],[0.12127216160297,0.10877576470375,0.24893465638161]],[[0.0070134913548827,-0.070267572999001,0.078369095921516],[0.05838817358017,-0.015460029244423,-0.010513696819544],[-0.11342038959265,-0.089651085436344,-0.083596035838127]],[[0.0032747839577496,0.1221890822053,-0.25127041339874],[-0.020782632753253,0.091851621866226,-0.10111336410046],[-0.011215160600841,-0.057127747684717,0.035062793642282]],[[0.094701059162617,0.010851807892323,-0.027223065495491],[-0.12907938659191,-0.023693917319179,0.016509659588337],[-0.16896513104439,-0.10592611134052,-0.023663070052862]],[[-0.15285131335258,-0.053517512977123,0.034070923924446],[0.0055635496973991,-0.0085010472685099,0.084905952215195],[-0.053712017834187,-0.05319245159626,0.13420683145523]],[[-0.035509523004293,-0.04576625674963,0.0083492090925574],[-0.022022726014256,0.018287258222699,-0.026418874040246],[-0.011009693145752,0.031999237835407,-0.12774778902531]],[[0.049150664359331,0.034669972956181,0.0020262526813895],[0.099434182047844,0.0034852635581046,0.0091323647648096],[-0.021899785846472,-0.094358682632446,-0.16593547165394]],[[0.063569612801075,0.11595376580954,0.018246863037348],[0.051916234195232,0.056151825934649,0.029033970087767],[0.029283680021763,-0.061701897531748,0.0232022870332]],[[-0.075021281838417,-0.13581797480583,0.15200564265251],[-0.025354728102684,-0.016481203958392,0.19091735780239],[-0.075321011245251,0.036819979548454,-0.24705989658833]],[[-0.08426932990551,-0.16862271726131,-0.11417143791914],[-0.11976061761379,-0.012272963300347,-0.076454147696495],[-0.032030116766691,-0.23507691919804,-0.11870546638966]],[[0.036289751529694,-0.066311895847321,0.017264043912292],[-0.05049766972661,0.07278735935688,-0.14318795502186],[-0.0011829663999379,0.068441793322563,-0.0051365504041314]],[[-0.16177609562874,-0.25904059410095,-0.18633392453194],[-0.0031332753133029,0.08415163308382,0.025882372632623],[-0.025101190432906,0.16616961359978,-0.0063662333413959]],[[0.011991541832685,-0.017655247822404,0.26057195663452],[-0.21793211996555,-0.13379672169685,-0.00068954640300944],[0.018761172890663,0.11159187555313,0.070810690522194]],[[-0.1199024617672,-0.22694461047649,-0.10672323405743],[-0.15362948179245,-0.19351224601269,-0.079856067895889],[-0.016950899735093,-0.077166445553303,-0.050843212753534]],[[0.11401417851448,0.043704938143492,0.087651461362839],[-0.24998272955418,-0.043904595077038,-0.14103356003761],[-0.091152630746365,0.057211380451918,0.060057695955038]],[[-0.039170801639557,-0.15710157155991,-0.09509464353323],[0.0085123823955655,-0.00069992995122448,0.00036709167761728],[-0.088899649679661,-0.062909133732319,-0.10970339179039]],[[0.12173584103584,-0.087021954357624,-0.20851224660873],[-0.12725552916527,-0.14691969752312,0.15105330944061],[0.085846699774265,0.045999057590961,0.043443527072668]],[[0.17710089683533,0.0043949303217232,0.083928368985653],[0.015309697017074,0.018467729911208,0.08951710909605],[0.10284286737442,0.051097374409437,0.044061440974474]],[[0.028931284323335,-0.13901974260807,-0.073189347982407],[-0.029790017753839,-0.16174766421318,0.013198805041611],[0.11676808446646,0.059032145887613,0.21569445729256]],[[-0.083510585129261,-0.19604125618935,-0.15139865875244],[0.054074391722679,0.089441776275635,-0.089981757104397],[0.0032323179766536,-0.1334652453661,-0.15832053124905]],[[-0.17946691811085,-0.052654817700386,0.026641741394997],[-0.043596632778645,-0.16927661001682,-0.059271026402712],[-0.17699383199215,-0.11524668335915,-0.16287043690681]],[[-0.10794851928949,0.0095611438155174,0.11121132969856],[-0.049525044858456,0.081899046897888,0.11929804086685],[-0.20751240849495,-0.11349509656429,-0.14185656607151]],[[-0.042867310345173,-0.010583684779704,0.071886852383614],[-0.0092291198670864,0.0037928188685328,0.02214365452528],[-0.13764941692352,-0.055577423423529,-0.071070127189159]],[[0.11209959536791,0.051649618893862,0.027107998728752],[-0.031878560781479,0.049086727201939,-0.13584876060486],[-0.018280807882547,-0.20843347907066,-0.040020726621151]],[[0.10288367420435,-0.021456522867084,0.011254113167524],[-0.09493301063776,-0.0207664296031,0.078149922192097],[0.015938868746161,0.017511999234557,0.033528484404087]],[[0.18255285918713,0.015604082494974,-0.023683752864599],[0.12510092556477,0.057424981147051,0.006783508695662],[-0.080148369073868,-0.21191492676735,0.15124328434467]],[[-0.036031670868397,0.11463309079409,0.14709550142288],[-0.017284713685513,0.05167406052351,0.032787512987852],[-0.023630630224943,-0.0040361387655139,-0.0057520014233887]],[[0.015509601682425,-0.11022040992975,0.022210825234652],[0.064492031931877,0.044000945985317,-0.015300059691072],[-0.016820233315229,0.15871270000935,0.15235096216202]],[[-0.090499773621559,-0.095955923199654,0.027068141847849],[-0.033404648303986,-0.18335796892643,-0.093242712318897],[-0.081510931253433,0.05689462274313,-0.028815533965826]],[[0.056729163974524,0.084531404078007,0.071711502969265],[-0.1314505636692,0.073995269834995,0.01893557049334],[0.0023941595572978,0.036415744572878,-0.012600116431713]],[[-0.0407983250916,0.074146084487438,-0.11187718808651],[-0.12507680058479,-0.012675560079515,-0.12884798645973],[0.036168482154608,-0.077013425529003,0.095174372196198]],[[-0.11133043467999,0.024261524900794,-0.10784465074539],[0.071599282324314,-0.028497589752078,-0.047970902174711],[-0.0014185906620696,0.018142694607377,-0.10174705088139]],[[-0.10335882753134,0.085973016917706,0.085036419332027],[-0.095901980996132,-0.041238877922297,0.15997475385666],[0.098718583583832,0.017396435141563,-0.040223453193903]],[[-0.031762134283781,-0.021754005923867,-0.02907538972795],[-0.19825823605061,-0.11905492842197,-0.013311538845301],[0.022641589865088,-0.019672753289342,0.090602979063988]],[[-0.0056592323817313,-0.039120458066463,0.11151238530874],[-0.039504311978817,-0.019286099821329,0.0055112917907536],[-0.11188815534115,-0.089817240834236,-0.14703190326691]],[[-0.11775746196508,0.079558812081814,0.084162421524525],[0.044234741479158,0.022015491500497,0.071025006473064],[-0.1191518753767,-0.16199287772179,-0.093554638326168]],[[0.2048315256834,0.090623132884502,0.054652389138937],[0.086148872971535,-0.016728494316339,-0.038609568029642],[-0.025915140286088,0.038799986243248,0.12479469180107]],[[0.036368940025568,-0.091518469154835,0.04270027577877],[-0.035389594733715,-0.15048950910568,-0.056857839226723],[0.10482061654329,0.0041299955919385,0.018274620175362]],[[-0.046666976064444,-0.029941126704216,-0.037520840764046],[0.0076100020669401,0.068523876368999,-0.012624969705939],[0.0043520103208721,0.037892065942287,-0.13864500820637]],[[0.058871686458588,0.019897257909179,0.030265105888247],[0.13033702969551,0.014028969220817,-0.11088812351227],[-0.030582621693611,-0.034126091748476,0.031834460794926]],[[-0.058475960046053,-0.062284655869007,0.053620286285877],[0.22718331217766,0.081512778997421,-0.12527467310429],[0.070507533848286,-0.11447930335999,-0.096702121198177]],[[0.12723688781261,0.27407816052437,0.012482019141316],[0.042853411287069,0.077824890613556,-0.11558652669191],[-0.011070309206843,0.090131156146526,-0.020872494205832]],[[0.032711118459702,-0.010953080840409,-0.1217008382082],[0.059701893478632,0.034115705639124,0.028723610565066],[-0.041260674595833,-0.17656172811985,-0.016180070117116]],[[0.059401553124189,0.024787481874228,-0.038568671792746],[-0.085322216153145,-0.13193678855896,0.064336307346821],[0.022863836959004,0.016370587050915,0.091002255678177]],[[-0.098397560417652,-0.065110825002193,-0.069666251540184],[0.0079050743952394,0.045619253069162,0.11626722663641],[0.0046054413542151,-0.05307899042964,-0.076573692262173]],[[-0.1924439817667,-0.022451432421803,-0.10426131635904],[-0.03902555629611,-0.053646754473448,-0.029267260804772],[-0.062956981360912,0.025825001299381,0.055154275149107]],[[0.045134510844946,-0.1404654532671,-0.27698516845703],[-0.13644444942474,-0.20619237422943,-0.12889063358307],[-0.08200442045927,-0.10680271685123,-0.10530762374401]],[[-0.13491542637348,-0.072591580450535,-0.042274706065655],[0.11485052108765,-0.020335109904408,-0.11390197277069],[-0.085173361003399,0.0069112349301577,0.0014979555271566]],[[0.026731325313449,0.15224300324917,0.11669953167439],[-0.010760112665594,-0.061170689761639,0.026126597076654],[0.13654670119286,0.016547689214349,0.064410828053951]],[[0.027604890987277,-0.090805895626545,0.029518039897084],[-0.10348867624998,-0.11649363487959,-0.053896151483059],[-0.056440729647875,-0.028495086356997,-0.071662552654743]],[[-0.12438204139471,-0.076528541743755,-0.0037509852554649],[-0.048385608941317,-0.058848343789577,0.041820276528597],[-0.13974441587925,-0.0594845674932,-0.012537421658635]],[[-0.023306621238589,-0.045550353825092,-0.072411812841892],[-0.023614589124918,0.10112189501524,-0.029559977352619],[-0.060769353061914,0.0079246927052736,-0.017616108059883]],[[0.023795373737812,0.073042429983616,0.042740937322378],[-0.072216652333736,-0.076394371688366,0.0011826094705611],[0.014650544151664,-0.086614310741425,-0.015285624191165]],[[0.15328860282898,0.065520897507668,-0.056175030767918],[0.032563760876656,-0.16342109441757,-0.12205623835325],[0.13834252953529,0.11776520311832,0.12072379887104]],[[0.025021595880389,-0.018580246716738,0.0053568910807371],[0.016964191570878,0.066665329039097,-0.010113036260009],[-0.016114100813866,0.0071570868603885,-0.071968726813793]],[[0.10535521805286,0.21594569087029,-0.023786569014192],[-0.068009965121746,-0.12588648498058,-0.028701977804303],[-0.064886912703514,0.060866646468639,0.010897701606154]],[[-0.11564614623785,0.0035812174901366,0.25750690698624],[0.11123094707727,0.079841487109661,0.024454785510898],[-0.13765366375446,0.026770438998938,-0.1344136595726]],[[0.017627693712711,-0.021657289937139,0.0053017549216747],[-0.152050152421,-0.11932166665792,-0.11333546042442],[0.021296074613929,-0.02307266741991,0.098740875720978]],[[-0.13446141779423,-0.2045756727457,-0.3134528696537],[0.030401898548007,-0.041631329804659,-0.023366725072265],[-0.028842531144619,-0.0881377607584,0.063258290290833]],[[0.036548685282469,0.058493811637163,0.035797312855721],[-0.042840544134378,-0.12232468277216,-0.052694842219353],[0.15058732032776,0.20965877175331,0.13293398916721]],[[0.0074589098803699,-0.024425722658634,-0.0011261010076851],[-0.023873684927821,-0.19576540589333,-0.046624455600977],[-0.018327362835407,-0.036960121244192,-0.014476354233921]],[[0.09161090105772,-0.021268224343657,0.036029174923897],[0.060388561338186,-0.15179741382599,-0.068842865526676],[-0.007707797922194,-0.13419431447983,0.020530365407467]],[[0.014440380036831,0.013108533807099,0.076306506991386],[0.15425081551075,0.041741289198399,-0.13055093586445],[-0.016843529418111,-0.20007537305355,-0.12879404425621]],[[0.11518008261919,0.038229219615459,0.12810084223747],[0.036318749189377,0.041813772171736,0.040480244904757],[0.032184544950724,-0.0027599451132119,0.040057715028524]],[[0.016467204317451,0.04612997546792,-0.011943941004574],[0.017075164243579,0.090788438916206,-0.013811168260872],[-0.035447724163532,-0.01333580352366,-0.085207313299179]],[[0.038666732609272,0.26205611228943,-0.18205459415913],[-0.010412552393973,0.095440618693829,0.055899020284414],[0.096664771437645,0.036085214465857,-0.050657331943512]],[[-0.01194641366601,-0.14560244977474,0.14192533493042],[0.0045429966412485,-0.058600384742022,-0.099640466272831],[0.095240160822868,0.0074224616400898,-0.0021977364085615]],[[-0.041692767292261,-0.066778026521206,-0.11683700233698],[-0.1612096875906,-0.10646106302738,0.085153490304947],[-0.070535235106945,-0.094323962926865,0.025762161239982]],[[-0.024527290835977,-0.039445292204618,0.10530205070972],[-0.042390912771225,-0.10647594183683,0.032164126634598],[0.061981726437807,0.12565751373768,-0.047879323363304]],[[0.061055857688189,0.011796168982983,0.017246088013053],[0.0042722471989691,-0.064454354345798,0.05996685475111],[0.0303058270365,-0.062663540244102,0.12178612500429]],[[-0.067305035889149,-0.0039764363318682,0.17845258116722],[0.16726176440716,-0.035003013908863,-0.46282348036766],[0.014548556879163,0.076464124023914,0.21282771229744]],[[-0.0057772980071604,-0.18180039525032,-0.20000649988651],[-0.18171578645706,-0.012119720689952,-0.0080271288752556],[0.076952278614044,-0.016372377052903,0.14155888557434]],[[-0.21743534505367,-0.16458469629288,-0.13622598350048],[-0.16851611435413,-0.16128967702389,-0.23196175694466],[0.064441598951817,-0.13445460796356,0.049403000622988]],[[0.011532560922205,-0.010792107321322,0.19226694107056],[-0.066357500851154,0.12734819948673,0.17816369235516],[-0.14649048447609,-0.030190046876669,0.00091565266484395]],[[-0.050912663340569,0.033395428210497,0.0067647877149284],[-0.021059794351459,-0.094468511641026,-0.1288884729147],[0.066343694925308,-0.059384889900684,0.026190709322691]],[[-0.05855343490839,0.0030053511727601,-0.173787727952],[0.067106403410435,-0.012952140532434,0.12103883177042],[-0.082459799945354,-0.03624702244997,0.021800583228469]],[[-0.1076986566186,-0.10364749282598,0.13417574763298],[-0.051701370626688,0.03182191029191,-0.016986612230539],[-0.043843727558851,-0.041059359908104,0.080637969076633]],[[0.013310299254954,-0.039546921849251,-0.11165404319763],[-0.17181690037251,0.0009751605684869,0.0021641955245286],[-0.062341846525669,0.00099595671053976,0.075156785547733]],[[-0.11925200372934,-0.019330527633429,-0.10397493839264],[0.0096826776862144,-0.056770104914904,-0.064478740096092],[-0.063663668930531,0.068971201777458,0.12365736812353]],[[-0.13006110489368,-0.11736855655909,-0.088824689388275],[-0.09396581351757,-0.15562596917152,-0.24939434230328],[-0.02919646538794,-0.042232263833284,-0.024835549294949]],[[-0.021662134677172,0.057674206793308,0.015393163077533],[0.013971110805869,-0.053268741816282,0.18292304873466],[-0.06931260228157,0.19872510433197,-0.030373256653547]],[[-0.013330639339983,-0.013176715932786,-0.075557075440884],[-0.075458668172359,-0.10205214470625,0.022013133391738],[0.14057213068008,-0.032498374581337,-0.17693454027176]],[[-0.1072933152318,-0.11008992791176,0.1646476238966],[0.21704785525799,-0.038365740329027,0.15517418086529],[0.017394384369254,-0.1103683412075,-0.0056732008233666]],[[0.034629363566637,-0.025644961744547,-0.0034770944621414],[-0.095415756106377,-0.051227875053883,-0.079437471926212],[-0.15699644386768,0.005461547523737,-0.046881821006536]],[[0.068429499864578,-0.0155158797279,-0.19173255562782],[-0.003583007492125,0.0085105858743191,-0.032874409109354],[0.0042504505254328,-0.0066829365678132,-0.062607988715172]],[[-0.15878315269947,-0.10266394913197,-0.14199332892895],[0.18291065096855,0.080608114600182,0.031889420002699],[-0.077150993049145,-0.090698972344398,-0.1483496427536]],[[0.041989855468273,-0.034943677484989,-0.038351766765118],[0.02776899933815,0.066726051270962,0.0020822731312364],[-0.0002495473891031,-0.065902180969715,-0.12124112248421]],[[-0.017941661179066,0.0061580338515341,0.13684891164303],[0.079458065330982,-0.051096826791763,-0.082223869860172],[-0.020534552633762,0.026941010728478,-0.059102196246386]],[[0.12888535857201,-0.079547077417374,-0.12948267161846],[0.037630531936884,-0.048434566706419,0.046147357672453],[0.064398154616356,0.053566634654999,0.07385465502739]],[[-0.0096132215112448,0.14134348928928,0.18785418570042],[0.035508722066879,0.040325827896595,-0.051861047744751],[-0.10436001420021,-0.067813947796822,-0.026314754039049]],[[-0.10609454661608,0.084442585706711,0.13766399025917],[0.0011575991520658,-0.038759082555771,-0.084046080708504],[0.12536244094372,0.12015483528376,0.028181931003928]],[[-0.040102675557137,0.12342754006386,-0.097906984388828],[0.0013755224645138,-0.14179204404354,-0.078944213688374],[0.017608670517802,0.10850204527378,-0.052318643778563]],[[0.09512635320425,-0.0069061685353518,0.15691922605038],[0.0015772841870785,-0.085178062319756,0.10799662023783],[0.078704759478569,0.11613641679287,0.033070143312216]],[[0.15282860398293,0.21433211863041,0.22345675528049],[-0.026522161439061,-0.035673692822456,0.036823660135269],[-0.033311251550913,-0.06726036220789,-0.052219569683075]],[[0.042299713939428,-0.034063179045916,0.020177468657494],[0.13526287674904,-0.13509386777878,0.0079498458653688],[0.078361302614212,-0.1750757843256,0.043821562081575]],[[-0.071697935461998,-0.006839067209512,0.030391670763493],[-0.065928034484386,-0.039500039070845,0.038522884249687],[-0.0082245049998164,0.0632404088974,0.048450630158186]],[[0.0041702929884195,-0.063000865280628,-0.033651016652584],[0.023664625361562,-0.087676167488098,0.1227585375309],[-0.1067995429039,-0.022380007430911,-0.055963445454836]],[[-0.11925914883614,0.070568218827248,0.0064168660901487],[0.13464809954166,-0.064145438373089,-0.13281285762787],[-0.056374792009592,0.046081017702818,-0.10846444964409]],[[0.014742744155228,-0.064251594245434,0.0046102912165225],[0.011462005786598,0.012833181768656,0.061313357204199],[0.022856842726469,0.039751060307026,0.01707673445344]],[[-0.0091104134917259,-0.1015512496233,-0.033752951771021],[0.14078585803509,0.071410275995731,0.20071589946747],[0.043201066553593,0.056664317846298,0.06725750118494]],[[-0.014707035385072,-0.083554655313492,-0.10697662085295],[-0.056477397680283,0.045602191239595,-0.14624840021133],[0.053388070315123,-0.11956502497196,-0.13158275187016]],[[-0.052194248884916,-0.035673420876265,0.16900497674942],[0.064420990645885,0.16105942428112,0.15254779160023],[0.047641560435295,-0.0016856831498444,0.077253878116608]],[[-0.0380639731884,-0.087174966931343,0.24262523651123],[-0.047118596732616,-0.031816262751818,-0.11511350423098],[0.017165428027511,-0.017595222219825,0.02794381044805]],[[-0.051008835434914,0.086737617850304,0.10893178731203],[-0.1640290170908,-0.15335375070572,-0.070205420255661],[0.19861200451851,0.08100451529026,-0.015170801430941]],[[0.040555126965046,-0.00918482337147,-0.031286910176277],[-0.12989896535873,-0.20347443223,-0.1354745477438],[0.050216361880302,0.17230644822121,0.10363789647818]],[[0.0098189478740096,0.10068595409393,0.038416635245085],[-0.098753310739994,-0.13203729689121,0.014986368827522],[0.072086982429028,0.05488857626915,-0.069231122732162]],[[0.040270905941725,-0.044803194701672,0.1729714423418],[0.010344741865993,0.060887146741152,-0.024662714451551],[0.055156726390123,0.015090295113623,0.065739370882511]],[[-0.087953574955463,-0.011517928913236,-0.059932556003332],[-0.032208222895861,0.05400275811553,0.0022024377249181],[-0.088982626795769,-0.082338429987431,0.039484385401011]],[[0.02854835614562,-0.056764725595713,0.091830395162106],[-0.035983860492706,0.12767839431763,0.14683695137501],[0.024645114317536,-0.027366820722818,-0.0010841013863683]],[[0.14815451204777,0.062645748257637,-0.038766782730818],[-0.0012721896637231,-0.068278975784779,0.040675669908524],[0.050971664488316,0.037715930491686,-0.077701456844807]],[[0.0037443081382662,-0.044925726950169,-0.019174672663212],[-0.00061602721689269,-0.015248574316502,0.038359344005585],[-0.05856966599822,0.014193255454302,-0.052248302847147]],[[0.060852110385895,-0.069230124354362,-0.050522085279226],[-0.041089445352554,-0.059587579220533,-0.22233664989471],[0.012666226364672,-0.090320333838463,0.066097028553486]],[[-0.019866928458214,-0.19026166200638,-0.069056741893291],[0.085560873150826,-0.14810536801815,0.041115939617157],[0.011842339299619,-0.066574566066265,-0.11986285448074]],[[-0.022654732689261,-0.13335798680782,-0.10876992344856],[0.074664287269115,-0.044228632003069,0.045465808361769],[0.0047920793294907,-0.06492642313242,-0.074287094175816]],[[-0.089061863720417,0.039358898997307,0.010721122846007],[0.116315305233,-0.039533484727144,0.065215803682804],[0.1830799728632,-0.057099707424641,-0.060696937143803]],[[-0.12684869766235,-0.087091952562332,-0.1083272472024],[0.028745550662279,-0.015279485844076,-0.010447002016008],[-0.016622830182314,0.042441457509995,-0.061587434262037]],[[0.054892882704735,0.011669647879899,-0.044431742280722],[0.13365305960178,0.059127897024155,0.038288969546556],[-0.066128186881542,-0.12194181978703,-0.12800553441048]],[[0.051320683211088,0.10672245919704,0.0091602932661772],[0.10656836628914,0.04934649169445,-0.047670088708401],[0.014984684996307,-0.042366124689579,0.09710681438446]],[[0.039013598114252,-0.015522154979408,0.066159583628178],[-0.040310595184565,0.035609494894743,-0.002096323762089],[-0.058735132217407,-0.010353605262935,-0.00056890200357884]],[[0.033706992864609,0.058781884610653,-0.015990190207958],[0.14485926926136,0.14313021302223,-0.01698062568903],[0.071481913328171,-0.10422819107771,-0.13632923364639]],[[-0.015025658532977,-0.15905188024044,-0.15148040652275],[-0.13532675802708,-0.018201934173703,0.16242748498917],[-0.027302680537105,0.01262070145458,-0.027830911800265]],[[0.090959511697292,0.17762076854706,-0.21297836303711],[0.013959914445877,0.12665213644505,0.01118393894285],[0.050183776766062,0.011261532083154,0.020974099636078]],[[-0.065769337117672,-0.13085135817528,-0.15050393342972],[-0.26614338159561,-0.057870823889971,-0.070636734366417],[-0.0922936424613,-0.0655597448349,-0.085054010152817]],[[-0.037169948220253,0.041240215301514,0.17128720879555],[0.078211449086666,0.0056291483342648,0.054523382335901],[-0.095880910754204,0.059325497597456,-0.0094029372557998]],[[0.057705324143171,-0.074112847447395,-0.003265987848863],[-0.14117154479027,-0.023911394178867,-0.061290804296732],[-0.013120898976922,0.1277724802494,-0.049881517887115]],[[0.026375839486718,-0.079609975218773,-0.10392690449953],[-0.19413965940475,-0.099571324884892,0.003740849904716],[0.10458894819021,-0.017291314899921,0.018701707944274]],[[-0.028814213350415,-0.016499068588018,0.19700506329536],[0.0080627277493477,-0.089545376598835,-0.023740952834487],[0.0075576701201499,-0.012154148891568,-0.0097397519275546]],[[0.025446550920606,0.15151152014732,0.20246554911137],[0.014422907494009,-0.15532304346561,-0.1093550696969],[-0.010549281723797,-0.014047862030566,-0.094100669026375]]],[[[0.048677630722523,0.034546848386526,-0.026480980217457],[0.015440207906067,0.042845617979765,0.013539113104343],[-0.047640968114138,0.18583752214909,0.13699251413345]],[[0.13524831831455,0.0059528327547014,-0.027747476473451],[-0.18779395520687,-0.091753654181957,-0.045925535261631],[-0.043208010494709,-0.097863532602787,0.062602177262306]],[[0.078541092574596,0.080138169229031,0.054757684469223],[0.011884393170476,-0.0044759782031178,0.067593120038509],[0.0071905250661075,0.096504457294941,0.041707973927259]],[[-0.084423959255219,-0.071599990129471,-0.17356000840664],[0.0061967838555574,-0.0034444332122803,0.0057285809889436],[0.035439763218164,0.13368029892445,0.12412361800671]],[[-0.11432383954525,-0.13156726956367,-0.0036670060362667],[-0.10618468374014,0.046122167259455,-0.0024807560257614],[-0.06682775914669,-0.08024936914444,-0.048331685364246]],[[-0.22670941054821,0.050619460642338,-0.051721807569265],[-0.16655057668686,-0.050199057906866,0.23526422679424],[-0.23535925149918,0.0095950597897172,0.34816387295723]],[[-0.063210248947144,0.070347756147385,0.018089011311531],[0.15581002831459,0.032938066869974,-0.086036771535873],[-0.003380369162187,0.040497712790966,0.10034155845642]],[[-0.027691185474396,0.02860595844686,0.032322507351637],[-0.32840374112129,0.051445804536343,-0.057604663074017],[-0.088167324662209,0.08377768099308,-0.051247090101242]],[[0.17284078896046,-0.048196107149124,0.15069399774075],[0.029268633574247,0.051241997629404,-0.012280673719943],[0.04443671181798,-0.13225254416466,-0.069341585040092]],[[0.0044653755612671,0.097383961081505,0.0046327193267643],[-0.023820428177714,-0.09284371137619,-0.016818655654788],[-0.077398017048836,-0.13377283513546,-0.0025536303874105]],[[0.078248880803585,-0.0050580338574946,0.088900595903397],[-0.014894434250891,-0.0083434032276273,-0.14028713107109],[-0.066148348152637,-0.01254232507199,0.078191608190536]],[[-0.049495432525873,0.034079156816006,-0.00012642596266232],[-0.05185791477561,0.073102042078972,-0.051926594227552],[0.13069808483124,0.0097114499658346,-0.095035299658775]],[[0.035418659448624,-0.059404227882624,-0.14138266444206],[0.013276610523462,-0.14791211485863,-0.05045361071825],[-0.042376313358545,-0.17644685506821,-0.099855802953243]],[[0.035956416279078,0.035774122923613,-0.061237368732691],[0.070917896926403,-0.08587596565485,-0.0032465760596097],[0.095316961407661,-0.057768203318119,-0.031580075621605]],[[-0.11790728569031,-0.035153586417437,0.0056383167393506],[-0.07934495061636,0.01156781706959,-0.011356560513377],[0.077452585101128,0.20679956674576,0.161849796772]],[[-0.025589065626264,0.041520304977894,0.15393701195717],[-0.018521560356021,0.048169583082199,0.08473926782608],[-0.069636709988117,-0.10983099043369,-0.0013837127480656]],[[-0.0062866159714758,0.0043176175095141,-0.064960978925228],[-0.086777240037918,0.0046843318268657,-0.14464256167412],[-0.15132257342339,0.13228569924831,0.053854670375586]],[[0.21322217583656,-0.044096115976572,-0.16681171953678],[-0.081692494452,-0.00037960294866934,-0.26025933027267],[0.067111931741238,-0.03612283244729,-0.16584053635597]],[[-0.013427305966616,-0.08039778470993,0.24678993225098],[0.13273108005524,-0.012170952744782,0.13763131201267],[-0.14086243510246,-0.11054820567369,0.18808224797249]],[[-0.14914479851723,-0.050202336162329,0.16507138311863],[0.069207586348057,0.03147292137146,0.032134566456079],[0.076639451086521,-0.085539430379868,0.005239468999207]],[[-0.034276623278856,-0.11065600067377,-0.15120793879032],[-0.045230865478516,0.13127914071083,-0.18158242106438],[-0.10469321906567,0.034945037215948,-0.11055477708578]],[[-0.019704634323716,-0.034925475716591,0.13563324511051],[0.066573902964592,0.031379144638777,0.015937929973006],[0.050704661756754,-0.073127649724483,0.10699658840895]],[[-0.1536750793457,0.032476183027029,0.11378387361765],[-0.14424799382687,0.037431161850691,-0.035097789019346],[-0.039786834269762,0.096025407314301,-0.013721237890422]],[[-0.1265891045332,0.12208451330662,-0.15982623398304],[-0.13457688689232,-0.084899321198463,0.006315918173641],[-0.016797356307507,0.099699504673481,0.16442504525185]],[[0.15146496891975,0.01733841188252,0.069272018969059],[-0.11392717063427,-0.10325371474028,-0.077123433351517],[-0.047811064869165,-0.11773690581322,0.11475415527821]],[[0.005592348985374,-0.11309216916561,-0.10072557628155],[0.0097315860912204,-0.043036121875048,-0.071325294673443],[0.048628348857164,0.16854256391525,0.027619019150734]],[[0.074030548334122,-0.008986690081656,0.065299414098263],[0.10084414482117,-0.0238735396415,0.071534089744091],[0.33522969484329,0.0081733204424381,0.075905010104179]],[[-0.084646835923195,-0.019596144556999,-0.18125568330288],[-0.093937754631042,-0.034539237618446,0.051162820309401],[-0.07364846765995,0.021959425881505,-0.050291143357754]],[[0.029607260599732,-0.048915613442659,0.0073952549137175],[-0.062750570476055,-0.084823958575726,-0.0463473983109],[0.12430878728628,-0.063125491142273,-0.11674150824547]],[[0.0017867975402623,0.023867255076766,0.025393644347787],[-0.05853034928441,0.028850531205535,0.18757218122482],[-0.066559791564941,-0.098328694701195,0.09916877746582]],[[0.034123942255974,0.0072511346079409,-0.07378001511097],[-0.020721938461065,-0.0048641236498952,-0.16194979846478],[0.17212682962418,0.016216618940234,-0.12156880646944]],[[-0.033059246838093,0.083658576011658,-0.17606756091118],[-0.14931552112103,0.0783466771245,-0.040063310414553],[0.057320240885019,0.021005067974329,-0.19960018992424]],[[-0.065087921917439,-0.061650428920984,0.019563129171729],[0.062332466244698,0.1188872307539,0.12199509143829],[0.074569471180439,-0.0027157766744494,0.062942177057266]],[[-0.096866853535175,0.065975792706013,0.14635010063648],[-0.012337486259639,-0.036504790186882,0.0088524324819446],[-0.035498980432749,0.17265503108501,-0.069697596132755]],[[0.14255663752556,-0.14972592890263,-0.190280392766],[0.034261424094439,-0.0087236650288105,-0.21170596778393],[0.043538235127926,0.15356041491032,-0.25378522276878]],[[-0.071681000292301,0.049330729991198,0.06563176959753],[-0.092875398695469,0.092120327055454,0.098806902766228],[0.085298418998718,0.033565182238817,-0.056761562824249]],[[-0.13851338624954,-0.046175997704268,0.19151428341866],[-0.070613741874695,-0.037103597074747,-0.087550573050976],[-0.079137057065964,-0.068111829459667,0.017402056604624]],[[-0.1482587903738,0.024932704865932,0.10214509814978],[-0.029809160158038,0.011125421151519,-0.040076192468405],[0.017699856311083,0.016619121655822,-0.25571599602699]],[[0.080519504845142,-0.025059141218662,-0.079884044826031],[0.0099299112334847,-0.082752913236618,0.018788931891322],[-0.11286977678537,-0.14831556379795,-0.042352300137281]],[[-0.048490017652512,-0.060166493058205,0.062693066895008],[0.12363542616367,-0.12744575738907,0.079895734786987],[-0.035964291542768,0.077840335667133,0.023211218416691]],[[0.056294146925211,0.17226688563824,-0.086947500705719],[0.13180376589298,-0.029367838054895,-0.0011511282064021],[0.12760630249977,0.068083882331848,-0.048557329922915]],[[-0.0085954759269953,0.14969184994698,0.052540052682161],[0.047236263751984,-0.011003923602402,0.0094565702602267],[0.060599386692047,0.067390330135822,0.065928414463997]],[[0.051126625388861,-0.097892977297306,-0.001585618709214],[0.131751999259,0.065989390015602,-0.11310774832964],[0.20171247422695,-0.018566211685538,-0.064027518033981]],[[0.0062266453169286,-0.08239122480154,0.014438341371715],[0.060515481978655,0.0048151281662285,-0.050849959254265],[0.028373539447784,-0.022099789232016,-0.061396550387144]],[[-0.25912842154503,-0.059022735804319,-0.13016347587109],[-0.043053895235062,-0.054004639387131,0.019441343843937],[-0.034091252833605,-0.040632653981447,0.0070942239835858]],[[-0.068295292556286,-0.085194066166878,0.024706451222301],[-0.0028226731810719,-0.090058848261833,0.052501548081636],[-0.02551806345582,-0.070458628237247,0.1254410892725]],[[-0.028634242713451,0.082149520516396,-0.028124989941716],[0.05103588104248,0.089856676757336,-0.045480836182833],[-0.046745397150517,-0.063516728579998,-0.011116374284029]],[[0.024758644402027,0.09716671705246,-0.11148177832365],[-0.24938215315342,-0.079833403229713,0.0069321542978287],[0.12632618844509,-0.065114088356495,-0.0048717288300395]],[[-0.18606851994991,0.060289453715086,0.083328925073147],[-0.086385890841484,0.012671981006861,-0.015385869890451],[0.13404309749603,0.0028735783416778,-0.067169949412346]],[[-0.1285914182663,-0.11209421604872,0.015444333665073],[-0.037926137447357,-0.03629095107317,0.1309859007597],[0.097515687346458,0.036909069865942,0.088743463158607]],[[0.027884950861335,0.025550410151482,-0.025330424308777],[-0.050061583518982,0.028142955154181,-0.22372296452522],[-0.072522290050983,0.059801567345858,0.061856850981712]],[[0.066922254860401,0.10627654194832,0.046722810715437],[-0.041000574827194,-0.052447889000177,-0.08811216801405],[0.089667126536369,-0.0053830314427614,-0.095815807580948]],[[-0.097240619361401,-0.1030511111021,-0.062372460961342],[0.02198601514101,-0.088941030204296,-0.040843229740858],[0.019375897943974,-0.04787315800786,-0.04067650437355]],[[-0.055649265646935,0.052483219653368,-0.1132568269968],[0.052772775292397,0.11312134563923,0.14316433668137],[-0.088486611843109,0.073195084929466,0.025259621441364]],[[-0.14413219690323,-0.0051779011264443,-0.055205807089806],[-0.11670433729887,-0.089816048741341,-0.024171715602279],[0.17905449867249,0.058997921645641,0.052294846624136]],[[0.013011345639825,0.08966475725174,-0.050289399921894],[-0.028503926470876,0.046986151486635,-0.014670670963824],[-0.081184715032578,-0.048442658036947,-0.054169371724129]],[[-0.15410940349102,0.010240846313536,0.14744721353054],[-0.098794378340244,-0.045618686825037,0.043197833001614],[-0.035180162638426,-0.015133637003601,0.016953850165009]],[[0.053979106247425,-0.16590856015682,-0.10806625336409],[0.037709321826696,-0.017638225108385,-0.12600141763687],[-0.079564824700356,-0.10079606622458,-0.14534714818001]],[[0.049277294427156,0.025268087163568,-0.075820229947567],[0.046071201562881,-0.07881160825491,-0.15103191137314],[0.16507065296173,0.095007732510567,-0.022733207792044]],[[-0.062892265617847,0.029741190373898,0.005900009535253],[-0.16145496070385,-0.052709620445967,-0.027138508856297],[0.078864485025406,0.008175696246326,0.053155194967985]],[[-0.065191030502319,0.021670753136277,-0.148810967803],[-0.06337658315897,0.07049448788166,-0.10808651894331],[-0.20045286417007,0.10357040911913,-0.13776664435863]],[[-0.093117482960224,0.0002158200222766,-0.021658930927515],[-0.088107526302338,-0.070785753428936,-0.05835534632206],[-0.11484009027481,-0.27096864581108,-0.1286274343729]],[[0.20397908985615,0.044623702764511,0.037601567804813],[0.073650613427162,0.09047781676054,0.055123787373304],[-0.10370238870382,0.012509527616203,-0.11042645573616]],[[-0.094935514032841,0.13190679252148,-0.021855715662241],[0.079365141689777,0.11937288194895,-0.051473613828421],[-0.0015265301335603,0.12898662686348,-0.053771033883095]],[[-0.032809369266033,-0.012711390852928,0.029373578727245],[-0.075989328324795,-0.05946021899581,-0.068082951009274],[0.01348387543112,0.020018791779876,-0.023350346833467]],[[0.26460486650467,-0.049753960222006,-0.016086550429463],[0.16722372174263,0.0061305961571634,-0.19004806876183],[0.11022567749023,-0.035807352513075,-0.033517993986607]],[[-0.032758425921202,0.10796204209328,0.060847867280245],[0.037368275225163,0.19225649535656,-0.02669189311564],[-0.080820955336094,-0.014339349232614,-0.056438084691763]],[[0.155647829175,-0.038354035466909,0.015827868133783],[-0.077294364571571,-0.10879421979189,-0.028595048934221],[-0.023505980148911,-0.089439488947392,-0.1367883682251]],[[0.072221331298351,-0.075666517019272,-0.10056011378765],[-0.03469492867589,-0.078802935779095,-0.08460845798254],[-0.03580891340971,-0.021189706400037,0.0036874867510051]],[[-0.034791238605976,0.10291058570147,-0.20847444236279],[0.052051298320293,0.2288126796484,-0.061942808330059],[-0.025895934551954,0.070174880325794,-0.014401163905859]],[[0.0091347713023424,-0.046710975468159,-0.19055147469044],[0.0088999606668949,0.064167834818363,0.14257252216339],[-0.07382183521986,0.066760592162609,0.13930560648441]],[[-0.082974433898926,-0.12432764470577,-0.0198635738343],[0.0026846234686673,0.008304194547236,-0.071479879319668],[-0.02199468202889,-0.064426451921463,-0.036758132278919]],[[-0.067215360701084,-0.038147993385792,0.0092205479741096],[-0.052004545927048,-0.10455965995789,0.010262025520205],[0.0062967455014586,-0.00062903499929234,-0.073289394378662]],[[0.025436736643314,-0.015991190448403,0.23466995358467],[-0.084403373301029,-0.035486869513988,0.058688249439001],[-0.039985843002796,-0.052475780248642,0.0019319595303386]],[[-0.22168210148811,-0.012085577473044,-0.12036898732185],[-0.067923851311207,0.10685922205448,0.064435921609402],[-0.067405432462692,-0.089078411459923,-0.11707937717438]],[[0.013724787160754,0.080901332199574,0.1112944111228],[-0.026581631973386,-0.013923390768468,0.089946299791336],[0.10083328932524,-0.017993737012148,-0.14057792723179]],[[-0.047702834010124,-0.27717390656471,0.138911023736],[-0.14587478339672,-0.13463647663593,0.075492769479752],[-0.10439432412386,-0.19799980521202,-0.16139809787273]],[[-0.026281885802746,-0.082871995866299,0.23612573742867],[0.010065053589642,-0.11946757137775,0.15976472198963],[0.013560255989432,-0.14361275732517,-0.034646436572075]],[[0.25379365682602,-0.07754372805357,-0.13793341815472],[0.14652310311794,0.040308456867933,-0.042375717312098],[0.17453362047672,0.010332019068301,0.14580550789833]],[[-0.34785747528076,-0.1272684186697,-0.38534545898438],[0.032341111451387,0.068373158574104,-0.21800695359707],[0.022382277995348,-0.10667814314365,-0.18247522413731]],[[-0.022000551223755,-0.048180133104324,-0.12034390866756],[0.076802752912045,-0.017999812960625,-0.13984793424606],[0.055294044315815,0.012461865320802,-0.010201429948211]],[[0.055387124419212,-0.086024343967438,0.094083346426487],[0.12517300248146,-0.1817022562027,0.011005619540811],[0.16396191716194,-0.017375806346536,-0.076070554554462]],[[0.08453369140625,-0.11722994595766,-0.12568452954292],[0.083025060594082,-0.018175972625613,-0.043526414781809],[0.22572866082191,0.011241825297475,-0.0093229040503502]],[[-0.078275166451931,-0.055643945932388,-0.029754424467683],[-0.15020097792149,-0.10554083436728,-0.04443021863699],[-0.12758149206638,-0.17964461445808,-0.019954945892096]],[[0.10890287905931,0.062130857259035,0.077825658023357],[0.02998361736536,0.029680524021387,0.16973349452019],[0.0035453964956105,-0.092093326151371,0.18480046093464]],[[-0.092919297516346,-0.041462250053883,-0.091383412480354],[0.10573241859674,0.062371633946896,-0.013234498910606],[0.013772604055703,-0.00594716751948,-0.063574574887753]],[[0.050725445151329,-0.0075382734648883,-0.0099803116172552],[0.16879802942276,0.096630036830902,-0.017332123592496],[0.021667616441846,-0.034743621945381,-0.11138351261616]],[[-0.12012054026127,0.022182434797287,0.075386181473732],[-0.080745860934258,0.038562297821045,0.092079363763332],[0.022035660222173,-0.082991421222687,-0.033256724476814]],[[-0.24376133084297,0.058475911617279,0.014892383478582],[-0.12843398749828,0.16520212590694,0.041325733065605],[-0.060591988265514,0.22275370359421,0.0024864473380148]],[[0.024693582206964,-0.033729981631041,-0.057921279221773],[-9.732896432979e-05,0.019901353865862,0.13018999993801],[-0.048315551131964,-0.11974905431271,-0.10142822563648]],[[-0.14759027957916,-0.08552398532629,0.038970410823822],[-0.058771181851625,-0.011248426511884,-0.066736236214638],[0.020650058984756,-0.09328231960535,0.0056779808364809]],[[-0.0013076732866466,0.049501463770866,-0.030940186232328],[0.13759802281857,0.088265925645828,-0.14172308146954],[0.053699113428593,0.12945111095905,-0.16528896987438]],[[0.11903631687164,0.084055252373219,0.017512900754809],[-0.092215470969677,-0.078238762915134,-0.11810390651226],[0.088223978877068,-0.036944907158613,0.036679651588202]],[[-0.03212383389473,-0.17535789310932,-0.0078343087807298],[-0.067621305584908,-0.23813398182392,-0.12684728205204],[-0.003812471870333,-0.096747778356075,0.0073186783120036]],[[-0.064358331263065,-0.16780182719231,-0.024871734902263],[-0.11169055104256,0.042852625250816,0.071627244353294],[-0.16648229956627,0.066980138421059,0.073861956596375]],[[0.007985632866621,-0.095662124454975,0.055168010294437],[0.039104655385017,0.097510650753975,0.17296984791756],[0.070673622190952,-0.052213437855244,0.080797202885151]],[[-0.043334178626537,0.11371670663357,0.091766625642776],[0.055596057325602,-0.14534284174442,-0.0029541475232691],[0.10371027141809,-0.034712120890617,-0.049210909754038]],[[0.240418151021,0.057405184954405,-0.063456796109676],[0.1254203915596,0.07700652629137,-0.059838071465492],[0.062979117035866,-0.027628796175122,-0.10192030668259]],[[-0.076682329177856,-0.056613944470882,0.015068398788571],[-0.051358535885811,-0.017999341711402,-0.082870289683342],[-0.18132495880127,-0.019277434796095,-0.077400758862495]],[[-0.019840518012643,0.09682809561491,0.049260161817074],[-0.027747698128223,0.027105832472444,-0.044958990067244],[-0.01149697881192,0.037763569504023,-0.11420322954655]],[[-0.11226359009743,0.035072922706604,0.0064006499014795],[-0.088919319212437,0.045497946441174,-0.029464088380337],[-0.13676261901855,0.060550473630428,-0.022688528522849]],[[-0.094229750335217,-0.010027911514044,0.10295160859823],[0.055566374212503,0.064740583300591,0.011649683117867],[-0.0063514532521367,-0.052003540098667,-0.023914130404592]],[[-0.029783232137561,-0.02616492845118,-0.039718706160784],[0.1202856823802,-0.0019825580529869,-0.030785162001848],[0.11710898578167,-0.012055140919983,-0.10804621875286]],[[-0.068759992718697,-0.013855304569006,0.012166426517069],[-0.010224268771708,0.025374172255397,0.075311705470085],[-0.087469220161438,0.027345720678568,0.13819137215614]],[[-0.01938303001225,0.07369127124548,0.071916662156582],[-0.060963612049818,0.018832543864846,-0.082772955298424],[0.10438244789839,0.11288602650166,-0.094725988805294]],[[-0.25948402285576,0.027156302705407,-0.29909896850586],[0.048586439341307,0.014048782177269,-0.05228965356946],[0.22877570986748,0.11880745738745,0.022311067208648]],[[0.149149492383,0.029334239661694,0.0063210534863174],[0.0468545332551,0.05688988044858,-0.048143714666367],[0.069139398634434,-0.068185813724995,-0.0084851877763867]],[[0.11458390951157,-0.077455796301365,-0.04926361516118],[0.0622793212533,-0.07302837818861,0.086419835686684],[-0.11945865303278,-0.082869470119476,0.13319456577301]],[[0.056631054729223,0.16901539266109,0.079586081206799],[-0.0094726113602519,-0.0045358203351498,0.021387297660112],[-0.10747034102678,0.064831115305424,0.17911194264889]],[[-0.048995513468981,-0.0086483741179109,0.11276841163635],[-0.013212002813816,0.048671811819077,0.059922762215137],[0.048646982759237,0.10233582556248,0.11516585201025]],[[-0.038664553314447,-0.063173390924931,-0.052562471479177],[-0.069479569792747,-0.049573160707951,-0.072460301220417],[-0.053962603211403,0.055463768541813,-0.0075252330861986]],[[-0.16026863455772,0.03870664909482,0.041607245802879],[-0.0048348493874073,-0.02672833763063,-0.10256643593311],[0.057559914886951,0.090752117335796,-0.21111483871937]],[[-0.080505676567554,0.11738333106041,-0.16884861886501],[-0.066381432116032,0.10151743143797,-0.088570445775986],[-0.068406105041504,0.020869953557849,-0.10926245898008]],[[0.054155681282282,-0.12057978659868,0.13586777448654],[-0.066464059054852,0.09573045372963,-0.023743331432343],[0.057971347123384,0.015092415735126,-0.065340332686901]],[[0.26495507359505,-0.016982480883598,0.00046871311496943],[0.012045280076563,-0.13373750448227,0.029953710734844],[0.041405010968447,0.093112096190453,0.086235873401165]],[[-0.034303665161133,-0.075961425900459,0.043784260749817],[-0.01724742911756,-0.011593546718359,0.12052628397942],[0.089761324226856,-0.16088145971298,0.19000083208084]],[[-0.0076558366417885,-0.029791528359056,0.1767740547657],[-0.06853973120451,-0.01658364571631,0.008952765725553],[-0.050047967582941,0.042451098561287,0.18564720451832]],[[0.086608789861202,-0.0083430698141456,0.091921210289001],[0.027991941198707,-0.097228944301605,0.023118266835809],[0.2572905421257,0.038047764450312,0.070821791887283]],[[-0.049793884158134,0.064731128513813,-0.019364971667528],[-0.019794430583715,-0.05514245480299,-0.0085056750103831],[-0.019816387444735,0.13089781999588,-0.024467520415783]],[[0.07493482530117,0.11123505979776,-0.01040536724031],[-0.020053574815392,-0.049941252917051,-0.12552754580975],[-0.085788577795029,0.10257242619991,-0.012984710745513]],[[-0.066278226673603,-0.072306223213673,-0.027204984799027],[-0.1151546984911,0.06248289719224,-0.1024776622653],[-0.25663605332375,-0.020009268075228,-0.21702221035957]],[[0.048886399716139,-0.033854935318232,0.0075169573538005],[-0.0054770624265075,-0.0043724686838686,0.050806283950806],[0.05813704431057,0.0086540281772614,0.020114189013839]],[[-0.14541974663734,-0.17571780085564,-0.15423545241356],[0.00077578582568094,-0.096916511654854,-0.24253767728806],[0.0016338244313374,0.069953866302967,-0.069844983518124]],[[-0.037215083837509,0.0063448743894696,-0.17519165575504],[-0.12796701490879,-0.063372552394867,0.046686373651028],[-0.19973839819431,0.083261951804161,0.21133299171925]],[[-0.023759298026562,0.02981230430305,-0.051731139421463],[0.026495842263103,-0.041552666574717,-0.14013066887856],[0.0035558040253818,0.18307794630527,-0.13516199588776]],[[-0.094768881797791,0.14750155806541,-0.076577298343182],[-0.043331354856491,0.00090024567907676,-0.068041883409023],[-0.094935148954391,0.11319314688444,0.11490974575281]],[[0.056611761450768,0.11848009377718,-0.065078161656857],[-0.044233199208975,0.13854503631592,-0.050876934081316],[-0.2143778949976,0.04332922026515,-0.20872312784195]],[[-0.040382750332355,-0.066307738423347,0.14098657667637],[-0.18609169125557,-0.067351952195168,0.18504959344864],[-0.089495398104191,0.048019401729107,0.24287517368793]]],[[[-0.0014644904294983,0.039722912013531,0.015310002490878],[-0.019662903621793,-0.04305762425065,0.03665167465806],[-0.016483223065734,0.012720499187708,-0.012465852312744]],[[-0.081664688885212,0.032206632196903,-0.081600204110146],[-0.035273745656013,0.016712252050638,-0.020525654777884],[0.045371536165476,0.012567878700793,-0.033285029232502]],[[-0.0029692901298404,-0.021460842341185,-0.036642495542765],[0.030453471466899,-0.034114401787519,0.033911272883415],[0.0028611905872822,0.02217792160809,-0.026613714173436]],[[-0.027779597789049,-0.00033147525391541,-0.0092403441667557],[0.024139070883393,0.046200972050428,0.049305118620396],[-0.0071940859779716,0.023273754864931,-0.045958377420902]],[[0.056516394019127,0.047086622565985,-0.036246050149202],[0.033589877188206,-0.055378917604685,-0.036328535526991],[-0.014364900067449,0.019809935241938,-0.021329909563065]],[[-0.019428465515375,0.10359285026789,-0.036064125597477],[-0.028977567330003,-0.080697149038315,-0.025549434125423],[-0.023252733051777,0.023024775087833,-0.022054176777601]],[[0.057533040642738,0.043700613081455,-0.011343910358846],[0.054263561964035,0.039954248815775,0.0089276758953929],[0.0054288264364004,-0.046621594578028,-0.028290223330259]],[[-0.0037442506290972,0.056364808231592,0.034163437783718],[0.052149642258883,0.011362681165338,0.037838909775019],[0.046149540692568,-0.026548735797405,-0.05881317704916]],[[0.034146249294281,0.01834105886519,0.026479240506887],[-0.063994728028774,-0.010805690661073,-0.016099689528346],[0.01112846750766,-0.022017391398549,0.046368394047022]],[[-0.012315803207457,0.0025176373310387,0.047618273645639],[0.021316746249795,0.014142626896501,0.0089691113680601],[0.039536129683256,0.026801640167832,0.014075295999646]],[[-0.033458113670349,-0.0043109990656376,0.038963414728642],[0.058981787413359,-0.012535670772195,0.085856094956398],[-0.019996033981442,-0.063585169613361,0.03141313791275]],[[-0.018610311672091,-0.0090154353529215,0.048841904848814],[-0.036192860454321,-0.033169820904732,0.019467292353511],[0.048721261322498,0.048168737441301,0.00812703743577]],[[0.053378328680992,0.0073235216550529,-0.034984149038792],[0.04560387507081,0.0099136540666223,-0.004128847271204],[-0.040602281689644,-0.0069467988796532,0.036531019955873]],[[-0.027692388743162,-0.01927194185555,0.0084677003324032],[-0.013340562582016,-0.073230125010014,0.0092284791171551],[0.055850621312857,-0.11013005673885,0.057327769696712]],[[-0.06125596165657,0.02199125289917,-0.030420333147049],[-0.01269443705678,0.04207605868578,-0.016112653538585],[0.031604882329702,-0.021800385788083,-0.0086361551657319]],[[0.04112259298563,0.048497773706913,-0.0064521939493716],[-0.026738760992885,-0.024712722748518,0.057557865977287],[0.014081347733736,-0.024786615744233,-0.0073923617601395]],[[0.0050256252288818,-0.036343798041344,-0.02233705855906],[-0.020581616088748,0.04555631056428,-0.049752403050661],[-0.03554629907012,-0.0083213895559311,0.015875305980444]],[[-0.02025643363595,0.052208602428436,0.013164347968996],[-0.02620791643858,-0.063785396516323,0.040162172168493],[0.0026806113310158,0.061357833445072,0.083178959786892]],[[0.043468754738569,-0.013413954526186,-0.017493078485131],[0.015261013992131,-0.061892755329609,0.037472650408745],[-0.0080000488087535,-0.069702714681625,0.022136414423585]],[[0.076763682067394,-0.028766693547368,0.034010831266642],[-0.065464518964291,0.0073277000337839,0.049332037568092],[0.032718501985073,-0.033138249069452,0.04685515910387]],[[0.03405087813735,-0.029242068529129,-0.04788001999259],[-0.016434462741017,-0.02744965814054,-0.045189790427685],[-0.051174413412809,0.018236175179482,0.00085579382721335]],[[0.014526383019984,-0.05211503431201,0.049589294940233],[-0.020710235461593,-0.0061143259517848,0.032544199377298],[0.043141443282366,-0.019683219492435,-0.0051222946494818]],[[0.031299397349358,0.076240018010139,-0.066747255623341],[-0.026424730196595,0.04147332906723,-0.04632155969739],[-0.043440356850624,-0.066229447722435,0.053495280444622]],[[0.030970837920904,-0.020538363605738,-0.037804335355759],[0.006146278232336,-0.011033891700208,0.02825303375721],[0.026754019781947,-0.087044112384319,-0.060666188597679]],[[-0.024663819000125,-0.0052058338187635,0.016620518639684],[-0.0070187607780099,0.0035578859969974,0.001379209687002],[0.040626052767038,-0.050080087035894,0.02802637591958]],[[-0.048159133642912,-0.024237476289272,0.00018768958398141],[0.016327772289515,-0.030250845476985,-0.011863501742482],[0.0027461126446724,-0.027967944741249,-0.0083074430003762]],[[0.059364344924688,0.029344316571951,-0.017212400212884],[-0.021461684256792,0.03692027553916,-0.001213445677422],[-0.01232885196805,-0.012481632642448,0.02435046248138]],[[0.029929405078292,-0.010326499119401,0.014920294284821],[0.018820006400347,-0.065884567797184,-0.024895895272493],[0.020105082541704,-0.0076865619048476,-0.069345213472843]],[[-0.082856014370918,-0.028960796073079,0.027624938637018],[0.0070327953435481,0.03009288944304,0.031394794583321],[0.0143111795187,0.011185587383807,0.031344082206488]],[[0.013766188174486,-0.034214679151773,0.044179029762745],[-0.031321797519922,-0.015770353376865,0.047649148851633],[0.0012384756701067,0.019658675417304,-0.02154428884387]],[[0.00071454193675891,0.035159185528755,0.012980070896447],[0.029021847993135,0.031448386609554,0.0378677546978],[0.04871229454875,0.073243908584118,0.031759265810251]],[[0.050638113170862,0.021969074383378,0.04878193885088],[-0.032722663134336,0.0037754792720079,0.034015007317066],[0.011197129264474,-0.053605224937201,0.050009451806545]],[[0.0025503686629236,-0.061885386705399,0.025259699672461],[-0.037244543433189,-0.023514643311501,0.039282359182835],[-0.055802386254072,0.021064180880785,0.093725278973579]],[[0.018578765913844,0.070333935320377,0.053001530468464],[-0.0048225671052933,0.055106975138187,-0.04029343649745],[0.0035338620655239,-0.033412612974644,0.03311724960804]],[[0.022613072767854,0.017735095694661,-0.06129689514637],[0.057426702231169,0.0040082689374685,-0.019705900922418],[0.012245580554008,-0.024715550243855,-0.0068451981060207]],[[-0.020763149484992,-0.035755313932896,-0.034093666821718],[-0.016324004158378,-0.067428253591061,-0.039029307663441],[-0.033137783408165,0.014958199113607,0.05479508638382]],[[-0.081327669322491,0.025431560352445,0.017625512555242],[0.059118635952473,-0.0048250742256641,-0.028621235862374],[0.04811192303896,0.035294614732265,0.025901697576046]],[[0.033856213092804,0.033728893846273,-0.082097917795181],[-0.021498080343008,-0.005254025105387,-0.082832552492619],[-0.0040274881757796,0.019814258441329,-0.027439441531897]],[[-0.013106616213918,0.065643839538097,0.030794100835919],[-0.014919593930244,0.034360874444246,-0.020060680806637],[0.018029788509011,-0.069559574127197,-0.031794544309378]],[[0.0071705374866724,-0.054326456040144,0.025165902450681],[-0.019087385386229,-0.070206955075264,0.073226183652878],[0.00016493847942911,-0.060195945203304,0.018176032230258]],[[0.025223208591342,-0.015143308788538,-0.029239822179079],[0.019319536164403,0.057149458676577,0.065266594290733],[0.029429128393531,0.0050270347855985,-0.002539946930483]],[[0.035569310188293,0.0065500638447702,-0.027126617729664],[0.01663962751627,-0.01533913705498,0.01702987216413],[-0.019929379224777,-0.010890504345298,0.059835359454155]],[[-0.0081358375027776,-0.033038932830095,0.029135085642338],[-0.045702036470175,0.017007105052471,0.014562084339559],[0.016581173986197,-0.017438830807805,-0.029822390526533]],[[-0.054564006626606,0.013527226634324,-0.00015912717208266],[0.007911391556263,-0.0034509729593992,0.015872992575169],[0.0045046047307551,-0.019135037437081,-0.026984374970198]],[[-0.086096256971359,-0.011914778500795,0.0079263458028436],[0.0069978223182261,-0.011305409483612,0.012815634720027],[-0.00077673833584413,-0.0039122109301388,-0.0045988508500159]],[[-0.07730033993721,-0.027005100622773,-0.06006969884038],[0.045233767479658,0.01575518026948,0.065375305712223],[-0.013625035062432,0.033268310129642,0.025271002203226]],[[0.026007348671556,-0.050013791769743,0.013553357683122],[-0.035346671938896,0.0063614873215556,0.024243161082268],[-0.03121299482882,-0.030570378527045,0.035067703574896]],[[-0.028464797884226,0.030769187957048,-0.023633182048798],[0.054602481424809,0.072511300444603,5.2141680498607e-05],[0.06180601939559,-0.024163331836462,0.025909528136253]],[[-0.0037660996895283,-0.0047967024147511,0.051522266119719],[-0.054155293852091,0.026014503091574,0.038016047328711],[0.042650610208511,-0.0017060951795429,0.08516651391983]],[[-0.020128689706326,0.0078174322843552,-0.0079574203118682],[-0.049624711275101,0.0085038356482983,0.050547093153],[-0.039291683584452,0.010208708234131,0.0079826349392533]],[[-0.026709161698818,-0.040197774767876,0.03652436286211],[0.0053739850409329,0.011382379569113,-0.0017290571704507],[0.017554417252541,-0.011589783243835,-0.025638302788138]],[[-0.02364432439208,-0.018833715468645,-0.046809505671263],[0.053076598793268,0.021713739261031,0.023589462041855],[-0.0031051887199283,0.0032962327823043,0.0087499786168337]],[[0.053532741963863,0.022731399163604,-0.036489017307758],[0.05631061643362,0.071059308946133,0.028517805039883],[0.0706497579813,0.041475437581539,-0.021834500133991]],[[0.095620803534985,0.071394570171833,-0.017375165596604],[-0.046907108277082,0.010498634539545,0.013795429840684],[0.069741368293762,-0.011090617626905,-0.06188939511776]],[[0.021635603159666,-0.0028986863326281,-0.023738818243146],[0.053032197058201,-0.032234836369753,-0.0012153257848695],[-0.021604670211673,-0.042232006788254,0.009586526080966]],[[-0.0003022023010999,0.018294963985682,0.073178842663765],[-0.0082301888614893,-0.014690997079015,0.042725097388029],[0.061259519308805,-0.039208952337503,-0.00132160121575]],[[0.01368367113173,-0.060817010700703,-0.010289886966348],[0.027120547369123,-0.0016643016133457,0.011108452454209],[0.054675679653883,0.02346246689558,0.02143339253962]],[[-0.030487628653646,0.034598913043737,-0.027815757319331],[-0.014908202923834,0.010924710892141,-0.019277879968286],[-0.054662644863129,0.049006652086973,-0.086576536297798]],[[-0.049947902560234,-0.042492393404245,0.068541802465916],[-0.024511849507689,0.030013881623745,-0.026781400665641],[-0.0099920947104692,0.037564985454082,0.01558718085289]],[[-0.011559570208192,-0.028368202969432,-0.017866313457489],[-0.10133253782988,-0.015163664706051,0.040996450930834],[0.0017616208642721,-0.01818591542542,0.0031017507426441]],[[0.0056978557258844,0.019590089097619,-0.014607393182814],[-0.00041179798427038,0.016427870839834,-0.0026890330482274],[0.03596518561244,0.033551823347807,-0.037621911615133]],[[0.057593580335379,-0.0035963163245469,0.0078710205852985],[0.015016794204712,0.0054232375696301,0.034492895007133],[-0.067294836044312,-0.054367631673813,0.036960639059544]],[[0.01486315857619,-0.009812681004405,0.05636128038168],[-0.049716487526894,0.053431641310453,0.030020985752344],[0.0036641934420913,0.068631008267403,-0.04564756155014]],[[-0.01827136054635,0.058411952108145,-0.016455482691526],[0.041492696851492,0.058992367237806,-0.061552137136459],[-0.032450065016747,-0.022959176450968,0.035769026726484]],[[-0.055413920432329,0.0063896737992764,0.0073172957636416],[0.0072367386892438,-0.004298138897866,0.026783732697368],[0.012014387175441,0.0011932442430407,0.018095841631293]],[[-0.030068840831518,0.0061044162139297,-0.017077872529626],[-0.028127625584602,0.041210353374481,0.055248953402042],[-0.00077852420508862,-0.023332858458161,-0.0077656651847064]],[[-0.017117558047175,0.059341959655285,0.052576459944248],[0.036806240677834,-0.0044728294014931,-0.001085503376089],[0.061180371791124,-0.043483503162861,-0.01492172293365]],[[-0.021080050617456,-0.017354836687446,0.038588367402554],[0.049534257501364,0.044979840517044,-0.059463039040565],[-0.00050078943604603,0.028451977297664,0.016792947426438]],[[0.015102351084352,-0.013703998178244,-0.075187385082245],[0.033265016973019,-0.040014937520027,-0.08139093965292],[0.043105162680149,-0.032350596040487,-0.047539610415697]],[[0.013755654916167,0.042188003659248,0.011079922318459],[-0.039196271449327,0.0073835602961481,-0.013552080839872],[0.0029662365559489,-0.02567090280354,-0.082001820206642]],[[0.013586548157036,-0.033379659056664,0.025020226836205],[0.051336850970984,0.00045624814811163,0.06353872269392],[-0.033011980354786,0.005319734569639,0.02095297165215]],[[-0.0054841707460582,-0.0066284411586821,0.017457088455558],[-0.027759244665504,-0.0028044646605849,0.027275124564767],[0.010394723154604,-0.047675769776106,0.030210198834538]],[[-0.060364916920662,0.054888270795345,0.0087451720610261],[-0.015706289559603,-0.031883958727121,-0.019697573035955],[0.017055854201317,-0.018302753567696,0.00151369033847]],[[0.038535956293344,0.03623390942812,-0.10097815096378],[-0.018637865781784,0.061106532812119,0.05798564106226],[-0.0069334292784333,-0.064017318189144,0.0392588339746]],[[-0.06514648348093,-0.031016904860735,0.015274610370398],[-0.053333662450314,-0.0049252174794674,-0.025046639144421],[0.035934437066317,0.033156618475914,0.0087828515097499]],[[-0.029293701052666,0.0043224380351603,0.025914451107383],[0.014851333573461,-0.003707024268806,-0.0063098832033575],[-0.012155461125076,0.009158143773675,-0.077398143708706]],[[-0.04465090110898,0.029220964759588,0.017780000343919],[-0.016407016664743,-0.024980932474136,0.011486413888633],[0.10805946588516,0.026086125522852,-0.016755362972617]],[[-0.01910138502717,-0.0093670664355159,-0.07075446844101],[-0.0020348634570837,-0.0029969522729516,0.029341133311391],[0.030244478955865,-0.0057346220128238,0.044609952718019]],[[0.059065844863653,-0.071922771632671,-0.012830331921577],[0.012317671440542,0.0059254341758788,-0.033517241477966],[0.013291423209012,-0.0070546278730035,-0.052968215197325]],[[0.021297838538885,0.030580395832658,0.051847811788321],[-0.032015882432461,0.0070427632890642,0.012689261697233],[-0.035100024193525,-0.0032982097472996,0.052223946899176]],[[0.035657130181789,0.018689775839448,-0.071532964706421],[0.00032515724888071,0.02044553309679,-0.017420452088118],[-0.05379993468523,0.012263759039342,-0.066687949001789]],[[-0.063708737492561,0.023497952148318,0.017853399738669],[0.012784738093615,-0.0076031913049519,0.015371872112155],[-0.012371888384223,-0.012675843201578,0.0092018209397793]],[[0.027591241523623,-0.024875765666366,0.032911136746407],[0.028783865272999,-0.020401667803526,0.030316427350044],[0.037818472832441,0.02885146252811,0.01136196218431]],[[0.023598710075021,0.020006025210023,-0.012578207068145],[0.00092657591449097,0.011919520795345,0.0016189189627767],[-0.058881111443043,0.0049334364011884,0.017262097448111]],[[-0.048317242413759,-0.078796938061714,-0.046000719070435],[-0.058423202484846,0.031820520758629,0.066638790071011],[0.029010327532887,0.061299674212933,0.037741027772427]],[[-0.047155320644379,-0.046384397894144,0.00059188931481913],[0.035744268447161,-0.017329834401608,0.046430077403784],[0.048986691981554,-0.077320143580437,0.034151095896959]],[[0.0099339568987489,-0.023186597973108,-0.034599673002958],[0.030653450638056,0.03124637529254,-0.027967197820544],[0.041882250458002,-0.033488132059574,-0.031953576952219]],[[0.058562818914652,-0.068584725260735,0.03272445499897],[-0.013680508360267,-0.0019161377567798,0.038797147572041],[-0.0031053954735398,-0.024755420163274,0.035783875733614]],[[0.017257766798139,0.032578073441982,0.024250514805317],[0.00048046113806777,-0.0084735648706555,-0.00075767637463287],[0.03902680054307,-0.018889309838414,0.024653840810061]],[[2.41130219365e-05,0.025986306369305,-0.059687659144402],[-0.044538840651512,0.045281071215868,-0.013885244727135],[-0.015762519091368,0.0039472645148635,-0.0085572730749846]],[[0.0012744033010677,0.005291236564517,-0.046236697584391],[0.011802078224719,-0.036965698003769,0.010327270254493],[0.022387059405446,0.026200827211142,-0.020838402211666]],[[-0.0093316398561001,0.0047858534380794,0.031529657542706],[-0.023762609809637,0.031047042459249,0.053805790841579],[0.035676516592503,-0.0095106894150376,0.011175587773323]],[[-0.042374301701784,0.078176289796829,-0.065391704440117],[-0.012173473834991,0.070099018514156,0.026681201532483],[-0.036353912204504,-0.039873775094748,-0.052120827138424]],[[-0.017779100686312,-0.0029171120841056,-0.066164024174213],[-0.036087810993195,0.042879894375801,-0.043333619832993],[-0.030630242079496,-0.02550857514143,0.0012493804097176]],[[0.023306459188461,-0.0081779761239886,-0.06307078152895],[0.038752064108849,-0.0058022355660796,-0.011974721215665],[0.0048075583763421,0.056678108870983,0.062924429774284]],[[0.040842674672604,0.070892281830311,-0.057930905371904],[0.039317037910223,-0.034756544977427,0.061699088662863],[-0.040869671851397,-0.014092105440795,-0.010903378017247]],[[-0.038186363875866,-0.02306549064815,0.0054293847642839],[0.031774673610926,-0.029227374121547,-0.024510487914085],[0.018626846373081,-0.089693367481232,0.018354253843427]],[[0.012412273325026,-0.012295786291361,-0.034679740667343],[-0.0050303773023188,0.021375570446253,0.042691323906183],[0.038976743817329,-0.018387893214822,0.048743575811386]],[[0.019880674779415,0.061755057424307,-0.077646352350712],[0.0041922382079065,0.021711301058531,-0.0046750833280385],[0.017615351825953,0.0016299413982779,0.0083969188854098]],[[-0.0093473009765148,0.0073311016894877,0.0081164808943868],[0.059420548379421,-0.015801740810275,-0.036729585379362],[0.044089823961258,-0.013387576676905,-0.077131830155849]],[[-0.050138149410486,-0.044102046638727,0.021583316847682],[0.046149790287018,-0.005736768245697,0.031467761844397],[-0.048673283308744,-0.015427093021572,0.016793966293335]],[[0.021567545831203,0.028465732932091,-0.037881709635258],[0.058674000203609,0.0075502931140363,0.031454969197512],[-0.017873387783766,0.017892004922032,-0.014145132154226]],[[0.036598965525627,0.048588685691357,0.0026638808194548],[0.0018663350492716,0.0093581276014447,0.013760529458523],[0.015280825085938,-0.066289737820625,-0.04617752507329]],[[0.027324102818966,-0.029354253783822,0.070765793323517],[0.028066575527191,-0.046057105064392,0.02386418171227],[0.033124025911093,-0.0022901482880116,-0.00079687155084684]],[[0.0017145186429843,0.057712618261576,0.011949422769248],[0.055434696376324,-0.052444655448198,-0.018904250115156],[-0.027604946866632,-0.021173369139433,-0.0078021888621151]],[[0.066162250936031,-0.0038043321110308,0.0085649685934186],[-0.030274230986834,-0.067061118781567,-0.024590689688921],[-0.0044016852043569,0.005999612621963,-0.032584931701422]],[[-0.0070118079893291,-0.036741860210896,-0.014076321385801],[0.039947956800461,0.0091756144538522,-0.0068787606433034],[0.011463991366327,-0.028517927974463,0.02283245138824]],[[-0.019795641303062,0.059881780296564,0.015713764354587],[-0.024448210373521,-0.0086998734623194,0.017285704612732],[-0.057799454778433,-0.015799906104803,0.073126502335072]],[[0.026220148429275,-0.017423234879971,0.016077876091003],[0.043292324990034,-0.07746609300375,-0.016660029068589],[0.075701728463173,-0.043058037757874,0.030969964340329]],[[0.030948074534535,0.019810877740383,0.037492301315069],[-0.0077800760045648,0.022558500990272,-0.014342533424497],[-0.0050580245442688,-0.030396683141589,0.019985094666481]],[[-0.070328965783119,-0.016695510596037,0.022534957155585],[-0.043359573930502,-0.018986247479916,-0.045928228646517],[-0.015309385024011,-0.074720054864883,-0.067381285130978]],[[0.0358079187572,-0.011526081711054,0.013209781609476],[-0.0067455521784723,-0.030339151620865,-0.027997171506286],[0.0070796967484057,0.010712682269514,-0.023083293810487]],[[-0.039424922317266,-0.018948629498482,-0.034102864563465],[-0.0030543194152415,0.026903992518783,-0.066194742918015],[-0.0043894676491618,0.017256498336792,-0.084163971245289]],[[-0.0071896347217262,-0.038898468017578,-0.01574693992734],[0.011906743049622,0.050797984004021,2.9315680876607e-05],[-0.015473458915949,0.034460797905922,-0.0081332949921489]],[[0.05545449629426,-0.018453203141689,0.023800266906619],[0.0065486212261021,0.012151954695582,-0.013427865691483],[-0.024926161393523,0.002235816558823,0.016257969662547]],[[-0.033925075083971,0.057995103299618,0.0086285760626197],[-0.065442085266113,-0.034140408039093,-0.0025794038083404],[0.013274856843054,-0.0091658625751734,0.064686067402363]],[[-0.026690404862165,-0.016944104805589,0.070858903229237],[0.01247238740325,-0.030120039358735,0.037105519324541],[0.0031726383604109,-0.0050764451734722,0.029483383521438]],[[0.010178518481553,-0.0031707857269794,0.014757005497813],[0.01669604703784,0.0029742401093245,-0.0013590236194432],[0.074659004807472,0.033482536673546,0.036467988044024]],[[0.016486523672938,-0.025548232719302,0.00025888666277751],[0.045512843877077,-0.025290297344327,0.10844125598669],[0.014194201678038,-0.07986655831337,-0.0063442857936025]],[[-0.027367830276489,-0.0067173629067838,0.019143335521221],[0.028976194560528,-0.016386602073908,-0.059865418821573],[-0.025480085983872,0.031282816082239,0.014284917153418]],[[-0.028447460383177,-0.019613523036242,-0.044952478259802],[-0.087289057672024,-0.008312376216054,0.0094892671331763],[-0.061845015734434,-0.045972820371389,-0.023120416328311]],[[0.026764575392008,-0.1072249636054,-0.040902823209763],[0.014513722620904,-0.011337379924953,0.047576524317265],[0.00059814547421411,0.0039888862520456,0.0023742590565234]],[[-0.015422119759023,-0.006054034922272,0.062348831444979],[-0.0089009683579206,-0.039991963654757,0.067131385207176],[-0.0026848064735532,-0.0082472497597337,0.022913102060556]],[[0.02543243765831,-0.031709559261799,-0.046888895332813],[0.015255091711879,0.0040080901235342,0.018547533079982],[-0.074949376285076,0.037484526634216,0.033941477537155]],[[0.0079338252544403,-0.027055146172643,-0.023826152086258],[0.0093254316598177,0.004554592538625,-0.033481530845165],[0.037010040134192,0.015421233139932,-0.01605929248035]],[[-0.0043219104409218,0.01826986297965,-0.022253898903728],[0.028321957215667,0.0032261461019516,-0.0069236680865288],[-0.052938338369131,-0.0086624184623361,0.025305222719908]],[[-0.021149298176169,0.0436798222363,-0.01364519726485],[-0.042217202484608,0.049692247062922,0.012608535587788],[0.041668772697449,0.02173114195466,0.06141783669591]],[[-0.025747308507562,0.021998714655638,-0.0093045607209206],[0.012777831405401,-0.017520511522889,0.011388682760298],[-0.029903104528785,0.0040987813845277,-0.0024473485536873]]],[[[0.048077259212732,0.038971588015556,-0.059467829763889],[0.01131602562964,-0.0047338944859803,0.00923225376755],[0.036984853446484,0.018133077770472,0.026477068662643]],[[-0.016659889370203,0.032748959958553,0.045808088034391],[0.14330312609673,0.087003692984581,0.0044231028296053],[-0.014672764576972,0.012532647699118,0.0064543853513896]],[[0.014877317473292,-0.095152541995049,0.10091333091259],[0.014613349922001,-0.10761550813913,-0.045530136674643],[0.045898906886578,0.069149859249592,-0.085033856332302]],[[-0.028188755735755,0.028390916064382,0.030131688341498],[0.022380713373423,-0.083897538483143,-0.10371585190296],[0.040457792580128,-0.02175210788846,-0.081853643059731]],[[0.086588807404041,0.0084172887727618,0.068113826215267],[0.089551389217377,-0.057072605937719,0.0039984388276935],[-0.016132995486259,-0.039902944117785,-0.0315305814147]],[[-0.069545947015285,0.015824500471354,0.0031813771929592],[0.037149485200644,0.024024691432714,0.018645511940122],[0.10650923848152,-0.023579807952046,0.0738675147295]],[[0.021846896037459,-0.025720784440637,-0.10187613219023],[-0.025881106033921,-0.014655978418887,0.034642580896616],[-0.061760228127241,0.025639072060585,0.050192587077618]],[[0.056148733943701,-0.08296225965023,0.00064319669036195],[0.046899877488613,-0.024692052975297,0.066745541989803],[0.042312502861023,0.0027684699743986,-0.022858822718263]],[[0.0049084536731243,-0.060145892202854,0.15532803535461],[-0.010097279213369,0.1221532151103,-0.060117520391941],[0.036067295819521,-0.092495486140251,0.12771913409233]],[[-0.0079246312379837,0.079258874058723,-0.060770824551582],[0.060080375522375,0.0083716763183475,-0.0062121553346515],[0.010505727492273,-0.14874359965324,0.045578729361296]],[[-0.003991873934865,-0.040123008191586,0.016582291573286],[-0.0077238236553967,0.10046523064375,0.020236218348145],[0.056445755064487,0.057453658431768,-0.060832049697638]],[[0.017483586445451,0.083128966391087,-0.037166442722082],[-0.031377051025629,-0.072422683238983,-0.018416358157992],[-0.089181184768677,0.0016559620853513,-0.02574198320508]],[[-0.042033690959215,-0.11036041378975,0.015427558682859],[-0.062842816114426,-0.15376356244087,0.042381275445223],[-0.050554636865854,0.02351632155478,-0.024473298341036]],[[-0.054858196526766,0.018462512642145,-0.0042030047625303],[0.051655728369951,0.079657860100269,0.024198226630688],[0.0025408526416868,0.007761497516185,-0.035365492105484]],[[-0.063241891562939,-0.035162597894669,-0.045791659504175],[0.044178131967783,-0.061301477253437,-0.05168853327632],[-0.13783760368824,0.043555989861488,-0.017236463725567]],[[0.035216346383095,-0.041711557656527,-0.076687030494213],[-0.13445240259171,-0.01645859144628,-0.10077256709337],[0.028339402750134,-0.015378856100142,-0.083639554679394]],[[0.021331993862987,0.0032511183526367,-0.039711724966764],[0.055010937154293,0.027156390249729,-0.0046648983843625],[-0.025210861116648,-0.034184824675322,0.017191933467984]],[[0.011879151687026,0.010827635414898,-0.05362518876791],[0.037603996694088,-0.038001853972673,-0.054509051144123],[0.020923782140017,-0.070993050932884,-0.04326268658042]],[[-0.01431377325207,0.14150953292847,0.01508851069957],[0.0083602881059051,-0.057050440460443,0.060452423989773],[-0.1812825948,-0.14520731568336,-0.081535555422306]],[[-0.045227009803057,0.12922860682011,-0.062042530626059],[-0.01255114749074,0.12091770768166,-0.049906626343727],[-0.0069642798043787,-0.1048729121685,-0.040754806250334]],[[-0.091966107487679,-0.01438269764185,-0.048551343381405],[-0.054495450109243,0.00090991950128227,-0.11744382977486],[-0.033799830824137,-0.11238250136375,-0.028334135189652]],[[0.1097097992897,0.080144122242928,-0.028757128864527],[0.052365142852068,-0.01871257647872,-0.082699775695801],[-0.0314737893641,-0.042425394058228,-0.01734927482903]],[[-0.055343616753817,0.069553807377815,-0.029778067022562],[-0.01765058003366,0.030013132840395,-0.055588465183973],[-0.050374638289213,0.0020806228276342,0.014734056778252]],[[-0.10482048988342,0.020263956859708,0.054544229060411],[-0.025537498295307,0.045082356780767,0.010104664601386],[0.085060618817806,0.075899563729763,0.0077291671186686]],[[-0.06578816473484,-0.05110402405262,-0.049383722245693],[0.046524748206139,-0.11356581002474,0.0090032955631614],[0.056921795010567,0.023078681901097,-0.022249836474657]],[[0.072606720030308,0.061623856425285,0.035853993147612],[0.039250306785107,-0.036652904003859,0.061327148228884],[0.027828693389893,-0.1139975041151,0.10866697877645]],[[-0.067607238888741,0.077199295163155,0.13846147060394],[-0.064564004540443,0.057821802794933,0.10103199630976],[-0.11060812324286,0.0082347560673952,0.042375098913908]],[[-0.042683187872171,0.0069697974249721,0.17302758991718],[0.015128493309021,0.0080320341512561,-0.0046968511305749],[0.02383285574615,-0.026108691468835,-0.07889961451292]],[[0.048829331994057,-0.020499441772699,-0.0015494843246415],[0.011505451984704,-0.018727434799075,-0.020383825525641],[-0.0021828569006175,-0.0033707553520799,-0.026404220610857]],[[0.13093844056129,0.032542027533054,0.05926700681448],[-0.032348912209272,0.018419662490487,0.046158354729414],[-0.064286671578884,-0.0017444406403229,0.018740653991699]],[[0.017014645040035,0.0045309476554394,0.0057430393062532],[0.0069455741904676,-0.042537253350019,-0.065662883222103],[0.022285006940365,0.057800102978945,0.0072280000895262]],[[0.059803642332554,-0.047103095799685,-0.020835926756263],[-0.019144490361214,0.0051448084414005,-0.084012180566788],[-0.00465616164729,-0.028451943770051,0.043038576841354]],[[-0.013368797488511,-0.015856098383665,-0.013534926809371],[-0.044887166470289,-0.0025211116299033,-0.043718736618757],[-0.069784499704838,0.010249070823193,0.012641944922507]],[[-0.068685039877892,-0.13385191559792,-0.07757805287838],[-0.040175002068281,-0.0035177522804588,-0.0084559498354793],[-0.067285597324371,0.013721943832934,-0.0088393297046423]],[[-0.056110247969627,-0.12365436553955,-0.0026171368081123],[-0.0099993869662285,0.01247451081872,-0.069116912782192],[-0.02204486168921,0.015846425667405,0.018138328567147]],[[-0.10342321544886,-0.066537015140057,-0.015375561080873],[-0.075192146003246,0.069593764841557,-0.074072547256947],[-0.17788644134998,-0.056597370654345,-0.074985913932323]],[[0.057527218014002,0.042205173522234,-0.069216132164001],[-0.06828049570322,0.099182158708572,-0.073449797928333],[-0.035481460392475,0.0039615114219487,0.015463064424694]],[[-0.080200716853142,-0.0013253981014714,-0.017173258587718],[0.037708912044764,-0.014460092410445,0.055023897439241],[0.036807965487242,0.0024219476617873,0.065091356635094]],[[0.021692186594009,-0.028411773964763,0.0022136124316603],[0.03909720107913,0.047182857990265,0.029755018651485],[0.012568356469274,-0.090676598250866,0.0086275776848197]],[[0.062692493200302,0.022285589948297,-0.02727803774178],[0.012814540416002,0.041870504617691,-0.081790328025818],[0.018524901941419,0.01685506850481,0.079806745052338]],[[0.052723616361618,-0.06168394908309,0.010327532887459],[0.046253114938736,-0.054022632539272,-0.044217586517334],[-0.020586851984262,-0.1129374653101,-0.073082752525806]],[[-0.097839839756489,0.072568401694298,-0.048566106706858],[-0.040765106678009,-0.047562852501869,-0.051133561879396],[0.0041495375335217,-0.055110286921263,-0.081408485770226]],[[0.016161065548658,0.013360820710659,-0.075924672186375],[-0.025797406211495,0.0087624667212367,-0.042214691638947],[-0.053555157035589,-0.13612473011017,-0.044670440256596]],[[-0.10381443053484,-0.06800751388073,0.075046375393867],[-0.032580073922873,-0.059190768748522,0.071437492966652],[-0.017726184800267,0.048894852399826,0.10893005132675]],[[0.060065589845181,-0.037299156188965,0.01208084821701],[-0.026832470670342,-0.11480712890625,-0.085749998688698],[0.013279411010444,-0.017771413549781,-0.07749006152153]],[[0.027166392654181,0.037928875535727,-0.10573031753302],[0.041043616831303,-0.0086810998618603,-0.040051009505987],[-0.039588067680597,-0.11832193285227,0.01363234501332]],[[-0.044026162475348,0.038243528455496,0.011714404448867],[-0.075758323073387,0.029645012691617,0.023513950407505],[0.027412407100201,-0.023361913859844,0.024964567273855]],[[0.042354386299849,-0.015436499379575,-0.031389135867357],[-0.027878535911441,-0.04569873586297,0.00071390467928723],[-0.014607257209718,-0.029288668185472,0.047708503901958]],[[-0.10020314902067,0.064614899456501,0.069747544825077],[0.002894968027249,-0.038263618946075,-0.035731233656406],[0.054376807063818,-0.02190287783742,0.023168355226517]],[[0.006510513368994,-0.024055114015937,-0.063563846051693],[0.0022896372247487,-0.0012073314283043,-0.055144280195236],[0.016841351985931,0.05148159712553,-0.024163294583559]],[[-0.15280674397945,0.0028996150940657,-0.11292830854654],[-0.028706640005112,0.018419232219458,-0.028290197253227],[0.062281113117933,-0.056671813130379,-0.0099490312859416]],[[-0.073060244321823,0.0066153244115412,0.0071890810504556],[-0.024171510711312,-0.00036097812699154,-0.099958352744579],[0.026023020967841,0.093411028385162,-0.10351191461086]],[[0.021453438326716,-0.03551372513175,0.079033486545086],[-0.046524833887815,-0.095959275960922,0.029065182432532],[-0.042172878980637,-0.068450957536697,0.069907166063786]],[[-0.066132873296738,-0.0052628237754107,-0.0056550181470811],[-0.01401695702225,0.044436190277338,-0.11491707712412],[-0.010981237515807,-0.10608617961407,-0.051263149827719]],[[-0.026821985840797,-0.04207730665803,-0.049135599285364],[-0.020160682499409,-0.040526781231165,-0.025386923924088],[0.085871905088425,-0.031332444399595,-0.0018040065187961]],[[0.034023210406303,0.021862534806132,-0.0034319465048611],[0.040033139288425,-0.098486669361591,-0.043563973158598],[-0.065396420657635,-0.062621787190437,-0.046086706221104]],[[-0.011809524148703,0.012371799908578,0.1055733859539],[0.015005517750978,0.021485911682248,0.01700596138835],[0.042538579553366,0.032596942037344,-0.004499779548496]],[[0.023036785423756,-0.14184673130512,-0.0015684858663008],[0.014633314684033,-0.099808931350708,0.020853087306023],[-0.079378046095371,-0.10188208520412,-0.041746262460947]],[[0.072389371693134,-0.028098367154598,-0.02302322909236],[0.040180835872889,0.025406716391444,0.0088882772251964],[0.0023489452432841,0.028271624818444,-0.010267845354974]],[[0.0094400569796562,-0.001688506337814,-0.038416866213083],[0.018118085339665,-0.046136118471622,-0.031435117125511],[0.072063162922859,0.020000047981739,-0.031779658049345]],[[-0.024500630795956,0.00010478059994057,0.0078651169314981],[-0.013577156700194,0.012613339349627,-0.0048720384947956],[0.0077167339622974,-0.074528463184834,-0.087460525333881]],[[-0.055956792086363,0.028173288330436,-0.070550836622715],[-0.040260694921017,-0.027908621355891,-0.09567528963089],[-0.11088810861111,-0.061404280364513,-0.020778661593795]],[[-0.063711889088154,-0.13781890273094,-0.033211015164852],[0.15735660493374,-0.012603810057044,0.01164807472378],[-0.11186686903238,-0.10345889627934,-0.080377794802189]],[[-0.023788783699274,0.0049724751152098,0.03425083681941],[-0.0018272761953995,0.014339056797326,-0.076596431434155],[0.011364936828613,0.052438579499722,-0.021331239491701]],[[-0.049521066248417,-0.032052475959063,0.015307560563087],[-0.059312544763088,-0.011392599903047,-0.0091526992619038],[-0.047100830823183,-0.065214432775974,0.0062425532378256]],[[0.00015127591905184,0.16873750090599,0.074761539697647],[-0.03417444974184,-0.040103558450937,-0.05171450227499],[-0.077495075762272,-0.048976588994265,0.0035769492387772]],[[0.030139939859509,-0.090436421334743,-0.033763229846954],[-0.052817448973656,-0.12440975010395,-0.056149732321501],[-0.094382166862488,0.025505149737,0.057299084961414]],[[0.01916977763176,0.05827247723937,-0.084278546273708],[-0.029832912608981,0.025300681591034,0.056767091155052],[0.026104681193829,-0.073266439139843,0.091961733996868]],[[-0.019507303833961,-0.045257464051247,0.06920313835144],[-0.026495061814785,-0.093096479773521,0.024377726018429],[-0.066178530454636,-0.072065129876137,0.06211731210351]],[[0.077440962195396,-0.0033391281031072,-0.0046937661245465],[0.046140938997269,-0.10505772382021,-0.086599551141262],[-0.019823346287012,-0.03483248129487,0.11178317666054]],[[-0.02460559643805,-0.037782300263643,-0.0090478053316474],[0.018376622349024,-0.010128438472748,-0.041132111102343],[0.009107057005167,0.016125017777085,-0.066729329526424]],[[0.085374727845192,0.0016215648502111,-0.077370122075081],[-0.029096344485879,-0.0097321914508939,-0.039395280182362],[0.11885580420494,-0.027414154261351,0.034871734678745]],[[0.052443619817495,-0.010974297299981,-0.019211210310459],[-0.06866817176342,-0.047385741025209,-0.14555016160011],[-0.0467290841043,0.013138723559678,-0.0097457356750965]],[[-0.034703563898802,-0.043411683291197,0.041460234671831],[0.027203153818846,-0.052302144467831,0.0089714545756578],[-0.052011985331774,0.053809318691492,0.095708414912224]],[[0.044922634959221,0.032188504934311,-0.21113742887974],[-0.050901602953672,0.062389884144068,-0.055511191487312],[-0.10062488168478,-0.18802851438522,0.010442974045873]],[[-0.052320435643196,0.039849016815424,0.016337675973773],[-0.072843357920647,-0.026108738034964,0.054018188267946],[-0.060722474008799,0.042869172990322,0.13588072359562]],[[-0.041886698454618,-0.044874083250761,0.026665145531297],[-0.02394419722259,-0.016865197569132,-0.042448826134205],[-0.077959008514881,-0.035894483327866,0.053108483552933]],[[0.078531488776207,0.005778172519058,0.034054480493069],[0.033129900693893,-0.058375656604767,-0.078979790210724],[-0.10635565966368,0.08230996131897,-0.12694928050041]],[[-0.076841466128826,-0.039183642715216,0.029222844168544],[-0.10867714881897,-0.076823577284813,-0.024772092700005],[0.066068537533283,-0.06640861928463,0.022157283499837]],[[0.05939207971096,0.056276608258486,-0.083628132939339],[0.034778513014317,0.10514882951975,0.032007414847612],[-0.11295387893915,-0.01502837240696,0.0064268056303263]],[[0.020278744399548,-0.034730929881334,-0.029014302417636],[-0.035217076539993,0.042817614972591,-0.014953223988414],[0.047757301479578,-0.0058814156800508,-0.040095739066601]],[[0.029917068779469,0.004993359092623,-0.03179220110178],[-0.022845098748803,-0.014280772767961,-0.10202787816525],[-0.017722034826875,0.12088780850172,0.029767483472824]],[[-0.030735084787011,0.016216842457652,0.0090304845944047],[-0.052857298403978,0.03244249150157,-0.061564270406961],[0.037559028714895,-0.017986109480262,-0.061950512230396]],[[-0.0007268906920217,-0.019214816391468,-0.019872926175594],[0.025530887767673,-0.017891077324748,-0.044955972582102],[0.015191138722003,-0.052528206259012,-0.038359083235264]],[[-0.057692397385836,0.012443786486983,-0.038754601031542],[0.0041520679369569,0.02944902330637,-0.00041395594598725],[-0.063866503536701,-0.062679067254066,-0.030560549348593]],[[0.0027421365957707,0.00034477148437873,-0.039748206734657],[-0.061837580054998,-0.058409068733454,-0.0059820916503668],[-0.016337024047971,-0.016549944877625,0.015200784429908]],[[0.025185668841004,0.0090819280594587,0.025364136323333],[0.027608145028353,0.041909128427505,-0.054594457149506],[0.034757558256388,-0.10188938677311,0.0054310811683536]],[[0.035148240625858,0.017882082611322,0.035290986299515],[-0.096768006682396,0.01105279661715,-0.055081438273191],[0.036801427602768,0.030468009412289,-0.098088592290878]],[[-0.00080384098691866,0.064650841057301,-0.042760692536831],[-0.016835162416101,0.027721045538783,0.013179347850382],[-0.0024484959430993,0.0011327657848597,-0.09049716591835]],[[0.0062539954669774,0.011169878765941,-0.007487737108022],[-0.07374931126833,-0.047916725277901,-0.017989600077271],[-0.066602319478989,0.0020865593105555,-0.066263385117054]],[[0.0251629576087,0.071798250079155,-0.13335439562798],[-0.045002728700638,-0.0048726801760495,-0.050497561693192],[-0.0049034170806408,-0.016080452129245,-0.026177383959293]],[[0.020105045288801,-0.064995720982552,0.056933052837849],[-0.0052947467193007,0.031890083104372,-0.063740633428097],[0.016127038747072,0.020985174924135,-0.13657586276531]],[[-0.010641757398844,-0.070476561784744,-0.0082640750333667],[-0.033762846142054,-0.018217302858829,0.0083261299878359],[0.04268966242671,-0.10572443157434,0.10152603685856]],[[0.045325074344873,-0.015949526801705,0.049177385866642],[-0.011586613953114,-0.13659124076366,0.0082264645025134],[0.05262503772974,-0.025542769581079,-0.059796888381243]],[[-0.073675721883774,-0.012603863142431,-0.0076204622164369],[-0.10593941807747,0.065436266362667,0.021387660875916],[-0.10635834932327,0.070471249520779,-0.071979127824306]],[[0.0052888570353389,0.0085917031392455,0.053623750805855],[-0.0488077737391,0.042236384004354,-0.0013803488109261],[0.046819258481264,0.0016317428089678,-0.059371091425419]],[[-0.10279214382172,-0.012724911794066,0.0060994881205261],[-0.050242628902197,0.066638492047787,-0.0067387707531452],[0.023029889911413,0.067661620676517,0.014841329306364]],[[-0.071989543735981,-0.092473857104778,0.054008442908525],[-0.055950749665499,0.027394050732255,0.069113075733185],[0.069477930665016,-0.013112178072333,0.01357616763562]],[[-0.077608294785023,0.038864240050316,0.030705781653523],[0.157141700387,0.0013474595034495,0.017628835514188],[0.063548646867275,-0.013801611959934,0.067704670131207]],[[0.016387667506933,-0.042150445282459,-0.03692876920104],[0.021647363901138,0.024533467367291,-0.046988192945719],[0.044906288385391,0.039511229842901,0.077225364744663]],[[0.10264350473881,-0.015437488444149,-0.019519917666912],[0.092985317111015,-0.069536089897156,-0.00088581582531333],[0.051297280937433,-0.080771662294865,-0.0069268774241209]],[[0.042529586702585,-0.034377224743366,0.0041806856170297],[0.054444391280413,-0.044527806341648,-0.032708588987589],[0.032453786581755,-0.066461220383644,-0.065678484737873]],[[0.0039681792259216,-0.14696824550629,-0.098942577838898],[0.043335542082787,-0.085005022585392,-0.07902867347002],[0.032281681895256,0.10249965637922,0.084551297128201]],[[-0.07851880043745,-0.073407642543316,0.045645192265511],[0.010372877120972,-0.1031244546175,0.045020431280136],[-0.095934502780437,0.0022214539349079,0.053820919245481]],[[0.0018636123277247,-0.035390716046095,0.0014359742635861],[0.018534926697612,-0.030276162549853,0.035609718412161],[0.030696185305715,-0.054486319422722,-0.010120492428541]],[[-0.16780929267406,-0.010714873671532,0.019712675362825],[-0.019411841407418,0.028203396126628,-0.063788793981075],[0.02128211595118,0.034684672951698,0.21753340959549]],[[0.030162902548909,0.065830625593662,0.049669202417135],[0.038438383489847,-0.011385066434741,0.023737978190184],[-0.0079626012593508,-0.072076171636581,-0.10308386385441]],[[-0.037954494357109,0.03705445677042,0.030039630830288],[-0.015554117970169,-0.072331063449383,-0.0050520161166787],[-0.0032377897296101,0.034108601510525,-0.11552362889051]],[[-0.043476842343807,-0.060884017497301,0.01635685749352],[0.012655346654356,-0.027478905394673,0.043943502008915],[-0.078498519957066,0.032311242073774,0.0096726771444082]],[[-0.089948743581772,-0.024458192288876,0.03585784509778],[-0.10971067100763,-0.0010891180718318,-0.083636149764061],[-0.057909060269594,0.0091913724318147,0.028610153123736]],[[0.028469376266003,0.00069356855237857,-0.07373122125864],[0.048331428319216,0.033561028540134,-0.027556914836168],[-0.0021574802231044,-0.0073642935603857,-0.030986446887255]],[[-0.047608081251383,-0.063106767833233,-0.081060230731964],[-0.051288321614265,-0.050012804567814,0.0020210309885442],[-0.052140522748232,-0.10858280211687,0.063595406711102]],[[-0.016505271196365,0.045661371201277,-0.043571561574936],[0.033648710697889,0.068470478057861,-0.005036823451519],[0.035981550812721,0.081602148711681,-0.0038067628629506]],[[-0.053953226655722,-0.026251265779138,0.011039171367884],[-0.0021914602257311,-0.027225937694311,0.017369268462062],[0.04981866106391,-0.0047326385974884,0.079543724656105]],[[-0.19808094203472,0.034283496439457,0.087298527359962],[-0.15395770967007,0.084114424884319,0.073358781635761],[-0.075379706919193,0.083098709583282,0.021565802395344]],[[-0.099995046854019,-0.01093537453562,-0.0057056648656726],[-0.017052875831723,0.021156147122383,0.051466792821884],[-0.0036008271854371,-0.045910965651274,0.077984258532524]],[[-0.10493538528681,0.028160514310002,0.0027311115991324],[0.057896185666323,-0.018851824104786,0.018320498988032],[0.011574047617614,-0.057550694793463,0.053033117204905]],[[-0.088087685406208,-0.0028678341768682,0.039166647940874],[-0.1235767826438,0.018740320578218,0.059507004916668],[-0.06374105066061,-0.073555447161198,0.021835438907146]],[[0.0087415473535657,0.021038454025984,0.0095577361062169],[-0.011877129785717,0.019948268309236,-0.056276738643646],[-0.02238541841507,-0.084812544286251,-0.072687327861786]],[[-0.001055619912222,-0.015043910592794,0.041867207735777],[0.04534812271595,0.085446551442146,0.072784170508385],[0.026037698611617,-0.023177899420261,-0.088748931884766]],[[0.0065349922515452,0.016024395823479,0.019792025908828],[0.020043650642037,-0.051795247942209,-0.015536161139607],[0.046363849192858,0.052999887615442,0.026626203209162]],[[-0.0021494715474546,0.064112924039364,0.0058352770283818],[0.006038605235517,0.091185010969639,-0.050258614122868],[0.058702167123556,0.10263972729445,0.073227614164352]],[[0.071814067661762,0.012480823323131,-0.050839144736528],[0.012222637422383,-0.0260588247329,-0.018643576651812],[0.038867149502039,0.08103884011507,0.013872836716473]],[[-0.032510012388229,0.049643374979496,-0.0065754516981542],[-0.057903837412596,0.0027119657024741,0.051742251962423],[0.084293588995934,0.0043669808655977,0.05903347209096]],[[0.084995597600937,-0.027973044663668,-0.075360581278801],[0.05623959377408,-0.060100123286247,-0.10386037826538],[-0.011014371179044,0.058757420629263,0.060744967311621]],[[0.10750551521778,-0.062578283250332,-0.096167407929897],[0.049549717456102,-0.043189000338316,0.0065539325587451],[0.028612572699785,0.052729081362486,0.0083688711747527]],[[-0.0015511733945459,-0.11601413786411,-0.035664293915033],[8.0817990237847e-05,-0.11217857897282,0.014301206916571],[-0.054629053920507,-0.04655497521162,0.036309715360403]],[[-0.10013389587402,0.00075102137634531,0.024830820038915],[0.0018642278155312,-0.049625813961029,0.013206094503403],[-0.12575252354145,-0.14942617714405,0.0061662220396101]]],[[[0.028671842068434,0.0055449772626162,-0.14087952673435],[0.008015027269721,-0.011482736095786,0.037544768303633],[-0.073590874671936,0.096313655376434,0.04376795142889]],[[0.27714774012566,-0.090094961225986,0.010639751330018],[-0.265390843153,-0.10055151581764,0.10927841812372],[0.031415000557899,-0.055406793951988,0.070635177195072]],[[-0.059719234704971,-0.095275670289993,-0.049486249685287],[0.21399016678333,-0.023514460772276,0.13085667788982],[0.072491653263569,0.14395250380039,-0.078488454222679]],[[-0.0644496306777,-0.082651637494564,0.051017250865698],[-0.043574031442404,-0.15455365180969,0.020073851570487],[0.17707327008247,0.05865890532732,-0.22633436322212]],[[-0.024760169908404,0.085587099194527,-0.085099913179874],[0.27269724011421,0.11923589557409,0.099041409790516],[0.039926838129759,-0.053318317979574,-0.080546714365482]],[[0.010036997497082,-0.13351114094257,-0.046832021325827],[-0.011264160275459,0.062184654176235,0.077046781778336],[-0.076120607554913,-0.032404560595751,0.18026745319366]],[[0.14104840159416,-0.0087818298488855,0.065311707556248],[-0.0074965539388359,-0.0063911760225892,-0.030431216582656],[-0.0041628298349679,-0.037308555096388,-0.022013373672962]],[[0.078556410968304,0.24031309783459,-0.15147006511688],[0.029574822634459,0.13659130036831,0.079996772110462],[-0.17378966510296,-0.094146117568016,0.15522055327892]],[[-0.035643488168716,0.027510093525052,0.12272892147303],[0.20840640366077,-0.003053976688534,-0.2130414545536],[-0.031476937234402,0.015743289142847,0.099858731031418]],[[-0.20448558032513,0.033411167562008,-0.0069305910728872],[0.26686519384384,0.0084195248782635,0.011273599229753],[-0.055410664528608,-0.21629196405411,0.0099513614550233]],[[0.00040025595808402,0.023145269602537,0.022636696696281],[-0.050292067229748,0.095476992428303,-0.11375663429499],[-0.037500310689211,0.11733733862638,0.30113905668259]],[[-0.075524926185608,0.039084803313017,0.0032359415199608],[-0.049214567989111,-0.0097215641289949,0.12837581336498],[0.017723748460412,-0.13226635754108,0.0079828575253487]],[[-0.1208873167634,0.064224511384964,-0.12026736885309],[-0.17156709730625,-0.1691031306982,0.025140028446913],[0.11201958358288,0.090533144772053,-0.012796506285667]],[[0.092318117618561,-0.084709227085114,-0.016491673886776],[0.060055386275053,-0.070539951324463,-0.11228504031897],[0.069680765271187,-0.081575684249401,-0.032167710363865]],[[-0.024816531687975,0.041910670697689,-0.039643976837397],[-0.0019066866952926,0.069609180092812,-0.1147081181407],[-0.043056569993496,-0.030319012701511,-0.1357895731926]],[[-0.012858699075878,-0.22494295239449,0.080755010247231],[0.12213108688593,0.09029545634985,-0.072909355163574],[0.0042051738128066,-0.14583504199982,-0.13254973292351]],[[0.11157959699631,0.14926834404469,-0.16848166286945],[-0.14690136909485,-0.052113421261311,0.014114414341748],[-0.090036369860172,0.094171665608883,-0.10481408983469]],[[0.060175433754921,0.028176683932543,0.0006243126699701],[0.029282374307513,0.14844469726086,-0.055299825966358],[-0.0036867689341307,0.06687443703413,-0.050539199262857]],[[-0.13463744521141,-0.073532871901989,-0.056222319602966],[0.0038729133084416,0.057572279125452,0.081841938197613],[-0.14409166574478,0.073261111974716,0.24238623678684]],[[0.0055225505493581,0.076496794819832,-0.073913186788559],[-0.047975055873394,0.12135688215494,-0.13564270734787],[-0.061698898673058,-0.063264511525631,0.03211423009634]],[[-0.045288246124983,-0.033790182322264,0.12100349366665],[-0.11309730261564,-0.020458182319999,-0.17552442848682],[-0.16822278499603,-0.11075468361378,-0.18542528152466]],[[-0.049939274787903,-0.099330648779869,-0.0081782741472125],[0.012379336170852,-0.026944443583488,-0.089493006467819],[0.009320585988462,-0.072446882724762,-0.1813350468874]],[[-0.19633691012859,-0.012767927721143,-0.15941208600998],[-0.12259452044964,0.17310956120491,0.023345114663243],[-0.21834622323513,0.031547740101814,-0.0013293216470629]],[[-0.090743139386177,0.01085067819804,0.037615824490786],[0.095565721392632,0.067329384386539,0.13776122033596],[0.051648296415806,0.010335988365114,-0.15722557902336]],[[-0.047056462615728,0.1173607558012,0.060526959598064],[0.029884496703744,0.025618251413107,-0.083689317107201],[0.060940399765968,-0.068278476595879,-0.0083450302481651]],[[-0.10423051565886,0.0063899913802743,0.049025479704142],[0.083392657339573,-0.088909767568111,0.18877764046192],[-0.1017347201705,-0.14171290397644,-0.12160722911358]],[[-0.005465513560921,0.10260905325413,0.046498171985149],[0.02340279892087,-0.076734006404877,0.051722016185522],[-0.085881263017654,0.00021592230768874,0.05772390961647]],[[-0.067999079823494,0.026284527033567,-0.2841591835022],[0.09342385828495,-0.013111058622599,-0.10810012370348],[0.095033727586269,0.073166638612747,-0.012846767902374]],[[-0.0085759637877345,-0.17607392370701,-0.12026328593493],[-0.11314635723829,-0.037492346018553,0.0024922580923885],[-0.046311292797327,0.040644329041243,-0.20189610123634]],[[0.051304318010807,-0.060036897659302,-0.01398669090122],[0.14824987947941,-0.0045067677274346,-0.003349875099957],[0.033315278589725,-0.0012691433075815,-0.084753781557083]],[[-0.043429609388113,-0.056107167154551,-0.19769638776779],[0.14234110713005,0.080324649810791,-0.070138022303581],[-0.1065811291337,0.15760520100594,0.047955278307199]],[[0.12108208239079,-0.040938951075077,0.079233922064304],[0.050260238349438,-0.082733921706676,-0.036354526877403],[0.049586102366447,-0.10642923414707,-0.0062848427332938]],[[0.1298605799675,0.0087558450177312,-0.034753978252411],[-0.028465228155255,0.024434139952064,0.085785061120987],[-0.019008843228221,-0.027277881279588,-0.047586414963007]],[[-0.19905412197113,0.020866742357612,0.099583566188812],[-0.012965727597475,0.066829912364483,-0.083519987761974],[-0.033740729093552,-0.041264452040195,-0.077554740011692]],[[0.16749438643456,-0.14378991723061,-0.051168069243431],[0.070108838379383,-0.098064832389355,-0.067627549171448],[0.030549990013242,0.10259404778481,-0.16478200256824]],[[-0.0056577809154987,-0.058598261326551,0.0073770834133029],[0.062506958842278,-0.022644348442554,0.040472958236933],[0.070852555334568,-0.0016831640386954,0.055960614234209]],[[0.20866593718529,0.071462571620941,-0.078708492219448],[0.046631779521704,0.082608766853809,0.04265520721674],[-0.072598829865456,0.0047103972174227,0.074595078825951]],[[0.0929119810462,0.029639769345522,-0.0037808385677636],[0.054548256099224,-0.051393408328295,0.051184941083193],[-0.078049451112747,-0.032585866749287,0.034987974911928]],[[0.11268343776464,-0.01792567409575,0.0055020456202328],[-0.085398942232132,-0.017369199544191,-0.11621153354645],[0.2008438706398,-0.1362126916647,-0.20015098154545]],[[0.031816173344851,0.21291188895702,-0.052980929613113],[0.0055206269025803,0.042571283876896,-0.1436071395874],[0.022617319598794,-0.25723418593407,0.064857445657253]],[[-0.097525782883167,0.059712465852499,-0.026864837855101],[0.19500921666622,-0.040533486753702,0.020158192142844],[0.1451567709446,0.054637059569359,0.040526106953621]],[[0.09900213778019,0.035013187676668,0.1554117500782],[-0.038584247231483,0.077592507004738,0.073674626648426],[0.046793326735497,0.085846565663815,-0.033509537577629]],[[0.021686386317015,-0.010644666850567,-0.17070941627026],[0.10819943249226,-0.059036139398813,-0.060941115021706],[-0.042479608207941,-0.14131613075733,-0.16773366928101]],[[-0.036183308809996,-0.060817271471024,0.04550065100193],[-0.033388376235962,-0.068439573049545,0.022601995617151],[0.060518495738506,0.060834880918264,-0.022676372900605]],[[-0.13741877675056,-0.10617765039206,-0.2145968079567],[0.2298631221056,-0.13236683607101,-0.12743619084358],[0.070073634386063,0.042413331568241,0.0013272655196488]],[[-0.10084503889084,-0.051244638860226,0.057150389999151],[-0.035610541701317,0.050785686820745,-0.036536850035191],[0.034314930438995,-0.10136862099171,-0.10132017731667]],[[-0.012631799094379,0.066398791968822,-0.1395633071661],[0.0046986001543701,0.09669104963541,-0.19069351255894],[-0.059748817235231,-0.012068094685674,0.079640559852123]],[[-0.080105751752853,-0.043252412229776,-0.053260300308466],[0.022238602861762,-0.10195277631283,-0.063986986875534],[-0.10164052993059,-0.15735459327698,0.1383720189333]],[[0.082685567438602,-0.1125041693449,-0.15373708307743],[0.098779290914536,0.13108067214489,0.038610085844994],[0.0069405627436936,-0.020236682146788,0.043041869997978]],[[-0.13053548336029,-0.16493090987206,0.050561331212521],[-0.010409912094474,-0.047860026359558,0.038188364356756],[-0.028720708563924,0.067945972084999,0.039210073649883]],[[-0.12597504258156,-0.015684831887484,0.033977188169956],[-0.1098291054368,-0.18715664744377,0.082834929227829],[-0.11109286546707,-0.14172992110252,0.13687904179096]],[[-0.15133839845657,-0.062948890030384,-0.12603856623173],[0.092012405395508,-0.1015617325902,0.03554255142808],[0.031202787533402,0.047425739467144,-0.062859982252121]],[[-0.024197084829211,0.0035630513448268,-0.035419896245003],[0.10333792865276,-0.034661490470171,0.021869270130992],[0.057454451918602,-0.065702058374882,-0.047135975211859]],[[0.070380032062531,-0.069439209997654,-0.07831784337759],[-0.0058152582496405,-0.015922157093883,-0.12538938224316],[-0.043288789689541,0.073861926794052,0.25355359911919]],[[0.10198176652193,-0.043761193752289,-0.099733896553516],[0.033047948032618,0.047523450106382,0.074931271374226],[0.12480455636978,-0.034343276172876,0.10416233539581]],[[0.51377308368683,-0.076302975416183,-0.034677933901548],[-0.17950345575809,-0.060180619359016,-0.066462092101574],[-0.038274049758911,-0.094140328466892,0.10321137309074]],[[-0.0098351798951626,-0.063304260373116,0.08356910943985],[0.054833807051182,-0.12350494414568,0.18095156550407],[-0.10356024652719,-0.15631322562695,-0.14739283919334]],[[-0.069114692509174,-0.22105929255486,0.0062650009058416],[-0.030420126393437,-0.10796909034252,-0.028620371595025],[0.037758458405733,-0.10191861540079,-0.045088861137629]],[[-0.036427076905966,0.030887551605701,-0.14807145297527],[0.03400819003582,-0.010208686813712,-0.13410468399525],[-0.050839591771364,-0.024016831070185,-0.011513508856297]],[[-0.087810344994068,0.0037084517534822,0.10934784263372],[-0.1594385355711,-0.098636031150818,-0.11751861125231],[0.14161115884781,0.16174821555614,0.12410549074411]],[[0.040258165448904,0.034607108682394,-0.050561800599098],[-0.082343094050884,-0.0054498668760061,-0.078812450170517],[-0.08048240840435,-0.085118249058723,-0.15783376991749]],[[-0.078505747020245,0.057666730135679,-0.059833392500877],[0.063777789473534,0.010463166981936,-0.09390340000391],[-0.14188787341118,-0.011737197637558,-0.066215597093105]],[[-0.21088945865631,0.063673593103886,0.034901082515717],[0.42654031515121,-0.13671913743019,-0.1034311875701],[0.14757829904556,-0.011696220375597,-0.082805596292019]],[[0.18725435435772,-0.14966851472855,-0.12450572103262],[0.048230152577162,0.085419930517673,-0.036555152386427],[0.010197808034718,0.13303218781948,0.0027986238710582]],[[-0.024560471996665,-0.083908081054688,0.16290763020515],[-0.00041684450116009,-0.04429479315877,0.13335393369198],[0.0041983434930444,-0.071800954639912,0.066759891808033]],[[0.45504423975945,-0.18125998973846,-0.052531953901052],[-0.030159110203385,-0.078924156725407,-0.035426251590252],[0.056940402835608,0.0079816756770015,0.061347953975201]],[[-0.14499327540398,0.11546187102795,-0.04150739684701],[0.097566694021225,-0.0078024100512266,-0.0013208439340815],[-0.09475763887167,-0.020441096276045,0.035479374229908]],[[0.076343283057213,-0.13896822929382,-0.0077936281450093],[-0.30497562885284,-0.090288057923317,-0.11984062939882],[-0.025948774069548,-0.13248188793659,-0.025112541392446]],[[0.0097224041819572,0.010752327740192,-0.070047982037067],[-0.063601464033127,-0.060089163482189,-0.13540984690189],[0.043927516788244,-0.059771969914436,-0.041396621614695]],[[0.3315737247467,0.12896019220352,-0.065556824207306],[-0.078094825148582,-0.12543344497681,0.07398347556591],[-0.0019420316675678,-0.0074407886713743,-0.082396186888218]],[[-0.01016869302839,-0.0086400210857391,0.071602493524551],[0.027981232851744,2.8570997528732e-05,-0.13028153777122],[0.04834321513772,0.0078871818259358,-0.067042872309685]],[[-0.1151489764452,-0.055532865226269,0.045176167041063],[-0.013538716360927,-0.01475915312767,0.24305944144726],[-0.05462359264493,0.042235288769007,-0.11627901345491]],[[-0.013024818152189,-0.039489679038525,-0.026536859571934],[-0.075872614979744,-0.028604105114937,-0.065358318388462],[-0.069738671183586,-0.15299881994724,0.045086596161127]],[[-0.2166316062212,0.0064624883234501,0.0085429027676582],[0.12731020152569,0.12195909768343,0.02160469815135],[-0.059067871421576,-0.056917764246464,0.10200122743845]],[[0.011198450811207,-0.11225147545338,-0.098402127623558],[0.031064935028553,-0.07215678691864,-0.1656070202589],[-0.092007033526897,0.054808001965284,0.045116823166609]],[[-0.11846533417702,-0.061011575162411,-0.21636044979095],[-0.030368167907,0.14337308704853,0.14358934760094],[0.033818121999502,-0.07937790453434,0.080975115299225]],[[-0.24803297221661,0.0096763893961906,-0.0097539499402046],[0.072403855621815,-0.072844229638577,-0.10872073471546],[-0.060537558048964,-0.022005755454302,-0.18251459300518]],[[-0.0060467054136097,-0.17993324995041,0.033586215227842],[-0.16548283398151,-0.064954116940498,0.068867780268192],[0.081204645335674,0.061609514057636,-0.046721257269382]],[[0.019587066024542,-0.076605007052422,-0.10564624518156],[0.12548133730888,0.11152558028698,0.11490768939257],[0.16647687554359,0.02063968591392,0.097195766866207]],[[-0.030902989208698,0.11282599717379,-0.083839625120163],[-0.097779422998428,-0.1673466861248,-0.040498524904251],[-0.1218120008707,-0.037503704428673,0.1374254822731]],[[-0.1251110881567,-0.01210168376565,0.082416713237762],[0.038121454417706,-0.10883060842752,-0.053373258560896],[-0.032035641372204,-0.17826572060585,0.20027722418308]],[[0.18826460838318,0.0051352535374463,-0.079765632748604],[-0.030667772516608,-0.087523095309734,0.0070801652036607],[-0.037512023001909,-0.10847119241953,-0.05864717438817]],[[0.13345205783844,-0.1023870036006,-0.014331402257085],[0.017473764717579,0.12066503614187,0.11409492045641],[0.15843012928963,-0.03291392698884,-0.056859195232391]],[[-0.091485813260078,0.00051037763478234,0.053677894175053],[-0.1721049696207,-0.084933720529079,0.011270708404481],[0.12399711459875,0.0097196362912655,-0.0056724259629846]],[[-0.029187723994255,0.066329278051853,-0.0045514688827097],[-0.040547896176577,0.076597735285759,0.02551100961864],[-0.20333778858185,-0.015842445194721,-0.038510486483574]],[[-0.077076561748981,0.14176672697067,-0.011150984093547],[0.012934324331582,0.14447939395905,-0.013088572770357],[-0.056366685777903,0.095082566142082,0.087857067584991]],[[-0.12481236457825,-0.067800462245941,-0.058891579508781],[0.043608233332634,0.065801478922367,0.070155419409275],[-0.16123028099537,-0.05594776943326,-0.13132405281067]],[[-0.32496052980423,0.046983171254396,0.038163352757692],[-0.091296873986721,0.080826848745346,0.060103252530098],[-0.1221067160368,0.025158505886793,0.064567565917969]],[[-0.15837748348713,0.079076811671257,-0.049551080912352],[-0.15697067975998,-0.012567533180118,0.094787791371346],[-0.10299258679152,0.16364306211472,0.14887250959873]],[[-0.14530710875988,-0.10844706743956,-0.09740799665451],[0.060901302844286,-0.043483532965183,0.15718111395836],[0.022703228518367,-0.13167457282543,0.016750387847424]],[[-0.0078543126583099,0.096049427986145,-0.010816073976457],[-0.1195068359375,0.0089950431138277,0.1747874468565],[0.1085719615221,-0.038498561829329,0.19617682695389]],[[0.32991129159927,-0.058261472731829,-0.093414172530174],[-0.21914200484753,0.11889731884003,-0.2323696911335],[-0.068895779550076,0.0056687481701374,-0.057875972241163]],[[0.010075997561216,0.0020261891186237,0.14322392642498],[0.016843572258949,-0.028898829594254,-0.15158957242966],[0.25572994351387,0.12139701098204,0.11063458770514]],[[-0.15401856601238,-0.070584617555141,0.027208400890231],[-0.055719014257193,-0.046154603362083,0.068968616425991],[0.040235348045826,-0.026307607069612,-0.01544198486954]],[[-0.05046759173274,0.098214983940125,-0.09290524572134],[0.13601416349411,0.046506009995937,-0.1146361976862],[0.042739752680063,0.0054572066292167,0.011353424750268]],[[0.026018956676126,-0.10840614140034,-0.17603833973408],[-0.1272416561842,0.094262942671776,0.0058412831276655],[-0.019628783687949,-0.097230181097984,0.11057372391224]],[[0.061820641160011,-0.17950063943863,-0.14026781916618],[-0.10851236432791,0.077065773308277,0.10700227320194],[-0.052049819380045,0.073415659368038,-0.11545873433352]],[[-0.052543938159943,-0.054588623344898,0.22002120316029],[-0.0058197192847729,-0.056855514645576,-0.062909185886383],[0.18304733932018,0.0092188213020563,0.15758116543293]],[[-0.098984427750111,0.020418722182512,-0.019802179187536],[0.0017485111020505,-0.042574543505907,-0.06116009503603],[0.054789584130049,-0.048798445612192,-0.033111743628979]],[[0.026586133986712,-0.02697940915823,-0.11722473055124],[0.090816408395767,0.1380427479744,0.20165608823299],[0.010709132067859,-0.037420965731144,0.047672159969807]],[[-0.1543106585741,-0.1592083722353,-0.041094396263361],[-0.065873041749001,-0.011823955923319,-0.11015753448009],[0.066031858325005,-0.083506762981415,-0.032236840575933]],[[-0.044578395783901,0.10732630640268,0.12614004313946],[0.21909867227077,0.17868849635124,0.15968918800354],[0.075920462608337,0.10567060858011,0.0073632788844407]],[[-0.0086153820157051,-0.097227223217487,-0.026592742651701],[0.14886058866978,-0.026085102930665,0.017336651682854],[0.093572452664375,0.041618600487709,0.048821154981852]],[[0.12875987589359,0.1563512980938,0.087492488324642],[-0.01519728731364,-0.023888705298305,-0.21501915156841],[-0.072758130729198,-0.12871637940407,0.020395342260599]],[[0.30438151955605,-0.033326681703329,-0.0052000232972205],[-0.13794860243797,-0.24112790822983,-0.1394476890564],[-0.002204948104918,-0.059420116245747,0.13138592243195]],[[-0.12370239943266,0.12841255962849,0.085576362907887],[-0.023315709084272,0.083057247102261,0.06158884614706],[0.028563730418682,-0.039307419210672,-0.082147061824799]],[[-0.10814074426889,0.21617455780506,0.006734827067703],[0.0087497672066092,0.10977648198605,0.055841628462076],[-0.02704762108624,0.042423848062754,-0.001026259851642]],[[0.0039858222007751,-0.17951267957687,-0.029375953599811],[-0.04711377248168,-0.17820280790329,-0.035004064440727],[0.14290349185467,0.0753468349576,-0.12225113809109]],[[-0.0418397821486,-0.018438421189785,0.043939564377069],[0.071457915008068,-0.073333472013474,-0.0080772330984473],[-0.056030344218016,-0.060037430375814,0.016432482749224]],[[0.2316265553236,0.058825623244047,0.2144985049963],[-0.050511259585619,-0.092661902308464,-0.0039396854117513],[-0.037389259785414,0.13280640542507,0.065716199576855]],[[-0.041374079883099,-0.054443839937449,-0.0078318091109395],[-0.046469636261463,0.009696458466351,-0.017171129584312],[0.037184171378613,0.013776551000774,-0.049724020063877]],[[-0.08027932792902,-0.051452282816172,-0.14589683711529],[-0.010770517401397,0.01078827213496,-0.0031100988853723],[0.00012790004257113,-0.053178500384092,-0.036422234028578]],[[-0.018128722906113,0.11068287491798,-0.014100114814937],[-0.0050687282346189,0.093419127166271,0.012478672899306],[0.094313472509384,-0.015863053500652,0.02004899084568]],[[0.1564052850008,-0.12152860313654,0.078596688807011],[0.15141995251179,-0.060166068375111,0.070623330771923],[0.0073210285045207,-0.057113569229841,-0.032410565763712]],[[0.076276183128357,0.042778272181749,-0.10024892538786],[0.072629295289516,0.13737194240093,-0.0012737166834995],[0.010311481542885,-0.034396506845951,0.12156795710325]],[[-0.063528753817081,-0.04846116527915,0.17425747215748],[-0.20256166160107,-0.042336735874414,-0.031274385750294],[0.00020766867964994,-0.099354788661003,0.0038208933547139]],[[0.0073861521668732,0.08516002446413,0.026292910799384],[-0.14472787082195,0.048438064754009,0.053429536521435],[0.0055640414357185,-0.029404327273369,-0.12572826445103]],[[-0.090947262942791,-0.013210082426667,0.050437029451132],[-0.013818512670696,0.14062513411045,0.070683345198631],[0.25892794132233,0.13739132881165,0.050855901092291]],[[-0.10860011726618,-0.056501615792513,0.043470982462168],[-0.0077822818420827,-0.010845550335944,0.0098712658509612],[0.14516171813011,-0.02962639555335,0.041326023638248]],[[0.020398586988449,0.040787078440189,-0.021574292331934],[0.060645211488008,0.069570921361446,0.12260188907385],[-0.016409391537309,-0.025116993114352,0.00025909743271768]],[[0.031406339257956,0.075402669608593,-0.040377352386713],[0.0027612240519375,-0.023800196126103,0.052570894360542],[-0.017559606581926,-0.087784737348557,0.10086543112993]],[[0.07782705873251,0.018748661503196,0.07488676905632],[0.060170099139214,-0.014107634313405,0.10480108112097],[0.020311629399657,-0.054371073842049,0.047314457595348]],[[-0.10271290689707,-0.11929313838482,-0.019172398373485],[-0.11630296707153,0.056112516671419,-0.11403549462557],[0.20457239449024,-0.11416281759739,-0.085116595029831]],[[-0.025828287005424,0.093571625649929,0.10446355491877],[0.096868559718132,0.19796977937222,-0.043976210057735],[-0.050147838890553,0.027029231190681,0.19611532986164]],[[-0.12166587263346,-0.032881684601307,-0.080585710704327],[0.11831451207399,-0.018032468855381,-0.01904521882534],[0.18682704865932,0.09564608335495,0.088196940720081]],[[0.13450026512146,0.021512977778912,0.023965530097485],[-0.14960770308971,0.025971289724112,-0.064724624156952],[-0.12319888919592,0.074368827044964,0.011915300041437]],[[-0.10349604487419,-0.0014630447840318,-0.097392722964287],[-0.1245903968811,0.18010583519936,-0.020537862554193],[-0.12774257361889,0.16766694188118,-0.00028181908419356]],[[0.15330283343792,-0.097507804632187,-0.0078015364706516],[-0.12456685304642,-0.087270550429821,0.012376695871353],[-0.053909864276648,-0.1335831284523,-0.082161001861095]]],[[[0.046548675745726,0.042565405368805,-0.13281528651714],[-0.052282802760601,0.066866435110569,-0.13976855576038],[-0.028145346790552,0.14329108595848,0.030522540211678]],[[0.02101169899106,0.0051205763593316,0.039841789752245],[0.0027749654836953,-0.11026180535555,0.063799679279327],[0.033221125602722,0.092160858213902,0.047586794942617]],[[0.12094421684742,0.12511560320854,0.030572371557355],[0.036322448402643,0.205521479249,-0.00018571451073512],[-0.0001070400539902,0.1162369325757,-0.06046499311924]],[[-0.22096587717533,-0.13025276362896,-0.067015565931797],[-0.11904323101044,-0.11095094680786,-0.044368237257004],[-0.1863929182291,-0.06280130892992,-0.073859147727489]],[[0.17912802100182,0.10674048960209,0.065754413604736],[0.010476410388947,0.098125159740448,-0.098659664392471],[0.10604607313871,0.16347731649876,0.061996806412935]],[[-0.01972908899188,-0.044380430132151,-0.018916439265013],[-0.11684326827526,-0.038887303322554,-0.10288196802139],[-0.057315651327372,0.057763677090406,-0.071174472570419]],[[0.10710975527763,0.084216199815273,0.18197576701641],[0.11502126604319,-0.0966911688447,-0.067315466701984],[-0.081593997776508,-0.081772133708,-0.17906333506107]],[[0.023742755874991,-0.065151244401932,-0.050979245454073],[0.075271770358086,0.10846051573753,-0.045621983706951],[0.064361356198788,0.15202771127224,0.1895600259304]],[[-0.022016929462552,-0.01437524985522,-0.053848214447498],[0.062035530805588,-0.16271539032459,-0.16023510694504],[0.20142492651939,0.04649131000042,-0.15634001791477]],[[0.031692203134298,-0.015401389449835,0.044314589351416],[-0.00060745375230908,0.0011813038727269,-0.065558597445488],[-0.044069569557905,0.04431365057826,-0.019803389906883]],[[0.12885980308056,0.020458862185478,0.046577122062445],[-0.080675661563873,-0.10300128161907,-0.13563677668571],[-0.080666907131672,-0.058265820145607,-0.17715878784657]],[[-0.078464195132256,0.066347442567348,-0.0069422828964889],[0.1606190353632,-0.0099526960402727,0.082647524774075],[0.19740328192711,-0.042335983365774,-0.077369563281536]],[[0.16320404410362,-0.070317126810551,-0.08156555891037],[0.038332741707563,0.050908159464598,0.054050538688898],[0.11536424607038,0.032613646239042,-0.039421029388905]],[[0.006178651470691,-0.17340391874313,-0.1119874343276],[0.066282339394093,0.026869172230363,0.066649414598942],[0.10597536712885,-0.064479507505894,0.076703600585461]],[[-0.010786379687488,0.042709831148386,-0.07060993462801],[-0.096846021711826,0.13522408902645,0.24590249359608],[0.10008738189936,0.09012758731842,0.14524701237679]],[[-0.047903515398502,0.074878059327602,0.038710605353117],[-0.18287390470505,0.050518222153187,0.01492122374475],[-0.10564034432173,0.044716466218233,0.088371932506561]],[[-0.13698768615723,0.0038584407884628,0.1211873665452],[-0.071276120841503,0.035842888057232,0.14004072546959],[-0.11227405071259,0.084006190299988,-0.026251005008817]],[[0.042103562504053,0.018385481089354,0.0017342175124213],[0.05078985914588,-0.081991069018841,-0.089030236005783],[0.11948090791702,0.082695603370667,0.085451014339924]],[[0.01509527862072,0.014550103805959,0.23142047226429],[-0.13950423896313,-0.074814036488533,0.1261146068573],[0.0089376671239734,0.071063295006752,0.1403771340847]],[[-0.035564295947552,-0.18214343488216,-0.10886669903994],[0.066526375710964,0.016951557248831,0.0070262574590743],[-0.012217172421515,-0.049150642007589,0.13431726396084]],[[-0.10020021349192,-0.097594074904919,-0.14473403990269],[-0.074101619422436,-0.024053005501628,-0.09249223023653],[-0.019435908645391,0.061364229768515,-0.052947230637074]],[[0.13204935193062,0.04489329829812,-0.076621189713478],[0.12297533452511,0.13180257380009,-0.094462215900421],[0.091796070337296,0.069547213613987,-0.12191490828991]],[[0.0042841513641179,0.015157035551965,-0.013163243420422],[0.030815586447716,0.013023593463004,-0.033879712224007],[0.23431047797203,0.073405690491199,-0.051812037825584]],[[-0.07238145172596,0.027830990031362,-0.070761002600193],[0.0059160371311009,-0.026727246120572,-0.031086696311831],[-0.18706811964512,-0.049527175724506,-0.092079117894173]],[[0.015189343132079,0.11123707890511,0.087975777685642],[-0.16122868657112,-0.13530130684376,-0.015931906178594],[-0.15278342366219,0.010743548162282,-0.057949539273977]],[[-0.011043468490243,-0.0023542793933302,0.15094797313213],[0.062778189778328,0.032223206013441,-0.14220957458019],[-0.011544329114258,0.1052109375596,0.11671332269907]],[[0.19720989465714,-0.084628582000732,0.0056739118881524],[0.20396994054317,-0.10748291760683,0.028744209557772],[0.20378004014492,0.033204060047865,0.026233116164804]],[[0.018858725205064,-0.075162440538406,-0.0073970113880932],[0.033028323203325,-0.15282920002937,-0.20883251726627],[0.028150245547295,0.050765801221132,0.059208054095507]],[[-0.18018916249275,-0.07188705354929,-0.16251508891582],[0.016508724540472,0.067367538809776,0.14255292713642],[-0.032956663519144,-0.14300745725632,-0.13932204246521]],[[0.046232029795647,-0.0086553227156401,-0.041407778859138],[0.040822625160217,0.062414541840553,-0.09060700237751],[0.056193873286247,0.073210619390011,0.010760584846139]],[[0.053431458771229,0.085989728569984,0.048957243561745],[-0.082394257187843,-0.054135262966156,0.14575456082821],[0.061879239976406,-0.06231451779604,-0.15651597082615]],[[-0.016093822196126,-0.028371173888445,-0.031752981245518],[0.08788488805294,0.067982763051987,0.013122043572366],[-0.035596501082182,-0.01928629539907,0.10806857049465]],[[-0.019380442798138,0.066558167338371,0.23930458724499],[0.087048254907131,-0.033687129616737,-0.06657949835062],[0.071837291121483,0.032797757536173,-0.099486619234085]],[[0.23152434825897,0.12697592377663,0.13591401278973],[0.020106937736273,0.1300246566534,0.23364880681038],[-0.20832477509975,-0.00021434309019241,-0.14559625089169]],[[0.11356474459171,0.10468643903732,-0.0037219715304673],[0.01777065359056,0.032022997736931,-0.13704077899456],[-0.052071582525969,-0.017603887245059,-0.14711013436317]],[[0.055254396051168,-0.14550021290779,-0.14755445718765],[0.085572436451912,0.057520035654306,-0.0020135934464633],[0.00091011170297861,-0.018380653113127,-0.080822169780731]],[[0.059979625046253,0.09599657356739,0.1099309399724],[-0.0039894371293485,-0.18257069587708,-0.1792618483305],[-0.21079637110233,-0.18915221095085,-0.065966218709946]],[[0.059199027717113,0.024094611406326,0.021932536736131],[-0.19941133260727,0.031333550810814,0.078191347420216],[0.016105234622955,0.14177452027798,0.04986522346735]],[[0.12123492360115,0.097211547195911,-0.17067013680935],[0.07912727445364,-0.101537309587,-0.052597373723984],[0.022428769618273,-0.0041052992455661,-0.020159160718322]],[[0.047656748443842,0.054209604859352,0.090135812759399],[0.00035918212961406,-0.0015907187480479,0.096006758511066],[-0.1303451359272,0.029594369232655,0.082646787166595]],[[-0.079426363110542,-0.011198110878468,0.15537312626839],[0.024696534499526,-0.086383953690529,0.12521928548813],[-0.032795652747154,-0.094885960221291,-0.18467922508717]],[[0.02575096487999,0.019795386120677,0.17040957510471],[0.010471140034497,-0.084588810801506,0.05931980907917],[-0.18227411806583,-0.12128656357527,0.0025987385306507]],[[0.0085955047979951,0.026907501742244,-0.056708425283432],[-0.030511731281877,0.017733372747898,-0.034683801233768],[-0.074311181902885,-0.085760273039341,-0.089921168982983]],[[-0.019495811313391,-0.0944599583745,-0.13756583631039],[-0.10658539831638,-0.013463794253767,-0.034513469785452],[-0.10153826326132,0.060702588409185,-0.074486382305622]],[[0.042849496006966,0.0062065767124295,-0.014970474876463],[-0.022950794547796,0.052774913609028,0.0024732346646488],[0.010061051696539,0.0097603602334857,0.0058646639809012]],[[-0.10911811888218,0.05369059368968,0.061689347028732],[-0.11633259803057,-0.0028321135323495,0.0088634481653571],[-0.27258214354515,-0.064661055803299,-0.0017630932852626]],[[0.14641857147217,-0.0086417719721794,-0.011779692023993],[0.042602337896824,0.04101574793458,-0.0030045334715396],[-0.035966895520687,0.035614017397165,-0.12164027243853]],[[-0.01086587831378,0.18612866103649,0.24200692772865],[0.15017512440681,-0.16714237630367,-0.20787169039249],[-0.040080707520247,0.014913322404027,0.015860529616475]],[[-0.15244126319885,-0.13346968591213,-0.1313412040472],[0.13751445710659,0.21611012518406,0.088218592107296],[0.14100222289562,-0.16979223489761,0.13181389868259]],[[-0.066616132855415,-0.13819570839405,-0.036174334585667],[-0.21017998456955,-0.23437072336674,0.039410453289747],[-0.0088178906589746,-0.12439366430044,-0.0042120199650526]],[[-0.10644207894802,0.088014632463455,-0.067072041332722],[0.069663360714912,-0.088243141770363,-0.19580270349979],[-0.074721470475197,0.14072889089584,-0.10467500984669]],[[-0.06048721075058,-0.072854362428188,-0.026202157139778],[-0.015373195521533,0.023278649896383,0.10802219808102],[0.05714950710535,0.098568461835384,0.076285429298878]],[[-0.034510862082243,0.020990654826164,-0.041377991437912],[-0.028779663145542,-0.016292743384838,-0.06201734021306],[-0.046455163508654,-0.05410360917449,0.026092810556293]],[[0.076273322105408,-0.030472207814455,0.065363965928555],[0.071824215352535,-0.039202403277159,0.045238070189953],[0.12832571566105,-0.041871916502714,-0.21516263484955]],[[0.094533160328865,0.16020178794861,0.1677240729332],[-0.039974495768547,-0.012960232794285,-0.09081793576479],[-0.15380668640137,-0.050545115023851,0.017525089904666]],[[0.036408357322216,0.089536383748055,0.10156610608101],[0.13831759989262,-0.04590105265379,0.0048353588208556],[-0.071388453245163,-0.043735187500715,-0.14444248378277]],[[0.18777987360954,-0.056598540395498,0.069914683699608],[0.057094838470221,-0.17648948729038,0.0385567471385],[-0.036964252591133,-0.038817144930363,0.080588199198246]],[[0.019837524741888,0.053809091448784,-0.054338693618774],[-0.13290430605412,-0.076091833412647,-0.070262707769871],[-0.0076338583603501,0.00015703396638855,-0.037728689610958]],[[-0.019430641084909,-0.0016396575374529,-0.074459433555603],[-0.038137562572956,-0.049920860677958,-0.010561599396169],[-0.21747788786888,0.0071523240767419,-0.10858429968357]],[[-0.047282014042139,-0.11576568335295,-0.1292676627636],[0.069007337093353,-0.058954168111086,-0.059046644717455],[-0.062281616032124,-0.016130929812789,0.053972635418177]],[[-0.068466581404209,0.052786640822887,-0.17577131092548],[-0.099967457354069,0.032513350248337,-0.20070733129978],[-0.16863273084164,0.0085373921319842,-0.17154286801815]],[[-0.084563069045544,-0.034002728760242,0.010187488980591],[-0.21020938456059,-0.15714864432812,-0.12781263887882],[-0.070260964334011,-0.17140126228333,-0.16355761885643]],[[0.0098026804625988,-0.021743852645159,-0.090407274663448],[0.015899445861578,-0.0082059092819691,-0.0058493772521615],[-0.0092241931706667,0.035261888056993,-0.063974283635616]],[[0.21484959125519,0.22708795964718,0.11406240612268],[-0.006841498427093,0.098293222486973,0.18950571119785],[-0.16006925702095,-0.046053599566221,-0.0030331066809595]],[[-0.037643879652023,-0.17475542426109,-0.040926463901997],[-0.02864851988852,0.05542629212141,0.16479915380478],[-0.096311777830124,-0.098816312849522,-0.0051693678833544]],[[0.075776256620884,0.033938083797693,0.088013604283333],[0.052363310009241,-0.099911548197269,0.074476085603237],[0.048283774405718,-0.070968136191368,0.13822731375694]],[[0.0087339133024216,0.004402591381222,-0.080146126449108],[0.042224522680044,0.075416810810566,0.0018246644176543],[0.09076926112175,-0.012793566100299,-0.047375429421663]],[[-0.031387615948915,-0.13980914652348,-0.076916083693504],[-0.11465386301279,-0.16621881723404,-0.054464668035507],[-0.032790616154671,0.080378718674183,0.017388083040714]],[[-0.074053205549717,-0.085199110209942,-0.012521547265351],[-0.022450540214777,-0.11028105020523,-0.09398028999567],[0.13326746225357,0.05472569912672,0.016061002388597]],[[0.061523843556643,0.083908274769783,0.073722451925278],[-0.21020452678204,0.12079600244761,-0.11472937464714],[0.0093978457152843,0.0091645317152143,-0.092427164316177]],[[-0.014704180881381,0.020059213042259,-0.12829352915287],[-0.1585288643837,-0.0050967764109373,0.17010748386383],[0.12192814052105,0.15521019697189,-0.17423090338707]],[[-0.010969775728881,0.078309081494808,-0.04381250217557],[0.14843355119228,0.020563369616866,0.06878712028265],[0.037060014903545,0.077953964471817,-0.10207475721836]],[[-0.052971430122852,-0.10244315862656,-0.054272420704365],[-0.13700811564922,0.0040408782660961,0.011456484906375],[-0.040101300925016,-0.025323888286948,-0.10752603411674]],[[0.17988006770611,0.14214290678501,0.033519171178341],[0.12536352872849,-0.0046573663130403,0.10874325782061],[0.091207720339298,0.14564248919487,0.046176251024008]],[[-0.094029083848,0.052087623625994,0.14181169867516],[0.0047633317299187,-0.13631471991539,-0.17229355871677],[-0.0093197366222739,-0.077877417206764,-0.064347662031651]],[[0.048834823071957,0.036470398306847,-0.1439992338419],[-0.046984180808067,-0.026158571243286,-0.098265737295151],[-0.0024743529502302,0.010716110467911,-0.095929197967052]],[[0.022743567824364,-0.072859838604927,-0.026017734780908],[-0.19358290731907,-0.056318532675505,-0.072834566235542],[-0.065265521407127,-0.15688535571098,-0.033331841230392]],[[0.014315257780254,0.089995443820953,0.034514982253313],[-0.11104248464108,0.066975072026253,-0.046574894338846],[0.056123279035091,-0.029198864474893,-0.023290915414691]],[[0.13902650773525,-0.03741217777133,-0.0064154984429479],[-0.010345499031246,0.021767565980554,0.045179020613432],[0.084025725722313,-0.12026008218527,-0.11532035470009]],[[-0.18261305987835,-0.016127519309521,-0.039656177163124],[0.11923032253981,0.044539798051119,0.0081008560955524],[0.044759042561054,-0.07322995364666,-0.16877041757107]],[[-0.0045256447046995,-0.082803882658482,0.024735171347857],[-0.034996885806322,-0.0086722858250141,0.18335025012493],[-0.20632776618004,-0.016684306785464,0.088376231491566]],[[-0.18498083949089,0.010190043598413,0.17195074260235],[0.091698907315731,-0.14142958819866,-0.089480772614479],[0.079408369958401,0.093181945383549,0.15632221102715]],[[0.039297636598349,-0.044511307030916,0.10619438439608],[-0.064680047333241,-0.032463956624269,0.20630921423435],[0.24571646749973,0.33232709765434,0.30802497267723]],[[-0.09886047244072,-0.016722803935409,0.10819295793772],[-0.060499135404825,0.066577918827534,-0.012680744752288],[-0.010322395712137,0.10617757588625,-0.038649454712868]],[[-0.26912596821785,0.12603299319744,0.3545455634594],[0.080607883632183,-0.12873980402946,0.12810552120209],[-0.031492751091719,0.073594056069851,0.1074158474803]],[[-0.062056243419647,-0.0077201719395816,-0.057836785912514],[-0.031015200540423,-0.15964487195015,-0.0707016736269],[0.059826273471117,0.03904714435339,0.041756611317396]],[[0.12492799758911,0.15371145308018,-0.014267824590206],[0.082212753593922,0.066453479230404,0.14024233818054],[0.24002200365067,0.061925586313009,-0.23648013174534]],[[0.052077688276768,0.08385169506073,-0.024539502337575],[0.23029418289661,0.17062519490719,0.11924736946821],[0.021948913112283,-0.048134319484234,0.0089437989518046]],[[-0.049290779978037,-0.028155544772744,0.14665883779526],[0.01089486759156,-0.11157242208719,-0.13193471729755],[0.043872520327568,0.052383091300726,0.078769817948341]],[[0.026667820289731,-0.022745832800865,-0.15624599158764],[0.049161594361067,0.032747335731983,0.040467649698257],[0.091785073280334,-0.035395544022322,-0.010486329905689]],[[0.022227086126804,0.094200260937214,0.074294067919254],[0.10546430200338,0.041308380663395,-0.027721613645554],[0.039258666336536,0.059427995234728,0.080300889909267]],[[-0.025261040776968,0.033606395125389,0.011088802479208],[0.034778483211994,0.12842187285423,0.10873490571976],[-0.023049088194966,-0.076497092843056,-0.14332537353039]],[[0.07495503872633,0.045719422399998,0.12878061830997],[-0.04648057743907,0.046007122844458,0.11018120497465],[-0.043255064636469,0.042665112763643,0.043560843914747]],[[-0.085844978690147,0.1091709882021,0.012943006120622],[-0.033315986394882,0.012655267491937,-0.064428262412548],[0.0024633533321321,0.0904895439744,-0.080075658857822]],[[0.025412511080503,-0.023945035412908,0.16143509745598],[-0.071337796747684,-0.086488343775272,0.081895641982555],[0.042362239211798,-0.045600455254316,0.10415212064981]],[[-0.16186738014221,-0.0064796772785485,0.10144997388124],[0.009542684070766,0.049590438604355,-0.1080473959446],[-0.018154479563236,0.087980203330517,0.0039234347641468]],[[-0.078236922621727,0.13154724240303,0.14238522946835],[-0.16159401834011,-0.13955965638161,-0.16516613960266],[-0.13401602208614,-0.0012344610877335,-0.012810110114515]],[[-0.033833641558886,-0.091172441840172,-0.016737010329962],[-0.032753847539425,-0.089015826582909,-0.081458181142807],[0.05315126106143,-0.042591776698828,-0.018789267167449]],[[-0.31555438041687,-0.14398814737797,0.10784043371677],[-0.091080747544765,0.022879242897034,0.019503554329276],[0.098867237567902,-0.02572900429368,-0.11952859908342]],[[0.076516017317772,0.040325537323952,0.14964658021927],[0.22806666791439,0.16882461309433,0.068014398217201],[0.051633700728416,-0.079868912696838,-0.060128327459097]],[[-0.11914317309856,-0.036644916981459,0.0098324539139867],[-0.15813341736794,0.015475141815841,0.020859509706497],[-0.12547144293785,0.038705740123987,0.096522301435471]],[[0.075499817728996,0.00755943544209,0.20972742140293],[0.011411604471505,0.072054639458656,0.099547833204269],[0.065008327364922,0.021170001477003,0.022480189800262]],[[0.072363540530205,-0.098995819687843,0.051750916987658],[0.016703218221664,0.03805984929204,0.14502136409283],[0.11700709164143,0.089776113629341,0.10375434160233]],[[-0.090806066989899,0.016909072175622,-0.20975099503994],[-0.023125970736146,0.026078900322318,0.031386759132147],[0.032794211059809,0.24751873314381,0.07869790494442]],[[0.068051248788834,-0.17898282408714,-0.14952681958675],[-0.022637778893113,-0.14344871044159,0.04734480753541],[-0.099466152489185,-0.032495725899935,-0.023402674123645]],[[0.10067474842072,-0.024082094430923,0.064565323293209],[0.036714162677526,0.024144714698195,0.032182056456804],[-0.037679761648178,-0.099790766835213,-0.25214940309525]],[[0.00086507626110688,0.1405256986618,0.021111940965056],[0.011085049249232,0.098926447331905,-0.066700391471386],[-0.002867870265618,0.10053960978985,0.082400567829609]],[[-0.040031146258116,-0.039863750338554,-0.075629845261574],[0.10166838020086,0.073531493544579,-0.17504580318928],[-0.040580939501524,0.042816922068596,-0.19549730420113]],[[-0.056314248591661,-0.0046388693153858,0.072059452533722],[-0.029173379763961,0.03158788383007,-0.014951267279685],[-0.15514406561852,0.026154801249504,-0.11621966958046]],[[-0.089235618710518,0.0092135602608323,-0.040907017886639],[-0.052213665097952,0.03142511472106,0.23866912722588],[0.014112387783825,-0.018315222114325,-0.022375682368875]],[[0.0093719447031617,-0.044575985521078,-0.075518615543842],[-0.00933304335922,-0.077252119779587,0.13918648660183],[0.08620610833168,-0.07198491692543,-0.093742400407791]],[[0.077833227813244,0.037923209369183,0.084008157253265],[-0.052774332463741,-0.20958578586578,-0.11774919182062],[-0.17958314716816,-0.1391574293375,-0.010535169392824]],[[0.12742711603642,-0.080071352422237,0.035985291004181],[-0.012457067146897,-0.0042277132160962,0.004718451295048],[-0.0054641221649945,0.026043582707644,0.094250924885273]],[[0.10357540100813,0.083397246897221,0.15100674331188],[0.055088113993406,-0.099037200212479,-0.048832330852747],[0.1324528157711,0.21908973157406,-0.17745761573315]],[[0.14390398561954,-0.0087109683081508,-0.15581625699997],[0.0093718906864524,-0.050987601280212,-0.042045757174492],[-0.058837994933128,0.053960002958775,0.0045107891783118]],[[0.17792136967182,-0.036627549678087,0.025546003133059],[0.1028313934803,0.079923532903194,-0.0010364174377173],[-0.046392060816288,-0.12100839614868,-0.12431734055281]],[[0.1532004326582,0.070194907486439,0.057654667645693],[-0.018479399383068,0.0607805326581,-0.14462478458881],[-0.046382144093513,0.046005327254534,0.012542975135148]],[[-0.19773638248444,-0.010167070664465,0.067338444292545],[-0.060560155659914,-0.023405214771628,0.024263344705105],[0.085520379245281,-0.12211959064007,-0.33722999691963]],[[0.039295859634876,0.074029825627804,0.002496836706996],[0.0074494653381407,-0.012610538862646,0.11212804913521],[0.088845424354076,-0.067107051610947,0.078380666673183]],[[0.05381129309535,0.1847492903471,0.28998437523842],[0.0048073958605528,0.070977687835693,-0.10072034597397],[-0.04521506652236,0.058493930846453,-0.061070147901773]],[[-0.018463583663106,-0.0083601661026478,-0.024407207965851],[0.071508623659611,0.03919605538249,-0.068344585597515],[0.026114286854863,-0.05771841108799,0.1438245922327]],[[-0.014755566604435,0.015853842720389,0.12661084532738],[-0.0051864511333406,-0.048883236944675,0.077221065759659],[0.073155403137207,0.0064478926360607,0.02853643707931]],[[-0.15571704506874,-0.1707711070776,-0.14133782684803],[-0.13767018914223,-0.1477170586586,0.043754983693361],[-0.057242330163717,-0.17759226262569,0.011969184502959]],[[-0.026917364448309,0.084434658288956,0.098178118467331],[0.012603445909917,-0.060521874576807,-0.058649528771639],[0.069573864340782,0.20005834102631,0.10078689455986]],[[0.069450907409191,0.17368741333485,0.1507576406002],[0.12141797691584,0.091827504336834,0.11059955507517],[0.015238406136632,-0.019034883007407,0.052697032690048]],[[-0.04790972545743,0.0095750465989113,0.059017762541771],[0.046822171658278,-0.009558335877955,-0.27034667134285],[-0.11807985603809,-0.029202323406935,0.078046798706055]],[[-0.099621400237083,-0.12859877943993,-0.17940349876881],[-0.09250558167696,0.10439633578062,0.018061704933643],[0.04608790948987,0.045235574245453,0.0760812535882]],[[-0.1134349629283,-0.02563594840467,-0.059253979474306],[-0.018837729468942,0.083538688719273,0.17529730498791],[-0.096431910991669,-0.20874448120594,-0.089357905089855]]],[[[-0.020740333944559,-0.051562245935202,0.065592147409916],[-0.019440449774265,0.02755493298173,9.1753041488118e-05],[-0.011468416079879,-0.019047426059842,0.042097073048353]],[[-0.043731510639191,0.07996841520071,0.01695366576314],[0.0020093775819987,0.029961932450533,-0.03347584232688],[-0.0095438919961452,-0.02901217341423,0.0050390381366014]],[[0.013608479872346,0.067054934799671,-0.070209681987762],[-0.0042356457561255,-0.018668953329325,0.023394359275699],[0.090484336018562,0.031691454350948,-0.054506313055754]],[[0.0075474767945707,0.0065132915042341,0.031072402372956],[0.06755056977272,0.011779719032347,0.066350355744362],[0.081420756876469,-0.035500068217516,-0.032599493861198]],[[-0.043299753218889,0.012264901772141,-0.031888760626316],[-0.037291206419468,0.0040485709905624,-0.0024794791825116],[0.013786040246487,0.033919919282198,0.010167905129492]],[[0.027451345697045,0.025506218895316,0.043519638478756],[0.026870785281062,-0.02764686755836,-0.02479407005012],[0.024381950497627,-0.054194264113903,-0.080179959535599]],[[0.062416777014732,0.079342506825924,-0.065213330090046],[0.041702941060066,0.054332986474037,0.043318260461092],[-0.029601089656353,0.020838359370828,-0.061324920505285]],[[0.040180403739214,-0.024349322542548,0.023038778454065],[0.054741483181715,-0.062538512051105,-0.057654835283756],[0.067867465317249,0.041368551552296,0.070564433932304]],[[0.014071871526539,0.0029274625703692,0.036452509462833],[-0.029229843989015,-0.020322779193521,-0.0028402905445546],[0.03605329990387,0.031069273129106,-0.022914340719581]],[[-0.055125020444393,0.06139850243926,-0.084483355283737],[0.044254090636969,0.012395462021232,-0.0067725251428783],[0.10357125848532,-0.036684822291136,-0.0016276837559417]],[[-0.031468391418457,0.0041097002103925,-0.011549402959645],[-0.0050303470343351,0.087719090282917,0.09675582498312],[-0.11816697567701,-0.067131698131561,-0.025585593655705]],[[0.054656699299812,-0.019744299352169,-0.062431681901217],[-0.035627249628305,-0.07022900134325,0.010873490944505],[-0.0022079993505031,-0.082116581499577,0.07640215754509]],[[-0.0024476433172822,0.091844327747822,0.036608666181564],[-0.043155126273632,-0.023686107248068,0.089613199234009],[-0.0057126614265144,-0.076241932809353,0.0079990942031145]],[[0.048576876521111,0.054432932287455,0.01792741753161],[-0.02252247184515,-0.061022758483887,-0.065382115542889],[-0.036936547607183,-0.050882115960121,0.0058586704544723]],[[0.031794514507055,0.021871201694012,-0.028971124440432],[-0.082191377878189,0.070077583193779,-0.0044281464070082],[-0.019320568069816,0.025800893083215,0.025600258260965]],[[0.011827859096229,-0.060721177607775,-0.019414119422436],[-0.0019937695469707,-0.0013555478071794,0.03830660879612],[0.063419915735722,0.045043490827084,0.033029448240995]],[[-0.020367808640003,-0.050224736332893,0.043138578534126],[-0.0021997897420079,0.034452933818102,-0.084159351885319],[0.053480368107557,-0.035452533513308,0.018043294548988]],[[-0.089623212814331,0.0013313323725015,-0.044100776314735],[-0.0061462931334972,0.031007977202535,0.0047890432178974],[0.030085323378444,-0.0081498445942998,-0.042246781289577]],[[0.057423066347837,0.0012257280759513,-0.015555335208774],[0.014182164333761,0.051781348884106,0.025892874225974],[0.012111965566874,0.038156937807798,-0.043993342667818]],[[-0.011433459818363,-0.064912110567093,-0.11209454387426],[0.082615569233894,-0.0076086651533842,0.0067534595727921],[-0.013694168068469,0.058694716542959,-0.072328977286816]],[[0.0003498284786474,-0.0050699119456112,-0.04927534237504],[-0.03500909730792,0.019018299877644,0.013535167090595],[0.023767821490765,-0.019297489896417,-0.045544680207968]],[[0.00015010795323178,0.01660081371665,0.12012285739183],[0.021722598001361,-0.08026335388422,-0.062805391848087],[-0.020419623702765,-0.10513230413198,0.033742990344763]],[[0.049134772270918,-0.088387854397297,-0.041011825203896],[-0.045188408344984,-0.050201714038849,0.010134259238839],[0.031824007630348,0.011038180440664,-0.094501249492168]],[[-0.0098455408588052,-0.090186707675457,0.0030296803452075],[0.03893768042326,-0.049040216952562,0.0057989652268589],[-0.010920569300652,-0.052440084517002,-0.03252125903964]],[[0.014173034578562,0.034922212362289,-0.019429402425885],[-0.042833346873522,-0.010753753595054,0.032411586493254],[-0.01703173853457,0.003380199894309,-0.0033477079123259]],[[-0.0052854903042316,-0.0050121890380979,-0.076758272945881],[0.058582577854395,-0.0097418054938316,0.013301425613463],[0.06489522010088,-0.025720560923219,-0.0059742382727563]],[[0.066779397428036,0.048756927251816,0.02581405825913],[0.043588329106569,-0.060508299618959,-0.054603021591902],[0.004693559370935,-0.043672069907188,-0.017011564224958]],[[0.074823059141636,0.067689843475819,0.045783691108227],[-0.049431018531322,-0.063902415335178,-0.04739909991622],[0.00948581751436,-0.086500130593777,-0.0096883699297905]],[[0.023124501109123,0.041759099811316,-0.018249360844493],[-0.055408395826817,0.078806430101395,0.025569161400199],[-0.066140905022621,0.028045672923326,0.03361239656806]],[[-0.0024147254880518,-0.12432324141264,-0.033374957740307],[0.019350923597813,-0.051576521247625,-0.0082255061715841],[0.049723144620657,0.022026730701327,-0.028576176613569]],[[-0.096862196922302,-0.047927048057318,-0.0086998343467712],[-0.026548800989985,0.023076370358467,-0.010358408093452],[-0.035002548247576,-0.051185473799706,-0.019913697615266]],[[-0.068519659340382,0.083578385412693,0.038149029016495],[0.058958061039448,0.0060824868269265,0.018352376297116],[-0.0086203636601567,0.0048318482004106,-0.056629903614521]],[[0.038745511323214,0.0048269229009748,-0.017700277268887],[0.089071407914162,-0.0061568976379931,0.018675655126572],[-0.014251373708248,0.025169286876917,-0.081766828894615]],[[0.046989489346743,-0.019254865124822,0.048086367547512],[0.013865633867681,-0.015967715531588,-0.030410975217819],[-0.023988684639335,-0.048311591148376,-0.028710810467601]],[[-0.090410232543945,-0.049382463097572,0.055178519338369],[-0.0062782331369817,-0.0096743097528815,0.0072639533318579],[0.023259097710252,-0.010376280173659,0.03545755147934]],[[0.021500831469893,0.022102642804384,0.03602633997798],[0.031825754791498,0.042645987123251,0.029818555340171],[0.069639533758163,0.015187845565379,0.054576750844717]],[[0.021212033927441,-0.037655472755432,-0.059217553585768],[-0.041133817285299,-0.013769389130175,0.012238498777151],[-0.070009008049965,0.075233660638332,0.029466670006514]],[[0.045922663062811,-0.024439100176096,-0.019438123330474],[0.006607489194721,0.0089257508516312,0.036254420876503],[0.019179416820407,0.019322961568832,-0.053720835596323]],[[0.033188853412867,-0.050021506845951,0.014963579364121],[0.023924682289362,0.060134761035442,-0.077424257993698],[-0.0052964030764997,-0.064954273402691,0.0073373559862375]],[[-0.022858699783683,-0.015161090530455,0.017268406227231],[0.033066976815462,-4.2865362047451e-05,0.040465358644724],[0.068732723593712,-0.021418660879135,-0.046118646860123]],[[0.0075448658317327,0.033171147108078,0.028028950095177],[-0.0044292872771621,-0.075634852051735,-0.0017879887018353],[0.045526213943958,-0.047064214944839,-0.02748566120863]],[[0.05782487615943,-0.036955621093512,0.025214439257979],[-0.0078751957044005,-0.010829808190465,-0.020613063126802],[-0.0008818949572742,0.0084743555635214,-0.02355257794261]],[[0.019135776907206,-0.011988640762866,-0.023694463074207],[-0.024100545793772,-0.019016955047846,-0.049378372728825],[0.044220849871635,-0.0074640256352723,-0.033032208681107]],[[-0.072779268026352,-0.052465364336967,-0.045597810298204],[-0.1031291410327,-0.027459831908345,-0.075540199875832],[-0.061720475554466,0.035011544823647,0.043655399233103]],[[0.051768973469734,-0.036263909190893,-0.013354987837374],[-0.048811115324497,-0.0087320366874337,0.0080713676288724],[0.057092420756817,-0.040971074253321,0.037857443094254]],[[-0.063837178051472,-0.02242242731154,0.036585602909327],[-0.089561276137829,-0.0037937527522445,0.0073101632297039],[-0.026611108332872,0.011213437654078,0.014921202324331]],[[0.012884418480098,0.04901534691453,-0.0062795942649245],[-0.047653507441282,-0.15176446735859,-0.012704982422292],[0.015987947583199,-0.014467637054622,0.0072662988677621]],[[0.0094199823215604,-0.0087975300848484,-0.044141441583633],[0.059288926422596,-0.030441759154201,0.090671308338642],[-0.052859790623188,0.036176361143589,0.046363212168217]],[[-0.065268442034721,-0.040321797132492,-0.057155594229698],[0.048884391784668,-0.0095619922503829,0.044999789446592],[-0.016723020002246,0.030722936615348,0.010868487879634]],[[0.0033419039100409,-0.024646600708365,-0.014842990785837],[-0.051052112132311,-0.044714666903019,0.029951043426991],[-0.016973162069917,-0.002303481567651,-0.042422521859407]],[[-0.10578171163797,0.0043580261990428,-0.026870299130678],[0.066871292889118,-0.1053017154336,-0.08317968249321],[-0.00064436899265274,0.0037640598602593,-0.064212299883366]],[[0.018301216885448,0.034322384744883,0.036937348544598],[-0.0024725263938308,-0.0046788225881755,-0.0770258679986],[0.018292279914021,0.013434336520731,-0.025782773271203]],[[-0.029023436829448,-0.00193687598221,0.094030678272247],[-0.06406444311142,-0.026175590232015,-0.12838451564312],[-0.070732675492764,-0.022156354039907,-0.065854363143444]],[[0.087570331990719,-0.0051536038517952,0.0013687771279365],[-0.041327659040689,0.059079937636852,0.020102931186557],[-0.064281187951565,0.051389269530773,-0.018096147105098]],[[0.05235880240798,0.025213772431016,0.0028658935334533],[-0.011928772553802,-0.014821914024651,0.11732666194439],[0.047793291509151,-0.041317604482174,-0.0065325191244483]],[[-0.05542678385973,-0.032545898109674,-0.0084148617461324],[0.005978140514344,-0.072773315012455,-0.045306034386158],[0.038337077945471,0.014175293035805,0.03926794603467]],[[0.020618921145797,-0.0016452573472634,-0.023934042081237],[0.01424805726856,0.043831493705511,0.069154903292656],[-0.039608620107174,0.005746447481215,0.016493994742632]],[[0.025176029652357,-0.035496536642313,-0.03843492269516],[-0.033864546567202,-0.021168185397983,-0.010239721275866],[-0.037825062870979,-0.014435951597989,-0.02601251937449]],[[0.0014629262732342,-0.048952288925648,0.0090065794065595],[-0.059358775615692,-0.030382426455617,-0.063462786376476],[0.031878475099802,0.037108208984137,0.0020404893439263]],[[-0.06281229108572,-0.030869884416461,-0.04276255890727],[0.047269109636545,-0.032266050577164,0.021183686330914],[0.0091731771826744,-0.11860577017069,0.0082996906712651]],[[0.00078235106775537,0.0043858708813787,-0.1428414285183],[-0.080128312110901,-0.046087760478258,0.024692693725228],[0.0087571060284972,-0.018876334652305,0.024392725899816]],[[0.033474270254374,0.019284404814243,-0.01697114482522],[-0.074901156127453,-0.056672997772694,-0.07037341594696],[-0.015102772973478,0.018571523949504,0.030449567362666]],[[-0.003247277578339,-0.012884815223515,-0.049531359225512],[0.051405973732471,-0.042586617171764,-0.026511289179325],[-0.016201736405492,-0.01499595399946,0.076755873858929]],[[-0.0059902481734753,0.046995051205158,-0.0046422271989286],[-0.025801675394177,0.015150647610426,0.020184958353639],[-0.051644902676344,-0.0049773422069848,-0.03424334153533]],[[0.068623550236225,0.057050913572311,0.04922204464674],[0.0044202245771885,-0.023261936381459,-0.05045422539115],[0.055750548839569,-0.0075780875049531,0.0047783558256924]],[[-0.041685242205858,0.031805980950594,-0.11942517012358],[-0.0079934168606997,0.059537552297115,-0.04465751722455],[0.0076861237175763,0.012429634109139,-0.14109244942665]],[[0.035850644111633,0.071995057165623,0.010930990800261],[0.074115879833698,-0.01430887542665,0.04553184658289],[-0.01286324672401,-0.0047605037689209,-0.0075216931290925]],[[0.022333890199661,0.018902277573943,0.030319828540087],[0.066736727952957,-0.056484416127205,0.074216343462467],[-0.027448369190097,0.018696315586567,-0.033790603280067]],[[-0.031864706426859,0.014127019792795,-0.029940219596028],[-0.022668914869428,-0.028425937518477,-0.033124342560768],[-0.077801711857319,-0.039326876401901,-0.034315045922995]],[[-0.056452706456184,-0.062965549528599,-0.032245464622974],[-0.015805011615157,-0.013678962364793,-0.011780858039856],[0.01552617084235,0.041011326014996,0.028223661705852]],[[0.0068161091767251,-0.019109355285764,-0.061504319310188],[0.0068143946118653,0.045963179320097,-0.035179387778044],[0.04032589122653,0.023933714255691,-0.031554836779833]],[[0.031670913100243,-0.01011358294636,0.064226120710373],[-0.0059994859620929,0.049246620386839,0.015970941632986],[0.062505275011063,0.013354331254959,-0.030005512759089]],[[-0.10243768244982,0.015588507056236,-0.042166285216808],[-0.011097555048764,-0.036216620355844,-0.019775109365582],[0.0056874291040003,-0.0056571583263576,-0.043182000517845]],[[-0.030076621100307,-0.034521169960499,-0.053842060267925],[-0.028008580207825,-0.018531853333116,-0.015479900874197],[0.099573902785778,0.052021533250809,-0.0031382385641336]],[[0.013888807035983,-0.030649548396468,-0.031100805848837],[0.076724074780941,0.023947512730956,0.011303129605949],[-0.012417275458574,0.022457590326667,-0.065433867275715]],[[-0.054055523127317,-0.0044045117683709,0.051725290715694],[-0.02508182823658,0.096289843320847,-0.016354538500309],[0.088358394801617,0.060215372592211,0.1316379904747]],[[0.029936268925667,-0.0070818993262947,-0.051674667745829],[0.018872620537877,0.023130623623729,0.028854565694928],[-0.11186428368092,0.047496490180492,0.0058140894398093]],[[0.017996614798903,0.016012091189623,0.023067804053426],[-0.039672963321209,0.025358851999044,-0.0013423257041723],[-0.03586982935667,-0.0088682528585196,0.0082255834713578]],[[0.020606506615877,0.073872357606888,0.025464391335845],[-0.041566032916307,-0.019010938704014,0.024335362017155],[0.0027535068802536,0.013908894732594,-0.036696564406157]],[[0.036822430789471,-0.05150156840682,-0.057773981243372],[0.010474285110831,0.051803655922413,-0.067664183676243],[0.0098024616017938,-0.018411064520478,0.0099508473649621]],[[-0.004670605994761,-0.00012931525998283,-0.0055396119132638],[0.04583190754056,0.027183772996068,-0.065645515918732],[0.076711282134056,-0.009682908654213,0.037489306181669]],[[-0.0068902671337128,-0.085618168115616,-0.022647134959698],[0.0040597692131996,0.01554673537612,0.01245192065835],[-0.036125753074884,-0.058797277510166,0.023993575945497]],[[-0.051542527973652,-0.028738776221871,0.019754713401198],[-0.12789164483547,-0.046988394111395,-0.018542859703302],[0.033680461347103,-0.0065581202507019,0.014501519501209]],[[-0.035560984164476,0.017688119783998,-0.0035129503812641],[-0.029851745814085,0.032854963093996,-0.022332554683089],[-0.030681323260069,-0.055732242763042,-0.020956594496965]],[[-0.028217999264598,0.063967980444431,0.078330650925636],[-0.037862561643124,0.018869126215577,-0.065795704722404],[0.0017062292899936,-0.074507310986519,-0.047108333557844]],[[-0.012650776654482,0.0090391552075744,-0.033992972224951],[0.047582808881998,0.034503992646933,-0.033521745353937],[0.08165729790926,0.01481790933758,0.021804353222251]],[[-0.04893471673131,0.014709717594087,0.005480601452291],[0.0026836446486413,-0.061766669154167,-0.027494549751282],[-0.0053790546953678,-0.034351240843534,-0.039303123950958]],[[-0.082085087895393,0.018127540126443,0.013713238760829],[0.047906465828419,-0.0065878015011549,-0.013609571382403],[-0.0030169880483299,-0.062563307583332,-0.0077052284032106]],[[-0.018060361966491,0.02152144163847,-0.010867509059608],[-0.03083804436028,-0.014321238733828,-0.081092916429043],[0.04511596634984,0.055069237947464,-0.011582952924073]],[[-0.018805857747793,0.015799812972546,0.086178086698055],[-0.072842195630074,0.057717714458704,0.020366746932268],[-0.060245290398598,0.026948533952236,-0.068917527794838]],[[0.024286573752761,0.044097721576691,-0.017870839685202],[0.035968083888292,0.062910743057728,-0.0073054656386375],[0.00791303999722,0.0011379146017134,7.6746888225898e-05]],[[-0.093799829483032,-0.032169125974178,-0.047589715570211],[-0.038670282810926,-0.061243556439877,-0.045114275068045],[-0.0014645342016593,0.03313459828496,0.0089208744466305]],[[0.079401783645153,-0.025578124448657,0.0093070464208722],[-0.047828435897827,-0.0041011837311089,0.0057541322894394],[-0.0098205916583538,0.0079610403627157,0.047171968966722]],[[0.045086551457644,0.0432931445539,0.00053660239791498],[0.069375574588776,-0.040237855166197,0.055780656635761],[-0.017750069499016,0.044209271669388,-0.024617947638035]],[[-0.015413221903145,0.0080510536208749,-0.012883516028523],[0.021311119198799,0.051910851150751,-0.030739357694983],[0.052135623991489,0.040233083069324,-0.017157398164272]],[[0.018202075734735,0.035804491490126,-0.043812543153763],[0.021384200081229,-0.052400439977646,-0.044127076864243],[0.05571810528636,-0.026019835844636,0.036540545523167]],[[0.04592053592205,0.083687588572502,-0.015894897282124],[0.059287793934345,-0.05925264954567,0.032027415931225],[0.010261030867696,0.01984322629869,0.093733116984367]],[[0.067395202815533,0.055019229650497,0.013880942948163],[-0.047866746783257,-0.047108683735132,-0.032141037285328],[0.074861645698547,-0.0015851230127737,-0.060356467962265]],[[0.013739008456469,0.027915872633457,-0.023432640358806],[-0.083556793630123,-0.021868107840419,0.051319949328899],[-0.047769196331501,0.025583494454622,0.030119827017188]],[[0.01766799017787,0.042310334742069,-0.018614670261741],[0.016009338200092,-0.057797640562057,0.047492180019617],[-0.02704987488687,-0.088946610689163,0.099590517580509]],[[0.05369370803237,0.042710889130831,-0.081282913684845],[-0.037963308393955,0.0087898736819625,-0.037127386778593],[-0.011367534287274,-0.069811105728149,-0.040051866322756]],[[-0.063679158687592,0.0062198019586504,0.031743470579386],[0.0183544177562,0.02277903445065,-0.034568727016449],[-0.0042151440866292,0.0064630452543497,-0.056092023849487]],[[0.065178908407688,0.059348061680794,-0.016479521989822],[0.050278402864933,0.064433053135872,0.034742578864098],[0.048446204513311,-0.051239855587482,0.032674707472324]],[[0.030086992308497,-0.027685599401593,-0.059027224779129],[0.022402143105865,-0.010471816174686,0.0097874710336328],[0.069794960319996,-0.012735363095999,-0.027093816548586]],[[-0.026247575879097,0.045771040022373,-0.023430429399014],[-0.006089105270803,-0.0087045188993216,-0.0078491698950529],[0.053314171731472,-0.016729421913624,-0.023197829723358]],[[0.014709766954184,-0.0020700448658317,0.023917844519019],[-0.035345029085875,0.012575849890709,-0.018608659505844],[-0.041327264159918,0.041768401861191,-0.046553816646338]],[[0.018643919378519,-0.053135871887207,0.038665283471346],[0.015138564631343,0.035078585147858,-0.072152629494667],[-0.04270338639617,0.016603088006377,-0.04089367389679]],[[-0.046598806977272,0.043653067201376,0.0027891320642084],[0.093971528112888,0.041053116321564,0.030340610072017],[-0.013220878317952,-0.1250127106905,-0.00072389369597659]],[[0.0068967835977674,-0.058067303150892,0.013712408021092],[-0.021858919411898,-0.0087243597954512,-0.014783070422709],[-0.03457959741354,0.0080521618947387,0.015754731371999]],[[0.08992125838995,-0.027656801044941,0.03995468094945],[-0.045077722519636,0.011787569150329,0.043625991791487],[0.05420471355319,-0.034894477576017,-0.052717972546816]],[[-0.033916518092155,-0.021100297570229,0.017011599615216],[0.060532748699188,0.10659220814705,-0.048703532665968],[0.0406155847013,0.047430001199245,-0.0024704320821911]],[[0.059216111898422,0.015587829053402,-0.02744647115469],[-0.047393560409546,-0.014904307201505,-0.013311609625816],[0.0018239631317556,0.051801953464746,0.066338576376438]],[[-0.046603094786406,0.062733791768551,-0.051847405731678],[0.0655812099576,0.020480317994952,-0.062888868153095],[0.034365471452475,0.051387920975685,-0.052635297179222]],[[-0.012575434520841,-0.073162294924259,0.0018998860614374],[-0.029575670138001,0.031263593584299,-0.021600529551506],[0.04869681596756,0.083848692476749,-0.018358461558819]],[[-0.0049035921692848,0.028658946976066,0.016335774213076],[0.054235350340605,-0.043663453310728,0.017238283529878],[-0.053684040904045,0.010768513195217,-0.045752923935652]],[[0.064059466123581,0.018216609954834,-0.022484626621008],[-0.030394285917282,0.0097151370719075,0.022120665758848],[-0.074450172483921,-0.021408129483461,0.1124439239502]],[[0.032625198364258,0.057830318808556,0.016321355476975],[-0.062593959271908,-0.029128670692444,-0.0031192887108773],[-0.013186430558562,0.051960304379463,0.051699955016375]],[[-0.018729055300355,-0.016234451904893,0.0034145938698202],[-0.015310813672841,0.024320909753442,0.087733916938305],[-0.0030737041961402,-0.0023318929597735,0.070326663553715]],[[-0.095239758491516,-0.023150602355599,-0.033091548830271],[-0.03621394559741,0.018123913556337,-0.04216268658638],[-0.033012941479683,-0.0028057808522135,-0.047068484127522]],[[-0.027691181749105,-0.020817950367928,0.0043107597157359],[0.016268953680992,-0.038714092224836,0.014460103586316],[-0.0044765616767108,-0.015299904160202,0.0063412804156542]],[[-0.076428912580013,-0.026256373152137,-0.01101441681385],[-0.021126853302121,-0.019937839359045,0.010089212097228],[0.010599408298731,-0.024763083085418,0.032056499272585]],[[0.0055888369679451,-0.0048329741694033,-0.042218245565891],[-0.053673911839724,0.063355632126331,-0.018078191205859],[-0.042402200400829,-0.036401063203812,-0.098139241337776]],[[-0.069360628724098,-0.020348699763417,-0.026048289611936],[-0.096468634903431,-0.0022514059673995,0.026191622018814],[-0.015264151617885,0.019460190087557,0.016884129494429]],[[0.084232904016972,-0.05491491034627,-0.0046250750310719],[0.02294578589499,-0.043180011212826,0.029284246265888],[-0.022503366693854,0.037541583180428,0.036948788911104]],[[0.044188369065523,-0.071249201893806,0.015822043642402],[0.058664288371801,0.045117843896151,0.012696902267635],[0.094951122999191,0.0072403475642204,0.037670657038689]],[[-0.042488474398851,-0.024093732237816,0.076130583882332],[0.025550210848451,0.00082967703929171,-0.021737292408943],[0.032082036137581,0.030459130182862,0.031026935204864]],[[-0.052537433803082,-0.062412828207016,-0.057286508381367],[0.031942434608936,-0.029174447059631,-0.038302894681692],[-0.030759902670979,-0.0043571428395808,-0.012530211359262]],[[-0.018925774842501,-0.007180109154433,0.032411634922028],[-0.013143966905773,0.0023618340492249,0.058867685496807],[0.02691069431603,0.022282468155026,0.052457399666309]]],[[[0.074582025408745,-0.046091292053461,-0.11939433962107],[-0.066997230052948,0.016839617863297,-0.14907942712307],[0.026397258043289,0.058635707944632,0.12738478183746]],[[0.076083838939667,-0.061299685388803,-0.090731203556061],[-0.20062665641308,0.01770500279963,0.11659539490938],[-0.0018852761713788,0.0096580823883414,0.047639679163694]],[[-0.032839268445969,0.0081430152058601,-0.15777108073235],[0.092760726809502,0.015215435065329,0.060865662992001],[0.10928174108267,-0.0080858403816819,0.096955738961697]],[[-0.10052087903023,-0.042043834924698,-0.19540396332741],[-0.013064019382,-0.035032149404287,-0.053770292550325],[0.033286951482296,-0.080778412520885,-0.10616128891706]],[[-0.060520477592945,-0.21085049211979,-0.1296067237854],[0.27766489982605,0.2284099906683,0.20844595134258],[-0.032204896211624,-0.10117304325104,-0.028586195781827]],[[0.086890563368797,0.13118457794189,0.2118906378746],[-0.12073235958815,-0.10487914085388,-0.035885836929083],[0.079622536897659,0.090368933975697,0.091194175183773]],[[0.13090999424458,0.29631409049034,0.45828992128372],[-0.067307084798813,-0.074935562908649,-0.21071016788483],[0.0836426243186,-0.026363205164671,-0.061512980610132]],[[-0.080992683768272,-0.064997330307961,-0.090399868786335],[-0.0042511383071542,-0.070975922048092,0.082224681973457],[-0.064934864640236,0.059442069381475,0.17052637040615]],[[-0.11096949875355,-0.0067718955688179,0.14613787829876],[-0.079073250293732,0.19947494566441,0.011897603981197],[-0.1041329652071,0.052760809659958,0.16540007293224]],[[-0.0031167855486274,-0.16381628811359,-0.30520132184029],[-0.0011734287254512,0.021024918183684,-0.036941103637218],[-0.13938057422638,-0.099814169108868,-0.18814268708229]],[[0.037582732737064,0.016579018905759,0.021743869408965],[0.12564714252949,0.049719113856554,0.023501707240939],[0.11855148524046,0.096129670739174,0.01909189298749]],[[-0.083895117044449,-0.10571989417076,0.13537220656872],[-0.036886353045702,0.020207054913044,0.05945298448205],[-0.030953450128436,0.20060203969479,-0.02310710772872]],[[-0.044249787926674,0.015068059787154,0.081794880330563],[-0.090682707726955,-0.11682531237602,-0.10693955421448],[-0.054149825125933,0.12639464437962,0.0075342007912695]],[[-0.096825078129768,-0.17980465292931,-0.1715774089098],[-0.076250933110714,-0.13492627441883,-0.1955873966217],[0.058894213289022,-0.12620855867863,-0.15431095659733]],[[-0.16781847178936,0.044526666402817,0.068390876054764],[-0.16294871270657,-0.17309260368347,-0.097415216267109],[-0.041355099529028,-0.039231352508068,0.10087482631207]],[[-0.027654917910695,-0.19301733374596,-0.158158197999],[0.070756651461124,-0.0052414028905332,-0.09790463000536],[0.0080665592104197,-0.17743726074696,-0.069626063108444]],[[0.01020785421133,0.19670084118843,-0.085444688796997],[0.0037491691764444,-0.16304542124271,-0.17895559966564],[-0.052525229752064,0.023023238405585,0.015087218023837]],[[-0.0018853804795071,0.076579548418522,-0.060024775564671],[0.068550683557987,0.080847531557083,0.24267792701721],[-0.092258259654045,0.072979904711246,-0.047031052410603]],[[-0.17878665030003,-0.1083307787776,-0.28325748443604],[0.17746160924435,0.12592560052872,0.19314406812191],[0.10644161701202,-0.0097316922619939,-0.016714142635465]],[[0.012138764373958,-0.0043076425790787,0.05581684038043],[0.010399390012026,-0.055342365056276,0.15327042341232],[0.010831718333066,0.085414282977581,0.049077291041613]],[[0.015313099138439,-0.11520366370678,0.1756154447794],[-0.10918546468019,0.015669528394938,0.14542591571808],[-0.32051342725754,-0.21496339142323,-0.31645861268044]],[[-0.030691474676132,-0.1075187921524,-0.13896144926548],[0.010522304102778,0.0028014357667416,0.073228552937508],[-0.17521247267723,-0.028110533952713,-0.045891690999269]],[[-0.072944723069668,-0.20886486768723,-0.091592594981194],[-0.0039996583946049,0.13330812752247,0.15014566481113],[-0.074666693806648,-0.13978286087513,-0.13227508962154]],[[-0.051817514002323,-0.0086440844461322,-0.12824235856533],[0.083136104047298,0.0092828292399645,-0.071107015013695],[-0.088617116212845,-0.17551735043526,0.0019132435554639]],[[0.14961193501949,0.084713712334633,-0.075030624866486],[-0.040838524699211,0.048893727362156,0.050573278218508],[0.13665798306465,0.28754287958145,0.19604958593845]],[[0.017870901152492,0.085275247693062,-0.056266196072102],[0.013570884242654,0.071914955973625,-0.047123305499554],[-0.14771214127541,-0.12479569762945,-0.023556375876069]],[[0.10791132599115,0.014325113967061,-0.065672256052494],[0.0054748407565057,-0.19646862149239,0.092840261757374],[0.048796780407429,-0.076851226389408,-0.20451185107231]],[[-0.16409666836262,-0.12092922627926,-0.22165870666504],[-0.0043326299637556,-0.043682012706995,-0.085917823016644],[-0.034302346408367,-0.20662730932236,0.08819056302309]],[[0.088739238679409,-0.0064357109367847,0.018716670572758],[-0.13315962255001,-0.011372184380889,-0.091247379779816],[-0.20629827678204,0.12485780566931,0.057102534919977]],[[0.13784831762314,-0.26380568742752,-0.017720440402627],[0.3642435669899,0.014291238039732,-0.15550790727139],[0.047415520995855,0.044846445322037,0.017052091658115]],[[-0.12412836402655,-0.16769705712795,-0.12999825179577],[0.058015644550323,-0.071520984172821,-0.085688062012196],[0.075604505836964,0.022433491423726,0.17466519773006]],[[-0.045322600752115,-0.038602776825428,-0.055277988314629],[0.12763030827045,0.087136127054691,0.12641705572605],[0.15089920163155,0.13598617911339,-0.010165727697313]],[[0.0187963899225,0.087765231728554,0.18879677355289],[-0.090962581336498,-0.051017709076405,0.053315155208111],[-0.11623290926218,-0.15274664759636,0.11583514511585]],[[-0.25190788507462,-0.013536611571908,0.13659158349037],[-0.10400625318289,-0.042303431779146,-0.022596007212996],[-0.038700215518475,-0.075284987688065,0.10498431324959]],[[-0.016597434878349,-0.00077323889127001,0.014815063215792],[-0.069606602191925,0.027099719271064,0.12104497104883],[0.16777336597443,0.061111845076084,-0.071083307266235]],[[-0.04305674508214,-0.0061978339217603,0.070357568562031],[-0.058051347732544,0.12568758428097,0.092089593410492],[-0.10294849425554,-0.026978723704815,0.0088968081399798]],[[0.16299119591713,0.067224070429802,0.0014391160802916],[-0.013466890901327,-0.039051439613104,0.096820048987865],[-0.16078390181065,-0.21013185381889,-0.054297432303429]],[[0.097166962921619,-0.053482629358768,0.017845610156655],[0.014012832194567,0.033058904111385,0.014726840890944],[0.10382703691721,-0.14095722138882,-0.13817730545998]],[[0.015072125941515,0.24300833046436,-0.10628140717745],[-0.048723585903645,-0.059773106127977,-0.10518088191748],[0.12773366272449,-0.09044835716486,-0.093825280666351]],[[-0.10761176794767,-0.014533199369907,-0.022614005953074],[0.23000699281693,0.12815910577774,-0.11611264944077],[-0.12182910740376,0.0073152799159288,0.057335965335369]],[[-0.0093494253233075,-0.02733419649303,-0.049614679068327],[0.09147347509861,-0.034973777830601,-0.19141705334187],[0.036051541566849,-0.025941278785467,0.044189162552357]],[[0.1439276188612,0.074688464403152,0.17062340676785],[0.0091705042868853,0.076706789433956,0.087610080838203],[0.16663978993893,0.05021433904767,0.019650751724839]],[[0.084513500332832,-0.13068532943726,-0.14518262445927],[-0.097444728016853,-0.1898854970932,-0.069203183054924],[-0.02271387912333,-0.022977305576205,-0.010068383999169]],[[-0.056188013404608,-0.027589958161116,0.018171086907387],[0.031121781095862,-0.062655888497829,0.060198307037354],[0.036315985023975,-0.045371524989605,0.014392155222595]],[[-0.074767276644707,0.029013121500611,0.003298316616565],[-0.071024902164936,-0.15631225705147,-0.11377165466547],[0.0019611241295934,-0.054999705404043,-0.014869266189635]],[[0.13782288134098,-0.021241866052151,0.087242916226387],[-0.027129596099257,-0.074115939438343,-0.0026542567647994],[0.011633447371423,-0.0066015692427754,0.054209403693676]],[[-0.0081533016636968,-0.080984219908714,-0.2550111413002],[-0.141222178936,-0.21277968585491,-0.052048459649086],[0.016572767868638,-0.19013869762421,-0.22384525835514]],[[0.065938383340836,0.11432164907455,-0.070708967745304],[-0.17969560623169,-0.16929015517235,-0.068135410547256],[-0.35678985714912,-0.072585731744766,0.15055313706398]],[[-0.038710843771696,0.067830890417099,-0.086751379072666],[0.046839270740747,0.17265403270721,0.26087602972984],[-0.098410114645958,-0.020858980715275,0.22064054012299]],[[-0.27164798974991,-0.11142393946648,-0.05813180282712],[0.058611750602722,-0.011944778263569,-0.044894404709339],[-0.033343683928251,-0.033834215253592,-0.040697753429413]],[[-0.23351295292377,0.062715992331505,0.19616982340813],[-0.11421802639961,-0.079300597310066,-0.17204302549362],[0.060283694416285,-0.095018237829208,-0.21155855059624]],[[-0.026899203658104,0.062344253063202,-0.045834314078093],[0.070410437881947,-0.059681661427021,-0.099768355488777],[0.00013324990868568,0.057978827506304,-0.044149491935968]],[[-0.050292495638132,-0.17367224395275,-0.16975072026253],[-0.025128154084086,-0.22742912173271,-0.053016036748886],[0.0115487864241,-0.1219362616539,0.040923327207565]],[[0.18835271894932,-0.058622177690268,-0.18109868466854],[-0.007159560918808,0.078860782086849,0.019154384732246],[0.10791936516762,0.11720073223114,0.14924594759941]],[[0.24224063754082,0.15592241287231,0.018472131341696],[-0.15874195098877,-0.043454084545374,0.03984472155571],[-0.056864254176617,-0.11030513048172,-0.18292923271656]],[[0.35843387246132,0.022197550162673,0.080311186611652],[-0.0351800955832,0.037495542317629,0.043854501098394],[0.0024792787153274,-0.0034633427858353,0.075718253850937]],[[0.12828595936298,0.10467114299536,0.15164834260941],[-0.037551183253527,0.0033528213389218,0.032487586140633],[-0.06000555306673,-0.077128514647484,-0.065221443772316]],[[-0.094601288437843,-0.17280831933022,-0.10721744596958],[-0.17662088572979,-0.13249476253986,0.12139692157507],[-0.24325609207153,-0.13811685144901,0.10083862394094]],[[-0.20750041306019,-0.15557381510735,-0.29069590568542],[0.048825014382601,-0.012722573243082,0.18847584724426],[0.083712361752987,-0.13804385066032,0.019665284082294]],[[-0.14242218434811,0.039731774479151,0.27102753520012],[-0.11086813360453,-0.2555718421936,-0.023747520521283],[0.35005983710289,0.019594045355916,0.14848607778549]],[[0.14306361973286,0.12175714969635,-0.22190019488335],[0.053774517029524,-0.16349256038666,-0.11291167140007],[-0.1140538752079,-0.20324502885342,-0.010735984891653]],[[0.067359074950218,0.11070542037487,-0.17128112912178],[0.024520875886083,0.0018566813087091,-0.14951108396053],[-0.22237125039101,-0.0053065014071763,-0.064372397959232]],[[-0.03608875721693,0.015203513205051,-0.02530562132597],[0.16010344028473,0.0014351558638737,-0.067989870905876],[-0.042960815131664,-0.079269334673882,-0.1006193459034]],[[0.15343469381332,0.046062361449003,-0.23718532919884],[-0.11618600785732,0.15268675982952,0.24636341631413],[0.04634852334857,-0.12073875963688,-0.033140320330858]],[[-0.19928050041199,-0.030572514981031,-0.035662621259689],[-0.00038514137850143,0.07596043497324,0.017944343388081],[-0.085673294961452,-0.10901395231485,-0.096357628703117]],[[-0.10036943852901,-0.049146648496389,-0.013688360340893],[-0.010691452771425,0.0035789667163044,0.08235439658165],[0.054966948926449,-0.10288249701262,-0.004486785735935]],[[-0.020157149061561,-0.035405024886131,-0.0028243295382708],[0.15477834641933,0.17976559698582,0.019854165613651],[-0.058532148599625,-0.0042239800095558,0.02929712831974]],[[-0.055718172341585,-0.052898112684488,-0.025659371167421],[-0.1537884324789,-0.19591103494167,0.010831865482032],[0.069487541913986,0.021798174828291,-0.08649929612875]],[[0.019786512479186,-0.053053967654705,-0.12672162055969],[-0.0074692601338029,-0.026660760864615,-0.03291592374444],[-0.014264401048422,0.021474476903677,0.041485860943794]],[[0.05210530012846,0.006386558059603,-0.14808334410191],[0.073234781622887,0.11340162158012,0.02528871782124],[-0.16448739171028,-0.12461343407631,0.061047580093145]],[[0.053088027983904,-0.086962662637234,0.072032026946545],[-0.093321278691292,0.1085394769907,-0.029835741966963],[0.0044718375429511,0.0064511457458138,0.20810556411743]],[[-0.063623324036598,-0.092510782182217,0.051542062312365],[0.059137213975191,-0.065043397247791,0.036827139556408],[-0.070150382816792,-0.06025517359376,0.0027258633635938]],[[-0.053636379539967,-0.17602635920048,-0.21772983670235],[-0.10931898653507,0.15774717926979,0.10163890570402],[0.20953013002872,-0.12744362652302,-0.00048154941760004]],[[-0.11446886509657,-0.054441023617983,-0.023750124499202],[-0.04401532933116,0.08490677177906,0.022579064592719],[-0.093213051557541,0.0062415115535259,-0.067612625658512]],[[-0.11461499333382,0.050704754889011,-0.0069172335788608],[-0.19263988733292,-0.10446640104055,-0.10518848150969],[-0.04080655425787,0.10483582317829,0.098717033863068]],[[0.032240305095911,-0.08335168659687,-0.21782387793064],[0.18247902393341,0.10945153981447,0.18183098733425],[0.01357020996511,0.044676374644041,-0.036044299602509]],[[0.030125543475151,0.093414694070816,0.24584127962589],[-0.15541344881058,-0.084318064153194,-0.10005819797516],[0.21010228991508,-0.015393100678921,-0.15474860370159]],[[-0.13736064732075,-0.020282708108425,0.016912683844566],[-0.051664616912603,0.17166794836521,0.15042293071747],[-0.0093032345175743,0.021740334108472,0.015650881454349]],[[-0.082659587264061,-0.023626890033484,-0.012841378338635],[-0.081954874098301,0.02427463978529,0.06623737514019],[0.10804785043001,0.10602734237909,0.033871449530125]],[[-0.16340199112892,-0.050192043185234,-0.10050936788321],[-0.20108185708523,-0.18661791086197,-0.19519706070423],[0.035331096500158,-0.0068785850889981,-0.099174976348877]],[[0.029215136542916,-0.091387748718262,-0.035831663757563],[0.089945606887341,-0.1046604886651,0.073212616145611],[-0.051010560244322,-0.076842546463013,-0.0071303369477391]],[[-0.0080921640619636,0.31164127588272,0.0042016441002488],[0.1091874986887,-0.28860637545586,-0.25842267274857],[0.34865438938141,0.17029009759426,0.043496925383806]],[[-0.051436427980661,0.1452954262495,0.21083855628967],[0.047356210649014,0.039894632995129,0.041190586984158],[-0.14974325895309,-0.070278912782669,-0.011996324174106]],[[-0.030804760754108,0.018859453499317,0.04246710985899],[-0.14692169427872,-0.092531532049179,0.15389494597912],[-0.055954337120056,-0.11535170674324,0.20342607796192]],[[0.20543563365936,0.065269879996777,-0.16177739202976],[0.081936620175838,0.13087065517902,0.023838678374887],[-0.037372540682554,-0.17596161365509,-0.12545463442802]],[[-0.004363227635622,-0.0099566038697958,0.095233470201492],[-0.032907195389271,-0.11289114505053,0.12031601369381],[0.015678850933909,-0.021705048158765,-0.016672460362315]],[[-0.039031263440847,0.016079688444734,0.091472111642361],[-0.24611431360245,-0.056091357022524,0.01926900818944],[0.0039450926706195,-0.056150257587433,0.020952941849828]],[[-0.067324325442314,0.0078476155176759,-0.096097476780415],[0.051985237747431,0.10568277537823,0.17556099593639],[0.052691791206598,-0.063559100031853,0.023708056658506]],[[0.0096028465777636,0.065737843513489,-0.23523439466953],[-0.094858780503273,-0.027740456163883,0.22945763170719],[-0.023256149142981,0.1347953826189,0.21859712898731]],[[-0.13036441802979,-0.13850243389606,-0.14549718797207],[0.070901080965996,0.057987384498119,0.063098765909672],[-0.0082344133406878,0.11047004163265,-0.020416343584657]],[[0.074574939906597,-0.27586543560028,0.17532950639725],[-0.059083357453346,-0.015658967196941,0.11264754831791],[0.081470601260662,0.019352352246642,0.19819132983685]],[[0.066004253923893,-0.089183278381824,0.017013300210238],[0.10087285190821,-0.2835598886013,-0.17410671710968],[-0.031733021140099,-0.048354208469391,-0.019624337553978]],[[0.12377884984016,-0.011551100760698,-0.030902924016118],[0.064010679721832,-0.11352071166039,-0.1416699141264],[0.16987153887749,0.092052541673183,-0.052423506975174]],[[0.011391468346119,0.055426128208637,0.075629144906998],[0.02825097925961,0.023117400705814,-0.095714800059795],[0.071596123278141,0.0025923275388777,-0.062428697943687]],[[-0.2457787245512,-0.10753843933344,-0.17252232134342],[0.079065717756748,0.079963937401772,-0.053235996514559],[0.10586293786764,0.11463894695044,-0.19443967938423]],[[0.16390700638294,0.029556030407548,-0.16232749819756],[-0.057475611567497,-0.059156127274036,0.035923004150391],[0.083201132714748,-0.054014768451452,0.058416653424501]],[[-0.088462926447392,0.029185116291046,-0.023154286667705],[0.018942655995488,0.02711521461606,0.05186703056097],[-0.065760642290115,-0.0090039717033505,-0.074000358581543]],[[-0.1041347682476,-0.032289102673531,0.097422368824482],[-0.022482726722956,-0.12635025382042,0.033319063484669],[-0.18522815406322,-0.081798352301121,0.031063839793205]],[[0.066022507846355,0.055370222777128,0.20142686367035],[-0.088128231465816,-0.051801722496748,0.15510027110577],[-0.062466863542795,0.015126749873161,0.14183267951012]],[[0.032850425690413,-0.15420976281166,-0.2085217833519],[-0.0093323439359665,0.069126754999161,0.26884320378304],[-0.069108456373215,-0.15251986682415,-0.2066325545311]],[[-0.33996897935867,-0.13558408617973,-0.22237020730972],[0.050032492727041,0.1403644233942,0.24141976237297],[-0.026864897459745,0.018054291605949,-0.038329251110554]],[[0.018463708460331,-0.12679086625576,-0.13069055974483],[0.083614006638527,0.03615590557456,0.23846432566643],[0.0087104691192508,-0.072672657668591,-0.17479431629181]],[[-0.088336169719696,0.086513191461563,0.18499583005905],[-0.10968030244112,0.16377411782742,0.047425642609596],[0.16026252508163,0.01799064874649,0.16911977529526]],[[0.28210425376892,0.28344243764877,0.27966278791428],[-0.32645347714424,-0.057543277740479,-0.24572299420834],[0.0139240315184,0.16214500367641,0.051616325974464]],[[0.057451888918877,0.10215731710196,-0.1519963145256],[0.073715925216675,0.047553658485413,-0.016815334558487],[-0.082587458193302,0.12365751713514,-0.051762688905001]],[[-0.076599836349487,-0.10461347550154,-0.17118667066097],[-0.04662449285388,-0.046852543950081,0.22080986201763],[0.018765535205603,0.039375334978104,0.082529246807098]],[[0.11245430260897,-0.025418469682336,-0.12618727982044],[0.098565429449081,0.1156582608819,0.041599243879318],[0.14549577236176,0.11138468235731,-0.073052659630775]],[[-0.20254969596863,-0.13965030014515,-0.10058616101742],[0.012350105680525,-0.11572752147913,0.02474326081574],[0.21261763572693,-0.15349014103413,0.021060671657324]],[[0.082977533340454,0.083124525845051,0.0067892740480602],[-0.020651783794165,0.0098525797948241,0.1986135840416],[-0.042782552540302,-0.10522102564573,-0.059573732316494]],[[0.30061197280884,0.067729957401752,0.012794712558389],[0.11409470438957,-0.020998725667596,-0.045138027518988],[0.029007017612457,-0.030103990808129,0.061000421643257]],[[-0.0046296091750264,-0.042226210236549,-0.092621490359306],[-0.015298785641789,-0.075461320579052,-0.09378407895565],[-0.021903030574322,-0.08987994492054,-0.12148131430149]],[[0.22617648541927,0.10228110104799,-0.083724431693554],[0.057446468621492,0.08831687271595,0.15563230216503],[-0.18490916490555,-0.20510178804398,-0.17791503667831]],[[-0.12001249194145,-0.096436746418476,0.062926575541496],[-0.018547590821981,-0.20093262195587,0.10450757294893],[0.059391364455223,-0.093864753842354,-0.04351370036602]],[[-0.055798910558224,0.010036645457149,0.40708726644516],[-0.11741139739752,0.11821454763412,-0.031438443809748],[0.021982261911035,-0.20268812775612,0.035595595836639]],[[-0.064079113304615,-0.10910890251398,-0.072373919188976],[0.22918111085892,0.012537560425699,-0.086526870727539],[-0.046936437487602,-0.21018701791763,-0.036680221557617]],[[-0.13297651708126,-0.10056130588055,-0.072475902736187],[0.0056461817584932,0.05402160435915,0.091722130775452],[-0.068252079188824,-0.04684329777956,-0.1231359615922]],[[0.099227547645569,-0.15182147920132,-0.13515518605709],[0.13561877608299,0.040857374668121,0.03422475233674],[-0.15846075117588,-0.28523147106171,-0.11543682217598]],[[0.17714789509773,0.058950997889042,0.13692638278008],[-0.028079371899366,0.12974378466606,-0.078619703650475],[-0.052815299481153,0.10197343677282,0.15093369781971]],[[-0.062014743685722,-0.13141757249832,-0.044129773974419],[-0.092894569039345,-0.18954260647297,0.052617143839598],[-0.12279945611954,-0.15707612037659,-0.19694468379021]],[[-0.040393315255642,0.13207764923573,0.11518968641758],[-0.036337204277515,0.061505243182182,0.0891969576478],[0.014408685266972,0.010620884597301,0.013012864626944]],[[0.060585424304008,-0.09595700353384,-0.13432298600674],[0.058292176574469,0.072377070784569,0.14730045199394],[-0.11270873993635,-0.2437786757946,-0.079177998006344]],[[-0.036780085414648,0.12260590493679,0.0092875100672245],[0.0050971531309187,-0.00064248673152179,0.10764478892088],[0.17094960808754,0.032760564237833,-0.041882693767548]],[[-0.018865069374442,-0.11555404961109,-0.072714053094387],[0.012669496238232,-0.13055588304996,-0.031810361891985],[-0.056972242891788,-0.19461885094643,0.069785848259926]],[[-0.044123534113169,0.097194358706474,-0.052948508411646],[0.41015112400055,0.18222622573376,0.11122257262468],[-0.10835831612349,-0.0028388949576765,0.020356537774205]],[[0.13143549859524,0.033475201576948,-0.052181314677],[0.15092600882053,0.099957153201103,-0.086124807596207],[0.022646838799119,0.030485365539789,0.024442866444588]],[[-0.025262685492635,-0.063482396304607,0.0666573792696],[-0.1017991900444,-0.12907420098782,-0.080815024673939],[0.18098163604736,-0.024877054616809,-0.13808777928352]],[[0.017312986776233,-0.029340237379074,-0.0037976435851306],[-0.098648704588413,0.10593204945326,0.1823753118515],[-0.021587828174233,-0.065433010458946,-0.081297375261784]],[[-0.15665349364281,-0.10203351825476,-0.075091160833836],[0.033857293426991,0.070260763168335,0.0054796440526843],[-0.016988838091493,0.035979848355055,0.13297685980797]]],[[[0.049973983317614,0.018616592511535,-0.021304106339812],[0.010335404425859,-0.047353137284517,0.022953782230616],[-0.0072197047993541,0.041783731430769,0.0066670300439]],[[0.024172397330403,-0.001183922518976,0.020521471276879],[-0.044626250863075,0.052912995219231,-0.012636853381991],[-0.0010484406957403,-0.1121513620019,-0.066907122731209]],[[0.033309001475573,0.1044998690486,-0.017637358978391],[0.085971228778362,-0.03579518198967,-0.076633729040623],[0.0054463166743517,0.024554608389735,-0.025178324431181]],[[-0.012349925003946,0.044956650584936,-0.039305459707975],[0.010497889481485,0.04366060346365,0.028906263411045],[0.012164609506726,0.0086371535435319,0.041316218674183]],[[0.043256223201752,0.028985748067498,-0.038915552198887],[-0.022051464766264,0.039419744163752,0.0025708295870572],[-0.0038673677481711,0.019229225814342,-0.047949388623238]],[[-0.012509120628238,0.0048878476954997,-0.0099964309483767],[0.058522567152977,-0.0032687792554498,0.037881966680288],[-0.0058436840772629,0.014357055537403,-0.0020035710185766]],[[-0.018701739609241,-0.012766685336828,0.016798205673695],[0.12021062523127,-0.027372708544135,-0.022855270653963],[0.0060687796212733,-0.022661773487926,-0.059925265610218]],[[-0.029496995732188,0.018179390579462,0.0027152427937835],[-0.036809075623751,0.017215095460415,0.06244844570756],[-0.053413607180119,-0.007374900393188,-0.030517509207129]],[[0.032566953450441,0.027349978685379,0.018971046432853],[-0.098829872906208,-0.01095655374229,0.015220072120428],[-0.038843151181936,-0.019141985103488,0.019325828179717]],[[0.05434412509203,0.04119286686182,0.014708009548485],[0.014187401160598,-0.016837887465954,-0.059006072580814],[0.0003502010658849,-0.014733203686774,0.016498390585184]],[[0.01149882003665,0.054483186453581,0.061785131692886],[-0.01739757321775,0.038478069007397,-0.0090050585567951],[-0.078874938189983,-0.025821946561337,-0.071123227477074]],[[0.0026569347828627,0.0062589016743004,0.064290121197701],[-0.079592980444431,0.0046970350667834,-0.0019174918998033],[0.027487339451909,0.028315233066678,0.00033447975874878]],[[-0.03640753403306,0.047133039683104,0.074413880705833],[0.052940685302019,-0.013811253011227,0.059440154582262],[0.02299553155899,0.024329237639904,-0.031415887176991]],[[0.02206533588469,-0.035094171762466,-0.059124365448952],[0.0018792311893776,0.033437229692936,-0.047669358551502],[0.060872565954924,-0.022112611681223,-0.010670658200979]],[[-0.011681795120239,0.062916405498981,0.01341937482357],[-0.0050394106656313,-0.045727752149105,-0.034083943814039],[-0.048976324498653,-0.046285085380077,-0.028705356642604]],[[0.027171902358532,-0.040909394621849,-0.0011797887273133],[0.070275969803333,0.021281631663442,0.068047575652599],[-0.026009429246187,-0.085621632635593,-0.0086924228817225]],[[-0.017521807923913,0.036250956356525,0.033536866307259],[0.0015423551667482,-0.023512747138739,-0.062896579504013],[-0.032897673547268,-0.016697270795703,0.017860986292362]],[[0.041149206459522,-0.025825131684542,0.0027979526203126],[-0.0066312476992607,-0.079843640327454,0.022113202139735],[0.00094727711984888,-0.042040973901749,0.030910111963749]],[[0.031364351511002,0.0017677448922768,-0.031672321259975],[0.016033446416259,-0.029371598735452,-0.0051017170771956],[-0.015112178400159,-0.015622025355697,-0.0078267510980368]],[[-0.02831419184804,-0.057991322129965,-0.098774291574955],[0.075271666049957,-0.0059408429078758,-0.10442013293505],[0.11004568636417,0.05413007363677,-0.048295110464096]],[[-0.015434835106134,-0.0062292814254761,-0.022940060123801],[-0.01455148216337,-0.0080084223300219,0.035836916416883],[0.076641388237476,0.072509989142418,-0.036039963364601]],[[-0.024248510599136,-0.0063253049738705,0.030069133266807],[0.075912334024906,0.0092442659661174,0.032274387776852],[-0.0085870726034045,-0.036020923405886,-0.060905944555998]],[[0.0063416571356356,-0.027682058513165,-0.017686007544398],[0.04814375936985,-0.026613298803568,0.04966951161623],[-0.017440328374505,0.03534484282136,-0.007585025858134]],[[0.0045249480754137,0.063666976988316,0.037721376866102],[-0.0052997348830104,0.13487319648266,0.10471713542938],[-0.12295416742563,-0.090475976467133,-0.013624737039208]],[[0.014642928726971,-0.014126992784441,-0.054310109466314],[0.04121720418334,0.023558788001537,0.028656333684921],[0.0098999748006463,-0.023051362484694,0.021700138226151]],[[0.083016142249107,0.032765813171864,-0.072675868868828],[-0.041181594133377,-0.058225743472576,0.0072790812700987],[0.036382019519806,0.038829140365124,-0.02510616928339]],[[0.00043794151861221,0.0055711576715112,0.032023657113314],[0.022124879062176,-0.017792940139771,0.024388618767262],[0.0076535032130778,0.054655462503433,-0.027723707258701]],[[0.03731994330883,0.0028081019409001,0.019192097708583],[0.015289599075913,-0.040765039622784,-0.08808259665966],[-0.015683216974139,-0.028395423665643,-0.045602917671204]],[[-0.03063272126019,0.035190992057323,0.15425983071327],[-0.030518237501383,-0.017570661380887,0.0033913806546479],[-0.011174442246556,-0.042148094624281,0.079951018095016]],[[-0.0031804302707314,0.010920275002718,0.052246939390898],[0.032293379306793,0.0091830370947719,-0.014757443219423],[-0.0083301113918424,-0.042287029325962,0.034453224390745]],[[-0.0028025517240167,-0.0028586329426616,-0.0050633014179766],[-0.066320590674877,0.072853252291679,0.022751582786441],[0.015492009930313,0.014082842506468,0.039451539516449]],[[0.021486785262823,-0.094946697354317,-0.0025622120592743],[-0.030938157811761,-0.01153530087322,-0.046834263950586],[0.031776301562786,0.064675129950047,-0.0057783741503954]],[[0.032804105430841,0.026895875111222,-0.0037928340025246],[-0.022949263453484,0.01399811077863,0.028458878397942],[-0.0089131770655513,0.012817888520658,0.013644183985889]],[[-0.037701047956944,-0.023863054811954,0.013900985009968],[0.021507760509849,0.072243802249432,0.023916486650705],[0.055427484214306,0.038595780730247,-0.053769212216139]],[[-0.095654457807541,0.0013215622166172,0.017832979559898],[-0.017521902918816,0.0029635413084179,0.065992578864098],[-0.00065150926820934,0.011397595517337,0.013878124766052]],[[-0.065721102058887,0.071795374155045,0.0062131453305483],[-0.012384381145239,0.031746830791235,-0.052670832723379],[-0.048820827156305,0.029108472168446,0.04580695182085]],[[-0.006973831448704,0.0037912130355835,0.062356065958738],[0.017038846388459,0.015894144773483,0.0085289208218455],[-0.042262021452188,0.047189608216286,-0.064070224761963]],[[0.010519408620894,-0.027941904962063,0.014948268420994],[0.018214799463749,0.031129328534007,0.047411788254976],[0.022339504212141,-0.036175653338432,0.018166190013289]],[[0.013622195459902,-0.011672055348754,0.0036633582785726],[-0.11240680515766,0.015678510069847,0.036443743854761],[-0.081139639019966,-0.041528888046741,0.0016594959888607]],[[-0.012534399516881,-0.045134328305721,0.017157908529043],[-0.042958199977875,0.014883565716445,0.034760747104883],[0.060953594744205,-0.025332884863019,-0.040744811296463]],[[-0.019323837012053,0.045589108020067,0.0038921618834138],[0.042778521776199,0.019400775432587,-0.072142273187637],[0.015289012342691,-0.018360689282417,-0.10034211724997]],[[-0.0077462648041546,-0.021090606227517,-0.0012640510685742],[0.010314982384443,-0.018394200131297,0.076476722955704],[0.0027450313791633,0.033155273646116,-0.032134275883436]],[[0.027177231386304,0.005394630599767,-0.038116183131933],[-0.03974213078618,0.010435950942338,-0.034168943762779],[-0.0070053818635643,0.054895561188459,0.015586922876537]],[[0.010021523572505,-0.0515709631145,0.032834619283676],[0.016253482550383,0.11547894030809,-0.0037270272150636],[-0.011045944876969,0.036054506897926,0.058324113488197]],[[-0.024102408438921,-0.049367364495993,-0.042073622345924],[-0.083673655986786,-0.11004608124495,-0.053254876285791],[0.03699066862464,0.093809135258198,0.081364370882511]],[[0.038490690290928,-0.0789789929986,0.026847874745727],[-0.0078200502321124,-0.098563507199287,-0.012953185476363],[-0.017860848456621,-0.035579215735197,0.093081846833229]],[[-0.020056961104274,0.0042391433380544,-0.013523097150028],[0.053802397102118,0.03803051635623,-0.057269986718893],[0.13190405070782,-0.012387563474476,-0.055682543665171]],[[0.059254143387079,0.05315650627017,-0.00440738722682],[-0.071852892637253,-0.012576525099576,-0.049497030675411],[-0.026468327268958,0.0021543719340116,-0.0054107895120978]],[[-0.043466228991747,-0.010306505486369,-0.046797297894955],[-0.029926462098956,0.081860572099686,0.016894653439522],[0.010522183962166,0.01754087023437,0.034906551241875]],[[-0.046874191612005,-0.055371597409248,-0.022285996004939],[0.0031570706050843,0.027070064097643,0.0079922266304493],[-0.020805602893233,0.035542387515306,0.0053314440883696]],[[0.038556918501854,-0.034061953425407,0.028471691533923],[-0.014938795939088,0.0031596436165273,-0.0050580324605107],[0.042256362736225,-0.054946966469288,-0.0044233468361199]],[[0.0025067294482142,0.0060729868710041,0.012590711005032],[0.034487284719944,0.025618571788073,-0.0071156406775117],[-0.060504496097565,0.00071766297332942,-0.079496838152409]],[[0.069193087518215,-0.019992288202047,0.026488775387406],[-0.011828949674964,0.054056484252214,0.076771594583988],[-0.03494730591774,0.017848122864962,0.042685706168413]],[[-0.00040638507925905,0.0016823929036036,-0.027062132954597],[0.0075315381400287,-0.042549226433039,-0.092817209661007],[-0.01976247690618,-0.042403765022755,-0.0032586755696684]],[[0.0076067079789937,-0.025451509281993,-0.026564408093691],[0.032008845359087,-0.050993636250496,-0.039760615676641],[0.053769838064909,-0.022314462810755,0.010499853640795]],[[-0.034002635627985,0.017929036170244,-0.0018402062123641],[-0.02949408069253,0.0087775774300098,-0.074847407639027],[0.050935436040163,-0.036627762019634,0.00034937410964631]],[[0.0027110937517136,-0.016308492049575,-0.054860856384039],[-0.021573966369033,0.027232684195042,-0.018638717010617],[0.078366249799728,-0.013013264164329,-0.028157327324152]],[[-0.030087150633335,-0.0010713725350797,-0.025919459760189],[-0.017687566578388,0.0012449325295165,-0.036107935011387],[-0.012117533944547,0.053472504019737,0.026103941723704]],[[0.044198006391525,0.050430078059435,0.025358565151691],[0.04244726896286,0.027311727404594,0.014925918541849],[-0.012041582725942,0.0654261931777,-0.026644008234143]],[[-0.023806812241673,0.011895057745278,-0.020158916711807],[0.0085139377042651,0.0083105321973562,-0.11390994489193],[0.00049664173275232,-0.013813568279147,-0.045664589852095]],[[0.021258652210236,0.031807813793421,-0.02895119599998],[0.011509410105646,0.083419322967529,-0.02808977290988],[0.036622557789087,-0.018256045877934,-0.021928105503321]],[[-0.041352692991495,0.021789290010929,-0.00065722625004128],[0.048402026295662,0.013173419050872,-0.014836361631751],[0.045682732015848,0.017779640853405,-0.075431063771248]],[[0.012127667665482,0.068600080907345,-0.014543422497809],[0.026824004948139,-0.11157947778702,0.018813459202647],[0.078522332012653,0.017353862524033,-0.046454433351755]],[[0.011543857865036,-0.00083280762191862,-0.031274452805519],[0.0367078371346,-0.013167833909392,0.0055476729758084],[-0.013553145341575,0.071121536195278,0.0086369421333075]],[[0.042334746569395,0.044272419065237,-0.049296785145998],[0.069709807634354,-0.10117092728615,0.071289017796516],[0.0028915288858116,-0.0046622678637505,0.073991283774376]],[[0.0099743874743581,0.034232661128044,0.0078405924141407],[-0.027024583891034,0.01027587428689,-0.045916423201561],[0.021586773917079,-0.029024813324213,0.071162544190884]],[[0.064823254942894,0.055971559137106,-0.029226496815681],[0.021018821746111,0.011662684381008,-0.030500588938594],[0.022017614915967,-0.069092802703381,-0.0019220953108743]],[[0.05348688736558,0.021030206233263,-0.035151887685061],[0.011634166352451,0.012907444499433,-0.0034569872077554],[0.0050869937986135,0.046001397073269,-0.041469547897577]],[[0.035716712474823,0.020062826573849,0.0081443479284644],[0.0055928900837898,0.031682420521975,-0.10614866018295],[-0.049590215086937,0.10592314600945,-0.05174307897687]],[[-0.0070714349858463,0.017736807465553,-0.017720626667142],[-0.0085623329505324,0.015911052003503,0.032493513077497],[-0.049154531210661,-0.045885499566793,-0.0072348723188043]],[[-0.023993279784918,0.031732335686684,-0.068108551204205],[-0.013696431182325,0.015863731503487,-0.052356842905283],[-0.035258922725916,-0.032182674854994,-0.0008464427664876]],[[-0.023507392033935,-0.022278167307377,0.067553013563156],[-0.077399984002113,-0.010314330458641,-0.033630639314651],[0.023397598415613,-0.031001504510641,0.0040345839224756]],[[0.094761341810226,0.0077137621119618,-0.011565296910703],[-0.020586855709553,-0.066541075706482,0.016999047249556],[-0.069293834269047,0.022305116057396,0.034350968897343]],[[-0.024570409208536,0.0058470694348216,0.019753580912948],[0.027208797633648,-0.015432201325893,-0.054449561983347],[0.080864652991295,0.02135006710887,0.02530206553638]],[[-0.069431304931641,-0.030985970050097,0.023491758853197],[-0.027681697160006,-0.032192673534155,-0.02606906928122],[0.038550905883312,0.11379790306091,-0.042514182627201]],[[0.045655019581318,-0.047670144587755,0.0080045908689499],[0.0068986201658845,0.049792319536209,-0.050375208258629],[0.021109292283654,0.041273962706327,-0.065491817891598]],[[0.0061528170481324,0.055571168661118,-0.010017142631114],[0.00075758912134916,-0.026284910738468,0.034613016992807],[-0.010326754301786,-0.051330547779799,0.020114095881581]],[[-0.028550432994962,0.015815367922187,-0.10720903426409],[0.027032377198339,0.063050113618374,-0.039064731448889],[0.0037372966762632,0.0047991005703807,0.0076368772424757]],[[0.04673920571804,0.024656556546688,0.034496452659369],[-0.0057361936196685,0.016447979956865,-0.044136233627796],[0.020893367007375,0.038429215550423,-0.031261462718248]],[[-0.013809830881655,-0.039883948862553,0.10489255189896],[0.006936548743397,-0.012999483384192,-0.0048023113049567],[0.0043188710696995,0.027223661541939,-0.04575040191412]],[[0.015145091339946,0.009879095479846,0.002114946488291],[0.010084335692227,-0.02780400775373,-0.025631664320827],[0.057717330753803,-0.022654879838228,-0.0004050736897625]],[[-0.02490876801312,0.03066448494792,-0.029824241995811],[-0.0021525037009269,0.0317174308002,0.012102059088647],[0.0043795756064355,-0.061044037342072,-0.029550200328231]],[[0.020287597551942,0.019598241895437,0.038900051265955],[0.013672633096576,-0.037590999156237,0.039038393646479],[-0.023198548704386,-0.011839078739285,-0.039200846105814]],[[-0.00059390754904598,-0.0069086831063032,0.050468873232603],[0.030133258551359,0.01018494181335,0.0064238798804581],[0.050661709159613,0.041588220745325,-0.026627728715539]],[[-0.013301754370332,-0.010462663136423,-0.05473205819726],[0.0065642292611301,0.0084141464903951,0.0039939074777067],[-0.045190487056971,0.0016247511375695,-0.0097675947472453]],[[-0.048372872173786,-0.078219972550869,-0.059573795646429],[0.019187016412616,-0.008223369717598,0.014742848463356],[0.065542794764042,0.078436948359013,-0.03539901599288]],[[-0.024737417697906,0.034486580640078,0.054595720022917],[-0.018574805930257,0.047242593020201,0.0038674855604768],[-0.07259376347065,-0.052939113229513,-0.068831637501717]],[[0.056248098611832,-0.064894698560238,0.016229122877121],[-0.020990610122681,-0.033520136028528,-0.037866976112127],[0.059267163276672,0.065840914845467,-0.037277098745108]],[[0.013559783808887,0.0013524399837479,-0.020919799804688],[0.049811664968729,-0.026950780302286,0.026068339124322],[-0.0014613838866353,0.00062511779833585,-0.076228886842728]],[[0.011967146769166,0.001809005625546,-0.16332916915417],[-0.037259627133608,-0.10366064310074,-0.01023752707988],[0.018819805234671,0.025535795837641,0.030043656006455]],[[-0.020041581243277,-0.0050737387500703,0.048667915165424],[-0.0032649585045874,-0.018259488046169,0.076175235211849],[0.046997167170048,-0.003268044674769,0.0045045972801745]],[[0.052338793873787,-0.040786523371935,-0.023771414533257],[0.084288515150547,-0.048275366425514,0.001551847322844],[0.057553380727768,-0.027877982705832,0.050231210887432]],[[0.051233753561974,0.0028351738583297,-0.020671591162682],[-0.0072147748433053,-0.054291054606438,-0.0067796590737998],[-0.013068687170744,0.040670268237591,-0.001945782918483]],[[-0.063819840550423,-0.10970563441515,-0.013987552374601],[0.020076565444469,0.017163081094623,0.083558686077595],[0.027518577873707,0.076787866652012,0.0073059946298599]],[[0.02303172275424,0.012292281724513,-0.012927666306496],[0.0031086013186723,-0.053882334381342,0.021461576223373],[0.0044427332468331,-0.021501369774342,0.050544809550047]],[[-0.035104103386402,0.030724413692951,-0.0026191954966635],[-0.027506465092301,-0.0060582379810512,0.002289411611855],[0.043859072029591,-0.011806955561042,0.0098872147500515]],[[0.022998886182904,-0.022773468866944,0.040992133319378],[-0.04525450617075,0.06302735209465,0.017281180247664],[-0.058959141373634,-0.029906759038568,-0.047649934887886]],[[-0.016498768702149,0.018529875203967,-0.015464327298105],[0.017914704978466,0.01012821868062,0.02105307392776],[0.031426601111889,-0.054283574223518,0.060765776783228]],[[-0.013305040076375,-0.053888667374849,0.032665897160769],[-0.013876171782613,0.086591012775898,-0.034535706043243],[-0.024288287386298,-0.064511209726334,-0.039442215114832]],[[0.059424377977848,0.006354799028486,0.038489319384098],[-0.047406695783138,0.027651937678456,0.043921738862991],[-0.051416460424662,0.026686849072576,-0.010042499750853]],[[0.024383494630456,-0.024469314143062,0.016567511484027],[-0.00068876525619999,-0.03533772751689,0.015544678084552],[-0.010019366629422,0.0077350954525173,0.028356239199638]],[[-0.019013036042452,-0.0080518433824182,-0.0062819104641676],[-0.026555621996522,0.046721994876862,0.070419482886791],[0.00038759541348554,-0.0028017105069011,-0.015353392809629]],[[0.0157800167799,0.008778715506196,0.014587977901101],[0.051991052925587,0.004486589692533,0.031505882740021],[-0.00040292704943568,0.0081728547811508,-0.010591726750135]],[[0.022130589932203,0.023073725402355,0.026451628655195],[0.03997640311718,-0.030418297275901,-0.0045171813108027],[0.018836321309209,-0.034913722425699,-0.014487070962787]],[[0.034488949924707,-0.022043723613024,0.0017388520063832],[-0.040207348763943,-0.022957725450397,0.013470252975821],[0.031781334429979,-0.022667843848467,0.019537711516023]],[[0.001981274690479,-0.039397768676281,-0.035017520189285],[-0.042968899011612,-0.018403751775622,0.068088173866272],[0.026264348998666,0.02365398965776,0.032275233417749]],[[0.026535341516137,0.061470080167055,-0.022975759580731],[0.053590439260006,0.046932481229305,0.033530794084072],[0.018151924014091,2.1678406483261e-06,-0.069224119186401]],[[-0.049337238073349,-0.051735602319241,-0.066467940807343],[0.046612106263638,-0.035036914050579,0.038515981286764],[0.041839048266411,-0.043401710689068,0.0045291273854673]],[[-0.013432923704386,-0.0059667420573533,-0.027095753699541],[-0.045125968754292,0.0089240791276097,0.012241535820067],[0.0081033110618591,0.098894670605659,0.0044813463464379]],[[0.0054606907069683,-0.029425235465169,-0.022590624168515],[-0.012235110625625,-0.004796676337719,0.018127180635929],[-0.025673761963844,-0.019538858905435,0.0083153257146478]],[[0.0083411475643516,0.073497951030731,-0.021884970366955],[0.052086301147938,-0.068086348474026,-0.084721177816391],[-0.014026647433639,-0.13938102126122,-0.079938240349293]],[[0.016120340675116,0.029290519654751,-0.01291813608259],[0.0061296653002501,-0.029204856604338,0.031683649867773],[0.0094869192689657,0.030330283567309,-0.03198828920722]],[[-0.067378133535385,0.013568382710218,-0.062623843550682],[0.038287051022053,0.040180500596762,-0.099066756665707],[0.09883114695549,-0.020467584952712,-0.015516610816121]],[[0.035309407860041,-0.0079377088695765,-0.009057248942554],[0.030314471572638,-0.053558792918921,-0.0061258114874363],[-0.00030424981378019,0.02759201079607,0.01560559310019]],[[0.006656258367002,0.061011716723442,-0.01118572615087],[-0.015399618074298,0.036571279168129,0.0040154680609703],[0.013169652782381,-0.0023280554451048,-0.012840512208641]],[[0.017497047781944,0.0045572379603982,0.046535581350327],[-0.023643450811505,-0.035684585571289,0.015119326300919],[0.01494032330811,-0.0078625911846757,-0.025642540305853]],[[0.051489662379026,0.016836306080222,-0.049563657492399],[0.049030788242817,-0.01296950597316,0.0031834435649216],[-0.027086174115539,0.051988575607538,-0.0029467935673892]],[[-0.006247385405004,-0.014558169990778,-0.011612976901233],[-0.033631894737482,0.014617866836488,6.5808308136184e-05],[-0.051607076078653,-0.032876640558243,-0.020945642143488]],[[-0.027192439883947,-0.080548122525215,0.02191580273211],[-0.010997409000993,0.043501287698746,0.10518944263458],[-0.028496166691184,-0.0017666632775217,0.020883355289698]],[[-0.037557512521744,-0.039868999272585,0.040966711938381],[0.03325204923749,-0.032338187098503,-0.0038731130771339],[0.0062648449093103,0.0062486217357218,0.041422408074141]],[[0.067728579044342,0.016733398661017,-0.050416827201843],[0.039184421300888,-0.024835491552949,-0.016297308728099],[-0.042534723877907,-0.044240839779377,0.0069697676226497]],[[-0.0043217712081969,0.054110217839479,-0.078498221933842],[0.024009056389332,0.03819689899683,-0.0070040374994278],[0.084583528339863,0.037266954779625,0.0024937242269516]],[[0.0070446287281811,-0.008615137077868,0.043065745383501],[-0.0014504995197058,-0.016794677823782,0.083267644047737],[-0.042772732675076,0.027113683521748,0.017399014905095]],[[-0.017734229564667,0.046974118798971,-0.0072875148616731],[-0.033896088600159,0.019829150289297,0.026967732235789],[0.0058868313208222,-0.038607269525528,0.022625647485256]],[[0.027759676799178,-0.019597528502345,0.0013313917443156],[0.0043995194137096,-0.038164835423231,0.023749098181725],[-0.058911327272654,0.058226887136698,0.051723256707191]],[[0.061565034091473,-0.040770441293716,-0.017588760703802],[0.039987500756979,-0.061148952692747,-0.057089496403933],[0.021583126857877,0.031025027856231,-0.019076108932495]],[[-0.023273369297385,0.034429091960192,-0.0093122534453869],[0.0069623929448426,-0.022416504099965,-0.0056485673412681],[-0.11239276826382,0.030256155878305,-0.021042598411441]],[[0.0284842569381,0.023115482181311,0.025376731529832],[-0.061971608549356,-0.0027190309483558,-0.017583962529898],[0.035455334931612,-0.016656041145325,-0.049975473433733]]],[[[0.14019212126732,0.043269351124763,-0.057195097208023],[0.0095407841727138,0.21926452219486,-0.081264615058899],[-0.06084294244647,0.18291828036308,-0.041434574872255]],[[0.0051158023998141,-0.14004589617252,-0.043864339590073],[0.0096736457198858,-0.068510726094246,0.099181272089481],[-0.12665329873562,-0.13425855338573,-0.018356064334512]],[[0.03239831328392,-0.20517235994339,0.00014614121755585],[0.0040114242583513,0.092941477894783,0.1279481947422],[0.23210209608078,0.1691679507494,0.029786713421345]],[[-0.031031860038638,0.039069384336472,-0.085570089519024],[0.061029653996229,-0.036564368754625,0.029441218823195],[0.033793188631535,-0.00056132767349482,-0.02430129237473]],[[0.078895531594753,-0.052499432116747,-0.10041400790215],[0.10156565904617,0.0084525113925338,-0.01032939273864],[0.078648000955582,0.02967245131731,-0.083548344671726]],[[-0.049399197101593,-0.15333291888237,-0.068997442722321],[0.038969870656729,0.058650683611631,0.024692300707102],[-0.093868792057037,-0.11340171843767,-0.050108931958675]],[[0.035847008228302,-0.0086268000304699,0.17372906208038],[0.11285049468279,0.17812372744083,0.16225238144398],[0.11610171943903,-0.10578247904778,-0.22017204761505]],[[-0.037310134619474,-0.079899564385414,0.0027328061405569],[-0.039567526429892,0.045635081827641,0.049342408776283],[-0.080633670091629,0.090373732149601,-0.0092132184654474]],[[0.12093398720026,0.069484189152718,-0.026663616299629],[-0.064992852509022,0.064715430140495,0.046524494886398],[-0.026998175308108,-0.10190559923649,-0.029492584988475]],[[0.022380879148841,-0.05631385743618,0.15281690657139],[-0.030243216082454,-0.076902136206627,-0.072008520364761],[-0.091451548039913,-0.17375211417675,-0.10750702023506]],[[0.025134475901723,-0.049604002386332,-0.015393483452499],[-0.034417219460011,0.094599820673466,0.19195432960987],[0.14533615112305,0.083112441003323,-0.093896895647049]],[[0.0018035969696939,-0.042479898780584,-0.025140402838588],[0.080080293118954,0.097223438322544,-0.031494673341513],[0.00093753589317203,0.09258446097374,0.049943365156651]],[[0.0076590399257839,-0.10749861598015,-0.090672470629215],[0.032056670635939,-0.033965434879065,-0.043493155390024],[-0.038635451346636,0.06617583334446,-0.042794119566679]],[[-0.071688629686832,-0.04333582893014,0.044892854988575],[-0.19105699658394,-0.13119386136532,-0.15563924610615],[0.039666585624218,0.020532188937068,0.081692576408386]],[[-0.096260704100132,0.011067663319409,0.065703518688679],[-0.073329083621502,0.036152686923742,0.039403755217791],[0.091374963521957,0.039046578109264,0.023498857393861]],[[0.203872397542,0.051613666117191,0.031275290995836],[-0.059201240539551,-0.04716944694519,-0.0062943594530225],[0.10002531856298,0.074849523603916,-0.0099938148632646]],[[-0.065306670963764,-0.045178387314081,-0.18545776605606],[0.011299634352326,0.07733429223299,0.12221201509237],[0.14933927357197,-0.015907416120172,-0.053130704909563]],[[-0.044942982494831,-0.020211139693856,-0.091312453150749],[0.15618550777435,-0.031137336045504,0.039279486984015],[-0.10737210512161,-0.019090633839369,-0.10297840088606]],[[-0.050447452813387,-0.19825965166092,-0.07488752156496],[0.1136521473527,-0.010933486744761,-0.11419377475977],[0.059103816747665,0.13205054402351,0.08623943477869]],[[0.0361074693501,-0.087631039321423,0.0040664398111403],[0.033525720238686,0.14787262678146,0.095192447304726],[-0.10757078230381,0.028619954362512,-0.024981793016195]],[[0.0006687649874948,-0.036086577922106,0.010511614382267],[-0.07140988856554,-0.12589313089848,-0.094621427357197],[-0.097254998981953,-0.14939916133881,-0.08357161283493]],[[-0.045671809464693,-0.090897142887115,0.057106595486403],[-0.0075410446152091,0.040067099034786,0.070199854671955],[-0.014443665742874,-0.0037432536482811,-0.059774398803711]],[[0.091328948736191,-0.028281403705478,-0.049131210893393],[0.010805677622557,0.035757828503847,0.016191687434912],[-0.012318342924118,-0.0992087200284,-0.07760588824749]],[[-0.1954565346241,-0.15925024449825,-0.13581278920174],[0.081327758729458,-0.1174587905407,-0.18955217301846],[-0.016653046011925,-0.023967888206244,0.024195075035095]],[[-0.1648563593626,0.021225977689028,-0.094768390059471],[0.0094862524420023,0.096597947180271,-0.0055767805315554],[0.086046949028969,0.16026060283184,0.022930629551411]],[[-0.0035681950394064,-0.0054552238434553,0.066359259188175],[-0.078276880085468,-0.056283049285412,0.018147120252252],[-0.0074275857768953,-0.04926061630249,-0.0084430109709501]],[[-0.023900071159005,-0.025653459131718,0.045196395367384],[-0.13247749209404,-0.009086879901588,0.06779257953167],[-0.0039959996938705,0.018108511343598,-0.045558888465166]],[[0.11563545465469,-0.015376222319901,0.0052132210694253],[0.053793705999851,0.00060983910225332,-0.021660808473825],[0.043193392455578,0.027831729501486,-0.0093545522540808]],[[0.079173527657986,0.10347444564104,0.0080510415136814],[0.16144670546055,0.0008857071516104,-0.0013495264574885],[-0.025924568995833,-0.05448018014431,-0.037211209535599]],[[-0.11911576241255,-0.17408075928688,-0.20445767045021],[0.1803969591856,0.10781824588776,-0.00096259050769731],[0.037434905767441,0.085975095629692,-0.038064546883106]],[[0.024080147966743,0.034435417503119,0.0049991379491985],[-0.024305578321218,-0.034674070775509,-0.0281325224787],[-0.07415134459734,0.024408286437392,0.017214234918356]],[[0.043833401054144,-0.0070348083972931,-0.097361400723457],[0.024617176502943,-0.095080949366093,-0.080555997788906],[0.00012611756392289,-0.10320068150759,-0.031029103323817]],[[0.045328285545111,-0.079497285187244,0.11631496995687],[0.0010097299236804,0.11162655800581,-0.017507292330265],[-0.059927821159363,-0.14150027930737,-0.13867075741291]],[[0.015194315463305,-0.072937607765198,-0.070485055446625],[0.13041481375694,0.037057746201754,0.1040852740407],[-0.08584550768137,0.049863677471876,0.07096054404974]],[[-0.024180067703128,0.021927073597908,-0.02831563167274],[0.040563967078924,0.0034175415057689,-0.043073490262032],[-0.0024614648427814,-0.014940701425076,-0.050914984196424]],[[0.12032686918974,-0.056075971573591,-0.030471138656139],[0.13401935994625,0.087568119168282,-0.058011412620544],[-0.1783063262701,0.068149141967297,0.024254769086838]],[[0.036676622927189,0.04362690448761,-0.084345832467079],[0.022844636812806,-0.096098154783249,0.0026056692004204],[-0.034429650753736,0.085673972964287,0.058388829231262]],[[0.062123324722052,0.19359400868416,0.19784924387932],[-0.031355302780867,0.05030670017004,0.077818356454372],[0.095325097441673,-0.16835279762745,-0.11340513825417]],[[0.04655209928751,0.091562397778034,0.069421000778675],[-0.093927495181561,0.057815793901682,0.11121842265129],[0.037713833153248,-0.10933062434196,-0.074263945221901]],[[0.013028063811362,0.00077259703539312,0.15047435462475],[-0.01292391307652,-0.088809564709663,-0.17274403572083],[-0.02846853248775,0.11264552921057,-0.22699123620987]],[[-0.00074763770680875,-0.017847780138254,0.035110205411911],[4.5297583710635e-05,-0.018147356808186,0.018453195691109],[0.038886453956366,0.0019237769301981,-0.0057447124272585]],[[-0.00093450746499002,0.065456479787827,-0.06598573923111],[0.050627060234547,-0.062673754990101,-0.014749332331121],[0.01381325442344,0.096628949046135,0.18007765710354]],[[-0.1919139623642,0.005543262232095,-0.21891604363918],[-0.15636251866817,-0.11690011620522,-0.047431357204914],[-0.24446147680283,-0.10069740563631,-0.084780469536781]],[[0.012875873595476,-0.055691797286272,-0.083501867949963],[-0.079709492623806,-0.02912911772728,0.017837507650256],[-0.10156746208668,-0.075880840420723,-0.042412552982569]],[[-0.086572222411633,-0.0663006529212,-0.21636657416821],[0.058090444654226,0.017779678106308,0.058739520609379],[0.059197146445513,-0.031531471759081,-0.0034881627652794]],[[0.068436846137047,0.034985817968845,0.055881030857563],[0.058316010981798,-0.049387969076633,-0.014184786006808],[-0.013448023237288,-0.035944323986769,0.038636308163404]],[[-0.046324882656336,-0.054881174117327,-0.03597379103303],[-0.027215329930186,-0.030840152874589,0.0039224969223142],[-0.010885251685977,-0.10929694771767,-0.04743891581893]],[[0.04604409635067,0.082868158817291,-0.11775372922421],[0.0096331853419542,-0.00940877571702,0.021238934248686],[-0.13663873076439,-0.16410349309444,0.051852442324162]],[[-0.061213932931423,0.040900591760874,0.046502448618412],[-0.043093018233776,-0.11554483324289,0.031162910163403],[-0.025019370019436,-0.09870433062315,-0.040383141487837]],[[0.10972083359957,0.029065987095237,-0.18494358658791],[0.047808650881052,-0.032658915966749,-0.01952114328742],[-0.17629677057266,-0.11348005384207,-0.024009186774492]],[[0.12595655024052,0.052838437259197,-0.12490443885326],[0.05994438752532,-0.10512506216764,0.089953698217869],[-0.039884351193905,-0.12103582918644,0.041710510849953]],[[0.099221751093864,-0.039524577558041,0.044468183070421],[-0.015462059527636,-0.057281829416752,-0.063092067837715],[0.050469897687435,0.037435784935951,-0.025147387757897]],[[-0.044772978872061,0.0095466785132885,-0.04853269085288],[0.042045671492815,0.044596418738365,-0.010022287257016],[-0.045846577733755,-0.081126473844051,-0.015331594273448]],[[-0.057297646999359,0.026097159832716,-0.043543964624405],[-0.028754150494933,0.1012647151947,-0.10021857172251],[0.031443774700165,0.076526887714863,0.16027869284153]],[[0.075531527400017,0.03969244658947,-0.054341103881598],[-0.043119002133608,-0.10357417166233,-0.030938759446144],[0.12749163806438,-0.027757130563259,0.02476772479713]],[[0.043260365724564,-2.4381548428209e-05,-0.054489459842443],[0.07664081454277,0.053060285747051,0.037352621555328],[-0.0054749492555857,-0.058087799698114,-0.0075182570144534]],[[0.07206392288208,-0.0065541258081794,0.23157280683517],[0.024168075993657,0.11903773248196,0.19054388999939],[-0.063220053911209,-0.020808475092053,-0.050221033394337]],[[-0.024375956505537,-0.045781921595335,0.025875734165311],[-0.047604918479919,-0.14438199996948,-0.053850326687098],[-0.1421504765749,-0.14670790731907,-0.0073021152056754]],[[0.063943721354008,0.12626640498638,0.024720476940274],[0.073834285140038,0.040140341967344,-0.048322450369596],[-0.031964514404535,-0.052691914141178,0.073266074061394]],[[-0.046107187867165,-0.079676657915115,-0.087663181126118],[0.03117505274713,0.013138106092811,0.045972514897585],[0.09834573417902,0.05002935603261,0.045884039252996]],[[-0.14976522326469,0.0011735738953575,-0.084533967077732],[-0.012959606945515,-0.061938889324665,-0.070193834602833],[-0.13990254700184,-0.040013991296291,-0.11972635984421]],[[-0.11819997429848,-0.049415834248066,-0.1097237020731],[-0.064179010689259,0.13884401321411,-0.029337979853153],[-0.01245363149792,-0.11458891630173,-0.17752219736576]],[[0.015057355165482,0.041143331676722,0.076665587723255],[0.015302089042962,0.077920965850353,0.058733534067869],[-0.00040971834096126,-0.021229615435004,-0.02359558083117]],[[0.12095260620117,-0.03531527146697,-0.026068748906255],[-0.088290572166443,0.19164808094501,0.19614163041115],[0.034053903073072,-0.0026916530914605,-0.0047293496318161]],[[0.066450528800488,0.041078813374043,0.049020379781723],[-0.014781196601689,-0.026370074599981,0.068405084311962],[-0.045102152973413,0.0099061504006386,-0.10236544907093]],[[0.10237957537174,-0.033866889774799,0.052888501435518],[0.028184227645397,0.028348064050078,0.041766937822104],[-0.084066912531853,-0.016511278226972,0.01681181974709]],[[-0.12373902648687,-0.059830978512764,-0.076128542423248],[-0.11913902312517,-0.12485052645206,-0.096884451806545],[0.021873256191611,-0.11165984719992,-0.12896522879601]],[[0.01482230052352,-0.098637960851192,0.038205076009035],[-0.016559125855565,-0.02066377364099,-0.11188399046659],[-0.11213430017233,-0.034565560519695,0.010032836347818]],[[0.086421728134155,0.057492837309837,0.13195185363293],[-0.00070821546250954,0.041383638978004,-0.073918476700783],[0.20211057364941,0.033258937299252,-0.13197097182274]],[[0.12989635765553,0.011817895807326,0.059205047786236],[0.048124674707651,0.037687659263611,-0.07060169428587],[-0.1181402951479,0.12755724787712,-0.057398002594709]],[[0.073229685425758,0.10090643167496,0.089725770056248],[-0.066871583461761,-0.050198238343,-0.039700169116259],[0.051815565675497,0.11543860286474,0.1256510913372]],[[-0.011262036859989,-0.049619723111391,0.011897130869329],[0.064971387386322,0.059077039361,-0.092969469726086],[-0.053248006850481,0.013545815832913,0.0029402608051896]],[[0.020092049613595,-0.11270741373301,0.038128256797791],[0.073828659951687,0.086025260388851,0.031636521220207],[-0.028345860540867,-0.13601154088974,-0.10499781370163]],[[-0.031294759362936,0.058018762618303,0.10629231482744],[-0.069865696132183,-0.018466195091605,0.11564813554287],[-0.15241701900959,0.068116366863251,-0.11172365397215]],[[0.015539344400167,-0.096251927316189,-0.050744172185659],[-0.037672001868486,-0.074612446129322,-0.092053256928921],[-0.021706642583013,-0.066621087491512,0.11363733559847]],[[-0.015990307554603,0.052557401359081,0.024520350620151],[-0.019757581874728,0.010014777071774,-0.0044385623186827],[-0.015003548003733,0.022706728428602,-0.051891919225454]],[[-0.064849250018597,-0.12956723570824,-0.015039708465338],[-0.082793831825256,-0.16056306660175,-0.11932387202978],[0.022936889901757,0.10535149276257,0.048268310725689]],[[0.051739078015089,0.11328153312206,0.12159471213818],[-0.028139539062977,0.096765272319317,0.027426585555077],[0.073212146759033,0.0038548894226551,-0.0093175079673529]],[[-0.0012579779140651,0.076364509761333,0.18756686151028],[0.0080545311793685,-0.065612010657787,-0.11086515337229],[0.0041954657062888,0.10223261266947,-0.019795518368483]],[[-0.025786630809307,-0.062941670417786,-0.01991249807179],[0.0012516063870862,-0.15345107018948,-0.13509602844715],[-0.078737854957581,-0.03364535421133,-0.061556357890368]],[[0.03743889182806,-0.055704150348902,-0.17178145051003],[0.04054581746459,-0.034181449562311,-0.064483724534512],[0.019525012001395,-0.09879793971777,0.19333027303219]],[[0.17656210064888,0.11037150770426,-0.058390684425831],[0.066892594099045,-0.0023847802076489,-0.038213115185499],[0.049876552075148,-0.14473780989647,-0.13144254684448]],[[0.066469997167587,0.034404125064611,0.034508820623159],[-0.068026550114155,0.15864878892899,0.058364406228065],[-0.036902844905853,-0.028458636254072,-0.045721270143986]],[[-0.052754927426577,0.029925726354122,-0.10112176835537],[-0.064850181341171,-0.08579358458519,0.066613718867302],[-0.1850388944149,0.027969026938081,0.14522328972816]],[[0.038598831743002,0.081377886235714,-0.029437435790896],[-0.060695201158524,-0.085995979607105,-0.093532279133797],[0.099826894700527,0.058964185416698,-0.011150437407196]],[[-0.027215119451284,-0.14279438555241,-0.055658429861069],[0.10483437776566,-0.0028724912554026,0.10348101705313],[0.097288720309734,-0.048426128923893,-0.0047409725375473]],[[0.026910597458482,0.12409832328558,-0.031629368662834],[-0.051866061985493,0.0032869442366064,0.015016973949969],[-0.036949213594198,-0.038531240075827,0.02261627279222]],[[-0.085535898804665,0.030747301876545,-0.051451537758112],[0.04579434171319,0.13893589377403,0.056618686765432],[0.018852196633816,-0.08931241184473,0.054758802056313]],[[-0.039160657674074,-0.094707570970058,0.18323494493961],[0.025220446288586,-0.19839426875114,-0.0072857835330069],[0.1606017947197,0.085608579218388,-0.12511290609837]],[[-0.085054606199265,-0.025023438036442,-0.084153018891811],[0.09063994884491,-0.065273843705654,-0.085954375565052],[-0.056609839200974,-0.079635106027126,0.058714270591736]],[[0.0026704436168075,0.053221259266138,0.0017964978469536],[-0.03432085365057,0.017209276556969,-0.076034061610699],[0.12794582545757,0.20734719932079,-0.03540075942874]],[[0.084137231111526,-0.082256987690926,0.016741722822189],[0.0047708610072732,0.086119256913662,0.030274394899607],[-0.13419732451439,-0.13217642903328,-0.18876232206821]],[[-0.042238630354404,-0.078011654317379,0.0028200012166053],[-0.0025397122371942,0.080005474388599,0.042028579860926],[0.097887940704823,0.14948615431786,0.10879675298929]],[[0.0049778935499489,0.017544155940413,-0.13982385396957],[0.022753769531846,-0.027665641158819,-0.043989069759846],[-0.047911558300257,-0.071765974164009,0.01200429815799]],[[-0.086744636297226,0.14878430962563,0.18223521113396],[0.020904898643494,0.026952689513564,-0.0049650948494673],[-0.070037424564362,-0.094384521245956,0.013658042065799]],[[-0.074925981462002,-0.012264046818018,-0.079477667808533],[0.025337886065245,0.032300811260939,0.0035066190175712],[-0.017415944486856,-0.01156398281455,0.10519573092461]],[[0.0037917131558061,0.041961371898651,-0.20726549625397],[0.022842509672046,0.10384124517441,-0.0046616680920124],[0.042955670505762,0.080117531120777,0.021826393902302]],[[0.046959072351456,0.078356862068176,0.041468318551779],[0.054069902747869,0.0092550236731768,-0.0076224650256336],[0.099834196269512,-0.072694465517998,-0.016111303120852]],[[-0.13928954303265,-0.10658869147301,-0.066095218062401],[0.0011427140561864,-0.19238840043545,0.099847666919231],[0.0021834461949766,0.15796938538551,0.1413394510746]],[[0.017596418038011,-0.073308065533638,-0.048058208078146],[-0.058412246406078,-0.0065040336921811,-0.0066655380651355],[-0.11917003244162,-0.090005844831467,0.03911829739809]],[[-0.13813072443008,-0.090498097240925,0.090339668095112],[-0.042471468448639,0.0092048365622759,0.046997137367725],[0.085604138672352,0.062402952462435,-0.13224729895592]],[[-0.099791802465916,0.054709702730179,0.051883775740862],[0.15367309749126,0.17613379657269,0.099718682467937],[-0.01416848320514,0.091747142374516,0.1623398065567]],[[0.042091090232134,0.14038789272308,-0.02431171759963],[0.13752721250057,-0.044822081923485,-0.041965503245592],[-0.019304716959596,-0.0080499295145273,-0.025473415851593]],[[0.041346337646246,-0.12110929936171,0.038154188543558],[0.028968136757612,-0.090336441993713,-0.00068824406480417],[-0.0092370687052608,0.063518822193146,-0.025523567572236]],[[0.056497056037188,0.039513599127531,-0.14275217056274],[0.019429372623563,-0.064191743731499,-0.16342633962631],[0.1412066668272,0.031905960291624,0.12481069564819]],[[-0.12269995361567,-0.0096426475793123,-0.025626040995121],[-0.12709425389767,-0.05088159814477,0.023665072396398],[-0.08259953558445,0.017624529078603,0.077144406735897]],[[-0.0418003462255,0.13318997621536,0.10619600862265],[0.043216731399298,0.0078101470135152,-0.019934762269258],[0.058165092021227,0.055710852146149,0.076832495629787]],[[0.017701575532556,0.036602016538382,0.029008476063609],[-0.0016085752286017,-0.013919360004365,0.023601958528161],[-0.11039118468761,-0.088321812450886,-0.0090631507337093]],[[-0.03334005177021,-0.061529397964478,0.033804625272751],[-0.08643264323473,0.03871351853013,0.14248506724834],[-0.024407465010881,-0.0035448847338557,0.0216517560184]],[[-0.27621009945869,-0.087061516940594,-0.02761903591454],[0.044776059687138,0.082115918397903,0.14980809390545],[-0.078600600361824,0.0073660770431161,0.073419019579887]],[[-0.004614710342139,-0.062778271734715,-0.0071486076340079],[-0.081875681877136,-0.023943886160851,-0.094517409801483],[-0.10512485355139,-0.010193686932325,-0.029345201328397]],[[-0.017231611534953,0.076801538467407,-0.056878738105297],[-0.033779501914978,-0.030209293588996,-0.0013627583393827],[0.058562401682138,-0.047258287668228,-0.00050105137052014]],[[-0.040404610335827,-0.035944532603025,0.045216396450996],[0.078394539654255,0.038400698453188,0.062812745571136],[-0.0066737625747919,-0.022473389282823,-0.077876344323158]],[[-0.086705215275288,-0.04617876932025,0.089559882879257],[-0.028699474409223,-0.077482663094997,0.035962648689747],[-0.011716513894498,-0.031593937426805,0.050901189446449]],[[0.043563693761826,0.15985989570618,-0.046597976237535],[-0.037016913294792,0.018462795764208,-0.014049756340683],[0.069940693676472,-0.035312324762344,-0.016963098198175]],[[0.10003951191902,0.10213308036327,0.17025978863239],[-0.040429927408695,0.0047458866611123,-0.089970916509628],[0.043386474251747,0.0083640050143003,0.029256828129292]],[[0.00037110896664672,-0.03955765068531,-0.061107318848372],[-0.0096165016293526,-0.1463024020195,-0.091195583343506],[-0.0086383754387498,0.065385028719902,0.013798009604216]],[[-0.092488147318363,-0.056150913238525,0.019665522500873],[-0.0051675019785762,-0.023911064490676,0.14262630045414],[0.13077445328236,-0.018930293619633,-0.044388357549906]],[[0.0052512902766466,-0.051760572940111,0.016254222020507],[0.045629397034645,-0.067363709211349,0.070379190146923],[0.10292043536901,-0.008968940936029,-0.059068623930216]],[[-0.074239760637283,-0.0066162561997771,0.00069325976073742],[-0.0021191232372075,-0.10016194730997,-0.037387050688267],[0.072694204747677,0.01240976061672,-0.12902374565601]],[[-0.014933297410607,-0.1482127904892,-0.14193817973137],[-0.090837545692921,-0.0046677403151989,-0.02020600438118],[0.015457174740732,0.04599354788661,0.10401858389378]],[[0.047555100172758,0.068800091743469,0.10120484977961],[0.026820000261068,0.022634744644165,0.028033502399921],[0.048456311225891,-0.090522728860378,-0.029635166749358]],[[0.042788464576006,-0.016978630796075,0.0097882524132729],[-0.1064830198884,-0.032030984759331,-0.090564832091331],[-0.018206745386124,-0.074549153447151,-0.088098615407944]],[[-0.044818334281445,-0.12248393893242,0.02826988697052],[-0.057551018893719,-0.079069517552853,0.097622737288475],[0.014192735776305,-0.00432806648314,-0.030467174947262]],[[-0.047107558697462,-0.028844378888607,-0.07820300757885],[0.04820728674531,-0.001295386813581,-0.0016552350716665],[0.089718528091908,0.077019266784191,-0.060584958642721]],[[-0.14778639376163,-0.12172101438046,-0.065749138593674],[0.095887199044228,-0.0072209779173136,-0.129454433918],[-0.032752610743046,-0.078940957784653,-0.042461846023798]],[[0.10259240120649,-0.016596514731646,0.030398163944483],[0.027835190296173,0.036634981632233,0.0037364000454545],[0.11758124083281,-0.13509957492352,-0.16433890163898]],[[0.12049371749163,0.036416467279196,0.28675848245621],[-0.12775376439095,-0.15698203444481,-0.070925824344158],[-0.020699286833405,-0.074049547314644,-0.0097992550581694]]],[[[0.029273774474859,0.044680546969175,0.029198180884123],[-0.015245089307427,-0.0030802953988314,-0.055853851139545],[0.032249193638563,0.02036459185183,-0.16071510314941]],[[-0.021823616698384,-0.059048593044281,-0.010301012545824],[0.092127054929733,0.061877809464931,-0.084322936832905],[-0.065744504332542,-0.066278517246246,0.035402163863182]],[[0.094084411859512,0.027960103005171,-0.032990638166666],[-0.10157928615808,0.13351202011108,0.0079927230253816],[-0.0038730513770133,0.046277865767479,-0.010951247997582]],[[-0.043925266712904,-0.042342130094767,-0.029559411108494],[-0.047142200171947,0.081994324922562,-0.0065625309944153],[-0.014529223553836,-0.04915914312005,0.22874973714352]],[[0.037371315062046,0.065989620983601,0.030845997855067],[0.01513746380806,0.066084280610085,0.11108510941267],[-0.010827572084963,0.060783389955759,0.18992103636265]],[[0.02274108864367,0.044855855405331,0.094144389033318],[0.068113014101982,-0.0032890180591494,-0.028639424592257],[-0.050786163657904,-0.0027306745760143,0.13946691155434]],[[-0.0096239307895303,-0.001054433058016,0.013581030070782],[0.089803643524647,0.1497902572155,0.11312234401703],[0.030629282817245,0.058532766997814,0.06379796564579]],[[0.02304377220571,0.070230573415756,0.028904564678669],[0.085050158202648,0.051830276846886,-0.023071501404047],[-0.11177925765514,0.046457767486572,-0.012353531084955]],[[0.014313520863652,0.010913684032857,-0.038714680820704],[0.051318418234587,-0.010093332268298,-0.062914073467255],[0.095381140708923,0.028365004807711,-0.040631413459778]],[[0.014276229776442,0.023638613522053,-0.01874846406281],[-0.061438750475645,0.037338394671679,-0.10840502381325],[0.02746057510376,-0.063794851303101,-0.020489685237408]],[[-0.087481267750263,-0.025487991049886,0.0066226269118488],[0.052993059158325,0.15178482234478,0.12993022799492],[0.17115215957165,0.083701640367508,0.0053736446425319]],[[0.018640480935574,-0.033918417990208,-0.055734168738127],[0.0058394032530487,0.074809357523918,0.026366336271167],[0.0080583114176989,0.032501898705959,-0.0031027554068714]],[[0.012825574725866,-0.049171276390553,-0.0093674743548036],[0.053846042603254,0.0050731911323965,-0.055281955748796],[0.05549892783165,-0.017981700599194,-0.1603560000658]],[[0.007856116630137,0.063787661492825,-0.015751790255308],[0.044167030602694,0.012287626974285,0.015979630872607],[0.020137321203947,-0.044561967253685,-0.019375709816813]],[[-0.075665675103664,0.023862563073635,0.010127659887075],[0.12431978434324,-0.021887838840485,-0.029862824827433],[0.078888453543186,-0.040250618010759,-0.037860292941332]],[[0.025326421484351,0.043943710625172,0.0092967506498098],[-0.032902546226978,-0.062163177877665,0.032807651907206],[0.00051806832198054,-0.026285074651241,0.026663763448596]],[[0.065309159457684,0.087173216044903,-0.036551214754581],[0.085813522338867,0.026819659397006,0.078765824437141],[0.037938799709082,0.057209178805351,0.092093788087368]],[[0.030084826052189,-0.0071432329714298,0.090464666485786],[-0.023299179971218,-0.16405580937862,-0.14472161233425],[-0.18173772096634,0.050408869981766,0.24281245470047]],[[-0.0012311773607507,0.012476280331612,0.10792590677738],[0.1144482716918,0.0099137304350734,0.055724453181028],[-0.040219228714705,-0.031851593405008,0.01402345020324]],[[0.054174184799194,0.029302179813385,0.069766223430634],[0.024962905794382,0.016313886269927,0.060045693069696],[-0.068796217441559,-0.063876762986183,0.028968380764127]],[[-0.21945779025555,-0.13719742000103,-0.1126102656126],[-0.15557886660099,-0.13636563718319,-0.18338862061501],[-0.0072270892560482,0.040633019059896,-0.045968249440193]],[[0.054724391549826,0.0090305497869849,0.02615300193429],[0.049236539751291,0.0011804244713858,-0.086399264633656],[0.027596537023783,0.048607841134071,0.017289530485868]],[[-0.015519940294325,-0.095904760062695,0.016687925904989],[0.034905485808849,0.04469047114253,-0.02616479434073],[-0.052839420735836,-0.039282441139221,0.086115375161171]],[[-0.030346445739269,-0.055243585258722,-0.02156094647944],[-0.047589346766472,0.057435095310211,0.0067655337043107],[-0.00026607606559992,-0.010809337720275,0.13115438818932]],[[0.044920351356268,0.008045575581491,-0.0051175756379962],[0.021003087982535,0.036916717886925,0.015222186222672],[-0.045652728527784,0.037881705909967,-0.074810512363911]],[[0.075780592858791,-0.049281481653452,0.0068337060511112],[-0.034508816897869,-0.067130617797375,-0.050773546099663],[0.071621239185333,0.014454365707934,0.094456225633621]],[[0.019356183707714,0.0307123567909,0.0099486205726862],[0.059342075139284,0.063887856900692,0.10454908758402],[-0.023621555417776,-0.018051689490676,0.015986716374755]],[[0.099862031638622,0.090910166501999,0.16318012773991],[0.0024269125424325,0.034973178058863,0.028017362579703],[0.022855248302221,0.107960306108,0.050513349473476]],[[-0.079714745283127,-0.012657335028052,-0.017046686261892],[-0.044450506567955,0.0039289430715144,-0.03773607686162],[0.0066552879288793,-0.063962638378143,-0.021305439993739]],[[0.049439091235399,0.033919956535101,0.001834747265093],[0.019862461835146,0.0052229505963624,-0.02734550088644],[-0.038827739655972,0.01030043605715,-0.021564519032836]],[[-0.035970222204924,-0.070776417851448,-0.080787360668182],[-0.012464474886656,0.057689838111401,0.045635681599379],[0.011962459422648,-0.054526258260012,0.10747254639864]],[[0.067050494253635,0.069548584520817,-0.013337710872293],[-0.015789741650224,0.055051375180483,0.05700982734561],[-0.14318807423115,-0.015736954286695,0.11460608243942]],[[-0.032804913818836,-0.049872502684593,0.051422785967588],[-0.010492579080164,0.093464821577072,0.0013153223553672],[-0.005777413956821,-0.12124902755022,0.024699645116925]],[[-0.007018678355962,-0.0087139187380672,-0.11094040423632],[0.099579446017742,0.015045979991555,0.10547208786011],[-0.047010459005833,-0.063575223088264,-0.034248974174261]],[[-0.064504712820053,-0.17386567592621,0.0033632244449109],[-0.058524027466774,-0.078562207520008,-0.1211222410202],[0.082593820989132,0.11219368129969,0.05121111497283]],[[-0.0078832013532519,0.062102444469929,0.064409852027893],[0.04758096113801,-0.055763646960258,0.010531326755881],[-0.059667583554983,-0.061457462608814,-0.05175705999136]],[[-0.0030592093244195,0.081176817417145,-0.023056970909238],[-0.12875960767269,-0.06650897860527,-0.01295476872474],[0.015041042119265,0.022913038730621,0.16537740826607]],[[-0.071638122200966,0.08577398955822,0.12454666942358],[-0.046621896326542,-0.13146960735321,-0.049821529537439],[0.022058228030801,-0.034106515347958,-0.027487576007843]],[[0.100462064147,0.00078280677553266,-0.082009948790073],[0.06616947799921,0.1373238414526,0.036061357706785],[-0.011450563557446,-0.026053788140416,-0.14987128973007]],[[0.050841685384512,0.023713873699307,-0.050205733627081],[0.084836423397064,-0.003673923201859,-0.078932948410511],[0.1045820042491,0.00094187032664195,-0.10203472524881]],[[-0.077629692852497,0.013666288927197,0.049479316920042],[-0.02176714502275,0.018545405939221,0.076381921768188],[-0.065281860530376,-0.021579176187515,-0.13720934092999]],[[-0.0012658389750868,0.064551003277302,-0.054949637502432],[-0.034715197980404,0.071364030241966,-0.034890118986368],[0.09001350402832,0.0040888013318181,0.035287588834763]],[[0.054301757365465,0.022491609677672,-0.0071518523618579],[-0.062976531684399,-0.02330419048667,-0.04376545548439],[0.10638912767172,0.0020662087481469,-0.023021260276437]],[[-0.092281222343445,-0.040959931910038,0.0082412716001272],[-0.0096471412107348,-0.0023719936143607,0.043360378593206],[0.016669986769557,-0.075561970472336,-0.046629909425974]],[[-0.042765207588673,-0.10894817858934,-0.19994868338108],[-0.044632937759161,0.039553828537464,0.080174140632153],[0.0022563717793673,-0.047529470175505,-0.041079692542553]],[[0.081877864897251,0.066705390810966,0.037607304751873],[-0.073398262262344,-0.020951416343451,-0.086984485387802],[-0.075656309723854,-0.064223542809486,-0.11492295563221]],[[0.060435522347689,-0.025594582781196,0.095726348459721],[0.087131418287754,-0.0081661371514201,0.038452547043562],[0.074830405414104,-0.0004158022638876,-0.022066839039326]],[[0.016679110005498,-0.06991221010685,0.098953738808632],[-0.020507454872131,0.031851250678301,0.026053143665195],[-0.040152344852686,0.0071496251039207,0.19790226221085]],[[-0.01587731204927,-0.05814316123724,0.015022703446448],[0.088531874120235,0.0070213638246059,0.04073878377676],[0.0079555148258805,0.02623120136559,-0.016020501032472]],[[-0.019201559945941,-0.046446427702904,-0.029250202700496],[-0.00039471441414207,-0.065014600753784,-0.06796033680439],[-0.036154933273792,-0.054787810891867,0.031540982425213]],[[-0.021907679736614,0.010923152789474,-0.0095485020428896],[0.030005417764187,0.0068239341489971,0.066248692572117],[-0.039004027843475,-0.066803470253944,0.020284622907639]],[[-0.036114074289799,-0.12171187251806,-0.040883135050535],[0.10669213533401,-0.076403424143791,0.050472486764193],[0.083378188312054,0.087230734527111,0.0749581605196]],[[0.01695785485208,-0.032581705600023,-0.038464803248644],[-0.047293696552515,0.016726156696677,-0.048005744814873],[-0.035709533840418,-0.0085161756724119,-0.044384602457285]],[[0.030100459232926,0.056564763188362,0.024499287828803],[0.18992617726326,0.10897079855204,0.088796526193619],[0.050437431782484,0.05158893764019,-0.033322971314192]],[[0.031602267175913,0.063977584242821,0.051011260598898],[-0.077288568019867,-0.0041159754619002,-0.046589322388172],[0.03928842023015,0.041620094329119,-0.01660231128335]],[[-0.075855039060116,-0.04424636811018,-0.029009208083153],[0.042480364441872,0.00434501003474,0.14710178971291],[-0.010334328748286,-0.045748367905617,-0.0070248679257929]],[[0.070353917777538,-0.014195764437318,-0.019198527559638],[0.0086876433342695,0.011501694098115,-0.075243510305882],[-4.4865191739518e-05,-0.12486840039492,-0.074348777532578]],[[0.012913481332362,-0.0096227303147316,-0.069499306380749],[-0.017155028879642,0.15431228280067,-0.029310328885913],[-0.04897902533412,-0.028829131275415,-0.056076645851135]],[[-0.043429557234049,0.0082452576607466,-0.054532896727324],[-0.011485847644508,-0.052789460867643,-0.1020250543952],[0.070158682763577,0.12365547567606,0.16217494010925]],[[-0.024918101727962,0.014422472566366,-0.027832198888063],[-0.011065043509007,-0.015740875154734,0.10027991235256],[-0.018522098660469,0.054034892469645,0.045156460255384]],[[-0.046379633247852,-0.14974078536034,-0.056312318891287],[0.022395603358746,0.090264655649662,-0.045072488486767],[-0.079340547323227,-0.048132300376892,0.0054712113924325]],[[-0.03964776545763,-0.023721417412162,0.046190369874239],[-0.15861035883427,-0.013862321153283,-0.053026165813208],[-0.13469348847866,-0.061381470412016,-0.021674934774637]],[[0.097884654998779,-0.0019746522884816,0.082904547452927],[-0.035726524889469,-0.027740957215428,-0.011457754299045],[-0.045227162539959,0.0371023863554,0.099899262189865]],[[-0.068833768367767,0.037580296397209,-0.019062858074903],[-0.06719895452261,0.036802031099796,0.023156492039561],[0.039610754698515,-0.055255495011806,0.0086954720318317]],[[0.021638037636876,-0.036152236163616,-0.0066905370913446],[0.039558202028275,-0.064555957913399,-0.060768283903599],[-0.013028672896326,-0.012185083702207,0.047752197831869]],[[-0.039534293115139,-0.070876024663448,0.082570865750313],[-0.042207062244415,-0.020575441420078,-0.026064554229379],[0.017186027020216,0.017285823822021,0.045077003538609]],[[0.095180451869965,0.067927949130535,0.18215441703796],[-0.017259007319808,0.086966164410114,-0.062071312218904],[0.010417518205941,-0.08317119628191,-0.092194646596909]],[[-0.041627585887909,-0.0045648235827684,0.017701592296362],[0.0069602373987436,0.10727637261152,-0.036459635943174],[-0.076380006968975,0.064500115811825,-0.065840534865856]],[[0.15505807101727,0.012387696653605,-0.011952391825616],[-0.026928938925266,0.042988833039999,0.032470755279064],[0.01805061660707,0.12658013403416,-0.028601257130504]],[[-0.03139379248023,-0.0088635962456465,-0.01546217687428],[-0.0016933076549321,0.10074663162231,-0.069595076143742],[0.048361640423536,0.038718707859516,0.10058479756117]],[[0.11071929335594,0.012770059518516,0.35100066661835],[0.11043494939804,0.074918545782566,0.10319217294455],[0.037430968135595,0.056929782032967,-0.022860808297992]],[[0.065759986639023,0.081919930875301,0.036560855805874],[-0.025852179154754,0.0092860534787178,0.0016107424162328],[-0.054123543202877,-0.07600774616003,0.18457569181919]],[[-0.022788304835558,-0.016552768647671,-0.067418433725834],[-0.04197808355093,0.0018785205902532,-0.073859550058842],[-0.033717960119247,-0.087987810373306,-0.044849641621113]],[[-0.11409103870392,0.027771918103099,0.025794913992286],[0.093000151216984,-0.022223824635148,-0.017891433089972],[-0.037583719938993,-0.0087200831621885,0.010913966223598]],[[0.12657205760479,0.047158639878035,-0.09657733887434],[0.054740265011787,-0.0021880804561079,-0.022175716236234],[-0.04124328494072,0.088791444897652,0.063614815473557]],[[0.10414749383926,-0.029228156432509,0.01326415874064],[-0.046374339610338,-0.037296935915947,0.0022272258065641],[0.11060912162066,0.064841359853745,0.078210070729256]],[[-0.12609955668449,-0.17338411509991,-0.057696469128132],[0.0045450017787516,0.1505114287138,0.14679843187332],[-0.059727005660534,-0.1126943975687,-0.10065686702728]],[[-0.070749744772911,-0.011994986794889,0.047227136790752],[-0.03052288107574,-0.023759728297591,-0.012677346356213],[0.056666847318411,0.040809202939272,0.016983555629849]],[[0.022929314523935,0.0020817525219172,-0.023181600496173],[-0.049965053796768,0.011449713259935,-0.035946022719145],[-0.040881477296352,0.10752999782562,-0.029740670695901]],[[-0.095082178711891,-0.10381244122982,0.0033718049526215],[0.050319649279118,-0.094058215618134,-0.098496407270432],[0.01379919052124,-0.040094669908285,-0.015547812916338]],[[0.029476189985871,-0.060179449617863,0.017214462161064],[0.00038358807796612,-0.030612280592322,0.025260716676712],[-0.091401427984238,-0.055043920874596,-0.079738333821297]],[[0.010673489421606,0.020572485402226,0.089087538421154],[-0.021994771435857,0.02720458433032,0.11779270321131],[0.091702871024609,-0.020023284479976,0.047544300556183]],[[0.089359775185585,0.033726751804352,0.10391414165497],[0.012375107035041,0.024347798898816,-0.066977851092815],[-0.012662960216403,0.0079530738294125,0.063280239701271]],[[-0.04124853760004,-0.04128110781312,0.12361075729132],[0.12704196572304,0.027099585160613,0.075375057756901],[0.021360315382481,0.047928500920534,0.086567535996437]],[[0.1128948405385,0.022334944456816,0.046477243304253],[0.10979985445738,-0.066952586174011,-0.00350905302912],[-0.047104969620705,-0.04562159627676,-0.023005317896605]],[[-0.013457288965583,-0.10722716897726,-0.17357207834721],[-0.049842823296785,0.011558245867491,0.01905383169651],[-0.019993029534817,-0.048569124191999,0.010446292348206]],[[-0.0041750590316951,-0.061696197837591,-0.009176473133266],[-0.033746376633644,-0.063855551183224,-0.045224532485008],[0.073284797370434,-0.026365116238594,-0.070601582527161]],[[0.13302727043629,0.062664285302162,-0.082303836941719],[0.047478638589382,-0.022410390898585,0.012714053504169],[-0.068474531173706,-0.060889054089785,0.01967323385179]],[[-0.045142095535994,0.044788409024477,0.041270423680544],[0.028642883524299,-0.10994617640972,-0.065048962831497],[0.021154148504138,-0.11699273437262,0.21427142620087]],[[-0.074623204767704,-0.15514378249645,-0.081071987748146],[0.048403851687908,0.031919784843922,-0.000398537813453],[-0.0025885789655149,0.029298713430762,-0.062036111950874]],[[0.044004268944263,-0.078868918120861,0.016973048448563],[-0.083444148302078,-0.14609579741955,-0.14385542273521],[0.074631817638874,0.058675236999989,0.0071502304635942]],[[-0.19952276349068,0.020097408443689,0.042729187756777],[-0.023358780890703,-0.11715769767761,0.018555225804448],[-0.077186606824398,-0.059513758867979,-0.050258602946997]],[[-0.015517076477408,-0.0061801462434232,-0.066906429827213],[0.016418674960732,0.083709694445133,0.0047287461347878],[-0.0080566797405481,0.18976092338562,-0.010210470296443]],[[-0.072283819317818,0.010120048187673,0.086744703352451],[-0.040415033698082,0.035966046154499,-0.083127520978451],[-0.0011510420590639,-0.03880201280117,0.023339370265603]],[[0.020333509892225,-0.043522752821445,0.0038277776911855],[0.020681917667389,0.019246503710747,0.032676346600056],[0.077358298003674,0.056301590055227,0.067560024559498]],[[-0.028208777308464,0.014334047213197,0.056404579430819],[0.033636651933193,0.051279906183481,0.035690020769835],[-0.0011729934485629,-0.080588445067406,0.056374303996563]],[[0.011967472732067,0.028174435719848,0.096766263246536],[0.11106833815575,0.0098120803013444,0.104502171278],[0.064641460776329,-0.010872157290578,-0.013904852792621]],[[-0.037648860365152,0.020665839314461,0.079275950789452],[-0.035645421594381,-0.033862512558699,0.040095113217831],[-0.012547214515507,-0.04873576387763,0.019112501293421]],[[-0.063343822956085,0.0019503617659211,0.074090264737606],[-0.086001545190811,0.015155780129135,0.00059563165996224],[-0.021687485277653,0.010155045427382,0.20148593187332]],[[0.11942433565855,0.081325329840183,0.096569426357746],[-0.055653914809227,-0.018597492948174,-0.10447949916124],[-0.11652802675962,0.012089897878468,0.16374292969704]],[[0.0082340780645609,-0.00078350835246965,0.046414237469435],[-0.04971656575799,-0.054810009896755,-0.085914634168148],[-0.02649967558682,0.0050371820107102,0.12499403208494]],[[0.00074529449921101,0.12128000706434,0.045192528516054],[0.030927712097764,0.015378864482045,-0.025964472442865],[-0.051653403788805,0.066569752991199,0.16574196517467]],[[-0.17464736104012,-0.0031177275814116,-0.099067069590092],[0.014053479768336,-0.011508857831359,-0.032223381102085],[-0.0024117303546518,-0.14162410795689,-0.098329409956932]],[[0.040439113974571,-0.062256716191769,-0.10262963920832],[0.13269333541393,0.10235863924026,0.037379235029221],[0.062801241874695,0.061098180711269,-0.0018070921069011]],[[-0.092214241623878,0.0080279400572181,0.0096123944967985],[-0.039381343871355,0.094085730612278,-0.069796212017536],[0.028043128550053,-0.0026282612234354,-0.080500885844231]],[[0.054004166275263,0.069449633359909,0.01655182801187],[0.0067328666336834,-0.067484684288502,0.08756235986948],[-0.12286420911551,0.090872265398502,0.098299190402031]],[[0.14082208275795,0.040631670504808,0.051813818514347],[0.059618189930916,0.048632565885782,0.039690982550383],[0.060607802122831,-0.038333375006914,0.043350975960493]],[[-0.025999242439866,0.084053426980972,0.20596557855606],[-0.094897158443928,-0.068399034440517,0.027442455291748],[0.068697199225426,-0.10300050675869,0.080363899469376]],[[0.084762938320637,0.057694490998983,0.07392318546772],[0.03262784332037,-0.081452004611492,0.00049495790153742],[-0.054120317101479,0.0076562813483179,0.01019050180912]],[[0.02425791323185,0.056959882378578,-0.0089733554050326],[0.035235472023487,-0.080410026013851,-0.019075023010373],[-0.042829945683479,-0.038139097392559,0.075927555561066]],[[-0.091885983943939,-0.11203434318304,-0.11865129321814],[-0.12597984075546,-0.066427655518055,-0.10194922983646],[-0.10283646732569,-0.12927946448326,0.045684635639191]],[[-0.012054418213665,-0.097411014139652,-0.051249817013741],[0.049118112772703,-0.025030754506588,-0.014700974337757],[-0.014142131432891,0.071010820567608,0.18794366717339]],[[0.10959175229073,0.061619482934475,0.020555719733238],[0.038829226046801,0.029494930058718,0.07353737950325],[-0.12741859257221,-0.012188619934022,0.066555477678776]],[[-0.081727787852287,-0.0080746486783028,0.096293814480305],[-0.0064647644758224,0.0096356822177768,0.076288156211376],[0.011581636965275,-0.038568522781134,-0.040135391056538]],[[0.00027260044589639,-0.038717910647392,0.1082029491663],[-0.048753321170807,-0.05134779587388,0.082280330359936],[0.082000337541103,0.06984031945467,-0.063471615314484]],[[0.081005126237869,0.049056194722652,-0.02877694927156],[0.10800815373659,-0.022769054397941,-0.086162552237511],[0.012511333450675,-0.039959363639355,0.13153642416]],[[-0.050751537084579,-0.0072564193978906,0.0839888677001],[-0.018557531759143,-0.027180144563317,-0.099561594426632],[-0.017374472692609,-0.060228478163481,-0.027882853522897]],[[0.12179877609015,0.029253212735057,0.22774247825146],[0.061142772436142,0.21398381888866,0.21038943529129],[-0.044410970062017,-0.030622564256191,0.021816929802299]],[[-0.022711805999279,-0.068933397531509,-0.12332361936569],[0.012453513219953,-0.055995613336563,-0.09309521317482],[0.047852944582701,0.066305376589298,-0.031752966344357]],[[0.05745392665267,-0.035473346710205,-0.15546672046185],[-0.024561615660787,0.074919909238815,0.12313353270292],[0.011951653286815,0.018533742055297,0.13322061300278]],[[0.059253610670567,0.0048436359502375,0.11115038394928],[0.059598028659821,0.017765922471881,-0.0030385726131499],[0.014711990021169,-0.085252448916435,-0.02459067478776]],[[0.0019384562037885,0.008161167614162,0.061924442648888],[0.0059753223322332,0.020668845623732,0.00097259855829179],[0.0072667049244046,0.064362920820713,0.025226712226868]],[[-0.089277550578117,-0.095019452273846,-0.11176411062479],[0.001008173217997,-0.027204595506191,0.0092784473672509],[-0.014884287491441,-0.013786112889647,-0.07091998308897]],[[0.060896322131157,-0.022361701354384,-0.033291686326265],[0.082583606243134,-0.050103165209293,-0.087339207530022],[-0.089031413197517,-0.0049898405559361,-0.051662124693394]],[[-0.0011041471734643,-0.046892527490854,0.047689471393824],[0.10610500723124,-0.020874762907624,-0.037438679486513],[0.054244644939899,0.0059023667126894,-0.036544967442751]],[[0.013744229450822,0.026710415259004,0.07145007699728],[0.058249864727259,-0.031938429921865,-0.01005488075316],[0.0045078401453793,0.05192056670785,0.012725186534226]],[[0.058485887944698,0.029140591621399,0.11409060657024],[-0.052880130708218,-0.078734807670116,-0.015713395550847],[-0.076641887426376,-0.038436863571405,0.071819812059402]],[[0.072296164929867,-0.042598884552717,0.023073369637132],[0.036713089793921,0.018557261675596,-0.11483082175255],[-0.030127707868814,0.002064511179924,0.027086708694696]]],[[[-0.01374629791826,0.073981434106827,-0.0068531893193722],[0.042295075953007,0.01829232275486,0.031568869948387],[0.018069438636303,0.097802594304085,0.026620956137776]],[[-0.035294558852911,0.11988192796707,0.091999940574169],[0.052967950701714,0.022894944995642,-0.03593809902668],[0.014780672267079,0.041500467807055,0.041256781667471]],[[-0.12400521337986,0.076481208205223,0.0007431015255861],[-0.0067832148633897,0.071463078260422,-0.01969919539988],[-0.06836761534214,0.016316426917911,0.024845024570823]],[[-0.014811165630817,-0.010039676912129,0.029832031577826],[-0.010342284105718,0.014027526602149,0.046961732208729],[-0.030918810516596,0.063542954623699,-0.013773322105408]],[[0.0049570030532777,0.065625376999378,0.00063375174067914],[0.011991382576525,0.068914979696274,0.039451781660318],[-0.042260933667421,0.05201094597578,-0.077078126370907]],[[-0.014586990699172,-0.014558211900294,0.030343944206834],[-0.078640624880791,0.11615891754627,0.033306747674942],[-0.10898593068123,0.13980935513973,0.0011235550045967]],[[-0.054908193647861,-0.080872394144535,-0.03803038969636],[-0.054960131645203,-0.0024430046323687,-0.039302840828896],[-0.01028161495924,0.043102543801069,0.011021984741092]],[[-0.030781168490648,0.02378842048347,-0.016878603026271],[0.001583967008628,-0.05666895210743,0.024757262319326],[-0.023972645401955,-0.098036698997021,-0.035859864205122]],[[-0.0058132926933467,-0.012068312615156,-0.057000838220119],[0.068633444607258,0.049206104129553,0.024560287594795],[-0.065040238201618,0.040640890598297,-0.099439173936844]],[[0.035084288567305,-0.047391019761562,-0.01068005990237],[-0.037222143262625,0.030870685353875,-0.0068200943060219],[0.0038751878309995,-0.036817148327827,-0.0068291346542537]],[[0.026858154684305,-0.0009819328552112,0.041727211326361],[-0.018683880567551,-0.012487355619669,0.020259123295546],[0.0091777332127094,0.0059983730316162,0.038403667509556]],[[-0.0033438627142459,0.0066265552304685,-0.073357135057449],[0.0089777167886496,0.042959816753864,0.045146811753511],[0.02657575532794,-0.037816997617483,-0.033628933131695]],[[0.00020755766308866,0.043198626488447,0.074009463191032],[-0.0083711883053184,-0.014662688598037,-0.039499871432781],[-0.073955170810223,0.03531589359045,0.015628328546882]],[[0.02952735312283,-0.024215774610639,-0.084305144846439],[-0.025086754933,-0.039225108921528,-0.019986402243376],[-0.010340873152018,0.019033405929804,-0.0028775040991604]],[[-0.040368340909481,0.019383171573281,0.081701569259167],[0.014991110190749,-0.082936726510525,0.049942143261433],[-0.048591006547213,0.056328386068344,0.04514642059803]],[[-0.059773165732622,0.00026859840727411,0.076496757566929],[-0.0019163799006492,-0.0076621132902801,-0.0063285510987043],[-0.0016951141878963,0.011900221928954,0.047121681272984]],[[-0.030884893611073,0.026383139193058,-0.064428932964802],[-0.022252518683672,-0.073882453143597,-0.0078459177166224],[0.073956578969955,-0.034176461398602,-0.0085197454318404]],[[-0.052346639335155,0.0022054428700358,-0.055242642760277],[0.052579399198294,-0.0067149484530091,-0.029839290305972],[0.040793977677822,0.018129954114556,-0.018796844407916]],[[-0.01265870500356,0.038562167435884,-0.045533042401075],[-0.0036168806254864,-0.0033777768258005,0.0029674347024411],[0.01254288200289,-0.01185208838433,-0.017573548480868]],[[0.042043868452311,-0.06518542021513,0.050418060272932],[-0.043795075267553,-0.063536249101162,0.0064601013436913],[0.041541405022144,0.016267849132419,0.082861237227917]],[[-0.020380536094308,-0.084981486201286,0.047872144728899],[0.033886358141899,0.00046551169361919,-0.018668403849006],[-0.053523365408182,0.052698668092489,0.015496583655477]],[[0.033040940761566,-0.044952109456062,0.067871987819672],[-0.008708125911653,0.0050649521872401,0.019425889477134],[-0.010110940784216,-0.031293258070946,0.04548828676343]],[[0.0001010695923469,-0.042019043117762,0.020039089024067],[0.09005581587553,-0.024123778566718,-0.041824862360954],[0.010240263305604,0.048587150871754,0.0073660393245518]],[[-0.10292672365904,0.017228802666068,-0.0051825339905918],[-0.04463554546237,-0.033716484904289,0.026130359619856],[0.0086540281772614,-0.006380878854543,-0.072861537337303]],[[0.053907591849566,-0.074293151497841,-0.018018122762442],[-0.037486057728529,-0.07593185454607,-0.057692267000675],[0.011369519867003,-0.032715782523155,0.0031256331130862]],[[-0.014985729940236,-0.02726536244154,0.071268528699875],[0.033348228782415,-0.041010405868292,-0.14292100071907],[0.011519532650709,0.051522541791201,0.035856273025274]],[[0.094264961779118,0.0063014579936862,0.0070612565614283],[-0.0014924423303455,0.058328576385975,-0.027037089690566],[0.13729536533356,-0.051069337874651,-0.095822349190712]],[[-0.058555513620377,-0.0074957772158086,0.07416445761919],[0.0073635885491967,-0.027043102309108,-0.024130044505],[0.045391008257866,-0.035140138119459,-0.028849396854639]],[[-0.016841515898705,-0.044262953102589,0.00039559946162626],[0.026425244286656,-0.079247742891312,-0.038673687726259],[0.021358849480748,-0.057792641222477,0.041388295590878]],[[-0.074106968939304,0.024335708469152,-0.03727101534605],[0.043569926172495,-0.10044697672129,0.031416974961758],[0.022725027054548,0.035355288535357,0.0043900045566261]],[[-0.023389674723148,0.035333380103111,2.6990543119609e-05],[-0.043665956705809,0.054066799581051,0.0085397306829691],[0.067703142762184,-0.023195903748274,-0.018846567720175]],[[-0.065863020718098,-0.027472965419292,-0.061023984104395],[-0.021185241639614,0.050722364336252,-0.023899305611849],[-0.012810683809221,-0.0025350849609822,-0.040470685809851]],[[-0.0061657610349357,0.068975672125816,-0.027921298518777],[-0.078579068183899,-0.028490154072642,-0.034087900072336],[-0.010540853254497,-0.02239559404552,0.087436281144619]],[[0.05973045155406,-0.045670323073864,-0.0066625345498323],[0.054192468523979,-0.026028674095869,0.0071584754623473],[-0.040159191936255,-0.049543507397175,-0.068998374044895]],[[-0.032015286386013,0.023135472089052,0.046795632690191],[0.047948334366083,0.075653314590454,-0.01187639310956],[0.0021342067047954,0.088644988834858,0.074802160263062]],[[0.07206005603075,-0.0074012051336467,0.0057655111886561],[-0.015388179570436,0.049874674528837,0.048162892460823],[0.046079311519861,-0.01266610994935,0.044645991176367]],[[-0.036556083709002,0.019943658262491,0.0018090661615133],[0.036887668073177,0.022132396697998,0.020962342619896],[-0.082543589174747,-0.10661439597607,0.021543744951487]],[[-0.058456093072891,-0.014455556869507,0.005333898589015],[-0.049157399684191,-0.078958779573441,-0.056725606322289],[-0.050534583628178,-0.03600249812007,-0.012296725995839]],[[0.020005704835057,0.010217113420367,0.013975143432617],[0.053395062685013,0.056995213031769,-0.0030854239594191],[0.0097461994737387,0.02380976267159,0.0059189694002271]],[[-0.088762395083904,-0.011739885434508,0.03278561681509],[-0.041165955364704,-0.042954221367836,-0.013402340002358],[-0.040777862071991,0.016720676794648,-0.015202558599412]],[[-0.087807700037956,-0.051081527024508,0.076440952718258],[0.031601473689079,0.022727619856596,0.042248215526342],[0.088130138814449,-0.027747387066483,-0.045819293707609]],[[-0.042335394769907,0.065871126949787,0.0051115015521646],[0.055564071983099,0.035832326859236,-0.05910736322403],[-0.031685125082731,0.012790830805898,0.055859610438347]],[[0.021253069862723,-0.044156301766634,0.023415341973305],[0.070602118968964,0.011612922884524,-0.034735448658466],[0.011731537990272,0.060977376997471,0.088017955422401]],[[-0.024856401607394,0.020568232983351,-0.01854919269681],[-0.0073771448805928,0.061925657093525,0.066899426281452],[0.1006745994091,0.0067927706986666,0.032291691750288]],[[-0.065990447998047,-0.052715186029673,0.046000573784113],[0.045837853103876,-0.0098409578204155,-0.013554725795984],[-0.0013970566214994,-0.009810977615416,0.021564306691289]],[[-0.027818012982607,0.026926083490252,0.12326920032501],[-0.046713721007109,-0.0078492248430848,-0.047104764729738],[-0.01819428242743,-0.01114812400192,0.018766917288303]],[[0.049965281039476,-0.047124989330769,-0.0031433673575521],[0.072901785373688,0.035696644335985,0.031986951828003],[-0.014312053099275,-0.03991449996829,-0.0032322809565812]],[[-0.087966032326221,0.0030244791414589,-0.089241020381451],[0.0098472768440843,-0.047446589916945,-0.02762153185904],[-0.079087950289249,-0.070687934756279,0.038154657930136]],[[0.016035718843341,-0.01861460506916,-0.056610893458128],[0.097586467862129,0.026143550872803,0.046909835189581],[-0.040047060698271,0.0097813913598657,-0.025158990174532]],[[-0.029769299551845,-0.0019184617558494,0.045398730784655],[0.033335749059916,-0.0024098826106638,-0.020531915128231],[-0.052102483808994,0.02690501883626,0.039156291633844]],[[-0.02969029918313,-0.0061937640421093,0.065164290368557],[-0.034841347485781,-0.0098465094342828,0.070008173584938],[0.0018320974195376,0.021148199215531,0.026364395394921]],[[-0.030700696632266,0.029743421822786,-0.058639008551836],[0.018078178167343,0.026455797255039,0.00066641793819144],[0.035714171826839,0.014830936677754,0.020236564800143]],[[-0.017218740656972,0.030609991401434,-0.05205162987113],[-0.048203956335783,-0.066968940198421,0.0013028278481215],[0.0086782956495881,-0.040793742984533,-0.060051761567593]],[[0.030480245128274,-0.007667931728065,-0.012981446459889],[-0.015731697902083,0.035805381834507,0.020660566166043],[0.03677811846137,-0.0091715268790722,-0.063708640635014]],[[0.046612344682217,0.057581599801779,0.031580977141857],[0.042382672429085,0.032257795333862,-0.076454237103462],[-0.099874563515186,-0.050730597227812,0.01226164214313]],[[0.035462103784084,-0.017506580799818,0.079864725470543],[-0.041289586573839,-0.015405574813485,-0.021826945245266],[0.031972005963326,0.064283482730389,0.013518141582608]],[[-0.0077699953690171,-0.032181058079004,0.0387953966856],[-0.033170949667692,-0.035290695726871,-0.047470599412918],[-0.04829628393054,0.075166173279285,-0.031577102839947]],[[0.022738864645362,-0.069197215139866,-0.068477742373943],[-0.074947945773602,0.016311138868332,0.05187913775444],[0.019401161000133,-0.074259392917156,-0.048203684389591]],[[0.073816321790218,-0.058419015258551,0.064764715731144],[0.026410365477204,-0.046050768345594,0.029658753424883],[-0.0075681200250983,0.016075490042567,-0.0004879012121819]],[[-0.049679927527905,-0.072985090315342,-0.020108819007874],[0.02860976755619,-0.072862446308136,-0.011538441292942],[-0.041368182748556,-0.05107007920742,0.12721727788448]],[[-0.034907437860966,-0.012833969667554,0.029931372031569],[-0.009734109044075,-0.045121897011995,0.062264427542686],[0.044059723615646,0.027984680607915,0.017882950603962]],[[0.03200751543045,0.03871126845479,0.067571736872196],[-0.028876537457108,-0.011631860397756,-0.0095264622941613],[-0.093840971589088,0.0056390594691038,0.0123051116243]],[[-0.076972760260105,-0.011664724908769,0.019792651757598],[0.019835310056806,-0.00075533747440204,0.0063821924850345],[0.057632558047771,0.092972777783871,0.037842325866222]],[[0.090862616896629,0.03799907118082,0.069767542183399],[0.0032904963009059,0.014822377823293,0.024952394887805],[0.0039024266880006,0.02885259129107,0.0036763795651495]],[[0.0038742637261748,0.060949523001909,-0.0026509794406593],[-0.014168992638588,0.0012317604850978,-0.066743671894073],[0.07697732001543,0.015129981562495,-0.030262138694525]],[[0.015490302816033,0.029630346223712,-0.0088179344311357],[0.011721001006663,-0.10598588734865,-0.030147863551974],[0.024855418130755,-0.0075360517948866,0.011709305457771]],[[0.0093341609463096,0.03507985919714,0.045327749103308],[-0.0046457871794701,-0.011265399865806,0.022397289052606],[-0.0055507719516754,-0.064326263964176,0.042731802910566]],[[0.074497111141682,0.032064065337181,-0.039315804839134],[-0.012194316834211,0.042782720178366,0.048909954726696],[0.029350876808167,-0.025603607296944,-0.015731757506728]],[[0.049803234636784,-0.0020589018240571,-0.00087848940165713],[0.015634765848517,-0.059122391045094,-0.025843312963843],[0.010954482480884,0.025992549955845,0.0010810096282512]],[[0.0059572979807854,-0.020553542301059,0.012921123765409],[-0.030391836538911,-0.023787673562765,0.007278726901859],[-0.059778727591038,0.030236171558499,-0.070259563624859]],[[0.01834843121469,-0.05473168939352,-0.0044276569969952],[-0.092513456940651,-0.13265977799892,0.020437700673938],[-0.0093132900074124,-0.028012426570058,-0.020076379179955]],[[0.093815080821514,0.0077163008973002,-0.088108994066715],[-0.056974820792675,-0.04560124501586,0.01698113232851],[-0.015390289947391,-0.031857028603554,0.03934233263135]],[[-0.036203801631927,-0.0042014485225081,-0.0096360826864839],[0.030894737690687,-0.018305169418454,-0.043684281408787],[-0.048974636942148,-0.041670523583889,-0.0046805990859866]],[[0.030916193500161,0.012216906063259,-0.036923334002495],[-0.0014264304190874,0.070791997015476,0.076115049421787],[-0.033921346068382,-0.061977341771126,0.039881829172373]],[[-0.04590554907918,-0.00049065303755924,0.027075603604317],[0.15768355131149,0.077074348926544,0.0021692239679396],[0.012060651555657,-0.035443585366011,0.012060130015016]],[[-0.00064738438231871,0.024172604084015,0.063773944973946],[0.030499096959829,0.070026986300945,-0.045554056763649],[0.11113008856773,0.058379750698805,-0.008155457675457]],[[-0.042089842259884,0.0016728886403143,0.04022378847003],[0.0072291591204703,-0.017748134210706,-0.023682894185185],[0.010484696365893,0.013232735916972,-0.015516340732574]],[[-0.044438619166613,0.026046849787235,-0.047096412628889],[0.00099355180282146,0.027991367504001,0.018915319815278],[-0.011142905801535,0.046640310436487,-0.032587859779596]],[[0.1080327257514,-0.004501192830503,-0.063699953258038],[-0.014500536955893,-0.0024073889944702,-0.063774041831493],[0.0058814766816795,0.015999520197511,0.043034132570028]],[[-0.037928454577923,-0.068349108099937,-0.06053065136075],[0.051821202039719,-0.027274006977677,-0.10360594838858],[0.058324761688709,-0.022087953984737,-0.0095278415828943]],[[-0.041890799999237,0.0061545362696052,0.0062105860561132],[-0.04043722525239,0.0010750374058262,0.06317114084959],[-0.088708139955997,0.084643110632896,0.05245927721262]],[[-0.0064278985373676,-0.058717060834169,0.022533185780048],[-0.033575631678104,-0.027636095881462,0.035590026527643],[0.033200118690729,-0.051175512373447,0.018161399289966]],[[-0.02781606093049,0.0057056616060436,0.0051168552599847],[0.06793100386858,-0.041919067502022,-0.076377771794796],[0.0074292812496424,-0.018817443400621,-0.017293967306614]],[[0.15511934459209,0.018818471580744,-0.040752831846476],[-0.0081813270226121,0.0095034576952457,0.070184431970119],[0.022408470511436,0.039236854761839,0.0069009042344987]],[[0.027248485013843,-0.049061723053455,0.05541530251503],[0.079152077436447,0.010789870284498,0.10648030787706],[-0.1176033616066,-0.063828893005848,0.044473648071289]],[[-0.017410283908248,0.019063986837864,0.024488557130098],[-0.0013692592037842,0.057375852018595,-0.0038853797595948],[-0.023565063253045,0.0028907549567521,0.069181516766548]],[[-0.033001646399498,0.050718002021313,0.096448183059692],[-0.027550520375371,-0.085026204586029,-0.062809906899929],[0.037601750344038,0.012489556334913,0.072084873914719]],[[-0.020735943689942,-0.043095678091049,0.026706835255027],[-0.042106546461582,0.056065030395985,0.010021732188761],[-0.013231135904789,0.021981751546264,-0.019350741058588]],[[0.049419354647398,0.0046011134982109,-0.057942286133766],[0.05365876480937,-0.051384579390287,0.0028399017173797],[-0.033229865133762,-0.015940090641379,0.034599374979734]],[[0.030244041234255,0.026151979342103,0.023476898670197],[0.088193513453007,-0.053260196000338,-0.048306282609701],[-0.0036107606720179,-0.069488294422626,0.081367209553719]],[[-0.092999532818794,-0.08589680492878,-0.025230553001165],[-0.065228678286076,0.016531996428967,0.0021295514889061],[0.037341598421335,-0.060724794864655,0.036046955734491]],[[-0.020443497225642,0.031756717711687,0.06113338470459],[0.0034535254817456,-0.017952360212803,0.015533524565399],[-0.034972537308931,-0.010843377560377,-0.021378939971328]],[[0.048117190599442,-0.024642314761877,0.038197714835405],[0.078811131417751,-0.014202338643372,-0.016566164791584],[0.022574413567781,0.002245016163215,0.010091274045408]],[[-0.021009584888816,0.020771129056811,0.017244974151254],[-0.06004174426198,0.023207686841488,0.090635485947132],[-0.004414891358465,0.013467908836901,0.02223028242588]],[[-0.02798174880445,-0.0034950382541865,-0.093058295547962],[0.059335123747587,0.0056210202164948,-0.032829277217388],[-0.013022396713495,0.066380999982357,-0.059014458209276]],[[0.011445289477706,0.052115712314844,0.074633561074734],[-0.066416293382645,-0.0030156574212015,0.089143514633179],[0.03899247571826,-0.040474332869053,-0.01668912731111]],[[-0.057956278324127,-0.013484849594533,0.021173227578402],[0.034765090793371,-0.079341992735863,0.04531791806221],[0.019137410447001,0.04956017062068,0.0019006058573723]],[[0.10388913750648,0.017776465043426,0.06540771573782],[0.02151008695364,-0.054239496588707,0.039184182882309],[0.0069576692767441,-0.055624574422836,-0.11078777909279]],[[-0.0098512703552842,-0.063234008848667,-0.0034210367593914],[0.0013226593146101,0.019568407908082,-0.019001621752977],[-0.090236499905586,0.050469115376472,-0.0066000376828015]],[[-0.0095045883208513,-0.0075699058361351,-0.042692102491856],[-0.03891035169363,0.024353355169296,-0.003505518194288],[0.004790716804564,-0.059614393860102,-0.036709543317556]],[[0.039507728070021,-0.027178268879652,0.022763803601265],[-0.11006782948971,0.040002346038818,0.03757243975997],[-0.046558625996113,0.0045399288646877,0.029082471504807]],[[0.019488010555506,0.072591327130795,-0.024228444322944],[-0.024956105276942,-0.032485842704773,-0.12529541552067],[-0.087600998580456,0.021105134859681,-0.022319799289107]],[[0.01039329636842,-0.00070780038367957,-0.072022430598736],[-0.015559169463813,0.029703116044402,-0.0034002515021712],[0.002263599075377,-0.041046552360058,-0.0057192058302462]],[[-0.051642544567585,0.033652108162642,0.035314466804266],[-0.0012140831677243,-0.11031972616911,-0.068719655275345],[-0.038144394755363,0.058542251586914,-0.087951049208641]],[[0.047847989946604,-0.049319088459015,-0.0078454166650772],[0.0052939583547413,-0.054768025875092,-0.05988447368145],[0.0080156167969108,-0.09581646323204,-0.0029729355592281]],[[-0.034061245620251,-0.015259801410139,-0.034183252602816],[0.048402711749077,0.059810187667608,0.0084451278671622],[0.066722258925438,-0.043578676879406,0.014234573580325]],[[0.012395910918713,0.012138881720603,-0.0084064286202192],[-0.017630962654948,-0.0059600593522191,-0.050436824560165],[-0.044603120535612,-0.051382094621658,-0.00050477171316743]],[[-0.0050423434004188,0.0022139109205455,0.0098900580778718],[0.049081243574619,0.00021937002020422,0.0030768390279263],[0.044496778398752,-0.024301348254085,-0.033782325685024]],[[0.028863893821836,-0.046942669898272,-0.029394347220659],[0.0063583175651729,-0.036920927464962,0.02382654696703],[-0.057373486459255,0.068923339247704,-0.044556118547916]],[[0.034358736127615,0.056019011884928,0.00070662162033841],[0.070570804178715,-0.018031131476164,0.050946392118931],[-0.016656333580613,-0.019251262769103,0.028235375881195]],[[0.037045769393444,1.3124968972988e-05,0.048611167818308],[0.010588507167995,0.030067481100559,-0.015495327301323],[0.062251783907413,0.048783551901579,0.0085038123652339]],[[0.012319505214691,-0.086463771760464,0.057372249662876],[0.0012655636528507,0.017218666151166,0.098570220172405],[0.034295033663511,0.03832009807229,-0.070099070668221]],[[-0.0064042033627629,0.025152629241347,-0.060255654156208],[-0.021459091454744,0.010299629531801,0.0045184609480202],[-0.085530482232571,0.019098600372672,-0.026792954653502]],[[0.010847819969058,0.058112449944019,0.023109696805477],[-0.022423995658755,0.05482242628932,-0.0054674749262631],[-0.056234087795019,-0.05145475640893,-0.037594400346279]],[[0.013291864655912,-0.030293134972453,0.036076426506042],[-0.023602057248354,0.03181978687644,0.041502829641104],[-0.036544494330883,-0.031973093748093,0.006644802633673]],[[0.10606538504362,-0.069412209093571,0.014309593476355],[0.085532881319523,0.059920351952314,0.039836753159761],[-0.020552819594741,0.020228877663612,-0.0062115075998008]],[[0.034007135778666,-0.0094751361757517,0.022449553012848],[-0.011701222509146,0.018837291747332,0.022693485021591],[0.05490879714489,-0.03815745189786,0.0063783582299948]],[[0.028949150815606,0.021564789116383,0.0045746411196887],[0.033397417515516,0.033235628157854,-0.001816165051423],[-0.015966109931469,-0.0048444243147969,-0.039171755313873]],[[0.10631960630417,-0.024317119270563,0.032229021191597],[-0.003875635098666,-0.064690597355366,-0.035713635385036],[0.064681768417358,0.025244535878301,-0.0046635176986456]],[[0.017490986734629,0.0009964999044314,0.001685461611487],[0.025587758049369,0.011220551095903,0.0093029085546732],[-0.015724381431937,0.0016543011879548,0.012692633084953]],[[0.015505827963352,-0.047810845077038,-0.045504037290812],[-0.036421108990908,0.0018507080385461,0.028634574264288],[0.015539958141744,0.018889557570219,0.014898521825671]],[[0.11104835569859,-0.012773130089045,0.022542607039213],[0.083061210811138,-0.015994371846318,0.03784279152751],[-0.00054477714002132,0.0029115497600287,0.030309420078993]],[[-0.059162579476833,-0.066299870610237,0.055549453943968],[0.099264189600945,-0.015311259776354,-0.046095434576273],[-0.0048090000636876,0.027318341657519,-0.040675602853298]],[[-0.11248929798603,0.059435918927193,-0.0086269276216626],[0.047457478940487,0.026818243786693,-0.0037741831038147],[-0.093519814312458,-0.020639669150114,0.065281346440315]],[[-0.058056190609932,0.003273663809523,0.027825139462948],[0.047045949846506,-0.028789551928639,-0.034383930265903],[0.041019633412361,-0.0687121078372,0.034683763980865]],[[-0.033737622201443,-0.00228828843683,-0.021249210461974],[-0.014024215750396,-0.017239892855287,-0.0051651373505592],[-0.03051583468914,0.03003335557878,-0.021106386557221]],[[-0.042809132486582,-0.0031308147590607,-0.028615051880479],[0.0091837672516704,-0.040317382663488,0.079133063554764],[0.0092240767553449,-0.015848930925131,0.048136617988348]],[[-0.0038549129385501,-0.025813324376941,0.025192741304636],[0.050610613077879,-0.020951151847839,-0.0086067039519548],[-0.0048361071385443,-0.025442069396377,0.01173822209239]]],[[[0.016806408762932,-0.034329924732447,-0.054844152182341],[0.0033117670100182,-0.019885236397386,-0.010402601212263],[0.01509677618742,-0.040038410574198,0.019576817750931]],[[0.038945879787207,-0.0094720162451267,-0.11246081441641],[0.092532500624657,0.0069365301169455,-0.019753750413656],[-0.015827193856239,-0.067776009440422,-0.069648198783398]],[[0.031260494142771,-0.0034414711408317,-0.02571371011436],[0.024468377232552,-0.058584053069353,-0.0013422423508018],[-0.084017120301723,-0.047457117587328,-0.077494069933891]],[[-0.073670364916325,0.009079746901989,0.014759540557861],[-0.024428777396679,-0.029414050281048,0.0092462413012981],[0.11748176068068,-0.0056320419535041,0.014848607592285]],[[-0.008732745423913,-0.098307535052299,-0.017231862992048],[0.027088643983006,-0.036029160022736,-0.055810809135437],[0.035531811416149,0.014112650416791,-0.023556012660265]],[[-0.0057282615453005,-0.0084056565538049,0.028225691989064],[0.052766639739275,-0.046155273914337,-0.085774935781956],[0.038372419774532,-0.028434280306101,-0.081083387136459]],[[0.032906804233789,0.055876187980175,0.0011005366686732],[0.00096240331185982,0.039506569504738,0.037475138902664],[-0.044464986771345,-0.049951612949371,-0.049607519060373]],[[0.0041419309563935,0.027964252978563,0.030030693858862],[0.0027619861066341,0.034033108502626,-0.0072673647664487],[0.038373306393623,-0.010000355541706,-0.06878562271595]],[[0.015654051676393,-0.0087002599611878,0.1155194118619],[-0.09879345446825,0.044749327003956,-0.031344592571259],[-0.06291526556015,0.019778711721301,0.11460263282061]],[[0.016673455014825,0.022941322997212,0.0595045350492],[0.048648796975613,-0.053727734833956,0.018938336521387],[-0.032475735992193,-0.0023428581189364,-0.033493142575026]],[[-0.047834284603596,-0.04372264444828,0.067549757659435],[0.025733850896358,0.029817763715982,0.015973757952452],[-0.011754429899156,0.01961706019938,-0.055132694542408]],[[0.0084858955815434,0.03492421284318,-0.020073307678103],[0.0068566408008337,-0.077899754047394,-0.050827447324991],[0.075367778539658,0.099157951772213,-0.032238192856312]],[[0.026468755677342,-0.014667510986328,0.0029162440914661],[-0.050624873489141,-0.025042815133929,0.063834093511105],[0.019744737073779,0.027218401432037,-0.027929626405239]],[[-0.06053127720952,-0.078419238328934,0.0049606864340603],[0.023016357794404,-6.1414830270223e-06,-0.020138347521424],[-0.064610667526722,-0.03281831741333,-0.054305590689182]],[[-0.00012144487845944,-0.010017395950854,0.058547489345074],[0.044921215623617,0.0018083169125021,-0.034770712256432],[-0.063515104353428,0.037972908467054,-0.060730900615454]],[[0.036685973405838,-0.085209809243679,-0.075952865183353],[0.052459288388491,0.002972318790853,0.010579215362668],[0.021224113181233,0.051210310310125,-0.0039506121538579]],[[0.0078636510297656,0.062815926969051,-0.047628533095121],[-0.021866763010621,-0.071709670126438,-0.011809851974249],[-0.055363923311234,0.0052466620691121,-0.0053805327042937]],[[-0.012539419345558,0.021370986476541,0.021105295047164],[-0.048358548432589,-0.043150741606951,0.0033960901200771],[0.056263171136379,-0.058469258248806,0.032742686569691]],[[0.044785045087337,-0.011795495636761,0.0093264291062951],[0.053450603038073,-0.0350103341043,-0.048673801124096],[0.00066181097645313,-0.046754285693169,-0.0052506593056023]],[[5.0228343752678e-05,0.082869045436382,-0.061434417963028],[0.038202501833439,-0.012082207016647,-0.042628794908524],[0.024490607902408,-0.041788838803768,0.047893024981022]],[[0.069579601287842,-0.056539621204138,-0.068124018609524],[0.0113634634763,-0.02454392798245,0.080588884651661],[0.089205287396908,0.06343512237072,-0.045270256698132]],[[0.029234852641821,0.037748847156763,-0.007648017257452],[-0.0027651253622025,0.089314177632332,0.0073614390566945],[0.037511147558689,-0.0018615332664922,-0.069716185331345]],[[-0.051234137266874,-0.11166585236788,-0.043288722634315],[-0.043075796216726,0.010881339199841,-0.022376973181963],[0.0064476281404495,0.0033561019226909,0.037192482501268]],[[-0.04271250218153,0.095187820494175,0.055177081376314],[0.039434637874365,-0.069121904671192,0.043507669121027],[0.069964095950127,-0.084747806191444,-0.086419656872749]],[[-0.020011788234115,-0.018985578790307,-0.018163662403822],[0.010058282874525,-0.087291315197945,-0.046026080846786],[0.031507130712271,0.0012888433411717,-0.033299338072538]],[[0.018545741215348,0.07018917798996,-0.051774922758341],[0.016713531687856,-0.10105854272842,-0.025659807026386],[-0.057976376265287,-0.01060903351754,-0.014261942356825]],[[-0.051283366978168,0.0044586076401174,0.049869410693645],[-0.03194335848093,-0.0035258363932371,0.07451730966568],[-0.023944271728396,-0.035847626626492,-0.040246371179819]],[[0.014614201150835,0.022279938682914,0.032303463667631],[0.06372094899416,-0.083313673734665,-0.029195951297879],[0.022368030622602,-0.00035096035571769,0.0061934180557728]],[[-0.03234289586544,0.068179316818714,-0.01187917497009],[0.015480253845453,0.0026315613649786,-0.082191117107868],[-0.014208758249879,0.036352064460516,0.043626938015223]],[[0.0066992682404816,-0.031382195651531,-0.0091918557882309],[-0.036241076886654,-0.083075158298016,0.031596157699823],[-0.065851859748363,-0.055206172168255,-0.0092929862439632]],[[0.046367015689611,-0.047285854816437,-0.086422920227051],[-0.024193800985813,-0.10523404926062,0.032496072351933],[-0.012674269266427,-0.023873111233115,0.074373453855515]],[[0.0081923399120569,-0.046748392283916,-0.035620864480734],[0.00075777131132782,0.0079930871725082,-0.01642301492393],[0.038722690194845,0.027480605989695,-0.0097840493544936]],[[0.02386767603457,0.040121357887983,0.074012570083141],[-0.0050618890672922,-0.0027339842636138,-0.020683629438281],[0.08018734306097,0.02155171521008,-0.05150331184268]],[[-0.099425405263901,0.036541078239679,-0.0092084081843495],[-0.054389327764511,-0.022390155121684,0.036301951855421],[-0.0074548930861056,0.032308019697666,0.076539799571037]],[[-0.069858938455582,0.0073145455680788,-0.013185490854084],[-0.062961839139462,0.028692336753011,0.074625134468079],[0.082052268087864,0.093449465930462,-0.083511665463448]],[[0.04189832136035,-0.096143320202827,-0.042448569089174],[-0.11732932925224,0.082467459142208,0.029058557003736],[0.0053110849112272,0.040310982614756,0.089016735553741]],[[-0.022637283429503,-0.073907241225243,-0.015945594757795],[0.027864348143339,0.087263137102127,0.031234672293067],[-0.048449106514454,-0.0099187130108476,-0.0033918432891369]],[[-0.0096647990867496,0.022038973867893,0.015214540064335],[-0.0099213747307658,0.004659550730139,-0.028106456622481],[0.081583797931671,0.0016044417861849,-0.061987485736609]],[[-0.097408801317215,0.041446316987276,0.046687014400959],[-0.038273680955172,0.01719318702817,0.0089299539104104],[-0.15398636460304,-0.058875471353531,-0.1281565874815]],[[0.047320105135441,0.033781792968512,0.012407372705638],[-0.011204878799617,-0.010211893357337,0.010962924920022],[0.05550792068243,0.026544719934464,-0.032240442931652]],[[0.034933265298605,-0.023118536919355,-0.039658915251493],[-0.015846978873014,-0.0015067253261805,-0.023146033287048],[0.013802113011479,0.0057752425782382,0.006797953043133]],[[-0.026819080114365,-0.0015373404603451,-0.0049303937703371],[0.016742121428251,0.05940705537796,0.025850228965282],[-0.069638848304749,-0.0067265224643052,-0.021130235865712]],[[-0.0044833458960056,-0.064860567450523,0.091736607253551],[0.015204224735498,-0.0095584103837609,-0.02164126560092],[0.047139447182417,0.0050644632428885,0.033365037292242]],[[-0.053198046982288,-0.0032076728530228,-0.04400897026062],[-0.024330522865057,-0.0090038375928998,-0.1045770868659],[-0.02790504321456,0.095122158527374,-0.039411224424839]],[[0.041437938809395,0.074248664081097,0.023033706471324],[-0.0072269006632268,0.010573942214251,-0.006133493501693],[0.11332812905312,-0.0079284692183137,0.02904299274087]],[[0.049855168908834,-0.021761272102594,0.0031552258878946],[-0.018495755270123,-0.033534284681082,-0.059461921453476],[0.050627276301384,0.13987888395786,0.031989522278309]],[[-0.039432384073734,-0.023388378322124,-0.082230776548386],[0.028260005638003,-0.096031904220581,-0.062990106642246],[-0.0059475437738001,0.050472296774387,0.010864969342947]],[[-0.020338097587228,0.055873848497868,-0.012380054220557],[0.077425852417946,0.0063848039135337,0.021002169698477],[0.022456908598542,0.0075259585864842,-0.0225570499897]],[[-0.098233886063099,-0.044909257441759,0.062438856810331],[-0.03630918264389,0.032564133405685,-0.017338899895549],[-0.0058590546250343,-0.018455978482962,0.024814231321216]],[[-0.13849632441998,-0.036937739700079,0.068677753210068],[0.018909137696028,0.018792763352394,0.035147875547409],[0.0018609273247421,0.018544441089034,-0.035948935896158]],[[0.031740948557854,-0.080133654177189,0.02861987426877],[0.04896579310298,0.01211606618017,-0.038443129509687],[-0.025138597935438,-0.056011978536844,-0.058023672550917]],[[-0.018920896574855,-0.00059953867457807,-0.0021311626769602],[0.061098843812943,-0.013465613126755,0.081148646771908],[0.11589138954878,-0.04523017629981,-0.053296402096748]],[[-0.055210597813129,-0.0050795641727746,-0.059421982616186],[0.031785078346729,-0.0038123491685838,-0.030858743935823],[-0.016985218971968,-0.05273536965251,-0.038844238966703]],[[0.045364197343588,-0.0029860171489418,-0.018539104610682],[-0.0016770348884165,0.002358715981245,0.036332182586193],[0.020196115598083,0.021080650389194,-0.045050591230392]],[[-0.031170014292002,-0.094848088920116,-0.026565780863166],[0.056334137916565,-0.061471477150917,-0.03432659804821],[0.010881247930229,-0.039764985442162,-0.0036901975981891]],[[0.00078591500641778,-0.014228695072234,0.04486171901226],[-0.013328203000128,0.02812672406435,-0.001514534233138],[0.044329691678286,-0.056688506156206,-0.067896366119385]],[[0.038665801286697,-0.011322006583214,-0.014136804267764],[-0.014632841572165,-0.012094810605049,-0.029360897839069],[-0.0054875039495528,0.073236748576164,0.015659298747778]],[[0.073829799890518,-0.031973861157894,0.10315666347742],[-0.0064195529557765,0.028814524412155,0.0053677121177316],[-0.063060142099857,0.0084262723103166,-0.019276581704617]],[[0.074759118258953,-0.027674218639731,-0.040055561810732],[0.024806397035718,-0.028682675212622,0.038478575646877],[0.0088845333084464,0.025536360219121,0.038480464369059]],[[-0.040178634226322,0.02026985399425,0.037796087563038],[-0.03962966427207,-0.013379799202085,-0.014208418317139],[-0.11483154445887,0.045185372233391,0.024104855954647]],[[-0.0075730234384537,0.0057642119936645,-0.011012928560376],[0.019918076694012,-0.022647578269243,-0.035458587110043],[-0.021895963698626,-0.010091302916408,0.068963475525379]],[[-0.046344436705112,-0.017811363562942,0.008931640535593],[0.041626956313848,-0.018378555774689,-0.020052710548043],[0.036474093794823,-0.040197879076004,-0.037704907357693]],[[-0.027746917679906,0.049855317920446,-0.0019307533511892],[-0.12107899039984,0.018779397010803,-0.025994775816798],[0.008010477758944,-0.0086778169497848,-0.084242798388004]],[[0.032310836017132,-0.023178847506642,0.067001797258854],[-0.038190178573132,-0.0099612893536687,-0.047636158764362],[0.0065087084658444,-0.056869611144066,0.042346827685833]],[[-0.030305840075016,-0.022871252149343,-0.0044544478878379],[-0.0012785074068233,-0.011459259316325,-0.0030055441893637],[-0.005280782468617,-0.06055174767971,0.046014208346605]],[[0.046567879617214,0.019817089661956,0.029818067327142],[-0.023198373615742,0.02625591494143,-0.016049116849899],[-0.047458883374929,0.0011862568790093,0.067658595740795]],[[0.027606640011072,0.027221411466599,0.039244394749403],[0.04167652875185,0.034422338008881,0.092854470014572],[-0.008546338416636,-0.086020618677139,-0.059438548982143]],[[-0.037068579345942,0.035171892493963,0.093267485499382],[0.058714315295219,0.046487841755152,0.061309158802032],[-0.035030540078878,0.072683066129684,-0.0089504038915038]],[[-0.016241474077106,-0.099549844861031,0.12795367836952],[-0.019721517339349,-0.091593742370605,0.078591488301754],[-0.039179366081953,0.061674512922764,-0.041759561747313]],[[0.067824877798557,-0.084826365113258,0.023427186533809],[-0.019700927659869,0.061263896524906,0.014831366948783],[0.10250709205866,-0.0091819213703275,-0.023680076003075]],[[-0.053183265030384,0.0078173503279686,0.030385771766305],[-0.024894062429667,0.046914890408516,-0.015214974991977],[0.061485141515732,0.0162145011127,-0.043501749634743]],[[-0.04725369811058,0.056933004409075,0.00062233244534582],[-0.010378528386354,0.042175628244877,0.019886055961251],[0.045202743262053,0.022827763110399,-0.026615537703037]],[[-0.099818639457226,0.036793731153011,-0.084170781075954],[0.028525959700346,0.029508521780372,0.017392175272107],[-0.073251187801361,0.044141333550215,0.073153831064701]],[[0.0073939431458712,0.060185182839632,0.062636010348797],[-0.0391830727458,0.0055828029289842,0.018535371869802],[0.076547138392925,-0.012576205655932,-0.035639248788357]],[[-0.014520836062729,-0.0086471103131771,-0.11200313270092],[-0.034870758652687,0.01278571691364,0.18566101789474],[0.089592479169369,0.047506887465715,-0.0054459441453218]],[[0.027282683178782,0.08072742074728,0.011744983494282],[-0.080725565552711,-0.038382057100534,-0.085755556821823],[-0.045015782117844,0.052203103899956,0.01102873403579]],[[0.0074343755841255,-0.056210540235043,-0.024091335013509],[-0.012761441990733,0.021774210035801,-0.0030700457282364],[0.03049530275166,0.012324783019722,0.045765269547701]],[[0.023497715592384,0.00076211197301745,0.01362104807049],[-0.069684229791164,0.09170388430357,-0.044407662004232],[0.063153311610222,0.0079013472422957,-0.035978984087706]],[[-0.063490688800812,-0.00049455522093922,0.099382169544697],[-0.031098622828722,-0.091874614357948,-0.12949194014072],[-0.053910482674837,-0.053199980407953,0.073564790189266]],[[-0.052704900503159,0.011310520581901,-0.077965810894966],[-0.070726588368416,0.069497860968113,-5.4034811910242e-05],[0.090191088616848,-0.040241796523333,-0.0033225370571017]],[[0.069944702088833,0.057829543948174,0.015327411703765],[-0.022192040458322,-0.003778709564358,0.093343421816826],[-0.026171805337071,-0.090407215058804,-0.015303931199014]],[[0.098067194223404,0.030542150139809,0.011117194779217],[0.07561756670475,0.077268786728382,0.028522096574306],[-0.0054527833126485,-0.034548990428448,-0.037162248045206]],[[-0.082409329712391,0.023532578721642,0.055868696421385],[-0.020918775349855,0.021203342825174,-0.038076423108578],[1.1930242180824e-05,-0.019020775333047,0.01293286960572]],[[0.018691394478083,0.0086027346551418,0.006397217977792],[0.11481144279242,0.00071358046261594,-0.061456438153982],[0.022958276793361,-0.06531172990799,0.019039573147893]],[[-0.040145616978407,0.088816247880459,-0.026196261867881],[0.0053193145431578,0.029592299833894,0.022781696170568],[-0.020975636318326,-0.022771507501602,-0.0077837300486863]],[[-0.058287620544434,-0.016035795211792,-0.0068478020839393],[-0.043443590402603,0.010770718567073,0.021943202242255],[-0.01542367041111,-0.022852515801787,-0.050095826387405]],[[0.010789568535984,-0.023675268515944,-5.5048574722605e-05],[-0.032262057065964,0.074129372835159,-0.056969285011292],[-0.0040712337940931,-0.033447429537773,-0.036035396158695]],[[0.018450003117323,-0.038265258073807,0.0016555545153096],[-0.02860102429986,-0.022521924227476,0.066604696214199],[-0.014763047918677,-0.0276711396873,0.004470850341022]],[[-0.027798965573311,-0.037096869200468,-0.056146085262299],[0.0039170375093818,0.009905700571835,-0.029109247028828],[0.098152950406075,-0.0067557650618255,-0.011184309609234]],[[-0.033635828644037,-0.15557853877544,-0.045028001070023],[-0.037241127341986,0.13323366641998,-0.016785928979516],[0.044637147337198,0.085919842123985,0.00082010962069035]],[[0.0045001045800745,0.0018171889241785,-0.057417988777161],[0.052440658211708,0.047155931591988,-0.042999278753996],[0.023272816091776,0.0053268023766577,0.042896136641502]],[[0.020726522430778,0.10063841938972,-0.010103326290846],[0.056874111294746,-0.045675951987505,-0.12309249490499],[0.033170480281115,-0.01462641172111,0.051503229886293]],[[0.013915091753006,0.015006072819233,0.029629677534103],[-0.017526647076011,-0.027961395680904,0.10150103271008],[0.04625990986824,0.0056467787362635,0.053266931325197]],[[-0.017091492190957,0.053733617067337,0.0043268939480186],[0.007261710241437,-0.047404140233994,-0.059393007308245],[0.014852022752166,0.14528693258762,-0.10466514527798]],[[0.026719616726041,-0.018116038292646,0.015793656930327],[-6.3827559642959e-05,0.011505831032991,-0.079921036958694],[0.067302942276001,-0.056854669004679,-0.038168624043465]],[[-0.039880596101284,0.010206283070147,0.068263344466686],[0.023784318938851,0.02756349183619,-0.14984691143036],[0.0037043266929686,0.0092973057180643,-0.030180599540472]],[[0.077080339193344,0.057952053844929,-0.019452791661024],[0.051689296960831,0.025956636294723,-0.05915379524231],[-0.04159327223897,-0.086372807621956,-0.033689752221107]],[[-0.068678021430969,-0.030658228322864,-0.0069787842221558],[0.02518711052835,-0.056050900369883,0.041886851191521],[0.007626527454704,0.070507369935513,-0.045841902494431]],[[0.046096608042717,-0.0099696228280663,-0.0083557656034827],[0.047232072800398,-0.08100088685751,-0.061815153807402],[0.14073304831982,-0.008029717952013,0.0026591690257192]],[[-0.052720848470926,-0.029866432771087,0.078027784824371],[0.03858508169651,-0.0069882101379335,0.044971678406],[-0.048798654228449,0.032890271395445,0.097838900983334]],[[0.094201050698757,-0.065278209745884,-0.033308658748865],[0.049972392618656,-0.020277936011553,-0.039729055017233],[0.065310090780258,0.047865334898233,-0.070276238024235]],[[0.062993966042995,0.045578196644783,0.052412185817957],[-0.045668013393879,-0.037805035710335,-0.031453344970942],[-0.037168860435486,0.052114397287369,0.0071164551191032]],[[0.053274556994438,0.0038534021005034,0.032533369958401],[0.030080148950219,-0.0034890645183623,0.014885627664626],[0.013662908226252,0.063930712640285,0.034247521311045]],[[0.062577031552792,0.070600569248199,-0.021212473511696],[0.015406372025609,0.060258898884058,0.05095361545682],[0.089607834815979,0.021722318604589,0.028736276552081]],[[0.044884260743856,-0.032501395791769,-0.099303059279919],[-0.040938649326563,0.0002916595840361,-0.086216747760773],[0.0034358657430857,-0.010921533219516,0.033765789121389]],[[0.0029969313181937,0.0056718094274402,-0.014273240230978],[-0.042530983686447,-0.0086063891649246,0.017940422520041],[0.011297930032015,-0.015077085234225,0.035627249628305]],[[-0.050370715558529,0.015822475776076,-0.0019932645373046],[0.040671225637197,-0.015780009329319,0.003966614138335],[-0.0037317220121622,0.0063870144076645,0.021034598350525]],[[-0.015083498321474,0.049411188811064,0.010673846118152],[-0.029039325192571,-0.043669655919075,0.01458594109863],[0.035149499773979,0.03549437224865,0.056703053414822]],[[-0.017551554366946,0.04039790853858,-0.016586231067777],[0.012082699686289,-0.002872257027775,0.028561482205987],[0.08293716609478,-0.057632897049189,0.040379408746958]],[[0.0070960046723485,0.017371501773596,0.03370026499033],[0.043831404298544,0.04979058727622,0.044154956936836],[0.045947629958391,0.052731648087502,0.068670853972435]],[[-0.030748087912798,0.10208992660046,-0.060074456036091],[0.068602547049522,0.050363205373287,0.013001143932343],[0.087866924703121,-0.018574832007289,0.0054467916488647]],[[-0.022978961467743,0.042928963899612,0.024134978652],[-0.090212814509869,0.0089525245130062,-0.051442600786686],[-0.043425835669041,-0.0064056231640279,-0.0024131524842232]],[[0.033925902098417,0.033996671438217,-0.098327338695526],[0.0095903631299734,-0.016834566369653,-0.048345796763897],[0.014797873795033,-0.024996306747198,-0.0984216183424]],[[0.013514829799533,0.053736459463835,-0.063738748431206],[-0.046166080981493,-0.01152013707906,0.008142102509737],[-0.015903502702713,-0.030639553442597,-0.034449007362127]],[[0.025034911930561,-0.061911400407553,0.047893308103085],[-0.045996084809303,0.048357341438532,0.031265001744032],[-0.083590313792229,-0.035402413457632,-0.031810369342566]],[[-0.081618718802929,0.068693108856678,0.027847183868289],[-0.033071354031563,-0.034908048808575,-0.021920945495367],[-0.071090079843998,0.023604420945048,0.014129541814327]],[[0.050056397914886,0.077376686036587,-0.011810506694019],[0.0052016656845808,-0.022768318653107,-0.078484199941158],[-0.0024869863409549,-0.073900036513805,0.038350347429514]],[[-0.02087458409369,0.040356755256653,0.12928153574467],[0.0060692592523992,0.021500317379832,-0.07205668836832],[-0.070350326597691,0.012450047768652,-0.05222811549902]],[[-0.019311221316457,-0.057369399815798,-0.073498338460922],[-0.035210054367781,0.01350305788219,0.080533191561699],[0.015406351536512,0.0064024562016129,-0.050845678895712]],[[0.040410574525595,-0.029093535616994,0.036794003099203],[-0.043692819774151,-0.0034867532085627,0.046647813171148],[-0.027796845883131,0.011367201805115,-0.014019045978785]],[[-0.040020905435085,0.037898439913988,0.0065142218954861],[-0.063905023038387,0.00035114196361974,-0.017654443159699],[-0.019170479848981,0.064789041876793,0.012266095727682]],[[0.069297537207603,0.013702930882573,-0.085278637707233],[0.051921423524618,0.064182326197624,-0.024691671133041],[-0.066329270601273,5.9382098697824e-05,0.0069437050260603]],[[0.01150465477258,0.0024357726797462,0.028948066756129],[0.018261468037963,-0.0015532883116975,-0.026105236262083],[-0.013458848930895,0.0161436740309,0.018902130424976]],[[-0.059062875807285,0.031997669488192,-0.032287776470184],[0.059956811368465,-0.030524555593729,0.027304014191031],[0.027410911396146,-0.024690696969628,-0.030432315543294]],[[-0.00058573647402227,-0.013636996038258,0.043700687587261],[-0.038937512785196,-0.060547366738319,0.01217295974493],[-0.055308520793915,0.020572999492288,-0.013078300282359]],[[0.0055072172544897,-0.02538693882525,-0.051385600119829],[0.026619106531143,0.032634358853102,-0.014145993627608],[-0.036192655563354,0.019736677408218,0.095498494803905]],[[-0.025284104049206,-0.065679088234901,-0.09727293998003],[0.073760122060776,-0.0063415965996683,0.049905057996511],[-0.049753870815039,-0.079640090465546,-0.040435567498207]],[[0.053261462599039,0.022688360884786,0.073890224099159],[-0.085636675357819,-0.05176954716444,0.050186693668365],[0.024470292031765,0.031820699572563,-0.027433235198259]]]],"nOutputPlane":128,"kW":3,"kH":3,"bias":[-0.092956833541393,-0.095176115632057,-0.094187714159489,-0.059781175106764,-0.010281020775437,-0.047057513147593,0.055833764374256,-0.10121316462755,-0.013651622459292,-0.013346615247428,-0.068639494478703,-0.089832909405231,-0.0094992015510798,-0.016795182600617,-0.050740584731102,-0.031830601394176,-0.050679937005043,-0.041455838829279,-0.018171699717641,-0.011469800956547,-0.010986317880452,-0.0075242798775434,-0.020409788936377,-0.019361596554518,-0.027906490489841,-0.027994699776173,-0.041884005069733,-0.07543757557869,-0.085978880524635,-0.0099216271191835,-0.042568884789944,-0.10540536791086,-0.018665488809347,0.075130857527256,-0.057689808309078,0.014048550277948,-0.0054457923397422,-0.0084085501730442,-0.068893678486347,-0.015614544972777,-0.01257845479995,-0.032587796449661,-0.013210836797953,-0.062157031148672,-0.091815285384655,-0.010272223502398,-0.01930165104568,0.032306514680386,-0.032333958894014,-0.095081552863121,-0.00092434324324131,-0.060200456529856,0.0047375871799886,-0.0016579901566729,-0.097833208739758,-0.09057143330574,-0.054518014192581,-0.0060721402987838,-0.011150336824358,-0.033331833779812,-0.015323768369853,-0.051682382822037,-0.081814415752888,-0.13458967208862,-0.029375728219748,-0.078181445598602,-0.021719990298152,0.012798489071429,-0.024112228304148,-0.044749137014151,-0.026153797283769,-0.015068315900862,-0.056773871183395,-0.080599300563335,-0.0074529680423439,0.016007797792554,-0.10316883772612,-0.059716451913118,-0.0014004793483764,-0.079553194344044,-0.03656255081296,-0.016016155481339,-0.028152342885733,-0.01486396137625,0.055559612810612,-0.091598264873028,-0.056485075503588,0.050945229828358,-0.085920125246048,0.039748668670654,0.017317166551948,-0.0088074989616871,-0.075969725847244,-0.016306770965457,-0.018883589655161,-0.091637618839741,-0.033398155122995,-0.080670684576035,-0.0045578642748296,-0.0086732273921371,-0.016735251992941,-0.0068060168996453,-0.0029745264910161,-0.084814794361591,-0.0028836177662015,-0.013515490107238,-0.11512137204409,-0.028725989162922,-0.0050477935001254,-0.019472861662507,0.0061377249658108,-0.072846665978432,0.014234459958971,-0.0024932795204222,0.026003774255514,-0.014881202019751,-0.035600088536739,0.041838891804218,-0.0077399373985827,-0.023967128247023,-0.0095036141574383,-0.0786242634058,-0.038445215672255,0.057722125202417,-0.018254453316331,0.00051125587197021,-0.078679814934731,-0.082129918038845],"nInputPlane":128},{"weight":[[[[0.88162082433701,0.22708782553673,-0.75125133991241],[0.61871403455734,-0.028422025963664,-0.6828801035881],[-1.3004286289215,-0.031806621700525,0.094719916582108]],[[-0.25787737965584,-0.16218854486942,-0.092311888933182],[-0.040962092578411,-0.0081956693902612,0.63949400186539],[-0.61072570085526,0.03606316819787,0.43603855371475]],[[-0.18270960450172,0.33752882480621,-0.46839305758476],[-0.91775393486023,-0.182461977005,0.16446724534035],[0.3811377286911,0.3819831609726,-0.0042274943552911]],[[0.53566563129425,-0.72040736675262,0.50882083177567],[-0.7153953909874,0.19876040518284,0.025929754599929],[0.22881637513638,0.1310420781374,-0.25409975647926]],[[-0.45959174633026,0.079872496426105,0.033464103937149],[-0.048529993742704,0.42489597201347,0.054301865398884],[-0.10662664473057,-0.047244645655155,-0.06708487123251]],[[-0.64977651834488,-0.80922842025757,-0.67366433143616],[0.24145190417767,0.68831753730774,0.42521554231644],[0.35372483730316,0.32844194769859,0.06675922870636]],[[0.058852054178715,0.40659871697426,-0.33675387501717],[-0.12153518944979,0.069655790925026,0.073288626968861],[0.93349009752274,-0.15366378426552,-0.039166063070297]],[[-0.22339233756065,0.081895932555199,-0.10630588978529],[0.34741473197937,-0.16104248166084,-0.44613575935364],[-0.094493970274925,-0.58036226034164,0.02474439330399]],[[0.25033161044121,0.81396126747131,-0.58810687065125],[0.03905238583684,-0.035457570105791,-0.19406434893608],[0.36198574304581,-0.28098747134209,-0.33548629283905]],[[0.20318265259266,-0.30514231324196,0.077748462557793],[-0.16065740585327,0.47690519690514,0.22675395011902],[0.42786133289337,-0.77294528484344,-0.20195798575878]],[[0.076845951378345,0.65997540950775,0.86499232053757],[-0.33701610565186,0.62498587369919,-0.18146261572838],[-0.28889530897141,-0.45895302295685,-1.014512181282]],[[0.89735573530197,-0.033172443509102,-0.095079340040684],[-1.4155604839325,0.79329264163971,0.031525250524282],[-0.22167679667473,-0.17986072599888,-0.33422517776489]],[[-0.44454210996628,0.046000320464373,0.23501029610634],[-0.013708778657019,-0.28443640470505,0.22548328340054],[0.093269906938076,0.041024565696716,0.068924330174923]],[[-1.0554909706116,0.30149480700493,0.45071786642075],[0.56373411417007,-0.51558840274811,-0.21069048345089],[0.27267563343048,0.055358279496431,0.16379752755165]],[[-0.52465522289276,0.26971873641014,-0.056238491088152],[-0.44173681735992,0.8670112490654,-0.28074958920479],[0.05776684358716,-0.38548165559769,0.44808974862099]],[[-0.11450403183699,0.22282801568508,0.51291817426682],[-0.25809279084206,-0.33461791276932,0.49087756872177],[0.029501950368285,0.32294103503227,-0.85037440061569]],[[-0.30925318598747,-0.83007705211639,-0.010397328063846],[-0.10984395444393,0.23632903397083,0.81664806604385],[0.0099154179915786,0.13336385786533,0.087682142853737]],[[0.81541335582733,0.39377385377884,0.19585265219212],[-0.50944632291794,-0.083987422287464,-0.4192912876606],[0.01814217120409,-0.44728565216064,0.045002687722445]],[[-0.24231262505054,1.2830859422684,-0.10619968175888],[0.18961529433727,-0.45385482907295,-0.43870607018471],[-0.1619258671999,-0.10477726906538,0.082124330103397]],[[0.022199660539627,-0.12586309015751,-0.0079777864739299],[0.2198234796524,0.039572611451149,-0.55322635173798],[-0.095137014985085,0.068009816110134,0.41864305734634]],[[0.11568751186132,-0.12468250095844,0.26833727955818],[0.25491911172867,-0.67547005414963,0.23637634515762],[-0.082215994596481,0.15672874450684,-0.075371511280537]],[[-0.002595785073936,0.1601667702198,-0.070058763027191],[0.25874504446983,-0.45089998841286,-0.089365184307098],[0.20376738905907,0.055359367281199,0.0032253311946988]],[[-0.059314012527466,0.081729844212532,-0.33912846446037],[-0.023794915527105,-0.41722840070724,0.097568310797215],[0.16904203593731,0.1209644973278,0.33618375658989]],[[0.0061784852296114,-0.13845099508762,0.013658588752151],[-0.35452049970627,-0.18355473875999,0.39548155665398],[0.41351273655891,0.49096196889877,-0.62103372812271]],[[-0.63194465637207,0.75706958770752,-0.59197616577148],[0.10503632575274,0.25761944055557,-0.19734589755535],[0.13987343013287,-0.2038576900959,0.35459053516388]],[[0.13907977938652,-0.39919844269753,-0.34769660234451],[0.086298808455467,0.19005352258682,0.089243359863758],[0.18297848105431,0.14492486417294,-0.11570811271667]],[[0.53913921117783,-0.34428626298904,0.71661514043808],[-0.82734876871109,-0.32033947110176,-0.64884692430496],[0.5481766462326,-0.18503910303116,0.67650401592255]],[[-0.47761160135269,0.33214119076729,0.085938736796379],[0.32282710075378,-0.33019524812698,-0.30814757943153],[-0.47211602330208,-0.3529569208622,0.37105664610863]],[[-0.88646733760834,0.15308679640293,-0.85606288909912],[0.1192108169198,0.41291892528534,-0.58035391569138],[-0.14092127978802,1.2393517494202,-0.89627766609192]],[[0.27857089042664,-0.53023493289948,-0.13635240495205],[0.76777541637421,0.13685242831707,0.83971792459488],[-0.22732678055763,-0.52514833211899,-0.10440535843372]],[[-0.27983486652374,0.2374764829874,-0.064439304172993],[-0.33792611956596,-0.59997779130936,-0.44177356362343],[0.38815560936928,0.95798045396805,0.056154761463404]],[[-0.18897165358067,-0.16316701471806,0.25203713774681],[0.34202620387077,-0.12114439159632,-0.12714438140392],[0.023396646603942,0.5228642821312,-0.73497068881989]],[[-0.063896998763084,0.17770782113075,-0.0021570005919784],[-0.021814692765474,0.61560535430908,-0.33871591091156],[0.046201538294554,-0.45870566368103,0.015832655131817]],[[-0.10380315035582,0.24145631492138,-0.25341963768005],[0.32913655042648,0.33572381734848,0.05476913228631],[0.32904520630836,0.18855096399784,-0.028315747156739]],[[-1.0602756738663,0.19183538854122,0.46704462170601],[-0.036612320691347,0.11733722686768,0.20094875991344],[0.24817860126495,0.16350737214088,-0.41581159830093]],[[-0.55663597583771,-0.15910510718822,-0.1367294639349],[0.059256974607706,-0.42605465650558,0.80082130432129],[-0.11732708662748,0.23505754768848,0.32754069566727]],[[-0.058631494641304,0.17438815534115,-0.058010507375002],[-0.19054915010929,0.26845616102219,-0.12819394469261],[0.066295951604843,0.18359659612179,-0.26758599281311]],[[-0.046468529850245,-0.5811779499054,0.44490534067154],[0.16236765682697,0.24007122218609,-0.38086798787117],[-0.24375803768635,0.3738397359848,0.002624127548188]],[[0.20890621840954,0.4270167350769,0.42738762497902],[-0.10066249221563,-0.30963459610939,-0.36936789751053],[-0.067730821669102,-0.38092541694641,-0.054890770465136]],[[0.23698154091835,0.14535547792912,0.0091142216697335],[-0.1128771007061,-0.11311604082584,-0.14218239486217],[-0.2760437130928,0.21944555640221,0.014911976642907]],[[-0.2833109498024,-0.055348679423332,-0.013165628537536],[0.10116852074862,0.25307536125183,-0.22690379619598],[0.15697003901005,0.2135996222496,-0.13963003456593]],[[-0.97894239425659,0.10181719064713,1.0684552192688],[-0.36335954070091,0.066677130758762,-0.15260018408298],[-0.11908053606749,0.16082082688808,0.1791096329689]],[[-0.21384339034557,0.43227249383926,0.0071741919964552],[-0.68019038438797,0.28498920798302,0.32188755273819],[0.031472489237785,-0.26833429932594,0.05962785705924]],[[-0.36363631486893,-1.4845468997955,-0.39329236745834],[0.82824927568436,0.08280823379755,-0.13519681990147],[0.16813948750496,0.45879349112511,0.74174690246582]],[[-0.74007105827332,-0.12205930054188,0.21436122059822],[0.11787094920874,0.33210474252701,-0.069476254284382],[-0.74705731868744,-0.96120083332062,-0.53412079811096]],[[-0.081916704773903,-0.31448408961296,0.27938213944435],[0.023519460111856,-0.070656225085258,0.26878061890602],[-0.052240569144487,6.679815123789e-05,-0.075359106063843]],[[0.35888651013374,0.21168972551823,-0.010081795975566],[-0.24886371195316,-0.4911721944809,0.092639237642288],[0.077058404684067,0.14223316311836,-0.16006751358509]],[[-0.2049121260643,0.04104832932353,0.17181222140789],[-0.063042290508747,-0.074575357139111,-0.32248729467392],[0.62103492021561,0.59296691417694,-0.30189055204391]],[[0.17930814623833,0.046422995626926,0.25072979927063],[1.2255297899246,-0.6178360581398,-0.19057030975819],[-0.25830262899399,-1.0190491676331,0.38989040255547]],[[0.32961836457253,0.37311437726021,0.19974920153618],[-0.67246067523956,-0.21489726006985,-0.43459048867226],[-0.44004881381989,-0.23201915621758,-0.17044995725155]],[[-0.52184873819351,0.12425048649311,0.13130694627762],[0.1729671061039,0.36228343844414,-0.20112815499306],[0.14592798054218,-0.12116383761168,-0.11921279877424]],[[0.71583861112595,-0.20014652609825,0.027774864807725],[-0.95410549640656,-0.25027316808701,0.25241282582283],[0.045571561902761,0.12200148403645,0.057632885873318]],[[0.045234717428684,0.00099758198484778,0.13265216350555],[-0.023295998573303,0.041498519480228,-0.36683088541031],[-0.054193422198296,-0.049213234335184,0.2683707177639]],[[0.081118188798428,-0.0038979984819889,-0.15114614367485],[-0.17837017774582,-0.026075091212988,0.084110617637634],[0.099034823477268,-0.013505431823432,0.093464739620686]],[[-0.024757031351328,0.20706813037395,-1.0743181705475],[-0.33974269032478,-0.012588300742209,-0.18009169399738],[-0.73694598674774,0.26780477166176,-0.3526114821434]],[[0.10794591158628,-0.84836375713348,0.62957829236984],[-0.044712919741869,-0.015203160233796,0.48935380578041],[0.17588141560555,0.017196111381054,-0.54544287919998]],[[0.23701113462448,0.51491677761078,0.083597511053085],[-0.2448922842741,-0.27818468213081,0.17730949819088],[-0.70983409881592,0.15577980875969,-0.062014535069466]],[[-0.24876172840595,0.19941486418247,0.12195489555597],[0.37912636995316,-0.25916457176208,-0.036902189254761],[-0.2278236746788,0.29732143878937,-0.23404984176159]],[[-0.24651290476322,0.37755757570267,0.1079258993268],[0.17479760944843,-0.38826256990433,0.089156322181225],[-0.027872594073415,-0.049729868769646,-0.047631684690714]],[[0.15355017781258,0.61430847644806,0.20451916754246],[-0.27930158376694,-0.59944361448288,-0.16815321147442],[0.10182677209377,-0.059595867991447,-0.053085844963789]],[[0.14986574649811,-0.072017453610897,-0.11051690578461],[-0.19270814955235,0.24257166683674,0.0077789691276848],[0.065117180347443,0.0056172767654061,-0.13008253276348]],[[0.31527110934258,-0.62612873315811,0.50766032934189],[0.37163388729095,0.34060922265053,0.85807549953461],[-0.59209012985229,-0.076807849109173,-1.0565847158432]],[[-0.63838350772858,0.096425950527191,-0.012911853380501],[-0.16279757022858,0.912482380867,-0.65374577045441],[-0.51211982965469,0.04164132848382,0.2770454287529]],[[0.10270518809557,-0.52241623401642,0.091393180191517],[-0.43072631955147,1.1677029132843,0.025677958503366],[0.086966171860695,-0.17327663302422,-0.44270071387291]],[[0.89549952745438,-0.47584825754166,-0.37742990255356],[0.068394713103771,-0.11432571709156,0.19166122376919],[-0.68676608800888,0.15416200459003,0.34083271026611]],[[0.65474045276642,0.14446227252483,-1.0677332878113],[0.080883771181107,0.59241187572479,0.19293268024921],[-0.025132870301604,-0.40298992395401,-0.32486239075661]],[[-0.12624543905258,0.19482088088989,0.0057959873229265],[-0.20665588974953,0.032670840620995,-0.032386664301157],[-0.25030902028084,0.19533298909664,0.23029465973377]],[[-0.33753404021263,0.11844826489687,-0.091113671660423],[0.50059306621552,0.25213274359703,-0.24385742843151],[-0.37230789661407,-0.13991010189056,0.31676694750786]],[[0.2102195173502,-0.10836616158485,-0.70382165908813],[0.67387807369232,0.0057191816158593,0.095600239932537],[0.35088700056076,-0.20756144821644,-0.27391862869263]],[[0.34106183052063,0.49307513237,0.18286293745041],[-0.10766459256411,-0.39236763119698,-0.65861392021179],[0.024058900773525,0.094170406460762,0.04331486672163]],[[0.30596002936363,0.29795488715172,-0.55115926265717],[0.31479319930077,0.056220766156912,0.024553209543228],[-0.11073809862137,-0.04482588917017,-0.30401077866554]],[[-0.4371944963932,0.21029356122017,-0.085199013352394],[-0.47551122307777,0.40563809871674,0.25137960910797],[-0.063068509101868,-0.077070310711861,0.25965800881386]],[[-0.4047899544239,0.24671609699726,-0.55853915214539],[0.44663307070732,-0.18963411450386,0.12514697015285],[0.32417783141136,0.061027675867081,-0.062878996133804]],[[-0.32025066018105,0.012454128824174,0.26615434885025],[-0.22253292798996,0.75208580493927,-0.4510902762413],[-0.076035745441914,-0.63949710130692,-0.060248039662838]],[[0.023562300950289,-0.83098709583282,0.33383852243423],[0.64662438631058,0.025823686271906,-0.44495835900307],[-0.40882509946823,0.54715776443481,0.15881127119064]],[[0.25806790590286,-0.47827619314194,0.016795255243778],[0.22568036615849,-0.70721685886383,0.19995355606079],[0.22656953334808,0.30723026394844,-0.004626537207514]],[[0.30017706751823,-1.0109397172928,0.95205515623093],[-0.35441613197327,-0.45355859398842,0.044828988611698],[-0.41200768947601,-0.85779654979706,0.12280549108982]],[[0.20551949739456,-0.58664035797119,0.22868309915066],[0.15897181630135,-0.034313198179007,-0.18314689397812],[0.062788106501102,-0.012473126873374,0.046175073832273]],[[0.17517660558224,-0.055398680269718,-0.1228406354785],[-0.057717740535736,0.15063706040382,0.079673960804939],[-0.2303551286459,0.24191658198833,-0.20937724411488]],[[-0.01822879165411,0.0371302254498,-0.35699817538261],[0.34341830015182,-0.33726102113724,-0.071032077074051],[-0.22053749859333,0.21103158593178,-0.070332936942577]],[[-0.016195736825466,-0.068074747920036,-0.74564552307129],[-0.18185278773308,0.44263657927513,0.35200074315071],[0.24722038209438,0.080419197678566,-0.1373149305582]],[[0.63478946685791,-0.53526926040649,-0.10628471523523],[-0.40929597616196,0.043144069612026,-0.16137711703777],[0.58347183465958,0.088002189993858,-0.11310042440891]],[[-0.024919556453824,-0.029213968664408,0.13046385347843],[-0.024645494297147,0.085859961807728,0.60257810354233],[-0.37049090862274,-0.65389961004257,0.34198862314224]],[[-0.13454137742519,0.35026350617409,-0.11043436825275],[-0.12480612844229,0.033125720918179,-0.28454127907753],[0.30406945943832,-0.041125889867544,0.03034102730453]],[[0.34940806031227,0.12538692355156,0.19465443491936],[-0.33627158403397,0.35588473081589,-0.21905453503132],[-0.17523162066936,0.075881890952587,0.59418070316315]],[[-0.080709777772427,-0.21723847091198,-0.014881643466651],[0.66671526432037,0.62881773710251,-0.51692253351212],[-0.07003091275692,-0.13343286514282,-0.62324643135071]],[[0.10613360255957,-0.018546706065536,0.099890500307083],[-0.62225598096848,-0.14063404500484,-0.0014753042487428],[0.57161742448807,-0.25844645500183,0.22147886455059]],[[-0.52309894561768,0.58955419063568,-0.21191677451134],[-0.33442357182503,0.55187004804611,0.047523718327284],[0.0029806913807988,-0.56598490476608,0.77068644762039]],[[-0.24351640045643,-0.14629483222961,-0.062702402472496],[0.048498310148716,-0.41321489214897,-0.24400575459003],[0.32858085632324,0.008352093398571,-0.20324358344078]],[[0.55578148365021,-0.19383805990219,0.22670632600784],[0.64214414358139,0.37984809279442,0.32796666026115],[0.069740675389767,-0.70335948467255,0.27762013673782]],[[0.13049782812595,0.52787774801254,0.25510987639427],[0.010191050358117,-0.18155199289322,-0.050131134688854],[-0.87146157026291,0.068765327334404,0.14823366701603]],[[0.36255374550819,-0.11421025544405,-0.03992448374629],[-0.40161791443825,-0.2136594504118,0.54549050331116],[-0.57847762107849,0.55135190486908,-0.12794077396393]],[[0.083720661699772,0.46102267503738,0.1225770637393],[0.095972344279289,-0.035417884588242,-0.19928558170795],[-0.90469574928284,0.041349038481712,-0.051876045763493]],[[-0.7359978556633,-0.41806849837303,0.6713171005249],[0.015977434813976,-0.11560413986444,-0.065301686525345],[0.28441399335861,0.54543322324753,-0.18497958779335]],[[0.069347985088825,-0.0014543129364029,0.057692773640156],[0.30685567855835,0.10739812254906,0.204116076231],[-0.32605677843094,-0.31655591726303,-0.12032830715179]],[[-0.33302235603333,-0.77565550804138,0.32531416416168],[0.29984068870544,-0.53418147563934,0.33546179533005],[0.063850522041321,-0.072765447199345,-0.70609992742538]],[[-0.24680542945862,0.36927771568298,-0.05533679574728],[-0.54570984840393,-0.39999595284462,0.47531765699387],[-0.23268334567547,0.14127473533154,0.46856814622879]],[[-0.29450038075447,-0.046642400324345,0.18348118662834],[0.037635963410139,-0.65827989578247,0.35427457094193],[0.075587138533592,-0.49544423818588,-0.22748264670372]],[[0.74112886190414,-0.19300892949104,0.06276436150074],[0.091494992375374,-0.063544929027557,-0.81659376621246],[-0.038814719766378,-0.17451840639114,0.40463390946388]],[[0.047822590917349,-0.14216868579388,0.1892824023962],[-0.12749546766281,0.10624421387911,-0.12910228967667],[0.7369881272316,-0.50071793794632,-0.16619835793972]],[[-0.19228653609753,0.081763401627541,0.13701508939266],[-0.10878923535347,0.43930220603943,-0.063586950302124],[-0.12318427115679,-0.23710621893406,0.092503972351551]],[[-0.034365672618151,0.08158577978611,-0.27129158377647],[0.10342615842819,0.076572798192501,0.14875234663486],[0.026034532114863,-0.40030482411385,0.25581187009811]],[[-0.11695878952742,0.013587477616966,0.17238636314869],[0.05154599621892,-0.018276168033481,-0.041027892380953],[0.25711277127266,0.027647525072098,-0.34363010525703]],[[0.5815697312355,-0.40861237049103,0.013157066889107],[-0.68106055259705,0.76001197099686,0.31625068187714],[0.013042611069977,-1.3437975645065,0.049426268786192]],[[-0.042527832090855,-0.07382021099329,-0.054957296699286],[0.20405369997025,-0.037044245749712,-0.082021974027157],[0.10982728004456,-0.23387143015862,0.25532492995262]],[[-0.375672519207,-0.14708466827869,0.085677996277809],[-0.2985677421093,0.076259039342403,-0.20749862492085],[1.0545103549957,0.19657416641712,-0.31651741266251]],[[0.22421884536743,-0.24214766919613,-0.15720216929913],[0.35554602742195,-0.54830569028854,-0.1664799451828],[0.10201363265514,0.13826496899128,0.1086066737771]],[[0.14681668579578,0.20092092454433,0.16985474526882],[0.018702391535044,-0.20969355106354,-0.18381996452808],[0.089918062090874,-0.32845517992973,0.10715103894472]],[[0.26580858230591,-0.69455540180206,0.77621239423752],[0.111815713346,0.17018243670464,0.37018617987633],[-0.81048309803009,0.16595761477947,-0.33472740650177]],[[0.80073112249374,-0.092831708490849,0.92872476577759],[0.080169379711151,-0.44072830677032,-0.43247753381729],[0.09570749849081,-0.86621236801147,-0.057650726288557]],[[-0.098657853901386,0.20055098831654,0.23423938453197],[-0.22684067487717,0.47377997636795,-0.60573917627335],[0.10670894384384,0.037734914571047,-0.12705406546593]],[[0.47620093822479,0.65144646167755,0.29721590876579],[-0.49068054556847,-0.38408550620079,-0.40574532747269],[-0.55452960729599,-0.12543703615665,0.29572650790215]],[[0.24340812861919,0.0377635397017,0.15567056834698],[-0.50227534770966,0.41780441999435,-0.18236483633518],[-0.16396516561508,-0.036803007125854,0.022402932867408]],[[0.072562888264656,-0.26876994967461,-0.033099610358477],[0.21478289365768,-0.099150933325291,0.49193513393402],[-0.28808835148811,0.50553667545319,-0.60670644044876]],[[0.72219568490982,-0.13692109286785,-0.089442238211632],[-0.1062894910574,-0.30462265014648,0.1053351610899],[-0.053454972803593,0.18612702190876,-0.26910910010338]],[[-0.086003035306931,0.064123950898647,-0.5296990275383],[0.08279787749052,0.0099793896079063,0.1021963506937],[-0.011474451981485,0.15680448710918,0.14908061921597]],[[-0.10246648639441,0.0068741752766073,-0.053342513740063],[-0.7878560423851,-0.12758095562458,0.38480281829834],[-0.2191726565361,0.78497219085693,0.16547699272633]],[[0.17665652930737,0.6800571680069,0.031164135783911],[0.48870071768761,-0.40844452381134,0.21051400899887],[-0.79551541805267,-0.13506110012531,0.35916376113892]],[[0.12773723900318,-0.41511663794518,0.093678966164589],[0.236906722188,0.119354352355,-0.39174818992615],[0.35387107729912,-0.067850515246391,-0.063130065798759]],[[-0.73713773488998,-0.1388089209795,0.18195475637913],[-0.064385920763016,-0.053577817976475,0.19673742353916],[-0.039814535528421,0.45792755484581,0.2010822892189]],[[0.56042385101318,0.057329975068569,0.1220235824585],[-0.019882570952177,-0.38148188591003,-0.63769042491913],[0.19377465546131,-0.041507862508297,0.14269135892391]],[[-1.0771863460541,-0.021683620288968,-0.59758329391479],[0.029082367196679,0.25126069784164,-0.21638739109039],[0.36610305309296,-0.74319350719452,0.36527469754219]],[[0.0051597687415779,-0.56469351053238,-0.90996712446213],[0.24256861209869,0.61205887794495,0.52823156118393],[0.0056538959033787,0.08353615552187,0.0027578717563301]],[[0.92848020792007,0.61437398195267,-0.23419854044914],[0.064873985946178,0.092888027429581,0.25968146324158],[-0.54201877117157,0.31514990329742,-0.5478503704071]],[[-0.36290317773819,0.71253931522369,0.7167581319809],[-0.018337987363338,-0.14974111318588,-0.20453742146492],[-0.47895684838295,-0.058016527444124,-0.058073051273823]],[[0.19267128407955,-0.23819871246815,0.30516162514687],[-0.17997650802135,0.04453169554472,0.9771209359169],[0.10436747968197,0.16833834350109,-0.69873440265656]],[[0.45066103339195,-0.60064572095871,-0.2051257789135],[0.31529748439789,-0.28314778208733,0.0024189611431211],[-0.0059280814602971,0.15398305654526,-0.24139977991581]],[[-0.74209356307983,0.32378250360489,-0.013306750915945],[0.10399772971869,1.1920249462128,-1.4640009403229],[-0.19701682031155,-0.34010174870491,0.56572020053864]]]],"nOutputPlane":1,"kW":3,"kH":3,"bias":[0.068773008882999],"nInputPlane":128}] \ No newline at end of file diff --git a/waifu2x-caffe/models/srcnn.prototxt b/waifu2x-caffe/models/srcnn.prototxt new file mode 100644 index 0000000..4e63aad --- /dev/null +++ b/waifu2x-caffe/models/srcnn.prototxt @@ -0,0 +1,193 @@ +name: "srcnn" +layer { + name: "image_input_layer" + type: "MemoryData" + top: "input" + top: "dummy_label1" + memory_data_param { + batch_size: 1 + channels: 1 + height: 142 + width: 142 + } +} +layer { + name: "conv1_layer" + type: "Convolution" + bottom: "input" + top: "conv1" + convolution_param { + num_output: 32 + kernel_size: 3 + stride: 1 + weight_filler { + type: "gaussian" + std: 0.01 + } + } +} +layer { + name: "conv1_relu_layer" + type: "ReLU" + bottom: "conv1" + top: "conv1" + relu_param { + negative_slope: 0.1 + } +} +layer { + name: "conv2_layer" + type: "Convolution" + bottom: "conv1" + top: "conv2" + convolution_param { + num_output: 32 + kernel_size: 3 + stride: 1 + weight_filler { + type: "gaussian" + std: 0.01 + } + } +} +layer { + name: "conv2_relu_layer" + type: "ReLU" + bottom: "conv2" + top: "conv2" + relu_param { + negative_slope: 0.1 + } +} +layer { + name: "conv3_layer" + type: "Convolution" + bottom: "conv2" + top: "conv3" + convolution_param { + num_output: 64 + kernel_size: 3 + stride: 1 + weight_filler { + type: "gaussian" + std: 0.01 + } + } +} +layer { + name: "conv3_relu_layer" + type: "ReLU" + bottom: "conv3" + top: "conv3" + relu_param { + negative_slope: 0.1 + } +} +layer { + name: "conv4_layer" + type: "Convolution" + bottom: "conv3" + top: "conv4" + convolution_param { + num_output: 64 + kernel_size: 3 + stride: 1 + weight_filler { + type: "gaussian" + std: 0.01 + } + } +} +layer { + name: "conv4_relu_layer" + type: "ReLU" + bottom: "conv4" + top: "conv4" + relu_param { + negative_slope: 0.1 + } +} +layer { + name: "conv5_layer" + type: "Convolution" + bottom: "conv4" + top: "conv5" + convolution_param { + num_output: 128 + kernel_size: 3 + stride: 1 + weight_filler { + type: "gaussian" + std: 0.01 + } + } +} +layer { + name: "conv5_relu_layer" + type: "ReLU" + bottom: "conv5" + top: "conv5" + relu_param { + negative_slope: 0.1 + } +} +layer { + name: "conv6_layer" + type: "Convolution" + bottom: "conv5" + top: "conv6" + convolution_param { + num_output: 128 + kernel_size: 3 + stride: 1 + weight_filler { + type: "gaussian" + std: 0.01 + } + } +} +layer { + name: "conv6_relu_layer" + type: "ReLU" + bottom: "conv6" + top: "conv6" + relu_param { + negative_slope: 0.1 + } +} +layer { + name: "conv7_layer" + type: "Convolution" + bottom: "conv6" + top: "conv7" + convolution_param { + num_output: 1 + kernel_size: 3 + stride: 1 + weight_filler { + type: "gaussian" + std: 0.01 + } + } +} +layer { + name: "target" + type: "MemoryData" + top: "target" + top: "dummy_label2" + memory_data_param { + batch_size: 1 + channels: 1 + height: 142 + width: 142 + } + include: { phase: TRAIN } +} +layer { + name: "loss" + type: "EuclideanLoss" + bottom: "conv7" + bottom: "target" + top: "loss" + include: { phase: TRAIN } +} diff --git a/waifu2x-caffe/waifu2x-caffe.vcxproj b/waifu2x-caffe/waifu2x-caffe.vcxproj new file mode 100644 index 0000000..de62709 --- /dev/null +++ b/waifu2x-caffe/waifu2x-caffe.vcxproj @@ -0,0 +1,94 @@ + + + + + Debug + x64 + + + Release + x64 + + + + {7C406EE4-2309-4D4C-98BB-CB7BA865FC41} + Win32Proj + waifu2x-caffe + + + + Application + true + v120 + Unicode + + + Application + false + v120 + true + Unicode + + + + + + + + + + + + + true + D:\caffe\include;D:\caffe\3rdparty\include;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v6.5\include;C:\boost_1_56_0;C:\opencv249\build\include;$(SolutionDir)rapidjson\include;$(SolutionDir)include;$(IncludePath) + D:\caffe\lib;D:\caffe\3rdparty\lib;C:\boost_1_56_0\lib64-msvc-12.0;$(LibraryPath) + + + false + D:\caffe\include;D:\caffe\3rdparty\include;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v6.5\include;C:\boost_1_56_0;C:\opencv249\build\include;$(SolutionDir)rapidjson\include;$(SolutionDir)include;$(IncludePath) + D:\caffe\lib;D:\caffe\3rdparty\lib;C:\boost_1_56_0\lib64-msvc-12.0;$(LibraryPath) + + + + + + Level3 + Disabled + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + + + Console + true + cudnn64_65.dll;%(DelayLoadDLLs) + + + + + Level3 + + + MaxSpeed + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + + + Console + false + true + true + cudnn64_65.dll;%(DelayLoadDLLs) + + + + + + + + + + + + + \ No newline at end of file diff --git a/waifu2x-caffe/waifu2x-caffe.vcxproj.filters b/waifu2x-caffe/waifu2x-caffe.vcxproj.filters new file mode 100644 index 0000000..86e4980 --- /dev/null +++ b/waifu2x-caffe/waifu2x-caffe.vcxproj.filters @@ -0,0 +1,30 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + ソース ファイル + + + ソース ファイル + + + + + ヘッダー ファイル + + + \ No newline at end of file